diff --git a/app/config.yaml b/app/config.yaml index 7f95f44..ca0a123 100644 --- a/app/config.yaml +++ b/app/config.yaml @@ -6,10 +6,26 @@ dataDisplay: - unknown - null - NA + sectionSep1: '@' + textFormat: text-orig-full +docs: + docPage: about + featureBase: '{docBase}/transcription.md' + featurePage: transcription +interfaceDefaults: + fmt: text-orig-full provenanceSpec: - version: "0.1" + branch: main + corpus: '{org} - {repo}{relative}' + doi: 10.5281/zenodo.notyet + moduleSpecs: [] + version: 0.1.1 + webBase: https://public.{org}.org/{repo} + webHint: Show this on the website + webLang: en + webUrl: '{webBase}/<1>/<2>/<3>&version={version}' + webUrlLex: '{webBase}/word?version={version}&id=' typeDisplay: sentence: condense: true -writing: 'grc' - +writing: grc diff --git a/app/config_custom.yaml b/app/config_custom.yaml new file mode 100644 index 0000000..eb8a9bf --- /dev/null +++ b/app/config_custom.yaml @@ -0,0 +1,5 @@ +typeDisplay: + sentence: + condense: true +writing: 'grc' + diff --git a/app/static/display.css b/app/static/display.css new file mode 100644 index 0000000..e69de29 diff --git a/app/static/display_orig.css b/app/static/display_orig.css new file mode 100644 index 0000000..e69de29 diff --git a/app/static/logo.png b/app/static/logo.png new file mode 100644 index 0000000..392f065 Binary files /dev/null and b/app/static/logo.png differ diff --git a/xml/nestle1904/box-light.css b/extra/box-light.css similarity index 100% rename from xml/nestle1904/box-light.css rename to extra/box-light.css diff --git a/xml/nestle1904/boxwood.css b/extra/boxwood.css similarity index 100% rename from xml/nestle1904/boxwood.css rename to extra/boxwood.css diff --git a/xml/nestle1904/brackets.css b/extra/brackets.css similarity index 100% rename from xml/nestle1904/brackets.css rename to extra/brackets.css diff --git a/xml/nestle1904/commonformat.xml b/extra/commonformat.xml similarity index 100% rename from xml/nestle1904/commonformat.xml rename to extra/commonformat.xml diff --git a/xml/nestle1904/corduroy.css b/extra/corduroy.css similarity index 100% rename from xml/nestle1904/corduroy.css rename to extra/corduroy.css diff --git a/xml/nestle1904/indent-lined.css b/extra/indent-lined.css similarity index 100% rename from xml/nestle1904/indent-lined.css rename to extra/indent-lined.css diff --git a/xml/nestle1904/indent-only.css b/extra/indent-only.css similarity index 100% rename from xml/nestle1904/indent-only.css rename to extra/indent-only.css diff --git a/xml/nestle1904/nestle1904lowfat.xml b/extra/nestle1904lowfat.xml similarity index 100% rename from xml/nestle1904/nestle1904lowfat.xml rename to extra/nestle1904lowfat.xml diff --git a/xml/nestle1904/pruned-tree-light.css b/extra/pruned-tree-light.css similarity index 100% rename from xml/nestle1904/pruned-tree-light.css rename to extra/pruned-tree-light.css diff --git a/xml/nestle1904/pruned-tree.css b/extra/pruned-tree.css similarity index 100% rename from xml/nestle1904/pruned-tree.css rename to extra/pruned-tree.css diff --git a/xml/nestle1904/rules.css b/extra/rules.css similarity index 100% rename from xml/nestle1904/rules.css rename to extra/rules.css diff --git a/xml/nestle1904/treedown.css b/extra/treedown.css similarity index 100% rename from xml/nestle1904/treedown.css rename to extra/treedown.css diff --git a/xml/nestle1904/verb-coloring.css b/extra/verb-coloring.css similarity index 100% rename from xml/nestle1904/verb-coloring.css rename to extra/verb-coloring.css diff --git a/programs/lowfat.py b/programs/lowfat.py new file mode 100644 index 0000000..808bf70 --- /dev/null +++ b/programs/lowfat.py @@ -0,0 +1,374 @@ +import re +from lxml import etree +from io import BytesIO + +from tf.core.helpers import console +from tf.core.files import initTree, unexpanduser as ux + +from tf.convert.helpers import ZWSP, NEST + + +def convertTaskCustom(self): + """Implementation of the "convert" task. + + It sets up the `tf.convert.walker` machinery and runs it. + + Returns + ------- + boolean + Whether the conversion was successful. + """ + if not self.good: + return + + verbose = self.verbose + tfPath = self.tfPath + xmlPath = self.xmlPath + + if verbose == 1: + console(f"XML to TF converting: {ux(xmlPath)} => {ux(tfPath)}") + + slotType = "w" + otext = { + "fmt:text-orig-full": "{text}{after}", + "sectionTypes": "book,chapter,verse", + "sectionFeatures": "book_short,chapter,verse", + } + intFeatures = { + "chapter", + "verse", + "book_num", + "sentence_number", + "nodeId", + "strong", + "word_in_verse", + "empty", + } + featureMeta = dict( + book_num=dict( + description="NT book number (Matthew=1, Mark=2, ..., Revelation=27)" + ), + book_short=dict(description="Book name (abbreviated)"), + sentence_number=dict(description="Sentence number (counted per chapter)"), + Rule=dict(description="Clause rule"), + appositioncontainer=dict(description="Apposition container"), + articular=dict(description="Articular"), + class_wg=dict(description="Syntactical class"), + clauseType=dict(description="Type of clause"), + cltype=dict(description="Type of clause"), + junction=dict(description="Type of junction"), + nodeId=dict(description="Node ID (as in the XML source data"), + role_wg=dict(description="Role"), + rule=dict(description="Syntactical rule"), + type_wg=dict(description="Syntactical type"), + text=dict(description="the text of a word"), + after=dict(description="After the end of the word"), + book=dict(description="Book name (abbreviated)"), + case=dict(description="Type of case"), + chapter=dict(description="Number of the chapter"), + class_w=dict(description="Morphological class"), + degree=dict(description="Degree"), + discontinuous=dict(description="Discontinuous"), + domain=dict(description="domain"), + frame=dict(description="frame"), + gender=dict(description="gender"), + gloss=dict(description="gloss"), + id=dict(description="xml iD"), + lemma=dict(description="lemma"), + ln=dict(description="ln"), + mood=dict(description="verbal mood"), + morph=dict(description="morph"), + normalized=dict(description="lemma normalized"), + number=dict(description="number"), + person=dict(description="person"), + ref=dict(description="biblical reference with word counting"), + referent=dict(description="number of referent"), + role_w=dict(description="role"), + strong=dict(description="strong number"), + subjref=dict(description="number"), + tense=dict(description="Verbal tense"), + type_w=dict(description="Morphological type"), + unicode=dict(description="lemma in unicode characters"), + verse=dict(description="verse"), + voice=dict(description="Verbal voice"), + word_in_verse=dict(description="number of word"), + empty=dict(description="whether a slot has been inserted in an empty element"), + ) + self.intFeatures = intFeatures + self.featureMeta = featureMeta + + tfVersion = self.tfVersion + xmlVersion = self.xmlVersion + generic = self.generic + generic["sourceFormat"] = "XML" + generic["version"] = tfVersion + generic["xmlVersion"] = xmlVersion + + initTree(tfPath, fresh=True, gentle=True) + + cv = self.getConverter() + + self.good = cv.walk( + getDirector(self), + slotType, + otext=otext, + generic=generic, + intFeatures=intFeatures, + featureMeta=featureMeta, + generateTf=True, + ) + + +def getDirector(self): + """Factory for the director function. + + The `tf.convert.walker` relies on a corpus dependent `director` function + that walks through the source data and spits out actions that + produces the TF dataset. + + We collect all needed data, store it, and define a local director function + that has access to this data. + + You can also include a copy of this file in the script that constructs the + object. If you then tweak it, you can pass it to the XML() object constructor. + + Returns + ------- + function + The local director function that has been constructed. + """ + + SPLIT_REF = re.compile(r"[ :!]") + + PASS_THROUGH = set( + """ + xml + p + milestone + """.strip().split() + ) + + # CHECKING + + verbose = self.verbose + xmlPath = self.xmlPath + featureMeta = self.featureMeta + transform = self.transform + + transformFunc = ( + (lambda x: BytesIO(x.encode("utf-8"))) + if transform is None + else (lambda x: BytesIO(transform(x).encode("utf-8"))) + ) + + parser = self.getParser() + + # WALKERS + + def walkNode(cv, cur, node): + """Internal function to deal with a single element. + + Will be called recursively. + + Parameters + ---------- + cv: object + The convertor object, needed to issue actions. + cur: dict + Various pieces of data collected during walking + and relevant for some next steps in the walk. + node: object + An lxml element node. + """ + tag = etree.QName(node.tag).localname + cur[NEST].append(tag) + + beforeChildren(cv, cur, node, tag) + + for child in node.iterchildren(tag=etree.Element): + walkNode(cv, cur, child) + + afterChildren(cv, cur, node, tag) + cur[NEST].pop() + afterTag(cv, cur, node, tag) + + def beforeChildren(cv, cur, node, tag): + """Actions before dealing with the element's children. + + Parameters + ---------- + cv: object + The convertor object, needed to issue actions. + cur: dict + Various pieces of data collected during walking + and relevant for some next steps in the walk. + node: object + An lxml element node. + tag: string + The tag of the lxml node. + """ + if tag in PASS_THROUGH: + return + + atts = {etree.QName(k).localname: v for (k, v) in node.attrib.items()} + + if tag == "w": + atts["text"] = atts["unicode"] + del atts["unicode"] + + ref = atts["ref"] + (b, ch, v, w) = SPLIT_REF.split(ref) + atts["book"] = b + atts["chapter"] = ch + atts["verse"] = v + atts["word_num"] = w + thisChapterNum = atts["chapter"] + thisVerseNum = atts["verse"] + if thisChapterNum != cv.get("chapter", cur["chapter"]): + if cur.get("verse", None) is not None: + cv.terminate(cur["verse"]) + if cur.get("chapter", None) is not None: + cv.terminate(cur["chapter"]) + + curChapter = cv.node("chapter") + cur["chapter"] = curChapter + cv.feature(curChapter, chapter=thisChapterNum) + + curVerse = cv.node("verse") + cur["verse"] = curVerse + cv.feature(curVerse, verse=thisVerseNum) + + elif thisVerseNum != cv.get("verse", cur["verse"]): + if cur.get("verse", None) is not None: + cv.terminate(cur["verse"]) + + curVerse = cv.node("verse") + cur["verse"] = curVerse + cv.feature(curVerse, verse=thisVerseNum) + + s = cv.slot() + cv.feature(s, **atts) + + else: + if tag == "book": + cur["bookNum"] += 1 + atts["book_num"] = cur["bookNum"] + atts["book_short"] = atts["id"] + del atts["id"] + + elif tag == "sentence": + cur["sentNum"] += 1 + atts["sent_num"] = cur["sentNum"] + + curNode = cv.node(tag) + cur["elems"].append(curNode) + if len(atts): + cv.feature(curNode, **atts) + + def afterChildren(cv, cur, node, tag): + """Node actions after dealing with the children, but before the end tag. + + Here we make sure that the newline elements will get their last slot + having a newline at the end of their `after` feature. + + Parameters + ---------- + cv: object + The convertor object, needed to issue actions. + cur: dict + Various pieces of data collected during walking + and relevant for some next steps in the walk. + node: object + An lxml element node. + tag: string + The tag of the lxml node. + """ + if tag not in PASS_THROUGH: + if tag == "book": + cv.terminate(cur["verse"]) + cv.terminate(cur["chapter"]) + + if tag != "w": + curNode = cur["elems"].pop() + + if not cv.linked(curNode): + s = cv.slot() + cv.feature(s, ch=ZWSP, empty=1) + + cv.terminate(curNode) + + def afterTag(cv, cur, node, tag): + """Node actions after dealing with the children and after the end tag. + + This is the place where we proces the `tail` of an lxml node: the + text material after the element and before the next open/close + tag of any element. + + Parameters + ---------- + cv: object + The convertor object, needed to issue actions. + cur: dict + Various pieces of data collected during walking + and relevant for some next steps in the walk. + node: object + An lxml element node. + tag: string + The tag of the lxml node. + """ + pass + + def director(cv): + """Director function. + + Here we program a walk through the XML sources. + At every step of the walk we fire some actions that build TF nodes + and assign features for them. + + Because everything is rather dynamic, we generate fairly standard + metadata for the features. + + Parameters + ---------- + cv: object + The convertor object, needed to issue actions. + """ + cur = {} + + i = 0 + for (xmlFolder, xmlFiles) in self.getXML(): + for xmlFile in xmlFiles: + i += 1 + console(f"\r{i:>4} {xmlFile:<50}", newline=False) + + with open(f"{xmlPath}/{xmlFolder}/{xmlFile}", encoding="utf8") as fh: + text = fh.read() + text = transformFunc(text) + tree = etree.parse(text, parser) + root = tree.getroot() + cur[NEST] = [] + cur["elems"] = [] + cur["chapter"] = None + cur["verse"] = None + cur["bookNum"] = 0 + cur["sentNum"] = 0 + walkNode(cv, cur, root) + + console("") + + for fName in featureMeta: + if not cv.occurs(fName): + cv.meta(fName) + for fName in cv.features(): + if fName not in featureMeta: + cv.meta( + fName, + description=f"this is XML attribute {fName}", + valueType="str", + ) + + if verbose == 1: + console("source reading done") + return True + + return director diff --git a/programs/tfFromLowfat.ipynb b/programs/tfFromLowfat.ipynb new file mode 100644 index 0000000..680ff9a --- /dev/null +++ b/programs/tfFromLowfat.ipynb @@ -0,0 +1,595 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "1ed0de55-5e4f-419c-a7a8-249153d67165", + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2" + ] + }, + { + "cell_type": "markdown", + "id": "1d21f7fd-01fb-4e75-88ac-b93e4a41bc42", + "metadata": {}, + "source": [ + "# Lowfat to TF\n", + "\n", + "We use the machinery of Text-Fabric combined with some custom code to convert\n", + "the lowfat XML of the Greek New Testament into TF." + ] + }, + { + "cell_type": "markdown", + "id": "c98ead18-44f7-4a3a-a069-8c4129ad3731", + "metadata": {}, + "source": [ + "# Set up\n", + "\n", + "We gather all prerequisites." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b2b6e279-7009-42f5-a9cb-a0a8b2f9ecac", + "metadata": {}, + "outputs": [], + "source": [ + "from tf.convert.xml import XML\n", + "from lowfat import convertTaskCustom" + ] + }, + { + "cell_type": "markdown", + "id": "940efa70-5f80-4b52-a7c8-5950e81a7dbe", + "metadata": {}, + "source": [ + "The custom code is in `lowfat.py`, here in this directory.\n", + "\n", + "It consists of two functions that replace default functions in\n", + "[xmlCustom](https://annotation.github.io/text-fabric/tf/convert/xmlCustom.html),\n", + "which is part of TF.\n", + "\n", + "So you only have to focus on the bits that actually touch the lowfat XML.\n", + "\n", + "We pass the function `convertCustomTask()`, defined in `lowfat.py`, to the XML converter." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "005dbda2-08e1-4082-a871-48045d691c00", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Working in repository ETCBC/nestle1904 in backend github\n", + "XML data version is 2022-11-01 (most recent)\n", + "TF data version is 0.1.1 (explicit exising)\n" + ] + } + ], + "source": [ + "X = XML(convertTaskCustom=convertTaskCustom, verbose=1, tf=\"0.1.1\")" + ] + }, + { + "cell_type": "markdown", + "id": "97d1cd2b-cdec-4f43-9636-1941c84269c3", + "metadata": {}, + "source": [ + "Now we can run tasks." + ] + }, + { + "cell_type": "markdown", + "id": "fce420b6-456d-4ce0-b812-3a5eb07e7d0f", + "metadata": {}, + "source": [ + "# Check\n", + "\n", + "First we check the input:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "b1437daf-0091-4b02-b33a-beb976b307ee", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "XML to TF checking: ~/github/ETCBC/nestle1904/xml/2022-11-01 => ~/github/ETCBC/nestle1904/report/2022-11-01\n", + "Start folder gnt:\n", + " 27 27-revelation.xml \n", + "End folder gnt\n", + "\n", + "71218 info line(s) written to ~/github/ETCBC/nestle1904/report/2022-11-01/elements.txt\n", + "0 error(s) in 0 file(s) written to ~/github/ETCBC/nestle1904/report/2022-11-01/errors.txt\n", + "7 tags of which 0 with multiple namespaces written to ~/github/ETCBC/nestle1904/report/2022-11-01/namespaces.txt\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X.task(check=True)" + ] + }, + { + "cell_type": "markdown", + "id": "58fdfc1b-0514-440c-9917-1ac87b111f97", + "metadata": {}, + "source": [ + "# Convert\n", + "\n", + "Here we generate the actual TF data." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "804d4a3f-b8de-427c-a5b7-1fb97520cf62", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "XML to TF converting: ~/github/ETCBC/nestle1904/xml/2022-11-01 => ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " 0.00s Not all of the warp features otype and oslots are present in\n", + "~/github/ETCBC/nestle1904/tf/0.1.1\n", + " 0.00s Only the Feature and Edge APIs will be enabled\n", + " 0.00s Warp feature \"otext\" not found. Working without Text-API\n", + "\n", + " 0.00s Importing data from walking through the source ...\n", + " | 0.00s Preparing metadata... \n", + " | 0.00s No structure nodes will be set up\n", + " | SECTION TYPES: book, chapter, verse\n", + " | SECTION FEATURES: book_short, chapter, verse\n", + " | STRUCTURE TYPES: \n", + " | STRUCTURE FEATURES: \n", + " | TEXT FEATURES:\n", + " | | text-orig-full after, text\n", + " | 0.00s OK\n", + " | 0.00s Following director... \n", + " 27 27-revelation.xml \n", + "source reading done\n", + " | 4.37s \"edge\" actions: 0\n", + " | 4.37s \"feature\" actions: 260889\n", + " | 4.37s \"node\" actions: 131121\n", + " | 4.37s \"resume\" actions: 0\n", + " | 4.37s \"slot\" actions: 137779\n", + " | 4.37s \"terminate\" actions: 131121\n", + " | 27 x \"book\" node \n", + " | 260 x \"chapter\" node \n", + " | 1 x \"error\" node \n", + " | 8011 x \"sentence\" node \n", + " | 7944 x \"verse\" node \n", + " | 137779 x \"w\" node = slot type\n", + " | 114878 x \"wg\" node \n", + " | 268900 nodes of all types\n", + " | 4.38s OK\n", + " | 0.00s checking for nodes and edges ... \n", + " | 0.00s OK\n", + " | 0.00s checking (section) features ... \n", + " | 0.06s OK\n", + " | 0.00s reordering nodes ...\n", + " | 0.01s Sorting 27 nodes of type \"book\"\n", + " | 0.02s Sorting 260 nodes of type \"chapter\"\n", + " | 0.03s Sorting 1 nodes of type \"error\"\n", + " | 0.03s Sorting 8011 nodes of type \"sentence\"\n", + " | 0.04s Sorting 7944 nodes of type \"verse\"\n", + " | 0.06s Sorting 114878 nodes of type \"wg\"\n", + " | 0.40s Max node = 268900\n", + " | 0.40s OK\n", + " | 0.00s reassigning feature values ...\n", + " | | 0.00s node feature \"Rule\" with 5558 nodes\n", + " | | 0.00s node feature \"after\" with 137779 nodes\n", + " | | 0.03s node feature \"appositioncontainer\" with 1908 nodes\n", + " | | 0.03s node feature \"articular\" with 28772 nodes\n", + " | | 0.04s node feature \"book\" with 137779 nodes\n", + " | | 0.06s node feature \"book_num\" with 27 nodes\n", + " | | 0.06s node feature \"book_short\" with 27 nodes\n", + " | | 0.06s node feature \"case\" with 79518 nodes\n", + " | | 0.07s node feature \"chapter\" with 138039 nodes\n", + " | | 0.09s node feature \"class\" with 210567 nodes\n", + " | | 0.12s node feature \"clauseType\" with 5296 nodes\n", + " | | 0.13s node feature \"cltype\" with 2843 nodes\n", + " | | 0.13s node feature \"degree\" with 513 nodes\n", + " | | 0.13s node feature \"discontinuous\" with 6034 nodes\n", + " | | 0.13s node feature \"domain\" with 126879 nodes\n", + " | | 0.15s node feature \"frame\" with 25493 nodes\n", + " | | 0.16s node feature \"gender\" with 73975 nodes\n", + " | | 0.17s node feature \"gloss\" with 137779 nodes\n", + " | | 0.19s node feature \"id\" with 137779 nodes\n", + " | | 0.21s node feature \"junction\" with 17921 nodes\n", + " | | 0.21s node feature \"lang\" with 27 nodes\n", + " | | 0.22s node feature \"lemma\" with 137779 nodes\n", + " | | 0.23s node feature \"ln\" with 126879 nodes\n", + " | | 0.25s node feature \"mood\" with 28357 nodes\n", + " | | 0.26s node feature \"morph\" with 137779 nodes\n", + " | | 0.28s node feature \"nodeId\" with 5558 nodes\n", + " | | 0.28s node feature \"normalized\" with 137779 nodes\n", + " | | 0.30s node feature \"note\" with 1 node\n", + " | | 0.30s node feature \"number\" with 98937 nodes\n", + " | | 0.32s node feature \"person\" with 19419 nodes\n", + " | | 0.32s node feature \"ref\" with 137779 nodes\n", + " | | 0.35s node feature \"referent\" with 14471 nodes\n", + " | | 0.35s node feature \"role\" with 84218 nodes\n", + " | | 0.37s node feature \"rule\" with 93234 nodes\n", + " | | 0.39s node feature \"sent_num\" with 8011 nodes\n", + " | | 0.40s node feature \"strong\" with 137779 nodes\n", + " | | 0.42s node feature \"subjref\" with 16575 nodes\n", + " | | 0.42s node feature \"tense\" with 28357 nodes\n", + " | | 0.43s node feature \"text\" with 137779 nodes\n", + " | | 0.45s node feature \"type\" with 113168 nodes\n", + " | | 0.47s node feature \"verse\" with 145723 nodes\n", + " | | 0.50s node feature \"voice\" with 28357 nodes\n", + " | | 0.50s node feature \"word_num\" with 137779 nodes\n", + " | 0.56s OK\n", + " 0.00s Exporting 44 node and 1 edge and 1 config features to ~/github/ETCBC/nestle1904/tf/0.1.1:\n", + " 0.00s VALIDATING oslots feature\n", + " 0.01s VALIDATING oslots feature\n", + " 0.01s maxSlot= 137779\n", + " 0.01s maxNode= 268900\n", + " 0.02s OK: oslots is valid\n", + " | 0.00s T Rule to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T after to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T appositioncontainer to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T articular to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T book to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T book_num to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T book_short to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.04s T case to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T chapter to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.08s T class to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T clauseType to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T cltype to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T degree to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T discontinuous to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T domain to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T frame to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.03s T gender to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T gloss to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T id to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T junction to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T lang to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.06s T lemma to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T ln to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T mood to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T morph to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T nodeId to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.06s T normalized to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T note to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.04s T number to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.02s T otype to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T person to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T ref to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T referent to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.04s T role to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.04s T rule to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T sent_num to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T strong to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T subjref to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T tense to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.06s T text to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T type to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T verse to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.01s T voice to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.05s T word_num to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.16s T oslots to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s M otext to ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " 1.43s Exported 44 node features and 1 edge features and 1 config features to ~/github/ETCBC/nestle1904/tf/0.1.1\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X.task(convert=True)" + ] + }, + { + "cell_type": "markdown", + "id": "64f1fbb4-4e6c-4ad0-884a-cb00f5b6eacd", + "metadata": {}, + "source": [ + "# Load\n", + "\n", + "The best check to see that the TF is valid is to load it." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "c226029b-f6d9-492f-ac7a-f37046059a19", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " | 0.13s T otype from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 1.42s T oslots from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.34s T text from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.24s T chapter from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.00s T book_short from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.27s T after from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | 0.25s T verse from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.03s C __levels__ from otype, oslots, otext\n", + " | | 1.15s C __order__ from otype, oslots, __levels__\n", + " | | 0.05s C __rank__ from otype, __order__\n", + " | | 2.26s C __levUp__ from otype, oslots, __rank__\n", + " | | 1.27s C __levDown__ from otype, __levUp__, __rank__\n", + " | | 0.04s C __characters__ from otext\n", + " | | 0.58s C __boundary__ from otype, oslots, __rank__\n", + " | | 0.02s C __sections__ from otype, oslots, otext, __levUp__, __levels__, book_short, chapter, verse\n", + " | | 0.21s T Rule from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.00s T appositioncontainer from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.07s T articular from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.28s T book from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.00s T book_num from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.17s T case from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.44s T class from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.01s T clauseType from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.01s T cltype from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.00s T degree from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.02s T discontinuous from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.27s T domain from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.08s T frame from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.16s T gender from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.33s T gloss from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.36s T id from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.04s T junction from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.00s T lang from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.31s T lemma from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.28s T ln from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.07s T mood from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.28s T morph from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.01s T nodeId from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.33s T normalized from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.00s T note from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.21s T number from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.05s T person from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.37s T ref from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.04s T referent from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.19s T role from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.02s T sent_num from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.26s T strong from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.05s T subjref from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.07s T tense from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.26s T type from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.07s T voice from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + " | | 0.28s T word_num from ~/github/ETCBC/nestle1904/tf/0.1.1\n", + "max node = 268900\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X.task(load=True)" + ] + }, + { + "cell_type": "markdown", + "id": "79f331e6-8b6b-4d27-8520-cbebffee97de", + "metadata": {}, + "source": [ + "# App creation\n", + "\n", + "We create the config file that turns the dataset into a TF app." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "11a43b23-8992-4944-8ba9-8b6d1adec35a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "App updating ...\n", + "\t~/github/ETCBC/nestle1904/app/static/logo.png (already exists, not overwritten)\n", + "\t~/github/ETCBC/nestle1904/app/static/display.css (no custom info, older orginal exists)\n", + "\t~/github/ETCBC/nestle1904/app/config.yaml (generated with custom info)\n", + "\t~/github/ETCBC/nestle1904/app/app.py (deleted)\n", + "Done\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X.task(app=True)" + ] + }, + { + "cell_type": "markdown", + "id": "146ba841-d6d0-4dcf-bf10-cbed990834a4", + "metadata": {}, + "source": [ + "# Browse\n", + "\n", + "We are ready to browse the data.\n", + "If you run this notebook, then the next cell will open a browser window with the TF-browser\n", + "on the Greek New Testament." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "aac54750-9c69-43d3-8ccd-04f943dacfff", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This is Text-Fabric 11.4.8\n", + "Starting new kernel listening on 17116\n", + "Loading data for ETCBC/nestle1904. Please wait ...\n", + "Setting up TF kernel for ETCBC/nestle1904 \n", + "**Locating corpus resources ...**\n", + "Using app in ~/github/ETCBC/nestle1904/app:\n", + "\trepo clone offline under ~/github (local github)\n", + "Using data in ~/github/ETCBC/nestle1904/tf/0.1.1:\n", + "\trepo clone offline under ~/github (local github)\n", + "TF setup done.\n", + "Starting new webserver listening on 27116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[31m\u001b[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.\u001b[0m\n", + " * Running on http://localhost:27116\n", + "\u001b[33mPress CTRL+C to quit\u001b[0m\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Opening ETCBC/nestle1904 in browser\n", + "Press to stop the TF browser\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "127.0.0.1 - - [08/May/2023 16:30:50] \"GET / HTTP/1.1\" 200 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/base.css HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/display.css HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/index.css HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/fontawesome.css HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/highlight.css HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/fonts.css HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/tf3.0.js HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/jquery.js HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/fonts/fa-solid-900.woff2 HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/fonts/fa-regular-400.woff2 HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/icon.png HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /server/static/huc.png HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"\u001b[36mGET /data/static/logo.png HTTP/1.1\u001b[0m\" 304 -\n", + "127.0.0.1 - - [08/May/2023 16:30:50] \"POST /passage HTTP/1.1\" 200 -\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Kernel listening at port 17116\n", + "\n", + "TF web server has stopped\n", + "TF kernel has stopped\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "keyboard interrupt!\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X.task(browse=True)" + ] + }, + { + "cell_type": "markdown", + "id": "91609b51-1062-4efa-9791-1b136417f8c0", + "metadata": {}, + "source": [ + "# Terminate\n", + "\n", + "You can stop the browser by pressing `i` twice." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "06573edb-1562-4d07-8ac8-cb5e65e2a989", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.1" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/programs/tfFromLowfat.py b/programs/tfFromLowfat.py deleted file mode 100644 index ee8d9cf..0000000 --- a/programs/tfFromLowfat.py +++ /dev/null @@ -1,38 +0,0 @@ -import os -from tf.convert.xml import XML - - -TEST_SET = set( - """ - 26-jude.xml - """.strip().split() -) - -AUTHOR = "Evangelists and apostles" -TITLE = "Greek New Testament" -INSTITUTE = "ETCBC (Eep Talstra Centre for Bible and Computer)" - -GENERIC = dict( - author=AUTHOR, - title=TITLE, - institute=INSTITUTE, - language="nl", - converters="Dirk Roorda et al. (Text-Fabric)", - sourceFormat="XML (lowfat)", - descriptionTf="Nestle 1904 edition", -) - - -def transform(text): - return text - - -X = XML( - sourceVersion="nestle1904", - testSet=TEST_SET, - generic=GENERIC, - transform=transform, - tfVersion="0.1", -) - -X.run(os.path.basename(__file__)) diff --git a/programs/xml.yaml b/programs/xml.yaml new file mode 100644 index 0000000..fad444c --- /dev/null +++ b/programs/xml.yaml @@ -0,0 +1,7 @@ +generic: + author: Evangelists and apostles + title: Greek New Testament + institute: ETCBC (Eep Talstra Centre for Bible and Computer) + sourceFormat: XML (lowfat) + sourceDescription: Nestle 1904 edition + converters: Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda diff --git a/report/2022-11-01/elements.txt b/report/2022-11-01/elements.txt new file mode 100644 index 0000000..ecd7bb6 --- /dev/null +++ b/report/2022-11-01/elements.txt @@ -0,0 +1,71225 @@ +Inventory of tags and attributes in the source XML file(s). +Contains the following sections: + Remaining Attributes and Elements + + + +Remaining Attributes and Elements + + id= 27x X + lang= 27x el + + role= 1x err_clause-complex-met-no-conditionsClClN + + id= 9605x X + unit= 9605x verse + +

8011x + + 8011x + + after= 119271x + " 9443x , + " 5717x . + " 970x ; + " 2355x · + " 1x ί + " 1x α + " 3x ε + " 1x ι + " 3x ς + " 1x χ + " 1x ἱ + " 1x ὁ + " 1x ὰ + " 2x ὶ + " 1x ὸ + " 7x — + case= 23031x accusative + " 12126x dative + " 19515x genitive + " 24197x nominative + " 649x vocative + class= 8452x adj + " 6147x adv + " 18227x conj + " 19786x det + " 15x intj + " 28455x noun + " 476x num + " 10914x prep + " 16177x pron + " 773x ptcl + " 28357x verb + degree= 313x comparative + " 200x superlative + discontinuous= 6034x true + domain= 122x + " 2855x NNN + " 4x NNN NNN + " 40x NNN NNNNNN + " 121809x NNNNNN + " 57x NNNNNN NNN + " 1x NNNNNN NNN NNNNNN + " 1x NNNNNN NNN NNNNNN NNNNNN NNNNNN NNNNNN + " 1885x NNNNNN NNNNNN + " 3x NNNNNN NNNNNN NNN + " 94x NNNNNN NNNNNN NNNNNN + " 7x NNNNNN NNNNNN NNNNNN NNNNNN + " 1x NNNNNN NNNNNN NNNNNN NNNNNN NNNNNN + frame= 13x AAN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AAN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 12018x AN:nNNNNNNNNNNN + " 66x AN:nNNNNNNNNNNN AAN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AAN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 9819x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AAN:nNNNNNNNNNNN + " 983x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 39x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 13x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 413x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 9x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 66x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 29x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 11x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 7x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 6x AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 598x AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 5x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AAN:nNNNNNNNNNNN + " 401x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 40x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 20x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 266x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AAN:nNNNNNNNNNNN + " 257x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 18x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 15x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 3x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 83x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AAN:nNNNNNNNNNNN + " 52x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 6x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 4x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 26x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 28x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 6x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 5x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 46x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 23x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 4x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 8x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 14x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN;nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 10x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 3x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 8x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 3x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN AN:nNNNNNNNNNNN + " 9x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + " 2x AN:nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + gender= 18736x feminine + " 41486x masculine + " 13753x neuter + gloss= 157x + " 5496x - + " 1x ... of this + " 1x A Jew + " 1x A Nazarene + " 1x A Samaritan + " 1x A choenix + " 1x A commandment + " 4x A demon + " 1x A division + " 1x A dog + " 1x A door + " 1x A factious + " 1x A father + " 1x A fellow servant + " 1x A field + " 1x A fig tree + " 2x A generation + " 1x A ghost + " 1x A good + " 1x A grave + " 2x A hundred + " 1x A husband + " 1x A judge + " 1x A kiss + " 3x A little + " 3x A little [while] + " 1x A long + " 19x A man + " 1x A multitude + " 1x A pair + " 1x A pattern + " 1x A poor man + " 7x A prophet + " 1x A putting away + " 3x A reed + " 1x A root + " 1x A shadow + " 1x A shower + " 1x A sow + " 1x A spirit + " 1x A stone + " 1x A stranger + " 1x A stumbling block + " 1x A tabernacle + " 1x A vapor + " 1x A vessel + " 1x A vineyard + " 1x A voice + " 1x A while + " 2x A widow + " 3x A wife + " 1x A will + " 1x A woman + " 1x A work + " 1x Aaron + " 3x Abba + " 2x Abel + " 1x Abiathar + " 3x Abide + " 2x Abijah + " 2x Abiud + " 1x Able [is] + " 3x About + " 2x Above + " 39x Abraham + " 1x Abraham’s + " 1x Absurd + " 2x Abyss + " 1x According + " 5x According to + " 3x Accordingly + " 1x Accursed [is] + " 8x Achaia + " 1x Achaicus + " 2x Achim + " 1x Actually + " 7x Adam + " 1x Add + " 1x Adriatic + " 1x Adulteresses + " 2x Aeneas + " 1x Aenon + " 40x After + " 1x After that + " 1x After these + " 3x Afterward + " 2x Agabus + " 20x Again + " 1x Against + " 1x Age + " 1x Ago + " 1x Agreed + " 11x Agrippa + " 1x Aha + " 2x Ahaz + " 1x Akeldama + " 5x Alexander + " 1x Alexandrian + " 1x Alexandrians + " 33x All + " 1x All [be] + " 1x All [things] + " 1x All along + " 1x All the more speedily + " 21x All things + " 1x All things [are] + " 2x Allow + " 1x Allow you + " 10x Almighty + " 3x Alpha + " 8x Already + " 24x Also + " 1x Although + " 4x Always + " 1x Amazement + " 26x Amen + " 2x Amminadab + " 2x Amos + " 1x Amphipolis + " 1x Ampliatus + " 1x An Island + " 4x An angel + " 1x An elder + " 1x An enemy + " 1x An occasion + " 1x An ox + " 11x Ananias + " 2218x And + " 14x And I + " 1x And [He said] + " 2x And [as] + " 1x And [is it] + " 1x And [they said] + " 1x And [you say] + " 1x And after + " 5x And from there + " 3x And he + " 2x And if + " 2x And there + " 2x And they + " 1x And when + " 5x And yet + " 12x Andrew + " 1x Andronicus + " 1x Anna + " 3x Annas + " 6x Another + " 1x Answer + " 73x Answered + " 34x Answering + " 1x Answers + " 18x Antioch + " 1x Antipatris + " 1x Any + " 4x Anyone + " 2x Apart from + " 1x Apelles + " 1x Apollonia + " 8x Apollos + " 1x Apollyon + " 2x Appeared + " 6x Aquila + " 2x Arabia + " 1x Arabs + " 1x Archelaus + " 2x Are You come + " 1x Are expecting + " 2x Are forgiven + " 1x Are hidden from + " 1x Are to have put off + " 1x Are we able + " 1x Are we beginning + " 1x Are we better + " 2x Are you able + " 1x Are you sleeping + " 1x Are you willing + " 1x Areopagite + " 2x Ares + " 4x Arimathea + " 7x Arise + " 5x Aristarchus + " 1x Armageddon + " 6x Arose + " 1x Arrogant + " 1x Artemas + " 4x Artemis + " 44x As + " 1x As [were] + " 1x As being beside myself + " 1x As far as + " 2x As for + " 1x As long as + " 9x As many as + " 1x As much as + " 1x As often as + " 2x As regards + " 1x As these + " 2x As to + " 1x As was sitting + " 1x As were ministering + " 2x Asa + " 15x Asia + " 1x Asiarchs + " 3x Ask + " 1x Asked + " 1x Asking [him] + " 1x Assassins + " 2x Assos + " 1x Assuredly + " 1x Asyncritus + " 10x At + " 1x At last + " 1x At middle + " 1x At once + " 1x At present + " 2x At that time + " 4x At the same time + " 1x At the setting + " 1x Athenians + " 4x Athens + " 1x Attalia + " 1x Attempted + " 1x Augustus + " 1x Authority + " 1x Avenge + " 1x Awake you + " 3x Away with + " 1x Awoken + " 2x Azor + " 1x Azotus + " 8x Babylon + " 1x Balak + " 1x Baptism + " 12x Baptist + " 11x Barabbas + " 1x Barak + " 1x Barbarian + " 1x Barjona + " 26x Barnabas + " 2x Barsabbas + " 4x Bartholomew + " 1x Bartimaeus + " 7x Be + " 1x Be angry + " 1x Be at peace + " 1x Be careful + " 1x Be clear minded + " 1x Be desirous of + " 1x Be diligent + " 1x Be earnest + " 1x Be grieved + " 1x Be humbled + " 1x Be in subjection + " 1x Be it + " 1x Be it so + " 1x Be opened + " 2x Be patient + " 1x Be perfected + " 1x Be reconciled + " 1x Be saved + " 2x Be silent + " 1x Be sober-minded + " 1x Be submitting yourselves + " 1x Be uprooted + " 1x Be you + " 2x Be you taken away + " 1x Bears witness + " 2x Beautiful + " 2x Became + " 18x Because + " 1x Because [it was] + " 1x Because [there is] + " 66x Because of + " 1x Become + " 1x Becoming + " 7x Beelzebul + " 11x Before + " 1x Before [the] + " 1x Began + " 1x Began to look + " 3x Beginning + " 1x Behind + " 117x Behold + " 1x Beholding + " 1x Being able + " 2x Being about + " 1x Being changed + " 1x Being gathered together + " 1x Being ignorant of + " 1x Being judged + " 1x Being perplexed + " 1x Being persuaded of + " 1x Being reviled + " 1x Being tested + " 1x Belial + " 3x Believe + " 3x Believe you + " 3x Believed + " 12x Beloved + " 1x Beloved [One] + " 2x Berea + " 3x Bernice + " 1x Beseech + " 2x Besides + " 12x Bethany + " 1x Bethesda + " 8x Bethlehem + " 3x Bethphage + " 7x Bethsaida + " 2x Better + " 5x Beware + " 1x Beware of + " 1x Beyond + " 2x Bithynia + " 1x Blastus + " 2x Bless + " 10x Blessed + " 1x Blessed [One] + " 14x Blessed [are] + " 3x Blessed [be] + " 1x Blessed [is he] + " 1x Blessed [is the] + " 8x Blessed [is] + " 1x Blessed are + " 1x Blessed be + " 5x Blessed is + " 1x Blessing + " 4x Blind + " 1x Boanerges + " 2x Boaz + " 1x Bold + " 1x Bone + " 1x Booths + " 3x Both + " 1x Bread + " 8x Bring + " 1x Brood + " 2x Brother + " 1x Brotherly love + " 8x Brothers + " 1x Buried + " 1x Burnt offerings + " 219x But + " 1x But I + " 1x But [it is] + " 1x But [of] + " 1x But [this is] + " 1x But beware + " 1x But in + " 1x But no one + " 1x But this + " 1x But woe + " 1x But you + " 1x Buy + " 23x By + " 1x By all means + " 18x By faith + " 1x By one + " 1x By so much + " 1x By teachings + " 1x By this + " 1x By what + " 1x By which + " 1x By whose + " 9x Caesar + " 1x Caesar's + " 15x Caesarea + " 3x Caesar’s + " 8x Caiaphas + " 2x Cain + " 1x Call + " 1x Called out + " 14x Came + " 1x Came forth + " 1x Came in stealthily + " 2x Came up + " 1x Can it be [that] + " 4x Cana + " 1x Canaan + " 1x Canaanite + " 16x Capernaum + " 2x Cappadocia + " 1x Carpus + " 1x Cast + " 2x Cast out + " 1x Cauda + " 2x Cenchrea + " 5x Cephas + " 2x Certainly + " 1x Chief Shepherd + " 1x Chiefly + " 13x Child + " 5x Children + " 1x Chios + " 2x Chorazin + " 1x Chosen [One] + " 416x Christ + " 2x Christ [is] + " 1x Christ that which + " 1x Christ's + " 1x Christians + " 3x Christ’s + " 5x Cilicia + " 1x Cilicia [he is] + " 2x Circumcision + " 1x Claudia + " 3x Claudius + " 1x Clay + " 2x Cleanse + " 1x Cleanse out + " 1x Clement + " 1x Cleopas + " 1x Cnidus + " 1x Colonnade + " 1x Colossae + " 27x Come + " 1x Come follow + " 2x Come here + " 2x Come up + " 6x Comes + " 1x Coming + " 2x Command + " 23x Concerning + " 1x Confess + " 1x Confidence + " 6x Consider + " 1x Consider fully + " 1x Considerately + " 1x Continue + " 1x Continued to bear witness + " 1x Contrary to + " 6x Corinth + " 2x Corinthians + " 8x Cornelius + " 2x Correctly + " 1x Cos + " 2x Could + " 1x Could wish + " 16x Council + " 1x Council member + " 1x Counsel + " 1x Cover + " 1x Creator + " 1x Crescens + " 2x Cretans + " 4x Crete + " 1x Cried out + " 2x Crispus + " 6x Crucify + " 2x Cursed [is] + " 1x Cut down + " 1x Cypriot + " 5x Cyprus + " 1x Cyrene + " 1x Cyrenian + " 1x Cyrenians + " 1x Dalmatia + " 1x Damaris + " 13x Damascus + " 1x Daniel + " 1x Dare + " 2x Daughter + " 1x Daughters + " 25x David + " 1x David [were] + " 2x Day + " 2x Days + " 2x Deacons + " 5x Death + " 1x Decapolis + " 1x Deity + " 1x Delay + " 2x Delays + " 1x Delivering + " 3x Demas + " 2x Demetrius + " 1x Demonstrates + " 1x Denied + " 3x Depart + " 3x Derbe + " 1x Descendants + " 1x Deserving + " 1x Desire you + " 2x Desolate + " 1x Destroy + " 1x Destroyer + " 1x Did You come + " 3x Didymus + " 1x Died + " 1x Difficult + " 1x Diotrephes + " 1x Discordant + " 4x Dismiss + " 2x Dispersion + " 1x Dividing + " 1x Divine Being + " 1x Division + " 2x Do + " 1x Do business + " 1x Do corrupt + " 2x Do not + " 1x Do you dearly love + " 2x Do you desire + " 1x Do you know + " 1x Do you want + " 2x Dorcas + " 1x Draw near + " 1x Draw out + " 1x Drawing near + " 1x Drink + " 1x Drusilla + " 1x Dwelt + " 7x Each + " 2x Each one + " 1x Early in the morning + " 1x Earnestly pursue + " 1x Earthquakes + " 2x Easier + " 1x Easier for + " 16x Egypt + " 3x Egyptian + " 1x Egyptians + " 1x Either + " 1x Elamites + " 1x Elders + " 2x Eleazar + " 2x Eli + " 2x Eliakim + " 24x Elijah + " 2x Eliud + " 9x Elizabeth + " 2x Eloi + " 1x Elymas + " 1x Emmaus + " 1x Emperor + " 1x Emperor's + " 1x Encircled + " 1x Encouraged + " 1x End + " 2x Enoch + " 1x Enough + " 3x Enter + " 2x Entered + " 1x Entering + " 3x Epaphras + " 2x Epaphroditus + " 1x Epenetus + " 1x Ephesian + " 1x Ephesians + " 15x Ephesus + " 1x Ephphatha + " 1x Ephraim + " 1x Epicureans + " 1x Equip + " 3x Erastus + " 3x Esau + " 1x Especially + " 1x Eternal + " 1x Eubulus + " 1x Eunice + " 1x Euodia + " 2x Euphrates + " 1x Eutychus + " 2x Eve + " 13x Even + " 1x Even as + " 2x Even if + " 1x Even they + " 8x Evening + " 25x Every + " 24x Everyone + " 1x Everything + " 1x Evident + " 1x Evil + " 1x Exceedingly + " 1x Exhort + " 1x Expel + " 2x Explain + " 1x Eye + " 1x Eyes + " 1x Fair + " 1x Fair weather + " 3x Faithful + " 1x Faithful [is] + " 2x Fall + " 2x Fallen + " 2x Fallen is + " 1x Far be it + " 1x Farewell + " 1x Fast + " 240x Father + " 2x Fathers + " 3x Fear + " 2x Fearing + " 3x Feast + " 1x Feast of Dedication + " 2x Feed + " 9x Felix + " 1x Fellow servant + " 13x Festus + " 2x Field + " 1x Fifty + " 1x Fight + " 1x Fill + " 6x Finally + " 1x Finding fault + " 2x Finds + " 1x Fire + " 7x First + " 1x Firstborn + " 3x Five + " 1x Fled + " 1x Flee + " 8x Follow + " 1x Food + " 3x Fool + " 2x Foolish + " 1x Fools + " 120x For + " 1x For [You] + " 2x For [in] + " 2x For [it is] + " 3x For as + " 1x For even + " 1x For if + " 1x For indeed + " 1x For me + " 1x For sake of + " 2x For the + " 1x For the sake + " 1x For this + " 1x For what + " 1x For when + " 1x For wherever + " 1x For yourselves + " 2x Forgive + " 1x Fortunatus + " 1x Forty + " 1x Foundation + " 1x Foxes + " 2x Free + " 1x Freedmen + " 5x Friend + " 31x From + " 1x From among + " 2x From now on + " 1x From the + " 4x From there + " 9x From where + " 2x Furthermore + " 1x Gabbatha + " 2x Gabriel + " 1x Gadarenes + " 4x Gaius + " 2x Galatia + " 1x Galatian + " 1x Galatians + " 2x Galilean + " 6x Galileans + " 42x Galilee + " 2x Gallio + " 1x Gamaliel + " 1x Gate + " 1x Gather + " 1x Gather together + " 1x Gathered + " 1x Gave + " 1x Gaza + " 2x Gennesaret + " 1x Gentile + " 69x Gentiles + " 3x Gerasenes + " 2x Get + " 1x Get you away + " 2x Gethsemane + " 1x Gideon + " 1x Gird yourself about + " 13x Give + " 2x Give back + " 1x Give heed + " 1x Gladly + " 3x Glory + " 32x Go + " 1x Go away + " 1x Go forth + " 1x Go near + " 4x Go out + " 687x God + " 1x God [as] + " 1x God [did] + " 1x God [is there] + " 8x God [is] + " 1x God [there is] + " 1x God-breathed + " 1x God-fearing + " 10x God’s + " 1x Gog + " 1x Going + " 2x Going forth + " 1x Going on + " 3x Golgotha + " 3x Gomorrah + " 1x Good + " 2x Good [is] + " 1x Good [it is] + " 17x Grace + " 5x Grace [be] + " 1x Grant + " 5x Great + " 3x Great [is] + " 4x Greater + " 1x Greater things + " 1x Greatly + " 1x Greatly afraid + " 1x Grecian + " 1x Greece + " 5x Greek + " 14x Greeks + " 38x Greet + " 6x Greetings + " 9x Greets + " 1x Grow + " 1x Guides + " 1x Guiltless + " 1x Ha + " 1x Had + " 2x Had been saying + " 2x Had been standing + " 1x Had been standing by + " 1x Had decided + " 2x Had given + " 1x Had seized + " 1x Had spoken + " 9x Hades + " 2x Hagar + " 3x Hail + " 4x Hallelujah + " 1x Hands + " 2x Haran + " 1x Hardened + " 1x Has appeared + " 1x Has become + " 2x Has become like + " 1x Has been divided + " 1x Has been fulfilled + " 1x Has been given + " 1x Has been swallowed up + " 1x Has bound up + " 4x Has come + " 1x Has died + " 2x Has drawn near + " 2x Has grown dull + " 1x Has happened + " 1x Has risen + " 1x Has sworn + " 1x Has testified + " 1x Has visited + " 1x Hasten + " 2x Have + " 2x Have been forgiven + " 1x Have been released + " 3x Have mercy on + " 2x Have patience + " 1x Have sent + " 1x Have you + " 1x Have you been bound + " 1x Have you been loosed + " 1x Have you understood + " 1x Havens + " 5x Having + " 1x Having agreed + " 1x Having allowed [him] + " 1x Having answered + " 1x Having appointed + " 1x Having approached + " 5x Having arisen + " 5x Having arrived + " 1x Having ascended + " 1x Having beaten + " 1x Having become jealous + " 1x Having been + " 1x Having been afraid + " 1x Having been asked + " 1x Having been assembled together + " 1x Having been awoken + " 1x Having been baptized + " 1x Having been born again + " 1x Having been brought about + " 1x Having been called + " 1x Having been caught + " 1x Having been circumcised + " 1x Having been distressed + " 1x Having been filled + " 1x Having been justified + " 1x Having been let go + " 2x Having been moved with compassion + " 1x Having been pledged + " 1x Having been set free + " 1x Having been set outside + " 1x Having been spoken + " 1x Having been terrified + " 3x Having begun + " 1x Having blown gently + " 1x Having boarded + " 1x Having bound + " 1x Having broken up + " 2x Having brought + " 2x Having called + " 1x Having called for + " 1x Having called in + " 1x Having called near + " 1x Having called to [him] + " 1x Having called together + " 1x Having calmed + " 2x Having chastised + " 1x Having chosen + " 15x Having come + " 1x Having come about + " 1x Having come down + " 1x Having come in + " 1x Having come near + " 1x Having come out + " 1x Having come to [Him] + " 1x Having come to [him] + " 2x Having come together + " 1x Having commanded + " 1x Having considered [it] + " 2x Having continued + " 1x Having cried out + " 1x Having crucified + " 3x Having departed + " 1x Having descended + " 1x Having died + " 1x Having dipped + " 1x Having disarmed + " 1x Having drawn near + " 5x Having entered + " 1x Having entered in + " 2x Having fallen + " 2x Having fallen down + " 1x Having followed + " 2x Having foreseen + " 2x Having found + " 1x Having gathered + " 1x Having given + " 14x Having gone + " 1x Having gone down + " 2x Having gone forth + " 4x Having gone out + " 1x Having gone up + " 26x Having heard + " 1x Having heard [it] + " 1x Having heard of + " 1x Having kindled + " 1x Having knocked + " 4x Having known + " 1x Having known [it] + " 2x Having known [this] + " 1x Having leaned + " 1x Having left + " 3x Having lifted up + " 1x Having looked at + " 2x Having looked intently + " 1x Having looked on + " 1x Having looked on [them] + " 1x Having looked up + " 1x Having made a sign + " 1x Having neglected + " 2x Having opened + " 1x Having passed over + " 5x Having passed through + " 1x Having perceived + " 1x Having proclaimed the gospel to + " 1x Having put + " 1x Having put aside + " 2x Having read [it] + " 3x Having received + " 1x Having recognized + " 1x Having returned + " 1x Having risen + " 14x Having risen up + " 1x Having rowed + " 1x Having run + " 1x Having run up + " 1x Having said + " 2x Having sailed + " 1x Having sat down + " 30x Having seen + " 2x Having seen [it] + " 2x Having seized + " 2x Having sent + " 1x Having set aside + " 1x Having set at naught + " 1x Having sighted + " 1x Having sought out + " 2x Having spent + " 1x Having spoken boldly + " 2x Having stood + " 1x Having stood up + " 1x Having stopped + " 1x Having struck + " 1x Having supposed + " 1x Having surrounded + " 2x Having taken + " 1x Having taken [it] up + " 1x Having taken aside + " 2x Having taken hold + " 4x Having turned + " 1x Having turned around + " 1x Having turned back + " 1x Having washed [her] + " 1x Having willed [it] + " 1x Having withdrawn + " 147x He + " 13x He Himself + " 3x He abides + " 1x He accomplished + " 2x He added + " 3x He allowed + " 1x He also + " 5x He answered + " 2x He answering + " 7x He appeared + " 2x He appears + " 4x He appointed + " 1x He appoints + " 1x He ascended + " 4x He asked + " 1x He ate + " 1x He ate [it] + " 2x He became + " 1x He became hungry + " 1x He became poor + " 1x He becomes + " 18x He began + " 1x He began giving [it] + " 1x He began speaking + " 2x He began teaching + " 1x He beholds + " 1x He being + " 1x He blasphemes + " 3x He blessed + " 1x He blessed [it] + " 2x He breathed His last + " 1x He breathed on [them] + " 1x He brings + " 1x He broke + " 2x He broke [it] + " 2x He broke [them] + " 1x He brought forth + " 7x He called + " 1x He called to [Him] + " 3x He calls + " 1x He calls near + " 12x He came + " 1x He came forth + " 2x He cast out + " 3x He casts out + " 1x He ceased + " 2x He chose + " 13x He comes + " 4x He commanded + " 4x He commands + " 2x He compelled + " 1x He condemned [them] + " 1x He continued to write + " 1x He could + " 1x He cried out + " 1x He deceives + " 1x He dedicated + " 1x He delivered up [Him] + " 5x He departed + " 1x He descended + " 2x He desired + " 1x He destroyed + " 7x He did + " 1x He did allow + " 1x He did answer + " 1x He did desire + " 1x He did give + " 1x He did permit + " 3x He died + " 1x He directed + " 1x He directs + " 1x He distributed + " 1x He divided + " 1x He does keep + " 3x He drew near + " 1x He drove out + " 1x He endured the ways + " 8x He entered + " 1x He entered in + " 1x He esteemed + " 1x He exists + " 2x He fell + " 1x He fell asleep + " 2x He finds + " 2x He foreknew + " 1x He foretold + " 5x He found + " 12x He gave + " 1x He gave [Himself] over + " 2x He gave [it] + " 1x He gave [them] + " 1x He gave as an inheritance + " 1x He girded + " 3x He gives + " 1x He glorified + " 2x He goes before + " 1x He goes up + " 2x He granted + " 2x He had + " 2x He had been + " 1x He had been accustomed + " 1x He had been called + " 1x He had cast out + " 1x He had chosen + " 1x He had completed + " 1x He had died + " 2x He had done + " 1x He had made + " 1x He had opened + " 1x He had promised + " 1x He had raised + " 1x He had reclined + " 7x He had said + " 1x He had silenced + " 4x He had spoken + " 1x He had taken + " 1x He had washed + " 1x He hardens + " 4x He has + " 1x He has anointed + " 1x He has appeared + " 1x He has avenged + " 1x He has been raised + " 1x He has been revealed + " 1x He has begun + " 1x He has blasphemed + " 1x He has blinded + " 1x He has brought down + " 1x He has called + " 1x He has done + " 1x He has entered + " 1x He has filled + " 1x He has freely given + " 1x He has fulfilled + " 5x He has given + " 1x He has helped + " 1x He has inherited + " 1x He has judged + " 2x He has left + " 1x He has looked + " 1x He has made + " 1x He has made obsolete + " 1x He has made to dwell + " 1x He has obtained + " 1x He has perfected + " 1x He has poured out + " 1x He has prepared + " 2x He has promised + " 1x He has put in subjection + " 1x He has raised + " 1x He has reconciled [You] + " 1x He has said + " 1x He has scattered + " 1x He has scattered abroad + " 1x He has seen + " 1x He has sent + " 1x He has sent away + " 1x He has shortened + " 1x He has shown + " 1x He has spoken + " 1x He has taken + " 1x He has testified + " 1x He has visited + " 1x He has willed + " 1x He having commanded + " 1x He having entered + " 2x He having said + " 1x He having seen + " 13x He healed + " 1x He heard + " 3x He hears + " 2x He helps + " 1x He himself + " 1x He holds + " 1x He humbled + " 1x He inquired + " 7x He instructed + " 1x He instructed [them] + " 1x He intercedes + " 1x He interpreted + " 1x He invited + " 40x He is + " 4x He is able + " 2x He is about + " 1x He is alive + " 1x He is ashamed + " 1x He is betrayed + " 1x He is coming + " 1x He is going + " 1x He is holding + " 1x He is out of His mind + " 5x He is risen + " 1x He is saying + " 2x He is speaking + " 1x He judges + " 2x He justified + " 1x He keeps + " 2x He kept giving [them] + " 1x He kept questioning + " 1x He kept speaking + " 2x He knew + " 1x He knows + " 2x He laid + " 1x He lavished + " 1x He leads + " 1x He learned + " 3x He led + " 1x He led captive + " 1x He led forth + " 2x He left + " 1x He left off + " 3x He lives + " 1x He looked upon [me] + " 4x He loved + " 1x He loves + " 5x He made + " 1x He made a show [of them] + " 1x He made alive together + " 1x He made distinction + " 1x He made known + " 1x He makes + " 1x He makes rise + " 1x He may be + " 1x He may come + " 1x He may count worthy + " 1x He may exalt + " 1x He may forgive + " 1x He may fulfill + " 2x He may give + " 1x He may hear + " 1x He may say + " 1x He may send out + " 1x He may show mercy to + " 1x He may strike down + " 1x He might annul + " 3x He might be crucified + " 1x He might be revealed + " 1x He might become + " 1x He might bring + " 1x He might create + " 1x He might deliver + " 2x He might destroy + " 1x He might establish + " 1x He might fill + " 1x He might gather together + " 1x He might give + " 1x He might judge + " 4x He might lay + " 1x He might make known + " 1x He might offer + " 1x He might pray + " 1x He might reconcile + " 2x He might redeem + " 1x He might rule over + " 1x He might sanctify + " 1x He might save + " 1x He might say + " 1x He might see + " 1x He might send + " 1x He might send out + " 2x He might shame + " 1x He might show + " 1x He might take away + " 1x He might taste + " 3x He might touch + " 2x He named + " 9x He opened + " 1x He opens + " 1x He ordered + " 1x He ought + " 1x He overthrew + " 2x He overturned + " 1x He passed over + " 1x He passed the night + " 1x He placed + " 2x He poured out + " 1x He pours + " 3x He prayed + " 1x He preached + " 1x He predestined + " 1x He predestined [to be] + " 1x He prepared beforehand + " 1x He presented + " 1x He proclaimed the gospel + " 2x He promised + " 1x He promised beforehand + " 1x He prunes + " 1x He purchased + " 1x He purposed + " 3x He put + " 1x He put to death + " 2x He questioned + " 2x He raised + " 1x He raised [us] up together + " 3x He raised up + " 7x He rebuked + " 1x He receives + " 3x He reclined + " 1x He rejoiced + " 1x He related + " 1x He released + " 3x He remained + " 1x He removed + " 1x He rescued + " 2x He revealed + " 1x He revealed [Himself] + " 1x He rises + " 191x He said + " 3x He sat + " 1x He sat down + " 4x He saved + " 16x He saw + " 95x He says + " 1x He scourges + " 1x He sends + " 1x He sends forth + " 1x He sends rain + " 7x He sent + " 3x He sent away + " 3x He set + " 3x He shall come + " 1x He shall go + " 1x He shall hand over + " 1x He shall have annulled + " 1x He shall have put + " 1x He should cast forth + " 1x He should come + " 1x He should eat + " 1x He should offer + " 1x He should suffer + " 2x He showed + " 1x He shows mercy + " 1x He sighed deeply + " 1x He signified [it] + " 1x He spared + " 1x He spat + " 3x He speaks + " 18x He spoke + " 1x He spoke a blessing + " 4x He stayed + " 1x He stirs up + " 2x He stood + " 1x He suffered + " 2x He swore + " 1x He takes + " 1x He takes [it] + " 2x He takes away + " 1x He taught + " 1x He testified + " 1x He testifies + " 1x He told + " 2x He took + " 1x He took hold of + " 6x He touched + " 1x He touched him + " 1x He trusted + " 3x He wants + " 2x He warned + " 29x He was + " 2x He was able + " 5x He was about + " 1x He was amazed + " 1x He was angry + " 4x He was asking + " 1x He was awaiting + " 1x He was aware + " 1x He was betrayed + " 1x He was blessing + " 1x He was buried + " 1x He was calling + " 1x He was calling out + " 1x He was commanding + " 1x He was condemned + " 2x He was crucified + " 1x He was deeply moved + " 4x He was doing + " 3x He was going + " 1x He was going away + " 1x He was going through + " 1x He was healing + " 1x He was hidden + " 3x He was hungry + " 1x He was instructing + " 1x He was known + " 1x He was laid + " 1x He was led + " 1x He was left + " 1x He was lodging + " 1x He was looking around + " 1x He was lying + " 1x He was moved with compassion + " 1x He was opening + " 2x He was passing through + " 3x He was praying + " 2x He was questioning + " 1x He was raised + " 1x He was raised up + " 2x He was reasoning + " 1x He was reckoned + " 1x He was reclining + " 37x He was saying + " 1x He was separated + " 1x He was silent + " 2x He was sitting + " 14x He was speaking + " 1x He was staying + " 1x He was supposing + " 3x He was taken up + " 7x He was teaching + " 1x He was thrown down + " 2x He was transfigured + " 1x He was watching + " 1x He was willing + " 2x He was wishing + " 1x He washed + " 10x He went + " 3x He went away + " 3x He went down + " 5x He went forth + " 1x He went on + " 4x He went out + " 4x He went up + " 1x He wept + " 2x He were + " 1x He were dead + " 9x He who + " 1x He who [is] + " 1x He whom + " 1x He will + " 1x He will arise + " 2x He will be + " 1x He will be betrayed + " 2x He will be called + " 1x He will be raised up + " 1x He will be upheld + " 1x He will break + " 2x He will burn up + " 1x He will clear + " 3x He will come + " 1x He will declare + " 1x He will deliver [us] + " 1x He will destroy + " 1x He will display + " 1x He will draw near + " 1x He will exalt + " 1x He will execute + " 1x He will find + " 1x He will furnish + " 4x He will give + " 2x He will give orders + " 1x He will guide + " 2x He will heal + " 1x He will lead + " 1x He will proclaim + " 1x He will quench + " 2x He will reign + " 1x He will remove + " 3x He will rise again + " 3x He will say + " 3x He will send + " 1x He will separate + " 1x He will set + " 1x He will show + " 1x He will sit + " 2x He will speak + " 1x He will tabernacle + " 2x He will take + " 1x He will tell + " 1x He will wipe away + " 1x He wills + " 4x He withdrew + " 1x He worked + " 2x He would allow + " 1x He would come down + " 2x He would depart + " 1x He would dine + " 1x He would explain + " 1x He would have dismissed + " 1x He would have given + " 1x He would have spoken + " 1x He would heal + " 1x He would permit + " 1x He would rebuke + " 1x He would say + " 1x He would send + " 1x He wrote + " 1x He yielded up + " 2x Hear + " 1x Hear this + " 1x Hear you + " 4x Heard + " 1x Heard of + " 2x Hearing + " 1x Hearing [it] + " 1x Heat + " 1x Heaven [is] + " 6x Heavenly + " 3x Hebrew + " 3x Hebrews + " 3x Hellenists + " 1x Help + " 4x Helper + " 1x Henceforth + " 4x Here + " 1x Here [is] + " 1x Hermas + " 2x Hermes + " 1x Hermogenes + " 31x Herod + " 1x Herod [did] + " 3x Herodians + " 5x Herodias + " 1x Herodion + " 2x Hezekiah + " 2x Hezron + " 1x Hiera + " 2x Hill + " 842x Him + " 4x Him who [is] + " 1x Him whom + " 71x Himself + " 29x His + " 1x His Son + " 1x His [own] + " 1x His [words] + " 3x His own + " 1x His words + " 1x Hold fast + " 95x Holy + " 3x Holy One + " 5x Holy [One] + " 3x Honor + " 1x Honorable [let] + " 6x Hosanna + " 1x Hosea + " 39x How + " 2x How long + " 4x How many + " 4x How much + " 1x How much more + " 1x How often + " 5x However + " 1x Humble yourselves + " 3x Husbands + " 2x Hymenaeus + " 2x Hypocrite + " 3x Hypocrites + " 338x I + " 10x I [am] + " 1x I [he] + " 1x I [too] + " 1x I [will] + " 1x I abide + " 4x I adjure + " 25x I also + " 1x I also [am] + " 1x I also [have become] + " 53x I am + " 6x I am able + " 1x I am about + " 1x I am absent + " 2x I am accused + " 1x I am acquainted with + " 1x I am afraid + " 1x I am an ambassador + " 1x I am appointed + " 1x I am ascending + " 2x I am ashamed + " 1x I am ashamed of + " 1x I am astonished + " 1x I am being poured out as a drink offering + " 1x I am being tempted + " 12x I am coming + " 1x I am confident + " 1x I am conscious of + " 1x I am distressed + " 2x I am doing + " 1x I am entrusted with + " 1x I am expecting + " 1x I am filling up + " 1x I am full + " 1x I am glad + " 7x I am going + " 1x I am going away + " 1x I am going through + " 1x I am having + " 1x I am insane + " 1x I am jealous as to + " 1x I am lifted up + " 1x I am loved + " 2x I am lying + " 2x I am moved with compassion + " 1x I am perfected + " 1x I am perplexed + " 7x I am persuaded + " 1x I am pressed + " 1x I am profited + " 1x I am pursuing + " 4x I am saying + " 3x I am speaking + " 1x I am stirring up + " 1x I am suffering + " 1x I am telling + " 1x I am weak + " 3x I am well pleased + " 4x I am willing + " 9x I am writing + " 1x I answered + " 1x I appeal + " 1x I arise + " 2x I arrived + " 6x I ask + " 1x I ate + " 3x I baptized + " 1x I batter + " 1x I be examined + " 3x I bear witness + " 5x I became + " 1x I became servant + " 2x I beg of + " 2x I begged + " 1x I beheld + " 1x I behold + " 4x I believe + " 1x I believed + " 1x I boast of + " 1x I bow + " 1x I bring + " 1x I bring good news + " 1x I broke + " 2x I brought + " 1x I brought [him] down + " 1x I build + " 1x I call + " 12x I came + " 2x I came forth + " 1x I came in + " 2x I came out + " 1x I cast against [them] + " 1x I cast out + " 1x I caught + " 1x I ceased + " 1x I charge + " 1x I chose + " 6x I come + " 1x I come back + " 2x I command + " 3x I commanded + " 2x I commend + " 3x I commit + " 1x I complete + " 1x I composed + " 1x I confess + " 1x I consent + " 1x I consulted + " 1x I could see + " 1x I counsel + " 1x I count + " 1x I coveted + " 1x I cried out + " 3x I dearly love + " 1x I decided + " 1x I delight + " 3x I delivered + " 13x I desire + " 1x I determined + " 4x I did + " 1x I did [it] + " 1x I did away with + " 1x I did burden + " 1x I did lay down + " 1x I did regret [it] + " 1x I did run + " 1x I did shrink back + " 1x I did sow + " 1x I die + " 1x I disobeyed + " 17x I do + " 1x I do ask + " 5x I do know + " 1x I do lie + " 1x I do love + " 1x I do permit + " 1x I do praise + " 1x I do refuse + " 1x I do regret [it] + " 1x I do set aside + " 5x I do want + " 1x I do wish + " 2x I do wrong + " 3x I drink + " 1x I earnestly declare + " 1x I earnestly testify + " 1x I eat + " 1x I endure + " 1x I endured + " 1x I entered + " 1x I escaped + " 1x I esteem + " 1x I esteem it + " 2x I esteemed [it] + " 15x I exhort + " 3x I exhort [you] + " 1x I exhorted + " 1x I fast + " 3x I fear + " 3x I fell + " 1x I fell down + " 1x I fight + " 2x I find + " 1x I foresaw + " 1x I forewarn + " 1x I forgave + " 1x I fought wild beasts + " 2x I found + " 2x I fully consent + " 1x I gain + " 1x I gave + " 1x I gave to drink + " 9x I give + " 1x I give this charge + " 7x I go + " 2x I go away + " 1x I guarded [them] + " 4x I had + " 1x I had been conscious of + " 1x I had come + " 1x I had done + " 1x I had eaten + " 1x I had torn down + " 1x I hate + " 1x I hated + " 36x I have + " 1x I have appeared + " 1x I have applied + " 1x I have around [me] + " 3x I have become + " 1x I have been bound + " 1x I have been crucified with then + " 1x I have been entrusted with + " 1x I have been filled + " 1x I have been fully known + " 1x I have been glorified + " 1x I have been hindered + " 1x I have been saying + " 1x I have been wanting + " 1x I have before said + " 1x I have begotten + " 1x I have beheld + " 1x I have believed + " 1x I have betrothed + " 1x I have boasted + " 2x I have bought + " 1x I have brought + " 3x I have called + " 1x I have chosen + " 7x I have come + " 3x I have come down + " 1x I have decided + " 1x I have defrauded + " 1x I have desired + " 1x I have directed + " 1x I have done + " 1x I have done wrong + " 1x I have esteemed + " 1x I have finished + " 1x I have foretold + " 1x I have foretold [it] + " 2x I have forgiven + " 1x I have fought + " 5x I have found + " 2x I have given + " 1x I have glorified [it] + " 1x I have gone about + " 1x I have grieved + " 1x I have grown rich + " 1x I have handed over + " 3x I have heard + " 3x I have kept + " 3x I have known + " 1x I have laid + " 1x I have learned the secret + " 1x I have left + " 1x I have lost + " 1x I have loved + " 1x I have made + " 1x I have made known + " 1x I have married + " 1x I have obtained [it] + " 1x I have passed + " 1x I have prepared + " 1x I have raised up + " 3x I have said + " 1x I have seen + " 5x I have sent + " 1x I have sent back + " 2x I have set + " 1x I have shown + " 2x I have sinned + " 6x I have spoken + " 1x I have stood + " 1x I have strength + " 1x I have stretched out + " 1x I have toiled + " 4x I have told + " 1x I have wanted + " 1x I have warned + " 12x I have written + " 1x I have written before + " 4x I hear + " 31x I heard + " 1x I helped + " 1x I hid + " 1x I honor + " 10x I hope + " 2x I hungered + " 7x I implore + " 3x I implore [you] + " 1x I inquire + " 1x I judge + " 1x I judged + " 1x I keep + " 2x I kept + " 1x I kept declaring + " 1x I kept persecuting [them] + " 1x I knew + " 53x I know + " 2x I lay + " 1x I lay down + " 2x I leave + " 3x I left + " 1x I lie + " 1x I listened to + " 3x I live + " 1x I lived [as] + " 1x I long + " 1x I long after + " 10x I looked + " 2x I lost + " 2x I love + " 2x I loved + " 2x I made + " 1x I made known + " 1x I magnify + " 3x I make + " 1x I make a defense + " 3x I make known + " 1x I marveled + " 1x I may attain + " 1x I may awaken + " 1x I may be bold + " 1x I may be delivered + " 1x I may be filled + " 1x I may be refreshed with + " 1x I may be restored + " 1x I may be saved + " 1x I may bear witness + " 1x I may believe + " 1x I may boast + " 1x I may deliver up + " 3x I may eat + " 1x I may find + " 1x I may gain + " 1x I may give away + " 2x I may go + " 1x I may have compassion + " 1x I may impart + " 1x I may lay + " 1x I may lay hold + " 1x I may place + " 1x I may receive sight + " 1x I may say + " 1x I may show mercy + " 1x I mean + " 1x I might be + " 1x I might be betrayed + " 1x I might be weak + " 1x I might become + " 1x I might build + " 2x I might cast out + " 4x I might come + " 1x I might cut off + " 1x I might gain + " 4x I might have + " 1x I might hear + " 1x I might inherit + " 1x I might instruct + " 1x I might judge + " 1x I might know + " 1x I might live + " 1x I might make merry + " 1x I might place upon + " 2x I might preach + " 1x I might put it too severely + " 1x I might receive sight + " 2x I might save + " 1x I might see [it] + " 1x I might send + " 1x I might show + " 1x I might snare + " 1x I might take + " 1x I might thirst + " 4x I might win + " 3x I myself + " 1x I opposed [him] + " 1x I ought + " 1x I overabound + " 1x I persecuted + " 4x I place + " 1x I practice + " 1x I praise [you] + " 4x I pray + " 1x I preach the gospel + " 1x I preached + " 1x I prescribe + " 1x I press on + " 1x I proclaim + " 2x I proclaimed + " 1x I proclaimed the gospel + " 1x I prove + " 1x I purpose + " 2x I purposed + " 1x I reap + " 1x I rebuke + " 4x I received + " 1x I received sight + " 3x I reckon + " 1x I refrain + " 1x I regard [him] + " 7x I rejoice + " 3x I rejoiced + " 1x I release + " 1x I remained + " 1x I remembered + " 1x I remind + " 1x I repent + " 1x I rescued [him] + " 1x I restore [it] + " 1x I revealed + " 1x I robbed + " 16x I said + " 1x I said [it] + " 40x I saw + " 1x I saw [coming] + " 168x I say + " 1x I say this + " 1x I scattered + " 8x I see + " 1x I see [them] + " 2x I seek + " 2x I seek after + " 2x I send + " 1x I send forth + " 4x I sent + " 1x I sent [him] + " 5x I serve + " 1x I shall be + " 1x I shall dig + " 1x I shall do + " 1x I shall have arrived + " 1x I shall have been removed + " 1x I shall have gone through + " 1x I shall have seen + " 2x I shall kiss + " 2x I shall pray + " 1x I shall provoke to jealousy + " 1x I shall release + " 1x I shall remember + " 2x I shall send + " 1x I shall send away + " 1x I shall take away + " 2x I shall touch + " 1x I should ask [you] + " 1x I should be a hindrance + " 1x I should be filled + " 1x I should be running + " 1x I should be shaken + " 2x I should become conceited + " 1x I should boast + " 2x I should come + " 1x I should complete + " 1x I should delay + " 1x I should desire + " 6x I should do + " 3x I should have + " 1x I should hear of + " 1x I should lose + " 1x I should make clear + " 1x I should mourn over + " 1x I should offer + " 1x I should preach the gospel + " 3x I should release + " 1x I should say + " 2x I should speak + " 2x I should tell + " 1x I should treat [you] + " 1x I should untie + " 1x I show + " 1x I showed + " 1x I shrunk back + " 1x I sinned + " 1x I sit + " 1x I sowed + " 22x I speak + " 7x I spoke + " 2x I stand + " 1x I suffer + " 1x I suffer hardship + " 1x I suffered + " 1x I suppose + " 2x I swore + " 1x I take + " 1x I take it + " 1x I take pleasure + " 1x I teach + " 5x I tell + " 2x I testify + " 1x I testify [that] + " 8x I thank + " 3x I think + " 1x I thirst + " 2x I thirsted + " 1x I tithe + " 1x I toil + " 1x I toiled + " 3x I told + " 1x I took + " 1x I travail + " 1x I turned + " 4x I understand + " 2x I urged + " 1x I utter + " 10x I want + " 1x I warn + " 1x I warned before + " 16x I was + " 1x I was about + " 1x I was advancing + " 1x I was afraid + " 1x I was angry + " 1x I was aware + " 1x I was beaten with rods + " 1x I was compelled + " 1x I was compelling [them] + " 1x I was delivered + " 1x I was eager + " 1x I was found + " 1x I was laid hold of + " 1x I was let down + " 1x I was observing [it] + " 1x I was on my way + " 1x I was persecuting + " 1x I was planning + " 1x I was put to shame + " 1x I was reasoning + " 2x I was saying + " 2x I was sent + " 1x I was shipwrecked + " 2x I was shown mercy + " 1x I was sick + " 1x I was sitting + " 1x I was speaking + " 1x I was stoned + " 1x I was thinking + " 1x I was well pleased + " 1x I was wishing + " 1x I wash + " 1x I washed + " 1x I watched + " 2x I went + " 1x I went away + " 2x I went out + " 4x I went up + " 1x I were pleasing + " 1x I will + " 1x I will anger + " 1x I will appear + " 1x I will ask + " 1x I will avenge + " 8x I will be + " 1x I will be afraid + " 2x I will be ashamed + " 1x I will be diligent + " 1x I will be granted + " 2x I will be healed + " 1x I will be ready + " 1x I will be speaking + " 1x I will bless + " 3x I will boast + " 1x I will bring to remembrance + " 2x I will build + " 1x I will burden [you] + " 1x I will call + " 1x I will call for + " 2x I will cast + " 1x I will cause + " 7x I will come + " 1x I will come in + " 1x I will confess + " 2x I will declare + " 1x I will destroy + " 2x I will do + " 1x I will dwell + " 1x I will examine + " 1x I will find out + " 3x I will follow + " 1x I will forgive + " 1x I will frustrate + " 14x I will give + " 1x I will glorify [it] + " 2x I will go + " 1x I will go on + " 1x I will grant + " 1x I will have compassion on + " 3x I will heal + " 1x I will hear fully + " 2x I will inscribe + " 1x I will judge + " 1x I will keep + " 1x I will kill + " 1x I will know fully + " 1x I will lay down + " 1x I will leave + " 1x I will let down + " 6x I will make + " 1x I will make a prosperous journey + " 1x I will make war + " 1x I will multiply + " 1x I will open + " 2x I will pay + " 2x I will pour out + " 1x I will praise + " 2x I will pray + " 1x I will put + " 1x I will raise up + " 1x I will ratify + " 1x I will rebuild + " 1x I will rejoice + " 2x I will release [Him] + " 2x I will remain + " 2x I will remove + " 1x I will report + " 4x I will return + " 4x I will say + " 2x I will see + " 5x I will send + " 1x I will set before + " 1x I will set in order + " 1x I will set off + " 1x I will set upright + " 7x I will show + " 1x I will show mercy to + " 2x I will sing praise + " 1x I will sing praises + " 1x I will spare [anyone] + " 3x I will speak + " 1x I will stay + " 1x I will store up + " 2x I will strike + " 1x I will tear down + " 1x I will tell + " 1x I will utter + " 1x I will winter + " 1x I will write + " 9x I wish + " 1x I wish that + " 1x I wished + " 1x I would be + " 1x I would have endured with + " 1x I would wish + " 5x I write + " 5x I wrote + " 6x Iconium + " 1x Idumea + " 319x If + " 1x If [I am] + " 1x If [it is] + " 1x If [there is] + " 1x If even + " 1x If not + " 1x Illyricum + " 1x Imitators + " 1x Imitators together + " 1x Immanuel + " 11x Immediately + " 1x Impossible + " 1x Impossible [it is] + " 84x In + " 2x In [the] + " 1x In [the] fourth + " 1x In a time + " 1x In everything + " 2x In fact + " 2x In hearing + " 1x In human terms + " 1x In many portions + " 1x In many ways + " 3x In no way + " 1x In nothing + " 1x In order that + " 1x In pouring + " 1x In prayer + " 2x In that case + " 1x In the heart + " 1x In the morning + " 2x In this + " 1x In this case + " 1x In this manner + " 2x In this way + " 1x In vain + " 2x In what + " 1x In whomever + " 2x Inasmuch as + " 10x Indeed + " 1x Inside + " 13x Instead + " 1x Instead [ought] + " 8x Into + " 1x Invisible [One] + " 1x Irrevocable + " 6x Is + " 2x Is about + " 1x Is cheerful + " 1x Is clinging + " 1x Is destroyed + " 5x Is it lawful + " 1x Is passing away + " 1x Is revealed + " 1x Is sanctified + " 1x Is sick + " 1x Is suffering hardships + " 14x Isaac + " 19x Isaiah + " 11x Iscariot + " 24x Israel + " 7x Israelites + " 1x It behooved + " 1x It behooved [you] + " 6x It behooves + " 1x It behooves [him] + " 1x It being + " 22x It came to pass + " 1x It came to pass [that] + " 2x It came to pass that + " 3x It happened + " 1x It has been excluded + " 1x It has been finished + " 1x It has been said + " 13x It has been written + " 1x It having been disclosed + " 2x It is + " 1x It is better + " 1x It is concealed from + " 2x It is done + " 1x It is enough + " 2x It is necessary + " 2x It is necessary for + " 1x It is permitted + " 4x It is sown + " 1x It is testified + " 1x It seemed good + " 7x It was + " 1x It was fitting + " 1x It was necessary for + " 1x It was said + " 1x It was shown + " 1x It was they + " 1x It was told + " 1x It will be [that] + " 1x It will be recompensed + " 1x It will come + " 1x It will happen that + " 1x It will result + " 1x It would be + " 1x Italian + " 4x Italy + " 19x Jacob + " 2x Jairus + " 1x Jambres + " 29x James + " 1x James [son] + " 1x Jannes + " 4x Jason + " 2x Jechoniah + " 2x Jehoshaphat + " 1x Jephthah + " 3x Jeremiah + " 6x Jericho + " 132x Jerusalem + " 2x Jesse + " 822x Jesus + " 1x Jesus [was] + " 5x Jew + " 2x Jewish + " 151x Jews + " 1x Jezebel + " 2x Joanna + " 1x Joel + " 101x John + " 1x John [as] + " 1x John's + " 2x Jonah + " 8x Joppa + " 2x Joram + " 15x Jordan + " 24x Joseph + " 2x Joshua + " 2x Josiah + " 2x Jotham + " 1x Joy + " 3x Judah + " 2x Judaism + " 26x Judas + " 2x Judas [son] + " 1x Jude + " 28x Judea + " 1x Judean + " 2x Judge + " 1x Julia + " 2x Julius + " 1x Junias + " 10x Just as + " 1x Justice + " 3x Justus + " 1x Keep watch + " 1x Kept silent + " 40x King + " 5x Knew + " 3x Know + " 1x Know You + " 1x Know [this] + " 2x Knowing + " 1x Knowledge + " 3x Known + " 1x Knows + " 29x Lamb + " 2x Land + " 6x Laodicea + " 6x Last + " 11x Law + " 1x Lawgiver + " 1x Laws + " 1x Lay hold + " 15x Lazarus + " 1x Leading by the hand + " 2x Leave + " 2x Leave alone + " 1x Left + " 2x Legion + " 1x Lest + " 1x Let Him deliver + " 1x Let Him descend + " 2x Let [Him] be crucified + " 6x Let be + " 1x Let become + " 1x Let boast + " 1x Let depart + " 1x Let examine + " 1x Let go + " 1x Let him ask + " 1x Let him call near + " 1x Let him pray + " 1x Let him seek + " 1x Let him sing praises + " 1x Let him turn away + " 1x Let it be + " 1x Let learn + " 1x Let share + " 1x Let sink + " 1x Let us do + " 1x Let us eat + " 2x Let us go + " 1x Let us go through + " 2x Let us pass over + " 1x Let us see + " 4x Levi + " 1x Levites + " 1x Levitical + " 1x Lie in wait + " 2x Life + " 10x Light + " 9x Like + " 18x Likewise + " 1x Linus + " 1x Lion + " 3x Listen + " 1x Listen to + " 6x Little children + " 1x Little girl + " 1x Live + " 1x Living [One] + " 1x Living [is] + " 1x Lois + " 2x Look + " 428x Lord + " 1x Lord [be] + " 4x Lord [is] + " 3x Lord’s + " 2x Lot + " 4x Love + " 1x Loved + " 2x Lucius + " 2x Luke + " 3x Lydda + " 2x Lydia + " 1x Lysanias + " 2x Lysias + " 6x Lystra + " 20x Macedonia + " 2x Macedonians + " 1x Made a presentation before + " 12x Magdalene + " 4x Magi + " 1x Magnifies + " 1x Magog + " 1x Majestic + " 2x Majesty + " 3x Make + " 1x Make haste + " 1x Make room for + " 1x Make sit down + " 1x Make straight + " 1x Malchus + " 1x Male + " 1x Malta + " 7x Man + " 1x Manaen + " 2x Manasseh + " 22x Many + " 3x Many things + " 1x Marana + " 7x Mark + " 13x Martha + " 48x Mary + " 13x Master + " 1x Masters + " 2x Matthan + " 5x Matthew + " 2x Matthias + " 2x May grant + " 1x May it happen + " 389x Me + " 1x Me [is] + " 1x Measure + " 1x Medes + " 2x Melchizedek + " 25x Men + " 3x Mercy + " 2x Mesopotamia + " 2x Messiah + " 2x Michael + " 1x Mighty One + " 3x Miletus + " 1x Milk + " 9x Mine + " 1x Mine [is] + " 1x Miracles + " 1x Mitylene + " 1x Mnason + " 1x Mocked + " 1x More abundantly + " 1x More blessed + " 1x More boldly + " 1x More tolerable + " 2x Morning + " 60x Moses + " 2x Moses’ + " 5x Most High + " 1x Most gladly + " 1x Mother + " 1x Motions + " 15x Mount + " 1x Mounts + " 1x Move + " 6x Much + " 1x Mute + " 37x My + " 1x My [are] + " 1x My own + " 1x Myra + " 17x Myself + " 2x Mysia + " 1x Naaman + " 2x Nahshon + " 1x Nain + " 2x Name + " 1x Naphtali + " 6x Nathanael + " 2x Nazarene + " 1x Nazarenes + " 23x Nazareth + " 1x Nea + " 2x Near + " 1x Neatly + " 2x Necessary + " 1x Necessary [are] + " 2x Need + " 24x Neither + " 1x Nereus + " 22x Never + " 7x Nevertheless + " 1x New + " 1x Nicanor + " 5x Nicodemus + " 2x Nicolaitans + " 1x Nicolas + " 1x Nicopolis + " 1x Niger + " 1x Night + " 1x Ninevites + " 33x No + " 7x No longer + " 1x No more + " 28x No one + " 2x No one [is] + " 1x No rather + " 4x Noah + " 3x None + " 6x Nor + " 396x Not + " 1x Not [are] + " 1x Not [have] + " 8x Not even + " 9x Not yet + " 19x Nothing + " 51x Now + " 1x Now if + " 1x Nympha + " 21x O + " 1x O God + " 1x O Israel + " 1x O Lord + " 4x O [you] of little faith + " 1x O barren woman + " 2x O death + " 1x O heaven + " 1x O house + " 3x O king + " 1x O wretched + " 2x Obed + " 1x Obey + " 1x Objecting + " 1x Observe + " 7x Of + " 1x Of David + " 3x Of God + " 1x Of Him + " 1x Of Paul + " 1x Of [Him] + " 1x Of [the] promise + " 1x Of a centurion + " 1x Of a god + " 1x Of a man + " 1x Of a truth + " 2x Of all + " 1x Of endurance + " 1x Of foreign + " 1x Of greater + " 1x Of hospitality + " 1x Of itself + " 1x Of much + " 1x Of new wine + " 1x Of some + " 4x Of the + " 1x Of them + " 1x Of them seeking + " 3x Of this + " 1x Of this [man] + " 1x Of us + " 2x Of whom + " 2x Of you + " 4x Offspring + " 3x Olivet + " 1x Olympas + " 3x Omega + " 5x On + " 1x On His part + " 8x On account of + " 1x On behalf + " 17x On the + " 1x On the appointed + " 1x On the contrary + " 1x On untying + " 22x One + " 1x One [is] + " 1x One [thing] + " 1x One another’s + " 2x One thing + " 1x One who shows partiality + " 2x Onesimus + " 3x Only + " 1x Only One + " 1x Only [they asked] + " 1x Opposing + " 53x Or + " 1x Ordered + " 6x Other + " 18x Others + " 6x Otherwise + " 1x Out + " 16x Out of + " 1x Out of [the] + " 1x Out of the synagogues + " 1x Outside [are] + " 4x Over + " 1x Overseer + " 4x Pamphylia + " 2x Paphos + " 2x Paradise + " 1x Parmenas + " 1x Partakers + " 1x Parthians + " 1x Passing through + " 26x Passover + " 3x Passover lamb + " 1x Patara + " 1x Patmos + " 1x Patrobas + " 136x Paul + " 1x Paul [said] + " 1x Paulus + " 1x Pay + " 10x Peace + " 1x Peace [be] + " 1x Pentecost + " 2x Perez + " 3x Perga + " 2x Pergamum + " 1x Perhaps + " 4x Permit + " 1x Permit [it] + " 1x Permit that + " 1x Permitted + " 1x Persis + " 135x Peter + " 1x Peter [said] + " 1x Peter [with that] + " 2x Pharaoh + " 5x Pharisee + " 76x Pharisees + " 2x Philadelphia + " 1x Philetus + " 27x Philip + " 6x Philippi + " 1x Philippians + " 1x Philologus + " 1x Phlegon + " 1x Phoebe + " 3x Phoenicia + " 1x Phoenix + " 3x Phrygia + " 1x Phygelus + " 1x Physician + " 50x Pilate + " 1x Pisidia + " 3x Place + " 1x Polis + " 3x Pontius + " 1x Pontus + " 1x Porcius + " 1x Power + " 1x Powerfully + " 6x Praetorium + " 2x Praise + " 4x Pray + " 1x Pray earnestly + " 1x Pray earnestly to + " 1x Praying + " 1x Preach + " 3x Preparation + " 5x Prepare + " 2x Presently + " 3x Prisca + " 3x Priscilla + " 1x Prochorus + " 2x Produce + " 1x Professing + " 1x Prophecies + " 1x Prophesied + " 3x Prophesy + " 1x Prophet + " 9x Prophets + " 1x Ptolemais + " 1x Publius + " 1x Pudens + " 1x Put + " 2x Put forth + " 2x Put off + " 2x Put on + " 1x Put to death + " 1x Puteoli + " 1x Pyrrhus + " 1x Quartus + " 1x Question + " 1x Questions + " 1x Quickly + " 1x Quirinius + " 15x Rabbi + " 2x Rabboni + " 1x Raca + " 1x Rachel + " 3x Rahab + " 2x Ram + " 1x Ramah + " 1x Rarely + " 4x Rather + " 1x Reasoning + " 1x Rebecca + " 1x Rebuke + " 1x Rebuked + " 2x Receive + " 1x Receive sight + " 1x Received back + " 1x Reclined + " 1x Recognize + " 1x Red + " 1x Refresh + " 2x Rehoboam + " 5x Rejoice + " 2x Rejoice with + " 1x Rejoice you + " 1x Rejoiced + " 1x Related + " 2x Release + " 1x Religion + " 1x Remaining + " 10x Remember + " 1x Remembered + " 1x Remind + " 1x Render + " 6x Repent + " 1x Rephan + " 1x Replied + " 1x Report + " 2x Reported + " 1x Resist + " 2x Resolving + " 2x Return + " 1x Returned + " 1x Rhegium + " 1x Rhoda + " 1x Rhodes + " 1x Rich + " 2x Right + " 2x Righteous + " 3x Righteous One + " 4x Rightly + " 1x Rightly so + " 2x Rise + " 7x Rise up + " 1x River + " 1x Rivers + " 5x Romans + " 8x Rome + " 3x Rose up + " 2x Rufus + " 1x Rulers + " 1x Ruth + " 34x Sabbath + " 17x Sabbaths + " 2x Sacrifice + " 13x Sadducees + " 84x Said + " 1x Sailing + " 1x Salamis + " 1x Salim + " 2x Salmon + " 1x Salmone + " 2x Salome + " 1x Salvation + " 7x Samaria + " 2x Samaritan + " 3x Samaritans + " 1x Samos + " 1x Samothrace + " 1x Samson + " 3x Samuel + " 1x Sanctify + " 1x Sanhedrin + " 1x Sapphira + " 2x Sarah + " 3x Sardis + " 1x Sat down + " 27x Satan + " 23x Saul + " 1x Save + " 19x Savior + " 1x Saw + " 8x Say + " 71x Says + " 28x Scripture + " 1x Scripture [is] + " 19x Scriptures + " 1x Scythian + " 7x Sea + " 1x Seal + " 1x Search + " 1x Secundus + " 3x See + " 2x See [that] + " 4x See that + " 2x See that you + " 2x See you + " 1x Seed + " 4x Seeing + " 1x Seeing that + " 1x Seek + " 1x Seized + " 1x Select + " 1x Seleucia + " 1x Sell + " 1x Senate + " 2x Send + " 1x Send forth + " 3x Sent + " 1x Sergius + " 1x Serpents + " 1x Servant + " 5x Servants + " 1x Set apart + " 1x Settle + " 5x Seven + " 1x Sexual immorality + " 1x Shall I praise + " 1x Shall be + " 1x Shall we continue + " 1x Shall we sin + " 1x Share in suffering + " 1x Sharon + " 6x She + " 1x She came beforehand + " 1x She fell down + " 1x She runs + " 3x She says + " 2x She was saying + " 1x She who [is] + " 1x She will be saved + " 1x She will bear + " 2x Shealtiel + " 2x Shechem + " 1x Sheep Gate + " 4x Shepherd + " 1x Should we pay + " 4x Show + " 9x Sidon + " 1x Sidonians + " 1x Signs + " 11x Silas + " 1x Silence + " 2x Siloam + " 4x Silvanus + " 2x Silver + " 4x Simeon + " 56x Simon + " 1x Simon’s + " 1x Sin + " 4x Sinai + " 6x Since + " 13x Sir + " 1x Sirs + " 8x Sit + " 1x Six + " 1x Slave [being] + " 2x Slaves + " 1x Sleep + " 2x Smyrna + " 43x So + " 1x So [is] + " 1x So also + " 1x So long + " 2x So many + " 1x So many things + " 1x So much as + " 3x So that + " 11x So then + " 1x Sober up + " 5x Sodom + " 5x Solomon + " 1x Solomon’s + " 15x Some + " 1x Some of + " 202x Son + " 1x Son [as] + " 1x Sons + " 1x Sopater + " 1x Sosipater + " 2x Sosthenes + " 1x Soul + " 1x Sovereign + " 1x Sovereign Lord + " 2x Spain + " 1x Speak + " 1x Speaking + " 1x Speaking the truth + " 159x Spirit + " 1x Spirit [that] + " 4x Spirits + " 1x Spoke + " 1x Stachys + " 2x Stand + " 1x Standing + " 6x Stephen + " 1x Stiff-necked + " 6x Still + " 1x Still not + " 1x Stoics + " 1x Stood + " 1x Stood by + " 1x Straight + " 1x Strange things + " 3x Stretch out + " 1x Strive + " 1x Subject yourselves + " 1x Such + " 1x Suddenly + " 1x Suffices + " 2x Sufficient + " 1x Suppose you + " 2x Surely + " 1x Surely not + " 1x Surpassingly increased + " 1x Susanna + " 1x Sychar + " 1x Syntyche + " 1x Syracuse + " 7x Syria + " 1x Syrian + " 1x Syrophoenician + " 2x Tabitha + " 13x Take + " 1x Take away + " 1x Take care + " 6x Take courage + " 17x Take heed + " 1x Take heed to + " 1x Take off + " 2x Take up + " 1x Talitha + " 1x Tamar + " 1x Tarrying + " 3x Tarsus + " 1x Taverns + " 42x Teacher + " 7x Tell + " 1x Temptation + " 2x Terrified + " 1x Tertius + " 2x Tertullus + " 1x Testify + " 1x Tetrarch + " 2x Thaddaeus + " 1x Thankful + " 1x Thankfulness + " 1x Thanks + " 3x Thanks [be] + " 24x That + " 7x That which + " 262x The + " 1x The Queen + " 1x The Skull + " 19x The [One] + " 112x The [one] + " 1x The [ones] + " 1x The fourteenth + " 1x The men + " 1x The one + " 1x The queen + " 9x The things + " 1x The things of this life + " 1x The trumpet will sound + " 1x Their + " 126x Then + " 1x Then indeed + " 1x Then surely + " 2x Theophilus + " 5x There + " 4x There are + " 1x There came + " 3x There is + " 13x There was + " 1x There was coming + " 10x There were + " 2x There will arise + " 6x There will be + " 1x Thereafter + " 85x Therefore + " 33x These + " 1x These [are] + " 1x These [men] + " 54x These things + " 5x Thessalonica + " 1x Theudas + " 9x They + " 1x They accompanied + " 7x They answered + " 1x They are + " 1x They are leading + " 1x They are zealous after + " 2x They asked + " 2x They began + " 1x They began calling + " 1x They bring + " 1x They broaden + " 1x They brought + " 1x They called + " 1x They came + " 1x They cast + " 3x They cried out + " 1x They declared + " 1x They desire + " 1x They divided + " 1x They found + " 1x They gathered together + " 1x They had + " 1x They hated + " 2x They have + " 1x They have been informed + " 1x They have taken away + " 1x They having kindled + " 1x They love + " 1x They made + " 2x They recognized + " 1x They refreshed + " 1x They remained + " 11x They said + " 15x They say + " 1x They set + " 1x They speak + " 2x They stirred up + " 1x They stumbled + " 2x They themselves + " 1x They tie up + " 1x They told + " 2x They took + " 1x They took away + " 1x They took up + " 1x They went + " 2x They went forth + " 1x They went out + " 7x They were + " 1x They were afraid + " 1x They were amazed + " 1x They were bringing + " 1x They were closely watching + " 1x They were eating + " 1x They were giving heed + " 1x They were hearing + " 1x They were holding + " 1x They were listening + " 1x They were making signs + " 1x They were persuaded + " 1x They were pleased + " 6x They were saying + " 3x They were seeking + " 1x They were stoned + " 1x They were weeping + " 1x They were willing + " 1x They will be divided + " 1x They will begin + " 1x They will have respect for + " 1x They will look + " 1x They will respect + " 1x They will see + " 1x Things + " 2x Think you + " 1x Third + " 114x This + " 1x This One + " 1x This [One] + " 5x This [is] + " 8x This [man] + " 2x This one + " 10x Thomas + " 31x Those + " 1x Those who + " 2x Those whom + " 3x Though + " 1x Three times + " 4x Through + " 1x Thunder + " 35x Thus + " 3x Thyatira + " 1x Tiberias + " 1x Timon + " 22x Timothy + " 1x Titius + " 7x Titus + " 1x Titus [to go] + " 13x To + " 2x To Caesar + " 1x To Demetrius + " 1x To Gaius + " 1x To Greeks + " 3x To Him + " 3x To Him [be] + " 1x To Philemon + " 2x To Timothy + " 1x To Titus + " 1x To You + " 1x To [him] knowing + " 1x To [the] Jews + " 2x To [the] elect + " 1x To abstain + " 2x To all + " 1x To an unknown + " 1x To believe + " 1x To boast + " 1x To dig + " 1x To each + " 1x To everyone + " 1x To him + " 1x To know + " 1x To make merry + " 4x To me + " 3x To no one + " 1x To obey + " 1x To one + " 1x To remind + " 1x To strike + " 1x To teach + " 1x To thank + " 21x To the + " 3x To the [One] + " 5x To the [one] + " 1x To this + " 7x To those + " 2x To us + " 5x To what + " 1x To which + " 1x To whom + " 1x To whomever + " 10x To you + " 8x Today + " 1x Told + " 1x Tomorrow + " 1x Took + " 1x Took [their] stand + " 1x Took counsel + " 2x Took place + " 1x Took up + " 1x Touch + " 1x Touched + " 1x Toward + " 1x Train + " 1x Transgressions + " 1x Tribulation + " 1x Triumphs over + " 6x Troas + " 3x Trophimus + " 1x True + " 1x True [One] + " 79x Truly + " 5x Trustworthy [is] + " 1x Tryphena + " 1x Tryphosa + " 1x Turned away + " 25x Twelve + " 1x Two + " 1x Two [women] + " 1x Two hundred + " 1x Two years + " 5x Tychicus + " 5x Tyre + " 1x Unbind + " 1x Unceasingly + " 1x Undeniable + " 1x Understands + " 1x Unleavened Bread + " 3x Unleavened [Bread] + " 1x Unsuitable + " 9x Until + " 3x Unto + " 1x Up to + " 3x Upon + " 1x Urbanus + " 2x Us + " 2x Uzziah + " 1x Varieties + " 2x Very sorrowful + " 1x Violently + " 1x Walk + " 1x Walking + " 22x Was + " 1x Was accompanied by + " 1x Was asking + " 1x Was begging + " 1x Was carried + " 1x Was divided + " 1x Was drawing near + " 1x Was following + " 1x Was grieved + " 1x Was heard + " 1x Was invited + " 1x Was opened + " 1x Was opposing + " 5x Was saying + " 1x Was sitting + " 1x Was spread abroad + " 1x Was thrown into commotion + " 1x Was to suffer + " 8x Watch + " 1x Watch out + " 1x Watch you + " 5x Way + " 30x We + " 2x We are able + " 1x We are confident + " 1x We are found + " 1x We are having + " 2x We are persuaded + " 1x We are saying + " 1x We are taking great care to do + " 1x We ate + " 1x We command + " 1x We deem it worthy + " 1x We desire + " 1x We enter + " 2x We exhort + " 3x We give thanks + " 3x We have + " 1x We have already charged + " 1x We have found + " 1x We have heard + " 2x We have seen + " 2x We have sent + " 1x We hear + " 3x We implore + " 14x We know + " 1x We make known + " 1x We ought + " 1x We ourselves + " 2x We piped + " 1x We pray + " 1x We pray for + " 1x We reckon + " 1x We rejoice + " 1x We resolve + " 1x We saw + " 2x We see + " 1x We sent with + " 1x We should be diligent + " 1x We should cast off + " 1x We should come + " 1x We should fear + " 1x We should hold fast + " 1x We should rejoice + " 2x We were + " 1x We were buried + " 1x We will hear + " 2x Well + " 3x Well done + " 3x Went + " 3x Went away + " 2x Went forth + " 3x Went out + " 3x Went up + " 1x Wept + " 8x Were + " 1x Were abiding + " 3x Were amazed + " 1x Were arguing + " 2x Were asking + " 1x Were astonished + " 1x Were being led away + " 1x Were broken off + " 1x Were called + " 1x Were closely watching + " 1x Were coming together + " 1x Were crying out + " 1x Were denying [it] + " 1x Were deriding [Him] + " 3x Were following + " 2x Were gathered together + " 1x Were giving heed + " 1x Were going out + " 1x Were going with + " 1x Were grumbling + " 1x Were hearing + " 2x Were listening + " 1x Were listening to + " 1x Were marveling + " 1x Were pleased + " 1x Were present + " 1x Were running + " 9x Were saying + " 1x Were standing + " 128x What + " 1x What [is it] + " 1x What [is that] + " 5x What [is] + " 3x What if + " 1x What kind [of man] + " 2x What kind of + " 1x What things + " 4x Whatever + " 1x Whatsoever + " 103x When + " 1x When it was + " 4x Whenever + " 29x Where + " 1x Where [is the] + " 2x Where [the] + " 1x Where is + " 1x Wherever + " 6x Whether + " 21x Which + " 9x While + " 1x While still + " 1x While yet + " 58x Who + " 3x Who [is] + " 1x Who is + " 31x Whoever + " 12x Whom + " 2x Whomever + " 1x Whose + " 2x Whose [is] + " 42x Why + " 2x Why [is it] + " 1x Wicked + " 1x Widows + " 2x Will ask + " 2x Will be + " 1x Will be blessed + " 1x Will become + " 6x Will come + " 1x Will deliver + " 1x Will deliver up + " 1x Will fail + " 1x Will judge + " 1x Will render + " 1x Will rise again + " 3x Will rise up + " 1x Will send forth + " 1x Wine + " 1x Winter + " 2x Wisdom + " 1x Wish you [that] + " 11x With + " 1x With Him + " 1x With a price + " 1x With an oath + " 1x With desire + " 1x With difficulty + " 1x With oil + " 1x With respect to + " 1x With this [man] + " 1x With what + " 1x With whom + " 1x Withers + " 2x Within + " 2x Without + " 1x Without father + " 1x Without offense + " 3x Witness + " 1x Wives + " 28x Woe + " 2x Woe to + " 1x Woe to you + " 5x Woman + " 1x Women + " 6x Word + " 1x Work + " 1x Working together + " 1x Wormwood + " 5x Worthy + " 1x Worthy [is] + " 1x Wrap around [you] + " 3x Write + " 1x Write [this] + " 1x Wrote + " 31x Yes + " 1x Yesterday + " 15x Yet + " 1x Yoke + " 252x You + " 4x You [are] + " 1x You anointed + " 8x You are + " 5x You are able + " 1x You are able [to do] + " 1x You are about + " 1x You are doing + " 2x You are going + " 1x You are insane + " 1x You are mindful + " 1x You are out of your mind + " 1x You are severed + " 3x You are willing + " 1x You ask + " 1x You bear [it] + " 1x You believe + " 1x You blaspheme + " 1x You blind men + " 2x You brought + " 1x You came forth + " 1x You care for + " 1x You cast out + " 1x You come + " 1x You come forth + " 1x You crowned + " 1x You cursed + " 1x You desire + " 1x You did hide + " 1x You diligently search + " 1x You dismiss + " 3x You do + " 1x You err + " 3x You gave + " 1x You gave to drink + " 2x You had been + " 6x You have + " 1x You have appealed + " 1x You have chosen + " 1x You have come + " 1x You have condemned + " 1x You have delighted in + " 2x You have desired + " 1x You have died + " 1x You have fattened + " 12x You have given + " 5x You have heard + " 1x You have heard of + " 1x You have hidden + " 2x You have judged + " 1x You have loved + " 1x You have made + " 1x You have made known + " 2x You have prepared + " 1x You have prepared for yourself + " 1x You have put in subjection + " 2x You have seen + " 1x You have sent + " 1x You have spoken + " 1x You have taken + " 1x You have treasured up + " 2x You hear + " 2x You heard + " 1x You insult + " 2x You knew + " 12x You know + " 1x You lived in luxury + " 2x You look + " 1x You love + " 3x You loved + " 1x You made lower + " 1x You may be justified + " 1x You may eat + " 1x You may go + " 1x You might ask + " 1x You might go + " 1x You might torment + " 1x You nursed + " 1x You purchased + " 1x You put to death + " 1x You quarrel + " 1x You remember + " 5x You see + " 1x You sent + " 1x You shall have found [Him] + " 8x You shall love + " 1x You shall worship + " 2x You should come + " 1x You should do + " 1x You should keep + " 1x You should take + " 2x You speak + " 2x You strike + " 1x You take up + " 1x You teach + " 1x You tell + " 1x You took in + " 1x You took up + " 1x You went + " 2x You were + " 1x You were running + " 1x You were slain + " 1x You who + " 1x You will abandon + " 1x You will allow + " 1x You will be + " 1x You will be betrayed + " 1x You will begin + " 1x You will drink + " 1x You will fill + " 1x You will find + " 1x You will grant + " 1x You will listen to + " 1x You will roll up + " 2x You will say + " 1x You will see + " 3x You will seek + " 2x You will worship + " 1x You wish + " 1x You would be found + " 1x You would be willing + " 1x You would do + " 1x You would lay + " 4x You yourselves + " 1x Young man + " 1x Younger + " 6x Your + " 5x Yours + " 10x Yourself + " 5x Yourselves + " 3x Zacchaeus + " 2x Zadok + " 1x Zarephath + " 4x Zealot + " 4x Zebedee + " 7x Zechariah + " 1x Zenas + " 1x Zerah + " 2x Zerubbabel + " 1x Zeus + " 5x Zion + " 1x [As to] these things + " 1x [As] Lord + " 1x [As] an example + " 2x [As] father + " 1x [As] is assembling + " 1x [As] they + " 1x [As] they were eating + " 1x [As] was sitting + " 1x [As] were going + " 1x [By the] grace + " 1x [Did] not + " 1x [Enters] into + " 1x [Feast of] Unleavened Bread + " 1x [For it is] Christ + " 1x [For] all things + " 1x [He is] a man + " 1x [He is] the [One] + " 3x [He] + " 1x [He] concerning + " 1x [Him] whom + " 5x [His] + " 1x [His] Son + " 1x [His] finger + " 1x [His] mother + " 2x [His] own + " 1x [His] purpose + " 1x [I] might seem + " 1x [If] willingly + " 2x [Is it] not + " 1x [Is] + " 1x [Is] faithful + " 2x [Is] not + " 1x [Is] sufficient + " 2x [Is] the + " 1x [It is] Corban + " 1x [It is] a fearful thing + " 1x [It is] a gift + " 1x [It is] better + " 1x [It is] evident + " 2x [It is] good + " 1x [It is] hard + " 1x [It is] impossible + " 2x [It is] like + " 2x [It is] not + " 1x [It is] one of + " 1x [It is] sufficient + " 1x [It was] necessary + " 1x [Let be] without covetousness + " 1x [Let the] speech + " 1x [Let there be] nothing + " 1x [Let] + " 1x [May] the + " 1x [Not] + " 1x [One] leading + " 1x [One] like + " 1x [One] sitting + " 1x [Some] of + " 1x [That] bringing forth + " 1x [The] Athenians + " 3x [The] Lord + " 2x [The] Lord [is] + " 1x [The] Spirit + " 1x [The] aged [men] + " 1x [The] angels + " 2x [The] beginning + " 1x [The] birthday + " 1x [The] bond-servant + " 1x [The] book + " 1x [The] covenant + " 1x [The] end + " 1x [The] face + " 1x [The] fruit + " 2x [The] hour + " 1x [The] last + " 1x [The] law + " 1x [The] men + " 1x [The] mother-in-law + " 2x [The] name + " 1x [The] natural + " 1x [The] pattern + " 1x [The] revelation + " 1x [The] righteousness + " 1x [The] ruler + " 2x [The] second + " 1x [The] sentence + " 4x [The] stone + " 1x [The] sum + " 1x [The] truth + " 3x [The] voice + " 1x [The] words + " 1x [The] wretches + " 1x [There is] no + " 1x [They do] not + " 1x [They] + " 1x [This is] a plain token + " 1x [This] + " 1x [This] one + " 1x [Those] ailing + " 1x [Those] hungering + " 1x [While] are going away + " 1x [While] yet + " 1x [You] of little faith + " 1x [Your] left hand + " 1x [Your] right hand + " 1x [a certain] Jew + " 1x [a certain] season + " 1x [a place of] prayer + " 1x [a] baptism + " 1x [a] city + " 1x [a] crowd + " 1x [a] dark + " 1x [a] day + " 1x [a] good + " 1x [a] great + " 1x [a] loud + " 2x [a] solitary + " 1x [a] spirit + " 1x [a] tomb + " 1x [a] young man + " 1x [about] the + " 1x [am] humble + " 1x [am] the [one] + " 1x [an] inheritance + " 1x [and] Father + " 1x [and] Luke + " 1x [and] Titus + " 1x [and] constant frictions + " 1x [and] disciplined + " 1x [and] exhort + " 1x [and] for + " 1x [and] gentleness + " 1x [and] have put to death + " 1x [and] out of season + " 1x [and] patience + " 4x [and] peace + " 1x [and] precious + " 1x [and] ready + " 1x [and] songs + " 1x [and] thanksgivings + " 1x [and] the + " 1x [and] will establish [you] + " 1x [and] younger [women] + " 1x [and] ‘No + " 1x [another] day + " 1x [any] person + " 1x [any] stumbling block + " 1x [anything] on + " 1x [anything] to eat + " 1x [are the] members + " 1x [are they] of whom + " 1x [are] a race + " 1x [are] a transgressor + " 2x [are] all + " 1x [are] all things + " 1x [are] always + " 1x [are] among + " 1x [are] around + " 1x [are] at + " 1x [are] being guarded + " 1x [are] called + " 1x [are] coming + " 1x [are] eternal + " 1x [are] evident + " 1x [are] faithful + " 3x [are] few + " 1x [are] fools + " 1x [are] for + " 1x [are] greater + " 2x [are] in + " 3x [are] like + " 1x [are] mature + " 2x [are] not + " 1x [are] of + " 1x [are] on + " 1x [are] one + " 1x [are] possible + " 4x [are] the + " 1x [are] these + " 1x [are] uncovered + " 1x [are] weak + " 1x [are] weighty + " 1x [are] white + " 1x [are] witnesses + " 1x [are] you + " 1x [as a] sign + " 1x [as do] Mark + " 1x [as the] wage + " 1x [as] Father + " 1x [as] He is reclining + " 1x [as] Prince + " 5x [as] a footstool + " 1x [as] a pattern + " 1x [as] a prisoner + " 1x [as] a propitiation + " 1x [as] a queen + " 3x [as] a ransom + " 1x [as] an example + " 1x [as] an exchange + " 1x [as] an exchange for + " 1x [as] an offering + " 1x [as] are multiplying + " 1x [as] doctrines + " 1x [as] enemies + " 2x [as] fasting + " 1x [as] firstfruits + " 1x [as] having been crucified + " 2x [as] he + " 2x [as] instruments + " 1x [as] its + " 1x [as] judge + " 1x [as] pleasure + " 1x [as] salvation + " 2x [as] slaves + " 1x [as] the + " 1x [as] the same + " 1x [as] types + " 1x [as] were descending + " 1x [as] were going out + " 1x [as] were preparing + " 1x [asking] not + " 1x [at the] hour + " 1x [at] the + " 1x [be of] the + " 1x [be] always + " 1x [be] glory + " 1x [be] honor + " 1x [be] on + " 2x [be] thanks + " 2x [be] the + " 1x [be] upon + " 13x [be] with + " 1x [being] a slave + " 1x [both] fresh + " 1x [but] to + " 1x [by His] own + " 1x [by your] hearing + " 1x [by] + " 1x [by] a donkey + " 1x [by] faith + " 2x [by] groups + " 1x [by] the + " 1x [by] two + " 1x [came] again + " 1x [can] accuse + " 1x [come] disputes + " 1x [commanding] to abstain + " 1x [consisting] only + " 1x [dependent] widows + " 1x [due] time + " 1x [for the] blood + " 1x [for the] mature + " 1x [for them] to hold to + " 1x [for] God + " 1x [for] a camel + " 1x [for] a pattern + " 1x [for] another + " 1x [for] any + " 1x [for] the + " 1x [for] this One + " 1x [for] to be held + " 1x [for] to dwell + " 1x [for] you + " 1x [from the] dead + " 1x [from] the + " 1x [he is] a new + " 1x [he is] partner + " 1x [he] to whom + " 1x [he] whom + " 1x [her] voice + " 5x [his] + " 1x [his] brother + " 3x [his] face + " 1x [his] father + " 1x [his] hand + " 1x [his] head + " 1x [his] naked [body] + " 1x [his] will + " 1x [houses] after + " 1x [how] to abound + " 1x [how] to be brought low + " 1x [how] will he care for + " 1x [if] he will ask for + " 1x [if] not + " 1x [in the] flesh + " 1x [in the] season + " 3x [in] + " 1x [in] anything + " 1x [in] glory + " 1x [in] our own + " 1x [in] seasons + " 1x [in] sending + " 1x [in] the + " 1x [in] the things + " 1x [in] things + " 1x [in] well + " 1x [in] well-doing + " 1x [into] being + " 1x [is He] the + " 1x [is he] to whom + " 1x [is it] a great thing + " 1x [is it] out of + " 1x [is it] to me + " 1x [is my] + " 1x [is the] custom + " 1x [is the] day + " 1x [is the] fruit + " 1x [is the] greatest + " 1x [is the] head + " 1x [is the] reconciliation + " 1x [is the] riches + " 1x [is the] second + " 1x [is the] time + " 1x [is the] will + " 1x [is] Abaddon + " 2x [is] Christ + " 3x [is] God + " 1x [is] Jesus + " 1x [is] Lord + " 1x [is] a fire + " 1x [is] acceptable + " 1x [is] affirmed + " 1x [is] against + " 1x [is] an abomination + " 1x [is] called + " 1x [is] circumcision + " 1x [is] contrary to + " 1x [is] dark + " 1x [is] day + " 1x [is] dead + " 3x [is] death + " 1x [is] earthly + " 1x [is] easy + " 1x [is] equal + " 2x [is] evident + " 1x [is] exalted + " 1x [is] excepted + " 1x [is] false + " 3x [is] for + " 1x [is] full + " 1x [is] gain + " 5x [is] good + " 2x [is] great + " 2x [is] greater + " 1x [is] here + " 3x [is] holy + " 1x [is] hostility + " 8x [is] in + " 1x [is] in the + " 1x [is] inexperienced + " 1x [is] knowledge + " 2x [is] life + " 4x [is] like + " 1x [is] merciful + " 1x [is] mightier + " 1x [is] mine + " 1x [is] more necessary + " 1x [is] name + " 2x [is] near + " 6x [is] not + " 1x [is] of + " 1x [is] of Christ + " 1x [is] of us + " 1x [is] on the sea-side + " 1x [is] our + " 1x [is] out of + " 1x [is] plentiful + " 1x [is] pure + " 1x [is] riches + " 2x [is] righteous + " 1x [is] safe + " 1x [is] salvation + " 1x [is] seemly + " 1x [is] silent + " 1x [is] steadfast + " 11x [is] the + " 1x [is] then + " 2x [is] this + " 2x [is] to + " 1x [is] under + " 1x [is] upon + " 1x [is] vengeance + " 1x [is] void + " 1x [is] well-pleasing + " 2x [is] willing + " 1x [is] wise + " 4x [is] with + " 1x [is] worthless + " 1x [is] yours + " 1x [it is] a service + " 1x [it is] an unruly + " 1x [it is] evident + " 2x [it is] for + " 1x [it is] for the sake of + " 1x [it is] for you + " 3x [it is] good + " 3x [it is] impossible + " 2x [it is] in + " 1x [it is] necessary + " 2x [it is] no longer + " 1x [it is] not + " 1x [it is] now + " 1x [it is] of God + " 1x [it is] so that + " 1x [it is] to God + " 2x [it is] unto + " 1x [it is] wrong + " 1x [it was] not + " 1x [it was] that + " 1x [it were] good + " 4x [it] is + " 1x [it] so + " 4x [its] + " 1x [its] completion + " 1x [its] perfect + " 1x [its] shame + " 1x [let it be] by + " 2x [must be] dignified + " 1x [my] beloved + " 1x [my] child + " 1x [my] forefathers + " 1x [my] lord + " 1x [my] sign + " 2x [my] true + " 1x [not] + " 1x [of Him] whom + " 4x [of the] Spirit + " 1x [of the] churches + " 1x [of the] coming + " 1x [of the] flesh + " 1x [of the] soul + " 1x [of the] things + " 1x [of the] world + " 1x [of you] having suffered + " 1x [of] Jesus + " 1x [of] eternal + " 1x [of] joy + " 1x [of] the + " 2x [of] whom + " 2x [offerings] for + " 1x [on coming] from + " 2x [on] the + " 1x [one person] + " 5x [one] + " 1x [one] by + " 1x [one] having been tempted + " 1x [one] having died + " 1x [one] more honorable + " 3x [one] of + " 1x [one] possessed by a demon + " 1x [one] shall have turned + " 1x [one] stronger + " 1x [one] tempting + " 1x [ones] + " 1x [only] the + " 1x [or] ‘Behold + " 1x [other] than + " 11x [our] + " 1x [our] common + " 1x [own] + " 1x [place of] prayer + " 1x [place] where + " 1x [put on] the + " 2x [said] to + " 1x [should] not + " 1x [so as for] + " 1x [so] also + " 1x [some] brothers + " 1x [some] from among + " 1x [some] holding + " 5x [some] of + " 1x [some] there + " 6x [something] like + " 1x [something] to eat + " 1x [son of] Alphaeus + " 1x [son] + " 1x [son] of Bosor + " 3x [son] of John + " 3x [son] of Simon + " 1x [still] ministering + " 3x [that] + " 1x [that] He may send + " 1x [that] a resurrection + " 1x [that] about + " 1x [that] being touched + " 1x [that] came + " 1x [that] forgiveness + " 1x [that] having become sick + " 1x [that] having gone forth + " 1x [that] law + " 1x [that] not yet + " 1x [that] of the + " 1x [that] on + " 1x [that] same + " 1x [that] should suffer + " 1x [the things] coming + " 1x [the things] of which + " 1x [the time] comes + " 1x [the time] that + " 1x [the] Asians + " 2x [the] City + " 1x [the] Cohort + " 1x [the] Day + " 1x [the] Decapolis + " 20x [the] Father + " 11x [the] Gentiles + " 3x [the] God + " 1x [the] Holy [Place] + " 2x [the] Jerusalem + " 4x [the] Jews + " 1x [the] King + " 25x [the] Law + " 1x [the] Law [are] + " 1x [the] Law [is] + " 106x [the] Lord + " 1x [the] Lord’s + " 1x [the] Praetorium + " 1x [the] Preparation + " 1x [the] Psalms + " 1x [the] Red + " 1x [the] Righteous [One] + " 2x [the] Sabbath + " 1x [the] Sabbaths + " 3x [the] Savior + " 1x [the] Scriptures + " 10x [the] Son + " 46x [the] Spirit + " 1x [the] Stone Pavement + " 1x [the] Sunrise + " 1x [the] Three + " 1x [the] account + " 1x [the] acknowledgment + " 1x [the] administration + " 1x [the] advancement + " 1x [the] affection + " 1x [the] affections + " 2x [the] age + " 1x [the] aged [women] + " 3x [the] air + " 1x [the] ancient + " 8x [the] angels + " 1x [the] anger + " 1x [the] anointing + " 1x [the] appearing + " 1x [the] appointed + " 1x [the] architect + " 1x [the] armies + " 1x [the] ashes + " 1x [the] assurance + " 1x [the] author + " 1x [the] authority + " 1x [the] bank + " 22x [the] beginning + " 1x [the] being sound + " 1x [the] betrayer + " 4x [the] blood + " 4x [the] body + " 2x [the] bond + " 3x [the] book + " 1x [the] bow + " 1x [the] bread + " 1x [the] breastplate + " 1x [the] breasts + " 1x [the] bridegroom + " 1x [the] brim + " 2x [the] building up + " 1x [the] characterization + " 1x [the] children + " 7x [the] church + " 6x [the] circumcision + " 1x [the] cities + " 5x [the] city + " 2x [the] clouds + " 1x [the] command + " 1x [the] commanders + " 4x [the] commandment + " 2x [the] commandments + " 1x [the] commands + " 1x [the] conception + " 1x [the] conscience + " 1x [the] consolation + " 2x [the] consummation + " 1x [the] conviction + " 1x [the] cornerstone + " 1x [the] country + " 2x [the] covenant + " 1x [the] creation + " 1x [the] cross + " 1x [the] crowd + " 3x [the] cup + " 2x [the] custom + " 15x [the] day + " 7x [the] days + " 49x [the] dead + " 2x [the] death + " 1x [the] demand + " 1x [the] demolition + " 1x [the] depth + " 1x [the] desert [road] + " 1x [the] desire + " 3x [the] devil + " 1x [the] devout + " 2x [the] discipline + " 1x [the] disgrace + " 1x [the] disobedient + " 1x [the] division + " 1x [the] doors + " 1x [the] early + " 1x [the] ears + " 3x [the] earth + " 1x [the] east + " 2x [the] elect + " 1x [the] election + " 1x [the] elements + " 7x [the] end + " 1x [the] ends + " 1x [the] endurance + " 1x [the] enemies + " 1x [the] error + " 1x [the] evils + " 1x [the] exact expression + " 5x [the] eyes + " 11x [the] face + " 1x [the] faces + " 7x [the] faith + " 1x [the] falling + " 4x [the] father + " 1x [the] fear + " 1x [the] fear of God + " 2x [the] feast + " 2x [the] field + " 1x [the] fillings + " 1x [the] finger + " 3x [the] fire + " 1x [the] first + " 1x [the] first [day] + " 1x [the] firstborn + " 1x [the] firstfruit + " 22x [the] flesh + " 1x [the] flood upon + " 1x [the] flower + " 1x [the] foal + " 1x [the] foolish + " 1x [the] footstool + " 1x [the] foreknowledge + " 2x [the] foremost + " 1x [the] forerunner + " 2x [the] form + " 9x [the] foundation + " 1x [the] founding + " 1x [the] fourth + " 2x [the] fruit + " 1x [the] fulfillment + " 1x [the] fullness + " 1x [the] futility + " 1x [the] gall + " 1x [the] gates + " 1x [the] generosity + " 1x [the] glad tidings + " 11x [the] glory + " 1x [the] goads + " 1x [the] goal + " 1x [the] golden + " 1x [the] goodness + " 1x [the] gospel + " 3x [the] grace + " 1x [the] grass + " 3x [the] greatest + " 2x [the] guarantee + " 1x [the] hair + " 12x [the] hand + " 6x [the] hands + " 4x [the] head + " 1x [the] healing + " 3x [the] heart + " 2x [the] hearts + " 14x [the] heavens + " 1x [the] helmet + " 1x [the] high priesthood + " 2x [the] highest + " 1x [the] holiness + " 1x [the] home + " 1x [the] homes + " 5x [the] hope + " 8x [the] hour + " 12x [the] house + " 1x [the] household + " 1x [the] humble + " 1x [the] humility + " 3x [the] husband + " 4x [the] image + " 1x [the] immortal + " 1x [the] indulgence + " 1x [the] instructor + " 1x [the] introduction + " 1x [the] jail + " 1x [the] journey + " 2x [the] joy + " 4x [the] judgment + " 1x [the] judgment seat + " 1x [the] kindness + " 3x [the] kingdom + " 1x [the] knee + " 5x [the] knowledge + " 11x [the] land + " 7x [the] last + " 15x [the] law + " 1x [the] laws + " 1x [the] laying on + " 1x [the] leading + " 2x [the] least + " 4x [the] left + " 2x [the] left hand + " 1x [the] length + " 1x [the] letter + " 2x [the] light + " 2x [the] likeness + " 13x [the] living + " 1x [the] love + " 3x [the] man + " 1x [the] market + " 3x [the] measure + " 3x [the] mediator + " 1x [the] meeting + " 3x [the] messenger + " 1x [the] middle + " 25x [the] midst + " 1x [the] mighty works + " 4x [the] mind + " 1x [the] ministry + " 1x [the] more + " 1x [the] morning star + " 1x [the] mother + " 1x [the] mount + " 7x [the] mouth + " 2x [the] mouths + " 15x [the] name + " 1x [the] nation + " 1x [the] nations + " 1x [the] needs + " 1x [the] new + " 1x [the] north + " 1x [the] northwest + " 1x [the] number + " 1x [the] oath + " 1x [the] obedience + " 1x [the] obtaining + " 1x [the] officers + " 2x [the] one + " 1x [the] only begotten + " 1x [the] opening + " 1x [the] opportunity + " 1x [the] oppressed + " 1x [the] ordination + " 1x [the] overseers + " 2x [the] passion + " 1x [the] passions + " 1x [the] paths + " 2x [the] penalty + " 1x [the] people + " 2x [the] person + " 1x [the] piece + " 1x [the] pillar + " 2x [the] place + " 1x [the] plan + " 1x [the] plow + " 9x [the] power + " 3x [the] praise + " 1x [the] prayer + " 2x [the] precepts + " 4x [the] presence + " 1x [the] preserving + " 1x [the] principle + " 1x [the] proclamation + " 3x [the] promise + " 1x [the] prophets + " 1x [the] propitiation + " 3x [the] proud + " 1x [the] provision + " 1x [the] purification + " 3x [the] purpose + " 1x [the] putting away + " 1x [the] radiance + " 1x [the] readiness + " 1x [the] reasonable + " 2x [the] redemption + " 2x [the] region + " 1x [the] rest + " 5x [the] resurrection + " 3x [the] revelation + " 2x [the] reward + " 1x [the] riches + " 3x [the] right + " 18x [the] right hand + " 1x [the] right hands + " 1x [the] right time + " 4x [the] righteous + " 6x [the] righteousness + " 1x [the] rising + " 1x [the] roaring + " 5x [the] rooster + " 1x [the] rushing + " 1x [the] sacrifice + " 1x [the] saints + " 4x [the] salvation + " 2x [the] same + " 2x [the] sanctification + " 1x [the] scepter + " 1x [the] scroll + " 1x [the] scroll of + " 1x [the] scum + " 3x [the] sea + " 1x [the] seal + " 1x [the] second + " 1x [the] seed + " 3x [the] servant + " 1x [the] servants + " 1x [the] seven + " 1x [the] seventh + " 1x [the] sewer + " 1x [the] shame + " 1x [the] shepherd + " 1x [the] showing forth + " 3x [the] sick + " 2x [the] sign + " 1x [the] signs + " 1x [the] sins + " 3x [the] sixth + " 1x [the] smoke + " 1x [the] snare + " 5x [the] son + " 2x [the] sons + " 1x [the] soul + " 5x [the] sound + " 2x [the] south + " 1x [the] southwest + " 2x [the] spirit + " 1x [the] spiritual + " 1x [the] straight + " 1x [the] subversion + " 1x [the] sun + " 4x [the] sword + " 2x [the] synagogue + " 1x [the] teaching + " 2x [the] temple + " 1x [the] temporary + " 1x [the] tenth + " 1x [the] testimony + " 2x [the] third + " 1x [the] third time + " 2x [the] thoughts + " 2x [the] throne + " 5x [the] time + " 2x [the] times + " 1x [the] tongue + " 1x [the] town + " 13x [the] tribe + " 1x [the] true + " 2x [the] trumpet + " 8x [the] truth + " 1x [the] tunics + " 1x [the] twelve + " 1x [the] twinkling + " 1x [the] uncertainty + " 2x [the] uncircumcision + " 1x [the] ungodly + " 2x [the] unrighteous + " 1x [the] unrighteous ones + " 2x [the] uttermost part + " 1x [the] venom + " 1x [the] very thing + " 2x [the] vessels + " 7x [the] voice + " 1x [the] wage + " 1x [the] washing + " 1x [the] water + " 5x [the] way + " 1x [the] well + " 2x [the] west + " 1x [the] whole + " 2x [the] wife + " 1x [the] wilderness + " 7x [the] will + " 1x [the] wind + " 3x [the] wisdom + " 3x [the] womb + " 13x [the] word + " 2x [the] work + " 3x [the] working + " 8x [the] world + " 1x [the] worship + " 1x [the] wrath + " 1x [the] year + " 1x [the] younger [ones] + " 2x [the] youth + " 1x [their time] + " 1x [their] + " 2x [their] ability + " 1x [their] children + " 2x [their] hands + " 2x [their] voice + " 1x [their] way + " 1x [them] of a prostitute + " 1x [then] knows + " 1x [there are] prophesies + " 1x [there is] a reminder + " 1x [there is] a will + " 1x [there is] freedom + " 1x [there is] much + " 1x [there is] one + " 1x [there was] the + " 1x [there were] seven + " 1x [there] is + " 1x [they are] apostles + " 1x [they are] enemies + " 1x [they were] willing of themselves + " 1x [they] glorifying + " 1x [things] accompanying + " 1x [things] new + " 1x [things] worthy + " 1x [this is the] voice + " 1x [this] + " 1x [this] man + " 1x [those] being rich + " 1x [those] being tormented + " 1x [those] born + " 1x [those] called + " 1x [those] from + " 1x [those] having + " 1x [those] having been sent + " 1x [those] in power + " 1x [those] knowing + " 1x [those] of + " 1x [those] whom + " 1x [though] having authority + " 1x [though] owner + " 1x [to be] a man + " 1x [to be] above + " 1x [to be] apostles + " 1x [to be] head + " 1x [to be] idle + " 1x [to be] rich + " 1x [to face] judgment + " 1x [to it] yourselves + " 1x [to the] assembly + " 1x [to the] man + " 1x [to the] only + " 1x [to the] world + " 1x [to those] disobeying + " 1x [to] all + " 1x [to] you + " 1x [upon] coming + " 1x [various] places + " 1x [was a] tree + " 1x [was something] like + " 1x [was the] earthquake + " 1x [was the] jar + " 1x [was] Bar-Jesus + " 1x [was] John + " 1x [was] Mary + " 1x [was] a centurion + " 1x [was] a tabernacle + " 1x [was] a widow + " 1x [was] altered + " 1x [was] around + " 2x [was] as + " 1x [was] beautiful + " 1x [was] called + " 1x [was] faithful + " 1x [was] from + " 1x [was] glad + " 1x [was] jasper + " 5x [was] like + " 1x [was] like that + " 1x [was] righteous + " 1x [was] through + " 1x [was] unto + " 1x [we] have made + " 1x [were something] like + " 1x [were the] cherubim + " 1x [were those] having heard + " 1x [were] Dionysius + " 1x [were] four + " 1x [were] gates + " 1x [were] hearing + " 1x [were] in + " 1x [were] not + " 1x [were] twenty + " 1x [were] with + " 1x [when] I was going + " 1x [which is] Christ + " 1x [while] in + " 1x [while] living + " 1x [who are] set against + " 1x [who] called + " 1x [who] of + " 1x [will He] not + " 1x [will be] for + " 1x [will be] on + " 1x [will be] upon + " 1x [with] + " 1x [with] burdens + " 2x [with] fear + " 1x [with] power + " 1x [with] those + " 1x [with] you + " 3x [would be] the + " 2x [you are] blessed + " 2x [you] + " 1x [you] double-minded + " 1x [you] favored with grace + " 1x [you] saints + " 1x [you] sinners + " 1x [your] + " 1x [your] conduct + " 1x [your] hands + " 1x [your] place + " 26x a + " 1x a Berean + " 2x a Christian + " 1x a Council member + " 1x a Cypriot + " 1x a Father + " 3x a Galilean + " 3x a Greek + " 1x a Hebrew + " 11x a Jew + " 1x a Jew [is one] + " 1x a Jewess + " 1x a Lamb + " 2x a Levite + " 1x a Macedonian + " 1x a Master + " 1x a New Moon + " 6x a Pharisee + " 5x a Roman + " 1x a Sabbath + " 1x a Sabbath day’s + " 1x a Sabbath rest + " 2x a Samaritan + " 2x a Savior + " 3x a Son + " 1x a baby + " 1x a bag + " 2x a banquet + " 3x a baptism + " 1x a bare + " 1x a barricade + " 3x a basket + " 1x a bay + " 1x a bear’s + " 3x a beast + " 3x a bed + " 1x a beggar + " 2x a belt + " 2x a better + " 1x a better [one] + " 1x a blasphemer + " 1x a blessing + " 4x a blind [man] + " 1x a blow with the palm + " 1x a boast + " 7x a boat + " 5x a body + " 1x a book + " 1x a bow + " 1x a bramble bush + " 1x a brass + " 2x a bride + " 5x a brother + " 1x a building + " 1x a burial place + " 1x a calf + " 2x a called + " 3x a calm + " 2x a camel + " 1x a catch + " 1x a cave + " 1x a censer + " 2x a centurion + " 27x a certain + " 4x a certain [man] + " 3x a certain one + " 2x a chain + " 1x a change + " 1x a chasm + " 1x a cheerful + " 1x a chief tax collector + " 12x a child + " 1x a chosen + " 1x a citizen + " 8x a city + " 1x a clamor + " 8x a cloud + " 1x a colony + " 5x a colt + " 1x a comfort + " 3x a command + " 8x a commandment + " 1x a commencement + " 1x a commotion + " 1x a complaint + " 1x a complete + " 5x a conscience + " 1x a conspiracy + " 1x a contribution + " 1x a convert + " 1x a copy + " 1x a corner + " 1x a council + " 2x a counsel + " 2x a country + " 2x a covenant + " 1x a cover-up + " 1x a coveter + " 25x a crowd + " 6x a crown + " 3x a cry + " 1x a cultivated olive tree + " 4x a cup + " 4x a curse + " 1x a custom + " 1x a cymbal + " 2x a daughter + " 1x a daughter-in-law + " 6x a day + " 1x a day’s + " 1x a deaf man + " 1x a death + " 1x a debate + " 3x a debtor + " 1x a decision + " 1x a decree + " 1x a defeat + " 1x a defense + " 1x a delegation + " 5x a demon + " 1x a demonstration + " 3x a den + " 6x a denarius + " 1x a depraved + " 1x a desolate + " 1x a devil + " 1x a different + " 1x a dinner + " 7x a disciple + " 1x a dishonor + " 1x a dispute + " 1x a dissension + " 2x a distance + " 1x a disturbance + " 3x a doer + " 2x a donkey + " 5x a door + " 4x a dove + " 1x a dragnet + " 2x a dragon + " 6x a dream + " 3x a drunkard + " 1x a dwelling place + " 1x a eunuch + " 2x a faith + " 1x a false prophet + " 4x a famine + " 4x a father + " 1x a father [with] + " 2x a favor + " 2x a feast + " 1x a fellow elder + " 1x a fellow partaker + " 1x a fellow worker + " 1x a fellow-partaker + " 2x a fence + " 1x a fever + " 7x a few + " 3x a few things + " 2x a field + " 3x a fig tree + " 4x a fire + " 2x a fire of coals + " 1x a first + " 1x a firstfruit + " 3x a fish + " 5x a flame + " 1x a flock + " 1x a flood + " 1x a flower + " 2x a flux + " 4x a fool + " 2x a footstool + " 1x a foreign [country] + " 2x a foreigner + " 1x a forest + " 1x a form + " 5x a foundation + " 1x a four-drachma coin + " 1x a fragrance + " 1x a freedman + " 7x a friend + " 1x a fulfillment + " 1x a furnace + " 2x a garden + " 5x a garment + " 1x a ghost + " 2x a gift + " 2x a girl + " 1x a glass + " 1x a glory + " 2x a glutton + " 1x a god + " 3x a good + " 1x a good work + " 1x a grain + " 1x a graven thing + " 9x a great + " 1x a great desire + " 1x a great many + " 1x a greater + " 1x a greater than + " 1x a grumbling + " 1x a guarantee + " 1x a guard + " 1x a guide + " 2x a habitation + " 1x a hail + " 2x a hair + " 2x a half + " 2x a hand + " 1x a harbor + " 1x a hardening + " 1x a harp + " 2x a hearer + " 4x a heart + " 1x a heaven + " 1x a heavenly [one] + " 1x a helper + " 1x a hen + " 1x a hen [gathers] + " 3x a herald + " 3x a herd + " 1x a high + " 8x a high priest + " 1x a hill + " 1x a hired servant + " 1x a holy + " 1x a home + " 1x a hook + " 2x a hope + " 1x a horn + " 4x a horse + " 16x a house + " 1x a human + " 8x a hundred + " 1x a hundred years old + " 5x a hundredfold + " 6x a husband + " 1x a jettison of cargo + " 1x a joint-body + " 1x a journey + " 3x a judge + " 2x a judgment + " 1x a just + " 9x a king + " 7x a kingdom + " 4x a kiss + " 2x a knowledge + " 1x a kodrantes + " 2x a lamb + " 4x a lamp + " 1x a lampstand + " 1x a land + " 1x a lasting remembrance + " 1x a launderer + " 5x a law + " 2x a lawyer + " 1x a leader + " 1x a leopard + " 2x a leper + " 2x a letter + " 1x a letter of divorce + " 7x a liar + " 3x a lie + " 10x a light + " 1x a likeness + " 3x a linen cloth + " 3x a lion + " 1x a litra + " 16x a little + " 4x a little [while] + " 1x a little boy + " 1x a little scroll + " 5x a little while + " 1x a lodging + " 3x a long + " 1x a longer + " 1x a longing + " 1x a lot + " 1x a loud command + " 1x a lover of good + " 1x a magistrate + " 111x a man + " 1x a man [came] + " 1x a manager + " 2x a manger + " 2x a man’s + " 2x a mark + " 3x a master of a house + " 1x a mat + " 2x a matter + " 1x a means of gain + " 2x a measure + " 1x a measuring + " 1x a measuring rod + " 1x a mediator + " 3x a memorial + " 1x a merchant + " 1x a merciful + " 1x a message + " 2x a messenger + " 2x a mighty + " 3x a millstone + " 5x a minister + " 1x a ministry + " 1x a mirror + " 1x a mixture + " 1x a moment + " 1x a more excellent + " 1x a more surpassing + " 5x a mountain + " 2x a mouth + " 10x a multitude + " 5x a murderer + " 3x a mystery + " 5x a name + " 1x a narration + " 3x a nation + " 2x a native + " 1x a neighbor + " 1x a net + " 3x a new + " 1x a night and a day + " 1x a noteworthy + " 1x a novice + " 1x a nursing mother + " 1x a pair of scales + " 9x a parable + " 2x a paralytic + " 2x a part + " 2x a participation + " 1x a partner + " 2x a patch + " 1x a patroness + " 2x a pattern + " 9x a people + " 1x a perfect + " 1x a period + " 1x a perishable + " 1x a permanent + " 2x a persecution + " 1x a persecutor + " 1x a pest + " 1x a piece + " 1x a piece of cloth + " 1x a pillar + " 4x a pit + " 2x a pitcher + " 19x a place + " 1x a plant + " 4x a platter + " 1x a plot + " 1x a pool + " 1x a poor [man] + " 1x a portion + " 1x a possession + " 1x a potentate + " 1x a pretext + " 9x a priest + " 1x a priesthood + " 2x a prison + " 5x a prisoner + " 1x a proclaimer + " 1x a prominent + " 3x a promise + " 1x a proof + " 1x a property + " 20x a prophet + " 2x a prophetess + " 1x a propitiation + " 1x a psalm + " 2x a pure + " 1x a purpose + " 1x a purse + " 1x a putting away + " 1x a question + " 1x a race course + " 1x a rainbow + " 1x a reason + " 3x a reed + " 1x a remembrance + " 1x a remnant + " 2x a report + " 1x a restraint + " 6x a resurrection + " 1x a retribution + " 3x a revelation + " 1x a revelation should be made + " 1x a reviling + " 4x a reward + " 1x a rewarder + " 4x a rich man + " 1x a right [thing] + " 2x a righteous [man] + " 1x a ring + " 2x a riot + " 3x a river + " 4x a robber + " 4x a robe + " 3x a rock + " 4x a rod + " 2x a roll + " 3x a rooster + " 1x a root + " 1x a royal + " 3x a ruler + " 1x a rush + " 1x a rushing together + " 6x a sacrifice + " 1x a salt [spring] + " 1x a salvation + " 1x a sanctuary + " 1x a scorpion + " 2x a scroll + " 2x a sea + " 1x a seal + " 2x a season + " 1x a secluded + " 1x a secluded place + " 4x a second + " 1x a second [time] + " 6x a second time + " 1x a secret thing + " 1x a sect + " 1x a seed + " 1x a seller of purple + " 2x a serpent + " 20x a servant + " 1x a servant girl + " 1x a shadow + " 1x a share + " 1x a sharp disagreement + " 1x a sheep + " 2x a sheet + " 2x a shepherd + " 3x a ship + " 1x a shore + " 1x a short + " 2x a short time + " 1x a showing forth + " 1x a sickbed + " 2x a sickle + " 18x a sign + " 1x a silversmith + " 1x a simile + " 3x a sin + " 1x a sincere + " 1x a sinful + " 6x a sinner + " 3x a sister + " 5x a slave + " 2x a small + " 4x a snare + " 1x a sojourner + " 1x a soldier + " 1x a solitary + " 16x a son + " 2x a song + " 1x a sore + " 1x a soul + " 3x a sound + " 3x a south wind + " 1x a spectacle + " 17x a spirit + " 3x a sponge + " 1x a spring + " 3x a staff + " 1x a stalk of hyssop + " 2x a standing + " 2x a star + " 1x a steward + " 1x a stewardship + " 14x a stone + " 1x a stone’s + " 1x a storehouse + " 4x a storm + " 1x a strange thing + " 4x a stranger + " 2x a striker + " 1x a struggle + " 3x a stumbling block + " 3x a supper + " 1x a sweet perfume + " 7x a sword + " 1x a sycamore-fig tree + " 1x a symbol + " 2x a synagogue + " 1x a table [for them] + " 1x a talent weight + " 3x a tanner + " 2x a tax collector + " 4x a teacher + " 1x a teacher of the law + " 1x a teaching + " 1x a tear + " 2x a temple + " 2x a tenth + " 1x a terror + " 12x a testimony + " 8x a thief + " 1x a thing sacrificed to an idol + " 2x a third + " 1x a third [time] + " 1x a thorn + " 3x a thousand + " 3x a throne + " 14x a time + " 1x a title + " 5x a tomb + " 2x a tongue + " 1x a torch + " 1x a towel + " 3x a tower + " 3x a town + " 1x a trainer + " 3x a trance + " 1x a tranquil + " 3x a transgressor + " 1x a trap + " 1x a treasure + " 8x a tree + " 1x a trial + " 2x a tribe + " 1x a troublesome meddler + " 1x a trumpet + " 1x a trumpet call + " 2x a truth + " 1x a tumultuous gathering + " 1x a type + " 2x a veil + " 1x a very small + " 5x a vessel + " 3x a village + " 1x a vine + " 3x a vineyard + " 1x a viper + " 2x a virgin + " 8x a vision + " 33x a voice + " 1x a vote + " 2x a vow + " 1x a wall + " 1x a wave + " 1x a way + " 1x a wedding + " 1x a wedding feast + " 1x a whip + " 1x a wick + " 4x a widow + " 11x a wife + " 2x a wild olive tree + " 1x a wilderness + " 2x a wind + " 1x a window + " 1x a wine vat + " 1x a winepress + " 1x a wise + " 1x a wise [man] + " 4x a witness + " 29x a woman + " 1x a womb + " 9x a word + " 4x a work + " 1x a work of power + " 1x a working + " 1x a workman + " 1x a worse + " 1x a writing tablet + " 3x a year + " 2x a year ago + " 2x a yoke + " 1x a young donkey + " 1x a young goat + " 1x a young man + " 1x a zealous one + " 1x abandon + " 1x abated + " 2x abhorring + " 7x abide + " 20x abides + " 13x abiding + " 1x ability + " 10x able + " 1x able [was] + " 2x able is + " 1x able to judge + " 2x able to teach + " 1x abominable + " 3x abomination + " 1x abominations + " 2x abound + " 3x abounded + " 5x abounding + " 2x abounds + " 89x about + " 1x about [the] + " 1x about [the] Law + " 1x about baptisms + " 2x about the + " 1x about them + " 1x about these things + " 1x about to give + " 23x above + " 1x above [measure] + " 1x above [that] + " 2x above measure + " 3x above reproach + " 1x absence + " 1x abstain + " 9x abundance + " 1x abundant + " 2x abundantly + " 1x abusive + " 7x abyss + " 9x acceptable + " 3x acceptance + " 1x accepting + " 1x accepts + " 3x access + " 2x accompanying + " 1x accompanying [them] + " 1x accomplishing + " 207x according to + " 2x according to [the] + " 1x according to the + " 7x account + " 1x accounts + " 1x accurately handling + " 4x accursed + " 6x accusation + " 1x accusation you are bringing + " 2x accuse + " 1x accuse falsely + " 3x accuser + " 4x accusers + " 4x accusing + " 1x acquaintances + " 1x acquainted + " 1x acquire + " 1x acquired + " 1x acquired possession + " 1x acquired strength + " 1x across + " 2x act + " 1x act like men + " 1x act of giving + " 1x act of righteousness + " 1x acted hypocritically + " 1x action + " 1x active + " 1x acts of charity + " 1x acts unbecomingly + " 2x added + " 1x addresses + " 1x adds thereto + " 1x adjoining + " 1x adjusting + " 1x administered + " 1x administering the sacred service + " 1x administrating + " 3x administration + " 1x admirable + " 1x admonish [him] + " 4x admonishing + " 1x admonishing [you] + " 3x admonition + " 1x adorn + " 1x adorned + " 1x adorning + " 3x adulterers + " 2x adulteries + " 3x adulterous + " 1x adultery + " 1x advanced + " 1x adversaries + " 3x adversary + " 1x adverse + " 7x afar + " 7x afar off + " 1x affairs + " 4x affections + " 1x affirm + " 1x affirming + " 9x affliction + " 1x afflictions + " 1x afraid + " 93x after + " 1x after [some] + " 1x after [we are] + " 10x afterward + " 120x again + " 139x against + " 1x against Him + " 3x against him + " 1x against myself + " 2x against them + " 1x against whom + " 2x against you + " 57x age + " 1x aged + " 58x ages + " 1x aging + " 1x agitating + " 1x ago + " 2x agony + " 1x agree + " 1x agreed + " 1x agreeing + " 1x agreement + " 3x ahead + " 10x ailing + " 1x ailments + " 12x air + " 1x alabaster flask + " 1x alienated + " 2x alienated from + " 2x aliens + " 1x alighting + " 2x alike + " 2x alive + " 752x all + " 1x all [are] + " 1x all [is] + " 1x all [men] + " 1x all [of them] + " 1x all [quarters] + " 1x all [the] + " 1x all [these things] + " 1x all [these] things + " 1x all [you] + " 1x all around + " 1x all kinds of + " 2x all of you + " 4x all that + " 3x all the more + " 1x all the things + " 1x all these + " 122x all things + " 4x all things [are] + " 1x all this + " 1x all those + " 2x all time + " 1x all together + " 2x allegories + " 1x allegorized + " 2x allegory + " 5x allow + " 3x allowed + " 1x allowed [him] + " 3x almost + " 9x alms + " 1x aloes + " 35x alone + " 1x alone [are] + " 12x along + " 8x along with + " 42x already + " 1x already [it is] + " 693x also + " 4x also I + " 2x also [are] + " 1x also [called] + " 1x also [did] + " 1x also [does] + " 1x also [had been] + " 1x also [have] + " 2x also [is] + " 1x also [some] + " 1x also even + " 1x also he + " 3x also to me + " 21x altar + " 1x altar of incense + " 1x altars + " 3x although + " 1x although indeed + " 3x altogether + " 40x always + " 65x am + " 7x am I + " 1x am I able + " 1x am I denounced + " 1x am I persecuted + " 1x am I saying + " 11x am [He] + " 1x am [he] + " 1x am able + " 1x am about + " 2x am baptized + " 1x am bearing witness + " 1x am being poured out + " 1x am bold + " 1x am coming + " 1x am confident + " 1x am daring + " 1x am doing + " 3x am going + " 1x am going away + " 1x am going up + " 1x am here + " 3x am judged + " 1x am judging + " 1x am known + " 1x am perishing + " 1x am praying + " 2x am sending + " 1x am sparing + " 2x am working + " 4x amazement + " 1x amazing + " 1x ambush + " 1x amethyst + " 1x amid + " 1x amidst + " 1x amiss + " 163x among + " 1x among [the] + " 1x among [those] + " 3x among all + " 2x among men + " 3x among the + " 2x among them + " 3x among whom + " 3x among you + " 1x an Ethiopian + " 2x an Israelite + " 1x an abiding + " 2x an account + " 1x an accusation + " 2x an adulteress + " 1x an advocate + " 3x an alabaster flask + " 2x an altar + " 1x an amazing thing + " 1x an ambush + " 1x an anchor + " 19x an angel + " 2x an answer + " 12x an apostle + " 1x an appearance + " 1x an argument + " 1x an ark + " 1x an aroma + " 1x an assembly + " 1x an attempt + " 1x an avenger + " 1x an eagle + " 9x an ear + " 1x an early + " 1x an earth + " 6x an earthquake + " 1x an egg + " 1x an eighth + " 1x an elder + " 1x an embassy + " 1x an emerald + " 4x an end + " 2x an enemy + " 1x an eternal + " 1x an evil + " 2x an evildoer + " 4x an example + " 1x an executioner + " 4x an eye + " 1x an heir + " 12x an hour + " 2x an idol + " 2x an idolater + " 1x an idol’s temple + " 1x an image + " 1x an imperishable + " 1x an infant + " 4x an inheritance + " 1x an inn + " 1x an inscription + " 1x an instant + " 1x an instructor + " 1x an insurrectionist + " 1x an intelligent + " 1x an interpretation + " 1x an interpreter + " 1x an island + " 4x an oath + " 1x an obstacle + " 1x an occasion + " 1x an occasion of stumbling + " 2x an odor + " 1x an offering + " 1x an old man + " 1x an only + " 1x an only child + " 1x an opportune time + " 3x an opportunity + " 1x an orator + " 1x an order + " 2x an ox + " 1x an unbeliever + " 3x an upper room + " 1x an uproar + " 3x anchors + " 2x ancient + " 5x ancients + " 6212x and + " 1x and He + " 30x and I + " 1x and [for] + " 1x and [having] + " 1x and [itself] + " 2x and [one] + " 1x and [some] + " 2x and [that] + " 2x and [the] + " 1x and [to] + " 10x and also + " 1x and both + " 2x and even + " 2x and from there + " 2x and him + " 4x and if + " 1x and not + " 1x and the + " 1x and them + " 2x and then + " 7x and there + " 1x and these + " 1x and those + " 1x and to Me + " 2x and to a different one + " 13x and yet + " 3x anew + " 56x angel + " 62x angels + " 10x anger + " 1x anguish + " 2x animals + " 1x ankles + " 1x anoint + " 4x anointed + " 2x anointing + " 1x anointing oils + " 72x another + " 1x another [or] + " 1x another [place] + " 1x another [servant girl] + " 2x another way + " 4x another’s + " 1x answer + " 3x answer You + " 1x answer you + " 19x answered + " 1x answered that + " 65x answering + " 1x answering against + " 1x answers + " 4x antichrist + " 1x antichrists + " 1x anticipated + " 1x anxiety + " 62x any + " 1x any city + " 16x any longer + " 6x any more + " 1x any other + " 1x anyhow + " 2x anymore + " 142x anyone + " 1x anyone [is to go] + " 1x anyone’s + " 52x anything + " 4x apart + " 20x apart from + " 1x apiece + " 2x apostasy + " 7x apostle + " 56x apostles + " 4x apostleship + " 8x apparel + " 1x appeal + " 2x appear + " 13x appearance + " 14x appeared + " 8x appearing + " 1x appearing [that] + " 2x appears + " 1x applied + " 1x appoint + " 8x appointed + " 1x appointed to death + " 1x appoints + " 1x apportioned + " 1x apportioning + " 1x approaching + " 1x approve + " 7x approved + " 1x aprons + " 1x archangel + " 1x archetype + " 237x are + " 7x are You + " 2x are You doing + " 1x are You going + " 1x are You staying + " 1x are [those] + " 15x are able + " 4x are about + " 1x are approving of + " 1x are arrived + " 1x are astonished + " 1x are attending + " 1x are baptized + " 1x are bearing witness + " 1x are being built together + " 1x are being built up + " 1x are being cast + " 1x are being delivered + " 1x are being done + " 1x are being examined + " 1x are being justified + " 1x are being read + " 1x are being transformed into + " 1x are blaspheming + " 1x are blessed + " 1x are broken in pieces + " 1x are buffeted + " 1x are burned + " 1x are burst + " 2x are called + " 1x are choked + " 2x are cleansed + " 1x are clearly seen + " 3x are come + " 6x are coming + " 1x are coming to naught + " 1x are conducted + " 1x are confident + " 1x are consistent with + " 1x are covered + " 1x are crucified + " 1x are defiled + " 1x are departed + " 1x are desiring + " 1x are destroyed + " 1x are destroying + " 1x are disobedient + " 2x are doing + " 1x are done + " 1x are doubting + " 1x are drunkards + " 1x are eating + " 1x are enslaved + " 2x are entering + " 1x are fallen + " 1x are fallen asleep + " 1x are fitting + " 2x are forgiven + " 1x are fulfilled + " 2x are gathered together + " 4x are given in marriage + " 1x are giving + " 1x are giving thanks + " 1x are going + " 1x are going out + " 2x are gospelized + " 1x are grumbling + " 1x are hearing + " 1x are holding + " 1x are in danger + " 4x are lawful + " 1x are led + " 1x are looking at + " 1x are melting + " 1x are more valuable + " 2x are offered + " 1x are opposed + " 1x are opposing + " 1x are oppressing + " 1x are perishing + " 1x are perplexed + " 3x are persecuting + " 1x are persuaded [that] + " 1x are pleased + " 1x are poorly clad + " 1x are possible + " 1x are practicing + " 2x are present + " 1x are preserved + " 1x are proceeding + " 2x are proclaiming + " 1x are profitable + " 1x are purified + " 8x are raised + " 1x are regarded + " 1x are said + " 1x are saying + " 1x are seeing + " 4x are seeking + " 1x are set forth as + " 1x are sleeping + " 1x are sold + " 1x are sold for + " 1x are speaking + " 2x are standing + " 1x are standing firm + " 2x are subject + " 1x are subjected + " 1x are suffering + " 1x are sufficient + " 1x are telling [you] + " 1x are there + " 11x are they + " 3x are they able + " 1x are they baptized + " 1x are they willing + " 2x are to be + " 1x are to be subject + " 1x are to do + " 1x are to withdraw + " 1x are troubling + " 1x are turned about + " 1x are turning + " 1x are valuable + " 5x are walking + " 3x are we + " 2x are we able + " 1x are we commending + " 1x are we to do + " 3x are we to look for + " 1x are weak + " 1x are where + " 1x are wishing + " 1x are working + " 1x are worth more + " 2x are written + " 15x are you + " 4x are you able + " 1x are you angry + " 2x are you anxious + " 1x are you asleep + " 1x are you bearing with [it] + " 1x are you being perfected + " 1x are you betraying + " 1x are you come + " 1x are you come out + " 1x are you disputing + " 3x are you doing + " 1x are you going + " 1x are you ignorant + " 1x are you looking + " 1x are you restoring + " 1x are you sleeping + " 1x are you testing + " 1x are you to be + " 1x are you to grumble + " 1x are you unaware + " 1x are you walking + " 1x are you willing + " 3x area + " 1x arguing + " 2x arguments + " 5x arise + " 1x arisen + " 1x arises + " 2x arising + " 4x ark + " 2x arm + " 1x arm yourselves with + " 4x armies + " 1x armor + " 1x arms + " 1x army + " 7x arose + " 24x around + " 1x around [him] + " 1x arrayed + " 1x arrive + " 2x arrived + " 1x arriving of + " 1x arrogance + " 1x arrogant + " 1x arrows + " 2x article + " 437x as + " 1x as He + " 1x as He is speaking + " 1x as [in] + " 1x as a house + " 2x as a pretext + " 1x as a result of + " 1x as also + " 1x as are journeying + " 2x as being + " 1x as creatures of instinct + " 15x as far as + " 1x as far as [the] + " 1x as he + " 2x as high as + " 1x as high priests + " 8x as if + " 3x as long as + " 30x as many as + " 1x as much + " 12x as much as + " 1x as needing + " 1x as of + " 2x as often as + " 1x as orphans + " 1x as regards + " 1x as some + " 1x as soon as + " 1x as surely as + " 1x as talked + " 1x as them + " 1x as they are walking + " 1x as they were + " 1x as they were telling + " 2x as though + " 23x as to + " 1x as to the rest + " 1x as to these + " 1x as to which + " 1x as usually + " 1x as was going + " 1x as was going out + " 1x as was teaching + " 1x as well + " 1x as were reclining + " 2x as wife + " 1x as witness + " 1x ascended + " 2x ascending + " 1x ascension + " 2x ashes + " 3x aside + " 4x ask + " 1x ask [it] back + " 1x ask for + " 1x ask you + " 12x asked + " 1x asked [for] + " 1x asked [me] + " 2x asked for + " 12x asking + " 1x asking for + " 1x asking of + " 2x asks + " 1x aspires to + " 1x assarion + " 2x assembled + " 1x assembling together + " 4x assembly + " 1x asserting + " 1x assigned + " 1x assurance + " 1x astonished + " 1x astonishment + " 159x at + " 1x at [the time] + " 9x at [the] + " 7x at all + " 3x at all times + " 8x at any time + " 1x at each + " 1x at evening + " 1x at every time + " 1x at first + " 2x at great length + " 1x at her + " 1x at him + " 1x at his own + " 2x at last + " 2x at least + " 2x at midnight + " 4x at once + " 2x at one time + " 2x at present + " 1x at that + " 6x at that time + " 13x at the + " 1x at the end + " 2x at the same time + " 3x at the time + " 1x at what + " 1x at which + " 9x ate + " 1x ate with + " 1x attempted + " 1x attendant + " 1x attendants + " 1x attending + " 1x attending continually + " 1x audience hall + " 6x authorities + " 78x authority + " 1x autumnal + " 1x avenge + " 3x avenging + " 1x avenging [is] + " 2x avoid + " 2x avoiding + " 2x await + " 7x awaiting + " 2x awaits + " 5x away + " 4x away from + " 2x awe + " 2x ax + " 1x babbler + " 1x babies + " 3x baby + " 5x back + " 1x backs + " 9x bad + " 1x bad report + " 4x bag + " 1x band + " 1x bankers + " 2x banquets + " 15x baptism + " 3x baptize + " 1x baptize you + " 5x baptized + " 2x baptizes + " 9x baptizing + " 3x barely + " 2x barley + " 4x barn + " 2x barns + " 6x barracks + " 3x barren + " 1x barrier + " 2x base + " 1x basic principles + " 1x basin + " 2x basket + " 4x baskets + " 1x baths + " 4x battle + " 23x be + " 1x be absorbed + " 3x be afraid + " 2x be alarmed + " 1x be amazed + " 5x be anxious + " 2x be anxious about + " 1x be anxious beforehand + " 1x be ashamed + " 2x be at peace + " 2x be baptized + " 2x be born + " 1x be burdened + " 1x be called + " 1x be carried away + " 1x be come + " 1x be comforted + " 1x be conformed + " 1x be content with + " 1x be deceived + " 1x be deferring + " 1x be defrauded + " 3x be diligent + " 1x be disturbed + " 4x be done + " 1x be empowered + " 1x be emptied of power + " 1x be esteeming + " 1x be exhorted + " 1x be expanded + " 1x be failing + " 3x be filled + " 2x be forgetful + " 1x be found + " 1x be glad + " 1x be harsh + " 1x be healed + " 1x be holding forth + " 1x be in suspense + " 4x be it + " 1x be joined + " 1x be joined with + " 1x be like + " 1x be little children + " 1x be made + " 1x be merciful + " 1x be merry + " 1x be minded + " 3x be misled + " 1x be moved + " 2x be multiplied + " 1x be negligent + " 1x be overcome + " 1x be patient + " 1x be planted + " 1x be purified + " 1x be ready + " 2x be reconciled + " 1x be separate + " 1x be set at naught + " 1x be silent + " 1x be sober + " 1x be still + " 2x be strong + " 4x be subject + " 1x be submissive + " 1x be surprised + " 1x be surprised at + " 1x be tempted + " 1x be terrified + " 1x be transformed + " 1x be warmed + " 2x be you + " 2x be you cast + " 3x be you cleansed + " 1x be zealous + " 5x beam + " 1x bear + " 1x bear expense + " 2x bear with + " 10x bear witness + " 1x bear you + " 7x bearing + " 1x bearing [it] + " 1x bearing fruit + " 1x bearing testimony + " 2x bearing with + " 10x bearing witness + " 1x bearing witness with + " 1x bears + " 2x bears witness + " 1x bears witness with + " 36x beast + " 2x beasts + " 2x beat + " 5x beating + " 1x beating [Him] + " 2x beatings + " 4x beautiful + " 1x beauty + " 25x became + " 1x became dazzling + " 1x became full + " 1x became indignant + " 1x became known + " 271x because + " 2x because [it is] + " 95x because of + " 5x become + " 1x become strong + " 6x becomes + " 2x becomes tasteless + " 1x becoming + " 1x becoming drunk + " 1x becoming visible + " 4x bed + " 1x bedchamber + " 1x been committed + " 1x befitting + " 221x before + " 1x before Him + " 4x before [the] + " 1x before [your] + " 26x began + " 1x began asking + " 1x began begging + " 1x began contending + " 1x began contradicting + " 1x began following + " 1x began glorifying + " 1x began gnashing + " 1x began his defense + " 1x began inquiring + " 1x began mocking + " 1x began reasoning + " 1x began relating + " 1x began saying + " 2x began seeking + " 1x began sensing + " 1x began stirring up + " 1x began talking with + " 1x began to glorify + " 1x began to mock [him] + " 1x began to question + " 1x began to take + " 2x began to walk + " 2x began walking + " 1x began writing + " 1x began yielding + " 39x begat + " 1x begetting + " 1x beggar + " 2x begged + " 3x begging + " 1x begin + " 17x beginning + " 1x behavior + " 3x beheaded + " 2x beheld + " 11x behind + " 1x behind Him + " 1x behind [Him] + " 115x behold + " 9x beholding + " 1x beholding as in a mirror + " 1x beholds + " 178x being + " 2x being [here] + " 1x being [of him] + " 1x being [there] + " 23x being able + " 25x being about + " 1x being above [him] + " 6x being absent + " 1x being accounted + " 4x being accused + " 2x being administered + " 1x being advanced + " 1x being afraid of + " 1x being alive + " 1x being already laid + " 1x being ambitious + " 1x being angry with + " 2x being anxious + " 1x being armed + " 1x being asleep + " 1x being assembled together + " 1x being astonished + " 2x being at home + " 1x being aware of [it] + " 1x being away + " 1x being baptized + " 1x being betrothed + " 1x being blessed + " 1x being blown by the wind + " 1x being born + " 2x being borne witness to + " 1x being bound + " 1x being bound with [them] + " 1x being brought + " 1x being built up + " 2x being burdened + " 1x being busybodies + " 9x being called + " 2x being carried + " 2x being carried about + " 1x being carried away + " 2x being circumcised + " 1x being clear as crystal + " 1x being commanded + " 1x being confident + " 1x being conformed + " 1x being constant + " 2x being convicted + " 1x being crucified + " 1x being crushed + " 1x being cursed + " 1x being darkened + " 1x being dawn + " 2x being deceived + " 1x being deeply distressed + " 1x being deeply moved + " 1x being deficient + " 1x being defiled + " 1x being depraved + " 1x being designated + " 2x being despised + " 1x being destitute + " 1x being destroyed + " 1x being devoted + " 1x being diligent + " 1x being disciplined + " 1x being disobedient + " 1x being dissolved + " 3x being distant + " 2x being distressed + " 2x being done + " 1x being drawn away + " 1x being dressed + " 2x being driven + " 1x being driven about + " 1x being drunk + " 1x being drunkards + " 1x being edified + " 1x being encircled + " 1x being enlightened + " 1x being enslaved + " 1x being enticed + " 1x being epileptics + " 1x being excellent + " 1x being exposed + " 2x being fervent + " 3x being filled + " 1x being filled with + " 1x being fitted together + " 1x being forsaken + " 1x being founded + " 1x being frightened + " 5x being full + " 1x being full of sores + " 1x being furious + " 1x being given + " 1x being glorified + " 1x being governor + " 3x being grieved + " 1x being hard pressed + " 1x being harped + " 1x being held together + " 1x being helped + " 2x being ignorant + " 1x being imposed + " 1x being in pain + " 1x being in the middle + " 1x being in travail + " 1x being instructed + " 2x being joined + " 1x being joined together + " 2x being judged + " 1x being justified + " 3x being kept + " 1x being killed + " 1x being kings + " 1x being knit together + " 1x being known + " 1x being laid up + " 1x being led away + " 1x being led by the hand + " 1x being left alone + " 2x being let down + " 1x being lifted + " 1x being lords + " 2x being lost + " 3x being made + " 1x being made a spectacle + " 1x being made effective + " 2x being mistreated + " 1x being moved away + " 1x being named + " 1x being necessary + " 2x being nourished + " 1x being of sound mind + " 1x being offered + " 1x being open + " 5x being oppressed + " 1x being ordinary + " 1x being over + " 2x being over and above + " 1x being overcast + " 1x being owed + " 2x being patient + " 1x being performed + " 1x being permitted + " 1x being perplexed + " 2x being persecuted + " 1x being persuaded + " 1x being persuaded about + " 1x being persuaded of + " 1x being piped + " 5x being possessed by demons + " 1x being possessed with demons + " 2x being poured out + " 1x being prepared + " 10x being present + " 1x being present [in you] + " 1x being present with + " 1x being pressed around together + " 1x being prevented from + " 1x being profitable + " 2x being proper + " 2x being puffed up + " 1x being punished + " 1x being put into [it] + " 1x being put to death + " 1x being raised + " 2x being read + " 1x being received + " 1x being refined + " 1x being renewed + " 2x being reproved + " 1x being reserved + " 2x being revealed + " 1x being reviled + " 1x being rich + " 1x being rolled up + " 1x being rooted + " 2x being sanctified + " 2x being satisfied + " 4x being saved + " 8x being seen + " 1x being seen [are] + " 1x being sent + " 1x being sent forth + " 1x being set before + " 1x being set before [us] + " 2x being set on fire + " 3x being shaken + " 1x being short sighted + " 1x being sick + " 1x being slandered + " 1x being sober-minded + " 1x being sold + " 1x being sorrowful + " 1x being sound + " 4x being spoken + " 1x being spoken of [is that] + " 1x being storm-tossed + " 1x being strengthened + " 1x being strengthened in + " 2x being strong + " 1x being struck + " 1x being struck down + " 2x being subject + " 1x being superior + " 1x being supplied + " 1x being supreme + " 1x being taken + " 1x being taught + " 4x being tempted + " 3x being tetrarch + " 2x being thrown + " 1x being tossed by the wind + " 1x being tossed by waves + " 3x being translated + " 1x being uncertain + " 1x being understood + " 1x being unknown + " 1x being unoccupied + " 1x being unrighteous + " 1x being visible + " 6x being weak + " 1x being wearied + " 1x being well + " 1x being well attested + " 1x being well testified to + " 1x being well-known + " 1x being with + " 1x being within + " 1x being wronged + " 22x believe + " 2x believe [it] + " 1x believe [that] + " 2x believe you + " 22x believed + " 2x believers + " 3x believes + " 57x believing + " 2x believing [ones] + " 1x believing [woman] + " 8x belly + " 1x belonged to + " 1x belonging to + " 1x belonging to the + " 1x belongs + " 52x beloved + " 3x below + " 3x belt + " 1x belts + " 1x bending + " 1x benefactors + " 2x benefit + " 1x benefitting + " 2x bent over + " 1x beryl + " 1x beseeching + " 7x beside + " 7x besides + " 1x best + " 1x best spoils + " 2x betrayed + " 1x betrayers + " 4x betraying + " 1x betrothed + " 15x better + " 1x better [things] + " 1x better things + " 12x between + " 1x between God + " 1x between the + " 1x between them + " 1x between two seas + " 1x between you + " 2x beware + " 3x beware of + " 23x beyond + " 1x beyond [our] + " 2x beyond measure + " 1x beyond reproach + " 1x beyond this + " 1x beyond youth + " 1x bier + " 2x bill + " 1x bind + " 1x binding + " 1x bird + " 15x birds + " 4x birth + " 1x birthday + " 1x birthright + " 1x bits + " 2x bitter + " 2x bitterly + " 1x bitterness + " 3x black + " 14x blameless + " 1x blamelessly + " 1x blaspheme + " 1x blasphemed + " 1x blasphemes + " 3x blasphemies + " 5x blaspheming + " 2x blasphemous + " 6x blasphemy + " 1x blemishes + " 1x bless + " 18x blessed + " 2x blessed [are] + " 1x blessed [is] + " 1x blessed is + " 2x blessedness + " 15x blessing + " 1x blessing of grace + " 2x blessings + " 2x blew + " 27x blind + " 3x blind [man] + " 3x blind [men] + " 78x blood + " 1x blood [as sacrifices] + " 1x blood-shedding + " 1x blots + " 1x blotting out + " 1x blowing + " 1x blowing [wind] + " 2x blows + " 1x blows with the palm + " 1x boards + " 4x boast + " 1x boast [of it] + " 1x boast over + " 1x boast you + " 3x boastful + " 18x boasting + " 36x boat + " 7x boats + " 12x bodies + " 1x bodies [there are] + " 2x bodily + " 118x body + " 3x body [is] + " 1x body [were] + " 13x boldness + " 2x bond + " 1x bond-servants + " 1x bondage + " 2x bones + " 19x book + " 5x books + " 3x bore + " 2x bore witness + " 2x born + " 1x borne witness to + " 5x bosom + " 122x both + " 1x both [the] + " 1x both theirs + " 2x bottom + " 3x bought + " 10x bound + " 1x bound about + " 1x boundaries + " 1x bounty + " 1x bow + " 1x bowing + " 8x bowl + " 5x bowls + " 5x boy + " 1x boys + " 1x braided hair + " 5x branch + " 12x branches + " 58x bread + " 3x breadth + " 2x break + " 1x break forth + " 1x break in + " 5x breaking + " 2x breast + " 1x breastplate + " 3x breastplates + " 3x breasts + " 3x breath + " 1x breathed His last + " 1x breathed her last + " 1x breathing out + " 4x bride + " 3x bridechamber + " 14x bridegroom + " 1x bridles + " 1x bridling + " 1x brief + " 1x briefly + " 5x bright + " 1x bright red + " 2x brightness + " 7x brimstone + " 5x bring + " 1x bring [him] + " 2x bring [it] + " 1x bring [it] into servitude + " 1x bring [them] + " 2x bring forth fruit + " 1x bring in + " 1x bring out + " 1x bring up + " 1x bring word back + " 1x bring you + " 4x bringing + " 1x bringing [one] + " 1x bringing [you] + " 1x bringing forth fruit + " 1x bringing forth of fruit + " 1x bringing salvation + " 1x bringing swiftly + " 1x bringing upon + " 1x bringing word + " 2x brings + " 3x brings forth + " 2x brings forth fruit + " 2x brings up + " 1x broad + " 1x broiled + " 2x broke + " 1x broke [it] + " 1x broke [them] + " 1x brood + " 112x brother + " 2x brotherhood + " 2x brotherly affection + " 2x brotherly love + " 210x brothers + " 6x brought + " 6x brought [him] + " 1x brought [it] + " 1x brought down + " 1x brought forth abundantly + " 1x brought in + " 1x brought in secretly + " 1x brought out + " 1x brought to [him] + " 3x brought up + " 1x brought up with + " 1x brought word + " 1x brow + " 1x bruised + " 1x bruising + " 1x build [their tombs] + " 1x build up + " 1x builder [is] + " 1x builders + " 7x building + " 2x building [it] + " 1x building [you] up + " 2x building up + " 3x buildings + " 1x builds + " 1x builds up + " 6x built + " 1x bundles + " 4x burden + " 1x burdened + " 3x burdens + " 1x burdensome + " 3x burial + " 1x buried + " 1x buried [him] + " 1x burned [them] + " 11x burning + " 1x burning heat + " 2x burning with heat + " 1x burnished bronze + " 2x burnt offerings + " 1x burst + " 1x burst upon + " 3x bush + " 4x business + " 1x busybodies + " 553x but + " 1x but [He] + " 1x but [for] + " 1x but [only] + " 2x but [to those] + " 1x but [with] + " 1x but for you + " 1x but in [the] midst + " 1x but instead + " 1x but only + " 1x but only [those] + " 1x but other + " 1x but others + " 3x but rather + " 1x but since + " 1x buy + " 1x buy [one] + " 3x buying + " 2x buys + " 502x by + " 1x by God + " 2x by Him + " 1x by Me + " 1x by Paul + " 1x by [his] + " 1x by [his] confidence + " 1x by [our] own + " 7x by [the] + " 5x by [the] Spirit + " 1x by [the] deceitfulness + " 1x by [the] edge + " 1x by [the] grace + " 1x by [the] precious + " 1x by [the] will + " 2x by [the] word + " 1x by [those] + " 1x by a charge + " 1x by a wind + " 1x by a word + " 1x by all + " 1x by all means + " 1x by an oath + " 1x by angels + " 1x by another + " 2x by any means + " 1x by birth + " 1x by day + " 1x by death + " 1x by every + " 1x by evils + " 1x by face + " 3x by faith + " 1x by flogging + " 1x by fortune-telling + " 2x by four + " 1x by gold + " 4x by grace + " 1x by guile + " 1x by habit + " 4x by him + " 2x by itself + " 1x by law + " 1x by manifestation + " 2x by means of + " 3x by men + " 1x by miracles + " 1x by more abundant + " 1x by name + " 3x by nature + " 8x by night + " 1x by no means + " 1x by occasion of + " 1x by others + " 1x by passions + " 1x by perishable things + " 1x by reason + " 4x by reason of + " 1x by revilings + " 1x by signs + " 1x by silver + " 1x by sleep + " 1x by spiritual [means] + " 2x by that + " 31x by the + " 1x by the leading of + " 1x by the things + " 3x by them + " 2x by this + " 1x by those + " 1x by thus + " 1x by trickery + " 1x by various + " 2x by way of + " 2x by what + " 1x by which + " 1x by whom + " 1x by word + " 1x by words + " 2x by you + " 3x calf + " 6x call + " 1x call aloud + " 1x call common + " 1x call for + " 2x call you + " 52x called + " 1x called [her] near + " 1x called out + " 1x called together + " 19x calling + " 5x calling on + " 1x calling out + " 6x calls + " 1x calls near + " 1x calm + " 1x calves + " 107x came + " 1x came [back] + " 1x came about + " 10x came down + " 5x came forth + " 2x came in + " 1x came in by stealth + " 3x came into being + " 1x came near + " 4x came out + " 1x came to + " 1x came to [Him] + " 1x came to life + " 3x came to pass + " 1x came together + " 1x came up + " 1x camel + " 3x camp + " 2x can + " 1x can it [be] + " 1x can they pass + " 1x can we + " 2x captain + " 4x captains + " 3x captivity + " 1x capture + " 1x carcass + " 3x care + " 1x care [of servants] + " 1x careful observation + " 5x carefully + " 1x carefully consider + " 1x careless + " 3x cares + " 4x cares for + " 4x cargo + " 1x caring + " 1x carousal + " 2x carousing + " 2x carpenter + " 1x carried away + " 1x carried away by a flood + " 1x carries + " 2x carry + " 4x carrying + " 1x carrying around + " 4x carrying away + " 1x case + " 9x cast + " 3x cast [in] + " 6x cast [it] + " 1x cast [them] + " 1x cast around + " 1x cast away + " 1x cast forth + " 12x cast out + " 6x casting + " 1x casting a net + " 1x casting off + " 5x casting out + " 2x casts + " 2x casts out + " 1x catch + " 2x catching + " 1x cattle + " 13x cause + " 1x cause for stumbling + " 3x causes + " 2x causes of sin + " 2x causes to sin + " 2x causes to stumble + " 1x causing + " 1x causing divisions + " 1x cavalry [was] + " 2x caves + " 1x cease + " 2x ceased + " 1x cell + " 1x censer + " 1x center + " 12x centurion + " 3x centurions + " 60x certain + " 1x certain man + " 1x certain men + " 2x certain ones + " 3x certainly + " 1x certainty + " 1x chaff + " 2x chain + " 15x chains + " 1x chalcedony + " 1x chance + " 2x changed + " 1x changing + " 2x character + " 4x charge + " 2x charges + " 1x charging + " 3x chariot + " 1x charity + " 2x cheek + " 1x cheerfully + " 1x cheerfulness + " 1x cherishes + " 1x chests + " 1x chicks + " 3x chief + " 1x chief captains + " 1x chief place + " 59x chief priests + " 1x chiefs + " 26x child + " 1x childbearing + " 2x childhood + " 2x childless + " 81x children + " 1x choenixes + " 2x choke + " 3x choked + " 7x chose + " 5x chosen + " 1x chrysolite + " 1x chrysoprase + " 64x church + " 33x churches + " 1x cinnamon + " 1x circumcised + " 21x circumcision + " 1x circumcision [is] + " 15x cities + " 1x citizens + " 2x citizenship + " 1x citron + " 112x city + " 2x city authorities + " 1x city gate + " 1x claim + " 1x claimed + " 4x claiming + " 1x clamor + " 1x clanging + " 5x clay + " 9x clean + " 1x cleanse + " 1x cleanses + " 2x cleansing + " 5x clear + " 1x clear-minded + " 2x clearly + " 1x clearly known + " 1x cleaving to + " 1x cleverly devised + " 1x climbing up + " 7x cloak + " 4x cloaks + " 1x close + " 1x close to + " 1x clothe + " 2x clothed + " 1x clothed [You] + " 4x clothed in + " 2x clothed with + " 2x clothes + " 18x clothing + " 11x cloud + " 5x clouds + " 5x clubs + " 1x clusters + " 1x coals + " 1x coasting along + " 4x cohort + " 1x coin + " 1x coins + " 6x cold + " 1x collect + " 1x collecting + " 1x collection + " 1x collections + " 6x colt + " 27x come + " 2x come down + " 4x come forth + " 1x come in + " 1x come out + " 2x come to pass + " 3x come together + " 2x come up + " 51x comes + " 1x comes down + " 1x comes forth + " 1x comes together + " 1x comes up + " 12x comfort + " 1x comforted + " 3x comforting + " 87x coming + " 4x coming [One] + " 2x coming [one] + " 1x coming [up] + " 7x coming down + " 1x coming forth + " 1x coming in + " 2x coming near + " 1x coming on + " 2x coming out + " 2x coming to pass + " 3x coming together + " 2x coming up + " 6x command + " 12x commanded + " 1x commanded [him] + " 1x commanded it + " 16x commander + " 1x commanders + " 1x commanding + " 29x commandment + " 1x commandment [is] + " 21x commandments + " 1x commendable + " 1x commendatory + " 3x commending + " 1x commends + " 1x commission + " 1x commits + " 5x commits adultery + " 1x committed + " 1x committed sexual immorality + " 1x committing + " 2x committing adultery + " 4x common + " 1x common profiting + " 1x commonwealth + " 2x commotion + " 1x commotions + " 1x communicating + " 1x companions + " 1x companionships + " 1x company + " 1x comparable + " 1x comparing + " 1x compassion + " 2x compassions + " 1x compel + " 1x compel [them] + " 1x compelled + " 1x compels + " 1x competes + " 1x complaint + " 6x complete + " 3x complete armor + " 1x complete soundness + " 1x completely + " 1x completely filled up + " 1x completely filling up + " 1x completing + " 1x completion + " 1x compressed + " 4x concealed + " 1x concealed up + " 1x conceit + " 1x conceived + " 1x conception + " 1x concern + " 187x concerning + " 1x concession + " 2x concluding + " 1x condemn + " 7x condemnation + " 3x condemned + " 1x condemning + " 8x conduct + " 2x conduct yourselves + " 1x confess + " 1x confessed + " 1x confessedly + " 2x confesses + " 6x confessing + " 5x confession + " 12x confidence + " 2x confirmation + " 1x confirming + " 3x conflict + " 1x conflicts + " 1x conformed + " 1x conformed to + " 1x confused + " 1x congregation + " 1x conquered + " 1x conquering + " 23x conscience + " 1x consciences + " 1x consecrated gifts + " 2x consent + " 2x consenting + " 2x consents + " 1x consider + " 1x consider you + " 1x considerable + " 1x considered + " 3x considering + " 1x considers + " 1x consists + " 1x consolation + " 1x consoling + " 1x constant use + " 1x constantly + " 1x consternation + " 1x consuming + " 2x consummation + " 1x contemporaries + " 1x content + " 2x contentions + " 1x contentious + " 1x contentment + " 5x continually + " 1x continue + " 1x continue speaking + " 1x continue steadfastly + " 2x continued + " 1x continued to advance + " 3x continued to grow + " 2x continued to increase + " 1x continues + " 1x continues to sin + " 1x continuing + " 1x continuous + " 1x contradicting + " 1x contradicting [it] + " 4x contrary + " 1x contrary [was] + " 6x contrary to + " 1x contributing + " 1x control + " 1x controls himself + " 3x controversies + " 1x conveniently + " 1x conversion + " 1x convert + " 2x converts + " 1x convict + " 1x conviction + " 1x convicts + " 1x cool + " 1x copies + " 1x copper + " 1x coppersmith + " 1x cords + " 2x corner + " 5x corners + " 1x cornerstone + " 1x correction + " 1x correctors + " 1x corrupted + " 1x cors + " 1x cosmic powers + " 1x cost + " 1x costly + " 1x cots + " 1x could + " 1x could I be able + " 3x council + " 8x counsel + " 1x counselor + " 1x counted I worthy + " 1x countless + " 1x countries + " 8x country + " 2x countrymen + " 1x countryside + " 1x counts + " 1x courage + " 3x course + " 6x court + " 3x courts + " 4x courtyard + " 1x cousin + " 20x covenant + " 3x covenants + " 1x covered + " 1x coverings + " 1x covers + " 1x covers her head + " 1x covers over + " 1x covet + " 1x coveters + " 1x covetous + " 1x covetous desires + " 1x covetous man + " 8x covetousness + " 2x craft + " 5x craftiness + " 3x craftsmen + " 1x crafty + " 1x crave + " 4x created + " 2x created thing + " 11x creation + " 4x creature + " 2x creatures + " 3x credit + " 1x credit [is it] + " 1x credits + " 3x creeping things + " 8x cried out + " 1x cries + " 2x cries out + " 1x crime + " 1x crimes + " 3x criminals + " 6x crippled + " 2x crooked + " 25x cross + " 76x crowd + " 52x crowds + " 4x crowed + " 2x crowing + " 9x crown + " 3x crowns + " 3x crows + " 3x crucified + " 1x crucify + " 2x crucify [Him] + " 1x crucifying + " 1x crude joking + " 2x crumbs + " 5x crying + " 13x crying out + " 1x crying out [that] + " 2x crystal + " 2x cubits + " 1x cummin + " 1x cunning + " 20x cup + " 1x cup [is] + " 1x cured + " 1x cures + " 3x curse + " 2x cursing + " 1x cushion + " 1x custody + " 8x custom + " 5x customs + " 1x cut + " 1x cut away + " 1x cut in a rock + " 1x cut into + " 8x cut off + " 1x cutting + " 3x daily + " 1x danced + " 1x dancing + " 1x danger + " 1x dangerous + " 1x dare we + " 4x dared + " 3x dark + " 1x darkened + " 39x darkness + " 18x daughter + " 2x daughter-in-law + " 4x daughters + " 2x dawn + " 186x day + " 1x day [alike] + " 1x day [is] + " 2x daybreak + " 151x days + " 2x daytime + " 1x dazzling + " 1x deacons + " 58x dead + " 1x dead [man] + " 1x dead [men] + " 2x deadly + " 4x deaf + " 1x dear + " 75x death + " 1x deaths + " 1x debater + " 1x debauchery + " 3x debt + " 6x debtors + " 1x debts + " 11x decay + " 10x deceit + " 2x deceitful + " 2x deceived + " 2x deceiver + " 2x deceivers + " 5x deceiving + " 1x deception + " 1x deceptions + " 1x decided on + " 1x decision + " 1x declaration + " 1x declare + " 1x declared + " 1x declared as righteous + " 1x declares + " 9x declaring + " 1x decorum + " 3x decrees + " 7x deed + " 16x deeds + " 4x deep + " 1x deep [sea] + " 1x deepened + " 2x deeply + " 2x deeply distressed + " 1x defending [them] + " 5x defense + " 1x deficiency + " 1x deficit + " 2x defile + " 1x defiled + " 1x defilement + " 4x defiles + " 4x defiling + " 1x definite + " 1x defraud + " 1x delay + " 1x delay you + " 1x delaying + " 2x delicate [clothing] + " 1x delighting + " 1x delights + " 2x deliver + " 3x deliverance + " 7x delivered + " 1x delivered Him to + " 1x delivered [Him] + " 2x delivered [them] + " 2x delivered up + " 2x delivering + " 1x delivering [you] + " 1x delivering [you] up + " 2x delivering up + " 1x demand + " 1x demanded to have + " 9x demon + " 1x demonic + " 35x demons + " 1x demonstration + " 6x denarii + " 1x denarii worth + " 3x denied + " 7x denying + " 2x depart + " 1x depart you + " 14x departed + " 2x departing + " 3x departure + " 1x deposed + " 1x deposit committed [to you] + " 1x deposit entrusted + " 1x deposit entrusted [to you] + " 1x deprive + " 5x depth + " 2x depths + " 1x descend + " 4x descendants + " 2x descended + " 11x descending + " 1x descends + " 2x descent + " 1x deserted + " 1x deserted places + " 2x deserts + " 1x deserving + " 1x desirable + " 15x desire + " 2x desire you + " 6x desired + " 1x desirers + " 24x desires + " 20x desiring + " 2x desolate + " 1x desolate woman + " 2x desolation + " 1x despairing + " 1x despise you + " 2x despising + " 2x destitute + " 1x destitution + " 5x destroy + " 2x destroyed + " 3x destroying + " 1x destroys + " 16x destruction + " 1x destructive + " 1x detail + " 1x detailing + " 1x determinate + " 1x determine + " 1x determined + " 1x detestable + " 29x devil + " 2x devoted + " 2x devour + " 4x devoured + " 1x devouring + " 1x devours + " 1x devours [you] + " 6x devout + " 25x did + " 1x did He + " 1x did He allow + " 1x did He answer + " 2x did He commit + " 2x did He say + " 1x did He subject + " 1x did He swear that + " 1x did He want + " 1x did I commit + " 1x did I exploit + " 1x did I find + " 1x did I go up + " 1x did I use + " 1x did I write + " 1x did abide + " 2x did abound + " 1x did allow + " 1x did attain + " 1x did bear + " 1x did believe + " 1x did bring + " 2x did burden + " 1x did cast + " 1x did choose + " 2x did command + " 1x did commit + " 1x did confess + " 1x did continue + " 1x did dare + " 1x did devise + " 1x did eat with + " 1x did enter + " 1x did enter in + " 1x did entrust + " 1x did exploit + " 1x did find + " 1x did find [any] + " 1x did give + " 1x did glorify + " 1x did he eat + " 1x did he go + " 1x did hear + " 1x did it behoove + " 1x did it remain + " 1x did judge + " 3x did know + " 1x did leave + " 1x did minister + " 1x did perish with + " 1x did persecute + " 1x did profit + " 1x did rage + " 1x did receive + " 2x did reject + " 1x did repent + " 1x did reveal + " 1x did say [it] + " 1x did see + " 1x did take + " 1x did take [it] + " 1x did they believe + " 1x did they dare + " 1x did they find + " 2x did they hear + " 1x did they repent + " 1x did they stumble + " 1x did we eat + " 1x did we hear + " 1x did we prophesy + " 1x did we see + " 1x did we walk + " 1x did we yield + " 1x did write + " 1x did you + " 1x did you agree with + " 3x did you believe + " 1x did you bring + " 1x did you come out + " 1x did you doubt + " 1x did you enter + " 2x did you give + " 2x did you go out + " 1x did you lack + " 1x did you marvel + " 1x did you offer + " 1x did you purpose + " 3x did you read + " 2x did you receive + " 1x did you sow + " 1x did you stretch out + " 1x did you suffer + " 1x did you summon + " 1x did you visit + " 2x didrachmas + " 2x die + " 31x died + " 5x dies + " 1x difference + " 3x different + " 1x differently + " 1x differs + " 2x difficult + " 1x difficult in interpretation + " 1x difficult to be understood + " 1x difficulties + " 2x difficultly + " 1x dignified + " 3x dignity + " 2x diligence + " 1x dill + " 2x dinner + " 3x directed + " 2x disaster + " 2x disbelieved + " 2x discerning + " 1x discernment + " 21x disciple + " 223x disciples + " 3x discipline + " 2x disciplines + " 1x disciplining + " 1x discontented + " 1x discovered + " 1x discreetly + " 2x discussion + " 4x disease + " 8x diseases + " 1x disgraceful + " 1x disguising themselves + " 3x dish + " 6x dishonor + " 1x dishonor you + " 2x dishonors + " 1x dismissed + " 6x disobedience + " 5x disobedient + " 3x disobeying + " 2x disorder + " 1x disowned + " 1x dispute + " 1x disputes + " 1x disputes about words + " 2x disputing + " 1x disputings + " 2x disqualified + " 1x disregarded + " 1x disregards + " 1x disrepute + " 2x dissension + " 1x dissensions + " 1x dissipation + " 2x distant + " 2x distinction + " 2x distinguishing + " 1x distort + " 6x distress + " 2x distresses + " 1x distressing + " 1x distribute + " 1x distribution + " 1x distribution was made + " 1x distributions + " 6x district + " 1x districts + " 1x disturbance + " 1x divide [it] + " 1x divided + " 1x dividing + " 1x divine + " 4x divine adoption as sons + " 1x divine answer + " 1x divine utterance + " 1x divinely + " 1x divinely instructing [them] + " 1x divinely revealed + " 1x divinity + " 5x division + " 3x divisions + " 1x divorcing + " 34x do + " 1x do I ask + " 1x do I examine + " 1x do I mean + " 1x do I pray + " 1x do I purpose + " 1x do I say + " 1x do I seek + " 1x do I seek approval + " 2x do I speak + " 1x do I write + " 1x do You desire [that] + " 1x do You judge + " 1x do ask + " 1x do believe + " 1x do break in + " 1x do bring + " 1x do burn inwardly + " 1x do call unholy + " 1x do cease + " 1x do come up + " 1x do commit murder + " 1x do condemn + " 1x do consider + " 2x do despise + " 1x do doubt + " 1x do eat + " 1x do fast + " 1x do fear + " 1x do find [any] + " 3x do forbid + " 1x do good + " 1x do hinder + " 1x do imitate + " 1x do interpret + " 3x do judge + " 1x do lie + " 1x do mature + " 1x do practice + " 1x do profit + " 5x do pronounce + " 1x do provoke + " 1x do quench + " 1x do rebuke + " 1x do receive + " 1x do recline + " 1x do say + " 1x do sound a trumpet + " 1x do speak + " 1x do they + " 1x do they believe + " 2x do they cast out + " 1x do they come + " 1x do they declare + " 3x do they gather + " 1x do they hear + " 1x do they labor + " 1x do they light + " 2x do they marry + " 1x do they reap + " 1x do they receive + " 1x do they see + " 2x do they spin + " 1x do they throw out + " 1x do they understand + " 3x do think + " 1x do touch + " 1x do use vain repetitions + " 1x do wash + " 1x do we come short + " 2x do we know + " 1x do we nullify + " 1x do we proclaim + " 1x do we provoke to jealousy + " 1x do we see + " 1x do we wage war + " 1x do we want + " 1x do weep + " 1x do wish + " 1x do withhold + " 1x do witness against + " 1x do wonder + " 1x do wrong + " 4x do you + " 2x do you allow + " 1x do you believe + " 1x do you call + " 2x do you cause + " 1x do you commit adultery + " 1x do you compel + " 1x do you dearly love + " 5x do you desire + " 1x do you despise + " 1x do you eat + " 1x do you err + " 2x do you have + " 2x do you hear + " 1x do you inquire + " 1x do you insult + " 2x do you know + " 1x do you listen to + " 1x do you look at + " 1x do you perceive + " 1x do you persecute + " 1x do you persuade + " 1x do you pronounce + " 1x do you question + " 1x do you realize + " 1x do you recognize + " 2x do you remember + " 1x do you rob temples + " 2x do you see + " 2x do you seek + " 1x do you set aside + " 1x do you sit + " 1x do you stand + " 1x do you steal + " 1x do you stone + " 1x do you submit to decrees + " 1x do you suppose + " 1x do you teach + " 2x do you test + " 1x do you turn + " 3x do you understand + " 1x do you untie [it] + " 1x do you weep + " 1x do you wish + " 2x doctrine + " 1x doctrines + " 2x doers + " 9x does + " 1x does He eat + " 1x does He find fault + " 1x does accept + " 1x does annul + " 1x does bring + " 1x does call + " 1x does come to life + " 1x does continue + " 1x does delay + " 1x does do + " 1x does draw near + " 1x does drink + " 1x does eat + " 1x does follow + " 1x does give up + " 1x does he hope for + " 2x does he know + " 1x does he pay + " 1x does he resist + " 1x does he see + " 1x does he untie + " 1x does hear + " 1x does inherit + " 1x does it appear + " 1x does it profit + " 1x does it seem + " 1x does judge + " 1x does keep + " 1x does know + " 1x does make [us] ashamed + " 1x does observe + " 1x does offend + " 1x does provide for + " 1x does she become + " 1x does speak + " 1x does stop + " 1x does stumble + " 1x does teach + " 1x does touch + " 8x dogs + " 26x doing + " 2x doing evil + " 7x doing good + " 1x doing good to + " 1x doing wrong + " 1x domain + " 6x dominion + " 1x dominions + " 4x done + " 2x donkey + " 21x door + " 4x doorkeeper + " 9x doors + " 1x double + " 1x double-minded + " 1x double-tongued + " 1x doubted + " 4x doubting + " 1x doubts + " 5x doves + " 9x down + " 1x down to + " 1x downcast + " 2x drachma + " 1x drachmas + " 2x dragging + " 1x dragging off + " 11x dragon + " 1x drags + " 3x drank + " 8x drawing near + " 1x draws + " 3x draws near + " 1x dreaming [ones] + " 1x dreams + " 3x drew + " 1x drew away + " 1x drew near + " 1x drew to shore + " 13x drink + " 1x drink [only] water + " 1x drink with + " 12x drinking + " 2x drinks + " 1x drives out + " 1x drooping + " 1x drove out + " 1x drunkards + " 2x drunkenness + " 1x drunkennesses + " 2x dry + " 1x dry [land] + " 1x due + " 1x due time + " 1x due to + " 1x dues + " 3x dug + " 1x dug in + " 18x during + " 2x during the + " 7x dust + " 1x duty + " 1x dwell + " 33x dwelling + " 1x dwelling [there] + " 1x dwelling around + " 1x dwelling with [them] + " 1x dwellings + " 8x dwells + " 2x dwelt + " 6x dying + " 1x dysentery + " 49x each + " 1x each [of them] + " 1x each [woman] + " 1x each man + " 3x each one + " 7x each other + " 1x eagerly + " 1x eagerly await + " 1x eagerly awaiting + " 2x eagle + " 12x ear + " 6x early + " 1x early [the] + " 2x earnest + " 1x earnest desire + " 2x earnest expectation + " 4x earnestly + " 2x earnestly desire + " 1x earnestly seeking out + " 2x earnestly testifying + " 9x earnestness + " 23x ears + " 169x earth + " 2x earthen + " 7x earthly + " 3x earthquake + " 2x earthquakes + " 2x ease + " 3x easier + " 1x easier for + " 1x easily entangling + " 6x east + " 16x eat + " 1x eaten by worms + " 26x eating + " 4x eats + " 1x eats with + " 1x edict + " 7x edification + " 2x edifies + " 1x edify + " 1x effective + " 1x effeminate + " 10x eight + " 3x eighth + " 1x eighty + " 1x eighty [and] + " 3x either + " 3x elder + " 1x elder [women] + " 1x elder ones + " 3x elderhood + " 56x elders + " 10x elect + " 1x elected with [you] + " 4x election + " 1x elements + " 5x eleven + " 3x eleventh + " 1x eloquent + " 2x else + " 1x embodiment + " 1x emerald + " 1x emerges + " 1x emphatically + " 1x emptied + " 2x empty + " 2x empty babblings + " 1x empty talkers + " 3x empty-handed + " 1x enabling + " 1x encamped + " 1x encampments + " 1x encircled + " 1x encompassing + " 1x encompassingly sorrowful + " 1x encountered + " 4x encourage + " 7x encouragement + " 1x encouraging [one another] + " 17x end + " 2x end [is] + " 1x endless + " 5x ends + " 16x endurance + " 1x endure + " 1x endure afflictions + " 1x endured + " 3x endures + " 3x enduring + " 16x enemies + " 7x enemy + " 1x energy + " 1x enfeebled + " 2x enjoyment + " 1x enlarge + " 1x enlightened + " 1x enlightens + " 1x enmities + " 1x enmity + " 1x enriching + " 1x enriching you + " 1x enslavers + " 1x enslaves + " 1x entangle yourselves + " 1x entangles himself + " 5x enter + " 18x entered + " 12x entering + " 5x entering in + " 1x enters + " 2x enters in + " 1x entertained [us] + " 1x enticing + " 4x entirely + " 1x entrance + " 1x entreaties + " 1x entreaty + " 1x entrust + " 1x envies + " 1x envious + " 6x envy + " 1x envying + " 1x envyings + " 4x equal + " 2x equality + " 1x equally precious + " 2x equip + " 5x error + " 1x escape + " 2x escaped + " 1x escaping + " 1x escorting + " 11x especially + " 1x especially [his] + " 1x established + " 1x establishing + " 1x estate + " 2x esteem + " 1x esteem [him] + " 1x esteem [it] + " 1x esteem [them] + " 4x esteemed + " 2x esteeming + " 64x eternal + " 1x eternally + " 1x eternity + " 4x eunuch + " 3x eunuchs + " 1x evangelist + " 1x evangelists + " 107x even + " 1x even I + " 15x even as + " 4x even if + " 1x even more + " 4x even to + " 1x even until + " 10x evening + " 25x ever + " 2x ever yet + " 1x everlasting + " 126x every + " 6x every [way] + " 3x every one + " 35x everyone + " 32x everything + " 8x everywhere + " 3x evident + " 97x evil + " 1x evil [of] + " 6x evil [one] + " 1x evil [ones] + " 1x evil [person] + " 1x evil desires + " 2x evil one + " 1x evil speakings + " 1x evil things + " 1x evildoers + " 2x evils + " 1x exactness + " 1x exaltation + " 3x exalted + " 2x exalting + " 1x exalting himself + " 1x exalts himself + " 1x examination + " 1x examine + " 3x examining + " 1x example + " 1x examples + " 1x exceeding measure + " 1x exceeding things + " 17x exceedingly + " 1x exceedingly trouble + " 2x excellence + " 1x excellencies + " 1x excellency + " 1x excellent + " 1x excellent measures + " 1x excelling + " 11x except + " 1x excess + " 1x excessively + " 1x excessiveness + " 1x excuse + " 2x excused + " 1x excused themselves + " 1x exercise + " 2x exercise authority over + " 2x exercise lordship over + " 1x exercising authority over + " 1x exercising lordship over + " 6x exhort + " 1x exhort [him] + " 3x exhortation + " 2x exhorted + " 4x exhorting + " 1x exhorting [them] + " 1x exhorting [you] + " 1x exiled + " 1x exist + " 2x existed + " 4x existing + " 1x exists + " 1x exodus + " 1x exorcists + " 3x expectation + " 5x expecting + " 1x expecting in return + " 1x expelled + " 1x expelled from the synagogue + " 1x expense + " 1x expose [them] + " 1x expounded + " 1x expressly + " 2x external + " 1x extort + " 1x extraordinary + " 3x extremely + " 1x exult + " 2x exultation + " 1x exulting + " 27x eye + " 1x eye-salve + " 1x eye-service + " 1x eye-services + " 61x eyes + " 2x eyewitnesses + " 2x fables + " 33x face + " 5x faces + " 2x factions + " 1x facts + " 1x fading away + " 1x fails + " 1x failure + " 1x faint + " 1x fainthearted + " 2x fainting + " 182x faith + " 1x faith [is] + " 37x faithful + " 1x faithful [one] + " 1x faithfully + " 3x faithfulness + " 2x fall + " 1x fall away + " 1x fall short + " 1x fallen + " 1x fallen from the sky + " 4x falling + " 1x falling [to me] + " 1x falling away + " 2x falling down + " 4x falls + " 1x falls away + " 2x false + " 2x false Christs + " 1x false apostles + " 2x false brothers + " 1x false circumcision + " 3x false prophet + " 7x false prophets + " 1x false teachers + " 1x false testimonies + " 1x false testimony + " 2x false witnesses + " 4x falsehood + " 1x falsely called + " 1x falsifying + " 1x families + " 3x family + " 3x famine + " 3x famines + " 6x far + " 3x far away + " 4x far off + " 2x farmer + " 11x farmers + " 1x farther + " 1x fashioning yourselves + " 4x fast + " 2x fastened + " 1x faster + " 4x fasting + " 2x fastings + " 1x fatal + " 80x father + " 1x father-in-law + " 47x fathers + " 2x fathoms + " 1x fatlings + " 1x fatness + " 3x fattened + " 2x faultless + " 6x favor + " 53x fear + " 1x feared + " 3x fearful + " 1x fearful sights + " 12x fearing + " 2x fearlessly + " 1x fears + " 18x feast + " 1x feasting together [with you] + " 1x feasting with + " 1x feasts + " 1x fed [You] + " 1x feed + " 4x feeding + " 2x feeding [them] + " 1x feeding on + " 2x feeds + " 87x feet + " 1x feigning + " 37x fell + " 1x fell among + " 2x fell asleep + " 1x fell at + " 3x fell down + " 1x fell down before + " 1x fell on his knees + " 1x fell upon + " 2x fellow bond-servant + " 1x fellow citizens + " 1x fellow disciples + " 3x fellow partakers + " 2x fellow prisoner + " 1x fellow prisoners + " 2x fellow servant + " 4x fellow servants + " 2x fellow soldier + " 1x fellow traveler + " 1x fellow travelers + " 5x fellow worker + " 6x fellow workers + " 1x fellow-partaker + " 11x fellowship + " 5x female + " 1x females + " 1x fence + " 2x fervent + " 1x fervently + " 4x fever + " 2x fevering + " 1x fevers + " 3x few + " 1x few [words] + " 1x few words + " 1x fidelity + " 19x field + " 5x fields + " 1x fiery + " 3x fifteen + " 1x fifteenth + " 4x fifth + " 1x fifties + " 5x fifty + " 12x fig tree + " 2x fight + " 1x fighting against God + " 3x figs + " 1x figuratively + " 1x fill up + " 4x filled + " 1x filled with fear + " 1x filled with glory + " 3x filling + " 2x filthiness + " 4x find + " 1x find I + " 3x finding + " 1x finding [any] + " 1x finding fault + " 5x finds + " 1x finds [it] + " 1x finds [them] + " 2x fine + " 1x fine bronze + " 4x fine linen + " 1x finest flour + " 4x finger + " 2x fingers + " 38x fire + " 5x firm + " 1x firmly + " 1x firmness + " 127x first + " 5x first [day] + " 1x first [room] + " 1x first [was] + " 1x first place + " 3x first places + " 1x first seat + " 3x first seats + " 5x firstborn + " 4x firstfruit + " 1x firstfruits + " 18x fish + " 2x fishermen + " 2x fishers + " 4x fit + " 2x fitting + " 35x five + " 2x five hundred + " 6x five thousand + " 1x five times + " 1x fixed upon + " 1x flame + " 1x flaming + " 1x flashed around + " 4x flashes of lightning + " 1x flashing + " 1x flattering + " 1x flattery + " 7x fled + " 5x flee + " 1x flees + " 103x flesh + " 2x flesh [is] + " 1x flesh [were] + " 8x fleshly + " 1x flight + " 9x flock + " 1x flogged [Him] + " 3x flood + " 1x flow + " 1x flowed + " 2x flower + " 1x flowing + " 1x flute + " 2x flute players + " 1x flux + " 4x flying + " 2x foaming + " 1x foaming out + " 2x fold + " 11x follow + " 22x followed + " 16x following + " 3x following [day] + " 1x follows + " 1x folly + " 26x food + " 3x foods + " 14x foolish + " 1x foolish talking + " 1x foolish things + " 9x foolishness + " 1x fools + " 6x foot + " 1x footstool + " 1501x for + " 3x for Elijah + " 2x for God + " 3x for Him + " 1x for Me + " 3x for Moses + " 1x for Sodom + " 2x for Tyre + " 4x for You + " 1x for [His] + " 1x for [is] + " 1x for [myself] + " 3x for [the] + " 1x for [the] Lord + " 2x for [the] land + " 1x for [the] lawless + " 1x for [the] left + " 1x for [the] sake of + " 1x for [the] ungodly + " 1x for [the] unholy + " 2x for [us] + " 3x for a denarius + " 1x for a husband + " 1x for a little + " 1x for a little while + " 3x for a man + " 1x for a period + " 1x for a righteous [one] + " 1x for a second + " 1x for a short while + " 1x for a sum + " 1x for a thousand + " 1x for a time + " 2x for a woman + " 1x for about + " 1x for above + " 3x for all + " 1x for an assarion + " 1x for base gain + " 1x for certain + " 1x for edification + " 1x for fire + " 1x for foods + " 1x for greed + " 1x for her + " 1x for herself + " 12x for him + " 1x for him [it were] + " 2x for himself + " 1x for his own + " 9x for me + " 1x for months + " 1x for much + " 1x for murderers of fathers + " 1x for naught + " 1x for one + " 1x for prayer + " 2x for reason + " 1x for reward + " 2x for sake of + " 1x for sexual immorality + " 1x for slayers of man + " 2x for so much + " 3x for that + " 1x for that which [is] + " 47x for the + " 1x for the [One] + " 1x for the [one] + " 1x for the purpose of + " 1x for the sake + " 21x for the sake of + " 1x for the sexually immoral + " 11x for them + " 4x for themselves + " 2x for this + " 5x for those + " 1x for three hundred + " 19x for us + " 2x for what + " 4x for whom + " 38x for you + " 1x for you [is] + " 1x for your + " 1x for yourself + " 5x for yourselves + " 3x forbearance + " 1x forbearing + " 2x forbid + " 2x forbidding + " 1x force + " 1x forces his way + " 1x foreannounced + " 3x forehead + " 4x foreheads + " 1x foreign + " 1x foreigner + " 1x foreknowledge + " 1x foreman + " 2x foremost + " 1x foreordained + " 1x foresail + " 1x foresight + " 1x foretold + " 1x foretold the gospel + " 2x forewarned + " 2x forgave + " 1x forgetful + " 1x forgetfulness + " 1x forgetting + " 6x forgive + " 14x forgiveness + " 1x forgives + " 2x forgiving + " 1x forgotten + " 6x form + " 6x former + " 1x former things + " 6x formerly + " 1x forming + " 2x fornicator + " 1x forsaking + " 1x forth + " 1x fortunate + " 20x forty + " 1x forty [lashes] + " 1x forty years + " 1x foul language + " 11x found + " 1x found I + " 3x found [it] + " 1x found [me] + " 6x foundation + " 4x foundations + " 1x founder + " 1x fountains + " 38x four + " 1x four days + " 4x four hundred + " 1x four months + " 5x four thousand + " 1x fourfold + " 1x foursquare + " 5x fourteen + " 7x fourth + " 1x fox + " 1x foxes + " 3x fragments + " 2x fragrance + " 6x fragrant oil + " 2x frankincense + " 21x free + " 1x free of charge + " 9x freedom + " 6x freely + " 1x frequent + " 2x fresh + " 3x friend + " 17x friends + " 1x friendship + " 1x frightened + " 4x fringe + " 1x frogs + " 775x from + " 1x from Abraham + " 3x from Christ + " 2x from God + " 2x from Him + " 3x from Jesus + " 1x from Rome + " 1x from You + " 1x from [its] + " 1x from [my own] + " 13x from [the] + " 1x from [the] Lord + " 1x from [the] dead + " 1x from [things] + " 1x from [those] + " 1x from a slave + " 6x from above + " 1x from afar + " 3x from among + " 1x from blood + " 1x from declaring + " 1x from each + " 1x from every quarter + " 1x from foods + " 2x from heaven + " 8x from here + " 1x from it + " 2x from out + " 1x from out of + " 2x from outside + " 1x from righteousness + " 1x from sexual immorality + " 1x from sin + " 1x from star + " 1x from stumbling + " 9x from the + " 2x from the first + " 1x from then on + " 24x from there + " 1x from things sacrificed to idols + " 1x from those + " 2x from us + " 1x from what is strangled + " 1x from whatever + " 25x from where + " 2x from which + " 2x from within + " 2x from you + " 1x front + " 47x fruit + " 1x fruitful + " 15x fruits + " 1x fulfill + " 1x fulfilled + " 1x fulfilling + " 1x fulfilling the priestly service + " 1x fulfillment + " 29x full + " 4x full assurance + " 1x full grown + " 1x full of + " 1x full of compassion + " 1x full of darkness + " 1x full of light + " 1x full strength + " 11x fullness + " 2x fully + " 1x fully assured + " 1x fully carry out + " 1x fully testifies + " 1x fully testifying + " 1x fully trained + " 1x function + " 1x furiously angry + " 2x furnace + " 1x furnished + " 3x further + " 4x fury + " 3x futile + " 1x futility + " 1x future + " 4x gain + " 1x gain possession of + " 1x gained + " 1x gainsaying + " 1x gall + " 1x gangrene + " 3x garden + " 2x garden plants + " 1x gardener + " 6x garment + " 30x garments + " 12x gate + " 11x gates + " 1x gates [were] + " 2x gather + " 1x gather they + " 1x gather together + " 1x gather yourselves + " 2x gathered + " 5x gathered together + " 4x gathering + " 1x gathering together + " 2x gathers + " 1x gathers together + " 26x gave + " 1x gave [You] to drink + " 1x gave back + " 1x gave instructions + " 1x gave permission + " 2x gave to drink + " 8x gave up + " 2x gaze + " 1x gear + " 2x genealogies + " 28x generation + " 12x generations + " 3x generosity + " 1x generous + " 1x generous in distributing + " 1x generously + " 9x gentle + " 7x gentleness + " 1x genuine + " 1x genuinely + " 1x genuineness + " 1x get drunk + " 28x gift + " 18x gifts + " 1x gird on + " 1x girded + " 1x girded about + " 7x girl + " 23x give + " 2x give [it] + " 1x give [it] to drink + " 2x give back + " 1x give drink + " 1x give heed + " 1x give heed to + " 3x give thanks + " 1x give up + " 3x given + " 2x given to wine + " 1x giver + " 8x gives + " 2x gives [it] + " 1x gives birth to + " 3x gives life + " 9x giving + " 1x giving birth + " 1x giving growth + " 2x giving heed + " 1x giving in marriage + " 3x giving life + " 5x giving thanks + " 2x giving up + " 1x glad tidings + " 3x gladly + " 3x gladness + " 3x glass + " 3x gloom + " 1x gloomy + " 1x glories + " 3x glorified + " 5x glorify + " 6x glorifying + " 2x glorious + " 1x glorious [ones] + " 1x glorious ones + " 1x glorious things + " 128x glory + " 1x glorying + " 1x gluttons + " 1x gnashes + " 7x gnashing + " 1x gnat + " 30x go + " 1x go You + " 3x go away + " 1x go before + " 1x go down + " 7x go forth + " 1x go in + " 1x go off + " 1x go to law + " 1x go up + " 1x goats + " 1x goats’ + " 3x god + " 2x goddess + " 13x godliness + " 9x gods + " 7x goes + " 2x goes forth + " 2x goes out + " 1x goes to law + " 2x goes up + " 10x going + " 2x going about + " 1x going along + " 3x going astray + " 4x going before + " 1x going before [them] + " 1x going down + " 7x going forth + " 1x going on + " 2x going on a journey + " 1x going on ahead + " 1x going on before + " 4x going out + " 1x going through + " 1x going to be spoken + " 5x going up + " 15x gold + " 16x golden + " 141x good + " 2x good [is] + " 1x good [man] + " 2x good [thing] + " 1x good news + " 1x good order + " 3x good pleasure + " 1x good report + " 1x good service + " 1x good thing + " 9x good things + " 1x good will + " 1x goodly + " 2x goodness + " 6x goods + " 1x goodwill + " 72x gospel + " 1x gossip + " 2x gossips + " 1x gouge out + " 16x governor + " 3x governors + " 92x grace + " 1x grace bestowed + " 5x grain + " 3x grainfields + " 1x grandchildren + " 1x grandmother + " 2x grant + " 1x granted + " 1x granting + " 3x grapes + " 9x grass + " 1x graves + " 178x great + " 1x great [day] + " 1x great [is] + " 1x great drops + " 1x great fish + " 1x great men + " 4x great ones + " 1x great swelling [words] + " 3x great things + " 25x greater + " 1x greater [is] + " 1x greater number + " 1x greater part + " 8x greater than + " 5x greatest + " 6x greatly + " 1x greatly amazed + " 1x greatness + " 1x greed + " 1x greediness + " 1x greedy of base gain + " 1x greedy of dishonest gain + " 3x green + " 1x green thing + " 2x greet + " 1x greeted + " 6x greeting + " 4x greetings + " 2x grew up + " 8x grief + " 1x griefs + " 2x grieve + " 1x grieved + " 2x grieving + " 2x grievous + " 2x grievously + " 1x grinding + " 1x groan + " 1x groaning + " 1x groans + " 1x groans together + " 19x ground + " 2x ground of boasting + " 3x groups + " 1x grow + " 1x growing + " 2x growing old + " 1x growing up + " 1x grown + " 2x grumble + " 1x grumbled + " 1x grumblers + " 1x guaranteed [it] + " 4x guard + " 2x guardians + " 1x guarding + " 4x guards + " 2x guest room + " 1x guide + " 2x guides + " 4x guilt + " 2x guiltless + " 4x guilty + " 1x gushed out + " 1x habitation + " 22x had + " 1x had [any] + " 1x had agreed together + " 1x had appeared + " 1x had arisen + " 6x had been + " 1x had been accomplished + " 2x had been born + " 1x had been bound + " 2x had been built + " 1x had been delivered up + " 1x had been done + " 1x had been following + " 1x had been formerly + " 1x had been given + " 1x had been healed + " 1x had been inscribed + " 1x had been ministering + " 1x had been named + " 1x had been put outside + " 1x had been set [there] + " 1x had been shattered + " 1x had been shortened + " 1x had been torn in two + " 1x had bought + " 2x had brought + " 1x had brought forth + " 1x had called + " 1x had cast + " 1x had ceased + " 10x had come + " 1x had come with + " 3x had commanded + " 1x had committed + " 1x had completed + " 1x had corrupted + " 1x had cut off + " 1x had delivered up + " 1x had departed + " 1x had determined beforehand + " 9x had done + " 5x had finished + " 1x had gained by trading + " 2x had given + " 1x had given rest + " 1x had gone + " 1x had gone away + " 2x had gone out + " 1x had gone up + " 1x had happened + " 1x had he strength + " 1x had healed + " 3x had known + " 1x had lack + " 1x had lain + " 1x had left + " 3x had made + " 2x had mercy on + " 1x had met + " 1x had mingled + " 1x had moved away + " 1x had partnership + " 1x had passed + " 1x had passed away + " 1x had pitied + " 1x had raised + " 2x had received + " 1x had received [the] Law + " 1x had received sight + " 1x had reclined + " 1x had risen + " 3x had said + " 1x had shortened + " 2x had spoken + " 5x had taken place + " 1x had taken up + " 1x had tasted + " 1x had tempted + " 1x had there been + " 1x had they opportunity + " 1x had walked + " 1x had you + " 3x hail + " 7x hair + " 4x hairs + " 3x half + " 1x half an hour + " 1x half dead + " 2x hallowed be + " 72x hand + " 6x hand-baskets + " 1x hand-made + " 1x hand-made [houses] + " 1x handed down from [your] fathers + " 1x handkerchiefs + " 1x handmaid + " 1x handmaiden + " 1x handmaidens + " 76x hands + " 1x handwriting + " 1x hanged himself + " 2x hanging + " 1x hangs + " 3x happened + " 1x happening + " 1x happens + " 1x harbor + " 1x hard + " 3x harden + " 1x hardened + " 3x hardly + " 3x hardness + " 3x hardness of heart + " 2x hardship + " 2x hardships + " 1x hardworking + " 3x harm + " 1x harmful + " 1x harmony + " 1x harp + " 1x harping + " 2x harps + " 2x harsh + " 1x harsh [things] + " 1x harsh treatment + " 11x harvest + " 1x harvest [is] + " 1x harvesters + " 64x has + " 1x has accomplished + " 1x has allotted + " 1x has anointed + " 2x has appointed + " 1x has arisen + " 1x has arranged + " 2x has assigned + " 2x has authority over + " 12x has become + " 1x has become like + " 7x has been + " 1x has been abolished + " 1x has been begotten + " 5x has been born + " 1x has been brought to desolation + " 1x has been called + " 1x has been committed + " 1x has been condemned + " 1x has been constituted + " 1x has been counted worthy + " 1x has been crucified + " 1x has been divided + " 2x has been done + " 1x has been enacted + " 1x has been expanded + " 1x has been fixed + " 1x has been freed + " 1x has been fulfilled + " 3x has been given + " 3x has been glorified + " 1x has been healed + " 2x has been heard + " 1x has been hidden + " 1x has been inaugurated + " 2x has been judged + " 2x has been made + " 1x has been made manifest + " 1x has been made void + " 1x has been opened + " 3x has been perfected + " 2x has been poured out + " 1x has been prepared + " 1x has been provoking + " 6x has been raised + " 1x has been refreshed + " 1x has been released + " 2x has been reserved + " 4x has been revealed + " 1x has been rolled away + " 1x has been sacrificed + " 1x has been saying + " 1x has been seen + " 2x has been sent + " 1x has been shut + " 1x has been sinning + " 1x has been spoken + " 1x has been stirred + " 2x has been subdued + " 1x has been thrown down + " 1x has been troubled + " 4x has been written + " 3x has believed + " 1x has bewitched + " 1x has blessed + " 2x has blinded + " 2x has borne witness + " 1x has bound + " 1x has brought + " 3x has called + " 1x has cast [in] + " 1x has cast in + " 1x has caused grief + " 1x has ceased + " 5x has chosen + " 2x has cleansed + " 1x has collected a tenth + " 19x has come + " 1x has come down + " 2x has come into being + " 3x has come to pass + " 2x has commanded + " 1x has committed adultery with + " 1x has composed + " 1x has conceived + " 1x has condemned + " 2x has cured + " 1x has dawned + " 1x has declined + " 2x has delivered + " 1x has deserted + " 1x has destined + " 3x has died + " 6x has done + " 11x has drawn near + " 4x has entered + " 1x has exhibited + " 1x has failed + " 2x has fallen + " 1x has fallen asleep + " 2x has filled + " 1x has first given + " 1x has forgiven + " 1x has found delight + " 2x has fulfilled + " 20x has given + " 1x has given [them] + " 1x has given [us] + " 1x has glorified + " 1x has gone + " 1x has gone abroad + " 1x has gone astray + " 1x has gone away + " 1x has gone forth + " 3x has gone out + " 1x has gone up + " 1x has granted + " 1x has granted [it] + " 2x has happened + " 1x has hardened + " 1x has he + " 1x has he grieved + " 1x has he known + " 4x has healed + " 1x has heard + " 1x has hired + " 1x has hope + " 2x has it + " 3x has it been written + " 1x has it come + " 1x has joined together + " 1x has judged + " 1x has killed + " 5x has known + " 4x has left + " 1x has lived + " 1x has loved + " 4x has made + " 1x has made [Him] known + " 1x has made clear + " 1x has made competent + " 1x has made foolish + " 1x has made known + " 1x has made ready + " 1x has occurred + " 1x has offered up + " 1x has opened + " 1x has overcome + " 3x has passed + " 1x has performed + " 2x has perished + " 1x has permitted + " 1x has pitched + " 1x has planted + " 1x has power + " 1x has prepared + " 1x has prescribed + " 2x has produced + " 1x has put + " 4x has raised up + " 1x has reached + " 3x has received + " 1x has reigned + " 1x has related + " 1x has remembered + " 1x has rendered + " 1x has repaid + " 1x has resisted + " 2x has revealed [it] + " 1x has ripened + " 1x has risen + " 2x has risen up + " 5x has said + " 2x has sat + " 1x has saved + " 1x has sealed + " 9x has seen + " 1x has seized + " 6x has sent + " 2x has sent forth + " 1x has served + " 2x has set + " 2x has set free + " 1x has set his seal + " 1x has shown + " 1x has sounded forth + " 5x has spoken + " 1x has sprung + " 1x has stood + " 1x has stood with + " 1x has strengthened + " 1x has suffered + " 1x has taken place + " 1x has testified + " 1x has turned away + " 1x has understood + " 1x has willed + " 3x haste + " 1x hastening + " 1x hastily + " 1x hate + " 7x hated + " 1x hateful + " 1x hateful to God + " 6x hates + " 9x hating + " 1x haughty + " 46x have + " 1x have I ascended + " 1x have I become + " 1x have I been justified + " 1x have I been sent forth + " 1x have I called + " 2x have I come + " 1x have I come forth + " 1x have I eaten + " 1x have I found + " 2x have I gained + " 1x have I kept + " 1x have I said + " 1x have I seen + " 1x have I sinned + " 2x have I written + " 1x have You + " 1x have You come + " 1x have You delighted in + " 2x have You done + " 1x have You forsaken + " 1x have You heard + " 1x have You wronged + " 1x have abundance + " 1x have agreed + " 1x have agreed together + " 1x have allowed + " 1x have announced + " 1x have arisen + " 1x have ascended + " 1x have association + " 1x have attained + " 7x have become + " 1x have become puffed up + " 1x have become worthless + " 2x have been + " 1x have been able + " 1x have been assured of + " 2x have been baptized + " 2x have been born + " 1x have been created + " 1x have been deceived + " 2x have been delivered + " 1x have been disobedient + " 1x have been enriched + " 2x have been entrusted + " 1x have been finished + " 4x have been forgiven + " 1x have been found + " 1x have been given + " 1x have been granted + " 1x have been heaped + " 1x have been killed + " 1x have been left + " 1x have been made + " 1x have been made drunk + " 1x have been numbered + " 1x have been perfected + " 1x have been proclaimed + " 1x have been put in subjection + " 1x have been put to death + " 1x have been redeemed + " 1x have been refreshed + " 1x have been remembered + " 1x have been revealed + " 1x have been seduced + " 1x have been shown mercy + " 1x have been sold + " 1x have been taught + " 1x have been weak + " 3x have been written + " 4x have begotten + " 1x have begun + " 1x have begun to reign + " 4x have believed + " 2x have borne witness + " 1x have bowed + " 1x have breakfast + " 1x have carried off + " 1x have caused a shipwreck + " 1x have closely followed + " 4x have come + " 1x have come down + " 1x have come to believe + " 1x have come to know + " 2x have committed sexual immorality + " 1x have compassion on + " 1x have corroded + " 1x have crucified + " 1x have denied + " 1x have departed + " 1x have died + " 1x have dishonored + " 1x have done + " 1x have drunk + " 1x have endured + " 3x have entered + " 1x have entertained + " 1x have fallen + " 1x have fallen asleep + " 1x have fellowship with + " 1x have filled up + " 1x have found delight + " 1x have fully ripened + " 1x have gathered together + " 2x have given + " 1x have given up + " 2x have gone astray + " 1x have gone out + " 1x have grown weary + " 1x have handled + " 2x have hated + " 5x have heard + " 1x have heard [it] + " 1x have hoped + " 1x have judged + " 2x have kept + " 1x have kept [it] + " 5x have known + " 1x have known [it] + " 1x have lain down + " 2x have learned + " 1x have left + " 1x have lived as a citizen + " 3x have loved + " 3x have made + " 8x have mercy on + " 1x have mourned + " 1x have not been defiled + " 3x have overcome + " 1x have partaken + " 2x have passed away + " 1x have perished + " 1x have pierced + " 1x have purified + " 1x have put under an oath + " 6x have received + " 1x have recognized + " 1x have rejected + " 1x have revealed + " 1x have rotted + " 1x have run + " 5x have said + " 1x have sat down + " 8x have seen + " 3x have sent + " 1x have shared in + " 3x have sinned + " 1x have soiled + " 1x have sown + " 5x have spoken + " 1x have they come + " 1x have they known + " 1x have toiled + " 1x have toiled for + " 1x have tormented + " 2x have turned aside + " 1x have turned away + " 1x have turned out + " 1x have undertaken + " 1x have used + " 1x have washed + " 7x have we + " 1x have we an advantage + " 1x have we been under bondage + " 1x have we power + " 1x have we taken + " 1x have worked + " 9x have you + " 1x have you been thinking + " 1x have you come out + " 1x have you forsaken + " 3x have you gone out + " 1x have you laid + " 1x have you made + " 1x have you made a distinction + " 6x have you read + " 1x have you resisted + " 1x have you seen + " 203x having + " 1x having [a child] + " 1x having abolished + " 1x having abounded + " 1x having accepted + " 1x having accompanied + " 2x having adjudged + " 1x having allowed + " 1x having an itching + " 1x having annulled + " 3x having anointed + " 1x having appealed for + " 1x having appealed to + " 3x having appeared + " 1x having appeared as + " 1x having appointed + " 1x having appointed [me] + " 3x having approached + " 13x having arisen + " 1x having arranged + " 1x having arrested + " 18x having arrived + " 1x having arrived in + " 2x having ascended + " 1x having ascertained + " 1x having asked + " 1x having asked for + " 1x having assailed + " 1x having authority + " 1x having awoken fully + " 2x having beaten + " 1x having beaten [him] + " 18x having become + " 1x having become abominable + " 1x having become angry + " 1x having become aware + " 1x having become customary + " 1x having become dead + " 1x having become fully grown + " 1x having become like + " 1x having become slaves + " 1x having become weak + " 20x having been + " 1x having been a surplus + " 1x having been accomplished + " 1x having been acquainted + " 3x having been adorned + " 1x having been afraid + " 1x having been angry + " 3x having been appointed + " 1x having been as good as dead + " 1x having been awoken + " 5x having been baptized + " 1x having been baptized [with] + " 1x having been bathed + " 2x having been begotten + " 1x having been beloved + " 1x having been bereaved + " 1x having been bestowed + " 15x having been born + " 4x having been bound + " 1x having been brought + " 1x having been built + " 1x having been buried with + " 6x having been called + " 1x having been captured + " 4x having been cast + " 1x having been cast out + " 1x having been caught + " 1x having been caught up + " 1x having been celebrated + " 1x having been chosen + " 1x having been chosen beforehand + " 1x having been cleansed + " 3x having been clothed + " 2x having been clothed in + " 4x having been clothed with + " 3x having been commanded + " 1x having been commended + " 1x having been committed + " 3x having been completed + " 1x having been composed + " 1x having been conceived + " 1x having been confirmed beforehand + " 1x having been considered worthy + " 1x having been covered around + " 3x having been created + " 1x having been crowned + " 5x having been crucified + " 1x having been crucified with + " 1x having been cut down + " 4x having been dead + " 1x having been deceived + " 1x having been declared + " 1x having been deficient + " 1x having been defiled + " 2x having been delivered + " 1x having been deluged + " 2x having been designated + " 1x having been determined + " 1x having been dipped + " 1x having been discipled + " 3x having been divided + " 1x having been divinely instructed + " 2x having been divinely warned + " 2x having been done + " 1x having been dressed + " 1x having been dried up + " 1x having been encircled + " 1x having been engraved + " 2x having been enlightened + " 1x having been enriched + " 1x having been enrolled + " 1x having been entangled + " 1x having been exalted + " 1x having been exercised + " 3x having been filled + " 1x having been fitted + " 1x having been folded up + " 1x having been forbidden + " 1x having been foreknown + " 1x having been found + " 1x having been frightened + " 1x having been fully assured + " 1x having been fully equipped + " 1x having been furnished + " 4x having been gathered together + " 1x having been girded about + " 1x having been girded with + " 14x having been given + " 1x having been granted + " 1x having been grieved + " 1x having been hanged + " 1x having been hated + " 3x having been healed + " 1x having been heard + " 5x having been hidden + " 1x having been ignored + " 1x having been in need + " 3x having been inscribed + " 1x having been instituted + " 1x having been instructed + " 7x having been invited + " 2x having been justified + " 1x having been kept + " 1x having been kept back + " 1x having been kept secret + " 1x having been killed + " 1x having been kindled + " 2x having been knit together + " 1x having been known + " 1x having been led away + " 1x having been locked up + " 3x having been lost + " 3x having been loved + " 6x having been made + " 1x having been made alive + " 1x having been made glorious + " 1x having been made known + " 1x having been made like + " 1x having been made lower + " 2x having been made manifest + " 1x having been manifested + " 2x having been married + " 1x having been ministered to + " 1x having been mistreated + " 2x having been mixed + " 1x having been mixed with myrrh + " 1x having been moved with compassion + " 1x having been moved with fear + " 1x having been obedient + " 1x having been offered + " 7x having been opened + " 1x having been ordained + " 1x having been ordered + " 1x having been over and above + " 1x having been overpowered + " 2x having been paralyzed + " 1x having been passed + " 4x having been perfected + " 1x having been persecuted + " 1x having been persuaded + " 1x having been persuaded of + " 2x having been possessed by demons + " 1x having been poured out + " 1x having been preached + " 1x having been predestined + " 8x having been prepared + " 1x having been priced + " 3x having been proclaimed + " 1x having been puffed up + " 1x having been purified + " 1x having been put to death + " 1x having been put to grief + " 3x having been raised + " 1x having been raised again + " 2x having been raised up + " 1x having been ratified + " 1x having been reconciled + " 1x having been redeemed + " 2x having been refined + " 1x having been rejected + " 1x having been removed + " 2x having been revealed + " 1x having been rolled away + " 1x having been rooted + " 1x having been sad + " 2x having been said + " 6x having been sanctified + " 3x having been saved + " 3x having been scattered + " 5x having been sealed + " 1x having been seared + " 1x having been seasoned + " 1x having been seized + " 8x having been sent + " 1x having been sent forth + " 1x having been sent forward + " 1x having been sent off + " 1x having been sent out + " 1x having been separated + " 1x having been set apart + " 1x having been set forth + " 1x having been set free + " 1x having been shown + " 2x having been shut + " 6x having been slain + " 2x having been sold + " 7x having been sown + " 15x having been spoken + " 2x having been spoken beforehand + " 2x having been spoken of + " 1x having been sprinkled clean + " 1x having been stained + " 1x having been stored up + " 1x having been strengthened + " 2x having been subjected + " 1x having been summoned + " 1x having been taken up + " 1x having been tempted + " 4x having been tied + " 1x having been told + " 1x having been trained + " 1x having been united with + " 1x having been unveiled + " 1x having been uprooted + " 1x having been urged on + " 1x having been washed + " 1x having been whitewashed + " 1x having been willing [for] + " 20x having been written + " 1x having befallen + " 1x having before sinned + " 1x having begotten [Him] + " 1x having begotten again + " 9x having begun + " 1x having beheld + " 22x having believed + " 1x having benefited + " 2x having betrayed + " 1x having blasphemed + " 4x having blessed + " 1x having blindfolded + " 1x having blotted out + " 1x having boldness + " 2x having borne + " 2x having bought + " 4x having bound + " 4x having bowed + " 1x having bowed the knees + " 3x having broken + " 2x having broken [it] + " 2x having broken down + " 1x having broken up [it] + " 8x having brought + " 1x having brought [them] out + " 1x having brought back + " 1x having brought down + " 1x having brought good news + " 2x having brought in + " 1x having brought out + " 1x having brought to light + " 1x having brought together + " 1x having brought up + " 1x having budded + " 2x having built + " 1x having built [is] + " 1x having buried + " 9x having called + " 1x having called [me] + " 1x having called [us] + " 1x having called in + " 3x having called near + " 2x having called out + " 2x having called to + " 8x having called to [Him] + " 7x having called to [him] + " 2x having called together + " 1x having carried [him] out + " 1x having carried out + " 1x having carried witness + " 4x having cast + " 1x having cast [him] + " 1x having cast [them] down to Tartarus + " 1x having cast [themselves] off + " 2x having cast away + " 1x having cast down + " 1x having cast forth + " 1x having cast off all feeling + " 1x having changed their opinion + " 1x having charged + " 4x having chosen + " 1x having chosen out + " 1x having cleansed [her] + " 1x having clung + " 1x having collected a crowd + " 127x having come + " 1x having come back + " 8x having come down + " 1x having come forward + " 1x having come forward as + " 2x having come in + " 2x having come near + " 1x having come on + " 1x having come out + " 1x having come presently + " 3x having come to [Him] + " 1x having come to [her] + " 5x having come to [him] + " 2x having come to [them] + " 4x having come to pass + " 3x having come together + " 12x having come up + " 2x having come up with + " 2x having come upon [him] + " 1x having come with + " 5x having commanded + " 1x having committed + " 1x having committed sexual immorality + " 1x having compassion + " 3x having completed + " 1x having conceived + " 1x having concluded + " 1x having condemned [Him] + " 1x having conferred + " 1x having confessed + " 1x having consented + " 1x having continued in [it] + " 3x having created + " 1x having created [it] + " 3x having cried + " 5x having cried out + " 1x having crossed over + " 2x having crucified + " 1x having cut away + " 1x having danced + " 1x having dealt treacherously with + " 1x having delighted + " 1x having delivered + " 1x having delivered [him] + " 1x having delivered [it] + " 2x having delivered up + " 2x having denied + " 7x having departed + " 5x having descended + " 1x having despised + " 2x having destroyed + " 1x having determined + " 1x having devoured + " 8x having died + " 1x having dipped + " 1x having directed + " 1x having disbelieved + " 1x having discipled + " 1x having discriminated + " 1x having dishonored + " 4x having dismissed + " 3x having disobeyed + " 1x having disregarded + " 1x having divorced + " 20x having done + " 1x having done wrong + " 1x having dragged off + " 3x having drawn + " 1x having drawn away + " 2x having drawn near + " 1x having drawn up + " 1x having driven out + " 1x having drunk + " 1x having drunk in + " 1x having dwelt + " 1x having earnestly sought + " 1x having earnestly testified + " 3x having eaten + " 1x having eaten of + " 1x having elapsed + " 1x having embarked + " 1x having embraced [him] + " 1x having embraced [them] + " 1x having encouraged + " 1x having encouraged [him] + " 1x having ended + " 4x having endured + " 1x having enlisted him + " 35x having entered + " 1x having entered in + " 1x having envied + " 2x having escaped + " 2x having esteemed + " 2x having examined + " 1x having examined [Him] + " 1x having examined [him] + " 1x having exhorted + " 15x having fallen + " 6x having fallen asleep + " 1x having fallen away + " 3x having fallen down + " 1x having fallen down before + " 1x having fallen on + " 2x having fasted + " 2x having feared + " 1x having fellowship in + " 1x having filled + " 1x having filled [it] + " 2x having finished + " 1x having first trusted + " 1x having fled for refuge + " 1x having flogged + " 1x having flogged [Him] + " 1x having flogged [him] + " 5x having followed + " 1x having followed out + " 1x having foretold + " 1x having forgiven + " 1x having formed + " 1x having formed [it] + " 1x having forsaken + " 16x having found + " 1x having found [Him] + " 2x having found [him] + " 2x having found [it] + " 1x having fulfilled + " 1x having further threatened [them] + " 2x having gained + " 2x having gathered + " 6x having gathered together + " 1x having girded + " 1x having girded up + " 1x having girded yourself about + " 12x having given + " 1x having given [them] + " 1x having given [us] + " 1x having given counsel + " 1x having given orders + " 10x having given thanks + " 1x having given up + " 1x having given way + " 32x having gone + " 2x having gone ahead + " 1x having gone around + " 1x having gone astray + " 13x having gone away + " 4x having gone down + " 1x having gone down too + " 1x having gone farther + " 17x having gone forth + " 2x having gone forward + " 2x having gone on + " 1x having gone on board + " 26x having gone out + " 5x having gone up + " 1x having gone with + " 1x having gouged out + " 3x having greeted + " 2x having had + " 1x having had a flux of blood + " 1x having had the gospel preached + " 1x having handed over + " 2x having hanged [Him] + " 4x having happened + " 2x having harvested + " 57x having heard + " 2x having heard [it] + " 2x having heard [of it] + " 2x having heard [this] + " 2x having heard of + " 1x having hoisted + " 1x having hope + " 3x having hurried + " 1x having hurt + " 1x having indulged in sexual immorality + " 1x having inflicted + " 1x having inquired for + " 2x having instructed + " 1x having instructed [him] + " 1x having insulted + " 4x having invited + " 1x having joined themselves + " 1x having judged + " 1x having kept + " 2x having killed + " 1x having knelt down to + " 1x having knocked + " 1x having knowledge of + " 19x having known + " 4x having known [it] + " 11x having laid + " 1x having laid [them] + " 1x having laid aside + " 1x having laid hold + " 1x having laid hold of + " 1x having laid hold on + " 1x having landed + " 1x having leapt + " 4x having learned + " 1x having led [it] away + " 1x having led a revolt + " 1x having led out + " 1x having led up + " 21x having left + " 1x having left [him] + " 1x having left behind + " 1x having let down + " 1x having lifted Himself up + " 5x having lifted up + " 1x having lighted + " 1x having lit + " 1x having lived + " 1x having lived luxuriously + " 3x having looked around + " 3x having looked around on + " 3x having looked at + " 7x having looked intently + " 1x having looked intently on + " 7x having looked up + " 2x having looked upon + " 1x having loosed + " 1x having loosened + " 2x having lost + " 5x having loved + " 1x having lowered + " 1x having lowered [him] + " 13x having made + " 1x having made His promise + " 2x having made [it] + " 2x having made a sign + " 2x having made known + " 1x having made peace + " 2x having married + " 1x having marveled + " 2x having met + " 1x having ministered + " 1x having missed the mark + " 1x having mocked [Him] + " 1x having motioned with + " 1x having murdered + " 1x having nailed + " 2x having neglected + " 3x having obtained + " 2x having offered + " 2x having offered up + " 4x having opened + " 1x having opened [it] + " 1x having opened [them] + " 1x having overcome + " 1x having overlooked + " 1x having overpowered + " 1x having packed the baggage + " 1x having paid no attention + " 4x having passed + " 1x having passed by + " 2x having passed over + " 5x having passed through + " 1x having perished + " 1x having persevered + " 1x having persuaded + " 1x having persuaded [them] + " 1x having placed + " 1x having planned + " 1x having pondered + " 1x having practiced + " 8x having prayed + " 1x having preached + " 1x having predestined + " 2x having prepared + " 1x having previously seen + " 1x having previously suffered + " 1x having proceeded + " 1x having proclaimed + " 1x having proclaimed the gospel to + " 1x having procured + " 1x having produced + " 2x having promised + " 1x having prophesied + " 1x having provided + " 2x having purified + " 4x having put + " 2x having put [it] on + " 1x having put aside + " 1x having put confidence + " 1x having put in + " 2x having put in subjection + " 2x having put off + " 5x having put on + " 1x having put on [Him] + " 1x having put out + " 1x having qualified + " 5x having raised + " 6x having raised up + " 1x having ravaged + " 1x having reasoned + " 26x having received + " 1x having received [it] + " 1x having received by succession + " 3x having received mercy + " 1x having received sight + " 1x having received the good news + " 2x having reclined + " 3x having recognized + " 1x having reconciled + " 1x having reduced to ashes + " 1x having refused + " 1x having regretted [it] + " 1x having related + " 2x having remained + " 1x having remembered + " 1x having removed + " 1x having repented + " 1x having resisted + " 8x having returned + " 3x having risen + " 20x having risen up + " 1x having rolled + " 1x having rolled up + " 3x having run + " 1x having run directly + " 1x having run in + " 1x having run under + " 1x having run up + " 42x having said + " 2x having said farewell + " 1x having sailed across [the sea] + " 1x having sailed away + " 1x having sanctified + " 3x having sat + " 10x having sat down + " 1x having sat down together + " 2x having saved + " 3x having sealed + " 70x having seen + " 2x having seen [him] + " 8x having seen [it] + " 2x having seen [them] + " 5x having seized + " 1x having selected + " 42x having sent + " 1x having sent [it] + " 1x having sent [them] forth + " 1x having sent forth + " 2x having served + " 2x having set + " 1x having set [Him] + " 1x having set forward + " 1x having set out + " 1x having set sail + " 1x having set upon [them] + " 2x having shaken off + " 1x having shaken out + " 1x having shaved + " 1x having shod + " 1x having shone around + " 2x having shown + " 1x having shown [it] + " 1x having shut + " 1x having sighed deeply + " 4x having sinned + " 1x having sinned before + " 1x having slain + " 1x having sold [it] + " 1x having sought after + " 3x having sown + " 1x having space + " 1x having spent + " 3x having spit + " 6x having spoken + " 1x having spoken a blessing + " 2x having sprung up + " 1x having sprung up with [it] + " 1x having stayed + " 1x having sternly warned + " 1x having stoned + " 8x having stood + " 1x having stood by + " 1x having stood by [me] + " 6x having stood up + " 2x having stooped + " 3x having stooped down + " 2x having stopped + " 1x having strengthened + " 7x having stretched out + " 1x having strictly warned + " 2x having stripped + " 3x having struck + " 1x having struck down + " 1x having stuck fast + " 1x having studied + " 1x having subjected [it] + " 3x having suffered + " 1x having suffered the loss of + " 1x having suffered wrong + " 1x having summoned + " 2x having sung a hymn + " 2x having supped + " 1x having supposed + " 3x having sworn + " 1x having swum away + " 59x having taken + " 1x having taken Him + " 1x having taken [Him] down + " 1x having taken [him] + " 1x having taken [it] + " 1x having taken [them] in arms + " 1x having taken aside + " 1x having taken away + " 1x having taken down + " 2x having taken hold + " 1x having taken hold [of him] + " 3x having taken hold of + " 1x having taken in + " 1x having taken in [His] arms + " 1x having taken it down + " 1x having taken leave + " 3x having taken leave of + " 1x having taken out + " 15x having taken place + " 1x having taken place beforehand + " 2x having taken soundings + " 1x having taken to [Him] + " 1x having taken to [them] + " 5x having taken up + " 1x having taken with [Him] + " 1x having taken with [him] + " 1x having taken with [me] + " 2x having taken with [them] + " 1x having taking + " 1x having talked + " 3x having tasted + " 1x having testified + " 1x having thought + " 1x having thrown + " 1x having thrown him into convulsions + " 1x having thrown into convulsions + " 1x having thrust forward + " 1x having toiled + " 3x having torn + " 1x having torn off + " 3x having touched + " 1x having trampled upon + " 1x having treated + " 1x having triumphed + " 13x having turned + " 3x having twisted together + " 2x having understood + " 1x having unrolled + " 2x having untied + " 1x having untied [them] + " 1x having upset + " 1x having uttered + " 1x having waited patiently + " 1x having walked + " 2x having washed + " 1x having watched [Him] + " 1x having weighed [anchor] + " 1x having wintered + " 1x having wiped + " 3x having withdrawn + " 2x having witnessed + " 1x having worked + " 1x having worshiped + " 1x having wounded + " 3x having written + " 1x having written down + " 1x hay + " 80x he + " 1x he [was] + " 1x he accepted + " 1x he also + " 3x he answered + " 1x he answering + " 1x he appeared + " 1x he appointed + " 1x he approves + " 2x he arose + " 1x he asks + " 1x he baptized + " 1x he be sunk + " 1x he bears + " 1x he bears witness + " 3x he became + " 1x he become + " 6x he began + " 1x he began begging + " 1x he began crying out + " 1x he began following + " 1x he began glorifying + " 1x he began inquiring + " 1x he began proclaiming + " 1x he began rolling around + " 1x he began speaking + " 1x he began to follow + " 1x he began to give heed + " 1x he began to inquire + " 1x he began to relate + " 1x he began to see + " 1x he began to speak + " 1x he began to weep + " 2x he begat + " 1x he begged + " 1x he begs + " 1x he beheaded + " 1x he beheld + " 1x he beholds + " 1x he being about + " 3x he believed + " 1x he bind + " 1x he binds + " 1x he bound + " 1x he bound up + " 2x he breathed his last + " 1x he brought + " 1x he brought [him] + " 1x he builds upon [it] + " 1x he built up + " 1x he burned + " 1x he burst open + " 4x he called + " 2x he called for + " 1x he called out + " 2x he calls + " 1x he calls together + " 9x he came + " 1x he came down + " 1x he came near + " 2x he carried away + " 4x he cast + " 1x he casts [them] out + " 1x he circumcised + " 4x he comes + " 6x he commanded + " 1x he commanded [it] + " 2x he commanded [them] + " 1x he condemned + " 1x he confessed + " 1x he considered + " 1x he continued + " 1x he could measure + " 1x he could see + " 2x he cried + " 8x he cried out + " 1x he cries out + " 1x he dared + " 1x he deceived + " 1x he deceives + " 1x he defended [him] + " 3x he delivered + " 3x he denied + " 2x he denied [it] + " 6x he departed + " 1x he destroyed + " 7x he did + " 1x he did consent + " 1x he did waver + " 1x he died + " 2x he dies + " 1x he differs + " 1x he directed + " 1x he dismissed + " 1x he divided + " 1x he divides + " 1x he does + " 2x he does [it] + " 2x he does expect + " 1x he does have + " 1x he does sin + " 2x he drew near + " 1x he drove + " 3x he dwelt + " 1x he earnestly testified + " 2x he eats + " 9x he entered + " 1x he entered with + " 1x he enters + " 1x he expounded + " 2x he fails to listen + " 1x he fall + " 1x he falls + " 1x he falls away + " 1x he feared + " 2x he fell + " 1x he fell asleep + " 2x he fell down before + " 2x he finds + " 1x he fled + " 1x he foams + " 2x he followed + " 1x he follows + " 1x he forbids + " 2x he forgave + " 4x he found + " 1x he gains + " 1x he gathered together + " 4x he gave + " 1x he gave [them] + " 1x he gave thanks + " 2x he gives thanks + " 4x he goes + " 1x he got + " 6x he had + " 1x he had acted + " 1x he had amazed + " 1x he had appealed + " 1x he had ascertained + " 1x he had been + " 1x he had been outwitted + " 1x he had been thrown down + " 1x he had begun + " 1x he had come + " 1x he had cut + " 1x he had given + " 1x he had gone out + " 1x he had married + " 1x he had received sight + " 6x he had seen + " 1x he had spoken + " 1x he had spoken boldly + " 1x he had trusted + " 21x he has + " 1x he has become + " 1x he has become [so] + " 1x he has been + " 1x he has been born + " 1x he has been called + " 1x he has been cast + " 1x he has been doing + " 2x he has believed + " 1x he has borne witness + " 1x he has brought + " 1x he has brought out + " 1x he has denied + " 1x he has done wrong + " 1x he has fallen asleep + " 1x he has forgotten + " 1x he has gone + " 1x he has gone out + " 1x he has kept + " 1x he has long hair + " 1x he has opposed + " 1x he has received + " 3x he has seen + " 1x he has served + " 1x he has sold + " 1x he has viewed + " 1x he has wronged + " 1x he having entered + " 1x he having laid + " 1x he having sent + " 3x he heard + " 8x he himself + " 25x he is + " 6x he is able + " 1x he is about + " 1x he is accused + " 1x he is alive + " 1x he is aware + " 1x he is bound by his oath + " 1x he is comforted + " 1x he is convicted + " 1x he is crowned + " 1x he is desirous + " 1x he is divided + " 2x he is doing + " 1x he is eating + " 1x he is enslaved + " 1x he is epileptic + " 1x he is examined + " 3x he is going + " 1x he is hoping + " 1x he is obligated + " 1x he is praying + " 1x he is puffed up + " 1x he is saying + " 1x he is sick + " 2x he is speaking + " 2x he is thrown + " 1x he joined himself + " 1x he kept back + " 1x he kept crying out + " 1x he kept safe + " 1x he kept saying + " 1x he kissed + " 2x he knew + " 2x he knows + " 1x he laid + " 1x he laid [it] + " 1x he lays [it] + " 2x he left + " 1x he left the region + " 1x he lifted up + " 1x he lives on + " 1x he locked up + " 1x he lodged [them] + " 2x he loves + " 1x he may be + " 1x he may be ashamed + " 1x he may be prospered in + " 1x he may become + " 2x he may encourage + " 1x he may have + " 1x he may have [something] + " 1x he may receive + " 2x he measured + " 1x he met with + " 4x he might be + " 1x he might be [gone] + " 1x he might be [one] + " 3x he might betray + " 1x he might bring + " 1x he might bring [them] + " 1x he might bring down + " 1x he might buffet + " 2x he might carry + " 1x he might cause to be + " 1x he might come + " 1x he might complete + " 1x he might conquer + " 1x he might deliver up + " 1x he might devour + " 1x he might dip + " 1x he might enter + " 2x he might fall + " 1x he might fill up + " 1x he might have + " 1x he might have done + " 1x he might interpret + " 2x he might know + " 1x he might please + " 1x he might put + " 1x he might receive + " 1x he might release + " 1x he might sanctify + " 1x he might see + " 1x he might see again + " 1x he might serve + " 1x he might shrink back + " 1x he might speak + " 1x he might steal + " 1x he might take away + " 1x he might testify + " 1x he might warn + " 1x he might wish + " 1x he might witness + " 1x he mistreated + " 1x he needs + " 1x he nourishes + " 1x he obtained + " 1x he offered + " 1x he offers + " 1x he opened + " 1x he opened his eyes + " 1x he ordered + " 1x he ought + " 1x he owes [you] + " 1x he passed by on the opposite side + " 1x he permits + " 1x he persevered + " 2x he placed + " 1x he placed around [it] + " 1x he pleads + " 3x he prayed + " 1x he prayed [for it] + " 1x he presented + " 1x he prevailed + " 3x he proceeded + " 1x he proclaimed the good news + " 2x he promised + " 1x he prophesied + " 1x he purposes + " 1x he pursued + " 1x he put + " 1x he put to death + " 3x he questioned + " 2x he raised up + " 1x he ran + " 2x he reasoned + " 2x he received + " 2x he received sight + " 1x he receives + " 1x he refreshed + " 1x he regained his sight + " 1x he rejoices + " 2x he related + " 1x he released + " 1x he remained + " 1x he remains + " 2x he reported [it] + " 1x he returned + " 1x he rolled + " 1x he rose up + " 1x he rushed in + " 73x he said + " 1x he sailed + " 9x he saw + " 33x he says + " 2x he seems + " 7x he sees + " 1x he seized + " 1x he sells + " 1x he sends + " 14x he sent + " 1x he sent back + " 1x he sent for + " 1x he sent forth + " 1x he sent up + " 1x he served + " 1x he set [him] + " 1x he set [it] forth + " 1x he shall ask + " 1x he shall have come + " 1x he shall have competed + " 1x he shall have opportunity + " 1x he shall honor + " 1x he shall return + " 1x he should + " 1x he should be born + " 2x he should be silent + " 1x he should betray + " 1x he should cause to stumble + " 2x he should come + " 1x he should deceive + " 1x he should die + " 1x he should drag away + " 1x he should find + " 1x he should give + " 1x he should go + " 1x he should implore + " 1x he should interpret + " 1x he should keep watch + " 1x he should offer + " 2x he should pay + " 2x he should please + " 1x he should repent + " 1x he should say + " 2x he should see + " 1x he should show [it] + " 1x he should sin + " 1x he should thirst + " 1x he should walk + " 3x he showed + " 1x he signified + " 1x he slayed + " 1x he sojourned + " 1x he sought out + " 1x he sowed + " 2x he speaks + " 2x he spoke + " 1x he spoke to [them] + " 1x he spoke with + " 1x he sprang up + " 2x he sprinkled + " 1x he stands + " 2x he stayed + " 1x he stayed [there] + " 1x he stinks + " 4x he stood + " 2x he stretched [it] out + " 1x he stretched forward + " 2x he stumbles + " 1x he suffered + " 2x he swore + " 1x he takes away + " 1x he tells + " 2x he took + " 1x he took separately + " 1x he took up + " 1x he unbound + " 1x he used to pilfer + " 1x he used to release + " 1x he utters + " 1x he wanted + " 23x he was + " 2x he was [one] + " 2x he was able + " 2x he was about + " 1x he was addressing + " 3x he was afraid + " 1x he was amazed + " 1x he was ashamed of + " 1x he was asking + " 1x he was attempting + " 2x he was baptized + " 2x he was born + " 1x he was bound + " 2x he was called + " 1x he was calling out + " 1x he was caring + " 1x he was cast + " 1x he was caught up + " 1x he was cleansed + " 1x he was clothed in + " 1x he was comforted + " 1x he was coming near + " 1x he was commended + " 1x he was dead + " 1x he was delivering [them] + " 1x he was destroying + " 1x he was drawing back + " 1x he was driven + " 1x he was eating + " 2x he was following + " 1x he was going + " 1x he was hastened + " 1x he was healed + " 1x he was held by + " 1x he was hoping + " 1x he was hungry + " 1x he was ill + " 1x he was inquiring + " 1x he was longing + " 1x he was looking + " 1x he was lost + " 1x he was lying + " 1x he was numbered + " 1x he was performing + " 1x he was perplexed + " 1x he was preaching + " 1x he was preaching the good news to + " 1x he was proclaiming the gospel + " 1x he was proclaiming the gospel of + " 2x he was reading + " 2x he was reasoning + " 1x he was refuting + " 1x he was rejected + " 1x he was restored + " 1x he was sanctified + " 16x he was saying + " 5x he was seeking + " 1x he was separated [from you] + " 1x he was sick + " 1x he was sitting + " 4x he was speaking + " 1x he was speaking boldly + " 1x he was speechless + " 1x he was strengthened + " 1x he was talking + " 1x he was testified + " 1x he was thinking + " 1x he was throttling [him] + " 1x he was troubled + " 2x he was willing + " 1x he washed + " 1x he washed [them] + " 1x he wasted + " 7x he went + " 6x he went away + " 1x he went down + " 5x he went forth + " 1x he went in + " 1x he went on his way + " 1x he went out + " 2x he went up + " 2x he wept + " 10x he who + " 3x he who [is] + " 1x he who is + " 1x he whom + " 1x he will ask for + " 5x he will be + " 2x he will be called + " 2x he will be devoted to + " 1x he will be filled + " 1x he will be in abundance + " 1x he will be likened + " 1x he will be saved + " 1x he will be tormented + " 1x he will come + " 1x he will cut in two + " 2x he will despise + " 2x he will do + " 1x he will flee + " 1x he will get well + " 1x he will gird himself + " 2x he will give + " 1x he will glorify + " 1x he will go in + " 2x he will hate + " 1x he will have + " 1x he will have in abundance + " 2x he will hear + " 1x he will keep + " 1x he will know + " 2x he will live + " 2x he will love + " 1x he will offer [it] + " 1x he will pass away + " 2x he will plunder + " 1x he will pull up + " 1x he will raise up + " 1x he will reap + " 3x he will receive + " 1x he will receive [back] + " 1x he will rent out + " 1x he will rise again + " 1x he will save + " 2x he will say + " 1x he will send + " 2x he will set + " 1x he will shepherd + " 1x he will speak + " 1x he will suffer loss + " 1x he will tear + " 1x he will turn + " 1x he will worship + " 1x he wills + " 2x he withdrew + " 1x he woke up + " 1x he worshiped + " 1x he would + " 1x he would be + " 1x he would command + " 1x he would have allowed + " 1x he would have watched + " 1x he would summon + " 1x he wrapped + " 1x he wrapped [Him] in + " 1x he wrote + " 48x head + " 1x headlong + " 17x heads + " 3x heads of grain + " 4x heal + " 3x healed + " 7x healing + " 1x healing [them] + " 1x heals + " 14x hear + " 1x hear of + " 22x heard + " 1x heard [it] + " 2x hearers + " 46x hearing + " 1x hearings + " 7x hears + " 84x heart + " 1x heart-knowing + " 1x heartily + " 1x heartless + " 49x hearts + " 1x heat + " 160x heaven + " 11x heavenly + " 1x heavenly [one] + " 5x heavenly realms + " 1x heavenly things + " 74x heavens + " 6x heavy + " 1x heavy to bear + " 1x hedges + " 1x heeded + " 1x heel + " 3x height + " 7x heir + " 7x heirs + " 1x held + " 1x held in bondage + " 1x held it + " 10x hell + " 1x helmet + " 8x help + " 2x helped + " 1x helper + " 1x helping + " 3x henceforth + " 97x her + " 1x her having been divorced + " 1x her own + " 1x her put away + " 1x herb + " 4x herd + " 60x here + " 1x here [are] + " 2x here [is] + " 1x heresies + " 1x hereunto + " 6x herself + " 7x hid + " 1x hid Himself + " 8x hidden + " 1x hidden reefs + " 2x hidden things + " 1x hide + " 8x high + " 43x high priest + " 1x high priests + " 1x high thing + " 1x high-priestly + " 2x higher + " 2x highest + " 1x highly exalted + " 3x highways + " 2x hill + " 2x hill country + " 1x hills + " 604x him + " 1x him [said] + " 71x himself + " 1x himself to be + " 2x hindered + " 1x hindering + " 1x hindrance + " 1x hired servant + " 2x hired servants + " 28x his + " 1x his disciples + " 5x his own + " 1x his teeth + " 5x hold + " 1x hold You in suspense + " 3x hold fast + " 1x hold together + " 14x holding + " 1x holding fast + " 1x holding forth + " 1x holding preeminence + " 1x holding to + " 3x holes + " 1x holily + " 9x holiness + " 56x holy + " 1x holy One + " 1x holy [blessings] + " 2x holy [is] + " 1x holy [ones] + " 7x holy places + " 11x home + " 1x homes + " 1x homestead + " 6x hometown + " 2x homosexuals + " 4x honey + " 30x honor + " 1x honorable + " 1x honorably + " 3x honored + " 2x honors + " 45x hope + " 1x hopes + " 2x hoping + " 10x horns + " 3x horse + " 2x horsemen + " 6x horses + " 1x horses [were] + " 3x hospitable + " 1x hospitably + " 1x hospitality + " 2x host + " 1x hostile + " 4x hostility + " 3x hot + " 76x hour + " 3x hours + " 134x house + " 1x house [itself] + " 1x house members + " 2x house to house + " 16x household + " 3x households + " 8x houses + " 5x housetop + " 2x housetops + " 92x how + " 5x how great + " 1x how long + " 8x how many + " 2x how many things + " 18x how much + " 2x how often + " 737x however + " 1x however [are] + " 3x human + " 2x humble + " 3x humbling + " 3x humiliation + " 8x humility + " 1x hundreds + " 1x hunger + " 1x hungered + " 4x hungering + " 3x hungry + " 30x husband + " 10x husbands + " 1x hyacinthine + " 2x hymns + " 5x hypocrisy + " 12x hypocrites + " 1x hyssop + " 4x idle + " 2x idly + " 2x idol + " 5x idolaters + " 1x idolatries + " 3x idolatry + " 6x idols + " 493x if + " 1x if [in] + " 1x if [to those] + " 5x if indeed + " 1x if indeed [the] + " 5x ignorance + " 2x ignorant + " 1x illegitimate children + " 1x illumination + " 13x image + " 1x images + " 1x imagination + " 1x imitate + " 5x imitators + " 91x immediately + " 1x immediately [is] + " 1x immorality + " 1x immortal + " 7x immortality + " 2x immovable + " 1x impartial + " 1x impartially + " 1x impending + " 5x imperishable + " 1x implacable + " 1x implanted + " 1x implore + " 6x imploring + " 2x impossible + " 1x imposters + " 1x impostors + " 2x imprisoned + " 1x imprisoning + " 1x imprisonment + " 2x imprisonments + " 1x impulse + " 9x impurity + " 2320x in + " 1x in Ephesus + " 1x in God + " 1x in Greek + " 7x in Hebrew + " 1x in Him + " 2x in Jerusalem + " 1x in Jesus + " 1x in Latin + " 1x in Lycaonian + " 1x in Peter + " 1x in [his] soul + " 1x in [my] + " 1x in [the days of] + " 37x in [the] + " 2x in [the] Spirit + " 4x in [the] flesh + " 2x in [the] middle + " 1x in [the] midst + " 1x in [the] mire + " 1x in [the] shadow + " 1x in [the] sins + " 2x in [the] spirit + " 1x in [the] thought + " 1x in [the] word + " 1x in [their] + " 1x in [those] + " 1x in a bodily + " 1x in a circle + " 1x in a headcloth + " 1x in a linen cloth + " 3x in a loud + " 4x in a tongue + " 21x in a voice + " 1x in a word + " 1x in a yoke + " 1x in action + " 1x in addition + " 4x in all + " 3x in all things + " 1x in any way + " 3x in appearance + " 1x in between + " 1x in blood + " 1x in body + " 2x in bondage + " 1x in brotherly love + " 2x in chains + " 1x in clothes + " 2x in common + " 1x in craving + " 2x in death + " 1x in different + " 1x in diligence + " 1x in discourse + " 1x in dissension + " 1x in each + " 1x in endurance + " 5x in every + " 1x in every part + " 1x in every way + " 2x in face + " 3x in faith + " 1x in favor + " 1x in fellowship + " 1x in fire + " 1x in foolishness + " 2x in front + " 1x in glory + " 2x in good health + " 3x in heart + " 1x in heaven + " 1x in himself + " 1x in his own + " 2x in honor + " 1x in hope + " 1x in how large + " 1x in humility + " 1x in ink + " 2x in it + " 1x in journeyings + " 2x in knowledge + " 1x in labor + " 1x in letter + " 1x in light + " 1x in like + " 1x in linen cloths + " 2x in love + " 1x in luxury + " 1x in many ways + " 3x in me + " 3x in mind + " 1x in multitude + " 1x in my own + " 1x in myself + " 1x in need + " 1x in night + " 3x in no way + " 2x in nothing + " 1x in number + " 1x in oldness + " 3x in one + " 23x in order + " 5x in order for + " 10x in order that + " 2x in other + " 1x in part + " 8x in perils + " 1x in person + " 2x in place of + " 2x in prayer + " 1x in preaching the gospel + " 1x in presence + " 1x in pretext + " 1x in proper times + " 1x in psalms + " 1x in reference to + " 6x in regard to + " 1x in respect to + " 1x in return + " 3x in return for + " 1x in reveling + " 1x in season + " 1x in secret + " 1x in seeing + " 1x in sexual immorality + " 2x in signs + " 1x in sin + " 1x in something + " 1x in speech [I am] + " 8x in spirit + " 1x in splendor + " 1x in stature + " 1x in strength + " 1x in subjection + " 1x in supplications + " 1x in talk + " 6x in that + " 1x in that place + " 93x in the + " 1x in the Spirit + " 1x in the [things] + " 1x in the faith + " 1x in the heart + " 1x in the heavens + " 1x in the midst + " 1x in the midst of + " 3x in the morning + " 1x in the mouth + " 1x in the own + " 2x in the presence + " 2x in the presence of + " 2x in the same manner + " 2x in the same way + " 2x in the sight of + " 1x in the things + " 1x in the time + " 1x in the very act + " 2x in them + " 1x in themselves + " 1x in these + " 1x in things + " 1x in this + " 2x in this manner + " 5x in this way + " 1x in this world + " 1x in those things + " 1x in time + " 1x in time of need + " 1x in times + " 9x in tongues + " 1x in trespasses + " 1x in tribulation + " 2x in truth + " 1x in unbelief + " 1x in unrighteousness + " 9x in vain + " 2x in view of + " 1x in water + " 2x in what + " 1x in what manner + " 8x in which + " 2x in winter + " 1x in wonders + " 2x in word + " 1x in work + " 3x in you + " 1x in your + " 2x inasmuch as + " 5x incense + " 1x incited + " 2x including + " 1x incorruptibility + " 2x increase + " 1x increased + " 1x increases + " 3x increasing + " 1x incredible + " 1x incurring + " 1x indebted + " 205x indeed + " 1x indeed [are] + " 1x indescribable + " 1x indestructible + " 2x indignant + " 1x indignation + " 1x indispensable + " 1x indistinct + " 2x individual + " 3x individually + " 1x inexcusable + " 3x inexpressible + " 3x infants + " 2x inferior + " 3x infirmities + " 1x infirmity + " 2x inflicting + " 2x inhabited [world] + " 1x inhabited world + " 7x inhabiting + " 1x inherit + " 11x inheritance + " 1x inheriting + " 2x iniquities + " 1x iniquity + " 1x injury + " 1x injustice + " 2x ink + " 1x inn + " 3x inner + " 2x inner rooms + " 1x innkeeper + " 7x innocent + " 1x inquire + " 1x inquired exactly + " 3x inquiring + " 1x inquiring after + " 1x inquiry + " 1x insanity + " 4x inscription + " 6x inside + " 1x insight + " 1x insignificant + " 2x insolent + " 5x instead + " 1x instead of + " 1x institution + " 1x instruct [them] + " 1x instructed + " 1x instructed He + " 1x instructed in + " 2x instructing + " 6x instruction + " 2x instructions + " 1x instructors + " 3x insubordinate + " 2x insult + " 1x insults + " 4x insurrection + " 1x integrity + " 1x intelligence + " 2x intelligent + " 1x intelligible + " 2x intending + " 1x intensely + " 1x intent + " 1x intentions + " 1x intercessions + " 2x interest + " 2x interpretation + " 1x intestines + " 592x into + " 2x into [the] + " 2x into the + " 1x inventors + " 3x invisible + " 1x invisible qualities + " 1x invite + " 2x invited + " 1x invites + " 2x inward + " 2x inwardly + " 1x iota + " 1x iron + " 2x irrational + " 593x is + " 5x is He + " 1x is He able + " 1x is He about + " 1x is He served + " 1x is He speaking + " 1x is [he] + " 53x is able + " 1x is abounding + " 14x is about + " 1x is advanced + " 1x is alive + " 2x is alive again + " 2x is applied + " 4x is appointed + " 1x is arising + " 1x is ashamed of + " 1x is becoming + " 1x is being brought to decay + " 1x is being corrupted + " 1x is being filled up + " 2x is being poured out + " 1x is being proclaimed + " 1x is being removed + " 1x is being renewed + " 1x is belief + " 1x is beseeching + " 3x is betrayed + " 2x is betraying + " 1x is blasphemed + " 1x is blessed + " 1x is blowing + " 1x is boastful + " 3x is bound + " 1x is bound by his oath + " 1x is brought + " 1x is brought in + " 2x is brought to desolation + " 1x is building upon [it] + " 1x is built + " 21x is called + " 1x is cast out + " 8x is come + " 1x is come to pass + " 28x is coming + " 1x is coming to + " 1x is confession + " 1x is consumed + " 1x is corrupt + " 3x is cut down + " 4x is dead + " 2x is delivered + " 1x is delivered up + " 1x is delivering up + " 1x is dipping + " 4x is divided + " 3x is doing + " 1x is done + " 1x is done with + " 1x is drawn near + " 2x is dried up + " 1x is drunken + " 1x is easily provoked + " 1x is eating + " 1x is edified + " 1x is enacted + " 1x is encompassed by + " 1x is endangered + " 1x is entering + " 1x is envious + " 1x is fading + " 1x is fading away + " 1x is filthy + " 1x is fitting + " 1x is forgiven + " 2x is found + " 4x is fulfilled + " 2x is full + " 1x is gathered + " 4x is given + " 1x is giving + " 1x is gladdening + " 2x is glorified + " 1x is going down + " 1x is going forth + " 1x is gone by + " 2x is gone out + " 1x is grieved + " 1x is happening + " 3x is he + " 2x is he able + " 1x is heard + " 1x is himself concerned + " 1x is holding + " 1x is honored + " 2x is honoring + " 1x is hung + " 2x is hungry + " 1x is idle + " 1x is ignorant + " 1x is imputed + " 1x is inclined + " 1x is increasing + " 1x is increasing exceedingly + " 1x is insane + " 1x is interceding + " 21x is it + " 1x is it concern + " 1x is it concerning + " 1x is it judged + " 2x is it lawful + " 1x is it permitted + " 1x is it profitable + " 3x is judged + " 1x is judging + " 4x is justified + " 2x is kept + " 1x is kind + " 3x is known + " 3x is lacking + " 1x is laid up + " 1x is laid upon + " 1x is lawful + " 1x is led into sin + " 4x is left + " 2x is like + " 1x is living + " 1x is lodged + " 1x is lying + " 1x is made visible + " 1x is mocked + " 1x is more valuable + " 1x is named + " 1x is nearly over + " 1x is necessary + " 1x is opposed to + " 1x is overflowing + " 1x is passing + " 1x is passing along + " 2x is passing away + " 2x is passing by + " 2x is patient + " 1x is perfected + " 1x is perishing + " 1x is persuaded + " 1x is possessed by a demon + " 1x is possible + " 1x is poured out + " 1x is powerful + " 1x is practicing + " 1x is preached + " 1x is preaching + " 1x is preaching a gospel + " 2x is present + " 2x is present with + " 3x is proclaimed + " 1x is producing + " 1x is profitable + " 1x is profited + " 1x is proper + " 1x is puffed up + " 1x is put + " 1x is quenched + " 1x is raised + " 2x is reckoned + " 2x is red + " 1x is removed + " 1x is reported + " 1x is required + " 1x is resisting + " 1x is restraining + " 2x is revealed + " 1x is rich + " 4x is risen + " 1x is sanctified + " 1x is saved + " 2x is saying + " 1x is seeking + " 1x is set + " 1x is sick + " 1x is sinning + " 1x is sitting [One] + " 1x is sold + " 2x is sown + " 1x is speaking + " 1x is spoken + " 1x is spread abroad + " 1x is standing + " 1x is subdued + " 1x is subjected + " 2x is taken + " 1x is taken away + " 1x is taken by violence + " 1x is taking away + " 1x is tempted + " 3x is there + " 1x is there care + " 1x is thought + " 3x is thrown + " 1x is to be judged + " 1x is to be kept + " 1x is to be killed + " 1x is to be multiplied + " 1x is to be separated + " 2x is to say + " 1x is to send away + " 1x is treating + " 1x is under bondage + " 1x is very bold + " 1x is walking + " 1x is wasting + " 2x is weak + " 1x is well pleased + " 1x is willing + " 1x is withering away + " 3x is working + " 1x is working out + " 8x island + " 232x it + " 2x it [is] + " 1x it abide + " 1x it availed + " 2x it be + " 1x it be kindled + " 2x it bears + " 6x it became + " 2x it becomes + " 1x it behooved + " 1x it behooved [Him] + " 1x it behooved [you] + " 1x it behooved you + " 44x it behooves + " 2x it behooves [me] + " 1x it behooves [one] + " 1x it behooves [us] + " 3x it behooves [you] + " 1x it being + " 1x it boasts + " 2x it came + " 1x it came down + " 1x it came forth + " 3x it came out + " 38x it came to pass + " 1x it came to pass that + " 1x it casts + " 1x it causes + " 1x it comes + " 3x it comes to pass + " 1x it deceives + " 1x it departs + " 1x it did rain + " 1x it dies + " 1x it does say + " 1x it does see + " 1x it enters + " 1x it exercises + " 1x it fails + " 4x it fell + " 1x it fell to him by lot + " 1x it filled + " 2x it finds [it] + " 3x it goes + " 1x it grew + " 1x it grows up + " 3x it had + " 1x it had become + " 1x it had been founded + " 1x it had been given + " 1x it had seized + " 2x it happened + " 2x it happened that + " 2x it happens + " 1x it has + " 1x it has always been + " 1x it has been appointed + " 1x it has been delivered + " 1x it has been done + " 2x it has been given + " 1x it has been given [up] + " 3x it has been granted + " 1x it has been heard + " 2x it has been prepared + " 1x it has been revealed + " 2x it has been said + " 2x it has been sown + " 44x it has been written + " 1x it has hated + " 1x it has heard + " 1x it has obtained + " 1x it has taught + " 1x it hates + " 1x it honors + " 108x it is + " 1x it is [for] + " 1x it is about + " 1x it is allowed + " 1x it is apportioned + " 4x it is better + " 1x it is burned + " 1x it is called + " 1x it is contained + " 1x it is defiled + " 1x it is enough + " 1x it is fit + " 1x it is fulfilled + " 1x it is grown + " 1x it is in force + " 13x it is lawful + " 7x it is necessary + " 4x it is necessary for + " 1x it is needful + " 1x it is permitted + " 1x it is permitted [me] + " 1x it is possible [for] + " 1x it is potent + " 3x it is profitable + " 4x it is raised + " 1x it is required + " 1x it is revealed + " 1x it is said + " 1x it is sanctified + " 1x it is spoken against + " 1x it is subject + " 1x it is summed up + " 1x it is testified + " 1x it is tilled + " 2x it is written + " 1x it keeps account + " 1x it kindles + " 1x it knew + " 1x it lawful + " 1x it left + " 1x it mattered + " 3x it may be + " 1x it may be read + " 1x it may be said + " 1x it may bear + " 1x it may give + " 1x it may impart relief + " 1x it might be + " 4x it might be fulfilled + " 1x it might be made manifest + " 2x it might be put + " 1x it might be shown to be + " 1x it might come upon + " 1x it might depart + " 1x it might destroy + " 1x it might fall + " 1x it might spread + " 1x it might strike + " 1x it might suffice + " 2x it must + " 1x it opened + " 1x it ought + " 2x it passes + " 2x it produced + " 1x it produces + " 2x it puts forth + " 1x it rained + " 1x it receives + " 2x it remained + " 1x it remains [for] + " 1x it restrained + " 7x it says + " 1x it seeks after + " 3x it seemed good + " 1x it seems + " 1x it seizes + " 1x it shall + " 1x it shall be + " 1x it shall be stoned + " 1x it shall fall + " 1x it shall have come to pass + " 1x it shines + " 1x it should + " 1x it should be + " 1x it should be accomplished + " 1x it should be fulfilled + " 1x it should be made manifest + " 1x it should bear + " 1x it should become + " 1x it should cause + " 1x it should come + " 1x it should die + " 1x it should give + " 1x it speaks + " 2x it sprang up + " 1x it stood + " 1x it throws down + " 1x it throws into convulsions + " 23x it was + " 1x it was [the] + " 1x it was added + " 1x it was adorned + " 1x it was cast + " 1x it was confirmed + " 1x it was counted + " 2x it was credited + " 1x it was filled + " 1x it was fitting + " 1x it was given + " 1x it was granted + " 1x it was heard + " 3x it was necessary for + " 1x it was proclaimed + " 2x it was reckoned + " 1x it was restored + " 1x it was revealed + " 12x it was said + " 1x it was scorched + " 1x it was speaking + " 1x it was trampled upon + " 1x it was weak + " 2x it was written + " 1x it were + " 1x it were necessary for + " 10x it will be + " 2x it will be done + " 4x it will be forgiven + " 7x it will be given + " 1x it will be measured + " 2x it will be measured again + " 4x it will be opened + " 1x it will be overthrown + " 1x it will be recompensed + " 1x it will be required + " 1x it will be rooted up + " 1x it will be solved + " 2x it will be told + " 2x it will come to pass + " 1x it will grind into powder + " 1x it will grind to powder + " 1x it will make bitter + " 1x it will move + " 1x it will pass away + " 1x it will return + " 1x it wishes + " 1x it withered + " 1x it withered away + " 1x it works + " 1x it would be + " 1x it would have been + " 1x it would have obeyed + " 1x it would have remained + " 1x it yielded + " 1x it yields + " 1x itinerant + " 1x its + " 1x its own + " 17x itself + " 1x jacinth + " 3x jailer + " 1x jailers + " 1x jars + " 3x jasper + " 6x jealousy + " 1x join yourself + " 1x joined themselves + " 1x joining in the work + " 1x joining together + " 1x joins to help + " 4x joint-heirs + " 1x joint-partakers + " 1x joints + " 5x journey + " 4x journeying + " 49x joy + " 19x judge + " 2x judge you + " 1x judgement + " 8x judges + " 1x judges [with] + " 14x judging + " 44x judgment + " 1x judgment [as to] + " 1x judgment [was] + " 9x judgment seat + " 3x judgments + " 1x jurisdiction + " 5x just + " 59x just as + " 1x just now + " 1x just outside + " 6x justice + " 3x justification + " 1x justified + " 1x justifies + " 4x justifying + " 2x justly + " 10x keep + " 2x keep [it] + " 1x keep yourselves + " 1x keepers at home + " 15x keeping + " 1x keeping guard + " 1x keeping guard over + " 1x keeping it + " 4x keeps + " 1x keeps [them] + " 1x kept [it] growing + " 1x kept adding + " 1x kept asking + " 1x kept confounding + " 1x kept crying out + " 1x kept giving [them] + " 1x kept instructing + " 1x kept persuading + " 1x kept railing at + " 2x kept saying + " 1x kept striking [Him] + " 1x kept telling + " 1x kept urging + " 4x key + " 2x keys + " 3x kill + " 1x kill [it] + " 4x killed + " 1x killed [him] + " 1x killed [them] + " 8x killing + " 1x kills + " 5x kind + " 11x kindness + " 2x kindred + " 2x kinds + " 31x king + " 148x kingdom + " 3x kingdoms + " 24x kings + " 1x kingship + " 1x king’s + " 2x kinsman + " 3x kinsmen + " 1x kiss + " 2x kissed + " 1x kissing + " 3x knee + " 1x kneeling down + " 1x kneeling down to + " 1x kneeling down to Him + " 8x knees + " 22x knew + " 1x knew I + " 1x knew you + " 3x knock + " 3x knocking + " 52x know + " 2x know You + " 16x know you + " 1x knower of the hearts + " 56x knowing + " 1x knowing [them] + " 1x knowing [this] beforehand + " 34x knowledge + " 13x known + " 28x knows + " 1x knows [I do] + " 1x kodranten + " 1x koum + " 8x labor + " 1x labor pains + " 1x labored together + " 1x laboring + " 4x labors + " 1x lack I + " 1x lack of self-control + " 4x lacking + " 1x lacks + " 2x lady + " 1x lagging + " 9x laid + " 1x laid [it] + " 1x laid [them] up + " 1x laid aside + " 1x laid bare + " 1x laid before + " 1x laid down + " 2x laid hold + " 1x laid the foundation + " 1x laid up + " 11x lake + " 2x lambs + " 13x lame + " 1x lamentation + " 1x lamenting for + " 6x lamp + " 8x lamps + " 4x lampstand + " 6x lampstands + " 35x land + " 1x landed + " 4x lands + " 1x lanes + " 6x language + " 1x lanterns + " 1x lap + " 8x large + " 36x last + " 1x last [state] + " 3x late + " 1x later + " 1x later on + " 1x latter + " 1x latter [rains] + " 1x laughing + " 1x laughter + " 105x law + " 2x lawful + " 2x lawfully + " 1x lawgiving + " 3x lawless + " 1x lawless [one] + " 1x lawless acts + " 1x lawless deeds + " 10x lawlessness + " 1x lawsuits + " 1x lawyer + " 5x lawyers + " 2x lay + " 1x lay [them] + " 2x lay down + " 1x laying + " 1x laying before + " 2x laying on + " 1x lays aside + " 1x lays down + " 2x lazy + " 2x lead + " 1x lead [Him] away + " 1x leaders + " 11x leading + " 1x leading [men] + " 1x leading astray + " 1x leading in triumph + " 1x leads + " 1x leads out + " 1x leap for joy + " 2x leaped + " 1x leaping + " 1x leaping up + " 4x learn + " 2x learned + " 2x learning + " 8x least + " 4x leave + " 1x leave behind + " 11x leaven + " 2x leavens + " 9x leaves + " 1x leaving + " 1x lecture hall + " 3x led + " 1x led [Him] + " 1x led [Him] away + " 2x led away + " 1x led out + " 13x left + " 1x left [hand] + " 1x left remaining + " 1x legion + " 1x legions + " 3x legs + " 2x lema + " 3x lend + " 3x length + " 2x leper + " 4x lepers + " 3x leprosy + " 1x leprous + " 2x lepta + " 1x lepton + " 2x less + " 1x less anxious + " 1x less honorable + " 1x less than + " 50x lest + " 1x lest [there be] + " 1x let Him be circumcised + " 1x let Him descend + " 1x let Him save + " 1x let [him] go + " 1x let [that] + " 1x let abide + " 2x let alone + " 3x let be + " 1x let be burdened + " 1x let be counted worthy + " 1x let be darkened + " 3x let be done + " 1x let be enrolled + " 1x let be fully assured + " 1x let be hidden from + " 1x let be known + " 1x let be made known + " 1x let be named + " 1x let be removed + " 1x let be silent + " 1x let be spoken of as evil + " 1x let be subject + " 2x let be troubled + " 1x let be turned + " 1x let boast + " 1x let come + " 2x let deceive + " 2x let despise + " 1x let discern + " 1x let disqualify + " 1x let down + " 1x let dwell + " 1x let fulfill + " 1x let give + " 1x let go forth + " 3x let have + " 1x let her be shorn + " 1x let her cover her head + " 1x let her divorce + " 1x let her impart relief + " 1x let her remain + " 2x let him abide + " 1x let him ask + " 5x let him be + " 1x let him be ashamed + " 1x let him be filthy + " 1x let him be holy + " 1x let him be ignored + " 1x let him be silent + " 1x let him be uncircumcised + " 1x let him be unrighteous + " 1x let him become + " 2x let him boast + " 1x let him cast + " 2x let him come + " 3x let him come down + " 1x let him count + " 3x let him deny + " 1x let him despise + " 1x let him divorce + " 3x let him do + " 1x let him drink + " 3x let him eat + " 3x let him follow + " 1x let him give + " 1x let him glorify + " 15x let him hear + " 1x let him impart + " 1x let him judge + " 1x let him keep + " 1x let him know + " 1x let him practice + " 1x let him pray + " 1x let him pursue + " 1x let him receive [it] + " 1x let him reckon + " 1x let him recognize + " 3x let him return + " 1x let him say + " 1x let him sell + " 1x let him separate himself + " 1x let him show + " 1x let him speak + " 1x let him steal + " 1x let him take + " 1x let him take [it] + " 1x let him take heed + " 2x let him take up + " 1x let him toil + " 2x let him understand + " 1x let him walk + " 1x let interpret + " 1x let it abide + " 2x let it be + " 1x let it be a care + " 1x let it fear + " 1x let judge + " 2x let know + " 1x let lead astray + " 1x let learn + " 1x let love + " 1x let mind be + " 1x let pass + " 1x let please + " 1x let put + " 1x let reckon + " 1x let regard + " 1x let reign + " 1x let return + " 1x let rule + " 1x let say + " 1x let seek + " 2x let separate + " 1x let set + " 1x let shine + " 2x let speak + " 1x let suffer + " 1x let suppose + " 1x let take + " 1x let take heed + " 2x let them accuse + " 1x let them ask + " 1x let them be silent + " 1x let them be tested + " 1x let them bring out + " 1x let them commit + " 1x let them depart out + " 1x let them despise [them] + " 1x let them enter + " 1x let them esteem + " 3x let them flee + " 1x let them hear + " 1x let them learn + " 2x let them marry + " 1x let them pray + " 1x let them say + " 1x let them serve + " 1x let them serve [them] + " 2x let there be + " 1x let us be merry + " 1x let us cast lots + " 1x let us drink + " 4x let us go + " 3x let us kill + " 1x let us look after + " 2x let us make + " 2x let us see + " 1x let us tear up + " 1x let us warn + " 1x let worship + " 15x letter + " 11x letters + " 1x level + " 4x liable + " 1x liar + " 3x liars + " 3x lie + " 3x lies + " 131x life + " 1x life-giving + " 3x lifeboat + " 1x lifeless things + " 1x lifelessness + " 2x lifespan + " 1x lifetime + " 3x lift up + " 1x lifted + " 6x lifted up + " 1x lifting itself up + " 1x lifting up + " 1x ligament + " 1x ligaments + " 46x light + " 1x light [is] + " 2x lightness + " 4x lightning + " 3x lights + " 102x like + " 1x like [the] angels + " 1x like [things] + " 1x like [those] + " 1x like a Gentile + " 1x like a Jew + " 1x like that + " 5x like this + " 1x like-minded + " 6x likeness + " 36x likewise + " 2x lilies + " 1x linen + " 2x linen cloth + " 3x linen cloths + " 1x linen strips + " 5x lips + " 2x listen + " 1x listen to + " 1x listen you + " 1x listening + " 1x listening for + " 3x listens to + " 1x litras + " 11x little + " 1x little [piece] + " 1x little [while] + " 3x little child + " 12x little children + " 2x little daughter + " 1x little faith + " 5x little ones + " 3x little scroll + " 4x live + " 1x lived + " 2x lived again + " 1x lived in luxury + " 1x lived in self-indulgence + " 2x livelihood + " 9x lives + " 1x livestock + " 43x living + " 1x living at peace + " 7x living creature + " 13x living creatures + " 1x living in self-indulgence + " 1x load + " 3x loaf + " 29x loaves + " 1x loaves of bread + " 1x locked up + " 3x locusts + " 1x locusts [was] + " 2x lodges + " 1x lodging + " 1x lodging in the fields + " 2x loin + " 3x loins + " 4x long + " 5x long ago + " 2x long as + " 1x long hair + " 1x long robes + " 1x long-lived + " 1x longed + " 1x longed for + " 1x longer + " 4x longing + " 1x longing after + " 1x longsuffering + " 2x look + " 1x look up + " 1x look you at + " 1x looked at + " 1x looked up + " 5x looking + " 1x looking [on them] + " 1x looking for + " 1x looking intently + " 2x looking on + " 1x looking sad + " 1x looking upon + " 2x loosed + " 1x lord + " 1x lords + " 2x loses + " 5x loss + " 1x lost + " 2x lot + " 4x lots + " 34x loud + " 1x loudly + " 111x love + " 1x love [be] + " 1x love [is] + " 1x love feasts + " 1x love of mankind + " 1x love of money + " 2x love you + " 15x loved + " 1x lovely + " 1x lovers of God + " 1x lovers of [their] husbands + " 2x lovers of money + " 1x lovers of pleasure + " 1x lovers of self + " 10x loves + " 30x loving + " 1x loving [their] children + " 1x loving as brothers + " 1x loving to be first + " 1x low-born + " 1x lower + " 1x lowly + " 1x lukewarm + " 5x lump + " 4x lusts + " 11x lying + " 2x lying [there] + " 1x lying away + " 2x lying before + " 1x lying on [it] + " 1x lying on [us] + " 1x lying sick + " 12x made + " 1x made [us] alive with + " 1x made a presentation + " 1x made a representation + " 1x made a sign + " 3x made by hands + " 1x made eunuchs of + " 1x made his defense + " 1x made mention + " 2x made of dust + " 1x made of no effect + " 1x made sit down + " 1x made white + " 1x made with hands + " 1x made without hands + " 1x madness + " 2x magic arts + " 2x magician + " 3x magistrates + " 1x magnificent + " 1x magnifying + " 1x maid-servants + " 4x majesty + " 2x majority + " 13x make + " 1x make You + " 1x make [it as] secure + " 1x make [you] + " 1x make a report + " 1x make manifest + " 1x make merry + " 1x make the bed + " 1x make you commotion + " 1x makes + " 1x makes a difference + " 1x makes different + " 1x makes for itself + " 1x makes intercession + " 1x makes war + " 12x making + " 1x making [them] + " 1x making a commotion + " 1x making captive + " 1x making good cheer + " 1x making manifest + " 1x making melody + " 1x making signs + " 1x making void + " 4x male + " 1x male [child] + " 3x males + " 6x malice + " 1x maliciousness + " 173x man + " 1x man [is] + " 2x management + " 3x manager + " 2x managing + " 1x manger + " 8x manifest + " 1x manifestation + " 1x manifold + " 1x manifold more + " 1x mankind + " 4x manna + " 2x manner + " 1x manner [as] + " 4x manner of life + " 1x mansions + " 2x manure + " 175x many + " 1x many [blows] + " 1x many [of you] + " 1x many [times] + " 16x many things + " 1x many times + " 1x many words + " 6x mark + " 1x market-loungers + " 3x marketplace + " 5x marketplaces + " 1x markets + " 1x marks + " 3x marriage + " 1x marriage [be] + " 1x marriage bed + " 1x married + " 1x marrows + " 2x marry + " 5x marrying + " 1x marvel at + " 10x marveled + " 2x marveled at + " 2x marveling + " 3x marvelous + " 1x masquerade + " 1x masquerades + " 45x master + " 1x master builder + " 3x master of the feast + " 8x master of the house + " 13x masters + " 10x mat + " 2x material things + " 2x mats + " 9x matter + " 2x matters + " 2x mature + " 1x maturity + " 1x may He encourage + " 1x may He give + " 1x may He strengthen [them] + " 3x may abound + " 19x may be + " 1x may be ashamed + " 1x may be ashamed of + " 1x may be discovered + " 2x may be encouraged + " 1x may be exhorted + " 1x may be exposed + " 1x may be filled + " 4x may be fulfilled + " 1x may be full + " 1x may be given + " 5x may be glorified + " 1x may be hardened + " 1x may be lost + " 1x may be manifest + " 1x may be manifested + " 1x may be multiplied + " 1x may be preserved + " 2x may be revealed + " 2x may be saved + " 1x may be stopped + " 1x may be strengthened + " 1x may be swallowed up + " 1x may become + " 1x may begin + " 2x may believe + " 2x may boast + " 3x may come + " 1x may come in + " 1x may desire + " 2x may direct + " 1x may do + " 3x may drink + " 2x may eat + " 1x may equip + " 1x may fail + " 1x may fill + " 1x may find + " 3x may give + " 1x may glorify + " 4x may have + " 2x may have [it] + " 1x may have arrived + " 1x may have become + " 1x may have been ashamed of + " 1x may have mercy shown [them] + " 1x may have profit + " 1x may honor + " 1x may increase + " 16x may it be + " 1x may it be charged + " 1x may keep + " 3x may know + " 1x may learn + " 1x may live + " 1x may make to increase + " 1x may marvel + " 1x may obtain + " 1x may open + " 1x may read + " 1x may receive + " 1x may receive back + " 1x may rejoice + " 1x may rest + " 1x may sanctify + " 3x may see + " 1x may seek + " 1x may seek out + " 1x may sit + " 1x may spread quickly + " 1x may take + " 1x may take care + " 1x may tempt + " 1x may they see + " 1x may they understand + " 1x may understand + " 1x may worship + " 2x may you enter + " 269x me + " 1x me [there is] + " 1x me also + " 1x meal + " 1x meaningless discourse + " 5x means + " 1x meantime + " 9x measure + " 1x measure of food + " 2x measures + " 1x measuring + " 2x meat + " 1x mediator + " 1x meek + " 1x meekness + " 5x meet + " 1x meeting [him] + " 5x member + " 27x members + " 182x men + " 2x men-pleasers + " 1x men-servants + " 1x mending + " 4x mention + " 4x merchants + " 1x mercies + " 4x merciful + " 20x mercy + " 1x mercy seat + " 8x message + " 8x messenger + " 3x messengers + " 10x met + " 1x met [Him] + " 1x metretae + " 1x mid + " 3x mid-heaven + " 2x midnight + " 16x midst + " 5x might + " 1x might abound + " 1x might agree + " 2x might appear + " 1x might appoint + " 15x might be + " 1x might be annulled + " 2x might be broken + " 1x might be charged + " 1x might be corrupted + " 1x might be daring + " 1x might be defiled + " 1x might be enriched + " 1x might be exalted + " 1x might be found + " 10x might be fulfilled + " 2x might be given + " 1x might be grafted in + " 1x might be made manifest + " 1x might be opened + " 1x might be prepared + " 1x might be saved + " 1x might be taken + " 1x might be weak + " 7x might become + " 2x might believe + " 1x might boast + " 1x might cause to stumble + " 1x might choose + " 1x might cleanse + " 1x might close up + " 4x might come + " 1x might come about + " 1x might come in + " 1x might continue + " 1x might delude + " 3x might desire + " 1x might destroy + " 1x might display + " 1x might do + " 2x might eat + " 1x might envelop + " 1x might find + " 1x might find Him + " 1x might forgive + " 1x might give to drink + " 1x might guard + " 4x might have + " 1x might have been + " 1x might have been fulfilled + " 1x might have collected + " 1x might have come + " 1x might have come down + " 1x might heed + " 1x might kill + " 1x might light + " 2x might lose + " 1x might love + " 1x might overtake + " 1x might pass + " 1x might present + " 1x might purify + " 4x might receive + " 1x might reign + " 1x might reign with + " 1x might resolve + " 1x might say + " 1x might see + " 1x might set free + " 1x might sit + " 1x might sow + " 1x might stand + " 1x might take place + " 1x might wait upon + " 1x might wander + " 2x mightier + " 9x mighty + " 1x mighty [is the] + " 1x mile + " 2x milk + " 1x mill + " 4x mina + " 4x minas + " 31x mind + " 1x mind will you have + " 4x minding + " 8x minds + " 1x mindset + " 2x mine + " 2x mingled + " 1x ministered to + " 5x ministering + " 2x ministers + " 18x ministry + " 1x minster + " 2x mint + " 1x minus + " 13x miracles + " 3x miraculous powers + " 1x miserable + " 2x miserably + " 1x miseries + " 3x misery + " 2x mislead + " 3x misleading + " 1x mission + " 1x mist + " 1x mistreated + " 2x mistreating + " 1x mists + " 1x mix + " 3x mocking + " 1x modesty + " 1x moisture + " 1x momentary + " 15x money + " 2x money bag + " 4x money changers + " 4x month + " 13x months + " 1x monuments + " 8x moon + " 1x morals + " 58x more + " 1x more [is] + " 4x more abundant + " 15x more abundantly + " 1x more accurately + " 2x more and more + " 1x more certain + " 3x more earnestly + " 2x more evil + " 4x more excellent + " 1x more important + " 1x more minas + " 1x more noble + " 1x more perfect + " 1x more precious + " 1x more precisely + " 1x more quickly + " 1x more shrewd + " 9x more than + " 1x more to be pitied + " 4x more tolerable + " 1x more will be added + " 1x moreover + " 5x morning + " 4x morsel + " 6x mortal + " 6x most + " 2x most eminent + " 4x most excellent + " 1x most gladly + " 1x most holy + " 2x most precious + " 3x moth + " 1x moth-eaten + " 74x mother + " 4x mother-in-law + " 2x mothers + " 1x motives + " 2x mount + " 26x mountain + " 12x mountains + " 1x mounted + " 3x mourn + " 9x mourning + " 1x mourning for + " 59x mouth + " 4x mouths + " 2x move + " 1x moving + " 1x moving along + " 56x much + " 1x much more + " 1x mulberry tree + " 1x multiplied + " 1x multiplying + " 21x multitude + " 2x multitudes + " 5x murder + " 1x murderer + " 4x murderers + " 1x murderers of mothers + " 3x murders + " 2x murmuring + " 1x murmurings + " 1x music + " 1x musicians + " 1x must + " 1x must be put + " 2x must end + " 1x must we do + " 10x mute + " 3x mute [man] + " 1x mutual agreement + " 42x my + " 4x my own + " 5x myriads + " 2x myrrh + " 22x myself + " 1x myself also + " 4x mysteries + " 18x mystery + " 2x myths + " 2x nails + " 1x naive + " 11x naked + " 3x nakedness + " 152x name + " 2x name [is] + " 4x name [was] + " 33x named + " 9x names + " 1x names [are] + " 1x naming + " 1x narrated + " 2x narrow + " 27x nation + " 33x nations + " 1x natives + " 6x natural + " 1x naturally + " 7x nature + " 1x nature [are] + " 27x near + " 1x near [is] + " 1x near to + " 1x nearer + " 1x nearly + " 5x necessary + " 1x necessary [it is] + " 1x necessary things + " 7x necessity + " 7x neck + " 40x need + " 1x need [of] + " 1x need [was there] + " 1x need of + " 1x needful things + " 1x needle + " 6x needs + " 16x neighbor + " 1x neighboring + " 5x neighbors + " 57x neither + " 1x neither [by] + " 1x neither [can] + " 2x neither [is] + " 2x nests + " 4x net + " 8x nets + " 37x never + " 1x nevertheless + " 43x new + " 1x newborn + " 2x newness + " 3x news + " 3x next + " 4x next [day] + " 19x next day + " 1x next day [is] + " 45x night + " 3x nights + " 4x nine + " 4x ninety + " 8x ninth + " 1x ninth hour + " 123x no + " 1x no [one] + " 1x no [other] + " 44x no longer + " 1x no longer [is there] + " 15x no more + " 106x no one + " 22x none + " 1x noon + " 195x nor + " 1x nor [anything] + " 3x nor even + " 1x north + " 2042x not + " 1x not [for] + " 1x not [just] + " 1x not [of an] + " 1x not [only] + " 1x not [until] + " 3x not any + " 1x not ashamed + " 2x not at all + " 29x not even + " 1x not having known + " 2x not knowing + " 1x not loving money + " 2x not made with hands + " 1x not obeying + " 11x not one + " 1x not so + " 1x not to be shaken + " 21x not yet + " 1x not yet [given] + " 1x not yet [is] + " 1x notable + " 106x nothing + " 2x nothing [is] + " 1x nothing ever + " 2x notice + " 983x now + " 1x now [the time] + " 1x now [though] + " 3x now on + " 17x number + " 2x number [is] + " 2x numbered + " 1x numerous times + " 1x nursed + " 1x nursing + " 2x nursing infants + " 4x oath + " 3x oaths + " 12x obedience + " 3x obedient + " 7x obey + " 2x obeyed + " 3x obeying + " 1x object of worship + " 1x objects of worship + " 1x obscurity + " 2x observe + " 1x observing + " 1x obstacles + " 1x obtained + " 1x obtained [it] + " 1x obtaining + " 3x occasion + " 2x occurred + " 408x of + " 3x of Aaron + " 2x of Abel + " 1x of Abijah + " 1x of Abilene + " 23x of Abraham + " 2x of Achaia + " 2x of Adam + " 1x of Addi + " 1x of Admin + " 1x of Adramyttium + " 1x of Alexander + " 2x of Alexandria + " 4x of Alphaeus + " 1x of Amminadab + " 1x of Amos + " 1x of Andrew + " 1x of Annas + " 1x of Antioch + " 1x of Antipas + " 2x of Apollos + " 1x of Appius + " 1x of Aristobulus + " 1x of Arni + " 1x of Arphaxad + " 1x of Artemis + " 2x of Asher + " 3x of Asia + " 1x of Augustus + " 3x of Balaam + " 2x of Barnabas + " 4x of Benjamin + " 1x of Berekiah + " 2x of Blood + " 1x of Boaz + " 6x of Caesar + " 2x of Caesarea + " 1x of Caiaphas + " 1x of Cain + " 2x of Cainan + " 1x of Canaan + " 1x of Candace + " 1x of Cephas + " 1x of Chaldeans + " 1x of Chloe + " 95x of Christ + " 1x of Chuza + " 2x of Cilicia + " 1x of Clopas + " 1x of Cosam + " 1x of Crete + " 1x of Cyprus + " 4x of Cyrene + " 1x of Dalmanutha + " 32x of David + " 1x of Derbe + " 9x of Egypt + " 1x of Eliakim + " 1x of Eliezer + " 2x of Elijah + " 1x of Elisha + " 1x of Elmadam + " 1x of Enoch + " 1x of Enosh + " 1x of Er + " 1x of Esli + " 1x of Gad + " 2x of Galatia + " 19x of Galilee + " 1x of Gamaliel + " 1x of Gennesaret + " 2x of Gentiles + " 493x of God + " 1x of God [is] + " 1x of God [there are] + " 1x of God’s + " 1x of Gomorrah + " 1x of Greek + " 1x of Hamor + " 1x of Heber + " 1x of Heli + " 10x of Herod + " 1x of Herodias + " 1x of Hezron + " 571x of Him + " 9x of Himself + " 6x of His + " 1x of Holies + " 2x of Hosts + " 6x of Isaac + " 1x of Isaachar + " 3x of Isaiah + " 38x of Israel + " 1x of Ituraea + " 8x of Jacob + " 10x of James + " 1x of Jannai + " 1x of Jared + " 1x of Jason + " 1x of Jericho + " 5x of Jerusalem + " 3x of Jesse + " 66x of Jesus + " 2x of Jewish + " 1x of Jews + " 1x of Joannen + " 1x of Job + " 1x of Joda + " 22x of John + " 5x of Jonah + " 1x of Jonam + " 2x of Joppa + " 1x of Jorim + " 1x of Josech + " 11x of Joseph + " 1x of Joshua + " 8x of Judah + " 3x of Judas + " 17x of Judea + " 1x of Kidron + " 1x of Kings + " 1x of Kish + " 1x of Korah + " 1x of Lamech + " 1x of Lasea + " 4x of Levi + " 1x of Libya + " 1x of Lord + " 1x of Lords + " 2x of Lot + " 1x of Lycaonia + " 1x of Lycia + " 1x of Maath + " 3x of Macedonia + " 1x of Magadan + " 1x of Mahalalel + " 78x of Man + " 1x of Manasseh + " 4x of Mary + " 1x of Mattatha + " 2x of Mattathias + " 2x of Matthat + " 273x of Me + " 2x of Melchi + " 6x of Melchizedek + " 1x of Melea + " 1x of Menna + " 1x of Methuselah + " 1x of Midian + " 1x of Mine + " 1x of Moloch + " 13x of Moses + " 1x of Myself + " 1x of Naggai + " 1x of Nahor + " 1x of Nahshon + " 1x of Nahum + " 2x of Naphtali + " 1x of Narcissus + " 1x of Nathan + " 4x of Nazareth + " 1x of Neri + " 2x of Nineveh + " 4x of Noah + " 1x of Obed + " 9x of Olives + " 2x of Onesiphorus + " 1x of Pamphylia + " 12x of Paul + " 1x of Peleg + " 2x of Pentecost + " 1x of Perez + " 7x of Peter + " 1x of Phanuel + " 2x of Pharaoh + " 1x of Pharisees + " 3x of Philip + " 1x of Pilate + " 1x of Pisidia + " 2x of Pontus + " 1x of Power + " 1x of Preparation + " 2x of Psalms + " 1x of Publius + " 1x of Python + " 1x of Reu + " 1x of Reuben + " 1x of Rhesa + " 1x of Sadducees + " 1x of Sala + " 2x of Salem + " 4x of Samaria + " 1x of Sarah + " 6x of Satan + " 1x of Satan [is] + " 1x of Sceva + " 1x of Scripture + " 1x of Semein + " 1x of Serug + " 1x of Seth + " 1x of Shealtiel + " 1x of Shelah + " 1x of Shem + " 1x of Sidon + " 1x of Siloam + " 2x of Simeon + " 12x of Simon + " 3x of Sodom + " 4x of Solomon + " 3x of Stephanas + " 1x of Stephen + " 1x of Syria + " 2x of Tarsus + " 1x of Terah + " 1x of Them + " 1x of Thessalonica + " 1x of Thyatira + " 2x of Tiberias + " 1x of Tiberius + " 1x of Timaeus + " 3x of Titus + " 1x of Trachonitis + " 1x of Tyrannus + " 4x of Tyre + " 1x of Uriah + " 115x of You + " 1x of Your + " 8x of Zebedee + " 3x of Zebulun + " 4x of Zechariah + " 1x of Zerubbabel + " 1x of Zeus + " 2x of Zion + " 1x of [His] + " 1x of [his] + " 2x of [its] + " 1x of [one] blind + " 1x of [one] dead + " 4x of [our] + " 7x of [the] + " 1x of [the] Decapolis + " 1x of [the] Dispersion + " 1x of [the] Egyptians + " 3x of [the] Ephesians + " 1x of [the] Ethiopians + " 8x of [the] Gentiles + " 1x of [the] Jews + " 1x of [the] Laodiceans + " 4x of [the] Law + " 60x of [the] Lord + " 2x of [the] Lord [is] + " 1x of [the] Lord’s + " 3x of [the] Most High + " 1x of [the] Samaritans + " 1x of [the] South + " 17x of [the] Spirit + " 1x of [the] Thessalonians + " 1x of [the] angel + " 1x of [the] ark + " 2x of [the] blind + " 1x of [the] blood + " 1x of [the] body + " 1x of [the] book + " 1x of [the] brothers + " 1x of [the] calling + " 1x of [the] churches + " 1x of [the] circumcision + " 1x of [the] city + " 1x of [the] congregation + " 3x of [the] corner + " 1x of [the] covenant + " 1x of [the] cross + " 1x of [the] daughter + " 1x of [the] day + " 11x of [the] dead + " 1x of [the] devil + " 1x of [the] divine + " 1x of [the] elect + " 1x of [the] family + " 1x of [the] fathers + " 1x of [the] fellow workers + " 1x of [the] filth + " 1x of [the] firstborn + " 2x of [the] flesh + " 1x of [the] foolish + " 1x of [the] genealogy + " 3x of [the] glory + " 1x of [the] grace + " 1x of [the] great + " 1x of [the] heart + " 1x of [the] host + " 2x of [the] house + " 1x of [the] just + " 3x of [the] law + " 1x of [the] law [are] + " 2x of [the] letter + " 2x of [the] light + " 1x of [the] lips + " 3x of [the] living + " 1x of [the] manifold + " 1x of [the] moon + " 2x of [the] mother + " 1x of [the] mystery + " 1x of [the] night + " 1x of [the] people + " 1x of [the] resurrection + " 2x of [the] righteous + " 4x of [the] sea + " 1x of [the] servant + " 1x of [the] sins + " 1x of [the] slave woman + " 2x of [the] sons + " 1x of [the] south + " 1x of [the] stars + " 1x of [the] stature + " 3x of [the] sun + " 3x of [the] sword + " 2x of [the] table + " 2x of [the] tribe + " 5x of [the] truth + " 1x of [the] ungodly + " 1x of [the] unjust + " 2x of [the] week + " 1x of [the] woman [is] + " 2x of [the] word + " 1x of [the] words + " 1x of [the] work + " 13x of [the] world + " 2x of [their] + " 1x of [their] mother + " 1x of [things] hoped for + " 1x of [those] drawing back + " 1x of [us] + " 1x of [your] souls + " 1x of a Pharisee + " 2x of a Skull + " 1x of a beast of burden + " 3x of a better + " 1x of a bridegroom + " 1x of a bush + " 2x of a camel + " 1x of a certain one + " 1x of a commandment + " 1x of a conscience + " 2x of a covenant + " 1x of a covering + " 1x of a crowd + " 1x of a curse + " 1x of a demon + " 1x of a disciple + " 1x of a donkey + " 1x of a fish + " 1x of a foot + " 1x of a furnace + " 1x of a generation + " 1x of a heifer + " 1x of a lamb + " 1x of a lamp + " 1x of a life + " 1x of a lion + " 3x of a man + " 1x of a mediator + " 1x of a mill + " 1x of a millstone + " 2x of a multitude + " 2x of a needle + " 1x of a new + " 3x of a physician + " 1x of a plot that + " 2x of a prophet + " 3x of a righteous [man] + " 1x of a scorpion + " 1x of a servant + " 2x of a sweet smell + " 2x of a trumpet + " 1x of a wind + " 1x of a woman + " 1x of a young man + " 1x of abominations + " 3x of about + " 1x of adultery + " 1x of ages + " 42x of all + " 1x of all [the] + " 1x of all kinds + " 3x of all things + " 1x of alms + " 1x of an angel + " 1x of an archangel + " 1x of an evangelist + " 1x of an eye + " 1x of an hour + " 1x of an image + " 1x of an only begotten + " 6x of angels + " 1x of animals + " 3x of another + " 2x of any + " 4x of anyone + " 1x of appearance + " 1x of avenging + " 1x of babes + " 1x of barley + " 2x of beasts + " 1x of believers + " 2x of birds + " 1x of birth pains + " 1x of birth pains [are] + " 3x of bitterness + " 2x of blasphemy + " 2x of blessing + " 5x of blood + " 3x of boasting + " 1x of bondage + " 1x of bones + " 1x of braiding + " 2x of bread + " 1x of bronze + " 2x of bulls + " 1x of calves + " 1x of cases + " 3x of chains + " 2x of chariots + " 1x of choice + " 3x of circumcision + " 1x of cloak + " 2x of cloth + " 1x of cold [water] + " 1x of commanders + " 1x of commandments + " 2x of compassion + " 1x of compassions + " 1x of condemnation [was] + " 1x of confession + " 1x of corruption + " 1x of cowardice + " 1x of craft + " 3x of creation + " 1x of creeping things + " 1x of cups + " 1x of cursing + " 1x of daily + " 7x of darkness + " 1x of day + " 1x of days + " 25x of death + " 1x of death [is] + " 2x of debauchery + " 1x of decay + " 2x of deceit + " 1x of defense + " 1x of defilement + " 1x of delusion + " 5x of demons + " 1x of desolation + " 4x of destruction + " 1x of disciples + " 1x of discipline + " 1x of discourse + " 1x of dishonor + " 3x of disobedience + " 1x of disorder + " 1x of divine adoption as sons + " 2x of divorce + " 1x of double + " 4x of each + " 1x of earth + " 1x of encouragement + " 1x of endurance + " 1x of envy + " 1x of eternal + " 1x of eternity + " 5x of every + " 1x of everything + " 2x of evil + " 2x of evil things + " 1x of evils + " 2x of exhortation + " 1x of exultation + " 2x of eyes + " 20x of faith + " 2x of falsehood + " 1x of favor + " 1x of fellowship + " 1x of figs + " 1x of fine linen + " 17x of fire + " 2x of fish + " 1x of fishes + " 1x of flame + " 1x of flattery + " 5x of flesh + " 1x of flour + " 2x of food + " 1x of foolish + " 1x of foreigners + " 1x of forty years + " 6x of fragments + " 3x of fragrant oil + " 2x of freedom + " 1x of fruits + " 2x of full + " 1x of garments + " 2x of gentleness + " 1x of gifts + " 1x of giving + " 2x of glass + " 1x of gloomy darkness + " 11x of glory + " 4x of goats + " 2x of godliness + " 2x of gold + " 3x of good + " 2x of goodness + " 6x of grace + " 2x of grass + " 2x of great price + " 1x of great worth + " 1x of grief + " 1x of hades + " 2x of hair + " 1x of hands + " 2x of harpists + " 1x of having taken hold of + " 3x of healing + " 1x of healings + " 8x of heart + " 1x of hearts + " 5x of heaven + " 2x of hell + " 97x of her + " 3x of herself + " 461x of him + " 1x of him [was] + " 20x of himself + " 1x of his + " 1x of his heart + " 1x of his own accord + " 1x of holiness + " 1x of honorable position + " 1x of hope + " 3x of horses + " 1x of how many + " 1x of human + " 1x of humiliation + " 1x of hypocrisy + " 1x of ignorance + " 1x of imperishable + " 1x of impurity + " 1x of incenses + " 1x of infants + " 1x of infirmity + " 2x of iniquity + " 1x of insurrection + " 5x of iron + " 80x of it + " 1x of it [is] + " 2x of its own + " 1x of itself + " 1x of ivory + " 1x of joints + " 1x of joy + " 10x of judgment + " 3x of kings + " 3x of knowledge + " 1x of labor + " 1x of lamp + " 1x of lands + " 1x of languages + " 5x of law + " 2x of lawlessness + " 1x of laying on + " 2x of leather + " 1x of leprosy + " 37x of life + " 6x of light + " 1x of lights + " 2x of like nature + " 3x of lions + " 1x of living + " 1x of loaves + " 1x of long ago + " 1x of lords + " 5x of love + " 1x of low degree + " 1x of lust + " 1x of malice + " 10x of man + " 1x of mankind + " 6x of many + " 1x of many things + " 1x of marble + " 227x of me + " 1x of meal + " 47x of men + " 2x of mercy + " 1x of mighty [men] + " 2x of milk + " 6x of mine + " 1x of ministry + " 1x of miracles + " 1x of mockings + " 1x of mortal + " 2x of mother + " 5x of mustard + " 4x of my + " 1x of myriads + " 1x of myrrh + " 1x of myself + " 2x of names + " 2x of nard + " 1x of nations + " 1x of nature + " 1x of night + " 2x of no one + " 2x of noble birth + " 1x of note + " 1x of nothing + " 2x of obedience + " 2x of offense + " 1x of oil + " 1x of old + " 6x of one + " 1x of one [person] + " 2x of one another + " 3x of one crying + " 1x of one possessed by a demon + " 3x of others + " 2x of our + " 1x of our Fathers + " 1x of our enemies + " 2x of our fathers + " 1x of our life + " 1x of ours + " 1x of ourselves + " 1x of oxen + " 1x of patience + " 14x of peace + " 1x of pearls + " 1x of perfect unity + " 4x of pigs + " 1x of plundering + " 1x of poison + " 2x of power + " 1x of praise + " 4x of prayer + " 2x of promise + " 1x of prophecy + " 3x of prophets + " 1x of purple + " 1x of rage + " 2x of reconciliation + " 1x of redemption + " 1x of reformation + " 1x of refreshing + " 1x of regeneration + " 10x of repentance + " 1x of reproach + " 1x of restoration + " 3x of riches + " 1x of righteous judgement + " 17x of righteousness + " 1x of rivers + " 4x of robbers + " 2x of saints + " 9x of salvation + " 1x of scarlet + " 1x of scourgings + " 1x of seed + " 1x of self-control + " 1x of services + " 1x of sexual immorality + " 1x of shame + " 1x of sharing + " 1x of sheep + " 1x of shifting + " 1x of signs + " 1x of silk + " 2x of silver + " 1x of silverlings + " 14x of sin + " 1x of sincerity + " 3x of sinners + " 15x of sins + " 2x of slaughter + " 1x of slavery + " 1x of slaves + " 1x of sleep + " 1x of smoke + " 2x of soil + " 1x of solid + " 3x of some + " 1x of soul + " 1x of sound + " 1x of sour wine + " 1x of speakers of lies + " 1x of speech + " 2x of spirits + " 1x of spiritual gifts + " 1x of sprinkling + " 1x of stars + " 1x of sticks + " 3x of stone + " 1x of strangers + " 1x of stripes + " 1x of strongholds + " 3x of stumbling + " 1x of stupor + " 1x of such + " 1x of suffering evils + " 1x of sufferings + " 1x of sulfur + " 3x of tax collectors + " 2x of teaching + " 1x of ten thousand + " 2x of testing + " 7x of that + " 1x of that One + " 1x of that place + " 3x of that which + " 1551x of the + " 1x of the Damascenes + " 2x of the Gentiles + " 4x of the Law + " 3x of the Lord + " 1x of the Samaritans + " 1x of the Skull + " 2x of the Thessalonians + " 18x of the [One] + " 7x of the [one] + " 1x of the [things] + " 1x of the age + " 1x of the ages + " 1x of the angel + " 1x of the blessing + " 1x of the blind + " 1x of the cohort + " 1x of the consummation + " 1x of the earth + " 1x of the heavens + " 2x of the household + " 1x of the lion + " 1x of the mysteries + " 1x of the preceding + " 1x of the promise + " 1x of the saints + " 1x of the smallest + " 1x of the sun + " 2x of the things + " 1x of the things in which + " 1x of the twelve + " 1x of the way + " 2x of the week + " 1x of their + " 365x of them + " 1x of them [is] + " 1x of them were saying + " 11x of themselves + " 16x of these + " 2x of these [is] + " 7x of these things + " 1x of things + " 13x of this + " 1x of this [man] + " 1x of this age + " 2x of this one + " 1x of thorns + " 53x of those + " 1x of those [two] + " 1x of those reclining + " 1x of those things + " 2x of those who + " 1x of thousands + " 1x of three + " 3x of thunder + " 1x of thunders + " 1x of time + " 3x of tongues + " 1x of torment + " 1x of trade + " 1x of trespasses + " 1x of tribulation + " 11x of truth + " 1x of turtle doves + " 3x of two + " 1x of unbelief + " 1x of understanding + " 1x of ungodliness + " 1x of ungodlinesses + " 1x of ungodly + " 1x of unleavened [bread] + " 6x of unrighteousness + " 305x of us + " 1x of us [is] + " 1x of vanity + " 1x of various + " 5x of vipers + " 2x of visitation + " 2x of wars + " 7x of water + " 5x of waters + " 2x of wedding + " 4x of what + " 1x of what is coming on + " 1x of what things + " 4x of wheat + " 19x of which + " 30x of whom + " 2x of wickedness + " 2x of wind + " 1x of wine + " 7x of wisdom + " 1x of witness + " 3x of witnesses + " 2x of wolves + " 4x of women + " 1x of words + " 1x of workings + " 1x of works + " 1x of worship + " 4x of wrath + " 1x of wrongs + " 1x of years + " 619x of you + " 1x of you [how] + " 8x of your + " 1x of yours + " 4x off + " 2x offense + " 5x offer + " 3x offered + " 1x offered to an idol + " 8x offering + " 1x offerings + " 1x offers itself + " 3x officer + " 13x officers + " 7x offspring + " 16x often + " 7x oil + " 20x old + " 1x old [wine] + " 1x old age + " 1x old things + " 1x older + " 2x olive tree + " 1x olive trees + " 1x olives + " 313x on + " 1x on Him + " 1x on [Him] + " 1x on [his] + " 3x on [the] + " 1x on [the] back + " 1x on [the] eighth day + " 1x on [the] ground + " 2x on a Sabbath + " 1x on a few + " 3x on account + " 77x on account of + " 1x on all + " 3x on behalf + " 9x on behalf of + " 1x on earth + " 1x on entering + " 1x on every + " 1x on every side + " 2x on foot + " 1x on having come + " 1x on having come down + " 1x on her + " 2x on high + " 6x on him + " 1x on himself + " 2x on me + " 1x on no one + " 1x on one + " 1x on reasonings + " 1x on saying + " 1x on setting sail + " 1x on stones + " 2x on that side + " 43x on the + " 4x on the basis of + " 3x on the contrary + " 1x on the left + " 2x on the other side + " 1x on the outside + " 1x on the second day + " 8x on them + " 2x on this side + " 2x on those + " 1x on us + " 1x on what + " 2x on which + " 1x on whom + " 21x once + " 2x once [more] + " 1x once [was] + " 1x once [were] + " 5x once for all + " 319x one + " 1x one [has] + " 1x one [place] + " 1x one [point] + " 1x one [thing] + " 1x one [voice] + " 1x one and only + " 86x one another + " 1x one greater + " 1x one hour + " 4x one hundred + " 1x one man + " 1x one of eight + " 5x one thing + " 2x one thousand + " 1x one to another + " 1x one-eyed + " 2x oneself + " 1x ongoing + " 72x only + " 3x only [so] + " 1x only [there is] + " 3x only begotten + " 1x only begotten son + " 1x onto + " 4x open + " 1x open field + " 8x opened + " 1x opened He + " 6x opening + " 4x openly + " 1x openness + " 2x opens + " 1x operate + " 1x operating + " 1x opportune + " 5x opportunity + " 1x oppose + " 2x opposed + " 2x opposes + " 4x opposing + " 1x opposing [you] + " 1x opposing arguments + " 5x opposite + " 1x opposite of + " 2x oppressed with + " 2x oppressing + " 1x oppression + " 273x or + " 1x or [the] + " 1x or if + " 1x or you + " 4x oracles + " 9x order + " 1x ordered + " 1x ordinance + " 3x ordinances + " 3x ordinary + " 1x orgies + " 1x orphans + " 70x other + " 10x other side + " 5x other things + " 1x other tongues + " 1x other women + " 32x others + " 1x others’ + " 7x otherwise + " 16x ought + " 1x ought [she] + " 12x our + " 1x our Lord + " 1x our [people] + " 1x our people + " 4x ours + " 23x ourselves + " 1x ourselves [with] + " 27x out + " 64x out from + " 211x out of + " 2x out of [the] + " 1x out of trouble + " 1x outbursts of anger + " 5x outcome + " 3x outer + " 1x outer garment + " 39x outside + " 3x outside [the] Law + " 1x outside [the] law + " 1x outside of + " 3x outward + " 3x outwardly + " 71x over + " 2x over all + " 1x over and above + " 2x over me + " 1x over spirits + " 3x over the + " 1x over them + " 1x over there + " 2x over you + " 1x overabounded + " 2x overcame + " 1x overcome + " 1x overcomes + " 10x overcoming + " 1x overflow + " 1x overpowered + " 2x overseer + " 1x overseers + " 1x overseership + " 1x overshadowed + " 2x overshadowing + " 1x overthrow + " 1x overthrowing + " 2x owe + " 1x owe you + " 1x owed + " 83x own + " 1x own country + " 1x owners + " 1x owns + " 1x ox + " 5x oxen + " 1x pagan + " 3x pagans + " 1x paid the tithe + " 2x pain + " 1x pains + " 1x palace + " 1x palace guard + " 1x palaces + " 1x pale + " 1x pallet + " 1x palm branches + " 1x palm trees + " 1x paper + " 22x parable + " 16x parables + " 1x paradise + " 6x paralytic + " 1x paralytics + " 4x paralyzed + " 1x parchments + " 20x parents + " 17x part + " 3x partake + " 1x partaker + " 6x partakers + " 2x partakes + " 1x partaking [only] + " 5x partiality + " 1x participation + " 1x particular + " 1x partitioner + " 4x partners + " 1x partnership + " 1x partnership [have] + " 5x parts + " 1x party + " 2x passed + " 1x passed by on the opposite side + " 1x passed through + " 3x passing + " 1x passing along + " 5x passing by + " 1x passing judgment + " 3x passing on + " 1x passing over + " 2x passing through + " 1x passing through [them] + " 1x passion + " 6x passions + " 2x past + " 1x pasture + " 1x pasture to grow + " 2x patch + " 1x path + " 5x paths + " 12x patience + " 2x patient endurance + " 1x patiently + " 2x patriarch + " 4x patriarchs + " 2x pattern + " 2x pay + " 1x pay back double + " 1x pay you + " 1x payment to be made + " 62x peace + " 1x peace [be] + " 4x peaceable + " 1x peacemakers + " 3x pearl + " 5x pearls + " 1x peddling + " 1x pen + " 1x penetrating + " 131x people + " 9x peoples + " 3x perceive + " 1x perch + " 11x perfect + " 2x perfected + " 1x perfecter + " 2x perfecting + " 2x perfection + " 1x perform + " 1x performing + " 10x perhaps + " 1x perish + " 3x perishable + " 4x perished + " 4x perishing + " 1x perjurers + " 2x permits + " 1x permitting + " 1x perpetuity + " 1x perplexity + " 1x persecute + " 2x persecute you + " 1x persecuted + " 4x persecuting + " 3x persecution + " 5x persecutions + " 9x perseverance + " 1x persistence + " 1x persons + " 1x persuaded + " 1x persuades + " 3x persuading + " 1x persuasion [is] + " 1x persuasive + " 1x persuasive speech + " 1x pertaining to + " 2x perverse + " 1x perverse things + " 3x perverted + " 1x perverting + " 1x pestilences + " 1x philosophers + " 1x philosophy + " 1x phylacteries + " 1x physician + " 1x physicians + " 5x pieces of silver + " 2x pierced + " 1x pigeons + " 8x pigs + " 1x pilfering + " 2x pillars + " 1x pilot + " 2x pinnacle + " 2x piously + " 4x pit + " 61x place + " 2x placed + " 1x placed around + " 1x placed on + " 8x places + " 1x placing + " 4x plague + " 9x plagues + " 1x plain + " 4x plainly + " 2x plan + " 1x plant + " 5x planted + " 2x planting + " 2x plants + " 1x pleaded + " 1x please + " 3x pleased + " 8x pleasing + " 1x pleasure + " 3x pleasures + " 2x pledge + " 1x plentiful + " 2x plot + " 1x plot of ground + " 1x plots + " 1x plotted together + " 2x plowing + " 1x pluck out + " 1x plucking + " 1x plunder + " 1x plundering + " 1x plunge + " 1x pods + " 1x poets + " 1x poisoned + " 2x pollutions + " 1x pomp + " 1x ponder + " 1x pondering [them] + " 3x pool + " 27x poor + " 1x poor man + " 4x porch + " 1x porches + " 3x portion + " 1x position + " 1x possessed + " 1x possessed by a demon + " 1x possessed by demons + " 2x possesses + " 5x possessing + " 2x possession + " 10x possessions + " 11x possible + " 1x possibly + " 4x potter + " 1x pour out + " 1x pour they + " 1x poured [it] + " 7x poured out + " 1x pouring on + " 1x pours forth + " 5x poverty + " 82x power + " 3x powerful + " 1x powerless [being] + " 5x powers + " 1x practice + " 2x practices + " 13x practicing + " 1x practicing [them] + " 1x practicing sorcery + " 11x praise + " 1x praised + " 5x praising + " 1x prating against + " 12x pray + " 1x pray earnestly to + " 1x prayed + " 14x prayer + " 20x prayers + " 23x praying + " 1x prays + " 4x preach + " 1x preach the gospel + " 1x preached + " 12x preaching + " 1x preaching the gospel + " 2x precedence + " 8x precious + " 1x preciousness + " 1x prefigures + " 1x prejudice + " 5x prepare + " 5x prepared + " 1x prepared beforehand + " 3x presence + " 17x present + " 1x present age + " 1x present form + " 4x presentation + " 1x presented + " 10x presently + " 1x preservation + " 1x preserved + " 1x press + " 1x press in + " 1x pressed down + " 2x pressing in on + " 1x pressing on + " 1x pressure + " 1x presume + " 1x prevail + " 1x prevails + " 1x prevents + " 1x previously + " 1x previously it had been that + " 2x price + " 1x prices + " 1x pride + " 6x priest + " 5x priesthood + " 1x priestly office + " 15x priests + " 5x prince + " 1x principalities + " 1x principality + " 1x principals + " 2x principle + " 4x principles + " 32x prison + " 3x prison house + " 6x prisoner + " 6x prisoners + " 3x prisons + " 7x private + " 1x privately + " 2x prize + " 3x proceed + " 1x proceed forth + " 1x proceeded + " 5x proceeding + " 3x proceeds + " 6x proclaim + " 2x proclaimed + " 1x proclaimed [it] + " 14x proclaiming + " 1x proclaiming good news + " 2x proclaiming the good news + " 1x proclaiming the good news that + " 6x proclaiming the gospel + " 2x proclaims + " 2x proclamation + " 4x proconsul + " 1x proconsuls + " 1x prodigally + " 2x produced + " 9x produces + " 8x producing + " 1x productive + " 4x profane + " 1x profane person + " 2x professing + " 7x profit + " 4x profitable + " 2x profits + " 3x progress + " 1x prominence + " 1x prominent + " 29x promise + " 1x promise [was] + " 1x promise has been made + " 3x promised + " 12x promises + " 1x promises given + " 1x promising + " 3x proof + " 1x proofs + " 3x properly + " 2x property + " 1x prophecies + " 15x prophecy + " 4x prophesied + " 1x prophesy + " 7x prophesying + " 34x prophet + " 2x prophetic + " 63x prophets + " 1x prophets [were] + " 1x proportion + " 1x prospers + " 7x prostitute + " 4x prostitutes + " 1x protects + " 1x proud + " 1x proved to be + " 1x proven genuineness + " 2x proverb + " 1x provide + " 2x providing + " 2x province + " 2x proving + " 1x provision + " 1x provision-bag + " 2x provisions + " 1x provoke + " 1x provoking + " 1x prowls about + " 1x psalm + " 1x psalms + " 3x public + " 1x public reading of Scripture + " 6x publicly + " 2x puffed up + " 1x puffs up + " 1x punishing + " 5x punishment + " 24x pure + " 1x purely + " 6x purification + " 1x purified + " 1x purifies + " 1x purifying + " 4x purity + " 7x purple + " 14x purpose + " 3x purposed + " 2x purposing + " 2x purse + " 1x purses + " 4x pursue + " 3x pursuing + " 1x pursuits + " 1x pushed away + " 5x put + " 2x put He before + " 1x put [her] + " 1x put [him] + " 1x put [in] + " 2x put [it] + " 1x put [it] on + " 1x put [me] to death + " 1x put [them] + " 2x put forth + " 2x put in order + " 1x put in place + " 1x put off + " 5x put on + " 1x put out of the synagogue + " 1x put to death + " 1x put to flight + " 1x put to shame + " 1x put under an oath + " 3x puts + " 3x puts [it] + " 3x puts forth + " 3x putting + " 2x putting [you] in remembrance + " 1x putting around + " 1x putting away + " 1x putting off + " 1x putting on + " 3x quadrupeds + " 1x quantity + " 1x quarreling + " 4x quarrels + " 1x queen + " 1x quenched + " 2x question + " 6x questioned + " 1x questioned [Him] + " 2x questioning + " 1x questions + " 1x quick tempered + " 17x quickly + " 1x quickly as possible + " 4x quickness + " 3x quiet + " 3x quietness + " 6x race + " 2x radiance + " 2x rage + " 1x raging + " 6x rain + " 1x rainbow + " 1x rains + " 1x raise + " 1x raise up + " 4x raised + " 5x raised up + " 1x raises + " 1x raises up + " 1x raising + " 1x ran + " 1x ran ahead + " 1x ran down + " 2x ran together + " 1x rash + " 42x rather + " 3x rather than + " 1x ravenous + " 1x ravens + " 1x reached + " 1x reaching + " 1x reaching forward + " 1x read + " 1x read you + " 1x readily + " 8x readiness + " 6x reading + " 1x reading [it] + " 17x ready + " 1x ready to share + " 1x readying + " 1x real + " 1x realize + " 1x realizing + " 2x really + " 2x reap + " 5x reaping + " 5x reason + " 4x reason you + " 2x reasonable + " 1x reasoned defense + " 6x reasoning + " 1x reasoning together + " 1x reasonings + " 1x rebelled + " 3x rebellion + " 1x rebels + " 6x rebuke + " 7x rebuked + " 1x rebuking [them] + " 1x recalling + " 15x receive + " 1x receive [it] + " 2x receive sight + " 1x receive your sight + " 20x received + " 1x received [as] + " 1x received [them] + " 19x receives + " 1x receives a place + " 16x receiving + " 1x receiving [it] + " 1x recently + " 2x reception + " 1x reckless + " 4x reckoning + " 2x recline + " 13x reclining + " 1x reclining with [Him] + " 3x reclining with [him] + " 1x recognized + " 5x recompense + " 1x reconciliation + " 1x reconciling + " 1x recovery of sight + " 1x red + " 1x redeemed + " 1x redeemer + " 2x redeeming + " 9x redemption + " 3x reed + " 4x refuse + " 1x refused + " 1x refused to believe + " 1x refusing to be persuaded + " 2x regard + " 1x regard lightly + " 2x regarding + " 1x regards [it] + " 1x regeneration + " 24x region + " 1x region around + " 5x regions + " 2x registration + " 1x regret + " 1x regulations + " 1x reign + " 3x reigned + " 1x reigns over + " 1x reject + " 1x reject [me] with contempt + " 5x rejected + " 3x rejecting + " 1x rejecting [this] + " 1x rejection + " 2x rejects + " 9x rejoice + " 2x rejoice with + " 1x rejoice with [it] + " 5x rejoiced + " 3x rejoices + " 11x rejoicing + " 3x relate + " 2x related + " 2x relating + " 1x relating in detail + " 3x relating to + " 1x relative + " 1x relative to + " 7x relatives + " 2x release + " 2x released + " 1x released [them] + " 1x releasing + " 3x religion + " 1x religious + " 1x rely on + " 11x remain + " 4x remained + " 1x remained behind + " 6x remaining + " 4x remains + " 1x remark + " 1x remarkable things + " 1x remarking + " 5x remember + " 4x remembered + " 4x remembering + " 6x remembrance + " 1x remind [them] + " 1x reminding + " 2x remnant + " 1x removal + " 1x removing + " 1x rendering + " 1x rendering service + " 2x renewing + " 1x rented + " 1x rented house + " 2x rented out + " 2x repaying + " 3x repeatedly + " 4x repent + " 12x repentance + " 2x repenting + " 9x report + " 5x reported + " 1x reported [it] + " 1x repose + " 1x representations + " 3x reproach + " 1x reproaches + " 1x reproaching + " 1x reproof + " 1x reprove + " 2x requested + " 2x requests + " 1x requirements + " 1x rescued + " 1x resist + " 1x resisting + " 1x resolute purpose + " 1x resolve + " 1x resolves + " 5x respect + " 2x respectable + " 1x respecting + " 2x respectively + " 42x rest + " 2x rested + " 1x restore + " 1x restored + " 1x restores + " 1x restraining [it] + " 1x rests + " 30x resurrection + " 1x retain + " 11x returned + " 5x returning + " 2x revealed + " 1x revealed [it] + " 9x revelation + " 2x revelations + " 1x reveling + " 2x revenue + " 3x reverence + " 1x reverenced + " 1x reverent + " 1x reviled in return + " 1x reviling + " 1x reviling [him] + " 1x revived + " 18x reward + " 19x rich + " 1x rich [man] + " 2x rich man + " 17x riches + " 4x richly + " 28x right + " 17x right hand + " 35x righteous + " 2x righteous [are] + " 1x righteous [it is] + " 2x righteous [man] + " 1x righteous [men] + " 1x righteous [one] + " 1x righteous [ones] + " 1x righteous acts + " 1x righteous decree + " 1x righteous ones + " 3x righteously + " 61x righteousness + " 2x righteousness [is] + " 1x righteousness [that is] + " 1x righteousness acts + " 5x rightly + " 1x riots + " 1x ripe fruit + " 1x rise + " 4x rise up + " 4x rising + " 2x rising up + " 5x river + " 2x rivers + " 24x road + " 1x roaring + " 1x roars + " 6x robbers + " 4x robe + " 6x robes + " 9x rock + " 3x rocks + " 1x rocky + " 1x rocky place + " 3x rocky places + " 1x rolled away + " 1x rolling place + " 1x rolling surge + " 3x roof + " 2x room + " 2x rooster + " 14x root + " 1x roots + " 2x ropes + " 1x rose + " 1x rose again + " 4x rose up + " 1x rose up against + " 1x rose up together + " 1x rough + " 1x route + " 1x rowing + " 2x royal + " 3x royal crowns + " 2x royal official + " 1x rubbing [them] + " 1x rubbish + " 1x rudder + " 1x rudders + " 1x rue + " 3x ruin + " 1x ruins + " 3x rule + " 1x rule over + " 10x ruler + " 1x ruler of synagogue’s [house] + " 5x ruler of the synagogue + " 24x rulers + " 1x rulers of the synagogue + " 2x rules over + " 1x ruling + " 1x rumblings + " 2x rumors + " 3x run + " 2x running + " 1x running over + " 1x running to [Him] + " 1x running with [them] + " 4x rushed + " 1x rushed out + " 1x rushing + " 3x rust + " 2x sabachthani + " 4x sackcloth + " 1x sacred + " 1x sacred services + " 8x sacrifice + " 3x sacrificed to idols + " 13x sacrifices + " 1x sacrificing + " 313x said + " 1x said I + " 1x said [them] + " 2x sailed + " 2x sailed away + " 5x sailing + " 1x sailing slowly + " 3x sailors + " 1x saint + " 52x saints + " 1x saints’ + " 7x salt + " 1x salutation + " 30x salvation + " 66x same + " 1x same [place] + " 1x same amount + " 4x same thing + " 3x same things + " 1x same trade + " 4x sanctification + " 2x sanctified + " 2x sanctify + " 1x sanctify [them] + " 2x sanctifying + " 5x sand + " 3x sandal + " 9x sandals + " 1x sandbars of Syrtis + " 1x sapphire + " 2x sardius + " 1x sardonyx + " 1x sashes + " 3x sat + " 7x sat down + " 1x sat up + " 1x satiated + " 1x satisfactory + " 1x savage + " 6x save + " 1x save us + " 2x saved + " 1x saving + " 23x saw + " 4x saw we + " 58x say + " 2x say You + " 1x say [it] + " 1x say [that] + " 1x say you + " 405x saying + " 1x saying in his defense + " 1x saying to + " 2x sayings + " 119x says + " 1x says He + " 1x says [the] + " 1x says it + " 1x scales + " 5x scarlet + " 3x scatters + " 1x scepter + " 2x schemes + " 1x scheming + " 3x scoffers + " 1x scoffing + " 2x scorching heat + " 3x scorpions + " 4x scribe + " 58x scribes + " 8x scroll + " 74x sea + " 1x sea coast + " 10x seal + " 1x sealed [it] + " 4x seals + " 1x seamless + " 2x search + " 1x searched out diligently + " 1x searches + " 2x searching + " 9x season + " 6x seasons + " 1x seat + " 1x seated [us] together + " 2x seats + " 22x second + " 2x second time + " 1x secondly + " 11x secret + " 4x secretly + " 2x secrets + " 4x sect + " 2x securely + " 3x security + " 14x see + " 31x seed + " 1x seed for sowing + " 3x seeds + " 23x seeing + " 1x seeing [it] + " 10x seek + " 1x seek You + " 2x seek after + " 5x seek you + " 23x seeking + " 1x seeking [it] + " 1x seeking after + " 9x seeks + " 1x seeks for + " 1x seeming + " 1x seeming good + " 3x seems + " 2x seen + " 6x sees + " 2x seize + " 5x seized + " 1x self + " 1x self-condemned + " 5x self-control + " 4x self-controlled + " 1x self-imposed worship + " 1x self-indulgence + " 3x self-interest + " 1x self-interest [exist] + " 1x self-restraint + " 2x self-willed + " 1x selfish ambition + " 3x sell + " 8x selling + " 1x selling [them] + " 1x selves + " 6x send + " 1x send away + " 1x send for + " 1x send forth + " 1x sending for + " 1x sense of smell + " 1x senses + " 10x sensuality + " 34x sent + " 1x sent [him] away + " 1x sent [them] + " 4x sent away + " 1x sent back + " 3x sent forth + " 1x sent with [him] + " 2x sentence + " 1x sentenced + " 3x separate from + " 1x separated + " 1x separated from + " 1x separates + " 1x separates himself + " 6x serpent + " 5x serpents + " 59x servant + " 3x servant girl + " 1x servant girls + " 48x servants + " 1x servants of + " 6x serve + " 1x served + " 3x serves + " 1x serves as a soldier + " 18x service + " 12x serving + " 1x serving as a soldier + " 2x set + " 1x set [your] hope + " 1x set [your] minds on + " 1x set aside + " 2x set before + " 1x set forth as + " 1x set you up + " 1x sets + " 1x sets aside + " 1x sets it + " 1x sets of four + " 1x sets out + " 2x setting forth + " 1x setting on fire + " 78x seven + " 1x seven thousand + " 4x seven times + " 8x seventh + " 1x seventh [day] + " 5x seventy + " 1x seventy times + " 2x severe + " 1x severely + " 2x severity + " 1x sewer + " 1x sews + " 20x sexual immorality + " 3x sexually immoral + " 1x shabby + " 2x shackles + " 5x shadow + " 3x shake off + " 2x shaken + " 1x shaken together + " 1x shaking + " 1x shall I ask + " 1x shall I cast + " 1x shall I choose + " 1x shall I crucify + " 6x shall I do + " 1x shall I drink + " 1x shall I eat + " 2x shall I liken + " 1x shall I make + " 3x shall I say + " 1x shall I see + " 1x shall You wash + " 1x shall abound + " 5x shall be + " 2x shall be called + " 3x shall be found + " 1x shall be healed + " 3x shall be heard + " 1x shall be injured + " 1x shall be known + " 2x shall be left + " 1x shall be offended + " 2x shall be proclaimed + " 1x shall be put to shame + " 2x shall be read + " 1x shall be shut + " 1x shall be taken away + " 1x shall be thrown down + " 1x shall bear + " 1x shall believe + " 1x shall blaspheme + " 1x shall break + " 1x shall call to Himself + " 1x shall call upon + " 1x shall cast out + " 1x shall cause to stumble + " 4x shall come + " 1x shall compel to go + " 1x shall confess + " 1x shall deny + " 1x shall die + " 3x shall divorce + " 4x shall do + " 1x shall doubt + " 1x shall eat + " 4x shall enter + " 1x shall exalt + " 1x shall execute + " 2x shall fall + " 1x shall fall away + " 1x shall flee + " 1x shall give + " 1x shall give to drink + " 1x shall grow weary + " 2x shall hate + " 1x shall have arisen + " 2x shall have been + " 2x shall have been completed + " 1x shall have been formed + " 1x shall have been put in subjection + " 1x shall have been revealed + " 1x shall have been taken away + " 1x shall have cleansed + " 2x shall have come + " 1x shall have dawned + " 1x shall have died + " 1x shall have drunk + " 1x shall have eaten + " 1x shall have married + " 2x shall have put on + " 1x shall have risen up + " 1x shall have shut + " 3x shall have taken place + " 1x shall he drink + " 1x shall he go + " 2x shall he lose + " 1x shall he see + " 1x shall he taste + " 1x shall humble + " 1x shall hunger + " 1x shall insult [you] + " 1x shall it be + " 1x shall it hurt + " 2x shall keep + " 3x shall live + " 3x shall marry + " 1x shall murder + " 1x shall overcome + " 3x shall pass away + " 1x shall persecute [you] + " 1x shall precede + " 8x shall receive + " 1x shall remember + " 1x shall save + " 5x shall say + " 1x shall set free + " 2x shall shine + " 1x shall sit down + " 1x shall strike + " 1x shall stumble + " 4x shall swear + " 1x shall take + " 1x shall take place + " 3x shall taste + " 1x shall teach + " 1x shall teach [them] + " 1x shall they believe on [Him] + " 1x shall they call + " 4x shall they enter + " 1x shall they escape + " 1x shall they hear + " 1x shall they perish + " 1x shall they preach + " 1x shall they teach + " 1x shall thirst + " 1x shall walk + " 1x shall we be in subjection + " 1x shall we be saved + " 2x shall we buy + " 4x shall we do + " 1x shall we drink + " 1x shall we eat + " 1x shall we liken + " 1x shall we live + " 1x shall we present + " 4x shall we say + " 1x shall we wear + " 3x shall you bear false witness + " 2x shall you come out + " 4x shall you commit adultery + " 1x shall you defraud + " 2x shall you enter + " 1x shall you escape + " 1x shall you have completed + " 1x shall you know + " 3x shall you murder + " 1x shall you say + " 2x shall you see + " 1x shall you serve + " 3x shall you steal + " 1x shall you stumble + " 1x shall you swear + " 1x shall you swear falsely + " 7x shame + " 2x shameful + " 1x shaming + " 2x share + " 7x sharp + " 1x sharper + " 15x she + " 1x she answered + " 2x she arose + " 1x she asked + " 1x she began + " 1x she began to minister + " 1x she began to serve + " 1x she begged + " 1x she being + " 1x she bore + " 1x she brings forth + " 1x she brought [it] + " 2x she brought forth + " 1x she calls together + " 4x she came + " 1x she commits adultery + " 1x she considered + " 1x she continually did + " 1x she continued + " 1x she corresponds + " 1x she could + " 1x she could fly + " 1x she cried out + " 2x she cries out + " 1x she declared + " 3x she did + " 1x she did [it] + " 1x she did sin + " 1x she entered + " 1x she entertained strangers + " 1x she exhaust + " 1x she finds + " 1x she found + " 2x she had + " 1x she had brought forth + " 1x she has + " 1x she has become + " 1x she has been brought to desolation + " 1x she has brought up children + " 1x she has followed after + " 1x she has given to drink + " 1x she has glorified + " 1x she has imparted relief + " 1x she has long hair + " 1x she has mixed + " 1x she has washed + " 1x she having known + " 2x she heard + " 2x she herself + " 6x she is + " 1x she is cleared + " 1x she is dead + " 1x she is giving birth + " 1x she is going + " 1x she is in slavery + " 1x she is nourished + " 1x she is separated + " 1x she is willing + " 1x she kept insisting + " 1x she knew + " 1x she loved + " 1x she may keep + " 1x she may need + " 1x she may respect + " 1x she might be cured + " 1x she might help + " 1x she might repent + " 1x she might weep + " 2x she opened + " 1x she persuaded + " 1x she poured [it] on + " 1x she remembers + " 1x she reported + " 1x she rose up + " 7x she said + " 1x she sat up + " 4x she says + " 3x she sees + " 1x she shall live + " 1x she should ask + " 1x she should be + " 1x she should be clothed in + " 1x she should bring forth + " 1x she should lose + " 1x she should please + " 1x she should remain + " 1x she stooped down + " 2x she touched + " 1x she turned + " 2x she was + " 1x she was baptized + " 1x she was coming + " 1x she was dead + " 1x she was found + " 2x she was healed + " 1x she was hid + " 1x she was made straight + " 1x she was troubled + " 1x she was weeping + " 1x she was wiping [them] + " 1x she was worshiping + " 1x she went + " 1x she went away + " 1x she wet + " 1x she will be burned up + " 1x she will be called + " 1x she will be saved + " 1x she will live + " 1x she wills + " 1x shearing + " 1x sheath + " 35x sheep + " 1x sheepskins + " 8x shepherd + " 2x shepherding + " 6x shepherds + " 1x shield + " 4x shines + " 5x shining + " 14x ship + " 1x ship owner + " 1x shipmaster + " 3x ships + " 4x shone + " 1x shone around + " 1x shook + " 6x shore + " 1x shortened + " 1x shortly + " 1x should I do with + " 2x should abide + " 1x should add + " 1x should adorn + " 1x should appear [for] + " 1x should ask + " 3x should be + " 1x should be able + " 1x should be blasphemed + " 1x should be blemished + " 1x should be cast + " 1x should be darkened + " 1x should be declared + " 1x should be destroyed + " 1x should be displayed + " 1x should be forgiven + " 2x should be fulfilled + " 1x should be glorified + " 1x should be healed + " 1x should be hung + " 1x should be judged + " 1x should be lacking + " 1x should be made known + " 1x should be made void + " 1x should be maligned + " 1x should be manifested + " 1x should be of mind + " 1x should be overcome + " 1x should be overwhelmed + " 1x should be persuaded + " 1x should be placed + " 1x should be put out of joint + " 1x should be sober + " 1x should be torn to pieces + " 1x should become + " 2x should begin + " 1x should blame + " 1x should bow + " 1x should bring back + " 1x should buy + " 1x should carry + " 1x should cast + " 1x should cause + " 3x should cause to stumble + " 4x should come + " 1x should come in + " 1x should complete beforehand + " 2x should condemn [us] + " 2x should confess + " 1x should credit + " 1x should deceive + " 1x should declare it + " 1x should depart + " 2x should desire + " 1x should despise + " 1x should destroy + " 7x should die + " 1x should dismiss + " 3x should do + " 1x should drink + " 1x should eat + " 1x should escape + " 1x should exult + " 1x should fall + " 1x should fear [You] + " 1x should finish + " 2x should go + " 1x should go away + " 1x should happen + " 1x should hate + " 3x should have + " 1x should have come + " 1x should have concern + " 1x should have died + " 2x should hear + " 1x should humble + " 1x should hunger + " 1x should invite in return + " 1x should it use up + " 2x should know + " 1x should know [it] + " 1x should lay down + " 1x should live + " 3x should love + " 1x should marry + " 1x should overtake + " 6x should perish + " 1x should preach a gospel + " 1x should raise up + " 2x should remain + " 2x should return + " 1x should rise + " 1x should run + " 9x should say + " 1x should see + " 1x should seem + " 2x should sin + " 1x should sleep + " 2x should speak + " 1x should sprout + " 3x should take + " 1x should take away + " 1x should teach + " 1x should testify + " 1x should think + " 1x should touch + " 1x should trouble [you] + " 1x should turn + " 2x should walk + " 1x should we commit sexual immorality + " 1x should we judge + " 1x should we say + " 1x should we test + " 1x should will + " 1x should you be troubled + " 2x shoulders + " 9x show + " 1x show You + " 1x show mercy + " 1x showed + " 5x showing + " 2x showing mercy + " 3x shows + " 1x shrewd + " 1x shrewdly + " 1x shrines + " 1x shudder + " 3x shut + " 1x shutting + " 17x sick + " 6x sickle + " 5x sickness + " 1x sicknesses + " 6x side + " 1x sight + " 17x sign + " 1x signifies + " 3x signifying + " 32x signs + " 2x silence + " 1x silent + " 1x silly + " 6x silver + " 1x silver pieces + " 1x simplicity + " 78x sin + " 19x since + " 1x since [the] + " 1x since indeed + " 4x sincere + " 5x sincerity + " 7x sinful + " 2x singing + " 1x single-minded + " 1x sinless + " 3x sinned + " 4x sinner + " 24x sinners + " 6x sinning + " 1x sinning sexually + " 62x sins + " 1x sins of ignorance + " 1x sir + " 15x sister + " 8x sisters + " 1x sit you + " 2x sits + " 59x sitting + " 2x sitting by + " 1x sitting down + " 1x sitting with + " 12x six + " 2x six hundred + " 9x sixth + " 9x sixty + " 1x skin + " 1x skins + " 8x sky + " 1x slain beasts + " 6x slander + " 3x slanderers + " 1x slanderous + " 1x slanders + " 1x slapped [Him] + " 3x slaughter + " 6x slave + " 4x slave woman + " 1x slavery + " 8x slaves + " 1x slay + " 4x sleep + " 10x sleeping + " 3x sleeps + " 1x slew + " 3x slow + " 1x slowness + " 2x sluggish + " 1x slumbers + " 11x small + " 1x small [is] + " 3x small fish + " 2x smallest + " 10x smoke + " 1x smoldering + " 1x smooth + " 1x smooth talk + " 2x snare + " 1x snares + " 1x snatches + " 1x snatches away + " 1x snatching + " 2x snow + " 71x so + " 22x so as + " 13x so as for + " 1x so be it + " 4x so great + " 1x so little + " 1x so long + " 4x so many + " 2x so much + " 2x so much as + " 1x so quickly + " 322x so that + " 1x so-called + " 2x sober + " 1x sober-minded + " 1x sobriety + " 9x soil + " 2x sojourn + " 3x sojourners + " 2x sold + " 1x sold [him] + " 3x soldier + " 20x soldiers + " 1x solemnly charging [them] + " 1x solid + " 1x solid food + " 3x solitary + " 112x some + " 1x some [of] + " 1x some [that] + " 1x some of + " 1x some things + " 1x somebody + " 3x somehow + " 13x someone + " 1x someone to lead [him] by the hand + " 19x something + " 1x something to be grasped + " 1x somewhat + " 3x somewhere + " 63x son + " 1x son [is there] + " 3x song + " 1x songs + " 64x sons + " 1x sons of + " 5x soon + " 1x sooner + " 2x sorcerers + " 1x sorceries + " 2x sorcery + " 2x sores + " 5x sorrow + " 1x sorrowing + " 1x soudarion + " 1x sought + " 1x sought out + " 31x soul + " 17x souls + " 15x sound + " 1x sound minded + " 1x sounded + " 7x sounded [his] trumpet + " 1x sounding + " 1x sounds + " 3x sour wine + " 1x south + " 2x sowed + " 14x sowing + " 2x sown + " 1x sows + " 3x spared + " 2x sparing + " 2x sparingly + " 4x sparrows + " 19x speak + " 4x speak You + " 1x speak against + " 1x speaker + " 49x speaking + " 1x speaking against + " 2x speaking boldly + " 1x speaking evil [of you] + " 3x speaking evil of + " 1x speaking truth + " 1x speaking words + " 13x speaks + " 1x speaks [for] + " 2x speaks against + " 1x spearmen + " 1x specially chosen + " 1x spectacle + " 2x speculations + " 10x speech + " 1x speechless + " 1x speed + " 1x spending the night + " 1x spent their time + " 1x spice + " 4x spices + " 2x spies + " 66x spirit + " 23x spirits + " 17x spiritual + " 1x spiritual [forces] + " 1x spiritual [gifts] + " 1x spiritual [ones] + " 1x spiritual gifts + " 2x spiritual things + " 1x spiritually + " 1x spitting on + " 1x spittle + " 4x splendid + " 1x splendid things + " 6x splinter + " 28x spoke + " 1x spoke He + " 1x spoke beforehand + " 1x spoke forth + " 6x spoken + " 1x spoken against + " 2x spot + " 2x spread + " 2x spring + " 1x springing + " 4x springs + " 3x sprinkling + " 1x sprouted + " 6x stadia + " 3x staff + " 2x stairs + " 1x stall + " 5x stand + " 4x stand firm + " 1x stand you + " 38x standing + " 1x standing [there] + " 1x standing around + " 11x standing by + " 1x standing with + " 5x stands + " 1x stands [One] + " 9x star + " 14x stars + " 4x statement + " 1x states + " 1x stature + " 1x stay awake + " 1x stayed + " 2x staying + " 1x steadfast + " 4x steadfastly continuing + " 1x steadfastly set + " 2x steadfastness + " 2x steal + " 1x steal away + " 1x stealing + " 1x stealth + " 3x steep bank + " 1x steering + " 3x steps + " 2x stern + " 2x steward + " 3x stewards + " 2x stewardship + " 27x still + " 1x still more + " 1x still much + " 1x sting + " 1x stingers + " 1x stirred + " 2x stirred up + " 2x stirring + " 2x stirring up + " 1x stocks + " 1x stole + " 4x stomach + " 27x stone + " 9x stones + " 2x stoning + " 17x stood + " 1x stood around + " 7x stood by + " 2x stood up + " 2x stopped + " 2x store up + " 1x storm + " 6x straight + " 3x straining + " 1x straining out + " 3x strange + " 8x strangers + " 3x strap + " 1x straps + " 1x straw + " 2x stream + " 6x street + " 7x streets + " 9x strength + " 3x strengthen + " 1x strengthened + " 1x strengthened [them] + " 6x strengthening + " 1x stretch out + " 1x stretching after + " 1x strictest + " 1x strictly + " 1x strictly instructed + " 5x strife + " 1x strike you + " 1x strikes [you] + " 1x striking + " 2x strive + " 2x striving + " 1x striving together + " 1x stroke of a letter + " 1x stroke of a pen + " 12x strong + " 3x strong [man] + " 1x strong drink + " 2x strong man + " 2x stronger + " 1x strongly affirmed [it] + " 5x struck + " 1x structure + " 2x struggling + " 1x stumble at + " 1x stumbles + " 2x stumbling blocks + " 2x subject + " 1x subjecting + " 1x subjecting [Him] to open shame + " 2x submission + " 1x submissiveness + " 1x submit yourselves + " 1x subsequently + " 1x substance + " 1x successively + " 1x successor + " 29x such + " 1x such [are] + " 1x such [cases] + " 1x such [men] + " 1x such [we are] + " 3x such a great + " 3x such a man + " 7x such a one + " 11x such as + " 1x such as follows + " 1x such as these + " 3x such great + " 1x such kind + " 6x such things + " 1x sucklings + " 10x suddenly + " 2x suffer + " 1x suffer together + " 1x suffer with [it] + " 1x suffer wrong + " 4x suffered + " 6x suffering + " 1x suffering wrong + " 12x sufferings + " 2x suffers + " 2x sufficiency + " 4x sufficient + " 1x suitable + " 1x sum + " 3x summer + " 1x summon + " 1x sumptuous things + " 27x sun + " 1x superfluous + " 2x superior + " 1x superiority + " 9x supper + " 1x supplement + " 8x supplication + " 1x supplications + " 1x supplies + " 1x supply + " 2x supplying + " 2x support + " 1x supports + " 1x suppose + " 1x supposes + " 3x supposing + " 1x suppressing + " 3x sure + " 1x sure [blessings] + " 2x surely + " 7x surpassing + " 1x surpassing [it] + " 2x surpassingness + " 1x surprising + " 1x surround + " 3x surrounding + " 8x surrounding region + " 1x suspicions + " 2x sustenance + " 1x swallowed up + " 1x swallowing + " 2x swear + " 3x swears + " 1x sweat + " 1x sweeps + " 2x sweet + " 2x swept + " 2x swift + " 1x swift [are] + " 1x swindler + " 3x swindlers + " 15x sword + " 6x swords + " 1x swore + " 1x swung + " 1x sympathetic + " 27x synagogue + " 1x synagogue ruler + " 1x synagogue rulers + " 24x synagogues + " 15x tabernacle + " 3x tabernacles + " 7x table + " 4x tables + " 3x tablets + " 1x tackle + " 1x tail + " 4x tails + " 9x take + " 1x take advantage + " 1x take along + " 2x take away + " 2x take courage + " 4x take heed + " 1x take note + " 6x take up + " 2x take your rest + " 1x taken + " 10x takes + " 1x takes [from you] + " 1x takes along + " 2x takes away + " 1x takes first + " 4x takes place + " 1x takes pleasure + " 2x takes with [Him] + " 3x taking away + " 3x taking captive + " 1x taking heed + " 3x taking place + " 1x taking possession + " 1x taking the lead + " 1x taking up + " 1x taking your rest + " 3x talent + " 11x talents + " 4x talk + " 1x talked + " 2x talking + " 2x talking with + " 1x task + " 1x tassels + " 8x taught + " 1x taught by God + " 2x tax + " 3x tax booth + " 3x tax collector + " 11x tax collectors + " 1x taxes + " 7x teach + " 5x teacher + " 8x teachers + " 1x teachers of the Law + " 1x teachers of the law + " 1x teachers of what is good + " 1x teaches + " 1x teaches another doctrine + " 72x teaching + " 1x teaching [as] + " 3x teachings + " 3x tear + " 2x tearing down + " 1x tearing open + " 9x tears + " 2x tears away + " 9x teeth + " 12x tell + " 1x tell [it] + " 8x telling + " 1x tells + " 1x tempest + " 1x tempestuous + " 110x temple + " 1x temple plunderers + " 1x temple-keeper + " 1x temples + " 3x temporary + " 10x temptation + " 1x tempting + " 1x tempts + " 24x ten + " 2x ten [and] + " 2x ten thousand + " 1x ten thousands + " 2x tender + " 2x tender-hearted + " 2x tent + " 2x tenth + " 1x tentmakers + " 1x tents + " 3x terrified + " 1x terrifying + " 5x test + " 1x tested + " 3x testified + " 2x testify + " 1x testify against + " 4x testifying + " 1x testifying beforehand + " 1x testimonies + " 40x testimony + " 11x testing + " 3x tetrarch + " 1x tha + " 46x than + " 1x than He + " 3x than I + " 2x than John + " 2x than Jonah + " 1x than Peter + " 2x than Solomon + " 1x than [for] + " 2x than a prophet + " 1x than a sheep + " 7x than all + " 1x than an unbeliever + " 1x than gold + " 3x than he + " 2x than itself + " 2x than many + " 2x than men + " 13x than the + " 1x than them + " 5x than these + " 1x than these things + " 1x than they + " 1x than this + " 1x than those + " 1x than what + " 1x than you + " 1x than yourselves + " 1x thank + " 2x thankful + " 1x thankfulness + " 1x thanks may be given + " 12x thanksgiving + " 1x thanksgivings + " 1498x that + " 1x that One + " 1x that [a] + " 8x that [are] + " 1x that [he had] + " 21x that [is] + " 1x that [it is the] + " 1x that [it is] + " 1x that [it may be] + " 1x that [it was] + " 1x that [one] + " 1x that [their] + " 1x that [there is] + " 1x that [time] + " 1x that [was] + " 1x that [way] + " 2x that [were] + " 1x that for which + " 1x that it + " 1x that of + " 2x that one + " 1x that remain + " 4x that time + " 1x that very + " 1x that was + " 34x that which + " 11x that which [is] + " 1x that which [was] + " 1x that which is indeed + " 1x that will be + " 9857x the + " 1x the Author + " 1x the Child + " 1x the Day of Preparation + " 1x the Dioscuri + " 2x the Father + " 1x the Galatian + " 2x the Gentiles + " 2x the God + " 1x the Holy + " 4x the Jews + " 2x the Law + " 17x the Lord + " 1x the Most High + " 1x the Northeaster + " 1x the Pharisee + " 7x the Pharisees + " 1x the Sabbath + " 5x the Son + " 3x the Spirit + " 1x the [One who] + " 163x the [One] + " 1x the [day] + " 1x the [good] + " 1x the [house] + " 3x the [household] + " 1x the [man] + " 1x the [matter] + " 1x the [miracle] + " 3x the [mother] + " 1x the [one born] + " 1x the [one end] + " 2x the [one who] + " 1x the [one with] + " 255x the [one] + " 10x the [ones] + " 1x the [other end] + " 1x the [own] + " 1x the [parts] + " 2x the [same] + " 1x the [saying] + " 7x the [son] + " 1x the [sons] + " 1x the [thing] + " 3x the [things] + " 1x the [time when] + " 3x the [time] + " 1x the [way] + " 2x the [wife] + " 1x the above + " 1x the abundance + " 1x the arm + " 1x the bad + " 1x the beam + " 1x the blind + " 1x the blind [man] + " 2x the blood + " 1x the boasting + " 2x the boat + " 1x the body + " 1x the body [is] + " 1x the brothers + " 1x the captain + " 3x the centurion + " 1x the chaff + " 5x the chief priests + " 1x the child + " 1x the church + " 1x the citizens + " 1x the clothes + " 1x the cohort + " 1x the colt + " 1x the commander + " 2x the country + " 1x the crippled + " 2x the crowd + " 2x the crowds + " 2x the cup + " 2x the day + " 1x the day before Sabbath + " 2x the dead + " 1x the demons + " 9x the disciples + " 1x the door + " 2x the earth + " 1x the elect + " 1x the eleven + " 2x the end + " 1x the enemy + " 1x the entire + " 1x the evening + " 1x the exhortation + " 2x the eyes + " 2x the face + " 1x the fact that + " 2x the farmers + " 1x the father + " 1x the fathers + " 1x the field + " 1x the fine linen + " 1x the firm + " 3x the first + " 1x the first [day] + " 1x the fishermen + " 5x the flesh + " 1x the following + " 1x the following day + " 1x the folly + " 1x the food + " 1x the foolish + " 1x the foremost + " 1x the fourteenth + " 1x the from above + " 2x the fruit + " 2x the furnace + " 2x the gift + " 1x the goal + " 1x the goats + " 2x the good + " 1x the gospel was proclaimed + " 1x the greatest + " 1x the ground + " 1x the harvest + " 1x the harvesters + " 1x the head + " 1x the heart + " 1x the heavens + " 4x the high priest + " 1x the hour + " 1x the in + " 1x the inside + " 2x the king + " 1x the lame + " 1x the lampstand + " 2x the law + " 1x the law [is] + " 1x the lawless + " 2x the least + " 1x the like + " 2x the man + " 1x the market + " 1x the marketplace + " 1x the matter + " 1x the meat market + " 1x the members + " 2x the men + " 1x the middle + " 4x the midst + " 1x the mind + " 3x the more + " 1x the more abundantly + " 1x the mother-in-law + " 1x the multitude + " 1x the natives + " 1x the need + " 2x the next [day] + " 1x the next day + " 1x the night + " 1x the nine + " 1x the ninth + " 1x the of the + " 3x the one + " 1x the one whom + " 4x the ones + " 1x the opportune + " 5x the other + " 1x the other things + " 1x the passage + " 1x the people + " 1x the place + " 1x the poor + " 2x the power + " 1x the powers + " 1x the presence + " 1x the presentable [parts] + " 1x the priest + " 1x the promise + " 1x the proof + " 1x the proven worth + " 1x the report + " 2x the rest + " 1x the reward + " 1x the right [hand] + " 1x the right hand + " 2x the righteous + " 1x the rooster + " 10x the same + " 1x the same as + " 2x the same things + " 1x the same way + " 1x the sea + " 2x the second time + " 1x the sect + " 1x the servants + " 2x the seven + " 4x the sexually immoral + " 1x the sheep + " 1x the signs + " 2x the sixth + " 1x the slave + " 1x the smallest matter + " 2x the soldiers + " 1x the son + " 2x the soul + " 1x the stern + " 1x the sting + " 1x the tax collector + " 1x the tax collectors + " 1x the temple + " 2x the thing + " 122x the things + " 1x the things [done] + " 1x the things [supplied] + " 1x the things about which + " 1x the things of this life + " 6x the things that + " 1x the things which + " 2x the third + " 1x the third time + " 1x the threats + " 2x the time + " 1x the time [is] + " 1x the tongue + " 1x the ungodly + " 2x the voice + " 2x the weeds + " 1x the wheat + " 1x the whole + " 1x the wife + " 1x the wise + " 3x the woman + " 3x the word + " 3x the words + " 1x the work + " 1x the workmen + " 2x the works + " 1x the world + " 2x theatre + " 3x thefts + " 29x their + " 1x their [homes] + " 7x their own + " 3x theirs + " 699x them + " 1x them [yourself] + " 1x them all + " 71x themselves + " 882x then + " 1x then [for] + " 2x then [is] + " 1x then [of] + " 90x there + " 1x there [will be] + " 1x there also + " 1x there appeared + " 27x there are + " 3x there arose + " 2x there be + " 4x there being + " 5x there came + " 1x there dwells + " 1x there existing + " 2x there has been + " 1x there has risen + " 58x there is + " 1x there is about + " 3x there is care + " 1x there may be + " 1x there remains + " 4x there should be + " 3x there to be + " 42x there was + " 4x there was given + " 11x there were + " 20x there will be + " 1x there will be given + " 1x there will be proclaimed + " 2x there would have been saved + " 391x therefore + " 1x therefore [is] + " 1x thereof + " 145x these + " 2x these [are] + " 1x these [times] + " 1x these [women] + " 179x these things + " 1x these were + " 82x they + " 1x they [did] + " 1x they abide + " 1x they accuse + " 1x they allowed + " 3x they also + " 2x they answered + " 1x they appealed + " 1x they appealed to + " 1x they appear later + " 2x they appointed + " 39x they are + " 1x they are able + " 2x they are about + " 1x they are boasting + " 1x they are discerned + " 1x they are forgiven + " 2x they are full + " 1x they are hidden + " 1x they are ignorant of + " 1x they are leading out + " 1x they are overthrowing + " 1x they are reasoning + " 1x they are retained + " 1x they are saying + " 2x they are seeking + " 1x they are sent + " 3x they are singing + " 1x they are subdued + " 1x they are walking uprightly + " 5x they asked + " 1x they asked for + " 4x they ate + " 1x they awaken + " 2x they awoke + " 1x they be beaten with rods + " 1x they beat + " 1x they beat [him] + " 2x they became + " 1x they became drowsy + " 1x they became fools + " 1x they became futile + " 1x they became silent + " 1x they beckoned + " 6x they began + " 1x they began bringing + " 1x they began coasting along + " 1x they began coming up + " 2x they began declaring + " 1x they began glorifying + " 1x they began laying + " 1x they began making + " 1x they began proclaiming + " 1x they began questioning + " 1x they began reasoning + " 1x they began speaking + " 1x they began to beat [him] + " 1x they began to confer + " 1x they began to go away + " 1x they began to inquire + " 1x they began to laugh at + " 1x they began to leave + " 1x they began to lighten + " 1x they began to make + " 1x they began to say + " 1x they began to stone [him] + " 1x they began using + " 3x they begged + " 1x they begged [Him] + " 1x they beheld + " 6x they believed + " 1x they bought + " 1x they breed + " 4x they bring + " 7x they brought + " 2x they brought [him] + " 1x they brought [it] + " 1x they brought together + " 1x they buried [her] + " 2x they call + " 1x they call together + " 2x they called + " 1x they called together + " 24x they came + " 1x they came down + " 1x they came out + " 1x they came up + " 1x they carried [it] + " 7x they cast + " 1x they cast [him] + " 1x they cast [them] + " 1x they cast [us] + " 1x they cast away + " 1x they cast out + " 1x they cast upon + " 1x they caught + " 2x they ceased + " 1x they changed + " 1x they chose + " 1x they collected + " 12x they come + " 1x they come out + " 2x they commanded [them] + " 1x they committed + " 1x they compel + " 1x they compelled + " 1x they confidently assert + " 1x they constrained + " 3x they continue + " 2x they continued + " 1x they corrupt themselves + " 1x they could bear + " 1x they counted up + " 5x they cried out + " 4x they crucified + " 1x they crucify + " 2x they cursed + " 1x they deceive + " 1x they defile + " 1x they deliver up + " 2x they delivered + " 1x they delivered up + " 1x they deny [Him] + " 2x they departed + " 3x they desire + " 2x they desired + " 1x they determined + " 5x they did + " 1x they did break + " 1x they did fear + " 1x they did not believe + " 1x they did not understand + " 1x they did receive + " 1x they did recognize + " 1x they did repent + " 1x they did see fit + " 1x they disfigure + " 2x they divided + " 3x they do + " 2x they dragged + " 1x they dragged [him] + " 1x they dragged [them] + " 1x they drank + " 1x they drew + " 3x they drew near + " 1x they drink + " 2x they dwell + " 1x they eat + " 1x they enclosed + " 5x they entered + " 1x they entice + " 1x they exhorted + " 1x they existed + " 1x they faint + " 1x they fall away + " 6x they feared + " 1x they fell + " 1x they filled + " 4x they fled + " 1x they follow + " 5x they followed + " 2x they forgot + " 13x they found + " 1x they found [it] + " 1x they fulfilled [them] + " 1x they gather + " 6x they gave + " 1x they give + " 1x they glorified + " 1x they glorified [Him] + " 1x they go + " 1x they go astray + " 1x they got out + " 1x they grow + " 7x they had + " 1x they had asked for + " 3x they had been + " 1x they had been counted worthy + " 1x they had been discussing + " 1x they had been remembering + " 1x they had believed + " 1x they had cast + " 1x they had come + " 1x they had dined + " 3x they had done + " 1x they had entered + " 1x they had finished + " 1x they had fulfilled + " 1x they had gone + " 1x they had heard + " 2x they had mocked + " 1x they had performed + " 1x they had power + " 1x they had prepared + " 4x they had seen + " 1x they had taken + " 1x they had taught + " 1x they had understood [it] + " 1x they had upheld + " 15x they have + " 1x they have become + " 1x they have been informed + " 1x they have cast off + " 2x they have closed + " 1x they have devoted + " 1x they have died + " 1x they have done in an ungodly way + " 1x they have gone astray + " 2x they have heard + " 1x they have kept + " 2x they have killed + " 3x they have known + " 2x they have laid + " 1x they have loved + " 1x they have pierced + " 1x they have poured out + " 1x they have practiced + " 3x they have seen + " 1x they have self-control + " 1x they have suffered + " 1x they have taken away + " 1x they have torn down + " 1x they have washed + " 1x they having come + " 6x they hear + " 3x they heard + " 1x they held + " 1x they honor + " 1x they implore + " 1x they injure + " 1x they keep practicing deceit + " 2x they kept + " 1x they kept crying out + " 1x they kept giving + " 1x they kept insisting + " 1x they kept saying + " 1x they kept striking + " 4x they killed + " 1x they killed [him] + " 11x they knew + " 3x they know + " 7x they laid + " 1x they laid on [us] + " 1x they launched out + " 1x they lead + " 1x they learn + " 3x they led + " 3x they led [Him] away + " 2x they led away + " 1x they led away [Him] + " 1x they left [them] + " 3x they let down + " 2x they let go + " 1x they lie + " 2x they lifted up + " 1x they love + " 1x they loved + " 1x they made a calf + " 1x they made secure + " 1x they make known + " 1x they marched up + " 3x they marveled + " 1x they may adorn + " 3x they may be + " 1x they may be disciplined + " 1x they may be saved + " 1x they may be sound + " 1x they may behold + " 1x they may believe + " 1x they may boast + " 1x they may eat + " 1x they may glorify + " 3x they may have + " 1x they may have glory + " 1x they may know + " 1x they may see + " 1x they may take hold + " 1x they may train + " 1x they may turn + " 2x they might accuse + " 1x they might anoint + " 1x they might appear + " 1x they might ask + " 2x they might be + " 1x they might be able + " 1x they might be found + " 1x they might be judged + " 1x they might be persecuted + " 1x they might be punished + " 1x they might be saved + " 1x they might be seen + " 1x they might be stoned + " 1x they might be taken away + " 1x they might become discouraged + " 1x they might bring [him] safely + " 3x they might buy + " 1x they might cast + " 2x they might cast out + " 2x they might catch + " 1x they might come to their senses + " 1x they might console + " 1x they might crucify + " 1x they might desire + " 3x they might destroy + " 3x they might do + " 3x they might eat + " 1x they might fall + " 1x they might find [reason] + " 1x they might go + " 1x they might grow wanton against + " 1x they might have [grounds] + " 1x they might have drunk freely + " 1x they might hear + " 4x they might kill + " 1x they might kill [Him] + " 1x they might lead away + " 1x they might live + " 1x they might lodge + " 1x they might make [Him] + " 1x they might obtain + " 1x they might open + " 1x they might palpate for + " 1x they might press upon + " 1x they might punish + " 1x they might purify + " 3x they might put to death + " 4x they might receive + " 1x they might receive [the] + " 1x they might say + " 3x they might see + " 3x they might seize + " 1x they might set before + " 1x they might set before [them] + " 1x they might sound the trumpets + " 1x they might speak against you + " 1x they might stone + " 1x they might tell + " 3x they might touch + " 1x they might trap + " 1x they might worship + " 1x they mocked + " 1x they noticed + " 2x they obey + " 1x they offer + " 1x they offered + " 1x they ought + " 1x they passed through + " 1x they perceived + " 1x they perished + " 1x they persecute + " 2x they persecuted + " 2x they placed + " 1x they plotted together + " 1x they pour + " 1x they preached + " 3x they prepared + " 1x they presented + " 1x they proclaimed abroad + " 1x they profess + " 1x they put [Him] + " 1x they put [it] + " 1x they put around + " 1x they put forward + " 2x they put on + " 1x they put on [it] + " 1x they put to death + " 1x they put up + " 1x they put upon + " 3x they questioned + " 1x they railed at + " 1x they ran + " 1x they ran aground + " 1x they ran around + " 1x they reasoned + " 2x they receive + " 6x they received + " 1x they received sight + " 1x they recognize + " 1x they recognized + " 1x they rejected + " 3x they rejoiced + " 1x they rejoiced [with] + " 3x they related + " 2x they remembered + " 1x they removed + " 4x they repented + " 1x they reported back + " 1x they requested + " 1x they rested + " 6x they returned + " 3x they rise + " 2x they rushed + " 1x they sacrifice + " 48x they said + " 2x they sailed + " 1x they sailed down + " 2x they sat down + " 12x they saw + " 16x they say + " 6x they see + " 1x they seek + " 1x they seize + " 1x they seized + " 2x they send + " 2x they sent + " 1x they sent [them] off + " 1x they sent away + " 1x they sent forth + " 1x they set + " 1x they set [it] before + " 1x they set [them] + " 1x they set a price on + " 1x they set in uproar + " 1x they shall ask + " 1x they shall be ashamed + " 1x they shall call upon + " 1x they shall eat + " 1x they shall enter + " 1x they shall exclude + " 1x they shall give up + " 1x they shall harm + " 1x they shall have blasphemed + " 1x they shall have completed + " 1x they shall have seen + " 1x they shall insult + " 1x they shall know + " 1x they shall repent + " 1x they shall rest + " 1x they shall torment [them] + " 1x they shall trample upon + " 1x they should answer + " 1x they should ask for + " 2x they should be + " 1x they should be able + " 1x they should be defiled + " 1x they should be made perfect + " 1x they should be saved + " 1x they should be silent + " 1x they should be written + " 1x they should believe + " 1x they should bring in + " 1x they should come + " 1x they should fall + " 1x they should glorify + " 1x they should go + " 1x they should go before + " 2x they should hear + " 3x they should kill + " 2x they should make + " 1x they should nourish + " 1x they should remain + " 1x they should repent + " 1x they should say + " 3x they should see + " 1x they should shine + " 1x they should take + " 3x they should tell + " 1x they should turn + " 3x they should understand + " 1x they shouted + " 2x they sow + " 1x they spat + " 2x they speak + " 1x they speak against + " 1x they speak evil of + " 3x they spoke + " 1x they sprout + " 4x they stayed + " 1x they stirred up + " 1x they stoned + " 1x they stood + " 1x they stood still + " 2x they stopped + " 1x they stretch forward to + " 1x they struck on the head + " 1x they submitted + " 1x they suborned + " 1x they take with [them] + " 1x they tear to pieces + " 1x they testify against + " 1x they themselves + " 1x they think + " 1x they think it strange + " 2x they thought + " 2x they told + " 2x they took + " 1x they took counsel together + " 1x they took hold of + " 2x they took off + " 1x they took offense + " 1x they took to [them] + " 4x they took up + " 1x they tremble + " 1x they understand + " 1x they understand not + " 4x they understood + " 1x they untied + " 1x they wandered + " 3x they wash + " 6x they went + " 7x they went away + " 2x they went down + " 1x they went forth + " 1x they went on through + " 4x they went out + " 2x they went up + " 20x they were + " 10x they were able + " 1x they were accusing + " 7x they were afraid + " 3x they were afraid of + " 2x they were amazed + " 1x they were appointed + " 4x they were asking + " 1x they were asking [them] + " 1x they were assembled + " 7x they were astonished + " 2x they were attempting + " 2x they were baptized + " 4x they were begging + " 1x they were being given in marriage + " 1x they were being swamped + " 3x they were bringing + " 1x they were broken off + " 1x they were building + " 1x they were buying + " 1x they were carried over + " 1x they were casting out + " 1x they were choosing out + " 1x they were cleansed + " 2x they were coming + " 1x they were coming out [of them] + " 1x they were confessing + " 1x they were contending + " 1x they were crying + " 5x they were crying out + " 1x they were cut + " 1x they were cut [to the heart] + " 1x they were delivering + " 1x they were desiring + " 1x they were disciplining [us] + " 3x they were drinking + " 1x they were driven along + " 1x they were drowned + " 3x they were eating + " 1x they were entrusted with + " 1x they were expecting + " 3x they were filled + " 2x they were filled with + " 1x they were finding [any] + " 1x they were following + " 1x they were frightened + " 2x they were glorifying + " 1x they were gnawing + " 4x they were going + " 1x they were going forth + " 1x they were greatly amazed + " 2x they were grieved + " 2x they were grumbling + " 1x they were guarding + " 1x they were hearing + " 2x they were holding + " 1x they were indignant + " 1x they were instructed + " 1x they were judged + " 1x they were killed + " 1x they were kissing + " 1x they were kneeling down + " 2x they were laughing at + " 1x they were laying + " 1x they were made bitter + " 1x they were marrying + " 1x they were multiplied + " 1x they were offended + " 1x they were offering + " 1x they were overcome + " 1x they were partaking + " 2x they were passing + " 1x they were passing through + " 1x they were pierced + " 1x they were planting + " 1x they were praying for + " 1x they were preaching the gospel + " 1x they were proclaiming [it] + " 1x they were questioning [Him] + " 3x they were reasoning + " 1x they were rejoicing + " 1x they were rejoicing with + " 1x they were ridiculing + " 1x they were sawed in two + " 13x they were saying + " 1x they were scorched + " 1x they were seeing + " 6x they were seeking + " 1x they were seized + " 2x they were selling + " 1x they were sent away + " 1x they were serving + " 4x they were silent + " 2x they were speaking + " 1x they were spreading + " 1x they were stoning + " 1x they were strewn + " 1x they were supposing + " 1x they were thinking [themselves] + " 1x they were to sacrifice + " 1x they were tried + " 1x they were urgent + " 1x they were warming themselves + " 1x they were watching + " 1x they were welcomed + " 1x they were willing + " 1x they were wishing + " 1x they were wondering + " 1x they who + " 1x they will advance + " 1x they will allow + " 4x they will be + " 1x they will be called + " 1x they will be ceased + " 1x they will be changed + " 1x they will be done away + " 1x they will be heard + " 1x they will be in bondage + " 1x they will be tormented + " 1x they will be turned aside + " 1x they will be won over + " 3x they will betray + " 1x they will bring + " 1x they will burn + " 1x they will call + " 1x they will carry out + " 2x they will cast + " 1x they will cast out + " 2x they will come + " 1x they will come forth + " 2x they will condemn + " 1x they will deliver + " 2x they will do + " 1x they will eat + " 1x they will endure + " 2x they will enslave + " 1x they will exploit + " 1x they will faint + " 1x they will fall + " 3x they will fast + " 1x they will find + " 1x they will flog + " 1x they will follow + " 1x they will gather + " 1x they will gather around [them] + " 1x they will gather together + " 3x they will give + " 1x they will go + " 2x they will hear + " 1x they will hunger + " 1x they will keep + " 4x they will kill + " 2x they will lay + " 1x they will lead + " 1x they will long + " 1x they will make known + " 2x they will mislead + " 1x they will mock + " 1x they will persecute + " 2x they will prophesy + " 1x they will put + " 1x they will put to death + " 2x they will receive + " 2x they will reign + " 1x they will repent + " 1x they will respect + " 1x they will rest + " 2x they will say + " 2x they will see + " 1x they will shave + " 1x they will slay + " 1x they will speak + " 1x they will surround + " 1x they will take up + " 1x they will trample upon + " 1x they will turn away + " 1x they will walk + " 2x they will worship + " 1x they wished + " 1x they withdrew + " 1x they witness against + " 2x they worship + " 5x they worshiped + " 1x they would be willing + " 1x they would have crucified + " 3x they would have had + " 1x they would have remained + " 2x they would have repented + " 1x they would live + " 4x thief + " 4x thieves + " 1x thigh + " 10x thing + " 1x thing formed + " 26x things + " 1x things hidden + " 1x things made + " 1x things of the sea + " 2x things present + " 3x things sacrificed to idols + " 1x things that [they] + " 2x things to come + " 1x things which + " 1x things willed + " 8x think + " 1x think on + " 5x think you + " 6x thinking + " 2x thinks + " 2x thinks [himself] + " 42x third + " 2x third [day] + " 1x third story + " 4x third time + " 2x thirst + " 4x thirsting + " 1x thirsting for + " 1x thirsts + " 9x thirty + " 2x thirtyfold + " 605x this + " 1x this One + " 1x this [Child] + " 1x this [end] + " 4x this [is] + " 19x this [man] + " 1x this [matter] + " 4x this [one] + " 1x this [passage] + " 1x this [reason] + " 1x this [time] + " 3x this [woman] + " 7x this day + " 1x this desolate place + " 2x this man + " 10x this one + " 1x this one [is] + " 1x this one [was] + " 1x this sort + " 1x this time + " 5x this very + " 1x this very thing + " 2x this way + " 2x thistles + " 14x thorns + " 1x thorny + " 1x thoroughfares + " 1x thoroughly warned + " 432x those + " 1x those [hired] + " 1x those also + " 1x those being soldiers + " 1x those doing + " 1x those in your charge + " 1x those ones + " 1x those saying + " 2x those that + " 1x those things + " 1x those which + " 14x those who + " 3x those whom + " 9x though + " 3x thought + " 1x thought fit + " 10x thoughts + " 25x thousand + " 1x thousands + " 1x threatened + " 1x threatening + " 2x threats + " 64x three + " 1x three hundred + " 1x three months + " 1x three thousand + " 11x three times + " 1x three years + " 1x threshing + " 2x threshing floor + " 1x threw + " 1x threw [him] into convulsions + " 1x threw down + " 1x threw into convulsions + " 1x throat + " 50x throne + " 7x thrones + " 242x through + " 1x through [the] + " 1x through [the] Spirit + " 1x through [the] mouth + " 1x through seeing + " 1x through that + " 1x through unbelief + " 1x through your + " 12x throughout + " 2x throw + " 1x throw away + " 1x throwing + " 1x thrust away + " 1x thunderings + " 6x thunders + " 63x thus + " 1x thus [shall be] + " 1x thus so + " 1x tiles + " 67x time + " 1x time [are] + " 1x time [for] + " 1x time appointed + " 1x time of night + " 1x time without food + " 12x times + " 1x tip + " 2x tithes + " 1x title + " 1199x to + " 1x to Aaron + " 9x to Abraham + " 1x to Apphia + " 2x to Archippus + " 1x to Baal + " 4x to Babylon + " 8x to Caesar + " 1x to Cephas + " 3x to Christ + " 2x to Damascus + " 1x to Father + " 1x to Gallio + " 1x to Gentiles + " 66x to God + " 2x to Greek + " 1x to Greeks + " 1x to Herod + " 199x to Him + " 2x to Him [be] + " 1x to Him who + " 5x to Himself + " 1x to His + " 5x to Israel + " 2x to James + " 15x to Jesus + " 3x to Jewish + " 2x to Jews + " 3x to John + " 3x to Joseph + " 1x to Judaize + " 1x to Judas + " 1x to Macedonians + " 1x to Mary + " 32x to Me + " 2x to Moses + " 1x to Myself + " 5x to Paul + " 11x to Peter + " 1x to Pharaoh + " 3x to Philip + " 4x to Pilate + " 1x to Sarah + " 2x to Satan + " 1x to Saul + " 1x to Silas + " 3x to Simon + " 1x to Thomas + " 18x to You + " 1x to [her] + " 1x to [let him] have + " 1x to [our] + " 7x to [the] + " 1x to [the] Jewish + " 1x to [the] Law + " 3x to [the] Lord + " 1x to [the] Pharisees + " 1x to [the] blind + " 1x to [the] blood + " 1x to [the] captives + " 1x to [the] church + " 1x to [the] dead + " 1x to [the] faithful + " 1x to [the] ground + " 2x to [the] humble + " 1x to [the] judge + " 1x to [the] king + " 1x to [the] only + " 4x to [the] poor + " 1x to [the] sound + " 1x to [the] spirits + " 1x to [the] will + " 1x to [the] wise + " 1x to [the] witnesses + " 1x to [your] elders + " 1x to a believer + " 1x to a centurion + " 1x to a creditor + " 1x to a feast + " 1x to a foreigner + " 3x to a grain + " 1x to a lamp + " 7x to a man + " 1x to a people + " 1x to a voice + " 1x to a wife + " 1x to a woman + " 4x to abide + " 2x to abolish + " 4x to abound + " 2x to abstain + " 1x to abstain from + " 1x to accept + " 1x to accomplish + " 4x to accuse + " 1x to acquire for himself + " 2x to act + " 3x to add + " 2x to admonish + " 1x to affirm strongly + " 1x to aid + " 34x to all + " 1x to all of you + " 2x to amaze + " 2x to angels + " 2x to anoint + " 11x to another + " 3x to answer + " 1x to any + " 2x to anyone + " 1x to appeal to + " 3x to appear + " 1x to appoint + " 1x to appreciate + " 1x to approve + " 2x to arise + " 7x to ask + " 1x to ask for + " 1x to assemble + " 1x to associate with + " 1x to associate with [him] + " 1x to attain + " 2x to attend + " 1x to attend to + " 1x to authorities + " 1x to avenge + " 2x to await + " 1x to awaken + " 3x to baptize + " 1x to barbarians + " 120x to be + " 1x to be [taken] + " 4x to be able + " 1x to be abolished [is] + " 1x to be about + " 1x to be absent + " 3x to be accomplished + " 1x to be accounted worthy + " 1x to be addressed + " 1x to be alive + " 1x to be amazed + " 1x to be at home + " 6x to be baptized + " 2x to be baptized [with] + " 1x to be behaving improperly + " 2x to be betrayed + " 1x to be bold + " 3x to be born + " 2x to be bound + " 1x to be broken + " 2x to be broken into + " 7x to be brought + " 1x to be burdensome to + " 9x to be called + " 4x to be cast + " 3x to be circumcised + " 1x to be clothed + " 1x to be clothed with + " 1x to be completed + " 1x to be concealed + " 2x to be credited + " 3x to be crucified + " 1x to be daring + " 1x to be deficient + " 1x to be delivered + " 1x to be devoted to + " 1x to be devout + " 2x to be done + " 1x to be drawing near + " 1x to be drunk + " 1x to be encouraged together + " 1x to be enlarged + " 1x to be enslaved + " 1x to be entrusted with + " 1x to be equipped + " 1x to be examined + " 1x to be fed + " 1x to be found + " 1x to be fulfilled + " 1x to be full + " 4x to be given + " 1x to be given up + " 1x to be glorified + " 1x to be going + " 1x to be granted + " 1x to be greatly awe-struck + " 1x to be grieved + " 1x to be guarded + " 4x to be healed + " 2x to be hidden + " 2x to be high-minded + " 1x to be hindered + " 6x to be ignorant + " 1x to be in good health + " 1x to be in need + " 1x to be in submission + " 1x to be indignant + " 5x to be judged + " 3x to be justified + " 2x to be kept + " 7x to be killed + " 1x to be lacking + " 1x to be leaving aside + " 1x to be led away [to death] + " 1x to be left behind + " 2x to be lifted up + " 2x to be loosed + " 1x to be made + " 1x to be made like + " 1x to be married + " 1x to be marveled at + " 1x to be merry + " 1x to be named + " 1x to be obedient + " 1x to be obtained + " 2x to be of mind + " 1x to be present + " 1x to be proclaimed + " 1x to be purified + " 1x to be put + " 1x to be put to death + " 2x to be raised + " 1x to be read + " 1x to be reckoned + " 1x to be registered + " 4x to be rejected + " 1x to be released + " 1x to be renewed + " 6x to be revealed + " 2x to be rich + " 1x to be sacrificed + " 1x to be satisfied + " 9x to be saved + " 1x to be secured + " 2x to be seen + " 1x to be self-controlled + " 2x to be served + " 1x to be set before [them] + " 1x to be set forward + " 1x to be set free + " 1x to be shaken + " 1x to be shaven + " 1x to be shorn + " 1x to be silent + " 1x to be sober-minded + " 1x to be sold + " 1x to be sorrowful + " 2x to be spoken + " 1x to be standing + " 1x to be stoned + " 2x to be strengthened + " 1x to be struck + " 2x to be subject + " 2x to be tempted + " 1x to be trampled upon + " 1x to be troubled + " 1x to be unclothed + " 2x to be written + " 1x to be zealous + " 1x to beam forth + " 4x to bear + " 1x to bear children + " 1x to bear them + " 2x to beat + " 1x to became + " 13x to become + " 1x to become inflamed + " 1x to beg + " 1x to beg [him to do] + " 1x to behold [it] + " 8x to believe + " 1x to belong + " 3x to betray + " 2x to beware + " 1x to bid farewell + " 2x to bind + " 3x to blaspheme + " 1x to blind + " 5x to boast + " 1x to borrow + " 2x to break + " 1x to bridle + " 7x to bring + " 1x to bring [him] + " 1x to bring against [him] + " 1x to bring down + " 3x to bring forth + " 1x to bring glad tidings + " 1x to bring in + " 3x to bring out + " 1x to bring together + " 1x to bring up + " 1x to brothers + " 2x to build + " 1x to build up + " 1x to burden + " 1x to burn + " 1x to burn incense + " 1x to burn with passion + " 4x to bury + " 3x to buy + " 6x to call + " 1x to call upon + " 2x to capture + " 4x to carry + " 1x to carry about + " 1x to carry out + " 4x to cast + " 2x to cast [it] + " 10x to cast out + " 1x to catch + " 1x to catch Him in + " 1x to change + " 1x to children + " 4x to circumcise + " 1x to classify + " 3x to cleanse + " 1x to clear + " 49x to come + " 2x to come down + " 1x to come in + " 2x to come near + " 2x to come out + " 1x to come to know + " 2x to come to pass + " 1x to come up + " 1x to comfort + " 1x to comfort [him] + " 1x to command [them] + " 1x to commend + " 2x to commit adultery + " 2x to commit sexual immorality + " 1x to compare + " 3x to complete + " 1x to comprehend + " 1x to conduct oneself + " 1x to conduct ourselves + " 2x to confirm + " 1x to consider + " 1x to consume + " 1x to contend earnestly + " 2x to continue + " 1x to continue sinning + " 1x to contradict + " 1x to control + " 2x to convict + " 1x to cover + " 1x to cover up + " 2x to crucify + " 1x to cry out + " 2x to curse + " 1x to dare + " 1x to darkness + " 2x to death + " 2x to deceive + " 1x to decide + " 2x to declare + " 1x to decline + " 1x to decrease + " 1x to defend myself + " 2x to defile + " 1x to delay + " 4x to deliver + " 1x to demons + " 1x to denounce + " 1x to deny + " 1x to deny [it] + " 8x to depart + " 1x to despair + " 9x to destroy + " 1x to destruction + " 1x to devote themselves to + " 2x to devour + " 17x to die + " 1x to die together + " 1x to die with + " 1x to direct + " 3x to discern + " 1x to dishonor + " 1x to dispute with + " 1x to divide + " 3x to divorce + " 48x to do + " 2x to do evil + " 3x to do good + " 2x to draw + " 1x to draw away + " 1x to draw up + " 1x to draw with + " 17x to drink + " 1x to drink [it] + " 1x to drive + " 4x to dwell + " 15x to each + " 1x to each one + " 2x to each other + " 42x to eat + " 2x to encourage + " 1x to endure [it] + " 1x to engage + " 1x to enlighten + " 24x to enter + " 3x to enter in + " 1x to escape + " 2x to establish + " 1x to esteem + " 2x to every + " 9x to everyone + " 1x to evil + " 1x to evildoers + " 2x to examine + " 1x to exclude + " 1x to excuse themselves + " 2x to execute + " 1x to exercise forbearance + " 1x to exhort + " 1x to explain himself + " 1x to expose publicly + " 1x to face + " 1x to fail + " 1x to faithful + " 2x to fall + " 1x to fall away + " 1x to fall down + " 3x to farmers + " 3x to fast + " 1x to fear + " 1x to feed + " 1x to feel + " 1x to fill + " 1x to fill up + " 2x to find + " 3x to finish + " 1x to fish + " 3x to flee + " 1x to fleshly + " 2x to flog + " 3x to follow + " 2x to forbid + " 1x to forget + " 6x to forgive + " 1x to four + " 1x to frighten + " 4x to fulfill + " 2x to gain + " 2x to gather + " 2x to gather together + " 1x to get + " 1x to get drunk + " 37x to give + " 1x to give [them] + " 1x to give birth + " 2x to give heed + " 1x to give thanks + " 1x to give up + " 1x to gloom + " 2x to glorify + " 22x to go + " 6x to go away + " 2x to go before + " 1x to go beyond + " 3x to go forth + " 4x to go in + " 1x to go on foot + " 4x to go out + " 3x to go up + " 1x to go with + " 1x to gold + " 2x to good + " 1x to governors + " 1x to graft in + " 1x to grant + " 1x to great + " 1x to grow together + " 3x to guard + " 3x to happen + " 4x to harm + " 1x to hate + " 1x to haul in + " 19x to have + " 1x to have a fair appearance + " 2x to have become + " 1x to have been + " 1x to have been commended + " 1x to have been formed + " 1x to have been fulfilled + " 1x to have been given + " 1x to have been grieved + " 1x to have been inferior + " 1x to have been made manifest + " 1x to have been sold + " 1x to have begun + " 1x to have carried out + " 1x to have caused + " 1x to have confidence + " 1x to have died + " 1x to have done + " 1x to have escaped + " 1x to have fallen short + " 1x to have fully proclaimed + " 1x to have hope + " 1x to have imparted + " 1x to have incurred + " 2x to have known + " 1x to have obtained + " 1x to have pitied + " 1x to have pleased + " 1x to have put on + " 1x to have risen + " 1x to have seen + " 1x to have set sail + " 2x to have space + " 2x to have suffered + " 1x to have taken hold [of it] + " 1x to have taken place + " 1x to have turned + " 7x to heal + " 32x to hear + " 1x to hear of + " 2x to help + " 50x to her + " 247x to him + " 1x to him whom + " 3x to himself + " 1x to hire + " 1x to hunger + " 1x to imitate + " 1x to impart + " 1x to impart life + " 1x to implore + " 1x to impurity + " 1x to increase + " 1x to infants + " 3x to inherit + " 1x to injure + " 1x to inquire + " 1x to intercede + " 1x to invoke + " 15x to it + " 2x to join + " 5x to judge + " 1x to justify + " 12x to keep + " 1x to keep back + " 1x to keep from + " 1x to keep up your courage + " 1x to kick + " 21x to kill + " 1x to kindle anew + " 1x to kiss + " 1x to knock + " 23x to know + " 1x to know [it] + " 4x to lay + " 1x to lay against + " 2x to lay down + " 2x to lay hold of + " 3x to lead + " 3x to learn + " 2x to leaven + " 1x to let [me] go + " 1x to lie + " 1x to lie to + " 1x to lift up + " 1x to lift up herself + " 1x to listen + " 3x to little children + " 11x to live + " 1x to live quietly + " 1x to live together + " 3x to look + " 2x to look intently + " 1x to lose + " 2x to lose heart + " 9x to love + " 1x to lust after + " 13x to make + " 2x to make a defense + " 1x to make abound + " 1x to make accusation + " 1x to make acquaintance with + " 3x to make known + " 2x to make perfect + " 1x to make propitiation for + " 2x to make ready + " 1x to make recline + " 1x to make speak + " 1x to make war + " 1x to make wise + " 3x to man + " 2x to manage + " 1x to manage their households + " 1x to manifest + " 2x to many + " 5x to marry + " 99x to me + " 1x to meet + " 14x to men + " 1x to mention + " 1x to men’s + " 2x to minister + " 1x to mislead + " 2x to mistreat + " 1x to mix with + " 2x to mock + " 1x to more + " 1x to more than + " 1x to move + " 1x to multiply + " 1x to myriads + " 1x to myself + " 1x to myths + " 1x to neglect + " 1x to no + " 6x to no one + " 2x to none + " 1x to nullify + " 1x to number + " 3x to obey + " 1x to observe + " 2x to obtain + " 4x to offer + " 1x to offer sacrifices + " 1x to offer up + " 10x to one + " 5x to one another + " 8x to open + " 1x to order + " 1x to other + " 6x to others + " 1x to others [there may be] + " 1x to overcome + " 1x to overreach + " 1x to overthrow + " 2x to parents + " 4x to partake + " 6x to pass + " 1x to pass away + " 1x to pass by + " 2x to pass through + " 2x to pay + " 1x to perch + " 1x to perfect + " 1x to perform + " 3x to perish + " 1x to pervert + " 1x to place + " 1x to play + " 4x to please + " 1x to please [Him] + " 1x to plow + " 1x to pluck [the] + " 2x to plunder + " 1x to point out + " 1x to practice + " 1x to praise + " 11x to pray + " 5x to preach + " 1x to preach [the] good news + " 1x to preach good news + " 5x to preach the gospel + " 1x to premeditate + " 2x to prepare + " 1x to prepare for burial + " 5x to present + " 1x to present [you] + " 1x to press upon + " 1x to press upon [Him] + " 1x to proceed + " 8x to proclaim + " 4x to produce + " 1x to profane + " 3x to prophesy + " 1x to prophets + " 1x to prosper + " 4x to prove + " 1x to provoke to jealousy + " 5x to put + " 1x to put [them] + " 1x to put off + " 2x to put on + " 3x to put to death + " 1x to put to silence + " 1x to quarrel + " 1x to quarrel about words + " 1x to quench + " 4x to question + " 1x to rain + " 1x to raise + " 2x to raise up + " 1x to reach + " 1x to read + " 2x to reap + " 1x to reason + " 1x to rebuild it + " 2x to rebuke + " 18x to receive + " 2x to receive [it] + " 1x to receive back + " 1x to reckon + " 2x to recline + " 1x to reconcile + " 1x to redeem + " 1x to refuse + " 2x to register + " 3x to reign + " 7x to rejoice + " 4x to release + " 1x to release [Him] + " 10x to remain + " 3x to remember + " 1x to remind + " 1x to remove + " 2x to repay + " 3x to repent + " 1x to reply + " 1x to reply to + " 2x to report + " 2x to resist + " 1x to restore [them] + " 1x to result in + " 5x to return + " 1x to reveal + " 2x to reveal [Him] + " 3x to righteousness + " 3x to rise + " 1x to rise [again] + " 1x to rule + " 2x to rule over + " 1x to rulers + " 1x to sacrifice + " 2x to sail + " 1x to sail by + " 1x to saints + " 1x to salute + " 2x to satisfy + " 18x to save + " 39x to say + " 1x to scorch + " 52x to see + " 1x to seeds + " 4x to seek + " 5x to seize + " 1x to seize [them] + " 1x to sell + " 8x to send + " 1x to send [her] away + " 1x to send [him] + " 3x to send away + " 1x to send for + " 2x to send forth + " 1x to sensible [ones] + " 1x to sensuality + " 1x to separate + " 11x to serve + " 1x to set + " 1x to set at variance + " 1x to set before + " 1x to set out + " 1x to set sail + " 2x to settle + " 1x to shake + " 1x to share + " 1x to shed + " 1x to shepherd + " 1x to shine upon + " 7x to show + " 2x to shut + " 1x to sift + " 1x to silence + " 1x to silver + " 5x to sin + " 1x to sink + " 1x to sinners + " 1x to sins + " 4x to sit + " 3x to sit down + " 1x to slavery + " 1x to small + " 1x to sons + " 1x to sound [the] trumpet + " 1x to sound [their] trumpets + " 3x to sow + " 46x to speak + " 1x to speak boldly + " 2x to speak evil of + " 1x to speak of + " 1x to speak to [you] + " 1x to specify + " 1x to spend time + " 1x to spirits + " 1x to spiritual + " 1x to spit + " 1x to spit upon + " 1x to spread abroad + " 1x to spy out + " 9x to stand + " 1x to stand before + " 3x to stay + " 1x to steal + " 1x to stir up + " 3x to stone + " 1x to stop + " 1x to storm + " 3x to strengthen + " 3x to strike + " 1x to strive earnestly + " 1x to strive together with + " 3x to subdue + " 1x to such as these + " 1x to sue + " 10x to suffer + " 1x to suffer affliction + " 1x to suffer affliction with + " 1x to suffer dishonor + " 1x to supply + " 4x to swear + " 1x to swim + " 1x to sympathize + " 18x to take + " 1x to take a tenth + " 1x to take about + " 2x to take along + " 4x to take away + " 1x to take by force + " 1x to take down + " 1x to take hold + " 1x to take in + " 7x to take place + " 1x to take up + " 12x to teach + " 1x to teach other doctrines + " 6x to tell + " 1x to ten + " 1x to test + " 3x to testify + " 2x to testify fully + " 3x to that + " 1x to that one + " 395x to the + " 1x to the Jewish + " 7x to the [One] + " 18x to the [one] + " 3x to the [ones] + " 1x to the [parts] + " 1x to the authorities + " 1x to the cowardly + " 1x to the distance of + " 2x to the extent + " 1x to the feet + " 1x to the form + " 1x to the one + " 1x to the own + " 1x to the place + " 6x to the things + " 1x to the woman + " 1x to their own + " 385x to them + " 1x to them [the] + " 3x to themselves + " 1x to there + " 1x to these + " 2x to think + " 2x to this + " 3x to this [man] + " 2x to this [one] + " 2x to this one + " 67x to those + " 1x to those [who are] + " 1x to those knowing + " 2x to those who + " 1x to throw over + " 1x to tolerate + " 1x to torment + " 2x to touch + " 1x to trample upon + " 1x to tread + " 1x to treasure up + " 1x to trouble + " 1x to try + " 4x to turn + " 1x to turn away + " 1x to two + " 3x to understand + " 1x to understand [them] + " 1x to unite himself + " 3x to untie + " 1x to uphold + " 71x to us + " 1x to use authority over + " 1x to use up + " 1x to utter forth + " 1x to venture + " 2x to visit + " 10x to walk + " 1x to walk about + " 3x to wash + " 2x to watch + " 1x to watch out for + " 1x to weep + " 1x to welcome + " 1x to well doers + " 1x to wet + " 4x to what + " 1x to where + " 1x to wherever + " 6x to which + " 1x to whiten + " 40x to whom + " 3x to whom [be] + " 1x to whom [is] + " 4x to will + " 2x to wine + " 1x to winter + " 1x to winter [there] + " 1x to wipe [them] + " 1x to withhold + " 2x to withstand + " 1x to women + " 6x to work + " 1x to work with + " 10x to worship + " 1x to wrath + " 14x to write + " 473x to you + " 3x to yourself + " 8x to yourselves + " 21x today + " 13x together + " 1x together they + " 1x together with + " 1x together with [them] + " 3x toil + " 2x toiled + " 3x toiling + " 4x told + " 2x told [it] + " 35x tomb + " 11x tombs + " 9x tomorrow + " 1x tone + " 15x tongue + " 1x tongue [is] + " 12x tongues + " 16x took + " 1x took [You] in + " 1x took [it] + " 2x took away + " 1x took care + " 1x took delight + " 1x took hold + " 1x took hold of + " 1x took part in + " 3x took place + " 1x took place [when] + " 3x took up + " 2x took you up + " 2x tooth + " 4x top + " 1x topaz + " 1x torches + " 8x torment + " 1x tormented + " 2x torrents + " 1x tossed + " 2x touch + " 7x touched + " 1x touches + " 89x toward + " 1x toward God + " 1x toward the + " 2x toward you + " 1x towel + " 1x tower + " 8x town + " 1x town clerk + " 5x towns + " 1x tracing his ancestry + " 1x trade + " 1x trade by + " 1x traded + " 10x tradition + " 2x traditions + " 1x trainer + " 2x training + " 1x transferred [us] + " 6x transgression + " 2x transgressions + " 1x transgressors + " 6x translated + " 1x translation + " 1x transparent + " 1x travailing + " 1x travails together + " 2x traveled abroad + " 1x traveled back + " 1x traveling with + " 1x treacherous + " 2x treading out grain + " 1x treads + " 12x treasure + " 5x treasures + " 3x treasuring up + " 6x treasury + " 1x treated shamefully + " 19x tree + " 8x trees + " 1x trembled + " 8x trembling + " 8x trespass + " 8x trespasses + " 3x trial + " 4x trials + " 6x tribe + " 8x tribes + " 24x tribulation + " 10x tribulations + " 6x tribute + " 2x trickery + " 1x tried [Me] + " 1x trimmed + " 1x trodden down + " 2x troop + " 1x troops + " 6x trouble + " 1x trouble Yourself + " 1x trouble you + " 5x troubled + " 1x troubles + " 1x troublesome + " 1x troubling + " 45x true + " 1x true [are] + " 1x true [ones] + " 1x true [riches] + " 53x truly + " 3x trumpet + " 1x trumpeters + " 2x trumpets + " 1x trustees + " 5x trusting + " 1x trustworthy + " 81x truth + " 1x truthfully + " 1x tumult + " 4x tunic + " 4x tunics + " 3x turn + " 1x turn again + " 1x turn away + " 1x turn away from + " 2x turned + " 1x turned aside + " 1x turned away from + " 3x turned back + " 1x turning away + " 2x turning away from + " 1x turns [you] + " 1x twelfth + " 48x twelve + " 1x twelve tribes + " 10x twenty + " 6x twice + " 1x twice ten thousand + " 124x two + " 1x two [by] + " 1x two [women] + " 7x two hundred + " 1x two thousand + " 1x two years + " 1x two years old + " 3x two-edged + " 1x twofold + " 1x twofold more + " 1x types + " 1x unable to be tempted + " 1x unalterable + " 1x unapproachable + " 3x unapproved + " 1x unawares + " 8x unbelief + " 2x unbeliever + " 3x unbelievers + " 15x unbelieving + " 3x unblemished + " 1x unburdensome + " 2x unceasing + " 4x unceasingly + " 1x uncertainly + " 1x unchangeable + " 1x unchangeableness + " 1x uncircumcised + " 18x uncircumcision + " 31x unclean + " 1x unclean [it is] + " 1x unclean person + " 2x uncondemned + " 1x uncovered + " 4x undefiled + " 64x under + " 1x under Aretas + " 1x under [the] law + " 1x under compulsion + " 1x under judgment + " 1x under pretense + " 1x under the earth + " 1x undergirding + " 1x undergoing + " 12x understand + " 5x understand you + " 14x understanding + " 3x understood + " 1x understood they + " 1x undiluted + " 1x unequally yoked together + " 2x unestablished + " 2x unfading + " 1x unfailing + " 1x unfeigned + " 1x unfit + " 6x unfruitful + " 4x ungodliness + " 4x ungodly + " 1x ungodly [ones] + " 2x ungrateful + " 1x unhealthy + " 1x unhinderedly + " 1x unholy + " 2x uninstructed + " 1x uninstructed ones + " 1x united + " 1x united in soul + " 1x united together + " 3x unity + " 1x universe + " 1x unjust [is] + " 1x unjustly + " 1x unknown + " 1x unlawful + " 1x unleavened + " 2x unleavened [bread] + " 1x unless + " 1x unloading + " 1x unloving + " 1x unmarked + " 3x unmarried + " 1x unmarried man + " 1x unmerciful + " 1x unpolished + " 1x unprepared + " 1x unpresentable [parts] + " 2x unprofitable + " 3x unquenchable + " 1x unreasonable + " 1x unrepentant + " 9x unrighteous + " 11x unrighteousness + " 1x unripe figs + " 1x unruly + " 1x unsalty + " 1x unschooled + " 2x unsearchable + " 1x unshakable + " 2x unshrunk + " 1x unspiritual + " 1x unstable + " 1x unstained + " 1x unsubject + " 1x untie you + " 125x until + " 1x untimely birth + " 104x unto + " 2x unto [the] + " 1x unto death + " 2x unto him + " 1x unto those + " 1x unto us + " 1x unto you + " 1x untraceable + " 1x untrustworthy + " 1x untying + " 1x unwashed + " 1x unwholesome + " 1x unwillingly + " 1x unwise + " 1x unworthily + " 2x unworthy + " 1x up + " 5x up to + " 1x upholding + " 1x uplifted + " 254x upon + " 1x upon [the] + " 1x upon every + " 1x upon her + " 1x upon him + " 1x upon himself + " 1x upon the + " 3x upon them + " 1x upon themselves + " 2x upon you + " 1x upper + " 3x upper room + " 2x upright + " 2x uproar + " 2x upsetting + " 1x upward + " 1x upwards + " 1x urged + " 1x urgently + " 301x us + " 1x us [as] + " 4x use + " 1x used to adorn + " 2x used to treat + " 4x useful + " 1x useless + " 1x uselessness + " 1x uses + " 2x using + " 1x using [it] as their own + " 1x using boldness + " 1x utensils + " 1x utmost + " 1x utterly idolatrous + " 1x uttermost + " 5x vain + " 1x vain conceit + " 1x vain things + " 1x vainly + " 1x valley + " 1x valued highly + " 1x vanished + " 2x vanishing + " 1x vanities + " 1x vapor + " 1x variation + " 2x varieties + " 8x various + " 2x various kinds + " 1x vaunting + " 1x vegetables + " 1x vegetation + " 1x vehemently + " 8x veil + " 1x veiled + " 1x venerable + " 4x vengeance + " 1x verbal abuser + " 1x verbal abusers + " 1x verdict + " 4x very + " 1x very [reason] + " 1x very costly + " 2x very early + " 1x very earnest + " 1x very great + " 1x very heart + " 1x very least + " 3x very little + " 1x very much + " 1x very near + " 1x very precious + " 1x very religious + " 1x very sorrowful + " 2x very well + " 5x vessel + " 6x vessels + " 1x vessels [of] + " 1x vicinity + " 5x victory + " 14x village + " 10x villages + " 1x vindication + " 8x vine + " 2x vinedresser + " 19x vineyard + " 1x violating law + " 2x violence + " 4x violent + " 7x virgin + " 5x virgins + " 2x virtue + " 1x visible + " 7x vision + " 2x visions + " 1x visit + " 1x visited + " 1x visiting + " 1x visiting [here] + " 43x voice + " 7x voices + " 2x void + " 1x vomit + " 3x voyage + " 2x vultures + " 1x wage + " 5x wages + " 1x wagging + " 2x wailing + " 3x waist + " 1x wait for + " 1x waited for + " 1x waiting + " 5x waiting for + " 16x walk + " 6x walked + " 25x walking + " 3x walks + " 8x wall + " 1x walls + " 1x wander homeless + " 2x wandering + " 1x wanted + " 1x wanting + " 9x war + " 1x war will make + " 2x warfare + " 4x warming himself + " 1x warred + " 1x warred [back] + " 1x warring + " 1x warring against + " 3x wars + " 158x was + " 1x was He + " 1x was He abandoned + " 1x was He breaking + " 1x was He indignant + " 1x was I inferior + " 1x was I taught [it] + " 1x was [as] + " 1x was [it] + " 1x was [split] + " 1x was [there] + " 1x was abandoned + " 15x was able + " 2x was abounding + " 7x was about + " 1x was accused + " 1x was accustomed + " 2x was added + " 1x was admonishing [them] + " 1x was adorned + " 1x was affirming + " 1x was afraid + " 1x was afraid of + " 1x was agitated + " 1x was alive + " 1x was allotted + " 1x was allowed + " 2x was angry + " 1x was anointing [them] + " 2x was appointed + " 1x was arrayed + " 4x was asking + " 1x was astonished + " 1x was baptized + " 2x was baptizing + " 3x was begging + " 1x was being broken up + " 1x was being carried + " 1x was being carried out + " 1x was being magnified + " 1x was being swamped + " 1x was believed + " 1x was believed on + " 2x was betraying + " 2x was born + " 1x was born [so] + " 1x was bowing on his knees + " 3x was bringing + " 5x was brought + " 1x was brought in + " 1x was brought up + " 1x was built + " 2x was buried + " 2x was burned up + " 7x was called + " 1x was captured + " 1x was carried + " 2x was carried away + " 1x was carried up + " 2x was cast + " 1x was caught + " 1x was caught up + " 2x was cleansed + " 1x was come + " 2x was coming + " 1x was compelled + " 1x was completed + " 1x was conceived + " 1x was confirmed + " 1x was confounded + " 1x was created + " 1x was credited + " 3x was crucified + " 1x was crucified with [Him] + " 2x was crying out + " 1x was cured + " 1x was customary + " 2x was darkened + " 1x was debating + " 1x was deceived + " 1x was delivered + " 1x was delivered over + " 1x was delivering up + " 1x was desiring + " 2x was destroying + " 1x was determined + " 1x was discipled + " 1x was distracted + " 1x was divided + " 2x was divinely instructed + " 1x was drawing near + " 1x was drawn up + " 2x was dried up + " 1x was drowned + " 1x was dying + " 1x was empowered + " 1x was enraged + " 2x was exhorting + " 1x was expecting + " 5x was filled + " 2x was fitting + " 5x was following + " 1x was formed + " 9x was found + " 5x was fulfilled + " 1x was fulfilling + " 1x was gathered + " 2x was gathered together + " 16x was given + " 3x was giving + " 1x was giving praise + " 1x was glad + " 2x was glorified + " 1x was going + " 1x was going before + " 2x was going down + " 1x was going out + " 1x was going throughout + " 1x was gone + " 1x was governing + " 1x was granted + " 1x was guarding + " 1x was harvested + " 1x was he found + " 1x was he willing + " 5x was healed + " 1x was heard + " 1x was hearing + " 1x was hidden + " 1x was hindered + " 1x was hindering + " 1x was hungry + " 1x was illuminated + " 1x was in an uproar + " 1x was indignant + " 1x was instructed + " 4x was it + " 1x was it credited + " 1x was it necessary for + " 1x was it seen + " 1x was just beginning + " 5x was justified + " 1x was keeping + " 1x was kept + " 2x was killed + " 1x was kissing + " 1x was kneeling down + " 2x was laid + " 1x was laying sick + " 2x was leavened + " 1x was led + " 1x was led up + " 2x was listening + " 1x was listening to + " 1x was loosed + " 3x was lying + " 2x was made + " 1x was made bitter + " 2x was made known + " 1x was made manifest + " 1x was magnifying + " 1x was making an address + " 1x was ministering + " 5x was moved with compassion + " 1x was multiplied + " 1x was occupied + " 1x was offered + " 1x was offering up + " 4x was opened + " 1x was overshadowing + " 2x was owing + " 1x was passing + " 1x was perfected + " 2x was performing + " 2x was perplexed + " 1x was persecuting + " 1x was persuaded + " 1x was picked up + " 3x was pleased + " 1x was pleasing + " 1x was pondering + " 1x was poured out + " 2x was praying + " 1x was prepared + " 1x was preparing + " 2x was proclaimed + " 1x was proclaiming + " 1x was produced + " 1x was prospered + " 1x was provoked + " 1x was publicly portrayed + " 1x was put to death + " 2x was questioning + " 1x was railing at + " 1x was raised + " 1x was raised up + " 1x was rebuking + " 1x was rejoicing + " 1x was remembered + " 2x was restored + " 4x was revealed + " 1x was running together + " 18x was saying + " 1x was seeking + " 3x was seen + " 2x was sent + " 1x was separating + " 1x was serving + " 1x was set + " 2x was shaken + " 1x was shut + " 1x was shut up + " 2x was sick + " 2x was signifying + " 1x was silent + " 11x was sitting + " 1x was sleeping + " 1x was sold + " 8x was speaking + " 1x was spreading + " 2x was standing + " 1x was standing open + " 1x was stirred + " 2x was strengthened + " 1x was striking + " 1x was struck + " 1x was subjected + " 1x was supposed + " 1x was taken away + " 4x was taken up + " 3x was teaching + " 1x was there + " 1x was there found + " 1x was thrown [out] + " 1x was to be born + " 1x was tormented + " 4x was torn + " 1x was translated + " 1x was traveling + " 2x was treasuring up + " 1x was trodden + " 2x was troubled + " 1x was waiting + " 1x was waiting for + " 2x was walking + " 1x was walking along with + " 1x was wanting + " 1x was wearing + " 1x was weeping + " 1x was welcoming + " 1x was well pleased + " 1x was well spoken of + " 2x was willing + " 1x was wishing + " 1x was working with + " 1x was worshipping + " 2x was written + " 1x was written in the past + " 3x wash + " 1x wash away + " 1x washed + " 2x washing + " 2x washings + " 2x waste + " 9x watch + " 8x watching + " 1x watching over + " 2x watchings + " 46x water + " 1x water jars + " 1x water pot + " 1x watered + " 2x watering + " 2x waterless + " 12x waters + " 4x waves + " 52x way + " 3x way of life + " 9x ways + " 104x we + " 1x we [are] + " 1x we [should go] + " 1x we abide + " 31x we are + " 1x we are [those] + " 1x we are able + " 1x we are about + " 1x we are absent + " 1x we are ambassadors + " 1x we are ambitious + " 1x we are attaining + " 2x we are awaiting + " 1x we are being pressed + " 1x we are beside ourselves + " 1x we are comforted + " 1x we are commending + " 1x we are constricted + " 1x we are destined + " 1x we are disciplined + " 1x we are encouraged + " 1x we are faithless + " 1x we are ignorant + " 1x we are in danger of + " 1x we are overextending + " 2x we are perishing + " 1x we are persuaded + " 1x we are receiving + " 1x we are rejoicing + " 1x we are seeking for + " 1x we are slanderously charged + " 1x we are sober-minded + " 1x we are speaking + " 1x we are turning + " 1x we are willing [for] + " 3x we arrived + " 1x we ask + " 1x we await + " 1x we bear + " 1x we bear witness to + " 1x we began speaking + " 1x we beheld + " 5x we believe + " 1x we believed + " 1x we bestow + " 3x we bless + " 1x we boast + " 1x we break + " 1x we brought + " 11x we came + " 1x we command + " 2x we commanded + " 1x we count blessed + " 1x we cry + " 1x we curse + " 1x we deceive + " 1x we declare + " 2x we desire + " 1x we did + " 1x we did proclaim + " 1x we did use + " 2x we die + " 2x we died + " 1x we do + " 1x we do know + " 1x we do stone + " 1x we do want + " 1x we do wish + " 1x we draw near + " 2x we endure + " 1x we entered + " 1x we entreat + " 1x we exhort + " 1x we face death + " 1x we fear + " 1x we find + " 1x we forgive + " 3x we found + " 1x we found out + " 1x we gave + " 1x we gladly accept [it] + " 1x we glory + " 3x we go up + " 2x we groan + " 1x we had + " 1x we had boldness + " 1x we had given instructions + " 1x we had heard + " 1x we had hoped + " 1x we had lived + " 31x we have + " 1x we have announced + " 1x we have asked + " 1x we have attained + " 4x we have become + " 1x we have been approved + " 1x we have been comforted + " 2x we have been made manifest + " 1x we have been making a defense + " 1x we have been released + " 1x we have born + " 1x we have bound + " 1x we have come to know + " 1x we have conducted ourselves + " 1x we have corrupted + " 1x we have died together [with Him] + " 1x we have done + " 1x we have exploited + " 1x we have found + " 1x we have gazed upon + " 2x we have had + " 6x we have heard + " 2x we have hope + " 1x we have known + " 1x we have made known + " 1x we have obtained an inheritance + " 1x we have passed + " 1x we have proven + " 2x we have received + " 1x we have regarded + " 1x we have rejoiced + " 1x we have remembered + " 1x we have renounced + " 1x we have said before + " 5x we have seen + " 1x we have sinned + " 1x we have spoken + " 1x we have witnessed + " 1x we have worked for + " 1x we have wronged + " 1x we hear + " 1x we heard + " 1x we hope for + " 1x we hunger + " 1x we implore + " 1x we journeyed + " 1x we keep + " 1x we kept sailing + " 29x we know + " 1x we landed + " 1x we lie + " 5x we live + " 1x we lord it over + " 2x we lose heart + " 3x we love + " 1x we made a straight course + " 1x we make + " 1x we may attain + " 1x we may be + " 1x we may be delivered + " 1x we may be doing + " 1x we may be glorified together + " 1x we may be justified + " 1x we may die + " 1x we may enter + " 3x we may have + " 2x we may know + " 1x we may lead + " 1x we may live + " 1x we may offer + " 1x we may present + " 1x we may receive + " 1x we may see + " 1x we may serve + " 4x we might ask + " 1x we might be + " 1x we might be justified + " 1x we might celebrate the feast + " 1x we might eat [it] + " 1x we might fall + " 1x we might give + " 2x we might have + " 2x we might live + " 1x we might offend + " 2x we might receive + " 1x we might say + " 1x we might see + " 1x we might sit + " 1x we might sleep + " 1x we might watch + " 1x we more than conquer + " 1x we need + " 2x we ought + " 3x we ourselves + " 1x we partake + " 1x we perish + " 1x we persuade + " 1x we pray + " 2x we preach + " 3x we proclaim + " 2x we proclaimed + " 1x we prophesy + " 1x we put + " 2x we receive + " 1x we received + " 1x we received mercy + " 1x we regard [Him thus] + " 1x we rejoice + " 1x we remained + " 1x we respected [them] + " 1x we sailed + " 2x we sailed under + " 2x we sang a dirge + " 2x we saw + " 1x we say + " 3x we see + " 1x we seized + " 1x we sent + " 2x we set sail + " 1x we shall bear + " 1x we shall have sealed + " 1x we shall let him alone + " 1x we should be + " 1x we should be called + " 1x we should be condemned + " 1x we should be outwitted + " 1x we should be sober + " 1x we should bear fruit + " 2x we should become + " 1x we should believe + " 1x we should call + " 1x we should cleanse + " 1x we should confess + " 2x we should die + " 1x we should draw near + " 1x we should drift away + " 2x we should eat + " 1x we should gather + " 1x we should go forth + " 1x we should go on + " 1x we should grow up + " 1x we should grow weary + " 2x we should hold + " 1x we should hold firmly + " 2x we should keep + " 1x we should kill + " 3x we should live + " 6x we should love + " 1x we should offer + " 1x we should place + " 1x we should pray for + " 3x we should prepare + " 1x we should pursue + " 1x we should put on + " 1x we should remember + " 8x we should say + " 1x we should sleep + " 1x we should think + " 5x we should walk + " 1x we should watch + " 1x we should work + " 1x we sought + " 8x we speak + " 1x we stand + " 1x we started on our way up + " 4x we stayed + " 1x we stumble + " 1x we suffer with [Him] + " 1x we think + " 1x we thought it best + " 2x we toil + " 1x we told before + " 1x we took + " 1x we turn about + " 1x we understand + " 1x we uphold + " 1x we use + " 1x we walk + " 1x we wanted + " 1x we warn + " 1x we went forth + " 1x we went up + " 9x we were + " 1x we were able + " 1x we were born + " 2x we were bound + " 1x we were commanding + " 1x we were driven along + " 1x we were encouraged + " 1x we were entreated + " 2x we were forbidding + " 1x we were held in custody + " 1x we were idle + " 1x we were judging + " 1x we were made to drink + " 1x we were pleased + " 1x we were reconciled + " 1x we were regarded + " 1x we were saved + " 1x we were silent + " 1x we were telling beforehand + " 1x we were weighed + " 1x we will appoint + " 1x we will assure + " 4x we will be + " 1x we will be able + " 1x we will be changed + " 1x we will be content + " 1x we will be found + " 1x we will be saved + " 1x we will believe + " 1x we will come + " 1x we will deny [Him] + " 2x we will do + " 1x we will go + " 1x we will judge + " 1x we will know + " 2x we will live + " 1x we will live together [with Him] + " 1x we will live with + " 1x we will reap a harvest + " 1x we will receive + " 1x we will reign together [with Him] + " 1x we will see + " 1x we will sleep + " 1x we will speak + " 1x we will stand before + " 1x we wipe off + " 1x we wish + " 1x we would come under judgment + " 1x we would have become + " 1x we would have been + " 1x we would have been made + " 1x we would have delivered + " 1x we would lodge + " 1x we write + " 12x weak + " 1x weak things + " 1x weak women + " 1x weaker + " 13x weakness + " 5x weaknesses + " 6x wealth + " 3x weapons + " 1x wearied + " 4x wearing + " 1x wedding + " 5x wedding feast + " 2x wedding feasts + " 1x wedding hall + " 6x weeds + " 5x week + " 8x weep + " 1x weep you + " 24x weeping + " 1x weeping [for] + " 3x weight + " 1x weightier [matters] + " 1x weighty + " 1x welcome + " 1x welcomes + " 31x well + " 1x well doing + " 1x well known + " 1x well pleasing + " 1x well pleasingly + " 8x well-pleasing + " 1x welling up + " 12x went + " 2x went about + " 1x went abroad + " 1x went after + " 11x went away + " 2x went before + " 6x went down + " 6x went forth + " 3x went in + " 22x went out + " 12x went up + " 3x went with + " 1x went you out + " 63x were + " 1x were [in] + " 2x were able + " 2x were about + " 1x were accusing + " 2x were added + " 1x were afraid + " 1x were afraid of + " 5x were amazed + " 1x were anointing + " 1x were ashamed + " 7x were asking + " 1x were assembled + " 6x were astonished + " 1x were at work + " 4x were baptized + " 2x were bearing false testimony + " 1x were bearing witness + " 1x were becoming obedient + " 3x were begging + " 2x were being baptized + " 1x were being done + " 1x were being healed + " 1x were being overlooked + " 1x were being saved + " 1x were being talked about + " 2x were believing + " 4x were born + " 2x were breaking + " 2x were bringing + " 1x were bringing in + " 1x were broken off + " 2x were brought + " 1x were brought safely + " 1x were burned up + " 1x were called + " 1x were calling + " 2x were cast + " 1x were casting [in] + " 1x were cleansed + " 1x were comforted + " 6x were coming + " 1x were commanding that + " 1x were commended + " 2x were completed + " 2x were created + " 6x were crying out + " 1x were cured + " 1x were cut off + " 1x were cutting down + " 1x were darkened + " 1x were deceived + " 1x were demanding + " 1x were departing + " 1x were desiring + " 2x were destroyed + " 1x were detaining + " 1x were disbelieving + " 1x were discussing + " 1x were disobedient + " 1x were dispersed + " 1x were dividing + " 2x were doing + " 1x were dried up + " 1x were eager + " 3x were eating + " 1x were enraged + " 1x were enriched + " 1x were entered + " 1x were falling down before + " 6x were filled + " 1x were finding + " 1x were following + " 5x were fulfilled + " 2x were gathered + " 6x were gathered together + " 4x were given + " 1x were giving + " 1x were giving heed + " 1x were glorifying + " 3x were going + " 2x were going away + " 3x were going out + " 1x were going up + " 1x were going with + " 1x were grafted + " 1x were grafted in + " 1x were greatly amazed + " 1x were greeting + " 3x were grumbling + " 1x were hanging on + " 2x were happening + " 3x were hardened + " 4x were healed + " 1x were held + " 1x were holding + " 1x were hoping + " 1x were hungry + " 1x were imploring + " 1x were in danger + " 1x were increasing + " 1x were indignant + " 1x were inflamed + " 1x were joined + " 1x were judged + " 2x were killed + " 1x were laying [them] + " 1x were licking + " 1x were listening + " 1x were listening to + " 1x were loosed + " 1x were lying + " 1x were made + " 1x were made eunuchs + " 1x were magnifying + " 2x were marveling + " 3x were ministering + " 1x were mourning + " 1x were moved + " 1x were obedient + " 1x were offended + " 8x were opened + " 1x were over and above + " 1x were passing through + " 1x were performed + " 2x were perplexed + " 1x were persecuting + " 2x were persuaded + " 1x were persuaded of + " 1x were placed + " 1x were plucking + " 1x were pressing around + " 1x were prevailing + " 1x were profited + " 1x were quarreling + " 1x were railing at + " 3x were rebuking + " 1x were reclining + " 2x were reclining with + " 1x were rejoicing + " 1x were released + " 1x were returning [home] + " 6x were satisfied + " 1x were saved + " 37x were saying + " 2x were scattered + " 1x were scorched + " 13x were seeking + " 1x were shaken + " 1x were shouting + " 1x were showing + " 1x were shut + " 2x were silent + " 1x were singing praises to + " 1x were sinking + " 1x were sitting + " 1x were sleeping + " 3x were speaking + " 1x were speaking of + " 1x were split + " 1x were spoken + " 1x were spreading [them] + " 2x were standing + " 2x were strengthened + " 1x were swallowed up + " 1x were taking place + " 1x were talking + " 2x were teaching + " 1x were terrified + " 1x were thankful + " 1x were they + " 1x were they able + " 1x were thinking + " 1x were thrown down + " 1x were to be found + " 1x were tortured + " 2x were troubled + " 2x were upbraiding + " 1x were urging [him] + " 1x were wanting + " 1x were washing + " 2x were watching + " 1x were we + " 2x were willing + " 1x were with + " 1x were written + " 1x were yielding + " 3x were you able + " 2x were you baptized + " 1x were you called + " 1x were you discussing + " 3x west + " 257x what + " 2x what [is it] + " 24x what [is] + " 1x what [means] + " 1x what [was] + " 4x what [will be] + " 1x what about + " 1x what he says + " 1x what is + " 1x what is common to man + " 1x what is right + " 1x what is sacrificed to an idol + " 1x what is strangled + " 2x what kind + " 1x what like + " 2x what manner of + " 1x what sort + " 3x what things + " 1x what way + " 49x whatever + " 3x whatever things + " 1x whatsoever + " 7x wheat + " 180x when + " 1x when first + " 1x when the rooster crows + " 1x whence + " 7x whenever + " 100x where + " 1x where [are] + " 1x whereas + " 1x whereby + " 2x wherefore + " 1x wherefore [it was] + " 3x wherein + " 2x whereof + " 1x whereupon + " 9x wherever + " 33x whether + " 353x which + " 2x which [are] + " 21x which [is] + " 3x which [time] + " 2x which [was] + " 1x which [were] + " 1x which is + " 1x which is strangled + " 2x which things + " 15x while + " 1x while they were disbelieving + " 1x while yet + " 24x white + " 1x whitewashed + " 350x who + " 1x who [am] + " 5x who [are] + " 1x who [can be] + " 22x who [is] + " 2x who [was] + " 2x who [were] + " 2x who are + " 1x who believed + " 1x who cannot lie + " 1x who do + " 1x who ever + " 1x who is + " 1x who says + " 1x who spoke with difficulty + " 2x who was + " 3x who were + " 39x whoever + " 19x whole + " 1x wholly + " 217x whom + " 1x whom I have chosen + " 4x whom [are] + " 1x whom [is] + " 3x whomever + " 27x whose + " 1x whose [are] + " 1x whose [is] + " 62x why + " 2x wicked + " 5x wickedness + " 2x wickednesses + " 1x wide [is] + " 6x widow + " 11x widows + " 1x width + " 53x wife + " 3x wild + " 1x wild animals + " 1x wild beasts + " 31x wilderness + " 53x will + " 1x will He answer + " 1x will He do + " 1x will He find + " 1x will He grant + " 1x will He kill + " 1x will He quarrel + " 1x will He say + " 1x will He spare + " 1x will I + " 3x will I be + " 2x will I bear with + " 1x will I believe + " 1x will I blot out + " 1x will I boast + " 1x will I compare + " 1x will I dare + " 2x will I deny + " 2x will I do + " 3x will I drink + " 1x will I eat + " 1x will I forsake + " 2x will I give + " 2x will I inherit + " 1x will I know + " 1x will I leave + " 1x will I liken + " 1x will I profit + " 1x will I remember + " 2x will I set + " 1x will I sing + " 1x will You + " 1x will You [that] + " 1x will You allow + " 1x will [it] be + " 1x will abide + " 1x will accompany + " 1x will accuse + " 1x will add + " 1x will advance + " 1x will allow + " 1x will annul + " 2x will answer + " 4x will appear + " 2x will appoint + " 1x will arise + " 1x will ascend + " 1x will ask + " 2x will ask for + " 1x will award + " 3x will baptize + " 82x will be + " 1x will be [in] + " 7x will be able + " 1x will be accomplished + " 2x will be added + " 1x will be anxious about + " 2x will be ashamed of + " 2x will be baptized + " 2x will be beaten with + " 2x will be betrayed + " 1x will be blessed + " 3x will be broken + " 1x will be brought down + " 1x will be built up + " 1x will be burned up + " 7x will be called + " 1x will be cast + " 1x will be cast down + " 1x will be cast out + " 1x will be caught away + " 1x will be changed + " 1x will be clothed + " 1x will be comforted + " 1x will be condemned + " 1x will be cut off + " 2x will be darkened + " 1x will be denied + " 3x will be destroyed + " 2x will be dissolved + " 1x will be done away + " 1x will be established + " 4x will be exalted + " 2x will be filled + " 5x will be forgiven + " 1x will be found + " 2x will be fulfilled + " 2x will be gathered + " 1x will be gathered together + " 8x will be given + " 1x will be grafted in + " 1x will be grafted into + " 1x will be grieved + " 1x will be grinding + " 1x will be healed + " 1x will be heard + " 3x will be humbled + " 2x will be impossible + " 1x will be insulted + " 1x will be judged + " 3x will be justified + " 2x will be known + " 1x will be led captive + " 3x will be left + " 1x will be like + " 1x will be likened + " 1x will be loved + " 1x will be made + " 1x will be made alive + " 1x will be made low + " 1x will be magnified + " 1x will be maligned + " 1x will be mastered + " 1x will be mocked + " 1x will be named + " 1x will be persecuted + " 1x will be present + " 1x will be proclaimed + " 1x will be put in subjection + " 2x will be put to shame + " 1x will be raised + " 2x will be reckoned + " 1x will be released + " 1x will be repaid [for] + " 1x will be required + " 3x will be revealed + " 1x will be salted + " 10x will be saved + " 2x will be scattered + " 1x will be sealed up + " 1x will be set free + " 3x will be shaken + " 1x will be shortened + " 1x will be silent + " 1x will be spilled out + " 1x will be spit upon + " 2x will be spoken of + " 1x will be supplied + " 2x will be taken + " 6x will be taken away + " 1x will be taken away from + " 2x will be thrown down + " 1x will be turned + " 1x will be utterly destroyed + " 1x will be utterly spent + " 3x will bear + " 1x will bear witness + " 5x will become + " 1x will believe + " 7x will betray + " 1x will bind + " 2x will boast + " 1x will bow + " 2x will bring + " 1x will bring [me] safely + " 1x will bring [you] + " 1x will bring an accusation + " 1x will bring forth + " 1x will bring to light + " 1x will bring to remembrance + " 1x will build + " 2x will burst + " 1x will care for + " 2x will cast + " 1x will cast around + " 1x will change + " 1x will change His mind + " 20x will come + " 1x will come forth + " 1x will come in + " 1x will come to pass + " 1x will commend + " 1x will complete [it] + " 4x will condemn + " 5x will confess + " 1x will confirm + " 1x will consume + " 1x will continue with + " 1x will convict + " 1x will count blessed + " 1x will cover over + " 2x will crow + " 1x will crucify + " 1x will crush + " 1x will cry out + " 1x will cut in pieces + " 1x will delay + " 2x will deliver + " 1x will deliver [him] + " 1x will deliver [us] + " 1x will deliver up + " 2x will deny + " 1x will depart from + " 2x will descend + " 1x will describe + " 6x will destroy + " 1x will die + " 1x will dine + " 1x will dip + " 2x will disclose + " 1x will disclose [it] + " 7x will do + " 2x will do [it] + " 1x will draw + " 1x will dream + " 1x will dress + " 1x will drink + " 1x will dwell + " 2x will eat + " 1x will emasculate themselves + " 1x will enlighten + " 3x will enter + " 1x will entrust + " 2x will escape + " 1x will fade away + " 6x will fall + " 5x will fall away + " 1x will fill up + " 10x will find + " 1x will flee + " 1x will flog + " 1x will flow + " 1x will follow after + " 2x will forgive + " 1x will gather + " 1x will gather together + " 24x will give + " 1x will give life + " 1x will give rest + " 4x will glorify + " 1x will go + " 1x will go away + " 3x will go before + " 2x will go forth + " 3x will go out + " 1x will go through + " 1x will grow cold + " 1x will grow old + " 1x will guard + " 1x will guide + " 1x will happen + " 1x will harm + " 2x will hate + " 5x will have + " 1x will have been taken away + " 3x will have passed away + " 1x will he cry out + " 1x will he deserve + " 1x will he do + " 4x will he give + " 1x will he leave + " 2x will he say + " 1x will he take hold of + " 1x will heal + " 4x will hear + " 1x will hem in + " 1x will hold + " 1x will honor + " 2x will hope + " 1x will humble + " 1x will implore + " 1x will increase + " 7x will inherit + " 1x will injure + " 1x will instruct + " 7x will it be + " 2x will it be known + " 1x will it be salted + " 1x will it be seasoned + " 1x will it profit + " 8x will judge + " 1x will justify + " 4x will keep + " 1x will keep [you] + " 3x will kill + " 5x will know + " 1x will lament + " 1x will lay a hand on + " 4x will leave + " 1x will level to the ground + " 1x will listen + " 9x will live + " 6x will lose + " 1x will lose [it] + " 3x will love + " 3x will make + " 1x will make [it] known + " 1x will make a profit + " 2x will make known + " 1x will make manifest + " 1x will make recline + " 1x will make void + " 1x will marry + " 1x will match + " 2x will meet + " 1x will mislead + " 1x will mistreat [it] + " 1x will mourn + " 1x will multiply + " 1x will never end + " 1x will nullify + " 2x will overcome + " 1x will overshadow + " 6x will pass away + " 1x will perfect + " 1x will perform [the] + " 4x will perish + " 1x will persecute + " 1x will persecute [you] + " 1x will persuade + " 3x will prepare + " 1x will prepare himself + " 1x will present [us] + " 1x will preserve + " 1x will prevail + " 1x will prevail against + " 1x will profit + " 1x will prophesy + " 1x will prove + " 1x will provide + " 1x will provoke to jealousy + " 1x will purify + " 2x will put to death + " 1x will raise [it] up + " 1x will raise out + " 9x will raise up + " 5x will reap + " 1x will rebuild + " 10x will receive + " 1x will receive mercy + " 1x will reckon + " 2x will recline + " 2x will reign + " 3x will rejoice + " 1x will remain + " 1x will remind of + " 3x will repay + " 1x will repay [it] + " 1x will rest + " 1x will restore + " 1x will reveal + " 3x will reward + " 1x will rise + " 5x will rise up + " 1x will roll away + " 1x will rule over + " 4x will save + " 11x will say + " 8x will see + " 2x will seek + " 1x will seize + " 5x will send + " 2x will separate + " 4x will serve + " 1x will set + " 1x will set free + " 1x will shake + " 2x will she be + " 3x will shepherd + " 1x will shine forth + " 1x will shine upon + " 5x will show + " 1x will shut + " 1x will sin + " 1x will sit + " 1x will slay + " 3x will speak + " 2x will spend + " 1x will spit upon + " 4x will stand + " 2x will stand up + " 1x will steadfastly continue + " 1x will stealthily introduce + " 1x will stone + " 1x will store up + " 2x will strengthen + " 1x will suffer + " 1x will supply + " 1x will sustain + " 1x will tabernacle + " 1x will take + " 3x will take away + " 1x will take counsel + " 1x will taste + " 2x will teach + " 1x will tell + " 3x will there be + " 1x will they ask of + " 1x will they be persuaded + " 1x will they bear + " 1x will they bear up + " 1x will they deliver + " 1x will they do + " 1x will they hear + " 1x will they put + " 2x will they say + " 3x will they see + " 1x will they thirst + " 1x will think + " 2x will thirst + " 1x will trade + " 1x will transform + " 1x will turn + " 1x will turn out + " 1x will understand + " 1x will visit + " 2x will wail + " 2x will walk + " 1x will walk among [them] + " 1x will we go + " 3x will we say + " 1x will we strike + " 3x will weep + " 1x will wipe away + " 1x will wonder + " 4x will worship + " 1x will you [that] + " 1x will you be lifted up + " 1x will you begin + " 3x will you believe + " 1x will you build + " 1x will you cease + " 1x will you do + " 1x will you lay down + " 1x will you say + " 1x will you season + " 1x will you see + " 1x will you understand + " 1x will you worship + " 5x willing + " 4x willingly + " 1x willingness + " 1x wills + " 1x wills [it] + " 15x wind + " 1x window + " 12x winds + " 29x wine + " 3x winepress + " 12x wineskins + " 5x wings + " 2x winnowing fork [is] + " 1x winter + " 1x winter in + " 1x winter stream + " 1x wiped + " 1x wiped [them] + " 39x wisdom + " 24x wise + " 1x wise [men] + " 1x wisely + " 1x wiser + " 2x wish + " 1x wish you + " 1x wish you [that] + " 1x wished + " 3x wishes + " 7x wishing + " 703x with + " 3x with God + " 3x with Him + " 1x with Holy + " 3x with Me + " 1x with Paul + " 1x with Philip + " 1x with Romans + " 1x with Samaritans + " 1x with Simon + " 1x with [our] + " 4x with [the] + " 4x with [the] Spirit + " 1x with [the] Tyrians + " 1x with [the] circumcision + " 1x with [the] fruit + " 1x with [the] jealousy + " 1x with [the] oil + " 1x with [their] lawless + " 1x with [their] own hands + " 1x with a calling + " 1x with a figurehead of + " 1x with a gold ring + " 1x with a great + " 1x with a kiss + " 1x with a price + " 1x with a reed + " 1x with a roar + " 1x with a sash + " 1x with a spear + " 1x with a tongue + " 1x with a vessel + " 1x with a view to + " 1x with a weaker + " 1x with affliction + " 3x with all + " 1x with all [his] household + " 1x with all things + " 1x with amazement + " 1x with an oath + " 1x with anger + " 1x with another + " 1x with better + " 1x with bread + " 4x with chains + " 1x with child + " 1x with confusion + " 1x with defiled + " 1x with demons + " 5x with difficulty + " 1x with diseases + " 1x with dropsy + " 1x with empty + " 1x with encouragement + " 1x with every + " 1x with fabricated + " 1x with fastings + " 2x with fear + " 1x with fervent prayer + " 9x with fire + " 1x with flesh + " 2x with food + " 2x with fragrant oil + " 2x with glory + " 2x with gold + " 1x with good things + " 1x with groanings + " 1x with having been shaven + " 1x with heat + " 1x with her + " 3x with him + " 1x with honor + " 1x with hunger + " 1x with it + " 2x with jealousy + " 6x with joy + " 1x with linen strips + " 1x with many + " 5x with me + " 1x with method + " 2x with oil + " 3x with one + " 11x with one accord + " 1x with one eye + " 1x with ours + " 2x with power + " 1x with rage + " 1x with regard to + " 1x with salt + " 1x with seals + " 1x with severity + " 1x with shackles + " 1x with sins + " 1x with sleep + " 1x with smoke + " 1x with some + " 1x with sorrows + " 2x with stones + " 2x with such + " 1x with talk + " 1x with thankfulness + " 1x with that + " 65x with the + " 1x with the [one] + " 1x with the palms + " 1x with the sword + " 5x with them + " 1x with themselves + " 2x with these + " 2x with this + " 3x with those + " 1x with tongues + " 1x with unbelievers + " 2x with unwashed + " 2x with us + " 2x with vinegar + " 1x with violence + " 1x with voices + " 7x with water + " 1x with what + " 8x with which + " 1x with whom He is pleased + " 1x with wine + " 1x with wisdom + " 2x with wonder + " 1x with words + " 6x with you + " 1x withdraw + " 1x withdrawing + " 7x withdrew + " 8x withered + " 24x within + " 1x within myself + " 15x without + " 1x without God + " 1x without Honor + " 2x without [the] Law + " 2x without blemish + " 1x without cause + " 1x without clothes + " 1x without concern + " 1x without distraction + " 1x without eating + " 1x without excuse + " 2x without fear + " 1x without fruit + " 1x without genealogy + " 2x without honor + " 1x without love of good + " 1x without meaning + " 1x without mercy [will be] + " 1x without mother + " 1x without objection + " 1x without offense + " 1x without payment + " 1x without regret + " 1x without self-control + " 2x without spot + " 1x without stain + " 1x without strength + " 3x without understanding + " 2x without water + " 1x without witness + " 6x witness + " 1x witness has been given + " 19x witnesses + " 10x wives + " 12x woe + " 1x woe [to him] + " 1x woes + " 2x wolf + " 2x wolves + " 52x woman + " 2x woman [is] + " 17x womb + " 1x wombs + " 26x women + " 2x wonder + " 1x wonder you + " 1x wondered + " 1x wonderful + " 1x wonderful [are] + " 2x wondering + " 1x wondering at + " 16x wonders + " 3x wood + " 1x wooden + " 2x wool + " 179x word + " 1x word [of mouth] + " 77x words + " 1x words [are] + " 40x work + " 1x work do You perform + " 1x work of power + " 1x work out + " 1x worked + " 3x workers + " 25x working + " 1x working out + " 1x working with [them] + " 3x workman + " 1x workmanship + " 8x workmen + " 100x works + " 1x works together + " 168x world + " 2x worldly + " 1x worldly-minded + " 1x worm + " 1x wormwood + " 11x worse + " 7x worship + " 7x worshiped + " 1x worshiped [him] + " 1x worshipers + " 10x worshiping + " 3x worshipping + " 1x worships + " 6x worthily + " 3x worthless + " 1x worthless [is] + " 33x worthy + " 2x worthy [is] + " 1x would + " 1x would He be + " 1x would He speak + " 1x would I + " 1x would I have told + " 1x would allow + " 4x would be + " 1x would be completed + " 1x would be fulfilled + " 1x would be fully accomplished + " 1x would be killed + " 1x would be put to shame + " 1x would blow + " 1x would cherish + " 1x would come + " 1x would come early in the morning + " 1x would dare + " 1x would fight + " 1x would have asked + " 1x would have been sought + " 2x would have died + " 1x would have emerged + " 1x would have known + " 1x would have received + " 1x would it be + " 1x would love [you] + " 1x would put + " 1x would remain + " 1x would suffer + " 1x would teach + " 1x would they have ceased + " 1x would touch + " 1x would worship + " 1x would you answer + " 1x would you believe + " 3x wound + " 1x wounded + " 1x wounding + " 4x wounds + " 1x woven + " 1x wrangle + " 1x wrapped + " 2x wrapped in swaddling cloths + " 30x wrath + " 1x wreaths + " 1x wrestling + " 1x wretched + " 1x wrinkle + " 13x write + " 1x writes + " 3x writings + " 12x written + " 4x wrong + " 1x wrong you + " 1x wrongly + " 6x wrote + " 1x wrote of + " 11x year + " 1x yearning over + " 1x yearns + " 43x years + " 6x years [old] + " 4x yes + " 2x yesterday + " 32x yet + " 4x yield + " 1x yielded up + " 1x yielding + " 2x yoke + " 1x yokefellow + " 1226x you + " 1x you [all] + " 4x you [are] + " 1x you [from us] + " 2x you abide + " 1x you abound + " 2x you accepted + " 1x you acted + " 4x you all + " 1x you answer + " 59x you are + " 17x you are able + " 1x you are able [to do] + " 3x you are about + " 1x you are alive + " 1x you are anxious + " 1x you are ashamed + " 1x you are bearing + " 1x you are beholding + " 1x you are being saved + " 1x you are bringing + " 1x you are circumcised + " 1x you are committing + " 1x you are condemning + " 1x you are deserting + " 6x you are doing + " 1x you are going + " 1x you are here + " 1x you are insulted + " 2x you are invited + " 1x you are keeping + " 1x you are led by + " 1x you are like + " 1x you are mad + " 1x you are minded + " 1x you are more valuable + " 1x you are reading + " 1x you are receiving + " 2x you are restrained + " 1x you are standing firm + " 1x you are treasuring up + " 2x you are willing + " 4x you ask + " 1x you ask for + " 1x you ate + " 1x you be led astray + " 1x you be puffed up + " 1x you bear with + " 1x you bear witness + " 1x you begged + " 1x you beheld + " 1x you behold + " 6x you believe + " 2x you believed + " 1x you bite + " 1x you bless + " 1x you boast + " 1x you boast against [them] + " 2x you build + " 1x you burden + " 1x you call + " 1x you call on + " 1x you came + " 1x you circumcise + " 2x you cleanse + " 1x you clothed + " 1x you come together + " 1x you confess + " 1x you consider + " 2x you continue + " 1x you continue in + " 7x you desire + " 1x you desired + " 1x you despise + " 1x you did + " 3x you did [it] + " 1x you did accept + " 1x you did anoint + " 2x you did believe + " 1x you did clothe + " 1x you did command + " 2x you did dance + " 2x you did deliver + " 1x you did despise [me] + " 1x you did fully receive + " 1x you did hear + " 1x you did lay down + " 1x you did listen + " 1x you did prepare + " 2x you did receive + " 1x you did receive [it] + " 1x you did reign + " 1x you did scatter + " 2x you did seize + " 1x you did sin + " 2x you did sow + " 1x you did wail + " 1x you did weep + " 11x you do + " 1x you do bear with + " 3x you do behold + " 1x you do believe + " 1x you do commit adultery + " 1x you do desire + " 1x you do good + " 1x you do listen to + " 1x you do wish + " 1x you dressed + " 1x you dwell + " 1x you eat + " 1x you endured + " 3x you enter + " 1x you err + " 1x you exchange + " 3x you expect + " 1x you exult + " 1x you fast + " 4x you forgive + " 1x you gain + " 2x you gathered + " 4x you gave + " 1x you gave to drink + " 2x you give + " 1x you go forth + " 1x you go out + " 1x you greatly rejoice + " 1x you greet + " 5x you had known + " 1x you hate + " 48x you have + " 1x you have [for me] + " 1x you have abandoned + " 1x you have answered + " 1x you have asked + " 6x you have become + " 1x you have become obedient + " 1x you have become slaves + " 2x you have been + " 1x you have been called + " 2x you have been enriched + " 1x you have been freed from + " 1x you have been healed + " 1x you have been raised with + " 3x you have believed + " 1x you have caught + " 1x you have closely followed + " 1x you have come + " 2x you have come to + " 1x you have denied + " 1x you have died + " 1x you have fallen + " 1x you have fallen away + " 1x you have filled + " 1x you have forgotten + " 2x you have found + " 1x you have fully testified + " 1x you have gained + " 2x you have had + " 1x you have handed down + " 12x you have heard + " 2x you have heard of + " 1x you have in mind + " 1x you have judged + " 2x you have kept + " 1x you have killed + " 4x you have known + " 1x you have laid + " 2x you have learned + " 1x you have lied + " 1x you have made + " 2x you have need + " 1x you have neglected + " 1x you have obeyed + " 2x you have overcome + " 1x you have proved + " 1x you have put on + " 1x you have read + " 7x you have received + " 1x you have remembered + " 1x you have reported + " 1x you have returned + " 1x you have said + " 7x you have seen + " 1x you have shared + " 1x you have shown + " 5x you have spoken + " 1x you have taken away + " 1x you have tasted + " 1x you have tested + " 1x you have turned back + " 1x you have understood + " 7x you hear + " 4x you heard + " 1x you heard of before + " 1x you hindered + " 1x you hold + " 1x you hold fast + " 1x you hold fast to + " 1x you inquire + " 1x you intend + " 4x you judge + " 2x you keep + " 1x you kill + " 1x you killed + " 1x you knew + " 41x you know + " 3x you know [how] + " 1x you learned + " 1x you learned [them] + " 1x you lend [to those] + " 1x you live + " 1x you look intently + " 7x you love + " 1x you loved + " 1x you made + " 1x you made void + " 3x you make + " 1x you marvel + " 1x you may abound + " 1x you may ask + " 9x you may be + " 1x you may be able + " 1x you may be clothed + " 1x you may be condemned + " 1x you may be filled + " 1x you may be filled with + " 1x you may be fully able + " 1x you may be healed + " 1x you may be let go + " 1x you may be minded + " 1x you may be rich + " 1x you may become + " 1x you may believe + " 1x you may come together + " 3x you may eat + " 1x you may enter + " 1x you may fulfill + " 1x you may glorify + " 1x you may grow up + " 3x you may have + " 1x you may have [an answer] + " 1x you may have done + " 1x you may have fellowship + " 1x you may have strength + " 8x you may know + " 1x you may learn + " 1x you may proclaim + " 3x you may receive + " 2x you may rejoice + " 1x you may remember + " 1x you may see + " 1x you may see again + " 1x you may spend [it] + " 2x you may stand + " 1x you may walk + " 3x you measure + " 1x you might appear + " 1x you might approve + " 4x you might ask + " 1x you might assist + " 1x you might be at leisure + " 1x you might be consumed + " 1x you might be grieved + " 2x you might be profited + " 1x you might be tested + " 1x you might be zealous after + " 1x you might become + " 2x you might believe + " 1x you might bind + " 1x you might bring down + " 1x you might come together + " 1x you might desire + " 2x you might do + " 1x you might drink + " 1x you might drink [it] + " 1x you might eat + " 5x you might enter + " 1x you might expend + " 1x you might fall + " 1x you might fall away + " 1x you might fall into + " 1x you might forgive + " 1x you might have + " 1x you might have done + " 1x you might keep + " 3x you might know + " 1x you might loose + " 1x you might obtain [it] + " 1x you might possess + " 1x you might prophesy + " 1x you might receive + " 1x you might retain + " 1x you might set in order + " 1x you might sin + " 1x you might suffer loss + " 1x you might war + " 1x you might warn + " 1x you might wish + " 1x you murdered + " 1x you must judge + " 1x you obey + " 1x you observe + " 1x you ought + " 1x you owe + " 1x you owe also + " 1x you pass by + " 2x you pay tithes of + " 1x you people receive + " 1x you people see + " 3x you pray + " 1x you proclaim + " 1x you put + " 2x you put to death + " 1x you read + " 1x you reap + " 3x you receive + " 7x you received + " 1x you refuse + " 1x you reigned + " 1x you release + " 2x you repent + " 1x you revived + " 8x you saw + " 15x you say + " 16x you see + " 9x you seek + " 1x you sent + " 1x you serve + " 1x you shall abide + " 1x you shall ask + " 3x you shall be + " 1x you shall be old + " 1x you shall become circumcised + " 1x you shall believe [it] + " 1x you shall bind + " 2x you shall call + " 2x you shall commit adultery + " 2x you shall covet + " 2x you shall endure + " 1x you shall find + " 1x you shall forgive + " 1x you shall fulfill + " 1x you shall grow weary + " 1x you shall have + " 1x you shall have eaten + " 1x you shall have lifted up + " 1x you shall have married + " 1x you shall have paid + " 1x you shall hear + " 1x you shall hear of + " 3x you shall honor + " 1x you shall keep + " 1x you shall leave + " 1x you shall loose + " 2x you shall love + " 1x you shall make + " 3x you shall murder + " 2x you shall muzzle + " 1x you shall offer + " 1x you shall reply in defense + " 1x you shall say + " 2x you shall see + " 1x you shall serve + " 1x you shall speak + " 1x you shall steal + " 2x you shall test + " 1x you shall turn away from + " 1x you shall watch + " 1x you shall worship + " 1x you shine + " 2x you should abound + " 1x you should be + " 1x you should be afraid + " 1x you should be afraid of + " 1x you should be ashamed of + " 1x you should be clothed with + " 1x you should be condemned + " 1x you should be grieved + " 2x you should be judged + " 2x you should bear + " 2x you should begin + " 3x you should believe + " 1x you should cause [it] to abound + " 1x you should do + " 1x you should drink + " 2x you should eat + " 1x you should fall from + " 6x you should fear + " 1x you should follow after + " 1x you should gratify + " 1x you should handle + " 1x you should have + " 2x you should hear + " 1x you should hear of + " 1x you should inherit + " 1x you should injure + " 1x you should keep + " 1x you should look + " 1x you should lose + " 1x you should love + " 1x you should pay + " 1x you should prophesy + " 2x you should put on + " 1x you should repent + " 1x you should resist + " 5x you should say + " 1x you should see + " 1x you should speak + " 1x you should suffer + " 1x you should taste + " 1x you should touch + " 1x you should walk + " 1x you show partiality + " 1x you shut up + " 1x you sin + " 1x you sold + " 3x you sow + " 2x you speak + " 1x you speak of + " 3x you stand + " 1x you stand firm + " 1x you suffer + " 1x you sympathized + " 1x you taught + " 1x you teach + " 3x you tell + " 1x you think + " 1x you thought + " 1x you thrust away + " 1x you to imitate + " 1x you tolerate + " 1x you took + " 1x you took in + " 1x you traverse + " 1x you turn + " 1x you turned + " 1x you used to be + " 1x you visited + " 1x you walk + " 1x you walk [now] + " 1x you walk orderly + " 1x you walked + " 12x you were + " 1x you were able + " 2x you were baptized + " 1x you were bearing with + " 1x you were believing + " 2x you were bought + " 6x you were called + " 1x you were circumcised + " 1x you were coming + " 1x you were concerned + " 1x you were enslaved + " 3x you were grieved + " 1x you were handed over + " 1x you were inferior + " 1x you were instructed + " 1x you were justified + " 1x you were lacking opportunity + " 1x you were led + " 1x you were living + " 1x you were raised with [Him] + " 1x you were redeemed + " 1x you were sanctified + " 2x you were sealed + " 1x you were seeking + " 2x you were taught + " 1x you were washed + " 2x you were willing + " 1x you will abide + " 2x you will ask + " 15x you will be + " 3x you will be able + " 1x you will be baptized [with] + " 1x you will be beaten + " 1x you will be brought + " 1x you will be brought down + " 1x you will be cast + " 1x you will be condemned + " 1x you will be filled + " 1x you will be forgiven + " 1x you will be judged + " 1x you will be justified + " 2x you will be saved + " 1x you will be scattered + " 1x you will become + " 1x you will call + " 1x you will conceive + " 1x you will cut down + " 7x you will deny + " 1x you will desire + " 3x you will die + " 4x you will do + " 1x you will drink + " 1x you will fall away + " 7x you will find + " 1x you will find [some] + " 1x you will flog + " 1x you will follow + " 1x you will gain + " 2x you will go + " 4x you will have + " 1x you will heap + " 3x you will hear + " 1x you will hunger + " 1x you will keep + " 1x you will kill + " 6x you will know + " 1x you will laugh + " 2x you will live + " 1x you will mourn + " 2x you will perish + " 7x you will receive + " 3x you will save + " 3x you will say + " 14x you will see + " 1x you will see [it] + " 2x you will see clearly + " 1x you will seek + " 1x you will stand + " 1x you will stretch forth + " 1x you will understand + " 3x you wish + " 1x you worship + " 1x you would be + " 1x you would believe + " 1x you would do + " 2x you would have + " 1x you would have believed + " 1x you would have condemned + " 1x you would have given [them] + " 2x you would have known + " 1x you would have loved + " 1x you would have rejoiced + " 1x you would have said + " 1x you would need + " 1x you would send + " 1x you would uproot + " 1x you wrote + " 1x you yield + " 1x you yielded + " 1x you yourself + " 3x you yourselves + " 1x you yourselves are + " 1x young + " 1x young [men] + " 1x young [women] + " 6x young man + " 3x young men + " 5x younger + " 3x younger [men] + " 1x younger [ones] + " 74x your + " 1x your [own] + " 5x your own + " 1x your thoughts are of + " 10x yours + " 32x yourself + " 43x yourselves + " 2x youth + " 1x youthful + " 6x zeal + " 4x zealous + " 1x zealous ones + " 1x ‘Yes + id= 137779x X + lemma= 5x Αἰγύπτιος + " 2x Αἰθίοψ + " 2x Αἰνέας + " 1x Αἰνών + " 25x Αἴγυπτος + " 1x Αὐγοῦστος + " 1x Βάαλ + " 2x Βέροια + " 12x Βαβυλών + " 1x Βαλάκ + " 3x Βαλαάμ + " 1x Βαράκ + " 11x Βαραββᾶς + " 1x Βαραχίας + " 4x Βαρθολομαῖος + " 1x Βαριησοῦς + " 1x Βαριωνᾶ + " 28x Βαρναβᾶς + " 2x Βαρσαββᾶς + " 1x Βαρτιμαῖος + " 7x Βεελζεβούλ + " 1x Βελιάρ + " 4x Βενιαμίν + " 3x Βερνίκη + " 1x Βεροιαῖος + " 12x Βηθανία + " 1x Βηθζαθά + " 8x Βηθλέεμ + " 7x Βηθσαϊδά + " 3x Βηθφαγή + " 2x Βιθυνία + " 1x Βλάστος + " 1x Βοανηργές + " 1x Βοσόρ + " 3x Βόες + " 1x Γάδ + " 1x Γάζα + " 5x Γάϊος + " 1x Γαββαθά + " 2x Γαβριήλ + " 1x Γαδαρηνός + " 1x Γαλάτης + " 4x Γαλατία + " 2x Γαλατικός + " 61x Γαλιλαία + " 11x Γαλιλαῖος + " 3x Γαλλίων + " 2x Γαμαλιήλ + " 1x Γεδεών + " 2x Γεθσημανί + " 3x Γεννησαρέτ + " 3x Γερασηνός + " 3x Γολγοθᾶ + " 4x Γόμορρα + " 1x Γώγ + " 1x Δάμαρις + " 3x Δέρβη + " 3x Δίδυμος + " 1x Δαλμανουθά + " 1x Δαλματία + " 1x Δαμασκηνός + " 15x Δαμασκός + " 1x Δανιήλ + " 59x Δαυίδ + " 3x Δεκάπολις + " 1x Δερβαῖος + " 3x Δημήτριος + " 3x Δημᾶς + " 1x Διονύσιος + " 1x Διοτρέφης + " 1x Διόσκουροι + " 2x Δορκάς + " 1x Δρούσιλλα + " 1x Εὐνίκη + " 1x Εὐοδία + " 2x Εὐφράτης + " 1x Εὔβουλος + " 1x Εὔτυχος + " 2x Εὕα + " 1x Ζάρα + " 3x Ζαβουλών + " 3x Ζακχαῖος + " 11x Ζαχαρίας + " 12x Ζεβεδαῖος + " 2x Ζεύς + " 1x Ζηνᾶς + " 3x Ζοροβαβέλ + " 1x Θάρα + " 2x Θαδδαῖος + " 1x Θαμάρ + " 5x Θεσσαλονίκη + " 4x Θεσσαλονικεύς + " 1x Θευδᾶς + " 2x Θεόφιλος + " 4x Θυάτειρα + " 11x Θωμᾶς + " 1x Κάρπος + " 3x Κάϊν + " 1x Κίς + " 17x Καισάρεια + " 4x Κανά + " 2x Καναναῖος + " 1x Κανδάκη + " 2x Καππαδοκία + " 16x Καφαρναούμ + " 9x Καϊάφας + " 2x Καϊνάμ + " 29x Καῖσαρ + " 1x Καῦδα + " 2x Κεγχρεαί + " 1x Κεδρών + " 9x Κηφᾶς + " 8x Κιλικία + " 1x Κλήμης + " 1x Κλαυδία + " 3x Κλαύδιος + " 1x Κλεοπᾶς + " 1x Κλωπᾶς + " 1x Κνίδος + " 1x Κολοσσαί + " 2x Κορίνθιος + " 8x Κορνήλιος + " 1x Κούαρτος + " 2x Κρής + " 1x Κρήσκης + " 5x Κρήτη + " 2x Κρίσπος + " 1x Κυρήνη + " 1x Κυρήνιος + " 6x Κυρηναῖος + " 1x Κωσάμ + " 1x Κόρε + " 6x Κόρινθος + " 3x Κύπριος + " 5x Κύπρος + " 1x Κώς + " 15x Λάζαρος + " 1x Λάμεχ + " 1x Λίνος + " 6x Λαοδίκεια + " 1x Λαοδικεύς + " 1x Λασαία + " 8x Λευί + " 3x Λευίτης + " 1x Λευιτικός + " 1x Λιβερτῖνος + " 1x Λιβύη + " 3x Λουκᾶς + " 2x Λούκιος + " 2x Λυδία + " 1x Λυκία + " 1x Λυκαονία + " 1x Λυκαονιστί + " 2x Λυσίας + " 1x Λυσανίας + " 1x Λωΐς + " 3x Λύδδα + " 6x Λύστρα + " 4x Λώτ + " 1x Μάαθ + " 1x Μάλχος + " 13x Μάρθα + " 3x Μίλητος + " 1x Μαγαδάν + " 12x Μαγδαληνή + " 1x Μαγώγ + " 1x Μαδιάμ + " 2x Μαθθάτ + " 2x Μαθθίας + " 5x Μαθθαῖος + " 1x Μαθουσαλά + " 22x Μακεδονία + " 5x Μακεδών + " 1x Μαλελεήλ + " 1x Μαναήν + " 3x Μανασσῆ + " 54x Μαρία + " 2x Ματθάν + " 1x Ματταθά + " 2x Ματταθίας + " 1x Μελίτη + " 1x Μελεά + " 2x Μελχί + " 8x Μελχισέδεκ + " 1x Μεννά + " 2x Μεσοποταμία + " 2x Μεσσίας + " 1x Μιτυλήνη + " 2x Μιχαήλ + " 1x Μνάσων + " 2x Μυσία + " 80x Μωϋσῆς + " 1x Μόλοχ + " 1x Μύρα + " 8x Μᾶρκος + " 1x Μῆδος + " 1x Νάρκισσος + " 1x Νίγερ + " 1x Ναΐν + " 3x Ναασσών + " 1x Ναγγαί + " 12x Ναζαρά + " 6x Ναζαρηνός + " 13x Ναζωραῖος + " 1x Ναθάμ + " 6x Ναθαναήλ + " 1x Ναιμάν + " 1x Ναούμ + " 1x Ναχώρ + " 3x Νεφθαλίμ + " 1x Νηρί + " 1x Νηρεύς + " 1x Νικάνωρ + " 2x Νικολαΐτης + " 5x Νικόδημος + " 1x Νικόλαος + " 1x Νικόπολις + " 3x Νινευίτης + " 1x Νύμφα + " 8x Νῶε + " 1x Οὐρίας + " 1x Οὐρβανός + " 1x Πάρθος + " 1x Πάταρα + " 1x Πάτμος + " 2x Πάφος + " 2x Πέργαμος + " 3x Πέργη + " 156x Πέτρος + " 5x Παμφυλία + " 1x Παρμενᾶς + " 1x Πατροβᾶς + " 158x Παῦλος + " 1x Περσίς + " 55x Πιλᾶτος + " 1x Πισίδιος + " 1x Πισιδία + " 1x Ποντικός + " 1x Ποτίολοι + " 1x Πούδης + " 6x Πρίσκα + " 1x Πρόχορος + " 1x Πτολεμαΐς + " 3x Πόντιος + " 2x Πόντος + " 2x Πόπλιος + " 1x Πόρκιος + " 1x Πύρρος + " 1x Σάμος + " 1x Σάπφιρα + " 3x Σάρδεις + " 1x Σάρεπτα + " 4x Σάρρα + " 1x Σέργιος + " 1x Σήθ + " 1x Σήμ + " 75x Σίμων + " 2x Σαβαώθ + " 14x Σαδδουκαῖος + " 2x Σαδώκ + " 2x Σαλά + " 2x Σαλήμ + " 3x Σαλαθιήλ + " 1x Σαλαμίς + " 1x Σαλείμ + " 2x Σαλμών + " 1x Σαλμώνη + " 2x Σαλώμη + " 11x Σαμάρεια + " 9x Σαμαρίτης + " 2x Σαμαρῖτις + " 1x Σαμοθρᾴκη + " 3x Σαμουήλ + " 1x Σαμψών + " 9x Σαούλ + " 1x Σαρών + " 36x Σατανᾶς + " 15x Σαῦλος + " 1x Σεκοῦνδος + " 1x Σελεύκεια + " 1x Σεμεΐν + " 1x Σερούχ + " 9x Σιδών + " 2x Σιδώνιος + " 4x Σιλουανός + " 3x Σιλωάμ + " 12x Σιλᾶς + " 4x Σινᾶ + " 7x Σιών + " 1x Σκευᾶς + " 1x Σκύθης + " 2x Σμύρνα + " 12x Σολομών + " 1x Σουσάννα + " 2x Σπανία + " 1x Στάχυς + " 7x Στέφανος + " 3x Στεφανᾶς + " 1x Στοϊκός + " 7x Συμεών + " 1x Συντύχη + " 1x Συράκουσαι + " 8x Συρία + " 1x Συροφοινίκισσα + " 1x Συχάρ + " 2x Συχέμ + " 1x Σωσίπατρος + " 2x Σωσθένης + " 9x Σόδομα + " 1x Σύρος + " 1x Σύρτις + " 1x Σώπατρος + " 1x Τέρτιος + " 2x Τέρτυλλος + " 1x Τίμων + " 1x Τίτιος + " 13x Τίτος + " 2x Ταβιθά + " 2x Ταρσεύς + " 3x Ταρσός + " 1x Τιβέριος + " 3x Τιβεριάς + " 1x Τιμαῖος + " 24x Τιμόθεος + " 1x Τραχωνῖτις + " 1x Τρυφῶσα + " 3x Τρόφιμος + " 1x Τρύφαινα + " 6x Τρῳάς + " 5x Τυχικός + " 1x Τύραννος + " 1x Τύριος + " 11x Τύρος + " 1x Φάλεκ + " 3x Φάρες + " 1x Φίλητος + " 4x Φίλιπποι + " 36x Φίλιππος + " 1x Φανουήλ + " 5x Φαραώ + " 98x Φαρισαῖος + " 1x Φιλήμων + " 2x Φιλαδέλφεια + " 1x Φιλιππήσιος + " 1x Φιλόλογος + " 1x Φλέγων + " 1x Φοίβη + " 3x Φοινίκη + " 1x Φορτουνᾶτος + " 1x Φοῖνιξ + " 3x Φρυγία + " 1x Φύγελος + " 9x Φῆλιξ + " 13x Φῆστος + " 1x Χίος + " 1x Χαλδαῖος + " 2x Χανάαν + " 1x Χαναναῖος + " 2x Χαρράν + " 1x Χερούβ + " 1x Χλόη + " 2x Χοραζίν + " 1x Χουζᾶς + " 3x Χριστιανός + " 529x Χριστός + " 6x αἰγιαλός + " 1x αἰδώς + " 8x αἰνέω + " 1x αἰσθάνομαι + " 1x αἰσθητήριον + " 2x αἰσχροκερδής + " 1x αἰσχροκερδῶς + " 1x αἰσχρολογία + " 4x αἰσχρός + " 1x αἰσχρότης + " 6x αἰσχύνη + " 5x αἰσχύνω + " 70x αἰτέω + " 20x αἰτία + " 1x αἰτίωμα + " 2x αἰφνίδιος + " 1x αἰχμάλωτος + " 3x αἰχμαλωσία + " 4x αἰχμαλωτίζω + " 1x αἰχμαλωτεύω + " 124x αἰών + " 71x αἰώνιος + " 1x αἱματεκχυσία + " 1x αἱμορροέω + " 3x αἱρέω + " 1x αἱρετίζω + " 1x αἱρετικός + " 1x αἴγειος + " 1x αἴνεσις + " 1x αἴνιγμα + " 101x αἴρω + " 1x αἴσθησις + " 3x αἴτημα + " 5x αἴτιος + " 9x αἵρεσις + " 2x αἶνος + " 97x αἷμα + " 1x αὐγάζω + " 1x αὐγή + " 2x αὐθάδης + " 2x αὐθαίρετος + " 1x αὐθεντέω + " 3x αὐλέω + " 12x αὐλή + " 2x αὐλίζομαι + " 2x αὐλητής + " 1x αὐλός + " 22x αὐξάνω + " 2x αὐστηρός + " 2x αὐτάρκεια + " 1x αὐτάρκης + " 1x αὐτοκατάκριτος + " 5x αὐτοῦ + " 2x αὐτόματος + " 1x αὐτόπτης + " 5561x αὐτός + " 1x αὐτόχειρ + " 1x αὐχέω + " 1x αὐχμηρός + " 2x αὔξησις + " 14x αὔριον + " 8x βάθος + " 122x βάλλω + " 20x βάπτισμα + " 4x βάπτω + " 6x βάρβαρος + " 6x βάρος + " 3x βάσανος + " 1x βάσις + " 5x βάτος (I) + " 1x βάτος (II) + " 1x βάτραχος + " 1x βάϊον + " 9x βέβαιος + " 5x βέβηλος + " 1x βέλος + " 1x βήρυλλος + " 3x βία + " 1x βίαιος + " 10x βίβλος + " 9x βίος + " 1x βίωσις + " 1x βαθμός + " 1x βαθύνω + " 4x βαθύς + " 4x βαλλάντιον + " 76x βαπτίζω + " 3x βαπτισμός + " 12x βαπτιστής + " 6x βαρέω + " 2x βαρέως + " 6x βαρύς + " 1x βαρύτιμος + " 2x βασίλειος + " 4x βασίλισσα + " 12x βασανίζω + " 6x βασανισμός + " 1x βασανιστής + " 162x βασιλεία + " 115x βασιλεύς + " 21x βασιλεύω + " 5x βασιλικός + " 1x βασκαίνω + " 27x βαστάζω + " 1x βατταλογέω + " 6x βδέλυγμα + " 1x βδελυκτός + " 2x βδελύσσομαι + " 2x βεβαίωσις + " 8x βεβαιόω + " 2x βεβηλόω + " 1x βελτίων + " 1x βελόνης + " 2x βιάζω + " 1x βιαστής + " 34x βιβλίον + " 3x βιβλαρίδιον + " 1x βιβρώσκω + " 3x βιωτικός + " 1x βιόω + " 2x βλάπτω + " 4x βλάσφημος + " 1x βλέμμα + " 133x βλέπω + " 1x βλαβερός + " 4x βλαστάνω + " 34x βλασφημέω + " 18x βλασφημία + " 1x βλητέος + " 12x βοάω + " 1x βοή + " 2x βοήθεια + " 8x βοηθέω + " 1x βοηθός + " 1x βολή + " 2x βολίζω + " 2x βορρᾶς + " 1x βοτάνη + " 12x βουλή + " 2x βουλευτής + " 6x βουλεύω + " 2x βουνός + " 3x βούλημα + " 37x βούλομαι + " 8x βοῦς + " 8x βρέφος + " 7x βρέχω + " 1x βραβεύω + " 2x βραβεῖον + " 1x βραδυπλοέω + " 2x βραδύνω + " 3x βραδύς + " 1x βραδύτης + " 3x βραχίων + " 7x βραχύς + " 12x βροντή + " 2x βροχή + " 7x βρυγμός + " 1x βρόχος + " 1x βρύχω + " 1x βρύω + " 1x βρώσιμος + " 17x βρῶμα + " 11x βρῶσις + " 2x βυθίζω + " 1x βυθός + " 3x βυρσεύς + " 1x βωμός + " 3x βόθυνος + " 1x βόρβορος + " 9x βόσκω + " 1x βότρυς + " 5x βύσσινος + " 1x βύσσος + " 12x βῆμα + " 1x γάγγραινα + " 1x γάζα + " 5x γάλα + " 15x γάμος + " 1038x γάρ + " 15x γέ + " 12x γέεννα + " 1x γέλως + " 11x γέμω + " 5x γένεσις + " 8x γέννημα + " 20x γένος + " 1x γέρων + " 668x γίνομαι + " 5x γαζοφυλάκιον + " 3x γαλήνη + " 28x γαμέω + " 8x γαμίζω + " 9x γαστήρ + " 4x γείτων + " 2x γελάω + " 9x γεμίζω + " 2x γενέσια + " 43x γενεά + " 1x γενεαλογέω + " 2x γενεαλογία + " 1x γενετή + " 97x γεννάω + " 2x γεννητός + " 1x γερουσία + " 1x γεωργέω + " 19x γεωργός + " 15x γεύομαι + " 1x γεώργιον + " 2x γηράσκω + " 221x γινώσκω + " 1x γλεῦκος + " 4x γλυκύς + " 2x γλωσσόκομον + " 50x γλῶσσα + " 4x γνήσιος + " 1x γναφεύς + " 1x γνησίως + " 26x γνωρίζω + " 15x γνωστός + " 1x γνόφος + " 9x γνώμη + " 1x γνώστης + " 29x γνῶσις + " 4x γογγυσμός + " 1x γογγυστής + " 8x γογγύζω + " 20x γονεύς + " 4x γονυπετέω + " 14x γράμμα + " 192x γράφω + " 63x γραμματεύς + " 1x γραπτός + " 50x γραφή + " 1x γραώδης + " 22x γρηγορέω + " 4x γυμνάζω + " 1x γυμνασία + " 1x γυμνιτεύω + " 15x γυμνός + " 3x γυμνότης + " 214x γυνή + " 1x γυναικάριον + " 1x γυναικεῖος + " 9x γωνία + " 1x γόης + " 3x γόμος + " 12x γόνυ + " 250x γῆ + " 1x γῆρας + " 1x δάκνω + " 10x δάκρυον + " 8x δάκτυλος + " 1x δάμαλις + " 1x δάνειον + " 2787x δέ + " 18x δέησις + " 27x δέκα + " 7x δέκατος + " 25x δένδρον + " 22x δέομαι + " 1x δέος + " 1x δέρμα + " 15x δέρω + " 1x δέσμη + " 16x δέσμιος + " 56x δέχομαι + " 43x δέω + " 5x δή + " 1x δήποτε + " 1x δήπου + " 2x δίδραχμον + " 414x δίδωμι + " 79x δίκαιος + " 3x δίκη + " 12x δίκτυον + " 1x δίλογος + " 6x δίς + " 3x δίστομος + " 1x δίψος + " 2x δίψυχος + " 1x δαίμων + " 13x δαιμονίζομαι + " 1x δαιμονιώδης + " 63x δαιμόνιον + " 1x δακρύω + " 1x δακτύλιος + " 4x δαμάζω + " 4x δανίζω + " 1x δανιστής + " 1x δαπάνη + " 5x δαπανάω + " 33x δείκνυμι + " 2x δειγματίζω + " 1x δειλία + " 1x δειλιάω + " 3x δειλός + " 2x δεινῶς + " 4x δειπνέω + " 1x δεισιδαίμων + " 1x δεισιδαιμονία + " 3x δεκαπέντε + " 5x δεκατέσσαρες + " 2x δεκατόω + " 5x δεκτός + " 3x δελεάζω + " 1x δεξιολάβος + " 54x δεξιός + " 2x δερμάτινος + " 3x δεσμεύω + " 3x δεσμοφύλαξ + " 4x δεσμωτήριον + " 18x δεσμός + " 2x δεσμώτης + " 10x δεσπότης + " 1x δευτεραῖος + " 44x δεύτερος + " 102x δεῖ + " 1x δεῖγμα + " 1x δεῖνα + " 16x δεῖπνον + " 9x δεῦρο + " 12x δεῦτε + " 7x δηλόω + " 1x δημηγορέω + " 1x δημιουργός + " 4x δημόσιος + " 16x δηνάριον + " 3x διΐστημι + " 667x διά + " 37x διάβολος + " 1x διάγνωσις + " 2x διάγω + " 3x διάδημα + " 1x διάδοχος + " 30x διάκονος + " 3x διάκρισις + " 6x διάλεκτος + " 12x διάνοια + " 1x διάστημα + " 1x διάταγμα + " 4x διάφορος + " 1x διέξοδος + " 41x διέρχομαι + " 1x διήγησις + " 3x διαίρεσις + " 1x διαβάλλω + " 3x διαβαίνω + " 2x διαβεβαιόομαι + " 3x διαβλέπω + " 3x διαγίνομαι + " 3x διαγγέλλω + " 2x διαγινώσκω + " 2x διαγογγύζω + " 1x διαγρηγορέω + " 1x διαδέχομαι + " 4x διαδίδωμι + " 3x διαζώννυμι + " 33x διαθήκη + " 2x διαιρέω + " 1x διακαθαίρω + " 1x διακαθαρίζω + " 1x διακατελέγχομαι + " 37x διακονέω + " 34x διακονία + " 1x διακούω + " 19x διακρίνω + " 1x διακωλύω + " 8x διακόσιοι + " 13x διαλέγομαι + " 2x διαλαλέω + " 1x διαλείπω + " 1x διαλλάσσω + " 16x διαλογίζομαι + " 14x διαλογισμός + " 1x διαλύω + " 1x διαμάχομαι + " 5x διαμένω + " 15x διαμαρτύρομαι + " 11x διαμερίζω + " 1x διαμερισμός + " 1x διανέμω + " 1x διανεύω + " 8x διανοίγω + " 1x διανυκτερεύω + " 1x διανόημα + " 1x διανύω + " 1x διαπαρατριβή + " 6x διαπεράω + " 1x διαπλέω + " 2x διαπονέομαι + " 4x διαπορέω + " 5x διαπορεύομαι + " 2x διαπρίω + " 1x διαπραγματεύομαι + " 3x διαρπάζω + " 5x διαρρήγνυμι + " 2x διασαφέω + " 1x διασείω + " 9x διασκορπίζω + " 2x διασπάω + " 3x διασπείρω + " 3x διασπορά + " 7x διαστέλλω + " 3x διαστολή + " 7x διαστρέφω + " 8x διασῴζω + " 16x διατάσσω + " 7x διατίθημι + " 2x διαταγή + " 1x διαταράσσω + " 1x διατελέω + " 2x διατηρέω + " 9x διατρίβω + " 1x διατροφή + " 1x διαυγάζω + " 1x διαυγής + " 13x διαφέρω + " 1x διαφεύγω + " 3x διαφημίζω + " 6x διαφθείρω + " 6x διαφθορά + " 1x διαφυλάσσω + " 2x διαχειρίζω + " 1x διαχλευάζω + " 1x διαχωρίζω + " 59x διδάσκαλος + " 97x διδάσκω + " 2x διδακτικός + " 3x διδακτός + " 21x διδασκαλία + " 30x διδαχή + " 6x διεγείρω + " 1x διενθυμέομαι + " 1x διερμηνευτής + " 6x διερμηνεύω + " 1x διερωτάω + " 1x διετής + " 2x διετία + " 8x διηγέομαι + " 4x διηνεκής + " 1x διθάλασσος + " 10x δικαίωμα + " 5x δικαίως + " 2x δικαίωσις + " 1x δικαιοκρισία + " 91x δικαιοσύνη + " 39x δικαιόω + " 2x δικαστής + " 2x διοδεύω + " 1x διοπετής + " 4x διορύσσω + " 4x διπλοῦς + " 1x διπλόω + " 1x δισμυριάς + " 2x διστάζω + " 1x δισχίλιοι + " 1x διχάζω + " 2x διχοστασία + " 2x διχοτομέω + " 16x διψάω + " 10x διωγμός + " 1x διϊκνέομαι + " 2x διϊσχυρίζομαι + " 1x διϋλίζω + " 53x διό + " 2x διόπερ + " 1x διόρθωμα + " 1x διόρθωσις + " 24x διότι + " 1x διώκτης + " 45x διώκω + " 1x δογματίζω + " 62x δοκέω + " 2x δοκίμιον + " 22x δοκιμάζω + " 7x δοκιμή + " 1x δοκιμασία + " 6x δοκός + " 1x δολιόω + " 1x δολόω + " 61x δοξάζω + " 1x δουλαγωγέω + " 5x δουλεία + " 25x δουλεύω + " 8x δουλόω + " 2x δοχή + " 3x δούλη + " 126x δοῦλος (II) + " 13x δράκων + " 1x δράσσομαι + " 8x δρέπανον + " 3x δραχμή + " 3x δρόμος + " 3x δυνάστης + " 2x δυναμόω + " 3x δυνατέω + " 32x δυνατός + " 1x δυσβάστακτος + " 1x δυσεντέριον + " 1x δυσερμήνευτος + " 3x δυσκόλως + " 5x δυσμή + " 1x δυσνόητος + " 1x δυσφημέω + " 1x δυσφημία + " 1x δωδέκατος + " 1x δωδεκάφυλον + " 3x δωρέομαι + " 11x δωρεά + " 9x δωρεάν + " 5x δόγμα + " 7x δόκιμος + " 1x δόλιος + " 11x δόλος + " 4x δόμα + " 166x δόξα + " 2x δόσις + " 1x δότης + " 209x δύναμαι + " 119x δύναμις + " 2x δύνω + " 133x δύο + " 1x δύσις + " 1x δύσκολος + " 75x δώδεκα + " 2x δώρημα + " 3x δῆλος + " 4x δῆμος + " 7x δῶμα + " 19x δῶρον + " 501x εἰ + " 7x εἰ δὲ μή + " 1x εἰδέα + " 1x εἰδωλεῖον + " 7x εἰδωλολάτρης + " 4x εἰδωλολατρία + " 9x εἰδωλόθυτος + " 1x εἰκοσιτρεῖς + " 23x εἰκών + " 6x εἰκῇ + " 3x εἰλικρίνεια + " 2x εἰλικρινής + " 2457x εἰμί + " 92x εἰρήνη + " 4x εἰρηνεύω + " 2x εἰρηνικός + " 1x εἰρηνοποιέω + " 1x εἰρηνοποιός + " 1766x εἰς + " 11x εἰσάγω + " 192x εἰσέρχομαι + " 5x εἰσακούω + " 1x εἰσδέχομαι + " 1x εἰσκαλέομαι + " 1x εἰσπηδάω + " 18x εἰσπορεύομαι + " 1x εἰστρέχω + " 8x εἰσφέρω + " 11x εἴδωλον + " 10x εἴκοσι + " 1x εἴκω + " 6x εἴπερ + " 4x εἴσειμι + " 5x εἴσοδος + " 65x εἴτε + " 4x εἴωθα + " 5x εἶδος + " 96x εἶπον + " 15x εἶτα + " 336x εἷς + " 9x εὐάρεστος + " 76x εὐαγγέλιον + " 54x εὐαγγελίζω + " 3x εὐαγγελιστής + " 1x εὐαρέστως + " 3x εὐαρεστέω + " 3x εὐγενής + " 1x εὐδία + " 21x εὐδοκέω + " 9x εὐδοκία + " 1x εὐεργέτης + " 2x εὐεργεσία + " 1x εὐεργετέω + " 33x εὐθέως + " 2x εὐθυδρομέω + " 3x εὐθυμέω + " 1x εὐθύμως + " 2x εὐθύνω + " 62x εὐθύς + " 1x εὐθύτης + " 2x εὐκαίρως + " 3x εὐκαιρέω + " 2x εὐκαιρία + " 2x εὐλάβεια + " 1x εὐλαβέομαι + " 4x εὐλαβής + " 41x εὐλογέω + " 16x εὐλογία + " 8x εὐλογητός + " 1x εὐμετάδοτος + " 1x εὐνοέω + " 2x εὐνουχίζω + " 8x εὐνοῦχος + " 4x εὐοδόω + " 1x εὐπάρεδρος + " 1x εὐπειθής + " 1x εὐπερίστατος + " 1x εὐποιΐα + " 1x εὐπορέω + " 1x εὐπορία + " 1x εὐπρέπεια + " 1x εὐπροσωπέω + " 5x εὐπρόσδεκτος + " 1x εὐρακύλων + " 1x εὐρύχωρος + " 15x εὐσέβεια + " 2x εὐσεβέω + " 3x εὐσεβής + " 2x εὐσεβῶς + " 5x εὐσχήμων + " 1x εὐσχημοσύνη + " 3x εὐσχημόνως + " 1x εὐτραπελία + " 2x εὐτόνως + " 1x εὐφημία + " 1x εὐφορέω + " 14x εὐφραίνω + " 2x εὐφροσύνη + " 1x εὐχάριστος + " 3x εὐχή + " 38x εὐχαριστέω + " 15x εὐχαριστία + " 1x εὐψυχέω + " 3x εὐωδία + " 9x εὐώνυμος + " 176x εὑρίσκω + " 3x εὔθετος + " 1x εὔθυμος + " 2x εὔκαιρος + " 7x εὔκοπος + " 1x εὔνοια + " 1x εὔσημος + " 2x εὔσπλαγχνος + " 1x εὔφημος + " 6x εὔχομαι + " 3x εὔχρηστος + " 5x εὖ + " 1x εὖγε + " 140x ζάω + " 2x ζέω + " 5x ζήτημα + " 7x ζήτησις + " 3x ζεστός + " 1x ζευκτηρία + " 2x ζεῦγος + " 1x ζηλεύω + " 8x ζηλωτής + " 11x ζηλόω + " 4x ζημία + " 6x ζημιόω + " 117x ζητέω + " 8x ζιζάνιον + " 6x ζυγός + " 4x ζυμόω + " 135x ζωή + " 2x ζωγρέω + " 3x ζωννύω + " 5x ζόφος + " 13x ζύμη + " 8x ζώνη + " 16x ζῆλος + " 3x ζῳογονέω + " 11x ζῳοποιέω + " 23x ζῷον + " 91x θάλασσα + " 2x θάλπω + " 3x θάμβος + " 120x θάνατος + " 11x θάπτω + " 1x θάρσος + " 3x θέατρον + " 62x θέλημα + " 1x θέλησις + " 207x θέλω + " 1x θέρμη + " 3x θέρος + " 1x θήκη + " 1x θήρα + " 3x θαμβέω + " 1x θανάσιμος + " 1x θανατηφόρος + " 11x θανατόω + " 6x θαρρέω + " 7x θαρσέω + " 43x θαυμάζω + " 1x θαυμάσιος + " 6x θαυμαστός + " 2x θαῦμα + " 1x θεά + " 23x θεάομαι + " 1x θεατρίζω + " 1x θειότης + " 1x θειώδης + " 16x θεμέλιος + " 5x θεμελιόω + " 1x θεοδίδακτος + " 1x θεομάχος + " 1x θεοσέβεια + " 1x θεοσεβής + " 1x θεοστυγής + " 1x θεράπων + " 21x θερίζω + " 3x θεραπεία + " 43x θεραπεύω + " 13x θερισμός + " 2x θεριστής + " 6x θερμαίνω + " 57x θεωρέω + " 1x θεωρία + " 1x θεόπνευστος + " 1311x θεός + " 1x θεότης + " 7x θεῖον + " 3x θεῖος + " 5x θηλάζω + " 45x θηρίον + " 1x θηρεύω + " 1x θηριομαχέω + " 8x θησαυρίζω + " 17x θησαυρός + " 3x θιγγάνω + " 10x θλίβω + " 45x θλῖψις + " 6x θνητός + " 9x θνῄσκω + " 1x θορυβάζω + " 4x θορυβέω + " 1x θρέμμα + " 15x θρίξ + " 1x θραύω + " 4x θρηνέω + " 4x θρησκεία + " 1x θρησκός + " 2x θριαμβεύω + " 3x θροέω + " 1x θρόμβος + " 62x θρόνος + " 28x θυγάτηρ + " 2x θυγάτριον + " 6x θυμίαμα + " 1x θυμιάω + " 1x θυμιατήριον + " 1x θυμομαχέω + " 18x θυμός + " 1x θυμόω + " 2x θυρίς + " 1x θυρεός + " 4x θυρωρός + " 28x θυσία + " 23x θυσιαστήριον + " 7x θόρυβος + " 1x θύελλα + " 39x θύρα + " 14x θύω + " 1x θύϊνος + " 5x θώραξ + " 5x θῆλυς + " 91x κάθημαι + " 1x κάκωσις + " 12x κάλαμος + " 4x κάλυμμα + " 6x κάμηλος + " 4x κάμινος + " 2x κάμνω + " 4x κάμπτω + " 6x κάρφος + " 11x κάτω + " 1x κέλευσμα + " 4x κέντρον + " 1x κέραμος + " 11x κέρας + " 3x κέρδος + " 1x κέρμα + " 9x κήρυγμα + " 9x κίνδυνος + " 1x κίνησις + " 1x κίχρημι + " 8978x καί + " 1x καίγε + " 5x καίπερ + " 2x καίτοι + " 1x καίτοιγε + " 12x καίω + " 1x καθά + " 17x καθάπερ + " 1x καθάπτω + " 3x καθέδρα + " 7x καθέζομαι + " 2x καθήκω + " 46x καθίζω + " 4x καθίημι + " 21x καθίστημι + " 3x καθαίρεσις + " 1x καθαίρω + " 9x καθαιρέω + " 31x καθαρίζω + " 7x καθαρισμός + " 26x καθαρός + " 1x καθαρότης + " 5x καθεξῆς + " 22x καθεύδω + " 1x καθεῖς + " 2x καθηγητής + " 1x καθημερινός + " 1x καθοπλίζω + " 1x καθοράω + " 4x καθό + " 1x καθόλου + " 6x καθότι + " 179x καθώς + " 42x καινός + " 2x καινότης + " 86x καιρός + " 11x κακία + " 1x κακοήθεια + " 4x κακολογέω + " 1x κακοπάθεια + " 3x κακοπαθέω + " 4x κακοποιέω + " 3x κακοποιός + " 2x κακουχέω + " 4x κακοῦργος + " 50x κακός + " 6x κακόω + " 16x κακῶς + " 1x καλάμη + " 148x καλέω + " 1x καλλιέλαιος + " 1x καλοδιδάσκαλος + " 1x καλοποιέω + " 102x καλός + " 8x καλύπτω + " 36x καλῶς + " 2x καμμύω + " 4x κανών + " 1x καπηλεύω + " 13x καπνός + " 156x καρδία + " 2x καρδιογνώστης + " 8x καρποφορέω + " 1x καρποφόρος + " 66x καρπός + " 1x καρτερέω + " 472x κατά + " 1x κατάβασις + " 4x κατάγνυμι + " 9x κατάγω + " 1x κατάδηλος + " 1x κατάθεμα + " 12x κατάκειμαι + " 3x κατάκριμα + " 2x κατάκρισις + " 1x κατάλαλος + " 1x κατάλοιπος + " 3x κατάλυμα + " 1x κατάνυξις + " 9x κατάπαυσις + " 6x κατάρα + " 1x κατάρτισις + " 1x κατάσκοπος + " 1x κατάστημα + " 2x κατάσχεσις + " 9x κατέναντι + " 15x κατέρχομαι + " 18x κατέχω + " 6x κατήγορος + " 1x κατήφεια + " 2x καταβάλλω + " 82x καταβαίνω + " 1x καταβαρέω + " 1x καταβαρύνω + " 11x καταβολή + " 1x καταβραβεύω + " 18x καταγγέλλω + " 1x καταγγελεύς + " 3x καταγελάω + " 3x καταγινώσκω + " 1x καταγωνίζομαι + " 1x καταδέω + " 1x καταδίκη + " 5x καταδικάζω + " 1x καταδιώκω + " 2x καταδουλόω + " 2x καταδυναστεύω + " 1x καταθεματίζω + " 13x καταισχύνω + " 12x κατακαίω + " 3x κατακαλύπτω + " 4x κατακαυχάομαι + " 2x κατακλάω + " 5x κατακλίνω + " 2x κατακλείω + " 1x κατακληρονομέω + " 4x κατακλυσμός + " 1x κατακλύζω + " 2x κατακολουθέω + " 18x κατακρίνω + " 1x κατακρημνίζω + " 4x κατακυριεύω + " 1x κατακόπτω + " 1x καταλέγω + " 5x καταλαλέω + " 2x καταλαλιά + " 15x καταλαμβάνω + " 24x καταλείπω + " 1x καταλιθάζω + " 6x καταλλάσσω + " 4x καταλλαγή + " 17x καταλύω + " 2x καταμένω + " 1x καταμανθάνω + " 3x καταμαρτυρέω + " 1x καταναλίσκω + " 3x καταναρκάω + " 1x κατανεύω + " 14x κατανοέω + " 13x καταντάω + " 1x κατανύσσομαι + " 3x καταξιόω + " 6x καταπέτασμα + " 7x καταπίνω + " 3x καταπίπτω + " 5x καταπατέω + " 4x καταπαύω + " 1x καταπλέω + " 2x καταπονέω + " 2x καταποντίζω + " 5x καταράομαι + " 27x καταργέω + " 1x καταριθμέω + " 13x καταρτίζω + " 1x καταρτισμός + " 4x κατασείω + " 1x κατασκάπτω + " 2x κατασκήνωσις + " 11x κατασκευάζω + " 4x κατασκηνόω + " 1x κατασκιάζω + " 1x κατασκοπέω + " 1x κατασοφίζομαι + " 2x καταστέλλω + " 1x καταστολή + " 3x καταστρέφω + " 1x καταστρηνιάω + " 2x καταστροφή + " 1x καταστρώννυμι + " 1x κατασφάζω + " 1x κατασφραγίζω + " 1x κατασύρω + " 3x κατατίθημι + " 1x κατατομή + " 1x κατατρέχω + " 4x καταφέρω + " 2x καταφεύγω + " 1x καταφθείρω + " 6x καταφιλέω + " 9x καταφρονέω + " 1x καταφρονητής + " 2x καταχέω + " 1x καταχθόνιος + " 2x καταχράομαι + " 1x καταψύχω + " 1x κατείδωλος + " 3x κατενώπιον + " 2x κατεξουσιάζω + " 22x κατεργάζομαι + " 14x κατεσθίω + " 3x κατευθύνω + " 1x κατευλογέω + " 1x κατεφίστημι + " 23x κατηγορέω + " 3x κατηγορία + " 8x κατηχέω + " 3x κατισχύω + " 1x κατιόω + " 1x κατοίκησις + " 44x κατοικέω + " 1x κατοικία + " 1x κατοικίζω + " 2x κατοικητήριον + " 1x κατοπτρίζω + " 1x κατώτερος + " 4x καυματίζω + " 1x καυστηριάζω + " 2x καυσόω + " 36x καυχάομαι + " 3x καύσων + " 11x καύχημα + " 11x καύχησις + " 2x καῦμα + " 1x καῦσις + " 4x κείρω + " 1x κειρία + " 25x κελεύω + " 1x κενοδοξία + " 2x κενοφωνία + " 3x κεντυρίων + " 1x κενόδοξος + " 18x κενός + " 5x κενόω + " 1x κενῶς + " 2x κεράμιον + " 3x κεράννυμι + " 1x κεράτιον + " 2x κεραία + " 3x κεραμεύς + " 1x κεραμικός + " 17x κερδαίνω + " 1x κερματιστής + " 2x κεφάλαιον + " 75x κεφαλή + " 1x κεφαλίς + " 1x κεφαλιόω + " 24x κεῖμαι + " 1x κημόω + " 1x κηπουρός + " 61x κηρύσσω + " 6x κιβωτός + " 4x κιθάρα + " 2x κιθαρίζω + " 2x κιθαρῳδός + " 8x κινέω + " 4x κινδυνεύω + " 1x κιννάμωμον + " 11x κλάδος + " 2x κλάσις + " 9x κλάσμα + " 14x κλάω + " 1x κλέμμα + " 1x κλέος + " 16x κλέπτης + " 13x κλέπτω + " 2x κλίβανος + " 3x κλίμα + " 8x κλίνη + " 7x κλίνω + " 40x κλαίω + " 9x κλαυθμός + " 6x κλείς + " 16x κλείω + " 18x κληρονομέω + " 14x κληρονομία + " 15x κληρονόμος + " 1x κληρόω + " 10x κλητός + " 1x κλινάριον + " 2x κλινίδιον + " 1x κλισία + " 2x κλοπή + " 1x κλυδωνίζομαι + " 2x κλύδων + " 4x κλῆμα + " 11x κλῆρος + " 11x κλῆσις + " 1x κνήθω + " 1x κοίμησις + " 4x κοίτη + " 2x κοδράντης + " 23x κοιλία + " 18x κοιμάομαι + " 8x κοινωνέω + " 19x κοινωνία + " 1x κοινωνικός + " 10x κοινωνός + " 14x κοινός + " 14x κοινόω + " 1x κοιτών + " 2x κολάζω + " 1x κολακεία + " 5x κολαφίζω + " 12x κολλάω + " 1x κολλούριον + " 3x κολλυβιστής + " 4x κολοβόω + " 1x κολυμβάω + " 4x κολυμβήθρα + " 1x κολωνία + " 2x κομάω + " 11x κομίζω + " 1x κομψότερον + " 2x κονιάω + " 5x κονιορτός + " 3x κοπάζω + " 1x κοπή + " 1x κοπετός + " 22x κοπιάω + " 1x κοπρία + " 8x κοράσιον + " 2x κορέννυμι + " 2x κορβᾶν + " 10x κοσμέω + " 2x κοσμικός + " 1x κοσμοκράτωρ + " 3x κουστωδία + " 1x κουφίζω + " 1x κοῦμ + " 11x κράβαττος + " 55x κράζω + " 5x κράσπεδον + " 4x κράτιστος + " 12x κράτος + " 2x κρέας + " 2x κρίθινος + " 27x κρίμα + " 2x κρίνον + " 114x κρίνω + " 47x κρίσις + " 1x κραιπάλη + " 4x κρανίον + " 47x κρατέω + " 1x κραταιός + " 4x κραταιόω + " 9x κραυγάζω + " 6x κραυγή + " 19x κρείττων + " 7x κρεμάννυμι + " 3x κρημνός + " 1x κριθή + " 3x κριτήριον + " 19x κριτής + " 1x κριτικός + " 9x κρούω + " 17x κρυπτός + " 1x κρυσταλλίζω + " 2x κρυφαῖος + " 1x κρυφῇ + " 1x κρύπτη + " 19x κρύπτω + " 2x κρύσταλλος + " 7x κτάομαι + " 1x κτήτωρ + " 15x κτίζω + " 19x κτίσις + " 4x κτίσμα + " 1x κτίστης + " 4x κτῆμα + " 4x κτῆνος + " 1x κυβέρνησις + " 1x κυβεία + " 2x κυβερνήτης + " 1x κυκλεύω + " 3x κυκλόθεν + " 4x κυκλόω + " 1x κυλίω + " 1x κυλισμός + " 4x κυλλός + " 4x κυνάριον + " 2x κυρία + " 2x κυριακός + " 7x κυριεύω + " 4x κυριότης + " 2x κυρόω + " 23x κωλύω + " 1x κωμόπολις + " 14x κωφός + " 6x κόκκινος + " 7x κόκκος + " 2x κόλασις + " 6x κόλπος + " 1x κόμη + " 18x κόπος + " 1x κόπριον + " 8x κόπτω + " 1x κόραξ + " 1x κόρος + " 2x κόσμιος + " 185x κόσμος + " 6x κόφινος + " 8x κύκλῳ + " 1x κύμβαλον + " 1x κύμινον + " 3x κύπτω + " 718x κύριος + " 5x κύων + " 27x κώμη + " 1x κώνωψ + " 84x κἀγώ + " 10x κἀκεῖ + " 10x κἀκεῖθεν + " 22x κἀκεῖνος + " 16x κἄν + " 4x κῆνσος + " 5x κῆπος + " 3x κῆρυξ + " 1x κῆτος + " 4x κῦμα + " 1x κῶλον + " 3x κῶμος + " 4x λάθρᾳ + " 7x λάμπω + " 1x λάρυγξ + " 4x λάχανον + " 2255x λέγω + " 2x λέντιον + " 4x λέπρα + " 9x λέων + " 1x λήθη + " 12x λίαν + " 2x λίβανος + " 3x λίθινος + " 59x λίθος + " 11x λίμνη + " 2x λίνον + " 2x λίτρα + " 1x λίψ + " 4x λαγχάνω + " 1x λακάω + " 1x λακτίζω + " 298x λαλέω + " 3x λαλιά + " 258x λαμβάνω + " 9x λαμπάς + " 9x λαμπρός + " 1x λαμπρότης + " 1x λαμπρῶς + " 6x λανθάνω + " 1x λαξευτός + " 2x λατομέω + " 5x λατρεία + " 21x λατρεύω + " 142x λαός + " 3x λαῖλαψ + " 6x λείπω + " 4x λεγιών + " 3x λειτουργέω + " 6x λειτουργία + " 1x λειτουργικός + " 5x λειτουργός + " 2x λεμά + " 1x λεπίς + " 9x λεπρός + " 3x λεπτός + " 2x λευκαίνω + " 25x λευκός + " 1x λεῖμμα + " 1x λεῖος + " 5x ληνός + " 2x λιβανωτός + " 8x λιθάζω + " 8x λιθοβολέω + " 1x λιθόστρωτος + " 2x λικμάω + " 3x λιμήν + " 12x λιμός + " 1x λιπαρός + " 2x λοίδορος + " 40x λογίζομαι + " 2x λογεία + " 2x λογικός + " 2x λογισμός + " 1x λογομαχέω + " 1x λογομαχία + " 4x λοιδορέω + " 3x λοιδορία + " 2x λοιμός (II) + " 55x λοιπός + " 2x λουτρόν + " 5x λούω + " 1x λυμαίνω + " 26x λυπέω + " 1x λυσιτελέω + " 1x λυτρωτής + " 3x λυτρόω + " 12x λυχνία + " 4x λόγιον + " 1x λόγιος + " 331x λόγος + " 1x λόγχη + " 6x λύκος + " 16x λύπη + " 1x λύσις + " 2x λύτρον + " 3x λύτρωσις + " 14x λύχνος + " 42x λύω + " 15x λῃστής + " 1x λῆμψις + " 1x λῆρος + " 6x μάγος + " 1x μάκελλον + " 12x μάλιστα + " 1x μάμμη + " 4x μάννα + " 1x μάρμαρος + " 35x μάρτυς + " 6x μάστιξ + " 6x μάταιος + " 2x μάτην + " 29x μάχαιρα + " 4x μάχη + " 4x μάχομαι + " 243x μέγας + " 1x μέγεθος + " 3x μέθη + " 2x μέθυσος + " 6x μέλας + " 10x μέλει + " 4x μέλι + " 110x μέλλω + " 34x μέλος + " 2x μέμφομαι + " 180x μέν + " 8x μέντοι + " 118x μένω + " 6x μέριμνα + " 42x μέρος + " 58x μέσος + " 6x μέτοχος + " 14x μέτρον + " 8x μέτωπον + " 18x μέχρι + " 1060x μή + " 1x μήγε + " 1x μήν (I) + " 18x μήν (II) + " 2x μήπω + " 34x μήτε + " 84x μήτηρ + " 17x μήτι + " 1x μήτιγε + " 2x μήτρα + " 1x μίασμα + " 1x μίγμα + " 4x μίγνυμι + " 1x μίλιον + " 2x μίσθιος + " 1x μίσθωμα + " 5x μαίνομαι + " 1x μαγεία + " 1x μαγεύω + " 1x μαθήτρια + " 261x μαθητής + " 4x μαθητεύω + " 50x μακάριος + " 2x μακαρίζω + " 3x μακαρισμός + " 9x μακράν + " 10x μακροθυμέω + " 14x μακροθυμία + " 1x μακροθύμως + " 1x μακροχρόνιος + " 14x μακρόθεν + " 5x μακρός + " 3x μαλακία + " 4x μαλακός + " 4x μαμωνᾶς + " 1x μανία + " 25x μανθάνω + " 1x μαντεύομαι + " 2x μαράνα θᾶ + " 1x μαραίνω + " 9x μαργαρίτης + " 76x μαρτυρέω + " 37x μαρτυρία + " 20x μαρτύριον + " 5x μαρτύρομαι + " 1x μασάομαι + " 1x μαστίζω + " 7x μαστιγόω + " 3x μαστός + " 1x ματαιολογία + " 1x ματαιολόγος + " 3x ματαιότης + " 1x ματαιόω + " 1x μεγάλως + " 3x μεγαλειότης + " 1x μεγαλεῖος + " 1x μεγαλοπρεπής + " 3x μεγαλωσύνη + " 8x μεγαλύνω + " 3x μεγιστάν + " 5x μεθίστημι + " 8x μεθερμηνεύω + " 2x μεθοδεία + " 4x μεθύσκω + " 6x μεθύω + " 2x μελετάω + " 1x μεμβράνα + " 1x μεμψίμοιρος + " 1x μενοῦν + " 2x μενοῦνγε + " 14x μερίζω + " 5x μερίς + " 19x μεριμνάω + " 2x μερισμός + " 1x μεριστής + " 6x μεσίτης + " 2x μεσημβρία + " 1x μεσιτεύω + " 4x μεσονύκτιον + " 3x μεσουράνημα + " 9x μεστός + " 1x μεστόω + " 1x μεσότοιχον + " 1x μεσόω + " 470x μετά + " 2x μετάγω + " 3x μετάθεσις + " 1x μετάλημψις + " 22x μετάνοια + " 1x μετέπειτα + " 8x μετέχω + " 2x μεταίρω + " 1x μεταβάλλω + " 12x μεταβαίνω + " 5x μεταδίδωμι + " 4x μετακαλέω + " 1x μετακινέω + " 7x μεταλαμβάνω + " 2x μεταλλάσσω + " 6x μεταμέλομαι + " 4x μεταμορφόω + " 34x μετανοέω + " 9x μεταξύ + " 9x μεταπέμπω + " 2x μεταστρέφω + " 5x μετασχηματίζω + " 6x μετατίθημι + " 1x μετατρέπω + " 1x μετεωρίζομαι + " 2x μετοικίζω + " 4x μετοικεσία + " 1x μετοχή + " 11x μετρέω + " 1x μετρίως + " 1x μετρητής + " 1x μετριοπαθέω + " 57x μηδέ + " 1x μηδέποτε + " 1x μηδέπω + " 2x μηδαμῶς + " 90x μηδείς + " 22x μηκέτι + " 1x μηκύνω + " 1x μηλωτή + " 4x μηνύω + " 1x μηρός + " 1x μητρολῴας + " 5x μιαίνω + " 1x μιασμός + " 46x μικρός + " 4x μιμέομαι + " 6x μιμητής + " 23x μιμνῄσκω + " 40x μισέω + " 3x μισθαποδοσία + " 1x μισθαποδότης + " 3x μισθωτός + " 29x μισθός + " 2x μισθόω + " 1x μνήμη + " 7x μνεία + " 38x μνημεῖον + " 21x μνημονεύω + " 3x μνημόσυνον + " 3x μνηστεύω + " 9x μνᾶ + " 10x μνῆμα + " 1x μογιλάλος + " 4x μοιχάω + " 7x μοιχαλίς + " 3x μοιχεία + " 15x μοιχεύω + " 3x μοιχός + " 1x μολυσμός + " 3x μολύνω + " 1x μομφή + " 2x μονή + " 9x μονογενής + " 2x μονόφθαλμος + " 1x μονόω + " 3x μορφή + " 1x μορφόω + " 1x μοσχοποιέω + " 1x μουσικός + " 1x μυέω + " 1x μυελός + " 1x μυκάομαι + " 1x μυκτηρίζω + " 1x μυλικός + " 1x μυρίζω + " 8x μυριάς + " 27x μυστήριον + " 1x μυωπάζω + " 2x μωμάομαι + " 5x μωρία + " 4x μωραίνω + " 1x μωρολογία + " 12x μωρός + " 3x μόδιος + " 7x μόλις + " 114x μόνος + " 2x μόρφωσις + " 6x μόσχος + " 3x μόχθος + " 1x μύλινος + " 4x μύλος + " 3x μύριοι + " 14x μύρον + " 1x μώλωψ + " 81x μᾶλλον + " 3x μῆκος + " 5x μῦθος + " 1x μῶμος + " 2x νάρδος + " 2x νέκρωσις + " 24x νέος + " 1x νέφος + " 1x νή + " 2x νήθω + " 14x νήπιος + " 6x νήφω + " 1x νίκη + " 17x νίπτω + " 34x ναί + " 2x ναυαγέω + " 45x ναός + " 1x ναύκληρος + " 3x ναύτης + " 1x ναῦς + " 3x νεανίας + " 11x νεανίσκος + " 128x νεκρός + " 3x νεκρόω + " 1x νεομηνία + " 25x νεφέλη + " 1x νεφρός + " 1x νεωκόρος + " 1x νεωτερικός + " 4x νεότης + " 1x νεόφυτος + " 2x νεύω + " 1x νηπιάζω + " 1x νησίον + " 5x νηστεία + " 20x νηστεύω + " 3x νηφάλιος + " 28x νικάω + " 1x νιπτήρ + " 14x νοέω + " 2x νομή + " 15x νομίζω + " 2x νομίμως + " 9x νομικός + " 3x νομοδιδάσκαλος + " 1x νομοθέτης + " 1x νομοθεσία + " 2x νομοθετέω + " 1x νοσέω + " 1x νοσσίον + " 1x νοσσιά + " 1x νοσσός + " 3x νοσφίζω + " 3x νουθεσία + " 8x νουθετέω + " 1x νουνεχῶς + " 24x νοῦς + " 16x νυμφίος + " 4x νυμφών + " 18x νυνί + " 2x νυστάζω + " 1x νυχθήμερον + " 2x νωθρός + " 6x νόημα + " 1x νόθος + " 1x νόμισμα + " 194x νόμος + " 1x νόσημα + " 11x νόσος + " 7x νότος + " 8x νύμφη + " 61x νύξ + " 1x νύσσω + " 9x νῆσος + " 2x νῆστις + " 4x νῖκος + " 148x νῦν + " 1x νῶτος + " 14x ξένος + " 1x ξέστης + " 2x ξενία + " 10x ξενίζω + " 1x ξενοδοχέω + " 15x ξηραίνω + " 8x ξηρός + " 3x ξυράω + " 2x ξύλινος + " 20x ξύλον + " 4x οἰκέτης + " 8x οἰκέω + " 94x οἰκία + " 1x οἰκετεία + " 3x οἰκεῖος + " 2x οἰκητήριον + " 2x οἰκιακός + " 1x οἰκοδεσποτέω + " 12x οἰκοδεσπότης + " 40x οἰκοδομέω + " 18x οἰκοδομή + " 1x οἰκοδόμος + " 1x οἰκονομέω + " 9x οἰκονομία + " 10x οἰκονόμος + " 15x οἰκουμένη + " 1x οἰκουργός + " 3x οἰκτίρμων + " 2x οἰκτίρω + " 5x οἰκτιρμός + " 2x οἰνοπότης + " 1x οἰνοφλυγία + " 1x οἴκημα + " 3x οἴομαι + " 320x οἶδα + " 114x οἶκος + " 34x οἶνος + " 14x οἷος + " 1622x οὐ + " 1x οὐά + " 46x οὐαί + " 140x οὐδέ + " 16x οὐδέποτε + " 4x οὐδέπω + " 1x οὐδαμῶς + " 235x οὐδείς + " 48x οὐκέτι + " 1x οὐκοῦν + " 5x οὐρά + " 9x οὐράνιος + " 2x οὐρανόθεν + " 273x οὐρανός + " 2x οὐσία + " 53x οὐχί + " 27x οὔπω + " 91x οὔτε + " 209x οὕτω + " 496x οὖν + " 36x οὖς + " 24x οὗ + " 1388x οὗτος + " 16x πάθημα + " 3x πάθος + " 7x πάλαι + " 1x πάλη + " 141x πάλιν + " 3x πάντοθεν + " 41x πάντοτε + " 8x πάντως + " 1x πάντῃ + " 1x πάρδαλις + " 24x πάρειμι + " 1x πάρεσις + " 1x πάροδος + " 4x πάροικος + " 2x πάροινος + " 29x πάσχα + " 40x πάσχω + " 3x πέδη + " 2x πέλαγος + " 4x πέμπτος + " 79x πέμπω + " 1x πένης + " 5x πένθος + " 38x πέντε + " 23x πέραν + " 4x πέρας + " 1x πέριξ + " 2x πέρυσι + " 5x πέτομαι + " 15x πέτρα + " 1x πήγανον + " 1x πήγνυμι + " 6x πήρα + " 24x πίμπλημι + " 1x πίμπρημι + " 5x πίναξ + " 73x πίνω + " 90x πίπτω + " 243x πίστις + " 1x παίζω + " 5x παίω + " 5x παγίς + " 1x παγιδεύω + " 1x παθητός + " 1x παιδάριον + " 52x παιδίον + " 13x παιδίσκη + " 3x παιδαγωγός + " 6x παιδεία + " 2x παιδευτής + " 13x παιδεύω + " 1x παιδιόθεν + " 19x παλαιός + " 1x παλαιότης + " 4x παλαιόω + " 2x παλιγγενεσία + " 1x παμπληθεί + " 1x πανήγυρις + " 1x πανδοχεύς + " 1x πανδοχεῖον + " 1x πανοικεί + " 3x πανοπλία + " 5x πανουργία + " 1x πανοῦργος + " 7x πανταχοῦ + " 1x πανταχῇ + " 2x παντελής + " 10x παντοκράτωρ + " 192x παρά + " 7x παράβασις + " 10x παράγω + " 3x παράδεισος + " 1x παράδοξος + " 13x παράδοσις + " 2x παράκειμαι + " 29x παράκλησις + " 5x παράκλητος + " 1x παράλιος + " 19x παράπτωμα + " 1x παράσημος + " 29x παρέρχομαι + " 16x παρέχω + " 2x παρίημι + " 41x παρίστημι + " 1x παραβάλλω + " 5x παραβάτης + " 3x παραβαίνω + " 2x παραβιάζομαι + " 50x παραβολή + " 1x παραβολεύομαι + " 37x παραγίνομαι + " 31x παραγγέλλω + " 5x παραγγελία + " 6x παραδέχομαι + " 119x παραδίδωμι + " 1x παραδειγματίζω + " 4x παραζηλόω + " 3x παραθήκη + " 1x παραθαλάσσιος + " 1x παραθεωρέω + " 2x παραινέω + " 12x παραιτέομαι + " 1x παρακαθέζομαι + " 109x παρακαλέω + " 1x παρακαλύπτω + " 3x παρακοή + " 4x παρακολουθέω + " 3x παρακούω + " 5x παρακύπτω + " 2x παραλέγομαι + " 49x παραλαμβάνω + " 1x παραλλαγή + " 2x παραλογίζομαι + " 10x παραλυτικός + " 5x παραλύω + " 3x παραμένω + " 4x παραμυθέομαι + " 1x παραμυθία + " 1x παραμύθιον + " 1x παρανομέω + " 1x παρανομία + " 1x παραπίπτω + " 1x παραπικραίνω + " 2x παραπικρασμός + " 1x παραπλέω + " 1x παραπλήσιος + " 1x παραπλησίως + " 5x παραπορεύομαι + " 1x παραρρέω + " 4x παρασκευάζω + " 6x παρασκευή + " 1x παρατήρησις + " 19x παρατίθημι + " 1x παρατείνω + " 6x παρατηρέω + " 1x παρατυγχάνω + " 1x παραυτίκα + " 4x παραφέρω + " 1x παραφρονέω + " 1x παραφρονία + " 4x παραχειμάζω + " 1x παραχειμασία + " 18x παραχρῆμα + " 1x παρείσακτος + " 1x παρεδρεύω + " 1x παρεισάγω + " 2x παρεισέρχομαι + " 1x παρεισδύω + " 1x παρεισφέρω + " 3x παρεκτός + " 1x παρεμβάλλω + " 10x παρεμβολή + " 1x παρενοχλέω + " 3x παρεπίδημος + " 1x παρηγορία + " 15x παρθένος + " 1x παρθενία + " 1x παροίχομαι + " 2x παροικέω + " 2x παροικία + " 5x παροιμία + " 1x παρομοιάζω + " 2x παροξυσμός + " 2x παροξύνω + " 2x παροργίζω + " 1x παροργισμός + " 1x παροτρύνω + " 24x παρουσία + " 1x παροψίς + " 31x παρρησία + " 9x παρρησιάζομαι + " 1x παρόμοιος + " 10x πατάσσω + " 5x πατέω + " 412x πατήρ + " 8x πατρίς + " 3x πατριά + " 4x πατριάρχης + " 1x πατρικός + " 1x πατρολῴας + " 1x πατροπαράδοτος + " 3x πατρῷος + " 2x παχύνω + " 15x παύω + " 24x παῖς + " 52x πείθω + " 1x πεδινός + " 1x πεζεύω + " 2x πεζῇ + " 4x πειθαρχέω + " 1x πειθός + " 23x πεινάω + " 39x πειράζω + " 1x πειράομαι + " 21x πειρασμός + " 1x πεισμονή + " 1x πελεκίζω + " 10x πενθέω + " 6x πενθερά + " 1x πενθερός + " 1x πενιχρός + " 1x πεντάκις + " 7x πεντήκοντα + " 6x πεντακισχίλιοι + " 2x πεντακόσιοι + " 1x πεντεκαιδέκατος + " 3x πεντηκοστή + " 6x πεποίθησις + " 333x περί + " 2x περίεργος + " 1x περίθεσις + " 5x περίκειμαι + " 4x περίλυπος + " 1x περίοικος + " 5x περίσσευμα + " 9x περίχωρος + " 1x περίψημα + " 1x περαιτέρω + " 4x περιΐστημι + " 6x περιάγω + " 1x περιάπτω + " 4x περιέρχομαι + " 2x περιέχω + " 4x περιαιρέω + " 2x περιαστράπτω + " 23x περιβάλλω + " 7x περιβλέπω + " 2x περιβόλαιον + " 1x περιδέω + " 1x περιεργάζομαι + " 6x περιζώννυμι + " 1x περικάθαρμα + " 3x περικαλύπτω + " 2x περικεφαλαία + " 1x περικρατής + " 1x περικρύβω + " 1x περικυκλόω + " 2x περιλάμπω + " 2x περιλείπομαι + " 1x περιμένω + " 1x περιοικέω + " 1x περιοχή + " 1x περιούσιος + " 3x περιπίπτω + " 95x περιπατέω + " 1x περιπείρω + " 5x περιποίησις + " 3x περιποιέω + " 1x περιρήγνυμι + " 1x περισπάω + " 4x περισσεία + " 39x περισσεύω + " 1x περισσοῦ + " 21x περισσός + " 16x περισσῶς + " 10x περιστερά + " 17x περιτέμνω + " 8x περιτίθημι + " 36x περιτομή + " 1x περιτρέπω + " 1x περιτρέχω + " 3x περιφέρω + " 1x περιφρονέω + " 1x περπερεύομαι + " 14x πετεινός + " 4x πετρώδης + " 2x πεῖρα + " 11x πηγή + " 2x πηδάλιον + " 2x πηλίκος + " 6x πηλός + " 12x πιάζω + " 1x πιέζω + " 1x πιθανολογία + " 4x πικρία + " 4x πικραίνω + " 2x πικρός + " 2x πικρῶς + " 1x πινακίδιον + " 9x πιπράσκω + " 241x πιστεύω + " 2x πιστικός + " 67x πιστός + " 1x πιστόω + " 1x πιότης + " 10x πλάνη + " 5x πλάνος + " 3x πλάξ + " 1x πλάσμα + " 2x πλάσσω + " 4x πλάτος + " 1x πλέγμα + " 3x πλέκω + " 6x πλέω + " 2x πλήκτης + " 1x πλήμμυρα + " 31x πλήν + " 16x πλήρης + " 17x πλήρωμα + " 1x πλήσσω + " 39x πλανάω + " 1x πλανήτης + " 1x πλαστός + " 3x πλατύνω + " 10x πλατύς + " 9x πλεονάζω + " 4x πλεονέκτης + " 5x πλεονεκτέω + " 10x πλεονεξία + " 5x πλευρά + " 22x πληγή + " 12x πληθύνω + " 6x πληροφορέω + " 4x πληροφορία + " 86x πληρόω + " 17x πλησίον + " 1x πλησμονή + " 5x πλοιάριον + " 4x πλουσίως + " 12x πλουτέω + " 3x πλουτίζω + " 28x πλούσιος + " 67x πλοῖον + " 22x πλοῦτος + " 3x πλόος + " 3x πλύνω + " 31x πλῆθος + " 7x πνέω + " 2x πνίγω + " 26x πνευματικός + " 2x πνευματικῶς + " 379x πνεῦμα + " 3x πνικτός + " 2x πνοή + " 2x ποίημα + " 1x ποίησις + " 5x ποίμνη + " 5x ποίμνιον + " 1x ποδήρης + " 566x ποιέω + " 6x ποιητής + " 10x ποικίλος + " 18x ποιμήν + " 11x ποιμαίνω + " 1x πολίτευμα + " 4x πολίτης + " 7x πολεμέω + " 2x πολιτάρχης + " 2x πολιτεία + " 2x πολιτεύομαι + " 18x πολλάκις + " 2x πολλαπλασίων + " 1x πολυλογία + " 1x πολυμερῶς + " 1x πολυποίκιλος + " 3x πολυτελής + " 1x πολυτρόπως + " 413x πολύς + " 1x πολύσπλαγχνος + " 3x πολύτιμος + " 7x πονηρία + " 78x πονηρός + " 2x πορεία + " 153x πορεύομαι + " 3x πορθέω + " 2x πορισμός + " 25x πορνεία + " 8x πορνεύω + " 4x πορφυροῦς + " 1x πορφυρόπωλις + " 4x πορφύρα + " 3x ποσάκις + " 54x ποτέ + " 31x ποτήριον + " 15x ποτίζω + " 1x ποταμοφόρητος + " 17x ποταμός + " 7x ποταπός + " 7x πού + " 93x πούς + " 33x ποῖος + " 45x ποῦ + " 2x πράκτωρ + " 39x πράσσω + " 7x πρέπω + " 1x πρίζω + " 13x πρίν + " 4x πραΰς + " 11x πραΰτης + " 1x πραγματεία + " 1x πραγματευομαι + " 8x πραιτώριον + " 2x πρασιά + " 1x πραϋπαθία + " 2x πρεσβεία + " 2x πρεσβεύω + " 3x πρεσβυτέριον + " 66x πρεσβύτερος + " 3x πρεσβύτης + " 1x πρεσβῦτις + " 1x πρηνής + " 8x προΐστημι + " 20x προάγω + " 9x προέρχομαι + " 1x προέχω + " 1x προαιρέω + " 1x προαιτιάομαι + " 1x προακούω + " 2x προαμαρτάνω + " 1x προαύλιον + " 2x προβάλλω + " 2x προβάτιον + " 5x προβαίνω + " 1x προβατικός + " 1x προβιβάζω + " 1x προβλέπω + " 1x προγίνομαι + " 5x προγινώσκω + " 4x προγράφω + " 1x προδίδωμι + " 3x προδότης + " 1x προελπίζω + " 2x προενάρχομαι + " 2x προεπαγγέλλω + " 2x προετοιμάζω + " 1x προευαγγελίζομαι + " 1x προηγέομαι + " 1x προθεσμία + " 5x προθυμία + " 1x προθύμως + " 1x προκαλέω + " 2x προκαταγγέλλω + " 1x προκαταρτίζω + " 1x προκηρύσσω + " 3x προκοπή + " 1x προκυρόω + " 6x προκόπτω + " 15x προλέγω + " 3x προλαμβάνω + " 1x προμαρτύρομαι + " 1x προμελετάω + " 1x προμεριμνάω + " 3x προνοέω + " 4x προοράω + " 6x προορίζω + " 1x προπάσχω + " 1x προπάτωρ + " 9x προπέμπω + " 2x προπετής + " 2x προπορεύομαι + " 1x προσάββατον + " 5x προσάγω + " 87x προσέρχομαι + " 24x προσέχω + " 4x προσήλυτος + " 2x προσαίτης + " 1x προσαγορεύω + " 3x προσαγωγή + " 1x προσαιτέω + " 1x προσαναβαίνω + " 2x προσαναπληρόω + " 2x προσανατίθημι + " 1x προσαπειλέω + " 1x προσδέομαι + " 14x προσδέχομαι + " 1x προσδαπανάω + " 16x προσδοκάω + " 2x προσδοκία + " 1x προσεάω + " 1x προσεργάζομαι + " 36x προσευχή + " 86x προσεύχομαι + " 1x προσηλόω + " 29x προσκαλέω + " 1x προσκαρτέρησις + " 10x προσκαρτερέω + " 1x προσκεφάλαιον + " 1x προσκλίνω + " 1x προσκληρόω + " 1x προσκολλάω + " 1x προσκοπή + " 2x προσκυλίω + " 60x προσκυνέω + " 1x προσκυνητής + " 8x προσκόπτω + " 2x προσλαλέω + " 12x προσλαμβάνω + " 7x προσμένω + " 1x προσορμίζω + " 1x προσοφείλω + " 2x προσοχθίζω + " 1x προσπήγνυμι + " 8x προσπίπτω + " 1x προσποιέω + " 1x προσπορεύομαι + " 2x προσρήσσω + " 7x προστάσσω + " 1x προστάτις + " 18x προστίθημι + " 3x προστρέχω + " 1x προσφάγιον + " 1x προσφάτως + " 46x προσφέρω + " 1x προσφιλής + " 9x προσφορά + " 7x προσφωνέω + " 1x προσψαύω + " 1x προσωπολήμπτης + " 1x προσωπολημπτέω + " 4x προσωπολημψία + " 3x προτίθημι + " 1x προτείνω + " 1x προτρέπω + " 2x προτρέχω + " 2x προφέρω + " 144x προφήτης + " 19x προφητεία + " 28x προφητεύω + " 2x προφητικός + " 1x προφθάνω + " 2x προφῆτις + " 3x προχειρίζομαι + " 1x προχειροτονέω + " 2x προϋπάρχω + " 12x πρωΐ + " 2x πρωΐα + " 1x πρωτεύω + " 4x πρωτοκαθεδρία + " 5x πρωτοκλισία + " 1x πρωτοστάτης + " 1x πρωτοτόκια + " 8x πρωτότοκος + " 2x πρωϊνός + " 47x πρό + " 37x πρόβατον + " 2x πρόγνωσις + " 2x πρόγονος + " 3x πρόδηλος + " 1x πρόδρομος + " 12x πρόθεσις + " 3x πρόθυμος + " 5x πρόκειμαι + " 1x πρόκριμα + " 2x πρόνοια + " 700x πρός + " 4x πρόσκαιρος + " 1x πρόσκλισις + " 6x πρόσκομμα + " 1x πρόσλημψις + " 1x πρόσπεινος + " 1x πρόσφατος + " 1x πρόσχυσις + " 76x πρόσωπον + " 11x πρότερος + " 6x πρόφασις + " 1x πρόϊμος + " 3x πρύμνα + " 1x πρώτως + " 11x πρᾶγμα + " 6x πρᾶξις + " 155x πρῶτος + " 2x πρῷρα + " 1x πτέρνα + " 5x πτέρυξ + " 5x πταίω + " 2x πτερύγιον + " 1x πτηνός + " 2x πτοέω + " 3x πτωχεία + " 1x πτωχεύω + " 34x πτωχός + " 1x πτόησις + " 2x πτύον + " 1x πτύρω + " 1x πτύσμα + " 1x πτύσσω + " 3x πτύω + " 7x πτῶμα + " 2x πτῶσις + " 1x πυγμή + " 3x πυκνός + " 1x πυκτεύω + " 18x πυλών + " 11x πυνθάνομαι + " 2x πυρά + " 2x πυρέσσω + " 6x πυρετός + " 2x πυρράζω + " 2x πυρρός + " 6x πυρόω + " 22x πωλέω + " 5x πωρόω + " 29x πόθεν + " 18x πόλεμος + " 163x πόλις + " 2x πόμα + " 4x πόνος + " 12x πόρνη + " 10x πόρνος + " 4x πόρρω + " 2x πόρρωθεν + " 3x πόσις + " 27x πόσος + " 19x πότε + " 1x πότερον + " 1x πότος + " 1x πύθων + " 10x πύλη + " 4x πύργος + " 1x πύρινος + " 3x πύρωσις + " 6x πώποτε + " 3x πώρωσις + " 1242x πᾶς + " 4x πῆχυς + " 71x πῦρ + " 12x πῶλος + " 118x πῶς + " 68x σάββατον + " 4x σάκκος + " 1x σάλος + " 11x σάλπιγξ + " 1x σάπφιρος + " 2x σάρδιον + " 4x σάρκινος + " 147x σάρξ + " 2x σάτον + " 2x σέβασμα + " 10x σέβω + " 41x σήμερον + " 1x σήπω + " 3x σής + " 1x σίδηρος + " 1x σίκερα + " 5x σίναπι + " 1x σαίνω + " 2x σαβαχθάνι + " 1x σαββατισμός + " 1x σαγήνη + " 15x σαλεύω + " 12x σαλπίζω + " 1x σαλπιστής + " 1x σανίς + " 2x σανδάλιον + " 8x σαπρός + " 1x σαργάνη + " 1x σαρδόνυξ + " 7x σαρκικός + " 3x σαρόω + " 6x σβέννυμι + " 5x σείω + " 42x σεαυτοῦ + " 1x σεβάζομαι + " 3x σεβαστός + " 14x σεισμός + " 9x σελήνη + " 2x σεληνιάζομαι + " 1x σεμίδαλις + " 4x σεμνός + " 3x σεμνότης + " 6x σημαίνω + " 1x σημειόω + " 77x σημεῖον + " 1x σητόβρωτος + " 1x σθενόω + " 2x σιαγών + " 10x σιγάω + " 2x σιγή + " 5x σιδηροῦς + " 1x σικάριος + " 1x σιμικίνθιον + " 6x σινδών + " 1x σινιάζω + " 1x σιρικός + " 1x σιρός + " 1x σιτίον + " 3x σιτευτός + " 1x σιτιστός + " 1x σιτομέτριον + " 10x σιωπάω + " 15x σκάνδαλον + " 3x σκάπτω + " 3x σκάφη + " 3x σκέλος + " 1x σκέπασμα + " 3x σκήνωμα + " 29x σκανδαλίζω + " 1x σκευή + " 23x σκεῦος + " 20x σκηνή + " 1x σκηνοπηγία + " 1x σκηνοποιός + " 5x σκηνόω + " 7x σκιά + " 3x σκιρτάω + " 3x σκληροκαρδία + " 1x σκληροτράχηλος + " 5x σκληρός + " 1x σκληρότης + " 6x σκληρύνω + " 4x σκολιός + " 6x σκοπέω + " 1x σκοπός + " 5x σκορπίζω + " 5x σκορπίος + " 17x σκοτία + " 5x σκοτίζω + " 3x σκοτεινός + " 3x σκοτόω + " 2x σκυθρωπός + " 1x σκωληκόβρωτος + " 1x σκόλοψ + " 30x σκότος + " 1x σκύβαλον + " 4x σκύλλω + " 1x σκώληξ + " 2x σκῆνος + " 1x σκῦλον + " 1x σμάραγδος + " 1x σμαράγδινος + " 1x σμυρνίζω + " 2x σμύρνα + " 1x σορός + " 4x σουδάριον + " 51x σοφία + " 2x σοφίζω + " 20x σοφός + " 2x σπάω + " 2x σπένδω + " 44x σπέρμα + " 6x σπήλαιον + " 2x σπίλος + " 3x σπαράσσω + " 2x σπαργανόω + " 2x σπαταλάω + " 52x σπείρω + " 1x σπεκουλάτωρ + " 1x σπερμολόγος + " 6x σπεύδω + " 7x σπεῖρα + " 1x σπιλάς + " 2x σπιλόω + " 11x σπλάγχνον + " 12x σπλαγχνίζομαι + " 3x σποδός + " 1x σπορά + " 11x σπουδάζω + " 12x σπουδή + " 4x σπουδαίως + " 3x σπουδαῖος + " 5x σπυρίς + " 3x σπόγγος + " 3x σπόριμος + " 5x σπόρος + " 7x στάδιον + " 1x στάμνος + " 9x στάσις + " 5x στάχυς + " 3x στέγη + " 4x στέγω + " 2x στέλλω + " 1x στέμμα + " 18x στέφανος + " 11x στήκω + " 1x στίγμα + " 1x στίλβω + " 1x στασιαστής + " 1x στατήρ + " 27x σταυρός + " 46x σταυρόω + " 3x σταφυλή + " 6x στενάζω + " 2x στεναγμός + " 3x στενοχωρέω + " 4x στενοχωρία + " 3x στενός + " 1x στερέωμα + " 4x στερεός + " 3x στερεόω + " 3x στεφανόω + " 4x στεῖρα + " 14x στηρίζω + " 1x στηριγμός + " 1x στιβάς + " 1x στιγμή + " 4x στοά + " 5x στοιχέω + " 7x στοιχεῖον + " 9x στολή + " 8x στράτευμα + " 21x στρέφω + " 2x στρατεία + " 7x στρατεύω + " 10x στρατηγός + " 2x στρατιά + " 26x στρατιώτης + " 1x στρατολογέω + " 1x στρατόπεδον + " 1x στρεβλόω + " 2x στρηνιάω + " 4x στρουθίον + " 6x στρωννύω + " 1x στρῆνος + " 1x στυγητός + " 2x στυγνάζω + " 78x στόμα + " 1x στόμαχος + " 5x στῆθος + " 4x στῦλος + " 3x συγγένεια + " 11x συγγενής + " 1x συγγενίς + " 1x συγγνώμη + " 2x συγκάθημαι + " 1x συγκάμπτω + " 2x συγκαθίζω + " 2x συγκακοπαθέω + " 1x συγκακουχέομαι + " 8x συγκαλέω + " 1x συγκαλύπτω + " 1x συγκατάθεσις + " 1x συγκαταβαίνω + " 1x συγκατατίθεμαι + " 1x συγκαταψηφίζομαι + " 2x συγκεράννυμι + " 1x συγκινέω + " 4x συγκλείω + " 4x συγκληρονόμος + " 3x συγκοινωνέω + " 4x συγκοινωνός + " 1x συγκομίζω + " 3x συγκρίνω + " 1x συγκυρία + " 1x συγκύπτω + " 5x συγχέω + " 7x συγχαίρω + " 1x συγχράομαι + " 3x συζάω + " 2x συζεύγνυμι + " 10x συζητέω + " 1x συζητητής + " 2x συζωοποιέω + " 1x συκάμινος + " 1x συκομορέα + " 2x συκοφαντέω + " 16x συκῆ + " 1x συλάω + " 1x συλαγωγέω + " 8x συλλέγω + " 6x συλλαλέω + " 16x συλλαμβάνω + " 1x συλλογίζομαι + " 1x συλλυπέω + " 6x συμβάλλω + " 8x συμβαίνω + " 2x συμβασιλεύω + " 7x συμβιβάζω + " 4x συμβουλεύω + " 8x συμβούλιον + " 2x συμμέτοχος + " 1x συμμαθητής + " 3x συμμαρτυρέω + " 1x συμμερίζω + " 1x συμμιμητής + " 1x συμμορφίζω + " 1x συμπάρειμι + " 2x συμπάσχω + " 2x συμπέμπω + " 1x συμπίνω + " 1x συμπίπτω + " 2x συμπαθέω + " 1x συμπαθής + " 1x συμπαραγίνομαι + " 1x συμπαρακαλέω + " 4x συμπαραλαμβάνω + " 1x συμπεριλαμβάνω + " 3x συμπληρόω + " 5x συμπνίγω + " 1x συμπολίτης + " 4x συμπορεύομαι + " 1x συμπρεσβύτερος + " 2x συμπόσιον + " 15x συμφέρω + " 1x συμφυλέτης + " 6x συμφωνέω + " 1x συμφωνία + " 1x συμφύω + " 1x συμφώνησις + " 1x συμψηφίζω + " 59x συνάγω + " 22x συνέδριον + " 2x συνέκδημος + " 1x συνέπομαι + " 30x συνέρχομαι + " 12x συνέχω + " 1x συνήδομαι + " 3x συνήθεια + " 26x συνίημι + " 16x συνίστημι + " 3x συναίρω + " 56x συναγωγή + " 1x συναγωνίζομαι + " 2x συναθλέω + " 2x συναθροίζω + " 3x συναιχμάλωτος + " 3x συνακολουθέω + " 1x συναλίζομαι + " 1x συναλλάσσω + " 7x συνανάκειμαι + " 2x συναναβαίνω + " 3x συναναμίγνυμι + " 1x συναναπαύομαι + " 6x συναντάω + " 2x συναντιλαμβάνομαι + " 3x συναπάγω + " 3x συναποθνῄσκω + " 1x συναποστέλλω + " 1x συναπόλλυμι + " 2x συναρμολογέω + " 4x συναρπάζω + " 1x συναυξάνω + " 1x συνδέω + " 1x συνδοξάζω + " 1x συνδρομή + " 31x συνείδησις + " 3x συνεγείρω + " 2x συνεισέρχομαι + " 1x συνεκλεκτός + " 1x συνεπιμαρτυρέω + " 1x συνεπιτίθημι + " 5x συνεργέω + " 12x συνεργός + " 5x συνεσθίω + " 4x συνετός + " 6x συνευδοκέω + " 2x συνευωχέομαι + " 1x συνεφίστημι + " 1x συνηλικιώτης + " 2x συνθάπτω + " 2x συνθλάω + " 2x συνθλίβω + " 1x συνθρύπτω + " 1x συνοδία + " 1x συνοδεύω + " 1x συνοικέω + " 1x συνοικοδομέω + " 1x συνομιλέω + " 1x συνομορέω + " 4x συνοράω + " 2x συνοχή + " 3x συντάσσω + " 6x συντέλεια + " 1x συντέμνω + " 3x συντίθημι + " 6x συντελέω + " 3x συντηρέω + " 3x συντρέχω + " 7x συντρίβω + " 1x συντυγχάνω + " 2x συντόμως + " 1x συνυποκρίνομαι + " 1x συνυπουργέω + " 1x συνωδίνω + " 1x συνωμοσία + " 2x συσπαράσσω + " 2x συστέλλω + " 1x συστατικός + " 5x συσταυρόω + " 1x συστενάζω + " 1x συστοιχέω + " 2x συστρέφω + " 2x συστρατιώτης + " 2x συστροφή + " 2x συσχηματίζω + " 1x σφάγιον + " 10x σφάζω + " 3x σφαγή + " 1x σφοδρῶς + " 15x σφραγίζω + " 16x σφραγίς + " 1x σφυδρόν + " 11x σφόδρα + " 11x σχίζω + " 8x σχίσμα + " 3x σχεδόν + " 2x σχοινίον + " 2x σχολάζω + " 1x σχολή + " 2x σχῆμα + " 2x σωματικός + " 1x σωματικῶς + " 2x σωρεύω + " 24x σωτήρ + " 5x σωτήριος + " 46x σωτηρία + " 6x σωφρονέω + " 1x σωφρονίζω + " 1x σωφρονισμός + " 3x σωφροσύνη + " 1x σωφρόνως + " 27x σός + " 2892x σύ + " 1x σύγχυσις + " 1x σύζυγος + " 1x σύμβουλος + " 2x σύμμορφος + " 1x σύμφημι + " 2x σύμφορος + " 1x σύμφυτος + " 1x σύμφωνος + " 1x σύμψυχος + " 128x σύν + " 4x σύνδεσμος + " 10x σύνδουλος + " 2x σύνειμι (I) + " 1x σύνειμι (II) + " 7x σύνεσις + " 1x σύντριμμα + " 1x σύντροφος + " 5x σύρω + " 1x σύσσημον + " 1x σύσσωμος + " 4x σώφρων + " 14x σῖτος + " 4x σῦκον + " 106x σῴζω + " 142x σῶμα + " 1x τάγμα + " 14x τάλαντον + " 9x τάξις + " 2x τάραχος + " 8x τάσσω + " 7x τάφος + " 2x τάχα + " 7x τάχος + " 209x τέ + " 99x τέκνον + " 2x τέκτων + " 19x τέλειος + " 41x τέλος + " 16x τέρας + " 41x τέσσαρες + " 10x τέταρτος + " 3x τέχνη + " 1x τήκω + " 3x τήρησις + " 99x τίθημι + " 18x τίκτω + " 3x τίλλω + " 13x τίμιος + " 1x τίνω + " 562x τίς + " 2x τίτλος + " 1x ταβέρνη + " 1x τακτός + " 2x ταλαίπωρος + " 1x ταλαιπωρέω + " 2x ταλαιπωρία + " 1x ταλαντιαῖος + " 1x ταλιθά + " 4x ταμεῖον + " 4x ταπείνωσις + " 7x ταπεινοφροσύνη + " 8x ταπεινός + " 1x ταπεινόφρων + " 14x ταπεινόω + " 18x ταράσσω + " 1x ταραχή + " 1x ταρταρόω + " 1x ταφή + " 10x ταχέως + " 2x ταχινός + " 19x ταχύς + " 4x ταῦρος + " 1x τεκμήριον + " 8x τεκνίον + " 1x τεκνογονέω + " 1x τεκνογονία + " 1x τεκνοτροφέω + " 28x τελέω + " 1x τελείως + " 2x τελείωσις + " 1x τελειωτής + " 2x τελειότης + " 23x τελειόω + " 1x τελεσφορέω + " 11x τελευτάω + " 1x τελευτή + " 21x τελώνης + " 3x τελώνιον + " 2x τεσσαρεσκαιδέκατος + " 22x τεσσεράκοντα + " 2x τεσσερακονταετής + " 1x τεταρταῖος + " 1x τετράγωνος + " 1x τετράδιον + " 1x τετράμηνος + " 3x τετράπους + " 4x τετραάρχης + " 3x τετρααρχέω + " 5x τετρακισχίλιοι + " 4x τετρακόσιοι + " 1x τετραπλοῦς + " 1x τεφρόω + " 4x τεχνίτης + " 9x τεῖχος + " 1x τηλαυγῶς + " 4x τηλικοῦτος + " 71x τηρέω + " 21x τιμάω + " 41x τιμή + " 1x τιμιότης + " 2x τιμωρέω + " 1x τιμωρία + " 3x τοίνυν + " 2x τοιγαροῦν + " 57x τοιοῦτος + " 1x τοιόσδε + " 16x τολμάω + " 1x τολμηρός + " 1x τολμητής + " 1x τομός + " 1x τοπάζιον + " 20x τοσοῦτος + " 1x τοῖχος + " 4x τράγος + " 15x τράπεζα + " 7x τράχηλος + " 3x τρέμω + " 9x τρέφω + " 20x τρέχω + " 2x τρίβολος + " 3x τρίβος + " 1x τρίζω + " 1x τρίμηνος + " 12x τρίς + " 1x τρίστεγον + " 56x τρίτος + " 1x τρίχινος + " 1x τραπεζίτης + " 2x τραυματίζω + " 1x τραχηλίζω + " 2x τραχύς + " 1x τραῦμα + " 67x τρεῖς + " 11x τριάκοντα + " 2x τριακόσιοι + " 1x τριετία + " 1x τρισχίλιοι + " 1x τροπή + " 1x τροποφορέω + " 16x τροφή + " 1x τροφός + " 1x τροχιά + " 1x τροχός + " 3x τρυγάω + " 1x τρυγών + " 1x τρυμαλιά + " 1x τρυφάω + " 2x τρυφή + " 5x τρόμος + " 13x τρόπος + " 2x τρύβλιον + " 6x τρώγω + " 2x τρῆμα + " 12x τυγχάνω + " 1x τυμπανίζω + " 1x τυπικώς + " 50x τυφλός + " 3x τυφλόω + " 1x τυφωνικός + " 3x τυφόω + " 2x τόκος + " 1x τόξον + " 95x τόπος + " 159x τότε + " 14x τύπος + " 13x τύπτω + " 1x τύφω + " 529x τὶς + " 3x τὸ ἐναντίον + " 1x τὸ ὄνομα + " 5x υἱοθεσία + " 376x υἱός + " 2x φάγος + " 2x φάντασμα + " 1x φάραγξ + " 2x φάρμακος + " 1x φάσις + " 3x φάσκω + " 4x φάτνη + " 3x φέγγος + " 68x φέρω + " 2x φήμη + " 1x φίλανδρος + " 1x φίλαυτος + " 7x φίλημα + " 29x φίλος + " 31x φαίνω + " 1x φαιλόνης + " 2x φανέρωσις + " 18x φανερός + " 49x φανερόω + " 3x φανερῶς + " 1x φαντάζω + " 1x φαντασία + " 1x φανός + " 3x φαρμακεία + " 6x φαῦλος + " 10x φείδομαι + " 2x φειδομένως + " 29x φεύγω + " 66x φημί + " 7x φθάνω + " 3x φθέγγομαι + " 6x φθαρτός + " 9x φθείρω + " 1x φθινοπωρινός + " 1x φθονέω + " 9x φθορά + " 2x φθόγγος + " 9x φθόνος + " 12x φιάλη + " 1x φιλάγαθος + " 1x φιλάδελφος + " 2x φιλάργυρος + " 25x φιλέω + " 1x φιλήδονος + " 1x φιλία + " 6x φιλαδελφία + " 2x φιλανθρωπία + " 1x φιλανθρώπως + " 1x φιλαργυρία + " 1x φιλονεικία + " 2x φιλοξενία + " 1x φιλοπρωτεύω + " 1x φιλοσοφία + " 3x φιλοτιμέομαι + " 1x φιλοφρόνως + " 1x φιλόθεος + " 1x φιλόνεικος + " 3x φιλόξενος + " 1x φιλόσοφος + " 1x φιλόστοργος + " 1x φιλότεκνος + " 7x φιμόω + " 2x φλογίζω + " 1x φλυαρέω + " 7x φλόξ + " 1x φλύαρος + " 95x φοβέω + " 3x φοβερός + " 7x φονεύς + " 12x φονεύω + " 6x φορέω + " 2x φορτίζω + " 6x φορτίον + " 2x φοῖνιξ + " 1x φράζω + " 3x φράσσω + " 7x φρέαρ + " 2x φρήν + " 1x φρίσσω + " 1x φραγέλλιον + " 2x φραγελλόω + " 4x φραγμός + " 1x φρεναπάτης + " 1x φρεναπατάω + " 26x φρονέω + " 1x φρονίμως + " 1x φροντίζω + " 4x φρουρέω + " 1x φρυάσσω + " 4x φρόνημα + " 2x φρόνησις + " 14x φρόνιμος + " 1x φρύγανον + " 1x φυγή + " 31x φυλάσσω + " 31x φυλή + " 46x φυλακή + " 1x φυλακίζω + " 1x φυλακτήριον + " 1x φυσίωσις + " 3x φυσικός + " 1x φυσικῶς + " 7x φυσιόω + " 1x φυτεία + " 11x φυτεύω + " 2x φωλεός + " 42x φωνέω + " 139x φωνή + " 2x φωστήρ + " 1x φωσφόρος + " 11x φωτίζω + " 5x φωτεινός + " 2x φωτισμός + " 1x φόβητρον + " 47x φόβος + " 9x φόνος + " 5x φόρος + " 3x φύλαξ + " 6x φύλλον + " 5x φύραμα + " 14x φύσις + " 3x φύω + " 72x φῶς + " 4x χάλαζα + " 8x χάραγμα + " 1x χάραξ + " 9x χάριν + " 155x χάρις + " 17x χάρισμα + " 1x χάρτης + " 1x χάσμα + " 11x χίλιοι + " 74x χαίρω + " 7x χαλάω + " 2x χαλεπός + " 2x χαλιναγωγέω + " 2x χαλινός + " 1x χαλκίον + " 1x χαλκεύς + " 1x χαλκηδών + " 2x χαλκολίβανον + " 1x χαλκοῦς + " 5x χαλκός + " 2x χαμαί + " 59x χαρά + " 23x χαρίζομαι + " 1x χαρακτήρ + " 2x χαριτόω + " 1x χείμαρρος + " 176x χείρ + " 11x χείρων + " 1x χειμάζω + " 6x χειμών + " 2x χειραγωγέω + " 1x χειραγωγός + " 6x χειροποίητος + " 2x χειροτονέω + " 1x χειρόγραφον + " 7x χεῖλος + " 21x χιλίαρχος + " 23x χιλιάς + " 11x χιτών + " 2x χιών + " 2x χλαμύς + " 1x χλευάζω + " 1x χλιαρός + " 4x χλωρός + " 1x χολάω + " 2x χολή + " 2x χορηγέω + " 15x χορτάζω + " 1x χορός + " 4x χοϊκός + " 2x χοῖνιξ + " 12x χοῖρος + " 2x χοῦς + " 11x χράομαι + " 1x χρή + " 1x χρήσιμος + " 5x χρίω + " 49x χρεία + " 2x χρεοφειλέτης + " 9x χρηματίζω + " 1x χρηματισμός + " 1x χρηστεύομαι + " 1x χρηστολογία + " 7x χρηστός + " 10x χρηστότης + " 5x χρονίζω + " 1x χρονοτριβέω + " 13x χρυσίον + " 1x χρυσοδακτύλιος + " 18x χρυσοῦς + " 1x χρυσόλιθος + " 1x χρυσόπρασος + " 9x χρυσός + " 2x χρυσόω + " 54x χρόνος + " 1x χρώς + " 5x χρῄζω + " 6x χρῆμα + " 2x χρῆσις + " 3x χρῖσμα + " 14x χωλός + " 10x χωρέω + " 13x χωρίζω + " 10x χωρίον + " 41x χωρίς + " 1x χόρτασμα + " 15x χόρτος + " 28x χώρα + " 26x χῆρος + " 1x χῶρος (II) + " 5x ψάλλω + " 7x ψαλμός + " 2x ψευδάδελφος + " 3x ψευδής + " 1x ψευδαπόστολος + " 1x ψευδοδιδάσκαλος + " 1x ψευδολόγος + " 5x ψευδομαρτυρέω + " 2x ψευδομαρτυρία + " 11x ψευδοπροφήτης + " 2x ψευδόμαρτυς + " 2x ψευδόχριστος + " 1x ψευδώνυμος + " 12x ψεύδομαι + " 10x ψεύστης + " 10x ψεῦδος + " 1x ψεῦσμα + " 4x ψηλαφάω + " 2x ψηφίζω + " 1x ψιθυρισμός + " 1x ψιθυριστής + " 2x ψιχίον + " 102x ψυχή + " 6x ψυχικός + " 4x ψυχρός + " 2x ψωμίζω + " 4x ψωμίον + " 1x ψύχω + " 1x ψώχω + " 3x ψῆφος + " 3x ψῦχος + " 2x ἀΐδιος + " 7x ἀήρ + " 1x ἀβαρής + " 3x ἀββά + " 116x ἀγάπη + " 7x ἀγέλη + " 2x ἀγαθοεργέω + " 1x ἀγαθοποιΐα + " 9x ἀγαθοποιέω + " 1x ἀγαθοποιός + " 4x ἀγαθωσύνη + " 102x ἀγαθός + " 5x ἀγαλλίασις + " 11x ἀγαλλιάω + " 1x ἀγανάκτησις + " 7x ἀγανακτέω + " 143x ἀγαπάω + " 61x ἀγαπητός + " 1x ἀγγέλλω + " 3x ἀγγαρεύω + " 2x ἀγγελία + " 1x ἀγγεῖον + " 1x ἀγενής + " 1x ἀγενεαλόγητος + " 1x ἀγκάλη + " 22x ἀγνοέω + " 2x ἀγνωσία + " 1x ἀγνόημα + " 11x ἀγορά + " 30x ἀγοράζω + " 2x ἀγοραῖος + " 1x ἀγράμματος + " 1x ἀγραυλέω + " 1x ἀγρεύω + " 2x ἀγριέλαιος + " 4x ἀγρυπνέω + " 2x ἀγρυπνία + " 36x ἀγρός + " 1x ἀγωγή + " 1x ἀγωνία + " 8x ἀγωνίζομαι + " 6x ἀγών + " 1x ἀδάπανος + " 1x ἀδήλως + " 3x ἀδίκημα + " 1x ἀδίκως + " 26x ἀδελφή + " 343x ἀδελφός + " 2x ἀδελφότης + " 1x ἀδηλότης + " 3x ἀδημονέω + " 1x ἀδιάκριτος + " 2x ἀδιάλειπτος + " 4x ἀδιαλείπτως + " 28x ἀδικέω + " 25x ἀδικία + " 1x ἀδμίν + " 2x ἀδυνατέω + " 8x ἀδόκιμος + " 10x ἀδύνατος + " 7x ἀεί + " 5x ἀετός + " 2x ἀθέμιτος + " 2x ἀθέτησις + " 3x ἀθανασία + " 16x ἀθετέω + " 2x ἀθλέω + " 1x ἀθροίζω + " 1x ἀθυμέω + " 2x ἀθῷος + " 31x ἀκάθαρτος + " 2x ἀκάνθινος + " 3x ἀκέραιος + " 1x ἀκαίρως + " 10x ἀκαθαρσία + " 1x ἀκαιρέομαι + " 1x ἀκατάγνωστος + " 2x ἀκατάκριτος + " 1x ἀκατάλυτος + " 1x ἀκατάπαυστος + " 2x ἀκατάστατος + " 2x ἀκατακάλυπτος + " 5x ἀκαταστασία + " 1x ἀκλινής + " 1x ἀκμάζω + " 1x ἀκμήν + " 24x ἀκοή + " 90x ἀκολουθέω + " 428x ἀκούω + " 1x ἀκρίβεια + " 4x ἀκρίς + " 2x ἀκρασία + " 1x ἀκρατής + " 1x ἀκριβής + " 2x ἀκριβόω + " 9x ἀκριβῶς + " 1x ἀκροατήριον + " 4x ἀκροατής + " 20x ἀκροβυστία + " 2x ἀκρογωνιαῖος + " 1x ἀκροθίνιον + " 3x ἀκυρόω + " 1x ἀκωλύτως + " 4x ἀλάβαστρος + " 1x ἀλάλητος + " 11x ἀλέκτωρ + " 109x ἀλήθεια + " 2x ἀλήθω + " 1x ἀλίσγημα + " 2x ἀλαζονεία + " 2x ἀλαζών + " 2x ἀλαλάζω + " 9x ἀλείφω + " 1x ἀλεκτοροφωνία + " 26x ἀληθής + " 2x ἀληθεύω + " 28x ἀληθινός + " 18x ἀληθῶς + " 638x ἀλλά + " 6x ἀλλάσσω + " 100x ἀλλήλων + " 1x ἀλλαχοῦ + " 1x ἀλλαχόθεν + " 1x ἀλληγορέω + " 1x ἀλλογενής + " 1x ἀλλοτριεπίσκοπος + " 14x ἀλλότριος + " 1x ἀλλόφυλος + " 3x ἀλοάω + " 1x ἀλυσιτελής + " 1x ἀλόη + " 3x ἀλώπηξ + " 1x ἀμάραντος + " 1x ἀμάρτυρος + " 1x ἀμάω + " 1x ἀμέθυστος + " 2x ἀμέμπτως + " 2x ἀμέριμνος + " 126x ἀμήν + " 1x ἀμήτωρ + " 4x ἀμίαντος + " 1x ἀμαθής + " 1x ἀμαράντινος + " 4x ἀμελέω + " 2x ἀμετάθετος + " 1x ἀμετακίνητος + " 2x ἀμεταμέλητος + " 1x ἀμετανόητος + " 4x ἀμνός + " 1x ἀμοιβή + " 1x ἀμπελουργός + " 23x ἀμπελών + " 1x ἀμφίβληστρον + " 1x ἀμφιέζω + " 3x ἀμφιέννυμι + " 1x ἀμφιβάλλω + " 14x ἀμφότεροι + " 1x ἀμύνομαι + " 1x ἀμώμητος + " 13x ἀνά + " 1x ἀνάβλεψις + " 2x ἀνάγαιον + " 17x ἀνάγκη + " 3x ἀνάγνωσις + " 23x ἀνάγω + " 1x ἀνάδειξις + " 6x ἀνάθεμα + " 1x ἀνάθημα + " 14x ἀνάκειμαι + " 1x ἀνάκρισις + " 1x ἀνάλημψις + " 1x ἀνάλυσις + " 4x ἀνάμνησις + " 1x ἀνάξιος + " 5x ἀνάπαυσις + " 2x ἀνάπηρος + " 2x ἀνάπτω + " 42x ἀνάστασις + " 1x ἀνάχυσις + " 1x ἀνάψυξις + " 5x ἀνέγκλητος + " 1x ἀνέκλειπτος + " 1x ἀνέλεος + " 1x ἀνένδεκτος + " 3x ἀνέρχομαι + " 15x ἀνέχω + " 3x ἀνήκω + " 1x ἀνήμερος + " 216x ἀνήρ + " 4x ἀνίημι + " 108x ἀνίστημι + " 1x ἀναίδεια + " 1x ἀναίρεσις + " 2x ἀναίτιος + " 1x ἀναβάλλω + " 81x ἀναβαίνω + " 2x ἀναβαθμός + " 1x ἀναβιβάζω + " 25x ἀναβλέπω + " 1x ἀναβοάω + " 1x ἀναβολή + " 13x ἀναγγέλλω + " 2x ἀναγεννάω + " 32x ἀναγινώσκω + " 9x ἀναγκάζω + " 1x ἀναγκαστῶς + " 8x ἀναγκαῖος + " 2x ἀναδέχομαι + " 1x ἀναδίδωμι + " 2x ἀναδείκνυμι + " 2x ἀναζάω + " 3x ἀναζητέω + " 1x ἀναζωπυρέω + " 1x ἀναζώννυμι + " 1x ἀναθάλλω + " 4x ἀναθεματίζω + " 2x ἀναθεωρέω + " 24x ἀναιρέω + " 4x ἀνακάμπτω + " 2x ἀνακαίνωσις + " 2x ἀνακαθίζω + " 1x ἀνακαινίζω + " 2x ἀνακαινόω + " 2x ἀνακαλύπτω + " 2x ἀνακεφαλαιόω + " 6x ἀνακλίνω + " 5x ἀνακράζω + " 16x ἀνακρίνω + " 1x ἀνακυλίω + " 4x ἀνακύπτω + " 2x ἀναλίσκω + " 13x ἀναλαμβάνω + " 1x ἀναλογία + " 1x ἀναλογίζομαι + " 2x ἀναλύω + " 1x ἀναμάρτητος + " 1x ἀναμένω + " 6x ἀναμιμνῄσκω + " 1x ἀνανήφω + " 1x ἀνανεόω + " 1x ἀναντίρρητος + " 1x ἀναντιρρήτως + " 1x ἀναξίως + " 5x ἀναπέμπω + " 12x ἀναπίπτω + " 12x ἀναπαύω + " 1x ἀναπείθω + " 1x ἀναπηδάω + " 6x ἀναπληρόω + " 2x ἀναπολόγητος + " 1x ἀναρίθμητος + " 2x ἀνασείω + " 1x ἀνασκευάζω + " 2x ἀνασπάω + " 3x ἀναστατόω + " 1x ἀνασταυρόω + " 1x ἀναστενάζω + " 9x ἀναστρέφω + " 13x ἀναστροφή + " 1x ἀνατάσσομαι + " 9x ἀνατέλλω + " 2x ἀνατίθημι + " 11x ἀνατολή + " 3x ἀνατρέπω + " 3x ἀνατρέφω + " 10x ἀναφέρω + " 2x ἀναφαίνω + " 1x ἀναφωνέω + " 14x ἀναχωρέω + " 1x ἀναψύχω + " 1x ἀνδρίζομαι + " 1x ἀνδραποδιστής + " 1x ἀνδροφόνος + " 1x ἀνεκδιήγητος + " 1x ἀνεκλάλητος + " 5x ἀνεκτός + " 1x ἀνελεήμων + " 1x ἀνεμίζω + " 1x ἀνεξίκακος + " 1x ἀνεξεραύνητος + " 2x ἀνεξιχνίαστος + " 3x ἀνεπίλημπτος + " 1x ἀνεπαίσχυντος + " 2x ἀνετάζω + " 2x ἀνευρίσκω + " 1x ἀνεψιός + " 1x ἀνεύθετος + " 14x ἀνθίστημι + " 1x ἀνθομολογέομαι + " 2x ἀνθρακιά + " 2x ἀνθρωπάρεσκος + " 3x ἀνθρωποκτόνος + " 7x ἀνθρώπινος + " 5x ἀνθύπατος + " 78x ἀνοίγω + " 2x ἀνοικοδομέω + " 15x ἀνομία + " 3x ἀνορθόω + " 2x ἀνοχή + " 2x ἀντάλλαγμα + " 4x ἀντέχω + " 22x ἀντί + " 5x ἀντίδικος + " 1x ἀντίθεσις + " 8x ἀντίκειμαι + " 1x ἀντίλημψις + " 1x ἀντίλυτρον + " 2x ἀντίτυπος + " 5x ἀντίχριστος + " 1x ἀνταγωνίζομαι + " 1x ἀνταναπληρόω + " 7x ἀνταποδίδωμι + " 2x ἀνταποκρίνομαι + " 2x ἀνταπόδομα + " 1x ἀνταπόδοσις + " 1x ἀντιβάλλω + " 1x ἀντιδιατίθημι + " 1x ἀντικαθίστημι + " 1x ἀντικαλέω + " 11x ἀντιλέγω + " 3x ἀντιλαμβάνω + " 4x ἀντιλογία + " 1x ἀντιλοιδορέω + " 1x ἀντιμετρέω + " 2x ἀντιμισθία + " 1x ἀντιπέρα + " 1x ἀντιπίπτω + " 2x ἀντιπαρέρχομαι + " 1x ἀντιστρατεύω + " 5x ἀντιτάσσω + " 4x ἀντλέω + " 1x ἀντοφθαλμέω + " 6x ἀνυπόκριτος + " 4x ἀνυπότακτος + " 1x ἀνωτερικός + " 2x ἀνωφελής + " 6x ἀνόητος + " 2x ἀνόμως + " 2x ἀνόσιος + " 2x ἀνώτερος + " 2x ἀξίνη + " 6x ἀξίως + " 7x ἀξιόω + " 1x ἀπάγχω + " 15x ἀπάγω + " 3x ἀπάντησις + " 1x ἀπάρτι + " 7x ἀπάτη + " 1x ἀπάτωρ + " 1x ἀπέκδυσις + " 4x ἀπέναντι + " 1x ἀπέραντος + " 117x ἀπέρχομαι + " 19x ἀπέχω + " 1x ἀπαίδευτος + " 3x ἀπαίρω + " 46x ἀπαγγέλλω + " 2x ἀπαιτέω + " 1x ἀπαλγέω + " 3x ἀπαλλάσσω + " 3x ἀπαλλοτριόω + " 2x ἀπαντάω + " 1x ἀπαράβατος + " 1x ἀπαρασκεύαστος + " 11x ἀπαρνέομαι + " 1x ἀπαρτισμός + " 8x ἀπαρχή + " 1x ἀπασπάζομαι + " 3x ἀπατάω + " 1x ἀπαύγασμα + " 6x ἀπείθεια + " 1x ἀπείραστος + " 14x ἀπειθέω + " 6x ἀπειθής + " 2x ἀπειλέω + " 3x ἀπειλή + " 8x ἀπεκδέχομαι + " 2x ἀπεκδύομαι + " 1x ἀπελαύνω + " 1x ἀπελεγμός + " 1x ἀπελεύθερος + " 1x ἀπελπίζω + " 1x ἀπερίτμητος + " 1x ἀπερισπάστως + " 1x ἀπεῖπον + " 8x ἀπιστέω + " 11x ἀπιστία + " 2x ἀποβάλλω + " 4x ἀποβαίνω + " 1x ἀποβλέπω + " 2x ἀποβολή + " 1x ἀπογίνομαι + " 4x ἀπογράφω + " 2x ἀπογραφή + " 7x ἀποδέχομαι + " 48x ἀποδίδωμι + " 4x ἀποδείκνυμι + " 1x ἀποδεκατεύω + " 3x ἀποδεκατόω + " 6x ἀποδημέω + " 1x ἀποδιορίζω + " 9x ἀποδοκιμάζω + " 2x ἀποδοχή + " 6x ἀποθήκη + " 1x ἀποθησαυρίζω + " 1x ἀποθλίβω + " 112x ἀποθνῄσκω + " 18x ἀποκάλυψις + " 8x ἀποκαθιστάνω + " 26x ἀποκαλύπτω + " 2x ἀποκαραδοκία + " 1x ἀποκατάστασις + " 3x ἀποκαταλλάσσω + " 4x ἀποκεφαλίζω + " 1x ἀποκλείω + " 231x ἀποκρίνομαι + " 4x ἀποκρύπτω + " 74x ἀποκτείνω + " 2x ἀποκυέω + " 3x ἀποκυλίω + " 6x ἀποκόπτω + " 9x ἀπολαμβάνω + " 7x ἀπολείπω + " 10x ἀπολογέομαι + " 8x ἀπολογία + " 2x ἀπολούω + " 10x ἀπολύτρωσις + " 66x ἀπολύω + " 1x ἀπομάσσω + " 1x ἀπονέμω + " 1x ἀπονίζω + " 1x ἀποπίπτω + " 4x ἀποπλέω + " 2x ἀποπλανάω + " 3x ἀποπνίγω + " 6x ἀπορέω + " 1x ἀπορία + " 1x ἀπορίπτω + " 1x ἀπορφανίζω + " 1x ἀποσκίασμα + " 4x ἀποσπάω + " 3x ἀποστάσιον + " 132x ἀποστέλλω + " 2x ἀποστασία + " 1x ἀποστεγάζω + " 5x ἀποστερέω + " 4x ἀποστολή + " 1x ἀποστοματίζω + " 9x ἀποστρέφω + " 1x ἀποστυγέω + " 3x ἀποσυνάγωγος + " 6x ἀποτάσσω + " 9x ἀποτίθημι + " 1x ἀποτίνω + " 2x ἀποτελέω + " 2x ἀποτινάσσω + " 1x ἀποτολμάω + " 2x ἀποτομία + " 1x ἀποτρέπω + " 2x ἀποτόμως + " 1x ἀπουσία + " 6x ἀποφέρω + " 3x ἀποφεύγω + " 3x ἀποφθέγγομαι + " 1x ἀποφορτίζομαι + " 3x ἀποχωρέω + " 2x ἀποχωρίζω + " 1x ἀποψύχω + " 1x ἀπροσωπολήμπτως + " 1x ἀπρόσιτος + " 3x ἀπρόσκοπος + " 6x ἀπωθέω + " 647x ἀπό + " 1x ἀπόβλητος + " 1x ἀπόδειξις + " 2x ἀπόδεκτος + " 1x ἀπόδημος + " 2x ἀπόθεσις + " 4x ἀπόκειμαι + " 1x ἀπόκριμα + " 4x ἀπόκρισις + " 3x ἀπόκρυφος + " 2x ἀπόλαυσις + " 90x ἀπόλλυμι + " 79x ἀπόστολος + " 1x ἀπόχρησις + " 18x ἀπώλεια + " 1x ἀρά + " 17x ἀρέσκω + " 1x ἀρήν + " 1x ἀργέω + " 1x ἀργυροκόπος + " 3x ἀργυροῦς + " 8x ἀργός + " 21x ἀργύριον + " 1x ἀρεσκεία + " 4x ἀρεστός + " 5x ἀρετή + " 3x ἀριθμέω + " 18x ἀριθμός + " 3x ἀριστάω + " 4x ἀριστερός + " 8x ἀρκέω + " 3x ἀρκετός + " 33x ἀρνέομαι + " 30x ἀρνίον + " 3x ἀροτριάω + " 3x ἀρραβών + " 2x ἀρσενοκοίτης + " 1x ἀρτέμων + " 1x ἀρτιγέννητος + " 3x ἀρτύω + " 2x ἀρχάγγελος + " 56x ἀρχή + " 11x ἀρχαῖος + " 4x ἀρχηγός + " 1x ἀρχιερατικός + " 122x ἀρχιερεύς + " 1x ἀρχιποίμην + " 9x ἀρχισυνάγωγος + " 1x ἀρχιτέκτων + " 1x ἀρχιτελώνης + " 3x ἀρχιτρίκλινος + " 2x ἀσάλευτος + " 6x ἀσέβεια + " 10x ἀσέλγεια + " 2x ἀσεβέω + " 9x ἀσεβής + " 24x ἀσθένεια + " 1x ἀσθένημα + " 33x ἀσθενέω + " 25x ἀσθενής + " 1x ἀσιτία + " 1x ἀσκέω + " 12x ἀσκός + " 1x ἀσμένως + " 59x ἀσπάζομαι + " 1x ἀσπίς + " 10x ἀσπασμός + " 2x ἀσσάριον + " 24x ἀστήρ + " 2x ἀστήρικτος + " 1x ἀστατέω + " 2x ἀστεῖος + " 3x ἀστοχέω + " 2x ἀστράπτω + " 9x ἀστραπή + " 3x ἀσφάλεια + " 5x ἀσφαλής + " 4x ἀσφαλίζω + " 3x ἀσφαλῶς + " 1x ἀσχήμων + " 2x ἀσχημονέω + " 2x ἀσχημοσύνη + " 3x ἀσωτία + " 1x ἀσύμφωνος + " 5x ἀσύνετος + " 1x ἀσύνθετος + " 1x ἀσώτως + " 2x ἀτάκτως + " 1x ἀτακτέω + " 14x ἀτενίζω + " 7x ἀτιμάζω + " 7x ἀτιμία + " 2x ἀτμίς + " 143x ἀφίημι + " 14x ἀφίστημι + " 10x ἀφαιρέω + " 1x ἀφανής + " 5x ἀφανίζω + " 1x ἀφανισμός + " 2x ἀφεδρών + " 1x ἀφειδία + " 1x ἀφελότης + " 7x ἀφθαρσία + " 1x ἀφθορία + " 1x ἀφικνέομαι + " 1x ἀφιλάγαθος + " 2x ἀφιλάργυρος + " 1x ἀφομοιόω + " 2x ἀφοράω + " 10x ἀφορίζω + " 7x ἀφορμή + " 2x ἀφρίζω + " 4x ἀφροσύνη + " 1x ἀφρός + " 1x ἀφυπνόω + " 1x ἀφυστερέω + " 4x ἀφόβως + " 2x ἀχάριστος + " 3x ἀχειροποίητος + " 1x ἀχλύς + " 1x ἀχρειόω + " 2x ἀχρεῖος + " 1x ἀψευδής + " 5x ἀόρατος + " 28x ἁγιάζω + " 10x ἁγιασμός + " 3x ἁγιωσύνη + " 2x ἁγιότης + " 7x ἁγνίζω + " 2x ἁγνεία + " 1x ἁγνισμός + " 8x ἁγνός + " 2x ἁγνότης + " 1x ἁγνῶς + " 1x ἁδρότης + " 2x ἁλίζω + " 5x ἁλιεύς + " 1x ἁλιεύω + " 4x ἁλληλουϊά + " 1x ἁλυκός + " 4x ἁμάρτημα + " 43x ἁμαρτάνω + " 173x ἁμαρτία + " 47x ἁμαρτωλός + " 2x ἁπαλός + " 2x ἁπλοῦς + " 7x ἁπλότης + " 1x ἁπλῶς + " 1x ἁρμόζω + " 1x ἁρμός + " 14x ἁρπάζω + " 3x ἁρπαγή + " 1x ἁρπαγμός + " 2x ἁφή + " 9x ἄβυσσος + " 4x ἄγαμος + " 176x ἄγγελος + " 1x ἄγγος + " 1x ἄγκιστρον + " 4x ἄγκυρα + " 2x ἄγναφος + " 4x ἄγνοια + " 1x ἄγνωστος + " 2x ἄγρα + " 3x ἄγριος + " 69x ἄγω + " 2x ἄδηλος + " 12x ἄδικος + " 1x ἄδολος + " 9x ἄζυμος + " 1x ἄθεος + " 2x ἄθεσμος + " 1x ἄθλησις + " 2x ἄκακος + " 14x ἄκανθα + " 7x ἄκαρπος + " 1x ἄκρατος + " 6x ἄκρον + " 1x ἄκων + " 3x ἄλαλος + " 2x ἄλευρον + " 154x ἄλλος + " 1x ἄλλως + " 3x ἄλογος + " 1x ἄλυπος + " 3x ἄλφα + " 2x ἄμαχος + " 5x ἄμεμπτος + " 2x ἄμετρος + " 5x ἄμμος + " 9x ἄμπελος + " 1x ἄμφοδον + " 1x ἄμωμον + " 8x ἄμωμος + " 164x ἄν + " 1x ἄναλος + " 31x ἄνεμος + " 5x ἄνεσις + " 3x ἄνευ + " 1x ἄνηθον + " 4x ἄνθος + " 1x ἄνθραξ + " 548x ἄνθρωπος + " 2x ἄνιπτος + " 2x ἄνοια + " 1x ἄνοιξις + " 9x ἄνομος + " 1x ἄντικρυς + " 1x ἄντλημα + " 4x ἄνυδρος + " 9x ἄνω + " 13x ἄνωθεν + " 41x ἄξιος + " 7x ἄπειμι (I) + " 1x ἄπειμι (II) + " 1x ἄπειρος + " 23x ἄπιστος + " 1x ἄπταιστος + " 34x ἄρα + " 1x ἄραφος + " 4x ἄργυρος + " 3x ἄριστον + " 1x ἄρκος + " 1x ἄροτρον + " 1x ἄρρητος + " 5x ἄρρωστος + " 9x ἄρσην + " 35x ἄρτι + " 1x ἄρτιος + " 97x ἄρτος + " 86x ἄρχω + " 37x ἄρχων + " 4x ἄρωμα + " 3x ἄσβεστος + " 1x ἄσημος + " 1x ἄσιτος + " 1x ἄσοφος + " 4x ἄσπιλος + " 1x ἄσπονδος + " 2x ἄστοργος + " 4x ἄστρον + " 1x ἄτακτος + " 2x ἄτεκνος + " 2x ἄτερ + " 4x ἄτιμος + " 1x ἄτομος + " 4x ἄτοπος + " 1x ἄφαντος + " 17x ἄφεσις + " 8x ἄφθαρτος + " 1x ἄφιξις + " 3x ἄφνω + " 11x ἄφρων + " 4x ἄφωνος + " 1x ἄχρηστος + " 49x ἄχρι + " 2x ἄχυρον + " 2x ἄψινθος + " 1x ἄψυχος + " 234x ἅγιος + " 8x ἅλας + " 3x ἅλλομαι + " 11x ἅλυσις + " 2x ἅλων + " 1x ἅλωσις + " 10x ἅμα + " 14x ἅπαξ + " 32x ἅπας + " 39x ἅπτω + " 4x ἅρμα + " 5x ἅρπαξ + " 18x ἆρα + " 3x ἆσσον + " 5x Ἀαρών + " 1x Ἀβαδδών + " 3x Ἀβιά + " 1x Ἀβιαθάρ + " 1x Ἀβιληνή + " 2x Ἀβιούδ + " 73x Ἀβραάμ + " 11x Ἀγρίππας + " 9x Ἀδάμ + " 1x Ἀδδί + " 1x Ἀδρίας + " 1x Ἀδραμυττηνός + " 2x Ἀζώρ + " 2x Ἀθηναῖος + " 4x Ἀθῆναι + " 6x Ἀκύλας + " 6x Ἀλέξανδρος + " 2x Ἀλεξανδρεύς + " 2x Ἀλεξανδρῖνος + " 3x Ἀμιναδάβ + " 1x Ἀμπλιᾶτος + " 1x Ἀμφίπολις + " 3x Ἀμώς + " 13x Ἀνδρέας + " 1x Ἀνδρόνικος + " 1x Ἀντιοχεύς + " 1x Ἀντιπατρίς + " 1x Ἀντιπᾶς + " 18x Ἀντιόχεια + " 1x Ἀπελλῆς + " 1x Ἀπολλωνία + " 1x Ἀπολλύων + " 10x Ἀπολλῶς + " 2x Ἀππίου Φόρον + " 1x Ἀπφία + " 2x Ἀράμ + " 5x Ἀρίσταρχος + " 2x Ἀραβία + " 1x Ἀρεοπαγίτης + " 3x Ἀριμαθαία + " 1x Ἀριστόβουλος + " 1x Ἀρνί + " 1x Ἀρτεμᾶς + " 1x Ἀρφαξάδ + " 1x Ἀρχέλαος + " 2x Ἀσάφ + " 2x Ἀσήρ + " 18x Ἀσία + " 1x Ἀσιάρχης + " 1x Ἀσιανός + " 1x Ἀσύγκριτος + " 1x Ἀττάλεια + " 2x Ἀχάζ + " 2x Ἀχίμ + " 10x Ἀχαΐα + " 1x Ἀχαϊκός + " 2x Ἁγάρ + " 1x Ἁκελδαμάχ + " 5x Ἁλφαῖος + " 11x Ἁνανίας + " 1x Ἁρέτας + " 1x Ἁριμαθαία + " 1x Ἁρμαγεδών + " 1x Ἄζωτος + " 1x Ἄραψ + " 4x Ἄρειος Πάγος + " 5x Ἄρτεμις + " 2x Ἄρχιππος + " 4x Ἅβελ + " 2x Ἅγαβος + " 1x Ἅννα + " 4x Ἅννας + " 337x ἐάν + " 2x ἐάνπερ + " 11x ἐάω + " 42x ἐγγίζω + " 3x ἐγγράφω + " 31x ἐγγύς + " 143x ἐγείρω + " 1x ἐγκάθετος + " 1x ἐγκαίνια + " 2x ἐγκαινίζω + " 6x ἐγκακέω + " 7x ἐγκαλέω + " 10x ἐγκαταλείπω + " 1x ἐγκατοικέω + " 1x ἐγκαυχάομαι + " 6x ἐγκεντρίζω + " 1x ἐγκομβόομαι + " 1x ἐγκοπή + " 4x ἐγκράτεια + " 1x ἐγκρίνω + " 1x ἐγκρατής + " 2x ἐγκρατεύομαι + " 1x ἐγκρύπτω + " 5x ἐγκόπτω + " 1x ἐγχρίω + " 2567x ἐγώ + " 1x ἐδαφίζω + " 1x ἐθίζω + " 1x ἐθελοθρησκία + " 1x ἐθνάρχης + " 4x ἐθνικός + " 1x ἐθνικῶς + " 913x ἐκ + " 81x ἐκβάλλω + " 1x ἐκβαίνω + " 1x ἐκβολή + " 7x ἐκδέχομαι + " 4x ἐκδίδωμι + " 9x ἐκδίκησις + " 1x ἐκδαπανάω + " 3x ἐκδημέω + " 2x ἐκδιηγέομαι + " 6x ἐκδικέω + " 1x ἐκδιώκω + " 1x ἐκδοχή + " 5x ἐκδύω + " 95x ἐκεῖ + " 27x ἐκεῖθεν + " 244x ἐκεῖνος + " 2x ἐκεῖσε + " 1x ἐκζήτησις + " 7x ἐκζητέω + " 4x ἐκθαμβέω + " 1x ἐκθαυμάζω + " 1x ἐκκαίω + " 2x ἐκκαθαίρω + " 2x ἐκκεντέω + " 3x ἐκκλάω + " 3x ἐκκλίνω + " 2x ἐκκλείω + " 114x ἐκκλησία + " 1x ἐκκολυμβάω + " 1x ἐκκομίζω + " 1x ἐκκρεμάννυμι + " 10x ἐκκόπτω + " 1x ἐκλάμπω + " 22x ἐκλέγω + " 1x ἐκλαλέω + " 1x ἐκλανθάνομαι + " 4x ἐκλείπω + " 22x ἐκλεκτός + " 7x ἐκλογή + " 5x ἐκλύω + " 5x ἐκμάσσω + " 2x ἐκμυκτηρίζω + " 1x ἐκνήφω + " 1x ἐκνεύω + " 2x ἐκπέμπω + " 10x ἐκπίπτω + " 1x ἐκπαδάω + " 4x ἐκπειράζω + " 1x ἐκπερισσῶς + " 1x ἐκπετάννυμι + " 3x ἐκπλέω + " 1x ἐκπλήρωσις + " 13x ἐκπλήσσω + " 1x ἐκπληρόω + " 3x ἐκπνέω + " 33x ἐκπορεύομαι + " 1x ἐκπορνεύω + " 1x ἐκπτύω + " 4x ἐκριζόω + " 1x ἐκστρέφω + " 1x ἐκτένεια + " 4x ἐκτίθημι + " 1x ἐκταράσσω + " 16x ἐκτείνω + " 2x ἐκτελέω + " 2x ἐκτενής + " 2x ἐκτενῶς + " 4x ἐκτινάσσω + " 5x ἐκτρέπω + " 2x ἐκτρέφω + " 8x ἐκτός + " 8x ἐκφέρω + " 8x ἐκφεύγω + " 1x ἐκφοβέω + " 2x ἐκφύω + " 27x ἐκχέω + " 1x ἐκχωρέω + " 3x ἐκψύχω + " 4x ἐλάσσων + " 14x ἐλάχιστος + " 18x ἐλέγχω + " 15x ἐλαία + " 1x ἐλαιών + " 1x ἐλαττονέω + " 3x ἐλαττόω + " 1x ἐλαφρία + " 2x ἐλαφρός + " 5x ἐλαύνω + " 3x ἐλεάω + " 29x ἐλεέω + " 2x ἐλεήμων + " 1x ἐλεγμός + " 2x ἐλεεινός + " 13x ἐλεημοσύνη + " 11x ἐλευθερία + " 7x ἐλευθερόω + " 1x ἐλεφάντινος + " 23x ἐλεύθερος + " 2x ἐλλογέω + " 31x ἐλπίζω + " 53x ἐλπίς + " 2x ἐλωΐ + " 1x ἐμέω + " 37x ἐμαυτοῦ + " 1x ἐμβάλλω + " 2x ἐμβάπτω + " 18x ἐμβαίνω + " 1x ἐμβατεύω + " 1x ἐμβιβάζω + " 11x ἐμβλέπω + " 5x ἐμβριμάομαι + " 4x ἐμμένω + " 1x ἐμμαίνομαι + " 5x ἐμπίπλημι + " 1x ἐμπίπρημι + " 7x ἐμπίπτω + " 13x ἐμπαίζω + " 2x ἐμπαίκτης + " 1x ἐμπαιγμονή + " 1x ἐμπαιγμός + " 1x ἐμπεριπατέω + " 2x ἐμπλέκω + " 1x ἐμπλοκή + " 1x ἐμπνέω + " 1x ἐμπορία + " 2x ἐμπορεύομαι + " 6x ἐμπτύω + " 1x ἐμπόριον + " 2x ἐμφανής + " 10x ἐμφανίζω + " 1x ἐμφυσάω + " 77x ἐμός + " 2743x ἐν + " 1x ἐνάλιος + " 2x ἐνάρχομαι + " 2x ἐνέδρα + " 8x ἐνέργεια + " 2x ἐνέργημα + " 3x ἐνέχω + " 7x ἐνίστημι + " 2x ἐναγκαλίζομαι + " 5x ἐναντίον + " 8x ἐναντίος + " 1x ἐνδέχομαι + " 1x ἐνδεής + " 11x ἐνδείκνυμι + " 3x ἐνδημέω + " 2x ἐνδιδύσκω + " 2x ἐνδοξάζομαι + " 7x ἐνδυναμόω + " 1x ἐνδύνω + " 28x ἐνδύω + " 1x ἐνδώμησις + " 2x ἐνεδρεύω + " 1x ἐνειλέω + " 4x ἐνενήκοντα + " 21x ἐνεργέω + " 3x ἐνεργής + " 2x ἐνευλογέω + " 1x ἐνεός + " 8x ἐνθάδε + " 2x ἐνθυμέομαι + " 4x ἐνθύμησις + " 14x ἐνιαυτός + " 2x ἐνισχύω + " 5x ἐννέα + " 1x ἐννεύω + " 6x ἐνοικέω + " 1x ἐνορκίζω + " 2x ἐνοχλέω + " 15x ἐντέλλομαι + " 2x ἐνταφιάζω + " 2x ἐνταφιασμός + " 10x ἐντεῦθεν + " 67x ἐντολή + " 9x ἐντρέπω + " 1x ἐντρέφω + " 2x ἐντροπή + " 1x ἐντρυφάω + " 5x ἐντυγχάνω + " 3x ἐντυλίσσω + " 1x ἐντυπόω + " 1x ἐντόπιος + " 2x ἐντός + " 1x ἐνυβρίζω + " 2x ἐνυπνιάζομαι + " 1x ἐνωτίζομαι + " 1x ἐνύπνιον + " 94x ἐνώπιον + " 12x ἐξάγω + " 1x ἐξάλλομαι + " 1x ἐξάπινα + " 1x ἐξέλκω + " 1x ἐξέραμα + " 217x ἐξέρχομαι + " 17x ἐξίστημι + " 1x ἐξαίρω + " 5x ἐξαίφνης + " 2x ἐξαγγέλλω + " 4x ἐξαγοράζω + " 8x ἐξαιρέω + " 1x ἐξαιτέω + " 3x ἐξακολουθέω + " 5x ἐξαλείφω + " 1x ἐξανάστασις + " 3x ἐξανίστημι + " 2x ἐξανατέλλω + " 6x ἐξαπατάω + " 2x ἐξαπορέομαι + " 14x ἐξαποστέλλω + " 2x ἐξαρτίζω + " 1x ἐξαστράπτω + " 6x ἐξαυτῆς + " 2x ἐξεγείρω + " 1x ἐξεραυνάω + " 3x ἐξετάζω + " 6x ἐξηγέομαι + " 1x ἐξηχέω + " 1x ἐξισχύω + " 1x ἐξολεθρεύω + " 10x ἐξομολογέω + " 1x ἐξορκίζω + " 1x ἐξορκιστής + " 2x ἐξορύσσω + " 1x ἐξουδενέω + " 11x ἐξουθενέω + " 102x ἐξουσία + " 4x ἐξουσιάζω + " 1x ἐξοχή + " 1x ἐξυπνίζω + " 2x ἐξωθέω + " 3x ἐξώτερος + " 2x ἐπάγγελμα + " 3x ἐπάγω + " 3x ἐπάν + " 1x ἐπάναγκες + " 19x ἐπάνω + " 1x ἐπάρατος + " 1x ἐπάρχειος + " 1x ἐπέκεινα + " 9x ἐπέρχομαι + " 5x ἐπέχω + " 886x ἐπί + " 4x ἐπίβλημα + " 7x ἐπίγειος + " 20x ἐπίγνωσις + " 4x ἐπίθεσις + " 7x ἐπίκειμαι + " 1x ἐπίλοιπος + " 1x ἐπίλυσις + " 1x ἐπίνοια + " 1x ἐπίορκος + " 2x ἐπίσημος + " 5x ἐπίσκοπος + " 15x ἐπίσταμαι + " 2x ἐπίστασις + " 3x ἐπίτροπος + " 19x ἐπαίρω + " 15x ἐπαγγέλλομαι + " 52x ἐπαγγελία + " 1x ἐπαγωνίζομαι + " 1x ἐπαθροίζω + " 6x ἐπαινέω + " 11x ἐπαισχύνομαι + " 2x ἐπαιτέω + " 4x ἐπακολουθέω + " 1x ἐπακούω + " 1x ἐπακροάομαι + " 3x ἐπανάγω + " 2x ἐπανέρχομαι + " 2x ἐπανίστημι + " 1x ἐπαναμιμνῄσκω + " 2x ἐπαναπαύομαι + " 1x ἐπανόρθωσις + " 3x ἐπαρκέω + " 1x ἐπαρχεία + " 1x ἐπαυτοφώρῳ + " 1x ἐπαφρίζω + " 17x ἐπαύριον + " 26x ἐπεί + " 2x ἐπεγείρω + " 10x ἐπειδή + " 1x ἐπειδήπερ + " 1x ἐπεισαγωγή + " 1x ἐπεισελεύσεται + " 1x ἐπεκτείνομαι + " 1x ἐπενδύτης + " 2x ἐπενδύω + " 56x ἐπερωτάω + " 1x ἐπερώτημα + " 2x ἐπεῖδον + " 2x ἐπηρεάζω + " 18x ἐπιβάλλω + " 6x ἐπιβαίνω + " 3x ἐπιβαρέω + " 3x ἐπιβιβάζω + " 3x ἐπιβλέπω + " 4x ἐπιβουλή + " 1x ἐπιγίνομαι + " 1x ἐπιγαμβρεύω + " 44x ἐπιγινώσκω + " 5x ἐπιγράφω + " 5x ἐπιγραφή + " 2x ἐπιδέχομαι + " 9x ἐπιδίδωμι + " 7x ἐπιδείκνυμι + " 2x ἐπιδημέω + " 1x ἐπιδιατάσσομαι + " 1x ἐπιδιορθόω + " 1x ἐπιδύω + " 2x ἐπιείκεια + " 5x ἐπιεικής + " 13x ἐπιζητέω + " 1x ἐπιθανάτιος + " 16x ἐπιθυμέω + " 38x ἐπιθυμία + " 1x ἐπιθυμητής + " 1x ἐπικάλυμμα + " 1x ἐπικέλλω + " 1x ἐπικαθίζω + " 30x ἐπικαλέω + " 1x ἐπικαλύπτω + " 2x ἐπικατάρατος + " 1x ἐπικουρία + " 1x ἐπικρίνω + " 2x ἐπιλέγω + " 19x ἐπιλαμβάνομαι + " 8x ἐπιλανθάνομαι + " 1x ἐπιλείπω + " 1x ἐπιλείχω + " 1x ἐπιλησμονή + " 2x ἐπιλύω + " 1x ἐπιμέλεια + " 16x ἐπιμένω + " 1x ἐπιμαρτυρέω + " 3x ἐπιμελέομαι + " 1x ἐπιμελῶς + " 1x ἐπινεύω + " 1x ἐπιορκέω + " 2x ἐπιούσιος + " 11x ἐπιπίπτω + " 1x ἐπιπλήσσω + " 9x ἐπιποθέω + " 1x ἐπιποθία + " 1x ἐπιπορεύομαι + " 2x ἐπιπόθησις + " 1x ἐπιπόθητος + " 1x ἐπιράπτω + " 2x ἐπιρίπτω + " 1x ἐπισιτισμός + " 11x ἐπισκέπτομαι + " 1x ἐπισκευάζομαι + " 1x ἐπισκηνόω + " 5x ἐπισκιάζω + " 1x ἐπισκοπέω + " 4x ἐπισκοπή + " 1x ἐπισπάομαι + " 1x ἐπισπείρω + " 7x ἐπιστάτης + " 2x ἐπιστέλλω + " 1x ἐπιστήμων + " 3x ἐπιστηρίζω + " 24x ἐπιστολή + " 1x ἐπιστομίζω + " 36x ἐπιστρέφω + " 1x ἐπιστροφή + " 8x ἐπισυνάγω + " 2x ἐπισυναγωγή + " 1x ἐπισυντρέχω + " 1x ἐπισφαλής + " 1x ἐπισχύω + " 1x ἐπισωρεύω + " 10x ἐπιτάσσω + " 1x ἐπιτήδειος + " 40x ἐπιτίθημι + " 7x ἐπιταγή + " 10x ἐπιτελέω + " 30x ἐπιτιμάω + " 1x ἐπιτιμία + " 18x ἐπιτρέπω + " 1x ἐπιτροπή + " 5x ἐπιτυγχάνω + " 6x ἐπιφάνεια + " 2x ἐπιφέρω + " 4x ἐπιφαίνω + " 1x ἐπιφανής + " 1x ἐπιφαύσκω + " 4x ἐπιφωνέω + " 2x ἐπιφώσκω + " 1x ἐπιχέω + " 3x ἐπιχειρέω + " 5x ἐπιχορηγέω + " 2x ἐπιχορηγία + " 1x ἐπιχρίω + " 7x ἐποικοδομέω + " 1x ἐπονομάζω + " 2x ἐποπτεύω + " 19x ἐπουράνιος + " 1x ἐπόπτης + " 3x ἐρήμωσις + " 1x ἐρίζω + " 1x ἐρίφιον + " 6x ἐραυνάω + " 41x ἐργάζομαι + " 16x ἐργάτης + " 6x ἐργασία + " 1x ἐρείδω + " 2x ἐρεθίζω + " 1x ἐρεύγομαι + " 4x ἐρημία + " 5x ἐρημόω + " 7x ἐριθεία + " 2x ἐρυθρός + " 63x ἐρωτάω + " 8x ἐσθής + " 158x ἐσθίω + " 1x ἐσχάτως + " 2x ἐσώτερος + " 1x ἐφάλλομαι + " 5x ἐφάπαξ + " 1x ἐφήμερος + " 20x ἐφίστημι + " 1x ἐφευρετής + " 2x ἐφημερία + " 2x ἐφικνέομαι + " 1x ἐφφαθά + " 3x ἐχθές + " 32x ἐχθρός + " 320x ἑαυτοῦ + " 5x ἑβδομήκοντα + " 1x ἑβδομηκοντάκις + " 1x ἑδραίωμα + " 3x ἑδραῖος + " 1x ἑκάστοτε + " 20x ἑκατοντάρχης + " 1x ἑκατονταετής + " 2x ἑκατονταπλασίων + " 17x ἑκατόν + " 2x ἑκουσίως + " 1x ἑκούσιος + " 2x ἑκών + " 2x ἑλίσσω + " 1x ἑλκόω + " 3x ἑνδέκατος + " 2x ἑνότης + " 9x ἑξήκοντα + " 2x ἑξακόσιοι + " 5x ἑξῆς + " 1x ἑορτάζω + " 25x ἑορτή + " 88x ἑπτά + " 4x ἑπτάκις + " 1x ἑπτακισχίλιοι + " 2x ἑρμηνεία + " 3x ἑρμηνεύω + " 4x ἑρπετόν + " 3x ἑσπέρα + " 1x ἑτέρως + " 3x ἑταῖρος + " 2x ἑτεροδιδασκαλέω + " 1x ἑτεροζυγέω + " 1x ἑτερόγλωσσος + " 3x ἑτοίμως + " 41x ἑτοιμάζω + " 1x ἑτοιμασία + " 1x ἔα + " 1x ἔγγυος + " 1x ἔγερσις + " 2x ἔγκλημα + " 1x ἔγκυος + " 1x ἔδαφος + " 162x ἔθνος + " 12x ἔθος + " 2x ἔκβασις + " 1x ἔκγονος + " 1x ἔκδηλος + " 2x ἔκδικος + " 1x ἔκδοτος + " 1x ἔκθαμβος + " 1x ἔκθετος + " 2x ἔκπαλαι + " 7x ἔκστασις + " 1x ἔκτρωμα + " 2x ἔκφοβος + " 11x ἔλαιον + " 1x ἔλεγξις + " 1x ἔλεγχος + " 27x ἔλεος + " 1x ἔλευσις + " 5x ἔμπορος + " 48x ἔμπροσθεν + " 5x ἔμφοβος + " 1x ἔμφυτος + " 2x ἔναντι + " 10x ἔνατος + " 1x ἔνδειγμα + " 4x ἔνδειξις + " 2x ἔνδικος + " 4x ἔνδοξος + " 8x ἔνδυμα + " 1x ἔνδυσις + " 1x ἔνειμι + " 2x ἔνθεν + " 6x ἔνι + " 2x ἔννοια + " 2x ἔννομος + " 1x ἔννυχος + " 10x ἔνοχος + " 3x ἔνταλμα + " 2x ἔντευξις + " 5x ἔντιμος + " 3x ἔντρομος + " 4x ἔξειμι + " 31x ἔξεστι(ν) + " 3x ἔξοδος + " 1x ἔξυπνος + " 62x ἔξω + " 13x ἔξωθεν + " 2x ἔοικα + " 11x ἔπαινος + " 1x ἔπαυλις + " 5x ἔπειμι + " 16x ἔπειτα + " 1x ἔπος + " 169x ἔργον + " 47x ἔρημος + " 2x ἔριον + " 9x ἔρις + " 2x ἔριφος + " 635x ἔρχομαι + " 2x ἔσοπτρον + " 53x ἔσχατος + " 9x ἔσω + " 12x ἔσωθεν + " 93x ἔτι + " 49x ἔτος + " 6x ἔχθρα + " 5x ἔχιδνα + " 709x ἔχω + " 9x ἕβδομος + " 82x ἕκαστος + " 14x ἕκτος + " 3x ἕλκος + " 8x ἕλκω + " 6x ἕνδεκα + " 26x ἕνεκα + " 13x ἕξ + " 1x ἕξις + " 97x ἕτερος + " 17x ἕτοιμος + " 147x ἕως + " 1x Ἐλαμίτης + " 2x Ἐλεάζαρ + " 1x Ἐλιέζερ + " 3x Ἐλιακίμ + " 2x Ἐλιούδ + " 9x Ἐλισάβετ + " 1x Ἐλισαῖος + " 1x Ἐλμαδάμ + " 1x Ἐλύμας + " 1x Ἐμμανουήλ + " 1x Ἐμμαοῦς + " 1x Ἐνώς + " 1x Ἐπαίνετος + " 2x Ἐπαφρόδιτος + " 3x Ἐπαφρᾶς + " 1x Ἐπικούρειος + " 5x Ἐφέσιος + " 1x Ἐφραίμ + " 3x Ἑβραΐς + " 7x Ἑβραϊστί + " 4x Ἑβραῖος + " 2x Ἑζεκίας + " 1x Ἑλλάς + " 2x Ἑλληνίς + " 1x Ἑλληνικός + " 2x Ἑλληνιστής + " 2x Ἑλληνιστί + " 1x Ἑμμώρ + " 3x Ἑνώχ + " 1x Ἑρμογένης + " 1x Ἑρμᾶς + " 2x Ἑρμῆς + " 1x Ἑσλί + " 3x Ἑσρώμ + " 1x Ἔβερ + " 3x Ἔραστος + " 16x Ἔφεσος + " 26x Ἕλλην + " 1x ἠχέω + " 28x ἡγέομαι + " 1x ἡγεμονία + " 2x ἡγεμονεύω + " 20x ἡγεμών + " 5x ἡδέως + " 5x ἡδονή + " 2x ἡδύοσμον + " 3x ἡλίκος + " 8x ἡλικία + " 389x ἡμέρα + " 8x ἡμέτερος + " 1x ἡμίωρον + " 1x ἡμιθανής + " 2x ἡνίκα + " 3x ἡσσάομαι + " 5x ἡσυχάζω + " 4x ἡσυχία + " 2x ἡσύχιος + " 343x ἤ + " 60x ἤδη + " 1x ἤπερ + " 2x ἤπιος + " 1x ἤρεμος + " 1x ἤτοι + " 25x ἥκω + " 32x ἥλιος + " 5x ἥμισυς + " 2x ἥσσων + " 2x ἥττημα + " 1x ἦθος + " 3x ἦχος (I) + " 1x ἦχος (II) + " 2x ἧλος + " 3x Ἠλί + " 29x Ἠλίας + " 22x Ἠσαΐας + " 3x Ἠσαῦ + " 1x Ἡρῳδίων + " 6x Ἡρῳδιάς + " 3x Ἡρῳδιανοί + " 43x Ἡρῴδης + " 1x Ἤρ + " 26x ἰάομαι + " 6x ἰατρός + " 5x ἰδιώτης + " 1x ἰκμάς + " 1x ἰσάγγελος + " 28x ἰσχυρός + " 10x ἰσχύς + " 28x ἰσχύω + " 3x ἰσότης + " 1x ἰσότιμος + " 1x ἰσόψυχος + " 2x ἰχθύδιον + " 20x ἰχθύς + " 3x ἰός + " 1x ἰῶτα + " 1x ἱδρώς + " 2x ἱεράτευμα + " 2x ἱερατεία + " 1x ἱερατεύω + " 31x ἱερεύς + " 1x ἱεροπρεπής + " 1x ἱεροσυλέω + " 1x ἱερουργέω + " 3x ἱερωσύνη + " 1x ἱερόθυτος + " 74x ἱερός + " 1x ἱερόσυλος + " 40x ἱκανός + " 1x ἱκανότης + " 2x ἱκανόω + " 1x ἱκετηρία + " 2x ἱλάσκομαι + " 1x ἱλαρός + " 1x ἱλαρότης + " 2x ἱλασμός + " 2x ἱλαστήριος + " 4x ἱμάς + " 60x ἱμάτιον + " 2x ἱματίζω + " 5x ἱματισμός + " 2x ἱππεύς + " 1x ἱππικός + " 1x ἱστορέω + " 3x ἴαμα + " 3x ἴασις + " 4x ἴασπις + " 113x ἴδιος + " 8x ἴσος + " 1x ἴσως + " 3x ἴχνος + " 2x ἵλεως + " 669x ἵνα + " 17x ἵππος + " 153x ἵστημι + " 2x ἶρις + " 42x Ἰάκωβος + " 1x Ἰάννης + " 1x Ἰάρετ + " 5x Ἰάσων + " 2x Ἰάϊρος + " 27x Ἰακώβ + " 1x Ἰαμβρῆς + " 1x Ἰανναί + " 1x Ἰδουμαία + " 1x Ἰεζάβελ + " 3x Ἰερεμίας + " 7x Ἰεριχώ + " 5x Ἰεσσαί + " 1x Ἰεφθάε + " 2x Ἰεχονίας + " 913x Ἰησοῦς + " 6x Ἰκόνιον + " 1x Ἰλλυρικόν + " 15x Ἰορδάνης + " 1x Ἰουδαΐζω + " 44x Ἰουδαία + " 1x Ἰουδαϊκός + " 1x Ἰουδαϊκῶς + " 2x Ἰουδαϊσμός + " 194x Ἰουδαῖος + " 1x Ἰουλία + " 1x Ἰουνιᾶς + " 44x Ἰούδας + " 2x Ἰούλιος + " 3x Ἰοῦστος + " 20x Ἰσαάκ + " 11x Ἰσκαριώθ + " 68x Ἰσραήλ + " 9x Ἰσραηλίτης + " 1x Ἰσσαχάρ + " 4x Ἰταλία + " 1x Ἰταλικός + " 1x Ἰτουραῖος + " 2x Ἰωάννα + " 134x Ἰωάννης + " 1x Ἰωήλ + " 2x Ἰωαθάμ + " 1x Ἰωανάν + " 3x Ἰωβήδ + " 1x Ἰωδά + " 1x Ἰωνάμ + " 9x Ἰωνᾶς + " 2x Ἰωράμ + " 1x Ἰωρίμ + " 35x Ἰωσήφ + " 1x Ἰωσήχ + " 2x Ἰωσίας + " 2x Ἰωσαφάτ + " 3x Ἰωσῆς + " 10x Ἰόππη + " 1x Ἰώβ + " 1x Ἱεράπολις + " 2x Ἱεροσολυμίτης + " 139x Ἱεροσόλυμα + " 2x ὀγδοήκοντα + " 12x ὀδούς + " 4x ὀδυνάω + " 2x ὀδυρμός + " 2x ὀδύνη + " 2x ὀθόνη + " 5x ὀθόνιον + " 1x ὀκνέω + " 3x ὀκνηρός + " 1x ὀκταήμερος + " 10x ὀκτώ + " 41x ὀλίγος + " 1x ὀλίγως + " 1x ὀλιγοπιστία + " 1x ὀλιγωρέω + " 5x ὀλιγόπιστος + " 1x ὀλιγόψυχος + " 1x ὀλοθρευτής + " 1x ὀλοθρεύω + " 1x ὀλολύζω + " 1x ὀμίχλη + " 26x ὀμνύω + " 1x ὀνάριον + " 1x ὀνίνημι + " 9x ὀνειδίζω + " 5x ὀνειδισμός + " 2x ὀνικός + " 9x ὀνομάζω + " 8x ὀξύς + " 2x ὀπή + " 35x ὀπίσω + " 1x ὀπτάνομαι + " 4x ὀπτασία + " 1x ὀπτός + " 1x ὀπώρα + " 3x ὀρέγω + " 36x ὀργή + " 8x ὀργίζω + " 1x ὀργίλος + " 2x ὀργυιά + " 2x ὀρεινός + " 1x ὀρθοποδέω + " 1x ὀρθοτομέω + " 1x ὀρθρίζω + " 1x ὀρθρινός + " 2x ὀρθός + " 4x ὀρθῶς + " 2x ὀρφανός + " 4x ὀρχέομαι + " 3x ὀρύσσω + " 6x ὀσμή + " 4x ὀστέον + " 2x ὀστράκινος + " 8x ὀσφῦς + " 2x ὀφείλημα + " 35x ὀφείλω + " 7x ὀφειλέτης + " 3x ὀφειλή + " 2x ὀφθαλμοδουλία + " 100x ὀφθαλμός + " 1x ὀφρῦς + " 1x ὀχλέω + " 1x ὀχλοποιέω + " 1x ὀχύρωμα + " 5x ὀψάριον + " 4x ὀψέ + " 4x ὀψώνιον + " 19783x ὁ + " 1x ὁδεύω + " 5x ὁδηγέω + " 5x ὁδηγός + " 1x ὁδοιπορέω + " 2x ὁδοιπορία + " 101x ὁδός + " 3x ὁλοκαύτωμα + " 1x ὁλοκληρία + " 1x ὁλοτελής + " 2x ὁλόκληρος + " 1x ὁμείρομαι + " 4x ὁμιλέω + " 1x ὁμιλία + " 6x ὁμοίωμα + " 31x ὁμοίως + " 1x ὁμοίωσις + " 11x ὁμοθυμαδόν + " 2x ὁμοιοπαθής + " 2x ὁμοιότης + " 15x ὁμοιόω + " 26x ὁμολογέω + " 6x ὁμολογία + " 1x ὁμολογουμένως + " 4x ὁμοῦ + " 1x ὁμότεχνος + " 1x ὁμόφρων + " 1x ὁπλίζω + " 5x ὁποῖος + " 1x ὁπότε + " 682x ὁράω + " 8x ὁρίζω + " 1x ὁρατός + " 2x ὁρκίζω + " 4x ὁρκωμοσία + " 5x ὁρμάω + " 2x ὁρμή + " 1x ὁροθεσία + " 3x ὁσάκις + " 1x ὁσίως + " 2x ὁσιότης + " 5x ὄγδοος + " 1x ὄγκος + " 1x ὄζω + " 4x ὄλεθρος + " 1x ὄλυνθος + " 1x ὄμβρος + " 2x ὄμμα + " 6x ὄναρ + " 1x ὄνειδος + " 229x ὄνομα + " 5x ὄνος + " 10x ὄντως + " 6x ὄξος + " 7x ὄπισθεν + " 1x ὄρεξις + " 3x ὄρθρος + " 3x ὄρνεον + " 2x ὄρνις + " 63x ὄρος + " 1x ὄσφρησις + " 4x ὄφελον + " 3x ὄφελος + " 14x ὄφις + " 174x ὄχλος + " 1x ὄψιμος + " 14x ὄψιος + " 3x ὄψις + " 10x ὅδε + " 15x ὅθεν + " 108x ὅλος + " 4x ὅλως + " 45x ὅμοιος + " 3x ὅμως + " 6x ὅπλον + " 82x ὅπου + " 53x ὅπως + " 11x ὅραμα + " 4x ὅρασις + " 12x ὅριον + " 10x ὅρκος + " 1x ὅρμημα + " 1407x ὅς + " 8x ὅσιος + " 110x ὅσος + " 145x ὅστις + " 123x ὅταν + " 101x ὅτε + " 1293x ὅτι + " 2x Ὀζίας + " 1x Ὀλυμπᾶς + " 2x Ὀνήσιμος + " 2x Ὀνησίφορος + " 1x ὑάκινθος + " 3x ὑάλινος + " 1x ὑακίνθινος + " 5x ὑβρίζω + " 2x ὑβριστής + " 12x ὑγιής + " 12x ὑγιαίνω + " 1x ὑγρός + " 3x ὑδρία + " 1x ὑδροποτέω + " 1x ὑδρωπικός + " 5x ὑετός + " 10x ὑμέτερος + " 4x ὑμνέω + " 79x ὑπάγω + " 3x ὑπάντησις + " 60x ὑπάρχω + " 150x ὑπέρ + " 1x ὑπέρακμος + " 2x ὑπέρογκος + " 1x ὑπέχω + " 3x ὑπήκοος + " 15x ὑπακοή + " 21x ὑπακούω + " 10x ὑπαντάω + " 1x ὑπείκω + " 2x ὑπεναντίος + " 3x ὑπεράνω + " 1x ὑπερέκεινα + " 5x ὑπερέχω + " 5x ὑπερήφανος + " 3x ὑπεραίρω + " 1x ὑπεραυξάνω + " 5x ὑπερβάλλω + " 1x ὑπερβαίνω + " 1x ὑπερβαλλόντως + " 8x ὑπερβολή + " 2x ὑπερεκπερισσοῦ + " 1x ὑπερεκπερισσῶς + " 1x ὑπερεκτείνω + " 1x ὑπερεκχύννω + " 1x ὑπερεντυγχάνω + " 1x ὑπερηφανία + " 2x ὑπερλίαν + " 1x ὑπερνικάω + " 1x ὑπεροράω + " 2x ὑπεροχή + " 2x ὑπερπερισσεύω + " 1x ὑπερπερισσῶς + " 1x ὑπερπλεονάζω + " 1x ὑπερυψόω + " 1x ὑπερφρονέω + " 4x ὑπερῷον + " 20x ὑπηρέτης + " 3x ὑπηρετέω + " 1x ὑποβάλλω + " 1x ὑπογραμμός + " 4x ὑποδέχομαι + " 3x ὑποδέω + " 6x ὑποδείκνυμι + " 2x ὑποζύγιον + " 1x ὑποζώννυμι + " 11x ὑποκάτω + " 1x ὑποκρίνομαι + " 17x ὑποκριτής + " 1x ὑπολήνιον + " 5x ὑπολαμβάνω + " 1x ὑπολείπω + " 1x ὑπολιμπάνω + " 17x ὑπομένω + " 7x ὑπομιμνῄσκω + " 32x ὑπομονή + " 3x ὑπονοέω + " 2x ὑποπλέω + " 1x ὑποπνέω + " 7x ὑποπόδιον + " 4x ὑποστέλλω + " 1x ὑποστολή + " 35x ὑποστρέφω + " 1x ὑποστρωννύω + " 38x ὑποτάσσω + " 2x ὑποτίθημι + " 4x ὑποταγή + " 1x ὑποτρέχω + " 2x ὑποτύπωσις + " 3x ὑποφέρω + " 2x ὑποχωρέω + " 2x ὑπωπιάζω + " 219x ὑπό + " 6x ὑπόδειγμα + " 10x ὑπόδημα + " 1x ὑπόδικος + " 6x ὑπόκρισις + " 1x ὑπόλειμμα + " 3x ὑπόμνησις + " 1x ὑπόνοια + " 5x ὑπόστασις + " 9x ὑστέρημα + " 2x ὑστέρησις + " 16x ὑστερέω + " 1x ὑφαίνω + " 1x ὑφαντός + " 1x ὑψηλοφρονέω + " 11x ὑψηλός + " 20x ὑψόω + " 2x ὕαλος + " 3x ὕβρις + " 79x ὕδωρ + " 1x ὕλη + " 2x ὕμνος + " 1x ὕπανδρος + " 2x ὕπαρξις + " 6x ὕπνος + " 2x ὕσσωπος + " 13x ὕστερος + " 13x ὕψιστος + " 6x ὕψος + " 2x ὕψωμα + " 1x ὗς + " 2x Ὑμέναιος + " 4x ὠδίν + " 3x ὠδίνω + " 1x ὠνέομαι + " 1x ὠρύομαι + " 2x ὠτάριον + " 3x ὠτίον + " 2x ὠφέλεια + " 4x ὠφέλιμος + " 15x ὠφελέω + " 4x ὡραῖος + " 502x ὡς + " 6x ὡσαννά + " 17x ὡσαύτως + " 21x ὡσεί + " 1x ὡσπερεί + " 106x ὥρα + " 36x ὥσπερ + " 84x ὥστε + " 17x ὦ + " 2x ὦμος + " 60x ὧδε + " 1x Ὡσηέ + " 3x Ὦ + " 5x ᾄδω + " 10x ᾅδης + " 7x ᾠδή + " 1x ᾠόν + " 12x ῥάβδος + " 2x ῥάκος + " 3x ῥάπισμα + " 1x ῥέδη + " 1x ῥέω + " 7x ῥήγνυμι + " 1x ῥήτωρ + " 17x ῥίζα + " 8x ῥίπτω + " 15x ῥαββί + " 2x ῥαββουνί + " 2x ῥαβδίζω + " 2x ῥαβδοῦχος + " 1x ῥακά + " 5x ῥαντίζω + " 2x ῥαντισμός + " 2x ῥαπίζω + " 2x ῥαφίς + " 1x ῥητῶς + " 2x ῥιζόω + " 1x ῥιπή + " 1x ῥιπίζω + " 1x ῥοιζηδόν + " 7x ῥομφαία + " 1x ῥυπαίνω + " 1x ῥυπαρία + " 2x ῥυπαρός + " 1x ῥυτίς + " 4x ῥύμη + " 17x ῥύομαι + " 1x ῥύπος + " 3x ῥύσις + " 1x ῥώννυμι + " 1x ῥᾳδιουργία + " 1x ῥᾳδιούργημα + " 1x ῥῆγμα + " 67x ῥῆμα + " 1x Ῥήγιον + " 2x Ῥαάβ + " 1x Ῥαγαύ + " 1x Ῥαιφάν + " 1x Ῥαμά + " 1x Ῥαχάβ + " 1x Ῥαχήλ + " 1x Ῥεβέκκα + " 1x Ῥησά + " 2x Ῥοβοάμ + " 1x Ῥουβήν + " 1x Ῥούθ + " 2x Ῥοῦφος + " 1x Ῥωμαϊστί + " 12x Ῥωμαῖος + " 1x Ῥόδη + " 1x Ῥόδος + " 8x Ῥώμη + ln= 123x + " 1458x N.N + " 9x N.N N.N + " 9x N.N N.NN + " 3x N.N N.NNN + " 5x N.N NN.NN + " 12x N.N NN.NNN + " 4342x N.NN + " 14x N.NN N.N + " 49x N.NN N.NN + " 2x N.NN N.NN N.NN + " 1x N.NN N.NN NN.NN + " 1x N.NN N.NNN + " 5x N.NN NN.N + " 1x N.NN NN.N NN.NN + " 23x N.NN NN.NN + " 1x N.NN NN.NN N.N + " 6x N.NN NN.NNN + " 645x N.NNN + " 2x N.NNN N.NN + " 3x N.NNN N.NNN + " 3x N.NNN NN.NN + " 1x N.NNN NN.NN NN.NNN + " 20384x NN.N + " 6x NN.N N.N + " 8x NN.N N.NN + " 4x NN.N N.NNN + " 81x NN.N NN.N + " 1x NN.N NN.N NN.N + " 2x NN.N NN.N NN.NN + " 2x NN.N NN.N NN.NNN + " 164x NN.N NN.NN + " 1x NN.N NN.NN NN.N + " 7x NN.N NN.NN NN.NN + " 1x NN.N NN.NN NN.NN NN.NN + " 1x NN.N NN.NN NN.NNN NN.N + " 29x NN.N NN.NNN + " 2x NN.N NN.NNN NN.NN + " 1x NN.N NN.NNN NN.NN NN.N + " 1x NN.N NN.NNN NN.NN NN.NN NN.NN + " 1x NN.N NN.NNNa + " 77779x NN.NN + " 11x NN.NN N.N + " 48x NN.NN N.NN + " 1x NN.NN N.NN N.NN + " 4x NN.NN N.NNN + " 242x NN.NN NN.N + " 3x NN.NN NN.N NN.N + " 5x NN.NN NN.N NN.NN + " 835x NN.NN NN.NN + " 2x NN.NN NN.NN N.N + " 1x NN.NN NN.NN N.NN + " 3x NN.NN NN.NN N.NNN + " 6x NN.NN NN.NN NN.N + " 31x NN.NN NN.NN NN.NN + " 3x NN.NN NN.NN NN.NN NN.NN + " 4x NN.NN NN.NN NN.NNN + " 198x NN.NN NN.NNN + " 1x NN.NN NN.NNN N.NNN + " 2x NN.NN NN.NNN NN.NN + " 2x NN.NN NN.NNN NN.NNN + " 1x NN.NN NN.NNNa + " 17050x NN.NNN + " 2x NN.NNN N.N + " 41x NN.NNN N.NN + " 1x NN.NNN N.NNN + " 37x NN.NNN NN.N + " 1x NN.NNN NN.N NN.N NN.NNN NN.NNN NN.NN NN.NN NN.NN + " 2x NN.NNN NN.N NN.NN + " 218x NN.NNN NN.NN + " 5x NN.NNN NN.NN NN.N + " 16x NN.NNN NN.NN NN.NN + " 1x NN.NNN NN.NN NN.NN NN.N + " 148x NN.NNN NN.NNN + " 3x NN.NNN NN.NNN NN.NN + " 1x NN.NNN NN.NNN NN.NN NN.NN + " 6x NN.NNN NN.NNN NN.NNN + " 1683x NN.NNNa + " 1x NN.NNNa NN.NNN + " 1x NN.NNNa NN.NNNb + " 1x NN.NNNa NN.NNNd + " 2x NN.NNNa NN.NNNf + " 231x NN.NNNb + " 61x NN.NNNc + " 2x NN.NNNc NN.NNNd + " 22x NN.NNNd + " 17x NN.NNNe + " 7x NN.NNNf + " 7x NN.NNNg + " 7x NN.NNNh + " 3x NN.NNNi + " 47x NN.NNa + " 12x NN.NNb + " 6x NN.NNc + " 2x NN.NNd + " 1x NN.NNe + " 2x NN.Na + " 1x NN.Nb + " 613x NN.N{N:NNN} + " 22x NN.N{N:NNN} NN.NN + mood= 1877x imperative + " 15617x indicative + " 2285x infinitive + " 69x optative + " 6653x participle + " 1856x subjunctive + morph= 111x A-APF + " 11x A-APF-C + " 1x A-APF-S + " 438x A-APM + " 20x A-APM-C + " 4x A-APM-S + " 402x A-APN + " 14x A-APN-C + " 3x A-APN-S + " 408x A-ASF + " 13x A-ASF-C + " 15x A-ASF-N + " 7x A-ASF-S + " 430x A-ASM + " 8x A-ASM-C + " 25x A-ASM-N + " 9x A-ASM-S + " 426x A-ASN + " 43x A-ASN-C + " 101x A-ASN-N + " 10x A-ASN-S + " 57x A-DPF + " 2x A-DPF-C + " 3x A-DPF-S + " 243x A-DPM + " 7x A-DPM-C + " 2x A-DPM-S + " 80x A-DPN + " 4x A-DPN-S + " 240x A-DSF + " 1x A-DSF-C + " 15x A-DSF-S + " 184x A-DSM + " 2x A-DSM-C + " 22x A-DSM-N + " 7x A-DSM-S + " 160x A-DSN + " 1x A-DSN-C + " 8x A-DSN-N + " 4x A-DSN-S + " 23x A-GPF + " 4x A-GPF-S + " 457x A-GPM + " 24x A-GPM-C + " 7x A-GPM-S + " 162x A-GPN + " 3x A-GPN-C + " 5x A-GPN-S + " 228x A-GSF + " 9x A-GSF-C + " 4x A-GSF-S + " 170x A-GSM + " 4x A-GSM-C + " 9x A-GSM-N + " 13x A-GSM-S + " 148x A-GSN + " 4x A-GSN-N + " 4x A-GSN-S + " 84x A-NPF + " 1x A-NPF-C + " 1x A-NPF-S + " 818x A-NPM + " 35x A-NPM-C + " 20x A-NPM-S + " 212x A-NPN + " 1x A-NPN-C + " 5x A-NPN-S + " 305x A-NSF + " 5x A-NSF-C + " 3x A-NSF-N + " 17x A-NSF-S + " 1018x A-NSM + " 2x A-NSM-ATT + " 44x A-NSM-C + " 113x A-NSM-N + " 44x A-NSM-S + " 397x A-NSN + " 36x A-NSN-C + " 25x A-NSN-N + " 1x A-NSN-S + " 476x A-NUI + " 49x A-VPM + " 1x A-VPM-C + " 3x A-VSF + " 27x A-VSM + " 3x A-VSM-S + " 3808x ADV + " 39x ADV-C + " 166x ADV-I + " 24x ADV-K + " 125x ADV-N + " 75x ADV-S + " 43x ARAM + " 67x C-APM + " 11x C-DPM + " 2x C-DPN + " 18x C-GPM + " 2x C-GPN + " 846x COND + " 16x COND-K + " 16316x CONJ + " 322x CONJ-N + " 1x CONJ-P + " 12x D-APF + " 39x D-APM + " 1x D-APM-K + " 215x D-APN + " 3x D-APN-K + " 71x D-ASF + " 82x D-ASM + " 3x D-ASM-K + " 242x D-ASN + " 29x D-DPF + " 16x D-DPM + " 14x D-DPN + " 71x D-DSF + " 55x D-DSM + " 47x D-DSN + " 9x D-GPF + " 32x D-GPM + " 47x D-GPN + " 55x D-GSF + " 67x D-GSM + " 27x D-GSN + " 9x D-NPF + " 98x D-NPM + " 7x D-NPM-K + " 47x D-NPN + " 1x D-NPN-K + " 85x D-NSF + " 254x D-NSM + " 7x D-NSM-K + " 101x D-NSN + " 4x F-NAPF + " 67x F-NAPM + " 1x F-NAPN + " 7x F-NASF + " 121x F-NASM + " 1x F-NDPF + " 50x F-NDPM + " 2x F-NDSF + " 41x F-NDSM + " 5x F-NGPF + " 37x F-NGPM + " 1x F-NGPN + " 6x F-NGSF + " 63x F-NGSM + " 4x F-NGSN + " 158x HEB + " 2x I-APF + " 1x I-APM + " 1x I-APN + " 3x I-ASF + " 22x I-ASM + " 252x I-ASN + " 2x I-DPM + " 12x I-DSF + " 12x I-DSM + " 12x I-DSN + " 2x I-GPM + " 1x I-GPN + " 2x I-GSF + " 12x I-GSM + " 2x I-GSN + " 6x I-NPM + " 2x I-NPN + " 24x I-NSF + " 128x I-NSM + " 97x I-NSN + " 61x INJ + " 5x K-APM + " 49x K-APN + " 7x K-ASM + " 11x K-ASN + " 3x K-DSN + " 1x K-GPM + " 1x K-NPF + " 31x K-NPM + " 7x K-NPN + " 3x K-NSM + " 2x K-NSN + " 584x N-APF + " 6x N-APF-S + " 746x N-APM + " 639x N-APN + " 1x N-APN-S + " 2870x N-ASF + " 3x N-ASF-S + " 2456x N-ASM + " 1x N-ASM-S + " 1170x N-ASN + " 341x N-DPF + " 403x N-DPM + " 1x N-DPM-S + " 194x N-DPN + " 1459x N-DSF + " 1222x N-DSM + " 596x N-DSN + " 259x N-GPF + " 734x N-GPM + " 366x N-GPN + " 2192x N-GSF + " 2935x N-GSM + " 738x N-GSN + " 7x N-LI + " 262x N-NPF + " 876x N-NPM + " 2x N-NPM-S + " 246x N-NPN + " 1594x N-NSF + " 3475x N-NSM + " 1x N-NSM-C + " 718x N-NSN + " 11x N-OI + " 773x N-PRI + " 2x N-VPF + " 177x N-VPM + " 18x N-VPN + " 22x N-VSF + " 285x N-VSM + " 9x N-VSN + " 12x P-APF + " 356x P-APM + " 55x P-APN + " 135x P-ASF + " 954x P-ASM + " 97x P-ASN + " 18x P-DPF + " 545x P-DPM + " 11x P-DPN + " 112x P-DSF + " 829x P-DSM + " 20x P-DSN + " 20x P-GPF + " 511x P-GPM + " 27x P-GPN + " 169x P-GSF + " 1355x P-GSM + " 51x P-GSN + " 598x P-NAP + " 574x P-NAS + " 3x P-NAS-K + " 777x P-NDP + " 529x P-NDS + " 5x P-NDS-K + " 954x P-NGP + " 1146x P-NGS + " 362x P-NNP + " 519x P-NNS + " 76x P-NNS-K + " 87x P-NPM + " 1x P-NPN + " 10x P-NSF + " 166x P-NSM + " 9x P-NSN + " 10568x PREP + " 1021x PRT + " 97x PRT-I + " 2701x PRT-N + " 1x Q-APF + " 5x Q-APM + " 2x Q-APN + " 1x Q-ASF + " 2x Q-ASN + " 11x Q-DSN + " 1x Q-GPN + " 1x Q-NPF + " 1x Q-NPM + " 1x Q-NSM + " 1x Q-NSN + " 2x R-APF + " 51x R-APM + " 96x R-APN + " 98x R-ASF + " 167x R-ASM + " 179x R-ASN + " 14x R-DPF + " 31x R-DPM + " 15x R-DPN + " 39x R-DSF + " 79x R-DSM + " 41x R-DSN + " 6x R-GPF + " 33x R-GPM + " 40x R-GPN + " 49x R-GSF + " 95x R-GSM + " 20x R-GSN + " 5x R-GSN-ATT + " 15x R-NPF + " 93x R-NPM + " 27x R-NPN + " 45x R-NSF + " 247x R-NSM + " 69x R-NSN + " 2x S-NPASF + " 1x S-NPASM + " 2x S-NPASN + " 1x S-NPDPF + " 1x S-NPDPM + " 1x S-NPDSF + " 1x S-NPDSM + " 1x S-NPDSN + " 1x S-NPGPF + " 3x S-NPGSF + " 1x S-NPNPM + " 2x S-NPNSF + " 1x S-NPNSM + " 1x S-NSAPF + " 4x S-NSAPM + " 3x S-NSAPN + " 14x S-NSASF + " 2x S-NSASM + " 8x S-NSASN + " 2x S-NSDPN + " 10x S-NSDSF + " 3x S-NSDSM + " 5x S-NSDSN + " 1x S-NSGPN + " 5x S-NSGSF + " 5x S-NSGSN + " 7x S-NSNPM + " 10x S-NSNPN + " 12x S-NSNSF + " 7x S-NSNSM + " 5x S-NSNSN + " 338x T-APF + " 724x T-APM + " 606x T-APN + " 1528x T-ASF + " 1574x T-ASM + " 1079x T-ASN + " 202x T-DPF + " 457x T-DPM + " 168x T-DPN + " 875x T-DSF + " 827x T-DSM + " 406x T-DSN + " 139x T-GPF + " 831x T-GPM + " 241x T-GPN + " 1301x T-GSF + " 1920x T-GSM + " 587x T-GSN + " 147x T-NPF + " 1117x T-NPM + " 222x T-NPN + " 979x T-NSF + " 2905x T-NSM + " 610x T-NSN + " 735x V-AAI-NP + " 1532x V-AAI-NS + " 154x V-AAM-NP + " 206x V-AAM-NS + " 507x V-AAN + " 2x V-AAO-NP + " 10x V-AAO-NS + " 11x V-AAP-APM + " 1x V-AAP-APN + " 2x V-AAP-ASF + " 20x V-AAP-ASM + " 1x V-AAP-ASN + " 10x V-AAP-DPM + " 15x V-AAP-DSM + " 21x V-AAP-GPM + " 47x V-AAP-GSM + " 5x V-AAP-NPF + " 203x V-AAP-NPM + " 19x V-AAP-NSF + " 351x V-AAP-NSM + " 5x V-AAP-NSN + " 183x V-AAS-NP + " 313x V-AAS-NS + " 85x V-ADI-NP + " 253x V-ADI-NS + " 38x V-ADM-NP + " 13x V-ADM-NS + " 32x V-ADN + " 1x V-ADO-NS + " 2x V-ADP-APM + " 2x V-ADP-ASM + " 1x V-ADP-DPM + " 1x V-ADP-GSF + " 25x V-ADP-NPM + " 2x V-ADP-NSF + " 54x V-ADP-NSM + " 16x V-ADS-NP + " 29x V-ADS-NS + " 23x V-AMI-NP + " 66x V-AMI-NS + " 6x V-AMM-NP + " 12x V-AMM-NS + " 31x V-AMN + " 2x V-AMP-APM + " 1x V-AMP-GPM + " 5x V-AMP-GSM + " 16x V-AMP-NPM + " 1x V-AMP-NSF + " 39x V-AMP-NSM + " 20x V-AMS-NP + " 26x V-AMS-NS + " 1x V-ANI-NP + " 4x V-ANI-NS + " 1x V-ANP-NSM + " 1x V-ANP-NSN + " 38x V-AOI-NP + " 6x V-AOI-NP-ATT + " 42x V-AOI-NS + " 2x V-AOI-NS-ATT + " 12x V-AOM-NP + " 12x V-AOM-NS + " 7x V-AON + " 1x V-AOO-NS + " 1x V-AOP-APM + " 1x V-AOP-DSM + " 1x V-AOP-GPM + " 1x V-AOP-GPN + " 1x V-AOP-GSM + " 1x V-AOP-NPF + " 25x V-AOP-NPM + " 4x V-AOP-NSF + " 117x V-AOP-NSM + " 1x V-AOP-NSN + " 8x V-AOS-NP + " 10x V-AOS-NS + " 199x V-API-NP + " 398x V-API-NS + " 12x V-APM-NP + " 30x V-APM-NS + " 158x V-APN + " 4x V-APO-NS + " 5x V-APP-APM + " 3x V-APP-APN + " 9x V-APP-ASF + " 7x V-APP-ASM + " 4x V-APP-ASN + " 1x V-APP-DPN + " 3x V-APP-DSF + " 2x V-APP-DSM + " 2x V-APP-GPF + " 3x V-APP-GPM + " 2x V-APP-GPN + " 10x V-APP-GSF + " 11x V-APP-GSM + " 6x V-APP-GSN + " 44x V-APP-NPM + " 2x V-APP-NPN + " 9x V-APP-NSF + " 67x V-APP-NSM + " 15x V-APP-NSN + " 69x V-APS-NP + " 146x V-APS-NS + " 240x V-FAI-NP + " 5x V-FAI-NP-ATT + " 576x V-FAI-NS + " 3x V-FAI-NS-ATT + " 1x V-FAN + " 1x V-FAP-APN + " 1x V-FAP-NPM + " 8x V-FAP-NSM + " 1x V-FAS-NS + " 162x V-FDI-NP + " 1x V-FDI-NP-ATT + " 291x V-FDI-NS + " 5x V-FDN + " 2x V-FDP-ASN + " 14x V-FMI-NP + " 12x V-FMI-NS + " 6x V-FNI-NP + " 2x V-FNI-NS + " 2x V-FOI-NP + " 5x V-FOI-NS + " 66x V-FPI-NP + " 185x V-FPI-NS + " 1x V-FPP-GPN + " 526x V-IAI-NP + " 828x V-IAI-NS + " 12x V-IAI-NS-ATT + " 1x V-IDI-NP + " 1x V-IEI-NS + " 25x V-IMI-NP + " 31x V-IMI-NS + " 65x V-INI-NP + " 3x V-INI-NP-ATT + " 109x V-INI-NS + " 4x V-INI-NS-ATT + " 48x V-IPI-NP + " 35x V-IPI-NS + " 14x V-LAI-NP + " 1x V-LAI-NP-ATT + " 12x V-LAI-NS + " 6x V-LAI-NS-ATT + " 1x V-LDI-NS + " 1x V-LMI-NP + " 5x V-LPI-NS + " 622x V-NAAI-NP + " 3x V-NAAI-NP-ATT + " 1471x V-NAAI-NS + " 91x V-NAAM-NP + " 186x V-NAAM-NS + " 452x V-NAAN + " 1x V-NAAO-NP + " 10x V-NAAO-NS + " 1x V-NAAP-APF + " 7x V-NAAP-APM + " 2x V-NAAP-ASF + " 22x V-NAAP-ASM + " 2x V-NAAP-ASN + " 1x V-NAAP-DPF + " 4x V-NAAP-DPM + " 2x V-NAAP-DSF + " 6x V-NAAP-DSM + " 17x V-NAAP-GPM + " 4x V-NAAP-GSF + " 25x V-NAAP-GSM + " 2x V-NAAP-GSN + " 11x V-NAAP-NPF + " 227x V-NAAP-NPM + " 6x V-NAAP-NPN + " 43x V-NAAP-NSF + " 484x V-NAAP-NSM + " 4x V-NAAP-NSN + " 180x V-NAAS-NP + " 272x V-NAAS-NS + " 23x V-NADI-NP + " 229x V-NADI-NS + " 2x V-NADM-NS + " 40x V-NADN + " 18x V-NADO-NS + " 1x V-NADP-APM + " 6x V-NADP-APN + " 4x V-NADP-ASF + " 3x V-NADP-ASM + " 2x V-NADP-ASN + " 2x V-NADP-DPM + " 1x V-NADP-DPN + " 2x V-NADP-GPF + " 1x V-NADP-GPM + " 1x V-NADP-GPN + " 32x V-NADP-GSF + " 9x V-NADP-GSM + " 3x V-NADP-GSN + " 4x V-NADP-NPF + " 19x V-NADP-NPM + " 42x V-NADP-NSM + " 17x V-NADS-NP + " 50x V-NADS-NS + " 23x V-NAMI-NP + " 39x V-NAMI-NS + " 2x V-NAMM-NP + " 203x V-NAMM-NS + " 8x V-NAMN + " 2x V-NAMP-GSM + " 9x V-NAMP-NPM + " 8x V-NAMP-NSM + " 3x V-NAMS-NP + " 11x V-NAMS-NS + " 7x V-NAOI-NP + " 6x V-NAOI-NS + " 3x V-NAOM-NP + " 2x V-NAON + " 2x V-NAOS-NP + " 18x V-NAPI-NP + " 47x V-NAPI-NS + " 5x V-NAPM-NP + " 4x V-NAPM-NS + " 2x V-NAPN + " 1x V-NAPP-ASM + " 1x V-NAPP-DSN + " 1x V-NAPP-GPM + " 1x V-NAPP-NPF + " 7x V-NAPP-NPM + " 1x V-NAPP-NSF + " 18x V-NAPP-NSM + " 2x V-NAPP-NSN + " 9x V-NAPS-NP + " 12x V-NAPS-NS + " 3x V-NFAI-NS + " 1x V-NFDI-NS + " 1x V-NFMI-NS + " 1x V-NFOI-NP + " 3x V-NFOI-NS + " 12x V-NFPI-NP + " 15x V-NFPI-NS + " 15x V-NLAI-NP + " 33x V-NLAI-NS + " 15x V-NRAI-NP + " 9x V-NRAI-NP-ATT + " 79x V-NRAI-NS + " 1x V-NRAI-NS-ATT + " 8x V-NRAN + " 5x V-NRAP-APM + " 1x V-NRAP-APM-ATT + " 2x V-NRAP-APN + " 2x V-NRAP-ASF + " 4x V-NRAP-ASM + " 14x V-NRAP-ASN + " 1x V-NRAP-DSN + " 1x V-NRAP-GPN + " 1x V-NRAP-NPF + " 5x V-NRAP-NPM + " 1x V-NRAP-NSF + " 10x V-NRAP-NSM + " 2x V-NRAP-NSN + " 1x V-NRPP-ASM + " 1x V-NRPP-ASN + " 1220x V-PAI-NP + " 1x V-PAI-NP-ATT + " 3354x V-PAI-NS + " 344x V-PAM-NP + " 289x V-PAM-NS + " 755x V-PAN + " 2x V-PAO-NP + " 16x V-PAO-NS + " 4x V-PAP-APF + " 160x V-PAP-APM + " 23x V-PAP-APN + " 48x V-PAP-ASF + " 117x V-PAP-ASM + " 35x V-PAP-ASN + " 7x V-PAP-DPF + " 60x V-PAP-DPM + " 6x V-PAP-DPN + " 17x V-PAP-DSF + " 79x V-PAP-DSM + " 1x V-PAP-DSN + " 3x V-PAP-GPF + " 132x V-PAP-GPM + " 16x V-PAP-GPN + " 31x V-PAP-GSF + " 135x V-PAP-GSM + " 19x V-PAP-GSN + " 25x V-PAP-NPF + " 669x V-PAP-NPM + " 30x V-PAP-NPN + " 87x V-PAP-NSF + " 933x V-PAP-NSM + " 38x V-PAP-NSN + " 203x V-PAS-NP + " 205x V-PAS-NS + " 1x V-PDP-NPM + " 3x V-PEI-NP + " 4x V-PEI-NS + " 5x V-PEM-NP + " 2x V-PEN + " 4x V-PEP-DPM + " 1x V-PEP-DSM + " 1x V-PEP-GPN + " 1x V-PEP-GSM + " 1x V-PEP-NPF + " 3x V-PEP-NPM + " 1x V-PEP-NSF + " 26x V-PMI-NP + " 44x V-PMI-NS + " 13x V-PMM-NP + " 9x V-PMM-NS + " 31x V-PMN + " 9x V-PMP-APM + " 3x V-PMP-ASF + " 3x V-PMP-ASM + " 2x V-PMP-ASN + " 2x V-PMP-DPM + " 1x V-PMP-DSM + " 1x V-PMP-GPF + " 5x V-PMP-GPM + " 1x V-PMP-GSF + " 3x V-PMP-GSM + " 1x V-PMP-GSN + " 1x V-PMP-NPF + " 36x V-PMP-NPM + " 2x V-PMP-NSF + " 30x V-PMP-NSM + " 1x V-PMP-NSN + " 2x V-PMS-NP + " 4x V-PMS-NS + " 161x V-PNI-NP + " 445x V-PNI-NS + " 1x V-PNI-NS-ATT + " 88x V-PNM-NP + " 85x V-PNM-NS + " 106x V-PNN + " 2x V-PNO-NP + " 2x V-PNO-NS + " 2x V-PNP-APF + " 33x V-PNP-APM + " 12x V-PNP-APN + " 5x V-PNP-ASF + " 54x V-PNP-ASM + " 8x V-PNP-ASN + " 2x V-PNP-DPF + " 17x V-PNP-DPM + " 4x V-PNP-DPN + " 1x V-PNP-DSF + " 23x V-PNP-DSM + " 2x V-PNP-DSN + " 2x V-PNP-GPF + " 30x V-PNP-GPM + " 1x V-PNP-GPN + " 6x V-PNP-GSF + " 40x V-PNP-GSM + " 4x V-PNP-GSN + " 7x V-PNP-NPF + " 117x V-PNP-NPM + " 3x V-PNP-NPN + " 12x V-PNP-NSF + " 143x V-PNP-NSM + " 11x V-PNP-NSN + " 17x V-PNS-NP + " 19x V-PNS-NS + " 2x V-POP-NPM + " 78x V-PPI-NP + " 191x V-PPI-NS + " 29x V-PPM-NP + " 17x V-PPM-NS + " 98x V-PPN + " 3x V-PPP-APF + " 15x V-PPP-APM + " 9x V-PPP-APN + " 11x V-PPP-ASF + " 31x V-PPP-ASM + " 15x V-PPP-ASN + " 8x V-PPP-DPM + " 7x V-PPP-DPN + " 9x V-PPP-DSF + " 4x V-PPP-DSM + " 2x V-PPP-DSN + " 10x V-PPP-GPM + " 6x V-PPP-GPN + " 9x V-PPP-GSF + " 4x V-PPP-GSM + " 4x V-PPP-GSN + " 6x V-PPP-NPF + " 71x V-PPP-NPM + " 11x V-PPP-NPN + " 26x V-PPP-NSF + " 67x V-PPP-NSM + " 30x V-PPP-NSN + " 7x V-PPS-NP + " 12x V-PPS-NS + " 172x V-RAI-NP + " 12x V-RAI-NP-ATT + " 283x V-RAI-NS + " 30x V-RAI-NS-ATT + " 2x V-RAM-NP + " 28x V-RAN + " 1x V-RAN-ATT + " 11x V-RAP-APM + " 1x V-RAP-APN + " 2x V-RAP-ASF + " 16x V-RAP-ASM + " 1x V-RAP-ASN + " 12x V-RAP-DPM + " 4x V-RAP-DSM + " 1x V-RAP-DSN + " 11x V-RAP-GPM + " 1x V-RAP-GPN + " 1x V-RAP-GSF + " 6x V-RAP-GSM + " 1x V-RAP-GSM-ATT + " 47x V-RAP-NPM + " 1x V-RAP-NPM-ATT + " 3x V-RAP-NPN + " 6x V-RAP-NSF + " 50x V-RAP-NSM + " 2x V-RAP-NSM-ATT + " 1x V-RAP-NSN + " 7x V-RAS-NP + " 3x V-RAS-NS + " 1x V-RDI-NS + " 2x V-RMI-NS + " 2x V-RMP-ASM + " 2x V-RMP-NPM + " 1x V-RMP-NSM + " 1x V-RNI-NP + " 19x V-RNI-NS + " 1x V-RNN + " 1x V-RNP-APM + " 1x V-RNP-ASF + " 1x V-RNP-DPF + " 1x V-RNP-NPM + " 1x V-RNP-NSM + " 16x V-RPI-NP + " 193x V-RPI-NS + " 1x V-RPM-NP + " 1x V-RPM-NS + " 10x V-RPN + " 4x V-RPP-APF + " 24x V-RPP-APM + " 21x V-RPP-APN + " 29x V-RPP-ASF + " 47x V-RPP-ASM + " 28x V-RPP-ASN + " 2x V-RPP-ASN-ATT + " 14x V-RPP-DPM + " 4x V-RPP-DPN + " 4x V-RPP-DSF + " 4x V-RPP-DSM + " 2x V-RPP-DSN + " 2x V-RPP-GPF + " 20x V-RPP-GPM + " 4x V-RPP-GPN + " 4x V-RPP-GSF + " 5x V-RPP-GSM + " 5x V-RPP-GSN + " 4x V-RPP-NPF + " 74x V-RPP-NPM + " 10x V-RPP-NPN + " 26x V-RPP-NSF + " 62x V-RPP-NSM + " 36x V-RPP-NSN + " 2x V-RPP-NSN-ATT + " 1x V-RPP-VSM + " 5x X-APF + " 19x X-APM + " 2x X-APN + " 11x X-ASF + " 31x X-ASM + " 85x X-ASN + " 4x X-DPM + " 2x X-DSF + " 10x X-DSM + " 1x X-DSN + " 1x X-GPF + " 8x X-GPM + " 1x X-GPN + " 18x X-GSM + " 3x X-GSN + " 2x X-NPF + " 74x X-NPM + " 1x X-NPN + " 13x X-NSF + " 223x X-NSM + " 15x X-NSN + normalized= 1x ΑΓΝΩΣΤΩ + " 1x ΑΝΑΘΕΜΑ + " 1x Αἰγυπτίων + " 1x Αἰγύπτιοι + " 2x Αἰγύπτιον + " 1x Αἰγύπτιος + " 8x Αἰγύπτου + " 4x Αἰγύπτῳ + " 1x Αἰθίοψ + " 1x Αἰθιόπων + " 1x Αἰνέα + " 1x Αἰνέαν + " 2x Αἰνεῖτε + " 1x Αἰνών + " 1x Αἰτεῖτε + " 7x Αἱ + " 12x Αἴγυπτον + " 1x Αἴγυπτος + " 1x Αἴτησον + " 3x Αἶρε + " 1x Αὐγούστου + " 3x Αὐτοί + " 9x Αὐτός + " 1x Αὐτῶν + " 1x Αὔριον + " 2x Αὕτη + " 1x ΒΑΒΥΛΩΝ + " 5x ΒΑΣΙΛΕΥΣ + " 1x ΒΑΣΙΛΕΩΝ + " 1x ΒΔΕΛΥΓΜΑΤΩΝ + " 1x Βάαλ + " 1x Βάλε + " 1x Βάλετε + " 2x Βάτου + " 1x Βέροιαν + " 1x Βίβλος + " 5x Βαβυλών + " 1x Βαβυλῶνι + " 5x Βαβυλῶνος + " 1x Βαλάκ + " 3x Βαλαάμ + " 1x Βαπτίζοντος + " 1x Βαπτίζων + " 3x Βαπτιστήν + " 3x Βαπτιστής + " 5x Βαπτιστοῦ + " 1x Βαράκ + " 9x Βαραββᾶν + " 2x Βαραββᾶς + " 1x Βαραχίου + " 1x Βαρβάροις + " 2x Βαρθολομαῖον + " 2x Βαρθολομαῖος + " 1x Βαριησοῦς + " 1x Βαριωνᾶ + " 5x Βαρνάβα + " 8x Βαρνάβαν + " 10x Βαρνάβας + " 5x Βαρνάβᾳ + " 2x Βαρσαββᾶν + " 1x Βαρτιμαῖος + " 4x Βασιλέα + " 1x Βασιλέως + " 21x Βασιλεύς + " 1x Βασιλεῖ + " 2x Βασιλεῦ + " 7x Βεελζεβούλ + " 1x Βελιάρ + " 4x Βενιαμείν + " 2x Βερνίκη + " 1x Βερνίκης + " 1x Βεροίᾳ + " 1x Βεροιαῖος + " 1x Βεώρ + " 1x Βηθανία + " 6x Βηθανίαν + " 2x Βηθανίας + " 3x Βηθανίᾳ + " 1x Βηθζαθά + " 5x Βηθλέεμ + " 3x Βηθλεέμ + " 4x Βηθσαϊδά + " 3x Βηθσαϊδάν + " 3x Βηθφαγή + " 1x Βιθυνίαν + " 1x Βιθυνίας + " 1x Βλάστον + " 1x Βλέπε + " 3x Βλέπεις + " 12x Βλέπετε + " 1x Βλέπομεν + " 1x Βλέπω + " 1x Βλέψον + " 1x Βλασφημεῖς + " 1x Βοανηργές + " 1x Βοός + " 1x Βούλομαι + " 1x Βοῦν + " 1x Βροντῆς + " 2x Βόες + " 2x Βόσκε + " 1x ΓΗΣ + " 1x Γάδ + " 1x Γάζαν + " 2x Γάϊον + " 2x Γάϊος + " 1x Γέγονα + " 1x Γέγοναν + " 1x Γέγονεν + " 5x Γέγραπται + " 2x Γίνεσθε + " 1x Γαΐῳ + " 1x Γαββαθα + " 2x Γαβριήλ + " 1x Γαδαρηνῶν + " 1x Γαλάται + " 1x Γαλατίαν + " 3x Γαλατίας + " 2x Γαλατικήν + " 1x Γαλιλαία + " 17x Γαλιλαίαν + " 37x Γαλιλαίας + " 1x Γαλιλαίου + " 1x Γαλιλαίους + " 1x Γαλιλαίων + " 6x Γαλιλαίᾳ + " 4x Γαλιλαῖοι + " 4x Γαλιλαῖος + " 1x Γαλλίων + " 1x Γαλλίωνι + " 1x Γαλλίωνος + " 2x Γαμαλιήλ + " 1x Γεδεών + " 2x Γεθσημανεί + " 1x Γεμίσατε + " 1x Γενεά + " 2x Γενηθήτω + " 2x Γεννήματα + " 3x Γεννησαρέτ + " 3x Γενομένης + " 1x Γενομένων + " 3x Γερασηνῶν + " 1x Γινώσκειν + " 3x Γινώσκετε + " 1x Γλεύκους + " 1x Γνωρίζομεν + " 1x Γνωρίζω + " 1x Γνῶθι + " 2x Γολγοθᾶ + " 1x Γολγοθᾶν + " 1x Γομόρρας + " 1x Γομόρρων + " 1x Γράφω + " 3x Γράψον + " 2x Γρηγορεῖτε + " 2x Γυνή + " 1x Γυναῖκα + " 2x Γόμορρα + " 4x Γύναι + " 1x Γώγ + " 1x Γῆ + " 1x Δάμαρις + " 2x Δέξαι + " 1x Δέομαι + " 3x Δέρβην + " 2x Δέσποτα + " 1x Δήσαντες + " 1x Δία + " 3x Δίδυμος + " 2x Δίκαιον + " 1x Δίκαιος + " 1x Δίκη + " 4x Δαιμόνιον + " 1x Δαλμανουθά + " 1x Δαλματίαν + " 1x Δαμασκηνῶν + " 7x Δαμασκόν + " 8x Δαμασκῷ + " 1x Δανιήλ + " 59x Δαυείδ + " 1x Δεήθητε + " 1x Δείξατε + " 1x Δείραντες + " 1x Δεκαπόλει + " 2x Δεκαπόλεως + " 1x Δερβαῖος + " 1x Δεσπότην + " 1x Δεσπότης + " 3x Δεῖ + " 1x Δεῖξον + " 2x Δεῦρο + " 8x Δεῦτε + " 2x Δημήτριος + " 1x Δημητρίῳ + " 3x Δημᾶς + " 36x Διά + " 2x Διάβολος + " 3x Διέλθωμεν + " 1x Διαβάς + " 1x Διαιρέσεις + " 1x Διακοσίων + " 1x Διακούσομαι + " 1x Διακόνους + " 1x Διαμαρτύρομαι + " 1x Διανοίχθητι + " 1x Διασάφησον + " 1x Διασποράν + " 1x Διασπορᾶς + " 1x Διασπορᾷ + " 1x Διατρίψας + " 31x Διδάσκαλε + " 1x Διδάσκαλον + " 6x Διδάσκαλος + " 1x Διεμερίσαντο + " 1x Διετίας + " 1x Δικαίου + " 1x Δικαιωθέντες + " 1x Διοδεύσαντες + " 1x Διονύσιος + " 1x Διοσκούροις + " 1x Διοτρεφής + " 1x Διψῶ + " 19x Διό + " 1x Διόπερ + " 1x Διός + " 1x Διώκετε + " 1x Διῆλθον + " 1x Δι’ + " 1x Δοκεῖτε + " 2x Δορκάς + " 1x Δοῦλε + " 1x Δοῦλοι + " 1x Δρουσίλλῃ + " 3x Δυνάμεθα + " 1x Δυνάμεις + " 1x Δυνάστης + " 1x Δόξα + " 1x Δόξαν + " 6x Δός + " 4x Δότε + " 1x Δύναμαι + " 1x Δύνοντος + " 1x Δώδεκα + " 1x Δώσω + " 2x Δῶρον + " 1x ΕΣΤΙΝ + " 56x Εἰ + " 1x Εἰδότες + " 4x Εἰπέ + " 2x Εἰπόν + " 9x Εἰρήνη + " 2x Εἰρήνην + " 10x Εἰς + " 1x Εἰσέλθατε + " 1x Εἰσίν + " 1x Εἰσελθόντος + " 1x Εἰσελθών + " 1x Εἰσερχόμεθα + " 3x Εἰσῆλθεν + " 1x Εἰσῆλθες + " 12x Εἴ + " 1x Εἴδομεν + " 3x Εἴπατε + " 1x Εἴρηται + " 1x Εἴτε + " 1x Εἶπαν + " 26x Εἶπεν + " 3x Εἶπον + " 1x Εἶχε + " 2x Εἷς + " 1x Εὐδία + " 3x Εὐθέως + " 1x Εὐθεῖαν + " 1x Εὐθύνατε + " 2x Εὐλογημένη + " 5x Εὐλογημένος + " 1x Εὐλογητοῦ + " 4x Εὐλογητός + " 1x Εὐνίκῃ + " 1x Εὐξαίμην + " 1x Εὐοδίαν + " 1x Εὐρακύλων + " 1x Εὐφράνθητε + " 1x Εὐφράνθητι + " 1x Εὐφράτην + " 1x Εὐφράτῃ + " 1x Εὐφραίνου + " 1x Εὐχαριστεῖν + " 3x Εὐχαριστοῦμεν + " 3x Εὐχαριστῶ + " 1x Εὑρέθην + " 1x Εὑρήκαμεν + " 1x Εὔα + " 1x Εὔβουλος + " 1x Εὔτυχος + " 1x Εὕαν + " 2x Εὖ + " 1x Εὖγε + " 1x Εὗρον + " 3x Ζαβουλών + " 1x Ζακχαῖε + " 2x Ζακχαῖος + " 1x Ζαρά + " 1x Ζαχαρία + " 2x Ζαχαρίαν + " 4x Ζαχαρίας + " 4x Ζαχαρίου + " 11x Ζεβεδαίου + " 1x Ζεβεδαῖον + " 1x Ζεύγη + " 1x Ζηλωτήν + " 1x Ζηλωτής + " 1x Ζηλώσαντες + " 1x Ζηνᾶν + " 1x Ζητήσετε + " 1x Ζητούντων + " 1x Ζοροβάβελ + " 2x Ζοροβαβέλ + " 1x Ζωῆς + " 1x Ζῶ + " 2x Ζῶν + " 1x Ζῶσαι + " 2x Η + " 2x Ηὐλήσαμεν + " 1x ΘΕΩ + " 1x Θάλασσαν + " 1x Θάμαρ + " 1x Θάνατος + " 1x Θάρα + " 4x Θάρσει + " 3x Θέλεις + " 1x Θέλετε + " 6x Θέλω + " 1x Θέσθε + " 1x Θαδδαῖον + " 1x Θαδδαῖος + " 1x Θαλάσσῃ + " 1x Θαρροῦντες + " 2x Θαρσεῖτε + " 1x Θαυμάζω + " 1x Θεέ + " 1x Θεοί + " 689x Θεοῦ + " 2x Θεσσαλονίκην + " 1x Θεσσαλονίκης + " 2x Θεσσαλονίκῃ + " 3x Θεσσαλονικέων + " 1x Θεσσαλονικέως + " 1x Θευδᾶς + " 1x Θεωρεῖς + " 2x Θεωρεῖτε + " 1x Θεωροῦντες + " 144x Θεόν + " 301x Θεός + " 1x Θεότητος + " 2x Θεόφιλε + " 1x Θεῖον + " 153x Θεῷ + " 1x Θυάτειρα + " 2x Θυατείροις + " 1x Θυατείρων + " 2x Θυγάτηρ + " 1x Θυγατέρες + " 1x Θυσίαν + " 1x Θυσίας + " 2x Θωμᾶν + " 8x Θωμᾶς + " 1x Θωμᾷ + " 5x ΙΗΣΟΥΣ + " 4x ΙΟΥΔΑΙΩΝ + " 2x ΚΑΙ + " 3x ΚΥΡΙΟΣ + " 1x ΚΥΡΙΩΝ + " 1x Κάθημαι + " 5x Κάθου + " 1x Κάλεσον + " 1x Κάρπῳ + " 3x Κάϊν + " 1x Κέδρων + " 400x Καί + " 8x Καίσαρα + " 9x Καίσαρι + " 12x Καίσαρος + " 1x Καθάπερ + " 2x Καθίσατε + " 2x Καθεύδετε + " 2x Καθημένου + " 3x Καθώς + " 1x Καινήν + " 1x Καιρῷ + " 5x Καισάριαν + " 5x Καισαρίαν + " 6x Καισαρίας + " 1x Καισαρίᾳ + " 1x Κακοπαθεῖ + " 1x Κακούς + " 1x Καλέσω + " 1x Καλούς + " 1x Καλόν + " 1x Καλύψατε + " 6x Καλῶς + " 3x Κανά + " 1x Καναναῖον + " 1x Καναναῖος + " 1x Κανδάκης + " 1x Κανᾶ + " 1x Καππαδοκίαν + " 1x Καππαδοκίας + " 8x Κατά + " 1x Κατέλιπον + " 1x Κατήντησεν + " 1x Καταβάντος + " 1x Κατακλίνατε + " 1x Κατακολουθήσασαι + " 1x Κατεπόθη + " 1x Κατ’ + " 1x Καυχάσθω + " 1x Καυχᾶσθαι + " 16x Καφαρναούμ + " 4x Καϊάφα + " 2x Καϊάφαν + " 3x Καϊάφας + " 2x Καϊνάμ + " 1x Καύσων + " 1x Κείς + " 2x Κενχρεαῖς + " 1x Κεφάλαιον + " 1x Κεφαλήν + " 1x Κηφᾶ + " 1x Κηφᾶν + " 5x Κηφᾶς + " 2x Κηφᾷ + " 3x Κιλικίαν + " 5x Κιλικίας + " 1x Κλήμεντος + " 1x Κλαυδία + " 1x Κλαυδίου + " 1x Κλαύδιον + " 1x Κλαύδιος + " 1x Κλαῦδα + " 1x Κλεοπᾶς + " 1x Κλωπᾶ + " 1x Κνίδον + " 1x Κοινωνείτω + " 1x Κολοσσαῖς + " 1x Κορίνθιοι + " 4x Κορίνθῳ + " 1x Κορβᾶν + " 1x Κορινθίων + " 2x Κορνήλιε + " 5x Κορνήλιος + " 1x Κορνηλίου + " 1x Κούαρτος + " 1x Κρήσκης + " 2x Κρήτην + " 2x Κρήτης + " 1x Κρήτῃ + " 1x Κρίσπον + " 1x Κρίσπος + " 1x Κρανίον + " 2x Κρανίου + " 1x Κρατοῦντος + " 1x Κρινεῖ + " 2x Κριτής + " 1x Κριτῇ + " 2x Κρῆτες + " 1x Κτίσαντα + " 1x Κτίστῃ + " 1x Κυπρίῳ + " 1x Κυρήνην + " 227x Κυρίου + " 96x Κυρίῳ + " 1x Κυρηνίου + " 1x Κυρηναίων + " 1x Κυρηναῖοι + " 3x Κυρηναῖον + " 1x Κυρηναῖος + " 1x Κωσάμ + " 1x Κόρε + " 2x Κόρινθον + " 1x Κύπριοι + " 1x Κύπριος + " 4x Κύπρον + " 1x Κύπρου + " 112x Κύριε + " 1x Κύριοι + " 65x Κύριον + " 142x Κύριος + " 1x Κύων + " 4x Κἀγώ + " 1x Κἀκεῖ + " 2x Κἀκεῖθεν + " 1x Κἀμέ + " 3x Κἄν + " 1x Κῶ + " 1x Λάβε + " 6x Λάβετε + " 1x Λάζαρε + " 6x Λάζαρον + " 8x Λάζαρος + " 1x Λάμεχ + " 1x Λέγε + " 7x Λέγει + " 1x Λέγετε + " 1x Λέγουσιν + " 10x Λέγω + " 1x Λέων + " 3x Λίθον + " 1x Λίνος + " 1x Λαλούντων + " 1x Λαοδικέων + " 1x Λαοδικίαν + " 1x Λαοδικίας + " 4x Λαοδικίᾳ + " 1x Λασαία + " 2x Λεγιών + " 1x Λειτουργούντων + " 4x Λευεί + " 2x Λευείν + " 2x Λευείς + " 1x Λευείτας + " 2x Λευείτης + " 1x Λευειτικῆς + " 1x Λιβερτίνων + " 1x Λιβύης + " 1x Λιθόστρωτον + " 1x Λιμένας + " 1x Λογίζομαι + " 2x Λοιπόν + " 3x Λουκᾶς + " 2x Λούκιος + " 1x Λυδία + " 1x Λυδίαν + " 1x Λυκίας + " 1x Λυκαονίας + " 1x Λυκαονιστί + " 2x Λυσίας + " 1x Λυσανίου + " 1x Λωΐδι + " 5x Λόγος + " 1x Λόγου + " 2x Λύδδα + " 1x Λύδδας + " 2x Λύσατε + " 3x Λύστραν + " 3x Λύστροις + " 4x Λώτ + " 2x Λῦσον + " 1x ΜΕΓΑΛΗ + " 1x ΜΗΤΗΡ + " 1x Μάλχος + " 10x Μάρθα + " 2x Μάρθαν + " 1x Μάρθας + " 3x Μάρκον + " 1x Μάρκος + " 1x Μάρκου + " 1x Μέλλει + " 2x Μέλλων + " 80x Μή + " 1x Μήτηρ + " 9x Μήτι + " 1x Μίλητον + " 1x Μαάθ + " 2x Μαίνῃ + " 1x Μαγαδάν + " 11x Μαγδαληνή + " 1x Μαγδαληνῇ + " 1x Μαγώγ + " 1x Μαδιάμ + " 2x Μαθθάν + " 1x Μαθθάτ + " 2x Μαθθίαν + " 3x Μαθθαῖον + " 2x Μαθθαῖος + " 1x Μαθουσαλά + " 1x Μακάριαι + " 6x Μακάριοι + " 1x Μακάριον + " 4x Μακάριος + " 1x Μακαρία + " 1x Μακεδονία + " 11x Μακεδονίαν + " 7x Μακεδονίας + " 3x Μακεδονίᾳ + " 1x Μακεδόνας + " 1x Μακεδόνες + " 1x Μακεδόνος + " 1x Μακεδόσιν + " 1x Μακεδών + " 1x Μακροθυμήσατε + " 2x Μακροθύμησον + " 1x Μαλελεήλ + " 1x Μαναήν + " 2x Μανασσῆ + " 1x Μανασσῆς + " 18x Μαρία + " 1x Μαρίαν + " 7x Μαρίας + " 1x Μαρίᾳ + " 26x Μαριάμ + " 1x Μαριάν + " 1x Μαρτυρεῖ + " 1x Μαρτυρῶ + " 1x Ματθάτ + " 1x Ματταθά + " 2x Ματταθίου + " 1x Μεγάλα + " 3x Μεγάλη + " 2x Μεγαλωσύνης + " 1x Μεγαλύνει + " 1x Μεθ’ + " 1x Μελίτη + " 1x Μελεά + " 2x Μελχεί + " 8x Μελχισέδεκ + " 1x Μεννά + " 1x Μενοῦν + " 1x Μεσοποταμίαν + " 1x Μεσοποταμίᾳ + " 1x Μεσσίαν + " 1x Μεσσίας + " 30x Μετά + " 1x Μετάβα + " 1x Μετάβηθι + " 1x Μετανοήσατε + " 2x Μετανοεῖτε + " 1x Μετανοῶ + " 1x Μεῖνον + " 1x Μηδέ + " 4x Μηδέν + " 1x Μηδένα + " 2x Μηδαμῶς + " 3x Μηδείς + " 2x Μηδενί + " 3x Μηκέτι + " 3x Μικρόν + " 1x Μιλήτου + " 1x Μιλήτῳ + " 1x Μιτυλήνην + " 2x Μιχαήλ + " 1x Μνάσωνι + " 1x Μνημονεύετε + " 1x Μνημόνευε + " 1x Μολόχ + " 2x Μυσίαν + " 1x Μωρέ + " 1x Μωσῆς + " 1x Μωϋσέα + " 23x Μωϋσέως + " 8x Μωϋσεῖ + " 4x Μωϋσῆν + " 42x Μωϋσῆς + " 1x Μωϋσῇ + " 1x Μόνον + " 1x Μύρρα + " 1x Μᾶρκον + " 2x Μᾶρκος + " 1x Μῆδοι + " 1x ΝΑΖΩΡΑΙΟΣ + " 1x Νέαν + " 1x Νήψατε + " 1x Νίγερ + " 1x Ναΐν + " 19x Ναί + " 3x Ναασσών + " 1x Ναγγαί + " 2x Ναζαρά + " 6x Ναζαρέθ + " 4x Ναζαρέτ + " 2x Ναζαρηνέ + " 2x Ναζαρηνοῦ + " 1x Ναζαρηνόν + " 1x Ναζαρηνός + " 4x Ναζωραίου + " 1x Ναζωραίων + " 3x Ναζωραῖον + " 4x Ναζωραῖος + " 1x Ναθάμ + " 6x Ναθαναήλ + " 1x Ναιμάν + " 1x Ναούμ + " 1x Ναρκίσσου + " 1x Ναχώρ + " 1x Νεανίσκε + " 1x Νεκρώσατε + " 3x Νεφθαλείμ + " 1x Νηρέα + " 1x Νηρεί + " 1x Νηστείαν + " 1x Νικάνορα + " 2x Νικολαϊτῶν + " 5x Νικόδημος + " 1x Νικόλαον + " 1x Νικόπολιν + " 1x Νινευείταις + " 2x Νινευεῖται + " 1x Νομίζω + " 2x Νυνί + " 1x Νύμφαν + " 6x Νῦν + " 8x Νῶε + " 1x Ξένων + " 5x Ο + " 2x ΟΥΤΟΣ + " 43x Οἱ + " 5x Οἴδαμεν + " 4x Οἴδατε + " 9x Οἶδα + " 2x Οἶδας + " 1x Οἶνον + " 46x Οὐ + " 1x Οὐά + " 18x Οὐαί + " 6x Οὐδέ + " 5x Οὐδέν + " 5x Οὐδέποτε + " 10x Οὐδείς + " 1x Οὐθενός + " 60x Οὐκ + " 1x Οὐκέτι + " 1x Οὐκοῦν + " 1x Οὐρίου + " 1x Οὐρβανόν + " 7x Οὐχ + " 9x Οὐχί + " 8x Οὔ + " 2x Οὔπω + " 1x Οὔσης + " 4x Οὔτε + " 1x Οὕς + " 14x Οὕτως + " 12x Οὗτοι + " 28x Οὗτος + " 1x ΠΟΡΝΩΝ + " 1x Πάγου + " 1x Πάλαι + " 9x Πάλιν + " 5x Πάντα + " 4x Πάντες + " 1x Πάντοτε + " 2x Πάντων + " 2x Πάντως + " 1x Πάρθοι + " 1x Πάσχα + " 1x Πάταρα + " 19x Πάτερ + " 1x Πάτμῳ + " 2x Πάφου + " 3x Πέμψον + " 1x Πέντε + " 1x Πέπεισμαι + " 1x Πέργαμον + " 1x Πέργην + " 1x Πέργης + " 1x Πέργῃ + " 1x Πέσατε + " 1x Πέσετε + " 3x Πέτρε + " 26x Πέτρον + " 100x Πέτρος + " 12x Πέτρου + " 15x Πέτρῳ + " 1x Πίετε + " 18x Πίστει + " 1x Πίστευε + " 1x Πίστευσον + " 2x Παιδία + " 1x Παιδός + " 3x Παμφυλίαν + " 2x Παμφυλίας + " 2x Παντοκράτορος + " 8x Παντοκράτωρ + " 1x Παντός + " 4x Παρά + " 1x Παράγγελλε + " 1x Παράδεισον + " 2x Παράκλητον + " 3x Παράκλητος + " 1x Παρέλαβον + " 1x Παραγγέλλομεν + " 1x Παραγγέλλω + " 1x Παραγγελίᾳ + " 1x Παραγενόμενοι + " 2x Παραγενόμενος + " 2x Παραδείσῳ + " 2x Παρακαλοῦμεν + " 8x Παρακαλῶ + " 1x Παραλαβών + " 3x Παρασκευή + " 2x Παρασκευήν + " 1x Παρασκευῆς + " 1x Παρεγένετο + " 1x Παρμενᾶν + " 1x Παρῆσαν + " 2x Πατάξω + " 55x Πατέρα + " 92x Πατήρ + " 23x Πατρί + " 1x Πατρόβαν + " 74x Πατρός + " 30x Παύλου + " 17x Παύλῳ + " 3x Παῖδα + " 2x Παῦλε + " 30x Παῦλον + " 79x Παῦλος + " 1x Πείθεσθε + " 1x Πειθαρχεῖν + " 3x Πειλάτου + " 6x Πειλάτῳ + " 7x Πειλᾶτον + " 39x Πειλᾶτος + " 1x Πεντήκοντα + " 3x Πεντηκοστῆς + " 1x Πεπείσμεθα + " 1x Πεπλήρωται + " 1x Πεποίθησιν + " 1x Πεποιθώς + " 17x Περί + " 2x Περίλυπος + " 1x Περγάμῳ + " 1x Περιβαλοῦ + " 1x Περιπατῶν + " 1x Περσίδα + " 1x Πηλόν + " 2x Πισιδίαν + " 1x Πιστεύετε + " 2x Πιστεύω + " 5x Πιστός + " 1x Πλήν + " 1x Πλανᾶσθε + " 1x Πλούσιος + " 1x Πνευμάτων + " 3x Πνεύματα + " 50x Πνεύματι + " 79x Πνεύματος + " 96x Πνεῦμα + " 1x Ποία + " 1x Ποίας + " 3x Ποίησον + " 1x Ποίμαινε + " 1x Ποιήσατε + " 1x Ποιήσωμεν + " 1x Ποιμένα + " 5x Πολλά + " 4x Πολλοί + " 3x Πολλῆς + " 1x Πολυμερῶς + " 1x Πονηρέ + " 2x Ποντίου + " 1x Ποντικόν + " 1x Ποπλίου + " 1x Ποπλίῳ + " 7x Πορευθέντες + " 1x Πορευομένων + " 3x Πορεύεσθε + " 3x Πορεύθητι + " 4x Πορεύου + " 1x Πορνεία + " 1x Ποταπός + " 1x Ποτιόλους + " 1x Πούδης + " 1x Ποῖα + " 16x Ποῦ + " 3x Πρίν + " 1x Πρίσκα + " 2x Πρίσκαν + " 2x Πρίσκιλλα + " 1x Πρίσκιλλαν + " 1x Πραγματεύσασθε + " 1x Πραιτώριον + " 1x Πρεσβυτέρους + " 1x Πρεσβυτέρῳ + " 1x Προάγει + " 1x Προορώμην + " 1x Προσέφερον + " 6x Προσέχετε + " 1x Προσδοκῶντος + " 1x Προσελθόντες + " 1x Προσευχόμενοι + " 2x Προσεύχεσθε + " 1x Προσηνέγκατε + " 1x Προσκυνήσεις + " 3x Προφήτευσον + " 2x Προφήτην + " 2x Προφήτης + " 1x Πρωΐ + " 1x Πρωΐας + " 4x Πρό + " 2x Πρός + " 1x Πρόσελθε + " 1x Πρόσθες + " 1x Πρόχορον + " 1x Πρώτη + " 1x Πρῶτον + " 1x Πτολεμαΐδα + " 1x Πωλήσατε + " 8x Πόθεν + " 1x Πόλιν + " 1x Πόντιος + " 1x Πόντον + " 1x Πόντου + " 1x Πόρκιον + " 1x Πόσοι + " 1x Πόσον + " 1x Πόσος + " 3x Πόσους + " 1x Πύθωνα + " 1x Πύλῃ + " 1x Πύρρου + " 3x Πᾶν + " 14x Πᾶς + " 4x Πᾶσα + " 1x Πᾶσαι + " 1x Πᾶσαν + " 1x Πῦρ + " 18x Πῶς + " 1x Σάββατον + " 1x Σάμον + " 1x Σάρδεις + " 2x Σάρδεσιν + " 1x Σάρεπτα + " 1x Σάρρα + " 1x Σάρρας + " 2x Σάρρᾳ + " 1x Σήθ + " 1x Σήμ + " 9x Σήμερον + " 36x Σίμων + " 16x Σίμωνα + " 7x Σίμωνι + " 16x Σίμωνος + " 2x Σαβαώθ + " 1x Σαδδουκαίους + " 8x Σαδδουκαίων + " 5x Σαδδουκαῖοι + " 2x Σαδώκ + " 2x Σαλά + " 2x Σαλήμ + " 3x Σαλαθιήλ + " 1x Σαλαμῖνι + " 1x Σαλείμ + " 2x Σαλμών + " 1x Σαλμώνην + " 2x Σαλώμη + " 1x Σαμάρια + " 1x Σαμάριαν + " 8x Σαμαρίας + " 1x Σαμαρίᾳ + " 1x Σαμαρείταις + " 3x Σαμαρείτης + " 1x Σαμαρείτιδος + " 4x Σαμαρειτῶν + " 1x Σαμαρεῖται + " 1x Σαμαρεῖτις + " 1x Σαμοθρᾴκην + " 3x Σαμουήλ + " 1x Σαμψών + " 9x Σαούλ + " 1x Σαπφείρῃ + " 1x Σαρῶνα + " 13x Σατανᾶ + " 4x Σατανᾶν + " 17x Σατανᾶς + " 2x Σατανᾷ + " 2x Σαύλου + " 1x Σαύλῳ + " 4x Σαῦλον + " 8x Σαῦλος + " 1x Σεβαστοῦ + " 1x Σεβαστόν + " 1x Σεβαστῆς + " 1x Σεκοῦνδος + " 1x Σελεύκιαν + " 1x Σεμεείν + " 1x Σεργίῳ + " 1x Σερούχ + " 1x Σιδωνίας + " 1x Σιδωνίοις + " 2x Σιδῶνα + " 4x Σιδῶνι + " 3x Σιδῶνος + " 2x Σιλουανοῦ + " 2x Σιλουανός + " 3x Σιλωάμ + " 6x Σιλᾶν + " 4x Σιλᾶς + " 2x Σιλᾷ + " 4x Σινᾶ + " 7x Σιών + " 1x Σιώπα + " 1x Σκευᾶ + " 1x Σκιάν + " 1x Σκληροτράχηλοι + " 1x Σκληρός + " 1x Σκύθης + " 1x Σμύρναν + " 1x Σμύρνῃ + " 3x Σοί + " 2x Σοδόμοις + " 4x Σοδόμων + " 3x Σολομών + " 1x Σολομῶν + " 1x Σολομῶνα + " 5x Σολομῶνος + " 2x Σολομῶντος + " 1x Σουσάννα + " 1x Σοφίαν + " 1x Σπέρμα + " 2x Σπανίαν + " 1x Σπεῦσον + " 2x Σπλαγχνίζομαι + " 1x Σπουδάσωμεν + " 2x Σπούδασον + " 1x Στάχυν + " 3x Στέφανον + " 1x Στέφανος + " 2x Σταθείς + " 2x Σταυρωθήτω + " 1x Σταύρου + " 3x Σταύρωσον + " 1x Στεφάνου + " 2x Στεφάνῳ + " 3x Στεφανᾶ + " 1x Στοϊκῶν + " 1x Συλλέξατε + " 1x Συλλαβόντες + " 7x Συμεών + " 1x Συνήγαγον + " 1x Συνήκατε + " 1x Συνήχθησαν + " 1x Συνίστημι + " 1x Συναγάγετε + " 1x Συνεπορεύοντο + " 1x Συνεργοῦντες + " 1x Συνερχομένων + " 1x Συνηγμένων + " 1x Συνιόντος + " 1x Συνκαλεσάμενος + " 1x Συνμιμηταί + " 1x Συντύχην + " 2x Συνχάρητε + " 6x Συρίαν + " 2x Συρίας + " 1x Συρακούσας + " 1x Συροφοινίκισσα + " 1x Συστρεφομένων + " 1x Συχάρ + " 2x Συχέμ + " 1x Σφράγισον + " 1x Σχίσμα + " 1x Σωσίπατρος + " 1x Σωσθένην + " 1x Σωσθένης + " 3x Σωτήρ + " 4x Σωτῆρα + " 2x Σωτῆρι + " 14x Σωτῆρος + " 3x Σόδομα + " 44x Σύ + " 1x Σύρος + " 1x Σύρτιν + " 1x Σώθητε + " 1x Σώπατρος + " 1x ΤΗΣ + " 6x ΤΩΝ + " 9x Τά + " 8x Τάδε + " 1x Τάς + " 1x Τέθεικα + " 1x Τέθνηκεν + " 1x Τέκνα + " 5x Τέκνον + " 1x Τέρτιος + " 1x Τέρτυλλος + " 5x Τήν + " 112x Τί + " 5x Τίμα + " 1x Τίμιος + " 1x Τίμωνα + " 8x Τίνα + " 1x Τίνες + " 6x Τίνι + " 3x Τίνος + " 36x Τίς + " 4x Τίτον + " 3x Τίτος + " 5x Τίτου + " 1x Τίτῳ + " 2x Ταβειθά + " 1x Ταβερνῶν + " 1x Ταλαίπωρος + " 1x Ταλιθά + " 1x Ταξάμενοι + " 1x Ταπεινώθητε + " 1x Ταρσέα + " 1x Ταρσεύς + " 2x Ταρσόν + " 1x Ταρσῷ + " 1x Ταχύ + " 4x Ταύτην + " 31x Ταῦτα + " 1x Τεθέαμαι + " 4x Τεκνία + " 1x Τελευτήσαντος + " 1x Τερτύλλου + " 1x Τεσσαρεσκαιδεκάτην + " 1x Τεσσεράκοντα + " 1x Τετέλεσται + " 1x Τετύφλωκεν + " 1x Τιβερίου + " 3x Τιβεριάδος + " 1x Τιμαίου + " 2x Τιμοθέου + " 2x Τιμοθέῳ + " 2x Τιμόθεε + " 6x Τιμόθεον + " 12x Τιμόθεος + " 1x Τινές + " 1x Τινῶν + " 1x Τιτίου + " 1x Τοίνυν + " 1x Τοιγαροῦν + " 1x Τοιοῦτος + " 1x Τολμᾷ + " 1x Τοσαῦτα + " 1x Τοσοῦτον + " 2x Τούς + " 3x Τούτου + " 1x Τούτους + " 3x Τούτων + " 2x Τοῖς + " 10x Τοῦ + " 25x Τοῦτο + " 3x Τοῦτον + " 1x Τρίτον + " 1x Τραχωνίτιδος + " 1x Τριῶν + " 1x Τρυφῶσαν + " 2x Τρόφιμον + " 1x Τρόφιμος + " 1x Τρύφαιναν + " 3x Τρῳάδα + " 2x Τρῳάδι + " 1x Τρῳάδος + " 1x Τυράννου + " 1x Τυρίοις + " 2x Τυχικόν + " 3x Τυχικός + " 25x Τό + " 12x Τόν + " 37x Τότε + " 1x Τύπτειν + " 2x Τύρον + " 5x Τύρου + " 4x Τύρῳ + " 16x Τῇ + " 4x Τῶν + " 12x Τῷ + " 7x Υἱέ + " 1x Υἱοί + " 32x Υἱοῦ + " 51x Υἱόν + " 106x Υἱός + " 10x Υἱῷ + " 1x Φάλεκ + " 1x Φάντασμα + " 1x Φέρε + " 1x Φέρετε + " 1x Φήλικα + " 1x Φήλικι + " 1x Φήλικος + " 1x Φήστου + " 1x Φήστῳ + " 2x Φίλε + " 1x Φίλιππε + " 9x Φίλιππον + " 14x Φίλιππος + " 1x Φανουήλ + " 3x Φαρές + " 5x Φαραώ + " 2x Φαρισαίοις + " 2x Φαρισαίου + " 5x Φαρισαίους + " 29x Φαρισαίων + " 1x Φαρισαῖε + " 50x Φαρισαῖοι + " 9x Φαρισαῖος + " 1x Φιλήμονι + " 2x Φιλίπποις + " 7x Φιλίππου + " 1x Φιλίππους + " 1x Φιλίππων + " 5x Φιλίππῳ + " 1x Φιλαδελφίαν + " 1x Φιλαδελφίᾳ + " 1x Φιλεῖς + " 1x Φιλητός + " 1x Φιλιππήσιοι + " 1x Φιλόλογον + " 2x Φιμώθητι + " 1x Φλέγοντα + " 1x Φοίβην + " 1x Φοίνικα + " 1x Φοβήθητε + " 2x Φοινίκην + " 1x Φοινίκης + " 1x Φορτουνάτου + " 1x Φράσον + " 3x Φρυγίαν + " 3x Φωνή + " 1x Φωνήσατε + " 1x Φόρου + " 1x Φύγελος + " 6x Φῆλιξ + " 1x Φῆστε + " 3x Φῆστον + " 7x Φῆστος + " 1x ΧΡΙΣΤΟΣ + " 2x Χάριν + " 2x Χάρις + " 1x Χήρα + " 1x Χήρας + " 1x Χίου + " 2x Χαίρετε + " 1x Χαλδαίων + " 2x Χανάαν + " 1x Χαναναία + " 2x Χαρράν + " 5x Χαῖρε + " 1x Χερουβείν + " 1x Χεῖρας + " 1x Χλόης + " 2x Χοραζείν + " 1x Χουζᾶ + " 1x Χοῖνιξ + " 2x Χρείαν + " 1x Χριστέ + " 1x Χριστιανούς + " 1x Χριστιανόν + " 1x Χριστιανός + " 249x Χριστοῦ + " 64x Χριστόν + " 111x Χριστός + " 103x Χριστῷ + " 2x Χρονίζει + " 1x Χωρήσατε + " 1x Χωρίον + " 1x Ψαλμῶν + " 1x Ψυχή + " 1x αἰγείοις + " 6x αἰγιαλόν + " 1x αἰδοῦς + " 1x αἰνέσεως + " 1x αἰνίγματι + " 1x αἰνεῖν + " 1x αἰνούντων + " 1x αἰνοῦντα + " 2x αἰνοῦντες + " 1x αἰνῶν + " 1x αἰρόμενον + " 1x αἰσθήσει + " 1x αἰσθητήρια + " 1x αἰσχροκερδεῖς + " 1x αἰσχροκερδῆ + " 1x αἰσχροκερδῶς + " 1x αἰσχρολογίαν + " 1x αἰσχροῦ + " 3x αἰσχρόν + " 1x αἰσχρότης + " 1x αἰσχυνέσθω + " 2x αἰσχυνθήσομαι + " 1x αἰσχυνθῶμεν + " 1x αἰσχύνας + " 1x αἰσχύνη + " 3x αἰσχύνης + " 1x αἰσχύνομαι + " 1x αἰσχύνῃ + " 2x αἰτήματα + " 2x αἰτήσας + " 1x αἰτήσασθε + " 5x αἰτήσει + " 1x αἰτήσεσθε + " 1x αἰτήσηται + " 5x αἰτήσητε + " 1x αἰτήσουσιν + " 1x αἰτήσωμαι + " 1x αἰτήσωμεν + " 2x αἰτήσωνται + " 1x αἰτήσῃ + " 1x αἰτήσῃς + " 2x αἰτία + " 16x αἰτίαν + " 2x αἰτίας + " 1x αἰτίου + " 2x αἰτείτω + " 1x αἰτεῖν + " 1x αἰτεῖς + " 2x αἰτεῖσθαι + " 4x αἰτεῖσθε + " 3x αἰτεῖτε + " 1x αἰτιώματα + " 1x αἰτούμεθα + " 4x αἰτούμενοι + " 1x αἰτοῦμαι + " 3x αἰτοῦντι + " 1x αἰτοῦσα + " 3x αἰτοῦσιν + " 2x αἰτώμεθα + " 1x αἰτῆσαι + " 1x αἰτῶμεν + " 2x αἰτῶν + " 2x αἰφνίδιος + " 3x αἰχμαλωσίαν + " 1x αἰχμαλωτίζοντα + " 2x αἰχμαλωτίζοντες + " 1x αἰχμαλωτισθήσονται + " 1x αἰχμαλώτοις + " 2x αἰωνίαν + " 1x αἰωνίοις + " 15x αἰωνίου + " 1x αἰωνίους + " 2x αἰωνίων + " 1x αἰώνια + " 45x αἰώνιον + " 4x αἰώνιος + " 29x αἰώνων + " 31x αἰῶνα + " 30x αἰῶνας + " 8x αἰῶνι + " 25x αἰῶνος + " 1x αἰῶσιν + " 139x αἱ + " 1x αἱμάτων + " 1x αἱματεκχυσίας + " 1x αἱμορροοῦσα + " 3x αἱρέσεις + " 3x αἱρέσεως + " 1x αἱρήσομαι + " 1x αἱρετικόν + " 7x αἴρει + " 2x αἴρεις + " 1x αἴρεται + " 1x αἴρετε + " 2x αἴροντος + " 2x αἴρων + " 1x αἴρωσιν + " 1x αἴσθωνται + " 1x αἴτημα + " 3x αἴτιον + " 1x αἴτιος + " 6x αἵ + " 20x αἵματι + " 33x αἵματος + " 2x αἵρεσιν + " 1x αἵρεσις + " 10x αἵτινες + " 2x αἶνον + " 43x αἷμα + " 14x αἷς + " 1x αὐγάσαι + " 1x αὐγῆς + " 1x αὐθάδεις + " 1x αὐθάδη + " 1x αὐθαίρετοι + " 1x αὐθαίρετος + " 1x αὐθεντεῖν + " 6x αὐλήν + " 1x αὐλητάς + " 1x αὐλητῶν + " 1x αὐλούμενον + " 1x αὐλός + " 4x αὐλῆς + " 2x αὐλῇ + " 1x αὐξάνειν + " 1x αὐξάνετε + " 1x αὐξάνουσιν + " 1x αὐξάνων + " 1x αὐξήσει + " 1x αὐξήσωμεν + " 1x αὐξανομένης + " 1x αὐξανόμενα + " 1x αὐξανόμενοι + " 1x αὐξανόμενον + " 1x αὐξηθῆτε + " 1x αὐξηθῇ + " 2x αὐστηρός + " 56x αὐτά + " 1x αὐτάρκειαν + " 1x αὐτάρκης + " 12x αὐτάς + " 10x αὐτή + " 135x αὐτήν + " 1x αὐταρκείας + " 18x αὐταῖς + " 84x αὐτοί + " 1x αὐτοκατάκριτος + " 2x αὐτομάτη + " 356x αὐτούς + " 556x αὐτοῖς + " 1411x αὐτοῦ + " 106x αὐτό + " 954x αὐτόν + " 1x αὐτόπται + " 157x αὐτός + " 1x αὐτόχειρες + " 169x αὐτῆς + " 112x αὐτῇ + " 557x αὐτῶν + " 849x αὐτῷ + " 1x αὐχεῖ + " 1x αὐχμηρῷ + " 4x αὑτούς + " 3x αὑτόν + " 4x αὑτῷ + " 2x αὔξει + " 2x αὔξησιν + " 13x αὔριον + " 71x αὕτη + " 3x αὗται + " 1x βάθη + " 6x βάθος + " 1x βάθους + " 8x βάλε + " 1x βάλητε + " 6x βάλλει + " 1x βάλλειν + " 3x βάλλεται + " 1x βάλλομεν + " 2x βάλλοντας + " 2x βάλλοντες + " 1x βάλλουσαν + " 4x βάλλουσιν + " 2x βάλλω + " 3x βάλω + " 1x βάλωσιν + " 2x βάλῃ + " 1x βάπτισαι + " 17x βάπτισμα + " 2x βάρβαροι + " 3x βάρβαρος + " 1x βάρει + " 1x βάρη + " 4x βάρος + " 1x βάσεις + " 2x βάτου + " 1x βάτους + " 1x βάτραχοι + " 1x βάτῳ + " 1x βάψας + " 1x βάψω + " 1x βάψῃ + " 1x βέβαιος + " 1x βέβηλος + " 2x βέβληται + " 1x βέλη + " 1x βέλτιον + " 1x βήματι + " 9x βήματος + " 1x βήρυλλος + " 1x βίαν + " 2x βίας + " 1x βίβλου + " 1x βίβλους + " 7x βίβλῳ + " 6x βίον + " 3x βίου + " 1x βίωσιν + " 1x βαΐα + " 1x βαθέα + " 1x βαθέως + " 1x βαθεῖ + " 1x βαθμόν + " 1x βαθύ + " 1x βαλέτω + " 1x βαλεῖ + " 8x βαλεῖν + " 1x βαλλάντια + " 2x βαλλάντιον + " 1x βαλλαντίου + " 1x βαλλόμενα + " 2x βαλλόμενον + " 2x βαλλόντων + " 1x βαλοῦσα + " 3x βαλοῦσιν + " 2x βαπτίζει + " 2x βαπτίζειν + " 1x βαπτίζεις + " 2x βαπτίζομαι + " 1x βαπτίζονται + " 1x βαπτίζοντες + " 3x βαπτίζω + " 6x βαπτίζων + " 3x βαπτίσει + " 1x βαπτίσματι + " 2x βαπτίσματος + " 1x βαπτιζόμενοι + " 2x βαπτισθέντες + " 1x βαπτισθέντος + " 3x βαπτισθήσεσθε + " 1x βαπτισθήτω + " 3x βαπτισθείς + " 10x βαπτισθῆναι + " 1x βαπτισμούς + " 1x βαπτισμοῖς + " 1x βαπτισμῶν + " 1x βαπτιστής + " 2x βαρέα + " 2x βαρέως + " 1x βαρείσθω + " 2x βαρεῖαι + " 1x βαρεῖς + " 1x βαρηθῶσιν + " 1x βαρούμενοι + " 1x βαρυτίμου + " 1x βαρύτερα + " 2x βασάνοις + " 1x βασάνου + " 1x βασίλειον + " 3x βασίλισσα + " 1x βασανίσαι + " 2x βασανίσῃς + " 1x βασανιζομένη + " 1x βασανιζομένους + " 1x βασανιζόμενον + " 1x βασανιζόμενος + " 1x βασανισθήσεται + " 2x βασανισθήσονται + " 3x βασανισμοῦ + " 1x βασανισμόν + " 2x βασανισμός + " 1x βασανισταῖς + " 11x βασιλέα + " 10x βασιλέων + " 8x βασιλέως + " 1x βασιλίσσης + " 55x βασιλεία + " 61x βασιλείαν + " 25x βασιλείας + " 1x βασιλείοις + " 21x βασιλείᾳ + " 1x βασιλευέτω + " 1x βασιλευόντων + " 1x βασιλεύει + " 1x βασιλεύειν + " 22x βασιλεύς + " 2x βασιλεύσει + " 4x βασιλεύσουσιν + " 1x βασιλεύσῃ + " 5x βασιλεῖ + " 16x βασιλεῖς + " 7x βασιλεῦ + " 2x βασιλεῦσαι + " 1x βασιλεῦσιν + " 1x βασιλικήν + " 1x βασιλικόν + " 2x βασιλικός + " 1x βασιλικῆς + " 1x βαστάζει + " 2x βαστάζειν + " 1x βαστάζεις + " 1x βαστάζεσθαι + " 2x βαστάζετε + " 1x βαστάζοντες + " 1x βαστάζοντος + " 1x βαστάζω + " 3x βαστάζων + " 4x βαστάσαι + " 1x βαστάσασα + " 1x βαστάσασι + " 2x βαστάσει + " 1x βατταλογήσητε + " 4x βδέλυγμα + " 1x βδελυγμάτων + " 1x βδελυκτοί + " 1x βδελυσσόμενος + " 1x βεβήλοις + " 3x βεβήλους + " 2x βεβαία + " 5x βεβαίαν + " 1x βεβαίωσιν + " 1x βεβαιούμενοι + " 1x βεβαιοῦντος + " 1x βεβαιοῦσθαι + " 1x βεβαιότερον + " 2x βεβαιώσει + " 1x βεβαιῶν + " 1x βεβαιῶσαι + " 1x βεβαμμένον + " 1x βεβαπτισμένοι + " 2x βεβαρημένοι + " 1x βεβηλοῦσιν + " 1x βεβηλῶσαι + " 1x βεβληκότος + " 1x βεβλημένην + " 3x βεβλημένον + " 1x βεβλημένος + " 1x βεβρωκόσιν + " 1x βελόνης + " 2x βιάζεται + " 1x βιαίας + " 1x βιασταί + " 3x βιβλία + " 1x βιβλίοις + " 18x βιβλίον + " 6x βιβλίου + " 6x βιβλίῳ + " 3x βιβλαρίδιον + " 2x βιωτικά + " 1x βιωτικαῖς + " 1x βιῶσαι + " 1x βλάσφημα + " 1x βλάσφημοι + " 2x βλάσφημον + " 1x βλάψαν + " 1x βλάψῃ + " 1x βλέμματι + " 10x βλέπει + " 10x βλέπειν + " 7x βλέπεις + " 21x βλέπετε + " 4x βλέπομεν + " 1x βλέποντα + " 2x βλέποντας + " 12x βλέποντες + " 1x βλέπουσι + " 4x βλέπουσιν + " 4x βλέπω + " 12x βλέπων + " 7x βλέπωσιν + " 1x βλέπῃ + " 1x βλέπῃς + " 2x βλέψετε + " 2x βλήθητι + " 1x βλαβεράς + " 1x βλαστήσασα + " 1x βλαστᾷ + " 1x βλασφημήσαντι + " 1x βλασφημήσωσιν + " 1x βλασφημήσῃ + " 4x βλασφημία + " 3x βλασφημίαι + " 3x βλασφημίαν + " 8x βλασφημίας + " 1x βλασφημείσθω + " 2x βλασφημεῖ + " 3x βλασφημεῖν + " 1x βλασφημεῖται + " 1x βλασφημηθήσεται + " 1x βλασφημούμεθα + " 1x βλασφημούντων + " 1x βλασφημοῦμαι + " 1x βλασφημοῦντας + " 5x βλασφημοῦντες + " 3x βλασφημοῦσιν + " 1x βλασφημῆσαι + " 2x βλασφημῆται + " 2x βλεπέτω + " 1x βλεπομένη + " 2x βλεπομένων + " 4x βλεπόμενα + " 1x βλεπόμενον + " 2x βλεπόντων + " 1x βληθέν + " 1x βληθήσεται + " 1x βληθήσῃ + " 1x βληθείς + " 1x βληθείσῃ + " 4x βληθῆναι + " 1x βληθῇ + " 1x βλητέον + " 2x βοήθει + " 1x βοήθειαν + " 2x βοήθησον + " 1x βοαί + " 1x βοηθείαις + " 1x βοηθεῖτε + " 1x βοηθός + " 1x βοηθῆσαι + " 1x βολήν + " 2x βολίσαντες + " 1x βορβόρου + " 2x βορρᾶ + " 3x βοσκομένη + " 1x βοτάνην + " 1x βουλάς + " 3x βουλή + " 1x βουλήματι + " 1x βουλήματος + " 4x βουλήν + " 2x βουλευτής + " 2x βουλεύομαι + " 1x βουλεύσεται + " 1x βουληθείς + " 1x βουληθῇ + " 2x βουλομένου + " 1x βουλομένους + " 1x βουλόμεθα + " 1x βουλόμενοι + " 8x βουλόμενος + " 1x βουλῆς + " 3x βουλῇ + " 1x βουνοῖς + " 1x βουνός + " 1x βούλει + " 2x βούλεσθε + " 2x βούλεται + " 1x βούλημα + " 2x βούληται + " 1x βούλοιτο + " 5x βούλομαι + " 1x βοώντων + " 2x βοῦν + " 1x βοῦς + " 2x βοῶν + " 1x βοῶντα + " 2x βοῶντες + " 4x βοῶντος + " 1x βρέξαι + " 3x βρέφη + " 4x βρέφος + " 1x βρέφους + " 1x βρέχει + " 1x βρέχειν + " 1x βρέχῃ + " 1x βραβευέτω + " 2x βραβεῖον + " 1x βραδεῖς + " 1x βραδυπλοοῦντες + " 1x βραδύνει + " 1x βραδύνω + " 2x βραδύς + " 1x βραδύτητα + " 1x βραχέων + " 1x βραχίονι + " 1x βραχίονος + " 1x βραχίων + " 6x βραχύ + " 1x βροντήν + " 7x βρονταί + " 2x βροντῆς + " 1x βροντῶν + " 2x βροχή + " 7x βρυγμός + " 1x βρωμάτων + " 1x βρόχον + " 1x βρύει + " 3x βρώμασιν + " 5x βρώματα + " 1x βρώματι + " 1x βρώματος + " 1x βρώσει + " 2x βρώσεως + " 1x βρώσιμον + " 6x βρῶμα + " 4x βρῶσιν + " 4x βρῶσις + " 1x βυθίζεσθαι + " 1x βυθίζουσιν + " 1x βυθῷ + " 1x βυρσέως + " 2x βυρσεῖ + " 1x βυσσίνου + " 1x βωμόν + " 2x βόας + " 1x βόησον + " 3x βόθυνον + " 1x βόσκειν + " 3x βόσκοντες + " 1x βότρυας + " 4x βύσσινον + " 1x βύσσον + " 2x βῆμα + " 1x γάγγραινα + " 1x γάζης + " 2x γάλα + " 3x γάλακτος + " 1x γάμον + " 4x γάμος + " 3x γάμου + " 6x γάμους + " 1x γάμων + " 1038x γάρ + " 4x γέγονα + " 1x γέγοναν + " 3x γέγονας + " 30x γέγονεν + " 62x γέγραπται + " 2x γέγραφα + " 8x γέενναν + " 1x γέλως + " 2x γέμει + " 1x γέμον + " 2x γέμοντα + " 3x γέμουσιν + " 5x γένει + " 1x γένεσις + " 3x γένη + " 7x γένησθε + " 46x γένηται + " 17x γένοιτο + " 7x γένος + " 5x γένους + " 2x γένωμαι + " 4x γένωνται + " 1x γέρων + " 1x γήμας + " 1x γήμῃ + " 1x γήρει + " 10x γίνεσθαι + " 22x γίνεσθε + " 26x γίνεται + " 5x γίνου + " 1x γίνωνται + " 1x γίνωσκε + " 3x γαζοφυλάκιον + " 1x γαζοφυλακίου + " 1x γαζοφυλακίῳ + " 3x γαλήνη + " 1x γαμήσας + " 1x γαμήσασα + " 4x γαμήσῃ + " 1x γαμήσῃς + " 3x γαμίζονται + " 1x γαμίζοντες + " 2x γαμίζων + " 1x γαμίσκονται + " 1x γαμείτωσαν + " 4x γαμεῖν + " 1x γαμηθῆναι + " 1x γαμησάτωσαν + " 1x γαμοῦντες + " 4x γαμοῦσιν + " 1x γαμῆσαι + " 2x γαμῶν + " 1x γαστέρες + " 8x γαστρί + " 15x γε + " 3x γεέννης + " 1x γεέννῃ + " 3x γείτονας + " 1x γείτονες + " 3x γεγέννηκα + " 2x γεγέννημαι + " 5x γεγέννηται + " 1x γεγαμηκόσιν + " 1x γεγενημένον + " 1x γεγεννημένα + " 4x γεγεννημένον + " 4x γεγεννημένος + " 1x γεγεννημένου + " 1x γεγενῆσθαι + " 4x γεγονέναι + " 1x γεγονυῖα + " 8x γεγονός + " 1x γεγονότας + " 2x γεγονότες + " 1x γεγονότι + " 1x γεγονώς + " 7x γεγραμμένα + " 1x γεγραμμένας + " 1x γεγραμμένην + " 1x γεγραμμένοι + " 2x γεγραμμένοις + " 17x γεγραμμένον + " 3x γεγραμμένος + " 2x γεγραμμένων + " 1x γεγυμνασμένα + " 1x γεγυμνασμένην + " 1x γεγυμνασμένοις + " 2x γεγόναμεν + " 2x γεγόνασιν + " 2x γεγόνατε + " 1x γεγόνει + " 1x γελάσετε + " 1x γελῶντες + " 1x γεμίζεσθαι + " 1x γεμίσαι + " 1x γεμίσας + " 1x γεμισθῇ + " 2x γεμούσας + " 1x γεμόντων + " 1x γενέσει + " 3x γενέσεως + " 37x γενέσθαι + " 1x γενέσθω + " 1x γενήθητε + " 1x γενήματα + " 3x γενήματος + " 2x γενήσεσθε + " 10x γενήσεται + " 10x γενεά + " 4x γενεάν + " 3x γενεάς + " 5x γενεαί + " 1x γενεαλογίαις + " 1x γενεαλογίας + " 1x γενεαλογούμενος + " 2x γενεαῖς + " 2x γενεσίοις + " 1x γενετῆς + " 10x γενεᾶς + " 6x γενεᾷ + " 2x γενεῶν + " 1x γενηθέντας + " 2x γενηθέντες + " 1x γενηθέντων + " 5x γενηθήτω + " 1x γενηθῆναι + " 1x γενηθῶμεν + " 1x γενησόμενον + " 2x γεννήματα + " 1x γεννήσαντα + " 1x γεννήσει + " 1x γεννήσῃ + " 1x γεννηθέν + " 1x γεννηθέντος + " 1x γεννηθέντων + " 3x γεννηθείς + " 3x γεννηθῆναι + " 3x γεννηθῇ + " 2x γεννητοῖς + " 1x γεννώμενον + " 1x γεννᾶται + " 1x γεννῶσα + " 1x γεννῶσιν + " 4x γενομένην + " 29x γενομένης + " 3x γενομένοις + " 7x γενομένου + " 2x γενομένων + " 6x γενόμενα + " 4x γενόμεναι + " 6x γενόμενοι + " 4x γενόμενον + " 25x γενόμενος + " 1x γενώμεθα + " 1x γερουσίαν + " 2x γευσάμενος + " 2x γευσαμένους + " 1x γεωργεῖται + " 5x γεωργοί + " 5x γεωργούς + " 5x γεωργοῖς + " 1x γεωργόν + " 2x γεωργός + " 1x γεωργῶν + " 2x γεύσασθαι + " 1x γεύσεται + " 2x γεύσηται + " 3x γεύσωνται + " 1x γεύσῃ + " 1x γεώργιον + " 1x γηράσκον + " 1x γηράσῃς + " 7x γινέσθω + " 1x γινομένας + " 1x γινομένη + " 2x γινομένης + " 1x γινομένοις + " 1x γινομένου + " 1x γινομένων + " 1x γινομένῃ + " 2x γινωσκέτω + " 1x γινωσκομένη + " 5x γινόμενα + " 1x γινόμεναι + " 2x γινόμενοι + " 4x γινόμενον + " 2x γινώμεθα + " 12x γινώσκει + " 1x γινώσκειν + " 7x γινώσκεις + " 2x γινώσκεται + " 20x γινώσκετε + " 1x γινώσκητε + " 10x γινώσκομεν + " 6x γινώσκοντες + " 1x γινώσκουσι + " 1x γινώσκουσιν + " 7x γινώσκω + " 2x γινώσκων + " 1x γινώσκωσιν + " 1x γινώσκῃ + " 4x γλυκύ + " 2x γλωσσόκομον + " 5x γλωσσῶν + " 15x γλώσσαις + " 1x γλώσσας + " 4x γλώσσης + " 7x γλώσσῃ + " 7x γλῶσσα + " 4x γλῶσσαι + " 7x γλῶσσαν + " 1x γνήσιε + " 1x γνήσιον + " 1x γναφεύς + " 1x γνησίως + " 2x γνησίῳ + " 12x γνούς + " 3x γνοῖ + " 3x γνωρίζω + " 3x γνωρίσαι + " 1x γνωρίσας + " 2x γνωρίσει + " 1x γνωρίσουσιν + " 1x γνωρίσω + " 1x γνωρίσῃ + " 1x γνωριζέσθω + " 1x γνωρισθέντος + " 1x γνωρισθῇ + " 1x γνωσθέντες + " 4x γνωσθήσεται + " 1x γνωσθήτω + " 1x γνωσθῇ + " 1x γνωστά + " 1x γνωστοί + " 1x γνωστοῖς + " 10x γνωστόν + " 2x γνωστός + " 1x γνωσόμεθα + " 1x γνόντα + " 5x γνόντες + " 1x γνόφῳ + " 6x γνώμην + " 2x γνώμης + " 1x γνώμῃ + " 8x γνώσει + " 5x γνώσεσθε + " 1x γνώσεται + " 12x γνώσεως + " 2x γνώσομαι + " 3x γνώσονται + " 1x γνώστην + " 1x γνώσῃ + " 1x γνώτω + " 1x γνῶ + " 15x γνῶναι + " 7x γνῶσιν + " 3x γνῶσις + " 6x γνῶτε + " 3x γνῷ + " 1x γνῷς + " 1x γογγυσμοῦ + " 2x γογγυσμός + " 1x γογγυσμῶν + " 1x γογγυσταί + " 2x γογγύζετε + " 1x γογγύζοντος + " 1x γογγύζουσιν + " 1x γονέων + " 14x γονεῖς + " 5x γονεῦσιν + " 1x γονυπετήσαντες + " 1x γονυπετήσας + " 2x γονυπετῶν + " 1x γράμμα + " 3x γράμμασιν + " 6x γράμματα + " 1x γράμματι + " 3x γράμματος + " 1x γράφε + " 1x γράφει + " 7x γράφειν + " 1x γράφεσθαι + " 1x γράφηται + " 2x γράφομεν + " 12x γράφω + " 1x γράφων + " 5x γράψαι + " 1x γράψαντες + " 3x γράψας + " 11x γράψον + " 2x γράψω + " 1x γράψῃς + " 17x γραμματέων + " 5x γραμματεύς + " 39x γραμματεῖς + " 2x γραμματεῦσιν + " 1x γραπτόν + " 9x γραφάς + " 21x γραφή + " 4x γραφήν + " 3x γραφαί + " 4x γραφαῖς + " 1x γραφόμενα + " 3x γραφῆς + " 2x γραφῇ + " 4x γραφῶν + " 1x γραώδεις + " 1x γρηγορήσατε + " 1x γρηγορήσῃς + " 8x γρηγορεῖτε + " 1x γρηγοροῦντας + " 1x γρηγοροῦντες + " 2x γρηγορῆσαι + " 1x γρηγορῇ + " 2x γρηγορῶμεν + " 2x γρηγορῶν + " 1x γυμνά + " 1x γυμνήν + " 1x γυμνασία + " 1x γυμνιτεύομεν + " 2x γυμνοί + " 1x γυμνούς + " 1x γυμνοῦ + " 3x γυμνόν + " 6x γυμνός + " 1x γυμνότης + " 1x γυμνότητι + " 1x γυμνότητος + " 71x γυνή + " 1x γυναικάρια + " 15x γυναικί + " 1x γυναικείῳ + " 23x γυναικός + " 11x γυναικῶν + " 1x γυναιξί + " 5x γυναιξίν + " 50x γυναῖκα + " 11x γυναῖκας + " 15x γυναῖκες + " 2x γωνίαις + " 6x γωνίας + " 1x γωνίᾳ + " 1x γόητες + " 3x γόμον + " 1x γόνασιν + " 8x γόνατα + " 3x γόνυ + " 1x γύμναζε + " 5x γύναι + " 23x γῆ + " 78x γῆν + " 134x γῆς + " 13x γῇ + " 1x δάκνετε + " 2x δάκρυον + " 2x δάκρυσιν + " 2x δάκτυλον + " 1x δάνειον + " 2764x δέ + " 1x δέδεκται + " 1x δέδεμαι + " 1x δέδεσαι + " 3x δέδεται + " 6x δέδοται + " 5x δέδωκα + " 11x δέδωκας + " 12x δέδωκεν + " 2x δέησιν + " 3x δέησις + " 27x δέκα + " 1x δέκατον + " 1x δέκατος + " 4x δένδρα + " 17x δένδρον + " 4x δένδρων + " 1x δέξαι + " 3x δέξασθαι + " 4x δέξασθε + " 8x δέξηται + " 2x δέξωνται + " 6x δέομαι + " 2x δέον + " 1x δέοντα + " 1x δέους + " 1x δέρει + " 1x δέρεις + " 1x δέρμασιν + " 2x δέροντες + " 2x δέρων + " 1x δέσμας + " 1x δέσμιοι + " 5x δέσμιον + " 7x δέσμιος + " 8x δέχεται + " 1x δέχηται + " 1x δέχονται + " 3x δέχωνται + " 2x δέῃ + " 5x δή + " 1x δήμῳ + " 1x δήποτε + " 1x δήπου + " 2x δήσαντες + " 1x δήσας + " 1x δήσατε + " 1x δήσητε + " 1x δήσουσιν + " 2x δήσῃ + " 1x δήσῃς + " 1x δίδαξον + " 2x δίδασκε + " 3x δίδοται + " 2x δίδοτε + " 2x δίδου + " 2x δίδραχμα + " 9x δίδωμι + " 11x δίδωσιν + " 2x δίκαια + " 3x δίκαιαι + " 1x δίκαιε + " 9x δίκαιοι + " 16x δίκαιον + " 19x δίκαιος + " 2x δίκην + " 8x δίκτυα + " 4x δίκτυον + " 6x δίς + " 2x δίστομον + " 1x δίστομος + " 1x δίψει + " 1x δίψυχοι + " 1x δίψυχος + " 2x δίωκε + " 1x δαίμονες + " 1x δαιμονίζεται + " 1x δαιμονίοις + " 4x δαιμονίου + " 11x δαιμονίων + " 1x δαιμονιζομένου + " 3x δαιμονιζομένους + " 1x δαιμονιζομένων + " 1x δαιμονιζομένῳ + " 1x δαιμονιζόμενοι + " 2x δαιμονιζόμενον + " 1x δαιμονιζόμενος + " 2x δαιμονισθείς + " 1x δαιμονιώδης + " 32x δαιμόνια + " 11x δαιμόνιον + " 6x δακρύων + " 1x δακτύλιον + " 1x δακτύλου + " 1x δακτύλους + " 1x δακτύλων + " 3x δακτύλῳ + " 1x δαμάζεται + " 1x δαμάλεως + " 2x δαμάσαι + " 1x δανίζετε + " 1x δανίζουσιν + " 1x δανίσασθαι + " 1x δανίσητε + " 1x δανιστῇ + " 1x δαπάνην + " 1x δαπάνησον + " 1x δαπανήσαντος + " 1x δαπανήσασα + " 1x δαπανήσητε + " 1x δαπανήσω + " 1x δαρήσεσθε + " 2x δαρήσεται + " 2x δεήθητε + " 1x δεήθητι + " 5x δεήσει + " 3x δεήσεις + " 3x δεήσεσιν + " 2x δεήσεως + " 1x δείκνυμι + " 2x δείκνυσιν + " 4x δείξει + " 5x δείξω + " 3x δείπνοις + " 4x δείπνου + " 1x δείπνῳ + " 3x δείραντες + " 1x δεδάμασται + " 1x δεδέσθαι + " 1x δεδεκάτωκεν + " 1x δεδεκάτωται + " 1x δεδεκώς + " 1x δεδεμένα + " 1x δεδεμένην + " 6x δεδεμένον + " 4x δεδεμένος + " 4x δεδεμένους + " 1x δεδικαίωμαι + " 1x δεδικαίωται + " 1x δεδικαιωμένος + " 1x δεδιωγμένοι + " 1x δεδοκιμάσμεθα + " 1x δεδομένην + " 4x δεδομένον + " 1x δεδοξασμένον + " 1x δεδοξασμένῃ + " 1x δεδουλεύκαμεν + " 1x δεδουλωμένας + " 1x δεδουλωμένοι + " 2x δεδούλωται + " 1x δεδωρημένης + " 1x δεδόξασμαι + " 1x δεδόξασται + " 2x δεδώκει + " 1x δεδώκεισαν + " 1x δεδώρηται + " 1x δεηθέντων + " 2x δεθῆναι + " 1x δειγματίσαι + " 1x δεικνύειν + " 1x δεικνύεις + " 1x δεικνύοντος + " 1x δειλίας + " 1x δειλιάτω + " 2x δειλοί + " 1x δειλοῖς + " 2x δεινῶς + " 1x δειξάτω + " 2x δειπνήσω + " 2x δειπνῆσαι + " 1x δεισιδαιμονίας + " 1x δεισιδαιμονεστέρους + " 1x δειχθέντα + " 2x δεκάτας + " 1x δεκάτη + " 2x δεκάτην + " 3x δεκαπέντε + " 3x δεκατέσσαρες + " 2x δεκατεσσάρων + " 1x δεκτήν + " 1x δεκτόν + " 2x δεκτός + " 1x δεκτῷ + " 1x δελεάζοντες + " 1x δελεάζουσιν + " 1x δελεαζόμενος + " 1x δεξάμενοι + " 3x δεξάμενος + " 1x δεξαμένη + " 4x δεξιά + " 4x δεξιάν + " 1x δεξιάς + " 1x δεξιολάβους + " 1x δεξιοῖς + " 3x δεξιόν + " 1x δεξιός + " 4x δεξιᾶς + " 13x δεξιᾷ + " 23x δεξιῶν + " 2x δερματίνην + " 3x δεσμά + " 1x δεσμίοις + " 1x δεσμίους + " 1x δεσμίων + " 1x δεσμεύουσιν + " 1x δεσμεύων + " 1x δεσμοφύλακι + " 2x δεσμοφύλαξ + " 1x δεσμούς + " 6x δεσμοῖς + " 1x δεσμοῦ + " 2x δεσμωτήριον + " 1x δεσμωτηρίου + " 1x δεσμωτηρίῳ + " 1x δεσμός + " 2x δεσμώτας + " 6x δεσμῶν + " 2x δεσπόταις + " 2x δεσπότας + " 1x δεσπότην + " 1x δεσπότῃ + " 3x δευτέρα + " 6x δευτέραν + " 1x δευτέρας + " 8x δευτέρου + " 1x δευτέρᾳ + " 3x δευτέρῳ + " 1x δευτεραῖοι + " 4x δεχόμενος + " 1x δεόμεθα + " 3x δεόμενοι + " 2x δεόμενος + " 10x δεύτερον + " 12x δεύτερος + " 75x δεῖ + " 1x δεῖγμα + " 3x δεῖν + " 1x δεῖνα + " 2x δεῖξαι + " 5x δεῖξον + " 8x δεῖπνον + " 7x δεῦρο + " 4x δεῦτε + " 1x δηλοῖ + " 1x δηλοῦντος + " 1x δηλώσας + " 1x δηλώσει + " 1x δημιουργός + " 4x δημοσίᾳ + " 3x δηνάρια + " 5x δηνάριον + " 4x δηναρίου + " 4x δηναρίων + " 485x διά + " 1x διάβολοι + " 1x διάβολον + " 14x διάβολος + " 1x διάγγελλε + " 1x διάγνωσιν + " 1x διάγοντες + " 1x διάγωμεν + " 1x διάδος + " 1x διάδοχον + " 7x διάκονοι + " 3x διάκονον + " 15x διάκονος + " 1x διάκρισιν + " 4x διάνοιαν + " 1x διάστημα + " 1x διάταγμα + " 1x διάφορα + " 1x διέβησαν + " 1x διέβλεψεν + " 1x διέδωκεν + " 1x διέζωσεν + " 2x διέθετο + " 1x διέκρινεν + " 1x διέλειπεν + " 1x διέλθω + " 1x διέμενεν + " 1x διέρρηξεν + " 2x διέρχεσθαι + " 2x διέρχεται + " 1x διέρχομαι + " 1x διέρχωμαι + " 1x διέστη + " 1x διέταξα + " 2x διέταξεν + " 2x διέτριβεν + " 3x διέτριβον + " 1x διέτριψαν + " 1x διήγειραν + " 1x διήγησιν + " 1x διήνοιγεν + " 2x διήνοιξεν + " 4x διήρχετο + " 2x διήρχοντο + " 1x διαβεβαιοῦνται + " 1x διαβεβαιοῦσθαι + " 2x διαβλέψεις + " 13x διαβόλου + " 2x διαβόλους + " 4x διαβόλῳ + " 1x διαβῆναι + " 1x διαγγέλλων + " 1x διαγγελῇ + " 2x διαγενομένου + " 1x διαγενομένων + " 1x διαγινώσκειν + " 1x διαγνώσομαι + " 1x διαγρηγορήσαντες + " 3x διαδήματα + " 1x διαδίδωσιν + " 1x διαδεξάμενοι + " 1x διαθέμενος + " 7x διαθήκη + " 5x διαθήκην + " 16x διαθήκης + " 2x διαθήκῃ + " 2x διαθήσομαι + " 1x διαθεμένου + " 1x διαθηκῶν + " 2x διαθῆκαι + " 2x διαιρέσεις + " 1x διαιροῦν + " 1x διακαθαριεῖ + " 1x διακαθᾶραι + " 1x διακατηλέγχετο + " 2x διακονήσαντες + " 1x διακονήσει + " 7x διακονία + " 16x διακονίαν + " 7x διακονίας + " 3x διακονίᾳ + " 1x διακονείτωσαν + " 1x διακονεῖ + " 2x διακονεῖν + " 1x διακονηθεῖσα + " 2x διακονηθῆναι + " 1x διακονιῶν + " 2x διακονουμένῃ + " 1x διακονούντων + " 2x διακονοῦντες + " 1x διακονοῦσαι + " 2x διακονῆσαι + " 3x διακονῇ + " 4x διακονῶν + " 2x διακοσίας + " 2x διακοσίους + " 2x διακοσίων + " 1x διακρίναντα + " 1x διακρίνει + " 1x διακρίνειν + " 1x διακρίνων + " 2x διακρίσεις + " 1x διακριθῆτε + " 1x διακριθῇ + " 1x διακρινέτωσαν + " 1x διακρινομένους + " 5x διακρινόμενος + " 1x διακρῖναι + " 1x διακόνει + " 3x διακόνοις + " 1x διακόνους + " 1x διακόσιαι + " 1x διαλέγεται + " 6x διαλέκτῳ + " 2x διαλεγομένου + " 1x διαλεγόμενον + " 2x διαλεγόμενος + " 1x διαλλάγηθι + " 1x διαλογίζεσθαι + " 4x διαλογίζεσθε + " 1x διαλογίζονται + " 1x διαλογιζομένων + " 1x διαλογιζόμενοι + " 4x διαλογισμοί + " 3x διαλογισμούς + " 1x διαλογισμοῖς + " 1x διαλογισμοῦ + " 1x διαλογισμόν + " 1x διαλογισμός + " 3x διαλογισμῶν + " 1x διαμένει + " 1x διαμένεις + " 1x διαμαρτυράμενοι + " 4x διαμαρτυρόμενος + " 2x διαμαρτύρασθαι + " 1x διαμαρτύρεται + " 1x διαμαρτύρηται + " 1x διαμαρτύρομαι + " 1x διαμείνῃ + " 1x διαμεμενηκότες + " 1x διαμεμερισμένοι + " 1x διαμερίζονται + " 1x διαμερίσατε + " 1x διαμεριζόμεναι + " 1x διαμεριζόμενοι + " 1x διαμερισθήσονται + " 1x διαμερισθεῖσα + " 1x διαμερισμόν + " 1x διανεμηθῇ + " 1x διανεύων + " 1x διανοήματα + " 2x διανοίας + " 1x διανοίγων + " 5x διανοίᾳ + " 1x διανοιῶν + " 1x διανοῖγον + " 1x διανυκτερεύων + " 1x διανύσαντες + " 1x διαπαρατριβαί + " 2x διαπεράσαντες + " 1x διαπεράσαντος + " 1x διαπερῶν + " 1x διαπερῶσιν + " 1x διαπλεύσαντες + " 1x διαπονηθείς + " 1x διαπονούμενοι + " 1x διαπορευομένου + " 1x διαπορευόμενος + " 1x διαπορεύεσθαι + " 1x διαρήσσων + " 1x διαρπάσαι + " 2x διαρπάσει + " 1x διαρρήξαντες + " 1x διαρρήξας + " 1x διασείσητε + " 1x διασκορπίζων + " 2x διασκορπισθήσονται + " 2x διασπαρέντες + " 1x διασπασθῇ + " 1x διαστάσης + " 1x διαστήσαντες + " 1x διαστελλόμενον + " 2x διαστολή + " 1x διαστολήν + " 1x διαστρέφοντα + " 1x διαστρέφων + " 1x διαστρέψαι + " 1x διασωθέντα + " 1x διασωθέντες + " 1x διασωθῆναι + " 1x διασώσωσι + " 1x διασώσῃ + " 1x διασῶσαι + " 1x διατάξομαι + " 1x διατάσσομαι + " 1x διατάσσων + " 1x διατίθεμαι + " 1x διαταγάς + " 1x διαταγείς + " 1x διαταγῇ + " 1x διαταξάμενος + " 2x διαταχθέντα + " 1x διατελεῖτε + " 2x διατεταγμένον + " 1x διατεταγμένος + " 1x διατεταχέναι + " 1x διατηροῦντες + " 1x διατρίβοντες + " 1x διατροφάς + " 1x διαυγάσῃ + " 1x διαυγής + " 4x διαφέρει + " 4x διαφέρετε + " 2x διαφέροντα + " 1x διαφερομένων + " 1x διαφημίζειν + " 1x διαφθείρει + " 1x διαφθείρεται + " 1x διαφθείροντας + " 1x διαφθεῖραι + " 6x διαφθοράν + " 1x διαφορωτέρας + " 1x διαφορώτερον + " 1x διαφυλάξαι + " 1x διαφόροις + " 1x διαφύγῃ + " 1x διαχειρίσασθαι + " 1x διαχλευάζοντες + " 1x διαχωρίζεσθαι + " 3x διδάξαι + " 2x διδάξει + " 1x διδάξωσιν + " 2x διδάξῃ + " 4x διδάσκαλοι + " 4x διδάσκαλον + " 9x διδάσκαλος + " 3x διδάσκει + " 13x διδάσκειν + " 7x διδάσκεις + " 9x διδάσκοντες + " 1x διδάσκοντι + " 1x διδάσκοντος + " 1x διδάσκω + " 23x διδάσκων + " 1x διδάσκῃ + " 2x διδακτικόν + " 1x διδακτοί + " 2x διδακτοῖς + " 3x διδασκάλους + " 1x διδασκάλων + " 1x διδασκαλία + " 1x διδασκαλίαις + " 3x διδασκαλίαν + " 6x διδασκαλίας + " 10x διδασκαλίᾳ + " 3x διδαχή + " 8x διδαχήν + " 1x διδαχαῖς + " 5x διδαχῆς + " 13x διδαχῇ + " 5x διδούς + " 1x διδόασιν + " 1x διδόμενον + " 6x διδόναι + " 2x διδόντα + " 2x διδόντες + " 3x διδόντι + " 2x διδόντος + " 1x διδῶ + " 1x διεβλήθη + " 1x διεγείρειν + " 1x διεγείρετο + " 1x διεγείρω + " 2x διεγερθείς + " 2x διεγόγγυζον + " 1x διεδίδετο + " 1x διεζωσμένος + " 1x διεζώσατο + " 1x διεκρίθη + " 1x διεκρίθητε + " 1x διεκρίνομεν + " 1x διεκρίνοντο + " 1x διεκώλυεν + " 1x διελάλουν + " 4x διελέγετο + " 2x διελέξατο + " 1x διελέχθησαν + " 1x διελαλεῖτο + " 1x διελεύσεται + " 1x διεληλυθότα + " 4x διελθεῖν + " 1x διελθόντα + " 4x διελθόντες + " 3x διελθών + " 1x διελογίζεσθε + " 2x διελογίζετο + " 5x διελογίζοντο + " 1x διελύθησαν + " 1x διεμάχοντο + " 1x διεμέριζον + " 1x διεμαρτυράμεθα + " 2x διεμαρτύρατο + " 1x διεμαρτύρω + " 1x διεμερίσαντο + " 1x διεμερίσθη + " 1x διενέγκῃ + " 1x διενθυμουμένου + " 1x διεξόδους + " 1x διεπέρασεν + " 1x διεπορεύετο + " 1x διεπορεύοντο + " 2x διεπρίοντο + " 1x διεπραγματεύσατο + " 1x διερήσσετο + " 1x διερμήνευσεν + " 1x διερμηνευέτω + " 1x διερμηνευομένη + " 1x διερμηνευτής + " 1x διερμηνεύουσιν + " 2x διερμηνεύῃ + " 1x διερχόμενον + " 3x διερχόμενος + " 1x διερωτήσαντες + " 1x διεσάφησαν + " 1x διεσκορπίσθησαν + " 1x διεσκορπισμένα + " 1x διεσκόρπισα + " 1x διεσκόρπισας + " 2x διεσκόρπισεν + " 1x διεσπάρησαν + " 1x διεσπάσθαι + " 2x διεστέλλετο + " 3x διεστείλατο + " 1x διεστειλάμεθα + " 1x διεστραμμένα + " 2x διεστραμμένη + " 1x διεστραμμένης + " 2x διεσώθησαν + " 1x διετάξατο + " 1x διετήρει + " 1x διετίαν + " 1x διεταξάμην + " 1x διεταράχθη + " 1x διετοῦς + " 1x διετρίψαμεν + " 1x διεφέρετο + " 1x διεφήμισαν + " 1x διεφημίσθη + " 1x διεφθάρησαν + " 1x διεφθαρμένων + " 1x διεχειρίσασθε + " 1x διεῖλεν + " 2x διηγήσαντο + " 2x διηγήσατο + " 1x διηγήσεται + " 1x διηγήσωνται + " 1x διηγούμενον + " 1x διηγοῦ + " 1x διηκονήσαμεν + " 4x διηκόνει + " 1x διηκόνησεν + " 5x διηκόνουν + " 4x διηνεκές + " 1x διηνοίχθησαν + " 1x διηνοιγμένους + " 1x διηποροῦντο + " 2x διηπόρει + " 1x διηπόρουν + " 1x διθάλασσον + " 2x δικαία + " 2x δικαίαν + " 1x δικαίας + " 1x δικαίοις + " 5x δικαίου + " 6x δικαίους + " 3x δικαίωμα + " 6x δικαίων + " 5x δικαίως + " 2x δικαίωσιν + " 2x δικαίῳ + " 1x δικαιοκρισίας + " 12x δικαιοσύνη + " 36x δικαιοσύνην + " 29x δικαιοσύνης + " 14x δικαιοσύνῃ + " 1x δικαιούμενοι + " 1x δικαιοῖ + " 2x δικαιοῦντα + " 1x δικαιοῦντες + " 1x δικαιοῦσθαι + " 1x δικαιοῦσθε + " 4x δικαιοῦται + " 2x δικαιωθέντες + " 2x δικαιωθήσεται + " 1x δικαιωθήσονται + " 1x δικαιωθήσῃ + " 2x δικαιωθῆναι + " 1x δικαιωθῇς + " 2x δικαιωθῶμεν + " 1x δικαιώμασιν + " 5x δικαιώματα + " 1x δικαιώματος + " 1x δικαιώσει + " 1x δικαιῶν + " 1x δικαιῶσαι + " 2x δικαστήν + " 1x διλόγους + " 1x διοπετοῦς + " 1x διορθωμάτων + " 1x διορθώσεως + " 2x διορυχθῆναι + " 2x διορύσσουσιν + " 1x διπλοῦν + " 1x διπλότερον + " 1x διπλώσατε + " 1x διπλᾶ + " 1x διπλῆς + " 1x δισμυριάδες + " 1x δισχίλιοι + " 1x διχάσαι + " 1x διχοστασίαι + " 1x διχοστασίας + " 2x διχοτομήσει + " 3x διψήσει + " 1x διψήσουσιν + " 2x διψᾷ + " 1x διψῶ + " 1x διψῶμεν + " 1x διψῶν + " 2x διψῶντα + " 1x διψῶντες + " 1x διψῶντι + " 1x διωγμούς + " 3x διωγμοῖς + " 2x διωγμοῦ + " 1x διωγμόν + " 2x διωγμός + " 1x διωγμῶν + " 2x διωκόμενοι + " 1x διωκόντων + " 1x διωξάτω + " 1x διωχθήσονται + " 1x διϊκνούμενος + " 2x διϊσχυρίζετο + " 1x διϋλίζοντες + " 34x διό + " 1x διόπερ + " 24x διότι + " 1x διώδευεν + " 6x διώκεις + " 2x διώκετε + " 1x διώκομαι + " 1x διώκομεν + " 1x διώκοντα + " 1x διώκοντας + " 1x διώκοντες + " 1x διώκτην + " 2x διώκω + " 3x διώκων + " 1x διώκωνται + " 1x διώκωσιν + " 1x διώξετε + " 1x διώξητε + " 3x διώξουσιν + " 1x διώξωσιν + " 2x διῆλθεν + " 4x διῆλθον + " 145x δι’ + " 1x δογμάτων + " 1x δογματίζεσθε + " 1x δοθέντος + " 16x δοθήσεται + " 3x δοθείσης + " 1x δοθείσῃ + " 1x δοθεῖσα + " 7x δοθεῖσαν + " 5x δοθῆναι + " 3x δοθῇ + " 2x δοκίμιον + " 20x δοκεῖ + " 1x δοκεῖν + " 1x δοκεῖς + " 9x δοκεῖτε + " 1x δοκιμάζει + " 3x δοκιμάζειν + " 1x δοκιμάζεις + " 4x δοκιμάζετε + " 1x δοκιμάζοντες + " 1x δοκιμάζοντι + " 1x δοκιμάζων + " 1x δοκιμάσαι + " 1x δοκιμάσει + " 1x δοκιμάσητε + " 1x δοκιμή + " 4x δοκιμήν + " 1x δοκιμαζέσθωσαν + " 2x δοκιμαζέτω + " 1x δοκιμαζομένου + " 1x δοκιμασίᾳ + " 1x δοκιμῆς + " 1x δοκιμῇ + " 1x δοκούντων + " 1x δοκοῦμεν + " 1x δοκοῦν + " 1x δοκοῦντα + " 3x δοκοῦντες + " 1x δοκοῦσα + " 2x δοκοῦσιν + " 5x δοκόν + " 1x δοκός + " 1x δοκῇ + " 2x δοκῶ + " 1x δοκῶν + " 1x δολοῦντες + " 1x δοξάζειν + " 1x δοξάζεται + " 2x δοξάζηται + " 1x δοξάζητε + " 2x δοξάζοντες + " 1x δοξάζω + " 4x δοξάζων + " 1x δοξάσαι + " 1x δοξάσατε + " 5x δοξάσει + " 2x δοξάσω + " 2x δοξάσωσιν + " 1x δοξάσῃ + " 1x δοξαζέτω + " 1x δοξαζόμενος + " 3x δοξασθῇ + " 1x δοξασθῶσιν + " 1x δουλαγωγῶ + " 1x δουλείαν + " 4x δουλείας + " 1x δουλευέτωσαν + " 1x δουλεύει + " 7x δουλεύειν + " 2x δουλεύετε + " 3x δουλεύοντες + " 1x δουλεύουσιν + " 1x δουλεύσει + " 1x δουλεύσουσιν + " 2x δουλεύω + " 2x δουλεύων + " 1x δουλεῦσαι + " 1x δουλωθέντες + " 1x δουλώσουσιν + " 2x δοχήν + " 1x δούλας + " 1x δούλη + " 1x δούλης + " 7x δούλοις + " 6x δούλου + " 19x δούλους + " 5x δούλων + " 6x δούλῳ + " 11x δούς + " 1x δοῖ + " 2x δοῦλα + " 5x δοῦλε + " 21x δοῦλοι + " 18x δοῦλον + " 35x δοῦλος + " 33x δοῦναι + " 1x δράκοντα + " 1x δράκοντι + " 2x δράκοντος + " 9x δράκων + " 8x δρέπανον + " 3x δραμών + " 1x δρασσόμενος + " 1x δραχμάς + " 2x δραχμήν + " 3x δρόμον + " 5x δυνάμεθα + " 26x δυνάμει + " 19x δυνάμεις + " 2x δυνάμενα + " 1x δυνάμεναι + " 3x δυνάμενοι + " 4x δυνάμενον + " 5x δυνάμενος + " 1x δυνάμεσι + " 2x δυνάμεσιν + " 3x δυνάμεων + " 21x δυνάμεως + " 1x δυνάστας + " 1x δυνάστης + " 2x δυνήσεσθε + " 5x δυνήσεται + " 1x δυνήσονται + " 1x δυνήσῃ + " 1x δυναίμην + " 1x δυναμένη + " 3x δυναμένου + " 1x δυναμένους + " 1x δυναμένων + " 4x δυναμένῳ + " 1x δυναμούμενοι + " 6x δυνατά + " 3x δυνατεῖ + " 4x δυνατοί + " 9x δυνατόν + " 13x δυνατός + " 1x δυνηθῆτε + " 1x δυνησόμεθα + " 3x δυσί + " 6x δυσίν + " 1x δυσβάστακτα + " 1x δυσεντερίῳ + " 1x δυσερμήνευτος + " 3x δυσκόλως + " 5x δυσμῶν + " 1x δυσνόητα + " 1x δυσφημίας + " 1x δυσφημούμενοι + " 1x δωδέκατος + " 1x δωδεκάφυλον + " 2x δωμάτων + " 2x δωρεά + " 14x δωρεάν + " 3x δωρεᾶς + " 1x δωρεᾷ + " 1x δόγμα + " 2x δόγμασιν + " 1x δόγματα + " 2x δόκιμοι + " 2x δόκιμον + " 3x δόκιμος + " 1x δόλιοι + " 2x δόλον + " 3x δόλος + " 2x δόλου + " 4x δόλῳ + " 1x δόμα + " 3x δόματα + " 2x δόντα + " 2x δόντος + " 35x δόξα + " 57x δόξαν + " 2x δόξαντες + " 3x δόξας + " 3x δόξασον + " 48x δόξης + " 1x δόξητε + " 1x δόξω + " 23x δόξῃ + " 10x δός + " 1x δόσεως + " 1x δόσις + " 10x δότε + " 1x δότην + " 1x δότω + " 2x δύναιντο + " 6x δύναμαι + " 33x δύναμιν + " 13x δύναμις + " 9x δύνανται + " 7x δύνασαι + " 8x δύνασθαι + " 27x δύνασθε + " 71x δύναται + " 1x δύνηται + " 1x δύνωνται + " 4x δύνῃ + " 124x δύο + " 1x δύσεως + " 1x δύσκολον + " 74x δώδεκα + " 3x δώματος + " 2x δώρημα + " 1x δώροις + " 1x δώρῳ + " 19x δώσει + " 2x δώσεις + " 2x δώσομεν + " 4x δώσουσιν + " 22x δώσω + " 1x δώσῃ + " 2x δώῃ + " 3x δῆλον + " 2x δῆμον + " 1x δῆμος + " 2x δῆσαι + " 4x δῴη + " 2x δῶμα + " 5x δῶμεν + " 8x δῶρα + " 7x δῶρον + " 1x δῶσιν + " 3x δῶτε + " 6x δῷ + " 1x δῷς + " 23x δ’ + " 370x εἰ + " 1x εἰδέα + " 10x εἰδέναι + " 1x εἰδήσουσιν + " 2x εἰδυῖα + " 1x εἰδωλίῳ + " 3x εἰδωλοθύτων + " 3x εἰδωλολάτραι + " 2x εἰδωλολάτραις + " 2x εἰδωλολάτρης + " 2x εἰδωλολατρεία + " 1x εἰδωλολατρείαις + " 1x εἰδωλολατρείας + " 3x εἰδωλόθυτα + " 3x εἰδωλόθυτον + " 1x εἰδόσιν + " 1x εἰδότα + " 2x εἰδότας + " 22x εἰδότες + " 1x εἰδότι + " 1x εἰδώλου + " 4x εἰδώλων + " 1x εἰδώλῳ + " 23x εἰδώς + " 6x εἰδῆτε + " 1x εἰδῇς + " 2x εἰδῶ + " 1x εἰδῶμεν + " 1x εἰθισμένον + " 1x εἰκοσιτρεῖς + " 10x εἰκόνα + " 4x εἰκόνι + " 3x εἰκόνος + " 6x εἰκών + " 6x εἰκῇ + " 1x εἰληφώς + " 2x εἰλικρινίας + " 1x εἰλικρινίᾳ + " 1x εἰλικρινεῖς + " 1x εἰλικρινῆ + " 44x εἰμί + " 94x εἰμι + " 1x εἰπάτω + " 1x εἰπάτωσαν + " 8x εἰπέ + " 16x εἰπεῖν + " 3x εἰποῦσα + " 6x εἰπόν + " 3x εἰπόντα + " 3x εἰπόντες + " 3x εἰπόντος + " 29x εἰπών + " 1x εἰρήκασιν + " 1x εἰρήκατε + " 3x εἰρήκει + " 31x εἰρήνη + " 23x εἰρήνην + " 19x εἰρήνης + " 8x εἰρήνῃ + " 1x εἰργασμένα + " 1x εἰρηκέναι + " 1x εἰρηκότος + " 4x εἰρημένον + " 3x εἰρηνεύετε + " 1x εἰρηνεύοντες + " 1x εἰρηνική + " 1x εἰρηνικόν + " 1x εἰρηνοποιήσας + " 1x εἰρηνοποιοί + " 1755x εἰς + " 1x εἰσάγαγε + " 2x εἰσάγεσθαι + " 10x εἰσέλθητε + " 1x εἰσέλθωμεν + " 2x εἰσέλθωσιν + " 9x εἰσέλθῃ + " 4x εἰσέλθῃς + " 1x εἰσέρχεσθε + " 1x εἰσέρχεται + " 1x εἰσέρχησθε + " 3x εἰσήγαγεν + " 3x εἰσήγαγον + " 1x εἰσήλθατε + " 2x εἰσήλθομεν + " 1x εἰσίασιν + " 68x εἰσίν + " 1x εἰσαγάγῃ + " 1x εἰσαγαγεῖν + " 1x εἰσακουσθήσονται + " 1x εἰσακουσθείς + " 1x εἰσακούσονται + " 1x εἰσδέξομαι + " 1x εἰσδραμοῦσα + " 1x εἰσελήλυθαν + " 1x εἰσελεύσεσθαι + " 3x εἰσελεύσεται + " 1x εἰσελεύσομαι + " 5x εἰσελεύσονται + " 1x εἰσεληλύθατε + " 1x εἰσελθάτω + " 36x εἰσελθεῖν + " 1x εἰσελθούσης + " 1x εἰσελθοῦσα + " 2x εἰσελθοῦσαι + " 4x εἰσελθόντα + " 4x εἰσελθόντες + " 1x εἰσελθόντι + " 2x εἰσελθόντος + " 2x εἰσελθόντων + " 19x εἰσελθών + " 1x εἰσενέγκωσιν + " 2x εἰσενέγκῃς + " 1x εἰσενεγκεῖν + " 1x εἰσεπήδησεν + " 1x εἰσεπορεύετο + " 1x εἰσερχέσθωσαν + " 1x εἰσερχομένην + " 1x εἰσερχομένου + " 2x εἰσερχομένους + " 2x εἰσερχόμενοι + " 1x εἰσερχόμενον + " 3x εἰσερχόμενος + " 2x εἰσηκούσθη + " 1x εἰσηνέγκαμεν + " 1x εἰσιέναι + " 88x εἰσιν + " 1x εἰσκαλεσάμενος + " 1x εἰσπορευομένους + " 1x εἰσπορευομένων + " 1x εἰσπορευόμεναι + " 4x εἰσπορευόμενοι + " 3x εἰσπορευόμενον + " 2x εἰσπορευόμενος + " 3x εἰσπορεύεται + " 2x εἰσπορεύονται + " 1x εἰσφέρεις + " 1x εἰσφέρεται + " 1x εἰσφέρωσιν + " 1x εἰσόδου + " 2x εἰσῄει + " 39x εἰσῆλθεν + " 1x εἰσῆλθες + " 12x εἰσῆλθον + " 2x εἰωθός + " 2x εἰώθει + " 1x εἱλκωμένος + " 7x εἱστήκει + " 7x εἱστήκεισαν + " 63x εἴ + " 1x εἴα + " 1x εἴασαν + " 4x εἴασεν + " 2x εἴδαμεν + " 1x εἴδει + " 5x εἴδετε + " 7x εἴδομεν + " 2x εἴδους + " 3x εἴδωλα + " 2x εἴδωλον + " 11x εἴη + " 10x εἴκοσι + " 1x εἴληφα + " 2x εἴληφας + " 3x εἴληφεν + " 1x εἴξαμεν + " 4x εἴπας + " 11x εἴπατε + " 6x εἴπερ + " 8x εἴπητε + " 7x εἴπω + " 10x εἴπωμεν + " 6x εἴπωσιν + " 22x εἴπῃ + " 4x εἴπῃς + " 4x εἴρηκα + " 1x εἴρηκαν + " 1x εἴρηκας + " 8x εἴρηκεν + " 1x εἴς + " 4x εἴσελθε + " 3x εἴσοδον + " 1x εἴσοδος + " 64x εἴτε + " 1x εἴχαμεν + " 3x εἴχετε + " 1x εἴχομεν + " 2x εἴχοσαν + " 2x εἴων + " 1x εἵλατο + " 1x εἵλκυσαν + " 2x εἵλκυσεν + " 3x εἵνεκεν + " 92x εἶ + " 7x εἶδαν + " 42x εἶδεν + " 8x εἶδες + " 74x εἶδον + " 2x εἶδος + " 124x εἶναι + " 3x εἶπα + " 102x εἶπαν + " 3x εἶπας + " 2x εἶπε + " 586x εἶπεν + " 2x εἶπες + " 48x εἶπον + " 13x εἶτα + " 2x εἶτεν + " 2x εἶχαν + " 23x εἶχεν + " 1x εἶχες + " 17x εἶχον + " 1x εἷλκον + " 95x εἷς + " 1x εὐάρεστοι + " 6x εὐάρεστον + " 1x εὐάρεστος + " 41x εὐαγγέλιον + " 2x εὐαγγελίζεσθαι + " 3x εὐαγγελίζεται + " 1x εὐαγγελίζομαι + " 2x εὐαγγελίζονται + " 2x εὐαγγελίζωμαι + " 23x εὐαγγελίου + " 1x εὐαγγελίσαι + " 7x εὐαγγελίσασθαι + " 1x εὐαγγελίσηται + " 1x εὐαγγελίσωμαι + " 12x εὐαγγελίῳ + " 1x εὐαγγελιζομένου + " 1x εὐαγγελιζομένων + " 1x εὐαγγελιζομένῳ + " 1x εὐαγγελιζόμεθα + " 8x εὐαγγελιζόμενοι + " 3x εὐαγγελιζόμενος + " 1x εὐαγγελισαμένου + " 1x εὐαγγελισαμένων + " 2x εὐαγγελισθέν + " 1x εὐαγγελισθέντες + " 1x εὐαγγελιστάς + " 2x εὐαγγελιστοῦ + " 1x εὐαρέστους + " 1x εὐαρέστως + " 1x εὐαρεστεῖται + " 1x εὐαρεστηκέναι + " 1x εὐαρεστῆσαι + " 1x εὐγενέστεροι + " 1x εὐγενής + " 1x εὐγενεῖς + " 1x εὐδοκήσαντες + " 3x εὐδοκία + " 4x εὐδοκίαν + " 2x εὐδοκίας + " 1x εὐδοκεῖ + " 2x εὐδοκοῦμεν + " 1x εὐδοκῶ + " 5x εὐδόκησα + " 2x εὐδόκησας + " 6x εὐδόκησεν + " 1x εὐεργέται + " 1x εὐεργεσίας + " 1x εὐεργεσίᾳ + " 1x εὐεργετῶν + " 1x εὐηγγέλισεν + " 3x εὐηγγελίζετο + " 1x εὐηγγελίζοντο + " 2x εὐηγγελίσατο + " 1x εὐηγγελίσθη + " 1x εὐηγγελισάμεθα + " 4x εὐηγγελισάμην + " 1x εὐηγγελισμένοι + " 30x εὐθέως + " 5x εὐθείας + " 1x εὐθεῖα + " 1x εὐθεῖαν + " 1x εὐθυδρομήσαμεν + " 1x εὐθυδρομήσαντες + " 1x εὐθυμεῖ + " 1x εὐθυμεῖν + " 1x εὐθυμεῖτε + " 1x εὐθύμως + " 1x εὐθύνοντος + " 54x εὐθύς + " 1x εὐθύτητος + " 1x εὐκαίρου + " 1x εὐκαίρουν + " 2x εὐκαίρως + " 1x εὐκαιρήσῃ + " 2x εὐκαιρίαν + " 7x εὐκοπώτερον + " 2x εὐλαβής + " 2x εὐλαβείας + " 2x εὐλαβεῖς + " 1x εὐλαβηθείς + " 5x εὐλογήσας + " 1x εὐλογήσω + " 4x εὐλογία + " 2x εὐλογίαις + " 5x εὐλογίαν + " 4x εὐλογίας + " 1x εὐλογίᾳ + " 1x εὐλογεῖν + " 1x εὐλογεῖται + " 3x εὐλογεῖτε + " 1x εὐλογημένοι + " 2x εὐλογημένος + " 3x εὐλογητός + " 3x εὐλογοῦμεν + " 1x εὐλογοῦντα + " 1x εὐλογοῦνται + " 2x εὐλογοῦντες + " 1x εὐλογῇς + " 2x εὐλογῶν + " 1x εὐλόγηκεν + " 9x εὐλόγησεν + " 1x εὐμεταδότους + " 1x εὐνοίας + " 1x εὐνουχίσθησαν + " 1x εὐνούχισαν + " 3x εὐνοῦχοι + " 5x εὐνοῦχος + " 1x εὐνοῶν + " 1x εὐοδοῦσθαι + " 1x εὐοδοῦται + " 1x εὐοδωθήσομαι + " 1x εὐοδῶται + " 1x εὐπάρεδρον + " 1x εὐπειθής + " 1x εὐπερίστατον + " 1x εὐποιΐας + " 1x εὐπορία + " 1x εὐπορεῖτο + " 1x εὐπρέπεια + " 1x εὐπροσδέκτους + " 1x εὐπροσωπῆσαι + " 4x εὐπρόσδεκτος + " 1x εὐρύχωρος + " 2x εὐσέβεια + " 7x εὐσέβειαν + " 1x εὐσεβής + " 1x εὐσεβείαις + " 2x εὐσεβείας + " 3x εὐσεβείᾳ + " 1x εὐσεβεῖν + " 1x εὐσεβεῖς + " 1x εὐσεβεῖτε + " 1x εὐσεβῆ + " 2x εὐσεβῶς + " 1x εὐσχήμονα + " 1x εὐσχήμονας + " 1x εὐσχήμων + " 1x εὐσχημοσύνην + " 1x εὐσχημόνων + " 3x εὐσχημόνως + " 1x εὐτραπελία + " 2x εὐτόνως + " 1x εὐφημίας + " 1x εὐφραίνεσθαι + " 1x εὐφραίνεσθε + " 1x εὐφραίνονται + " 1x εὐφραίνοντο + " 1x εὐφραίνου + " 1x εὐφραίνων + " 1x εὐφραινόμενος + " 1x εὐφρανθῆναι + " 1x εὐφρανθῶ + " 1x εὐφρανθῶμεν + " 2x εὐφροσύνης + " 1x εὐφόρησεν + " 1x εὐχάριστοι + " 1x εὐχή + " 2x εὐχήν + " 1x εὐχαρίστησεν + " 1x εὐχαριστήσαντος + " 9x εὐχαριστήσας + " 2x εὐχαριστία + " 4x εὐχαριστίαν + " 5x εὐχαριστίας + " 3x εὐχαριστίᾳ + " 2x εὐχαριστεῖ + " 1x εὐχαριστεῖν + " 1x εὐχαριστεῖς + " 1x εὐχαριστεῖτε + " 1x εὐχαριστηθῇ + " 1x εὐχαριστιῶν + " 1x εὐχαριστοῦμεν + " 3x εὐχαριστοῦντες + " 7x εὐχαριστῶ + " 2x εὐχαριστῶν + " 2x εὐχόμεθα + " 1x εὐψυχῶ + " 1x εὐωδία + " 2x εὐωδίας + " 7x εὐωνύμων + " 2x εὐώνυμον + " 1x εὑράμενος + " 13x εὑρέθη + " 1x εὑρέθημεν + " 2x εὑρέθησαν + " 1x εὑρήκαμεν + " 8x εὑρήσει + " 1x εὑρήσεις + " 10x εὑρήσετε + " 1x εὑρήσομεν + " 2x εὑρήσουσιν + " 12x εὑρίσκει + " 1x εὑρίσκομεν + " 1x εὑρίσκον + " 2x εὑρίσκοντες + " 6x εὑρίσκω + " 1x εὑρεθήσεται + " 1x εὑρεθείς + " 1x εὑρεθησόμεθα + " 1x εὑρεθῆναι + " 1x εὑρεθῆτε + " 4x εὑρεθῇ + " 2x εὑρεθῶ + " 1x εὑρεθῶσιν + " 5x εὑρεῖν + " 1x εὑρηκέναι + " 1x εὑρισκόμεθα + " 1x εὑροῦσα + " 1x εὑροῦσαι + " 8x εὑρόντες + " 10x εὑρών + " 2x εὔθετον + " 1x εὔθετος + " 1x εὔθυμοι + " 1x εὔκαιρον + " 1x εὔσημον + " 2x εὔσπλαγχνοι + " 1x εὔσχημον + " 1x εὔφημα + " 1x εὔχομαι + " 2x εὔχρηστον + " 1x εὔχρηστος + " 1x εὕραμεν + " 2x εὕρηκα + " 2x εὕρητε + " 1x εὕρισκον + " 1x εὕροιεν + " 2x εὕρομεν + " 1x εὕρω + " 1x εὕρωμεν + " 3x εὕρωσιν + " 5x εὕρῃ + " 3x εὖ + " 16x εὗρεν + " 2x εὗρες + " 32x εὗρον + " 1x ζέοντες + " 1x ζέων + " 1x ζήλευε + " 2x ζήλου + " 2x ζήλῳ + " 1x ζήσασα + " 3x ζήσει + " 1x ζήσεσθε + " 9x ζήσεται + " 1x ζήσετε + " 4x ζήσομεν + " 1x ζήσουσιν + " 1x ζήσω + " 4x ζήσωμεν + " 2x ζήσῃ + " 2x ζήτει + " 1x ζήτησιν + " 1x ζήτησις + " 1x ζήτησον + " 3x ζεστός + " 1x ζευκτηρίας + " 1x ζεῦγος + " 1x ζηλοῖ + " 1x ζηλοῦσθαι + " 1x ζηλοῦσιν + " 5x ζηλοῦτε + " 1x ζηλωτήν + " 2x ζηλωτής + " 3x ζηλωταί + " 1x ζηλώσαντες + " 1x ζηλῶ + " 3x ζημίαν + " 1x ζημίας + " 1x ζημιωθήσεται + " 1x ζημιωθείς + " 1x ζημιωθῆναι + " 1x ζημιωθῆτε + " 1x ζημιωθῇ + " 2x ζητήματα + " 1x ζητήματος + " 3x ζητήσεις + " 3x ζητήσετε + " 2x ζητήσεως + " 2x ζητήσουσιν + " 1x ζητήσῃ + " 1x ζητείτω + " 9x ζητεῖ + " 2x ζητεῖν + " 2x ζητεῖς + " 1x ζητεῖται + " 22x ζητεῖτε + " 1x ζητηθήσεται + " 2x ζητημάτων + " 1x ζητησάτω + " 1x ζητούντων + " 1x ζητοῦμεν + " 2x ζητοῦν + " 10x ζητοῦντες + " 1x ζητοῦντι + " 8x ζητοῦσιν + " 1x ζητῆσαι + " 4x ζητῶ + " 9x ζητῶν + " 7x ζιζάνια + " 1x ζιζανίων + " 4x ζυγόν + " 1x ζυγός + " 1x ζυγῷ + " 2x ζυμοῖ + " 24x ζωή + " 60x ζωήν + " 1x ζωγρῶν + " 1x ζωογονήσει + " 1x ζωογονεῖσθαι + " 1x ζωογονοῦντος + " 1x ζωοποιήσει + " 3x ζωοποιεῖ + " 1x ζωοποιεῖται + " 1x ζωοποιηθήσονται + " 1x ζωοποιηθείς + " 2x ζωοποιοῦν + " 1x ζωοποιοῦντος + " 1x ζωοποιῆσαι + " 46x ζωῆς + " 4x ζωῇ + " 1x ζόφον + " 2x ζόφος + " 1x ζόφου + " 1x ζόφῳ + " 2x ζύμη + " 1x ζύμην + " 6x ζύμης + " 4x ζύμῃ + " 2x ζώνας + " 1x ζώνη + " 5x ζώνην + " 5x ζώντων + " 1x ζώσει + " 4x ζῆλον + " 8x ζῆλος + " 12x ζῆν + " 1x ζῆτε + " 13x ζῇ + " 2x ζῇς + " 3x ζῴου + " 8x ζῴων + " 5x ζῶ + " 7x ζῶμεν + " 9x ζῶν + " 6x ζῶντα + " 4x ζῶντας + " 7x ζῶντες + " 7x ζῶντι + " 14x ζῶντος + " 1x ζῶσα + " 5x ζῶσαν + " 1x ζῶσι + " 2x ζῶσιν + " 8x ζῷα + " 4x ζῷον + " 1x ηὐδοκήσαμεν + " 2x ηὐδόκησαν + " 1x ηὐκαίρουν + " 1x ηὐλίζετο + " 1x ηὐλίσθη + " 1x ηὐφράνθη + " 1x ηὐχαρίστησαν + " 1x ηὐχόμην + " 1x ηὑρίσκετο + " 6x ηὔξανεν + " 2x ηὔξησεν + " 1x ηὔχοντο + " 2x ηὕρισκον + " 6x θάλασσα + " 42x θάλασσαν + " 1x θάλπει + " 1x θάλπῃ + " 2x θάμβος + " 1x θάμβους + " 2x θάνατε + " 26x θάνατον + " 23x θάνατος + " 1x θάρσος + " 4x θάψαι + " 3x θέατρον + " 19x θέλει + " 4x θέλειν + " 15x θέλεις + " 16x θέλετε + " 40x θέλημα + " 1x θέλησιν + " 4x θέλητε + " 3x θέλοι + " 7x θέλομεν + " 1x θέλοντα + " 1x θέλοντας + " 7x θέλοντες + " 2x θέλοντι + " 2x θέλοντος + " 6x θέλουσιν + " 32x θέλω + " 13x θέλων + " 1x θέλωσι + " 8x θέλῃ + " 4x θέλῃς + " 2x θέμενος + " 1x θέντες + " 1x θέντος + " 1x θέρισον + " 1x θέρμης + " 3x θέρος + " 1x θέτε + " 1x θήκην + " 1x θήλειαι + " 1x θήραν + " 2x θήσει + " 1x θήσεις + " 3x θήσω + " 2x θίγῃ + " 1x θίγῃς + " 29x θαλάσσης + " 12x θαλάσσῃ + " 1x θανάσιμον + " 1x θανάτοις + " 53x θανάτου + " 14x θανάτῳ + " 1x θανατηφόρου + " 1x θανατούμεθα + " 1x θανατούμενοι + " 1x θανατοῦτε + " 1x θανατωθείς + " 3x θανατώσουσιν + " 1x θανατώσωσιν + " 2x θανατῶσαι + " 1x θαρροῦμεν + " 1x θαρροῦντας + " 1x θαρρῆσαι + " 2x θαρρῶ + " 1x θαρσεῖτε + " 2x θαυμάζειν + " 4x θαυμάζετε + " 1x θαυμάζητε + " 2x θαυμάζοντες + " 1x θαυμάζων + " 1x θαυμάσαι + " 1x θαυμάσαντες + " 1x θαυμάσατε + " 1x θαυμάσια + " 1x θαυμάσῃς + " 2x θαυμαζόντων + " 1x θαυμασθήσονται + " 1x θαυμασθῆναι + " 1x θαυμαστά + " 2x θαυμαστή + " 3x θαυμαστόν + " 1x θαψάντων + " 2x θαῦμα + " 4x θεάσασθαι + " 1x θεάσασθε + " 1x θεέ + " 2x θείας + " 2x θείου + " 4x θείς + " 3x θείῳ + " 2x θεαθῆναι + " 2x θεασάμενοι + " 3x θεασάμενος + " 1x θεασαμένοις + " 1x θεατριζόμενοι + " 1x θειότης + " 1x θειώδεις + " 2x θελήματα + " 6x θελήματι + " 14x θελήματος + " 1x θελήσαντας + " 1x θελήσω + " 1x θελήσωσιν + " 3x θελήσῃ + " 3x θελόντων + " 1x θεμέλια + " 1x θεμέλιοι + " 8x θεμέλιον + " 2x θεμέλιος + " 1x θεμελίου + " 2x θεμελίους + " 1x θεμελίῳ + " 1x θεμελιώσει + " 4x θεοί + " 1x θεοδίδακτοι + " 1x θεομάχοι + " 1x θεοσέβειαν + " 1x θεοσεβής + " 1x θεοστυγεῖς + " 2x θεούς + " 1x θεοῖς + " 2x θεοῦ + " 1x θεράπευσον + " 1x θεράπων + " 1x θερίζειν + " 1x θερίζεις + " 2x θερίζουσιν + " 1x θερίζω + " 5x θερίζων + " 1x θερίσαι + " 5x θερίσει + " 2x θερίσομεν + " 1x θεραπείαν + " 2x θεραπείας + " 1x θεραπευθῆναι + " 1x θεραπεύει + " 2x θεραπεύειν + " 1x θεραπεύεσθαι + " 1x θεραπεύεσθε + " 1x θεραπεύεται + " 2x θεραπεύετε + " 1x θεραπεύοντες + " 1x θεραπεύσει + " 1x θεραπεύσω + " 2x θεραπεύων + " 3x θεραπεῦσαι + " 1x θερισάντων + " 4x θερισμοῦ + " 3x θερισμόν + " 6x θερισμός + " 1x θερισταί + " 1x θερισταῖς + " 1x θερμαίνεσθε + " 1x θερμαινόμενον + " 3x θερμαινόμενος + " 1x θεωρήσαντες + " 1x θεωρήσουσιν + " 1x θεωρήσῃ + " 1x θεωρίαν + " 9x θεωρεῖ + " 2x θεωρεῖν + " 10x θεωρεῖτε + " 1x θεωρούντων + " 1x θεωροῦντας + " 4x θεωροῦντες + " 1x θεωροῦντος + " 2x θεωροῦσαι + " 3x θεωροῦσιν + " 1x θεωρῆσαι + " 1x θεωρῆτε + " 1x θεωρῇ + " 4x θεωρῶ + " 4x θεωρῶν + " 1x θεωρῶσιν + " 4x θεόν + " 1x θεόπνευστος + " 4x θεός + " 1x θεᾶς + " 4x θεῖναι + " 2x θεῖον + " 3x θεῷ + " 3x θηλαζούσαις + " 1x θηλαζόντων + " 1x θηλείας + " 2x θηρία + " 19x θηρίον + " 15x θηρίου + " 3x θηρίων + " 6x θηρίῳ + " 1x θηρεῦσαι + " 1x θησαυρίζειν + " 1x θησαυρίζεις + " 2x θησαυρίζετε + " 2x θησαυρίζων + " 1x θησαυροί + " 3x θησαυρούς + " 4x θησαυροῦ + " 5x θησαυρόν + " 2x θησαυρός + " 1x θησαυρῶν + " 1x θησαυρῷ + " 1x θλίβεσθαι + " 1x θλίβουσιν + " 1x θλίβωσιν + " 9x θλίψει + " 1x θλίψεις + " 6x θλίψεσιν + " 3x θλίψεων + " 9x θλίψεως + " 2x θλιβομένοις + " 1x θλιβόμεθα + " 3x θλιβόμενοι + " 10x θλῖψιν + " 7x θλῖψις + " 1x θνητά + " 3x θνητόν + " 1x θνητῇ + " 1x θνητῷ + " 1x θορυβάζῃ + " 2x θορυβεῖσθε + " 1x θορυβούμενον + " 1x θορύβου + " 1x θρέμματα + " 2x θρίξ + " 1x θρηνήσετε + " 2x θρησκεία + " 1x θρησκείας + " 1x θρησκείᾳ + " 1x θρησκός + " 1x θριαμβεύοντι + " 1x θριαμβεύσας + " 4x θριξίν + " 1x θροεῖσθαι + " 2x θροεῖσθε + " 1x θρόμβοι + " 1x θρόνοι + " 7x θρόνον + " 6x θρόνος + " 32x θρόνου + " 5x θρόνους + " 2x θρόνων + " 9x θρόνῳ + " 1x θυέλλῃ + " 11x θυγάτηρ + " 2x θυγάτριον + " 4x θυγατέρα + " 1x θυγατέρας + " 2x θυγατέρες + " 1x θυγατέρων + " 1x θυγατρί + " 4x θυγατρός + " 2x θυμιάματα + " 2x θυμιάματος + " 2x θυμιαμάτων + " 1x θυμιατήριον + " 1x θυμιᾶσαι + " 2x θυμοί + " 1x θυμομαχῶν + " 10x θυμοῦ + " 3x θυμόν + " 3x θυμός + " 2x θυρίδος + " 1x θυρεόν + " 2x θυρωρός + " 2x θυρωρῷ + " 4x θυρῶν + " 1x θυσία + " 1x θυσίαι + " 3x θυσίαις + " 10x θυσίαν + " 8x θυσίας + " 1x θυσίᾳ + " 1x θυσιαστήρια + " 6x θυσιαστήριον + " 11x θυσιαστηρίου + " 5x θυσιαστηρίῳ + " 2x θυσιῶν + " 3x θόρυβον + " 3x θόρυβος + " 1x θύγατερ + " 2x θύειν + " 1x θύεσθαι + " 2x θύουσιν + " 6x θύρα + " 2x θύραι + " 2x θύραις + " 14x θύραν + " 8x θύρας + " 3x θύρᾳ + " 1x θύσατε + " 1x θύσῃ + " 1x θύϊνον + " 2x θώρακα + " 3x θώρακας + " 3x θῆλυ + " 2x θῇ + " 2x θῦσον + " 5x θῶ + " 1x θῶμεν + " 2x κάθηται + " 2x κάθου + " 1x κάθῃ + " 1x κάκωσιν + " 6x κάλαμον + " 1x κάλαμος + " 1x κάλει + " 1x κάλλιον + " 4x κάλυμμα + " 4x κάμηλον + " 1x κάμητε + " 2x κάμινον + " 1x κάμνοντα + " 1x κάμπτω + " 1x κάμψει + " 1x κάμψῃ + " 6x κάρφος + " 10x κάτω + " 1x κέκλεισται + " 2x κέκληκεν + " 2x κέκληται + " 1x κέκλικεν + " 1x κέκραγεν + " 2x κέκρικα + " 1x κέκρικεν + " 2x κέκριται + " 1x κέκρυπται + " 2x κέλευσον + " 2x κέντρα + " 2x κέντρον + " 1x κέρας + " 8x κέρατα + " 1x κέρδη + " 1x κέρδος + " 1x κέρδους + " 1x κέρματα + " 1x κέχρημαι + " 1x κήνσου + " 2x κήπῳ + " 7x κήρυγμα + " 1x κήρυκα + " 1x κήρυξ + " 1x κήρυξον + " 1x κήτους + " 1x κίνδυνος + " 1x κίνησιν + " 8576x καί + " 1x καίγε + " 1x καίεται + " 1x καίουσιν + " 5x καίπερ + " 2x καίτοι + " 1x καίτοιγε + " 1x καθά + " 16x καθάπερ + " 1x καθάρισον + " 3x καθέδρας + " 1x καθήκοντα + " 1x καθήμεναι + " 7x καθήμενοι + " 11x καθήμενον + " 16x καθήμενος + " 2x καθήσεσθε + " 1x καθίζετε + " 6x καθίσαι + " 2x καθίσαντες + " 1x καθίσαντος + " 11x καθίσας + " 1x καθίσατε + " 1x καθίσει + " 4x καθίσταται + " 2x καθίστησιν + " 1x καθίσωμεν + " 1x καθίσωσιν + " 1x καθίσῃ + " 1x καθαίρει + " 3x καθαίρεσιν + " 1x καθαιρεῖσθαι + " 1x καθαιροῦντες + " 4x καθαρά + " 1x καθαρίζει + " 1x καθαρίζεσθαι + " 1x καθαρίζεται + " 3x καθαρίζετε + " 2x καθαρίζονται + " 1x καθαρίζων + " 3x καθαρίσαι + " 2x καθαρίσας + " 1x καθαρίσατε + " 3x καθαρίσθητι + " 1x καθαρίσωμεν + " 2x καθαρίσῃ + " 1x καθαριεῖ + " 5x καθαρισμοῦ + " 2x καθαρισμόν + " 4x καθαροί + " 1x καθαροῖς + " 7x καθαρόν + " 3x καθαρός + " 1x καθαρότητα + " 2x καθαρᾶς + " 3x καθαρᾷ + " 2x καθαρῷ + " 1x καθεζομένους + " 1x καθεζόμενοι + " 1x καθεζόμενον + " 1x καθεζόμενος + " 1x καθελεῖν + " 1x καθελόντες + " 3x καθελών + " 1x καθελῶ + " 5x καθεξῆς + " 3x καθεύδει + " 1x καθεύδειν + " 1x καθεύδεις + " 1x καθεύδετε + " 5x καθεύδοντας + " 1x καθεύδοντες + " 1x καθεύδουσιν + " 2x καθεύδωμεν + " 2x καθεύδων + " 1x καθεύδῃ + " 1x καθεῖλεν + " 1x καθεῖς + " 1x καθηγητής + " 1x καθηγηταί + " 1x καθημένην + " 1x καθημένης + " 4x καθημένοις + " 7x καθημένου + " 6x καθημένους + " 1x καθημένων + " 8x καθημένῳ + " 1x καθημερινῇ + " 1x καθιέμενον + " 1x καθιεμένην + " 1x καθιστάνοντες + " 1x καθορᾶται + " 1x καθωπλισμένος + " 4x καθό + " 1x καθόλου + " 6x καθότι + " 175x καθώς + " 1x καθώσπερ + " 2x καθῆκαν + " 1x καθῆκεν + " 2x καθῆσθαι + " 1x καθῆψεν + " 60x καθ’ + " 3x καινά + " 6x καινή + " 10x καινήν + " 1x καιναῖς + " 4x καινούς + " 2x καινοῦ + " 10x καινόν + " 1x καινότερον + " 2x καινότητι + " 3x καινῆς + " 1x καινῷ + " 1x καιομένη + " 1x καιομένης + " 1x καιομένῃ + " 3x καιροί + " 5x καιρούς + " 5x καιροῖς + " 7x καιροῦ + " 22x καιρόν + " 17x καιρός + " 3x καιρῶν + " 23x καιρῷ + " 1x καιόμεναι + " 1x καιόμενοι + " 1x καιόμενον + " 2x καιόμενος + " 6x κακά + " 1x κακήν + " 1x κακία + " 2x κακίαν + " 4x κακίας + " 4x κακίᾳ + " 1x κακαί + " 1x κακοί + " 1x κακοηθείας + " 1x κακολογοῦντες + " 1x κακολογῆσαι + " 2x κακολογῶν + " 1x κακοπάθησον + " 1x κακοπαθείας + " 1x κακοπαθῶ + " 1x κακοποιοῦντας + " 1x κακοποιός + " 2x κακοποιῆσαι + " 3x κακοποιῶν + " 1x κακουχουμένων + " 1x κακουχούμενοι + " 1x κακούργους + " 1x κακούργων + " 2x κακούς + " 8x κακοῦ + " 1x κακοῦργοι + " 1x κακοῦργος + " 24x κακόν + " 1x κακός + " 1x κακώσουσιν + " 1x κακώσων + " 4x κακῶν + " 16x κακῶς + " 2x κακῶσαι + " 1x κακῷ + " 7x καλά + " 1x καλάμην + " 1x καλάμου + " 4x καλάμῳ + " 4x καλέσαι + " 1x καλέσαντα + " 1x καλέσαντες + " 4x καλέσαντος + " 6x καλέσας + " 1x καλέσατε + " 3x καλέσεις + " 1x καλέσητε + " 1x καλέσουσιν + " 11x καλήν + " 4x καλεῖ + " 1x καλεῖν + " 3x καλεῖσθαι + " 5x καλεῖται + " 1x καλεῖτε + " 1x καλλιέλαιον + " 1x καλοί + " 1x καλοδιδασκάλους + " 1x καλοποιοῦντες + " 3x καλουμένη + " 3x καλουμένην + " 1x καλουμένης + " 2x καλουμένου + " 3x καλουμένῃ + " 11x καλούμενον + " 7x καλούμενος + " 3x καλούς + " 3x καλοῖς + " 3x καλοῦ + " 1x καλοῦνται + " 1x καλοῦντες + " 4x καλοῦντος + " 1x καλοῦσα + " 53x καλόν + " 7x καλός + " 2x καλύπτει + " 1x καλύπτεσθαι + " 1x καλύψει + " 2x καλῆς + " 2x καλῇ + " 7x καλῶν + " 30x καλῶς + " 1x καλῷ + " 2x καμήλου + " 1x καμίνου + " 1x καμίνῳ + " 1x κανόνα + " 2x κανόνι + " 1x κανόνος + " 1x καπηλεύοντες + " 5x καπνοῦ + " 2x καπνόν + " 6x καπνός + " 19x καρδία + " 2x καρδίαι + " 21x καρδίαις + " 18x καρδίαν + " 57x καρδίας + " 35x καρδίᾳ + " 1x καρδιογνώστης + " 1x καρδιογνῶστα + " 4x καρδιῶν + " 1x καρποφορήσωμεν + " 2x καρποφορεῖ + " 1x καρποφορούμενον + " 1x καρποφοροῦντες + " 2x καρποφοροῦσιν + " 1x καρποφορῆσαι + " 1x καρποφόρους + " 10x καρπούς + " 4x καρποῦ + " 38x καρπόν + " 8x καρπός + " 6x καρπῶν + " 319x κατά + " 4x κατάβηθι + " 1x κατάδηλον + " 1x κατάθεμα + " 1x κατάκειται + " 3x κατάκριμα + " 1x κατάκρισιν + " 1x κατάλοιποι + " 1x κατάλυε + " 2x κατάλυμα + " 8x κατάπαυσιν + " 2x κατάρα + " 1x κατάραν + " 3x κατάρας + " 1x κατάρτισιν + " 1x κατάσχεσιν + " 2x κατάσχωμεν + " 1x κατάφαγε + " 2x κατέαξαν + " 3x κατέβαινεν + " 13x κατέβη + " 1x κατέβην + " 5x κατέβησαν + " 1x κατέδησεν + " 1x κατέδραμεν + " 1x κατέθηκεν + " 1x κατέκαιον + " 4x κατέκειτο + " 2x κατέκλασεν + " 1x κατέκλεισα + " 1x κατέκλεισεν + " 1x κατέκλιναν + " 1x κατέκριναν + " 4x κατέκρινεν + " 2x κατέλαβεν + " 1x κατέλειπεν + " 1x κατέλιπε + " 2x κατέλιπεν + " 1x κατέλιπον + " 1x κατέλυσα + " 9x κατέναντι + " 1x κατένευσαν + " 1x κατέπαυσαν + " 3x κατέπαυσεν + " 1x κατέπεσεν + " 1x κατέπιεν + " 1x κατέπλευσαν + " 1x κατέσεισεν + " 1x κατέσκαψαν + " 5x κατέστησεν + " 2x κατέστρεψεν + " 4x κατέφαγεν + " 1x κατέφαγον + " 1x κατέφυγον + " 2x κατέχεεν + " 2x κατέχειν + " 3x κατέχετε + " 1x κατέχον + " 2x κατέχοντες + " 1x κατέχουσιν + " 1x κατέχωμεν + " 1x κατέχων + " 2x κατήγαγον + " 1x κατήγγειλαν + " 1x κατήγγελλον + " 3x κατήγοροι + " 1x κατήγωρ + " 1x κατήλθαμεν + " 1x κατήλθομεν + " 1x κατήνεγκα + " 1x κατήντηκεν + " 2x κατήντησαν + " 2x κατήντησεν + " 1x κατήργηκα + " 3x κατήργηται + " 1x κατήφειαν + " 1x κατήχηνται + " 1x κατήχθημεν + " 1x κατίσχυον + " 1x κατίωται + " 1x καταβάν + " 2x καταβάντες + " 12x καταβάς + " 1x καταβάσει + " 5x καταβάτω + " 2x καταβέβηκα + " 2x καταβήσεται + " 2x καταβήσῃ + " 2x καταβαίνει + " 1x καταβαίνειν + " 3x καταβαίνοντα + " 1x καταβαίνοντας + " 1x καταβαίνοντες + " 1x καταβαίνοντος + " 1x καταβαίνουσα + " 3x καταβαίνουσαν + " 2x καταβαίνων + " 2x καταβαινόντων + " 2x καταβαλλόμενοι + " 1x καταβαρυνόμενοι + " 7x καταβαῖνον + " 1x καταβεβηκότες + " 1x καταβολήν + " 10x καταβολῆς + " 1x καταβραβευέτω + " 2x καταβῆναι + " 2x καταβῇ + " 1x καταγάγῃ + " 1x καταγάγῃς + " 1x καταγαγεῖν + " 1x καταγαγόντες + " 1x καταγαγών + " 2x καταγγέλλειν + " 3x καταγγέλλεται + " 1x καταγγέλλετε + " 1x καταγγέλλομεν + " 4x καταγγέλλουσιν + " 2x καταγγέλλω + " 1x καταγγέλλων + " 1x καταγγελεύς + " 2x καταγινώσκῃ + " 1x καταδίκην + " 1x καταδικάζετε + " 1x καταδικασθήσῃ + " 1x καταδικασθῆτε + " 1x καταδουλοῖ + " 1x καταδουλώσουσιν + " 1x καταδυναστευομένους + " 1x καταδυναστεύουσιν + " 2x καταθέσθαι + " 1x καταθεματίζειν + " 2x καταισχυνθήσεται + " 1x καταισχυνθῇ + " 1x καταισχυνθῶμεν + " 1x καταισχυνθῶσιν + " 3x καταισχύνει + " 1x καταισχύνετε + " 2x καταισχύνῃ + " 1x κατακέκριται + " 1x κατακαήσεται + " 2x κατακαίεται + " 1x κατακαλυπτέσθω + " 1x κατακαλύπτεσθαι + " 1x κατακαλύπτεται + " 1x κατακαυθήσεται + " 1x κατακαυχᾶσαι + " 1x κατακαυχᾶσθε + " 1x κατακαυχᾶται + " 1x κατακαυχῶ + " 2x κατακαύσει + " 1x κατακαύσουσιν + " 1x κατακαῦσαι + " 1x κατακείμενοι + " 3x κατακείμενον + " 1x κατακειμένου + " 2x κατακεῖσθαι + " 1x κατακλιθῆναι + " 1x κατακλιθῇς + " 1x κατακλυσθείς + " 1x κατακλυσμοῦ + " 1x κατακλυσμόν + " 2x κατακλυσμός + " 1x κατακολουθοῦσα + " 1x κατακρίνεις + " 1x κατακρίνω + " 1x κατακρίσεως + " 1x κατακρημνίσαι + " 1x κατακριθήσεται + " 1x κατακριθῶμεν + " 2x κατακρινεῖ + " 4x κατακρινοῦσιν + " 1x κατακρινῶν + " 1x κατακυριεύοντες + " 2x κατακυριεύουσιν + " 1x κατακυριεύσας + " 1x κατακόπτων + " 1x καταλάβητε + " 1x καταλάβω + " 3x καταλάβῃ + " 1x καταλάλους + " 1x καταλίπῃ + " 1x καταλαβέσθαι + " 1x καταλαβόμενοι + " 1x καταλαλεῖ + " 1x καταλαλεῖσθε + " 1x καταλαλεῖτε + " 1x καταλαλιάς + " 1x καταλαλιαί + " 1x καταλαλοῦσιν + " 1x καταλαλῶν + " 1x καταλαμβάνομαι + " 1x καταλείπει + " 1x καταλείψαντας + " 3x καταλείψει + " 1x καταλεγέσθω + " 1x καταλειπομένης + " 1x καταλειπόντες + " 1x καταλειφθῆναι + " 1x καταλελειμμένος + " 1x καταλιθάσει + " 1x καταλιπόντες + " 6x καταλιπών + " 1x καταλλάγητε + " 1x καταλλάξαντος + " 1x καταλλάσσων + " 1x καταλλαγέντες + " 1x καταλλαγή + " 1x καταλλαγήν + " 1x καταλλαγήτω + " 2x καταλλαγῆς + " 3x καταλυθήσεται + " 2x καταλυθῇ + " 1x καταλύματι + " 1x καταλύσει + " 1x καταλύσω + " 1x καταλύσωσιν + " 2x καταλύων + " 5x καταλῦσαι + " 1x καταμάθετε + " 1x καταμένοντες + " 3x καταμαρτυροῦσιν + " 1x καταμενῶ + " 1x καταναλίσκον + " 1x καταναρκήσω + " 1x κατανοήσας + " 3x κατανοήσατε + " 2x κατανοεῖς + " 1x κατανοοῦντι + " 2x κατανοῆσαι + " 1x κατανοῶμεν + " 1x καταντήσαντες + " 1x καταντήσω + " 1x καταντήσωμεν + " 1x καταντῆσαι + " 1x κατανύξεως + " 1x καταξιωθέντες + " 1x καταξιωθῆναι + " 4x καταπέτασμα + " 1x καταπίνοντες + " 1x καταπίπτειν + " 1x καταπατήσας + " 1x καταπατήσουσιν + " 1x καταπατεῖν + " 1x καταπατεῖσθαι + " 1x καταπαύσεως + " 1x καταπεσόντων + " 2x καταπετάσματος + " 1x καταπιεῖν + " 2x καταποθῇ + " 1x καταπονουμένῳ + " 1x καταπονούμενον + " 1x καταποντίζεσθαι + " 1x καταποντισθῇ + " 1x καταργήσαντος + " 1x καταργήσας + " 3x καταργήσει + " 3x καταργήσῃ + " 1x καταργεῖ + " 2x καταργεῖται + " 2x καταργηθήσεται + " 1x καταργηθήσονται + " 1x καταργηθῇ + " 1x καταργουμένην + " 1x καταργουμένου + " 1x καταργουμένων + " 1x καταργούμενον + " 1x καταργοῦμεν + " 1x καταργῆσαι + " 1x καταρτίζεσθε + " 1x καταρτίζετε + " 2x καταρτίζοντας + " 2x καταρτίσαι + " 1x καταρτίσει + " 1x καταρτισμόν + " 1x καταρωμένους + " 1x καταρώμεθα + " 1x καταρᾶσθε + " 3x κατασείσας + " 1x κατασκευάζεται + " 2x κατασκευάσας + " 3x κατασκευάσει + " 1x κατασκευαζομένης + " 2x κατασκηνοῖν + " 1x κατασκηνώσει + " 2x κατασκηνώσεις + " 1x κατασκιάζοντα + " 1x κατασκοπῆσαι + " 1x κατασκόπους + " 1x κατασοφισάμενος + " 1x καταστήματι + " 3x καταστήσει + " 1x καταστήσομεν + " 2x καταστήσω + " 1x καταστήσῃς + " 1x κατασταθήσονται + " 1x καταστείλας + " 1x καταστολῇ + " 1x καταστρηνιάσωσιν + " 2x καταστροφῇ + " 1x κατασφάξατε + " 1x κατασχέσει + " 1x κατασύρῃ + " 1x κατατομήν + " 1x καταφάγεται + " 1x καταφάγῃ + " 1x καταφέροντες + " 1x καταφαγών + " 1x καταφερόμενος + " 1x καταφιλοῦσα + " 1x καταφρονήσας + " 2x καταφρονήσει + " 1x καταφρονήσητε + " 1x καταφρονείτω + " 1x καταφρονείτωσαν + " 1x καταφρονεῖς + " 1x καταφρονεῖτε + " 1x καταφρονηταί + " 1x καταφρονοῦντας + " 1x καταφυγόντες + " 1x καταχθέντες + " 1x καταχθονίων + " 1x καταχρήσασθαι + " 1x καταχρώμενοι + " 1x καταψύξῃ + " 1x κατεάξει + " 1x κατείδωλον + " 1x κατείχετο + " 1x κατεαγῶσιν + " 1x κατεβάρησα + " 3x κατεγέλων + " 1x κατεγνωσμένος + " 1x κατεδίωξεν + " 2x κατεδικάσατε + " 1x κατειλημμένην + " 1x κατειληφέναι + " 3x κατειργάσατο + " 1x κατειργάσθαι + " 1x κατειργάσθη + " 1x κατειχόμεθα + " 3x κατεκάη + " 1x κατεκλίθη + " 1x κατεκληρονόμησεν + " 1x κατεκρίθη + " 1x κατελήμφθην + " 1x κατελήφθη + " 1x κατελαβόμην + " 1x κατελείφθη + " 1x κατελθεῖν + " 1x κατελθόντες + " 1x κατελθόντων + " 3x κατελθών + " 2x κατενάρκησα + " 1x κατενεχθείς + " 2x κατενόησεν + " 2x κατενόουν + " 1x κατενύγησαν + " 3x κατενώπιον + " 2x κατεξουσιάζουσιν + " 1x κατεπέστησαν + " 1x κατεπατήθη + " 1x κατεπόθησαν + " 1x κατεργάζεσθαι + " 1x κατεργάζεσθε + " 6x κατεργάζεται + " 3x κατεργάζομαι + " 1x κατεργαζομένη + " 1x κατεργαζομένου + " 1x κατεργαζόμενοι + " 1x κατεργασάμενοι + " 1x κατεργασάμενον + " 1x κατεργασάμενος + " 1x κατερχομένη + " 2x κατεσθίει + " 1x κατεσθίετε + " 1x κατεσθίοντες + " 1x κατεσθίουσιν + " 1x κατεσκήνωσεν + " 1x κατεσκευάσθη + " 1x κατεσκευασμένον + " 1x κατεσκευασμένων + " 1x κατεσκεύασεν + " 1x κατεστάθησαν + " 1x κατεσταλμένους + " 1x κατεστραμμένα + " 1x κατεστρώθησαν + " 1x κατεσφραγισμένον + " 2x κατευθύναι + " 1x κατευθῦναι + " 1x κατευλόγει + " 1x κατεφίλει + " 3x κατεφίλησεν + " 1x κατεφίλουν + " 1x κατεφθαρμένοι + " 1x κατεχόντων + " 2x κατεῖχον + " 1x κατηγγέλη + " 1x κατηγγείλαμεν + " 1x κατηγορήσω + " 2x κατηγορήσωσιν + " 2x κατηγορίαν + " 1x κατηγορίᾳ + " 1x κατηγορείτωσαν + " 6x κατηγορεῖν + " 1x κατηγορεῖσθαι + " 1x κατηγορεῖται + " 1x κατηγορεῖτε + " 1x κατηγορούμενος + " 1x κατηγορούντων + " 1x κατηγοροῦμεν + " 1x κατηγοροῦντες + " 3x κατηγοροῦσιν + " 2x κατηγορῶν + " 1x κατηγωνίσαντο + " 1x κατηγόροις + " 1x κατηγόρουν + " 1x κατηγόρους + " 1x κατηλλάγημεν + " 3x κατηντήσαμεν + " 1x κατηξιώθησαν + " 1x κατηράσω + " 1x κατηραμένοι + " 1x κατηργήθημεν + " 1x κατηργήθητε + " 1x κατηριθμημένος + " 1x κατηρτίσθαι + " 2x κατηρτίσω + " 1x κατηρτισμένα + " 1x κατηρτισμένοι + " 1x κατηρτισμένος + " 1x κατηχήθης + " 1x κατηχήθησαν + " 1x κατηχήσω + " 1x κατηχημένος + " 2x κατηχούμενος + " 1x κατηχοῦντι + " 1x κατισχύσητε + " 1x κατισχύσουσιν + " 1x κατοίκησιν + " 1x κατοικήσας + " 1x κατοικίας + " 7x κατοικεῖ + " 1x κατοικεῖν + " 1x κατοικεῖς + " 1x κατοικεῖτε + " 2x κατοικητήριον + " 2x κατοικούντων + " 9x κατοικοῦντας + " 9x κατοικοῦντες + " 1x κατοικοῦντι + " 5x κατοικοῦσιν + " 3x κατοικῆσαι + " 1x κατοικῶν + " 1x κατοπτριζόμενοι + " 1x κατωτέρω + " 1x κατώτερα + " 1x κατῃσχύνθην + " 1x κατῃσχύνοντο + " 2x κατῆλθεν + " 4x κατῆλθον + " 3x κατῴκησεν + " 1x κατῴκισεν + " 84x κατ’ + " 1x καυθήσομαι + " 1x καυματίσαι + " 2x καυσούμενα + " 3x καυχάσθω + " 1x καυχήματος + " 2x καυχήσασθαι + " 3x καυχήσεως + " 2x καυχήσηται + " 5x καυχήσομαι + " 2x καυχήσωμαι + " 1x καυχήσωνται + " 1x καυχησόμεθα + " 1x καυχωμένους + " 2x καυχώμεθα + " 3x καυχώμενοι + " 2x καυχώμενος + " 3x καυχᾶσαι + " 2x καυχᾶσθαι + " 1x καυχᾶσθε + " 1x καυχῶμαι + " 2x καυχῶνται + " 1x καύσωνα + " 1x καύσωνι + " 10x καύχημα + " 2x καύχησιν + " 6x καύχησις + " 2x καῦμα + " 1x καῦσιν + " 1x κείμεθα + " 3x κείμενα + " 1x κείμεναι + " 4x κείμενον + " 1x κείμενος + " 1x κείρασθαι + " 1x κείροντος + " 1x κειμένη + " 1x κειμένην + " 1x κειράμενος + " 1x κειράσθω + " 1x κειρίαις + " 1x κεκάθικεν + " 1x κεκένωται + " 1x κεκαθαρισμένους + " 3x κεκαλυμμένον + " 1x κεκαυμένῳ + " 1x κεκαυστηριασμένων + " 1x κεκαύχημαι + " 1x κεκερασμένου + " 1x κεκλεισμένον + " 2x κεκλεισμένων + " 1x κεκληκότι + " 1x κεκληκώς + " 3x κεκλημένοι + " 2x κεκλημένοις + " 1x κεκλημένος + " 2x κεκλημένους + " 1x κεκλημένων + " 1x κεκληρονόμηκεν + " 2x κεκοίμηται + " 1x κεκοίνωκεν + " 2x κεκοιμημένων + " 1x κεκοινωμένους + " 1x κεκοινώνηκεν + " 1x κεκονιαμένε + " 1x κεκονιαμένοις + " 1x κεκοπίακα + " 1x κεκοπίακες + " 1x κεκοπιάκασιν + " 1x κεκοπιάκατε + " 1x κεκοπιακώς + " 1x κεκορεσμένοι + " 1x κεκοσμημένην + " 1x κεκοσμημένοι + " 2x κεκοσμημένον + " 1x κεκράτηνται + " 1x κεκρίκατε + " 1x κεκρίκει + " 1x κεκρατηκέναι + " 1x κεκριμένα + " 1x κεκρυμμένα + " 1x κεκρυμμένον + " 1x κεκρυμμένος + " 1x κεκρυμμένου + " 1x κεκρυμμένῳ + " 1x κεκυρωμένην + " 1x κεκόσμηται + " 1x κελεύεις + " 1x κελεύσαντες + " 1x κελεύσαντος + " 2x κελεύσας + " 1x κελεύσματι + " 1x κενά + " 1x κενέ + " 3x κενή + " 1x κενοδοξίαν + " 2x κενοφωνίας + " 1x κενούς + " 1x κενοῖς + " 1x κεντυρίων + " 1x κεντυρίωνα + " 1x κεντυρίωνος + " 2x κενωθῇ + " 1x κενόδοξοι + " 9x κενόν + " 1x κενός + " 1x κενώσει + " 1x κενῆς + " 1x κενῶς + " 2x κεράμιον + " 1x κεράμων + " 1x κεράσατε + " 2x κεράτων + " 1x κεραία + " 1x κεραίαν + " 2x κεραμέως + " 1x κεραμεύς + " 1x κεραμικά + " 1x κερατίων + " 1x κερδάνω + " 1x κερδήσας + " 1x κερδήσομεν + " 5x κερδήσω + " 1x κερδήσῃ + " 1x κερδηθήσονται + " 2x κερδῆσαι + " 1x κερματιστάς + " 13x κεφαλάς + " 11x κεφαλή + " 28x κεφαλήν + " 1x κεφαλίδι + " 3x κεφαλαί + " 1x κεφαλαίου + " 14x κεφαλῆς + " 4x κεφαλῇ + " 1x κεφαλῶν + " 2x κεχάρισμαι + " 2x κεχάρισται + " 1x κεχαριτωμένη + " 1x κεχρημάτισται + " 1x κεχρηματισμένον + " 2x κεχρυσωμένη + " 1x κεχωρισμένος + " 1x κεῖμαι + " 7x κεῖται + " 1x κημώσεις + " 1x κηπουρός + " 1x κηρυχθέντος + " 2x κηρυχθήσεται + " 1x κηρυχθείς + " 2x κηρυχθῆναι + " 2x κηρυχθῇ + " 1x κηρύγματι + " 1x κηρύγματος + " 1x κηρύξαι + " 1x κηρύξας + " 2x κηρύξατε + " 1x κηρύξω + " 1x κηρύξωσιν + " 2x κηρύσσει + " 6x κηρύσσειν + " 1x κηρύσσεται + " 1x κηρύσσετε + " 4x κηρύσσομεν + " 1x κηρύσσοντα + " 1x κηρύσσοντας + " 1x κηρύσσοντος + " 1x κηρύσσουσιν + " 2x κηρύσσω + " 13x κηρύσσων + " 2x κηρῦξαι + " 1x κιβωτοῦ + " 4x κιβωτόν + " 1x κιβωτός + " 1x κιθάρα + " 1x κιθάραις + " 1x κιθάραν + " 1x κιθάρας + " 1x κιθαριζόμενον + " 1x κιθαριζόντων + " 2x κιθαρῳδῶν + " 1x κινήσω + " 1x κινδυνεύει + " 2x κινδυνεύομεν + " 8x κινδύνοις + " 1x κιννάμωμον + " 1x κινούμεθα + " 1x κινοῦντα + " 2x κινοῦντες + " 1x κινῆσαι + " 2x κλάδοι + " 2x κλάδοις + " 2x κλάδος + " 2x κλάδους + " 3x κλάδων + " 1x κλάσαι + " 4x κλάσας + " 2x κλάσει + " 2x κλάσματα + " 1x κλέος + " 4x κλέπται + " 1x κλέπτειν + " 1x κλέπτεις + " 12x κλέπτης + " 2x κλέπτουσιν + " 1x κλέπτων + " 2x κλέψεις + " 1x κλέψωσιν + " 1x κλέψῃ + " 2x κλέψῃς + " 1x κλήματα + " 1x κλήρου + " 2x κλήρους + " 1x κλήρων + " 2x κλήσει + " 6x κλήσεως + " 2x κλίβανον + " 1x κλίμασι + " 1x κλίμασιν + " 1x κλίματα + " 1x κλίνας + " 1x κλίνειν + " 4x κλίνην + " 4x κλίνης + " 2x κλίνῃ + " 1x κλαίειν + " 2x κλαίεις + " 4x κλαίετε + " 2x κλαίοντας + " 6x κλαίοντες + " 3x κλαίουσα + " 1x κλαίουσαι + " 1x κλαίουσαν + " 2x κλαίουσιν + " 1x κλαίων + " 1x κλαιόντων + " 7x κλασμάτων + " 9x κλαυθμός + " 2x κλαύσατε + " 2x κλαύσετε + " 1x κλαύσουσιν + " 1x κλαύσῃ + " 2x κλαῖε + " 1x κλείετε + " 1x κλείς + " 1x κλείσας + " 1x κλείσει + " 1x κλείσῃ + " 1x κλείων + " 1x κλεισθῶσιν + " 1x κλεμμάτων + " 1x κλεπτέτω + " 1x κλεῖδα + " 1x κλεῖδας + " 2x κλεῖν + " 1x κλεῖς + " 2x κλεῖσαι + " 1x κληθέν + " 1x κληθέντος + " 11x κληθήσεται + " 2x κληθήσονται + " 2x κληθήσῃ + " 2x κληθείς + " 3x κληθῆναι + " 2x κληθῆτε + " 2x κληθῇς + " 1x κληθῶμεν + " 1x κληρονομήσατε + " 3x κληρονομήσει + " 1x κληρονομήσητε + " 4x κληρονομήσουσιν + " 3x κληρονομήσω + " 3x κληρονομία + " 7x κληρονομίαν + " 4x κληρονομίας + " 1x κληρονομεῖ + " 1x κληρονομεῖν + " 1x κληρονομούντων + " 2x κληρονομῆσαι + " 5x κληρονόμοι + " 1x κληρονόμοις + " 2x κληρονόμον + " 6x κληρονόμος + " 1x κληρονόμους + " 3x κλητοί + " 5x κλητοῖς + " 2x κλητός + " 1x κλινίδιον + " 1x κλιναρίων + " 1x κλινιδίῳ + " 1x κλινουσῶν + " 1x κλισίας + " 2x κλοπαί + " 1x κλυδωνιζόμενοι + " 2x κλύδωνι + " 3x κλῆμα + " 5x κλῆρον + " 2x κλῆρος + " 2x κλῆσιν + " 1x κλῆσις + " 1x κλῶμεν + " 1x κλῶντες + " 1x κνηθόμενοι + " 2x κοίνου + " 1x κοίταις + " 1x κοίτη + " 2x κοίτην + " 1x κοδράντην + " 1x κοδράντης + " 4x κοιλία + " 1x κοιλίαι + " 5x κοιλίαν + " 7x κοιλίας + " 6x κοιλίᾳ + " 1x κοιμήσεως + " 2x κοιμηθέντας + " 1x κοιμηθέντες + " 1x κοιμηθησόμεθα + " 1x κοιμηθῇ + " 1x κοιμωμένους + " 2x κοιμωμένων + " 1x κοιμώμενος + " 1x κοιμῶνται + " 2x κοινά + " 1x κοινήν + " 2x κοιναῖς + " 6x κοινοῖ + " 2x κοινοῦντα + " 7x κοινωνία + " 7x κοινωνίαν + " 3x κοινωνίας + " 2x κοινωνίᾳ + " 1x κοινωνεῖ + " 1x κοινωνεῖτε + " 1x κοινωνικούς + " 6x κοινωνοί + " 1x κοινωνούς + " 1x κοινωνοῦντες + " 1x κοινωνόν + " 2x κοινωνός + " 8x κοινόν + " 1x κοινώνει + " 1x κοινῆς + " 2x κοινῶσαι + " 1x κοιτῶνος + " 1x κοκκίνην + " 2x κοκκίνου + " 1x κολάσωνται + " 1x κολαζομένους + " 1x κολακίας + " 1x κολαφίζειν + " 1x κολαφίζῃ + " 1x κολαφιζόμεθα + " 1x κολαφιζόμενοι + " 1x κολλήθητι + " 1x κολληθέντα + " 1x κολληθέντες + " 1x κολληθήσεται + " 1x κολλούριον + " 3x κολλυβιστῶν + " 1x κολλώμενοι + " 2x κολλώμενος + " 3x κολλᾶσθαι + " 1x κολοβωθήσονται + " 1x κολυμβήθρα + " 2x κολυμβήθραν + " 1x κολυμβήθρᾳ + " 1x κολυμβᾶν + " 1x κολωνία + " 1x κομίσασα + " 2x κομίσεται + " 1x κομίσησθε + " 1x κομίσηται + " 1x κομιεῖσθε + " 1x κομιζόμενοι + " 1x κομισάμενοι + " 1x κομψότερον + " 2x κομᾷ + " 5x κονιορτόν + " 1x κοπετόν + " 1x κοπιάσαντες + " 1x κοπιάτω + " 1x κοπιώσας + " 1x κοπιῶ + " 2x κοπιῶμεν + " 1x κοπιῶντα + " 2x κοπιῶντας + " 2x κοπιῶντες + " 1x κοπιῶντι + " 1x κοπιῶσιν + " 1x κοπρίαν + " 1x κοπῆς + " 5x κοράσιον + " 3x κορασίῳ + " 1x κορβανᾶν + " 1x κορεσθέντες + " 1x κοσμίῳ + " 1x κοσμεῖν + " 1x κοσμεῖτε + " 1x κοσμικάς + " 1x κοσμικόν + " 1x κοσμοκράτορας + " 1x κοσμῶσιν + " 1x κουστωδίαν + " 2x κουστωδίας + " 4x κοφίνους + " 1x κοφίνων + " 1x κούμ + " 8x κράβαττον + " 5x κράζει + " 1x κράζειν + " 1x κράζομεν + " 1x κράζοντας + " 5x κράζοντες + " 1x κράζουσιν + " 2x κράζων + " 1x κράξαντες + " 4x κράξας + " 1x κράξουσιν + " 1x κράσπεδα + " 2x κράτει + " 3x κράτιστε + " 10x κράτος + " 1x κράτους + " 2x κρέα + " 1x κρέμαται + " 21x κρίμα + " 2x κρίματα + " 2x κρίματι + " 2x κρίματος + " 2x κρίνα + " 1x κρίναντας + " 2x κρίναντες + " 1x κρίναντος + " 1x κρίνας + " 6x κρίνατε + " 7x κρίνει + " 4x κρίνειν + " 4x κρίνεις + " 5x κρίνεσθαι + " 5x κρίνεται + " 9x κρίνετε + " 3x κρίνομαι + " 2x κρίνοντα + " 2x κρίνοντες + " 1x κρίνοντι + " 7x κρίνω + " 1x κρίνωμεν + " 9x κρίνων + " 1x κρίνῃ + " 7x κρίσει + " 2x κρίσεις + " 15x κρίσεως + " 15x κρίσιν + " 8x κρίσις + " 1x κραβάττοις + " 1x κραβάττου + " 1x κραβάττων + " 1x κραιπάλῃ + " 1x κρανίου + " 4x κρασπέδου + " 3x κρατήσαντες + " 6x κρατήσας + " 3x κρατήσατε + " 1x κρατήσει + " 1x κρατήσωσιν + " 1x κρατίστῳ + " 1x κραταιάν + " 1x κραταιοῦσθε + " 1x κραταιωθῆναι + " 1x κρατεῖν + " 1x κρατεῖς + " 1x κρατεῖσθαι + " 2x κρατεῖτε + " 3x κρατοῦντας + " 1x κρατοῦντες + " 1x κρατοῦσιν + " 4x κρατῆσαι + " 1x κρατῆτε + " 1x κρατῶμεν + " 2x κρατῶν + " 1x κραυγάζοντα + " 1x κραυγάσει + " 4x κραυγή + " 1x κραυγαζόντων + " 1x κραυγῆς + " 1x κραυγῇ + " 2x κρείσσονα + " 6x κρείττονος + " 2x κρείττοσιν + " 1x κρείττων + " 1x κρεμάμενον + " 1x κρεμάμενος + " 2x κρεμάσαντες + " 1x κρεμασθέντων + " 1x κρεμασθῇ + " 3x κρεῖσσον + " 5x κρεῖττον + " 3x κρημνοῦ + " 1x κριθήσεσθε + " 1x κριθήσονται + " 1x κριθίνους + " 1x κριθίνων + " 3x κριθῆναι + " 3x κριθῆτε + " 1x κριθῶν + " 1x κριθῶσι + " 1x κριθῶσιν + " 2x κρινέτω + " 5x κρινεῖ + " 1x κρινοῦμεν + " 1x κρινοῦσιν + " 1x κρινόμενοι + " 1x κρινόμενος + " 1x κρινῶ + " 1x κριτάς + " 3x κριτήν + " 2x κριτήρια + " 8x κριτής + " 3x κριταί + " 1x κριτηρίων + " 1x κριτικός + " 1x κριτῇ + " 1x κρούειν + " 2x κρούετε + " 2x κρούοντι + " 2x κρούσαντος + " 1x κρούω + " 1x κρούων + " 2x κρυβῆναι + " 4x κρυπτά + " 4x κρυπτόν + " 1x κρυπτός + " 8x κρυπτῷ + " 1x κρυστάλλῳ + " 1x κρυσταλλίζοντι + " 2x κρυφαίῳ + " 1x κρυφῇ + " 1x κρύπτην + " 1x κρύσταλλον + " 1x κρύψατε + " 1x κρᾶζον + " 1x κρῖναι + " 3x κτήματα + " 2x κτήνη + " 1x κτήσεσθε + " 1x κτήσησθε + " 1x κτήτορες + " 1x κτίσαντι + " 1x κτίσαντος + " 1x κτίσας + " 4x κτίσει + " 8x κτίσεως + " 7x κτίσις + " 2x κτίσμα + " 1x κτίσῃ + " 1x κτηνῶν + " 1x κτισθέντα + " 1x κτισθέντες + " 2x κτισμάτων + " 2x κτᾶσθαι + " 1x κτῆμα + " 1x κτῆνος + " 1x κτῶμαι + " 1x κυβίᾳ + " 1x κυβερνήσεις + " 1x κυβερνήτης + " 1x κυβερνήτῃ + " 1x κυκλουμένην + " 1x κυκλωθέντα + " 1x κυκλωσάντων + " 3x κυκλόθεν + " 1x κυλισμόν + " 2x κυλλούς + " 2x κυλλόν + " 2x κυμάτων + " 2x κυνάρια + " 2x κυναρίοις + " 1x κυρία + " 5x κυρίοις + " 11x κυρίου + " 2x κυρίων + " 1x κυρίᾳ + " 5x κυρίῳ + " 1x κυριακόν + " 1x κυριακῇ + " 1x κυριευόντων + " 2x κυριεύει + " 1x κυριεύομεν + " 1x κυριεύουσιν + " 1x κυριεύσει + " 1x κυριεύσῃ + " 1x κυριότητα + " 1x κυριότητες + " 2x κυριότητος + " 1x κυρῶσαι + " 1x κυσίν + " 1x κωλυθέντες + " 2x κωλυόντων + " 2x κωλύει + " 1x κωλύειν + " 1x κωλύεσθαι + " 6x κωλύετε + " 1x κωλύοντα + " 1x κωλύσῃς + " 2x κωλῦσαι + " 1x κωμοπόλεις + " 2x κωφοί + " 3x κωφούς + " 5x κωφόν + " 4x κωφός + " 3x κόκκινον + " 3x κόκκον + " 1x κόκκος + " 3x κόκκῳ + " 2x κόλασιν + " 1x κόλποις + " 4x κόλπον + " 1x κόλπῳ + " 1x κόμη + " 3x κόποις + " 5x κόπον + " 2x κόπος + " 1x κόπου + " 4x κόπους + " 1x κόπρια + " 1x κόπων + " 2x κόπῳ + " 1x κόρακας + " 1x κόρους + " 1x κόσμιον + " 46x κόσμον + " 32x κόσμος + " 71x κόσμου + " 36x κόσμῳ + " 1x κόφινοι + " 1x κόψαντες + " 3x κόψονται + " 8x κύκλῳ + " 2x κύματα + " 1x κύμβαλον + " 1x κύμινον + " 1x κύνας + " 2x κύνες + " 6x κύριε + " 5x κύριοι + " 4x κύριον + " 33x κύριος + " 3x κύψας + " 10x κώμας + " 13x κώμην + " 4x κώμης + " 2x κώμοις + " 1x κώνωπα + " 72x κἀγώ + " 1x κἀκείνους + " 9x κἀκεῖ + " 8x κἀκεῖθεν + " 4x κἀκεῖνα + " 7x κἀκεῖνοι + " 3x κἀκεῖνον + " 7x κἀκεῖνος + " 2x κἀμέ + " 5x κἀμοί + " 13x κἄν + " 3x κῆνσον + " 1x κῆπον + " 2x κῆπος + " 1x κῆρυξ + " 1x κῶλα + " 1x κῶμοι + " 1x λάβε + " 1x λάβετε + " 1x λάβητε + " 1x λάβοι + " 1x λάβω + " 2x λάβωμεν + " 3x λάβωσιν + " 9x λάβῃ + " 4x λάθρᾳ + " 3x λάλει + " 2x λάμπει + " 1x λάμψει + " 1x λάρυγξ + " 1x λάχανα + " 1x λάχανον + " 1x λάχωμεν + " 331x λέγει + " 40x λέγειν + " 23x λέγεις + " 4x λέγεσθαι + " 8x λέγεται + " 28x λέγετε + " 1x λέγητε + " 4x λέγομεν + " 1x λέγον + " 6x λέγοντα + " 9x λέγοντας + " 149x λέγοντες + " 1x λέγοντι + " 23x λέγοντος + " 20x λέγουσα + " 4x λέγουσαι + " 7x λέγουσαν + " 59x λέγουσιν + " 201x λέγω + " 1x λέγωμεν + " 177x λέγων + " 3x λέγωσιν + " 3x λέγῃ + " 1x λέλυσαι + " 1x λέντιον + " 1x λέοντι + " 2x λέοντος + " 3x λέπρα + " 1x λέπρας + " 2x λέων + " 1x λήθην + " 5x λήμψεσθε + " 8x λήμψεται + " 1x λήμψεως + " 4x λήμψονται + " 12x λίαν + " 1x λίβα + " 2x λίβανον + " 1x λίθινα + " 1x λίθιναι + " 4x λίθοι + " 3x λίθοις + " 23x λίθον + " 9x λίθος + " 2x λίθου + " 3x λίθους + " 2x λίθων + " 10x λίθῳ + " 1x λίμμα + " 1x λίμνη + " 8x λίμνην + " 1x λίμνης + " 1x λίμνῃ + " 2x λίνον + " 1x λίτραν + " 1x λίτρας + " 1x λαίλαπος + " 2x λαβέτω + " 22x λαβεῖν + " 6x λαβοῦσα + " 2x λαβοῦσαι + " 1x λαβόντα + " 1x λαβόντας + " 14x λαβόντες + " 40x λαβών + " 1x λαθεῖν + " 1x λακτίζειν + " 2x λαλήσαντες + " 2x λαλήσας + " 4x λαλήσει + " 3x λαλήσητε + " 1x λαλήσομεν + " 2x λαλήσουσιν + " 5x λαλήσω + " 2x λαλήσῃ + " 1x λαλείτω + " 1x λαλείτωσαν + " 19x λαλεῖ + " 21x λαλεῖν + " 4x λαλεῖς + " 1x λαλεῖσθαι + " 4x λαλεῖτε + " 1x λαληθέντος + " 1x λαληθέντων + " 4x λαληθήσεται + " 1x λαληθείς + " 1x λαληθείσης + " 1x λαληθησομένων + " 2x λαληθῆναι + " 1x λαλιά + " 2x λαλιάν + " 1x λαλουμένη + " 3x λαλουμένοις + " 2x λαλούμενον + " 4x λαλούντων + " 1x λαλούσης + " 10x λαλοῦμεν + " 2x λαλοῦν + " 1x λαλοῦντα + " 1x λαλοῦντας + " 7x λαλοῦντες + " 2x λαλοῦντι + " 18x λαλοῦντος + " 1x λαλοῦσαι + " 1x λαλοῦσαν + " 2x λαλοῦσιν + " 22x λαλῆσαι + " 1x λαλῇ + " 19x λαλῶ + " 16x λαλῶν + " 1x λαλῶσιν + " 1x λαμά + " 18x λαμβάνει + " 4x λαμβάνειν + " 1x λαμβάνεις + " 5x λαμβάνετε + " 2x λαμβάνομεν + " 5x λαμβάνοντες + " 4x λαμβάνουσιν + " 2x λαμβάνω + " 6x λαμβάνων + " 1x λαμβάνῃ + " 1x λαμβανόμενον + " 1x λαμβανόμενος + " 3x λαμπάδας + " 3x λαμπάδες + " 2x λαμπάδων + " 1x λαμπάς + " 1x λαμπρά + " 2x λαμπράν + " 3x λαμπρόν + " 1x λαμπρός + " 1x λαμπρότητα + " 2x λαμπρᾷ + " 1x λαμπρῶς + " 1x λαμψάτω + " 1x λανθάνει + " 1x λανθάνειν + " 1x λανθανέτω + " 1x λαξευτῷ + " 4x λαοί + " 2x λαοῖς + " 38x λαοῦ + " 1x λατρεία + " 2x λατρείαν + " 2x λατρείας + " 3x λατρεύειν + " 1x λατρεύοντα + " 1x λατρεύοντας + " 2x λατρεύοντες + " 1x λατρεύουσα + " 2x λατρεύουσιν + " 2x λατρεύσεις + " 2x λατρεύσουσιν + " 4x λατρεύω + " 1x λατρεύωμεν + " 1x λατρεῦον + " 2x λαχάνων + " 1x λαχοῦσιν + " 44x λαόν + " 25x λαός + " 2x λαῖλαψ + " 3x λαῶν + " 26x λαῷ + " 1x λείας + " 1x λείπει + " 1x λείπεται + " 1x λείποντα + " 1x λείπῃ + " 1x λεγέτω + " 1x λεγιῶνα + " 1x λεγιῶνας + " 2x λεγομένη + " 4x λεγομένην + " 2x λεγομένης + " 4x λεγομένοις + " 1x λεγομένου + " 7x λεγούσης + " 1x λεγόμενα + " 2x λεγόμενοι + " 10x λεγόμενον + " 12x λεγόμενος + " 6x λεγόντων + " 2x λειπόμενοι + " 5x λειτουργίας + " 1x λειτουργίᾳ + " 1x λειτουργικά + " 1x λειτουργοί + " 1x λειτουργούς + " 2x λειτουργόν + " 1x λειτουργός + " 1x λειτουργῆσαι + " 1x λειτουργῶν + " 11x λελάληκα + " 2x λελάληκεν + " 1x λελάληται + " 1x λελαλημένοις + " 1x λελατομημένον + " 1x λελουμένος + " 1x λελουσμένοι + " 1x λελυμένα + " 1x λελυμένον + " 2x λελύπηκεν + " 1x λεμά + " 1x λεντίῳ + " 1x λεπίδες + " 4x λεπροί + " 1x λεπρούς + " 2x λεπροῦ + " 2x λεπρός + " 2x λεπτά + " 1x λεπτόν + " 3x λευκά + " 2x λευκάς + " 2x λευκή + " 3x λευκήν + " 2x λευκαί + " 1x λευκαῖς + " 5x λευκοῖς + " 4x λευκόν + " 3x λευκός + " 1x λευκᾶναι + " 3x λεόντων + " 1x λημψόμεθα + " 1x ληνοῦ + " 3x ληνόν + " 1x ληνός + " 2x λιβανωτόν + " 1x λιθάζετε + " 1x λιθάζομεν + " 1x λιθάσαι + " 1x λιθάσαντες + " 1x λιθάσωσιν + " 1x λιθίναις + " 1x λιθασθῶσιν + " 1x λιθοβολεῖσθαι + " 1x λιθοβοληθήσεται + " 2x λιθοβολοῦσα + " 1x λιθοβολῆσαι + " 2x λικμήσει + " 1x λιμένα + " 1x λιμένος + " 3x λιμοί + " 1x λιμόν + " 5x λιμός + " 3x λιμῷ + " 1x λιπαρά + " 1x λοίδοροι + " 1x λοίδορος + " 1x λογίαι + " 1x λογίας + " 1x λογίζεσθαι + " 3x λογίζεσθε + " 5x λογίζεται + " 4x λογίζομαι + " 1x λογίζῃ + " 1x λογίσασθαι + " 2x λογίσηται + " 1x λογίων + " 3x λογιζέσθω + " 1x λογιζομένους + " 1x λογιζομένῳ + " 1x λογιζόμεθα + " 1x λογιζόμενος + " 1x λογικήν + " 1x λογικόν + " 1x λογισάμενος + " 1x λογισθήσεται + " 1x λογισθείη + " 2x λογισθῆναι + " 1x λογισμούς + " 1x λογισμῶν + " 1x λογομαχίας + " 1x λογομαχεῖν + " 1x λοιδορίαν + " 2x λοιδορίας + " 1x λοιδορεῖς + " 1x λοιδορούμενοι + " 1x λοιδορούμενος + " 1x λοιμοί + " 1x λοιμόν + " 3x λοιπά + " 2x λοιπάς + " 2x λοιπαί + " 15x λοιποί + " 3x λοιπούς + " 8x λοιποῖς + " 2x λοιποῦ + " 11x λοιπόν + " 7x λοιπῶν + " 1x λουσαμένη + " 1x λουτροῦ + " 1x λουτρῷ + " 1x λούσαντες + " 2x λυθήσεται + " 1x λυθήσονται + " 1x λυθείσης + " 3x λυθῆναι + " 1x λυθῇ + " 1x λυομένων + " 2x λυπεῖσθαι + " 1x λυπεῖται + " 1x λυπεῖτε + " 1x λυπηθέντες + " 1x λυπηθήσεσθε + " 1x λυπηθείς + " 1x λυπηθῆναι + " 1x λυπηθῆτε + " 2x λυπούμενοι + " 3x λυπούμενος + " 1x λυπῆσθε + " 1x λυπῶ + " 1x λυσιτελεῖ + " 1x λυτροῦσθαι + " 1x λυτρωτήν + " 1x λυτρώσηται + " 1x λυχνία + " 2x λυχνίαι + " 4x λυχνίαν + " 3x λυχνίας + " 2x λυχνιῶν + " 1x λυόντων + " 3x λόγια + " 1x λόγιος + " 10x λόγοι + " 17x λόγοις + " 130x λόγον + " 63x λόγος + " 27x λόγου + " 23x λόγους + " 1x λόγχῃ + " 10x λόγων + " 45x λόγῳ + " 1x λύει + " 2x λύετε + " 2x λύκοι + " 1x λύκον + " 1x λύκος + " 2x λύκων + " 1x λύοντες + " 1x λύουσιν + " 1x λύπας + " 5x λύπη + " 5x λύπην + " 3x λύπης + " 2x λύπῃ + " 2x λύσαντες + " 1x λύσαντι + " 2x λύσας + " 1x λύσατε + " 1x λύσητε + " 1x λύσιν + " 1x λύσω + " 2x λύσῃ + " 1x λύσῃς + " 2x λύτρον + " 3x λύτρωσιν + " 1x λύχνοι + " 4x λύχνον + " 6x λύχνος + " 2x λύχνου + " 1x λύχνῳ + " 2x λῃστάς + " 3x λῃστήν + " 2x λῃστής + " 3x λῃσταί + " 1x λῃσταῖς + " 4x λῃστῶν + " 1x λῆρος + " 4x λῦσαι + " 1x μάγοι + " 1x μάγον + " 1x μάγος + " 1x μάγους + " 2x μάγων + " 4x μάθετε + " 1x μάθητε + " 12x μάλιστα + " 1x μάμμῃ + " 4x μάννα + " 3x μάρτυρα + " 1x μάρτυρας + " 10x μάρτυρες + " 1x μάρτυρος + " 8x μάρτυς + " 3x μάρτυσιν + " 1x μάστιγας + " 2x μάστιγος + " 1x μάστιξιν + " 2x μάταιοι + " 1x μάταιος + " 2x μάτην + " 2x μάχαι + " 2x μάχαιρα + " 1x μάχαιραι + " 12x μάχαιραν + " 2x μάχας + " 1x μάχεσθαι + " 1x μάχεσθε + " 1x μέ + " 18x μέγα + " 13x μέγαν + " 25x μέγας + " 1x μέγεθος + " 1x μέγιστα + " 1x μέθαι + " 1x μέθαις + " 1x μέθυσοι + " 1x μέθυσος + " 1x μέθῃ + " 1x μέλαιναν + " 1x μέλανι + " 2x μέλανος + " 2x μέλας + " 7x μέλει + " 5x μέλεσιν + " 22x μέλη + " 4x μέλι + " 15x μέλλει + " 6x μέλλειν + " 4x μέλλεις + " 2x μέλλετε + " 1x μέλλομεν + " 2x μέλλον + " 6x μέλλοντα + " 3x μέλλοντας + " 4x μέλλοντες + " 4x μέλλοντι + " 6x μέλλοντος + " 4x μέλλουσαν + " 2x μέλλουσιν + " 2x μέλλω + " 9x μέλλων + " 3x μέλλῃ + " 5x μέλος + " 1x μέμνησθε + " 1x μέμφεται + " 180x μέν + " 1x μένε + " 28x μένει + " 5x μένειν + " 1x μένεις + " 6x μένετε + " 1x μένητε + " 1x μένομεν + " 3x μένον + " 1x μένοντα + " 1x μένοντος + " 5x μένουσαν + " 2x μένουσιν + " 8x μέντοι + " 1x μένω + " 7x μένων + " 4x μένῃ + " 3x μέρει + " 11x μέρη + " 2x μέριμνα + " 1x μέριμναι + " 1x μέριμναν + " 16x μέρος + " 12x μέρους + " 2x μέσης + " 16x μέσον + " 3x μέσος + " 8x μέσου + " 29x μέσῳ + " 3x μέτοχοι + " 1x μέτρησον + " 8x μέτρον + " 2x μέτρου + " 4x μέτρῳ + " 3x μέτωπον + " 15x μέχρι + " 3x μέχρις + " 980x μή + " 8x μήγε + " 2x μήν + " 2x μήπω + " 34x μήτε + " 30x μήτηρ + " 8x μήτι + " 1x μήτιγε + " 1x μήτραν + " 1x μήτρας + " 17x μία + " 36x μίαν + " 1x μίγμα + " 1x μίλιον + " 1x μίσθιοι + " 1x μαίνεσθε + " 1x μαίνεται + " 1x μαίνομαι + " 1x μαγίαις + " 1x μαγεύων + " 1x μαθήτρια + " 3x μαθεῖν + " 38x μαθητάς + " 3x μαθητήν + " 20x μαθητής + " 109x μαθηταί + " 41x μαθηταῖς + " 1x μαθητευθείς + " 1x μαθητεύσαντες + " 1x μαθητεύσατε + " 1x μαθητοῦ + " 3x μαθητῇ + " 46x μαθητῶν + " 2x μαθών + " 20x μακάριοι + " 1x μακάριον + " 12x μακάριος + " 1x μακέλλῳ + " 1x μακαρία + " 1x μακαρίαν + " 1x μακαρίζομεν + " 1x μακαρίου + " 1x μακαριοῦσιν + " 1x μακαρισμόν + " 2x μακαρισμός + " 1x μακαριωτέρα + " 2x μακρά + " 12x μακράν + " 1x μακροθυμήσας + " 1x μακροθυμήσατε + " 2x μακροθυμία + " 4x μακροθυμίαν + " 4x μακροθυμίας + " 4x μακροθυμίᾳ + " 3x μακροθυμεῖ + " 1x μακροθυμεῖτε + " 1x μακροθυμῶν + " 1x μακροθύμως + " 1x μακροχρόνιος + " 14x μακρόθεν + " 1x μαλακά + " 3x μαλακίαν + " 1x μαλακοί + " 2x μαλακοῖς + " 1x μαμωνᾶ + " 3x μαμωνᾷ + " 1x μανίαν + " 1x μανθάνοντα + " 1x μανθάνουσιν + " 1x μανθάνωσιν + " 1x μανθανέτω + " 2x μανθανέτωσαν + " 1x μαντευομένη + " 1x μαράν + " 1x μαρανθήσεται + " 2x μαργαρίταις + " 2x μαργαρίτας + " 1x μαργαρίτην + " 1x μαργαρίτου + " 1x μαργαρίτῃ + " 1x μαργαριτῶν + " 1x μαργαρῖται + " 1x μαρμάρου + " 1x μαρτυρήσαντος + " 1x μαρτυρήσας + " 1x μαρτυρήσει + " 1x μαρτυρήσω + " 3x μαρτυρήσῃ + " 15x μαρτυρία + " 1x μαρτυρίαι + " 19x μαρτυρίαν + " 2x μαρτυρίας + " 2x μαρτυρίου + " 7x μαρτυρεῖ + " 1x μαρτυρεῖν + " 1x μαρτυρεῖς + " 1x μαρτυρεῖται + " 3x μαρτυρεῖτε + " 1x μαρτυρηθέντες + " 2x μαρτυρουμένη + " 1x μαρτυρουμένους + " 3x μαρτυρούμενος + " 1x μαρτυρούντων + " 1x μαρτυρούσης + " 4x μαρτυροῦμεν + " 1x μαρτυροῦν + " 1x μαρτυροῦντες + " 1x μαρτυροῦντι + " 1x μαρτυροῦντος + " 1x μαρτυροῦσαι + " 1x μαρτυροῦσιν + " 1x μαρτυρόμενοι + " 1x μαρτυρόμενος + " 2x μαρτυρῆσαι + " 7x μαρτυρῶ + " 4x μαρτυρῶν + " 1x μαρτύρησον + " 18x μαρτύριον + " 3x μαρτύρομαι + " 9x μαρτύρων + " 2x μαστίγων + " 1x μαστίζειν + " 1x μαστιγοῖ + " 1x μαστιγώσαντες + " 1x μαστιγώσετε + " 2x μαστιγώσουσιν + " 1x μαστιγῶσαι + " 2x μαστοί + " 1x μαστοῖς + " 1x ματαία + " 1x ματαίας + " 1x ματαίων + " 1x ματαιολογίαν + " 1x ματαιολόγοι + " 2x ματαιότητι + " 1x ματαιότητος + " 4x μαχαίρης + " 5x μαχαίρῃ + " 5x μαχαιρῶν + " 1x μαχομένοις + " 286x με + " 7x μείζονα + " 1x μείζονας + " 1x μείζονες + " 3x μείζονος + " 2x μείζω + " 26x μείζων + " 5x μείνατε + " 2x μείνητε + " 3x μείνωσιν + " 6x μείνῃ + " 7x μεγάλα + " 1x μεγάλαι + " 1x μεγάλαις + " 2x μεγάλας + " 31x μεγάλη + " 19x μεγάλην + " 16x μεγάλης + " 4x μεγάλοι + " 1x μεγάλοις + " 7x μεγάλου + " 3x μεγάλους + " 2x μεγάλων + " 1x μεγάλως + " 34x μεγάλῃ + " 5x μεγάλῳ + " 1x μεγαλειότητι + " 2x μεγαλειότητος + " 1x μεγαλεῖα + " 1x μεγαλοπρεποῦς + " 1x μεγαλυνθήσεται + " 1x μεγαλυνθῆναι + " 1x μεγαλυνόντων + " 1x μεγαλωσύνη + " 1x μεγαλύνουσιν + " 2x μεγιστᾶνες + " 1x μεγιστᾶσιν + " 6x μεθερμηνευόμενον + " 1x μεθερμηνευόμενος + " 1x μεθερμηνεύεται + " 1x μεθιστάναι + " 1x μεθοδίαν + " 1x μεθοδίας + " 1x μεθυσθῶσιν + " 1x μεθυσκόμενοι + " 1x μεθυόντων + " 1x μεθύει + " 1x μεθύουσαν + " 2x μεθύουσιν + " 1x μεθύσκεσθαι + " 1x μεθύσκεσθε + " 42x μεθ’ + " 1x μειζοτέραν + " 1x μελέτα + " 1x μελέτω + " 1x μελλήσετε + " 1x μελλήσω + " 6x μελλούσης + " 8x μελλόντων + " 2x μελῶν + " 1x μεμέρικεν + " 2x μεμέρισται + " 1x μεμίανται + " 1x μεμίσηκεν + " 1x μεμαθηκώς + " 1x μεμαρτύρηκα + " 1x μεμαρτύρηκας + " 5x μεμαρτύρηκεν + " 2x μεμαρτύρηται + " 1x μεμβράνας + " 1x μεμενήκεισαν + " 1x μεμεστωμένοι + " 1x μεμιαμμένοις + " 1x μεμιγμένα + " 1x μεμιγμένην + " 1x μεμιγμένον + " 1x μεμισήκασιν + " 1x μεμισημένου + " 1x μεμνημένος + " 1x μεμονωμένη + " 1x μεμφόμενος + " 1x μεμψίμοιροι + " 1x μεμύημαι + " 5x μενέτω + " 1x μενεῖ + " 2x μενεῖτε + " 2x μενοῦνγε + " 1x μενῶ + " 2x μερίδα + " 1x μερίδος + " 1x μερίμναις + " 2x μερίς + " 1x μερίσασθαι + " 2x μεριμνήσει + " 4x μεριμνήσητε + " 5x μεριμνᾶτε + " 4x μεριμνᾷ + " 1x μεριμνᾷς + " 3x μεριμνῶν + " 1x μεριμνῶσιν + " 2x μερισθεῖσα + " 2x μερισθῇ + " 1x μερισμοῖς + " 1x μερισμοῦ + " 1x μεριστήν + " 4x μεσίτης + " 1x μεσίτου + " 1x μεσίτῃ + " 2x μεσημβρίαν + " 2x μεσονυκτίου + " 2x μεσονύκτιον + " 3x μεσουρανήματι + " 1x μεσούσης + " 2x μεστή + " 2x μεστοί + " 2x μεστούς + " 3x μεστόν + " 1x μεσότοιχον + " 266x μετά + " 1x μετάγεται + " 1x μετάγομεν + " 1x μετάθεσιν + " 1x μετάθεσις + " 1x μετάλημψιν + " 12x μετάνοιαν + " 2x μετάπεμψαι + " 1x μετέβη + " 1x μετέθηκεν + " 1x μετέπειτα + " 2x μετέστησεν + " 1x μετέσχεν + " 1x μετέσχηκεν + " 2x μετέχειν + " 1x μετέχομεν + " 1x μετέχουσιν + " 1x μετέχω + " 1x μετέχων + " 2x μετήλλαξαν + " 3x μεταβάς + " 1x μεταβέβηκεν + " 1x μεταβήσεται + " 1x μεταβαίνετε + " 1x μεταβαλόμενοι + " 1x μεταβεβήκαμεν + " 2x μεταβῇ + " 1x μεταδιδούς + " 1x μεταδιδόναι + " 1x μεταδοῦναι + " 1x μεταδότω + " 1x μεταδῶ + " 1x μεταθέσεως + " 1x μετακάλεσαι + " 1x μετακαλέσομαι + " 1x μετακινούμενοι + " 3x μεταλαβεῖν + " 1x μεταλαβών + " 1x μεταλαμβάνει + " 1x μεταλαμβάνειν + " 1x μεταμέλομαι + " 1x μεταμεληθήσεται + " 2x μεταμεληθείς + " 1x μεταμορφούμεθα + " 1x μεταμορφοῦσθε + " 1x μετανοήσατε + " 1x μετανοήσητε + " 2x μετανοήσουσιν + " 2x μετανοήσῃ + " 1x μετανοήσῃς + " 10x μετανοίας + " 2x μετανοεῖν + " 1x μετανοεῖτε + " 1x μετανοησάντων + " 2x μετανοοῦντι + " 1x μετανοῆσαι + " 1x μετανοῆτε + " 1x μετανοῶσιν + " 5x μετανόησον + " 9x μεταξύ + " 1x μεταπέμψασθαι + " 1x μεταπέμψηται + " 1x μεταπεμπόμενος + " 1x μεταπεμφθείς + " 1x μεταπεμψάμενος + " 1x μεταστήσας + " 1x μετασταθῶ + " 1x μεταστρέψαι + " 1x μεταστραφήσεται + " 1x μετασχηματίζεται + " 1x μετασχηματίζονται + " 1x μετασχηματίσει + " 1x μετασχηματιζόμενοι + " 1x μετατίθεσθε + " 1x μετατιθέντες + " 1x μετατιθεμένης + " 1x μετατραπήτω + " 2x μετεκαλέσατο + " 1x μετελάμβανον + " 1x μετεμελήθητε + " 1x μετεμελόμην + " 2x μετεμορφώθη + " 9x μετενόησαν + " 1x μετεπέμψασθε + " 1x μετεπέμψατο + " 1x μετεσχημάτισα + " 1x μετετέθη + " 1x μετετέθησαν + " 1x μετεωρίζεσθε + " 1x μετοικεσίαν + " 3x μετοικεσίας + " 1x μετοικιῶ + " 1x μετοχή + " 1x μετρήσῃ + " 1x μετρήσῃς + " 1x μετρίως + " 3x μετρεῖτε + " 2x μετρηθήσεται + " 1x μετρητάς + " 1x μετριοπαθεῖν + " 1x μετροῦντες + " 1x μετόχοις + " 2x μετόχους + " 1x μετώπου + " 4x μετώπων + " 2x μετῆρεν + " 1x μετῴκισεν + " 131x μετ’ + " 7x μεῖζον + " 6x μεῖναι + " 55x μηδέ + " 30x μηδέν + " 8x μηδένα + " 1x μηδέποτε + " 1x μηδέπω + " 12x μηδείς + " 7x μηδεμίαν + " 19x μηδενί + " 3x μηδενός + " 1x μηδ’ + " 1x μηθέν + " 19x μηκέτι + " 1x μηκύνηται + " 1x μηλωταῖς + " 1x μηνί + " 1x μηνυθείσης + " 1x μηνύσαντα + " 1x μηνύσῃ + " 1x μηρόν + " 27x μητέρα + " 2x μητέρας + " 11x μητρί + " 1x μητρολῴαις + " 12x μητρός + " 1x μιάσματα + " 1x μιαίνουσιν + " 2x μιανθῶσιν + " 1x μιασμοῦ + " 2x μικρά + " 1x μικράν + " 1x μικροί + " 2x μικρούς + " 1x μικροῖς + " 3x μικροῦ + " 19x μικρόν + " 1x μικρός + " 2x μικρότερον + " 3x μικρότερος + " 7x μικρῶν + " 1x μικρῷ + " 2x μιμεῖσθαι + " 1x μιμεῖσθε + " 6x μιμηταί + " 1x μιμνῄσκεσθε + " 1x μιμνῄσκῃ + " 1x μιμοῦ + " 2x μισήσει + " 1x μισήσεις + " 2x μισήσουσιν + " 1x μισήσωσιν + " 7x μισεῖ + " 1x μισεῖν + " 1x μισεῖς + " 1x μισθίων + " 3x μισθαποδοσίαν + " 1x μισθαποδότης + " 4x μισθοῦ + " 2x μισθωτός + " 1x μισθωτῶν + " 18x μισθόν + " 7x μισθός + " 1x μισθώματι + " 1x μισθώσασθαι + " 4x μισούμενοι + " 1x μισούντων + " 2x μισοῦντες + " 1x μισοῦσιν + " 1x μισῇ + " 2x μισῶ + " 5x μισῶν + " 8x μιᾶς + " 18x μιᾷ + " 3x μνήμασιν + " 3x μνήματι + " 1x μνήμην + " 2x μνήσθητε + " 2x μνήσθητι + " 6x μνείαν + " 1x μνείᾳ + " 1x μνημείοις + " 10x μνημείου + " 3x μνημείων + " 4x μνημείῳ + " 4x μνημεῖα + " 16x μνημεῖον + " 1x μνημονεύει + " 1x μνημονεύειν + " 8x μνημονεύετε + " 1x μνημονεύητε + " 2x μνημονεύοντες + " 1x μνημονεύωμεν + " 2x μνημόνευε + " 3x μνημόσυνον + " 1x μνησθήσομαι + " 3x μνησθῆναι + " 1x μνησθῇς + " 1x μνησθῶ + " 1x μνηστευθείσης + " 3x μνᾶ + " 1x μνᾶν + " 5x μνᾶς + " 4x μνῆμα + " 4x μοί + " 1x μογιλάλον + " 221x μοι + " 1x μοιχαλίδα + " 1x μοιχαλίδες + " 1x μοιχαλίδι + " 1x μοιχαλίδος + " 3x μοιχαλίς + " 1x μοιχείᾳ + " 1x μοιχευθῆναι + " 1x μοιχευομένη + " 2x μοιχεύει + " 1x μοιχεύειν + " 2x μοιχεύεις + " 1x μοιχεύοντας + " 3x μοιχεύσεις + " 3x μοιχεύσῃς + " 2x μοιχεῖαι + " 2x μοιχοί + " 1x μοιχούς + " 4x μοιχᾶται + " 1x μολυσμοῦ + " 1x μολύνεται + " 1x μομφήν + " 1x μονήν + " 1x μοναί + " 4x μονογενής + " 2x μονογενοῦς + " 3x μονογενῆ + " 2x μονόφθαλμον + " 1x μορφήν + " 1x μορφωθῇ + " 2x μορφῇ + " 550x μου + " 1x μουσικῶν + " 10x μού + " 1x μυελῶν + " 1x μυκτηρίζεται + " 1x μυκᾶται + " 1x μυλικός + " 2x μυρίους + " 1x μυρίσαι + " 1x μυρίων + " 1x μυριάδας + " 2x μυριάδες + " 3x μυριάδων + " 2x μυριάσιν + " 4x μυστήρια + " 16x μυστήριον + " 4x μυστηρίου + " 1x μυστηρίων + " 2x μυστηρίῳ + " 1x μυωπάζων + " 1x μωμήσηται + " 1x μωμηθῇ + " 1x μωρά + " 2x μωράς + " 3x μωρία + " 1x μωρίαν + " 1x μωρίας + " 3x μωραί + " 2x μωρανθῇ + " 2x μωροί + " 1x μωρολογία + " 1x μωρόν + " 1x μωρός + " 1x μωρῷ + " 3x μόδιον + " 7x μόλις + " 1x μόνα + " 2x μόνας + " 1x μόνην + " 4x μόνοι + " 1x μόνοις + " 72x μόνον + " 20x μόνος + " 2x μόνου + " 3x μόνους + " 7x μόνῳ + " 2x μόρφωσιν + " 3x μόσχον + " 2x μόσχων + " 1x μόσχῳ + " 1x μόχθον + " 2x μόχθῳ + " 3x μύθοις + " 2x μύθους + " 1x μύλινον + " 2x μύλος + " 1x μύλου + " 1x μύλῳ + " 1x μύρα + " 4x μύρον + " 6x μύρου + " 3x μύρῳ + " 1x μώλωπι + " 81x μᾶλλον + " 3x μῆκος + " 2x μῆνα + " 14x μῆνας + " 1x μῶμοι + " 2x νάρδου + " 2x νέας + " 2x νέκρωσιν + " 9x νέον + " 1x νέος + " 1x νέφος + " 1x νή + " 1x νήθει + " 1x νήθουσιν + " 2x νήπιοι + " 6x νήπιος + " 1x νήσου + " 2x νήστεις + " 3x νήσῳ + " 1x νήφοντες + " 2x νήφωμεν + " 1x νήψατε + " 1x νίκα + " 1x νίκη + " 2x νίπτειν + " 1x νίπτεις + " 1x νίπτονται + " 3x νίψαι + " 1x νίψασθαι + " 1x νίψω + " 1x νίψωνται + " 1x νίψῃς + " 15x ναί + " 1x ναούς + " 1x ναοῖς + " 12x ναοῦ + " 1x ναυκλήρῳ + " 1x ναυτῶν + " 13x ναόν + " 10x ναός + " 1x ναῦν + " 2x ναῦται + " 8x ναῷ + " 1x νεανίαν + " 1x νεανίας + " 1x νεανίου + " 4x νεανίσκοι + " 3x νεανίσκον + " 3x νεανίσκος + " 3x νεκρά + " 1x νεκράν + " 14x νεκροί + " 19x νεκρούς + " 2x νεκροῖς + " 1x νεκροῦ + " 3x νεκρόν + " 9x νεκρός + " 76x νεκρῶν + " 1x νενίκηκα + " 1x νενεκρωμένον + " 1x νενεκρωμένου + " 3x νενικήκατε + " 2x νενομοθέτηται + " 1x νεομηνίας + " 1x νεφέλαι + " 2x νεφέλαις + " 5x νεφέλη + " 5x νεφέλην + " 5x νεφέλης + " 3x νεφέλῃ + " 4x νεφελῶν + " 1x νεφρούς + " 1x νεωκόρον + " 3x νεωτέρας + " 2x νεωτέρους + " 1x νεωτερικάς + " 4x νεότητος + " 1x νεόφυτον + " 1x νεύει + " 1x νεύσαντος + " 2x νεώτεροι + " 4x νεώτερος + " 3x νηπίοις + " 1x νηπίου + " 2x νηπίων + " 1x νηπιάζετε + " 1x νησίον + " 3x νηστείαις + " 1x νηστειῶν + " 1x νηστευόντων + " 2x νηστεύειν + " 1x νηστεύητε + " 1x νηστεύομεν + " 2x νηστεύοντες + " 4x νηστεύουσιν + " 1x νηστεύσαντες + " 1x νηστεύσας + " 3x νηστεύσουσιν + " 1x νηστεύω + " 2x νηστεύων + " 1x νηστεῦσαι + " 1x νηφάλιον + " 2x νηφαλίους + " 1x νικήσασα + " 2x νικήσει + " 1x νικήσεις + " 2x νικήσῃ + " 1x νικᾷ + " 1x νικῆσαι + " 1x νικῶ + " 8x νικῶν + " 1x νικῶντας + " 2x νικῶντι + " 1x νιπτῆρα + " 1x νιψάμενος + " 6x νοΐ + " 5x νοήματα + " 1x νοήσωσιν + " 2x νοείτω + " 5x νοεῖτε + " 2x νομήν + " 1x νομίζει + " 1x νομίζειν + " 1x νομίζοντες + " 1x νομίζων + " 2x νομίμως + " 1x νομίσαντες + " 2x νομίσητε + " 1x νομιζόντων + " 1x νομικάς + " 1x νομικοί + " 1x νομικούς + " 2x νομικοῖς + " 1x νομικόν + " 2x νομικός + " 1x νομικῶν + " 2x νομοδιδάσκαλοι + " 1x νομοδιδάσκαλος + " 1x νομοθέτης + " 1x νομοθεσία + " 1x νοούμενα + " 2x νοοῦμεν + " 1x νοοῦντες + " 1x νοσήματι + " 1x νοσσία + " 1x νοσσιάν + " 1x νοσσούς + " 1x νοσφίσασθαι + " 1x νοσφιζομένους + " 1x νοσῶν + " 2x νουθεσίαν + " 1x νουθεσίᾳ + " 1x νουθετεῖν + " 2x νουθετεῖτε + " 1x νουθετοῦντας + " 2x νουθετοῦντες + " 2x νουθετῶν + " 1x νουνεχῶς + " 6x νοός + " 1x νοῆσαι + " 9x νοῦν + " 3x νοῦς + " 13x νυκτί + " 33x νυκτός + " 2x νυμφίον + " 9x νυμφίος + " 5x νυμφίου + " 1x νυμφών + " 3x νυμφῶνος + " 16x νυνί + " 1x νυστάζει + " 1x νυχθήμερον + " 2x νωθροί + " 1x νόει + " 1x νόημα + " 1x νόθοι + " 1x νόμισμα + " 59x νόμον + " 34x νόμος + " 67x νόμου + " 2x νόμους + " 32x νόμῳ + " 3x νόσοις + " 3x νόσον + " 3x νόσους + " 2x νόσων + " 1x νότον + " 6x νότου + " 4x νύκτα + " 4x νύκτας + " 2x νύμφη + " 5x νύμφην + " 1x νύμφης + " 7x νύξ + " 2x νῆσον + " 3x νῆσος + " 1x νῆφε + " 4x νῖκος + " 142x νῦν + " 1x νῶτον + " 1x ξέναις + " 4x ξένοι + " 1x ξένοις + " 2x ξένον + " 3x ξένος + " 1x ξένου + " 1x ξένους + " 2x ξενίαν + " 1x ξενίζεσθε + " 3x ξενίζεται + " 1x ξενίζοντα + " 1x ξενίζονται + " 1x ξενίσαντες + " 1x ξενισθῶμεν + " 1x ξεστῶν + " 1x ξηρά + " 4x ξηράν + " 1x ξηραίνεται + " 1x ξηρᾶς + " 1x ξηρῶν + " 1x ξηρῷ + " 1x ξυρήσονται + " 1x ξυρᾶσθαι + " 1x ξύλα + " 2x ξύλινα + " 5x ξύλον + " 8x ξύλου + " 5x ξύλων + " 1x ξύλῳ + " 1x οἰέσθω + " 1x οἰκέται + " 1x οἰκέτην + " 1x οἰκέτης + " 1x οἰκήματι + " 9x οἰκία + " 41x οἰκίαν + " 17x οἰκίας + " 26x οἰκίᾳ + " 1x οἰκείους + " 1x οἰκείων + " 1x οἰκετείας + " 1x οἰκετῶν + " 4x οἰκεῖ + " 2x οἰκεῖν + " 1x οἰκεῖοι + " 2x οἰκητήριον + " 1x οἰκιακοί + " 1x οἰκιακούς + " 1x οἰκιῶν + " 1x οἰκοδεσποτεῖν + " 1x οἰκοδεσπότην + " 5x οἰκοδεσπότης + " 2x οἰκοδεσπότου + " 4x οἰκοδεσπότῃ + " 2x οἰκοδομάς + " 2x οἰκοδομή + " 1x οἰκοδομήθη + " 11x οἰκοδομήν + " 1x οἰκοδομήσαντι + " 1x οἰκοδομήσετε + " 3x οἰκοδομήσω + " 1x οἰκοδομαί + " 4x οἰκοδομεῖ + " 1x οἰκοδομεῖν + " 1x οἰκοδομεῖσθε + " 1x οἰκοδομεῖται + " 4x οἰκοδομεῖτε + " 1x οἰκοδομηθήσεται + " 1x οἰκοδομουμένη + " 4x οἰκοδομοῦντες + " 1x οἰκοδομοῦντι + " 2x οἰκοδομῆς + " 3x οἰκοδομῆσαι + " 1x οἰκοδομῆσθαι + " 2x οἰκοδομῶ + " 2x οἰκοδομῶν + " 1x οἰκοδόμησεν + " 1x οἰκοδόμων + " 1x οἰκονομία + " 6x οἰκονομίαν + " 2x οἰκονομίας + " 1x οἰκονομεῖν + " 1x οἰκονόμοι + " 1x οἰκονόμοις + " 3x οἰκονόμον + " 3x οἰκονόμος + " 2x οἰκονόμους + " 1x οἰκουμένη + " 8x οἰκουμένην + " 4x οἰκουμένης + " 2x οἰκουμένῃ + " 1x οἰκουργούς + " 1x οἰκοῦσα + " 1x οἰκτίρμονες + " 2x οἰκτίρμων + " 1x οἰκτείρω + " 1x οἰκτειρήσω + " 1x οἰκτιρμοί + " 1x οἰκτιρμοῦ + " 3x οἰκτιρμῶν + " 1x οἰκῶν + " 2x οἰνοπότης + " 1x οἰνοφλυγίαις + " 1x οἰόμενοι + " 1069x οἱ + " 39x οἴδαμεν + " 7x οἴδασιν + " 58x οἴδατε + " 1x οἴκοις + " 12x οἴκου + " 4x οἴκους + " 1x οἴκων + " 20x οἴκῳ + " 7x οἴνου + " 4x οἴνῳ + " 1x οἴσει + " 1x οἴσουσιν + " 38x οἵ + " 2x οἵα + " 2x οἵους + " 60x οἵτινες + " 47x οἶδα + " 15x οἶδας + " 22x οἶδεν + " 58x οἶκον + " 18x οἶκος + " 1x οἶμαι + " 18x οἶνον + " 4x οἶνος + " 2x οἷα + " 2x οἷοι + " 3x οἷον + " 3x οἷος + " 46x οἷς + " 627x οὐ + " 28x οὐαί + " 126x οὐδέ + " 81x οὐδέν + " 16x οὐδένα + " 11x οὐδέποτε + " 4x οὐδέπω + " 1x οὐδαμῶς + " 88x οὐδείς + " 3x οὐδεμία + " 8x οὐδεμίαν + " 9x οὐδενί + " 8x οὐδενός + " 8x οὐδ’ + " 5x οὐθέν + " 1x οὐθενός + " 767x οὐκ + " 47x οὐκέτι + " 1x οὐρά + " 7x οὐράνιος + " 1x οὐράς + " 1x οὐραί + " 1x οὐρανέ + " 1x οὐρανίου + " 1x οὐρανίῳ + " 7x οὐρανοί + " 5x οὐρανούς + " 36x οὐρανοῖς + " 92x οὐρανοῦ + " 2x οὐρανόθεν + " 43x οὐρανόν + " 12x οὐρανός + " 42x οὐρανῶν + " 35x οὐρανῷ + " 2x οὐραῖς + " 1x οὐσίαν + " 1x οὐσίας + " 1x οὐσῶν + " 98x οὐχ + " 44x οὐχί + " 9x οὔ + " 25x οὔπω + " 5x οὔσης + " 4x οὔσῃ + " 87x οὔτε + " 50x οὕς + " 3x οὕτω + " 192x οὕτως + " 496x οὖν + " 13x οὖς + " 5x οὖσα + " 1x οὖσαι + " 6x οὖσαν + " 9x οὖσιν + " 139x οὗ + " 62x οὗτοι + " 159x οὗτος + " 1x πάγον + " 1x πάθει + " 1x πάθη + " 1x πάθημα + " 1x πάθος + " 1x πάθῃ + " 6x πάλαι + " 1x πάλη + " 132x πάλιν + " 258x πάντα + " 90x πάντας + " 174x πάντες + " 3x πάντοθεν + " 40x πάντοτε + " 132x πάντων + " 6x πάντως + " 1x πάντῃ + " 1x πάρει + " 1x πάρεισιν + " 1x πάρεσιν + " 1x πάρεσμεν + " 1x πάρεστε + " 3x πάρεστιν + " 2x πάρεχε + " 1x πάροικοι + " 1x πάροικον + " 1x πάροικος + " 2x πάροινον + " 7x πάσαις + " 9x πάσας + " 42x πάσης + " 28x πάσχα + " 1x πάσχει + " 4x πάσχειν + " 1x πάσχετε + " 1x πάσχοιτε + " 1x πάσχομεν + " 2x πάσχοντες + " 1x πάσχω + " 2x πάσχων + " 44x πάσῃ + " 2x πάτερ + " 2x πέδαις + " 1x πέδας + " 1x πέλαγος + " 1x πέμπει + " 1x πέμπειν + " 1x πέμποντα + " 1x πέμπτην + " 3x πέμπτος + " 1x πέμπω + " 8x πέμψαι + " 7x πέμψαντα + " 1x πέμψαντες + " 1x πέμψαντι + " 9x πέμψαντος + " 15x πέμψας + " 1x πέμψασιν + " 1x πέμψει + " 4x πέμψον + " 1x πέμψουσιν + " 6x πέμψω + " 1x πέμψῃς + " 1x πένησιν + " 5x πένθος + " 37x πέντε + " 1x πέπαυται + " 4x πέπεισμαι + " 2x πέποιθα + " 1x πέποιθας + " 2x πέποιθεν + " 1x πέπονθεν + " 1x πέπρακεν + " 1x πέπραχα + " 1x πέπτωκες + " 1x πέπωκαν + " 23x πέραν + " 1x πέρας + " 1x πέρατα + " 1x πέριξ + " 2x πέρυσι + " 1x πέσητε + " 1x πέσωσιν + " 5x πέσῃ + " 1x πέτηται + " 2x πέτρα + " 1x πέτραι + " 1x πέτραις + " 5x πέτραν + " 4x πέτρας + " 2x πέτρᾳ + " 1x πήγανον + " 5x πήραν + " 1x πήρας + " 1x πίε + " 1x πίεσαι + " 2x πίεσθε + " 1x πίεται + " 3x πίητε + " 1x πίμπρασθαι + " 4x πίνακι + " 1x πίνακος + " 1x πίνει + " 4x πίνειν + " 2x πίνετε + " 3x πίνητε + " 2x πίνοντες + " 1x πίνουσιν + " 4x πίνω + " 8x πίνων + " 2x πίνῃ + " 5x πίπτει + " 1x πίπτοντες + " 40x πίστει + " 1x πίστευε + " 1x πίστευσον + " 94x πίστεως + " 55x πίστιν + " 36x πίστις + " 6x πίω + " 2x πίωμεν + " 1x πίωσιν + " 2x πίῃ + " 1x παίδων + " 1x παίζειν + " 2x παίσας + " 1x παίσῃ + " 3x παγίδα + " 1x παγίδος + " 1x παγίς + " 1x παγιδεύσωσιν + " 4x παθήμασιν + " 4x παθήματα + " 12x παθεῖν + " 7x παθημάτων + " 1x παθητός + " 1x παθοῦσα + " 1x παθόντας + " 1x παθόντος + " 1x παθών + " 1x παιδάριον + " 11x παιδία + " 2x παιδίοις + " 27x παιδίον + " 6x παιδίου + " 1x παιδίσκας + " 5x παιδίσκη + " 2x παιδίσκην + " 4x παιδίσκης + " 4x παιδίων + " 1x παιδαγωγούς + " 1x παιδαγωγόν + " 1x παιδαγωγός + " 1x παιδεία + " 2x παιδείαν + " 2x παιδείας + " 1x παιδείᾳ + " 1x παιδευθῶσιν + " 1x παιδευτάς + " 1x παιδευτήν + " 1x παιδευόμεθα + " 1x παιδευόμενοι + " 2x παιδεύει + " 1x παιδεύοντα + " 1x παιδεύουσα + " 2x παιδεύσας + " 1x παιδεύω + " 1x παιδισκῶν + " 1x παιδιόθεν + " 4x παιδός + " 1x παισίν + " 2x παλαιά + " 2x παλαιάν + " 1x παλαιούμενα + " 1x παλαιούμενον + " 3x παλαιούς + " 1x παλαιοῦ + " 1x παλαιωθήσονται + " 5x παλαιόν + " 2x παλαιός + " 1x παλαιότητι + " 1x παλαιᾶς + " 1x παλαιᾷ + " 2x παλαιῷ + " 1x παλινγενεσίας + " 1x παλινγενεσίᾳ + " 1x πανδοχεῖ + " 1x πανδοχεῖον + " 1x πανηγύρει + " 1x πανοικεί + " 3x πανοπλίαν + " 1x πανουργίαν + " 4x πανουργίᾳ + " 1x πανοῦργος + " 1x πανπληθεί + " 59x παντί + " 7x πανταχοῦ + " 1x πανταχῇ + " 2x παντελές + " 32x παντός + " 129x παρά + " 2x παράβασις + " 2x παράγγελλε + " 2x παράγει + " 2x παράγεται + " 1x παράγοντα + " 1x παράγοντι + " 4x παράγων + " 1x παράδοξα + " 9x παράδοσιν + " 1x παράθου + " 2x παράκειται + " 7x παράκλησιν + " 3x παράκλησις + " 3x παράλαβε + " 3x παράπτωμα + " 1x παρέβη + " 1x παρέδοσαν + " 4x παρέδωκα + " 6x παρέδωκαν + " 2x παρέδωκας + " 17x παρέδωκεν + " 2x παρέθεντο + " 1x παρέθηκαν + " 3x παρέθηκεν + " 1x παρέκυψεν + " 4x παρέλαβεν + " 1x παρέλαβες + " 5x παρέλαβον + " 1x παρέλθωσιν + " 6x παρέλθῃ + " 2x παρένεγκε + " 1x παρέξῃ + " 1x παρέρχεσθε + " 1x παρέρχεται + " 1x παρέσται + " 2x παρέστη + " 2x παρέστηκεν + " 3x παρέστησαν + " 2x παρέστησεν + " 1x παρέσχον + " 1x παρέτεινεν + " 1x παρέχειν + " 1x παρέχεσθε + " 2x παρέχετε + " 1x παρέχοντι + " 1x παρέχουσιν + " 2x παρήγγειλαν + " 6x παρήγγειλεν + " 1x παρήγγελλεν + " 1x παραβάσει + " 2x παραβάσεων + " 2x παραβάσεως + " 1x παραβάται + " 2x παραβάτην + " 2x παραβάτης + " 1x παραβαίνετε + " 1x παραβαίνουσιν + " 4x παραβολάς + " 3x παραβολή + " 26x παραβολήν + " 12x παραβολαῖς + " 1x παραβολευσάμενος + " 3x παραβολῆς + " 2x παραβολῇ + " 1x παραγένωμαι + " 1x παραγένωνται + " 3x παραγίνεται + " 1x παραγγέλλει + " 1x παραγγέλλειν + " 2x παραγγέλλομεν + " 2x παραγγέλλω + " 1x παραγγέλλων + " 1x παραγγείλαντες + " 4x παραγγείλας + " 1x παραγγείλῃς + " 2x παραγγελίαν + " 2x παραγγελίας + " 1x παραγενομένου + " 1x παραγενομένους + " 5x παραγενόμενοι + " 1x παραγενόμενον + " 9x παραγενόμενος + " 1x παραδέδοται + " 1x παραδέξονται + " 1x παραδέχεσθαι + " 1x παραδέχεται + " 1x παραδέχονται + " 1x παραδέχου + " 2x παραδίδοσθαι + " 7x παραδίδοται + " 1x παραδίδως + " 1x παραδεδομένοι + " 1x παραδεδωκόσι + " 1x παραδεδώκεισαν + " 1x παραδειγματίζοντας + " 9x παραδιδούς + " 1x παραδιδοῖ + " 1x παραδιδόμεθα + " 2x παραδιδόναι + " 1x παραδιδόντα + " 2x παραδιδόντες + " 1x παραδιδόντος + " 1x παραδοθήσεσθε + " 3x παραδοθήσεται + " 1x παραδοθείς + " 1x παραδοθείσης + " 1x παραδοθείσῃ + " 2x παραδοθῆναι + " 1x παραδοθῶ + " 5x παραδούς + " 4x παραδοῖ + " 3x παραδοῦναι + " 1x παραδόντος + " 1x παραδόσει + " 2x παραδόσεις + " 1x παραδόσεων + " 7x παραδώσει + " 7x παραδώσουσιν + " 1x παραδώσω + " 1x παραδώσων + " 1x παραδῶ + " 1x παραδῶσιν + " 3x παραδῷ + " 1x παραζηλοῦμεν + " 2x παραζηλώσω + " 1x παραζηλῶσαι + " 3x παραθήκην + " 1x παραθήσω + " 1x παραθαλασσίαν + " 1x παραθεῖναι + " 1x παραινῶ + " 1x παραιτήσησθε + " 1x παραιτεῖσθαι + " 1x παραιτησάμενοι + " 4x παραιτοῦ + " 1x παραιτοῦμαι + " 4x παρακάλει + " 1x παρακάλεσον + " 1x παρακαθεσθεῖσα + " 6x παρακαλέσαι + " 2x παρακαλέσας + " 2x παρακαλέσῃ + " 1x παρακαλεῖ + " 3x παρακαλεῖν + " 1x παρακαλεῖσθε + " 1x παρακαλεῖται + " 3x παρακαλεῖτε + " 2x παρακαλούμεθα + " 4x παρακαλοῦμεν + " 4x παρακαλοῦντες + " 1x παρακαλοῦντος + " 2x παρακαλοῦσιν + " 12x παρακαλῶ + " 9x παρακαλῶν + " 1x παρακαλῶνται + " 1x παρακεκαλυμμένον + " 1x παρακεκλήμεθα + " 1x παρακεχειμακότι + " 7x παρακλήσει + " 12x παρακλήσεως + " 1x παρακληθήσονται + " 1x παρακληθῆναι + " 1x παρακληθῶσιν + " 1x παρακοή + " 1x παρακοήν + " 1x παρακολουθήσει + " 1x παρακούσας + " 2x παρακούσῃ + " 1x παρακοῆς + " 1x παρακύψαι + " 3x παρακύψας + " 1x παραλήμψομαι + " 1x παραλίου + " 1x παραλαβεῖν + " 1x παραλαβόντα + " 2x παραλαβόντες + " 9x παραλαβών + " 8x παραλαμβάνει + " 2x παραλαμβάνεται + " 1x παραλαμβάνοντες + " 1x παραλαμβάνουσιν + " 1x παραλεγόμενοι + " 1x παραλελυμένα + " 1x παραλελυμένοι + " 2x παραλελυμένος + " 1x παραλελυμένῳ + " 2x παραλημφθήσεται + " 1x παραλλαγή + " 1x παραλογίζηται + " 1x παραλογιζόμενοι + " 1x παραλυτικούς + " 2x παραλυτικόν + " 2x παραλυτικός + " 5x παραλυτικῷ + " 1x παραμένειν + " 1x παραμείνας + " 1x παραμενῶ + " 1x παραμυθήσωνται + " 1x παραμυθίαν + " 1x παραμυθεῖσθε + " 2x παραμυθούμενοι + " 1x παραμύθιον + " 1x παρανομίας + " 1x παρανομῶν + " 1x παραπεσόντας + " 2x παραπικρασμῷ + " 1x παραπλήσιον + " 1x παραπλεῦσαι + " 1x παραπλησίως + " 3x παραπορευόμενοι + " 1x παραπορεύεσθαι + " 2x παραπτωμάτων + " 3x παραπτώμασιν + " 6x παραπτώματα + " 4x παραπτώματι + " 1x παραπτώματος + " 1x παραρυῶμεν + " 1x παρασήμῳ + " 1x παρασκευάσεται + " 1x παρασκευαζόντων + " 2x παραστήσατε + " 3x παραστήσει + " 1x παραστήσωμεν + " 1x παραστήσῃ + " 1x παραστησόμεθα + " 1x παραστῆναι + " 7x παραστῆσαι + " 1x παραστῆτε + " 1x παρασχών + " 3x παρατίθεμαι + " 1x παρατηρήσαντες + " 1x παρατηρήσεως + " 1x παρατηρεῖσθε + " 1x παρατηρούμενοι + " 1x παρατιθέμενα + " 1x παρατιθέμενον + " 1x παρατιθέμενος + " 1x παρατιθέναι + " 1x παρατιθέσθωσαν + " 2x παρατιθῶσιν + " 1x παρατυγχάνοντας + " 1x παραυτίκα + " 1x παραφέρεσθε + " 1x παραφερόμεναι + " 1x παραφρονίαν + " 1x παραφρονῶν + " 2x παραχειμάσαι + " 1x παραχειμάσω + " 1x παραχειμασίαν + " 18x παραχρῆμα + " 1x παρδάλει + " 1x παρείχετο + " 1x παρεβάλομεν + " 1x παρεβιάσαντο + " 1x παρεβιάσατο + " 4x παρεγένετο + " 4x παρεγένοντο + " 1x παρεγίνοντο + " 2x παρεγενόμην + " 1x παρεδέχθησαν + " 1x παρεδίδετο + " 1x παρεδίδοσαν + " 2x παρεδίδου + " 1x παρεδίδουν + " 1x παρεδρεύοντες + " 4x παρεδόθη + " 1x παρεδόθην + " 1x παρεδόθητε + " 1x παρεδώκαμεν + " 2x παρεδώκατε + " 1x παρεθεωροῦντο + " 1x παρειμένας + " 1x παρεισάκτους + " 1x παρεισάξουσιν + " 1x παρεισεδύησαν + " 1x παρεισενέγκαντες + " 1x παρειστήκεισαν + " 1x παρεισῆλθεν + " 1x παρεισῆλθον + " 8x παρεκάλει + " 5x παρεκάλεσα + " 6x παρεκάλεσαν + " 1x παρεκάλεσας + " 3x παρεκάλεσεν + " 8x παρεκάλουν + " 1x παρεκαλοῦμεν + " 1x παρεκλήθη + " 2x παρεκλήθημεν + " 1x παρεκλήθησαν + " 3x παρεκτός + " 6x παρελάβετε + " 1x παρελέγοντο + " 2x παρελεύσεται + " 5x παρελεύσονται + " 1x παρεληλυθέναι + " 1x παρεληλυθώς + " 1x παρελθάτω + " 4x παρελθεῖν + " 1x παρελθόντες + " 2x παρελθών + " 1x παρεμβαλοῦσιν + " 1x παρεμβολάς + " 7x παρεμβολήν + " 2x παρεμβολῆς + " 1x παρενοχλεῖν + " 1x παρεπίδημοι + " 1x παρεπίκραναν + " 1x παρεπιδήμοις + " 1x παρεπιδήμους + " 1x παρεπορεύοντο + " 1x παρεσκευασμένοι + " 1x παρεσκεύασται + " 1x παρεστήσατε + " 2x παρεστηκότων + " 3x παρεστηκώς + " 3x παρεστῶσιν + " 1x παρεστῶτα + " 2x παρεστῶτες + " 1x παρετήρουν + " 2x παρετηροῦντο + " 1x παρεχέτω + " 1x παρεχόμενος + " 4x παρεῖναι + " 1x παρεῖχαν + " 1x παρεῖχεν + " 1x παρηγγέλλομεν + " 2x παρηγγείλαμεν + " 1x παρηγγελμένα + " 1x παρηγορία + " 1x παρηκολουθηκότι + " 1x παρηκολούθηκας + " 1x παρηκολούθησας + " 4x παρθένοι + " 1x παρθένοις + " 5x παρθένον + " 3x παρθένος + " 1x παρθένου + " 1x παρθένων + " 1x παρθενίας + " 2x παριστάνετε + " 1x παροίκους + " 1x παροικίας + " 1x παροικίᾳ + " 1x παροικεῖς + " 2x παροιμίαις + " 2x παροιμίαν + " 1x παροιμίας + " 1x παρομοιάζετε + " 1x παροξυσμόν + " 1x παροξυσμός + " 1x παροξύνεται + " 1x παροργίζετε + " 1x παροργισμῷ + " 1x παροργιῶ + " 6x παρουσία + " 3x παρουσίαν + " 6x παρουσίας + " 9x παρουσίᾳ + " 1x παροψίδος + " 1x παρούσῃ + " 1x παροῦσιν + " 2x παρρησία + " 10x παρρησίαν + " 5x παρρησίας + " 14x παρρησίᾳ + " 1x παρρησιάζεσθαι + " 1x παρρησιάσωμαι + " 1x παρρησιαζόμενοι + " 2x παρρησιαζόμενος + " 1x παρρησιασάμενοι + " 1x παρωξύνετο + " 1x παρόδῳ + " 1x παρόμοια + " 1x παρόν + " 1x παρόντες + " 1x παρόντος + " 6x παρών + " 1x παρώτρυναν + " 1x παρῃτήσαντο + " 2x παρῃτημένον + " 1x παρῃτοῦντο + " 1x παρῄνει + " 2x παρῆλθεν + " 1x παρῆλθον + " 1x παρῆσαν + " 1x παρῳχημέναις + " 1x παρῴκησεν + " 59x παρ’ + " 1x πασχέτω + " 5x πασῶν + " 1x πατάξαι + " 3x πατάξας + " 1x πατάξομεν + " 1x πατάξῃ + " 38x πατέρα + " 12x πατέρας + " 24x πατέρες + " 14x πατέρων + " 20x πατήρ + " 1x πατήσουσιν + " 1x πατεῖ + " 1x πατεῖν + " 1x πατουμένη + " 3x πατράσιν + " 10x πατρί + " 3x πατρίδα + " 5x πατρίδι + " 1x πατριά + " 1x πατριάρχαι + " 1x πατριάρχας + " 1x πατριάρχης + " 1x πατριάρχου + " 1x πατριαί + " 1x πατρικῶν + " 1x πατριᾶς + " 1x πατρολῴαις + " 1x πατροπαραδότου + " 26x πατρός + " 1x πατρῴοις + " 1x πατρῴου + " 1x πατρῴῳ + " 1x παυσάτω + " 1x παυόμεθα + " 1x παύεται + " 1x παύομαι + " 1x παύσασθαι + " 1x παύσονται + " 1x παύσῃ + " 2x παῖδα + " 3x παῖδας + " 9x παῖς + " 1x πείθεις + " 2x πείθεσθαι + " 1x πείθομαι + " 1x πείθομεν + " 1x πείθω + " 2x πείθων + " 2x πείσαντες + " 1x πείσας + " 2x πείσομεν + " 1x πεδινοῦ + " 1x πεζεύειν + " 2x πεζῇ + " 1x πειθαρχήσαντας + " 1x πειθαρχεῖν + " 1x πειθαρχοῦσιν + " 1x πειθομένοις + " 1x πειθομένου + " 1x πειθοῖς + " 1x πειθόμεθα + " 1x πεινάσετε + " 1x πεινάσουσιν + " 1x πεινάσῃ + " 1x πεινᾶν + " 3x πεινᾷ + " 1x πεινῶμεν + " 2x πεινῶντα + " 1x πεινῶντας + " 2x πεινῶντες + " 1x πειράζει + " 1x πειράζεται + " 4x πειράζετε + " 1x πειράζομαι + " 6x πειράζοντες + " 4x πειράζων + " 1x πειράζῃ + " 2x πειράσαι + " 1x πειραζομένοις + " 4x πειραζόμενος + " 1x πειρασθείς + " 2x πειρασθῆναι + " 1x πειρασθῆτε + " 1x πειρασθῇς + " 3x πειρασμοῖς + " 4x πειρασμοῦ + " 11x πειρασμόν + " 1x πειρασμός + " 1x πειρασμῶν + " 1x πειρασμῷ + " 1x πεισθήσονται + " 1x πεισθῇς + " 1x πεισμονή + " 1x πελάγει + " 1x πεμπομένοις + " 1x πεμφθέντες + " 1x πενθήσατε + " 1x πενθήσετε + " 1x πενθήσω + " 3x πενθερά + " 2x πενθεράν + " 1x πενθερός + " 1x πενθερᾶς + " 1x πενθεῖν + " 3x πενθοῦντες + " 1x πενθοῦσι + " 1x πενθοῦσιν + " 1x πενιχράν + " 1x πεντάκις + " 6x πεντήκοντα + " 4x πεντακισχίλιοι + " 1x πεντακισχιλίους + " 1x πεντακισχιλίων + " 1x πεντακοσίοις + " 1x πεντακόσια + " 1x πεντεκαιδεκάτῳ + " 2x πεπίστευκα + " 1x πεπίστευκας + " 2x πεπίστευκεν + " 2x πεπίστευμαι + " 1x πεπαιδευμένος + " 1x πεπαλαίωκεν + " 1x πεπειρασμένον + " 1x πεπεισμένος + " 1x πεπελεκισμένων + " 1x πεπιεσμένον + " 1x πεπιστευκόσιν + " 1x πεπιστευκότας + " 2x πεπιστευκότες + " 3x πεπιστευκότων + " 1x πεπιστευκώς + " 2x πεπιστεύκαμεν + " 1x πεπιστεύκατε + " 1x πεπιστεύκεισαν + " 1x πεπλάνησθε + " 1x πεπλάτυνται + " 2x πεπλήρωκεν + " 2x πεπλήρωμαι + " 4x πεπλήρωται + " 1x πεπλανημένοις + " 1x πεπληροφορημένοι + " 1x πεπληροφορημένων + " 1x πεπληρωκέναι + " 1x πεπληρωμένα + " 3x πεπληρωμένη + " 1x πεπληρωμένην + " 3x πεπληρωμένοι + " 1x πεπληρωμένους + " 1x πεπληρώκατε + " 1x πεπλούτηκα + " 2x πεποίηκα + " 5x πεποίηκεν + " 1x πεποίθαμεν + " 1x πεποίθησιν + " 1x πεποιήκαμεν + " 1x πεποιήκατε + " 1x πεποιήκεισαν + " 1x πεποιηκέναι + " 1x πεποιηκόσιν + " 1x πεποιηκότες + " 1x πεποιηκότος + " 2x πεποιηκώς + " 1x πεποιημένων + " 1x πεποιθέναι + " 4x πεποιθήσει + " 2x πεποιθότας + " 2x πεποιθότες + " 4x πεποιθώς + " 1x πεπολίτευμαι + " 1x πεπορευμένους + " 2x πεπραγμένον + " 1x πεπραμένος + " 1x πεπραχέναι + " 1x πεπτωκυῖαν + " 1x πεπτωκότα + " 1x πεπυρωμένα + " 1x πεπυρωμένης + " 1x πεπυρωμένον + " 1x πεπωρωμένη + " 1x πεπωρωμένην + " 1x πεπόνθασιν + " 1x πεπότικεν + " 2x περάτων + " 316x περί + " 1x περίεργα + " 1x περίεργοι + " 1x περίκειμαι + " 3x περίκειται + " 2x περίλυπος + " 1x περίοικοι + " 2x περίσσευμα + " 4x περίχωρον + " 1x περίχωρος + " 1x περίψημα + " 1x περαιτέρω + " 2x περιΐστασο + " 1x περιάγειν + " 1x περιάγετε + " 1x περιάγων + " 1x περιέβαλον + " 1x περιέδραμον + " 1x περιέθηκαν + " 2x περιέθηκεν + " 1x περιέκρυβεν + " 1x περιέλαμψεν + " 1x περιέπειραν + " 1x περιέπεσεν + " 1x περιέστησαν + " 1x περιέσχεν + " 2x περιέτεμεν + " 1x περιέχει + " 1x περιήστραψεν + " 1x περιαιρεῖται + " 1x περιαστράψαι + " 1x περιαψάντων + " 1x περιβάληται + " 1x περιβάλῃ + " 1x περιβαλεῖται + " 1x περιβαλώμεθα + " 1x περιβαλών + " 3x περιβεβλημένη + " 2x περιβεβλημένοι + " 2x περιβεβλημένον + " 2x περιβεβλημένος + " 2x περιβεβλημένους + " 1x περιβλεψάμενοι + " 5x περιβλεψάμενος + " 1x περιβολαίου + " 1x περιβόλαιον + " 2x περιεβάλετε + " 2x περιεβάλετο + " 1x περιεβάλομεν + " 1x περιεβλέπετο + " 1x περιεδέδετο + " 1x περιεζωσμέναι + " 1x περιεζωσμένοι + " 1x περιεζωσμένον + " 1x περιελεῖν + " 1x περιελθόντες + " 1x περιελόντες + " 7x περιεπάτει + " 1x περιεπάτεις + " 3x περιεπάτησεν + " 1x περιεπάτουν + " 1x περιεπατήσαμεν + " 2x περιεπατήσατε + " 1x περιεποιήσατο + " 1x περιεργαζομένους + " 1x περιερχομένων + " 1x περιερχόμεναι + " 1x περιεσπᾶτο + " 1x περιεστῶτα + " 1x περιετμήθητε + " 1x περιζωσάμενοι + " 1x περιζωσάμενος + " 1x περιζώσεται + " 1x περιθέντες + " 1x περιθέσεως + " 2x περιθείς + " 1x περικαθάρματα + " 1x περικαλύπτειν + " 1x περικαλύψαντες + " 1x περικείμενον + " 1x περικεκαλυμμένην + " 2x περικεφαλαίαν + " 1x περικρατεῖς + " 1x περικυκλώσουσιν + " 1x περιλάμψαν + " 2x περιλειπόμενοι + " 1x περιμένειν + " 1x περιοικοῦντας + " 1x περιοχή + " 1x περιούσιον + " 7x περιπάτει + " 1x περιπέσητε + " 2x περιπατήσουσιν + " 3x περιπατήσωμεν + " 1x περιπατήσῃ + " 1x περιπατείτω + " 3x περιπατεῖ + " 10x περιπατεῖν + " 2x περιπατεῖς + " 9x περιπατεῖτε + " 1x περιπατοῦμεν + " 5x περιπατοῦντα + " 6x περιπατοῦντας + " 5x περιπατοῦντες + " 1x περιπατοῦντι + " 2x περιπατοῦντος + " 6x περιπατοῦσιν + " 2x περιπατῆσαι + " 2x περιπατῆτε + " 3x περιπατῇ + " 3x περιπατῶμεν + " 5x περιπατῶν + " 1x περιπεσόντες + " 4x περιποίησιν + " 1x περιποιήσασθαι + " 1x περιποιήσεως + " 1x περιποιοῦνται + " 1x περιρήξαντες + " 1x περισσεία + " 3x περισσείαν + " 2x περισσευθήσεται + " 3x περισσεύει + " 5x περισσεύειν + " 1x περισσεύετε + " 4x περισσεύητε + " 1x περισσεύματα + " 2x περισσεύματος + " 1x περισσεύομεν + " 1x περισσεύονται + " 2x περισσεύοντες + " 2x περισσεύοντος + " 1x περισσεύουσα + " 1x περισσεύσαι + " 1x περισσεύσαντα + " 2x περισσεύσῃ + " 1x περισσεύω + " 2x περισσεύῃ + " 2x περισσεῦον + " 1x περισσεῦσαι + " 1x περισσεῦσαν + " 3x περισσοτέραν + " 12x περισσοτέρως + " 1x περισσοτέρᾳ + " 1x περισσοῦ + " 5x περισσόν + " 12x περισσότερον + " 4x περισσῶς + " 4x περιστεράν + " 4x περιστεράς + " 1x περιστεραί + " 1x περιστερῶν + " 2x περιτέμνειν + " 2x περιτέμνεσθαι + " 1x περιτέμνετε + " 1x περιτέμνησθε + " 1x περιτίθεμεν + " 2x περιτεμεῖν + " 1x περιτεμνέσθω + " 1x περιτεμνομένῳ + " 1x περιτεμνόμενοι + " 1x περιτετμημένος + " 1x περιτιθέασιν + " 1x περιτμηθῆναι + " 1x περιτμηθῆτε + " 9x περιτομή + " 7x περιτομήν + " 15x περιτομῆς + " 5x περιτομῇ + " 1x περιτρέπει + " 1x περιφέρειν + " 1x περιφέροντες + " 1x περιφερόμενοι + " 1x περιφρονείτω + " 3x περιχώρου + " 1x περιχώρῳ + " 1x περιῃρεῖτο + " 3x περιῆγεν + " 1x περιῆλθον + " 1x περπερεύεται + " 1x πεσεῖν + " 2x πεσεῖται + " 4x πεσοῦνται + " 1x πεσόν + " 1x πεσόντα + " 1x πεσόντας + " 1x πεσόντες + " 13x πεσών + " 11x πετεινά + " 3x πετεινῶν + " 1x πετομένοις + " 1x πετομένου + " 1x πετομένῳ + " 3x πετρώδη + " 1x πετρῶδες + " 1x πετόμενον + " 1x πεφίμωσο + " 2x πεφανέρωται + " 1x πεφανερώμεθα + " 2x πεφανερῶσθαι + " 1x πεφιλήκατε + " 1x πεφορτισμένοι + " 1x πεφυσιωμένοι + " 1x πεφυσιωμένων + " 1x πεφυτευμένην + " 1x πεφωτισμένους + " 6x πεῖν + " 2x πεῖραν + " 4x πηγάς + " 4x πηγή + " 1x πηγαί + " 1x πηγῆς + " 1x πηγῇ + " 1x πηδαλίου + " 1x πηδαλίων + " 1x πηλίκοις + " 1x πηλίκος + " 1x πηλοῦ + " 4x πηλόν + " 2x πηχῶν + " 4x πιάσαι + " 2x πιάσας + " 2x πιάσωσιν + " 7x πιεῖν + " 1x πιθανολογίᾳ + " 1x πικρία + " 3x πικρίας + " 1x πικραίνεσθε + " 1x πικρανεῖ + " 2x πικρόν + " 2x πικρῶς + " 2x πινέτω + " 1x πινακίδιον + " 1x πιοῦσα + " 1x πιπρασκομένων + " 2x πιπτόντων + " 2x πιστά + " 1x πιστάς + " 2x πιστέ + " 1x πιστή + " 1x πιστήν + " 1x πιστευθῆναι + " 1x πιστευσάντων + " 4x πιστευόντων + " 3x πιστεύει + " 5x πιστεύειν + " 7x πιστεύεις + " 1x πιστεύεται + " 20x πιστεύετε + " 5x πιστεύητε + " 6x πιστεύομεν + " 1x πιστεύοντα + " 4x πιστεύοντας + " 6x πιστεύοντες + " 4x πιστεύοντι + " 14x πιστεύουσιν + " 1x πιστεύσαντας + " 8x πιστεύσαντες + " 2x πιστεύσας + " 1x πιστεύσασα + " 3x πιστεύσασιν + " 1x πιστεύσει + " 2x πιστεύσετε + " 8x πιστεύσητε + " 1x πιστεύσομεν + " 1x πιστεύσουσιν + " 2x πιστεύσω + " 3x πιστεύσωμεν + " 4x πιστεύσωσιν + " 2x πιστεύσῃς + " 2x πιστεύω + " 24x πιστεύων + " 2x πιστεύῃ + " 6x πιστεῦσαι + " 2x πιστικῆς + " 7x πιστοί + " 2x πιστούς + " 4x πιστοῖς + " 2x πιστοῦ + " 5x πιστόν + " 28x πιστός + " 1x πιστῆς + " 2x πιστῶν + " 4x πιστῷ + " 1x πιότητος + " 1x πιών + " 1x πλάκες + " 1x πλάνη + " 6x πλάνης + " 2x πλάνοι + " 1x πλάνοις + " 2x πλάνος + " 3x πλάνῃ + " 1x πλάσαντι + " 1x πλάσμα + " 4x πλάτος + " 1x πλέγμασιν + " 3x πλέξαντες + " 4x πλέον + " 1x πλέοντας + " 1x πλέων + " 1x πλήθει + " 1x πλήθη + " 4x πλήθους + " 2x πλήκτην + " 30x πλήν + " 5x πλήρεις + " 2x πλήρη + " 9x πλήρης + " 11x πλήρωμα + " 1x πλήσας + " 1x πλανάτω + " 3x πλανήσουσιν + " 3x πλανήσῃ + " 1x πλανηθῆτε + " 2x πλανηθῇ + " 1x πλανωμένοις + " 4x πλανώμενοι + " 1x πλανώμενον + " 1x πλανώντων + " 6x πλανᾶσθε + " 3x πλανᾷ + " 2x πλανῆσαι + " 1x πλανῆται + " 1x πλανῶμεν + " 2x πλανῶν + " 1x πλανῶνται + " 1x πλανῶντες + " 2x πλαξίν + " 1x πλαστοῖς + " 2x πλατείαις + " 5x πλατείας + " 1x πλατειῶν + " 2x πλατεῖα + " 1x πλατύνθητε + " 1x πλατύνουσιν + " 6x πλείονα + " 6x πλείονας + " 4x πλείονες + " 1x πλείονος + " 2x πλείοσιν + " 9x πλείους + " 1x πλείω + " 5x πλειόνων + " 1x πλεονάζει + " 2x πλεονάζοντα + " 1x πλεονάσαι + " 1x πλεονάσασα + " 2x πλεονάσῃ + " 1x πλεονέκται + " 1x πλεονέκταις + " 2x πλεονέκτης + " 1x πλεονεκτεῖν + " 1x πλεονεκτηθῶμεν + " 1x πλεονεξία + " 1x πλεονεξίαι + " 2x πλεονεξίαν + " 3x πλεονεξίας + " 3x πλεονεξίᾳ + " 5x πλευράν + " 1x πλεόντων + " 1x πλεῖν + " 18x πλεῖον + " 1x πλεῖσται + " 1x πλεῖστον + " 2x πλεῖστος + " 6x πληγάς + " 3x πληγή + " 1x πληγήν + " 2x πληγαί + " 3x πληγαῖς + " 1x πληγῆς + " 1x πληγῇ + " 5x πληγῶν + " 1x πληθυνεῖ + " 3x πληθυνθείη + " 1x πληθυνθῆναι + " 1x πληθυνόντων + " 1x πληθυνῶ + " 1x πληθύνων + " 1x πλημμύρης + " 1x πληρουμένου + " 1x πληροφορίαν + " 1x πληροφορίας + " 2x πληροφορίᾳ + " 1x πληροφορείσθω + " 1x πληροφορηθείς + " 1x πληροφορηθῇ + " 1x πληροφόρησον + " 1x πληρούμενον + " 1x πληροῖς + " 1x πληροῦν + " 1x πληροῦσθε + " 1x πληρωθέντων + " 1x πληρωθήσεται + " 1x πληρωθήσονται + " 1x πληρωθείσης + " 2x πληρωθῆναι + " 2x πληρωθῆτε + " 20x πληρωθῇ + " 1x πληρωθῶ + " 5x πληρωθῶσιν + " 2x πληρώματα + " 1x πληρώματι + " 3x πληρώματος + " 1x πληρώσαι + " 1x πληρώσαντες + " 2x πληρώσατε + " 1x πληρώσει + " 1x πληρώσεις + " 2x πληρώσῃ + " 3x πληρῶσαι + " 17x πλησίον + " 1x πλησθήσεται + " 2x πλησθείς + " 1x πλησθῆναι + " 1x πλησθῇς + " 1x πλησμονήν + " 12x πλοίου + " 2x πλοίων + " 14x πλοίῳ + " 2x πλοιάρια + " 2x πλοιάριον + " 1x πλοιαρίῳ + " 2x πλουσίοις + " 2x πλουσίου + " 4x πλουσίους + " 4x πλουσίως + " 1x πλουτήσαντες + " 1x πλουτήσητε + " 1x πλουτήσῃς + " 1x πλουτίζοντες + " 2x πλουτεῖν + " 1x πλουτιζόμενοι + " 1x πλουτοῦντας + " 2x πλουτῶν + " 1x πλοός + " 4x πλούσιοι + " 3x πλούσιον + " 12x πλούσιος + " 6x πλούτου + " 6x πλοῖα + " 33x πλοῖον + " 2x πλοῦν + " 3x πλοῦτον + " 13x πλοῦτος + " 1x πλύνοντες + " 25x πλῆθος + " 1x πνέοντα + " 1x πνέοντος + " 1x πνέῃ + " 1x πνεούσῃ + " 10x πνευμάτων + " 4x πνευματικά + " 1x πνευματικάς + " 2x πνευματικαῖς + " 1x πνευματικοί + " 3x πνευματικοῖς + " 7x πνευματικόν + " 4x πνευματικός + " 1x πνευματικῆς + " 2x πνευματικῇ + " 1x πνευματικῶν + " 2x πνευματικῶς + " 2x πνεύμασι + " 3x πνεύμασιν + " 15x πνεύματα + " 41x πνεύματι + " 17x πνεύματος + " 1x πνεῖ + " 62x πνεῦμα + " 1x πνικτοῦ + " 1x πνικτόν + " 1x πνικτῶν + " 1x πνοήν + " 1x πνοῆς + " 5x ποία + " 1x ποίαν + " 2x ποίας + " 3x ποίει + " 1x ποίημα + " 6x ποίησον + " 1x ποίμνη + " 2x ποίμνην + " 2x ποίμνης + " 2x ποίμνιον + " 1x ποίου + " 12x ποίᾳ + " 5x ποίῳ + " 1x ποδήρη + " 1x ποδός + " 19x ποδῶν + " 1x ποιήμασιν + " 1x ποιήσαιεν + " 6x ποιήσαντες + " 3x ποιήσαντι + " 20x ποιήσας + " 1x ποιήσασαν + " 1x ποιήσασθαι + " 10x ποιήσατε + " 18x ποιήσει + " 3x ποιήσεις + " 2x ποιήσετε + " 1x ποιήσητε + " 4x ποιήσομεν + " 6x ποιήσουσιν + " 24x ποιήσω + " 7x ποιήσωμεν + " 1x ποιήσων + " 4x ποιήσωσιν + " 9x ποιήσῃ + " 1x ποιήσῃς + " 2x ποιείτω + " 29x ποιεῖ + " 23x ποιεῖν + " 13x ποιεῖς + " 3x ποιεῖσθαι + " 1x ποιεῖσθε + " 1x ποιεῖται + " 35x ποιεῖτε + " 1x ποιησάμενοι + " 2x ποιησάμενος + " 2x ποιησάτω + " 1x ποιησόμεθα + " 3x ποιητής + " 2x ποιηταί + " 1x ποιητῶν + " 7x ποικίλαις + " 1x ποικίλης + " 2x ποικίλοις + " 1x ποιμάνατε + " 5x ποιμένα + " 1x ποιμένας + " 3x ποιμένες + " 1x ποιμένων + " 7x ποιμήν + " 1x ποιμαίνει + " 2x ποιμαίνειν + " 1x ποιμαίνοντα + " 1x ποιμαίνοντες + " 4x ποιμανεῖ + " 2x ποιμνίου + " 1x ποιμνίῳ + " 1x ποιούμενοι + " 5x ποιούμενος + " 2x ποιοῦμαι + " 4x ποιοῦμεν + " 6x ποιοῦν + " 5x ποιοῦντα + " 1x ποιοῦνται + " 3x ποιοῦντας + " 7x ποιοῦντες + " 2x ποιοῦντι + " 1x ποιοῦντος + " 12x ποιοῦσιν + " 47x ποιῆσαι + " 7x ποιῆτε + " 3x ποιῇ + " 5x ποιῇς + " 24x ποιῶ + " 2x ποιῶμεν + " 27x ποιῶν + " 4x ποιῶσιν + " 3x πολέμους + " 2x πολέμων + " 1x πολέμῳ + " 1x πολίτευμα + " 1x πολίτην + " 1x πολίτης + " 1x πολεμήσουσιν + " 1x πολεμήσω + " 1x πολεμεῖ + " 1x πολεμεῖτε + " 2x πολεμῆσαι + " 2x πολιτάρχας + " 1x πολιτείαν + " 1x πολιτείας + " 1x πολιτεύεσθε + " 1x πολιτῶν + " 58x πολλά + " 18x πολλάκις + " 11x πολλάς + " 4x πολλή + " 9x πολλήν + " 6x πολλαί + " 2x πολλαπλασίονα + " 4x πολλαῖς + " 79x πολλοί + " 23x πολλούς + " 7x πολλοῖς + " 7x πολλοῦ + " 10x πολλῆς + " 8x πολλῇ + " 38x πολλῶν + " 20x πολλῷ + " 1x πολυλογίᾳ + " 1x πολυποίκιλος + " 1x πολυτίμου + " 1x πολυτελές + " 1x πολυτελεῖ + " 1x πολυτελοῦς + " 1x πολυτιμότερον + " 1x πολυτρόπως + " 23x πολύ + " 9x πολύν + " 26x πολύς + " 1x πολύσπλαγχνος + " 1x πολύτιμον + " 1x πολῖται + " 13x πονηρά + " 2x πονηρέ + " 1x πονηρίαι + " 1x πονηρίαν + " 3x πονηρίας + " 1x πονηρίᾳ + " 2x πονηραί + " 1x πονηριῶν + " 5x πονηροί + " 7x πονηρούς + " 3x πονηροῖς + " 12x πονηροῦ + " 12x πονηρόν + " 8x πονηρός + " 2x πονηρότερα + " 1x πονηρᾶς + " 2x πονηρᾷ + " 6x πονηρῶν + " 2x πονηρῷ + " 1x πορείαις + " 1x πορείαν + " 8x πορευθέντες + " 1x πορευθέντι + " 8x πορευθείς + " 1x πορευθεῖσα + " 1x πορευθεῖσαι + " 2x πορευθῆναι + " 1x πορευθῆτε + " 1x πορευθῇ + " 2x πορευθῶ + " 1x πορευθῶσιν + " 1x πορευομένη + " 1x πορευομένοις + " 2x πορευομένου + " 2x πορευομένους + " 3x πορευομένων + " 1x πορευομένῳ + " 1x πορευσόμεθα + " 7x πορευόμενοι + " 2x πορευόμενον + " 3x πορευόμενος + " 17x πορεύεσθαι + " 4x πορεύεσθε + " 7x πορεύεται + " 1x πορεύθητι + " 8x πορεύομαι + " 12x πορεύου + " 1x πορεύσεται + " 2x πορεύσομαι + " 1x πορεύσονται + " 1x πορεύσῃ + " 2x πορεύωμαι + " 1x πορθήσας + " 1x πορισμόν + " 1x πορισμός + " 3x πορνεία + " 3x πορνείαν + " 12x πορνείας + " 4x πορνείᾳ + " 1x πορνεύσαντες + " 1x πορνεύωμεν + " 1x πορνεύων + " 2x πορνεῖαι + " 2x πορνεῦσαι + " 1x πορνῶν + " 1x πορρώτερον + " 4x πορφυροῦν + " 1x πορφυρόπωλις + " 3x πορφύραν + " 1x πορφύρας + " 3x ποσάκις + " 5x ποσίν + " 8x ποτέ + " 24x ποτήριον + " 1x ποτίζει + " 2x ποτίζων + " 2x ποτίσῃ + " 3x ποταμοί + " 1x ποταμοφόρητον + " 1x ποταμούς + " 1x ποταμοῦ + " 5x ποταμόν + " 2x ποταμός + " 2x ποταμῶν + " 3x ποταμῷ + " 1x ποταπή + " 1x ποταπήν + " 1x ποταπαί + " 1x ποταποί + " 1x ποταπούς + " 1x ποταπός + " 46x ποτε + " 4x ποτηρίου + " 1x ποτηρίων + " 2x ποτηρίῳ + " 3x που + " 1x πού + " 3x πούς + " 4x ποῖον + " 32x ποῦ + " 3x πράγματι + " 1x πράγματος + " 1x πράκτορι + " 1x πράκτωρ + " 1x πράξαντες + " 1x πράξας + " 1x πράξει + " 2x πράξεις + " 1x πράξεσιν + " 1x πράξετε + " 1x πράξῃς + " 1x πράσσει + " 4x πράσσειν + " 1x πράσσεις + " 2x πράσσετε + " 3x πράσσοντας + " 2x πράσσοντες + " 1x πράσσοντι + " 2x πράσσουσιν + " 4x πράσσω + " 1x πράσσων + " 1x πράσσῃς + " 3x πρέπει + " 2x πρέπον + " 10x πρίν + " 1x πραέως + " 2x πραΰς + " 1x πραΰτης + " 2x πραΰτητα + " 3x πραΰτητι + " 5x πραΰτητος + " 4x πραγμάτων + " 1x πραγματείαις + " 1x πραεῖς + " 1x πραθέν + " 3x πραθῆναι + " 2x πραιτωρίῳ + " 5x πραιτώριον + " 2x πραξάντων + " 2x πρασιαί + " 1x πραϋπαθίαν + " 2x πρεσβείαν + " 1x πρεσβεύομεν + " 1x πρεσβεύω + " 1x πρεσβυτέρας + " 2x πρεσβυτέριον + " 5x πρεσβυτέροις + " 1x πρεσβυτέρου + " 11x πρεσβυτέρους + " 22x πρεσβυτέρων + " 1x πρεσβυτερίου + " 1x πρεσβύτας + " 21x πρεσβύτεροι + " 3x πρεσβύτερος + " 2x πρεσβύτης + " 1x πρεσβύτιδας + " 1x πρηνής + " 2x προΐστασθαι + " 1x προάγει + " 2x προάγειν + " 3x προάγοντες + " 1x προάγουσαι + " 1x προάγουσιν + " 2x προάγων + " 2x προάξω + " 2x προέγνω + " 1x προέγραψα + " 1x προέδραμεν + " 1x προέδωκεν + " 2x προέθετο + " 1x προέκοπτεν + " 1x προέκοπτον + " 1x προέκοψεν + " 1x προέλαβεν + " 1x προέλθωσιν + " 1x προέπεμπον + " 1x προέτειναν + " 1x προέφθασεν + " 1x προήγαγον + " 1x προήρχετο + " 2x προαγαγεῖν + " 1x προαγαγών + " 1x προαγούσας + " 1x προαγούσης + " 1x προαύλιον + " 1x προβάλωσιν + " 2x προβάς + " 2x προβάτια + " 1x προβάτου + " 9x προβάτων + " 1x προβαλόντων + " 1x προβατικῇ + " 2x προβεβηκυῖα + " 1x προβεβηκότες + " 1x προβιβασθεῖσα + " 1x προβλεψαμένου + " 1x προγεγονότων + " 1x προγεγραμμένοι + " 2x προγινώσκοντες + " 1x προγνώσει + " 1x προγόνοις + " 1x προγόνων + " 1x προδραμών + " 2x προδόται + " 1x προδότης + " 1x προείπαμεν + " 4x προείρηκα + " 1x προείρηκεν + " 1x προείρηται + " 1x προεγνωσμένου + " 2x προεγράφη + " 1x προεθέμην + " 1x προειρήκαμεν + " 2x προειρημένων + " 1x προελέγομεν + " 1x προελεύσεται + " 2x προελθόντες + " 2x προελθών + " 1x προενήρξασθε + " 1x προενήρξατο + " 1x προεπηγγείλατο + " 1x προεπηγγελμένην + " 1x προεστῶτες + " 1x προευηγγελίσατο + " 1x προεχειρίσατο + " 1x προεχόμεθα + " 1x προεωρακότες + " 1x προεῖπεν + " 1x προεῖπον + " 1x προηγούμενοι + " 1x προηκούσατε + " 1x προηλπικότας + " 1x προημαρτηκόσιν + " 1x προημαρτηκότων + " 2x προητοίμασεν + " 2x προθέσει + " 4x προθέσεως + " 1x προθεσμίας + " 2x προθυμία + " 2x προθυμίαν + " 1x προθυμίας + " 1x προθύμως + " 1x προκαλούμενοι + " 1x προκατήγγειλεν + " 1x προκαταγγείλαντας + " 1x προκαταρτίσωσιν + " 1x προκείμενον + " 2x προκειμένης + " 1x προκεκυρωμένην + " 1x προκεχειρισμένον + " 1x προκεχειροτονημένοις + " 1x προκηρύξαντος + " 1x προκοπή + " 2x προκοπήν + " 1x προκρίματος + " 3x προκόψουσιν + " 2x προλέγω + " 1x προλαμβάνει + " 1x προλημφθῇ + " 1x προμαρτυρόμενον + " 1x προμελετᾶν + " 1x προμεριμνᾶτε + " 1x προνοίας + " 1x προνοεῖ + " 1x προνοούμενοι + " 1x προνοοῦμεν + " 1x προορίσας + " 1x προορισθέντες + " 1x προπάτορα + " 1x προπέμψας + " 1x προπέμψατε + " 1x προπέμψητε + " 1x προπαθόντες + " 1x προπεμπόντων + " 1x προπεμφθέντες + " 2x προπεμφθῆναι + " 1x προπετές + " 1x προπετεῖς + " 1x προπορεύσονται + " 1x προπορεύσῃ + " 1x προσάββατον + " 1x προσάγαγε + " 1x προσάγειν + " 3x προσέθετο + " 1x προσέθηκεν + " 2x προσέκοψαν + " 2x προσένεγκε + " 1x προσένεγκον + " 1x προσέπεσαν + " 5x προσέπεσεν + " 1x προσέπιπτον + " 2x προσέρηξεν + " 1x προσέρχεσθαι + " 1x προσέρχεται + " 2x προσέρχονται + " 1x προσέσχηκεν + " 5x προσέταξεν + " 1x προσέφερεν + " 2x προσέφερον + " 4x προσέχειν + " 5x προσέχετε + " 1x προσέχοντας + " 3x προσέχοντες + " 1x προσήλυτοι + " 2x προσήλυτον + " 1x προσήνεγκα + " 7x προσήνεγκαν + " 4x προσήνεγκεν + " 1x προσήρχοντο + " 1x προσήχθη + " 2x προσαίτης + " 1x προσαγάγῃ + " 1x προσαγαγόντες + " 1x προσαγορευθείς + " 3x προσαγωγήν + " 1x προσαιτῶν + " 1x προσανάβηθι + " 1x προσανέθεντο + " 1x προσαναπληροῦσα + " 1x προσανεθέμην + " 1x προσανεπλήρωσαν + " 1x προσαπειλησάμενοι + " 1x προσδέξησθε + " 1x προσδέχεσθε + " 1x προσδέχεται + " 1x προσδέχονται + " 1x προσδαπανήσῃς + " 1x προσδεξάμενοι + " 2x προσδεχομένοις + " 3x προσδεχόμενοι + " 2x προσδεχόμενος + " 1x προσδεόμενος + " 2x προσδοκίας + " 1x προσδοκώντων + " 2x προσδοκᾷ + " 4x προσδοκῶμεν + " 3x προσδοκῶν + " 1x προσδοκῶντας + " 3x προσδοκῶντες + " 2x προσδραμών + " 1x προσεδέξασθε + " 1x προσεδέχετο + " 1x προσεδόκων + " 1x προσεκαλέσατο + " 1x προσεκλίθη + " 1x προσεκληρώθησαν + " 1x προσεκύλισεν + " 4x προσεκύνει + " 12x προσεκύνησαν + " 4x προσεκύνησεν + " 1x προσεκύνουν + " 2x προσελάβετο + " 3x προσελάβοντο + " 2x προσεληλύθατε + " 2x προσελθοῦσα + " 1x προσελθοῦσαι + " 16x προσελθόντες + " 1x προσελθόντων + " 24x προσελθών + " 1x προσενέγκαι + " 2x προσενέγκας + " 1x προσενέγκῃ + " 1x προσενήνοχεν + " 1x προσενεχθείς + " 1x προσεποιήσατο + " 2x προσερχομένου + " 2x προσερχομένους + " 2x προσερχόμενοι + " 1x προσερχόμενον + " 2x προσερχώμεθα + " 3x προσετέθη + " 1x προσετέθησαν + " 1x προσετίθει + " 1x προσετίθεντο + " 5x προσευξάμενοι + " 1x προσευξάμενος + " 1x προσευξάσθωσαν + " 1x προσευξώμεθα + " 3x προσευχάς + " 2x προσευχέσθω + " 2x προσευχή + " 2x προσευχήν + " 2x προσευχαί + " 6x προσευχαῖς + " 1x προσευχομένη + " 2x προσευχομένου + " 1x προσευχόμεθα + " 9x προσευχόμενοι + " 3x προσευχόμενον + " 5x προσευχόμενος + " 6x προσευχῆς + " 10x προσευχῇ + " 5x προσευχῶν + " 1x προσεφώνει + " 4x προσεφώνησεν + " 6x προσεύξασθαι + " 1x προσεύξηται + " 2x προσεύξομαι + " 2x προσεύξωμαι + " 6x προσεύχεσθαι + " 13x προσεύχεσθε + " 2x προσεύχεται + " 2x προσεύχησθε + " 1x προσεύχομαι + " 1x προσεύχονται + " 1x προσεύχωμαι + " 1x προσεύχῃ + " 3x προσεῖχον + " 1x προσεῶντος + " 1x προσηλύτων + " 1x προσηλώσας + " 1x προσηνέγκατε + " 2x προσηνέχθη + " 1x προσηνέχθησαν + " 1x προσηργάσατο + " 1x προσηύξαντο + " 7x προσηύξατο + " 5x προσηύχετο + " 1x προσθείς + " 2x προσθεῖναι + " 1x προσκέκλημαι + " 1x προσκέκληται + " 1x προσκαλέσηται + " 2x προσκαλεσάμενοι + " 20x προσκαλεσάμενος + " 1x προσκαλεσάσθω + " 2x προσκαλεῖται + " 1x προσκαρτερήσει + " 1x προσκαρτερήσομεν + " 1x προσκαρτερεῖτε + " 1x προσκαρτερούντων + " 5x προσκαρτεροῦντες + " 1x προσκαρτερῇ + " 1x προσκαρτερῶν + " 1x προσκεφάλαιον + " 1x προσκολληθήσεται + " 1x προσκοπήν + " 1x προσκυλίσας + " 1x προσκυνήσαντες + " 1x προσκυνήσατε + " 1x προσκυνήσει + " 1x προσκυνήσεις + " 1x προσκυνήσετε + " 7x προσκυνήσουσιν + " 1x προσκυνήσω + " 2x προσκυνήσων + " 2x προσκυνήσωσιν + " 2x προσκυνήσῃς + " 1x προσκυνεῖ + " 3x προσκυνεῖν + " 1x προσκυνεῖτε + " 1x προσκυνησάτωσαν + " 1x προσκυνηταί + " 1x προσκυνοῦμεν + " 5x προσκυνοῦντας + " 1x προσκυνοῦντες + " 1x προσκυνοῦσα + " 3x προσκυνῆσαι + " 4x προσκόμματος + " 3x προσκόπτει + " 1x προσκόπτουσιν + " 2x προσκόψῃς + " 2x προσκύνησον + " 1x προσλαβοῦ + " 2x προσλαβόμενοι + " 2x προσλαβόμενος + " 1x προσλαλοῦντες + " 1x προσλαλῆσαι + " 2x προσλαμβάνεσθε + " 1x προσμένει + " 2x προσμένειν + " 2x προσμένουσιν + " 1x προσμείνας + " 1x προσμεῖναι + " 1x προσοφείλεις + " 1x προσπήξαντες + " 1x προσπεσοῦσα + " 1x προσπορεύονται + " 1x προστάτις + " 3x προστεθήσεται + " 1x προστεθῆναι + " 1x προστεταγμένα + " 1x προστεταγμένους + " 1x προστρέχοντες + " 1x προστῆναι + " 1x προσφάγιον + " 1x προσφάτως + " 1x προσφέρει + " 3x προσφέρειν + " 1x προσφέρεται + " 2x προσφέρονται + " 1x προσφέροντες + " 1x προσφέρουσιν + " 1x προσφέρων + " 2x προσφέρῃ + " 1x προσφέρῃς + " 1x προσφερόμεναι + " 1x προσφερόντων + " 1x προσφιλῆ + " 3x προσφορά + " 2x προσφοράν + " 2x προσφοράς + " 1x προσφορᾶς + " 1x προσφορᾷ + " 1x προσφωνοῦντα + " 1x προσφωνοῦσιν + " 1x προσψαύετε + " 1x προσωπολήμπτης + " 1x προσωπολημπτεῖτε + " 3x προσωπολημψία + " 1x προσωπολημψίαις + " 1x προσωρμίσθησαν + " 18x προσώπου + " 1x προσώπων + " 7x προσώπῳ + " 1x προσώχθισα + " 1x προσώχθισεν + " 2x προσῆλθαν + " 8x προσῆλθεν + " 15x προσῆλθον + " 1x προτέραν + " 1x προτρεψάμενοι + " 5x προφάσει + " 2x προφέρει + " 10x προφήταις + " 15x προφήτας + " 10x προφήτην + " 25x προφήτης + " 26x προφήτου + " 1x προφήτῃ + " 5x προφητεία + " 2x προφητείαν + " 10x προφητείας + " 1x προφητείᾳ + " 2x προφητεύειν + " 2x προφητεύητε + " 1x προφητεύομεν + " 1x προφητεύουσα + " 1x προφητεύουσαι + " 1x προφητεύσαντες + " 3x προφητεύσουσιν + " 4x προφητεύων + " 1x προφητεύωσιν + " 1x προφητεῖαι + " 1x προφητεῦσαι + " 1x προφητικόν + " 1x προφητικῶν + " 32x προφητῶν + " 21x προφῆται + " 1x προφῆτιν + " 1x προφῆτις + " 1x προχειρίσασθαι + " 1x προϊδοῦσα + " 1x προϊδών + " 1x προϊστάμενοι + " 1x προϊστάμενον + " 1x προϊστάμενος + " 1x προϊσταμένους + " 1x προϋπῆρχεν + " 1x προϋπῆρχον + " 4x προώρισεν + " 1x προῃτιασάμεθα + " 1x προῄρηται + " 1x προῆγεν + " 2x προῆλθον + " 11x πρωΐ + " 1x πρωΐας + " 1x πρωτεύων + " 1x πρωτοκαθεδρίαν + " 3x πρωτοκαθεδρίας + " 2x πρωτοκλισίαν + " 3x πρωτοκλισίας + " 1x πρωτοστάτην + " 1x πρωτοτόκια + " 1x πρωτοτόκων + " 1x πρωτότοκα + " 3x πρωτότοκον + " 3x πρωτότοκος + " 1x πρωϊνόν + " 1x πρωϊνός + " 43x πρό + " 24x πρόβατα + " 3x πρόβατον + " 1x πρόγνωσιν + " 1x πρόδηλα + " 1x πρόδηλοι + " 1x πρόδηλον + " 1x πρόδρομος + " 4x πρόθεσιν + " 2x πρόθεσις + " 3x πρόθυμον + " 1x πρόκεινται + " 1x πρόκειται + " 1x πρόνοιαν + " 1x πρόπεμψον + " 698x πρός + " 1x πρόσευξαι + " 1x πρόσεχε + " 1x πρόσκαιρα + " 1x πρόσκαιροι + " 1x πρόσκαιρον + " 1x πρόσκαιρος + " 1x πρόσκλισιν + " 2x πρόσκομμα + " 1x πρόσλημψις + " 1x πρόσπεινος + " 1x πρόσφατον + " 1x πρόσφερε + " 1x πρόσχυσιν + " 7x πρόσωπα + " 43x πρόσωπον + " 10x πρότερον + " 1x πρόφασιν + " 1x πρόϊμον + " 1x πρύμνα + " 1x πρύμνης + " 1x πρύμνῃ + " 12x πρώτη + " 6x πρώτην + " 4x πρώτης + " 2x πρώτοις + " 2x πρώτου + " 3x πρώτους + " 7x πρώτων + " 1x πρώτως + " 6x πρώτῃ + " 4x πρώτῳ + " 3x πρᾶγμα + " 1x πρᾶξαι + " 2x πρᾶξιν + " 1x πρῴρης + " 2x πρῶτα + " 11x πρῶτοι + " 64x πρῶτον + " 30x πρῶτος + " 1x πρῷρα + " 1x πτέρναν + " 3x πτέρυγας + " 1x πτέρυγες + " 1x πταίει + " 1x πταίομεν + " 1x πταίσητε + " 1x πταίσῃ + " 2x πτερύγιον + " 1x πτερύγων + " 1x πτηνῶν + " 1x πτοηθέντες + " 1x πτοηθῆτε + " 1x πτυρόμενοι + " 1x πτωχά + " 3x πτωχή + " 1x πτωχεία + " 1x πτωχείαν + " 1x πτωχείᾳ + " 5x πτωχοί + " 8x πτωχούς + " 9x πτωχοῖς + " 2x πτωχόν + " 3x πτωχός + " 2x πτωχῶν + " 1x πτωχῷ + " 1x πτόησιν + " 1x πτύξας + " 2x πτύον + " 2x πτύσας + " 1x πτύσματος + " 1x πτώματα + " 6x πτῶμα + " 1x πτῶσιν + " 1x πτῶσις + " 1x πυγμῇ + " 1x πυθόμενος + " 1x πυκνά + " 1x πυκνάς + " 1x πυκνότερον + " 1x πυκτεύω + " 1x πυλώνων + " 4x πυλῶνα + " 3x πυλῶνας + " 6x πυλῶνες + " 2x πυλῶνος + " 2x πυλῶσιν + " 1x πυνθάνεσθαι + " 1x πυνθάνομαι + " 2x πυράν + " 1x πυρέσσουσα + " 1x πυρέσσουσαν + " 17x πυρί + " 1x πυρίνους + " 1x πυρετοῖς + " 3x πυρετός + " 2x πυρετῷ + " 1x πυρούμενοι + " 1x πυροῦμαι + " 1x πυροῦσθαι + " 2x πυρράζει + " 2x πυρρός + " 28x πυρός + " 1x πυρώσει + " 2x πυρώσεως + " 1x πωλήσας + " 1x πωλεῖ + " 1x πωλεῖται + " 1x πωλησάτω + " 1x πωλούμενον + " 2x πωλούντων + " 1x πωλοῦνται + " 5x πωλοῦντας + " 1x πωλοῦντες + " 1x πωλοῦσιν + " 1x πωλῆσαι + " 1x πωρώσει + " 14x πως + " 3x πόδα + " 55x πόδας + " 7x πόδες + " 21x πόθεν + " 21x πόλει + " 12x πόλεις + " 1x πόλεμοι + " 10x πόλεμον + " 1x πόλεμος + " 2x πόλεσιν + " 6x πόλεων + " 36x πόλεως + " 63x πόλιν + " 22x πόλις + " 1x πόμα + " 1x πόμασιν + " 1x πόνον + " 1x πόνος + " 1x πόνου + " 1x πόνων + " 2x πόρναι + " 3x πόρνη + " 2x πόρνην + " 2x πόρνης + " 2x πόρνοι + " 4x πόρνοις + " 3x πόρνος + " 1x πόρνους + " 1x πόρνῃ + " 3x πόρρω + " 2x πόρρωθεν + " 2x πόσα + " 1x πόσαι + " 1x πόσας + " 1x πόσει + " 1x πόσην + " 2x πόσις + " 2x πόσον + " 2x πόσους + " 1x πόσων + " 11x πόσῳ + " 19x πότε + " 1x πότερον + " 1x πότιζε + " 1x πότοις + " 1x πύλαι + " 1x πύλας + " 2x πύλη + " 1x πύλην + " 3x πύλης + " 1x πύλῃ + " 3x πύργον + " 1x πύργος + " 3x πώλησον + " 6x πώποτε + " 1x πώρωσιν + " 1x πώρωσις + " 72x πᾶν + " 82x πᾶς + " 42x πᾶσα + " 15x πᾶσαι + " 56x πᾶσαν + " 7x πᾶσι + " 81x πᾶσιν + " 2x πῆχυν + " 25x πῦρ + " 12x πῶλον + " 86x πῶς + " 4x σά + " 13x σάββασιν + " 1x σάββατα + " 13x σάββατον + " 1x σάκκος + " 1x σάκκους + " 2x σάκκῳ + " 1x σάλου + " 1x σάλπιγγα + " 1x σάλπιγγας + " 1x σάλπιγγες + " 2x σάλπιγγι + " 5x σάλπιγγος + " 1x σάλπιγξ + " 1x σάπφειρος + " 1x σάρδιον + " 37x σάρκα + " 7x σάρκας + " 1x σάρκινος + " 26x σάρξ + " 2x σάτα + " 37x σέ + " 1x σέβασμα + " 1x σέβεσθαι + " 1x σέβεται + " 2x σέβονται + " 1x σέσηπεν + " 7x σέσωκεν + " 1x σέσωσται + " 32x σήμερον + " 1x σήν + " 3x σής + " 1x σίκερα + " 5x σίτου + " 1x σαίνεσθαι + " 2x σαβαχθανεί + " 13x σαββάτου + " 11x σαββάτων + " 16x σαββάτῳ + " 1x σαββατισμός + " 1x σαγήνῃ + " 3x σαλευθήσονται + " 2x σαλευθῆναι + " 1x σαλευθῶ + " 1x σαλευομένων + " 1x σαλευόμενα + " 2x σαλευόμενον + " 1x σαλεύοντες + " 1x σαλεῦσαι + " 2x σαλπίζειν + " 1x σαλπίσει + " 1x σαλπίσωσιν + " 1x σαλπίσῃς + " 1x σαλπιστῶν + " 1x σανίσιν + " 2x σανδάλια + " 1x σαπρά + " 6x σαπρόν + " 1x σαπρός + " 1x σαργάνῃ + " 1x σαρδίῳ + " 1x σαρδόνυξ + " 39x σαρκί + " 1x σαρκίναις + " 1x σαρκίνης + " 1x σαρκίνοις + " 2x σαρκικά + " 2x σαρκικοί + " 1x σαρκικοῖς + " 1x σαρκικῇ + " 1x σαρκικῶν + " 37x σαρκός + " 1x σαρκῶν + " 1x σαροῖ + " 1x σβέννυνται + " 1x σβέννυται + " 1x σβέννυτε + " 1x σβέσαι + " 1x σβέσει + " 159x σε + " 1x σείσω + " 4x σεαυτοῦ + " 33x σεαυτόν + " 5x σεαυτῷ + " 1x σεβάσματα + " 1x σεβομένας + " 1x σεβομένη + " 1x σεβομένοις + " 1x σεβομένου + " 2x σεβομένων + " 1x σειομένη + " 1x σειροῖς + " 3x σεισμοί + " 1x σεισμόν + " 9x σεισμός + " 1x σεισμῷ + " 5x σελήνη + " 3x σελήνης + " 1x σελήνῃ + " 1x σεληνιάζεται + " 1x σεληνιαζομένους + " 1x σεμίδαλιν + " 1x σεμνά + " 1x σεμνάς + " 2x σεμνούς + " 1x σεμνότητα + " 1x σεμνότητι + " 1x σεμνότητος + " 1x σεσαλευμένον + " 2x σεσαρωμένον + " 1x σεσιγημένου + " 1x σεσοφισμένοις + " 1x σεσωρευμένα + " 2x σεσῳσμένοι + " 3x σημαίνων + " 4x σημείοις + " 3x σημείων + " 1x σημειοῦσθε + " 32x σημεῖα + " 38x σημεῖον + " 1x σημᾶναι + " 1x σητόβρωτα + " 1x σθενώσει + " 2x σιαγόνα + " 2x σιγάτω + " 1x σιγάτωσαν + " 1x σιγή + " 1x σιγήσῃ + " 1x σιγᾶν + " 1x σιγῆς + " 1x σιγῆσαι + " 1x σιδήρου + " 1x σιδηροῦς + " 1x σιδηρᾶν + " 3x σιδηρᾷ + " 1x σικαρίων + " 1x σιμικίνθια + " 5x σινάπεως + " 3x σινδόνα + " 3x σινδόνι + " 1x σινιάσαι + " 1x σιρικοῦ + " 1x σιτία + " 3x σιτευτόν + " 1x σιτιστά + " 1x σιτομέτριον + " 1x σιωπήσουσιν + " 1x σιωπήσωσιν + " 1x σιωπήσῃ + " 1x σιωπήσῃς + " 1x σιωπῶν + " 4x σκάνδαλα + " 8x σκάνδαλον + " 1x σκάπτειν + " 1x σκάφην + " 2x σκάφης + " 1x σκάψω + " 3x σκέλη + " 1x σκήνει + " 1x σκήνους + " 1x σκήνωμα + " 2x σκανδάλου + " 1x σκανδάλων + " 6x σκανδαλίζει + " 2x σκανδαλίζεται + " 1x σκανδαλίζονται + " 2x σκανδαλίζῃ + " 1x σκανδαλίσω + " 1x σκανδαλίσωμεν + " 4x σκανδαλίσῃ + " 2x σκανδαλισθήσεσθε + " 1x σκανδαλισθήσομαι + " 3x σκανδαλισθήσονται + " 1x σκανδαλισθῆτε + " 2x σκανδαλισθῇ + " 1x σκεπάσματα + " 1x σκευήν + " 2x σκεύει + " 1x σκεύεσιν + " 8x σκεύη + " 12x σκεῦος + " 4x σκηνάς + " 4x σκηνή + " 6x σκηνήν + " 1x σκηναῖς + " 1x σκηνοπηγία + " 1x σκηνοποιοί + " 1x σκηνοῦντας + " 1x σκηνοῦντες + " 1x σκηνώματι + " 1x σκηνώματος + " 2x σκηνώσει + " 4x σκηνῆς + " 1x σκηνῇ + " 2x σκιά + " 1x σκιάν + " 1x σκιρτήσατε + " 3x σκιᾷ + " 3x σκληροκαρδίαν + " 1x σκληρυνθῇ + " 1x σκληρόν + " 1x σκληρός + " 1x σκληρότητα + " 1x σκληρύνει + " 3x σκληρύνητε + " 2x σκληρῶν + " 1x σκολιά + " 1x σκολιοῖς + " 2x σκολιᾶς + " 1x σκοπεῖν + " 1x σκοπεῖτε + " 1x σκοπούντων + " 1x σκοποῦντες + " 1x σκοπόν + " 1x σκοπῶν + " 3x σκορπίζει + " 1x σκορπίοι + " 1x σκορπίοις + " 1x σκορπίον + " 1x σκορπίου + " 1x σκορπίων + " 1x σκορπισθῆτε + " 6x σκοτία + " 1x σκοτίας + " 10x σκοτίᾳ + " 3x σκοτεινόν + " 2x σκοτισθήσεται + " 1x σκοτισθήτωσαν + " 1x σκοτισθῇ + " 2x σκυθρωποί + " 1x σκωληκόβρωτος + " 1x σκόλοψ + " 1x σκόπει + " 4x σκότει + " 14x σκότος + " 12x σκότους + " 1x σκύβαλα + " 1x σκύλλε + " 1x σκύλλεις + " 1x σκύλλου + " 1x σκώληξ + " 1x σκῦλα + " 1x σμάραγδος + " 1x σμαραγδίνῳ + " 1x σμύρναν + " 1x σμύρνης + " 50x σοί + " 163x σοι + " 1x σοροῦ + " 415x σου + " 1x σουδάρια + " 1x σουδάριον + " 2x σουδαρίῳ + " 12x σοφία + " 13x σοφίαν + " 12x σοφίας + " 1x σοφίσαι + " 13x σοφίᾳ + " 3x σοφοί + " 4x σοφούς + " 1x σοφοῖς + " 6x σοφός + " 1x σοφώτερον + " 4x σοφῶν + " 1x σοφῷ + " 3x σού + " 1x σούς + " 59x σοῦ + " 2x σπένδομαι + " 24x σπέρμα + " 1x σπέρμασιν + " 7x σπέρματι + " 8x σπέρματος + " 1x σπήλαια + " 4x σπήλαιον + " 1x σπίλοι + " 1x σπίλον + " 1x σπαράξαν + " 1x σπαράξας + " 1x σπαράσσει + " 1x σπαρέντες + " 4x σπαρείς + " 2x σπαρῇ + " 2x σπασάμενος + " 1x σπαταλῶσα + " 1x σπείραντι + " 1x σπείραντος + " 1x σπείρας + " 1x σπείρει + " 4x σπείρειν + " 3x σπείρεις + " 6x σπείρεται + " 3x σπείρης + " 1x σπείροντι + " 2x σπείρουσιν + " 11x σπείρων + " 1x σπείρῃ + " 2x σπειρόμενοι + " 1x σπεκουλάτορα + " 3x σπερμάτων + " 1x σπερμολόγος + " 1x σπεύδοντας + " 1x σπεύσαντες + " 2x σπεύσας + " 1x σπεῖρα + " 2x σπεῖραι + " 3x σπεῖραν + " 1x σπηλαίοις + " 1x σπιλάδες + " 1x σπιλοῦσα + " 9x σπλάγχνα + " 2x σπλάγχνοις + " 4x σπλαγχνισθείς + " 1x σποδός + " 2x σποδῷ + " 3x σπορίμων + " 1x σπορᾶς + " 1x σπουδάζοντες + " 2x σπουδάσατε + " 1x σπουδάσω + " 6x σπουδήν + " 3x σπουδαίως + " 1x σπουδαιοτέρως + " 1x σπουδαιότερον + " 1x σπουδαιότερος + " 1x σπουδαῖον + " 3x σπουδῆς + " 3x σπουδῇ + " 2x σπούδασον + " 3x σπυρίδας + " 1x σπυρίδι + " 1x σπυρίδων + " 3x σπόγγον + " 3x σπόρον + " 2x σπόρος + " 1x στάμνος + " 1x στάντος + " 2x στάς + " 1x στάσει + " 1x στάσεις + " 3x στάσεως + " 3x στάσιν + " 1x στάσις + " 3x στάχυας + " 1x στάχυν + " 1x στάχυϊ + " 1x στέγει + " 3x στέγην + " 1x στέγομεν + " 1x στέγοντες + " 1x στέγων + " 1x στέλλεσθαι + " 1x στέμματα + " 1x στέφανοι + " 10x στέφανον + " 5x στέφανος + " 2x στήθη + " 2x στήκει + " 7x στήκετε + " 1x στήκοντες + " 2x στήρισον + " 2x στήσαντες + " 1x στήσει + " 1x στήσονται + " 1x στήσῃ + " 1x στήσῃς + " 1x στίγματα + " 1x στίλβοντα + " 3x σταδίους + " 3x σταδίων + " 1x σταδίῳ + " 1x σταθέντα + " 2x σταθέντες + " 1x σταθήσεσθε + " 5x σταθήσεται + " 4x σταθείς + " 3x σταθῆναι + " 1x σταθῆτε + " 1x σταθῇ + " 1x στασιαστῶν + " 1x στατῆρα + " 12x σταυροῦ + " 1x σταυροῦνται + " 2x σταυροῦσιν + " 3x σταυρωθῆναι + " 3x σταυρωθῇ + " 10x σταυρόν + " 1x σταυρός + " 1x σταυρώσαντες + " 1x σταυρώσατε + " 1x σταυρώσετε + " 1x σταυρώσω + " 1x σταυρώσωσιν + " 3x σταυρῶσαι + " 4x σταυρῷ + " 1x σταφυλάς + " 1x σταφυλήν + " 1x σταφυλαί + " 1x σταύρου + " 2x σταύρωσον + " 1x στείρᾳ + " 1x στελλόμενοι + " 1x στενάζετε + " 3x στενάζομεν + " 1x στενάζοντες + " 1x στενή + " 1x στεναγμοῖς + " 1x στεναγμοῦ + " 2x στενοχωρία + " 2x στενοχωρίαις + " 2x στενοχωρεῖσθε + " 1x στενοχωρούμενοι + " 2x στενῆς + " 1x στερέωμα + " 1x στερεά + " 1x στερεοί + " 1x στερεός + " 1x στερεᾶς + " 2x στεφάνους + " 1x στεφανοῦται + " 2x στεῖρα + " 1x στεῖραι + " 1x στηρίζων + " 4x στηρίξαι + " 1x στηρίξατε + " 2x στηρίξει + " 1x στηριγμοῦ + " 1x στηριχθῆναι + " 1x στιβάδας + " 1x στιγμῇ + " 1x στοάς + " 1x στοιχήσουσιν + " 1x στοιχείων + " 6x στοιχεῖα + " 1x στοιχεῖν + " 1x στοιχεῖς + " 1x στοιχοῦσιν + " 1x στοιχῶμεν + " 4x στολάς + " 1x στολή + " 2x στολήν + " 2x στολαῖς + " 2x στομάτων + " 3x στοᾷ + " 1x στράτευμα + " 1x στρέφειν + " 1x στρέψον + " 1x στρήνους + " 1x στρατείαν + " 1x στρατείας + " 1x στρατευμάτων + " 1x στρατευομένων + " 1x στρατευόμεθα + " 1x στρατευόμενοι + " 1x στρατευόμενος + " 1x στρατεύεται + " 1x στρατεύμασιν + " 3x στρατεύματα + " 1x στρατεύματι + " 1x στρατεύματος + " 1x στρατεύονται + " 1x στρατεύῃ + " 3x στρατηγοί + " 1x στρατηγούς + " 3x στρατηγοῖς + " 3x στρατηγός + " 5x στρατιωτῶν + " 3x στρατιώταις + " 5x στρατιώτας + " 1x στρατιώτην + " 1x στρατιώτης + " 2x στρατιώτῃ + " 1x στρατιᾶς + " 1x στρατιᾷ + " 9x στρατιῶται + " 1x στρατολογήσαντι + " 1x στρατοπέδων + " 1x στραφέντες + " 10x στραφείς + " 1x στραφεῖσα + " 1x στραφῆτε + " 1x στραφῶσιν + " 1x στρεβλοῦσιν + " 1x στρεφόμεθα + " 1x στρηνιάσαντες + " 2x στρουθία + " 2x στρουθίων + " 1x στρῶσον + " 1x στυγητοί + " 1x στυγνάζων + " 1x στυγνάσας + " 28x στόμα + " 3x στόματα + " 11x στόματι + " 34x στόματος + " 1x στόμαχον + " 1x στᾶσα + " 3x στῆθι + " 3x στῆθος + " 5x στῆναι + " 3x στῆσαι + " 2x στῆτε + " 2x στῦλοι + " 1x στῦλον + " 1x στῦλος + " 1x συγγένειαν + " 1x συγγενής + " 1x συγγενίς + " 2x συγγενείας + " 5x συγγενεῖς + " 2x συγγενεῦσιν + " 1x συγγενῆ + " 2x συγγενῶν + " 1x συγκεκαλυμμένον + " 1x συγκεχυμένη + " 1x συγκυρίαν + " 1x συγχύσεως + " 1x συζήσομεν + " 1x συκαμίνῳ + " 1x συκομορέαν + " 1x συκοφαντήσητε + " 5x συκῆ + " 6x συκῆν + " 4x συκῆς + " 1x συκῇ + " 1x συλαγωγῶν + " 1x συλλέγεται + " 1x συλλέγοντες + " 2x συλλέγουσιν + " 1x συλλέξουσιν + " 1x συλλέξωμεν + " 1x συλλήμψῃ + " 1x συλλαβέσθαι + " 3x συλλαβεῖν + " 1x συλλαβοῦσα + " 1x συλλαβοῦσιν + " 1x συλλαβόμενοι + " 1x συλλημφθέντα + " 1x συλλημφθῆναι + " 1x συμβάντων + " 1x συμβέβηκεν + " 1x συμβαίνειν + " 1x συμβαίνοντος + " 1x συμβαλεῖν + " 1x συμβεβηκότι + " 1x συμβεβηκότων + " 1x συμβιβάζοντες + " 1x συμβιβάζων + " 1x συμβιβάσει + " 1x συμβουλίου + " 1x συμβουλεύσας + " 1x συμβουλεύω + " 7x συμβούλιον + " 1x συμμορφιζόμενος + " 1x συμμόρφους + " 1x συμπαθεῖς + " 1x συμπεριλαβών + " 1x συμπληροῦσθαι + " 1x συμπνίγει + " 2x συμπόσια + " 10x συμφέρει + " 3x συμφέρον + " 1x συμφερόντων + " 1x συμφυλετῶν + " 1x συμφωνήσας + " 1x συμφωνήσει + " 1x συμφωνήσωσιν + " 1x συμφωνίας + " 1x συμφωνοῦσιν + " 1x συμφώνησις + " 1x συμφώνου + " 1x συνάγει + " 1x συνάγεται + " 2x συνάγονται + " 2x συνάγουσιν + " 1x συνάγω + " 3x συνάγων + " 1x συνάξει + " 2x συνάξω + " 1x συνάχθητε + " 1x συνέβαινεν + " 1x συνέβαλλεν + " 2x συνέβαλλον + " 1x συνέβη + " 1x συνέδραμεν + " 1x συνέδραμον + " 2x συνέδρια + " 10x συνέδριον + " 2x συνέζευξεν + " 2x συνέθεντο + " 1x συνέθλιβον + " 1x συνέκδημος + " 1x συνέκλεισαν + " 2x συνέκλεισεν + " 1x συνέλαβεν + " 2x συνέλαβον + " 1x συνέλεξαν + " 1x συνέλθῃ + " 1x συνέξουσιν + " 1x συνέπεσεν + " 1x συνέπνιγον + " 1x συνέπνιξαν + " 1x συνέρχεσθε + " 1x συνέρχεται + " 2x συνέρχησθε + " 2x συνέρχονται + " 2x συνέσει + " 2x συνέσεως + " 1x συνέστειλαν + " 1x συνέστηκεν + " 1x συνέσχον + " 3x συνέταξεν + " 1x συνέφαγες + " 1x συνέχαιρον + " 1x συνέχει + " 1x συνέχεον + " 2x συνέχομαι + " 1x συνέχοντες + " 1x συνέχουσιν + " 1x συνέχυννεν + " 1x συνήγαγεν + " 3x συνήγαγον + " 1x συνήγειρεν + " 1x συνήδομαι + " 1x συνήθεια + " 1x συνήθειαν + " 1x συνήθλησαν + " 1x συνήλλασσεν + " 2x συνήντησεν + " 1x συνήργει + " 1x συνήρπασαν + " 1x συνήρχετο + " 1x συνήρχοντο + " 1x συνήσθιεν + " 1x συνήσουσιν + " 4x συνήχθη + " 8x συνήχθησαν + " 4x συνίετε + " 1x συνίουσιν + " 1x συνίστασθαι + " 3x συνίστησιν + " 1x συνίων + " 1x συναίρει + " 1x συναίρειν + " 1x συναγάγετε + " 1x συναγάγῃ + " 3x συναγαγεῖν + " 1x συναγαγούσῃ + " 2x συναγαγόντες + " 2x συναγαγών + " 8x συναγωγάς + " 2x συναγωγή + " 12x συναγωγήν + " 15x συναγωγαῖς + " 6x συναγωγῆς + " 12x συναγωγῇ + " 1x συναγωγῶν + " 1x συναγωνίσασθαι + " 1x συναθλοῦντες + " 1x συναθροίσας + " 2x συναιχμάλωτος + " 1x συναιχμαλώτους + " 1x συνακολουθοῦσαι + " 1x συνακολουθῆσαι + " 1x συναλιζόμενος + " 2x συνανέκειντο + " 1x συναναβᾶσαι + " 1x συναναβᾶσιν + " 1x συνανακείμενοι + " 1x συνανακειμένοις + " 1x συνανακειμένους + " 2x συνανακειμένων + " 3x συναναμίγνυσθαι + " 1x συναναπαύσωμαι + " 2x συναντήσας + " 1x συναντήσει + " 1x συναντήσοντα + " 1x συναντιλάβηται + " 1x συναντιλαμβάνεται + " 1x συναπέστειλα + " 1x συναπήχθη + " 1x συναπαγόμενοι + " 1x συναπαχθέντες + " 1x συναπεθάνομεν + " 2x συναποθανεῖν + " 1x συναπώλετο + " 1x συναρμολογουμένη + " 1x συναρμολογούμενον + " 1x συναρπάσαντες + " 1x συναρπασθέντος + " 1x συναυξάνεσθαι + " 1x συναχθέντες + " 1x συναχθέντων + " 2x συναχθήσονται + " 2x συναχθῆναι + " 1x συνβάλλουσα + " 1x συνβασιλεύσομεν + " 1x συνβασιλεύσωμεν + " 2x συνβιβαζόμενον + " 1x συνβιβασθέντες + " 1x συνγνώμην + " 1x συνδέσμων + " 1x συνδέσμῳ + " 1x συνδεδεμένοι + " 1x συνδοξασθῶμεν + " 1x συνδούλου + " 1x συνδούλους + " 1x συνδούλων + " 1x συνδρομή + " 16x συνείδησιν + " 3x συνείδησις + " 1x συνείληφεν + " 1x συνείπετο + " 1x συνείχετο + " 1x συνείχοντο + " 1x συνεβάλετο + " 1x συνεβίβασαν + " 2x συνεβουλεύσαντο + " 3x συνεδρίου + " 7x συνεδρίῳ + " 1x συνεζήτει + " 2x συνεζωοποίησεν + " 3x συνειδήσει + " 1x συνειδήσεσιν + " 8x συνειδήσεως + " 1x συνειδυίης + " 2x συνεισῆλθεν + " 1x συνεκάθισεν + " 1x συνεκάλεσαν + " 1x συνεκέρασεν + " 1x συνεκίνησαν + " 1x συνεκδήμους + " 1x συνεκλεκτή + " 1x συνεκόμισαν + " 1x συνελάλησεν + " 2x συνελάλουν + " 1x συνεληλυθυῖαι + " 1x συνεληλυθότας + " 1x συνεληλύθεισαν + " 3x συνελθεῖν + " 1x συνελθούσαις + " 1x συνελθόντα + " 1x συνελθόντας + " 1x συνελθόντες + " 3x συνελθόντων + " 1x συνελογίσαντο + " 1x συνενέγκαντες + " 1x συνεπέθεντο + " 2x συνεπέμψαμεν + " 1x συνεπέστη + " 1x συνεπίομεν + " 1x συνεπαθήσατε + " 1x συνεπιμαρτυροῦντος + " 1x συνεπληροῦντο + " 1x συνεπορεύετο + " 1x συνεπορεύοντο + " 1x συνεργεῖ + " 5x συνεργοί + " 1x συνεργούς + " 1x συνεργοῦντι + " 1x συνεργοῦντος + " 2x συνεργόν + " 2x συνεργός + " 1x συνεργῶν + " 1x συνεργῷ + " 1x συνερχομένων + " 1x συνερχόμενοι + " 1x συνεσθίει + " 1x συνεσθίειν + " 2x συνεσπάραξεν + " 1x συνεστήσατε + " 1x συνεσταλμένος + " 1x συνεσταυρωμένοι + " 1x συνεσταυρώθη + " 1x συνεσταύρωμαι + " 1x συνεστῶσα + " 1x συνεστῶτας + " 1x συνετάφημεν + " 1x συνετέθειντο + " 2x συνετήρει + " 3x συνετῶν + " 1x συνετῷ + " 2x συνευδοκεῖ + " 1x συνευδοκεῖτε + " 1x συνευδοκοῦσιν + " 2x συνευδοκῶν + " 2x συνευωχούμενοι + " 1x συνεφάγομεν + " 1x συνεφωνήθη + " 1x συνεφώνησας + " 1x συνεχομένη + " 1x συνεχομένους + " 1x συνεχόμενον + " 1x συνεχύθη + " 1x συνεψήφισαν + " 1x συνζήσομεν + " 4x συνζητεῖν + " 1x συνζητεῖτε + " 1x συνζητητής + " 1x συνζητούντων + " 1x συνζητοῦντας + " 2x συνζητοῦντες + " 1x συνζῆν + " 2x συνηγάγετε + " 1x συνηγάγομεν + " 2x συνηγέρθητε + " 1x συνηγμένα + " 3x συνηγμένοι + " 2x συνηγμένων + " 1x συνηθείᾳ + " 1x συνηθροισμένοι + " 1x συνηκολούθει + " 1x συνηλικιώτας + " 1x συνηρπάκει + " 1x συνθλίβοντα + " 2x συνθλασθήσεται + " 1x συνθρύπτοντες + " 2x συνιέναι + " 1x συνιέντος + " 1x συνιδόντες + " 1x συνιδών + " 1x συνιείς + " 1x συνιστάνειν + " 1x συνιστάνομεν + " 2x συνιστάνοντες + " 1x συνιστάνω + " 1x συνιστάνων + " 1x συνιστανόντων + " 1x συνιᾶσιν + " 2x συνιῶσιν + " 1x συνκαθήμενοι + " 1x συνκαθήμενος + " 1x συνκαθισάντων + " 2x συνκακοπάθησον + " 1x συνκακουχεῖσθαι + " 1x συνκαλέσασθαι + " 2x συνκαλεσάμενος + " 2x συνκαλεῖ + " 1x συνκαλοῦσιν + " 1x συνκατάθεσις + " 1x συνκαταβάντες + " 1x συνκατατεθειμένος + " 1x συνκατεψηφίσθη + " 1x συνκεκερασμένος + " 1x συνκλειόμενοι + " 1x συνκληρονόμα + " 1x συνκληρονόμοι + " 1x συνκληρονόμοις + " 1x συνκληρονόμων + " 1x συνκοινωνήσαντες + " 1x συνκοινωνήσητε + " 1x συνκοινωνεῖτε + " 1x συνκοινωνούς + " 3x συνκοινωνός + " 2x συνκρίνοντες + " 1x συνκρῖναι + " 1x συνκύπτουσα + " 1x συνλαλήσας + " 2x συνλαλοῦντες + " 1x συνλαμβάνου + " 1x συνλυπούμενος + " 1x συνμέτοχα + " 1x συνμέτοχοι + " 1x συνμαθηταῖς + " 1x συνμαρτυρεῖ + " 2x συνμαρτυρούσης + " 1x συνμερίζονται + " 1x συνοδίᾳ + " 1x συνοδεύοντες + " 1x συνοικοδομεῖσθε + " 1x συνοικοῦντες + " 1x συνομιλῶν + " 1x συνομοροῦσα + " 1x συνοχή + " 1x συνοχῆς + " 1x συνπάσχει + " 1x συνπάσχομεν + " 1x συνπαθῆσαι + " 1x συνπαραγενόμενοι + " 1x συνπαρακληθῆναι + " 1x συνπαραλαβεῖν + " 1x συνπαραλαβόντες + " 1x συνπαραλαβών + " 1x συνπαραλαμβάνειν + " 1x συνπαρόντες + " 1x συνπληροῦσθαι + " 1x συνπνίγονται + " 1x συνπνίγουσιν + " 1x συνπολῖται + " 1x συνπορεύονται + " 1x συνπρεσβύτερος + " 1x συνσταυρωθέντες + " 1x συνσταυρωθέντος + " 1x συνστενάζει + " 1x συνστοιχεῖ + " 1x συνστρατιώτην + " 1x συνσχηματίζεσθε + " 1x συντέλεια + " 1x συντέμνων + " 1x συνταφέντες + " 1x συντελέσας + " 1x συντελέσω + " 2x συντελείας + " 3x συντελείᾳ + " 1x συντελεσθεισῶν + " 2x συντελεῖσθαι + " 1x συντελῶν + " 1x συντετριμμένον + " 1x συντετρῖφθαι + " 1x συντηροῦνται + " 1x συντρίβεται + " 1x συντρίψασα + " 1x συντρίψει + " 1x συντρεχόντων + " 1x συντριβήσεται + " 1x συντρῖβον + " 1x συντυχεῖν + " 2x συντόμως + " 1x συνυπεκρίθησαν + " 1x συνυπουργούντων + " 1x συνφυεῖσαι + " 2x συνχαίρει + " 1x συνχαίρετε + " 1x συνχαίρω + " 1x συνχρῶνται + " 1x συνχύννεται + " 1x συνωδίνει + " 1x συνωμοσίαν + " 1x συνόντων + " 1x συνᾶραι + " 6x συνῆκαν + " 1x συνῆλθαν + " 2x συνῆλθεν + " 2x συνῆλθον + " 1x συνῆσαν + " 2x συνῆτε + " 2x συνῶσιν + " 1x συστατικῶν + " 1x συστρέψαντος + " 1x συστρατιώτῃ + " 1x συστροφήν + " 1x συστροφῆς + " 1x συσχηματιζόμενοι + " 1x σφάγια + " 1x σφάξουσιν + " 1x σφαγήν + " 2x σφαγῆς + " 1x σφοδρῶς + " 1x σφραγίδων + " 1x σφραγίς + " 1x σφραγίσαντες + " 1x σφραγίσωμεν + " 1x σφραγίσῃς + " 2x σφραγισάμενος + " 10x σφραγῖδα + " 3x σφραγῖδας + " 1x σφραγῖσιν + " 1x σφυδρά + " 11x σφόδρα + " 1x σχήματι + " 1x σχίσας + " 1x σχίσει + " 5x σχίσμα + " 2x σχίσματα + " 1x σχίσωμεν + " 3x σχεδόν + " 1x σχιζομένους + " 1x σχοινία + " 1x σχοινίων + " 1x σχολάζοντα + " 1x σχολάσητε + " 1x σχολῇ + " 1x σχῆμα + " 1x σχῆτε + " 5x σχῶ + " 2x σχῶμεν + " 1x σωζομένοις + " 13x σωθήσεται + " 2x σωθήσομαι + " 3x σωθήσῃ + " 2x σωθησόμεθα + " 10x σωθῆναι + " 1x σωθῆτε + " 3x σωθῇ + " 1x σωθῶ + " 3x σωθῶσιν + " 1x σωμάτων + " 1x σωματική + " 1x σωματικῶς + " 1x σωματικῷ + " 1x σωρεύσεις + " 1x σωσάτω + " 1x σωτήρ + " 3x σωτήριον + " 1x σωτήριος + " 8x σωτηρία + " 18x σωτηρίαν + " 20x σωτηρίας + " 1x σωτηρίου + " 1x σωφρονήσατε + " 1x σωφρονίζωσιν + " 2x σωφρονεῖν + " 1x σωφρονισμοῦ + " 1x σωφρονοῦμεν + " 2x σωφρονοῦντα + " 3x σωφροσύνης + " 1x σωφρόνως + " 4x σόν + " 1x σός + " 130x σύ + " 1x σύκων + " 1x σύμβουλος + " 1x σύμμορφον + " 2x σύμφορον + " 1x σύμφυτοι + " 128x σύν + " 1x σύνδεσμον + " 1x σύνδεσμος + " 2x σύνδουλοι + " 1x σύνδουλον + " 4x σύνδουλος + " 3x σύνεσιν + " 1x σύνετε + " 1x σύνζυγε + " 1x σύνκαμψον + " 1x σύνοιδα + " 1x σύνσωμα + " 1x σύντριμμα + " 1x σύντροφος + " 1x σύνφημι + " 1x σύνψυχοι + " 1x σύρει + " 1x σύροντες + " 1x σύρων + " 1x σύσσημον + " 1x σώζεται + " 10x σώματα + " 25x σώματι + " 36x σώματος + " 1x σώσαντος + " 1x σώσας + " 6x σώσει + " 3x σώσεις + " 3x σώσω + " 1x σώσων + " 2x σώφρονα + " 2x σώφρονας + " 3x σῆς + " 4x σῇ + " 8x σῖτον + " 1x σῖτος + " 3x σῦκα + " 1x σῳζομένοις + " 1x σῳζομένους + " 1x σῳζόμενοι + " 1x σῴζει + " 2x σῴζειν + " 1x σῴζεσθαι + " 1x σῴζεσθε + " 1x σῴζετε + " 70x σῶμα + " 13x σῶσαι + " 7x σῶσον + " 5x σῷ + " 819x τά + " 1x τάγματι + " 10x τάλαντα + " 3x τάλαντον + " 1x τάξει + " 8x τάξιν + " 2x τάραχος + " 337x τάς + " 1x τάφοις + " 3x τάφον + " 1x τάφος + " 1x τάφου + " 1x τάφους + " 2x τάχα + " 7x τάχει + " 3x τάχειον + " 2x τάχιον + " 1x τάχιστα + " 1x τέθεικα + " 1x τέθειται + " 2x τέθνηκεν + " 62x τέκνα + " 8x τέκνοις + " 11x τέκνον + " 2x τέκνου + " 7x τέκνων + " 3x τέκνῳ + " 1x τέκτονος + " 1x τέκτων + " 1x τέκῃ + " 5x τέλειοι + " 7x τέλειον + " 3x τέλειος + " 2x τέλη + " 33x τέλος + " 6x τέλους + " 2x τέξεται + " 1x τέξῃ + " 1x τέρασι + " 3x τέρασιν + " 11x τέρατα + " 8x τέσσαρας + " 10x τέσσαρες + " 5x τέσσαρσιν + " 6x τέσσερα + " 1x τέτακται + " 2x τέταρτον + " 3x τέταρτος + " 1x τέτυχεν + " 2x τέχνης + " 1x τέχνῃ + " 1x τήκεται + " 1523x τήν + " 1x τήνδε + " 3x τήρει + " 1x τήρησιν + " 1x τήρησις + " 1x τήρησον + " 239x τί + " 5x τίθημι + " 6x τίθησιν + " 1x τίκτει + " 2x τίκτουσα + " 1x τίκτῃ + " 1x τίλλειν + " 1x τίλλοντες + " 2x τίμα + " 1x τίμια + " 1x τίμιον + " 1x τίμιος + " 16x τίνα + " 2x τίνας + " 5x τίνες + " 13x τίνι + " 10x τίνος + " 3x τίνων + " 116x τίς + " 2x τίσιν + " 1x τίσουσιν + " 2x τίτλον + " 1x τακτῇ + " 1x ταλάντων + " 1x ταλαίπωρος + " 1x ταλαιπωρήσατε + " 1x ταλαιπωρία + " 1x ταλαιπωρίαις + " 1x ταλαντιαία + " 2x ταμείοις + " 2x ταμεῖον + " 1x ταπείνωσιν + " 2x ταπεινοφροσύνην + " 2x ταπεινοφροσύνης + " 3x ταπεινοφροσύνῃ + " 2x ταπεινούς + " 3x ταπεινοῖς + " 1x ταπεινοῦσθαι + " 4x ταπεινωθήσεται + " 3x ταπεινός + " 1x ταπεινόφρονες + " 1x ταπεινώθητε + " 4x ταπεινώσει + " 1x ταπεινώσεως + " 1x ταπεινώσῃ + " 3x ταπεινῶν + " 2x ταράσσοντες + " 1x ταράσσων + " 2x ταρασσέσθω + " 1x ταραχήν + " 1x ταραχθῆτε + " 1x ταραχθῇ + " 1x ταρταρώσας + " 1x τασσόμενος + " 1x ταφήν + " 10x ταχέως + " 1x ταχινή + " 1x ταχινήν + " 11x ταχύ + " 1x ταχύς + " 1x ταύρους + " 2x ταύρων + " 11x ταύταις + " 9x ταύτας + " 48x ταύτην + " 34x ταύτης + " 32x ταύτῃ + " 202x ταῖς + " 1x ταῦροι + " 208x ταῦτα + " 209x τε + " 1x τείχη + " 4x τείχους + " 1x τεθέαται + " 1x τεθεάμεθα + " 1x τεθείκατε + " 1x τεθεικώς + " 1x τεθειμένος + " 1x τεθεμελίωτο + " 2x τεθεμελιωμένοι + " 1x τεθεραπευμέναι + " 1x τεθεραπευμένον + " 1x τεθεραπευμένῳ + " 1x τεθησαυρισμένοι + " 1x τεθλιμμένη + " 1x τεθνήκασιν + " 1x τεθνηκέναι + " 1x τεθνηκότα + " 1x τεθνηκότος + " 2x τεθνηκώς + " 1x τεθραμμένος + " 1x τεθραυσμένους + " 1x τεθυμένα + " 1x τεθῆναι + " 2x τεθῇ + " 1x τεθῶσιν + " 4x τεκεῖν + " 1x τεκμηρίοις + " 4x τεκνία + " 1x τεκνογονίας + " 1x τεκνογονεῖν + " 2x τελέσητε + " 1x τελέσωσιν + " 1x τελεία + " 1x τελείοις + " 1x τελείων + " 1x τελείως + " 2x τελείωσις + " 1x τελειοτέρας + " 1x τελειοῦμαι + " 1x τελειωθείς + " 1x τελειωθῇ + " 1x τελειωθῶσιν + " 1x τελειωσάντων + " 1x τελειωτήν + " 1x τελειότητα + " 1x τελειότητος + " 1x τελειώσας + " 3x τελειώσω + " 3x τελειῶσαι + " 1x τελεσθήσεται + " 1x τελεσθήσονται + " 1x τελεσθῆναι + " 4x τελεσθῇ + " 1x τελεσθῶσιν + " 1x τελεσφοροῦσιν + " 2x τελευτάτω + " 1x τελευτᾶν + " 1x τελευτᾷ + " 1x τελευτῆς + " 1x τελευτῶν + " 1x τελεῖ + " 1x τελεῖται + " 2x τελεῖτε + " 1x τελοῦσα + " 7x τελωνῶν + " 1x τελώνην + " 5x τελώνης + " 3x τελώνιον + " 8x τελῶναι + " 1x τεράτων + " 12x τεσσάρων + " 1x τεσσαρεσκαιδεκάτη + " 21x τεσσεράκοντα + " 1x τεσσερακονταέτης + " 1x τεσσερακονταετῆ + " 1x τετάρακται + " 2x τετάρτην + " 1x τετάρτης + " 1x τετάρτου + " 1x τετάρτῃ + " 1x τετέλεκα + " 1x τετέλεσται + " 2x τετήρηκα + " 1x τετήρηκαν + " 1x τετήρηκας + " 1x τετήρηκεν + " 2x τετήρηται + " 1x τεταγμέναι + " 1x τεταγμένοι + " 1x τεταραγμένοι + " 1x τεταρταῖος + " 1x τετελείωκεν + " 1x τετελείωμαι + " 3x τετελείωται + " 1x τετελειωμένη + " 1x τετελειωμένοι + " 1x τετελειωμένον + " 1x τετελειωμένων + " 1x τετελευτηκότος + " 1x τετηρημένην + " 1x τετηρημένοις + " 1x τετιμημένου + " 1x τετράγωνος + " 1x τετράμηνος + " 2x τετράποδα + " 3x τετραάρχης + " 1x τετραάρχου + " 3x τετρααρχοῦντος + " 1x τετραδίοις + " 2x τετρακισχίλιοι + " 2x τετρακισχιλίους + " 1x τετρακισχιλίων + " 1x τετρακοσίοις + " 1x τετρακοσίων + " 2x τετρακόσια + " 1x τετραπλοῦν + " 1x τετραπόδων + " 1x τετραυματισμένους + " 1x τετραχηλισμένα + " 1x τετυφωμένοι + " 1x τετύφωται + " 1x τεφρώσας + " 1x τεχθείς + " 1x τεχνίταις + " 2x τεχνίτης + " 1x τεχνῖται + " 4x τεῖχος + " 1x τηλαυγῶς + " 1x τηλικαύτης + " 1x τηλικαῦτα + " 1x τηλικούτου + " 1x τηλικοῦτος + " 1x τηρήσαντας + " 1x τηρήσατε + " 2x τηρήσει + " 1x τηρήσετε + " 2x τηρήσητε + " 1x τηρήσουσιν + " 2x τηρήσω + " 4x τηρήσῃ + " 1x τηρήσῃς + " 3x τηρεῖ + " 7x τηρεῖν + " 3x τηρεῖσθαι + " 1x τηρεῖτε + " 1x τηρηθείη + " 1x τηρηθῆναι + " 1x τηρουμένους + " 1x τηρούμενοι + " 2x τηρούντων + " 1x τηροῦμεν + " 4x τηροῦντες + " 1x τηρῆσαι + " 1x τηρῇ + " 1x τηρῶ + " 2x τηρῶμεν + " 6x τηρῶν + " 96x τι + " 1x τιθέασιν + " 2x τιθέναι + " 1x τιθέντες + " 1x τιθέτω + " 1x τιθείς + " 2x τιμάς + " 7x τιμή + " 19x τιμήν + " 1x τιμήσατε + " 2x τιμήσει + " 1x τιμίαν + " 1x τιμίου + " 1x τιμίους + " 4x τιμίῳ + " 1x τιμαῖς + " 1x τιμιωτάτου + " 1x τιμιωτάτῳ + " 1x τιμιότητος + " 1x τιμωρίας + " 1x τιμωρηθῶσιν + " 1x τιμωρῶν + " 1x τιμᾶτε + " 3x τιμᾷ + " 7x τιμῆς + " 5x τιμῇ + " 1x τιμῶ + " 1x τιμῶν + " 2x τιμῶσι + " 13x τινά + " 10x τινάς + " 19x τινές + " 3x τινί + " 32x τινα + " 14x τινας + " 56x τινες + " 10x τινι + " 16x τινος + " 7x τινων + " 5x τινός + " 2x τινῶν + " 230x τις + " 3x τισίν + " 1x τισιν + " 2x τοίνυν + " 2x τοιαύταις + " 1x τοιαύτας + " 3x τοιαύτη + " 6x τοιαύτην + " 9x τοιαῦτα + " 1x τοιαῦται + " 1x τοιγαροῦν + " 3x τοιούτοις + " 1x τοιούτου + " 5x τοιούτους + " 6x τοιούτων + " 2x τοιούτῳ + " 1x τοιοῦτο + " 6x τοιοῦτοι + " 6x τοιοῦτον + " 4x τοιοῦτος + " 1x τοιᾶσδε + " 1x τολμήσας + " 1x τολμήσω + " 1x τολμηροτέρως + " 1x τολμηταί + " 1x τολμᾶν + " 2x τολμᾷ + " 1x τολμῆσαι + " 1x τολμῶ + " 1x τολμῶμεν + " 1x τομώτερος + " 1x τοπάζιον + " 2x τοσαύτην + " 3x τοσαῦτα + " 2x τοσούτου + " 1x τοσούτους + " 1x τοσούτων + " 2x τοσούτῳ + " 1x τοσοῦτο + " 1x τοσοῦτοι + " 4x τοσοῦτον + " 1x τοσοῦτος + " 722x τούς + " 19x τούτοις + " 65x τούτου + " 27x τούτους + " 69x τούτων + " 89x τούτῳ + " 3x τοὐναντίον + " 1x τοὔνομα + " 623x τοῖς + " 1x τοῖχε + " 2497x τοῦ + " 294x τοῦτο + " 57x τοῦτον + " 17x τοῦτ’ + " 4x τράγων + " 2x τράπεζα + " 2x τράπεζαν + " 7x τράχηλον + " 2x τρέμουσα + " 1x τρέμουσιν + " 2x τρέφει + " 1x τρέφεσθαι + " 1x τρέφεται + " 1x τρέφωσιν + " 1x τρέχει + " 1x τρέχετε + " 1x τρέχοντες + " 1x τρέχοντος + " 1x τρέχουσιν + " 2x τρέχω + " 1x τρέχωμεν + " 1x τρέχῃ + " 2x τρήματος + " 9x τρία + " 3x τρίβους + " 1x τρίζει + " 1x τρίμηνον + " 12x τρίς + " 3x τρίτη + " 3x τρίτην + " 2x τρίτης + " 24x τρίτον + " 7x τρίτος + " 3x τρίτου + " 13x τρίτῃ + " 1x τρίχα + " 3x τρίχας + " 3x τρίχες + " 1x τρίχινος + " 1x τραπέζαις + " 3x τραπέζας + " 7x τραπέζης + " 1x τραπεζείταις + " 1x τραυματίσαντες + " 1x τραχεῖαι + " 1x τραχεῖς + " 1x τραύματα + " 1x τρεχόντων + " 41x τρεῖς + " 11x τριάκοντα + " 2x τριακοσίων + " 1x τριβόλους + " 1x τριβόλων + " 1x τριετίαν + " 6x τρισίν + " 1x τριστέγου + " 1x τρισχίλιαι + " 2x τριχῶν + " 10x τριῶν + " 1x τροπῆς + " 1x τροφάς + " 2x τροφή + " 2x τροφήν + " 1x τροφός + " 11x τροφῆς + " 1x τροχιάς + " 1x τροχόν + " 1x τρυβλίῳ + " 1x τρυγόνων + " 1x τρυγῶσιν + " 1x τρυμαλιᾶς + " 1x τρυφήν + " 1x τρυφῇ + " 1x τρόμος + " 3x τρόμου + " 1x τρόμῳ + " 10x τρόπον + " 1x τρόπος + " 2x τρόπῳ + " 1x τρύβλιον + " 1x τρύγησον + " 1x τρώγοντες + " 5x τρώγων + " 1x τυγχάνοντες + " 1x τυπικῶς + " 1x τυφλέ + " 14x τυφλοί + " 4x τυφλούς + " 2x τυφλοῖς + " 3x τυφλοῦ + " 6x τυφλόν + " 15x τυφλός + " 4x τυφλῶν + " 1x τυφλῷ + " 1x τυφωθείς + " 1x τυφωνικός + " 1x τυφόμενον + " 2x τυχεῖν + " 1x τυχούσας + " 1x τυχοῦσαν + " 1x τυχόν + " 1x τυχών + " 1664x τό + " 2x τόκῳ + " 1562x τόν + " 1x τόξον + " 2x τόποις + " 47x τόπον + " 16x τόπος + " 7x τόπου + " 5x τόπους + " 3x τόπων + " 15x τόπῳ + " 122x τότε + " 2x τύποι + " 9x τύπον + " 2x τύπος + " 1x τύπους + " 3x τύπτειν + " 1x τύπτεσθαι + " 3x τύπτοντες + " 1x τύπτοντι + " 2x τύχοι + " 2x τύχωσιν + " 1300x τῆς + " 859x τῇ + " 1x τῇδε + " 1201x τῶν + " 1221x τῷ + " 2x υἱέ + " 32x υἱοί + " 1x υἱοθεσία + " 3x υἱοθεσίαν + " 1x υἱοθεσίας + " 13x υἱούς + " 7x υἱοῖς + " 4x υἱοῦ + " 34x υἱόν + " 55x υἱός + " 17x υἱῶν + " 5x υἱῷ + " 4x φάγε + " 1x φάγεσαι + " 2x φάγεται + " 1x φάγετε + " 5x φάγητε + " 1x φάγοι + " 1x φάγονται + " 2x φάγος + " 5x φάγω + " 5x φάγωμεν + " 6x φάγωσιν + " 4x φάγῃ + " 1x φάγῃς + " 1x φάντασμα + " 2x φάνῃ + " 1x φάραγξ + " 1x φάρμακοι + " 1x φάσις + " 2x φάσκοντες + " 1x φάτνης + " 3x φάτνῃ + " 3x φέγγος + " 2x φέρε + " 3x φέρει + " 2x φέρειν + " 1x φέρεσθαι + " 7x φέρετε + " 2x φέρητε + " 2x φέρον + " 4x φέροντες + " 1x φέρουσαι + " 1x φέρουσαν + " 6x φέρουσιν + " 2x φέρων + " 1x φέρῃ + " 2x φήμη + " 1x φίλας + " 1x φίλαυτοι + " 1x φίλημα + " 4x φίλοι + " 1x φίλοις + " 2x φίλον + " 8x φίλος + " 8x φίλους + " 3x φίλων + " 3x φαίνει + " 2x φαίνεσθε + " 4x φαίνεται + " 1x φαίνονται + " 1x φαίνοντι + " 1x φαίνων + " 1x φαίνωσιν + " 34x φαγεῖν + " 2x φαγόντες + " 1x φαινομένη + " 1x φαινομένου + " 1x φαινομένων + " 1x φανέρωσις + " 1x φανέρωσον + " 1x φανήσεται + " 4x φανερά + " 1x φανεροί + " 1x φανερούμενοι + " 1x φανερούμενον + " 1x φανερούς + " 1x φανεροῦντι + " 1x φανεροῦται + " 3x φανερωθέντος + " 1x φανερωθήσεσθε + " 1x φανερωθεῖσαν + " 2x φανερωθῆναι + " 10x φανερωθῇ + " 1x φανερωθῶσιν + " 10x φανερόν + " 1x φανερώσαντες + " 2x φανερώσει + " 1x φανερώσω + " 3x φανερῶς + " 2x φανερῷ + " 1x φανεῖται + " 1x φανταζόμενον + " 1x φαντασίας + " 1x φανῇ + " 1x φανῇς + " 1x φανῶμεν + " 1x φανῶν + " 2x φανῶσιν + " 1x φαρμάκοις + " 1x φαρμακίᾳ + " 1x φαρμακεία + " 1x φαρμακιῶν + " 1x φασίν + " 2x φαῦλα + " 4x φαῦλον + " 2x φείδομαι + " 1x φείσεται + " 1x φείσομαι + " 2x φειδομένως + " 1x φειδόμενοι + " 1x φειδόμενος + " 1x φελόνην + " 1x φερομένην + " 1x φερομένης + " 1x φερόμενοι + " 1x φερώμεθα + " 3x φευγέτωσαν + " 2x φεύγει + " 3x φεύγετε + " 1x φεύξεται + " 1x φεύξονται + " 3x φεῦγε + " 4x φημι + " 13x φησίν + " 4x φησιν + " 1x φθάσωμεν + " 1x φθέγγεσθαι + " 1x φθαρήσονται + " 1x φθαρτοῖς + " 1x φθαρτοῦ + " 3x φθαρτόν + " 1x φθαρτῆς + " 1x φθαρῇ + " 1x φθείρει + " 1x φθείρονται + " 1x φθείρουσιν + " 1x φθεγγόμενοι + " 1x φθεγξάμενον + " 1x φθειρόμενον + " 1x φθερεῖ + " 1x φθινοπωρινά + " 1x φθονοῦντες + " 1x φθορά + " 3x φθοράν + " 3x φθορᾶς + " 2x φθορᾷ + " 1x φθόγγοις + " 1x φθόγγος + " 1x φθόνοι + " 4x φθόνον + " 1x φθόνος + " 1x φθόνου + " 1x φθόνους + " 1x φθόνῳ + " 5x φιάλας + " 7x φιάλην + " 1x φιλάγαθον + " 1x φιλάδελφοι + " 1x φιλάνδρους + " 2x φιλάργυροι + " 1x φιλήδονοι + " 6x φιλήματι + " 2x φιλήσω + " 1x φιλία + " 1x φιλαδελφία + " 2x φιλαδελφίαν + " 1x φιλαδελφίας + " 2x φιλαδελφίᾳ + " 1x φιλανθρωπία + " 1x φιλανθρωπίαν + " 1x φιλανθρώπως + " 1x φιλαργυρία + " 3x φιλεῖ + " 2x φιλεῖς + " 1x φιλονεικία + " 1x φιλοξενίαν + " 1x φιλοξενίας + " 1x φιλοπρωτεύων + " 1x φιλοσοφίας + " 1x φιλοσόφων + " 1x φιλοτέκνους + " 1x φιλοτιμεῖσθαι + " 1x φιλοτιμούμεθα + " 1x φιλοτιμούμενον + " 1x φιλοφρόνως + " 1x φιλούντων + " 1x φιλοῦντας + " 2x φιλοῦσιν + " 1x φιλόθεοι + " 1x φιλόνεικος + " 1x φιλόξενοι + " 2x φιλόξενον + " 1x φιλόστοργοι + " 1x φιλῆσαι + " 4x φιλῶ + " 4x φιλῶν + " 1x φιμοῦν + " 1x φιμώσεις + " 2x φλογί + " 1x φλογίζουσα + " 1x φλογιζομένη + " 1x φλογός + " 1x φλυαρῶν + " 2x φλόγα + " 2x φλόξ + " 1x φλύαροι + " 1x φοίνικες + " 2x φοβήθητε + " 1x φοβερά + " 2x φοβερόν + " 1x φοβεῖσθαι + " 12x φοβεῖσθε + " 1x φοβηθέντες + " 1x φοβηθήσομαι + " 3x φοβηθείς + " 1x φοβηθεῖσα + " 4x φοβηθῆτε + " 1x φοβηθῇ + " 1x φοβηθῇς + " 1x φοβηθῶμεν + " 2x φοβουμένοις + " 1x φοβούμεθα + " 1x φοβούμεναι + " 6x φοβούμενοι + " 6x φοβούμενος + " 13x φοβοῦ + " 4x φοβοῦμαι + " 1x φοβῆται + " 1x φοβῇ + " 1x φοινίκων + " 1x φονέα + " 1x φονευσάντων + " 1x φονεύεις + " 1x φονεύετε + " 2x φονεύς + " 3x φονεύσεις + " 1x φονεύσῃ + " 3x φονεύσῃς + " 3x φονεῖς + " 1x φονεῦσιν + " 1x φορέσωμεν + " 1x φορεῖ + " 1x φοροῦντα + " 1x φοροῦντες + " 2x φορτία + " 1x φορτίζετε + " 1x φορτίοις + " 2x φορτίον + " 1x φορτίου + " 1x φορῶν + " 4x φρέαρ + " 3x φρέατος + " 1x φρίσσουσιν + " 1x φραγέλλιον + " 1x φραγήσεται + " 2x φραγελλώσας + " 1x φραγμούς + " 1x φραγμοῦ + " 2x φραγμόν + " 1x φραγῇ + " 1x φρεναπάται + " 1x φρεναπατᾷ + " 2x φρεσίν + " 2x φρονήσει + " 1x φρονήσετε + " 2x φρονίμοις + " 1x φρονίμως + " 1x φρονίμῳ + " 1x φρονεῖ + " 6x φρονεῖν + " 3x φρονεῖς + " 4x φρονεῖτε + " 1x φρονιμώτεροι + " 4x φρονοῦντες + " 1x φρονοῦσιν + " 1x φροντίζωσιν + " 1x φρονῆτε + " 1x φρονῶμεν + " 1x φρονῶν + " 1x φρουρήσει + " 1x φρουρουμένους + " 1x φρυγάνων + " 1x φρόνει + " 4x φρόνημα + " 8x φρόνιμοι + " 2x φρόνιμος + " 2x φυέν + " 1x φυγή + " 3x φυγεῖν + " 2x φυλάξαι + " 1x φυλάξατε + " 2x φυλάξει + " 1x φυλάξῃ + " 1x φυλάξῃς + " 2x φυλάς + " 2x φυλάσσειν + " 2x φυλάσσεσθαι + " 2x φυλάσσεσθε + " 2x φυλάσσοντες + " 1x φυλάσσοντι + " 1x φυλάσσου + " 1x φυλάσσουσιν + " 2x φυλάσσων + " 2x φυλάσσῃ + " 3x φυλήν + " 2x φυλαί + " 3x φυλακάς + " 2x φυλακή + " 15x φυλακήν + " 1x φυλακίζων + " 3x φυλακαῖς + " 1x φυλακτήρια + " 6x φυλακῆς + " 17x φυλακῇ + " 1x φυλασσόμενος + " 1x φυλαῖς + " 20x φυλῆς + " 3x φυλῶν + " 1x φυράματος + " 1x φυσικά + " 2x φυσικήν + " 1x φυσικῶς + " 1x φυσιούμενος + " 1x φυσιοῖ + " 1x φυσιοῦσθε + " 1x φυσιοῦται + " 1x φυσιώσεις + " 1x φυτεία + " 1x φυτεύει + " 1x φυτεύθητι + " 2x φυτεύων + " 2x φωλεούς + " 2x φωνάς + " 29x φωνή + " 40x φωνήν + " 1x φωνήσαντες + " 5x φωνήσας + " 1x φωνήσει + " 1x φωνήσῃ + " 6x φωναί + " 1x φωναῖς + " 6x φωνεῖ + " 1x φωνεῖτε + " 1x φωνηθῆναι + " 1x φωνοῦσιν + " 23x φωνῆς + " 6x φωνῆσαι + " 1x φωνῆσαν + " 33x φωνῇ + " 2x φωνῶν + " 1x φωστήρ + " 1x φωστῆρες + " 1x φωσφόρος + " 9x φωτί + " 1x φωτίζει + " 1x φωτίζῃ + " 1x φωτίσαι + " 1x φωτίσαντος + " 2x φωτίσει + " 1x φωτεινή + " 4x φωτεινόν + " 1x φωτισθέντας + " 1x φωτισθέντες + " 2x φωτισμόν + " 14x φωτός + " 1x φόβητρα + " 1x φόβοι + " 15x φόβον + " 12x φόβος + " 9x φόβου + " 10x φόβῳ + " 2x φόνοι + " 3x φόνον + " 2x φόνου + " 1x φόνων + " 1x φόνῳ + " 3x φόρον + " 2x φόρους + " 1x φύγητε + " 2x φύλακας + " 1x φύλακες + " 2x φύλαξον + " 6x φύλλα + " 1x φύουσα + " 4x φύραμα + " 5x φύσει + " 2x φύσεως + " 5x φύσιν + " 2x φύσις + " 1x φώνει + " 1x φώνησον + " 1x φώτων + " 47x φῶς + " 1x φῶτα + " 3x χάλαζα + " 7x χάραγμα + " 1x χάρακα + " 1x χάρητε + " 49x χάριν + " 58x χάρις + " 8x χάρισμα + " 2x χάριτα + " 24x χάριτι + " 27x χάριτος + " 1x χάρτου + " 1x χάσμα + " 9x χήρα + " 2x χήραις + " 3x χήραν + " 5x χήρας + " 8x χίλια + " 3x χαίρει + " 7x χαίρειν + " 9x χαίρετε + " 2x χαίρομεν + " 6x χαίροντες + " 1x χαίρουσιν + " 8x χαίρω + " 1x χαίρωμεν + " 4x χαίρων + " 1x χαίρῃ + " 1x χαιρόντων + " 1x χαλάζης + " 2x χαλάσαντες + " 1x χαλάσατε + " 1x χαλάσω + " 1x χαλασάντων + " 2x χαλεποί + " 1x χαλιναγωγῆσαι + " 1x χαλιναγωγῶν + " 1x χαλινούς + " 1x χαλινῶν + " 1x χαλκίων + " 1x χαλκεύς + " 1x χαλκηδών + " 2x χαλκολιβάνῳ + " 1x χαλκοῦ + " 3x χαλκόν + " 1x χαλκός + " 1x χαλκᾶ + " 1x χαλῶσι + " 2x χαμαί + " 17x χαρά + " 1x χαράγματι + " 14x χαράν + " 2x χαρήσεται + " 1x χαρήσομαι + " 1x χαρήσονται + " 1x χαρίζεσθαι + " 1x χαρίζεσθε + " 2x χαρίσασθαι + " 1x χαρίσασθε + " 1x χαρίσεται + " 6x χαρίσματα + " 1x χαρίσματι + " 1x χαρίσματος + " 1x χαρακτήρ + " 2x χαριζόμενοι + " 1x χαρισάμενος + " 1x χαρισθέντα + " 1x χαρισθήσομαι + " 1x χαρισθῆναι + " 1x χαρισμάτων + " 22x χαρᾶς + " 6x χαρᾷ + " 2x χαρῆναι + " 2x χαρῆτε + " 3x χείλεσιν + " 2x χείλη + " 13x χείρ + " 3x χείρονα + " 1x χείρονος + " 2x χείρων + " 1x χειλέων + " 1x χειμάρρου + " 1x χειμαζομένων + " 2x χειμών + " 4x χειμῶνος + " 20x χειρί + " 1x χειραγωγούμενος + " 1x χειραγωγούς + " 1x χειραγωγοῦντες + " 1x χειροποίητα + " 1x χειροποίητον + " 2x χειροποιήτοις + " 2x χειροποιήτου + " 1x χειροτονήσαντες + " 1x χειροτονηθείς + " 1x χειρόγραφον + " 26x χειρός + " 16x χειρῶν + " 9x χερσίν + " 1x χεῖλος + " 30x χεῖρα + " 59x χεῖρας + " 2x χεῖρες + " 5x χεῖρον + " 2x χηρῶν + " 1x χιλίαρχοι + " 3x χιλίαρχον + " 10x χιλίαρχος + " 2x χιλίας + " 1x χιλίων + " 19x χιλιάδες + " 3x χιλιάδων + " 2x χιλιάρχοις + " 1x χιλιάρχων + " 4x χιλιάρχῳ + " 1x χιλιάσιν + " 1x χιτών + " 4x χιτῶνα + " 6x χιτῶνας + " 2x χιών + " 2x χλαμύδα + " 1x χλιαρός + " 1x χλωρόν + " 2x χλωρός + " 1x χλωρῷ + " 1x χοίνικες + " 5x χοίρους + " 6x χοίρων + " 1x χολήν + " 1x χολᾶτε + " 1x χολῆς + " 1x χορηγήσει + " 1x χορηγεῖ + " 1x χορτάζεσθαι + " 1x χορτάζεσθε + " 2x χορτάσαι + " 1x χορτάσματα + " 1x χορτασθήσεσθε + " 1x χορτασθήσονται + " 2x χορτασθῆναι + " 1x χορῶν + " 1x χοϊκοί + " 1x χοϊκοῦ + " 2x χοϊκός + " 1x χοῖροι + " 2x χοῦν + " 1x χρή + " 4x χρήματα + " 1x χρήσιμον + " 1x χρήσωμαι + " 1x χρίσας + " 2x χρεία + " 2x χρείαις + " 38x χρείαν + " 5x χρείας + " 1x χρεοφειλέται + " 1x χρεοφειλετῶν + " 1x χρημάτων + " 1x χρηματίζοντα + " 1x χρηματίσαι + " 1x χρηματίσει + " 1x χρηματισθέντες + " 2x χρηματισθείς + " 1x χρηματισμός + " 1x χρησάμενος + " 1x χρηστά + " 1x χρηστεύεται + " 1x χρηστοί + " 1x χρηστολογίας + " 1x χρηστόν + " 4x χρηστός + " 3x χρηστότης + " 3x χρηστότητα + " 3x χρηστότητι + " 1x χρηστότητος + " 1x χρονίζειν + " 1x χρονίζοντος + " 1x χρονίσει + " 1x χρονοτριβῆσαι + " 5x χρυσίον + " 2x χρυσίου + " 1x χρυσίων + " 5x χρυσίῳ + " 1x χρυσοδακτύλιος + " 2x χρυσοῦ + " 6x χρυσοῦν + " 1x χρυσοῦς + " 1x χρυσόλιθος + " 3x χρυσόν + " 1x χρυσόπρασος + " 2x χρυσός + " 2x χρυσᾶ + " 1x χρυσᾶν + " 5x χρυσᾶς + " 1x χρυσῆ + " 1x χρυσῶν + " 3x χρυσῷ + " 1x χρωτός + " 2x χρόνοις + " 28x χρόνον + " 7x χρόνος + " 4x χρόνου + " 3x χρόνους + " 6x χρόνων + " 4x χρόνῳ + " 1x χρώμεθα + " 1x χρώμενοι + " 1x χρῄζει + " 2x χρῄζετε + " 1x χρῄζομεν + " 1x χρῄζῃ + " 1x χρῆμα + " 1x χρῆσαι + " 2x χρῆσιν + " 1x χρῆσον + " 1x χρῆται + " 3x χρῖσμα + " 1x χρῶ + " 4x χωλοί + " 4x χωλούς + " 3x χωλόν + " 2x χωλός + " 1x χωλῶν + " 1x χωρήσειν + " 1x χωρία + " 2x χωρίζεσθαι + " 1x χωρίζεται + " 5x χωρίον + " 2x χωρίου + " 41x χωρίς + " 1x χωρίσαι + " 1x χωρίσει + " 1x χωρίων + " 1x χωρείτω + " 2x χωρεῖ + " 2x χωρεῖν + " 1x χωριζέσθω + " 2x χωριζέτω + " 1x χωρισθείς + " 1x χωρισθῆναι + " 1x χωρισθῇ + " 1x χωροῦσαι + " 1x χωροῦσιν + " 1x χωρῆσαι + " 6x χόρτον + " 5x χόρτος + " 3x χόρτου + " 1x χόρτῳ + " 2x χώρα + " 1x χώραις + " 14x χώραν + " 8x χώρας + " 3x χώρᾳ + " 3x χῆραι + " 1x χῶρον + " 1x ψάλλοντες + " 1x ψαλλέτω + " 3x ψαλμοῖς + " 1x ψαλμόν + " 1x ψαλμῶν + " 1x ψαλμῷ + " 3x ψαλῶ + " 1x ψευδέσιν + " 1x ψευδαδέλφοις + " 1x ψευδαδέλφους + " 1x ψευδαπόστολοι + " 2x ψευδεῖς + " 1x ψευδοδιδάσκαλοι + " 1x ψευδολόγων + " 1x ψευδομάρτυρες + " 1x ψευδομαρτυρήσεις + " 2x ψευδομαρτυρήσῃς + " 1x ψευδομαρτυρίαι + " 1x ψευδομαρτυρίαν + " 1x ψευδομαρτύρων + " 1x ψευδοπροφήταις + " 1x ψευδοπροφήτην + " 2x ψευδοπροφήτης + " 1x ψευδοπροφήτου + " 1x ψευδοπροφητῶν + " 5x ψευδοπροφῆται + " 1x ψευδωνύμου + " 1x ψευδόμεθα + " 1x ψευδόμενοι + " 2x ψευδόχριστοι + " 2x ψεύδει + " 2x ψεύδεσθε + " 4x ψεύδομαι + " 1x ψεύδονται + " 1x ψεύδους + " 2x ψεύσασθαι + " 1x ψεύσματι + " 1x ψεύσταις + " 2x ψεύστην + " 6x ψεύστης + " 7x ψεῦδος + " 1x ψεῦσται + " 1x ψηλαφήσατε + " 1x ψηλαφήσειαν + " 1x ψηλαφωμένῳ + " 1x ψηφίζει + " 1x ψηφισάτω + " 1x ψιθυρισμοί + " 1x ψιθυριστάς + " 2x ψιχίων + " 1x ψυγήσεται + " 15x ψυχάς + " 15x ψυχή + " 40x ψυχήν + " 3x ψυχαί + " 3x ψυχαῖς + " 1x ψυχική + " 1x ψυχικοί + " 3x ψυχικόν + " 1x ψυχικός + " 1x ψυχροῦ + " 3x ψυχρός + " 12x ψυχῆς + " 8x ψυχῇ + " 5x ψυχῶν + " 4x ψωμίον + " 1x ψωμίσω + " 1x ψύχει + " 1x ψώμιζε + " 1x ψώχοντες + " 3x ψῆφον + " 2x ψῦχος + " 1x ἀΐδιος + " 5x ἀέρα + " 1x ἀέρος + " 1x ἀήρ + " 1x ἀβαρῆ + " 6x ἀβύσσου + " 3x ἀγάγετε + " 2x ἀγάγῃ + " 1x ἀγάμοις + " 1x ἀγάπαις + " 36x ἀγάπη + " 33x ἀγάπην + " 18x ἀγάπης + " 28x ἀγάπῃ + " 6x ἀγέλη + " 1x ἀγέλην + " 2x ἀγαγεῖν + " 1x ἀγαγόντα + " 1x ἀγαγόντες + " 11x ἀγαθά + " 2x ἀγαθάς + " 5x ἀγαθέ + " 2x ἀγαθή + " 8x ἀγαθήν + " 1x ἀγαθοεργεῖν + " 1x ἀγαθοποιΐᾳ + " 1x ἀγαθοποιεῖτε + " 3x ἀγαθοποιοῦντας + " 1x ἀγαθοποιοῦντες + " 1x ἀγαθοποιοῦσαι + " 1x ἀγαθοποιῆσαι + " 1x ἀγαθοποιῆτε + " 2x ἀγαθοποιῶν + " 1x ἀγαθουργῶν + " 2x ἀγαθούς + " 3x ἀγαθοῖς + " 8x ἀγαθοῦ + " 1x ἀγαθωσύνη + " 2x ἀγαθωσύνης + " 1x ἀγαθωσύνῃ + " 34x ἀγαθόν + " 9x ἀγαθός + " 2x ἀγαθῆς + " 2x ἀγαθῇ + " 6x ἀγαθῶν + " 7x ἀγαθῷ + " 1x ἀγαλλίασις + " 3x ἀγαλλιάσει + " 1x ἀγαλλιάσεως + " 1x ἀγαλλιαθῆναι + " 1x ἀγαλλιώμενοι + " 3x ἀγαλλιᾶσθε + " 1x ἀγαλλιῶμεν + " 1x ἀγανάκτησιν + " 1x ἀγανακτεῖν + " 1x ἀγανακτοῦντες + " 1x ἀγανακτῶν + " 1x ἀγαπάτω + " 2x ἀγαπήσαντος + " 3x ἀγαπήσας + " 1x ἀγαπήσατε + " 4x ἀγαπήσει + " 1x ἀγαπήσεις + " 1x ἀγαπήσητε + " 1x ἀγαπήσω + " 1x ἀγαπηθήσεται + " 2x ἀγαπητά + " 1x ἀγαπητήν + " 21x ἀγαπητοί + " 2x ἀγαπητοῖς + " 1x ἀγαπητοῦ + " 7x ἀγαπητόν + " 11x ἀγαπητός + " 4x ἀγαπητῷ + " 1x ἀγαπώντων + " 8x ἀγαπᾶν + " 14x ἀγαπᾶτε + " 12x ἀγαπᾷ + " 2x ἀγαπᾷς + " 5x ἀγαπῶ + " 1x ἀγαπῶμαι + " 10x ἀγαπῶμεν + " 13x ἀγαπῶν + " 3x ἀγαπῶντας + " 1x ἀγαπῶντι + " 5x ἀγαπῶσιν + " 1x ἀγγέλλουσα + " 9x ἀγγέλοις + " 14x ἀγγέλου + " 20x ἀγγέλους + " 31x ἀγγέλων + " 9x ἀγγέλῳ + " 1x ἀγγαρεύουσιν + " 1x ἀγγαρεύσει + " 1x ἀγγείοις + " 2x ἀγγελία + " 1x ἀγενεαλόγητος + " 1x ἀγενῆ + " 1x ἀγκάλας + " 3x ἀγκύρας + " 2x ἀγνάφου + " 1x ἀγνοήσαντες + " 1x ἀγνοίας + " 1x ἀγνοίᾳ + " 1x ἀγνοεῖ + " 6x ἀγνοεῖν + " 1x ἀγνοεῖται + " 2x ἀγνοεῖτε + " 1x ἀγνοημάτων + " 1x ἀγνοούμενοι + " 1x ἀγνοούμενος + " 1x ἀγνοοῦμεν + " 2x ἀγνοοῦντες + " 2x ἀγνοοῦσιν + " 2x ἀγνοῶν + " 2x ἀγνωσίαν + " 2x ἀγοράζει + " 2x ἀγοράζοντας + " 1x ἀγοράζοντες + " 1x ἀγοράν + " 3x ἀγοράσαι + " 1x ἀγοράσαντα + " 1x ἀγοράσας + " 1x ἀγοράσατε + " 3x ἀγοράσωμεν + " 3x ἀγοράσωσιν + " 1x ἀγοραίων + " 1x ἀγορασάτω + " 1x ἀγοραῖοι + " 6x ἀγοραῖς + " 1x ἀγορᾶς + " 3x ἀγορᾷ + " 1x ἀγράμματοι + " 1x ἀγραυλοῦντες + " 1x ἀγρεύσωσιν + " 1x ἀγριέλαιος + " 1x ἀγριελαίου + " 9x ἀγρούς + " 7x ἀγροῦ + " 2x ἀγρυπνίαις + " 2x ἀγρυπνεῖτε + " 1x ἀγρυπνοῦντες + " 1x ἀγρυπνοῦσιν + " 6x ἀγρόν + " 2x ἀγρός + " 1x ἀγρῶν + " 9x ἀγρῷ + " 1x ἀγωγῇ + " 1x ἀγωνίζου + " 1x ἀγωνίᾳ + " 1x ἀγωνιζόμεθα + " 3x ἀγωνιζόμενος + " 1x ἀγόμενα + " 5x ἀγῶνα + " 1x ἀγῶνι + " 1x ἀδάπανον + " 1x ἀδήλως + " 2x ἀδίκημα + " 2x ἀδίκους + " 3x ἀδίκων + " 1x ἀδίκως + " 1x ἀδίκῳ + " 5x ἀδελφάς + " 5x ἀδελφέ + " 8x ἀδελφή + " 5x ἀδελφήν + " 4x ἀδελφαί + " 138x ἀδελφοί + " 39x ἀδελφούς + " 17x ἀδελφοῖς + " 17x ἀδελφοῦ + " 41x ἀδελφόν + " 43x ἀδελφός + " 1x ἀδελφότητα + " 1x ἀδελφότητι + " 3x ἀδελφῆς + " 1x ἀδελφῇ + " 21x ἀδελφῶν + " 14x ἀδελφῷ + " 1x ἀδηλότητι + " 2x ἀδημονεῖν + " 1x ἀδημονῶν + " 1x ἀδιάκριτος + " 1x ἀδιάλειπτον + " 1x ἀδιάλειπτος + " 4x ἀδιαλείπτως + " 1x ἀδικήματα + " 1x ἀδικήσαντος + " 1x ἀδικήσει + " 1x ἀδικήσητε + " 1x ἀδικήσουσιν + " 1x ἀδικήσῃς + " 4x ἀδικία + " 1x ἀδικίαις + " 2x ἀδικίαν + " 13x ἀδικίας + " 5x ἀδικίᾳ + " 1x ἀδικεῖσθε + " 2x ἀδικεῖτε + " 1x ἀδικηθέντος + " 1x ἀδικηθῇ + " 1x ἀδικησάτω + " 1x ἀδικούμενοι + " 1x ἀδικούμενον + " 1x ἀδικοῦσιν + " 4x ἀδικῆσαι + " 2x ἀδικῶ + " 3x ἀδικῶν + " 1x ἀδυνάτων + " 2x ἀδυνατήσει + " 5x ἀδόκιμοι + " 1x ἀδόκιμον + " 2x ἀδόκιμος + " 1x ἀδύνατα + " 6x ἀδύνατον + " 1x ἀδύνατος + " 6x ἀεί + " 2x ἀετοί + " 2x ἀετοῦ + " 1x ἀετῷ + " 1x ἀζύμοις + " 6x ἀζύμων + " 1x ἀθά + " 1x ἀθέμιτον + " 2x ἀθέσμων + " 1x ἀθέτησιν + " 1x ἀθέτησις + " 3x ἀθανασίαν + " 1x ἀθεμίτοις + " 1x ἀθετήσας + " 1x ἀθετήσω + " 4x ἀθετεῖ + " 1x ἀθετεῖτε + " 1x ἀθετοῦσιν + " 1x ἀθετῆσαι + " 1x ἀθετῶ + " 4x ἀθετῶν + " 1x ἀθλήσῃ + " 1x ἀθλῇ + " 1x ἀθυμῶσιν + " 1x ἀθῷον + " 6x ἀκάθαρτα + " 9x ἀκάθαρτον + " 1x ἀκάθαρτος + " 1x ἀκάκων + " 6x ἀκάνθας + " 2x ἀκάνθινον + " 1x ἀκάρποις + " 1x ἀκάρπους + " 2x ἀκέραιοι + " 1x ἀκαίρως + " 2x ἀκαθάρτοις + " 4x ἀκαθάρτου + " 4x ἀκαθάρτων + " 5x ἀκαθάρτῳ + " 2x ἀκαθαρσία + " 2x ἀκαθαρσίαν + " 3x ἀκαθαρσίας + " 3x ἀκαθαρσίᾳ + " 5x ἀκανθῶν + " 1x ἀκατάγνωστον + " 1x ἀκατάκριτον + " 1x ἀκατάστατον + " 1x ἀκατάστατος + " 1x ἀκατακάλυπτον + " 1x ἀκατακαλύπτῳ + " 1x ἀκατακρίτους + " 1x ἀκαταλύτου + " 1x ἀκαταπαύστους + " 1x ἀκαταστασία + " 1x ἀκαταστασίαι + " 1x ἀκαταστασίαις + " 2x ἀκαταστασίας + " 1x ἀκεραίους + " 1x ἀκηκοότας + " 5x ἀκηκόαμεν + " 1x ἀκηκόασιν + " 2x ἀκηκόατε + " 1x ἀκλινῆ + " 4x ἀκοάς + " 5x ἀκοή + " 3x ἀκοήν + " 1x ἀκοαί + " 1x ἀκοαῖς + " 1x ἀκολουθήσαντες + " 2x ἀκολουθήσατε + " 1x ἀκολουθήσεις + " 1x ἀκολουθήσουσιν + " 1x ἀκολουθήσω + " 4x ἀκολουθείτω + " 5x ἀκολουθεῖ + " 1x ἀκολουθησάντων + " 1x ἀκολουθούσης + " 1x ἀκολουθοῦντα + " 1x ἀκολουθοῦντας + " 4x ἀκολουθοῦντες + " 1x ἀκολουθοῦντι + " 3x ἀκολουθοῦσιν + " 2x ἀκολουθῆσαι + " 2x ἀκολουθῶν + " 5x ἀκολούθει + " 7x ἀκουέτω + " 3x ἀκουσάντων + " 8x ἀκουσάτω + " 1x ἀκουσάτωσαν + " 1x ἀκουσθήσεται + " 1x ἀκουσθεῖσιν + " 4x ἀκουσθῇ + " 1x ἀκουόντων + " 15x ἀκούει + " 20x ἀκούειν + " 3x ἀκούεις + " 1x ἀκούεται + " 17x ἀκούετε + " 3x ἀκούομεν + " 2x ἀκούοντα + " 6x ἀκούοντας + " 14x ἀκούοντες + " 1x ἀκούοντι + " 1x ἀκούοντος + " 9x ἀκούουσιν + " 49x ἀκούσαντες + " 29x ἀκούσας + " 2x ἀκούσασα + " 1x ἀκούσασιν + " 7x ἀκούσατε + " 1x ἀκούσει + " 1x ἀκούσεσθε + " 2x ἀκούσετε + " 5x ἀκούσητε + " 2x ἀκούσονται + " 3x ἀκούσουσιν + " 8x ἀκούσωσιν + " 8x ἀκούσῃ + " 6x ἀκούω + " 13x ἀκούων + " 1x ἀκούωσιν + " 5x ἀκοῆς + " 3x ἀκοῇ + " 17x ἀκοῦσαι + " 1x ἀκράτου + " 1x ἀκρίβειαν + " 1x ἀκρίδας + " 2x ἀκρίδες + " 1x ἀκρίδων + " 1x ἀκρασίαν + " 1x ἀκρασίας + " 1x ἀκρατεῖς + " 4x ἀκριβέστερον + " 1x ἀκριβεστάτην + " 5x ἀκριβῶς + " 1x ἀκροατήριον + " 2x ἀκροατής + " 2x ἀκροαταί + " 9x ἀκροβυστία + " 3x ἀκροβυστίαν + " 2x ἀκροβυστίας + " 6x ἀκροβυστίᾳ + " 1x ἀκρογωνιαίου + " 1x ἀκρογωνιαῖον + " 1x ἀκροθινίων + " 1x ἀκυροῖ + " 1x ἀκυροῦντες + " 1x ἀκωλύτως + " 4x ἀλάβαστρον + " 1x ἀλάλους + " 5x ἀλέκτορα + " 6x ἀλέκτωρ + " 14x ἀλήθεια + " 22x ἀλήθειαν + " 2x ἀλήθουσαι + " 1x ἀλαζονία + " 1x ἀλαζονίαις + " 1x ἀλαζόνας + " 1x ἀλαζόνες + " 1x ἀλαλάζον + " 1x ἀλαλάζοντας + " 1x ἀλαλήτοις + " 1x ἀλείψαντες + " 1x ἀλείψασα + " 1x ἀλείψωσιν + " 1x ἀλεκτοροφωνίας + " 2x ἀλεύρου + " 4x ἀληθές + " 16x ἀληθής + " 43x ἀληθείας + " 29x ἀληθείᾳ + " 1x ἀληθεύοντες + " 1x ἀληθεύων + " 1x ἀληθεῖς + " 3x ἀληθινή + " 3x ἀληθιναί + " 4x ἀληθινοί + " 6x ἀληθινόν + " 6x ἀληθινός + " 2x ἀληθινῆς + " 1x ἀληθινῶν + " 2x ἀληθινῷ + " 1x ἀληθοῦς + " 4x ἀληθῆ + " 12x ἀληθῶς + " 1x ἀλισγημάτων + " 413x ἀλλά + " 1x ἀλλάξαι + " 1x ἀλλάξει + " 13x ἀλλήλοις + " 67x ἀλλήλους + " 19x ἀλλήλων + " 1x ἀλλαγήσονται + " 2x ἀλλαγησόμεθα + " 1x ἀλλαχοῦ + " 1x ἀλλαχόθεν + " 1x ἀλληγορούμενα + " 1x ἀλλογενής + " 1x ἀλλοτρίαις + " 1x ἀλλοτρίαν + " 1x ἀλλοτρίοις + " 4x ἀλλοτρίων + " 1x ἀλλοτρίᾳ + " 4x ἀλλοτρίῳ + " 1x ἀλλοτριεπίσκοπος + " 1x ἀλλοφύλῳ + " 2x ἀλλότριον + " 214x ἀλλ’ + " 1x ἀλοῶν + " 2x ἀλοῶντα + " 1x ἀλυπότερος + " 1x ἀλυσιτελές + " 1x ἀλόης + " 2x ἀλώπεκες + " 1x ἀλώπεκι + " 1x ἀμάραντον + " 1x ἀμάρτυρον + " 1x ἀμάχους + " 1x ἀμέθυστος + " 1x ἀμέλει + " 1x ἀμέμπτους + " 2x ἀμέμπτως + " 86x ἀμήν + " 1x ἀμήτωρ + " 1x ἀμίαντον + " 3x ἀμίαντος + " 1x ἀμαθεῖς + " 1x ἀμαράντινον + " 2x ἀμελήσαντες + " 2x ἀμερίμνους + " 1x ἀμετάθετον + " 1x ἀμεταθέτων + " 1x ἀμετακίνητοι + " 1x ἀμεταμέλητα + " 1x ἀμεταμέλητον + " 1x ἀμετανόητον + " 1x ἀμησάντων + " 1x ἀμνοῦ + " 1x ἀμνός + " 1x ἀμοιβάς + " 4x ἀμπέλου + " 1x ἀμπέλῳ + " 1x ἀμπελουργόν + " 11x ἀμπελῶνα + " 2x ἀμπελῶνι + " 10x ἀμπελῶνος + " 1x ἀμφίβληστρον + " 1x ἀμφιέζει + " 1x ἀμφιέννυσιν + " 1x ἀμφιβάλλοντας + " 1x ἀμφοτέροις + " 1x ἀμφοτέρους + " 1x ἀμφοτέρων + " 1x ἀμφόδου + " 4x ἀμφότερα + " 7x ἀμφότεροι + " 1x ἀμώμητοι + " 1x ἀμώμου + " 3x ἀμώμους + " 13x ἀνά + " 1x ἀνάβητε + " 1x ἀνάβλεψιν + " 1x ἀνάβλεψον + " 2x ἀνάγαιον + " 2x ἀνάγεσθαι + " 2x ἀνάγκαις + " 1x ἀνάγκασον + " 5x ἀνάγκη + " 6x ἀνάγκην + " 2x ἀνάγκης + " 1x ἀνάγκῃ + " 1x ἀνάγνωσιν + " 1x ἀνάδειξον + " 4x ἀνάθεμα + " 1x ἀνάκυψας + " 3x ἀνάμνησιν + " 1x ἀνάμνησις + " 1x ἀνάξιοι + " 5x ἀνάπαυσιν + " 1x ἀνάπαυσον + " 2x ἀνάπεσε + " 1x ἀνάπτει + " 1x ἀνάστα + " 12x ἀνάστασιν + " 6x ἀνάστασις + " 4x ἀνάστηθι + " 1x ἀνάχυσιν + " 1x ἀνέβαινον + " 20x ἀνέβη + " 3x ἀνέβην + " 10x ἀνέβησαν + " 2x ἀνέβλεψα + " 1x ἀνέβλεψαν + " 5x ἀνέβλεψεν + " 1x ἀνέγκλητοι + " 1x ἀνέγκλητον + " 1x ἀνέγκλητος + " 1x ἀνέγνωσαν + " 10x ἀνέγνωτε + " 1x ἀνέδειξεν + " 2x ἀνέζησεν + " 1x ἀνέθετο + " 1x ἀνέθη + " 1x ἀνέκειτο + " 1x ἀνέκλειπτον + " 1x ἀνέκλινεν + " 1x ἀνέκραγον + " 1x ἀνέκραξαν + " 2x ἀνέκραξεν + " 1x ἀνέλεος + " 3x ἀνέλωσιν + " 2x ἀνέμοις + " 7x ἀνέμου + " 2x ἀνέμους + " 4x ἀνέμων + " 4x ἀνέμῳ + " 1x ἀνέντες + " 3x ἀνέξομαι + " 1x ἀνέξονται + " 1x ἀνέπαυσαν + " 1x ἀνέπεμψα + " 3x ἀνέπεμψεν + " 2x ἀνέπεσαν + " 4x ἀνέπεσεν + " 1x ἀνέσεισαν + " 14x ἀνέστη + " 2x ἀνέστησαν + " 4x ἀνέστησεν + " 3x ἀνέτειλεν + " 1x ἀνέτρεψεν + " 6x ἀνέχεσθε + " 1x ἀνέψυξεν + " 2x ἀνέῳγεν + " 1x ἀνέῳξεν + " 3x ἀνήγαγον + " 1x ἀνήγγειλαν + " 1x ἀνήγγελλον + " 1x ἀνήμεροι + " 1x ἀνήνεγκεν + " 47x ἀνήρ + " 1x ἀνήφθη + " 2x ἀνήχθη + " 4x ἀνήχθημεν + " 1x ἀνήχθησαν + " 2x ἀνίπτοις + " 1x ἀνίστασθαι + " 1x ἀνίσταται + " 1x ἀναίτιοι + " 2x ἀναβάντα + " 1x ἀναβάντες + " 1x ἀναβάντων + " 6x ἀναβάς + " 1x ἀναβέβηκα + " 1x ἀναβέβηκεν + " 1x ἀναβήσεται + " 4x ἀναβαίνει + " 4x ἀναβαίνειν + " 3x ἀναβαίνομεν + " 3x ἀναβαίνοντα + " 1x ἀναβαίνοντας + " 1x ἀναβαίνοντες + " 1x ἀναβαίνουσιν + " 1x ἀναβαίνω + " 3x ἀναβαίνων + " 1x ἀναβαθμούς + " 1x ἀναβαθμῶν + " 2x ἀναβαινόντων + " 3x ἀναβαῖνον + " 1x ἀναβιβάσαντες + " 2x ἀναβλέπουσιν + " 1x ἀναβλέψαντος + " 6x ἀναβλέψας + " 1x ἀναβλέψασαι + " 2x ἀναβλέψω + " 1x ἀναβλέψῃ + " 1x ἀναβλέψῃς + " 1x ἀναβολήν + " 2x ἀναγαγεῖν + " 3x ἀναγαγών + " 1x ἀναγγέλλομεν + " 1x ἀναγγέλλοντες + " 1x ἀναγγέλλων + " 4x ἀναγγελεῖ + " 2x ἀναγγεῖλαι + " 1x ἀναγεγεννημένοι + " 1x ἀναγεννήσας + " 1x ἀναγινωσκομένας + " 1x ἀναγινωσκομένη + " 1x ἀναγινωσκόμενος + " 2x ἀναγινώσκεις + " 1x ἀναγινώσκετε + " 1x ἀναγινώσκηται + " 1x ἀναγινώσκοντες + " 1x ἀναγινώσκοντος + " 3x ἀναγινώσκων + " 1x ἀναγκάζεις + " 1x ἀναγκάζουσιν + " 1x ἀναγκαίας + " 1x ἀναγκαίους + " 1x ἀναγκαιότερον + " 1x ἀναγκαστῶς + " 1x ἀναγκαῖα + " 4x ἀναγκαῖον + " 1x ἀναγνούς + " 1x ἀναγνωσθῆναι + " 2x ἀναγνωσθῇ + " 1x ἀναγνόντες + " 2x ἀναγνώσει + " 1x ἀναγνῶναι + " 1x ἀναγνῶτε + " 1x ἀναγομένοις + " 1x ἀναδείξεως + " 2x ἀναδεξάμενος + " 1x ἀναδόντες + " 1x ἀναζητοῦντες + " 1x ἀναζητῆσαι + " 1x ἀναζωπυρεῖν + " 1x ἀναζωσάμενοι + " 1x ἀναθήμασιν + " 1x ἀναθεματίζειν + " 1x ἀναθεωροῦντες + " 1x ἀναθεωρῶν + " 1x ἀναιδίαν + " 1x ἀναιρέσει + " 2x ἀναιρεθῆναι + " 1x ἀναιρεῖ + " 1x ἀναιρεῖν + " 1x ἀναιρεῖσθαι + " 1x ἀναιρουμένων + " 1x ἀναιρούντων + " 1x ἀναιτίους + " 2x ἀνακάμψαι + " 1x ἀνακάμψει + " 1x ἀνακάμψω + " 1x ἀνακαινίζειν + " 1x ἀνακαινούμενον + " 1x ἀνακαινοῦται + " 1x ἀνακαινώσει + " 1x ἀνακαινώσεως + " 1x ἀνακαλυπτόμενον + " 3x ἀνακείμενος + " 2x ἀνακειμένοις + " 2x ἀνακειμένου + " 2x ἀνακειμένους + " 4x ἀνακειμένων + " 1x ἀνακεκαλυμμένῳ + " 1x ἀνακεκύλισται + " 1x ἀνακεφαλαιοῦται + " 1x ἀνακεφαλαιώσασθαι + " 2x ἀνακλιθήσονται + " 2x ἀνακλιθῆναι + " 1x ἀνακλινεῖ + " 1x ἀνακράξας + " 1x ἀνακρίναντες + " 3x ἀνακρίνας + " 1x ἀνακρίνει + " 3x ἀνακρίνεται + " 3x ἀνακρίνοντες + " 1x ἀνακρίνουσιν + " 1x ἀνακρίνω + " 1x ἀνακρίνων + " 1x ἀνακρίσεως + " 1x ἀνακριθῶ + " 1x ἀνακρινόμεθα + " 1x ἀνακύψαι + " 1x ἀνακύψας + " 1x ἀνακύψατε + " 1x ἀναλάβετε + " 1x ἀναλήμψεως + " 3x ἀναλαβόντες + " 1x ἀναλαβών + " 1x ἀναλαμβάνειν + " 1x ἀναλημφθείς + " 1x ἀναλογίαν + " 1x ἀναλογίσασθε + " 1x ἀναλωθῆτε + " 1x ἀναλύσεως + " 1x ἀναλύσῃ + " 1x ἀναλῦσαι + " 1x ἀναλῶσαι + " 1x ἀναμάρτητος + " 1x ἀναμένειν + " 1x ἀναμιμνῃσκομένου + " 1x ἀναμιμνῄσκω + " 1x ἀναμνήσει + " 1x ἀναμνησθείς + " 1x ἀνανήψωσιν + " 1x ἀνανεοῦσθαι + " 1x ἀναντιρρήτων + " 1x ἀναντιρρήτως + " 1x ἀναξίως + " 1x ἀναπέμψω + " 2x ἀναπέπαυται + " 2x ἀναπήρους + " 1x ἀναπαήσονται + " 2x ἀναπαύεσθε + " 1x ἀναπαύεται + " 1x ἀναπαύου + " 1x ἀναπαύσασθε + " 1x ἀναπαύσω + " 1x ἀναπαύσωνται + " 1x ἀναπείθει + " 3x ἀναπεσεῖν + " 1x ἀναπεσών + " 1x ἀναπηδήσας + " 1x ἀναπληροῦται + " 1x ἀναπληρώσετε + " 1x ἀναπληρώσῃ + " 1x ἀναπληρῶν + " 1x ἀναπληρῶσαι + " 1x ἀναπολογήτους + " 1x ἀναπολόγητος + " 1x ἀναρίθμητος + " 1x ἀνασκευάζοντες + " 1x ἀνασπάσει + " 1x ἀναστάν + " 6x ἀναστάντες + " 27x ἀναστάς + " 7x ἀναστάσει + " 17x ἀναστάσεως + " 3x ἀναστήσας + " 3x ἀναστήσει + " 4x ἀναστήσεται + " 4x ἀναστήσονται + " 4x ἀναστήσω + " 1x ἀναστατοῦντες + " 1x ἀναστατώσαντες + " 1x ἀναστατώσας + " 1x ἀνασταυροῦντας + " 1x ἀναστενάξας + " 1x ἀναστράφητε + " 2x ἀναστρέφεσθαι + " 1x ἀναστρέψαντες + " 1x ἀναστρέψω + " 1x ἀναστρεφομένους + " 1x ἀναστρεφομένων + " 5x ἀναστροφήν + " 1x ἀναστροφαῖς + " 5x ἀναστροφῆς + " 2x ἀναστροφῇ + " 1x ἀναστᾶσα + " 7x ἀναστῆναι + " 2x ἀναστῇ + " 2x ἀναστῶσιν + " 1x ἀνατάξασθαι + " 1x ἀνατέλλει + " 1x ἀνατέλλουσαν + " 1x ἀνατέταλκεν + " 2x ἀνατείλαντος + " 1x ἀνατείλῃ + " 1x ἀνατεθραμμένος + " 1x ἀνατολή + " 4x ἀνατολῆς + " 2x ἀνατολῇ + " 4x ἀνατολῶν + " 2x ἀνατρέπουσιν + " 1x ἀναφάναντες + " 2x ἀναφέρει + " 1x ἀναφέρειν + " 1x ἀναφέρωμεν + " 1x ἀναφαίνεσθαι + " 1x ἀναχθέντες + " 2x ἀναχθῆναι + " 1x ἀναχωρήσαντες + " 1x ἀναχωρήσας + " 1x ἀναψύξεως + " 7x ἀνδράσιν + " 19x ἀνδρί + " 1x ἀνδρίζεσθε + " 1x ἀνδραποδισταῖς + " 1x ἀνδροφόνοις + " 16x ἀνδρός + " 7x ἀνδρῶν + " 1x ἀνείλατε + " 1x ἀνείλατο + " 1x ἀνείχεσθε + " 1x ἀνεβαίνομεν + " 1x ἀνεβόησεν + " 2x ἀνεγίνωσκεν + " 2x ἀνεγκλήτους + " 1x ἀνεζήτουν + " 1x ἀνεθάλετε + " 1x ἀνεθέμην + " 2x ἀνεθεμάτισαν + " 1x ἀνεθεματίσαμεν + " 1x ἀνεθρέψατο + " 2x ἀνεκάθισεν + " 1x ἀνεκδιηγήτῳ + " 1x ἀνεκλαλήτῳ + " 5x ἀνεκτότερον + " 1x ἀνελάβετε + " 5x ἀνελήμφθη + " 1x ἀνελεήμονας + " 1x ἀνελεῖ + " 6x ἀνελεῖν + " 1x ἀνεμιζομένῳ + " 1x ἀνεμνήσθη + " 1x ἀνενέγκαι + " 2x ἀνενέγκας + " 1x ἀνενεγκεῖν + " 1x ἀνεξίκακον + " 1x ἀνεξεραύνητα + " 1x ἀνεξιχνίαστοι + " 1x ἀνεξιχνίαστον + " 1x ἀνεπίλημπτοι + " 2x ἀνεπίλημπτον + " 1x ἀνεπαίσχυντον + " 1x ἀνεπλήρωσαν + " 1x ἀνεσπάσθη + " 2x ἀνεστράφημεν + " 1x ἀνεσχόμην + " 1x ἀνετάζειν + " 1x ἀνετάζεσθαι + " 1x ἀνετράφη + " 1x ἀνευθέτου + " 1x ἀνευρόντες + " 1x ἀνεφέρετο + " 1x ἀνεφώνησεν + " 1x ἀνεχόμεθα + " 2x ἀνεχόμενοι + " 1x ἀνεχώρησαν + " 9x ἀνεχώρησεν + " 1x ἀνεψιός + " 1x ἀνεῖλαν + " 2x ἀνεῖλεν + " 1x ἀνεῖλες + " 1x ἀνεῦραν + " 1x ἀνεῳγμένας + " 1x ἀνεῳγμένης + " 1x ἀνεῳγμένον + " 1x ἀνεῳγμένος + " 1x ἀνεῳγμένων + " 1x ἀνεῳγότα + " 1x ἀνεῳχθῆναι + " 1x ἀνεῴχθη + " 1x ἀνεῴχθησαν + " 2x ἀνηγγέλη + " 2x ἀνθέξεται + " 2x ἀνθέστηκεν + " 1x ἀνθίστανται + " 1x ἀνθίστατο + " 1x ἀνθεστηκότες + " 2x ἀνθρακιάν + " 2x ἀνθρωπάρεσκοι + " 2x ἀνθρωπίνης + " 1x ἀνθρωπίνων + " 2x ἀνθρωπίνῃ + " 3x ἀνθρωποκτόνος + " 1x ἀνθρώπινον + " 1x ἀνθρώπινος + " 44x ἀνθρώποις + " 128x ἀνθρώπου + " 31x ἀνθρώπους + " 99x ἀνθρώπων + " 24x ἀνθρώπῳ + " 1x ἀνθυπάτου + " 1x ἀνθυπάτῳ + " 1x ἀνθωμολογεῖτο + " 1x ἀνθύπατοι + " 1x ἀνθύπατον + " 1x ἀνθύπατος + " 5x ἀνθ’ + " 1x ἀνιέντες + " 1x ἀνιστάμενος + " 1x ἀνοήτοις + " 1x ἀνοήτους + " 1x ἀνοίας + " 3x ἀνοίγει + " 1x ἀνοίγειν + " 1x ἀνοίγων + " 3x ἀνοίξαντες + " 5x ἀνοίξας + " 1x ἀνοίξει + " 1x ἀνοίξωσιν + " 2x ἀνοίξῃ + " 4x ἀνοιγήσεται + " 1x ἀνοιγῶσιν + " 2x ἀνοικοδομήσω + " 1x ἀνομία + " 1x ἀνομίαι + " 6x ἀνομίαν + " 4x ἀνομίας + " 2x ἀνομίᾳ + " 1x ἀνομιῶν + " 1x ἀνορθώθη + " 1x ἀνορθώσατε + " 1x ἀνορθώσω + " 1x ἀνοσίοις + " 1x ἀνοχῆς + " 1x ἀνοχῇ + " 7x ἀνοῖξαι + " 2x ἀντάλλαγμα + " 1x ἀντέλεγον + " 1x ἀντέστη + " 1x ἀντέστην + " 1x ἀντέστησαν + " 1x ἀντέχεσθε + " 17x ἀντί + " 2x ἀντίδικος + " 2x ἀντίκειται + " 1x ἀντίλυτρον + " 2x ἀντίστητε + " 1x ἀντίτυπα + " 1x ἀντίτυπον + " 1x ἀντίχριστοι + " 3x ἀντίχριστος + " 1x ἀνταγωνιζόμενοι + " 1x ἀνταναπληρῶ + " 2x ἀνταποδοθήσεται + " 3x ἀνταποδοῦναι + " 2x ἀνταποδώσω + " 1x ἀνταποκριθῆναι + " 1x ἀνταποκρινόμενος + " 2x ἀνταπόδομα + " 1x ἀνταπόδοσιν + " 2x ἀντειπεῖν + " 1x ἀντελάβετο + " 1x ἀντελοιδόρει + " 1x ἀντεχόμενον + " 1x ἀντιβάλλετε + " 2x ἀντιδίκου + " 1x ἀντιδίκῳ + " 1x ἀντιδιατιθεμένους + " 1x ἀντιθέσεις + " 1x ἀντικαλέσωσιν + " 1x ἀντικατέστητε + " 3x ἀντικείμενοι + " 1x ἀντικείμενος + " 1x ἀντικειμένων + " 1x ἀντικειμένῳ + " 1x ἀντιλέγει + " 1x ἀντιλέγεται + " 1x ἀντιλέγοντα + " 2x ἀντιλέγοντας + " 1x ἀντιλέγοντες + " 1x ἀντιλήμψεις + " 1x ἀντιλαμβάνεσθαι + " 1x ἀντιλαμβανόμενοι + " 1x ἀντιλεγόμενον + " 1x ἀντιλεγόντων + " 1x ἀντιλογίαν + " 2x ἀντιλογίας + " 1x ἀντιλογίᾳ + " 1x ἀντιμετρηθήσεται + " 2x ἀντιμισθίαν + " 1x ἀντιπέρα + " 1x ἀντιπίπτετε + " 2x ἀντιπαρῆλθεν + " 1x ἀντιστρατευόμενον + " 4x ἀντιστῆναι + " 3x ἀντιτάσσεται + " 1x ἀντιτασσομένων + " 1x ἀντιτασσόμενος + " 1x ἀντιχρίστου + " 1x ἀντλεῖν + " 1x ἀντλῆσαι + " 1x ἀντοφθαλμεῖν + " 2x ἀνυποκρίτου + " 1x ἀνυποκρίτῳ + " 1x ἀνυποτάκτοις + " 1x ἀνυπόκριτον + " 2x ἀνυπόκριτος + " 1x ἀνυπότακτα + " 1x ἀνυπότακτοι + " 1x ἀνυπότακτον + " 1x ἀνωτερικά + " 1x ἀνωφελές + " 1x ἀνωφελεῖς + " 4x ἀνόητοι + " 3x ἀνόμοις + " 1x ἀνόμους + " 2x ἀνόμων + " 2x ἀνόμως + " 1x ἀνόσιοι + " 2x ἀνύδρων + " 2x ἀνώτερον + " 1x ἀνῃρέθη + " 2x ἀνῆκεν + " 1x ἀνῆκον + " 1x ἀνῆλθεν + " 2x ἀνῆλθον + " 1x ἀνῶ + " 2x ἀξία + " 2x ἀξίνη + " 3x ἀξίους + " 6x ἀξίως + " 1x ἀξιούσθωσαν + " 1x ἀξιοῦμεν + " 1x ἀξιωθήσεται + " 1x ἀξιώσῃ + " 1x ἀοράτου + " 1x ἀοράτῳ + " 1x ἀπάγγειλον + " 1x ἀπάγετε + " 2x ἀπάγουσα + " 3x ἀπάντησιν + " 1x ἀπάρτι + " 1x ἀπάταις + " 2x ἀπάτη + " 2x ἀπάτης + " 1x ἀπάτωρ + " 2x ἀπάτῃ + " 1x ἀπέβησαν + " 1x ἀπέβλεπεν + " 1x ἀπέδειξεν + " 1x ἀπέδετο + " 1x ἀπέδοντο + " 1x ἀπέδοσθε + " 2x ἀπέδωκεν + " 33x ἀπέθανεν + " 12x ἀπέθανον + " 1x ἀπέθεντο + " 1x ἀπέθετο + " 1x ἀπέθνῃσκεν + " 1x ἀπέκοψαν + " 2x ἀπέκοψεν + " 1x ἀπέκρυψας + " 10x ἀπέκτειναν + " 2x ἀπέκτεινεν + " 1x ἀπέλαβεν + " 1x ἀπέλαβες + " 2x ἀπέλθητε + " 2x ἀπέλθω + " 1x ἀπέλθωσιν + " 1x ἀπέλθῃ + " 3x ἀπέλιπον + " 1x ἀπέλυεν + " 4x ἀπέλυσαν + " 1x ἀπέλυσε + " 8x ἀπέλυσεν + " 4x ἀπέναντι + " 1x ἀπέπεσαν + " 2x ἀπέπλευσαν + " 2x ἀπέπνιξαν + " 1x ἀπέρχεσθαι + " 2x ἀπέρχῃ + " 1x ἀπέσπασεν + " 2x ἀπέσταλκα + " 7x ἀπέσταλκεν + " 4x ἀπέστειλα + " 13x ἀπέστειλαν + " 7x ἀπέστειλας + " 38x ἀπέστειλεν + " 2x ἀπέστη + " 1x ἀπέστησαν + " 1x ἀπέστησεν + " 3x ἀπέχει + " 5x ἀπέχεσθαι + " 1x ἀπέχεσθε + " 1x ἀπέχετε + " 2x ἀπέχοντος + " 1x ἀπέχουσαν + " 3x ἀπέχουσιν + " 1x ἀπέχω + " 1x ἀπέχῃς + " 7x ἀπήγαγον + " 15x ἀπήγγειλαν + " 10x ἀπήγγειλεν + " 1x ἀπήγγελλον + " 1x ἀπήγξατο + " 1x ἀπήλασεν + " 1x ἀπήνεγκαν + " 2x ἀπήνεγκεν + " 1x ἀπήντησαν + " 5x ἀπίστοις + " 2x ἀπίστου + " 4x ἀπίστων + " 1x ἀπαίτει + " 1x ἀπαγαγών + " 1x ἀπαγγέλλει + " 2x ἀπαγγέλλομεν + " 1x ἀπαγγέλλοντας + " 1x ἀπαγγέλλοντες + " 1x ἀπαγγέλλουσιν + " 1x ἀπαγγέλλων + " 4x ἀπαγγείλατε + " 1x ἀπαγγελεῖ + " 1x ἀπαγγελῶ + " 3x ἀπαγγεῖλαι + " 1x ἀπαγομένους + " 1x ἀπαγόμενοι + " 1x ἀπαιδεύτους + " 1x ἀπαιτοῦσιν + " 1x ἀπαλλάξῃ + " 1x ἀπαλλάσσεσθαι + " 1x ἀπαντήσει + " 1x ἀπαράβατον + " 1x ἀπαρασκευάστους + " 3x ἀπαρθῇ + " 2x ἀπαρνήσομαι + " 6x ἀπαρνήσῃ + " 1x ἀπαρνηθήσεται + " 2x ἀπαρνησάσθω + " 1x ἀπαρτισμόν + " 6x ἀπαρχή + " 2x ἀπαρχήν + " 1x ἀπατάτω + " 1x ἀπατῶν + " 1x ἀπαχθῆναι + " 1x ἀπαύγασμα + " 2x ἀπείθειαν + " 1x ἀπείραστος + " 1x ἀπεδέξαντο + " 1x ἀπεδέξατο + " 1x ἀπεδέχετο + " 5x ἀπεδήμησεν + " 1x ἀπεδίδουν + " 4x ἀπεδοκίμασαν + " 1x ἀπεδοκιμάσθη + " 2x ἀπεθάνετε + " 2x ἀπεθάνομεν + " 1x ἀπειθής + " 1x ἀπειθήσαντες + " 3x ἀπειθήσασιν + " 3x ἀπειθείας + " 1x ἀπειθείᾳ + " 5x ἀπειθεῖς + " 2x ἀπειθούντων + " 1x ἀπειθοῦντα + " 1x ἀπειθοῦντες + " 1x ἀπειθοῦσι + " 1x ἀπειθοῦσιν + " 1x ἀπειθῶν + " 1x ἀπειλάς + " 1x ἀπειλήν + " 1x ἀπειλησώμεθα + " 1x ἀπειλῆς + " 1x ἀπειπάμεθα + " 2x ἀπεκάλυψας + " 2x ἀπεκάλυψεν + " 3x ἀπεκαλύφθη + " 1x ἀπεκατέστη + " 3x ἀπεκατεστάθη + " 1x ἀπεκδέχεται + " 1x ἀπεκδεχομένοις + " 1x ἀπεκδεχομένους + " 3x ἀπεκδεχόμεθα + " 1x ἀπεκδεχόμενοι + " 1x ἀπεκδυσάμενοι + " 1x ἀπεκδυσάμενος + " 1x ἀπεκδύσει + " 2x ἀπεκεφάλισα + " 2x ἀπεκεφάλισεν + " 81x ἀπεκρίθη + " 2x ἀπεκρίθην + " 1x ἀπεκρίθης + " 18x ἀπεκρίθησαν + " 6x ἀπεκρίνατο + " 1x ἀπεκτάνθη + " 4x ἀπεκτάνθησαν + " 1x ἀπεκτείνατε + " 1x ἀπεκύησεν + " 1x ἀπεκύλισεν + " 1x ἀπελήλυθεν + " 1x ἀπελεγμόν + " 1x ἀπελευσόμεθα + " 1x ἀπελεύθερος + " 1x ἀπελεύσομαι + " 1x ἀπελεύσονται + " 1x ἀπεληλύθεισαν + " 11x ἀπελθεῖν + " 1x ἀπελθοῦσα + " 2x ἀπελθοῦσαι + " 8x ἀπελθόντες + " 1x ἀπελθόντι + " 16x ἀπελθών + " 1x ἀπελογεῖτο + " 1x ἀπελούσασθε + " 1x ἀπελπίζοντες + " 1x ἀπελύθησαν + " 1x ἀπελύοντο + " 1x ἀπενίψατο + " 1x ἀπενεγκεῖν + " 1x ἀπενεχθῆναι + " 1x ἀπεξεδέχετο + " 1x ἀπεπλανήθησαν + " 1x ἀπεπνίγη + " 1x ἀπεράντοις + " 1x ἀπερίτμητοι + " 1x ἀπερισπάστως + " 1x ἀπερχομένων + " 1x ἀπεσπάσθη + " 2x ἀπεστάλη + " 3x ἀπεστάλην + " 1x ἀπεστάλκαμεν + " 1x ἀπεστάλκατε + " 1x ἀπεστέγασαν + " 5x ἀπεσταλμένοι + " 1x ἀπεσταλμένος + " 2x ἀπεσταλμένους + " 1x ἀπεστερημένων + " 1x ἀπεστράφησαν + " 1x ἀπεφθέγξατο + " 1x ἀπεχωρίσθη + " 1x ἀπεῖχεν + " 1x ἀπηγγέλη + " 1x ἀπηλγηκότες + " 1x ἀπηλλάχθαι + " 2x ἀπηλλοτριωμένοι + " 1x ἀπηλλοτριωμένους + " 1x ἀπησπασάμεθα + " 1x ἀπιστήσας + " 1x ἀπιστία + " 4x ἀπιστίαν + " 1x ἀπιστίας + " 5x ἀπιστίᾳ + " 1x ἀπιστούντων + " 1x ἀπιστοῦμεν + " 1x ἀπιστοῦσιν + " 1x ἀποβάλητε + " 1x ἀποβάντες + " 2x ἀποβήσεται + " 1x ἀποβαλών + " 2x ἀποβολή + " 1x ἀπογεγραμμένων + " 1x ἀπογενόμενοι + " 2x ἀπογράφεσθαι + " 1x ἀπογράψασθαι + " 1x ἀπογραφή + " 1x ἀπογραφῆς + " 1x ἀποδέξασθαι + " 1x ἀποδίδωμι + " 1x ἀποδίδωσιν + " 1x ἀποδείξει + " 1x ἀποδεδειγμένον + " 1x ἀποδεδοκιμασμένον + " 1x ἀποδεικνύντα + " 1x ἀποδεκατεύω + " 1x ἀποδεκατοῖν + " 2x ἀποδεκατοῦτε + " 1x ἀποδεξάμενοι + " 1x ἀποδεξάμενος + " 1x ἀποδεχόμεθα + " 1x ἀποδεῖξαι + " 1x ἀποδημῶν + " 1x ἀποδιδοῦν + " 1x ἀποδιδόναι + " 2x ἀποδιδόντες + " 1x ἀποδιδότω + " 1x ἀποδιορίζοντες + " 2x ἀποδοθῆναι + " 3x ἀποδοκιμασθῆναι + " 2x ἀποδοχῆς + " 1x ἀποδούς + " 4x ἀποδοῦναι + " 7x ἀποδώσει + " 1x ἀποδώσεις + " 1x ἀποδώσοντες + " 3x ἀποδώσουσιν + " 3x ἀποδώσω + " 3x ἀποδῷ + " 2x ἀποδῷς + " 1x ἀποθάνωμεν + " 13x ἀποθάνῃ + " 3x ἀποθέμενοι + " 1x ἀποθέσθαι + " 2x ἀποθήκας + " 1x ἀποθήκη + " 3x ἀποθήκην + " 16x ἀποθανεῖν + " 3x ἀποθανεῖσθε + " 1x ἀποθανεῖται + " 1x ἀποθανόντα + " 1x ἀποθανόντες + " 1x ἀποθανόντι + " 1x ἀποθανόντος + " 3x ἀποθανών + " 1x ἀποθησαυρίζοντας + " 1x ἀποθλίβουσιν + " 3x ἀποθνήσκει + " 5x ἀποθνήσκειν + " 2x ἀποθνήσκομεν + " 1x ἀποθνήσκοντες + " 1x ἀποθνήσκουσιν + " 2x ἀποθνήσκωμεν + " 2x ἀποθνῄσκει + " 2x ἀποθνῄσκοντες + " 1x ἀποθνῄσκω + " 2x ἀποθνῄσκων + " 1x ἀποθώμεθα + " 7x ἀποκάλυψιν + " 1x ἀποκαθιστάνει + " 1x ἀποκαθιστάνεις + " 3x ἀποκαλυφθήσεται + " 4x ἀποκαλυφθῆναι + " 2x ἀποκαλυφθῇ + " 1x ἀποκαλυφθῶσιν + " 1x ἀποκαλύπτεσθαι + " 3x ἀποκαλύπτεται + " 3x ἀποκαλύψαι + " 6x ἀποκαλύψει + " 1x ἀποκαλύψεις + " 1x ἀποκαλύψεων + " 3x ἀποκαλύψεως + " 1x ἀποκαραδοκία + " 1x ἀποκαραδοκίαν + " 1x ἀποκατήλλαξεν + " 1x ἀποκαταλλάξαι + " 1x ἀποκαταλλάξῃ + " 1x ἀποκαταστάσεως + " 1x ἀποκαταστήσει + " 1x ἀποκατασταθῶ + " 2x ἀποκειμένην + " 1x ἀποκεκρυμμένην + " 1x ἀποκεκρυμμένον + " 1x ἀποκεκρυμμένου + " 1x ἀποκεκυλισμένον + " 1x ἀποκλείσῃ + " 2x ἀποκρίθητε + " 1x ἀποκρίνεσθαι + " 3x ἀποκρίνεται + " 4x ἀποκρίνῃ + " 1x ἀποκρίσει + " 1x ἀποκρίσεσιν + " 1x ἀποκριθέν + " 7x ἀποκριθέντες + " 1x ἀποκριθήσεται + " 2x ἀποκριθήσονται + " 91x ἀποκριθείς + " 1x ἀποκριθεῖσα + " 1x ἀποκριθῆναι + " 1x ἀποκριθῆτε + " 1x ἀποκριθῇ + " 1x ἀποκριθῶσιν + " 1x ἀποκτέννεσθαι + " 1x ἀποκτέννοντες + " 1x ἀποκτανθείς + " 5x ἀποκτανθῆναι + " 1x ἀποκτανθῶσιν + " 2x ἀποκτείνας + " 1x ἀποκτείνει + " 2x ἀποκτείνουσα + " 4x ἀποκτείνωμεν + " 8x ἀποκτείνωσιν + " 1x ἀποκτεινάντων + " 3x ἀποκτενεῖ + " 1x ἀποκτενεῖτε + " 2x ἀποκτεννόντων + " 6x ἀποκτενοῦσιν + " 1x ἀποκτενῶ + " 16x ἀποκτεῖναι + " 1x ἀποκυλίσει + " 1x ἀποκόψονται + " 1x ἀποκύει + " 1x ἀπολάβητε + " 1x ἀπολάβωμεν + " 1x ἀπολάβωσιν + " 1x ἀπολέλυσαι + " 7x ἀπολέσαι + " 3x ἀπολέσας + " 10x ἀπολέσει + " 1x ἀπολέσητε + " 2x ἀπολέσθαι + " 1x ἀπολέσω + " 4x ἀπολέσωσιν + " 7x ἀπολέσῃ + " 1x ἀπολήμψεσθε + " 1x ἀπολαβόμενος + " 1x ἀπολαμβάνομεν + " 1x ἀπολαμβάνοντες + " 3x ἀπολείπεται + " 2x ἀπολελυμένην + " 1x ἀπολελυμένον + " 2x ἀπολεῖσθε + " 1x ἀπολεῖται + " 1x ἀπολιπόντας + " 1x ἀπολλυμένην + " 4x ἀπολλυμένοις + " 1x ἀπολλυμένου + " 1x ἀπολλύει + " 3x ἀπολλύμεθα + " 1x ἀπολλύμενοι + " 1x ἀπολογήσησθε + " 1x ἀπολογία + " 3x ἀπολογίαν + " 2x ἀπολογίας + " 2x ἀπολογίᾳ + " 2x ἀπολογεῖσθαι + " 1x ἀπολογηθῆναι + " 2x ἀπολογουμένου + " 1x ἀπολογουμένων + " 1x ἀπολογούμεθα + " 1x ἀπολογοῦμαι + " 1x ἀπολομένου + " 4x ἀπολοῦνται + " 1x ἀπολυθέντες + " 1x ἀπολυθήσεσθε + " 1x ἀπολυθῆτε + " 2x ἀπολυτρώσεως + " 3x ἀπολωλός + " 2x ἀπολωλότα + " 2x ἀπολωλώς + " 1x ἀπολύει + " 2x ἀπολύειν + " 1x ἀπολύεις + " 1x ἀπολύετε + " 2x ἀπολύσας + " 1x ἀπολύσασα + " 8x ἀπολύσω + " 5x ἀπολύσῃ + " 1x ἀπολύσῃς + " 6x ἀπολύτρωσιν + " 2x ἀπολύτρωσις + " 2x ἀπολύων + " 11x ἀπολῦσαι + " 1x ἀπομασσόμεθα + " 1x ἀπονέμοντες + " 1x ἀποπλανᾶν + " 1x ἀποπλεύσαντες + " 1x ἀποπλεῖν + " 1x ἀπορίψαντας + " 1x ἀπορίᾳ + " 1x ἀπορεῖσθαι + " 2x ἀπορούμενοι + " 1x ἀπορούμενος + " 1x ἀποροῦμαι + " 1x ἀπορφανισθέντες + " 1x ἀποσκίασμα + " 1x ἀποσπασθέντας + " 1x ἀποσπᾶν + " 1x ἀποστάντα + " 1x ἀποστάς + " 1x ἀποστάσιον + " 4x ἀποστέλλει + " 1x ἀποστέλλειν + " 2x ἀποστέλλουσιν + " 7x ἀποστέλλω + " 1x ἀποστέλλῃ + " 1x ἀποστήσονται + " 1x ἀποσταλέντι + " 1x ἀποσταλῶσιν + " 1x ἀποστασία + " 1x ἀποστασίαν + " 2x ἀποστασίου + " 4x ἀποστείλαντα + " 1x ἀποστείλαντας + " 1x ἀποστείλαντες + " 7x ἀποστείλας + " 1x ἀποστείλω + " 2x ἀποστείλῃ + " 4x ἀποστελεῖ + " 1x ἀποστελλόμενα + " 1x ἀποστερήσῃς + " 1x ἀποστερεῖσθε + " 2x ἀποστερεῖτε + " 1x ἀποστεῖλαι + " 2x ἀποστολήν + " 2x ἀποστολῆς + " 1x ἀποστοματίζειν + " 1x ἀποστρέφειν + " 1x ἀποστρέφοντα + " 1x ἀποστρέψει + " 1x ἀποστρέψουσιν + " 1x ἀποστραφῇς + " 1x ἀποστρεφομένων + " 1x ἀποστρεφόμενοι + " 1x ἀποστυγοῦντες + " 6x ἀποστόλοις + " 1x ἀποστόλου + " 14x ἀποστόλους + " 22x ἀποστόλων + " 1x ἀποστῆναι + " 1x ἀποστῇ + " 1x ἀποσυνάγωγοι + " 1x ἀποσυνάγωγος + " 1x ἀποσυναγώγους + " 1x ἀποτάξασθαι + " 1x ἀποτάσσεται + " 1x ἀποτίσω + " 4x ἀποταξάμενος + " 1x ἀποτελεσθεῖσα + " 1x ἀποτελῶ + " 1x ἀποτινάξας + " 1x ἀποτινάσσετε + " 1x ἀποτολμᾷ + " 1x ἀποτομία + " 1x ἀποτομίαν + " 1x ἀποτρέπου + " 2x ἀποτόμως + " 1x ἀπουσίᾳ + " 1x ἀποφέρεσθαι + " 1x ἀποφεύγοντας + " 1x ἀποφθέγγεσθαι + " 1x ἀποφθέγγομαι + " 1x ἀποφορτιζόμενον + " 2x ἀποφυγόντες + " 1x ἀποχρήσει + " 1x ἀποχωρήσας + " 1x ἀποχωρεῖ + " 1x ἀποχωρεῖτε + " 1x ἀποχωρισθῆναι + " 1x ἀποψυχόντων + " 1x ἀπροσωπολήμπτως + " 1x ἀπρόσιτον + " 2x ἀπρόσκοποι + " 1x ἀπρόσκοπον + " 1x ἀπταίστους + " 1x ἀπωθεῖσθε + " 5x ἀπωλείας + " 1x ἀπωσάμενοι + " 470x ἀπό + " 1x ἀπόβλητον + " 2x ἀπόδεκτον + " 1x ἀπόδημος + " 2x ἀπόδος + " 4x ἀπόδοτε + " 1x ἀπόθεσθε + " 2x ἀπόθεσις + " 2x ἀπόκειται + " 2x ἀπόκοψον + " 1x ἀπόκριμα + " 2x ἀπόκρισιν + " 1x ἀπόκρυφοι + " 2x ἀπόκρυφον + " 2x ἀπόλαυσιν + " 7x ἀπόληται + " 1x ἀπόλλυε + " 1x ἀπόλλυμαι + " 1x ἀπόλλυνται + " 2x ἀπόλλυται + " 1x ἀπόλουσαι + " 3x ἀπόλυσον + " 1x ἀπόλωνται + " 1x ἀπόντες + " 1x ἀπόστειλον + " 2x ἀπόστητε + " 16x ἀπόστολοι + " 1x ἀπόστολον + " 18x ἀπόστολος + " 4x ἀπώλεια + " 9x ἀπώλειαν + " 2x ἀπώλεσα + " 4x ἀπώλεσεν + " 5x ἀπώλετο + " 1x ἀπώλλυντο + " 3x ἀπώλοντο + " 5x ἀπών + " 1x ἀπώσαντο + " 3x ἀπώσατο + " 1x ἀπῄεσαν + " 1x ἀπῆλθα + " 4x ἀπῆλθαν + " 39x ἀπῆλθεν + " 16x ἀπῆλθον + " 125x ἀπ’ + " 4x ἀράτω + " 1x ἀρέσαι + " 3x ἀρέσκειν + " 1x ἀρέσκοντες + " 1x ἀρέσκω + " 4x ἀρέσῃ + " 1x ἀρίστου + " 1x ἀργή + " 3x ἀργαί + " 1x ἀργεῖ + " 1x ἀργοί + " 2x ἀργούς + " 3x ἀργυρίου + " 1x ἀργυρίῳ + " 1x ἀργυροκόπος + " 1x ἀργυροῦς + " 2x ἀργυρᾶ + " 1x ἀργόν + " 8x ἀργύρια + " 8x ἀργύριον + " 1x ἀργύρου + " 1x ἀργύρῳ + " 1x ἀρεσκέτω + " 1x ἀρεσκείαν + " 1x ἀρεσκόντων + " 2x ἀρεστά + " 2x ἀρεστόν + " 1x ἀρετάς + " 1x ἀρετή + " 1x ἀρετήν + " 2x ἀρετῇ + " 6x ἀρθήσεται + " 1x ἀρθήτω + " 1x ἀρθῇ + " 1x ἀρθῶσιν + " 2x ἀριθμοῦ + " 5x ἀριθμόν + " 10x ἀριθμός + " 1x ἀριθμῆσαι + " 1x ἀριθμῷ + " 1x ἀριστήσατε + " 1x ἀριστήσῃ + " 1x ἀριστερά + " 3x ἀριστερῶν + " 1x ἀρκέσῃ + " 1x ἀρκεσθησόμεθα + " 2x ἀρκετόν + " 1x ἀρκετός + " 1x ἀρκεῖ + " 1x ἀρκεῖσθε + " 1x ἀρκούμενοι + " 1x ἀρκούμενος + " 1x ἀρκοῦσιν + " 1x ἀρνήσασθαι + " 1x ἀρνήσεται + " 1x ἀρνήσηται + " 1x ἀρνήσομαι + " 1x ἀρνήσῃ + " 1x ἀρνία + " 1x ἀρνίου + " 1x ἀρνίῳ + " 1x ἀρνεῖσθαι + " 1x ἀρνησάμενοι + " 1x ἀρνησάμενος + " 1x ἀρνησάσθω + " 1x ἀρνησόμεθα + " 1x ἀρνουμένων + " 2x ἀρνούμενοι + " 3x ἀρνούμενος + " 1x ἀρνοῦνται + " 2x ἀρξάμενοι + " 8x ἀρξάμενος + " 1x ἀρξαμένου + " 1x ἀροτριᾶν + " 1x ἀροτριῶν + " 1x ἀροτριῶντα + " 4x ἀροῦσιν + " 1x ἀρραβών + " 2x ἀρραβῶνα + " 1x ἀρρώστοις + " 3x ἀρρώστους + " 1x ἀρσενοκοίταις + " 1x ἀρσενοκοῖται + " 1x ἀρτέμωνα + " 1x ἀρτιγέννητα + " 1x ἀρτυθήσεται + " 1x ἀρτύσετε + " 1x ἀρχάγγελος + " 4x ἀρχάς + " 6x ἀρχή + " 7x ἀρχήν + " 2x ἀρχαί + " 2x ἀρχαίοις + " 1x ἀρχαίου + " 4x ἀρχαίων + " 1x ἀρχαίῳ + " 1x ἀρχαγγέλου + " 1x ἀρχαῖα + " 2x ἀρχαῖος + " 4x ἀρχαῖς + " 2x ἀρχηγόν + " 8x ἀρχιερέα + " 10x ἀρχιερέων + " 16x ἀρχιερέως + " 1x ἀρχιερατικοῦ + " 28x ἀρχιερεύς + " 3x ἀρχιερεῖ + " 50x ἀρχιερεῖς + " 6x ἀρχιερεῦσιν + " 1x ἀρχισυνάγωγοι + " 1x ἀρχισυνάγωγον + " 2x ἀρχισυνάγωγος + " 3x ἀρχισυναγώγου + " 1x ἀρχισυναγώγων + " 1x ἀρχισυναγώγῳ + " 1x ἀρχιτέκτων + " 1x ἀρχιτελώνης + " 2x ἀρχιτρίκλινος + " 1x ἀρχιτρικλίνῳ + " 1x ἀρχομένων + " 1x ἀρχόμενος + " 5x ἀρχόντων + " 27x ἀρχῆς + " 5x ἀρχῇ + " 1x ἀρωμάτων + " 3x ἀρώματα + " 1x ἀρᾶς + " 1x ἀρῶ + " 1x ἀσάλευτον + " 1x ἀσάλευτος + " 2x ἀσέβειαν + " 2x ἀσέλγεια + " 1x ἀσέλγειαν + " 1x ἀσήμου + " 2x ἀσβέστῳ + " 1x ἀσεβέσι + " 1x ἀσεβής + " 3x ἀσεβείας + " 1x ἀσεβειῶν + " 1x ἀσεβεῖν + " 3x ἀσεβεῖς + " 1x ἀσεβῆ + " 3x ἀσεβῶν + " 4x ἀσελγείαις + " 3x ἀσελγείᾳ + " 1x ἀσθένεια + " 4x ἀσθένειαν + " 2x ἀσθενές + " 2x ἀσθενέσιν + " 1x ἀσθενέστερα + " 1x ἀσθενήματα + " 6x ἀσθενής + " 1x ἀσθενήσας + " 1x ἀσθενήσασαν + " 4x ἀσθενείαις + " 8x ἀσθενείας + " 5x ἀσθενείᾳ + " 2x ἀσθενειῶν + " 1x ἀσθενεστέρῳ + " 5x ἀσθενεῖ + " 6x ἀσθενεῖς + " 3x ἀσθενούντων + " 1x ἀσθενοῦμεν + " 3x ἀσθενοῦντα + " 4x ἀσθενοῦντας + " 2x ἀσθενοῦς + " 1x ἀσθενοῦσαν + " 3x ἀσθενῆ + " 2x ἀσθενῶ + " 1x ἀσθενῶμεν + " 6x ἀσθενῶν + " 1x ἀσιτίας + " 4x ἀσκοί + " 8x ἀσκούς + " 1x ἀσκῶ + " 1x ἀσμένως + " 1x ἀσπάζεσθαι + " 5x ἀσπάζεται + " 1x ἀσπάζομαι + " 5x ἀσπάζονται + " 1x ἀσπάζου + " 17x ἀσπάσασθε + " 2x ἀσπάσησθε + " 1x ἀσπίδων + " 1x ἀσπίλου + " 3x ἀσπασάμενοι + " 3x ἀσπασάμενος + " 4x ἀσπασμούς + " 1x ἀσπασμοῦ + " 1x ἀσπασμόν + " 4x ἀσπασμός + " 1x ἀσσαρίου + " 1x ἀσσαρίων + " 4x ἀστέρα + " 3x ἀστέρας + " 5x ἀστέρες + " 3x ἀστέρος + " 5x ἀστέρων + " 4x ἀστήρ + " 1x ἀστήρικτοι + " 1x ἀστατοῦμεν + " 1x ἀστεῖον + " 1x ἀστεῖος + " 1x ἀστηρίκτους + " 1x ἀστοχήσαντες + " 1x ἀστράπτουσα + " 3x ἀστραπή + " 1x ἀστραπήν + " 4x ἀστραπαί + " 1x ἀστραπτούσῃ + " 1x ἀστραπῇ + " 1x ἀστόργους + " 1x ἀσυνέτους + " 1x ἀσυνέτῳ + " 1x ἀσυνθέτους + " 1x ἀσφάλεια + " 1x ἀσφάλειαν + " 4x ἀσφαλές + " 1x ἀσφαλίσασθε + " 1x ἀσφαλείᾳ + " 1x ἀσφαλισθῆναι + " 1x ἀσφαλῆ + " 3x ἀσφαλῶς + " 1x ἀσχήμονα + " 1x ἀσχημονεῖ + " 1x ἀσχημονεῖν + " 2x ἀσχημοσύνην + " 1x ἀσωτία + " 2x ἀσωτίας + " 1x ἀσύμφωνοι + " 2x ἀσύνετοι + " 1x ἀσύνετος + " 1x ἀσώτως + " 1x ἀτάκτους + " 2x ἀτάκτως + " 1x ἀτενίζετε + " 2x ἀτενίζοντες + " 2x ἀτενίσαι + " 1x ἀτενίσαντες + " 7x ἀτενίσας + " 1x ἀτενίσασα + " 1x ἀτιμάζεις + " 1x ἀτιμάζεσθαι + " 1x ἀτιμάζετε + " 1x ἀτιμάσαντες + " 1x ἀτιμία + " 3x ἀτιμίαν + " 2x ἀτιμίας + " 1x ἀτιμίᾳ + " 1x ἀτιμασθῆναι + " 1x ἀτιμότερα + " 1x ἀτμίδα + " 1x ἀτμίς + " 1x ἀτόμῳ + " 1x ἀτόπων + " 1x ἀφέθησαν + " 1x ἀφέλωμαι + " 1x ἀφέλῃ + " 15x ἀφέντες + " 2x ἀφέσει + " 4x ἀφέωνται + " 3x ἀφήκαμεν + " 1x ἀφήκατε + " 3x ἀφήσει + " 1x ἀφήσεις + " 1x ἀφήσουσιν + " 2x ἀφήσω + " 1x ἀφίδω + " 2x ἀφίενται + " 5x ἀφίεται + " 3x ἀφίετε + " 2x ἀφίημι + " 4x ἀφίησιν + " 1x ἀφίκετο + " 1x ἀφίομεν + " 1x ἀφίουσιν + " 1x ἀφίστανται + " 1x ἀφίστατο + " 1x ἀφαιρεθήσεται + " 1x ἀφαιρεῖν + " 1x ἀφαιρεῖται + " 1x ἀφανής + " 2x ἀφανίζει + " 1x ἀφανίζουσιν + " 1x ἀφανίσθητε + " 1x ἀφανιζομένη + " 1x ἀφανισμοῦ + " 5x ἀφείς + " 2x ἀφεδρῶνα + " 12x ἀφεθήσεται + " 3x ἀφεθῇ + " 1x ἀφειδίᾳ + " 1x ἀφελεῖ + " 1x ἀφελεῖν + " 1x ἀφελότητι + " 3x ἀφεῖλεν + " 2x ἀφεῖναι + " 1x ἀφεῖς + " 2x ἀφθάρτου + " 2x ἀφθάρτῳ + " 5x ἀφθαρσίαν + " 2x ἀφθαρσίᾳ + " 1x ἀφθορίαν + " 5x ἀφιέναι + " 2x ἀφιέτω + " 1x ἀφιλάγαθοι + " 1x ἀφιλάργυρον + " 1x ἀφορίζει + " 1x ἀφορίσας + " 1x ἀφορίσει + " 1x ἀφορίσθητε + " 1x ἀφορίσωσιν + " 1x ἀφοριοῦσιν + " 7x ἀφορμήν + " 1x ἀφορῶντες + " 1x ἀφρίζει + " 1x ἀφρίζων + " 1x ἀφροσύνη + " 1x ἀφροσύνης + " 2x ἀφροσύνῃ + " 1x ἀφροῦ + " 3x ἀφρόνων + " 1x ἀφυστερημένος + " 1x ἀφωμοιωμένος + " 1x ἀφωρισμένος + " 4x ἀφόβως + " 1x ἀφύπνωσεν + " 1x ἀφώριζεν + " 1x ἀφώρισεν + " 1x ἀφῆκα + " 2x ἀφῆκαν + " 20x ἀφῆκεν + " 1x ἀφῆκες + " 5x ἀφῆτε + " 3x ἀφῇ + " 1x ἀφῶμεν + " 42x ἀφ’ + " 1x ἀχάριστοι + " 1x ἀχαρίστους + " 2x ἀχειροποίητον + " 1x ἀχειροποιήτῳ + " 1x ἀχθήσεσθε + " 4x ἀχθῆναι + " 1x ἀχλύς + " 1x ἀχρεῖοι + " 1x ἀχρεῖον + " 1x ἀψευδής + " 1x ἀϊδίοις + " 2x ἀόρατα + " 1x ἀόρατον + " 6x ἁγία + " 3x ἁγίαις + " 6x ἁγίαν + " 3x ἁγίας + " 1x ἁγίασον + " 19x ἁγίοις + " 3x ἁγίου + " 12x ἁγίους + " 38x ἁγίων + " 1x ἁγίᾳ + " 6x ἁγίῳ + " 1x ἁγιάζει + " 1x ἁγιάζεται + " 1x ἁγιάζον + " 1x ἁγιάζω + " 1x ἁγιάζων + " 1x ἁγιάσαι + " 1x ἁγιάσας + " 1x ἁγιάσατε + " 2x ἁγιάσῃ + " 1x ἁγιαζομένους + " 1x ἁγιαζόμενοι + " 2x ἁγιασθήτω + " 3x ἁγιασμόν + " 2x ἁγιασμός + " 5x ἁγιασμῷ + " 1x ἁγιωσύνην + " 1x ἁγιωσύνης + " 1x ἁγιωσύνῃ + " 1x ἁγιωτάτῃ + " 1x ἁγιότητι + " 1x ἁγιότητος + " 1x ἁγνά + " 1x ἁγνάς + " 1x ἁγνή + " 2x ἁγνήν + " 1x ἁγνίζει + " 1x ἁγνίσατε + " 1x ἁγνίσθητι + " 1x ἁγνίσωσιν + " 2x ἁγνείᾳ + " 1x ἁγνισθείς + " 1x ἁγνισμοῦ + " 1x ἁγνούς + " 1x ἁγνόν + " 1x ἁγνός + " 1x ἁγνότητι + " 1x ἁγνότητος + " 1x ἁγνῶς + " 1x ἁδρότητι + " 5x ἁλεεῖς + " 1x ἁλιεύειν + " 2x ἁλισθήσεται + " 1x ἁλλομένου + " 1x ἁλλόμενος + " 1x ἁλυκόν + " 2x ἁλύσει + " 2x ἁλύσεις + " 1x ἁλύσεσι + " 3x ἁλύσεσιν + " 2x ἁμάρτανε + " 1x ἁμάρτημα + " 1x ἁμάρτητε + " 2x ἁμάρτῃ + " 6x ἁμαρτάνει + " 1x ἁμαρτάνειν + " 3x ἁμαρτάνετε + " 1x ἁμαρτάνοντα + " 1x ἁμαρτάνοντας + " 2x ἁμαρτάνοντες + " 1x ἁμαρτάνουσιν + " 1x ἁμαρτάνων + " 1x ἁμαρτήματα + " 1x ἁμαρτήματος + " 1x ἁμαρτήσαντας + " 1x ἁμαρτήσαντος + " 1x ἁμαρτήσασιν + " 1x ἁμαρτήσει + " 1x ἁμαρτήσωμεν + " 2x ἁμαρτήσῃ + " 28x ἁμαρτία + " 12x ἁμαρτίαι + " 9x ἁμαρτίαις + " 27x ἁμαρτίαν + " 58x ἁμαρτίας + " 7x ἁμαρτίᾳ + " 1x ἁμαρτανόντων + " 1x ἁμαρτημάτων + " 1x ἁμαρτησάντων + " 32x ἁμαρτιῶν + " 12x ἁμαρτωλοί + " 5x ἁμαρτωλούς + " 2x ἁμαρτωλοῖς + " 1x ἁμαρτωλόν + " 9x ἁμαρτωλός + " 13x ἁμαρτωλῶν + " 5x ἁμαρτωλῷ + " 1x ἁπάντων + " 2x ἁπαλός + " 2x ἁπλοῦς + " 1x ἁπλότητα + " 4x ἁπλότητι + " 2x ἁπλότητος + " 1x ἁπλῶς + " 1x ἁρμάτων + " 1x ἁρμῶν + " 2x ἁρπάζει + " 2x ἁρπάζειν + " 1x ἁρπάζοντες + " 1x ἁρπάζουσιν + " 2x ἁρπάσαι + " 1x ἁρπάσει + " 1x ἁρπαγέντα + " 1x ἁρπαγήν + " 1x ἁρπαγησόμεθα + " 1x ἁρπαγμόν + " 2x ἁρπαγῆς + " 1x ἁφῆς + " 1x ἁφῶν + " 3x ἁψάμενος + " 3x ἄβυσσον + " 3x ἄγαμος + " 23x ἄγγελοι + " 22x ἄγγελον + " 45x ἄγγελος + " 1x ἄγγη + " 1x ἄγε + " 2x ἄγει + " 1x ἄγειν + " 1x ἄγεσθαι + " 1x ἄγεσθε + " 1x ἄγκιστρον + " 1x ἄγκυραν + " 2x ἄγνοιαν + " 2x ἄγονται + " 1x ἄγοντες + " 1x ἄγουσι + " 1x ἄγραν + " 1x ἄγρια + " 2x ἄγριον + " 1x ἄγρᾳ + " 1x ἄγω + " 4x ἄγωμεν + " 1x ἄγωσιν + " 1x ἄδηλα + " 1x ἄδηλον + " 2x ἄδικοι + " 4x ἄδικος + " 1x ἄδολον + " 1x ἄζυμα + " 1x ἄζυμοι + " 1x ἄθεοι + " 1x ἄθλησιν + " 1x ἄκακος + " 3x ἄκανθαι + " 1x ἄκαρπα + " 1x ἄκαρποι + " 3x ἄκαρπος + " 2x ἄκρον + " 2x ἄκρου + " 2x ἄκρων + " 1x ἄκων + " 2x ἄλαλον + " 1x ἄλειψαι + " 15x ἄλλα + " 1x ἄλλαι + " 1x ἄλλας + " 12x ἄλλη + " 5x ἄλλην + " 3x ἄλλης + " 12x ἄλλο + " 27x ἄλλοι + " 6x ἄλλοις + " 17x ἄλλον + " 25x ἄλλος + " 1x ἄλλου + " 9x ἄλλους + " 3x ἄλλων + " 1x ἄλλως + " 10x ἄλλῳ + " 2x ἄλογα + " 1x ἄλογον + " 1x ἄμαχον + " 2x ἄμεμπτοι + " 2x ἄμεμπτος + " 2x ἄμετρα + " 2x ἄμμον + " 3x ἄμμος + " 1x ἄμπελον + " 3x ἄμπελος + " 1x ἄμωμα + " 1x ἄμωμοι + " 2x ἄμωμον + " 1x ἄμωμος + " 164x ἄν + " 1x ἄναλον + " 30x ἄνδρα + " 21x ἄνδρας + " 40x ἄνδρες + " 3x ἄνεμοι + " 1x ἄνεμον + " 8x ἄνεμος + " 1x ἄνερ + " 4x ἄνεσιν + " 1x ἄνεσις + " 3x ἄνευ + " 1x ἄνηθον + " 4x ἄνθος + " 1x ἄνθρακας + " 5x ἄνθρωπε + " 26x ἄνθρωποι + " 61x ἄνθρωπον + " 117x ἄνθρωπος + " 1x ἄνοια + " 2x ἄνοιξον + " 3x ἄνομος + " 1x ἄντικρυς + " 1x ἄντλημα + " 2x ἄνυδροι + " 9x ἄνω + " 13x ἄνωθεν + " 1x ἄξει + " 4x ἄξια + " 4x ἄξιοι + " 8x ἄξιον + " 16x ἄξιος + " 1x ἄξων + " 1x ἄπαγε + " 1x ἄπειμι + " 1x ἄπειρος + " 1x ἄπιστοι + " 3x ἄπιστον + " 8x ἄπιστος + " 42x ἄρα + " 1x ἄραγε + " 2x ἄραντες + " 5x ἄρας + " 2x ἄρατε + " 1x ἄραφος + " 1x ἄργυρον + " 1x ἄργυρος + " 2x ἄριστον + " 1x ἄρκου + " 1x ἄρνας + " 2x ἄρξασθαι + " 1x ἄρξεσθε + " 2x ἄρξησθε + " 2x ἄρξηται + " 1x ἄρξονται + " 1x ἄρξωνται + " 1x ἄρξῃ + " 1x ἄροτρον + " 1x ἄρρητα + " 1x ἄρρωστοι + " 5x ἄρσεν + " 1x ἄρσενα + " 2x ἄρσενες + " 1x ἄρσεσιν + " 31x ἄρτι + " 1x ἄρτιος + " 4x ἄρτοι + " 1x ἄρτοις + " 37x ἄρτον + " 10x ἄρτος + " 5x ἄρτου + " 29x ἄρτους + " 7x ἄρτων + " 2x ἄρτῳ + " 2x ἄρχειν + " 5x ἄρχοντα + " 3x ἄρχοντας + " 8x ἄρχοντες + " 4x ἄρχοντι + " 1x ἄρχοντος + " 1x ἄρχουσιν + " 8x ἄρχων + " 5x ἄρῃ + " 1x ἄρῃς + " 1x ἄσβεστον + " 1x ἄσιτοι + " 1x ἄσοφοι + " 1x ἄσπασαι + " 1x ἄσπιλοι + " 2x ἄσπιλον + " 1x ἄσπονδοι + " 1x ἄστοργοι + " 1x ἄστρα + " 1x ἄστροις + " 1x ἄστρον + " 1x ἄστρων + " 2x ἄτεκνος + " 2x ἄτερ + " 1x ἄτιμοι + " 2x ἄτιμος + " 3x ἄτοπον + " 1x ἄφαντος + " 9x ἄφες + " 12x ἄφεσιν + " 3x ἄφεσις + " 5x ἄφετε + " 1x ἄφθαρτοι + " 3x ἄφθαρτον + " 1x ἄφιξιν + " 3x ἄφνω + " 2x ἄφρονα + " 2x ἄφρονες + " 3x ἄφρων + " 1x ἄφωνα + " 2x ἄφωνον + " 1x ἄφωνος + " 1x ἄχρηστον + " 46x ἄχρι + " 2x ἄχρις + " 2x ἄχυρον + " 1x ἄψινθον + " 1x ἄψυχα + " 113x ἅ + " 5x ἅγια + " 1x ἅγιαι + " 1x ἅγιε + " 7x ἅγιοι + " 14x ἅγιον + " 9x ἅγιος + " 1x ἅλα + " 6x ἅλας + " 1x ἅλατι + " 3x ἅλυσιν + " 2x ἅλωνα + " 1x ἅλωσιν + " 10x ἅμα + " 4x ἅπαν + " 9x ἅπαντα + " 4x ἅπαντας + " 10x ἅπαντες + " 14x ἅπαξ + " 2x ἅπας + " 2x ἅπασαν + " 1x ἅπτει + " 2x ἅπτεσθαι + " 1x ἅπτεσθε + " 2x ἅπτεται + " 1x ἅπτηται + " 1x ἅπτου + " 1x ἅρμα + " 1x ἅρματι + " 1x ἅρματος + " 3x ἅρπαγες + " 1x ἅρπαξ + " 1x ἅρπαξιν + " 2x ἅς + " 5x ἅτινα + " 1x ἅψαντες + " 2x ἅψας + " 2x ἅψηται + " 2x ἅψωμαι + " 3x ἅψωνται + " 1x ἅψῃ + " 2x ἆρα + " 6x ἆραι + " 7x ἆρον + " 1x ἆσσον + " 5x Ἀαρών + " 1x Ἀβαδδών + " 3x Ἀββᾶ + " 3x Ἀβιά + " 1x Ἀβιαθάρ + " 1x Ἀβιληνῆς + " 2x Ἀβιούδ + " 73x Ἀβραάμ + " 1x Ἀγαθός + " 9x Ἀγαπήσεις + " 3x Ἀγαπητέ + " 9x Ἀγαπητοί + " 1x Ἀγαπᾶτε + " 1x Ἀγαπῶ + " 6x Ἀγρίππα + " 5x Ἀγρίππας + " 1x Ἀγρόν + " 1x Ἀγρός + " 1x Ἀγωνίζεσθε + " 1x Ἀγόρασον + " 9x Ἀδάμ + " 1x Ἀδδεί + " 1x Ἀδελφέ + " 7x Ἀδελφοί + " 1x Ἀδμείν + " 1x Ἀδρίᾳ + " 1x Ἀδραμυττηνῷ + " 1x Ἀδύνατον + " 1x Ἀεί + " 2x Ἀζώρ + " 2x Ἀθήναις + " 2x Ἀθηναῖοι + " 2x Ἀθηνῶν + " 1x Ἀθῷος + " 1x Ἀκελδαμάχ + " 1x Ἀκηκόαμεν + " 1x Ἀκμήν + " 2x Ἀκολουθήσω + " 7x Ἀκολούθει + " 1x Ἀκουσόμεθα + " 1x Ἀκουόντων + " 1x Ἀκούεις + " 2x Ἀκούετε + " 1x Ἀκούοντες + " 1x Ἀκούοντος + " 3x Ἀκούσαντες + " 4x Ἀκούσας + " 3x Ἀκούσατε + " 2x Ἀκοῇ + " 3x Ἀκύλαν + " 3x Ἀκύλας + " 1x Ἀλέξανδρον + " 4x Ἀλέξανδρος + " 1x Ἀλήθειαν + " 1x Ἀλεξάνδρου + " 1x Ἀλεξανδρέων + " 1x Ἀλεξανδρεύς + " 1x Ἀλεξανδρινῷ + " 1x Ἀλεξανδρῖνον + " 1x Ἀληθινός + " 6x Ἀληθῶς + " 7x Ἀλλά + " 1x Ἀλλήλων + " 4x Ἀλλ’ + " 3x Ἀλφαίου + " 40x Ἀμήν + " 3x Ἀμιναδάβ + " 2x Ἀμνός + " 1x Ἀμπλιᾶτον + " 1x Ἀμφίπολιν + " 3x Ἀμώς + " 1x Ἀνάβα + " 1x Ἀνάβατε + " 1x Ἀνάβλεψον + " 1x Ἀνάγκη + " 1x Ἀνάστα + " 3x Ἀνάστηθι + " 2x Ἀνέβη + " 1x Ἀνένδεκτον + " 1x Ἀνέστη + " 4x Ἀνήρ + " 1x Ἀναβάς + " 1x Ἀναβαίνω + " 1x Ἀναβλέψας + " 1x Ἀναθέματι + " 1x Ἀναμιμνῄσκεσθε + " 2x Ἀνανία + " 1x Ἀνανίαν + " 8x Ἀνανίας + " 1x Ἀνασείει + " 9x Ἀναστάς + " 1x Ἀναστήσεται + " 1x Ἀναστᾶσα + " 2x Ἀναχθέντες + " 1x Ἀναχωρεῖτε + " 1x Ἀναχωρησάντων + " 4x Ἀνδρέαν + " 6x Ἀνδρέας + " 2x Ἀνδρέου + " 1x Ἀνδρέᾳ + " 1x Ἀνδρόνικον + " 1x Ἀνεβάλετο + " 1x Ἀνθρώπου + " 1x Ἀνοίξας + " 1x Ἀνοίξω + " 1x Ἀντιοχέα + " 3x Ἀντιοχείας + " 4x Ἀντιοχείᾳ + " 1x Ἀντιπατρίδα + " 1x Ἀντιπᾶς + " 11x Ἀντιόχειαν + " 1x Ἀντλήσατε + " 1x Ἀπέσταλκαν + " 1x Ἀπαγγείλατε + " 1x Ἀπαγγελῶ + " 1x Ἀπεκρίθη + " 1x Ἀπεκρίθησαν + " 1x Ἀπεκρίνατο + " 1x Ἀπελθόντες + " 1x Ἀπελθόντων + " 1x Ἀπελλῆν + " 2x Ἀπεσταλμένος + " 1x Ἀποθέμενοι + " 1x Ἀποκάλυψις + " 1x Ἀποκαλύπτεται + " 3x Ἀποκριθείς + " 1x Ἀπολελύσθαι + " 1x Ἀπολλωνίαν + " 1x Ἀπολλύων + " 4x Ἀπολλῶ + " 2x Ἀπολλῶν + " 4x Ἀπολλῶς + " 1x Ἀπολυθέντες + " 1x Ἀπολῶ + " 1x Ἀποστήτω + " 1x Ἀποστελῶ + " 1x Ἀππίου + " 1x Ἀπφίᾳ + " 9x Ἀπό + " 1x Ἀπόδος + " 1x Ἀπόδοτε + " 3x Ἀπόλυσον + " 1x Ἀπόστειλον + " 1x Ἀπόστολον + " 1x Ἀπόστρεψον + " 1x Ἀπῆλθεν + " 2x Ἀράμ + " 1x Ἀρέτα + " 1x Ἀρίσταρχον + " 3x Ἀρίσταρχος + " 1x Ἀραβίαν + " 1x Ἀραβίᾳ + " 1x Ἀργύριον + " 1x Ἀρείου + " 1x Ἀρεοπαγείτης + " 3x Ἀριμαθαίας + " 1x Ἀριστάρχου + " 1x Ἀριστοβούλου + " 1x Ἀρκεῖ + " 8x Ἀρνίον + " 15x Ἀρνίου + " 4x Ἀρνίῳ + " 1x Ἀρνεί + " 3x Ἀρτέμιδος + " 1x Ἀρτεμᾶν + " 1x Ἀρφαξάδ + " 1x Ἀρχέλαος + " 1x Ἀρχή + " 2x Ἀρχίππῳ + " 2x Ἀρχηγόν + " 1x Ἀρχιερέα + " 1x Ἀρχιποίμενος + " 1x Ἀρχόμεθα + " 2x Ἀσάφ + " 2x Ἀσήρ + " 1x Ἀσία + " 5x Ἀσίαν + " 7x Ἀσίας + " 5x Ἀσίᾳ + " 1x Ἀσιανοί + " 1x Ἀσιαρχῶν + " 6x Ἀσπάζεται + " 4x Ἀσπάζονται + " 7x Ἀσπάσασθε + " 1x Ἀσύνκριτον + " 1x Ἀτταλίαν + " 2x Ἀφέωνται + " 2x Ἀφίενται + " 1x Ἀφιλάργυρος + " 1x Ἀφορίσατε + " 1x Ἀφ’ + " 2x Ἀχαΐα + " 2x Ἀχαΐαν + " 3x Ἀχαΐας + " 3x Ἀχαΐᾳ + " 1x Ἀχαϊκοῦ + " 2x Ἀχείμ + " 40x Ἁγίου + " 20x Ἁγίῳ + " 1x Ἁγιασθήτω + " 4x Ἁλληλουϊά + " 2x Ἁλφαίου + " 1x Ἁριμαθαίας + " 1x Ἁρμαγεδών + " 3x Ἄβελ + " 1x Ἄγαβος + " 2x Ἄγαρ + " 3x Ἄγγελος + " 2x Ἄγε + " 2x Ἄγουσιν + " 3x Ἄγωμεν + " 1x Ἄζωτον + " 1x Ἄκουε + " 4x Ἄλλην + " 3x Ἄλλους + " 3x Ἄλφα + " 1x Ἄνδρα + " 23x Ἄνδρες + " 4x Ἄνθρωπε + " 1x Ἄνθρωποι + " 7x Ἄνθρωπος + " 2x Ἄννα + " 2x Ἄννας + " 4x Ἄξιος + " 5x Ἄρα + " 1x Ἄραβες + " 1x Ἄραγε + " 3x Ἄρατε + " 1x Ἄρειον + " 2x Ἄρθητι + " 2x Ἄρτεμις + " 4x Ἄρτι + " 1x Ἄρτον + " 1x Ἄρτους + " 1x Ἄρχοντα + " 1x Ἄρχοντες + " 1x Ἄσπασαι + " 6x Ἄφες + " 5x Ἄφετε + " 1x Ἄφρων + " 2x Ἄχαζ + " 1x Ἄχρι + " 1x Ἄψινθος + " 3x Ἅ + " 1x Ἅβελ + " 1x Ἅγαβος + " 2x Ἅγια + " 1x Ἅγιοι + " 32x Ἅγιον + " 4x Ἅγιος + " 2x Ἅιδην + " 3x Ἅιδης + " 4x Ἅιδου + " 1x Ἅιδῃ + " 1x Ἅνναν + " 1x Ἆρα + " 3x Ἆρον + " 2x Ἆσσον + " 303x ἐάν + " 2x ἐάνπερ + " 1x ἐάσαντες + " 1x ἐάσει + " 1x ἐβάθυνεν + " 2x ἐβάπτιζεν + " 4x ἐβάπτισα + " 4x ἐβάπτισεν + " 1x ἐβάσκανεν + " 1x ἐβάσταζεν + " 2x ἐβάστασας + " 1x ἐβάστασεν + " 1x ἐβέβλητο + " 5x ἐβαπτίζοντο + " 1x ἐβαπτίσαντο + " 5x ἐβαπτίσθη + " 3x ἐβαπτίσθημεν + " 2x ἐβαπτίσθησαν + " 4x ἐβαπτίσθητε + " 1x ἐβαρήθημεν + " 1x ἐβασάνιζεν + " 1x ἐβασάνισαν + " 1x ἐβασίλευσαν + " 1x ἐβασίλευσας + " 4x ἐβασίλευσεν + " 2x ἐβασιλεύσατε + " 1x ἐβαστάζετο + " 1x ἐβδελυγμένοις + " 2x ἐβεβαιώθη + " 2x ἐβλάστησεν + " 9x ἐβλήθη + " 3x ἐβλήθησαν + " 1x ἐβλασφήμει + " 3x ἐβλασφήμησαν + " 2x ἐβλασφήμουν + " 1x ἐβοήθησα + " 1x ἐβοήθησεν + " 1x ἐβουλήθη + " 1x ἐβουλήθην + " 1x ἐβουλεύοντο + " 2x ἐβουλεύσαντο + " 2x ἐβουλόμην + " 1x ἐβούλετο + " 2x ἐβούλοντο + " 3x ἐβόησεν + " 1x ἐγάμησεν + " 1x ἐγάμουν + " 2x ἐγέμισαν + " 1x ἐγέμισεν + " 4x ἐγένεσθε + " 168x ἐγένετο + " 2x ἐγέννησα + " 1x ἐγέννησαν + " 42x ἐγέννησεν + " 12x ἐγένοντο + " 2x ἐγένου + " 1x ἐγέρθητι + " 9x ἐγήγερται + " 3x ἐγίνετο + " 4x ἐγίνωσκεν + " 1x ἐγίνωσκον + " 1x ἐγαμίζοντο + " 2x ἐγγίζει + " 2x ἐγγίζειν + " 1x ἐγγίζομεν + " 1x ἐγγίζοντες + " 1x ἐγγίζοντι + " 1x ἐγγίζοντος + " 1x ἐγγίζουσαν + " 1x ἐγγίζουσιν + " 1x ἐγγίσαι + " 1x ἐγγίσαντος + " 2x ἐγγίσας + " 1x ἐγγίσατε + " 1x ἐγγίσει + " 1x ἐγγιζόντων + " 29x ἐγγύς + " 1x ἐγγύτερον + " 2x ἐγείραντα + " 3x ἐγείραντος + " 3x ἐγείρας + " 2x ἐγείρει + " 2x ἐγείρειν + " 2x ἐγείρεσθε + " 7x ἐγείρεται + " 1x ἐγείρετε + " 1x ἐγείρηται + " 1x ἐγείρομαι + " 9x ἐγείρονται + " 1x ἐγείροντι + " 1x ἐγείρουσιν + " 1x ἐγεγόνει + " 1x ἐγεμίσθη + " 12x ἐγενήθη + " 7x ἐγενήθημεν + " 1x ἐγενήθην + " 6x ἐγενήθησαν + " 5x ἐγενήθητε + " 7x ἐγεννήθη + " 2x ἐγεννήθημεν + " 1x ἐγεννήθης + " 3x ἐγεννήθησαν + " 12x ἐγενόμην + " 3x ἐγερεῖ + " 1x ἐγερεῖς + " 2x ἐγερθέντι + " 6x ἐγερθήσεται + " 4x ἐγερθήσονται + " 10x ἐγερθείς + " 5x ἐγερθῆναι + " 2x ἐγερθῇ + " 1x ἐγερῶ + " 1x ἐγεύσασθε + " 1x ἐγεύσατο + " 2x ἐγεῖραι + " 2x ἐγηγερμένον + " 1x ἐγκακήσητε + " 2x ἐγκακοῦμεν + " 1x ἐγκαλέσει + " 1x ἐγκαλείτωσαν + " 1x ἐγκαλεῖσθαι + " 1x ἐγκαλούμενον + " 2x ἐγκαλοῦμαι + " 2x ἐγκατέλιπεν + " 2x ἐγκατέλιπες + " 1x ἐγκατέλιπον + " 1x ἐγκαταλίπω + " 1x ἐγκαταλείποντες + " 1x ἐγκαταλειπόμενοι + " 1x ἐγκεντρισθῶ + " 1x ἐγκλήματος + " 1x ἐγκομβώσασθε + " 1x ἐγκράτεια + " 1x ἐγκράτειαν + " 1x ἐγκρατείας + " 1x ἐγκρατείᾳ + " 1x ἐγκρατεύεται + " 1x ἐγκρατεύονται + " 1x ἐγκρατῆ + " 1x ἐγκύῳ + " 1x ἐγνωκέναι + " 1x ἐγνωκότες + " 1x ἐγνωρίσαμεν + " 3x ἐγνωρίσθη + " 6x ἐγνώκαμεν + " 4x ἐγνώκατε + " 2x ἐγνώκειτε + " 2x ἐγνώρισα + " 1x ἐγνώρισαν + " 1x ἐγνώρισας + " 1x ἐγνώρισεν + " 2x ἐγνώσθη + " 4x ἐγράφη + " 1x ἐγράψατε + " 1x ἐγρηγόρησεν + " 1x ἐγχρῖσαι + " 2x ἐγόγγυζον + " 1x ἐγόγγυσαν + " 286x ἐγώ + " 1x ἐδάκρυσεν + " 5x ἐδέξαντο + " 4x ἐδέξασθε + " 3x ἐδέξατο + " 1x ἐδήλου + " 1x ἐδήλωσεν + " 1x ἐδίδαξα + " 1x ἐδίδαξαν + " 1x ἐδίδαξας + " 3x ἐδίδαξεν + " 14x ἐδίδασκεν + " 2x ἐδίδασκον + " 1x ἐδίδοσαν + " 9x ἐδίδου + " 2x ἐδίδουν + " 1x ἐδίστασαν + " 1x ἐδίστασας + " 2x ἐδίψησα + " 1x ἐδίωκεν + " 3x ἐδίωκον + " 2x ἐδίωξα + " 3x ἐδίωξαν + " 1x ἐδίωξεν + " 1x ἐδαφιοῦσιν + " 1x ἐδεήθη + " 2x ἐδεήθην + " 1x ἐδειγμάτισεν + " 1x ἐδεξάμεθα + " 1x ἐδεσμεύετο + " 1x ἐδεῖτο + " 1x ἐδηλώθη + " 1x ἐδημηγόρει + " 1x ἐδιδάχθην + " 1x ἐδιδάχθησαν + " 3x ἐδιδάχθητε + " 1x ἐδικαίωσαν + " 2x ἐδικαίωσεν + " 6x ἐδικαιώθη + " 1x ἐδικαιώθητε + " 1x ἐδοκίμασαν + " 1x ἐδοκιμάσαμεν + " 1x ἐδολιοῦσαν + " 6x ἐδοξάσθη + " 1x ἐδουλεύσατε + " 1x ἐδουλώθητε + " 1x ἐδούλευσεν + " 1x ἐδούλωσα + " 1x ἐδυναμώθησαν + " 1x ἐδωρήσατο + " 30x ἐδόθη + " 2x ἐδόθησαν + " 1x ἐδόκει + " 2x ἐδόκουν + " 2x ἐδόξαζεν + " 6x ἐδόξαζον + " 2x ἐδόξασα + " 4x ἐδόξασαν + " 4x ἐδόξασεν + " 1x ἐδύνασθε + " 11x ἐδύνατο + " 1x ἐδώκαμεν + " 3x ἐδώκατε + " 7x ἐζήτει + " 1x ἐζήτησαν + " 1x ἐζήτησεν + " 16x ἐζήτουν + " 1x ἐζημιώθην + " 1x ἐζητήσαμεν + " 1x ἐζητεῖτε + " 1x ἐζητεῖτο + " 2x ἐζυμώθη + " 1x ἐζωγρημένοι + " 1x ἐζώννυες + " 1x ἐζῆτε + " 1x ἐθήλασας + " 1x ἐθαμβήθησαν + " 2x ἐθαμβοῦντο + " 1x ἐθανατώθητε + " 1x ἐθαυμάσθη + " 1x ἐθαύμαζεν + " 7x ἐθαύμαζον + " 1x ἐθαύμασα + " 8x ἐθαύμασαν + " 1x ἐθαύμασας + " 5x ἐθαύμασεν + " 1x ἐθεάθη + " 2x ἐθεάσαντο + " 1x ἐθεάσασθε + " 1x ἐθεάσατο + " 2x ἐθεασάμεθα + " 1x ἐθελοθρησκίᾳ + " 1x ἐθεμελίωσας + " 1x ἐθεράπευεν + " 1x ἐθεράπευον + " 13x ἐθεράπευσεν + " 1x ἐθερίσθη + " 3x ἐθεραπεύθη + " 1x ἐθεραπεύθησαν + " 3x ἐθεραπεύοντο + " 1x ἐθερμαίνοντο + " 1x ἐθεώρει + " 1x ἐθεώρησαν + " 2x ἐθεώρουν + " 1x ἐθηριομάχησα + " 1x ἐθησαυρίσατε + " 1x ἐθνάρχης + " 2x ἐθνικοί + " 1x ἐθνικός + " 1x ἐθνικῶν + " 1x ἐθνικῶς + " 46x ἐθνῶν + " 1x ἐθορύβουν + " 1x ἐθρέψαμεν + " 1x ἐθρέψατε + " 1x ἐθρήνουν + " 2x ἐθρηνήσαμεν + " 1x ἐθυμώθη + " 1x ἐθῶν + " 667x ἐκ + " 1x ἐκάθευδεν + " 1x ἐκάθευδον + " 11x ἐκάθητο + " 1x ἐκάθισα + " 3x ἐκάθισαν + " 11x ἐκάθισεν + " 1x ἐκάκωσαν + " 1x ἐκάκωσεν + " 1x ἐκάλεσα + " 10x ἐκάλεσεν + " 2x ἐκάλουν + " 2x ἐκάμμυσαν + " 1x ἐκέκραξα + " 1x ἐκέλευον + " 2x ἐκέλευσα + " 15x ἐκέλευσεν + " 1x ἐκένωσεν + " 1x ἐκέρασεν + " 2x ἐκέρδησα + " 1x ἐκέρδησας + " 2x ἐκέρδησεν + " 2x ἐκήρυξαν + " 2x ἐκήρυξεν + " 3x ἐκήρυσσεν + " 1x ἐκήρυσσον + " 2x ἐκαθάρισεν + " 2x ἐκαθέζετο + " 1x ἐκαθαρίσθη + " 2x ἐκαθαρίσθησαν + " 1x ἐκαθεζόμην + " 2x ἐκαθερίσθη + " 1x ἐκαρτέρησεν + " 2x ἐκαυματίσθη + " 1x ἐκαυματίσθησαν + " 2x ἐκβάλετε + " 10x ἐκβάλλει + " 6x ἐκβάλλειν + " 1x ἐκβάλλεις + " 1x ἐκβάλλεται + " 1x ἐκβάλλετε + " 2x ἐκβάλλοντα + " 3x ἐκβάλλουσιν + " 5x ἐκβάλλω + " 2x ἐκβάλλων + " 3x ἐκβάλω + " 3x ἐκβάλωσιν + " 5x ἐκβάλῃ + " 4x ἐκβαλεῖν + " 1x ἐκβαλλομένους + " 1x ἐκβαλλόμενοι + " 1x ἐκβαλοῦσα + " 1x ἐκβαλοῦσιν + " 2x ἐκβαλόντες + " 3x ἐκβαλών + " 1x ἐκβεβλήκει + " 1x ἐκβληθέντος + " 1x ἐκβληθήσεται + " 1x ἐκβληθήσονται + " 1x ἐκβολήν + " 1x ἐκδέχεσθε + " 1x ἐκδέχεται + " 1x ἐκδέχομαι + " 6x ἐκδίκησιν + " 2x ἐκδίκησις + " 1x ἐκδαπανηθήσομαι + " 1x ἐκδεχομένου + " 1x ἐκδεχομένων + " 1x ἐκδεχόμενος + " 1x ἐκδημοῦμεν + " 1x ἐκδημοῦντες + " 1x ἐκδημῆσαι + " 1x ἐκδιηγούμενοι + " 1x ἐκδιηγῆται + " 1x ἐκδικήσεως + " 1x ἐκδικήσω + " 1x ἐκδικεῖς + " 1x ἐκδικοῦντες + " 1x ἐκδικῆσαι + " 1x ἐκδιωξάντων + " 1x ἐκδοχή + " 2x ἐκδύσαντες + " 1x ἐκδύσασθαι + " 1x ἐκδώσεται + " 16x ἐκείναις + " 2x ἐκείνας + " 9x ἐκείνη + " 10x ἐκείνην + " 19x ἐκείνης + " 8x ἐκείνοις + " 22x ἐκείνου + " 5x ἐκείνους + " 9x ἐκείνων + " 38x ἐκείνῃ + " 9x ἐκείνῳ + " 1x ἐκεφαλίωσαν + " 94x ἐκεῖ + " 26x ἐκεῖθεν + " 1x ἐκεῖνα + " 5x ἐκεῖναι + " 4x ἐκεῖνο + " 17x ἐκεῖνοι + " 12x ἐκεῖνον + " 57x ἐκεῖνος + " 2x ἐκεῖσε + " 1x ἐκζητήσας + " 1x ἐκζητήσεις + " 1x ἐκζητήσωσιν + " 1x ἐκζητηθήσεται + " 1x ἐκζητηθῇ + " 1x ἐκζητοῦσιν + " 1x ἐκζητῶν + " 2x ἐκηρύξαμεν + " 1x ἐκηρύχθη + " 1x ἐκθαμβεῖσθαι + " 1x ἐκθαμβεῖσθε + " 1x ἐκινήθη + " 1x ἐκινήθησαν + " 1x ἐκινδύνευον + " 2x ἐκκέχυται + " 1x ἐκκαθάρατε + " 1x ἐκκαθάρῃ + " 1x ἐκκεχυμένον + " 1x ἐκκλίνετε + " 1x ἐκκλεῖσαι + " 9x ἐκκλησία + " 7x ἐκκλησίαι + " 18x ἐκκλησίαις + " 20x ἐκκλησίαν + " 29x ἐκκλησίας + " 24x ἐκκλησίᾳ + " 7x ἐκκλησιῶν + " 1x ἐκκλινάτω + " 1x ἐκκολυμβήσας + " 1x ἐκκοπήσῃ + " 3x ἐκκόπτεται + " 1x ἐκκόψεις + " 1x ἐκκόψω + " 1x ἐκλάμψουσιν + " 1x ἐκλέλησθε + " 7x ἐκλήθη + " 2x ἐκλήθης + " 7x ἐκλήθητε + " 2x ἐκλίπῃ + " 1x ἐκλαλῆσαι + " 1x ἐκλαύσατε + " 2x ἐκλείσθη + " 1x ἐκλείσθησαν + " 1x ἐκλείψουσιν + " 3x ἐκλεκτοί + " 7x ἐκλεκτούς + " 1x ἐκλεκτοῖς + " 4x ἐκλεκτόν + " 1x ἐκλεκτός + " 1x ἐκλεκτῆς + " 1x ἐκλεκτῇ + " 4x ἐκλεκτῶν + " 1x ἐκλελεγμένος + " 1x ἐκλεξάμενος + " 2x ἐκλεξαμένους + " 1x ἐκληρώθημεν + " 1x ἐκλιπόντος + " 1x ἐκλογή + " 5x ἐκλογήν + " 1x ἐκλογῆς + " 1x ἐκλυθήσονται + " 1x ἐκλυθῶσιν + " 2x ἐκλυόμενοι + " 1x ἐκλύου + " 1x ἐκμάξασα + " 1x ἐκμάσσειν + " 1x ἐκνήψατε + " 2x ἐκοιμήθη + " 2x ἐκοιμήθησαν + " 1x ἐκοινώνησαν + " 1x ἐκοινώνησεν + " 1x ἐκολάφισαν + " 1x ἐκολλήθη + " 1x ἐκολλήθησαν + " 1x ἐκολοβώθησαν + " 2x ἐκολόβωσεν + " 1x ἐκομίσαντο + " 1x ἐκομίσατο + " 1x ἐκομισάμην + " 2x ἐκοπίασα + " 2x ἐκοπίασεν + " 1x ἐκούφιζον + " 1x ἐκπέπτωκεν + " 1x ἐκπέσητε + " 1x ἐκπέσωμεν + " 1x ἐκπέσωσιν + " 1x ἐκπειράζωμεν + " 1x ἐκπειράζων + " 2x ἐκπειράσεις + " 1x ἐκπεμφθέντες + " 1x ἐκπεπλήρωκεν + " 1x ἐκπερισσῶς + " 2x ἐκπεσεῖν + " 1x ἐκπεφευγέναι + " 1x ἐκπλήρωσιν + " 1x ἐκπλήσσεσθαι + " 1x ἐκπλεῦσαι + " 1x ἐκπλησσόμενος + " 1x ἐκπορευέσθω + " 1x ἐκπορευομένη + " 2x ἐκπορευομένοις + " 4x ἐκπορευομένου + " 1x ἐκπορευομένων + " 1x ἐκπορευομένῳ + " 2x ἐκπορευόμενα + " 1x ἐκπορευόμενοι + " 3x ἐκπορευόμενον + " 1x ἐκπορευόμενος + " 2x ἐκπορεύεσθαι + " 7x ἐκπορεύεται + " 2x ἐκπορεύονται + " 1x ἐκπορεύσονται + " 1x ἐκπορνεύσασαι + " 4x ἐκράτησαν + " 3x ἐκράτησεν + " 1x ἐκρίθη + " 2x ἐκρίθησαν + " 1x ἐκρατήσαμεν + " 2x ἐκρατήσατε + " 2x ἐκραταιοῦτο + " 1x ἐκρατοῦντο + " 1x ἐκραύγαζον + " 4x ἐκραύγασαν + " 1x ἐκραύγασεν + " 1x ἐκριζωθέντα + " 1x ἐκριζωθήσεται + " 1x ἐκριζώσητε + " 1x ἐκρινόμεθα + " 4x ἐκρύβη + " 3x ἐκστάσει + " 1x ἐκστάσεως + " 1x ἐκτήσατο + " 2x ἐκτίσθη + " 1x ἐκτίσθησαν + " 1x ἐκταράσσουσιν + " 7x ἐκτείνας + " 2x ἐκτείνειν + " 1x ἐκτεθέντος + " 2x ἐκτελέσαι + " 1x ἐκτενέστερον + " 1x ἐκτενείᾳ + " 1x ἐκτενεῖς + " 1x ἐκτενῆ + " 2x ἐκτενῶς + " 1x ἐκτησάμην + " 2x ἐκτινάξατε + " 1x ἐκτιναξάμενοι + " 1x ἐκτιναξάμενος + " 1x ἐκτρέφει + " 1x ἐκτρέφετε + " 1x ἐκτραπήσονται + " 1x ἐκτραπῇ + " 1x ἐκτρεπόμενος + " 1x ἐκτρώματι + " 8x ἐκτός + " 1x ἐκυλίετο + " 1x ἐκφέρειν + " 1x ἐκφέρουσα + " 1x ἐκφευξόμεθα + " 1x ἐκφεύξῃ + " 1x ἐκφοβεῖν + " 2x ἐκφυγεῖν + " 1x ἐκφύγωσιν + " 2x ἐκφύῃ + " 1x ἐκχέαι + " 1x ἐκχέετε + " 1x ἐκχεῖται + " 2x ἐκχεῶ + " 1x ἐκχυθήσεται + " 4x ἐκχυννόμενον + " 1x ἐκχωρείτωσαν + " 1x ἐκωλύθην + " 2x ἐκωλύομεν + " 1x ἐκωλύσατε + " 3x ἐκόπασεν + " 2x ἐκόπτοντο + " 1x ἐκόσμησαν + " 1x ἐκόσμουν + " 1x ἐκόψασθε + " 1x ἐκύκλευσαν + " 1x ἐκύκλωσαν + " 2x ἐκώλυσεν + " 12x ἐλάβετε + " 7x ἐλάβομεν + " 1x ἐλάκησεν + " 20x ἐλάλει + " 8x ἐλάλησα + " 11x ἐλάλησαν + " 31x ἐλάλησεν + " 6x ἐλάλουν + " 1x ἐλάμβανον + " 1x ἐλάσσονι + " 1x ἐλάσσω + " 1x ἐλάτρευσαν + " 2x ἐλάχιστον + " 2x ἐλάχιστος + " 1x ἐλέγετε + " 1x ἐλέγξαι + " 1x ἐλέγξει + " 1x ἐλέγχει + " 1x ἐλέγχειν + " 1x ἐλέγχεται + " 1x ἐλέγχετε + " 1x ἐλέγχω + " 2x ἐλέει + " 9x ἐλέησον + " 5x ἐλέους + " 7x ἐλήλυθα + " 2x ἐλήλυθας + " 7x ἐλήλυθεν + " 2x ἐλαίας + " 2x ἐλαίου + " 1x ἐλαίᾳ + " 3x ἐλαίῳ + " 1x ἐλαιῶν + " 2x ἐλαλήθη + " 1x ἐλαλήσαμεν + " 1x ἐλαλήσατε + " 1x ἐλαλοῦμεν + " 1x ἐλαττοῦσθαι + " 1x ἐλατόμησεν + " 1x ἐλαυνόμενα + " 1x ἐλαυνόμεναι + " 1x ἐλαφρίᾳ + " 2x ἐλαφρόν + " 1x ἐλαχίστη + " 1x ἐλαχίστου + " 4x ἐλαχίστων + " 3x ἐλαχίστῳ + " 1x ἐλαχιστοτέρῳ + " 1x ἐλαύνειν + " 1x ἐλαῖαι + " 1x ἐλεήμονες + " 1x ἐλεήμων + " 1x ἐλεήσῃ + " 1x ἐλεγμόν + " 1x ἐλεγχθῇ + " 1x ἐλεγχόμενα + " 2x ἐλεγχόμενοι + " 2x ἐλεγχόμενος + " 1x ἐλεεινός + " 1x ἐλεεινότεροι + " 1x ἐλεεῖ + " 1x ἐλεηθέντες + " 1x ἐλεηθήσονται + " 1x ἐλεηθῶσιν + " 1x ἐλεημοσυνῶν + " 2x ἐλεημοσύναι + " 2x ἐλεημοσύνας + " 1x ἐλεημοσύνη + " 7x ἐλεημοσύνην + " 3x ἐλευθέρα + " 4x ἐλευθέρας + " 1x ἐλευθέρους + " 1x ἐλευθέρων + " 2x ἐλευθερία + " 5x ἐλευθερίαν + " 2x ἐλευθερίας + " 2x ἐλευθερίᾳ + " 2x ἐλευθερωθέντες + " 1x ἐλευθερωθήσεται + " 1x ἐλευθερώσει + " 1x ἐλευθερώσῃ + " 1x ἐλευσόμεθα + " 1x ἐλεφάντινον + " 5x ἐλεύθεροι + " 7x ἐλεύθερος + " 1x ἐλεύκαναν + " 4x ἐλεύσεται + " 1x ἐλεύσεως + " 5x ἐλεύσομαι + " 9x ἐλεύσονται + " 2x ἐλεᾶτε + " 1x ἐλεῆσαι + " 1x ἐλεῶ + " 1x ἐλεῶν + " 1x ἐλεῶντος + " 1x ἐληλακότες + " 1x ἐληλυθυῖαν + " 2x ἐληλυθότα + " 1x ἐληλυθότες + " 6x ἐληλύθει + " 1x ἐληλύθεισαν + " 3x ἐλθάτω + " 1x ἐλθέ + " 42x ἐλθεῖν + " 2x ἐλθούσης + " 5x ἐλθοῦσα + " 1x ἐλθοῦσαι + " 2x ἐλθόν + " 2x ἐλθόντα + " 1x ἐλθόντας + " 22x ἐλθόντες + " 1x ἐλθόντι + " 6x ἐλθόντος + " 2x ἐλθόντων + " 46x ἐλθών + " 1x ἐλιθάσθην + " 1x ἐλιθάσθησαν + " 1x ἐλιθοβόλησαν + " 2x ἐλιθοβόλουν + " 1x ἐλλογεῖται + " 1x ἐλλόγα + " 7x ἐλογίσθη + " 1x ἐλογίσθημεν + " 1x ἐλογιζόμην + " 1x ἐλοιδόρησαν + " 18x ἐλπίδα + " 11x ἐλπίδι + " 13x ἐλπίδος + " 3x ἐλπίζει + " 1x ἐλπίζετε + " 1x ἐλπίζομεν + " 1x ἐλπίζουσαι + " 9x ἐλπίζω + " 2x ἐλπίζων + " 10x ἐλπίς + " 1x ἐλπίσατε + " 1x ἐλπιζομένων + " 2x ἐλπιοῦσιν + " 1x ἐλυμαίνετο + " 1x ἐλυπήθη + " 2x ἐλυπήθησαν + " 3x ἐλυπήθητε + " 1x ἐλυτρώθητε + " 1x ἐλύετο + " 1x ἐλύθη + " 1x ἐλύθησαν + " 1x ἐλύπησα + " 1x ἐλύπησεν + " 9x ἐμά + " 4x ἐμάθετε + " 1x ἐμάς + " 91x ἐμέ + " 4x ἐμέρισεν + " 1x ἐμέσαι + " 2x ἐμέτρησεν + " 12x ἐμή + " 13x ἐμήν + " 1x ἐμήνυσεν + " 1x ἐμίσησα + " 1x ἐμίσησας + " 2x ἐμίσησεν + " 1x ἐμίσουν + " 1x ἐμαθητεύθη + " 1x ἐμαρτυρήθη + " 1x ἐμαρτυρήθησαν + " 1x ἐμαρτυρήσαμεν + " 1x ἐμαρτυρεῖτο + " 1x ἐμαρτύρησαν + " 5x ἐμαρτύρησεν + " 1x ἐμαρτύρουν + " 1x ἐμαστίγωσεν + " 1x ἐμασῶντο + " 1x ἐματαιώθησαν + " 14x ἐμαυτοῦ + " 18x ἐμαυτόν + " 5x ἐμαυτῷ + " 2x ἐμβάντα + " 1x ἐμβάντες + " 1x ἐμβάντι + " 6x ἐμβάς + " 1x ἐμβάψας + " 1x ἐμβαίνοντος + " 1x ἐμβαλεῖν + " 1x ἐμβαπτόμενος + " 1x ἐμβατεύων + " 6x ἐμβλέψας + " 1x ἐμβλέψασα + " 1x ἐμβλέψατε + " 1x ἐμβριμησάμενος + " 1x ἐμβριμώμενος + " 2x ἐμβῆναι + " 2x ἐμείναμεν + " 2x ἐμεγάλυνεν + " 1x ἐμεγαλύνετο + " 1x ἐμεθύσθησαν + " 1x ἐμελέτησαν + " 2x ἐμερίσθη + " 1x ἐμεσίτευσεν + " 1x ἐμισθώσατο + " 1x ἐμμένει + " 1x ἐμμένειν + " 1x ἐμμαινόμενος + " 2x ἐμνήσθη + " 1x ἐμνήσθημεν + " 1x ἐμνήσθην + " 5x ἐμνήσθησαν + " 1x ἐμνημόνευον + " 2x ἐμνημόνευσεν + " 1x ἐμνηστευμένην + " 1x ἐμνηστευμένῃ + " 91x ἐμοί + " 1x ἐμοίχευσεν + " 1x ἐμολύνθησαν + " 1x ἐμοσχοποίησαν + " 3x ἐμούς + " 2x ἐμοῖς + " 114x ἐμοῦ + " 3x ἐμπέσῃ + " 1x ἐμπίπτουσιν + " 1x ἐμπαίζειν + " 2x ἐμπαίζοντες + " 1x ἐμπαίξας + " 1x ἐμπαίξουσιν + " 1x ἐμπαιγμονῇ + " 1x ἐμπαιγμῶν + " 1x ἐμπαιχθήσεται + " 2x ἐμπαῖκται + " 1x ἐμπαῖξαι + " 1x ἐμπεπλησμένοι + " 1x ἐμπεσεῖν + " 1x ἐμπεσοῦνται + " 1x ἐμπεσόντος + " 1x ἐμπιπλῶν + " 1x ἐμπλέκεται + " 1x ἐμπλακέντες + " 1x ἐμπλησθῶ + " 1x ἐμπλοκῆς + " 1x ἐμπνέων + " 1x ἐμπορίαν + " 1x ἐμπορίου + " 1x ἐμπορευσόμεθα + " 1x ἐμπορεύσονται + " 1x ἐμπτυσθήσεται + " 1x ἐμπτύειν + " 1x ἐμπτύσαντες + " 1x ἐμπτύσουσιν + " 1x ἐμπόρῳ + " 1x ἐμφανής + " 1x ἐμφανίζειν + " 1x ἐμφανίζουσιν + " 1x ἐμφανίσατε + " 1x ἐμφανίσω + " 1x ἐμφανισθῆναι + " 1x ἐμφανῆ + " 1x ἐμφόβων + " 1x ἐμωράνθησαν + " 1x ἐμόλυναν + " 10x ἐμόν + " 6x ἐμός + " 1x ἐμώρανεν + " 2x ἐμῆς + " 6x ἐμῇ + " 1x ἐμῶν + " 3x ἐμῷ + " 2684x ἐν + " 5x ἐνάτην + " 3x ἐνάτης + " 1x ἐνάτῃ + " 2x ἐνέβη + " 1x ἐνέβημεν + " 2x ἐνέβησαν + " 1x ἐνέβλεπεν + " 1x ἐνέβλεπον + " 1x ἐνέβλεψεν + " 1x ἐνέγκαι + " 2x ἐνέγκας + " 2x ἐνέδραν + " 2x ἐνέδυσαν + " 2x ἐνέκοψεν + " 1x ἐνέκρυψεν + " 1x ἐνέμειναν + " 1x ἐνένευον + " 1x ἐνέπαιζον + " 4x ἐνέπαιξαν + " 1x ἐνέπλησεν + " 1x ἐνέπρησεν + " 1x ἐνέπτυον + " 1x ἐνέπτυσαν + " 7x ἐνέργειαν + " 1x ἐνέστηκεν + " 1x ἐνέτυχον + " 1x ἐνέχειν + " 1x ἐνέχεσθε + " 1x ἐνήργηκεν + " 1x ἐνήργησεν + " 1x ἐνίκησα + " 1x ἐνίκησαν + " 1x ἐνίκησεν + " 1x ἐνίσχυσεν + " 1x ἐνίψατο + " 2x ἐναγκαλισάμενος + " 1x ἐναλίων + " 1x ἐναντία + " 2x ἐναντίας + " 6x ἐναντίον + " 2x ἐναντίος + " 1x ἐναντίους + " 1x ἐναντίων + " 1x ἐναρξάμενοι + " 1x ἐναρξάμενος + " 1x ἐναυάγησα + " 1x ἐναυάγησαν + " 1x ἐνγέγραπται + " 2x ἐνγεγραμμένη + " 1x ἐνδέχεται + " 1x ἐνδεής + " 1x ἐνδείκνυνται + " 1x ἐνδείκνυσθαι + " 1x ἐνδείξασθαι + " 2x ἐνδείξηται + " 1x ἐνδείξωμαι + " 2x ἐνδεδυμένοι + " 2x ἐνδεδυμένον + " 1x ἐνδεδυμένος + " 2x ἐνδεικνυμένους + " 1x ἐνδεικνύμενοι + " 2x ἐνδημοῦντες + " 1x ἐνδημῆσαι + " 1x ἐνδιδύσκουσιν + " 1x ἐνδοξασθῆναι + " 1x ἐνδοξασθῇ + " 1x ἐνδυναμοῦ + " 1x ἐνδυναμοῦντι + " 1x ἐνδυναμοῦσθε + " 1x ἐνδυναμώσαντι + " 4x ἐνδυσάμενοι + " 1x ἐνδυσάμενος + " 1x ἐνδυσώμεθα + " 1x ἐνδόξοις + " 1x ἐνδόξῳ + " 1x ἐνδύμασιν + " 3x ἐνδύματος + " 1x ἐνδύνοντες + " 3x ἐνδύσασθαι + " 2x ἐνδύσασθε + " 1x ἐνδύσατε + " 1x ἐνδύσεως + " 4x ἐνδύσησθε + " 2x ἐνδύσηται + " 1x ἐνδώμησις + " 1x ἐνείλησεν + " 1x ἐνεβίβασεν + " 1x ἐνεβριμήθη + " 1x ἐνεβριμήσατο + " 1x ἐνεβριμῶντο + " 2x ἐνεγκεῖν + " 1x ἐνεδείξασθε + " 1x ἐνεδείξατο + " 1x ἐνεδιδύσκετο + " 1x ἐνεδρεύοντες + " 1x ἐνεδρεύουσιν + " 1x ἐνεδυνάμωσεν + " 1x ἐνεδυναμοῦτο + " 1x ἐνεδυναμώθη + " 1x ἐνεδύσασθε + " 1x ἐνεδύσατο + " 1x ἐνεκάλουν + " 1x ἐνεκαίνισεν + " 2x ἐνεκεντρίσθης + " 1x ἐνεκοπτόμην + " 4x ἐνενήκοντα + " 1x ἐνεοί + " 1x ἐνεπαίχθη + " 1x ἐνεπλήσθησαν + " 1x ἐνεργήματα + " 3x ἐνεργής + " 1x ἐνεργήσας + " 1x ἐνεργείας + " 1x ἐνεργεῖ + " 1x ἐνεργεῖν + " 3x ἐνεργεῖται + " 1x ἐνεργημάτων + " 2x ἐνεργουμένη + " 2x ἐνεργουμένην + " 1x ἐνεργουμένης + " 2x ἐνεργοῦντος + " 2x ἐνεργοῦσιν + " 3x ἐνεργῶν + " 1x ἐνεστηκότα + " 1x ἐνεστῶσαν + " 2x ἐνεστῶτα + " 1x ἐνεστῶτος + " 8x ἐνετείλατο + " 1x ἐνετειλάμην + " 1x ἐνετρεπόμεθα + " 2x ἐνετύλιξεν + " 1x ἐνευλογηθήσονται + " 3x ἐνεφάνισαν + " 1x ἐνεφάνισας + " 1x ἐνεφανίσθησαν + " 1x ἐνεφύσησεν + " 1x ἐνεχθείσης + " 1x ἐνεχθεῖσαν + " 1x ἐνεῖχεν + " 1x ἐνηργεῖτο + " 8x ἐνθάδε + " 2x ἐνθυμήσεις + " 1x ἐνθυμήσεων + " 1x ἐνθυμήσεως + " 1x ἐνθυμεῖσθε + " 1x ἐνθυμηθέντος + " 2x ἐνιαυτούς + " 4x ἐνιαυτοῦ + " 8x ἐνιαυτόν + " 1x ἐνισχύων + " 1x ἐνιψάμην + " 1x ἐνκαίνια + " 1x ἐνκαθέτους + " 2x ἐνκακεῖν + " 1x ἐνκακῶμεν + " 1x ἐνκαταλείψεις + " 1x ἐνκατελείφθη + " 1x ἐνκατοικῶν + " 1x ἐνκαυχᾶσθαι + " 1x ἐνκεκαίνισται + " 1x ἐνκεντρίσαι + " 2x ἐνκεντρισθήσονται + " 1x ἐνκοπήν + " 1x ἐνκρῖναι + " 1x ἐνκόπτεσθαι + " 1x ἐνκόπτω + " 5x ἐννέα + " 1x ἐννοιῶν + " 1x ἐννόμῳ + " 1x ἐνοικείτω + " 2x ἐνοικοῦντος + " 1x ἐνοικοῦσα + " 1x ἐνομίζετο + " 1x ἐνομίζομεν + " 1x ἐνοσφίσατο + " 1x ἐνοχλούμενοι + " 1x ἐνοχλῇ + " 1x ἐνπεριπατήσω + " 1x ἐνστήσονται + " 3x ἐντάλματα + " 2x ἐντέλλομαι + " 1x ἐντέταλται + " 1x ἐντίμους + " 1x ἐνταφιάζειν + " 1x ἐνταφιάσαι + " 1x ἐνταφιασμοῦ + " 1x ἐνταφιασμόν + " 1x ἐντειλάμενος + " 2x ἐντελεῖται + " 1x ἐντετυλιγμένον + " 1x ἐντετυπωμένη + " 1x ἐντεύξεις + " 1x ἐντεύξεως + " 10x ἐντεῦθεν + " 1x ἐντιμότερος + " 18x ἐντολάς + " 14x ἐντολή + " 19x ἐντολήν + " 1x ἐντολαί + " 3x ἐντολαῖς + " 9x ἐντολῆς + " 3x ἐντολῶν + " 1x ἐντρέπομαι + " 1x ἐντρέπων + " 1x ἐντραπήσονται + " 2x ἐντραπῇ + " 1x ἐντρεπόμενος + " 1x ἐντρεφόμενος + " 2x ἐντροπήν + " 1x ἐντρυφῶντες + " 3x ἐντυγχάνει + " 1x ἐντυγχάνειν + " 1x ἐντόπιοι + " 2x ἐντός + " 1x ἐνυβρίσας + " 1x ἐνυπνίοις + " 1x ἐνυπνιαζόμενοι + " 1x ἐνυπνιασθήσονται + " 1x ἐνωτίσασθε + " 1x ἐνόμιζεν + " 1x ἐνόμιζον + " 1x ἐνόμισαν + " 1x ἐνόμισας + " 1x ἐνόντα + " 1x ἐνύσταξαν + " 94x ἐνώπιον + " 1x ἐνῴκησεν + " 228x ἐξ + " 1x ἐξάγει + " 1x ἐξάγουσιν + " 1x ἐξάπινα + " 1x ἐξάρατε + " 5x ἐξέβαλεν + " 1x ἐξέβαλλον + " 7x ἐξέβαλον + " 1x ἐξέβησαν + " 3x ἐξέδετο + " 2x ἐξέδυσαν + " 1x ἐξέθεντο + " 1x ἐξέκλιναν + " 1x ἐξέληται + " 1x ἐξέλθατε + " 3x ἐξέλθητε + " 3x ἐξέλθῃ + " 2x ἐξέλθῃς + " 2x ἐξέμαξεν + " 1x ἐξέμασσεν + " 1x ἐξένευσεν + " 2x ἐξένισεν + " 1x ἐξέπεμψαν + " 1x ἐξέπεσαν + " 2x ἐξέπεσεν + " 1x ἐξέπλει + " 3x ἐξέπνευσεν + " 1x ἐξέραμα + " 2x ἐξέρχεσθε + " 3x ἐξέρχεται + " 2x ἐξέρχονται + " 1x ἐξέστη + " 1x ἐξέστημεν + " 5x ἐξέστησαν + " 1x ἐξέστραπται + " 2x ἐξέτεινεν + " 2x ἐξέφυγον + " 1x ἐξέχεαν + " 10x ἐξέχεεν + " 3x ἐξέψυξεν + " 4x ἐξήγαγεν + " 1x ἐξήγγειλαν + " 1x ἐξήγειρα + " 9x ἐξήλθατε + " 1x ἐξήλθομεν + " 1x ἐξήνεγκεν + " 1x ἐξήρανεν + " 1x ἐξήρανται + " 2x ἐξήρχετο + " 2x ἐξήρχοντο + " 1x ἐξήχηται + " 6x ἐξίσταντο + " 1x ἐξίστασθαι + " 1x ἐξίστατο + " 5x ἐξαίφνης + " 1x ἐξαγαγέτωσαν + " 1x ἐξαγαγεῖν + " 1x ἐξαγαγόντες + " 2x ἐξαγαγών + " 1x ἐξαγγείλητε + " 1x ἐξαγοράσῃ + " 2x ἐξαγοραζόμενοι + " 1x ἐξαιρούμενος + " 2x ἐξακολουθήσαντες + " 1x ἐξακολουθήσουσιν + " 1x ἐξαλείψας + " 2x ἐξαλείψει + " 1x ἐξαλείψω + " 1x ἐξαλειφθῆναι + " 1x ἐξαλλόμενος + " 1x ἐξανάστασιν + " 2x ἐξανέτειλεν + " 2x ἐξαναστήσῃ + " 5x ἐξαπέστειλαν + " 6x ἐξαπέστειλεν + " 1x ἐξαπατάτω + " 1x ἐξαπατήσῃ + " 1x ἐξαπατηθεῖσα + " 1x ἐξαπατῶσιν + " 1x ἐξαπεστάλη + " 1x ἐξαπορηθῆναι + " 1x ἐξαπορούμενοι + " 1x ἐξαποστέλλω + " 1x ἐξαποστελῶ + " 1x ἐξαρτίσαι + " 1x ἐξαστράπτων + " 6x ἐξαυτῆς + " 2x ἐξείλατο + " 1x ἐξεβάλομεν + " 1x ἐξεβλήθη + " 1x ἐξεγερεῖ + " 1x ἐξεδέχετο + " 1x ἐξεδίκησεν + " 1x ἐξεζήτησαν + " 2x ἐξεθαμβήθησαν + " 1x ἐξεθαύμαζον + " 1x ἐξειλάμην + " 2x ἐξεκέντησαν + " 1x ἐξεκαύθησαν + " 2x ἐξεκλάσθησαν + " 1x ἐξεκλείσθη + " 1x ἐξεκομίζετο + " 1x ἐξεκρέμετο + " 1x ἐξεκόπης + " 1x ἐξελέγοντο + " 1x ἐξελέξαντο + " 1x ἐξελέξασθε + " 10x ἐξελέξατο + " 1x ἐξελέξω + " 1x ἐξελέσθαι + " 2x ἐξελήλυθεν + " 4x ἐξελεξάμην + " 3x ἐξελεύσεται + " 2x ἐξελεύσονται + " 1x ἐξεληλυθυῖαν + " 1x ἐξεληλυθός + " 1x ἐξεληλυθότας + " 1x ἐξεληλύθασιν + " 2x ἐξεληλύθει + " 9x ἐξελθεῖν + " 1x ἐξελθούσῃ + " 3x ἐξελθοῦσα + " 1x ἐξελθοῦσαι + " 1x ἐξελθοῦσαν + " 3x ἐξελθόντα + " 17x ἐξελθόντες + " 1x ἐξελθόντι + " 3x ἐξελθόντος + " 2x ἐξελθόντων + " 21x ἐξελθών + " 1x ἐξελκόμενος + " 2x ἐξεμυκτήριζον + " 2x ἐξενέγκαντες + " 1x ἐξενέγκατε + " 1x ἐξενεγκεῖν + " 1x ἐξενοδόχησεν + " 1x ἐξεπέσατε + " 1x ἐξεπέτασα + " 1x ἐξεπήδησαν + " 1x ἐξεπλάγησαν + " 1x ἐξεπλήσσετο + " 9x ἐξεπλήσσοντο + " 1x ἐξεπλεύσαμεν + " 3x ἐξεπορεύετο + " 1x ἐξεπορεύοντο + " 1x ἐξεπτύσατε + " 1x ἐξερχομένων + " 4x ἐξερχόμενοι + " 1x ἐξερχόμενος + " 1x ἐξερχώμεθα + " 1x ἐξεστακέναι + " 1x ἐξετάσαι + " 2x ἐξετάσατε + " 2x ἐξετίθετο + " 1x ἐξετείνατε + " 2x ἐξετράπησαν + " 1x ἐξεχύθη + " 1x ἐξεχύθησαν + " 1x ἐξεχύννετο + " 2x ἐξηγήσατο + " 1x ἐξηγεῖτο + " 1x ἐξηγησάμενος + " 1x ἐξηγουμένων + " 1x ἐξηγοῦντο + " 1x ἐξηγόρασεν + " 2x ἐξηπάτησεν + " 10x ἐξηράνθη + " 2x ἐξηραμμένην + " 1x ἐξηραύνησαν + " 1x ἐξηρτισμένος + " 2x ἐξιέναι + " 1x ἐξιστάνων + " 1x ἐξισχύσητε + " 1x ἐξοίσουσιν + " 1x ἐξολεθρευθήσεται + " 1x ἐξομολογήσεται + " 1x ἐξομολογήσηται + " 1x ἐξομολογήσομαι + " 1x ἐξομολογεῖσθε + " 3x ἐξομολογούμενοι + " 1x ἐξορκιστῶν + " 2x ἐξορύξαντες + " 1x ἐξουδενηθῇ + " 1x ἐξουθενήσας + " 1x ἐξουθενήσατε + " 1x ἐξουθενήσῃ + " 1x ἐξουθενείτω + " 1x ἐξουθενεῖς + " 1x ἐξουθενεῖτε + " 1x ἐξουθενηθείς + " 1x ἐξουθενημένα + " 1x ἐξουθενημένος + " 1x ἐξουθενημένους + " 1x ἐξουθενοῦντας + " 13x ἐξουσία + " 1x ἐξουσίαι + " 3x ἐξουσίαις + " 56x ἐξουσίαν + " 12x ἐξουσίας + " 16x ἐξουσίᾳ + " 2x ἐξουσιάζει + " 1x ἐξουσιάζοντες + " 1x ἐξουσιασθήσομαι + " 1x ἐξουσιῶν + " 1x ἐξοχήν + " 1x ἐξυπνίσω + " 1x ἐξυρημένῃ + " 1x ἐξωμολόγησεν + " 1x ἐξόδου + " 3x ἐξόν + " 3x ἐξώτερον + " 1x ἐξῃτήσατο + " 1x ἐξῄεσαν + " 3x ἐξῆλθαν + " 65x ἐξῆλθεν + " 1x ἐξῆλθες + " 22x ἐξῆλθον + " 1x ἐξῶσαι + " 1x ἐξῶσεν + " 1x ἐπάγγελμα + " 1x ἐπάγοντες + " 2x ἐπάθετε + " 3x ἐπάν + " 1x ἐπάναγκες + " 19x ἐπάνω + " 1x ἐπάξας + " 2x ἐπάραντες + " 5x ἐπάρας + " 1x ἐπάρασα + " 2x ἐπάρατε + " 1x ἐπάρατοι + " 2x ἐπάταξεν + " 2x ἐπέβαλαν + " 3x ἐπέβαλεν + " 1x ἐπέβαλλεν + " 3x ἐπέβαλον + " 1x ἐπέβην + " 1x ἐπέβλεψεν + " 1x ἐπέγνωμεν + " 4x ἐπέγνωσαν + " 2x ἐπέγνωτε + " 2x ἐπέδωκαν + " 1x ἐπέθεντο + " 6x ἐπέθηκαν + " 6x ἐπέθηκεν + " 1x ἐπέκειλαν + " 1x ἐπέκεινα + " 1x ἐπέκειντο + " 1x ἐπέκειτο + " 1x ἐπέκρινεν + " 1x ἐπέλειχον + " 2x ἐπέλθῃ + " 1x ἐπέλυεν + " 1x ἐπέμεινα + " 1x ἐπέμενεν + " 1x ἐπέμενον + " 1x ἐπέμφθη + " 1x ἐπέμψαμεν + " 1x ἐπέμψατε + " 1x ἐπένευσεν + " 1x ἐπέπεσαν + " 7x ἐπέπεσεν + " 1x ἐπέσπειρεν + " 1x ἐπέστειλα + " 2x ἐπέστη + " 5x ἐπέστησαν + " 1x ἐπέστρεψα + " 2x ἐπέστρεψαν + " 2x ἐπέστρεψεν + " 1x ἐπέσχεν + " 1x ἐπέταξας + " 3x ἐπέταξεν + " 5x ἐπέτρεψεν + " 3x ἐπέτυχεν + " 1x ἐπέτυχον + " 1x ἐπέφωσκεν + " 1x ἐπέχοντες + " 1x ἐπέχρισεν + " 1x ἐπέχων + " 3x ἐπήγγελται + " 2x ἐπήγειραν + " 1x ἐπήκουσα + " 1x ἐπήρθη + " 1x ἐπήρκεσεν + " 659x ἐπί + " 1x ἐπίασαν + " 1x ἐπίασεν + " 4x ἐπίβλημα + " 3x ἐπίγεια + " 2x ἐπίγειος + " 10x ἐπίγνωσιν + " 1x ἐπίγνωσις + " 1x ἐπίθες + " 1x ἐπίκειται + " 1x ἐπίλοιπον + " 1x ἐπίμενε + " 1x ἐπίνοια + " 1x ἐπίομεν + " 1x ἐπίπρασκον + " 1x ἐπίσημοι + " 1x ἐπίσημον + " 2x ἐπίσκοπον + " 2x ἐπίσταμαι + " 2x ἐπίστανται + " 5x ἐπίστασθε + " 1x ἐπίστασιν + " 1x ἐπίστασις + " 2x ἐπίσταται + " 1x ἐπίστευεν + " 4x ἐπίστευον + " 22x ἐπίστευσαν + " 2x ἐπίστευσας + " 12x ἐπίστευσεν + " 1x ἐπίστηθι + " 1x ἐπίσχυον + " 3x ἐπίτρεψον + " 1x ἐπαίδευον + " 1x ἐπαίρεται + " 1x ἐπαίροντας + " 1x ἐπαγαγεῖν + " 1x ἐπαγγέλματα + " 1x ἐπαγγειλάμενον + " 2x ἐπαγγειλάμενος + " 6x ἐπαγγελία + " 3x ἐπαγγελίαι + " 1x ἐπαγγελίαις + " 16x ἐπαγγελίαν + " 23x ἐπαγγελίας + " 1x ἐπαγγελίᾳ + " 2x ἐπαγγελιῶν + " 1x ἐπαγγελλομέναις + " 2x ἐπαγγελλόμενοι + " 1x ἐπαγωνίζεσθαι + " 1x ἐπαθροιζομένων + " 1x ἐπαιδεύθη + " 1x ἐπαινέσω + " 1x ἐπαινεσάτωσαν + " 2x ἐπαινῶ + " 1x ἐπαιρόμενον + " 2x ἐπαισχυνθήσεται + " 2x ἐπαισχυνθῇ + " 1x ἐπαισχυνθῇς + " 1x ἐπαισχύνεσθε + " 2x ἐπαισχύνεται + " 1x ἐπαισχύνθη + " 2x ἐπαισχύνομαι + " 1x ἐπαιτεῖν + " 1x ἐπαιτῶν + " 1x ἐπακολουθήσητε + " 1x ἐπακολουθούντων + " 1x ἐπακολουθοῦσιν + " 1x ἐπανέρχεσθαι + " 1x ἐπαναγαγεῖν + " 1x ἐπαναγαγών + " 1x ἐπαναμιμνήσκων + " 1x ἐπαναπαήσεται + " 1x ἐπαναπαύῃ + " 2x ἐπαναστήσονται + " 1x ἐπανελθεῖν + " 1x ἐπανόρθωσιν + " 1x ἐπαρκέσῃ + " 1x ἐπαρκείτω + " 1x ἐπαρρησιάζετο + " 1x ἐπαρρησιάσατο + " 1x ἐπαρρησιασάμεθα + " 1x ἐπαρχείας + " 1x ἐπαρχείῳ + " 1x ἐπατήθη + " 1x ἐπαυσάμην + " 1x ἐπαυτοφώρῳ + " 1x ἐπαφρίζοντα + " 2x ἐπαχύνθη + " 1x ἐπαύοντο + " 17x ἐπαύριον + " 3x ἐπαύσαντο + " 2x ἐπαύσατο + " 25x ἐπεί + " 1x ἐπείθετο + " 3x ἐπείθοντο + " 2x ἐπείνασα + " 1x ἐπείνασαν + " 7x ἐπείνασεν + " 1x ἐπείραζεν + " 1x ἐπείραζον + " 2x ἐπείρασαν + " 1x ἐπείρασας + " 2x ἐπείρασεν + " 2x ἐπείσθησαν + " 1x ἐπεβίβασαν + " 1x ἐπεγέγραπτο + " 3x ἐπεγίνωσκον + " 1x ἐπεγνωκέναι + " 1x ἐπεγνωκόσι + " 1x ἐπεγνώσθην + " 1x ἐπεδίδου + " 1x ἐπεδόθη + " 1x ἐπεζήτησεν + " 1x ἐπεζήτουν + " 1x ἐπεθύμει + " 2x ἐπεθύμησα + " 2x ἐπεθύμησαν + " 8x ἐπειδή + " 1x ἐπειράσθησαν + " 1x ἐπειρῶντο + " 1x ἐπεισαγωγή + " 1x ἐπεισελεύσεται + " 1x ἐπεκάθισεν + " 1x ἐπεκάλεσαν + " 1x ἐπεκέκλητο + " 1x ἐπεκαλύφθησαν + " 1x ἐπεκλήθη + " 1x ἐπεκτεινόμενος + " 2x ἐπελάβετο + " 1x ἐπελάθετο + " 2x ἐπελάθοντο + " 1x ἐπελεύσεται + " 1x ἐπελθόντος + " 1x ἐπελθών + " 2x ἐπεμείναμεν + " 1x ἐπεμελήθη + " 2x ἐπενδύσασθαι + " 1x ἐπενδύτην + " 1x ἐπενεγκεῖν + " 1x ἐπενθήσατε + " 1x ἐπεποίθει + " 1x ἐπερίσσευον + " 1x ἐπερίσσευσαν + " 4x ἐπερίσσευσεν + " 1x ἐπερχομέναις + " 1x ἐπερχομένοις + " 1x ἐπερχομένων + " 1x ἐπερωτάτωσαν + " 1x ἐπερωτήσας + " 1x ἐπερωτήσατε + " 1x ἐπερωτᾶν + " 3x ἐπερωτῆσαι + " 1x ἐπερωτῶντα + " 2x ἐπερωτῶσιν + " 1x ἐπερώτημα + " 2x ἐπεσκέψασθε + " 2x ἐπεσκέψατο + " 1x ἐπεσκίαζεν + " 1x ἐπεσκίασεν + " 1x ἐπεστήριξαν + " 1x ἐπεστείλαμεν + " 1x ἐπεστράφητε + " 1x ἐπεστρέψατε + " 1x ἐπετίθεσαν + " 1x ἐπετίμα + " 2x ἐπετίμησαν + " 15x ἐπετίμησεν + " 3x ἐπετίμων + " 1x ἐπετράπη + " 1x ἐπεφάνη + " 1x ἐπεφώνει + " 3x ἐπεφώνουν + " 1x ἐπεχείρησαν + " 1x ἐπεχείρουν + " 1x ἐπεῖδεν + " 1x ἐπεῖχεν + " 1x ἐπηγγείλαντο + " 5x ἐπηγγείλατο + " 1x ἐπηκολούθησεν + " 1x ἐπηκροῶντο + " 1x ἐπηρεάζοντες + " 1x ἐπηρεαζόντων + " 10x ἐπηρώτα + " 7x ἐπηρώτησαν + " 16x ἐπηρώτησεν + " 9x ἐπηρώτων + " 1x ἐπιάσατε + " 1x ἐπιάσθη + " 2x ἐπιβάλλει + " 1x ἐπιβάλλον + " 1x ἐπιβάλλουσιν + " 1x ἐπιβάλω + " 2x ἐπιβάντες + " 1x ἐπιβάς + " 1x ἐπιβαίνειν + " 1x ἐπιβαλεῖν + " 1x ἐπιβαλοῦσιν + " 2x ἐπιβαλών + " 2x ἐπιβαρῆσαι + " 1x ἐπιβαρῶ + " 1x ἐπιβεβηκώς + " 1x ἐπιβιβάσαντες + " 1x ἐπιβιβάσας + " 1x ἐπιβλέψαι + " 1x ἐπιβλέψητε + " 1x ἐπιβουλή + " 1x ἐπιβουλαῖς + " 2x ἐπιβουλῆς + " 1x ἐπιγαμβρεύσει + " 2x ἐπιγείων + " 1x ἐπιγεγραμμένα + " 1x ἐπιγεγραμμένη + " 1x ἐπιγενομένου + " 1x ἐπιγινωσκέτω + " 1x ἐπιγινωσκόμενοι + " 2x ἐπιγινώσκει + " 1x ἐπιγινώσκεις + " 3x ἐπιγινώσκετε + " 5x ἐπιγνούς + " 2x ἐπιγνοῦσα + " 1x ἐπιγνοῦσιν + " 5x ἐπιγνόντες + " 7x ἐπιγνώσει + " 3x ἐπιγνώσεσθε + " 2x ἐπιγνώσεως + " 1x ἐπιγνώσομαι + " 4x ἐπιγνῶναι + " 1x ἐπιγνῷ + " 1x ἐπιγνῷς + " 2x ἐπιγράψω + " 4x ἐπιγραφή + " 1x ἐπιγραφήν + " 2x ἐπιδέχεται + " 2x ἐπιδείξατε + " 1x ἐπιδεικνύμεναι + " 1x ἐπιδεικνύς + " 3x ἐπιδεῖξαι + " 2x ἐπιδημοῦντες + " 1x ἐπιδιατάσσεται + " 1x ἐπιδιορθώσῃ + " 1x ἐπιδυέτω + " 1x ἐπιδόντες + " 4x ἐπιδώσει + " 1x ἐπιεικές + " 1x ἐπιεικέσιν + " 1x ἐπιεικής + " 1x ἐπιεικείας + " 1x ἐπιεικείᾳ + " 1x ἐπιεικεῖς + " 1x ἐπιεικῆ + " 1x ἐπιζητήσας + " 3x ἐπιζητεῖ + " 1x ἐπιζητεῖτε + " 1x ἐπιζητοῦμεν + " 3x ἐπιζητοῦσιν + " 2x ἐπιζητῶ + " 1x ἐπιθέντα + " 3x ἐπιθέντες + " 2x ἐπιθέντος + " 4x ἐπιθέσεως + " 1x ἐπιθήσει + " 1x ἐπιθήσεται + " 1x ἐπιθήσουσιν + " 1x ἐπιθανατίους + " 5x ἐπιθείς + " 1x ἐπιθεῖναι + " 2x ἐπιθυμήσεις + " 1x ἐπιθυμήσετε + " 1x ἐπιθυμήσουσιν + " 4x ἐπιθυμία + " 1x ἐπιθυμίαι + " 10x ἐπιθυμίαις + " 5x ἐπιθυμίαν + " 13x ἐπιθυμίας + " 3x ἐπιθυμίᾳ + " 2x ἐπιθυμεῖ + " 1x ἐπιθυμεῖτε + " 1x ἐπιθυμητάς + " 1x ἐπιθυμιῶν + " 1x ἐπιθυμοῦμεν + " 1x ἐπιθυμοῦσιν + " 1x ἐπιθυμῆσαι + " 1x ἐπιθυμῶν + " 3x ἐπιθῇ + " 1x ἐπιθῇς + " 1x ἐπιθῶ + " 1x ἐπικάλυμμα + " 1x ἐπικέκλησαι + " 1x ἐπικέκληται + " 1x ἐπικαλέσασθαι + " 2x ἐπικαλέσηται + " 1x ἐπικαλέσωνται + " 1x ἐπικαλεσάμενος + " 2x ἐπικαλεσαμένου + " 1x ἐπικαλεῖσθαι + " 1x ἐπικαλεῖσθε + " 2x ἐπικαλεῖται + " 1x ἐπικαλουμένοις + " 1x ἐπικαλουμένου + " 3x ἐπικαλουμένους + " 1x ἐπικαλουμένων + " 2x ἐπικαλούμενον + " 1x ἐπικαλούμενος + " 2x ἐπικαλοῦμαι + " 1x ἐπικείμενα + " 1x ἐπικείμενον + " 1x ἐπικειμένου + " 1x ἐπικεῖσθαι + " 1x ἐπικληθέν + " 1x ἐπικληθέντα + " 1x ἐπικληθείς + " 1x ἐπικουρίας + " 1x ἐπικράνθη + " 1x ἐπικράνθησαν + " 2x ἐπιλάβωνται + " 1x ἐπιλαβέσθαι + " 1x ἐπιλαβομένου + " 1x ἐπιλαβοῦ + " 5x ἐπιλαβόμενοι + " 5x ἐπιλαβόμενος + " 1x ἐπιλαθέσθαι + " 2x ἐπιλαμβάνεται + " 2x ἐπιλανθάνεσθε + " 1x ἐπιλανθανόμενος + " 1x ἐπιλείψει + " 1x ἐπιλεγομένη + " 1x ἐπιλελησμένον + " 1x ἐπιλεξάμενος + " 1x ἐπιλησμονῆς + " 1x ἐπιλυθήσεται + " 1x ἐπιλύσεως + " 1x ἐπιμένειν + " 1x ἐπιμένετε + " 1x ἐπιμένωμεν + " 1x ἐπιμένωσιν + " 1x ἐπιμένῃς + " 1x ἐπιμαρτυρῶν + " 1x ἐπιμελήσεται + " 1x ἐπιμελείας + " 1x ἐπιμελῶς + " 1x ἐπιμενῶ + " 3x ἐπιμεῖναι + " 1x ἐπιορκήσεις + " 2x ἐπιούσιον + " 5x ἐπιούσῃ + " 1x ἐπιπίπτειν + " 1x ἐπιπεπτωκός + " 1x ἐπιπεσόντες + " 1x ἐπιπλήξῃς + " 1x ἐπιποθήσατε + " 1x ἐπιποθίαν + " 1x ἐπιποθεῖ + " 1x ἐπιποθούντων + " 2x ἐπιποθοῦντες + " 2x ἐπιποθῶ + " 2x ἐπιποθῶν + " 1x ἐπιπορευομένων + " 2x ἐπιπόθησιν + " 1x ἐπιπόθητοι + " 1x ἐπιράπτει + " 2x ἐπιρίψαντες + " 1x ἐπισιτισμόν + " 1x ἐπισκέπτεσθαι + " 1x ἐπισκέπτῃ + " 1x ἐπισκέψασθαι + " 1x ἐπισκέψασθε + " 1x ἐπισκέψεται + " 1x ἐπισκευασάμενοι + " 1x ἐπισκεψώμεθα + " 1x ἐπισκηνώσῃ + " 1x ἐπισκιάζουσα + " 1x ἐπισκιάσει + " 1x ἐπισκιάσῃ + " 1x ἐπισκοπήν + " 1x ἐπισκοποῦντες + " 3x ἐπισκοπῆς + " 1x ἐπισκόποις + " 1x ἐπισκόπους + " 1x ἐπισπάσθω + " 4x ἐπιστάμενος + " 2x ἐπιστάντες + " 4x ἐπιστάς + " 1x ἐπιστάτα + " 1x ἐπιστήμων + " 2x ἐπιστεύετε + " 2x ἐπιστεύθη + " 2x ἐπιστεύθην + " 1x ἐπιστεύθησαν + " 2x ἐπιστεύσαμεν + " 7x ἐπιστεύσατε + " 1x ἐπιστεῖλαι + " 1x ἐπιστηρίζοντες + " 1x ἐπιστηρίζων + " 2x ἐπιστολάς + " 4x ἐπιστολή + " 6x ἐπιστολήν + " 1x ἐπιστολαί + " 1x ἐπιστολαῖς + " 3x ἐπιστολῆς + " 3x ἐπιστολῇ + " 4x ἐπιστολῶν + " 1x ἐπιστομίζειν + " 2x ἐπιστρέφειν + " 1x ἐπιστρέφετε + " 1x ἐπιστρέφουσιν + " 2x ἐπιστρέψαι + " 6x ἐπιστρέψας + " 1x ἐπιστρέψατε + " 1x ἐπιστρέψει + " 1x ἐπιστρέψω + " 3x ἐπιστρέψωσιν + " 3x ἐπιστρέψῃ + " 1x ἐπιστραφήτω + " 3x ἐπιστραφείς + " 3x ἐπιστρεψάτω + " 1x ἐπιστροφήν + " 1x ἐπιστώθης + " 2x ἐπιστᾶσα + " 1x ἐπιστῇ + " 1x ἐπισυνάγει + " 1x ἐπισυνάξαι + " 1x ἐπισυνάξει + " 1x ἐπισυνάξουσιν + " 1x ἐπισυναγαγεῖν + " 1x ἐπισυναγωγήν + " 1x ἐπισυναγωγῆς + " 1x ἐπισυναχθήσονται + " 1x ἐπισυναχθεισῶν + " 1x ἐπισυνηγμένη + " 1x ἐπισυντρέχει + " 1x ἐπισφαλοῦς + " 1x ἐπισωρεύσουσιν + " 1x ἐπιτάξῃ + " 3x ἐπιτάσσει + " 1x ἐπιτάσσειν + " 1x ἐπιτάσσω + " 1x ἐπιτήδεια + " 1x ἐπιτίθει + " 1x ἐπιτίθεσθαι + " 1x ἐπιτίθησιν + " 3x ἐπιτίμησον + " 6x ἐπιταγήν + " 1x ἐπιταγῆς + " 1x ἐπιτελέσαι + " 1x ἐπιτελέσας + " 1x ἐπιτελέσατε + " 1x ἐπιτελέσει + " 1x ἐπιτελέσῃ + " 1x ἐπιτελεῖν + " 1x ἐπιτελεῖσθαι + " 1x ἐπιτελεῖσθε + " 2x ἐπιτελοῦντες + " 1x ἐπιτιθέασιν + " 1x ἐπιτιθείς + " 1x ἐπιτιμήσας + " 1x ἐπιτιμία + " 2x ἐπιτιμᾶν + " 2x ἐπιτιμῶν + " 1x ἐπιτρέπεται + " 1x ἐπιτρέπω + " 1x ἐπιτρέπῃ + " 1x ἐπιτρέψαντος + " 2x ἐπιτρέψῃ + " 1x ἐπιτροπῆς + " 1x ἐπιτρόπου + " 1x ἐπιτρόπους + " 1x ἐπιτρόπῳ + " 1x ἐπιτυχεῖν + " 3x ἐπιφάνειαν + " 1x ἐπιφέρων + " 1x ἐπιφαινόντων + " 2x ἐπιφανείας + " 1x ἐπιφανείᾳ + " 1x ἐπιφανῆ + " 1x ἐπιφαύσει + " 1x ἐπιφωσκούσῃ + " 1x ἐπιφᾶναι + " 1x ἐπιχέων + " 1x ἐπιχορηγήσατε + " 2x ἐπιχορηγίας + " 1x ἐπιχορηγηθήσεται + " 1x ἐπιχορηγούμενον + " 2x ἐπιχορηγῶν + " 1x ἐπιόρκοις + " 1x ἐπλάνησεν + " 1x ἐπλάσθη + " 1x ἐπλέομεν + " 1x ἐπλήγη + " 1x ἐπλήρου + " 2x ἐπλήρωσαν + " 4x ἐπλήρωσεν + " 5x ἐπλήσθη + " 12x ἐπλήσθησαν + " 2x ἐπλανήθησαν + " 1x ἐπλεονέκτησα + " 1x ἐπλεονέκτησεν + " 1x ἐπλεονεκτήσαμεν + " 2x ἐπλεόνασεν + " 3x ἐπληθύνετο + " 1x ἐπληθύνθη + " 2x ἐπληροῦντο + " 1x ἐπληροῦτο + " 6x ἐπληρώθη + " 1x ἐπλουτήσατε + " 1x ἐπλουτίσθητε + " 2x ἐπλούτησαν + " 1x ἐπνίγοντο + " 12x ἐποίει + " 10x ἐποίησα + " 15x ἐποίησαν + " 6x ἐποίησας + " 74x ἐποίησεν + " 3x ἐποίουν + " 2x ἐποιήσαμεν + " 8x ἐποιήσατε + " 1x ἐποιησάμην + " 3x ἐποικοδομεῖ + " 1x ἐποικοδομηθέντες + " 1x ἐποικοδομούμενοι + " 1x ἐποικοδομοῦντες + " 1x ἐποικοδόμησεν + " 1x ἐποιοῦντο + " 1x ἐπολέμησεν + " 1x ἐπονομάζῃ + " 1x ἐποπτεύοντες + " 1x ἐποπτεύσαντες + " 1x ἐπορευόμεθα + " 1x ἐπορευόμην + " 6x ἐπορεύετο + " 12x ἐπορεύθη + " 4x ἐπορεύθησαν + " 5x ἐπορεύοντο + " 1x ἐποτίσαμεν + " 2x ἐποτίσατε + " 1x ἐποτίσθημεν + " 3x ἐπουράνια + " 1x ἐπουράνιοι + " 1x ἐπουράνιον + " 1x ἐπουράνιος + " 5x ἐπουρανίοις + " 4x ἐπουρανίου + " 3x ἐπουρανίων + " 1x ἐπουρανίῳ + " 1x ἐπράθη + " 1x ἐπράξαμεν + " 1x ἐπράξατε + " 1x ἐπρίσθησαν + " 1x ἐπροφήτευον + " 1x ἐπροφήτευσαν + " 4x ἐπροφήτευσεν + " 1x ἐπροφητεύσαμεν + " 1x ἐπτώχευσεν + " 5x ἐπυνθάνετο + " 2x ἐπυνθάνοντο + " 1x ἐπωρώθη + " 1x ἐπωρώθησαν + " 1x ἐπόπται + " 1x ἐπόρθει + " 1x ἐπόρθουν + " 3x ἐπόρνευσαν + " 2x ἐπότιζεν + " 1x ἐπότισα + " 1x ἐπότισεν + " 1x ἐπύθετο + " 1x ἐπώλησεν + " 1x ἐπώλουν + " 1x ἐπώρωσεν + " 1x ἐπᾶραι + " 1x ἐπῄνεσεν + " 2x ἐπῆραν + " 2x ἐπῆρεν + " 141x ἐπ’ + " 2x ἐράντισεν + " 1x ἐράπισαν + " 3x ἐρήμοις + " 2x ἐρήμου + " 1x ἐρήμους + " 1x ἐρήμωσις + " 24x ἐρήμῳ + " 1x ἐρίου + " 1x ἐρίσει + " 1x ἐρίφια + " 1x ἐρίφων + " 1x ἐραβδίσθην + " 1x ἐραυνᾶτε + " 1x ἐραυνᾷ + " 2x ἐραυνῶν + " 1x ἐραυνῶντες + " 1x ἐραύνησον + " 6x ἐργάζεσθαι + " 3x ἐργάζεσθε + " 5x ἐργάζεται + " 2x ἐργάζομαι + " 1x ἐργάζονται + " 1x ἐργάζου + " 1x ἐργάζῃ + " 1x ἐργάσῃ + " 4x ἐργάται + " 6x ἐργάτας + " 1x ἐργάτην + " 3x ἐργάτης + " 1x ἐργαζομένους + " 3x ἐργαζομένῳ + " 6x ἐργαζόμενοι + " 2x ἐργαζόμενος + " 2x ἐργαζώμεθα + " 4x ἐργασίαν + " 2x ἐργασίας + " 2x ἐργατῶν + " 1x ἐρείσασα + " 1x ἐρεθίζετε + " 1x ἐρεύξομαι + " 17x ἐρεῖ + " 3x ἐρεῖς + " 5x ἐρεῖτε + " 1x ἐρημίαις + " 1x ἐρημίας + " 2x ἐρημίᾳ + " 2x ἐρημοῦται + " 2x ἐρημώσεως + " 1x ἐριθεία + " 2x ἐριθείαν + " 2x ἐριθείας + " 2x ἐριθεῖαι + " 7x ἐροῦμεν + " 5x ἐροῦσιν + " 9x ἐρρέθη + " 1x ἐρρέθησαν + " 2x ἐρριζωμένοι + " 1x ἐρριμμένοι + " 1x ἐρρύσατο + " 2x ἐρχέσθω + " 2x ἐρχομένη + " 1x ἐρχομένης + " 2x ἐρχομένου + " 1x ἐρχομένους + " 1x ἐρχομένων + " 4x ἐρχομένῳ + " 2x ἐρχόμενα + " 4x ἐρχόμενοι + " 17x ἐρχόμενον + " 26x ἐρχόμενος + " 1x ἐρωτήσατε + " 1x ἐρωτήσετε + " 3x ἐρωτήσω + " 1x ἐρωτήσωσιν + " 1x ἐρωτήσῃ + " 1x ἐρωτώντων + " 1x ἐρωτᾶν + " 5x ἐρωτᾷ + " 2x ἐρωτᾷς + " 2x ἐρωτῆσαι + " 8x ἐρωτῶ + " 1x ἐρωτῶμεν + " 1x ἐρωτῶν + " 1x ἐρωτῶντες + " 3x ἐρύσατο + " 1x ἐρύσθην + " 1x ἐρώτησον + " 8x ἐρῶ + " 1x ἐσάλευσεν + " 7x ἐσάλπισεν + " 1x ἐσήμαινεν + " 1x ἐσήμανεν + " 2x ἐσίγησαν + " 1x ἐσαλεύθη + " 2x ἐσείσθη + " 1x ἐσείσθησαν + " 1x ἐσεβάσθησαν + " 1x ἐσθήσεσι + " 10x ἐσθίει + " 6x ἐσθίειν + " 6x ἐσθίετε + " 1x ἐσθίητε + " 2x ἐσθίοντα + " 3x ἐσθίοντες + " 1x ἐσθίοντι + " 8x ἐσθίουσιν + " 10x ἐσθίων + " 2x ἐσθίωσιν + " 2x ἐσθίῃ + " 3x ἐσθιέτω + " 3x ἐσθιόντων + " 3x ἐσθῆτα + " 4x ἐσθῆτι + " 2x ἐσιώπα + " 2x ἐσιώπων + " 1x ἐσκήνωσεν + " 2x ἐσκίρτησεν + " 2x ἐσκανδαλίζοντο + " 1x ἐσκανδαλίσθησαν + " 1x ἐσκληρύνοντο + " 1x ἐσκοτίσθη + " 1x ἐσκοτωμένη + " 1x ἐσκοτωμένοι + " 1x ἐσκοτώθη + " 1x ἐσκυλμένοι + " 21x ἐσμέν + " 31x ἐσμεν + " 1x ἐσμυρνισμένον + " 1x ἐσπαργάνωσεν + " 1x ἐσπαργανωμένον + " 2x ἐσπαρμένον + " 1x ἐσπαταλήσατε + " 1x ἐσπείραμεν + " 1x ἐσπιλωμένον + " 6x ἐσπλαγχνίσθη + " 1x ἐσπουδάσαμεν + " 1x ἐσπούδασα + " 4x ἐστάθη + " 1x ἐστάθησαν + " 25x ἐστέ + " 1x ἐστέναξεν + " 1x ἐστήρικται + " 1x ἐστήρισεν + " 1x ἐστί + " 178x ἐστίν + " 4x ἐσταυρωμένον + " 1x ἐσταυρωμένος + " 5x ἐσταυρώθη + " 2x ἐσταυρώσατε + " 7x ἐσταύρωσαν + " 1x ἐσταύρωται + " 67x ἐστε + " 1x ἐστερέωσεν + " 1x ἐστερεοῦντο + " 1x ἐστερεώθησαν + " 1x ἐστεφάνωσας + " 1x ἐστεφανωμένον + " 1x ἐστηριγμένους + " 572x ἐστιν + " 1x ἐστράφη + " 1x ἐστράφησαν + " 1x ἐστρηνίασεν + " 2x ἐστρωμένον + " 1x ἐστρώννυον + " 1x ἐσυκοφάντησα + " 1x ἐσφάγης + " 1x ἐσφαγμένην + " 2x ἐσφαγμένον + " 1x ἐσφαγμένου + " 2x ἐσφαγμένων + " 3x ἐσφράγισεν + " 2x ἐσφραγίσθητε + " 3x ἐσφραγισμένοι + " 1x ἐσφραγισμένων + " 3x ἐσχάταις + " 1x ἐσχάτας + " 3x ἐσχάτη + " 5x ἐσχάτου + " 1x ἐσχάτους + " 4x ἐσχάτων + " 1x ἐσχάτως + " 8x ἐσχάτῃ + " 2x ἐσχάτῳ + " 2x ἐσχήκαμεν + " 6x ἐσχίσθη + " 1x ἐσχίσθησαν + " 1x ἐσχηκότα + " 1x ἐσωτέραν + " 4x ἐσόμεθα + " 1x ἐσόμενον + " 1x ἐσόπτρου + " 1x ἐσόπτρῳ + " 1x ἐσύλησα + " 4x ἐσώθη + " 1x ἐσώθημεν + " 1x ἐσώτερον + " 1x ἐσῴζοντο + " 1x ἐτάξατο + " 2x ἐτάραξαν + " 1x ἐτάραξεν + " 1x ἐτάρασσε + " 3x ἐτάφη + " 1x ἐτέθη + " 2x ἐτέθην + " 2x ἐτέθησαν + " 2x ἐτέλεσαν + " 5x ἐτέλεσεν + " 1x ἐτέχθη + " 1x ἐτήρησα + " 1x ἐτήρησαν + " 2x ἐτήρησας + " 3x ἐτήρουν + " 1x ἐτίθει + " 1x ἐτίθεσαν + " 2x ἐτίθουν + " 1x ἐτίμησαν + " 1x ἐταπείνωσεν + " 3x ἐταράχθη + " 2x ἐταράχθησαν + " 1x ἐτεκνοτρόφησεν + " 2x ἐτελέσθη + " 1x ἐτελείωσεν + " 1x ἐτελειώθη + " 4x ἐτελεύτησεν + " 1x ἐτηρεῖτο + " 1x ἐτιμήσαντο + " 1x ἐτροποφόρησεν + " 1x ἐτρυφήσατε + " 1x ἐτρύγησεν + " 1x ἐτυμπανίσθησαν + " 4x ἐτόλμα + " 2x ἐτόλμησεν + " 1x ἐτόλμων + " 1x ἐτύθη + " 2x ἐτύφλωσεν + " 15x ἐτῶν + " 1x ἐφάγετε + " 1x ἐφάγομεν + " 5x ἐφάνη + " 1x ἐφάνησαν + " 5x ἐφάπαξ + " 1x ἐφέροντο + " 1x ἐφέστηκεν + " 3x ἐφίλει + " 1x ἐφίμωσεν + " 1x ἐφαλόμενος + " 5x ἐφανέρωσεν + " 11x ἐφανερώθη + " 1x ἐφανερώθησαν + " 4x ἐφείσατο + " 1x ἐφερόμεθα + " 1x ἐφεστώς + " 1x ἐφεστῶτα + " 1x ἐφευρετάς + " 1x ἐφημέρου + " 2x ἐφημερίας + " 2x ἐφθάσαμεν + " 1x ἐφθείραμεν + " 1x ἐφικέσθαι + " 1x ἐφικνούμενοι + " 1x ἐφιμώθη + " 5x ἐφοβήθη + " 14x ἐφοβήθησαν + " 1x ἐφοβεῖτο + " 1x ἐφοβούμην + " 10x ἐφοβοῦντο + " 2x ἐφονεύσατε + " 1x ἐφορέσαμεν + " 1x ἐφρονεῖτε + " 1x ἐφρουρούμεθα + " 1x ἐφρούρει + " 1x ἐφρόνουν + " 1x ἐφρύαξαν + " 1x ἐφυλάξατε + " 1x ἐφυλαξάμην + " 1x ἐφυσιώθησαν + " 1x ἐφωτίσθη + " 3x ἐφύλαξα + " 1x ἐφύλαξεν + " 1x ἐφύτευον + " 1x ἐφύτευσα + " 4x ἐφύτευσεν + " 1x ἐφώνει + " 1x ἐφώνησαν + " 12x ἐφώνησεν + " 1x ἐφώτισεν + " 80x ἐφ’ + " 3x ἐχάρη + " 1x ἐχάρημεν + " 1x ἐχάρην + " 5x ἐχάρησαν + " 1x ἐχάρητε + " 3x ἐχέτω + " 1x ἐχαλάσθην + " 6x ἐχαρίσατο + " 1x ἐχαρίσθη + " 1x ἐχαρίτωσεν + " 2x ἐχθές + " 1x ἐχθρέ + " 6x ἐχθροί + " 13x ἐχθρούς + " 1x ἐχθροῦ + " 2x ἐχθρόν + " 6x ἐχθρός + " 2x ἐχθρῶν + " 4x ἐχιδνῶν + " 1x ἐχλεύαζον + " 1x ἐχομένας + " 3x ἐχομένῃ + " 6x ἐχορτάσθησαν + " 1x ἐχορτάσθητε + " 3x ἐχούσαις + " 2x ἐχούσης + " 1x ἐχούσῃ + " 1x ἐχρηματίσθη + " 1x ἐχρησάμεθα + " 1x ἐχρησάμην + " 1x ἐχρῶντο + " 1x ἐχωρίσθη + " 1x ἐχόμενα + " 9x ἐχόντων + " 2x ἐψευδομαρτύρουν + " 1x ἐψεύσω + " 1x ἐψηλάφησαν + " 1x ἑαυτά + " 4x ἑαυτάς + " 7x ἑαυτήν + " 1x ἑαυταῖς + " 62x ἑαυτούς + " 50x ἑαυτοῖς + " 49x ἑαυτοῦ + " 67x ἑαυτόν + " 6x ἑαυτῆς + " 2x ἑαυτῇ + " 43x ἑαυτῶν + " 27x ἑαυτῷ + " 5x ἑβδομήκοντα + " 1x ἑβδομηκοντάκις + " 2x ἑβδόμην + " 1x ἑβδόμης + " 1x ἑβδόμου + " 1x ἑβδόμῃ + " 1x ἑδραίωμα + " 2x ἑδραῖοι + " 1x ἑδραῖος + " 1x ἑκάστη + " 1x ἑκάστην + " 1x ἑκάστοτε + " 7x ἑκάστου + " 19x ἑκάστῳ + " 1x ἑκατοντάρχας + " 8x ἑκατοντάρχης + " 4x ἑκατοντάρχῃ + " 1x ἑκατονταετής + " 2x ἑκατονταπλασίονα + " 2x ἑκατονταρχῶν + " 15x ἑκατόν + " 1x ἑκατόνταρχον + " 3x ἑκατόνταρχος + " 1x ἑκουσίως + " 1x ἑκούσιον + " 1x ἑκοῦσα + " 1x ἑκών + " 1x ἑλίξεις + " 1x ἑλισσόμενον + " 1x ἑλκύσαι + " 1x ἑλκύσω + " 1x ἑλκύσῃ + " 1x ἑλκῶν + " 1x ἑλπίδι + " 1x ἑλόμενος + " 21x ἑνί + " 1x ἑνδέκατος + " 2x ἑνδεκάτην + " 33x ἑνός + " 2x ἑνότητα + " 9x ἑξήκοντα + " 1x ἑξακοσίων + " 1x ἑξακόσιοι + " 5x ἑξῆς + " 1x ἑορτάζωμεν + " 4x ἑορτή + " 9x ἑορτήν + " 5x ἑορτῆς + " 7x ἑορτῇ + " 85x ἑπτά + " 4x ἑπτάκις + " 1x ἑπτακισχιλίους + " 1x ἑρμηνεία + " 1x ἑρμηνείαν + " 1x ἑρμηνευόμενος + " 2x ἑρμηνεύεται + " 2x ἑρπετά + " 2x ἑρπετῶν + " 1x ἑσπέρα + " 1x ἑσπέραν + " 1x ἑσπέρας + " 3x ἑστάναι + " 1x ἑστήκαμεν + " 3x ἑστήκασιν + " 4x ἑστήκατε + " 1x ἑστηκός + " 1x ἑστηκότα + " 2x ἑστηκότες + " 4x ἑστηκότων + " 2x ἑστηκώς + " 2x ἑστός + " 9x ἑστώς + " 1x ἑστώτων + " 1x ἑστῶσα + " 8x ἑστῶτα + " 6x ἑστῶτας + " 5x ἑστῶτες + " 1x ἑστῶτος + " 6x ἑτέρα + " 3x ἑτέραις + " 3x ἑτέραν + " 2x ἑτέρας + " 2x ἑτέροις + " 6x ἑτέρου + " 4x ἑτέρους + " 4x ἑτέρων + " 1x ἑτέρως + " 4x ἑτέρᾳ + " 11x ἑτέρῳ + " 1x ἑτερογλώσσοις + " 1x ἑτεροδιδασκαλεῖ + " 1x ἑτεροδιδασκαλεῖν + " 1x ἑτεροζυγοῦντες + " 1x ἑτοίμαζε + " 2x ἑτοίμην + " 1x ἑτοίμους + " 3x ἑτοίμως + " 1x ἑτοίμῳ + " 4x ἑτοιμάσαι + " 1x ἑτοιμάσαντες + " 1x ἑτοιμάσας + " 3x ἑτοιμάσατε + " 1x ἑτοιμάσω + " 3x ἑτοιμάσωμεν + " 1x ἑτοιμασίᾳ + " 1x ἑτοιμασθῇ + " 4x ἑωράκαμεν + " 1x ἑωράκασιν + " 3x ἑωράκατε + " 1x ἑωράκει + " 1x ἑωρακέναι + " 1x ἑωρακότες + " 2x ἑωρακώς + " 1x ἑόρακα + " 1x ἑόρακαν + " 1x ἑόρακεν + " 2x ἑώρακα + " 1x ἑώρακαν + " 4x ἑώρακας + " 10x ἑώρακεν + " 1x ἑώρων + " 1x ἔβαλαν + " 21x ἔβαλεν + " 1x ἔβαλλον + " 8x ἔβαλον + " 1x ἔβλεπεν + " 1x ἔβλεπον + " 1x ἔβλεψα + " 3x ἔβρεξεν + " 1x ἔβρυχον + " 1x ἔγγυος + " 5x ἔγειρε + " 1x ἔγερσιν + " 1x ἔγημα + " 1x ἔγκλημα + " 14x ἔγνω + " 1x ἔγνωκα + " 1x ἔγνωκαν + " 1x ἔγνωκας + " 3x ἔγνωκεν + " 6x ἔγνων + " 3x ἔγνως + " 17x ἔγνωσαν + " 1x ἔγνωσται + " 2x ἔγραφεν + " 17x ἔγραψα + " 1x ἔγραψαν + " 8x ἔγραψεν + " 1x ἔδαφος + " 14x ἔδει + " 1x ἔδειξα + " 6x ἔδειξεν + " 2x ἔδειραν + " 2x ἔδησαν + " 4x ἔδησεν + " 1x ἔδοξα + " 2x ἔδοξαν + " 2x ἔδοξε + " 2x ἔδοξεν + " 2x ἔδραμεν + " 3x ἔδραμον + " 1x ἔδυσεν + " 2x ἔδωκα + " 8x ἔδωκαν + " 8x ἔδωκας + " 64x ἔδωκεν + " 1x ἔζησα + " 2x ἔζησαν + " 4x ἔζησεν + " 1x ἔζων + " 3x ἔθαψαν + " 1x ἔθει + " 4x ἔθεντο + " 1x ἔθεσθε + " 1x ἔθεσι + " 1x ἔθεσιν + " 7x ἔθετο + " 2x ἔθη + " 3x ἔθηκα + " 7x ἔθηκαν + " 2x ἔθηκας + " 10x ἔθηκεν + " 7x ἔθνει + " 32x ἔθνεσιν + " 52x ἔθνη + " 18x ἔθνος + " 7x ἔθνους + " 6x ἔθος + " 1x ἔθου + " 1x ἔθρεψαν + " 1x ἔθυον + " 1x ἔθυσας + " 1x ἔθυσεν + " 1x ἔκαμψαν + " 4x ἔκβαλε + " 2x ἔκβασιν + " 1x ἔκγονα + " 1x ἔκδηλος + " 2x ἔκδικος + " 1x ἔκδοτον + " 4x ἔκειτο + " 1x ἔκθαμβοι + " 1x ἔκθετα + " 3x ἔκκοψον + " 2x ἔκλαιεν + " 2x ἔκλαιον + " 1x ἔκλασα + " 6x ἔκλασεν + " 3x ἔκλαυσεν + " 1x ἔκλεισεν + " 1x ἔκλεψαν + " 1x ἔκλιναν + " 1x ἔκοπτον + " 2x ἔκπαλαι + " 5x ἔκραζεν + " 8x ἔκραζον + " 7x ἔκραξαν + " 10x ἔκραξεν + " 3x ἔκρινα + " 2x ἔκρινας + " 2x ἔκρινεν + " 1x ἔκρυψα + " 1x ἔκρυψαν + " 1x ἔκρυψας + " 3x ἔκρυψεν + " 3x ἔκστασις + " 1x ἔκτισας + " 3x ἔκτισεν + " 1x ἔκτισται + " 1x ἔκφοβοι + " 1x ἔλαβε + " 20x ἔλαβεν + " 2x ἔλαβες + " 26x ἔλαβον + " 1x ἔλαθεν + " 1x ἔλαθον + " 6x ἔλαιον + " 3x ἔλαμψεν + " 2x ἔλαττον + " 1x ἔλαχε + " 1x ἔλαχεν + " 60x ἔλεγεν + " 1x ἔλεγξιν + " 2x ἔλεγξον + " 77x ἔλεγον + " 3x ἔλεγχε + " 1x ἔλεγχος + " 18x ἔλεος + " 1x ἔλθητε + " 6x ἔλθω + " 4x ἔλθωσιν + " 33x ἔλθῃ + " 1x ἔλθῃς + " 1x ἔλουσεν + " 1x ἔλυεν + " 1x ἔλυσεν + " 1x ἔμαθεν + " 2x ἔμαθες + " 1x ἔμαθον + " 2x ἔμειναν + " 8x ἔμεινεν + " 2x ἔμελεν + " 3x ἔμελλεν + " 3x ἔμελλον + " 4x ἔμενεν + " 1x ἔμενον + " 1x ἔμιξεν + " 4x ἔμποροι + " 48x ἔμπροσθεν + " 2x ἔμφοβοι + " 2x ἔμφοβος + " 1x ἔμφυτον + " 8x ἔν + " 2x ἔναντι + " 1x ἔνατος + " 1x ἔνδειγμα + " 3x ἔνδειξιν + " 1x ἔνδειξις + " 2x ἔνδικον + " 1x ἔνδοξοι + " 1x ἔνδοξον + " 4x ἔνδυμα + " 2x ἔνθεν + " 6x ἔνι + " 1x ἔνιψα + " 2x ἔνιψεν + " 1x ἔννοιαν + " 1x ἔννομος + " 1x ἔννυχα + " 1x ἔνοχοι + " 1x ἔνοχον + " 7x ἔνοχος + " 2x ἔντιμον + " 1x ἔντιμος + " 3x ἔντρομος + " 1x ἔνυξεν + " 2x ἔξελε + " 4x ἔξελθε + " 26x ἔξεστιν + " 2x ἔξοδον + " 1x ἔξυπνος + " 62x ἔξω + " 13x ἔξωθεν + " 2x ἔοικεν + " 4x ἔπαθεν + " 1x ἔπαθον + " 7x ἔπαινον + " 4x ἔπαινος + " 2x ἔπαισεν + " 1x ἔπαυλις + " 1x ἔπειθεν + " 1x ἔπειθον + " 1x ἔπεισαν + " 14x ἔπειτα + " 9x ἔπεμψα + " 3x ἔπεμψεν + " 4x ἔπεσα + " 12x ἔπεσαν + " 27x ἔπεσεν + " 1x ἔπεχε + " 1x ἔπηξεν + " 1x ἔπιδε + " 2x ἔπιεν + " 3x ἔπινον + " 2x ἔπιον + " 1x ἔπιπτεν + " 1x ἔπλησαν + " 1x ἔπλυναν + " 1x ἔπλυνον + " 2x ἔπνευσαν + " 1x ἔπνιγεν + " 1x ἔπος + " 1x ἔπραξα + " 1x ἔπραξαν + " 2x ἔπραξεν + " 1x ἔπρεπεν + " 1x ἔπταισαν + " 1x ἔπτυσεν + " 58x ἔργα + " 13x ἔργοις + " 38x ἔργον + " 8x ἔργου + " 42x ἔργων + " 10x ἔργῳ + " 13x ἔρημον + " 2x ἔρημος + " 1x ἔριδες + " 1x ἔριδι + " 1x ἔριδος + " 2x ἔριν + " 1x ἔριον + " 4x ἔρις + " 1x ἔριφον + " 2x ἔριψαν + " 1x ἔρρηξεν + " 1x ἔρριπται + " 9x ἔρχεσθαι + " 88x ἔρχεται + " 2x ἔρχηται + " 20x ἔρχομαι + " 20x ἔρχονται + " 2x ἔρχου + " 1x ἔρχῃ + " 1x ἔσβεσαν + " 4x ἔσεσθαι + " 11x ἔσεσθε + " 1x ἔσθητε + " 1x ἔσθοντες + " 1x ἔσθων + " 1x ἔσκαψεν + " 13x ἔσομαι + " 30x ἔσονται + " 2x ἔσπειρα + " 3x ἔσπειρας + " 1x ἔσπειρεν + " 1x ἔσπευδεν + " 116x ἔσται + " 9x ἔστη + " 1x ἔστηκεν + " 9x ἔστησαν + " 7x ἔστησεν + " 143x ἔστιν + " 2x ἔστρεψεν + " 2x ἔστρωσαν + " 11x ἔστω + " 1x ἔστωσαν + " 2x ἔσυρον + " 2x ἔσφαξεν + " 4x ἔσχατα + " 9x ἔσχατοι + " 7x ἔσχατον + " 6x ἔσχατος + " 5x ἔσχεν + " 1x ἔσχες + " 1x ἔσχηκα + " 1x ἔσχηκεν + " 1x ἔσχομεν + " 5x ἔσχον + " 9x ἔσω + " 12x ἔσωθεν + " 4x ἔσωσεν + " 8x ἔσῃ + " 2x ἔταξαν + " 1x ἔτει + " 4x ἔτεκεν + " 2x ἔτεσιν + " 29x ἔτη + " 81x ἔτι + " 1x ἔτιλλον + " 2x ἔτος + " 1x ἔτρεχον + " 1x ἔτυπτεν + " 3x ἔτυπτον + " 5x ἔφαγεν + " 13x ἔφαγον + " 1x ἔφασκεν + " 1x ἔφερεν + " 4x ἔφερον + " 43x ἔφη + " 4x ἔφθασεν + " 1x ἔφθειρεν + " 1x ἔφραξαν + " 5x ἔφυγεν + " 7x ἔφυγον + " 1x ἔχαιρεν + " 1x ἔχαιρον + " 4x ἔχε + " 104x ἔχει + " 30x ἔχειν + " 28x ἔχεις + " 48x ἔχετε + " 11x ἔχητε + " 2x ἔχθρα + " 1x ἔχθραι + " 2x ἔχθραν + " 1x ἔχθρᾳ + " 1x ἔχιδνα + " 2x ἔχοι + " 1x ἔχοιεν + " 39x ἔχομεν + " 4x ἔχον + " 28x ἔχοντα + " 16x ἔχοντας + " 43x ἔχοντες + " 10x ἔχοντι + " 5x ἔχοντος + " 15x ἔχουσα + " 3x ἔχουσαι + " 6x ἔχουσαν + " 1x ἔχουσι + " 34x ἔχουσιν + " 1x ἔχρισας + " 3x ἔχρισεν + " 48x ἔχω + " 6x ἔχωμεν + " 86x ἔχων + " 1x ἔχωσι + " 4x ἔχωσιν + " 11x ἔχῃ + " 4x ἕβδομος + " 2x ἕκαστοι + " 13x ἕκαστον + " 38x ἕκαστος + " 3x ἕκτη + " 3x ἕκτην + " 2x ἕκτης + " 4x ἕκτος + " 2x ἕκτῳ + " 1x ἕλκη + " 1x ἕλκος + " 1x ἕλκουσιν + " 60x ἕν + " 42x ἕνα + " 6x ἕνδεκα + " 3x ἕνεκα + " 18x ἕνεκεν + " 12x ἕξ + " 6x ἕξει + " 4x ἕξεις + " 1x ἕξετε + " 1x ἕξιν + " 2x ἕξουσιν + " 3x ἕστηκα + " 2x ἕστηκας + " 5x ἕστηκεν + " 4x ἕτερα + " 1x ἕτεραι + " 6x ἕτεροι + " 26x ἕτερον + " 15x ἕτερος + " 3x ἕτοιμα + " 6x ἕτοιμοι + " 1x ἕτοιμον + " 3x ἕτοιμος + " 145x ἕως + " 34x Ἐάν + " 1x Ἐβάστασαν + " 1x Ἐβλασφήμησεν + " 1x Ἐβουλόμην + " 34x Ἐγένετο + " 1x Ἐγένοντο + " 1x Ἐγέρθητε + " 1x Ἐγίνετο + " 1x Ἐγγύς + " 1x Ἐγείρεσθε + " 1x Ἐγερθήσεται + " 2x Ἐγερθείς + " 1x Ἐγόγγυζον + " 59x Ἐγώ + " 1x Ἐδόθη + " 2x Ἐζήτουν + " 1x Ἐζεκίαν + " 1x Ἐζεκίας + " 1x Ἐθεώρουν + " 11x Ἐκ + " 2x Ἐκάθισεν + " 1x Ἐκδίκησον + " 1x Ἐκεῖ + " 1x Ἐκεῖθεν + " 1x Ἐκεῖνος + " 1x Ἐκριζώθητι + " 2x Ἐλέησον + " 1x Ἐλήλυθεν + " 10x Ἐλαιῶν + " 1x Ἐλαιῶνος + " 1x Ἐλαμεῖται + " 2x Ἐλεάζαρ + " 1x Ἐλεήσω + " 9x Ἐλεισάβετ + " 1x Ἐλεύθεροι + " 1x Ἐλεύθερος + " 1x Ἐλεύσομαι + " 1x Ἐλεύσονται + " 1x Ἐλθέ + " 1x Ἐλθόντων + " 3x Ἐλθών + " 1x Ἐλιέζερ + " 3x Ἐλιακείμ + " 2x Ἐλιούδ + " 1x Ἐλμαδάμ + " 1x Ἐλογίσθη + " 1x Ἐλπίζω + " 2x Ἐλωΐ + " 1x Ἐλύμας + " 1x Ἐμάχοντο + " 1x Ἐμίσησαν + " 1x Ἐμαρτύρει + " 1x Ἐμμανουήλ + " 1x Ἐμμαοῦς + " 1x Ἐμμώρ + " 4x Ἐμοί + " 1x Ἐμόν + " 51x Ἐν + " 1x Ἐνέγκατε + " 1x Ἐνέμεινεν + " 1x Ἐνδύσασθε + " 1x Ἐνευλογηθήσονται + " 1x Ἐνοικήσω + " 1x Ἐνορκίζω + " 2x Ἐντραπήσονται + " 1x Ἐνώς + " 2x Ἐνώχ + " 7x Ἐξ + " 1x Ἐξέλθατε + " 1x Ἐξήγαγεν + " 1x Ἐξανέστησαν + " 1x Ἐξεκλάσθησαν + " 1x Ἐξερχόμενοι + " 1x Ἐξιόντων + " 2x Ἐξομολογοῦμαι + " 1x Ἐξορκίζω + " 2x Ἐξῆλθεν + " 1x Ἐπέτρεψεν + " 2x Ἐπί + " 1x Ἐπίσκοπον + " 1x Ἐπίστευσα + " 2x Ἐπίστευσεν + " 1x Ἐπίτρεψον + " 1x Ἐπαίνετον + " 1x Ἐπαινῶ + " 1x Ἐπανάγαγε + " 1x Ἐπαφροδίτου + " 1x Ἐπαφρόδιτον + " 1x Ἐπαφρᾶ + " 2x Ἐπαφρᾶς + " 1x Ἐπεί + " 2x Ἐπειδή + " 1x Ἐπειδήπερ + " 1x Ἐπερωτήσω + " 1x Ἐπερωτηθείς + " 1x Ἐπερωτῶ + " 1x Ἐπεσκέψατο + " 1x Ἐπεφάνη + " 1x Ἐπεχείρησαν + " 1x Ἐπηρώτων + " 1x Ἐπιθυμίᾳ + " 2x Ἐπικατάρατος + " 1x Ἐπικουρίων + " 1x Ἐπιμελήθητι + " 1x Ἐπιμενόντων + " 6x Ἐπιστάτα + " 1x Ἐπιστρέψαντες + " 1x Ἐπιτιμήσαι + " 1x Ἐπιτρέπεται + " 1x Ἐποίησεν + " 1x Ἐπροφήτευσεν + " 1x Ἐπῆλθαν + " 3x Ἐπ’ + " 1x Ἐρεῖς + " 1x Ἐρρέθη + " 1x Ἐρυθράν + " 1x Ἐρυθρᾷ + " 1x Ἐρχόμεθα + " 2x Ἐρωτήσω + " 1x Ἐρωτῶ + " 2x Ἐρωτῶμεν + " 1x Ἐσίγησεν + " 1x Ἐσθιόντων + " 1x Ἐσκόρπισεν + " 1x Ἐσλεί + " 3x Ἐσρώμ + " 1x Ἐτρέχετε + " 1x Ἐφάγομεν + " 1x Ἐφέσιοι + " 1x Ἐφέσιον + " 2x Ἐφέσου + " 6x Ἐφέσῳ + " 1x Ἐφανέρωσα + " 3x Ἐφεσίων + " 1x Ἐφραίμ + " 1x Ἐφφαθά + " 1x Ἐφώνησαν + " 1x Ἐφ’ + " 2x Ἐχάρην + " 1x Ἐχθές + " 1x Ἐχθρός + " 1x Ἐᾶτε + " 1x Ἑαυτούς + " 3x Ἑβραΐδι + " 1x Ἑβραίους + " 1x Ἑβραίων + " 7x Ἑβραϊστί + " 1x Ἑβραῖοι + " 1x Ἑβραῖος + " 1x Ἑκατοντάρχου + " 2x Ἑκατόν + " 1x Ἑκουσίως + " 1x Ἑλισαίου + " 1x Ἑλλάδα + " 3x Ἑλλήνων + " 1x Ἑλληνίδων + " 1x Ἑλληνίς + " 1x Ἑλληνικῇ + " 1x Ἑλληνιστάς + " 2x Ἑλληνιστί + " 1x Ἑλληνιστῶν + " 1x Ἑνί + " 1x Ἑνώχ + " 3x Ἑπτά + " 1x Ἑρμογένης + " 1x Ἑρμᾶν + " 2x Ἑρμῆν + " 1x Ἑστώς + " 3x Ἑταῖρε + " 1x Ἑτοίμασον + " 4x Ἑτοιμάσατε + " 1x Ἑωράκαμεν + " 1x Ἑώρακα + " 1x Ἔα + " 1x Ἔβερ + " 9x Ἔγειρε + " 2x Ἔγνω + " 1x Ἔγνωκα + " 2x Ἔγραψα + " 2x Ἔδει + " 1x Ἔδωκεν + " 1x Ἔκβαλε + " 3x Ἔκτεινον + " 1x Ἔκφοβος + " 11x Ἔλεγεν + " 1x Ἔλεγον + " 2x Ἔλεος + " 1x Ἔμεινεν + " 1x Ἔνοχος + " 6x Ἔξελθε + " 2x Ἔξεστιν + " 2x Ἔπειτα + " 2x Ἔπεσεν + " 1x Ἔπρεπεν + " 1x Ἔραστον + " 2x Ἔραστος + " 2x Ἔρημος + " 1x Ἔρρωσθε + " 2x Ἔρχεσθε + " 1x Ἔρχεται + " 9x Ἔρχου + " 1x Ἔσεσθε + " 1x Ἔσονται + " 1x Ἔσται + " 4x Ἔστιν + " 1x Ἔστω + " 1x Ἔστωσαν + " 12x Ἔτι + " 8x Ἔφεσον + " 1x Ἔφη + " 3x Ἔχετε + " 2x Ἔχομεν + " 3x Ἔχοντες + " 1x Ἔχουσι + " 1x Ἕκαστος + " 4x Ἕλλην + " 6x Ἕλληνας + " 3x Ἕλληνες + " 2x Ἕλληνι + " 3x Ἕλληνος + " 5x Ἕλλησιν + " 3x Ἕν + " 1x Ἕνεκα + " 1x Ἕνεκεν + " 1x Ἕξ + " 2x Ἕως + " 2x ἠγάγετε + " 5x ἠγάπα + " 5x ἠγάπησα + " 3x ἠγάπησαν + " 5x ἠγάπησας + " 12x ἠγάπησεν + " 15x ἠγέρθη + " 2x ἠγέρθησαν + " 1x ἠγαλλίασεν + " 4x ἠγαλλιάσατο + " 3x ἠγανάκτησαν + " 1x ἠγανάκτησεν + " 1x ἠγαπήκαμεν + " 1x ἠγαπηκόσι + " 3x ἠγαπημένην + " 3x ἠγαπημένοι + " 1x ἠγαπημένοις + " 2x ἠγαπᾶτε + " 1x ἠγγάρευσαν + " 2x ἠγνόουν + " 1x ἠγοράσθησαν + " 2x ἠγοράσθητε + " 1x ἠγορασμένοι + " 1x ἠγωνίζοντο + " 1x ἠγόραζον + " 2x ἠγόρασα + " 2x ἠγόρασαν + " 1x ἠγόρασας + " 1x ἠγόρασεν + " 1x ἠγώνισμαι + " 1x ἠδίκηκα + " 2x ἠδίκησεν + " 1x ἠδικήσαμεν + " 1x ἠδικήσατε + " 1x ἠδυνάσθη + " 2x ἠδυνήθημεν + " 1x ἠδυνήθην + " 3x ἠδυνήθησαν + " 1x ἠδυνήθητε + " 3x ἠδύναντο + " 4x ἠδύνατο + " 3x ἠθέλησα + " 3x ἠθέλησαν + " 2x ἠθέλησας + " 8x ἠθέλησεν + " 2x ἠθέτησαν + " 1x ἠθελήσαμεν + " 3x ἠθελήσατε + " 1x ἠθροισμένους + " 1x ἠκαιρεῖσθε + " 1x ἠκολουθήκαμεν + " 2x ἠκολουθήσαμεν + " 13x ἠκολούθει + " 18x ἠκολούθησαν + " 7x ἠκολούθησεν + " 2x ἠκολούθουν + " 10x ἠκούσαμεν + " 21x ἠκούσατε + " 3x ἠκούσθη + " 2x ἠκρίβωσεν + " 1x ἠκυρώσατε + " 1x ἠλάττωσας + " 1x ἠλέησα + " 2x ἠλέησεν + " 1x ἠλαττωμένον + " 1x ἠλαττόνησεν + " 1x ἠλαύνετο + " 1x ἠλεήθημεν + " 2x ἠλεήθην + " 1x ἠλεήθητε + " 1x ἠλεημένοι + " 1x ἠλεημένος + " 2x ἠλευθέρωσεν + " 1x ἠλπίζομεν + " 2x ἠλπίκαμεν + " 1x ἠλπίκατε + " 1x ἠλπίσαμεν + " 1x ἠλπικέναι + " 1x ἠλπικότες + " 1x ἠμέλησα + " 2x ἠμφιεσμένον + " 1x ἠμύνατο + " 1x ἠνάγκαζον + " 2x ἠνάγκασεν + " 2x ἠνέχθη + " 2x ἠνέῳξεν + " 1x ἠναγκάσατε + " 1x ἠναγκάσθη + " 1x ἠναγκάσθην + " 1x ἠνεῳγμένη + " 1x ἠνεῳγμένην + " 3x ἠνεῳγμένον + " 4x ἠνεῴχθησαν + " 3x ἠνοίγη + " 1x ἠνοίγησαν + " 1x ἠνοίχθη + " 1x ἠνοίχθησαν + " 1x ἠντληκότες + " 1x ἠξίου + " 1x ἠξίωσα + " 1x ἠξίωται + " 2x ἠπίστησαν + " 2x ἠπίστουν + " 1x ἠπατήθη + " 1x ἠπείθησαν + " 1x ἠπείθουν + " 1x ἠπείλει + " 1x ἠπειθήσατε + " 1x ἠπόρει + " 1x ἠρέθισεν + " 1x ἠρίθμηνται + " 1x ἠρίστησαν + " 1x ἠργάζοντο + " 1x ἠργάσαντο + " 3x ἠργάσατο + " 1x ἠργασάμεθα + " 1x ἠρημωμένην + " 2x ἠρημώθη + " 1x ἠριθμημέναι + " 1x ἠρμένον + " 1x ἠρνήσαντο + " 2x ἠρνήσασθε + " 8x ἠρνήσατο + " 2x ἠρνήσω + " 1x ἠρνεῖτο + " 1x ἠρνημένοι + " 1x ἠρτυμένος + " 5x ἠρώτα + " 8x ἠρώτησαν + " 6x ἠρώτησεν + " 1x ἠρώτουν + " 7x ἠρώτων + " 1x ἠσέβησαν + " 3x ἠσθένει + " 1x ἠσθένησα + " 2x ἠσθένησεν + " 1x ἠσθενήκαμεν + " 1x ἠσπάζοντο + " 1x ἠσπάσατο + " 2x ἠστόχησαν + " 1x ἠσφαλίσαντο + " 1x ἠσφαλίσατο + " 1x ἠτίμασαν + " 1x ἠτακτήσαμεν + " 1x ἠτιμάσατε + " 1x ἠχρεώθησαν + " 1x ἠχῶν + " 941x ἡ + " 1x ἡγήσασθε + " 3x ἡγήσατο + " 1x ἡγίασεν + " 2x ἡγίασται + " 1x ἡγείσθωσαν + " 1x ἡγεμονίας + " 2x ἡγεμονεύοντος + " 2x ἡγεμόνα + " 2x ἡγεμόνας + " 4x ἡγεμόνι + " 5x ἡγεμόνος + " 1x ἡγεμόνων + " 2x ἡγεμόσιν + " 4x ἡγεμών + " 1x ἡγεῖσθαι + " 2x ἡγεῖσθε + " 2x ἡγησάμενος + " 2x ἡγησάμην + " 1x ἡγιάσθη + " 1x ἡγιάσθητε + " 1x ἡγιασμένη + " 2x ἡγιασμένοι + " 3x ἡγιασμένοις + " 1x ἡγιασμένον + " 1x ἡγνικότες + " 1x ἡγνισμένον + " 1x ἡγουμένοις + " 2x ἡγουμένους + " 1x ἡγουμένων + " 2x ἡγούμενοι + " 1x ἡγούμενον + " 3x ἡγούμενος + " 3x ἡγοῦμαι + " 1x ἡγοῦνται + " 3x ἡδέως + " 1x ἡδονήν + " 2x ἡδοναῖς + " 2x ἡδονῶν + " 2x ἡδύοσμον + " 1x ἡλίκην + " 2x ἡλίκον + " 12x ἡλίου + " 2x ἡλίῳ + " 3x ἡλικίαν + " 2x ἡλικίας + " 2x ἡλικίᾳ + " 23x ἡμέρα + " 26x ἡμέραι + " 49x ἡμέραις + " 58x ἡμέραν + " 126x ἡμέρας + " 84x ἡμέρᾳ + " 1x ἡμέτεροι + " 1x ἡμέτερον + " 1x ἡμίσεια + " 1x ἡμίσους + " 1x ἡμαρτήκαμεν + " 21x ἡμερῶν + " 1x ἡμετέρα + " 1x ἡμετέραις + " 1x ἡμετέραν + " 1x ἡμετέρας + " 1x ἡμετέροις + " 1x ἡμετέρων + " 116x ἡμεῖς + " 1x ἡμιθανῆ + " 1x ἡμιώριον + " 166x ἡμᾶς + " 167x ἡμῖν + " 397x ἡμῶν + " 2x ἡνίκα + " 1x ἡρμοσάμην + " 1x ἡρπάγη + " 1x ἡρπάσθη + " 1x ἡσσώθητε + " 1x ἡσυχάζειν + " 1x ἡσυχάσαμεν + " 1x ἡσυχίαν + " 1x ἡσυχίας + " 1x ἡσυχίου + " 2x ἡσυχίᾳ + " 3x ἡσύχασαν + " 1x ἡσύχιον + " 1x ἡτοίμακα + " 6x ἡτοίμασαν + " 2x ἡτοίμασας + " 3x ἡτοίμασεν + " 2x ἡτοίμασται + " 2x ἡτοιμασμένην + " 1x ἡτοιμασμένοι + " 1x ἡτοιμασμένοις + " 3x ἡτοιμασμένον + " 1x ἡττῶνται + " 337x ἤ + " 7x ἤγαγεν + " 13x ἤγαγον + " 1x ἤγγιζεν + " 12x ἤγγικεν + " 2x ἤγγισαν + " 7x ἤγγισεν + " 1x ἤγειραν + " 21x ἤγειρεν + " 1x ἤγεσθε + " 1x ἤγετο + " 59x ἤδη + " 14x ἤθελεν + " 1x ἤθελες + " 8x ἤθελον + " 1x ἤθη + " 1x ἤκμασαν + " 5x ἤκουεν + " 5x ἤκουον + " 35x ἤκουσα + " 17x ἤκουσαν + " 5x ἤκουσας + " 14x ἤκουσεν + " 1x ἤλειφεν + " 1x ἤλειφον + " 1x ἤλειψας + " 2x ἤλειψεν + " 1x ἤλθαμεν + " 1x ἤλθατε + " 9x ἤλθομεν + " 1x ἤλλαξαν + " 1x ἤλπιζεν + " 1x ἤλπικεν + " 5x ἤμεθα + " 11x ἤμελλεν + " 1x ἤμελλον + " 15x ἤμην + " 1x ἤνεγκα + " 3x ἤνεγκαν + " 5x ἤνεγκεν + " 1x ἤνοιξε + " 16x ἤνοιξεν + " 1x ἤπερ + " 1x ἤπιοι + " 1x ἤπιον + " 3x ἤρατε + " 1x ἤρεμον + " 4x ἤρεσεν + " 1x ἤρεσκον + " 3x ἤρθη + " 1x ἤρνηται + " 19x ἤρξαντο + " 39x ἤρξατο + " 4x ἤρχετο + " 6x ἤρχοντο + " 1x ἤρχου + " 4x ἤσθιον + " 1x ἤτοι + " 2x ἤτω + " 2x ἤφιεν + " 2x ἤχθη + " 1x ἤχους + " 1x ἤχῳ + " 8x ἥ + " 2x ἥγημαι + " 1x ἥδιστα + " 4x ἥκει + " 3x ἥκω + " 1x ἥλατο + " 4x ἥλιον + " 14x ἥλιος + " 2x ἥλων + " 3x ἥμαρτεν + " 1x ἥμαρτες + " 7x ἥμαρτον + " 3x ἥμισυ + " 98x ἥν + " 7x ἥξει + " 6x ἥξουσιν + " 3x ἥξω + " 1x ἥρπασεν + " 39x ἥτις + " 2x ἥττημα + " 1x ἥττηται + " 2x ἥψαντο + " 14x ἥψατο + " 1x ἦγεν + " 7x ἦλθαν + " 1x ἦλθε + " 87x ἦλθεν + " 3x ἦλθες + " 60x ἦλθον + " 6x ἦμεν + " 302x ἦν + " 10x ἦραν + " 7x ἦρεν + " 1x ἦρκεν + " 6x ἦς + " 86x ἦσαν + " 2x ἦσθα + " 19x ἦτε + " 2x ἦχος + " 49x ἧς + " 2x ἧσσον + " 32x Ἠ + " 2x Ἠγέρθη + " 1x Ἠγαπημένῳ + " 2x Ἠκολούθει + " 5x Ἠκούσατε + " 1x Ἠκούσθη + " 3x Ἠλεί + " 1x Ἠλεία + " 7x Ἠλείαν + " 16x Ἠλείας + " 1x Ἠλείου + " 4x Ἠλείᾳ + " 1x Ἠλικίαν + " 1x Ἠμέρας + " 1x Ἠμερῶν + " 11x Ἠμεῖς + " 1x Ἠμῖν + " 1x Ἠρώτα + " 1x Ἠρῳδίωνα + " 2x Ἠρῳδιάδα + " 3x Ἠρῳδιάδος + " 1x Ἠρῳδιάς + " 3x Ἠρῳδιανῶν + " 2x Ἠρῴδην + " 25x Ἠρῴδης + " 13x Ἠρῴδου + " 3x Ἠρῴδῃ + " 2x Ἠσαΐαν + " 10x Ἠσαΐας + " 9x Ἠσαΐου + " 1x Ἠσαΐᾳ + " 3x Ἠσαῦ + " 6x Ἤ + " 1x Ἤγαγεν + " 1x Ἤγγιζεν + " 2x Ἤγγικεν + " 1x Ἤγοντο + " 1x Ἤδη + " 2x Ἤκουον + " 2x Ἤκουσαν + " 2x Ἤκουσεν + " 1x Ἤρ + " 2x Ἤρξατο + " 1x Ἥδιστα + " 1x Ἥμαρτον + " 2x Ἥξει + " 1x Ἥψατο + " 2x Ἦλθεν + " 1x Ἦλθον + " 2x Ἦμεν + " 13x Ἦν + " 2x Ἦραν + " 8x Ἦσαν + " 4x ἰάθη + " 1x ἰάθητε + " 4x ἰάσατο + " 1x ἰάσεις + " 1x ἰάσεως + " 1x ἰάσηται + " 3x ἰάσομαι + " 2x ἰάσπιδι + " 1x ἰαθήσεται + " 1x ἰαθήτω + " 1x ἰαθείς + " 1x ἰαθῆναι + " 1x ἰαθῆτε + " 1x ἰαθῇ + " 3x ἰαμάτων + " 3x ἰατροῦ + " 1x ἰατρός + " 1x ἰατρῶν + " 2x ἰδίαις + " 24x ἰδίαν + " 6x ἰδίας + " 10x ἰδίοις + " 11x ἰδίου + " 5x ἰδίους + " 7x ἰδίων + " 12x ἰδίᾳ + " 7x ἰδίῳ + " 38x ἰδεῖν + " 2x ἰδιώτης + " 1x ἰδιώτου + " 2x ἰδιῶται + " 143x ἰδού + " 6x ἰδοῦσα + " 40x ἰδόντες + " 54x ἰδών + " 1x ἰκμάδα + " 1x ἰουδαΐζειν + " 1x ἰοῦ + " 1x ἰσάγγελοι + " 3x ἰσχυρά + " 1x ἰσχυράν + " 1x ἰσχυραί + " 4x ἰσχυροί + " 2x ἰσχυροῦ + " 4x ἰσχυρόν + " 3x ἰσχυρός + " 1x ἰσχυρότεροι + " 1x ἰσχυρότερον + " 4x ἰσχυρότερος + " 1x ἰσχυρᾶς + " 1x ἰσχυρᾷ + " 2x ἰσχυρῶν + " 4x ἰσχύει + " 1x ἰσχύειν + " 1x ἰσχύν + " 2x ἰσχύοντες + " 1x ἰσχύοντος + " 6x ἰσχύος + " 1x ἰσχύς + " 2x ἰσχύσαμεν + " 1x ἰσχύσατε + " 1x ἰσχύσουσιν + " 2x ἰσχύω + " 2x ἰσχύϊ + " 1x ἰσότης + " 1x ἰσότητα + " 1x ἰσότητος + " 1x ἰσότιμον + " 1x ἰσόψυχον + " 7x ἰχθύας + " 2x ἰχθύδια + " 1x ἰχθύες + " 3x ἰχθύν + " 2x ἰχθύος + " 7x ἰχθύων + " 2x ἰός + " 1x ἰώμενος + " 2x ἰᾶσθαι + " 1x ἰᾶται + " 2x ἰᾶτο + " 1x ἰῶτα + " 1x ἱδρώς + " 2x ἱερά + " 2x ἱεράτευμα + " 2x ἱερέα + " 2x ἱερέων + " 1x ἱερατείαν + " 1x ἱερατείας + " 1x ἱερατεύειν + " 11x ἱερεύς + " 3x ἱερεῖ + " 11x ἱερεῖς + " 2x ἱερεῦσιν + " 1x ἱεροπρεπεῖς + " 1x ἱεροσυλεῖς + " 1x ἱεροσύλους + " 1x ἱερουργοῦντα + " 19x ἱεροῦ + " 1x ἱερωσύνην + " 2x ἱερωσύνης + " 1x ἱερόθυτον + " 21x ἱερόν + " 32x ἱερῷ + " 1x ἱκάνωσεν + " 1x ἱκανά + " 2x ἱκανάς + " 2x ἱκαναί + " 1x ἱκαναῖς + " 5x ἱκανοί + " 2x ἱκανούς + " 1x ἱκανοῖς + " 1x ἱκανοῦ + " 8x ἱκανόν + " 10x ἱκανός + " 1x ἱκανότης + " 1x ἱκανώσαντι + " 3x ἱκανῶν + " 2x ἱκανῷ + " 1x ἱκετηρίας + " 1x ἱλάσθητι + " 1x ἱλάσκεσθαι + " 1x ἱλαρόν + " 1x ἱλαρότητι + " 1x ἱλασμόν + " 1x ἱλασμός + " 2x ἱλαστήριον + " 3x ἱμάντα + " 29x ἱμάτια + " 16x ἱμάτιον + " 3x ἱματίοις + " 8x ἱματίου + " 3x ἱματίων + " 1x ἱματίῳ + " 2x ἱματισμένον + " 1x ἱματισμοῦ + " 1x ἱματισμόν + " 1x ἱματισμός + " 2x ἱματισμῷ + " 1x ἱμᾶσιν + " 2x ἱππεῖς + " 1x ἱππικοῦ + " 1x ἱστάνομεν + " 1x ἱστορῆσαι + " 1x ἴασιν + " 2x ἴασπις + " 1x ἴαται + " 19x ἴδε + " 5x ἴδετε + " 12x ἴδητε + " 9x ἴδια + " 1x ἴδιοι + " 18x ἴδιον + " 1x ἴδιος + " 3x ἴδω + " 5x ἴδωμεν + " 9x ἴδωσιν + " 5x ἴδῃ + " 1x ἴδῃς + " 3x ἴσα + " 1x ἴσαι + " 1x ἴσασι + " 1x ἴση + " 1x ἴσην + " 5x ἴσθι + " 1x ἴσον + " 1x ἴσους + " 2x ἴστε + " 2x ἴσχυεν + " 3x ἴσχυον + " 4x ἴσχυσαν + " 1x ἴσχυσας + " 4x ἴσχυσεν + " 1x ἴσως + " 3x ἴχνεσιν + " 1x ἵλεως + " 666x ἵνα + " 2x ἵπποις + " 5x ἵππος + " 2x ἵππου + " 1x ἵππους + " 7x ἵππων + " 2x ἶρις + " 2x Ἰάειρος + " 16x Ἰάκωβον + " 11x Ἰάκωβος + " 1x Ἰάννης + " 1x Ἰάρετ + " 1x Ἰάσονα + " 2x Ἰάσονος + " 2x Ἰάσων + " 27x Ἰακώβ + " 13x Ἰακώβου + " 2x Ἰακώβῳ + " 1x Ἰαμβρῆς + " 1x Ἰανναί + " 1x Ἰατρέ + " 1x Ἰδουμαίας + " 57x Ἰδού + " 1x Ἰδόντες + " 5x Ἰδών + " 1x Ἰεζάβελ + " 3x Ἰερειχώ + " 1x Ἰερεμίου + " 10x Ἰερουσαλήμ + " 5x Ἰεσσαί + " 1x Ἰεφθάε + " 1x Ἰεχονίαν + " 1x Ἰεχονίας + " 326x Ἰησοῦ + " 126x Ἰησοῦν + " 456x Ἰησοῦς + " 1x Ἰκονίου + " 3x Ἰκονίῳ + " 2x Ἰκόνιον + " 1x Ἰλλυρικοῦ + " 2x Ἰορδάνην + " 11x Ἰορδάνου + " 2x Ἰορδάνῃ + " 2x Ἰουδαία + " 8x Ἰουδαίαν + " 27x Ἰουδαίας + " 26x Ἰουδαίοις + " 5x Ἰουδαίου + " 17x Ἰουδαίους + " 64x Ἰουδαίων + " 10x Ἰουδαίᾳ + " 3x Ἰουδαίῳ + " 1x Ἰουδαϊκοῖς + " 1x Ἰουδαϊκῶς + " 2x Ἰουδαϊσμῷ + " 57x Ἰουδαῖοι + " 2x Ἰουδαῖον + " 13x Ἰουδαῖος + " 1x Ἰουλίαν + " 1x Ἰουλίῳ + " 1x Ἰουνίαν + " 13x Ἰούδα + " 8x Ἰούδαν + " 22x Ἰούδας + " 1x Ἰούδᾳ + " 1x Ἰούλιος + " 1x Ἰούστου + " 2x Ἰοῦστος + " 20x Ἰσαάκ + " 3x Ἰσκαριώθ + " 1x Ἰσκαριώτην + " 5x Ἰσκαριώτης + " 2x Ἰσκαριώτου + " 68x Ἰσραήλ + " 2x Ἰσραηλείτης + " 7x Ἰσραηλεῖται + " 1x Ἰσσαχάρ + " 2x Ἰταλίαν + " 2x Ἰταλίας + " 1x Ἰταλικῆς + " 1x Ἰτουραίας + " 2x Ἰωάνα + " 3x Ἰωάνει + " 37x Ἰωάνην + " 53x Ἰωάνης + " 39x Ἰωάνου + " 2x Ἰωάνῃ + " 1x Ἰωήλ + " 2x Ἰωαθάμ + " 1x Ἰωανάν + " 3x Ἰωβήδ + " 1x Ἰωδά + " 1x Ἰωνάμ + " 7x Ἰωνᾶ + " 2x Ἰωνᾶς + " 2x Ἰωράμ + " 1x Ἰωρείμ + " 35x Ἰωσήφ + " 1x Ἰωσήχ + " 2x Ἰωσαφάτ + " 1x Ἰωσείαν + " 1x Ἰωσείας + " 3x Ἰωσῆτος + " 4x Ἰόππην + " 2x Ἰόππης + " 4x Ἰόππῃ + " 1x Ἰώβ + " 1x Ἱεραπόλει + " 4x Ἱερειχώ + " 1x Ἱερεμίαν + " 1x Ἱερεμίου + " 1x Ἱεροσολυμειτῶν + " 1x Ἱεροσολυμεῖται + " 14x Ἱεροσολύμοις + " 11x Ἱεροσολύμων + " 38x Ἱεροσόλυμα + " 66x Ἱερουσαλήμ + " 1x Ἱκανοῦ + " 1x Ἱκανόν + " 15x Ἴδε + " 4x Ἴδετε + " 1x Ἴστε + " 1x Ἵλεως + " 3x Ἵνα + " 2x ὀγδοήκοντα + " 2x ὀγδόῃ + " 2x ὀδυνώμενοι + " 1x ὀδυνᾶσαι + " 1x ὀδυνῶμαι + " 1x ὀδυρμόν + " 1x ὀδυρμός + " 1x ὀδόντα + " 2x ὀδόντας + " 1x ὀδόντες + " 1x ὀδόντος + " 7x ὀδόντων + " 1x ὀδύναις + " 1x ὀδύνη + " 1x ὀθονίοις + " 1x ὀθονίων + " 2x ὀθόνην + " 3x ὀθόνια + " 1x ὀκνήσῃς + " 1x ὀκνηρέ + " 1x ὀκνηροί + " 1x ὀκνηρόν + " 1x ὀκταήμερος + " 10x ὀκτώ + " 6x ὀλίγα + " 1x ὀλίγαι + " 2x ὀλίγας + " 1x ὀλίγην + " 1x ὀλίγης + " 7x ὀλίγοι + " 1x ὀλίγοις + " 13x ὀλίγον + " 2x ὀλίγος + " 1x ὀλίγου + " 2x ὀλίγων + " 1x ὀλίγως + " 4x ὀλίγῳ + " 1x ὀλιγοπιστίαν + " 1x ὀλιγοψύχους + " 4x ὀλιγόπιστοι + " 1x ὀλιγώρει + " 1x ὀλοθρευτοῦ + " 1x ὀλοθρεύων + " 1x ὀλολύζοντες + " 1x ὀλύνθους + " 1x ὀμμάτων + " 3x ὀμνύει + " 1x ὀμνύειν + " 1x ὀμνύετε + " 1x ὀμνύναι + " 1x ὀμνύουσιν + " 2x ὀμόσαι + " 3x ὀμόσας + " 4x ὀμόσῃ + " 1x ὀμόσῃς + " 1x ὀνάριον + " 1x ὀναίμην + " 1x ὀνειδίζειν + " 1x ὀνειδίζεσθε + " 1x ὀνειδίζοντος + " 2x ὀνειδίσωσιν + " 1x ὀνειδιζόντων + " 1x ὀνειδισμοί + " 1x ὀνειδισμοῖς + " 3x ὀνειδισμόν + " 2x ὀνικός + " 1x ὀνομάζειν + " 1x ὀνομάζεται + " 1x ὀνομάζων + " 2x ὀνομάτων + " 1x ὀνομαζέσθω + " 1x ὀνομαζομένου + " 1x ὀνομαζόμενος + " 9x ὀνόματα + " 95x ὀνόματι + " 15x ὀνόματος + " 2x ὀξεῖα + " 1x ὀξεῖαν + " 1x ὀξεῖς + " 4x ὀξύ + " 34x ὀπίσω + " 1x ὀπαῖς + " 1x ὀπτανόμενος + " 2x ὀπτασίαν + " 1x ὀπτασίας + " 1x ὀπτασίᾳ + " 1x ὀπτοῦ + " 1x ὀπώρα + " 1x ὀπῆς + " 1x ὀρέγεται + " 1x ὀρέγονται + " 1x ὀρέξει + " 1x ὀρέων + " 10x ὀργή + " 9x ὀργήν + " 1x ὀργίζεσθε + " 1x ὀργίλον + " 1x ὀργιζόμενος + " 2x ὀργισθείς + " 2x ὀργυιάς + " 14x ὀργῆς + " 3x ὀργῇ + " 1x ὀρεγόμενοι + " 1x ὀρεινήν + " 1x ὀρεινῇ + " 1x ὀρθάς + " 1x ὀρθοποδοῦσιν + " 1x ὀρθοτομοῦντα + " 1x ὀρθριναί + " 1x ὀρθός + " 2x ὀρθῶς + " 1x ὀρνέοις + " 1x ὀρνέου + " 2x ὀρφανούς + " 1x ὀρχησαμένης + " 2x ὀσμή + " 3x ὀσμήν + " 1x ὀσμῆς + " 1x ὀστέα + " 2x ὀστέων + " 1x ὀστράκινα + " 1x ὀστρακίνοις + " 1x ὀσφύας + " 1x ὀσφύες + " 3x ὀσφύν + " 2x ὀσφύος + " 1x ὀσφύϊ + " 11x ὀφείλει + " 3x ὀφείλεις + " 2x ὀφείλετε + " 1x ὀφείλημα + " 6x ὀφείλομεν + " 1x ὀφείλοντες + " 1x ὀφείλοντι + " 2x ὀφείλουσιν + " 1x ὀφειλάς + " 3x ὀφειλέται + " 1x ὀφειλέταις + " 3x ὀφειλέτης + " 1x ὀφειλήματα + " 2x ὀφειλήν + " 2x ὀφειλόμενον + " 1x ὀφθέντες + " 1x ὀφθέντος + " 1x ὀφθήσεται + " 1x ὀφθήσομαι + " 15x ὀφθαλμοί + " 1x ὀφθαλμοδουλίαις + " 1x ὀφθαλμοδουλίαν + " 37x ὀφθαλμούς + " 7x ὀφθαλμοῖς + " 6x ὀφθαλμοῦ + " 15x ὀφθαλμός + " 11x ὀφθαλμῶν + " 8x ὀφθαλμῷ + " 1x ὀφθείς + " 1x ὀφρύος + " 1x ὀχλοποιήσαντες + " 1x ὀχλουμένους + " 1x ὀχυρωμάτων + " 1x ὀψάρια + " 2x ὀψάριον + " 3x ὀψέ + " 1x ὀψία + " 8x ὀψίας + " 2x ὀψαρίων + " 2x ὀψωνίοις + " 1x ὀψόμεθα + " 1x ὀψώνια + " 1x ὀψώνιον + " 2769x ὁ + " 1x ὁδεύων + " 3x ὁδηγήσει + " 1x ὁδηγεῖν + " 3x ὁδηγοί + " 1x ὁδηγοῦ + " 1x ὁδηγόν + " 1x ὁδηγῇ + " 2x ὁδοί + " 1x ὁδοιπορίαις + " 1x ὁδοιπορίας + " 1x ὁδοιπορούντων + " 8x ὁδούς + " 3x ὁδοῖς + " 5x ὁδοῦ + " 48x ὁδόν + " 5x ὁδός + " 1x ὁδῶν + " 23x ὁδῷ + " 1x ὁλοκαυτωμάτων + " 2x ὁλοκαυτώματα + " 1x ὁλοκληρίαν + " 1x ὁλοτελεῖς + " 1x ὁλόκληροι + " 1x ὁλόκληρον + " 1x ὁμίχλαι + " 1x ὁμειρόμενοι + " 1x ὁμιλήσας + " 1x ὁμιλίαι + " 1x ὁμιλεῖν + " 9x ὁμοία + " 1x ὁμοίας + " 28x ὁμοίως + " 1x ὁμοίωσιν + " 11x ὁμοθυμαδόν + " 1x ὁμοιοπαθής + " 1x ὁμοιοπαθεῖς + " 1x ὁμοιωθέντες + " 3x ὁμοιωθήσεται + " 1x ὁμοιωθῆναι + " 1x ὁμοιωθῆτε + " 2x ὁμοιότητα + " 1x ὁμοιώματα + " 5x ὁμοιώματι + " 4x ὁμοιώσω + " 1x ὁμοιώσωμεν + " 1x ὁμολογήσαντες + " 2x ὁμολογήσει + " 3x ὁμολογήσω + " 3x ὁμολογήσῃ + " 1x ὁμολογήσῃς + " 3x ὁμολογίαν + " 3x ὁμολογίας + " 2x ὁμολογεῖ + " 1x ὁμολογεῖται + " 1x ὁμολογουμένως + " 1x ὁμολογούντων + " 1x ὁμολογοῦντες + " 2x ὁμολογοῦσιν + " 1x ὁμολογῶ + " 1x ὁμολογῶμεν + " 1x ὁμολογῶν + " 4x ὁμοῦ + " 1x ὁμότεχνον + " 1x ὁμόφρονες + " 1x ὁπλίσασθε + " 1x ὁποίαν + " 1x ὁποῖοι + " 1x ὁποῖον + " 2x ὁποῖος + " 1x ὁπότε + " 2x ὁράματι + " 2x ὁράματος + " 3x ὁράσει + " 1x ὁράσεις + " 1x ὁρίζει + " 2x ὁρίοις + " 1x ὁρίσας + " 6x ὁρίων + " 1x ὁρατά + " 1x ὁρισθέντος + " 1x ὁρκίζω + " 4x ὁρκωμοσίας + " 2x ὁρμή + " 1x ὁρμήματι + " 1x ὁροθεσίας + " 3x ὁρᾶτε + " 1x ὁρᾷ + " 2x ὁρῶ + " 1x ὁρῶμεν + " 1x ὁρῶν + " 1x ὁρῶντες + " 1x ὁρῶσαι + " 3x ὁσάκις + " 1x ὁσίους + " 1x ὁσίως + " 2x ὁσιότητι + " 1x ὄγδοον + " 2x ὄγδοος + " 1x ὄγκον + " 1x ὄζει + " 3x ὄλεθρον + " 1x ὄλεθρος + " 1x ὄμματα + " 1x ὄν + " 6x ὄναρ + " 1x ὄνειδος + " 106x ὄνομα + " 4x ὄνον + " 1x ὄνου + " 18x ὄντα + " 11x ὄντας + " 26x ὄντες + " 4x ὄντι + " 15x ὄντος + " 6x ὄντων + " 8x ὄντως + " 2x ὄξος + " 4x ὄξους + " 7x ὄπισθεν + " 11x ὄρει + " 4x ὄρεσιν + " 7x ὄρη + " 1x ὄρθρον + " 1x ὄρθρου + " 1x ὄρνεα + " 2x ὄρνις + " 28x ὄρος + " 12x ὄρους + " 1x ὄσφρησις + " 3x ὄφεις + " 2x ὄφελον + " 3x ὄφελος + " 1x ὄφεσιν + " 2x ὄφεων + " 1x ὄφεως + " 3x ὄφιν + " 4x ὄφις + " 27x ὄχλοι + " 11x ὄχλοις + " 35x ὄχλον + " 46x ὄχλος + " 25x ὄχλου + " 17x ὄχλους + " 1x ὄχλων + " 12x ὄχλῳ + " 13x ὄψεσθε + " 4x ὄψεται + " 1x ὄψησθε + " 1x ὄψιμον + " 1x ὄψιν + " 2x ὄψις + " 2x ὄψομαι + " 7x ὄψονται + " 3x ὄψῃ + " 250x ὅ + " 12x ὅθεν + " 8x ὅλη + " 19x ὅλην + " 18x ὅλης + " 34x ὅλον + " 4x ὅλος + " 3x ὅλου + " 1x ὅλους + " 3x ὅλως + " 14x ὅλῃ + " 6x ὅλῳ + " 2x ὅμοια + " 1x ὅμοιαι + " 8x ὅμοιοι + " 9x ὅμοιον + " 11x ὅμοιος + " 3x ὅμως + " 163x ὅν + " 4x ὅπλα + " 2x ὅπλων + " 77x ὅπου + " 52x ὅπως + " 7x ὅραμα + " 4x ὅρια + " 2x ὅρκον + " 1x ὅρκος + " 2x ὅρκου + " 3x ὅρκους + " 2x ὅρκῳ + " 211x ὅς + " 56x ὅσα + " 1x ὅσαι + " 1x ὅσια + " 1x ὅσιον + " 2x ὅσιος + " 24x ὅσοι + " 17x ὅσον + " 3x ὅσους + " 25x ὅστις + " 1x ὅσων + " 3x ὅσῳ + " 107x ὅταν + " 90x ὅτε + " 1281x ὅτι + " 5x ὅτου + " 1x Ὀζείαν + " 1x Ὀζείας + " 1x Ὀλιγόπιστε + " 1x Ὀλυμπᾶν + " 1x Ὀνήσιμον + " 1x Ὀνησίμῳ + " 2x Ὀνησιφόρου + " 2x Ὀνόματος + " 1x Ὀπίσω + " 2x Ὀρθῶς + " 1x Ὀστοῦν + " 1x Ὀφείλομεν + " 1x Ὀφθαλμόν + " 1x Ὀψέ + " 5x Ὀψίας + " 122x Ὁ + " 3x Ὁδοῦ + " 3x Ὁδόν + " 4x Ὁμοία + " 3x Ὁμοίως + " 1x Ὁρκίζω + " 5x Ὁρᾶτε + " 1x Ὄμβρος + " 2x Ὄντως + " 1x Ὄρθρου + " 2x Ὄφελον + " 2x Ὄψονται + " 7x Ὅ + " 3x Ὅθεν + " 1x Ὅλην + " 1x Ὅλως + " 4x Ὅν + " 5x Ὅπου + " 1x Ὅπως + " 5x Ὅρα + " 10x Ὅς + " 2x Ὅσιον + " 1x Ὅσιος + " 5x Ὅσοι + " 1x Ὅστις + " 16x Ὅταν + " 11x Ὅτε + " 12x Ὅτι + " 1x ὑάκινθος + " 1x ὑάλῳ + " 1x ὑακινθίνους + " 1x ὑαλίνη + " 2x ὑαλίνην + " 1x ὑβρίζεις + " 1x ὑβρίσαι + " 1x ὑβρισθέντες + " 1x ὑβρισθήσεται + " 1x ὑβριστάς + " 1x ὑβριστήν + " 7x ὑγιής + " 1x ὑγιαίνειν + " 2x ὑγιαίνοντα + " 1x ὑγιαίνοντας + " 1x ὑγιαίνοντες + " 1x ὑγιαίνουσιν + " 1x ὑγιαίνωσιν + " 1x ὑγιαινούσης + " 3x ὑγιαινούσῃ + " 1x ὑγιαινόντων + " 1x ὑγιεῖς + " 4x ὑγιῆ + " 1x ὑγρῷ + " 12x ὑδάτων + " 1x ὑδρίαι + " 1x ὑδρίαν + " 1x ὑδρίας + " 1x ὑδροπότει + " 1x ὑδρωπικός + " 1x ὑετούς + " 3x ὑετόν + " 1x ὑετός + " 2x ὑμέτερον + " 1x ὑμέτερος + " 1x ὑμετέρα + " 1x ὑμετέραν + " 2x ὑμετέρας + " 1x ὑμετέρᾳ + " 2x ὑμετέρῳ + " 217x ὑμεῖς + " 2x ὑμνήσαντες + " 1x ὑμνήσω + " 432x ὑμᾶς + " 604x ὑμῖν + " 557x ὑμῶν + " 11x ὑπάγει + " 5x ὑπάγειν + " 5x ὑπάγεις + " 5x ὑπάγετε + " 1x ὑπάγητε + " 1x ὑπάγοντας + " 1x ὑπάγοντες + " 12x ὑπάγω + " 1x ὑπάγῃ + " 3x ὑπάντησιν + " 1x ὑπάρξεις + " 3x ὑπάρχει + " 6x ὑπάρχειν + " 8x ὑπάρχοντα + " 1x ὑπάρχοντας + " 6x ὑπάρχοντες + " 3x ὑπάρχοντος + " 4x ὑπάρχουσιν + " 15x ὑπάρχων + " 1x ὑπάρχωσιν + " 1x ὑπέβαλον + " 1x ὑπέδειξα + " 2x ὑπέδειξεν + " 1x ὑπέθηκαν + " 1x ὑπέλαβεν + " 1x ὑπέμειναν + " 2x ὑπέμεινεν + " 149x ὑπέρ + " 1x ὑπέρακμος + " 2x ὑπέρογκα + " 1x ὑπέστελλεν + " 2x ὑπέστρεφον + " 1x ὑπέστρεψα + " 9x ὑπέστρεψαν + " 6x ὑπέστρεψεν + " 1x ὑπέταξας + " 3x ὑπέταξεν + " 1x ὑπέχουσαι + " 2x ὑπήκοοι + " 1x ὑπήκοος + " 1x ὑπήκουον + " 1x ὑπήκουσαν + " 3x ὑπήκουσεν + " 1x ὑπήνεγκα + " 2x ὑπήντησαν + " 6x ὑπήντησεν + " 2x ὑπακοή + " 8x ὑπακοήν + " 2x ὑπακούει + " 1x ὑπακούειν + " 5x ὑπακούετε + " 5x ὑπακούουσιν + " 3x ὑπακοῆς + " 2x ὑπακοῇ + " 1x ὑπακοῦσαι + " 2x ὑπαντῆσαι + " 1x ὑπαρχούσης + " 5x ὑπαρχόντων + " 1x ὑπείκετε + " 2x ὑπεδέξατο + " 1x ὑπελείφθην + " 1x ὑπεμείνατε + " 1x ὑπεμνήσθη + " 1x ὑπεναντίον + " 1x ὑπεναντίους + " 1x ὑπενεγκεῖν + " 2x ὑπενόουν + " 2x ὑπεπλεύσαμεν + " 3x ὑπεράνω + " 1x ὑπερέκεινα + " 1x ὑπερέχον + " 1x ὑπερέχοντας + " 1x ὑπερέχοντι + " 1x ὑπερέχουσα + " 1x ὑπερήφανοι + " 2x ὑπεραίρωμαι + " 1x ὑπεραιρόμενος + " 1x ὑπεραυξάνει + " 2x ὑπερβάλλον + " 2x ὑπερβάλλουσαν + " 1x ὑπερβαίνειν + " 1x ὑπερβαλλούσης + " 1x ὑπερβαλλόντως + " 1x ὑπερβολή + " 6x ὑπερβολήν + " 1x ὑπερβολῇ + " 2x ὑπερεκπερισσοῦ + " 1x ὑπερεκπερισσῶς + " 1x ὑπερεκτείνομεν + " 1x ὑπερεκχυννόμενον + " 1x ὑπερεντυγχάνει + " 1x ὑπερεπερίσσευσεν + " 1x ὑπερεπλεόνασεν + " 1x ὑπερεχούσαις + " 2x ὑπερηφάνοις + " 2x ὑπερηφάνους + " 1x ὑπερηφανία + " 1x ὑπεριδών + " 2x ὑπερλίαν + " 1x ὑπερνικῶμεν + " 1x ὑπεροχήν + " 1x ὑπεροχῇ + " 1x ὑπερπερισσεύομαι + " 1x ὑπερπερισσῶς + " 1x ὑπερφρονεῖν + " 1x ὑπερύψωσεν + " 2x ὑπερῴῳ + " 2x ὑπερῷον + " 2x ὑπεστειλάμην + " 1x ὑπεστρώννυον + " 1x ὑπετάγη + " 1x ὑπετάγησαν + " 1x ὑπεχώρησεν + " 2x ὑπηκούσατε + " 9x ὑπηρέται + " 1x ὑπηρέταις + " 3x ὑπηρέτας + " 2x ὑπηρέτην + " 1x ὑπηρέτησαν + " 2x ὑπηρέτῃ + " 1x ὑπηρετήσας + " 1x ὑπηρετεῖν + " 3x ὑπηρετῶν + " 1x ὑπογραμμόν + " 1x ὑποδέδεκται + " 4x ὑποδήματα + " 1x ὑποδήματος + " 1x ὑποδείγματα + " 2x ὑποδείγματι + " 3x ὑποδείξω + " 1x ὑποδεδεμένους + " 1x ὑποδεξαμένη + " 3x ὑποδημάτων + " 1x ὑποδησάμενοι + " 1x ὑποδραμόντες + " 1x ὑποζυγίου + " 1x ὑποζωννύντες + " 1x ὑποζύγιον + " 11x ὑποκάτω + " 2x ὑποκρίσει + " 1x ὑποκρίσεις + " 1x ὑποκρίσεως + " 1x ὑποκρινομένους + " 2x ὑποκριτά + " 12x ὑποκριταί + " 2x ὑποκριτῶν + " 1x ὑπολήνιον + " 1x ὑπολαβών + " 1x ὑπολαμβάνειν + " 1x ὑπολαμβάνετε + " 1x ὑπολιμπάνων + " 2x ὑπομένει + " 1x ὑπομένετε + " 1x ὑπομένομεν + " 1x ὑπομένοντες + " 1x ὑπομένω + " 1x ὑπομίμνῃσκε + " 1x ὑπομείναντας + " 3x ὑπομείνας + " 1x ὑπομεμενηκότα + " 2x ὑπομενεῖτε + " 1x ὑπομιμνῄσκειν + " 3x ὑπομνήσει + " 1x ὑπομνήσω + " 4x ὑπομονή + " 11x ὑπομονήν + " 8x ὑπομονῆς + " 9x ὑπομονῇ + " 1x ὑπονοεῖτε + " 7x ὑποπόδιον + " 2x ὑποστάσει + " 2x ὑποστάσεως + " 1x ὑποστείληται + " 1x ὑποστολῆς + " 4x ὑποστρέφειν + " 1x ὑποστρέφοντι + " 1x ὑποστρέφων + " 2x ὑποστρέψαι + " 3x ὑποστρέψαντες + " 1x ὑποστρέψαντι + " 2x ὑποστρέψασαι + " 2x ὑποτάγητε + " 2x ὑποτάξαι + " 1x ὑποτάξαντα + " 1x ὑποτάξαντι + " 1x ὑποτάξαντος + " 3x ὑποτάσσεσθαι + " 1x ὑποτάσσεσθε + " 5x ὑποτάσσεται + " 1x ὑποτάσσησθε + " 1x ὑποτέτακται + " 1x ὑποταγέντων + " 1x ὑποταγήσεται + " 1x ὑποταγησόμεθα + " 5x ὑποταγῇ + " 1x ὑποτασσέσθω + " 1x ὑποτασσέσθωσαν + " 1x ὑποτασσομένας + " 2x ὑποτασσόμεναι + " 2x ὑποτασσόμενοι + " 1x ὑποτασσόμενος + " 1x ὑποτεταγμένα + " 1x ὑποτιθέμενος + " 2x ὑποτύπωσιν + " 1x ὑποφέρει + " 1x ὑποχωρῶν + " 1x ὑπωπιάζω + " 1x ὑπωπιάζῃ + " 185x ὑπό + " 3x ὑπόδειγμα + " 2x ὑπόδημα + " 1x ὑπόδησαι + " 1x ὑπόδικος + " 1x ὑπόκρισιν + " 1x ὑπόκρισις + " 1x ὑπόλειμμα + " 1x ὑπόμνησιν + " 1x ὑπόνοιαι + " 1x ὑπόστασις + " 2x ὑπῆγον + " 5x ὑπῆρχεν + " 2x ὑπῆρχον + " 25x ὑπ’ + " 1x ὑσσώπου + " 1x ὑσσώπῳ + " 5x ὑστέρημα + " 1x ὑστέρησα + " 1x ὑστέρησιν + " 1x ὑστέροις + " 3x ὑστερήματα + " 1x ὑστερήματος + " 1x ὑστερήσαντος + " 1x ὑστερήσατε + " 1x ὑστερήσεως + " 1x ὑστερεῖ + " 3x ὑστερεῖσθαι + " 1x ὑστερηθείς + " 2x ὑστερηκέναι + " 1x ὑστερουμένῳ + " 1x ὑστερούμεθα + " 1x ὑστερούμενοι + " 1x ὑστεροῦνται + " 1x ὑστερῶ + " 1x ὑστερῶν + " 1x ὑφαίνει + " 1x ὑφαντός + " 9x ὑφ’ + " 4x ὑψίστοις + " 2x ὑψηλά + " 1x ὑψηλοφρονεῖν + " 1x ὑψηλοῖς + " 1x ὑψηλοῦ + " 6x ὑψηλόν + " 1x ὑψηλότερος + " 3x ὑψωθήσεται + " 2x ὑψωθήσῃ + " 1x ὑψωθείς + " 2x ὑψωθῆναι + " 1x ὑψωθῆτε + " 1x ὑψωθῶ + " 2x ὑψώσει + " 1x ὑψώσητε + " 1x ὑψώσῃ + " 2x ὑψῶν + " 1x ὕαλος + " 1x ὕβρεσιν + " 1x ὕβρεως + " 1x ὕβριν + " 1x ὕβρισαν + " 1x ὕδασιν + " 5x ὕδατα + " 13x ὕδατι + " 24x ὕδατος + " 24x ὕδωρ + " 1x ὕλην + " 2x ὕμνοις + " 1x ὕμνουν + " 14x ὕπαγε + " 1x ὕπανδρος + " 1x ὕπαρξιν + " 4x ὕπνου + " 2x ὕπνῳ + " 10x ὕστερον + " 1x ὕστερος + " 1x ὕψει + " 3x ὕψος + " 2x ὕψους + " 2x ὕψωμα + " 4x ὕψωσεν + " 2x Ὑμέναιος + " 18x Ὑμεῖς + " 5x Ὑμῖν + " 9x Ὑπάγετε + " 2x Ὑπάγω + " 1x Ὑπέρ + " 1x Ὑπέστρεψαν + " 1x Ὑποκριταί + " 1x Ὑπολαμβάνω + " 1x Ὑπομίμνῃσκε + " 1x Ὑπομνῆσαι + " 1x Ὑποπνεύσαντος + " 1x Ὑποστρέψω + " 1x Ὑποτάγητε + " 1x Ὑπόστρεφε + " 8x Ὑψίστου + " 10x Ὕπαγε + " 1x Ὕστερον + " 1x Ὕψιστος + " 1x Ὗς + " 1x ὠδίν + " 2x ὠδίνουσα + " 1x ὠδίνω + " 2x ὠδίνων + " 1x ὠδῖνας + " 1x ὠνήσατο + " 2x ὠνείδιζον + " 1x ὠνείδισεν + " 1x ὠνομάσθη + " 2x ὠνόμασεν + " 3x ὠργίσθη + " 1x ὠργίσθησαν + " 1x ὠρυόμενος + " 2x ὠρχήσασθε + " 1x ὠρχήσατο + " 6x ὠσίν + " 2x ὠτάριον + " 2x ὠτίον + " 1x ὠτίου + " 1x ὠφέλεια + " 1x ὠφέλησεν + " 1x ὠφέλιμα + " 3x ὠφέλιμος + " 1x ὠφείλετε + " 1x ὠφείλομεν + " 1x ὠφελήθησαν + " 1x ὠφελήσει + " 1x ὠφελήσω + " 1x ὠφελείας + " 4x ὠφελεῖ + " 1x ὠφελεῖται + " 1x ὠφελεῖτε + " 1x ὠφεληθήσεται + " 1x ὠφεληθεῖσα + " 2x ὠφεληθῇς + " 1x ὠφελοῦμαι + " 1x ὡμίλει + " 1x ὡμίλουν + " 1x ὡμοιώθη + " 1x ὡμοιώθημεν + " 1x ὡμολόγησας + " 4x ὡμολόγησεν + " 1x ὡμολόγουν + " 2x ὡραῖοι + " 1x ὡρισμένον + " 1x ὡρισμένος + " 1x ὡρισμένῃ + " 1x ὡρῶν + " 475x ὡς + " 15x ὡσαύτως + " 21x ὡσεί + " 1x ὡσπερεί + " 2x ὤμοσα + " 6x ὤμοσεν + " 2x ὤμους + " 44x ὤν + " 1x ὤρθριζεν + " 3x ὤρυξεν + " 3x ὤφειλεν + " 1x ὤφειλον + " 18x ὤφθη + " 1x ὤφθην + " 1x ὤφθησαν + " 33x ὥρα + " 22x ὥραν + " 21x ὥρας + " 1x ὥρισαν + " 1x ὥρισεν + " 2x ὥρμησαν + " 3x ὥρμησεν + " 28x ὥρᾳ + " 2x ὥς + " 35x ὥσπερ + " 77x ὥστε + " 10x ὦ + " 3x ὦμεν + " 11x ὦσιν + " 17x ὦτα + " 55x ὧδε + " 79x ὧν + " 1x ὧραι + " 2x Ὡμοιώθη + " 1x Ὡραίαν + " 1x Ὡραίᾳ + " 25x Ὡς + " 6x Ὡσαννά + " 2x Ὡσαύτως + " 1x Ὡσηέ + " 1x Ὤμοσεν + " 1x Ὥσπερ + " 7x Ὥστε + " 12x Ὦ + " 5x Ὧδε + " 2x ᾄδοντες + " 3x ᾄδουσιν + " 1x ᾐτήκαμεν + " 2x ᾐτήσαντο + " 1x ᾐτήσασθε + " 1x ᾐτήσατε + " 6x ᾐτήσατο + " 2x ᾐτοῦντο + " 1x ᾐχμαλώτευσεν + " 1x ᾑρέτισα + " 14x ᾔδει + " 5x ᾔδειν + " 3x ᾔδεις + " 8x ᾔδεισαν + " 4x ᾔδειτε + " 1x ᾔτησας + " 43x ᾖ + " 1x ᾖς + " 39x ᾗ + " 5x ᾠδήν + " 2x ᾠδαῖς + " 5x ᾠκοδόμησεν + " 1x ᾠκοδόμητο + " 1x ᾠκοδόμουν + " 1x ᾠόν + " 120x ᾧ + " 3x ῥάβδον + " 3x ῥάβδος + " 1x ῥάβδου + " 5x ῥάβδῳ + " 2x ῥάκους + " 1x ῥάπισμα + " 1x ῥήγνυνται + " 1x ῥήμασιν + " 27x ῥήματα + " 5x ῥήματι + " 6x ῥήματος + " 2x ῥήξει + " 1x ῥήξωσιν + " 1x ῥήσσει + " 1x ῥήτορος + " 6x ῥίζα + " 8x ῥίζαν + " 1x ῥίζης + " 1x ῥίψαν + " 1x ῥίψαντες + " 1x ῥίψας + " 1x ῥαβδίζειν + " 1x ῥαβδούχους + " 1x ῥαβδοῦχοι + " 1x ῥαντίζουσα + " 1x ῥαντίσωνται + " 1x ῥαντισμοῦ + " 1x ῥαντισμόν + " 1x ῥαπίζει + " 1x ῥαπίσμασιν + " 1x ῥαπίσματα + " 2x ῥαφίδος + " 1x ῥεδῶν + " 1x ῥεραντισμένοι + " 1x ῥεύσουσιν + " 12x ῥηθέν + " 1x ῥηθείς + " 6x ῥημάτων + " 1x ῥητῶς + " 1x ῥιζῶν + " 1x ῥιπιζομένῳ + " 1x ῥιπτούντων + " 1x ῥιπῇ + " 1x ῥοιζηδόν + " 3x ῥομφαία + " 1x ῥομφαίαν + " 3x ῥομφαίᾳ + " 1x ῥυπανθήτω + " 1x ῥυπαρίαν + " 1x ῥυπαρός + " 1x ῥυπαρᾷ + " 1x ῥυσάσθω + " 1x ῥυσθέντας + " 1x ῥυσθῶ + " 1x ῥυσθῶμεν + " 1x ῥυτίδα + " 1x ῥυόμενον + " 1x ῥύεσθαι + " 1x ῥύμαις + " 1x ῥύμας + " 2x ῥύμην + " 1x ῥύπου + " 2x ῥύσει + " 4x ῥύσεται + " 1x ῥύσις + " 1x ῥᾳδιουργίας + " 1x ῥᾳδιούργημα + " 1x ῥῆγμα + " 22x ῥῆμα + " 1x ῥῆξον + " 1x ῥῦσαι + " 1x Ῥήγιον + " 1x Ῥίζα + " 2x Ῥαάβ + " 15x Ῥαββεί + " 2x Ῥαββουνεί + " 1x Ῥαγαῦ + " 1x Ῥακά + " 1x Ῥαμά + " 1x Ῥαχάβ + " 1x Ῥαχήλ + " 1x Ῥεβέκκα + " 1x Ῥησά + " 2x Ῥοβοάμ + " 1x Ῥομφά + " 1x Ῥουβήν + " 1x Ῥούθ + " 1x Ῥούφου + " 1x Ῥοῦφον + " 1x Ῥυόμενος + " 2x Ῥωμαίοις + " 1x Ῥωμαίους + " 1x Ῥωμαίων + " 1x Ῥωμαϊστί + " 3x Ῥωμαῖοι + " 1x Ῥωμαῖον + " 4x Ῥωμαῖος + " 1x Ῥόδη + " 1x Ῥόδον + " 4x Ῥώμην + " 1x Ῥώμης + " 3x Ῥώμῃ + note= 1x discontinuous discourse + number= 29091x plural + " 69846x singular + person= 2943x first + " 3729x second + " 12747x third + ref= 726x ACT N:N!N + " 699x ACT N:N!NN + " 2278x ACT N:NN!N + " 2454x ACT N:NN!NN + " 1511x ACT NN:N!N + " 1580x ACT NN:N!NN + " 4429x ACT NN:NN!N + " 4716x ACT NN:NN!NN + " 317x COL N:N!N + " 239x COL N:N!NN + " 527x COL N:NN!N + " 492x COL N:NN!NN + " 476x EPH N:N!N + " 329x EPH N:N!NN + " 889x EPH N:NN!N + " 725x EPH N:NN!NN + " 473x GAL N:N!N + " 301x GAL N:N!NN + " 831x GAL N:NN!N + " 623x GAL N:NN!NN + " 725x HEB N:N!N + " 676x HEB N:N!NN + " 793x HEB N:NN!N + " 727x HEB N:NN!NN + " 308x HEB NN:N!N + " 275x HEB NN:N!NN + " 862x HEB NN:NN!N + " 589x HEB NN:NN!NN + " 402x JAS N:N!N + " 318x JAS N:N!NN + " 557x JAS N:NN!N + " 462x JAS N:NN!NN + " 718x JHN N:N!N + " 546x JHN N:N!NN + " 3173x JHN N:NN!N + " 3103x JHN N:NN!NN + " 966x JHN NN:N!N + " 961x JHN NN:N!NN + " 2968x JHN NN:NN!N + " 3208x JHN NN:NN!NN + " 79x JUD N:N!N + " 103x JUD N:N!NN + " 139x JUD N:NN!N + " 136x JUD N:NN!NN + " 725x LUK N:N!N + " 709x LUK N:N!NN + " 3453x LUK N:NN!N + " 3295x LUK N:NN!NN + " 1190x LUK NN:N!N + " 1073x LUK NN:N!NN + " 4814x LUK NN:NN!N + " 4197x LUK NN:NN!NN + " 706x MAT N:N!N + " 643x MAT N:N!NN + " 1716x MAT N:NN!N + " 1799x MAT N:NN!NN + " 1523x MAT NN:N!N + " 1194x MAT NN:N!NN + " 5531x MAT NN:NN!N + " 5187x MAT NN:NN!NN + " 717x MRK N:N!N + " 659x MRK N:N!NN + " 2551x MRK N:NN!N + " 2316x MRK N:NN!NN + " 561x MRK NN:N!N + " 420x MRK NN:N!NN + " 2128x MRK NN:NN!N + " 1925x MRK NN:NN!NN + " 1439x NCO N:N!N + " 1289x NCO N:N!NN + " 1898x NCO N:NN!N + " 1773x NCO N:NN!NN + " 872x NCO NN:N!N + " 684x NCO NN:N!NN + " 1914x NCO NN:NN!N + " 1420x NCO NN:NN!NN + " 563x NJN N:N!N + " 636x NJN N:N!NN + " 622x NJN N:NN!N + " 779x NJN N:NN!NN + " 636x NPE N:N!N + " 531x NPE N:N!NN + " 844x NPE N:NN!N + " 763x NPE N:NN!NN + " 646x NTH N:N!N + " 630x NTH N:N!NN + " 530x NTH N:NN!N + " 489x NTH N:NN!NN + " 772x NTI N:N!N + " 488x NTI N:N!NN + " 932x NTI N:NN!N + " 633x NTI N:NN!NN + " 81x PHM N:N!N + " 52x PHM N:N!NN + " 142x PHM N:NN!N + " 60x PHM N:NN!NN + " 322x PHP N:N!N + " 252x PHP N:N!NN + " 601x PHP N:NN!N + " 455x PHP N:NN!NN + " 729x REV N:N!N + " 1197x REV N:N!NN + " 746x REV N:NN!N + " 1205x REV N:NN!NN + " 1040x REV NN:N!N + " 1854x REV NN:N!NN + " 1120x REV NN:NN!N + " 1941x REV NN:NN!NN + " 721x ROM N:N!N + " 611x ROM N:N!NN + " 1562x ROM N:NN!N + " 1371x ROM N:NN!NN + " 563x ROM NN:N!N + " 535x ROM NN:N!NN + " 985x ROM NN:NN!N + " 752x ROM NN:NN!NN + " 234x TIT N:N!N + " 149x TIT N:N!NN + " 170x TIT N:NN!N + " 105x TIT N:NN!NN + referent= 12800x nNNNNNNNNNNN + " 800x nNNNNNNNNNNN nNNNNNNNNNNN + " 448x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 200x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 107x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 21x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 42x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 10x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 9x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 2x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 14x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 8x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 1x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 2x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 1x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 6x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + role= 5596x adv + " 10x apposition + " 705x aux + " 1956x io + " 4672x o + " 141x oN + " 1904x p + " 4458x s + " 24767x v + " 2583x vc + strong= 22x N + " 1760x NN + " 15796x NNN + " 120201x NNNN + subjref= 14796x nNNNNNNNNNNN + " 851x nNNNNNNNNNNN nNNNNNNNNNNN + " 571x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 143x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 61x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 10x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 78x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 25x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 2x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 11x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 11x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 9x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 1x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 2x nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN nNNNNNNNNNNN + " 3x nNNNNNNNNNNN;nNNNNNNNNNNN + " 1x nNNNNNNNNNNN;nNNNNNNNNNNN;nNNNNNNNNNNN + tense= 11803x aorist + " 1626x future + " 1689x imperfect + " 1572x perfect + " 88x pluperfect + " 11579x present + type= 3x adverbial + " 23644x common + " 1722x demonstrative + " 552x indefinite + " 633x interrogative + " 11521x personal + " 70x possessive + " 4639x proper + " 1674x relative + unicode= 1x (Καὶ + " 1x (Υἱοῦ + " 1x (εἰ + " 1x (περὶ + " 4x (ὃ + " 1x (ὅ + " 1x (ὅς + " 1x [[Πάντα + " 3x [[καὶ + " 1x [[προσκυνήσαντες + " 1x [[Ἀναστὰς + " 1x [[Ὁ + " 1x [ἐν + " 1x ΑΓΝΩΣΤΩ + " 1x ΑΝΑΘΕΜΑ + " 1x Αἰγυπτίων, + " 1x Αἰγύπτιοι + " 1x Αἰγύπτιον. + " 1x Αἰγύπτιον; + " 1x Αἰγύπτιος + " 4x Αἰγύπτου + " 4x Αἰγύπτου, + " 2x Αἰγύπτῳ + " 2x Αἰγύπτῳ, + " 1x Αἰθίοψ + " 1x Αἰθιόπων, + " 1x Αἰνέα, + " 1x Αἰνέαν + " 1x Αἰνεῖτε + " 1x Αἰνεῖτε, + " 1x Αἰνὼν + " 1x Αἰτεῖτε, + " 7x Αἱ + " 4x Αἴγυπτον + " 6x Αἴγυπτον, + " 1x Αἴγυπτον. + " 1x Αἴγυπτον· + " 1x Αἴγυπτος, + " 1x Αἴτησόν + " 3x Αἶρε + " 1x Αὐγούστου + " 3x Αὐτοὶ + " 9x Αὐτὸς + " 1x Αὐτῶν + " 1x Αὔριον, + " 2x Αὕτη + " 1x ΒΑΒΥΛΩΝ + " 5x ΒΑΣΙΛΕΥΣ + " 1x ΒΑΣΙΛΕΩΝ + " 1x ΒΔΕΛΥΓΜΑΤΩΝ + " 1x Βάαλ. + " 1x Βάλε + " 1x Βάλετε + " 1x Βάτου + " 1x Βάτου, + " 1x Βέροιαν, + " 1x Βίβλος + " 5x Βαβυλὼν + " 1x Βαβυλῶνι + " 3x Βαβυλῶνος + " 2x Βαβυλῶνος. + " 1x Βαλαάμ, + " 2x Βαλαὰμ + " 1x Βαλὰκ + " 1x Βαπτίζοντος. + " 1x Βαπτίζων + " 3x Βαπτιστήν, + " 1x Βαπτιστής· + " 2x Βαπτιστοῦ + " 2x Βαπτιστοῦ. + " 1x Βαπτιστοῦ· + " 2x Βαπτιστὴς + " 1x Βαράκ, + " 2x Βαραββᾶν + " 3x Βαραββᾶν, + " 3x Βαραββᾶν. + " 1x Βαραββᾶν· + " 2x Βαραββᾶς + " 1x Βαραχίου, + " 1x Βαρβάροις, + " 1x Βαρθολομαῖον + " 1x Βαρθολομαῖον, + " 1x Βαρθολομαῖος + " 1x Βαρθολομαῖος, + " 1x Βαριησοῦς, + " 1x Βαριωνᾶ, + " 4x Βαρνάβα + " 1x Βαρνάβα, + " 7x Βαρνάβαν + " 1x Βαρνάβαν, + " 10x Βαρνάβας + " 3x Βαρνάβᾳ + " 2x Βαρνάβᾳ, + " 1x Βαρσαββᾶν + " 1x Βαρσαββᾶν, + " 1x Βαρτιμαῖος, + " 4x Βασιλέα + " 1x Βασιλέως· + " 3x Βασιλεύς + " 18x Βασιλεὺς + " 1x Βασιλεῖ + " 2x Βασιλεῦ + " 7x Βεελζεβοὺλ + " 1x Βελιάρ, + " 2x Βενιαμείν, + " 1x Βενιαμείν. + " 1x Βενιαμεὶν + " 2x Βερνίκη + " 1x Βερνίκης + " 1x Βεροίᾳ + " 1x Βεροιαῖος, + " 1x Βεώρ, + " 1x Βηθανία + " 3x Βηθανίαν + " 3x Βηθανίαν, + " 1x Βηθανίας + " 1x Βηθανίας, + " 3x Βηθανίᾳ + " 1x Βηθζαθά, + " 5x Βηθλέεμ + " 1x Βηθλεέμ, + " 2x Βηθλεὲμ + " 1x Βηθσαϊδά, + " 1x Βηθσαϊδά. + " 1x Βηθσαϊδά· + " 1x Βηθσαϊδάν, + " 1x Βηθσαϊδάν. + " 1x Βηθσαϊδάν· + " 1x Βηθσαϊδὰ + " 3x Βηθφαγὴ + " 1x Βιθυνίαν + " 1x Βιθυνίας, + " 1x Βλάστον + " 1x Βλέπε + " 3x Βλέπεις + " 11x Βλέπετε + " 1x Βλέπετε, + " 1x Βλέπομεν· + " 1x Βλέπω + " 1x Βλέψον + " 1x Βλασφημεῖς, + " 1x Βοανηργές, + " 1x Βούλομαι + " 1x Βοὸς + " 1x Βοῦν + " 1x Βροντῆς· + " 2x Βόες + " 2x Βόσκε + " 1x ΓΗΣ. + " 1x Γάζαν· + " 1x Γάϊον + " 1x Γάϊον· + " 2x Γάϊος + " 1x Γέγονα + " 1x Γέγοναν. + " 1x Γέγονεν. + " 5x Γέγραπται + " 2x Γίνεσθε + " 1x Γαΐῳ + " 1x Γαββαθα. + " 2x Γαβριὴλ + " 1x Γαδαρηνῶν + " 1x Γαλάται, + " 1x Γαλατίαν, + " 2x Γαλατίας, + " 1x Γαλατίας· + " 2x Γαλατικὴν + " 1x Γαλιλαία + " 3x Γαλιλαίαν + " 5x Γαλιλαίαν, + " 7x Γαλιλαίαν. + " 2x Γαλιλαίαν· + " 24x Γαλιλαίας + " 8x Γαλιλαίας, + " 5x Γαλιλαίας. + " 1x Γαλιλαίου. + " 1x Γαλιλαίους + " 1x Γαλιλαίων + " 2x Γαλιλαίᾳ + " 2x Γαλιλαίᾳ, + " 1x Γαλιλαίᾳ. + " 1x Γαλιλαίᾳ· + " 1x Γαλιλαῖοι + " 2x Γαλιλαῖοι, + " 1x Γαλιλαῖοι; + " 2x Γαλιλαῖος + " 2x Γαλιλαῖός + " 1x Γαλλίων + " 1x Γαλλίωνι + " 1x Γαλλίωνος + " 1x Γαμαλιήλ + " 1x Γαμαλιήλ, + " 1x Γεδεών, + " 2x Γεθσημανεί, + " 1x Γεμίσατε + " 1x Γενεὰ + " 2x Γενηθήτω + " 2x Γεννήματα + " 1x Γεννησαρέτ, + " 1x Γεννησαρέτ. + " 1x Γεννησαρὲτ + " 3x Γενομένης + " 1x Γενομένων + " 1x Γερασηνῶν + " 1x Γερασηνῶν, + " 1x Γερασηνῶν. + " 1x Γινώσκειν + " 3x Γινώσκετε + " 1x Γλεύκους + " 1x Γνωρίζομεν + " 1x Γνωρίζω + " 1x Γνῶθι + " 2x Γολγοθᾶ, + " 1x Γολγοθᾶν + " 1x Γομόρρας + " 1x Γομόρρων + " 1x Γράφω + " 2x Γράψον + " 1x Γράψον, + " 1x Γρηγορεῖτε + " 1x Γρηγορεῖτε, + " 1x Γυναῖκα + " 2x Γυνὴ + " 2x Γόμορρα + " 4x Γύναι, + " 1x Γὰδ + " 1x Γὼγ + " 1x Γῆ + " 1x Δάμαρις + " 2x Δέξαι + " 1x Δέομαί + " 2x Δέρβην + " 1x Δέρβην. + " 2x Δέσποτα, + " 1x Δήσαντες + " 1x Δία, + " 2x Δίδυμος + " 1x Δίδυμος, + " 2x Δίκαιον + " 1x Δίκαιος + " 1x Δίκη + " 4x Δαιμόνιον + " 1x Δαλμανουθά. + " 1x Δαλματίαν· + " 1x Δαμασκηνῶν + " 1x Δαμασκόν, + " 3x Δαμασκόν. + " 3x Δαμασκὸν + " 6x Δαμασκῷ + " 2x Δαμασκῷ, + " 1x Δανιὴλ + " 2x Δαυείδ + " 13x Δαυείδ, + " 5x Δαυείδ. + " 1x Δαυείδ; + " 4x Δαυείδ· + " 32x Δαυεὶδ + " 2x Δαυεὶδ, + " 1x Δεήθητε + " 1x Δείξατέ + " 1x Δείραντες + " 1x Δεκαπόλει + " 1x Δεκαπόλεως + " 1x Δεκαπόλεως. + " 1x Δερβαῖος + " 1x Δεσπότην + " 1x Δεσπότης + " 3x Δεῖ + " 1x Δεῖξον + " 2x Δεῦρο, + " 8x Δεῦτε + " 2x Δημήτριος + " 1x Δημητρίῳ + " 1x Δημᾶς + " 1x Δημᾶς, + " 1x Δημᾶς. + " 2x Διάβολος + " 3x Διέλθωμεν + " 1x Διαβὰς + " 1x Διαιρέσεις + " 1x Διακοσίων + " 1x Διακούσομαί + " 1x Διακόνους + " 1x Διαμαρτύρομαι + " 1x Διανοίχθητι. + " 1x Διασάφησον + " 1x Διασπορὰν + " 1x Διασπορᾶς + " 1x Διασπορᾷ + " 1x Διατρίψας + " 2x Διδάσκαλε + " 1x Διδάσκαλε). + " 27x Διδάσκαλε, + " 1x Διδάσκαλε,) + " 1x Διδάσκαλον. + " 5x Διδάσκαλος + " 1x Διδάσκαλος, + " 1x Διεμερίσαντο + " 1x Διετίας + " 1x Δικαίου + " 1x Δικαιωθέντες + " 1x Διοδεύσαντες + " 1x Διονύσιος + " 1x Διοσκούροις. + " 1x Διοτρεφὴς + " 1x Διψῶ. + " 3x Διό, + " 1x Διόπερ, + " 1x Διώκετε + " 36x Διὰ + " 16x Διὸ + " 1x Διὸς + " 1x Διῆλθον + " 1x Δι’ + " 1x Δοκεῖτε + " 1x Δορκάς. + " 1x Δορκάς· + " 1x Δοῦλε + " 1x Δοῦλοι + " 1x Δρουσίλλῃ + " 1x Δυνάμεθα + " 2x Δυνάμεθα. + " 1x Δυνάμεις + " 1x Δυνάστης, + " 1x Δόξα + " 1x Δόξαν + " 3x Δός + " 4x Δότε + " 1x Δύναμαι + " 1x Δύνοντος + " 1x Δώδεκα. + " 1x Δώσω + " 3x Δὸς + " 1x Δῶρον + " 1x Δῶρον, + " 1x ΕΣΤΙΝ + " 56x Εἰ + " 1x Εἰδότες + " 1x Εἰπέ + " 3x Εἰπὲ + " 2x Εἰπὸν + " 9x Εἰρήνη + " 2x Εἰρήνην + " 10x Εἰς + " 1x Εἰσέλθατε + " 1x Εἰσελθόντος + " 1x Εἰσελθὼν + " 1x Εἰσερχόμεθα + " 1x Εἰσὶν + " 3x Εἰσῆλθεν + " 1x Εἰσῆλθες + " 12x Εἴ + " 1x Εἴδομεν + " 3x Εἴπατε + " 1x Εἴρηται + " 1x Εἴτε + " 1x Εἶπέν + " 1x Εἶπαν + " 25x Εἶπεν + " 3x Εἶπον + " 1x Εἶχε + " 2x Εἷς + " 1x Εὐδία, + " 3x Εὐθέως + " 1x Εὐθεῖαν + " 1x Εὐθύνατε + " 2x Εὐλογημένη + " 5x Εὐλογημένος + " 1x Εὐλογητοῦ; + " 4x Εὐλογητὸς + " 1x Εὐνίκῃ, + " 1x Εὐξαίμην + " 1x Εὐοδίαν + " 1x Εὐρακύλων· + " 1x Εὐφράνθητε, + " 1x Εὐφράνθητι, + " 1x Εὐφράτην· + " 1x Εὐφράτῃ. + " 1x Εὐφραίνου + " 1x Εὐχαριστεῖν + " 1x Εὐχαριστοῦμέν + " 2x Εὐχαριστοῦμεν + " 3x Εὐχαριστῶ + " 1x Εὑρέθην + " 1x Εὑρήκαμεν + " 1x Εὔα. + " 1x Εὔβουλος + " 1x Εὔτυχος + " 1x Εὕαν + " 2x Εὖ, + " 1x Εὖγε, + " 1x Εὗρον + " 3x Ζαβουλὼν + " 1x Ζακχαῖε, + " 1x Ζακχαῖος + " 1x Ζακχαῖος, + " 1x Ζαρὰ + " 1x Ζαχαρία, + " 1x Ζαχαρίαν, + " 1x Ζαχαρίαν. + " 4x Ζαχαρίας + " 4x Ζαχαρίου + " 9x Ζεβεδαίου + " 1x Ζεβεδαίου, + " 1x Ζεβεδαίου. + " 1x Ζεβεδαῖον + " 1x Ζεύγη + " 1x Ζηλωτὴν, + " 1x Ζηλωτὴς + " 1x Ζηλώσαντες + " 1x Ζηνᾶν + " 1x Ζητήσετέ + " 1x Ζητούντων + " 1x Ζοροβάβελ + " 1x Ζοροβαβέλ, + " 1x Ζοροβαβὲλ + " 1x Ζωῆς + " 1x Ζῶ + " 1x Ζῶν + " 1x Ζῶν, + " 1x Ζῶσαι + " 2x Η + " 2x Ηὐλήσαμεν + " 1x ΘΕΩ. + " 1x Θάλασσαν + " 1x Θάμαρ, + " 1x Θάνατος, + " 1x Θάρα + " 3x Θάρσει, + " 1x Θάρσει· + " 3x Θέλεις + " 1x Θέλετε + " 3x Θέλω + " 3x Θέλω, + " 1x Θέσθε + " 1x Θαδδαῖον + " 1x Θαδδαῖος, + " 1x Θαλάσσῃ + " 1x Θαρροῦντες + " 2x Θαρσεῖτε, + " 1x Θαυμάζω + " 1x Θεέ + " 1x Θεοί + " 417x Θεοῦ + " 1x Θεοῦ). + " 126x Θεοῦ, + " 106x Θεοῦ. + " 12x Θεοῦ; + " 27x Θεοῦ· + " 2x Θεσσαλονίκην, + " 1x Θεσσαλονίκης + " 1x Θεσσαλονίκῃ + " 1x Θεσσαλονίκῃ, + " 3x Θεσσαλονικέων + " 1x Θεσσαλονικέως· + " 1x Θευδᾶς, + " 1x Θεωρεῖς, + " 2x Θεωρεῖτε + " 1x Θεωροῦντες + " 8x Θεόν + " 39x Θεόν, + " 18x Θεόν. + " 2x Θεόν; + " 5x Θεόν· + " 15x Θεός + " 25x Θεός, + " 21x Θεός. + " 3x Θεός; + " 5x Θεός· + " 1x Θεότητος + " 2x Θεόφιλε, + " 70x Θεὸν + " 2x Θεὸν, + " 229x Θεὸς + " 3x Θεὸς, + " 1x Θεῖον + " 88x Θεῷ + " 27x Θεῷ, + " 23x Θεῷ. + " 2x Θεῷ; + " 13x Θεῷ· + " 1x Θυάτειρα + " 1x Θυατείροις + " 1x Θυατείροις, + " 1x Θυατείρων, + " 2x Θυγάτηρ, + " 1x Θυγατέρες + " 1x Θυσίαν + " 1x Θυσίας + " 1x Θωμᾶν + " 1x Θωμᾶν, + " 7x Θωμᾶς + " 1x Θωμᾶς, + " 1x Θωμᾷ + " 3x ΙΗΣΟΥΣ + " 2x ΙΗΣΟΥΣ, + " 1x ΙΟΥΔΑΙΩΝ + " 3x ΙΟΥΔΑΙΩΝ. + " 2x ΚΑΙ + " 3x ΚΥΡΙΟΣ + " 1x ΚΥΡΙΩΝ. + " 1x Κάθημαι + " 5x Κάθου + " 1x Κάλεσον + " 1x Κάρπῳ, + " 3x Κάϊν + " 1x Κέδρων, + " 3x Καί + " 1x Καίσαρά + " 1x Καίσαρί + " 3x Καίσαρα + " 1x Καίσαρα, + " 3x Καίσαρα. + " 7x Καίσαρι + " 1x Καίσαρι. + " 7x Καίσαρος + " 1x Καίσαρος, + " 3x Καίσαρος. + " 1x Καίσαρος· + " 1x Καθάπερ + " 2x Καθίσατε + " 2x Καθεύδετε + " 2x Καθημένου + " 3x Καθὼς + " 1x Καινὴν + " 1x Καιρῷ + " 2x Καισάριαν + " 1x Καισάριαν, + " 1x Καισάριαν. + " 1x Καισάριαν· + " 2x Καισαρίαν + " 3x Καισαρίαν, + " 4x Καισαρίας + " 2x Καισαρίας, + " 1x Καισαρίᾳ + " 1x Κακοπαθεῖ + " 1x Κακοὺς + " 1x Καλέσω + " 1x Καλοὺς + " 1x Καλύψατε + " 1x Καλὸν + " 5x Καλῶς + " 1x Καλῶς, + " 1x Καναναῖον + " 1x Καναναῖος + " 1x Κανδάκης + " 3x Κανὰ + " 1x Κανᾶ + " 1x Καππαδοκίαν, + " 1x Καππαδοκίας, + " 1x Κατέλιπον + " 1x Κατήντησεν + " 1x Καταβάντος + " 1x Κατακλίνατε + " 1x Κατακολουθήσασαι + " 1x Κατεπόθη + " 8x Κατὰ + " 1x Κατ’ + " 1x Καυχάσθω + " 1x Καυχᾶσθαι + " 2x Καφαρναούμ, + " 4x Καφαρναούμ. + " 2x Καφαρναούμ· + " 7x Καφαρναοὺμ + " 1x Καφαρναοὺμ, + " 1x Καϊάφα + " 3x Καϊάφα, + " 2x Καϊάφαν + " 2x Καϊάφας + " 1x Καϊάφας, + " 2x Καϊνὰμ + " 1x Καύσων + " 396x Καὶ + " 1x Κείς, + " 1x Κενχρεαῖς + " 1x Κενχρεαῖς, + " 1x Κεφάλαιον + " 1x Κεφαλήν, + " 1x Κηφᾶ, + " 1x Κηφᾶν, + " 3x Κηφᾶς + " 1x Κηφᾶς, + " 1x Κηφᾶς; + " 1x Κηφᾷ + " 1x Κηφᾷ, + " 3x Κιλικίαν + " 3x Κιλικίας + " 1x Κιλικίας, + " 1x Κιλικίας. + " 1x Κλήμεντος + " 1x Κλαυδία + " 1x Κλαυδίου. + " 1x Κλαύδιον + " 1x Κλαύδιος + " 1x Κλαῦδα + " 1x Κλεοπᾶς + " 1x Κλωπᾶ + " 1x Κνίδον, + " 1x Κοινωνείτω + " 1x Κολοσσαῖς + " 1x Κορίνθιοι, + " 2x Κορίνθῳ + " 2x Κορίνθῳ, + " 1x Κορβᾶν, + " 1x Κορινθίων + " 1x Κορνήλιε, + " 1x Κορνήλιε. + " 4x Κορνήλιος + " 1x Κορνήλιος, + " 1x Κορνηλίου + " 1x Κούαρτος + " 1x Κρήσκης + " 1x Κρήτην + " 1x Κρήτην. + " 2x Κρήτης + " 1x Κρήτῃ + " 1x Κρίσπον + " 1x Κρίσπος + " 1x Κρανίον, + " 2x Κρανίου + " 1x Κρατοῦντος + " 1x Κρινεῖ + " 1x Κριτής + " 1x Κριτὴς + " 1x Κριτῇ + " 2x Κρῆτες + " 1x Κτίσαντα, + " 1x Κτίστῃ + " 1x Κυπρίῳ, + " 1x Κυρήνην, + " 169x Κυρίου + " 32x Κυρίου, + " 19x Κυρίου. + " 2x Κυρίου; + " 5x Κυρίου· + " 60x Κυρίῳ + " 15x Κυρίῳ, + " 14x Κυρίῳ. + " 1x Κυρίῳ; + " 6x Κυρίῳ· + " 1x Κυρηνίου. + " 1x Κυρηναίων + " 1x Κυρηναῖοι, + " 2x Κυρηναῖον + " 1x Κυρηναῖον, + " 1x Κυρηναῖος, + " 1x Κωσὰμ + " 1x Κόρε + " 2x Κόρινθον. + " 1x Κύπριοι + " 1x Κύπριος + " 2x Κύπρον + " 1x Κύπρον, + " 1x Κύπρον. + " 1x Κύπρου + " 1x Κύριέ + " 13x Κύριε + " 83x Κύριε, + " 3x Κύριε. + " 7x Κύριε; + " 5x Κύριε· + " 1x Κύριοι, + " 41x Κύριον + " 14x Κύριον, + " 7x Κύριον. + " 1x Κύριον; + " 1x Κύριον· + " 107x Κύριος + " 14x Κύριος, + " 8x Κύριος. + " 4x Κύριος· + " 1x Κύριόν + " 9x Κύριός + " 1x Κύων + " 1x Κἀγώ, + " 3x Κἀγὼ + " 1x Κἀκεῖ + " 2x Κἀκεῖθεν + " 1x Κἀμὲ + " 3x Κἂν + " 1x Κῶ, + " 1x Λάβε + " 5x Λάβετε + " 1x Λάβετε· + " 1x Λάζαρε, + " 5x Λάζαρον + " 1x Λάζαρον. + " 7x Λάζαρος + " 1x Λάζαρος, + " 1x Λάμεχ + " 1x Λέγε + " 7x Λέγει + " 1x Λέγετέ + " 1x Λέγουσιν + " 10x Λέγω + " 1x Λέων + " 3x Λίθον + " 1x Λίνος + " 1x Λαλούντων + " 1x Λαοδικέων + " 1x Λαοδικίαν. + " 1x Λαοδικίας + " 4x Λαοδικίᾳ + " 1x Λασαία. + " 1x Λεγιών, + " 1x Λεγιὼν + " 1x Λειτουργούντων + " 1x Λευείτας + " 1x Λευείτης + " 1x Λευείτης, + " 1x Λευειτικῆς + " 4x Λευεὶ + " 2x Λευεὶν + " 2x Λευεὶς + " 1x Λιβερτίνων + " 1x Λιβύης + " 1x Λιθόστρωτον, + " 1x Λιμένας, + " 1x Λογίζομαι + " 1x Λοιπόν, + " 1x Λοιπὸν + " 2x Λουκᾶς + " 1x Λουκᾶς, + " 2x Λούκιος + " 1x Λυδία, + " 1x Λυδίαν, + " 1x Λυκίας. + " 1x Λυκαονίας + " 1x Λυκαονιστὶ + " 2x Λυσίας + " 1x Λυσανίου + " 1x Λωΐδι + " 3x Λόγος + " 1x Λόγος, + " 1x Λόγος. + " 1x Λόγου + " 1x Λύδδα + " 1x Λύδδα. + " 1x Λύδδας + " 2x Λύσατε + " 2x Λύστραν + " 1x Λύστραν. + " 2x Λύστροις + " 1x Λύστροις· + " 1x Λώτ. + " 1x Λώτ· + " 2x Λὼτ + " 2x Λῦσον + " 1x ΜΕΓΑΛΗ, + " 1x ΜΗΤΗΡ + " 1x Μάλχος. + " 8x Μάρθα + " 1x Μάρθα, + " 1x Μάρθα. + " 2x Μάρθαν + " 1x Μάρθας + " 1x Μάρκον + " 1x Μάρκον. + " 1x Μάρκον· + " 1x Μάρκος + " 1x Μάρκου, + " 1x Μέλλει + " 2x Μέλλων + " 5x Μή + " 1x Μήτηρ + " 9x Μήτι + " 1x Μίλητον. + " 1x Μαίνῃ, + " 1x Μαίνῃ. + " 1x Μαγαδάν. + " 2x Μαγδαληνή, + " 1x Μαγδαληνή. + " 8x Μαγδαληνὴ + " 1x Μαγδαληνῇ, + " 1x Μαγώγ, + " 1x Μαδιάμ, + " 1x Μαθθάν, + " 1x Μαθθίαν, + " 1x Μαθθίαν. + " 3x Μαθθαῖον + " 1x Μαθθαῖος + " 1x Μαθθαῖος, + " 1x Μαθθὰν + " 1x Μαθθὰτ + " 1x Μαθουσαλὰ + " 1x Μακάριαι + " 6x Μακάριοι + " 4x Μακάριος + " 1x Μακάριόν + " 1x Μακαρία + " 1x Μακεδονία + " 6x Μακεδονίαν + " 3x Μακεδονίαν, + " 2x Μακεδονίαν. + " 3x Μακεδονίας + " 2x Μακεδονίας, + " 1x Μακεδονίας. + " 1x Μακεδονίας· + " 2x Μακεδονίᾳ + " 1x Μακεδονίᾳ. + " 1x Μακεδόνας, + " 1x Μακεδόνες + " 1x Μακεδόνος + " 1x Μακεδόσιν + " 1x Μακεδών + " 1x Μακροθυμήσατε + " 2x Μακροθύμησον + " 1x Μαλελεὴλ + " 1x Μαναήν + " 1x Μανασσῆ + " 1x Μανασσῆ, + " 1x Μανασσῆς + " 17x Μαρία + " 1x Μαρία, + " 1x Μαρίαν + " 6x Μαρίας + " 1x Μαρίας, + " 1x Μαρίᾳ + " 2x Μαριάμ + " 1x Μαριάμ, + " 2x Μαριάμ. + " 1x Μαριάμ· + " 1x Μαριάν, + " 19x Μαριὰμ + " 1x Μαριὰμ, + " 1x Μαρτυρεῖ + " 1x Μαρτυρῶ + " 1x Ματθὰτ + " 2x Ματταθίου + " 1x Ματταθὰ + " 1x Μαὰθ + " 1x Μεγάλα + " 2x Μεγάλη + " 1x Μεγάλη. + " 2x Μεγαλωσύνης + " 1x Μεγαλύνει + " 1x Μεθ’ + " 1x Μελίτη + " 1x Μελεὰ + " 2x Μελχεὶ + " 3x Μελχισέδεκ + " 1x Μελχισέδεκ, + " 4x Μελχισέδεκ. + " 1x Μεννὰ + " 1x Μενοῦν + " 1x Μεσοποταμίαν, + " 1x Μεσοποταμίᾳ + " 1x Μεσσίαν + " 1x Μεσσίας + " 1x Μετάβα + " 1x Μετάβηθι + " 1x Μετανοήσατε, + " 1x Μετανοεῖτε, + " 1x Μετανοεῖτε· + " 1x Μετανοῶ, + " 30x Μετὰ + " 1x Μεῖνον + " 1x Μηδένα + " 2x Μηδαμῶς, + " 2x Μηδενὶ + " 3x Μηδεὶς + " 1x Μηδὲ + " 4x Μηδὲν + " 3x Μηκέτι + " 3x Μικρὸν + " 1x Μιλήτου + " 1x Μιλήτῳ + " 1x Μιτυλήνην· + " 2x Μιχαὴλ + " 1x Μνάσωνί + " 1x Μνημονεύετε + " 1x Μνημόνευε + " 1x Μολὸχ + " 2x Μυσίαν + " 1x Μωρέ, + " 1x Μωσῆς + " 1x Μωϋσέα + " 18x Μωϋσέως + " 3x Μωϋσέως, + " 1x Μωϋσέως. + " 1x Μωϋσέως; + " 5x Μωϋσεῖ + " 3x Μωϋσεῖ, + " 3x Μωϋσῆν + " 1x Μωϋσῆν, + " 36x Μωϋσῆς + " 4x Μωϋσῆς, + " 1x Μωϋσῆς. + " 1x Μωϋσῆς; + " 1x Μωϋσῇ + " 1x Μόνον + " 1x Μύρρα + " 75x Μὴ + " 1x Μᾶρκον + " 1x Μᾶρκος + " 1x Μᾶρκος, + " 1x Μῆδοι + " 1x ΝΑΖΩΡΑΙΟΣ + " 1x Νέαν + " 1x Νήψατε, + " 1x Νίγερ, + " 1x Ναΐν, + " 4x Ναί + " 9x Ναί, + " 3x Ναί. + " 2x Ναί· + " 1x Ναασσών, + " 2x Ναασσὼν + " 1x Ναγγαὶ + " 1x Ναζαρά, + " 1x Ναζαρέθ, + " 1x Ναζαρέθ. + " 1x Ναζαρέτ. + " 1x Ναζαρέτ· + " 2x Ναζαρηνέ; + " 1x Ναζαρηνοῦ + " 1x Ναζαρηνοῦ, + " 1x Ναζαρηνός + " 1x Ναζαρηνὸν + " 1x Ναζαρὰ + " 2x Ναζαρὲθ + " 2x Ναζαρὲθ, + " 2x Ναζαρὲτ + " 2x Ναζωραίου + " 1x Ναζωραίου, + " 1x Ναζωραίου. + " 1x Ναζωραίων + " 1x Ναζωραῖον, + " 2x Ναζωραῖον. + " 3x Ναζωραῖος + " 1x Ναζωραῖος, + " 3x Ναθαναήλ + " 3x Ναθαναὴλ + " 1x Ναθὰμ + " 1x Ναιμὰν + " 1x Ναοὺμ + " 1x Ναρκίσσου + " 1x Ναχὼρ + " 1x Ναὶ + " 1x Νεανίσκε, + " 1x Νεκρώσατε + " 1x Νεφθαλείμ, + " 1x Νεφθαλείμ· + " 1x Νεφθαλεὶμ + " 1x Νηρέα + " 1x Νηρεὶ + " 1x Νηστείαν + " 1x Νικάνορα + " 1x Νικολαϊτῶν + " 1x Νικολαϊτῶν, + " 4x Νικόδημος + " 1x Νικόδημος, + " 1x Νικόλαον + " 1x Νικόπολιν· + " 1x Νινευείταις + " 2x Νινευεῖται + " 1x Νομίζω + " 2x Νυνὶ + " 1x Νύμφαν + " 6x Νῦν + " 6x Νῶε + " 2x Νῶε, + " 1x Ξένων + " 5x Ο + " 1x ΟΥΤΟΣ + " 1x ΟΥΤΟΣ. + " 43x Οἱ + " 5x Οἴδαμεν + " 4x Οἴδατε + " 5x Οἶδά + " 4x Οἶδα + " 2x Οἶδας + " 1x Οἶνον + " 46x Οὐ + " 2x Οὐαί + " 16x Οὐαὶ + " 5x Οὐδέποτε + " 1x Οὐδείς + " 1x Οὐδείς, + " 8x Οὐδεὶς + " 6x Οὐδὲ + " 5x Οὐδὲν + " 1x Οὐθενός. + " 60x Οὐκ + " 1x Οὐκέτι + " 1x Οὐκοῦν + " 1x Οὐρίου, + " 1x Οὐρβανὸν + " 7x Οὐχ + " 3x Οὐχί, + " 6x Οὐχὶ + " 1x Οὐὰ + " 1x Οὒ + " 1x Οὓς + " 1x Οὔ + " 3x Οὔ, + " 3x Οὔ. + " 2x Οὔπω + " 1x Οὔσης + " 4x Οὔτε + " 14x Οὕτως + " 5x Οὗτοί + " 7x Οὗτοι + " 12x Οὗτος + " 16x Οὗτός + " 1x ΠΟΡΝΩΝ + " 1x Πάγου + " 1x Πάλαι + " 9x Πάλιν + " 4x Πάντα + " 4x Πάντες + " 1x Πάντοτε + " 2x Πάντων + " 2x Πάντως + " 1x Πάρθοι + " 1x Πάσχα. + " 1x Πάταρα· + " 5x Πάτερ + " 14x Πάτερ, + " 1x Πάτμῳ + " 2x Πάφου + " 3x Πέμψον + " 1x Πέντε, + " 1x Πέπεισμαι + " 1x Πέργαμον + " 1x Πέργην + " 1x Πέργης + " 1x Πέργῃ + " 1x Πέσατε + " 1x Πέσετε + " 3x Πέτρε, + " 20x Πέτρον + " 3x Πέτρον, + " 1x Πέτρον. + " 2x Πέτρον· + " 94x Πέτρος + " 1x Πέτρος). + " 3x Πέτρος, + " 2x Πέτρος· + " 11x Πέτρου + " 1x Πέτρου. + " 13x Πέτρῳ + " 2x Πέτρῳ, + " 1x Πίετε + " 18x Πίστει + " 1x Πίστευέ + " 1x Πίστευσον + " 2x Παιδία, + " 1x Παιδός + " 1x Παμφυλίαν + " 2x Παμφυλίαν, + " 1x Παμφυλίας + " 1x Παμφυλίας· + " 2x Παντοκράτορος. + " 1x Παντοκράτωρ + " 3x Παντοκράτωρ, + " 3x Παντοκράτωρ. + " 1x Παντοκράτωρ· + " 1x Παντὸς + " 1x Παράγγελλε + " 1x Παράδεισον + " 2x Παράκλητον + " 2x Παράκλητος + " 1x Παράκλητος, + " 1x Παρέλαβον + " 1x Παραγγέλλομεν + " 1x Παραγγέλλω + " 1x Παραγγελίᾳ + " 1x Παραγενόμενοι + " 2x Παραγενόμενος + " 1x Παραδείσῳ + " 1x Παραδείσῳ. + " 2x Παρακαλοῦμεν + " 8x Παρακαλῶ + " 1x Παραλαβὼν + " 1x Παρασκευή, + " 1x Παρασκευήν, + " 2x Παρασκευὴ + " 1x Παρασκευὴν + " 1x Παρασκευῆς, + " 1x Παρεγένετο + " 1x Παρμενᾶν + " 4x Παρὰ + " 1x Παρῆσαν + " 2x Πατάξω + " 35x Πατέρα + " 10x Πατέρα, + " 5x Πατέρα. + " 2x Πατέρα; + " 3x Πατέρα· + " 16x Πατήρ + " 12x Πατήρ, + " 5x Πατήρ. + " 3x Πατρί + " 2x Πατρί, + " 2x Πατρί. + " 1x Πατρόβαν, + " 26x Πατρός + " 6x Πατρός, + " 5x Πατρός. + " 1x Πατρός· + " 16x Πατρὶ + " 35x Πατρὸς + " 1x Πατρὸς, + " 56x Πατὴρ + " 3x Πατὴρ, + " 17x Παύλου + " 7x Παύλου, + " 5x Παύλου. + " 1x Παύλου· + " 14x Παύλῳ + " 2x Παύλῳ, + " 1x Παύλῳ. + " 1x Παῖδά + " 2x Παῖδα + " 2x Παῦλε· + " 24x Παῦλον + " 2x Παῦλον, + " 3x Παῦλον. + " 1x Παῦλον· + " 72x Παῦλος + " 4x Παῦλος, + " 2x Παῦλος. + " 1x Παῦλος; + " 1x Πείθεσθε + " 1x Πειθαρχεῖν + " 2x Πειλάτου + " 1x Πειλάτου, + " 4x Πειλάτῳ + " 2x Πειλάτῳ. + " 5x Πειλᾶτον + " 2x Πειλᾶτον. + " 38x Πειλᾶτος + " 1x Πειλᾶτος. + " 1x Πεντήκοντα + " 2x Πεντηκοστῆς + " 1x Πεντηκοστῆς· + " 1x Πεπείσμεθα + " 1x Πεπλήρωται + " 1x Πεποίθησιν + " 1x Πεποιθὼς + " 2x Περίλυπός + " 1x Περγάμῳ + " 1x Περιβαλοῦ + " 1x Περιπατῶν + " 1x Περσίδα + " 17x Περὶ + " 1x Πηλὸν + " 1x Πισιδίαν + " 1x Πισιδίαν, + " 1x Πιστεύετε + " 1x Πιστεύω, + " 1x Πιστεύω· + " 5x Πιστὸς + " 1x Πλανᾶσθε + " 1x Πλούσιός + " 1x Πλὴν + " 1x Πνευμάτων + " 3x Πνεύματα + " 40x Πνεύματι + " 6x Πνεύματι, + " 3x Πνεύματι. + " 1x Πνεύματι· + " 59x Πνεύματος + " 10x Πνεύματος, + " 4x Πνεύματος. + " 1x Πνεύματος· + " 5x Πνεύματός + " 5x Πνεῦμά + " 82x Πνεῦμα + " 7x Πνεῦμα, + " 1x Πνεῦμα. + " 1x Πνεῦμα· + " 1x Ποία + " 1x Ποίας; + " 3x Ποίησον + " 1x Ποίμαινε + " 1x Ποιήσατε + " 1x Ποιήσωμεν + " 1x Ποιμένα + " 4x Πολλοὶ + " 5x Πολλὰ + " 3x Πολλῆς + " 1x Πολυμερῶς + " 1x Πονηρὲ + " 2x Ποντίου + " 1x Ποντικὸν + " 1x Ποπλίου + " 1x Ποπλίῳ, + " 7x Πορευθέντες + " 1x Πορευομένων + " 3x Πορεύεσθε + " 1x Πορεύθητι + " 2x Πορεύθητι, + " 1x Πορεύου + " 2x Πορεύου, + " 1x Πορεύου· + " 1x Πορνεία + " 1x Ποταπός + " 1x Ποτιόλους, + " 1x Πούδης + " 1x Ποῖα; + " 15x Ποῦ + " 1x Ποῦ, + " 1x Πρίσκα + " 2x Πρίσκαν + " 2x Πρίσκιλλα + " 1x Πρίσκιλλαν + " 1x Πραγματεύσασθε + " 1x Πραιτώριον, + " 1x Πρεσβυτέρους + " 1x Πρεσβυτέρῳ + " 1x Προάγει + " 1x Προορώμην + " 1x Προσέφερον + " 6x Προσέχετε + " 1x Προσδοκῶντος + " 1x Προσελθόντες + " 1x Προσευχόμενοι + " 2x Προσεύχεσθε + " 1x Προσηνέγκατέ + " 1x Προσκυνήσεις + " 1x Προφήτευσον + " 2x Προφήτευσον, + " 2x Προφήτην + " 2x Προφήτης + " 1x Πρωΐας + " 1x Πρωῒ + " 1x Πρόσελθε + " 1x Πρόσθες + " 1x Πρόχορον + " 1x Πρώτη + " 3x Πρὶν + " 4x Πρὸ + " 2x Πρὸς + " 1x Πρῶτον + " 1x Πτολεμαΐδα, + " 1x Πωλήσατε + " 8x Πόθεν + " 1x Πόλιν, + " 1x Πόντιος + " 1x Πόντον + " 1x Πόντου, + " 1x Πόρκιον + " 1x Πόσοι + " 1x Πόσον + " 1x Πόσος + " 3x Πόσους + " 1x Πύθωνα + " 1x Πύλῃ + " 1x Πύρρου + " 3x Πᾶν + " 14x Πᾶς + " 4x Πᾶσα + " 1x Πᾶσαι + " 1x Πᾶσαν + " 1x Πῦρ + " 18x Πῶς + " 1x Σάββατόν + " 1x Σάμον, + " 1x Σάρδεις + " 2x Σάρδεσιν + " 1x Σάρεπτα + " 1x Σάρρα + " 1x Σάρρας· + " 2x Σάρρᾳ + " 8x Σήμερον + " 1x Σήμερον, + " 32x Σίμων + " 3x Σίμων, + " 1x Σίμων; + " 2x Σίμωνά + " 12x Σίμωνα + " 1x Σίμωνα, + " 1x Σίμωνα· + " 5x Σίμωνι + " 2x Σίμωνι. + " 13x Σίμωνος + " 1x Σίμωνος, + " 1x Σίμωνος. + " 1x Σίμωνος; + " 2x Σαβαὼθ + " 1x Σαδδουκαίους, + " 2x Σαδδουκαίων + " 3x Σαδδουκαίων, + " 3x Σαδδουκαίων. + " 3x Σαδδουκαῖοι + " 2x Σαδδουκαῖοι, + " 1x Σαδώκ, + " 1x Σαδὼκ + " 2x Σαλήμ, + " 1x Σαλαθιήλ, + " 2x Σαλαθιὴλ + " 1x Σαλαμῖνι + " 1x Σαλείμ, + " 1x Σαλμών, + " 1x Σαλμώνην, + " 1x Σαλμὼν + " 1x Σαλώμη + " 1x Σαλώμη, + " 2x Σαλὰ + " 1x Σαμάρια + " 1x Σαμάριαν + " 6x Σαμαρίας + " 1x Σαμαρίας, + " 1x Σαμαρίας. + " 1x Σαμαρίᾳ + " 1x Σαμαρείταις. + " 2x Σαμαρείτης + " 1x Σαμαρείτης. + " 1x Σαμαρείτιδος + " 3x Σαμαρειτῶν + " 1x Σαμαρειτῶν, + " 1x Σαμαρεῖται, + " 1x Σαμαρεῖτις + " 1x Σαμοθρᾴκην, + " 3x Σαμουὴλ + " 1x Σαμψών, + " 3x Σαούλ, + " 6x Σαοὺλ + " 1x Σαπφείρῃ + " 1x Σαρῶνα, + " 2x Σατανᾶ + " 5x Σατανᾶ, + " 2x Σατανᾶ. + " 4x Σατανᾶ· + " 4x Σατανᾶν + " 13x Σατανᾶς + " 2x Σατανᾶς, + " 2x Σατανᾶς. + " 1x Σατανᾷ + " 1x Σατανᾷ, + " 2x Σαύλου. + " 1x Σαύλῳ + " 3x Σαῦλον + " 1x Σαῦλον, + " 7x Σαῦλος + " 1x Σαῦλος. + " 1x Σεβαστοῦ + " 1x Σεβαστὸν + " 1x Σεβαστῆς. + " 1x Σεκοῦνδος, + " 1x Σελεύκιαν, + " 1x Σεμεεὶν + " 1x Σεργίῳ + " 1x Σεροὺχ + " 1x Σιδωνίας + " 1x Σιδωνίοις· + " 2x Σιδῶνα, + " 4x Σιδῶνι + " 1x Σιδῶνος + " 1x Σιδῶνος, + " 1x Σιδῶνος. + " 2x Σιλουανοῦ + " 2x Σιλουανὸς + " 1x Σιλωάμ + " 2x Σιλωὰμ + " 4x Σιλᾶν + " 2x Σιλᾶν, + " 3x Σιλᾶς + " 1x Σιλᾶς, + " 2x Σιλᾷ, + " 3x Σινᾶ + " 1x Σινᾶ, + " 1x Σιών + " 1x Σιών, + " 1x Σιών· + " 1x Σιώπα, + " 4x Σιὼν + " 1x Σκευᾶ + " 1x Σκιὰν + " 1x Σκληροτράχηλοι + " 1x Σκληρός + " 1x Σκύθης, + " 1x Σμύρναν + " 1x Σμύρνῃ + " 2x Σοδόμοις + " 3x Σοδόμων + " 1x Σοδόμων, + " 3x Σολομὼν + " 1x Σολομῶν + " 1x Σολομῶνα + " 2x Σολομῶνος + " 2x Σολομῶνος, + " 1x Σολομῶνος. + " 1x Σολομῶντος + " 1x Σολομῶντος· + " 1x Σουσάννα + " 1x Σοφίαν + " 3x Σοὶ + " 1x Σπέρμα + " 2x Σπανίαν· + " 1x Σπεῦσον + " 2x Σπλαγχνίζομαι + " 1x Σπουδάσωμεν + " 2x Σπούδασον + " 1x Στάχυν + " 1x Στέφανον + " 2x Στέφανον, + " 1x Στέφανος + " 2x Σταθεὶς + " 2x Σταυρωθήτω. + " 1x Σταύρου + " 3x Σταύρωσον + " 1x Στεφάνου + " 1x Στεφάνῳ + " 1x Στεφάνῳ, + " 2x Στεφανᾶ + " 1x Στεφανᾶ, + " 1x Στοϊκῶν + " 1x Συλλέξατε + " 1x Συλλαβόντες + " 1x Συμεών, + " 6x Συμεὼν + " 1x Συνήγαγον + " 1x Συνήκατε + " 1x Συνήχθησάν + " 1x Συνίστημι + " 1x Συναγάγετε + " 1x Συνεπορεύοντο + " 1x Συνεργοῦντες + " 1x Συνερχομένων + " 1x Συνηγμένων + " 1x Συνιόντος + " 1x Συνκαλεσάμενος + " 1x Συνμιμηταί + " 1x Συντύχην + " 2x Συνχάρητέ + " 2x Συρίαν + " 3x Συρίαν, + " 1x Συρίαν· + " 2x Συρίας + " 1x Συρακούσας + " 1x Συροφοινίκισσα + " 1x Συστρεφομένων + " 1x Συχέμ. + " 1x Συχὰρ, + " 1x Συχὲμ + " 1x Σφράγισον + " 1x Σχίσμα + " 1x Σωσίπατρος + " 1x Σωσθένην + " 1x Σωσθένης + " 1x Σωτήρ, + " 2x Σωτὴρ + " 1x Σωτῆρί + " 4x Σωτῆρα + " 1x Σωτῆρι + " 13x Σωτῆρος + " 1x Σωτῆρος, + " 3x Σόδομα + " 1x Σύρος. + " 1x Σύρτιν + " 1x Σώθητε + " 1x Σώπατρος + " 1x Σὴθ + " 1x Σὴμ + " 44x Σὺ + " 1x ΤΗΣ + " 6x ΤΩΝ + " 8x Τάδε + " 1x Τέθεικά + " 1x Τέθνηκεν + " 1x Τέκνα, + " 5x Τέκνον, + " 1x Τέρτιος + " 1x Τέρτυλλος + " 112x Τί + " 5x Τίμα + " 1x Τίμιος + " 1x Τίμωνα + " 8x Τίνα + " 1x Τίνες + " 6x Τίνι + " 3x Τίνος + " 36x Τίς + " 2x Τίτον + " 1x Τίτον, + " 1x Τίτον· + " 2x Τίτος + " 1x Τίτος; + " 1x Τίτου + " 3x Τίτου, + " 1x Τίτου· + " 1x Τίτῳ + " 2x Ταβειθά, + " 1x Ταβερνῶν, + " 1x Ταλαίπωρος + " 1x Ταλιθὰ + " 1x Ταξάμενοι + " 1x Ταπεινώθητε + " 1x Ταρσέα· + " 1x Ταρσεὺς, + " 1x Ταρσόν. + " 1x Ταρσὸν + " 1x Ταρσῷ + " 1x Ταχὺ + " 4x Ταύτην + " 2x Ταῦτά + " 29x Ταῦτα + " 1x Τεθέαμαι + " 1x Τεκνία + " 3x Τεκνία, + " 1x Τελευτήσαντος + " 1x Τερτύλλου + " 1x Τεσσαρεσκαιδεκάτην + " 1x Τεσσεράκοντα + " 1x Τετέλεσται, + " 1x Τετύφλωκεν + " 1x Τιβερίου + " 1x Τιβεριάδος + " 1x Τιβεριάδος. + " 1x Τιβεριάδος· + " 1x Τιμαίου + " 1x Τιμοθέου + " 1x Τιμοθέου, + " 2x Τιμοθέῳ + " 2x Τιμόθεε, + " 4x Τιμόθεον + " 2x Τιμόθεον, + " 8x Τιμόθεος + " 4x Τιμόθεος, + " 1x Τινὲς + " 1x Τινῶν + " 1x Τιτίου + " 1x Τοίνυν + " 1x Τοιγαροῦν + " 1x Τοιοῦτος + " 1x Τολμᾷ + " 1x Τοσαῦτα + " 1x Τοσοῦτον + " 3x Τούτου + " 1x Τούτους + " 3x Τούτων + " 2x Τοὺς + " 2x Τοῖς + " 10x Τοῦ + " 21x Τοῦτο + " 3x Τοῦτον + " 4x Τοῦτό + " 1x Τρίτον + " 1x Τραχωνίτιδος + " 1x Τριῶν + " 1x Τρυφῶσαν + " 2x Τρόφιμον + " 1x Τρόφιμος· + " 1x Τρύφαιναν + " 2x Τρῳάδα + " 1x Τρῳάδα. + " 1x Τρῳάδι + " 1x Τρῳάδι· + " 1x Τρῳάδος + " 1x Τυράννου. + " 1x Τυρίοις + " 1x Τυχικόν, + " 1x Τυχικὸν + " 3x Τυχικὸς + " 37x Τότε + " 1x Τύπτειν + " 1x Τύρον + " 1x Τύρον· + " 4x Τύρου + " 1x Τύρου. + " 4x Τύρῳ + " 9x Τὰ + " 1x Τὰς + " 5x Τὴν + " 25x Τὸ + " 12x Τὸν + " 16x Τῇ + " 4x Τῶν + " 12x Τῷ + " 1x Υἱέ + " 1x Υἱοὶ + " 31x Υἱοῦ + " 2x Υἱόν + " 2x Υἱόν, + " 1x Υἱόν. + " 1x Υἱόν; + " 10x Υἱός + " 3x Υἱός, + " 1x Υἱός. + " 6x Υἱὲ + " 45x Υἱὸν + " 92x Υἱὸς + " 7x Υἱῷ + " 2x Υἱῷ, + " 1x Υἱῷ. + " 1x Φάλεκ + " 1x Φάντασμά + " 1x Φέρε + " 1x Φέρετέ + " 1x Φήλικα + " 1x Φήλικι + " 1x Φήλικος + " 1x Φήστου + " 1x Φήστῳ + " 2x Φίλε, + " 1x Φίλιππε; + " 7x Φίλιππον + " 1x Φίλιππον, + " 1x Φίλιππον. + " 14x Φίλιππος + " 1x Φανουήλ, + " 1x Φαραώ, + " 4x Φαραὼ + " 2x Φαρισαίοις, + " 1x Φαρισαίου + " 1x Φαρισαίου, + " 3x Φαρισαίους + " 2x Φαρισαίους, + " 22x Φαρισαίων + " 3x Φαρισαίων, + " 2x Φαρισαίων. + " 1x Φαρισαίων; + " 1x Φαρισαίων· + " 1x Φαρισαῖε + " 49x Φαρισαῖοι + " 1x Φαρισαῖοι. + " 6x Φαρισαῖος + " 1x Φαρισαῖος, + " 1x Φαρισαῖος. + " 1x Φαρισαῖός + " 3x Φαρὲς + " 1x Φιλήμονι + " 2x Φιλίπποις + " 6x Φιλίππου + " 1x Φιλίππου· + " 1x Φιλίππους, + " 1x Φιλίππων, + " 4x Φιλίππῳ + " 1x Φιλίππῳ, + " 1x Φιλαδελφίαν + " 1x Φιλαδελφίᾳ + " 1x Φιλεῖς + " 1x Φιλητός, + " 1x Φιλιππήσιοι, + " 1x Φιλόλογον + " 2x Φιμώθητι + " 1x Φλέγοντα, + " 1x Φοίβην + " 1x Φοίνικα + " 1x Φοβήθητε + " 1x Φοινίκην + " 1x Φοινίκην, + " 1x Φοινίκης + " 1x Φορτουνάτου + " 1x Φράσον + " 2x Φρυγίαν + " 1x Φρυγίαν, + " 1x Φωνήσατε + " 3x Φωνὴ + " 1x Φόρου + " 1x Φύγελος + " 4x Φῆλιξ + " 2x Φῆλιξ, + " 1x Φῆστε, + " 1x Φῆστον + " 1x Φῆστον. + " 1x Φῆστον· + " 7x Φῆστος + " 1x ΧΡΙΣΤΟΣ + " 2x Χάριν + " 2x Χάρις + " 1x Χήρα + " 1x Χήρας + " 1x Χίου, + " 1x Χαίρετε + " 1x Χαίρετε. + " 1x Χαλδαίων + " 2x Χανάαν + " 1x Χαναναία + " 1x Χαρράν, + " 1x Χαρράν. + " 1x Χαῖρε + " 4x Χαῖρε, + " 1x Χερουβεὶν + " 1x Χεῖρας + " 1x Χλόης, + " 1x Χοραζείν, + " 1x Χοραζείν· + " 1x Χουζᾶ + " 1x Χοῖνιξ + " 2x Χρείαν + " 1x Χριστέ, + " 1x Χριστιανούς. + " 1x Χριστιανός, + " 1x Χριστιανὸν + " 133x Χριστοῦ + " 65x Χριστοῦ, + " 40x Χριστοῦ. + " 3x Χριστοῦ; + " 8x Χριστοῦ· + " 9x Χριστόν, + " 4x Χριστόν. + " 2x Χριστόν; + " 2x Χριστόν· + " 2x Χριστός + " 1x Χριστός). + " 16x Χριστός, + " 11x Χριστός. + " 6x Χριστός; + " 6x Χριστός· + " 47x Χριστὸν + " 69x Χριστὸς + " 75x Χριστῷ + " 13x Χριστῷ, + " 1x Χριστῷ,— + " 7x Χριστῷ. + " 7x Χριστῷ· + " 2x Χρονίζει + " 1x Χωρήσατε + " 1x Χωρίον + " 1x Ψαλμῶν + " 1x Ψυχή, + " 1x αἰγείοις + " 1x αἰγιαλόν. + " 1x αἰγιαλόν· + " 3x αἰγιαλὸν + " 1x αἰγιαλὸν, + " 1x αἰδοῦς + " 1x αἰνέσεως + " 1x αἰνίγματι, + " 1x αἰνεῖν + " 1x αἰνούντων + " 1x αἰνοῦντα + " 2x αἰνοῦντες + " 1x αἰνῶν + " 1x αἰρόμενον + " 1x αἰσθήσει, + " 1x αἰσθητήρια + " 1x αἰσχροκερδεῖς, + " 1x αἰσχροκερδῆ, + " 1x αἰσχροκερδῶς + " 1x αἰσχρολογίαν + " 1x αἰσχροῦ + " 1x αἰσχρόν + " 1x αἰσχρότης + " 2x αἰσχρὸν + " 1x αἰσχυνέσθω, + " 2x αἰσχυνθήσομαι, + " 1x αἰσχυνθῶμεν + " 1x αἰσχύνας, + " 1x αἰσχύνη + " 2x αἰσχύνης + " 1x αἰσχύνης, + " 1x αἰσχύνομαι. + " 1x αἰσχύνῃ + " 2x αἰτήματα + " 2x αἰτήσας + " 1x αἰτήσασθε + " 3x αἰτήσει + " 2x αἰτήσει, + " 1x αἰτήσεσθε, + " 1x αἰτήσητέ + " 1x αἰτήσηται. + " 4x αἰτήσητε + " 1x αἰτήσουσιν + " 1x αἰτήσωμέν + " 1x αἰτήσωμαι; + " 1x αἰτήσωνται + " 1x αἰτήσωνται, + " 1x αἰτήσῃ + " 1x αἰτήσῃς + " 2x αἰτία + " 13x αἰτίαν + " 2x αἰτίαν. + " 1x αἰτίαν; + " 2x αἰτίας + " 1x αἰτίου + " 2x αἰτείτω + " 1x αἰτεῖν + " 1x αἰτεῖς + " 2x αἰτεῖσθαι + " 2x αἰτεῖσθε, + " 2x αἰτεῖσθε. + " 1x αἰτεῖτε + " 2x αἰτεῖτε, + " 1x αἰτιώματα + " 1x αἰτούμεθα + " 4x αἰτούμενοι + " 1x αἰτοῦμαι + " 2x αἰτοῦντί + " 1x αἰτοῦντι + " 1x αἰτοῦσά + " 3x αἰτοῦσιν + " 1x αἰτώμεθα + " 1x αἰτώμεθα, + " 1x αἰτῆσαι + " 1x αἰτῶμεν + " 2x αἰτῶν + " 2x αἰφνίδιος + " 1x αἰχμαλωσίαν + " 2x αἰχμαλωσίαν, + " 1x αἰχμαλωτίζοντά + " 2x αἰχμαλωτίζοντες + " 1x αἰχμαλωτισθήσονται + " 1x αἰχμαλώτοις + " 2x αἰωνίαν + " 1x αἰωνίοις + " 9x αἰωνίου + " 3x αἰωνίου, + " 3x αἰωνίου. + " 1x αἰωνίους + " 2x αἰωνίων, + " 1x αἰώνια. + " 17x αἰώνιον + " 9x αἰώνιον, + " 14x αἰώνιον. + " 1x αἰώνιον; + " 4x αἰώνιον· + " 2x αἰώνιος + " 1x αἰώνιος. + " 1x αἰώνιός + " 7x αἰώνων + " 6x αἰώνων, + " 6x αἰώνων. + " 10x αἰώνων· + " 8x αἰῶνα + " 7x αἰῶνα, + " 12x αἰῶνα. + " 4x αἰῶνα· + " 22x αἰῶνας + " 3x αἰῶνας, + " 1x αἰῶνας. + " 4x αἰῶνας· + " 7x αἰῶνι + " 1x αἰῶνι, + " 16x αἰῶνος + " 2x αἰῶνος, + " 4x αἰῶνος. + " 1x αἰῶνος; + " 1x αἰῶνος· + " 1x αἰῶνός + " 1x αἰῶσιν + " 139x αἱ + " 1x αἱμάτων + " 1x αἱματεκχυσίας + " 1x αἱμορροοῦσα + " 2x αἱρέσεις + " 1x αἱρέσεις, + " 2x αἱρέσεως + " 1x αἱρέσεως, + " 1x αἱρήσομαι + " 1x αἱρετικὸν + " 4x αἳ + " 7x αἴρει + " 1x αἴρεις + " 1x αἴρεις; + " 1x αἴρεται + " 1x αἴρετε + " 1x αἴροντος + " 1x αἴροντός + " 2x αἴρων + " 1x αἴρωσιν + " 1x αἴσθωνται + " 1x αἴτημα + " 3x αἴτιον + " 1x αἴτιος + " 2x αἵ + " 2x αἵματί + " 13x αἵματι + " 3x αἵματι, + " 2x αἵματι· + " 26x αἵματος + " 4x αἵματος, + " 2x αἵματος. + " 1x αἵματός + " 2x αἵρεσιν + " 1x αἵρεσις + " 10x αἵτινες + " 1x αἶνον + " 1x αἶνον; + " 3x αἷμά + " 33x αἷμα + " 6x αἷμα, + " 1x αἷμα. + " 14x αἷς + " 1x αὐγάσαι + " 1x αὐγῆς, + " 1x αὐθάδεις, + " 1x αὐθάδη, + " 1x αὐθαίρετοι + " 1x αὐθαίρετος + " 1x αὐθεντεῖν + " 1x αὐλήν, + " 1x αὐλητὰς + " 1x αὐλητῶν + " 1x αὐλούμενον + " 5x αὐλὴν + " 1x αὐλὸς + " 3x αὐλῆς + " 1x αὐλῆς, + " 1x αὐλῇ + " 1x αὐλῇ· + " 1x αὐξάνειν, + " 1x αὐξάνετε + " 1x αὐξάνουσιν· + " 1x αὐξάνων + " 1x αὐξήσει + " 1x αὐξήσωμεν + " 1x αὐξανομένης + " 1x αὐξανόμενα, + " 1x αὐξανόμενοι + " 1x αὐξανόμενον + " 1x αὐξηθῆτε + " 1x αὐξηθῇ, + " 1x αὐστηρός + " 1x αὐστηρὸς + " 1x αὐτά + " 7x αὐτά, + " 9x αὐτά. + " 1x αὐτά; + " 4x αὐτά· + " 1x αὐτάρκειαν + " 1x αὐτάρκης + " 1x αὐτάς + " 1x αὐτάς. + " 2x αὐτήν + " 25x αὐτήν, + " 21x αὐτήν. + " 1x αὐτήν; + " 20x αὐτήν· + " 1x αὐταρκείας· + " 14x αὐταῖς + " 2x αὐταῖς, + " 2x αὐταῖς. + " 2x αὐτοί. + " 1x αὐτοί· + " 1x αὐτοκατάκριτος. + " 2x αὐτομάτη + " 48x αὐτούς + " 32x αὐτούς, + " 41x αὐτούς. + " 1x αὐτούς; + " 18x αὐτούς· + " 81x αὐτοὶ + " 209x αὐτοὺς + " 7x αὐτοὺς, + " 455x αὐτοῖς + " 37x αὐτοῖς, + " 41x αὐτοῖς. + " 3x αὐτοῖς; + " 20x αὐτοῖς· + " 889x αὐτοῦ + " 235x αὐτοῦ, + " 1x αὐτοῦ,— + " 218x αὐτοῦ. + " 16x αὐτοῦ; + " 52x αὐτοῦ· + " 2x αὐτό + " 12x αὐτό, + " 11x αὐτό. + " 4x αὐτό; + " 2x αὐτό· + " 43x αὐτόν + " 93x αὐτόν, + " 1x αὐτόν,) + " 112x αὐτόν. + " 14x αὐτόν; + " 40x αὐτόν· + " 1x αὐτόπται + " 14x αὐτός + " 2x αὐτός, + " 1x αὐτός. + " 1x αὐτός· + " 1x αὐτόχειρες + " 34x αὐτὰ + " 9x αὐτὰς + " 1x αὐτὰς, + " 10x αὐτὴ + " 66x αὐτὴν + " 75x αὐτὸ + " 637x αὐτὸν + " 13x αὐτὸν, + " 1x αὐτὸν]] + " 139x αὐτὸς + " 84x αὐτῆς + " 37x αὐτῆς, + " 34x αὐτῆς. + " 1x αὐτῆς; + " 13x αὐτῆς· + " 94x αὐτῇ + " 9x αὐτῇ, + " 6x αὐτῇ. + " 1x αὐτῇ; + " 2x αὐτῇ· + " 363x αὐτῶν + " 83x αὐτῶν, + " 1x αὐτῶν,— + " 86x αὐτῶν. + " 2x αὐτῶν; + " 22x αὐτῶν· + " 692x αὐτῷ + " 50x αὐτῷ, + " 69x αὐτῷ. + " 12x αὐτῷ; + " 26x αὐτῷ· + " 1x αὐχεῖ. + " 1x αὐχμηρῷ + " 1x αὑτούς. + " 1x αὑτούς; + " 2x αὑτοὺς + " 3x αὑτὸν + " 2x αὑτῷ + " 1x αὑτῷ, + " 1x αὑτῷ. + " 2x αὔξει + " 2x αὔξησιν + " 10x αὔριον + " 2x αὔριον, + " 1x αὔριον· + " 66x αὕτη + " 3x αὕτη, + " 1x αὕτη. + " 1x αὕτη; + " 1x αὗταί + " 1x αὗται + " 1x αὗται. + " 1x βάθη + " 4x βάθος + " 2x βάθος, + " 1x βάθους + " 8x βάλε + " 1x βάλητε + " 6x βάλλει + " 1x βάλλειν + " 3x βάλλεται. + " 1x βάλλομεν + " 2x βάλλοντας + " 2x βάλλοντες + " 1x βάλλουσαν + " 3x βάλλουσιν + " 1x βάλλουσιν, + " 2x βάλλω + " 3x βάλω + " 1x βάλωσιν + " 2x βάλῃ + " 1x βάπτισαι + " 14x βάπτισμα + " 1x βάπτισμα, + " 1x βάπτισμα. + " 1x βάπτισμα· + " 2x βάρβαροι + " 1x βάρβαρος + " 1x βάρβαρος, + " 1x βάρβαρος. + " 1x βάρει + " 1x βάρη + " 3x βάρος + " 1x βάρος· + " 1x βάσεις + " 1x βάτου + " 1x βάτου. + " 1x βάτους + " 1x βάτραχοι· + " 1x βάτῳ. + " 1x βάψας + " 1x βάψω + " 1x βάψῃ + " 1x βέβαιος, + " 1x βέβηλος + " 2x βέβληται + " 1x βέλη + " 1x βέλτιον + " 1x βήματι + " 7x βήματος + " 1x βήματος. + " 1x βήματος· + " 1x βήρυλλος, + " 1x βίαν + " 1x βίας, + " 1x βίας. + " 1x βίβλου + " 1x βίβλους + " 7x βίβλῳ + " 5x βίον + " 1x βίον. + " 2x βίου + " 1x βίου, + " 1x βίωσίν + " 1x βαΐα + " 1x βαθέα + " 1x βαθέως + " 1x βαθεῖ, + " 1x βαθμὸν + " 1x βαθύ· + " 1x βαλέτω. + " 1x βαλεῖ + " 7x βαλεῖν + " 1x βαλεῖν. + " 1x βαλλάντια + " 1x βαλλάντιον + " 1x βαλλάντιον, + " 1x βαλλαντίου + " 1x βαλλόμενα + " 2x βαλλόμενον + " 2x βαλλόντων + " 1x βαλοῦσα + " 3x βαλοῦσιν + " 2x βαπτίζει + " 2x βαπτίζειν + " 1x βαπτίζεις + " 2x βαπτίζομαι + " 1x βαπτίζονται + " 1x βαπτίζοντες + " 3x βαπτίζω + " 3x βαπτίζων + " 1x βαπτίζων, + " 2x βαπτίζων. + " 3x βαπτίσει + " 1x βαπτίσματι, + " 2x βαπτίσματος + " 1x βαπτιζόμενοι + " 2x βαπτισθέντες + " 1x βαπτισθέντος + " 2x βαπτισθήσεσθε + " 1x βαπτισθήσεσθε· + " 1x βαπτισθήτω + " 3x βαπτισθεὶς + " 5x βαπτισθῆναι + " 2x βαπτισθῆναι, + " 1x βαπτισθῆναι. + " 2x βαπτισθῆναι; + " 1x βαπτισμοὺς + " 1x βαπτισμοῖς, + " 1x βαπτισμῶν + " 1x βαπτιστὴς + " 2x βαρέα + " 2x βαρέως + " 1x βαρείσθω + " 2x βαρεῖαι + " 1x βαρεῖς + " 1x βαρηθῶσιν + " 1x βαρούμενοι + " 1x βαρυτίμου + " 1x βαρύτερα + " 1x βασάνοις + " 1x βασάνοις, + " 1x βασάνου. + " 1x βασίλειον + " 3x βασίλισσα + " 1x βασανίσαι + " 2x βασανίσῃς. + " 1x βασανιζομένη + " 1x βασανιζομένους + " 1x βασανιζόμενον + " 1x βασανιζόμενος. + " 1x βασανισθήσεται + " 2x βασανισθήσονται + " 3x βασανισμοῦ + " 1x βασανισμὸν + " 2x βασανισμὸς + " 1x βασανισταῖς + " 7x βασιλέα + " 3x βασιλέα, + " 1x βασιλέα. + " 8x βασιλέων + " 1x βασιλέων, + " 1x βασιλέων. + " 5x βασιλέως + " 1x βασιλέως, + " 1x βασιλέως. + " 1x βασιλέως· + " 1x βασιλίσσης + " 55x βασιλεία + " 54x βασιλείαν + " 4x βασιλείαν, + " 3x βασιλείαν. + " 23x βασιλείας + " 1x βασιλείας, + " 1x βασιλείας· + " 1x βασιλείοις + " 21x βασιλείᾳ + " 1x βασιλευέτω + " 1x βασιλευόντων + " 1x βασιλεύει + " 1x βασιλεύειν + " 1x βασιλεύς + " 1x βασιλεύς, + " 2x βασιλεύσει + " 4x βασιλεύσουσιν + " 1x βασιλεύσῃ + " 20x βασιλεὺς + " 4x βασιλεῖ + " 1x βασιλεῖ, + " 16x βασιλεῖς + " 5x βασιλεῦ + " 1x βασιλεῦ, + " 1x βασιλεῦ. + " 2x βασιλεῦσαι + " 1x βασιλεῦσιν + " 1x βασιλικός + " 1x βασιλικὴν + " 1x βασιλικὸν + " 1x βασιλικὸς + " 1x βασιλικῆς. + " 1x βαστάζει + " 1x βαστάζειν + " 1x βαστάζειν, + " 1x βαστάζεις + " 1x βαστάζεσθαι + " 1x βαστάζετε + " 1x βαστάζετε, + " 1x βαστάζοντες + " 1x βαστάζοντος + " 1x βαστάζω. + " 1x βαστάζων + " 2x βαστάζων· + " 2x βαστάσαι + " 1x βαστάσαι; + " 1x βαστάσαι· + " 1x βαστάσασά + " 1x βαστάσασι + " 1x βαστάσει + " 1x βαστάσει. + " 1x βατταλογήσητε + " 4x βδέλυγμα + " 1x βδελυγμάτων + " 1x βδελυκτοὶ + " 1x βδελυσσόμενος + " 1x βεβήλοις, + " 3x βεβήλους + " 1x βεβαία + " 1x βεβαία, + " 5x βεβαίαν + " 1x βεβαίωσιν + " 1x βεβαιούμενοι + " 1x βεβαιοῦντος + " 1x βεβαιοῦσθαι + " 1x βεβαιότερον + " 2x βεβαιώσει + " 1x βεβαιῶν + " 1x βεβαιῶσαι + " 1x βεβαμμένον + " 1x βεβαπτισμένοι + " 1x βεβαρημένοι + " 1x βεβαρημένοι. + " 1x βεβηλοῦσιν + " 1x βεβηλῶσαι, + " 1x βεβληκότος + " 1x βεβλημένην + " 2x βεβλημένον + " 1x βεβλημένον. + " 1x βεβλημένος + " 1x βεβρωκόσιν. + " 1x βελόνης + " 1x βιάζεται, + " 1x βιάζεται. + " 1x βιαίας + " 1x βιασταὶ + " 1x βιβλία + " 1x βιβλία, + " 1x βιβλία. + " 1x βιβλίοις + " 17x βιβλίον + " 1x βιβλίον, + " 6x βιβλίου + " 6x βιβλίῳ + " 2x βιβλαρίδιον + " 1x βιβλαρίδιον. + " 1x βιωτικά; + " 1x βιωτικαῖς, + " 1x βιωτικὰ + " 1x βιῶσαι + " 1x βλάσφημα + " 1x βλάσφημοι, + " 2x βλάσφημον + " 1x βλάψαν + " 1x βλάψῃ, + " 1x βλέμματι + " 9x βλέπει + " 1x βλέπει· + " 6x βλέπειν + " 1x βλέπειν, + " 3x βλέπειν. + " 6x βλέπεις + " 1x βλέπεις; + " 15x βλέπετε + " 2x βλέπετε, + " 2x βλέπετε. + " 2x βλέπετε· + " 4x βλέπομεν + " 1x βλέποντα + " 1x βλέποντας + " 1x βλέποντας· + " 12x βλέποντες + " 1x βλέπουσι + " 3x βλέπουσιν + " 1x βλέπουσιν, + " 2x βλέπω + " 2x βλέπω. + " 9x βλέπων + " 1x βλέπων, + " 1x βλέπων. + " 1x βλέπων; + " 6x βλέπωσιν + " 1x βλέπωσιν. + " 1x βλέπῃ + " 1x βλέπῃς. + " 2x βλέψετε + " 2x βλήθητι + " 1x βλαβεράς, + " 1x βλαστήσασα + " 1x βλαστᾷ + " 1x βλασφημήσαντι + " 1x βλασφημήσωσιν· + " 1x βλασφημήσῃ + " 3x βλασφημία + " 1x βλασφημία, + " 2x βλασφημίαι, + " 1x βλασφημίαι. + " 1x βλασφημίαν + " 1x βλασφημίαν, + " 1x βλασφημίαν· + " 1x βλασφημίας + " 4x βλασφημίας, + " 1x βλασφημίας. + " 1x βλασφημίας; + " 1x βλασφημίας· + " 1x βλασφημείσθω + " 1x βλασφημεῖ. + " 1x βλασφημεῖ· + " 2x βλασφημεῖν, + " 1x βλασφημεῖν. + " 1x βλασφημεῖται + " 1x βλασφημηθήσεται· + " 1x βλασφημούμεθα + " 1x βλασφημούντων + " 1x βλασφημοῦμαι + " 1x βλασφημοῦντας + " 1x βλασφημοῦντες + " 2x βλασφημοῦντες, + " 1x βλασφημοῦντες. + " 1x βλασφημοῦντες· + " 1x βλασφημοῦσιν + " 1x βλασφημοῦσιν, + " 1x βλασφημοῦσιν. + " 1x βλασφημῆσαι + " 2x βλασφημῆται. + " 2x βλεπέτω + " 1x βλεπομένη + " 1x βλεπομένων, + " 1x βλεπομένων. + " 3x βλεπόμενα + " 1x βλεπόμενα· + " 1x βλεπόμενον + " 2x βλεπόντων + " 1x βληθήσεται + " 1x βληθήσῃ· + " 1x βληθείσῃ + " 1x βληθεὶς + " 1x βληθὲν + " 4x βληθῆναι + " 1x βληθῇ + " 1x βλητέον. + " 2x βοήθει + " 1x βοήθειαν. + " 2x βοήθησον + " 1x βοαὶ + " 1x βοηθείαις + " 1x βοηθεῖτε· + " 1x βοηθός, + " 1x βοηθῆσαι. + " 1x βολήν, + " 2x βολίσαντες + " 1x βορβόρου. + " 2x βορρᾶ + " 1x βοσκομένη + " 1x βοσκομένη. + " 1x βοσκομένη· + " 1x βοτάνην + " 1x βουλήματι + " 1x βουλήματος, + " 1x βουλευτής, + " 1x βουλευτὴς + " 1x βουλεύομαι + " 1x βουλεύομαι, + " 1x βουλεύσεται + " 1x βουληθεὶς + " 1x βουληθῇ + " 2x βουλομένου + " 1x βουλομένους + " 1x βουλόμεθα + " 1x βουλόμενοι + " 6x βουλόμενος + " 2x βουλόμενός + " 1x βουλὰς + " 3x βουλὴ + " 4x βουλὴν + " 1x βουλῆς + " 3x βουλῇ + " 1x βουνοῖς + " 1x βουνὸς + " 1x βούλει + " 2x βούλεσθε + " 1x βούλεται. + " 1x βούλεται· + " 1x βούλημα + " 2x βούληται + " 1x βούλοιτο + " 1x βούλομαί + " 2x βούλομαι + " 2x βούλομαι, + " 1x βοώντων + " 2x βοῦν + " 1x βοῦς + " 2x βοῶν + " 1x βοῶντα + " 2x βοῶντες + " 4x βοῶντος + " 1x βρέξαι, + " 3x βρέφη + " 4x βρέφος + " 1x βρέφους + " 1x βρέχει + " 1x βρέχειν + " 1x βρέχῃ + " 1x βραβευέτω + " 1x βραβεῖον + " 1x βραβεῖον; + " 1x βραδεῖς + " 1x βραδυπλοοῦντες + " 1x βραδύνει + " 1x βραδύνω, + " 1x βραδύτητα + " 2x βραδὺς + " 1x βραχέων + " 1x βραχίονι + " 1x βραχίονος + " 1x βραχίων + " 3x βραχύ + " 3x βραχὺ + " 3x βρονταί, + " 1x βρονταί· + " 3x βρονταὶ + " 1x βροντὴν + " 2x βροντῆς + " 1x βροντῶν + " 2x βροχὴ + " 7x βρυγμὸς + " 1x βρωμάτων, + " 1x βρόχον + " 1x βρύει + " 1x βρώμασιν + " 1x βρώμασιν, + " 1x βρώμασιν· + " 1x βρώματί + " 2x βρώματα + " 2x βρώματα. + " 1x βρώματα; + " 1x βρώματος + " 1x βρώσει + " 2x βρώσεως + " 1x βρώσιμον + " 1x βρῶμά + " 4x βρῶμα + " 1x βρῶμα· + " 4x βρῶσιν + " 3x βρῶσις + " 1x βρῶσις, + " 1x βυθίζεσθαι + " 1x βυθίζουσιν + " 1x βυθῷ + " 1x βυρσέως + " 1x βυρσεῖ, + " 1x βυρσεῖ. + " 1x βυσσίνου + " 1x βωμὸν + " 1x βόας + " 1x βόας, + " 1x βόησον, + " 2x βόθυνον + " 1x βόθυνον, + " 1x βόσκειν + " 3x βόσκοντες + " 1x βότρυας + " 4x βύσσινον + " 1x βύσσον + " 1x βῆμα + " 1x βῆμα, + " 1x γάγγραινα + " 1x γάζης + " 2x γάλα + " 2x γάλακτος + " 1x γάλακτος, + " 1x γάμον. + " 4x γάμος + " 1x γάμου + " 1x γάμου; + " 1x γάμου· + " 1x γάμους + " 3x γάμους, + " 2x γάμους. + " 1x γάμων, + " 105x γάρ + " 8x γάρ, + " 2x γάρ. + " 2x γάρ; + " 4x γέγονα + " 1x γέγοναν + " 1x γέγονας + " 1x γέγονας; + " 1x γέγονας· + " 20x γέγονεν + " 4x γέγονεν, + " 3x γέγονεν. + " 1x γέγονεν; + " 2x γέγονεν· + " 59x γέγραπται + " 1x γέγραπται, + " 1x γέγραπται. + " 1x γέγραπται; + " 1x γέγραφα, + " 1x γέγραφα. + " 3x γέενναν + " 2x γέενναν, + " 3x γέενναν. + " 1x γέλως + " 1x γέμει + " 1x γέμει· + " 1x γέμον + " 2x γέμοντα + " 3x γέμουσιν + " 1x γένει + " 3x γένει, + " 1x γένει· + " 1x γένεσις + " 3x γένη + " 4x γένησθε + " 1x γένησθε, + " 1x γένησθε. + " 1x γένησθε; + " 1x γένηταί + " 32x γένηται + " 3x γένηται, + " 9x γένηται. + " 1x γένηται; + " 2x γένοιτο + " 1x γένοιτο, + " 7x γένοιτο. + " 6x γένοιτο· + " 1x γένοιτό + " 7x γένος + " 4x γένους + " 1x γένους, + " 2x γένωμαι. + " 1x γένωνται + " 2x γένωνται. + " 1x γένωνται· + " 1x γέρων + " 1x γήμας + " 1x γήμῃ + " 1x γήρει + " 4x γίνεσθαι + " 3x γίνεσθαι, + " 2x γίνεσθαι. + " 1x γίνεσθαι; + " 14x γίνεσθε + " 5x γίνεσθε, + " 3x γίνεσθε. + " 13x γίνεται + " 5x γίνεται, + " 7x γίνεται. + " 1x γίνεται· + " 5x γίνου + " 1x γίνωνται. + " 1x γίνωσκε, + " 1x γαζοφυλάκιον + " 2x γαζοφυλάκιον· + " 1x γαζοφυλακίου + " 1x γαζοφυλακίῳ + " 2x γαλήνη + " 1x γαλήνη. + " 1x γαμήσας + " 1x γαμήσασα + " 4x γαμήσῃ + " 1x γαμήσῃς, + " 2x γαμίζονται, + " 1x γαμίζονται· + " 1x γαμίζοντες, + " 2x γαμίζων + " 1x γαμίσκονται, + " 1x γαμείτωσαν. + " 2x γαμεῖν + " 2x γαμεῖν, + " 1x γαμηθῆναι, + " 1x γαμησάτωσαν· + " 1x γαμοῦντες + " 4x γαμοῦσιν + " 1x γαμῆσαι. + " 2x γαμῶν + " 1x γαστέρες + " 8x γαστρὶ + " 15x γε + " 1x γεέννης + " 1x γεέννης. + " 1x γεέννης; + " 1x γεέννῃ. + " 2x γείτονας + " 1x γείτονας, + " 1x γείτονες + " 3x γεγέννηκά + " 1x γεγέννημαι + " 1x γεγέννημαι. + " 1x γεγέννηται + " 2x γεγέννηται, + " 2x γεγέννηται. + " 1x γεγαμηκόσιν + " 1x γεγενημένον, + " 1x γεγεννημένα + " 4x γεγεννημένον + " 4x γεγεννημένος + " 1x γεγεννημένου· + " 1x γεγενῆσθαι + " 1x γεγονέναι + " 1x γεγονέναι, + " 1x γεγονέναι. + " 1x γεγονέναι· + " 1x γεγονυῖα, + " 2x γεγονός. + " 1x γεγονός.]] + " 1x γεγονότας· + " 1x γεγονότες + " 1x γεγονότες, + " 1x γεγονότι· + " 4x γεγονὸς + " 1x γεγονὸς, + " 1x γεγονὼς + " 4x γεγραμμένα + " 1x γεγραμμένα, + " 1x γεγραμμένα. + " 1x γεγραμμένα· + " 1x γεγραμμένας + " 1x γεγραμμένην + " 1x γεγραμμένοι + " 1x γεγραμμένοις + " 1x γεγραμμένοις, + " 15x γεγραμμένον + " 2x γεγραμμένον, + " 2x γεγραμμένος + " 1x γεγραμμένος, + " 2x γεγραμμένων + " 1x γεγυμνασμένα + " 1x γεγυμνασμένην + " 1x γεγυμνασμένοις + " 1x γεγόναμεν + " 1x γεγόναμεν, + " 1x γεγόνασιν + " 1x γεγόνασιν· + " 2x γεγόνατε + " 1x γεγόνει + " 1x γελάσετε. + " 1x γελῶντες + " 1x γεμίζεσθαι + " 1x γεμίσαι + " 1x γεμίσας + " 1x γεμισθῇ + " 2x γεμούσας + " 1x γεμόντων + " 1x γενέσει + " 3x γενέσεως + " 23x γενέσθαι + " 8x γενέσθαι, + " 2x γενέσθαι. + " 4x γενέσθαι; + " 1x γενέσθω, + " 1x γενήθητε, + " 1x γενήματα + " 3x γενήματος + " 1x γενήσεσθε + " 1x γενήσεσθε; + " 6x γενήσεται + " 1x γενήσεται, + " 1x γενήσεται. + " 2x γενήσεται· + " 1x γενεαί· + " 1x γενεαλογίαις + " 1x γενεαλογίας + " 1x γενεαλογούμενος + " 4x γενεαὶ + " 2x γενεαῖς + " 2x γενεσίοις + " 1x γενετῆς. + " 10x γενεὰ + " 4x γενεὰν + " 3x γενεὰς + " 10x γενεᾶς + " 6x γενεᾷ + " 1x γενεῶν + " 1x γενεῶν— + " 1x γενηθέντας + " 1x γενηθέντες + " 1x γενηθέντες. + " 1x γενηθέντων. + " 5x γενηθήτω + " 1x γενηθῆναι + " 1x γενηθῶμεν + " 1x γενησόμενον + " 2x γεννήματα + " 1x γεννήσαντα + " 1x γεννήσει + " 1x γεννήσῃ + " 1x γεννηθέντος + " 1x γεννηθέντων + " 3x γεννηθεὶς + " 1x γεννηθὲν + " 2x γεννηθῆναι + " 1x γεννηθῆναι; + " 2x γεννηθῇ + " 1x γεννηθῇ; + " 2x γεννητοῖς + " 1x γεννώμενον + " 1x γεννᾶται. + " 1x γεννῶσα, + " 1x γεννῶσιν + " 3x γενομένην + " 1x γενομένην, + " 27x γενομένης + " 2x γενομένης, + " 3x γενομένοις + " 7x γενομένου + " 2x γενομένων + " 3x γενόμενα + " 1x γενόμενα, + " 2x γενόμενα. + " 4x γενόμεναι + " 6x γενόμενοι + " 4x γενόμενον + " 23x γενόμενος + " 2x γενόμενος· + " 1x γενώμεθα + " 1x γερουσίαν + " 1x γευσάμενος + " 1x γευσάμενος, + " 2x γευσαμένους + " 1x γεωργεῖται, + " 1x γεωργούς, + " 5x γεωργοὶ + " 4x γεωργοὺς + " 1x γεωργοῖς + " 4x γεωργοῖς, + " 1x γεωργός + " 1x γεωργὸν + " 1x γεωργὸς + " 1x γεωργῶν + " 1x γεύσασθαι + " 1x γεύσασθαι· + " 1x γεύσεταί + " 2x γεύσηται + " 3x γεύσωνται + " 1x γεύσῃ + " 1x γεώργιον, + " 1x γηράσκον + " 1x γηράσῃς, + " 2x γινέσθω + " 5x γινέσθω. + " 1x γινομένας + " 1x γινομένη + " 2x γινομένης + " 1x γινομένοις + " 1x γινομένου, + " 1x γινομένων + " 1x γινομένῃ, + " 1x γινωσκέτω + " 1x γινωσκέτω. + " 1x γινωσκομένη + " 3x γινόμενα + " 2x γινόμενα, + " 1x γινόμεναι; + " 1x γινόμενοι + " 1x γινόμενοι. + " 1x γινόμενον + " 2x γινόμενον, + " 1x γινόμενον. + " 2x γινώμεθα + " 9x γινώσκει + " 2x γινώσκει, + " 1x γινώσκει· + " 1x γινώσκειν + " 3x γινώσκεις + " 1x γινώσκεις. + " 3x γινώσκεις; + " 1x γινώσκεται. + " 1x γινώσκεται· + " 17x γινώσκετε + " 2x γινώσκετε, + " 1x γινώσκετε; + " 1x γινώσκητε + " 9x γινώσκομεν + " 1x γινώσκομεν. + " 2x γινώσκοντες + " 4x γινώσκοντες, + " 1x γινώσκουσί + " 1x γινώσκουσιν + " 5x γινώσκω + " 1x γινώσκω; + " 1x γινώσκω· + " 2x γινώσκων + " 1x γινώσκωσιν + " 1x γινώσκῃ + " 1x γλυκύ· + " 3x γλυκὺ + " 2x γλωσσόκομον + " 1x γλωσσῶν + " 2x γλωσσῶν, + " 1x γλωσσῶν. + " 1x γλωσσῶν· + " 11x γλώσσαις + " 3x γλώσσαις, + " 1x γλώσσαις· + " 1x γλώσσας + " 4x γλώσσης + " 4x γλώσσῃ + " 2x γλώσσῃ, + " 1x γλώσσῃ. + " 1x γλῶσσά + " 1x γλῶσσάν + " 6x γλῶσσα + " 2x γλῶσσαι + " 1x γλῶσσαι, + " 1x γλῶσσαι. + " 6x γλῶσσαν + " 1x γνήσιε + " 1x γνήσιον + " 1x γναφεὺς + " 1x γνησίως + " 2x γνησίῳ + " 11x γνοὺς + " 1x γνοὺς, + " 2x γνοῖ + " 1x γνοῖ· + " 2x γνωρίζω + " 1x γνωρίζω. + " 3x γνωρίσαι + " 1x γνωρίσας + " 2x γνωρίσει + " 1x γνωρίσουσιν + " 1x γνωρίσω, + " 1x γνωρίσῃ + " 1x γνωριζέσθω + " 1x γνωρισθέντος, + " 1x γνωρισθῇ + " 1x γνωσθέντες + " 2x γνωσθήσεται + " 2x γνωσθήσεται. + " 1x γνωσθήτω + " 1x γνωσθῇ + " 1x γνωστοὶ + " 1x γνωστοῖς, + " 1x γνωστὰ + " 10x γνωστὸν + " 2x γνωστὸς + " 1x γνωσόμεθα + " 1x γνόντα + " 5x γνόντες + " 1x γνόφῳ + " 5x γνώμην + " 1x γνώμην· + " 2x γνώμης + " 1x γνώμῃ. + " 4x γνώσει + " 4x γνώσει, + " 4x γνώσεσθε + " 1x γνώσεσθε; + " 1x γνώσεται + " 9x γνώσεως + " 2x γνώσεως, + " 1x γνώσεως· + " 2x γνώσομαι + " 3x γνώσονται + " 1x γνώστην + " 1x γνώσῃ + " 1x γνώτω + " 1x γνῶ + " 1x γνῶναί + " 10x γνῶναι + " 3x γνῶναι, + " 1x γνῶναι· + " 5x γνῶσιν + " 2x γνῶσιν, + " 1x γνῶσις + " 1x γνῶσις, + " 1x γνῶσις· + " 6x γνῶτε + " 3x γνῷ + " 1x γνῷς + " 1x γογγυσμοῦ· + " 2x γογγυσμὸς + " 1x γογγυσμῶν + " 1x γογγυσταί, + " 1x γογγύζετε + " 1x γογγύζετε, + " 1x γογγύζοντος + " 1x γογγύζουσιν + " 1x γονέων + " 14x γονεῖς + " 5x γονεῦσιν + " 1x γονυπετήσαντες + " 1x γονυπετήσας + " 2x γονυπετῶν + " 1x γράμμα + " 3x γράμμασιν + " 6x γράμματα + " 1x γράμματι, + " 2x γράμματος + " 1x γράμματος. + " 1x γράφε + " 1x γράφει + " 5x γράφειν + " 2x γράφειν· + " 1x γράφεσθαι· + " 1x γράφηται + " 2x γράφομεν + " 10x γράφω + " 1x γράφω, + " 1x γράφω. + " 1x γράφων + " 4x γράψαι + " 1x γράψαι, + " 1x γράψαντες + " 3x γράψας + " 11x γράψον + " 1x γράψω + " 1x γράψω· + " 1x γράψῃς. + " 16x γραμματέων + " 1x γραμματέων, + " 1x γραμματεύς + " 1x γραμματεύς; + " 3x γραμματεὺς + " 33x γραμματεῖς + " 3x γραμματεῖς, + " 2x γραμματεῖς. + " 1x γραμματεῖς· + " 2x γραμματεῦσιν, + " 1x γραπτὸν + " 3x γραφάς, + " 1x γραφάς; + " 1x γραφάς· + " 2x γραφή + " 3x γραφή, + " 1x γραφή; + " 1x γραφήν + " 1x γραφαί. + " 2x γραφαὶ + " 3x γραφαῖς + " 1x γραφαῖς. + " 1x γραφόμενα + " 4x γραφὰς + " 14x γραφὴ + " 1x γραφὴ, + " 2x γραφὴν + " 1x γραφὴν, + " 3x γραφῆς + " 2x γραφῇ + " 3x γραφῶν + " 1x γραφῶν, + " 1x γραώδεις + " 1x γρηγορήσατε. + " 1x γρηγορήσῃς, + " 5x γρηγορεῖτε + " 1x γρηγορεῖτε, + " 2x γρηγορεῖτε. + " 1x γρηγοροῦντας· + " 1x γρηγοροῦντες + " 1x γρηγορῆσαι + " 1x γρηγορῆσαι; + " 1x γρηγορῇ. + " 2x γρηγορῶμεν + " 1x γρηγορῶν + " 1x γρηγορῶν, + " 1x γυμνήν, + " 1x γυμνασία + " 1x γυμνιτεύομεν + " 2x γυμνοὶ + " 1x γυμνοὺς + " 1x γυμνοῦ, + " 2x γυμνός, + " 1x γυμνότης + " 1x γυμνότητι· + " 1x γυμνότητός + " 1x γυμνὰ + " 3x γυμνὸν + " 4x γυμνὸς + " 5x γυνή + " 2x γυνή, + " 2x γυνή. + " 3x γυνή; + " 1x γυναικάρια + " 4x γυναικί, + " 2x γυναικί; + " 1x γυναικείῳ, + " 4x γυναικός, + " 1x γυναικός; + " 1x γυναικός· + " 9x γυναικὶ + " 16x γυναικὸς + " 1x γυναικὸς, + " 9x γυναικῶν + " 1x γυναικῶν, + " 1x γυναικῶν· + " 1x γυναιξίν + " 1x γυναιξίν, + " 1x γυναιξίν. + " 1x γυναιξὶ + " 2x γυναιξὶν + " 2x γυναῖκά + " 2x γυναῖκές + " 41x γυναῖκα + " 3x γυναῖκα, + " 3x γυναῖκα. + " 1x γυναῖκα; + " 8x γυναῖκας + " 3x γυναῖκας, + " 9x γυναῖκες + " 3x γυναῖκες, + " 1x γυναῖκες. + " 58x γυνὴ + " 1x γυνὴ, + " 2x γωνίαις + " 2x γωνίας + " 1x γωνίας. + " 1x γωνίας; + " 2x γωνίας· + " 1x γωνίᾳ + " 1x γόητες + " 2x γόμον + " 1x γόμον. + " 1x γόνασιν + " 1x γόνατά + " 7x γόνατα + " 2x γόνυ + " 1x γόνυ, + " 1x γύμναζε + " 3x γύναι, + " 1x γύναι. + " 1x γύναι; + " 920x γὰρ + " 1x γὰρ, + " 21x γῆ + " 1x γῆ, + " 1x γῆ. + " 52x γῆν + " 13x γῆν, + " 8x γῆν. + " 5x γῆν· + " 68x γῆς + " 33x γῆς, + " 1x γῆς,— + " 23x γῆς. + " 3x γῆς; + " 6x γῆς· + " 8x γῇ + " 2x γῇ, + " 1x γῇ. + " 1x γῇ; + " 1x γῇ· + " 1x δάκνετε + " 2x δάκρυον + " 2x δάκρυσιν + " 2x δάκτυλόν + " 1x δάνειον + " 112x δέ + " 30x δέ, + " 1x δέ. + " 1x δέ· + " 1x δέδεκται + " 1x δέδεμαι, + " 1x δέδεσαι + " 2x δέδεται + " 1x δέδεται. + " 4x δέδοται + " 2x δέδοται. + " 9x δέδωκάς + " 4x δέδωκέν + " 5x δέδωκα + " 2x δέδωκας + " 8x δέδωκεν + " 1x δέησίς + " 2x δέησιν + " 2x δέησις + " 23x δέκα + " 2x δέκα, + " 2x δέκα. + " 1x δέκατον + " 1x δέκατος + " 2x δένδρα + " 1x δένδρα, + " 1x δένδρα· + " 13x δένδρον + " 3x δένδρον, + " 1x δένδρον. + " 4x δένδρων + " 1x δέξαι + " 1x δέξασθέ + " 2x δέξασθαι + " 1x δέξασθαι, + " 2x δέξασθε + " 1x δέξασθε, + " 7x δέξηται + " 1x δέξηται, + " 1x δέξωνταί + " 1x δέξωνται + " 2x δέομαί + " 4x δέομαι + " 2x δέον + " 1x δέοντα. + " 1x δέους· + " 1x δέρει. + " 1x δέρεις; + " 1x δέρμασιν, + " 2x δέροντες, + " 1x δέρων + " 1x δέρων· + " 1x δέσμας + " 1x δέσμιοι· + " 5x δέσμιον + " 6x δέσμιος + " 1x δέσμιος, + " 4x δέχεται + " 1x δέχεται, + " 3x δέχεται· + " 1x δέχηται, + " 1x δέχονται + " 3x δέχωνται + " 2x δέῃ + " 1x δή + " 1x δήμῳ. + " 1x δήποτε + " 1x δήπου + " 2x δήσαντες + " 1x δήσας + " 1x δήσατε + " 1x δήσητε + " 1x δήσουσιν + " 1x δήσῃ + " 1x δήσῃ, + " 1x δήσῃς + " 1x δίδαξον + " 1x δίδασκε + " 1x δίδασκε. + " 3x δίδοται + " 1x δίδοτε + " 1x δίδοτε, + " 1x δίδου + " 1x δίδου, + " 1x δίδραχμα + " 1x δίδραχμα; + " 6x δίδωμι + " 1x δίδωμι, + " 2x δίδωμι· + " 1x δίδωσίν + " 10x δίδωσιν + " 1x δίκαια, + " 1x δίκαια. + " 3x δίκαιαι + " 1x δίκαιε, + " 8x δίκαιοι + " 1x δίκαιοι, + " 10x δίκαιον + " 1x δίκαιον, + " 1x δίκαιον. + " 1x δίκαιον; + " 2x δίκαιον· + " 12x δίκαιος + " 3x δίκαιος, + " 1x δίκαιόν + " 4x δίκαιός + " 2x δίκην + " 5x δίκτυα + " 1x δίκτυα, + " 2x δίκτυα. + " 2x δίκτυον + " 1x δίκτυον, + " 1x δίκτυον. + " 1x δίς, + " 2x δίστομον + " 1x δίστομος + " 1x δίψει, + " 1x δίψυχοι. + " 1x δίψυχος, + " 2x δίωκε + " 1x δαίμονες + " 1x δαιμονίζεται. + " 1x δαιμονίοις + " 4x δαιμονίου + " 7x δαιμονίων + " 1x δαιμονίων, + " 2x δαιμονίων. + " 1x δαιμονίων· + " 1x δαιμονιζομένου· + " 2x δαιμονιζομένους + " 1x δαιμονιζομένους· + " 1x δαιμονιζομένων. + " 1x δαιμονιζομένῳ + " 1x δαιμονιζόμενοι + " 1x δαιμονιζόμενον + " 1x δαιμονιζόμενον. + " 1x δαιμονιζόμενος + " 1x δαιμονισθείς. + " 1x δαιμονισθεὶς + " 1x δαιμονιώδης· + " 18x δαιμόνια + " 8x δαιμόνια, + " 4x δαιμόνια. + " 2x δαιμόνια· + " 8x δαιμόνιον + " 2x δαιμόνιον, + " 1x δαιμόνιον. + " 4x δακρύων + " 2x δακρύων, + " 1x δακτύλιον + " 1x δακτύλου + " 1x δακτύλους + " 1x δακτύλων + " 3x δακτύλῳ + " 1x δαμάζεται + " 1x δαμάλεως + " 1x δαμάσαι + " 1x δαμάσαι· + " 1x δανίζετε + " 1x δανίζουσιν + " 1x δανίσασθαι + " 1x δανίσητε + " 1x δανιστῇ + " 1x δαπάνην, + " 1x δαπάνησον + " 1x δαπανήσαντος + " 1x δαπανήσασα + " 1x δαπανήσητε. + " 1x δαπανήσω + " 1x δαρήσεσθε + " 2x δαρήσεται + " 2x δεήθητε + " 1x δεήθητι + " 4x δεήσει + " 1x δεήσει, + " 2x δεήσεις + " 1x δεήσεις, + " 1x δεήσεσίν + " 2x δεήσεσιν + " 1x δεήσεως + " 1x δεήσεως, + " 1x δείκνυμι. + " 2x δείκνυσιν + " 4x δείξει + " 4x δείξω + " 1x δείξω. + " 1x δείπνοις + " 1x δείπνοις, + " 1x δείπνοις· + " 3x δείπνου + " 1x δείπνου. + " 1x δείπνῳ + " 3x δείραντες + " 1x δεδάμασται + " 1x δεδέσθαι, + " 1x δεδεκάτωκεν + " 1x δεδεκάτωται· + " 1x δεδεκώς. + " 1x δεδεμένα + " 1x δεδεμένην + " 4x δεδεμένον + " 1x δεδεμένον, + " 1x δεδεμένον. + " 3x δεδεμένος + " 1x δεδεμένος, + " 4x δεδεμένους + " 1x δεδικαίωμαι· + " 1x δεδικαίωται + " 1x δεδικαιωμένος + " 1x δεδιωγμένοι + " 1x δεδοκιμάσμεθα + " 1x δεδομένην + " 4x δεδομένον + " 1x δεδοξασμένον + " 1x δεδοξασμένῃ, + " 1x δεδουλεύκαμεν + " 1x δεδουλωμένας, + " 1x δεδουλωμένοι· + " 1x δεδούλωται + " 1x δεδούλωται. + " 1x δεδωρημένης + " 1x δεδόξασμαι + " 1x δεδόξασται + " 2x δεδώκει + " 1x δεδώκεισαν + " 1x δεδώρηται, + " 1x δεηθέντων + " 2x δεθῆναι + " 1x δειγματίσαι, + " 1x δεικνύειν + " 1x δεικνύεις + " 1x δεικνύοντός + " 1x δειλίας, + " 1x δειλιάτω. + " 2x δειλοί + " 1x δειλοῖς + " 2x δεινῶς + " 1x δειξάτω + " 1x δειπνήσω + " 1x δειπνήσω, + " 2x δειπνῆσαι, + " 1x δεισιδαιμονίας + " 1x δεισιδαιμονεστέρους + " 1x δειχθέντα + " 2x δεκάτας + " 1x δεκάτη. + " 2x δεκάτην + " 1x δεκαπέντε. + " 2x δεκαπέντε· + " 2x δεκατέσσαρες, + " 1x δεκατέσσαρες. + " 1x δεκατεσσάρων + " 1x δεκατεσσάρων, + " 1x δεκτήν, + " 1x δεκτόν. + " 1x δεκτός + " 1x δεκτὸς + " 1x δεκτῷ + " 1x δελεάζοντες + " 1x δελεάζουσιν + " 1x δελεαζόμενος· + " 1x δεξάμενοι + " 3x δεξάμενος + " 1x δεξαμένη + " 2x δεξιά + " 1x δεξιολάβους + " 1x δεξιοῖς + " 2x δεξιόν. + " 2x δεξιὰ + " 4x δεξιὰν + " 1x δεξιὰς + " 1x δεξιὸν + " 1x δεξιὸς + " 4x δεξιᾶς + " 13x δεξιᾷ + " 23x δεξιῶν + " 2x δερματίνην + " 1x δεσμίοις + " 1x δεσμίους. + " 1x δεσμίων + " 1x δεσμεύουσιν + " 1x δεσμεύων + " 1x δεσμοφύλακι + " 2x δεσμοφύλαξ + " 1x δεσμούς + " 5x δεσμοῖς + " 1x δεσμοῖς, + " 1x δεσμοῦ + " 2x δεσμωτήριον + " 1x δεσμωτηρίου· + " 1x δεσμωτηρίῳ + " 2x δεσμώτας + " 3x δεσμὰ + " 1x δεσμὸς + " 5x δεσμῶν + " 1x δεσμῶν. + " 1x δεσπόταις + " 1x δεσπόταις, + " 2x δεσπότας + " 1x δεσπότην + " 1x δεσπότῃ, + " 3x δευτέρα + " 5x δευτέραν + " 1x δευτέραν, + " 1x δευτέρας + " 7x δευτέρου + " 1x δευτέρου. + " 1x δευτέρᾳ + " 3x δευτέρῳ + " 1x δευτεραῖοι + " 4x δεχόμενος + " 1x δεόμεθα + " 3x δεόμενοι + " 2x δεόμενος + " 10x δεύτερον + " 10x δεύτερος + " 1x δεύτερος. + " 1x δεύτερός + " 71x δεῖ + " 2x δεῖ, + " 1x δεῖ. + " 1x δεῖ· + " 1x δεῖγμα + " 3x δεῖν + " 1x δεῖνα + " 2x δεῖξαι + " 4x δεῖξον + " 1x δεῖξόν + " 7x δεῖπνον + " 1x δεῖπνον, + " 6x δεῦρο + " 1x δεῦρο, + " 4x δεῦτε + " 1x δηλοῖ + " 1x δηλοῦντος + " 1x δηλώσας + " 1x δηλώσει, + " 1x δημιουργὸς + " 3x δημοσίᾳ + " 1x δημοσίᾳ. + " 2x δηνάρια + " 1x δηνάρια, + " 2x δηνάριον + " 2x δηνάριον. + " 1x δηνάριον· + " 2x δηναρίου + " 1x δηναρίου, + " 1x δηναρίου· + " 4x δηναρίων + " 3x διά + " 1x διάβολοι, + " 1x διάβολον, + " 11x διάβολος + " 1x διάβολος, + " 1x διάβολος· + " 1x διάβολός + " 1x διάγγελλε + " 1x διάγνωσιν, + " 1x διάγοντες, + " 1x διάγωμεν + " 1x διάδος + " 1x διάδοχον + " 6x διάκονοι + " 1x διάκονοι, + " 3x διάκονον + " 7x διάκονος + " 2x διάκονος, + " 3x διάκονος. + " 1x διάκονος; + " 2x διάκονός + " 1x διάκρισιν + " 3x διάνοιαν + " 1x διάνοιαν, + " 1x διάστημα + " 1x διάταγμα + " 1x διάφορα, + " 1x διέβησαν + " 1x διέβλεψεν + " 1x διέδωκεν + " 1x διέζωσεν + " 1x διέθετο + " 1x διέθετό + " 1x διέκρινεν + " 1x διέλειπεν + " 1x διέλθω· + " 1x διέμενεν + " 1x διέρρηξεν + " 1x διέρχεσθαι + " 1x διέρχεσθαι. + " 2x διέρχεται + " 1x διέρχομαι, + " 1x διέρχωμαι + " 1x διέστη + " 1x διέταξα + " 2x διέταξεν + " 1x διέτριβεν + " 1x διέτριβεν. + " 3x διέτριβον + " 1x διέτριψαν + " 1x διήγειραν + " 1x διήγησιν + " 1x διήνοιγεν + " 2x διήνοιξεν + " 4x διήρχετο + " 2x διήρχοντο + " 1x διαβεβαιοῦνται. + " 1x διαβεβαιοῦσθαι, + " 2x διαβλέψεις + " 4x διαβόλου + " 2x διαβόλου, + " 5x διαβόλου. + " 2x διαβόλου· + " 1x διαβόλους + " 1x διαβόλους, + " 2x διαβόλῳ + " 1x διαβόλῳ, + " 1x διαβόλῳ. + " 1x διαβῆναι + " 1x διαγγέλλων + " 1x διαγγελῇ + " 2x διαγενομένου + " 1x διαγενομένων + " 1x διαγινώσκειν + " 1x διαγνώσομαι + " 1x διαγρηγορήσαντες + " 1x διαδήματα + " 2x διαδήματα, + " 1x διαδίδωσιν. + " 1x διαδεξάμενοι + " 1x διαθέμενος. + " 5x διαθήκη + " 2x διαθήκη, + " 5x διαθήκην + " 14x διαθήκης + " 2x διαθήκης, + " 2x διαθήκῃ + " 2x διαθήσομαι + " 1x διαθεμένου· + " 1x διαθηκῶν + " 1x διαθῆκαι + " 1x διαθῆκαι, + " 2x διαιρέσεις + " 1x διαιροῦν + " 1x διακαθαριεῖ + " 1x διακαθᾶραι + " 1x διακατηλέγχετο + " 2x διακονήσαντες + " 1x διακονήσει + " 6x διακονία + " 1x διακονία, + " 10x διακονίαν + " 4x διακονίαν, + " 1x διακονίαν. + " 1x διακονίαν· + " 6x διακονίας + " 1x διακονίας, + " 2x διακονίᾳ + " 1x διακονίᾳ· + " 1x διακονείτωσαν + " 1x διακονεῖ, + " 1x διακονεῖν + " 1x διακονεῖν; + " 1x διακονηθεῖσα + " 1x διακονηθῆναι + " 1x διακονηθῆναι, + " 1x διακονιῶν + " 2x διακονουμένῃ + " 1x διακονούντων + " 1x διακονοῦντες + " 1x διακονοῦντες. + " 1x διακονοῦσαι + " 2x διακονῆσαι + " 1x διακονῇ + " 2x διακονῇ, + " 1x διακονῶν + " 2x διακονῶν. + " 1x διακονῶν; + " 2x διακοσίας + " 1x διακοσίους + " 1x διακοσίους, + " 1x διακοσίων + " 1x διακοσίων, + " 1x διακρίναντα. + " 1x διακρίνει; + " 1x διακρίνειν, + " 1x διακρίνων + " 2x διακρίσεις + " 1x διακριθῆτε, + " 1x διακριθῇ + " 1x διακρινέτωσαν· + " 1x διακρινομένους + " 3x διακρινόμενος + " 1x διακρινόμενος, + " 1x διακρινόμενος· + " 1x διακρῖναι + " 1x διακόνει + " 2x διακόνοις + " 1x διακόνοις· + " 1x διακόνους + " 1x διακόσιαι + " 1x διαλέγεται + " 6x διαλέκτῳ + " 2x διαλεγομένου + " 1x διαλεγόμενον + " 2x διαλεγόμενος + " 1x διαλλάγηθι + " 1x διαλογίζεσθαι + " 4x διαλογίζεσθε + " 1x διαλογίζονται + " 1x διαλογιζομένων + " 1x διαλογιζόμενοι + " 1x διαλογισμοί. + " 3x διαλογισμοὶ + " 3x διαλογισμοὺς + " 1x διαλογισμοῖς + " 1x διαλογισμοῦ. + " 1x διαλογισμὸν + " 1x διαλογισμὸς + " 1x διαλογισμῶν + " 1x διαλογισμῶν, + " 1x διαλογισμῶν. + " 1x διαμένει + " 1x διαμένεις· + " 1x διαμαρτυράμενοι + " 4x διαμαρτυρόμενος + " 2x διαμαρτύρασθαι + " 1x διαμαρτύρεταί + " 1x διαμαρτύρηται + " 1x διαμαρτύρομαι + " 1x διαμείνῃ + " 1x διαμεμενηκότες + " 1x διαμεμερισμένοι, + " 1x διαμερίζονται + " 1x διαμερίσατε + " 1x διαμεριζόμεναι + " 1x διαμεριζόμενοι + " 1x διαμερισθήσονται, + " 1x διαμερισθεῖσα + " 1x διαμερισμόν. + " 1x διανεμηθῇ + " 1x διανεύων + " 1x διανοήματα + " 2x διανοίας + " 1x διανοίγων + " 5x διανοίᾳ + " 1x διανοιῶν, + " 1x διανοῖγον + " 1x διανυκτερεύων + " 1x διανύσαντες + " 1x διαπαρατριβαὶ + " 2x διαπεράσαντες + " 1x διαπεράσαντος + " 1x διαπερῶν + " 1x διαπερῶσιν. + " 1x διαπλεύσαντες + " 1x διαπονηθεὶς + " 1x διαπονούμενοι + " 1x διαπορευομένου + " 1x διαπορευόμενος + " 1x διαπορεύεσθαι + " 1x διαρήσσων + " 1x διαρπάσαι, + " 1x διαρπάσει. + " 1x διαρπάσει; + " 1x διαρρήξαντες + " 1x διαρρήξας + " 1x διασείσητε + " 1x διασκορπίζων + " 1x διασκορπισθήσονται + " 1x διασκορπισθήσονται. + " 2x διασπαρέντες + " 1x διασπασθῇ + " 1x διαστάσης + " 1x διαστήσαντες + " 1x διαστελλόμενον + " 1x διαστολή· + " 1x διαστολὴ + " 1x διαστολὴν + " 1x διαστρέφοντα + " 1x διαστρέφων + " 1x διαστρέψαι + " 1x διασωθέντα + " 1x διασωθέντες + " 1x διασωθῆναι + " 1x διασώσωσι + " 1x διασώσῃ + " 1x διασῶσαι + " 1x διατάξομαι. + " 1x διατάσσομαι. + " 1x διατάσσων + " 1x διατίθεμαι + " 1x διαταγεὶς + " 1x διαταγὰς + " 1x διαταγῇ + " 1x διαταξάμενος + " 1x διαταχθέντα + " 1x διαταχθέντα; + " 1x διατελεῖτε, + " 2x διατεταγμένον + " 1x διατεταγμένος + " 1x διατεταχέναι + " 1x διατηροῦντες + " 1x διατρίβοντες + " 1x διατροφὰς + " 1x διαυγάσῃ + " 1x διαυγής. + " 3x διαφέρει + " 1x διαφέρει· + " 3x διαφέρετε + " 1x διαφέρετε. + " 1x διαφέροντα + " 1x διαφέροντα, + " 1x διαφερομένων + " 1x διαφημίζειν + " 1x διαφθείρει· + " 1x διαφθείρεται, + " 1x διαφθείροντας + " 1x διαφθεῖραι + " 1x διαφθοράν, + " 4x διαφθοράν. + " 1x διαφθοράν· + " 1x διαφορωτέρας + " 1x διαφορώτερον + " 1x διαφυλάξαι + " 1x διαφόροις + " 1x διαφύγῃ· + " 1x διαχειρίσασθαι. + " 1x διαχλευάζοντες + " 1x διαχωρίζεσθαι + " 2x διδάξαι + " 1x διδάξαι. + " 2x διδάξει + " 1x διδάξωσιν + " 1x διδάξῃ + " 1x διδάξῃ, + " 3x διδάσκαλοι + " 1x διδάσκαλοι; + " 2x διδάσκαλον + " 1x διδάσκαλον; + " 1x διδάσκαλον· + " 6x διδάσκαλος + " 1x διδάσκαλος, + " 2x διδάσκαλος· + " 3x διδάσκει + " 11x διδάσκειν + " 1x διδάσκειν, + " 1x διδάσκειν· + " 3x διδάσκεις + " 1x διδάσκεις, + " 1x διδάσκεις; + " 2x διδάσκεις· + " 9x διδάσκοντες + " 1x διδάσκοντι + " 1x διδάσκοντος + " 1x διδάσκω. + " 16x διδάσκων + " 6x διδάσκων, + " 1x διδάσκων. + " 1x διδάσκῃ + " 2x διδακτικόν, + " 1x διδακτοὶ + " 2x διδακτοῖς + " 1x διδασκάλους + " 2x διδασκάλους, + " 1x διδασκάλων + " 1x διδασκαλία + " 1x διδασκαλίαις + " 2x διδασκαλίαν + " 1x διδασκαλίαν, + " 6x διδασκαλίας + " 3x διδασκαλίᾳ + " 3x διδασκαλίᾳ, + " 3x διδασκαλίᾳ. + " 1x διδασκαλίᾳ· + " 1x διδαχή; + " 1x διδαχαῖς + " 2x διδαχὴ + " 7x διδαχὴν + " 1x διδαχὴν, + " 3x διδαχῆς + " 2x διδαχῆς, + " 10x διδαχῇ + " 1x διδαχῇ, + " 1x διδαχῇ. + " 1x διδαχῇ; + " 5x διδοὺς + " 1x διδόασιν. + " 1x διδόμενον· + " 5x διδόναι + " 1x διδόναι, + " 1x διδόντα + " 1x διδόντα, + " 2x διδόντες + " 3x διδόντι + " 2x διδόντος + " 1x διδῶ + " 1x διεβλήθη + " 1x διεγείρειν + " 1x διεγείρετο. + " 1x διεγείρω + " 2x διεγερθεὶς + " 2x διεγόγγυζον + " 1x διεδίδετο + " 1x διεζωσμένος. + " 1x διεζώσατο, + " 1x διεκρίθη + " 1x διεκρίθητε + " 1x διεκρίνομεν, + " 1x διεκρίνοντο + " 1x διεκώλυεν + " 1x διελάλουν + " 4x διελέγετο + " 2x διελέξατο + " 1x διελέχθησαν + " 1x διελαλεῖτο + " 1x διελεύσεται + " 1x διεληλυθότα + " 4x διελθεῖν + " 1x διελθόντα + " 4x διελθόντες + " 3x διελθὼν + " 1x διελογίζεσθε; + " 2x διελογίζετο + " 5x διελογίζοντο + " 1x διελύθησαν + " 1x διεμάχοντο + " 1x διεμέριζον + " 1x διεμαρτυράμεθα. + " 1x διεμαρτύρατο + " 1x διεμαρτύρατο, + " 1x διεμαρτύρω + " 1x διεμερίσαντο + " 1x διεμερίσθη, + " 1x διενέγκῃ + " 1x διενθυμουμένου + " 1x διεξόδους + " 1x διεπέρασεν, + " 1x διεπορεύετο + " 1x διεπορεύοντο + " 2x διεπρίοντο + " 1x διεπραγματεύσατο. + " 1x διερήσσετο + " 1x διερμήνευσεν + " 1x διερμηνευέτω· + " 1x διερμηνευομένη + " 1x διερμηνευτής, + " 1x διερμηνεύουσιν; + " 1x διερμηνεύῃ, + " 1x διερμηνεύῃ. + " 1x διερχόμενον + " 3x διερχόμενος + " 1x διερωτήσαντες + " 1x διεσάφησαν + " 1x διεσκορπίσθησαν. + " 1x διεσκορπισμένα + " 1x διεσκόρπισα; + " 1x διεσκόρπισας· + " 2x διεσκόρπισεν + " 1x διεσπάρησαν + " 1x διεσπάσθαι + " 1x διεστέλλετο + " 1x διεστέλλετο, + " 3x διεστείλατο + " 1x διεστειλάμεθα, + " 1x διεστραμμένα + " 2x διεστραμμένη, + " 1x διεστραμμένης, + " 1x διεσώθησαν + " 1x διεσώθησαν. + " 1x διετάξατο + " 1x διετήρει + " 1x διετίαν + " 1x διεταξάμην, + " 1x διεταράχθη, + " 1x διετοῦς + " 1x διετρίψαμεν + " 1x διεφέρετο + " 1x διεφήμισαν + " 1x διεφημίσθη + " 1x διεφθάρησαν. + " 1x διεφθαρμένων + " 1x διεχειρίσασθε + " 1x διεῖλεν + " 2x διηγήσαντο + " 2x διηγήσατο + " 1x διηγήσεται; + " 1x διηγήσωνται, + " 1x διηγούμενον + " 1x διηγοῦ + " 1x διηκονήσαμέν + " 3x διηκόνει + " 1x διηκόνει, + " 1x διηκόνησεν, + " 5x διηκόνουν + " 1x διηνεκές. + " 3x διηνεκὲς + " 1x διηνοίχθησαν + " 1x διηνοιγμένους + " 1x διηποροῦντο, + " 2x διηπόρει + " 1x διηπόρουν + " 1x διθάλασσον + " 2x δικαία + " 2x δικαίαν + " 1x δικαίας + " 1x δικαίοις + " 5x δικαίου + " 6x δικαίους + " 2x δικαίωμα + " 1x δικαίωμα. + " 2x δικαίων + " 3x δικαίων, + " 1x δικαίων. + " 3x δικαίως + " 1x δικαίως, + " 1x δικαίως· + " 2x δικαίωσιν + " 2x δικαίῳ + " 1x δικαιοκρισίας + " 10x δικαιοσύνη + " 1x δικαιοσύνη, + " 1x δικαιοσύνη· + " 18x δικαιοσύνην + " 11x δικαιοσύνην, + " 6x δικαιοσύνην. + " 1x δικαιοσύνην; + " 20x δικαιοσύνης + " 7x δικαιοσύνης, + " 1x δικαιοσύνης. + " 1x δικαιοσύνης· + " 10x δικαιοσύνῃ + " 2x δικαιοσύνῃ, + " 2x δικαιοσύνῃ. + " 1x δικαιούμενοι + " 1x δικαιοῖ + " 2x δικαιοῦντα + " 1x δικαιοῦντες + " 1x δικαιοῦσθαι + " 1x δικαιοῦσθε, + " 3x δικαιοῦται + " 1x δικαιοῦται. + " 2x δικαιωθέντες + " 2x δικαιωθήσεται + " 1x δικαιωθήσονται. + " 1x δικαιωθήσῃ, + " 1x δικαιωθῆναι + " 1x δικαιωθῆναι, + " 1x δικαιωθῇς + " 1x δικαιωθῶμεν + " 1x δικαιωθῶμεν· + " 1x δικαιώμασιν + " 1x δικαιώματά + " 4x δικαιώματα + " 1x δικαιώματος + " 1x δικαιώσει + " 1x δικαιῶν· + " 1x δικαιῶσαι + " 1x δικαστήν; + " 1x δικαστὴν + " 1x διλόγους, + " 1x διοπετοῦς; + " 1x διορθωμάτων + " 1x διορθώσεως + " 2x διορυχθῆναι + " 2x διορύσσουσιν + " 1x διπλοῦν· + " 1x διπλότερον + " 1x διπλώσατε + " 1x διπλᾶ + " 1x διπλῆς + " 1x δισμυριάδες + " 1x δισχίλιοι, + " 1x διχάσαι + " 1x διχοστασίαι, + " 1x διχοστασίας + " 2x διχοτομήσει + " 3x διψήσει + " 1x διψήσουσιν + " 2x διψᾷ, + " 1x διψῶ + " 1x διψῶμεν + " 1x διψῶν + " 2x διψῶντα + " 1x διψῶντες + " 1x διψῶντι + " 1x διωγμοὺς + " 2x διωγμοῖς + " 1x διωγμοῖς, + " 2x διωγμοῦ + " 1x διωγμὸν + " 2x διωγμὸς + " 1x διωγμῶν, + " 2x διωκόμενοι + " 1x διωκόντων + " 1x διωξάτω + " 1x διωχθήσονται. + " 1x διϊκνούμενος + " 2x διϊσχυρίζετο + " 1x διϋλίζοντες + " 1x διό, + " 1x διόπερ + " 24x διότι + " 1x διώδευεν + " 2x διώκεις. + " 3x διώκεις; + " 1x διώκεις· + " 2x διώκετε + " 1x διώκομαι; + " 1x διώκομεν + " 1x διώκοντα + " 1x διώκοντας, + " 1x διώκοντες. + " 1x διώκτην + " 2x διώκω + " 3x διώκων + " 1x διώκωνται. + " 1x διώκωσιν + " 1x διώξετε + " 1x διώξητε. + " 2x διώξουσιν, + " 1x διώξουσιν· + " 1x διώξωσιν + " 482x διὰ + " 33x διὸ + " 1x διῆλθεν + " 1x διῆλθεν, + " 3x διῆλθον + " 1x διῆλθον, + " 145x δι’ + " 1x δογμάτων + " 1x δογματίζεσθε + " 1x δοθέντος + " 15x δοθήσεται + " 1x δοθήσεται, + " 3x δοθείσης + " 1x δοθείσῃ + " 4x δοθεῖσάν + " 1x δοθεῖσα + " 3x δοθεῖσαν + " 4x δοθῆναι + " 1x δοθῆναι, + " 3x δοθῇ + " 2x δοκίμιον + " 15x δοκεῖ + " 1x δοκεῖ, + " 4x δοκεῖ; + " 1x δοκεῖν + " 1x δοκεῖς + " 9x δοκεῖτε + " 1x δοκιμάζει· + " 2x δοκιμάζειν + " 1x δοκιμάζειν, + " 1x δοκιμάζεις + " 1x δοκιμάζετε + " 1x δοκιμάζετε, + " 1x δοκιμάζετε; + " 1x δοκιμάζετε· + " 1x δοκιμάζοντι + " 1x δοκιμάζων· + " 1x δοκιμάσαι + " 1x δοκιμάσει. + " 1x δοκιμάσητε, + " 1x δοκιμήν, + " 1x δοκιμαζέσθωσαν + " 2x δοκιμαζέτω + " 1x δοκιμαζομένου, + " 1x δοκιμασίᾳ + " 1x δοκιμὴ + " 3x δοκιμὴν + " 1x δοκιμῆς + " 1x δοκιμῇ + " 1x δοκούντων + " 1x δοκοῦμεν + " 1x δοκοῦν + " 1x δοκοῦντα + " 3x δοκοῦντες + " 1x δοκοῦσα + " 1x δοκοῦσιν + " 1x δοκοῦσιν, + " 1x δοκόν, + " 4x δοκὸν + " 1x δοκὸς + " 1x δοκῇ + " 2x δοκῶ + " 1x δοκῶν + " 1x δολοῦντες + " 1x δοξάζειν + " 1x δοξάζεται + " 2x δοξάζηται + " 1x δοξάζητε + " 2x δοξάζοντες + " 1x δοξάζω, + " 4x δοξάζων + " 1x δοξάσαι + " 1x δοξάσατε + " 4x δοξάσει + " 1x δοξάσει, + " 1x δοξάσω + " 1x δοξάσω. + " 2x δοξάσωσιν + " 1x δοξάσῃ + " 1x δοξαζέτω + " 1x δοξαζόμενος + " 3x δοξασθῇ + " 1x δοξασθῶσιν + " 1x δουλαγωγῶ, + " 1x δουλείαν + " 3x δουλείας + " 1x δουλείας. + " 1x δουλευέτωσαν, + " 1x δουλεύει + " 5x δουλεύειν + " 2x δουλεύειν· + " 1x δουλεύετε + " 1x δουλεύετε· + " 1x δουλεύοντες + " 2x δουλεύοντες, + " 1x δουλεύουσιν + " 1x δουλεύσει + " 1x δουλεύσουσιν + " 2x δουλεύω + " 2x δουλεύων + " 1x δουλεῦσαι + " 1x δουλωθέντες + " 1x δουλώσουσιν + " 2x δοχὴν + " 1x δούλας + " 1x δούλη + " 1x δούλης + " 7x δούλοις + " 6x δούλου + " 17x δούλους + " 2x δούλους, + " 5x δούλων + " 6x δούλῳ + " 1x δούς + " 10x δοὺς + " 1x δοῖ + " 2x δοῦλα + " 3x δοῦλε + " 1x δοῦλε, + " 1x δοῦλε. + " 1x δοῦλοί + " 16x δοῦλοι + " 3x δοῦλοι, + " 1x δοῦλοι. + " 12x δοῦλον + " 3x δοῦλον, + " 2x δοῦλον· + " 29x δοῦλος + " 2x δοῦλος, + " 2x δοῦλος· + " 1x δοῦλόν + " 2x δοῦλός + " 2x δοῦναί + " 26x δοῦναι + " 3x δοῦναι, + " 2x δοῦναι. + " 1x δράκοντα, + " 1x δράκοντι + " 1x δράκοντος + " 1x δράκοντος. + " 8x δράκων + " 1x δράκων. + " 6x δρέπανον + " 1x δρέπανον, + " 1x δρέπανόν + " 3x δραμὼν + " 1x δρασσόμενος + " 1x δραχμὰς + " 2x δραχμὴν + " 2x δρόμον + " 1x δρόμον, + " 1x δυνάμεθά + " 3x δυνάμεθα + " 1x δυνάμεθα· + " 20x δυνάμει + " 2x δυνάμει, + " 3x δυνάμει. + " 1x δυνάμει· + " 16x δυνάμεις + " 1x δυνάμεις, + " 2x δυνάμεις; + " 1x δυνάμενά + " 1x δυνάμενα. + " 1x δυνάμεναι + " 3x δυνάμενοι + " 4x δυνάμενον + " 5x δυνάμενος + " 1x δυνάμεσι + " 1x δυνάμεσιν + " 1x δυνάμεσιν. + " 2x δυνάμεων, + " 1x δυνάμεων. + " 20x δυνάμεως + " 1x δυνάμεως, + " 1x δυνάστας + " 1x δυνάστης + " 2x δυνήσεσθε + " 1x δυνήσεταί + " 4x δυνήσεται + " 1x δυνήσονται + " 1x δυνήσῃ + " 1x δυναίμην + " 1x δυναμένη + " 3x δυναμένου + " 1x δυναμένους + " 1x δυναμένων + " 4x δυναμένῳ + " 1x δυναμούμενοι + " 1x δυνατά + " 1x δυνατά. + " 3x δυνατεῖ + " 1x δυνατοί, + " 3x δυνατοὶ + " 2x δυνατόν + " 1x δυνατόν, + " 4x δυνατός + " 1x δυνατός. + " 4x δυνατὰ + " 5x δυνατὸν + " 1x δυνατὸν, + " 8x δυνατὸς + " 1x δυνηθῆτε + " 1x δυνησόμεθα + " 1x δυσί, + " 1x δυσίν, + " 1x δυσβάστακτα, + " 1x δυσεντερίῳ + " 1x δυσερμήνευτος + " 3x δυσκόλως + " 3x δυσμῶν + " 2x δυσμῶν, + " 1x δυσνόητά + " 1x δυσφημίας + " 1x δυσφημούμενοι + " 2x δυσὶ + " 5x δυσὶν + " 1x δωδέκατος + " 1x δωδεκάφυλον + " 2x δωμάτων. + " 3x δωρεάν. + " 2x δωρεὰ + " 11x δωρεὰν + " 3x δωρεᾶς + " 1x δωρεᾷ. + " 1x δόγμα + " 2x δόγμασιν + " 1x δόγματα + " 2x δόκιμοι + " 2x δόκιμον + " 2x δόκιμος + " 1x δόκιμος, + " 1x δόλιοι, + " 1x δόλον + " 1x δόλον, + " 2x δόλος + " 1x δόλος, + " 2x δόλου + " 3x δόλῳ + " 1x δόλῳ, + " 1x δόμα, + " 3x δόματα + " 1x δόντα + " 1x δόντα, + " 2x δόντος + " 33x δόξα + " 2x δόξα, + " 51x δόξαν + " 4x δόξαν, + " 2x δόξαν. + " 2x δόξαντες + " 2x δόξας + " 1x δόξας· + " 3x δόξασόν + " 42x δόξης + " 2x δόξης, + " 3x δόξης. + " 1x δόξης· + " 1x δόξητε + " 1x δόξω + " 15x δόξῃ + " 1x δόξῃ, + " 5x δόξῃ. + " 1x δόξῃ; + " 1x δόξῃ· + " 2x δός + " 1x δός, + " 1x δόσεως + " 1x δόσις + " 9x δότε + " 1x δότε. + " 1x δότην + " 1x δότω + " 2x δύναιντο + " 2x δύναμίν + " 1x δύναμαί + " 5x δύναμαι + " 22x δύναμιν + " 7x δύναμιν, + " 1x δύναμιν. + " 1x δύναμιν· + " 13x δύναμις + " 1x δύνανταί + " 5x δύνανται + " 1x δύνανται, + " 2x δύνανται. + " 4x δύνασαί + " 3x δύνασαι + " 8x δύνασθαι + " 22x δύνασθε + " 3x δύνασθε, + " 1x δύνασθε. + " 1x δύνασθε; + " 2x δύναταί + " 64x δύναται + " 2x δύναται, + " 1x δύναται. + " 2x δύναται· + " 1x δύνηται + " 1x δύνωνται, + " 2x δύνῃ + " 2x δύνῃ, + " 104x δύο + " 11x δύο, + " 7x δύο. + " 1x δύο; + " 1x δύο· + " 1x δύσεως + " 1x δύσκολόν + " 51x δώδεκα + " 15x δώδεκα, + " 6x δώδεκα. + " 2x δώδεκα· + " 3x δώματος + " 1x δώρημα + " 1x δώρημα· + " 1x δώροις + " 1x δώρῳ + " 18x δώσει + " 1x δώσει· + " 2x δώσεις + " 2x δώσομεν + " 4x δώσουσιν + " 21x δώσω + " 1x δώσω, + " 1x δώσῃ + " 2x δώῃ + " 2619x δὲ + " 1x δὲ, + " 4x δὴ + " 5x δὶς + " 7x δὸς + " 1x δῆλον + " 1x δῆλον, + " 1x δῆλόν + " 1x δῆμον + " 1x δῆμον· + " 1x δῆμος + " 2x δῆσαι + " 4x δῴη + " 2x δῶμα + " 4x δῶμεν + " 1x δῶμεν; + " 3x δῶρά + " 2x δῶρα + " 2x δῶρα, + " 1x δῶρα· + " 2x δῶρον + " 1x δῶρον; + " 1x δῶρον· + " 3x δῶρόν + " 1x δῶσιν + " 2x δῶτε + " 1x δῶτε, + " 3x δῷ + " 2x δῷ, + " 1x δῷ. + " 1x δῷς + " 23x δ’ + " 369x εἰ + " 1x εἰδέα + " 8x εἰδέναι + " 1x εἰδέναι, + " 1x εἰδέναι. + " 1x εἰδήσουσίν + " 2x εἰδυῖα + " 1x εἰδωλίῳ + " 2x εἰδωλοθύτων + " 1x εἰδωλοθύτων, + " 3x εἰδωλολάτραι + " 1x εἰδωλολάτραις + " 1x εἰδωλολάτραις, + " 1x εἰδωλολάτρης + " 1x εἰδωλολάτρης, + " 2x εἰδωλολατρεία, + " 1x εἰδωλολατρείαις. + " 1x εἰδωλολατρείας. + " 2x εἰδωλόθυτα + " 1x εἰδωλόθυτα· + " 2x εἰδωλόθυτον + " 1x εἰδωλόθυτόν + " 1x εἰδόσιν + " 1x εἰδότα + " 2x εἰδότας + " 21x εἰδότες + " 1x εἰδότες, + " 1x εἰδότι + " 1x εἰδώλου + " 2x εἰδώλων + " 1x εἰδώλων. + " 1x εἰδώλων; + " 1x εἰδώλῳ, + " 1x εἰδώς, + " 22x εἰδὼς + " 6x εἰδῆτε + " 1x εἰδῇς + " 2x εἰδῶ + " 1x εἰδῶμεν + " 1x εἰθισμένον + " 1x εἰκοσιτρεῖς + " 10x εἰκόνα + " 4x εἰκόνι + " 3x εἰκόνος + " 6x εἰκὼν + " 4x εἰκῇ + " 1x εἰκῇ. + " 1x εἰκῇ; + " 1x εἰληφὼς + " 1x εἰλικρινίας + " 1x εἰλικρινίας, + " 1x εἰλικρινίᾳ + " 1x εἰλικρινεῖς + " 1x εἰλικρινῆ + " 3x εἰμί, + " 5x εἰμί. + " 3x εἰμί· + " 58x εἰμι + " 20x εἰμι, + " 9x εἰμι. + " 3x εἰμι; + " 4x εἰμι· + " 33x εἰμὶ + " 1x εἰπάτω + " 1x εἰπάτωσαν + " 1x εἰπέ + " 1x εἰπέ, + " 12x εἰπεῖν + " 2x εἰπεῖν, + " 2x εἰπεῖν. + " 3x εἰποῦσα + " 1x εἰπόν + " 2x εἰπόντα + " 1x εἰπόντα· + " 3x εἰπόντες + " 3x εἰπόντος + " 9x εἰπών + " 1x εἰπών. + " 6x εἰπὲ + " 5x εἰπὸν + " 18x εἰπὼν + " 1x εἰπὼν, + " 1x εἰρήκασιν + " 1x εἰρήκατε. + " 2x εἰρήκει + " 1x εἰρήκει, + " 28x εἰρήνη + " 1x εἰρήνη, + " 2x εἰρήνη. + " 15x εἰρήνην + " 3x εἰρήνην, + " 4x εἰρήνην. + " 1x εἰρήνην· + " 11x εἰρήνης + " 5x εἰρήνης, + " 2x εἰρήνης. + " 1x εἰρήνης· + " 3x εἰρήνῃ + " 3x εἰρήνῃ, + " 1x εἰρήνῃ. + " 1x εἰρήνῃ· + " 1x εἰργασμένα. + " 1x εἰρηκέναι + " 1x εἰρηκότος + " 4x εἰρημένον + " 2x εἰρηνεύετε + " 1x εἰρηνεύετε, + " 1x εἰρηνεύοντες· + " 1x εἰρηνική, + " 1x εἰρηνικὸν + " 1x εἰρηνοποιήσας + " 1x εἰρηνοποιοί, + " 1755x εἰς + " 1x εἰσάγαγε + " 2x εἰσάγεσθαι + " 7x εἰσέλθητε + " 2x εἰσέλθητε, + " 1x εἰσέλθητε· + " 1x εἰσέλθωμεν. + " 2x εἰσέλθωσιν + " 7x εἰσέλθῃ + " 2x εἰσέλθῃ, + " 1x εἰσέλθῃς + " 1x εἰσέλθῃς. + " 2x εἰσέλθῃς· + " 1x εἰσέρχεσθε, + " 1x εἰσέρχεται + " 1x εἰσέρχησθε + " 3x εἰσήγαγεν + " 3x εἰσήγαγον + " 1x εἰσήλθατε + " 2x εἰσήλθομεν + " 1x εἰσίασιν + " 5x εἰσίν + " 10x εἰσίν, + " 7x εἰσίν. + " 1x εἰσίν; + " 2x εἰσίν· + " 1x εἰσαγάγῃ + " 1x εἰσαγαγεῖν + " 1x εἰσακουσθήσονται. + " 1x εἰσακουσθεὶς + " 1x εἰσακούσονταί + " 1x εἰσδέξομαι + " 1x εἰσδραμοῦσα + " 1x εἰσελήλυθαν. + " 1x εἰσελεύσεσθαι + " 3x εἰσελεύσεται + " 1x εἰσελεύσομαι + " 4x εἰσελεύσονται + " 1x εἰσελεύσονται. + " 1x εἰσεληλύθατε. + " 1x εἰσελθάτω + " 26x εἰσελθεῖν + " 4x εἰσελθεῖν, + " 3x εἰσελθεῖν. + " 3x εἰσελθεῖν· + " 1x εἰσελθούσης + " 1x εἰσελθοῦσα + " 2x εἰσελθοῦσαι + " 4x εἰσελθόντα + " 4x εἰσελθόντες + " 1x εἰσελθόντι + " 2x εἰσελθόντος + " 2x εἰσελθόντων + " 19x εἰσελθὼν + " 1x εἰσενέγκωσιν + " 2x εἰσενέγκῃς + " 1x εἰσενεγκεῖν + " 1x εἰσεπήδησεν + " 1x εἰσεπορεύετο + " 1x εἰσερχέσθωσαν + " 1x εἰσερχομένην + " 1x εἰσερχομένου + " 2x εἰσερχομένους + " 2x εἰσερχόμενοι + " 1x εἰσερχόμενον + " 3x εἰσερχόμενος + " 2x εἰσηκούσθη + " 1x εἰσηνέγκαμεν + " 1x εἰσιέναι + " 57x εἰσιν + " 9x εἰσιν, + " 13x εἰσιν. + " 6x εἰσιν; + " 3x εἰσιν· + " 1x εἰσκαλεσάμενος + " 1x εἰσπορευομένους + " 1x εἰσπορευομένων + " 1x εἰσπορευόμεναι + " 4x εἰσπορευόμενοι + " 3x εἰσπορευόμενον + " 1x εἰσπορευόμενος + " 1x εἰσπορευόμενος, + " 2x εἰσπορεύεται + " 1x εἰσπορεύεται· + " 1x εἰσπορεύονται + " 1x εἰσπορεύονται· + " 1x εἰσφέρεις + " 1x εἰσφέρεται + " 1x εἰσφέρωσιν + " 1x εἰσόδου + " 42x εἰσὶν + " 1x εἰσὶν, + " 2x εἰσῄει + " 35x εἰσῆλθεν + " 2x εἰσῆλθεν, + " 2x εἰσῆλθεν. + " 1x εἰσῆλθες + " 10x εἰσῆλθον + " 1x εἰσῆλθον, + " 1x εἰσῆλθόν + " 2x εἰωθὸς + " 2x εἰώθει + " 1x εἱλκωμένος + " 6x εἱστήκει + " 1x εἱστήκει. + " 7x εἱστήκεισαν + " 63x εἴ + " 1x εἴα + " 1x εἴασαν + " 3x εἴασεν + " 1x εἴασεν. + " 1x εἴδαμεν + " 1x εἴδαμεν. + " 1x εἴδει + " 4x εἴδετε + " 1x εἴδετε, + " 2x εἴδομέν + " 5x εἴδομεν + " 1x εἴδους + " 1x εἴδους· + " 3x εἴδωλα + " 1x εἴδωλον + " 1x εἴδωλόν + " 11x εἴη + " 9x εἴκοσι + " 1x εἴκοσι, + " 1x εἴληφα + " 2x εἴληφας + " 3x εἴληφεν + " 1x εἴξαμεν + " 4x εἴπας + " 1x εἴπατέ + " 10x εἴπατε + " 6x εἴπερ + " 1x εἴπητέ + " 6x εἴπητε + " 1x εἴπητε· + " 5x εἴπω + " 1x εἴπω, + " 1x εἴπω; + " 10x εἴπωμεν + " 6x εἴπωσιν + " 22x εἴπῃ + " 2x εἴπῃς + " 2x εἴπῃς, + " 3x εἴρηκέν + " 4x εἴρηκα + " 1x εἴρηκαν + " 1x εἴρηκας. + " 5x εἴρηκεν + " 1x εἴς + " 4x εἴσελθε + " 3x εἴσοδον + " 1x εἴσοδος + " 62x εἴτε + " 1x εἴχαμεν + " 3x εἴχετε + " 1x εἴχομεν + " 2x εἴχοσαν· + " 2x εἴων + " 1x εἵλατο + " 1x εἵλκυσαν + " 2x εἵλκυσεν + " 3x εἵνεκεν + " 62x εἶ + " 16x εἶ, + " 4x εἶ. + " 9x εἶ; + " 1x εἶ· + " 1x εἶδές + " 5x εἶδαν + " 2x εἶδαν, + " 39x εἶδεν + " 2x εἶδεν, + " 1x εἶδεν. + " 6x εἶδες + " 1x εἶδες, + " 59x εἶδον + " 12x εἶδον, + " 1x εἶδον. + " 2x εἶδος + " 2x εἶδόν + " 10x εἶναί + " 65x εἶναι + " 28x εἶναι, + " 11x εἶναι. + " 7x εἶναι; + " 3x εἶναι· + " 1x εἶπάν + " 16x εἶπέν + " 3x εἶπα + " 97x εἶπαν + " 2x εἶπαν. + " 2x εἶπαν· + " 2x εἶπας. + " 1x εἶπας· + " 2x εἶπε + " 560x εἶπεν + " 5x εἶπεν, + " 1x εἶπεν. + " 4x εἶπεν· + " 2x εἶπες + " 40x εἶπον + " 3x εἶπον, + " 5x εἶπόν + " 13x εἶτα + " 2x εἶτεν + " 1x εἶχέν + " 2x εἶχαν + " 19x εἶχεν + " 1x εἶχεν, + " 2x εἶχεν. + " 1x εἶχες + " 14x εἶχον + " 3x εἶχον. + " 1x εἷλκον + " 93x εἷς + " 1x εἷς, + " 1x εἷς. + " 1x εὐάρεστοι + " 4x εὐάρεστον + " 1x εὐάρεστον, + " 1x εὐάρεστος + " 1x εὐάρεστόν + " 32x εὐαγγέλιον + " 3x εὐαγγέλιον, + " 2x εὐαγγέλιον. + " 1x εὐαγγέλιον· + " 3x εὐαγγέλιόν + " 1x εὐαγγελίζεσθαι + " 1x εὐαγγελίζεσθαι, + " 3x εὐαγγελίζεται + " 1x εὐαγγελίζομαι + " 2x εὐαγγελίζονται· + " 1x εὐαγγελίζωμαι + " 1x εὐαγγελίζωμαι, + " 14x εὐαγγελίου + " 9x εὐαγγελίου, + " 1x εὐαγγελίσαι + " 2x εὐαγγελίσασθαί + " 3x εὐαγγελίσασθαι + " 1x εὐαγγελίσασθαι, + " 1x εὐαγγελίσασθαι. + " 1x εὐαγγελίσηται + " 1x εὐαγγελίσωμαι. + " 8x εὐαγγελίῳ + " 3x εὐαγγελίῳ. + " 1x εὐαγγελίῳ; + " 1x εὐαγγελιζομένου + " 1x εὐαγγελιζομένων + " 1x εὐαγγελιζομένῳ + " 1x εὐαγγελιζόμεθα + " 1x εὐαγγελιζόμενοί + " 7x εὐαγγελιζόμενοι + " 3x εὐαγγελιζόμενος + " 1x εὐαγγελισαμένου + " 1x εὐαγγελισαμένων + " 1x εὐαγγελισθέντες + " 2x εὐαγγελισθὲν + " 1x εὐαγγελιστάς, + " 1x εὐαγγελιστοῦ + " 1x εὐαγγελιστοῦ, + " 1x εὐαρέστους + " 1x εὐαρέστως + " 1x εὐαρεστεῖται + " 1x εὐαρεστηκέναι + " 1x εὐαρεστῆσαι· + " 1x εὐγενέστεροι + " 1x εὐγενεῖς· + " 1x εὐγενὴς + " 1x εὐδοκήσαντες + " 3x εὐδοκία + " 4x εὐδοκίαν + " 2x εὐδοκίας. + " 1x εὐδοκεῖ + " 2x εὐδοκοῦμεν + " 1x εὐδοκῶ + " 1x εὐδόκησα,— + " 3x εὐδόκησα. + " 1x εὐδόκησα· + " 1x εὐδόκησας, + " 1x εὐδόκησας. + " 6x εὐδόκησεν + " 1x εὐεργέται + " 1x εὐεργεσίας + " 1x εὐεργεσίᾳ + " 1x εὐεργετῶν + " 1x εὐηγγέλισεν + " 2x εὐηγγελίζετο + " 1x εὐηγγελίζετο. + " 1x εὐηγγελίζοντο. + " 2x εὐηγγελίσατο + " 1x εὐηγγελίσθη, + " 1x εὐηγγελισάμεθα + " 4x εὐηγγελισάμην + " 1x εὐηγγελισμένοι + " 30x εὐθέως + " 4x εὐθείας + " 1x εὐθείας; + " 1x εὐθεῖα + " 1x εὐθεῖαν + " 1x εὐθυδρομήσαμεν + " 1x εὐθυδρομήσαντες + " 1x εὐθυμεῖ + " 1x εὐθυμεῖν· + " 1x εὐθυμεῖτε, + " 1x εὐθύμως + " 1x εὐθύνοντος + " 1x εὐθύς· + " 1x εὐθύτητος + " 53x εὐθὺς + " 1x εὐκαίρου + " 1x εὐκαίρουν. + " 2x εὐκαίρως + " 1x εὐκαιρήσῃ. + " 2x εὐκαιρίαν + " 2x εὐκοπώτερον + " 3x εὐκοπώτερον, + " 2x εὐκοπώτερόν + " 1x εὐλαβής, + " 1x εὐλαβείας + " 1x εὐλαβείας, + " 2x εὐλαβεῖς + " 1x εὐλαβηθεὶς + " 1x εὐλαβὴς + " 5x εὐλογήσας + " 1x εὐλογήσω + " 4x εὐλογία + " 2x εὐλογίαις + " 4x εὐλογίαν + " 1x εὐλογίαν. + " 4x εὐλογίας + " 1x εὐλογίᾳ + " 1x εὐλογεῖν + " 1x εὐλογεῖται. + " 3x εὐλογεῖτε + " 1x εὐλογημένοι + " 2x εὐλογημένος + " 3x εὐλογητὸς + " 1x εὐλογοῦμεν + " 2x εὐλογοῦμεν, + " 1x εὐλογοῦντα + " 1x εὐλογοῦνται + " 1x εὐλογοῦντες + " 1x εὐλογοῦντες, + " 1x εὐλογῇς + " 2x εὐλογῶν + " 1x εὐλόγηκεν. + " 7x εὐλόγησεν + " 2x εὐλόγησεν, + " 1x εὐμεταδότους + " 1x εὐνοίας + " 1x εὐνουχίσθησαν + " 1x εὐνούχισαν + " 3x εὐνοῦχοι + " 3x εὐνοῦχος + " 2x εὐνοῦχος, + " 1x εὐνοῶν + " 1x εὐοδοῦσθαι + " 1x εὐοδοῦταί + " 1x εὐοδωθήσομαι + " 1x εὐοδῶται, + " 1x εὐπάρεδρον + " 1x εὐπειθής, + " 1x εὐπερίστατον + " 1x εὐποιΐας + " 1x εὐπορία + " 1x εὐπορεῖτό + " 1x εὐπρέπεια + " 1x εὐπροσδέκτους + " 1x εὐπροσωπῆσαι + " 1x εὐπρόσδεκτος + " 3x εὐπρόσδεκτος, + " 1x εὐρύχωρος + " 2x εὐσέβεια + " 3x εὐσέβειαν + " 2x εὐσέβειαν, + " 2x εὐσέβειαν. + " 1x εὐσεβείαις, + " 2x εὐσεβείας + " 3x εὐσεβείᾳ + " 1x εὐσεβεῖν + " 1x εὐσεβεῖς + " 1x εὐσεβεῖτε, + " 1x εὐσεβὴς + " 1x εὐσεβῆ + " 2x εὐσεβῶς + " 1x εὐσχήμονα + " 1x εὐσχήμονας + " 1x εὐσχήμων + " 1x εὐσχημοσύνην + " 1x εὐσχημόνων + " 3x εὐσχημόνως + " 1x εὐτραπελία, + " 2x εὐτόνως + " 1x εὐφημίας· + " 1x εὐφραίνεσθαι. + " 1x εὐφραίνεσθε, + " 1x εὐφραίνονται, + " 1x εὐφραίνοντο + " 1x εὐφραίνου. + " 1x εὐφραίνων + " 1x εὐφραινόμενος + " 1x εὐφρανθῆναι + " 1x εὐφρανθῶ· + " 1x εὐφρανθῶμεν, + " 2x εὐφροσύνης + " 1x εὐφόρησεν + " 1x εὐχάριστοι + " 1x εὐχήν. + " 1x εὐχαρίστησεν + " 1x εὐχαριστήσαντος + " 9x εὐχαριστήσας + " 1x εὐχαριστία + " 1x εὐχαριστία. + " 4x εὐχαριστίαν + " 3x εὐχαριστίας + " 1x εὐχαριστίας, + " 1x εὐχαριστίας. + " 1x εὐχαριστίᾳ, + " 1x εὐχαριστίᾳ. + " 1x εὐχαριστίᾳ; + " 2x εὐχαριστεῖ + " 1x εὐχαριστεῖν + " 1x εὐχαριστεῖς, + " 1x εὐχαριστεῖτε· + " 1x εὐχαριστηθῇ + " 1x εὐχαριστιῶν + " 1x εὐχαριστοῦμεν + " 3x εὐχαριστοῦντες + " 6x εὐχαριστῶ + " 1x εὐχαριστῶ; + " 2x εὐχαριστῶν + " 1x εὐχόμεθα + " 1x εὐχόμεθα, + " 1x εὐχὴ + " 1x εὐχὴν + " 1x εὐψυχῶ + " 1x εὐωδία + " 1x εὐωδίας, + " 1x εὐωδίας. + " 5x εὐωνύμων + " 2x εὐωνύμων. + " 2x εὐώνυμον + " 1x εὑράμενος. + " 11x εὑρέθη + " 2x εὑρέθη. + " 1x εὑρέθημεν + " 1x εὑρέθησαν + " 1x εὑρέθησαν. + " 1x εὑρήκαμεν, + " 7x εὑρήσει + " 1x εὑρήσει. + " 1x εὑρήσεις + " 2x εὑρήσετέ, + " 5x εὑρήσετε + " 1x εὑρήσετε. + " 2x εὑρήσετε· + " 1x εὑρήσομεν + " 1x εὑρήσουσιν + " 1x εὑρήσουσιν. + " 10x εὑρίσκει + " 1x εὑρίσκει, + " 1x εὑρίσκει. + " 1x εὑρίσκομεν + " 1x εὑρίσκον + " 2x εὑρίσκοντες + " 5x εὑρίσκω + " 1x εὑρίσκω· + " 1x εὑρεθήσεται. + " 1x εὑρεθεὶς + " 1x εὑρεθησόμεθα. + " 1x εὑρεθῆναι + " 1x εὑρεθῆτε. + " 3x εὑρεθῇ + " 1x εὑρεθῇ. + " 2x εὑρεθῶ + " 1x εὑρεθῶσιν + " 5x εὑρεῖν + " 1x εὑρηκέναι + " 1x εὑρισκόμεθα + " 1x εὑροῦσα + " 1x εὑροῦσαι + " 8x εὑρόντες + " 1x εὑρών + " 8x εὑρὼν + " 1x εὑρὼν, + " 1x εὔθετον + " 1x εὔθετόν + " 1x εὔθετός + " 1x εὔθυμοι + " 1x εὔκαιρον + " 1x εὔσημον + " 2x εὔσπλαγχνοι, + " 1x εὔσχημον + " 1x εὔφημα, + " 1x εὔχομαί + " 1x εὔχρηστον + " 1x εὔχρηστον, + " 1x εὔχρηστος + " 1x εὕραμεν + " 1x εὕρηκά + " 1x εὕρηκα + " 1x εὕρητε + " 1x εὕρητε, + " 1x εὕρισκον + " 1x εὕροιεν, + " 1x εὕρομεν + " 1x εὕρομεν. + " 1x εὕρω + " 1x εὕρωμεν + " 3x εὕρωσιν + " 4x εὕρῃ + " 1x εὕρῃ; + " 3x εὖ + " 13x εὗρεν + " 1x εὗρεν, + " 1x εὗρεν. + " 1x εὗρεν·— + " 2x εὗρες + " 27x εὗρον + " 1x εὗρον, + " 2x εὗρον. + " 2x εὗρόν + " 1x ζέοντες, + " 1x ζέων + " 1x ζήλευε + " 1x ζήλου + " 1x ζήλου, + " 1x ζήλῳ, + " 1x ζήλῳ· + " 1x ζήσασα + " 3x ζήσει + " 1x ζήσεσθε. + " 4x ζήσεται + " 2x ζήσεται, + " 2x ζήσεται. + " 1x ζήσεται· + " 1x ζήσετε. + " 3x ζήσομεν + " 1x ζήσομεν; + " 1x ζήσουσιν. + " 1x ζήσω· + " 2x ζήσωμεν + " 1x ζήσωμεν. + " 1x ζήσωμεν· + " 2x ζήσῃ. + " 2x ζήτει + " 1x ζήτησιν + " 1x ζήτησις + " 1x ζήτησον + " 2x ζεστός. + " 1x ζεστὸς + " 1x ζευκτηρίας + " 1x ζεῦγος + " 1x ζηλοῖ, + " 1x ζηλοῦσθαι + " 1x ζηλοῦσιν + " 3x ζηλοῦτε + " 1x ζηλοῦτε, + " 1x ζηλοῦτε. + " 1x ζηλωταί + " 2x ζηλωταὶ + " 1x ζηλωτὴν + " 2x ζηλωτὴς + " 1x ζηλώσαντες + " 1x ζηλῶ + " 1x ζημίαν + " 2x ζημίαν. + " 1x ζημίας + " 1x ζημιωθήσεται, + " 1x ζημιωθείς; + " 1x ζημιωθῆναι + " 1x ζημιωθῆτε + " 1x ζημιωθῇ; + " 1x ζητήματά + " 1x ζητήματα + " 1x ζητήματος + " 3x ζητήσεις + " 3x ζητήσετέ + " 2x ζητήσεως + " 2x ζητήσουσιν + " 1x ζητήσῃ + " 1x ζητείτω + " 7x ζητεῖ + " 1x ζητεῖ, + " 1x ζητεῖ· + " 2x ζητεῖν + " 1x ζητεῖς + " 1x ζητεῖς; + " 3x ζητεῖτέ + " 1x ζητεῖται + " 9x ζητεῖτε + " 4x ζητεῖτε, + " 4x ζητεῖτε; + " 2x ζητεῖτε· + " 1x ζητηθήσεται + " 1x ζητημάτων + " 1x ζητημάτων· + " 1x ζητησάτω + " 1x ζητούντων + " 1x ζητοῦμέν + " 2x ζητοῦν + " 2x ζητοῦντές + " 8x ζητοῦντες + " 1x ζητοῦντι + " 2x ζητοῦσίν + " 3x ζητοῦσιν + " 3x ζητοῦσιν, + " 1x ζητῆσαι + " 4x ζητῶ + " 9x ζητῶν + " 1x ζιζάνιά + " 4x ζιζάνια + " 1x ζιζάνια. + " 1x ζιζάνια; + " 1x ζιζανίων + " 1x ζυγόν + " 1x ζυγός + " 3x ζυγὸν + " 1x ζυγῷ + " 1x ζυμοῖ. + " 1x ζυμοῖ; + " 1x ζωή + " 2x ζωή· + " 4x ζωήν, + " 2x ζωήν. + " 1x ζωήν· + " 1x ζωγρῶν. + " 1x ζωογονήσει + " 1x ζωογονεῖσθαι. + " 1x ζωογονοῦντος + " 1x ζωοποιήσει + " 1x ζωοποιεῖ, + " 2x ζωοποιεῖ. + " 1x ζωοποιεῖται + " 1x ζωοποιηθήσονται. + " 1x ζωοποιηθεὶς + " 1x ζωοποιοῦν, + " 1x ζωοποιοῦν. + " 1x ζωοποιοῦντος + " 1x ζωοποιῆσαι, + " 20x ζωὴ + " 1x ζωὴ, + " 51x ζωὴν + " 2x ζωὴν, + " 27x ζωῆς + " 8x ζωῆς, + " 1x ζωῆς,— + " 7x ζωῆς. + " 3x ζωῆς· + " 4x ζωῇ + " 1x ζόφον + " 2x ζόφος + " 1x ζόφου + " 1x ζόφῳ + " 2x ζύμη + " 1x ζύμην, + " 5x ζύμης + " 1x ζύμης, + " 2x ζύμῃ + " 2x ζύμῃ, + " 2x ζώνας + " 1x ζώνη + " 5x ζώνην + " 2x ζώντων + " 2x ζώντων. + " 1x ζώντων· + " 1x ζώσει + " 3x ζῆλον + " 1x ζῆλον, + " 6x ζῆλος + " 2x ζῆλος, + " 6x ζῆν + " 4x ζῆν. + " 2x ζῆν· + " 1x ζῆτε, + " 6x ζῇ + " 2x ζῇ, + " 3x ζῇ. + " 1x ζῇ; + " 1x ζῇ· + " 2x ζῇς, + " 3x ζῴου + " 7x ζῴων + " 1x ζῴων, + " 5x ζῶ + " 4x ζῶμεν + " 3x ζῶμεν, + " 7x ζῶν + " 1x ζῶν. + " 1x ζῶν; + " 3x ζῶντα + " 3x ζῶντα, + " 4x ζῶντας + " 7x ζῶντες + " 5x ζῶντι + " 1x ζῶντι, + " 1x ζῶντι. + " 4x ζῶντος + " 5x ζῶντος, + " 4x ζῶντος. + " 1x ζῶντος· + " 1x ζῶσα + " 3x ζῶσαν + " 1x ζῶσαν. + " 1x ζῶσαν· + " 1x ζῶσι + " 1x ζῶσιν + " 1x ζῶσιν. + " 6x ζῷα + " 2x ζῷα, + " 4x ζῷον + " 1x ηὐδοκήσαμεν + " 2x ηὐδόκησαν + " 1x ηὐκαίρουν + " 1x ηὐλίζετο + " 1x ηὐλίσθη + " 1x ηὐφράνθη + " 1x ηὐχαρίστησαν, + " 1x ηὐχόμην + " 1x ηὑρίσκετο + " 4x ηὔξανεν + " 1x ηὔξανεν, + " 1x ηὔξανεν· + " 2x ηὔξησεν + " 1x ηὔχοντο + " 1x ηὕρισκον + " 1x ηὕρισκον· + " 6x θάλασσα + " 18x θάλασσαν + " 9x θάλασσαν, + " 7x θάλασσαν. + " 8x θάλασσαν· + " 1x θάλπει + " 1x θάλπῃ + " 2x θάμβος + " 1x θάμβους + " 2x θάνατε, + " 14x θάνατον + " 7x θάνατον, + " 3x θάνατον. + " 2x θάνατον· + " 15x θάνατος + " 5x θάνατος, + " 1x θάνατος. + " 1x θάνατος; + " 1x θάνατος· + " 1x θάρσος. + " 4x θάψαι + " 1x θέατρον + " 1x θέατρον, + " 1x θέατρον. + " 19x θέλει + " 3x θέλειν + " 1x θέλειν, + " 11x θέλεις + " 1x θέλεις, + " 2x θέλεις. + " 1x θέλεις; + " 1x θέλετέ + " 12x θέλετε + " 1x θέλετε, + " 2x θέλετε; + " 6x θέλημά + " 33x θέλημα + " 1x θέλημα. + " 1x θέλησιν. + " 4x θέλητε + " 3x θέλοι + " 7x θέλομεν + " 1x θέλοντές + " 1x θέλοντί + " 1x θέλοντα + " 1x θέλοντας + " 6x θέλοντες + " 1x θέλοντι + " 1x θέλοντος + " 1x θέλοντος, + " 3x θέλουσιν + " 3x θέλουσιν, + " 30x θέλω + " 2x θέλω, + " 13x θέλων + " 1x θέλωσι + " 8x θέλῃ + " 2x θέλῃς + " 2x θέλῃς, + " 2x θέμενος + " 1x θέντες + " 1x θέντος + " 1x θέρισον, + " 1x θέρμης + " 2x θέρος + " 1x θέρος· + " 1x θέτε + " 1x θήκην· + " 1x θήλειαι + " 1x θήραν + " 1x θήσει. + " 1x θήσει· + " 1x θήσεις; + " 2x θήσω + " 1x θήσω. + " 2x θίγῃ + " 1x θίγῃς, + " 21x θαλάσσης + " 4x θαλάσσης, + " 3x θαλάσσης. + " 1x θαλάσσης· + " 2x θαλάσσῃ + " 6x θαλάσσῃ, + " 2x θαλάσσῃ. + " 2x θαλάσσῃ· + " 1x θανάσιμόν + " 1x θανάτοις + " 40x θανάτου + " 6x θανάτου, + " 5x θανάτου. + " 2x θανάτου· + " 9x θανάτῳ + " 1x θανάτῳ, + " 1x θανάτῳ. + " 3x θανάτῳ· + " 1x θανατηφόρου. + " 1x θανατούμεθα + " 1x θανατούμενοι, + " 1x θανατοῦτε, + " 1x θανατωθεὶς + " 3x θανατώσουσιν + " 1x θανατώσωσιν, + " 2x θανατῶσαι + " 1x θαρροῦμεν + " 1x θαρροῦντας + " 1x θαρρῆσαι + " 2x θαρρῶ + " 1x θαρσεῖτε, + " 2x θαυμάζειν + " 2x θαυμάζετε + " 1x θαυμάζετε, + " 1x θαυμάζετε. + " 1x θαυμάζητε. + " 2x θαυμάζοντες + " 1x θαυμάζων + " 1x θαυμάσαι + " 1x θαυμάσαντες + " 1x θαυμάσατε + " 1x θαυμάσια + " 1x θαυμάσῃς + " 1x θαυμαζόντων + " 1x θαυμαζόντων, + " 1x θαυμασθήσονται + " 1x θαυμασθῆναι + " 1x θαυμαστόν + " 1x θαυμαστόν, + " 1x θαυμαστὰ + " 2x θαυμαστὴ + " 1x θαυμαστὸν + " 1x θαψάντων + " 1x θαῦμα + " 1x θαῦμα· + " 2x θεάσασθαι + " 2x θεάσασθαι; + " 1x θεάσασθε + " 1x θεέ + " 2x θείας + " 1x θείου + " 1x θείου, + " 1x θείῳ + " 1x θείῳ, + " 1x θείῳ. + " 2x θεαθῆναι + " 2x θεασάμενοι + " 3x θεασάμενος + " 1x θεασαμένοις + " 1x θεατριζόμενοι, + " 1x θειότης, + " 1x θειώδεις· + " 1x θελήματά + " 1x θελήματα + " 6x θελήματι + " 13x θελήματος + " 1x θελήματος, + " 1x θελήσαντάς + " 1x θελήσω + " 1x θελήσωσιν. + " 1x θελήσῃ + " 2x θελήσῃ, + " 3x θελόντων + " 1x θεμέλια + " 1x θεμέλιοι + " 8x θεμέλιον + " 2x θεμέλιος + " 1x θεμελίου, + " 2x θεμελίους + " 1x θεμελίῳ + " 1x θεμελιώσει. + " 1x θεοδίδακτοί + " 1x θεομάχοι + " 1x θεοσέβειαν, + " 1x θεοσεβὴς + " 1x θεοστυγεῖς, + " 4x θεοὶ + " 2x θεοὺς + " 1x θεοῖς· + " 1x θεοῦ + " 1x θεοῦ. + " 1x θεράπευσον + " 1x θεράπων + " 1x θερίζειν + " 1x θερίζεις + " 1x θερίζουσιν + " 1x θερίζουσιν, + " 1x θερίζω + " 3x θερίζων + " 2x θερίζων. + " 1x θερίσαι, + " 2x θερίσει + " 1x θερίσει, + " 1x θερίσει. + " 1x θερίσει· + " 1x θερίσομεν + " 1x θερίσομεν; + " 1x θεραπείαν + " 2x θεραπείας + " 1x θεραπευθῆναι, + " 1x θεραπεύει, + " 1x θεραπεύειν + " 1x θεραπεύειν· + " 1x θεραπεύεσθαι + " 1x θεραπεύεσθε + " 1x θεραπεύεται + " 1x θεραπεύετε + " 1x θεραπεύετε, + " 1x θεραπεύοντες + " 1x θεραπεύσει + " 1x θεραπεύσω + " 2x θεραπεύων + " 1x θεραπεῦσαι + " 1x θεραπεῦσαι. + " 1x θεραπεῦσαι; + " 1x θερισάντων + " 3x θερισμοῦ + " 1x θερισμοῦ· + " 1x θερισμόν. + " 1x θερισμός. + " 2x θερισμὸν + " 5x θερισμὸς + " 1x θερισταὶ + " 1x θερισταῖς + " 1x θερμαίνεσθε + " 1x θερμαινόμενον + " 1x θερμαινόμενος + " 2x θερμαινόμενος. + " 1x θεωρήσαντες + " 1x θεωρήσουσιν + " 1x θεωρήσῃ + " 1x θεωρίαν + " 8x θεωρεῖ + " 1x θεωρεῖ, + " 2x θεωρεῖν. + " 5x θεωρεῖτέ + " 4x θεωρεῖτε + " 1x θεωρεῖτε, + " 1x θεωρούντων + " 1x θεωροῦντας + " 3x θεωροῦντες + " 1x θεωροῦντες. + " 1x θεωροῦντος + " 2x θεωροῦσαι, + " 3x θεωροῦσιν + " 1x θεωρῆσαι + " 1x θεωρῆτε + " 1x θεωρῇ + " 3x θεωρῶ + " 1x θεωρῶ. + " 3x θεωρῶν + " 1x θεωρῶν. + " 1x θεωρῶσιν + " 1x θεόν + " 1x θεόν. + " 1x θεόπνευστος + " 4x θεὶς + " 2x θεὸν + " 4x θεὸς + " 1x θεᾶς + " 3x θεῖναι + " 1x θεῖναι. + " 1x θεῖον + " 1x θεῖον. + " 1x θεῷ. + " 1x θεῷ; + " 1x θεῷ· + " 3x θηλαζούσαις + " 1x θηλαζόντων + " 1x θηλείας + " 1x θηρία + " 1x θηρία, + " 18x θηρίον + " 1x θηρίον, + " 8x θηρίου + " 4x θηρίου, + " 1x θηρίου. + " 2x θηρίου· + " 2x θηρίων + " 1x θηρίων, + " 2x θηρίῳ + " 4x θηρίῳ, + " 1x θηρεῦσαί + " 1x θησαυρίζειν, + " 1x θησαυρίζεις + " 2x θησαυρίζετε + " 2x θησαυρίζων + " 1x θησαυροὶ + " 3x θησαυροὺς + " 4x θησαυροῦ + " 1x θησαυρός + " 5x θησαυρὸν + " 1x θησαυρὸς + " 1x θησαυρῶν + " 1x θησαυρῷ + " 1x θλίβεσθαι, + " 1x θλίβουσιν + " 1x θλίβωσιν + " 8x θλίψει + " 1x θλίψει. + " 1x θλίψεις + " 1x θλίψεσίν + " 3x θλίψεσιν + " 2x θλίψεσιν, + " 3x θλίψεων + " 9x θλίψεως + " 2x θλιβομένοις + " 1x θλιβόμεθα, + " 1x θλιβόμενοι + " 1x θλιβόμενοι, + " 1x θλιβόμενοι· + " 10x θλῖψιν + " 5x θλῖψις + " 1x θλῖψις, + " 1x θλῖψις· + " 1x θνητὰ + " 3x θνητὸν + " 1x θνητῇ + " 1x θνητῷ + " 1x θορυβάζῃ + " 1x θορυβεῖσθε + " 1x θορυβεῖσθε· + " 1x θορυβούμενον + " 1x θορύβου, + " 1x θρέμματα + " 1x θρηνήσετε + " 1x θρησκεία + " 1x θρησκεία. + " 1x θρησκείας + " 1x θρησκείᾳ + " 1x θρησκὸς + " 1x θριαμβεύοντι + " 1x θριαμβεύσας + " 4x θριξὶν + " 1x θροεῖσθαι + " 2x θροεῖσθε· + " 1x θρόμβοι + " 1x θρόνοι + " 7x θρόνον + " 5x θρόνος + " 1x θρόνος, + " 26x θρόνου + " 4x θρόνου, + " 2x θρόνου. + " 4x θρόνους + " 1x θρόνους, + " 2x θρόνων + " 9x θρόνῳ + " 2x θρὶξ + " 1x θυέλλῃ + " 11x θυγάτηρ + " 1x θυγάτριον + " 1x θυγάτριόν + " 4x θυγατέρα + " 1x θυγατέρας, + " 2x θυγατέρες + " 1x θυγατέρων + " 1x θυγατρός + " 1x θυγατρὶ + " 3x θυγατρὸς + " 2x θυμιάματα + " 2x θυμιάματος. + " 1x θυμιαμάτων + " 1x θυμιαμάτων, + " 1x θυμιατήριον + " 1x θυμιᾶσαι + " 2x θυμοί, + " 1x θυμομαχῶν + " 10x θυμοῦ + " 1x θυμόν, + " 1x θυμός. + " 2x θυμὸν + " 2x θυμὸς + " 1x θυρίδος + " 1x θυρίδος, + " 1x θυρεὸν + " 1x θυρωρός + " 1x θυρωρὸς + " 1x θυρωρῷ + " 1x θυρωρῷ, + " 3x θυρῶν + " 1x θυρῶν, + " 1x θυσία, + " 1x θυσίαι + " 3x θυσίαις + " 8x θυσίαν + " 1x θυσίαν, + " 1x θυσίαν· + " 7x θυσίας + " 1x θυσίας, + " 1x θυσίᾳ + " 1x θυσιαστήριά + " 5x θυσιαστήριον + " 1x θυσιαστήριον; + " 9x θυσιαστηρίου + " 1x θυσιαστηρίου, + " 1x θυσιαστηρίου. + " 3x θυσιαστηρίῳ + " 1x θυσιαστηρίῳ, + " 1x θυσιαστηρίῳ· + " 1x θυσιῶν + " 1x θυσιῶν. + " 1x θόρυβον + " 2x θόρυβον, + " 3x θόρυβος + " 1x θύγατερ· + " 1x θύειν + " 1x θύειν. + " 1x θύεσθαι + " 1x θύουσιν, + " 1x θύουσιν· + " 4x θύρα + " 1x θύρα. + " 1x θύρα· + " 1x θύραι + " 1x θύραι. + " 2x θύραις. + " 10x θύραν + " 3x θύραν, + " 1x θύραν. + " 7x θύρας + " 1x θύρας, + " 3x θύρᾳ + " 1x θύσατε, + " 1x θύσῃ + " 1x θύϊνον + " 2x θώρακα + " 3x θώρακας + " 2x θῆλυ + " 1x θῆλυ· + " 2x θῇ + " 2x θῦσον + " 5x θῶ + " 1x θῶμεν; + " 1x κάθηται + " 1x κάθηται, + " 2x κάθου + " 1x κάθῃ + " 1x κάκωσιν + " 6x κάλαμον + " 1x κάλαμος + " 1x κάλει + " 1x κάλλιον + " 3x κάλυμμα + " 1x κάλυμμα. + " 4x κάμηλον + " 1x κάμητε + " 2x κάμινον + " 1x κάμνοντα, + " 1x κάμπτω + " 1x κάμψει + " 1x κάμψῃ + " 6x κάρφος + " 6x κάτω + " 1x κάτω, + " 1x κάτω. + " 2x κάτω· + " 1x κέκλεισται, + " 2x κέκληκεν + " 1x κέκληταί + " 1x κέκληται + " 1x κέκλικεν + " 1x κέκραγεν + " 2x κέκρικα + " 1x κέκρικεν + " 1x κέκριται, + " 1x κέκριται. + " 1x κέκρυπται + " 1x κέλευσον + " 1x κέλευσόν + " 1x κέντρα + " 1x κέντρα, + " 1x κέντρον + " 1x κέντρον; + " 1x κέρας + " 7x κέρατα + " 1x κέρατα. + " 1x κέρδη, + " 1x κέρδος. + " 1x κέρδους + " 1x κέρματα + " 1x κέχρημαι + " 1x κήνσου. + " 2x κήπῳ + " 1x κήρυγμά + " 6x κήρυγμα + " 1x κήρυκα + " 1x κήρυξ + " 1x κήρυξον + " 1x κήτους + " 1x κίνδυνος + " 1x κίνησιν. + " 30x καί + " 1x καί, + " 1x καίγε + " 1x καίεται. + " 1x καίουσιν + " 5x καίπερ + " 2x καίτοι + " 16x καθάπερ + " 1x καθάρισον + " 3x καθέδρας + " 1x καθήκοντα, + " 1x καθήμεναι + " 6x καθήμενοι + " 1x καθήμενοι, + " 11x καθήμενον + " 14x καθήμενος + " 1x καθήμενος, + " 1x καθήμενος· + " 2x καθήσεσθε + " 1x καθίζετε; + " 5x καθίσαι + " 1x καθίσαι, + " 2x καθίσαντες + " 1x καθίσαντος + " 11x καθίσας + " 1x καθίσατε + " 1x καθίσει + " 2x καθίσταται + " 1x καθίσταται. + " 1x καθίσταται· + " 2x καθίστησιν + " 1x καθίσωμεν + " 1x καθίσωσιν + " 1x καθίσῃ + " 1x καθαίρει + " 2x καθαίρεσιν + " 1x καθαίρεσιν. + " 1x καθαιρεῖσθαι + " 1x καθαιροῦντες + " 1x καθαρά, + " 1x καθαρίζει + " 1x καθαρίζεσθαι, + " 1x καθαρίζεται + " 1x καθαρίζετε + " 2x καθαρίζετε, + " 1x καθαρίζονται + " 1x καθαρίζονται, + " 1x καθαρίζων + " 3x καθαρίσαι. + " 2x καθαρίσας + " 1x καθαρίσατε + " 2x καθαρίσθητι. + " 1x καθαρίσθητι· + " 1x καθαρίσωμεν + " 2x καθαρίσῃ + " 1x καθαριεῖ + " 4x καθαρισμοῦ + " 1x καθαρισμοῦ. + " 2x καθαρισμὸν + " 3x καθαροί + " 1x καθαροὶ + " 1x καθαροῖς· + " 1x καθαρόν, + " 2x καθαρόν. + " 1x καθαρόν· + " 1x καθαρός + " 1x καθαρότητα, + " 3x καθαρὰ + " 3x καθαρὸν + " 2x καθαρὸς + " 2x καθαρᾶς + " 2x καθαρᾷ + " 1x καθαρᾷ, + " 1x καθαρῷ. + " 1x καθαρῷ· + " 1x καθεζομένους, + " 1x καθεζόμενοι + " 1x καθεζόμενον + " 1x καθεζόμενος + " 1x καθελεῖν + " 1x καθελόντες + " 3x καθελὼν + " 1x καθελῶ + " 5x καθεξῆς + " 3x καθεύδει. + " 1x καθεύδειν + " 1x καθεύδεις; + " 1x καθεύδετε; + " 4x καθεύδοντας, + " 1x καθεύδοντας. + " 1x καθεύδοντες + " 1x καθεύδουσιν, + " 2x καθεύδωμεν + " 1x καθεύδων, + " 1x καθεύδων· + " 1x καθεύδῃ + " 1x καθεῖλεν + " 1x καθεῖς, + " 1x καθηγηταί, + " 1x καθηγητὴς + " 1x καθημένην + " 1x καθημένης + " 3x καθημένοις + " 1x καθημένοις, + " 7x καθημένου + " 5x καθημένους + " 1x καθημένους, + " 1x καθημένων + " 7x καθημένῳ + " 1x καθημένῳ, + " 1x καθημερινῇ + " 1x καθιέμενον + " 1x καθιεμένην + " 1x καθιστάνοντες + " 1x καθορᾶται, + " 1x καθωπλισμένος + " 1x καθόλου + " 6x καθότι + " 10x καθώς + " 1x καθώσπερ + " 1x καθὰ + " 4x καθὸ + " 165x καθὼς + " 2x καθῆκαν + " 1x καθῆκεν + " 1x καθῆσθαι + " 1x καθῆσθαι, + " 1x καθῆψεν + " 60x καθ’ + " 1x καινά. + " 1x καινή + " 1x καινήν, + " 1x καινήν· + " 1x καιναῖς, + " 1x καινούς, + " 1x καινούς. + " 2x καινοὺς + " 1x καινοῦ + " 1x καινοῦ. + " 1x καινόν, + " 1x καινόν. + " 1x καινότερον. + " 2x καινότητι + " 2x καινὰ + " 5x καινὴ + " 7x καινὴν + " 1x καινὴν, + " 8x καινὸν + " 3x καινῆς + " 1x καινῷ + " 1x καιομένη + " 1x καιομένης + " 1x καιομένῃ + " 3x καιροὶ + " 5x καιροὺς + " 5x καιροῖς + " 5x καιροῦ + " 2x καιροῦ. + " 2x καιρόν, + " 2x καιρός + " 20x καιρὸν + " 15x καιρὸς + " 1x καιρῶν + " 2x καιρῶν, + " 19x καιρῷ + " 2x καιρῷ, + " 1x καιρῷ. + " 1x καιρῷ; + " 1x καιόμεναι + " 1x καιόμενοι· + " 1x καιόμενον + " 2x καιόμενος + " 1x κακά. + " 1x κακά· + " 1x κακήν, + " 1x κακία + " 1x κακίαν + " 1x κακίαν, + " 4x κακίας + " 2x κακίᾳ + " 1x κακίᾳ, + " 1x κακίᾳ. + " 1x κακαί. + " 1x κακοηθείας, + " 1x κακολογοῦντες + " 1x κακολογῆσαί + " 2x κακολογῶν + " 1x κακοπάθησον, + " 1x κακοπαθείας + " 1x κακοπαθῶ + " 1x κακοποιοῦντας. + " 1x κακοποιὸς + " 2x κακοποιῆσαι, + " 2x κακοποιῶν + " 1x κακοποιῶν, + " 1x κακουχουμένων + " 1x κακουχούμενοι, + " 1x κακούργους, + " 1x κακούργων + " 1x κακούς, + " 1x κακοὶ + " 1x κακοὺς + " 5x κακοῦ + " 1x κακοῦ, + " 1x κακοῦ. + " 1x κακοῦ· + " 1x κακοῦργοι + " 1x κακοῦργος, + " 4x κακόν, + " 2x κακόν. + " 1x κακόν; + " 1x κακόν· + " 1x κακώσουσιν + " 1x κακώσων + " 4x κακὰ + " 16x κακὸν + " 1x κακὸς + " 1x κακῶν + " 3x κακῶν, + " 15x κακῶς + " 1x κακῶς. + " 2x κακῶσαί + " 1x κακῷ. + " 1x καλάμην, + " 1x καλάμου + " 4x καλάμῳ + " 4x καλέσαι + " 1x καλέσαντα + " 1x καλέσαντες + " 4x καλέσαντος + " 6x καλέσας + " 1x καλέσατε + " 3x καλέσεις + " 1x καλέσητε + " 1x καλέσουσιν + " 2x καλήν, + " 3x καλεῖ + " 1x καλεῖ, + " 1x καλεῖν, + " 3x καλεῖσθαι + " 3x καλεῖται + " 1x καλεῖται, + " 1x καλεῖται. + " 1x καλεῖτε + " 1x καλλιέλαιον, + " 1x καλοδιδασκάλους, + " 1x καλοποιοῦντες. + " 3x καλουμένη + " 3x καλουμένην + " 1x καλουμένης + " 2x καλουμένου + " 3x καλουμένῃ + " 11x καλούμενον + " 7x καλούμενος + " 1x καλοὶ + " 3x καλοὺς + " 2x καλοῖς + " 1x καλοῖς, + " 3x καλοῦ + " 1x καλοῦνται. + " 1x καλοῦντες + " 3x καλοῦντος + " 1x καλοῦντος, + " 1x καλοῦσα· + " 10x καλόν + " 2x καλόν, + " 1x καλόν. + " 1x καλός, + " 2x καλός. + " 2x καλύπτει + " 1x καλύπτεσθαι + " 1x καλύψει + " 7x καλὰ + " 9x καλὴν + " 39x καλὸν + " 1x καλὸν, + " 4x καλὸς + " 2x καλῆς + " 2x καλῇ + " 7x καλῶν + " 25x καλῶς + " 3x καλῶς, + " 2x καλῶς· + " 1x καλῷ + " 2x καμήλου + " 1x καμίνου + " 1x καμίνῳ + " 1x κανόνα + " 2x κανόνι + " 1x κανόνος + " 1x καπηλεύοντες + " 4x καπνοῦ + " 1x καπνοῦ. + " 2x καπνὸν + " 6x καπνὸς + " 15x καρδία + " 2x καρδία, + " 1x καρδία. + " 1x καρδία· + " 2x καρδίαι + " 21x καρδίαις + " 13x καρδίαν + " 3x καρδίαν, + " 1x καρδίαν. + " 1x καρδίαν; + " 52x καρδίας + " 3x καρδίας, + " 1x καρδίας. + " 1x καρδίας· + " 28x καρδίᾳ + " 5x καρδίᾳ, + " 1x καρδίᾳ. + " 1x καρδίᾳ· + " 1x καρδιογνώστης + " 1x καρδιογνῶστα + " 3x καρδιῶν + " 1x καρδιῶν· + " 1x καρποφορήσωμεν + " 1x καρποφορεῖ + " 1x καρποφορεῖ, + " 1x καρποφορούμενον + " 1x καρποφοροῦντες + " 2x καρποφοροῦσιν + " 1x καρποφορῆσαι + " 1x καρποφόρους, + " 1x καρπούς + " 9x καρποὺς + " 4x καρποῦ + " 1x καρπόν, + " 1x καρπός, + " 36x καρπὸν + " 1x καρπὸν, + " 7x καρπὸς + " 5x καρπῶν + " 1x καρπῶν, + " 1x κατά + " 2x κατάβηθι + " 1x κατάβηθι, + " 1x κατάβηθι· + " 1x κατάδηλόν + " 1x κατάθεμα + " 1x κατάκειται + " 1x κατάκριμα + " 2x κατάκριμα, + " 1x κατάκρισιν + " 1x κατάλοιποι + " 1x κατάλυε + " 1x κατάλυμά + " 1x κατάλυμα + " 3x κατάπαυσίν + " 4x κατάπαυσιν + " 1x κατάπαυσιν, + " 1x κατάρα, + " 1x κατάρα. + " 1x κατάραν + " 3x κατάρας + " 1x κατάρτισιν. + " 1x κατάσχεσιν + " 2x κατάσχωμεν. + " 1x κατάφαγε + " 2x κατέαξαν + " 3x κατέβαινεν + " 12x κατέβη + " 1x κατέβη, + " 1x κατέβην + " 5x κατέβησαν + " 1x κατέδησεν + " 1x κατέδραμεν + " 1x κατέθηκεν + " 1x κατέκαιον + " 2x κατέκειτο + " 1x κατέκειτο, + " 1x κατέκειτο. + " 1x κατέκλασεν + " 1x κατέκλασεν, + " 1x κατέκλεισα + " 1x κατέκλεισεν + " 1x κατέκλιναν + " 1x κατέκριναν + " 2x κατέκρινεν + " 1x κατέκρινεν, + " 1x κατέκρινεν; + " 1x κατέλαβεν + " 1x κατέλαβεν. + " 1x κατέλειπεν + " 1x κατέλιπε + " 2x κατέλιπεν + " 1x κατέλιπον + " 1x κατέλυσα + " 9x κατέναντι + " 1x κατένευσαν + " 1x κατέπαυσαν + " 2x κατέπαυσεν + " 1x κατέπαυσεν, + " 1x κατέπεσεν + " 1x κατέπιεν + " 1x κατέπλευσαν + " 1x κατέσεισεν + " 1x κατέσκαψαν, + " 5x κατέστησεν + " 1x κατέστρεψεν + " 1x κατέστρεψεν, + " 4x κατέφαγεν + " 1x κατέφαγον + " 1x κατέφυγον + " 2x κατέχεεν + " 1x κατέχειν, + " 1x κατέχειν. + " 1x κατέχετε, + " 1x κατέχετε. + " 1x κατέχετε· + " 1x κατέχον + " 1x κατέχοντες, + " 1x κατέχοντες. + " 1x κατέχουσιν + " 1x κατέχωμεν + " 1x κατέχων + " 2x κατήγαγον + " 1x κατήγγειλαν + " 1x κατήγγελλον + " 2x κατήγοροί + " 1x κατήγοροι + " 1x κατήγωρ + " 1x κατήλθαμεν + " 1x κατήλθομεν + " 1x κατήνεγκα + " 1x κατήντηκεν. + " 2x κατήντησαν + " 1x κατήντησεν + " 1x κατήντησεν; + " 1x κατήργηκα + " 3x κατήργηται + " 1x κατήφειαν. + " 1x κατήχηνται + " 1x κατήχθημεν + " 1x κατίσχυον + " 1x κατίωται, + " 2x καταβάντες + " 2x καταβάς, + " 1x καταβάς· + " 1x καταβάσει + " 5x καταβάτω + " 1x καταβέβηκα + " 1x καταβέβηκα; + " 2x καταβήσεται + " 1x καταβήσῃ. + " 1x καταβήσῃ· + " 1x καταβαίνει + " 1x καταβαίνει. + " 1x καταβαίνειν + " 3x καταβαίνοντα + " 1x καταβαίνοντας + " 1x καταβαίνοντες + " 1x καταβαίνοντος + " 1x καταβαίνουσα + " 3x καταβαίνουσαν + " 1x καταβαίνων + " 1x καταβαίνων, + " 2x καταβαινόντων + " 2x καταβαλλόμενοι + " 1x καταβαρυνόμενοι, + " 7x καταβαῖνον + " 1x καταβεβηκότες + " 1x καταβολὴν + " 9x καταβολῆς + " 1x καταβολῆς. + " 1x καταβραβευέτω + " 1x καταβὰν + " 9x καταβὰς + " 2x καταβῆναι + " 1x καταβῇ + " 1x καταβῇ, + " 1x καταγάγῃ + " 1x καταγάγῃς + " 1x καταγαγεῖν· + " 1x καταγαγόντες + " 1x καταγαγὼν + " 2x καταγγέλλειν + " 1x καταγγέλλεται + " 2x καταγγέλλεται, + " 1x καταγγέλλετε, + " 1x καταγγέλλομεν + " 3x καταγγέλλουσιν + " 1x καταγγέλλουσιν, + " 2x καταγγέλλω + " 1x καταγγέλλων + " 1x καταγγελεὺς + " 1x καταγινώσκῃ + " 1x καταγινώσκῃ, + " 1x καταδίκην· + " 1x καταδικάζετε, + " 1x καταδικασθήσῃ. + " 1x καταδικασθῆτε. + " 1x καταδουλοῖ, + " 1x καταδουλώσουσιν· + " 1x καταδυναστευομένους + " 1x καταδυναστεύουσιν + " 1x καταθέσθαι + " 1x καταθέσθαι, + " 1x καταθεματίζειν + " 2x καταισχυνθήσεται. + " 1x καταισχυνθῇ. + " 1x καταισχυνθῶμεν + " 1x καταισχυνθῶσιν + " 2x καταισχύνει + " 1x καταισχύνει, + " 1x καταισχύνετε + " 2x καταισχύνῃ + " 1x κατακέκριται, + " 1x κατακαήσεται, + " 1x κατακαίεται + " 1x κατακαίεται, + " 1x κατακαλυπτέσθω. + " 1x κατακαλύπτεσθαι + " 1x κατακαλύπτεται + " 1x κατακαυθήσεται· + " 1x κατακαυχᾶσαι, + " 1x κατακαυχᾶσθε + " 1x κατακαυχᾶται + " 1x κατακαυχῶ + " 2x κατακαύσει + " 1x κατακαύσουσιν + " 1x κατακαῦσαι + " 1x κατακείμενοι. + " 1x κατακείμενον + " 2x κατακείμενον, + " 1x κατακειμένου + " 1x κατακεῖσθαι + " 1x κατακεῖσθαι, + " 1x κατακλιθῆναι + " 1x κατακλιθῇς + " 1x κατακλυσθεὶς + " 1x κατακλυσμοῦ + " 1x κατακλυσμὸν + " 2x κατακλυσμὸς + " 1x κατακολουθοῦσα + " 1x κατακρίνεις· + " 1x κατακρίνω· + " 1x κατακρίσεως + " 1x κατακρημνίσαι + " 1x κατακριθήσεται. + " 1x κατακριθῶμεν. + " 2x κατακρινεῖ + " 4x κατακρινοῦσιν + " 1x κατακρινῶν; + " 1x κατακυριεύοντες + " 2x κατακυριεύουσιν + " 1x κατακυριεύσας + " 1x κατακόπτων + " 1x καταλάβητε. + " 1x καταλάβω, + " 1x καταλάβῃ, + " 2x καταλάβῃ· + " 1x καταλάλους, + " 1x καταλίπῃ + " 1x καταλαβέσθαι + " 1x καταλαβόμενοι + " 1x καταλαλεῖ + " 1x καταλαλεῖσθε + " 1x καταλαλεῖτε + " 1x καταλαλιάς, + " 1x καταλαλιαί, + " 1x καταλαλοῦσιν + " 1x καταλαλῶν + " 1x καταλαμβάνομαι + " 1x καταλείπει + " 1x καταλείψαντας + " 3x καταλείψει + " 1x καταλεγέσθω + " 1x καταλειπομένης + " 1x καταλειπόντες + " 1x καταλειφθῆναι + " 1x καταλελειμμένος + " 1x καταλιθάσει + " 1x καταλιπόντες + " 6x καταλιπὼν + " 1x καταλλάγητε + " 1x καταλλάξαντος + " 1x καταλλάσσων + " 1x καταλλαγέντες + " 1x καταλλαγήτω,— + " 1x καταλλαγὴ + " 1x καταλλαγὴν + " 1x καταλλαγῆς, + " 1x καταλλαγῆς. + " 2x καταλυθήσεται. + " 1x καταλυθήσεται· + " 1x καταλυθῇ, + " 1x καταλυθῇ. + " 1x καταλύματι. + " 1x καταλύσει + " 1x καταλύσω + " 1x καταλύσωσιν + " 2x καταλύων + " 4x καταλῦσαι + " 1x καταλῦσαι. + " 1x καταμάθετε + " 1x καταμένοντες, + " 3x καταμαρτυροῦσιν; + " 1x καταμενῶ + " 1x καταναλίσκον. + " 1x καταναρκήσω· + " 1x κατανοήσας + " 3x κατανοήσατε + " 2x κατανοεῖς; + " 1x κατανοοῦντι + " 1x κατανοῆσαι + " 1x κατανοῆσαι. + " 1x κατανοῶμεν + " 1x καταντήσαντες + " 1x καταντήσω + " 1x καταντήσωμεν + " 1x καταντῆσαι· + " 1x κατανύξεως, + " 1x καταξιωθέντες + " 1x καταξιωθῆναι + " 4x καταπέτασμα + " 1x καταπίνοντες. + " 1x καταπίπτειν + " 1x καταπατήσας + " 1x καταπατήσουσιν + " 1x καταπατεῖν + " 1x καταπατεῖσθαι + " 1x καταπαύσεώς + " 1x καταπεσόντων + " 2x καταπετάσματος, + " 1x καταπιεῖν· + " 2x καταποθῇ + " 1x καταπονουμένῳ + " 1x καταπονούμενον + " 1x καταποντίζεσθαι + " 1x καταποντισθῇ + " 1x καταργήσαντος + " 1x καταργήσας, + " 1x καταργήσει + " 1x καταργήσει. + " 1x καταργήσει; + " 2x καταργήσῃ + " 1x καταργήσῃ, + " 1x καταργεῖ; + " 1x καταργεῖται + " 1x καταργεῖται· + " 2x καταργηθήσεται. + " 1x καταργηθήσονται· + " 1x καταργηθῇ + " 1x καταργουμένην, + " 1x καταργουμένου. + " 1x καταργουμένων· + " 1x καταργούμενον + " 1x καταργοῦμεν + " 1x καταργῆσαι + " 1x καταρτίζεσθε, + " 1x καταρτίζετε + " 2x καταρτίζοντας + " 2x καταρτίσαι + " 1x καταρτίσει, + " 1x καταρτισμὸν + " 1x καταρωμένους + " 1x καταρώμεθα + " 1x καταρᾶσθε. + " 3x κατασείσας + " 1x κατασκευάζεται + " 2x κατασκευάσας + " 3x κατασκευάσει + " 1x κατασκευαζομένης + " 1x κατασκηνοῖν + " 1x κατασκηνοῖν. + " 1x κατασκηνώσει + " 2x κατασκηνώσεις, + " 1x κατασκιάζοντα + " 1x κατασκοπῆσαι + " 1x κατασκόπους + " 1x κατασοφισάμενος + " 1x καταστήματι + " 3x καταστήσει + " 1x καταστήσομεν + " 2x καταστήσω· + " 1x καταστήσῃς + " 1x κατασταθήσονται + " 1x καταστείλας + " 1x καταστολῇ + " 1x καταστρηνιάσωσιν + " 2x καταστροφῇ + " 1x κατασφάξατε + " 1x κατασχέσει + " 1x κατασύρῃ + " 1x κατατομήν. + " 1x καταφάγεταί + " 1x καταφάγῃ. + " 1x καταφέροντες, + " 1x καταφαγών + " 1x καταφερόμενος + " 1x καταφιλοῦσά + " 1x καταφρονήσας, + " 1x καταφρονήσει. + " 1x καταφρονήσει· + " 1x καταφρονήσητε + " 1x καταφρονείτω, + " 1x καταφρονείτωσαν, + " 1x καταφρονεῖς, + " 1x καταφρονεῖτε, + " 1x καταφρονηταί, + " 1x καταφρονοῦντας. + " 1x καταφυγόντες + " 1x καταχθέντες + " 1x καταχθονίων, + " 1x καταχρήσασθαι + " 1x καταχρώμενοι· + " 1x καταψύξῃ + " 1x κατεάξει + " 1x κατείδωλον + " 1x κατείχετο + " 1x κατεαγῶσιν + " 1x κατεβάρησα + " 3x κατεγέλων + " 1x κατεγνωσμένος + " 1x κατεδίωξεν + " 1x κατεδικάσατε + " 1x κατεδικάσατε, + " 1x κατειλημμένην, + " 1x κατειληφέναι· + " 3x κατειργάσατο + " 1x κατειργάσθαι, + " 1x κατειργάσθη + " 1x κατειχόμεθα, + " 2x κατεκάη, + " 1x κατεκάη. + " 1x κατεκλίθη. + " 1x κατεκληρονόμησεν + " 1x κατεκρίθη, + " 1x κατελήμφθην + " 1x κατελήφθη + " 1x κατελαβόμην + " 1x κατελείφθη + " 1x κατελθεῖν + " 1x κατελθόντες + " 1x κατελθόντων + " 3x κατελθὼν + " 2x κατενάρκησα + " 1x κατενεχθεὶς + " 2x κατενόησεν + " 1x κατενόουν + " 1x κατενόουν, + " 1x κατενύγησαν + " 3x κατενώπιον + " 2x κατεξουσιάζουσιν + " 1x κατεπέστησαν + " 1x κατεπατήθη, + " 1x κατεπόθησαν. + " 1x κατεργάζεσθαι + " 1x κατεργάζεσθε· + " 3x κατεργάζεται + " 1x κατεργάζεται, + " 1x κατεργάζεται. + " 1x κατεργάζεται· + " 3x κατεργάζομαι + " 1x κατεργαζομένη + " 1x κατεργαζομένου + " 1x κατεργαζόμενοι + " 1x κατεργασάμενοι + " 1x κατεργασάμενον + " 1x κατεργασάμενος + " 1x κατερχομένη, + " 1x κατεσθίει + " 1x κατεσθίει, + " 1x κατεσθίετε, + " 1x κατεσθίοντες + " 1x κατεσθίουσιν + " 1x κατεσκήνωσεν + " 1x κατεσκευάσθη + " 1x κατεσκευασμένον. + " 1x κατεσκευασμένων + " 1x κατεσκεύασεν + " 1x κατεστάθησαν + " 1x κατεσταλμένους + " 1x κατεστραμμένα + " 1x κατεστρώθησαν + " 1x κατεσφραγισμένον + " 2x κατευθύναι + " 1x κατευθῦναι + " 1x κατευλόγει + " 1x κατεφίλει + " 3x κατεφίλησεν + " 1x κατεφίλουν + " 1x κατεφθαρμένοι + " 1x κατεχόντων, + " 2x κατεῖχον + " 1x κατηγγέλη + " 1x κατηγγείλαμεν + " 1x κατηγορήσω + " 2x κατηγορήσωσιν + " 2x κατηγορίαν + " 1x κατηγορίᾳ + " 1x κατηγορείτωσαν + " 5x κατηγορεῖν + " 1x κατηγορεῖν. + " 1x κατηγορεῖσθαι + " 1x κατηγορεῖται + " 1x κατηγορεῖτε + " 1x κατηγορούμενος + " 1x κατηγορούντων + " 1x κατηγοροῦμεν + " 1x κατηγοροῦντες + " 2x κατηγοροῦσίν + " 1x κατηγοροῦσιν. + " 2x κατηγορῶν + " 1x κατηγωνίσαντο + " 1x κατηγόροις + " 1x κατηγόρουν + " 1x κατηγόρους + " 1x κατηλλάγημεν + " 3x κατηντήσαμεν + " 1x κατηξιώθησαν + " 1x κατηράσω + " 1x κατηραμένοι + " 1x κατηργήθημεν + " 1x κατηργήθητε + " 1x κατηριθμημένος + " 1x κατηρτίσθαι + " 2x κατηρτίσω + " 1x κατηρτισμένα + " 1x κατηρτισμένοι + " 1x κατηρτισμένος + " 1x κατηχήθης + " 1x κατηχήθησαν + " 1x κατηχήσω, + " 1x κατηχημένος + " 2x κατηχούμενος + " 1x κατηχοῦντι + " 1x κατισχύσητε + " 1x κατισχύσουσιν + " 1x κατοίκησιν + " 1x κατοικήσας, + " 1x κατοικίας + " 3x κατοικεῖ + " 1x κατοικεῖ, + " 2x κατοικεῖ. + " 1x κατοικεῖ· + " 1x κατοικεῖν + " 1x κατοικεῖς· + " 1x κατοικεῖτε, + " 2x κατοικητήριον + " 2x κατοικούντων + " 9x κατοικοῦντας + " 9x κατοικοῦντες + " 1x κατοικοῦντι + " 5x κατοικοῦσιν + " 3x κατοικῆσαι + " 1x κατοικῶν + " 1x κατοπτριζόμενοι + " 1x κατωτέρω, + " 1x κατώτερα + " 317x κατὰ + " 1x κατῃσχύνθην, + " 1x κατῃσχύνοντο + " 1x κατῆλθέν + " 1x κατῆλθεν + " 4x κατῆλθον + " 3x κατῴκησεν + " 1x κατῴκισεν + " 84x κατ’ + " 1x καυθήσομαι, + " 1x καυματίσαι + " 2x καυσούμενα + " 1x καυχάσθω + " 1x καυχάσθω. + " 1x καυχάσθω· + " 1x καυχήματος + " 1x καυχήσασθαι, + " 1x καυχήσασθαι. + " 1x καυχήσεως + " 1x καυχήσεως. + " 1x καυχήσεως— + " 1x καυχήσηται + " 1x καυχήσηται. + " 2x καυχήσομαι + " 1x καυχήσομαι, + " 2x καυχήσομαι. + " 1x καυχήσωμαι + " 1x καυχήσωμαι. + " 1x καυχήσωνται. + " 1x καυχησόμεθα, + " 1x καυχωμένους + " 2x καυχώμεθα + " 3x καυχώμενοι + " 2x καυχώμενος + " 2x καυχᾶσαι + " 1x καυχᾶσαι, + " 2x καυχᾶσθαι + " 1x καυχᾶσθε + " 1x καυχῶμαι + " 2x καυχῶνται + " 1x καύσωνα. + " 1x καύσωνι + " 1x καύχημά + " 7x καύχημα + " 2x καύχημα· + " 1x καύχησιν + " 1x καύχησιν, + " 5x καύχησις + " 1x καύχησις; + " 8541x καὶ + " 1x καῦμα + " 1x καῦμα, + " 1x καῦσιν. + " 1x κείμεθα· + " 2x κείμενα + " 1x κείμενα, + " 1x κείμεναι, + " 3x κείμενον + " 1x κείμενον, + " 1x κείμενος. + " 1x κείρασθαι + " 1x κείροντος + " 1x κειμένη· + " 1x κειμένην + " 1x κειράμενος + " 1x κειράσθω· + " 1x κειρίαις, + " 1x κεκάθικεν. + " 1x κεκένωται + " 1x κεκαθαρισμένους; + " 2x κεκαλυμμένον + " 1x κεκαλυμμένον, + " 1x κεκαυμένῳ + " 1x κεκαυστηριασμένων + " 1x κεκαύχημαι, + " 1x κεκερασμένου + " 1x κεκλεισμένον + " 1x κεκλεισμένων + " 1x κεκλεισμένων, + " 1x κεκληκότι + " 1x κεκληκώς + " 2x κεκλημένοι + " 1x κεκλημένοι. + " 2x κεκλημένοις + " 1x κεκλημένος + " 2x κεκλημένους + " 1x κεκλημένων + " 1x κεκληρονόμηκεν + " 1x κεκοίμηται, + " 1x κεκοίμηται· + " 1x κεκοίνωκεν + " 1x κεκοιμημένων + " 1x κεκοιμημένων. + " 1x κεκοινωμένους + " 1x κεκοινώνηκεν + " 1x κεκονιαμένε· + " 1x κεκονιαμένοις, + " 1x κεκοπίακα + " 1x κεκοπίακες. + " 1x κεκοπιάκασιν, + " 1x κεκοπιάκατε· + " 1x κεκοπιακὼς + " 1x κεκορεσμένοι + " 1x κεκοσμημένην + " 1x κεκοσμημένοι· + " 2x κεκοσμημένον. + " 1x κεκράτηνται. + " 1x κεκρίκατέ + " 1x κεκρίκει + " 1x κεκρατηκέναι, + " 1x κεκριμένα + " 1x κεκρυμμένα + " 1x κεκρυμμένον + " 1x κεκρυμμένος + " 1x κεκρυμμένου, + " 1x κεκρυμμένῳ + " 1x κεκυρωμένην + " 1x κεκόσμηται, + " 1x κελεύεις + " 1x κελεύσαντες + " 1x κελεύσαντος + " 2x κελεύσας + " 1x κελεύσματι, + " 1x κενά; + " 1x κενέ, + " 1x κενοδοξίαν, + " 2x κενοφωνίας + " 1x κενούς. + " 1x κενοῖς + " 1x κεντυρίων + " 1x κεντυρίωνα + " 1x κεντυρίωνος + " 2x κενωθῇ + " 1x κενόδοξοι, + " 3x κενόν. + " 1x κενώσει. + " 3x κενὴ + " 6x κενὸν + " 1x κενὸς + " 1x κενῆς + " 1x κενῶς + " 2x κεράμιον + " 1x κεράμων + " 1x κεράσατε + " 2x κεράτων + " 1x κεραία + " 1x κεραίαν + " 1x κεραμέως + " 1x κεραμέως, + " 1x κεραμεὺς + " 1x κεραμικὰ + " 1x κερατίων + " 1x κερδάνω + " 1x κερδήσας + " 1x κερδήσομεν· + " 1x κερδήσω + " 4x κερδήσω· + " 1x κερδήσῃ, + " 1x κερδηθήσονται, + " 1x κερδῆσαί + " 1x κερδῆσαι + " 1x κερματιστὰς + " 1x κεφαλάς, + " 1x κεφαλή, + " 1x κεφαλήν + " 2x κεφαλήν, + " 1x κεφαλήν. + " 1x κεφαλήν· + " 1x κεφαλίδι + " 1x κεφαλαίου + " 3x κεφαλαὶ + " 12x κεφαλὰς + " 10x κεφαλὴ + " 23x κεφαλὴν + " 13x κεφαλῆς + " 1x κεφαλῆς. + " 3x κεφαλῇ + " 1x κεφαλῇ, + " 1x κεφαλῶν + " 2x κεχάρισμαι, + " 1x κεχάρισταί + " 1x κεχάρισται + " 1x κεχαριτωμένη, + " 1x κεχρημάτισται + " 1x κεχρηματισμένον + " 2x κεχρυσωμένη + " 1x κεχωρισμένος + " 1x κεῖμαι, + " 1x κεῖται + " 2x κεῖται, + " 1x κεῖται. + " 3x κεῖται· + " 1x κημώσεις + " 1x κηπουρός + " 1x κηρυχθέντος + " 2x κηρυχθήσεται + " 1x κηρυχθείς, + " 2x κηρυχθῆναι + " 2x κηρυχθῇ + " 1x κηρύγματι + " 1x κηρύγματος + " 1x κηρύξαι + " 1x κηρύξας + " 2x κηρύξατε + " 1x κηρύξω· + " 1x κηρύξωσιν + " 1x κηρύσσει + " 1x κηρύσσει. + " 6x κηρύσσειν + " 1x κηρύσσεται + " 1x κηρύσσετε + " 3x κηρύσσομεν + " 1x κηρύσσομεν. + " 1x κηρύσσοντα + " 1x κηρύσσοντας + " 1x κηρύσσοντος; + " 1x κηρύσσουσιν· + " 1x κηρύσσω + " 1x κηρύσσω, + " 13x κηρύσσων + " 2x κηρῦξαι + " 1x κιβωτοῦ, + " 2x κιβωτόν, + " 2x κιβωτὸν + " 1x κιβωτὸς + " 1x κιθάρα, + " 1x κιθάραις + " 1x κιθάραν + " 1x κιθάρας + " 1x κιθαριζόμενον; + " 1x κιθαριζόντων + " 2x κιθαρῳδῶν + " 1x κινήσω + " 1x κινδυνεύει + " 2x κινδυνεύομεν + " 8x κινδύνοις + " 1x κιννάμωμον + " 1x κινούμεθα + " 1x κινοῦντα + " 2x κινοῦντες + " 1x κινῆσαι + " 1x κλάδοι + " 1x κλάδοι. + " 2x κλάδοις + " 2x κλάδος + " 2x κλάδους + " 2x κλάδων + " 1x κλάδων· + " 1x κλάσαι + " 4x κλάσας + " 2x κλάσει + " 1x κλάσματα + " 1x κλάσματα, + " 1x κλέος + " 4x κλέπται + " 1x κλέπτειν + " 1x κλέπτεις; + " 9x κλέπτης + " 2x κλέπτης, + " 1x κλέπτης· + " 2x κλέπτουσιν· + " 1x κλέπτων + " 2x κλέψεις, + " 1x κλέψωσιν + " 1x κλέψῃ + " 2x κλέψῃς, + " 1x κλήματα. + " 1x κλήρου + " 1x κλήρους + " 1x κλήρους. + " 1x κλήρων + " 2x κλήσει + " 6x κλήσεως + " 2x κλίβανον + " 1x κλίμασι + " 1x κλίμασιν + " 1x κλίματα + " 1x κλίνας + " 1x κλίνειν· + " 2x κλίνην + " 1x κλίνην, + " 1x κλίνην; + " 4x κλίνης + " 2x κλίνῃ. + " 1x κλαίειν + " 2x κλαίεις; + " 2x κλαίετε + " 1x κλαίετε; + " 1x κλαίετε· + " 1x κλαίοντας + " 1x κλαίοντας, + " 5x κλαίοντες + " 1x κλαίοντες, + " 1x κλαίουσα + " 1x κλαίουσα, + " 1x κλαίουσα. + " 1x κλαίουσαι + " 1x κλαίουσαν + " 1x κλαίουσιν + " 1x κλαίουσιν· + " 1x κλαίων + " 1x κλαιόντων. + " 7x κλασμάτων + " 9x κλαυθμὸς + " 1x κλαύσατε + " 1x κλαύσατε· + " 1x κλαύσετε + " 1x κλαύσετε. + " 1x κλαύσουσιν + " 1x κλαύσῃ + " 1x κλαῖε. + " 1x κλαῖε· + " 1x κλείετε + " 1x κλείσας + " 1x κλείσει, + " 1x κλείσῃ + " 1x κλείων + " 1x κλεισθῶσιν + " 1x κλεμμάτων + " 1x κλεπτέτω, + " 1x κλεὶς + " 1x κλεῖδα + " 1x κλεῖδας + " 2x κλεῖν + " 1x κλεῖς + " 2x κλεῖσαι + " 1x κληθέντος + " 2x κληθήσεταί + " 5x κληθήσεται + " 3x κληθήσεται, + " 1x κληθήσεται. + " 1x κληθήσονται + " 1x κληθήσονται. + " 1x κληθήσῃ + " 1x κληθήσῃ· + " 2x κληθεὶς + " 1x κληθὲν + " 3x κληθῆναι + " 2x κληθῆτε + " 1x κληθῇς + " 1x κληθῇς, + " 1x κληθῶμεν, + " 1x κληρονομήσατε + " 2x κληρονομήσει + " 1x κληρονομήσει. + " 1x κληρονομήσητε. + " 1x κληρονομήσουσιν + " 2x κληρονομήσουσιν. + " 1x κληρονομήσουσιν; + " 3x κληρονομήσω; + " 1x κληρονομία, + " 2x κληρονομία. + " 5x κληρονομίαν + " 1x κληρονομίαν, + " 1x κληρονομίαν. + " 2x κληρονομίας + " 2x κληρονομίας. + " 1x κληρονομεῖ. + " 1x κληρονομεῖν + " 1x κληρονομούντων + " 2x κληρονομῆσαι + " 2x κληρονόμοι + " 1x κληρονόμοι, + " 1x κληρονόμοι. + " 1x κληρονόμοι· + " 1x κληρονόμοις + " 2x κληρονόμον + " 2x κληρονόμος + " 1x κληρονόμος. + " 3x κληρονόμος· + " 1x κληρονόμους + " 2x κλητοὶ + " 1x κλητοὶ, + " 3x κλητοῖς + " 1x κλητοῖς, + " 1x κλητοῖς. + " 2x κλητὸς + " 1x κλινίδιόν + " 1x κλιναρίων + " 1x κλινιδίῳ + " 1x κλινουσῶν + " 1x κλισίας + " 2x κλοπαί, + " 1x κλυδωνιζόμενοι + " 2x κλύδωνι + " 3x κλῆμα + " 3x κλῆρον + " 1x κλῆρον, + " 1x κλῆρον. + " 2x κλῆρος + " 2x κλῆσιν + " 1x κλῆσις + " 1x κλῶμεν, + " 1x κλῶντές + " 1x κνηθόμενοι + " 2x κοίνου. + " 1x κοίταις + " 1x κοίτη + " 2x κοίτην + " 1x κοδράντην. + " 1x κοδράντης. + " 4x κοιλία + " 1x κοιλίαι + " 3x κοιλίαν + " 2x κοιλίαν, + " 7x κοιλίας + " 3x κοιλίᾳ + " 2x κοιλίᾳ, + " 1x κοιλίᾳ. + " 1x κοιμήσεως + " 1x κοιμηθέντας + " 1x κοιμηθέντας· + " 1x κοιμηθέντες + " 1x κοιμηθησόμεθα, + " 1x κοιμηθῇ + " 1x κοιμωμένους + " 1x κοιμωμένων, + " 1x κοιμωμένων. + " 1x κοιμώμενος + " 1x κοιμῶνται + " 1x κοινά, + " 1x κοινά. + " 2x κοιναῖς + " 6x κοινοῖ + " 2x κοινοῦντα + " 7x κοινωνία + " 7x κοινωνίαν + " 2x κοινωνίας + " 1x κοινωνίας, + " 1x κοινωνίᾳ + " 1x κοινωνίᾳ, + " 1x κοινωνεῖ + " 1x κοινωνεῖτε + " 1x κοινωνικούς, + " 1x κοινωνοί + " 5x κοινωνοὶ + " 1x κοινωνοὺς + " 1x κοινωνοῦντες, + " 1x κοινωνόν, + " 1x κοινωνός, + " 1x κοινωνὸς + " 1x κοινόν. + " 1x κοινώνει + " 1x κοινὴν + " 7x κοινὸν + " 1x κοινῆς + " 1x κοινῶσαι + " 1x κοινῶσαι, + " 1x κοιτῶνος + " 1x κοκκίνην + " 1x κοκκίνου + " 1x κοκκίνου, + " 1x κολάσωνται + " 1x κολαζομένους + " 1x κολακίας + " 1x κολαφίζειν + " 1x κολαφίζῃ, + " 1x κολαφιζόμεθα + " 1x κολαφιζόμενοι + " 1x κολλήθητι + " 1x κολληθέντα + " 1x κολληθέντες + " 1x κολληθήσεται + " 1x κολλούριον + " 3x κολλυβιστῶν + " 1x κολλώμενοι + " 2x κολλώμενος + " 3x κολλᾶσθαι + " 1x κολοβωθήσονται + " 1x κολυμβήθρα, + " 1x κολυμβήθραν + " 1x κολυμβήθραν· + " 1x κολυμβήθρᾳ + " 1x κολυμβᾶν + " 1x κολωνία. + " 1x κομίσασα + " 2x κομίσεται + " 1x κομίσησθε + " 1x κομίσηται + " 1x κομιεῖσθε + " 1x κομιζόμενοι + " 1x κομισάμενοι + " 1x κομψότερον + " 2x κομᾷ, + " 5x κονιορτὸν + " 1x κοπετὸν + " 1x κοπιάσαντες + " 1x κοπιάτω + " 1x κοπιώσας + " 1x κοπιῶ + " 2x κοπιῶμεν + " 1x κοπιῶντα + " 2x κοπιῶντας + " 2x κοπιῶντες + " 1x κοπιῶντι. + " 1x κοπιῶσιν + " 1x κοπρίαν + " 1x κοπῆς + " 3x κοράσιον + " 1x κοράσιον, + " 1x κοράσιον. + " 1x κορασίῳ + " 2x κορασίῳ, + " 1x κορβανᾶν, + " 1x κορεσθέντες + " 1x κοσμίῳ + " 1x κοσμεῖν + " 1x κοσμεῖτε + " 1x κοσμικόν. + " 1x κοσμικὰς + " 1x κοσμοκράτορας + " 1x κοσμῶσιν + " 1x κουστωδίαν· + " 1x κουστωδίας + " 1x κουστωδίας. + " 4x κοφίνους + " 1x κοφίνων + " 1x κούμ, + " 3x κράβαττον + " 1x κράβαττον. + " 4x κράβαττόν + " 4x κράζει + " 1x κράζει, + " 1x κράζειν + " 1x κράζομεν + " 1x κράζοντας + " 5x κράζοντες + " 1x κράζουσιν + " 2x κράζων + " 1x κράξαντες + " 4x κράξας + " 1x κράξουσιν. + " 1x κράσπεδα, + " 2x κράτει + " 3x κράτιστε + " 10x κράτος + " 1x κράτους + " 2x κρέα + " 1x κρέμαται + " 17x κρίμα + " 2x κρίμα, + " 2x κρίμα. + " 2x κρίματα + " 2x κρίματι + " 2x κρίματος + " 1x κρίνα + " 1x κρίνα, + " 1x κρίναντας + " 2x κρίναντες + " 1x κρίναντος + " 1x κρίνας + " 3x κρίνατε + " 1x κρίνατε. + " 2x κρίνατε· + " 7x κρίνει + " 2x κρίνειν + " 1x κρίνειν; + " 1x κρίνειν· + " 3x κρίνεις + " 1x κρίνεις, + " 1x κρίνεσθαί + " 2x κρίνεσθαι + " 2x κρίνεσθαι. + " 3x κρίνεται + " 1x κρίνεται, + " 1x κρίνεται· + " 4x κρίνετε + " 4x κρίνετε, + " 1x κρίνετε; + " 1x κρίνομαι + " 1x κρίνομαι. + " 1x κρίνομαι; + " 2x κρίνοντα + " 2x κρίνοντες + " 1x κρίνοντι + " 6x κρίνω + " 1x κρίνω, + " 1x κρίνωμεν· + " 6x κρίνων + " 2x κρίνων. + " 1x κρίνων· + " 1x κρίνῃ + " 5x κρίσει + " 1x κρίσει. + " 1x κρίσει· + " 2x κρίσεις + " 9x κρίσεως + " 2x κρίσεως, + " 2x κρίσεως. + " 2x κρίσεως· + " 12x κρίσιν + " 1x κρίσιν, + " 2x κρίσιν. + " 6x κρίσις + " 2x κρίσις, + " 1x κραβάττοις + " 1x κραβάττου, + " 1x κραβάττων, + " 1x κραιπάλῃ + " 1x κρανίου + " 4x κρασπέδου + " 3x κρατήσαντες + " 6x κρατήσας + " 3x κρατήσατε + " 1x κρατήσει + " 1x κρατήσωσιν + " 1x κρατίστῳ + " 1x κραταιοῦσθε. + " 1x κραταιωθῆναι + " 1x κραταιὰν + " 1x κρατεῖν, + " 1x κρατεῖς + " 1x κρατεῖσθαι + " 2x κρατεῖτε + " 3x κρατοῦντας + " 1x κρατοῦντες + " 1x κρατοῦσιν + " 3x κρατῆσαι + " 1x κρατῆσαι, + " 1x κρατῆτε, + " 1x κρατῶμεν + " 2x κρατῶν + " 1x κραυγάζοντα + " 1x κραυγάσει, + " 1x κραυγαζόντων + " 4x κραυγὴ + " 1x κραυγῆς + " 1x κραυγῇ + " 2x κρείσσονα + " 5x κρείττονος + " 1x κρείττονός + " 2x κρείττοσιν + " 1x κρείττων + " 1x κρεμάμενον + " 1x κρεμάμενος + " 2x κρεμάσαντες + " 1x κρεμασθέντων + " 1x κρεμασθῇ + " 2x κρεῖσσον + " 1x κρεῖσσον· + " 4x κρεῖττον + " 1x κρεῖττόν + " 3x κρημνοῦ + " 1x κριθήσεσθε, + " 1x κριθήσονται· + " 1x κριθίνους + " 1x κριθίνων + " 3x κριθῆναι + " 3x κριθῆτε· + " 1x κριθῶν + " 1x κριθῶσι + " 1x κριθῶσιν + " 1x κρινέτω + " 1x κρινέτω, + " 4x κρινεῖ + " 1x κρινεῖ. + " 1x κρινοῦμεν, + " 1x κρινοῦσιν; + " 1x κρινόμενοι + " 1x κρινόμενος, + " 1x κρινῶ + " 1x κριτήν, + " 1x κριτήρια + " 1x κριτήρια; + " 1x κριτής + " 2x κριτής, + " 1x κριτής. + " 3x κριταὶ + " 1x κριτηρίων + " 1x κριτικὸς + " 1x κριτὰς + " 2x κριτὴν + " 4x κριτὴς + " 1x κριτῇ, + " 1x κρούειν + " 2x κρούετε, + " 2x κρούοντι + " 2x κρούσαντος + " 1x κρούω· + " 1x κρούων· + " 2x κρυβῆναι + " 4x κρυπτὰ + " 3x κρυπτὸν + " 1x κρυπτὸν, + " 1x κρυπτὸς + " 5x κρυπτῷ + " 1x κρυπτῷ. + " 2x κρυπτῷ· + " 1x κρυστάλλῳ· + " 1x κρυσταλλίζοντι· + " 1x κρυφαίῳ + " 1x κρυφαίῳ· + " 1x κρυφῇ + " 1x κρύπτην + " 1x κρύσταλλον, + " 1x κρύψατε + " 1x κρᾶζον + " 1x κρῖναι + " 3x κτήματα + " 2x κτήνη + " 1x κτήσεσθε + " 1x κτήσησθε + " 1x κτήτορες + " 1x κτίσαντι, + " 1x κτίσαντος + " 1x κτίσας + " 3x κτίσει + " 1x κτίσει. + " 5x κτίσεως + " 2x κτίσεως, + " 1x κτίσεως. + " 5x κτίσις + " 1x κτίσις. + " 1x κτίσις· + " 2x κτίσμα + " 1x κτίσῃ + " 1x κτηνῶν, + " 1x κτισθέντα + " 1x κτισθέντες + " 1x κτισμάτων + " 1x κτισμάτων. + " 1x κτᾶσθαι + " 1x κτᾶσθαι. + " 1x κτῆμα, + " 1x κτῆνος + " 1x κτῶμαι. + " 1x κυβίᾳ + " 1x κυβερνήσεις, + " 1x κυβερνήτης + " 1x κυβερνήτῃ + " 1x κυκλουμένην + " 1x κυκλωθέντα + " 1x κυκλωσάντων + " 3x κυκλόθεν + " 1x κυλισμὸν + " 1x κυλλούς, + " 1x κυλλοὺς + " 2x κυλλὸν + " 1x κυμάτων, + " 1x κυμάτων· + " 2x κυνάρια + " 1x κυναρίοις + " 1x κυναρίοις. + " 1x κυρία, + " 4x κυρίοις + " 1x κυρίοις, + " 11x κυρίου + " 2x κυρίων + " 1x κυρίᾳ + " 5x κυρίῳ + " 1x κυριακὸν + " 1x κυριακῇ + " 1x κυριευόντων, + " 1x κυριεύει + " 1x κυριεύει. + " 1x κυριεύομεν + " 1x κυριεύουσιν + " 1x κυριεύσει· + " 1x κυριεύσῃ. + " 1x κυριότητα + " 1x κυριότητες + " 2x κυριότητος + " 1x κυρῶσαι + " 1x κυσίν, + " 1x κωλυθέντες + " 2x κωλυόντων + " 2x κωλύει + " 1x κωλύειν + " 1x κωλύεσθαι + " 5x κωλύετε + " 1x κωλύετε· + " 1x κωλύοντα + " 1x κωλύσῃς. + " 1x κωλῦσαί + " 1x κωλῦσαι + " 1x κωμοπόλεις, + " 1x κωφούς, + " 2x κωφοὶ + " 2x κωφοὺς + " 1x κωφόν· + " 3x κωφός. + " 1x κωφός· + " 4x κωφὸν + " 3x κόκκινον, + " 3x κόκκον + " 1x κόκκος + " 3x κόκκῳ + " 2x κόλασιν + " 1x κόλποις + " 4x κόλπον + " 1x κόλπῳ + " 1x κόμη + " 1x κόποις + " 2x κόποις, + " 4x κόπον + " 1x κόπον. + " 2x κόπος + " 1x κόπου + " 4x κόπους + " 1x κόπρια, + " 1x κόπων + " 2x κόπῳ + " 1x κόρακας, + " 1x κόρους + " 1x κόσμιον, + " 24x κόσμον + " 11x κόσμον, + " 7x κόσμον. + " 1x κόσμον; + " 3x κόσμον· + " 26x κόσμος + " 3x κόσμος, + " 2x κόσμος. + " 1x κόσμος· + " 44x κόσμου + " 11x κόσμου, + " 13x κόσμου. + " 1x κόσμου; + " 2x κόσμου· + " 17x κόσμῳ + " 10x κόσμῳ, + " 7x κόσμῳ. + " 1x κόσμῳ; + " 1x κόσμῳ· + " 1x κόφινοι + " 1x κόψαντες + " 3x κόψονται + " 8x κύκλῳ + " 2x κύματα + " 1x κύμβαλον + " 1x κύμινον, + " 1x κύνας, + " 2x κύνες + " 4x κύριε, + " 1x κύριε. + " 1x κύριε· + " 3x κύριοι + " 2x κύριοι, + " 4x κύριον + " 28x κύριος + " 1x κύριος, + " 1x κύριος· + " 3x κύριός + " 2x κύψας + " 1x κύψας, + " 9x κώμας + " 1x κώμας, + " 10x κώμην + " 2x κώμην, + " 1x κώμην. + " 3x κώμης + " 1x κώμης, + " 1x κώμοις + " 1x κώμοις, + " 1x κώνωπα, + " 2x κἀγώ + " 1x κἀγώ, + " 4x κἀγώ. + " 3x κἀγώ· + " 62x κἀγὼ + " 1x κἀκείνους + " 9x κἀκεῖ + " 8x κἀκεῖθεν + " 4x κἀκεῖνα + " 5x κἀκεῖνοι + " 1x κἀκεῖνοι. + " 1x κἀκεῖνοι· + " 3x κἀκεῖνον + " 6x κἀκεῖνος + " 1x κἀκεῖνός + " 1x κἀμοί. + " 4x κἀμοὶ + " 2x κἀμὲ + " 13x κἂν + " 2x κῆνσον + " 1x κῆνσον; + " 1x κῆπον + " 2x κῆπος, + " 1x κῆρυξ + " 1x κῶλα + " 1x κῶμοι, + " 1x λάβε + " 1x λάβετε, + " 1x λάβητε· + " 1x λάβοι + " 1x λάβω + " 2x λάβωμεν + " 2x λάβωσιν + " 1x λάβωσιν, + " 7x λάβῃ + " 2x λάβῃ. + " 4x λάθρᾳ + " 3x λάλει + " 1x λάμπει + " 1x λάμπει, + " 1x λάμψει, + " 1x λάρυγξ + " 1x λάχανα + " 1x λάχανον, + " 1x λάχωμεν + " 318x λέγει + " 1x λέγει, + " 5x λέγει. + " 4x λέγει; + " 2x λέγει· + " 35x λέγειν + " 2x λέγειν, + " 1x λέγειν. + " 1x λέγειν; + " 1x λέγειν· + " 14x λέγεις + " 1x λέγεις, + " 7x λέγεις. + " 1x λέγεις; + " 3x λέγεσθαι + " 1x λέγεσθαι; + " 8x λέγεται + " 24x λέγετε + " 2x λέγετε. + " 2x λέγετε· + " 1x λέγητε + " 3x λέγομεν + " 1x λέγομεν· + " 1x λέγον + " 1x λέγοντά + " 5x λέγοντα + " 9x λέγοντας + " 147x λέγοντες + " 2x λέγοντες· + " 1x λέγοντι + " 23x λέγοντος + " 1x λέγουσίν + " 20x λέγουσα + " 4x λέγουσαι + " 7x λέγουσαν + " 54x λέγουσιν + " 1x λέγουσιν, + " 1x λέγουσιν. + " 1x λέγουσιν; + " 1x λέγουσιν· + " 168x λέγω + " 21x λέγω, + " 3x λέγω. + " 2x λέγω; + " 7x λέγω· + " 1x λέγωμεν + " 177x λέγων + " 2x λέγωσιν + " 1x λέγωσιν· + " 3x λέγῃ + " 1x λέλυσαι + " 1x λέντιον + " 1x λέοντι, + " 2x λέοντος. + " 1x λέπρα + " 1x λέπρα, + " 1x λέπρα. + " 1x λέπρας· + " 2x λέων + " 1x λήθην + " 2x λήμψεσθε + " 1x λήμψεσθε, + " 2x λήμψεσθε. + " 1x λήμψεταί + " 4x λήμψεται + " 1x λήμψεται, + " 1x λήμψεται. + " 1x λήμψεται· + " 1x λήμψεως + " 2x λήμψονται + " 1x λήμψονται. + " 1x λήμψονται· + " 7x λίαν + " 3x λίαν, + " 1x λίαν. + " 1x λίαν· + " 1x λίβα + " 2x λίβανον + " 1x λίθινα + " 1x λίθιναι + " 4x λίθοι + " 2x λίθοις + " 1x λίθοις. + " 21x λίθον + " 2x λίθον. + " 8x λίθος + " 1x λίθος· + " 2x λίθου + " 3x λίθους + " 2x λίθων + " 9x λίθῳ + " 1x λίθῳ, + " 1x λίμμα + " 1x λίμνη + " 6x λίμνην + " 1x λίμνην, + " 1x λίμνην· + " 1x λίμνης· + " 1x λίμνῃ + " 2x λίνον + " 1x λίτραν + " 1x λίτρας + " 1x λαίλαπος + " 2x λαβέτω + " 16x λαβεῖν + " 3x λαβεῖν, + " 3x λαβεῖν. + " 6x λαβοῦσα + " 2x λαβοῦσαι + " 1x λαβόντα + " 1x λαβόντας + " 14x λαβόντες + " 2x λαβών, + " 1x λαβών; + " 37x λαβὼν + " 1x λαθεῖν· + " 1x λακτίζειν. + " 2x λαλήσαντες + " 2x λαλήσας + " 2x λαλήσει + " 1x λαλήσει, + " 1x λαλήσει. + " 1x λαλήσητε, + " 2x λαλήσητε· + " 1x λαλήσομεν. + " 2x λαλήσουσιν + " 4x λαλήσω + " 1x λαλήσω. + " 2x λαλήσῃ + " 1x λαλείτω + " 1x λαλείτωσαν, + " 9x λαλεῖ + " 4x λαλεῖ, + " 4x λαλεῖ. + " 1x λαλεῖ; + " 1x λαλεῖ· + " 14x λαλεῖν + " 3x λαλεῖν, + " 4x λαλεῖν. + " 2x λαλεῖς + " 1x λαλεῖς, + " 1x λαλεῖς; + " 1x λαλεῖσθαι + " 3x λαλεῖτε + " 1x λαλεῖτε· + " 1x λαληθέντος + " 1x λαληθέντων + " 1x λαληθήσεταί + " 3x λαληθήσεται + " 1x λαληθείσης + " 1x λαληθεὶς + " 1x λαληθησομένων, + " 2x λαληθῆναι + " 1x λαλιά + " 2x λαλιὰν + " 1x λαλουμένη + " 3x λαλουμένοις + " 1x λαλούμενον + " 1x λαλούμενον; + " 4x λαλούντων + " 1x λαλούσης + " 4x λαλοῦμεν + " 2x λαλοῦμεν, + " 3x λαλοῦμεν. + " 1x λαλοῦμεν· + " 2x λαλοῦν + " 1x λαλοῦντα· + " 1x λαλοῦντας + " 6x λαλοῦντες + " 1x λαλοῦντες. + " 2x λαλοῦντι + " 14x λαλοῦντος + " 2x λαλοῦντος, + " 1x λαλοῦντος· + " 1x λαλοῦντός + " 1x λαλοῦσαι + " 1x λαλοῦσαν + " 1x λαλοῦσιν + " 1x λαλοῦσιν; + " 1x λαλῆσαί + " 13x λαλῆσαι + " 3x λαλῆσαι, + " 5x λαλῆσαι. + " 1x λαλῇ + " 4x λαλῶ + " 7x λαλῶ, + " 4x λαλῶ. + " 4x λαλῶ· + " 14x λαλῶν + " 2x λαλῶν, + " 1x λαλῶσιν + " 13x λαμβάνει + " 3x λαμβάνει, + " 1x λαμβάνει. + " 3x λαμβάνειν + " 1x λαμβάνειν. + " 1x λαμβάνεις + " 1x λαμβάνει— + " 1x λαμβάνετέ + " 2x λαμβάνετε + " 1x λαμβάνετε, + " 1x λαμβάνετε. + " 1x λαμβάνομεν + " 1x λαμβάνομεν, + " 4x λαμβάνοντες + " 1x λαμβάνοντες, + " 3x λαμβάνουσιν + " 1x λαμβάνουσιν, + " 2x λαμβάνω, + " 5x λαμβάνων + " 1x λαμβάνων. + " 1x λαμβάνῃ + " 1x λαμβανόμενον· + " 1x λαμβανόμενος + " 3x λαμπάδας + " 3x λαμπάδες + " 2x λαμπάδων + " 1x λαμπάς, + " 1x λαμπρός, + " 1x λαμπρότητα + " 1x λαμπρὰ + " 2x λαμπρὰν + " 3x λαμπρὸν + " 2x λαμπρᾷ, + " 1x λαμπρῶς. + " 1x λαμψάτω + " 1x λαμὰ + " 1x λανθάνει + " 1x λανθάνειν + " 1x λανθανέτω + " 1x λαξευτῷ, + " 1x λαοί. + " 3x λαοὶ + " 2x λαοῖς + " 24x λαοῦ + " 8x λαοῦ, + " 5x λαοῦ. + " 1x λαοῦ· + " 1x λατρεία + " 2x λατρείαν + " 2x λατρείας + " 3x λατρεύειν + " 1x λατρεύοντα, + " 1x λατρεύοντας + " 1x λατρεύοντες + " 1x λατρεύοντες. + " 1x λατρεύουσα + " 2x λατρεύουσιν + " 2x λατρεύσεις. + " 1x λατρεύσουσίν + " 1x λατρεύσουσιν + " 3x λατρεύω + " 1x λατρεύω, + " 1x λατρεύωμεν + " 1x λατρεῦον + " 1x λαχάνων + " 1x λαχάνων, + " 1x λαχοῦσιν + " 4x λαόν + " 7x λαόν, + " 6x λαόν. + " 2x λαόν· + " 3x λαός + " 1x λαός. + " 1x λαός· + " 23x λαὸν + " 2x λαὸν, + " 19x λαὸς + " 1x λαὸς, + " 2x λαῖλαψ + " 2x λαῶν + " 1x λαῶν, + " 15x λαῷ + " 5x λαῷ, + " 4x λαῷ. + " 2x λαῷ· + " 1x λείας· + " 1x λείπει· + " 1x λείπεται + " 1x λείποντα + " 1x λείπῃ. + " 1x λεγέτω + " 1x λεγιῶνα, + " 1x λεγιῶνας + " 2x λεγομένη + " 4x λεγομένην + " 2x λεγομένης + " 1x λεγομένοις + " 2x λεγομένοις, + " 1x λεγομένοις. + " 1x λεγομένου + " 7x λεγούσης + " 1x λεγόμενα. + " 2x λεγόμενοι + " 9x λεγόμενον + " 1x λεγόμενον, + " 11x λεγόμενος + " 1x λεγόμενος, + " 6x λεγόντων + " 1x λειπόμενοι + " 1x λειπόμενοι. + " 3x λειτουργίας + " 1x λειτουργίας, + " 1x λειτουργίας. + " 1x λειτουργίᾳ + " 1x λειτουργικὰ + " 1x λειτουργοὶ + " 1x λειτουργοὺς + " 2x λειτουργὸν + " 1x λειτουργὸς + " 1x λειτουργῆσαι + " 1x λειτουργῶν + " 10x λελάληκα + " 1x λελάληκα, + " 1x λελάληκεν + " 1x λελάληκεν. + " 1x λελάληταί + " 1x λελαλημένοις + " 1x λελατομημένον + " 1x λελουμένος + " 1x λελουσμένοι + " 1x λελυμένα + " 1x λελυμένον + " 2x λελύπηκεν, + " 1x λεμὰ + " 1x λεντίῳ + " 1x λεπίδες, + " 4x λεπροὶ + " 1x λεπροὺς + " 2x λεπροῦ, + " 2x λεπρὸς + " 2x λεπτὰ + " 1x λεπτὸν + " 1x λευκάς, + " 2x λευκή, + " 2x λευκήν, + " 1x λευκαί + " 1x λευκαὶ + " 1x λευκαῖς, + " 1x λευκοῖς + " 4x λευκοῖς, + " 1x λευκόν + " 2x λευκός, + " 3x λευκὰ + " 1x λευκὰς + " 1x λευκὴν + " 3x λευκὸν + " 1x λευκὸς + " 1x λευκᾶναι. + " 1x λεόντων + " 2x λεόντων, + " 1x λημψόμεθα. + " 1x ληνοῦ + " 3x ληνὸν + " 1x ληνὸς + " 1x λιβανωτόν, + " 1x λιβανωτὸν + " 1x λιθάζετε; + " 1x λιθάζομέν + " 1x λιθάσαι + " 1x λιθάσαντες + " 1x λιθάσωσιν + " 1x λιθίναις + " 1x λιθασθῶσιν· + " 1x λιθοβολεῖσθαι· + " 1x λιθοβοληθήσεται· + " 2x λιθοβολοῦσα + " 1x λιθοβολῆσαι + " 2x λικμήσει + " 1x λιμένα + " 1x λιμένος + " 1x λιμοί· + " 2x λιμοὶ + " 1x λιμός, + " 1x λιμὸν + " 4x λιμὸς + " 3x λιμῷ + " 1x λιπαρὰ + " 1x λοίδοροι, + " 1x λοίδορος + " 1x λογίαι + " 1x λογίας + " 1x λογίζεσθαι, + " 2x λογίζεσθε + " 1x λογίζεσθε· + " 5x λογίζεται + " 3x λογίζομαι + " 1x λογίζομαι, + " 1x λογίζῃ + " 1x λογίσασθαί + " 2x λογίσηται + " 1x λογίων + " 3x λογιζέσθω + " 1x λογιζομένους + " 1x λογιζομένῳ + " 1x λογιζόμεθα + " 1x λογιζόμενος + " 1x λογικὴν + " 1x λογικὸν + " 1x λογισάμενος + " 1x λογισθήσεται; + " 1x λογισθείη· + " 1x λογισθῆναι + " 1x λογισθῆναι, + " 1x λογισμοὺς + " 1x λογισμῶν + " 1x λογομαχίας, + " 1x λογομαχεῖν, + " 1x λοιδορίαν + " 1x λοιδορίας + " 1x λοιδορίας, + " 1x λοιδορεῖς; + " 1x λοιδορούμενοι + " 1x λοιδορούμενος + " 1x λοιμοὶ + " 1x λοιμὸν + " 2x λοιπαὶ + " 1x λοιποί, + " 1x λοιποί· + " 13x λοιποὶ + " 3x λοιποὺς + " 6x λοιποῖς + " 1x λοιποῖς. + " 1x λοιποῖς· + " 1x λοιποῦ + " 1x λοιποῦ, + " 2x λοιπόν, + " 3x λοιπὰ + " 2x λοιπὰς + " 9x λοιπὸν + " 6x λοιπῶν + " 1x λοιπῶν· + " 1x λουσαμένη + " 1x λουτροῦ + " 1x λουτρῷ + " 1x λούσαντες + " 1x λυθήσεται + " 1x λυθήσεται, + " 1x λυθήσονται + " 1x λυθείσης + " 3x λυθῆναι + " 1x λυθῇ + " 1x λυομένων + " 2x λυπεῖσθαι + " 1x λυπεῖται, + " 1x λυπεῖτε + " 1x λυπηθέντες + " 1x λυπηθήσεσθε, + " 1x λυπηθεὶς + " 1x λυπηθῆναι + " 1x λυπηθῆτε, + " 2x λυπούμενοι + " 1x λυπούμενος + " 1x λυπούμενος, + " 1x λυπούμενος· + " 1x λυπῆσθε + " 1x λυπῶ + " 1x λυσιτελεῖ + " 1x λυτροῦσθαι + " 1x λυτρωτὴν + " 1x λυτρώσηται + " 1x λυχνία + " 2x λυχνίαι + " 2x λυχνίαν + " 2x λυχνίαν, + " 3x λυχνίας + " 2x λυχνιῶν + " 1x λυόντων + " 3x λόγια + " 1x λόγιος, + " 10x λόγοι + " 12x λόγοις + " 3x λόγοις, + " 1x λόγοις. + " 1x λόγοις· + " 113x λόγον + " 12x λόγον, + " 4x λόγον. + " 1x λόγον· + " 58x λόγος + " 2x λόγος, + " 1x λόγος. + " 2x λόγος· + " 19x λόγου + " 7x λόγου, + " 1x λόγου. + " 22x λόγους + " 1x λόγους, + " 1x λόγχῃ + " 10x λόγων + " 36x λόγῳ + " 7x λόγῳ, + " 2x λόγῳ. + " 1x λύει + " 1x λύετε + " 1x λύετε; + " 2x λύκοι + " 1x λύκον + " 1x λύκος + " 1x λύκων. + " 1x λύκων· + " 1x λύοντες + " 1x λύουσιν + " 1x λύπας + " 5x λύπη + " 5x λύπην + " 1x λύπης + " 2x λύπης, + " 2x λύπῃ + " 2x λύσαντες + " 1x λύσαντι + " 1x λύσας + " 1x λύσας, + " 1x λύσατε + " 1x λύσητε + " 1x λύσιν· + " 1x λύσω + " 2x λύσῃ + " 1x λύσῃς + " 2x λύτρον + " 3x λύτρωσιν + " 1x λύχνοι + " 4x λύχνον + " 6x λύχνος + " 2x λύχνου + " 1x λύχνῳ + " 1x λῃστάς, + " 1x λῃστάς; + " 1x λῃστής. + " 1x λῃστής· + " 1x λῃσταί, + " 1x λῃσταί· + " 1x λῃσταὶ + " 1x λῃσταῖς + " 3x λῃστὴν + " 1x λῃστῶν, + " 3x λῃστῶν. + " 1x λῆρος + " 3x λῦσαι + " 1x λῦσαι. + " 1x μάγοι + " 1x μάγον + " 1x μάγος, + " 1x μάγους + " 1x μάγων + " 1x μάγων. + " 4x μάθετε + " 1x μάθητε + " 12x μάλιστα + " 1x μάμμῃ + " 4x μάννα + " 2x μάρτυρές + " 3x μάρτυρα + " 1x μάρτυρας + " 7x μάρτυρες + " 1x μάρτυρες· + " 1x μάρτυρός + " 7x μάρτυς + " 1x μάρτυς, + " 1x μάρτυσίν + " 2x μάρτυσιν + " 1x μάστιγας. + " 1x μάστιγος. + " 1x μάστιγός + " 1x μάστιξιν + " 2x μάταιοι. + " 1x μάταιος + " 2x μάτην + " 1x μάχαι + " 1x μάχαι, + " 1x μάχαιράν + " 1x μάχαιρα + " 1x μάχαιρα; + " 1x μάχαιραι + " 9x μάχαιραν + " 2x μάχαιραν. + " 1x μάχας + " 1x μάχας· + " 1x μάχεσθαι + " 1x μάχεσθε + " 1x μέ + " 13x μέγα + " 3x μέγα, + " 2x μέγα. + " 7x μέγαν + " 4x μέγαν, + " 2x μέγαν. + " 17x μέγας + " 5x μέγας, + " 2x μέγας. + " 1x μέγας· + " 1x μέγεθος + " 1x μέγιστα + " 1x μέθαι, + " 1x μέθαις, + " 1x μέθυσοι, + " 1x μέθυσος + " 1x μέθῃ + " 1x μέλαιναν. + " 1x μέλανι + " 1x μέλανος + " 1x μέλανος, + " 1x μέλας + " 1x μέλας, + " 7x μέλει + " 2x μέλεσίν + " 3x μέλεσιν + " 14x μέλη + " 2x μέλη, + " 4x μέλη. + " 1x μέλη; + " 1x μέλη· + " 3x μέλι + " 1x μέλι. + " 15x μέλλει + " 6x μέλλειν + " 3x μέλλεις + " 1x μέλλεις; + " 2x μέλλετε + " 1x μέλλομεν + " 1x μέλλον, + " 1x μέλλον· + " 5x μέλλοντα + " 1x μέλλοντα, + " 3x μέλλοντας + " 4x μέλλοντες + " 2x μέλλοντι + " 1x μέλλοντι. + " 1x μέλλοντι· + " 5x μέλλοντος + " 1x μέλλοντος. + " 3x μέλλουσαν + " 1x μέλλουσαν, + " 2x μέλλουσιν + " 2x μέλλω + " 9x μέλλων + " 3x μέλλῃ + " 2x μέλος + " 3x μέλος, + " 1x μέμνησθε + " 1x μέμφεται; + " 4x μέν + " 4x μέν, + " 1x μένε + " 20x μένει + " 4x μένει, + " 2x μένει. + " 2x μένει· + " 5x μένειν + " 1x μένεις; + " 4x μένετε + " 1x μένετε, + " 1x μένετε· + " 1x μένητε. + " 1x μένομεν + " 3x μένον + " 1x μένοντα, + " 1x μένοντος. + " 3x μένουσαν + " 2x μένουσαν. + " 1x μένουσιν + " 1x μένουσιν. + " 8x μέντοι + " 1x μένω + " 6x μένων + " 1x μένων· + " 2x μένῃ + " 2x μένῃ, + " 3x μέρει + " 9x μέρη + " 2x μέρη, + " 2x μέριμνα + " 1x μέριμναι + " 1x μέριμναν + " 12x μέρος + " 2x μέρος, + " 1x μέρος. + " 1x μέρος· + " 7x μέρους + " 4x μέρους, + " 1x μέρους. + " 2x μέσης + " 12x μέσον + " 1x μέσον, + " 2x μέσον. + " 1x μέσον· + " 2x μέσος + " 1x μέσος, + " 7x μέσου + " 1x μέσου, + " 28x μέσῳ + " 1x μέσῳ, + " 2x μέτοχοι + " 1x μέτοχοι, + " 1x μέτρησον + " 8x μέτρον + " 1x μέτρου + " 1x μέτρου, + " 4x μέτρῳ + " 3x μέτωπον + " 15x μέχρι + " 3x μέχρις + " 70x μή + " 6x μή, + " 2x μή· + " 8x μήγε, + " 2x μήπω + " 34x μήτε + " 29x μήτηρ + " 1x μήτηρ, + " 8x μήτι + " 1x μήτιγε + " 1x μήτραν + " 1x μήτρας + " 14x μία + " 1x μία, + " 2x μία. + " 28x μίαν + " 2x μίαν, + " 4x μίαν. + " 1x μίαν; + " 1x μίαν· + " 1x μίγμα + " 1x μίλιον + " 1x μίσθιοι + " 1x μαίνεσθε; + " 1x μαίνεται· + " 1x μαίνομαι, + " 1x μαγίαις + " 1x μαγεύων + " 1x μαθήτρια + " 3x μαθεῖν + " 2x μαθητάς + " 2x μαθητάς, + " 1x μαθητάς. + " 1x μαθητής + " 1x μαθητής, + " 5x μαθητής. + " 11x μαθηταί + " 1x μαθηταί, + " 3x μαθηταί. + " 2x μαθηταί· + " 92x μαθηταὶ + " 38x μαθηταῖς + " 1x μαθηταῖς, + " 1x μαθηταῖς. + " 1x μαθηταῖς· + " 1x μαθητευθεὶς + " 1x μαθητεύσαντες + " 1x μαθητεύσατε + " 1x μαθητοῦ, + " 33x μαθητὰς + " 3x μαθητὴν + " 13x μαθητὴς + " 2x μαθητῇ + " 1x μαθητῇ. + " 42x μαθητῶν + " 3x μαθητῶν, + " 1x μαθητῶν. + " 2x μαθὼν + " 4x μακάριοί + " 14x μακάριοι + " 1x μακάριοι, + " 1x μακάριοι. + " 1x μακάριον + " 10x μακάριος + " 2x μακάριός + " 1x μακέλλῳ + " 1x μακαρία + " 1x μακαρίαν + " 1x μακαρίζομεν + " 1x μακαρίου + " 1x μακαριοῦσίν + " 1x μακαρισμὸν + " 2x μακαρισμὸς + " 1x μακαριωτέρα + " 1x μακράν, + " 1x μακροθυμήσας + " 1x μακροθυμήσατε + " 1x μακροθυμία + " 1x μακροθυμία, + " 1x μακροθυμίαν + " 3x μακροθυμίαν, + " 3x μακροθυμίας + " 1x μακροθυμίας, + " 2x μακροθυμίᾳ + " 2x μακροθυμίᾳ, + " 2x μακροθυμεῖ + " 1x μακροθυμεῖ, + " 1x μακροθυμεῖτε + " 1x μακροθυμῶν + " 1x μακροθύμως + " 1x μακροχρόνιος + " 12x μακρόθεν + " 1x μακρόθεν, + " 1x μακρόθεν. + " 2x μακρὰ + " 10x μακρὰν + " 1x μακρὰν, + " 1x μαλακίαν + " 2x μαλακίαν. + " 1x μαλακοὶ + " 2x μαλακοῖς + " 1x μαλακὰ + " 1x μαμωνᾶ + " 1x μαμωνᾷ + " 2x μαμωνᾷ. + " 1x μανίαν + " 1x μανθάνοντα + " 1x μανθάνουσιν, + " 1x μανθάνωσιν + " 1x μανθανέτω + " 2x μανθανέτωσαν + " 1x μαντευομένη. + " 1x μαρανθήσεται. + " 1x μαργαρίταις + " 1x μαργαρίταις, + " 1x μαργαρίτας + " 1x μαργαρίτας· + " 1x μαργαρίτην + " 1x μαργαρίτου. + " 1x μαργαρίτῃ, + " 1x μαργαριτῶν + " 1x μαργαρῖται· + " 1x μαρμάρου, + " 1x μαρτυρήσαντος + " 1x μαρτυρήσας + " 1x μαρτυρήσει + " 1x μαρτυρήσω + " 3x μαρτυρήσῃ + " 13x μαρτυρία + " 2x μαρτυρία, + " 1x μαρτυρίαι + " 18x μαρτυρίαν + " 1x μαρτυρίαν, + " 2x μαρτυρίας + " 2x μαρτυρίου + " 6x μαρτυρεῖ + " 1x μαρτυρεῖ, + " 1x μαρτυρεῖν, + " 1x μαρτυρεῖς· + " 1x μαρτυρεῖται + " 2x μαρτυρεῖτε + " 1x μαρτυρεῖτε, + " 1x μαρτυρηθέντες + " 1x μαρτυρουμένη + " 1x μαρτυρουμένη, + " 1x μαρτυρουμένους + " 2x μαρτυρούμενος + " 1x μαρτυρούμενός + " 1x μαρτυρούντων + " 1x μαρτυρούσης + " 2x μαρτυροῦμεν + " 2x μαρτυροῦμεν, + " 1x μαρτυροῦν, + " 1x μαρτυροῦντες, + " 1x μαρτυροῦντι + " 1x μαρτυροῦντος + " 1x μαρτυροῦσαι + " 1x μαρτυροῦσιν, + " 1x μαρτυρόμενοι + " 1x μαρτυρόμενος + " 1x μαρτυρῆσαι + " 1x μαρτυρῆσαι. + " 6x μαρτυρῶ + " 1x μαρτυρῶ, + " 4x μαρτυρῶν + " 1x μαρτύρησον + " 17x μαρτύριον + " 1x μαρτύριον. + " 3x μαρτύρομαι + " 3x μαρτύρων + " 2x μαρτύρων, + " 2x μαρτύρων. + " 2x μαρτύρων; + " 1x μαρὰν + " 2x μαστίγων + " 1x μαστίζειν; + " 1x μαστιγοῖ + " 1x μαστιγώσαντες + " 1x μαστιγώσετε + " 2x μαστιγώσουσιν + " 1x μαστιγῶσαι + " 2x μαστοὶ + " 1x μαστοῖς + " 1x ματαία + " 1x ματαίας + " 1x ματαίων + " 1x ματαιολογίαν, + " 1x ματαιολόγοι + " 2x ματαιότητι + " 1x ματαιότητος + " 3x μαχαίρης + " 1x μαχαίρης, + " 3x μαχαίρῃ + " 1x μαχαίρῃ. + " 1x μαχαίρῃ; + " 5x μαχαιρῶν + " 1x μαχομένοις, + " 200x με + " 33x με, + " 30x με. + " 11x με; + " 12x με· + " 6x μείζονα + " 1x μείζονα. + " 1x μείζονας + " 1x μείζονες + " 3x μείζονος + " 2x μείζω + " 23x μείζων + " 1x μείζων, + " 2x μείζων. + " 5x μείνατε + " 2x μείνητε + " 3x μείνωσιν + " 3x μείνῃ + " 2x μείνῃ, + " 1x μείνῃ. + " 6x μεγάλα + " 1x μεγάλα, + " 1x μεγάλαι + " 1x μεγάλαις + " 2x μεγάλας + " 18x μεγάλη + " 8x μεγάλη, + " 5x μεγάλη. + " 14x μεγάλην + " 4x μεγάλην, + " 1x μεγάλην. + " 10x μεγάλης + " 6x μεγάλης, + " 3x μεγάλοι + " 1x μεγάλοι. + " 1x μεγάλοις, + " 6x μεγάλου + " 1x μεγάλου, + " 1x μεγάλους + " 2x μεγάλους, + " 1x μεγάλων + " 1x μεγάλων. + " 1x μεγάλως + " 31x μεγάλῃ + " 1x μεγάλῃ. + " 1x μεγάλῃ; + " 1x μεγάλῃ· + " 3x μεγάλῳ + " 2x μεγάλῳ, + " 1x μεγαλειότητι + " 1x μεγαλειότητος + " 1x μεγαλειότητος. + " 1x μεγαλεῖα + " 1x μεγαλοπρεποῦς + " 1x μεγαλυνθήσεται + " 1x μεγαλυνθῆναι + " 1x μεγαλυνόντων + " 1x μεγαλωσύνη + " 1x μεγαλύνουσιν + " 2x μεγιστᾶνες + " 1x μεγιστᾶσιν + " 6x μεθερμηνευόμενον + " 1x μεθερμηνευόμενος + " 1x μεθερμηνεύεται + " 1x μεθιστάναι, + " 1x μεθοδίαν + " 1x μεθοδίας + " 1x μεθυσθῶσιν + " 1x μεθυσκόμενοι + " 1x μεθυόντων, + " 1x μεθύει. + " 1x μεθύουσαν + " 1x μεθύουσιν, + " 1x μεθύουσιν· + " 1x μεθύσκεσθαι, + " 1x μεθύσκεσθε + " 42x μεθ’ + " 1x μειζοτέραν + " 1x μελέτα, + " 1x μελέτω· + " 1x μελλήσετε + " 1x μελλήσω + " 5x μελλούσης + " 1x μελλούσης. + " 7x μελλόντων + " 1x μελλόντων, + " 2x μελῶν + " 1x μεμέρικεν + " 1x μεμέρισται + " 1x μεμέρισται. + " 1x μεμίανται + " 1x μεμίσηκεν. + " 1x μεμαθηκώς; + " 1x μεμαρτύρηκα + " 1x μεμαρτύρηκας, + " 4x μεμαρτύρηκεν + " 1x μεμαρτύρηκεν, + " 2x μεμαρτύρηται + " 1x μεμβράνας. + " 1x μεμενήκεισαν + " 1x μεμεστωμένοι + " 1x μεμιαμμένοις + " 1x μεμιγμένα + " 1x μεμιγμένην + " 1x μεμιγμένον· + " 1x μεμισήκασιν + " 1x μεμισημένου, + " 1x μεμνημένος + " 1x μεμονωμένη + " 1x μεμφόμενος + " 1x μεμψίμοιροι, + " 1x μεμύημαι, + " 2x μενέτω + " 3x μενέτω. + " 1x μενεῖ + " 1x μενεῖτε + " 1x μενεῖτε. + " 2x μενοῦνγε + " 1x μενῶ + " 2x μερίδα + " 1x μερίδος + " 1x μερίμναις + " 1x μερίσασθαι + " 1x μεριμνήσει + " 1x μεριμνήσει· + " 4x μεριμνήσητε + " 2x μεριμνᾶτε + " 1x μεριμνᾶτε, + " 2x μεριμνᾶτε; + " 4x μεριμνᾷ + " 1x μεριμνᾷς + " 3x μεριμνῶν + " 1x μεριμνῶσιν + " 2x μερισθεῖσα + " 2x μερισθῇ, + " 1x μερισμοῖς + " 1x μερισμοῦ + " 1x μεριστὴν + " 2x μερὶς + " 3x μεσίτης + " 1x μεσίτης, + " 1x μεσίτου. + " 1x μεσίτῃ + " 2x μεσημβρίαν + " 1x μεσονυκτίου + " 1x μεσονυκτίου. + " 2x μεσονύκτιον + " 2x μεσουρανήματι + " 1x μεσουρανήματι, + " 1x μεσούσης + " 1x μεστοί + " 1x μεστοὶ + " 2x μεστοὺς + " 1x μεστόν· + " 2x μεστὴ + " 2x μεστὸν + " 1x μεσότοιχον + " 1x μετάγεται + " 1x μετάγομεν. + " 1x μετάθεσιν + " 1x μετάθεσις + " 1x μετάλημψιν + " 1x μετάνοιάν + " 7x μετάνοιαν + " 1x μετάνοιαν, + " 1x μετάνοιαν. + " 2x μετάνοιαν· + " 2x μετάπεμψαι + " 1x μετέβη + " 1x μετέθηκεν + " 1x μετέπειτα + " 2x μετέστησεν + " 1x μετέσχεν + " 1x μετέσχηκεν, + " 1x μετέχειν + " 1x μετέχειν. + " 1x μετέχομεν. + " 1x μετέχουσιν, + " 1x μετέχω, + " 1x μετέχων + " 2x μετήλλαξαν + " 1x μεταβέβηκεν + " 1x μεταβήσεται, + " 1x μεταβαίνετε + " 1x μεταβαλόμενοι + " 1x μεταβεβήκαμεν + " 3x μεταβὰς + " 2x μεταβῇ + " 1x μεταδιδοὺς + " 1x μεταδιδόναι + " 1x μεταδοῦναι + " 1x μεταδότω + " 1x μεταδῶ + " 1x μεταθέσεως + " 1x μετακάλεσαι + " 1x μετακαλέσομαί + " 1x μετακινούμενοι + " 3x μεταλαβεῖν + " 1x μεταλαβὼν + " 1x μεταλαμβάνει + " 1x μεταλαμβάνειν. + " 1x μεταμέλομαι· + " 1x μεταμεληθήσεται + " 2x μεταμεληθεὶς + " 1x μεταμορφούμεθα + " 1x μεταμορφοῦσθε + " 1x μετανοήσατε + " 1x μετανοήσητε, + " 1x μετανοήσουσιν + " 1x μετανοήσουσιν. + " 2x μετανοήσῃ, + " 1x μετανοήσῃς. + " 6x μετανοίας + " 1x μετανοίας, + " 1x μετανοίας. + " 2x μετανοίας· + " 1x μετανοεῖν + " 1x μετανοεῖν, + " 1x μετανοεῖτε + " 1x μετανοησάντων + " 1x μετανοοῦντι + " 1x μετανοοῦντι. + " 1x μετανοῆσαι + " 1x μετανοῆτε, + " 1x μετανοῶσιν, + " 3x μετανόησον + " 2x μετανόησον. + " 9x μεταξὺ + " 1x μεταπέμψασθαί + " 1x μεταπέμψηται + " 1x μεταπεμπόμενος + " 1x μεταπεμφθείς. + " 1x μεταπεμψάμενος + " 1x μεταστήσας + " 1x μετασταθῶ + " 1x μεταστρέψαι + " 1x μεταστραφήσεται + " 1x μετασχηματίζεται + " 1x μετασχηματίζονται + " 1x μετασχηματίσει + " 1x μετασχηματιζόμενοι + " 1x μετατίθεσθε + " 1x μετατιθέντες + " 1x μετατιθεμένης + " 1x μετατραπήτω + " 2x μετεκαλέσατο + " 1x μετελάμβανον + " 1x μετεμελήθητε + " 1x μετεμελόμην, + " 2x μετεμορφώθη + " 6x μετενόησαν + " 2x μετενόησαν. + " 1x μετενόησαν· + " 1x μετεπέμψασθέ + " 1x μετεπέμψατο + " 1x μετεσχημάτισα + " 1x μετετέθη + " 1x μετετέθησαν + " 1x μετεωρίζεσθε· + " 1x μετοικεσίαν + " 3x μετοικεσίας + " 1x μετοικιῶ + " 1x μετοχὴ + " 1x μετρήσῃ + " 1x μετρήσῃς, + " 1x μετρίως. + " 3x μετρεῖτε + " 2x μετρηθήσεται + " 1x μετρητὰς + " 1x μετριοπαθεῖν + " 1x μετροῦντες + " 1x μετόχοις + " 2x μετόχους + " 1x μετώπου + " 3x μετώπων + " 1x μετώπων. + " 266x μετὰ + " 2x μετῆρεν + " 1x μετῴκισεν + " 131x μετ’ + " 4x μεῖζον + " 1x μεῖζον, + " 2x μεῖζόν + " 4x μεῖναι + " 2x μεῖναι. + " 1x μηδέν, + " 8x μηδένα + " 1x μηδέποτε + " 1x μηδέπω + " 2x μηδείς + " 7x μηδεμίαν + " 19x μηδενὶ + " 3x μηδενὸς + " 10x μηδεὶς + " 55x μηδὲ + " 29x μηδὲν + " 1x μηδ’ + " 1x μηθὲν + " 18x μηκέτι + " 1x μηκέτι. + " 1x μηκύνηται + " 1x μηλωταῖς, + " 1x μηνυθείσης + " 1x μηνύσαντα + " 1x μηνύσῃ, + " 1x μηνὶ + " 1x μηρὸν + " 18x μητέρα + " 5x μητέρα, + " 3x μητέρα. + " 1x μητέρα; + " 1x μητέρας + " 1x μητέρας, + " 4x μητρί + " 1x μητρί, + " 1x μητρολῴαις, + " 1x μητρός + " 6x μητρὶ + " 11x μητρὸς + " 1x μιάσματα + " 1x μιαίνουσιν, + " 2x μιανθῶσιν + " 1x μιασμοῦ + " 1x μικρούς, + " 1x μικροὶ + " 1x μικροὺς + " 1x μικροῖς + " 3x μικροῦ + " 2x μικρόν + " 1x μικρόν, + " 1x μικρόν; + " 2x μικρότερον + " 3x μικρότερος + " 2x μικρὰ + " 1x μικρὰν + " 15x μικρὸν + " 1x μικρὸς + " 7x μικρῶν + " 1x μικρῷ + " 2x μιμεῖσθαι + " 1x μιμεῖσθε + " 2x μιμηταί + " 4x μιμηταὶ + " 1x μιμνῄσκεσθε + " 1x μιμνῄσκῃ + " 1x μιμοῦ + " 2x μισήσει + " 1x μισήσεις + " 2x μισήσουσιν + " 1x μισήσωσιν + " 4x μισεῖ + " 2x μισεῖ, + " 1x μισεῖ. + " 1x μισεῖν + " 1x μισεῖς + " 1x μισθίων + " 1x μισθαποδοσίαν, + " 2x μισθαποδοσίαν. + " 1x μισθαποδότης + " 4x μισθοῦ + " 1x μισθωτός + " 1x μισθωτὸς + " 1x μισθωτῶν + " 1x μισθόν, + " 1x μισθός + " 1x μισθός; + " 1x μισθώματι, + " 1x μισθώσασθαι + " 17x μισθὸν + " 5x μισθὸς + " 4x μισούμενοι + " 1x μισούντων + " 2x μισοῦντες + " 1x μισοῦσιν + " 1x μισῇ, + " 1x μισῶ + " 1x μισῶ. + " 5x μισῶν + " 7x μιᾶς + " 1x μιᾶς, + " 18x μιᾷ + " 1x μνήμασιν + " 1x μνήμασιν, + " 1x μνήμασιν. + " 3x μνήματι + " 1x μνήμην + " 1x μνήσθητί + " 2x μνήσθητε + " 1x μνήσθητι + " 6x μνείαν + " 1x μνείᾳ + " 1x μνημείοις + " 4x μνημείου + " 3x μνημείου, + " 2x μνημείου. + " 1x μνημείου; + " 3x μνημείων + " 2x μνημείῳ + " 2x μνημείῳ. + " 4x μνημεῖα + " 4x μνημεῖον + " 7x μνημεῖον, + " 2x μνημεῖον. + " 3x μνημεῖον· + " 1x μνημονεύει + " 1x μνημονεύειν + " 1x μνημονεύετέ + " 6x μνημονεύετε + " 1x μνημονεύετε, + " 1x μνημονεύητε + " 2x μνημονεύοντες + " 1x μνημονεύωμεν, + " 2x μνημόνευε + " 3x μνημόσυνον + " 1x μνησθήσομαι + " 3x μνησθῆναι + " 1x μνησθῇς + " 1x μνησθῶ + " 1x μνηστευθείσης + " 3x μνᾶ + " 1x μνᾶν + " 1x μνᾶς + " 1x μνᾶς, + " 3x μνᾶς. + " 2x μνῆμα + " 1x μνῆμα, + " 1x μνῆμα. + " 4x μοί + " 1x μογιλάλον, + " 170x μοι + " 22x μοι, + " 22x μοι. + " 3x μοι; + " 4x μοι· + " 1x μοιχαλίδα + " 1x μοιχαλίδες, + " 1x μοιχαλίδι + " 1x μοιχαλίδος + " 3x μοιχαλὶς + " 1x μοιχείᾳ + " 1x μοιχευθῆναι, + " 1x μοιχευομένη. + " 1x μοιχεύει, + " 1x μοιχεύει. + " 1x μοιχεύειν + " 1x μοιχεύεις, + " 1x μοιχεύεις; + " 1x μοιχεύοντας + " 2x μοιχεύσεις, + " 1x μοιχεύσεις. + " 3x μοιχεύσῃς, + " 2x μοιχεῖαι, + " 1x μοιχοί, + " 1x μοιχοὶ + " 1x μοιχοὺς + " 1x μοιχᾶται + " 3x μοιχᾶται. + " 1x μολυσμοῦ + " 1x μολύνεται. + " 1x μομφήν· + " 1x μοναὶ + " 1x μονογενής + " 2x μονογενοῦς + " 3x μονογενὴς + " 3x μονογενῆ + " 2x μονόφθαλμον + " 1x μονὴν + " 1x μορφωθῇ + " 1x μορφὴν + " 2x μορφῇ + " 352x μου + " 117x μου, + " 60x μου. + " 5x μου; + " 16x μου· + " 1x μουσικῶν + " 10x μού + " 1x μυελῶν, + " 1x μυκτηρίζεται. + " 1x μυκᾶται. + " 1x μυλικὸς + " 2x μυρίους + " 1x μυρίσαι + " 1x μυρίων + " 1x μυριάδας + " 2x μυριάδες + " 2x μυριάδων + " 1x μυριάδων· + " 2x μυριάσιν + " 3x μυστήρια + " 1x μυστήρια· + " 13x μυστήριον + " 2x μυστήριον, + " 1x μυστήριον· + " 4x μυστηρίου + " 1x μυστηρίων + " 1x μυστηρίῳ + " 1x μυστηρίῳ, + " 1x μυωπάζων, + " 1x μωμήσηται + " 1x μωμηθῇ + " 3x μωρία + " 1x μωρίαν, + " 1x μωρίας + " 2x μωρανθῇ, + " 3x μωραὶ + " 1x μωρολογία + " 2x μωροὶ + " 1x μωρὰ + " 2x μωρὰς + " 1x μωρὸν + " 1x μωρὸς + " 1x μωρῷ, + " 1x μόδιον + " 2x μόδιον, + " 7x μόλις + " 1x μόνα· + " 1x μόνας + " 1x μόνας, + " 1x μόνην + " 2x μόνοι + " 2x μόνοι, + " 1x μόνοις; + " 59x μόνον + " 10x μόνον, + " 2x μόνον. + " 1x μόνον; + " 16x μόνος + " 1x μόνος, + " 3x μόνος. + " 1x μόνου + " 1x μόνου. + " 2x μόνους + " 1x μόνους. + " 7x μόνῳ + " 2x μόρφωσιν + " 2x μόσχον + " 1x μόσχον. + " 1x μόσχων + " 1x μόσχων, + " 1x μόσχῳ, + " 1x μόχθον· + " 1x μόχθῳ + " 1x μόχθῳ, + " 3x μύθοις + " 2x μύθους + " 1x μύλινον + " 2x μύλος + " 1x μύλου + " 1x μύλῳ, + " 1x μύρα. + " 4x μύρον + " 5x μύρου + " 1x μύρου. + " 2x μύρῳ + " 1x μύρῳ. + " 1x μώλωπι + " 172x μὲν + " 902x μὴ + " 2x μὴν + " 75x μᾶλλον + " 3x μᾶλλον, + " 2x μᾶλλον. + " 1x μᾶλλον· + " 3x μῆκος + " 2x μῆνα + " 14x μῆνας + " 1x μῶμοι + " 2x νάρδου + " 2x νέας + " 2x νέκρωσιν + " 8x νέον + " 1x νέον· + " 1x νέος + " 1x νέφος + " 1x νήθει + " 1x νήθουσιν· + " 2x νήπιοι, + " 1x νήπιος + " 3x νήπιος, + " 1x νήπιος· + " 1x νήπιός + " 1x νήσου + " 2x νήστεις + " 2x νήσῳ + " 1x νήσῳ, + " 1x νήφοντες, + " 1x νήφωμεν, + " 1x νήφωμεν. + " 1x νήψατε + " 1x νίκα + " 1x νίκη + " 2x νίπτειν + " 1x νίπτεις + " 1x νίπτονται + " 1x νίψαι + " 1x νίψαι, + " 1x νίψαι· + " 1x νίψασθαι, + " 1x νίψω + " 1x νίψωνται + " 1x νίψῃς + " 11x ναί, + " 1x ναοὺς + " 1x ναοῖς + " 9x ναοῦ + " 3x ναοῦ, + " 1x ναυκλήρῳ + " 1x ναυτῶν + " 4x ναὶ + " 13x ναὸν + " 10x ναὸς + " 1x ναῦν, + " 2x ναῦται + " 6x ναῷ + " 1x ναῷ, + " 1x ναῷ· + " 1x νεανίαν + " 1x νεανίας + " 1x νεανίου + " 2x νεανίσκοι + " 2x νεανίσκοι, + " 2x νεανίσκον + " 1x νεανίσκον, + " 3x νεανίσκος + " 2x νεκρά + " 1x νεκρά. + " 1x νεκράν, + " 1x νεκροί. + " 1x νεκροί; + " 3x νεκρούς, + " 2x νεκρούς. + " 1x νεκρούς· + " 11x νεκροὶ + " 1x νεκροὶ, + " 13x νεκροὺς + " 2x νεκροῖς + " 1x νεκροῦ, + " 1x νεκρόν + " 1x νεκρόν. + " 1x νεκρός. + " 1x νεκρός· + " 1x νεκρὸν + " 6x νεκρὸς + " 1x νεκρὸς, + " 39x νεκρῶν + " 23x νεκρῶν, + " 8x νεκρῶν. + " 3x νεκρῶν; + " 3x νεκρῶν· + " 1x νενίκηκα + " 1x νενεκρωμένον, + " 1x νενεκρωμένου, + " 3x νενικήκατε + " 1x νενομοθέτηται, + " 1x νενομοθέτηται. + " 1x νεομηνίας + " 1x νεφέλαι + " 2x νεφέλαις + " 5x νεφέλη + " 3x νεφέλην + " 1x νεφέλην, + " 1x νεφέλην. + " 5x νεφέλης + " 2x νεφέλῃ + " 1x νεφέλῃ, + " 3x νεφελῶν + " 1x νεφελῶν, + " 1x νεφροὺς + " 1x νεωκόρον + " 3x νεωτέρας + " 2x νεωτέρους + " 1x νεωτερικὰς + " 2x νεότητος + " 1x νεότητος. + " 1x νεότητός + " 1x νεόφυτον, + " 1x νεύει + " 1x νεύσαντος + " 1x νεώτεροι + " 1x νεώτεροι, + " 2x νεώτερος + " 2x νεώτερος, + " 1x νηπίοις + " 2x νηπίοις· + " 1x νηπίου. + " 1x νηπίων + " 1x νηπίων, + " 1x νηπιάζετε, + " 1x νησίον + " 2x νηστείαις + " 1x νηστείαις, + " 1x νηστειῶν + " 1x νηστευόντων + " 1x νηστεύειν. + " 1x νηστεύειν; + " 1x νηστεύητε, + " 1x νηστεύομεν, + " 1x νηστεύοντες. + " 1x νηστεύοντες· + " 1x νηστεύουσιν + " 1x νηστεύουσιν, + " 2x νηστεύουσιν; + " 1x νηστεύσαντες + " 1x νηστεύσας + " 2x νηστεύσουσιν + " 1x νηστεύσουσιν. + " 1x νηστεύω + " 2x νηστεύων + " 1x νηστεῦσαι; + " 1x νηφάλιον, + " 1x νηφαλίους + " 1x νηφαλίους, + " 1x νικήσασα + " 2x νικήσει + " 1x νικήσεις + " 1x νικήσῃ + " 1x νικήσῃ. + " 1x νικᾷ + " 1x νικῆσαι + " 1x νικῶ + " 7x νικῶν + " 1x νικῶν, + " 1x νικῶντας + " 2x νικῶντι + " 1x νιπτῆρα, + " 1x νιψάμενος + " 1x νοΐ + " 1x νοΐ. + " 1x νοΐ· + " 5x νοήματα + " 1x νοήσωσιν + " 2x νοείτω, + " 4x νοεῖτε + " 1x νοεῖτε, + " 1x νομίζει, + " 1x νομίζειν, + " 1x νομίζοντες + " 1x νομίζων + " 2x νομίμως + " 1x νομίσαντες + " 2x νομίσητε + " 1x νομιζόντων + " 1x νομικοὶ + " 1x νομικοὺς + " 1x νομικοῖς + " 1x νομικοῖς, + " 1x νομικός + " 1x νομικὰς + " 1x νομικὸν + " 1x νομικὸς + " 1x νομικῶν + " 1x νομοδιδάσκαλοι + " 1x νομοδιδάσκαλοι, + " 1x νομοδιδάσκαλος + " 1x νομοθέτης + " 1x νομοθεσία + " 2x νομὴν + " 1x νοούμενα + " 2x νοοῦμεν + " 1x νοοῦντες + " 1x νοσήματι). + " 1x νοσσία + " 1x νοσσιὰν + " 1x νοσσοὺς + " 1x νοσφίσασθαι + " 1x νοσφιζομένους, + " 1x νοσῶν + " 2x νουθεσίαν + " 1x νουθεσίᾳ + " 1x νουθετεῖν. + " 2x νουθετεῖτε + " 1x νουθετοῦντας + " 2x νουθετοῦντες + " 1x νουθετῶν + " 1x νουθετῶν. + " 1x νουνεχῶς + " 1x νοός + " 1x νοός, + " 4x νοὸς + " 1x νοῆσαι + " 3x νοῒ + " 7x νοῦν + " 2x νοῦν, + " 3x νοῦς + " 1x νυκτί, + " 1x νυκτός + " 2x νυκτός, + " 1x νυκτός. + " 12x νυκτὶ + " 29x νυκτὸς + " 2x νυμφίον + " 3x νυμφίος + " 5x νυμφίος, + " 1x νυμφίος; + " 3x νυμφίου + " 2x νυμφίου. + " 1x νυμφὼν + " 2x νυμφῶνος + " 1x νυμφῶνος, + " 15x νυνὶ + " 1x νυστάζει. + " 1x νυχθήμερον + " 2x νωθροὶ + " 1x νόει + " 1x νόημα + " 1x νόθοι + " 1x νόμισμα + " 47x νόμον + " 7x νόμον, + " 3x νόμον. + " 1x νόμον; + " 1x νόμον· + " 27x νόμος + " 3x νόμος, + " 1x νόμος. + " 1x νόμος; + " 2x νόμος· + " 51x νόμου + " 9x νόμου, + " 3x νόμου. + " 1x νόμου; + " 3x νόμου· + " 2x νόμους + " 29x νόμῳ + " 1x νόμῳ; + " 2x νόμῳ· + " 2x νόσοις + " 1x νόσοις, + " 3x νόσον + " 2x νόσους + " 1x νόσους, + " 2x νόσων + " 1x νότον + " 5x νότου + " 1x νότου, + " 4x νύκτα + " 2x νύκτας + " 1x νύκτας, + " 1x νύκτας. + " 2x νύμφη + " 5x νύμφην + " 1x νύμφης + " 1x νύξ. + " 1x νὴ + " 6x νὺξ + " 2x νῆσον + " 3x νῆσος + " 1x νῆφε + " 2x νῖκος + " 1x νῖκος. + " 1x νῖκος; + " 130x νῦν + " 9x νῦν, + " 2x νῦν. + " 1x νῦν· + " 1x νῶτον + " 1x ξέναις + " 4x ξένοι + " 1x ξένοις. + " 2x ξένον + " 3x ξένος + " 1x ξένου + " 1x ξένους, + " 1x ξενίαν + " 1x ξενίαν· + " 1x ξενίζεσθε + " 2x ξενίζεται + " 1x ξενίζεται. + " 1x ξενίζοντα + " 1x ξενίζονται + " 1x ξενίσαντες + " 1x ξενισθῶμεν + " 1x ξεστῶν + " 1x ξηρά· + " 1x ξηράν + " 1x ξηράν· + " 1x ξηραίνεται· + " 2x ξηρὰν + " 1x ξηρᾶς + " 1x ξηρῶν(, + " 1x ξηρῷ + " 1x ξυρήσονται + " 1x ξυρᾶσθαι, + " 1x ξύλα, + " 1x ξύλινα + " 1x ξύλινα, + " 3x ξύλον + " 1x ξύλον, + " 1x ξύλον. + " 5x ξύλου + " 1x ξύλου, + " 1x ξύλου. + " 1x ξύλου· + " 4x ξύλων + " 1x ξύλων; + " 1x ξύλῳ + " 1x οἰέσθω + " 1x οἰκέται, + " 1x οἰκέτην; + " 1x οἰκέτης + " 1x οἰκήματι· + " 9x οἰκία + " 32x οἰκίαν + " 6x οἰκίαν, + " 3x οἰκίαν. + " 14x οἰκίας + " 2x οἰκίας, + " 1x οἰκίας. + " 22x οἰκίᾳ + " 3x οἰκίᾳ, + " 1x οἰκίᾳ. + " 1x οἰκείους + " 1x οἰκείων + " 1x οἰκετείας + " 1x οἰκετῶν + " 3x οἰκεῖ + " 1x οἰκεῖ; + " 2x οἰκεῖν + " 1x οἰκεῖοι + " 2x οἰκητήριον + " 1x οἰκιακοὶ + " 1x οἰκιακοὺς + " 1x οἰκιῶν + " 1x οἰκοδεσποτεῖν, + " 1x οἰκοδεσπότην + " 5x οἰκοδεσπότης + " 2x οἰκοδεσπότου + " 3x οἰκοδεσπότῃ + " 1x οἰκοδεσπότῃ, + " 1x οἰκοδομάς; + " 1x οἰκοδομή + " 1x οἰκοδομήθη + " 1x οἰκοδομήν· + " 1x οἰκοδομήσαντι + " 1x οἰκοδομήσετέ + " 1x οἰκοδομήσω + " 1x οἰκοδομήσω, + " 1x οἰκοδομήσω. + " 1x οἰκοδομαί. + " 2x οἰκοδομεῖ. + " 2x οἰκοδομεῖ· + " 1x οἰκοδομεῖν + " 1x οἰκοδομεῖσθε + " 1x οἰκοδομεῖται. + " 3x οἰκοδομεῖτε + " 1x οἰκοδομεῖτε. + " 1x οἰκοδομηθήσεται + " 1x οἰκοδομουμένη + " 4x οἰκοδομοῦντες, + " 1x οἰκοδομοῦντι + " 1x οἰκοδομὰς + " 1x οἰκοδομὴ + " 10x οἰκοδομὴν + " 1x οἰκοδομῆς + " 1x οἰκοδομῆς. + " 2x οἰκοδομῆσαι + " 1x οἰκοδομῆσαι. + " 1x οἰκοδομῆσθαι + " 2x οἰκοδομῶ, + " 1x οἰκοδομῶν + " 1x οἰκοδομῶν, + " 1x οἰκοδόμησεν + " 1x οἰκοδόμων, + " 1x οἰκονομία + " 6x οἰκονομίαν + " 2x οἰκονομίας + " 1x οἰκονομεῖν. + " 1x οἰκονόμοι + " 1x οἰκονόμοις + " 1x οἰκονόμον + " 2x οἰκονόμον, + " 3x οἰκονόμος + " 2x οἰκονόμους + " 1x οἰκουμένη + " 5x οἰκουμένην + " 1x οἰκουμένην, + " 1x οἰκουμένην. + " 1x οἰκουμένην· + " 4x οἰκουμένης + " 1x οἰκουμένῃ + " 1x οἰκουμένῃ· + " 1x οἰκουργούς, + " 1x οἰκοῦσα + " 1x οἰκτίρμονες, + " 1x οἰκτίρμων + " 1x οἰκτίρμων. + " 1x οἰκτείρω. + " 1x οἰκτειρήσω + " 1x οἰκτιρμοί, + " 1x οἰκτιρμοῦ, + " 3x οἰκτιρμῶν + " 1x οἰκῶν + " 2x οἰνοπότης, + " 1x οἰνοφλυγίαις, + " 1x οἰόμενοι + " 1068x οἱ + " 31x οἳ + " 33x οἴδαμεν + " 3x οἴδαμεν, + " 2x οἴδαμεν. + " 1x οἴδαμεν· + " 6x οἴδασιν + " 1x οἴδασιν. + " 46x οἴδατε + " 8x οἴδατε, + " 3x οἴδατε. + " 1x οἴδατε· + " 1x οἴκοις + " 11x οἴκου + " 1x οἴκου· + " 3x οἴκους + " 1x οἴκους, + " 1x οἴκων. + " 19x οἴκῳ + " 1x οἴκῳ, + " 7x οἴνου + " 3x οἴνῳ + " 1x οἴνῳ, + " 1x οἴσει + " 1x οἴσουσιν + " 7x οἵ + " 2x οἵα + " 2x οἵους + " 3x οἵτινές + " 57x οἵτινες + " 2x οἶδά + " 38x οἶδα + " 5x οἶδα, + " 1x οἶδα. + " 1x οἶδα· + " 10x οἶδας + " 4x οἶδας, + " 1x οἶδας. + " 14x οἶδεν + " 5x οἶδεν, + " 1x οἶδεν,— + " 1x οἶδεν. + " 1x οἶδεν· + " 43x οἶκον + " 2x οἶκον. + " 2x οἶκον· + " 11x οἶκος + " 1x οἶκος· + " 11x οἶκόν + " 6x οἶκός + " 1x οἶμαι + " 14x οἶνον + " 2x οἶνον, + " 1x οἶνον. + " 1x οἶνον· + " 4x οἶνος + " 1x οἷά + " 1x οἷα + " 1x οἷοί + " 1x οἷοι + " 3x οἷον + " 3x οἷος + " 46x οἷς + " 627x οὐ + " 2x οὐαί + " 5x οὐαί, + " 21x οὐαὶ + " 11x οὐδέν + " 4x οὐδέν, + " 8x οὐδέν. + " 2x οὐδέν; + " 3x οὐδέν· + " 11x οὐδένα + " 1x οὐδένα, + " 3x οὐδένα. + " 1x οὐδένα· + " 11x οὐδέποτε + " 4x οὐδέπω + " 1x οὐδαμῶς + " 6x οὐδείς + " 2x οὐδεμία + " 1x οὐδεμία. + " 8x οὐδεμίαν + " 1x οὐδενός, + " 1x οὐδενός· + " 9x οὐδενὶ + " 6x οὐδενὸς + " 82x οὐδεὶς + " 126x οὐδὲ + " 52x οὐδὲν + " 1x οὐδὲν, + " 8x οὐδ’ + " 1x οὐθέν + " 1x οὐθέν· + " 1x οὐθενός· + " 3x οὐθὲν + " 767x οὐκ + " 45x οὐκέτι + " 1x οὐκέτι, + " 1x οὐκέτι. + " 5x οὐράνιος + " 1x οὐράνιος. + " 1x οὐράνιος· + " 1x οὐρανέ + " 1x οὐρανίου + " 1x οὐρανίῳ + " 1x οὐρανοί, + " 1x οὐρανοί· + " 2x οὐρανούς, + " 5x οὐρανοὶ + " 3x οὐρανοὺς + " 11x οὐρανοῖς + " 10x οὐρανοῖς, + " 12x οὐρανοῖς. + " 3x οὐρανοῖς· + " 63x οὐρανοῦ + " 20x οὐρανοῦ, + " 9x οὐρανοῦ. + " 2x οὐρανόθεν + " 6x οὐρανόν, + " 4x οὐρανόν. + " 2x οὐρανόν; + " 1x οὐρανόν]]. + " 1x οὐρανόν· + " 1x οὐρανός + " 1x οὐρανός, + " 1x οὐρανός. + " 1x οὐρανός· + " 28x οὐρανὸν + " 1x οὐρανὸν, + " 8x οὐρανὸς + " 22x οὐρανῶν + " 5x οὐρανῶν, + " 12x οὐρανῶν. + " 1x οὐρανῶν; + " 2x οὐρανῶν· + " 17x οὐρανῷ + " 14x οὐρανῷ, + " 3x οὐρανῷ. + " 1x οὐρανῷ· + " 1x οὐραὶ + " 2x οὐραῖς + " 1x οὐρὰ + " 1x οὐρὰς + " 1x οὐσίαν + " 1x οὐσίας. + " 1x οὐσῶν + " 97x οὐχ + " 4x οὐχί, + " 40x οὐχὶ + " 1x οὒ + " 50x οὓς + " 1x οὔ, + " 5x οὔ; + " 2x οὔ· + " 25x οὔπω + " 4x οὔσης + " 1x οὔσης; + " 4x οὔσῃ + " 87x οὔτε + " 3x οὕτω + " 174x οὕτως + " 7x οὕτως, + " 7x οὕτως. + " 3x οὕτως; + " 1x οὕτως· + " 475x οὖν + " 15x οὖν, + " 4x οὖν; + " 2x οὖν· + " 12x οὖς + " 1x οὖς, + " 5x οὖσα + " 1x οὖσαι + " 5x οὖσαν + " 1x οὖσαν, + " 6x οὖσιν + " 2x οὖσιν. + " 1x οὖσιν; + " 139x οὗ + " 11x οὗτοί + " 49x οὗτοι + " 1x οὗτοι, + " 1x οὗτοι; + " 101x οὗτος + " 4x οὗτος, + " 4x οὗτος. + " 4x οὗτος; + " 1x οὗτος· + " 44x οὗτός + " 1x πάγον + " 1x πάθει + " 1x πάθη + " 1x πάθημα + " 1x πάθος, + " 1x πάθῃ + " 6x πάλαι + " 1x πάλη + " 127x πάλιν + " 1x πάλιν, + " 3x πάλιν. + " 1x πάλιν· + " 224x πάντα + " 18x πάντα, + " 7x πάντα. + " 5x πάντα; + " 4x πάντα· + " 75x πάντας + " 9x πάντας, + " 5x πάντας. + " 1x πάντας; + " 157x πάντες + " 6x πάντες, + " 9x πάντες. + " 2x πάντες· + " 1x πάντοθεν + " 1x πάντοθεν, + " 1x πάντοθεν. + " 2x πάντοτέ + " 32x πάντοτε + " 3x πάντοτε, + " 2x πάντοτε. + " 1x πάντοτε· + " 113x πάντων + " 14x πάντων, + " 2x πάντων. + " 1x πάντων; + " 2x πάντων· + " 5x πάντως + " 1x πάντως· + " 1x πάντῃ + " 1x πάρει. + " 1x πάρεισιν, + " 1x πάρεσιν + " 1x πάρεσμεν + " 1x πάρεστε; + " 2x πάρεστιν + " 1x πάρεστιν, + " 1x πάρεχε + " 1x πάρεχε· + " 1x πάροικοι, + " 1x πάροικον + " 1x πάροικος + " 2x πάροινον, + " 7x πάσαις + " 9x πάσας + " 42x πάσης + " 15x πάσχα + " 4x πάσχα, + " 5x πάσχα. + " 2x πάσχα; + " 2x πάσχα· + " 1x πάσχει + " 2x πάσχειν + " 1x πάσχειν, + " 1x πάσχειν. + " 1x πάσχετε, + " 1x πάσχοιτε + " 1x πάσχομεν. + " 2x πάσχοντες + " 1x πάσχω, + " 2x πάσχων + " 44x πάσῃ + " 1x πάτερ + " 1x πάτερ, + " 2x πέδαις + " 1x πέδας + " 1x πέλαγος + " 1x πέμπει + " 1x πέμπειν. + " 1x πέμποντα + " 1x πέμπτην + " 3x πέμπτος + " 1x πέμπω + " 7x πέμψαι + " 1x πέμψαι· + " 6x πέμψαντά + " 1x πέμψαντί + " 1x πέμψαντα + " 1x πέμψαντες + " 2x πέμψαντος + " 7x πέμψαντός + " 15x πέμψας + " 1x πέμψασιν + " 1x πέμψει + " 4x πέμψον + " 1x πέμψουσιν + " 6x πέμψω + " 1x πέμψῃς + " 1x πένησιν, + " 4x πένθος + " 1x πένθος. + " 28x πέντε + " 3x πέντε, + " 4x πέντε. + " 2x πέντε· + " 1x πέπαυται + " 4x πέπεισμαι + " 1x πέποιθάς + " 2x πέποιθα + " 2x πέποιθεν + " 1x πέπονθεν + " 1x πέπρακεν + " 1x πέπραχά + " 1x πέπτωκες, + " 1x πέπωκαν + " 19x πέραν + " 1x πέραν, + " 3x πέραν. + " 1x πέρας + " 1x πέρατα + " 1x πέριξ + " 1x πέρυσι, + " 1x πέρυσι· + " 1x πέσητε. + " 1x πέσωσιν; + " 2x πέσῃ + " 3x πέσῃ, + " 1x πέτηται + " 2x πέτρα + " 1x πέτραι + " 1x πέτραις + " 1x πέτραν + " 1x πέτραν, + " 2x πέτραν. + " 1x πέτραν· + " 2x πέτρας + " 2x πέτρας, + " 1x πέτρᾳ + " 1x πέτρᾳ, + " 1x πήγανον + " 2x πήραν + " 3x πήραν, + " 1x πήρας + " 1x πίε, + " 1x πίεσαι + " 2x πίεσθε, + " 1x πίεται + " 2x πίητε + " 1x πίητε, + " 1x πίμπρασθαι + " 4x πίνακι + " 1x πίνακος + " 1x πίνει + " 2x πίνειν + " 2x πίνειν; + " 1x πίνετε + " 1x πίνετε; + " 1x πίνητε + " 2x πίνητε, + " 1x πίνοντες + " 1x πίνοντες, + " 1x πίνουσιν. + " 3x πίνω + " 1x πίνω, + " 5x πίνων + " 3x πίνων, + " 2x πίνῃ + " 2x πίπτει + " 1x πίπτει. + " 2x πίπτει· + " 1x πίπτοντες, + " 23x πίστει + " 12x πίστει, + " 3x πίστει. + " 2x πίστει· + " 1x πίστευε. + " 1x πίστευσον, + " 64x πίστεως + " 12x πίστεως, + " 10x πίστεως. + " 3x πίστεως; + " 4x πίστεως· + " 1x πίστεώς + " 44x πίστιν + " 3x πίστιν, + " 5x πίστιν. + " 1x πίστιν; + " 2x πίστιν· + " 30x πίστις + " 4x πίστις, + " 1x πίστις. + " 1x πίστις· + " 4x πίω + " 2x πίω, + " 1x πίωμεν, + " 1x πίωμεν; + " 1x πίωσιν + " 1x πίῃ + " 1x πίῃ, + " 1x παίδων + " 1x παίζειν. + " 2x παίσας + " 1x παίσῃ + " 3x παγίδα + " 1x παγίδος, + " 1x παγίς· + " 1x παγιδεύσωσιν + " 3x παθήμασιν + " 1x παθήμασιν, + " 4x παθήματα + " 9x παθεῖν + " 1x παθεῖν, + " 1x παθεῖν. + " 1x παθεῖν· + " 4x παθημάτων + " 3x παθημάτων, + " 1x παθητὸς + " 1x παθοῦσα + " 1x παθόντας + " 1x παθόντος + " 1x παθὼν + " 1x παιδάριον + " 8x παιδία + " 3x παιδία, + " 2x παιδίοις + " 19x παιδίον + " 6x παιδίον, + " 2x παιδίον. + " 4x παιδίου + " 1x παιδίου. + " 1x παιδίου· + " 1x παιδίσκας, + " 5x παιδίσκη + " 2x παιδίσκην + " 4x παιδίσκης + " 1x παιδίων + " 3x παιδίων. + " 1x παιδαγωγοὺς + " 1x παιδαγωγόν + " 1x παιδαγωγὸς + " 1x παιδεία + " 2x παιδείαν + " 1x παιδείας + " 1x παιδείας, + " 1x παιδείᾳ + " 1x παιδευθῶσιν + " 1x παιδευτὰς + " 1x παιδευτὴν + " 1x παιδευόμεθα, + " 1x παιδευόμενοι + " 1x παιδεύει + " 1x παιδεύει, + " 1x παιδεύοντα + " 1x παιδεύουσα + " 2x παιδεύσας + " 1x παιδεύω· + " 1x παιδισκῶν + " 1x παιδιόθεν· + " 1x παιδός + " 3x παιδὸς + " 1x παισὶν + " 1x παλαιά + " 1x παλαιά. + " 1x παλαιούμενα, + " 1x παλαιούμενον + " 3x παλαιούς· + " 1x παλαιοῦ, + " 1x παλαιωθήσονται, + " 2x παλαιόν· + " 1x παλαιότητι + " 2x παλαιὰν + " 3x παλαιὸν + " 2x παλαιὸς + " 1x παλαιᾶς + " 1x παλαιᾷ + " 1x παλαιῷ + " 1x παλαιῷ· + " 1x παλινγενεσίας + " 1x παλινγενεσίᾳ, + " 1x πανδοχεῖ + " 1x πανδοχεῖον + " 1x πανηγύρει + " 1x πανοικεὶ + " 3x πανοπλίαν + " 1x πανουργίαν + " 4x πανουργίᾳ + " 1x πανοῦργος + " 1x πανπληθεὶ + " 1x παντί. + " 5x πανταχοῦ + " 1x πανταχοῦ, + " 1x πανταχοῦ. + " 1x πανταχῇ + " 1x παντελές. + " 1x παντελὲς + " 2x παντός, + " 1x παντός. + " 58x παντὶ + " 29x παντὸς + " 3x παρά + " 1x παράβασις + " 1x παράβασις. + " 1x παράγγελλε + " 1x παράγγελλε, + " 1x παράγει + " 1x παράγει, + " 2x παράγεται + " 1x παράγοντά + " 1x παράγοντι + " 4x παράγων + " 1x παράδοξα + " 9x παράδοσιν + " 1x παράθου + " 1x παράκειταί + " 1x παράκειται· + " 7x παράκλησιν + " 3x παράκλησις + " 3x παράλαβε + " 1x παράπτωμα + " 1x παράπτωμα, + " 1x παράπτωμα· + " 1x παρέβη + " 1x παρέδοσαν + " 1x παρέδωκάν + " 4x παρέδωκα + " 5x παρέδωκαν + " 2x παρέδωκας· + " 17x παρέδωκεν + " 2x παρέθεντο + " 1x παρέθηκαν + " 3x παρέθηκεν + " 1x παρέκυψεν + " 4x παρέλαβεν + " 1x παρέλαβες + " 3x παρέλαβον + " 1x παρέλαβον, + " 1x παρέλαβον. + " 1x παρέλθωσιν. + " 6x παρέλθῃ + " 2x παρένεγκε + " 1x παρέξῃ + " 1x παρέρχεσθε + " 1x παρέρχεται. + " 1x παρέσται. + " 2x παρέστη + " 2x παρέστηκεν + " 3x παρέστησαν + " 2x παρέστησεν + " 1x παρέσχον + " 1x παρέτεινέν + " 1x παρέχειν + " 1x παρέχεσθε, + " 1x παρέχετε + " 1x παρέχετε; + " 1x παρέχοντι + " 1x παρέχουσιν + " 2x παρήγγειλαν + " 6x παρήγγειλεν + " 1x παρήγγελλεν + " 1x παραβάσει + " 2x παραβάσεων + " 2x παραβάσεως + " 1x παραβάται. + " 2x παραβάτην + " 2x παραβάτης + " 1x παραβαίνετε + " 1x παραβαίνουσιν + " 1x παραβολάς. + " 2x παραβολή. + " 1x παραβολήν, + " 3x παραβολήν. + " 2x παραβολήν· + " 11x παραβολαῖς + " 1x παραβολαῖς, + " 1x παραβολευσάμενος + " 3x παραβολὰς + " 1x παραβολὴ + " 19x παραβολὴν + " 1x παραβολὴν, + " 3x παραβολῆς + " 2x παραβολῇ + " 1x παραγένωμαι, + " 1x παραγένωνται· + " 3x παραγίνεται + " 1x παραγγέλλει + " 1x παραγγέλλειν + " 2x παραγγέλλομεν + " 1x παραγγέλλω + " 1x παραγγέλλω, + " 1x παραγγέλλων + " 1x παραγγείλαντες + " 4x παραγγείλας + " 1x παραγγείλῃς + " 2x παραγγελίαν + " 2x παραγγελίας + " 1x παραγενομένου + " 1x παραγενομένους + " 5x παραγενόμενοι + " 1x παραγενόμενον + " 7x παραγενόμενος + " 1x παραγενόμενος. + " 1x παραγενόμενός + " 1x παραδέδοται + " 1x παραδέξονταί + " 1x παραδέχεσθαι + " 1x παραδέχεται. + " 1x παραδέχονται + " 1x παραδέχου, + " 2x παραδίδοσθαι + " 4x παραδίδοται + " 1x παραδίδοται. + " 2x παραδίδοται· + " 1x παραδίδως; + " 1x παραδεδομένοι + " 1x παραδεδωκόσι + " 1x παραδεδώκεισαν + " 1x παραδειγματίζοντας. + " 3x παραδιδούς + " 6x παραδιδοὺς + " 1x παραδιδοῖ + " 1x παραδιδόμεθα + " 2x παραδιδόναι + " 1x παραδιδόντα + " 1x παραδιδόντες + " 1x παραδιδόντες, + " 1x παραδιδόντος + " 1x παραδοθήσεσθε + " 3x παραδοθήσεται + " 1x παραδοθείσης + " 1x παραδοθείσῃ + " 1x παραδοθεὶς + " 2x παραδοθῆναι + " 1x παραδοθῶ + " 1x παραδούς + " 4x παραδοὺς + " 3x παραδοῖ + " 1x παραδοῖ. + " 3x παραδοῦναι + " 1x παραδόντος + " 1x παραδόσει + " 2x παραδόσεις + " 1x παραδόσεων. + " 6x παραδώσει + " 1x παραδώσει. + " 7x παραδώσουσιν + " 1x παραδώσω + " 1x παραδώσων + " 1x παραδῶ + " 1x παραδῶσιν + " 2x παραδῷ + " 1x παραδῷ. + " 1x παραζηλοῦμεν + " 2x παραζηλώσω + " 1x παραζηλῶσαι + " 3x παραθήκην + " 1x παραθήσω + " 1x παραθαλασσίαν + " 1x παραθεῖναι + " 1x παραινῶ + " 1x παραιτήσησθε + " 1x παραιτεῖσθαι. + " 1x παραιτησάμενοι + " 2x παραιτοῦ, + " 1x παραιτοῦ. + " 1x παραιτοῦ· + " 1x παραιτοῦμαι + " 3x παρακάλει + " 1x παρακάλει. + " 1x παρακάλεσον, + " 1x παρακαθεσθεῖσα + " 5x παρακαλέσαι + " 1x παρακαλέσαι, + " 1x παρακαλέσας + " 1x παρακαλέσας, + " 2x παρακαλέσῃ + " 1x παρακαλεῖ + " 3x παρακαλεῖν + " 1x παρακαλεῖσθε, + " 1x παρακαλεῖται + " 3x παρακαλεῖτε + " 1x παρακαλούμεθα + " 1x παρακαλούμεθα, + " 3x παρακαλοῦμεν + " 1x παρακαλοῦμεν· + " 3x παρακαλοῦντες + " 1x παρακαλοῦντες, + " 1x παρακαλοῦντος + " 2x παρακαλοῦσιν + " 11x παρακαλῶ + " 1x παρακαλῶ, + " 8x παρακαλῶν + " 1x παρακαλῶν, + " 1x παρακαλῶνται. + " 1x παρακεκαλυμμένον + " 1x παρακεκλήμεθα. + " 1x παρακεχειμακότι + " 3x παρακλήσει + " 2x παρακλήσει, + " 1x παρακλήσει. + " 1x παρακλήσει· + " 7x παρακλήσεως + " 3x παρακλήσεως, + " 1x παρακλήσεως. + " 1x παρακλήσεως· + " 1x παρακληθήσονται. + " 1x παρακληθῆναι + " 1x παρακληθῶσιν + " 1x παρακοήν, + " 1x παρακολουθήσει, + " 1x παρακούσας + " 1x παρακούσῃ + " 1x παρακούσῃ, + " 1x παρακοὴ + " 1x παρακοῆς + " 1x παρακύψαι. + " 3x παρακύψας + " 1x παραλήμψομαι + " 1x παραλίου + " 1x παραλαβεῖν + " 1x παραλαβόντα + " 2x παραλαβόντες + " 9x παραλαβὼν + " 8x παραλαμβάνει + " 2x παραλαμβάνεται + " 1x παραλαμβάνοντες + " 1x παραλαμβάνουσιν + " 1x παραλεγόμενοι + " 1x παραλελυμένα + " 1x παραλελυμένοι + " 1x παραλελυμένος, + " 1x παραλελυμένος. + " 1x παραλελυμένῳ + " 2x παραλημφθήσεται + " 1x παραλλαγὴ + " 1x παραλογίζηται + " 1x παραλογιζόμενοι + " 1x παραλυτικούς, + " 1x παραλυτικός, + " 2x παραλυτικὸν + " 1x παραλυτικὸς + " 4x παραλυτικῷ + " 1x παραλυτικῷ· + " 1x παραμένειν· + " 1x παραμείνας, + " 1x παραμενῶ + " 1x παραμυθήσωνται + " 1x παραμυθίαν. + " 1x παραμυθεῖσθε + " 2x παραμυθούμενοι + " 1x παραμύθιον + " 1x παρανομίας· + " 1x παρανομῶν + " 1x παραπεσόντας, + " 1x παραπικρασμῷ + " 1x παραπικρασμῷ. + " 1x παραπλήσιον + " 1x παραπλεῦσαι + " 1x παραπλησίως + " 3x παραπορευόμενοι + " 1x παραπορεύεσθαι + " 1x παραπτωμάτων + " 1x παραπτωμάτων, + " 3x παραπτώμασιν + " 5x παραπτώματα + " 1x παραπτώματα, + " 3x παραπτώματι + " 1x παραπτώματι, + " 1x παραπτώματος + " 1x παραρυῶμεν. + " 1x παρασήμῳ + " 1x παρασκευάσεται + " 1x παρασκευαζόντων + " 2x παραστήσατε + " 3x παραστήσει + " 1x παραστήσωμεν + " 1x παραστήσῃ + " 1x παραστησόμεθα + " 1x παραστῆναι, + " 7x παραστῆσαι + " 1x παραστῆτε + " 1x παρασχὼν + " 1x παρατίθεμαί + " 2x παρατίθεμαι + " 1x παρατηρήσαντες + " 1x παρατηρήσεως, + " 1x παρατηρεῖσθε + " 1x παρατηρούμενοι + " 1x παρατιθέμενα + " 1x παρατιθέμενον + " 1x παρατιθέμενος + " 1x παρατιθέναι. + " 1x παρατιθέσθωσαν + " 1x παρατιθῶσιν + " 1x παρατιθῶσιν, + " 1x παρατυγχάνοντας. + " 1x παραυτίκα + " 1x παραφέρεσθε· + " 1x παραφερόμεναι, + " 1x παραφρονίαν. + " 1x παραφρονῶν + " 1x παραχειμάσαι, + " 1x παραχειμάσαι. + " 1x παραχειμάσω, + " 1x παραχειμασίαν + " 15x παραχρῆμα + " 2x παραχρῆμα, + " 1x παραχρῆμα. + " 1x παρδάλει, + " 1x παρείχετο + " 1x παρεβάλομεν + " 1x παρεβιάσαντο + " 1x παρεβιάσατο + " 3x παρεγένετο + " 1x παρεγένετο, + " 4x παρεγένοντο + " 1x παρεγίνοντο + " 2x παρεγενόμην + " 1x παρεδέχθησαν + " 1x παρεδίδετο + " 1x παρεδίδοσαν + " 2x παρεδίδου + " 1x παρεδίδουν + " 1x παρεδρεύοντες + " 4x παρεδόθη + " 1x παρεδόθην + " 1x παρεδόθητε + " 1x παρεδώκαμεν + " 1x παρεδώκατε + " 1x παρεδώκατε· + " 1x παρεθεωροῦντο + " 1x παρειμένας + " 1x παρεισάκτους + " 1x παρεισάξουσιν + " 1x παρεισεδύησαν + " 1x παρεισενέγκαντες + " 1x παρειστήκεισαν + " 1x παρεισῆλθεν + " 1x παρεισῆλθον + " 8x παρεκάλει + " 1x παρεκάλεσά + " 1x παρεκάλεσάς + " 1x παρεκάλεσέν + " 3x παρεκάλεσα + " 1x παρεκάλεσα, + " 6x παρεκάλεσαν + " 2x παρεκάλεσεν + " 8x παρεκάλουν + " 1x παρεκαλοῦμεν + " 1x παρεκλήθη + " 1x παρεκλήθημεν + " 1x παρεκλήθημεν, + " 1x παρεκλήθησαν + " 3x παρεκτὸς + " 4x παρελάβετε + " 2x παρελάβετε, + " 1x παρελέγοντο + " 1x παρελεύσεται, + " 1x παρελεύσεται. + " 3x παρελεύσονται, + " 2x παρελεύσονται. + " 1x παρεληλυθέναι, + " 1x παρεληλυθὼς + " 1x παρελθάτω + " 4x παρελθεῖν + " 1x παρελθόντες + " 2x παρελθὼν + " 1x παρεμβαλοῦσιν + " 1x παρεμβολήν, + " 2x παρεμβολήν. + " 1x παρεμβολήν· + " 1x παρεμβολὰς + " 3x παρεμβολὴν + " 1x παρεμβολῆς, + " 1x παρεμβολῆς. + " 1x παρενοχλεῖν + " 1x παρεπίδημοί + " 1x παρεπίκραναν; + " 1x παρεπιδήμοις + " 1x παρεπιδήμους + " 1x παρεπορεύοντο + " 1x παρεσκευασμένοι + " 1x παρεσκεύασται + " 1x παρεστήσατε + " 2x παρεστηκότων + " 3x παρεστηκὼς + " 3x παρεστῶσιν + " 1x παρεστῶτα + " 2x παρεστῶτες + " 1x παρετήρουν + " 2x παρετηροῦντο + " 1x παρεχέτω· + " 1x παρεχόμενος + " 1x παρεῖναί + " 2x παρεῖναι + " 1x παρεῖναι. + " 1x παρεῖχαν + " 1x παρεῖχεν + " 1x παρηγγέλλομεν + " 1x παρηγγείλαμεν + " 1x παρηγγείλαμεν, + " 1x παρηγγελμένα + " 1x παρηγορία. + " 1x παρηκολουθηκότι + " 1x παρηκολούθηκας· + " 1x παρηκολούθησάς + " 4x παρθένοι + " 1x παρθένοις, + " 4x παρθένον + " 1x παρθένον, + " 2x παρθένος + " 1x παρθένος, + " 1x παρθένου + " 1x παρθένων + " 1x παρθενίας + " 2x παριστάνετε + " 1x παροίκους + " 1x παροικίας + " 1x παροικίᾳ + " 1x παροικεῖς + " 2x παροιμίαις + " 2x παροιμίαν + " 1x παροιμίας + " 1x παρομοιάζετε + " 1x παροξυσμός, + " 1x παροξυσμὸν + " 1x παροξύνεται, + " 1x παροργίζετε + " 1x παροργισμῷ + " 1x παροργιῶ + " 6x παρουσία + " 2x παρουσίαν + " 1x παρουσίαν, + " 6x παρουσίας + " 8x παρουσίᾳ + " 1x παρουσίᾳ; + " 1x παροψίδος, + " 1x παρούσῃ + " 1x παροῦσιν· + " 2x παρρησία + " 10x παρρησίαν + " 4x παρρησίας + " 1x παρρησίας. + " 12x παρρησίᾳ + " 1x παρρησίᾳ, + " 1x παρρησίᾳ. + " 1x παρρησιάζεσθαι + " 1x παρρησιάσωμαι + " 1x παρρησιαζόμενοι + " 2x παρρησιαζόμενος + " 1x παρρησιασάμενοί + " 1x παρωξύνετο + " 1x παρόδῳ + " 1x παρόμοια + " 1x παρόντες + " 1x παρόντος + " 1x παρώτρυναν + " 126x παρὰ + " 1x παρὸν + " 6x παρὼν + " 1x παρῃτήσαντο + " 2x παρῃτημένον. + " 1x παρῃτοῦντο. + " 1x παρῄνει + " 1x παρῆλθεν, + " 1x παρῆλθεν· + " 1x παρῆλθον, + " 1x παρῆσαν + " 1x παρῳχημέναις + " 1x παρῴκησεν + " 59x παρ’ + " 1x πασχέτω + " 5x πασῶν + " 1x πατάξαι + " 3x πατάξας + " 1x πατάξομεν + " 1x πατάξῃ + " 37x πατέρα + " 1x πατέρα, + " 10x πατέρας + " 2x πατέρας· + " 17x πατέρες + " 7x πατέρες, + " 12x πατέρων + " 1x πατέρων, + " 1x πατέρων,— + " 2x πατήρ + " 1x πατήρ; + " 1x πατήσουσιν + " 1x πατεῖ + " 1x πατεῖν + " 1x πατουμένη + " 3x πατράσιν + " 1x πατρί + " 1x πατρί, + " 3x πατρίδα + " 5x πατρίδι + " 1x πατριάρχαι + " 1x πατριάρχας. + " 1x πατριάρχης. + " 1x πατριάρχου + " 1x πατριαὶ + " 1x πατρικῶν + " 1x πατριὰ + " 1x πατριᾶς + " 1x πατρολῴαις + " 1x πατροπαραδότου, + " 2x πατρός + " 1x πατρός, + " 1x πατρός. + " 1x πατρός; + " 1x πατρός· + " 8x πατρὶ + " 20x πατρὸς + " 1x πατρῴοις, + " 1x πατρῴου + " 1x πατρῴῳ + " 17x πατὴρ + " 1x παυσάτω + " 1x παυόμεθα + " 1x παύεται + " 1x παύομαι + " 1x παύσασθαι + " 1x παύσονται· + " 1x παύσῃ + " 2x παῖδα + " 3x παῖδας + " 8x παῖς + " 1x παῖς, + " 1x πείθεις + " 1x πείθεσθαι + " 1x πείθεσθαι; + " 1x πείθομαι + " 1x πείθομεν, + " 1x πείθω + " 2x πείθων + " 2x πείσαντες + " 1x πείσας + " 2x πείσομεν + " 1x πεδινοῦ, + " 1x πεζεύειν. + " 2x πεζῇ + " 1x πειθαρχήσαντάς + " 1x πειθαρχεῖν, + " 1x πειθαρχοῦσιν + " 1x πειθομένοις + " 1x πειθομένου + " 1x πειθοῖς + " 1x πειθόμεθα + " 1x πεινάσετε. + " 1x πεινάσουσιν + " 1x πεινάσῃ, + " 1x πεινᾶν, + " 1x πεινᾷ + " 2x πεινᾷ, + " 1x πεινῶμεν + " 2x πεινῶντα + " 1x πεινῶντας + " 2x πεινῶντες + " 1x πειράζει + " 1x πειράζεται + " 2x πειράζετε + " 1x πειράζετε, + " 1x πειράζετε; + " 1x πειράζομαι· + " 6x πειράζοντες + " 4x πειράζων + " 1x πειράζῃ + " 2x πειράσαι + " 1x πειραζομένοις + " 3x πειραζόμενος + " 1x πειραζόμενος, + " 1x πειρασθείς, + " 2x πειρασθῆναι + " 1x πειρασθῆτε, + " 1x πειρασθῇς. + " 2x πειρασμοῖς + " 1x πειρασμοῖς, + " 4x πειρασμοῦ + " 2x πειρασμόν, + " 3x πειρασμόν. + " 2x πειρασμόν· + " 4x πειρασμὸν + " 1x πειρασμὸς + " 1x πειρασμῶν + " 1x πειρασμῷ + " 1x πεισθήσονται. + " 1x πεισθῇς + " 1x πεισμονὴ + " 1x πελάγει + " 1x πεμπομένοις + " 1x πεμφθέντες + " 1x πενθήσατε + " 1x πενθήσετε + " 1x πενθήσω + " 1x πενθεράν. + " 3x πενθερὰ + " 1x πενθερὰν + " 1x πενθερὸς + " 1x πενθερᾶς + " 1x πενθεῖν + " 3x πενθοῦντες, + " 1x πενθοῦσι + " 1x πενθοῦσιν + " 1x πενιχρὰν + " 1x πεντάκις + " 1x πεντήκοντα + " 5x πεντήκοντα. + " 2x πεντακισχίλιοι + " 2x πεντακισχίλιοι. + " 1x πεντακισχιλίους, + " 1x πεντακισχιλίων + " 1x πεντακοσίοις + " 1x πεντακόσια, + " 1x πεντεκαιδεκάτῳ + " 1x πεπίστευκα + " 1x πεπίστευκα, + " 1x πεπίστευκας; + " 2x πεπίστευκεν + " 1x πεπίστευμαι + " 1x πεπίστευμαι. + " 1x πεπαιδευμένος + " 1x πεπαλαίωκεν + " 1x πεπειρασμένον + " 1x πεπεισμένος + " 1x πεπελεκισμένων + " 1x πεπιεσμένον + " 1x πεπιστευκόσιν + " 1x πεπιστευκότας + " 1x πεπιστευκότες + " 1x πεπιστευκότες, + " 2x πεπιστευκότων + " 1x πεπιστευκότων, + " 1x πεπιστευκὼς + " 2x πεπιστεύκαμεν + " 1x πεπιστεύκατε + " 1x πεπιστεύκεισαν. + " 1x πεπλάνησθε; + " 1x πεπλάτυνται· + " 1x πεπλήρωκεν + " 1x πεπλήρωκεν. + " 2x πεπλήρωμαι + " 1x πεπλήρωται + " 1x πεπλήρωται, + " 2x πεπλήρωται. + " 1x πεπλανημένοις. + " 1x πεπληροφορημένοι + " 1x πεπληροφορημένων + " 1x πεπληρωκέναι + " 1x πεπληρωμένα + " 1x πεπληρωμένη + " 2x πεπληρωμένη. + " 1x πεπληρωμένην + " 2x πεπληρωμένοι + " 1x πεπληρωμένοι, + " 1x πεπληρωμένους + " 1x πεπληρώκατε + " 1x πεπλούτηκα + " 1x πεποίηκα + " 1x πεποίηκα· + " 4x πεποίηκεν + " 1x πεποίηκεν, + " 1x πεποίθαμεν + " 1x πεποίθησιν + " 1x πεποιήκαμεν. + " 1x πεποιήκατε + " 1x πεποιήκεισαν. + " 1x πεποιηκέναι + " 1x πεποιηκόσιν + " 1x πεποιηκότες, + " 1x πεποιηκότος + " 1x πεποιηκώς, + " 1x πεποιηκώς. + " 1x πεποιημένων, + " 1x πεποιθέναι + " 4x πεποιθήσει + " 2x πεποιθότας + " 1x πεποιθότες + " 1x πεποιθότες, + " 4x πεποιθὼς + " 1x πεπολίτευμαι + " 1x πεπορευμένους + " 2x πεπραγμένον + " 1x πεπραμένος + " 1x πεπραχέναι, + " 1x πεπτωκυῖαν, + " 1x πεπτωκότα + " 1x πεπυρωμένα + " 1x πεπυρωμένης, + " 1x πεπυρωμένον + " 1x πεπωρωμένη. + " 1x πεπωρωμένην + " 1x πεπόνθασιν; + " 1x πεπότικεν + " 2x περάτων + " 1x περί + " 1x περίεργα + " 1x περίεργοι, + " 1x περίκειμαι. + " 3x περίκειται + " 2x περίλυπος + " 1x περίοικοι + " 2x περίσσευμα + " 3x περίχωρον + " 1x περίχωρον· + " 1x περίχωρος + " 1x περίψημα + " 1x περαιτέρω + " 2x περιΐστασο· + " 1x περιάγειν, + " 1x περιάγετε + " 1x περιάγων + " 1x περιέβαλον + " 1x περιέδραμον + " 1x περιέθηκαν + " 2x περιέθηκεν + " 1x περιέκρυβεν + " 1x περιέλαμψεν + " 1x περιέπειραν + " 1x περιέπεσεν, + " 1x περιέστησαν + " 1x περιέσχεν + " 2x περιέτεμεν + " 1x περιέχει + " 1x περιήστραψεν + " 1x περιαιρεῖται + " 1x περιαστράψαι + " 1x περιαψάντων + " 1x περιβάληται + " 1x περιβάλῃ + " 1x περιβαλεῖται + " 1x περιβαλώμεθα; + " 1x περιβαλὼν + " 3x περιβεβλημένη + " 2x περιβεβλημένοι + " 2x περιβεβλημένον + " 2x περιβεβλημένος + " 2x περιβεβλημένους + " 1x περιβλεψάμενοι + " 5x περιβλεψάμενος + " 1x περιβολαίου + " 1x περιβόλαιον + " 2x περιεβάλετέ + " 2x περιεβάλετο + " 1x περιεβάλομεν; + " 1x περιεβλέπετο + " 1x περιεδέδετο. + " 1x περιεζωσμέναι + " 1x περιεζωσμένοι + " 1x περιεζωσμένον + " 1x περιελεῖν + " 1x περιελθόντες + " 1x περιελόντες + " 3x περιεπάτει + " 1x περιεπάτει, + " 2x περιεπάτει. + " 1x περιεπάτει· + " 1x περιεπάτεις + " 2x περιεπάτησεν + " 1x περιεπάτησεν. + " 1x περιεπάτουν. + " 1x περιεπατήσαμεν; + " 1x περιεπατήσατέ + " 1x περιεπατήσατε + " 1x περιεποιήσατο + " 1x περιεργαζομένους· + " 1x περιερχομένων + " 1x περιερχόμεναι + " 1x περιεσπᾶτο + " 1x περιεστῶτα + " 1x περιετμήθητε + " 1x περιζωσάμενοι + " 1x περιζωσάμενος + " 1x περιζώσεται + " 1x περιθέντες + " 1x περιθέσεως + " 2x περιθεὶς + " 1x περικαθάρματα + " 1x περικαλύπτειν + " 1x περικαλύψαντες + " 1x περικείμενον + " 1x περικεκαλυμμένην + " 2x περικεφαλαίαν + " 1x περικρατεῖς + " 1x περικυκλώσουσίν + " 1x περιλάμψαν + " 2x περιλειπόμενοι + " 1x περιμένειν + " 1x περιοικοῦντας + " 1x περιοχὴ + " 1x περιούσιον, + " 3x περιπάτει. + " 4x περιπάτει; + " 1x περιπέσητε + " 2x περιπατήσουσιν + " 1x περιπατήσωμεν, + " 2x περιπατήσωμεν. + " 1x περιπατήσῃ + " 1x περιπατείτω. + " 2x περιπατεῖ + " 1x περιπατεῖ, + " 6x περιπατεῖν + " 2x περιπατεῖν, + " 2x περιπατεῖν. + " 2x περιπατεῖς. + " 4x περιπατεῖτε + " 4x περιπατεῖτε, + " 1x περιπατεῖτε; + " 1x περιπατοῦμεν, + " 4x περιπατοῦντα + " 1x περιπατοῦντα. + " 4x περιπατοῦντας + " 2x περιπατοῦντας. + " 3x περιπατοῦντες + " 1x περιπατοῦντες. + " 1x περιπατοῦντες; + " 1x περιπατοῦντι + " 2x περιπατοῦντος + " 4x περιπατοῦσιν + " 2x περιπατοῦσιν, + " 2x περιπατῆσαι + " 1x περιπατῆτε + " 1x περιπατῆτε. + " 3x περιπατῇ + " 2x περιπατῶμεν + " 1x περιπατῶμεν, + " 5x περιπατῶν + " 1x περιπεσόντες + " 3x περιποίησιν + " 1x περιποίησιν, + " 1x περιποιήσασθαι, + " 1x περιποιήσεως, + " 1x περιποιοῦνται + " 1x περιρήξαντες + " 1x περισσεία + " 2x περισσείαν + " 1x περισσείαν, + " 2x περισσευθήσεται· + " 3x περισσεύει + " 4x περισσεύειν + " 1x περισσεύειν· + " 1x περισσεύετε, + " 2x περισσεύητε + " 2x περισσεύητε. + " 1x περισσεύματα + " 2x περισσεύματος + " 1x περισσεύομεν. + " 1x περισσεύονται + " 2x περισσεύοντες + " 2x περισσεύοντος + " 1x περισσεύουσα + " 1x περισσεύσαι + " 1x περισσεύσαντα + " 2x περισσεύσῃ + " 1x περισσεύω· + " 2x περισσεύῃ + " 2x περισσεῦον + " 1x περισσεῦσαι + " 1x περισσεῦσαν + " 3x περισσοτέραν + " 10x περισσοτέρως + " 2x περισσοτέρως, + " 1x περισσοτέρᾳ + " 1x περισσοῦ + " 1x περισσόν + " 9x περισσότερον + " 3x περισσότερόν + " 4x περισσὸν + " 4x περισσῶς + " 1x περιστεράς, + " 1x περιστεραί. + " 4x περιστερὰν + " 3x περιστερὰς + " 1x περιστερῶν. + " 2x περιτέμνειν + " 1x περιτέμνεσθαι + " 1x περιτέμνεσθαι, + " 1x περιτέμνετε + " 1x περιτέμνησθε + " 1x περιτίθεμεν, + " 2x περιτεμεῖν + " 1x περιτεμνέσθω. + " 1x περιτεμνομένῳ + " 1x περιτεμνόμενοι + " 1x περιτετμημένος + " 1x περιτιθέασιν + " 1x περιτμηθῆναι· + " 1x περιτμηθῆτε + " 3x περιτομή + " 1x περιτομή, + " 1x περιτομή· + " 1x περιτομήν, + " 1x περιτομήν· + " 4x περιτομὴ + " 5x περιτομὴν + " 10x περιτομῆς + " 2x περιτομῆς, + " 1x περιτομῆς. + " 1x περιτομῆς; + " 1x περιτομῆς· + " 5x περιτομῇ + " 1x περιτρέπει. + " 1x περιφέρειν, + " 1x περιφέροντες, + " 1x περιφερόμενοι + " 1x περιφρονείτω. + " 2x περιχώρου + " 1x περιχώρου. + " 1x περιχώρῳ. + " 1x περιῃρεῖτο + " 3x περιῆγεν + " 1x περιῆλθον + " 1x περπερεύεται, + " 314x περὶ + " 1x πεσεῖν. + " 1x πεσεῖται + " 1x πεσεῖται, + " 3x πεσοῦνται + " 1x πεσοῦνται. + " 1x πεσόν, + " 1x πεσόντα. + " 1x πεσόντας + " 1x πεσόντες + " 13x πεσὼν + " 11x πετεινὰ + " 2x πετεινῶν + " 1x πετεινῶν. + " 1x πετομένοις + " 1x πετομένου + " 1x πετομένῳ. + " 3x πετρώδη + " 1x πετρῶδες + " 1x πετόμενον + " 1x πεφίμωσο. + " 1x πεφανέρωται, + " 1x πεφανέρωται. + " 1x πεφανερώμεθα· + " 1x πεφανερῶσθαι + " 1x πεφανερῶσθαι. + " 1x πεφιλήκατε + " 1x πεφορτισμένοι, + " 1x πεφυσιωμένοι + " 1x πεφυσιωμένων + " 1x πεφυτευμένην + " 1x πεφωτισμένους + " 1x πεῖν + " 2x πεῖν, + " 1x πεῖν. + " 1x πεῖν; + " 1x πεῖν· + " 2x πεῖραν + " 1x πηγαὶ + " 4x πηγὰς + " 4x πηγὴ + " 1x πηγῆς + " 1x πηγῇ· + " 1x πηδαλίου + " 1x πηδαλίων, + " 1x πηλίκοις + " 1x πηλίκος + " 1x πηλοῦ + " 4x πηλὸν + " 1x πηχῶν + " 1x πηχῶν, + " 2x πιάσαι + " 1x πιάσαι, + " 1x πιάσαι· + " 2x πιάσας + " 2x πιάσωσιν + " 6x πιεῖν + " 1x πιεῖν. + " 1x πιθανολογίᾳ. + " 1x πικρία + " 3x πικρίας + " 1x πικραίνεσθε + " 1x πικρανεῖ + " 1x πικρόν; + " 1x πικρὸν + " 2x πικρῶς. + " 1x πινέτω. + " 1x πινέτω· + " 1x πινακίδιον + " 1x πιοῦσα + " 1x πιπρασκομένων + " 2x πιπτόντων + " 1x πιστά, + " 1x πιστά. + " 2x πιστέ, + " 1x πιστευθῆναι + " 1x πιστευσάντων + " 3x πιστευόντων + " 1x πιστευόντων, + " 2x πιστεύει + " 1x πιστεύει, + " 3x πιστεύειν + " 2x πιστεύειν, + " 4x πιστεύεις + " 1x πιστεύεις, + " 1x πιστεύεις. + " 1x πιστεύεις; + " 4x πιστεύετέ + " 1x πιστεύεται + " 4x πιστεύετε + " 5x πιστεύετε, + " 4x πιστεύετε. + " 1x πιστεύετε; + " 2x πιστεύετε· + " 3x πιστεύητε + " 1x πιστεύητε, + " 1x πιστεύητε. + " 4x πιστεύομεν + " 1x πιστεύομεν, + " 1x πιστεύομεν· + " 1x πιστεύοντα + " 2x πιστεύοντας + " 1x πιστεύοντας. + " 1x πιστεύοντας· + " 6x πιστεύοντες + " 1x πιστεύοντι + " 1x πιστεύοντι, + " 2x πιστεύοντι. + " 9x πιστεύουσιν + " 4x πιστεύουσιν. + " 1x πιστεύουσιν· + " 1x πιστεύσαντας + " 5x πιστεύσαντες + " 1x πιστεύσαντες, + " 1x πιστεύσαντες. + " 1x πιστεύσαντες; + " 2x πιστεύσας + " 1x πιστεύσασα + " 2x πιστεύσασιν + " 1x πιστεύσασιν, + " 1x πιστεύσει; + " 2x πιστεύσετε; + " 2x πιστεύσητε + " 1x πιστεύσητε, + " 2x πιστεύσητε. + " 3x πιστεύσητε· + " 1x πιστεύσομεν + " 1x πιστεύσουσιν + " 1x πιστεύσω + " 1x πιστεύσω. + " 1x πιστεύσωμέν + " 1x πιστεύσωμεν + " 1x πιστεύσωμεν. + " 3x πιστεύσωσιν + " 1x πιστεύσωσιν, + " 2x πιστεύσῃς + " 1x πιστεύω + " 1x πιστεύω. + " 24x πιστεύων + " 2x πιστεύῃ + " 4x πιστεῦσαι + " 1x πιστεῦσαι, + " 1x πιστεῦσαι. + " 2x πιστικῆς + " 1x πιστοί + " 1x πιστοί. + " 5x πιστοὶ + " 2x πιστοὺς + " 4x πιστοῖς + " 2x πιστοῦ + " 1x πιστόν + " 4x πιστός + " 3x πιστός, + " 1x πιστός. + " 1x πιστὰς + " 1x πιστὴ + " 1x πιστὴν + " 4x πιστὸν + " 20x πιστὸς + " 1x πιστῆς + " 1x πιστῶν + " 1x πιστῶν. + " 4x πιστῷ + " 1x πιότητος + " 1x πιὼν + " 1x πλάκες + " 1x πλάνη + " 4x πλάνης + " 1x πλάνης, + " 1x πλάνης. + " 2x πλάνοι + " 1x πλάνοις + " 2x πλάνος + " 3x πλάνῃ + " 1x πλάσαντι + " 1x πλάσμα + " 3x πλάτος + " 1x πλάτος. + " 1x πλέγμασιν + " 3x πλέξαντες + " 4x πλέον + " 1x πλέοντας + " 1x πλέων + " 1x πλήθει + " 1x πλήθη + " 2x πλήθους + " 2x πλήθους, + " 2x πλήκτην, + " 3x πλήρεις + " 2x πλήρεις. + " 2x πλήρη + " 9x πλήρης + " 11x πλήρωμα + " 1x πλήσας + " 1x πλανάτω + " 1x πλανήσουσιν + " 2x πλανήσουσιν. + " 1x πλανήσῃ + " 2x πλανήσῃ. + " 1x πλανηθῆτε· + " 2x πλανηθῇ + " 1x πλανωμένοις, + " 1x πλανώμενοι + " 2x πλανώμενοι, + " 1x πλανώμενοι. + " 1x πλανώμενον; + " 1x πλανώντων + " 1x πλανᾶσθε + " 2x πλανᾶσθε, + " 1x πλανᾶσθε. + " 2x πλανᾶσθε· + " 3x πλανᾷ + " 1x πλανῆσαι + " 1x πλανῆσαι, + " 1x πλανῆται, + " 1x πλανῶμεν + " 2x πλανῶν + " 1x πλανῶνται + " 1x πλανῶντες + " 2x πλαξὶν + " 1x πλαστοῖς + " 2x πλατείαις + " 5x πλατείας + " 1x πλατειῶν + " 2x πλατεῖα + " 1x πλατύνθητε + " 1x πλατύνουσιν + " 1x πλείονές + " 6x πλείονα + " 5x πλείονας + " 1x πλείονας. + " 2x πλείονες + " 1x πλείονες, + " 1x πλείονος + " 2x πλείοσιν + " 9x πλείους + " 1x πλείω + " 3x πλειόνων + " 2x πλειόνων, + " 1x πλεονάζει + " 2x πλεονάζοντα + " 1x πλεονάσαι + " 1x πλεονάσασα + " 1x πλεονάσῃ + " 1x πλεονάσῃ; + " 1x πλεονέκται, + " 1x πλεονέκταις + " 1x πλεονέκτης + " 1x πλεονέκτης, + " 1x πλεονεκτεῖν + " 1x πλεονεκτηθῶμεν + " 1x πλεονεξία + " 1x πλεονεξίαι, + " 1x πλεονεξίαν + " 1x πλεονεξίαν. + " 1x πλεονεξίας + " 2x πλεονεξίας, + " 2x πλεονεξίᾳ + " 1x πλεονεξίᾳ. + " 1x πλευράν + " 4x πλευρὰν + " 1x πλεόντων + " 1x πλεῖν + " 13x πλεῖον + " 1x πλεῖον, + " 1x πλεῖον· + " 1x πλεῖσται + " 1x πλεῖστον + " 1x πλεῖστος + " 1x πλεῖστος, + " 3x πλεῖόν + " 2x πληγαὶ + " 2x πληγαῖς + " 1x πληγαῖς, + " 6x πληγὰς + " 3x πληγὴ + " 1x πληγὴν + " 1x πληγῆς + " 1x πληγῇ + " 3x πληγῶν + " 2x πληγῶν, + " 1x πληθυνεῖ + " 1x πληθυνθείη + " 2x πληθυνθείη. + " 1x πληθυνθῆναι + " 1x πληθυνόντων + " 1x πληθυνῶ + " 1x πληθύνων + " 1x πλημμύρης + " 1x πληρουμένου. + " 1x πληροφορίαν + " 1x πληροφορίας + " 2x πληροφορίᾳ + " 1x πληροφορείσθω. + " 1x πληροφορηθεὶς + " 1x πληροφορηθῇ + " 1x πληροφόρησον. + " 1x πληρούμενον + " 1x πληροῖς. + " 1x πληροῦν + " 1x πληροῦσθε + " 1x πληρωθέντων + " 1x πληρωθήσεται + " 1x πληρωθήσονται + " 1x πληρωθείσης + " 2x πληρωθῆναι + " 2x πληρωθῆτε + " 18x πληρωθῇ + " 2x πληρωθῇ. + " 1x πληρωθῶ, + " 5x πληρωθῶσιν + " 2x πληρώματα + " 1x πληρώματι + " 3x πληρώματος + " 1x πληρώσαι + " 1x πληρώσαντες + " 1x πληρώσατέ + " 1x πληρώσατε + " 1x πληρώσει + " 1x πληρώσεις + " 2x πληρώσῃ + " 2x πληρῶσαι + " 1x πληρῶσαι· + " 15x πλησίον + " 2x πλησίον; + " 1x πλησθήσεται + " 2x πλησθεὶς + " 1x πλησθῆναι + " 1x πλησθῇς + " 1x πλησμονὴν + " 9x πλοίου + " 1x πλοίου, + " 2x πλοίου. + " 1x πλοίων + " 1x πλοίων, + " 11x πλοίῳ + " 2x πλοίῳ, + " 1x πλοίῳ. + " 2x πλοιάρια + " 2x πλοιάριον + " 1x πλοιαρίῳ + " 1x πλουσίοις + " 1x πλουσίοις, + " 1x πλουσίου + " 1x πλουσίου· + " 2x πλουσίους + " 1x πλουσίους, + " 1x πλουσίους. + " 3x πλουσίως + " 1x πλουσίως, + " 1x πλουτήσαντες + " 1x πλουτήσητε. + " 1x πλουτήσῃς, + " 1x πλουτίζοντες, + " 2x πλουτεῖν + " 1x πλουτιζόμενοι + " 1x πλουτοῦντας + " 1x πλουτῶν + " 1x πλουτῶν. + " 3x πλούσιοι + " 1x πλούσιοι, + " 3x πλούσιον + " 10x πλούσιος + " 1x πλούσιος, + " 1x πλούσιος· + " 6x πλούτου + " 1x πλοὸς + " 5x πλοῖα + " 1x πλοῖα, + " 23x πλοῖον + " 6x πλοῖον, + " 3x πλοῖον. + " 1x πλοῖον· + " 1x πλοῦν + " 1x πλοῦν. + " 3x πλοῦτον + " 12x πλοῦτος + " 1x πλοῦτος. + " 1x πλύνοντες + " 30x πλὴν + " 22x πλῆθος + " 1x πλῆθος, + " 2x πλῆθος. + " 1x πνέοντα, + " 1x πνέοντος + " 1x πνέῃ + " 1x πνεούσῃ + " 8x πνευμάτων + " 2x πνευμάτων, + " 1x πνευματικά, + " 1x πνευματικαῖς + " 1x πνευματικαῖς, + " 1x πνευματικοὶ + " 3x πνευματικοῖς + " 3x πνευματικόν. + " 1x πνευματικός + " 1x πνευματικός, + " 3x πνευματικὰ + " 1x πνευματικὰς + " 4x πνευματικὸν + " 2x πνευματικὸς + " 1x πνευματικῆς + " 1x πνευματικῇ + " 1x πνευματικῇ, + " 1x πνευματικῶν, + " 2x πνευματικῶς + " 2x πνεύμασι + " 3x πνεύμασιν + " 3x πνεύματί + " 14x πνεύματα + " 1x πνεύματα, + " 26x πνεύματι + " 9x πνεύματι, + " 1x πνεύματι. + " 2x πνεύματι· + " 11x πνεύματος + " 3x πνεύματος, + " 1x πνεύματος. + " 1x πνεύματος· + " 1x πνεύματός + " 1x πνεῖ, + " 8x πνεῦμά + " 49x πνεῦμα + " 2x πνεῦμα, + " 3x πνεῦμα. + " 1x πνικτοῦ + " 1x πνικτὸν + " 1x πνικτῶν + " 1x πνοὴν + " 1x πνοῆς + " 5x ποία + " 1x ποίαν + " 2x ποίας + " 2x ποίει + " 1x ποίει, + " 1x ποίημα, + " 4x ποίησον + " 1x ποίησον· + " 1x ποίησόν + " 1x ποίμνη, + " 2x ποίμνην + " 1x ποίμνης + " 1x ποίμνης· + " 1x ποίμνιον + " 1x ποίμνιον· + " 1x ποίου + " 12x ποίᾳ + " 5x ποίῳ + " 1x ποδήρη + " 1x ποδός, + " 19x ποδῶν + " 1x ποιήμασιν + " 1x ποιήσαιεν + " 6x ποιήσαντες + " 3x ποιήσαντι + " 20x ποιήσας + " 1x ποιήσασαν. + " 1x ποιήσασθαι + " 8x ποιήσατε + " 2x ποιήσατε. + " 13x ποιήσει + " 2x ποιήσει, + " 3x ποιήσει. + " 2x ποιήσεις + " 1x ποιήσεις. + " 1x ποιήσετε, + " 1x ποιήσετε. + " 1x ποιήσητε + " 2x ποιήσομεν + " 1x ποιήσομεν, + " 1x ποιήσομεν. + " 6x ποιήσουσιν + " 12x ποιήσω + " 6x ποιήσω, + " 1x ποιήσω. + " 3x ποιήσω; + " 2x ποιήσω· + " 4x ποιήσωμεν + " 1x ποιήσωμεν, + " 2x ποιήσωμεν; + " 1x ποιήσων + " 1x ποιήσωσιν + " 1x ποιήσωσιν. + " 2x ποιήσωσιν· + " 8x ποιήσῃ + " 1x ποιήσῃ. + " 1x ποιήσῃς + " 1x ποιείτω. + " 1x ποιείτω· + " 17x ποιεῖ + " 6x ποιεῖ, + " 4x ποιεῖ. + " 1x ποιεῖ; + " 1x ποιεῖ· + " 15x ποιεῖν + " 2x ποιεῖν, + " 4x ποιεῖν. + " 2x ποιεῖν; + " 4x ποιεῖς + " 3x ποιεῖς, + " 4x ποιεῖς; + " 2x ποιεῖς· + " 1x ποιεῖσθαι + " 1x ποιεῖσθαι. + " 1x ποιεῖσθαι· + " 1x ποιεῖσθε + " 1x ποιεῖται + " 24x ποιεῖτε + " 2x ποιεῖτε, + " 4x ποιεῖτε. + " 2x ποιεῖτε; + " 3x ποιεῖτε· + " 1x ποιησάμενοι· + " 2x ποιησάμενος + " 2x ποιησάτω + " 1x ποιησόμεθα. + " 1x ποιητής, + " 2x ποιηταὶ + " 2x ποιητὴς + " 1x ποιητῶν + " 5x ποικίλαις + " 2x ποικίλαις, + " 1x ποικίλης + " 1x ποικίλοις + " 1x ποικίλοις, + " 1x ποιμάνατε + " 1x ποιμένα + " 3x ποιμένα, + " 1x ποιμένα. + " 1x ποιμένας + " 3x ποιμένες + " 1x ποιμένων + " 1x ποιμήν + " 1x ποιμήν, + " 1x ποιμήν. + " 1x ποιμαίνει + " 2x ποιμαίνειν + " 1x ποιμαίνοντα, + " 1x ποιμαίνοντες, + " 4x ποιμανεῖ + " 1x ποιμνίου, + " 1x ποιμνίου· + " 1x ποιμνίῳ, + " 4x ποιμὴν + " 1x ποιούμενοι + " 4x ποιούμενος + " 1x ποιούμενος, + " 2x ποιοῦμαι + " 2x ποιοῦμεν + " 1x ποιοῦμεν, + " 1x ποιοῦμεν. + " 6x ποιοῦν + " 3x ποιοῦντα + " 2x ποιοῦντα· + " 1x ποιοῦνται, + " 2x ποιοῦντας + " 1x ποιοῦντας, + " 5x ποιοῦντες + " 2x ποιοῦντες. + " 1x ποιοῦντι + " 1x ποιοῦντι, + " 1x ποιοῦντος + " 5x ποιοῦσιν + " 2x ποιοῦσιν, + " 3x ποιοῦσιν. + " 2x ποιοῦσιν; + " 36x ποιῆσαι + " 4x ποιῆσαι, + " 6x ποιῆσαι. + " 1x ποιῆσαι; + " 3x ποιῆτε + " 2x ποιῆτε, + " 2x ποιῆτε. + " 1x ποιῇ + " 2x ποιῇ, + " 2x ποιῇς + " 2x ποιῇς, + " 1x ποιῇς; + " 12x ποιῶ + " 5x ποιῶ, + " 6x ποιῶ. + " 1x ποιῶ· + " 1x ποιῶμεν + " 1x ποιῶμεν. + " 26x ποιῶν + " 1x ποιῶν, + " 3x ποιῶσιν + " 1x ποιῶσιν, + " 3x πολέμους + " 1x πολέμων, + " 1x πολέμων· + " 1x πολέμῳ, + " 1x πολίτευμα + " 1x πολίτην + " 1x πολίτης· + " 1x πολεμήσουσιν + " 1x πολεμήσω + " 1x πολεμεῖ. + " 1x πολεμεῖτε. + " 2x πολεμῆσαι + " 1x πολιτάρχας + " 1x πολιτάρχας, + " 1x πολιτείαν + " 1x πολιτείας + " 1x πολιτεύεσθε, + " 1x πολιτῶν + " 4x πολλά + " 4x πολλά, + " 5x πολλά. + " 2x πολλά· + " 14x πολλάκις + " 3x πολλάκις, + " 1x πολλάκις. + " 2x πολλάς + " 1x πολλάς· + " 2x πολλή + " 1x πολλή· + " 2x πολλήν, + " 1x πολλαί + " 2x πολλαί, + " 2x πολλαπλασίονα + " 3x πολλαὶ + " 2x πολλαῖς + " 1x πολλαῖς, + " 1x πολλαῖς. + " 4x πολλοί + " 10x πολλοί, + " 3x πολλοί. + " 1x πολλούς + " 3x πολλούς, + " 2x πολλούς· + " 61x πολλοὶ + " 1x πολλοὶ, + " 17x πολλοὺς + " 5x πολλοῖς + " 2x πολλοῖς. + " 7x πολλοῦ + " 43x πολλὰ + " 8x πολλὰς + " 1x πολλὴ + " 7x πολλὴν + " 8x πολλῆς + " 1x πολλῆς. + " 1x πολλῆς· + " 6x πολλῇ + " 2x πολλῇ, + " 29x πολλῶν + " 5x πολλῶν, + " 4x πολλῶν. + " 20x πολλῷ + " 1x πολυλογίᾳ + " 1x πολυποίκιλος + " 1x πολυτίμου + " 1x πολυτελές. + " 1x πολυτελεῖ, + " 1x πολυτελοῦς· + " 1x πολυτιμότερον + " 1x πολυτρόπως + " 3x πολύ, + " 2x πολύ· + " 1x πολύν, + " 2x πολύς + " 6x πολύς, + " 3x πολύς. + " 1x πολύς· + " 1x πολύσπλαγχνός + " 1x πολύτιμον + " 16x πολὺ + " 2x πολὺ, + " 8x πολὺν + " 14x πολὺς + " 1x πολῖται + " 3x πονηρά + " 1x πονηρά. + " 1x πονηρέ, + " 1x πονηρίαι, + " 1x πονηρίαν + " 1x πονηρίας + " 1x πονηρίας, + " 1x πονηρίας. + " 1x πονηρίᾳ + " 1x πονηραί + " 1x πονηραί, + " 1x πονηριῶν + " 1x πονηροί, + " 1x πονηρούς + " 1x πονηρούς. + " 4x πονηροὶ + " 5x πονηροὺς + " 1x πονηροῖς + " 1x πονηροῖς, + " 1x πονηροῖς. + " 8x πονηροῦ + " 1x πονηροῦ, + " 3x πονηροῦ. + " 2x πονηρόν, + " 3x πονηρόν. + " 1x πονηρόν· + " 1x πονηρός + " 1x πονηρός, + " 2x πονηρότερα + " 9x πονηρὰ + " 1x πονηρὲ + " 5x πονηρὸν + " 1x πονηρὸν, + " 6x πονηρὸς + " 1x πονηρᾶς + " 1x πονηρᾷ + " 1x πονηρᾷ. + " 3x πονηρῶν + " 2x πονηρῶν, + " 1x πονηρῶν; + " 1x πονηρῷ + " 1x πονηρῷ· + " 1x πορείαις + " 1x πορείαν + " 8x πορευθέντες + " 1x πορευθέντι + " 8x πορευθεὶς + " 1x πορευθεῖσα + " 1x πορευθεῖσαι + " 1x πορευθῆναι + " 1x πορευθῆναι, + " 1x πορευθῆτε + " 1x πορευθῇ + " 1x πορευθῶ + " 1x πορευθῶ, + " 1x πορευθῶσιν + " 1x πορευομένη + " 1x πορευομένοις + " 2x πορευομένου + " 1x πορευομένους + " 1x πορευομένους· + " 3x πορευομένων + " 1x πορευομένῳ + " 1x πορευσόμεθα + " 6x πορευόμενοι + " 1x πορευόμενοι, + " 2x πορευόμενον + " 3x πορευόμενος + " 11x πορεύεσθαι + " 4x πορεύεσθαι, + " 2x πορεύεσθαι. + " 4x πορεύεσθε + " 3x πορεύεται + " 4x πορεύεται, + " 1x πορεύθητι + " 7x πορεύομαι + " 1x πορεύομαι· + " 10x πορεύου + " 1x πορεύου, + " 1x πορεύου· + " 1x πορεύσεται + " 1x πορεύσομαι + " 1x πορεύσομαι. + " 1x πορεύσονται. + " 1x πορεύσῃ. + " 1x πορεύωμαι + " 1x πορεύωμαι. + " 1x πορθήσας + " 1x πορισμὸν + " 1x πορισμὸς + " 1x πορνεία + " 2x πορνεία, + " 1x πορνείαν, + " 2x πορνείαν. + " 10x πορνείας + " 1x πορνείας, + " 1x πορνείας· + " 4x πορνείᾳ + " 1x πορνεύσαντες + " 1x πορνεύωμεν, + " 1x πορνεύων + " 2x πορνεῖαι, + " 1x πορνεῦσαι + " 1x πορνεῦσαι. + " 1x πορνῶν + " 1x πορρώτερον + " 4x πορφυροῦν + " 1x πορφυρόπωλις + " 3x πορφύραν + " 1x πορφύρας + " 3x ποσάκις + " 1x ποσίν + " 1x ποσίν, + " 3x ποσὶν + " 2x ποτέ + " 1x ποτέ, + " 1x ποτέ; + " 1x ποτέ· + " 23x ποτήριον + " 1x ποτήριόν + " 1x ποτίζει; + " 1x ποτίζων + " 1x ποτίζων, + " 2x ποτίσῃ + " 1x ποταμοφόρητον + " 3x ποταμοὶ + " 1x ποταμοὺς + " 1x ποταμοῦ + " 1x ποταμόν, + " 1x ποταμός, + " 4x ποταμὸν + " 1x ποταμὸς + " 1x ποταμῶν + " 1x ποταμῶν, + " 3x ποταμῷ + " 1x ποταπαὶ + " 1x ποταποὶ + " 1x ποταποὺς + " 1x ποταπὴ + " 1x ποταπὴν + " 1x ποταπὸς + " 44x ποτε + " 1x ποτε, + " 1x ποτε. + " 4x ποτηρίου + " 1x ποτηρίων + " 2x ποτηρίῳ + " 3x ποτὲ + " 3x που + " 1x πού + " 3x πούς + " 4x ποῖον + " 31x ποῦ + " 1x ποῦ; + " 1x πράγματι + " 1x πράγματι. + " 1x πράγματι· + " 1x πράγματος + " 1x πράκτορι, + " 1x πράκτωρ + " 1x πράξαντες + " 1x πράξας; + " 1x πράξει + " 2x πράξεις + " 1x πράξεσιν + " 1x πράξετε. + " 1x πράξῃς + " 1x πράσσει + " 1x πράσσειν + " 3x πράσσειν. + " 1x πράσσεις + " 1x πράσσετε. + " 1x πράσσετε· + " 1x πράσσοντας + " 2x πράσσοντας. + " 2x πράσσοντες + " 1x πράσσοντι. + " 1x πράσσουσιν, + " 1x πράσσουσιν. + " 3x πράσσω, + " 1x πράσσω. + " 1x πράσσων + " 1x πράσσῃς· + " 3x πρέπει + " 2x πρέπον + " 1x πραέως + " 1x πραΰς + " 1x πραΰτης, + " 1x πραΰτητα + " 1x πραΰτητα, + " 3x πραΰτητι + " 2x πραΰτητος + " 2x πραΰτητος, + " 1x πραΰτητος; + " 2x πραγμάτων + " 2x πραγμάτων, + " 1x πραγματείαις, + " 1x πραεῖς, + " 1x πραθὲν + " 3x πραθῆναι + " 2x πραιτωρίῳ + " 3x πραιτώριον + " 1x πραιτώριον, + " 1x πραιτώριον· + " 2x πραξάντων + " 2x πρασιαὶ + " 1x πραϋπαθίαν. + " 1x πραῢς + " 2x πρεσβείαν + " 1x πρεσβεύομεν + " 1x πρεσβεύω + " 1x πρεσβυτέρας + " 1x πρεσβυτέριον + " 1x πρεσβυτέριον· + " 3x πρεσβυτέροις + " 1x πρεσβυτέροις, + " 1x πρεσβυτέροις· + " 1x πρεσβυτέρου + " 9x πρεσβυτέρους + " 2x πρεσβυτέρους, + " 15x πρεσβυτέρων + " 4x πρεσβυτέρων, + " 1x πρεσβυτέρων. + " 1x πρεσβυτέρων; + " 1x πρεσβυτέρων· + " 1x πρεσβυτερίου. + " 1x πρεσβύτας + " 17x πρεσβύτεροι + " 2x πρεσβύτεροι, + " 2x πρεσβύτεροι. + " 3x πρεσβύτερος + " 2x πρεσβύτης + " 1x πρεσβύτιδας + " 1x πρηνὴς + " 2x προΐστασθαι + " 1x προάγει + " 2x προάγειν + " 3x προάγοντες + " 1x προάγουσαι + " 1x προάγουσιν + " 2x προάγων + " 2x προάξω + " 1x προέγνω, + " 1x προέγνω. + " 1x προέγραψα + " 1x προέδραμεν + " 1x προέδωκεν + " 2x προέθετο + " 1x προέκοπτεν + " 1x προέκοπτον + " 1x προέκοψεν, + " 1x προέλαβεν + " 1x προέλθωσιν + " 1x προέπεμπον + " 1x προέτειναν + " 1x προέφθασεν + " 1x προήγαγον + " 1x προήρχετο + " 2x προαγαγεῖν + " 1x προαγαγὼν + " 1x προαγούσας + " 1x προαγούσης + " 1x προαύλιον· + " 1x προβάλωσιν + " 2x προβάτιά + " 1x προβάτου. + " 4x προβάτων + " 4x προβάτων. + " 1x προβάτων· + " 1x προβαλόντων + " 1x προβατικῇ + " 2x προβεβηκυῖα + " 1x προβεβηκότες + " 1x προβιβασθεῖσα + " 1x προβλεψαμένου, + " 2x προβὰς + " 1x προγεγονότων + " 1x προγεγραμμένοι + " 1x προγινώσκοντές + " 1x προγινώσκοντες + " 1x προγνώσει + " 1x προγόνοις· + " 1x προγόνων + " 1x προδραμὼν + " 1x προδόται + " 1x προδόται, + " 1x προδότης, + " 1x προείπαμεν + " 4x προείρηκα + " 1x προείρηκεν + " 1x προείρηται + " 1x προεγνωσμένου + " 1x προεγράφη + " 1x προεγράφη, + " 1x προεθέμην + " 1x προειρήκαμεν, + " 2x προειρημένων + " 1x προελέγομεν + " 1x προελεύσεται + " 2x προελθόντες + " 2x προελθὼν + " 1x προενήρξασθε + " 1x προενήρξατο + " 1x προεπηγγείλατο + " 1x προεπηγγελμένην + " 1x προεστῶτες + " 1x προευηγγελίσατο + " 1x προεχειρίσατό + " 1x προεχόμεθα; + " 1x προεωρακότες + " 1x προεῖπεν + " 1x προεῖπον + " 1x προηγούμενοι, + " 1x προηκούσατε + " 1x προηλπικότας + " 1x προημαρτηκόσιν + " 1x προημαρτηκότων + " 2x προητοίμασεν + " 1x προθέσει + " 1x προθέσει, + " 4x προθέσεως + " 1x προθεσμίας + " 2x προθυμία + " 2x προθυμίαν + " 1x προθυμίας, + " 1x προθύμως, + " 1x προκαλούμενοι, + " 1x προκατήγγειλεν + " 1x προκαταγγείλαντας + " 1x προκαταρτίσωσιν + " 1x προκείμενον + " 2x προκειμένης + " 1x προκεκυρωμένην + " 1x προκεχειρισμένον + " 1x προκεχειροτονημένοις + " 1x προκηρύξαντος + " 1x προκοπὴ + " 2x προκοπὴν + " 1x προκρίματος, + " 3x προκόψουσιν + " 1x προλέγω + " 1x προλέγω, + " 1x προλαμβάνει + " 1x προλημφθῇ + " 1x προμαρτυρόμενον + " 1x προμελετᾶν + " 1x προμεριμνᾶτε + " 1x προνοίας, + " 1x προνοεῖ, + " 1x προνοούμενοι + " 1x προνοοῦμεν + " 1x προορίσας + " 1x προορισθέντες + " 1x προπάτορα + " 1x προπέμψας + " 1x προπέμψατε + " 1x προπέμψητε + " 1x προπαθόντες + " 1x προπεμπόντων + " 1x προπεμφθέντες + " 2x προπεμφθῆναι + " 1x προπετεῖς, + " 1x προπετὲς + " 1x προπορεύσονται + " 1x προπορεύσῃ + " 1x προσάββατον, + " 1x προσάγαγε + " 1x προσάγειν + " 3x προσέθετο + " 1x προσέθηκεν + " 2x προσέκοψαν + " 2x προσένεγκε + " 1x προσένεγκον + " 1x προσέπεσαν + " 5x προσέπεσεν + " 1x προσέπιπτον + " 2x προσέρηξεν + " 1x προσέρχεσθαι + " 1x προσέρχεται + " 2x προσέρχονται + " 1x προσέσχηκεν + " 5x προσέταξεν + " 1x προσέφερεν + " 2x προσέφερον + " 4x προσέχειν + " 5x προσέχετε + " 1x προσέχοντας, + " 3x προσέχοντες + " 1x προσήλυτοι, + " 1x προσήλυτον + " 1x προσήλυτον, + " 1x προσήνεγκα + " 7x προσήνεγκαν + " 4x προσήνεγκεν + " 1x προσήρχοντο + " 1x προσήχθη + " 1x προσαίτης + " 1x προσαίτης, + " 1x προσαγάγῃ + " 1x προσαγαγόντες + " 1x προσαγορευθεὶς + " 3x προσαγωγὴν + " 1x προσαιτῶν; + " 1x προσανάβηθι + " 1x προσανέθεντο, + " 1x προσαναπληροῦσα + " 1x προσανεθέμην + " 1x προσανεπλήρωσαν + " 1x προσαπειλησάμενοι + " 1x προσδέξησθε + " 1x προσδέχεσθε + " 1x προσδέχεται + " 1x προσδέχονται, + " 1x προσδαπανήσῃς + " 1x προσδεξάμενοι + " 2x προσδεχομένοις + " 3x προσδεχόμενοι + " 2x προσδεχόμενος + " 1x προσδεόμενός + " 2x προσδοκίας + " 1x προσδοκώντων + " 2x προσδοκᾷ + " 1x προσδοκῶμεν, + " 3x προσδοκῶμεν; + " 3x προσδοκῶν + " 1x προσδοκῶντας + " 3x προσδοκῶντες + " 2x προσδραμὼν + " 1x προσεδέξασθε, + " 1x προσεδέχετο + " 1x προσεδόκων + " 1x προσεκαλέσατο + " 1x προσεκλίθη + " 1x προσεκληρώθησαν + " 1x προσεκύλισεν + " 4x προσεκύνει + " 9x προσεκύνησαν + " 1x προσεκύνησαν, + " 1x προσεκύνησαν. + " 1x προσεκύνησαν· + " 3x προσεκύνησεν + " 1x προσεκύνησεν. + " 1x προσεκύνουν + " 1x προσελάβετο + " 1x προσελάβετο. + " 3x προσελάβοντο + " 2x προσεληλύθατε + " 2x προσελθοῦσα + " 1x προσελθοῦσαι + " 16x προσελθόντες + " 1x προσελθόντων + " 24x προσελθὼν + " 1x προσενέγκαι + " 2x προσενέγκας + " 1x προσενέγκῃ. + " 1x προσενήνοχεν + " 1x προσενεχθεὶς + " 1x προσεποιήσατο + " 2x προσερχομένου + " 2x προσερχομένους + " 2x προσερχόμενοι, + " 1x προσερχόμενον + " 2x προσερχώμεθα + " 2x προσετέθη + " 1x προσετέθη, + " 1x προσετέθησαν + " 1x προσετίθει + " 1x προσετίθεντο + " 5x προσευξάμενοι + " 1x προσευξάμενος, + " 1x προσευξάσθωσαν + " 1x προσευξώμεθα + " 1x προσευχάς, + " 1x προσευχάς· + " 1x προσευχέσθω + " 1x προσευχέσθω· + " 1x προσευχαί + " 1x προσευχαὶ + " 4x προσευχαῖς + " 1x προσευχαῖς, + " 1x προσευχαῖς. + " 1x προσευχομένη + " 2x προσευχομένου + " 1x προσευχόμεθα + " 4x προσευχόμενοι + " 4x προσευχόμενοι, + " 1x προσευχόμενοι. + " 2x προσευχόμενον + " 1x προσευχόμενον, + " 3x προσευχόμενος + " 1x προσευχόμενος, + " 1x προσευχόμενος. + " 1x προσευχὰς + " 2x προσευχὴ + " 1x προσευχὴν + " 1x προσευχὴν, + " 4x προσευχῆς + " 1x προσευχῆς, + " 1x προσευχῆς· + " 9x προσευχῇ + " 1x προσευχῇ. + " 5x προσευχῶν + " 1x προσεφώνει + " 4x προσεφώνησεν + " 1x προσεύξασθαι + " 2x προσεύξασθαι, + " 3x προσεύξασθαι. + " 1x προσεύξηται· + " 2x προσεύξομαι + " 2x προσεύξωμαι. + " 3x προσεύχεσθαι + " 2x προσεύχεσθαι, + " 1x προσεύχεσθαι; + " 8x προσεύχεσθε + " 5x προσεύχεσθε, + " 2x προσεύχεται, + " 2x προσεύχησθε, + " 1x προσεύχομαι, + " 1x προσεύχονται· + " 1x προσεύχωμαι + " 1x προσεύχῃ, + " 3x προσεῖχον + " 1x προσεῶντος + " 1x προσηλύτων + " 1x προσηλώσας + " 1x προσηνέγκατέ + " 2x προσηνέχθη + " 1x προσηνέχθησαν + " 1x προσηργάσατο + " 1x προσηύξαντο + " 4x προσηύξατο + " 2x προσηύξατο, + " 1x προσηύξατο. + " 3x προσηύχετο + " 1x προσηύχετο. + " 1x προσηύχετο· + " 1x προσθεὶς + " 2x προσθεῖναι + " 1x προσκέκλημαι + " 1x προσκέκληται + " 1x προσκαλέσηται + " 2x προσκαλεσάμενοι + " 18x προσκαλεσάμενος + " 2x προσκαλεσάμενός + " 1x προσκαλεσάσθω + " 2x προσκαλεῖται + " 1x προσκαρτερήσει + " 1x προσκαρτερήσομεν. + " 1x προσκαρτερεῖτε, + " 1x προσκαρτερούντων + " 3x προσκαρτεροῦντες + " 1x προσκαρτεροῦντες, + " 1x προσκαρτεροῦντες. + " 1x προσκαρτερῇ + " 1x προσκαρτερῶν + " 1x προσκεφάλαιον + " 1x προσκολληθήσεται + " 1x προσκοπήν, + " 1x προσκυλίσας + " 1x προσκυνήσατε + " 1x προσκυνήσει + " 1x προσκυνήσεις + " 1x προσκυνήσετε + " 7x προσκυνήσουσιν + " 1x προσκυνήσω + " 2x προσκυνήσων + " 2x προσκυνήσωσιν + " 2x προσκυνήσῃς + " 1x προσκυνεῖ + " 2x προσκυνεῖν + " 1x προσκυνεῖν. + " 1x προσκυνεῖτε + " 1x προσκυνησάτωσαν + " 1x προσκυνηταὶ + " 1x προσκυνοῦμεν + " 5x προσκυνοῦντας + " 1x προσκυνοῦντες + " 1x προσκυνοῦσα + " 3x προσκυνῆσαι + " 3x προσκόμματος + " 1x προσκόμματος, + " 2x προσκόπτει, + " 1x προσκόπτει. + " 1x προσκόπτουσιν + " 2x προσκόψῃς + " 1x προσκύνησον. + " 1x προσκύνησον· + " 1x προσλαβοῦ + " 1x προσλαβόμενοι + " 1x προσλαβόμενοι. + " 2x προσλαβόμενος + " 1x προσλαλοῦντες + " 1x προσλαλῆσαι· + " 1x προσλαμβάνεσθε + " 1x προσλαμβάνεσθε, + " 1x προσμένει + " 2x προσμένειν + " 2x προσμένουσίν + " 1x προσμείνας + " 1x προσμεῖναι + " 1x προσοφείλεις. + " 1x προσπήξαντες + " 1x προσπεσοῦσα + " 1x προσπορεύονται + " 1x προστάτις + " 3x προστεθήσεται + " 1x προστεθῆναι + " 1x προστεταγμένα + " 1x προστεταγμένους + " 1x προστρέχοντες + " 1x προστῆναι + " 1x προσφάγιον + " 1x προσφάτως + " 1x προσφέρει + " 3x προσφέρειν + " 1x προσφέρεται + " 1x προσφέρονται + " 1x προσφέρονται, + " 1x προσφέροντες + " 1x προσφέρουσιν + " 1x προσφέρων + " 2x προσφέρῃ + " 1x προσφέρῃς + " 1x προσφερόμεναι, + " 1x προσφερόντων + " 1x προσφιλῆ, + " 1x προσφορά. + " 1x προσφοράς, + " 2x προσφορὰ + " 2x προσφορὰν + " 1x προσφορὰς + " 1x προσφορᾶς + " 1x προσφορᾷ + " 1x προσφωνοῦντα + " 1x προσφωνοῦσιν + " 1x προσψαύετε + " 1x προσωπολήμπτης + " 1x προσωπολημπτεῖτε, + " 2x προσωπολημψία + " 1x προσωπολημψία. + " 1x προσωπολημψίαις + " 1x προσωρμίσθησαν. + " 18x προσώπου + " 1x προσώπων + " 7x προσώπῳ + " 1x προσώχθισα + " 1x προσώχθισεν + " 1x προσῆλθάν + " 1x προσῆλθαν + " 8x προσῆλθεν + " 15x προσῆλθον + " 1x προτέραν + " 1x προτρεψάμενοι + " 5x προφάσει + " 2x προφέρει + " 9x προφήταις + " 1x προφήταις; + " 8x προφήτας + " 3x προφήτας, + " 2x προφήτας. + " 2x προφήτας· + " 8x προφήτην + " 1x προφήτην, + " 1x προφήτην; + " 21x προφήτης + " 1x προφήτης, + " 1x προφήτης. + " 1x προφήτης; + " 1x προφήτης· + " 20x προφήτου + " 1x προφήτου, + " 4x προφήτου. + " 1x προφήτου· + " 1x προφήτῃ + " 4x προφητεία + " 1x προφητεία, + " 1x προφητείαν + " 1x προφητείαν, + " 8x προφητείας + " 1x προφητείας, + " 1x προφητείας. + " 1x προφητείᾳ + " 2x προφητεύειν, + " 1x προφητεύητε. + " 1x προφητεύητε· + " 1x προφητεύομεν· + " 1x προφητεύουσα + " 1x προφητεύουσαι. + " 1x προφητεύσαντες, + " 2x προφητεύσουσιν + " 1x προφητεύσουσιν. + " 4x προφητεύων + " 1x προφητεύωσιν, + " 1x προφητεῖαι, + " 1x προφητεῦσαι + " 1x προφητικὸν + " 1x προφητικῶν + " 19x προφητῶν + " 7x προφητῶν, + " 6x προφητῶν. + " 15x προφῆται + " 2x προφῆται, + " 2x προφῆται. + " 1x προφῆται; + " 1x προφῆται· + " 1x προφῆτιν, + " 1x προφῆτις, + " 1x προχειρίσασθαί + " 1x προϊδοῦσα + " 1x προϊδὼν + " 1x προϊστάμενοι + " 1x προϊστάμενον, + " 1x προϊστάμενος + " 1x προϊσταμένους + " 1x προϋπῆρχεν + " 1x προϋπῆρχον + " 3x προώρισεν + " 1x προώρισεν, + " 1x προῃτιασάμεθα + " 1x προῄρηται + " 1x προῆγεν + " 2x προῆλθον + " 1x πρωΐ + " 2x πρωΐ· + " 1x πρωΐας + " 1x πρωτεύων, + " 1x πρωτοκαθεδρίαν + " 3x πρωτοκαθεδρίας + " 1x πρωτοκλισίαν + " 1x πρωτοκλισίαν, + " 3x πρωτοκλισίας + " 1x πρωτοστάτην + " 1x πρωτοτόκια + " 1x πρωτοτόκων + " 1x πρωτότοκα + " 2x πρωτότοκον + " 1x πρωτότοκον, + " 3x πρωτότοκος + " 1x πρωϊνόν. + " 1x πρωϊνός. + " 8x πρωῒ + " 22x πρόβατα + " 1x πρόβατα, + " 1x πρόβατα. + " 2x πρόβατον + " 1x πρόβατόν + " 1x πρόγνωσιν + " 1x πρόδηλα, + " 1x πρόδηλοί + " 1x πρόδηλον + " 1x πρόδρομος + " 4x πρόθεσιν + " 2x πρόθεσις + " 1x πρόθυμον + " 2x πρόθυμον, + " 1x πρόκεινται + " 1x πρόκειται, + " 1x πρόνοιαν + " 1x πρόπεμψον, + " 28x πρός + " 1x πρόσευξαι + " 1x πρόσεχε + " 1x πρόσκαιρα, + " 1x πρόσκαιροί + " 1x πρόσκαιρον + " 1x πρόσκαιρός + " 1x πρόσκλισιν. + " 2x πρόσκομμα + " 1x πρόσλημψις + " 1x πρόσπεινος + " 1x πρόσφατον + " 1x πρόσφερε + " 1x πρόσχυσιν + " 7x πρόσωπα + " 38x πρόσωπον + " 1x πρόσωπον, + " 1x πρόσωπον· + " 3x πρόσωπόν + " 6x πρότερον + " 3x πρότερον, + " 1x πρότερον; + " 1x πρόφασιν + " 1x πρόϊμον + " 1x πρύμνα + " 1x πρύμνης + " 1x πρύμνῃ + " 10x πρώτη + " 1x πρώτη, + " 1x πρώτη. + " 5x πρώτην + " 1x πρώτην· + " 3x πρώτης + " 1x πρώτης. + " 1x πρώτοις + " 1x πρώτοις, + " 2x πρώτου + " 2x πρώτους + " 1x πρώτους· + " 1x πρώτων + " 1x πρώτων, + " 5x πρώτων. + " 1x πρώτως + " 5x πρώτῃ + " 1x πρώτῃ· + " 4x πρώτῳ + " 10x πρὶν + " 43x πρὸ + " 670x πρὸς + " 2x πρᾶγμα + " 1x πρᾶγμα. + " 1x πρᾶξαι· + " 1x πρᾶξιν + " 1x πρᾶξιν, + " 1x πρῴρης + " 2x πρῶτα + " 8x πρῶτοι + " 1x πρῶτοι, + " 2x πρῶτοι. + " 53x πρῶτον + " 6x πρῶτον, + " 2x πρῶτον; + " 2x πρῶτον· + " 25x πρῶτος + " 2x πρῶτος, + " 1x πρῶτόν + " 3x πρῶτός + " 1x πρῷρα + " 1x πτέρναν + " 1x πτέρυγας + " 2x πτέρυγας, + " 1x πτέρυγες + " 1x πταίει, + " 1x πταίομεν + " 1x πταίσητέ + " 1x πταίσῃ + " 2x πτερύγιον + " 1x πτερύγων + " 1x πτηνῶν, + " 1x πτοηθέντες + " 1x πτοηθῆτε· + " 1x πτυρόμενοι + " 1x πτωχεία + " 1x πτωχείαν, + " 1x πτωχείᾳ + " 1x πτωχοί, + " 2x πτωχούς, + " 4x πτωχοὶ + " 6x πτωχοὺς + " 2x πτωχοῖς + " 4x πτωχοῖς, + " 1x πτωχοῖς. + " 1x πτωχοῖς; + " 1x πτωχοῖς· + " 1x πτωχόν. + " 1x πτωχὰ + " 3x πτωχὴ + " 1x πτωχὸν + " 3x πτωχὸς + " 2x πτωχῶν + " 1x πτωχῷ + " 1x πτόησιν. + " 1x πτύξας + " 2x πτύον + " 2x πτύσας + " 1x πτύσματος, + " 1x πτώματα + " 5x πτῶμα + " 1x πτῶμα, + " 1x πτῶσιν + " 1x πτῶσις + " 1x πυγμῇ + " 1x πυθόμενος + " 1x πυκνάς + " 1x πυκνότερον + " 1x πυκνὰ + " 1x πυκτεύω + " 1x πυλώνων + " 2x πυλῶνα + " 2x πυλῶνα, + " 3x πυλῶνας + " 6x πυλῶνες + " 1x πυλῶνος + " 1x πυλῶνος. + " 2x πυλῶσιν + " 1x πυνθάνεσθαι + " 1x πυνθάνομαι + " 1x πυράν, + " 1x πυρέσσουσα, + " 1x πυρέσσουσαν· + " 1x πυρί, + " 1x πυρί. + " 3x πυρί· + " 1x πυρίνους + " 1x πυρετοῖς + " 1x πυρετός, + " 1x πυρετός. + " 1x πυρετός· + " 1x πυρετῷ + " 1x πυρετῷ, + " 1x πυρούμενοι + " 1x πυροῦμαι; + " 1x πυροῦσθαι. + " 2x πυρράζει + " 1x πυρρός + " 1x πυρρός, + " 7x πυρός, + " 6x πυρός. + " 2x πυρός· + " 1x πυρώσει + " 2x πυρώσεως + " 1x πυρὰν + " 12x πυρὶ + " 13x πυρὸς + " 1x πωλήσας + " 1x πωλεῖ + " 1x πωλεῖται; + " 1x πωλησάτω + " 1x πωλούμενον + " 2x πωλούντων + " 1x πωλοῦνται + " 4x πωλοῦντας + " 1x πωλοῦντας, + " 1x πωλοῦντες + " 1x πωλοῦσιν + " 1x πωλῆσαι + " 1x πωρώσει + " 13x πως + " 1x πως, + " 3x πόδα + " 49x πόδας + " 2x πόδας, + " 1x πόδας. + " 1x πόδας.]] + " 1x πόδας; + " 1x πόδας· + " 7x πόδες + " 20x πόθεν + " 1x πόθεν. + " 20x πόλει + " 1x πόλει, + " 9x πόλεις + " 2x πόλεις, + " 1x πόλεις. + " 1x πόλεμοι + " 6x πόλεμον + " 2x πόλεμον, + " 1x πόλεμον. + " 1x πόλεμον; + " 1x πόλεμος + " 2x πόλεσιν + " 3x πόλεων + " 3x πόλεων. + " 24x πόλεως + " 10x πόλεως, + " 2x πόλεως. + " 44x πόλιν + " 12x πόλιν, + " 6x πόλιν. + " 1x πόλιν· + " 20x πόλις + " 2x πόλις, + " 1x πόμα· + " 1x πόμασιν + " 1x πόνον + " 1x πόνος + " 1x πόνου, + " 1x πόνων + " 2x πόρναι + " 3x πόρνη + " 1x πόρνην + " 1x πόρνην, + " 2x πόρνης + " 2x πόρνοι + " 2x πόρνοις + " 2x πόρνοις, + " 3x πόρνος + " 1x πόρνους + " 1x πόρνῃ + " 3x πόρρω + " 1x πόρρωθεν + " 1x πόρρωθεν, + " 2x πόσα + " 1x πόσαι + " 1x πόσας + " 1x πόσει + " 1x πόσην + " 1x πόσις, + " 1x πόσις. + " 1x πόσον + " 1x πόσον. + " 2x πόσους + " 1x πόσων + " 11x πόσῳ + " 18x πότε + " 1x πότε, + " 1x πότερον + " 1x πότιζε + " 1x πότοις, + " 1x πύλαι + " 1x πύλας + " 2x πύλη + " 1x πύλην + " 2x πύλης + " 1x πύλης· + " 1x πύλῃ + " 1x πύργον + " 2x πύργον, + " 1x πύργος + " 2x πώλησον + " 1x πώλησόν + " 3x πώποτε + " 1x πώποτε. + " 2x πώποτε· + " 1x πώρωσιν + " 1x πώρωσις + " 72x πᾶν + " 82x πᾶς + " 2x πᾶσάν + " 41x πᾶσα + " 1x πᾶσα. + " 14x πᾶσαι + " 1x πᾶσαι, + " 53x πᾶσαν + " 1x πᾶσαν· + " 7x πᾶσι + " 64x πᾶσιν + " 7x πᾶσιν, + " 9x πᾶσιν. + " 1x πᾶσιν· + " 1x πῆχυν + " 1x πῆχυν; + " 23x πῦρ + " 1x πῦρ, + " 1x πῦρ. + " 9x πῶλον + " 1x πῶλον, + " 2x πῶλον; + " 86x πῶς + " 2x σά + " 10x σάββασιν + " 1x σάββασιν. + " 1x σάββασιν; + " 1x σάββασιν· + " 1x σάββατα + " 10x σάββατον + " 2x σάββατον, + " 1x σάββατον· + " 1x σάκκος + " 1x σάκκους. + " 2x σάκκῳ + " 1x σάλου, + " 1x σάλπιγγα + " 1x σάλπιγγας + " 1x σάλπιγγες. + " 1x σάλπιγγι + " 1x σάλπιγγι· + " 5x σάλπιγγος + " 1x σάλπιγξ + " 1x σάπφειρος, + " 1x σάρδιον, + " 27x σάρκα + " 7x σάρκα, + " 1x σάρκα; + " 2x σάρκα· + " 7x σάρκας + " 1x σάρκινός + " 4x σάρξ + " 1x σάρξ, + " 2x σάρξ. + " 2x σάρξ· + " 2x σάτα + " 1x σέ + " 8x σέ, + " 2x σέ. + " 3x σέ; + " 1x σέ· + " 1x σέβασμα, + " 1x σέβεσθαι + " 1x σέβεται. + " 2x σέβονταί + " 1x σέσηπεν, + " 7x σέσωκέν + " 1x σέσωσται, + " 26x σήμερον + " 1x σήμερον, + " 3x σήμερον. + " 2x σήμερον· + " 1x σίκερα + " 4x σίτου + " 1x σίτου. + " 1x σαίνεσθαι + " 2x σαβαχθανεί; + " 7x σαββάτου + " 2x σαββάτου, + " 2x σαββάτου. + " 2x σαββάτου; + " 7x σαββάτων + " 4x σαββάτων, + " 11x σαββάτῳ + " 1x σαββάτῳ, + " 2x σαββάτῳ. + " 1x σαββάτῳ; + " 1x σαββάτῳ· + " 1x σαββατισμὸς + " 1x σαγήνῃ + " 3x σαλευθήσονται. + " 2x σαλευθῆναι + " 1x σαλευθῶ. + " 1x σαλευομένων + " 1x σαλευόμενα. + " 2x σαλευόμενον; + " 1x σαλεύοντες + " 1x σαλεῦσαι + " 1x σαλπίζειν, + " 1x σαλπίζειν. + " 1x σαλπίσει + " 1x σαλπίσωσιν. + " 1x σαλπίσῃς + " 1x σαλπιστῶν + " 1x σανίσιν, + " 1x σανδάλιά + " 1x σανδάλια, + " 1x σαπρόν, + " 1x σαπρόν· + " 1x σαπρὰ + " 4x σαπρὸν + " 1x σαπρὸς + " 1x σαργάνῃ + " 1x σαρδίῳ, + " 1x σαρδόνυξ, + " 3x σαρκί + " 12x σαρκί, + " 1x σαρκί. + " 1x σαρκί· + " 1x σαρκίναις. + " 1x σαρκίνης + " 1x σαρκίνοις, + " 2x σαρκικοί + " 1x σαρκικοῖς + " 2x σαρκικὰ + " 1x σαρκικῇ + " 1x σαρκικῶν + " 7x σαρκός, + " 1x σαρκός. + " 22x σαρκὶ + " 29x σαρκὸς + " 1x σαρκῶν + " 1x σαροῖ + " 1x σβέννυνται. + " 1x σβέννυται. + " 1x σβέννυτε, + " 1x σβέσαι· + " 1x σβέσει, + " 103x σε + " 19x σε, + " 1x σε,) + " 21x σε. + " 6x σε; + " 9x σε· + " 1x σείσω + " 2x σεαυτοῦ + " 1x σεαυτοῦ; + " 1x σεαυτοῦ· + " 1x σεαυτόν + " 3x σεαυτόν, + " 7x σεαυτόν. + " 1x σεαυτόν· + " 21x σεαυτὸν + " 4x σεαυτῷ + " 1x σεαυτῷ. + " 1x σεβάσματα + " 1x σεβομένας + " 1x σεβομένη + " 1x σεβομένοις + " 1x σεβομένου + " 2x σεβομένων + " 1x σειομένη, + " 1x σειροῖς + " 1x σεισμοί + " 2x σεισμοὶ + " 1x σεισμός. + " 1x σεισμὸν + " 8x σεισμὸς + " 1x σεισμῷ + " 5x σελήνη + " 1x σελήνης + " 2x σελήνης, + " 1x σελήνῃ + " 1x σεληνιάζεται + " 1x σεληνιαζομένους + " 1x σεμίδαλιν + " 1x σεμνά, + " 1x σεμνάς, + " 2x σεμνούς, + " 1x σεμνότητα, + " 1x σεμνότητι. + " 1x σεμνότητος, + " 1x σεσαλευμένον + " 2x σεσαρωμένον + " 1x σεσιγημένου, + " 1x σεσοφισμένοις + " 1x σεσωρευμένα + " 1x σεσῳσμένοι + " 1x σεσῳσμένοι,— + " 3x σημαίνων + " 3x σημείοις + " 1x σημείοις, + " 2x σημείων + " 1x σημείων.]] + " 1x σημειοῦσθε, + " 29x σημεῖα + " 2x σημεῖα, + " 1x σημεῖα; + " 31x σημεῖον + " 3x σημεῖον, + " 2x σημεῖον. + " 1x σημεῖον; + " 1x σημεῖόν + " 1x σημᾶναι. + " 1x σητόβρωτα + " 1x σθενώσει, + " 2x σιαγόνα + " 1x σιγάτω + " 1x σιγάτω. + " 1x σιγάτωσαν· + " 1x σιγήσῃ· + " 1x σιγὴ + " 1x σιγᾶν + " 1x σιγῆς + " 1x σιγῆσαι + " 1x σιδήρου + " 1x σιδηροῦς, + " 1x σιδηρᾶν + " 1x σιδηρᾷ, + " 2x σιδηρᾷ· + " 1x σικαρίων; + " 1x σιμικίνθια + " 5x σινάπεως, + " 3x σινδόνα + " 2x σινδόνι + " 1x σινδόνι, + " 1x σινιάσαι + " 1x σιρικοῦ + " 1x σιτία + " 2x σιτευτόν, + " 1x σιτευτὸν + " 1x σιτιστὰ + " 1x σιτομέτριον; + " 1x σιωπήσουσιν, + " 1x σιωπήσωσιν· + " 1x σιωπήσῃ· + " 1x σιωπήσῃς, + " 1x σιωπῶν + " 3x σκάνδαλα + " 1x σκάνδαλα, + " 6x σκάνδαλον + " 1x σκάνδαλον, + " 1x σκάνδαλον. + " 1x σκάπτειν + " 1x σκάφην + " 1x σκάφης + " 1x σκάφης, + " 1x σκάψω + " 2x σκέλη + " 1x σκέλη, + " 1x σκήνει + " 1x σκήνους + " 1x σκήνωμα + " 1x σκανδάλου, + " 1x σκανδάλου· + " 1x σκανδάλων· + " 5x σκανδαλίζει + " 1x σκανδαλίζει; + " 1x σκανδαλίζεται + " 1x σκανδαλίζεται. + " 1x σκανδαλίζονται. + " 2x σκανδαλίζῃ + " 1x σκανδαλίσω. + " 1x σκανδαλίσωμεν + " 4x σκανδαλίσῃ + " 1x σκανδαλισθήσεσθε + " 1x σκανδαλισθήσεσθε, + " 1x σκανδαλισθήσομαι. + " 2x σκανδαλισθήσονται + " 1x σκανδαλισθήσονται, + " 1x σκανδαλισθῆτε. + " 2x σκανδαλισθῇ + " 1x σκεπάσματα, + " 1x σκευὴν + " 2x σκεύει + " 1x σκεύεσιν, + " 8x σκεύη + " 8x σκεῦος + " 2x σκεῦος, + " 2x σκεῦός + " 2x σκηνάς, + " 1x σκηνάς. + " 1x σκηνήν. + " 1x σκηναῖς + " 1x σκηνοπηγία. + " 1x σκηνοποιοὶ + " 1x σκηνοῦντας. + " 1x σκηνοῦντες· + " 1x σκηνώματι, + " 1x σκηνώματός + " 2x σκηνώσει + " 1x σκηνὰς + " 4x σκηνὴ + " 5x σκηνὴν + " 4x σκηνῆς + " 1x σκηνῇ + " 1x σκιρτήσατε· + " 2x σκιὰ + " 1x σκιὰν + " 3x σκιᾷ + " 3x σκληροκαρδίαν + " 1x σκληρυνθῇ + " 1x σκληρόν + " 1x σκληρότητά + " 1x σκληρύνει. + " 3x σκληρύνητε + " 1x σκληρὸς + " 2x σκληρῶν + " 1x σκολιοῖς. + " 1x σκολιὰ + " 2x σκολιᾶς + " 1x σκοπεῖν + " 1x σκοπεῖτε + " 1x σκοπούντων + " 1x σκοποῦντες, + " 1x σκοπὸν + " 1x σκοπῶν + " 2x σκορπίζει. + " 1x σκορπίζει·— + " 1x σκορπίοι + " 1x σκορπίοις + " 1x σκορπίον; + " 1x σκορπίου, + " 1x σκορπίων, + " 1x σκορπισθῆτε + " 6x σκοτία + " 1x σκοτίας + " 8x σκοτίᾳ + " 2x σκοτίᾳ, + " 1x σκοτεινόν, + " 1x σκοτεινόν. + " 1x σκοτεινὸν + " 2x σκοτισθήσεται, + " 1x σκοτισθήτωσαν + " 1x σκοτισθῇ + " 1x σκυθρωποί. + " 1x σκυθρωποί· + " 1x σκωληκόβρωτος + " 1x σκόλοψ + " 1x σκόπει + " 2x σκότει + " 2x σκότει, + " 11x σκότος + " 2x σκότος, + " 1x σκότος; + " 8x σκότους + " 2x σκότους, + " 1x σκότους. + " 1x σκότους· + " 1x σκύβαλα + " 1x σκύλλε + " 1x σκύλλεις + " 1x σκύλλου· + " 1x σκώληξ + " 1x σκῦλα + " 1x σμάραγδος, + " 1x σμαραγδίνῳ. + " 1x σμύρναν. + " 1x σμύρνης + " 5x σοί + " 11x σοί, + " 4x σοί. + " 1x σοί· + " 110x σοι + " 27x σοι, + " 15x σοι. + " 4x σοι; + " 7x σοι· + " 1x σοροῦ, + " 275x σου + " 59x σου, + " 59x σου. + " 7x σου; + " 15x σου· + " 1x σουδάρια + " 1x σουδάριον, + " 1x σουδαρίῳ + " 1x σουδαρίῳ· + " 12x σοφία + " 10x σοφίαν + " 1x σοφίαν, + " 2x σοφίαν. + " 8x σοφίας + " 3x σοφίας, + " 1x σοφίας. + " 1x σοφίσαι + " 10x σοφίᾳ + " 2x σοφίᾳ, + " 1x σοφίᾳ· + " 1x σοφοί, + " 1x σοφούς, + " 2x σοφοὶ + " 3x σοφοὺς + " 1x σοφοῖς + " 1x σοφός, + " 1x σοφός; + " 1x σοφώτερον + " 3x σοφὸς + " 1x σοφὸς, + " 2x σοφῶν + " 2x σοφῶν, + " 1x σοφῷ + " 3x σού + " 1x σούς, + " 29x σοὶ + " 41x σοῦ + " 6x σοῦ, + " 5x σοῦ. + " 2x σοῦ; + " 5x σοῦ· + " 1x σπένδομαι + " 1x σπένδομαι, + " 16x σπέρμα + " 3x σπέρμα, + " 3x σπέρμα. + " 2x σπέρμα· + " 1x σπέρμασιν, + " 2x σπέρματί + " 4x σπέρματι + " 1x σπέρματι, + " 8x σπέρματος + " 1x σπήλαια + " 3x σπήλαιον + " 1x σπήλαιον, + " 1x σπίλοι + " 1x σπίλον + " 1x σπαράξαν + " 1x σπαράξας + " 1x σπαράσσει + " 1x σπαρέντες, + " 3x σπαρείς, + " 1x σπαρείς. + " 1x σπαρῇ + " 1x σπαρῇ, + " 2x σπασάμενος + " 1x σπαταλῶσα + " 1x σπείραντι + " 1x σπείραντος. + " 1x σπείρας + " 1x σπείρει. + " 3x σπείρειν + " 1x σπείρειν. + " 3x σπείρεις, + " 6x σπείρεται + " 3x σπείρης + " 1x σπείροντι + " 2x σπείρουσιν + " 11x σπείρων + " 1x σπείρῃ + " 1x σπειρόμενοι, + " 1x σπειρόμενοι· + " 1x σπεκουλάτορα + " 2x σπερμάτων + " 1x σπερμάτων, + " 1x σπερμολόγος + " 1x σπεύδοντας + " 1x σπεύσαντες, + " 2x σπεύσας + " 1x σπεῖρα + " 1x σπεῖραι + " 1x σπεῖραι. + " 1x σπεῖραν + " 2x σπεῖραν. + " 1x σπηλαίοις + " 1x σπιλάδες + " 1x σπιλοῦσα + " 8x σπλάγχνα + " 1x σπλάγχνα· + " 2x σπλάγχνοις + " 4x σπλαγχνισθεὶς + " 1x σποδὸς + " 2x σποδῷ + " 2x σπορίμων, + " 1x σπορίμων· + " 1x σπορᾶς + " 1x σπουδάζοντες + " 2x σπουδάσατε + " 1x σπουδάσω + " 1x σπουδήν, + " 2x σπουδαίως + " 1x σπουδαίως, + " 1x σπουδαιοτέρως + " 1x σπουδαιότερον + " 1x σπουδαιότερος + " 1x σπουδαῖον + " 5x σπουδὴν + " 3x σπουδῆς + " 2x σπουδῇ + " 1x σπουδῇ, + " 2x σπούδασον + " 2x σπυρίδας + " 1x σπυρίδας. + " 1x σπυρίδι. + " 1x σπυρίδων + " 3x σπόγγον + " 3x σπόρον + " 2x σπόρος + " 1x στάμνος + " 1x στάντος + " 1x στάσει + " 1x στάσεις + " 3x στάσεως + " 2x στάσιν + " 1x στάσιν, + " 1x στάσις + " 2x στάχυας + " 1x στάχυας. + " 1x στάχυν, + " 1x στάχυϊ. + " 1x στέγει, + " 3x στέγην + " 1x στέγομεν + " 1x στέγοντες + " 1x στέγων + " 1x στέλλεσθαι + " 1x στέμματα + " 1x στέφανοι + " 7x στέφανον + " 1x στέφανον. + " 1x στέφανον· + " 2x στέφανος + " 2x στέφανος, + " 1x στέφανόν + " 1x στέφανός + " 2x στήθη + " 2x στήκει + " 6x στήκετε + " 1x στήκετε, + " 1x στήκοντες + " 2x στήρισον + " 2x στήσαντες + " 1x στήσει + " 1x στήσονται + " 1x στήσῃ. + " 1x στήσῃς + " 1x στίγματα + " 1x στίλβοντα + " 3x σταδίους + " 3x σταδίων + " 1x σταδίῳ + " 1x σταθέντα + " 2x σταθέντες + " 1x σταθήσεσθε + " 4x σταθήσεται + " 1x σταθήσεται. + " 4x σταθεὶς + " 2x σταθῆναι + " 1x σταθῆναι; + " 1x σταθῆτε + " 1x σταθῇ + " 1x στασιαστῶν + " 1x στατῆρα· + " 5x σταυροῦ + " 2x σταυροῦ, + " 4x σταυροῦ. + " 1x σταυροῦ· + " 1x σταυροῦνται + " 2x σταυροῦσιν + " 1x σταυρωθῆναι + " 1x σταυρωθῆναι, + " 1x σταυρωθῆναι. + " 3x σταυρωθῇ. + " 1x σταυρώσαντες + " 1x σταυρώσατε· + " 1x σταυρώσετε, + " 1x σταυρώσω; + " 1x σταυρώσωσιν + " 10x σταυρὸν + " 1x σταυρὸς + " 1x σταυρῶσαί + " 1x σταυρῶσαι, + " 1x σταυρῶσαι. + " 3x σταυρῷ + " 1x σταυρῷ· + " 1x σταφυλαὶ + " 1x σταφυλὰς + " 1x σταφυλὴν + " 1x σταύρου + " 1x σταύρωσον + " 1x σταύρωσον. + " 1x στείρᾳ· + " 1x στελλόμενοι + " 1x στενάζετε, + " 1x στενάζομεν + " 2x στενάζομεν, + " 1x στενάζοντες· + " 1x στεναγμοῖς + " 1x στεναγμοῦ + " 1x στενοχωρία + " 1x στενοχωρία, + " 2x στενοχωρίαις, + " 2x στενοχωρεῖσθε + " 1x στενοχωρούμενοι, + " 1x στενὴ + " 2x στενῆς + " 1x στερέωμα + " 1x στερεοὶ + " 1x στερεὰ + " 1x στερεὸς + " 1x στερεᾶς + " 2x στεφάνους + " 1x στεφανοῦται + " 1x στεῖρα + " 1x στεῖρα, + " 1x στεῖραι, + " 1x στηρίζων + " 4x στηρίξαι + " 1x στηρίξατε + " 1x στηρίξει + " 1x στηρίξει, + " 1x στηριγμοῦ, + " 1x στηριχθῆναι + " 1x στιβάδας, + " 1x στιγμῇ + " 1x στοιχήσουσιν, + " 1x στοιχείων + " 5x στοιχεῖα + " 1x στοιχεῖα, + " 1x στοιχεῖν. + " 1x στοιχεῖς + " 1x στοιχοῦσιν + " 1x στοιχῶμεν. + " 2x στολαῖς + " 4x στολὰς + " 1x στολὴ + " 2x στολὴν + " 2x στομάτων + " 1x στοὰς + " 3x στοᾷ + " 1x στράτευμα + " 1x στρέφειν + " 1x στρέψον + " 1x στρήνους + " 1x στρατείαν, + " 1x στρατείας + " 1x στρατευμάτων + " 1x στρατευομένων + " 1x στρατευόμεθα, + " 1x στρατευόμενοι + " 1x στρατευόμενος + " 1x στρατεύεται + " 1x στρατεύμασιν + " 3x στρατεύματα + " 1x στρατεύματι + " 1x στρατεύματος + " 1x στρατεύονται + " 1x στρατεύῃ + " 3x στρατηγοὶ + " 1x στρατηγοὺς + " 3x στρατηγοῖς + " 3x στρατηγὸς + " 5x στρατιωτῶν + " 2x στρατιώταις + " 1x στρατιώταις, + " 3x στρατιώτας + " 2x στρατιώτας, + " 1x στρατιώτην + " 1x στρατιώτης + " 1x στρατιώτῃ + " 1x στρατιώτῃ. + " 1x στρατιᾶς + " 1x στρατιᾷ + " 7x στρατιῶται + " 2x στρατιῶται, + " 1x στρατολογήσαντι + " 1x στρατοπέδων + " 1x στραφέντες + " 10x στραφεὶς + " 1x στραφεῖσα + " 1x στραφῆτε + " 1x στραφῶσιν, + " 1x στρεβλοῦσιν + " 1x στρεφόμεθα + " 1x στρηνιάσαντες, + " 2x στρουθία + " 2x στρουθίων + " 1x στρῶσον + " 1x στυγητοί, + " 1x στυγνάζων + " 1x στυγνάσας + " 27x στόμα + " 1x στόμα. + " 4x στόματί + " 3x στόματα + " 6x στόματι + " 1x στόματι. + " 29x στόματος + " 5x στόματός + " 1x στόμαχον + " 2x στὰς + " 1x στᾶσα + " 3x στῆθι + " 3x στῆθος + " 3x στῆναι + " 2x στῆναι. + " 2x στῆσαι + " 1x στῆσαι, + " 1x στῆτε + " 1x στῆτε. + " 2x στῦλοι + " 1x στῦλον + " 1x στῦλος + " 1x συγγένειαν + " 1x συγγενίς + " 2x συγγενείας + " 5x συγγενεῖς + " 2x συγγενεῦσιν + " 1x συγγενὴς + " 1x συγγενῆ + " 2x συγγενῶν + " 1x συγκεκαλυμμένον + " 1x συγκεχυμένη, + " 1x συγκυρίαν + " 1x συγχύσεως, + " 1x συζήσομεν· + " 1x συκαμίνῳ + " 1x συκομορέαν, + " 1x συκοφαντήσητε, + " 3x συκῆ + " 1x συκῆ. + " 1x συκῆ; + " 6x συκῆν + " 3x συκῆς + " 1x συκῆς, + " 1x συκῇ + " 1x συλαγωγῶν + " 1x συλλέγεται + " 1x συλλέγοντες + " 2x συλλέγουσιν + " 1x συλλέξουσιν + " 1x συλλέξωμεν + " 1x συλλήμψῃ + " 1x συλλαβέσθαι + " 3x συλλαβεῖν + " 1x συλλαβοῦσα + " 1x συλλαβοῦσιν + " 1x συλλαβόμενοι + " 1x συλλημφθέντα + " 1x συλλημφθῆναι + " 1x συμβάντων + " 1x συμβέβηκεν + " 1x συμβαίνειν, + " 1x συμβαίνοντος, + " 1x συμβαλεῖν + " 1x συμβεβηκότι + " 1x συμβεβηκότων + " 1x συμβιβάζοντες + " 1x συμβιβάζων + " 1x συμβιβάσει + " 1x συμβουλίου + " 1x συμβουλεύσας + " 1x συμβουλεύω + " 6x συμβούλιον + " 1x συμβούλιόν + " 1x συμμορφιζόμενος + " 1x συμμόρφους + " 1x συμπαθεῖς, + " 1x συμπεριλαβὼν + " 1x συμπληροῦσθαι + " 1x συμπνίγει + " 2x συμπόσια + " 7x συμφέρει + " 1x συμφέρει, + " 2x συμφέρει. + " 2x συμφέρον + " 1x συμφέρον. + " 1x συμφερόντων + " 1x συμφυλετῶν, + " 1x συμφωνήσας + " 1x συμφωνήσει + " 1x συμφωνήσωσιν + " 1x συμφωνίας + " 1x συμφωνοῦσιν + " 1x συμφώνησις + " 1x συμφώνου + " 1x συνάγει + " 1x συνάγεται + " 2x συνάγονται + " 2x συνάγουσιν + " 1x συνάγω + " 3x συνάγων + " 1x συνάξει + " 2x συνάξω + " 1x συνάχθητε + " 1x συνέβαινεν + " 1x συνέβαλλεν + " 2x συνέβαλλον + " 1x συνέβη + " 1x συνέδραμεν + " 1x συνέδραμον + " 1x συνέδρια + " 1x συνέδρια, + " 6x συνέδριον + " 4x συνέδριον, + " 2x συνέζευξεν, + " 2x συνέθεντο + " 1x συνέθλιβον + " 1x συνέκδημος + " 1x συνέκλεισαν + " 2x συνέκλεισεν + " 1x συνέλαβεν + " 1x συνέλαβον + " 1x συνέλαβον, + " 1x συνέλεξαν + " 1x συνέλθῃ + " 1x συνέξουσίν + " 1x συνέπεσεν, + " 1x συνέπνιγον + " 1x συνέπνιξαν + " 1x συνέρχεσθε. + " 1x συνέρχεται + " 1x συνέρχησθε, + " 1x συνέρχησθε. + " 1x συνέρχονται + " 1x συνέρχονται, + " 2x συνέσει + " 1x συνέσεως + " 1x συνέσεως, + " 1x συνέστειλαν + " 1x συνέστηκεν, + " 1x συνέσχον + " 1x συνέταξέν + " 2x συνέταξεν + " 1x συνέφαγες + " 1x συνέχαιρον + " 1x συνέχει + " 1x συνέχεον + " 2x συνέχομαι + " 1x συνέχοντες + " 1x συνέχουσίν + " 1x συνέχυννεν + " 1x συνήγαγεν + " 3x συνήγαγον + " 1x συνήγειρεν + " 1x συνήδομαι + " 1x συνήθεια + " 1x συνήθειαν + " 1x συνήθλησάν + " 1x συνήλλασσεν + " 2x συνήντησεν + " 1x συνήργει + " 1x συνήρπασαν + " 1x συνήρχετο + " 1x συνήρχοντο + " 1x συνήσθιεν· + " 1x συνήσουσιν. + " 4x συνήχθη + " 7x συνήχθησαν + " 1x συνήχθησαν. + " 1x συνίετε + " 2x συνίετε; + " 1x συνίετε· + " 1x συνίουσιν. + " 1x συνίστασθαι. + " 1x συνίστησιν + " 1x συνίστησιν, + " 1x συνίστησιν. + " 1x συνίων, + " 1x συναίρει + " 1x συναίρειν + " 1x συναγάγετε + " 1x συναγάγῃ + " 3x συναγαγεῖν + " 1x συναγαγούσῃ· + " 2x συναγαγόντες + " 2x συναγαγὼν + " 1x συναγωγάς, + " 2x συναγωγήν, + " 15x συναγωγαῖς + " 7x συναγωγὰς + " 2x συναγωγὴ + " 10x συναγωγὴν + " 6x συναγωγῆς + " 9x συναγωγῇ + " 2x συναγωγῇ. + " 1x συναγωγῇ· + " 1x συναγωγῶν + " 1x συναγωνίσασθαί + " 1x συναθλοῦντες + " 1x συναθροίσας + " 2x συναιχμάλωτός + " 1x συναιχμαλώτους + " 1x συνακολουθοῦσαι + " 1x συνακολουθῆσαι + " 1x συναλιζόμενος + " 2x συνανέκειντο + " 1x συναναβᾶσαι + " 1x συναναβᾶσιν + " 1x συνανακείμενοι + " 1x συνανακειμένοις. + " 1x συνανακειμένους + " 2x συνανακειμένων + " 3x συναναμίγνυσθαι + " 1x συναναπαύσωμαι + " 2x συναντήσας + " 1x συναντήσει + " 1x συναντήσοντά + " 1x συναντιλάβηται. + " 1x συναντιλαμβάνεται + " 1x συναπέστειλα + " 1x συναπήχθη + " 1x συναπαγόμενοι. + " 1x συναπαχθέντες + " 1x συναπεθάνομεν, + " 2x συναποθανεῖν + " 1x συναπώλετο + " 1x συναρμολογουμένη + " 1x συναρμολογούμενον + " 1x συναρπάσαντες + " 1x συναρπασθέντος + " 1x συναυξάνεσθαι + " 1x συναχθέντες + " 1x συναχθέντων + " 2x συναχθήσονται + " 2x συναχθῆναι + " 1x συνβάλλουσα + " 1x συνβασιλεύσομεν· + " 1x συνβασιλεύσωμεν. + " 2x συνβιβαζόμενον + " 1x συνβιβασθέντες + " 1x συνγνώμην, + " 1x συνδέσμων + " 1x συνδέσμῳ + " 1x συνδεδεμένοι, + " 1x συνδοξασθῶμεν. + " 1x συνδούλου + " 1x συνδούλους + " 1x συνδούλων + " 1x συνδρομὴ + " 10x συνείδησιν + " 2x συνείδησιν, + " 2x συνείδησιν. + " 2x συνείδησιν· + " 2x συνείδησις + " 1x συνείδησις. + " 1x συνείληφεν + " 1x συνείπετο + " 1x συνείχετο + " 1x συνείχοντο· + " 1x συνεβάλετο + " 1x συνεβίβασαν + " 2x συνεβουλεύσαντο + " 1x συνεδρίου + " 2x συνεδρίου, + " 5x συνεδρίῳ + " 1x συνεδρίῳ. + " 1x συνεδρίῳ· + " 1x συνεζήτει + " 2x συνεζωοποίησεν + " 1x συνειδήσει + " 1x συνειδήσει, + " 1x συνειδήσει. + " 1x συνειδήσεσιν + " 6x συνειδήσεως + " 1x συνειδήσεως; + " 1x συνειδήσεώς + " 1x συνειδυίης + " 2x συνεισῆλθεν + " 1x συνεκάθισεν + " 1x συνεκάλεσαν + " 1x συνεκέρασεν + " 1x συνεκίνησάν + " 1x συνεκδήμους + " 1x συνεκλεκτὴ + " 1x συνεκόμισαν + " 1x συνελάλησεν + " 2x συνελάλουν + " 1x συνεληλυθυῖαι + " 1x συνεληλυθότας + " 1x συνεληλύθεισαν. + " 3x συνελθεῖν + " 1x συνελθούσαις + " 1x συνελθόντα + " 1x συνελθόντας + " 1x συνελθόντες + " 3x συνελθόντων + " 1x συνελογίσαντο + " 1x συνενέγκαντες + " 1x συνεπέθεντο + " 2x συνεπέμψαμεν + " 1x συνεπέστη + " 1x συνεπίομεν + " 1x συνεπαθήσατε, + " 1x συνεπιμαρτυροῦντος + " 1x συνεπληροῦντο + " 1x συνεπορεύετο + " 1x συνεπορεύοντο + " 1x συνεργεῖ + " 2x συνεργοί + " 1x συνεργοί· + " 1x συνεργούς + " 2x συνεργοὶ + " 1x συνεργοῦντι + " 1x συνεργοῦντος + " 1x συνεργός + " 1x συνεργός· + " 2x συνεργὸν + " 1x συνεργῶν + " 1x συνεργῷ + " 1x συνερχομένων + " 1x συνερχόμενοι + " 1x συνεσθίει + " 1x συνεσθίειν. + " 1x συνεσπάραξεν + " 1x συνεσπάραξεν· + " 1x συνεστήσατε + " 1x συνεσταλμένος + " 1x συνεσταυρωμένοι + " 1x συνεσταυρώθη, + " 1x συνεσταύρωμαι· + " 1x συνεστῶσα + " 1x συνεστῶτας + " 1x συνετάφημεν + " 1x συνετέθειντο + " 2x συνετήρει + " 1x συνετῶν + " 2x συνετῶν, + " 1x συνετῷ. + " 2x συνευδοκεῖ + " 1x συνευδοκεῖτε + " 1x συνευδοκοῦσιν + " 2x συνευδοκῶν + " 2x συνευωχούμενοι + " 1x συνεφάγομεν + " 1x συνεφωνήθη + " 1x συνεφώνησάς + " 1x συνεχομένη + " 1x συνεχομένους, + " 1x συνεχόμενον + " 1x συνεχύθη, + " 1x συνεψήφισαν + " 1x συνζήσομεν + " 3x συνζητεῖν + " 1x συνζητεῖν, + " 1x συνζητεῖτε + " 1x συνζητητὴς + " 1x συνζητούντων, + " 1x συνζητοῦντας + " 2x συνζητοῦντες + " 1x συνζῆν. + " 2x συνηγάγετέ + " 1x συνηγάγομεν, + " 2x συνηγέρθητε + " 1x συνηγμένα + " 1x συνηγμένοι + " 1x συνηγμένοι, + " 1x συνηγμένοι. + " 2x συνηγμένων + " 1x συνηθείᾳ + " 1x συνηθροισμένοι + " 1x συνηκολούθει + " 1x συνηλικιώτας + " 1x συνηρπάκει + " 1x συνθλίβοντά + " 2x συνθλασθήσεται· + " 1x συνθρύπτοντές + " 2x συνιέναι + " 1x συνιέντος, + " 1x συνιδόντες + " 1x συνιδών + " 1x συνιείς, + " 1x συνιστάνειν; + " 1x συνιστάνομεν + " 2x συνιστάνοντες + " 1x συνιστάνω. + " 1x συνιστάνων, + " 1x συνιστανόντων· + " 1x συνιᾶσιν. + " 1x συνιῶσιν, + " 1x συνιῶσιν. + " 1x συνκαθήμενοι + " 1x συνκαθήμενος + " 1x συνκαθισάντων + " 2x συνκακοπάθησον + " 1x συνκακουχεῖσθαι + " 1x συνκαλέσασθαι + " 2x συνκαλεσάμενος + " 2x συνκαλεῖ + " 1x συνκαλοῦσιν + " 1x συνκατάθεσις + " 1x συνκαταβάντες + " 1x συνκατατεθειμένος + " 1x συνκατεψηφίσθη + " 1x συνκεκερασμένος + " 1x συνκλειόμενοι + " 1x συνκληρονόμα + " 1x συνκληρονόμοι + " 1x συνκληρονόμοις + " 1x συνκληρονόμων + " 1x συνκοινωνήσαντές + " 1x συνκοινωνήσητε + " 1x συνκοινωνεῖτε + " 1x συνκοινωνούς + " 3x συνκοινωνὸς + " 1x συνκρίνοντες + " 1x συνκρίνοντες. + " 1x συνκρῖναι + " 1x συνκύπτουσα + " 1x συνλαλήσας + " 2x συνλαλοῦντες + " 1x συνλαμβάνου + " 1x συνλυπούμενος + " 1x συνμέτοχα + " 1x συνμέτοχοι + " 1x συνμαθηταῖς + " 1x συνμαρτυρεῖ + " 2x συνμαρτυρούσης + " 1x συνμερίζονται; + " 1x συνοδίᾳ + " 1x συνοδεύοντες + " 1x συνοικοδομεῖσθε + " 1x συνοικοῦντες + " 1x συνομιλῶν + " 1x συνομοροῦσα + " 1x συνοχὴ + " 1x συνοχῆς + " 1x συνπάσχει + " 1x συνπάσχομεν + " 1x συνπαθῆσαι + " 1x συνπαραγενόμενοι + " 1x συνπαρακληθῆναι + " 1x συνπαραλαβεῖν + " 1x συνπαραλαβόντες + " 1x συνπαραλαβὼν + " 1x συνπαραλαμβάνειν + " 1x συνπαρόντες + " 1x συνπληροῦσθαι + " 1x συνπνίγονται + " 1x συνπνίγουσιν + " 1x συνπολῖται + " 1x συνπορεύονται + " 1x συνπρεσβύτερος + " 1x συνσταυρωθέντες + " 1x συνσταυρωθέντος + " 1x συνστενάζει + " 1x συνστοιχεῖ + " 1x συνστρατιώτην + " 1x συνσχηματίζεσθε + " 1x συντέλεια + " 1x συντέμνων + " 1x συνταφέντες + " 1x συντελέσας + " 1x συντελέσω + " 2x συντελείας + " 3x συντελείᾳ + " 1x συντελεσθεισῶν + " 1x συντελεῖσθαι + " 1x συντελεῖσθαι, + " 1x συντελῶν + " 1x συντετριμμένον + " 1x συντετρῖφθαι, + " 1x συντηροῦνται. + " 1x συντρίβεται, + " 1x συντρίψασα + " 1x συντρίψει + " 1x συντρεχόντων + " 1x συντριβήσεται + " 1x συντρῖβον + " 1x συντυχεῖν + " 2x συντόμως + " 1x συνυπεκρίθησαν + " 1x συνυπουργούντων + " 1x συνφυεῖσαι + " 2x συνχαίρει + " 1x συνχαίρετέ + " 1x συνχαίρω + " 1x συνχρῶνται + " 1x συνχύννεται + " 1x συνωδίνει + " 1x συνωμοσίαν + " 1x συνόντων + " 1x συνᾶραι + " 4x συνῆκαν + " 1x συνῆκαν, + " 1x συνῆκαν. + " 1x συνῆλθαν + " 2x συνῆλθεν + " 2x συνῆλθον + " 1x συνῆσαν + " 2x συνῆτε, + " 2x συνῶσιν + " 1x συστατικῶν + " 1x συστρέψαντος + " 1x συστρατιώτῃ + " 1x συστροφὴν + " 1x συστροφῆς + " 1x συσχηματιζόμενοι + " 1x σφάγια + " 1x σφάξουσιν, + " 1x σφαγὴν + " 2x σφαγῆς. + " 1x σφοδρῶς + " 1x σφραγίδων, + " 1x σφραγίς + " 1x σφραγίσαντες + " 1x σφραγίσωμεν + " 1x σφραγίσῃς + " 2x σφραγισάμενος + " 9x σφραγῖδα + " 1x σφραγῖδα, + " 3x σφραγῖδας + " 1x σφραγῖσιν + " 1x σφυδρά, + " 2x σφόδρα + " 3x σφόδρα, + " 6x σφόδρα. + " 1x σχήματι + " 1x σχίσας + " 1x σχίσει + " 5x σχίσμα + " 1x σχίσματα + " 1x σχίσματα, + " 1x σχίσωμεν + " 3x σχεδὸν + " 1x σχιζομένους + " 1x σχοινία + " 1x σχοινίων + " 1x σχολάζοντα + " 1x σχολάσητε + " 1x σχολῇ + " 1x σχῆμα + " 1x σχῆτε, + " 4x σχῶ + " 1x σχῶ. + " 2x σχῶμεν + " 1x σωζομένοις + " 1x σωθήσεται + " 4x σωθήσεται, + " 7x σωθήσεται. + " 1x σωθήσεται· + " 2x σωθήσομαι. + " 2x σωθήσῃ + " 1x σωθήσῃ· + " 2x σωθησόμεθα + " 5x σωθῆναι + " 1x σωθῆναι, + " 1x σωθῆναι. + " 3x σωθῆναι; + " 1x σωθῆτε. + " 3x σωθῇ + " 1x σωθῶ; + " 1x σωθῶσιν, + " 2x σωθῶσιν. + " 1x σωμάτων, + " 1x σωματικὴ + " 1x σωματικῶς, + " 1x σωματικῷ + " 1x σωρεύσεις + " 1x σωσάτω + " 2x σωτήριον + " 1x σωτήριος + " 1x σωτήριόν + " 7x σωτηρία + " 1x σωτηρία· + " 13x σωτηρίαν + " 1x σωτηρίαν, + " 3x σωτηρίαν. + " 1x σωτηρίαν; + " 11x σωτηρίας + " 3x σωτηρίας, + " 1x σωτηρίας. + " 1x σωτηρίας.]] + " 1x σωτηρίας; + " 2x σωτηρίας· + " 1x σωτηρίας·— + " 1x σωτηρίου + " 1x σωτὴρ + " 1x σωφρονήσατε + " 1x σωφρονίζωσιν + " 1x σωφρονεῖν + " 1x σωφρονεῖν, + " 1x σωφρονισμοῦ. + " 1x σωφρονοῦμεν, + " 1x σωφρονοῦντα + " 1x σωφρονοῦντα, + " 2x σωφροσύνης + " 1x σωφροσύνης. + " 1x σωφρόνως + " 1x σόν. + " 9x σύ + " 8x σύ, + " 3x σύ. + " 4x σύ; + " 1x σύκων. + " 1x σύμβουλος + " 1x σύμμορφον + " 2x σύμφορον + " 1x σύμφυτοι + " 1x σύν + " 1x σύνδεσμον + " 1x σύνδεσμος + " 2x σύνδουλοι + " 2x σύνδουλος + " 1x σύνδουλόν + " 2x σύνδουλός + " 1x σύνεσίν + " 2x σύνεσιν + " 1x σύνετε. + " 1x σύνζυγε, + " 1x σύνκαμψον. + " 1x σύνοιδα, + " 1x σύνσωμα + " 1x σύντριμμα + " 1x σύντροφος + " 1x σύνφημι + " 1x σύνψυχοι, + " 1x σύρει + " 1x σύροντες + " 1x σύρων + " 1x σύσσημον + " 1x σώζεται, + " 2x σώματί + " 9x σώματα + " 1x σώματα. + " 19x σώματι + " 1x σώματι, + " 1x σώματι. + " 2x σώματι· + " 22x σώματος + " 7x σώματος, + " 3x σώματος. + " 4x σώματός + " 1x σώσαντος + " 1x σώσας + " 6x σώσει + " 1x σώσεις + " 2x σώσεις; + " 2x σώσω + " 1x σώσω. + " 1x σώσων + " 2x σώφρονα, + " 2x σώφρονας, + " 2x σὰ + " 17x σὰρξ + " 22x σὲ + " 1x σὴν + " 3x σὴς + " 3x σὸν + " 1x σὸς + " 106x σὺ + " 127x σὺν + " 3x σῆς + " 4x σῇ + " 6x σῖτον + " 2x σῖτον· + " 1x σῖτος + " 1x σῦκα, + " 2x σῦκα; + " 1x σῳζομένοις + " 1x σῳζομένους + " 1x σῳζόμενοι; + " 1x σῴζει + " 2x σῴζειν + " 1x σῴζεσθαι + " 1x σῴζεσθε, + " 1x σῴζετε + " 14x σῶμά + " 47x σῶμα + " 4x σῶμα, + " 4x σῶμα. + " 1x σῶμα; + " 7x σῶσαι + " 3x σῶσαι, + " 3x σῶσαι· + " 4x σῶσον + " 1x σῶσον, + " 2x σῶσόν + " 5x σῷ + " 2x τά + " 1x τάγματι· + " 2x τάλαντά + " 6x τάλαντα + " 1x τάλαντα, + " 1x τάλαντα· + " 2x τάλαντον + " 1x τάλαντόν + " 1x τάξει + " 8x τάξιν + " 2x τάραχος + " 1x τάφοις + " 2x τάφον + " 1x τάφον. + " 1x τάφος + " 1x τάφου. + " 1x τάφους + " 2x τάχα + " 2x τάχει + " 1x τάχει, + " 4x τάχει. + " 2x τάχειον + " 1x τάχειον· + " 1x τάχιον + " 1x τάχιον. + " 1x τάχιστα + " 1x τέθεικά + " 1x τέθειται. + " 1x τέθνηκεν, + " 1x τέθνηκεν. + " 54x τέκνα + " 5x τέκνα, + " 3x τέκνα· + " 7x τέκνοις + " 1x τέκνοις. + " 6x τέκνον + " 5x τέκνον, + " 1x τέκνου, + " 1x τέκνου. + " 7x τέκνων + " 2x τέκνῳ + " 1x τέκνῳ· + " 1x τέκτονος + " 1x τέκτων, + " 1x τέκῃ + " 4x τέλειοι + " 1x τέλειοι, + " 4x τέλειον + " 2x τέλειον, + " 1x τέλειον. + " 2x τέλειος + " 1x τέλειός + " 2x τέλη + " 19x τέλος + " 5x τέλος, + " 9x τέλος. + " 5x τέλους + " 1x τέλους, + " 2x τέξεται + " 1x τέξῃ + " 1x τέρασι + " 3x τέρασιν + " 11x τέρατα + " 7x τέσσαρας + " 1x τέσσαρας, + " 10x τέσσαρες + " 5x τέσσαρσιν + " 6x τέσσερα + " 1x τέτακταί + " 2x τέταρτον + " 3x τέταρτος + " 1x τέτυχεν + " 2x τέχνης + " 1x τέχνῃ. + " 1x τήκεται· + " 5x τήν + " 1x τήνδε + " 2x τήρει + " 1x τήρει. + " 1x τήρησιν + " 1x τήρησις + " 1x τήρησον + " 236x τί + " 3x τί; + " 5x τίθημι + " 3x τίθησιν + " 3x τίθησιν, + " 1x τίκτει + " 1x τίκτουσα + " 1x τίκτουσα, + " 1x τίκτῃ + " 1x τίλλειν + " 1x τίλλοντες + " 2x τίμα + " 1x τίμια + " 1x τίμιον + " 1x τίμιος + " 16x τίνα + " 2x τίνας + " 5x τίνες + " 13x τίνι + " 10x τίνος + " 3x τίνων + " 116x τίς + " 2x τίσιν + " 1x τίσουσιν + " 2x τίτλον + " 1x τακτῇ + " 1x ταλάντων. + " 1x ταλαίπωρος + " 1x ταλαιπωρήσατε + " 1x ταλαιπωρία + " 1x ταλαιπωρίαις + " 1x ταλαντιαία + " 1x ταμείοις + " 1x ταμείοις, + " 1x ταμεῖον + " 1x ταμεῖόν + " 1x ταπείνωσιν + " 1x ταπεινοφροσύνην + " 1x ταπεινοφροσύνην, + " 2x ταπεινοφροσύνης + " 3x ταπεινοφροσύνῃ + " 1x ταπεινούς, + " 1x ταπεινοὺς + " 3x ταπεινοῖς + " 1x ταπεινοῦσθαι, + " 4x ταπεινωθήσεται, + " 1x ταπεινόφρονες, + " 1x ταπεινώθητε + " 4x ταπεινώσει + " 1x ταπεινώσεως + " 1x ταπεινώσῃ + " 3x ταπεινὸς + " 3x ταπεινῶν + " 2x ταράσσοντες + " 1x ταράσσων + " 2x ταρασσέσθω + " 1x ταραχθῆτε, + " 1x ταραχθῇ + " 1x ταραχὴν + " 1x ταρταρώσας + " 1x τασσόμενος, + " 1x ταφὴν + " 9x ταχέως + " 1x ταχέως· + " 1x ταχινή + " 1x ταχινὴν + " 1x ταχύ + " 1x ταχύ, + " 3x ταχύ. + " 1x ταχύ· + " 5x ταχὺ + " 1x ταχὺς + " 1x ταύρους + " 2x ταύρων + " 8x ταύταις + " 1x ταύταις, + " 1x ταύταις. + " 1x ταύταις; + " 5x ταύτας + " 2x ταύτας, + " 2x ταύτας. + " 32x ταύτην + " 5x ταύτην, + " 8x ταύτην. + " 3x ταύτην; + " 20x ταύτης + " 4x ταύτης, + " 8x ταύτης. + " 2x ταύτης· + " 24x ταύτῃ + " 3x ταύτῃ, + " 4x ταύτῃ. + " 1x ταύτῃ· + " 202x ταῖς + " 1x ταῦροί + " 3x ταῦτά + " 170x ταῦτα + " 15x ταῦτα, + " 16x ταῦτα. + " 1x ταῦτα; + " 3x ταῦτα· + " 208x τε + " 1x τε, + " 1x τείχη + " 4x τείχους + " 1x τεθέαται· + " 1x τεθεάμεθα + " 1x τεθείκατε + " 1x τεθεικώς, + " 1x τεθειμένος· + " 1x τεθεμελίωτο + " 1x τεθεμελιωμένοι + " 1x τεθεμελιωμένοι, + " 1x τεθεραπευμέναι + " 1x τεθεραπευμένον, + " 1x τεθεραπευμένῳ + " 1x τεθησαυρισμένοι + " 1x τεθλιμμένη + " 1x τεθνήκασιν + " 1x τεθνηκέναι. + " 1x τεθνηκότα, + " 1x τεθνηκότος, + " 2x τεθνηκὼς + " 1x τεθραμμένος, + " 1x τεθραυσμένους + " 1x τεθυμένα, + " 1x τεθῆναι + " 1x τεθῇ + " 1x τεθῇ; + " 1x τεθῶσιν + " 2x τεκεῖν + " 1x τεκεῖν, + " 1x τεκεῖν. + " 1x τεκμηρίοις, + " 4x τεκνία, + " 1x τεκνογονίας, + " 1x τεκνογονεῖν, + " 1x τελέσητε + " 1x τελέσητε. + " 1x τελέσωσιν + " 1x τελεία + " 1x τελείοις, + " 1x τελείων + " 1x τελείως, + " 2x τελείωσις + " 1x τελειοτέρας + " 1x τελειοῦμαι. + " 1x τελειωθεὶς + " 1x τελειωθῇ + " 1x τελειωθῶσιν. + " 1x τελειωσάντων + " 1x τελειωτὴν + " 1x τελειότητα + " 1x τελειότητος. + " 1x τελειώσας + " 3x τελειώσω + " 1x τελειῶσαι + " 1x τελειῶσαι. + " 1x τελειῶσαι· + " 1x τελεσθήσεται + " 1x τελεσθήσονται + " 1x τελεσθῆναι + " 3x τελεσθῇ + " 1x τελεσθῇ. + " 1x τελεσθῶσιν + " 1x τελεσφοροῦσιν. + " 1x τελευτάτω. + " 1x τελευτάτω· + " 1x τελευτᾶν, + " 1x τελευτᾷ + " 1x τελευτῆς + " 1x τελευτῶν + " 1x τελεῖ + " 1x τελεῖται. + " 1x τελεῖτε + " 1x τελεῖτε· + " 1x τελοῦσα + " 6x τελωνῶν + " 1x τελωνῶν, + " 1x τελώνην + " 1x τελώνης + " 1x τελώνης, + " 2x τελώνης. + " 1x τελώνης· + " 3x τελώνιον, + " 8x τελῶναι + " 1x τεράτων, + " 10x τεσσάρων + " 1x τεσσάρων, + " 1x τεσσάρων. + " 1x τεσσαρεσκαιδεκάτη + " 18x τεσσεράκοντα + " 1x τεσσεράκοντα, + " 1x τεσσεράκοντα. + " 1x τεσσεράκοντα· + " 1x τεσσερακονταέτης + " 1x τεσσερακονταετῆ + " 1x τετάρακται, + " 1x τετάρτην + " 1x τετάρτην, + " 1x τετάρτης + " 1x τετάρτου + " 1x τετάρτῃ + " 1x τετέλεκα, + " 1x τετέλεσται, + " 1x τετήρηκα + " 1x τετήρηκα· + " 1x τετήρηκαν. + " 1x τετήρηκας + " 1x τετήρηκεν· + " 2x τετήρηται. + " 1x τεταγμέναι + " 1x τεταγμένοι + " 1x τεταραγμένοι + " 1x τεταρταῖος + " 1x τετελείωκεν + " 1x τετελείωμαι, + " 2x τετελείωται + " 1x τετελείωται. + " 1x τετελειωμένη + " 1x τετελειωμένοι + " 1x τετελειωμένον. + " 1x τετελειωμένων, + " 1x τετελευτηκότος + " 1x τετηρημένην + " 1x τετηρημένοις + " 1x τετιμημένου + " 1x τετράγωνος + " 1x τετράμηνός + " 2x τετράποδα + " 2x τετραάρχης + " 1x τετραάρχης, + " 1x τετραάρχου + " 2x τετρααρχοῦντος + " 1x τετρααρχοῦντος, + " 1x τετραδίοις + " 1x τετρακισχίλιοι + " 1x τετρακισχίλιοι. + " 1x τετρακισχιλίους + " 1x τετρακισχιλίους, + " 1x τετρακισχιλίων + " 1x τετρακοσίοις + " 1x τετρακοσίων· + " 1x τετρακόσια + " 1x τετρακόσια· + " 1x τετραπλοῦν. + " 1x τετραπόδων + " 1x τετραυματισμένους + " 1x τετραχηλισμένα + " 1x τετυφωμένοι, + " 1x τετύφωται, + " 1x τεφρώσας + " 1x τεχθεὶς + " 1x τεχνίταις + " 2x τεχνίτης + " 1x τεχνῖται + " 4x τεῖχος + " 1x τηλαυγῶς + " 1x τηλικαύτης + " 1x τηλικαῦτα + " 1x τηλικούτου + " 1x τηλικοῦτος + " 1x τηρήσαντας + " 1x τηρήσατε, + " 1x τηρήσει + " 1x τηρήσει, + " 1x τηρήσετε. + " 1x τηρήσητε, + " 1x τηρήσητε. + " 1x τηρήσουσιν. + " 1x τηρήσω + " 1x τηρήσω. + " 1x τηρήσῃ + " 3x τηρήσῃ, + " 1x τηρήσῃς + " 1x τηρεῖ + " 1x τηρεῖ. + " 1x τηρεῖ· + " 6x τηρεῖν + " 1x τηρεῖν, + " 3x τηρεῖσθαι + " 1x τηρεῖτε, + " 1x τηρηθείη. + " 1x τηρηθῆναι + " 1x τηρουμένους, + " 1x τηρούμενοι + " 2x τηρούντων + " 1x τηροῦμεν + " 4x τηροῦντες + " 1x τηρῆσαί + " 1x τηρῇ + " 1x τηρῶ. + " 1x τηρῶμεν. + " 1x τηρῶμεν· + " 5x τηρῶν + " 1x τηρῶν, + " 91x τι + " 4x τι, + " 1x τι· + " 1x τιθέασιν + " 2x τιθέναι + " 1x τιθέντες + " 1x τιθέτω + " 1x τιθεὶς + " 1x τιμήν + " 3x τιμήν, + " 1x τιμήν. + " 1x τιμήσατε, + " 2x τιμήσει + " 1x τιμίαν + " 1x τιμίου + " 1x τιμίους, + " 4x τιμίῳ + " 1x τιμαῖς + " 1x τιμιωτάτου + " 1x τιμιωτάτῳ, + " 1x τιμιότητος + " 1x τιμωρίας + " 1x τιμωρηθῶσιν. + " 1x τιμωρῶν + " 2x τιμὰς + " 7x τιμὴ + " 14x τιμὴν + " 1x τιμᾶτε. + " 1x τιμᾷ + " 2x τιμᾷ, + " 5x τιμῆς + " 1x τιμῆς, + " 1x τιμῆς· + " 4x τιμῇ + " 1x τιμῇ, + " 1x τιμῶ + " 1x τιμῶν + " 2x τιμῶσι + " 1x τινά· + " 2x τινάς. + " 2x τινές + " 31x τινα + " 1x τινα, + " 14x τινας + " 54x τινες + " 1x τινες, + " 1x τινες· + " 9x τινι + " 1x τινι· + " 11x τινος + " 4x τινος, + " 1x τινος. + " 7x τινων + " 1x τινός + " 1x τινός, + " 1x τινός; + " 12x τινὰ + " 7x τινὰς + " 1x τινὰς, + " 17x τινὲς + " 3x τινὶ + " 2x τινὸς + " 2x τινῶν + " 223x τις + " 4x τις, + " 2x τις; + " 1x τις· + " 1x τισίν, + " 1x τισιν + " 2x τισὶν + " 2x τοίνυν + " 2x τοιαύταις + " 1x τοιαύτας + " 3x τοιαύτη + " 6x τοιαύτην + " 8x τοιαῦτα + " 1x τοιαῦτα; + " 1x τοιαῦται + " 1x τοιγαροῦν + " 2x τοιούτοις + " 1x τοιούτοις· + " 1x τοιούτου + " 3x τοιούτους + " 1x τοιούτους, + " 1x τοιούτους. + " 5x τοιούτων + " 1x τοιούτων, + " 2x τοιούτῳ + " 1x τοιοῦτο + " 5x τοιοῦτοι + " 1x τοιοῦτοι, + " 5x τοιοῦτον + " 1x τοιοῦτον· + " 2x τοιοῦτος + " 1x τοιοῦτος, + " 1x τοιοῦτος. + " 1x τοιᾶσδε + " 1x τολμήσας + " 1x τολμήσω + " 1x τολμηροτέρως + " 1x τολμηταὶ, + " 1x τολμᾶν + " 1x τολμᾷ + " 1x τολμᾷ, + " 1x τολμῆσαι + " 1x τολμῶ + " 1x τολμῶμεν + " 1x τομώτερος + " 1x τοπάζιον, + " 2x τοσαύτην + " 3x τοσαῦτα + " 1x τοσούτου + " 1x τοσούτου. + " 1x τοσούτους; + " 1x τοσούτων + " 2x τοσούτῳ + " 1x τοσοῦτο + " 1x τοσοῦτοι + " 3x τοσοῦτον + " 1x τοσοῦτον; + " 1x τοσοῦτος + " 14x τούτοις + " 2x τούτοις, + " 1x τούτοις. + " 1x τούτοις; + " 1x τούτοις· + " 41x τούτου + " 5x τούτου, + " 8x τούτου. + " 4x τούτου; + " 7x τούτου· + " 18x τούτους + " 6x τούτους, + " 1x τούτους. + " 2x τούτους· + " 49x τούτων + " 7x τούτων, + " 10x τούτων. + " 1x τούτων; + " 2x τούτων· + " 68x τούτῳ + " 8x τούτῳ, + " 8x τούτῳ. + " 1x τούτῳ; + " 4x τούτῳ· + " 3x τοὐναντίον + " 1x τοὔνομα + " 722x τοὺς + " 623x τοῖς + " 1x τοῖχε + " 2497x τοῦ + " 248x τοῦτο + " 23x τοῦτο, + " 5x τοῦτο. + " 6x τοῦτο; + " 2x τοῦτο· + " 49x τοῦτον + " 5x τοῦτον, + " 3x τοῦτον. + " 10x τοῦτό + " 17x τοῦτ’ + " 4x τράγων + " 2x τράπεζα + " 1x τράπεζαν, + " 1x τράπεζαν; + " 7x τράχηλον + " 1x τρέμουσα + " 1x τρέμουσα, + " 1x τρέμουσιν + " 2x τρέφει + " 1x τρέφεσθαι + " 1x τρέφεται + " 1x τρέφωσιν + " 1x τρέχει + " 1x τρέχετε + " 1x τρέχοντες + " 1x τρέχοντος, + " 1x τρέχουσιν, + " 2x τρέχω + " 1x τρέχωμεν + " 1x τρέχῃ + " 2x τρήματος + " 7x τρία + " 2x τρία, + " 3x τρίβους + " 1x τρίζει + " 1x τρίμηνον + " 3x τρίς + " 2x τρίς, + " 2x τρίς. + " 3x τρίτη + " 2x τρίτην + " 1x τρίτην, + " 2x τρίτης + " 24x τρίτον + " 6x τρίτος + " 1x τρίτος, + " 2x τρίτου + " 1x τρίτου, + " 13x τρίτῃ + " 1x τρίχα + " 3x τρίχας + " 3x τρίχες + " 1x τρίχινος, + " 1x τραπέζαις. + " 3x τραπέζας + " 6x τραπέζης + " 1x τραπέζης. + " 1x τραπεζείταις, + " 1x τραυματίσαντες + " 1x τραχεῖαι + " 1x τραχεῖς + " 1x τραύματα + " 1x τρεχόντων + " 31x τρεῖς + " 8x τρεῖς, + " 2x τρεῖς. + " 8x τριάκοντα + " 1x τριάκοντα, + " 2x τριάκοντα. + " 2x τριακοσίων + " 1x τριβόλους + " 1x τριβόλων + " 1x τριετίαν + " 1x τρισίν + " 1x τριστέγου + " 1x τρισχίλιαι· + " 5x τρισὶν + " 2x τριχῶν + " 9x τριῶν + " 1x τριῶν· + " 1x τροπῆς + " 1x τροφή, + " 1x τροφὰς + " 1x τροφὴ + " 2x τροφὴν + " 1x τροφὸς + " 7x τροφῆς + " 1x τροφῆς, + " 2x τροφῆς. + " 1x τροφῆς· + " 1x τροχιὰς + " 1x τροχὸν + " 1x τρυβλίῳ, + " 1x τρυγόνων + " 1x τρυγῶσιν. + " 1x τρυμαλιᾶς + " 1x τρυφήν, + " 1x τρυφῇ + " 1x τρόμος + " 3x τρόμου + " 1x τρόμῳ + " 8x τρόπον + " 1x τρόπον. + " 1x τρόπον· + " 1x τρόπος, + " 1x τρόπῳ, + " 1x τρόπῳ. + " 1x τρύβλιον. + " 1x τρύγησον + " 1x τρώγοντες + " 5x τρώγων + " 5x τρὶς + " 1x τυγχάνοντες + " 1x τυπικῶς + " 1x τυφλέ, + " 2x τυφλοί + " 4x τυφλοί, + " 1x τυφλούς, + " 1x τυφλούς· + " 8x τυφλοὶ + " 2x τυφλοὺς + " 2x τυφλοῖς + " 3x τυφλοῦ + " 1x τυφλόν. + " 2x τυφλός + " 4x τυφλὸν + " 1x τυφλὸν, + " 12x τυφλὸς + " 1x τυφλὸς, + " 1x τυφλῶν + " 2x τυφλῶν, + " 1x τυφλῶν· + " 1x τυφλῷ + " 1x τυφωθεὶς + " 1x τυφωνικὸς + " 1x τυφόμενον + " 1x τυχεῖν + " 1x τυχεῖν. + " 1x τυχούσας + " 1x τυχοῦσαν + " 1x τυχὸν + " 1x τυχὼν + " 6x τό + " 1x τόκῳ + " 1x τόκῳ. + " 6x τόν + " 1x τόξον, + " 2x τόποις + " 37x τόπον + " 7x τόπον, + " 2x τόπον. + " 1x τόπον· + " 13x τόπος + " 1x τόπος, + " 2x τόπος. + " 7x τόπου + " 3x τόπους + " 1x τόπους, + " 1x τόπους· + " 3x τόπων + " 10x τόπῳ + " 2x τόπῳ, + " 2x τόπῳ. + " 1x τόπῳ· + " 120x τότε + " 1x τότε, + " 1x τότε; + " 2x τύποι + " 9x τύπον + " 2x τύπος + " 1x τύπους + " 3x τύπτειν + " 1x τύπτεσθαι; + " 1x τύπτοντί + " 3x τύπτοντες + " 2x τύχοι + " 1x τύχωσιν + " 1x τύχωσιν· + " 817x τὰ + " 337x τὰς + " 1518x τὴν + " 1657x τὸ + " 1556x τὸν + " 1300x τῆς + " 859x τῇ + " 1x τῇδε + " 1201x τῶν + " 1221x τῷ + " 6x υἱοί + " 1x υἱοί, + " 1x υἱοί. + " 1x υἱοθεσία + " 3x υἱοθεσίαν + " 1x υἱοθεσίας, + " 1x υἱούς. + " 24x υἱοὶ + " 12x υἱοὺς + " 7x υἱοῖς + " 4x υἱοῦ + " 8x υἱόν + " 4x υἱόν, + " 2x υἱόν. + " 1x υἱόν; + " 2x υἱόν· + " 11x υἱός + " 2x υἱός, + " 2x υἱός. + " 2x υἱός; + " 1x υἱός· + " 2x υἱὲ + " 17x υἱὸν + " 37x υἱὸς + " 17x υἱῶν + " 5x υἱῷ + " 1x φάγε, + " 3x φάγε. + " 1x φάγεσαι + " 2x φάγεται + " 1x φάγετε· + " 3x φάγητε + " 2x φάγητε, + " 1x φάγοι. + " 1x φάγονται, + " 2x φάγος + " 3x φάγω + " 2x φάγω; + " 3x φάγωμεν + " 1x φάγωμεν. + " 1x φάγωμεν; + " 2x φάγωσιν + " 1x φάγωσιν, + " 1x φάγωσιν. + " 2x φάγωσιν· + " 4x φάγῃ + " 1x φάγῃς + " 1x φάντασμά + " 2x φάνῃ + " 1x φάραγξ + " 1x φάρμακοι + " 1x φάσις + " 2x φάσκοντες + " 1x φάτνης + " 1x φάτνῃ, + " 1x φάτνῃ. + " 1x φάτνῃ· + " 3x φέγγος + " 1x φέρε + " 1x φέρε, + " 1x φέρει + " 1x φέρει, + " 1x φέρει. + " 2x φέρειν + " 1x φέρεσθαι + " 2x φέρετέ + " 4x φέρετε + " 1x φέρετε. + " 2x φέρητε + " 1x φέρον + " 1x φέρον, + " 3x φέροντες + " 1x φέροντες· + " 1x φέρουσαι + " 1x φέρουσαν + " 6x φέρουσιν + " 2x φέρων + " 1x φέρῃ. + " 2x φήμη + " 1x φίλας + " 1x φίλαυτοι, + " 1x φίλημά + " 2x φίλοι + " 1x φίλοι, + " 1x φίλοι. + " 1x φίλοις + " 1x φίλον + " 1x φίλον, + " 8x φίλος + " 6x φίλους + " 1x φίλους, + " 1x φίλους. + " 2x φίλων + " 1x φίλων, + " 1x φαίνει + " 1x φαίνει, + " 1x φαίνει. + " 2x φαίνεσθε + " 3x φαίνεται + " 1x φαίνεται; + " 1x φαίνονται + " 1x φαίνοντι + " 1x φαίνων, + " 1x φαίνωσιν + " 21x φαγεῖν + " 3x φαγεῖν, + " 6x φαγεῖν. + " 3x φαγεῖν; + " 1x φαγεῖν· + " 2x φαγόντες + " 1x φαινομένη, + " 1x φαινομένου + " 1x φαινομένων + " 1x φανέρωσις + " 1x φανέρωσον + " 1x φανήσεται + " 1x φανερά + " 1x φανερούμενοι + " 1x φανερούμενον + " 1x φανεροὶ + " 1x φανεροὺς + " 1x φανεροῦντι + " 1x φανεροῦται· + " 3x φανερωθέντος + " 1x φανερωθήσεσθε + " 1x φανερωθεῖσαν + " 2x φανερωθῆναι + " 7x φανερωθῇ + " 1x φανερωθῇ, + " 2x φανερωθῇ· + " 1x φανερωθῶσιν + " 1x φανερόν + " 1x φανερόν, + " 1x φανερόν. + " 1x φανερώσαντες + " 2x φανερώσει + " 1x φανερώσω + " 3x φανερὰ + " 7x φανερὸν + " 2x φανερῶς + " 1x φανερῶς, + " 2x φανερῷ + " 1x φανεῖται; + " 1x φανταζόμενον, + " 1x φαντασίας + " 1x φανῇ + " 1x φανῇς + " 1x φανῶμεν, + " 1x φανῶν + " 2x φανῶσιν + " 1x φαρμάκοις + " 1x φαρμακίᾳ + " 1x φαρμακεία, + " 1x φαρμακιῶν + " 1x φασίν + " 2x φαῦλα + " 1x φαῦλον + " 1x φαῦλον, + " 2x φαῦλον. + " 1x φείδομαι + " 1x φείδομαι. + " 1x φείσεται. + " 1x φείσομαι, + " 2x φειδομένως + " 1x φειδόμενοι + " 1x φειδόμενος + " 1x φελόνην, + " 1x φερομένην + " 1x φερομένης + " 1x φερόμενοι + " 1x φερώμεθα, + " 3x φευγέτωσαν + " 1x φεύγει + " 1x φεύγει,— + " 3x φεύγετε + " 1x φεύξεται + " 1x φεύξονται + " 1x φεῦγε + " 1x φεῦγε, + " 1x φεῦγε· + " 2x φημι, + " 1x φημι. + " 1x φημι; + " 4x φησίν + " 7x φησίν, + " 1x φησίν. + " 1x φησίν— + " 4x φησιν + " 1x φθάσωμεν + " 1x φθέγγεσθαι + " 1x φθαρήσονται, + " 1x φθαρτοῖς, + " 1x φθαρτοῦ + " 3x φθαρτὸν + " 1x φθαρτῆς + " 1x φθαρῇ + " 1x φθείρει, + " 1x φθείρονται. + " 1x φθείρουσιν + " 1x φθεγγόμενοι + " 1x φθεγξάμενον + " 1x φθειρόμενον + " 1x φθερεῖ + " 1x φθινοπωρινὰ + " 1x φθονοῦντες. + " 2x φθοράν, + " 1x φθορὰ + " 1x φθορὰν + " 1x φθορᾶς + " 1x φθορᾶς. + " 1x φθορᾶς· + " 1x φθορᾷ + " 1x φθορᾷ, + " 1x φθόγγοις + " 1x φθόγγος + " 1x φθόνοι, + " 4x φθόνον + " 1x φθόνος, + " 1x φθόνου + " 1x φθόνους + " 1x φθόνῳ + " 3x φιάλας + " 2x φιάλας, + " 7x φιάλην + " 1x φιλάγαθον, + " 1x φιλάδελφοι, + " 1x φιλάνδρους + " 1x φιλάργυροι + " 1x φιλάργυροι, + " 1x φιλήδονοι + " 5x φιλήματι + " 1x φιλήματι. + " 2x φιλήσω + " 1x φιλία + " 1x φιλαδελφία + " 1x φιλαδελφίαν + " 1x φιλαδελφίαν, + " 1x φιλαδελφίας + " 2x φιλαδελφίᾳ + " 1x φιλανθρωπία + " 1x φιλανθρωπίαν + " 1x φιλανθρώπως + " 1x φιλαργυρία, + " 3x φιλεῖ + " 2x φιλεῖς + " 1x φιλονεικία + " 1x φιλοξενίαν + " 1x φιλοξενίας + " 1x φιλοπρωτεύων + " 1x φιλοσοφίας + " 1x φιλοσόφων + " 1x φιλοτέκνους, + " 1x φιλοτιμεῖσθαι + " 1x φιλοτιμούμεθα, + " 1x φιλοτιμούμενον + " 1x φιλοφρόνως + " 1x φιλούντων + " 1x φιλοῦντας + " 2x φιλοῦσιν + " 1x φιλόθεοι, + " 1x φιλόνεικος + " 1x φιλόξενοι + " 2x φιλόξενον, + " 1x φιλόστοργοι, + " 1x φιλῆσαι + " 4x φιλῶ + " 4x φιλῶν + " 1x φιμοῦν + " 1x φιμώσεις, + " 1x φλογίζουσα + " 1x φλογιζομένη + " 1x φλογός, + " 2x φλογὶ + " 1x φλυαρῶν + " 1x φλόγα + " 1x φλόγα· + " 1x φλύαροι + " 2x φλὸξ + " 1x φοίνικες + " 1x φοβήθητε + " 1x φοβήθητε. + " 1x φοβερὰ + " 2x φοβερὸν + " 1x φοβεῖσθαι + " 3x φοβεῖσθε + " 1x φοβεῖσθε, + " 4x φοβεῖσθε. + " 4x φοβεῖσθε· + " 1x φοβηθέντες + " 1x φοβηθήσομαι· + " 3x φοβηθεὶς + " 1x φοβηθεῖσα + " 3x φοβηθῆτε + " 1x φοβηθῆτε· + " 1x φοβηθῇ, + " 1x φοβηθῇς + " 1x φοβηθῶμεν + " 2x φοβουμένοις + " 1x φοβούμεθα + " 1x φοβούμεναι + " 2x φοβούμενοί + " 4x φοβούμενοι + " 6x φοβούμενος + " 1x φοβοῦ + " 7x φοβοῦ, + " 5x φοβοῦ· + " 4x φοβοῦμαι + " 1x φοβῆται + " 1x φοβῇ + " 1x φοινίκων + " 1x φονέα + " 1x φονευσάντων + " 1x φονεύεις + " 1x φονεύετε + " 1x φονεύς + " 2x φονεύσεις, + " 1x φονεύσεις· + " 1x φονεύσῃ, + " 2x φονεύσῃς, + " 1x φονεύσῃς· + " 1x φονεὺς + " 3x φονεῖς + " 1x φονεῦσιν + " 1x φορέσωμεν + " 1x φορεῖ· + " 1x φοροῦντα + " 1x φοροῦντες + " 2x φορτία + " 1x φορτίζετε + " 1x φορτίοις. + " 2x φορτίον + " 1x φορτίου + " 1x φορῶν + " 3x φρέαρ + " 1x φρέαρ, + " 2x φρέατος + " 1x φρέατος. + " 1x φρίσσουσιν. + " 1x φραγέλλιον + " 1x φραγήσεται + " 2x φραγελλώσας + " 1x φραγμοὺς + " 1x φραγμοῦ + " 2x φραγμὸν + " 1x φραγῇ + " 1x φρεναπάται, + " 1x φρεναπατᾷ + " 1x φρεσίν, + " 1x φρεσὶν + " 2x φρονήσει + " 1x φρονήσετε· + " 2x φρονίμοις + " 1x φρονίμως + " 1x φρονίμῳ, + " 1x φρονεῖ· + " 4x φρονεῖν + " 1x φρονεῖν, + " 1x φρονεῖν· + " 2x φρονεῖς + " 1x φρονεῖς· + " 1x φρονεῖτε + " 3x φρονεῖτε, + " 1x φρονιμώτεροι + " 1x φρονοῦντες + " 1x φρονοῦντες, + " 1x φρονοῦντες. + " 1x φρονοῦντες· + " 1x φρονοῦσιν, + " 1x φροντίζωσιν + " 1x φρονῆτε, + " 1x φρονῶμεν· + " 1x φρονῶν + " 1x φρουρήσει + " 1x φρουρουμένους + " 1x φρυγάνων + " 1x φρόνει, + " 4x φρόνημα + " 6x φρόνιμοι + " 1x φρόνιμοι, + " 1x φρόνιμοι. + " 1x φρόνιμος + " 1x φρόνιμος, + " 3x φυγεῖν + " 1x φυγὴ + " 2x φυλάξαι + " 1x φυλάξατε + " 2x φυλάξει + " 1x φυλάξῃ, + " 1x φυλάξῃς + " 2x φυλάσσειν + " 2x φυλάσσεσθαι + " 2x φυλάσσεσθε + " 1x φυλάσσοντες + " 1x φυλάσσοντες. + " 1x φυλάσσοντι + " 1x φυλάσσου· + " 1x φυλάσσουσιν, + " 2x φυλάσσων + " 1x φυλάσσῃ + " 1x φυλάσσῃ, + " 1x φυλακάς, + " 2x φυλακήν, + " 3x φυλακήν. + " 1x φυλακήν· + " 1x φυλακίζων + " 2x φυλακαῖς + " 1x φυλακαῖς, + " 1x φυλακτήρια + " 2x φυλακὰς + " 2x φυλακὴ + " 8x φυλακὴν + " 1x φυλακὴν, + " 3x φυλακῆς + " 2x φυλακῆς, + " 1x φυλακῆς· + " 10x φυλακῇ + " 2x φυλακῇ, + " 3x φυλακῇ. + " 2x φυλακῇ· + " 1x φυλασσόμενος, + " 2x φυλαὶ + " 1x φυλαῖς + " 2x φυλὰς + " 3x φυλὴν + " 20x φυλῆς + " 3x φυλῶν + " 1x φυράματος + " 1x φυσικὰ + " 2x φυσικὴν + " 1x φυσικῶς + " 1x φυσιούμενος + " 1x φυσιοῖ, + " 1x φυσιοῦσθε + " 1x φυσιοῦται, + " 1x φυσιώσεις, + " 1x φυτεία + " 1x φυτεύει + " 1x φυτεύθητι + " 2x φυτεύων + " 2x φυὲν + " 2x φωλεοὺς + " 1x φωνάς. + " 1x φωνήν + " 1x φωνήν. + " 1x φωνήσαντες + " 5x φωνήσας + " 1x φωνήσει + " 1x φωνήσῃ + " 6x φωναὶ + " 1x φωναῖς + " 5x φωνεῖ + " 1x φωνεῖ. + " 1x φωνεῖτέ + " 1x φωνηθῆναι + " 1x φωνοῦσιν + " 1x φωνὰς + " 29x φωνὴ + " 38x φωνὴν + " 20x φωνῆς + " 2x φωνῆς, + " 1x φωνῆς. + " 6x φωνῆσαι + " 1x φωνῆσαν + " 33x φωνῇ + " 2x φωνῶν + " 1x φωστὴρ + " 1x φωστῆρες + " 1x φωσφόρος + " 1x φωτί, + " 2x φωτί· + " 1x φωτίζει + " 1x φωτίζῃ + " 1x φωτίσαι + " 1x φωτίσαντος + " 2x φωτίσει + " 1x φωτεινόν + " 1x φωτεινόν, + " 1x φωτεινὴ + " 2x φωτεινὸν + " 1x φωτισθέντας + " 1x φωτισθέντες + " 2x φωτισμὸν + " 1x φωτός + " 1x φωτός, + " 3x φωτός. + " 6x φωτὶ + " 9x φωτὸς + " 1x φόβητρά + " 1x φόβοι. + " 11x φόβον + " 4x φόβον, + " 11x φόβος + " 1x φόβος· + " 8x φόβου + " 1x φόβου, + " 9x φόβῳ + " 1x φόβῳ, + " 2x φόνοι, + " 3x φόνον + " 2x φόνου + " 1x φόνων + " 1x φόνῳ + " 2x φόρον + " 1x φόρον, + " 2x φόρους + " 1x φύγητε + " 1x φύλακές + " 2x φύλακας + " 1x φύλαξον + " 1x φύλαξον, + " 4x φύλλα + " 1x φύλλα, + " 1x φύλλα· + " 1x φύουσα + " 2x φύραμα + " 1x φύραμα, + " 1x φύραμα· + " 5x φύσει + " 1x φύσεως + " 1x φύσεως, + " 4x φύσιν + " 1x φύσιν, + " 2x φύσις + " 1x φώνει + " 1x φώνησον + " 1x φώτων, + " 38x φῶς + " 4x φῶς, + " 3x φῶς. + " 2x φῶς· + " 1x φῶτα + " 3x χάλαζα + " 7x χάραγμα + " 1x χάρακά + " 1x χάρητε + " 38x χάριν + " 3x χάριν, + " 5x χάριν. + " 1x χάριν; + " 2x χάριν· + " 54x χάρις + " 3x χάρις, + " 1x χάρις. + " 6x χάρισμα + " 1x χάρισμα, + " 1x χάρισμα· + " 2x χάριτί + " 2x χάριτα + " 19x χάριτι + " 3x χάριτι, + " 23x χάριτος + " 2x χάριτος, + " 2x χάριτος· + " 1x χάρτου + " 1x χάσμα + " 8x χήρα + " 1x χήρα, + " 1x χήραις + " 1x χήραις, + " 2x χήραν + " 1x χήραν. + " 3x χήρας + " 1x χήρας, + " 1x χήρας. + " 8x χίλια + " 3x χαίρει + " 3x χαίρειν + " 1x χαίρειν, + " 3x χαίρειν. + " 5x χαίρετε + " 3x χαίρετε, + " 1x χαίρετε. + " 2x χαίρομεν + " 3x χαίροντες + " 3x χαίροντες, + " 1x χαίρουσιν + " 5x χαίρω + " 2x χαίρω, + " 1x χαίρω· + " 1x χαίρωμεν + " 1x χαίρων + " 1x χαίρων, + " 2x χαίρων. + " 1x χαίρῃ + " 1x χαιρόντων, + " 1x χαλάζης, + " 2x χαλάσαντες + " 1x χαλάσατε + " 1x χαλάσω + " 1x χαλασάντων + " 1x χαλεποί· + " 1x χαλεποὶ + " 1x χαλιναγωγῆσαι + " 1x χαλιναγωγῶν + " 1x χαλινοὺς + " 1x χαλινῶν + " 1x χαλκίων,— + " 1x χαλκεὺς + " 1x χαλκηδών, + " 2x χαλκολιβάνῳ + " 1x χαλκοῦ + " 1x χαλκόν, + " 2x χαλκὸν + " 1x χαλκὸς + " 1x χαλκᾶ + " 1x χαλῶσι + " 1x χαμαί. + " 1x χαμαὶ + " 1x χαρά + " 1x χαρά, + " 1x χαρά. + " 1x χαράγματι + " 1x χαράν, + " 1x χαρήσεται + " 1x χαρήσεται· + " 1x χαρήσομαι· + " 1x χαρήσονται. + " 1x χαρίζεσθαί + " 1x χαρίζεσθε, + " 1x χαρίσασθέ + " 1x χαρίσασθαι + " 1x χαρίσασθαι· + " 1x χαρίσεται; + " 6x χαρίσματα + " 1x χαρίσματι, + " 1x χαρίσματος, + " 1x χαρακτὴρ + " 2x χαριζόμενοι + " 1x χαρισάμενος + " 1x χαρισθέντα + " 1x χαρισθήσομαι + " 1x χαρισθῆναι + " 1x χαρισμάτων + " 14x χαρὰ + " 13x χαρὰν + " 21x χαρᾶς + " 1x χαρᾶς, + " 6x χαρᾷ + " 1x χαρῆναι + " 1x χαρῆναι. + " 2x χαρῆτε + " 2x χείλεσίν + " 1x χείλεσιν + " 2x χείλη + " 4x χείρ + " 1x χείρ, + " 3x χείρονα + " 1x χείρονος + " 1x χείρων + " 1x χείρων. + " 1x χειλέων + " 1x χειμάρρου + " 1x χειμαζομένων + " 1x χειμών, + " 1x χειμὼν + " 2x χειμῶνος + " 1x χειμῶνος· + " 1x χειμῶνός + " 1x χειρί + " 1x χειρί, + " 1x χειρί. + " 1x χειραγωγούμενος + " 1x χειραγωγούς. + " 1x χειραγωγοῦντες + " 1x χειροποίητα + " 1x χειροποίητον + " 2x χειροποιήτοις + " 2x χειροποιήτου, + " 1x χειροτονήσαντες + " 1x χειροτονηθεὶς + " 1x χειρόγραφον + " 1x χειρός + " 1x χειρός· + " 17x χειρὶ + " 24x χειρὸς + " 14x χειρῶν + " 1x χειρῶν, + " 1x χειρῶν. + " 1x χερσίν, + " 1x χερσίν. + " 1x χερσίν· + " 6x χερσὶν + " 8x χεὶρ + " 1x χεῖλος + " 4x χεῖρά + " 5x χεῖράς + " 21x χεῖρα + " 1x χεῖρα, + " 3x χεῖρα. + " 1x χεῖρα· + " 47x χεῖρας + " 4x χεῖρας, + " 2x χεῖρας. + " 1x χεῖρας· + " 2x χεῖρες + " 3x χεῖρον + " 1x χεῖρον, + " 1x χεῖρόν + " 2x χηρῶν + " 1x χιλίαρχοι + " 2x χιλίαρχον + " 1x χιλίαρχον, + " 10x χιλίαρχος + " 2x χιλίας + " 1x χιλίων + " 7x χιλιάδες + " 11x χιλιάδες, + " 1x χιλιάδες. + " 1x χιλιάδων + " 1x χιλιάδων, + " 1x χιλιάδων· + " 2x χιλιάρχοις + " 1x χιλιάρχων + " 4x χιλιάρχῳ + " 1x χιλιάσιν + " 1x χιτὼν + " 1x χιτῶνά + " 1x χιτῶνα + " 2x χιτῶνα. + " 5x χιτῶνας + " 1x χιτῶνας. + " 1x χιών, + " 1x χιών. + " 2x χλαμύδα + " 1x χλιαρὸς + " 1x χλωρός, + " 1x χλωρὸν + " 1x χλωρὸς + " 1x χλωρῷ + " 1x χοίνικες + " 3x χοίρους, + " 2x χοίρους· + " 3x χοίρων + " 1x χοίρων, + " 2x χοίρων. + " 1x χολὴν + " 1x χολᾶτε + " 1x χολῆς + " 1x χορηγήσει + " 1x χορηγεῖ + " 1x χορτάζεσθαι + " 1x χορτάζεσθε, + " 2x χορτάσαι + " 1x χορτάσματα + " 1x χορτασθήσεσθε. + " 1x χορτασθήσονται. + " 2x χορτασθῆναι + " 1x χορῶν, + " 1x χοϊκοί, + " 1x χοϊκοῦ, + " 2x χοϊκός, + " 1x χοῖροι, + " 2x χοῦν + " 1x χρή, + " 4x χρήματα + " 1x χρήσιμον, + " 1x χρήσωμαι + " 1x χρίσας + " 2x χρεία + " 2x χρείαις + " 37x χρείαν + " 1x χρείαν; + " 2x χρείας + " 2x χρείας, + " 1x χρείας. + " 1x χρεοφειλέται + " 1x χρεοφειλετῶν + " 1x χρημάτων + " 1x χρηματίζοντα, + " 1x χρηματίσαι + " 1x χρηματίσει + " 1x χρηματισθέντες + " 2x χρηματισθεὶς + " 1x χρηματισμός; + " 1x χρησάμενος + " 1x χρηστεύεται + " 1x χρηστοί, + " 1x χρηστολογίας + " 2x χρηστός + " 2x χρηστότης + " 1x χρηστότης, + " 1x χρηστότητα + " 2x χρηστότητα, + " 1x χρηστότητι + " 2x χρηστότητι, + " 1x χρηστότητος + " 1x χρηστὰ + " 1x χρηστὸν + " 2x χρηστὸς + " 1x χρονίζειν + " 1x χρονίζοντος + " 1x χρονίσει· + " 1x χρονοτριβῆσαι + " 4x χρυσίον + " 1x χρυσίον, + " 2x χρυσίου + " 1x χρυσίων + " 3x χρυσίῳ + " 2x χρυσίῳ, + " 1x χρυσοδακτύλιος + " 2x χρυσοῦ + " 4x χρυσοῦν + " 2x χρυσοῦν, + " 1x χρυσοῦς. + " 1x χρυσόλιθος, + " 1x χρυσόν; + " 1x χρυσόπρασος, + " 2x χρυσὸν + " 2x χρυσὸς + " 2x χρυσᾶ + " 1x χρυσᾶν· + " 2x χρυσᾶς + " 1x χρυσᾶς, + " 1x χρυσᾶς. + " 1x χρυσᾶς· + " 1x χρυσῆ + " 1x χρυσῶν + " 2x χρυσῷ + " 1x χρυσῷ, + " 1x χρωτὸς + " 2x χρόνοις + " 23x χρόνον + " 2x χρόνον, + " 2x χρόνον. + " 1x χρόνον· + " 6x χρόνος + " 1x χρόνος, + " 2x χρόνου + " 1x χρόνου, + " 1x χρόνου. + " 3x χρόνους + " 6x χρόνων + " 4x χρόνῳ + " 1x χρώμεθα, + " 1x χρώμενοι + " 1x χρῄζει. + " 2x χρῄζετε + " 1x χρῄζομεν + " 1x χρῄζῃ + " 1x χρῆμα + " 1x χρῆσαι. + " 2x χρῆσιν + " 1x χρῆσόν + " 1x χρῆται, + " 3x χρῖσμα + " 1x χρῶ + " 2x χωλούς, + " 4x χωλοὶ + " 2x χωλοὺς + " 1x χωλόν, + " 1x χωλὸν + " 1x χωλὸν, + " 2x χωλὸς + " 1x χωλῶν, + " 1x χωρήσειν + " 1x χωρία + " 1x χωρίζεσθαι + " 1x χωρίζεσθαι, + " 1x χωρίζεται, + " 5x χωρίον + " 1x χωρίου + " 1x χωρίου; + " 1x χωρίς + " 1x χωρίσαι + " 1x χωρίσει + " 1x χωρίων + " 1x χωρείτω. + " 2x χωρεῖ + " 2x χωρεῖν + " 1x χωριζέσθω· + " 2x χωριζέτω. + " 1x χωρισθεὶς + " 1x χωρισθῆναι,— + " 1x χωρισθῇ, + " 1x χωροῦσαι + " 1x χωροῦσιν + " 40x χωρὶς + " 1x χωρῆσαι. + " 3x χόρτον + " 3x χόρτον, + " 3x χόρτος + " 2x χόρτος, + " 1x χόρτου + " 1x χόρτου, + " 1x χόρτου· + " 1x χόρτῳ. + " 1x χώρα + " 1x χώρα. + " 1x χώραις + " 12x χώραν + " 1x χώραν, + " 1x χώραν. + " 4x χώρας + " 2x χώρας, + " 2x χώρας. + " 3x χώρᾳ + " 3x χῆραι + " 1x χῶρον. + " 1x ψάλλοντες + " 1x ψαλλέτω. + " 3x ψαλμοῖς + " 1x ψαλμὸν + " 1x ψαλμῶν + " 1x ψαλμῷ + " 2x ψαλῶ + " 1x ψαλῶ. + " 1x ψευδέσιν + " 1x ψευδαδέλφοις, + " 1x ψευδαδέλφους, + " 1x ψευδαπόστολοι, + " 1x ψευδεῖς + " 1x ψευδεῖς· + " 1x ψευδοδιδάσκαλοι, + " 1x ψευδολόγων, + " 1x ψευδομάρτυρες + " 1x ψευδομαρτυρήσεις, + " 2x ψευδομαρτυρήσῃς, + " 1x ψευδομαρτυρίαι, + " 1x ψευδομαρτυρίαν + " 1x ψευδομαρτύρων. + " 1x ψευδοπροφήταις + " 1x ψευδοπροφήτην + " 1x ψευδοπροφήτης + " 1x ψευδοπροφήτης, + " 1x ψευδοπροφήτου + " 1x ψευδοπροφητῶν, + " 4x ψευδοπροφῆται + " 1x ψευδοπροφῆται, + " 1x ψευδωνύμου + " 1x ψευδόμεθα + " 1x ψευδόμενοι + " 2x ψευδόχριστοι + " 2x ψεύδει, + " 2x ψεύδεσθε + " 2x ψεύδομαι, + " 2x ψεύδομαι. + " 1x ψεύδονται· + " 1x ψεύδους + " 1x ψεύσασθαί + " 1x ψεύσασθαι + " 1x ψεύσματι + " 1x ψεύσταις, + " 2x ψεύστην + " 4x ψεύστης + " 1x ψεύστης, + " 1x ψεύστης· + " 2x ψεῦδος + " 3x ψεῦδος, + " 1x ψεῦδος. + " 1x ψεῦδος· + " 1x ψεῦσται, + " 1x ψηλαφήσατέ + " 1x ψηλαφήσειαν + " 1x ψηλαφωμένῳ + " 1x ψηφίζει + " 1x ψηφισάτω + " 1x ψιθυρισμοί, + " 1x ψιθυριστάς, + " 2x ψιχίων + " 1x ψυγήσεται + " 2x ψυχάς, + " 6x ψυχή + " 1x ψυχή. + " 7x ψυχήν + " 1x ψυχήν, + " 1x ψυχαί, + " 2x ψυχαὶ + " 3x ψυχαῖς + " 1x ψυχική, + " 1x ψυχικοί, + " 3x ψυχικόν, + " 1x ψυχικὸς + " 1x ψυχροῦ + " 1x ψυχρός, + " 2x ψυχρὸς + " 13x ψυχὰς + " 8x ψυχὴ + " 32x ψυχὴν + " 9x ψυχῆς + " 1x ψυχῆς, + " 1x ψυχῆς. + " 1x ψυχῆς· + " 7x ψυχῇ + " 1x ψυχῇ, + " 4x ψυχῶν + " 1x ψυχῶν. + " 4x ψωμίον + " 1x ψωμίσω + " 1x ψύχει + " 1x ψώμιζε + " 1x ψώχοντες + " 2x ψῆφον + " 1x ψῆφον, + " 1x ψῦχος + " 1x ψῦχος. + " 1x ἀΐδιος + " 2x ἀέρα + " 1x ἀέρα, + " 2x ἀέρα· + " 1x ἀέρος, + " 1x ἀβαρῆ + " 3x ἀβύσσου + " 1x ἀβύσσου, + " 1x ἀβύσσου. + " 1x ἀβύσσου· + " 1x ἀγάγετέ + " 1x ἀγάγετε + " 1x ἀγάγετε. + " 2x ἀγάγῃ + " 1x ἀγάμοις + " 1x ἀγάπαις + " 29x ἀγάπη + " 5x ἀγάπη, + " 2x ἀγάπη. + " 26x ἀγάπην + " 5x ἀγάπην, + " 1x ἀγάπην. + " 1x ἀγάπην· + " 15x ἀγάπης + " 2x ἀγάπης, + " 1x ἀγάπης. + " 17x ἀγάπῃ + " 7x ἀγάπῃ, + " 4x ἀγάπῃ. + " 6x ἀγέλη + " 1x ἀγέλην + " 1x ἀγαγεῖν + " 1x ἀγαγεῖν, + " 1x ἀγαγόντα + " 1x ἀγαγόντες + " 2x ἀγαθά + " 1x ἀγαθά, + " 1x ἀγαθά. + " 1x ἀγαθά; + " 1x ἀγαθάς, + " 2x ἀγαθέ, + " 1x ἀγαθή. + " 3x ἀγαθήν, + " 1x ἀγαθοεργεῖν, + " 1x ἀγαθοποιΐᾳ. + " 1x ἀγαθοποιεῖτε + " 2x ἀγαθοποιοῦντας + " 1x ἀγαθοποιοῦντας, + " 1x ἀγαθοποιοῦντες + " 1x ἀγαθοποιοῦσαι + " 1x ἀγαθοποιῆσαι + " 1x ἀγαθοποιῆτε + " 1x ἀγαθοποιῶν + " 1x ἀγαθοποιῶν· + " 1x ἀγαθουργῶν, + " 1x ἀγαθούς· + " 1x ἀγαθοὺς + " 1x ἀγαθοῖς + " 1x ἀγαθοῖς, + " 1x ἀγαθοῖς. + " 7x ἀγαθοῦ + " 1x ἀγαθοῦ; + " 1x ἀγαθωσύνη, + " 1x ἀγαθωσύνης + " 1x ἀγαθωσύνης, + " 1x ἀγαθωσύνῃ + " 1x ἀγαθόν + " 9x ἀγαθόν, + " 3x ἀγαθόν. + " 2x ἀγαθόν; + " 1x ἀγαθόν· + " 1x ἀγαθός + " 1x ἀγαθός· + " 6x ἀγαθὰ + " 1x ἀγαθὰς + " 3x ἀγαθὲ + " 1x ἀγαθὴ + " 5x ἀγαθὴν + " 18x ἀγαθὸν + " 7x ἀγαθὸς + " 2x ἀγαθῆς + " 2x ἀγαθῇ + " 2x ἀγαθῶν + " 3x ἀγαθῶν, + " 1x ἀγαθῶν. + " 5x ἀγαθῷ + " 1x ἀγαθῷ. + " 1x ἀγαθῷ· + " 1x ἀγαλλίασις, + " 2x ἀγαλλιάσει + " 1x ἀγαλλιάσει, + " 1x ἀγαλλιάσεως + " 1x ἀγαλλιαθῆναι + " 1x ἀγαλλιώμενοι. + " 1x ἀγαλλιᾶσθε + " 2x ἀγαλλιᾶσθε, + " 1x ἀγαλλιῶμεν, + " 1x ἀγανάκτησιν, + " 1x ἀγανακτεῖν + " 1x ἀγανακτοῦντες + " 1x ἀγανακτῶν + " 1x ἀγαπάτω + " 1x ἀγαπήσαντος + " 1x ἀγαπήσαντός + " 3x ἀγαπήσας + " 1x ἀγαπήσατε + " 2x ἀγαπήσει + " 2x ἀγαπήσει, + " 1x ἀγαπήσεις + " 1x ἀγαπήσητε + " 1x ἀγαπήσω + " 1x ἀγαπηθήσεται + " 1x ἀγαπητά, + " 1x ἀγαπητήν, + " 2x ἀγαπητοί + " 11x ἀγαπητοί, + " 4x ἀγαπητοί. + " 4x ἀγαπητοὶ + " 2x ἀγαπητοῖς + " 1x ἀγαπητοῦ + " 3x ἀγαπητόν + " 1x ἀγαπητόν, + " 2x ἀγαπητόν· + " 2x ἀγαπητός + " 5x ἀγαπητός, + " 1x ἀγαπητὰ + " 1x ἀγαπητὸν + " 4x ἀγαπητὸς + " 3x ἀγαπητῷ + " 1x ἀγαπητῷ, + " 1x ἀγαπώντων + " 5x ἀγαπᾶν + " 2x ἀγαπᾶν. + " 1x ἀγαπᾶν· + " 1x ἀγαπᾶτέ + " 11x ἀγαπᾶτε + " 2x ἀγαπᾶτε, + " 9x ἀγαπᾷ + " 1x ἀγαπᾷ, + " 1x ἀγαπᾷ. + " 1x ἀγαπᾷ· + " 2x ἀγαπᾷς + " 4x ἀγαπῶ + " 1x ἀγαπῶ, + " 1x ἀγαπῶμαι; + " 9x ἀγαπῶμεν + " 1x ἀγαπῶμεν, + " 13x ἀγαπῶν + " 3x ἀγαπῶντας + " 1x ἀγαπῶντι + " 4x ἀγαπῶσιν + " 1x ἀγαπῶσιν. + " 1x ἀγγέλλουσα + " 8x ἀγγέλοις + " 1x ἀγγέλοις, + " 10x ἀγγέλου + " 2x ἀγγέλου, + " 2x ἀγγέλου. + " 17x ἀγγέλους + " 1x ἀγγέλους, + " 2x ἀγγέλους. + " 24x ἀγγέλων + " 4x ἀγγέλων, + " 2x ἀγγέλων. + " 1x ἀγγέλων; + " 8x ἀγγέλῳ + " 1x ἀγγέλῳ, + " 1x ἀγγαρεύουσιν + " 1x ἀγγαρεύσει + " 1x ἀγγείοις + " 2x ἀγγελία + " 1x ἀγενεαλόγητος, + " 1x ἀγενῆ + " 1x ἀγκάλας + " 3x ἀγκύρας + " 2x ἀγνάφου + " 1x ἀγνοήσαντες + " 1x ἀγνοίας + " 1x ἀγνοίᾳ + " 1x ἀγνοεῖ, + " 5x ἀγνοεῖν, + " 1x ἀγνοεῖν. + " 1x ἀγνοεῖται. + " 1x ἀγνοεῖτε + " 1x ἀγνοεῖτε, + " 1x ἀγνοημάτων, + " 1x ἀγνοούμενοι + " 1x ἀγνοούμενος + " 1x ἀγνοοῦμεν. + " 2x ἀγνοοῦντες + " 2x ἀγνοοῦσιν + " 2x ἀγνοῶν + " 1x ἀγνωσίαν + " 1x ἀγνωσίαν· + " 2x ἀγοράζει + " 2x ἀγοράζοντας + " 1x ἀγοράζοντες + " 3x ἀγοράσαι + " 1x ἀγοράσαντα + " 1x ἀγοράσας + " 1x ἀγοράσατε + " 3x ἀγοράσωμεν + " 2x ἀγοράσωσιν + " 1x ἀγοράσωσιν. + " 1x ἀγοραίων + " 1x ἀγορασάτω + " 1x ἀγοραῖοι + " 5x ἀγοραῖς + " 1x ἀγοραῖς. + " 1x ἀγορὰν + " 1x ἀγορᾶς + " 3x ἀγορᾷ + " 1x ἀγράμματοί + " 1x ἀγραυλοῦντες + " 1x ἀγρεύσωσιν + " 1x ἀγριέλαιος + " 1x ἀγριελαίου + " 1x ἀγρούς. + " 1x ἀγρούς· + " 6x ἀγροὺς + " 1x ἀγροὺς, + " 4x ἀγροῦ + " 2x ἀγροῦ, + " 1x ἀγροῦ. + " 1x ἀγρυπνίαις + " 1x ἀγρυπνίαις, + " 1x ἀγρυπνεῖτε + " 1x ἀγρυπνεῖτε· + " 1x ἀγρυπνοῦντες + " 1x ἀγρυπνοῦσιν + " 1x ἀγρόν, + " 1x ἀγρόν· + " 1x ἀγρός + " 4x ἀγρὸν + " 1x ἀγρὸς + " 1x ἀγρῶν. + " 5x ἀγρῷ + " 2x ἀγρῷ, + " 1x ἀγρῷ; + " 1x ἀγρῷ· + " 1x ἀγωγῇ, + " 1x ἀγωνίζου + " 1x ἀγωνίᾳ + " 1x ἀγωνιζόμεθα, + " 3x ἀγωνιζόμενος + " 1x ἀγόμενα + " 4x ἀγῶνα + " 1x ἀγῶνα, + " 1x ἀγῶνι. + " 1x ἀδάπανον + " 1x ἀδήλως, + " 1x ἀδίκημά + " 1x ἀδίκημα + " 1x ἀδίκους + " 1x ἀδίκους. + " 2x ἀδίκων, + " 1x ἀδίκων. + " 1x ἀδίκως. + " 1x ἀδίκῳ + " 1x ἀδελφάς, + " 4x ἀδελφέ, + " 1x ἀδελφέ. + " 1x ἀδελφή + " 1x ἀδελφαί + " 3x ἀδελφαὶ + " 27x ἀδελφοί + " 72x ἀδελφοί, + " 3x ἀδελφοί. + " 3x ἀδελφοί; + " 4x ἀδελφοί· + " 3x ἀδελφούς + " 4x ἀδελφούς, + " 2x ἀδελφούς. + " 2x ἀδελφούς· + " 29x ἀδελφοὶ + " 28x ἀδελφοὺς + " 12x ἀδελφοῖς + " 1x ἀδελφοῖς, + " 2x ἀδελφοῖς. + " 2x ἀδελφοῖς· + " 14x ἀδελφοῦ + " 2x ἀδελφοῦ, + " 1x ἀδελφοῦ. + " 6x ἀδελφόν + " 1x ἀδελφόν. + " 1x ἀδελφόν· + " 11x ἀδελφός + " 2x ἀδελφός. + " 1x ἀδελφότητα + " 1x ἀδελφότητι + " 4x ἀδελφὰς + " 7x ἀδελφὴ + " 5x ἀδελφὴν + " 33x ἀδελφὸν + " 30x ἀδελφὸς + " 3x ἀδελφῆς + " 1x ἀδελφῇ + " 15x ἀδελφῶν + " 4x ἀδελφῶν. + " 2x ἀδελφῶν· + " 12x ἀδελφῷ + " 1x ἀδελφῷ, + " 1x ἀδελφῷ· + " 1x ἀδηλότητι, + " 1x ἀδημονεῖν, + " 1x ἀδημονεῖν. + " 1x ἀδημονῶν, + " 1x ἀδιάκριτος, + " 1x ἀδιάλειπτον + " 1x ἀδιάλειπτος + " 3x ἀδιαλείπτως + " 1x ἀδιαλείπτως, + " 1x ἀδικήματα + " 1x ἀδικήσαντος + " 1x ἀδικήσει. + " 1x ἀδικήσητε + " 1x ἀδικήσουσιν + " 1x ἀδικήσῃς. + " 4x ἀδικία + " 1x ἀδικίαις + " 2x ἀδικίαν + " 7x ἀδικίας + " 3x ἀδικίας, + " 2x ἀδικίας. + " 1x ἀδικίας· + " 2x ἀδικίᾳ + " 2x ἀδικίᾳ, + " 1x ἀδικίᾳ. + " 1x ἀδικεῖσθε; + " 2x ἀδικεῖτε + " 1x ἀδικηθέντος, + " 1x ἀδικηθῇ + " 1x ἀδικησάτω + " 1x ἀδικούμενοι + " 1x ἀδικούμενον + " 1x ἀδικοῦσιν. + " 2x ἀδικῆσαι + " 2x ἀδικῆσαι, + " 2x ἀδικῶ + " 3x ἀδικῶν + " 1x ἀδυνάτων + " 2x ἀδυνατήσει + " 1x ἀδόκιμοί + " 2x ἀδόκιμοι + " 2x ἀδόκιμοι. + " 1x ἀδόκιμον + " 2x ἀδόκιμος + " 1x ἀδύνατα + " 4x ἀδύνατον + " 1x ἀδύνατον, + " 1x ἀδύνατος + " 1x ἀδύνατόν + " 1x ἀετοί. + " 1x ἀετοὶ + " 2x ἀετοῦ + " 1x ἀετῷ + " 6x ἀεὶ + " 1x ἀζύμοις + " 3x ἀζύμων + " 3x ἀζύμων, + " 1x ἀθά. + " 1x ἀθέμιτόν + " 2x ἀθέσμων + " 1x ἀθέτησιν + " 1x ἀθέτησις + " 2x ἀθανασίαν, + " 1x ἀθανασίαν. + " 1x ἀθεμίτοις + " 1x ἀθετήσας + " 1x ἀθετήσω. + " 3x ἀθετεῖ + " 1x ἀθετεῖ· + " 1x ἀθετεῖτε + " 1x ἀθετοῦσιν, + " 1x ἀθετῆσαι + " 1x ἀθετῶ + " 4x ἀθετῶν + " 1x ἀθλήσῃ. + " 1x ἀθλῇ + " 1x ἀθυμῶσιν. + " 1x ἀθῷον. + " 1x ἀκάθαρτά + " 4x ἀκάθαρτα + " 1x ἀκάθαρτα, + " 7x ἀκάθαρτον + " 1x ἀκάθαρτον, + " 1x ἀκάθαρτον. + " 1x ἀκάθαρτος + " 1x ἀκάκων. + " 4x ἀκάνθας + " 2x ἀκάνθας, + " 2x ἀκάνθινον + " 1x ἀκάρποις + " 1x ἀκάρπους + " 1x ἀκέραιοι + " 1x ἀκέραιοι, + " 1x ἀκαίρως, + " 2x ἀκαθάρτοις + " 3x ἀκαθάρτου + " 1x ἀκαθάρτου, + " 2x ἀκαθάρτων + " 2x ἀκαθάρτων, + " 2x ἀκαθάρτῳ + " 3x ἀκαθάρτῳ, + " 1x ἀκαθαρσία + " 1x ἀκαθαρσία, + " 1x ἀκαθαρσίαν + " 1x ἀκαθαρσίαν, + " 2x ἀκαθαρσίας + " 1x ἀκαθαρσίας. + " 3x ἀκαθαρσίᾳ + " 4x ἀκανθῶν + " 1x ἀκανθῶν, + " 1x ἀκατάγνωστον, + " 1x ἀκατάκριτον + " 1x ἀκατάστατον + " 1x ἀκατάστατος + " 1x ἀκατακάλυπτον + " 1x ἀκατακαλύπτῳ + " 1x ἀκατακρίτους, + " 1x ἀκαταλύτου. + " 1x ἀκαταπαύστους + " 1x ἀκαταστασία + " 1x ἀκαταστασίαι· + " 1x ἀκαταστασίαις, + " 1x ἀκαταστασίας + " 1x ἀκαταστασίας, + " 1x ἀκεραίους + " 1x ἀκηκοότας + " 2x ἀκηκόαμεν + " 3x ἀκηκόαμεν, + " 1x ἀκηκόασιν + " 2x ἀκηκόατε + " 1x ἀκλινῆ, + " 1x ἀκοή, + " 1x ἀκοή; + " 1x ἀκοήν, + " 1x ἀκοαί, + " 1x ἀκοαῖς. + " 1x ἀκολουθήσαντές + " 2x ἀκολουθήσατε + " 1x ἀκολουθήσεις + " 1x ἀκολουθήσουσιν, + " 1x ἀκολουθήσω + " 3x ἀκολουθείτω + " 1x ἀκολουθείτω, + " 4x ἀκολουθεῖ + " 1x ἀκολουθεῖ, + " 1x ἀκολουθησάντων + " 1x ἀκολουθούσης + " 1x ἀκολουθοῦντα, + " 1x ἀκολουθοῦντας + " 4x ἀκολουθοῦντες + " 1x ἀκολουθοῦντι + " 1x ἀκολουθοῦσίν + " 2x ἀκολουθοῦσιν + " 1x ἀκολουθῆσαι + " 1x ἀκολουθῆσαι, + " 2x ἀκολουθῶν + " 4x ἀκολούθει + " 1x ἀκολούθει. + " 7x ἀκουέτω. + " 3x ἀκουσάντων + " 7x ἀκουσάτω + " 1x ἀκουσάτω. + " 1x ἀκουσάτωσαν + " 1x ἀκουσθήσεται, + " 1x ἀκουσθεῖσιν, + " 4x ἀκουσθῇ + " 1x ἀκουόντων. + " 8x ἀκούει + " 4x ἀκούει, + " 2x ἀκούει. + " 1x ἀκούει· + " 15x ἀκούειν + " 2x ἀκούειν, + " 2x ἀκούειν; + " 1x ἀκούειν· + " 1x ἀκούεις + " 1x ἀκούεις, + " 1x ἀκούεις· + " 1x ἀκούεται + " 8x ἀκούετε + " 2x ἀκούετε, + " 3x ἀκούετε. + " 3x ἀκούετε; + " 1x ἀκούετε· + " 3x ἀκούομεν + " 2x ἀκούοντάς + " 2x ἀκούοντα + " 3x ἀκούοντας + " 1x ἀκούοντας. + " 14x ἀκούοντες + " 1x ἀκούοντι + " 1x ἀκούοντος + " 3x ἀκούουσιν + " 4x ἀκούουσιν, + " 2x ἀκούουσιν. + " 45x ἀκούσαντες + " 3x ἀκούσαντες, + " 29x ἀκούσας + " 2x ἀκούσασα + " 1x ἀκούσασιν. + " 2x ἀκούσατέ + " 2x ἀκούσατε + " 3x ἀκούσατε. + " 1x ἀκούσει + " 1x ἀκούσεσθε + " 2x ἀκούσετε + " 2x ἀκούσητε + " 3x ἀκούσητε, + " 1x ἀκούσονται + " 1x ἀκούσονται. + " 2x ἀκούσουσιν + " 1x ἀκούσουσιν, + " 8x ἀκούσωσιν + " 6x ἀκούσῃ + " 2x ἀκούσῃ, + " 6x ἀκούω + " 11x ἀκούων + " 1x ἀκούων, + " 1x ἀκούων. + " 1x ἀκούωσιν + " 4x ἀκοὰς + " 3x ἀκοὴ + " 2x ἀκοὴν + " 4x ἀκοῆς + " 1x ἀκοῆς, + " 3x ἀκοῇ + " 2x ἀκοῦσαί + " 13x ἀκοῦσαι + " 1x ἀκοῦσαι, + " 1x ἀκοῦσαι. + " 1x ἀκράτου + " 1x ἀκρίβειαν + " 1x ἀκρίδας + " 2x ἀκρίδες + " 1x ἀκρίδων + " 1x ἀκρασίαν + " 1x ἀκρασίας. + " 1x ἀκρατεῖς, + " 4x ἀκριβέστερον + " 1x ἀκριβεστάτην + " 5x ἀκριβῶς + " 1x ἀκροατήριον + " 2x ἀκροαταὶ + " 2x ἀκροατὴς + " 6x ἀκροβυστία + " 3x ἀκροβυστία, + " 2x ἀκροβυστίαν + " 1x ἀκροβυστίαν; + " 1x ἀκροβυστίας + " 1x ἀκροβυστίας, + " 3x ἀκροβυστίᾳ + " 1x ἀκροβυστίᾳ, + " 1x ἀκροβυστίᾳ; + " 1x ἀκροβυστίᾳ· + " 1x ἀκρογωνιαίου + " 1x ἀκρογωνιαῖον + " 1x ἀκροθινίων + " 1x ἀκυροῖ, + " 1x ἀκυροῦντες + " 1x ἀκωλύτως. + " 4x ἀλάβαστρον + " 1x ἀλάλους + " 5x ἀλέκτορα + " 5x ἀλέκτωρ + " 1x ἀλέκτωρ. + " 1x ἀλήθειά + " 11x ἀλήθεια + " 1x ἀλήθεια. + " 1x ἀλήθεια; + " 15x ἀλήθειαν + " 3x ἀλήθειαν, + " 3x ἀλήθειαν. + " 1x ἀλήθειαν· + " 2x ἀλήθουσαι + " 1x ἀλαζονία + " 1x ἀλαζονίαις + " 1x ἀλαζόνας, + " 1x ἀλαζόνες, + " 1x ἀλαλάζον. + " 1x ἀλαλάζοντας + " 1x ἀλαλήτοις· + " 1x ἀλείψαντες + " 1x ἀλείψασα + " 1x ἀλείψωσιν + " 1x ἀλεκτοροφωνίας + " 2x ἀλεύρου + " 2x ἀληθές + " 9x ἀληθής + " 1x ἀληθής, + " 2x ἀληθής. + " 1x ἀληθής· + " 25x ἀληθείας + " 10x ἀληθείας, + " 7x ἀληθείας. + " 1x ἀληθείας· + " 10x ἀληθείᾳ + " 7x ἀληθείᾳ, + " 6x ἀληθείᾳ. + " 6x ἀληθείᾳ· + " 1x ἀληθεύοντες + " 1x ἀληθεύων + " 1x ἀληθεῖς, + " 1x ἀληθινή + " 1x ἀληθινή, + " 3x ἀληθιναὶ + " 1x ἀληθινοί + " 1x ἀληθινοί, + " 2x ἀληθινοὶ + " 2x ἀληθινόν· + " 3x ἀληθινός, + " 1x ἀληθινὴ + " 3x ἀληθινὸν + " 1x ἀληθινὸν, + " 3x ἀληθινὸς + " 1x ἀληθινῆς + " 1x ἀληθινῆς, + " 1x ἀληθινῶν, + " 2x ἀληθινῷ, + " 1x ἀληθοῦς + " 2x ἀληθὲς + " 3x ἀληθὴς + " 3x ἀληθῆ + " 1x ἀληθῆ, + " 11x ἀληθῶς + " 1x ἀληθῶς, + " 1x ἀλισγημάτων + " 2x ἀλλά + " 1x ἀλλάξαι + " 1x ἀλλάξει + " 8x ἀλλήλοις + " 1x ἀλλήλοις, + " 4x ἀλλήλοις. + " 48x ἀλλήλους + " 10x ἀλλήλους, + " 5x ἀλλήλους. + " 1x ἀλλήλους; + " 3x ἀλλήλους· + " 12x ἀλλήλων + " 5x ἀλλήλων, + " 1x ἀλλήλων. + " 1x ἀλλήλων· + " 1x ἀλλαγήσονται· + " 1x ἀλλαγησόμεθα, + " 1x ἀλλαγησόμεθα. + " 1x ἀλλαχοῦ + " 1x ἀλλαχόθεν, + " 1x ἀλληγορούμενα· + " 1x ἀλλογενὴς + " 1x ἀλλοτρίαις· + " 1x ἀλλοτρίαν, + " 1x ἀλλοτρίοις + " 1x ἀλλοτρίων + " 1x ἀλλοτρίων, + " 1x ἀλλοτρίων. + " 1x ἀλλοτρίων; + " 1x ἀλλοτρίᾳ, + " 3x ἀλλοτρίῳ + " 1x ἀλλοτρίῳ, + " 1x ἀλλοτριεπίσκοπος· + " 1x ἀλλοφύλῳ· + " 2x ἀλλότριον + " 411x ἀλλὰ + " 214x ἀλλ’ + " 1x ἀλοῶν + " 1x ἀλοῶντα + " 1x ἀλοῶντα. + " 1x ἀλυπότερος + " 1x ἀλυσιτελὲς + " 1x ἀλόης + " 2x ἀλώπεκες + " 1x ἀλώπεκι + " 1x ἀμάραντον, + " 1x ἀμάρτυρον + " 1x ἀμάχους + " 1x ἀμέθυστος. + " 1x ἀμέλει + " 1x ἀμέμπτους + " 2x ἀμέμπτως + " 19x ἀμήν. + " 1x ἀμήτωρ, + " 1x ἀμίαντον + " 1x ἀμίαντος + " 2x ἀμίαντος, + " 1x ἀμαθεῖς + " 1x ἀμαράντινον + " 2x ἀμελήσαντες + " 2x ἀμερίμνους + " 1x ἀμετάθετον + " 1x ἀμεταθέτων, + " 1x ἀμετακίνητοι, + " 1x ἀμεταμέλητα + " 1x ἀμεταμέλητον + " 1x ἀμετανόητον + " 1x ἀμησάντων + " 1x ἀμνοῦ + " 1x ἀμνὸς + " 1x ἀμοιβὰς + " 4x ἀμπέλου + " 1x ἀμπέλῳ, + " 1x ἀμπελουργόν + " 7x ἀμπελῶνα + " 3x ἀμπελῶνα, + " 1x ἀμπελῶνα. + " 1x ἀμπελῶνι + " 1x ἀμπελῶνι. + " 5x ἀμπελῶνος + " 1x ἀμπελῶνος, + " 1x ἀμπελῶνος. + " 2x ἀμπελῶνος; + " 1x ἀμπελῶνος· + " 1x ἀμφίβληστρον + " 1x ἀμφιέζει, + " 1x ἀμφιέννυσιν, + " 1x ἀμφιβάλλοντας + " 1x ἀμφοτέροις + " 1x ἀμφοτέρους + " 1x ἀμφοτέρων + " 1x ἀμφόδου, + " 3x ἀμφότερα + " 1x ἀμφότερα. + " 7x ἀμφότεροι + " 1x ἀμώμητοι + " 1x ἀμώμου + " 3x ἀμώμους + " 67x ἀμὴν + " 1x ἀνάβητε + " 1x ἀνάβλεψιν, + " 1x ἀνάβλεψον. + " 2x ἀνάγαιον + " 2x ἀνάγεσθαι + " 2x ἀνάγκαις, + " 1x ἀνάγκασον + " 5x ἀνάγκη + " 3x ἀνάγκην + " 3x ἀνάγκην, + " 1x ἀνάγκης + " 1x ἀνάγκης· + " 1x ἀνάγκῃ + " 1x ἀνάγνωσιν + " 1x ἀνάδειξον + " 3x ἀνάθεμα + " 1x ἀνάθεμα. + " 1x ἀνάκυψας + " 3x ἀνάμνησιν. + " 1x ἀνάμνησις + " 1x ἀνάξιοί + " 3x ἀνάπαυσιν + " 2x ἀνάπαυσιν, + " 1x ἀνάπαυσόν + " 1x ἀνάπεσε + " 1x ἀνάπεσε, + " 1x ἀνάπτει· + " 1x ἀνάστα + " 11x ἀνάστασιν + " 1x ἀνάστασιν, + " 6x ἀνάστασις + " 3x ἀνάστηθι + " 1x ἀνάστηθι. + " 1x ἀνάχυσιν, + " 1x ἀνέβαινον + " 18x ἀνέβη + " 2x ἀνέβη, + " 3x ἀνέβην + " 10x ἀνέβησαν + " 1x ἀνέβλεψέν + " 1x ἀνέβλεψα + " 1x ἀνέβλεψα. + " 1x ἀνέβλεψαν + " 3x ἀνέβλεψεν, + " 1x ἀνέβλεψεν. + " 1x ἀνέγκλητοι + " 1x ἀνέγκλητον + " 1x ἀνέγκλητος, + " 1x ἀνέγνωσαν + " 10x ἀνέγνωτε + " 1x ἀνέδειξεν + " 2x ἀνέζησεν, + " 1x ἀνέθετο + " 1x ἀνέθη. + " 1x ἀνέκειτο + " 1x ἀνέκλειπτον + " 1x ἀνέκλινεν + " 1x ἀνέκραγον + " 1x ἀνέκραξαν· + " 2x ἀνέκραξεν + " 1x ἀνέλεος + " 2x ἀνέλωσιν + " 1x ἀνέλωσιν· + " 2x ἀνέμοις + " 5x ἀνέμου + " 2x ἀνέμου, + " 2x ἀνέμους + " 4x ἀνέμων + " 4x ἀνέμῳ + " 1x ἀνέντες + " 3x ἀνέξομαι + " 1x ἀνέξονται, + " 1x ἀνέπαυσαν + " 1x ἀνέπεμψά + " 3x ἀνέπεμψεν + " 2x ἀνέπεσαν + " 2x ἀνέπεσεν + " 1x ἀνέπεσεν, + " 1x ἀνέπεσεν. + " 1x ἀνέσεισαν + " 9x ἀνέστη + " 1x ἀνέστη, + " 4x ἀνέστη. + " 2x ἀνέστησαν + " 4x ἀνέστησεν + " 3x ἀνέτειλεν + " 1x ἀνέτρεψεν, + " 1x ἀνέχεσθέ + " 3x ἀνέχεσθε + " 1x ἀνέχεσθε, + " 1x ἀνέχεσθε. + " 1x ἀνέψυξεν, + " 2x ἀνέῳγεν + " 1x ἀνέῳξεν + " 3x ἀνήγαγον + " 1x ἀνήγγειλάν + " 1x ἀνήγγελλον + " 1x ἀνήμεροι, + " 1x ἀνήνεγκεν + " 2x ἀνήρ + " 7x ἀνήρ, + " 2x ἀνήρ· + " 1x ἀνήφθη. + " 2x ἀνήχθη + " 2x ἀνήχθημεν + " 1x ἀνήχθημεν, + " 1x ἀνήχθημεν. + " 1x ἀνήχθησαν. + " 1x ἀνίπτοις + " 1x ἀνίπτοις, + " 1x ἀνίστασθαι + " 1x ἀνίσταται + " 1x ἀναίτιοί + " 2x ἀναβάντα + " 1x ἀναβάντες + " 1x ἀναβάντων + " 1x ἀναβέβηκα + " 1x ἀναβέβηκεν + " 1x ἀναβήσεται + " 3x ἀναβαίνει + " 1x ἀναβαίνει, + " 4x ἀναβαίνειν + " 3x ἀναβαίνομεν + " 3x ἀναβαίνοντα + " 1x ἀναβαίνοντας + " 1x ἀναβαίνοντες + " 1x ἀναβαίνουσιν + " 1x ἀναβαίνω + " 3x ἀναβαίνων + " 1x ἀναβαθμούς, + " 1x ἀναβαθμῶν + " 2x ἀναβαινόντων + " 2x ἀναβαῖνον + " 1x ἀναβαῖνον, + " 1x ἀναβιβάσαντες + " 1x ἀναβλέπουσιν + " 1x ἀναβλέπουσιν, + " 1x ἀναβλέψαντος + " 6x ἀναβλέψας + " 1x ἀναβλέψασαι + " 2x ἀναβλέψω. + " 1x ἀναβλέψῃ. + " 1x ἀναβλέψῃς + " 1x ἀναβολὴν + " 6x ἀναβὰς + " 1x ἀναγαγεῖν + " 1x ἀναγαγεῖν. + " 1x ἀναγαγών + " 2x ἀναγαγὼν + " 1x ἀναγγέλλομεν + " 1x ἀναγγέλλοντες + " 1x ἀναγγέλλων + " 4x ἀναγγελεῖ + " 2x ἀναγγεῖλαι + " 1x ἀναγεγεννημένοι + " 1x ἀναγεννήσας + " 1x ἀναγινωσκομένας + " 1x ἀναγινωσκομένη + " 1x ἀναγινωσκόμενος. + " 2x ἀναγινώσκεις; + " 1x ἀναγινώσκετε + " 1x ἀναγινώσκηται + " 1x ἀναγινώσκοντες + " 1x ἀναγινώσκοντος + " 3x ἀναγινώσκων + " 1x ἀναγκάζεις + " 1x ἀναγκάζουσιν + " 1x ἀναγκαίας + " 1x ἀναγκαίους + " 1x ἀναγκαιότερον + " 1x ἀναγκαστῶς + " 1x ἀναγκαῖά + " 4x ἀναγκαῖον + " 1x ἀναγνοὺς + " 1x ἀναγνωσθῆναι + " 1x ἀναγνωσθῇ + " 1x ἀναγνωσθῇ, + " 1x ἀναγνόντες + " 1x ἀναγνώσει + " 1x ἀναγνώσει, + " 1x ἀναγνῶναι. + " 1x ἀναγνῶτε. + " 1x ἀναγομένοις + " 1x ἀναδείξεως + " 1x ἀναδεξάμενος + " 1x ἀναδεξάμενος, + " 1x ἀναδόντες + " 1x ἀναζητοῦντες + " 1x ἀναζητῆσαι + " 1x ἀναζωπυρεῖν + " 1x ἀναζωσάμενοι + " 1x ἀναθήμασιν + " 1x ἀναθεματίζειν + " 1x ἀναθεωροῦντες + " 1x ἀναθεωρῶν + " 1x ἀναιδίαν + " 1x ἀναιρέσει + " 1x ἀναιρεθῆναι + " 1x ἀναιρεθῆναι. + " 1x ἀναιρεῖ + " 1x ἀναιρεῖν, + " 1x ἀναιρεῖσθαι + " 1x ἀναιρουμένων + " 1x ἀναιρούντων + " 1x ἀναιτίους. + " 1x ἀνακάμψαι + " 1x ἀνακάμψαι· + " 1x ἀνακάμψει. + " 1x ἀνακάμψω + " 1x ἀνακαινίζειν + " 1x ἀνακαινούμενον + " 1x ἀνακαινοῦται + " 1x ἀνακαινώσει + " 1x ἀνακαινώσεως + " 1x ἀνακαλυπτόμενον, + " 2x ἀνακείμενος + " 1x ἀνακείμενος; + " 1x ἀνακειμένοις + " 1x ἀνακειμένοις, + " 1x ἀνακειμένου + " 1x ἀνακειμένου. + " 2x ἀνακειμένους + " 3x ἀνακειμένων + " 1x ἀνακειμένων. + " 1x ἀνακεκαλυμμένῳ + " 1x ἀνακεκύλισται + " 1x ἀνακεφαλαιοῦται, + " 1x ἀνακεφαλαιώσασθαι + " 2x ἀνακλιθήσονται + " 2x ἀνακλιθῆναι + " 1x ἀνακλινεῖ + " 1x ἀνακράξας + " 1x ἀνακρίναντές + " 3x ἀνακρίνας + " 1x ἀνακρίνει + " 1x ἀνακρίνεται + " 2x ἀνακρίνεται. + " 3x ἀνακρίνοντες + " 1x ἀνακρίνουσίν + " 1x ἀνακρίνω· + " 1x ἀνακρίνων + " 1x ἀνακρίσεως + " 1x ἀνακριθῶ + " 1x ἀνακρινόμεθα + " 1x ἀνακύψαι + " 1x ἀνακύψας + " 1x ἀνακύψατε + " 1x ἀναλάβετε + " 1x ἀναλήμψεως + " 3x ἀναλαβόντες + " 1x ἀναλαβὼν + " 1x ἀναλαμβάνειν + " 1x ἀναλημφθεὶς + " 1x ἀναλογίαν + " 1x ἀναλογίσασθε + " 1x ἀναλωθῆτε. + " 1x ἀναλύσεώς + " 1x ἀναλύσῃ + " 1x ἀναλῦσαι + " 1x ἀναλῶσαι + " 1x ἀναμάρτητος + " 1x ἀναμένειν + " 1x ἀναμιμνῃσκομένου + " 1x ἀναμιμνῄσκω + " 1x ἀναμνήσει + " 1x ἀναμνησθεὶς + " 1x ἀνανήψωσιν + " 1x ἀνανεοῦσθαι + " 1x ἀναντιρρήτων + " 1x ἀναντιρρήτως + " 1x ἀναξίως, + " 1x ἀναπέμψω + " 2x ἀναπέπαυται + " 1x ἀναπήρους + " 1x ἀναπήρους, + " 1x ἀναπαήσονται + " 2x ἀναπαύεσθε· + " 1x ἀναπαύεται. + " 1x ἀναπαύου, + " 1x ἀναπαύσασθε + " 1x ἀναπαύσω + " 1x ἀναπαύσωνται + " 1x ἀναπείθει + " 2x ἀναπεσεῖν + " 1x ἀναπεσεῖν. + " 1x ἀναπεσὼν + " 1x ἀναπηδήσας + " 1x ἀναπληροῦται + " 1x ἀναπληρώσετε + " 1x ἀναπληρώσῃ + " 1x ἀναπληρῶν + " 1x ἀναπληρῶσαι + " 1x ἀναπολογήτους, + " 1x ἀναπολόγητος + " 1x ἀναρίθμητος. + " 1x ἀνασκευάζοντες + " 1x ἀνασπάσει + " 6x ἀναστάντες + " 6x ἀναστάσει + " 1x ἀναστάσει, + " 15x ἀναστάσεως + " 1x ἀναστάσεως, + " 1x ἀναστάσεώς + " 3x ἀναστήσας + " 3x ἀναστήσει + " 1x ἀναστήσεται + " 3x ἀναστήσεται. + " 4x ἀναστήσονται + " 4x ἀναστήσω + " 1x ἀναστατοῦντες + " 1x ἀναστατώσαντες + " 1x ἀναστατώσας + " 1x ἀνασταυροῦντας + " 1x ἀναστενάξας + " 1x ἀναστράφητε, + " 1x ἀναστρέφεσθαι, + " 1x ἀναστρέφεσθαι. + " 1x ἀναστρέψαντες + " 1x ἀναστρέψω + " 1x ἀναστρεφομένους, + " 1x ἀναστρεφομένων + " 1x ἀναστροφήν + " 1x ἀναστροφήν. + " 1x ἀναστροφαῖς + " 3x ἀναστροφὴν + " 5x ἀναστροφῆς + " 1x ἀναστροφῇ + " 1x ἀναστροφῇ, + " 1x ἀναστὰν + " 27x ἀναστὰς + " 1x ἀναστᾶσα + " 3x ἀναστῆναι + " 3x ἀναστῆναι. + " 1x ἀναστῆναι· + " 1x ἀναστῇ + " 1x ἀναστῇ. + " 2x ἀναστῶσιν, + " 1x ἀνατάξασθαι + " 1x ἀνατέλλει + " 1x ἀνατέλλουσαν + " 1x ἀνατέταλκεν + " 2x ἀνατείλαντος + " 1x ἀνατείλῃ + " 1x ἀνατεθραμμένος + " 1x ἀνατολὴ + " 4x ἀνατολῆς + " 1x ἀνατολῇ + " 1x ἀνατολῇ, + " 4x ἀνατολῶν + " 2x ἀνατρέπουσιν + " 1x ἀναφάναντες + " 2x ἀναφέρει + " 1x ἀναφέρειν, + " 1x ἀναφέρωμεν + " 1x ἀναφαίνεσθαι· + " 1x ἀναχθέντες + " 2x ἀναχθῆναι + " 1x ἀναχωρήσαντες + " 1x ἀναχωρήσας + " 1x ἀναψύξεως + " 3x ἀνδράσιν + " 4x ἀνδράσιν, + " 2x ἀνδρί. + " 1x ἀνδρίζεσθε, + " 1x ἀνδραποδισταῖς, + " 1x ἀνδροφόνοις, + " 1x ἀνδρός + " 2x ἀνδρός, + " 2x ἀνδρός. + " 1x ἀνδρός· + " 17x ἀνδρὶ + " 10x ἀνδρὸς + " 7x ἀνδρῶν + " 1x ἀνείλατε, + " 1x ἀνείλατο + " 1x ἀνείχεσθέ + " 1x ἀνεβαίνομεν + " 1x ἀνεβόησεν + " 2x ἀνεγίνωσκεν + " 2x ἀνεγκλήτους + " 1x ἀνεζήτουν + " 1x ἀνεθάλετε + " 1x ἀνεθέμην + " 2x ἀνεθεμάτισαν + " 1x ἀνεθεματίσαμεν + " 1x ἀνεθρέψατο + " 1x ἀνεκάθισεν + " 1x ἀνεκάθισεν. + " 1x ἀνεκδιηγήτῳ + " 1x ἀνεκλαλήτῳ + " 5x ἀνεκτότερον + " 1x ἀνελάβετε + " 4x ἀνελήμφθη + " 1x ἀνελήμφθη· + " 1x ἀνελεήμονας· + " 1x ἀνελεῖ + " 6x ἀνελεῖν + " 1x ἀνεμιζομένῳ + " 1x ἀνεμνήσθη + " 1x ἀνενέγκαι + " 1x ἀνενέγκας + " 1x ἀνενέγκας. + " 1x ἀνενεγκεῖν + " 1x ἀνεξίκακον, + " 1x ἀνεξεραύνητα + " 1x ἀνεξιχνίαστοι + " 1x ἀνεξιχνίαστον + " 1x ἀνεπίλημπτοι + " 2x ἀνεπίλημπτον + " 1x ἀνεπαίσχυντον, + " 1x ἀνεπλήρωσαν· + " 1x ἀνεσπάσθη + " 1x ἀνεστράφημέν + " 1x ἀνεστράφημεν + " 1x ἀνεσχόμην + " 1x ἀνετάζειν· + " 1x ἀνετάζεσθαι + " 1x ἀνετράφη + " 1x ἀνευθέτου + " 1x ἀνευρόντες + " 1x ἀνεφέρετο + " 1x ἀνεφώνησεν + " 1x ἀνεχόμεθα, + " 2x ἀνεχόμενοι + " 1x ἀνεχώρησαν + " 8x ἀνεχώρησεν + " 1x ἀνεχώρησεν, + " 1x ἀνεψιὸς + " 1x ἀνεῖλαν + " 2x ἀνεῖλεν + " 1x ἀνεῖλες + " 1x ἀνεῦραν + " 1x ἀνεῳγμένας + " 1x ἀνεῳγμένης + " 1x ἀνεῳγμένον + " 1x ἀνεῳγμένος + " 1x ἀνεῳγμένων + " 1x ἀνεῳγότα + " 1x ἀνεῳχθῆναι + " 1x ἀνεῴχθη + " 1x ἀνεῴχθησαν + " 2x ἀνηγγέλη + " 2x ἀνθέξεται + " 1x ἀνθέστηκεν; + " 1x ἀνθέστηκεν· + " 1x ἀνθίστανται + " 1x ἀνθίστατο + " 1x ἀνθεστηκότες + " 2x ἀνθρακιὰν + " 2x ἀνθρωπάρεσκοι, + " 2x ἀνθρωπίνης + " 1x ἀνθρωπίνων + " 1x ἀνθρωπίνῃ + " 1x ἀνθρωπίνῃ, + " 3x ἀνθρωποκτόνος + " 1x ἀνθρώπινον + " 1x ἀνθρώπινος· + " 26x ἀνθρώποις + " 6x ἀνθρώποις, + " 8x ἀνθρώποις. + " 4x ἀνθρώποις· + " 93x ἀνθρώπου + " 13x ἀνθρώπου, + " 13x ἀνθρώπου. + " 4x ἀνθρώπου; + " 5x ἀνθρώπου· + " 27x ἀνθρώπους + " 2x ἀνθρώπους, + " 1x ἀνθρώπους. + " 1x ἀνθρώπους· + " 45x ἀνθρώπων + " 24x ἀνθρώπων, + " 17x ἀνθρώπων. + " 4x ἀνθρώπων; + " 1x ἀνθρώπων;— + " 8x ἀνθρώπων· + " 23x ἀνθρώπῳ + " 1x ἀνθρώπῳ. + " 1x ἀνθυπάτου + " 1x ἀνθυπάτῳ + " 1x ἀνθωμολογεῖτο + " 1x ἀνθύπατοί + " 1x ἀνθύπατον + " 1x ἀνθύπατος + " 5x ἀνθ’ + " 1x ἀνιέντες + " 1x ἀνιστάμενος + " 1x ἀνοήτοις + " 1x ἀνοήτους + " 1x ἀνοίας, + " 2x ἀνοίγει + " 1x ἀνοίγει, + " 1x ἀνοίγειν + " 1x ἀνοίγων + " 3x ἀνοίξαντες + " 5x ἀνοίξας + " 1x ἀνοίξει + " 1x ἀνοίξωσιν + " 2x ἀνοίξῃ + " 2x ἀνοιγήσεται + " 2x ἀνοιγήσεται. + " 1x ἀνοιγῶσιν + " 2x ἀνοικοδομήσω + " 1x ἀνομία. + " 1x ἀνομίαι + " 2x ἀνομίαν + " 2x ἀνομίαν, + " 1x ἀνομίαν. + " 1x ἀνομίαν· + " 1x ἀνομίας + " 1x ἀνομίας, + " 1x ἀνομίας. + " 1x ἀνομίας· + " 1x ἀνομίᾳ + " 1x ἀνομίᾳ, + " 1x ἀνομιῶν + " 1x ἀνορθώθη, + " 1x ἀνορθώσατε, + " 1x ἀνορθώσω + " 1x ἀνοσίοις + " 1x ἀνοχῆς + " 1x ἀνοχῇ + " 6x ἀνοῖξαι + " 1x ἀνοῖξαι; + " 2x ἀντάλλαγμα + " 1x ἀντέλεγον + " 1x ἀντέστη + " 1x ἀντέστην, + " 1x ἀντέστησαν + " 1x ἀντέχεσθε + " 2x ἀντίδικος + " 2x ἀντίκειται, + " 1x ἀντίλυτρον + " 2x ἀντίστητε + " 1x ἀντίτυπα + " 1x ἀντίτυπον + " 1x ἀντίχριστοι + " 1x ἀντίχριστος + " 1x ἀντίχριστος, + " 1x ἀντίχριστος. + " 1x ἀνταγωνιζόμενοι, + " 1x ἀνταναπληρῶ + " 2x ἀνταποδοθήσεται + " 1x ἀνταποδοῦναί + " 2x ἀνταποδοῦναι + " 1x ἀνταποδώσω, + " 1x ἀνταποδώσω· + " 1x ἀνταποκριθῆναι + " 1x ἀνταποκρινόμενος + " 1x ἀνταπόδομά + " 1x ἀνταπόδομα + " 1x ἀνταπόδοσιν + " 1x ἀντειπεῖν + " 1x ἀντειπεῖν. + " 1x ἀντελάβετο + " 1x ἀντελοιδόρει, + " 1x ἀντεχόμενον + " 1x ἀντιβάλλετε + " 2x ἀντιδίκου + " 1x ἀντιδίκῳ + " 1x ἀντιδιατιθεμένους, + " 1x ἀντιθέσεις + " 1x ἀντικαλέσωσίν + " 1x ἀντικατέστητε + " 3x ἀντικείμενοι + " 1x ἀντικείμενος + " 1x ἀντικειμένων, + " 1x ἀντικειμένῳ + " 1x ἀντιλέγει + " 1x ἀντιλέγεται. + " 1x ἀντιλέγοντα. + " 1x ἀντιλέγοντας + " 1x ἀντιλέγοντας, + " 1x ἀντιλέγοντες + " 1x ἀντιλήμψεις, + " 1x ἀντιλαμβάνεσθαι + " 1x ἀντιλαμβανόμενοι. + " 1x ἀντιλεγόμενον + " 1x ἀντιλεγόντων + " 1x ἀντιλογίαν, + " 2x ἀντιλογίας + " 1x ἀντιλογίᾳ + " 1x ἀντιμετρηθήσεται + " 1x ἀντιμισθίαν + " 1x ἀντιμισθίαν, + " 1x ἀντιπέρα + " 1x ἀντιπίπτετε, + " 2x ἀντιπαρῆλθεν. + " 1x ἀντιστρατευόμενον + " 4x ἀντιστῆναι + " 1x ἀντιτάσσεται + " 2x ἀντιτάσσεται, + " 1x ἀντιτασσομένων + " 1x ἀντιτασσόμενος + " 1x ἀντιχρίστου, + " 1x ἀντλεῖν. + " 1x ἀντλῆσαι + " 1x ἀντοφθαλμεῖν + " 17x ἀντὶ + " 1x ἀνυποκρίτου + " 1x ἀνυποκρίτου, + " 1x ἀνυποκρίτῳ, + " 1x ἀνυποτάκτοις, + " 1x ἀνυπόκριτον, + " 2x ἀνυπόκριτος. + " 1x ἀνυπότακτα. + " 1x ἀνυπότακτοι, + " 1x ἀνυπότακτον. + " 1x ἀνωτερικὰ + " 1x ἀνωφελές, + " 1x ἀνωφελεῖς + " 1x ἀνόητοί + " 2x ἀνόητοι + " 1x ἀνόητοι, + " 3x ἀνόμοις + " 1x ἀνόμους· + " 2x ἀνόμων + " 2x ἀνόμως + " 1x ἀνόσιοι, + " 2x ἀνύδρων + " 1x ἀνώτερον + " 1x ἀνώτερον· + " 13x ἀνὰ + " 36x ἀνὴρ + " 1x ἀνῃρέθη, + " 1x ἀνῆκεν + " 1x ἀνῆκεν, + " 1x ἀνῆκον, + " 1x ἀνῆλθεν + " 2x ἀνῆλθον + " 1x ἀνῶ + " 2x ἀξία, + " 2x ἀξίνη + " 3x ἀξίους + " 6x ἀξίως + " 1x ἀξιούσθωσαν, + " 1x ἀξιοῦμεν + " 1x ἀξιωθήσεται + " 1x ἀξιώσῃ + " 1x ἀοράτου, + " 1x ἀοράτῳ + " 1x ἀπάγγειλον + " 1x ἀπάγετε + " 2x ἀπάγουσα + " 2x ἀπάντησιν + " 1x ἀπάντησιν. + " 1x ἀπάρτι. + " 1x ἀπάταις + " 2x ἀπάτη + " 1x ἀπάτης + " 1x ἀπάτης, + " 1x ἀπάτωρ, + " 2x ἀπάτῃ + " 1x ἀπέβησαν + " 1x ἀπέβλεπεν + " 1x ἀπέδειξεν + " 1x ἀπέδετο + " 1x ἀπέδοντο + " 1x ἀπέδοσθε; + " 1x ἀπέδωκεν + " 1x ἀπέδωκεν, + " 16x ἀπέθανεν + " 4x ἀπέθανεν, + " 9x ἀπέθανεν. + " 1x ἀπέθανεν; + " 3x ἀπέθανεν· + " 4x ἀπέθανον + " 3x ἀπέθανον, + " 1x ἀπέθανον. + " 4x ἀπέθανον· + " 1x ἀπέθεντο + " 1x ἀπέθετο + " 1x ἀπέθνῃσκεν. + " 1x ἀπέκοψαν + " 2x ἀπέκοψεν + " 1x ἀπέκρυψας + " 4x ἀπέκτειναν + " 3x ἀπέκτειναν, + " 3x ἀπέκτειναν. + " 1x ἀπέκτεινεν + " 1x ἀπέκτεινεν. + " 1x ἀπέλαβεν. + " 1x ἀπέλαβες + " 2x ἀπέλθητε + " 1x ἀπέλθω, + " 1x ἀπέλθω. + " 1x ἀπέλθωσιν + " 1x ἀπέλθῃ. + " 2x ἀπέλιπον + " 1x ἀπέλιπόν + " 1x ἀπέλυεν + " 2x ἀπέλυσαν + " 2x ἀπέλυσαν. + " 1x ἀπέλυσε + " 7x ἀπέλυσεν + " 1x ἀπέλυσεν. + " 4x ἀπέναντι + " 1x ἀπέπεσαν + " 2x ἀπέπλευσαν + " 2x ἀπέπνιξαν + " 1x ἀπέρχεσθαι + " 2x ἀπέρχῃ. + " 1x ἀπέσπασεν + " 3x ἀπέσταλκέν + " 2x ἀπέσταλκα + " 3x ἀπέσταλκεν + " 1x ἀπέσταλκεν. + " 2x ἀπέστειλέν + " 4x ἀπέστειλα + " 13x ἀπέστειλαν + " 3x ἀπέστειλας + " 3x ἀπέστειλας. + " 1x ἀπέστειλας· + " 33x ἀπέστειλεν + " 2x ἀπέστειλεν. + " 1x ἀπέστειλεν· + " 2x ἀπέστη + " 1x ἀπέστησαν + " 1x ἀπέστησεν + " 2x ἀπέχει + " 1x ἀπέχει· + " 5x ἀπέχεσθαι + " 1x ἀπέχεσθε. + " 1x ἀπέχετε + " 2x ἀπέχοντος + " 1x ἀπέχουσαν + " 3x ἀπέχουσιν + " 1x ἀπέχω + " 1x ἀπέχῃς, + " 7x ἀπήγαγον + " 15x ἀπήγγειλαν + " 10x ἀπήγγειλεν + " 1x ἀπήγγελλον + " 1x ἀπήγξατο. + " 1x ἀπήλασεν + " 2x ἀπήνεγκέν + " 1x ἀπήνεγκαν + " 1x ἀπήντησαν + " 3x ἀπίστοις + " 1x ἀπίστοις, + " 1x ἀπίστοις· + " 1x ἀπίστου + " 1x ἀπίστου; + " 3x ἀπίστων + " 1x ἀπίστων; + " 1x ἀπαίτει. + " 1x ἀπαγαγὼν + " 1x ἀπαγγέλλει + " 2x ἀπαγγέλλομεν + " 1x ἀπαγγέλλοντας + " 1x ἀπαγγέλλοντες + " 1x ἀπαγγέλλουσιν + " 1x ἀπαγγέλλων + " 1x ἀπαγγείλατέ + " 3x ἀπαγγείλατε + " 1x ἀπαγγελεῖ. + " 1x ἀπαγγελῶ + " 2x ἀπαγγεῖλαί + " 1x ἀπαγγεῖλαι + " 1x ἀπαγομένους + " 1x ἀπαγόμενοι. + " 1x ἀπαιδεύτους + " 1x ἀπαιτοῦσιν + " 1x ἀπαλλάξῃ + " 1x ἀπαλλάσσεσθαι + " 1x ἀπαντήσει + " 1x ἀπαράβατον + " 1x ἀπαρασκευάστους + " 3x ἀπαρθῇ + " 2x ἀπαρνήσομαι. + " 4x ἀπαρνήσῃ + " 1x ἀπαρνήσῃ. + " 1x ἀπαρνήσῃ· + " 1x ἀπαρνηθήσεται + " 2x ἀπαρνησάσθω + " 1x ἀπαρτισμόν; + " 1x ἀπαρχήν + " 6x ἀπαρχὴ + " 1x ἀπαρχὴν + " 1x ἀπατάτω + " 1x ἀπατῶν + " 1x ἀπαχθῆναι, + " 1x ἀπαύγασμα + " 1x ἀπείθειαν + " 1x ἀπείθειαν, + " 1x ἀπείραστός + " 1x ἀπεδέξαντο + " 1x ἀπεδέξατο + " 1x ἀπεδέχετο + " 2x ἀπεδήμησεν + " 3x ἀπεδήμησεν. + " 1x ἀπεδίδουν + " 4x ἀπεδοκίμασαν + " 1x ἀπεδοκιμάσθη, + " 2x ἀπεθάνετε + " 2x ἀπεθάνομεν + " 1x ἀπειθήσαντες + " 1x ἀπειθήσασίν + " 1x ἀπειθήσασιν, + " 1x ἀπειθήσασιν; + " 2x ἀπειθείας. + " 1x ἀπειθείας· + " 1x ἀπειθείᾳ, + " 2x ἀπειθεῖς + " 3x ἀπειθεῖς, + " 2x ἀπειθούντων + " 1x ἀπειθοῦντα + " 1x ἀπειθοῦντες, + " 1x ἀπειθοῦσι + " 1x ἀπειθοῦσιν + " 1x ἀπειθὴς + " 1x ἀπειθῶν + " 1x ἀπειλήν, + " 1x ἀπειλησώμεθα + " 1x ἀπειλὰς + " 1x ἀπειλῆς + " 1x ἀπειπάμεθα + " 1x ἀπεκάλυψέν + " 2x ἀπεκάλυψας + " 1x ἀπεκάλυψεν + " 2x ἀπεκαλύφθη + " 1x ἀπεκαλύφθη; + " 1x ἀπεκατέστη, + " 3x ἀπεκατεστάθη + " 1x ἀπεκδέχεται. + " 1x ἀπεκδεχομένοις + " 1x ἀπεκδεχομένους + " 1x ἀπεκδεχόμεθα + " 2x ἀπεκδεχόμεθα. + " 1x ἀπεκδεχόμενοι, + " 1x ἀπεκδυσάμενοι + " 1x ἀπεκδυσάμενος + " 1x ἀπεκδύσει + " 1x ἀπεκεφάλισα + " 1x ἀπεκεφάλισα· + " 2x ἀπεκεφάλισεν + " 79x ἀπεκρίθη + " 2x ἀπεκρίθη, + " 2x ἀπεκρίθην + " 1x ἀπεκρίθης· + " 18x ἀπεκρίθησαν + " 5x ἀπεκρίνατο + " 1x ἀπεκρίνατο. + " 1x ἀπεκτάνθη + " 4x ἀπεκτάνθησαν + " 1x ἀπεκτείνατε, + " 1x ἀπεκύησεν + " 1x ἀπεκύλισεν + " 1x ἀπελήλυθεν, + " 1x ἀπελεγμὸν + " 1x ἀπελευσόμεθα; + " 1x ἀπελεύθερος + " 1x ἀπελεύσομαι + " 1x ἀπελεύσονται + " 1x ἀπεληλύθεισαν + " 7x ἀπελθεῖν + " 1x ἀπελθεῖν, + " 1x ἀπελθεῖν. + " 2x ἀπελθεῖν· + " 1x ἀπελθοῦσα + " 2x ἀπελθοῦσαι + " 8x ἀπελθόντες + " 1x ἀπελθόντι + " 16x ἀπελθὼν + " 1x ἀπελογεῖτο + " 1x ἀπελούσασθε, + " 1x ἀπελπίζοντες· + " 1x ἀπελύθησαν + " 1x ἀπελύοντο, + " 1x ἀπενίψατο + " 1x ἀπενεγκεῖν + " 1x ἀπενεχθῆναι + " 1x ἀπεξεδέχετο + " 1x ἀπεπλανήθησαν + " 1x ἀπεπνίγη. + " 1x ἀπεράντοις, + " 1x ἀπερίτμητοι + " 1x ἀπερισπάστως. + " 1x ἀπερχομένων + " 1x ἀπεσπάσθη + " 2x ἀπεστάλη + " 2x ἀπεστάλην + " 1x ἀπεστάλην. + " 1x ἀπεστάλκαμεν + " 1x ἀπεστάλκατε + " 1x ἀπεστέγασαν + " 5x ἀπεσταλμένοι + " 1x ἀπεσταλμένος + " 2x ἀπεσταλμένους + " 1x ἀπεστερημένων + " 1x ἀπεστράφησάν + " 1x ἀπεφθέγξατο + " 1x ἀπεχωρίσθη + " 1x ἀπεῖχεν, + " 1x ἀπηγγέλη + " 1x ἀπηλγηκότες + " 1x ἀπηλλάχθαι + " 2x ἀπηλλοτριωμένοι + " 1x ἀπηλλοτριωμένους + " 1x ἀπησπασάμεθα + " 1x ἀπιστήσας + " 1x ἀπιστία + " 3x ἀπιστίαν + " 1x ἀπιστίαν. + " 1x ἀπιστίας + " 1x ἀπιστίᾳ + " 3x ἀπιστίᾳ, + " 1x ἀπιστίᾳ. + " 1x ἀπιστούντων + " 1x ἀπιστοῦμεν, + " 1x ἀπιστοῦσιν + " 1x ἀποβάλητε + " 1x ἀποβάντες + " 2x ἀποβήσεται + " 1x ἀποβαλὼν + " 2x ἀποβολὴ + " 1x ἀπογεγραμμένων + " 1x ἀπογενόμενοι + " 1x ἀπογράφεσθαι + " 1x ἀπογράφεσθαι, + " 1x ἀπογράψασθαι + " 1x ἀπογραφὴ + " 1x ἀπογραφῆς + " 1x ἀποδέξασθαι + " 1x ἀποδίδωμι + " 1x ἀποδίδωσιν + " 1x ἀποδείξει + " 1x ἀποδεδειγμένον + " 1x ἀποδεδοκιμασμένον + " 1x ἀποδεικνύντα + " 1x ἀποδεκατεύω + " 1x ἀποδεκατοῖν + " 2x ἀποδεκατοῦτε + " 1x ἀποδεξάμενοι + " 1x ἀποδεξάμενος + " 1x ἀποδεχόμεθα, + " 1x ἀποδεῖξαι, + " 1x ἀποδημῶν + " 1x ἀποδιδοῦν + " 1x ἀποδιδόναι + " 1x ἀποδιδόντες + " 1x ἀποδιδόντες· + " 1x ἀποδιδότω, + " 1x ἀποδιορίζοντες, + " 2x ἀποδοθῆναι. + " 3x ἀποδοκιμασθῆναι + " 2x ἀποδοχῆς + " 1x ἀποδοὺς + " 4x ἀποδοῦναι + " 7x ἀποδώσει + " 1x ἀποδώσεις + " 1x ἀποδώσοντες· + " 3x ἀποδώσουσιν + " 3x ἀποδώσω + " 2x ἀποδῷ + " 1x ἀποδῷ, + " 1x ἀποδῷς + " 1x ἀποδῷς. + " 1x ἀποθάνωμεν + " 8x ἀποθάνῃ + " 2x ἀποθάνῃ, + " 1x ἀποθάνῃ. + " 1x ἀποθάνῃ; + " 1x ἀποθάνῃ· + " 3x ἀποθέμενοι + " 1x ἀποθέσθαι + " 1x ἀποθήκας + " 1x ἀποθήκας, + " 1x ἀποθήκη, + " 2x ἀποθήκην + " 1x ἀποθήκην, + " 9x ἀποθανεῖν + " 3x ἀποθανεῖν, + " 4x ἀποθανεῖν· + " 2x ἀποθανεῖσθε + " 1x ἀποθανεῖσθε· + " 1x ἀποθανεῖται· + " 1x ἀποθανόντα + " 1x ἀποθανόντες + " 1x ἀποθανόντι + " 1x ἀποθανόντος + " 1x ἀποθανών, + " 2x ἀποθανὼν + " 1x ἀποθησαυρίζοντας + " 1x ἀποθλίβουσιν. + " 1x ἀποθνήσκει, + " 2x ἀποθνήσκει· + " 1x ἀποθνήσκειν + " 3x ἀποθνήσκειν. + " 1x ἀποθνήσκειν· + " 2x ἀποθνήσκομεν. + " 1x ἀποθνήσκοντες + " 1x ἀποθνήσκουσιν, + " 2x ἀποθνήσκωμεν, + " 1x ἀποθνῄσκει, + " 1x ἀποθνῄσκει· + " 2x ἀποθνῄσκοντες + " 1x ἀποθνῄσκω, + " 2x ἀποθνῄσκων + " 1x ἀποθώμεθα + " 6x ἀποκάλυψιν + " 1x ἀποκάλυψιν· + " 1x ἀποκαθιστάνει + " 1x ἀποκαθιστάνεις + " 1x ἀποκαλυφθήσεται + " 2x ἀποκαλυφθήσεται, + " 3x ἀποκαλυφθῆναι + " 1x ἀποκαλυφθῆναι. + " 2x ἀποκαλυφθῇ + " 1x ἀποκαλυφθῶσιν + " 1x ἀποκαλύπτεσθαι + " 1x ἀποκαλύπτεται + " 1x ἀποκαλύπτεται, + " 1x ἀποκαλύπτεται. + " 1x ἀποκαλύψαι + " 2x ἀποκαλύψαι. + " 5x ἀποκαλύψει + " 1x ἀποκαλύψει· + " 1x ἀποκαλύψεις + " 1x ἀποκαλύψεων. + " 3x ἀποκαλύψεως + " 1x ἀποκαραδοκία + " 1x ἀποκαραδοκίαν + " 1x ἀποκατήλλαξεν + " 1x ἀποκαταλλάξαι + " 1x ἀποκαταλλάξῃ + " 1x ἀποκαταστάσεως + " 1x ἀποκαταστήσει + " 1x ἀποκατασταθῶ + " 2x ἀποκειμένην + " 1x ἀποκεκρυμμένην, + " 1x ἀποκεκρυμμένον + " 1x ἀποκεκρυμμένου + " 1x ἀποκεκυλισμένον + " 1x ἀποκλείσῃ + " 2x ἀποκρίθητέ + " 1x ἀποκρίνεσθαι. + " 3x ἀποκρίνεται + " 3x ἀποκρίνῃ + " 1x ἀποκρίνῃ, + " 1x ἀποκρίσει + " 1x ἀποκρίσεσιν + " 7x ἀποκριθέντες + " 1x ἀποκριθήσεται + " 2x ἀποκριθήσονται + " 91x ἀποκριθεὶς + " 1x ἀποκριθεῖσα + " 1x ἀποκριθὲν + " 1x ἀποκριθῆναι + " 1x ἀποκριθῆτε. + " 1x ἀποκριθῇ· + " 1x ἀποκριθῶσιν + " 1x ἀποκτέννεσθαι + " 1x ἀποκτέννοντες. + " 1x ἀποκτανθεὶς + " 3x ἀποκτανθῆναι + " 2x ἀποκτανθῆναι. + " 1x ἀποκτανθῶσιν. + " 2x ἀποκτείνας + " 1x ἀποκτείνει, + " 2x ἀποκτείνουσα + " 4x ἀποκτείνωμεν + " 4x ἀποκτείνωσιν + " 2x ἀποκτείνωσιν, + " 1x ἀποκτείνωσιν. + " 1x ἀποκτείνωσιν· + " 1x ἀποκτεινάντων + " 2x ἀποκτενεῖ + " 1x ἀποκτενεῖ, + " 1x ἀποκτενεῖτε + " 2x ἀποκτεννόντων + " 5x ἀποκτενοῦσιν + " 1x ἀποκτενοῦσιν, + " 1x ἀποκτενῶ + " 5x ἀποκτεῖναι + " 4x ἀποκτεῖναι, + " 2x ἀποκτεῖναι. + " 4x ἀποκτεῖναι; + " 1x ἀποκτεῖναι· + " 1x ἀποκυλίσει + " 1x ἀποκόψονται + " 1x ἀποκύει + " 1x ἀπολάβητε. + " 1x ἀπολάβωμεν. + " 1x ἀπολάβωσιν + " 1x ἀπολέλυσαι + " 5x ἀπολέσαι + " 1x ἀπολέσαι; + " 1x ἀπολέσαι· + " 3x ἀπολέσας + " 9x ἀπολέσει + " 1x ἀπολέσει, + " 1x ἀπολέσητε + " 2x ἀπολέσθαι + " 1x ἀπολέσω + " 3x ἀπολέσωσιν. + " 1x ἀπολέσωσιν· + " 6x ἀπολέσῃ + " 1x ἀπολέσῃ· + " 1x ἀπολήμψεσθε + " 1x ἀπολαβόμενος + " 1x ἀπολαμβάνομεν· + " 1x ἀπολαμβάνοντες. + " 3x ἀπολείπεται + " 2x ἀπολελυμένην + " 1x ἀπολελυμένον, + " 2x ἀπολεῖσθε. + " 1x ἀπολεῖται. + " 1x ἀπολιπόντας + " 1x ἀπολλυμένην, + " 2x ἀπολλυμένοις + " 2x ἀπολλυμένοις, + " 1x ἀπολλυμένου, + " 1x ἀπολλύει + " 2x ἀπολλύμεθα. + " 1x ἀπολλύμεθα; + " 1x ἀπολλύμενοι, + " 1x ἀπολογήσησθε + " 1x ἀπολογία + " 2x ἀπολογίαν + " 1x ἀπολογίαν, + " 1x ἀπολογίας + " 1x ἀπολογίας. + " 2x ἀπολογίᾳ + " 1x ἀπολογεῖσθαι + " 1x ἀπολογεῖσθαι, + " 1x ἀπολογηθῆναι· + " 2x ἀπολογουμένου + " 1x ἀπολογουμένων, + " 1x ἀπολογούμεθα. + " 1x ἀπολογοῦμαι, + " 1x ἀπολομένου + " 1x ἀπολοῦνται, + " 1x ἀπολοῦνται. + " 2x ἀπολοῦνται· + " 1x ἀπολυθέντες + " 1x ἀπολυθήσεσθε· + " 1x ἀπολυθῆτε. + " 1x ἀπολυτρώσεως + " 1x ἀπολυτρώσεως. + " 2x ἀπολωλός. + " 2x ἀπολωλότα + " 1x ἀπολωλὸς + " 2x ἀπολωλὼς + " 1x ἀπολύει + " 1x ἀπολύειν + " 1x ἀπολύειν· + " 1x ἀπολύεις + " 1x ἀπολύετε, + " 2x ἀπολύσας + " 1x ἀπολύσασα + " 6x ἀπολύσω + " 2x ἀπολύσω. + " 5x ἀπολύσῃ + " 1x ἀπολύσῃς, + " 4x ἀπολύτρωσιν + " 2x ἀπολύτρωσιν, + " 1x ἀπολύτρωσις + " 1x ἀπολύτρωσις, + " 2x ἀπολύων + " 1x ἀπολῦσαί + " 7x ἀπολῦσαι + " 1x ἀπολῦσαι, + " 1x ἀπολῦσαι. + " 1x ἀπολῦσαι; + " 1x ἀπομασσόμεθα + " 1x ἀπονέμοντες + " 1x ἀποπλανᾶν + " 1x ἀποπλεύσαντες + " 1x ἀποπλεῖν + " 1x ἀπορίψαντας + " 1x ἀπορίᾳ + " 1x ἀπορεῖσθαι + " 2x ἀπορούμενοι + " 1x ἀπορούμενος + " 1x ἀποροῦμαι + " 1x ἀπορφανισθέντες + " 1x ἀποσκίασμα. + " 1x ἀποσπασθέντας + " 1x ἀποσπᾶν + " 1x ἀποστάντα + " 1x ἀποστάσιον. + " 4x ἀποστέλλει + " 1x ἀποστέλλειν + " 2x ἀποστέλλουσιν + " 7x ἀποστέλλω + " 1x ἀποστέλλῃ + " 1x ἀποστήσονταί + " 1x ἀποσταλέντι + " 1x ἀποσταλῶσιν; + " 1x ἀποστασία + " 1x ἀποστασίαν + " 2x ἀποστασίου + " 4x ἀποστείλαντά + " 1x ἀποστείλαντας + " 1x ἀποστείλαντες + " 7x ἀποστείλας + " 1x ἀποστείλω + " 2x ἀποστείλῃ + " 4x ἀποστελεῖ + " 1x ἀποστελλόμενα + " 1x ἀποστερήσῃς, + " 1x ἀποστερεῖσθε; + " 1x ἀποστερεῖτε + " 1x ἀποστερεῖτε, + " 1x ἀποστεῖλαι + " 2x ἀποστολὴν + " 1x ἀποστολῆς + " 1x ἀποστολῆς, + " 1x ἀποστοματίζειν + " 1x ἀποστρέφειν + " 1x ἀποστρέφοντα + " 1x ἀποστρέψει + " 1x ἀποστρέψουσιν, + " 1x ἀποστραφῇς. + " 1x ἀποστρεφομένων + " 1x ἀποστρεφόμενοι· + " 1x ἀποστυγοῦντες + " 4x ἀποστόλοις + " 1x ἀποστόλοις, + " 1x ἀποστόλοις. + " 1x ἀποστόλου + " 9x ἀποστόλους + " 5x ἀποστόλους, + " 13x ἀποστόλων + " 4x ἀποστόλων, + " 4x ἀποστόλων. + " 1x ἀποστόλων· + " 1x ἀποστὰς + " 1x ἀποστῆναι + " 1x ἀποστῇ + " 1x ἀποσυνάγωγοι + " 1x ἀποσυνάγωγος + " 1x ἀποσυναγώγους + " 1x ἀποτάξασθαι + " 1x ἀποτάσσεται + " 1x ἀποτίσω· + " 4x ἀποταξάμενος + " 1x ἀποτελεσθεῖσα + " 1x ἀποτελῶ + " 1x ἀποτινάξας + " 1x ἀποτινάσσετε + " 1x ἀποτολμᾷ + " 1x ἀποτομία, + " 1x ἀποτομίαν + " 1x ἀποτρέπου. + " 1x ἀποτόμως + " 1x ἀποτόμως, + " 1x ἀπουσίᾳ + " 1x ἀποφέρεσθαι + " 1x ἀποφεύγοντας + " 1x ἀποφθέγγεσθαι + " 1x ἀποφθέγγομαι. + " 1x ἀποφορτιζόμενον + " 2x ἀποφυγόντες + " 1x ἀποχρήσει, + " 1x ἀποχωρήσας + " 1x ἀποχωρεῖ + " 1x ἀποχωρεῖτε + " 1x ἀποχωρισθῆναι + " 1x ἀποψυχόντων + " 1x ἀπροσωπολήμπτως + " 1x ἀπρόσιτον, + " 2x ἀπρόσκοποι + " 1x ἀπρόσκοπον + " 1x ἀπταίστους + " 1x ἀπωθεῖσθε + " 1x ἀπωλείας + " 4x ἀπωλείας, + " 1x ἀπωσάμενοι + " 1x ἀπό + " 1x ἀπόβλητον + " 2x ἀπόδεκτον + " 1x ἀπόδημος + " 2x ἀπόδος + " 4x ἀπόδοτε + " 1x ἀπόθεσθε + " 2x ἀπόθεσις + " 1x ἀπόκειταί + " 1x ἀπόκειται + " 2x ἀπόκοψον + " 1x ἀπόκριμα + " 2x ἀπόκρισιν + " 1x ἀπόκρυφοι. + " 1x ἀπόκρυφον + " 1x ἀπόκρυφον, + " 2x ἀπόλαυσιν, + " 4x ἀπόληται + " 2x ἀπόληται. + " 1x ἀπόληται· + " 1x ἀπόλλυε, + " 1x ἀπόλλυμαι. + " 1x ἀπόλλυνται· + " 2x ἀπόλλυται + " 1x ἀπόλουσαι + " 3x ἀπόλυσον + " 1x ἀπόλωνται + " 1x ἀπόντες, + " 1x ἀπόστειλον + " 2x ἀπόστητε + " 14x ἀπόστολοι + " 1x ἀπόστολοι; + " 1x ἀπόστολοι· + " 1x ἀπόστολον + " 12x ἀπόστολος + " 5x ἀπόστολος, + " 1x ἀπόστολος; + " 3x ἀπώλεια + " 1x ἀπώλεια, + " 2x ἀπώλειαν + " 4x ἀπώλειαν, + " 2x ἀπώλειαν. + " 1x ἀπώλειαν· + " 1x ἀπώλεσα + " 1x ἀπώλεσα. + " 3x ἀπώλεσεν + " 1x ἀπώλεσεν, + " 2x ἀπώλετο + " 1x ἀπώλετο, + " 2x ἀπώλετο· + " 1x ἀπώλλυντο. + " 1x ἀπώλοντο + " 2x ἀπώλοντο. + " 1x ἀπώσαντο + " 3x ἀπώσατο + " 469x ἀπὸ + " 5x ἀπὼν + " 1x ἀπῄεσαν· + " 1x ἀπῆλθα + " 1x ἀπῆλθαν + " 1x ἀπῆλθαν, + " 2x ἀπῆλθαν. + " 31x ἀπῆλθεν + " 6x ἀπῆλθεν. + " 2x ἀπῆλθεν· + " 11x ἀπῆλθον + " 1x ἀπῆλθον, + " 2x ἀπῆλθον. + " 1x ἀπῆλθον· + " 1x ἀπῆλθόν + " 125x ἀπ’ + " 3x ἀράτω + " 1x ἀράτω, + " 1x ἀρέσαι + " 1x ἀρέσκειν + " 1x ἀρέσκειν. + " 1x ἀρέσκειν; + " 1x ἀρέσκοντες, + " 1x ἀρέσκω, + " 3x ἀρέσῃ + " 1x ἀρέσῃ. + " 1x ἀρίστου. + " 1x ἀργή + " 1x ἀργαί. + " 2x ἀργαὶ + " 1x ἀργεῖ, + " 1x ἀργοί; + " 1x ἀργούς, + " 1x ἀργοὺς + " 3x ἀργυρίου + " 1x ἀργυρίῳ + " 1x ἀργυροκόπος, + " 1x ἀργυροῦς + " 1x ἀργυρᾶ + " 1x ἀργυρᾶ, + " 1x ἀργύριά + " 5x ἀργύρια + " 1x ἀργύρια, + " 1x ἀργύρια. + " 5x ἀργύριον + " 2x ἀργύριον, + " 1x ἀργύριόν + " 1x ἀργύρου + " 1x ἀργύρῳ + " 1x ἀργὸν + " 1x ἀρεσκέτω + " 1x ἀρεσκείαν, + " 1x ἀρεσκόντων, + " 2x ἀρεστόν + " 2x ἀρεστὰ + " 1x ἀρετήν, + " 1x ἀρετὰς + " 1x ἀρετὴ + " 1x ἀρετῇ + " 1x ἀρετῇ, + " 5x ἀρθήσεται + " 1x ἀρθήσεται. + " 1x ἀρθήτω + " 1x ἀρθῇ + " 1x ἀρθῶσιν. + " 2x ἀριθμοῦ + " 5x ἀριθμὸν + " 10x ἀριθμὸς + " 1x ἀριθμῆσαι + " 1x ἀριθμῷ + " 1x ἀριστήσατε. + " 1x ἀριστήσῃ + " 1x ἀριστερά + " 1x ἀριστερῶν + " 1x ἀριστερῶν, + " 1x ἀριστερῶν. + " 1x ἀρκέσῃ + " 1x ἀρκεσθησόμεθα. + " 2x ἀρκετὸν + " 1x ἀρκετὸς + " 1x ἀρκεῖ + " 1x ἀρκεῖσθε + " 1x ἀρκούμενοι + " 1x ἀρκούμενος + " 1x ἀρκοῦσιν + " 1x ἀρνήσασθαι + " 1x ἀρνήσεται + " 1x ἀρνήσηταί + " 1x ἀρνήσομαι + " 1x ἀρνήσῃ + " 1x ἀρνία + " 1x ἀρνίου. + " 1x ἀρνίῳ, + " 1x ἀρνεῖσθαι· + " 1x ἀρνησάμενοι + " 1x ἀρνησάμενός + " 1x ἀρνησάσθω + " 1x ἀρνησόμεθα, + " 1x ἀρνουμένων + " 1x ἀρνούμενοι, + " 1x ἀρνούμενοι. + " 3x ἀρνούμενος + " 1x ἀρνοῦνται, + " 2x ἀρξάμενοι + " 8x ἀρξάμενος + " 1x ἀρξαμένου + " 1x ἀροτριᾶν, + " 1x ἀροτριῶν + " 1x ἀροτριῶντα + " 2x ἀροῦσίν + " 2x ἀροῦσιν + " 1x ἀρραβὼν + " 2x ἀρραβῶνα + " 1x ἀρρώστοις + " 3x ἀρρώστους + " 1x ἀρσενοκοίταις, + " 1x ἀρσενοκοῖται + " 1x ἀρτέμωνα + " 1x ἀρτιγέννητα + " 1x ἀρτυθήσεται; + " 1x ἀρτύσετε; + " 1x ἀρχάγγελος, + " 2x ἀρχάς, + " 1x ἀρχή, + " 2x ἀρχαίοις + " 1x ἀρχαίου + " 4x ἀρχαίων + " 1x ἀρχαίῳ + " 1x ἀρχαγγέλου + " 2x ἀρχαὶ + " 1x ἀρχαῖα + " 2x ἀρχαῖος, + " 4x ἀρχαῖς + " 2x ἀρχηγὸν + " 3x ἀρχιερέα + " 4x ἀρχιερέα, + " 1x ἀρχιερέα. + " 9x ἀρχιερέων + " 1x ἀρχιερέων, + " 9x ἀρχιερέως + " 6x ἀρχιερέως, + " 1x ἀρχιερέως· + " 1x ἀρχιερατικοῦ, + " 1x ἀρχιερεύς + " 2x ἀρχιερεύς, + " 1x ἀρχιερεύς· + " 24x ἀρχιερεὺς + " 1x ἀρχιερεῖ + " 1x ἀρχιερεῖ, + " 1x ἀρχιερεῖ; + " 46x ἀρχιερεῖς + " 2x ἀρχιερεῖς, + " 1x ἀρχιερεῖς. + " 1x ἀρχιερεῖς; + " 6x ἀρχιερεῦσιν + " 1x ἀρχισυνάγωγοι + " 1x ἀρχισυνάγωγον + " 1x ἀρχισυνάγωγος + " 1x ἀρχισυνάγωγος, + " 2x ἀρχισυναγώγου + " 1x ἀρχισυναγώγου, + " 1x ἀρχισυναγώγων, + " 1x ἀρχισυναγώγῳ + " 1x ἀρχιτέκτων + " 1x ἀρχιτελώνης, + " 2x ἀρχιτρίκλινος + " 1x ἀρχιτρικλίνῳ. + " 1x ἀρχομένων + " 1x ἀρχόμενος + " 5x ἀρχόντων + " 2x ἀρχὰς + " 5x ἀρχὴ + " 7x ἀρχὴν + " 18x ἀρχῆς + " 6x ἀρχῆς, + " 1x ἀρχῆς. + " 2x ἀρχῆς· + " 4x ἀρχῇ + " 1x ἀρχῇ. + " 1x ἀρωμάτων, + " 2x ἀρώματα + " 1x ἀρώματα. + " 1x ἀρᾶς + " 1x ἀρῶ. + " 1x ἀσάλευτον + " 1x ἀσάλευτος, + " 2x ἀσέβειαν + " 2x ἀσέλγεια, + " 1x ἀσέλγειαν + " 1x ἀσήμου + " 2x ἀσβέστῳ. + " 1x ἀσεβέσι + " 2x ἀσεβείας + " 1x ἀσεβείας, + " 1x ἀσεβειῶν. + " 1x ἀσεβεῖν + " 1x ἀσεβεῖς + " 1x ἀσεβεῖς, + " 1x ἀσεβεῖς. + " 1x ἀσεβὴς + " 1x ἀσεβῆ, + " 3x ἀσεβῶν + " 1x ἀσελγείαις + " 3x ἀσελγείαις, + " 3x ἀσελγείᾳ + " 1x ἀσθένεια + " 2x ἀσθένειαν + " 2x ἀσθένειαν, + " 1x ἀσθενέσιν + " 1x ἀσθενέσιν. + " 1x ἀσθενέστερα + " 1x ἀσθενήματα + " 1x ἀσθενής, + " 2x ἀσθενής. + " 1x ἀσθενήσας + " 1x ἀσθενήσασαν + " 1x ἀσθενείαις + " 2x ἀσθενείαις, + " 1x ἀσθενείαις. + " 5x ἀσθενείας + " 2x ἀσθενείας, + " 1x ἀσθενείας. + " 4x ἀσθενείᾳ + " 1x ἀσθενείᾳ, + " 1x ἀσθενειῶν + " 1x ἀσθενειῶν, + " 1x ἀσθενεστέρῳ + " 2x ἀσθενεῖ + " 2x ἀσθενεῖ, + " 1x ἀσθενεῖ. + " 4x ἀσθενεῖς + " 2x ἀσθενεῖς, + " 2x ἀσθενούντων, + " 1x ἀσθενούντων. + " 1x ἀσθενοῦμεν + " 2x ἀσθενοῦντα + " 1x ἀσθενοῦντα. + " 3x ἀσθενοῦντας + " 1x ἀσθενοῦντας, + " 1x ἀσθενοῦς + " 1x ἀσθενοῦς, + " 1x ἀσθενοῦσαν + " 2x ἀσθενὲς + " 3x ἀσθενὴς + " 3x ἀσθενῆ + " 1x ἀσθενῶ, + " 1x ἀσθενῶ; + " 1x ἀσθενῶμεν, + " 4x ἀσθενῶν + " 2x ἀσθενῶν, + " 1x ἀσιτίας + " 1x ἀσκοί, + " 1x ἀσκοί. + " 2x ἀσκούς, + " 2x ἀσκοὶ + " 6x ἀσκοὺς + " 1x ἀσκῶ + " 1x ἀσμένως + " 1x ἀσπάζεσθαι + " 5x ἀσπάζεται + " 1x ἀσπάζομαι + " 1x ἀσπάζονταί + " 4x ἀσπάζονται + " 1x ἀσπάζου + " 17x ἀσπάσασθε + " 1x ἀσπάσησθε + " 1x ἀσπάσησθε. + " 1x ἀσπίδων + " 1x ἀσπίλου + " 2x ἀσπασάμενοι + " 1x ἀσπασάμενοι, + " 3x ἀσπασάμενος + " 4x ἀσπασμοὺς + " 1x ἀσπασμοῦ + " 1x ἀσπασμὸν + " 4x ἀσπασμὸς + " 1x ἀσσαρίου + " 1x ἀσσαρίων + " 4x ἀστέρα + " 3x ἀστέρας + " 5x ἀστέρες + " 2x ἀστέρος + " 1x ἀστέρος, + " 3x ἀστέρων + " 1x ἀστέρων, + " 1x ἀστέρων· + " 1x ἀστήρικτοι + " 1x ἀστατοῦμεν + " 1x ἀστεῖον + " 1x ἀστεῖος + " 1x ἀστηρίκτους, + " 1x ἀστοχήσαντες + " 1x ἀστράπτουσα + " 4x ἀστραπαὶ + " 1x ἀστραπτούσῃ· + " 2x ἀστραπὴ + " 1x ἀστραπὴ, + " 1x ἀστραπὴν + " 1x ἀστραπῇ + " 1x ἀστόργους, + " 3x ἀστὴρ + " 1x ἀστὴρ, + " 1x ἀσυνέτους, + " 1x ἀσυνέτῳ + " 1x ἀσυνθέτους, + " 1x ἀσφάλεια, + " 1x ἀσφάλειαν. + " 1x ἀσφαλές + " 1x ἀσφαλές. + " 1x ἀσφαλίσασθε + " 1x ἀσφαλείᾳ + " 1x ἀσφαλισθῆναι + " 1x ἀσφαλὲς + " 1x ἀσφαλὲς, + " 1x ἀσφαλῆ + " 2x ἀσφαλῶς + " 1x ἀσφαλῶς. + " 1x ἀσχήμονα + " 1x ἀσχημονεῖ, + " 1x ἀσχημονεῖν + " 2x ἀσχημοσύνην + " 1x ἀσωτία, + " 2x ἀσωτίας + " 1x ἀσύμφωνοι + " 2x ἀσύνετοί + " 1x ἀσύνετος + " 1x ἀσώτως. + " 1x ἀτάκτους, + " 1x ἀτάκτως + " 1x ἀτάκτως, + " 1x ἀτενίζετε + " 2x ἀτενίζοντες + " 2x ἀτενίσαι + " 1x ἀτενίσαντες + " 7x ἀτενίσας + " 1x ἀτενίσασα + " 1x ἀτιμάζεις; + " 1x ἀτιμάζεσθαι + " 1x ἀτιμάζετέ + " 1x ἀτιμάσαντες + " 1x ἀτιμία + " 1x ἀτιμίαν + " 1x ἀτιμίαν; + " 1x ἀτιμίαν· + " 1x ἀτιμίας, + " 1x ἀτιμίας· + " 1x ἀτιμίᾳ, + " 1x ἀτιμασθῆναι· + " 1x ἀτιμότερα + " 1x ἀτμίδα + " 1x ἀτμὶς + " 1x ἀτόμῳ, + " 1x ἀτόπων + " 1x ἀφέθησαν + " 1x ἀφέλωμαι + " 1x ἀφέλῃ + " 15x ἀφέντες + " 1x ἀφέσει + " 1x ἀφέσει, + " 1x ἀφέωνταί + " 3x ἀφέωνται + " 3x ἀφήκαμεν + " 1x ἀφήκατε + " 3x ἀφήσει + " 1x ἀφήσεις + " 1x ἀφήσουσιν + " 2x ἀφήσω + " 1x ἀφίδω + " 2x ἀφίενταί + " 2x ἀφίεται + " 1x ἀφίεται, + " 1x ἀφίεται. + " 1x ἀφίεται· + " 3x ἀφίετε + " 2x ἀφίημι + " 3x ἀφίησιν + " 1x ἀφίησιν; + " 1x ἀφίκετο· + " 1x ἀφίομεν + " 1x ἀφίουσιν + " 1x ἀφίστανται. + " 1x ἀφίστατο + " 1x ἀφαιρεθήσεται + " 1x ἀφαιρεῖν + " 1x ἀφαιρεῖται + " 2x ἀφανίζει, + " 1x ἀφανίζουσιν + " 1x ἀφανίσθητε, + " 1x ἀφανιζομένη· + " 1x ἀφανισμοῦ. + " 1x ἀφανὴς + " 2x ἀφεδρῶνα + " 1x ἀφεθήσεταί + " 7x ἀφεθήσεται + " 3x ἀφεθήσεται. + " 1x ἀφεθήσεται· + " 3x ἀφεθῇ + " 1x ἀφειδίᾳ + " 1x ἀφελεῖ + " 1x ἀφελεῖν + " 1x ἀφελότητι + " 5x ἀφεὶς + " 3x ἀφεῖλεν + " 1x ἀφεῖναι + " 1x ἀφεῖναι. + " 1x ἀφεῖς + " 1x ἀφθάρτου + " 1x ἀφθάρτου, + " 2x ἀφθάρτῳ + " 5x ἀφθαρσίαν + " 1x ἀφθαρσίᾳ. + " 1x ἀφθαρσίᾳ· + " 1x ἀφθορίαν, + " 4x ἀφιέναι + " 1x ἀφιέναι. + " 2x ἀφιέτω + " 1x ἀφιλάγαθοι, + " 1x ἀφιλάργυρον, + " 1x ἀφορίζει + " 1x ἀφορίσας + " 1x ἀφορίσει + " 1x ἀφορίσθητε, + " 1x ἀφορίσωσιν + " 1x ἀφοριοῦσιν + " 1x ἀφορμήν, + " 6x ἀφορμὴν + " 1x ἀφορῶντες + " 1x ἀφρίζει + " 1x ἀφρίζων. + " 1x ἀφροσύνη· + " 1x ἀφροσύνης· + " 1x ἀφροσύνῃ + " 1x ἀφροσύνῃ, + " 1x ἀφροῦ, + " 2x ἀφρόνων + " 1x ἀφρόνων, + " 1x ἀφυστερημένος + " 1x ἀφωμοιωμένος + " 1x ἀφωρισμένος + " 3x ἀφόβως + " 1x ἀφόβως, + " 1x ἀφύπνωσεν. + " 1x ἀφώριζεν + " 1x ἀφώρισεν + " 1x ἀφῆκά + " 1x ἀφῆκέν + " 2x ἀφῆκαν + " 19x ἀφῆκεν + " 1x ἀφῆκες. + " 4x ἀφῆτε + " 1x ἀφῆτε· + " 3x ἀφῇ + " 1x ἀφῶμεν + " 42x ἀφ’ + " 1x ἀχάριστοι, + " 1x ἀχαρίστους + " 2x ἀχειροποίητον + " 1x ἀχειροποιήτῳ + " 1x ἀχθήσεσθε + " 3x ἀχθῆναι + " 1x ἀχθῆναι. + " 1x ἀχλὺς + " 1x ἀχρεῖοί + " 1x ἀχρεῖον + " 1x ἀψευδὴς + " 1x ἀϊδίοις + " 1x ἀόρατα + " 1x ἀόρατα, + " 1x ἀόρατον + " 1x ἀὴρ + " 4x ἁγία + " 2x ἁγία, + " 3x ἁγίαις + " 6x ἁγίαν + " 2x ἁγίας + " 1x ἁγίας, + " 1x ἁγίασον + " 14x ἁγίοις + " 3x ἁγίοις, + " 1x ἁγίοις. + " 1x ἁγίοις· + " 3x ἁγίου + " 6x ἁγίους + " 4x ἁγίους, + " 2x ἁγίους. + " 28x ἁγίων + " 5x ἁγίων, + " 4x ἁγίων. + " 1x ἁγίων; + " 1x ἁγίᾳ, + " 2x ἁγίῳ + " 1x ἁγίῳ, + " 3x ἁγίῳ. + " 1x ἁγιάζει + " 1x ἁγιάζεται + " 1x ἁγιάζον + " 1x ἁγιάζω + " 1x ἁγιάζων + " 1x ἁγιάσαι + " 1x ἁγιάσας + " 1x ἁγιάσατε + " 2x ἁγιάσῃ + " 1x ἁγιαζομένους. + " 1x ἁγιαζόμενοι + " 2x ἁγιασθήτω + " 2x ἁγιασμόν, + " 1x ἁγιασμόν. + " 2x ἁγιασμὸς + " 4x ἁγιασμῷ + " 1x ἁγιασμῷ. + " 1x ἁγιωσύνην + " 1x ἁγιωσύνης + " 1x ἁγιωσύνῃ + " 1x ἁγιωτάτῃ + " 1x ἁγιότητι + " 1x ἁγιότητος + " 1x ἁγνά, + " 1x ἁγνάς, + " 1x ἁγνή + " 1x ἁγνίζει + " 1x ἁγνίσατε + " 1x ἁγνίσθητι + " 1x ἁγνίσωσιν + " 2x ἁγνείᾳ. + " 1x ἁγνισθεὶς + " 1x ἁγνισμοῦ, + " 1x ἁγνοὺς + " 1x ἁγνός + " 1x ἁγνότητι, + " 1x ἁγνότητος + " 2x ἁγνὴν + " 1x ἁγνὸν + " 1x ἁγνῶς, + " 1x ἁδρότητι + " 3x ἁλεεῖς + " 2x ἁλεεῖς. + " 1x ἁλιεύειν. + " 1x ἁλισθήσεται. + " 1x ἁλισθήσεται; + " 1x ἁλλομένου + " 1x ἁλλόμενος + " 1x ἁλυκὸν + " 1x ἁλύσει + " 1x ἁλύσει, + " 2x ἁλύσεις + " 1x ἁλύσεσι + " 3x ἁλύσεσιν + " 1x ἁμάρτανε, + " 1x ἁμάρτανε.) + " 1x ἁμάρτημα + " 1x ἁμάρτητε. + " 1x ἁμάρτῃ + " 1x ἁμάρτῃ, + " 2x ἁμαρτάνει, + " 2x ἁμαρτάνει. + " 2x ἁμαρτάνει· + " 1x ἁμαρτάνειν, + " 1x ἁμαρτάνετε. + " 2x ἁμαρτάνετε· + " 1x ἁμαρτάνοντα + " 1x ἁμαρτάνοντας + " 2x ἁμαρτάνοντες + " 1x ἁμαρτάνουσιν + " 1x ἁμαρτάνων + " 1x ἁμαρτήματα + " 1x ἁμαρτήματος. + " 1x ἁμαρτήσαντας + " 1x ἁμαρτήσαντος + " 1x ἁμαρτήσασιν, + " 1x ἁμαρτήσει + " 1x ἁμαρτήσωμεν + " 2x ἁμαρτήσῃ + " 21x ἁμαρτία + " 4x ἁμαρτία, + " 2x ἁμαρτία. + " 1x ἁμαρτία; + " 6x ἁμαρτίαι + " 2x ἁμαρτίαι, + " 3x ἁμαρτίαι. + " 1x ἁμαρτίαι· + " 8x ἁμαρτίαις + " 1x ἁμαρτίαις, + " 20x ἁμαρτίαν + " 3x ἁμαρτίαν, + " 3x ἁμαρτίαν. + " 1x ἁμαρτίαν· + " 36x ἁμαρτίας + " 10x ἁμαρτίας, + " 8x ἁμαρτίας. + " 1x ἁμαρτίας; + " 2x ἁμαρτίας· + " 1x ἁμαρτίας— + " 3x ἁμαρτίᾳ + " 3x ἁμαρτίᾳ, + " 1x ἁμαρτίᾳ· + " 1x ἁμαρτανόντων + " 1x ἁμαρτημάτων + " 1x ἁμαρτησάντων + " 22x ἁμαρτιῶν + " 2x ἁμαρτιῶν, + " 6x ἁμαρτιῶν. + " 2x ἁμαρτιῶν· + " 3x ἁμαρτωλοί, + " 2x ἁμαρτωλούς. + " 9x ἁμαρτωλοὶ + " 3x ἁμαρτωλοὺς + " 1x ἁμαρτωλοῖς + " 1x ἁμαρτωλοῖς, + " 4x ἁμαρτωλός + " 1x ἁμαρτωλός, + " 1x ἁμαρτωλὸν + " 4x ἁμαρτωλὸς + " 8x ἁμαρτωλῶν + " 1x ἁμαρτωλῶν, + " 4x ἁμαρτωλῶν. + " 3x ἁμαρτωλῷ + " 1x ἁμαρτωλῷ, + " 1x ἁμαρτωλῷ. + " 1x ἁπάντων. + " 2x ἁπαλὸς + " 1x ἁπλοῦς + " 1x ἁπλοῦς, + " 1x ἁπλότητα, + " 3x ἁπλότητι + " 1x ἁπλότητι, + " 2x ἁπλότητος + " 1x ἁπλῶς + " 1x ἁρμάτων + " 1x ἁρμῶν + " 2x ἁρπάζει + " 2x ἁρπάζειν + " 1x ἁρπάζοντες, + " 1x ἁρπάζουσιν + " 1x ἁρπάσαι + " 1x ἁρπάσαι, + " 1x ἁρπάσει + " 1x ἁρπαγησόμεθα + " 1x ἁρπαγμὸν + " 1x ἁρπαγὴν + " 2x ἁρπαγῆς + " 1x ἁφῆς + " 1x ἁφῶν + " 2x ἁψάμενος + " 1x ἁψάμενός + " 152x ἂν + " 108x ἃ + " 2x ἃς + " 1x ἄβυσσον + " 1x ἄβυσσον, + " 1x ἄβυσσον; + " 3x ἄγαμος + " 1x ἄγγελοί + " 21x ἄγγελοι + " 1x ἄγγελοι, + " 17x ἄγγελον + " 1x ἄγγελον, + " 41x ἄγγελος + " 1x ἄγγελος, + " 1x ἄγγελος. + " 1x ἄγγελος; + " 4x ἄγγελόν + " 1x ἄγγελός + " 1x ἄγγη, + " 1x ἄγε + " 1x ἄγει + " 1x ἄγει; + " 1x ἄγειν + " 1x ἄγεσθαι + " 1x ἄγεσθε, + " 1x ἄγκιστρον + " 1x ἄγκυραν + " 2x ἄγνοιαν + " 1x ἄγονται + " 1x ἄγονται, + " 1x ἄγοντες + " 1x ἄγουσι + " 1x ἄγραν. + " 1x ἄγρια + " 2x ἄγριον. + " 1x ἄγρᾳ + " 1x ἄγω + " 2x ἄγωμεν + " 2x ἄγωμεν· + " 1x ἄγωσιν + " 1x ἄδηλα, + " 1x ἄδηλον + " 1x ἄδικοι + " 1x ἄδικοι, + " 3x ἄδικος + " 1x ἄδικός + " 1x ἄδολον + " 1x ἄζυμα + " 1x ἄζυμοι. + " 1x ἄθεοι + " 1x ἄθλησιν + " 1x ἄκακος, + " 3x ἄκανθαι + " 1x ἄκαρπα + " 1x ἄκαρποι. + " 2x ἄκαρπος + " 1x ἄκαρπός + " 2x ἄκρον + " 2x ἄκρου + " 2x ἄκρων + " 1x ἄκων, + " 1x ἄλαλον + " 1x ἄλαλον· + " 1x ἄλειψαί + " 15x ἄλλα + " 1x ἄλλαι + " 1x ἄλλας + " 11x ἄλλη + " 1x ἄλλη. + " 1x ἄλλην + " 3x ἄλλην, + " 1x ἄλλην· + " 3x ἄλλης + " 11x ἄλλο + " 1x ἄλλο· + " 27x ἄλλοι + " 4x ἄλλοις + " 2x ἄλλοις. + " 16x ἄλλον + " 1x ἄλλον, + " 25x ἄλλος + " 1x ἄλλου + " 8x ἄλλους + " 1x ἄλλους, + " 2x ἄλλων + " 1x ἄλλων, + " 1x ἄλλως + " 10x ἄλλῳ + " 2x ἄλογα + " 1x ἄλογον + " 1x ἄμαχον, + " 1x ἄμεμπτοι + " 1x ἄμεμπτοι. + " 1x ἄμεμπτος, + " 1x ἄμεμπτος. + " 2x ἄμετρα + " 1x ἄμμον + " 1x ἄμμον. + " 3x ἄμμος + " 1x ἄμπελον + " 2x ἄμπελος + " 1x ἄμπελος, + " 1x ἄμωμα + " 1x ἄμωμοί + " 2x ἄμωμον + " 1x ἄμωμος. + " 12x ἄν + " 1x ἄναλον + " 23x ἄνδρα + " 1x ἄνδρα, + " 5x ἄνδρα. + " 1x ἄνδρα· + " 20x ἄνδρας + " 1x ἄνδρας, + " 31x ἄνδρες + " 7x ἄνδρες, + " 1x ἄνδρες. + " 1x ἄνδρες· + " 3x ἄνεμοι + " 1x ἄνεμον + " 4x ἄνεμος + " 1x ἄνεμος, + " 2x ἄνεμος. + " 1x ἄνεμος· + " 1x ἄνερ, + " 4x ἄνεσιν + " 1x ἄνεσις, + " 3x ἄνευ + " 1x ἄνηθον + " 4x ἄνθος + " 1x ἄνθρακας + " 4x ἄνθρωπε + " 1x ἄνθρωπε, + " 1x ἄνθρωποί + " 17x ἄνθρωποι + " 6x ἄνθρωποι, + " 1x ἄνθρωποι. + " 1x ἄνθρωποι· + " 43x ἄνθρωπον + " 4x ἄνθρωπον, + " 10x ἄνθρωπον. + " 3x ἄνθρωπον· + " 98x ἄνθρωπος + " 9x ἄνθρωπος, + " 4x ἄνθρωπος. + " 1x ἄνθρωπος; + " 1x ἄνθρωπος· + " 1x ἄνθρωπόν + " 4x ἄνθρωπός + " 1x ἄνοια + " 2x ἄνοιξον + " 1x ἄνομος + " 2x ἄνομος, + " 1x ἄντικρυς + " 1x ἄντλημα + " 2x ἄνυδροι + " 8x ἄνω + " 1x ἄνω. + " 1x ἄνωθέν + " 8x ἄνωθεν + " 2x ἄνωθεν, + " 1x ἄνωθεν. + " 1x ἄνωθεν· + " 1x ἄξει + " 4x ἄξια + " 2x ἄξιοί + " 1x ἄξιοι + " 1x ἄξιοι· + " 7x ἄξιον + " 9x ἄξιος + " 1x ἄξιος, + " 1x ἄξιος. + " 3x ἄξιος· + " 1x ἄξιόν + " 2x ἄξιός + " 1x ἄξων + " 1x ἄπαγε + " 1x ἄπειμι, + " 1x ἄπειρος + " 1x ἄπιστοι, + " 1x ἄπιστον + " 2x ἄπιστον, + " 7x ἄπιστος + " 1x ἄπιστος, + " 42x ἄρα + " 1x ἄραγε + " 2x ἄραντες + " 5x ἄρας + " 2x ἄρατε + " 1x ἄραφος, + " 1x ἄργυρον + " 1x ἄργυρος + " 1x ἄριστον + " 1x ἄριστόν + " 1x ἄρκου, + " 1x ἄρνας + " 1x ἄρξασθαί + " 1x ἄρξασθαι + " 1x ἄρξεσθε + " 2x ἄρξησθε + " 2x ἄρξηται + " 1x ἄρξονται + " 1x ἄρξωνται + " 1x ἄρξῃ + " 1x ἄροτρον + " 1x ἄρρητα + " 1x ἄρρωστοι + " 4x ἄρσεν + " 1x ἄρσεν, + " 1x ἄρσενα. + " 2x ἄρσενες + " 1x ἄρσεσιν + " 21x ἄρτι + " 2x ἄρτι, + " 4x ἄρτι. + " 2x ἄρτι; + " 2x ἄρτι· + " 1x ἄρτιος + " 4x ἄρτοι + " 1x ἄρτοις, + " 31x ἄρτον + " 4x ἄρτον, + " 1x ἄρτον. + " 1x ἄρτον; + " 8x ἄρτος + " 1x ἄρτος, + " 1x ἄρτος. + " 3x ἄρτου + " 1x ἄρτου, + " 1x ἄρτου. + " 22x ἄρτους + " 4x ἄρτους, + " 1x ἄρτους,— + " 2x ἄρτους; + " 4x ἄρτων + " 3x ἄρτων, + " 2x ἄρτῳ + " 2x ἄρχειν + " 4x ἄρχοντα + " 1x ἄρχοντα, + " 2x ἄρχοντας + " 1x ἄρχοντας, + " 8x ἄρχοντες + " 4x ἄρχοντι + " 1x ἄρχοντος + " 1x ἄρχουσιν + " 7x ἄρχων + " 1x ἄρχων· + " 3x ἄρῃ + " 1x ἄρῃ, + " 1x ἄρῃ. + " 1x ἄρῃς + " 1x ἄσβεστον. + " 1x ἄσιτοι + " 1x ἄσοφοι + " 1x ἄσπασαι + " 1x ἄσπιλοι + " 2x ἄσπιλον + " 1x ἄσπονδοι, + " 1x ἄστοργοι, + " 1x ἄστρα + " 1x ἄστροις, + " 1x ἄστρον + " 1x ἄστρων + " 1x ἄτεκνος + " 1x ἄτεκνος· + " 2x ἄτερ + " 1x ἄτιμοι. + " 2x ἄτιμος + " 2x ἄτοπον + " 1x ἄτοπον, + " 1x ἄφαντος + " 9x ἄφες + " 12x ἄφεσιν + " 2x ἄφεσις + " 1x ἄφεσις. + " 5x ἄφετε + " 1x ἄφθαρτοι, + " 2x ἄφθαρτον + " 1x ἄφθαρτον. + " 1x ἄφιξίν + " 3x ἄφνω + " 2x ἄφρονα + " 2x ἄφρονες, + " 2x ἄφρων, + " 1x ἄφρων· + " 1x ἄφωνα + " 1x ἄφωνον + " 1x ἄφωνον· + " 1x ἄφωνος, + " 1x ἄχρηστον + " 46x ἄχρι + " 2x ἄχρις + " 2x ἄχυρον + " 1x ἄψινθον, + " 1x ἄψυχα + " 5x ἅ + " 1x ἅγιά + " 3x ἅγια + " 1x ἅγια, + " 1x ἅγιαι + " 1x ἅγιε, + " 5x ἅγιοι + " 2x ἅγιοι, + " 11x ἅγιον + " 3x ἅγιον, + " 5x ἅγιος + " 2x ἅγιος, + " 1x ἅγιος. + " 1x ἅγιός + " 1x ἅλα + " 4x ἅλας + " 2x ἅλας· + " 1x ἅλατι + " 1x ἅλυσίν + " 2x ἅλυσιν + " 2x ἅλωνα + " 1x ἅλωσιν + " 10x ἅμα + " 4x ἅπαν + " 7x ἅπαντα + " 2x ἅπαντα. + " 1x ἅπαντας + " 2x ἅπαντας, + " 1x ἅπαντας. + " 7x ἅπαντες + " 1x ἅπαντες, + " 1x ἅπαντες. + " 1x ἅπαντες· + " 14x ἅπαξ + " 2x ἅπας + " 2x ἅπασαν + " 1x ἅπτει + " 1x ἅπτεσθαι + " 1x ἅπτεσθαι· + " 1x ἅπτεσθε· + " 2x ἅπτεται + " 1x ἅπτηται· + " 1x ἅπτου, + " 1x ἅρμα, + " 1x ἅρματι + " 1x ἅρματος + " 1x ἅρπαγες + " 1x ἅρπαγες, + " 1x ἅρπαγες. + " 1x ἅρπαξ, + " 1x ἅρπαξιν + " 3x ἅτινά + " 2x ἅτινα + " 1x ἅψαντες + " 2x ἅψας + " 1x ἅψηται. + " 1x ἅψηται· + " 2x ἅψωμαι + " 2x ἅψωνται + " 1x ἅψωνται· + " 1x ἅψῃ + " 2x ἆρα + " 6x ἆραι + " 4x ἆρον + " 2x ἆρον, + " 1x ἆρόν + " 1x ἆσσον + " 1x Ἀαρών + " 1x Ἀαρών, + " 1x Ἀαρών. + " 2x Ἀαρὼν + " 1x Ἀβαδδών + " 3x Ἀββᾶ + " 2x Ἀβιά, + " 1x Ἀβιαθὰρ + " 1x Ἀβιληνῆς + " 1x Ἀβιούδ, + " 1x Ἀβιοὺδ + " 1x Ἀβιὰ + " 9x Ἀβραάμ + " 10x Ἀβραάμ, + " 6x Ἀβραάμ. + " 4x Ἀβραάμ· + " 44x Ἀβραὰμ + " 1x Ἀγαθός + " 9x Ἀγαπήσεις + " 3x Ἀγαπητέ, + " 9x Ἀγαπητοί, + " 1x Ἀγαπᾶτε + " 1x Ἀγαπῶ + " 2x Ἀγρίππα + " 4x Ἀγρίππα, + " 5x Ἀγρίππας + " 1x Ἀγρὸν + " 1x Ἀγρὸς + " 1x Ἀγωνίζεσθε + " 1x Ἀγόρασον + " 1x Ἀδάμ, + " 1x Ἀδδεὶ + " 1x Ἀδελφέ, + " 2x Ἀδελφοί + " 5x Ἀδελφοί, + " 1x Ἀδμεὶν + " 1x Ἀδρίᾳ, + " 1x Ἀδραμυττηνῷ + " 1x Ἀδύνατον + " 8x Ἀδὰμ + " 1x Ἀεὶ + " 1x Ἀζώρ, + " 1x Ἀζὼρ + " 2x Ἀθήναις + " 1x Ἀθηναῖοι + " 1x Ἀθηναῖοι, + " 1x Ἀθηνῶν + " 1x Ἀθηνῶν, + " 1x Ἀθῷός + " 1x Ἀκελδαμάχ, + " 1x Ἀκηκόαμεν + " 1x Ἀκμὴν + " 2x Ἀκολουθήσω + " 7x Ἀκολούθει + " 1x Ἀκουσόμεθά + " 1x Ἀκουόντων + " 1x Ἀκούεις + " 1x Ἀκούετε + " 1x Ἀκούετε. + " 1x Ἀκούοντες + " 1x Ἀκούοντος + " 3x Ἀκούσαντες + " 4x Ἀκούσας + " 1x Ἀκούσατέ + " 1x Ἀκούσατε + " 1x Ἀκούσατε, + " 2x Ἀκοῇ + " 2x Ἀκύλαν + " 1x Ἀκύλαν, + " 2x Ἀκύλας + " 1x Ἀκύλας, + " 1x Ἀλέξανδρον, + " 3x Ἀλέξανδρος + " 1x Ἀλέξανδρος, + " 1x Ἀλήθειαν + " 1x Ἀλεξάνδρου + " 1x Ἀλεξανδρέων + " 1x Ἀλεξανδρεὺς + " 1x Ἀλεξανδρινῷ, + " 1x Ἀλεξανδρῖνον + " 1x Ἀληθινός, + " 6x Ἀληθῶς + " 1x Ἀλλήλων + " 7x Ἀλλὰ + " 4x Ἀλλ’ + " 3x Ἀλφαίου + " 2x Ἀμήν + " 5x Ἀμήν, + " 1x Ἀμιναδάβ, + " 2x Ἀμιναδὰβ + " 2x Ἀμνὸς + " 1x Ἀμπλιᾶτον + " 1x Ἀμφίπολιν + " 1x Ἀμώς, + " 33x Ἀμὴν + " 2x Ἀμὼς + " 1x Ἀνάβα + " 1x Ἀνάβατε + " 1x Ἀνάβλεψον· + " 1x Ἀνάγκη + " 1x Ἀνάστα + " 2x Ἀνάστηθι + " 1x Ἀνάστηθι· + " 2x Ἀνέβη + " 1x Ἀνένδεκτόν + " 1x Ἀνέστη + " 1x Ἀνήρ + " 1x Ἀναβαίνω + " 1x Ἀναβλέψας + " 1x Ἀναβὰς + " 1x Ἀναθέματι + " 1x Ἀναμιμνῄσκεσθε + " 1x Ἀνανία, + " 1x Ἀνανία. + " 1x Ἀνανίαν + " 7x Ἀνανίας + " 1x Ἀνανίας, + " 1x Ἀνασείει + " 2x Ἀναστάς, + " 1x Ἀναστήσεται + " 6x Ἀναστὰς + " 1x Ἀναστᾶσα + " 2x Ἀναχθέντες + " 1x Ἀναχωρεῖτε· + " 1x Ἀναχωρησάντων + " 4x Ἀνδρέαν + " 5x Ἀνδρέας + " 1x Ἀνδρέας, + " 2x Ἀνδρέου + " 1x Ἀνδρέᾳ· + " 1x Ἀνδρόνικον + " 1x Ἀνεβάλετο + " 1x Ἀνθρώπου + " 1x Ἀνοίξας + " 1x Ἀνοίξω + " 1x Ἀντιοχέα, + " 1x Ἀντιοχείας + " 1x Ἀντιοχείας, + " 1x Ἀντιοχείας· + " 2x Ἀντιοχείᾳ + " 2x Ἀντιοχείᾳ, + " 1x Ἀντιπατρίδα· + " 1x Ἀντιπᾶς + " 4x Ἀντιόχειαν + " 5x Ἀντιόχειαν, + " 1x Ἀντιόχειαν. + " 1x Ἀντιόχειαν· + " 1x Ἀντλήσατε + " 3x Ἀνὴρ + " 1x Ἀπέσταλκαν + " 1x Ἀπαγγείλατε + " 1x Ἀπαγγελῶ + " 1x Ἀπεκρίθη + " 1x Ἀπεκρίθησαν + " 1x Ἀπεκρίνατο + " 1x Ἀπελθόντες + " 1x Ἀπελθόντων + " 1x Ἀπελλῆν + " 1x Ἀπεσταλμένος + " 1x Ἀπεσταλμένος). + " 1x Ἀποθέμενοι + " 1x Ἀποκάλυψις + " 1x Ἀποκαλύπτεται + " 3x Ἀποκριθεὶς + " 1x Ἀπολελύσθαι + " 1x Ἀπολλωνίαν + " 1x Ἀπολλύων. + " 2x Ἀπολλῶ + " 2x Ἀπολλῶ, + " 2x Ἀπολλῶν + " 3x Ἀπολλῶς + " 1x Ἀπολλῶς; + " 1x Ἀπολυθέντες + " 1x Ἀπολῶ + " 1x Ἀποστήτω + " 1x Ἀποστελῶ + " 1x Ἀππίου + " 1x Ἀπφίᾳ + " 1x Ἀπόδος + " 1x Ἀπόδοτε + " 3x Ἀπόλυσον + " 1x Ἀπόστειλον + " 1x Ἀπόστολον + " 1x Ἀπόστρεψον + " 9x Ἀπὸ + " 1x Ἀπῆλθεν + " 1x Ἀράμ, + " 1x Ἀρέτα + " 1x Ἀρίσταρχον + " 2x Ἀρίσταρχος + " 1x Ἀρίσταρχος, + " 1x Ἀραβίαν, + " 1x Ἀραβίᾳ· + " 1x Ἀργύριον + " 1x Ἀρείου + " 1x Ἀρεοπαγείτης + " 1x Ἀριμαθαίας + " 2x Ἀριμαθαίας, + " 1x Ἀριστάρχου + " 1x Ἀριστοβούλου. + " 1x Ἀρκεῖ + " 6x Ἀρνίον + " 2x Ἀρνίον. + " 5x Ἀρνίου + " 5x Ἀρνίου, + " 5x Ἀρνίου. + " 2x Ἀρνίῳ + " 1x Ἀρνίῳ, + " 1x Ἀρνίῳ. + " 1x Ἀρνεὶ + " 3x Ἀρτέμιδος + " 1x Ἀρτεμᾶν + " 1x Ἀρφαξὰδ + " 1x Ἀρχέλαος + " 2x Ἀρχίππῳ + " 2x Ἀρχηγὸν + " 1x Ἀρχιερέα + " 1x Ἀρχιποίμενος + " 1x Ἀρχόμεθα + " 1x Ἀρχὴ + " 1x Ἀρὰμ + " 1x Ἀσάφ, + " 1x Ἀσήρ· + " 1x Ἀσία + " 2x Ἀσίαν + " 2x Ἀσίαν, + " 1x Ἀσίαν. + " 5x Ἀσίας + " 1x Ἀσίας, + " 1x Ἀσίας. + " 2x Ἀσίᾳ, + " 3x Ἀσίᾳ· + " 1x Ἀσιανοὶ + " 1x Ἀσιαρχῶν, + " 3x Ἀσπάζεταί + " 3x Ἀσπάζεται + " 1x Ἀσπάζονταί + " 3x Ἀσπάζονται + " 7x Ἀσπάσασθε + " 1x Ἀσύνκριτον, + " 1x Ἀσὰφ + " 1x Ἀσὴρ + " 1x Ἀτταλίαν, + " 2x Ἀφέωνταί + " 2x Ἀφίενταί + " 1x Ἀφιλάργυρος + " 1x Ἀφορίσατε + " 1x Ἀφ’ + " 2x Ἀχαΐα + " 2x Ἀχαΐαν + " 2x Ἀχαΐας + " 1x Ἀχαΐας. + " 1x Ἀχαΐᾳ, + " 1x Ἀχαΐᾳ. + " 1x Ἀχαΐᾳ· + " 1x Ἀχαϊκοῦ, + " 1x Ἀχείμ, + " 1x Ἀχεὶμ + " 27x Ἁγίου + " 7x Ἁγίου, + " 4x Ἁγίου. + " 2x Ἁγίου· + " 11x Ἁγίῳ + " 3x Ἁγίῳ, + " 5x Ἁγίῳ. + " 1x Ἁγίῳ· + " 1x Ἁγιασθήτω + " 1x Ἁλληλουϊά, + " 1x Ἁλληλουϊά. + " 2x Ἁλληλουϊά· + " 2x Ἁλφαίου + " 1x Ἁριμαθαίας, + " 1x Ἁρμαγεδών. + " 3x Ἃ + " 2x Ἄβελ + " 1x Ἄβελ. + " 1x Ἄγαβος, + " 1x Ἄγαρ + " 1x Ἄγαρ, + " 3x Ἄγγελος + " 2x Ἄγε + " 2x Ἄγουσιν + " 3x Ἄγωμεν + " 1x Ἄζωτον, + " 1x Ἄκουε, + " 4x Ἄλλην + " 3x Ἄλλους + " 3x Ἄλφα + " 1x Ἄνδρα + " 19x Ἄνδρες + " 4x Ἄνδρες, + " 4x Ἄνθρωπε, + " 1x Ἄνθρωποι + " 2x Ἄνθρωπος + " 5x Ἄνθρωπός + " 2x Ἄννα + " 2x Ἄννας + " 3x Ἄξιος + " 1x Ἄξιός + " 5x Ἄρα + " 1x Ἄραβες, + " 1x Ἄραγε + " 3x Ἄρατε + " 1x Ἄρειον + " 2x Ἄρθητι + " 2x Ἄρτεμις + " 4x Ἄρτι + " 1x Ἄρτον + " 1x Ἄρτους + " 1x Ἄρχοντα + " 1x Ἄρχοντες + " 1x Ἄσπασαι + " 6x Ἄφες + " 5x Ἄφετε + " 1x Ἄφρων, + " 1x Ἄχαζ + " 1x Ἄχαζ, + " 1x Ἄχρι + " 1x Ἄψινθος. + " 1x Ἅβελ + " 1x Ἅγαβος + " 1x Ἅγια + " 1x Ἅγια· + " 1x Ἅγιοι + " 25x Ἅγιον + " 1x Ἅγιον, + " 4x Ἅγιον. + " 2x Ἅγιον· + " 4x Ἅγιος + " 2x Ἅιδην + " 3x Ἅιδης + " 3x Ἅιδου + " 1x Ἅιδου. + " 1x Ἅιδῃ + " 1x Ἅνναν + " 1x Ἆρά + " 3x Ἆρον + " 2x Ἆσσον, + " 41x ἐάν + " 2x ἐάνπερ + " 1x ἐάσαντες + " 1x ἐάσει + " 1x ἐβάθυνεν + " 1x ἐβάπτιζεν + " 1x ἐβάπτιζεν. + " 3x ἐβάπτισα + " 1x ἐβάπτισα. + " 4x ἐβάπτισεν + " 1x ἐβάσκανεν, + " 1x ἐβάσταζεν. + " 2x ἐβάστασας + " 1x ἐβάστασεν. + " 1x ἐβέβλητο + " 3x ἐβαπτίζοντο + " 1x ἐβαπτίζοντο. + " 1x ἐβαπτίζοντο· + " 1x ἐβαπτίσαντο + " 4x ἐβαπτίσθη + " 1x ἐβαπτίσθη, + " 1x ἐβαπτίσθημεν + " 1x ἐβαπτίσθημεν, + " 1x ἐβαπτίσθημεν; + " 1x ἐβαπτίσθησαν + " 1x ἐβαπτίσθησαν, + " 1x ἐβαπτίσθητε, + " 1x ἐβαπτίσθητε. + " 2x ἐβαπτίσθητε; + " 1x ἐβαρήθημεν, + " 1x ἐβασάνιζεν,— + " 1x ἐβασάνισαν + " 1x ἐβασίλευσαν + " 1x ἐβασίλευσας· + " 4x ἐβασίλευσεν + " 1x ἐβασιλεύσατε, + " 1x ἐβασιλεύσατε· + " 1x ἐβαστάζετο, + " 1x ἐβδελυγμένοις + " 1x ἐβεβαιώθη + " 1x ἐβεβαιώθη, + " 2x ἐβλάστησεν + " 9x ἐβλήθη + " 2x ἐβλήθησαν + " 1x ἐβλήθησαν. + " 1x ἐβλασφήμει + " 3x ἐβλασφήμησαν + " 2x ἐβλασφήμουν + " 1x ἐβοήθησά + " 1x ἐβοήθησεν + " 1x ἐβουλήθη + " 1x ἐβουλήθην + " 1x ἐβουλεύοντο + " 2x ἐβουλεύσαντο + " 2x ἐβουλόμην + " 1x ἐβούλετο + " 2x ἐβούλοντο + " 3x ἐβόησεν + " 1x ἐγάμησεν· + " 1x ἐγάμουν, + " 2x ἐγέμισαν + " 1x ἐγέμισεν + " 1x ἐγένεσθε + " 3x ἐγένεσθε, + " 154x ἐγένετο + " 9x ἐγένετο, + " 4x ἐγένετο. + " 1x ἐγένετο; + " 1x ἐγέννησα + " 1x ἐγέννησα. + " 1x ἐγέννησαν, + " 42x ἐγέννησεν + " 10x ἐγένοντο + " 1x ἐγένοντο, + " 1x ἐγένοντο. + " 2x ἐγένου, + " 1x ἐγέρθητι. + " 4x ἐγήγερται + " 3x ἐγήγερται, + " 2x ἐγήγερται· + " 1x ἐγίνετο + " 1x ἐγίνετο, + " 1x ἐγίνετο. + " 4x ἐγίνωσκεν + " 1x ἐγίνωσκον + " 1x ἐγαμίζοντο, + " 2x ἐγγίζει + " 2x ἐγγίζειν + " 1x ἐγγίζομεν + " 1x ἐγγίζοντες + " 1x ἐγγίζοντι + " 1x ἐγγίζοντος + " 1x ἐγγίζουσαν + " 1x ἐγγίζουσιν + " 1x ἐγγίσαι + " 1x ἐγγίσαντος + " 2x ἐγγίσας + " 1x ἐγγίσατε + " 1x ἐγγίσει + " 1x ἐγγιζόντων + " 5x ἐγγύς + " 1x ἐγγύς, + " 1x ἐγγύς. + " 2x ἐγγύς· + " 1x ἐγγύτερον + " 20x ἐγγὺς + " 2x ἐγείραντα + " 3x ἐγείραντος + " 3x ἐγείρας + " 1x ἐγείρει + " 1x ἐγείρει; + " 2x ἐγείρειν + " 1x ἐγείρεσθε + " 1x ἐγείρεσθε, + " 6x ἐγείρεται + " 1x ἐγείρεται. + " 1x ἐγείρετε, + " 1x ἐγείρηται + " 1x ἐγείρομαι. + " 3x ἐγείρονται + " 5x ἐγείρονται, + " 1x ἐγείρονται. + " 1x ἐγείροντι + " 1x ἐγείρουσιν + " 1x ἐγεγόνει + " 1x ἐγεμίσθη + " 9x ἐγενήθη + " 2x ἐγενήθη, + " 1x ἐγενήθη. + " 4x ἐγενήθημεν + " 3x ἐγενήθημεν, + " 1x ἐγενήθην + " 1x ἐγενήθησάν + " 4x ἐγενήθησαν + " 1x ἐγενήθησαν, + " 3x ἐγενήθητε + " 1x ἐγενήθητε, + " 1x ἐγενήθητε. + " 5x ἐγεννήθη + " 1x ἐγεννήθη; + " 1x ἐγεννήθη· + " 2x ἐγεννήθημεν, + " 1x ἐγεννήθης + " 1x ἐγεννήθησαν + " 1x ἐγεννήθησαν, + " 1x ἐγεννήθησαν. + " 11x ἐγενόμην + " 1x ἐγενόμην, + " 2x ἐγερεῖ + " 1x ἐγερεῖ; + " 1x ἐγερεῖς + " 1x ἐγερθέντι, + " 1x ἐγερθέντι. + " 4x ἐγερθήσεται + " 2x ἐγερθήσεται. + " 4x ἐγερθήσονται + " 1x ἐγερθείς, + " 9x ἐγερθεὶς + " 2x ἐγερθῆναί + " 2x ἐγερθῆναι. + " 1x ἐγερθῆναι· + " 1x ἐγερθῇ + " 1x ἐγερθῇ. + " 1x ἐγερῶ + " 1x ἐγεύσασθε + " 1x ἐγεύσατο + " 2x ἐγεῖραι + " 2x ἐγηγερμένον + " 1x ἐγκακήσητε + " 2x ἐγκακοῦμεν, + " 1x ἐγκαλέσει + " 1x ἐγκαλείτωσαν + " 1x ἐγκαλεῖσθαι + " 1x ἐγκαλούμενον + " 2x ἐγκαλοῦμαι + " 1x ἐγκατέλιπές + " 2x ἐγκατέλιπεν + " 1x ἐγκατέλιπες; + " 1x ἐγκατέλιπον· + " 1x ἐγκαταλίπω· + " 1x ἐγκαταλείποντες + " 1x ἐγκαταλειπόμενοι, + " 1x ἐγκεντρισθῶ. + " 1x ἐγκλήματος. + " 1x ἐγκομβώσασθε, + " 1x ἐγκράτεια· + " 1x ἐγκράτειαν, + " 1x ἐγκρατείας + " 1x ἐγκρατείᾳ + " 1x ἐγκρατεύεται, + " 1x ἐγκρατεύονται, + " 1x ἐγκρατῆ, + " 1x ἐγκύῳ. + " 1x ἐγνωκέναι + " 1x ἐγνωκότες + " 1x ἐγνωρίσαμεν + " 3x ἐγνωρίσθη + " 6x ἐγνώκαμεν + " 4x ἐγνώκατε + " 1x ἐγνώκειτέ + " 1x ἐγνώκειτε + " 1x ἐγνώρισάς + " 2x ἐγνώρισα + " 1x ἐγνώρισαν + " 1x ἐγνώρισεν + " 2x ἐγνώσθη + " 2x ἐγράφη + " 2x ἐγράφη, + " 1x ἐγράψατε, + " 1x ἐγρηγόρησεν + " 1x ἐγχρῖσαι + " 2x ἐγόγγυζον + " 1x ἐγόγγυσαν, + " 29x ἐγώ + " 7x ἐγώ, + " 4x ἐγώ. + " 1x ἐγώ; + " 4x ἐγώ· + " 239x ἐγὼ + " 2x ἐγὼ, + " 1x ἐδάκρυσεν + " 5x ἐδέξαντο + " 1x ἐδέξασθέ + " 2x ἐδέξασθε + " 1x ἐδέξασθε, + " 2x ἐδέξατο + " 1x ἐδέξατο, + " 1x ἐδήλου + " 1x ἐδήλωσέν + " 1x ἐδίδαξέν + " 1x ἐδίδαξα + " 1x ἐδίδαξαν. + " 1x ἐδίδαξας· + " 2x ἐδίδαξεν + " 12x ἐδίδασκεν + " 2x ἐδίδασκεν. + " 1x ἐδίδασκον + " 1x ἐδίδασκον. + " 1x ἐδίδοσαν + " 9x ἐδίδου + " 2x ἐδίδουν + " 1x ἐδίστασαν. + " 1x ἐδίστασας; + " 2x ἐδίψησα + " 1x ἐδίωκεν + " 3x ἐδίωκον + " 2x ἐδίωξα + " 2x ἐδίωξαν + " 1x ἐδίωξαν, + " 1x ἐδίωξεν + " 1x ἐδαφιοῦσίν + " 1x ἐδεήθη + " 2x ἐδεήθην + " 1x ἐδειγμάτισεν + " 1x ἐδεξάμεθα + " 1x ἐδεσμεύετο + " 1x ἐδεῖτο + " 1x ἐδηλώθη + " 1x ἐδημηγόρει + " 1x ἐδιδάχθην, + " 1x ἐδιδάχθησαν. + " 1x ἐδιδάχθητε + " 2x ἐδιδάχθητε, + " 1x ἐδικαίωσαν + " 1x ἐδικαίωσεν, + " 1x ἐδικαίωσεν· + " 3x ἐδικαιώθη + " 3x ἐδικαιώθη, + " 1x ἐδικαιώθητε + " 1x ἐδοκίμασαν + " 1x ἐδοκιμάσαμεν + " 1x ἐδολιοῦσαν, + " 5x ἐδοξάσθη + " 1x ἐδοξάσθη. + " 1x ἐδουλεύσατε + " 1x ἐδουλώθητε + " 1x ἐδούλευσεν + " 1x ἐδούλωσα, + " 1x ἐδυναμώθησαν + " 1x ἐδωρήσατο + " 29x ἐδόθη + " 1x ἐδόθη, + " 2x ἐδόθησαν + " 1x ἐδόκει + " 1x ἐδόκουν + " 1x ἐδόκουν, + " 2x ἐδόξαζεν + " 6x ἐδόξαζον + " 2x ἐδόξασα + " 4x ἐδόξασαν + " 3x ἐδόξασεν + " 1x ἐδόξασεν. + " 1x ἐδύνασθε. + " 10x ἐδύνατο + " 1x ἐδύνατο, + " 1x ἐδώκαμεν + " 3x ἐδώκατέ + " 7x ἐζήτει + " 1x ἐζήτησέν + " 1x ἐζήτησαν + " 16x ἐζήτουν + " 1x ἐζημιώθην, + " 1x ἐζητήσαμεν + " 1x ἐζητεῖτέ + " 1x ἐζητεῖτο + " 2x ἐζυμώθη + " 1x ἐζωγρημένοι + " 1x ἐζώννυες + " 1x ἐζῆτε + " 1x ἐθήλασας. + " 1x ἐθαμβήθησαν + " 1x ἐθαμβοῦντο + " 1x ἐθαμβοῦντο, + " 1x ἐθανατώθητε + " 1x ἐθαυμάσθη + " 1x ἐθαύμαζεν + " 5x ἐθαύμαζον + " 1x ἐθαύμαζον, + " 1x ἐθαύμαζον. + " 1x ἐθαύμασα + " 6x ἐθαύμασαν + " 2x ἐθαύμασαν, + " 1x ἐθαύμασας; + " 5x ἐθαύμασεν + " 1x ἐθεάθη + " 1x ἐθεάσαντο + " 1x ἐθεάσαντο, + " 1x ἐθεάσασθε + " 1x ἐθεάσατο + " 2x ἐθεασάμεθα + " 1x ἐθελοθρησκίᾳ + " 1x ἐθεμελίωσας, + " 1x ἐθεράπευεν + " 1x ἐθεράπευον. + " 10x ἐθεράπευσεν + " 1x ἐθεράπευσεν, + " 1x ἐθεράπευσεν. + " 1x ἐθεράπευσεν· + " 1x ἐθερίσθη + " 2x ἐθεραπεύθη + " 1x ἐθεραπεύθη. + " 1x ἐθεραπεύθησαν· + " 1x ἐθεραπεύοντο + " 1x ἐθεραπεύοντο, + " 1x ἐθεραπεύοντο· + " 1x ἐθερμαίνοντο· + " 1x ἐθεώρει + " 1x ἐθεώρησαν + " 1x ἐθεώρουν + " 1x ἐθεώρουν, + " 1x ἐθηριομάχησα + " 1x ἐθησαυρίσατε + " 1x ἐθνάρχης + " 1x ἐθνικοί· + " 1x ἐθνικοὶ + " 1x ἐθνικὸς + " 1x ἐθνικῶν. + " 1x ἐθνικῶς + " 27x ἐθνῶν + " 11x ἐθνῶν, + " 3x ἐθνῶν. + " 2x ἐθνῶν; + " 2x ἐθνῶν· + " 1x ἐθνῶν— + " 1x ἐθορύβουν + " 1x ἐθρέψαμεν, + " 1x ἐθρέψατε + " 1x ἐθρήνουν + " 2x ἐθρηνήσαμεν + " 1x ἐθυμώθη + " 1x ἐθῶν + " 667x ἐκ + " 1x ἐκάθευδεν. + " 1x ἐκάθευδον. + " 10x ἐκάθητο + " 1x ἐκάθητο, + " 1x ἐκάθισα + " 2x ἐκάθισαν + " 1x ἐκάθισαν. + " 8x ἐκάθισεν + " 1x ἐκάθισεν, + " 2x ἐκάθισεν· + " 1x ἐκάκωσαν + " 1x ἐκάκωσεν + " 1x ἐκάλεσα + " 8x ἐκάλεσεν + " 1x ἐκάλεσεν, + " 1x ἐκάλεσεν· + " 2x ἐκάλουν + " 2x ἐκάμμυσαν· + " 1x ἐκέκραξα + " 1x ἐκέλευον + " 1x ἐκέλευσέν + " 2x ἐκέλευσα + " 14x ἐκέλευσεν + " 1x ἐκένωσεν + " 1x ἐκέρασεν + " 2x ἐκέρδησα. + " 1x ἐκέρδησας + " 2x ἐκέρδησεν + " 2x ἐκήρυξαν + " 1x ἐκήρυξεν + " 1x ἐκήρυξεν, + " 3x ἐκήρυσσεν + " 1x ἐκήρυσσον. + " 2x ἐκαθάρισεν + " 1x ἐκαθέζετο + " 1x ἐκαθέζετο. + " 1x ἐκαθαρίσθη + " 1x ἐκαθαρίσθησαν. + " 1x ἐκαθαρίσθησαν; + " 1x ἐκαθεζόμην + " 1x ἐκαθερίσθη + " 1x ἐκαθερίσθη. + " 1x ἐκαρτέρησεν. + " 1x ἐκαυματίσθη + " 1x ἐκαυματίσθη, + " 1x ἐκαυματίσθησαν + " 2x ἐκβάλετε + " 8x ἐκβάλλει + " 1x ἐκβάλλει, + " 1x ἐκβάλλει. + " 5x ἐκβάλλειν + " 1x ἐκβάλλειν; + " 1x ἐκβάλλεις + " 1x ἐκβάλλεται; + " 1x ἐκβάλλετε· + " 2x ἐκβάλλοντα + " 3x ἐκβάλλουσιν; + " 5x ἐκβάλλω + " 1x ἐκβάλλων + " 1x ἐκβάλλων. + " 3x ἐκβάλω + " 2x ἐκβάλωσιν + " 1x ἐκβάλωσιν, + " 4x ἐκβάλῃ + " 1x ἐκβάλῃ, + " 3x ἐκβαλεῖν + " 1x ἐκβαλεῖν. + " 1x ἐκβαλλομένους + " 1x ἐκβαλλόμενοι + " 1x ἐκβαλοῦσα; + " 1x ἐκβαλοῦσιν, + " 2x ἐκβαλόντες + " 3x ἐκβαλὼν + " 1x ἐκβεβλήκει + " 1x ἐκβληθέντος + " 1x ἐκβληθήσεται + " 1x ἐκβληθήσονται + " 1x ἐκβολὴν + " 1x ἐκδέχεσθε. + " 1x ἐκδέχεται + " 1x ἐκδέχομαι + " 5x ἐκδίκησιν + " 1x ἐκδίκησιν. + " 2x ἐκδίκησις, + " 1x ἐκδαπανηθήσομαι + " 1x ἐκδεχομένου + " 1x ἐκδεχομένων + " 1x ἐκδεχόμενος + " 1x ἐκδημοῦμεν + " 1x ἐκδημοῦντες, + " 1x ἐκδημῆσαι + " 1x ἐκδιηγούμενοι + " 1x ἐκδιηγῆται + " 1x ἐκδικήσεως + " 1x ἐκδικήσω + " 1x ἐκδικεῖς + " 1x ἐκδικοῦντες, + " 1x ἐκδικῆσαι + " 1x ἐκδιωξάντων, + " 1x ἐκδοχὴ + " 2x ἐκδύσαντες + " 1x ἐκδύσασθαι + " 1x ἐκδώσεται + " 15x ἐκείναις + " 1x ἐκείναις, + " 2x ἐκείνας, + " 8x ἐκείνη + " 1x ἐκείνη· + " 6x ἐκείνην + " 2x ἐκείνην, + " 1x ἐκείνην. + " 1x ἐκείνην· + " 14x ἐκείνης + " 1x ἐκείνης, + " 4x ἐκείνης. + " 5x ἐκείνοις + " 1x ἐκείνοις, + " 1x ἐκείνοις; + " 1x ἐκείνοις· + " 16x ἐκείνου + " 3x ἐκείνου, + " 2x ἐκείνου. + " 1x ἐκείνου· + " 4x ἐκείνους + " 1x ἐκείνους. + " 9x ἐκείνων + " 27x ἐκείνῃ + " 5x ἐκείνῃ, + " 6x ἐκείνῃ. + " 8x ἐκείνῳ + " 1x ἐκείνῳ· + " 1x ἐκεφαλίωσαν + " 72x ἐκεῖ + " 8x ἐκεῖ, + " 9x ἐκεῖ. + " 1x ἐκεῖ; + " 4x ἐκεῖ· + " 1x ἐκεῖθέν + " 19x ἐκεῖθεν + " 2x ἐκεῖθεν, + " 4x ἐκεῖθεν. + " 1x ἐκεῖνα + " 1x ἐκεῖναί + " 2x ἐκεῖναι + " 1x ἐκεῖναι, + " 1x ἐκεῖναι. + " 3x ἐκεῖνο + " 1x ἐκεῖνο. + " 1x ἐκεῖνοί + " 13x ἐκεῖνοι + " 2x ἐκεῖνοι, + " 1x ἐκεῖνοι. + " 10x ἐκεῖνον + " 1x ἐκεῖνον. + " 1x ἐκεῖνον· + " 41x ἐκεῖνος + " 4x ἐκεῖνος, + " 3x ἐκεῖνος. + " 2x ἐκεῖνος; + " 7x ἐκεῖνός + " 2x ἐκεῖσε + " 1x ἐκζητήσας + " 1x ἐκζητήσεις + " 1x ἐκζητήσωσιν + " 1x ἐκζητηθήσεται + " 1x ἐκζητηθῇ + " 1x ἐκζητοῦσιν + " 1x ἐκζητῶν + " 1x ἐκηρύξαμεν + " 1x ἐκηρύξαμεν, + " 1x ἐκηρύχθη + " 1x ἐκθαμβεῖσθαι + " 1x ἐκθαμβεῖσθε· + " 1x ἐκινήθη + " 1x ἐκινήθησαν. + " 1x ἐκινδύνευον. + " 1x ἐκκέχυται + " 1x ἐκκέχυται· + " 1x ἐκκαθάρατε + " 1x ἐκκαθάρῃ + " 1x ἐκκεχυμένον + " 1x ἐκκλίνετε + " 1x ἐκκλεῖσαι + " 7x ἐκκλησία + " 2x ἐκκλησία, + " 7x ἐκκλησίαι + " 9x ἐκκλησίαις + " 1x ἐκκλησίαις, + " 8x ἐκκλησίαις. + " 10x ἐκκλησίαν + " 6x ἐκκλησίαν, + " 4x ἐκκλησίαν. + " 20x ἐκκλησίας + " 4x ἐκκλησίας, + " 4x ἐκκλησίας. + " 1x ἐκκλησίας· + " 16x ἐκκλησίᾳ + " 3x ἐκκλησίᾳ, + " 2x ἐκκλησίᾳ. + " 3x ἐκκλησίᾳ· + " 3x ἐκκλησιῶν + " 2x ἐκκλησιῶν, + " 2x ἐκκλησιῶν. + " 1x ἐκκλινάτω + " 1x ἐκκολυμβήσας + " 1x ἐκκοπήσῃ. + " 3x ἐκκόπτεται + " 1x ἐκκόψεις + " 1x ἐκκόψω + " 1x ἐκλάμψουσιν + " 1x ἐκλέλησθε + " 3x ἐκλήθη + " 2x ἐκλήθη, + " 1x ἐκλήθη. + " 1x ἐκλήθη; + " 1x ἐκλήθης + " 1x ἐκλήθης; + " 4x ἐκλήθητε + " 3x ἐκλήθητε, + " 2x ἐκλίπῃ + " 1x ἐκλαλῆσαι + " 1x ἐκλαύσατε. + " 2x ἐκλείσθη + " 1x ἐκλείσθησαν + " 1x ἐκλείψουσιν. + " 1x ἐκλεκτοί. + " 1x ἐκλεκτούς, + " 1x ἐκλεκτούς. + " 1x ἐκλεκτούς· + " 2x ἐκλεκτοὶ + " 4x ἐκλεκτοὺς + " 1x ἐκλεκτοῖς + " 1x ἐκλεκτόν, + " 1x ἐκλεκτός. + " 3x ἐκλεκτὸν + " 1x ἐκλεκτῆς. + " 1x ἐκλεκτῇ + " 4x ἐκλεκτῶν + " 1x ἐκλελεγμένος, + " 1x ἐκλεξάμενος + " 2x ἐκλεξαμένους + " 1x ἐκληρώθημεν + " 1x ἐκλιπόντος, + " 1x ἐκλογὴ + " 5x ἐκλογὴν + " 1x ἐκλογῆς + " 1x ἐκλυθήσονται + " 1x ἐκλυθῶσιν + " 2x ἐκλυόμενοι. + " 1x ἐκλύου + " 1x ἐκμάξασα + " 1x ἐκμάσσειν + " 1x ἐκνήψατε + " 1x ἐκοιμήθη + " 1x ἐκοιμήθη. + " 1x ἐκοιμήθησαν, + " 1x ἐκοιμήθησαν· + " 1x ἐκοινώνησαν + " 1x ἐκοινώνησεν + " 1x ἐκολάφισαν + " 1x ἐκολλήθη + " 1x ἐκολλήθησαν + " 1x ἐκολοβώθησαν + " 2x ἐκολόβωσεν + " 1x ἐκομίσαντο + " 1x ἐκομίσατο. + " 1x ἐκομισάμην + " 1x ἐκοπίασα, + " 1x ἐκοπίασα. + " 2x ἐκοπίασεν + " 1x ἐκούφιζον + " 1x ἐκπέπτωκεν + " 1x ἐκπέσητε + " 1x ἐκπέσωμεν, + " 1x ἐκπέσωσιν, + " 1x ἐκπειράζωμεν + " 1x ἐκπειράζων + " 2x ἐκπειράσεις + " 1x ἐκπεμφθέντες + " 1x ἐκπεπλήρωκεν + " 1x ἐκπερισσῶς + " 2x ἐκπεσεῖν. + " 1x ἐκπεφευγέναι + " 1x ἐκπλήρωσιν + " 1x ἐκπλήσσεσθαι + " 1x ἐκπλεῦσαι + " 1x ἐκπλησσόμενος + " 1x ἐκπορευέσθω, + " 1x ἐκπορευομένη, + " 2x ἐκπορευομένοις + " 4x ἐκπορευομένου + " 1x ἐκπορευομένων + " 1x ἐκπορευομένῳ + " 1x ἐκπορευόμενά + " 1x ἐκπορευόμενα + " 1x ἐκπορευόμενοι + " 2x ἐκπορευόμενον + " 1x ἐκπορευόμενον, + " 1x ἐκπορευόμενος + " 1x ἐκπορεύεσθαι. + " 1x ἐκπορεύεσθαι· + " 5x ἐκπορεύεται + " 2x ἐκπορεύεται, + " 1x ἐκπορεύονται + " 1x ἐκπορεύονται, + " 1x ἐκπορεύσονται + " 1x ἐκπορνεύσασαι + " 4x ἐκράτησαν + " 3x ἐκράτησεν + " 1x ἐκρίθη + " 2x ἐκρίθησαν + " 1x ἐκρατήσαμεν, + " 2x ἐκρατήσατέ + " 2x ἐκραταιοῦτο + " 1x ἐκρατοῦντο + " 1x ἐκραύγαζον + " 4x ἐκραύγασαν + " 1x ἐκραύγασεν + " 1x ἐκριζωθέντα, + " 1x ἐκριζωθήσεται. + " 1x ἐκριζώσητε + " 1x ἐκρινόμεθα· + " 4x ἐκρύβη + " 3x ἐκστάσει + " 1x ἐκστάσεως + " 1x ἐκτήσατο + " 2x ἐκτίσθη + " 1x ἐκτίσθησαν. + " 1x ἐκταράσσουσιν + " 7x ἐκτείνας + " 1x ἐκτείνειν + " 1x ἐκτείνειν, + " 1x ἐκτεθέντος + " 1x ἐκτελέσαι + " 1x ἐκτελέσαι. + " 1x ἐκτενέστερον + " 1x ἐκτενείᾳ + " 1x ἐκτενεῖς + " 1x ἐκτενῆ + " 1x ἐκτενῶς + " 1x ἐκτενῶς, + " 1x ἐκτησάμην. + " 2x ἐκτινάξατε + " 1x ἐκτιναξάμενοι + " 1x ἐκτιναξάμενος + " 1x ἐκτρέφει + " 1x ἐκτρέφετε + " 1x ἐκτραπήσονται. + " 1x ἐκτραπῇ, + " 1x ἐκτρεπόμενος + " 1x ἐκτρώματι + " 8x ἐκτὸς + " 1x ἐκυλίετο + " 1x ἐκφέρειν + " 1x ἐκφέρουσα + " 1x ἐκφευξόμεθα + " 1x ἐκφεύξῃ + " 1x ἐκφοβεῖν + " 2x ἐκφυγεῖν + " 1x ἐκφύγωσιν. + " 1x ἐκφύῃ + " 1x ἐκφύῃ, + " 1x ἐκχέαι + " 1x ἐκχέετε + " 1x ἐκχεῖται + " 2x ἐκχεῶ + " 1x ἐκχυθήσεται + " 3x ἐκχυννόμενον + " 1x ἐκχυννόμενον. + " 1x ἐκχωρείτωσαν, + " 1x ἐκωλύθην + " 2x ἐκωλύομεν + " 1x ἐκωλύσατε. + " 3x ἐκόπασεν + " 2x ἐκόπτοντο + " 1x ἐκόσμησαν + " 1x ἐκόσμουν + " 1x ἐκόψασθε· + " 1x ἐκύκλευσαν + " 1x ἐκύκλωσαν + " 2x ἐκώλυσεν + " 7x ἐλάβετε + " 3x ἐλάβετε, + " 2x ἐλάβετε; + " 3x ἐλάβομεν + " 1x ἐλάβομεν, + " 2x ἐλάβομεν. + " 1x ἐλάβομεν· + " 1x ἐλάκησεν + " 17x ἐλάλει + " 2x ἐλάλει. + " 1x ἐλάλει· + " 1x ἐλάλησέν + " 4x ἐλάλησα + " 4x ἐλάλησα, + " 11x ἐλάλησαν + " 29x ἐλάλησεν + " 1x ἐλάλησεν. + " 6x ἐλάλουν + " 1x ἐλάμβανον + " 1x ἐλάσσονι· + " 1x ἐλάσσω· + " 1x ἐλάτρευσαν + " 1x ἐλάχιστον + " 2x ἐλάχιστος + " 1x ἐλάχιστόν + " 1x ἐλέγετε + " 1x ἐλέγξαι + " 1x ἐλέγξει + " 1x ἐλέγχει + " 1x ἐλέγχειν. + " 1x ἐλέγχεται + " 1x ἐλέγχετε, + " 1x ἐλέγχω + " 1x ἐλέει + " 1x ἐλέει, + " 3x ἐλέησον + " 6x ἐλέησόν + " 3x ἐλέους + " 2x ἐλέους, + " 4x ἐλήλυθα + " 3x ἐλήλυθα, + " 1x ἐλήλυθας + " 1x ἐλήλυθας. + " 5x ἐλήλυθεν + " 2x ἐλήλυθεν, + " 2x ἐλαίας + " 1x ἐλαίου + " 1x ἐλαίου. + " 1x ἐλαίᾳ. + " 3x ἐλαίῳ + " 1x ἐλαιῶν. + " 2x ἐλαλήθη + " 1x ἐλαλήσαμεν + " 1x ἐλαλήσατε + " 1x ἐλαλοῦμεν + " 1x ἐλαττοῦσθαι. + " 1x ἐλατόμησεν + " 1x ἐλαυνόμενα, + " 1x ἐλαυνόμεναι, + " 1x ἐλαφρίᾳ + " 1x ἐλαφρόν + " 1x ἐλαφρὸν + " 1x ἐλαχίστη + " 1x ἐλαχίστου + " 1x ἐλαχίστων + " 2x ἐλαχίστων, + " 1x ἐλαχίστων; + " 3x ἐλαχίστῳ + " 1x ἐλαχιστοτέρῳ + " 1x ἐλαύνειν, + " 1x ἐλαῖαι + " 1x ἐλεήμονες, + " 1x ἐλεήμων + " 1x ἐλεήσῃ. + " 1x ἐλεγμόν, + " 1x ἐλεγχθῇ + " 1x ἐλεγχόμενα + " 1x ἐλεγχόμενοι + " 1x ἐλεγχόμενοι, + " 1x ἐλεγχόμενος + " 1x ἐλεγχόμενος· + " 1x ἐλεεινότεροι + " 1x ἐλεεινὸς + " 1x ἐλεεῖ, + " 1x ἐλεηθέντες. + " 1x ἐλεηθήσονται. + " 1x ἐλεηθῶσιν. + " 1x ἐλεημοσυνῶν + " 2x ἐλεημοσύναι + " 2x ἐλεημοσύνας + " 1x ἐλεημοσύνη + " 4x ἐλεημοσύνην + " 2x ἐλεημοσύνην, + " 1x ἐλεημοσύνην· + " 3x ἐλευθέρα + " 1x ἐλευθέρας + " 3x ἐλευθέρας. + " 1x ἐλευθέρους + " 1x ἐλευθέρων + " 1x ἐλευθερία + " 1x ἐλευθερία. + " 4x ἐλευθερίαν + " 1x ἐλευθερίαν, + " 2x ἐλευθερίας + " 2x ἐλευθερίᾳ + " 2x ἐλευθερωθέντες + " 1x ἐλευθερωθήσεται + " 1x ἐλευθερώσει + " 1x ἐλευθερώσῃ, + " 1x ἐλευσόμεθα + " 1x ἐλεφάντινον + " 1x ἐλεύθεροί + " 2x ἐλεύθεροι + " 1x ἐλεύθεροι, + " 1x ἐλεύθεροι. + " 3x ἐλεύθερος + " 2x ἐλεύθερος, + " 1x ἐλεύθερος. + " 1x ἐλεύθερος; + " 1x ἐλεύκαναν + " 4x ἐλεύσεται + " 1x ἐλεύσεως + " 3x ἐλεύσομαι + " 2x ἐλεύσομαι. + " 9x ἐλεύσονται + " 2x ἐλεᾶτε + " 1x ἐλεῆσαι + " 1x ἐλεῶ, + " 1x ἐλεῶν + " 1x ἐλεῶντος + " 1x ἐληλακότες + " 1x ἐληλυθυῖαν + " 2x ἐληλυθότα + " 1x ἐληλυθότες + " 5x ἐληλύθει + " 1x ἐληλύθει, + " 1x ἐληλύθεισαν + " 3x ἐλθάτω + " 27x ἐλθεῖν + " 5x ἐλθεῖν, + " 7x ἐλθεῖν. + " 2x ἐλθεῖν; + " 1x ἐλθεῖν· + " 2x ἐλθούσης + " 4x ἐλθοῦσα + " 1x ἐλθοῦσα, + " 1x ἐλθοῦσαι + " 2x ἐλθόντα + " 1x ἐλθόντας + " 21x ἐλθόντες + " 1x ἐλθόντες, + " 1x ἐλθόντι + " 6x ἐλθόντος + " 2x ἐλθόντων + " 1x ἐλθὲ + " 2x ἐλθὸν + " 46x ἐλθὼν + " 1x ἐλιθάσθην, + " 1x ἐλιθάσθησαν, + " 1x ἐλιθοβόλησαν. + " 1x ἐλιθοβόλουν + " 1x ἐλιθοβόλουν. + " 1x ἐλλογεῖται + " 1x ἐλλόγα· + " 5x ἐλογίσθη + " 1x ἐλογίσθη; + " 1x ἐλογίσθη· + " 1x ἐλογίσθημεν + " 1x ἐλογιζόμην + " 1x ἐλοιδόρησαν + " 16x ἐλπίδα + " 1x ἐλπίδα. + " 1x ἐλπίδα· + " 10x ἐλπίδι + " 1x ἐλπίδι, + " 10x ἐλπίδος + " 2x ἐλπίδος, + " 1x ἐλπίδος· + " 1x ἐλπίζει + " 1x ἐλπίζει, + " 1x ἐλπίζει; + " 1x ἐλπίζετε + " 1x ἐλπίζομεν, + " 1x ἐλπίζουσαι + " 9x ἐλπίζω + " 2x ἐλπίζων + " 1x ἐλπίς, + " 1x ἐλπίς· + " 1x ἐλπίσατε + " 1x ἐλπιζομένων + " 2x ἐλπιοῦσιν. + " 8x ἐλπὶς + " 1x ἐλυμαίνετο + " 1x ἐλυπήθη + " 2x ἐλυπήθησαν + " 2x ἐλυπήθητε + " 1x ἐλυπήθητε, + " 1x ἐλυτρώθητε + " 1x ἐλύετο + " 1x ἐλύθη + " 1x ἐλύθησαν + " 1x ἐλύπησα + " 1x ἐλύπησεν + " 1x ἐμά + " 2x ἐμά, + " 4x ἐμάθετε + " 1x ἐμέ + " 7x ἐμέ, + " 9x ἐμέ. + " 1x ἐμέ; + " 6x ἐμέ· + " 4x ἐμέρισεν + " 1x ἐμέσαι + " 2x ἐμέτρησεν + " 1x ἐμή, + " 1x ἐμήν, + " 1x ἐμήνυσεν + " 1x ἐμίσησα. + " 1x ἐμίσησας + " 1x ἐμίσησεν + " 1x ἐμίσησεν, + " 1x ἐμίσουν + " 1x ἐμαθητεύθη + " 1x ἐμαρτυρήθη + " 1x ἐμαρτυρήθησαν + " 1x ἐμαρτυρήσαμεν + " 1x ἐμαρτυρεῖτο + " 1x ἐμαρτύρησάν + " 5x ἐμαρτύρησεν + " 1x ἐμαρτύρουν + " 1x ἐμαστίγωσεν. + " 1x ἐμασῶντο + " 1x ἐματαιώθησαν + " 10x ἐμαυτοῦ + " 3x ἐμαυτοῦ, + " 1x ἐμαυτοῦ. + " 3x ἐμαυτόν, + " 2x ἐμαυτόν. + " 1x ἐμαυτόν· + " 12x ἐμαυτὸν + " 5x ἐμαυτῷ + " 2x ἐμβάντα + " 1x ἐμβάντες + " 1x ἐμβάντι + " 1x ἐμβάψας + " 1x ἐμβαίνοντος + " 1x ἐμβαλεῖν + " 1x ἐμβαπτόμενος + " 1x ἐμβατεύων, + " 6x ἐμβλέψας + " 1x ἐμβλέψασα + " 1x ἐμβλέψατε + " 1x ἐμβριμησάμενος + " 1x ἐμβριμώμενος + " 6x ἐμβὰς + " 2x ἐμβῆναι + " 2x ἐμείναμεν + " 2x ἐμεγάλυνεν + " 1x ἐμεγαλύνετο + " 1x ἐμεθύσθησαν + " 1x ἐμελέτησαν + " 1x ἐμερίσθη, + " 1x ἐμερίσθη· + " 1x ἐμεσίτευσεν + " 1x ἐμισθώσατο. + " 1x ἐμμένει + " 1x ἐμμένειν + " 1x ἐμμαινόμενος + " 2x ἐμνήσθη + " 1x ἐμνήσθημεν + " 1x ἐμνήσθην + " 5x ἐμνήσθησαν + " 1x ἐμνημόνευον + " 2x ἐμνημόνευσεν + " 1x ἐμνηστευμένην + " 1x ἐμνηστευμένῃ + " 2x ἐμοί + " 10x ἐμοί, + " 5x ἐμοί. + " 5x ἐμοί· + " 1x ἐμοίχευσεν + " 1x ἐμολύνθησαν· + " 1x ἐμοσχοποίησαν + " 67x ἐμοὶ + " 2x ἐμοὶ, + " 3x ἐμοὺς + " 1x ἐμοῖς + " 1x ἐμοῖς; + " 68x ἐμοῦ + " 16x ἐμοῦ, + " 16x ἐμοῦ. + " 5x ἐμοῦ; + " 9x ἐμοῦ· + " 3x ἐμπέσῃ + " 1x ἐμπίπτουσιν + " 1x ἐμπαίζειν + " 2x ἐμπαίζοντες + " 1x ἐμπαίξας, + " 1x ἐμπαίξουσιν + " 1x ἐμπαιγμονῇ + " 1x ἐμπαιγμῶν + " 1x ἐμπαιχθήσεται + " 2x ἐμπαῖκται + " 1x ἐμπαῖξαι + " 1x ἐμπεπλησμένοι + " 1x ἐμπεσεῖν + " 1x ἐμπεσοῦνται; + " 1x ἐμπεσόντος + " 1x ἐμπιπλῶν + " 1x ἐμπλέκεται + " 1x ἐμπλακέντες + " 1x ἐμπλησθῶ. + " 1x ἐμπλοκῆς + " 1x ἐμπνέων + " 1x ἐμπορίαν + " 1x ἐμπορίου. + " 1x ἐμπορευσόμεθα + " 1x ἐμπορεύσονται· + " 1x ἐμπτυσθήσεται, + " 1x ἐμπτύειν + " 1x ἐμπτύσαντες + " 1x ἐμπτύσουσιν + " 1x ἐμπόρῳ + " 1x ἐμφανίζειν + " 1x ἐμφανίζουσιν + " 1x ἐμφανίσατε + " 1x ἐμφανίσω + " 1x ἐμφανισθῆναι + " 1x ἐμφανὴς + " 1x ἐμφανῆ + " 1x ἐμφόβων + " 1x ἐμωράνθησαν, + " 1x ἐμόλυναν + " 1x ἐμόν. + " 1x ἐμώρανεν + " 6x ἐμὰ + " 1x ἐμὰς + " 67x ἐμὲ + " 10x ἐμὴ + " 1x ἐμὴ, + " 11x ἐμὴν + " 1x ἐμὴν, + " 9x ἐμὸν + " 6x ἐμὸς + " 2x ἐμῆς + " 5x ἐμῇ + " 1x ἐμῇ. + " 1x ἐμῶν. + " 2x ἐμῷ + " 1x ἐμῷ, + " 2683x ἐν + " 4x ἐνάτην + " 1x ἐνάτην. + " 1x ἐνάτης + " 2x ἐνάτης. + " 1x ἐνάτῃ + " 2x ἐνέβη + " 1x ἐνέβημεν + " 2x ἐνέβησαν + " 1x ἐνέβλεπεν + " 1x ἐνέβλεπον + " 1x ἐνέβλεψεν + " 1x ἐνέγκαι + " 1x ἐνέγκας + " 1x ἐνέγκας, + " 1x ἐνέδραν + " 1x ἐνέδραν, + " 2x ἐνέδυσαν + " 2x ἐνέκοψεν + " 1x ἐνέκρυψεν + " 1x ἐνέμειναν + " 1x ἐνένευον + " 1x ἐνέπαιζον + " 4x ἐνέπαιξαν + " 1x ἐνέπλησεν + " 1x ἐνέπρησεν. + " 1x ἐνέπτυον + " 1x ἐνέπτυσαν + " 7x ἐνέργειαν + " 1x ἐνέστηκεν + " 1x ἐνέτυχόν + " 1x ἐνέχειν + " 1x ἐνέχεσθε. + " 1x ἐνήργηκεν + " 1x ἐνήργησεν + " 1x ἐνίκησα + " 1x ἐνίκησαν + " 1x ἐνίκησεν + " 1x ἐνίσχυσεν. + " 1x ἐνίψατο, + " 2x ἐναγκαλισάμενος + " 1x ἐναλίων + " 1x ἐναντία + " 2x ἐναντίας + " 6x ἐναντίον + " 2x ἐναντίος + " 1x ἐναντίους, + " 1x ἐναντίων, + " 1x ἐναρξάμενοι + " 1x ἐναρξάμενος + " 1x ἐναυάγησα, + " 1x ἐναυάγησαν· + " 1x ἐνγέγραπται + " 2x ἐνγεγραμμένη + " 1x ἐνδέχεται + " 1x ἐνδεής + " 1x ἐνδείκνυνται + " 1x ἐνδείκνυσθαι + " 1x ἐνδείξασθαι + " 2x ἐνδείξηται + " 1x ἐνδείξωμαι + " 2x ἐνδεδυμένοι + " 2x ἐνδεδυμένον + " 1x ἐνδεδυμένος + " 2x ἐνδεικνυμένους + " 1x ἐνδεικνύμενοι + " 2x ἐνδημοῦντες + " 1x ἐνδημῆσαι + " 1x ἐνδιδύσκουσιν + " 1x ἐνδοξασθῆναι + " 1x ἐνδοξασθῇ + " 1x ἐνδυναμοῦ + " 1x ἐνδυναμοῦντί + " 1x ἐνδυναμοῦσθε + " 1x ἐνδυναμώσαντί + " 4x ἐνδυσάμενοι + " 1x ἐνδυσάμενος + " 1x ἐνδυσώμεθα + " 1x ἐνδόξοις + " 1x ἐνδόξῳ + " 1x ἐνδύμασιν + " 1x ἐνδύματος + " 1x ἐνδύματος. + " 1x ἐνδύματος; + " 1x ἐνδύνοντες + " 3x ἐνδύσασθαι + " 2x ἐνδύσασθε + " 1x ἐνδύσατε + " 1x ἐνδύσεως + " 2x ἐνδύσησθε + " 1x ἐνδύσησθε. + " 1x ἐνδύσησθε· + " 2x ἐνδύσηται + " 1x ἐνδώμησις + " 1x ἐνείλησεν + " 1x ἐνεβίβασεν + " 1x ἐνεβριμήθη + " 1x ἐνεβριμήσατο + " 1x ἐνεβριμῶντο + " 1x ἐνεγκεῖν, + " 1x ἐνεγκεῖν. + " 1x ἐνεδείξασθε + " 1x ἐνεδείξατο· + " 1x ἐνεδιδύσκετο + " 1x ἐνεδρεύοντες + " 1x ἐνεδρεύουσιν + " 1x ἐνεδυνάμωσέν + " 1x ἐνεδυναμοῦτο + " 1x ἐνεδυναμώθη + " 1x ἐνεδύσασθε. + " 1x ἐνεδύσατο + " 1x ἐνεκάλουν + " 1x ἐνεκαίνισεν + " 2x ἐνεκεντρίσθης + " 1x ἐνεκοπτόμην + " 4x ἐνενήκοντα + " 1x ἐνεοί, + " 1x ἐνεπαίχθη + " 1x ἐνεπλήσθησαν, + " 1x ἐνεργήματα + " 1x ἐνεργής, + " 1x ἐνεργήσας + " 1x ἐνεργείας + " 1x ἐνεργεῖ + " 1x ἐνεργεῖν + " 2x ἐνεργεῖται + " 1x ἐνεργεῖται, + " 1x ἐνεργημάτων + " 2x ἐνεργουμένη. + " 2x ἐνεργουμένην + " 1x ἐνεργουμένης + " 2x ἐνεργοῦντος + " 2x ἐνεργοῦσιν + " 2x ἐνεργὴς + " 3x ἐνεργῶν + " 1x ἐνεστηκότα, + " 1x ἐνεστῶσαν + " 2x ἐνεστῶτα + " 1x ἐνεστῶτος + " 7x ἐνετείλατο + " 1x ἐνετείλατο. + " 1x ἐνετειλάμην + " 1x ἐνετρεπόμεθα· + " 2x ἐνετύλιξεν + " 1x ἐνευλογηθήσονται + " 1x ἐνεφάνισάν + " 2x ἐνεφάνισαν + " 1x ἐνεφάνισας + " 1x ἐνεφανίσθησαν + " 1x ἐνεφύσησεν + " 1x ἐνεχθείσης + " 1x ἐνεχθεῖσαν + " 1x ἐνεῖχεν + " 1x ἐνηργεῖτο + " 4x ἐνθάδε + " 1x ἐνθάδε, + " 2x ἐνθάδε. + " 1x ἐνθάδε; + " 2x ἐνθυμήσεις + " 1x ἐνθυμήσεων + " 1x ἐνθυμήσεως + " 1x ἐνθυμεῖσθε + " 1x ἐνθυμηθέντος + " 1x ἐνιαυτούς. + " 1x ἐνιαυτοὺς + " 4x ἐνιαυτοῦ + " 1x ἐνιαυτόν, + " 1x ἐνιαυτόν· + " 6x ἐνιαυτὸν + " 1x ἐνισχύων + " 1x ἐνιψάμην, + " 1x ἐνκαίνια + " 1x ἐνκαθέτους + " 1x ἐνκακεῖν + " 1x ἐνκακεῖν, + " 1x ἐνκακῶμεν· + " 1x ἐνκαταλείψεις + " 1x ἐνκατελείφθη + " 1x ἐνκατοικῶν + " 1x ἐνκαυχᾶσθαι + " 1x ἐνκεκαίνισται. + " 1x ἐνκεντρίσαι + " 1x ἐνκεντρισθήσονται + " 1x ἐνκεντρισθήσονται· + " 1x ἐνκοπὴν + " 1x ἐνκρῖναι + " 1x ἐνκόπτεσθαι + " 1x ἐνκόπτω, + " 5x ἐννέα + " 1x ἐννοιῶν + " 1x ἐννόμῳ + " 1x ἐνοικείτω + " 2x ἐνοικοῦντος + " 1x ἐνοικοῦσα + " 1x ἐνομίζετο, + " 1x ἐνομίζομεν + " 1x ἐνοσφίσατο + " 1x ἐνοχλούμενοι + " 1x ἐνοχλῇ + " 1x ἐνπεριπατήσω, + " 1x ἐνστήσονται + " 3x ἐντάλματα + " 2x ἐντέλλομαι + " 1x ἐντέταλται + " 1x ἐντίμους + " 1x ἐνταφιάζειν. + " 1x ἐνταφιάσαι + " 1x ἐνταφιασμοῦ + " 1x ἐνταφιασμόν. + " 1x ἐντειλάμενος + " 2x ἐντελεῖται + " 1x ἐντετυλιγμένον + " 1x ἐντετυπωμένη + " 1x ἐντεύξεις, + " 1x ἐντεύξεως. + " 4x ἐντεῦθεν + " 4x ἐντεῦθεν, + " 2x ἐντεῦθεν. + " 1x ἐντιμότερός + " 2x ἐντολάς + " 1x ἐντολάς, + " 1x ἐντολάς. + " 1x ἐντολή + " 1x ἐντολή, + " 1x ἐντολή. + " 1x ἐντολή· + " 1x ἐντολήν + " 1x ἐντολήν, + " 1x ἐντολαὶ + " 3x ἐντολαῖς + " 14x ἐντολὰς + " 10x ἐντολὴ + " 17x ἐντολὴν + " 7x ἐντολῆς + " 2x ἐντολῆς. + " 3x ἐντολῶν + " 1x ἐντρέπομαι, + " 1x ἐντρέπων + " 1x ἐντραπήσονται. + " 1x ἐντραπῇ + " 1x ἐντραπῇ· + " 1x ἐντρεπόμενος. + " 1x ἐντρεφόμενος + " 2x ἐντροπὴν + " 1x ἐντρυφῶντες + " 3x ἐντυγχάνει + " 1x ἐντυγχάνειν + " 1x ἐντόπιοι + " 2x ἐντὸς + " 1x ἐνυβρίσας. + " 1x ἐνυπνίοις + " 1x ἐνυπνιαζόμενοι + " 1x ἐνυπνιασθήσονται· + " 1x ἐνωτίσασθε + " 1x ἐνόμιζεν + " 1x ἐνόμιζον + " 1x ἐνόμισαν + " 1x ἐνόμισας + " 1x ἐνόντα + " 1x ἐνύσταξαν + " 87x ἐνώπιον + " 7x ἐνώπιόν + " 1x ἐνῴκησεν + " 228x ἐξ + " 1x ἐξάγει + " 1x ἐξάγουσιν + " 1x ἐξάπινα + " 1x ἐξάρατε + " 4x ἐξέβαλεν + " 1x ἐξέβαλεν, + " 1x ἐξέβαλλον, + " 6x ἐξέβαλον + " 1x ἐξέβαλον. + " 1x ἐξέβησαν, + " 3x ἐξέδετο + " 2x ἐξέδυσαν + " 1x ἐξέθεντο + " 1x ἐξέκλιναν, + " 1x ἐξέληται + " 1x ἐξέλθατε + " 1x ἐξέλθητε + " 1x ἐξέλθητε. + " 1x ἐξέλθητε· + " 3x ἐξέλθῃ + " 2x ἐξέλθῃς + " 1x ἐξέμαξεν + " 1x ἐξέμαξεν. + " 1x ἐξέμασσεν, + " 1x ἐξένευσεν + " 2x ἐξένισεν. + " 1x ἐξέπεμψαν + " 1x ἐξέπεσαν + " 1x ἐξέπεσεν + " 1x ἐξέπεσεν· + " 1x ἐξέπλει + " 1x ἐξέπνευσεν, + " 2x ἐξέπνευσεν. + " 1x ἐξέραμα, + " 1x ἐξέρχεσθε + " 1x ἐξέρχεσθε. + " 2x ἐξέρχεται + " 1x ἐξέρχεται, + " 1x ἐξέρχονται + " 1x ἐξέρχονται; + " 1x ἐξέστη. + " 1x ἐξέστημεν, + " 4x ἐξέστησαν + " 1x ἐξέστησαν. + " 1x ἐξέστραπται + " 2x ἐξέτεινεν, + " 2x ἐξέφυγον + " 1x ἐξέχεαν, + " 10x ἐξέχεεν + " 1x ἐξέψυξεν. + " 2x ἐξέψυξεν· + " 4x ἐξήγαγεν + " 1x ἐξήγγειλαν. + " 1x ἐξήγειρά + " 8x ἐξήλθατε + " 1x ἐξήλθατε; + " 1x ἐξήλθομεν + " 1x ἐξήνεγκεν + " 1x ἐξήρανεν + " 1x ἐξήρανται. + " 2x ἐξήρχετο + " 1x ἐξήρχοντο + " 1x ἐξήρχοντο· + " 1x ἐξήχηται + " 5x ἐξίσταντο + " 1x ἐξίσταντο· + " 1x ἐξίστασθαι + " 1x ἐξίστατο. + " 5x ἐξαίφνης + " 1x ἐξαγαγέτωσαν. + " 1x ἐξαγαγεῖν + " 1x ἐξαγαγόντες + " 1x ἐξαγαγών + " 1x ἐξαγαγὼν + " 1x ἐξαγγείλητε + " 1x ἐξαγοράσῃ, + " 1x ἐξαγοραζόμενοι + " 1x ἐξαγοραζόμενοι. + " 1x ἐξαιρούμενός + " 2x ἐξακολουθήσαντες + " 1x ἐξακολουθήσουσιν + " 1x ἐξαλείψας + " 2x ἐξαλείψει + " 1x ἐξαλείψω + " 1x ἐξαλειφθῆναι + " 1x ἐξαλλόμενος + " 1x ἐξανάστασιν + " 2x ἐξανέτειλεν + " 2x ἐξαναστήσῃ + " 5x ἐξαπέστειλαν + " 6x ἐξαπέστειλεν + " 1x ἐξαπατάτω· + " 1x ἐξαπατήσῃ + " 1x ἐξαπατηθεῖσα + " 1x ἐξαπατῶσιν + " 1x ἐξαπεστάλη. + " 1x ἐξαπορηθῆναι + " 1x ἐξαπορούμενοι, + " 1x ἐξαποστέλλω + " 1x ἐξαποστελῶ + " 1x ἐξαρτίσαι + " 1x ἐξαστράπτων. + " 5x ἐξαυτῆς + " 1x ἐξαυτῆς· + " 1x ἐξείλατο + " 1x ἐξείλατό + " 1x ἐξεβάλομεν, + " 1x ἐξεβλήθη + " 1x ἐξεγερεῖ + " 1x ἐξεδέχετο + " 1x ἐξεδίκησεν + " 1x ἐξεζήτησαν + " 1x ἐξεθαμβήθησαν, + " 1x ἐξεθαμβήθησαν. + " 1x ἐξεθαύμαζον + " 1x ἐξειλάμην, + " 1x ἐξεκέντησαν, + " 1x ἐξεκέντησαν. + " 1x ἐξεκαύθησαν + " 2x ἐξεκλάσθησαν, + " 1x ἐξεκλείσθη. + " 1x ἐξεκομίζετο + " 1x ἐξεκρέμετο + " 1x ἐξεκόπης + " 1x ἐξελέγοντο, + " 1x ἐξελέξαντο + " 1x ἐξελέξασθε, + " 9x ἐξελέξατο + " 1x ἐξελέξατο, + " 1x ἐξελέξω + " 1x ἐξελέσθαι + " 1x ἐξελήλυθεν + " 1x ἐξελήλυθεν, + " 2x ἐξελεξάμην + " 1x ἐξελεξάμην; + " 1x ἐξελεξάμην· + " 3x ἐξελεύσεται + " 2x ἐξελεύσονται + " 1x ἐξεληλυθυῖαν + " 1x ἐξεληλυθός. + " 1x ἐξεληλυθότας + " 1x ἐξεληλύθασιν + " 1x ἐξεληλύθει + " 1x ἐξεληλύθει, + " 7x ἐξελθεῖν + " 1x ἐξελθεῖν, + " 1x ἐξελθεῖν. + " 1x ἐξελθούσῃ + " 3x ἐξελθοῦσα + " 1x ἐξελθοῦσαι + " 1x ἐξελθοῦσαν, + " 3x ἐξελθόντα + " 17x ἐξελθόντες + " 1x ἐξελθόντι + " 3x ἐξελθόντος + " 2x ἐξελθόντων + " 21x ἐξελθὼν + " 1x ἐξελκόμενος + " 2x ἐξεμυκτήριζον + " 2x ἐξενέγκαντες + " 1x ἐξενέγκατε + " 1x ἐξενεγκεῖν + " 1x ἐξενοδόχησεν, + " 1x ἐξεπέσατε. + " 1x ἐξεπέτασα + " 1x ἐξεπήδησαν + " 1x ἐξεπλάγησαν, + " 1x ἐξεπλήσσετο + " 9x ἐξεπλήσσοντο + " 1x ἐξεπλεύσαμεν + " 3x ἐξεπορεύετο + " 1x ἐξεπορεύοντο + " 1x ἐξεπτύσατε, + " 1x ἐξερχομένων, + " 3x ἐξερχόμενοι + " 1x ἐξερχόμενοι, + " 1x ἐξερχόμενος + " 1x ἐξερχώμεθα + " 1x ἐξεστακέναι + " 1x ἐξετάσαι + " 2x ἐξετάσατε + " 2x ἐξετίθετο + " 1x ἐξετείνατε + " 2x ἐξετράπησαν + " 1x ἐξεχύθη + " 1x ἐξεχύθησαν, + " 1x ἐξεχύννετο + " 1x ἐξηγήσατο + " 1x ἐξηγήσατο. + " 1x ἐξηγεῖτο + " 1x ἐξηγησάμενος + " 1x ἐξηγουμένων + " 1x ἐξηγοῦντο + " 1x ἐξηγόρασεν + " 1x ἐξηπάτησέν + " 1x ἐξηπάτησεν + " 7x ἐξηράνθη + " 1x ἐξηράνθη, + " 2x ἐξηράνθη. + " 2x ἐξηραμμένην + " 1x ἐξηραύνησαν + " 1x ἐξηρτισμένος. + " 1x ἐξιέναι + " 1x ἐξιέναι, + " 1x ἐξιστάνων + " 1x ἐξισχύσητε + " 1x ἐξοίσουσίν + " 1x ἐξολεθρευθήσεται + " 1x ἐξομολογήσεται + " 1x ἐξομολογήσηται + " 1x ἐξομολογήσομαί + " 1x ἐξομολογεῖσθε + " 3x ἐξομολογούμενοι + " 1x ἐξορκιστῶν + " 2x ἐξορύξαντες + " 1x ἐξουδενηθῇ; + " 1x ἐξουθενήσας + " 1x ἐξουθενήσατε + " 1x ἐξουθενήσῃ. + " 1x ἐξουθενείτω, + " 1x ἐξουθενεῖς + " 1x ἐξουθενεῖτε· + " 1x ἐξουθενηθεὶς + " 1x ἐξουθενημένα + " 1x ἐξουθενημένος. + " 1x ἐξουθενημένους + " 1x ἐξουθενοῦντας + " 13x ἐξουσία + " 1x ἐξουσίαι· + " 3x ἐξουσίαις + " 50x ἐξουσίαν + " 4x ἐξουσίαν, + " 1x ἐξουσίαν; + " 1x ἐξουσίαν· + " 9x ἐξουσίας + " 3x ἐξουσίας, + " 15x ἐξουσίᾳ + " 1x ἐξουσίᾳ, + " 2x ἐξουσιάζει + " 1x ἐξουσιάζοντες + " 1x ἐξουσιασθήσομαι + " 1x ἐξουσιῶν + " 1x ἐξοχὴν + " 1x ἐξυπνίσω + " 1x ἐξυρημένῃ. + " 1x ἐξωμολόγησεν, + " 1x ἐξόδου + " 3x ἐξώτερον· + " 3x ἐξὸν + " 1x ἐξῃτήσατο + " 1x ἐξῄεσαν. + " 1x ἐξῆλθαν + " 1x ἐξῆλθαν, + " 1x ἐξῆλθαν. + " 57x ἐξῆλθεν + " 6x ἐξῆλθεν, + " 1x ἐξῆλθεν. + " 1x ἐξῆλθεν· + " 1x ἐξῆλθες. + " 17x ἐξῆλθον + " 1x ἐξῆλθον, + " 2x ἐξῆλθον. + " 2x ἐξῆλθον· + " 1x ἐξῶσαι + " 1x ἐξῶσεν + " 1x ἐπάγγελμα + " 1x ἐπάγοντες + " 2x ἐπάθετε + " 1x ἐπάναγκες, + " 19x ἐπάνω + " 1x ἐπάξας, + " 2x ἐπάραντες + " 5x ἐπάρας + " 1x ἐπάρασά + " 2x ἐπάρατε + " 1x ἐπάρατοί + " 2x ἐπάταξεν + " 2x ἐπέβαλαν + " 3x ἐπέβαλεν + " 1x ἐπέβαλλεν + " 3x ἐπέβαλον + " 1x ἐπέβην + " 1x ἐπέβλεψεν + " 1x ἐπέγνωμεν + " 4x ἐπέγνωσαν + " 2x ἐπέγνωτε + " 2x ἐπέδωκαν + " 1x ἐπέθεντο + " 1x ἐπέθηκέν + " 6x ἐπέθηκαν + " 5x ἐπέθηκεν + " 1x ἐπέκειλαν + " 1x ἐπέκεινα + " 1x ἐπέκειντο + " 1x ἐπέκειτο + " 1x ἐπέκρινεν + " 1x ἐπέλειχον + " 2x ἐπέλθῃ + " 1x ἐπέλυεν + " 1x ἐπέμεινα + " 1x ἐπέμενεν + " 1x ἐπέμενον + " 1x ἐπέμφθη + " 1x ἐπέμψαμεν + " 1x ἐπέμψατε. + " 1x ἐπένευσεν, + " 1x ἐπέπεσαν + " 7x ἐπέπεσεν + " 1x ἐπέσπειρεν + " 1x ἐπέστειλα + " 1x ἐπέστη + " 1x ἐπέστη, + " 5x ἐπέστησαν + " 1x ἐπέστρεψα + " 2x ἐπέστρεψαν + " 2x ἐπέστρεψεν + " 1x ἐπέσχεν + " 1x ἐπέταξας, + " 3x ἐπέταξεν + " 5x ἐπέτρεψεν + " 1x ἐπέτυχεν + " 1x ἐπέτυχεν, + " 1x ἐπέτυχεν· + " 1x ἐπέτυχον + " 1x ἐπέφωσκεν. + " 1x ἐπέχοντες, + " 1x ἐπέχρισέν + " 1x ἐπέχων + " 2x ἐπήγγελται + " 1x ἐπήγγελται, + " 2x ἐπήγειραν + " 1x ἐπήκουσά + " 1x ἐπήρθη, + " 1x ἐπήρκεσεν, + " 3x ἐπί + " 1x ἐπίασαν + " 1x ἐπίασεν + " 4x ἐπίβλημα + " 2x ἐπίγεια + " 1x ἐπίγεια· + " 1x ἐπίγειος + " 1x ἐπίγειος, + " 8x ἐπίγνωσιν + " 2x ἐπίγνωσιν· + " 1x ἐπίγνωσις + " 1x ἐπίθες + " 1x ἐπίκειται· + " 1x ἐπίλοιπον + " 1x ἐπίμενε + " 1x ἐπίνοια + " 1x ἐπίομεν, + " 1x ἐπίπρασκον + " 1x ἐπίσημοι + " 1x ἐπίσημον + " 2x ἐπίσκοπον + " 1x ἐπίσταμαι + " 1x ἐπίσταμαι· + " 1x ἐπίστανται + " 1x ἐπίστανται, + " 1x ἐπίστασίς + " 4x ἐπίστασθε + " 1x ἐπίστασθε, + " 1x ἐπίστασιν + " 2x ἐπίσταται + " 1x ἐπίστευεν + " 4x ἐπίστευον + " 16x ἐπίστευσαν + " 3x ἐπίστευσαν, + " 2x ἐπίστευσαν. + " 1x ἐπίστευσαν; + " 2x ἐπίστευσας + " 9x ἐπίστευσεν + " 2x ἐπίστευσεν, + " 1x ἐπίστευσεν· + " 1x ἐπίστηθι + " 1x ἐπίσχυον + " 3x ἐπίτρεψόν + " 1x ἐπαίδευον, + " 1x ἐπαίρεται, + " 1x ἐπαίροντας + " 1x ἐπαγαγεῖν + " 1x ἐπαγγέλματα + " 1x ἐπαγγειλάμενον. + " 1x ἐπαγγειλάμενος + " 1x ἐπαγγειλάμενος, + " 5x ἐπαγγελία + " 1x ἐπαγγελία· + " 2x ἐπαγγελίαι + " 1x ἐπαγγελίαι, + " 1x ἐπαγγελίαις + " 12x ἐπαγγελίαν + " 1x ἐπαγγελίαν, + " 3x ἐπαγγελίαν. + " 15x ἐπαγγελίας + " 4x ἐπαγγελίας, + " 3x ἐπαγγελίας. + " 1x ἐπαγγελίας· + " 1x ἐπαγγελίᾳ, + " 1x ἐπαγγελιῶν + " 1x ἐπαγγελιῶν, + " 1x ἐπαγγελλομέναις + " 1x ἐπαγγελλόμενοι + " 1x ἐπαγγελλόμενοι, + " 1x ἐπαγωνίζεσθαι + " 1x ἐπαθροιζομένων + " 1x ἐπαιδεύθη + " 1x ἐπαινέσω + " 1x ἐπαινεσάτωσαν + " 1x ἐπαινῶ + " 1x ἐπαινῶ. + " 1x ἐπαιρόμενον + " 1x ἐπαισχυνθήσεται + " 1x ἐπαισχυνθήσεται, + " 2x ἐπαισχυνθῇ + " 1x ἐπαισχυνθῇς + " 1x ἐπαισχύνεσθε· + " 2x ἐπαισχύνεται + " 1x ἐπαισχύνθη, + " 1x ἐπαισχύνομαι + " 1x ἐπαισχύνομαι, + " 1x ἐπαιτεῖν + " 1x ἐπαιτῶν. + " 1x ἐπακολουθήσητε + " 1x ἐπακολουθούντων + " 1x ἐπακολουθοῦσιν· + " 1x ἐπανέρχεσθαί + " 1x ἐπαναγαγεῖν + " 1x ἐπαναγαγὼν + " 1x ἐπαναμιμνήσκων + " 1x ἐπαναπαήσεται + " 1x ἐπαναπαύῃ + " 2x ἐπαναστήσονται + " 1x ἐπανελθεῖν + " 1x ἐπανόρθωσιν, + " 1x ἐπαρκέσῃ. + " 1x ἐπαρκείτω + " 1x ἐπαρρησιάζετο + " 1x ἐπαρρησιάσατο + " 1x ἐπαρρησιασάμεθα + " 1x ἐπαρχείας + " 1x ἐπαρχείῳ + " 1x ἐπατήθη + " 1x ἐπαυσάμην + " 1x ἐπαυτοφώρῳ + " 1x ἐπαφρίζοντα + " 2x ἐπαχύνθη + " 1x ἐπαύοντο + " 15x ἐπαύριον + " 2x ἐπαύριον, + " 2x ἐπαύσαντο + " 1x ἐπαύσαντο, + " 1x ἐπαύσατο + " 1x ἐπαύσατο, + " 1x ἐπείθετο + " 3x ἐπείθοντο + " 2x ἐπείνασα + " 1x ἐπείνασαν + " 3x ἐπείνασεν + " 4x ἐπείνασεν. + " 1x ἐπείραζεν + " 1x ἐπείραζον + " 2x ἐπείρασαν + " 1x ἐπείρασας + " 2x ἐπείρασεν + " 2x ἐπείσθησαν + " 1x ἐπεβίβασαν + " 1x ἐπεγέγραπτο + " 1x ἐπεγίνωσκον + " 1x ἐπεγίνωσκον, + " 1x ἐπεγίνωσκόν + " 1x ἐπεγνωκέναι + " 1x ἐπεγνωκόσι + " 1x ἐπεγνώσθην. + " 1x ἐπεδίδου + " 1x ἐπεδόθη + " 1x ἐπεζήτησεν + " 1x ἐπεζήτουν + " 1x ἐπεθύμει + " 1x ἐπεθύμησα + " 1x ἐπεθύμησα· + " 1x ἐπεθύμησαν + " 1x ἐπεθύμησαν. + " 8x ἐπειδὴ + " 1x ἐπειράσθησαν, + " 1x ἐπειρῶντο + " 1x ἐπεισαγωγὴ + " 1x ἐπεισελεύσεται + " 1x ἐπεκάθισεν + " 1x ἐπεκάλεσαν, + " 1x ἐπεκέκλητο + " 1x ἐπεκαλύφθησαν + " 1x ἐπεκλήθη + " 1x ἐπεκτεινόμενος, + " 2x ἐπελάβετο + " 1x ἐπελάθετο + " 2x ἐπελάθοντο + " 1x ἐπελεύσεται + " 1x ἐπελθόντος + " 1x ἐπελθὼν + " 2x ἐπεμείναμεν + " 1x ἐπεμελήθη + " 1x ἐπενδύσασθαι + " 1x ἐπενδύσασθαι, + " 1x ἐπενδύτην + " 1x ἐπενεγκεῖν + " 1x ἐπενθήσατε, + " 1x ἐπεποίθει, + " 1x ἐπερίσσευον + " 1x ἐπερίσσευσαν + " 3x ἐπερίσσευσεν + " 1x ἐπερίσσευσεν. + " 1x ἐπερχομέναις. + " 1x ἐπερχομένοις + " 1x ἐπερχομένων + " 1x ἐπερωτάτωσαν· + " 1x ἐπερωτήσας + " 1x ἐπερωτήσατε. + " 1x ἐπερωτᾶν + " 1x ἐπερωτῆσαι + " 2x ἐπερωτῆσαι. + " 1x ἐπερωτῶντα + " 1x ἐπερωτῶσιν + " 1x ἐπερωτῶσιν. + " 1x ἐπερώτημα + " 2x ἐπεσκέψασθέ + " 2x ἐπεσκέψατο + " 1x ἐπεσκίαζεν + " 1x ἐπεσκίασεν + " 1x ἐπεστήριξαν· + " 1x ἐπεστείλαμεν + " 1x ἐπεστράφητε + " 1x ἐπεστρέψατε + " 1x ἐπετίθεσαν + " 1x ἐπετίμα + " 2x ἐπετίμησαν + " 15x ἐπετίμησεν + " 3x ἐπετίμων + " 1x ἐπετράπη + " 1x ἐπεφάνη + " 1x ἐπεφώνει + " 3x ἐπεφώνουν + " 1x ἐπεχείρησαν + " 1x ἐπεχείρουν + " 25x ἐπεὶ + " 1x ἐπεῖδεν + " 1x ἐπεῖχεν + " 1x ἐπηγγείλαντο + " 5x ἐπηγγείλατο + " 1x ἐπηκολούθησεν. + " 1x ἐπηκροῶντο + " 1x ἐπηρεάζοντες + " 1x ἐπηρεαζόντων + " 10x ἐπηρώτα + " 1x ἐπηρώτησέν + " 7x ἐπηρώτησαν + " 15x ἐπηρώτησεν + " 9x ἐπηρώτων + " 1x ἐπιάσατε + " 1x ἐπιάσθη + " 2x ἐπιβάλλει + " 1x ἐπιβάλλον + " 1x ἐπιβάλλουσιν + " 1x ἐπιβάλω, + " 2x ἐπιβάντες + " 1x ἐπιβαίνειν + " 1x ἐπιβαλεῖν + " 1x ἐπιβαλοῦσιν + " 2x ἐπιβαλὼν + " 2x ἐπιβαρῆσαί + " 1x ἐπιβαρῶ, + " 1x ἐπιβεβηκὼς + " 1x ἐπιβιβάσαντες + " 1x ἐπιβιβάσας + " 1x ἐπιβλέψαι + " 1x ἐπιβλέψητε + " 1x ἐπιβουλαῖς + " 1x ἐπιβουλὴ + " 2x ἐπιβουλῆς + " 1x ἐπιβὰς + " 1x ἐπιγαμβρεύσει + " 1x ἐπιγείων + " 1x ἐπιγείων. + " 1x ἐπιγεγραμμένα, + " 1x ἐπιγεγραμμένη + " 1x ἐπιγενομένου + " 1x ἐπιγινωσκέτω + " 1x ἐπιγινωσκόμενοι, + " 2x ἐπιγινώσκει + " 1x ἐπιγινώσκεις. + " 2x ἐπιγινώσκετε + " 1x ἐπιγινώσκετε, + " 5x ἐπιγνοὺς + " 2x ἐπιγνοῦσα + " 1x ἐπιγνοῦσιν + " 4x ἐπιγνόντες + " 1x ἐπιγνόντες, + " 6x ἐπιγνώσει + " 1x ἐπιγνώσει, + " 2x ἐπιγνώσεσθε + " 1x ἐπιγνώσεσθε, + " 2x ἐπιγνώσεως + " 1x ἐπιγνώσομαι + " 4x ἐπιγνῶναι + " 1x ἐπιγνῷ + " 1x ἐπιγνῷς + " 2x ἐπιγράψω + " 2x ἐπιγραφή; + " 1x ἐπιγραφήν; + " 2x ἐπιγραφὴ + " 2x ἐπιδέχεται + " 1x ἐπιδείξατέ + " 1x ἐπιδείξατε + " 1x ἐπιδεικνύμεναι + " 1x ἐπιδεικνὺς + " 3x ἐπιδεῖξαι + " 2x ἐπιδημοῦντες + " 1x ἐπιδιατάσσεται. + " 1x ἐπιδιορθώσῃ, + " 1x ἐπιδυέτω + " 1x ἐπιδόντες + " 3x ἐπιδώσει + " 1x ἐπιδώσει; + " 1x ἐπιεικέσιν + " 1x ἐπιεικής, + " 1x ἐπιεικείας + " 1x ἐπιεικείᾳ. + " 1x ἐπιεικεῖς, + " 1x ἐπιεικὲς + " 1x ἐπιεικῆ, + " 1x ἐπιζητήσας + " 1x ἐπιζητεῖ + " 2x ἐπιζητεῖ, + " 1x ἐπιζητεῖτε, + " 1x ἐπιζητοῦμεν. + " 1x ἐπιζητοῦσιν. + " 2x ἐπιζητοῦσιν· + " 2x ἐπιζητῶ + " 1x ἐπιθέντα + " 3x ἐπιθέντες + " 2x ἐπιθέντος + " 3x ἐπιθέσεως + " 1x ἐπιθέσεώς + " 1x ἐπιθήσει + " 1x ἐπιθήσεταί + " 1x ἐπιθήσουσιν + " 1x ἐπιθανατίους, + " 5x ἐπιθεὶς + " 1x ἐπιθεῖναι + " 1x ἐπιθυμήσεις, + " 1x ἐπιθυμήσεις· + " 1x ἐπιθυμήσετε + " 1x ἐπιθυμήσουσιν + " 4x ἐπιθυμία + " 1x ἐπιθυμίαι + " 7x ἐπιθυμίαις + " 2x ἐπιθυμίαις, + " 1x ἐπιθυμίαις. + " 4x ἐπιθυμίαν + " 1x ἐπιθυμίαν· + " 12x ἐπιθυμίας + " 1x ἐπιθυμίας. + " 2x ἐπιθυμίᾳ + " 1x ἐπιθυμίᾳ. + " 1x ἐπιθυμεῖ + " 1x ἐπιθυμεῖ. + " 1x ἐπιθυμεῖτε, + " 1x ἐπιθυμητὰς + " 1x ἐπιθυμιῶν, + " 1x ἐπιθυμοῦμεν + " 1x ἐπιθυμοῦσιν + " 1x ἐπιθυμῆσαι + " 1x ἐπιθυμῶν + " 3x ἐπιθῇ + " 1x ἐπιθῇς + " 1x ἐπιθῶ + " 1x ἐπικάλυμμα + " 1x ἐπικέκλησαι, + " 1x ἐπικέκληται + " 1x ἐπικαλέσασθαι + " 2x ἐπικαλέσηται + " 1x ἐπικαλέσωνται + " 1x ἐπικαλεσάμενος + " 2x ἐπικαλεσαμένου + " 1x ἐπικαλεῖσθαι + " 1x ἐπικαλεῖσθε + " 2x ἐπικαλεῖται + " 1x ἐπικαλουμένοις + " 1x ἐπικαλουμένου + " 3x ἐπικαλουμένους + " 1x ἐπικαλουμένων + " 2x ἐπικαλούμενον + " 1x ἐπικαλούμενος + " 1x ἐπικαλοῦμαι + " 1x ἐπικαλοῦμαι. + " 1x ἐπικείμενα. + " 1x ἐπικείμενον + " 1x ἐπικειμένου, + " 1x ἐπικεῖσθαι + " 1x ἐπικληθέντα + " 1x ἐπικληθεὶς + " 1x ἐπικληθὲν + " 1x ἐπικουρίας + " 1x ἐπικράνθη + " 1x ἐπικράνθησαν. + " 2x ἐπιλάβωνται + " 1x ἐπιλαβέσθαι + " 1x ἐπιλαβομένου + " 1x ἐπιλαβοῦ + " 1x ἐπιλαβόμενοί + " 4x ἐπιλαβόμενοι + " 5x ἐπιλαβόμενος + " 1x ἐπιλαθέσθαι + " 1x ἐπιλαμβάνεται, + " 1x ἐπιλαμβάνεται. + " 2x ἐπιλανθάνεσθε· + " 1x ἐπιλανθανόμενος + " 1x ἐπιλείψει + " 1x ἐπιλεγομένη + " 1x ἐπιλελησμένον + " 1x ἐπιλεξάμενος + " 1x ἐπιλησμονῆς + " 1x ἐπιλυθήσεται. + " 1x ἐπιλύσεως + " 1x ἐπιμένειν + " 1x ἐπιμένετε + " 1x ἐπιμένωμεν + " 1x ἐπιμένωσιν + " 1x ἐπιμένῃς + " 1x ἐπιμαρτυρῶν + " 1x ἐπιμελήσεται;) + " 1x ἐπιμελείας + " 1x ἐπιμελῶς + " 1x ἐπιμενῶ + " 3x ἐπιμεῖναι + " 1x ἐπιορκήσεις, + " 2x ἐπιούσιον + " 5x ἐπιούσῃ + " 1x ἐπιπίπτειν + " 1x ἐπιπεπτωκός, + " 1x ἐπιπεσόντες + " 1x ἐπιπλήξῃς, + " 1x ἐπιποθήσατε, + " 1x ἐπιποθίαν + " 1x ἐπιποθεῖ + " 1x ἐπιποθούντων + " 1x ἐπιποθοῦντες + " 1x ἐπιποθοῦντες, + " 2x ἐπιποθῶ + " 2x ἐπιποθῶν + " 1x ἐπιπορευομένων + " 2x ἐπιπόθησιν, + " 1x ἐπιπόθητοι, + " 1x ἐπιράπτει + " 2x ἐπιρίψαντες + " 1x ἐπισιτισμόν, + " 1x ἐπισκέπτεσθαι + " 1x ἐπισκέπτῃ + " 1x ἐπισκέψασθαι + " 1x ἐπισκέψασθε + " 1x ἐπισκέψεται + " 1x ἐπισκευασάμενοι + " 1x ἐπισκεψώμεθα + " 1x ἐπισκηνώσῃ + " 1x ἐπισκιάζουσα + " 1x ἐπισκιάσει + " 1x ἐπισκιάσῃ + " 1x ἐπισκοποῦντες + " 1x ἐπισκοπὴν + " 2x ἐπισκοπῆς + " 1x ἐπισκοπῆς. + " 1x ἐπισκόποις + " 1x ἐπισκόπους, + " 1x ἐπισπάσθω· + " 3x ἐπιστάμενος + " 1x ἐπιστάμενος, + " 2x ἐπιστάντες + " 1x ἐπιστάτα, + " 1x ἐπιστήμων + " 2x ἐπιστεύετε + " 2x ἐπιστεύθη + " 2x ἐπιστεύθην + " 1x ἐπιστεύθησαν + " 1x ἐπιστεύσαμεν, + " 1x ἐπιστεύσαμεν. + " 4x ἐπιστεύσατε + " 1x ἐπιστεύσατε, + " 2x ἐπιστεύσατε. + " 1x ἐπιστεῖλαι + " 1x ἐπιστηρίζοντες + " 1x ἐπιστηρίζων + " 1x ἐπιστολή, + " 1x ἐπιστολήν, + " 1x ἐπιστολήν. + " 1x ἐπιστολαὶ + " 1x ἐπιστολαῖς + " 2x ἐπιστολὰς + " 3x ἐπιστολὴ + " 4x ἐπιστολὴν + " 2x ἐπιστολῆς + " 1x ἐπιστολῆς, + " 1x ἐπιστολῇ + " 1x ἐπιστολῇ, + " 1x ἐπιστολῇ· + " 3x ἐπιστολῶν + " 1x ἐπιστολῶν. + " 1x ἐπιστομίζειν, + " 2x ἐπιστρέφειν + " 1x ἐπιστρέφετε + " 1x ἐπιστρέφουσιν + " 2x ἐπιστρέψαι + " 6x ἐπιστρέψας + " 1x ἐπιστρέψατε + " 1x ἐπιστρέψει + " 1x ἐπιστρέψω + " 1x ἐπιστρέψωσιν + " 2x ἐπιστρέψωσιν, + " 3x ἐπιστρέψῃ + " 1x ἐπιστραφήτω. + " 3x ἐπιστραφεὶς + " 3x ἐπιστρεψάτω + " 1x ἐπιστροφὴν + " 1x ἐπιστώθης, + " 4x ἐπιστὰς + " 2x ἐπιστᾶσα + " 1x ἐπιστῇ + " 1x ἐπισυνάγει + " 1x ἐπισυνάξαι + " 1x ἐπισυνάξει + " 1x ἐπισυνάξουσιν + " 1x ἐπισυναγαγεῖν + " 1x ἐπισυναγωγὴν + " 1x ἐπισυναγωγῆς + " 1x ἐπισυναχθήσονται. + " 1x ἐπισυναχθεισῶν + " 1x ἐπισυνηγμένη + " 1x ἐπισυντρέχει + " 1x ἐπισφαλοῦς + " 1x ἐπισωρεύσουσιν + " 1x ἐπιτάξῃ + " 2x ἐπιτάσσει + " 1x ἐπιτάσσει, + " 1x ἐπιτάσσειν + " 1x ἐπιτάσσω + " 1x ἐπιτήδεια + " 1x ἐπιτίθει, + " 1x ἐπιτίθεσθαι + " 1x ἐπιτίθησιν + " 2x ἐπιτίμησον + " 1x ἐπιτίμησον, + " 1x ἐπιταγήν. + " 5x ἐπιταγὴν + " 1x ἐπιταγῆς· + " 1x ἐπιτελέσαι + " 1x ἐπιτελέσας, + " 1x ἐπιτελέσατε, + " 1x ἐπιτελέσει + " 1x ἐπιτελέσῃ + " 1x ἐπιτελεῖν + " 1x ἐπιτελεῖσθαι. + " 1x ἐπιτελεῖσθε; + " 1x ἐπιτελοῦντες + " 1x ἐπιτελοῦντες, + " 1x ἐπιτιθέασιν + " 1x ἐπιτιθεὶς + " 1x ἐπιτιμήσας + " 1x ἐπιτιμία + " 2x ἐπιτιμᾶν + " 2x ἐπιτιμῶν + " 1x ἐπιτρέπεται + " 1x ἐπιτρέπω, + " 1x ἐπιτρέπῃ + " 1x ἐπιτρέψαντος + " 1x ἐπιτρέψῃ + " 1x ἐπιτρέψῃ. + " 1x ἐπιτροπῆς + " 1x ἐπιτρόπου + " 1x ἐπιτρόπους + " 1x ἐπιτρόπῳ + " 1x ἐπιτυχεῖν· + " 3x ἐπιφάνειαν + " 1x ἐπιφέρων + " 1x ἐπιφαινόντων + " 2x ἐπιφανείας + " 1x ἐπιφανείᾳ + " 1x ἐπιφανῆ. + " 1x ἐπιφαύσει + " 1x ἐπιφωσκούσῃ + " 1x ἐπιφᾶναι + " 1x ἐπιχέων + " 1x ἐπιχορηγήσατε + " 2x ἐπιχορηγίας + " 1x ἐπιχορηγηθήσεται + " 1x ἐπιχορηγούμενον + " 2x ἐπιχορηγῶν + " 1x ἐπιόρκοις, + " 1x ἐπλάνησεν + " 1x ἐπλάσθη, + " 1x ἐπλέομεν + " 1x ἐπλήγη + " 1x ἐπλήρου + " 1x ἐπλήρωσαν, + " 1x ἐπλήρωσαν. + " 4x ἐπλήρωσεν + " 5x ἐπλήσθη + " 12x ἐπλήσθησαν + " 1x ἐπλανήθησαν + " 1x ἐπλανήθησαν, + " 1x ἐπλεονέκτησα + " 1x ἐπλεονέκτησεν + " 1x ἐπλεονεκτήσαμεν. + " 1x ἐπλεόνασεν + " 1x ἐπλεόνασεν, + " 1x ἐπληθύνετο + " 2x ἐπληθύνετο. + " 1x ἐπληθύνθη + " 2x ἐπληροῦντο + " 1x ἐπληροῦτο + " 6x ἐπληρώθη + " 1x ἐπλουτήσατε· + " 1x ἐπλουτίσθητε + " 1x ἐπλούτησαν + " 1x ἐπλούτησαν. + " 1x ἐπνίγοντο + " 9x ἐποίει + " 2x ἐποίει. + " 1x ἐποίει· + " 3x ἐποίησέν + " 8x ἐποίησα + " 1x ἐποίησα. + " 1x ἐποίησα· + " 12x ἐποίησαν + " 1x ἐποίησαν, + " 2x ἐποίησαν. + " 5x ἐποίησας + " 1x ἐποίησας; + " 57x ἐποίησεν + " 5x ἐποίησεν, + " 4x ἐποίησεν. + " 3x ἐποίησεν; + " 2x ἐποίησεν· + " 3x ἐποίουν + " 1x ἐποιήσαμεν + " 1x ἐποιήσαμεν; + " 6x ἐποιήσατε + " 2x ἐποιήσατε. + " 1x ἐποιησάμην + " 1x ἐποικοδομεῖ + " 2x ἐποικοδομεῖ. + " 1x ἐποικοδομηθέντες + " 1x ἐποικοδομούμενοι + " 1x ἐποικοδομοῦντες + " 1x ἐποικοδόμησεν, + " 1x ἐποιοῦντο, + " 1x ἐπολέμησεν + " 1x ἐπονομάζῃ + " 1x ἐποπτεύοντες + " 1x ἐποπτεύσαντες + " 1x ἐπορευόμεθα + " 1x ἐπορευόμην, + " 3x ἐπορεύετο + " 1x ἐπορεύετο, + " 2x ἐπορεύετο. + " 11x ἐπορεύθη + " 1x ἐπορεύθη. + " 2x ἐπορεύθησαν + " 1x ἐπορεύθησαν, + " 1x ἐπορεύθησαν· + " 4x ἐπορεύοντο + " 1x ἐπορεύοντο, + " 1x ἐποτίσαμεν; + " 2x ἐποτίσατέ + " 1x ἐποτίσθημεν. + " 2x ἐπουράνια + " 1x ἐπουράνια, + " 1x ἐπουράνιοι· + " 1x ἐπουράνιον· + " 1x ἐπουράνιος, + " 4x ἐπουρανίοις + " 1x ἐπουρανίοις. + " 2x ἐπουρανίου + " 2x ἐπουρανίου. + " 2x ἐπουρανίων + " 1x ἐπουρανίων, + " 1x ἐπουρανίῳ, + " 1x ἐπράθη + " 1x ἐπράξαμεν + " 1x ἐπράξατε, + " 1x ἐπρίσθησαν, + " 1x ἐπροφήτευον. + " 1x ἐπροφήτευσαν· + " 4x ἐπροφήτευσεν + " 1x ἐπροφητεύσαμεν, + " 1x ἐπτώχευσεν + " 5x ἐπυνθάνετο + " 2x ἐπυνθάνοντο + " 1x ἐπωρώθη + " 1x ἐπωρώθησαν, + " 1x ἐπόπται + " 1x ἐπόρθει, + " 1x ἐπόρθουν + " 1x ἐπόρνευσαν + " 2x ἐπόρνευσαν, + " 2x ἐπότιζεν + " 1x ἐπότισα, + " 1x ἐπότισεν, + " 1x ἐπύθετο + " 1x ἐπώλησεν + " 1x ἐπώλουν, + " 1x ἐπώρωσεν + " 3x ἐπὰν + " 656x ἐπὶ + " 1x ἐπᾶραι + " 1x ἐπῄνεσεν + " 2x ἐπῆραν + " 2x ἐπῆρεν + " 141x ἐπ’ + " 1x ἐράντισεν, + " 1x ἐράντισεν. + " 1x ἐράπισαν + " 3x ἐρήμοις + " 1x ἐρήμου + " 1x ἐρήμου, + " 1x ἐρήμους. + " 1x ἐρήμωσις + " 15x ἐρήμῳ + " 6x ἐρήμῳ, + " 2x ἐρήμῳ. + " 1x ἐρήμῳ; + " 1x ἐρίου + " 1x ἐρίσει + " 1x ἐρίφια + " 1x ἐρίφων, + " 1x ἐραβδίσθην, + " 1x ἐραυνᾶτε + " 1x ἐραυνᾷ, + " 2x ἐραυνῶν + " 1x ἐραυνῶντες + " 1x ἐραύνησον + " 2x ἐργάζεσθαι + " 1x ἐργάζεσθαι, + " 1x ἐργάζεσθαι. + " 1x ἐργάζεσθαι; + " 1x ἐργάζεσθαι· + " 2x ἐργάζεσθε + " 1x ἐργάζεσθε, + " 1x ἐργάζεται + " 1x ἐργάζεται, + " 1x ἐργάζεται. + " 2x ἐργάζεται· + " 1x ἐργάζομαι + " 1x ἐργάζομαι· + " 1x ἐργάζονται, + " 1x ἐργάζου + " 1x ἐργάζῃ; + " 1x ἐργάσῃ + " 4x ἐργάται + " 5x ἐργάτας + " 1x ἐργάτας, + " 1x ἐργάτην + " 3x ἐργάτης + " 1x ἐργαζομένους + " 2x ἐργαζομένῳ + " 1x ἐργαζομένῳ, + " 6x ἐργαζόμενοι + " 2x ἐργαζόμενος + " 2x ἐργαζώμεθα + " 3x ἐργασίαν + " 1x ἐργασίαν, + " 2x ἐργασίας + " 2x ἐργατῶν + " 1x ἐρείσασα + " 1x ἐρεθίζετε + " 1x ἐρεύξομαι + " 17x ἐρεῖ + " 3x ἐρεῖς + " 1x ἐρεῖτέ + " 4x ἐρεῖτε + " 1x ἐρημίαις + " 1x ἐρημίας; + " 1x ἐρημίᾳ + " 1x ἐρημίᾳ, + " 2x ἐρημοῦται, + " 2x ἐρημώσεως + " 1x ἐριθεία, + " 2x ἐριθείαν + " 2x ἐριθείας + " 2x ἐριθεῖαι, + " 2x ἐροῦμεν + " 5x ἐροῦμεν; + " 1x ἐροῦσίν + " 4x ἐροῦσιν + " 9x ἐρρέθη + " 1x ἐρρέθησαν + " 2x ἐρριζωμένοι + " 1x ἐρριμμένοι + " 1x ἐρρύσατο + " 1x ἐρχέσθω + " 1x ἐρχέσθω, + " 2x ἐρχομένη + " 1x ἐρχομένης. + " 2x ἐρχομένου + " 1x ἐρχομένους + " 1x ἐρχομένων + " 4x ἐρχομένῳ + " 2x ἐρχόμενα + " 4x ἐρχόμενοι + " 17x ἐρχόμενον + " 17x ἐρχόμενος + " 7x ἐρχόμενος, + " 2x ἐρχόμενος. + " 1x ἐρωτήσατε, + " 1x ἐρωτήσετε + " 2x ἐρωτήσω + " 1x ἐρωτήσω, + " 1x ἐρωτήσωσιν + " 1x ἐρωτήσῃ. + " 1x ἐρωτώντων + " 1x ἐρωτᾶν, + " 4x ἐρωτᾷ + " 1x ἐρωτᾷ· + " 1x ἐρωτᾷς + " 1x ἐρωτᾷς; + " 1x ἐρωτῆσαί + " 1x ἐρωτῆσαι + " 6x ἐρωτῶ + " 1x ἐρωτῶ, + " 1x ἐρωτῶ· + " 1x ἐρωτῶμεν + " 1x ἐρωτῶν + " 1x ἐρωτῶντες + " 2x ἐρύσατο + " 1x ἐρύσατο,— + " 1x ἐρύσθην + " 1x ἐρώτησον + " 6x ἐρῶ + " 1x ἐρῶ, + " 1x ἐρῶ· + " 1x ἐσάλευσεν + " 7x ἐσάλπισεν· + " 1x ἐσήμαινεν + " 1x ἐσήμανεν + " 1x ἐσίγησαν + " 1x ἐσίγησαν. + " 1x ἐσαλεύθη + " 1x ἐσείσθη + " 1x ἐσείσθη, + " 1x ἐσείσθησαν + " 1x ἐσεβάσθησαν + " 1x ἐσθήσεσι + " 4x ἐσθίει + " 2x ἐσθίει, + " 1x ἐσθίει. + " 3x ἐσθίει; + " 3x ἐσθίειν + " 2x ἐσθίειν. + " 1x ἐσθίειν; + " 6x ἐσθίετε + " 1x ἐσθίητε + " 2x ἐσθίοντα + " 3x ἐσθίοντες + " 1x ἐσθίοντι. + " 4x ἐσθίουσιν + " 4x ἐσθίουσιν, + " 10x ἐσθίων + " 2x ἐσθίωσιν. + " 2x ἐσθίῃ + " 1x ἐσθιέτω + " 1x ἐσθιέτω, + " 1x ἐσθιέτω. + " 3x ἐσθιόντων + " 3x ἐσθῆτα + " 3x ἐσθῆτι + " 1x ἐσθῆτι, + " 1x ἐσιώπα + " 1x ἐσιώπα. + " 1x ἐσιώπων. + " 1x ἐσιώπων· + " 1x ἐσκήνωσεν + " 2x ἐσκίρτησεν + " 2x ἐσκανδαλίζοντο + " 1x ἐσκανδαλίσθησαν; + " 1x ἐσκληρύνοντο + " 1x ἐσκοτίσθη + " 1x ἐσκοτωμένη, + " 1x ἐσκοτωμένοι + " 1x ἐσκοτώθη + " 1x ἐσκυλμένοι + " 3x ἐσμέν, + " 5x ἐσμέν. + " 18x ἐσμεν + " 4x ἐσμεν, + " 4x ἐσμεν. + " 2x ἐσμεν; + " 3x ἐσμεν· + " 1x ἐσμυρνισμένον + " 13x ἐσμὲν + " 1x ἐσπαργάνωσεν + " 1x ἐσπαργανωμένον + " 2x ἐσπαρμένον + " 1x ἐσπαταλήσατε, + " 1x ἐσπείραμεν, + " 1x ἐσπιλωμένον + " 4x ἐσπλαγχνίσθη + " 2x ἐσπλαγχνίσθη, + " 1x ἐσπουδάσαμεν + " 1x ἐσπούδασα + " 4x ἐστάθη + " 1x ἐστάθησαν + " 6x ἐστέ, + " 3x ἐστέ. + " 1x ἐστέ; + " 2x ἐστέ· + " 1x ἐστέναξεν, + " 1x ἐστήρικται, + " 1x ἐστήρισεν + " 1x ἐστί + " 8x ἐστίν + " 23x ἐστίν, + " 22x ἐστίν. + " 3x ἐστίν; + " 12x ἐστίν· + " 1x ἐσταυρωμένον + " 1x ἐσταυρωμένον, + " 1x ἐσταυρωμένον. + " 1x ἐσταυρωμένον· + " 1x ἐσταυρωμένος; + " 4x ἐσταυρώθη + " 1x ἐσταυρώθη. + " 1x ἐσταυρώσατε, + " 1x ἐσταυρώσατε. + " 5x ἐσταύρωσαν + " 1x ἐσταύρωσαν, + " 1x ἐσταύρωσαν· + " 1x ἐσταύρωται + " 43x ἐστε + " 9x ἐστε, + " 8x ἐστε. + " 5x ἐστε; + " 2x ἐστε· + " 1x ἐστερέωσεν + " 1x ἐστερεοῦντο + " 1x ἐστερεώθησαν + " 1x ἐστεφάνωσας + " 1x ἐστεφανωμένον, + " 1x ἐστηριγμένους + " 398x ἐστιν + " 69x ἐστιν, + " 63x ἐστιν. + " 17x ἐστιν; + " 25x ἐστιν· + " 1x ἐστράφη + " 1x ἐστράφησαν + " 1x ἐστρηνίασεν, + " 1x ἐστρωμένον + " 1x ἐστρωμένον· + " 1x ἐστρώννυον + " 13x ἐστὲ + " 108x ἐστὶν + " 2x ἐστὶν, + " 1x ἐσυκοφάντησα + " 1x ἐσφάγης + " 1x ἐσφαγμένην + " 1x ἐσφαγμένον + " 1x ἐσφαγμένον, + " 1x ἐσφαγμένου + " 2x ἐσφαγμένων + " 3x ἐσφράγισεν + " 2x ἐσφραγίσθητε + " 1x ἐσφραγισμένοι + " 1x ἐσφραγισμένοι, + " 1x ἐσφραγισμένοι. + " 1x ἐσφραγισμένων, + " 3x ἐσχάταις + " 1x ἐσχάτας, + " 3x ἐσχάτη + " 5x ἐσχάτου + " 1x ἐσχάτους + " 2x ἐσχάτων + " 1x ἐσχάτων, + " 1x ἐσχάτων· + " 1x ἐσχάτως + " 8x ἐσχάτῃ + " 1x ἐσχάτῳ + " 1x ἐσχάτῳ. + " 1x ἐσχήκαμεν + " 1x ἐσχήκαμεν, + " 6x ἐσχίσθη + " 1x ἐσχίσθησαν, + " 1x ἐσχηκότα + " 1x ἐσωτέραν + " 1x ἐσόμεθα, + " 2x ἐσόμεθα. + " 1x ἐσόμεθα· + " 1x ἐσόμενον + " 1x ἐσόπτρου + " 1x ἐσόπτρῳ· + " 1x ἐσύλησα + " 4x ἐσώθη + " 1x ἐσώθημεν· + " 1x ἐσώτερον + " 1x ἐσῴζοντο. + " 1x ἐτάξατο + " 2x ἐτάραξαν + " 1x ἐτάραξεν + " 1x ἐτάρασσε + " 2x ἐτάφη, + " 1x ἐτάφη. + " 1x ἐτέθη + " 2x ἐτέθην + " 1x ἐτέθησαν + " 1x ἐτέθησαν· + " 2x ἐτέλεσαν + " 5x ἐτέλεσεν + " 1x ἐτέχθη + " 1x ἐτήρησάς + " 1x ἐτήρησα + " 1x ἐτήρησαν, + " 1x ἐτήρησας + " 3x ἐτήρουν + " 1x ἐτίθει + " 1x ἐτίθεσαν + " 2x ἐτίθουν + " 1x ἐτίμησαν + " 1x ἐταπείνωσεν + " 2x ἐταράχθη + " 1x ἐταράχθη, + " 1x ἐταράχθησαν + " 1x ἐταράχθησαν. + " 1x ἐτεκνοτρόφησεν, + " 2x ἐτελέσθη + " 1x ἐτελείωσεν + " 1x ἐτελειώθη, + " 2x ἐτελεύτησεν + " 1x ἐτελεύτησεν, + " 1x ἐτελεύτησεν· + " 1x ἐτηρεῖτο + " 1x ἐτιμήσαντο + " 1x ἐτροποφόρησεν + " 1x ἐτρυφήσατε + " 1x ἐτρύγησεν + " 1x ἐτυμπανίσθησαν, + " 4x ἐτόλμα + " 1x ἐτόλμησέν + " 1x ἐτόλμησεν + " 1x ἐτόλμων + " 1x ἐτύθη + " 2x ἐτύφλωσεν + " 14x ἐτῶν + " 1x ἐτῶν, + " 1x ἐφάγετε + " 1x ἐφάγομεν + " 4x ἐφάνη + " 1x ἐφάνη, + " 1x ἐφάνησαν + " 2x ἐφάπαξ + " 1x ἐφάπαξ, + " 1x ἐφάπαξ. + " 1x ἐφάπαξ· + " 1x ἐφέροντο. + " 1x ἐφέστηκεν. + " 2x ἐφίλει + " 1x ἐφίλει· + " 1x ἐφίμωσεν + " 1x ἐφαλόμενος + " 4x ἐφανέρωσεν + " 1x ἐφανέρωσεν. + " 9x ἐφανερώθη + " 2x ἐφανερώθη, + " 1x ἐφανερώθησαν. + " 4x ἐφείσατο, + " 1x ἐφερόμεθα. + " 1x ἐφεστὼς + " 1x ἐφεστῶτα + " 1x ἐφευρετὰς + " 1x ἐφημέρου + " 2x ἐφημερίας + " 1x ἐφθάσαμεν + " 1x ἐφθάσαμεν, + " 1x ἐφθείραμεν, + " 1x ἐφικέσθαι + " 1x ἐφικνούμενοι + " 1x ἐφιμώθη. + " 3x ἐφοβήθη + " 2x ἐφοβήθη, + " 11x ἐφοβήθησαν + " 3x ἐφοβήθησαν. + " 1x ἐφοβεῖτο + " 1x ἐφοβούμην + " 9x ἐφοβοῦντο + " 1x ἐφοβοῦντο. + " 2x ἐφονεύσατε + " 1x ἐφορέσαμεν + " 1x ἐφρονεῖτε, + " 1x ἐφρουρούμεθα + " 1x ἐφρούρει + " 1x ἐφρόνουν + " 1x ἐφρύαξαν + " 1x ἐφυλάξατε. + " 1x ἐφυλαξάμην + " 1x ἐφυσιώθησάν + " 1x ἐφωτίσθη + " 1x ἐφύλαξα + " 1x ἐφύλαξα, + " 1x ἐφύλαξα· + " 1x ἐφύλαξεν, + " 1x ἐφύτευον, + " 1x ἐφύτευσα, + " 3x ἐφύτευσεν + " 1x ἐφύτευσεν, + " 1x ἐφώνει + " 1x ἐφώνησαν + " 9x ἐφώνησεν + " 3x ἐφώνησεν. + " 1x ἐφώτισεν + " 80x ἐφ’ + " 1x ἐχάρη + " 1x ἐχάρη, + " 1x ἐχάρη. + " 1x ἐχάρημεν + " 1x ἐχάρην + " 4x ἐχάρησαν + " 1x ἐχάρησαν, + " 1x ἐχάρητε + " 2x ἐχέτω, + " 1x ἐχέτω. + " 1x ἐχαλάσθην + " 4x ἐχαρίσατο + " 2x ἐχαρίσατο. + " 1x ἐχαρίσθη + " 1x ἐχαρίτωσεν + " 1x ἐχθροί + " 6x ἐχθρούς + " 5x ἐχθροὶ + " 7x ἐχθροὺς + " 1x ἐχθροῦ, + " 1x ἐχθρόν + " 1x ἐχθρός + " 1x ἐχθρὲ + " 1x ἐχθρὸν + " 5x ἐχθρὸς + " 2x ἐχθρῶν + " 2x ἐχθὲς + " 4x ἐχιδνῶν, + " 1x ἐχλεύαζον, + " 1x ἐχομένας + " 3x ἐχομένῃ + " 2x ἐχορτάσθησαν + " 3x ἐχορτάσθησαν, + " 1x ἐχορτάσθησαν· + " 1x ἐχορτάσθητε. + " 3x ἐχούσαις + " 2x ἐχούσης + " 1x ἐχούσῃ, + " 1x ἐχρηματίσθη + " 1x ἐχρησάμεθα + " 1x ἐχρησάμην; + " 1x ἐχρῶντο, + " 1x ἐχωρίσθη + " 1x ἐχόμενα + " 9x ἐχόντων + " 2x ἐψευδομαρτύρουν + " 1x ἐψεύσω + " 1x ἐψηλάφησαν, + " 262x ἐὰν + " 1x ἑαυτάς + " 2x ἑαυτάς, + " 1x ἑαυτήν, + " 1x ἑαυτήν. + " 1x ἑαυταῖς. + " 5x ἑαυτούς + " 4x ἑαυτούς, + " 2x ἑαυτούς. + " 3x ἑαυτούς· + " 46x ἑαυτοὺς + " 2x ἑαυτοὺς, + " 41x ἑαυτοῖς + " 3x ἑαυτοῖς, + " 6x ἑαυτοῖς. + " 38x ἑαυτοῦ + " 7x ἑαυτοῦ, + " 3x ἑαυτοῦ. + " 1x ἑαυτοῦ· + " 7x ἑαυτόν, + " 1x ἑαυτόν. + " 1x ἑαυτόν· + " 1x ἑαυτὰ + " 1x ἑαυτὰς + " 5x ἑαυτὴν + " 57x ἑαυτὸν + " 1x ἑαυτὸν, + " 4x ἑαυτῆς + " 1x ἑαυτῆς, + " 1x ἑαυτῆς· + " 2x ἑαυτῇ + " 29x ἑαυτῶν + " 6x ἑαυτῶν, + " 6x ἑαυτῶν. + " 1x ἑαυτῶν; + " 1x ἑαυτῶν· + " 23x ἑαυτῷ + " 3x ἑαυτῷ, + " 1x ἑαυτῷ. + " 4x ἑβδομήκοντα + " 1x ἑβδομήκοντα, + " 1x ἑβδομηκοντάκις + " 1x ἑβδόμην + " 1x ἑβδόμην, + " 1x ἑβδόμης + " 1x ἑβδόμου + " 1x ἑβδόμῃ + " 1x ἑδραίωμα + " 2x ἑδραῖοι + " 1x ἑδραῖος + " 1x ἑκάστη + " 1x ἑκάστην + " 1x ἑκάστοτε + " 7x ἑκάστου + " 19x ἑκάστῳ + " 1x ἑκατοντάρχας + " 7x ἑκατοντάρχης + " 1x ἑκατοντάρχης, + " 4x ἑκατοντάρχῃ + " 1x ἑκατονταετής + " 1x ἑκατονταπλασίονα + " 1x ἑκατονταπλασίονα. + " 2x ἑκατονταρχῶν + " 3x ἑκατόν. + " 1x ἑκατόνταρχον + " 3x ἑκατόνταρχος + " 12x ἑκατὸν + " 1x ἑκουσίως + " 1x ἑκούσιον. + " 1x ἑκοῦσα, + " 1x ἑκὼν + " 1x ἑλίξεις + " 1x ἑλισσόμενον, + " 1x ἑλκύσαι + " 1x ἑλκύσω + " 1x ἑλκύσῃ + " 1x ἑλκῶν + " 1x ἑλπίδι + " 1x ἑλόμενος + " 1x ἑνί, + " 1x ἑνδέκατος + " 2x ἑνδεκάτην + " 1x ἑνός + " 1x ἑνός, + " 1x ἑνός. + " 1x ἑνός· + " 2x ἑνότητα + " 20x ἑνὶ + " 29x ἑνὸς + " 8x ἑξήκοντα + " 1x ἑξήκοντα. + " 1x ἑξακοσίων. + " 1x ἑξακόσιοι + " 5x ἑξῆς + " 1x ἑορτάζωμεν, + " 3x ἑορτήν, + " 1x ἑορτήν. + " 1x ἑορτήν; + " 1x ἑορτήν· + " 4x ἑορτὴ + " 3x ἑορτὴν + " 4x ἑορτῆς + " 1x ἑορτῆς, + " 2x ἑορτῇ + " 3x ἑορτῇ, + " 2x ἑορτῇ· + " 2x ἑπτά + " 5x ἑπτά, + " 3x ἑπτά. + " 3x ἑπτά· + " 2x ἑπτάκις + " 1x ἑπτάκις, + " 1x ἑπτάκις; + " 1x ἑπτακισχιλίους + " 72x ἑπτὰ + " 1x ἑρμηνεία + " 1x ἑρμηνείαν + " 1x ἑρμηνευόμενος + " 2x ἑρμηνεύεται + " 2x ἑρπετὰ + " 1x ἑρπετῶν + " 1x ἑρπετῶν. + " 1x ἑσπέρα + " 1x ἑσπέραν + " 1x ἑσπέρας. + " 3x ἑστάναι + " 1x ἑστήκαμεν, + " 2x ἑστήκασιν + " 1x ἑστήκασιν, + " 2x ἑστήκατε + " 1x ἑστήκατε, + " 1x ἑστήκατε. + " 1x ἑστηκότα + " 2x ἑστηκότες + " 4x ἑστηκότων + " 1x ἑστηκὸς + " 2x ἑστηκὼς + " 1x ἑστώτων + " 2x ἑστὸς + " 9x ἑστὼς + " 1x ἑστῶσα. + " 7x ἑστῶτα + " 1x ἑστῶτα, + " 5x ἑστῶτας + " 1x ἑστῶτας, + " 4x ἑστῶτες + " 1x ἑστῶτες. + " 1x ἑστῶτος + " 6x ἑτέρα + " 3x ἑτέραις + " 2x ἑτέραν + " 1x ἑτέραν· + " 1x ἑτέρας + " 1x ἑτέρας, + " 2x ἑτέροις + " 3x ἑτέρου + " 3x ἑτέρου. + " 4x ἑτέρους + " 4x ἑτέρων + " 1x ἑτέρως + " 4x ἑτέρᾳ + " 8x ἑτέρῳ + " 1x ἑτέρῳ, + " 1x ἑτέρῳ. + " 1x ἑτέρῳ· + " 1x ἑτερογλώσσοις + " 1x ἑτεροδιδασκαλεῖ + " 1x ἑτεροδιδασκαλεῖν + " 1x ἑτεροζυγοῦντες + " 1x ἑτοίμαζέ + " 2x ἑτοίμην + " 1x ἑτοίμους + " 3x ἑτοίμως + " 1x ἑτοίμῳ + " 4x ἑτοιμάσαι + " 1x ἑτοιμάσαντες + " 1x ἑτοιμάσας + " 2x ἑτοιμάσατε + " 1x ἑτοιμάσατε. + " 1x ἑτοιμάσω + " 1x ἑτοιμάσωμέν + " 1x ἑτοιμάσωμεν + " 1x ἑτοιμάσωμεν; + " 1x ἑτοιμασίᾳ + " 1x ἑτοιμασθῇ + " 4x ἑωράκαμεν + " 1x ἑωράκασιν + " 1x ἑωράκατέ + " 1x ἑωράκατε, + " 1x ἑωράκατε. + " 1x ἑωράκει· + " 1x ἑωρακέναι, + " 1x ἑωρακότες + " 2x ἑωρακὼς + " 1x ἑόρακα; + " 1x ἑόρακαν + " 1x ἑόρακεν + " 1x ἑώρακάς + " 1x ἑώρακέν + " 1x ἑώρακα + " 1x ἑώρακα, + " 1x ἑώρακαν. + " 2x ἑώρακας + " 1x ἑώρακας; + " 8x ἑώρακεν + " 1x ἑώρακεν, + " 1x ἑώρων + " 44x ἓν + " 1x ἓν, + " 7x ἓξ + " 1x ἔβαλαν + " 18x ἔβαλεν + " 1x ἔβαλεν, + " 1x ἔβαλεν. + " 1x ἔβαλεν· + " 1x ἔβαλλον + " 6x ἔβαλον + " 1x ἔβαλον, + " 1x ἔβαλον. + " 1x ἔβλεπεν· + " 1x ἔβλεπον + " 1x ἔβλεψα, + " 1x ἔβρεξέν + " 2x ἔβρεξεν + " 1x ἔβρυχον + " 1x ἔγγυος + " 2x ἔγειρε + " 1x ἔγειρε, + " 2x ἔγειρε. + " 1x ἔγερσιν + " 1x ἔγημα, + " 1x ἔγκλημα. + " 11x ἔγνω + " 1x ἔγνω, + " 1x ἔγνω. + " 1x ἔγνω; + " 1x ἔγνωκάς + " 1x ἔγνωκα + " 1x ἔγνωκαν + " 2x ἔγνωκεν + " 1x ἔγνωκεν· + " 5x ἔγνων + " 1x ἔγνων, + " 3x ἔγνως + " 15x ἔγνωσαν + " 1x ἔγνωσαν, + " 1x ἔγνωσαν. + " 1x ἔγνωσται + " 2x ἔγραφεν + " 1x ἔγραψά + " 14x ἔγραψα + " 2x ἔγραψα, + " 1x ἔγραψαν + " 7x ἔγραψεν + " 1x ἔγραψεν. + " 1x ἔδαφος + " 13x ἔδει + " 1x ἔδει, + " 2x ἔδειξέν + " 1x ἔδειξα + " 4x ἔδειξεν + " 1x ἔδειραν + " 1x ἔδειραν, + " 2x ἔδησαν + " 4x ἔδησεν + " 1x ἔδοξα + " 2x ἔδοξαν + " 2x ἔδοξε + " 2x ἔδοξεν + " 2x ἔδραμεν + " 2x ἔδραμον + " 1x ἔδραμον. + " 1x ἔδυσεν + " 3x ἔδωκάς + " 1x ἔδωκέν + " 2x ἔδωκα + " 8x ἔδωκαν + " 2x ἔδωκας + " 1x ἔδωκας, + " 2x ἔδωκας· + " 58x ἔδωκεν + " 1x ἔδωκεν, + " 4x ἔδωκεν. + " 1x ἔζησα + " 2x ἔζησαν + " 1x ἔζησεν + " 2x ἔζησεν, + " 1x ἔζησεν. + " 1x ἔζων + " 2x ἔθαψαν + " 1x ἔθαψαν. + " 1x ἔθει + " 4x ἔθεντο + " 1x ἔθεσθε + " 1x ἔθεσι + " 1x ἔθεσιν + " 7x ἔθετο + " 2x ἔθη + " 2x ἔθηκα + " 1x ἔθηκα, + " 7x ἔθηκαν + " 1x ἔθηκας + " 1x ἔθηκας, + " 8x ἔθηκεν + " 1x ἔθηκεν. + " 1x ἔθηκεν· + " 6x ἔθνει + " 1x ἔθνει, + " 18x ἔθνεσιν + " 9x ἔθνεσιν, + " 4x ἔθνεσιν. + " 1x ἔθνεσιν; + " 35x ἔθνη + " 12x ἔθνη, + " 1x ἔθνη,— + " 3x ἔθνη. + " 1x ἔθνη· + " 16x ἔθνος + " 2x ἔθνος. + " 5x ἔθνους + " 2x ἔθνους, + " 6x ἔθος + " 1x ἔθου + " 1x ἔθρεψαν. + " 1x ἔθυον, + " 1x ἔθυσας + " 1x ἔθυσεν + " 1x ἔκαμψαν + " 4x ἔκβαλε + " 2x ἔκβασιν + " 1x ἔκγονα + " 1x ἔκδηλος + " 2x ἔκδικος + " 1x ἔκδοτον + " 3x ἔκειτο + " 1x ἔκειτο. + " 1x ἔκθαμβοι. + " 1x ἔκθετα + " 3x ἔκκοψον + " 1x ἔκλαιεν, + " 1x ἔκλαιεν. + " 2x ἔκλαιον + " 1x ἔκλασα + " 6x ἔκλασεν + " 3x ἔκλαυσεν + " 1x ἔκλεισεν + " 1x ἔκλεψαν + " 1x ἔκλιναν + " 1x ἔκοπτον + " 2x ἔκπαλαι + " 5x ἔκραζεν + " 7x ἔκραζον + " 1x ἔκραζον· + " 6x ἔκραξαν + " 1x ἔκραξαν. + " 9x ἔκραξεν + " 1x ἔκραξεν, + " 1x ἔκρινά + " 2x ἔκρινα + " 1x ἔκρινας, + " 1x ἔκρινας. + " 2x ἔκρινεν + " 1x ἔκρυψα + " 1x ἔκρυψαν + " 1x ἔκρυψας + " 2x ἔκρυψεν + " 1x ἔκρυψεν, + " 1x ἔκστασις + " 1x ἔκστασις, + " 1x ἔκστασις· + " 1x ἔκτισας + " 3x ἔκτισεν + " 1x ἔκτισται· + " 1x ἔκφοβοι + " 1x ἔλαβε + " 19x ἔλαβεν + " 1x ἔλαβεν. + " 1x ἔλαβες, + " 1x ἔλαβες; + " 20x ἔλαβον + " 4x ἔλαβον, + " 2x ἔλαβον. + " 1x ἔλαθεν, + " 1x ἔλαθόν + " 5x ἔλαιον + " 1x ἔλαιον· + " 3x ἔλαμψεν + " 2x ἔλαττον + " 1x ἔλαχε + " 1x ἔλαχεν + " 57x ἔλεγεν + " 1x ἔλεγεν, + " 1x ἔλεγεν. + " 1x ἔλεγεν· + " 1x ἔλεγξιν + " 1x ἔλεγξον + " 1x ἔλεγξον, + " 76x ἔλεγον + " 1x ἔλεγον. + " 2x ἔλεγχε + " 1x ἔλεγχε, + " 1x ἔλεγχος + " 14x ἔλεος + " 3x ἔλεος, + " 1x ἔλεος· + " 1x ἔλθητε + " 5x ἔλθω + " 1x ἔλθω, + " 4x ἔλθωσιν + " 28x ἔλθῃ + " 2x ἔλθῃ, + " 3x ἔλθῃ. + " 1x ἔλθῃς + " 1x ἔλουσεν + " 1x ἔλυεν + " 1x ἔλυσεν + " 1x ἔμαθεν + " 1x ἔμαθες + " 1x ἔμαθες, + " 1x ἔμαθον + " 2x ἔμειναν + " 8x ἔμεινεν + " 1x ἔμελεν + " 1x ἔμελεν. + " 3x ἔμελλεν + " 3x ἔμελλον + " 4x ἔμενεν + " 1x ἔμενον + " 1x ἔμιξεν + " 1x ἔμποροί + " 3x ἔμποροι + " 8x ἔμπροσθέν + " 40x ἔμπροσθεν + " 2x ἔμφοβοι + " 2x ἔμφοβος + " 1x ἔμφυτον + " 8x ἔν + " 2x ἔναντι + " 1x ἔνατος + " 1x ἔνδειγμα + " 3x ἔνδειξιν + " 1x ἔνδειξις + " 1x ἔνδικον + " 1x ἔνδικόν + " 1x ἔνδοξοι, + " 1x ἔνδοξον + " 4x ἔνδυμα + " 2x ἔνθεν + " 6x ἔνι + " 1x ἔνιψα + " 1x ἔνιψεν + " 1x ἔνιψεν, + " 1x ἔννοιαν + " 1x ἔννομος + " 1x ἔννυχα + " 1x ἔνοχοι + " 1x ἔνοχον + " 5x ἔνοχος + " 1x ἔνοχος. + " 1x ἔνοχός + " 2x ἔντιμον, + " 1x ἔντιμος. + " 2x ἔντρομος + " 1x ἔντρομος· + " 1x ἔνυξεν, + " 2x ἔξελε + " 4x ἔξελθε + " 5x ἔξεστίν + " 16x ἔξεστιν + " 4x ἔξεστιν, + " 1x ἔξεστιν; + " 2x ἔξοδον + " 1x ἔξυπνος + " 52x ἔξω + " 5x ἔξω, + " 4x ἔξω. + " 1x ἔξω· + " 12x ἔξωθεν + " 1x ἔξωθεν, + " 2x ἔοικεν + " 3x ἔπαθεν + " 1x ἔπαθεν. + " 1x ἔπαθον + " 7x ἔπαινον + " 3x ἔπαινος + " 1x ἔπαινος, + " 2x ἔπαισεν + " 1x ἔπαυλις + " 1x ἔπειθέν + " 1x ἔπειθον + " 1x ἔπεισαν + " 14x ἔπειτα + " 9x ἔπεμψα + " 3x ἔπεμψεν + " 1x ἔπεσά + " 3x ἔπεσα + " 10x ἔπεσαν + " 1x ἔπεσαν, + " 1x ἔπεσαν. + " 24x ἔπεσεν + " 2x ἔπεσεν, + " 1x ἔπεσεν· + " 1x ἔπεχε + " 1x ἔπηξεν + " 1x ἔπιδε + " 1x ἔπιεν + " 1x ἔπιεν. + " 1x ἔπινον + " 2x ἔπινον, + " 2x ἔπιον + " 1x ἔπιπτεν + " 1x ἔπλησαν + " 1x ἔπλυναν + " 1x ἔπλυνον + " 2x ἔπνευσαν + " 1x ἔπνιγεν + " 1x ἔπος + " 1x ἔπραξα. + " 1x ἔπραξαν. + " 1x ἔπραξεν, + " 1x ἔπραξεν. + " 1x ἔπρεπεν + " 1x ἔπταισαν + " 1x ἔπτυσεν + " 52x ἔργα + " 4x ἔργα, + " 1x ἔργα. + " 1x ἔργα· + " 13x ἔργοις + " 35x ἔργον + " 2x ἔργον, + " 1x ἔργον. + " 6x ἔργου + " 2x ἔργου, + " 33x ἔργων + " 6x ἔργων, + " 1x ἔργων. + " 1x ἔργων; + " 1x ἔργων· + " 7x ἔργῳ + " 2x ἔργῳ, + " 1x ἔργῳ. + " 11x ἔρημον + " 1x ἔρημον, + " 1x ἔρημον. + " 1x ἔρημος + " 1x ἔρημος. + " 1x ἔριδες + " 1x ἔριδι + " 1x ἔριδος + " 1x ἔριν + " 1x ἔριν, + " 1x ἔριον + " 4x ἔρις, + " 1x ἔριφον + " 1x ἔριψαν + " 1x ἔριψαν. + " 1x ἔρρηξεν + " 1x ἔρριπται + " 5x ἔρχεσθαι + " 2x ἔρχεσθαι, + " 2x ἔρχεσθαι. + " 2x ἔρχεταί + " 66x ἔρχεται + " 11x ἔρχεται, + " 6x ἔρχεται. + " 2x ἔρχεται; + " 1x ἔρχεται· + " 1x ἔρχηται + " 1x ἔρχηται, + " 2x ἔρχομαί + " 13x ἔρχομαι + " 3x ἔρχομαι, + " 2x ἔρχομαι. + " 18x ἔρχονται + " 1x ἔρχονται, + " 1x ἔρχονται; + " 2x ἔρχου + " 1x ἔρχῃ + " 1x ἔσβεσαν + " 2x ἔσεσθέ + " 3x ἔσεσθαι + " 1x ἔσεσθαι, + " 7x ἔσεσθε + " 1x ἔσεσθε, + " 1x ἔσεσθε. + " 1x ἔσθητε + " 1x ἔσθοντες + " 1x ἔσθων + " 1x ἔσκαψεν + " 11x ἔσομαι + " 2x ἔσομαι; + " 2x ἔσονταί + " 25x ἔσονται + " 2x ἔσονται, + " 1x ἔσονται. + " 1x ἔσπειρα, + " 1x ἔσπειρα; + " 1x ἔσπειρας + " 1x ἔσπειρας, + " 1x ἔσπειρας. + " 1x ἔσπειρεν + " 1x ἔσπευδεν + " 99x ἔσται + " 7x ἔσται, + " 5x ἔσται. + " 2x ἔσται; + " 3x ἔσται· + " 8x ἔστη + " 1x ἔστη. + " 1x ἔστηκεν, + " 1x ἔστησάν + " 7x ἔστησαν + " 1x ἔστησαν, + " 7x ἔστησεν + " 128x ἔστιν + " 6x ἔστιν, + " 5x ἔστιν. + " 1x ἔστιν; + " 3x ἔστιν· + " 2x ἔστρεψεν + " 2x ἔστρωσαν + " 8x ἔστω + " 1x ἔστω, + " 2x ἔστω. + " 1x ἔστωσαν + " 2x ἔσυρον + " 2x ἔσφαξεν + " 4x ἔσχατα + " 7x ἔσχατοι + " 2x ἔσχατοι. + " 7x ἔσχατον + " 4x ἔσχατος + " 2x ἔσχατος, + " 3x ἔσχεν + " 1x ἔσχεν, + " 1x ἔσχεν· + " 1x ἔσχες, + " 1x ἔσχηκα + " 1x ἔσχηκεν + " 1x ἔσχομεν + " 5x ἔσχον + " 9x ἔσω + " 12x ἔσωθεν + " 1x ἔσωσεν + " 3x ἔσωσεν, + " 7x ἔσῃ + " 1x ἔσῃ, + " 2x ἔταξαν + " 1x ἔτει + " 4x ἔτεκεν + " 2x ἔτεσιν + " 19x ἔτη + " 4x ἔτη, + " 4x ἔτη. + " 1x ἔτη; + " 1x ἔτη· + " 62x ἔτι + " 11x ἔτι, + " 6x ἔτι. + " 2x ἔτι· + " 1x ἔτιλλον + " 1x ἔτος + " 1x ἔτος, + " 1x ἔτρεχον + " 1x ἔτυπτεν + " 3x ἔτυπτον + " 3x ἔφαγεν + " 1x ἔφαγεν, + " 1x ἔφαγεν. + " 11x ἔφαγον + " 2x ἔφαγον, + " 1x ἔφασκεν + " 1x ἔφερεν + " 4x ἔφερον + " 41x ἔφη + " 1x ἔφη, + " 1x ἔφη· + " 3x ἔφθασεν + " 1x ἔφθασεν. + " 1x ἔφθειρεν + " 1x ἔφραξαν + " 3x ἔφυγεν + " 1x ἔφυγεν, + " 1x ἔφυγεν. + " 5x ἔφυγον + " 1x ἔφυγον, + " 1x ἔφυγον. + " 1x ἔχαιρεν + " 1x ἔχαιρον + " 4x ἔχε + " 61x ἔχει + " 22x ἔχει, + " 15x ἔχει. + " 1x ἔχει; + " 5x ἔχει· + " 23x ἔχειν + " 6x ἔχειν. + " 1x ἔχειν· + " 20x ἔχεις + " 4x ἔχεις, + " 1x ἔχεις. + " 1x ἔχεις; + " 2x ἔχεις· + " 34x ἔχετε + " 3x ἔχετε, + " 2x ἔχετε. + " 5x ἔχετε; + " 4x ἔχετε· + " 7x ἔχητε + " 1x ἔχητε, + " 3x ἔχητε. + " 2x ἔχθρα + " 1x ἔχθραι, + " 1x ἔχθραν + " 1x ἔχθραν, + " 1x ἔχθρᾳ + " 1x ἔχιδνα + " 2x ἔχοι + " 1x ἔχοιεν + " 31x ἔχομεν + " 6x ἔχομεν, + " 2x ἔχομεν. + " 4x ἔχον + " 1x ἔχοντά + " 26x ἔχοντα + " 1x ἔχοντα. + " 14x ἔχοντας + " 1x ἔχοντας, + " 1x ἔχοντας; + " 36x ἔχοντες + " 3x ἔχοντες, + " 2x ἔχοντες. + " 2x ἔχοντες· + " 7x ἔχοντι + " 1x ἔχοντι, + " 2x ἔχοντι. + " 5x ἔχοντος + " 12x ἔχουσα + " 2x ἔχουσα, + " 1x ἔχουσα. + " 3x ἔχουσαι + " 6x ἔχουσαν + " 1x ἔχουσι + " 27x ἔχουσιν + " 3x ἔχουσιν, + " 3x ἔχουσιν. + " 1x ἔχουσιν· + " 2x ἔχρισέν + " 1x ἔχρισας, + " 1x ἔχρισεν + " 34x ἔχω + " 9x ἔχω, + " 5x ἔχω· + " 4x ἔχωμεν + " 1x ἔχωμεν, + " 1x ἔχωμεν. + " 83x ἔχων + " 3x ἔχων, + " 1x ἔχωσι + " 2x ἔχωσιν + " 2x ἔχωσιν. + " 8x ἔχῃ + " 2x ἔχῃ, + " 1x ἔχῃ; + " 4x ἕβδομος + " 1x ἕκαστοι + " 1x ἕκαστοι. + " 12x ἕκαστον + " 1x ἕκαστον. + " 37x ἕκαστος + " 1x ἕκαστος, + " 1x ἕκτη + " 1x ἕκτη. + " 1x ἕκτη· + " 1x ἕκτην + " 1x ἕκτην, + " 1x ἕκτην. + " 2x ἕκτης + " 4x ἕκτος + " 2x ἕκτῳ + " 1x ἕλκη + " 1x ἕλκος + " 1x ἕλκουσιν + " 7x ἕν + " 6x ἕν, + " 1x ἕν. + " 1x ἕν· + " 38x ἕνα + " 2x ἕνα, + " 1x ἕνα. + " 1x ἕνα; + " 6x ἕνδεκα + " 3x ἕνεκα + " 18x ἕνεκεν + " 2x ἕξ, + " 2x ἕξ. + " 1x ἕξ· + " 5x ἕξει + " 1x ἕξει· + " 4x ἕξεις + " 1x ἕξετε + " 1x ἕξιν + " 1x ἕξουσιν + " 1x ἕξουσιν. + " 3x ἕστηκα + " 1x ἕστηκας + " 1x ἕστηκας. + " 3x ἕστηκεν + " 1x ἕστηκεν, + " 1x ἕστηκεν. + " 4x ἕτερα + " 1x ἕτεραι + " 6x ἕτεροι + " 24x ἕτερον + " 1x ἕτερον, + " 1x ἕτερον· + " 13x ἕτερος + " 1x ἕτερος, + " 1x ἕτερος. + " 1x ἕτοιμά + " 1x ἕτοιμα + " 1x ἕτοιμα· + " 1x ἕτοιμοί + " 3x ἕτοιμοι + " 2x ἕτοιμοι, + " 1x ἕτοιμον· + " 1x ἕτοιμος. + " 2x ἕτοιμός + " 145x ἕως + " 5x Ἐάν + " 1x Ἐβάστασαν + " 1x Ἐβλασφήμησεν· + " 1x Ἐβουλόμην + " 34x Ἐγένετο + " 1x Ἐγένοντο + " 1x Ἐγέρθητε + " 1x Ἐγίνετο + " 1x Ἐγγύς + " 1x Ἐγείρεσθε, + " 1x Ἐγερθήσεται + " 2x Ἐγερθεὶς + " 1x Ἐγόγγυζον + " 22x Ἐγώ + " 1x Ἐγώ, + " 36x Ἐγὼ + " 1x Ἐδόθη + " 2x Ἐζήτουν + " 1x Ἐζεκίαν, + " 1x Ἐζεκίας + " 1x Ἐθεώρουν + " 11x Ἐκ + " 2x Ἐκάθισεν + " 1x Ἐκδίκησόν + " 1x Ἐκεῖ· + " 1x Ἐκεῖθεν + " 1x Ἐκεῖνός + " 1x Ἐκριζώθητι + " 1x Ἐλέησον + " 1x Ἐλέησόν + " 1x Ἐλήλυθεν + " 3x Ἐλαιῶν + " 3x Ἐλαιῶν, + " 3x Ἐλαιῶν. + " 1x Ἐλαιῶν· + " 1x Ἐλαιῶνος, + " 1x Ἐλαμεῖται, + " 1x Ἐλεάζαρ + " 1x Ἐλεάζαρ, + " 1x Ἐλεήσω + " 5x Ἐλεισάβετ + " 2x Ἐλεισάβετ, + " 2x Ἐλεισάβετ. + " 1x Ἐλεύθεροι + " 1x Ἐλεύθερος + " 1x Ἐλεύσομαι + " 1x Ἐλεύσονται + " 1x Ἐλθέ. + " 1x Ἐλθόντων + " 3x Ἐλθὼν + " 1x Ἐλιέζερ + " 1x Ἐλιακείμ, + " 2x Ἐλιακεὶμ + " 1x Ἐλιούδ, + " 1x Ἐλιοὺδ + " 1x Ἐλμαδὰμ + " 1x Ἐλογίσθη + " 1x Ἐλπίζω + " 2x Ἐλωῒ + " 1x Ἐλύμας + " 1x Ἐμάχοντο + " 1x Ἐμίσησάν + " 1x Ἐμαρτύρει + " 1x Ἐμμανουήλ, + " 1x Ἐμμαοῦς, + " 1x Ἐμμὼρ + " 4x Ἐμοὶ + " 1x Ἐμὸν + " 51x Ἐν + " 1x Ἐνέγκατε + " 1x Ἐνέμεινεν + " 1x Ἐνδύσασθε + " 1x Ἐνευλογηθήσονται + " 1x Ἐνοικήσω + " 1x Ἐνορκίζω + " 2x Ἐντραπήσονται + " 1x Ἐνὼς + " 2x Ἐνὼχ + " 7x Ἐξ + " 1x Ἐξέλθατε + " 1x Ἐξήγαγεν + " 1x Ἐξανέστησαν + " 1x Ἐξεκλάσθησαν + " 1x Ἐξερχόμενοι + " 1x Ἐξιόντων + " 2x Ἐξομολογοῦμαί + " 1x Ἐξορκίζω + " 2x Ἐξῆλθεν + " 1x Ἐπέτρεψεν + " 1x Ἐπίσκοπον + " 1x Ἐπίστευσα, + " 2x Ἐπίστευσεν + " 1x Ἐπίτρεψόν + " 1x Ἐπαίνετον + " 1x Ἐπαινῶ + " 1x Ἐπανάγαγε + " 1x Ἐπαφροδίτου + " 1x Ἐπαφρόδιτον + " 1x Ἐπαφρᾶ + " 2x Ἐπαφρᾶς + " 1x Ἐπειδήπερ + " 2x Ἐπειδὴ + " 1x Ἐπερωτήσω + " 1x Ἐπερωτηθεὶς + " 1x Ἐπερωτῶ + " 1x Ἐπεσκέψατο + " 1x Ἐπεφάνη + " 1x Ἐπεχείρησαν + " 1x Ἐπεὶ + " 1x Ἐπηρώτων + " 1x Ἐπιθυμίᾳ + " 2x Ἐπικατάρατος + " 1x Ἐπικουρίων + " 1x Ἐπιμελήθητι + " 1x Ἐπιμενόντων + " 1x Ἐπιστάτα + " 5x Ἐπιστάτα, + " 1x Ἐπιστρέψαντες + " 1x Ἐπιτιμήσαι + " 1x Ἐπιτρέπεταί + " 1x Ἐποίησεν + " 1x Ἐπροφήτευσεν + " 2x Ἐπὶ + " 1x Ἐπῆλθαν + " 3x Ἐπ’ + " 1x Ἐρεῖς + " 1x Ἐρρέθη + " 1x Ἐρυθρὰν + " 1x Ἐρυθρᾷ + " 1x Ἐρχόμεθα + " 2x Ἐρωτήσω + " 1x Ἐρωτῶ + " 2x Ἐρωτῶμεν + " 1x Ἐσίγησεν + " 1x Ἐσθιόντων + " 1x Ἐσκόρπισεν, + " 1x Ἐσλεὶ + " 1x Ἐσρώμ, + " 2x Ἐσρὼμ + " 1x Ἐτρέχετε + " 1x Ἐφάγομεν + " 1x Ἐφέσιοι, + " 1x Ἐφέσιον + " 1x Ἐφέσου + " 1x Ἐφέσου, + " 3x Ἐφέσῳ + " 2x Ἐφέσῳ, + " 1x Ἐφέσῳ] + " 1x Ἐφανέρωσά + " 1x Ἐφεσίων + " 2x Ἐφεσίων. + " 1x Ἐφραὶμ + " 1x Ἐφφαθά, + " 1x Ἐφώνησαν + " 1x Ἐφ’ + " 2x Ἐχάρην + " 1x Ἐχθρὸς + " 1x Ἐχθὲς + " 29x Ἐὰν + " 1x Ἐᾶτε + " 1x Ἑαυτοὺς + " 3x Ἑβραΐδι + " 1x Ἑβραίους, + " 1x Ἑβραίων, + " 1x Ἑβραϊστί + " 1x Ἑβραϊστί, + " 1x Ἑβραϊστί· + " 4x Ἑβραϊστὶ + " 1x Ἑβραῖοί + " 1x Ἑβραῖος + " 1x Ἑκατοντάρχου + " 2x Ἑκατὸν + " 1x Ἑκουσίως + " 1x Ἑλισαίου + " 1x Ἑλλάδα, + " 3x Ἑλλήνων + " 1x Ἑλληνίδων + " 1x Ἑλληνίς, + " 1x Ἑλληνικῇ + " 1x Ἑλληνιστάς· + " 1x Ἑλληνιστί. + " 1x Ἑλληνιστὶ + " 1x Ἑλληνιστῶν + " 1x Ἑνὶ + " 1x Ἑνὼχ + " 1x Ἑπτά, + " 2x Ἑπτά. + " 1x Ἑρμογένης. + " 1x Ἑρμᾶν, + " 2x Ἑρμῆν, + " 1x Ἑστὼς + " 3x Ἑταῖρε, + " 1x Ἑτοίμασον + " 4x Ἑτοιμάσατε + " 1x Ἑωράκαμεν + " 1x Ἑώρακα + " 2x Ἓν + " 1x Ἓξ + " 1x Ἔα, + " 1x Ἔβερ + " 8x Ἔγειρε + " 1x Ἔγειρε, + " 2x Ἔγνω + " 1x Ἔγνωκα + " 1x Ἔγραψά + " 1x Ἔγραψα + " 2x Ἔδει + " 1x Ἔδωκεν + " 1x Ἔκβαλε + " 2x Ἔκτεινον + " 1x Ἔκτεινόν + " 1x Ἔκφοβός + " 11x Ἔλεγεν + " 1x Ἔλεγον + " 2x Ἔλεος + " 1x Ἔμεινεν + " 1x Ἔνοχος + " 6x Ἔξελθε + " 2x Ἔξεστιν + " 2x Ἔπειτα + " 2x Ἔπεσεν + " 1x Ἔπρεπεν + " 1x Ἔραστον, + " 2x Ἔραστος + " 2x Ἔρημός + " 1x Ἔρρωσθε. + " 1x Ἔρχεσθε + " 1x Ἔρχεσθε, + " 1x Ἔρχεται + " 1x Ἔρχου + " 2x Ἔρχου, + " 6x Ἔρχου. + " 1x Ἔσεσθε + " 1x Ἔσονται + " 1x Ἔσται + " 4x Ἔστιν + " 1x Ἔστω + " 1x Ἔστωσαν + " 12x Ἔτι + " 3x Ἔφεσον + " 4x Ἔφεσον, + " 1x Ἔφεσον. + " 1x Ἔφη + " 1x Ἔχετέ + " 2x Ἔχετε + " 2x Ἔχομεν + " 3x Ἔχοντες + " 1x Ἔχουσι + " 1x Ἕκαστος + " 3x Ἕλλην + " 1x Ἕλλην, + " 1x Ἕλληνές + " 2x Ἕλληνας + " 1x Ἕλληνας, + " 2x Ἕλληνας. + " 1x Ἕλληνας; + " 1x Ἕλληνες + " 1x Ἕλληνες, + " 2x Ἕλληνι. + " 1x Ἕλληνος, + " 2x Ἕλληνος· + " 1x Ἕλλησίν + " 3x Ἕλλησιν + " 1x Ἕλλησιν, + " 1x Ἕν + " 1x Ἕνεκα + " 1x Ἕνεκεν + " 2x Ἕως + " 2x ἠγάγετε + " 4x ἠγάπα + " 1x ἠγάπα, + " 1x ἠγάπησά + " 2x ἠγάπησάς + " 1x ἠγάπησέν + " 2x ἠγάπησα + " 1x ἠγάπησα, + " 1x ἠγάπησα· + " 3x ἠγάπησαν + " 2x ἠγάπησας + " 1x ἠγάπησας. + " 10x ἠγάπησεν + " 1x ἠγάπησεν, + " 11x ἠγέρθη + " 2x ἠγέρθη, + " 2x ἠγέρθη. + " 1x ἠγέρθησαν + " 1x ἠγέρθησαν· + " 1x ἠγαλλίασεν + " 4x ἠγαλλιάσατο + " 2x ἠγανάκτησαν + " 1x ἠγανάκτησαν, + " 1x ἠγανάκτησεν + " 1x ἠγαπήκαμεν + " 1x ἠγαπηκόσι + " 1x ἠγαπημένην + " 2x ἠγαπημένην· + " 2x ἠγαπημένοι + " 1x ἠγαπημένοι, + " 1x ἠγαπημένοις + " 1x ἠγαπᾶτέ + " 1x ἠγαπᾶτε + " 1x ἠγγάρευσαν + " 2x ἠγνόουν + " 1x ἠγοράσθησαν + " 1x ἠγοράσθητε + " 1x ἠγοράσθητε· + " 1x ἠγορασμένοι + " 1x ἠγωνίζοντο, + " 1x ἠγόραζον, + " 1x ἠγόρασα + " 1x ἠγόρασα, + " 2x ἠγόρασαν + " 1x ἠγόρασας + " 1x ἠγόρασεν + " 1x ἠγώνισμαι, + " 1x ἠδίκηκα, + " 1x ἠδίκησέν + " 1x ἠδίκησεν, + " 1x ἠδικήσαμεν, + " 1x ἠδικήσατε· + " 1x ἠδυνάσθη + " 2x ἠδυνήθημεν + " 1x ἠδυνήθην + " 2x ἠδυνήθησαν + " 1x ἠδυνήθησαν. + " 1x ἠδυνήθητε + " 3x ἠδύναντο + " 3x ἠδύνατο + " 1x ἠδύνατο· + " 3x ἠθέλησα + " 2x ἠθέλησαν + " 1x ἠθέλησαν· + " 1x ἠθέλησας + " 1x ἠθέλησας, + " 6x ἠθέλησεν + " 1x ἠθέλησεν, + " 1x ἠθέλησεν. + " 1x ἠθέτησαν + " 1x ἠθέτησαν· + " 1x ἠθελήσαμεν + " 1x ἠθελήσατε + " 2x ἠθελήσατε. + " 1x ἠθροισμένους + " 1x ἠκαιρεῖσθε + " 1x ἠκολουθήκαμέν + " 2x ἠκολουθήσαμέν + " 12x ἠκολούθει + " 1x ἠκολούθει, + " 18x ἠκολούθησαν + " 6x ἠκολούθησεν + " 1x ἠκολούθησεν· + " 2x ἠκολούθουν + " 8x ἠκούσαμεν + " 1x ἠκούσαμεν, + " 1x ἠκούσαμεν. + " 1x ἠκούσατέ + " 14x ἠκούσατε + " 3x ἠκούσατε, + " 1x ἠκούσατε. + " 2x ἠκούσατε· + " 2x ἠκούσθη + " 1x ἠκούσθη, + " 2x ἠκρίβωσεν + " 1x ἠκυρώσατε + " 1x ἠλάττωσας + " 1x ἠλέησέν + " 1x ἠλέησα; + " 1x ἠλέησεν + " 1x ἠλαττωμένον + " 1x ἠλαττόνησεν. + " 1x ἠλαύνετο + " 1x ἠλεήθημεν, + " 2x ἠλεήθην, + " 1x ἠλεήθητε + " 1x ἠλεημένοι, + " 1x ἠλεημένος + " 1x ἠλευθέρωσέν + " 1x ἠλευθέρωσεν· + " 1x ἠλπίζομεν + " 2x ἠλπίκαμεν + " 1x ἠλπίκατε. + " 1x ἠλπίσαμεν, + " 1x ἠλπικέναι + " 1x ἠλπικότες + " 1x ἠμέλησα + " 2x ἠμφιεσμένον; + " 1x ἠμύνατο, + " 1x ἠνάγκαζον + " 2x ἠνάγκασεν + " 2x ἠνέχθη + " 2x ἠνέῳξέν + " 1x ἠναγκάσατε. + " 1x ἠναγκάσθη + " 1x ἠναγκάσθην + " 1x ἠνεῳγμένη + " 1x ἠνεῳγμένην, + " 1x ἠνεῳγμένον + " 1x ἠνεῳγμένον, + " 1x ἠνεῳγμένον. + " 1x ἠνεῴχθησάν + " 3x ἠνεῴχθησαν + " 3x ἠνοίγη + " 1x ἠνοίγησαν + " 1x ἠνοίχθη, + " 1x ἠνοίχθησαν· + " 1x ἠντληκότες + " 1x ἠξίου, + " 1x ἠξίωσα + " 1x ἠξίωται + " 1x ἠπίστησάν + " 1x ἠπίστησαν. + " 1x ἠπίστουν + " 1x ἠπίστουν· + " 1x ἠπατήθη, + " 1x ἠπείθησαν + " 1x ἠπείθουν + " 1x ἠπείλει, + " 1x ἠπειθήσατε + " 1x ἠπόρει, + " 1x ἠρέθισεν + " 1x ἠρίθμηνται. + " 1x ἠρίστησαν, + " 1x ἠργάζοντο· + " 1x ἠργάσαντο + " 3x ἠργάσατο + " 1x ἠργασάμεθα, + " 1x ἠρημωμένην + " 1x ἠρημώθη + " 1x ἠρημώθη. + " 1x ἠριθμημέναι + " 1x ἠρμένον + " 1x ἠρνήσαντο + " 1x ἠρνήσασθε + " 1x ἠρνήσασθε, + " 7x ἠρνήσατο + " 1x ἠρνήσατο, + " 2x ἠρνήσω + " 1x ἠρνεῖτο. + " 1x ἠρνημένοι· + " 1x ἠρτυμένος, + " 5x ἠρώτα + " 8x ἠρώτησαν + " 6x ἠρώτησεν + " 1x ἠρώτουν + " 7x ἠρώτων + " 1x ἠσέβησαν + " 2x ἠσθένει + " 1x ἠσθένει. + " 1x ἠσθένησα + " 1x ἠσθένησεν + " 1x ἠσθένησεν. + " 1x ἠσθενήκαμεν. + " 1x ἠσπάζοντο + " 1x ἠσπάσατο + " 1x ἠστόχησαν, + " 1x ἠστόχησαν. + " 1x ἠσφαλίσαντο + " 1x ἠσφαλίσατο + " 1x ἠτίμασαν. + " 1x ἠτακτήσαμεν + " 1x ἠτιμάσατε + " 1x ἠχρεώθησαν· + " 1x ἠχῶν + " 941x ἡ + " 1x ἡγήσασθε, + " 3x ἡγήσατο + " 1x ἡγίασεν + " 2x ἡγίασται + " 1x ἡγείσθωσαν, + " 1x ἡγεμονίας + " 2x ἡγεμονεύοντος + " 1x ἡγεμόνα + " 1x ἡγεμόνα, + " 2x ἡγεμόνας + " 2x ἡγεμόνι + " 1x ἡγεμόνι, + " 1x ἡγεμόνι. + " 2x ἡγεμόνος + " 1x ἡγεμόνος, + " 1x ἡγεμόνος. + " 1x ἡγεμόνος· + " 1x ἡγεμόνων + " 2x ἡγεμόσιν + " 4x ἡγεμὼν + " 1x ἡγεῖσθαι + " 2x ἡγεῖσθε, + " 2x ἡγησάμενος + " 2x ἡγησάμην + " 1x ἡγιάσθη, + " 1x ἡγιάσθητε, + " 1x ἡγιασμένη + " 2x ἡγιασμένοι + " 3x ἡγιασμένοις + " 1x ἡγιασμένον, + " 1x ἡγνικότες + " 1x ἡγνισμένον + " 1x ἡγουμένοις + " 2x ἡγουμένους + " 1x ἡγουμένων + " 2x ἡγούμενοι + " 1x ἡγούμενον + " 2x ἡγούμενος + " 1x ἡγούμενος, + " 2x ἡγοῦμαι + " 1x ἡγοῦμαι, + " 1x ἡγοῦνται, + " 2x ἡδέως + " 1x ἡδέως. + " 2x ἡδοναῖς + " 1x ἡδονὴν + " 2x ἡδονῶν + " 2x ἡδύοσμον + " 1x ἡλίκην + " 2x ἡλίκον + " 7x ἡλίου + " 3x ἡλίου, + " 2x ἡλίου. + " 1x ἡλίῳ + " 1x ἡλίῳ, + " 3x ἡλικίαν + " 1x ἡλικίας + " 1x ἡλικίας, + " 2x ἡλικίᾳ + " 20x ἡμέρα + " 2x ἡμέρα, + " 1x ἡμέρα. + " 25x ἡμέραι + " 1x ἡμέραι, + " 41x ἡμέραις + " 2x ἡμέραις, + " 5x ἡμέραις. + " 1x ἡμέραις· + " 45x ἡμέραν + " 7x ἡμέραν, + " 4x ἡμέραν. + " 2x ἡμέραν· + " 99x ἡμέρας + " 11x ἡμέρας, + " 12x ἡμέρας. + " 1x ἡμέρας; + " 3x ἡμέρας· + " 70x ἡμέρᾳ + " 4x ἡμέρᾳ, + " 8x ἡμέρᾳ. + " 1x ἡμέρᾳ· + " 1x ἡμέρᾳ·— + " 1x ἡμέτεροι + " 1x ἡμέτερον + " 1x ἡμίσειά + " 1x ἡμίσους + " 1x ἡμαρτήκαμεν, + " 21x ἡμερῶν + " 1x ἡμετέρα + " 1x ἡμετέραις + " 1x ἡμετέραν + " 1x ἡμετέρας + " 1x ἡμετέροις + " 1x ἡμετέρων + " 105x ἡμεῖς + " 5x ἡμεῖς, + " 3x ἡμεῖς. + " 3x ἡμεῖς; + " 1x ἡμιθανῆ. + " 1x ἡμιώριον. + " 122x ἡμᾶς + " 18x ἡμᾶς, + " 15x ἡμᾶς. + " 5x ἡμᾶς; + " 6x ἡμᾶς· + " 117x ἡμῖν + " 27x ἡμῖν, + " 1x ἡμῖν,— + " 16x ἡμῖν. + " 2x ἡμῖν; + " 4x ἡμῖν· + " 268x ἡμῶν + " 66x ἡμῶν, + " 42x ἡμῶν. + " 6x ἡμῶν; + " 15x ἡμῶν· + " 2x ἡνίκα + " 1x ἡρμοσάμην + " 1x ἡρπάγη + " 1x ἡρπάσθη + " 1x ἡσσώθητε + " 1x ἡσυχάζειν + " 1x ἡσυχάσαμεν + " 1x ἡσυχίαν. + " 1x ἡσυχίας + " 1x ἡσυχίου + " 1x ἡσυχίᾳ + " 1x ἡσυχίᾳ. + " 1x ἡσύχασαν + " 1x ἡσύχασαν, + " 1x ἡσύχασαν. + " 1x ἡσύχιον + " 1x ἡτοίμακα, + " 6x ἡτοίμασαν + " 1x ἡτοίμασας + " 1x ἡτοίμασας, + " 3x ἡτοίμασεν + " 1x ἡτοίμασται + " 1x ἡτοίμασται. + " 2x ἡτοιμασμένην + " 1x ἡτοιμασμένοι + " 1x ἡτοιμασμένοις + " 2x ἡτοιμασμένον + " 1x ἡτοιμασμένον. + " 1x ἡττῶνται, + " 330x ἢ + " 4x ἣ + " 95x ἣν + " 5x ἤ + " 2x ἤ· + " 7x ἤγαγεν + " 12x ἤγαγον + " 1x ἤγαγον, + " 1x ἤγγιζεν + " 7x ἤγγικεν + " 4x ἤγγικεν. + " 1x ἤγγικεν· + " 2x ἤγγισαν + " 6x ἤγγισεν + " 1x ἤγγισεν, + " 1x ἤγειραν + " 20x ἤγειρεν + " 1x ἤγειρεν, + " 1x ἤγεσθε + " 1x ἤγετο + " 55x ἤδη + " 2x ἤδη, + " 2x ἤδη. + " 13x ἤθελεν + " 1x ἤθελεν, + " 1x ἤθελες· + " 5x ἤθελον + " 1x ἤθελον, + " 2x ἤθελον. + " 1x ἤθη + " 1x ἤκμασαν + " 3x ἤκουεν + " 1x ἤκουεν, + " 1x ἤκουεν. + " 5x ἤκουον + " 1x ἤκουσάς + " 34x ἤκουσα + " 1x ἤκουσα, + " 11x ἤκουσαν + " 2x ἤκουσαν, + " 2x ἤκουσαν. + " 2x ἤκουσαν; + " 2x ἤκουσας + " 1x ἤκουσας, + " 1x ἤκουσας. + " 12x ἤκουσεν + " 2x ἤκουσεν, + " 1x ἤλειφεν + " 1x ἤλειφον + " 1x ἤλειψας· + " 2x ἤλειψεν + " 1x ἤλθαμεν. + " 1x ἤλθατε + " 9x ἤλθομεν + " 1x ἤλλαξαν + " 1x ἤλπιζέν + " 1x ἤλπικεν + " 5x ἤμεθα + " 11x ἤμελλεν + " 1x ἤμελλον + " 13x ἤμην + " 2x ἤμην. + " 1x ἤνεγκα + " 1x ἤνεγκαν + " 2x ἤνεγκαν. + " 5x ἤνεγκεν + " 2x ἤνοιξέν + " 1x ἤνοιξε + " 14x ἤνοιξεν + " 1x ἤπερ + " 1x ἤπιοι + " 1x ἤπιον + " 1x ἤρατε + " 2x ἤρατε; + " 1x ἤρεμον + " 3x ἤρεσεν + " 1x ἤρεσεν· + " 1x ἤρεσκον, + " 2x ἤρθη + " 1x ἤρθη· + " 1x ἤρνηται + " 18x ἤρξαντο + " 1x ἤρξαντό + " 39x ἤρξατο + " 4x ἤρχετο + " 6x ἤρχοντο + " 1x ἤρχου, + " 2x ἤσθιον + " 2x ἤσθιον, + " 1x ἤτοι + " 2x ἤτω + " 2x ἤφιεν + " 1x ἤχθη + " 1x ἤχθη, + " 1x ἤχους + " 1x ἤχῳ + " 4x ἥ + " 2x ἥγημαι + " 1x ἥδιστα + " 2x ἥκει + " 2x ἥκει, + " 1x ἥκω + " 1x ἥκω, + " 1x ἥκω· + " 1x ἥλατο + " 2x ἥλιον + " 1x ἥλιον, + " 1x ἥλιον· + " 11x ἥλιος + " 3x ἥλιος, + " 2x ἥλων + " 1x ἥμαρτεν + " 1x ἥμαρτεν, + " 1x ἥμαρτεν· + " 1x ἥμαρτες, + " 3x ἥμαρτον + " 2x ἥμαρτον, + " 1x ἥμαρτον. + " 1x ἥμαρτον· + " 2x ἥμισυ + " 1x ἥμισυ, + " 3x ἥν + " 6x ἥξει + " 1x ἥξει, + " 6x ἥξουσιν + " 2x ἥξω + " 1x ἥξω. + " 1x ἥρπασεν + " 39x ἥτις + " 2x ἥττημα + " 1x ἥττηται, + " 2x ἥψαντο + " 13x ἥψατο + " 1x ἥψατο; + " 1x ἦγεν + " 6x ἦλθαν + " 1x ἦλθαν, + " 1x ἦλθε + " 82x ἦλθεν + " 5x ἦλθεν, + " 3x ἦλθες + " 56x ἦλθον + " 3x ἦλθον, + " 1x ἦλθον; + " 4x ἦμεν + " 2x ἦμεν, + " 275x ἦν + " 13x ἦν, + " 11x ἦν. + " 1x ἦν; + " 2x ἦν· + " 10x ἦραν + " 7x ἦρεν + " 1x ἦρκεν + " 6x ἦς + " 77x ἦσαν + " 3x ἦσαν, + " 4x ἦσαν. + " 2x ἦσαν· + " 2x ἦσθα + " 12x ἦτε + " 4x ἦτε, + " 1x ἦτε. + " 2x ἦτε· + " 2x ἦχος + " 49x ἧς + " 2x ἧσσον + " 32x Ἠ + " 2x Ἠγέρθη + " 1x Ἠγαπημένῳ, + " 2x Ἠκολούθει + " 5x Ἠκούσατε + " 1x Ἠκούσθη + " 1x Ἠλεία, + " 4x Ἠλείαν + " 3x Ἠλείαν, + " 15x Ἠλείας + " 1x Ἠλείας, + " 1x Ἠλείου + " 3x Ἠλείᾳ + " 1x Ἠλείᾳ, + " 3x Ἠλεὶ + " 1x Ἠλικίαν + " 1x Ἠμέρας + " 1x Ἠμερῶν + " 11x Ἠμεῖς + " 1x Ἠμῖν + " 1x Ἠρώτα + " 1x Ἠρῳδίωνα + " 2x Ἠρῳδιάδα + " 3x Ἠρῳδιάδος + " 3x Ἠρῳδιανῶν + " 1x Ἠρῳδιὰς + " 2x Ἠρῴδην, + " 21x Ἠρῴδης + " 3x Ἠρῴδης, + " 1x Ἠρῴδης· + " 9x Ἠρῴδου + " 2x Ἠρῴδου, + " 1x Ἠρῴδου. + " 1x Ἠρῴδου· + " 2x Ἠρῴδῃ + " 1x Ἠρῴδῃ, + " 1x Ἠσαΐαν + " 1x Ἠσαΐαν. + " 10x Ἠσαΐας + " 8x Ἠσαΐου + " 1x Ἠσαΐου, + " 1x Ἠσαΐᾳ + " 1x Ἠσαῦ + " 1x Ἠσαῦ, + " 1x Ἠσαῦ. + " 6x Ἢ + " 1x Ἢρ + " 1x Ἤγαγεν + " 1x Ἤγγιζεν + " 2x Ἤγγικεν + " 1x Ἤγοντο + " 1x Ἤδη + " 2x Ἤκουον + " 2x Ἤκουσαν + " 2x Ἤκουσεν + " 2x Ἤρξατο + " 1x Ἥδιστα + " 1x Ἥμαρτον + " 2x Ἥξει + " 1x Ἥψατό + " 2x Ἦλθεν + " 1x Ἦλθον + " 2x Ἦμεν + " 13x Ἦν + " 2x Ἦραν + " 8x Ἦσαν + " 3x ἰάθη + " 1x ἰάθη, + " 1x ἰάθητε. + " 4x ἰάσατο + " 1x ἰάσεις + " 1x ἰάσεως. + " 1x ἰάσηται + " 3x ἰάσομαι + " 2x ἰάσπιδι + " 1x ἰαθήσεται + " 1x ἰαθήτω + " 1x ἰαθεὶς + " 1x ἰαθῆναι + " 1x ἰαθῆτε. + " 1x ἰαθῇ + " 1x ἰαμάτων + " 1x ἰαμάτων, + " 1x ἰαμάτων; + " 3x ἰατροῦ + " 1x ἰατρὸς + " 1x ἰατρῶν + " 2x ἰδίαις + " 20x ἰδίαν + " 1x ἰδίαν, + " 2x ἰδίαν. + " 1x ἰδίαν· + " 6x ἰδίας + " 9x ἰδίοις + " 1x ἰδίοις· + " 10x ἰδίου + " 1x ἰδίου. + " 5x ἰδίους + " 7x ἰδίων + " 12x ἰδίᾳ + " 6x ἰδίῳ + " 1x ἰδίῳ, + " 28x ἰδεῖν + " 2x ἰδεῖν, + " 3x ἰδεῖν. + " 4x ἰδεῖν; + " 1x ἰδεῖν· + " 1x ἰδιώτης + " 1x ἰδιώτης, + " 1x ἰδιώτου + " 1x ἰδιῶται + " 1x ἰδιῶται, + " 2x ἰδού + " 141x ἰδοὺ + " 6x ἰδοῦσα + " 40x ἰδόντες + " 1x ἰδών + " 1x ἰδών, + " 52x ἰδὼν + " 1x ἰκμάδα. + " 1x ἰουδαΐζειν; + " 1x ἰοῦ + " 1x ἰσάγγελοι + " 2x ἰσχυρά, + " 1x ἰσχυραί, + " 1x ἰσχυροί + " 1x ἰσχυροί· + " 2x ἰσχυροὶ + " 2x ἰσχυροῦ + " 1x ἰσχυρόν, + " 1x ἰσχυρότεροι + " 1x ἰσχυρότερον + " 1x ἰσχυρότερος + " 3x ἰσχυρότερός + " 1x ἰσχυρὰ + " 1x ἰσχυρὰν + " 3x ἰσχυρὸν + " 3x ἰσχυρὸς + " 1x ἰσχυρᾶς + " 1x ἰσχυρᾷ + " 1x ἰσχυρῶν + " 1x ἰσχυρῶν, + " 4x ἰσχύει + " 1x ἰσχύειν + " 2x ἰσχύοντες + " 1x ἰσχύοντος + " 5x ἰσχύος + " 1x ἰσχύος, + " 2x ἰσχύσαμεν + " 1x ἰσχύσατε + " 1x ἰσχύσουσιν. + " 1x ἰσχύω + " 1x ἰσχύω, + " 2x ἰσχύϊ + " 1x ἰσχὺν + " 1x ἰσχὺς + " 1x ἰσότης, + " 1x ἰσότητα + " 1x ἰσότητος + " 1x ἰσότιμον + " 1x ἰσόψυχον, + " 3x ἰχθύας + " 2x ἰχθύας, + " 2x ἰχθύας. + " 1x ἰχθύδια + " 1x ἰχθύδια. + " 1x ἰχθύες + " 1x ἰχθύν, + " 2x ἰχθύος + " 3x ἰχθύων + " 4x ἰχθύων. + " 2x ἰχθὺν + " 1x ἰώμενος + " 2x ἰὸς + " 1x ἰᾶσθαι + " 1x ἰᾶσθαι, + " 1x ἰᾶταί + " 1x ἰᾶτο + " 1x ἰᾶτο. + " 1x ἰῶτα + " 1x ἱδρὼς + " 1x ἱεράτευμα + " 1x ἱεράτευμα, + " 2x ἱερέα + " 2x ἱερέων + " 1x ἱερατείαν + " 1x ἱερατείας + " 1x ἱερατεύειν + " 2x ἱερεύς + " 1x ἱερεύς, + " 8x ἱερεὺς + " 1x ἱερεῖ + " 2x ἱερεῖ, + " 8x ἱερεῖς + " 2x ἱερεῖς, + " 1x ἱερεῖς; + " 1x ἱερεῦσιν + " 1x ἱερεῦσιν. + " 1x ἱεροπρεπεῖς, + " 1x ἱεροσυλεῖς; + " 1x ἱεροσύλους + " 1x ἱερουργοῦντα + " 10x ἱεροῦ + " 7x ἱεροῦ, + " 2x ἱεροῦ. + " 1x ἱερωσύνην· + " 2x ἱερωσύνης + " 1x ἱερόθυτόν + " 1x ἱερόν + " 2x ἱερόν, + " 3x ἱερόν· + " 2x ἱερὰ + " 15x ἱερὸν + " 25x ἱερῷ + " 5x ἱερῷ, + " 2x ἱερῷ· + " 1x ἱκάνωσεν + " 1x ἱκαναί, + " 1x ἱκαναὶ + " 1x ἱκαναῖς + " 1x ἱκανοί + " 1x ἱκανοί. + " 1x ἱκανούς. + " 3x ἱκανοὶ + " 1x ἱκανοὺς + " 1x ἱκανοῖς· + " 1x ἱκανοῦ + " 1x ἱκανόν + " 1x ἱκανόν, + " 1x ἱκανός + " 1x ἱκανός; + " 1x ἱκανότης + " 1x ἱκανώσαντι + " 1x ἱκανὰ + " 1x ἱκανὰς + " 1x ἱκανὰς, + " 6x ἱκανὸν + " 8x ἱκανὸς + " 3x ἱκανῶν + " 2x ἱκανῷ + " 1x ἱκετηρίας + " 1x ἱλάσθητί + " 1x ἱλάσκεσθαι + " 1x ἱλαρότητι. + " 1x ἱλαρὸν + " 1x ἱλασμός + " 1x ἱλασμὸν + " 1x ἱλαστήριον + " 1x ἱλαστήριον· + " 3x ἱμάντα + " 1x ἱμάτιά + " 25x ἱμάτια + " 3x ἱμάτια, + " 12x ἱμάτιον + " 1x ἱμάτιον, + " 1x ἱμάτιον. + " 1x ἱμάτιον· + " 1x ἱμάτιόν + " 3x ἱματίοις + " 7x ἱματίου + " 1x ἱματίου, + " 2x ἱματίων + " 1x ἱματίων; + " 1x ἱματίῳ + " 2x ἱματισμένον + " 1x ἱματισμοῦ + " 1x ἱματισμόν + " 1x ἱματισμὸς + " 2x ἱματισμῷ + " 1x ἱμᾶσιν, + " 2x ἱππεῖς + " 1x ἱππικοῦ + " 1x ἱστάνομεν. + " 1x ἱστορῆσαι + " 1x ἴασιν + " 2x ἴασπις, + " 1x ἴαται + " 17x ἴδε + " 2x ἴδε. + " 3x ἴδετε + " 1x ἴδετε, + " 1x ἴδετε. + " 1x ἴδητέ + " 8x ἴδητε + " 1x ἴδητε, + " 1x ἴδητε. + " 1x ἴδητε· + " 6x ἴδια + " 1x ἴδια, + " 2x ἴδια. + " 1x ἴδιοι + " 17x ἴδιον + " 1x ἴδιον. + " 1x ἴδιος + " 1x ἴδω + " 1x ἴδω. + " 1x ἴδω· + " 5x ἴδωμεν + " 8x ἴδωσιν + " 1x ἴδωσιν, + " 5x ἴδῃ + " 1x ἴδῃς + " 2x ἴσα + " 1x ἴσα. + " 1x ἴσαι + " 1x ἴσασι + " 1x ἴση + " 1x ἴσην + " 4x ἴσθι + " 1x ἴσθι, + " 1x ἴσον + " 1x ἴσους + " 2x ἴστε + " 1x ἴσχυεν + " 1x ἴσχυεν. + " 3x ἴσχυον + " 2x ἴσχυσαν + " 1x ἴσχυσαν, + " 1x ἴσχυσαν. + " 1x ἴσχυσας + " 4x ἴσχυσεν + " 1x ἴσως + " 2x ἴχνεσιν + " 1x ἴχνεσιν; + " 1x ἵλεως + " 666x ἵνα + " 2x ἵπποις + " 5x ἵππος + " 2x ἵππου + " 1x ἵππους + " 6x ἵππων + " 1x ἵππων, + " 2x ἶρις + " 2x Ἰάειρος, + " 15x Ἰάκωβον + " 1x Ἰάκωβον, + " 11x Ἰάκωβος + " 1x Ἰάννης + " 1x Ἰάρετ + " 1x Ἰάσονα + " 2x Ἰάσονος + " 1x Ἰάσων + " 1x Ἰάσων· + " 5x Ἰακώβ, + " 4x Ἰακώβ. + " 2x Ἰακώβ; + " 1x Ἰακώβ· + " 7x Ἰακώβου + " 3x Ἰακώβου, + " 2x Ἰακώβου. + " 1x Ἰακώβου· + " 1x Ἰακώβῳ + " 1x Ἰακώβῳ, + " 15x Ἰακὼβ + " 1x Ἰαμβρῆς + " 1x Ἰανναὶ + " 1x Ἰατρέ, + " 1x Ἰδουμαίας + " 57x Ἰδοὺ + " 1x Ἰδόντες + " 5x Ἰδὼν + " 1x Ἰεζάβελ, + " 1x Ἰερειχώ. + " 2x Ἰερειχὼ + " 1x Ἰερεμίου + " 3x Ἰερουσαλήμ, + " 1x Ἰερουσαλήμ. + " 1x Ἰερουσαλήμ· + " 5x Ἰερουσαλὴμ + " 3x Ἰεσσαί, + " 2x Ἰεσσαὶ + " 1x Ἰεφθάε, + " 1x Ἰεχονίαν + " 1x Ἰεχονίας + " 233x Ἰησοῦ + " 40x Ἰησοῦ, + " 41x Ἰησοῦ. + " 12x Ἰησοῦ· + " 78x Ἰησοῦν + " 25x Ἰησοῦν, + " 21x Ἰησοῦν. + " 2x Ἰησοῦν· + " 418x Ἰησοῦς + " 25x Ἰησοῦς, + " 8x Ἰησοῦς. + " 5x Ἰησοῦς· + " 1x Ἰκονίου + " 2x Ἰκονίῳ + " 1x Ἰκονίῳ, + " 1x Ἰκόνιον + " 1x Ἰκόνιον, + " 1x Ἰλλυρικοῦ + " 2x Ἰορδάνην + " 3x Ἰορδάνου + " 6x Ἰορδάνου, + " 2x Ἰορδάνου. + " 2x Ἰορδάνῃ + " 2x Ἰουδαία + " 6x Ἰουδαίαν + " 1x Ἰουδαίαν, + " 1x Ἰουδαίαν. + " 20x Ἰουδαίας + " 5x Ἰουδαίας, + " 1x Ἰουδαίας. + " 1x Ἰουδαίας· + " 21x Ἰουδαίοις + " 2x Ἰουδαίοις, + " 2x Ἰουδαίοις. + " 1x Ἰουδαίοις· + " 4x Ἰουδαίου + " 1x Ἰουδαίου, + " 14x Ἰουδαίους + " 2x Ἰουδαίους, + " 1x Ἰουδαίους· + " 25x Ἰουδαίων + " 21x Ἰουδαίων, + " 5x Ἰουδαίων. + " 8x Ἰουδαίων; + " 5x Ἰουδαίων· + " 10x Ἰουδαίᾳ + " 3x Ἰουδαίῳ + " 1x Ἰουδαϊκοῖς + " 1x Ἰουδαϊκῶς + " 1x Ἰουδαϊσμῷ + " 1x Ἰουδαϊσμῷ, + " 1x Ἰουδαῖοί + " 47x Ἰουδαῖοι + " 9x Ἰουδαῖοι, + " 2x Ἰουδαῖον + " 5x Ἰουδαῖος + " 5x Ἰουδαῖος, + " 3x Ἰουδαῖός + " 1x Ἰουλίαν, + " 1x Ἰουλίῳ + " 1x Ἰουνίαν + " 8x Ἰούδα + " 4x Ἰούδα, + " 1x Ἰούδα· + " 8x Ἰούδαν + " 19x Ἰούδας + " 2x Ἰούδας, + " 1x Ἰούδας; + " 1x Ἰούδᾳ + " 1x Ἰούλιος + " 1x Ἰούστου + " 2x Ἰοῦστος, + " 1x Ἰσαάκ, + " 19x Ἰσαὰκ + " 1x Ἰσκαριώθ, + " 1x Ἰσκαριώτην, + " 3x Ἰσκαριώτης + " 2x Ἰσκαριώτης, + " 1x Ἰσκαριώτου. + " 1x Ἰσκαριώτου· + " 2x Ἰσκαριὼθ, + " 3x Ἰσραήλ + " 12x Ἰσραήλ, + " 15x Ἰσραήλ. + " 2x Ἰσραήλ; + " 5x Ἰσραήλ· + " 1x Ἰσραηλείτης + " 1x Ἰσραηλείτης, + " 1x Ἰσραηλεῖταί + " 1x Ἰσραηλεῖται + " 5x Ἰσραηλεῖται, + " 29x Ἰσραὴλ + " 2x Ἰσραὴλ, + " 1x Ἰσσαχὰρ + " 1x Ἰταλίαν + " 1x Ἰταλίαν, + " 1x Ἰταλίας + " 1x Ἰταλίας. + " 1x Ἰταλικῆς, + " 1x Ἰτουραίας + " 2x Ἰωάνα + " 3x Ἰωάνει + " 29x Ἰωάνην + " 6x Ἰωάνην, + " 1x Ἰωάνην. + " 1x Ἰωάνην· + " 46x Ἰωάνης + " 4x Ἰωάνης, + " 2x Ἰωάνης. + " 1x Ἰωάνης· + " 26x Ἰωάνου + " 6x Ἰωάνου, + " 3x Ἰωάνου. + " 4x Ἰωάνου· + " 1x Ἰωάνῃ + " 1x Ἰωάνῃ, + " 1x Ἰωήλ + " 1x Ἰωαθάμ, + " 1x Ἰωαθὰμ + " 1x Ἰωανὰν + " 3x Ἰωβὴδ + " 1x Ἰωδὰ + " 1x Ἰωνὰμ + " 3x Ἰωνᾶ + " 2x Ἰωνᾶ, + " 2x Ἰωνᾶ. + " 2x Ἰωνᾶς + " 1x Ἰωράμ, + " 1x Ἰωρεὶμ + " 1x Ἰωρὰμ + " 3x Ἰωσήφ, + " 3x Ἰωσήφ. + " 1x Ἰωσαφάτ, + " 1x Ἰωσαφὰτ + " 1x Ἰωσείαν, + " 1x Ἰωσείας + " 27x Ἰωσὴφ + " 2x Ἰωσὴφ, + " 1x Ἰωσὴχ + " 3x Ἰωσῆτος + " 3x Ἰόππην + " 1x Ἰόππην. + " 1x Ἰόππης + " 1x Ἰόππης, + " 4x Ἰόππῃ + " 1x Ἰὼβ + " 1x Ἱεραπόλει. + " 1x Ἱερειχώ, + " 1x Ἱερειχώ. + " 2x Ἱερειχὼ + " 1x Ἱερεμίαν + " 1x Ἱερεμίου + " 1x Ἱεροσολυμειτῶν + " 1x Ἱεροσολυμεῖται + " 9x Ἱεροσολύμοις + " 2x Ἱεροσολύμοις, + " 1x Ἱεροσολύμοις. + " 2x Ἱεροσολύμοις· + " 10x Ἱεροσολύμων + " 1x Ἱεροσολύμων. + " 21x Ἱεροσόλυμα + " 7x Ἱεροσόλυμα, + " 9x Ἱεροσόλυμα. + " 1x Ἱεροσόλυμα· + " 18x Ἱερουσαλήμ, + " 7x Ἱερουσαλήμ. + " 1x Ἱερουσαλήμ; + " 4x Ἱερουσαλήμ· + " 34x Ἱερουσαλὴμ + " 2x Ἱερουσαλὴμ, + " 1x Ἱκανοῦ + " 1x Ἱκανόν + " 15x Ἴδε + " 3x Ἴδετε + " 1x Ἴδετε, + " 1x Ἴστε, + " 1x Ἵλεώς + " 3x Ἵνα + " 1x ὀγδοήκοντα + " 1x ὀγδοήκοντα. + " 1x ὀγδόῃ + " 1x ὀγδόῃ, + " 2x ὀδυνώμενοι + " 1x ὀδυνᾶσαι. + " 1x ὀδυνῶμαι + " 1x ὀδυρμόν, + " 1x ὀδυρμὸς + " 1x ὀδόντα + " 2x ὀδόντας + " 1x ὀδόντες + " 1x ὀδόντος. + " 1x ὀδόντων, + " 6x ὀδόντων. + " 1x ὀδύναις + " 1x ὀδύνη + " 1x ὀθονίοις + " 1x ὀθονίων + " 2x ὀθόνην + " 2x ὀθόνια + " 1x ὀθόνια, + " 1x ὀκνήσῃς + " 1x ὀκνηρέ, + " 1x ὀκνηροί, + " 1x ὀκνηρόν, + " 1x ὀκταήμερος, + " 1x ὀκτώ, + " 8x ὀκτὼ + " 1x ὀκτὼ, + " 4x ὀλίγα + " 1x ὀλίγα, + " 1x ὀλίγα· + " 1x ὀλίγαι. + " 1x ὀλίγας + " 1x ὀλίγας. + " 1x ὀλίγην + " 1x ὀλίγης + " 3x ὀλίγοι + " 1x ὀλίγοι, + " 1x ὀλίγοι. + " 2x ὀλίγοι· + " 1x ὀλίγοις + " 11x ὀλίγον + " 1x ὀλίγον. + " 1x ὀλίγον· + " 2x ὀλίγος + " 1x ὀλίγου + " 2x ὀλίγων + " 1x ὀλίγως + " 3x ὀλίγῳ + " 1x ὀλίγῳ, + " 1x ὀλιγοπιστίαν + " 1x ὀλιγοψύχους, + " 1x ὀλιγόπιστοι, + " 1x ὀλιγόπιστοι. + " 2x ὀλιγόπιστοι; + " 1x ὀλιγώρει + " 1x ὀλοθρευτοῦ. + " 1x ὀλοθρεύων + " 1x ὀλολύζοντες + " 1x ὀλύνθους + " 1x ὀμμάτων + " 3x ὀμνύει + " 1x ὀμνύειν + " 1x ὀμνύετε, + " 1x ὀμνύναι + " 1x ὀμνύουσιν, + " 1x ὀμόσαι + " 1x ὀμόσαι, + " 3x ὀμόσας + " 4x ὀμόσῃ + " 1x ὀμόσῃς, + " 1x ὀνάριον + " 1x ὀναίμην + " 1x ὀνειδίζειν + " 1x ὀνειδίζεσθε + " 1x ὀνειδίζοντος, + " 2x ὀνειδίσωσιν + " 1x ὀνειδιζόντων + " 1x ὀνειδισμοὶ + " 1x ὀνειδισμοῖς + " 3x ὀνειδισμὸν + " 2x ὀνικὸς + " 1x ὀνομάζειν + " 1x ὀνομάζεται, + " 1x ὀνομάζων + " 2x ὀνομάτων + " 1x ὀνομαζέσθω + " 1x ὀνομαζομένου + " 1x ὀνομαζόμενος + " 1x ὀνόματά + " 21x ὀνόματί + " 8x ὀνόματα + " 71x ὀνόματι + " 3x ὀνόματι, + " 12x ὀνόματος + " 2x ὀνόματός + " 1x ὀνόματός, + " 1x ὀξεῖα + " 1x ὀξεῖα, + " 1x ὀξεῖαν + " 1x ὀξεῖς + " 2x ὀξύ. + " 2x ὀξὺ + " 32x ὀπίσω + " 1x ὀπίσω, + " 1x ὀπίσω. + " 1x ὀπαῖς + " 1x ὀπτανόμενος + " 2x ὀπτασίαν + " 1x ὀπτασίας + " 1x ὀπτασίᾳ, + " 1x ὀπτοῦ + " 1x ὀπώρα + " 1x ὀπῆς + " 1x ὀρέγεται, + " 1x ὀρέγονται, + " 1x ὀρέξει + " 1x ὀρέων, + " 1x ὀργή + " 1x ὀργήν, + " 1x ὀργήν; + " 1x ὀργήν· + " 1x ὀργίζεσθε + " 1x ὀργίλον, + " 1x ὀργιζόμενος + " 2x ὀργισθεὶς + " 2x ὀργυιὰς + " 9x ὀργὴ + " 6x ὀργὴν + " 10x ὀργῆς + " 1x ὀργῆς, + " 1x ὀργῆς. + " 2x ὀργῆς; + " 2x ὀργῇ + " 1x ὀργῇ· + " 1x ὀρεγόμενοι + " 1x ὀρεινὴν + " 1x ὀρεινῇ + " 1x ὀρθοποδοῦσιν + " 1x ὀρθοτομοῦντα + " 1x ὀρθριναὶ + " 1x ὀρθός. + " 1x ὀρθὰς + " 1x ὀρθῶς + " 1x ὀρθῶς. + " 1x ὀρνέοις + " 1x ὀρνέου + " 1x ὀρφανούς, + " 1x ὀρφανοὺς + " 1x ὀρχησαμένης, + " 2x ὀσμὴ + " 3x ὀσμὴν + " 1x ὀσμῆς + " 1x ὀστέα + " 2x ὀστέων + " 1x ὀστράκινα, + " 1x ὀστρακίνοις + " 1x ὀσφύας + " 1x ὀσφύες + " 2x ὀσφύος + " 1x ὀσφύϊ + " 3x ὀσφὺν + " 7x ὀφείλει + " 2x ὀφείλει, + " 2x ὀφείλει. + " 1x ὀφείλεις + " 1x ὀφείλεις. + " 1x ὀφείλεις; + " 1x ὀφείλετε + " 1x ὀφείλετε, + " 1x ὀφείλημα· + " 6x ὀφείλομεν + " 1x ὀφείλοντες + " 1x ὀφείλοντι + " 2x ὀφείλουσιν + " 1x ὀφειλάς, + " 3x ὀφειλέται + " 1x ὀφειλέταις + " 3x ὀφειλέτης + " 1x ὀφειλήματα + " 1x ὀφειλόμενον + " 1x ὀφειλόμενον. + " 2x ὀφειλὴν + " 1x ὀφθέντες + " 1x ὀφθέντος + " 1x ὀφθήσεται + " 1x ὀφθήσομαί + " 1x ὀφθαλμοί + " 1x ὀφθαλμοί. + " 1x ὀφθαλμοί; + " 1x ὀφθαλμοδουλίαις, + " 1x ὀφθαλμοδουλίαν + " 1x ὀφθαλμούς + " 2x ὀφθαλμούς, + " 2x ὀφθαλμούς. + " 2x ὀφθαλμούς; + " 11x ὀφθαλμοὶ + " 1x ὀφθαλμοὶ, + " 30x ὀφθαλμοὺς + " 7x ὀφθαλμοῖς + " 5x ὀφθαλμοῦ + " 1x ὀφθαλμοῦ, + " 8x ὀφθαλμός + " 2x ὀφθαλμός, + " 1x ὀφθαλμός. + " 4x ὀφθαλμὸς + " 10x ὀφθαλμῶν + " 1x ὀφθαλμῶν· + " 8x ὀφθαλμῷ + " 1x ὀφθείς + " 1x ὀφρύος + " 1x ὀχλοποιήσαντες + " 1x ὀχλουμένους + " 1x ὀχυρωμάτων, + " 1x ὀψάρια· + " 2x ὀψάριον + " 1x ὀψία + " 8x ὀψίας + " 2x ὀψαρίων + " 2x ὀψωνίοις + " 1x ὀψόμεθα + " 1x ὀψώνια + " 1x ὀψώνιον + " 3x ὀψὲ + " 2768x ὁ + " 1x ὁδεύων + " 3x ὁδηγήσει + " 1x ὁδηγεῖν; + " 1x ὁδηγοί + " 2x ὁδηγοὶ + " 1x ὁδηγοῦ + " 1x ὁδηγὸν + " 1x ὁδηγῇ, + " 1x ὁδοί + " 1x ὁδοιπορίαις + " 1x ὁδοιπορίας + " 1x ὁδοιπορούντων + " 2x ὁδούς + " 1x ὁδοὶ + " 6x ὁδοὺς + " 3x ὁδοῖς + " 5x ὁδοῦ + " 4x ὁδόν + " 7x ὁδόν, + " 4x ὁδόν. + " 32x ὁδὸν + " 1x ὁδὸν; + " 5x ὁδὸς + " 1x ὁδῶν, + " 15x ὁδῷ + " 2x ὁδῷ, + " 4x ὁδῷ. + " 2x ὁδῷ· + " 1x ὁλοκαυτωμάτων + " 2x ὁλοκαυτώματα + " 1x ὁλοκληρίαν + " 1x ὁλοτελεῖς, + " 1x ὁλόκληροι, + " 1x ὁλόκληρον + " 1x ὁμίχλαι + " 1x ὁμειρόμενοι + " 1x ὁμιλήσας + " 1x ὁμιλίαι + " 1x ὁμιλεῖν + " 9x ὁμοία + " 1x ὁμοίας + " 23x ὁμοίως + " 5x ὁμοίως. + " 1x ὁμοίωσιν + " 10x ὁμοθυμαδὸν + " 1x ὁμοθυμαδὸν, + " 1x ὁμοιοπαθεῖς + " 1x ὁμοιοπαθὴς + " 1x ὁμοιωθέντες + " 3x ὁμοιωθήσεται + " 1x ὁμοιωθῆναι, + " 1x ὁμοιωθῆτε + " 2x ὁμοιότητα + " 1x ὁμοιώματα + " 5x ὁμοιώματι + " 4x ὁμοιώσω + " 1x ὁμοιώσωμεν + " 1x ὁμολογήσαντες + " 2x ὁμολογήσει + " 3x ὁμολογήσω + " 3x ὁμολογήσῃ + " 1x ὁμολογήσῃς + " 2x ὁμολογίαν + " 1x ὁμολογίαν, + " 2x ὁμολογίας + " 1x ὁμολογίας. + " 2x ὁμολογεῖ + " 1x ὁμολογεῖται + " 1x ὁμολογουμένως + " 1x ὁμολογούντων + " 1x ὁμολογοῦντες + " 2x ὁμολογοῦσιν + " 1x ὁμολογῶ + " 1x ὁμολογῶμεν + " 1x ὁμολογῶν + " 3x ὁμοῦ + " 1x ὁμοῦ· + " 1x ὁμότεχνον + " 1x ὁμόφρονες, + " 1x ὁπλίσασθε, + " 1x ὁποίαν + " 2x ὁποῖος + " 1x ὁποῖόν + " 1x ὁπότε + " 2x ὁράματι + " 2x ὁράματος + " 3x ὁράσει + " 1x ὁράσεις + " 1x ὁρίζει + " 2x ὁρίοις + " 1x ὁρίσας + " 6x ὁρίων + " 1x ὁρατὰ + " 1x ὁρισθέντος + " 1x ὁρκίζω + " 3x ὁρκωμοσίας + " 1x ὁρκωμοσίας, + " 1x ὁρμήματι + " 2x ὁρμὴ + " 1x ὁροθεσίας + " 2x ὁρᾶτε + " 1x ὁρᾶτε, + " 1x ὁρᾷ + " 2x ὁρῶ + " 1x ὁρῶμεν + " 1x ὁρῶν + " 1x ὁρῶντες + " 1x ὁρῶσαι + " 3x ὁσάκις + " 1x ὁσίους + " 1x ὁσίως + " 2x ὁσιότητι + " 1x ὂν + " 200x ὃ + " 163x ὃν + " 189x ὃς + " 1x ὄγδοον + " 1x ὄγδοος + " 1x ὄγδοός + " 1x ὄγκον + " 1x ὄζει· + " 3x ὄλεθρον + " 1x ὄλεθρος + " 1x ὄμματα + " 6x ὄναρ + " 1x ὄνειδός + " 23x ὄνομά + " 78x ὄνομα + " 2x ὄνομα, + " 3x ὄνομα. + " 4x ὄνον + " 1x ὄνου. + " 14x ὄντα + " 2x ὄντα, + " 1x ὄντα. + " 1x ὄντα· + " 9x ὄντας + " 1x ὄντας, + " 1x ὄντας. + " 18x ὄντες + " 3x ὄντες, + " 2x ὄντες. + " 2x ὄντες; + " 1x ὄντες· + " 4x ὄντι + " 15x ὄντος + " 5x ὄντων + " 1x ὄντων, + " 8x ὄντως + " 2x ὄξος + " 4x ὄξους + " 5x ὄπισθεν + " 1x ὄπισθεν, + " 1x ὄπισθεν. + " 8x ὄρει + " 1x ὄρει. + " 2x ὄρει· + " 4x ὄρεσιν + " 4x ὄρη + " 3x ὄρη, + " 1x ὄρθρον + " 1x ὄρθρου + " 1x ὄρνεα + " 2x ὄρνις + " 26x ὄρος + " 1x ὄρος, + " 1x ὄρος· + " 11x ὄρους + " 1x ὄρους, + " 1x ὄσφρησις; + " 2x ὄφεις + " 1x ὄφεις, + " 1x ὄφελον + " 1x ὄφελος, + " 2x ὄφελος; + " 1x ὄφελόν + " 1x ὄφεσιν, + " 2x ὄφεων + " 1x ὄφεως. + " 3x ὄφιν + " 4x ὄφις + " 26x ὄχλοι + " 1x ὄχλοι· + " 7x ὄχλοις + " 1x ὄχλοις, + " 2x ὄχλοις. + " 1x ὄχλοις· + " 18x ὄχλον + " 11x ὄχλον, + " 3x ὄχλον. + " 3x ὄχλον· + " 39x ὄχλος + " 6x ὄχλος, + " 1x ὄχλος· + " 20x ὄχλου + " 4x ὄχλου, + " 1x ὄχλου· + " 12x ὄχλους + " 2x ὄχλους, + " 3x ὄχλους. + " 1x ὄχλων + " 9x ὄχλῳ + " 2x ὄχλῳ. + " 1x ὄχλῳ· + " 3x ὄψεσθέ + " 5x ὄψεσθε + " 1x ὄψεσθε, + " 4x ὄψεσθε. + " 4x ὄψεται + " 1x ὄψησθε + " 1x ὄψιμον. + " 1x ὄψιν, + " 2x ὄψις + " 2x ὄψομαι + " 4x ὄψονται + " 1x ὄψονται, + " 2x ὄψονται. + " 1x ὄψῃ + " 2x ὄψῃ. + " 45x ὅ + " 12x ὅθεν + " 7x ὅλη + " 1x ὅλη. + " 18x ὅλην + " 1x ὅλην, + " 16x ὅλης + " 2x ὅλης, + " 32x ὅλον + " 2x ὅλον. + " 2x ὅλος + " 1x ὅλος, + " 1x ὅλος· + " 2x ὅλου + " 1x ὅλου. + " 1x ὅλους + " 2x ὅλως + " 1x ὅλως· + " 14x ὅλῃ + " 6x ὅλῳ + " 2x ὅμοια + " 1x ὅμοιαι + " 1x ὅμοιοί + " 6x ὅμοιοι + " 1x ὅμοιοι; + " 8x ὅμοιον + " 1x ὅμοιον. + " 7x ὅμοιος + " 1x ὅμοιος. + " 3x ὅμοιός + " 3x ὅμως + " 4x ὅπλα + " 1x ὅπλων + " 1x ὅπλων. + " 77x ὅπου + " 52x ὅπως + " 5x ὅραμα + " 1x ὅραμα, + " 1x ὅραμα· + " 4x ὅρια + " 1x ὅρκον + " 1x ὅρκον· + " 1x ὅρκος· + " 2x ὅρκου + " 3x ὅρκους + " 1x ὅρκῳ + " 1x ὅρκῳ, + " 21x ὅς + " 56x ὅσα + " 1x ὅσαι + " 1x ὅσια + " 1x ὅσιον, + " 2x ὅσιος, + " 24x ὅσοι + " 16x ὅσον + " 1x ὅσον, + " 3x ὅσους + " 25x ὅστις + " 1x ὅσων + " 3x ὅσῳ + " 107x ὅταν + " 90x ὅτε + " 1281x ὅτι + " 5x ὅτου + " 1x Ὀζείαν, + " 1x Ὀζείας + " 1x Ὀλιγόπιστε, + " 1x Ὀλυμπᾶν, + " 1x Ὀνήσιμον, + " 1x Ὀνησίμῳ + " 2x Ὀνησιφόρου + " 2x Ὀνόματος + " 1x Ὀπίσω + " 2x Ὀρθῶς + " 1x Ὀστοῦν + " 1x Ὀφείλομεν + " 1x Ὀφθαλμὸν + " 5x Ὀψίας + " 1x Ὀψὲ + " 121x Ὁ + " 1x Ὁδοῦ + " 1x Ὁδοῦ, + " 1x Ὁδοῦ. + " 3x Ὁδὸν + " 4x Ὁμοία + " 2x Ὁμοίως + " 1x Ὁμοίως, + " 1x Ὁρκίζω + " 3x Ὁρᾶτε + " 2x Ὁρᾶτε, + " 6x Ὃ + " 4x Ὃν + " 10x Ὃς + " 1x Ὄμβρος + " 2x Ὄντως + " 1x Ὄρθρου + " 2x Ὄφελον + " 2x Ὄψονται + " 1x Ὅ + " 1x Ὅθεν + " 2x Ὅθεν, + " 1x Ὅλην + " 1x Ὅλως + " 5x Ὅπου + " 1x Ὅπως + " 5x Ὅρα + " 1x Ὅσιος, + " 2x Ὅσιόν + " 5x Ὅσοι + " 1x Ὅστις + " 16x Ὅταν + " 11x Ὅτε + " 12x Ὅτι + " 1x ὑάκινθος, + " 1x ὑάλῳ + " 1x ὑακινθίνους + " 1x ὑαλίνη + " 1x ὑαλίνην + " 1x ὑαλίνην, + " 1x ὑβρίζεις. + " 1x ὑβρίσαι + " 1x ὑβρισθέντες + " 1x ὑβρισθήσεται + " 1x ὑβριστάς, + " 1x ὑβριστήν· + " 1x ὑγιής. + " 1x ὑγιαίνειν, + " 1x ὑγιαίνοντα + " 1x ὑγιαίνοντα. + " 1x ὑγιαίνοντας + " 1x ὑγιαίνοντες + " 1x ὑγιαίνουσιν + " 1x ὑγιαίνωσιν + " 1x ὑγιαινούσης + " 3x ὑγιαινούσῃ + " 1x ὑγιαινόντων + " 1x ὑγιεῖς + " 6x ὑγιὴς + " 2x ὑγιῆ + " 1x ὑγιῆ, + " 1x ὑγιῆ. + " 1x ὑγρῷ + " 8x ὑδάτων + " 2x ὑδάτων. + " 2x ὑδάτων· + " 1x ὑδρίαι + " 1x ὑδρίαν + " 1x ὑδρίας + " 1x ὑδροπότει, + " 1x ὑδρωπικὸς + " 1x ὑετοὺς + " 1x ὑετόν + " 2x ὑετὸν + " 1x ὑετὸς + " 2x ὑμέτερον + " 1x ὑμέτερος + " 1x ὑμετέρα + " 1x ὑμετέραν + " 2x ὑμετέρας + " 1x ὑμετέρᾳ + " 2x ὑμετέρῳ + " 196x ὑμεῖς + " 12x ὑμεῖς, + " 5x ὑμεῖς. + " 1x ὑμεῖς; + " 2x ὑμεῖς· + " 1x ὑμεῖς— + " 2x ὑμνήσαντες + " 1x ὑμνήσω + " 300x ὑμᾶς + " 73x ὑμᾶς, + " 36x ὑμᾶς. + " 5x ὑμᾶς; + " 18x ὑμᾶς· + " 368x ὑμῖν + " 144x ὑμῖν, + " 54x ὑμῖν. + " 17x ὑμῖν; + " 1x ὑμῖν]]. + " 20x ὑμῖν· + " 373x ὑμῶν + " 77x ὑμῶν, + " 62x ὑμῶν. + " 17x ὑμῶν; + " 28x ὑμῶν· + " 4x ὑπάγει + " 2x ὑπάγει, + " 2x ὑπάγει. + " 3x ὑπάγει· + " 2x ὑπάγειν + " 1x ὑπάγειν. + " 1x ὑπάγειν; + " 1x ὑπάγειν· + " 2x ὑπάγεις + " 2x ὑπάγεις; + " 1x ὑπάγεις· + " 4x ὑπάγετε + " 1x ὑπάγετε· + " 1x ὑπάγητε + " 1x ὑπάγοντας + " 1x ὑπάγοντες + " 10x ὑπάγω + " 1x ὑπάγω. + " 1x ὑπάγω· + " 1x ὑπάγῃ· + " 3x ὑπάντησιν + " 1x ὑπάρξεις + " 1x ὑπάρχει + " 1x ὑπάρχει, + " 1x ὑπάρχει· + " 5x ὑπάρχειν + " 1x ὑπάρχειν, + " 1x ὑπάρχοντά + " 6x ὑπάρχοντα + " 1x ὑπάρχοντα. + " 1x ὑπάρχοντας, + " 4x ὑπάρχοντες + " 2x ὑπάρχοντες, + " 2x ὑπάρχοντος + " 1x ὑπάρχοντος, + " 3x ὑπάρχουσιν + " 1x ὑπάρχουσιν· + " 12x ὑπάρχων + " 2x ὑπάρχων, + " 1x ὑπάρχων· + " 1x ὑπάρχωσιν + " 1x ὑπέβαλον + " 1x ὑπέδειξα + " 2x ὑπέδειξεν + " 1x ὑπέθηκαν, + " 1x ὑπέλαβεν + " 1x ὑπέμεινάν + " 2x ὑπέμεινεν + " 1x ὑπέρακμος, + " 1x ὑπέρογκα + " 1x ὑπέρογκα, + " 1x ὑπέστελλεν + " 1x ὑπέστρεφον + " 1x ὑπέστρεφον. + " 1x ὑπέστρεψα + " 8x ὑπέστρεψαν + " 1x ὑπέστρεψαν, + " 5x ὑπέστρεψεν + " 1x ὑπέστρεψεν. + " 1x ὑπέταξας + " 3x ὑπέταξεν + " 1x ὑπέχουσαι. + " 1x ὑπήκοοί + " 1x ὑπήκοοι + " 1x ὑπήκοος + " 1x ὑπήκουον + " 1x ὑπήκουσαν + " 3x ὑπήκουσεν + " 1x ὑπήνεγκα, + " 2x ὑπήντησαν + " 6x ὑπήντησεν + " 1x ὑπακοή. + " 3x ὑπακοήν, + " 2x ὑπακούει + " 1x ὑπακούειν + " 4x ὑπακούετε + " 1x ὑπακούετε, + " 4x ὑπακούουσιν + " 1x ὑπακούουσιν; + " 1x ὑπακοὴ + " 5x ὑπακοὴν + " 2x ὑπακοῆς + " 1x ὑπακοῆς, + " 2x ὑπακοῇ + " 1x ὑπακοῦσαι + " 2x ὑπαντῆσαι + " 1x ὑπαρχούσης + " 4x ὑπαρχόντων + " 1x ὑπαρχόντων, + " 1x ὑπείκετε· + " 2x ὑπεδέξατο + " 1x ὑπελείφθην + " 1x ὑπεμείνατε + " 1x ὑπεμνήσθη + " 1x ὑπεναντίον + " 1x ὑπεναντίους. + " 1x ὑπενεγκεῖν. + " 2x ὑπενόουν + " 2x ὑπεπλεύσαμεν + " 3x ὑπεράνω + " 1x ὑπερέκεινα + " 1x ὑπερέχον + " 1x ὑπερέχοντας + " 1x ὑπερέχοντι, + " 1x ὑπερέχουσα + " 1x ὑπερήφανοι, + " 1x ὑπεραίρωμαι, + " 1x ὑπεραίρωμαι. + " 1x ὑπεραιρόμενος + " 1x ὑπεραυξάνει + " 2x ὑπερβάλλον + " 2x ὑπερβάλλουσαν + " 1x ὑπερβαίνειν + " 1x ὑπερβαλλούσης + " 1x ὑπερβαλλόντως, + " 1x ὑπερβολὴ + " 6x ὑπερβολὴν + " 1x ὑπερβολῇ + " 2x ὑπερεκπερισσοῦ + " 1x ὑπερεκπερισσῶς + " 1x ὑπερεκτείνομεν + " 1x ὑπερεκχυννόμενον + " 1x ὑπερεντυγχάνει + " 1x ὑπερεπερίσσευσεν + " 1x ὑπερεπλεόνασεν + " 1x ὑπερεχούσαις + " 2x ὑπερηφάνοις + " 1x ὑπερηφάνους + " 1x ὑπερηφάνους, + " 1x ὑπερηφανία, + " 1x ὑπεριδὼν + " 2x ὑπερλίαν + " 1x ὑπερνικῶμεν + " 1x ὑπεροχὴν + " 1x ὑπεροχῇ + " 1x ὑπερπερισσεύομαι + " 1x ὑπερπερισσῶς + " 1x ὑπερφρονεῖν + " 1x ὑπερύψωσεν, + " 1x ὑπερῴῳ + " 1x ὑπερῴῳ. + " 1x ὑπερῷον + " 1x ὑπερῷον, + " 2x ὑπεστειλάμην + " 1x ὑπεστρώννυον + " 1x ὑπετάγη, + " 1x ὑπετάγησαν. + " 1x ὑπεχώρησεν + " 1x ὑπηκούσατε + " 1x ὑπηκούσατε, + " 8x ὑπηρέται + " 1x ὑπηρέται, + " 1x ὑπηρέταις + " 3x ὑπηρέτας + " 1x ὑπηρέτην + " 1x ὑπηρέτην. + " 1x ὑπηρέτησαν + " 1x ὑπηρέτῃ + " 1x ὑπηρέτῃ, + " 1x ὑπηρετήσας + " 1x ὑπηρετεῖν + " 3x ὑπηρετῶν + " 1x ὑπογραμμὸν + " 1x ὑποδέδεκται + " 3x ὑποδήματα + " 1x ὑποδήματα· + " 1x ὑποδήματος. + " 1x ὑποδείγματα + " 2x ὑποδείγματι + " 3x ὑποδείξω + " 1x ὑποδεδεμένους + " 1x ὑποδεξαμένη + " 2x ὑποδημάτων + " 1x ὑποδημάτων, + " 1x ὑποδησάμενοι + " 1x ὑποδραμόντες + " 1x ὑποζυγίου. + " 1x ὑποζωννύντες + " 1x ὑποζύγιον + " 11x ὑποκάτω + " 1x ὑποκρίσει + " 1x ὑποκρίσει. + " 1x ὑποκρίσεις + " 1x ὑποκρίσεως + " 1x ὑποκρινομένους + " 2x ὑποκριτά, + " 8x ὑποκριταί, + " 1x ὑποκριταί; + " 1x ὑποκριταί· + " 2x ὑποκριταὶ + " 1x ὑποκριτῶν + " 1x ὑποκριτῶν, + " 1x ὑπολήνιον + " 1x ὑπολαβὼν + " 1x ὑπολαμβάνειν + " 1x ὑπολαμβάνετε + " 1x ὑπολιμπάνων + " 1x ὑπομένει + " 1x ὑπομένει. + " 1x ὑπομένετε· + " 1x ὑπομένομεν, + " 1x ὑπομένοντες, + " 1x ὑπομένω + " 1x ὑπομίμνῃσκε, + " 1x ὑπομείναντας· + " 3x ὑπομείνας + " 1x ὑπομεμενηκότα + " 1x ὑπομενεῖτε, + " 1x ὑπομενεῖτε; + " 1x ὑπομιμνῄσκειν + " 2x ὑπομνήσει + " 1x ὑπομνήσει, + " 1x ὑπομνήσω + " 2x ὑπομονήν + " 2x ὑπομονήν, + " 1x ὑπομονήν. + " 4x ὑπομονὴ + " 6x ὑπομονὴν + " 8x ὑπομονῆς + " 5x ὑπομονῇ + " 2x ὑπομονῇ, + " 1x ὑπομονῇ. + " 1x ὑπομονῇ· + " 1x ὑπονοεῖτε + " 5x ὑποπόδιον + " 2x ὑποπόδιόν + " 2x ὑποστάσει + " 2x ὑποστάσεως + " 1x ὑποστείληται, + " 1x ὑποστολῆς + " 4x ὑποστρέφειν + " 1x ὑποστρέφοντι + " 1x ὑποστρέφων + " 1x ὑποστρέψαι + " 1x ὑποστρέψαι. + " 3x ὑποστρέψαντες + " 1x ὑποστρέψαντι + " 2x ὑποστρέψασαι + " 2x ὑποτάγητε + " 2x ὑποτάξαι + " 1x ὑποτάξαντα, + " 1x ὑποτάξαντι + " 1x ὑποτάξαντος + " 1x ὑποτάσσεσθαι + " 2x ὑποτάσσεσθαι, + " 1x ὑποτάσσεσθε + " 2x ὑποτάσσεται + " 2x ὑποτάσσεται, + " 1x ὑποτάσσεται· + " 1x ὑποτάσσησθε + " 1x ὑποτέτακται, + " 1x ὑποταγέντων + " 1x ὑποταγήσεται + " 1x ὑποταγησόμεθα + " 3x ὑποταγῇ + " 1x ὑποταγῇ, + " 1x ὑποταγῇ· + " 1x ὑποτασσέσθω. + " 1x ὑποτασσέσθωσαν, + " 1x ὑποτασσομένας + " 2x ὑποτασσόμεναι + " 2x ὑποτασσόμενοι + " 1x ὑποτασσόμενος + " 1x ὑποτεταγμένα· + " 1x ὑποτιθέμενος + " 2x ὑποτύπωσιν + " 1x ὑποφέρει + " 1x ὑποχωρῶν + " 1x ὑπωπιάζω + " 1x ὑπωπιάζῃ + " 5x ὑπό + " 3x ὑπόδειγμα + " 2x ὑπόδημα + " 1x ὑπόδησαι + " 1x ὑπόδικος + " 1x ὑπόκρισιν + " 1x ὑπόκρισις, + " 1x ὑπόλειμμα + " 1x ὑπόμνησιν + " 1x ὑπόνοιαι + " 1x ὑπόστασις, + " 149x ὑπὲρ + " 180x ὑπὸ + " 1x ὑπῆγον + " 1x ὑπῆγον. + " 2x ὑπῆρχεν + " 1x ὑπῆρχεν. + " 1x ὑπῆρχεν; + " 1x ὑπῆρχεν· + " 1x ὑπῆρχον + " 1x ὑπῆρχον, + " 25x ὑπ’ + " 1x ὑσσώπου, + " 1x ὑσσώπῳ + " 1x ὑστέρημά + " 2x ὑστέρημα + " 2x ὑστέρημα, + " 1x ὑστέρησα + " 1x ὑστέρησιν + " 1x ὑστέροις + " 3x ὑστερήματα + " 1x ὑστερήματος + " 1x ὑστερήσαντος + " 1x ὑστερήσατε; + " 1x ὑστερήσεως + " 1x ὑστερεῖ· + " 1x ὑστερεῖσθαι + " 2x ὑστερεῖσθαι. + " 1x ὑστερηθεὶς + " 1x ὑστερηκέναι + " 1x ὑστερηκέναι. + " 1x ὑστερουμένῳ + " 1x ὑστερούμεθα, + " 1x ὑστερούμενοι, + " 1x ὑστεροῦνται + " 1x ὑστερῶ; + " 1x ὑστερῶν + " 1x ὑφαίνει· + " 1x ὑφαντὸς + " 9x ὑφ’ + " 1x ὑψίστοις + " 3x ὑψίστοις. + " 1x ὑψηλοφρονεῖν, + " 1x ὑψηλοῖς, + " 1x ὑψηλοῦ + " 2x ὑψηλόν, + " 1x ὑψηλότερος + " 2x ὑψηλὰ + " 4x ὑψηλὸν + " 3x ὑψωθήσεται. + " 2x ὑψωθήσῃ; + " 1x ὑψωθεὶς + " 2x ὑψωθῆναι + " 1x ὑψωθῆτε, + " 1x ὑψωθῶ + " 2x ὑψώσει + " 1x ὑψώσητε + " 1x ὑψώσῃ + " 2x ὑψῶν + " 1x ὕαλος + " 1x ὕβρεσιν, + " 1x ὕβρεως + " 1x ὕβριν + " 1x ὕβρισαν + " 1x ὕδασιν. + " 4x ὕδατα + " 1x ὕδατα. + " 8x ὕδατι + " 4x ὕδατι, + " 1x ὕδατι· + " 19x ὕδατος + " 1x ὕδατος, + " 2x ὕδατος. + " 2x ὕδατος· + " 14x ὕδωρ + " 4x ὕδωρ, + " 4x ὕδωρ. + " 2x ὕδωρ· + " 1x ὕλην + " 2x ὕμνοις + " 1x ὕμνουν + " 11x ὕπαγε + " 2x ὕπαγε, + " 1x ὕπαγε· + " 1x ὕπανδρος + " 1x ὕπαρξιν + " 4x ὕπνου + " 1x ὕπνῳ + " 1x ὕπνῳ· + " 9x ὕστερον + " 1x ὕστερον. + " 1x ὕστερος. + " 1x ὕψει + " 3x ὕψος + " 1x ὕψους + " 1x ὕψους, + " 2x ὕψωμα + " 4x ὕψωσεν + " 2x Ὑμέναιος + " 18x Ὑμεῖς + " 5x Ὑμῖν + " 8x Ὑπάγετε + " 1x Ὑπάγετε. + " 2x Ὑπάγω + " 1x Ὑπέστρεψαν + " 1x Ὑποκριταί, + " 1x Ὑπολαμβάνω + " 1x Ὑπομίμνῃσκε + " 1x Ὑπομνῆσαι + " 1x Ὑποπνεύσαντος + " 1x Ὑποστρέψω + " 1x Ὑποτάγητε + " 1x Ὑπόστρεφε + " 1x Ὑπὲρ + " 4x Ὑψίστου + " 2x Ὑψίστου, + " 2x Ὑψίστου; + " 7x Ὕπαγε + " 3x Ὕπαγε, + " 1x Ὕστερον + " 1x Ὕψιστος + " 1x Ὗς + " 1x ὠδίνουσα + " 1x ὠδίνουσα· + " 1x ὠδίνω + " 1x ὠδίνων + " 1x ὠδίνων. + " 1x ὠδὶν + " 1x ὠδῖνας + " 1x ὠνήσατο + " 2x ὠνείδιζον + " 1x ὠνείδισεν + " 1x ὠνομάσθη + " 2x ὠνόμασεν, + " 2x ὠργίσθη + " 1x ὠργίσθη, + " 1x ὠργίσθησαν, + " 1x ὠρυόμενος + " 2x ὠρχήσασθε· + " 1x ὠρχήσατο + " 1x ὠσίν, + " 5x ὠσὶν + " 1x ὠτάριον + " 1x ὠτάριον. + " 1x ὠτίον + " 1x ὠτίον. + " 1x ὠτίου + " 1x ὠφέλεια + " 1x ὠφέλησεν + " 1x ὠφέλιμα + " 1x ὠφέλιμος + " 1x ὠφέλιμος· + " 1x ὠφέλιμός + " 1x ὠφείλετε + " 1x ὠφείλομεν + " 1x ὠφελήθησαν + " 1x ὠφελήσει. + " 1x ὠφελήσω, + " 1x ὠφελείας + " 4x ὠφελεῖ + " 1x ὠφελεῖται + " 1x ὠφελεῖτε + " 1x ὠφεληθήσεται + " 1x ὠφεληθεῖσα + " 2x ὠφεληθῇς, + " 1x ὠφελοῦμαι. + " 1x ὡμίλει + " 1x ὡμίλουν + " 1x ὡμοιώθη + " 1x ὡμοιώθημεν. + " 1x ὡμολόγησας + " 4x ὡμολόγησεν + " 1x ὡμολόγουν, + " 1x ὡραῖοι + " 1x ὡραῖοι, + " 1x ὡρισμένον + " 1x ὡρισμένος + " 1x ὡρισμένῃ + " 1x ὡρῶν + " 475x ὡς + " 11x ὡσαύτως + " 3x ὡσαύτως. + " 1x ὡσαύτως· + " 21x ὡσεὶ + " 1x ὡσπερεὶ + " 39x ὢν + " 2x ὤμοσα + " 6x ὤμοσεν + " 2x ὤμους + " 4x ὤν, + " 1x ὤν; + " 1x ὤρθριζεν + " 3x ὤρυξεν + " 3x ὤφειλεν + " 1x ὤφειλον + " 17x ὤφθη + " 1x ὤφθη, + " 1x ὤφθην + " 1x ὤφθησαν + " 29x ὥρα + " 3x ὥρα, + " 1x ὥρα· + " 19x ὥραν + " 1x ὥραν, + " 1x ὥραν. + " 1x ὥραν; + " 20x ὥρας + " 1x ὥρας, + " 1x ὥρισαν + " 1x ὥρισεν, + " 1x ὥρμησάν + " 1x ὥρμησαν + " 3x ὥρμησεν + " 25x ὥρᾳ + " 2x ὥρᾳ, + " 1x ὥρᾳ. + " 2x ὥς + " 35x ὥσπερ + " 75x ὥστε + " 2x ὥστε, + " 8x ὦ + " 1x ὦ, + " 1x ὦ. + " 2x ὦμεν + " 1x ὦμεν. + " 7x ὦσιν + " 3x ὦσιν, + " 1x ὦσιν. + " 1x ὦτά + " 16x ὦτα + " 37x ὧδε + " 4x ὧδε, + " 10x ὧδε. + " 4x ὧδε· + " 79x ὧν + " 1x ὧραί + " 2x Ὡμοιώθη + " 1x Ὡραίαν + " 1x Ὡραίᾳ + " 25x Ὡς + " 1x Ὡσαννά, + " 1x Ὡσαννά· + " 4x Ὡσαννὰ + " 2x Ὡσαύτως + " 1x Ὡσηὲ + " 1x Ὤμοσεν + " 1x Ὥσπερ + " 3x Ὥστε + " 4x Ὥστε, + " 9x Ὦ + " 3x Ὦ, + " 1x Ὧδέ + " 3x Ὧδε + " 1x Ὧδε, + " 2x ᾄδοντες + " 3x ᾄδουσιν + " 1x ᾐτήκαμεν + " 2x ᾐτήσαντο + " 1x ᾐτήσασθε + " 1x ᾐτήσατε + " 6x ᾐτήσατο + " 1x ᾐτοῦντο + " 1x ᾐτοῦντο, + " 1x ᾐχμαλώτευσεν + " 1x ᾑρέτισα, + " 14x ᾔδει + " 4x ᾔδειν + " 1x ᾔδειν, + " 3x ᾔδεις + " 8x ᾔδεισαν + " 1x ᾔδειτε + " 1x ᾔδειτε, + " 1x ᾔδειτε. + " 1x ᾔδειτε· + " 1x ᾔτησας + " 36x ᾖ + " 4x ᾖ, + " 3x ᾖ. + " 1x ᾖς, + " 39x ᾗ + " 2x ᾠδαῖς + " 5x ᾠδὴν + " 5x ᾠκοδόμησεν + " 1x ᾠκοδόμητο + " 1x ᾠκοδόμουν· + " 1x ᾠόν, + " 120x ᾧ + " 2x ῥάβδον + " 1x ῥάβδον· + " 3x ῥάβδος + " 1x ῥάβδου + " 4x ῥάβδῳ + " 1x ῥάβδῳ, + " 2x ῥάκους + " 1x ῥάπισμα + " 1x ῥήγνυνται + " 1x ῥήμασιν + " 3x ῥήματά + " 1x ῥήματί + " 24x ῥήματα + " 3x ῥήματι + " 1x ῥήματι, + " 6x ῥήματος + " 2x ῥήξει + " 1x ῥήξωσιν + " 1x ῥήσσει + " 1x ῥήτορος + " 6x ῥίζα + " 8x ῥίζαν + " 1x ῥίζης + " 1x ῥίψαν + " 1x ῥίψαντες + " 1x ῥίψας + " 1x ῥαβδίζειν, + " 1x ῥαβδούχους + " 1x ῥαβδοῦχοι + " 1x ῥαντίζουσα + " 1x ῥαντίσωνται + " 1x ῥαντισμοῦ + " 1x ῥαντισμὸν + " 1x ῥαπίζει + " 1x ῥαπίσμασιν + " 1x ῥαπίσματα. + " 2x ῥαφίδος + " 1x ῥεδῶν + " 1x ῥεραντισμένοι + " 1x ῥεύσουσιν + " 1x ῥηθεὶς + " 12x ῥηθὲν + " 5x ῥημάτων + " 1x ῥημάτων, + " 1x ῥητῶς + " 1x ῥιζῶν. + " 1x ῥιπιζομένῳ. + " 1x ῥιπτούντων + " 1x ῥιπῇ + " 1x ῥοιζηδὸν + " 2x ῥομφαία + " 1x ῥομφαίαν + " 1x ῥομφαία—, + " 3x ῥομφαίᾳ + " 1x ῥυπανθήτω + " 1x ῥυπαρίαν + " 1x ῥυπαρὸς + " 1x ῥυπαρᾷ + " 1x ῥυσάσθω + " 1x ῥυσθέντας + " 1x ῥυσθῶ + " 1x ῥυσθῶμεν + " 1x ῥυτίδα + " 1x ῥυόμενον + " 1x ῥύεσθαι, + " 1x ῥύμαις, + " 1x ῥύμας + " 2x ῥύμην + " 1x ῥύπου + " 2x ῥύσει + " 1x ῥύσεταί + " 1x ῥύσεται + " 2x ῥύσεται, + " 1x ῥύσις + " 1x ῥᾳδιουργίας, + " 1x ῥᾳδιούργημα + " 1x ῥῆγμα + " 3x ῥῆμά + " 14x ῥῆμα + " 2x ῥῆμα, + " 2x ῥῆμα. + " 1x ῥῆμα· + " 1x ῥῆξον + " 1x ῥῦσαι + " 1x Ῥήγιον. + " 1x Ῥίζα + " 12x Ῥαββεί, + " 1x Ῥαββεί. + " 1x Ῥαββεί; + " 1x Ῥαββεί· + " 1x Ῥαββουνεί + " 1x Ῥαββουνεί, + " 1x Ῥαγαῦ + " 1x Ῥακά, + " 1x Ῥαμὰ + " 1x Ῥαχάβ, + " 1x Ῥαχὴλ + " 2x Ῥαὰβ + " 1x Ῥεβέκκα + " 1x Ῥησὰ + " 1x Ῥοβοάμ, + " 1x Ῥοβοὰμ + " 1x Ῥομφά, + " 1x Ῥουβὴν + " 1x Ῥούθ, + " 1x Ῥούφου, + " 1x Ῥοῦφον + " 1x Ῥυόμενος, + " 2x Ῥωμαίοις + " 1x Ῥωμαίους + " 1x Ῥωμαίων, + " 1x Ῥωμαϊστί, + " 1x Ῥωμαῖοί + " 1x Ῥωμαῖοι + " 1x Ῥωμαῖοι, + " 1x Ῥωμαῖον + " 1x Ῥωμαῖος + " 3x Ῥωμαῖός + " 1x Ῥόδη, + " 1x Ῥόδον + " 3x Ῥώμην + " 1x Ῥώμην, + " 1x Ῥώμης, + " 3x Ῥώμῃ + " 1x —δοκιμάζοντες + " 2x —εἴτε + " 1x —καίτοιγε + " 1x —κατὰ + " 1x —καὶ + " 1x —λέγει + " 1x —νυνὶ + " 1x —οἱ + " 1x —οὐχ + " 1x —οὗτος + " 1x —τὸ + " 1x —ἀκούσαντες + " 1x —ἁρπαγέντα + " 1x —ὁ + " 1x —ὁποῖοί + voice= 20742x active + " 2408x middle + " 1714x middlepassive + " 3493x passive + + 8011x + Rule= 4308x ClCl + " 1250x ClClN + appositioncontainer= 1908x true + articular= 28772x true + class= 168x adjp + " 7x adv + " 166x advp + " 30152x cl + " 1x conj + " 30911x np + " 7x nump + " 11169x pp + " 207x vp + clauseType= 5296x nominalized + cltype= 832x Minor + " 1050x VerbElided + " 961x Verbless + junction= 9367x coordinate + " 8554x subordinate + nodeId= 5558x NNNNNNNNNNNNNNN + role= 15981x adv + " 2429x apposition + " 351x aux + " 2x ellipsis + " 702x io + " 8822x o + " 218x oN + " 1770x p + " 6710x s + " 2x tail + " 23x topic + " 405x v + " 10x vc + rule= 67x ADV-ADV + " 14x ADV-ADV-ADV + " 1x ADV-ADV-ADV-ADV-ADV-V + " 1x ADV-ADV-ADV-ADV-V + " 1x ADV-ADV-ADV-ADV-V-S-ADV-ADV + " 3x ADV-ADV-ADV-O-V + " 1x ADV-ADV-ADV-S-ADV + " 1x ADV-ADV-ADV-S-O-V + " 1x ADV-ADV-ADV-S-V + " 2x ADV-ADV-ADV-S-V-ADV + " 1x ADV-ADV-ADV-S-V-O + " 24x ADV-ADV-ADV-V + " 9x ADV-ADV-ADV-V-ADV + " 2x ADV-ADV-ADV-V-ADV-ADV + " 1x ADV-ADV-ADV-V-ADV-ADV-ADV + " 1x ADV-ADV-ADV-V-ADV-O + " 10x ADV-ADV-ADV-V-O + " 1x ADV-ADV-ADV-V-O-ADV + " 1x ADV-ADV-ADV-V-O-ADV-ADV-ADV + " 1x ADV-ADV-ADV-V-S-ADV-ADV + " 1x ADV-ADV-IO + " 2x ADV-ADV-IO-V + " 1x ADV-ADV-O + " 1x ADV-ADV-O-S-V + " 19x ADV-ADV-O-V + " 3x ADV-ADV-O-V-ADV + " 1x ADV-ADV-O-V-ADV-ADV + " 1x ADV-ADV-O-V-S + " 1x ADV-ADV-O-V-S-ADV + " 1x ADV-ADV-O-V-S-IO + " 7x ADV-ADV-P + " 1x ADV-ADV-P-ADV + " 1x ADV-ADV-P-ADV-VC-ADV + " 1x ADV-ADV-P-ADV-VC-S + " 6x ADV-ADV-P-VC + " 1x ADV-ADV-P-VC-S + " 3x ADV-ADV-S + " 1x ADV-ADV-S-ADV-ADV-V + " 1x ADV-ADV-S-ADV-P-VC + " 2x ADV-ADV-S-ADV-V + " 1x ADV-ADV-S-ADV-V-ADV + " 3x ADV-ADV-S-ADV-V-O + " 1x ADV-ADV-S-O-V + " 1x ADV-ADV-S-O-V-ADV + " 1x ADV-ADV-S-P + " 2x ADV-ADV-S-P-VC + " 15x ADV-ADV-S-V + " 7x ADV-ADV-S-V-ADV + " 5x ADV-ADV-S-V-O + " 2x ADV-ADV-S-V-O-ADV + " 2x ADV-ADV-S-VC-P + " 1x ADV-ADV-S-VC-P-ADV + " 163x ADV-ADV-V + " 78x ADV-ADV-V-ADV + " 16x ADV-ADV-V-ADV-ADV + " 1x ADV-ADV-V-ADV-ADV-ADV + " 3x ADV-ADV-V-ADV-O + " 2x ADV-ADV-V-ADV-S + " 10x ADV-ADV-V-IO + " 1x ADV-ADV-V-IO-ADV + " 1x ADV-ADV-V-IO-ADV-ADV + " 2x ADV-ADV-V-IO-O + " 1x ADV-ADV-V-IO-S + " 1x ADV-ADV-V-IO-S-O-ADV + " 78x ADV-ADV-V-O + " 18x ADV-ADV-V-O-ADV + " 2x ADV-ADV-V-O-ADV-ADV + " 2x ADV-ADV-V-O-IO + " 6x ADV-ADV-V-O-S + " 22x ADV-ADV-V-S + " 9x ADV-ADV-V-S-ADV + " 1x ADV-ADV-V-S-ADV-ADV + " 1x ADV-ADV-V-S-ADV-ADV-ADV + " 1x ADV-ADV-V-S-ADV-O + " 5x ADV-ADV-V-S-O + " 6x ADV-ADV-VC-P + " 4x ADV-ADV-VC-P-ADV + " 1x ADV-ADV-VC-P-ADV-S + " 3x ADV-ADV-VC-P-S + " 1x ADV-ADV-VC-P-S-ADV + " 2x ADV-ADV-VC-S-P + " 5x ADV-IO + " 1x ADV-IO-ADV + " 1x ADV-IO-ADV-S-ADV + " 1x ADV-IO-ADV-V + " 3x ADV-IO-O-V + " 3x ADV-IO-S + " 2x ADV-IO-S-V + " 7x ADV-IO-V + " 3x ADV-IO-V-ADV + " 7x ADV-IO-V-O + " 1x ADV-IO-V-O-ADV + " 2x ADV-IO-V-S-ADV + " 57x ADV-O + " 5x ADV-O-ADV + " 1x ADV-O-ADV-ADV-V + " 14x ADV-O-ADV-V + " 3x ADV-O-ADV-V-ADV + " 1x ADV-O-ADV-V-ON + " 1x ADV-O-ADV-V-S-ADV + " 1x ADV-O-IO-S-V + " 4x ADV-O-IO-V + " 1x ADV-O-ON-V + " 1x ADV-O-ON-V-ADV + " 3x ADV-O-S-V + " 1x ADV-O-S-V-ON + " 156x ADV-O-V + " 29x ADV-O-V-ADV + " 6x ADV-O-V-ADV-ADV + " 1x ADV-O-V-ADV-S + " 7x ADV-O-V-IO + " 1x ADV-O-V-IO-ADV + " 5x ADV-O-V-ON + " 4x ADV-O-V-S + " 4x ADV-O-V-S-ADV + " 1x ADV-ON-O-IO-V + " 1x ADV-ON-O-V + " 1x ADV-ON-O-V-ADV + " 2x ADV-ON-V-O + " 60x ADV-P + " 8x ADV-P-ADV + " 1x ADV-P-ADV-ADV + " 2x ADV-P-ADV-S + " 3x ADV-P-ADV-VC + " 1x ADV-P-ADV-VC-S + " 14x ADV-P-S + " 5x ADV-P-S-ADV + " 1x ADV-P-S-VC + " 41x ADV-P-VC + " 12x ADV-P-VC-ADV + " 2x ADV-P-VC-ADV-S + " 1x ADV-P-VC-ADV-S-ADV + " 13x ADV-P-VC-S + " 2x ADV-P-VC-S-ADV + " 76x ADV-S + " 6x ADV-S-ADV + " 1x ADV-S-ADV-ADV-ADV-V-O + " 1x ADV-S-ADV-ADV-O-ADV-V + " 3x ADV-S-ADV-ADV-V + " 2x ADV-S-ADV-ADV-V-ADV + " 2x ADV-S-ADV-ADV-V-ADV-ADV + " 1x ADV-S-ADV-ADV-V-ADV-ADV-ADV + " 1x ADV-S-ADV-ADV-V-ADV-ADV-O + " 2x ADV-S-ADV-ADV-V-O + " 2x ADV-S-ADV-ADV-V-O-ADV + " 1x ADV-S-ADV-ADV-V-O-IO-ADV + " 3x ADV-S-ADV-O-V + " 2x ADV-S-ADV-O-V-ADV + " 1x ADV-S-ADV-P + " 1x ADV-S-ADV-P-VC-ADV + " 37x ADV-S-ADV-V + " 20x ADV-S-ADV-V-ADV + " 5x ADV-S-ADV-V-ADV-ADV + " 3x ADV-S-ADV-V-ADV-ADV-ADV + " 1x ADV-S-ADV-V-ADV-IO-ADV + " 4x ADV-S-ADV-V-ADV-O + " 1x ADV-S-ADV-V-IO-ADV + " 20x ADV-S-ADV-V-O + " 2x ADV-S-ADV-V-O-ADV + " 1x ADV-S-ADV-V-O-ON-ADV + " 1x ADV-S-ADV-VC-P + " 3x ADV-S-IO + " 1x ADV-S-IO-ADV-ADV + " 1x ADV-S-IO-V-O + " 1x ADV-S-O-ADV + " 1x ADV-S-O-ADV-V + " 12x ADV-S-O-V + " 4x ADV-S-O-V-ADV + " 1x ADV-S-O-V-ON + " 18x ADV-S-P + " 1x ADV-S-P-ADV + " 2x ADV-S-P-ADV-VC + " 21x ADV-S-P-VC + " 4x ADV-S-P-VC-ADV + " 154x ADV-S-V + " 87x ADV-S-V-ADV + " 24x ADV-S-V-ADV-ADV + " 3x ADV-S-V-ADV-ADV-ADV + " 1x ADV-S-V-ADV-ADV-ADV-ADV + " 2x ADV-S-V-ADV-O + " 1x ADV-S-V-IO + " 2x ADV-S-V-IO-ADV + " 1x ADV-S-V-IO-ADV-ADV + " 5x ADV-S-V-IO-O + " 65x ADV-S-V-O + " 25x ADV-S-V-O-ADV + " 2x ADV-S-V-O-ADV-ADV + " 2x ADV-S-V-O-IO + " 1x ADV-S-V-O-IO-ADV + " 1x ADV-S-V-O-ON + " 9x ADV-S-VC-P + " 1137x ADV-V + " 447x ADV-V-ADV + " 84x ADV-V-ADV-ADV + " 14x ADV-V-ADV-ADV-ADV + " 1x ADV-V-ADV-ADV-ADV-ADV + " 1x ADV-V-ADV-ADV-O-ADV + " 3x ADV-V-ADV-ADV-S + " 1x ADV-V-ADV-ADV-S-ADV + " 3x ADV-V-ADV-IO + " 2x ADV-V-ADV-IO-O + " 23x ADV-V-ADV-O + " 8x ADV-V-ADV-O-ADV + " 1x ADV-V-ADV-O-S-ADV + " 31x ADV-V-ADV-S + " 8x ADV-V-ADV-S-ADV + " 1x ADV-V-ADV-S-ADV-ADV + " 41x ADV-V-IO + " 17x ADV-V-IO-ADV + " 2x ADV-V-IO-ADV-O + " 1x ADV-V-IO-ADV-S + " 31x ADV-V-IO-O + " 5x ADV-V-IO-O-ADV + " 11x ADV-V-IO-S + " 2x ADV-V-IO-S-ADV + " 1x ADV-V-IO-S-O + " 661x ADV-V-O + " 125x ADV-V-O-ADV + " 11x ADV-V-O-ADV-ADV + " 5x ADV-V-O-ADV-ADV-ADV + " 3x ADV-V-O-ADV-S + " 1x ADV-V-O-ADV-S-IO-ADV + " 16x ADV-V-O-IO + " 1x ADV-V-O-IO-ADV + " 7x ADV-V-O-ON + " 2x ADV-V-O-ON-ADV + " 19x ADV-V-O-S + " 9x ADV-V-O-S-ADV + " 3x ADV-V-O-S-ADV-ADV + " 225x ADV-V-S + " 81x ADV-V-S-ADV + " 14x ADV-V-S-ADV-ADV + " 3x ADV-V-S-ADV-ADV-ADV + " 1x ADV-V-S-ADV-ADV-ADV-ADV + " 1x ADV-V-S-ADV-O + " 1x ADV-V-S-ADV-O-ADV + " 1x ADV-V-S-IO + " 2x ADV-V-S-IO-ADV + " 52x ADV-V-S-O + " 15x ADV-V-S-O-ADV + " 1x ADV-V-S-O-ADV-ADV + " 6x ADV-VC + " 3x ADV-VC-ADV-P + " 1x ADV-VC-ADV-P-ADV + " 52x ADV-VC-P + " 10x ADV-VC-P-ADV + " 1x ADV-VC-P-ADV-ADV + " 1x ADV-VC-P-ADV-S + " 16x ADV-VC-P-S + " 3x ADV-VC-P-S-ADV + " 1x ADV-VC-S-ADV-P + " 22x ADV-VC-S-P + " 7x ADV-VC-S-P-ADV + " 174x ADVNCL + " 10x ADVaADV + " 14x AdjpAdjp + " 4x AdjpAdjpAdjpAdjp + " 2x AdjpAdjpAdjpAdjpAdjp + " 3x AdjpAdjpAdjpAdjpAdjpAdjp + " 2x AdjpAdjpAdjpAdjpAdjpAdjpAdjp + " 1x AdjpAdjpN + " 74x AdjpAdvp + " 2x AdjpAdvpNAdvp + " 6x AdjpCL + " 9x AdjpDative + " 1368x AdjpNp + " 15x AdjpPp + " 121x AdjpaAdjp + " 5x AdjpofNp + " 7x AdvAdv + " 110x AdvPp + " 43x AdvpAdjp + " 1x AdvpAdvpAdvp + " 58x AdvpCL + " 616x AdvpNp + " 1x AdvpNump + " 7x AdvpaAdvp + " 846x All-NP + " 175x BeVerb + " 15x CL-NP + " 3829x CLaCL + " 2x CLaNCL + " 27x CLandCLN + " 1x CLandClClandClandClandCl + " 1579x ClCl + " 45x ClClCl + " 17x ClClClCl + " 11x ClClClClCl + " 6x ClClClClClCl + " 3x ClClClClClClCl + " 1x ClClClClClClClCl + " 2x ClClClClClClClClCl + " 2x ClClClClClClClClClCl + " 2x ClClClClClClClClClClClCl + " 887x ClClN + " 5576x Conj-CL + " 1x ConjConj + " 1x ConjNADV + " 2x ConjNAdjP + " 8x ConjNAdjp + " 2x ConjNAdvp + " 233x ConjNCL + " 3x ConjNNCL + " 1x ConjNNNp + " 260x ConjNNp + " 5x ConjNNump + " 6x ConjNNumpN + " 5x ConjNP + " 166x ConjNPp + " 180x ConjNVP + " 2x ConjNp + " 4x DativeAdjp + " 162x Demo-NP + " 1282x DetAdj + " 22x DetAdv + " 2011x DetCL + " 15696x DetNP + " 63x DetNump + " 1x EitherAdvpOrPp + " 3x EitherOrAdjp + " 1x EitherOrNAdvp + " 6x EitherOrNCL + " 1x EitherOrNNNp + " 7x EitherOrNNp + " 4x EitherOrNVp + " 14x EitherOrVp + " 2x IO-ADV + " 1x IO-ADV-ADV-V-ADV + " 1x IO-ADV-S-ADV-V-O-ADV + " 5x IO-ADV-V + " 2x IO-ADV-V-ADV + " 1x IO-ADV-V-O + " 3x IO-ADV-V-S + " 19x IO-O + " 1x IO-O-ADV-ADV-ADV + " 1x IO-O-ADV-V + " 1x IO-O-ADV-V-S + " 1x IO-O-S-V-ADV + " 11x IO-O-V + " 6x IO-S + " 13x IO-S-ADV + " 1x IO-S-ADV-ADV + " 1x IO-S-ADV-V + " 3x IO-S-O-V + " 1x IO-S-O-V-ADV + " 8x IO-S-V + " 3x IO-S-V-ADV + " 4x IO-S-V-O + " 1x IO-S-V-O-ADV + " 48x IO-V + " 3x IO-V-ADV + " 2x IO-V-ADV-ADV + " 1x IO-V-ADV-O + " 23x IO-V-O + " 3x IO-V-O-ADV + " 1x IO-V-O-ADV-ADV + " 1x IO-V-O-ON-ADV + " 11x IO-V-S + " 4x IO-V-S-ADV + " 2x IO-V-S-O + " 22x IONCL + " 51x IntjNCL + " 6x NAdjp + " 142x NAdvp_hN + " 5x NCLaCL + " 1x NCLaCLaCL + " 2x NNNp + " 48x NNp + " 4x NNpaNp + " 1x NNpaNpaNp + " 874x NP-CL + " 412x NP-Demo + " 13x NP-Prep + " 95x NP-all + " 236x NPDetAdj + " 6819x NPofNP + " 54x NPp + " 2x NPpaPp + " 1908x Np-Appos + " 1371x NpAdjp + " 46x NpAdvp + " 781x NpNCL + " 18x NpNpNp + " 15x NpNpNpNp + " 8x NpNpNpNpNp + " 3x NpNpNpNpNpNp + " 2x NpNpNpNpNpNpNpNp + " 1x NpNpNpNpNpNpNpNpNp + " 1x NpNpNpNpNpNpNpNpNpNp + " 1x NpNpNpNpNpNpNpNpNpNpNpNpNpNpNpAndNp + " 1x NpNpNpNpNpNpNpNpNpNpNpNpNpNpNpNp + " 101x NpNump + " 676x NpPp + " 16x NpPron + " 1366x NpaNp + " 6x NumpAdjp + " 219x NumpNP + " 12x NumpNump + " 5x NumpNumpNump + " 4x NumpNumpNumpN + " 39x O-ADV + " 6x O-ADV-ADV + " 1x O-ADV-ADV-ADV + " 1x O-ADV-ADV-ADV-V + " 14x O-ADV-ADV-V + " 3x O-ADV-ADV-V-ADV + " 1x O-ADV-ADV-V-IO + " 1x O-ADV-IO-V + " 2x O-ADV-S-ADV-V + " 6x O-ADV-S-V + " 174x O-ADV-V + " 28x O-ADV-V-ADV + " 5x O-ADV-V-ADV-ADV + " 1x O-ADV-V-ADV-S + " 1x O-ADV-V-ADV-S-ADV-ADV-ADV + " 7x O-ADV-V-IO + " 3x O-ADV-V-ON + " 1x O-ADV-V-ON-ADV + " 8x O-ADV-V-S + " 2x O-ADV-V-S-ADV + " 1x O-ADV-V-S-ADV-ADV-ADV-ADV-ADV + " 7x O-IO + " 1x O-IO-ADV-ADV-V + " 4x O-IO-ADV-V + " 26x O-IO-V + " 4x O-IO-V-ADV + " 1x O-IO-V-ADV-ADV + " 3x O-IO-V-S + " 1x O-IO-V-S-ADV + " 7x O-ON + " 1x O-ON-ADV + " 1x O-ON-IO + " 10x O-ON-V + " 1x O-ON-V-ADV + " 1x O-ON-V-IO-ADV + " 1x O-S + " 21x O-S-ADV-V + " 3x O-S-ADV-V-ADV + " 1x O-S-ADV-V-IO + " 4x O-S-IO-V + " 1x O-S-ON-V-ADV-ADV + " 86x O-S-V + " 20x O-S-V-ADV + " 4x O-S-V-ADV-ADV + " 1x O-S-V-ADV-ADV-ADV + " 19x O-S-V-IO + " 3x O-S-V-IO-ADV + " 1076x O-V + " 276x O-V-ADV + " 47x O-V-ADV-ADV + " 9x O-V-ADV-ADV-ADV + " 2x O-V-ADV-ADV-ADV-ADV + " 6x O-V-ADV-S + " 2x O-V-ADV-S-ADV + " 95x O-V-IO + " 19x O-V-IO-ADV + " 1x O-V-IO-ADV-ADV + " 17x O-V-IO-S + " 3x O-V-IO-S-ADV + " 1x O-V-IO-S-ON-ADV + " 8x O-V-ON + " 1x O-V-ON-IO + " 94x O-V-S + " 30x O-V-S-ADV + " 9x O-V-S-ADV-ADV + " 1x O-V-S-ADV-ADV-ADV + " 1x O-V-S-ADV-IO + " 5x O-V-S-IO + " 3x O-V-S-ON + " 1x O-V-S-ON-ADV + " 1x ON-ADV-V-O + " 11x ON-O-V + " 3x ON-O-V-ADV + " 1x ON-O-V-ADV-ADV + " 2x ON-S-V-O + " 1x ON-V + " 1x ON-V-ADV-O + " 1x ON-V-ADV-O-ADV + " 19x ON-V-O + " 4x ON-V-O-ADV + " 1x ON-V-S-O + " 137x ONCL + " 43x P-ADV + " 4x P-ADV-ADV + " 1x P-ADV-ADV-ADV + " 1x P-ADV-ADV-S + " 1x P-ADV-ADV-S-VC + " 11x P-ADV-S + " 3x P-ADV-S-ADV + " 1x P-ADV-S-ADV-VC + " 1x P-ADV-S-VC + " 24x P-ADV-VC + " 1x P-ADV-VC-ADV + " 8x P-ADV-VC-S + " 208x P-S + " 17x P-S-ADV + " 1x P-S-ADV-ADV + " 3x P-S-ADV-VC + " 38x P-S-VC + " 6x P-S-VC-ADV + " 292x P-VC + " 60x P-VC-ADV + " 10x P-VC-ADV-ADV + " 9x P-VC-ADV-S + " 1x P-VC-ADV-S-ADV + " 203x P-VC-S + " 15x P-VC-S-ADV + " 2x P-VC-S-ADV-ADV + " 156x PNCL + " 3x PP-Adjp + " 2x PpAdvp + " 121x PpNpNNp + " 4x PpPpPp + " 4x PpPpPpPp + " 2x PpPpPpPpPp + " 1x PpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPp + " 11044x PrepNp + " 144x PronNP + " 572x PtclCL + " 100x S-ADV + " 8x S-ADV-ADV + " 1x S-ADV-ADV-ADV-ADV-O-V + " 1x S-ADV-ADV-ADV-O-IO-V + " 1x S-ADV-ADV-ADV-O-V + " 7x S-ADV-ADV-ADV-V + " 3x S-ADV-ADV-ADV-V-ADV + " 1x S-ADV-ADV-ADV-V-ADV-ADV + " 1x S-ADV-ADV-ADV-V-O + " 1x S-ADV-ADV-ADV-V-O-ADV + " 1x S-ADV-ADV-IO + " 6x S-ADV-ADV-O-V + " 1x S-ADV-ADV-O-V-ADV + " 1x S-ADV-ADV-ON-V-O + " 1x S-ADV-ADV-P + " 1x S-ADV-ADV-P-VC + " 45x S-ADV-ADV-V + " 14x S-ADV-ADV-V-ADV + " 6x S-ADV-ADV-V-ADV-ADV + " 2x S-ADV-ADV-V-ADV-O + " 2x S-ADV-ADV-V-IO + " 22x S-ADV-ADV-V-O + " 6x S-ADV-ADV-V-O-ADV + " 1x S-ADV-ADV-V-O-ADV-ADV + " 1x S-ADV-ADV-V-O-IO + " 1x S-ADV-ADV-VC-P-ADV + " 1x S-ADV-IO-O + " 1x S-ADV-IO-V + " 2x S-ADV-IO-V-O + " 1x S-ADV-O + " 2x S-ADV-O-ADV-V + " 31x S-ADV-O-V + " 5x S-ADV-O-V-ADV + " 1x S-ADV-O-V-ADV-ADV + " 3x S-ADV-O-V-IO + " 1x S-ADV-O-V-ON-IO + " 1x S-ADV-ON-V-ADV + " 31x S-ADV-P + " 1x S-ADV-P-ADV-ADV + " 16x S-ADV-P-VC + " 4x S-ADV-P-VC-ADV + " 360x S-ADV-V + " 152x S-ADV-V-ADV + " 36x S-ADV-V-ADV-ADV + " 3x S-ADV-V-ADV-ADV-ADV + " 1x S-ADV-V-ADV-IO + " 7x S-ADV-V-ADV-O + " 1x S-ADV-V-ADV-O-ADV-ADV + " 7x S-ADV-V-IO + " 4x S-ADV-V-IO-ADV + " 5x S-ADV-V-IO-O + " 1x S-ADV-V-IO-O-ADV + " 190x S-ADV-V-O + " 40x S-ADV-V-O-ADV + " 3x S-ADV-V-O-ADV-ADV + " 1x S-ADV-V-O-ADV-ON-ADV + " 4x S-ADV-V-O-IO + " 1x S-ADV-V-O-IO-ADV + " 3x S-ADV-V-O-ON + " 3x S-ADV-VC-ADV-P + " 50x S-ADV-VC-P + " 5x S-ADV-VC-P-ADV + " 1x S-ADV-VC-P-ADV-ADV + " 40x S-IO + " 8x S-IO-ADV + " 2x S-IO-ADV-V + " 1x S-IO-O + " 1x S-IO-O-ADV-V + " 3x S-IO-O-V + " 12x S-IO-V + " 6x S-IO-V-ADV + " 1x S-IO-V-ADV-ADV + " 1x S-IO-V-ADV-O + " 6x S-IO-V-O + " 2x S-IO-V-O-ADV + " 26x S-O + " 2x S-O-ADV + " 1x S-O-ADV-IO-V + " 40x S-O-ADV-V + " 3x S-O-ADV-V-ADV + " 2x S-O-ADV-V-IO + " 3x S-O-IO-V + " 1x S-O-IO-V-ADV + " 2x S-O-ON-V + " 202x S-O-V + " 48x S-O-V-ADV + " 8x S-O-V-ADV-ADV + " 5x S-O-V-IO + " 1x S-O-V-IO-ADV + " 7x S-O-V-ON + " 1x S-O-V-ON-ADV + " 1x S-ON-O-V + " 1x S-ON-V-O + " 300x S-P + " 55x S-P-ADV + " 10x S-P-ADV-ADV + " 1x S-P-ADV-ADV-ADV + " 1x S-P-ADV-ADV-VC + " 17x S-P-ADV-VC + " 2x S-P-ADV-VC-ADV + " 240x S-P-VC + " 53x S-P-VC-ADV + " 5x S-P-VC-ADV-ADV + " 639x S-V + " 459x S-V-ADV + " 119x S-V-ADV-ADV + " 13x S-V-ADV-ADV-ADV + " 2x S-V-ADV-ADV-ADV-ADV + " 1x S-V-ADV-ADV-ADV-O + " 17x S-V-ADV-O + " 3x S-V-ADV-O-ADV + " 1x S-V-ADV-O-IO + " 1x S-V-ADV-O-IO-ADV + " 36x S-V-IO + " 12x S-V-IO-ADV + " 2x S-V-IO-ADV-ADV + " 1x S-V-IO-ADV-O + " 27x S-V-IO-O + " 4x S-V-IO-O-ADV + " 1x S-V-IO-O-ADV-ADV + " 506x S-V-O + " 162x S-V-O-ADV + " 10x S-V-O-ADV-ADV + " 1x S-V-O-ADV-ADV-ADV + " 2x S-V-O-ADV-ON + " 9x S-V-O-IO + " 9x S-V-O-ON + " 2x S-V-O-ON-ADV + " 2x S-V-O-ON-ADV-ADV + " 20x S-VC + " 1x S-VC-ADV + " 1x S-VC-ADV-ADV-P + " 2x S-VC-ADV-ADV-P-ADV + " 24x S-VC-ADV-P + " 1x S-VC-ADV-P-ADV + " 397x S-VC-P + " 40x S-VC-P-ADV + " 1x S-VC-P-ADV-ADV + " 1x S-VC-P-ADV-ADV-ADV + " 177x SNCL + " 1687x V-ADV + " 288x V-ADV-ADV + " 40x V-ADV-ADV-ADV + " 2x V-ADV-ADV-ADV-ADV + " 1x V-ADV-ADV-ADV-O + " 2x V-ADV-ADV-ADV-S + " 1x V-ADV-ADV-ADV-S-ADV-ADV + " 3x V-ADV-ADV-O + " 8x V-ADV-ADV-S + " 3x V-ADV-ADV-S-ADV + " 4x V-ADV-IO + " 2x V-ADV-IO-ADV + " 1x V-ADV-IO-ADV-S-ADV + " 1x V-ADV-IO-O + " 137x V-ADV-O + " 18x V-ADV-O-ADV + " 5x V-ADV-O-ADV-ADV + " 1x V-ADV-ON-ADV + " 112x V-ADV-S + " 36x V-ADV-S-ADV + " 3x V-ADV-S-ADV-ADV + " 1x V-ADV-S-ADV-O + " 3x V-ADV-S-O + " 222x V-IO + " 45x V-IO-ADV + " 6x V-IO-ADV-ADV + " 1x V-IO-ADV-ADV-O + " 7x V-IO-ADV-O + " 2x V-IO-ADV-S + " 2x V-IO-ADV-S-ADV + " 142x V-IO-O + " 12x V-IO-O-ADV + " 3x V-IO-O-ADV-ADV + " 2x V-IO-O-ON + " 3x V-IO-O-S + " 45x V-IO-S + " 14x V-IO-S-ADV + " 2x V-IO-S-ADV-ADV + " 9x V-IO-S-O + " 3x V-IO-S-O-ADV + " 2725x V-O + " 551x V-O-ADV + " 80x V-O-ADV-ADV + " 9x V-O-ADV-ADV-ADV + " 2x V-O-ADV-ADV-ADV-ADV + " 1x V-O-ADV-ADV-ADV-ADV-ADV + " 1x V-O-ADV-ADV-S-ADV + " 1x V-O-ADV-IO + " 1x V-O-ADV-IO-ADV-ADV + " 3x V-O-ADV-ON + " 67x V-O-IO + " 11x V-O-IO-ADV + " 2x V-O-IO-ADV-ADV + " 2x V-O-IO-ON + " 49x V-O-ON + " 5x V-O-ON-ADV + " 1x V-O-ON-ADV-ADV-ADV + " 1x V-O-ON-IO + " 1x V-O-ON-IO-ADV + " 103x V-O-S + " 20x V-O-S-ADV + " 2x V-O-S-ADV-ADV + " 3x V-O-S-ADV-ADV-ADV + " 1x V-O-S-ADV-ON + " 1x V-O-S-IO + " 1x V-O-S-IO-ADV + " 6x V-O-S-ON + " 1x V-O-S-ON-ADV + " 1x V-ON + " 4x V-ON-O + " 1x V-ON-O-ADV + " 609x V-S + " 303x V-S-ADV + " 55x V-S-ADV-ADV + " 16x V-S-ADV-ADV-ADV + " 2x V-S-ADV-ADV-IO + " 14x V-S-ADV-O + " 2x V-S-ADV-O-ADV + " 1x V-S-ADV-O-ADV-ADV + " 1x V-S-ADV-O-IO + " 6x V-S-IO + " 1x V-S-IO-ADV + " 1x V-S-IO-O + " 1x V-S-IO-O-ON + " 149x V-S-O + " 26x V-S-O-ADV + " 4x V-S-O-ADV-ADV + " 2x V-S-O-IO + " 1x V-S-O-IO-ADV + " 4x VC-ADV-ADV-P + " 1x VC-ADV-ADV-S-P + " 14x VC-ADV-P + " 2x VC-ADV-P-ADV + " 1x VC-ADV-P-S + " 2x VC-ADV-P-S-ADV + " 4x VC-ADV-S-P + " 1x VC-ADV-S-P-ADV + " 268x VC-P + " 52x VC-P-ADV + " 4x VC-P-ADV-ADV + " 4x VC-P-ADV-S + " 1x VC-P-ADV-S-ADV + " 43x VC-P-S + " 2x VC-P-S-ADV + " 2x VC-P-S-ADV-ADV + " 1x VC-S + " 5x VC-S-ADV-P + " 92x VC-S-P + " 20x VC-S-P-ADV + " 3x VC-S-P-ADV-ADV + " 2x VCNCL + " 2843x VNCL + " 32x VerbBe + " 2x VpVp + " 3x aAdvpaAdvp + " 142x aCLaCL + " 13x aCLaCLaCL + " 108x aNpaNp + " 9x aNpaNpaNp + " 13x aPpaPp + " 4x aPpaPpaPp + " 15x intjNP + " 6x notADVbutADV + " 6x notCLbutCL + " 210x notCLbutCLNCL + " 49x notNPbutNP + " 30x notPPbutPP + " 2x notVPbutVP + " 607x ofNPNP + " 3029x sub-CL + " 894x that-VP + type= 891x apposition-group + " 8075x conjuncted-wg + " 4957x group + " 1712x modifier-clause-scope + " 29645x modifier-scope + " 12166x wrapper-clause-scope + " 11264x wrapper-scope diff --git a/report/2022-11-01/errors.txt b/report/2022-11-01/errors.txt new file mode 100644 index 0000000..e69de29 diff --git a/report/2022-11-01/namespaces.txt b/report/2022-11-01/namespaces.txt new file mode 100644 index 0000000..6eb7666 --- /dev/null +++ b/report/2022-11-01/namespaces.txt @@ -0,0 +1,7 @@ +OK 1 namespace for book : 27x None +OK 1 namespace for error : 1x None +OK 1 namespace for milestone : 9605x None +OK 1 namespace for p : 8011x None +OK 1 namespace for sentence : 8011x None +OK 1 namespace for w : 137779x None +OK 1 namespace for wg : 114878x None diff --git a/report/gnt/elements.txt b/report/gnt/elements.txt new file mode 100644 index 0000000..5116555 --- /dev/null +++ b/report/gnt/elements.txt @@ -0,0 +1,7 @@ +Inventory of tags and attributes in the source XML file(s). +Contains the following sections: + Remaining Attributes and Elements + + + +Remaining Attributes and Elements diff --git a/report/gnt/errors.txt b/report/gnt/errors.txt new file mode 100644 index 0000000..e69de29 diff --git a/report/gnt/namespaces.txt b/report/gnt/namespaces.txt new file mode 100644 index 0000000..e69de29 diff --git a/tf/0.1.1/Rule.tf b/tf/0.1.1/Rule.tf new file mode 100644 index 0000000..6ed9fd4 --- /dev/null +++ b/tf/0.1.1/Rule.tf @@ -0,0 +1,93248 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Syntactical rule +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +154024 P2CL +NPofNP +NPofNP +Np-Appos +Np-Appos +Np-Appos +NPofNP +NPofNP +154033 Conj13CL +S-V-O +DetNP +154037 S-V-O +DetNP +154040 S-V-O +NpaNp +DetNP +154044 DetNP +NPofNP +154047 S-V-O-ADV +NpaNp +DetNP +154051 DetNP +PrepNp +DetNP +154055 S-V-O +DetNP +154058 S-V-O +DetNP +154061 S-V-O +DetNP +154064 S-V-O +DetNP +154067 S-V-O +DetNP +154070 S-V-O-ADV +DetNP +PrepNp +DetNP +154075 S-V-O-ADV +DetNP +PrepNp +DetNP +154080 S-V-O +DetNP +154083 S-V-O +Np-Appos +DetNP +DetNP +154088 Conj-CL +Conj14CL +S-V-O-ADV +DetNP +PrepNp +NPofNP +DetNP +154096 S-V-O +DetNP +154099 S-V-O +DetNP +154102 S-V-O +DetNP +154105 S-V-O +DetNP +154108 S-V-O +DetNP +154111 S-V-O +DetNP +154114 S-V-O +DetNP +154117 S-V-O +DetNP +154120 S-V-O +DetNP +154123 S-V-O +DetNP +154126 S-V-O +DetNP +154129 S-V-O +DetNP +154132 S-V-O-ADV +NpaNp +DetNP +154136 DetNP +NPofNP +PrepNp +DetNP +NPofNP +154142 Conj-CL +Conj12CL +ADV-S-V-O +PrepNp +DetNP +NPofNP +DetNP +154150 S-V-O +DetNP +154153 S-V-O +DetNP +154156 S-V-O +DetNP +154159 S-V-O +DetNP +154162 S-V-O +DetNP +154165 S-V-O +DetNP +154168 S-V-O +DetNP +154171 S-V-O +DetNP +154174 S-V-O +DetNP +154177 S-V-O +DetNP +154180 S-V-O +Np-Appos +DetNP +DetNP +NPofNP +NP-CL +ADV-V-S +PrepNp +Np-Appos +DetCL +VC-P +154192 Conj-CL +Conj3CL +S-P +All-NP +DetNP +NpPp +2Pp +PrepNp +PrepNp +NpAdjp +154203 S-P +2Pp +PrepNp +PrepNp +DetNP +NPofNP +NpAdjp +154211 S-P +2Pp +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NpAdjp +154220 Conj-CL +S-P-VC +ofNPNP +DetNP +Np-Appos +DetNP +154227 ClCl2 +V-S-IO +Np-Appos +DetNP +NPofNP +DetNP +ADV-V-O +AdvpCL +sub-CL +V-S +ADV-V-ADV +PrepNp +PrepNp +NpAdjp +154242 Conj-CL +S-ADV-V-O +Np-Appos +DetNP +NPofNP +CLaCL +P-VC +154250 ADV-V-O +O-V +ADV-V-O +154254 Conj-CL +154256 O-S-V +NPofNP +PrepNp +154260 CLaCL +ClCl +154263 Np2CL +Np-Appos +NPofNP +V-O-O2 +DetNP +NPofNP +sub-CL +S-P-VC +DetCL +ADV-V +PrepNp +PrepNp +NpAdjp +154277 CLaCL +V-O +154281 DetNP +NPofNP +sub-CL +S-V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +154291 Conj-CL +ClCl +S-V +NP-all +sub-CL +V-S +DetCL +V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +154304 S-ADV-V +DetNP +PrepNp +154308 V-O +154310 V-O-O2 +DetNP +NPofNP +NP-CL +S-VC-P +BeVerb +P-S +PrepNp +DetNP +154320 Conj-CL +CLaCL +CLaCL +ClCl +S-ADV-V +DetNP +V-ADV +PrepNp +DetNP +sub-CL +V-O-S +DetNP +NPofNP +154334 CLaCL +V-O +DetNP +NPofNP +154339 ADV-V-O-ADV +PrepNp +ADV-V-O +154343 V-O-O2 +DetNP +NPofNP +154347 Conj-CL +ClCl2 +S-V-ADV-ADV +DetNP +PrepNp +NPofNP +DetNP +PrepNp +NPofNP +Np-Appos +DetNP +154359 PrepNp +PrepNp +154362 ClCl +P-VC-S +DetNP +AdjpNp +V2CL +NPofNP +DetAdj +Conj-CL +CLaCL +V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +154377 V-ADV +V-O +154380 Conj-CL +CLaCL +CLaCL +ADV-S-V +V2CL +Np-Appos +DetNP +154388 S-ADV +All-NP +PrepNp +154392 ADV-V-ADV-O +V-O +All-NP +DetNP +NpaNp +154398 NPofNP +DetNP +PrepNp +ADV-S-V +DetNP +154404 Conj-CL +154406 ClCl +ADV2CL +PrepNp +NPofNP +DetNP +Conj-CL +154413 PrepNp +DetNP +Conj-CL +ClCl +154418 Np2CL +Np-Appos +NPofNP +PrepNp +DetNP +NPofNP +Conj-CL +ADV-V-S +PrepNp +NP-CL +V2CL +S-V-O +Np-Appos +DetNP +NPofNP +DetNP +154435 CLaCL +ADV-S-ADV-V-ADV-O +ADV-V-O +DetNP +PrepNp +DetNP +NPofNP +DetNP +AdjpNp +V2CL +154447 V-O-ADV +PrepNp +CLaCL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +154455 ClCl +ClCl2 +sub-CL +V2CL +V-IO +sub-CL +S-ADV-V-O +V2CL +154464 Conj-CL +CLaCL +S-ADV-V +V-O +DetNP +154471 S-V-O +DetNP +NP-CL +O-V-ADV +PrepNp +DetNP +ADV-V-ADV +V2CL +PrepNp +P-VC-S +DetNP +154483 Conj-CL +ADV-V-ADV-ADV +V-O +DetNP +NpAdjp +154489 Conj-CL +Conj3CL +ADV-V-O +V-ADV +PrepNp +DetNP +DetNP +NpPp +PrepNp +Np-Appos +DetNP +NPofNP +154502 ADV-V-O +V2CL +154505 ADV-V-IO-O +V-O +DetNP +NPofNP +Np-Appos +Conj3Np +154514 Conj-CL +ADV-ADV-V-ADV +V-ADV-O +PrepNp +ADV-V-ADV +PrepNp +PrepNp +AdjpNp +PrepNp +DetNP +NPofNP +154526 Conj-CL +ClCl2 +V-S +154530 NPofNP +PrepNp +DetNP +154534 ClCl +Conj3CL +ADV-V-O +V2CL +NpaNp +DetNP +154541 DetNP +NPofNP +154544 V-ADV +PrepNp +154547 ClCl +V-ADV +sub-CL +PtclCL +V-IO +Conj-CL +V-S-O +V-O-ADV +DetNP +DetCL +V-O +154559 Conj-CL +ClCl +Conj3CL +S-ADV-V-O-ADV +V2CL +NpaNp +DetNP +154567 DetNP +NPofNP +154570 V-ADV +PrepNp +154573 VC-P-ADV +PrepNp +DetNP +NPofNP +sub-CL +V-S +DetCL +V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +154585 ADV-V-O +PrepNp +DetNP +NPofNP +154590 CLaCL +ADV-S-ADV-V-ADV +154593 V2CL +V-ADV +PrepNp +DetNP +154598 ADV-V-O-ADV +V2CL +All-NP +Np-Appos +DetNP +NpPp +2Pp +Conj2Pp +PrepNp +154608 PrepNp +All-NP +DetNP +NPofNP +Conj2Pp +PrepNp +154615 PrepNp +DetNP +NP-CL +O-V-ADV +PrepNp +DetNP +154622 ADV-V-S +DetCL +V-ADV-ADV +PrepNp +Np-Appos +DetNP +154630 PrepNp +Np-Appos +NpaNp +154634 NpAdjp +CLaCL +S-V-ADV +DetNP +NPofNP +154641 V2CL +sub-CL +ADV-V +154645 Conj-CL +ClCl2 +V-S +DetNP +154650 NPofNP +PrepNp +DetNP +PrepNp +154655 ClCl +CLaCL +ADV-V-O +V2CL +NpaNp +DetNP +154662 DetNP +NPofNP +154665 V-ADV +PrepNp +NPofNP +sub-CL +V-S +DetCL +V-O +DetNP +NPofNP +DetNP +154676 Conj-CL +CLaCL +S-ADV-V-O +V2CL +NpaNp +DetNP +154683 DetNP +NPofNP +154686 V-ADV +PrepNp +NPofNP +154690 Conj-CL +ADV-V-O +154693 that-VP +S-V-ADV-ADV +DetNP +PrepNp +Np-Appos +DetNP +NPofNP +ADV-V +154702 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +154713 V2CL +PrepNp +NpAdjp +VC-P +sub-CL +V-S +DetCL +V-ADV-S +PrepNp +DetNP +that-VP +P-VC +154726 Conj-CL +ADV-V-S-ADV +PrepNp +NP-Demo +DetNP +Np-Appos +DetNP +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +154739 ClCl +V2CL +sub-CL +V-S +DetNP +NPofNP +DetNP +154747 Conj-CL +S-VC-P +DetCL +V-ADV-ADV +PrepNp +Np-Appos +DetNP +154755 S2CL +NPofNP +154758 PrepNp +DetAdj +ClCl +V-O +DetNP +NPofNP +O2-V-O +DetNP +NPofNP +154768 Conj-CL +CLaCL +CLaCL +S-V-O-ADV +PronNP +DetNP +DetNP +NPofNP +PrepNp +NPofNP +154779 O-ADV +NpAdjp +PrepNp +DetNP +NPofNP +154785 S-VC-P +DetNP +NPofNP +NpaNp +154790 NpAdjp +154792 CLaCL +ADV-V-ADV-S +PrepNp +Conj3Np +154797 All-NP +DetNP +154800 All-NP +DetNP +NPofNP +DetNP +154805 V-ADV-ADV-ADV +PrepNp +DetNP +Np-Appos +PrepNp +V-O +DetNP +NPofNP +154814 Conj-CL +154816 V-O +NpAdjp +NPofNP +DetNP +NpaNp +154822 V-ADV +PrepNp +DetNP +154826 Np2CL +NPofNP +V-ADV +PrepNp +DetNP +AdjpNp +V2CL +154834 Conj-CL +V-O +NpAdjp +AdjpAdvp +DetNP +154840 Conj-CL +154843 PrepNp +O2-V-O +DetNP +sub-CL +154848 that-VP +V-S-O +DetNP +ADV-V-O-IO +PrepNp +NP-Demo +DetNP +DetNP +154857 Conj-CL +ADV-S-ADV-V +DetNP +PrepNp +DetNP +NPofNP +DetNP +154865 Conj-CL +CLaCL +S-V +All-NP +NpAdjp +ADV-V-O +NpAdjp +154873 ADV-V +PrepNp +154876 aCLaCL +154878 S-O-V-ADV-ADV +PrepNp +PrepNp +154883 DetCL +ADV-V +PrepNp +ADV-ADV-VC-P-ADV +O-V +DetNP +154890 S-O-V-ADV +PrepNp +NpaNp +NpAdjp +154896 Conj3CL +S-P +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +154904 V-O +DetNP +NPofNP +154908 CLaCL +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +154915 O-V-ADV +DetNP +NpAdjp +154919 ADV-V-S-ADV-ADV-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +DetCL +V-ADV +PrepNp +154931 Conj-CL +S-V-O-ADV +154934 CLaCL +S-O-V-ADV +ADV-V +PrepNp +154939 S-V-ADV +PrepNp +154942 Conj-CL +154944 V2CL +DetNP +ClCl +V-ADV +sub-CL +ADV-P-VC-ADV-S +V2CL +V-O +All-NP +154954 ADV-V-O +154956 Conj-CL +ADV-S-ADV-V-ADV +V2CL +DetNP +PrepNp +DetNP +154963 Conj-CL +CLaCL +154966 DetNP +154968 V-O +S-V-ADV-ADV +NPofNP +PrepNp +V-ADV +PrepNp +154975 Conj-CL +154977 PrepNp +DetNP +154981 Np-Appos +DetNP +NPofNP +DetAdj +ADV-V +PrepNp +154988 ADV-S-V-ADV-ADV-ADV +DetNP +PrepNp +DetAdj +PrepNp +DetNP +V-ADV +PrepNp +DetAdj +154998 Conj-CL +ADV-ADV-V +V-ADV +NpaNp +NpNump +155004 NumpNP +155006 Conj-CL +155008 V2CL +DetCL +V2CL +ClCl2 +sub-CL +VC-P +NPofNP +DetNP +155017 that-VP +S-P-VC +NP-Demo +DetNP +155022 Conj-CL +155024 V2CL +155026 notCLbutCL2CL +ADV-V-S +PrepNp +NpAdjp +DetNP +ADV2CL +PrepNp +All-NP +NpAdjp +V-ADV +PrepNp +NPofNP +155039 CLaCL +ADV-V-O-S-ADV +DetAdj +PrepNp +DetNP +AdjpNp +155046 CLaCL +V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +155054 ClCl2 +sub-CL +VC-P +NPofNP +DetNP +V-O-ADV +155061 Conj-CL +155063 that-VP +CLaCL +IO-V-ADV +DetNP +NPofNP +PrepNp +155070 ClCl +ADV-V-O +PrepNp +ADV-ADV-V-ADV-O +PrepNp +DetNP +NPofNP +155079 DetNP +155081 ADV-V-O +Np-Appos +DetNP +NPofNP +155086 CLaCL +ADV-V-O-S-ADV +DetAdj +PrepNp +NpAdjp +AdjpAdvp +155093 CLaCL +V-IO-O +NpaNp +All-NP +DetNP +NPofNP +DetNP +155101 DetNP +NPofNP +155105 ClCl +O-IO-V +NP-all +sub-CL +ADV-V-O +V2CL +155113 DetNP +155115 Np2CL +155117 Conj-CL +155119 CLaCL +O-V +Np-Appos +DetNP +NPofNP +155125 O-V +NpAdjp +155128 CLaCL +ADV-V-O-S +DetAdj +155133 S-V +155135 V-O +155137 Conj-CL +ADV-V-ADV +155140 that-VP +S-V +PrepNp +DetNP +155145 Conj-CL +ClCl +ADV-ADV-V-ADV +V-O +DetNP +V2CL +PrepNp +Np-Appos +NpPp +DetAdj +PrepNp +NPofNP +NpaNp +155159 sub-CL +V-S +DetCL +V-ADV-ADV +PrepNp +Np-Appos +DetNP +155168 Np2CL +Np-Appos +NpPp +NpAdvp +NpaNp +NPofNP +155175 NPofNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +S-O-V +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +NpAdjp +155190 Np2CL +DetCL +V-ADV +PrepNp +NPofNP +NpaNp +155198 ADV-V-S-O +PrepNp +DetNP +CLaCL +V2CL +155205 ClCl +V2CL +sub-CL +V-S +DetNP +NPofNP +DetNP +155213 Conj-CL +ADV-V-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +S-V-O-ADV +Np-Appos +NumpNP +NpaNp +Np-Appos +DetCL +VC-P +155228 Np-Appos +DetNP +NPofNP +PrepNp +DetNP +155234 Conj-CL +VC-P +155237 Conj-CL +155239 CLaCL +V-ADV +PrepNp +155243 V-O-O2 +NPofNP +155246 Conj-CL +S-ADV-ADV-V-O +V-O +DetNP +155251 Conj-CL +ADV-V-O +V-ADV +S-ADV-ADV-V-O +Np-Appos +AdjpNp +NumpNP +NpaNp +Np-Appos +NPofNP +DetNP +155263 Np-Appos +DetNP +NPofNP +PrepNp +DetNP +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +155275 Conj-CL +V-O +155278 Conj-CL +S-ADV-ADV-V-O +V-O +NpaNp +DetNP +155284 DetNP +NPofNP +155287 Conj-CL +V-ADV-ADV +PrepNp +All-NP +DetNP +Conj3CL +V-ADV +PrepNp +DetNP +NPofNP +155298 V-O +DetNP +NPofNP +DetNP +155303 V-O-ADV +NpaNp +All-NP +155307 All-NP +PrepNp +DetNP +155311 Conj-CL +V-S-ADV +DetNP +NPofNP +PrepNp +All-NP +DetNP +155319 Conj-CL +CLaCL +V-IO-O +Np-Appos +All-NP +DetCL +ADV-V +2NpaNpaNp +ADV-V +AdjpNp +NpaNp +155331 V2CL +155333 V2CL +155336 V-O +155338 Conj-CL +V-O-S +NpPp +NpAdjp +Conj2Pp +PrepNp +DetNP +Conj4Np +155350 PrepNp +DetNP +155353 Conj-CL +ADV-V-ADV +V-O +DetNP +PrepNp +DetNP +155360 Conj-CL +ClCl2 +V-S +V-ADV-S +DetNP +NPofNP +155367 Conj-CL +ADV-V-O-ADV +V-O +DetNP +NPofNP +V2CL +155375 DetNP +NpAdvp +DetNP +sub-CL +P-VC-S +DetNP +NPofNP +DetNP +155385 DetCL +V2CL +sub-CL +S-V +155391 DetAdj +sub-CL +S-V-O +DetNP +155397 DetCL +V-O +Conj2VP +155401 DetNP +sub-CL +S-V +155406 DetAdj +sub-CL +S-V +155411 DetNP +NpAdvp +DetNP +sub-CL +S-O-V +DetNP +155418 ClCl +P-S +DetAdj +sub-CL +S-P-VC +NPofNP +155426 DetCL +V-ADV +PrepNp +sub-CL +P-VC-S +DetNP +NPofNP +DetNP +155435 ClCl +P-VC +sub-CL +Conj3CL +V-O +155441 V2CL +155443 V-O-ADV-ADV-ADV +All-NP +PrepNp +V2CL +PrepNp +155450 V2CL +155452 V2CL +sub-CL +S-P-ADV +DetNP +NPofNP +PrepNp +DetNP +155460 Conj-CL +ADV-V-O +Np-Appos +DetNP +NpPp +PrepNp +155467 S-VC-P +DetNP +NPofNP +DetNP +155472 Conj-CL +155474 sub-CL +S-V +DetNP +PrepNp +155479 ADV-V-ADV-ADV +PrepNp +sub-CL +ADV-ADV-V-ADV +V-ADV +PrepNp +DetNP +155487 S-VC-P +DetNP +NPofNP +DetNP +155492 ADV-V-S-O-ADV +V2CL +ADV-V +PrepNp +155497 notCLbutCL2CL +CLaCL +V-O +155501 V-O-ADV +PrepNp +DetNP +CLaCL +ADV2CL +PrepNp +DetNP +155509 V-ADV +All-NP +NpPp +PrepNp +DetNP +155516 DetNP +NPofNP +PrepNp +DetNP +sub-CL +CLaCL +V-O +ofNPNP +DetNP +AdjpNp +155527 V-O +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +155536 that-VP +V-ADV +V-O +NpaNp +DetNP +155542 DetNP +155544 notCLbutCL2CL +V-ADV +V2CL +V2CL +155549 Conj-CL +ClCl +PtclCL +V-IO +ClCl2 +sub-CL +PtclCL +V-S +NpaNp +DetNP +155560 DetNP +155562 NpaNp +NpAdjp +155565 AdjpNp +2Advp_h1 +PrepNp +DetNP +sub-CL +PtclCL +S-V +155573 Conj-CL +S-P-VC-ADV +PtclCL +CLaCL +S-V-O +NPofNP +ofNPNP +NP-Demo +DetNP +DetAdj +155584 V-ADV-O +DetNP +PrepNp +DetNP +NPofNP +DetNP +155591 Conj-CL +ClCl2 +PtclCL +CLaCL +S-V +155597 V2CL +S-P-VC-ADV +PrepNp +DetNP +NPofNP +DetNP +155604 Conj-CL +155606 that-VP +155608 sub-CL +ADV-V-S-ADV-ADV +ofNPNP +DetNP +DetNP +NpaNp +155615 2Advp_h1 +PrepNp +DetNP +NPofNP +DetNP +155622 that-VP +155624 DetAdj +CLaCL +ADV-V +155628 S-P-VC-ADV +PtclCL +S-V +DetNP +155633 Conj-CL +155635 that-VP +Conj3CL +S-P-VC-ADV +All-NP +DetCL +V-O +DetNP +NPofNP +DetNP +155645 S-P-VC-ADV +PtclCL +155648 DetNP +NPofNP +Np2CL +DetNP +155653 S-P-VC-ADV +PtclCL +155656 Np2CL +PrepNp +DetNP +NPofNP +DetNP +155662 Conj-CL +155664 sub-CL +ClCl +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +155672 that-VP +S-V-O-ADV +DetNP +NPofNP +PrepNp +V-ADV-O-ADV +DetNP +NPofNP +PrepNp +DetNP +155683 ClCl +V2CL +ADV-V-ADV +DetNP +NPofNP +155689 ADV-ADV-V-O +V2CL +DetNP +NPofNP +155695 BeVerb +DetNP +NPofNP +PrepNp +ADV-VC-P-ADV +PrepNp +PrepNp +DetNP +Conj3CL +ADV-ADV-O-V-S-IO +DetNP +DetNP +155708 S-IO +DetNP +DetNP +155712 ADV-V +PrepNp +155715 ClCl +PtclCL +V-IO +ClCl +ADV-V-ADV +2Advp_h1 +sub-CL +PtclCL +V-O +DetNP +AdjpNp +155728 that-VP +155730 ADV-V +155732 Conj-CL +155734 that-VP +S-ADV-V-O-ADV +All-NP +DetCL +V-O-ADV +PrepNp +DetCL +V-O +PrepNp +DetNP +NPofNP +155746 Conj-CL +155748 sub-CL +S-V-O +DetNP +NPDetAdj +NPofNP +DetAdj +V-O +155756 V-ADV +PrepNp +155759 Conj-CL +V-ADV-S +that-VP +CLaCL +V-S +NPofNP +DetNP +NPofNP +155768 ADV-S-V-ADV +All-NP +DetNP +NPofNP +PrepNp +155774 Conj-CL +155776 sub-CL +S-V-O +DetNP +AdjpNp +ofNPNP +V-O +155783 V-ADV +PrepNp +155786 Conj-CL +V-ADV-S +that-VP +CLaCL +V-S +NPofNP +DetNP +NPofNP +155795 ADV-S-ADV-V +All-NP +DetNP +NPofNP +PrepNp +155801 Conj-CL +155803 S-V-IO-O +PtclCL +S-V-O +DetNP +NPofNP +155809 Conj-CL +155811 that-VP +CLaCL +S-ADV-V-O +All-NP +DetCL +V-O +DetNP +NPofNP +PrepNp +NPofNP +S-V +155823 S-V +PtclCL +S-O-V +V2CL +155829 that-VP +155831 DetAdj +CLaCL +ADV-V +155835 V-IO-O +DetNP +DetNP +NPofNP +155840 Conj-CL +155842 ADV-V-ADV +155844 EitherOr4CL +155846 ClCl +ADV2CL +PrepNp +DetNP +sub-CL +VC-P +NPofNP +DetNP +155855 ClCl +ADV2CL +PrepNp +DetNP +sub-CL +VC-P +NPofNP +DetNP +NPofNP +155865 ClCl +ADV2CL +PrepNp +sub-CL +VC-P +NPofNP +DetNP +AdjpNp +155875 PrepNp +DetNP +NPofNP +sub-CL +ADV-V-O +O-V-O2 +AdjpNp +AdjpaAdjp +155885 Conj-CL +VC-S-P +DetNP +NPofNP +ClCl +S-P +S-P +155893 Conj-CL +S-P-VC +DetAdj +AdjpAdvp +PrepNp +DetAdj +155901 that-VP +155903 CLaCL +O-ADV +PrepNp +155907 O-ADV +PrepNp +155910 Conj-CL +S-V-IO-O +ADV-V-O +DetAdj +155915 Conj-CL +155917 S-O-V-ADV +PrepNp +DetNP +NPofNP +AdjpNp +AdvpNp +DetAdj +155925 Conj-CL +ClCl2 +IO2CL +DetCL +V-O +CLaCL +ADV-V +155933 O-V +DetNP +NPofNP +V-IO-O +AdvpNp +DetNP +155940 Conj-CL +155942 S-O-V-ADV +NpAdjp +PrepNp +155946 CLaCL +IO-V +DetCL +V-O +155951 O-ADV-V +DetCL +V-O +ADV-V +PrepNp +155958 that-VP +155960 CLaCL +V-O +DetNP +NPofNP +155965 V-O +DetNP +NPofNP +155969 Conj-CL +155971 ClCl +ClCl +CLaCL +V-O +DetNP +NPofNP +155978 V-ADV +PrepNp +DetCL +V-O +sub-CL +VC-P +NPofNP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +sub-CL +CLaCL +O-V-ADV +DetNP +NPofNP +PrepNp +NpaNp +155999 V-ADV +PrepNp +NpaNp +156004 Conj-CL +156006 sub-CL +V-O +DetCL +V-O +AdjpNp +156012 PtclCL +S-O-V +AdvpNp +DetNP +DetNP +156018 Conj-CL +156020 sub-CL +V-O-ADV +DetNP +NPofNP +AdjpNp +156026 PtclCL +S-O-V +AdvpNp +DetAdj +DetNP +156032 Conj-CL +156034 sub-CL +S-P-VC +DetNP +NPDetAdj +NPofNP +DetAdj +156041 Conj-CL +V-O +O-ADV-V-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +PrepNp +DetCL +V-ADV +156052 Conj-CL +156054 sub-CL +ADV2CL +PrepNp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +156064 Conj-CL +ClCl2 +sub-CL +V-O +ClCl +ADV-V-ADV +PrepNp +sub-CL +ClCl +S-V-ADV +DetNP +Conj2Pp +PrepNp +DetNP +156079 PrepNp +DetNP +sub-CL +V-ADV +PrepNp +DetNP +156086 ClCl +PtclCL +V-IO +V-O +DetNP +NPofNP +156093 Conj-CL +ClCl +ClCl2 +S-V-O +156098 DetNP +NPofNP +O-V-S +DetNP +NPofNP +sub-CL +VC-S-P +ofNPNP +DetNP +PrepNp +DetAdj +156110 Conj-CL +S-V-IO +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetAdj +156120 Conj-CL +ClCl +ClCl2 +sub-CL +V2CL +ADV-VC-P +PrepNp +DetNP +sub-CL +156130 ADV-V +ADV-V +Conj2Pp +PrepNp +DetNP +156136 PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-ADV +DetNP +156144 ClCl +PtclCL +V-IO +V-O +DetNP +NPofNP +156151 Conj-CL +ClCl2 +sub-CL +S-V +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +156161 ADV-V-IO +V-O +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetAdj +156172 Conj-CL +S-V-IO +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetAdj +156182 Conj-CL +ClCl +156185 V2CL +sub-CL +S2CL +DetAdj +sub-CL +156191 that-VP +ADV-V +PrepNp +DetNP +NPofNP +156197 Conj-CL +ClCl +ADV-V-ADV +sub-CL +V-S-O-ADV +DetNP +NPofNP +O-V +ofNPNP +PrepNp +DetCL +S-V-O +156210 Conj-CL +ADV-V-S +156214 Np2CL +Np-Appos +NPofNP +NpPp +PrepNp +DetNP +V-S +DetNP +NPofNP +V-S +DetNP +NPofNP +V-S-ADV-ADV +DetNP +NPofNP +AdvPp +PrepNp +AdvPp +PrepNp +156234 O-V-IO-ADV +DetNP +NPDetAdj +NPofNP +DetAdj +156240 Conj-CL +156242 DetNP +NPofNP +sub-CL +S-V-IO +AdvpNp +DetNP +NPofNP +156250 Conj-CL +notCLbutCL2CL +V-O-ADV +PrepNp +V-O-ADV +PrepNp +DetAdj +156258 Conj-CL +156260 sub-CL +V-IO-O +DetNP +DetNP +NPofNP +AdvpNp +DetNP +NPDetAdj +NPofNP +DetAdj +156271 Conj-CL +156273 sub-CL +ADV-V-IO +DetNP +DetNP +NPofNP +DetNP +NPofNP +156281 Conj-CL +ClCl +ClCl2 +sub-CL +V2CL +ADV-VC-ADV-P +sub-CL +S2CL +DetNP +sub-CL +ClCl +V-O +DetNP +NPofNP +sub-CL +V-IO-O +DetNP +V2CL +156300 ClCl +PtclCL +V-IO +V-O +DetNP +NPofNP +156307 Conj-CL +ClCl +CLaCL +S-ADV-V-O +V2CL +ofNPNP +DetNP +156315 O-V +DetNP +NPofNP +sub-CL +notCLbutCL2CL +V-IO-O +DetNP +V2CL +IO2CL +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetAdj +156331 Conj-CL +S-V-IO +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetAdj +156342 PrepNp +DetNP +CLaCL +ADV-S-V +NpaNp +156349 ADV-S-V +Conj2VP +156353 Conj-CL +156355 PrepNp +CLaCL +ADV-S-V +aNpaNp +156362 ADV-S-ADV-V +Conj2VP +156366 Conj-CL +ClCl2 +P-VC-S +DetNP +NPofNP +P-VC-S +AdvpNp +DetNP +NPofNP +156376 S-VC-P +DetNP +NPofNP +DetNP +DetNP +156382 Conj-CL +156384 sub-CL +VC-S-P +DetNP +NPofNP +All-NP +DetNP +NPofNP +156392 Conj-CL +156394 sub-CL +S-P-VC +DetNP +NPofNP +All-NP +DetNP +NPofNP +156402 Conj-CL +156404 sub-CL +S-P-VC +Np-Appos +DetNP +NpPp +PrepNp +DetNP +156412 ClCl +S-V-O +O-V +AdjpNp +sub-CL +aCLaCL +156419 CLaCL +O-V +DetAdj +156423 O-V +DetAdj +156426 CLaCL +O-V +156429 O-V +DetAdj +156432 ADV-V-O +CLaCL +O-V +156436 O2CL +156439 PrepNp +CLaCL +ADV-V-ADV-O +DetNP +NPofNP +CLaCL +O-V +156447 O-V +156449 ADV-O +DetNP +NPofNP +O-V +156454 PtclCL +CLaCL +S-P-VC-ADV +DetNP +DetNP +156460 S-ADV +DetNP +DetNP +156465 PrepNp +DetNP +NPofNP +DetNP +sub-CL +CLaCL +Conj3CL +ADV-V +156474 V2CL +156476 V-ADV +PrepNp +156479 S-V-O +DetNP +NPDetAdj +NPofNP +DetAdj +156485 PtclCL +S-ADV-V-ADV +156488 Conj-CL +S-ADV-V-O +NpPp +PrepNp +V2CL +V-ADV-O +PrepNp +DetNP +NPofNP +NpAdjp +156499 sub-CL +ADV-ADV-V +PrepNp +156504 DetNP +NPofNP +DetNP +ADV-V +156509 CLaCL +ADV-V +156512 V2CL +156514 Conj-CL +156516 that-VP +156518 PrepNp +All-NP +DetNP +NPofNP +sub-CL +S2CL +NPofNP +156526 Conj-CL +156528 sub-CL +O-ADV-S-ADV-V +DetNP +NPofNP +DetNP +CLaCL +ADV-V +156536 ADV-ADV-V +PrepNp +DetNP +PtclCL +ADV-O +AdjpAdvp +Np2CL +156544 Conj-CL +ADV-V-ADV +156547 Conj3CL +O-V +156550 O-V +156552 O-V +156554 Conj-CL +O-S-V +All-NP +DetNP +156559 Conj-CL +156561 DetNP +NPDetAdj +NPofNP +DetAdj +that-VP +V-O +NpAdjp +156569 Conj-CL +CLaCL +V-ADV-O +NpaNp +DetNP +156575 DetNP +NPofNP +156578 S-V-IO +NP-all +156581 Conj-CL +ClCl +ADV-V-ADV +PrepNp +DetNP +sub-CL +S-V-O +DetNP +156590 P-ADV-S +DetNP +DetNP +NPofNP +156596 sub-CL +PtclCL +V2CL +156600 Conj-CL +CLaCL +ADV-V +ADV-V +PrepNp +PronNP +156607 S-V-IO +ADV-V +PrepNp +PronNP +156612 Conj-CL +CLaCL +ADV-V-O +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +156624 O-ADV-V +DetNP +PpNp2Np +PrepNp +DetNP +AdjpNp +156631 Conj-CL +CLaCL +156634 DetNP +NPofNP +ClCl +V2CL +V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +156645 DetNP +PrepNp +DetNP +NPofNP +156651 Np2CL +V-ADV-ADV-O +PrepNp +DetNP +NPofNP +DetNP +156658 ADV-V-ADV +V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +156667 ClCl +CLaCL +ADV-V-O-IO +DetAdj +DetNP +156673 V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +CLaCL +ADV-ADV-V-O-ADV +PrepNp +DetNP +NPofNP +156684 ADV-V-O +V2CL +156687 ClCl +ClClCl +CLaCL +V2CL +156692 V-IO +CLaCL +V2CL +156696 V2CL +CLaCL +V2CL +156700 V-IO +sub-CL +Conj3CL +S-V +All-NP +DetCL +V2CL +156708 S-V +DetCL +V2CL +156712 IO-V +DetCL +V2CL +156716 Conj-CL +VC-P-S +PrepNp +AdjpNp +NP-CL +156723 O-V-S-O2 +DetNP +NPofNP +O-V-IO +156728 AdvpNp +PtclCL +O-V-IO +156732 Conj-CL +ClCl2 +sub-CL +S-ADV-V-O +P-VC +O-V-IO +NpAdjp +DetNP +NPofNP +ADV-S-V-O-IO +2Advp_h2 +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +DetCL +V-O +156752 Conj-CL +156754 Np2CL +All-NP +PtclCL +156758 ADV-V +V-IO-S +DetNP +AdvpNp +156763 Conj-CL +S-VC-P +NpaNp +DetNP +156768 DetNP +156771 PrepNp +DetNP +AdjpNp +sub-CL +CLaCL +CLaCL +P-S +DetNP +156780 P-S +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +156788 P-VC-S +DetCL +V-ADV +PrepNp +sub-CL +CLaCL +CLaCL +P-S +DetNP +156798 P-S +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +156806 P-VC-S +DetCL +V-O +156810 V-ADV +PrepNp +DetNP +NP-CL +CLaCL +S-V-ADV-ADV +PrepNp +PrepNp +NPofNP +156820 ADV-VC-P +NpAdjp +156823 ADV-V-O +PrepNp +DetNP +NPofNP +156828 PtclCL +CLaCL +V-ADV-O +PrepNp +156833 ADV-O +PrepNp +156836 CLaCL +ADV-S-O-V +All-NP +NpAdjp +NpAdjp +156842 S-O-V +DetNP +AdjpNp +NpAdjp +156847 CLaCL +ADV-V-S-O +NpAdjp +O-V +NpAdjp +156853 S-O +NpAdjp +O-V +NpAdjp +156858 CLaCL +S-V +All-NP +NpAdjp +ADV-V-O +NpAdjp +156865 ADV-V +PrepNp +156868 PtclCL +ADV-V-O +PrepNp +DetNP +NPofNP +156874 notCLbutCL2CL +S-V-ADV +All-NP +DetCL +156879 ClCl +Np2CL +Np2CL +PrepNp +DetNP +NPofNP +DetNP +S2CL +DetCL +V-O +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +156899 PrepNp +Demo-NP +DetNP +ClCl2 +ClCl +Np2CL +Np2CL +PtclCL +Conj3CL +ADV-V +DetNP +AdjpNp +156912 ADV-O-V +DetNP +AdjpNp +156916 ADV-O-V +DetNP +AdjpNp +NpAdjp +156921 Conj-CL +156923 that-VP +156926 PrepNp +Np2CL +DetCL +V-O +DetNP +156932 Conj-CL +S-V-ADV +All-NP +CLaCL +S-V-O +ofNPNP +NP-Demo +DetNP +156941 V-O +NP-CL +NpAdjp +S-V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +156950 Conj-CL +ClCl +Conj5CL +V-S +DetNP +156956 V-S +DetNP +156959 V-S +DetNP +156962 V-O +NP-Demo +DetNP +156966 ADV-V +sub-CL +V-ADV +PrepNp +DetNP +156972 Conj-CL +S-V-ADV +All-NP +DetCL +CLaCL +V-O +ofNPNP +NP-Demo +DetNP +156982 ADV-V-O +NP-CL +NpAdjp +S-V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +156991 Conj-CL +Conj6CL +V-S +DetNP +156996 V-S +DetNP +156999 V-S +DetNP +157002 V-O +NP-Demo +DetNP +157006 V2CL +157008 VC-S-P +DetNP +NPofNP +157012 Conj-CL +ClCl +ClCl +V2CL +sub-CL +V-S-O +DetNP +NP-Demo +DetNP +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +157027 Conj-CL +V-O-ADV +BeVerb +CLaCL +sub-CL +O-V +157034 AdvpCL +sub-CL +S2CL +DetNP +NPofNP +157040 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +V-O-S +NpAdjp +157048 Conj-CL +157050 V2CL +157053 Np2CL +sub-CL +V2CL +V-O +O-V +157059 Conj-CL +ADV-V-O-ADV +V-O +DetNP +157064 ClCl +V2CL +V2CL +157068 Conj-CL +ADV-V-S +ofNPNP +DetNP +157073 Conj-CL +157075 DetNP +CLaCL +157078 IO-V +157080 ClCl +V2CL +CLaCL +O-V-IO +DetNP +157086 V-O-ADV +DetNP +NP-CL +O-V-S +PrepNp +NpAdvp +157093 Conj-CL +ClCl2 +V-S-ADV +PrepNp +V-ADV-S-ADV +CLaCL +V-O +157103 Np2CL +DetNP +NPofNP +PrepNp +DetNP +ADV-V +157111 S-ADV-V-O +V2CL +157114 Conj-CL +157116 V2CL +DetNP +CLaCL +157120 Np2CL +that-VP +ADV-V +PrepNp +ofNPNP +DetNP +157127 CLaCL +ADV-V-ADV +157130 V-S +DetNP +NPofNP +157134 Conj-CL +CLaCL +S-VC-P +AdvpNp +NpAdjp +NpPp +PrepNp +V-ADV-O +PrepNp +157144 Conj3CL +CLaCL +157147 V2CL +157149 V2CL +157151 CLaCL +ClCl +IO2CL +V2CL +157156 V2CL +157158 CLaCL +ClCl +IO2CL +DetNP +NPofNP +V-O +157165 V2CL +157167 Conj-CL +CLaCL +ADV-S-V +V2CL +DetNP +157174 DetCL +V2CL +ClCl +PtclCL +V-IO +ADV-O-ADV-V +PrepNp +AdjpNp +PrepNp +DetNP +157185 Conj-CL +157187 that-VP +CLaCL +S-ADV-V +PrepNp +NpaNp +157194 V-ADV-ADV +PrepNp +Conj3Np +157199 PrepNp +DetNP +NPofNP +DetNP +157204 Conj-CL +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPDetAdj +DetAdj +157214 P-VC-S +NpaNp +DetNP +157218 DetNP +NPofNP +DetNP +157222 Conj-CL +157224 DetNP +DetNP +ClCl +V2CL +ClCl2 +sub-CL +V2CL +V-ADV +157233 Conj-CL +V-S-ADV +DetNP +PrepNp +NP-Demo +DetNP +157240 Conj-CL +S-ADV-V-O +DetNP +V-ADV +PrepNp +DetNP +NPofNP +S-V +DetNP +NPofNP +Conj2VP +157253 Conj-CL +CLaCL +V-O +DetNP +NPofNP +157259 V-O-S +DetNP +157262 Conj-CL +CLaCL +V2CL +157266 V-O +157268 Conj-CL +ClCl2 +S-V +V-IO-O +NpAdjp +V2CL +157275 Conj-CL +CLaCL +V-O-ADV +DetNP +157280 O-V +All-NP +DetCL +ADV-V +157285 sub-CL +V-S +DetCL +V-ADV-ADV +PrepNp +Np-Appos +DetNP +157293 CLaCL +S-O-V +DetNP +NPofNP +157298 O-V +DetNP +157301 Conj-CL +S-ADV-V-O +DetNP +V-O-ADV +PrepNp +V-ADV +PrepNp +DetNP +157310 Conj-CL +157312 V2CL +AdjpNp +157315 Np2CL +PtclCL +ADV-V +157319 Conj-CL +157321 DetNP +CLaCL +CLaCL +S-O-V +DetNP +157327 S-O +DetNP +NPofNP +DetNP +157332 S-ADV-V-O +DetNP +NPofNP +DetNP +ADV-O-V +DetNP +157339 Conj-CL +157341 NPofNP +DetNP +157344 Np2CL +CLaCL +ADV-V +157348 V-O +DetNP +NPofNP +157352 Conj-CL +157354 DetNP +CLaCL +V-O +157358 V-O +S-V-O +DetAdj +DetNP +ofNPNP +157364 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +V-O-S +DetNP +NPofNP +157373 Conj-CL +157375 NpAdjp +PrepNp +DetNP +sub-CL +S-V-ADV +DetNP +PrepNp +DetNP +157384 Conj-CL +S-V +157387 Conj-CL +ADV-V-O-ADV +V2CL +157392 Np2CL +V2CL +V2CL +157396 Conj-CL +157399 Np2CL +157401 CLaCL +ADV-ADV-V-O +V2CL +NpaNp +DetNP +157407 DetNP +157409 V-S +NpAdjp +157412 Conj-CL +S-V-ADV +DetNP +157416 ClCl +P-VC-S +sub-CL +S-O-V +aNpaNp +157422 DetNP +157424 DetNP +157426 Conj-CL +ClCl2 +V-S-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetAdj +V-O-S +NumpNP +NpAdjp +NpAdjp +V2CL +ADV-V +PrepNp +DetNP +AdjpCL +AdjpAdvp +sub-CL +ADV-V-S-O +V-ADV +PrepNp +NP-Demo +DetNP +157452 Conj-CL +157455 ClCl +157457 NpaNp +157459 Np2CL +NPofNP +DetNP +V-ADV-ADV-ADV +PrepNp +V-O +157466 Conj-CL +VC-P-ADV-S +PrepNp +NpAdjp +NPofNP +NpAdjp +V2CL +157474 Conj-CL +S-V-O-ADV +DetNP +157478 ClCl2 +sub-CL +V-O +V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +157487 Conj-CL +157489 V2CL +157491 Conj-CL +S-ADV-V-ADV +V2CL +PrepNp +DetNP +157497 Conj-CL +157499 V-S-ADV-ADV +All-NP +DetNP +PrepNp +DetNP +PrepNp +DetNP +157507 V-ADV +PrepNp +DetNP +157511 Conj-CL +CLaCL +S-V +DetCL +V2CL +157517 ADV-V-O +V-ADV +PrepNp +DetNP +NpaNp +157523 NPofNP +DetCL +V2CL +157527 Conj-CL +157529 S-V-ADV +All-NP +DetNP +PrepNp +NpAdvp +DetNP +157537 V2CL +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +157544 Conj-CL +CLaCL +ADV-V +V-ADV +PrepNp +157550 V-ADV +PrepNp +DetNP +AdjpNp +157555 Conj-CL +157557 NpAdjp +ADV-V +PrepNp +157561 Conj-CL +157563 DetNP +V-O +DetNP +NPofNP +DetAdj +ClCl +157570 Np2CL +V-S +ofNPNP +DetNP +157575 Conj-CL +157577 NPofNP +DetNP +PrepNp +S-V +157582 Conj-CL +157584 DetNP +V-O +DetNP +NPofNP +CLaCL +157590 PrepNp +PrepNp +DetNP +NPofNP +Conj-CL +ClCl +S-VC-P +CLaCL +157599 V-S +ofNPNP +DetNP +157604 CLaCL +V2CL +157607 V2CL +157609 sub-CL +157611 that-VP +O-V-S-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +V-O +157621 DetAdj +ClCl +V2CL +CLaCL +V-O +ofNPNP +DetNP +157629 V-ADV +PrepNp +DetNP +NPofNP +157634 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +157641 Conj-CL +CLaCL +ADV-S-V +V2CL +DetNP +157647 V-O +Np-Appos +DetNP +DetCL +V-O-IO +NP-Demo +DetNP +157655 Conj-CL +CLaCL +ADV-S-V-O +V-ADV +DetNP +NpAdjp +NpAdjp +V-ADV +PrepNp +DetNP +P-VC +157668 V-O +157670 Conj-CL +ADV-V-O +V2CL +157674 Conj-CL +ClCl2 +V2CL +CLandCL2 +S-V-ADV +PrepNp +DetNP +157683 AdjpNp +NpaNp +157686 V2CL +NpaNp +DetNP +157690 DetNP +NPofNP +157693 Conj-CL +157695 V2CL +DetNP +DetNP +NPofNP +ADV-ADV-V-S +PrepNp +PrepNp +DetNP +NpaNp +157705 DetNP +NPofNP +157708 Conj-CL +157710 V2CL +notCLbutCL2CL +O-V-S +NPofNP +DetCL +V2CL +S2CL +DetCL +ADV-V +157720 Conj-CL +ClCl +ADV-V +V2CL +P-VC-S +CLaCL +O-V +157728 ADV-O +157730 Conj-CL +notCLbutCL2CL +V-ADV +V-O +O2CL +157736 ADV-V-ADV-S-ADV +DetNP +NPofNP +157740 CLaCL +ADV-S-V +PrepNp +NpaNp +157745 DetNP +157747 S-ADV-V +DetNP +NPofNP +157751 Conj-CL +157753 DetNP +PtclCL +V-S-O-ADV +DetNP +NPofNP +DetNP +V2CL +PrepNp +ADV-P-VC-S +PrepNp +DetNP +157765 Conj-CL +CLaCL +157768 sub-CL +V-ADV-S +PrepNp +DetNP +157773 ADV-V +157775 Conj-CL +S-V-O-ADV +NPofNP +NpAdjp +PrepNp +NpAdjp +157782 Conj-CL +CLaCL +V-S-ADV +DetNP +NPofNP +PrepNp +DetNP +157790 S-V +AdjpNp +157793 Conj-CL +V-O-ADV +NpAdjp +PrepNp +NpAdjp +157799 Conj-CL +157801 sub-CL +ADV2CL +V-S +DetNP +157806 S-V +DetNP +157809 S-V +DetNP +157812 Conj-CL +CLaCL +V-O-ADV +NpAdjp +PrepNp +NpAdjp +157819 S-V +157822 O-S-V-IO +NpAdjp +V2CL +157826 that-VP +CLaCL +S-ADV-V +DetNP +NPofNP +157832 CLaCL +ADV-V-O-ADV +V2CL +DetNP +NPofNP +PrepNp +157839 V2CL +157841 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +157847 S2CL +DetNP +NPofNP +157851 Conj-CL +157853 NpAdjp +V-ADV +NumpNP +V-ADV +DetNP +NPofNP +DetNP +NPofNP +157862 Conj-CL +157864 PrepNp +ClCl2 +sub-CL +ADV-V-O +DetNP +NPofNP +V2CL +157872 Conj-CL +157874 DetNP +CLaCL +V2CL +157878 V-O +ClCl +157881 Np2CL +S-V-O +DetNP +NPofNP +157886 Conj-CL +V-S-ADV +DetNP +PrepNp +NP-Demo +DetNP +157893 Conj-CL +157895 DetNP +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +157903 V-O +CLaCL +S2CL +DetNP +157908 S-V +DetNP +ClCl +V2CL +sub-CL +notCLbutCL2CL +V-S +DetNP +V2CL +157918 Conj-CL +V-O +157921 Conj-CL +157923 sub-CL +V-S +DetNP +ADV-V-O +V2CL +DetNP +NPofNP +157931 V-S +DetNP +157934 Conj-CL +V-S-ADV +NP-Demo +DetNP +PrepNp +NP-Demo +All-NP +DetNP +157943 Conj-CL +ClCl2 +V-ADV-S +DetNP +V-S-ADV +NumpNP +CLaCL +V2CL +157954 Np2CL +NPofNP +157957 Conj-CL +ClCl2 +V-ADV +PrepNp +DetNP +CLaCL +V-ADV-S +DetAdj +157967 DetNP +157969 that-VP +V-O +O-V +157974 ClCl +Np2CL +Np2CL +157978 ADV-V-O-ADV +DetNP +NPofNP +157982 ADV-V-IO +PrepNp +DetNP +NPofNP +157987 Conj-CL +V-S +ofNPNP +DetNP +157992 Conj-CL +V-IO-S-ADV +DetNP +157997 S-V +157999 Conj-CL +S-ADV-V-O-ADV +V2CL +PrepNp +NP-Demo +All-NP +DetNP +158007 Conj-CL +ClCl2 +S-V +158011 NpAdjp +V2CL +158014 Conj-CL +ClCl2 +V-S +DetNP +V-S +DetAdj +158021 Conj-CL +V-S-ADV +DetNP +158025 ADV-V-ADV-ADV +PrepNp +DetNP +158029 Conj-CL +158031 DetNP +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +DetNP +158039 Conj-CL +V-S-O-ADV +DetNP +NpaNp +NP-all +DetNP +158046 DetNP +Conj3CL +V-ADV +PrepNp +DetNP +NPofNP +158053 V-O +DetNP +NPofNP +DetNP +158058 V-O +NpaNp +All-NP +158062 All-NP +158064 Conj-CL +158066 V-O +DetNP +PrepNp +sub-CL +ClCl +V2CL +BeVerb +Conj2VP +158075 sub-CL +S2CL +NpAdjp +ADV-V-O +158081 DetNP +NPofNP +aCLaCL +158085 S-P +DetNP +158088 S-P +DetNP +158091 Conj-CL +158093 DetNP +NPofNP +DetNP +sub-CL +V-O-ADV +PrepNp +DetNP +NPofNP +158102 Conj-CL +ADV-V-IO-O-ADV +V-O +DetNP +NumpNP +NPofNP +NPofNP +NpAdjp +sub-CL +CLaCL +V-O +158114 V-O +NpaNp +All-NP +158118 All-NP +158120 Conj-CL +S-VC-P +ofNPNP +DetNP +NumpNP +DetNP +158127 CLaCL +P-S +Np-Appos +DetCL +VC-P +158133 S2CL +NpaNp +Np-Appos +DetNP +NPofNP +158139 NpNpNpNpNp +NpaNp +Np-Appos +NPofNP +DetNP +158145 Np-Appos +DetNP +NPofNP +NpaNp +158150 NpaNp +158152 Np-Appos +DetNP +NpaNp +Np-Appos +NPofNP +DetNP +158159 NpaNp +Np-Appos +DetNP +158163 Np-Appos +Np-Appos +DetNP +DetCL +ADV-V-O +158169 O-V-S-ADV +Demo-NP +DetNump +DetNP +V-O-ADV +158175 CLaCL +ADV-ADV-V +PrepNp +NPofNP +158180 ADV-ADV-V +PrepNp +NPofNP +158184 Conj-CL +V-ADV-ADV +PrepNp +NPofNP +Np-Appos +DetNP +DetCL +V2CL +NPofNP +158194 Conj-CL +ADV-V-ADV +V2CL +158198 that-VP +V-S +DetNP +NPofNP +DetNP +158204 ClClClCl +O-V +V2CL +O-V +O-V +O-V +158211 ClCl +ADV-V +ADV-V +158215 ClCl +ADV-V-O-ADV +Conj3Np +158220 PrepNp +DetNP +NPofNP +ADV-O +Conj4Np +NpPp +PrepNp +158228 NumpNP +158232 Conj-CL +P-S-ADV +DetNP +DetNP +NPofNP +158238 Conj-CL +158240 PtclCL +ADV-V +PrepNp +PronNP +NpaNp +158246 V2CL +S-ADV-P-VC +PrepNp +158250 ClCl +ADV-V +sub-CL +PtclCL +V2CL +158256 Conj-CL +ADV-V-O +V-ADV +PrepNp +DetNP +158262 Conj-CL +aCLaCL +158266 sub-CL +VC-S-P +DetNP +DetNP +NPofNP +PrepNp +158274 sub-CL +ADV-VC-P +DetNP +NPofNP +PrepNp +158280 Conj-CL +ClCl2 +PtclCL +CLaCL +S-ADV-V-O +158286 V-O +DetNP +NPofNP +ADV-V-O +V-ADV +PrepNp +NP-Demo +NpaNp +DetNP +158296 DetNP +DetNP +NPofNP +DetNP +NPofNP +158302 ClCl +PtclCL +V-IO +CLaCL +P-VC-ADV-ADV +NPofNP +NpaNp +158310 PrepNp +NPofNP +158313 ADV2CL +NP-Demo +DetNP +158318 sub-CL +O-ADV +PrepNp +NPofNP +158323 Conj-CL +CLaCL +158326 sub-CL +S2CL +DetNP +158330 ClCl +P2CL +sub-CL +S2CL +DetNP +158336 Conj-CL +V-ADV +PrepNp +DetNP +158341 Conj-CL +CLaCL +V-O-ADV +PrepNp +158346 ADV-V-O +PrepNp +DetNP +NPofNP +158351 Conj-CL +ADV-V-ADV-ADV +AdvPp +PrepNp +NpaNp +158357 PrepNp +PrepNp +NpAdvp +NpaNp +158362 DetNP +158364 Conj-CL +ClCl2 +sub-CL +V-O +ClCl +ADV-V +CLaCL +ADV2CL +158373 O-V +158375 Conj-CL +V-IO-ADV-S +PrepNp +Demo-NP +DetNP +O-V +158382 Conj-CL +notCLbutCL2CL +S-VC-P +DetCL +V2CL +S-P +DetNP +NPofNP +DetNP +NPofNP +DetCL +V-ADV +PrepNp +158396 Conj-CL +CLaCL +CLaCL +V-S-O-ADV +PrepNp +158402 S-O +158404 CLaCL +V-S-ADV +PrepNp +158408 V-O +158410 Conj-CL +V-ADV-ADV +BeVerb +PrepNp +PrepNp +DetNP +NPofNP +158418 Conj-CL +158420 Np2CL +DetCL +V-ADV +PrepNp +158425 Conj-CL +158427 sub-CL +V-O-ADV +PrepNp +NP-Demo +DetNP +PrepNp +DetAdj +158435 Conj-CL +ClCl +PtclCL +V-IO +ClCl +ADV-V-O +2Advp_h1 +DetNP +NPofNP +DetNP +sub-CL +V-S +DetNP +NPofNP +DetNP +158451 CLaCL +ADV-VC-S-P +PrepNp +DetNP +158456 S-P +PrepNp +DetNP +NPofNP +158461 CLaCL +P-ADV-S +DetNP +that-VP +VC-P +PrepNp +DetNP +NPofNP +158470 S-P +DetNP +PrepNp +DetNP +NPofNP +158476 ClCl2 +sub-CL +O-O2-V +DetNP +ADV-O +2Advp_h2 +DetNP +NPofNP +158485 Conj-CL +ADV-V-O +158488 Conj-CL +P-VC-S +NpaNp +NP-CL +V2CL +S-ADV-V +158495 NP-CL +S-ADV-V +158498 O-V-ADV +O-V-IO-ADV +PrepNp +DetNP +PrepNp +DetNP +158505 Conj-CL +O-V-ADV +O-ADV-V +PrepNp +DetNP +PrepNp +DetNP +158513 Conj-CL +ADV-V-ADV +PrepNp +DetCL +CLaCL +V-O +DetNP +158521 ADV-V-O +O-V +DetNP +158525 Conj-CL +V-ADV-O +DetCL +V-O +O-V-ADV +aNpaNp +158533 PrepNp +158535 PtclCL +S-ADV-V +NumpNP +158539 Conj-CL +S-ADV-V-ADV-ADV +NpPp +PrepNp +PrepNp +DetNP +PrepNp +DetNP +NPofNP +158549 Conj-CL +S-V +AdvpNp +NP-all +ofNPNP +DetNP +NPofNP +DetNP +VerbBe +158559 Conj-CL +ADV-V +158562 ADV-V-S +AdjpNp +158565 Conj-CL +158567 S-V-ADV-ADV +All-NP +PrepNp +PrepNp +DetNP +PrepNp +PrepNp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +158581 Conj-CL +ClCl2 +PtclCL +S-V-O-ADV +PrepNp +DetNP +V-S-O-ADV +PrepNp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +158597 that-VP +V-ADV +V-O-ADV +PrepNp +DetNP +158603 notCLbutCL2CL +V-ADV +V-O +O2CL +158608 Conj-CL +CLaCL +V-ADV +Conj3CL +V-O-ADV +PrepNp +DetNP +NPofNP +158617 O-ADV +PrepNp +DetNP +NPofNP +158622 O-ADV +PrepNp +DetNP +NPofNP +158627 S-P +NPofNP +DetNP +DetNP +NPofNP +158633 S-ADV-VC-ADV-P +DetCL +V-O-ADV +NpaNp +158638 PrepNp +158640 Conj-CL +S-ADV-VC-ADV-P +DetCL +V-O-ADV +NpaNp +158646 PrepNp +158648 Conj-CL +S-ADV-VC-ADV-P +CLaCL +S-ADV-V-O +DetNP +NPofNP +158655 V-ADV +PrepNp +158658 CLaCL +S-V-O +DetCL +V-O +DetNP +NPofNP +158665 S-V-O +DetCL +V-O-ADV +DetNP +NPofNP +PrepNp +158672 CLaCL +S-O-V +DetCL +V-O +158677 S-V-O +DetCL +O-V +DetCL +V-O +158683 CLaCL +S-O-V +DetCL +V-O-ADV +PrepNp +NPofNP +NPofNP +158691 S-O-V +DetCL +V-O-ADV +PrepNp +NPofNP +NPofNP +158698 Conj-CL +ClCl2 +PtclCL +S-V-O-O2-ADV-ADV +NPofNP +NP-Demo +DetAdj +NpAdjp +PrepNp +NPofNP +ClCl +PtclCL +V-IO +ADV-V-O +2Advp_h1 +DetNP +NPofNP +158716 Conj-CL +ClCl2 +V2CL +ClCl2 +sub-CL +V-S-O +DetNP +V-IO +DetNP +NumpNP +NPofNP +V-ADV-ADV +DetCL +V-ADV +Conj2VP +158732 PrepNp +DetNP +NPofNP +158736 Conj-CL +158738 DetNP +V-ADV-O +PrepNp +DetNP +DetNP +NPofNP +DetNP +V-ADV +PrepNp +DetNP +NPofNP +CLaCL +S-VC-P +DetCL +V2CL +158754 O-V +158756 Conj-CL +158758 V2CL +DetNP +ADV-V-IO-O +V2CL +O-V +Conj2VP +158766 CLandClClandClandClandCl +S-V +158769 S-V +S-V +158772 S-V +158774 S-V +158776 S-V +158778 Conj-CL +P-VC-S +PtclCL +S-ADV-V-ADV +PrepNp +158784 Conj-CL +ClCl2 +S-V +V-S-O +DetNP +158790 DetNP +PrepNp +ClCl +ADV-V-ADV +O-V +PrepNp +DetAdj +O2CL +NpAdjp +ADV-V +PrepNp +158802 Conj-CL +158804 O-V +O2CL +NpAdjp +ADV-V +PrepNp +158811 DetCL +O-V +DetAdj +PrepNp +DetNP +NPofNP +DetNP +158819 Conj-CL +ClCl +ADV-V +O-V +158824 ClCl +158826 Intj2CL +Conj-CL +O2CL +AdjpAdvp +S-VC-P +158832 ADV-V +PrepNp +DetNP +NPofNP +PrepNp +NPofNP +S-V-O-ADV +DetNP +NPofNP +PrepNp +158843 ClCl +PtclCL +V-IO +CLaCL +ADV-V-ADV-S +PrepNp +NPofNP +AdjpAdvp +NPofNP +DetNP +158854 S-P-ADV-VC +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +158862 Conj-CL +CLaCL +ADV-S-V +2Pp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +PrepNp +DetNP +NPofNP +DetNP +158876 S-V-O +158878 Conj-CL +S-ADV-V +All-NP +NpaNp +DetNP +158884 DetNP +PrepNp +158887 Conj-CL +ClCl2 +sub-CL +V-O +V2CL +S-VC-P +Np-Appos +DetCL +V-O +V2CL +158898 S-V +DetCL +V-O +158902 Conj-CL +ADV-V-O +NP-Demo +DetNP +158907 P-VC-ADV +NP-CL +NpAdjp +V-ADV +PrepNp +DetNP +158914 S-ADV-V +V-O +DetAdj +CLaCL +V-IO +158920 ADV-V +CLaCL +V2CL +158924 ADV-V +158926 Conj-CL +CLaCL +V-S-ADV +V2CL +EitherOrVp +158935 O-V +158937 CLaCL +V-S-ADV +DetNP +NPofNP +DetNP +CLaCL +V2CL +158945 V2CL +158948 ClCl2 +V2CL +P2CL +2Np +Np-Appos +NpaNp +158955 NPofNP +NpaNp +158959 Conj-CL +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +158967 V-O +DetNP +NP-CL +ADV-V-S +PrepNp +DetNP +AdjpNp +NPofNP +sub-CL +ADV-V +158980 Np2CL +158982 Np2CL +sub-CL +158985 sub-CL +ADV-V-S +PrepNp +NpaNp +158990 Np-Appos +DetNP +DetCL +V-ADV +PrepNp +ADV-ADV-V +PrepNp +NpaNp +159000 Conj-CL +159002 CLaCL +ADV-P-VC-ADV +NpaNp +159006 PrepNp +NPofNP +159009 ADV2CL +159011 Conj-CL +159013 Np2CL +S-ADV-V +PrepNp +159017 ADV-V +PrepNp +159020 sub-CL +159022 sub-CL +ADV-V-S +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +V-ADV +PrepNp +DetNP +159034 Conj-CL +159036 that-VP +CLaCL +ADV-P-VC-ADV +NPofNP +PrepNp +NPofNP +159043 ADV2CL +159046 PrepNp +Demo-NP +DetNP +V2CL +DetNP +ClCl +159053 Np2CL +Np-Appos +NPofNP +NpaNp +DetNP +159059 DetNP +sub-CL +CLaCL +V-O-ADV +PrepNp +NpaNp +159067 V-O-IO +159069 ClCl +ClCl +Np2CL +Np2CL +DetNP +sub-CL +ADV-S-VC-P +PrepNp +159078 CLaCL +S-IO-V-ADV +PrepNp +DetNP +NPofNP +159084 CLaCL +159086 DetNP +sub-CL +ADV-S +DetNP +159092 DetNP +sub-CL +ADV-S +NpaNp +DetNP +159098 PtclCL +O-V-S +IO-V +DetNP +159103 ClCl +159105 PrepNp +Np2CL +All-NP +DetCL +CLaCL +V2CL +159112 V2CL +S-V-O +159116 V-O-ADV +DetNP +NPofNP +PrepNp +159121 V-ADV +PrepNp +sub-CL +CLaCL +VC-P-ADV +AdjpaAdjp +159128 DetNP +159130 V-O-IO +DetNP +NPofNP +159134 Conj-CL +CLaCL +S-P +DetNP +NPofNP +159140 S-P-VC +DetNP +NPofNP +159144 ADV-V-S-ADV-ADV +PrepNp +Demo-NP +DetNP +DetNP +DetNP +PrepNp +DetAdj +159153 Conj-CL +CLaCL +S-V +DetNP +NPofNP +159159 V-O +CLaCL +V-O +159163 V2CL +159165 Conj-CL +159167 DetNP +V2CL +159170 DetNP +NPofNP +S-ADV-V-ADV +O-V +PrepNp +159176 Conj-CL +159178 PtclCL +159180 ClCl +O-V-S +sub-CL +CLaCL +V2CL +159186 S2CL +NpPp +PrepNp +that-VP +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +159198 DetNP +NPofNP +DetNP +159202 CLaCL +S-ADV-V-ADV +O-V +VerbBe +159207 ADV2CL +NpPp +PrepNp +ADV-ADV-ADV +DetNP +159213 Conj-CL +PtclCL +159216 PrepNp +DetNP +that-VP +CLaCL +ADV-S-ADV-O-V +DetNP +DetNP +PrepNp +DetNP +DetNP +159227 P-VC +159229 Conj-CL +159231 that-VP +S-VC-P +AdvpAdjp +DetNP +159236 Conj-CL +ClCl2 +sub-CL +V-O +P-VC-S +CLaCL +O-V +159244 ADV-O +PtclCL +ADV-V-O +DetAdj +159249 Conj-CL +VC-P-S +NPofNP +DetNP +DetNP +NPofNP +DetNP +159257 Conj-CL +ADV-V-ADV +V-ADV +PrepNp +DetNP +NPofNP +159264 Conj-CL +159266 V2CL +NpAdjp +O-V-O2 +159270 Conj-CL +159273 PtclCL +V-S +ADV-V +DetNP +sub-CL +V-O +159280 Conj-CL +159282 S-VC-ADV-P +PrepNp +NP-CL +CLaCL +S-V-O +NpAdjp +159290 sub-CL +V-S-ADV-ADV +DetNP +PrepNp +CLaCL +V-O +159297 V2CL +159299 Conj-CL +ADV-V-S-ADV +159302 Conj-CL +V-S +ADV-ADV-V +DetNP +159308 DetNP +V-O +ofNPNP +DetNP +159313 Conj-CL +CLaCL +V2CL +159318 sub-CL +S2CL +DetAdj +159322 Conj-CL +159324 V2CL +DetNP +PrepNp +sub-CL +O-V +159330 Conj-CL +S-ADV-V-ADV +DetNP +V2CL +159335 Conj-CL +CLaCL +V-O-S +159339 CLaCL +V-O +NP-all +159344 that-VP +ADV-O2-O-V +159347 sub-CL +V-S +DetCL +V-ADV-ADV +PrepNp +Np-Appos +DetNP +159356 V2CL +Np-Appos +DetNP +NP-CL +NPofNP +O-V +DetNP +NP-CL +NPofNP +O-V-S +DetNP +NPofNP +159369 CLaCL +V-O-ADV +DetNP +NPofNP +PrepNp +159375 O-IO-V +DetNP +159378 Conj3CL +ADV-V +159381 V2CL +159383 V-S-ADV-O +PrepNp +DetNP +DetNP +NPofNP +159390 O-ADV-V +NpAdjp +V2CL +159394 O-ADV-V +NpAdjp +V2CL +sub-CL +PtclCL +V-ADV-O +PrepNp +DetNP +159403 Conj-CL +O-S-V +DetNP +NPofNP +159408 ADV-V-IO-S +NpAdjp +V2CL +AdjpaAdjp +159414 Conj-CL +V-O-ADV +sub-CL +S-V +DetAdj +Conj2VP +159422 Conj-CL +CLaCL +V-S +All-NP +DetNP +159429 PtclCL +S-VC-P +DetNP +NPofNP +159434 Conj-CL +159436 DetNP +V2CL +ClCl +S-ADV-V-O +DetNP +sub-CL +ADV-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +159449 Conj-CL +159451 V-O +DetNP +NPofNP +CLaCL +S-V +All-NP +NpAdjp +V-ADV +PrepNp +159461 S-ADV-V +All-NP +NpAdjp +NpaNp +159466 V-ADV +PrepNp +159469 Conj-CL +159471 sub-CL +S-O-V +DetNP +DetNP +PrepNp +159477 Conj-CL +ADV-V-S +DetNP +NPofNP +159482 Conj-CL +159484 sub-CL +S-ADV-V-O +PrepNp +DetNP +DetNP +NPofNP +PrepNp +159492 ADV-S-P-VC +PrepNp +NPofNP +159496 Conj-CL +159498 sub-CL +ADV-S-V-O +PrepNp +NPofNP +DetNP +V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +159509 Conj-CL +ClCl +ADV-V-S-O +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +DetAdj +159519 O-V +DetNP +NPofNP +sub-CL +ADV-ADV-V-O +DetAdj +159526 Conj-CL +ADV-O-V +DetNP +NPofNP +159531 CLaCL +S-P-VC +DetCL +ADV-VC-P +PrepNp +PrepNp +159538 S-V +DetCL +ADV-V-ADV +PrepNp +159544 PrepNp +CLaCL +S-V-IO +All-NP +NpaNp +159550 DetNP +159552 S-ADV-V +DetNP +ofNPNP +DetNP +159557 Conj-CL +ClCl2 +PtclCL +S-V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +V-IO +159567 Conj-CL +ClCl2 +PtclCL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +ADV-V-IO-ADV +aPpaPp +159578 PrepNp +Demo-NP +DetNP +159582 PrepNp +DetCL +V2CL +159586 aCLaCL +159588 CLaCL +V-O-O2 +DetNP +159592 O-O2 +DetNP +NPofNP +159596 CLaCL +V-O-O2 +DetNP +159600 O-O2 +DetNP +NPofNP +159604 Conj-CL +ADV-S-V +PrepNp +DetNP +DetNP +159611 Np2CL +NPofNP +O-V +P-VC +159616 Conj-CL +ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +DetNP +159624 CLaCL +S-ADV-V-O +DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +159632 S-ADV-V-O +DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +159639 Conj-CL +159641 sub-CL +159643 Np2CL +All-NP +NP-CL +NpAdjp +O-V-S +DetNP +PrepNp +PrepNp +NPofNP +159653 Conj-CL +CLaCL +ADV-V +PrepNp +DetNP +NPofNP +159660 ADV-V +PrepNp +DetNP +NPofNP +159665 ADV-V-IO-S-ADV +NPofNP +DetNP +NpaNp +159672 Np2CL +ADV-O-V +PrepNp +159676 Conj-CL +159678 V2CL +CLaCL +S-O-V +NpaNp +NpAdjp +159686 sub-CL +ADV-S +DetNP +NPofNP +Np-Appos +DetNP +159693 Conj-CL +159695 sub-CL +VC-S-P-ADV +PrepNp +DetNP +NPofNP +DetNP +NpaNp +AdjpNp +159704 AdjpNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +NpaNp +AdjpNp +159715 AdjpNp +159717 CLaCL +ClCl +CLaCL +S-V-ADV-ADV +Np-Appos +PrepNp +DetNP +PrepNp +NP-Demo +DetNP +159728 V-O +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +159736 AdjpAdvp +159738 CLaCL +ClCl +CLaCL +S-V-ADV-ADV +NPofNP +PrepNp +DetNP +PrepNp +NP-Demo +DetNP +159749 V-O +sub-CL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +V-O +DetNP +NPofNP +159761 AdjpAdvp +159763 Conj-CL +159765 sub-CL +S-V-ADV +DetNP +AdjpNp +PrepNp +DetNP +V-ADV-ADV +PrepNp +AdjpNp +V-O +159776 ADV-V +159779 ClCl +ADV-V +PrepNp +DetNP +NPofNP +ADV-V +159786 Conj-CL +ADV-V-O +V2CL +Conj3CL +V2CL +159792 V2CL +159794 V2CL +159796 CLaCL +Conj3CL +ADV-V +159800 V-ADV-O +PrepNp +NumpNP +AdjpNp +NpAdjp +AdjpAdvp +159807 ADV-V-ADV +V2CL +159810 VC-S-P-ADV +DetNP +NPofNP +NP-Demo +DetNP +DetAdj +159817 P-VC-ADV +AdvpNp +NPDetAdj +NP-Demo +DetNP +DetAdj +159825 ADV-S-V-IO +DetNP +NpaNp +DetNP +159830 DetNP +NPofNP +V-O +IO-V +159835 Conj-CL +CLaCL +159839 NpaNp +DetNP +NPofNP +159843 DetNP +NPofNP +V-O +IO-V +159849 V2CL +DetCL +V-IO +CLaCL +S-VC-P +DetNP +NPofNP +159857 S-VC-P +DetNP +NPofNP +159861 Conj-CL +159863 V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +ClCl2 +V2CL +P2CL +NpaNp +DetNP +NPofNP +159876 DetNP +NPofNP +159879 Conj-CL +159881 PtclCL +S-V-O +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +ofNPNP +Conj3Np +159895 ADV-S-ADV-V-ADV +PrepNp +NP-Demo +DetNP +DetNP +V-ADV +DetNP +PrepNp +DetNP +159905 Conj-CL +CLaCL +V-ADV-S-ADV +PrepNp +NpAdjp +sub-CL +S-ADV-V +ADV-V +PrepNp +159915 S-ADV-V +All-NP +DetNP +PrepNp +DetNP +159921 Conj-CL +V-IO-O-ADV-ADV +PrepNp +159926 DetCL +V2CL +DetCL +V2CL +159931 Conj-CL +159933 ADV2CL +PrepNp +DetCL +V-S +159938 CLaCL +S-V-ADV +PrepNp +DetNP +159943 ADV-S-V-O +V2CL +DetNP +159947 CLaCL +ClCl +S-V-ADV +PrepNp +DetAdj +ADV-ADV-V-O +NpAdjp +159955 CLaCL +ADV-V-ADV +PrepNp +DetCL +ADV-V-O +NPofNP +159962 CLaCL +ClCl2 +S-V +V2CL +159967 ADV-V +PrepNp +DetCL +ADV-V-O +159972 CLaCL +S-V-ADV +PrepNp +DetNP +159977 CLaCL +V-S +DetNP +159981 V-O +159983 CLaCL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +159990 ClCl +V-O +aCLaCLaCL +159994 S-O +159996 S-O +159998 S-O +160000 S-V +DetCL +V-O +160004 Conj-CL +160006 V2CL +DetNP +ADV-ADV-V-IO +PrepNp +PrepNp +160012 Conj-CL +160014 V2CL +that-VP +CLaCL +IO-V-S +V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +160025 IO-ADV-V +160027 Conj-CL +CLaCL +160030 S-V +V-IO +160033 V2CL +160035 ClCl2 +S-ADV-V +S-V-ADV +AdvpNp +O-V +PrepNp +160043 PrepNp +PrepNp +sub-CL +CLaCL +ADV-ADV-V +V2CL +160050 ADV-ADV-V +V2CL +Conj2VP +160055 Conj-CL +V-IO-S +Np-Appos +DetNP +NPofNP +DetCL +160062 CLaCL +CLaCL +ADV-V +160066 ADV-V +2Advp_h1 +160069 CLaCL +ADV-V +V2CL +160073 ADV-V +2Advp_h1 +160076 Conj-CL +ClCl +Conj3CL +V-S +DetNP +NPofNP +NPofNP +DetNP +160085 ADV-ADV-V +DetNP +160088 O-V +DetNP +NPofNP +CLaCL +Conj4CL +ADV-ADV-V-ADV +DetNP +160096 ADV-V +DetNP +160099 ADV-V +DetNP +160102 V2CL +160104 V-O +160106 Conj-CL +CLaCL +ClCl +P-S +ofNPNP +DetNP +sub-CL +V2CL +160115 ClCl +S2CL +DetNP +NPofNP +sub-CL +V2CL +160122 Conj-CL +160124 V-IO +that-VP +CLaCL +CLaCL +S-V-O +AdjpNp +NpaNp +160132 V-O +O-V +160135 ADV-V +160137 CLaCL +V-O +O-V +160141 ADV-V +160143 Conj-CL +S-V-O +DetNP +NPofNP +DetCL +V2CL +160150 ClCl2 +CLaCL +S-V-O +DetNP +NPofNP +DetNP +160157 ADV-V +CLaCL +V-S +DetAdj +160162 V-O +DetCL +V-ADV +PrepNp +DetNP +NPofNP +160169 S-VC-P +DetCL +ADV-V +PrepNp +DetNP +160175 Conj-CL +160177 Np2CL +DetCL +ADV-V +PrepNp +DetAdj +DetCL +CLaCL +O-V +DetNP +160187 ADV-ADV-V-O +PrepNp +160190 Conj-CL +CLaCL +CLaCL +ADV-V-O-ADV +PrepNp +160196 P-VC +160199 V-S-ADV +NpaNp +160202 PrepNp +DetNP +160205 Conj-CL +160207 Np2CL +DetCL +ADV-V +PrepNp +DetNP +S-VC-P +DetCL +O-V +DetNP +160217 S-V-O +NpaNp +DetNP +NPofNP +DetNP +160223 DetNP +NPofNP +DetNP +DetNP +160228 P-VC +160230 Conj-CL +160232 Np2CL +DetCL +ADV-V +PrepNp +DetNP +AdjpNp +NP-CL +DetCL +CLaCL +O-V +DetNP +160244 V2CL +PtclCL +CLaCL +S-V +160249 aCLaCLaCL +160251 V-S-O +160253 S-O +160255 S-O +160257 O-V-IO-ADV +AdjpNp +160260 V-S-ADV +DetNP +NPofNP +DetNP +NpAdjp +V-O-ADV +AdjpNp +PrepNp +DetNP +NPofNP +160271 Conj-CL +Conj3CL +ADV-V-S +PrepNp +DetCL +V-S +DetNP +ofNPNP +DetNP +160281 V-O-ADV +PrepNp +NPofNP +DetNP +160286 V2CL +160288 Conj-CL +160290 sub-CL +CLaCL +V-S +DetNP +160295 O-V +AdvpNp +DetNP +160299 Conj-CL +160301 V2CL +DetNP +NPofNP +DetNP +160306 Np2CL +O-V-ADV +AdjpNp +PrepNp +DetNP +AdjpNp +160313 Conj-CL +ADV-V-O +160316 Conj-CL +160318 S-O-V +AdjpNp +160321 Conj-CL +160323 DetNP +Conj-CL +ClCl +V2CL +ADV-V-O +V2CL +160330 Conj-CL +160332 ClCl +ADV2CL +ADV-ADV-ADV-V-ADV-O +V-O +DetNP +PrepNp +DetNP +160340 V-O +V-S-ADV +PrepNp +DetNP +160345 Conj-CL +160347 PrepNp +NPofNP +DetNP +DetNP +CLaCL +CLaCL +V-ADV-O +DetNP +160356 V-O-ADV-ADV +PrepNp +PrepNp +DetCL +V-O +160362 O-V-ADV +DetNP +PrepNp +DetNP +NPofNP +160368 O-V-IO-ADV +AdjpNp +160371 P-VC-S-ADV +DetNP +NPofNP +DetNP +NP-CL +NPofNP +ADV-S-V-ADV +O-V +PrepNp +DetNP +NPofNP +160383 aCLaCL +160385 S-P-VC-ADV +All-NP +DetNP +160390 sub-CL +V2CL +P-ADV-VC +DetNP +160395 VC-P +sub-CL +CLaCL +V-S +DetNP +NPofNP +DetNP +160403 V-ADV +PrepNp +DetNP +NPofNP +160408 O-V-IO +AdjpNp +160411 P-VC-S-ADV +DetNP +NPofNP +DetNP +NP-CL +ADV-S-V-ADV-ADV +O-V +PrepNp +ofNPNP +NpAdjp +PrepNp +ADV-V-S +160424 CLaCL +O-V-S-ADV-IO +NP-all +DetNP +PrepNp +DetNP +160432 PrepNp +sub-CL +V-S +DetCL +V-ADV-ADV +PrepNp +DetNP +160441 PrepNp +DetNP +NPofNP +V-O +V-ADV +PrepNp +160448 ADV-ADV-V-ADV +V-O +DetNP +PrepNp +DetNP +160454 Conj-CL +V-ADV-S-ADV +DetNP +NPofNP +160459 V-IO-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +160466 Conj-CL +160468 V2CL +S-VC-P +DetCL +V-O +DetNP +AdjpNp +DetNP +NPofNP +DetNP +160478 Conj-CL +S-VC-P +DetNP +DetNP +160483 Conj-CL +160485 Np2CL +DetNP +AdjpNp +DetNP +NPofNP +DetNP +160492 Conj-CL +CLaCL +S-VC-P +DetNP +DetNP +NPofNP +DetAdj +160500 S-VC-P +Np-Appos +DetNP +DetCL +V-O +DetAdj +160507 Conj-CL +CLaCL +S-P-VC +DetNP +NPofNP +160513 S-P-VC +DetNP +160516 Conj-CL +160518 sub-CL +CLaCL +V-S +DetNP +160523 ADV-V +PrepNp +DetNP +NPofNP +DetNP +160529 CLaCL +V-S-O +DetNP +NPofNP +DetNP +DetNP +NPofNP +160537 CLaCL +V-ADV-O +PrepNp +DetNP +NPofNP +All-NP +NpaNp +DetNP +160546 DetCL +V-O +DetNP +160550 V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +160556 P-VC-S +NpaNp +DetNP +160560 DetNP +NPofNP +DetNP +160565 DetAdj +PrepNp +DetNP +NPofNP +DetNP +NPofNP +sub-CL +S2CL +DetNP +160575 S-V +DetCL +V-O +160579 P-VC-S-ADV +DetNP +NPofNP +DetNP +NP-CL +NpAdjp +V-ADV +PrepNp +DetNP +Conj4CL +ADV-S-V +O-V +160592 ADV-V +PrepNp +DetNP +NPofNP +160597 V-O +O-V +160600 V-O +NP-Demo +DetNP +160604 ADV-P-VC-S-ADV +DetNP +NPofNP +DetNP +NpAdjp +V-O +AdjpNp +160612 Conj-CL +CLaCL +ADV-ADV-V-O +V-O +AdjpNp +AdjpNp +V2CL +All-NP +O-V +160622 V-O +160624 ADV-P-VC-S-ADV +DetNP +NPofNP +DetNP +NP-CL +NpAdjp +CLaCL +V-ADV +PrepNp +DetNP +160635 ADV-V +PrepNp +All-NP +CLaCL +ADV-V-O-ADV +CLaCL +O-ADV-V-ADV +sub-CL +V2CL +PrepNp +DetNP +160647 V2CL +DetAdj +PrepNp +160651 O-ADV-V +DetAdj +160654 P-VC-ADV +PrepNp +DetNP +NPofNP +DetNP +160660 CLaCL +V-S +DetNP +160664 CLaCL +V-O-ADV +DetAdj +PrepNp +NPofNP +DetAdj +160671 V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +160677 P-VC-S +NpaNp +DetNP +160681 DetNP +NPofNP +DetNP +160685 V-O +NP-all +160689 Intj2CL +160691 Conj-CL +160693 ADV-S-P-VC-ADV +PrepNp +All-NP +NpAdjp +V-ADV +DetNP +NPofNP +DetNP +NP-CL +Np-Appos +S-V-ADV-O +PrepNp +DetNP +NPofNP +NpaNp +160710 Conj-CL +ClCl +V2CL +ClCl2 +sub-CL +V-S-O +DetNP +NP-Demo +DetNP +V-ADV +160721 Conj-CL +ADV-V-O-ADV-ADV +V-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +V-S +160735 ADV-IO-S +NpaNp +NP-Demo +DetNP +160740 DetNP +160742 PtclCL +S-VC-P +DetNP +ofNPNP +DetNP +160748 PtclCL +CLaCL +S-VC-P +DetNP +NPofNP +160754 S-P +DetNP +NPofNP +Conj4Np +160762 Conj-CL +160764 Np2CL +DetNP +NPofNP +S-P-VC +PrepNp +160770 Conj-CL +ADV-IO-S +NP-all +160774 Conj-CL +V-ADV +PrepNp +160778 Conj-CL +160780 DetNP +ClCl +ADV-VC-S-P +sub-CL +ADV-ADV +Conj2Pp +PrepNp +DetNP +160789 PrepNp +DetNP +NPofNP +160793 Conj-CL +ADV-V-ADV-O-ADV +NpAdjp +PrepNp +DetNP +NPofNP +160800 CLaCL +ADV-V-S-O +PrepNp +Demo-NP +DetNP +Np-Appos +DetNP +DetNP +NPofNP +160811 DetNP +NPofNP +ClCl +S-VC-P +Np-Appos +DetNP +CLaCL +S-V-ADV +PrepNp +DetAdj +160822 ADV-S-V-ADV +PrepNp +DetNP +PrepNp +160827 Conj-CL +CLaCL +S-ADV-V +DetNP +V-O +DetNP +160834 ADV-V-ADV +PrepNp +PrepNp +Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +160844 Conj-CL +160846 DetNP +ADV-V-ADV-S +V-O +160850 Conj-CL +ClCl +ADV-V-O +V-O +O-V +DetNP +sub-CL +ADV-O-V +PrepNp +160860 Conj-CL +ClCl +CLaCL +ClCl2 +S-V +NPofNP +DetNP +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +DetAdj +160874 V-O +DetNP +sub-CL +ADV-V-O +PrepNp +IO-V-O +PtclCL +O-V +160883 Conj-CL +160885 V-ADV +PrepNp +DetNP +NPofNP +V-IO-ADV-ADV-O +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +160896 Conj-CL +CLaCL +ADV-S-ADV-V-O +V2CL +DetNP +PrepNp +NpaNp +DetNP +160905 DetCL +V2CL +V2CL +160909 ADV-V-O-ADV +V2CL +PrepNp +DetNP +160914 Conj-CL +Conj3CL +V-S-ADV +DetNP +NPofNP +PrepNp +160921 V-IO +DetNP +160924 V-IO +DetNP +NPofNP +160928 Conj-CL +Conj3CL +ADV-S-V-O +V2CL +DetNP +NPofNP +DetNP +160936 V-O +160938 ADV-V-IO +V2CL +DetNP +160942 Conj-CL +ADV-S-V-ADV-ADV-ADV-ADV +V2CL +DetNP +PrepNp +PrepNp +AdjpNp +PrepNp +160951 Conj-CL +ADV-S-V-O-ADV-ADV +V2CL +DetNP +PrepNp +DetNP +160958 Conj-CL +CLaCL +ADV-V-O +V2CL +AdjpNp +160964 CLaCL +V-ADV +PrepNp +160968 V-O +DetNP +NPofNP +160972 Conj-CL +ClCl2 +S-V +V-ADV-S-ADV +DetNP +160978 ClCl2 +CLaCL +P-VC-S +DetNP +160983 S-ADV-V +DetNP +Conj-CL +160987 DetNP +sub-CL +ADV-V-IO-O +V-ADV +PrepNp +DetNP +160994 Conj-CL +160996 DetNP +ClCl +ADV-O-V-ADV +V2CL +V-IO-S-O +V2CL +161003 Conj-CL +161005 ClCl +ADV-V-ADV +sub-CL +ADV-O +NpaNp +NumpNP +161012 NumpNP +161014 Conj-CL +161016 V-IO-ADV-O +161018 Conj-CL +CLaCL +ADV-ADV-ADV-V +V-O +S-V-ADV +DetNP +PrepNp +DetNP +V-O +NpaNp +DetNP +NumpNP +161031 DetNP +NumpNP +V-ADV +PrepNp +DetNP +161037 CLaCL +ADV-V-IO-O +V2CL +DetNP +DetNP +161043 S-IO +DetNP +DetNP +161047 Conj-CL +CLaCL +CLaCL +V-S +161052 V2CL +161054 V-O +Np-Appos +DetNP +NPofNP +V2CL +DetNP +NumpNP +NpAdjp +161063 Conj-CL +S-VC-P-ADV +DetCL +V2CL +NpAdjp +AdvpAdjp +PrepNp +NpaNp +161073 Conj-CL +ADV-V-O +CLaCL +S-V-ADV +DetNP +PrepNp +DetNP +161081 V-O-ADV-ADV +PrepNp +DetNP +PrepNp +ADV-V-O +DetNP +161088 Conj-CL +ADV-V-ADV-ADV-ADV +V-O +DetNP +PrepNp +DetNP +PrepNp +V2CL +161097 Conj-CL +ClCl2 +S-V +P-VC-ADV +161102 Conj-CL +ClCl +S-ADV-ADV-ADV-V-ADV +DetNP +NpAdjp +PrepNp +DetNP +V-ADV +PrepNp +DetNP +sub-CL +VC-P-S +DetNP +161116 Conj-CL +ADV-V-ADV-ADV +AdjpNp +NPofNP +DetNP +PrepNp +V-ADV +PrepNp +DetNP +161126 Conj-CL +CLaCL +S-ADV-V-ADV +DetNP +V-O +S-ADV-V +PrepNp +DetNP +161135 that-VP +P-VC +161138 ADV-V +PrepNp +DetNP +161142 Conj-CL +ADV-V-S-IO-ADV +DetNP +161146 ClCl +ClCl +V2CL +S-VC +ADV-V +161152 Conj-CL +161154 V-IO +DetNP +161157 Np2CL +sub-CL +S-VC +V-O +S-V-ADV-ADV +PrepNp +PrepNp +DetNP +161166 Conj-CL +161168 V2CL +161170 Conj-CL +CLaCL +ADV-S-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +DetNP +161179 V-ADV +PrepNp +DetNP +161183 Conj-CL +CLaCL +ADV-V +V-O +DetNP +161189 ADV-V-ADV +V-O +V2CL +161194 Np2CL +161196 Conj-CL +CLaCL +ADV-S-ADV-V-O +DetNP +V-O +DetNP +161205 Np2CL +PrepNp +161208 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +V-S +DetNP +161216 Conj-CL +S-V-O-ADV +NpPp +PrepNp +DetNP +161222 ADV-P-VC +ofNPNP +161225 Conj-CL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +PrepNp +161232 Conj-CL +CLaCL +CLaCL +ADV-S-V-ADV +V-O +DetNP +NPofNP +NP-Demo +DetNP +PrepNp +NP-Demo +All-NP +DetAdj +161246 V-IO-O +All-NP +DetCL +ADV-V +161252 that-VP +ADV-V-O +DetNP +NPofNP +DetNP +NPofNP +161259 Conj-CL +S-V +S-V +161263 ADV-V-ADV-ADV-S-ADV +DetNP +PrepNp +NpaNp +161269 ADV-S-V-O +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetAdj +161277 Conj-CL +161279 DetNP +sub-CL +O-V +161283 Conj-CL +161285 V2CL +ADV-S-V-O-ADV +PrepNp +AdvpNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +161296 Conj-CL +161298 DetNP +CLaCL +V-O +NpaNp +DetNP +161304 DetNP +161306 S-ADV-V +DetCL +V-O +NpaNp +161312 Conj-CL +161314 S-ADV-V-O +PtclCL +161317 S-V-IO +NpaNp +DetNP +161321 DetNP +PtclCL +O-ADV-V +PrepNp +2Advp_h1 +NpaNp +DetNP +NPofNP +161330 DetNP +NPofNP +161333 Conj-CL +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +161343 Np2CL +PrepNp +161346 CLaCL +S-ADV-O-V +NP-Demo +DetNP +DetNP +161352 S-ADV-V-ADV +DetNP +NPofNP +PrepNp +161357 Conj-CL +ADV-V-O-ADV +V-O2-O +NPofNP +161362 Conj-CL +161364 V-O +DetNP +ClCl +CLaCL +V2CL +161370 V2CL +notCLbutCL2CL +S-V-O +DetCL +V-ADV +PrepNp +DetNP +DetNP +161379 Np2CL +DetCL +V-ADV +PrepNp +DetNP +DetNP +161387 V2CL +DetNP +161390 that-VP +S-ADV-V +DetNP +V-O +DetNP +161396 Conj-CL +161398 V2CL +S-V +All-NP +NP-CL +O-ADV-V-S +DetNP +NPDetAdj +NPofNP +DetAdj +161408 V-O +161410 VC-P +AdjpNp +NPofNP +161414 Conj-CL +161416 sub-CL +S-O-V +PrepNp +161420 Conj-CL +161422 V2CL +DetNP +V-IO-O +DetNP +161427 Conj-CL +161429 ADV-S-P-VC +AdvpNp +161432 PtclCL +161434 that-VP +CLaCL +S-ADV-V +All-NP +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +161445 ADV-V +PrepNp +161448 Conj-CL +ClCl +S-ADV-V +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +S-V-O +DetNP +161460 Conj-CL +ADV-V-S +PrepNp +DetNP +7Np +NpAdjp +161467 CLaCL +S-VC-P +DetCL +V-O +DetNP +161473 S-ADV-V-O +DetCL +ADV-V +AdjpNp +DetNP +161479 Conj-CL +ADV-S-V-ADV +V-ADV +DetNP +PrepNp +DetNP +NPofNP +NpaNp +161489 Conj-CL +161491 NpAdjp +ADV-V +PrepNp +NP-Demo +DetNP +161497 ClCl +161499 Np2CL +Np-Appos +NPofNP +S-ADV-V +DetNP +NPofNP +161506 Conj-CL +S-ADV-V-IO-O +161509 Conj-CL +ADV-S-V-O-ADV +V2CL +DetNP +NPofNP +161515 ClCl +V-O +sub-CL +V-ADV +PrepNp +161521 Conj-CL +161523 V2CL +ClCl +ADV-V +sub-CL +ADV-ADV +PrepNp +NPofNP +Np-Appos +DetNP +DetCL +V2CL +NPofNP +161536 Conj-CL +S-ADV-V-O-ADV +V2CL +161541 Np2CL +161543 Conj-CL +161545 V2CL +ADV-VC-P-S +CLaCL +V-O +DetNP +NPofNP +DetNP +161553 V-IO +DetNP +161556 Conj-CL +161558 ClCl +161560 Np2CL +sub-CL +S-V-ADV +AdvpNp +DetNP +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +161577 V2CL +DetNP +ClCl +161581 Np2CL +intjNP +ofNPNP +DetNP +ClCl +V-IO +sub-CL +V2CL +161590 Conj-CL +V-S-ADV +DetNP +NPofNP +PrepNp +NP-Demo +DetNP +161598 Conj-CL +CLaCL +ADV-S-V-ADV +V-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +161608 ADV-V-ADV +V-ADV +PrepNp +DetNP +161613 Conj-CL +CLaCL +CLaCL +V-ADV-S-ADV +NpAdjp +V-ADV-O +PrepNp +4NpaNp +161622 NpAdjp +161624 V-O-ADV +PrepNp +DetNP +NPofNP +161629 V-O-ADV +sub-CL +S-V-ADV +DetNP +V-O +2CLaCLaCL +S-V +S-P +161638 S-V +161640 S-V +161642 Conj-CL +V-O +DetNP +NPofNP +161647 Conj-CL +161649 DetNP +V-O +DetNP +NPofNP +CLaCL +ClCl +V-ADV +PrepNp +DetNP +sub-CL +CLaCL +ADV-ADV-V-ADV +NpAdjp +161663 ADV-V-O +O-V +161667 V-O +NpAdjp +ADV-ADV-V-ADV +PrepNp +DetNP +161673 Conj-CL +161675 DetNP +ADV-IO-ADV-S-ADV +PrepNp +NpAdjp +sub-CL +V-O +NpAdjp +161683 Conj-CL +161685 DetNP +O-V +AdjpNp +161689 Conj-CL +161691 O2CL +NpaNp +161694 AdjpNp +161696 Conj-CL +Conj3CL +ADV-V-O +V-IO-O +DetNP +V-ADV +PrepNp +DetNP +NpaNp +DetNP +NumpNP +161708 DetNP +161710 ADV-V +V2CL +161713 CLaCL +V-IO +DetNP +161717 S-IO +DetNP +DetNP +161721 Conj-CL +CLaCL +CLaCL +V-S +161726 V2CL +161728 O-V +Np-Appos +DetNP +NPofNP +V2CL +DetNP +NumpNP +NpAdjp +161737 Conj-CL +S-VC-P-ADV +DetCL +V2CL +AdjpNp +PrepNp +NpaNp +161746 Conj-CL +CLaCL +ADV-V-ADV +V-O +DetNP +PrepNp +DetNP +161754 V-ADV +PrepNp +DetNP +NPofNP +161759 Conj-CL +ADV-S-ADV-V-O +V2CL +DetNP +NpaNp +161765 V2CL +S-O-V-IO +NpPp +PrepNp +DetNP +161771 Conj-CL +161773 V2CL +ClCl2 +S-V +161777 ClCl +P2CL +Conj-CL +V-S +DetNP +161783 Conj-CL +161785 ClCl +ADV-P +sub-CL +V-ADV-S +V2CL +DetNP +161792 aCLaCL +161794 O-V +O-V +DetNP +NPofNP +DetNP +161800 O-ADV-V +DetNP +NPofNP +DetNP +161805 CLaCL +S-O-V +NpaNp +NpAdjp +161812 sub-CL +ADV-S +DetNP +NPofNP +161817 Conj-CL +ADV-V +V-O +161821 Conj-CL +S-ADV-V-O +DetNP +V-ADV +PrepNp +DetNP +O-V +161829 Conj-CL +161831 DetNP +V-ADV +Conj2VP +161835 PrepNp +DetNP +NPofNP +DetNP +NpaNp +161842 Conj-CL +S-V-ADV-ADV +PrepNp +161846 that-VP +O-ADV-V +161849 Conj-CL +161851 V2CL +DetNP +161854 PrepNp +Np2CL +that-VP +O-ADV-V +161860 aCLaCL +161862 CLaCL +V-O +DetNP +NumpNP +NPofNP +DetAdj +161869 O-V +AdjpNp +161872 CLaCL +O2CL +DetNP +NumpNP +NPofNP +DetAdj +161879 O-V +AdjpNp +161883 that-VP +CLaCL +ADV-ADV-V-IO +PrepNp +161888 V-ADV +PrepNp +DetNP +NPofNP +DetNP +NpaNp +161897 that-VP +notCLbutCL2CL +V-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +ADV2CL +PrepNp +DetNP +NPofNP +DetNP +NpaNp +161913 Conj-CL +S-ADV-V-O-ADV +DetNP +V-ADV +PrepNp +DetNP +NPofNP +NPofNP +DetNP +DetNP +NPofNP +161925 V-S-O +DetNP +P-VC-S +DetNP +NPofNP +DetNP +161932 Conj-CL +161934 aCLaCLaCL +161936 S-O +Np-Appos +DetNP +161940 S-O +161942 S-O +NpaNp +161945 NPofNP +DetNP +161949 Conj-CL +S-O-V +P-S-VC +161953 Conj-CL +161955 V2CL +Np-Appos +S-VC-P +Np-Appos +DetNP +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V2CL +161967 Conj-CL +161969 V2CL +DetNP +ClCl +161973 Np2CL +Np-Appos +sub-CL +CLaCL +S-ADV-V-IO +NpaNp +161981 S2CL +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +161989 Conj-CL +161991 that-VP +Conj3CL +S-VC-P +161995 ADV-V-O +PrepNp +Demo-NP +DetNP +ofNPNP +DetNP +162002 S-ADV-V-O +NPofNP +162005 CLaCL +V-IO-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +162013 CLaCL +S-V-ADV +PtclCL +O-V-ADV +PrepNp +DetNP +BeVerb +PrepNp +DetNP +162023 S-V-ADV +PtclCL +O-V-ADV +PrepNp +DetNP +BeVerb +PrepNp +DetNP +162032 ClCl +ADV-V-IO +DetNP +sub-CL +162037 that-VP +S-VC-P +DetNP +162041 ADV-V-S-O +PrepNp +Np-Appos +162045 DetNP +NPofNP +that-VP +V-S +Conj4CL +S-ADV-V +PrepNp +162053 O-V-ADV +PrepNp +DetNP +Conj3Np +162060 V2CL +162062 ADV-V +DetNP +AdjpNp +162066 Conj-CL +ADV-S-V-O +V-O +DetNP +V-O-ADV +162072 ClCl2 +162074 Np2CL +ADV-VC-P-S +2Advp_h1 +162078 Conj-CL +162080 V2CL +DetNP +ClCl +ClCl +162085 PrepNp +Np2CL +P-VC +NPofNP +sub-CL +notCLbutCL2CL +V-O +NPofNP +DetNP +O2CL +NPofNP +DetNP +162099 DetNP +DetNP +NPofNP +ClCl2 +sub-CL +S-V-O +ADV-V +PrepNp +Conj3CL +V-O +162110 V-O +DetNP +NPofNP +162114 V-O +162116 Conj-CL +CLaCL +S-V-O +PtclCL +S-V-O +O-V +DetNP +NPofNP +162125 S-V-O +PtclCL +S-V-O-ADV +DetNP +NPofNP +PrepNp +162132 Conj-CL +CLaCL +162135 sub-CL +CLaCL +O-V +DetNP +NP-all +162141 O-V +DetNP +NPofNP +162145 O-V-S-O2 +NPofNP +DetNP +NPofNP +162150 Conj-CL +CLaCL +V-S-O +DetNP +NPofNP +DetNP +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +162166 ADV-V-IO-ADV +PrepNp +DetNP +NPofNP +162172 V-IO +that-VP +V-S +NP-CL +NPofNP +DetCL +ADV-V +162180 S-ADV-V-O +2Advp_h1 +PtclCL +V-O +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +162192 Conj-CL +CLaCL +ADV-V-S-O +PrepNp +NpNump +DetNP +Conj3Np +DetNP +162202 Np-Appos +DetNP +NPofNP +162206 V-O-ADV-ADV +PrepNp +NpAdjp +PrepNp +162211 Conj-CL +CLaCL +V-ADV +PrepNp +162216 CLaCL +V-S-ADV +DetNP +NPofNP +PrepNp +DetNP +162223 S-VC-P-ADV +DetNP +NPofNP +PrepNp +DetNP +162229 Conj-CL +162231 NpaNp +162233 V-ADV +PrepNp +162236 Conj-CL +162238 V2CL +DetNP +DetNP +ClCl +162243 Np2CL +S-P-VC +162246 sub-CL +V2CL +V-ADV-O +AdjpNp +Conj3CL +IO-O +162253 IO-O +162255 IO-O +162258 ADV-S-V +162260 NpAdjp +162263 PrepNp +DetNP +162266 ClCl +162268 Np-Appos +DetNP +NPofNP +DetAdj +ADV-V +PrepNp +V-O +162276 Conj-CL +CLaCL +ADV-S-V-ADV +V2CL +DetNP +PrepNp +NPofNP +162284 V-ADV +162286 Conj-CL +CLaCL +V-S +DetNP +162292 V-O +CLaCL +V2CL +162296 ADV-V +162298 Conj-CL +162300 V-O +DetNP +NPofNP +sub-CL +ADV-O +NpAdjp +PronNP +162308 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +V-IO-S-ADV +DetNP +162316 IO-V-O-ADV +DetNP +PrepNp +ADV-S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +162325 Conj-CL +V-O-S-ADV +DetNP +162329 Conj-CL +162331 DetNP +that-VP +V-S +S-V-ADV +162336 Conj-CL +162338 V2CL +aCLaCL +162341 CLaCL +S-V +162344 V-O +162347 that-VP +ClCl2 +CLaCL +S-ADV-V +162352 notCLbutCL2CL +V-O +V-ADV-O +PrepNp +O-V +ADV-ADV-S-V-O +DetNP +NPofNP +DetNP +V-ADV +PrepNp +162365 DetNP +that-VP +ADV-V-IO +PrepNp +Np-Appos +DetNP +162372 Conj-CL +ClCl2 +V-ADV +PrepNp +DetNP +V-ADV-S-ADV +CLaCL +V-O +162382 ClCl +162384 Np2CL +ofNPNP +DetNP +sub-CL +ClCl +CLaCL +V2CL +162392 ADV-V +Conj-CL +CLaCL +ADV-V-ADV +PrepNp +DetNP +162399 ADV-ADV +PrepNp +DetNP +162403 Conj-CL +CLaCL +V-O-IO +DetNP +NPofNP +162409 ADV-V-O +O-V +162412 Conj-CL +162414 V2CL +DetNP +162417 Np2CL +intjNP +NpAdjp +AdjpaAdjp +162422 V2CL +ClCl +ADV-P-VC +PrepNp +PrepNp +ADV-V-O +PrepNp +V-IO-O-ADV +162431 Conj-CL +CLaCL +V-IO-S +DetNP +162436 V-ADV-S +PrepNp +DetNP +162440 Conj-CL +V-S-ADV +DetNP +PrepNp +NP-Demo +DetNP +162448 DetNP +V-ADV-ADV +DetNP +PrepNp +ADV-S-ADV-V-O +PrepNp +V-O +162456 Conj-CL +162458 ClCl +ADV2CL +PrepNp +DetNP +NPofNP +Conj-CL +ClCl +PtclCL +V-IO +CLaCL +ClCl2 +sub-CL +V-O +NpPp +PrepNp +NPofNP +CLaCL +162476 NP-Demo +DetNP +V-ADV-ADV +162480 V2CL +162482 S-V-ADV +162484 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +162490 DetNP +Conj3CL +V-S-O +DetNP +NPofNP +DetNP +V-ADV +PrepNp +NPofNP +162500 V-O +162502 ADV-V +DetNP +AdjpNp +162506 Conj-CL +V-ADV +162509 Conj-CL +ClCl2 +V-S-ADV +PrepNp +CLaCL +V-S-ADV +DetCL +O-V +DetNP +DetNP +162521 PtclCL +S-V-O +DetNP +NPofNP +162527 Intj2CL +162529 Conj-CL +ClCl2 +V-ADV +PrepNp +DetNP +V-O-S-ADV +DetNP +162537 ClCl +162539 Np2CL +ClCl +S-ADV-V-O +DetNP +NPofNP +DetNP +PrepNp +NpaNp +162548 ADV2CL +Conj2Pp +PrepNp +DetNP +NPofNP +162554 PrepNp +DetAdj +162557 Conj-CL +ClCl2 +162560 ADV2CL +PrepNp +DetAdj +162564 DetNP +PtclCL +P-VC-S +DetNP +162569 Conj-CL +162571 sub-CL +ADV-V-O +Conj3CL +ADV-V-O +V-ADV +PrepNp +162578 O-V +DetNP +AdjpNp +V2CL +AdjpNp +162584 ADV-V-O +V-O +DetNP +NPofNP +ADV-V-IO-ADV +O-V +PrepNp +NpaNp +162594 ADV-V-S-ADV-ADV +PrepNp +Demo-NP +DetNP +DetNP +DetNP +162601 Conj-CL +S-P-VC-ADV +PrepNp +DetNP +NPofNP +DetNP +162608 Conj-CL +CLaCL +ADV-V-O-ADV +V-O +PrepNp +NPofNP +162616 ClCl +PtclCL +V-IO +ClCl2 +sub-CL +CLaCL +ADV-V +162624 VC-P +PrepNp +DetNP +ADV-V-ADV +2Advp_h1 +PrepNp +DetNP +NPofNP +DetNP +162634 Conj-CL +162636 S-V-O-ADV +PrepNp +NP-Demo +DetNP +DetAdj +PrepNp +DetNP +NPofNP +DetNP +162646 Conj-CL +S-O-V +PtclCL +S-V-O-ADV +AdjpNp +NP-Demo +PrepNp +DetNP +NPofNP +162656 Conj-CL +ClCl2 +PtclCL +S-V-O +NPofNP +Np-Appos +NP-Demo +DetAdj +DetCL +V-ADV +PrepNp +V-ADV-S +that-VP +CLaCL +V-S-ADV +NpAdjp +PrepNp +DetNP +NPofNP +162676 V-ADV +PrepNp +DetNP +NPofNP +DetNP +162682 S-IO-ADV +DetNP +PrepNp +DetNP +162687 Conj-CL +CLaCL +P-S +V-S +DetNP +162693 S-IO +DetNP +NP-CL +ADV-S-V +PrepNp +DetNP +162700 Conj-CL +162702 sub-CL +S-V-O +NpaNp +DetNP +NPofNP +162708 DetNP +NPofNP +V-O +162712 V-ADV +PrepNp +162715 CLaCL +P-ADV-VC-S +V-ADV-ADV +PrepNp +DetNP +AdjpaAdjp +162723 ADV-V-ADV +O-V +NpaNp +NumpNP +162728 NumpNP +PrepNp +DetNP +NPDetAdj +DetAdj +162734 Conj-CL +162736 sub-CL +S-V-O +DetNP +NPofNP +V-O +162742 V-ADV +PrepNp +162745 CLaCL +P-ADV-VC-S +ADV-ADV-V +PrepNp +DetNP +162751 ADV-V-ADV +O-V +NumpNP +PrepNp +DetNP +NPofNP +DetNP +162760 PtclCL +V-O +NPofNP +NP-Demo +DetAdj +162766 Conj-CL +162768 that-VP +S-ADV-ADV-V-O +DetNP +NPofNP +PrepNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +162782 S-ADV-V +162785 sub-CL +CLaCL +VC-P-S +AdjpNp +NumpNP +162791 V-S +NpPp +PrepNp +CLaCL +V-O-ADV +DetNump +NumpNump +PrepNp +DetNP +162801 ADV-V-O +V2CL +DetCL +V2CL +162806 Conj-CL +ClCl2 +sub-CL +V-S +V-O +162812 V-IO +that-VP +CLaCL +V-ADV-ADV +PrepNp +162818 ADV2CL +PrepNp +Np-Appos +DetNump +NumpNump +DetCL +ADV-V +162826 ADV-ADV-VC-P-ADV-S +PrepNp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +that-VP +V-S +NPofNP +NP-Demo +DetAdj +162839 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +NPofNP +ClCl +V2CL +V-O-ADV +PrepNp +NpAdjp +NpaNp +162853 ClCl2 +sub-CL +O-V +V-O +DetNP +NPofNP +162860 Conj-CL +ClCl +ClCl2 +sub-CL +ADV-V +V-ADV-O +PrepNp +AdvpNp +NpaNp +162870 sub-CL +ADV-V-S +PrepNp +NPofNP +NumpNP +Conj2Nump3 +All-NP +162878 Conj-CL +ClCl2 +sub-CL +V-O +V-IO +DetNP +162885 Conj-CL +162887 sub-CL +O-V +AdvpNp +DetNP +PrepNp +NpaNp +DetAdj +162895 DetNP +162898 V-IO +CLaCL +S-V-ADV +PtclCL +O-V-ADV +PrepNp +DetNP +BeVerb +PrepNp +162908 S-V-ADV +PtclCL +O-V-ADV +PrepNp +DetNP +BeVerb +PrepNp +162917 ADV-V-IO +that-VP +ClCl2 +sub-CL +S-V-ADV-ADV +NpPp +PrepNp +PrepNp +DetNP +PrepNp +All-NP +NP-CL +PtclCL +O-V +V-ADV-ADV +PrepNp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +162939 Conj-CL +162941 ADV-V-S-ADV +BeVerb +NpaNp +162945 PrepNp +DetNP +AdjpNp +PrepNp +NPofNP +162952 V2CL +DetNP +162955 Np2CL +ADV-V-ADV-S +PrepNp +DetNP +NPofNP +162961 V-IO +ADV2CL +PrepNp +162966 DetNP +notCLbutCL2CL +162969 ADV2CL +PrepNp +ADV2CL +PrepNp +AdvpNump +162975 ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +Np-Appos +NP-CL +S-V-O +V-O-ADV +PrepNp +DetNP +NPofNP +162988 Conj-CL +ClCl2 +V-S-O +V2CL +V-IO-S +Np-Appos +NPofNP +AdjpNp +162997 Conj-CL +ClCl2 +ADV-V-S-O +V2CL +V-S-O +DetNP +CLaCL +V-S +Conj4Np +163007 DetNP +163009 DetNP +163011 All-NP +O-V +163014 V2CL +163016 Conj-CL +ADV-S-V-O-ADV +V2CL +DetNP +163021 CLaCL +V-ADV +PrepNp +163025 O-V-IO +163027 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +NPofNP +NP-Demo +DetNP +163036 O-V-IO +DetNP +163039 Conj-CL +CLaCL +ADV-S-V-O +V2CL +NP-Demo +DetNP +NP-CL +NPofNP +DetNP +NPofNP +S-V-IO-O +NumpNP +163052 ADV-V-ADV +V-O +163055 ClCl +V2CL +sub-CL +O-V +163060 Conj-CL +ADV-S-V-O-ADV +V2CL +DetNP +NPofNP +163066 CLaCL +V-ADV +PrepNp +163070 V-IO +163072 Conj-CL +CLaCL +S-ADV-V +163076 ClCl +ADV-V-O-ADV +V2CL +PrepNp +sub-CL +V-O +DetCL +V2CL +163085 Conj-CL +CLaCL +S-ADV-V-ADV +DetNP +NPofNP +V-O +DetCL +V2CL +163094 ADV-V-IO-O +V2CL +DetNP +NPofNP +All-NP +DetCL +V2CL +163103 V-O +DetNP +NPofNP +163107 Np2CL +NpAdjp +O-V-IO +NP-Demo +All-NP +DetNP +sub-CL +V-O +163116 PtclCL +163118 S-V-O +AdvpNp +DetNP +NPofNP +sub-CL +S-O-V +163125 Conj-CL +ADV-S-V-O-IO-ADV +V2CL +DetNP +NPofNP +DetNP +PrepNp +ADV-V-O +All-NP +DetCL +V-IO +163138 AdvpNp +DetNP +NPDetAdj +NPofNP +DetAdj +sub-CL +ADV-V-S-IO-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +163151 Conj-CL +ClCl2 +V2CL +ClCl2 +sub-CL +V-S-O +DetNP +NP-Demo +DetNP +CLaCL +V-ADV +PrepNp +DetNP +163165 V-ADV +PrepNp +DetNP +NpPp +NPofNP +DetNP +PrepNp +DetNP +163174 Conj-CL +CLaCL +V-O-S +NpAdjp +163179 V-O-ADV +163181 Conj-CL +V-ADV-S-ADV +CLaCL +V-O +163187 PtclCL +V-S +V-O-ADV +DetNP +NPofNP +PrepNp +All-NP +163195 Conj-CL +163197 V2CL +PtclCL +163200 that-VP +S-O2-V-O +DetCL +V-ADV +PrepNp +NpaNp +163208 Conj-CL +163210 CLaCL +CLaCL +ADV-V-S-O +PrepNp +NpaNp +DetNP +163217 DetNP +163219 V-IO +DetNP +NPofNP +163223 VC-S-P +DetNump +PrepNp +NpAdjp +163228 Conj-CL +notCLbutCL2CL +VC-P +P2CL +NpAdjp +163234 Conj-CL +O-S-ADV-V +O-S-V +DetNP +163240 Conj-CL +ADV-S-V-O +CLaCL +V-O +NPofNP +163246 V2CL +163249 that-VP +CLaCL +S-ADV-V-IO-O +PrepNp +DetNP +NPofNP +V-O +DetNP +NPofNP +163259 ADV-ADV-V-ADV +PrepNp +163262 Conj-CL +163264 that-VP +S-V +PtclCL +CLaCL +S-V-O-ADV +DetNP +NPofNP +AdvPp +PrepNp +163274 V-O +163277 DetNP +ClCl2 +sub-CL +P-VC-S +DetNP +NpPp +NPofNP +DetNP +PrepNp +DetNP +ADV-V-S +V2CL +163290 Conj-CL +163292 notCLbutCL2CL +S-V-O +NP-Demo +DetNP +IO-V +163298 Conj-CL +Conj3CL +V-S +NP-CL +S-ADV-V-ADV +PrepNp +NPofNP +163306 V-S +NP-CL +S-V-ADV +PrepNp +DetNP +163312 V-S +NP-CL +S-V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +163320 S-V +DetCL +V-O +V2CL +163325 ClCl +ADV-V-IO-S +sub-CL +CLaCL +O-V-IO +DetNP +163332 V2CL +163334 Conj-CL +S-V-O +DetNP +163338 Conj-CL +163340 DetNP +ClCl +CLaCL +V-O +DetNP +163346 ADV-V-O +S-V-ADV +PrepNp +sub-CL +P-VC-S +DetNP +DetNP +NPofNP +DetNP +163356 Conj-CL +ADV-V-ADV +V-O-IO +DetNP +163361 Conj-CL +163363 V2CL +163365 Np2CL +O-V +AdjpNp +sub-CL +V-O +NpAdjp +163372 Conj-CL +163374 CLaCL +163376 PrepNp +DetAdj +P-VC-S +DetAdj +163381 ClCl2 +sub-CL +V-O +ADV-V +PrepNp +DetNP +V-O +DetNP +163391 O2CL +163393 Conj-CL +ClCl +S-V +DetNP +O2CL +NP-CL +ClClClClCl +ADV-V +ADV-V +ADV-V +ADV-V +CLaCL +V-O +NpaNp +DetNP +163409 DetNP +163412 DetNP +NPofNP +sub-CL +O2CL +163418 DetNP +ClCl +O-V +NP-all +O-ADV-V +163425 DetNP +ClCl2 +sub-CL +V-O +P-VC +CLaCL +CLaCL +ClCl +V2CL +CLaCL +V-O +ofNPNP +DetCL +V2CL +163440 V-IO +163442 V-O-ADV +PrepNp +163445 ClCl2 +V2CL +V-O +163449 Conj-CL +163451 DetNP +V-O +DetNP +V2CL +sub-CL +V-O +BeVerb +NpAdjp +163460 Conj-CL +163462 DetNP +DetNP +NPofNP +163466 V-IO +that-VP +S-ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +163474 Conj-CL +163476 CLaCL +P-VC-S +S-ADV-V +PrepNp +NPofNP +163482 S-ADV +PrepNp +DetNP +NPofNP +DetNP +163488 Conj-CL +ADV-S-V-ADV-ADV +V2CL +DetNP +163493 Conj-CL +S-V-O +V2CL +163497 Conj-CL +163499 V2CL +DetNP +CLaCL +ADV-S-P-VC +PrepNp +163505 ADV-S-P +PrepNp +163509 V2CL +DetNP +ClCl +163513 S-V-O +163515 V-O +sub-CL +S-VC-P +163519 Conj-CL +163521 DetNP +163523 V-IO +that-VP +163526 Np2CL +Np-Appos +DetCL +V-O +PrepNp +DetNP +sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +NPofNP +NPofNP +AdvpNp +PrepNp +NumpNP +V-O +DetNP +NumpNP +NPofNP +DetNP +163549 Conj-CL +CLaCL +S-O-V +All-NP +S-V-O-ADV +Conj7Np +163561 PrepNp +DetNP +AdjpNp +163565 O-V +NpAdjp +163568 Conj-CL +CLaCL +S-VC-P +AdjpNp +163573 S-P +163575 Conj-CL +P-VC-S-ADV +DetNP +NPofNP +DetNP +NP-CL +Np-Appos +S-V-ADV-ADV +PrepNp +V-O-ADV +PrepNp +DetNP +NPofNP +163589 Conj-CL +ADV-V-O-ADV +V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +163600 Conj-CL +ADV-V-O +V-ADV +PrepNp +AdjpNp +NpAdjp +V-ADV-ADV +PrepNp +DetNP +163610 Conj-CL +163612 CLaCL +V-S-ADV +AdvpNp +PrepNp +DetNP +163618 O-V-IO +PtclCL +S-VC-P +163622 Conj-CL +S-V +163625 Conj-CL +ADV-V-ADV +ADV-V-ADV +PrepNp +AdjpNp +AdjpaAdjp +163633 Conj-CL +CLaCL +ADV-V-O +ADV-V +PrepNp +DetAdj +S-V +163642 ADV-ADV-V-ADV-ADV +All-NP +DetNP +163647 sub-CL +S-O-V +163651 V-S-ADV +AdvpNp +PrepNp +DetNP +163656 Conj-CL +ClCl2 +S-V +163660 DetNP +NPofNP +DetNP +DetNP +NPofNP +CLaCL +V-O +DetNP +163669 V-O-ADV +DetNP +V-ADV-ADV +PrepNp +DetAdj +PrepNp +DetAdj +163677 Conj-CL +ADV-S-V-ADV-O +V2CL +NpPp +PrepNp +DetNP +AdjpNp +163685 Conj-CL +163687 V2CL +DetAdj +that-VP +O-V +163692 Conj-CL +V-O-S +NpPp +PrepNp +AdvpNp +163698 Conj-CL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +163704 CLaCL +S-ADV-V +Demo-NP +DetAdj +AdjpNp +163710 O2-O-V-ADV +Np-Appos +DetCL +V-O +NpaNp +DetNP +NPofNP +DetNP +163719 DetNP +163721 Conj-CL +163723 V2CL +NPofNP +ClCl +163727 Np2CL +PtclCL +ADV-V-ADV +163731 CLaCL +V-O +DetAdj +163735 V2CL +163737 Conj-CL +163739 IO-V +Demo-NP +DetAdj +sub-CL +IO2CL +AdvpNp +163746 PtclCL +V-ADV-S +O-V-ADV +O-V +PrepNp +DetAdj +163753 Conj-CL +163755 DetNP +NPofNP +sub-CL +S-P-VC +163760 CLaCL +ADV-VC-S-P +DetAdj +163764 S-P +DetAdj +163767 Conj-CL +CLaCL +S-ADV-V-O-ADV +V-O +V-ADV +PrepNp +DetNump +PrepNp +163777 PrepNp +DetNP +CLaCL +163781 PrepNp +163783 CLaCL +CLaCL +S-V-IO +DetNP +NPofNP +DetNP +DetNP +NpaNp +163793 CLaCL +V-O-ADV +PrepNp +163797 V-O-IO-ADV +DetNP +PrepNp +DetCL +Conj3CL +V2CL +163804 V2CL +163806 V2CL +163808 ADV-V +DetNP +AdjpNp +163812 ADV-V-ADV-S-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +CLaCL +V2CL +163823 V-O-ADV +PrepNp +163826 Conj-CL +163828 O-V +163832 that-VP +V-S-ADV-ADV +Demo-NP +DetNP +NumpNP +NPofNP +CLaCL +S-ADV +PrepNp +163842 S-ADV +PrepNp +NPofNP +PrepNp +DetNP +NPofNP +163849 Conj-CL +163851 V2CL +DetNP +163854 O-V +V-O +V-O +DetNP +NP-CL +O-S-V +O-V +163863 V2CL +163866 aCLaCL +163868 O-V +DetNP +NPofNP +163872 CLaCL +S-ADV-VC-P +DetCL +V-ADV +Conj2Pp +PrepNp +NPofNP +163880 PrepNp +S-O-V +163883 IO-V-ADV +PrepNp +DetNP +NPofNP +163888 Conj-CL +ADV-S-V-ADV +V2CL +DetNump +PrepNp +DetNP +NumpNP +163896 Conj-CL +163898 DetNP +V-O +163901 that-VP +CLaCL +S-V-O +DetNP +NPofNP +DetNP +163908 S-V-ADV +DetAdj +163911 notCLbutCL2CL +P-VC-ADV +PrepNp +163915 CLaCL +S-VC-P +PtclCL +S-V-O +ADV-P-VC +PrepNp +ofNPNP +163923 S-VC-P +PtclCL +S-V-O +ADV-VC-P +PrepNp +ofNPNP +S-ADV-V-ADV +DetNP +NPofNP +DetNP +CLaCL +V2CL +163936 CLaCL +V2CL +163939 V-O-O2 +DetNP +NPofNP +NpPp +PrepNp +163945 Conj-CL +ClCl2 +V-S-ADV +PrepNp +V-O-S +NpAdjp +163952 Conj-CL +163954 NumpNP +NpAdjp +V-ADV +PrepNp +DetNP +163960 that-VP +S-V +163964 Np2CL +Np-Appos +NPofNP +163968 Conj-CL +163970 DetNP +sub-CL +V2CL +163974 Conj-CL +S-ADV-V-ADV +163978 Np2CL +Np-Appos +NPofNP +163982 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +163989 V-O +O-V-IO +163994 Np2CL +V-S +DetNP +NPofNP +163999 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +DetNP +NPofNP +164007 CLaCL +ADV-V +164010 V-O +164012 Conj-CL +ClCl2 +sub-CL +CLaCL +V-ADV +PrepNp +164019 V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +ADV-S-V-O-ADV +NumpNP +164028 ClCl +CLaCL +V-ADV +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +164037 ADV-V-O +CLaCL +S-V +164041 S-ADV +PrepNp +ADV-V-IO +V2CL +164046 Conj-CL +ClCl2 +sub-CL +S-IO-V-O +164051 that-VP +S-O-V +DetNP +ofNPNP +164056 Conj-CL +ADV-V-O +164059 Conj-CL +ClCl +S-V +sub-CL +V-S +DetCL +V-ADV-ADV +PrepNp +DetNP +164070 DetNP +NPofNP +164073 DetNP +NPofNP +AdjpaAdjp +164077 V-ADV +Conj2Pp +PrepNp +164081 PrepNp +Np-Appos +NPofNP +164085 Conj-CL +Conj3CL +S-ADV-V-O +DetNP +CLaCL +V2CL +164092 ClCl +V2CL +sub-CL +V-IO-S +DetNP +NpaNp +DetNP +164100 DetNP +164102 V-ADV-O +PrepNp +DetNP +164106 V-ADV +PrepNp +164109 Conj-CL +CLaCL +S-V-O-ADV +DetNP +AdjpNp +ofNPNP +DetNP +PrepNp +DetNP +164119 CLaCL +S-V-O-ADV +PrepNp +DetNP +164124 V-ADV +PrepNp +DetNP +164128 Conj-CL +S-V-ADV +Np-Appos +DetNP +NpaNp +DetCL +V-ADV +164136 DetCL +V2CL +164139 ClCl +164141 DetNP +NPofNP +P-S +V2CL +DetCL +V-ADV +PrepNp +NPofNP +S-P +PrepNp +DetAdj +164153 Conj-CL +ClCl2 +V-S-ADV +PrepNp +V-S-ADV +All-NP +DetNP +164161 P-VC-S +164163 Conj-CL +164165 DetNP +S-VC-P +Np-Appos +DetNP +Np-Appos +NpPp +PrepNp +NPofNP +DetNP +164175 Conj-CL +Conj4CL +V-S-ADV +PrepNp +DetNP +164181 V-O +All-NP +DetCL +V-ADV +Conj2VP +164187 PrepNp +DetNP +164190 V-O +NpaNp +DetNP +NPofNP +DetNP +164196 DetNP +NPofNP +DetCL +V-O +DetNP +164203 CLaCL +164205 S-P-VC +DetNP +NPofNP +NPofNP +164210 S-O-V-O2 +NPofNP +164213 Conj-CL +CLaCL +V-ADV-S-ADV +NpaNp +164218 PrepNp +DetNP +164221 V-O +164223 Conj-CL +CLaCL +S-ADV-V +NpaNp +DetNP +164229 DetNP +V-O +NpaNp +DetNP +NP-CL +O-V +164236 Np-Appos +DetNP +DetCL +CLaCL +V-ADV +PrepNp +DetNP +164245 S-P +DetNP +NPofNP +164250 ClCl +V2CL +O-S-V +164254 Conj-CL +164256 DetNP +164258 Intj2CL +that-VP +ADV-V-O +PrepNp +NPofNP +NpaNp +164265 V2CL +164267 Conj-CL +CLaCL +ADV-V-ADV-ADV +V-O +PrepNp +DetNP +PrepNp +164275 V-ADV +164277 Conj-CL +ADV-ADV-V +V-ADV +PrepNp +DetNP +164283 Conj-CL +CLaCL +CLaCL +ADV-V-ADV +V-O +NpPp +NpAdjp +PrepNp +DetNP +PrepNp +164295 PrepNp +sub-CL +ADV-O-ADV +164300 ADV-ADV-ADV-S-V-ADV +PrepNp +PrepNp +DetNP +164305 Conj-CL +V-ADV-S +DetNP +164309 Conj-CL +ADV-S-V-ADV +V2CL +DetNP +164314 ADV-ADV-V-S +DetNP +164317 Conj-CL +164319 V2CL +DetNP +ClCl +PtclCL +V-IO +ClCl2 +sub-CL +CLaCL +V-O +164329 ADV-V +notCLbutCL2CL +ADV-O-V +NPofNP +DetNP +ClCl2 +sub-CL +164337 NP-Demo +DetNP +CLaCL +V2CL +164342 V-ADV +PrepNp +DetNP +V2CL +164347 Conj-CL +O-ADV-V +All-NP +PtclCL +O-V-ADV +PrepNp +DetNP +V2CL +164356 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +V-ADV-ADV-S-ADV +V2CL +NpaNp +DetNP +164366 DetNP +NPofNP +DetNP +164370 CLaCL +ADV-O-V +PrepNp +AdjpNp +164375 S-IO-V-O +NP-Demo +DetNP +164379 Conj-CL +164381 V2CL +DetNP +164384 NpAdjp +ClCl2 +sub-CL +O-V-IO +164389 ADV-O-V +PrepNp +AdjpNp +164394 Np-Appos +DetNP +NPofNP +CLaCL +P2CL +PrepNp +164401 P2CL +PrepNp +164404 Conj-CL +S-V-ADV-ADV +PrepNp +164408 CLaCL +ClCl2 +sub-CL +164412 P2CL +PrepNp +164415 Conj-CL +ADV-ADV-V-O +PrepNp +164419 ClCl +ClCl2 +sub-CL +164423 P2CL +PrepNp +V-O +DetNP +sub-CL +S-ADV-V-O +PrepNp +DetNP +164432 Conj-CL +164434 V-IO +DetNP +ADV-V +164439 AdvpNp +164441 ADV-O-V +PrepNp +AdjpNp +164445 Conj-CL +S-ADV-V +164448 S-V-O +NpNump +164452 V-ADV +DetAdj +164455 Np2CL +V2CL +ADV-V-ADV +PrepNp +DetNP +164461 Conj-CL +CLaCL +164464 V2CL +164466 Np2CL +164468 ADV-V +164470 Conj-CL +ADV-V-ADV +V-ADV +DetAdj +164475 Conj-CL +ClCl +164478 V2CL +ADV-V +ADV-ADV-V +V2CL +164483 S-V-O +NpPp +PrepNp +DetNump +DetNP +NPofNP +DetNP +164492 S2CL +DetAdj +164496 DetNP +ClCl +164499 V-IO +that-VP +S-V-ADV-ADV +NpaNp +DetNP +164505 DetNP +PrepNp +DetNP +NPofNP +DetNP +Conj-CL +CLaCL +CLaCL +CLaCL +V-S-ADV-ADV +PrepNp +PrepNp +NPofNP +164519 ADV-V-O +164521 S-V-O +NpaNp +DetNP +164525 DetNP +164527 S-ADV-ADV-V-ADV-ADV +V2CL +DetCL +V-O +164532 O-V +AdjpNp +164536 Conj6CL +S-V-O +164539 O-IO-V +164541 V-ADV-O +PrepNp +164544 V-O +164546 V-O-IO +164548 V2CL +164550 Conj-CL +164552 sub-CL +V-S +DetNP +NPofNP +DetNP +DetNP +NPofNP +PrepNp +DetNP +V-O +DetNP +NPofNP +164565 Conj-CL +ClCl2 +V-S-O +DetNP +DetNP +NPofNP +aCLaCLaCL +164573 O-V +164575 O-V +164577 O-V +164579 CLaCL +ADV-V-O +AdjpNp +NpAdjp +AdjpAdvp +DetAdj +164586 V-IO-ADV +164588 Conj-CL +ADV-V-ADV-O-ADV +PrepNp +DetNP +NPofNP +164594 V-O +DetNP +NPofNP +164598 Conj-CL +164600 DetNP +V-O +DetNP +PrepNp +ClCl +S-VC-P +DetNP +ClCl2 +V2CL +CLaCL +V-O +164612 V-O +DetNP +NPofNP +164616 Conj-CL +CLaCL +ADV-V-ADV +V-O +PrepNp +DetNP +164623 V2CL +164625 Conj-CL +164627 sub-CL +V-S +DetNP +NPofNP +DetNP +NP-Demo +DetNP +164636 CLaCL +164638 Np2CL +164640 O-V-IO +DetNP +AdjpNp +NP-CL +S-V-IO-O-ADV +DetNP +PrepNp +DetNP +NPofNP +164651 DetNP +164653 PrepNp +DetNP +164657 Np2CL +NP-CL +O-V-S +DetCL +V2CL +PrepNp +NPofNP +ADV-V-S +PrepNp +164667 VC-P-ADV +PrepNp +NPofNP +164672 PrepNp +that-VP +CLaCL +V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +164681 V-IO +NpAdjp +V-O +DetNP +NPofNP +164687 Conj-CL +CLaCL +S-V +DetCL +V-ADV +PrepNp +NP-Demo +DetNP +164697 Np2CL +PrepNp +PtclCL +O-V +164702 Conj-CL +164704 NpaNp +DetNP +164707 DetNP +V-O +DetNP +NPofNP +that-VP +ADV-V +PrepNp +164715 Conj-CL +ClCl +ADV-V-O +V-O +O-V +DetNP +sub-CL +ADV-O-V +PrepNp +164725 Conj-CL +ADV-S-ADV-V-ADV-IO-ADV +V2CL +DetNP +PrepNp +164731 V-S-ADV +DetNP +NPofNP +DetNP +Np-Appos +NP-CL +S-V-O-IO +DetNP +NPofNP +164741 Conj-CL +CLaCL +V-O-ADV +DetNP +NPofNP +V-O +DetCL +V-ADV +PrepNp +DetNP +164752 ADV-V-O +V2CL +164755 ADV-V-O-ADV +AdjpNp +164759 DetCL +V2CL +ClCl +164763 O-V +DetNP +NPofNP +S-V +NpaNp +DetNP +NPofNP +164771 DetAdj +164773 S-P +V-ADV +PrepNp +DetNP +164778 Conj-CL +164780 V2CL +aCLaCL +164783 S-ADV +PrepNp +DetNP +AdjpNp +164788 S-ADV +PrepNp +DetNP +NPofNP +164793 Conj-CL +S-ADV-V +DetAdj +V-O +DetNP +NPofNP +Conj2VP +164802 Conj-CL +Conj3CL +S-V +DetNP +164807 ADV-V-O +V-O +DetNP +NPofNP +NP-Demo +DetNP +164814 O-V +DetNP +NPofNP +164819 DetNP +NPofNP +aCLaCL +164823 S-P-VC +DetNP +164826 S-ADV-VC-P +DetCL +V2CL +164830 Conj-CL +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +164838 O-V-ADV +PtclCL +O-V +PrepNp +DetNP +164844 Conj-CL +S-ADV-V-O +NP-Demo +DetNP +V-ADV +PrepNp +DetNP +Np-Appos +All-NP +O-V +aNpaNp +164858 Conj-CL +V-S-O +DetNP +V2CL +164863 Conj-CL +S-ADV-V-ADV-O +DetNP +V-ADV +V-O +DetCL +V2CL +NpAdjp +ADV-V-O +NPofNP +164874 Conj-CL +164877 Np2CL +ADV-V-O +NPofNP +164881 Conj-CL +S-V +164885 DetNP +DetNP +ADV-V-O-ADV +V-O +ofNPNP +NpaNp +164892 PrepNp +DetNP +NPDetAdj +DetAdj +164897 P-VC-S +NpaNp +DetNP +164901 DetNP +NPofNP +DetNP +164905 Conj-CL +CLaCL +P-VC-S +164909 P-S +164912 V2CL +DetNP +sub-CL +O-V-ADV +PrepNp +164918 Conj-CL +V-IO-O-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +164926 Np2CL +164928 that-VP +Conj3CL +P-VC +164932 O-ADV-V +DetNP +NPofNP +DetNP +PrepNp +164939 PrepNp +sub-CL +ADV-V-ADV +PrepNp +NPofNP +Conj-CL +164947 CLaCL +V-S +V-O-IO +164951 ADV2CL +164953 Conj-CL +164955 DetNP +V-O +DetNP +NPofNP +164960 Np2CL +164962 V-IO-O +DetNP +NPofNP +DetNP +164967 Conj-CL +S-V-IO-O +164970 Conj-CL +164972 P-S +NpaNp +NP-Demo +DetNP +164977 DetNP +164980 P2CL +164983 Conj-CL +CLaCL +V-O-IO +NPofNP +164988 O-IO +NPofNP +DetNP +DetNP +164993 Conj-CL +CLaCL +ADV-V +V2CL +164998 ADV-V +V-O +165001 CLaCL +ADV-V-ADV-S +PrepNp +Demo-NP +DetNP +NpAdjp +V-O +ADV-V-S +165010 V-O-ADV +165013 Np2CL +ClCl2 +sub-CL +S-V-ADV +ADV-V-O +CLaCL +V-S-O +DetNP +NPofNP +DetNP +NPofNP +165025 V-O-IO +DetNP +NPofNP +165029 Conj-CL +VC-P-S +PrepNp +NumpNP +165034 Conj-CL +CLaCL +S-ADV-V +DetAdj +V2CL +165040 ADV-V-O-IO +ADV-V-O +DetNP +NPofNP +DetNP +NPofNP +165047 ADV-S-ADV +aNpaNp +165050 DetAdj +165052 DetAdj +PrepNp +DetNump +165056 Conj-CL +ADV-V-S +NPofNP +DetNP +165061 Conj-CL +ClCl +ADV-P-VC +PrepNp +DetNP +ofNPNP +NPofNP +DetNump +sub-CL +S-V-O +165072 Conj-CL +165074 V2CL +DetNP +V-ADV +CLaCL +ADV-V-O +DetNP +165081 O2CL +DetNP +NPofNP +DetNP +165086 Conj-CL +CLaCL +ADV-V +PrepNp +DetNP +EitherOrVp +165095 P-VC +PrepNp +NpPp +PrepNp +DetNP +165101 Conj-CL +ClCl +ADV2CL +PrepNp +DetNP +NPofNP +DetAdj +PtclCL +V-O +DetCL +V-IO-ADV-ADV +PrepNp +DetNP +165115 S-VC-P +Conj3Np +DetNP +NPofNP +165120 DetNP +NPofNP +165123 DetNP +NPofNP +165126 notCLbutCL2CL +VC-P +DetNP +NPofNP +P2CL +165132 Conj-CL +ADV-S-V-ADV +V2CL +DetNP +PrepNp +DetNP +NPofNP +165140 Conj-CL +S-ADV-V-ADV +DetNP +165144 V2CL +V-O +DetNP +PrepNp +DetNP +165150 Conj-CL +165152 Np-Appos +NpPp +PrepNp +V-O +165157 Np2CL +NpPp +NpAdjp +PrepNp +DetNP +165163 Conj-CL +165165 V-O-ADV +Np-Appos +DetNP +NPofNP +Conj3Pp +PrepNp +All-NP +DetNP +NPofNP +165175 PrepNp +All-NP +DetNP +NPofNP +165180 PrepNp +All-NP +DetNP +NPofNP +165185 S-VC-P +DetNP +AdjpNp +AdjpaAdjp +165193 DetNP +NPofNP +sub-CL +O2CL +165198 CLaCL +ADV-S-V +PrepNp +Demo-NP +DetNP +AdjpNp +All-NP +DetNP +165207 S2CL +DetNP +165210 Conj-CL +ClCl2 +V-S +DetNP +V-O-S-ADV +DetNP +165218 PrepNp +DetNP +P-VC +ofNPNP +165224 P2CL +DetNP +165228 Conj-CL +ADV-S-ADV-V-O-O2-ADV +PrepNp +165233 DetNP +NPofNP +ClCl +V-ADV +PrepNp +NPofNP +sub-CL +PtclCL +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +165248 Conj-CL +ClCl2 +sub-CL +S-V-O-O2 +ADV-P-VC +NPofNP +165255 Conj-CL +CLaCL +S-V-O +V-IO-O +165260 V-S-ADV-O +PrepNp +Demo-NP +DetNP +V-O-ADV +165266 ADV-S-V-IO-ADV +DetNP +NpaNp +DetNP +165271 DetNP +NPofNP +165274 ADV-V-S +PrepNp +DetNP +ofNPNP +NpaNp +DetNP +165281 DetNP +165283 Conj-CL +CLaCL +O-V +All-NP +PtclCL +O-V-IO +Conj2VP +165292 ADV-ADV-V +PrepNp +DetNP +NPofNP +165297 Conj-CL +CLaCL +V2CL +165301 ADV-V +165303 Conj-CL +CLaCL +CLaCL +V-O +NpAdjp +165309 V-ADV +PrepNp +DetNP +NPofNP +DetNP +165315 S-ADV-ADV-V-O +DetNP +NPofNP +V-O +165320 Conj-CL +O-V-ADV +All-NP +DetNP +NPofNP +PrepNp +DetCL +V-ADV +DetNP +165330 Conj-CL +CLaCL +CLaCL +V-O +DetNP +NPofNP +165337 V-O +DetNP +165340 V-O +Conj4Np +DetNP +NpPp +PrepNp +DetNP +165347 DetNP +NpPp +PrepNp +DetNP +165352 DetNP +NpPp +PrepNp +DetNP +165357 VC-ADV-P +PrepNp +DetNP +165361 Conj-CL +165363 sub-CL +CLaCL +P-VC-S +ofNPNP +DetNP +165369 S-P-VC +All-NP +165372 Conj-CL +165374 NPofNP +PrepNp +DetNP +sub-CL +P-VC-S +ofNPNP +Np-Appos +DetNP +DetAdj +165385 sub-CL +S-VC-P +NPofNP +Np-Appos +DetNP +165391 Conj-CL +S-VC-P +DetNP +NPofNP +ofNPNP +165397 Conj-CL +CLaCL +S-V +S-V-O +165402 S-V +S-V-O +165405 Conj-CL +ClCl +165408 Np2CL +Np-Appos +NpaNp +165412 sub-CL +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +sub-CL +CLaCL +S-ADV-V +165423 O-V +S-V +DetCL +V2CL +165429 Np2CL +Np-Appos +NpaNp +165433 sub-CL +CLaCL +V-O-ADV +NpaNp +DetNP +165439 DetAdj +V-O-O2 +165443 sub-CL +V2CL +NpAdjp +NPofNP +AdjpAdvp +165450 Np2CL +Np-Appos +NpAdjp +DetCL +165455 CLaCL +S-P-VC +PtclCL +S-V-ADV +PrepNp +DetNP +165462 S-V +PtclCL +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +165471 Np2CL +AdjpaAdjp +165475 CLaCL +S2CL +DetNP +165479 S2CL +Np-Appos +DetNP +DetCL +V-O +DetNP +165486 Conj-CL +CLaCL +S-P-VC +PtclCL +S-V-ADV +PrepNp +DetNP +165494 S-V +PtclCL +S-V-ADV +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +165504 Np2CL +165506 CLaCL +S2CL +DetNP +165510 S2CL +Np-Appos +DetNP +DetCL +V-O +DetNP +165517 Conj-CL +S-V-ADV +DetCL +V-ADV +PrepNp +DetNP +Conj2Pp +PrepNp +165526 PrepNp +All-NP +NpPp +PrepNp +165531 Conj-CL +S-V-ADV +DetCL +V-ADV +PrepNp +DetNP +Conj2Pp +PrepNp +165540 PrepNp +DetCL +V-ADV +165544 Conj-CL +S-V-ADV +DetCL +V-ADV +PrepNp +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +165556 PrepNp +DetCL +V-ADV +PrepNp +165561 ClCl +165563 Np2CL +Np-Appos +NpaNp +165567 sub-CL +CLaCL +V-O +Conj3Np +DetNP +165573 DetNP +165575 DetNP +165577 V-O +Np-Appos +DetNP +NPofNP +DetNP +Conj3Np +DetNP +165585 DetNP +165587 DetNP +165589 Conj-CL +V-S +ClCl +O-V +O-ADV-V +165595 Np2CL +Np-Appos +NpAdjp +DetCL +CLaCL +V-O +DetNP +165603 O-V +DetNP +165607 Np2CL +Np-Appos +NpaNp +165611 sub-CL +CLaCL +V-O +DetNP +NPofNP +NpaNp +DetNP +165619 DetNP +165621 ADV-V-ADV +PrepNp +NpaNp +165627 Np2CL +NpAdjp +V-ADV-O +DetNP +NPofNP +DetNP +sub-CL +VC-S-P +AdvpNp +DetNP +NPofNP +165639 ClCl +165641 Np2CL +Np-Appos +NpaNp +165645 sub-CL +V-ADV +NP-CL +NpAdjp +V2CL +aCLaCL +165652 S-ADV-VC-P +165654 ADV-V-O +NpaNp +NPofNP +165658 All-NP +165660 ADV-S-P +AdvpNp +aCLaCL +165664 ADV-VC-ADV-P +DetNP +165667 ADV-VC-P-ADV +NpaNp +165671 ClCl +165673 Np2CL +Np-Appos +NpaNp +165677 sub-CL +CLaCL +CLaCL +V-O +DetNP +NPofNP +DetNP +165685 V-O +DetNP +NPofNP +DetAdj +165691 ClCl2 +sub-CL +VC-P +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PtclCL +ADV-VC-P-ADV +ofNPNP +PrepNp +DetNP +NPofNP +DetNP +165707 Conj-CL +165709 that-VP +VC-P +NPofNP +DetCL +V-O +DetNP +165716 Conj-CL +S-V-O +DetNP +NPofNP +DetNP +NPofNP +165724 Np2CL +Np-Appos +NPofNP +PrepNp +DetNP +NPofNP +DetNP +165734 PrepNp +PrepNp +Conj3Np +165739 CLaCL +ADV-V +PrepNp +Conj2VP +165745 CLaCL +ADV-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +165752 V-ADV +2Pp +PrepNp +PrepNp +sub-CL +V-ADV-S +PrepNp +All-NP +NP-CL +NpAdjp +V-ADV-ADV +PrepNp +DetNP +2Pp +PrepNp +DetNP +NPofNP +Np-Appos +DetAdj +PrepNp +DetNP +NPofNP +NP-CL +Np-Appos +NPofNP +O-V-ADV +PrepNp +NpaNp +DetNP +165782 DetNP +165784 ClCl +PtclCL +V-IO +V-S-ADV +NP-all +PrepNp +NP-Demo +DetNP +165793 ClCl2 +165795 Np2CL +Np2CL +Np2CL +DetCL +CLaCL +V-O +DetNP +165803 V-O +DetCL +V-ADV +PrepNp +CLaCL +ADV-V-O +165810 DetNP +NPofNP +ADV-S-V-O-ADV +PronNP +DetNP +NPofNP +PrepNp +DetNP +165819 ADV-V +165822 DetNP +NPofNP +165825 Conj-CL +165827 ClCl +ADV-O-V-ADV +2Advp_h1 +PrepNp +sub-CL +PtclCL +165834 P-S +V2CL +DetCL +V-ADV +PrepNp +NPofNP +165841 Conj-CL +CLaCL +S-ADV-V +DetNP +V-ADV +PrepNp +DetNP +165849 V-S-ADV +DetNP +NPofNP +V-IO-O +DetNP +NPofNP +DetNP +165857 Conj-CL +165859 V2CL +ClCl +PtclCL +V-O +NP-all +ClCl +PtclCL +V-IO +ADV-V-ADV-ADV-S +2Advp_h1 +PrepNp +NP-CL +S-ADV-V +165873 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +V-ADV-S-ADV-ADV +DetNP +PrepNp +165885 CLaCL +ADV-S-V +165888 P-S +DetNP +NPofNP +NpaNp +DetNP +AdjpNp +165895 NPofNP +DetNP +165898 Conj-CL +165900 V2CL +DetNP +ClCl +V2CL +PtclCL +S-O-V +165907 Conj-CL +CLaCL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +165914 S-VC-P +DetNP +165917 O-V +165919 Conj-CL +V-O +V-O +NpaNp +165924 NPofNP +165927 PtclCL +V2CL +165930 Conj-CL +CLaCL +V-S +V2CL +165935 ADV-V-S +DetNP +165938 Conj-CL +CLaCL +CLaCL +V-S-ADV +PrepNp +165944 S-ADV +PrepNp +165947 V-S-ADV +NpaNp +165950 PrepNp +165952 Conj-CL +S-P +All-NP +NPofNP +165957 CLaCL +CLaCL +ADV-V-O-ADV +PrepNp +165962 V-O +165964 V-ADV-ADV +BeVerb +PrepNp +All-NP +DetNP +PrepNp +DetNP +NPofNP +165973 Conj-CL +Conj3CL +ADV-V-S +165977 O-V +165979 V-O +165981 Conj-CL +CLaCL +S-V +AdjpNp +165986 V-O +165988 Conj-CL +ADV-V-S +PrepNp +DetCL +V-S +DetNP +DetNP +NPofNP +DetAdj +165998 Conj-CL +166000 Np2CL +DetCL +V-ADV +PrepNp +166005 Conj-CL +CLaCL +V-S-ADV-ADV-IO +Demo-NP +DetNP +NPofNP +DetNP +PrepNp +All-NP +DetNP +PrepNp +All-NP +DetNP +166019 ADV-V-S +DetNP +166022 Conj-CL +ClCl2 +ClCl +sub-CL +V-O +S-V-ADV +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-ADV +PrepNp +Np-Appos +DetNP +PrepNp +NpAdjp +S-V +DetCL +V2CL +2CLaCL +ADV-S-V-ADV +NpPp +PrepNp +DetNP +PrepNp +DetNP +S-ADV-V-ADV +NpPp +PrepNp +DetNP +V-O +NpPp +PrepNp +DetNP +NPofNP +166059 S-ADV-V-ADV-ADV +NpPp +PrepNp +DetNP +V-O +DetNP +NPofNP +166067 Conj-CL +S-IO-ADV +NpaNp +DetCL +ADV-V +PrepNp +166074 DetCL +V2CL +PrepNp +Demo-NP +DetNP +166080 Conj-CL +166082 sub-CL +ADV-V-S-ADV +DetNP +NPofNP +NpaNp +166089 Conj-CL +V-ADV-S +NP-CL +NpAdjp +CLaCL +S-ADV-V-ADV +2Pp +PrepNp +NPofNP +PrepNp +DetNP +166101 ADV-V +2Advp_h1 +166104 Conj-CL +166106 sub-CL +ADV-V-S +NP-Demo +DetNP +ADV-V-S +All-NP +166113 Conj-CL +ADV-V-S +PrepNp +DetAdj +NP-Demo +DetNP +166120 ClCl2 +sub-CL +166124 P-S +DetNP +166127 P2CL +ADV-V +166130 Conj-CL +CLaCL +V-S +NpaNp +166136 V-O-ADV +NpaNp +NpAdjp +166140 sub-CL +V-ADV-O +sub-CL +P2CL +AdvpNp +DetAdj +166149 Conj-CL +ClCl +ClCl +ClCl2 +sub-CL +166156 PrepNp +DetAdj +ADV-V +166160 ClCl2 +V2CL +P2CL +PrepNp +DetNP +sub-CL +ClCl +166168 sub-CL +CLaCL +S-V-ADV +DetNP +PrepNp +166174 V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +166182 PtclCL +P-VC-S +DetNP +DetNP +166187 Conj-CL +Conj4CL +ADV-ADV-S-V +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +DetNP +166197 S-ADV-V-O +DetNP +DetNP +NPofNP +166202 S-V-ADV +DetNP +PrepNp +DetNP +166207 S-V +DetNP +NPofNP +DetNP +166212 Conj-CL +Conj3CL +ADV-V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +166222 ADV-V-S +All-NP +DetNP +NPofNP +DetNP +166228 V-O +S-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NpAdjp +NpaNp +166242 Conj-CL +CLaCL +V-O-ADV +DetNP +NPofNP +PrepNp +NpAdjp +166250 V-O-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +AdjpNp +2Pp +PrepNp +NPofNP +PrepNp +NPofNP +166262 Conj-CL +ADV-V-O +PrepNp +DetNP +DetNP +166268 ClCl2 +sub-CL +CLaCL +ADV-S-VC-P +DetNP +NPofNP +166275 O-V +DetNP +166278 that-VP +P-S +DetNP +166283 sub-CL +V-O +All-NP +that-VP +P-VC-ADV +PrepNp +166291 V-IO +that-VP +166294 2Advp_h1 +NP-Demo +DetNP +sub-CL +PtclCL +S-V +All-NP +166302 CLaCL +S-V +NpaNp +DetNP +166307 DetNP +166309 S-ADV-V +DetNP +NPofNP +2Advp_h1 +166314 Conj-CL +ClCl +166317 PrepNp +NP-Demo +DetNP +NpaNp +166322 ADV-S +NpaNp +DetNP +NPofNP +DetNP +166328 DetNP +sub-CL +ADV-S-ADV +DetNP +166333 Conj-CL +166335 sub-CL +S2CL +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +166346 Conj-CL +ClCl2 +sub-CL +CLaCL +ADV-V-ADV +PrepNp +Np-Appos +NP-Demo +DetNP +NpPp +PrepNp +DetNP +BeVerb +VpVp +Conj2VP +166362 Conj2VP +166364 PrepNp +ADV-V-S-ADV +PronNP +PrepNp +DetNP +166371 sub-CL +CLaCL +V-S +DetNP +166376 V-O +P-VC-S +AdvpNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +166386 PrepNp +DetNP +CLaCL +S-V +166391 S-V +166394 PrepNp +DetNP +CLaCL +S-V +166399 S-V +166401 Conj-CL +ClCl +V2CL +sub-CL +166406 ADV-S-V +AdjpNp +DetNP +NPofNP +166411 Conj-CL +166413 that-VP +ClCl2 +sub-CL +166417 DetNP +ADV-S-V +AdjpNp +DetNP +CLaCL +PtclCL +V2CL +166425 PtclCL +ADV-V-O +V-S +DetNP +NPofNP +166431 ClCl +ADV-S-VC-P +PrepNp +AdvpNp +sub-CL +ADV-S-V +CL-NP +ADV-ADV-V +DetNP +NPofNP +DetNP +166443 Conj-CL +P-VC-S +NP-CL +DetNP +AdjpNp +AdjpaAdjp +166450 O-V-S-ADV-ADV +DetNP +PrepNp +DetNP +NPofNP +DetCL +V-IO-O-ADV +DetNP +PrepNp +166460 P-S +NP-CL +NP-Demo +DetNP +O-ADV-S-V +S-ADV-V +V2CL +DetNP +NPofNP +166471 V-IO +that-VP +ADV-V-O +PrepNp +All-NP +NPofNP +DetCL +V2CL +166480 Conj-CL +ClCl2 +sub-CL +CLaCL +166485 NP-Demo +DetNP +AdjpNp +PrepNp +DetNP +NPofNP +V-S +ofNPNP +DetNP +166495 CLaCL +V-O +V-O +DetNP +NPofNP +166501 V-ADV +Conj2VP +166504 PrepNp +DetCL +V2CL +CLaCL +V-S-ADV +DetNP +NPofNP +NP-Demo +DetNP +Conj2Pp +PrepNp +NP-CL +ADV-ADV-V +166518 PrepNp +NP-CL +ADV-ADV-V +166522 CLaCL +V-O +166525 O-ADV-V +DetNP +NPofNP +PrepNp +DetNP +166531 P-VC-S +NpaNp +DetNP +166535 DetNP +NPofNP +DetNP +166539 ADV-V-S-ADV +DetNP +NPofNP +DetNP +NumpNP +NP-CL +S-ADV-V-ADV +V-O +DetNP +NPofNP +PrepNp +NPofNP +DetNP +166553 Conj-CL +CLaCL +S-VC-P +NpPp +PrepNp +166559 S-P +166561 Conj-CL +S-ADV-ADV-V-ADV-O +DetAdj +V-O +DetNP +PrepNp +166568 Conj-CL +S-V-O-ADV-ADV +DetAdj +PrepNp +DetNP +PrepNp +DetNP +NPofNP +166577 Conj-CL +ClCl2 +V-S +DetNP +CLaCL +V-S +166584 V2CL +166586 Conj-CL +166588 NPofNP +ClCl +166591 V2CL +DetNP +V-ADV +PrepNp +166596 CLaCL +ADV-V-S +NP-Demo +All-NP +DetNP +166602 V-O +DetNP +NPofNP +166606 Conj-CL +166608 DetAdj +DetAdj +ClCl +V-IO-ADV +PrepNp +DetNP +NPofNP +sub-CL +S-V +DetNP +NPofNP +166620 Conj-CL +V-S-ADV +DetAdj +166624 ClCl2 +ADV-ADV-ADV-V-ADV +2Advp_h1 +NpaNp +166629 V-ADV-ADV +PrepNp +DetCL +V2CL +V-IO +166635 Conj-CL +CLaCL +ClCl2 +V-S-ADV +V2CL +V-S +DetNP +166643 CLaCL +S-V-ADV-ADV +DetAdj +PrepNp +PrepNp +DetNP +166650 V-S +DetNP +166653 Conj-CL +ADV-V-S-ADV +AdvpNp +DetNP +AdjpNp +166659 ClCl2 +Np2CL +Np2CL +V-IO +166664 Conj-CL +166666 V2CL +ClCl +PtclCL +V-IO +ADV-V-O +166672 Conj-CL +ClCl +V2CL +sub-CL +ADV-V-O +NpaNp +DetNP +166680 DetNP +166682 Conj-CL +sub-CL +CLaCL +CLaCL +CLaCL +S-ADV-V-O +V2CL +DetNP +AdjpNp +166692 V-IO-O +NPofNP +DetCL +V2CL +166697 ClCl2 +aCLaCLaCL +166700 IO-V-O +NumpNP +166703 IO-O +166705 IO-O +IO-ADV +PrepNp +DetNP +AdjpNp +166711 V2CL +166713 CLaCL +ADV-S-V-ADV +ADV-V +DetCL +O-V +DetNP +NumpNP +PrepNp +166722 V-O +AdjpNp +166725 ADV-S-V-O +DetCL +O2CL +DetNump +AdjpNp +166731 Conj-CL +CLaCL +S-ADV-V-O +DetCL +O-V +DetAdj +V2CL +166739 V-O +DetNP +NPofNP +DetNP +NPofNP +166745 Conj-CL +CLaCL +ADV-V-S +PrepNp +AdjpNp +DetNP +NPofNP +NP-Demo +DetNP +166755 V-O-ADV +PrepNp +166758 Conj-CL +ADV-S-V-O-ADV +V2CL +DetCL +O-V +DetNP +NumpNP +AdjpNp +NumpNP +166769 Np2CL +O-IO-V +NumpNP +166773 AdjpNp +NumpNP +166777 DetNP +NPofNP +ClCl +166781 Np2CL +NpAdjp +AdjpaAdjp +166785 ClCl +166787 PrepNp +ADV-O-V +PrepNp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +166798 V2CL +AdvpNp +DetCL +O2CL +DetNP +NumpNP +166805 Np2CL +O-IO-V +NumpNP +166809 AdjpNp +NumpNP +166813 DetNP +NPofNP +ClCl +166817 Np2CL +NpAdjp +AdjpaAdjp +166821 ClCl +166823 PrepNp +ADV-O-V +PrepNp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +166833 Conj-CL +166835 V2CL +AdvpNp +DetCL +O-V +DetNP +AdjpNp +166842 Np2CL +CLaCL +166845 that-VP +VC-P +AdjpNp +NpAdjp +CLaCL +V-ADV +ADV-ADV-V +166853 V-ADV +ADV-ADV-V +166856 ADV-ADV-V-O-ADV +V2CL +V2CL +DetNP +NPofNP +PrepNp +DetNP +166864 DetAdj +166866 Conj-CL +166868 V2CL +DetNP +NPofNP +ClCl +166873 Np2CL +NpAdjp +AdjpaAdjp +166877 that-VP +CLaCL +V-ADV +ADV-ADV-V +166882 V-ADV +ADV-ADV-V +sub-CL +CLaCL +V-S +S-V-O-IO +DetNP +NPofNP +DetNP +166892 PtclCL +ADV-S-V-O-ADV +V2CL +DetAdj +PrepNp +166898 Conj-CL +CLaCL +V-ADV-O +PrepNp +DetNP +166904 V-IO +DetCL +V-O +DetNP +NumpNP +166910 Conj-CL +CLaCL +CLaCL +IO-V +NP-all +DetCL +V2CL +166918 V2CL +166921 Np2CL +DetCL +ADV-V +AdvpNp +O-V +PrepNp +166928 Conj-CL +O-V-ADV +DetNP +AdjpNp +PrepNp +DetNP +NPDetAdj +DetAdj +166937 P-VC-S +NpaNp +DetNP +166941 DetNP +NPofNP +DetNP +166945 Conj-CL +166947 sub-CL +CLaCL +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +166957 S-ADV +All-NP +DetNP +PrepNp +PrepNp +NPofNP +NPofNP +166965 Conj-CL +CLaCL +V-ADV-S +PrepNp +All-NP +DetNP +166973 PrepNp +sub-CL +CLaCL +S-V-O-ADV +DetNP +DetNP +PrepNp +DetNP +166982 aCLaCL +166984 V-O-ADV +DetNP +PrepNp +NPofNP +166989 O-ADV +DetNP +PrepNp +166994 DetNP +NpPp +PrepNp +NPofNP +ClCl2 +167000 Np2CL +NPofNP +DetCL +V2CL +DetNP +NPofNP +V-O +DetNP +AdjpNp +V-IO-ADV +PrepNp +NPofNP +167013 Conj-CL +ClClClClClCl +CLaCL +V2CL +167018 V-IO-O +V2CL +CLaCL +V2CL +167023 V-O +CLaCL +P-VC +167027 V-O +CLaCL +P2CL +167031 V-O +CLaCL +V2CL +167035 V-O +CLaCL +P-VC +PrepNp +167040 V-ADV +PrepNp +167043 ADV-V-IO-S-ADV +DetAdj +167047 Np2CL +AdvpCL +CLaCL +CLaCL +V-O +S-V +167054 V2CL +167056 CLaCL +V2CL +167059 V2CL +167061 AdvpCL +CLaCL +CLaCL +V-O +S-P +167067 V2CL +167069 CLaCL +P2CL +167072 V2CL +167074 AdvpCL +CLaCL +V-O +S-P +Conj2P +V2CL +167081 PrepNp +167083 V-ADV +PrepNp +167086 Conj-CL +167088 V2CL +DetNP +167091 V-IO +ADV-IO-V +PrepNp +ADV-V-IO +NPofNP +ofNPNP +Demo-NP +DetNP +NPofNP +DetAdj +167103 AdvpNp +NpPp +PrepNp +167107 V2CL +PrepNp +PrepNp +Np-Appos +DetNP +NPDetAdj +DetAdj +DetCL +V-IO +NpaNp +DetAdj +167119 DetNP +NPofNP +167122 Conj-CL +ClClClClCl +CLaCL +V2CL +167127 ADV-V-IO-O +V2CL +CLaCL +V2CL +167132 ADV-V-O +CLaCL +P-VC +167136 ADV-V-O +CLaCL +P2CL +167140 ADV-V-O +CLaCL +Conj2P +167144 PrepNp +167146 ADV-V-O +167148 ADV-V-S-ADV +AdvpNp +167152 Np2CL +CLaCL +V-O +S-P +Conj6P +V2CL +167159 V2CL +167164 PrepNp +167166 ADV-V-O +167168 ADV-V-IO-ADV +167171 V-IO +ADV-ADV-IO-V +PrepNp +ADV-ADV-V-IO +NPofNP +ofNPNP +DetAdj +167179 Conj-CL +CLaCL +V-S-ADV +PrepNp +NpAdjp +167185 S-ADV +DetAdj +PrepNp +NpAdjp +167190 Conj-CL +ClCl2 +V2CL +ClCl2 +sub-CL +V-S-O +DetNP +NP-Demo +All-NP +DetNP +167201 DetNP +NPofNP +167204 that-VP +CLaCL +P-S-VC +PrepNp +NumpNP +DetNP +167211 S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetCL +V2CL +167219 CLaCL +ADV-V-S-ADV +NpaNp +DetNP +167224 DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetCL +VC-P +167236 sub-CL +CLaCL +O-ADV-V +DetNP +167241 V2CL +167243 Conj-CL +167245 ClCl +ADV-ADV +PrepNp +DetNP +sub-CL +ADV-S-V-ADV +PrepNp +DetNP +167254 Conj-CL +ClCl2 +S-VC-P +DetNP +2Pp +PrepNp +PrepNp +NPofNP +Np-Appos +DetAdj +CLaCL +V-ADV-S-ADV +V-O +NPofNP +NpAdjp +167270 ClCl +V-ADV +PrepNp +DetNP +S-V +167276 Conj-CL +ADV-S-V-ADV +V2CL +DetNP +167281 P-S +PrepNp +NP-Demo +DetNP +167286 Conj-CL +V-S-O +CLaCL +V-ADV +167291 V-IO +167293 Conj-CL +167295 V2CL +DetNP +ClCl +ADV-O-V-IO +DetNP +Conj-CL +O-V-ADV +NpAdjp +PrepNp +167305 Conj-CL +CLaCL +ADV-O-V-ADV +DetAdj +PrepNp +167311 O-ADV-ADV-V +167313 Conj-CL +S-ADV-ADV-V +V-O-ADV +NP-Demo +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetCL +V-O +167325 ClCl +PtclCL +V-IO +ADV-V-S-ADV +PtclCL +ADV-V-S-ADV +NP-Demo +DetNP +PrepNp +All-NP +DetNP +AdvpNp +O-V-S +PrepNp +NPofNP +167342 Np-Appos +NPofNP +DetNump +DetCL +VC-P +Np-Appos +V-ADV +PrepNp +DetNP +167352 O-IO-V +S-IO-V-O +167355 Conj-CL +S-V-IO-O +NumpNP +167359 Conj-CL +167361 PrepNp +sub-CL +O-V +167365 Conj-CL +ADV-V-S-ADV-ADV +DetNP +NPofNP +DetAdj +DetNP +DetNP +167373 ClCl +V2CL +ADV-V-IO-ADV +V-O +DetNP +167379 Conj-CL +167381 CLaCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetAdj +167390 DetNP +ClCl +S-P-VC +DetNP +NPofNP +ADV-V-O-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +167402 Conj-CL +CLaCL +ClCl +V-S +DetNP +sub-CL +V-IO-S +DetNP +167411 V-O +DetNP +167414 Conj-CL +ClCl2 +S-V +V-ADV +PrepNp +DetNP +NumpNP +167422 Conj-CL +ClCl2 +V-S +167427 V-IO +that-VP +S-V-O +NpPp +PrepNp +167433 Conj-CL +167435 V-ADV +V-IO +NpAdjp +167439 S-VC +Np2CL +167442 Conj-CL +167444 V2CL +167446 Np2CL +DetCL +V-ADV-O-ADV +PrepNp +DetNP +PrepNp +DetNP +167454 aCLaCL +167456 ClCl +S-V +DetNP +NPofNP +DetNP +sub-CL +V-ADV +PrepNp +167465 S-IO +NP-CL +NP-Demo +DetNP +ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +167476 sub-CL +ADV-V-S +NP-Demo +DetNP +167481 Conj-CL +167483 V2CL +Np-Appos +DetCL +V-O +167488 S-VC +Np2CL +167492 S-V +167494 Conj-CL +ClCl2 +V-S +CLaCL +S-ADV-V +DetNP +CLaCL +V-O +167503 V2CL +167506 V-IO +DetNP +ClCl +ClCl +V2CL +V2CL +S-VC-P +DetNP +NPofNP +167516 Conj-CL +ADV-V-IO-ADV +CLaCL +V-O +167521 V2CL +167523 ClCl +V-ADV-S +PrepNp +sub-CL +S-VC-P +Np-Appos +DetNP +NPofNP +NPofNP +DetNP +DetCL +ADV-V-ADV +PrepNp +PrepNp +NPofNP +167539 Conj-CL +167541 ADV-V-ADV-ADV-ADV +2Advp_h1 +PrepNp +PrepNp +Demo-NP +DetNP +NPofNP +DetNP +PrepNp +NP-CL +NP-Demo +DetNP +sub-CL +O-V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +167562 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +DetNP +167571 DetNP +CLaCL +167574 All-NP +PrepNp +PrepNp +NP-Demo +DetNP +Conj-CL +167581 CLaCL +V-O +DetNP +167585 V-S +DetNP +NPofNP +DetNP +167590 ADV-V-ADV-ADV +PrepNp +DetCL +V-S +PrepNp +DetNP +167597 Conj-CL +167599 V2CL +DetNP +ClCl2 +sub-CL +S-V-ADV +PrepNp +S-ADV-V +167608 DetNP +167610 V-IO +that-VP +ADV-ADV-ADV-V-O +PrepNp +Demo-NP +DetNP +sub-CL +S-V +167620 DetNP +ClCl2 +sub-CL +V-S +S-ADV-V +PrepNp +ADV-O-V +2Advp_h1 +167629 ADV-S-V +AdvpNp +All-NP +DetNP +167634 CLaCL +ADV-V-ADV-S-ADV +PrepNp +DetNP +PrepNp +NpAdjp +VC-P +167643 DetNP +V-ADV-ADV +PrepNp +ADV-ADV-V +V-ADV +167649 Conj-CL +ADV-V-O +V-O +NpaNp +DetNP +167655 DetNP +NumpNP +NPofNP +CLaCL +V2CL +167661 V2CL +167664 ClCl +P-VC-S-ADV +DetNP +NPofNP +PrepNp +CLaCL +V-ADV +167672 V-ADV +PrepNp +167675 Conj-CL +ADV-V-ADV-ADV +V-ADV +PrepNp +NPofNP +167681 Conj2VP +167684 Np2CL +NPofNP +167687 sub-CL +P-VC +PrepNp +NP-Demo +DetNP +167693 notCLbutCL2CL +sub-CL +S-V +sub-CL +S2CL +167699 Conj-CL +CLaCL +CLaCL +V-ADV +PrepNp +DetNP +167706 V-O +S-V +167710 DetNP +ADV-ADV-V-O +ADV-V-ADV +AdjpNp +PrepNp +167716 ClCl +CLaCL +V2CL +167720 V2CL +sub-CL +ADV-V-ADV +PrepNp +167725 aCLaCL +167727 S-P +DetNP +167730 S-P +DetNP +167733 ADV-V-ADV +ADV-ADV-V +PrepNp +167738 Np2CL +NPofNP +sub-CL +167742 V2CL +sub-CL +ADV-O-V +V-S +DetNP +NPofNP +167749 Conj-CL +ClCl +ADV-V-O +V-ADV +S-V +sub-CL +V-S +BeVerb +ofNPNP +DetNP +167760 Conj-CL +ADV-ADV-V-ADV-ADV +V-O-ADV +V2CL +PrepNp +O-V-ADV +DetNP +PronNP +167769 CLaCL +ADV-V-ADV +PrepNp +DetNP +167775 ClCl +ClCl +CLaCL +V-ADV +167780 V2CL +167782 V-S +DetNP +167785 S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +NPofNP +ClCl +ClCl +V2CL +V2CL +167796 DetCL +V-O +167799 Conj-CL +167801 ADV-S-V +S-V +Np-Appos +NPofNP +DetNump +167807 ADV-S +PrepNp +NpPp +NpPp +NpAdjp +PrepNp +NpaNp +167815 PrepNp +DetNP +NpaNp +167819 NPofNP +DetNP +167822 Conj-CL +S-V-IO-O-ADV +DetCL +V-O +167828 P-S-VC +PtclCL +O-V +167832 Conj-CL +CLaCL +167835 V-ADV +DetNP +167838 Np2CL +167840 V-O +167842 Conj-CL +167844 DetNP +167846 Np2CL +PrepNp +167849 CLaCL +ADV-ADV-V-O-ADV +V2CL +DetNP +PrepNp +DetNP +167856 V-O +167858 Conj-CL +167860 S-ADV-V-O +NPofNP +NpPp +PrepNp +V-O +DetNP +DetNP +NPofNP +167869 ADV-V-O +V-O +DetNP +NPofNP +DetNP +ofNPNP +DetNP +167878 DetNP +ClCl +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +sub-CL +S-ADV-V +All-NP +DetCL +V-O +PrepNp +167893 Conj-CL +167895 that-VP +CLaCL +ADV-V-O +V-O +DetNP +NPofNP +167902 V-IO-ADV-O +AdjpAdvp +NumpNP +NPofNP +167907 Conj-CL +167909 DetNP +that-VP +ADV-V-S +V2CL +167915 PrepNp +Demo-NP +DetNP +DetNP +DetNP +CLaCL +ClCl +ClCl2 +sub-CL +ADV2CL +PrepNp +V-ADV-ADV +PrepNp +NpaNp +167930 V-O +CLaCL +ADV-ADV-V-ADV +PrepNp +PrepNp +DetNP +V2CL +167938 ADV-V-O +167940 ClCl +S-V +NP-all +sub-CL +V-S +DetNP +NPofNP +DetNP +167949 ADV-S-ADV-V +NP-all +DetNP +V-O +167954 Conj-CL +ClCl +S-V-ADV +DetCL +V-O +DetNP +PrepNp +Np-Appos +DetNP +ADV-S-V +NpaNp +DetNP +167967 DetAdj +167969 Conj-CL +CLaCL +S-V-O-ADV-ADV +DetNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +167979 ADV-V-ADV-ADV +V-ADV +PrepNp +DetNP +V-O +DetNP +167986 Conj-CL +CLaCL +167989 NpaNp +DetNP +167992 NP-all +DetNP +PrepNp +DetNP +sub-CL +O-V +167999 ClCl +ADV-V +S-V +AdjpNp +168004 Conj-CL +168006 V2CL +168008 V-O +CLaCL +V-O +DetNP +NPofNP +DetNP +168015 ADV-V +PrepNp +AdjpNp +168019 Conj-CL +168021 V2CL +DetNP +168024 O-S-ADV-V +168026 Conj-CL +S-V +DetNP +168030 Conj-CL +168032 DetNP +168034 PrepNp +Np-Appos +DetNP +DetCL +V2CL +that-VP +168041 sub-CL +S-VC-P +Np-Appos +DetNP +DetNP +NPofNP +DetNP +168050 DetNP +CLaCL +S-V +168055 ADV-V-O +PrepNp +CLaCL +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +NPofNP +DetNP +168066 V-ADV +PrepNp +DetNP +NPofNP +DetNP +168072 ADV-S-V-O-ADV +DetNP +DetNP +NPofNP +168077 ClCl +168079 ADV-ADV-O-V +NPofNP +168082 ADV-V-O +DetNP +168085 Conj-CL +168087 V2CL +P-ADV-VC +168090 CLaCL +CLaCL +ADV-V-ADV +PrepNp +DetNP +NPofNP +168097 V-O +168099 S-V-ADV +168101 ClCl +168103 Np2CL +P-VC-S +DetCL +V-O +168108 Conj-CL +S-V-ADV-ADV +DetNP +PrepNp +DetNP +168114 Conj-CL +V-ADV-S-ADV +AdjpNp +168118 S-VC-P +AdvpNp +PrepNp +Np-Appos +DetNP +168124 Conj-CL +S-V-ADV-ADV +PrepNp +168128 ADV-V-O +O-V +168131 Conj-CL +ClCl2 +V-ADV +PrepNp +DetNP +CLaCL +V-O-S +168140 DetNP +S-VC-P +PrepNp +Np-Appos +DetNP +168146 Conj-CL +168148 PrepNp +that-VP +ADV-V-O +DetNP +168153 Conj-CL +168155 PrepNp +V2CL +DetCL +V2CL +DetNP +ClCl +ADV-S-P-VC +AdvpNp +PrepNp +sub-CL +S-O2-O-V +AdvpNp +DetNP +NPofNP +168170 ADV-V-O +CLaCL +V2CL +168175 that-VP +ADV-V-O +DetNP +168179 Conj-CL +ADV-S-V +168182 Conj-CL +V-S-O +DetNP +DetNP +NPofNP +NpAdjp +168189 that-VP +ADV-ADV-V-O +sub-CL +S-V +168194 Conj-CL +ADV-V-ADV +V-ADV +168198 Conj-CL +ClCl2 +S-V +O-V-S-ADV-ADV +All-NP +NpaNp +DetNP +168206 DetNP +NPofNP +DetNP +PrepNp +DetNP +sub-CL +V-O +168214 Conj-CL +CLaCL +ADV-V +V-O +168219 V-IO +Np-Appos +DetNP +168223 ADV-S-ADV-ADV-V-O-IO-ADV +Np-Appos +DetCL +V-O +168228 that-VP +V2CL +V2CL +DetNP +NumpNP +DetNP +NpaNp +168237 V-ADV +V-O +NpAdjp +168241 Conj-CL +168243 ClCl +P-ADV +PrepNp +S-V +168248 Conj-CL +CLaCL +ADV-V +V-O-ADV +DetNP +PrepNp +DetNP +168256 ADV-V +V2CL +168259 Conj-CL +168261 DetNP +V-O +DetNP +ClCl +ADV-V-S +V-O-ADV +PrepNp +DetNP +sub-CL +P-VC +NPofNP +168273 Conj-CL +ADV-V-ADV-O-ADV +O-V +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NpAdvp +DetAdj +168284 Conj-CL +VC-S-P-ADV +NP-Demo +DetNP +NPofNP +PrepNp +DetNP +168292 ADV-V-S +DetCL +V-ADV-ADV +PrepNp +Np-Appos +DetNP +168299 Conj-CL +CLaCL +V-O +Np-Appos +DetNP +NumpNP +DetNP +NPofNP +NP-CL +DetCL +V2CL +O-V-ADV +PrepNp +NPofNP +168314 ClCl +V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-IO-S +168323 Conj-CL +S-V-ADV +DetNP +PrepNp +DetNP +168329 Conj-CL +V-O-S-ADV +DetNP +168333 S-VC-P +DetNP +NPofNP +DetAdj +168338 Conj-CL +168340 DetNP +S-V +168343 Conj-CL +ADV-O-V +PrepNp +DetCL +V-S-ADV +PrepNp +DetNP +NpaNp +168354 DetNP +ADV-V-O +O2-O-V +168358 Conj-CL +168360 PrepNp +AdvpNp +AdjpNp +sub-CL +V-S-ADV +DetNP +168367 Conj-CL +ADV-V-S-O +PrepNp +DetNP +V-IO-O +DetNP +AdjpNp +NP-CL +O-V +168377 Conj-CL +V-ADV-O +NpAdjp +NpAdjp +VC-P +168383 Conj-CL +ClCl +ClCl2 +V-S +168388 DetNP +V-O +ClCl +O-V-IO +O2CL +NpaNp +168395 Np-Appos +DetCL +VC-P +sub-CL +168400 that-VP +ADV-V-O +PrepNp +168404 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +V-ADV-S-ADV +PrepNp +DetNP +NPofNP +168414 ClCl +P-ADV +NpaNp +168418 NP-Demo +DetAdj +sub-CL +O-V-ADV-ADV-ADV +PrepNp +PrepNp +168425 Conj-CL +168427 NpaNp +DetNP +168430 DetAdj +DetNP +that-VP +CLaCL +V-O +DetNP +168437 O-V +DetNP +168440 Conj-CL +168442 V2CL +DetNP +V-O +O-V-IO +NpPp +PrepNp +DetNump +168450 Conj-CL +168452 O2CL +DetNP +168456 DetNP +Conj-CL +O-V-ADV +Np-Appos +DetCL +VC-P +168464 V2CL +168466 Conj-CL +168468 Conj-CL +O-V +NpAdjp +168472 Conj-CL +S-ADV-V-ADV +168475 V2CL +168477 Conj-CL +S-ADV-ADV-V-O-ADV-ADV +DetNP +168481 that-VP +CLaCL +O-V +168485 ADV-S-V +V-O +DetNP +PrepNp +DetNP +168491 ClCl +P-VC-ADV +PrepNp +DetNP +NPofNP +S-V +168498 Conj-CL +168500 V2CL +All-NP +DetNP +S-P +DetNP +NPofNP +Conj2Pp +PrepNp +168509 PrepNp +DetNP +NPofNP +168513 CLaCL +ADV-V-IO-O +DetNP +168518 O-V +DetNP +sub-CL +V2CL +168523 ADV-S-ADV-V-ADV-O +DetNP +NPofNP +DetNP +V-O-ADV +DetNP +PrepNp +DetNP +PrepNp +All-NP +DetNP +168535 Conj-CL +Conj6CL +ADV-O-V-IO +V-O +NpAdjp +168541 ADV-V-ADV +V-O-ADV +PrepNp +PrepNp +DetNP +NPofNP +168548 O-ADV +PrepNp +DetNP +NPofNP +168553 ADV-V-O-ADV +V-ADV +PrepNp +168558 Np2CL +NPofNP +DetAdj +168562 ADV-V-O +V-ADV +PrepNp +DetNP +168567 V-ADV +PrepNp +DetNP +NPofNP +168572 Conj-CL +CLaCL +ClCl2 +sub-CL +V-O +CLaCL +V-O-O2 +DetNP +168581 V-O-O2 +DetNP +NPofNP +168585 V-O-ADV +PrepNp +DetCL +V2CL +168590 Conj-CL +ADV-V-O +V2CL +NpAdjp +Np-Appos +ADV-P +168598 sub-CL +V-O +DetNP +NPofNP +168603 Conj-CL +ADV-V-IO-O +V-ADV +PrepNp +NpAdjp +VC-P +NP-CL +S-VC-P +BeVerb +ofNPNP +V-O +NpAdjp +ADV-V +PrepNp +168618 Conj-CL +ADV-ADV-V-O +V2CL +V2CL +168623 Conj-CL +CLaCL +ADV-V-O-ADV +V-O +DetNP +NPofNP +V-O +168631 ADV-V-O-ADV +V2CL +168634 Conj-CL +V-ADV-O +PrepNp +DetNP +NPofNP +DetNP +NpAdjp +NPofNP +168643 S-VC-P +Np-Appos +DetNP +NPofNP +DetAdj +168650 PrepNp +NumpNP +CLaCL +S-ADV +PrepNp +168656 S-ADV +PrepNp +168659 Conj-CL +S-V-O-ADV +DetCL +V2CL +CLaCL +V-O +DetNP +NPofNP +168670 Np2CL +DetCL +CLaCL +V-O +DetNP +168676 ADV-V +PrepNp +AdjpNp +ClCl +V-O +sub-CL +VC-P +NPofNP +DetNP +168686 V-ADV +PrepNp +DetNP +168691 DetNP +V-ADV +PrepNp +DetNP +NpaNp +168697 ClCl +O-V +O-ADV-V +O-V +168702 CLaCL +ClCl +P-VC +NPofNP +V-ADV-ADV +PrepNp +DetNP +168710 V-ADV +PrepNp +168714 PrepNp +DetNP +ClCl +V-ADV +sub-CL +V-O +168721 Conj-CL +168723 that-VP +P-VC +ofNPNP +168727 Conj-CL +ADV-S-V-O +DetNP +AdvpNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +168737 Conj-CL +ADV-S-V-ADV-ADV +PrepNp +AdjpNp +PrepNp +All-NP +DetNP +PrepNp +NpAdjp +168747 Conj-CL +ADV-V-S-ADV-ADV +PrepNp +DetNP +AdjpNp +DetNP +NpAdjp +168755 ClCl +ClCl2 +ClCl +Np2CL +Np2CL +ADV-V +S-VC-P +ClCl2 +ClCl +Np2CL +NPofNP +Np2CL +NPofNP +ADV-O-V +PrepNp +168771 Conj-CL +168773 NPofNP +DetCL +ADV-V +V2CL +that-VP +O-V-S +168780 Conj-CL +ADV-S-ADV-V-O +NpPp +PrepNp +Conj4CL +V2CL +168787 V-O +168789 V-ADV +168791 V-IO +168793 Conj-CL +168795 DetAdj +ClCl +V2CL +ClCl +V2CL +PtclCL +V-S-ADV +V-O +168804 Conj-CL +S-ADV-V-O +DetNP +ADV-V-ADV +NpAdjp +DetNP +168811 Conj-CL +168813 S-V-ADV-ADV +DetNP +NPofNP +DetNP +2Pp +PrepNp +PrepNp +PrepNp +168822 S-V +DetNP +168825 S-V +DetNP +168828 S-V +DetNP +168831 Conj3CL +S-V +AdjpNp +NPofNP +DetNP +AdjpNp +V2CL +168839 ADV-V-ADV +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +AdjpNp +168850 V-IO +168852 Conj-CL +S-ADV-V-ADV-ADV +NpaNp +DetNP +168857 DetCL +ADV-V-O +PrepNp +DetNP +V-O +NpaNp +DetNP +168865 DetCL +V2CL +168868 ADV-P-VC-S +ofNPNP +168871 Conj-CL +VC-P-S +NP-CL +NP-CL +NpAdjp +NpAdjp +ADV-V +PrepNp +S-V-O-ADV-ADV +DetNP +PrepNp +DetNP +V-O +P-VC-S +PrepNp +Conj3Np +Np-Appos +DetNP +168890 Np-Appos +DetNP +ofNPNP +DetNP +NpaNp +168897 DetNP +NPofNP +DetNP +NPofNP +168902 Conj-CL +ClCl2 +S-V +V-S +NP-CL +NP-CL +NpPp +NpAdjp +PrepNp +S-P +S-V-IO +Np-Appos +AdvpNp +DetNP +168917 S-ADV-IO-V-O +V2CL +DetNP +DetNP +NPofNP +DetNP +168924 ADV-S-V-O +DetNP +V2CL +168928 Conj-CL +Conj3CL +ADV-S-V-O-ADV +V-O +DetNP +DetNP +PrepNp +NpAdjp +168937 V-O-ADV +PrepNp +NP-CL +DetNP +AdjpNp +ofNPNP +O-V-ADV +PrepNp +DetNP +168947 ADV-V +V-O-ADV +NpAdjp +DetNP +NPofNP +DetNP +168954 Conj-CL +ADV-S-V-ADV +NpaNp +Np-Appos +DetNP +168960 DetNP +AdjpNp +BeVerb +PrepNp +DetNP +168966 Conj-CL +ADV-V-S-ADV +NP-CL +DetNP +S-VC-P +PrepNp +DetNP +NpaNp +DetNP +168976 DetNP +168978 PrepNp +168980 Np2CL +V2CL +168983 Demo-NP +DetAdj +ADV-V +ADV-V +PrepNp +AdjpNp +168990 Conj-CL +168992 V-S-ADV +DetNP +PrepNp +DetNP +AdjpNp +CLaCL +CLaCL +ADV-ADV-ADV-S-V-O +V2CL +DetNP +169004 DetNP +V-ADV +PrepNp +DetAdj +169009 VC-S-P-ADV +DetNP +AdjpNp +DetAdj +169015 DetNP +ClCl +V-O +ClCl +V2CL +ClCl +V2CL +sub-CL +V2CL +169025 Conj-CL +S-ADV-V-O-ADV-ADV +V2CL +DetNP +V-O +DetNP +PrepNp +DetNP +169034 Conj-CL +ADV-ADV-V-S-ADV +PrepNp +DetCL +V-ADV +PrepNp +NPofNP +NpaNp +Np-Appos +DetNP +169045 DetNP +AdjpNp +V-O +DetNP +169050 Conj-CL +169052 NpAdjp +169054 Conj-CL +CLaCL +S-ADV-V-O +NPofNP +CLaCL +V-ADV +PrepNp +169062 V2CL +DetNP +169065 V-ADV +PrepNp +169068 Conj-CL +CLaCL +VC-S-P +DetNP +NPofNP +PrepNp +169075 S-P-ADV +DetNP +NPofNP +PrepNp +169080 Conj-CL +CLaCL +ADV-V-S +PrepNp +DetNP +NPofNP +DetCL +V2CL +169089 VC-P +PrepNp +169092 Conj-CL +169094 V2CL +DetNP +DetNP +ClCl +ADV-V-S +sub-CL +169101 that-VP +O-V +Np-Appos +DetCL +V2CL +169107 ClCl +ADV-VC-P +sub-CL +ClCl +V2CL +sub-CL +V2CL +169115 ClCl2 +V2CL +V-O +DetNP +NP-CL +ADV-V +169122 Conj-CL +169124 ADV-V +DetNP +NPofNP +that-VP +CLaCL +V-ADV +PrepNp +DetAdj +169134 V-ADV-ADV +PrepNp +DetNP +ADV-O-V +169141 Conj-CL +ADV-V-ADV +V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +NpaNp +169149 NpAdjp +V-IO +DetNP +NPofNP +169154 Conj-CL +169157 V2CL +169159 Conj-CL +CLaCL +S-ADV-V-O +V2CL +ofNPNP +DetNP +169166 V-O +169169 DetNP +ClCl +ADV-V +ClCl +V2CL +ClCl +169176 DetNP +NPofNP +that-VP +V-ADV +PrepNp +DetNP +ADV-O-V +169184 Conj-CL +ClCl2 +V-S +169188 NPofNP +DetNP +V-ADV +PrepNp +DetNP +DetNP +AdjpNp +DetCL +V2CL +169198 Conj-CL +ADV-O-V-IO-ADV +CLaCL +V-ADV +PrepNp +DetAdj +169205 O-V +NpAdjp +DetNP +169210 that-VP +ClCl +S-ADV-V-O +DetNP +NPofNP +ADV-V +S-V +169218 Conj-CL +ClCl2 +sub-CL +V-S-ADV +PrepNp +DetNP +CLaCL +S-V +169227 O-O2-V +169229 Conj-CL +ClCl +S-ADV-V +V-O +sub-CL +V2CL +169236 Conj-CL +V-S-ADV-ADV +NP-Demo +DetNP +PrepNp +PrepNp +DetNP +AdvpNp +169245 Conj-CL +CLaCL +CLaCL +S-V-ADV-ADV +DetNP +NumpNP +PrepNp +DetNP +PrepNp +DetNP +NP-CL +ADV-V-IO-S +DetNP +169259 ADV-V +V-O +169262 S-V +169264 Conj-CL +ADV-S-V-IO-ADV +V2CL +DetNP +169269 V-IO-S +All-NP +NpPp +Conj2Pp +PrepNp +169275 PrepNp +DetNP +169278 Conj-CL +ADV-V-O-ADV +V2CL +All-NP +DetNP +169284 PrepNp +DetNP +NPofNP +Conj3Np +DetNP +169290 DetNP +169292 DetNP +AdjpNp +V-O +S-V-O +NP-CL +O-V-IO +169299 Conj-CL +169301 PrepNp +All-NP +DetNP +PrepNp +DetNP +NPofNP +DetNP +169309 P2CL +NPofNP +DetNP +NPofNP +Np-Appos +Np-Appos +NPofNP +169317 ClCl2 +sub-CL +169320 PrepNp +Np-Appos +DetNP +DetNP +169326 DetNP +NPofNP +PrepNp +NPofNP +S-V-O +DetNP +NPofNP +P2CL +NPofNP +169336 PrepNp +DetAdj +ClCl +V-O +DetNP +NPofNP +O2-V-O +DetNP +NPofNP +V-S +Np-Appos +DetCL +V-ADV-ADV +PrepNp +DetAdj +V-O +NPofNP +NpPp +PrepNp +NPofNP +169357 Conj-CL +CLaCL +V-ADV-S +PrepNp +NpaNp +All-NP +DetNP +AdjpNp +169366 NP-all +DetNP +169369 V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +Np-Appos +V-O +DetNP +NPofNP +169378 Conj-CL +VC-S-P +DetNP +CLaCL +CLaCL +V-O +NPofNP +169386 O-ADV +NpAdjp +PrepNp +DetNP +NPofNP +169392 V-O +NpaNp +169395 NpAdjp +169397 Conj-CL +V-ADV +169401 DetNP +AdjpAdvp +PrepNp +ADV-ADV-VC-P-ADV +ADV-V-O +V2CL +DetNP +NPofNP +DetNP +NPofNP +169412 CLaCL +S-V-O-ADV +169415 S-V-O-ADV +NpAdjp +169418 Conj-CL +ClCl2 +V-ADV +PrepNp +Demo-NP +DetNP +CLaCL +V-S-ADV +PrepNp +NPofNP +DetNP +169430 V-ADV-ADV +PrepNp +DetNP +PrepNp +169435 Conj-CL +ADV-ADV-V-O +V-ADV +PrepNp +DetNP +CLaCL +V-S +DetNP +169444 S-ADV-V-ADV +DetNP +PrepNp +PrepNp +169449 Conj-CL +169451 PrepNp +DetNP +ClCl +S-VC-P +Np-Appos +DetNP +NPofNP +DetAdj +ADV-V +PrepNp +169462 Conj-CL +ADV-S-O-V-ADV +DetNP +PrepNp +DetAdj +169468 Conj-CL +CLaCL +VC-P-ADV-ADV +PrepNp +DetAdj +NumpNP +V-ADV +PrepNp +DetNP +169478 CLaCL +VC-P +PrepNp +DetNP +169483 S-V-O +DetNP +169486 Conj-CL +ADV-V-S-ADV-ADV +PrepNp +DetCL +V-S +DetNP +DetNP +PrepNp +DetNP +CLaCL +V-O +DetNP +NPofNP +DetNP +169502 that-VP +ClCl +CLaCL +V-S +DetNP +169508 V-S +DetNP +NPofNP +DetNP +CLaCL +V2CL +169515 V-ADV +PrepNp +DetNP +169519 Conj-CL +ADV-V-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +S-V-ADV +NpaNp +169529 Np-Appos +DetNP +NPofNP +PrepNp +DetNP +169535 Conj-CL +VC-P +169538 Conj-CL +169540 DetNP +CLaCL +V-ADV +PrepNp +169545 V-O +S-VC-P +NPofNP +169549 Conj-CL +ADV-ADV-V-O +V-O +DetNP +169554 Conj-CL +CLaCL +ADV-V-O +V-ADV +NpaNp +NpaNp +Np-Appos +NPofNP +DetNP +169564 Np-Appos +DetNP +NPofNP +169568 S-ADV-V-O +PrepNp +DetNP +DetNP +169573 ADV-V-O +169575 Conj-CL +ADV-V-ADV +V-O-ADV-ADV +Np-Appos +DetNP +NPofNP +PrepNp +DetNP +PrepNp +DetNP +PrepNp +169587 Conj-CL +V-ADV +PrepNp +169591 Conj-CL +ADV-ADV-ADV-V +DetNP +V-ADV +PrepNp +DetNP +169598 Conj-CL +169600 PrepNp +DetNP +NPofNP +sub-CL +169605 BeVerb +CLaCL +sub-CL +O-V +169610 AdvpCL +sub-CL +S2CL +DetNP +169615 Conj-CL +CLaCL +ADV-VC-P-S +PrepNp +DetNP +NPofNP +NpPp +PrepNp +NpAdjp +169625 V-ADV +169627 ClCl +ClCl +169630 NpaNp +169632 Np2CL +Np-Appos +V-ADV +V-O +169637 ClCl +P-VC +P2CL +DetNP +NPofNP +DetNP +169644 Conj-CL +169646 DetNP +CLaCL +V2CL +169650 V-ADV +PrepNp +169653 Conj-CL +S-ADV-V-ADV +DetNP +NPDetAdj +DetAdj +CLaCL +V-O +169661 V-ADV +NpAdjp +PrepNp +169665 Conj-CL +V-S-ADV +sub-CL +V-S-ADV +169670 ClCl +ClCl +P-VC-S +P2CL +NpPp +NpAdjp +PrepNp +CLaCL +IO-V +AdvpNp +DetNP +NPDetAdj +DetAdj +169684 V-O +169686 Conj-CL +V-S-ADV-ADV-ADV +DetNP +NPofNP +PrepNp +All-NP +DetNP +NPofNP +DetNP +169696 Conj-CL +ADV-ADV-V-ADV-ADV +ADV-V +PrepNp +DetNP +PrepNp +DetNP +NPofNP +NpaNp +169706 PrepNp +NpaNp +169710 Conj-CL +CLaCL +S-V-ADV +DetNP +NPofNP +V2CL +169717 ADV-V-IO-ADV +PrepNp +169720 Conj-CL +ADV-V-O-ADV +V2CL +V-O +DetNP +169726 Conj-CL +CLaCL +V-O-S +DetNP +169731 V-O +169733 Conj-CL +ClCl2 +S-V +ClCl2 +ADV-V-S +DetNP +V-ADV-O +PrepNp +All-NP +NpaNp +DetCL +ADV-V +169746 DetCL +V2CL +169749 Conj-CL +V-S-ADV +BeVerb +All-NP +DetNP +PrepNp +DetNP +169757 Conj-CL +CLaCL +V-O +NpAdjp +ADV-V-ADV +AdjpNp +169764 CLaCL +O-V +NpAdjp +169769 V-S +DetNP +sub-CL +V-O +169774 Conj-CL +CLaCL +ADV-ADV-ADV-V +AdjpAdvp +V2CL +169780 ClCl +V-ADV +PrepNp +AdjpNp +ADV-V +169786 Conj-CL +CLaCL +V-O-S +NpaNp +169791 NpPp +PrepNp +169794 CLaCL +V-O +169798 that-VP +S-V-O +169801 Conj-CL +169803 ClCl +ClCl +V-ADV-ADV +PrepNp +DetNP +AdjpNp +V2CL +sub-CL +ADV-V +2Advp_h1 +sub-CL +ADV-V +PrepNp +169817 Conj-CL +V-ADV +CLaCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +All-NP +DetNP +169828 O-V +DetNP +169831 Conj-CL +V-ADV-S-ADV-ADV +PrepNp +CLaCL +V-O +169837 V2CL +169839 that-VP +169841 sub-CL +V2CL +O-V +169845 Conj-CL +CLaCL +ADV-ADV-V +V2CL +V-O +DetNP +NPofNP +169854 ClCl +V2CL +V2CL +169858 Conj-CL +CLaCL +ADV-V-ADV-S +PrepNp +DetNP +169864 V2CL +169866 Conj-CL +CLaCL +ADV-ADV-V-O +V-O +169872 CLaCL +169874 IO-O-V +169876 ClCl +V2CL +CLaCL +O-V-IO +DetNP +169882 V-ADV-O-ADV +PrepNp +DetNP +NPofNP +O-V-S +PrepNp +NpAdvp +169890 Conj-CL +CLaCL +S-ADV-V-O-ADV +V2CL +CLaCL +V-O +169897 V-O +DetNP +sub-CL +ADV-S-V-O +ADV-ADV-V +PrepNp +169904 ADV-P-VC +PrepNp +AdjpNp +169908 Conj-CL +V-ADV-ADV +PrepNp +169912 Conj-CL +ClCl2 +V-ADV-ADV-ADV +PrepNp +PrepNp +169918 that-VP +P-VC +PrepNp +169922 Conj-CL +CLaCL +V-S-ADV +sub-CL +ADV-V-S +AdvpNp +NpPp +PrepNp +DetNP +169932 V-IO-O +DetNP +169935 Conj-CL +V-ADV +V-ADV-O +PrepNp +NpAdjp +V-ADV +PrepNp +169943 Conj-CL +CLaCL +ADV-V-O +ADV-V-O-ADV +V-IO +PrepNp +DetNP +DetNP +NP-CL +P-VC +169954 ADV-V-O +V2CL +DetNP +NP-CL +ADV-S-V +DetAdj +169961 Conj-CL +169963 DetNP +V-O +DetNP +NPofNP +DetAdj +169969 Np2CL +ofNPNP +DetNP +169973 Conj-CL +VC-S-ADV-P +NPofNP +DetNP +CLaCL +V2CL +169981 PrepNp +DetNP +NPofNP +ClCl +169986 V2CL +ClCl +S-V-O +V-O +sub-CL +ADV-S +Np-Appos +DetNP +169995 Conj-CL +169997 DetNP +169999 DetNP +NPofNP +that-VP +ADV-V-ADV +PrepNp +CLaCL +170006 PrepNp +DetNP +NPofNP +ClCl +S-VC-P +CLaCL +ClCl +V-IO +DetAdj +V-S +ofNPNP +DetNP +170020 CLaCL +V2CL +170023 CLaCL +V-O +DetNP +NPofNP +170028 V2CL +170030 sub-CL +170032 that-VP +O-V-S-ADV-ADV +DetNP +NPofNP +DetNP +V-O +PrepNp +DetNP +170042 DetAdj +170044 ClCl +V2CL +CLaCL +V-O +DetNP +NPofNP +170051 V-ADV +PrepNp +DetNP +NPofNP +170056 Conj-CL +CLaCL +V2CL +170060 ADV-ADV-V-ADV-ADV +V-O +DetNP +PrepNp +sub-CL +CLaCL +V-S +170068 V-O-ADV +DetNP +170071 that-VP +ADV-ADV-V +170074 Conj-CL +V-ADV-ADV +PrepNp +DetNP +170079 Conj-CL +CLaCL +S-V-ADV +All-NP +DetNP +PrepNp +170086 V-O +170088 Conj-CL +CLaCL +ADV-V-O +V2CL +S-V-ADV +Np-Appos +NPofNP +DetNP +PrepNp +DetNP +170100 V-O +170102 Conj-CL +ADV-V-O +V2CL +170106 Conj-CL +CLaCL +V-S +V-S-ADV +PrepNp +DetNP +NPofNP +170114 ClCl +S-V-ADV +AdjpNp +NpaNp +170119 NpaNp +DetNP +170122 DetNP +NPofNP +sub-CL +CLaCL +VC-P +170128 V-O +170130 Conj-CL +170132 DetNP +NPofNP +DetNP +170136 that-VP +V-ADV +PrepNp +NpaNp +DetAdj +170142 DetNP +NPofNP +that-VP +ADV-V +PrepNp +DetNP +NpaNp +170151 Conj-CL +170153 V2CL +DetNP +notCLbutCL2CL +O-V-S +NPofNP +DetCL +V2CL +S2CL +DetCL +ADV-V +170164 notCLbutCL2CL +V-ADV +V-O +O2CL +170169 Conj-CL +V-S +BeVerb +NpaNp +DetNP +NPofNP +170176 DetNP +170178 Conj-CL +CLaCL +V2CL +170183 CLaCL +ADV-S-V +PrepNp +NpaNp +DetNP +NPofNP +170190 DetNP +NPofNP +DetNP +170194 S-ADV-V +DetNP +AdjpNp +170198 Conj-CL +170200 DetNP +PtclCL +V-S-ADV-O +DetNP +NPofNP +DetNP +PrepNp +ADV-S-P-VC +DetNP +PrepNp +V2CL +170213 ADV-V-O-ADV +AdjpNp +DetNP +PrepNp +V2CL +170219 Conj-CL +CLaCL +170222 sub-CL +V-ADV-S +PrepNp +DetNP +170227 ADV-V-ADV +PrepNp +Demo-NP +DetNP +170232 S-O-V-ADV +NPofNP +NpAdjp +PrepNp +NpAdjp +170238 Conj-CL +170240 sub-CL +ADV2CL +V-S-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +Np-Appos +DetAdj +170250 S-V +AdjpNp +170253 Conj-CL +CLaCL +CLaCL +S-V-O-ADV +NpAdjp +PrepNp +NpAdjp +170262 sub-CL +ADV2CL +V-S-O +DetNP +DetNP +170268 CLaCL +S-V +DetNP +170272 S2CL +DetNP +170275 O-ADV +NpAdjp +PrepNp +NpAdjp +170280 Conj-CL +CLaCL +V-S +S-ADV-V-ADV +PrepNp +DetNP +PrepNp +DetAdj +170289 S-V-O-ADV +DetNP +NPofNP +O-V +V-O +DetNP +170296 Conj-CL +170298 DetNP +170300 DetNP +S-ADV-V +170303 Conj-CL +170306 ClCl +O-V-S +sub-CL +CLaCL +O-V +170312 V-S +NpaNp +170315 NpPp +PrepNp +170318 Conj-CL +CLaCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +Np-Appos +170328 CLaCL +170330 DetNP +NPofNP +DetNP +170334 S-ADV-V +O-V +ADV-S +DetNP +170339 V-IO +AdvpNp +DetCL +P-VC +PrepNp +170345 Conj-CL +170347 CLaCL +S-ADV-V +DetNP +PrepNp +DetNP +170353 ADV-S-ADV +DetNP +PrepNp +DetNP +170358 Conj-CL +VC-S-P +DetNP +NPofNP +DetNP +NPofNP +AdvpNp +DetNP +170367 Conj-CL +V-ADV-ADV +PrepNp +170371 Conj-CL +VC-P-S +NpAdjp +O2-V-O +V2CL +DetNP +170378 Conj-CL +ClCl +ClCl +V-O +PtclCL +ADV-V-O +DetNP +sub-CL +V-O +170388 Conj-CL +170390 Np-Appos +DetNP +DetCL +O-V +DetNP +AdjpNp +V-ADV +PrepNp +DetAdj +170400 Conj-CL +170402 V-ADV-S +DetNP +ClCl +CLaCL +O-V +170408 V2CL +CLaCL +O-V +170412 V2CL +170414 Conj-CL +S-V +170417 Conj-CL +170419 V-O-ADV +PrepNp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +V-O +DetNP +170431 Conj-CL +CLaCL +V2CL +170435 V-S +DetNP +NPofNP +170439 Conj-CL +170441 V2CL +DetNP +PrepNp +DetNP +PrepNp +sub-CL +O-V +170449 Conj-CL +S-ADV-V-ADV +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +170458 Conj-CL +S-V +NpPp +AdjpNp +PrepNp +DetNP +170465 Conj-CL +ADV-S-ADV-V-ADV +Conj5Pp +PrepNp +DetNP +170471 PrepNp +170473 PrepNp +DetNP +170476 PrepNp +DetNP +170479 PrepNp +NpaNp +170482 NpAdjp +V-O +O-V +PrepNp +170487 Conj-CL +ClCl +170490 DetNP +NPofNP +that-VP +S-V-O-ADV +PrepNp +DetNP +sub-CL +ADV-V-O +170499 Conj-CL +O-V-ADV +sub-CL +170503 sub-CL +O-V-S +S-V-O +170507 Conj-CL +CLaCL +S-ADV-V-ADV +DetNP +NPDetAdj +DetAdj +sub-CL +O-V +170516 V-ADV +170518 that-VP +S-VC-P +DetNP +NPofNP +DetNP +170524 Conj-CL +170526 sub-CL +ADV-O-O2-V +170529 Conj-CL +CLaCL +CLaCL +V-ADV +PrepNp +DetNP +170536 V-O +O-V-S +170539 V-ADV +PrepNp +170542 Conj-CL +ClCl +V-O +CLaCL +sub-CL +VC-P +PrepNp +170550 sub-CL +V-O-ADV +CLaCL +V2CL +170555 V-O-ADV +V-O +DetNP +170559 Conj-CL +CLaCL +V-O +DetNump +170564 CLaCL +V-O-IO-O2 +DetNP +170568 CLaCL +Np2CL +NpaNp +Np-Appos +NPofNP +DetNP +170575 Np-Appos +DetNP +NPofNP +DetNP +170580 V-IO-O-O2 +NP-CL +S-VC-P +NPofNP +170585 Conj-CL +O2CL +Conj9Np +170593 Np-Appos +NPofNP +DetNP +170598 Np-Appos +DetNP +170601 NP-CL +Np-Appos +S-ADV-V-O +170605 Conj-CL +V-ADV +PrepNp +170609 Conj-CL +V-ADV-S-ADV +DetNP +sub-CL +ADV-V-S-O +ADV-O-V +170616 Conj-CL +170618 V2CL +NpPp +PrepNp +V-O +sub-CL +170624 that-VP +V2CL +170627 Conj-CL +170629 Np-Appos +DetNP +DetCL +ADV-V +PrepNp +CLaCL +that-VP +O-V +170638 that-VP +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +DetNP +170646 Conj-CL +170648 V-O +PrepNp +ADV-V-S-O +O-V +170653 Conj-CL +170655 sub-CL +S-ADV-V +PrepNp +V2CL +NP-Demo +DetNP +170662 Conj-CL +170664 sub-CL +S-ADV-V +PrepNp +NP-Demo +DetNP +V2CL +170671 Conj-CL +170673 sub-CL +CLaCL +S-V-ADV +DetNP +PrepNp +170679 V2CL +V-O +V2CL +O-V +170684 Conj-CL +CLaCL +170687 ADV-O-V +ADV-V +PrepNp +DetNP +NPofNP +DetAdj +DetNP +NPofNP +sub-CL +ADV-ADV-O-V +DetAdj +170699 ADV-O-V +DetNP +NPofNP +170703 PtclCL +170705 that-VP +V-IO-S +DetNP +NPofNP +DetNP +NpaNp +All-NP +DetNP +170714 DetNP +NP-CL +PtclCL +O-V +170719 Conj-CL +170721 CLaCL +S-ADV-V-O-ADV +PtclCL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +170732 P-VC-ADV +AdjpNp +170735 O-V +NpAdjp +170738 Conj-CL +CLaCL +V-S +NpaNp +DetNP +NPofNP +170745 DetNP +NPofNP +170748 ADV-V-ADV-ADV +ADV-V +PrepNp +V-O +170753 Conj-CL +CLaCL +V-ADV-S +PrepNp +170760 Conj3Np +DetNP +NPofNP +170764 DetNP +NPofNP +170767 DetNP +NPofNP +170770 Conj-CL +170772 V-IO +P-VC-S +NpaNp +DetNP +NPofNP +170778 DetNP +170780 Conj-CL +170782 V-O +DetCL +ADV-ADV-V +PrepNp +ClCl2 +V2CL +P2CL +NpaNp +DetNP +NPofNP +170793 DetNP +NPofNP +170796 ClCl2 +PtclCL +S-V-O +DetNP +NPofNP +DetNP +S-P-VC +Conj3Np +NPofNP +170808 Conj-CL +ADV-V-O +V-ADV +PrepNp +DetNP +170814 Conj-CL +CLaCL +V-ADV-S-ADV +PrepNp +NpAdjp +sub-CL +S-ADV-V-ADV +ADV-V +PrepNp +PrepNp +DetNP +170826 S-P-VC +All-NP +DetNP +2Pp +PrepNp +DetNP +PrepNp +DetNP +170835 Conj-CL +CLaCL +V-O-ADV-O2 +PrepNp +170841 PrepNp +DetNP +NPofNP +V2CL +170847 DetCL +V2CL +V2CL +170851 Conj-CL +170853 PrepNp +DetCL +V2CL +EitherOr4CL +170858 CLaCL +S-V-ADV +PrepNp +DetNP +170863 CLaCL +V-S +DetNP +170867 V-O +170869 CLaCL +CLaCL +ClCl +S-V-ADV +PrepNp +DetNP +ADV-ADV-V-O +NpAdjp +170878 ADV-V-ADV +PrepNp +DetCL +ADV-V-O +NPofNP +170884 CLaCL +170886 sub-CL +V-S +DetNP +170890 ADV-V +PrepNp +DetCL +ADV-V-O +170895 CLaCL +S-V-ADV +PrepNp +DetNP +170900 CLaCL +CLaCL +V-S +DetNP +170905 V-O +170907 O-ADV-V +170909 CLaCL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +170916 CLaCL +V-O-ADV +V2CL +Conj2VP +170922 V-ADV +Conj3Pp +PrepNp +170926 PrepNp +170928 PrepNp +170930 Conj-CL +170932 S-V +S-V-O-ADV +V2CL +170936 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +V-O-S-ADV-O2 +NpPp +PrepNp +PrepNp +DetNump +DetNP +170948 Conj-CL +170950 CLaCL +IO-V-S +DetNP +NPofNP +DetNP +NPofNP +DetNP +170958 ClCl +170960 Demo-NP +DetNP +PrepNp +DetAdj +sub-CL +CLaCL +CLaCL +ADV-V +V2CL +170970 ADV-V +170972 CLaCL +ADV-V +V2CL +170976 ADV-V +CLaCL +ADV-ADV-V +170980 V-IO +170982 Conj-CL +170984 CLaCL +ADV-V-O +NP-Demo +DetNP +170989 ADV-O-V +All-NP +DetNP +170993 S-O-V +DetCL +V2CL +DetNP +170998 Conj-CL +CLaCL +P-VC-S +NpPp +PrepNp +DetNP +NP-CL +ADV-V-S +DetNP +171008 ClCl2 +sub-CL +V2CL +CLaCL +ADV-V-S +DetNP +171015 V-O +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +171022 Conj-CL +VC-ADV-S-P +DetCL +ADV-V +PrepNp +DetAdj +NP-CL +CLaCL +S-ADV-ADV-ADV-V-O +sub-CL +V-O +DetNP +PrepNp +171036 CLaCL +ADV-V-O-ADV +PrepNp +171040 P-VC +171043 ADV-V-S-ADV +NpaNp +171046 PrepNp +DetNP +171049 Conj-CL +P-VC-S +DetCL +ADV-V +PrepNp +DetNP +171056 CLaCL +S-VC-P +DetCL +O-V +DetNP +171062 CLaCL +S-ADV-V-O +Conj3Np +DetNP +NPofNP +DetNP +171069 DetNP +NPofNP +DetNP +171073 DetNP +PpNp2Np +PrepNp +DetAdj +V2CL +DetNP +171080 P-VC +171082 Conj-CL +VC-S-P +DetCL +ADV-V +PrepNp +DetNP +NPDetAdj +DetAdj +NP-CL +Conj3CL +S-V-O +DetNP +171095 V2CL +171097 V-ADV +Conj3Pp +PrepNp +171101 PrepNp +171103 PrepNp +171105 Conj-CL +171107 that-VP +PtclCL +171110 DetNP +sub-CL +CLaCL +ADV-V +PrepNp +DetNP +171117 ADV2CL +PrepNp +DetNP +171121 PtclCL +sub-CL +ADV-V +PrepNp +DetNP +171127 Conj-CL +ClCl +171130 AdjpNp +sub-CL +ClCl +ADV2CL +sub-CL +V2CL +notCLbutCL2CL +V-S +sub-CL +V-ADV +PrepNp +171142 ClCl2 +sub-CL +S-V-O-ADV +V2CL +V2CL +171148 Conj-CL +171150 ClCl +V2CL +O-V +171154 CLaCL +S-V-IO +ADV-V +PrepNp +PronNP +171160 V-IO +171162 Conj-CL +CLaCL +171165 S-V +171167 ClCl2 +S-ADV-V +S-V-ADV +AdvpNp +O-V +PrepNp +171174 Conj-CL +171176 ClCl +P-VC-S +DetNP +NPofNP +DetNP +sub-CL +CLaCL +S-V-O-ADV +DetNP +PrepNp +DetNP +171188 CLaCL +V-ADV +Conj2VP +171192 NpaNp +171195 ClCl +S-V +DetNP +Conj2VP +171200 sub-CL +ADV-V-S +171204 DetNP +ClClCl +ADV-O +ADV-O +ADV-P-S-ADV +PrepNp +DetNP +171212 Conj-CL +171214 sub-CL +V-S +DetNP +DetNP +sub-CL +V-S +DetNP +171222 Conj-CL +171225 ADV-V-O +DetNP +NPofNP +DetNP +171230 ADV-O-V +PrepNp +AdjpNp +P2CL +PrepNp +NP-CL +NPofNP +CLaCL +S-ADV-P-VC-ADV +sub-CL +V-ADV +PrepNp +DetNP +All-NP +Np-Appos +DetNP +NpPp +PrepNp +DetNP +171251 sub-CL +V2CL +V2CL +171255 VC-P-ADV +All-NP +DetNP +171259 V-O-ADV +NpAdjp +sub-CL +V-O-S +ADV-V +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +171271 Conj-CL +171273 NpAdjp +Demo-NP +DetNP +sub-CL +V-O +V2CL +171280 Conj-CL +CLaCL +ADV-ADV-V-IO +PrepNp +171285 ADV-IO-V-O +PrepNp +DetNP +AdjpNp +171290 Conj-CL +ClCl +171293 PrepNp +Demo-NP +DetNP +S-V +V-ADV +PrepNp +DetNP +171301 Conj-CL +CLaCL +171304 V-O +DetNP +sub-CL +VC-P +PrepNp +DetNP +171311 S-VC-P +AdjpNp +PrepNp +171315 Conj-CL +CLaCL +V-S +NPofNP +NpAdjp +171321 S-V-ADV-ADV +DetNP +PrepNp +DetNP +sub-CL +ADV-V-S +DetNP +171329 Conj-CL +S-VC-P-ADV +PrepNp +DetNP +ADV-V +PrepNp +DetNP +171337 Conj-CL +CLaCL +V-O +171343 Np2CL +V-ADV-S +that-VP +V2CL +171348 Conj-CL +CLaCL +ADV-V-O +V2CL +DetNP +171355 DetNP +ClCl +V2CL +V2CL +171360 Conj-CL +CLaCL +V-S +DetNP +171365 V-S +NpAdjp +171368 Conj-CL +171370 ClCl +ADV-P-VC-ADV +ADV-ADV-V-O +171374 Conj-CL +CLaCL +V-O +NpAdjp +171380 PrepNp +Conj-CL +171383 sub-CL +S-V-O +aNpaNp +171387 DetNP +171389 DetNP +171391 Conj-CL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +171402 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +ADV-V-O-ADV-S +PrepNp +DetNP +NP-CL +NpPp +PrepNp +NpAdjp +S-O-V-ADV +DetNP +PrepNp +DetNP +171419 Conj-CL +CLaCL +ADV-ADV-S-V-O-ADV +AdvpNp +O-V +PrepNp +DetCL +CLaCL +S-ADV-ADV-V +NpaNp +171431 CLaCL +V-ADV-S +PrepNp +DetNP +171436 S-V +DetNP +171439 S-V-O +O-V +171442 Conj-CL +CLaCL +ADV-ADV-ADV-V +PrepNp +NpaNp +171448 Conj2Pp +PrepNp +DetNP +171452 PrepNp +DetNP +BeVerb +171456 V-O-ADV +171458 Conj-CL +CLaCL +CLaCL +ADV-V +V-O-ADV +DetNP +PrepNp +171466 V-O +171468 ClCl +171470 V-ADV +NpAdjp +ClCl +171474 NpaNp +171476 Np2CL +Np-Appos +NPofNP +Np-Appos +DetNP +DetNP +171483 DetNP +ADV-O-V +sub-CL +171488 Np2CL +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +171495 Conj-CL +171497 P-S +NpAdvp +171500 Conj-CL +171503 NpAdvp +sub-CL +P-VC +171507 Conj-CL +171509 sub-CL +ADV-O-V-ADV +PrepNp +DetNP +171514 Conj-CL +VC-ADV-P-S +PrepNp +DetNP +NpAdjp +NpAdjp +NPofNP +V2CL +171523 Conj-CL +V-O-ADV +171526 ClCl +V-O-ADV +PrepNp +DetNP +sub-CL +ADV-V +PrepNp +171534 Conj-CL +V-IO +171537 Conj-CL +CLaCL +ADV-S-V-ADV +V2CL +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +171547 CLaCL +V-S-ADV-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +AdvpNp +171556 V-ADV +PrepNp +DetNP +171560 Conj-CL +CLaCL +S-V +DetCL +V-O +171566 V-ADV +Conj2Pp +PrepNp +DetNP +171571 PrepNp +DetNP +171574 Conj-CL +V-ADV +ClCl +V2CL +P-VC-S +DetCL +V2CL +171582 Conj-CL +CLaCL +V-ADV +PrepNp +DetNP +171588 CLaCL +V-O +S-V-ADV +Np-Appos +DetCL +V2CL +DetCL +V-O +DetNP +CLaCL +V2CL +171600 V2CL +171602 V2CL +171604 Conj-CL +CLaCL +171607 DetCL +V2CL +ADV-V-ADV +DetCL +V2CL +171613 ADV2CL +PrepNp +DetNP +171617 Conj-CL +V-O +V-O +S-V-ADV +PrepNp +DetNP +NPofNP +171625 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +171631 DetCL +V2CL +sub-CL +P-VC +PrepNp +171637 Conj-CL +notCLbutCL2CL +V-O +171641 CLaCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetAdj +171649 V-IO-O +CLaCL +O-S-IO-V +DetNP +171654 V-O +171656 Conj-CL +CLaCL +CLaCL +V2CL +171661 V-O +V-ADV-O +PrepNp +DetNP +O-V-IO-S +DetNP +171668 S-V +171670 Conj-CL +CLaCL +ClCl2 +V-S-ADV-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +V-S-ADV +NpAdjp +PrepNp +171683 VC-P +PrepNp +DetNP +171687 Conj-CL +CLaCL +V-S +NpAdjp +NPofNP +DetNP +ADV-P +171695 CLaCL +ADV-V-ADV +V-O +PrepNp +DetNP +NPofNP +171702 V-O-ADV-ADV +171704 that-VP +171706 DetNP +NPofNP +sub-CL +171710 V2CL +DetNP +sub-CL +CLaCL +V2CL +171716 V2CL +171718 Conj-CL +V-ADV +PrepNp +171722 Conj-CL +CLaCL +V-O-S +NpAdjp +171727 V-O +171729 Conj-CL +S-ADV-ADV-V-O +NpAdjp +Conj4CL +VC-P-ADV +PrepNp +NPofNP +NumpNP +171738 O-V-ADV +PrepNp +AdjpNp +171742 V-O +DetNP +PpNp2Np +PrepNp +171747 CLaCL +O-V +171750 ADV-ADV-V +PrepNp +DetAdj +V-O +NpPp +PrepNp +DetNP +V-ADV-ADV +PrepNp +DetNP +DetNP +NPofNP +171763 Conj-CL +171765 that-VP +171767 sub-CL +V-O +AdvpNp +DetNP +NPofNP +171773 Conj-CL +CLaCL +ADV-V-S +DetNP +NPofNP +DetNP +NPofNP +171782 DetNP +that-VP +V-ADV +PrepNp +DetNP +171788 Conj-CL +171790 DetNP +V-ADV-O +PrepNp +S-V +DetNP +PpNp2Np +PrepNp +V-ADV +PrepNp +DetNP +S-V-O +ofNPNP +DetNP +171804 Conj-CL +171806 DetNP +NPofNP +CLaCL +V-O +S-V-O +DetNP +171814 S-O-V +171816 Conj-CL +V-ADV +V-O +DetCL +O-V +171822 Conj-CL +Conj3CL +S-ADV-ADV-V +DetNP +V2CL +Conj2VP +171829 V-O +S-V-ADV +171832 V-ADV +171834 V-IO-O +All-NP +DetNP +171838 Conj-CL +171841 Np2CL +DetNP +NPofNP +171845 CLaCL +V-ADV +PrepNp +171849 VC-P-ADV +PrepNp +DetNP +NPofNP +171855 ADV-S-V +PrepNp +DetNP +171859 that-VP +ClCl +S-V +DetNP +NPofNP +ADV-ADV-V-O +DetNP +171867 Conj-CL +171869 DetNP +V-O +S-V +DetNP +DetNP +ClCl +ADV-V +ADV-V +171878 Conj-CL +171880 S-ADV-V +PrepNp +sub-CL +ADV-O +Conj3Np +DetNP +171888 Np-Appos +DetNP +NPofNP +171892 Conj-CL +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +171900 CLaCL +V-O +NpaNp +171904 V-ADV +Conj2VP +171909 V2CL +ClCl +ADV-V +Conj2VP +171914 CLaCL +S-ADV-V +DetNP +171918 V2CL +171920 Conj-CL +V-O +171923 Conj-CL +CLaCL +S-ADV-V-O +V-O +Conj3Np +DetNP +NPofNP +DetNP +171932 DetNP +171934 NpPp +PrepNp +171937 V-ADV +P-VC-S +DetNP +171941 Conj-CL +171943 V-O +DetNP +NPofNP +DetNP +171949 Np2CL +BeVerb +171952 Np2CL +DetNP +V2CL +171956 Conj-CL +ClCl +CLaCL +ADV-V-S +DetNP +171962 V2CL +sub-CL +VC-P +NpNump +171967 Conj-CL +V-ADV-ADV +NpAdjp +171971 Conj-CL +CLaCL +171974 that-VP +S-V-O +171978 V-IO-S +V2CL +171981 Conj-CL +CLaCL +CLaCL +V-ADV +171986 V-ADV +PrepNp +DetNP +NPofNP +171991 V-O-S +DetNP +NPofNP +171995 Conj-CL +ClCl2 +V-S +V-O +V-ADV +PrepNp +DetNP +172003 Conj-CL +S-ADV-V-ADV +DetAdj +V2CL +172008 Conj3CL +ADV-IO-S +172011 P-S +Np-Appos +DetNP +DetCL +V-IO +172017 S-ADV-V +NP-Demo +DetNP +PrepNp +DetNP +NPofNP +172024 PtclCL +S-VC-P +Np-Appos +DetNP +DetNP +NpaNp +NPofNP +DetNP +172033 NPofNP +Conj4Np +172039 Conj-CL +PtclCL +VC-S-ADV-P +DetNP +NPofNP +PrepNp +172046 Conj-CL +V-ADV +PrepNp +172050 Conj-CL +172052 DetNP +that-VP +172055 sub-CL +ADV-ADV +Conj3Pp +PrepNp +DetNP +NPofNP +172062 PrepNp +DetNP +NPofNP +172066 PrepNp +DetNP +NPofNP +172070 Conj-CL +172072 ADV-V-O +AdjpNp +sub-CL +ADV-ADV-V +IO-V-O +AdjpNp +DetNP +172080 Conj-CL +V-ADV +PrepNp +DetNP +NPofNP +172086 Conj-CL +V-O-ADV-ADV +DetNP +V2CL +172091 Conj-CL +Conj3CL +V-O +DetNump +172096 V-O +O-V-ADV +NumpNump +172100 V-IO-O +NPofNP +DetNP +NPDetAdj +DetAdj +172106 Conj-CL +172108 that-VP +ClCl +172111 PrepNp +sub-CL +ADV-O-ADV +CLaCL +ClClCl +ADV-O +ADV-O +ADV-ADV-O +PrepNp +DetNP +172122 CLaCL +V-O +172125 ADV-V-O +NumpNP +172128 Conj-CL +172130 CLaCL +ClCl2 +PtclCL +ADV-V-ADV +PrepNp +172136 sub-CL +PtclCL +V-ADV +172140 ClCl2 +PtclCL +CLaCL +S-ADV-V-O +PronNP +172146 V-O +ADV-V-O-ADV +V-ADV +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +PrepNp +NpAdvp +172158 Conj-CL +Conj3CL +172161 V2CL +sub-CL +V2CL +172165 O-V +NpAdjp +172168 CLaCL +V-ADV-O +AdjpNp +172172 V2CL +172174 Conj-CL +CLaCL +172177 Np-Appos +DetNP +sub-CL +P-VC-S +DetNP +NPofNP +172185 that-VP +CLaCL +S-V-ADV +Np-Appos +DetCL +V2CL +PrepNp +172193 ADV-V-S-ADV +PrepNp +DetNP +PrepNp +172198 Conj-CL +172200 that-VP +P-VC +172203 Conj-CL +172205 that-VP +172207 sub-CL +P2CL +NPofNP +DetNP +172212 Conj-CL +172214 V2CL +DetNP +172217 Np2CL +CL-NP +O-S-V +172221 Conj-CL +CLaCL +S-ADV-V-O +PronNP +DetNP +V2CL +DetNP +172230 PrepNp +PrepNp +Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +sub-CL +O-V +172241 Conj-CL +172243 DetNP +DetNP +that-VP +ADV-V-ADV-S +V-O +DetNP +NPofNP +DetNP +NPofNP +172253 Conj-CL +CLaCL +CLaCL +S-V-O +DetNP +172259 V-O +O-V +172262 ADV-V +172264 Conj-CL +CLaCL +CLaCL +S-V-O-ADV +DetNP +DetNP +V-O-O2 +NpAdjp +AdjpaAdjp +172275 V-O +172277 CLaCL +ADV-ADV-V +V-O +172281 ADV-O-V +172283 Conj-CL +172285 CLaCL +172287 NpAdjp +sub-CL +S-ADV-O-V-IO +DetNP +NPofNP +Conj3Np +DetNP +NPofNP +172296 DetNP +172298 DetNP +NPofNP +DetNP +172302 CLaCL +V-S +DetNP +NPofNP +PronNP +DetNP +172309 V2CL +NpaNp +DetNP +172313 DetCL +V2CL +172316 Conj-CL +172318 DetNP +DetNP +CLaCL +V-O-O2 +PtclCL +O-V +172325 V-IO +172327 Conj-CL +172329 that-VP +ClCl2 +sub-CL +O-V +V-IO-ADV +PrepNp +NPofNP +DetNP +NPofNP +172339 Conj-CL +172341 V2CL +DetNP +NPofNP +O-V +172346 Conj-CL +172348 O2CL +DetNP +NPofNP +Np-Appos +DetCL +V2CL +172355 Conj-CL +ADV-V-ADV +V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +172363 that-VP +ADV-V-IO-ADV-O +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +172371 Conj-CL +ADV-S-ADV-ADV-V-O +P-VC +DetNP +PrepNp +NpaNp +DetNP +172379 DetCL +V2CL +V-O +172383 Conj-CL +ADV-ADV-S-V-O +V-O +DetNP +V-O +DetNP +NPofNP +172391 Conj-CL +CLaCL +ADV-V-O-ADV +V2CL +PrepNp +DetNP +172398 CLaCL +CLaCL +V-O-ADV +DetNP +NPofNP +PrepNp +172405 V-O-IO +DetNP +172408 S-V-O-IO +DetNP +DetNP +NPofNP +172413 Conj-CL +Conj3CL +ADV-S-V +V2CL +DetNP +NPofNP +172420 V-O +DetNP +NPofNP +172424 V-O-ADV +PrepNp +172427 Conj-CL +CLaCL +V-S-ADV +DetNP +PrepNp +DetNP +172434 V-IO-O +All-NP +CLaCL +O-V +172439 O-V +172441 Conj-CL +ClCl +172444 CLaCL +V-S-ADV-ADV +NpPron +PrepNp +PrepNp +AdjpNp +172451 V-ADV +sub-CL +CLaCL +VC-S-P +NpaNp +DetCL +V2CL +172459 DetCL +V2CL +172462 ADV-O-V +V2CL +172465 Conj-CL +V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +AdjpNp +PrepNp +172473 Conj-CL +CLaCL +CLaCL +V-O +S-V +172479 V-S +172481 CLaCL +ADV-ADV-V-ADV +PrepNp +All-NP +DetNP +172487 V-ADV +172489 Conj-CL +Conj3CL +ADV-V-O +V2CL +AdjpNp +172495 ClCl +V-ADV +PrepNp +sub-CL +VC-P +PrepNp +NpAdjp +ADV-V-O +172504 V-O +V-O-O2 +172507 Conj-CL +ClCl2 +ADV-S-P-VC +172511 V2CL +DetNP +NPofNP +that-VP +CLaCL +P-VC-S +DetNP +172519 ADV-S-P +172522 sub-CL +ADV-V-IO-O +V-ADV +PrepNp +DetNP +AdvpNp +NpaNp +172530 O-V +172532 Conj-CL +172534 V2CL +V-IO-S-O +V2CL +172538 Conj-CL +172540 CLaCL +ADV-V-O +V2CL +ofNPNP +NpAdjp +172546 V-IO-O +V2CL +172549 Conj-CL +172551 ClCl +O-V +AdjpNp +V2CL +V2CL +172557 Conj-CL +172559 V2CL +O2CL +NpaNp +172563 NumpNP +172565 Conj-CL +V-IO-O +V-O-ADV-ADV +2Np +PrepNp +DetNP +AdjpNp +172573 Conj-CL +V-ADV-ADV +2Np +Conj2Pp +PrepNp +172579 PrepNp +172581 Conj-CL +CLaCL +Conj3CL +ADV-ADV-V +V-O +NpaNp +DetNP +NumpNP +172590 DetNP +NumpNP +V-ADV +PrepNp +DetNP +172596 V-O +DetNP +172599 ClCl +V-IO +DetNP +sub-CL +V-IO +172605 O-V-IO +DetNP +NumpNP +172609 Conj-CL +CLaCL +V-S +172613 V2CL +172615 Conj-CL +CLaCL +V-O +Np-Appos +ofNPNP +NumpNP +172622 ADV2CL +PrepNp +DetNP +172626 Conj-CL +VC-S-P +DetCL +V-O +DetNP +AdjpNp +172633 Conj-CL +ADV-V-O +CLaCL +S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +172643 PrepNp +DetNP +PrepNp +sub-CL +S-V-O +DetNP +172650 Conj-CL +ADV-V-ADV-ADV +V-O +PrepNp +DetNP +V2CL +172657 Conj-CL +ClCl2 +S-V +CLaCL +VC-S-P +DetNP +PrepNp +NPofNP +DetNP +172667 S-P-ADV +PrepNp +DetNP +172671 Conj-CL +ADV-ADV-V-ADV-ADV +ClCl +V-O +S-V-ADV +PrepNp +DetCL +V2CL +sub-CL +VC-S-P-ADV +DetNP +PrepNp +AdjpNp +NPofNP +DetNP +PrepNp +V-ADV +PrepNp +DetNP +172691 Conj-CL +V-O +V-ADV +172695 Conj-CL +ClCl +CLaCL +172699 V-O +S-ADV-V +PrepNp +DetNP +that-VP +P-VC +172706 V2CL +sub-CL +CLaCL +S-O-V +172711 V2CL +172713 Conj-CL +CLaCL +S-ADV-V-ADV +PrepNp +172719 ClCl +ClCl +V2CL +S-VC +ADV-V +172725 Conj-CL +CLaCL +V-ADV-ADV +PrepNp +PrepNp +DetNP +172732 V-S +DetNP +172735 Conj-CL +ClCl +ADV-ADV-ADV-V +PrepNp +PrepNp +sub-CL +notCLbutCL2CL +V-ADV +PrepNp +DetNP +V-S +BeVerb +ofNPNP +DetNP +172750 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +172758 V2CL +172760 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +CLaCL +ADV-V-ADV +ADV-V-O +NP-Demo +All-NP +DetNP +172772 V-O +ADV-O-V-ADV +PrepNp +DetNP +DetCL +ADV-V +sub-CL +ClCl +V2CL +sub-CL +V2CL +172784 Conj-CL +CLaCL +ADV-ADV-V-O +PtclCL +sub-CL +V-ADV +Conj3Pp +PrepNp +172793 PrepNp +172795 PrepNp +PrepNp +DetNP +DetCL +V2CL +172802 that-VP +ADV-O-V +DetNP +NPofNP +DetNP +NPofNP +172809 Conj-CL +S-V +PtclCL +S-V-O +172814 Conj-CL +V-ADV-S-ADV +PrepNp +NpaNp +DetNP +172820 NPofNP +DetNP +CLaCL +V-ADV +PrepNp +172827 NPofNP +DetNP +NPofNP +that-VP +ADV-V-O +NP-CL +AdjpNp +S-VC-P +DetNP +172837 Conj-CL +Conj3CL +S-ADV-ADV-V-ADV +NpaNp +DetNP +172843 All-NP +DetAdj +sub-CL +ADV-ADV-V-O +DetNP +V-O +DetNP +NPofNP +DetAdj +172853 ADV-ADV-ADV-V +PrepNp +sub-CL +ADV-V +172859 O-V-ADV +V-O +NPofNP +Conj3Np +172866 Conj-CL +172868 NpaNp +DetNP +172871 DetNP +CLaCL +ADV-ADV-V-S-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetAdj +172882 ADV-V-O +AdjpNp +DetNP +172886 Conj-CL +172889 PrepNp +Np-Appos +DetNP +sub-CL +172894 that-VP +CLaCL +CLaCL +S-ADV-O-V +Demo-NP +DetNP +DetNP +172902 S-ADV-V-ADV +DetNP +NPofNP +PrepNp +172907 ADV-V-O-ADV +V-O2-O +NPofNP +172911 ADV-V-O +V-O +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +172920 Conj-CL +172923 DetNP +NPofNP +DetNP +sub-CL +O-V +DetNP +NPofNP +172931 Conj-CL +172933 CLaCL +V-O +NpaNp +DetNP +NPofNP +172939 DetNP +NPofNP +172942 S-ADV-V +DetCL +V-O +NpaNp +172948 Conj-CL +172950 ClCl2 +sub-CL +172953 NpaNp +DetNP +172956 DetNP +P-S +NP-CL +S-VC-P +PtclCL +O-ADV-V +PrepNp +ADV-V-O-ADV +S-O-V-IO +NpaNp +DetNP +172968 DetNP +V-O-ADV +DetNP +NPofNP +DetNP +NP-CL +DetNP +NPofNP +O-V +172978 Conj-CL +O-V +NpAdjp +AdjpNp +172983 Conj-CL +172985 V-ADV-O +DetNP +CLaCL +V-O-S +172991 CLaCL +P-VC-S +NP-CL +NpAdjp +PrepNp +DetNP +V-ADV +PrepNp +S-V-O +V-O +173002 S-VC-P +DetCL +ADV-V +PrepNp +DetNP +DetCL +V-O +DetNP +173011 Conj-CL +ClCl2 +sub-CL +V-ADV-ADV +PrepNp +PrepNp +DetNP +V-O-S-O2 +DetNP +NPofNP +DetNP +173023 Conj-CL +ClCl +173026 ClCl +ADV-S-P-VC +AdvpNp +173030 that-VP +ClCl +S-ADV-V-O +All-NP +DetCL +ADV-V-ADV +PrepNp +DetNP +O-V +sub-CL +notCLbutCL2CL +V-ADV +PrepNp +ofNPNP +DetNP +CLaCL +ADV2CL +PrepNp +DetNP +173050 ADV-V +PrepNp +DetNP +V-O +All-NP +DetNP +173057 Conj-CL +173059 that-VP +173061 Np2CL +DetCL +ADV-V +PrepNp +DetNP +DetNP +173068 Conj-CL +ADV-S-V +AdvAdv +PrepNp +DetNP +NPofNP +DetNP +DetNP +NPDetAdj +DetAdj +173080 Np2CL +12Np +NpAdjp +S-ADV-V +All-NP +Demo-NP +DetAdj +173088 V-O +DetNP +173091 Conj-CL +ADV-ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +173098 Conj-CL +CLaCL +ADV-O-V +V-ADV +PrepNp +S-V +173105 ADV-V-O +V2CL +173108 Conj-CL +ADV-ADV-S-ADV-V-ADV +V-ADV +PrepNp +NP-CL +S-V-O +ofNPNP +DetNP +NPofNP +NpAdjp +V2CL +PrepNp +DetNP +NPofNP +173123 Conj-CL +ClCl +S-VC-P +DetNP +P-ADV +DetNP +173130 Conj-CL +173132 that-VP +O-V-ADV +DetNP +PrepNp +DetNP +NPofNP +173139 Conj-CL +173141 ClCl +V-O +ADV-V-S +DetNP +sub-CL +ADV-VC-P-S +CLaCL +V-O +DetNP +NPofNP +DetNP +173153 IO-V +DetNP +173156 Conj-CL +CLaCL +S-V +173161 ClCl +173163 Np2CL +S-ADV-V-ADV +AdvpNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +173174 Conj-CL +173177 PrepNp +Demo-NP +DetNP +V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +173186 Conj-CL +ADV-V-O +V-ADV +PrepNp +DetNP +NPofNP +CLaCL +S-V-ADV +DetNP +PrepNp +DetNP +173198 S-V +DetNP +173201 Conj-CL +ADV-V-ADV-ADV-ADV +ADV-V-ADV +PrepNp +DetNP +NPofNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NPofNP +DetNP +NPofNP +173217 Conj-CL +CLaCL +V-IO-O +AdjpaAdjp +173224 that-VP +V-IO-O +DetNP +173228 Conj-CL +Conj3CL +ADV-V-O-ADV +V-O-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +173241 ADV-V-O +V2CL +DetNP +NPofNP +173246 CLaCL +ADV-V +V-ADV +PrepNp +DetNP +173254 S-VC-P +V2CL +173257 Conj-CL +CLaCL +V-S +ofNPNP +DetNP +173263 CLaCL +ADV-V-S +DetNP +NPofNP +DetNP +NPofNP +173270 V-ADV +173272 Conj-CL +173274 that-VP +IO-V +173277 Conj-CL +173279 O-IO-V +2Advp_h2 +173282 Conj-CL +ADV-V-ADV +173285 ClCl +ADV-O-V +ADV-V-O +CLaCL +S-V +DetAdj +173292 S-V +173294 ClCl2 +CLaCL +ADV-ADV-S-V +PrepNp +Demo-NP +DetNP +AdjpNp +173302 ADV-V-O +O-V +173305 V-O +DetNP +ClCl +V-ADV +PrepNp +DetNP +sub-CL +CLaCL +ADV-ADV-V-ADV +NpAdjp +173316 ADV-V-O +O-V +173319 Conj-CL +173321 sub-CL +V-O-ADV +NpAdjp +PrepNp +NPofNP +PrepNp +DetNP +173329 Conj-CL +S-P-VC +NPofNP +PrepNp +173334 Conj-CL +173336 DetNP +NPofNP +that-VP +ADV-V-S-O +O-ADV-V-ADV-ADV +PrepNp +173343 Conj-CL +173345 O-V +AdjpNp +173348 Conj-CL +173350 O2CL +173352 Conj-CL +V-IO-O +DetNP +V-ADV +PrepNp +DetNP +173359 Conj-CL +CLaCL +CLaCL +ADV-ADV-V +V-O +DetNP +NumpNP +V2CL +173368 ClCl +V-IO +DetNP +NPofNP +sub-CL +V2CL +173375 V-IO +DetNP +173378 Conj-CL +V-O +NpAdjp +173382 Conj-CL +ADV-V-O +V-O +O-V +AdvpNp +173388 Conj-CL +CLaCL +CLaCL +V2CL +173393 V2CL +173395 V-O +Np-Appos +NPofNP +NumpNP +173400 Conj-CL +VC-P +AdvpNp +173404 Conj-CL +V-O +173407 Conj-CL +ADV-ADV-V-ADV +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +173419 Conj-CL +CLaCL +V-S +DetNP +173424 V-O-ADV +V-ADV +V-ADV-O-ADV-ADV +PrepNp +PrepNp +DetNP +V-O +173432 Conj-CL +173434 V-ADV +DetNP +NPofNP +ADV-S-V-O +NP-Demo +DetNP +173441 ClCl +PtclCL +V-IO +sub-CL +V-IO-S +NP-Demo +DetNP +173449 Conj-CL +ADV-ADV-ADV-V-ADV +V-O +V2CL +PrepNp +DetNP +173456 Conj-CL +CLaCL +V-O +V-O +173462 sub-CL +ADV-O +AdjpNp +PrepNp +PrepNp +DetNP +173469 Conj-CL +V-IO-ADV +173473 V-ADV +PrepNp +NpaNp +DetNP +NPofNP +DetNP +173480 DetNP +NPofNP +173483 Conj-CL +173485 PrepNp +that-VP +O-ADV-V +173489 Conj-CL +173491 V2CL +173493 that-VP +O-ADV-V +173496 ADV-V +Conj2VP +173500 O2-V-O +V2CL +DetNP +NPofNP +173505 CLaCL +ADV-ADV-V +O-V +173509 ADV-ADV-V +O-V +173512 Conj-CL +173515 sub-CL +O-V-ADV +DetNP +NumpNP +PrepNp +DetAdj +AdjpNp +NpAdjp +NPofNP +173526 O2CL +173529 sub-CL +O-ADV +DetNump +PrepNp +DetNP +NPofNP +ofNPNP +AdjpNp +173538 Conj-CL +173540 O2CL +173542 Conj-CL +173544 ADV-V +173546 Conj-CL +V-ADV +PrepNp +173550 Conj-CL +CLaCL +V-IO-O +173555 that-VP +O-V +173558 Conj-CL +CLaCL +ADV-V-O-ADV +V-O +DetNP +NPofNP +DetAdj +PrepNp +DetNP +173569 V-ADV +PrepNp +DetNP +NPofNP +V-O-IO +DetNP +PtclCL +O-V +173578 Conj-CL +173580 V2CL +ClCl +V-O +DetNP +sub-CL +O-V +S-V +PrepNp +173589 CLaCL +ADV-ADV-V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +173596 Conj3CL +V2CL +173599 V2CL +173601 V-ADV-O +173603 Conj-CL +V-O-ADV-ADV +PrepNp +NPofNP +173608 ADV-ADV-V +PrepNp +DetNP +173612 Conj-CL +V-S-ADV +NpaNp +DetNP +173617 DetNP +NPofNP +PrepNp +DetNP +NPofNP +NPofNP +DetNP +173625 Conj-CL +ADV-V-O-ADV +PrepNp +DetNP +DetNP +NPofNP +173632 O-V-S +P-S-VC +DetNP +173636 Conj-CL +S-V-IO-ADV +173639 that-VP +CLaCL +O2CL +Np-Appos +DetNP +173645 CLaCL +S-O +173649 that-VP +P2CL +NPofNP +DetNP +173654 Conj-CL +173656 Conj-CL +S-O-V +P-S-VC +173661 V2CL +DetNP +S-VC-P +DetNP +173666 Conj-CL +173668 that-VP +IO-V-ADV +PrepNp +173672 Conj-CL +V-O +173675 that-VP +V-S +Conj3CL +S-O-V +DetNP +NPofNP +DetNP +173683 CLaCL +V-ADV +PrepNp +Conj3Np +DetAdj +173689 DetNP +173691 DetNP +173693 V2CL +173695 ADV-V +PrepNp +AdjpNp +173699 Conj-CL +ADV-O-V +DetNP +173703 Conj-CL +S-ADV-V-O +DetNP +V-O +V-O +173709 Conj-CL +CLaCL +S-ADV-V-O +CLaCL +V2CL +173715 V-O +DetNP +NPofNP +173720 ClCl +173722 PrepNp +Np2CL +sub-CL +notCLbutCL2CL +V-O +NPofNP +DetNP +O2CL +NPofNP +DetNP +173733 Conj-CL +173735 V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +ClCl2 +sub-CL +S-V-O +ADV-V +PrepNp +Conj3CL +V-O +173748 V-O +DetNP +NPofNP +173752 V-O +173754 Conj-CL +S-V-O +PtclCL +S-V-O +O-V +DetNP +NPofNP +173762 Conj-CL +S-V-O +PtclCL +S-V-O-ADV +DetNP +NPofNP +PrepNp +NpaNp +173771 DetNP +173773 Conj-CL +ADV-V-O-S +CLaCL +V-O +DetNP +NP-all +173780 V-O +DetNP +NPofNP +173784 Conj-CL +O-V-S-O2 +NPofNP +DetNP +NPofNP +173790 Conj-CL +ClCl2 +PtclCL +S-V-O-ADV +NpaNp +173796 DetNP +AdjpNp +PrepNp +Np-Appos +NP-Demo +DetNP +NpaNp +DetNP +173805 ClCl +S-V-O +AdvpNp +DetNP +NPofNP +DetNP +sub-CL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPDetAdj +DetAdj +173823 Conj-CL +173826 V-IO +that-VP +V-S +NP-CL +NPofNP +DetCL +ADV-V +173834 S-ADV-V-O +2Advp_h1 +PtclCL +V-O +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +173844 Conj-CL +CLaCL +ADV-V-S-O +PrepNp +NpNump +DetNP +Conj3Np +DetNP +173853 DetNP +173856 V-O-ADV-ADV-ADV +PrepNp +NpAdjp +PrepNp +173861 Conj-CL +CLaCL +V-ADV +PrepNp +173867 DetNP +NPofNP +AdjpAdjp +V2CL +AdjpAdvp +ADV-S-ADV-V-O +NpPp +PrepNp +DetNP +ADV-V +173878 Conj-CL +CLaCL +V-IO-S-ADV +PrepNp +173883 V-ADV +BeVerb +DetNP +173887 Conj-CL +173889 V2CL +DetNP +DetNP +173893 Np2CL +P-VC-S +S-P-VC +173897 ClCl +V-O +AdjpNp +Conj3CL +IO-O +173903 IO-O +173905 IO-O +173907 Conj-CL +173909 O-V +sub-CL +P-VC +173913 Conj-CL +CLaCL +V-S-ADV +V-O +173919 PrepNp +DetNP +ClCl +S-VC-P +Np-Appos +DetNP +NPofNP +DetAdj +V-O +173929 Conj-CL +CLaCL +ADV-ADV-ADV-O-V +V2CL +173934 O-ADV-ADV +DetNP +PrepNp +173938 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +173944 that-VP +173946 O-V +sub-CL +AdvpCL +sub-CL +S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +173956 Conj-CL +O-V-ADV +DetNP +173960 PrepNp +P-VC-S +DetCL +ADV-V +PrepNp +173966 Conj-CL +V-O-ADV +173970 DetNP +that-VP +V-S +S-V-ADV +173975 Conj-CL +173977 CLaCL +PtclCL +S-ADV-V-O +V-ADV +173983 PrepNp +DetNP +NPofNP +DetNP +that-VP +CLaCL +O-V +173991 V2CL +173993 Conj-CL +173995 that-VP +CLaCL +S-V +AdvpNp +174000 ClCl +V-IO-O +O-V +sub-CL +V-ADV +PrepNp +174007 Conj-CL +ADV-V-O +V-ADV +PrepNp +DetNP +CLaCL +S-P +NpAdjp +PrepNp +174017 S-V-ADV +PrepNp +174020 Conj-CL +CLaCL +ADV-S-ADV-V +All-NP +DetNP +V-O +174027 ADV-V-O +V2CL +174030 Conj-CL +174032 O-V-ADV +PrepNp +174035 Conj-CL +174037 NpPp +PrepNp +DetNP +174041 Np2CL +DetNP +NPofNP +PrepNp +V-O +NpAdjp +174048 Conj-CL +Conj4CL +ADV-V-O +PtclCL +ADV-O-V +174054 V2CL +174056 V-O +DetNP +174059 V2CL +174061 Conj-CL +CLaCL +174064 DetNP +NPofNP +that-VP +O-V +174069 ADV-V +174071 Conj-CL +174073 V-IO +174075 Np2CL +intjNP +NpAdjp +ClCl +ADV-P-VC +PrepNp +PrepNp +ADV-V-O +PrepNp +V-O-ADV +PrepNp +174087 Conj-CL +V-O-ADV +PrepNp +174091 Conj-CL +CLaCL +ADV-S-ADV-V-O +V-O +DetNP +174097 ADV-V-ADV +V-ADV +PrepNp +DetNP +V2CL +174103 Conj-CL +174105 DetNP +NPofNP +ClCl +S-V +AdjpNp +sub-CL +S-V-ADV +174113 Conj-CL +174115 CLaCL +ADV2CL +PrepNp +174119 CLaCL +174121 ADV-ADV-O-V +AdvPp +PrepNp +174125 ADV2CL +PrepNp +sub-CL +V-O +174131 sub-CL +O-V +V-ADV +PrepNp +174136 Conj-CL +174138 DetNP +174140 Np2CL +DetCL +sub-CL +V2CL +DetCL +V2CL +174148 V2CL +DetNP +NPofNP +DetNP +ClCl +V2CL +V-O +ofNPNP +DetNP +174158 Conj-CL +S-ADV-V-O-ADV +DetNP +174162 that-VP +V-S +DetNP +NPDetAdj +DetAdj +174169 Np2CL +DetNP +AdjpNp +AdjpaAdjp +174174 CLaCL +V-ADV +PrepNp +174178 ADV-V-ADV +PrepNp +174181 Conj-CL +ADV-V +CLaCL +V2CL +174186 ADV-V +174188 Conj-CL +VC-P-ADV +PrepNp +sub-CL +174193 DetAdj +that-VP +V2CL +174197 Conj-CL +CLaCL +S-ADV-V-O +DetNP +V-O +DetNP +NPofNP +174205 V2CL +174207 Conj-CL +ClCl2 +V-S-ADV +PrepNp +174212 DetNP +NPofNP +PrepNp +ADV-S-ADV-V-O +V-O +174218 Conj-CL +174220 ClCl +S-ADV-V-O +Demo-NP +DetNP +PrepNp +V2CL +sub-CL +ADV-ADV +PrepNp +174230 CLaCL +ADV-V-ADV +ADV-V +PrepNp +DetNP +174237 that-VP +S-V +174240 Conj-CL +CLaCL +V-O +DetNP +NPofNP +174247 that-VP +Conj3CL +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +NPofNP +174256 V-O +174258 ADV-ADV-V +V2CL +PrepNp +AdjpNp +174263 Conj-CL +CLaCL +S-V-O +DetNP +174268 V-O +O-V +174271 Conj-CL +V-ADV +PrepNp +174275 Conj-CL +174277 P-VC +PrepNp +DetNP +O-ADV-V +PrepNp +DetNP +174284 Conj-CL +174286 sub-CL +174288 PrepNp +PrepNp +DetNP +S-P +174293 Conj-CL +CLaCL +ADV-V-O +V2CL +DetNump +174300 ClCl2 +sub-CL +S-V-O +P-VC +VC-P +NpaNp +ofNPNP +174308 ofNPNP +174310 Conj-CL +CLaCL +ADV-V-O-ADV +V-O +PrepNp +NPofNP +174318 V-O +CLaCL +S-O-V +PtclCL +S-O-V-ADV +NPofNP +DetNP +AdjpNp +PrepNp +DetNP +NPofNP +174330 CLaCL +S-ADV-O-V +PtclCL +S-O-V +174335 O2CL +DetCL +V-O +174340 DetNP +174342 Np2CL +V-O +174345 PrepNp +DetNP +NPofNP +S-ADV-V-O +174350 ClCl +V-O +sub-CL +ADV-V-O +174355 Conj-CL +174357 DetNP +ClCl +ADV-V-O +sub-CL +P-VC-S +CLaCL +S-V-O-ADV +PrepNp +DetNP +NPofNP +174368 V-ADV-O +V-O +174371 Conj-CL +S-P-VC +S-ADV-VC-P +PrepNp +PrepNp +174377 Conj-CL +ClCl2 +PtclCL +174381 S-V-O-O2-ADV +NPofNP +PrepNp +P-VC +174386 V-IO +that-VP +ADV-V-O +2Advp_h1 +DetNP +NPofNP +174393 Conj-CL +ClCl2 +PtclCL +S-V-O +NPofNP +Np-Appos +NP-Demo +DetAdj +DetCL +V2CL +ClCl +P-VC-ADV-ADV +sub-CL +CLaCL +V-S-ADV +NpAdjp +PrepNp +DetNP +NPofNP +174413 V-ADV +PrepNp +DetNP +174417 Conj-CL +174419 sub-CL +V-O-S +DetNP +NPofNP +174424 CLaCL +P-VC-S +S-ADV-V-ADV +PrepNp +DetNP +174430 ADV-V-ADV +O-V +DetNP +NumpNP +2Pp +PrepNp +DetNP +PrepNp +DetNP +NPDetAdj +DetAdj +174442 Conj-CL +174444 sub-CL +S-V-O +DetNP +NPofNP +174449 CLaCL +P-VC-S +S-V-ADV-ADV +PrepNp +DetNP +174455 ADV-V-ADV +O-V +DetNP +NumpNP +PrepNp +DetNP +174462 Conj-CL +174464 sub-CL +S-V-O +DetNP +NPofNP +174469 CLaCL +P-VC-S +S-ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +174477 ADV-V-ADV +O-V +NumpNP +PrepNp +NP-CL +DetNP +CLaCL +ADV-S-ADV-V +DetNP +NPofNP +174488 S-ADV-V +DetNP +174491 Conj-CL +S-ADV-V +174494 P-S +DetNP +174497 Conj-CL +174499 sub-CL +S-P-VC +DetNP +PrepNp +174504 CLaCL +V-ADV-O +PrepNp +174508 V-ADV +PrepNp +174511 Conj-CL +CLaCL +ADV-V-ADV +ADV-V +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +174521 PrepNp +DetNP +174524 CLaCL +V-ADV-S-ADV +PrepNp +174528 ClCl2 +sub-CL +V2CL +ADV-V-O +174533 Conj-CL +ClCl +174536 V2CL +PtclCL +V-ADV-S +O-V +V-O +174542 Conj-CL +174544 V2CL +O-IO-V-S +174547 Conj-CL +174549 V-S-O +CLaCL +O-V +NPofNP +174554 V2CL +174556 Conj-CL +174558 DetNP +ADV-V-IO-O +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +174566 Conj-CL +ADV-O2-V-O +PrepNp +NPofNP +NpaNp +174573 CLaCL +ADV-V-S-O +PrepNp +NpaNp +DetNP +NPofNP +174580 DetNP +174582 VC-S-P +DetNump +PrepNp +NpAdjp +174587 Conj-CL +notCLbutCL2CL +VC-P +P2CL +AdjpNp +174593 Conj-CL +O-S-ADV-V +O-S-V +DetNP +174598 Conj-CL +ADV-ADV-S-ADV-V-O +PrepNp +DetNP +DetNP +PrepNp +174605 Conj-CL +174607 CLaCL +S-V-ADV +PtclCL +CLaCL +S-V-O +DetNP +NPofNP +174615 V-O +PrepNp +174619 sub-CL +S-ADV-V-O +V-O +DetNP +NPofNP +174625 Conj-CL +174627 sub-CL +O-V +174630 Conj-CL +S-V-O +DetNP +174634 Conj-CL +CLaCL +ADV-S-V +V2CL +DetNP +174641 ClCl +ClCl +V-O +S-V-ADV +DetNP +PrepNp +ADV-V-O +sub-CL +P-VC-S +DetNP +DetNP +NPofNP +DetNP +174656 V-IO +S-ADV-V-ADV +PtclCL +174660 S-ADV-V-O +DetNP +NPofNP +DetNP +S2CL +2Advp_h1 +PrepNp +174668 Conj-CL +ADV-V-ADV +V-O +V-O-ADV +DetNP +PrepNp +174675 Conj-CL +ClCl2 +V-S-ADV +PrepNp +174680 CLaCL +V2CL +174683 V-O +174685 Np2CL +NpAdjp +O-V +sub-CL +O-V +NpAdjp +174692 Conj-CL +174694 DetNP +ClCl +174697 ClCl +S-P +sub-CL +ADV-S +Np-Appos +DetNP +174704 DetNP +ClClClClClCl +ADV-V +ADV-V +ADV-V +ADV-V +ADV-V +V-O +NpaNp +DetNP +NPofNP +174716 DetNP +174718 Conj-CL +174721 Np2CL +NP-all +PrepNp +NPofNP +174726 Conj-CL +CLaCL +S-ADV-V-O +DetNP +V-O +174733 ClCl +S-O-V +CLaCL +CLaCL +174738 CLaCL +O-V +O-V +174742 V-IO +DetAdj +174745 V-O-ADV +PrepNp +174748 ClCl2 +V2CL +V-O +174752 Conj-CL +174754 V-ADV +PrepNp +DetNP +V2CL +sub-CL +V-O +BeVerb +NpAdjp +174763 Conj-CL +174765 V2CL +DetNP +DetNP +NPofNP +ADV-S-ADV-V +2Advp_h2 +DetCL +O-V +DetNP +PrepNp +DetNP +NPofNP +DetNP +174779 Conj-CL +S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +174786 Conj-CL +174788 DetNP +V2CL +174791 Np2CL +P-VC-S +AdvpAdjp +ADV-V +PrepNp +DetNP +NPofNP +DetNP +CLaCL +P-VC-S +S-ADV-V +PrepNp +DetNP +NPofNP +DetNP +174807 S-ADV-V +PrepNp +DetNP +NPofNP +DetNP +174813 Conj-CL +S-ADV-V-ADV +174816 PrepNp +Conj-CL +S-V-O +V2CL +174822 V-O +DetNP +ClCl +CLaCL +ADV-P +PrepNp +174829 ADV-ADV +PrepNp +sub-CL +S-P-ADV +PrepNp +DetNP +174836 V-S-O +DetNP +174840 S-V-O +174842 V-O +174845 DetNP +ClCl +PtclCL +V-IO +174850 S-V-O-ADV +Conj7Np +174858 Conj2Pp +PrepNp +174861 PrepNp +DetNP +sub-CL +CLaCL +ADV-V-ADV-ADV-O-ADV +PrepNp +NP-Demo +DetNP +Np-Appos +Conj6Np +174876 PrepNp +174878 ADV-O +PrepNp +Np-Appos +DetNP +DetCL +V2CL +NpAdjp +174886 Conj-CL +CLaCL +S-VC-P +AdjpNp +174891 S-P +DetAdj +174894 Conj-CL +CLaCL +CLaCL +VC-P-ADV +PrepNp +DetNP +V-ADV +PrepNp +174903 V-O-S +BeVerb +DetNP +174907 CLaCL +V2CL +174910 S-V +DetCL +V2CL +174914 Conj-CL +ADV-V-O +V-ADV-O +DetNump +174919 DetCL +V-O +ADV-V +that-VP +Conj5CL +174925 PrepNp +174927 S-V-IO +DetNP +NPofNP +DetNP +NpaNp +DetNP +174934 DetNP +174936 CLaCL +V-O-ADV +174939 V-O-IO +DetNP +174942 Conj4CL +V-O +174945 V-O +174947 V-O +174949 V2CL +174951 ADV-V +PrepNp +AdjpNp +174955 Conj-CL +V-ADV-S-ADV +Np-Appos +NpaNp +174960 DetNP +NPofNP +174964 Np2CL +V2CL +O-V-IO +PtclCL +O2-V-O +174970 Conj-CL +174972 V-O +O-S-V-IO +174975 Conj-CL +174978 that-VP +ADV-V-ADV +CLaCL +S-ADV +PrepNp +ofNPNP +174985 S-ADV +PrepNp +PrepNp +DetNP +NPofNP +174991 Conj-CL +174993 DetNP +ADV-V-O +O-V +174997 V-O +CLaCL +V-O +DetNP +NP-CL +O-S-V +175004 ADV-V +DetNP +NP-CL +ADV-S-V +175009 Conj-CL +175011 V2CL +175013 Conj-CL +175015 DetNP +CLaCL +CLaCL +O-V +DetNP +NP-CL +O-S-V +175023 ADV-V +DetNP +NP-CL +ADV-S-V +175028 CLaCL +S-ADV-VC-P +DetCL +V-ADV +Conj2Pp +PrepNp +NPofNP +175036 PrepNp +S-V +175039 IO-V +175041 Conj-CL +ADV-S-V-O +V2CL +DetNump +V-ADV +PrepNp +NpaNp +175050 Conj-CL +175052 V-O +DetNP +175055 that-VP +CLaCL +S-V-ADV +DetCL +V-O +V-ADV +DetNP +175063 S-V-ADV +DetNP +NPofNP +175067 Conj-CL +ClCl2 +notCLbutCL2CL +P-VC-ADV +PrepNp +CLaCL +S-VC-P +PtclCL +S-V-O +P-VC-ADV +PrepNp +ofNPNP +175080 S-VC-P +PtclCL +S-V-O +ADV-VC-P +PrepNp +ofNPNP +sub-CL +CLaCL +S-ADV-V-ADV +AdvpNp +DetNP +NPofNP +DetNP +V2CL +175095 CLaCL +V2CL +175098 V-O-O2 +DetNP +NPofNP +NpPp +PrepNp +175104 Conj-CL +V-ADV +PrepNp +175108 Conj-CL +ClCl2 +CLaCL +V-S-ADV +PrepNp +175114 S2CL +NpaNp +DetNP +NPofNP +175119 NpAdjp +S-V-ADV +Np-Appos +Np-Appos +DetNP +NPofNP +AdjpNp +PrepNp +DetNP +175129 Conj-CL +ADV-V-O +175132 that-VP +P-VC +Np-Appos +DetAdj +CLaCL +V2CL +175141 Np2CL +Np-Appos +NPofNP +175145 Conj-CL +175147 that-VP +V2CL +175150 Conj-CL +175152 AdjpAdvp +175154 Np2CL +NPofNP +175157 Conj-CL +175159 V2CL +DetNP +V-O +175163 Conj-CL +V-O-ADV +DetAdj +175167 ClClCl +V2CL +V2CL +V-O +175172 Conj-CL +S-ADV-ADV-V-ADV +V-O +DetNP +NPofNP +V2CL +PrepNp +DetNP +175181 Conj-CL +175183 V-IO +DetNP +O-V +O-IO-V +175188 Conj-CL +175190 DetAdj +175192 Np2CL +V2CL +175195 Conj-CL +175197 DetNP +ClCl +V2CL +S-V-O +DetNP +NPofNP +175204 Conj-CL +CLaCL +ADV-V +175208 V-O-ADV +PrepNp +DetNP +175212 Conj-CL +ClCl2 +sub-CL +V-ADV-ADV-ADV +PrepNp +PrepNp +NpaNp +175220 PrepNp +DetNP +NPofNP +DetNP +CLaCL +V-O +NPofNP +DetNP +NPofNP +175231 ClCl +CLaCL +V-ADV +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +175240 ADV-V-O +ADV-V-ADV +PrepNp +V-S +NP-CL +ADV-S-ADV-V +PrepNp +NPofNP +CLaCL +V-O +175251 V2CL +175253 Conj-CL +ClCl2 +sub-CL +175257 ADV-V-O +175259 CLaCL +S-O-V +DetNP +ofNPNP +175264 ADV-O-V-ADV-ADV +175266 Conj-CL +CLaCL +V2CL +175270 CLaCL +V-O +S-V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +175277 V-O +175279 Conj-CL +175281 NPofNP +DetCL +ADV-V +O-V-ADV +V-O +DetNP +175288 Conj-CL +175290 sub-CL +V-S +DetNP +175294 Conj-CL +V-O +175297 Conj-CL +CLaCL +V-O-ADV +DetNP +PrepNp +DetNP +175304 CLaCL +V-IO-O +DetNP +NPofNP +175309 V-ADV +PrepNp +175312 Conj-CL +CLaCL +S-O-V-ADV +DetNP +NPofNP +PrepNp +DetNP +175320 S-O-ADV +V-ADV +PrepNp +DetNP +175325 Conj-CL +175327 NpaNp +DetCL +V2CL +175331 DetCL +V2CL +175334 Intj2CL +P-S +V2CL +DetCL +V-ADV +PrepNp +NPofNP +P-S +V2CL +DetNP +AdjpNp +V2CL +NPofNP +Np-Appos +DetNP +NPofNP +S-P +PrepNp +DetAdj +175354 Conj-CL +V-ADV-ADV +PrepNp +PrepNp +DetNP +175360 Conj-CL +ClCl2 +P-ADV-VC-S +DetNP +ADV-V-ADV-ADV +V-O +PrepNp +PrepNp +DetNump +175370 Conj-CL +ClCl2 +ADV-V-S-ADV +DetNP +PrepNp +V2CL +175377 Conj-CL +CLaCL +175380 V-ADV-O +PrepNp +S-V-O +PtclCL +PtclCL +O-V-ADV +PrepNp +175388 ClCl +175390 V-ADV +PrepNp +sub-CL +ADV-O +sub-CL +S-ADV-VC-P +DetNP +175398 Conj-CL +175400 V2CL +ADV-ADV-ADV-S-O-V +PrepNp +DetNP +PrepNp +175406 Conj-CL +V-S +DetNP +NPofNP +175411 Conj-CL +V-ADV +PrepNp +175415 Conj-CL +Conj3CL +ADV-V-O +V-ADV +PrepNp +DetNP +V-O +NpPp +NpaNp +DetCL +V2CL +175427 DetCL +V2CL +PrepNp +DetNP +175432 O-V +NpaNp +DetNP +NPofNP +DetNP +175438 DetNP +NPofNP +DetCL +V-O +DetNP +175445 that-VP +S-V-O-ADV +PrepNp +DetNP +175450 Conj-CL +CLaCL +V2CL +175455 CLaCL +PtclCL +175458 that-VP +S-P-VC-ADV +DetNP +NPofNP +NPofNP +All-NP +DetNP +175466 S-V-O-O2 +NPofNP +175469 Conj-CL +CLaCL +V-S +NpaNp +DetNP +175475 DetNP +175477 ClCl +V-O +ADV-O-V +sub-CL +ClCl +V-O +sub-CL +S-V-ADV +All-NP +DetNP +PrepNp +DetNP +NPofNP +175491 Conj-CL +175493 sub-CL +ADV-V +PrepNp +DetNP +175498 Conj-CL +ADV-V-O +V-ADV +S-V-ADV +DetNP +PrepNp +175505 Conj-CL +175507 V2CL +DetNP +175510 Np2CL +DetNP +NP-CL +O-V +175515 Conj-CL +175517 V2CL +DetNP +175520 NPofNP +175522 V-IO +that-VP +ClCl2 +PtclCL +CLaCL +175528 S-V-IO +NP-Demo +DetNP +V2CL +175533 V-ADV +PrepNp +DetNP +175537 notCLbutCL2CL +V-ADV +PrepNp +DetNP +NPofNP +175543 that-VP +S-V +O-V +V-ADV +175549 PrepNp +175551 Np2CL +All-NP +O-V +Conj2VP +175557 that-VP +V2CL +175560 V-ADV +175562 Conj-CL +ClCl +ClCl2 +sub-CL +V-ADV +V2CL +ClCl +V2CL +sub-CL +O-V-ADV +PrepNp +sub-CL +S-V-IO-O +AdvpNp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +DetNP +NPofNP +175585 Conj-CL +V-ADV-ADV +PrepNp +175589 Conj-CL +ClCl2 +ADV-V-S +PrepNp +DetNP +CLaCL +V-ADV-S +PrepNp +Conj3Np +DetNP +175600 DetNP +175602 DetAdj +175605 CLaCL +ADV-O-V +PrepNp +AdjpNp +175611 NP-Demo +DetNP +sub-CL +O-V +175616 Conj-CL +175618 DetNP +CLaCL +CLaCL +V-O-O2 +AdjpNp +175624 V-IO +175627 ADV-O-V +PrepNp +AdjpNp +175631 ClCl +CLaCL +S-P-VC +Np-Appos +DetNP +NPofNP +PrepNp +175639 P2CL +PrepNp +V-IO +175643 Conj-CL +V-ADV-ADV +PrepNp +175647 CLaCL +ClCl2 +sub-CL +175651 P2CL +PrepNp +175654 Conj-CL +ADV-ADV-V-O +PrepNp +175658 ClCl +175660 P2CL +PrepNp +ClCl +V-O +DetNP +sub-CL +S-V-O-O2 +DetNP +that-VP +ADV-P-VC +175671 Conj-CL +175673 V-IO +DetNP +ADV-V +175677 Conj-CL +175679 DetNP +175681 ADV-O-V +PrepNp +AdjpNp +175685 Conj-CL +V-O +175688 PrepNp +Conj6CL +O-S-V +175692 V-O +175694 V-O +175696 V-O +175698 V-O-IO +175700 V2CL +175702 Conj-CL +175704 PrepNp +DetNP +DetNP +sub-CL +ADV-V-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +175716 Conj-CL +CLaCL +ADV-V +V-O +175721 V-ADV +175723 Conj-CL +ADV-V-ADV-O +PrepNp +AdjpNp +175728 CLaCL +O-V +175731 V2CL +175733 Conj-CL +CLaCL +ClCl +O-V +O-V +175739 O2CL +NP-CL +AdjpNp +aCLaCL +175744 O-V +175746 O-V +175748 ADV-V-O +AdjpNp +NpAdjp +175752 V-O-ADV-ADV-ADV +PrepNp +175755 that-VP +V-O +DetNP +NPofNP +175760 Conj-CL +175762 Demo-NP +DetNP +PrepNp +that-VP +175767 DetNP +CLaCL +ClCl2 +V2CL +V-O +175773 P-VC-S +DetNP +175776 Conj-CL +CLaCL +ADV-V-O +V2CL +175781 V-O-ADV +PrepNp +DetNP +175785 O-V-S +DetNP +NPofNP +DetNP +175790 CLaCL +CLaCL +V2CL +175794 V-O +DetNP +175797 V-O-IO +DetNP +175801 NP-Demo +DetNP +175805 Np2CL +NP-CL +O-V-S +DetCL +V2CL +PrepNp +NPofNP +ADV-V-S +PrepNp +175815 VC-P-ADV +PrepNp +NPofNP +175819 Conj-CL +ClCl +CLaCL +V-O +O-V +175825 V-O +DetNP +sub-CL +175829 that-VP +ADV-O-V +PrepNp +DetNP +175834 Conj-CL +ADV-V +V-O +175838 Conj-CL +ClCl +V-ADV-O +PrepNp +NPofNP +NpaNp +DetNP +175846 DetNP +sub-CL +O-V-ADV +175850 Conj-CL +175852 V2CL +175854 Np2CL +175856 that-VP +CLaCL +P-VC +175861 PrepNp +sub-CL +notCLbutCL2CL +V-ADV +PrepNp +NPofNP +ADV-O-V +PrepNp +DetNP +NPofNP +DetNP +ClCl +CLaCL +V-S +V-O-IO +175877 ADV2CL +CLaCL +V2CL +175881 ADV-V +175883 Conj-CL +175885 V-O +ofNPNP +DetNP +ClCl +ADV-O-V +175891 sub-CL +V2CL +175894 Conj-CL +S-V +175897 Conj-CL +175899 P-S +NpaNp +NP-Demo +DetNP +175904 DetNP +175906 Conj-CL +175908 P2CL +175910 Conj-CL +175912 DetNP +CLaCL +O-V-IO +NPofNP +175917 O-IO +NPofNP +DetNP +DetNP +175922 Conj-CL +V-ADV +PrepNp +175926 Conj-CL +CLaCL +V-ADV-S +PrepNp +NP-CL +S-V-O +S-ADV-V +175934 V-O-ADV +175937 Np2CL +that-VP +175940 sub-CL +Conj3CL +S-V +ofNPNP +175945 V-O +175947 ADV-V-O +CLaCL +V-S-O +DetNP +NPofNP +DetNP +175954 V-O-IO +DetNP +NPofNP +175958 S-V +NumpNP +175961 Conj-CL +CLaCL +S-V-O +DetAdj +175966 ADV-ADV-V-O +V2CL +175969 Conj-CL +CLaCL +S-V-O +DetAdj +175974 V-ADV +ADV-V-O +175977 Conj-CL +S-P +DetAdj +175981 Conj-CL +S-ADV-V-O +DetNump +175985 ADV-S-V +NPofNP +AdvpNp +DetNP +175990 ClCl +ADV-ADV-P-VC +PrepNp +DetNP +sub-CL +V2CL +ofNPNP +NPofNP +sub-CL +S-V-O-O2 +DetNump +176003 DetNP +PtclCL +ADV-V-ADV +PrepNp +CLaCL +ADV-V-O +DetNP +176011 O2CL +DetNP +NPofNP +DetNP +176016 Conj-CL +176018 sub-CL +ADV-V +PrepNp +aCLaCL +176023 V2CL +176025 V2CL +176027 VC-P +PrepNp +NpPp +PrepNp +DetNP +176033 Conj-CL +176035 PrepNp +NP-CL +DetAdj +that-VP +V2CL +PrepNp +DetNP +NPofNP +PrepNp +DetNP +that-VP +V-IO-S-ADV +DetNP +176049 S-P +Conj3Np +DetNP +NPofNP +176054 NPofNP +176056 NPofNP +176058 notCLbutCL2CL +VC-P +NPofNP +P2CL +176063 ADV-V +176065 Conj-CL +176067 V2CL +NPofNP +DetNP +176071 S-V +176073 V2CL +ADV-V-IO +P-VC-S +NpAdjp +AdjpAdvp +176080 DetNP +that-VP +S-VC-P +ClCl +176085 Np2CL +CLaCL +S-P-VC +Np-Appos +DetNP +NPofNP +NpAdjp +176093 V-O-ADV +Np-Appos +DetNP +NPofNP +Conj4Pp +PrepNp +All-NP +DetNP +NPofNP +176103 PrepNp +All-NP +DetNP +NPofNP +176108 PrepNp +All-NP +DetNP +NPofNP +176113 PrepNp +All-NP +DetNP +NPofNP +176120 DetNP +NPofNP +sub-CL +O2CL +176125 P-ADV-S-ADV-VC +AdjpNp +176128 Conj-CL +176130 DetNP +ClCl +176133 Np2CL +176135 PrepNp +that-VP +CLaCL +CLaCL +P-VC +176141 P-VC-S-ADV +PrepNp +176144 S-P-VC-ADV +NpaNp +DetCL +V-O-ADV +Conj3Pp +PrepNp +All-NP +DetNP +176153 PrepNp +All-NP +DetNP +176157 PrepNp +All-NP +DetNP +176161 DetCL +176163 DetNP +sub-CL +O2CL +All-NP +DetNP +NpaNp +176171 Conj-CL +176173 DetNP +176175 V-O +ADV-V +ADV-P-VC-ADV +PrepNp +DetNP +NPofNP +DetNP +176183 Conj-CL +S-ADV-V-O +O-V +176187 Conj-CL +176189 V2CL +DetNP +V-ADV +PrepNp +DetNP +176195 DetNP +that-VP +S-P-VC +DetNP +NPofNP +176202 PronNP +PrepNp +DetNP +NPDetAdj +DetAdj +176208 DetNP +NPofNP +ClCl +V-ADV +PrepNp +NPofNP +sub-CL +PtclCL +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +176223 CLaCL +S-V-O-O2 +PronNP +176227 ADV-P-VC +ofNPNP +176230 Conj-CL +S-V-O-ADV +DetNP +AdjpNp +176235 Conj-CL +176237 PrepNp +DetNP +NPofNP +176241 PrepNp +Np-Appos +DetNP +DetCL +CLaCL +V-O +ADV-V +PrepNp +176250 O2CL +Conj3Np +NpPp +PrepNp +DetNP +176256 NpPp +PrepNp +DetNP +176260 NpPp +PrepNp +DetNP +176264 Np2CL +DetCL +CLaCL +V-O +DetNP +NPofNP +DetNP +176272 ADV-O-V +AdjpNp +176275 Conj-CL +ClCl +ADV-V +V-ADV +PrepNp +DetNP +ADV-S-V-O-ADV +DetNP +PrepNp +DetNP +176286 Conj-CL +S-V-O +AdjpNp +176290 Conj-CL +ADV-S-V-O +V2CL +AdjpNp +NpAdjp +NP-CL +NpNump +S-VC-P +176299 Conj-CL +176301 V-O +DetNP +NPofNP +176305 V-IO +that-VP +S-O-V-ADV +Np-Appos +NP-Demo +DetNP +DetNP +All-NP +DetCL +V-ADV +PrepNp +DetNP +176318 Conj-CL +CLaCL +S-ADV-V +PrepNp +DetCL +V-ADV +176325 S-ADV-V-O +PrepNp +DetNP +NPofNP +Np-Appos +All-NP +O-V +All-NP +DetNP +NPofNP +176336 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +176342 NPofNP +DetNP +NPofNP +176346 Np2CL +V2CL +P2CL +NpaNp +AdjpNp +176352 AdjpNp +176354 Conj-CL +176356 DetNP +V-O +Demo-NP +DetNP +AdjpNp +176362 ADV-V-ADV-S +2Advp_h1 +PrepNp +NP-CL +S-ADV-V +2Advp_h1 +176369 Conj-CL +ClCl2 +V-S-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +176379 PrepNp +Conj4Np +176385 CLaCL +ADV-S-V +176389 DetNP +sub-CL +V-S-O +NP-all +V2CL +176395 Conj-CL +S-V-O +DetNP +176399 ClCl +V2CL +PtclCL +S-O-V +176404 CLaCL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +176410 that-VP +S-VC +176413 O-V +176415 Conj-CL +ClCl2 +sub-CL +V-O +NpaNp +176421 NPofNP +ADV-V +176424 CLaCL +V-S +V2CL +176428 ADV-S +DetNP +176431 Conj-CL +ClCl +CLaCL +V-S-ADV +PrepNp +176437 S-ADV +PrepNp +ClCl +V-S-ADV +PrepNp +V-S +176444 P-S +NPofNP +176447 Conj-CL +V-S-O +176450 Conj3CL +V-O-ADV +PrepNp +176454 ADV-V +PrepNp +176457 ADV-V-ADV-ADV +PrepNp +NpaNp +176461 PrepNp +PrepNp +NpAdvp +176465 Conj-CL +S-V +ADV-ADV-V-S +PrepNp +All-NP +DetNP +DetNP +176473 Conj-CL +ClCl2 +sub-CL +V-O-ADV +V2CL +ClCl +notCLbutCL2CL +V-O +O-V +ClCl2 +PtclCL +S-V-IO-ADV +PrepNp +Demo-NP +DetNP +O-V +sub-CL +notCLbutCL2CL +VC-S-P +DetCL +V2CL +S2CL +DetNP +NPDetAdj +DetAdj +176499 Conj-CL +CLaCL +CLaCL +V-S-O-ADV +PrepNp +176505 S-O +176507 CLaCL +V-S-ADV +PrepNp +176511 V-O +176513 Conj-CL +V-ADV-ADV +BeVerb +PrepNp +PrepNp +DetNP +NPofNP +176521 Conj-CL +176523 Np2CL +DetCL +V-ADV +PrepNp +176528 Conj-CL +ClCl2 +ClCl +sub-CL +V-O +S-V-ADV +DetNP +NPofNP +DetNP +ADV-ADV-V +S-V +DetCL +V2CL +ClCl +ADV-S-V-ADV +NpPp +PrepNp +DetNP +PrepNp +DetNP +CLaCL +CLaCL +S-ADV-V +NpPp +PrepNp +DetNP +176555 V-ADV +O-V-ADV +PrepNp +DetNP +NPofNP +176561 S-ADV-V-ADV-ADV +NpPp +PrepNp +DetNP +PrepNp +DetNP +V-O +DetNP +NPofNP +176571 Conj-CL +S-IO-ADV +NpaNp +DetCL +ADV-V +PrepNp +176578 DetCL +V2CL +PrepNp +Demo-NP +DetNP +176584 Conj-CL +176586 that-VP +ADV-V-ADV +176589 Conj-CL +VC-S-P +NP-Demo +DetNP +NP-CL +CLaCL +S-ADV-VC-P-ADV +2Pp +PrepNp +NPofNP +NP-CL +O-V-S +DetNP +PrepNp +DetNP +176605 ADV-V +2Advp_h1 +176608 Conj-CL +176610 sub-CL +ADV-V-S-O +DetNP +ADV-V-S +All-NP +176616 Conj-CL +ADV-V-O +PrepNp +DetNP +NP-CL +O-V +DetNP +176624 Conj-CL +ClCl2 +sub-CL +176628 ClCl +176630 DetNP +ClCl2 +V2CL +P2CL +ADV-V +176636 Conj-CL +CLaCL +V-S +NpaNp +176642 V-O-ADV +NpaNp +176645 PrepNp +DetCL +V-ADV-O +sub-CL +P2CL +DetAdj +176652 Conj-CL +S-V +176655 V-IO-O +176657 Conj-CL +Conj4CL +ADV-ADV-S-V +PrepNp +Demo-NP +DetNP +PrepNp +NP-Demo +DetNP +DetNP +176668 S-ADV-V-O +DetNP +DetNP +NPofNP +176673 S-V-ADV +DetNP +BeVerb +PrepNp +DetNP +176679 S-V +Np-Appos +DetNP +NpPp +PrepNp +DetNP +176686 Conj-CL +ADV-V-O +S-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +NpaNp +NpAdjp +176698 Conj-CL +CLaCL +ADV-V-O +DetNP +176703 V-O-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +AdjpNp +2Pp +PrepNp +NPofNP +PrepNp +NPofNP +176715 Conj-CL +ADV-V-O +PrepNp +DetNP +DetNP +176721 ClCl2 +sub-CL +CLaCL +ADV-S-P-VC +DetNP +NPofNP +176728 V-O +DetNP +176731 that-VP +P-S-VC +DetNP +176736 AdvpNp +sub-CL +V-O +S-V +that-VP +P-VC-ADV +PrepNp +176745 V-IO +that-VP +ADV-V-S-ADV +2Advp_h1 +NP-Demo +DetNP +PrepNp +ADV-S-V +NP-all +176755 CLaCL +S-V +NpaNp +DetNP +176760 DetNP +176762 S-ADV-V +DetNP +NPofNP +176766 Conj-CL +ClCl +176769 PrepNp +NpaNp +NP-Demo +DetNP +176774 DetNP +ADV-S +NpaNp +DetNP +NpPp +PrepNp +176781 DetNP +sub-CL +ADV-S +DetNP +176786 ClCl +ClCl +V2CL +V2CL +Conj-CL +176792 P-S-VC +DetNP +176795 sub-CL +CLaCL +S-ADV-IO-O +NpAdjp +CLaCL +V-O +DetNP +NPofNP +176804 V-IO-O +DetNP +NPofNP +DetNP +DetNP +NPofNP +176812 DetNP +that-VP +V2CL +176816 Conj-CL +ClCl +ClCl +V2CL +sub-CL +176822 ADV-S-V-ADV +DetNP +NPofNP +DetNP +EitherOr4Advp +176831 PtclCL +ADV-V-O +V-ADV +S-V +176836 Conj-CL +176838 O-IO-V +O-IO-V +176841 Conj-CL +VC-S-P +NpaNp +DetNP +176846 DetAdj +PrepNp +NumpNP +176850 Conj-CL +ClCl +V-S +NpaNp +DetNP +176856 DetNP +ADV-O-ADV-V +ADV-V +PrepNp +176861 Conj-CL +176863 ClCl +ADV-ADV +PrepNp +DetNP +ADV-ADV-V-S +NPofNP +DetNP +176871 Conj-CL +ClCl2 +VC-S-P +PrepNp +ClCl2 +ADV-V-S +PrepNp +DetNP +NPofNP +Np-Appos +DetAdj +V-S-ADV +V-O +NPofNP +NPofNP +NpAdjp +NpAdjp +176889 ADV-V-ADV +V-O +DetNP +ofNPNP +DetNP +176895 Conj-CL +ClCl +S-V-ADV +BeVerb +PrepNp +ADV-S-V +PrepNp +NPofNP +NP-Demo +DetNP +DetNP +176907 Conj-CL +V-S-O +Demo-NP +DetNP +CLaCL +V-ADV +PrepNp +NpAdjp +176916 V-IO +DetAdj +176919 Conj-CL +V-O +176922 Conj-CL +176924 DetNP +V-O +176927 ADV-IO-O-V +176929 O-V-ADV +AdjpNp +PrepNp +176933 Conj-CL +CLaCL +CLaCL +ADV-O-V-ADV +DetAdj +PrepNp +176941 sub-CL +V2CL +IO-ADV-V +176945 O-ADV-ADV-V +176947 O-V +O-V +176950 V-O-ADV +V-O +DetNP +NPofNP +PrepNp +DetNP +176957 Conj-CL +ClCl +PtclCL +V-IO +ADV-S-V-ADV +PtclCL +ADV-V-S-ADV +DetNP +PrepNp +All-NP +DetNP +AdvpNp +O-V-S +PrepNp +NPofNP +176973 Conj-CL +176975 Np-Appos +Np-Appos +DetNP +NPofNP +DetNump +PrepNp +DetNP +sub-CL +O-V-IO +176985 Conj-CL +CLaCL +S-ADV-V +V2CL +176990 V-O +IO-O-V +176993 Conj-CL +V-O +ADV-O-ADV-V +176997 Conj-CL +176999 DetNP +NPofNP +AdjpNp +DetAdj +sub-CL +O-V +DetNP +DetNP +NPofNP +ClCl +V2CL +177011 ADV-V +sub-CL +V-O +DetNP +177016 Conj-CL +CLaCL +V-O +NPofNP +DetNP +NPofNP +177024 CLaCL +V-ADV +PrepNp +DetNP +177029 V-O-S +NpAdjp +O-V +NPofNP +177034 CLaCL +V-O +177038 PtclCL +ADV-V +DetNP +that-VP +177043 DetNP +P-VC-S +DetNP +NP-CL +NPofNP +ADV-O-ADV-V +DetNP +PrepNp +DetNP +NPofNP +177054 Conj-CL +S-IO-V-O +NpAdjp +NpAdjp +NpAdjp +V2CL +177061 Conj-CL +ADV-V-IO +177064 Conj-CL +CLaCL +Conj3CL +V-S +DetNP +177070 V-ADV +PrepNp +DetNP +177074 ClCl +V2CL +sub-CL +V-IO +177079 V-O +DetNP +177082 Conj-CL +ClCl2 +S-V +V-ADV +PrepNp +DetNump +177089 Conj-CL +ClCl2 +S-V +Conj2VP +177095 DetNP +177097 V-IO +that-VP +V-O-S +Np-Appos +NpPp +PrepNp +DetCL +V-ADV +PrepNp +177107 V-O +CLaCL +V2CL +177112 NpPp +PrepNp +PtclCL +S2CL +177117 Conj-CL +177119 ClCl +P2CL +Np-Appos +NPofNP +DetNump +DetCL +V-ADV-ADV +PrepNp +PrepNp +DetNP +sub-CL +aCLaCL +177132 ClCl +S-V +DetNP +NPofNP +DetNP +sub-CL +V-ADV +PrepNp +177141 S-IO +NP-CL +NP-Demo +DetNP +ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +177152 sub-CL +ADV-V-S +NP-Demo +DetNP +177157 Conj-CL +ClCl2 +V-S +Conj3CL +ADV-ADV-V +V-O +V2CL +177165 V-IO +177168 ClCl +V2CL +S-VC-P +DetNP +NPofNP +177174 Conj-CL +CLaCL +ADV-ADV-V-IO +V-O +V2CL +177180 V-ADV-S +PrepNp +177183 Conj-CL +177185 S-VC-P +Np-Appos +DetNP +NPofNP +NPofNP +DetNP +DetCL +V-ADV +PrepNp +177196 V-IO +that-VP +ADV-ADV-V-ADV-ADV +2Advp_h1 +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NP-CL +NP-Demo +DetNP +sub-CL +O-V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +177215 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +DetNP +177223 Conj-CL +177225 DetNP +that-VP +CLaCL +177229 sub-CL +177231 CLaCL +V-O +DetNP +177235 S-V +DetNP +177238 ADV-V-ADV-ADV +PrepNp +DetCL +V-S +PrepNp +DetNP +177245 Conj-CL +177247 DetNP +ClCl2 +sub-CL +S-V +AdvpNp +Conj-CL +ADV-S +177255 Conj-CL +177257 DetNP +177259 V-IO +that-VP +S-ADV-ADV-ADV-ADV-O-V +Demo-NP +DetNP +sub-CL +sub-CL +ADV-S-V +177268 Conj-CL +177270 ClCl2 +sub-CL +V-S +S-V-ADV +ADV-O-V +2Advp_h1 +177277 Conj-CL +ADV-S-V +AdvpNp +177281 Conj-CL +CLaCL +V-ADV +PrepNp +NP-CL +S-P +ofNPNP +DetNP +177291 DetNP +NPofNP +ClCl +V-ADV +sub-CL +V2CL +177298 Conj-CL +Conj3CL +V-O-ADV +Conj3Np +DetNP +177304 DetNP +177306 DetNP +PrepNp +177309 V-O +CLaCL +V2CL +177313 V2CL +177316 ClCl +P-VC-S-ADV +DetNP +NPofNP +PrepNp +CLaCL +V-ADV +177324 V2CL +177326 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +DetNP +177333 CLaCL +177335 that-VP +177337 sub-CL +P-VC +PrepNp +DetNP +177344 Np2CL +Np-Appos +DetNP +177348 V-O-ADV +NP-Demo +DetNP +PrepNp +177353 Conj-CL +notCLbutCL2CL +O-S-V +O-S +177358 Conj-CL +CLaCL +CLaCL +V2CL +177363 V-O +S-V +177367 DetNP +177369 Np2CL +177371 ADV-V-O +ADV-V +AdjpNp +177375 ClCl +CLaCL +V2CL +177379 V2CL +sub-CL +ADV-V-ADV +PrepNp +177384 aCLaCL +177386 S-P +DetNP +177389 S-P +DetNP +177392 Conj-CL +ADV-ADV-V-ADV +V2CL +O-V +DetNP +PronNP +177399 Conj-CL +CLaCL +ClCl +ADV-V-O +ADV-V +S-V +sub-CL +V-S +BeVerb +ofNPNP +DetNP +177411 ADV-V-O +O-V-IO +177414 Conj-CL +CLaCL +V-ADV +DetAdj +177420 ClCl +CLaCL +V-ADV +DetAdj +177425 V2CL +V2CL +177428 ClCl +V-S +DetNP +177432 DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetAdj +177440 ClCl +V2CL +V2CL +177445 DetCL +V-O +177448 Conj-CL +CLaCL +ADV-ADV-V-S +ADV-S-V +Np-Appos +DetNP +NPofNP +DetNump +177457 ADV-S-ADV +PrepNp +NpPp +PrepNp +NpaNp +177463 PrepNp +Conj3Np +DetNP +177467 DetNP +177469 DetAdj +177471 Conj-CL +V-S-O-IO-ADV +DetCL +V-O +V-O +177477 S-P-VC +PtclCL +O-V +V-O +177482 V-ADV +177484 Conj-CL +CLaCL +177487 V2CL +ADV-V-ADV +Np2CL +177491 V-O +177493 Conj-CL +CLaCL +S-V-O-IO +DetNP +177498 V-O +177500 Conj-CL +CLaCL +S-ADV-V-O +Np-Appos +NPofNP +DetCL +V2CL +V-O +DetNP +DetNP +NPofNP +DetNP +177513 V-O +ofNPNP +DetNP +177517 Conj-CL +177519 V2CL +DetNP +ClCl2 +sub-CL +ADV2CL +PrepNp +V-ADV-ADV +PrepNp +NpaNp +177529 V-O +177531 CLaCL +ADV-VC-P-ADV +PrepNp +PrepNp +ADV-V +PrepNp +DetNP +177539 ADV-V-O +177541 Conj-CL +sub-CL +V-S +DetNP +177546 Conj-CL +ADV-V-S +V-O +177550 Conj-CL +CLaCL +S-V-O-ADV +NpAdjp +V-O-ADV +PrepNp +177557 CLaCL +V-O +177560 S-ADV-ADV-V +V-O +DetNP +177564 Conj-CL +CLaCL +V-O-ADV +DetNP +PrepNp +DetNP +177571 V-S +All-NP +Conj3Np +DetNP +177576 DetAdj +177578 DetNP +177580 Conj-CL +CLaCL +S-ADV-V-O-ADV +DetNP +PrepNp +PrepNp +NpPp +PrepNp +DetNP +NPofNP +DetNP +177592 CLaCL +V-ADV +BeVerb +PrepNp +DetNP +177598 V-ADV +PrepNp +DetNP +177602 Conj-CL +CLaCL +S-V-ADV-O-ADV +NpaNp +DetNP +177608 All-NP +DetNP +PrepNp +DetNP +PrepNp +DetCL +V-O +177616 ADV-V +177618 Conj-CL +CLaCL +S-V-ADV +PrepNp +177623 P-S-ADV-VC +DetNP +177626 Conj-CL +S-ADV-V-ADV-ADV +V2CL +PrepNp +177631 that-VP +S-V-O +177634 that-VP +CLaCL +S-V-O +Np-Appos +NP-Demo +DetNP +DetAdj +177642 ADV-O-V +PrepNp +AdjpNp +NpAdjp +177647 Conj-CL +ADV-ADV-P-VC-S +DetNP +NPofNP +177652 Conj-CL +ADV-S-V-O-ADV +V-ADV +PrepNp +DetNP +DetNP +177660 O-S-ADV-V +177662 Conj-CL +CLaCL +S-V +177666 ADV-V-O +177668 CLaCL +ADV-S-V-O +DetNP +177673 S-VC-P +Np-Appos +DetNP +DetNP +NPofNP +DetAdj +177680 Conj-CL +177682 DetNP +CLaCL +S-VC +177686 V-O +CLaCL +S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +NPofNP +DetNP +177696 V-ADV +PrepNp +DetNP +NPofNP +DetNP +177702 Conj-CL +177704 DetNP +V-O +DetNP +NPofNP +ClCl +177710 NPofNP +V-O +DetNP +S-IO-V +177715 Conj-CL +S-V-O +DetAdj +S-P-VC-ADV +177720 Conj-CL +CLaCL +V-S-O +Conj4CL +V-O +177726 V-O +ofNPNP +DetNP +177730 V-O +177733 V2CL +177735 S-ADV-O-V +DetNP +177738 Conj-CL +ClCl2 +VC-S-ADV-P +DetNP +PrepNp +DetNP +CLaCL +V-S +NPofNP +DetNP +NPofNP +DetNP +177752 V-O +S-V +DetNP +V-O +S-P-VC +AdvpNp +PrepNp +Np-Appos +DetNP +DetNP +177763 Conj-CL +S-V-ADV +177766 ClCl +aCLaCL +177769 V2CL +177771 V2CL +S-O-V +177774 Conj-CL +V-ADV-ADV +PrepNp +DetNP +177779 Conj-CL +S-ADV-V-ADV-O +DetNP +V-O +177784 DetCL +V2CL +that-VP +S-P-VC +PrepNp +177790 Conj-CL +S-ADV-V +177793 Conj-CL +177795 PrepNp +DetCL +V2CL +DetNP +ClCl +ADV-P-VC +PrepNp +sub-CL +P-VC +AdvpNp +177806 Conj-CL +S-V-O +CLaCL +V2CL +177812 that-VP +ADV-V-O +NP-CL +NP-Demo +DetNP +O-V +177819 Conj-CL +ADV-ADV-S-V +PrepNp +177823 Conj-CL +177825 DetNP +DetNP +sub-CL +177829 DetNP +that-VP +ADV-ADV-O-V +ADV-S-ADV-V +177834 Conj-CL +ADV-V +V2CL +177838 Conj-CL +CLaCL +ADV-ADV-S-ADV-ADV-V +DetNP +O-V-ADV +PrepNp +Conj3Np +DetAdj +177848 All-NP +DetNP +V-O +DetNP +177853 V-IO +177855 Conj-CL +ClCl +V-O-S +DetNP +S-VC-P +DetNP +NPofNP +DetAdj +177864 Conj-CL +177866 V-IO +S-V +177869 Conj-CL +V-O-S-O2 +DetNP +177873 Conj-CL +S-ADV-V-O-ADV +DetNP +177880 Conj-CL +S-ADV-O-V-ADV +DetNP +sub-CL +V-S +DetNP +177887 Conj-CL +ADV-V-IO-O +PrepNp +NP-CL +AdjpNp +O-V +177894 Conj-CL +V-S-ADV +BeVerb +DetCL +VC-P +PrepNp +DetNP +NP-CL +S-ADV-O-V +PrepNp +DetNP +177906 Conj-CL +ADV-S-V-O +V2CL +DetNP +177911 sub-CL +V-IO +177914 Conj-CL +S-V-IO-ADV +DetNP +177918 V-O +V-IO-O +DetNP +NPofNP +DetAdj +177924 Conj-CL +177926 that-VP +ADV-V-O-S +PrepNp +DetNP +177931 Conj-CL +177933 DetNP +DetNP +sub-CL +ADV-O-V-IO +DetNP +177939 Conj-CL +177941 DetNP +V2CL +Conj-CL +O-V-ADV +O-V-O2 +DetNP +NPofNP +DetAdj +177950 Conj-CL +177952 V-O +177954 Conj-CL +177956 DetNP +sub-CL +V-O +NpAdjp +177961 Conj-CL +177963 V-O +177965 Conj-CL +CLaCL +S-ADV-V-IO-O +DetNP +V-O +IO-O-V +DetNP +DetAdj +DetNP +177976 DetNP +V2CL +sub-CL +V2CL +177981 Conj-CL +CLaCL +S-V-O-ADV +DetNP +PrepNp +DetNP +NP-CL +S-VC-P +177990 V-O +All-NP +DetNP +177994 Conj-CL +CLaCL +V-O-O2 +177998 V-IO-ADV +V-O +AdjpNp +178002 Conj-CL +V-O +178006 Np2CL +NPofNP +DetAdj +178010 Conj-CL +Conj3CL +V-O-ADV +ofNPNP +DetNP +178016 V-O +178018 ADV-V-O +V-O +DetNP +178022 Conj-CL +CLaCL +ClCl2 +sub-CL +V-O +CLaCL +V-O-O2 +DetNP +178031 V-O-O2 +DetNP +NPofNP +178035 ClCl +V-O +sub-CL +V-O +178040 Conj-CL +178042 Np-Appos +NpAdjp +Np-Appos +NpAdjp +V2CL +Np-Appos +V-ADV +PrepNp +DetNP +NPofNP +NpaNp +178054 sub-CL +V-O +DetNP +NPofNP +178059 Conj-CL +V-O-ADV +PrepNp +Np-Appos +DetNP +NP-CL +S-VC-P +BeVerb +ofNPNP +178069 Conj-CL +CLaCL +V-IO-O +AdjpNp +V2CL +178075 S-ADV-V +178077 Conj-CL +CLaCL +V-O +178081 ClCl +V-O-ADV +DetNP +NPofNP +V-O-ADV +PrepNp +S-O-V +178089 Conj-CL +CLaCL +VC-P +NpAdjp +178094 V-O +178096 Conj-CL +178098 BeVerb +DetNP +NPofNP +DetNP +NPofNP +Np2CL +DetNP +NPofNP +DetAdj +178108 Conj-CL +178110 PrepNp +NumpNP +CLaCL +O-ADV +PrepNp +178116 O-ADV +PrepNp +NPofNP +178120 Conj-CL +S-V-O-ADV +DetCL +V2CL +CLaCL +V-O +DetNP +NPofNP +178131 Intj2CL +Np2CL +DetCL +CLaCL +V-O +DetNP +178138 V-ADV +PrepNp +AdjpNp +V-ADV +PrepNp +DetNP +178146 AdvpNp +DetNP +V-ADV-ADV +PrepNp +PrepNp +DetNP +ClCl +O-V +O-ADV-V +O-V +178157 ClCl +S-V-ADV-ADV +Np-Appos +DetNP +DetNP +NPofNP +PrepNp +DetNP +sub-CL +CLaCL +V2CL +178169 V2CL +178171 Conj-CL +S-V-O +DetCL +V-ADV +PrepNp +178177 Conj-CL +ClCl2 +V-S +NpAdjp +S-V-ADV-ADV +PrepNp +All-NP +DetNP +PrepNp +NpAdjp +178188 Conj-CL +178190 DetNP +AdjpNp +DetNP +NpAdjp +ClCl +ClCl2 +ClCl +Np2CL +Np2CL +ADV-V +S-VC-P +BeVerb +ClCl2 +ClCl +Np2CL +DetNP +NPofNP +Np2CL +DetNP +NPofNP +ADV-V-O +PrepNp +178213 Conj-CL +178215 NPofNP +DetCL +V2CL +V2CL +178221 Conj-CL +S-ADV-ADV-V-O-ADV +CLaCL +V2CL +178226 V-O-ADV +V-ADV +178229 ClCl +V2CL +ClCl +V2CL +PtclCL +V-S-ADV +V-O +178237 Conj-CL +S-ADV-V +DetNP +V-O +NpAdjp +178243 Conj-CL +S-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +2Pp +PrepNp +PrepNp +178253 Conj-CL +178255 Np-Appos +DetNP +DetCL +V-ADV +PrepNp +NPofNP +178262 that-VP +ADV-V +ADV-S-P-VC +Demo-NP +DetNP +NPofNP +178269 Conj-CL +V-S +AdvpNp +NP-CL +NpAdjp +ADV-V +PrepNp +P-S +PrepNp +NpaNp +NP-CL +aNpaNpaNp +178282 Np-Appos +DetNP +178285 Np-Appos +DetNP +ofNPNP +NpaNp +NPDetAdj +DetAdj +178293 CLaCL +S-ADV-V-O +sub-CL +VC-P +PrepNp +DetNP +178300 V-O +178302 Np-Appos +NpAdjp +DetCL +V-ADV-ADV +PrepNp +178308 Conj-CL +ClCl2 +ADV-S-V +ClCl2 +sub-CL +VC-P +NP-CL +S-VC-P +CLaCL +ADV-S-ADV-V-ADV +V2CL +NP-CL +Np-Appos +Np-Appos +NpPp +PrepNp +AdjpNp +S-V-O +Np-Appos +AdvpNp +BeVerb +DetNP +NPofNP +DetNP +V2CL +PrepNp +DetNP +178336 V-O +DetNP +NPofNP +DetNP +178341 Conj-CL +CLaCL +ClCl +S-V +DetNP +PtclCL +ADV-V +178350 V-O +DetNP +PtclCL +ADV-V +178355 Conj-CL +ADV-V-O-IO +V-ADV +PrepNp +DetNP +DetNP +DetNP +178363 Conj-CL +Conj3CL +ADV-ADV-V-ADV +V-O +V-O +DetNP +178370 V-O-ADV +PrepNp +NP-CL +S-V-ADV +BeVerb +PrepNp +178377 V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +178383 Conj-CL +S-V-O +NpaNp +Np-Appos +DetNP +DetNP +178390 Np-Appos +NPofNP +ADV-V +178394 Conj-CL +178396 V-S +DetNP +Conj3Np +Np-Appos +DetNP +178402 Np-Appos +NPofNP +DetNP +178406 sub-CL +ADV-V-O +V2CL +178410 Conj-CL +ClCl +ADV-ADV-V-ADV +AdvAdv +DetNP +NPofNP +DetNP +PrepNp +DetNP +V-S +DetNP +178422 Conj-CL +178424 PrepNp +S-V-IO-O-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +178432 Conj-CL +ClCl +178435 V2CL +that-VP +V-S +DetNP +sub-CL +VC-P +AdjpAdvp +178443 Conj-CL +CLaCL +ADV-V-O +V-ADV +PrepNp +DetNP +S-V-ADV-ADV +PrepNp +DetAdj +V-O +NpAdjp +178455 V2CL +178457 Conj-CL +178459 ADV-V +178461 V-O +Np-Appos +Np-Appos +DetAdj +DetCL +V2CL +178468 ClCl +V2CL +ADV-VC-P +178472 ClCl2 +V2CL +P2CL +DetNP +NP-CL +ADV-V-O +178479 Conj-CL +ClCl +V2CL +178483 NpaNp +DetNP +NPofNP +178487 DetNP +that-VP +ClCl +ClCl +V-ADV-ADV +PrepNp +DetNP +ADV-O-V +sub-CL +V-IO +178498 Conj-CL +ClCl +ADV-V-ADV +V2CL +PrepNp +DetNP +sub-CL +V-O-S +NpaNp +178509 Conj-CL +178511 sub-CL +V2CL +178514 Conj-CL +ADV-V-ADV-IO +V-ADV-ADV +NPofNP +NP-CL +Np-Appos +DetNP +ADV-V-O +PrepNp +NumpNP +178525 S-ADV-V-IO-ADV +V2CL +DetCL +P-VC +PrepNp +CLaCL +V2CL +178533 V2CL +178535 S-ADV-V +178537 that-VP +CLaCL +V2CL +178541 V-ADV +PrepNp +178544 Conj-CL +ADV-ADV-V-ADV-ADV +PrepNp +S-V +NpPp +PrepNp +PrepNp +AdjpNp +V-ADV +PrepNp +178556 V2CL +DetAdj +ADV-O-V +178560 Conj-CL +CLaCL +ADV-ADV-IO-V +V2CL +PronNP +DetNump +178568 NpaNp +DetNP +NPofNP +178572 sub-CL +O-ADV-V +DetCL +V-O +S-V +178578 Conj-CL +178580 ADV-V-O-IO +V-ADV +PrepNp +NpAdjp +DetNP +DetNP +All-NP +DetNP +178589 CLaCL +S-V +DetCL +CLaCL +V2CL +178595 V2CL +178597 S-V +DetCL +V2CL +178601 Conj-CL +S-O-V +NP-Demo +DetCL +V2CL +178607 ClClClClCl +ADV-O-V +PrepNp +DetNP +NPofNP +ADV-V +NpAdjp +O-V +ClCl2 +sub-CL +O-V +AdjpNp +ADV-O-V +2Advp_h1 +CLaCL +ADV-O-V +PrepNp +178625 P-VC +178627 Conj-CL +Conj-CL +CLaCL +CLaCL +S-ADV-V-ADV +Np-Appos +DetNP +PrepNp +DetCL +V-IO +PrepNp +DetNP +178640 V-ADV +PrepNp +NPofNP +DetNP +178646 V2CL +CLaCL +S-V +DetNP +178651 O-V-ADV +DetNP +PrepNp +DetNP +AdjpNp +V2CL +178658 Conj-CL +O-IO-ADV-V +All-NP +DetCL +V2CL +NpPp +PrepNp +DetNP +178667 Conj-CL +ADV-S-ADV-V-ADV-O +PrepNp +AdvpNp +PronNP +DetNP +Conj2Pp +PrepNp +178676 PrepNp +PrepNp +DetNP +AdjpNp +AdjpaAdjp +178682 NPofNP +DetNP +AdjpNp +178686 ClCl +178688 sub-CL +178690 V-O-ADV +PrepNp +DetNP +AdjpNp +V-ADV +PrepNp +sub-CL +V-IO-S +DetCL +ADV-P-VC-ADV +PrepNp +NpaNp +178703 DetNP +V-ADV-ADV-S +V-ADV-O-ADV +ADV-IO-V +Np2CL +AdjpNp +sub-CL +V-O +ofNPNP +CL-NP +ADV-V +PrepNp +DetNP +178717 CLaCL +V-ADV-S +PrepNp +DetNP +NPofNP +Np-Appos +NPofNP +DetNP +NP-CL +NpAdjp +NpAdjp +ADV-P +P2CL +PrepNp +NPofNP +178733 CLaCL +S-ADV-P +PrepNp +DetNP +NPofNP +178739 S-P +DetNP +NPofNP +178743 Conj-CL +VC-P-S-ADV-ADV +PrepNp +DetNP +V-ADV-ADV +PrepNp +All-NP +DetNP +NPofNP +NpaNp +178754 DetNP +178756 Conj-CL +178758 sub-CL +CLaCL +VC-S-P +DetNP +178763 S-V-ADV +VerbBe +PrepNp +DetNP +NPofNP +178769 Conj-CL +ClCl2 +V-ADV +PrepNp +DetCL +V-S-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +DetCL +V-ADV +V-ADV +PrepNp +DetNP +NPofNP +DetNP +178795 Conj-CL +S-V-ADV-ADV +All-NP +DetNP +NPofNP +DetNP +BeVerb +DetNP +NPofNP +DetNP +178806 Conj-CL +V-IO-S-ADV +NPofNP +V-ADV +PrepNp +NPofNP +DetNP +NPofNP +DetNP +178816 Conj-CL +CLaCL +V-S-ADV +V2CL +178821 S-V-ADV +PrepNp +178824 Conj-CL +178826 PrepNp +DetNP +ClCl +178830 Np2CL +sub-CL +Conj3CL +V-S +DetNP +NPofNP +178837 S-V-O-IO +Np-Appos +DetNP +NPofNP +178842 V-O-O2 +DetNP +NPofNP +178846 Conj-CL +VC-P-S +NpaNp +178851 Conj-CL +S-ADV-V +PrepNp +DetNP +NPofNP +178857 Conj-CL +Conj4CL +VC-P-ADV +PrepNp +178862 O-ADV-V +NpaNp +178865 2Advp_h1 +178867 ADV-V-ADV +NpAdjp +AdvPp +PrepNp +NPofNP +NPofNP +178874 O-V-ADV +NPofNP +DetNP +NPofNP +PrepNp +Np-Appos +DetNP +NPofNP +178883 Conj-CL +S-V-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +NpaNp +178890 ClCl +CLaCL +V-O-ADV +NPofNP +PrepNp +178896 O-ADV +PrepNp +NPofNP +V-IO-O +NpAdjp +V2CL +178903 Conj-CL +178905 PrepNp +DetNP +ADV-V-O +PrepNp +178910 Conj-CL +CLaCL +S-VC-P +178914 S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +178921 Conj-CL +178923 V2CL +DetNP +CLaCL +S-VC-P +Np-Appos +DetCL +V-ADV +PrepNp +DetNP +178933 V-ADV +CLaCL +V-ADV +PrepNp +178938 V-IO-O +178940 Conj-CL +178942 CLaCL +V2CL +178945 ADV-V-O +V2CL +PrepNp +ADV-V-S +PronNP +PrepNp +ADV-ADV-V-O +NP-CL +DetNP +NPofNP +S-V-ADV +PrepNp +DetNP +NPofNP +178960 Conj-CL +CLaCL +V-S-O +BeVerb +DetNP +DetNP +178967 V-ADV +PrepNp +DetCL +V-ADV-S +PrepNp +DetNP +178974 Conj-CL +CLaCL +ADV-ADV-V-O +V2CL +V-IO +178981 that-VP +O-V-ADV +PrepNp +DetNP +178986 Conj-CL +CLaCL +S-V-IO +BeVerb +178991 VC-P +178993 Conj-CL +ClCl2 +ClCl +V2CL +sub-CL +V-S +DetNP +NPofNP +DetNP +NPofNP +V-ADV +PrepNp +DetNP +NPofNP +179008 Conj-CL +ADV-V-S +PrepNp +Demo-NP +DetNP +Np-Appos +DetNP +NPofNP +179017 Conj-CL +V-O-ADV-ADV +NpNump +179021 that-VP +ADV-IO-V-S-ADV +PrepNp +NP-CL +ADV-V-ADV +V-O-ADV +NPofNP +PrepNp +179030 Conj-CL +CLaCL +ADV-V-S-ADV-ADV-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +Np-Appos +DetNP +PrepNp +DetNP +PrepNp +NP-CL +NPofNP +DetNP +ADV-S-P +PrepNp +NpAdjp +V-IO +NpPp +NP-CL +ADV-S-P +PrepNp +NPofNP +179055 S-P +DetNP +NPofNP +DetNP +179060 Conj-CL +179062 V2CL +PrepNp +ClCl +179066 V2CL +S-P +DetNP +PrepNp +179071 Conj-CL +CLaCL +S-ADV-V +PrepNp +DetNP +179078 P-VC-S +NP-Demo +DetNP +179082 Conj-CL +179084 DetNP +ClCl +179087 Np2CL +sub-CL +V-O-ADV +PrepNp +DetNP +179093 Conj-CL +179095 CLaCL +V-ADV +PrepNp +179099 V-O +179101 V-O-O2 +DetNP +NPofNP +179105 Conj5CL +S-VC-P +179108 P-VC +NPofNP +179111 V-IO-S-O +Np-Appos +DetNP +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +179120 V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +179127 ADV-P-VC-S +DetNP +NPofNP +179131 Conj-CL +179133 PrepNp +DetNP +ClCl +ADV-V-S +sub-CL +O-ADV-V +179140 Conj-CL +179142 V2CL +DetNP +CLaCL +S-V-ADV +NpAdjp +PrepNp +179149 S-V-O +NPofNP +179152 Conj-CL +S-VC-P +AdvpNp +DetNP +AdjpNp +V2CL +NPofNP +179160 Conj-CL +179162 CLaCL +179164 Np2CL +Np-Appos +DetNP +NPofNP +AdvpNp +PrepNp +NPofNP +179172 S-P-VC-ADV +NpAdjp +Np-Appos +DetCL +VC-P +sub-CL +ADV-V-ADV-S +PrepNp +DetNP +All-NP +179183 Conj-CL +179185 ClCl +ClCl2 +V2CL +P2CL +DetNP +NPofNP +V-ADV-ADV +PrepNp +DetNP +NPofNP +179196 Conj-CL +V-ADV-S +PrepNp +DetNP +179201 Conj-CL +Conj3CL +S-ADV-V-ADV-ADV-ADV +V-ADV +PrepNp +NP-Demo +DetNP +PrepNp +DetAdj +PrepNp +PrepNp +NPofNP +179214 V-ADV +PrepNp +DetNP +NPofNP +179219 V-O +DetNP +179222 Conj-CL +ClCl2 +ClCl +V2CL +sub-CL +V-O-S +DetNP +NPofNP +DetNP +DetNP +Conj4CL +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +179239 V-ADV-S +NpAdjp +DetNP +179243 V-ADV +NpAdjp +179247 CLaCL +P-S-ADV +V2CL +PrepNp +179252 P-S +V2CL +DetNP +NPofNP +DetNP +NPofNP +179259 Conj-CL +179261 that-VP +V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +179269 Conj-CL +179271 sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +V-ADV-S-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +179287 Conj-CL +P-S +DetCL +179291 that-VP +V-S-ADV +DetCL +V-IO-ADV +PrepNp +179297 Conj-CL +179299 ClCl +CLaCL +V-S-O +DetNP +NPofNP +DetNP +179306 V-S-ADV +DetNP +NPofNP +PrepNp +Np-Appos +DetNP +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +179322 Conj-CL +179324 PrepNp +DetNP +All-NP +DetNP +179329 sub-CL +Conj3CL +V-IO-O-S +DetAdj +179334 P-S +DetNP +NPofNP +179338 S-ADV-P +DetNP +NPofNP +PrepNp +NpaNp +179344 DetCL +V-O +179347 ClCl +V-O-ADV +PrepNp +NPofNP +V-O-ADV +NPofNP +NPofNP +179355 ClCl +CLaCL +V-O-ADV +PrepNp +179360 V-O +CLaCL +O-V-ADV +V2CL +179365 O-V-O2 +V2CL +179368 ClCl +V-O-ADV +Np-Appos +NPofNP +V-O-IO-ADV +NpaNp +DetNP +179376 DetNP +NPofNP +PrepNp +DetNP +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +179386 Conj-CL +CLaCL +V-S-ADV-ADV +PrepNp +AdvpNp +NpAdjp +179393 V-ADV +PrepNp +DetNP +NPofNP +179398 Conj-CL +CLaCL +IO-V-S +DetNP +DetNP +NPofNP +DetCL +V-S +179407 V-O +179409 Conj-CL +CLaCL +179412 NpaNp +DetAdj +179415 DetNP +NPofNP +that-VP +V-S-O-ADV +DetNP +NPofNP +PrepNp +179423 V-ADV +179425 Conj-CL +ClCl2 +V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +CLaCL +V-ADV +V-O +DetNP +179437 V-O-ADV-O2 +PrepNp +DetNP +NPofNP +DetNP +NPofNP +179444 Conj-CL +179446 V2CL +DetNP +NPofNP +CLaCL +ADV2CL +179452 VC-P +179454 Conj-CL +179456 PrepNp +that-VP +VC-P-S +PrepNp +DetNP +NPofNP +NP-CL +S-V-ADV +NP-Demo +DetNP +179467 Conj-CL +V-IO-O +DetNP +NPofNP +DetCL +PtclCL +V-O +P-VC-S +179476 Conj-CL +ADV-V-ADV +V-O +179480 P-VC-S +NPofNP +179483 Conj-CL +V-S +179486 Conj-CL +CLaCL +CLaCL +V-S-ADV +DetNP +NPofNP +179493 S2CL +DetNP +NPofNP +179497 V-ADV +V-O +DetNP +179501 Conj-CL +Conj3CL +V-S-ADV +PrepNp +All-NP +DetCL +V-O +179509 ADV-V-S +PrepNp +All-NP +DetNP +NPofNP +DetNP +NP-Demo +All-NP +DetNP +179520 All-NP +DetCL +V2CL +PrepNp +DetNP +NPofNP +179527 Conj-CL +P-S-VC +NP-Demo +DetNP +sub-CL +S-VC-P +AdvpNp +NPofNP +PrepNp +179537 Conj-CL +CLaCL +S-V-ADV +Np-Appos +DetNP +NPofNP +NpAdjp +179545 V-ADV +179548 Np-Appos +DetNP +NPofNP +DetNP +sub-CL +ClCl +ClCl +Conj3CL +V2CL +179558 V-O-IO +DetNP +NPofNP +179562 V-O-IO-ADV +NPofNP +PrepNp +NPofNP +Np-Appos +NPofNP +sub-CL +V-ADV +PrepNp +NPofNP +DetNP +AdjpNp +PpNp2Np +PrepNp +NPofNP +O-ADV-ADV +Conj2Pp +PrepNp +NPofNP +179582 PrepNp +NPofNP +All-NP +DetCL +V-O +CLaCL +V-O-ADV +PrepNp +DetNP +NPofNP +179593 V-O +Np-Appos +NPofNP +NpAdjp +NP-CL +O-V-ADV-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetCL +V-IO-ADV-O +ADV-V +PrepNp +NPofNP +ADV-V-O-ADV-ADV-ADV +PrepNp +NpaNp +179612 PrepNp +All-NP +DetNP +NPofNP +179617 Conj-CL +179619 Np2CL +AdvpNp +NPofNP +sub-CL +V-ADV-ADV-ADV +PrepNp +V-O +NPofNP +DetCL +V-O-IO-ADV-ADV +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +NPofNP +PrepNp +NP-CL +NPofNP +NPofNP +NPofNP +ADV-V-O-S-ADV-ADV +PrepNp +PrepNp +V-IO-ADV +DetCL +ADV-V +PrepNp +NpaNp +179649 NPofNP +DetCL +V-O-ADV +DetNP +NPofNP +PrepNp +NPofNP +179657 Conj-CL +CLaCL +CLaCL +S-V +DetNP +179663 V-ADV +179665 VC-P-ADV +PrepNp +DetAdj +PrepNp +NPofNP +NpPp +NPofNP +PrepNp +DetNP +179675 Conj-CL +ClCl2 +V-ADV +PrepNp +NP-Demo +DetNP +V-S-ADV-ADV +PrepNp +Np-Appos +V-S +All-NP +DetNP +179689 NpAdjp +V-ADV-S +DetNP +179693 Conj-CL +179695 V2CL +S-ADV +PrepNp +DetNP +ofNPNP +179701 Conj-CL +V-S-ADV-ADV-ADV +AdvpNp +2Pp +2Pp +PrepNp +DetNP +PrepNp +NPofNP +2Pp +PrepNp +DetNP +PrepNp +NP-CL +NPofNP +S-VC-P +PrepNp +DetCL +VC-S-P +PrepNp +NPofNP +NpaNp +179724 V-ADV +PrepNp +Np-Appos +Np-Appos +DetCL +V-IO +VC-P +179732 Conj-CL +ClCl2 +V-ADV +PrepNp +DetCL +VC-S-P +CLaCL +V-S +DetNP +NPofNP +DetCL +V-S +179745 V-O +DetNP +NPDetAdj +NPofNP +DetAdj +179751 Conj-CL +179753 V-O +179755 V-O-ADV +PrepNp +sub-CL +ADV-VC-P-S-ADV +PrepNp +DetNP +179762 Conj-CL +S-VC-P-ADV +PrepNp +Np-Appos +DetNP +DetNP +CLaCL +V2CL +179771 V-O-ADV +NPofNP +DetNP +PrepNp +DetNP +NPofNP +179778 Conj-CL +CLaCL +CLaCL +S-V-IO +NPofNP +179784 S-V-O +NPofNP +179787 V-O +NpAdjp +179790 Conj-CL +179792 DetNP +ClCl +ADV-V +sub-CL +179797 NP-CL +NpAdjp +S-VC-P +All-NP +DetNP +that-VP +V-IO-ADV-S-ADV +NP-CL +S-VC-P +Np-Appos +PrepNp +NPofNP +179810 Conj-CL +179812 V-O +CLaCL +S-V +179816 V-ADV +PrepNp +179819 Conj-CL +ADV-V-ADV-S-ADV +PrepNp +DetNP +NPofNP +NpAdjp +CLaCL +V-O +DetNP +179830 CLaCL +S-ADV-P +PrepNp +179834 ADV-S-P +PrepNp +PrepNp +NPofNP +179839 Conj-CL +ClCl2 +ClCl +V2CL +sub-CL +V-ADV-ADV-S +PrepNp +PrepNp +DetNP +DetNP +179850 DetNP +PrepNp +PtclCL +CLaCL +V-ADV +PrepNp +179857 V-O +NP-CL +Np-Appos +NP-Demo +DetNP +DetCL +V2CL +O-S-V-IO +DetNP +179867 Conj-CL +CLaCL +V-ADV +V2CL +179872 V-O +NpaNp +aNpaNp +179876 DetNP +179878 DetNP +179880 S-V-ADV +DetNP +PrepNp +DetNP +179885 Conj-CL +ADV-V-ADV +V2CL +PrepNp +Np-Appos +DetNP +DetCL +V-IO-ADV +PrepNp +NP-Demo +DetNP +179897 Conj-CL +S-V-ADV +All-NP +DetCL +V2CL +PrepNp +DetCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +179909 Conj-CL +S-V-O-ADV +DetNP +All-NP +DetNP +O-V-ADV +PrepNp +DetNP +NPofNP +179919 Conj-CL +V-S-ADV-ADV +DetNP +V-O +Conj2VP +179925 DetNP +PrepNp +All-NP +179929 O-V +Conj2VP +179932 V-ADV +PrepNp +179935 Conj-CL +ClCl2 +sub-CL +V-S-ADV +NpNump +DetCL +V-O +Conj-CL +179944 DetNP +NPofNP +P2CL +DetCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetCL +V-S-ADV +PrepNp +DetNP +179957 Conj-CL +ClCl2 +sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +V-O-ADV-ADV +PrepNp +CLaCL +ClCl +V-IO +DetNP +sub-CL +179976 PrepNp +NPofNP +that-VP +S-P-ADV-VC +All-NP +NpAdjp +V-O +DetNP +179985 Np2CL +DetCL +V-O-ADV +PrepNp +DetCL +179991 PrepNp +DetNP +NPofNP +O2CL +NpaNp +NPofNP +179998 NumpNP +NPofNP +180001 Conj-CL +180004 S-VC-P +PrepNp +180007 CLaCL +S-P-ADV +NP-Demo +DetNP +AdjpaAdjp +180013 V-O +NPofNP +DetNP +180017 S-VC-P +NpAdjp +PrepNp +180021 Conj-CL +V-IO-ADV-S +BeVerb +PrepNp +DetNP +NPDetAdj +DetAdj +180029 sub-CL +sub-CL +PtclCL +V-O +DetNP +NPofNP +180036 Conj-CL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +180043 Conj-CL +CLaCL +ADV-S-V-O-ADV +PrepNp +DetCL +V-S-O-ADV +DetNP +Np-Appos +DetNP +DetCL +V-S-ADV-ADV +PrepNp +NPofNP +DetCL +V2CL +DetNP +PrepNp +AdvpNp +PrepNp +DetNP +180064 CLaCL +V-O +DetNP +180070 Np2CL +DetNP +NPofNP +PrepNp +DetNP +NPofNP +PrepNp +sub-CL +V-S-O +DetNP +NPofNP +Np-Appos +NP-CL +DetNP +NPofNP +O-V-ADV +PrepNp +NPofNP +All-NP +DetNP +NpaNp +NpPp +PrepNp +NPofNP +180095 NPofNP +Np-Appos +NPofNP +180099 Conj-CL +V-S-ADV +BeVerb +NpaNp +DetNP +NPofNP +180106 DetNP +PrepNp +DetCL +V-ADV +PrepNp +180112 Conj-CL +CLaCL +V-O-S +180117 PrepNp +Np-Appos +DetNP +NPofNP +180122 CLaCL +S-V-ADV +Conj2Pp +PrepNp +NPofNP +NpaNp +180129 NpPp +PrepNp +DetNP +180133 PrepNp +NpAdjp +V2CL +180137 ADV-V-S +AdvpNp +ofNPNP +NpPron +DetNP +sub-CL +PtclCL +V-ADV-S +PrepNp +AdjpNp +180148 Conj-CL +180150 ClCl +V-S +NpPp +Np-Appos +Np-Appos +NPofNP +PrepNp +NPofNP +CLaCL +S-P +V-ADV-ADV +PrepNp +NpAdjp +V-ADV-ADV-ADV +PrepNp +NpNump +PrepNp +DetNP +NPofNP +180170 S-P-ADV +PrepNp +NpNump +NumpAdjp +DetNP +ADV-V-ADV +NpaNp +180178 NpaNp +180181 Conj-CL +CLaCL +ADV-ADV-V-O +AdjpNp +DetNP +V2CL +DetNP +180189 V-ADV-IO +PrepNp +All-NP +DetCL +V-O +NPofNP +180196 Conj-CL +ClCl2 +sub-CL +V-O +All-NP +NpPp +PrepNp +DetNP +NPofNP +V-ADV +2Pp +PrepNp +DetNP +PrepNp +Np-Appos +NPofNP +180213 Conj-CL +Conj3CL +S-V +DetNP +180218 V-ADV +V-ADV +180221 S-VC-P +NPofNP +PrepNp +180225 Conj-CL +V-S-ADV-ADV-ADV +DetNP +NPofNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +180235 Conj-CL +ClCl2 +sub-CL +VC-P +NpNump +ClCl2 +CLaCL +V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +180248 V-O +DetNP +CLaCL +ADV-V-S-ADV +PrepNp +DetCL +V-S +Np-Appos +DetNP +PrepNp +180259 ADV-V-S +DetNP +NPofNP +180263 Conj-CL +Conj3CL +ADV-V-O +V-O +S-VC-P +PrepNp +DetNP +ofNPNP +180272 V-O-ADV +PrepNp +NpaNp +DetAdj +180277 DetAdj +180279 ADV-V-ADV-ADV +ADV-V +PrepNp +V-O +180284 Conj-CL +ClCl2 +V-ADV +PrepNp +NpAdjp +V-O +Conj3CL +S-ADV-V-ADV +PrepNp +DetNP +PrepNp +NPofNP +DetNP +180298 V-O +180300 V-O +180302 Conj-CL +V-S-ADV +All-NP +DetCL +V-O +PrepNp +NPofNP +NpaNp +DetNP +180312 DetNP +180314 Conj-CL +CLaCL +ADV-V +V-O +180320 PrepNp +DetNP +NPofNP +ClCl +180325 Np2CL +180327 2Np +DetNP +NPofNP +V2CL +180332 Conj-CL +180334 PrepNp +ClCl +P-S +that-VP +V-O +180340 that-VP +S-V +P-VC-S +PrepNp +NPofNP +DetNP +NPofNP +180348 Conj-CL +S-ADV-V-O +DetNP +NP-CL +O-V-IO +180354 Conj-CL +Conj3CL +V-ADV +PrepNp +180359 V-ADV +PrepNp +180362 V-IO +BeVerb +180365 Conj-CL +S-V-O-ADV +DetNP +NPofNP +All-NP +DetNP +PrepNp +DetNP +NPofNP +180375 Conj-CL +S-V-ADV +PrepNp +DetNP +Conj3Np +180382 NpPp +PrepNp +NpaNp +180387 Conj-CL +ADV-ADV-ADV-V-S-ADV-ADV +PrepNp +NPofNP +NpAdjp +DetNP +NPofNP +Np-Appos +Conj4CL +V-S-ADV +Np-Appos +DetNP +180400 V-ADV-S +DetNP +180403 S-V-ADV +Np-Appos +DetNP +NPofNP +DetNP +ofNPNP +NpaNp +180412 S-ADV-V +DetNP +PrepNp +Np-Appos +NpaNp +180418 NPofNP +PrepNp +Np-Appos +DetNP +ofNPNP +PrepNp +DetAdj +180426 Conj-CL +180428 PrepNp +All-NP +DetNP +NPofNP +DetNP +V-O +NPofNP +NpPp +PrepNp +NPofNP +sub-CL +180440 PrepNp +NPofNP +NPofNP +Np-Appos +DetNP +S2CL +NPofNP +180448 PrepNp +DetAdj +ClCl +V-O +DetNP +NPofNP +O2-V-O +DetNP +NPofNP +180458 CLaCL +CLaCL +S-V +All-NP +180463 S-V +All-NP +NpaNp +180468 CLaCL +V-S-ADV +DetAdj +PrepNp +180473 S-ADV +DetAdj +PrepNp +NpAdjp +180478 Conj-CL +V-S-O +All-NP +DetNP +NPofNP +DetNP +180485 Conj-CL +180487 DetNP +AdjpNp +V-ADV +V-ADV +PrepNp +180493 Np2CL +NPofNP +V-ADV +PrepNp +DetNP +AdjpNp +V2CL +180501 Conj-CL +V-O +NpAdjp +AdjpAdvp +DetNP +180507 Conj-CL +180510 PrepNp +O2-V-O +DetNP +sub-CL +180515 that-VP +V-S-O +DetNP +ADV-V-O-IO +PrepNp +NP-Demo +DetNP +DetNP +180524 Conj-CL +ADV-S-ADV-V +AdvpNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +180533 Conj-CL +CLaCL +S-V +All-NP +NpAdjp +ADV-V-O +NpAdjp +180541 ADV-V +PrepNp +180544 Conj-CL +V-O-S-ADV +DetNP +180548 Conj-CL +O-V +180551 Conj-CL +180553 V2CL +CLaCL +S-V-IO +DetCL +V-O +NumpNP +DetCL +ADV-V +180562 S-ADV-V +DetCL +V-O +180566 Conj-CL +CLaCL +V-S-ADV +AdvpNp +V2CL +180573 PrepNp +180575 Np2CL +180577 Conj-CL +180579 PrepNp +O-ADV-V +AdjpNp +PrepNp +DetCL +V-IO +180586 Conj-CL +V-O-S-ADV +AdvpNp +V2CL +180591 O-V-S +AdvpNp +180594 Conj-CL +180596 CLaCL +CLaCL +O-V +180600 V2CL +180602 V-ADV +DetNP +NPofNP +180606 Conj-CL +ClCl2 +CLaCL +V-S +DetNP +180613 PrepNp +DetNP +NPofNP +PrepNp +DetNP +ADV-ADV-S-VC-P +DetNP +180621 V-IO +DetNP +aCLaCL +180625 S-ADV-V-O +180628 NP-CL +DetNP +AdjpAdvp +ADV-ADV-VC-P-ADV +V-O +DetNP +NPofNP +DetNP +NPofNP +180638 PrepNp +NpaNp +NpAdjp +180642 CLaCL +S-P-ADV +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +CLaCL +V-O +DetNP +NPofNP +180654 V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +180660 O-V-ADV +DetNP +NpAdjp +180664 Conj-CL +Conj-CL +ADV-V-O +O-V +NpaNp +180670 DetNP +180672 Conj-CL +180674 Np-Appos +DetNP +DetNP +V-ADV-ADV +PrepNp +Conj2Pp +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +180687 PrepNp +NP-CL +O-V-S +Np-Appos +DetNP +AdvpNp +PrepNp +V-O-ADV +DetNP +PrepNp +180698 Conj-CL +V-ADV-S +PrepNp +DetCL +ClCl +V-S +AdjpNp +DetNP +CLaCL +S-V +AdvpNp +180710 V2CL +Conj3CL +V-S +DetNP +180715 V-S-ADV-ADV-ADV +DetNP +NPDetAdj +DetAdj +AdjpNp +PrepNp +PrepNp +180724 PrepNp +ClCl +S-VC-P +Np-Appos +DetNP +NPofNP +DetAdj +ADV-V +PrepNp +180734 Conj-CL +S-V-ADV-ADV +PronNP +BeVerb +AdvpNp +NpNump +ClCl2 +sub-CL +V2CL +VC-P +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +Np-Appos +NPofNP +180898 Conj-CL +CLaCL +S-ADV-V-ADV +AdjpAdvp +NpAdjp +PrepNp +DetNP +180906 V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +DetAdj +ADV-V-ADV +NpNump +PrepNp +DetAdj +180916 Conj-CL +CLaCL +ADV-V-O-ADV +PrepNp +NP-Demo +DetNP +180923 ClCl2 +V-S +V2CL +180927 Conj-CL +180929 DetAdj +ClCl2 +sub-CL +VC-P +NPofNP +DetNP +180936 NP-Demo +DetNP +that-VP +VC-P +180941 Conj-CL +180943 PrepNp +DetNP +180946 that-VP +ADV-ADV-V-S +PrepNp +NpAdjp +DetNP +180952 Conj-CL +ADV-V-IO-O-ADV +V-O +All-NP +DetNP +NPofNP +DetNP +PrepNp +NPofNP +180962 Conj-CL +180964 DetAdj +ClCl +IO-V-O +NpaNp +NP-all +NP-Demo +DetNP +180972 DetNP +NPofNP +sub-CL +CLaCL +IO-V +180978 IO-V-O +PtclCL +O-V +180982 Conj-CL +180984 sub-CL +S-V-ADV +PrepNp +180988 Conj-CL +180990 V2CL +DetNP +180993 CLaCL +V-O +Np-Appos +DetNP +NPofNP +180999 O-V +NpAdjp +181002 Conj-CL +CLaCL +CLaCL +V-O-ADV +PrepNp +181008 V-ADV +PrepNp +DetNP +NPofNP +DetNP +181015 ClCl2 +sub-CL +VC-P +NPofNP +DetNP +V-O-ADV-ADV +181022 Conj-CL +181024 CLaCL +that-VP +IO-V-ADV-ADV +DetNP +NPofNP +PrepNp +DetCL +V-O +181033 that-VP +ClCl +ADV-V-O +PrepNp +ADV-ADV-V-ADV-O +PrepNp +DetNP +NPofNP +181042 Conj-CL +181044 V2CL +DetNP +that-VP +181048 ADV-V-O +Np-Appos +DetNP +NPofNP +181053 Conj-CL +ADV-S-V-ADV-ADV +V-O +All-NP +DetAdj +PrepNp +PrepNp +181061 Conj-CL +V-S-ADV-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +181071 Conj-CL +S-V-ADV-ADV +PrepNp +All-NP +DetAdj +PrepNp +181078 Conj-CL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +V-ADV +PrepNp +181086 Conj-CL +CLaCL +V-ADV +PrepNp +NP-CL +ADV-V +BeVerb +181094 CLaCL +V-ADV-ADV-ADV +PrepNp +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +181106 V-ADV +V2CL +181109 Conj-CL +CLaCL +V-IO-S +NPofNP +Np-Appos +DetNP +181116 ADV-V-O +V-O +DetNP +DetNP +NP-CL +181122 BeVerb +181124 S-P +NPofNP +PrepNp +ADV-V-O-ADV +NP-Prep +V-IO +ClClCl +CLaCL +V-IO-O +181134 IO-O +V-O-ADV +V2CL +PrepNp +V-O +NpAdjp +NPofNP +181142 Conj-CL +ADV-ADV-V +V-O +DetNP +V-IO +DetNP +181149 Conj-CL +S-V-O +NpPp +ofNPNP +DetNP +PrepNp +DetNP +BeVerb +181158 Conj-CL +V-O +181161 PrepNp +that-VP +ADV-V-S-ADV +NP-Demo +DetNP +PrepNp +DetNP +NPofNP +181170 Conj-CL +CLaCL +CLaCL +S-V-IO +181175 V-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +181188 PtclCL +P-VC-S +NPofNP +181192 Conj-CL +181194 PrepNp +181196 NP-Demo +DetNP +181200 Np2CL +V-O +S-V-ADV +PrepNp +DetNP +2Advp_h1 +PrepNp +DetNP +NPofNP +181210 Conj-CL +181213 V-IO +that-VP +S-P-VC-ADV +AdjpNp +PrepNp +DetNP +NPofNP +181221 Conj-CL +181223 PrepNp +CLaCL +ClCl +S-VC-P-ADV +AdjpNp +PrepNp +DetNP +NPofNP +PrepNp +DetNP +ClCl +ADV-V-S-ADV +DetNP +PrepNp +NpaNp +NpAdjp +181240 NpNump +ADV-VC-S-P +NpAdjp +PrepNp +All-NP +DetNP +181248 PrepNp +NPofNP +sub-CL +ADV-ADV-ADV +PrepNp +NPofNP +DetNP +PrepNp +Np-Appos +181258 Conj-CL +CLaCL +S-VC-ADV-P +AdjpNp +PrepNp +DetNP +PrepNp +Np-Appos +DetNP +181269 NPofNP +sub-CL +ADV-S +Np-Appos +DetNP +181275 Conj-CL +CLaCL +V-ADV-S-ADV +NpPp +PrepNp +DetNP +V-O +181283 CLaCL +ADV-V-O-ADV +V2CL +PrepNp +DetNP +181289 V-O-ADV-ADV +PrepNp +NPofNP +DetNP +NP-CL +ADV-S-V +PrepNp +DetNP +NPofNP +sub-CL +V-O +181301 Conj-CL +S-ADV-V +V-ADV +PrepNp +NPofNP +181307 Conj-CL +V-ADV +PrepNp +Np-Appos +NPofNP +DetNP +181314 Conj-CL +V-O-ADV +BeVerb +PrepNp +DetNP +181320 Conj-CL +181322 PrepNp +DetNP +NPofNP +sub-CL +P-VC-S +PrepNp +DetNP +NPofNP +181331 Conj-CL +CLaCL +P-VC-S +PrepNp +DetNP +NpAdjp +V-O +NPofNP +NpAdjp +181342 NpAdjp +ClCl +ClCl +181346 Intj2CL +NpaNp +181349 Np2CL +Np-Appos +V-ADV +V-O +181354 ClCl +P-VC +P2CL +DetNP +NPofNP +DetNP +181361 Conj-CL +V-O-S-ADV +DetNP +181365 CLaCL +V2CL +181368 V-ADV +PrepNp +181371 Conj-CL +S-ADV-V-ADV-ADV +DetNP +V-O-ADV +PrepNp +DetAdj +PrepNp +ADV-V-O +181380 Conj-CL +CLaCL +V-S-ADV +PrepNp +181385 V-ADV-ADV +PrepNp +181389 NP-Demo +DetNP +sub-CL +CLaCL +ADV-V-IO +PrepNp +NpaNp +181397 DetNP +AdjpNp +181400 V2CL +181402 Conj-CL +V-S-ADV +NpPp +PrepNp +PrepNp +All-NP +NPofNP +DetAdj +181411 Conj-CL +ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +181420 Conj-CL +CLaCL +S-V-ADV +NPofNP +DetNP +BeVerb +NpAdjp +181428 V-O-ADV +PrepNp +181431 Conj-CL +CLaCL +ADV-V-O +V-ADV +PrepNp +DetNP +181438 V-O +181440 Conj-CL +ADV-ADV-V-O +V2CL +181444 Conj-CL +181446 V-S +DetNP +All-NP +S-V-O +V-ADV +NpAdjp +PrepNp +181454 Conj-CL +S-ADV-V-O +IO-O-V +NPofNP +NpAdjp +DetNP +181461 Conj-CL +V-S-ADV-ADV +AdvpNp +PrepNp +CLaCL +V2CL +181469 that-VP +S-VC-P +DetNP +NPofNP +DetNP +181475 Conj-CL +181477 V2CL +S-V +sub-CL +V-O +P-S-VC +DetNP +181484 Conj-CL +ClCl2 +V-S +ADV-V-ADV +V2CL +PrepNp +AdjpNp +181492 Conj-CL +CLaCL +CLaCL +S-V-O +DetNP +181498 V-ADV +PrepNp +181501 V-O-ADV +DetCL +ADV-V-ADV +PrepNp +181506 Conj-CL +181508 PrepNp +that-VP +181511 IO-V-S-O +AdvpNp +DetNP +AdjpNp +DetNP +NPofNP +DetNP +sub-CL +ADV-V +PrepNp +181522 Conj-CL +V-ADV +BeVerb +PrepNp +DetNP +NPofNP +DetNP +181530 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +CLaCL +S-V-O +DetNP +181539 V-O +DetNP +NPofNP +DetNP +181544 CLaCL +S-V-ADV +BeVerb +PrepNp +DetNP +NPofNP +181551 V-O +S-V-ADV +NpNump +PrepNp +DetNP +181557 Conj-CL +S-ADV-V-O +DetNP +ADV-V +PrepNp +DetNP +181564 Conj-CL +CLaCL +ADV-V-O +V-ADV +PrepNp +NP-CL +NPofNP +DetNP +S-VC-P +S-ADV-V-ADV +PrepNp +DetNP +181577 ADV-ADV-V-O +V2CL +PrepNp +DetNP +DetNP +181583 Conj-CL +ClCl2 +sub-CL +V-O +V2CL +181589 PrepNp +DetNP +CLaCL +V-ADV +PrepNp +DetNP +181596 V-O-ADV +DetNP +NPofNP +PrepNp +181601 Conj-CL +181603 V2CL +181605 Np2CL +ADV-O-V +ADV-V +PrepNp +All-NP +181611 ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +181617 Conj-CL +CLaCL +ADV-V-O +O-V +NpAdjp +NPofNP +181624 V-S +DetNP +NPofNP +181628 Conj-CL +V-IO-ADV +DetNP +NpPp +PrepNp +DetNP +AdjpNp +DetCL +ADV-V-O +V2CL +181639 Conj-CL +CLaCL +V2CL +181643 V-O-ADV +AdjpNp +DetNP +sub-CL +V-S +181649 Conj-CL +ADV-S-V-ADV-ADV +V2CL +Np-Appos +DetNP +NPofNP +181657 PrepNp +sub-CL +P-VC +NpAdjp +Np2CL +181663 Conj-CL +CLaCL +S-V-O-ADV +NpaNp +181668 All-NP +NpPp +PrepNp +PrepNp +DetNP +NP-CL +NPofNP +DetNP +O-V +181678 ADV-O +AdvpNp +NP-CL +Np-Appos +NpaNp +181684 NPofNP +S-VC-P-ADV +DetNP +181688 Conj-CL +181690 PrepNp +DetNP +DetNP +ClCl +ADV-V +ADV-O-V +PrepNp +DetNP +BeVerb +181700 Conj-CL +ADV-ADV-V-O +V-O-ADV +DetNP +PrepNp +DetNP +V-O +181708 Conj-CL +CLandCL2 +CLaCL +V-ADV +PrepNp +DetCL +VC-S-P +PrepNp +NPofNP +DetNP +181720 V2CL +NpAdjp +AdjpAdvp +181724 ADV-ADV-V-O-ADV +V-O +DetNP +V-ADV +PrepNp +181731 Np2CL +sub-CL +V2CL +V-O +O-V +181737 Conj-CL +ADV-V-O-ADV +V-O +DetNP +181743 V2CL +181745 Conj-CL +ADV-S-V-ADV +DetNP +PrepNp +181750 Conj-CL +CLaCL +S-V-IO-O +IO-V +181755 CLaCL +ADV-V-O-IO +V2CL +DetNP +181760 V-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +sub-CL +V-S +PrepNp +NpAdvp +181769 Conj-CL +CLaCL +V-ADV-S +DetNP +NpPp +PrepNp +181776 V-S-ADV +NpAdjp +CLaCL +V2CL +181781 V-ADV +PrepNp +DetNP +NPofNP +181786 Conj-CL +CLaCL +S-V-ADV +BeVerb +PrepNp +DetAdj +181793 V2CL +181795 Conj-CL +CLandCL2 +V-ADV +PrepNp +NPofNP +DetNP +181802 CLaCL +S-V +BeVerb +181806 V-S +BeVerb +NP-CL +NpaNp +181811 S-V-ADV +BeVerb +PrepNp +All-NP +NPofNP +DetNP +Conj3Np +181821 Conj-CL +S-V-ADV +NPofNP +PrepNp +DetCL +V-S +181828 Conj-CL +CLaCL +181831 PrepNp +NP-CL +S-V +BeVerb +181836 V-O +CLaCL +O-V +181840 V-ADV +PrepNp +181843 Conj-CL +ADV-ADV-ADV-V-O-ADV-ADV-ADV +ADV-V-O +ADV-V-O-ADV +PrepNp +DetNP +V-ADV +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetAdj +PrepNp +DetNP +181861 Conj-CL +181863 V-O +DetNP +NPofNP +181867 Np2CL +DetNP +NPofNP +181871 Conj-CL +V-O-S-ADV +V2CL +NpaNp +DetNP +181877 DetNP +181880 NP-CL +S-V-O +ClCl +S-V-O +O-V +sub-CL +ADV-S +AdjpNp +DetNP +181890 Conj-CL +181892 DetNP +V-O +DetNP +NPofNP +V2CL +PrepNp +CLaCL +181900 PrepNp +DetNP +NPofNP +ClCl +S-VC-P +CLaCL +181907 V-IO-S +DetNP +NPofNP +181912 CLaCL +V2CL +181915 V2CL +181917 sub-CL +181919 V2CL +S-O-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +V-O +181929 DetCL +V2CL +181932 CLaCL +V2CL +181935 ADV-V-ADV +V-O +DetNP +NPofNP +PrepNp +DetNP +NPofNP +181943 Conj-CL +ADV-ADV-ADV-V-ADV-ADV +V-ADV +PrepNp +V-O +ADV-V +PrepNp +PrepNp +DetNP +NPofNP +V-O +DetNP +181956 Conj-CL +CLaCL +S-V-O +181960 CLaCL +V-O +DetNP +181964 V-ADV-ADV +181966 that-VP +V-O-ADV +181969 Conj-CL +CLaCL +ADV-V +PrepNp +181974 CLaCL +V-O +S-V-ADV +NpAdjp +ADV-P +PrepNp +DetNP +181983 V-O +181985 Conj-CL +ADV-ADV-V-O +V-O +V2CL +181990 Conj-CL +V-O-S-IO-ADV +NpAdjp +PrepNp +DetNP +NPofNP +181997 Conj-CL +V-S +NPofNP +NpAdjp +NP-CL +NpaNp +182004 S-V-ADV +BeVerb +PrepNp +182008 Conj-CL +V-S-ADV-ADV +NpaNp +DetNP +182013 DetNP +NPofNP +PrepNp +DetNP +NPofNP +182019 ADV-ADV-V +PrepNp +PrepNp +DetNP +NpaNp +182025 Conj2VP +182028 Conj-CL +182030 V2CL +DetNP +PrepNp +notCLbutCL2CL +O-V-S +NPofNP +DetCL +V2CL +S2CL +DetCL +ADV-V +182042 notCLbutCL2CL +V-ADV +V-O +O-ADV +PrepNp +182048 Conj-CL +182050 PrepNp +CLaCL +ClCl +CLaCL +S-V-ADV +DetNP +NPofNP +182058 O-V +ADV-S +AdvpNp +NPofNP +DetNP +182064 S-V +DetAdj +Conj2VP +182069 Conj-CL +182071 DetNP +PrepNp +PtclCL +V-O +O-V +S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +ADV-S-P-VC +DetNP +PrepNp +182085 Conj-CL +CLaCL +V-S +182090 sub-CL +V-ADV-S +PrepNp +DetNP +PrepNp +Demo-NP +DetNP +182098 Conj-CL +182100 AdvpNp +PrepNp +that-VP +S-ADV-V-ADV +O-ADV-V +PrepNp +NpAdjp +PrepNp +NpAdjp +182110 Conj-CL +182112 sub-CL +ADV2CL +182115 O-V +DetAdj +182118 ADV-ADV-V-S +DetAdj +Np-Appos +DetNP +NpPp +PrepNp +DetNP +182126 Conj-CL +S-V-O-ADV +NpAdjp +PrepNp +NpAdjp +182132 Conj-CL +182134 sub-CL +ADV2CL +V-S-O +DetNP +NPDetAdj +DetAdj +DetNP +182142 CLaCL +S-V +182145 S-V +DetNP +182148 Conj-CL +S-ADV-P +NpAdjp +PrepNp +NpAdjp +182154 Conj-CL +ClCl +S-ADV-V-O +V-O +sub-CL +182160 S-P-VC +DetAdj +182163 Conj-CL +CLandCL2 +V-S +ADV-V-S-ADV +PrepNp +PrepNp +182170 V-S-O-ADV +Conj2VP +182173 DetNP +NPofNP +DetNP +V-ADV +DetNP +182179 Conj-CL +182181 NPofNP +DetNP +ADV-V-O +S-ADV-V-ADV +DetNP +182187 Conj-CL +182189 V2CL +PrepNp +DetNP +182193 NP-CL +182195 O-V-S +V-S +NpaNp +182199 DetCL +P-VC +PrepNp +that-VP +182204 V-ADV +PrepNp +DetNP +NPofNP +DetNP +182210 ADV-V +O-V +DetNP +NPofNP +DetNP +182216 V-IO +DetNP +PrepNp +182220 S-ADV-V +O-V +ADV-S +AdjpNp +DetNP +182226 Conj-CL +182228 VC-P-S +NPofNP +DetNP +DetNP +NPofNP +DetNP +182235 Conj-CL +CLandCL2 +V-S +CLaCL +ADV-V-S-ADV +PrepNp +AdjpNp +PrepNp +DetNP +182245 V2CL +182247 CLaCL +VC-S-P +182250 S-VC-P +DetNP +NPDetAdj +NPofNP +DetAdj +182256 Conj-CL +ClCl +ClCl +V-O-S +NpaNp +DetNP +182263 DetNP +PtclCL +ADV-V +PrepNp +DetNP +sub-CL +V-O +V-O +182272 Conj-CL +CLaCL +S-V-O +DetNP +NPofNP +182279 Np-Appos +DetNP +DetCL +O2-V-O +DetNP +CLaCL +V2CL +182287 V-ADV +PrepNp +DetAdj +182291 Conj-CL +ADV-V +V2CL +182295 Conj-CL +182297 DetNP +PrepNp +182300 PtclCL +V-ADV-S +DetNP +ClCl +CLaCL +V2CL +182307 V2CL +CLaCL +O-V +182311 V2CL +182313 Conj-CL +182315 V-O +All-NP +V-O +DetNP +NPofNP +182321 Conj-CL +CLaCL +S-V +182325 V-S +DetNP +NPofNP +182329 Conj-CL +CLaCL +S-V-ADV +182334 PrepNp +PtclCL +O-V-IO +DetNP +182339 Conj-CL +CLandCL2 +V-S +ADV-V-S-ADV-ADV +PrepNp +NP-Demo +DetNP +PrepNp +DetNP +V2CL +182350 V-ADV +BeVerb +PrepNp +DetNP +NPofNP +DetNP +182357 Conj-CL +ClCl2 +sub-CL +V-S +CLaCL +V-O +DetNP +NPofNP +182366 V-ADV-O +PrepNp +Np-Appos +NP-CL +O-O2-V +AdvpNp +Conj12Np +NP-CL +O-ADV-V-O2 +182376 Np-Appos +DetNP +NPofNP +182386 NPofNP +182388 Np-Appos +DetCL +VC-P +182392 NPofNP +182394 NP-CL +Np-Appos +S-VC-P +182398 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +PrepNp +NpAdjp +182406 S2CL +NpaNp +NPofNP +NpAdjp +NPofNP +182412 NP-CL +NPofNP +NpAdjp +DetNP +NpPp +PrepNp +Conj3Np +All-NP +DetNP +182423 DetNP +AdjpNp +NpaNp +182427 S-V-ADV +CLaCL +V-O +182431 V-ADV +PrepNp +DetNP +NPofNP +182436 Conj-CL +S-V +DetCL +V-ADV +PrepNp +NpAdjp +182443 Conj-CL +ClCl +S-V-O +All-NP +DetNP +V-O +sub-CL +CLaCL +S-ADV-V +PrepNp +182454 V-O +182456 Conj-CL +182458 V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +ClCl +P-S +DetAdj +sub-CL +P-VC-S +DetNP +NPofNP +DetNP +182474 DetCL +V-ADV +sub-CL +V2CL +182480 DetCL +V-ADV +sub-CL +V2CL +182485 ClCl +P-VC +CLaCL +sub-CL +V-O-S +DetNP +182492 sub-CL +Conj3CL +V-O +182496 V2CL +182498 V-O-ADV-ADV +DetNP +NPofNP +sub-CL +O2CL +PrepNp +DetNP +NPofNP +DetNP +182508 ClCl +CLaCL +V-ADV +PrepNp +Demo-NP +DetNP +182515 V2CL +sub-CL +182518 DetNP +NPofNP +PrepNp +DetNP +182523 Conj-CL +ADV-V-IO-S +PrepNp +DetNP +DetNP +DetNP +NPofNP +182531 Conj-CL +182533 Np-Appos +DetAdj +sub-CL +V-O +DetNP +NPofNP +182541 Np2CL +DetCL +V-ADV +sub-CL +V2CL +182547 ClCl +182549 Np2CL +DetCL +V-ADV +sub-CL +CLaCL +V2CL +182556 V2CL +182558 ClCl +182560 Intj2CL +ADV-O-V-S +All-NP +DetNP +sub-CL +ADV-V-IO-S +PrepNp +DetNP +DetNP +DetNP +NPofNP +182572 Conj-CL +182574 Np-Appos +DetCL +V2CL +ClClClCl +V-O +DetNP +NPofNP +ADV-V-IO +DetCL +V-O +V-O +DetCL +V-O +V-ADV +PrepNp +DetCL +V-O +182592 CLaCL +IO-V-O +DetCL +V-O-ADV +PrepNp +DetNP +AdvpNp +DetAdj +182601 ADV-O-ADV-V +PrepNp +DetCL +V-O +ofNPNP +DetNP +AdvpNp +DetNP +182610 CLaCL +IO-V +All-NP +V-O +182615 ADV-ADV-V +PrepNp +DetCL +V-O +DetAdj +182621 Conj-CL +182623 sub-CL +182625 that-VP +V-IO-S +DetNP +182629 Conj-CL +ClCl +182632 sub-CL +V-O +DetCL +V-O +AdjpNp +sub-CL +S-O-V +AdvpNp +DetAdj +DetCL +V-O +182644 Conj-CL +ClCl +182647 sub-CL +ADV-V-O +DetCL +V-O +AdjpNp +S-O-V +AdvpNp +DetAdj +DetNP +182657 Conj-CL +ClCl +ClCl2 +sub-CL +V-ADV +PrepNp +ADV-V-O +V2CL +S-P-VC +AdjpNp +ClCl +S-IO-V +AdvpNp +sub-CL +V-O +DetAdj +182674 sub-CL +CLaCL +CLaCL +V-O +DetNP +NPofNP +182681 V2CL +182683 V-ADV +O-V +182686 Conj-CL +182688 VC-S-P +DetNP +NPofNP +182692 VC-P +NPofNP +sub-CL +S-P-VC-ADV +PrepNp +DetAdj +AdjpaAdjp +182702 sub-CL +S-P-VC +DetNP +NPofNP +182707 Conj-CL +CLaCL +ADV-V +182711 ADV-V +2Advp_h1 +182714 Conj-CL +CLaCL +ADV-V +182718 ADV-V +2Advp_h1 +182721 CLaCL +V2CL +182724 V2CL +182726 CLaCL +V2CL +182729 V-IO +182731 O-V-ADV +NpAdjp +NpAdjp +ClClCl +V2CL +V2CL +V2CL +PrepNp +DetNP +NPofNP +182742 Conj-CL +S-V-IO +ADV-V +PronNP +182747 Conj-CL +V-O-IO +AdvpNp +182751 PtclCL +V-S-O +O-V +182755 PtclCL +S-ADV-V +PrepNp +182759 CLaCL +ADV-VC-S-P +PrepNp +DetNP +182764 S-VC-P +NP-all +V2CL +PrepNp +DetNP +NPofNP +182771 Conj-CL +CLaCL +ADV-V-O +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +182783 O-ADV-V +Np-Appos +DetNP +NpPp +PrepNp +DetNP +AdjpNp +182793 DetNP +NPofNP +182796 Np2CL +V-O +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +S-O-ADV-V +DetNP +PpNp2Np +PrepNp +DetNP +NPofNP +182812 Np2CL +V-ADV-O-ADV +DetNP +PrepNp +DetNP +NPofNP +182819 ADV-V-ADV +O-V +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +182830 Conj-CL +CLaCL +ADV-V-S-O +BeVerb +NpAdjp +NpAdjp +182837 ADV-S-V-O +NpAdjp +NpAdjp +182841 Conj-CL +S-ADV-V +AdjpNp +PrepNp +DetNP +AdjpNp +182848 Conj-CL +CLaCL +ADV-ADV-V-O +PrepNp +182853 ADV-O-V +PrepNp +182856 ClCl +CLaCL +S-ADV-V-O +DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +DetAdj +182868 S-ADV-V-O +DetAdj +PrepNp +DetAdj +DetAdj +sub-CL +ADV-V-S +PrepNp +NPofNP +DetNP +NPofNP +182880 Conj-CL +CLaCL +ADV-O-V-O2 +ClCl +Np2CL +Np2CL +182887 ADV-V-O +O-V +182891 Np2CL +All-NP +DetCL +Conj3CL +V-ADV +PrepNp +182898 V-O +ofNPNP +DetNP +182902 V-O +ADV-VC-P +182905 P-VC-ADV +NP-CL +NpAdjp +V-O +Conj3CL +S-V +182912 V2CL +182914 V-O-ADV +PrepNp +DetNP +182918 Conj-CL +CLaCL +ClCl2 +S-V +V-S-O +DetNP +NP-Demo +DetNP +182927 ADV-V-O-ADV +V-O +PrepNp +DetCL +ADV-V-S +182933 Conj-CL +182935 DetCL +CLaCL +V2CL +182939 ADV-V +NpAdjp +V-O-ADV-ADV +PrepNp +DetNP +PrepNp +Conj3CL +O-V-S +DetNP +182949 ADV-V +182951 VC-S-P +DetNP +NPofNP +NP-Demo +DetNP +182957 ClCl2 +sub-CL +V-O-ADV +All-NP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +V-ADV +PrepNp +182970 Conj-CL +182972 ofNPNP +NpAdjp +ADV-V +V2CL +S-VC-ADV-P +182978 Conj-CL +ADV-V-ADV-O-ADV +V-ADV +PrepNp +DetNP +PrepNp +NPofNP +DetAdj +182987 sub-CL +ADV-V-O +V2CL +DetNP +NPofNP +182993 Conj-CL +S-ADV-V-O-ADV-ADV +V-ADV +PrepNp +DetNP +182999 that-VP +ClCl +P-VC-S +IO-V-O +sub-CL +CLaCL +V-O +DetNP +NPofNP +183009 O-S-V-IO +DetNP +183012 Conj-CL +S-V-ADV +DetNP +PrepNp +183017 Conj-CL +ClCl2 +ADV-S-ADV-V-ADV +2Advp_h1 +PrepNp +DetNP +V-O-S-ADV +DetNP +183027 Np2CL +ADV-V +sub-CL +183031 that-VP +ADV-V +PrepNp +DetNP +NPofNP +183037 Conj-CL +ADV-O-V-ADV +ADV-V +PrepNp +183042 Conj-CL +CLaCL +V-ADV +183046 V-S +DetNP +NPofNP +183050 Conj-CL +CLaCL +S-VC-P +AdvpNp +NpAdjp +ClCl +ADV-V +PrepNp +V-ADV-O +PrepNp +183061 Conj3CL +CLaCL +183064 V2CL +183066 V2CL +183068 CLaCL +ClCl +IO2CL +V2CL +183073 V2CL +183075 CLaCL +ClCl +IO2CL +DetNP +NPofNP +V-O +183082 V2CL +183084 Conj-CL +CLaCL +ADV-S-V-O +V-O +DetNP +183091 V2CL +DetNP +AdjpNp +V-O +183096 ADV-ADV-O-V +PrepNp +DetNP +AdjpNp +183101 Conj-CL +ADV-S-V-O +V-ADV +PrepNp +DetNP +DetCL +V2CL +S-V +DetNP +183111 Conj-CL +ClCl2 +V-ADV +PrepNp +DetNP +CLaCL +V-ADV +PrepNp +NpAdjp +VC-P +183122 V-ADV-S +NpaNp +DetNP +NPofNP +183127 NpAdjp +183129 Conj-CL +CLandCL2 +sub-CL +V-ADV +DetNP +NPofNP +DetNP +183138 CLaCL +V-S +AdjpNp +V2CL +AdjpNp +NpAdvp +DetNP +NPofNP +183147 S-VC-P +183149 S-VC-P +NpAdjp +NPofNP +DetNP +PrepNp +183155 Conj-CL +CLaCL +ADV-S-V-ADV +V-O +DetNP +PrepNp +183163 ADV-V +183165 Conj-CL +CLaCL +CLaCL +ADV-V-O +V2CL +DetNP +183172 S-V +DetCL +V2CL +183178 Np2CL +V2CL +183181 Conj-CL +CLaCL +CLaCL +V-S +DetAdj +183187 V-O +V2CL +183190 V-O-IO +DetNP +NPofNP +183194 Conj-CL +CLaCL +V-S-O +183198 V-O-ADV +DetNP +183201 CLaCL +that-VP +S-V-ADV +NpAdjp +PrepNp +183207 that-VP +V-S-O +DetNP +DetNP +NPofNP +183213 Conj-CL +V-S-ADV +NpPp +NP-Demo +DetNP +PrepNp +PrepNp +NpaNp +All-NP +DetNP +183224 All-NP +DetAdj +183227 Conj-CL +V-IO-S-ADV +DetNP +NPofNP +PrepNp +All-NP +183234 Conj-CL +ADV-S-V-ADV-ADV +V-O +NPofNP +NumpNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +183245 CLaCL +S-VC-P +DetCL +V2CL +183250 O-V +183252 Conj-CL +183254 V-ADV +PrepNp +DetNP +S-V-O-ADV-ADV +Np-Appos +DetNP +PrepNp +183262 CLaCL +S-VC-P +DetCL +V2CL +183267 O-V +183269 CLaCL +ADV-V-O-ADV +PrepNp +Demo-NP +DetNP +PrepNp +Conj3Np +183278 NpAdjp +183280 IO-V-O +NpAdjp +V2CL +183284 Conj-CL +183286 V2CL +ADV-V-IO-O +V2CL +O-V +Conj2VP +183293 CLaCL +ClClCl +S-V +S-V +S-V +183299 ClClCl +S-V +S-V +S-V +183304 Conj-CL +P-VC-S +PtclCL +S-ADV-V-ADV +PrepNp +183310 Conj-CL +183312 V-S +DetNP +NPofNP +183316 PrepNp +DetNP +PrepNp +ClCl +ADV-V-ADV +O-V +PrepNp +DetAdj +O2CL +NpAdjp +ADV-V +PrepNp +183329 Conj-CL +183331 O-V +O2CL +NpAdjp +ADV-V +PrepNp +AdjpNp +183339 DetNP +NpaNp +PrepNp +NpAdjp +183344 ADV-V +PrepNp +DetAdj +183348 Conj-CL +183350 O-V +O2CL +183354 Intj2CL +ClCl +Conj-CL +O2CL +AdjpAdvp +S-VC-P +183361 ADV-V +PrepNp +DetNP +NPofNP +PrepNp +NPofNP +S-V-O-ADV +DetNP +NPofNP +PrepNp +183373 P-ADV-ADV-S-VC +PrepNp +NPofNP +183377 Conj-CL +S-P-ADV-VC +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +183386 Conj-CL +S-ADV-V-O-ADV +NpaNp +All-NP +DetNP +183392 DetNP +V2CL +DetNP +V-ADV +DetNP +NPofNP +183399 Conj-CL +S-O-V-ADV-ADV +NpaNp +DetNP +183404 DetAdj +DetNP +NPofNP +DetNP +PrepNp +ADV-V-ADV +PrepNp +183412 Conj-CL +CLaCL +ADV-V-O +DetNP +NPofNP +NP-Demo +DetNP +183420 ADV-VC-P +183422 P-VC-ADV +NP-CL +Np-Appos +DetCL +CLaCL +ADV-V +PrepNp +183430 V-IO +183432 S-V +CLaCL +V-IO +183436 ADV-V +CLaCL +V2CL +183440 ADV-V +183442 Conj-CL +CLaCL +V-S-ADV +Np-Appos +DetNP +CLaCL +ADV-V-O +183450 V-O +183453 O-V +183455 CLaCL +V-S-ADV +DetNP +NPofNP +DetNP +CLaCL +V2CL +183463 V2CL +183466 ClCl +V2CL +P2CL +2Np +Np-Appos +NpaNp +183473 NPofNP +NpaNp +183477 Conj-CL +V-S-ADV +DetNP +PrepNp +All-NP +DetNP +NPofNP +183485 Conj-CL +183487 NPofNP +DetNP +that-VP +V-ADV +PrepNp +183493 Conj-CL +ADV-V +V-ADV +PrepNp +DetNP +NPofNP +DetNP +183501 Conj-CL +CLaCL +183504 V2CL +NP-CL +S-VC-ADV-P +PrepNp +DetNP +183510 Conj4CL +ADV-ADV-V-O +183513 that-VP +V-ADV +PrepNp +DetNP +NPofNP +DetNP +CLaCL +V-O +NPofNP +183523 V-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +V2CL +ADV-V-O +DetNP +DetNP +NPofNP +183533 ADV-V +DetNP +NPofNP +DetNP +NPofNP +183539 V-O +DetNP +NPofNP +183543 V-ADV +DetNP +183546 Conj-CL +ADV-S-V-ADV-ADV +V2CL +Np-Appos +DetNP +DetCL +V-O +PrepNp +183555 ClCl +ClCl2 +sub-CL +S-VC-P +PtclCL +183561 P-S +NpaNp +183564 DetNP +NP-CL +S-V-O +sub-CL +P-VC +183570 Conj-CL +183572 V2CL +DetNP +PrepNp +183576 Np2CL +IO-O-V +183579 Conj-CL +ClCl +S2CL +183583 Np2CL +183586 ClCl +ClCl +183589 NumpNP +NpAdjp +CLaCL +S-V-O +DetAdj +NpAdjp +183596 S-O +DetAdj +ClCl2 +ADV-V-S-O +V2CL +IO-V +Conj-CL +S-ADV-V-O +NPofNP +183607 V2CL +183609 that-VP +IO-O-V +DetAdj +183613 Conj-CL +183615 ADV-V +183617 Conj-CL +183619 V-ADV +PrepNp +DetNP +DetNP +V-O +Demo-NP +DetNP +183627 ClCl2 +V-ADV +PrepNp +ofNPNP +DetNP +CLaCL +O-IO-ADV-ADV-V +PrepNp +183636 CLaCL +S-ADV-V-O +DetNP +ofNPNP +DetNP +183642 ADV-V +DetNP +NPofNP +183646 CLaCL +O-IO-ADV-V +183649 S-ADV-ADV-V-O +PrepNp +ADV-V +V-O +ofNPNP +DetNP +183656 CLaCL +ADV-O-ADV-V +DetNP +NPofNP +183661 S-ADV-V-O +DetNP +NPofNP +183666 ADV-V-IO +NP-Prep +V-S +DetNP +NPDetAdj +NPofNP +DetAdj +sub-CL +V-ADV +183676 Conj-CL +S-ADV-V +IO-S-V +183680 Conj-CL +183682 V-S +ofNPNP +DetNP +183686 Conj-CL +V-S-O +DetCL +V2CL +183691 PrepNp +183693 S-O-V +AdvpNp +183696 Conj-CL +183698 PrepNp +DetNP +183701 DetNP +NPofNP +V-ADV +PrepNp +183706 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetNP +183712 CLaCL +S-V-ADV-ADV +PrepNp +NpaNp +183717 V-O +Conj2VP +183720 DetNP +NPofNP +DetNP +183724 P-S +PrepNp +Conj3Np +DetNump +183729 Np-Appos +NP-CL +NpAdjp +S-V-ADV +BeVerb +PrepNp +NpaNp +NpAdjp +183738 Conj3Np +NP-CL +Np-Appos +DetCL +VC-P +ADV-S-V +PrepNp +NpNump +183747 Np-Appos +NPofNP +Np-Appos +NPofNP +183753 NP-CL +NpAdjp +S-V-O-ADV +PrepNp +DetCL +V-ADV +183760 Conj-CL +ClCl2 +CLaCL +V-S +NpAdjp +183766 S-V-ADV +NpPp +PrepNp +PrepNp +183771 PrepNp +V-S-ADV +DetCL +V2CL +DetCL +V-O +DetNP +NPofNP +183780 Conj-CL +Conj3CL +ADV-S-ADV-V-ADV +PrepNp +DetCL +V-S +PrepNp +DetNP +183789 V2CL +183791 S-V-O +DetNP +NPofNP +DetNP +183796 Conj-CL +CLaCL +S-V-ADV +PrepNp +DetNP +183802 ADV-V-ADV +V2CL +PrepNp +DetCL +ADV-V-O +183808 Conj-CL +CLaCL +S-V-ADV +PrepNp +NPofNP +DetNP +183815 ADV-S-V-O +V2CL +DetNP +183819 Conj-CL +CLaCL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +183827 ADV-V-O +V2CL +NpAdjp +183832 O-V +S-V +DetCL +V-O-ADV +V2CL +183838 Conj-CL +183840 DetNP +NPofNP +P-VC-S +Demo-NP +DetNP +183846 Conj-CL +183848 CLaCL +IO-V-S +V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +183858 DetAdj +PrepNp +sub-CL +CLaCL +ADV-ADV-V +V2CL +183865 ADV-ADV-V +V2CL +183868 Conj-CL +VC-P-S +DetNP +183872 S-VC-P +DetNP +DetNP +NPofNP +DetNP +183878 Conj-CL +ClCl +S-VC-P +NpPp +PrepNp +DetNP +DetCL +V2CL +ClCl +CLaCL +ADV-V-S +DetAdj +183891 V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +sub-CL +ADV-ADV-V +V2CL +183900 Conj-CL +CLaCL +S-P +NpPp +PrepNp +DetNP +S-ADV-ADV-V-O +sub-CL +V2CL +PrepNp +DetNP +183913 S-O-ADV-V +S-ADV-V +PrepNp +183917 ADV-V +PrepNp +NPofNP +183921 Conj-CL +Conj3CL +183924 Np2CL +DetCL +ADV-V +PrepNp +DetNP +DetCL +V2CL +183932 ADV-ADV-V +PrepNp +Conj3Np +183937 NPofNP +DetNP +V2CL +183941 ADV-V +183943 Conj-CL +183945 Np2CL +NpPp +PrepNp +DetNP +AdjpNp +CLaCL +S-ADV-V +ADV-V-O +PrepNp +NpAdjp +AdjpaAdjp +183957 DetNP +183959 V-ADV +PrepNp +183962 Conj-CL +CLaCL +CLaCL +S-ADV-V-O-ADV +O-V +183968 ADV-V +PrepNp +183972 PrepNp +sub-CL +S-V-O +DetCL +V2CL +DetNP +183979 Conj-CL +CLaCL +P-VC-S +NP-CL +S-ADV-P-VC +183985 S2CL +NP-CL +CLaCL +S-ADV-V +2Advp_h1 +183991 ADV-V +PrepNp +183994 Conj-CL +V-O +ADV-V +183998 Conj-CL +CLaCL +ClCl2 +PtclCL +S-V +V-IO +184006 PtclCL +S-ADV-V +AdvpNp +O-V +O-V +PrepNp +184013 Conj-CL +CLaCL +V-ADV-S +PrepNp +NpaNp +DetNP +184020 DetNP +NPofNP +184023 ADV-V-O-ADV +V-O +PrepNp +DetNP +184028 Conj-CL +184030 S-V-ADV-ADV +NpaNp +DetNP +NPofNP +184035 DetNP +NPofNP +O-V +V-O +184040 Conj-CL +184042 V2CL +PrepNp +184045 Np2CL +NpaNp +NPofNP +184049 NPofNP +DetCL +O-V +DetNP +NPofNP +DetNP +Conj2VP +184058 Conj-CL +CLandCL2 +V-ADV +PrepNp +NPofNP +DetNP +184065 CLaCL +CLaCL +S-V-ADV +PrepNp +184070 S2CL +DetNP +NPofNP +184075 PrepNp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +184082 Conj-CL +V2CL +184085 Conj-CL +ClCl2 +V-S +V2CL +184090 Conj-CL +CLaCL +V-S-ADV +NPofNP +PrepNp +DetNP +184097 CLaCL +V2CL +184100 V2CL +184102 Conj-CL +ADV-V-O-ADV +V2CL +184106 ClCl2 +ClCl +Np2CL +Np2CL +V2CL +184112 Conj-CL +S-ADV-V-O +V2CL +NpaNp +DetNP +184118 DetNP +NPofNP +DetNP +184122 Conj-CL +CLaCL +V2CL +184126 V-S +184128 Conj-CL +184130 P-S +DetNP +NPofNP +184134 Conj-CL +ADV-V-ADV +V2CL +184138 PrepNp +Conj-CL +ClCl +P-S-VC +sub-CL +CLaCL +IO-V +aNpaNp +184147 DetNP +184149 DetNP +184151 V-O +184153 Conj-CL +V-ADV +PrepNp +DetNP +NP-CL +NPofNP +DetNP +S-VC-P +PrepNp +DetNP +184164 Conj-CL +O-ADV-V-S +V-ADV +PrepNp +DetNP +NpAdjp +NpPp +NpAdjp +PrepNp +DetNP +V-O +184176 Conj-CL +CLaCL +ADV-ADV-V-O +NpAdjp +184181 CLaCL +ADV-ADV-V +PrepNp +184185 ADV2CL +PrepNp +DetNP +184189 Conj-CL +CLaCL +ADV-ADV-V-ADV +V-O +DetNP +V2CL +184197 NpAdjp +ClCl +184200 NpaNp +184202 Np2CL +Np-Appos +NPofNP +Np-Appos +DetNP +DetNP +184209 ADV-O-V +184211 Conj-CL +V-IO-O +DetNP +NPDetAdj +DetAdj +V-ADV +PrepNp +DetNP +184220 Conj-CL +Conj3CL +ADV-V-O +AdjpNp +184225 V-ADV-ADV +NpaNp +184228 V2CL +184230 ADV-V-ADV-ADV +V-O +DetNP +PrepNp +DetNP +PrepNp +DetAdj +184238 Conj-CL +184240 DetNP +P-ADV-S-VC +184243 Conj-CL +ClCl +184246 P2CL +sub-CL +V-S-ADV +NpAdjp +PrepNp +184252 Conj-CL +184254 that-VP +ADV-V-IO-O +ADV-V +PrepNp +DetNP +184260 Conj-CL +VC-P-S +NpAdjp +NPofNP +NpAdjp +V-ADV +PrepNp +DetNP +184269 Conj-CL +184271 that-VP +V-IO-O +ADV-V +PrepNp +184276 Conj-CL +V-IO +184279 Conj-CL +CLaCL +S-ADV-V-ADV +DetNP +V-ADV +PrepNp +DetNP +PrepNp +DetNP +184289 CLaCL +V-S-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +184297 V2CL +184299 Conj-CL +CLaCL +S-ADV-V +DetCL +V2CL +V-O +DetCL +V2CL +184308 V-ADV +Conj2Pp +PrepNp +DetNP +184313 PrepNp +DetNP +184316 Conj-CL +CLaCL +Conj3CL +V-ADV +V-O +DetCL +V2CL +184324 V-ADV +PrepNp +DetNP +184328 V-O +V-S-ADV-ADV +NP-CL +DetNP +ADV-S-V +PrepNp +DetNP +CLaCL +V2CL +184338 V2CL +PrepNp +DetNP +NPofNP +DetNP +184344 V2CL +184346 Conj-CL +184348 DetCL +V2CL +ADV-V-S +DetCL +V2CL +184354 Conj-CL +184356 AdjpNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +S-V-ADV +PrepNp +sub-CL +ADV-V +NpAdjp +184368 Conj-CL +S-ADV-V +V-ADV +PrepNp +184373 Conj-CL +V-O-S-O2 +DetNP +NP-CL +ADV-V-S +PrepNp +DetNP +VC-P +PrepNp +184383 Conj-CL +V-O-ADV +184386 CLaCL +V-ADV +PrepNp +DetNP +NPofNP +184392 V-O +O-IO-V-S +DetNP +184396 Conj-CL +V-ADV +ADV-V-O +PrepNp +All-NP +DetNP +O-V-IO-S +DetNP +184405 Conj-CL +ClCl +ADV-V-O-S +PrepNp +DetCL +V-S +DetNP +DetNP +sub-CL +S-V-O +BeVerb +184417 Conj-CL +184419 V-S +NP-CL +ADV-S-P +184423 S-P-VC +NPofNP +DetNP +184428 V-ADV +PrepNp +DetNP +NPofNP +S-V-ADV +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +S-VC-P +NPofNP +NpAdjp +AdvpNp +NpNump +184444 S-V +184446 Conj-CL +ADV-S-V-O +PrepNp +DetCL +V-S +DetNP +184453 Conj-CL +CLaCL +S-ADV-V-O +NP-CL +NpAdjp +VC-P-ADV +PrepNp +NPofNP +PrepNp +NpNump +S-ADV-V-O +ADV-V +PrepNp +V-ADV +DetNP +NPofNP +DetNP +NPofNP +184472 ADV-V-S +DetNP +NPofNP +DetNP +NPofNP +184478 Conj-CL +184480 DetNP +P-S +DetCL +V-O +184485 Conj-CL +184487 V-S +DetNP +184490 Np2CL +S-V-O +DetNP +184494 V2CL +184496 Conj-CL +184498 DetNP +ClCl +V-O-S +sub-CL +S-V-O +S-V-ADV +PrepNp +184506 Conj-CL +CLaCL +S-ADV-ADV-V +DetNP +184511 V2CL +ADV-V +V2CL +184515 CLaCL +ADV-O-V-ADV +V-ADV +ADV-V-O +PrepNp +PronNP +PrepNp +All-NP +DetNP +184525 ADV-V-ADV +184527 Conj-CL +184530 Np2CL +DetNP +NPofNP +V-ADV +PrepNp +184537 ADV-S-V +PrepNp +DetNP +184541 that-VP +ClCl +V-S +DetNP +NPofNP +ADV-V-O +DetNP +184549 Conj-CL +184551 DetNP +V2CL +ClCl +ADV-V +CLaCL +ADV-V +184558 V2CL +184560 Conj-CL +184562 V-ADV +PrepNp +DetNP +V-S-ADV +PrepNp +sub-CL +ADV-O +Conj5Np +184573 DetNP +NPofNP +DetNP +184577 DetNP +184579 Conj-CL +S-V-O +Conj2VP +184584 Conj-CL +184586 ClCl +ADV-V +notCLbutCL2CL +V2CL +V2CL +184592 Conj-CL +V-O-ADV +184595 that-VP +V2CL +184598 Conj-CL +S-ADV-V-ADV +V-O +DetNP +NPofNP +184605 Np2CL +DetNP +184608 Conj-CL +CLaCL +CLaCL +V-S +DetNP +NPofNP +184615 V-ADV +184617 V-O +IO-V-S +V2CL +184621 Conj-CL +V-S +DetNP +NPofNP +184626 Conj-CL +S-V-IO-O +IO-V-O +DetCL +V2CL +184632 Conj-CL +CLaCL +ADV-V-IO-O-ADV +V-O +DetNump +NpaNp +184639 ADVaADV +PrepNp +All-NP +DetNP +184644 O-V +184646 V-O-ADV +CLaCL +V-O +DetNP +NPofNP +DetNP +184653 V2CL +184655 Conj-CL +184657 PrepNp +CLaCL +CLaCL +184661 PrepNp +DetNP +EitherOr4CL +184665 O2CL +184667 O2CL +184669 O2CL +184671 O2CL +184673 ADV-V +PrepNp +NumpNP +184677 CLaCL +ClCl2 +PtclCL +ADV-V +PrepNp +PronNP +CLaCL +ADV-V +184686 ADV-V +184688 ClCl2 +PtclCL +S-ADV-V-O +ADV-O-ADV-V-ADV +V-ADV +PrepNp +NP-Demo +DetNP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +NpPp +PrepNp +184704 Conj-CL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +V-ADV +Conj2VP +184713 Conj-CL +CLaCL +V-S-O +Np-Appos +DetNP +NP-all +DetCL +V2CL +184722 V-ADV +PrepNp +DetCL +Conj3CL +184727 PrepNp +that-VP +S-V-ADV +PrepNp +184733 PrepNp +that-VP +S-V +184738 that-VP +S-V +Np-Appos +NPofNP +DetAdj +184744 Conj-CL +184746 CLaCL +O-S-V +184749 P-VC-S +NP-CL +ADV-V-O +PrepNp +184754 Conj-CL +V-O +V-O +184758 Conj-CL +ADV-S-V-IO-O +V2CL +DetNP +O-V +184764 Conj-CL +ADV-V-ADV-ADV +V-O +PrepNp +PrepNp +NpAdjp +VC-P +184772 Conj-CL +S-ADV-V-O +DetNP +V2CL +184777 Conj-CL +CLaCL +ADV-V-IO-ADV +V-O +PrepNp +DetNP +NPofNP +DetNP +184786 O-V +DetCL +O-V +NPofNP +184791 Conj-CL +S-V-O +DetNP +V2CL +184796 Conj-CL +184798 V2CL +DetNump +ClCl +184802 DetNP +sub-CL +CLaCL +ADV-V +V-ADV +PrepNp +DetNP +AdvpNp +NpaNp +184813 V-O +sub-CL +ADV-P-VC +PrepNp +AdjpNp +184819 Conj-CL +184821 PrepNp +V-IO-O-S +V2CL +184825 Conj-CL +184827 ClCl +CLaCL +ADV-VC-P-S +184831 S2CL +NpaNp +NpNump +184835 NpNump +sub-CL +PtclCL +ADV-S-V-ADV-O +V2CL +PrepNp +NP-Demo +All-NP +DetNP +184845 Conj-CL +VC-P-S +AdvpAdjp +184849 Conj-CL +184851 PrepNp +DetNP +NPofNP +V-O-ADV +NpPp +AdvPp +PrepNp +184859 Conj-CL +CLaCL +V-ADV +184863 V-O +184865 Conj-CL +Conj3CL +ADV-ADV-V-O +V-O +NpaNp +DetNP +NumpNP +184873 DetNP +NumpNP +V-ADV +PrepNp +DetNP +184879 V2CL +184881 V-IO-ADV +DetNP +V-IO +DetNP +184886 Conj-CL +CLaCL +CLaCL +V2CL +184891 V-S +184893 V-S +Np-Appos +DetCL +V-ADV +ofNPNP +NpNump +184900 Conj-CL +184902 V-ADV +PrepNp +DetCL +V-S-ADV +BeVerb +PrepNp +V-ADV-S +DetNP +184911 V-O-ADV +184913 O-S-V +P-S-VC +DetNP +184917 Conj-CL +184919 V2CL +Conj3CL +O2CL +Np-Appos +DetNP +184925 S-O +184928 that-VP +S-V +NPofNP +NpAdjp +DetAdj +184934 Conj-CL +184936 Conj-CL +S-O-V +P-S-VC +184940 Conj-CL +184942 V2CL +P2CL +DetNP +NPofNP +DetNP +184948 Conj-CL +S-ADV-V-O-ADV +V-O +IO-V-O +184953 that-VP +V-S +Conj4CL +S-O-V +DetNP +NPofNP +DetNP +184961 V-ADV +PrepNp +DetNP +Conj3Np +184968 V2CL +184970 ADV-V +DetNP +AdjpNp +184974 Conj-CL +184976 PrepNp +ClCl2 +sub-CL +S-V-O +ADV-V +PrepNp +Conj3CL +V-O +184985 V-O-ADV +DetNP +NPofNP +PrepNp +184990 V-O +184992 Conj-CL +S-V-O +PtclCL +S-V-O +O-V +DetNP +NPofNP +185000 Conj-CL +185002 PtclCL +S-V-O-ADV +DetNP +NPofNP +PrepNp +185008 Conj-CL +O-V-S-ADV +CLaCL +V-O +DetNP +NP-all +185015 O-V +Conj2VP +185019 Conj-CL +ClCl2 +PtclCL +S-V-O +NpaNp +185025 DetNP +AdjpNp +ClCl +O-S-V +DetNP +NPofNP +DetNP +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +Conj3Np +185039 DetNP +185041 DetNP +AdjpNp +185044 Conj-CL +185046 V-S +NP-CL +NPofNP +DetCL +ADV-V +185052 S-ADV-V-O +2Advp_h1 +PtclCL +V-O +DetNP +NPofNP +DetNP +185060 Conj-CL +CLandCL2 +V-ADV-ADV +PrepNp +NP-Demo +DetNP +AdvpNp +NpNump +185069 ADV-V-ADV-ADV +V-O +Conj3Np +185074 PrepNp +DetNP +V2CL +185078 Conj-CL +185080 V-ADV +PrepNp +DetCL +V-S +S-P +DetNP +NPofNP +DetNP +NPofNP +185090 S-P-ADV +DetNP +NPofNP +V2CL +185095 Conj-CL +185097 NpNump +S-VC-P +NpaNp +185101 S-ADV-V-O +V-ADV +PrepNp +NP-CL +DetNP +NPofNP +O-V +O-V-ADV +PrepNp +185111 Conj-CL +S-V-ADV +NpaNp +DetNP +185116 NpPp +PrepNp +BeVerb +185120 Conj-CL +ADV-V-O +V2CL +NpaNp +DetNP +NPofNP +185127 Np-Appos +DetNP +NumpNP +DetCL +V-ADV +185133 Conj-CL +ClCl2 +V-ADV +PrepNp +DetCL +V-S-ADV +PrepNp +V-S-ADV-O-ADV +DetNP +PrepNp +DetNP +185145 Np2CL +P-VC-S +S-P-VC +185149 ClCl +V-O +NpAdjp +Conj3CL +O-IO +185155 O-IO +185157 O-IO +ADV-V-O +O-V +185161 Conj-CL +185163 O-S-V +V-S +185166 V-O +185168 Conj-CL +V-ADV +PrepNp +DetCL +V-S-ADV +PrepNp +DetNP +185176 Conj-CL +S-V-ADV-ADV +PrepNp +DetNP +185182 Np-Appos +DetNP +NPofNP +DetCL +V2CL +O-V +185189 Conj-CL +ADV-V-S-O +PrepNp +DetCL +V-S +DetNP +185196 Conj-CL +CLaCL +S-V +185200 IO-V-ADV-O +PrepNp +Demo-NP +DetNP +NPofNP +O-V +185207 Conj-CL +ClCl2 +V-ADV +DetNP +AdvpNp +ClCl2 +V-S-ADV +PrepNp +DetNP +V-O-S +NpAdjp +185219 Conj-CL +185221 NpPp +PrepNp +DetNP +185226 Np2CL +185228 V-ADV +PrepNp +DetNP +NPofNP +sub-CL +P-ADV-VC +185236 S-V-O +185238 ADV-V +185240 V-O-ADV +PrepNp +185243 ADV-V-ADV-ADV +PrepNp +V-O +185247 Conj-CL +CLaCL +185250 DetNP +NPofNP +that-VP +V-O +185255 ADV-V +185257 Conj-CL +185259 V2CL +DetNP +ClCl +185263 Np2CL +intjNP +NpAdjp +AdjpaAdjp +185268 V2CL +ADV-VC-P +PrepNp +PrepNp +185273 V-O +V-ADV-O +DetNP +NPofNP +185278 Conj-CL +ClCl2 +ADV-V-S +CLaCL +V-O-S +DetNP +185285 V2CL +185287 Conj-CL +Conj3CL +V-S-O +DetNP +DetNP +NPDetAdj +DetAdj +185295 V-O +DetNP +185298 V-O-IO +DetNP +NPofNP +185302 Conj-CL +V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +185309 Conj-CL +ClCl2 +S-V-ADV +PrepNp +All-NP +O-V +185316 PrepNp +DetNP +NPofNP +185320 PrepNp +DetNP +NPofNP +NP-Demo +DetNP +sub-CL +S-V-O +DetNP +NPofNP +DetNP +V-ADV +PrepNp +NPofNP +185334 Conj-CL +CLaCL +CLaCL +S-V-O +NP-Demo +DetNP +185342 BeVerb +PrepNp +sub-CL +ADV-V-O +185347 V-O +V-O-ADV +PrepNp +NP-Demo +DetNP +185353 Conj-CL +V-ADV-S +PrepNp +Np-Appos +DetCL +PtclCL +S-VC-P +NPofNP +185362 Conj-CL +CLaCL +S-ADV-ADV-V-O-ADV +DetNP +V-O +DetNP +NPofNP +DetNP +NPofNP +V-O +PrepNp +185376 CLaCL +S-O-V +PtclCL +S-V-O-ADV +Demo-NP +DetNP +PrepNp +DetNP +NPofNP +185386 S-V-O +PtclCL +S-O-V +DetCL +V-O +185392 Np2CL +DetCL +P-ADV-VC +PrepNp +All-NP +185398 Conj-CL +185400 V2CL +DetNP +185403 Np2CL +CLaCL +V-O +S-ADV-V-O +PrepNp +DetNP +NPofNP +185411 V-O +sub-CL +ADV-V-ADV +PrepNp +185416 Conj-CL +185418 PrepNp +ClCl +ADV-V +sub-CL +S-P-VC +S-ADV-VC-P +PrepNp +PrepNp +185427 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +V-S +DetNP +NPofNP +DetNP +NPofNP +185438 CLaCL +S-O-V-ADV +DetNP +DetCL +V-ADV +PrepNp +185445 V-O-ADV +PrepNp +NPofNP +185449 Conj-CL +ADV-V-ADV-ADV +V2CL +PrepNp +NPofNP +sub-CL +V-IO +185457 Conj-CL +185459 sub-CL +S-V-ADV +DetNP +NPofNP +BeVerb +PrepNp +185466 Conj-CL +185468 V2CL +Np-Appos +DetNP +NpaNp +185474 Np2CL +V2CL +V-O +CLaCL +S-V-ADV +PrepNp +DetNP +185482 V-O +185484 Conj-CL +ADV-V-O +V2CL +185488 Conj-CL +V-ADV +PrepNp +AdjpNp +185493 Conj-CL +ClCl2 +V-S-ADV +PrepNp +DetNP +185499 PrepNp +V-O-ADV +PtclCL +ADV-V +185504 Conj-CL +185506 DetNP +CLaCL +CLaCL +S-O-V +DetNP +185512 S-O +DetNP +NPofNP +DetNP +185517 S-ADV-V-O +DetNP +NPofNP +DetNP +ADV-O-V +DetNP +185524 Conj-CL +185526 PrepNp +V-O +185529 Conj-CL +185531 V-IO-O +ADV-ADV-V-O +V2CL +DetNP +NPofNP +185537 Conj-CL +185539 CLaCL +V-O +S-V-O +DetAdj +DetNP +ofNPNP +185546 S-ADV-V-O +V2CL +DetNP +NPofNP +DetNP +185552 Conj-CL +185554 AdvpNp +CLaCL +185557 Np2CL +185559 ADV-V-IO-O +V-O +NpPp +PrepNp +DetNP +NPofNP +185566 Conj-CL +185568 PrepNp +DetNP +S-ADV-P-VC-ADV +CLaCL +V-O-ADV +DetNP +PrepNp +185576 V-ADV +PrepNp +DetNP +DetNP +NPofNP +DetNP +185583 Conj-CL +CLaCL +ADV-V-S-O +PrepNp +DetNP +NpNump +185590 V-O-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +PrepNp +NpaNp +All-NP +185598 NP-CL +ADV-V-S-O +V2CL +185602 Conj-CL +185604 PrepNp +aCLaCL +185607 S-P +DetNP +185610 S-P +DetNP +185613 Conj-CL +185615 DetNP +NPofNP +DetNP +sub-CL +O-V-ADV +PrepNp +DetNP +NPofNP +185624 ClCl +V2CL +185627 sub-CL +O-ADV +PrepNp +NPofNP +185632 CLaCL +ClClCl +ADV-V-O +ADV-O +ADV-O +185638 O-ADV-V +PrepNp +DetNP +185642 Conj-CL +ClCl2 +PtclCL +ADV-V +PrepNp +PronNP +185649 S-IO +NP-Demo +DetNP +185653 Conj-CL +185655 sub-CL +P-VC-S +NPofNP +PrepNp +DetNP +NPofNP +185662 Conj-CL +sub-CL +ADV-ADV-V +PrepNp +185667 Conj-CL +ClCl +ADV-V-ADV +PrepNp +PronNP +DetNP +V-O +Conj2VP +185676 NpPp +PrepNp +sub-CL +P-S-ADV +DetNP +DetNP +NPofNP +185684 ADV-V-ADV +2Pp +PrepNp +PrepNp +185689 Conj-CL +ClCl2 +PtclCL +CLaCL +ADV-V +PrepNp +PronNP +185697 V-O +Conj3CL +V-O +DetCL +V-IO +185703 V-O +DetNP +PpNp2Np +PrepNp +185709 V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +185715 Conj-CL +ClCl2 +PtclCL +CLaCL +ADV-V +PrepNp +PronNP +185723 ADV-V-O +185725 V-ADV +PrepNp +DetNP +NPofNP +CLaCL +O-V-IO +AdvpNp +Np-Appos +DetNP +DetCL +V-IO-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +185743 that-VP +V-S +DetNP +NPofNP +DetNP +185750 that-VP +CLaCL +ADV-ADV-P-VC +PrepNp +NP-Demo +DetNP +185757 ADV2CL +NP-Demo +DetNP +185763 Np2CL +185765 Np2CL +sub-CL +185768 sub-CL +ADV-V-S +PrepNp +NpaNp +185773 Np-Appos +DetNP +DetCL +V-ADV +PrepNp +ADV-ADV-V +ADV-V +PrepNp +NpaNp +185784 sub-CL +CLaCL +ADV-P-VC-ADV +NpaNp +185789 PrepNp +DetNP +185792 ADV2CL +185794 Conj-CL +185796 Np2CL +S-ADV-V +PrepNp +185800 ADV-V +PrepNp +DetNP +185804 CLaCL +S-O-V +DetCL +V-O +185809 S-O-V +DetCL +V-O +185813 Conj-CL +S-V-O +DetCL +O-V +DetCL +V-O +185820 Conj-CL +V-S-ADV-ADV +DetNump +PrepNp +185826 Np2CL +AdvpNp +DetNP +PrepNp +DetNP +NPofNP +185833 Conj-CL +185835 V-O +S-ADV-ADV-V +DetNP +sub-CL +S2CL +PrepNp +DetNP +185844 V-IO-O-ADV +DetNP +DetCL +V-ADV +Conj2Pp +PrepNp +NpaNp +185853 PrepNp +All-NP +DetNP +NPofNP +DetAdj +185859 S-O-ADV-V +2Advp_h1 +185862 sub-CL +CLaCL +ClCl +ADV-ADV-V +PrepNp +sub-CL +S-ADV-V +DetNP +185871 ClCl +V2CL +sub-CL +S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +185880 CLaCL +ADV-V-ADV +PrepNp +PronNP +DetNP +DetNP +NPDetAdj +DetAdj +185890 ClCl +ClCl +ClCl +185894 Np2CL +Np-Appos +NPofNP +NpaNp +DetNP +185900 DetNP +sub-CL +CLaCL +V-O-ADV +PrepNp +NpaNp +185908 V-O-IO +ClCl +185911 Np2CL +DetNP +sub-CL +ADV-S-V-ADV +PrepNp +CLaCL +S-IO-V-ADV +PrepNp +DetNP +NPofNP +185922 S-V-O +CLaCL +ClCl +P-VC-S +DetNP +sub-CL +ADV-S +DetNP +185931 ClCl +P-VC-S +DetNP +sub-CL +ADV-S +NpaNp +DetNP +185939 PtclCL +O-V-S +IO-V +DetNP +185944 Conj-CL +185946 V-ADV +PrepNp +DetNP +PrepNp +ClCl +P-S +Np-Appos +DetNP +DetCL +V-O +O-V +sub-CL +185959 that-VP +CLaCL +CLaCL +S-V-O +AdjpNp +NpaNp +185966 V-O +O-S-V +185969 ADV-V +185971 CLaCL +V-O +O-V +185975 ADV-V +185977 Conj-CL +185979 NpAdjp +V-O +185983 Np2CL +O-V +NpAdjp +185987 Conj-CL +185989 PrepNp +185991 PrepNp +DetNP +ADV-V +185995 Conj-CL +185997 V2CL +CLaCL +V-O-ADV +Np-Appos +DetNP +NPofNP +Conj4Pp +PrepNp +All-NP +DetNP +NPofNP +186009 PrepNp +All-NP +DetNP +NPofNP +186014 PrepNp +All-NP +DetNP +NPofNP +186019 PrepNp +All-NP +DetNP +NPofNP +186025 DetNP +NPofNP +sub-CL +O2CL +186030 Conj-CL +186033 CLaCL +O-V +186036 V2CL +186038 Conj-CL +186040 V-O +V-O +PrepNp +DetNP +Conj-CL +S-VC-P +ofNPNP +186049 V2CL +DetNP +CLaCL +S-V-ADV +NpAdjp +2Pp +PrepNp +PrepNp +186059 S-ADV-ADV-V-ADV +CLaCL +V-O +186063 O-V +V-O +186066 Conj-CL +CLaCL +ADV-S-V-ADV +PrepNp +NpAdjp +PrepNp +NP-Demo +DetNP +186075 ADV-V +V-O +186078 Conj-CL +ADV-S-ADV-V +AdvpNp +CLaCL +ADV-V +PrepNp +DetNP +186086 V2CL +186088 Conj-CL +Conj3CL +S-ADV-V-ADV +NpAdjp +V2CL +PrepNp +186095 ADV-V +V2CL +186098 CLaCL +ADV-V-O-ADV +V2CL +DetNP +NPofNP +V-O +NpaNp +186107 CLaCL +ADV-V-O-ADV +V-O-ADV +PrepNp +DetNP +AdjpNp +PrepNp +186115 V-O +186117 Conj-CL +CLaCL +ADV-ADV-V-IO +PrepNp +DetNP +V-O +NumpNP +DetNP +186127 CLaCL +V-O +186130 O-S-ADV-V-IO +NP-CL +PtclCL +O-V +PrepNp +DetCL +V-S +186138 V-ADV-S +S-VC-P +NPofNP +Demo-NP +DetAdj +NPofNP +DetCL +V-ADV +PrepNp +DetNP +186149 Conj-CL +186151 S2CL +DetCL +V-O-ADV +DetNP +PrepNp +186157 Conj-CL +186159 DetNP +CLaCL +V2CL +186163 S-V-ADV +186165 Conj-CL +ADV-S-V-ADV +PrepNp +DetCL +V-S +PrepNp +NpAdjp +186173 Conj-CL +S-V-O-ADV +NpAdjp +NpAdjp +ADV-P +PrepNp +DetNP +186181 Conj-CL +P-VC-S +NP-CL +NpAdjp +VC-P +S-ADV-ADV-V-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +DetNP +NPofNP +186195 Conj-CL +S-V-ADV +DetNP +PrepNp +AdjpNp +186201 Conj-CL +186203 V2CL +ClCl +186206 Np2CL +that-VP +S-O-V +DetNP +NPofNP +S-V +AdjpNp +Conj-CL +186215 that-VP +O-V +186218 Conj-CL +186220 V2CL +DetNP +ClCl2 +ClCl +ClCl +Np2CL +Np2CL +CLaCL +V-ADV +Conj2VP +186231 PrepNp +186233 CLaCL +S-V +ofNPNP +186237 S2CL +sub-CL +186240 DetNP +AdjpNp +S-ADV-V-ADV +186244 Conj-CL +186246 V-ADV +PrepNp +DetCL +V-S-ADV +BeVerb +PrepNp +NpAdjp +sub-CL +V2CL +186256 NPofNP +DetNP +NPofNP +PrepNp +186261 Np2CL +S-V +sub-CL +S-V-O +AdvpNp +DetNP +NPofNP +186269 Conj-CL +186271 ClCl2 +sub-CL +V2CL +186275 ClCl +186277 Np2CL +DetNP +NPofNP +V-S +DetNP +NPofNP +186284 O-V-IO-ADV +DetNP +NPDetAdj +NPofNP +DetAdj +NpPp +PrepNp +186292 Conj-CL +ClCl +V-IO-O +DetNP +NPofNP +sub-CL +S-V-IO +AdvpNp +All-NP +V-IO +186303 Conj-CL +ADV-V-O-ADV +PrepNp +186307 Conj-CL +186309 PrepNp +Conj3CL +S-V-O +NpPp +PrepNp +186315 V-ADV-ADV +PrepNp +186320 Np2CL +AdjpNp +sub-CL +CLaCL +S-V-ADV-ADV +NPofNP +PrepNp +PrepNp +186329 ADV-V-O +O-V-IO +186333 V2CL +ClClCl +ADV-IO-O-V +CLaCL +ADV-S-V +DetNP +186340 S-ADV-P-VC +DetNP +NPofNP +PrepNp +PrepNp +DetNP +ADV-V-O +ADV-V-IO +V2CL +186351 ClCl2 +sub-CL +ADV-ADV-V-IO-ADV-ADV +V2CL +PrepNp +DetCL +VC-P +NPofNP +PtclCL +ADV-ADV-V-IO-O +PrepNp +DetNP +NPofNP +V2CL +O-V +186368 ClCl +ClClCl +CLaCL +V2CL +186373 V-IO +CLaCL +V2CL +186377 V2CL +CLaCL +V2CL +186381 V-IO +sub-CL +Conj3CL +S-V +All-NP +DetCL +V2CL +186389 S-V +DetCL +V2CL +186393 IO-V +DetCL +V2CL +186397 Conj-CL +CLaCL +186400 Np-Appos +NpPp +PrepNp +DetNP +DetNP +PtclCL +ADV-O-IO-V +PrepNp +186410 V-IO-O +186412 Conj-CL +ClCl2 +sub-CL +S-ADV-V-O +P-VC +O-V-IO +NpAdjp +DetNP +NPofNP +ADV-S-V-O-IO +2Advp_h2 +Np-Appos +DetNP +NpPp +PrepNp +NpAdjp +DetCL +V-O +186431 Conj-CL +CLaCL +V-O +BeVerb +186436 S-VC-P +186438 Conj-CL +ClCl2 +V2CL +ClCl2 +S-V +DetNP +V-S +DetAdj +186447 Conj-CL +V-S +DetNP +186451 Conj-CL +186453 NpPp +PrepNp +ADV-V-O +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetNP +186463 Conj-CL +S-ADV-O-V-ADV +V2CL +NpPp +PrepNp +PrepNp +186470 Conj-CL +186472 V-O +ofNPNP +DetNP +CLaCL +S-V +All-NP +NpAdjp +ADV-V +PrepNp +186482 S-ADV-V +PrepNp +186485 Conj-CL +ClCl +ClCl2 +sub-CL +S-ADV-V +AdvpNp +DetNP +PrepNp +ADV-V-S +DetNP +NPofNP +sub-CL +V-O +ADV-V-S-O +PrepNp +DetNP +186502 Conj-CL +186504 sub-CL +S-ADV-V-O +PrepNp +DetNP +DetNP +NPofNP +PrepNp +186512 ADV-S-P-VC +PrepNp +ofNPNP +186516 Conj-CL +186518 sub-CL +ADV-S-V-O +PrepNp +NPofNP +DetNP +V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +186530 sub-CL +S-ADV-V-O +DetAdj +V2CL +DetNP +ofNPNP +PrepNp +NPofNP +DetCL +V2CL +186541 Conj-CL +ClCl2 +sub-CL +S-ADV-V-O +AdjpAdvp +V2CL +CLaCL +186549 O-V +DetNP +NPofNP +PrepNp +186554 O-V +DetNP +NPofNP +186558 CLaCL +S-P-VC +DetCL +ADV-VC-P +PrepNp +PrepNp +186565 S-V +DetCL +ADV-V-ADV +PrepNp +186570 ClCl2 +sub-CL +S-V-ADV +DetNP +AdjpNp +PrepNp +DetNP +CLaCL +V-ADV-ADV +PrepNp +AdjpNp +V-O +186584 ADV-V +V-ADV +PrepNp +DetNP +NP-CL +NPofNP +ADV-V +186592 Conj-CL +ADV-V-O +V2CL +CLaCL +V2CL +186598 V2CL +186600 CLaCL +Conj3CL +ADV-V +186604 V-O +AdjpNp +NpNump +NpAdjp +AdjpAdvp +186610 ADV-V-ADV +V2CL +186613 VC-S-P-ADV +DetNP +NPofNP +NP-Demo +DetNP +DetAdj +186620 Conj-CL +186622 V-ADV +PrepNp +DetCL +V-S-O +V-O +AdjpNp +NpPp +PrepNp +DetNP +P-S +NpaNp +Np-Appos +DetNP +DetCL +V-O +186638 NP-CL +O-V +186641 Conj-CL +186643 PtclCL +P-S +DetNP +CLaCL +V-O +DetNP +NPofNP +DetNP +186652 V2CL +186654 Conj-CL +ClCl2 +S-V +DetNP +V-O +186660 ClCl +ClCl +S-P-VC +NP-Demo +DetNP +NpAdjp +CLaCL +O-V +186670 sub-CL +ADV-S +DetNP +NPofNP +sub-CL +ClCl2 +sub-CL +VC-S-ADV-P +DetNP +P-VC-S-ADV +AdvpNp +DetNP +NPofNP +DetNP +NP-Demo +DetNP +186687 CLaCL +ClCl +CLaCL +S-V-ADV-ADV +NPofNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +186700 V-O +sub-CL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +V-O +DetNP +NPofNP +186712 AdjpAdvp +186714 CLaCL +ClCl +CLaCL +S-V-ADV-ADV +Np-Appos +PrepNp +DetNP +PrepNp +NP-Demo +DetNP +186725 V-O +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +186733 AdjpAdvp +186735 CLaCL +CLaCL +S-ADV-ADV-V +O-V +PrepNp +186741 ADV2CL +PrepNp +DetNP +186745 ClCl +ADV2CL +PrepNp +DetNP +sub-CL +S-O-V +DetCL +V2CL +DetNP +186755 S-VC-P +DetNP +NPofNP +DetNP +DetNP +NPofNP +186763 sub-CL +S-P-VC +DetNP +NPofNP +AdvpNp +All-NP +DetNP +NPofNP +186772 Conj-CL +186774 sub-CL +P-VC +AdvpNp +DetNP +NPofNP +186780 Conj-CL +ClCl +V2CL +PtclCL +S-P-VC +Np-Appos +DetNP +NpPp +PrepNp +186790 Conj-CL +186792 sub-CL +S-P-ADV +NP-all +DetNP +NPofNP +ADV-V-O +NpAdjp +NpAdjp +AdjpAdjp +sub-CL +sub-CL +S-ADV-V-O +DetNP +DetNP +186807 Conj-CL +186809 PrepNp +DetCL +V2CL +sub-CL +V-ADV +PrepNp +186816 Conj-CL +ADV-V +V2CL +186820 Conj-CL +186822 DetNP +V2CL +sub-CL +ADV-ADV-V-ADV +PrepNp +DetNP +186829 Conj-CL +186831 DetNP +PrepNp +CLaCL +ADV-S-O-V +Np-Appos +DetNP +DetNP +NPofNP +NpaNp +DetNP +186842 DetNP +186844 S-V-O +DetNP +NPofNP +NpaNp +186851 Np2CL +S-O-V +DetCL +V-O +DetNP +AdvpNp +DetNP +186859 sub-CL +CLaCL +O-V-O2 +DetCL +V2CL +186867 Conj-CL +186869 Np-Appos +DetNP +sub-CL +CLaCL +V-O +Conj3Np +DetNP +186877 DetNP +186879 All-NP +186881 V-ADV +NpaNp +DetNP +186885 DetNP +NPofNP +DetNP +186889 Conj-CL +V-S +ClCl +O-V +O-ADV-V +186895 ClCl +S-IO +Np-Appos +DetNP +sub-CL +V-O +NpaNp +DetNP +NpPp +PrepNp +DetNP +186907 DetNP +NpPp +PrepNp +DetNP +186912 ClCl +S-IO +sub-CL +CLaCL +VC-P +PrepNp +DetNP +NPDetAdj +DetAdj +186922 S-ADV-V +Np-Appos +DetNP +DetCL +V-ADV +186928 Conj-CL +186930 V2CL +NPofNP +DetAdj +186934 Np2CL +O-V +AdvpNp +186938 Conj-CL +186941 AdvpNp +Np-Appos +DetAdj +sub-CL +CLaCL +V-O-O2 +DetNP +NpAdjp +186950 S-ADV-ADV-V-O +NPofNP +DetNP +NPofNP +DetNP +186957 sub-CL +CLaCL +V-O +DetNP +NPofNP +DetNP +186964 S-V-O +DetNP +NPofNP +186968 Conj-CL +ClCl +CLaCL +P-VC +186973 V-ADV +DetNP +NPofNP +DetNP +NPofNP +sub-CL +aCLaCL +186981 S-V-O +186983 S-V +186986 PrepNp +AdvpNp +DetNP +NPofNP +DetNP +CLaCL +V-ADV-O +PrepNp +NpaNp +186997 ClCl +ADV-V +PrepNp +Conj2VP +187002 sub-CL +V-S-ADV-ADV +Np-Appos +DetNP +NPofNP +All-NP +DetNP +DetCL +V-ADV +PrepNp +NPofNP +PrepNp +NP-Demo +DetNP +2Pp +PrepNp +NPofNP +PrepNp +NPofNP +Np-Appos +DetCL +V-ADV +PrepNp +NpaNp +DetNP +187028 DetNP +187031 Intj2CL +V-ADV +PrepNp +NP-Demo +DetNP +187038 Np-Appos +DetAdj +sub-CL +187042 DetNP +NPofNP +DetNP +CLaCL +S-ADV-V +187048 O-V +DetCL +V2CL +187052 ClCl2 +ADV-V-S +V-S-O-ADV +NpaNp +DetNP +187058 DetNP +CLaCL +ADV-V +187062 V-O-ADV +PrepNp +V-O-ADV +V-O-ADV +PrepNp +DetNP +NPofNP +187071 ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-O +187079 PrepNp +DetNP +NPofNP +V-O-ADV +PrepNp +DetNP +NPofNP +NP-CL +S-VC-P +DetNP +187090 Conj-CL +187092 NpaNp +NP-CL +V2CL +S-ADV-V +187097 NP-CL +S-ADV-V +ADV2CL +PrepNp +CLaCL +ADV-S-ADV-V +O-ADV-V +PrepNp +DetNP +PrepNp +DetNP +187109 S-V-ADV +O-ADV-V-ADV +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +187118 Conj-CL +187120 Np-Appos +DetNP +NPofNP +ADV-V-ADV +PrepNp +DetCL +CLaCL +V-O +DetNP +187130 ADV-ADV-V-O +PrepNp +O-V +AdjpNp +187135 Conj-CL +187137 O-V +187139 V-O +DetCL +ADV-V-O-ADV +PrepNp +DetCL +V2CL +V-ADV +PrepNp +DetNP +187150 Intj2CL +O-V +187153 PtclCL +S-V-ADV +NumpNP +NpNump +187158 Conj-CL +S-ADV-V-ADV +NpPp +PrepNp +BeVerb +PrepNp +DetNP +187166 Conj-CL +S-V +AdvpNp +NP-all +DetNP +NPofNP +DetNP +NPofNP +187175 ADV-V +187177 ADV-V +AdjpNp +187180 Conj-CL +187183 Np2CL +All-NP +PtclCL +S-V-ADV-ADV +PrepNp +PrepNp +DetNP +AdvpNp +DetNP +NPofNP +DetNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +187200 Conj-CL +S-V-ADV +DetCL +V-O-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +187211 Conj-CL +187213 Np2CL +All-NP +S-V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +187221 Conj-CL +IO-ADV-V +DetCL +ADV-V +PrepNp +DetNP +AdjpNp +187229 Conj-CL +ClCl2 +sub-CL +V-O-ADV +PrepNp +Conj3Np +DetNP +187237 DetNP +187239 DetNP +ADV-V-O +Conj3CL +ADV2CL +187244 O-V +187246 O-V +187248 Conj-CL +S-V-O-ADV-O2 +DetNP +AdjpNp +PrepNp +PronNP +DetNP +S-V +O-V +187258 Conj-CL +187260 NpPp +PrepNp +DetNP +187264 Np2CL +DetNP +NPofNP +V-ADV-O +PrepNp +DetNP +187271 Conj-CL +187274 Np2CL +NpPp +NpaNp +187278 PrepNp +187280 Conj-CL +187282 PrepNp +ClCl +CLaCL +V2CL +187287 V-ADV +PrepNp +All-NP +sub-CL +ADV-ADV-S-VC-P +PrepNp +DetCL +V-ADV +DetNP +NPofNP +PrepNp +DetCL +V-ADV +187301 Conj-CL +V-O-ADV-ADV +PrepNp +187305 S-V +ofNPNP +NpAdjp +NpAdjp +DetNP +187311 Conj-CL +V-ADV-ADV +PrepNp +187315 ClCl +O-V +sub-CL +ADV-V-O +ADV-V-O +DetNP +NPofNP +187323 Conj-CL +187325 ClCl +O-V +CLaCL +CLaCL +CLaCL +V-O +ofNPNP +DetNP +187334 O-V +187336 V-ADV-O +All-NP +NPofNP +NpaNp +DetNP +187342 DetNP +187345 DetNP +NPofNP +187348 Np2CL +AdjpNp +NpAdjp +V-ADV +PrepNp +NpAdjp +ClClClCl +V2CL +V2CL +V2CL +V2CL +187360 Conj-CL +187362 DetNP +187364 Np2CL +ADV-O-V-ADV +Demo-NP +DetNP +DetNP +NPofNP +PrepNp +187372 S-P-VC +O-V +187375 P-S +DetCL +CLaCL +V-IO +187380 ADV-ADV-V +PrepNp +187383 Conj-CL +187385 PrepNp +DetNP +NPofNP +187389 PrepNp +CLaCL +ADV-V-ADV-O +DetNP +O-V +187395 ADV-O +DetNP +O-V +187399 Conj-CL +CLaCL +S-P-VC-ADV +DetNP +DetNP +187405 S-ADV +DetNP +DetNP +187409 CLaCL +187411 DetNP +that-VP +aCLaCL +187415 V2CL +187417 V2CL +P-ADV-VC-S +NpaNp +187422 S-V-O +DetNP +187425 ADV-S-V-ADV +2Advp_h2 +DetNP +187429 Conj-CL +S-ADV-V-O +NpPp +PrepNp +V2CL +ADV-V-O +PrepNp +DetNP +NPofNP +187439 Conj-CL +187441 sub-CL +ADV-O-V +PrepNp +DetAdj +187447 DetNP +ADV-V +EitherOrVp +187453 Conj-CL +187455 ClCl +ADV-S-ADV-V +PrepNp +All-NP +DetNP +NPofNP +sub-CL +S2CL +NPofNP +187465 Conj-CL +187467 sub-CL +O-ADV-S-ADV-V +PpNp2Np +PrepNp +DetNP +CLaCL +V-ADV +187475 ADV-ADV-V +PrepNp +DetNP +ADV-O +2Advp_h2 +Np2CL +187482 CLaCL +S-ADV-V-O +AdvpNp +CLaCL +O-V +187488 O-V +187490 ADV-V +187492 Conj-CL +O-S-V +NP-all +DetNP +NPofNP +DetNP +187499 Conj-CL +187501 ofNPNP +DetNP +that-VP +V-O +187506 Conj-CL +CLaCL +V-O +DetNP +NPofNP +187512 S-V-IO +187515 Np2CL +DetNP +AdjpNp +sub-CL +V-S-O +DetNP +NPofNP +V-IO-O +DetNP +187525 CLaCL +V-O +NPofNP +DetCL +V2CL +187531 V-O +187533 V-IO-O +2Np +NpAdjp +ADV-V +NpPp +NpAdjp +PrepNp +NP-CL +DetNP +CLaCL +ADV-S-ADV-V +187545 S-V +187547 Conj-CL +ClCl2 +P-VC-S +DetNP +NPofNP +P-S-VC +AdvpNp +DetNP +NPofNP +187557 ClCl +CLaCL +CLaCL +VC-S-P +ofNPNP +DetNP +V2CL +187565 S-P +DetNP +V2CL +187569 S-P-ADV +NpAdjp +V-O +DetNP +NPofNP +187575 PrepNp +DetNP +sub-CL +187579 CLaCL +V2CL +187582 V2CL +187584 P-S +NP-CL +NP-Demo +DetNP +O-ADV-S-V +S-V +V2CL +DetNP +187594 V-IO +that-VP +Conj3CL +V2CL +187599 V-O +187601 ADV-V-O +V2CL +187604 ClCl2 +sub-CL +CLaCL +ADV-V +Conj2Pp +PrepNp +DetAdj +187612 PrepNp +DetNP +AdjpNp +187616 V-ADV +P-VC-S +187619 Conj-CL +187621 that-VP +ClCl2 +sub-CL +V-S-O +DetNP +ADV-S-V +AdjpNp +DetNP +PtclCL +ADV-V-O +V-S +DetNP +NPofNP +187635 ClCl +S-VC-P +AdvpNp +sub-CL +ADV-S-V +ADV-ADV-V +PronNP +DetNP +NPofNP +DetNP +187646 Conj-CL +187648 DetNP +187650 Np2CL +ADV-O-V +PrepNp +NP-Demo +DetNP +187656 ADV-ADV +PrepNp +187659 Conj-CL +187661 DetNP +Conj-CL +P-VC-S +DetNP +NP-CL +AdjpNp +NPDetAdj +DetAdj +O-V-S-ADV-ADV +DetNP +PrepNp +DetNP +NPofNP +DetCL +V-ADV-O +PrepNp +DetNP +187679 P-S +NP-CL +NP-Demo +DetNP +O-ADV-S-V +S-V-ADV +V2CL +DetNP +NPofNP +187690 that-VP +ADV-V-O +PrepNp +All-NP +NPofNP +DetCL +V2CL +187698 Conj-CL +ClCl2 +sub-CL +CLaCL +187703 NP-Demo +DetNP +PrepNp +DetNP +NPofNP +V-S-O +DetNP +NPofNP +V2CL +187713 V-O +ClCl +V-O +NpaNp +DetNP +187719 DetNP +V2CL +EitherOr3Vp +187725 CLaCL +V-S-ADV +DetNP +NPofNP +NP-Demo +DetNP +Conj2Pp +PrepNp +NP-CL +ADV-ADV-V +187736 PrepNp +NP-CL +ADV-ADV-V +187740 CLaCL +V-O +187743 O-ADV-V +DetNP +NPofNP +PrepNp +DetAdj +187749 Conj-CL +S-V-ADV +Np-Appos +Demo-NP +DetNP +DetCL +CLaCL +V-O +DetNP +NPofNP +DetNP +NPofNP +187762 ADV-V-ADV +Conj2VP +187765 PrepNp +DetNP +NPofNP +187769 Conj-CL +S-V-ADV +DetCL +CLaCL +ADV-V +187775 V-O +AdjpAdvp +187778 Conj-CL +CLaCL +187781 Np2CL +All-NP +IO-V-S +PrepNp +187787 IO-V-O +187789 CLaCL +V-ADV +O-V-ADV +PrepNp +DetNP +187796 sub-CL +ADV-V +187799 Conj-CL +CLaCL +O-V-ADV +V2CL +187804 ADV-V-ADV +PrepNp +ADV-V +187809 that-VP +V-ADV +O-V-ADV +PrepNp +DetNP +187816 CLaCL +ADV2CL +187819 ConjConj +O2CL +187822 Conj-CL +ClCl +187825 BeVerb +PrepNp +DetNP +NpPp +PrepNp +AdjpNp +CLaCL +S-ADV +PrepNp +187835 S-ADV +PrepNp +ClClCl +CLaCL +V-S-ADV +PrepNp +187842 S-ADV +PrepNp +CLaCL +S-ADV +PrepNp +187848 S-ADV +PrepNp +DetNP +CLaCL +S-ADV +PrepNp +DetNP +NPofNP +187857 S-ADV +PrepNp +DetNP +187861 Conj-CL +187863 AdvpNp +DetNP +CLaCL +ClCl2 +sub-CL +V-O +S-V-ADV +PrepNp +187872 that-VP +S-V +187875 V-ADV +187877 Conj-CL +CLaCL +ClCl2 +sub-CL +S-V +187883 that-VP +P-VC +187886 V2CL +187889 Np2CL +O-V +O-V +DetNP +NPofNP +NpaNp +DetNP +187897 DetNP +187899 O-ADV-ADV-V +NP-Demo +DetNP +187903 Conj-CL +ADV-ADV-ADV-V-O +AdvPp +PrepNp +DetAdj +187909 Conj-CL +ClCl +187912 sub-CL +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +PrepNp +DetNP +V-ADV +PrepNp +Conj3CL +ADV-ADV-V-O-ADV +PrepNp +DetNP +187927 S-O-V-IO +DetNP +DetNP +187931 S-O-V-ADV +DetNP +PrepNp +187936 ClCl +ADV-V-ADV +2Advp_h1 +sub-CL +O-V +AdvpNp +DetNP +AdjpNp +187945 Conj-CL +V-S-ADV-ADV +PrepNp +PronNP +DetNP +V-IO-ADV +PrepNp +DetNP +NP-CL +O-S-V-ADV +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +187961 Conj-CL +187963 V2CL +187965 that-VP +187967 NP-Demo +DetNP +PrepNp +All-NP +DetNP +sub-CL +O-V +187975 ClCl2 +ADV2CL +187978 Conj-CL +187980 sub-CL +ADV-V +187983 Conj-CL +187985 Np2CL +NP-CL +Demo-NP +DetNump +NumpNump +CLaCL +ADV-V-S +PrepNp +DetNP +NpPp +PrepNp +DetNP +187998 V-O +that-VP +S-P-VC-ADV +PrepNp +All-NP +Np-Appos +DetNP +DetCL +V-ADV +188009 Intj2CL +Conj-CL +188012 sub-CL +ADV-V +188015 Conj-CL +V-O +Demo-NP +DetNP +188020 CLaCL +O-V-S-ADV +V-ADV +PrepNp +DetNP +NPofNP +188027 CLaCL +V-ADV +V-O-ADV +PrepNp +188032 ADV-V +188034 Conj-CL +188036 PrepNp +DetNP +ClCl2 +V2CL +CLaCL +ADV-ADV +AdjpNp +PrepNp +ADV-V-ADV +V-O-ADV +PrepNp +NP-Demo +DetNP +188050 ADV-V +188052 V-O +188054 ADV-O-V +PrepNp +AdvpNp +DetNP +188059 Conj-CL +188061 V2CL +188063 Np2CL +AdvpNp +Demo-NP +DetNP +PrepNp +CLaCL +ADV-V-ADV +PrepNp +188072 V-O +188074 aCLaCL +188076 sub-CL +V-O-ADV +PrepNp +DetCL +V2CL +188083 sub-CL +ADV2CL +188086 Conj-CL +V-ADV-ADV +BeVerb +PrepNp +NPofNP +DetNP +PrepNp +DetNP +188095 Conj-CL +188097 Np2CL +NpAdjp +O-V-ADV +NPofNP +NpNump +NumpNump +188104 CLaCL +VC-P +V2CL +188108 ADV-V-O +V-ADV +PrepNp +DetAdj +188113 Conj-CL +CLaCL +ADV-S-V +V-O +DetNP +188121 Np2CL +DetNP +NPofNP +188125 Conj-CL +CLaCL +V-IO-O +DetNP +188130 CLaCL +ADV-V +188133 V-O +DetNP +188136 Conj-CL +188138 V2CL +DetNP +188141 that-VP +ADV-V-S +DetNP +DetNP +DetNP +that-VP +ClCl +188149 NumpNP +ADV-V-S +PrepNp +V2CL +Conj-CL +CLaCL +ADV-ADV-V +PrepNp +V2CL +188159 ADV-ADV +DetNP +NPofNP +DetNP +188164 Conj-CL +CLaCL +V-IO-S +DetNP +188171 Np2CL +CLaCL +S-ADV-V-O-ADV +NPofNP +DetNP +NpaNp +DetNP +NPofNP +188180 DetNP +PrepNp +DetNP +188184 ADV-V +V2CL +188187 Conj-CL +188189 V2CL +S-V-ADV-ADV +NP-CL +NpAdjp +P-VC +NPofNP +O-V-S-ADV +DetNP +NumpNP +Conj2Nump +188200 PrepNp +DetNP +NP-Demo +DetNP +NPofNP +DetNP +188207 Conj-CL +CLaCL +188210 O-V-S +All-NP +DetCL +V-O +188215 S-V-ADV +All-NP +DetNP +PrepNp +All-NP +Np-Appos +DetAdj +DetCL +V-ADV +PrepNp +188226 Conj-CL +188228 CLaCL +ADV-P-VC-S +DetNP +NPofNP +DetNP +188234 ADV-V-O +188236 P-VC-ADV +NP-CL +NPofNP +Conj4CL +ADV-S-V-ADV +O-V +PrepNp +NPofNP +188245 V2CL +188247 V-ADV +PrepNp +188250 S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +188258 Conj-CL +188260 ADV-V-O +DetNP +NPofNP +DetNP +188265 P-VC-ADV +NP-CL +ADV-S-V-ADV-ADV +O-V +PrepNp +ofNPNP +NpAdjp +PrepNp +ADV-V-S +188275 Conj-CL +V-ADV-ADV +PrepNp +NpaNp +188280 CLaCL +V2CL +188283 O-V-ADV +PrepNp +188286 Conj-CL +188289 Np2CL +P-S +DetCL +V2CL +188294 Conj-CL +188296 PrepNp +ClCl +V-ADV +V-ADV +PrepNp +DetNP +AdjpNp +sub-CL +188305 CLaCL +S-V-O +V2CL +188309 ADV-V +188311 CLandCL2 +ADV2CL +PrepNp +PtclCL +CLaCL +CLaCL +ADV-V-S +DetNP +188320 V-O +DetNP +188323 V-O-ADV +CLaCL +ADV-V +188327 V-O +DetNP +188331 Np2CL +188334 V2CL +188336 P-VC +188338 ADV-V-O +188340 CLaCL +CLaCL +V-ADV +PrepNp +188345 V2CL +188347 ADV-V +PrepNp +DetNP +NPofNP +188352 Conj-CL +V-ADV +188355 ClCl +188357 P-VC +188359 PrepNp +Np2CL +All-NP +NPofNP +188365 NpaNp +DetNP +188368 DetNP +NPofNP +DetNP +sub-CL +V-O +CLaCL +S-ADV +Conj4Np +188379 All-NP +DetNP +PrepNp +DetNP +NPofNP +DetNP +188386 S-V-ADV +188388 Conj-CL +CLaCL +V-ADV +Conj2Pp +PrepNp +NpaNp +188396 PrepNp +NpaNp +188400 V-ADV +PrepNp +DetNP +NPofNP +DetNP +188406 Conj-CL +188408 V-S +NP-CL +S-VC-P +188412 V-S +NP-CL +S-VC-P +188416 ADV-V-S-ADV +PrepNp +PronNP +DetNP +AdjpNp +188422 ClCl +V-ADV +Conj2VP +188426 sub-CL +S-V-O +O-V +188430 Conj-CL +188433 V2CL +NP-Demo +DetNP +188437 V-ADV +CLaCL +V-O +188441 O-V +NpaNp +188445 ADV-V +DetAdj +188448 sub-CL +188450 S-ADV-V +Conj3Np +188454 DetCL +V2CL +sub-CL +ADV-V-S +S-V-ADV +PrepNp +188461 ClCl2 +188463 Np2CL +Np2CL +Np2CL +DetCL +CLaCL +V-O +DetNP +188471 V-O +DetCL +V-ADV +PrepNp +CLaCL +ADV-V-O +188478 DetNP +NPofNP +ADV-S-O-ADV +PronNP +DetNP +ofNPNP +PrepNp +DetNP +188487 ADV-V +188490 DetNP +NPofNP +188493 Conj-CL +188495 ClCl +ADV-V-O +2Advp_h1 +sub-CL +ClCl +V2CL +sub-CL +188503 P-S +V2CL +DetCL +V-ADV +PrepNp +NPofNP +188510 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +V-S-ADV-ADV-ADV +PrepNp +NPofNP +NPofNP +DetNP +NPofNP +DetNP +V-O +188524 S-V-O +BeVerb +188527 Conj-CL +188529 NpAdjp +NpAdjp +PrepNp +188533 Conj-CL +ADV-S-V-ADV-ADV +V2CL +DetNP +PrepNp +DetNP +NpaNp +188542 ClCl +V-S +ADV-V +DetNP +sub-CL +ADV2CL +188549 Conj-CL +S-V +188552 Conj-CL +CLaCL +ADV-V-O +V2CL +188557 V2CL +188559 Conj-CL +188561 PrepNp +CLaCL +S-ADV-V +ofNPNP +NPofNP +NpaNp +188568 PrepNp +188570 PtclCL +ADV-V-O-ADV +PrepNp +NPofNP +DetNP +188576 Conj-CL +ADV-V-O +V-ADV +PrepNp +188581 Conj-CL +V-ADV-O-ADV-ADV +PrepNp +DetCL +V2CL +V-O +ADV-O-V +DetNP +188590 PrepNp +ClCl +ClCl2 +sub-CL +V-ADV-ADV +PrepNp +PrepNp +ADV-V-ADV +PrepNp +DetNP +CLaCL +CLaCL +ADV-ADV-S-V-ADV +AdjpAdvp +BeVerb +PrepNp +188608 V2CL +DetCL +O-V +NpaNp +188613 V-IO-O +188615 ADV-V-ADV-O +PrepNp +O-V +DetNP +AdjpNp +188621 Conj-CL +ClCl +ClCl2 +sub-CL +V2CL +ADV-V-ADV +V2CL +PrepNp +DetNP +AdjpNp +sub-CL +ClCl +ClCl2 +sub-CL +V-S +DetCL +V-O +188640 Np2CL +ADV-VC-P-S-ADV +PrepNp +All-NP +DetCL +V-ADV +188647 sub-CL +CLaCL +S-V +All-NP +DetCL +V-O +188654 S-V +DetCL +V-O +188658 Conj-CL +188660 AdvpNp +DetCL +V-O +ClCl +ClCl2 +sub-CL +V-O +NpaNp +188669 ADV-V-O +Conj4Np +DetNP +NPofNP +188674 DetNP +NPofNP +188677 DetNP +NPofNP +188680 NpAdjp +CLaCL +ADV-ADV-S-V-O +AdvpNp +188685 VC-S-P +188687 Conj-CL +ClCl2 +sub-CL +O-V +V-O +NpNpNpNp +188694 Conj-CL +ClCl +188697 sub-CL +ADV-V-O +V-IO +sub-CL +V-IO-ADV +PrepNp +DetNP +NPofNP +DetAdj +188707 Conj-CL +188709 NPofNP +DetCL +V2CL +V-O +P-S +S-V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +188720 Conj-CL +188722 CLaCL +CLaCL +S-V-O +NpAdjp +NpAdjp +188728 V-O +188730 V-O-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +DetNP +188737 DetCL +V2CL +ClCl +V2CL +sub-CL +ADV-P-VC +188744 Conj-CL +V-ADV-S-O +PrepNp +V2CL +188750 DetAdj +ClCl +CLaCL +O-V +188755 V-O-ADV +ADV-V-O +V2CL +188759 V-O +S-V +188762 Conj-CL +188764 ClCl +CLaCL +O-V +NpNump +NPofNP +188770 V-ADV +V-O +188773 V-O +S-V +188776 Conj-CL +188778 CLaCL +O-V +188781 ADV-ADV-V-O +PrepNp +V2CL +188785 Conj-CL +ADV-S-V-IO-O +V2CL +DetNP +DetNP +NPofNP +188793 V2CL +DetNP +DetNP +NPofNP +CLaCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +NpaNp +188804 DetNP +188806 O-V-ADV +DetNP +Conj4Np +188813 Conj-CL +188815 DetNP +188817 Np2CL +V-S +O-V +188821 P-S-VC +188823 Conj-CL +188825 DetNP +PrepNp +DetNP +CLaCL +V-ADV +PrepNp +DetNP +NpaNp +188836 V2CL +sub-CL +V-S +ofNPNP +DetNP +188842 Conj-CL +188844 that-VP +S-V-O +NPofNP +Np-Appos +NP-Demo +DetNP +DetCL +V2CL +ofNPNP +DetNP +188855 Conj-CL +CLaCL +V-ADV-S +NpAdjp +188861 V2CL +PrepNp +ClCl2 +sub-CL +CLaCL +S-V-ADV +PrepNp +188869 ADV-V-O +NpaNp +Conj6Np +DetNP +NPofNP +188875 DetNP +188877 DetNP +188879 DetNP +188881 DetNP +188883 DetNP +188885 AdvpNp +AdvpNp +DetNP +NPofNP +ADV-V-O +VC-P +ofNPNP +188893 S-ADV-V-O +CLaCL +S-ADV-V-O +DetNP +NPofNP +188899 V-ADV +PrepNp +VC-P +ofNPNP +188904 Conj-CL +ClCl +PtclCL +188908 NpPp +PrepNp +V-O +O-V +V2CL +DetNP +PtclCL +V-ADV +PrepNp +sub-CL +ClCl2 +CLaCL +ADV-ADV-V-S-O +188922 ADV-V-O +V2CL +S-V-O +All-NP +DetCL +V2CL +O-V-ADV +188930 that-VP +CLaCL +S-V-O +Demo-NP +DetNP +V2CL +188937 ADV-V-O +V2CL +188940 Conj-CL +PtclCL +188943 AdjpNp +V-ADV +ADV-V-ADV +AdjpNp +PrepNp +V2CL +PtclCL +P-VC-ADV +ADV-V-O +PrepNp +NumpNP +DetCL +ADV-V-ADV +PrepNp +NumpNP +PrepNp +188960 Conj-CL +ClCl2 +sub-CL +ADV2CL +ClCl2 +ADV-S-P-VC +ADV-V-O +O-V +NpPp +PrepNp +188971 Conj-CL +ADV-S-ADV-V-O +NP-CL +NpPp +PrepNp +S-ADV-V-O +All-NP +DetNP +ofNPNP +VC-P +ofNPNP +188983 Conj-CL +P-S +DetNP +188987 Conj-CL +188989 sub-CL +S-V +AdvpNp +DetNP +PrepNp +188995 ADV-P-VC +aPpaPp +188998 PrepNp +189000 PrepNp +189002 ADV-V-O +189004 S-V +DetCL +V-O-ADV +V2CL +189009 Conj-CL +V-ADV-S-ADV +BeVerb +All-NP +NpaNp +DetNP +189016 DetAdj +V-O +189019 Conj-CL +V-S-ADV +aNpaNp +189023 DetNP +189025 DetNP +189027 that-VP +CLaCL +S-O-V +189031 V-ADV +189033 Conj-CL +V-ADV-O-ADV +PrepNp +NP-Demo +DetNP +189040 Np2CL +NpAdjp +NpPp +AdjpNp +PrepNp +CLaCL +V-O +NumpNP +189049 V-O +PpNp2Np +PrepNp +CLaCL +V-O-ADV +DetNump +NumpNump +PrepNp +DetAdj +189060 PrepNp +DetCL +V2CL +sub-CL +V-O +189066 Conj-CL +CLaCL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +NPofNP +V2CL +189075 ADV-V-O-ADV +V-ADV +PrepNp +DetNP +NpaNp +DetAdj +189082 DetNP +189084 ClCl +V-ADV +sub-CL +V-O +Np-Appos +DetNP +NPofNP +DetCL +V2CL +189095 that-VP +CLaCL +ADV-S-P-VC-ADV +PrepNp +DetNP +PrepNp +AdjpNp +NpAdjp +V2CL +189105 ADV2CL +PrepNp +NumpNP +NumpNump +NP-CL +S-ADV-O-V +NPofNP +189113 Conj-CL +189115 Np2CL +NpAdjp +AdjpNp +O-V +NpNump +sub-CL +V-O +NpAdjp +PtclCL +Conj3CL +V-O +189127 V-O +DetNP +189130 V-ADV-ADV +PrepNp +ADV-V +189134 Conj-CL +ADV-V-O-ADV +V2CL +DetNP +NpaNp +189141 ClCl +V-ADV +sub-CL +V-O +DetNP +NP-CL +O-V +189149 ClCl2 +ADV2CL +189152 V-S-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +AdjpNp +NpAdjp +V2CL +189162 Conj-CL +189164 S-V-O +NpAdjp +NumpNP +189168 Conj-CL +189170 DetNP +NPofNP +DetNP +189174 Np2CL +DetNP +AdjpNp +V2CL +NPofNP +DetNP +189181 Conj-CL +S-V-IO-O +DetNP +189185 Conj-CL +CLaCL +ADV-ADV-S-V-ADV +PrepNp +AdjpNp +AdvpAdjp +V-O +DetNP +AdjpNp +PrepNp +NpAdjp +189197 ADV-V-O-ADV +DetNP +NPofNP +V-ADV +189202 Conj-CL +CLaCL +ClCl2 +V-S-O +V-S-ADV +NpAdjp +PrepNp +DetNP +NP-Demo +189212 S-V-O +V2CL +189215 Conj-CL +CLaCL +ADV-V-IO +V2CL +NPofNP +DetNP +NPofNP +NP-Demo +DetNP +189225 V-O-ADV-ADV +PrepNp +DetNP +NPofNP +V-O +189231 Conj-CL +CLaCL +V-O +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NP-CL +O-V-S +DetNP +189243 S-V-IO +189245 Conj-CL +189247 ADV-V +PrepNp +CLaCL +S-V-ADV +AdjpNp +NPofNP +DetNP +NPofNP +189256 S-ADV-ADV-V +189258 CLaCL +ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +189267 Np2CL +ClCl +V-ADV +Conj2Pp +PrepNp +DetNP +189274 PrepNp +ADV-VC-P-ADV +VC-P +NPofNP +ClCl +V-O +sub-CL +O2CL +NPofNP +DetNP +NPofNP +189286 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +189293 Conj-CL +Conj4CL +ClCl2 +ADV-S-ADV-V +V-O-S +DetNP +NPofNP +189301 V2CL +189303 ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +189309 V-O +189311 Conj-CL +189313 DetNP +189315 Np2CL +V-ADV +Conj2Pp +PrepNp +DetNP +189321 PrepNp +ADV-VC-P-ADV +VC-P +NPofNP +189326 Conj-CL +189328 DetNP +PrepNp +DetNP +NPofNP +ClCl +Conj3CL +CLaCL +ADV-V-O +NPDetAdj +DetAdj +189339 V-O +189341 CLaCL +V-O-ADV +PrepNp +DetNP +NPofNP +189347 O-ADV +PrepNp +DetNP +189351 CLaCL +ClCl +V-O +DetNP +NPDetAdj +DetAdj +V2CL +189359 ADV-V +V2CL +sub-CL +ClCl +CLaCL +S-P-VC +Demo-NP +DetNP +NPofNP +189369 V2CL +CLaCL +V2CL +BeVerb +189374 V2CL +189376 Conj-CL +V-O +V2CL +189380 Conj-CL +VC-S-P +DetNP +NPDetAdj +NPofNP +DetAdj +PrepNp +189388 Conj-CL +CLaCL +ClCl2 +sub-CL +ADV-V-ADV +V2CL +DetNP +V-O +NpaNp +189399 ADV-V-O +V-O +NPofNP +DetNP +PtclCL +P-VC-S +189406 Conj-CL +189408 that-VP +CLaCL +S-V +DetNP +NPofNP +189415 DetNP +NPofNP +DetNP +NPDetAdj +DetAdj +sub-CL +O2-O-V +V2CL +189424 Conj-CL +CLaCL +V2CL +189428 ADV-V-O +V2CL +189431 Conj-CL +S-ADV-V-O +DetNP +NPofNP +V2CL +189437 Conj-CL +189439 V2CL +DetNP +189442 CLaCL +ADV-V-O +AdjpNp +189446 ADV-ADV-V +NPofNP +189449 ClCl +IO-ADV-V-O +sub-CL +ADV-V +PrepNp +DetNP +NPofNP +189457 Conj-CL +189459 sub-CL +S-V +Np-Appos +NP-Demo +DetNP +NPofNP +DetCL +V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +AdjpNp +189473 Conj-CL +189476 Np2CL +S-ADV-P-VC +PrepNp +189480 S-P-VC +All-NP +DetAdj +189484 Conj-CL +189486 CLaCL +V2CL +189489 V2CL +sub-CL +CLaCL +CLaCL +S-P-VC +NP-Demo +DetNP +NPofNP +189498 V2CL +189500 CLaCL +V2CL +189503 V2CL +189505 Conj-CL +189507 AdvPp +PrepNp +DetNP +189511 S-VC-P +NpAdjp +S-V-O +189515 S-V-IO-ADV +sub-CL +V-O +NPofNP +DetCL +V2CL +189522 Conj-CL +189524 V-O +189526 PrepNp +ClCl +V-O +DetNP +NPofNP +DetNP +NPofNP +sub-CL +ADV-V-O +ADV-V +189537 Conj-CL +189539 PrepNp +DetNP +ClCl +O-V +sub-CL +S-V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +189550 ClCl +O-ADV-V +V2CL +O-V +V2CL +189556 V-O +189558 sub-CL +189560 sub-CL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +189568 Conj-CL +189570 V-O +NPofNP +NpAdjp +DetNP +NPofNP +DetNP +NPofNP +DetAdj +O-V-IO +DetNP +NPofNP +189582 Conj-CL +189584 O2CL +NumpNP +NPofNP +189588 Conj-CL +189590 CLaCL +V-O +ofNPNP +DetNP +189595 ADV-ADV-V-O +V2CL +189599 Conj-CL +S-O-V +189602 Conj-CL +189604 O2CL +NumpNP +NPofNP +189609 CLaCL +V-O +ofNPNP +DetNP +189614 V-O +189616 Conj-CL +ClCl +189619 DetNP +DetNP +NPofNP +DetNP +that-VP +ADV-V +sub-CL +S-P-ADV-ADV-VC +DetNP +NPofNP +NP-Demo +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +Np-Appos +DetNP +NPofNP +189640 Conj-CL +189642 ClCl +IO-V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +sub-CL +189650 sub-CL +V2CL +PrepNp +DetNP +AdjpNp +189656 CLaCL +S-ADV-P-VC +DetAdj +AdjpPp +PrepNp +AdvPp +PrepNp +189664 S-ADV-P-VC +DetAdj +PP-Adjp +PrepNp +AdvPp +PrepNp +189671 Conj-CL +ClCl2 +sub-CL +ADV-P-ADV-VC +PrepNp +DetNP +AdjpNp +O-S-IO-V +DetNP +189681 Conj-CL +ClCl2 +sub-CL +ADV-P-ADV-VC +PrepNp +DetAdj +O-S-V-IO +DetNP +189690 ClCl +S-V-O +AdjpNp +O-V +AdjpNp +sub-CL +aCLaCL +189698 CLaCL +O-V +DetAdj +189702 O-V +DetAdj +189705 CLaCL +O-V +189708 O-V +DetAdj +189711 ADV-V-O +CLaCL +O-V +189715 O2CL +189717 Conj-CL +CLaCL +V-O-S-ADV +NP-all +DetNP +P-VC +189724 V-O +189726 Conj-CL +189728 ClCl +CLaCL +S-VC-P +DetCL +V-O-ADV +PrepNp +DetNP +189736 S-V-O +DetNP +DetNP +NPofNP +sub-CL +S-P-ADV +DetAdj +PP-Adjp +PrepNp +PrepNp +DetNP +189748 S-P +NpaNp +DetNP +189752 DetNP +PrepNp +189755 CLaCL +ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +189762 S-ADV-V +PrepNp +189765 Conj-CL +CLaCL +P-VC-S +S-V +NpaNp +DetNP +189772 DetNP +189774 S-V +ofNPNP +DetNP +AdjpNp +189779 CLaCL +S-V +All-NP +DetCL +CLaCL +V-O +DetNP +NPofNP +189788 V-O +189790 S-V +DetCL +O-V +V-ADV +PrepNp +189796 Conj-CL +CLaCL +S-VC-P +NpAdjp +189801 V-O-ADV +NpaNp +189804 V-ADV-ADV +PrepNp +189807 Conj-CL +S-V-ADV-ADV +NpAdjp +NpAdjp +ADV-P +PrepNp +DetNP +NPofNP +CLaCL +V2CL +189818 V-O +V-ADV +PrepNp +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetAdj +189828 Conj-CL +S-ADV-V-O +AdvpNp +DetNP +V2CL +DetNP +NPofNP +189836 Conj-CL +V-S +CLaCL +V-S +DetAdj +189842 V-S-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +189849 Conj-CL +CLaCL +V-S +AdvpNp +DetAdj +189855 V2CL +189857 Conj-CL +CLaCL +ADV-ADV-ADV-V-O-ADV +PrepNp +DetNP +V-O +DetNP +NPofNP +V-ADV +PrepNp +PrepNp +189869 O2CL +NpPp +PrepNp +DetNP +NPofNP +189875 Conj-CL +189877 V2CL +189879 Np2CL +Np-Appos +V-O +189884 sub-CL +CLaCL +V-O-ADV +DetNP +NPofNP +DetNP +NPofNP +189892 V-O +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +NP-Demo +DetNP +189901 Conj-CL +189904 Np2CL +that-VP +CLaCL +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +189914 S-ADV-O +DetAdj +189917 Conj-CL +CLaCL +ADV-ADV-V +189921 S-V +189923 Conj-CL +189925 PrepNp +All-NP +PrepNp +NpaNp +189930 NpAdjp +sub-CL +CLaCL +S-O-ADV-V +DetCL +V2CL +V-ADV-ADV +PrepNp +189939 ADV-ADV-V +PrepNp +189942 Conj-CL +189944 Conj-CL +ClCl +ClCl +ClCl +189949 Np2CL +sub-CL +V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +sub-CL +V-O +NumpNP +sub-CL +189962 sub-CL +ADV-S-V-ADV +AdvpNp +PrepNp +NPofNP +NP-Demo +DetNP +DetNP +189971 Conj-CL +189973 ClCl +V-O +NpaNp +189977 DetNP +V-O +189980 Conj-CL +189983 Intj2CL +Np2CL +Np-Appos +189987 sub-CL +S-ADV-V-ADV +PrepNp +PrepNp +189992 Conj-CL +189994 ClCl2 +sub-CL +O-ADV-V +NpaNp +189999 DetNP +ADV-ADV-V +sub-CL +S-ADV-V +PrepNp +190005 Conj-CL +190007 PrepNp +DetNP +NPofNP +CLaCL +P-VC-S +DetCL +S-ADV-V +DetNP +190016 S-IO +ADV-V +PrepNp +190020 CLaCL +190022 sub-CL +CLaCL +S-V-ADV +NpAdjp +PrepNp +DetNP +NPofNP +190030 V-ADV +PrepNp +DetNP +190034 that-VP +V-O +ofNPNP +NP-Demo +DetAdj +190040 V-O +190042 CLaCL +ClCl2 +sub-CL +V-S +DetNP +NPofNP +V-O +190050 ClCl2 +sub-CL +V2CL +V-IO +190055 Conj-CL +ClCl2 +sub-CL +CLaCL +ADV-ADV-V-ADV +DetNP +PrepNp +190063 ADV-V-ADV-ADV +PrepNp +190066 V2CL +V-IO +190069 Conj-CL +190071 DetNP +DetNP +V-IO-O +190075 Conj-CL +190077 DetNP +ClCl2 +sub-CL +V-O +NpPp +PrepNp +NPofNP +CLaCL +PtclCL +190087 NP-Demo +DetNP +CLaCL +V2CL +190092 V-ADV +PrepNp +DetNP +190096 PtclCL +V-O +190099 Conj-CL +CLaCL +S2CL +NP-CL +NpAdjp +NpPp +PrepNp +V-O +NpAdjp +AdjpaAdjp +V2CL +190111 V2CL +190113 S-ADV-V-IO +V-ADV +PrepNp +DetNP +V2CL +190119 PtclCL +190121 Conj3CL +ClCl +V-O +V2CL +190127 V2CL +sub-CL +CLaCL +V2CL +190132 V2CL +190134 ADV-V-S +PrepNp +Conj2VP +190139 PtclCL +190141 DetNP +sub-CL +V-O +DetCL +V2CL +190148 AdvpNp +sub-CL +V-O +All-NP +DetCL +V-IO +that-VP +190156 NpAdjp +O-V +O-V +O-V +190161 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +V-ADV +PrepNp +190169 S-V-ADV +PrepNp +NPofNP +NpaNp +190175 Conj-CL +CLaCL +ClCl2 +V-S-ADV +PrepNp +AdjpNp +V-S +NumpNP +NP-CL +AdjpNp +S-V-ADV +190187 S-V-O-ADV +190189 ClCl2 +ClCl +Np2CL +Np2CL +V-O +190195 Conj-CL +190197 V2CL +ADV-V-O-IO +V2CL +DetNP +190202 Conj-CL +ClCl2 +V-ADV +PrepNp +DetCL +V-S +V2CL +190210 Conj-CL +CLaCL +S-ADV-V-ADV +NpPp +PrepNp +190216 that-VP +V2CL +ADV-V-O +PrepNp +NpAdjp +DetNP +190223 V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +V-O +190230 Conj-CL +S-VC-P +190233 Conj-CL +190235 V2CL +DetNP +ClCl +CLaCL +PtclCL +S-V +DetNump +190243 S-P +DetNump +190246 V-ADV +V-O-IO +DetNP +sub-CL +ADV-S +NP-Demo +DetAdj +190254 Conj-CL +190256 ClCl +ADV-V +V2CL +S-V-O +DetNP +NPofNP +190263 Conj-CL +CLaCL +ADV-V-IO +190267 PrepNp +DetNP +ADV-V-S +DetNP +NPofNP +DetNP +190275 ClCl +CLaCL +ADV-V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +190285 ADV2CL +190287 ADV2CL +sub-CL +190290 DetNP +NPofNP +DetNP +PrepNp +190295 Conj-CL +190297 PrepNp +DetNP +ClCl +V-S +CLaCL +ADV-V-O +O-V +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +190311 ADV-V +190313 Conj-CL +ClCl +190316 ClCl +190318 V2CL +190320 V2CL +CLaCL +ADV-V +190324 V2CL +190326 Conj-CL +190328 sub-CL +S-ADV-ADV-V +DetNP +V2CL +2Pp +PrepNp +NpPp +PrepNp +DetNP +PrepNp +NpPp +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +190347 Conj-CL +V-S +CLaCL +ADV-S-O-V +190352 V-ADV +PrepNp +NP-Demo +DetNP +190357 Conj-CL +190359 sub-CL +V-ADV +PrepNp +DetNP +NPofNP +AdvPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +190372 CLaCL +V-ADV +ClClClCl +V2CL +V2CL +V2CL +V2CL +PrepNp +ADV-V-S-ADV +PronNP +PrepNp +DetNP +190385 CLaCL +V-S +DetNP +190389 V-O +190391 sub-CL +P-VC-ADV +PrepNp +DetNP +NPofNP +190397 ClClClClClCl +V2CL +V2CL +V2CL +V2CL +V2CL +V2CL +190405 Conj-CL +190407 ADV-V-S-ADV +PronNP +PrepNp +V-O-ADV +NpaNp +190413 PrepNp +190415 V-O +190417 P-VC-S +PrepNp +DetNP +ADV-S-V +PronNP +DetNP +NPofNP +DetNP +190426 CLaCL +ADV-S-ADV-V-ADV +PrepNp +Demo-NP +DetNP +CLaCL +S-VC-P +PrepNp +DetNP +190436 S-P +DetNP +NPofNP +PrepNp +DetNP +V-O +190443 S-ADV-ADV-V-ADV +NpPp +PrepNp +PrepNp +DetNP +190449 V-O +DetNP +NPofNP +190453 CLaCL +S-V-O +PtclCL +S-V-O +O-V +DetNP +NPofNP +190461 S-V-O +PtclCL +S-V +190466 ClCl2 +ADV-VC-S-P +Demo-NP +DetNP +PrepNp +NpAdjp +CLaCL +S-V +DetAdj +190476 S-V +DetAdj +190480 BeVerb +PrepNp +DetNP +CLaCL +S-V +DetAdj +190487 S-V +DetAdj +190490 Conj-CL +190492 V2CL +190494 Np2CL +190496 Conj-CL +190498 ClCl2 +P-S +DetNP +ADV-S-V +AdvpNp +DetNP +190505 Conj-CL +V-O-IO-ADV-ADV +PrepNp +DetCL +V-S +CLaCL +ADV-V-S +190513 ADV-V +190515 S-VC-P-ADV +NpAdjp +PrepNp +AdjpNp +CLaCL +O-ADV-V +DetNP +190523 O-ADV-V +190525 Conj-CL +CLaCL +S-VC-P +PrepNp +NP-Demo +DetNP +190532 V-ADV-ADV +PrepNp +190535 V-O-ADV +PrepNp +DetNP +NPofNP +190540 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +190546 PrepNp +PrepNp +ClCl2 +sub-CL +CLaCL +O-ADV-V +AdvpNp +DetNP +190555 O-V +190557 ADV-V-O +PrepNp +DetCL +V-IO-O-S +NP-Demo +DetNP +sub-CL +ADV-ADV-ADV-V-O +PrepNp +V2CL +190568 Conj-CL +190570 DetNP +190572 O-S-V +DetNP +NPofNP +DetNP +190577 Conj-CL +CLaCL +PtclCL +PtclCL +S-V-O +DetNP +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +DetCL +V-IO-ADV +NpaNp +190593 V-ADV +PrepNp +190597 that-VP +V-O-ADV +DetNP +NPofNP +PrepNp +190603 sub-CL +ClCl2 +S-V +DetNP +NPofNP +DetNP +PtclCL +V-O-ADV +DetNP +PrepNp +DetNP +190615 Conj-CL +V-ADV-O +AdvPp +PrepNp +AdjpNp +DetCL +CLaCL +190623 PrepNp +that-VP +VC-P +190627 V-O +DetAdj +NP-Demo +DetNP +190633 NpNump +PrepNp +DetNP +V2CL +CLaCL +S-P +DetAdj +190641 S-P +DetAdj +190645 DetNP +V2CL +PrepNp +190649 Np2CL +DetNP +that-VP +ADV-VC-P +CLaCL +sub-CL +S-P +DetNP +NPofNP +DetNP +NpNpNp +190661 sub-CL +S2CL +AdvpNp +Demo-NP +DetNP +190667 ClCl +V-ADV-ADV +DetNP +V-O +All-NP +O-V +190674 Conj-CL +CLaCL +S-ADV-ADV-V-O +DetNP +ADV-V +ADV-O-V-ADV +DetNP +PrepNp +DetNP +190684 V-O-ADV +DetNP +NPofNP +190689 Np2CL +DetNP +Np-Appos +DetAdj +190695 ClCl +V-S-ADV-ADV-ADV +V2CL +PrepNp +DetNP +NPofNP +PrepNp +sub-CL +CLaCL +S-V +All-NP +DetCL +V-O +190709 S-V +DetCL +V-O +190713 Conj-CL +190715 AdvpNp +DetNP +sub-CL +O-V +190720 Conj-CL +ADV-S-V-O +V2CL +DetNP +190725 Conj-CL +S-V-O-ADV +DetNP +190729 ClCl +CLaCL +V-O +S-V-ADV +DetNP +PrepNp +190736 ADV-V-O +sub-CL +P-VC-S +DetNP +DetNP +NPofNP +DetNP +190745 V-IO +S-ADV-V-ADV +PtclCL +190749 S-ADV-V-O +DetNP +NPofNP +DetNP +S2CL +2Advp_h1 +PrepNp +190757 Conj-CL +V-S-O-ADV +AdjpNp +190762 Np2CL +NpAdjp +O-V +NpAdjp +190767 Conj-CL +190769 DetNP +ClCl +190772 ClCl +S-P +sub-CL +ADV-S +Np-Appos +DetNP +190779 DetNP +ClClClClCl +ADV-V +ADV-V +ADV-V +ADV-V +V-O +NpaNp +DetNP +NPofNP +190790 DetNP +190792 Conj-CL +190794 O-V-ADV +NP-all +PrepNp +190798 Conj-CL +190800 V2CL +DetNP +190803 CLaCL +CLaCL +CLaCL +O-V +All-NP +O-V +190810 V-IO +190812 V-O-ADV +PrepNp +DetNP +190816 ClCl2 +V2CL +V-O +190820 Conj-CL +ClCl +S-ADV-P-VC +V-O +sub-CL +VC-P-ADV +190827 Conj-CL +190829 V-O +DetNP +ClCl +ADV-S-ADV-V +2Advp_h2 +DetCL +O-V +DetNP +PrepNp +DetNP +NPofNP +DetNP +sub-CL +CLaCL +P-VC-S +S-ADV-V +PrepNp +NPofNP +190848 S-ADV-V +PrepNp +DetNP +NPofNP +DetNP +190854 Conj-CL +190856 DetCL +V2CL +Conj-CL +S-V-O +V2CL +190862 Conj-CL +190864 S-P-ADV-VC +NpPp +DetAdj +PrepNp +PrepNp +DetNP +190871 Conj-CL +190873 DetNP +190875 V-O +DetAdj +190878 Conj-CL +190881 V-IO +that-VP +P-VC-S +NP-CL +S-V-O-ADV +Conj5Np +190891 PrepNp +DetNP +NPofNP +DetNP +CLaCL +S-ADV-ADV-V-O-ADV +PrepNp +NP-Demo +DetNP +190901 ADV-O +PrepNp +Np-Appos +DetNP +DetCL +V2CL +NpAdjp +190909 Conj-CL +190911 V-O +DetNump +PrepNp +CLaCL +190916 PrepNp +190919 All-NP +DetCL +V-ADV-ADV +PrepNp +DetNP +DetNP +NPofNP +DetNP +sub-CL +CLaCL +CLaCL +Conj4CL +V-IO +DetNP +190934 V2CL +190936 V2CL +190938 V2CL +190940 ADV-V-O +V2CL +190943 ADV-V +DetNP +NPDetAdj +DetAdj +190948 Conj-CL +Conj3CL +S-O-V +NPofNP +190953 VC-S-P-ADV +NP-Demo +DetNP +PrepNp +190958 ADV-V-O +DetCL +V2CL +190962 Conj-CL +ClCl2 +V-ADV +PrepNp +DetCL +V-S-ADV +PrepNp +S-V-ADV-ADV +NpAdjp +PrepNp +DetNP +V2CL +190975 Conj-CL +ADV-V-O +V-O +S-V +P-VC-S +190981 Conj-CL +190983 that-VP +S-V +Np-Appos +DetNP +190988 Conj-CL +V-ADV +190992 Np2CL +Np-Appos +NPofNP +190996 Conj-CL +190998 DetCL +V2CL +that-VP +V2CL +191003 Conj-CL +191005 AdjpAdvp +191007 Np2CL +NPofNP +191010 Conj-CL +ADV-S-V-O +V2CL +DetNP +S-V-ADV +PrepNp +191017 Conj-CL +ClCl2 +V-S +191021 O-V +O-IO-V +191024 Conj-CL +191027 Np2CL +V2CL +191030 Conj-CL +191032 DetNP +ClCl +V2CL +S-V-O +DetNP +NPofNP +191039 Conj-CL +CLaCL +ADV-V +191043 V-O-ADV +V-O +DetNP +191047 Conj-CL +S-ADV-V-O-IO +All-NP +DetNP +V2CL +DetNP +191054 Conj-CL +ADV-V-ADV +V2CL +DetNP +191059 Conj-CL +191061 S2CL +NpAdjp +ADV-VC-P +191065 S-VC-P +191067 S-P +191069 Conj-CL +CLaCL +ClCl +V-O +V-O +DetNP +P-VC +191078 PrepNp +DetNP +sub-CL +ADV-P-VC +DetNP +191084 Conj-CL +191086 V-ADV +PrepNp +DetNP +PrepNp +sub-CL +V-O +sub-CL +O-V +ADV-V +191096 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +DetNP +191103 V2CL +DetNP +PrepNp +191107 Np2CL +ADV-V +V2CL +sub-CL +S-V +ADV-ADV-S-V +PrepNp +DetNP +NPofNP +191117 Conj-CL +CLaCL +ADV-V +V2CL +191122 V-O-ADV +V2CL +191125 Conj-CL +ADV-S-V-ADV +V2CL +191129 that-VP +ADV-V-ADV +PrepNp +AdjpNp +V2CL +191135 Conj-CL +191137 V2CL +PrepNp +DetNP +191141 Np2CL +O-IO-V +DetNP +NPofNP +ofNPNP +DetCL +V2CL +DetAdj +191150 ClCl2 +sub-CL +ADV-O-V +V-O +191155 Conj-CL +191157 PrepNp +DetNP +that-VP +191161 NP-Demo +DetNP +sub-CL +S-P-VC +AdvpNp +NPofNP +191168 Conj-CL +V-S-ADV +DetNP +NPofNP +DetNP +V-O +Conj2VP +191176 DetCL +V2CL +191179 Conj-CL +ClCl2 +V-S-O +ADV-V-O-ADV +V2CL +PrepNp +DetCL +CLaCL +VC-P-S +PrepNp +191191 that-VP +ADV-V-S-O +DetNP +NPofNP +DetNP +V2CL +191198 Conj-CL +191200 S-V-ADV-ADV +NpAdjp +NpAdjp +PrepNp +NpAdjp +CLaCL +V-IO-O +191208 V2CL +191210 Conj-CL +CLaCL +ADV-V-IO-O +V-O +NumpNP +NPofNP +NumpNP +191219 PrepNp +V-ADV +PrepNp +ADV-V +191224 Conj-CL +CLaCL +S-V-O +DetNP +NPofNP +191230 V-O-ADV-ADV +PrepNp +191233 ADV-V-O +S-V-ADV +PrepNp +191237 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +V-S-ADV +V-O +DetNP +191247 V-IO-S +NP-CL +NP-Demo +DetNP +IO-V-O +DetNP +sub-CL +V-S-O +O-V +191257 Conj-CL +191259 DetAdj +V2CL +191262 Np2CL +DetNP +NPofNP +NumpNP +191267 Conj-CL +191269 ClCl2 +ADV2CL +191272 Np2CL +AdjpNp +sub-CL +ADV-P-VC +PrepNp +VC-P +O-V-ADV +PrepNp +NumpNP +191282 Conj-CL +V-S-ADV +DetAdj +191287 Np2CL +DetNP +NPofNP +NumpNP +191292 Conj-CL +191294 AdvpNp +S-P-VC +AdvpNp +PrepNp +NumpNP +191300 Conj-CL +S-V-ADV +DetAdj +191304 ClCl +191306 Np2CL +V2CL +NP-CL +DetNP +NPofNP +O-V-ADV +V-ADV +PrepNp +sub-CL +191316 sub-CL +191318 NpAdjp +CLaCL +V-O +O-ADV-V +191323 V-O +O-ADV-V +191327 ClCl +191329 PrepNp +DetNP +NPofNP +Np2CL +AdjpNp +CLaCL +191336 that-VP +S-VC-P +NpAdjp +NpAdjp +CLaCL +V-O +O-ADV-V +191344 V-O +O-ADV-V +191347 ClCl +ADV-ADV-V-O-ADV +PrepNp +ofNPNP +DetNP +PrepNp +PtclCL +S-ADV-ADV-O-V +V2CL +PrepNp +191358 Conj-CL +191360 DetCL +V2CL +CLaCL +V-ADV-O +PrepNp +DetNP +191367 V-IO +DetCL +O-V +DetNP +NumpNP +191373 Conj-CL +191376 Np2CL +NumpNP +191380 that-VP +CLaCL +IO-V +All-NP +DetCL +V2CL +191387 ADV-S-V +PrepNp +DetCL +ADV-V +AdvpNp +O-V +191394 Conj-CL +CLaCL +O-V-ADV +Np-Appos +NP-Demo +DetNP +NPofNP +DetCL +ADV-V-O +S-V-ADV +PrepNp +191406 V-O-ADV +PrepNp +191409 Conj-CL +ADV-V-ADV-ADV +V-O +V-ADV +PrepNp +191415 Conj-CL +ClCl2 +ClCl +V2CL +sub-CL +V-ADV-ADV +PrepNp +NpaNp +191424 PrepNp +Np-Appos +DetNP +DetCL +VC-P +V-O-ADV +NPofNP +DetNP +191434 PrepNp +DetNP +AdvpNp +CLaCL +ADV-V-O +ADV-V +PrepNp +V-S +NP-CL +ADV-S-ADV-V +PrepNp +NPofNP +191447 ADV-V +V-O +191450 Conj-CL +ClCl2 +sub-CL +191454 ADV-V +PrepNp +191457 that-VP +S-O-V +DetNP +ofNPNP +191462 Conj-CL +ClCl +ADV-S-V +V2CL +DetCL +V2CL +sub-CL +V-IO +191471 Conj-CL +ClCl2 +V-S-O +DetNP +191476 DetNP +NPofNP +PrepNp +ADV-V-O +DetNP +191482 Conj-CL +191484 that-VP +S-O-V +DetNP +ofNPNP +191489 Conj-CL +CLaCL +V-O-ADV +PrepNp +DetNP +191495 ADV-V-O +V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +DetNP +191503 Conj-CL +ClCl2 +V-S +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +191512 Conj-CL +ClCl2 +V-S-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +V-S-ADV-O +All-NP +DetNP +NPofNP +DetNP +V2CL +V-O-ADV-ADV-ADV +DetNP +NpAdjp +PrepNp +All-NP +CL-NP +O-V +191536 V2CL +Np-Appos +DetCL +V-ADV +PrepNp +NPofNP +DetNP +CLaCL +P-S +PrepNp +191547 S-P +PrepNp +191550 Conj-CL +191552 NpPp +NPofNP +DetNP +PrepNp +DetNP +PrepNp +191559 Np2CL +DetNP +NPofNP +191563 Conj-CL +191565 V2CL +191567 ClCl2 +sub-CL +S-V +S-V +DetNP +191573 Conj-CL +ClCl2 +sub-CL +V2CL +ADV-V-ADV-ADV +V-O +DetNP +PrepNp +191582 that-VP +CLaCL +sub-CL +V-ADV-S-O +PrepNp +NP-Demo +DetNP +AdvpNp +NpPp +PrepNp +191594 PrepNp +NPofNP +sub-CL +191598 CLaCL +V-S-ADV +PrepNp +191602 Conj5CL +V-S-O-IO +DetNP +NPofNP +191607 V-O +191609 V-O-ADV +191611 V-O +NpaNp +191614 DetNP +NpPp +NPofNP +PrepNp +191619 ADV-V-O-ADV-ADV +PrepNp +PrepNp +PrepNp +ADV-ADV-V-O +DetNP +NPofNP +DetNP +NPofNP +191629 Conj-CL +ADV-V-O-ADV +V-ADV +PrepNp +DetNP +V-O +DetCL +V2CL +191638 CLaCL +191640 Conj-CL +VC-S-P +DetNP +NPofNP +NPofNP +191646 S-O-V-O2 +NPofNP +191649 Conj-CL +V-ADV-ADV +BeVerb +NpPp +PrepNp +PrepNp +DetNP +191657 Conj-CL +CLaCL +S-V-O +NpaNp +DetNP +191663 DetNP +O-V +191666 S2CL +DetNP +NPofNP +DetNP +191671 Conj-CL +ClCl +ADV-V-O +DetCL +O-V +sub-CL +S-V-O-ADV +NP-all +DetNP +V2CL +191682 Conj-CL +ClCl2 +V-ADV +PrepNp +NPofNP +DetNP +ClCl2 +CLaCL +V-S-O-ADV +DetNP +PrepNp +DetNP +191695 V2CL +CLaCL +V-S-ADV +NpaNp +DetNP +191701 DetNP +PrepNp +DetNP +191705 V-ADV +191707 PrepNp +191709 CLaCL +ADV-O-V +PrepNp +AdjpNp +191714 P-VC-S +DetCL +V-IO-O +NP-Demo +DetNP +191720 Conj-CL +191722 V2CL +PrepNp +CLaCL +V-O-S-O2 +191728 CLaCL +S-P-VC +DetNP +NPofNP +PrepNp +191734 P2CL +PrepNp +191737 Conj-CL +S-V-ADV-ADV +PrepNp +191741 that-VP +CLaCL +ClCl2 +sub-CL +191746 P2CL +PrepNp +191749 ADV-ADV-V-O +PrepNp +191752 ClCl +ClCl2 +sub-CL +191756 P2CL +PrepNp +S-V-O +NP-all +DetNP +sub-CL +V-O +VerbBe +S-P-VC +191766 Conj-CL +V-O +ADV-V-O +P2CL +191771 Conj-CL +191773 DetNP +191775 ADV-O-V +PrepNp +AdjpNp +191779 Conj-CL +V-O +ADV-V-O +PrepNp +DetNP +NP-Demo +DetNP +191787 Conj3CL +S-V-O +191790 V-O-IO +191792 V-ADV +NpAdjp +191795 Conj-CL +191797 PrepNp +DetNP +sub-CL +ADV-V-IO +PrepNp +DetNP +NPofNP +DetNP +191806 Conj-CL +S-V-O-ADV-O2 +DetNP +V2CL +191811 Conj-CL +V-O +O-V +AdjpNp +191816 Conj-CL +S-ADV-V-ADV +O-V +Conj2VP +191822 Conj-CL +V-O +O-V +191826 Conj-CL +S-ADV-V +O-V +AdvpNp +191831 Conj-CL +191833 DetNP +NPofNP +DetNP +ClCl +O-V +ClCl +V-O +Np-Appos +DetNP +NPofNP +DetAdj +ADV-O-V +191846 Conj-CL +ADV-S-V-ADV-ADV +V-O +DetNP +PrepNp +191852 ClCl +S-VC-P +DetNP +191856 sub-CL +P-VC-S +DetNP +191860 Conj-CL +ADV-V +V-O-ADV +PrepNp +DetNP +191866 Conj-CL +O-V-IO-S +DetNP +NPofNP +DetNP +191872 CLaCL +CLaCL +V2CL +191876 V-O +NP-Demo +DetNP +191880 V-O-IO +DetNP +191883 Conj-CL +191885 V2CL +ADV-V +191888 Conj-CL +191890 V-O +Conj-CL +191893 NP-Demo +DetCL +V2CL +191898 Np2CL +NP-CL +O-V-S +DetCL +V2CL +PrepNp +NPofNP +S-V +All-NP +DetCL +V-ADV +PrepNp +Demo-NP +DetNP +191914 PtclCL +ADV-V +PrepNp +191918 Conj-CL +ClCl +CLaCL +V-S-O-ADV +NpaNp +DetNP +191925 DetNP +V-ADV-O +PrepNp +DetNP +PrepNp +PronNP +DetNP +191933 V-O +DetNP +sub-CL +191937 that-VP +ADV-V-O +PrepNp +NP-Demo +DetNP +191943 Conj-CL +ClCl +ADV-V-O +V2CL +NpAdjp +V-O +S-P-VC +sub-CL +V-O-ADV +ofNPNP +sub-CL +V-O-IO +NpaNp +DetNP +191958 DetNP +NPofNP +DetNP +191962 Conj-CL +V-O-ADV +191966 Np2CL +191968 that-VP +CLaCL +ADV-V +Conj2VP +191974 notCLbutCL2CL +V-O +ADV-O-V +PrepNp +DetNP +NPofNP +DetNP +CLaCL +V-S +S-IO-O-V +191985 ADV2CL +191987 Conj-CL +191989 V-O +ofNPNP +DetNP +PrepNp +191994 V-O +ofNPNP +NpaNp +191999 Conj-CL +192001 O2CL +192003 Conj-CL +192005 PrepNp +Conj-CL +CLaCL +V-O-IO +NPofNP +192011 O-IO +NPofNP +DetNP +DetNP +192016 Conj-CL +CLaCL +ADV-V-O +V-O-ADV +ofNPNP +PrepNp +DetNP +192024 ADV-V +V-ADV +PrepNp +DetNP +NPofNP +192030 Conj-CL +ADV-S-V-O-ADV +V2CL +Np-Appos +NPofNP +DetNP +DetCL +V-O +S-P-VC +192041 Np2CL +192043 sub-CL +CLaCL +S-V-ADV +ofNPNP +V-O +192049 S-P-VC +CLaCL +V-S-O +DetNP +NPofNP +DetNP +192056 V-O-IO +DetNP +NPofNP +192060 Conj-CL +S-V +NumpNP +192064 Conj-CL +S-ADV-V-ADV +DetAdj +V-O +192069 Conj-CL +CLaCL +S-V-O +NpaNp +DetAdj +192075 DetAdj +192077 CLaCL +ADV-S-ADV-V-O +AdvpNp +DetNump +192082 V2CL +192084 ADV-S-V +AdvpNp +DetNP +192088 Conj-CL +ClCl +S-ADV-P-VC +DetNP +PrepNp +DetNP +ofNPNP +NPofNP +sub-CL +S-V-O-O2 +DetNump +192100 Conj-CL +192102 DetNP +CLaCL +S-V +DetNP +NPofNP +NP-Demo +DetNP +Conj2VP +192112 S-V +DetCL +V-O +CLaCL +O-V +NP-Demo +DetNP +192120 O2CL +Np-Appos +DetNP +NpPp +PrepNp +EitherOrVp +192129 Conj-CL +ClCl +O-ADV-V +ADV-V +sub-CL +CLaCL +P-VC +192137 P-VC-ADV +NPofNP +P-VC +ofNPNP +DetNP +192143 Conj-CL +192145 that-VP +V-S +DetAdj +AdvpNp +PrepNp +DetNP +sub-CL +V-O-O2 +DetNP +Conj3Np +NPofNP +192157 NPofNP +192159 NPofNP +192161 Conj-CL +ClCl +CLaCL +S-ADV-VC-P +192166 P2CL +sub-CL +S-ADV-V +192170 Conj-CL +192172 V2CL +NPofNP +DetNP +192176 Np2CL +192178 Conj-CL +ADV-V-O +V-O-O2 +192182 Conj-CL +192184 PrepNp +ADV-V-O +S-VC-P +DetNP +ofNPNP +192190 Conj-CL +192192 PronNP +PrepNp +NPofNP +192196 DetNP +NPofNP +ClCl +V-ADV +PrepNp +NPofNP +sub-CL +PtclCL +V-O-O2 +DetNP +NPofNP +NPofNP +DetNP +NPofNP +192211 Conj-CL +CLaCL +S-O-O2-V +192215 ADV-P-VC +ofNPNP +192218 Conj-CL +ClCl2 +V-S +All-NP +DetNP +192224 DetNP +192226 PrepNp +NP-CL +Np-Appos +DetNP +DetCL +CLaCL +V-O +V-ADV +PrepNp +192236 V-O +Conj3Np +NpPp +PrepNp +DetNP +192242 NpPp +PrepNp +DetNP +192246 NpPp +PrepNp +DetNP +CLaCL +S-V-O +DetNP +NPofNP +DetNP +192255 ADV-O-V +S-V-O +AdjpNp +192259 Conj-CL +ADV-V-O +V2CL +DetNP +AdjpNp +V-ADV-O +PrepNp +DetNP +DetNP +NPofNP +192270 Conj-CL +CLaCL +V-O +S-V-ADV-O +AdjpNp +NpAdjp +NpNump +192280 that-VP +S-O-V +Np-Appos +NP-Demo +DetNP +DetNP +AdjpAdvp +192288 Conj-CL +CLaCL +S-ADV-V-ADV +All-NP +PrepNp +DetCL +V-ADV +PrepNp +DetNP +192298 S-ADV-O-V +PrepNp +DetNP +NPofNP +All-NP +DetNP +NP-CL +O-V +192307 Conj-CL +ClCl2 +192310 PrepNp +DetNP +that-VP +ADV-V +NpaNp +NpAdjp +192319 Np2CL +NP-CL +O-V +ADV-ADV-V-ADV-S +PrepNp +PrepNp +NP-CL +S-ADV-V +192328 Conj-CL +V-O-ADV +192332 Np2CL +CLaCL +P-S-VC +192337 DetNP +sub-CL +V-S-O +V2CL +192342 Conj-CL +192344 ClCl +V2CL +ADV-V +192348 Conj-CL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +192354 CLaCL +S-VC +192357 S-V +DetNP +192360 ADV-V-ADV +PrepNp +192363 Conj-CL +ClCl2 +sub-CL +V-O +NpaNp +192369 ADV-V +192371 Conj-CL +CLaCL +V-S +S-V-ADV +192376 ADV-ADV-S +DetNP +192380 ClClCl +CLaCL +V-S-ADV +PrepNp +192385 S-ADV +PrepNp +S-V +aNpaNp +192390 NpAdjp +192392 PpNp2Np +PrepNp +NpaNp +192396 S-V +aNpaNp +192400 PpNp2Np +PrepNp +NpAdjp +192404 Conj-CL +CLaCL +ADV-V-ADV-O +PrepNp +NP-all +PrepNp +DetNP +NPofNP +192413 V-ADV-ADV-ADV +V-ADV +PrepNp +DetNP +NpaNp +192419 V-ADV +PrepNp +NpaNp +192423 PrepNp +DetNP +NPofNP +192427 V-ADV-ADV +PrepNp +192430 Conj-CL +192432 PrepNp +DetNP +NPofNP +ADV-V-O +V2CL +sub-CL +S-V-IO-O +NP-CL +NpaNp +192442 ADV-ADV-V-O-S +CLaCL +V2CL +192446 V2CL +AdjpNp +DetCL +V-O +192451 Conj-CL +Conj3CL +V-ADV +AdvPp +PrepNp +Conj4Np +192461 V-ADV +PrepNp +192464 V-ADV-ADV +BeVerb +PrepNp +PrepNp +DetNP +NPofNP +192471 Conj-CL +S-ADV-ADV-V +PrepNp +DetNP +NPofNP +2Advp_h1 +192478 ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +NPofNP +192485 Conj-CL +ClCl2 +sub-CL +V-O +V-ADV-S +PrepNp +192492 that-VP +V-S +DetNP +NPofNP +192497 ClCl +Conj3CL +ADV-S-V-ADV +NpPp +PrepNp +DetNP +PrepNp +DetNP +192506 S-V +NpPp +PrepNp +NPofNP +192511 S-ADV-V-ADV +NpPp +PrepNp +DetNP +PrepNp +sub-CL +P-S-VC-ADV +NPofNP +DetCL +V-S +All-NP +DetCL +V2CL +192525 S-IO-ADV +NpaNp +DetCL +ADV-V +PrepNp +192531 DetCL +V2CL +PrepNp +Demo-NP +DetNP +192537 Conj-CL +Conj5CL +VC-S-P +NpAdjp +PrepNp +DetNP +192544 S-P +NP-Demo +DetNP +192548 V-ADV +NPofNP +192551 V-ADV +PrepNp +NP-all +DetNP +192556 S-V-ADV-ADV +BeVerb +PrepNp +PrepNp +ADV-V-S +NPofNP +192563 Conj-CL +ClCl +ClCl +CLaCL +VC-S-P +PrepNp +Conj3Np +192573 P-S-ADV +PrepNp +DetNP +NPofNP +PrepNp +NPofNP +NPofNP +NpaNp +192582 V-S-ADV +PrepNp +NpaNp +192586 NPofNP +DetCL +V-ADV +DetNP +sub-CL +S-V +DetNP +NPofNP +DetNP +192596 Conj-CL +ADV-V-O +S-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +NpAdjp +NpaNp +192608 Conj-CL +192610 V-S-O +V2CL +CLaCL +V2CL +192615 V-O +DetNP +NPofNP +sub-CL +V-S +DetNP +NPofNP +192623 Conj-CL +V-O-IO +192626 V-O +NpaNp +DetNP +192630 All-NP +DetNP +192633 ClCl2 +sub-CL +V-ADV +192637 V-ADV +PrepNp +that-VP +ADV-P-S-VC +DetNP +192644 AdvpNp +sub-CL +V-O +S-V +that-VP +P-VC-S +DetNP +NPofNP +DetNP +192655 V-IO +that-VP +192658 2Advp_h1 +NP-Demo +DetNP +sub-CL +PtclCL +S-V +192665 CLaCL +S-V +NpaNp +DetNP +192670 DetNP +192672 S-ADV-V +DetNP +NPofNP +2Advp_h1 +192677 Conj-CL +192679 CLaCL +ADV-ADV-V-S-ADV +ofNPNP +DetNP +PrepNp +Conj3Np +192687 NpAdjp +192690 PrepNp +NP-Demo +DetNP +sub-CL +S2CL +192696 Conj-CL +V-ADV +PrepNp +All-NP +DetCL +V-ADV +PrepNp +NPofNP +All-NP +DetNP +192707 Conj-CL +V-ADV-ADV +PrepNp +All-NP +192712 that-VP +V-O +CLaCL +V-O +Np-Appos +NP-all +DetCL +V-O +V2CL +192722 V-ADV +PrepNp +DetNP +NPofNP +DetNP +192728 Conj-CL +CLaCL +V-ADV-ADV +BeVerb +DetNP +PrepNp +DetNP +192736 ADV-ADV-V-ADV +DetNP +V2CL +PrepNp +Np-Appos +DetNP +DetCL +VC-P +192745 Conj-CL +S-V-ADV-ADV +All-NP +DetNP +PrepNp +ADV-V-O +PrepNp +DetNP +192754 Conj-CL +V-S +Np-Appos +DetNP +NPofNP +DetAdj +DetCL +VC-P +192763 Conj-CL +ClCl +V-S-O +NpaNp +DetNP +192769 DetNP +DetCL +ADV-V-O +sub-CL +V-O +DetNP +192776 Conj-CL +V-S-ADV +PrepNp +NpAdjp +Np-Appos +DetCL +VC-P +VC-P +PrepNp +DetNP +NPofNP +DetNump +192789 Conj-CL +ADV-V-IO-O +V2CL +DetNP +NpaNp +192795 DetCL +ADV-IO-V-O +192798 Conj-CL +CLaCL +V2CL +192802 V-O +IO-O-V +192805 Conj-CL +CLaCL +V2CL +192809 V-O-ADV +DetCL +V-O-ADV-IO +PrepNp +192814 Conj-CL +V-S +DetNP +NP-CL +NPofNP +DetAdj +ADV-V-S +V-S +DetNP +192824 Conj-CL +V-O-ADV +NpaNp +192829 ClCl +ADV-V-IO-O +V2CL +DetNP +sub-CL +V2CL +192836 Conj-CL +192838 ClCl +V2CL +ADV-V +192842 Conj-CL +192845 V-S-ADV +PrepNp +DetNP +V-O-S +NpAdjp +O-V +NPofNP +192853 V-O-ADV +PrepNp +DetNP +NP-CL +ADV-V +PrepNp +192860 Conj-CL +192862 DetNP +NPofNP +DetNP +192866 DetNP +ClCl +P-VC-S +DetNP +ADV-O-ADV-V +DetNP +PrepNp +DetNP +NPofNP +192876 S-IO-V-O +NpAdjp +NpAdjp +V2CL +192881 ADV-V +192883 Conj-CL +CLaCL +ClCl +ADV-V +V2CL +sub-CL +V-IO +192891 V-O +DetNP +192894 Conj-CL +192896 sub-CL +V-S +DetNP +V2CL +192901 S-ADV +DetNP +PrepNp +192905 Conj-CL +192907 PrepNp +ADV-V-O +O-V-ADV-ADV +Demo-NP +DetNP +PrepNp +PrepNp +DetCL +S-V +192917 Conj-CL +192919 that-VP +ADV-ADV-V-O-ADV +2Advp_h1 +PrepNp +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +192929 Conj-CL +192931 V-O +V2CL +CLaCL +V-O +192936 V-ADV +PrepNp +192939 Conj-CL +192941 ADV-V-ADV-ADV-ADV +2Advp_h1 +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +ADV-S-V +DetNP +NPofNP +DetNP +192955 Conj-CL +CLaCL +ADV-ADV-V +V-O +V2CL +192961 V-IO-ADV +192963 ClCl +S-VC-P +Np-Appos +DetNP +NPofNP +DetCL +ADV-V +PrepNp +O-V-ADV +PrepNp +DetNP +AdjpNp +192976 Conj-CL +O-ADV-ADV-ADV +DetNP +PrepNp +DetCL +V2CL +192983 ClCl +CLaCL +P-S +DetNP +AdjpNp +NpPp +PrepNp +DetNP +NPofNP +Np-Appos +Demo-NP +DetNP +DetCL +ADV-V +PrepNp +193000 DetNP +NPofNP +DetCL +V-O +PrepNp +PrepNp +DetNP +sub-CL +aCLaCL +193010 S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +DetCL +V2CL +193018 S-IO +NP-CL +NP-Demo +DetNP +ADV-V +PrepNp +193025 Conj-CL +S-V-O +V-ADV-O +PrepNp +DetCL +Conj-CL +P-VC-ADV-S +PrepNp +DetCL +O-V +O-V +193037 Conj-CL +V-ADV-S +PrepNp +AdvpNp +Np-Appos +DetCL +S-V-O +NPofNP +VC-P +193047 Conj-CL +193049 CLaCL +S-V-ADV +DetNP +NPofNP +DetNP +193055 S-P-VC +DetCL +V-O +193059 Conj-CL +CLaCL +S-ADV-P +193063 CLaCL +S-VC-P +DetNP +NpPp +PrepNp +PrepNp +DetAdj +193071 S-P +DetCL +V2CL +PrepNp +DetCL +V2CL +193078 Conj-CL +193080 S2CL +NpaNp +DetCL +V2CL +193085 DetCL +V2CL +PtclCL +S2CL +DetCL +V2CL +193092 Conj-CL +S-ADV-VC-P +PrepNp +NPofNP +PrepNp +DetCL +V2CL +193100 Conj-CL +S-VC-P-ADV +DetCL +V-ADV +PrepNp +PrepNp +DetNP +NPofNP +193109 CLaCL +ClCl +S-V-IO-ADV-O +sub-CL +V-IO-S +DetNP +NPofNP +sub-CL +V-ADV-ADV +Conj2VP +193120 PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +193127 V-ADV-ADV +PrepNp +O-V +DetNP +NumpNP +NPofNP +DetNP +193135 ClCl2 +ClCl +Np2CL +Np2CL +193140 DetNP +DetCL +ClCl +V2CL +sub-CL +O2CL +DetNP +193148 Conj-CL +193150 PrepNp +that-VP +ADV-V-S +DetNP +NPofNP +193156 Conj-CL +S-ADV-V-O +ADV-V +DetNP +NPofNP +193162 Conj-CL +193165 Np2CL +PrepNp +ADV-V +Conj2Pp +AdvPp +PrepNp +193172 PrepNp +193174 Conj-CL +193176 ClCl +193178 Np2CL +ClCl +ADV-V-ADV-S +sub-CL +ADV-O-V +O-ADV-V +193185 Conj-CL +193187 ClCl2 +sub-CL +V-O-ADV +PrepNp +Conj3Np +193194 PtclCL +ADV-V +193197 Conj-CL +193199 ADV2CL +193201 Conj-CL +193203 Conj-CL +2CLaCL +ADV-S-V +DetCL +V-O +ADV-O +AdvpNp +193211 CLaCL +S-V-O +DetCL +ADV-V +DetNP +NPofNP +193218 V-O +193220 Conj-CL +193222 that-VP +V-S +S-V-ADV +Np-Appos +Demo-NP +DetCL +V2CL +NP-CL +Conj-CL +ADV-V +PrepNp +PrepNp +193235 Conj-CL +S-O-V +AdvpNp +NpPp +PrepNp +193241 Conj-CL +193244 Np2CL +193246 Conj-CL +193248 P-VC +193250 Conj-CL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +193260 Conj-CL +V-O-S +AdvpNp +DetNP +193265 Conj-CL +193267 V-ADV +PrepNp +DetNP +V-ADV +ADV-V-ADV +PrepNp +193274 Conj-CL +CLaCL +S-V-ADV-ADV +PrepNp +AdvpNp +ofNPNP +193281 ADV-V-ADV +V-O +DetNP +193286 Np2CL +ClCl2 +sub-CL +V2CL +V-O-ADV +Demo-NP +DetNP +PrepNp +sub-CL +notCLbutCL2CL +S2CL +DetNP +NPofNP +S-V +DetAdj +193302 Conj-CL +V-IO-S-ADV-ADV +PrepNp +V-O +193307 Conj-CL +ADV-ADV-V +VC-P +PrepNp +193312 Conj-CL +CLaCL +VC-S-P-ADV +DetNP +NPofNP +PrepNp +NPofNP +V-ADV +PrepNp +DetNP +193323 CLaCL +ADV-ADV-V-O +V-ADV +PrepNp +DetNP +V-ADV +PrepNp +DetNP +V-S-ADV +PrepNp +DetNP +193336 ClCl +ADV-V +193339 V2CL +sub-CL +ADV-V-ADV +PrepNp +193345 ADV-S-V +193347 V2CL +193349 CLaCL +S-V-ADV +Np-Appos +DetCL +VC-P +NPofNP +DetNump +193357 V-ADV-ADV +DetNP +V-O +193361 Conj-CL +193364 Np2CL +DetNP +NPofNP +DetNP +193369 Conj-CL +193371 NpPp +PrepNp +V-O +DetCL +V2CL +193377 Np2CL +V-ADV +PrepNp +193381 Conj-CL +CLaCL +V-S-O +Np-Appos +NpPp +PrepNp +ofNPNP +DetNP +DetNP +193391 V-O +DetNP +NPDetAdj +NPofNP +DetAdj +193397 Conj-CL +193399 V2CL +DetNP +V-ADV +PrepNp +193404 Conj-CL +ADV-V-O +V-O +DetNP +193409 Conj-CL +193411 PrepNp +DetNP +AdjpNp +V-ADV +PrepNp +Conj3Np +193418 NPofNP +DetNP +193421 ClCl2 +sub-CL +ADV2CL +PrepNp +V-ADV +PrepNp +NpaNp +193430 ClCl2 +ADV-VC-S-P-ADV +PrepNp +PrepNp +PrepNp +DetNP +ADV-V-O-ADV +DetNP +PrepNp +193440 Conj-CL +S-VC-P +NpaNp +ofNPNP +DetNP +193446 DetNP +NPofNP +DetNP +193450 Conj-CL +CLaCL +ADV-V +V-O +193455 V-ADV +PrepNp +DetNP +NPofNP +DetNP +193461 Conj-CL +S-V-ADV +DetNP +193465 Conj-CL +193467 CLaCL +V-O-ADV +PrepNp +NPofNP +DetNP +193473 V2CL +DetNP +NPofNP +193477 Conj-CL +193479 NpAdjp +CLaCL +V-O +S-V-ADV +PrepNp +DetNP +193486 V-O +S-P-VC +AdvpNp +PrepNp +193491 Conj-CL +193493 V2CL +193495 Np2CL +193497 Conj-CL +193499 PrepNp +V-O +S-P-VC +AdvpNp +PrepNp +193505 Conj-CL +193507 DetNP +193509 Np2CL +193511 Conj-CL +ClCl2 +V-S +AdvpNp +NpAdjp +S-V-ADV +AdjpNp +193519 ClCl +ADV-S-P-VC +PrepNp +AdvpNp +PrepNp +sub-CL +P-VC +AdvpNp +193528 Conj-CL +193530 DetNP +193532 Np2CL +O-V +193535 Conj-CL +ADV-ADV-V-S +ADV-V-S +193539 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +DetNP +193546 ClCl +V-S-O +DetNP +DetNP +NPofNP +DetNP +sub-CL +193554 that-VP +ADV-V-O-ADV +sub-CL +S-V-ADV +193559 Conj-CL +ADV-V-ADV +V-ADV +193563 Conj-CL +CLaCL +S-V-O-ADV +Np-Appos +DetNP +DetCL +V-O +V2CL +193572 ADV-V-ADV +V-O +193576 P-VC-S +DetCL +V-O +193580 Conj-CL +O-V-ADV +NpAdjp +V-ADV +PrepNp +193586 Conj-CL +ClCl2 +sub-CL +V-S +CLaCL +V-S +Conj3Np +DetNP +NPofNP +DetNP +193599 V-O-ADV-ADV +PrepNp +DetNP +NPofNP +193604 ClCl2 +sub-CL +S-VC-P +DetNP +V-IO +193610 Conj-CL +193612 ClCl2 +sub-CL +IO-V +ADV-V +2Advp_h1 +193618 Conj-CL +ClCl2 +sub-CL +V2CL +ADV-V +2Advp_h1 +193625 Conj-CL +ADV-V-S-ADV +PrepNp +DetNP +BeVerb +DetNP +NPofNP +DetNP +PrepNp +NPofNP +DetNP +NPofNP +DetNP +193639 Conj-CL +193641 Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +193647 Conj-CL +193649 PrepNp +193651 that-VP +S-VC +193654 Conj-CL +193657 ofNPNP +sub-CL +S-V-ADV +PrepNp +DetNP +NPofNP +193664 Conj-CL +ADV-S-V-O-ADV +V2CL +AdjpNp +DetNP +NPofNP +PrepNp +DetNP +193673 Conj-CL +V-O-ADV +V-O +193677 V-O +Conj3CL +S-V-O +DetNP +NPofNP +193683 V-O +O-IO-V +193686 V-O +S-P-VC +Np-Appos +193690 Conj-CL +S-V-O-ADV +DetNP +193694 S-VC-P +DetNP +NPofNP +DetAdj +193699 Conj-CL +193701 V-IO +S-V +193704 Conj-CL +193706 DetNP +PrepNp +NpaNp +DetNP +193711 DetNP +ADV-V-O-ADV +PrepNp +NP-Demo +DetNP +193717 Conj-CL +S-V-ADV +193720 that-VP +V-O-ADV +DetNP +V-ADV-ADV +PrepNp +All-NP +DetNP +ADV-V-ADV +2Pp +PrepNp +DetNP +PrepNp +193733 Conj-CL +193735 V2CL +PtclCL +S-P-VC +DetNP +193740 Conj-CL +ADV-V-O-ADV +193743 that-VP +P-VC +PrepNp +DetNP +NPofNP +PrepNp +NpAdjp +VC-S-P-ADV +AdvpNp +PrepNp +PrepNp +Demo-NP +DetNP +193757 Conj-CL +ClCl +S-ADV-V-ADV +DetNP +V-O +DetNP +sub-CL +CLaCL +V-ADV-O-ADV +BeVerb +PrepNp +AdjpNp +V-O +PrepNp +DetCL +V-ADV +PrepNp +193775 V-O +V-O +S-ADV-V +AdjpNp +PrepNp +193781 Conj-CL +V-O-ADV +PrepNp +NpAdjp +193786 Conj-CL +S-O-V-IO +193789 Conj-CL +V-S-ADV +NpaNp +DetNP +193794 DetNP +ADV-V-O +193797 Conj-CL +S-ADV-ADV-V-O-IO +DetNP +CLaCL +V-O-ADV +PrepNp +DetNP +NPofNP +193806 V2CL +V-O +NpAdjp +DetNP +193811 Conj-CL +ClCl +VC-P-S-ADV-ADV +aNpaNp +193816 DetNP +193818 DetNP +PrepNp +PronNP +DetNP +PrepNp +sub-CL +VC-P +P-VC-ADV +PrepNp +PrepNp +193829 Conj-CL +193831 V-O +Conj3Np +DetNP +193835 DetNP +193837 DetNP +PrepNp +CLaCL +V-IO-O-O2 +NP-Demo +DetNP +sub-CL +V-O +DetNP +193848 S-ADV-ADV-V-ADV-O +ADV-V +PrepNp +PrepNp +NP-Demo +DetNP +NPofNP +O-V-ADV +PrepNp +193858 ClCl +ADV-S +sub-CL +V-O-ADV +PrepNp +193864 Conj-CL +193866 NpAdjp +AdjpAdvp +BeVerb +193870 Conj-CL +ADV-V +V-O +193874 Conj-CL +193877 CLaCL +V-O +193880 V-IO-O +DetNP +S-V-ADV-ADV +BeVerb +PrepNp +NpaNp +NpAdjp +NpAdjp +V-ADV +PrepNp +DetNP +193892 PrepNp +DetNP +193895 Conj-CL +ADV-S-V-O-ADV +DetNP +V-O +V-O +DetNP +193902 Conj-CL +S-V-ADV +193905 ClCl +V2CL +V-O +193909 Conj-CL +193911 PrepNp +ClCl +PtclCL +ClCl +O-V-S +AdjpNp +O-V-ADV +AdjpNp +NPofNP +PrepNp +Conj-CL +ADV-V +V-O +193925 Conj-CL +CLaCL +S-V-ADV-ADV +NpAdjp +V-O +S-V +193932 V-S +DetNP +NPofNP +193936 Conj-CL +S-V-O +V-S +DetNP +NPofNP +193942 Conj-CL +CLaCL +V-O +NP-CL +DetCL +ADV-V-ADV +PrepNp +NpaNp +193951 PrepNp +O-V +193954 O-V-ADV +DetNP +DetNP +NPofNP +193959 Conj-CL +193961 sub-CL +V-O +V-O +NpAdjp +Np-Appos +NpAdjp +V-ADV +PrepNp +DetNP +V-ADV +PrepNp +DetNP +193974 Conj-CL +V-O-S +AdjpNp +NPofNP +NpaNp +DetNP +193981 NP-CL +S-V-O +Conj2VP +193986 Conj-CL +193988 V-ADV +PrepNp +193991 Np2CL +NPofNP +PrepNp +193995 Conj-CL +ClCl +CLaCL +ADV-V +PrepNp +194001 ADV2CL +PrepNp +DetNP +NPofNP +sub-CL +194007 NP-CL +194009 ADV-V +PrepNp +Conj3Np +DetNP +194014 DetNP +NP-CL +S-ADV-V +194018 NP-CL +S-ADV-V +194021 ADV-V-O +CLaCL +194024 DetNP +V-ADV +PrepNp +194028 ClCl +IO2CL +DetNP +V-O +194033 sub-CL +194035 sub-CL +ADV-O-V +PrepNp +AdjpNp +PrepNp +DetAdj +194042 Conj-CL +V-S-ADV-ADV +AdvpNp +AdjpNp +NpNump +PrepNp +V2CL +194050 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +Np-Appos +DetNP +DetCL +VC-P +ADV-V-O +NpaNp +194062 NP-CL +DetAdj +aCLaCL +194066 O-ADV +PrepNp +194069 O-ADV +PrepNp +194072 Conj-CL +194074 DetNP +194076 Np2CL +V-IO +sub-CL +ADV-V-O +O-V +194082 Conj-CL +ADV-V-O +V-O +DetNP +NPofNP +194088 Conj-CL +V-S-ADV +DetNP +V2CL +194093 Conj-CL +V-S-ADV +AdvpNp +DetNP +194098 ClCl +O-V +ClCl +V-O +sub-CL +S-VC-P +Np-Appos +DetNP +NPofNP +DetNP +DetAdj +194110 Conj-CL +V-O-S-ADV-ADV +AdvpNp +DetNP +V2CL +CLaCL +O-V-IO +194119 ClCl2 +sub-CL +S-VC-P +DetNP +NPofNP +DetAdj +V-O +194127 Conj-CL +194129 AdvpNp +PrepNp +P-S +DetNP +NPofNP +DetAdj +194136 Conj-CL +194138 NPofNP +DetNP +AdjpNp +V2CL +ClCl2 +PtclCL +S-VC-P +DetNP +V-O +NpaNp +194150 Conj-CL +194152 V2CL +DetAdj +V-O +CLaCL +194157 DetNP +sub-CL +P-VC +PrepNp +DetNP +PronNP +194164 aCLaCL +194166 ClCl +S-ADV +sub-CL +O-V +AdjpAdvp +O-V +194173 S-O-V +AdjpNp +194176 Conj-CL +194179 Np2CL +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +194186 Conj-CL +194188 ClCl +PtclCL +IO-V +ADV-ADV-VC-P +PrepNp +PrepNp +DetNP +194196 Conj-CL +CLaCL +VC-ADV-P +AdvpNp +NpAdjp +194202 CLaCL +ClCl +S-V-ADV-ADV +PrepNp +All-NP +DetNP +PrepNp +NpAdjp +S-V +DetNP +194213 V-S-ADV +DetNP +NPofNP +DetNP +194218 Conj-CL +194220 V-ADV +NpAdjp +DetNP +194224 Np2CL +PrepNp +NPofNP +DetNP +NPofNP +194230 Conj-CL +ADV-V +O-V +194234 Conj-CL +S-ADV-V-O-ADV +DetNP +V-O +DetCL +V2CL +DetNP +194242 ADV-S-P-VC +NP-Demo +DetNP +194246 Conj-CL +S-ADV-ADV-V +All-NP +DetNP +AdjpNp +V-ADV +PrepNp +NP-Demo +DetNP +V-O +DetCL +V2CL +V-O +DetNP +194261 Conj-CL +V-ADV-S-ADV +PrepNp +NpaNp +All-NP +DetNP +AdjpAdvp +194269 Np-Appos +DetCL +V-O-ADV +PrepNp +DetNP +V-O +194276 Conj-CL +194278 Np2CL +NP-CL +NpPp +NP-CL +NpAdjp +NpAdjp +ADV-P +VC-P +2Np +NpAdjp +AdjpaAdjp +194290 S-ADV-V-ADV +BeVerb +NPofNP +NpaNp +DetNP +194296 DetNP +PrepNp +Np-Appos +NPofNP +DetAdj +S-V-O +DetNP +NPofNP +DetNP +S-ADV-IO-V-O +V2CL +DetNP +DetNP +NPofNP +DetNP +194312 CLaCL +ADV-V-O-ADV +V2CL +194316 V-O-ADV +PrepNp +NP-CL +NpAdjp +ADV-ADV-V-S-ADV +BeVerb +194323 Conj-CL +CLaCL +P-VC +NPofNP +194328 S-V +194330 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +NP-CL +S-V-ADV-ADV +BeVerb +PrepNp +DetNP +NpaNp +DetNP +194343 that-VP +V-S +DetNP +NPofNP +194348 ADV-V-O +V2CL +NpaNp +194353 Conj-CL +Conj-CL +ADV-V-ADV +DetNP +PrepNp +DetNP +194360 Conj-CL +ADV-ADV-ADV-V-ADV +DetNP +NPofNP +DetNP +NpAdjp +PrepNp +DetNP +V-O +CL-NP +O-V +194372 Conj-CL +CLaCL +V-O +S-V-ADV +DetNP +PrepNp +DetNP +194380 ADV-ADV-V-O +V2CL +DetNP +NPofNP +Np-Appos +DetNP +194387 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +V-S-ADV +PrepNp +194396 NpNump +PrepNp +NpAdjp +V2CL +194401 Conj-CL +ClCl2 +CLaCL +P-VC-S +194406 V-O-ADV +DetNP +PrepNp +DetNP +194411 PrepNp +ADV-V-O-ADV +DetCL +V2CL +PrepNp +DetAdj +194418 notCLbutCL2CL +VC-P +V2CL +194423 V2CL +V-IO-ADV-ADV +ADV-VC-P +PrepNp +DetNP +194429 that-VP +V-S +Conj3CL +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +NPofNP +NpAdjp +194440 V2CL +194442 ADV-V +DetNP +AdjpNp +194446 Conj-CL +CLaCL +V-O +DetNP +NPofNP +194452 ADV-V-O-IO +V-ADV +PrepNp +DetNP +NP-all +NpaNp +DetNump +194460 All-NP +DetAdj +194463 Conj-CL +VC-P +Conj4Np +Np-Appos +DetNP +194470 Np-Appos +NPofNP +194473 NpPp +DetAdj +PrepNp +194477 V-ADV-O +PrepNp +DetNP +194481 Conj-CL +CLaCL +V-ADV-ADV-S +PrepNp +PrepNp +NP-Demo +DetNP +194489 V-O +194491 Conj-CL +CLaCL +S-ADV-V-ADV +DetNP +V2CL +PrepNp +DetNP +194499 ADV-V-O +V2CL +S-P +DetNP +194504 Conj-CL +V-ADV +ADV-V-O +PrepNp +DetCL +V2CL +194511 Conj-CL +194513 S-ADV-V-ADV +NpPp +PrepNp +PrepNp +PronNP +DetNP +BeVerb +PrepNp +NP-CL +NpAdjp +V-ADV-ADV +NpNump +PrepNp +ADV-S-P +194528 S-V-ADV-ADV +PrepNp +PrepNp +NP-Demo +All-NP +DetCL +V2CL +194536 Conj-CL +CLandCL2 +V-ADV +PrepNp +DetCL +CLaCL +V-S +194544 V2CL +194546 CLaCL +S-ADV-V-ADV +PronNP +V2CL +194551 S-V-ADV +DetNP +NPofNP +DetCL +ADV-V-O +194557 Conj-CL +194559 PrepNp +P-S +NP-CL +NP-Demo +DetNP +O-V-ADV-ADV +PrepNp +V2CL +194568 Conj-CL +V-ADV +194571 Conj-CL +194573 V2CL +NpAdjp +ADV-P +PrepNp +CLaCL +S-ADV-V-O +194580 ADV-V-O +DetCL +V-ADV-ADV +PrepNp +PrepNp +NP-Demo +DetNP +194588 Conj-CL +194590 O2CL +194592 Conj-CL +S-V-IO-O +NpaNp +NpPp +PrepNp +NP-CL +Np-Appos +DetAdj +S-VC-P-ADV +Np-Appos +NpAdjp +AdjpPp +PrepNp +NpaNp +194607 PrepNp +NpaNp +DetNP +194611 All-NP +DetNP +194614 CLaCL +ADV-V-O-S-ADV +NpaNp +DetNP +194619 DetNP +NPofNP +PrepNp +NPofNP +194624 V-O +194626 Conj-CL +194628 that-VP +S-VC-P +DetCL +V-O +V-O +DetNP +194635 Conj-CL +PtclCL +ADV-O-V-ADV +AdvPp +PrepNp +All-NP +AdjpNp +Demo-NP +PrepNp +ADV-S-V +194646 Conj-CL +S-V-O +AdvpNp +NpPp +NpAdjp +PrepNp +194653 ADV-V-ADV +CLaCL +V-ADV-ADV +PrepNp +DetNP +194659 ADV-V-O +DetNP +NPofNP +V-O +194664 AdvpNp +NPofNP +S-V-O +S-V +194669 Conj-CL +CLaCL +V-S-ADV +NPofNP +NpPp +PrepNp +PrepNp +DetNP +194678 CLaCL +ClCl +V-ADV +sub-CL +S-V +AdvpNp +DetNP +194686 O-ADV-V +194688 Conj-CL +194690 PrepNp +194692 Np2CL +intjNP +NpaNp +194696 NPofNP +NpAdvp +DetNP +DetCL +V-ADV +PrepNp +All-NP +ADV-V-S +DetNP +V-S +CLaCL +O-V-S +DetNP +194710 V-ADV +PrepNp +DetNP +NPofNP +194715 Conj-CL +ADV-V-IO-ADV-O +V-ADV +Conj2Pp +PrepNp +194721 PrepNp +All-NP +DetNP +PrepNp +All-NP +DetNP +NpPp +PrepNp +194730 Conj-CL +CLaCL +V-ADV +PrepNp +DetNP +NP-CL +ADV-V +194738 S-V-O +ADV-V +194741 Conj-CL +V-O-ADV +194744 ClCl +V-ADV +PrepNp +sub-CL +CLaCL +P-VC +PrepNp +194752 V-ADV-S +DetNP +194755 Conj-CL +V-ADV +DetCL +V-ADV +PrepNp +194761 Conj-CL +ClCl2 +V-ADV +PrepNp +DetCL +V-S-ADV +PrepNp +CLaCL +ADV-V +V-O +DetNP +194773 ADV-V-IO +V2CL +194776 Conj-CL +CLaCL +S-V +ofNPNP +DetNP +194782 V-O +194784 Conj-CL +S-P-VC-ADV +PrepNp +194788 Conj-CL +194790 PrepNp +ClCl +PtclCL +S-V-ADV +DetNP +NPofNP +VerbBe +PrepNp +ClCl +sub-CL +V-IO-ADV +PrepNp +DetNP +sub-CL +V-IO-O +DetNP +194807 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PronNP +DetNP +PrepNp +194815 V-O +V-S-ADV +NpaNp +DetNump +194820 NpPp +PrepNp +194823 that-VP +CLaCL +ADV-V-S +DetNP +194828 V-IO +194830 Conj-CL +S-V-O +NpaNp +NpPp +PrepNp +DetNP +194837 that-VP +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +194844 Conj-CL +194846 O-S-V +S-V-ADV +PrepNp +NPofNP +194852 S-IO +194854 Conj-CL +ADV-V-O +CLaCL +V2CL +194859 P-VC +O-V +194862 Conj-CL +194864 CLaCL +ADV-V +VerbBe +194868 ADV-S-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +194875 NpaNp +DetNP +NPofNP +194879 DetNP +NPofNP +that-VP +S-VC-P +194885 V-O +194887 V2CL +sub-CL +194890 NpaNp +194892 sub-CL +O-V +S-V +194896 Conj-CL +ADV-V-IO-O +O-V +NpaNp +DetNP +194902 DetNP +194904 Conj-CL +ClCl2 +CLaCL +ADV-V-S-ADV +PrepNp +DetNP +194911 V2CL +194913 V-O-ADV +AdjpNp +194916 Conj-CL +S-V-IO-O +ofNPNP +NpAdjp +194921 Conj-CL +ADV-ADV-V +V2CL +PrepNp +194926 Conj-CL +194928 PrepNp +194930 DetNP +NP-CL +NPofNP +O-V-ADV-ADV +PrepNp +ADV-VC-P +PrepNp +that-VP +V-S +V-S +All-NP +DetCL +V-ADV-ADV +PrepNp +NpaNp +DetNP +NPofNP +194948 DetNP +NpaNp +194951 PrepNp +194953 ADV-V-O-ADV +ofNPNP +DetNP +DetCL +V-O +DetNP +194960 Conj-CL +194962 that-VP +ADV-V-S +CLaCL +CLaCL +V-S +DetNP +194969 V-ADV-ADV +PrepNp +DetNP +AdjpNp +194974 V-ADV-S-ADV +PrepNp +DetNP +NPofNP +NpPp +PrepNp +NPofNP +PrepNp +All-NP +DetNP +194985 ADV-S-P +V-ADV +PrepNp +NPofNP +194990 Conj-CL +194992 DetNP +NPofNP +DetNP +NPofNP +PrepNp +194998 Conj-CL +S-V-ADV-ADV +PrepNp +DetNP +PrepNp +ADV-V-ADV-O +PrepNp +195006 Conj-CL +CLaCL +V-O-ADV +PrepNp +PrepNp +195012 ADV-V-O +V-O +DetNP +NPofNP +195017 Conj-CL +195019 V-ADV +PrepNp +DetCL +V-S-O +V-ADV +PrepNp +195026 V-ADV +PrepNp +DetNP +195030 Conj-CL +CLaCL +S-ADV-V-ADV-ADV +V-O +PrepNp +PrepNp +NpAdjp +195038 V-ADV-ADV-O +BeVerb +PrepNp +PrepNp +DetNP +DetNP +195045 Conj3CL +P-VC-S +PrepNp +DetNP +195050 S-VC-P +DetNP +PrepNp +DetNP +195055 P-VC-S +DetNP +195058 S-VC-ADV-P +PrepNp +PrepNp +DetNP +195063 CLaCL +S-ADV-V +PrepNp +195067 ADV-V-ADV-S +PrepNp +NP-CL +S-V +195072 CLaCL +P-S-VC +PrepNp +195076 S-VC-P +DetNP +DetNP +NPofNP +DetNP +195082 Conj-CL +CLaCL +S-ADV-V +DetNP +PrepNp +DetNP +195089 S-O-ADV-V +DetNP +195092 ClCl +V-S +NpAdjp +V-ADV +PrepNp +S-ADV-P +195099 ClCl +195101 PrepNp +sub-CL +V-ADV +PrepNp +DetNP +sub-CL +S-V-ADV +PrepNp +195110 notCLbutCL2CL +VC-S-P +DetNP +sub-CL +V-ADV +PrepNp +DetNP +195118 S-V-ADV +NP-CL +DetNP +NPDetAdj +DetAdj +S-V-O +All-NP +BeVerb +PrepNp +DetNP +195129 Conj3CL +P-VC +PrepNp +DetNP +195134 S-ADV-V +DetNP +PrepNp +195138 S-O-ADV-V +DetNP +195141 CLaCL +ADV-V +PrepNp +DetAdj +195146 S-O-ADV-V +DetAdj +195149 Conj-CL +195151 S-V-O +P-VC +NPofNP +NP-CL +Np-Appos +DetCL +V-ADV +PrepNp +DetNP +NPofNP +S-ADV-V +notPPbutPP +Conj3Pp +PrepNp +195166 PrepNp +NPofNP +195169 PrepNp +NPofNP +PrepNp +195173 Conj-CL +CLaCL +CLaCL +S-P-VC +DetNP +195179 V-ADV +PrepNp +195182 V-O +NpAdjp +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +NpPp +PrepNp +AdjpAdvp +NpaNp +195195 CLaCL +S-V-ADV +PrepNp +195199 V-ADV +195201 S-VC-P +195203 ADV-V +S-P-VC +DetCL +ADV-V +PrepNp +PrepNp +sub-CL +P-ADV-VC +195212 sub-CL +ClCl +ADV-S-V-O-ADV +PrepNp +DetNP +NPofNP +NP-all +AdvpNp +PrepNp +sub-CL +195223 DetNP +PrepNp +S-ADV-V +NpaNp +DetNP +195229 DetNP +PrepNp +Np-Appos +195233 O-S-V-ADV +195236 Np2CL +NPofNP +AdjpNp +DetCL +VC-P +PrepNp +DetNP +NPofNP +DetNP +195246 Conj-CL +195248 DetNP +NPofNP +DetNP +sub-CL +ClCl +V-ADV-S-ADV-O +PrepNp +DetAdj +PrepNp +NpaNp +195259 sub-CL +195261 S-P-VC +195263 Conj-CL +Conj3CL +V2CL +195267 ADV-V +195270 that-VP +S-ADV-VC-P +DetNP +195274 Conj-CL +195276 ClCl +Conj-CL +P2CL +S-P-VC +195281 Conj-CL +195283 ADV-VC +195285 P-VC-S +DetNP +195288 Conj-CL +195290 ADV2CL +195292 Conj-CL +195294 ClCl +ClCl +P-VC +sub-CL +O-V-IO +DetCL +V-O +O-V-ADV +PrepNp +195306 NPofNP +195308 PrepNp +DetAdj +V-O +DetNP +NPofNP +sub-CL +V-S +Np-Appos +DetNP +195318 Conj-CL +S-VC-P +V2CL +PrepNp +DetNP +195324 Conj-CL +CLaCL +V-O +195329 Conj-CL +195331 sub-CL +S-ADV-VC-P +Conj3Np +DetNP +195337 DetNP +195339 V-IO-S-ADV +DetNP +195342 ClCl +S-V-ADV +PrepNp +ADV-V-S +NPofNP +Np-Appos +O-S-ADV-V +NP-CL +DetCL +ADV-V +PrepNp +195354 ADV-ADV-VC-S-P +V-O +ofNPNP +DetNP +NPofNP +DetNP +195361 S-ADV-V-ADV +PrepNp +PrepNp +DetNP +NP-CL +ADV-V-S +BeVerb +DetNP +195370 CLaCL +ADV-V-O +DetNP +S-V-ADV +DetNP +PrepNp +195378 ClCl +ClCl +ClCl2 +V2CL +P2CL +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-O +DetNP +NPofNP +DetNP +S-VC-P +195394 ADV-S-V +PrepNp +PrepNp +NP-CL +195399 S-P-VC +PrepNp +P-ADV-VC +CLaCL +S-ADV-V-O +195405 ClCl2 +sub-CL +V-IO +DetNP +ADV-V-S-ADV +PrepNp +ADV-V +PrepNp +195414 Conj-CL +V-S-ADV +195417 that-VP +CLaCL +V-O +S-V-ADV-ADV +DetNP +PrepNp +PrepNp +195425 V-ADV +PrepNp +195428 CLaCL +S-ADV-V-O +195432 Np2CL +DetCL +V-O-ADV +V-ADV +PrepNp +ClCl2 +PtclCL +ADV-V-O +PrepNp +S-V-ADV +DetNP +Conj2VP +195445 PrepNp +S-VC-P +DetCL +V-ADV +PrepNp +NpAdjp +195452 CLaCL +S-V +195456 that-VP +S-VC-P +DetNP +NPofNP +DetNP +195462 CLaCL +ADV-ADV-V-S +DetNP +NpaNp +DetNP +195468 PpNp2Np +PrepNp +DetNP +NPofNP +195474 V-O +S-V +DetNP +ClCl2 +V2CL +P2CL +DetNP +NPofNP +DetNP +195484 Conj-CL +CLaCL +V-S-O +DetNP +NumpNP +S-V +195491 V-O +DetNP +195494 Conj-CL +195496 DetNP +CLaCL +V2CL +195500 V-O +S-V +O-V +195504 Conj-CL +195507 Np2CL +NP-CL +S-VC-ADV-P +V2CL +Np2CL +195514 CLaCL +V2CL +195517 V2CL +195519 Conj-CL +CLaCL +CLaCL +V2CL +195524 V-O +ADV-V +195527 ADV-V-ADV +PrepNp +NP-Demo +DetNP +195532 S-VC-P +PrepNp +195535 VC-S-P +Np-Appos +DetNP +NPofNP +Np-Appos +NpPp +PrepNp +Np-Appos +DetNump +DetCL +CLaCL +V-ADV +PrepNp +195549 V-O +195551 CLaCL +V-S-ADV-O +Np-Appos +DetNP +NPDetAdj +DetAdj +195559 V-O +DetNP +NP-CL +S-VC-P +BeVerb +195565 V-O-ADV +PrepNp +DetNP +195570 V-O +DetNP +S-VC-P +Np-Appos +DetNP +NPofNP +195577 S-VC-P +NP-CL +S-VC-P +195581 CLaCL +ADV-V-O +DetNP +V-ADV +PrepNp +DetNP +195588 CLaCL +V-O +195592 DetNP +V-O +195595 Conj-CL +VC-S-P +DetNP +2Pp +PrepNp +PrepNp +DetNP +NPofNP +NpaNp +195606 CLaCL +V-S-O +DetNP +195612 O-V +CLaCL +O-V-S-ADV +PrepNp +DetNP +195618 S2CL +DetNP +Np-Appos +Np-Appos +NPofNP +DetNP +NpPp +PrepNp +195627 Conj-CL +195629 O-V-S +P-VC +PrepNp +AdjpNp +195635 DetNP +CLaCL +V2CL +195639 V2CL +195641 CLaCL +V-S-O +S-V-ADV +DetNP +PrepNp +195648 PrepNp +195650 NP-CL +P-S-ADV-VC +PrepNp +195655 ADV-O-V +195657 CLaCL +V-S +195661 ADV-O-V +PrepNp +DetCL +O-S-V +VC-P-S +PrepNp +DetNP +195671 Np2CL +S-VC-P +DetNP +NPofNP +DetNP +S-P-VC +NPofNP +DetNP +195680 CLaCL +V-S +195684 ClCl2 +sub-CL +195687 that-VP +V-O-ADV +PrepNp +DetNP +V2CL +195693 O-V +AdjpAdvp +195696 Conj-CL +195698 PtclCL +PtclCL +195701 V-O +CLaCL +S-V +DetNP +195706 S-V-ADV +DetNP +NPofNP +DetNP +Conj2VP +195712 PrepNp +DetNP +NPofNP +DetNP +195717 Conj-CL +CLaCL +ADV-S-V-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +NPofNP +DetNP +195727 VC-S-P +DetNP +NPofNP +DetNP +195732 Conj-CL +V-S-ADV +AdvpNp +NpaNp +DetNP +195738 DetNP +NPofNP +PrepNp +DetNP +195743 Conj-CL +ClCl2 +V-S +195747 DetNP +NPofNP +DetNP +PrepNp +O-ADV-V +195753 Conj-CL +195755 DetNP +ClCl +195758 NpaNp +195760 Np2CL +ADV-V-S +DetNP +NPofNP +195766 DetNP +NPofNP +DetNP +O-V +NP-CL +PtclCL +O-V-IO +195774 Conj-CL +V-ADV-S +BeVerb +NpAdjp +NpPp +NpNump +AdjpNp +PrepNp +DetNP +NPofNP +DetAdj +V-ADV +PrepNp +NpNump +Conj2Nump3 +195791 DetNP +V-O-ADV +DetNP +195795 Conj-CL +V-O-ADV +PrepNp +195799 Conj-CL +195801 CLaCL +V-ADV +195804 V-IO +DetNP +195807 Conj-CL +S-V +195810 Conj-CL +ClCl2 +sub-CL +CLaCL +V-S-O +DetNP +Np-Appos +DetNP +P-VC +195820 CLaCL +195822 P-VC +195824 V-S +Np-Appos +DetNP +DetCL +V-O +DetNP +CLaCL +V-O-S +DetNP +DetNP +195836 ClCl +CLaCL +S-ADV-O-V +All-NP +DetNP +AdjpNp +195844 sub-CL +V2CL +DetAdj +S-V-O-ADV +DetNP +AdjpNp +PrepNp +195852 CLaCL +CLaCL +O-V-S-ADV +Demo-NP +NPofNP +DetNP +DetNP +PrepNp +NPofNP +DetNP +195863 V-O +DetNP +NPofNP +195867 V-ADV-S +PrepNp +DetNP +NPofNP +195872 CLaCL +ADV-V-ADV-S +PrepNp +PrepNp +Conj4Np +195878 DetNP +NPofNP +195881 DetNP +195883 DetNP +NPofNP +195886 ADV-V-ADV +AdjpNp +AdvpAdjp +195890 Conj-CL +CLaCL +P-VC-S +DetNP +NPofNP +DetAdj +195897 V-ADV-S +PrepNp +DetNP +195901 Conj-CL +CLaCL +V-ADV-O +PrepNp +DetNP +S-V +NpaNp +DetCL +V-O +Conj3Np +195914 DetNP +195916 Conj3CL +ClCl +ADV-O-V-ADV +V-O-ADV +PrepNp +PrepNp +DetNP +O2CL +aNpaNp +195926 DetNP +195928 DetNP +195930 CLaCL +O-V +ofNPNP +DetNP +DetNP +195936 O-V +DetNP +195940 DetCL +O-V +DetNP +ClCl +V-O-ADV +ADV-V-O-O2 +DetNP +NPofNP +DetNP +NPofNP +NPofNP +195953 V-S +DetNP +NPofNP +195957 VerbBe +S-V-O +DetNP +NPofNP +DetNP +NPofNP +195964 Conj-CL +CLaCL +V-S +DetAdj +195971 AdjpNp +sub-CL +O-V +195975 CLaCL +V-S +195979 CLaCL +V-O +NP-Demo +DetNP +195984 ADV-V-O +PrepNp +AdjpNp +195988 Conj-CL +195990 DetAdj +CLaCL +ADV-V-S +NumpNP +Conj2Nump +195996 NP-Demo +DetNP +195999 S-ADV-V-O +PrepNp +AdjpNp +196003 Conj-CL +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +196011 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +CLaCL +196018 V-S +DetNP +NPofNP +O-V +196023 V-O +NpaNp +DetNP +196027 DetNP +NP-CL +O-V-S +DetNP +196032 Conj-CL +ClCl2 +sub-CL +VC-P-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +V-O +ofNPNP +DetNP +NP-CL +O-V +196052 Conj-CL +CLaCL +S-ADV-V-O-IO-ADV +PronNP +PrepNp +DetCL +S-V-O +196060 sub-CL +ClCl +196063 ADV-O-V +S-V-ADV +PrepNp +DetNP +sub-CL +S-V-O +S-VC-P +PrepNp +DetNP +196073 Conj-CL +ClCl +V-S +Np-Appos +NpPp +PrepNp +DetNP +NPofNP +DetAdj +P-S-ADV +196084 CLaCL +S-V-ADV-ADV +PrepNp +196090 Np2CL +196092 that-VP +ADV-V-ADV +PrepNp +sub-CL +196097 O-V +NP-CL +Demo-NP +DetNP +O-S-V +sub-CL +ADV-VC-S-P +DetNP +PrepNp +196107 CLaCL +V-S +196111 PtclCL +PtclCL +196114 ClCl2 +sub-CL +ADV-S-V-ADV +ADV-V-O +V-O +DetNP +NPofNP +DetNP +196124 PrepNp +DetNP +ClCl +ADV-V-S-O-ADV +V2CL +P-VC +PtclCL +V-O +CLaCL +ADV-ADV-V +PrepNp +DetNP +NPofNP +DetNP +NPofNP +196140 V2CL +196143 PtclCL +PtclCL +196146 ClCl2 +sub-CL +ADV-S-V-ADV +PrepNp +NpaNp +196152 ADV-V-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +196159 CLaCL +S-P-VC +DetCL +V-ADV +PrepNp +DetNP +196166 S-P-VC +DetCL +V-ADV +PrepNp +DetNP +196172 ClCl +ADV-V +sub-CL +196176 V-S +S-V-ADV +196179 CLaCL +S-ADV-V +DetNP +ADV-V +196184 CLaCL +O-V +DetNP +NPofNP +196190 CLaCL +ADV-V +196193 ADV-V +196195 P-VC-S +All-NP +DetCL +V-ADV +PrepNp +DetNP +196202 CLaCL +V-S +196206 ADV-V-S +S-V +196209 CLaCL +V-S +196213 CLaCL +S-VC-P +DetNP +NPofNP +DetNP +196219 O-ADV-V +196221 PtclCL +PtclCL +196224 that-VP +CLaCL +CLaCL +O-V +O-V +196230 O-V +O-V +196233 O-ADV-V +DetNP +NPofNP +196237 ClCl2 +sub-CL +CLaCL +O-V-IO +DetAdj +196243 ADV-V +ADV-ADV-V +sub-CL +V-IO-O +DetAdj +196249 Conj-CL +196251 PrepNp +DetNP +sub-CL +ADV-S +Np-Appos +DetCL +ADV-V +PrepNp +DetNP +DetNP +NPofNP +DetNP +196264 Conj-CL +ClCl2 +sub-CL +S-V-O-ADV +DetNP +PrepNp +DetAdj +ClCl +ADV-V-S +V-S +DetNP +NPofNP +DetNP +sub-CL +S-V-O +All-NP +DetCL +V-ADV +PrepNp +NpAdjp +196285 Conj-CL +ClCl +ADV-V-S-O +DetNP +DetNP +sub-CL +ClCl +O-V +DetNP +NPDetAdj +DetAdj +sub-CL +CLaCL +S-ADV-V +All-NP +DetCL +V-ADV +PrepNp +196304 V-O +NpAdjp +196307 Conj-CL +notCLbutCL2CL +196310 DetNP +DetNP +PrepNp +DetNP +sub-CL +V-O +DetNP +sub-CL +V-S-ADV +DetNP +PrepNp +196322 S-ADV-V +DetCL +V-ADV +PrepNp +196328 DetCL +ADV-V +sub-CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +AdjpNp +NPofNP +DetNP +196340 Conj-CL +196342 DetNP +that-VP +CLaCL +S-V-ADV +DetNP +PrepNp +DetNP +196350 ClCl +CLaCL +V-S-ADV-O +DetNP +DetNP +196356 O2CL +DetNP +sub-CL +VC-P-S +ofNPNP +DetNP +196363 Conj-CL +ClCl +CLaCL +S-V-O +All-NP +DetCL +O-V +DetNP +196372 ADV-V-ADV +PrepNp +DetNP +sub-CL +ADV-V-S +DetNP +NPofNP +196380 Conj-CL +ClCl +S-V-ADV +DetCL +V-O +DetNP +PrepNp +DetNP +sub-CL +196390 ofNPNP +DetNP +sub-CL +ADV-V +PrepNp +BeVerb +196397 CLaCL +ADV-V-S-ADV +PrepNp +NpaNp +DetNP +196403 DetNP +NPofNP +PrepNp +DetNP +AdjpNp +196409 CLaCL +ADV-V-ADV +PrepNp +196413 V2CL +196415 Conj-CL +CLaCL +196418 BeVerb +AdvpNp +PrepNp +PrepNp +DetNP +sub-CL +S-P-VC-ADV +196426 CLaCL +V2CL +196429 V2CL +196431 Conj-CL +ADV-V-ADV-S +BeVerb +PrepNp +DetNP +196437 Conj-CL +V-S-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +PrepNp +196445 Conj-CL +CLaCL +V-ADV +PrepNp +DetNP +196453 Np2CL +ClCl +S-VC-P-ADV +PrepNp +PrepNp +DetNP +IO-S-V +S-V +196462 S-V-ADV +PrepNp +196465 CLaCL +V-S +196469 ClCl +ADV-V-S-O +V-O +sub-CL +ADV-V-IO-ADV +BeVerb +PrepNp +DetNP +196479 PronNP +that-VP +196482 CLaCL +ADV-VC-S-P +DetNP +196486 that-VP +V-ADV +VerbBe +PrepNp +196491 S-P-VC +DetCL +V-O +DetNP +196496 Conj-CL +S-ADV-V-ADV +Np-Appos +DetNP +NPofNP +DetNP +DetCL +CLaCL +V2CL +196506 V-O +PrepNp +DetNP +NPofNP +DetNP +196512 Conj-CL +S-V +Demo-NP +DetNP +NPDetAdj +DetAdj +196519 V-S +CLaCL +S-V +196523 S-V +196525 S-P-VC +DetCL +ADV-V +PrepNp +196530 CLaCL +S-P-VC +DetCL +VC-P +PrepNp +DetNP +PrepNp +DetNP +196539 ADV-V +PrepNp +DetNP +196543 S-P-VC +DetCL +ADV-V +PrepNp +DetNP +PrepNp +196550 CLaCL +196552 O-V +Conj2VP +196556 O-S-V +DetNP +NPofNP +196561 DetCL +V-O +ofNPNP +DetNP +that-VP +S-P-VC +DetNP +196569 Conj-CL +196571 S-O-V +O-V-S +DetNP +DetNP +NPofNP +DetNP +ADV-ADV-V-O +PrepNp +DetNP +196581 CLaCL +S-V-O +DetNP +DetNP +196586 O-V-ADV +PrepNp +DetNP +NPofNP +196591 S-V-O +DetCL +V-ADV +PrepNp +DetNP +NpAdjp +196598 Conj-CL +CLaCL +S-ADV-V-O +DetCL +V-O +DetNP +196605 S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +196611 Conj-CL +ClCl2 +sub-CL +196615 V-S +DetNP +196618 DetNP +that-VP +196621 S-O-V +AdjpNp +Conj2VP +196626 S2CL +sub-CL +CLaCL +S-ADV-V +NpPron +196632 S2CL +DetNP +NPofNP +CLaCL +V-O +DetNP +196639 V-ADV-ADV +PrepNp +DetNP +196643 Conj-CL +V-S +S-V-ADV +PrepNp +DetNP +196649 Conj-CL +V-ADV +PrepNp +NpPp +NpAdjp +NPofNP +DetNP +VC-P +PrepNp +DetNP +NP-CL +O-V-S-IO +Np-Appos +DetNP +NPofNP +196665 Conj-CL +VC-P-S +NPofNP +DetNP +196670 Conj-CL +S-ADV-V-ADV-ADV +DetNP +V-ADV +PrepNp +DetNP +PrepNp +DetNP +196679 S-VC-P +PrepNp +196682 V-S-ADV +NpPp +PrepNp +DetNP +V-O +196689 DetNP +V-IO-O +V2CL +196693 Conj-CL +196695 DetNP +NPofNP +PrepNp +DetNP +sub-CL +O-V +196702 Conj-CL +ClCl +196705 Np-Appos +DetNP +DetNP +ADV-S-ADV-O-V +NpAdjp +P-VC +PrepNp +Np-Appos +NpAdjp +P-VC +V2CL +sub-CL +ADV-V-S-ADV +196719 CLaCL +V-S +196723 ClCl2 +sub-CL +V-O +NpaNp +DetNP +NPofNP +DetNP +196731 P-VC-S +DetCL +196734 V-IO-O +V2CL +CLaCL +PtclCL +S-V-O +196740 PtclCL +V-IO-O +NpAdjp +V2CL +196747 Np2CL +CLaCL +ADV-O-V +196751 S-VC-P +DetNP +Conj-CL +ADV-V-O +Np-Appos +DetNP +DetCL +V2CL +196760 PtclCL +S-P-VC-ADV +NP-CL +NPofNP +DetNP +NPofNP +CLaCL +S-V-IO-O +DetNP +196770 CLaCL +S-ADV-V +PrepNp +196774 S2CL +NpaNp +DetNP +NPofNP +196779 DetNP +NPofNP +196782 CLaCL +V-S +196786 CLaCL +S-V-ADV +All-NP +DetCL +V-ADV +PrepNp +NP-Demo +DetNP +196795 CLaCL +S-ADV-V-ADV +PtclCL +S-V-ADV +PrepNp +DetNP +NP-CL +O-S-V-IO +2Advp_h1 +PrepNp +DetNP +196807 S-VC-ADV-P +DetNP +NP-CL +O-V-IO +PrepNp +NPofNP +NpAdjp +V-ADV +PrepNp +NpAdjp +196819 PrepNp +DetNP +196822 Np2CL +Demo-NP +DetNP +sub-CL +CLaCL +ADV-V +196829 V-ADV-ADV +V2CL +196833 ClCl +V2CL +CLaCL +V-O +DetNP +NPofNP +196840 V-ADV +196842 CLaCL +V-S +DetNP +196847 ADV-V-O +196850 DetNP +ClCl +ClCl +196854 that-VP +O-ADV-V +sub-CL +CLaCL +O-V +NumpNP +196861 S-ADV-VC-P +O-ADV-V +ofNPNP +O-O2-V +196867 DetNP +196869 Np2CL +196871 that-VP +P-VC-S +CLaCL +S-ADV-V +DetNP +NPofNP +PrepNp +NP-Demo +DetNP +196882 that-VP +P-VC-S +PrepNp +DetNP +NP-CL +S-V +ADV-V +196891 DetNP +196893 Np2CL +that-VP +196896 sub-CL +ADV-V-O +aPpaPp +196900 PrepNp +NP-Demo +DetNP +196904 PrepNp +DetNP +196907 S-V-O +O-ADV-V +196911 O-V +sub-CL +S-P-VC +DetNP +PrepNp +DetAdj +196918 Conj-CL +ClCl +196921 V-S +196923 P-VC +sub-CL +S-V-O-ADV +DetNP +AdjpNp +DetNP +PrepNp +NpaNp +196932 sub-CL +ADV-S-O-V-O2 +DetNP +DetCL +V-ADV +196938 CLaCL +P-S +DetNP +196942 S-V +S-ADV-V +DetCL +V2CL +PrepNp +NpaNp +196951 DetNP +ClCl +196954 that-VP +S-V +Np-Appos +DetCL +VC-P +ClCl2 +sub-CL +V-S +V-IO-O +196965 DetNP +S-VC +Np-Appos +DetCL +V-IO +196971 Conj-CL +CLaCL +ADV-V-S +PrepNp +DetNP +NPofNP +196978 ClCl +V2CL +sub-CL +ADV-V +PrepNp +196984 sub-CL +196986 CLaCL +O-V +196989 ADV-V-ADV +PrepNp +196992 Conj-CL +CLaCL +CLaCL +V-O-S +DetNP +NPofNP +DetNP +197000 V-ADV +PrepNp +DetNP +197005 DetNP +ClCl +ClCl2 +V2CL +V-O +NP-CL +S-V-IO-O +All-NP +O-V +PtclCL +S-VC-P +DetNP +197018 CLaCL +V-ADV +PrepNp +DetNP +197023 V-ADV +PrepNp +197026 ADV-V-O-S-ADV +PrepNp +DetNP +DetNP +197032 Np2CL +197034 Conj-CL +197037 S-O-V-ADV +V2CL +197040 Conj-CL +197042 DetNP +PrepNp +PtclCL +S-V-IO-ADV +V2CL +197049 DetNP +S-VC-P +AdjpNp +that-VP +CLaCL +V-O +DetNP +NPofNP +DetCL +V-O +197060 V-O +ofNPNP +DetNP +197064 PtclCL +197066 that-VP +CLaCL +P-S-VC +197070 S-V +DetNP +197074 CLaCL +V-O +DetNP +NPofNP +197080 DetNP +that-VP +P-VC-ADV +PrepNp +197086 ADV-S-O-V +DetCL +V2CL +197090 V-O-ADV +PrepNp +NpAdjp +sub-CL +ADV-V-S +NpaNp +DetCL +V2CL +197099 DetCL +V2CL +197102 Conj-CL +197104 PrepNp +DetNP +that-VP +CLaCL +S-VC-P +DetCL +V2CL +197112 S-P +DetCL +V2CL +197116 S-V-O-ADV +V-O +O-ADV-S-V +197120 CLaCL +S-V +197123 S-ADV-V +PrepNp +DetNP +NPofNP +197128 Conj-CL +ADV-S-V-ADV-ADV +PrepNp +NP-Demo +DetNP +NPofNP +DetNP +PrepNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +197142 that-VP +V-IO-O +All-NP +O-V +197147 Conj-CL +ClCl2 +sub-CL +V-ADV-S +PrepNp +DetNP +V-O +S-V-ADV +PrepNp +197157 Conj-CL +V-ADV-ADV +NumpNP +197161 Conj-CL +CLaCL +S-V-ADV +AdjpAdjp2 +PrepNp +DetNP +NPofNP +197170 DetNP +that-VP +197173 PrepNp +DetNP +AdjpNp +sub-CL +CLaCL +S-V +197181 that-VP +S-VC-ADV-P +DetNP +NPofNP +DetNP +197187 Conj-CL +ADV-V-ADV-ADV +PrepNp +DetNP +NumpNP +PrepNp +DetNP +197195 Conj-CL +197197 PronNP +that-VP +S-ADV-O-ADV-V +PrepNp +DetNP +AdjpNp +197204 Conj-CL +ClCl +197207 sub-CL +V-ADV +PrepNp +DetNP +DetNP +V-O +All-NP +O-V-ADV-ADV +PrepNp +PrepNp +DetNP +sub-CL +S-V-ADV +AdvpNp +PrepNp +DetNP +197224 Conj-CL +V-ADV-ADV +PrepNp +DetNP +NP-CL +NPofNP +DetNP +ADV-V-O-O2 +DetNP +197234 Conj-CL +V-S +AdjpNp +NP-CL +S-V-ADV +ofNPNP +DetNP +PrepNp +197243 CLaCL +S-ADV-V-ADV +197246 that-VP +S-V-ADV +2Pp +PrepNp +DetNP +PrepNp +DetNP +PrepNp +197255 ClCl +197257 that-VP +CLaCL +V2CL +197261 V-O +ofNPNP +DetNP +sub-CL +V-O +V2CL +197268 Conj-CL +197270 DetNP +PrepNp +ClCl2 +sub-CL +ADV-O-V +NpaNp +197277 ADV-V +2Advp_h1 +197281 PrepNp +DetAdj +197284 Np2CL +sub-CL +V-S +DetNP +NPofNP +197291 DetNP +ClCl +V2CL +S-V +DetNP +NPofNP +197298 CLaCL +V-S-O +DetNP +DetNP +NP-CL +O-V-IO-S +DetNP +197306 V2CL +197308 Conj-CL +ClCl2 +ADV-S-V +S-V-O-ADV +DetNP +197314 that-VP +S-V +DetNP +NPofNP +197319 Conj-CL +197321 DetNP +PrepNp +ADV-P-VC +PrepNp +197326 Conj-CL +197328 that-VP +ADV-ADV-V-O-S +NpAdjp +DetNP +197333 Conj-CL +CLaCL +197336 DetNP +that-VP +ADV2CL +Demo-NP +DetNP +NP-CL +197343 ADV-V-IO-S +PrepNp +DetNP +DetNP +NPofNP +197349 V-S +NpaNp +197352 NP-all +DetNP +NPofNP +197356 Conj-CL +ADV-O-V-S-ADV +Demo-NP +AdjpNp +DetNP +V-ADV +2Pp +PrepNp +DetNP +PrepNp +DetNP +197368 CLaCL +ADV-V-S +PrepNp +NPofNP +DetAdj +197374 V-S-ADV +PrepNp +197377 Conj-CL +VC-P-ADV-S +PrepNp +DetNP +PrepNp +DetAdj +NpAdjp +Np-Appos +DetCL +VC-ADV-P +O-V +NumpNP +197390 ClCl +ClCl +ADV-V-S +PrepNp +NPofNP +Np-Appos +DetCL +V2CL +NpNpNp +V-O +DetNP +ofNPNP +DetNP +sub-CL +ClCl +CLaCL +S-ADV-V-ADV +PrepNp +PrepNp +DetNP +197411 V-O +DetNP +Conj-CL +ClCl +S-ADV-P-VC +DetAdj +V-ADV +PrepNp +DetNP +NPofNP +DetNP +S-ADV-V-ADV +197424 Conj-CL +VC-S-P-ADV +AdjpNp +ADV-V-ADV +NumpNP +Conj2Nump +197431 PrepNp +DetNP +NPofNP +197436 DetNP +CLaCL +O-V +S-V +197442 that-VP +ADV-ADV-V +AdjpNp +V-O +P-VC +197449 DetCL +V2CL +197452 Np2CL +197454 sub-CL +197456 sub-CL +V-S +DetNP +PrepNp +DetNP +197462 ADV-S-ADV-V +PrepNp +ADV-V-S +PrepNp +197468 DetNP +ClCl +V2CL +CLaCL +V-O +DetNP +NPofNP +197476 V2CL +197478 Conj-CL +CLaCL +ADV-VC-P-S +DetNP +197483 CLaCL +V-O +DetNP +NPofNP +197488 V2CL +197490 Conj-CL +VC-P-ADV +PrepNp +Demo-NP +DetNP +197496 Conj-CL +197498 DetAdj +DetCL +V2CL +CLaCL +P-VC +197504 ADV-V-ADV-S +V-O +DetNP +197508 Conj-CL +197510 S-V-IO +Np2CL +DetCL +V-O-O2 +CLaCL +V-O +DetNP +NPofNP +197519 V2CL +197522 P-VC-S +Np-Appos +DetNP +DetCL +197527 CLaCL +V2CL +197530 V2CL +197532 Conj-CL +197534 DetCL +V2CL +P-VC +sub-CL +ClCl +S-V +DetNP +S-VC-P +PrepNp +DetNP +197545 CLaCL +ADV-V-O-S-ADV +PrepNp +DetNP +PrepNp +DetNP +197555 sub-CL +ADV-S-ADV-V +AdjpNp +197559 CLaCL +V-S +DetNP +197564 DetAdj +that-VP +P-VC-S +DetCL +V-O-O2 +197570 Conj-CL +197572 PrepNp +DetAdj +DetNP +sub-CL +O-V-ADV +PrepNp +197579 Conj-CL +197581 ClCl +S-ADV-V +DetNP +NPofNP +PrepNp +S-V +197588 Conj-CL +ClCl +ADV-ADV-V-O-S +PrepNp +O-V +DetAdj +sub-CL +notCLbutCL2CL +ADV-V-O +DetNP +O2-V-O-ADV +AdvpNp +NpAdjp +DetNP +O2-O-V-ADV +DetNP +197605 Conj-CL +CLaCL +V-S +DetNP +197611 PtclCL +PtclCL +197614 ClCl +ADV-V-S-O +DetNP +V-ADV-O +PrepNp +sub-CL +ADV-V-O +O-S-V +DetNP +197624 Conj-CL +197626 PtclCL +O-S-V +AdvpNp +DetNP +197631 Conj-CL +CLaCL +CLaCL +S-V-O +DetNP +DetNP +197638 V-IO-O +All-NP +O-S-V +197643 AdjpNp +AdjpAdvp +sub-CL +S-V +197648 Conj-CL +ClCl2 +sub-CL +CLaCL +S-V-O +DetNP +DetAdj +197656 V2CL +ADV-S-O-V +AdvpNp +DetNP +O-V +197662 Conj-CL +197664 S-V-O +DetNP +O-V-IO +NP-all +DetNP +DetNP +sub-CL +197672 DetNP +sub-CL +V-O +DetNP +197677 S-ADV-V-O +DetCL +ADV-V-O +DetNP +Np-Appos +DetNP +DetCL +V-O +197686 PtclCL +PtclCL +197689 that-VP +CLaCL +S-V-O +DetCL +CLaCL +O-V +DetNP +NPofNP +197698 V-O +DetCL +V-O +NpAdjp +197703 CLaCL +ADV-ADV-V +PrepNp +197707 V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +197713 PtclCL +PtclCL +197716 that-VP +ClCl +CLaCL +V-S +197721 P-VC +sub-CL +CLaCL +S-V-O +DetAdj +DetNP +NPofNP +DetNP +NPofNP +DetNP +197732 S-V +DetCL +V2CL +197736 Conj-CL +197738 sub-CL +S-V-O-ADV +DetNP +PrepNp +AdvpNp +DetNP +O-V-ADV +PrepNp +197747 Conj-CL +197749 O-V +sub-CL +P-VC +NPofNP +197754 ClCl +ADV-V-O +sub-CL +197758 NP-CL +CLaCL +ADV-S-V-O +PrepNp +All-NP +NpPp +PrepNp +DetNP +DetNP +NPofNP +197769 V2CL +ClCl +S-ADV +DetCL +O-V +DetAdj +PrepNp +NPofNP +S-ADV +DetCL +O-V +DetAdj +PrepNp +NPofNP +197785 V-ADV-O +PrepNp +CLaCL +197789 sub-CL +V2CL +197793 DetNP +NPDetAdj +DetAdj +sub-CL +notCLbutCL2CL +V-O +DetNP +NPDetAdj +DetAdj +O2CL +DetNP +NPofNP +DetCL +V-O +197808 ClCl2 +sub-CL +S-V-ADV +PrepNp +S-ADV-VC-P +DetNP +NPofNP +197816 CLaCL +P-VC-S +DetCL +V-ADV +PrepNp +197823 that-VP +P-VC-S +DetNP +NP-CL +O-V-ADV +PrepNp +197830 CLaCL +S-V-ADV +PrepNp +197834 V-IO +DetNP +197837 Conj-CL +CLaCL +S-ADV-ADV-O-V +PrepNp +DetNP +197844 sub-CL +S-V +197847 CLaCL +S-VC-P +Np-Appos +DetNP +DetCL +CLaCL +V2CL +197855 V2CL +197857 S-V-O +V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +197864 Conj-CL +197866 Np-Appos +DetNP +AdjpAdvp +DetNP +sub-CL +197872 S-V-ADV +Np-Appos +DetNP +NP-CL +197877 O-V-IO-S +DetNP +V-O +NP-CL +PronNP +DetNP +O-V +PrepNp +S-O-V +DetNP +197888 Conj-CL +197890 Np2CL +DetNP +AdjpNp +V-O +PrepNp +197896 CLaCL +aCLaCL +197899 O-ADV-V +NPofNP +197902 O-V +NPofNP +197906 S-ADV-V +DetNP +NPofNP +PrepNp +sub-CL +197912 O-V-S +197915 DetNP +sub-CL +S-V-O +ADV-O-V +PrepNp +NpAdjp +197922 Conj-CL +S-VC-P +DetCL +V-ADV +PrepNp +197928 Conj-CL +197930 V-ADV +PrepNp +sub-CL +O-V +197935 CLaCL +O-ADV-ADV-V +PrepNp +197940 that-VP +O-ADV-V-ADV +DetNP +NPofNP +DetNP +PrepNp +197947 CLaCL +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +197955 ADV-V-O +197957 ClCl2 +sub-CL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +O-V +197966 CLaCL +ADV-V-S-O-ADV +V2CL +O-ADV-V +PrepNp +197972 O-ADV-V +Np-Appos +DetNP +NpPp +PrepNp +DetNP +AdjpNp +197981 that-VP +S-V-O-ADV +PrepNp +DetNP +197986 VC-S-P +DetCL +V-O +NP-CL +ADV-S-V +PrepNp +197993 Conj-CL +ClCl +ClCl2 +sub-CL +V-O +PtclCL +V-O +sub-CL +ADV-S-V +PrepNp +198004 Conj-CL +ClCl2 +sub-CL +O-ADV-V +DetNP +ofNPNP +ADV-O-V +DetNP +AdjpNp +198014 ADV-V-S-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetNP +198024 Conj-CL +ClCl +V-O-S +NpAdjp +sub-CL +V-O +DetNP +NP-CL +O-V-ADV +PrepNp +DetCL +V2CL +198037 Conj-CL +CLaCL +V-ADV-S +PrepNp +DetNP +198043 ADV-V-ADV +PrepNp +DetNP +NPofNP +198048 Conj-CL +VC-P-S +Np-Appos +DetNP +DetNP +NPofNP +DetAdj +198056 Conj-CL +198058 DetNP +CLaCL +V-O +DetNP +198064 that-VP +S-V-ADV +AdjpNp +PrepNp +PrepNp +ClCl +ADV-V-O +sub-CL +V-S +198074 Conj-CL +198076 V-O +sub-CL +S-V-O +O-V +O-V +198083 DetNP +ClCl +S-ADV-V-ADV +ofNPNP +AdjpNp +sub-CL +S-O-V +AdjpNp +198093 Np-Appos +NpPp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +CLaCL +198104 S-V-O +NpaNp +NumpNP +NpAdjp +198109 NumpNP +198111 S-P-VC-ADV +PrepNp +198115 DetNP +V-O +S-V +DetNP +198120 Conj-CL +VC-S-P +NpAdjp +PrepNp +DetNP +198126 Conj-CL +ClCl +V-S +DetNP +ADV-P +DetNP +AdvpNp +198134 Conj-CL +ClCl +CLaCL +V-O-S +DetNP +DetNP +198141 ADV-V-IO +V2CL +DetCL +V2CL +198146 AdvPp +PrepNp +DetNP +O-V +198151 Conj-CL +ClCl2 +sub-CL +V2CL +198156 DetNP +NPofNP +ClCl +V-O +DetNP +AdjpNp +V2CL +sub-CL +ADV-S-V +198166 Conj-CL +198168 V2CL +198170 V-O-ADV-ADV +NumpNP +PrepNp +Np-Appos +DetNP +NumpNP +DetAdj +S-V-ADV +DetCL +V2CL +198181 Conj-CL +198183 DetNP +V-O +CL-NP +O-V +that-VP +S-VC-ADV-P +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +198196 Conj-CL +ADV-V-ADV-ADV-S +198199 that-VP +198201 CLaCL +V2CL +198204 V-O +sub-CL +V-O +PrepNp +DetNP +NpAdjp +NpPron +198212 Conj-CL +198214 sub-CL +S-V +V-S-ADV +DetNP +NPofNP +PrepNp +DetNP +198222 ADV-V-ADV-ADV +V-ADV +PrepNp +PrepNp +DetNP +PrepNp +198229 Conj-CL +CLaCL +CLaCL +S-ADV-V +198234 ADV-V-ADV-S +PrepNp +DetNP +198238 S-ADV-V +DetNP +S-V +NpAdjp +198243 Conj-CL +CLaCL +ADV-V-O +V-O +AdvpNp +NpNump +Conj2Nump +NumpNump +198252 CLaCL +S-V-ADV +DetNP +PrepNp +DetNP +198258 ADV-V +PrepNp +DetNP +198262 V2CL +198264 Conj-CL +198266 ClCl +S-VC +ADV-V +198270 Conj-CL +CLaCL +V-O +V-O-ADV +PrepNp +DetNP +198277 ADV-VC-S-P +DetNP +PrepNp +DetNP +NP-CL +ADV-V +PrepNp +198285 ClCl +ADV-S-V +DetNP +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +CLaCL +that-VP +198297 NpAdjp +sub-CL +ADV-S +198301 that-VP +notCLbutCL2CL +V-ADV-S-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +ADV-S-V +DetNP +NPofNP +198313 Conj-CL +S-V-ADV-ADV +PrepNp +PrepNp +DetNP +NP-CL +ClCl +ADV-V-O +DetNP +V-S +DetNP +198325 Conj-CL +198327 sub-CL +198329 DetNP +that-VP +CLaCL +S-ADV-VC-P +198334 S2CL +DetNP +NPofNP +V-S-ADV +PrepNp +DetNP +198341 V-ADV-ADV +PrepNp +V-O +DetNP +198346 Conj-CL +198348 V-O-ADV +PrepNp +DetNP +198352 Np2CL +198354 CLaCL +V-IO-S +DetNP +198359 PtclCL +PtclCL +198362 ClCl +V-O +notCLbutCL2CL +sub-CL +V-O +sub-CL +CLaCL +V-ADV +PrepNp +DetNP +198373 V2CL +198375 ClCl +V-O +notNPbutNP +Np-Appos +DetNP +DetCL +V2CL +NP-CL +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +NpAdjp +O-S-IO-V +DetNP +NPofNP +DetNP +sub-CL +O-S-V +Np-Appos +DetNP +DetNP +198399 Conj-CL +198401 PrepNp +ClCl +O-V +sub-CL +V-O +DetNP +NPofNP +DetNP +198410 CLaCL +V-S +198415 P-VC-S +DetNP +NPofNP +DetNP +V-ADV +PrepNp +O-V-S +198423 Conj-CL +198425 ClCl +Conj-CL +198428 AdjpNp +sub-CL +CLaCL +V2CL +198433 V-O +O-V +198436 ClCl +S-O-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetAdj +sub-CL +198445 BeVerb +O-V-IO-ADV +NpPp +PrepNp +DetNP +V2CL +198452 Conj-CL +198454 DetNP +PtclCL +PtclCL +198458 notCLbutCL2CL +S-V-IO-O +DetNP +NpPp +PrepNp +DetNP +S-V-IO-O +DetNP +NPofNP +DetNP +NPDetAdj +NpPp +PrepNp +DetNP +DetAdj +198474 Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +DetCL +CLaCL +V-ADV +PrepNp +DetNP +198485 O-V-IO +DetNP +198488 Conj-CL +198490 PrepNp +198492 Np2CL +NP-Demo +DetNP +198497 DetNP +S-VC-P +DetNP +NPofNP +DetNP +198503 CLaCL +S-ADV-V +DetCL +V-ADV +PrepNp +2Advp_h1 +198510 S-ADV-V-ADV +DetCL +V-ADV +PrepNp +2Advp_h1 +198516 Conj-CL +198518 that-VP +aCLaCL +198521 V-O +198523 ADV-V +198526 CLaCL +S-ADV-V +All-NP +O-V-IO-S +DetNP +PrepNp +198533 O-ADV-V-ADV +DetCL +V-ADV +PrepNp +2Advp_h1 +ClCl +V-ADV +PrepNp +DetNP +notCLbutCL2CL +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +O2CL +DetNP +NPofNP +DetCL +V-O +198554 Conj-CL +198556 DetNP +NPofNP +DetCL +V-O +that-VP +198562 Np2CL +All-NP +O-V-IO +ADV-V-ADV +PrepNp +198568 V-O-ADV +PrepNp +DetNP +AdjpNp +198573 Conj-CL +198575 DetNP +NPofNP +DetNP +NPofNP +that-VP +CLaCL +S-V-O +All-NP +DetCL +CLaCL +V-O +DetNP +198588 V-ADV +PrepNp +NpAdjp +198592 V-O-S-ADV +PrepNp +DetNP +AdjpNp +198597 Conj-CL +CLaCL +198600 DetAdj +PrepNp +sub-CL +198604 S-VC-P +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +198613 ClCl +PtclCL +S-VC-P +NP-CL +Np-Appos +DetNP +NPofNP +ADV-S-V-O +NpaNp +DetNP +198624 DetNP +198626 that-VP +ADV-V +PrepNp +DetNP +198631 CLaCL +V-S +198635 ADV-V-ADV +PrepNp +198638 ClCl +198640 V-ADV +PrepNp +sub-CL +ADV-S-V-O +Np-Appos +DetNP +DetCL +V-O +S-V-O-ADV +PrepNp +DetNP +AdjpNp +198654 BeVerb +PrepNp +DetNP +Conj-CL +VC-S-P +NPofNP +198661 S-V-ADV +All-NP +DetCL +CLaCL +V-ADV +PrepNp +DetNP +198669 V2CL +PrepNp +198672 AdvpCL +that-VP +198675 DetNP +sub-CL +PtclCL +198679 Np2CL +DetCL +VC-P +PrepNp +DetNP +DetNP +198686 PtclCL +PtclCL +198689 S-V-O +DetCL +V2CL +NpAdjp +198694 S-VC-P +DetNP +NPofNP +DetNP +198699 CLaCL +S-V-ADV-O +DetNP +NPofNP +PrepNp +DetAdj +DetNP +198707 V2CL +198710 Np-Appos +DetNP +DetCL +ADV-V +PrepNp +DetNP +sub-CL +CLaCL +S-ADV-V +PrepNp +198721 ADV-V +198723 S-VC-P +Np-Appos +Np-Appos +DetNP +DetCL +V2CL +DetCL +ADV-V +PrepNp +DetNP +198735 sub-CL +S-V-ADV +PrepNp +Demo-NP +DetNP +PrepNp +DetNP +198743 Conj-CL +S-P-VC-ADV +AdvpNp +DetNP +NP-CL +O-S-V +DetNP +NPofNP +PrepNp +DetNP +ofNPNP +DetNP +198756 Conj-CL +V-ADV-S-ADV +PrepNp +DetAdj +198761 ADV-V-S-O +IO-V-O-ADV +DetNP +V2CL +198766 Conj-CL +198768 DetNP +PtclCL +PtclCL +198772 ClCl2 +sub-CL +AdvpCL +CLaCL +V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +198783 V-O +ofNPNP +DetNP +ADV-V-O-ADV +PrepNp +198789 ClCl +S-V-O +DetCL +CLaCL +V-O +ofNPNP +DetNP +198797 V-O +ofNPNP +DetNP +NpAdjp +S-V-O-ADV +DetNP +AdjpNp +198805 Conj-CL +CLaCL +S-P-VC +DetNP +NPofNP +AdjpNp +198812 S-P-VC +DetNP +NPofNP +AdjpNp +198817 ClCl +S-ADV-V +DetCL +CLaCL +V-O +ofNPNP +DetNP +198825 V-O +ofNPNP +DetNP +PrepNp +S-ADV +PrepNp +198833 sub-CL +ClCl +V-O-S +DetNP +AdjpNp +V2CL +S-V-ADV +PrepNp +DetNP +Np2CL +AdvpNp +DetCL +V-O +PrepNp +198849 Np-Appos +DetNP +DetCL +ADV-V +PrepNp +AdvpCL +sub-CL +CLaCL +V-S +DetNP +198860 V2CL +198862 S-V-ADV +DetCL +V-O +Demo-NP +DetNP +PrepNp +DetNP +198870 O-V-ADV +ADV-V-ADV +PrepNp +PrepNp +198875 Conj-CL +198877 NpPp +PrepNp +DetNP +NPofNP +V2CL +198883 NP-Demo +DetNP +S-V-O +O-V +198888 Conj-CL +198890 DetNP +198892 PrepNp +that-VP +V-ADV-S +PrepNp +DetNP +NPofNP +S-O-V +198900 Conj-CL +sub-CL +V-O +S-V-ADV +DetNP +NPofNP +DetNP +P-VC-ADV +DetAdj +198910 ClCl +S-VC-P +DetNP +DetCL +V2CL +S-ADV-V-O +DetNP +198918 CLaCL +S-P-VC +DetNP +NP-CL +O-S-V-IO +198924 P-VC +198926 Conj-CL +198928 NP-CL +PpNp2Np +PrepNp +S-ADV-V +sub-CL +198934 PrepNp +DetNP +CLaCL +P-VC-S +DetCL +ADV-V +198941 P-VC-S +DetCL +V-O +198945 Conj-CL +198948 PrepNp +that-VP +198951 V-ADV +PrepNp +sub-CL +ADV-V-IO-ADV +BeVerb +PrepNp +DetNP +198959 CLaCL +ADV-S-V-ADV +PrepNp +NPofNP +DetNP +NPofNP +PrepNp +DetNP +198968 ADV-ADV-V +PrepNp +198971 Conj-CL +198973 DetNP +DetNump +PtclCL +S-V-O +AdvpNp +V2CL +198981 Np-Appos +198983 Np2CL +ADV-V +PrepNp +CLaCL +O-V +NPofNP +NpAdjp +198991 CLaCL +S-V +198995 that-VP +S-VC-P +DetNP +NPofNP +DetNP +199002 DetNP +CLaCL +PtclCL +S-O-V +Np-Appos +DetNump +199009 S-P-VC +PpNp2Np +PrepNp +199013 Conj-CL +199015 DetNP +NPofNP +Np-Appos +sub-CL +ClCl +S-V-O +V-O +P2CL +NpPp +PrepNp +DetNump +199027 Conj-CL +199029 ADV-V-S-ADV +PrepNp +DetNP +PrepNp +DetNP +sub-CL +ADV-V-O +ADV-V +PrepNp +DetNP +sub-CL +V-O-S +O-V +DetAdj +199044 Conj-CL +VC-P-S +Np-Appos +DetNP +NPofNP +DetAdj +DetNP +199052 Conj-CL +199054 PrepNp +DetNP +NPofNP +ClCl +CLaCL +V-ADV +199061 V-ADV +PrepNp +DetNP +sub-CL +S-V-O +AdvpNp +DetNP +NPofNP +DetNP +NP-CL +NPofNP +O-V +199074 Conj-CL +CLaCL +S-O-ADV-V +PrepNp +199079 V-S-O +P-VC +PrepNp +199083 ClCl2 +sub-CL +O-V +V-O-IO +DetNP +199089 Conj-CL +ADV-S-V-ADV +DetNP +NPofNP +PrepNp +199095 Conj-CL +199097 DetNP +CLaCL +S-ADV-V +DetNP +NPDetAdj +DetAdj +199104 S-ADV-VC-P +DetNP +NPDetAdj +DetAdj +199109 ClCl +CLaCL +ADV-V-S-O +DetNP +V-O +199115 O-V +sub-CL +199118 PrepNp +that-VP +S-P-VC +DetNP +NPofNP +199124 S-V-ADV +PrepNp +DetNP +199129 PrepNp +NP-Demo +DetNP +sub-CL +S-ADV-V +DetNP +AdjpNp +199137 Conj-CL +ADV-V-ADV +O-V-IO +PrepNp +DetNP +199143 Conj-CL +ClCl2 +sub-CL +V-S-ADV +DetNP +NPofNP +PrepNp +DetNP +ADV-S-V-ADV +AdvpNp +notADVbutADV +AdvPp +PrepNp +199157 Conj-CL +CLaCL +S-V-O-ADV +DetAdj +PrepNp +DetNP +199165 P-VC-S +199167 Conj-CL +S-VC-P-ADV +NpPp +PrepNp +PrepNp +DetNP +199174 aCLaCL +199177 that-VP +P-VC +199181 CLaCL +ADV2CL +199184 V-O +DetNP +199187 Conj-CL +S-ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetAdj +199195 Conj-CL +ClCl2 +ADV-S-V +DetNP +CLaCL +V-S-ADV +PrepNp +DetNP +199204 V2CL +199206 Conj-CL +V-S-ADV +DetAdj +199210 ADV-S-O-V-ADV +ADV-V +199213 Conj-CL +CLaCL +V-IO-S +199218 CLaCL +S-ADV-VC-P +DetNP +AdjpNp +199223 P2CL +DetCL +V-O +199227 ClCl2 +sub-CL +S-V-O +O-V +DetNP +NPofNP +199234 PrepNp +DetNP +CLaCL +ADV-P-VC +PrepNp +DetNP +199241 S-ADV-V +PrepNp +199244 S-O-V +DetCL +ADV-V +PrepNp +DetNP +NPDetAdj +DetAdj +199252 Conj-CL +199254 Np2CL +DetCL +V-O +DetNP +NPofNP +DetCL +V-O +S-P-VC +199263 S-P-ADV-VC +PrepNp +199266 PtclCL +S-V-IO-O +DetNP +199270 Conj-CL +S-V-O +NpPp +PrepNp +DetNP +199276 ADV-O-V +O-V +199280 DetNP +ClCl +O-V +S-O-V +O-V +199286 CLaCL +V-S +199290 CLaCL +O-V +AdjpNp +199294 S-V +199296 CLaCL +199298 PrepNp +DetNP +sub-CL +notCLbutCL2CL +P-VC +PrepNp +DetNP +P2CL +PrepNp +DetNP +199309 ADV-V-O +PrepNp +199312 ClCl2 +sub-CL +ClCl +O-V-S-ADV +PrepNp +sub-CL +ADV-V-S +DetNP +NPofNP +ClCl +O-V +sub-CL +O-O2-V-ADV +All-NP +PrepNp +199328 notCLbutCL2CL +V-ADV +PrepNp +O-V +DetNP +AdjpNp +199335 Conj-CL +199337 NpPp +PrepNp +DetNP +PtclCL +S-VC-P +O-V +O-V +199345 Conj-CL +199347 ADV-V +199349 O-IO-V +199352 DetNP +that-VP +S-VC-P +DetNP +199357 Conj-CL +CLaCL +199360 P-VC +199363 Np2CL +DetNP +sub-CL +V2CL +199368 P-VC +199370 Conj-CL +CLaCL +V-ADV-S +ADV-V +PrepNp +DetNP +DetNP +199379 CLaCL +O-V +199383 P-VC +199385 Conj-CL +CLaCL +ADV-ADV-V +PrepNp +199390 VC-P-S +NP-CL +DetCL +V-O +O-S-ADV-V +199396 ClCl +199398 sub-CL +P-VC +PrepNp +S-O-V +199403 Conj-CL +CLaCL +V-O +O-V +199409 PrepNp +DetNP +sub-CL +ADV-V-S +DetNP +NPofNP +199416 Conj-CL +CLaCL +ADV-S-V-ADV +PrepNp +DetNP +PrepNp +199425 Np2CL +DetNP +sub-CL +V2CL +PtclCL +O-V-ADV +AdjpNp +O-S-V +199434 CLaCL +ClCl +V-S +DetNP +S-V-ADV-O +DetNP +PrepNp +199442 ClCl +V-S-O +NpaNp +DetNP +199447 DetNP +sub-CL +V-O +199451 Conj-CL +199453 DetNP +CLaCL +ADV-ADV-P-VC +NpAdjp +PrepNp +199459 V-ADV +PrepNp +DetCL +V-O +199464 CLaCL +CLaCL +V-O +199468 ADV-V +199470 O-S-ADV-V +ADV-V +P-VC-S +199474 Conj-CL +199476 DetAdj +PrepNp +ClCl +O-S-V +ADV-V +sub-CL +S-ADV-V-O +199484 PtclCL +V-O +CLaCL +ADV-V +PrepNp +DetNP +NPofNP +DetNP +199493 V-O +DetNP +199496 P-VC-S +NP-CL +NP-Demo +DetNP +199501 O-V +CLaCL +V-O +199505 ADV-V +199507 O-S-ADV-V +ADV-V +P-VC-S +199511 Conj-CL +CLaCL +ADV-V-S +PrepNp +Np-Appos +DetNP +AdjpNp +DetNP +NPofNP +DetNP +DetNP +199523 V-ADV +199525 ClCl2 +sub-CL +S-V +CLaCL +V-ADV +PrepNp +199532 V2CL +199535 Np2CL +DetCL +V-ADV +PrepNp +sub-CL +V-S +DetNP +S-ADV-V +NPofNP +NpAdjp +V2CL +PrepNp +DetNP +NPofNP +199550 Conj-CL +199552 PrepNp +DetNP +NP-CL +O-V-S +O-V +DetCL +V-ADV +PrepNp +sub-CL +199562 sub-CL +S-ADV-V +199565 Conj-CL +199567 PrepNp +DetNP +V-O +NP-Demo +DetNP +S-VC-ADV-P +DetNP +199576 S-VC-P +DetNP +199579 Conj-CL +199581 Conj-CL +PtclCL +ADV-S-V +PrepNp +DetNP +DetNP +199588 PtclCL +199590 DetNP +that-VP +ADV-V-S +Conj2Pp +PrepNp +DetNP +NPofNP +199598 PrepNp +Np-Appos +DetNP +NP-CL +P-VC-S +DetNP +199605 Conj-CL +S-V-ADV-ADV +PrepNp +DetNP +PrepNp +199611 Conj-CL +CLaCL +S-V-O +NpPp +PrepNp +V-O +199618 S-V-ADV-O +PrepNp +DetNP +199622 Conj-CL +CLaCL +V-S-ADV +DetNP +PrepNp +NpaNp +DetNP +199632 ADV-ADV-V-O +PrepNp +199636 DetNP +199638 sub-CL +S-V +Demo-NP +DetNP +199643 Conj-CL +199645 DetNP +PtclCL +S-V +AdvpNp +199650 PtclCL +CLaCL +S-V-ADV +NpPp +PrepNp +DetNP +PrepNp +199658 S2CL +PrepNp +DetNP +199662 Conj-CL +S-P-VC +Np-Appos +NP-Demo +DetNP +DetCL +ADV-V-O +DetNP +199672 PrepNp +Np-Appos +DetCL +V-ADV-ADV +PrepNp +VC-P +NpPp +PrepNp +PtclCL +199682 DetNP +NPofNP +DetNP +sub-CL +CLaCL +ADV-V-ADV-ADV +PrepNp +199690 V-O +O-V +199693 CLaCL +V2CL +199697 PtclCL +S-P-VC +AdvpNp +PrepNp +DetNP +199703 CLaCL +V2CL +199707 that-VP +ADV-S-ADV-V +PrepNp +DetNP +199712 Conj-CL +V-S-ADV +PrepNp +DetNP +NPofNP +199718 Conj-CL +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +199725 Conj-CL +Conj3CL +ADV-ADV-V-ADV +PrepNp +DetNP +199731 S-V-ADV +All-NP +DetNP +PrepNp +199736 ADV-V-O +V2CL +199739 Conj-CL +CLaCL +V-S-ADV-O +NpaNp +DetNP +199745 DetNP +PrepNp +NpAdjp +ADV-V +PrepNp +199752 V-O-ADV +PrepNp +199755 Np2CL +Demo-NP +DetNP +V2CL +199760 Conj-CL +ADV-S-IO-V-O +PrepNp +DetNP +O-V +DetNP +199767 Conj-CL +S-O-V +199770 Conj-CL +199772 V-O +sub-CL +V-O +V-O +199777 Conj-CL +S-ADV-ADV-V-ADV +DetNP +ADV-V +DetNP +PrepNp +DetNP +199785 Conj-CL +ClCl2 +sub-CL +V-O +V-O +199791 V2CL +PrepNp +S-ADV-O-ADV-V +DetNP +NPofNP +DetNP +PrepNp +199799 Conj-CL +ADV-V-ADV +ADV-ADV-V +PrepNp +DetNP +199805 Conj-CL +CLaCL +S-ADV-V-ADV-ADV +CLaCL +V2CL +199811 ADV-V +PrepNp +DetNP +NpAdvp +V-ADV-ADV +PrepNp +DetAdj +PrepNp +DetAdj +199821 CLaCL +V-ADV-S +DetNP +199825 S-ADV-V +DetNP +PrepNp +199829 Conj-CL +199831 DetNP +CLaCL +V2CL +199835 O-V-ADV +PrepNp +DetNP +199839 Np2CL +DetNP +P-VC-S +Demo-NP +DetNP +NPofNP +S-O-V +199847 Conj-CL +199850 Np2CL +199852 Conj-CL +199854 DetNP +ClCl +ADV-S-O-V +CLaCL +V2CL +199860 ADV-V +199862 Conj-CL +ADV-IO-V-S-ADV +DetNP +199866 ClCl +S-VC-P +DetNP +NPofNP +DetNP +CLaCL +S-ADV-V-ADV +DetCL +V-O +2Advp_h1 +PrepNp +DetNP +199879 V-O +DetNP +NPofNP +DetNP +199884 Conj-CL +199886 DetNP +199888 PrepNp +S-ADV-VC-P +DetNP +NPofNP +199893 CLaCL +V-S +199897 ClCl +ClCl2 +sub-CL +S-V-ADV +PrepNp +P-VC-S +DetNP +NPofNP +sub-CL +199907 CLaCL +ADV-V +199910 ADV-V +199912 Conj-CL +199914 CLaCL +ADV-V +199917 ADV-V +199920 PrepNp +DetNP +S-ADV-V-O +199924 Conj-CL +ClCl +ClCl2 +sub-CL +ADV-V-S +S-P-VC +DetNP +NPDetAdj +DetAdj +sub-CL +CLaCL +P-ADV-VC +199937 S2CL +NpaNp +199940 DetCL +V-O +199943 Conj-CL +199945 AdvPp +PrepNp +DetNP +NPDetAdj +DetAdj +that-VP +S-P-VC +ofNPNP +NumpNP +DetNP +199956 CLaCL +S-VC-P +DetCL +V-ADV +PrepNp +199962 V-ADV-S +PrepNp +DetNP +AdjpNp +V-O +199968 Conj-CL +199970 P-VC-S +DetNP +NPofNP +199975 aCLaCL +199977 O-V +199979 O2CL +DetNP +NPofNP +199983 ClCl2 +sub-CL +O-V +PtclCL +O-V +AdvpNp +DetNP +NPofNP +199992 O-V-ADV-ADV +Demo-NP +DetNP +PrepNp +DetNP +V-ADV +PrepNp +DetNP +200001 Conj-CL +200003 sub-CL +ADV-V-S +DetNP +NPofNP +200008 Conj-CL +200010 ClCl +Conj3CL +S-V +200014 V-O +200016 ADV-V +PrepNp +DetNP +NPofNP +O-S-ADV-V +ADV-V +ADV-S-V +200024 Conj-CL +200026 DetAdj +ClCl +PtclCL +V-O +sub-CL +200032 O-S-ADV-V +ADV-V +ADV-S-V +200036 Conj-CL +200038 ClCl +ClCl +S-P-VC +PrepNp +DetNP +S-P-VC +PrepNp +DetNP +ClCl +S-P-VC +PrepNp +Demo-NP +DetNP +S-ADV-VC-P +PrepNp +NP-Demo +DetNP +200056 Conj-CL +ClCl +200059 that-VP +V-ADV +PrepNp +DetNP +NPofNP +sub-CL +ClCl2 +sub-CL +200068 that-VP +S-VC +V-ADV +PrepNp +DetNP +NPofNP +200075 Conj-CL +200077 S-P-VC +200080 DetNP +P2CL +NP-CL +O-ADV-ADV-V-IO +DetNP +200086 CLaCL +V-O +O-ADV-V +PrepNp +Conj2VP +200094 S-P-VC +DetCL +V-O +O-S-V-ADV +PrepNp +PrepNp +DetNP +200103 that-VP +O-IO-V +DetNP +200107 Conj-CL +200109 DetNP +ClCl2 +sub-CL +V-O +DetNP +NPofNP +DetNP +200117 that-VP +CLaCL +S-VC +200121 CLaCL +ADV-V-O +PrepNp +200125 ClCl2 +sub-CL +V-O-S +DetNP +O-V +200131 Conj-CL +200133 DetCL +V-O +PrepNp +200137 sub-CL +S-O-V-ADV +DetAdj +AdjpAdvp +200143 O-S-V +PrepNp +200146 Conj-CL +200148 DetNP +PrepNp +DetNP +AdjpNp +V-O +ClCl2 +sub-CL +S-V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +CLaCL +ADV-P-VC +NPofNP +200164 CLaCL +V-O +DetNP +200168 S-V-O +DetNP +200172 PrepNp +ClCl +CLaCL +P-VC +NPofNP +200178 O-V-ADV +200180 that-VP +P-VC +200184 DetNP +PtclCL +PtclCL +200188 that-VP +S-VC-P +All-NP +DetCL +V-O +DetNP +NPofNP +DetNP +200197 Conj-CL +ClCl +S-ADV-V-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +S-V-ADV +DetNP +PrepNp +DetNP +200210 Conj-CL +200212 sub-CL +S-O-V +DetNP +200217 that-VP +P-VC +NPofNP +200221 Conj-CL +ClCl +V-O +O-V +sub-CL +S-ADV-V-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +200232 O-V +O-S-V-ADV +PrepNp +DetNP +200237 Conj-CL +S-O-V +AdvpNp +O-V-ADV +PrepNp +DetNP +200244 CLaCL +V2CL +200248 S-P-VC +DetNP +NPofNP +200253 DetNP +ClCl2 +sub-CL +P-VC +NPofNP +DetNP +O-V +DetNP +NPofNP +DetNP +200264 Conj-CL +200266 V-O +Np-Appos +NP-CL +200270 S-O-IO-V +DetNP +PrepNp +DetNP +O-S-ADV-V +200276 S-V-O +DetNP +NPofNP +DetNP +NPofNP +200283 ClCl +S-ADV-ADV-V +PrepNp +O-V +Np-Appos +AdjpNp +DetNP +200292 DetNP +ClCl +200295 sub-CL +S-P-VC +DetNP +NPofNP +V-O +200301 sub-CL +CLaCL +S-ADV-V +PrepNp +DetNP +200307 V2CL +notCLbutCL2CL +ADV-V +PrepNp +S-O-V +200314 PrepNp +DetNP +NPDetAdj +DetAdj +sub-CL +ADV-V-O +V-O +DetNP +NPDetAdj +DetAdj +200325 CLaCL +S-P-VC +PrepNp +Np-Appos +DetNP +DetAdj +200332 O-V +O-V +DetNP +NPofNP +DetNP +NPofNP +200339 CLaCL +S-P-VC-ADV +PrepNp +200344 PrepNp +DetNP +sub-CL +ADV-VC-S-P +PrepNp +200350 ClCl +ClCl2 +sub-CL +V-O +DetNP +ADV-V +PrepNp +DetAdj +sub-CL +CLaCL +P-VC +200362 P2CL +DetNP +NPofNP +200366 Conj-CL +200368 Np2CL +sub-CL +O-V +DetNP +ADV-V-O +200374 S-V-O-ADV +NpPp +PrepNp +PrepNp +200379 ClCl2 +sub-CL +O-V +ADV-S-ADV-V-O +PrepNp +200385 S-O-V +DetCL +VC-P +PrepNp +DetNP +DetNP +NPofNP +DetNP +200395 PrepNp +sub-CL +P-ADV-VC +PrepNp +DetNP +200401 CLaCL +V-S +DetAdj +200406 PtclCL +200408 that-VP +CLaCL +P-VC-S +200412 O-V +200415 CLaCL +CLaCL +S-O-ADV-V +200419 V-O +DetNP +NPofNP +200423 S-V-O +200425 Conj-CL +S-ADV-V-O +DetNP +NPofNP +200430 V-S +DetCL +CLaCL +V2CL +200435 V2CL +200437 PtclCL +PtclCL +200440 ClCl2 +sub-CL +S-O-V +DetNP +AdjpNp +O-ADV-V-ADV +2Advp_h1 +PrepNp +DetNP +200451 DetAdj +200453 that-VP +O-V +200456 CLaCL +CLaCL +S-V +200460 S2CL +DetNP +200464 ClCl2 +sub-CL +S-O-V +DetNP +NPofNP +ADV-V-O-ADV +2Advp_h1 +PrepNp +DetNP +200474 PtclCL +S-P-VC-ADV +NP-CL +Np-Appos +DetNP +NPofNP +S-V +200482 Conj-CL +S-V +DetNP +200486 O2-O-V +200489 ClCl2 +sub-CL +S-V-O +S-P-VC +DetNP +NPofNP +200497 VC-P-S +DetNP +NPofNP +DetCL +V-O +ADV-S-V +P-VC +NPofNP +200506 Conj-CL +CLaCL +ADV-V-O +200510 S-V-O +200512 CLaCL +ClCl2 +sub-CL +200516 that-VP +ADV-V-O +VC-P +AdjpNp +AdjpAdvp +200522 CLaCL +V-O +200525 O-V +DetNP +NPofNP +200529 CLaCL +200531 Np-Appos +DetNP +NPofNP +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +200540 CLaCL +V2CL +200543 V2CL +200545 Conj-CL +200547 DetAdj +PrepNp +CLaCL +O-ADV-V +NumpNP +200553 O-V +200556 PtclCL +PtclCL +200559 ADV-S-V +AdvpCL +S-V +200563 Conj-CL +200565 sub-CL +V-ADV +PrepNp +200569 Conj-CL +CLaCL +S-V +200573 V-ADV +PrepNp +DetNP +200577 Conj-CL +ADV-V-O +V2CL +NpAdjp +AdjpPp +PrepNp +200584 Conj-CL +V-O-S-ADV +DetNP +NPofNP +200590 Np2CL +200592 S2CL +NpaNp +200595 DetNP +NPofNP +sub-CL +ADV-V +200601 CLaCL +aCLaCL +200604 S-V +200606 S2CL +DetNP +NPofNP +200610 sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +200618 S-V-O +DetNP +NPofNP +DetCL +V-O +sub-CL +S-V +200627 sub-CL +S-V-O +V2CL +200632 sub-CL +P-VC +PrepNp +DetNP +NPofNP +DetNP +200639 Conj4CL +ADV-V-ADV +O-V +200643 V-O-ADV +PrepNp +DetNP +200647 V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +200654 ClCl +V2CL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NP-CL +S-VC-P +V2CL +200665 Conj-CL +CLaCL +CLaCL +V2CL +200670 V2CL +200672 V-ADV +V2CL +200675 Conj-CL +200677 NpaNp +DetNP +200680 DetCL +200682 V-O-ADV +DetAdj +P-VC +PtclCL +S-VC-P +DetCL +CLaCL +V2CL +200691 V2CL +200694 that-VP +P-VC +200698 CLaCL +ADV2CL +200701 P-ADV-VC +200704 that-VP +S-VC +200707 Conj-CL +200709 Conj-CL +ADV-V-S +ofNPNP +DetNP +200715 ClCl +Conj3CL +S-O-V +Np-Appos +DetNP +DetCL +VC-P +200723 V-O +ofNPNP +DetNP +200728 that-VP +CLaCL +V-ADV +PrepNp +DetNP +200734 V2CL +Conj-CL +ADV-V +CLaCL +V2CL +200740 V2CL +200742 Conj-CL +200744 P-VC-S +200747 ADV-V +200749 V-O-ADV +NPDetAdj +DetAdj +AdvpAdjp +PrepNp +DetNP +200756 Conj-CL +VC-P-ADV +PrepNp +CLaCL +ADV-O-V-S +PronNP +DetNP +DetNP +200765 V-O +ofNPNP +DetNP +200769 Conj-CL +200771 AdvpNp +DetNP +ADV-V +200775 Conj-CL +200777 CLaCL +O-V-ADV +PrepNp +ofNPNP +DetNP +200783 CLaCL +V2CL +200786 V2CL +200788 Conj-CL +200790 PpNp2Np +PrepNp +DetNP +ClCl +ADV-VC-P-S +PrepNp +Demo-NP +DetNP +sub-CL +O-ADV-V +DetNP +200803 ADV-V-S-O +NpAdjp +O-V +Demo-NP +200808 Conj-CL +S-VC-P +PrepNp +200812 Conj-CL +200814 DetAdj +200816 PrepNp +sub-CL +V-O +ofNPNP +DetNP +200822 Conj-CL +200824 that-VP +P-VC +200827 Conj-CL +ADV-V-S-ADV-O-ADV +DetAdj +PrepNp +that-VP +CLaCL +VC-P +200835 V2CL +PrepNp +CLaCL +ADV-V-O +DetNP +NPofNP +Np-Appos +DetCL +V2CL +200845 V-O-ADV +200848 NP-CL +DetNP +NPofNP +200852 ADV-S-V +ADV-V +Conj-CL +ADV-V-ADV +200857 Conj-CL +CLaCL +V-S +DetNP +NPofNP +200865 CLaCL +that-VP +S-VC-P +DetNP +NPofNP +200871 that-VP +ADV-V +200874 Conj-CL +CLaCL +ClCl2 +ADV-ADV-V +ADV-V +200880 ClCl2 +S-V-O +ofNPNP +DetNP +S-ADV-V +200887 ClCl +O-V +S-ADV-V +PrepNp +200892 ClCl +200894 DetNP +NPofNP +sub-CL +V-O +DetAdj +sub-CL +200901 DetAdj +that-VP +ClCl2 +sub-CL +S-O-V-O2 +P-VC +200909 PrepNp +DetNP +NPofNP +that-VP +ClCl +P-VC +O-V +200917 Conj-CL +CLaCL +200920 DetNP +PrepNp +S-VC-P +200926 DetNP +200928 that-VP +S-P-VC +Demo-NP +DetNP +200933 Conj-CL +200935 ClCl +ClCl2 +PtclCL +P-VC +ADV-V +200941 that-VP +ADV-ADV-V +P-VC +200945 Conj-CL +200947 ClCl +O-V-IO +ADV-V-O +ofNPNP +DetNP +200954 ClCl +ClCl +CLaCL +V-IO-ADV +200959 ADV-V +ADV-ADV-V-O +V2CL +PtclCL +S-V-O +AdvpNp +P-VC +ofNPNP +200968 Conj-CL +CLaCL +V-O +200973 CLaCL +S-P-VC +NPofNP +200977 S-P-VC +ofNPNP +DetNP +200981 CLaCL +200983 that-VP +IO-V-S +DetNP +200988 P-VC +200990 CLaCL +V-S +DetNP +200995 Conj-CL +200997 P-S-VC +PrepNp +DetAdj +CLaCL +201002 P-VC +201004 V-O +ofNPNP +DetNP +201008 CLaCL +201010 that-VP +S-O-ADV-V +DetNP +201014 ClCl2 +sub-CL +CLaCL +S-P-VC +201019 O-V +DetNP +NPofNP +O-V +201025 PrepNp +DetNP +that-VP +V-S-O +NPofNP +NpAdjp +V2CL +201034 sub-CL +ADV-VC-S-P +PrepNp +V-O +201039 CLaCL +V2CL +201043 CLaCL +ADV-S-V-ADV +PrepNp +201047 S-V-O +201049 Conj-CL +V-O-ADV +201052 CLaCL +201054 that-VP +V-O-ADV +201058 V-O +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +201065 CLaCL +V-S +201069 Conj-CL +ClCl +201072 Np2CL +sub-CL +V-ADV +PrepNp +201078 DetNP +Conj-CL +CLaCL +V-O +201083 P-S-VC +DetCL +V-ADV +PrepNp +201088 Conj-CL +201091 Np2CL +201093 Conj-CL +V-O +201096 Conj-CL +201098 DetNP +ClCl +ADV-S-ADV-V +PrepNp +PrepNp +NP-Demo +DetNP +sub-CL +CLaCL +S-V +DetCL +ADV-V +201111 S-P-VC +DetCL +V2CL +201115 CLaCL +V-O-S +Np-Appos +PrepNp +DetNP +DetCL +P-VC +PrepNp +201125 PtclCL +S-P-VC +AdvpNp +201130 DetNP +ClCl2 +sub-CL +P-VC +PtclCL +ADV-V-O +201137 Conj-CL +ClCl +201140 that-VP +V2CL +S-V +DetNP +NPofNP +201146 PtclCL +PtclCL +201150 Np2CL +DetCL +notCLbutCL2CL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +V-ADV +S-P-VC +201163 P2CL +201165 Conj-CL +S-VC-P +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +201174 CLaCL +IO-S-V +DetNP +201178 CLaCL +S-O-V +DetNP +DetNP +NPofNP +201184 CLaCL +O-V-ADV +DetNP +AdjpNp +PrepNp +201190 V-O +201192 CLaCL +ClCl2 +sub-CL +O-V +NP-all +DetAdj +ADV-V +PrepNp +201201 ClCl +S-O-V +DetNP +sub-CL +V-O +DetNP +NPofNP +201209 Conj-CL +ClCl +CLaCL +O-ADV-V +2Advp_h1 +201215 V-ADV +PrepNp +sub-CL +ADV-V-O +ofNPNP +DetAdj +DetNP +201223 O-V-IO-S +Demo-NP +DetNP +DetNP +201228 Conj-CL +S-ADV-V-O +P-VC-S +O-V-IO +201233 Conj-CL +201235 DetNP +PtclCL +PtclCL +201239 that-VP +S-VC-P +DetNP +NPofNP +DetNP +201245 CLaCL +CLaCL +S-P-VC +All-NP +S-V-ADV +PrepNp +201252 P2CL +201254 ADV-V-O-S +DetNP +201257 S-VC-P +DetNP +201260 CLaCL +201262 sub-CL +ADV-S-V +PrepNp +201266 CLaCL +CLaCL +V2CL +201270 V2CL +201272 O-V +201275 DetNP +sub-CL +AdvpCL +sub-CL +Conj3CL +V2CL +201282 V2CL +201284 V2CL +201287 sub-CL +CLaCL +O-V +201291 ADV-V +201293 S-VC-P +DetNP +NPDetAdj +DetAdj +201298 S-O-V-ADV +DetNP +NPDetAdj +DetAdj +DetNP +NPofNP +PrepNp +DetNP +201308 CLaCL +Conj3CL +S-V-O +NP-CL +DetNP +NpaNp +201315 ADV-VC-P +ADV-ADV-VC-S-P +DetNP +S-V +DetNP +201321 V-O +DetNP +201324 V2CL +201326 CLaCL +S-V-O +DetNP +201330 V2CL +CLaCL +P-VC +201334 ADV-V-ADV-ADV +PrepNp +DetNP +201338 CLaCL +S-VC-P +DetNP +NPDetAdj +DetAdj +201345 V-O +DetAdj +201348 V-O-S +DetAdj +sub-CL +ClCl +V-O-S +DetNP +S-V-O +DetNP +201357 Conj-CL +O-V-ADV +DetNP +NPofNP +PrepNp +DetNP +201364 Conj-CL +201366 AdjpNp +S-ADV-VC-P +PrepNp +NP-Demo +DetNP +201372 CLaCL +S-V +O-S-V +201376 CLaCL +O-V +DetNP +NPofNP +201381 VC-P +2Np +AdjpNp +AdjpNp +201387 PrepNp +DetNP +sub-CL +201391 DetNP +NPofNP +sub-CL +ADV-V-O +201396 CLaCL +S-V-O-ADV +PrepNp +201400 S-V-O-ADV +PrepNp +201403 CLaCL +O-V-ADV +V-O +201407 O-V-ADV +ADV-V-O +201410 O-V-ADV +Demo-NP +DetNP +PrepNp +DetNP +NPofNP +201417 S-ADV-V-ADV-ADV +PrepNp +DetAdj +PrepNp +NP-Demo +DetNP +201424 Conj-CL +201426 NpPp +PrepNp +ClCl +CLaCL +O-V +201432 V2CL +ADV-O-V +201437 Demo-NP +DetNP +V2CL +PtclCL +S-V-O +O-V +ofNPNP +201445 V-ADV-S-ADV +DetNP +PrepNp +DetNP +201450 CLaCL +P-VC +201453 V-S-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +201462 Conj-CL +CLaCL +V-O-S +DetAdj +201469 PrepNp +DetNP +NPofNP +ClCl2 +sub-CL +S-VC-P +DetNP +V-IO-ADV +201479 DetNP +CLaCL +V-IO +201483 ADV-V +201485 CLaCL +201487 Np2CL +DetNP +NP-CL +O-S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +201499 sub-CL +ADV-VC-P +PrepNp +DetNP +NPDetAdj +DetAdj +201506 Conj4CL +201508 DetNP +NPDetAdj +DetAdj +DetNP +NPofNP +S-V-O +201515 ClCl +V-O +S-V-IO-O +NpAdjp +201520 ADV-V-ADV +2Advp_h1 +PrepNp +DetNP +201525 ADV-V-S-O-ADV +PrepNp +DetNP +NPofNP +201530 CLaCL +201532 Np2CL +DetNP +NPofNP +O-V-IO +201537 S-V-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +201544 S-P-VC +NpaNp +201547 DetNP +201550 DetAdj +sub-CL +V-O +201555 DetNP +201557 AdjpNp +NpAdjp +PrepNp +DetNP +ADV-O-V +PrepNp +AdjpNp +AdjpAdvp +201567 DetAdj +CLaCL +CLaCL +ADV-ADV-V-O +PrepNp +AdjpNp +201574 ADV2CL +PrepNp +201577 sub-CL +S-ADV-V-O-O2 +P-VC +201582 DetNP +PtclCL +201585 BeVerb +PrepNp +DetNP +NPofNP +that-VP +201591 P-VC +201594 sub-CL +CLaCL +201597 ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +201603 ADV-V-O-S +V2CL +DetNP +201607 ADV-S-V +CLaCL +O-S-V +DetNP +201612 V-ADV +PrepNp +DetNP +V2CL +201617 P-VC +NPofNP +DetNP +201621 ClCl2 +sub-CL +ADV-V-O +DetNP +NPofNP +DetNP +NPofNP +ADV-V-O +201630 Conj-CL +ClCl +ClCl2 +sub-CL +V2CL +ClCl2 +PtclCL +O-ADV-V +O-V +DetNP +sub-CL +201642 V2CL +201644 V2CL +that-VP +ClCl +P-S +PrepNp +DetNP +S-P +PrepNp +DetNP +201654 Conj-CL +V-O-ADV +O-V +201658 Conj-CL +V-ADV +PrepNp +DetNP +NPofNP +201664 Conj-CL +CLaCL +V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NP-CL +ADV-V-S-ADV +BeVerb +DetAdj +201676 V-ADV +201678 Conj-CL +CLaCL +S-V-ADV +PrepNp +201684 that-VP +aCLaCL +201687 S-O-V +NpAdjp +201690 S-P-VC +All-NP +O-V-S-ADV +PrepNp +201695 Conj-CL +S-V-ADV-ADV +PrepNp +201699 Conj-CL +V-S +NpPp +Np-Appos +NpAdjp +V2CL +2Pp +PrepNp +PrepNp +DetNP +NPofNP +NpaNp +201712 Np-Appos +DetNP +NPofNP +201716 Conj-CL +201718 DetCL +CLaCL +V-O-ADV +DetNP +201723 V-O-ADV +DetNP +NPofNP +DetNP +NPofNP +S-V +Np-Appos +ofNPNP +DetNP +201733 Conj-CL +V-S-ADV-ADV +DetNP +PrepNp +201739 Np2CL +O-V +201742 Conj-CL +201744 V2CL +DetNP +ClCl +CLaCL +S-ADV-VC-P +Demo-NP +DetNP +PrepNp +201753 P2CL +PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +201765 Conj-CL +V-S-O +DetNP +Conj3Np +DetNP +201771 DetNP +NPofNP +201774 DetNP +201776 Conj-CL +ClCl2 +sub-CL +201780 that-VP +V2CL +PtclCL +ADV-V-ADV-ADV +PrepNp +CL-NP +ADV-V +NumpNP +201790 PrepNp +DetNP +V-ADV-ADV +PrepNp +DetNP +201797 DetNP +201799 Np2CL +ADV-V-O-S +O-V +DetAdj +201804 ADV-V-ADV +201807 PtclCL +S-VC-P +NumpNP +DetNP +201813 sub-CL +S-V-ADV +PrepNp +DetNP +sub-CL +O-V +DetNP +NPofNP +NP-Demo +DetNP +201824 Conj-CL +201826 sub-CL +S-V-ADV +PrepNp +DetNP +sub-CL +S-ADV-VC-P +DetNP +PrepNp +201835 CLaCL +O-V +201839 PrepNp +CLaCL +S-V +Np-Appos +DetNP +NPofNP +201846 ClCl +V2CL +sub-CL +V-O +201851 Conj-CL +201853 DetNP +201855 Np2CL +sub-CL +V2CL +201859 Conj-CL +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +201866 Conj-CL +201868 that-VP +ADV-V +PrepNp +DetNP +NPofNP +DetNP +201875 Conj-CL +201877 DetNP +CLaCL +CLaCL +S-V +201883 V-ADV +PrepNp +sub-CL +V2CL +that-VP +ADV-VC-P +201890 V-ADV +PrepNp +201893 Conj-CL +201895 Np-Appos +DetCL +VC-P +DetNP +ClCl +V-S +AdvpNp +sub-CL +V-ADV +PrepNp +201906 Conj-CL +ADV-S-V-O +V2CL +DetNP +S-O-ADV-V-ADV +AdjpNp +PrepNp +DetNP +201915 Conj-CL +VC-S-P-ADV +PrepNp +DetNP +AdvPp +PrepNp +NpNump +201923 Conj-CL +201925 NpPp +PrepNp +DetAdj +PrepNp +DetNP +NpaNp +201932 sub-CL +V-O-ADV +PrepNp +DetNP +201937 Conj-CL +ClCl2 +sub-CL +201941 that-VP +S-V +S-V-O +DetNP +201946 Conj-CL +S-ADV-V +PrepNp +DetNP +201951 Conj-CL +201953 DetNP +PrepNp +201956 Np2CL +ClCl2 +sub-CL +VC-P +PtclCL +ADV-V-S +DetNP +NPofNP +201965 that-VP +O-V-IO-S +PtclCL +O2-V-O +DetNP +DetNP +201973 DetNP +V-S +DetNP +NPofNP +201979 DetNP +201981 that-VP +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +AdjpNp +201990 DetNP +S-VC-P +NpaNp +DetNP +201995 DetNP +201997 CLaCL +S-ADV-V +DetCL +V-ADV +PrepNp +PtclCL +V2CL +202005 S-ADV-V-ADV +All-NP +DetCL +CLaCL +V2CL +202011 V-ADV +PrepNp +2Advp_h1 +PrepNp +DetNP +202017 V-O +202020 ClCl2 +202022 Np2CL +202024 that-VP +S-VC-P +Np-Appos +Np-Appos +DetNP +DetNP +NPofNP +DetNP +DetCL +ADV-V +PrepNp +DetNP +202037 Conj-CL +CLaCL +ADV-V +O-V +202042 V-O-ADV-ADV +Np-Appos +DetNP +NPofNP +202047 CLaCL +S-V +DetNP +202051 V-O +202053 Conj-CL +CLaCL +S-ADV-V-ADV +sub-CL +V2CL +202059 V-ADV +PrepNp +202062 Conj-CL +notCLbutCL2CL +V-S-ADV +DetNP +PrepNp +DetNP +VC-ADV-P +PrepNp +DetNP +NP-CL +ADV-V-O-S +DetNP +202075 Conj-CL +S-ADV-V-O-ADV +Np-Appos +DetAdj +DetCL +CLaCL +VC-P-ADV +PrepNp +PrepNp +DetNP +202086 V-O +202088 DetNP +that-VP +CLaCL +ADV-V +202093 V2CL +202095 that-VP +202097 PrepNp +DetNP +sub-CL +V-ADV +202102 Conj-CL +S-ADV-ADV-V-ADV-ADV +DetNP +sub-CL +V-ADV +P-VC-S +V-O +PrepNp +ofNPNP +DetNP +202114 Np2CL +sub-CL +VC-P +ADV-V-S +ofNPNP +DetNP +202121 Conj-CL +202123 Np2CL +sub-CL +V-O +CLaCL +S-V +202129 S-V +DetNP +AdjpNp +V-O +CLaCL +CLaCL +V-ADV +DetNP +202138 V-O +202141 ADV-V-O +202145 Np2CL +V2CL +202148 V2CL +202150 V-S +DetNP +202153 Conj-CL +202155 DetAdj +202158 Conj-CL +202160 NpPp +PrepNp +PtclCL +V-S-O +Demo-NP +DetCL +V-O +DetNP +NPofNP +DetAdj +ClCl +V2CL +sub-CL +S-ADV-V +AdvpNp +202176 Conj-CL +S-ADV-V-ADV +ADV-V-ADV +PrepNp +PrepNp +DetNP +202183 Conj-CL +CLaCL +VC-P +202187 S-V-ADV +PrepNp +202191 DetNP +V-O +DetNP +202196 Np-Appos +DetNP +NPofNP +DetCL +V2CL +202202 Np2CL +ADV-V +sub-CL +P-VC +202208 DetNP +PtclCL +202211 that-VP +ClCl2 +sub-CL +V2CL +V-O +DetNP +NPofNP +DetNP +202220 Conj-CL +V-O +DetNP +202224 Conj-CL +CLaCL +S-V-O-ADV +DetNP +DetNP +202232 Np2CL +CLaCL +202235 sub-CL +V-O +202239 that-VP +ADV-O-V +202243 PrepNp +Np-Appos +DetNP +DetCL +V2CL +sub-CL +202250 that-VP +S-O-V +202253 Conj-CL +202255 O-V +NpAdjp +202258 Np2CL +202260 CLaCL +V-S-ADV +DetCL +V2CL +V-ADV-ADV +NpaNp +DetNP +202268 DetNP +202270 S-ADV-V +DetNP +NPofNP +202275 DetNP +CLaCL +V-O +202279 V-O +S-V +202282 Conj-CL +S-V-ADV +Np-Appos +NpPp +PrepNp +DetAdj +DetCL +CLaCL +V-ADV +PrepNp +DetNP +202294 V-O +O-V +PrepNp +202298 Conj-CL +CLaCL +S-V-ADV +NpPp +PrepNp +PrepNp +DetNP +202306 V-IO-O +O-V-S +202309 Conj-CL +CLaCL +V-S-O +NpaNp +DetNP +202315 DetNP +202318 ClCl +O-V +sub-CL +S-O-V +Demo-NP +DetNP +AdjpNp +202326 ClCl2 +sub-CL +V-O-ADV +CLaCL +S-V-ADV +PrepNp +202333 CLaCL +V-S +DetAdj +202337 V-O +ofNPNP +aNpaNp +202341 DetNP +202343 DetNP +202345 Conj-CL +202347 Np-Appos +NpPp +NpAdjp +PrepNp +P-VC-ADV +NP-Demo +DetNP +CLaCL +S-ADV-V-O +202358 that-VP +V-ADV-S +that-VP +CLaCL +S-V-ADV +AdjpNp +PrepNp +DetNP +202367 ADV-S-V +All-NP +DetNP +202371 Conj-CL +CLaCL +O-ADV-ADV-V +PrepNp +202377 P-VC-ADV +NP-Demo +DetNP +that-VP +V-S-O +CLaCL +V-ADV +PrepNp +DetNP +202387 notCLbutCL2CL +ADV-ADV +PrepNp +DetNP +sub-CL +O-V-ADV +AdvpNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V2CL +PrepNp +202402 Conj-CL +202404 PrepNp +Demo-NP +DetNP +that-VP +V-O +202410 Conj-CL +CLaCL +S-ADV-ADV-V-ADV +DetNP +PrepNp +DetAdj +202418 PrepNp +DetNP +NpPp +PrepNp +DetAdj +PrepNp +AdjpNp +P-VC +ADV-V-ADV +PrepNp +DetNP +202430 Conj-CL +CLaCL +VC-P-S +DetNP +NPofNP +DetAdj +202438 PrepNp +PrepNp +DetNP +PrepNp +DetNP +sub-CL +V-O +202446 Conj-CL +CLaCL +V-O +DetNP +202452 PrepNp +ADV-V +PrepNp +DetNP +202457 that-VP +ADV-V-ADV +2Advp_h1 +PrepNp +DetNP +202463 Conj-CL +202465 NpaNp +DetNP +202468 DetNP +that-VP +ClCl +ClCl2 +sub-CL +S-V-O +P-VC +V2CL +sub-CL +V-O +202479 Conj-CL +S-ADV-V-ADV +DetNP +PrepNp +NumpNP +NPofNP +DetNP +PrepNp +NP-CL +P-VC-S +NP-CL +O-V-ADV-S +PrepNp +202493 Conj-CL +CLaCL +CLaCL +V-IO-O-ADV +202498 S-V +DetNP +202501 S-VC-P +DetNP +NpPp +PrepNp +DetCL +V-ADV +PrepNp +202509 Conj-CL +CLaCL +S-ADV-V-O +DetNP +V-O +NPofNP +NpAdjp +NpAdjp +NPofNP +DetNP +NPofNP +DetNP +202522 V-ADV-O +DetNP +NPofNP +DetNP +NPofNP +202528 Conj-CL +S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +202536 Conj-CL +202538 Np-Appos +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetCL +V-O +O-V +CLaCL +ADV-S-ADV-V-ADV +PrepNp +Demo-NP +DetNP +AdjpNp +202555 V-IO +202557 Conj-CL +CLaCL +202560 notCLbutCL2CL +sub-CL +ADV-V-ADV +PrepNp +DetAdj +sub-CL +P-VC +202568 ADV-O-V +O-V +DetNP +DetCL +V2CL +202574 Conj-CL +202576 DetNP +ClCl +202579 sub-CL +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +NPofNP +sub-CL +CLaCL +O-ADV-V-ADV +DetAdj +PrepNp +202592 O-ADV-ADV-V +202594 Conj-CL +CLaCL +202597 DetNP +NpPp +NpAdjp +PrepNp +DetAdj +that-VP +P-VC +202605 CLaCL +V-ADV-ADV-ADV +PrepNp +DetNP +202610 sub-CL +ADV-V-O +DetNP +NP-CL +O-V-ADV +PrepNp +202617 Conj-CL +ClCl +202620 DetNP +that-VP +O-V +AdvpNp +DetNP +sub-CL +CLaCL +S-ADV-V +NPofNP +DetAdj +PrepNp +202632 V-ADV +PrepNp +DetNP +202636 Conj3CL +ADV-S-ADV-V-O +DetNP +Np-Appos +NpAdjp +DetNP +DetCL +V-ADV +PrepNp +DetNP +202647 that-VP +V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +202654 V-ADV +PrepNp +NpAdvp +202660 Intj2CL +V2CL +NpaNp +DetCL +V-ADV +PrepNp +NPofNP +202668 DetNP +NPofNP +DetNP +202672 Conj-CL +ClCl +ADV-S-V-ADV +V-O +DetNP +PrepNp +sub-CL +202680 BeVerb +ClCl +202683 Np2CL +NPofNP +202686 DetNP +NPofNP +V-ADV +PrepNp +NPofNP +202692 CLaCL +O-ADV-V-S-ADV +ofNPNP +DetNP +DetAdj +202698 ClCl2 +sub-CL +V-S +202702 ADV-V +CLaCL +S-V-ADV +BeVerb +PrepNp +202708 O-V-IO +202710 Conj-CL +202712 Np-Appos +DetNP +DetCL +VC-P +PrepNp +sub-CL +CLaCL +O-V-ADV +DetNP +PrepNp +DetNP +202724 V-O-ADV +PrepNp +202727 ClCl +ADV-ADV-V-O-S +PrepNp +DetNP +sub-CL +V-O +NP-CL +S-V-O +DetNP +202737 Conj-CL +202739 DetNP +PrepNp +ClCl +202743 that-VP +ADV-V-O +202746 DetNP +PrepNp +202749 Conj-CL +VC-S-P +NpAdjp +PrepNp +DetCL +ClCl +V2CL +sub-CL +V-ADV +PrepNp +DetNP +202761 Conj-CL +CLaCL +S-V-ADV +Np-Appos +NpPp +PrepNp +NPofNP +DetNP +202770 V-O-ADV +202773 Np2CL +O-V +DetNP +202777 CLaCL +V-S +DetNP +202781 V-IO +DetNP +202784 CLaCL +V-S +NpaNp +202789 V-IO +DetNP +202792 Conj-CL +S-V-IO-ADV +DetNP +202796 ClCl +V-S +DetNP +sub-CL +V-S +DetNP +NPofNP +DetNP +202805 PtclCL +PtclCL +202808 CLaCL +202810 sub-CL +ADV-S-ADV-V +DetNP +NPofNP +DetNP +V-ADV +PrepNp +DetNP +202820 sub-CL +V2CL +AdjpNp +202824 CLaCL +S-V-O +DetCL +V-O +DetNP +NPofNP +202831 S-ADV-V-O +DetCL +V-O-ADV +DetNP +NPofNP +PrepNp +NP-Demo +DetNP +PrepNp +NpAdjp +202842 CLaCL +202844 sub-CL +O-S-V +202847 ClCl2 +P-VC-S +P-S-VC +AdvpNp +DetNP +NPDetAdj +DetAdj +202856 sub-CL +S-O-V +DetNP +202860 ADV-S-V +DetNP +NPofNP +202864 Conj-CL +O-V +202868 Np2CL +PrepNp +NP-Demo +DetNP +202873 Conj-CL +ADV-V-ADV +PrepNp +PrepNp +NP-Demo +DetNP +202881 Np2CL +ofNPNP +DetNP +202885 Conj-CL +202887 PrepNp +DetNP +aCLaCL +202891 V2CL +202893 ADV-V +202895 Conj-CL +S-V-O +Np-Appos +DetNP +DetCL +CLaCL +V2CL +202903 V2CL +S-V +202907 S-IO-V +202909 CLaCL +V-S +202913 notCLbutCL2CL +ADV-S-V +PrepNp +NP-Demo +DetNP +ADV2CL +PrepNp +202921 ClCl +P-VC-S +NPofNP +NP-Demo +DetNP +ADV-S-V-ADV +DetNP +NPofNP +NP-Demo +DetNP +202933 sub-CL +S-V-ADV +PrepNp +DetNP +PrepNp +202939 Conj-CL +O-V-ADV +202942 ADV-V-O +AdjpNp +V2CL +202946 Conj-CL +202948 DetNP +ClCl +CLaCL +202952 PrepNp +DetNP +that-VP +S-V-ADV +DetNP +PrepNp +DetNP +202961 that-VP +V-S +V-S +DetNP +NPofNP +DetNP +P-VC-S +Demo-NP +DetNP +NPofNP +DetNP +202973 Conj-CL +202975 DetNP +ADV-ADV-S-P-VC +AdjpNp +DetNP +PrepNp +202982 V2CL +sub-CL +O-V +DetNP +sub-CL +ADV-S-O-V +202989 Conj-CL +202991 DetCL +V-ADV +PrepNp +DetNP +ADV-V +202997 ClCl +ClCl2 +sub-CL +O-V +DetNP +V-ADV +PrepNp +DetNP +sub-CL +P-VC +NPofNP +203009 CLaCL +O-V-S +203012 ADV-V-ADV +V2CL +PrepNp +203016 Conj-CL +ClCl +203019 S-O-V-ADV +AdjpNp +PrepNp +PrepNp +sub-CL +203025 DetNP +NPofNP +Np-Appos +DetNP +203030 O-V +Np2CL +S-V-O +DetNP +NPofNP +203036 S-IO-V +DetNP +NPofNP +203041 PrepNp +V2CL +sub-CL +203045 ClCl +CLaCL +V-O +ofNPNP +DetNP +203051 V-O +ofNPNP +DetNP +sub-CL +AdvpCL +CLaCL +Conj3CL +V-ADV +DetNP +203061 V-ADV +DetNP +203064 V2CL +203066 V-O +203069 sub-CL +CLaCL +V-O +DetNP +NPofNP +203075 V-ADV +PrepNp +203078 Conj-CL +CLaCL +ADV-S-V-ADV +AdvpNp +PpNp2Np +PrepNp +DetNP +PrepNp +203087 ClCl +203089 PrepNp +DetNP +sub-CL +ADV-P-VC +sub-CL +203095 DetNP +NPofNP +DetNP +PtclCL +O2CL +DetNP +NPofNP +DetNP +203104 Conj-CL +CLaCL +S-V +203109 CLaCL +CLaCL +S-ADV-V-ADV +DetCL +V-ADV +PrepNp +PrepNp +203117 ADV2CL +PrepNp +DetCL +V-O +203122 S-V-O +DetCL +V-O +DetCL +V-O +203128 ClCl +S-ADV-ADV-V +PrepNp +DetNP +sub-CL +S-ADV-ADV-V +All-NP +DetCL +V-ADV +PrepNp +PrepNp +DetNP +203141 Conj-CL +ClCl +ClCl2 +sub-CL +CLaCL +S-V-O +ofNPNP +DetNP +203150 ADV-V +S-ADV-V-O +sub-CL +notCLbutCL2CL +ClCl +V2CL +sub-CL +V-O +DetNP +sub-CL +V-O +DetNP +203164 DetCL +CLaCL +V-O +203168 ADV-V-O +DetNP +NPofNP +DetCL +V-O +203175 Np2CL +DetNP +NP-CL +O-V +PrepNp +DetNP +AdjpNp +CLaCL +S-ADV-ADV-V +PrepNp +203187 Np2CL +DetNP +AdjpNp +V-O +CLaCL +O-V +203194 O-V +203196 Conj-CL +203198 that-VP +S-P-VC +DetNP +NPofNP +NpAdjp +203204 Conj-CL +203206 O-S-V +sub-CL +V-IO-S +DetNP +ADV-V +203212 Conj-CL +ADV-S-ADV-ADV-ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +DetNP +203220 that-VP +203222 ofNPNP +DetNP +sub-CL +V-ADV-ADV +PrepNp +NP-Demo +DetNP +PrepNp +DetNP +V-O +Np-Appos +DetAdj +NpPp +PrepNp +DetNP +PrepNp +203239 Conj-CL +Conj3CL +ClCl2 +S-V +ClCl2 +203245 DetAdj +PrepNp +DetNP +sub-CL +V-O-S +NPofNP +Np-Appos +ADV-V-ADV +203254 CLaCL +that-VP +O-V-IO-S-ADV +DetNP +PrepNp +DetNP +203261 that-VP +CLaCL +ADV-V +PrepNp +203266 ADV-V +PrepNp +DetNP +PrepNp +DetNP +203272 V-O +DetNP +203275 ADV-V-O +V-O +203278 CLaCL +ADV-V-O-ADV +PrepNp +DetNP +203283 V-O +CLaCL +V-O +DetNP +NPofNP +DetNP +203290 V-ADV +DetNP +NP-CL +ADV-V +BeVerb +203296 Conj-CL +V-ADV +PrepNp +Np-Appos +203303 Np2CL +ofNPNP +DetNP +203307 CLaCL +V-S +203311 CLaCL +O-S-ADV-V-ADV +O-S-V +203315 V-ADV +PrepNp +203319 ADV-V-O-ADV +2Advp_h1 +ofNPNP +DetNP +PrepNp +DetNP +203327 ClCl2 +sub-CL +ADV-V-O +ADV-V-O-ADV +PrepNp +203334 Np-Appos +203336 Np2CL +O-ADV +DetNP +NPofNP +O2CL +AdvpNp +NpaNp +DetNP +203345 DetNP +203347 ClCl +203349 CLaCL +CLaCL +S-ADV-V-O-ADV +DetCL +V2CL +sub-CL +ADV-O-V +DetNP +203358 VC-P-ADV +203360 CLaCL +S-P-VC +203363 ADV-S +sub-CL +203366 DetCL +V-O +203369 PrepNp +that-VP +ADV-S-P-VC +203373 Conj-CL +ClCl2 +sub-CL +Conj3CL +V-O +DetNP +NPofNP +203381 V-O +DetNP +NPofNP +203385 V-ADV +203387 V-O +O-V-IO +203390 CLaCL +S-V-O-O2 +Np2CL +NpaNp +DetNP +203396 DetNP +203399 sub-CL +VC2CL +203402 Conj-CL +ClCl +ClCl2 +sub-CL +S-V-O +Np-Appos +NpaNp +DetNP +203411 DetNP +ofNPNP +DetNP +S-V-O +AdvpNp +V-O +ofNPNP +DetNP +sub-CL +203421 sub-CL +203423 sub-CL +S-V-IO +AdvpNp +203427 PtclCL +PtclCL +203430 CLaCL +ADV-VC-S-P-ADV +DetNP +NPofNP +203435 S-P-ADV +DetCL +V-O +203439 ClCl2 +sub-CL +O-V +ClCl +P-VC +sub-CL +V-O +203447 ADV-ADV-V +PrepNp +All-NP +203451 S-V-O +O-V +203454 Conj-CL +sub-CL +203457 DetNP +S-V-ADV-O +DetCL +V-O +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +203468 PrepNp +PrepNp +DetCL +V2CL +sub-CL +203474 V2CL +sub-CL +V2CL +that-VP +S-VC +203480 PtclCL +PtclCL +203483 CLaCL +S-O-V +DetCL +V-O +PtclCL +O-V +203490 S-V-O +DetCL +O-V +DetCL +V-O +203496 CLaCL +ADV-S-V-ADV +O-V +DetNP +203501 CLaCL +V2CL +203505 PtclCL +PtclCL +203508 that-VP +S-V-O +NpPp +PrepNp +203513 V-ADV-S-ADV +PrepNp +DetNP +V-O +ADV-V +PrepNp +203521 BeVerb +NpPp +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +O-V-S +DetNP +203533 Conj-CL +CLaCL +V-IO-S +Np-Appos +203540 P-VC-S +ADV-V +PrepNp +203545 V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +203551 Np2CL +203553 Conj-CL +203555 DetNP +VC-P +NP-CL +CLaCL +IO-S-V-O +DetNP +203562 V-IO +203564 Conj-CL +CLaCL +ADV-V +V-O +DetNP +203570 V-IO +NPofNP +Np-Appos +203574 Conj-CL +ADV-ADV-V-ADV-S +PrepNp +DetNP +PrepNp +DetNP +203581 Conj-CL +203583 O-V-ADV +O-V +203586 Conj-CL +V-S-O +NPofNP +DetCL +V2CL +O-ADV-V-IO +PrepNp +203594 Conj-CL +203596 sub-CL +O-V-S +DetNP +that-VP +203601 CLaCL +V-O +O-V-ADV +ofNPNP +PrepNp +DetNP +203608 that-VP +IO-O-V +DetAdj +203612 Conj-CL +ADV-S-V-ADV +V-O +DetNP +203617 Conj-CL +VC-P +203620 Conj-CL +ClCl2 +sub-CL +V2CL +203625 CLaCL +ADV-V-S +DetNP +NPofNP +DetNP +203631 S-V-ADV +DetNP +PrepNp +203636 sub-CL +S-V-ADV +DetNP +PrepNp +S-V-O-ADV +AdvpNp +DetNP +PrepNp +203645 ADV-V-O +203648 Np2CL +PrepNp +203651 CLaCL +V-O +203654 ClCl2 +sub-CL +203657 DetAdj +that-VP +O-S-ADV-V +ADV-V +ADV-S-V +O-V-ADV +AdvpNp +203665 ClCl +203667 NpAdjp +that-VP +V-O +203671 sub-CL +V-O +S-V-O +AdvpNp +203676 ClCl +203678 PrepNp +that-VP +P-VC +AdjpNp +sub-CL +O-V-ADV +PrepNp +203687 Np-Appos +203689 Np2CL +203692 CLaCL +O-ADV-V +ADV-O-ADV-V +ADV-V +203697 V-ADV +203701 Np2CL +PrepNp +O-V-ADV +203705 O-ADV-V +DetNP +NPofNP +PrepNp +203711 O-ADV-V +DetNP +NPofNP +PrepNp +203716 PtclCL +PtclCL +203719 ADV-S-V-ADV +2Advp_h1 +PrepNp +ADV-V-O-ADV +203724 ADV-V-S +ofNPNP +DetNP +203728 ClCl +V-ADV +PrepNp +DetNP +ADV-V +AdvPp +PrepNp +203736 P-S-VC +PrepNp +DetNP +NPofNP +DetNP +NPofNP +NpAdjp +203744 Conj-CL +ClCl2 +sub-CL +ADV2CL +PtclCL +203750 that-VP +V-ADV +V-O-IO +203754 Conj-CL +203756 sub-CL +CLaCL +V2CL +203760 V-O-IO +ADV-V +203763 V-O-ADV +PrepNp +sub-CL +P-S-VC +P-VC-S +AdvpNp +203770 Conj-CL +ADV-V-O +ADV-S-V +DetNP +203777 Np2CL +ADV-V +ADV-V-O +DetNP +203783 S-VC-P +Conj3Np +DetNP +203787 DetNP +203789 DetNP +203792 PrepNp +DetNP +sub-CL +ADV-ADV +PrepNp +203799 sub-CL +V-O +O-V +AdvpNp +DetNP +NPofNP +203806 CLaCL +ADV-V-O +PrepNp +203810 V2CL +203814 Np2CL +V-IO-O +DetNP +203818 V-ADV +203821 DetNP +203823 ADV-P-VC +AdjpNp +PrepNp +203827 ADV-V-O +Np2CL +203830 S-V-O +DetCL +V-O +DetNP +203836 V-IO-O +DetNP +203840 that-VP +CLaCL +S-P +PrepNp +DetNP +203846 S-P-VC +DetNP +PrepNp +203850 O-ADV-ADV-V +DetNP +NP-CL +O-S-V-IO +PrepNp +203856 Conj-CL +S-ADV-V-O +DetNP +ADV-V +PrepNp +DetNP +NPofNP +203865 that-VP +CLaCL +S-P +PrepNp +DetNP +203871 S-P +DetNP +PrepNp +203875 Conj-CL +ClCl2 +sub-CL +ADV2CL +ADV-V +PrepNp +NpPron +DetNP +203884 PtclCL +PtclCL +203887 ClCl +203889 Np2CL +DetCL +V-ADV +PrepNp +O-S-V +DetNP +NP-CL +O-S-V +203898 O-V +AdjpAdvp +sub-CL +S-ADV-V +PrepNp +DetNP +203905 Conj-CL +203908 Np2CL +NP-CL +PtclCL +O-V-ADV +PrepNp +DetNP +NPofNP +V-S-ADV +DetNP +PrepNp +DetNP +203920 ClCl2 +sub-CL +O2-V-O-ADV +PrepNp +DetNP +NPofNP +S-V +203928 ClCl2 +sub-CL +V-O +O-V +DetNP +NPDetAdj +DetAdj +203936 CLaCL +S-V-O +DetNP +203941 ClCl +O-V-IO +AdjpNp +sub-CL +VC-P-ADV +PrepNp +PrepNp +DetNP +NP-CL +DetNP +NPofNP +DetNP +203954 O-S-ADV-V +O-V +DetNP +CLaCL +ADV-V-O +203960 V2CL +203963 sub-CL +CLaCL +ADV-V +PrepNp +203968 P-VC +PrepNp +203971 ClCl +ADV-V-O-O2 +V-ADV +PrepNp +203976 Conj-CL +203978 ADV-S-O-ADV-V +2Advp_h2 +DetNP +203982 S-V-O +sub-CL +ClCl +S-V +S-V +AdvpNp +203990 PrepNp +Demo-NP +DetNP +that-VP +CLa2CL +S-P +PrepNp +DetNP +NPofNP +204000 S-P +PrepNp +S-P +PrepNp +204006 Np2CL +DetCL +CLaCL +V-O +DetNP +NPofNP +204013 V-O +DetCL +V-O +204017 Conj-CL +ClCl +S-V-ADV +DetCL +V-O +PrepNp +DetNP +NPofNP +CLaCL +S-V-O +204028 V-IO-O +204031 NpAdjp +ADV-P +DetNP +CLaCL +Np2CL +204038 S-V +V-O +CLaCL +IO-V-O +204043 ADV-IO +DetNP +204046 CLaCL +V-S +204050 CLaCL +CLaCL +ClCl2 +sub-CL +S-V-O +O-V +DetNP +NPofNP +204059 S-V-O +DetNP +NPofNP +204063 CLaCL +ADV-V +PrepNp +204067 O-ADV-V +PrepNp +204070 S-O-ADV-V +DetCL +ADV-V-O +DetNP +NPofNP +204076 Conj-CL +CLaCL +S-ADV-VC-P +DetNP +NP-CL +O-V +204083 P2CL +DetNP +AdjpNp +V-O +204088 O-V-IO-ADV +ADV-V +PrepNp +204092 Conj-CL +204094 Np2CL +Np-Appos +DetNP +DetNP +NP-CL +NPDetAdj +DetAdj +O-V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +S-O-V-O2 +204108 V-O-O2 +All-NP +O-V-IO-S +204112 ClCl +O-V-IO +O-V-IO +NPDetAdj +DetAdj +204119 AdvpCL +sub-CL +S-V +DetNP +204124 CLaCL +ADV-V-S +ofNPNP +DetNP +204129 V2CL +204132 V2CL +204134 CLaCL +V2CL +204137 V-ADV +PrepNp +204141 sub-CL +V-O +V2CL +sub-CL +V-ADV +PrepNp +DetNP +sub-CL +S-P-ADV-VC +DetNP +204152 Conj-CL +204154 sub-CL +V2CL +sub-CL +ClCl2 +sub-CL +V2CL +V2CL +204163 PrepNp +sub-CL +V-S +DetNP +ofNPNP +DetNP +204170 Conj-CL +CLaCL +ADV-ADV-V-O +PrepNp +204175 sub-CL +204177 DetNP +that-VP +CLaCL +V-O +DetNP +204183 ClCl2 +sub-CL +V-IO-S +DetNP +ADV-V +204189 ClCl +V2CL +V-ADV +204193 CLaCL +S-VC-P +DetNP +NPDetAdj +DetAdj +204199 S-P-VC +DetNP +NPofNP +DetNP +204204 CLaCL +204206 Np2CL +NpAdjp +All-NP +NpPp +PrepNp +ADV-V-O +204213 ClCl +204215 Np2CL +All-NP +DetCL +O-V +sub-CL +O-V +NpAdjp +204223 ADV-S-P-VC-ADV +PrepNp +DetNP +NP-CL +O-V-IO +204229 ClCl +V-ADV +PrepNp +S-ADV +PrepNp +204236 sub-CL +204238 DetNP +O-V-ADV +PrepNp +sub-CL +ADV-V-ADV +PrepNp +DetNP +sub-CL +ADV-ADV-V +PrepNp +204249 ClCl +S-VC-P +DetNP +S-P +DetNP +204256 Np2CL +DetCL +ClCl +V-ADV +PrepNp +S-ADV +PrepNp +NpAdjp +sub-CL +ADV-ADV-V-O +PrepNp +V-O +204270 sub-CL +ADV-S-V-ADV +PrepNp +sub-CL +204275 S2CL +DetNP +204278 V2CL +204280 V-O +204282 ADV-V +PrepNp +DetNP +204286 V2CL +204289 sub-CL +CLaCL +V-ADV +PrepNp +204294 S-ADV-V +DetNP +NPofNP +PrepNp +O-V +PtclCL +O-V +204302 V-ADV +204305 PrepNp +DetNP +NPofNP +that-VP +CLaCL +O-V +NpAdjp +204313 VC-P +AdjpNp +204316 ClCl2 +sub-CL +V-O-S +DetNP +S-O-V +204322 V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +204328 ClCl +ClCl2 +sub-CL +O-V +DetNP +NPofNP +V-ADV +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +S-O-V +ofNPNP +DetNP +NPofNP +DetNP +204346 V-ADV +PrepNp +ofNPNP +DetNP +204352 sub-CL +CLaCL +S-P-VC +DetNP +NPDetAdj +DetAdj +PrepNp +204360 S-V +DetNP +NPofNP +204365 DetNP +NPDetAdj +DetAdj +that-VP +204370 sub-CL +V-O +204374 AdjpNp +AdjpAdvp +that-VP +S-O-V-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +204384 ClCl +S-P-VC +NPofNP +sub-CL +V-O +O-S-V-IO +204392 sub-CL +S-ADV-V-O +DetNP +O-V-S +ofNPNP +DetNP +204399 Conj-CL +204401 sub-CL +O-V-IO +All-NP +O-V-ADV +PrepNp +DetNP +NPofNP +204409 notCLbutCL2CL +S-O-V +CLaCL +S-V-O +204414 ClCl +V-O +sub-CL +ClCl +CLaCL +CLaCL +S-V +204422 O-V +204424 S-V +DetNP +NPofNP +sub-CL +O-V-IO +NP-CL +PtclCL +O2-V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +204438 sub-CL +V-O +204441 ClCl2 +sub-CL +S-O-V +DetNP +204446 that-VP +O-ADV-V +AdjpAdvp +204451 sub-CL +P-VC +PrepNp +DetNP +S-O-V +DetNP +DetAdj +204459 Conj-CL +ClCl2 +sub-CL +CLaCL +P-ADV-VC +PrepNp +DetNP +204467 S-V-O-ADV +PrepNp +DetNP +ADV-V-O-S +PrepNp +DetNP +204475 DetNP +NP-CL +O-S-V-IO +ADV-VC-S-P-ADV +DetNP +NPofNP +204483 sub-CL +O-V +AdvpNp +204487 ClCl2 +sub-CL +O-V +DetNP +NPofNP +O-V +AdvpNp +DetAdj +204496 Conj-CL +204498 NP-all +PrepNp +PrepNp +DetNP +NPofNP +sub-CL +ADV-V-O +DetCL +V-O +204508 ClCl2 +sub-CL +CLaCL +ADV-V +204513 V-IO +O-ADV-V +204516 Conj-CL +ADV-O-ADV-V-ADV +PrepNp +DetNP +NPofNP +204522 S-O-V +DetCL +O-V +AdvpNp +DetNP +NPofNP +204530 sub-CL +204532 DetNP +PrepNp +O-S-V +NpAdjp +204537 Conj-CL +ADV-V-O +EitherOrVp +204542 aNpaNp +204545 DetNP +NPofNP +204548 Conj-CL +sub-CL +204551 Np-Appos +DetNP +DetCL +ADV-V +PrepNp +DetNP +NPofNP +that-VP +V-O-ADV +204561 ClCl2 +sub-CL +V-S +Np-Appos +DetNP +NP-CL +O-S-V-IO-ADV +PrepNp +DetNP +DetNP +NP-CL +NPofNP +DetNP +S-ADV-V +PrepNp +DetNP +S-V-ADV +PrepNp +204580 Conj-CL +204582 AdvpNp +sub-CL +ADV-P-VC +PrepNp +PrepNp +204589 sub-CL +ADV-V +204592 O2-V-O +204594 Conj-CL +204596 V-S +S-V-O +All-NP +DetCL +V-O +O-V-IO +DetNP +204604 Conj-CL +ClCl +O-V +sub-CL +CLaCL +ADV-V-O +DetNP +204612 O2CL +204614 Conj-CL +204616 sub-CL +ClCl2 +sub-CL +V-S +DetNP +NPofNP +204623 V-O +S-V-IO +204626 Conj-CL +204628 PrepNp +sub-CL +P-VC +PrepNp +204633 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +DetCL +V-O +204641 NpPp +PrepNp +ADV-V +204645 Conj-CL +ClCl2 +sub-CL +O-V-IO +S-V-O +DetNP +ofNPNP +DetNP +204654 Conj-CL +204656 DetNP +ClCl +V-ADV-S +that-VP +S-V +sub-CL +CLaCL +204664 sub-CL +ADV-V +DetNP +2Advp_h1 +PrepNp +204671 sub-CL +V2CL +PrepNp +204675 Conj-CL +ADV-S-V-O-ADV +V2CL +DetNP +Conj3Pp +PrepNp +204682 PrepNp +204684 PrepNp +204686 aCLaCLaCL +204688 ClCl +ADV2CL +PrepNp +sub-CL +ADV-V-ADV +PrepNp +204695 ClCl +ADV2CL +PrepNp +sub-CL +CLaCL +ADV-V +PrepNp +DetNP +204704 ADV-V-O +204706 ClCl +ADV2CL +PrepNp +sub-CL +S-V +DetNP +NPofNP +NP-Demo +DetNP +204716 CLaCL +ADV-V-O +O-IO-V +204720 ADV-V-O +V-ADV +204723 Conj-CL +ClCl +ClCl2 +sub-CL +V-S +Np-Appos +DetNP +NPofNP +DetNP +V-O-ADV +PrepNp +NP-all +DetNP +sub-CL +CLaCL +notCLbutCL2CL +V-ADV +PrepNp +O-V +O-V +204744 O-V-IO +DetCL +V2CL +204748 ClCl +S-O-V +sub-CL +CLaCL +ADV-V +PrepNp +DetAdj +204756 V-IO +204759 S-P-VC +All-NP +O-V-S +DetNP +PrepNp +that-VP +CLaCL +ADV-V +PrepNp +DetAdj +204770 V-IO +204772 CLaCL +CLaCL +ADV2CL +204776 ADV-V-O +204778 CLaCL +ADV-ADV +204781 V-O +204783 Conj-CL +204785 PrepNp +DetNP +NPofNP +PrepNp +204790 NP-CL +O-V-IO +Conj3CL +CLaCL +ADV2CL +204796 ADV-V-O +204798 CLaCL +ADV-ADV +204801 V-O +204803 sub-CL +V-ADV +PrepNp +DetNP +204808 Conj-CL +204811 Np-Appos +NP-CL +O-V +DetNP +ADV-V-O +O-V +204818 CLaCL +204820 that-VP +V-O +O-V +204826 ADV-V-ADV +PrepNp +PrepNp +204830 CLaCL +CLaCL +ADV2CL +204834 ADV-V-O +204836 CLaCL +ADV-ADV +204839 V-O +204841 PtclCL +PtclCL +204844 that-VP +ClCl +CLaCL +CLaCL +V2CL +204850 V-S +204852 S-V +DetNP +CLaCL +S-V +204857 S-P-VC +DetNP +NPofNP +PrepNp +204863 sub-CL +S-V +DetNP +sub-CL +V-S +DetNP +NPofNP +204871 Conj-CL +204873 sub-CL +V-O +DetNP +DetNP +PrepNp +DetNP +sub-CL +V-S-ADV +PrepNp +DetNP +204884 Conj-CL +aCLaCL +204887 S-ADV-O-V +AdvpNp +204890 CLaCL +CLaCL +ADV-V-O +204894 V-S +ofNPNP +DetNP +204898 O-S-V-ADV +DetNP +NPofNP +PrepNp +204903 Conj-CL +ADV-O-ADV-V-O2 +PrepNp +Demo-NP +DetNP +204909 PtclCL +PtclCL +204912 O-V-IO-ADV +PtclCL +O2-V-O +DetNP +PrepNp +DetNP +NPofNP +204920 ADV-ADV-V-O-ADV +PrepNp +PrepNp +DetNP +NPofNP +204926 ClCl +CLaCL +V2CL +204930 V2CL +sub-CL +S-V +DetNP +NPofNP +BeVerb +204937 O-ADV-V-IO +PrepNp +204940 ClCl +V-S +AdvpCL +notCLbutCL2CL +ADV-V-IO +PrepNp +ADV-ADV-V-IO +PrepNp +DetNP +204950 CLaCL +ADV-ADV-V +PrepNp +Demo-NP +DetNP +PrepNp +DetNP +NPofNP +204960 that-VP +S-V-O-ADV +DetNP +PrepNp +204965 Conj-CL +ClCl +S-V-O +PronNP +DetNP +sub-CL +CLaCL +S-O-V +204975 that-VP +S-ADV-V +PrepNp +DetNP +204980 ClCl +CLaCL +V-ADV +PrepNp +DetNP +204986 V-ADV +PrepNp +DetNP +CLaCL +ADV-V-O +DetNP +204993 V-ADV +PrepNp +DetNP +204998 DetNP +NPofNP +205001 ADV-ADV-V +PrepNp +205004 O-ADV-V +205007 that-VP +CLaCL +V-O +205012 ADV-O-V +S-O-V +205016 PrepNp +that-VP +ADV-V +PrepNp +205022 ADV-V +205025 V-S +205027 V2CL +that-VP +ClCl +V-S-ADV +PrepNp +DetAdj +O-O2-V +205035 Conj-CL +205037 sub-CL +S-P-VC +DetNP +PrepNp +205043 sub-CL +ADV-O-V +PrepNp +205047 ClCl +CLaCL +ADV-O-V +PrepNp +DetNP +205053 V2CL +S-V-O +DetNP +205057 CLaCL +O-V-S +205061 V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +205067 Np2CL +DetNP +205071 ofNPNP +DetNP +sub-CL +S-V-O +DetNP +sub-CL +205078 All-NP +sub-CL +205081 Np2CL +All-NP +O-V-IO +NpAdjp +205086 Conj-CL +205088 DetNP +AdjpNp +that-VP +V-O +NpaNp +Np-Appos +DetNP +AdjpNp +AdjpNp +205098 Np-Appos +O-V +Np-Appos +205102 S-O-V-ADV-ADV +PrepNp +DetNP +V-O +DetNP +NP-CL +205109 O-V-IO +V2CL +205112 Conj-CL +205114 Np2CL +PrepNp +DetNP +NP-CL +O-V-ADV-ADV +PrepNp +DetCL +S-V +DetNP +PrepNp +205125 V-O-IO +ofNPNP +DetNP +DetNP +NP-CL +O-V-IO-ADV +PrepNp +DetNP +205134 ClCl +P-VC +CLaCL +IO-O-V +205139 O-V +DetNP +NPofNP +205143 ClCl +205145 that-VP +S-P-VC +All-NP +O-V-IO +PrepNp +sub-CL +CLaCL +O-V-IO +DetNP +NP-CL +O-V-IO +205157 Conj3CL +S-V +205161 that-VP +ADV-V +PrepNp +205166 that-VP +S-O-V +205169 S-ADV-V +PrepNp +205172 ClCl2 +notCLbutCL2CL +ADV-V +PrepNp +DetNP +ADV2CL +PrepNp +O-V-IO +sub-CL +Conj4CL +P-VC +205184 S-P-VC +NP-all +DetAdj +205188 S-P +DetAdj +205191 V-ADV +PrepNp +205194 Conj-CL +ClCl +CLaCL +ADV-VC-P +PrepNp +DetNP +205201 S-P-VC +PrepNp +DetNP +S-ADV-V +PrepNp +205208 Np2CL +NpAdjp +PrepNp +DetNP +NP-CL +NPofNP +O-V-IO +sub-CL +205217 sub-CL +S2CL +205220 CLaCL +ClCl2 +sub-CL +VC-P +PrepNp +CLaCL +S-V-O-ADV +PrepNp +DetNP +NP-CL +NPofNP +O-V-IO +205233 V2CL +205235 ClCl +ClCl +S-V +NpPp +PrepNp +sub-CL +ADV-S +DetNP +NPofNP +DetNP +sub-CL +S-V +DetNP +205249 Conj-CL +CLaCL +ADV-ADV-V +PrepNp +205255 PrepNp +DetNP +sub-CL +V-O +S-V-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +205265 CLaCL +S-V-IO-O +DetNP +NPofNP +205270 ClCl +S-V-O +DetNP +sub-CL +205275 PrepNp +DetNP +sub-CL +S-ADV-VC-P +PrepNp +DetNP +205282 notCLbutCL2CL +205284 that-VP +V-O-ADV +PrepNp +DetNP +that-VP +V-O-ADV +PrepNp +DetAdj +205294 PrepNp +DetNP +sub-CL +S-ADV-VC-P +PrepNp +DetNP +205301 V-O-ADV +PrepNp +DetNP +205305 S-P-VC +DetNP +NPDetAdj +DetAdj +205310 ClCl2 +sub-CL +O-V-ADV +PrepNp +DetNP +S-V-O-ADV +PrepNp +DetNP +205319 Conj-CL +205321 PrepNp +sub-CL +V-S-ADV +BeVerb +AdvpNp +PrepNp +205328 Conj-CL +ClCl +ClCl +notCLbutCL2CL +ADV-V-ADV +PrepNp +ADV-ADV +PrepNp +DetCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +sub-CL +205344 sub-CL +205346 Np2CL +S-P +PrepNp +S-P +PrepNp +sub-CL +S-P-VC +AdvpNp +PrepNp +sub-CL +205357 DetNP +that-VP +S-O-V +205361 ClCl +ClCl +ClCl +S-O-V-IO +DetNP +NP-CL +O-V-IO +sub-CL +205370 sub-CL +205372 CLaCL +S-P +PrepNp +205376 S-P +PrepNp +sub-CL +V-ADV +BeVerb +PrepNp +sub-CL +205384 DetNP +that-VP +CLaCL +S-O-V +205390 sub-CL +O-V +205394 Np2CL +205397 O-V-IO +that-VP +P-S-VC-ADV +P-VC-S +PrepNp +V-O +DetNP +NP-CL +NPDetAdj +DetAdj +O-V-IO +V-O-ADV +PrepNp +NPofNP +205413 Np2CL +NpAdjp +CLaCL +S-O-ADV-V +AdvpNp +DetNP +205420 S-O-V +205422 CLaCL +205424 that-VP +S-O-V +205427 ClCl +CLaCL +V-IO-O +DetNP +NPofNP +205433 V2CL +sub-CL +205436 S-P-VC +DetNP +NP-CL +ADV-V-O +PrepNp +PrepNp +205443 ADV-S-V-ADV-ADV +O-V +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +NP-CL +P-VC-S +NP-CL +ADV-V-S +PrepNp +NpaNp +205459 DetNP +NPofNP +205462 Conj-CL +205464 AdvpNp +Np-Appos +DetCL +V-O +DetNP +sub-CL +ADV-V-S-ADV-ADV +PrepNp +DetNP +NPofNP +205475 Conj-CL +S-ADV-V-ADV-ADV +DetNP +V-O +NpaNp +DetNP +205482 PpNp2Np +Conj2Pp +PrepNp +DetNP +205487 PrepNp +DetNP +PrepNp +Conj3Np +205494 Conj-CL +CLaCL +S-ADV-V +V-O +All-NP +DetCL +V-ADV +PrepNp +205504 O-V +205507 O2CL +Np-Appos +DetNP +205512 S-VC +205514 Conj-CL +V-S-ADV +AdvpNp +Np-Appos +DetCL +V-O +PrepNp +205522 Conj-CL +ClCl2 +sub-CL +205526 S-VC +CLaCL +V-ADV +PrepNp +DetNP +205532 V-ADV +205534 Conj-CL +205536 O-V +205538 Conj-CL +205540 O2CL +Np-Appos +DetNP +205544 ClCl +205546 ClCl +205548 that-VP +S-VC +Conj-CL +205552 sub-CL +O-V +S-V +sub-CL +V-S +DetNP +NP-CL +205560 O-V +205562 O-V-IO +PpNp2Np +PrepNp +205566 Conj-CL +CLaCL +S-ADV-V-O +Np-Appos +V-O +205572 CLaCL +V-O +DetNP +ofNPNP +DetNP +205578 V-O +ofNPNP +DetNP +NPDetAdj +DetAdj +205584 Conj-CL +VC-P-ADV-S +DetNP +205588 Conj-CL +205590 DetNP +DetNP +205593 DetNP +PrepNp +DetNP +205597 Np2CL +DetNP +NP-CL +O-V-IO-S +DetNP +PtclCL +V-O +205605 Conj-CL +Conj3CL +S-V-O +Conj3Np +DetNP +205611 DetNP +205613 DetNP +NPofNP +DetAdj +DetNP +205618 V-O +205620 ClCl +V-ADV-ADV +PrepNp +sub-CL +VC-P +NPofNP +DetNP +NP-CL +S-VC-P +NPofNP +NP-Demo +DetNP +205633 Conj-CL +VC-S-P +DetCL +205637 DetAdj +that-VP +V-S +S-V-ADV +AdjpNp +PrepNp +DetNP +205645 Conj-CL +V-O-S +DetNP +NpaNp +Np-Appos +205651 AdjpNp +205653 Conj-CL +CLaCL +CLaCL +S-VC-P-ADV +NP-Demo +DetNP +DetNP +205661 V-ADV-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +205668 S-V-ADV-ADV +DetNP +PrepNp +DetNP +205673 Conj-CL +CLaCL +CLaCL +V-S +Np-Appos +DetNP +NPDetAdj +DetAdj +DetNP +NPofNP +DetNP +205685 V-IO +DetNP +205688 V-O +DetNP +205691 Conj-CL +205693 DetNP +Np-Appos +DetNP +DetNP +PtclCL +S-P-VC +AdvpNp +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +205707 ADV-VC +205709 Conj-CL +CLaCL +205712 NpaNp +DetNP +205715 DetNP +O-V +sub-CL +P-VC +205720 V2CL +205722 Conj-CL +S-ADV-V +AdvpNp +DetNP +PrepNp +BeVerb +Conj2VP +205731 Conj-CL +S-V-O-ADV +DetNP +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +205740 PrepNp +DetNP +NPofNP +205745 S-ADV-V-IO +DetNP +205748 CLaCL +S-ADV-V-ADV +Conj2Pp +PrepNp +205753 PrepNp +NP-CL +DetNP +ADV-S-V +All-NP +DetAdj +205760 ADV-V-O +PrepNp +205763 ADV-O-V +205766 DetCL +V2CL +O-V-IO +205771 O-V-S +205773 Conj-CL +205775 O-S-V +NPofNP +NpAdjp +V2CL +DetNP +DetNP +205782 ADV-V-IO +DetNP +205786 CLaCL +ClCl2 +sub-CL +ADV-V +V-ADV +PrepNp +DetAdj +205794 ClCl2 +sub-CL +ADV2CL +ADV-O-V +205799 Conj-CL +V-O-S-O2-ADV +DetNP +V2CL +PrepNp +Np-Appos +DetNP +205807 Conj-CL +S-V +Np-Appos +BeVerb +Conj2VP +205814 Conj-CL +205816 PtclCL +S-P-VC +AdvpNp +PrepNp +DetNP +NPofNP +205823 CLaCL +V-S +205827 ADV-VC +205830 NpAdjp +NpPp +PrepNp +DetNP +NPofNP +DetNP +VC-P +NPofNP +ADV-V-S-O +DetNP +PtclCL +S-V-O +S-ADV-P +PrepNp +DetNP +PrepNp +205847 Conj-CL +ADV-V-S +205850 Conj-CL +ADV-S-V +205853 Conj-CL +V-O-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +205861 Conj-CL +VC-P +205864 Conj-CL +205866 PrepNp +DetNP +sub-CL +CLaCL +ADV-V +205872 V-O +DetNP +205875 Conj-CL +CLaCL +V-S-ADV-ADV +DetNP +PrepNp +205882 O-V +AdjpNp +NPofNP +NP-Demo +DetNP +205888 CLaCL +V2CL +205892 ClCl2 +sub-CL +ADV-V-S-O +BeVerb +PtclCL +ADV-IO-V-O +205899 Conj-CL +205901 DetNP +CLaCL +V-O-S +205905 ADV-V-O +PrepNp +DetNP +NPofNP +205911 DetAdj +ADV-ADV-V-S +V-O +205915 sub-CL +205917 DetNP +NPofNP +DetNP +O-V-ADV +V-O +ADV-V-O +AdjpNp +V2CL +205926 Conj-CL +CLaCL +V-ADV-ADV-S +PrepNp +DetNP +DetNP +205933 CLaCL +V-O +DetNP +205938 S-VC-P +DetNP +NPofNP +DetAdj +205944 CLaCL +ADV-S-O-V +PrepNp +205948 S-V-IO-ADV +PrepNp +205952 DetNP +ClCl +PtclCL +S-P-VC +ClCl +S-V-O-IO +NpaNp +DetNP +NPDetAdj +DetAdj +205963 DetNP +O-V +205967 ClCl +S-ADV-VC-P +DetNP +NPDetAdj +DetAdj +PrepNp +NP-Demo +DetNP +CLaCL +205977 sub-CL +P-VC-S +PrepNp +NP-Demo +DetNP +DetNP +NPDetAdj +DetAdj +S-V +DetNP +NPDetAdj +DetAdj +sub-CL +ADV-V-IO +DetAdj +205993 ADV-S-ADV-VC-P +DetNP +NPDetAdj +DetAdj +205998 Conj-CL +206000 DetNP +Conj-CL +P-VC-S +206005 DetNP +ClCl +206008 that-VP +P-VC +ClCl +ClCl +CLaCL +S-ADV-V +PrepNp +206016 ADV-V-ADV +PrepNp +PrepNp +DetNP +sub-CL +V-IO +DetNP +S-V-O +All-NP +DetCL +VC-P +PrepNp +DetNP +ofNPNP +DetNP +206033 DetNP +P-VC-S +206036 Conj-CL +CLaCL +ADV-ADV-V-ADV +O-V +PrepNp +DetAdj +206044 S-ADV-V-ADV-O +PrepNp +206047 Conj-CL +206049 that-VP +O-V-IO-ADV +PrepNp +DetNP +Conj-CL +V-O +V-IO-O +DetNP +NPofNP +DetAdj +206060 Conj-CL +V-ADV-ADV +206063 notCLbutCL2CL +O2CL +O2CL +DetNP +206068 Conj-CL +VC-S-P +DetNP +206072 Conj-CL +CLaCL +ADV-V-S-O +DetNP +DetNP +206078 V2CL +206080 Conj-CL +CLaCL +CLaCL +S-ADV-V-ADV +DetNP +V-O-ADV +PrepNp +ofNPNP +DetNP +206090 ADV-V-O +NpAdjp +206093 CLaCL +V-ADV +PrepNp +206099 Np2CL +DetNP +NPofNP +DetAdj +206104 Conj-CL +V-IO-O +206107 Conj-CL +CLaCL +V-ADV-ADV-S +DetNP +206114 V-IO-O-ADV +sub-CL +206117 that-VP +O-V-ADV +AdjpNp +PrepNp +206122 Conj-CL +V-S-ADV-ADV +DetNP +V-O +NpaNp +DetNP +AdjpNp +206130 DetNP +AdjpNp +206133 Conj-CL +206135 ClCl2 +V2CL +P2CL +DetNP +206140 Conj-CL +ClCl2 +sub-CL +V-O-S +NpaNp +DetNP +206147 DetNP +V-ADV +206150 ClCl +V2CL +V2CL +206155 DetNP +ClCl +CLaCL +V-O-S +206160 V2CL +sub-CL +S-ADV-V-ADV-O +PrepNp +206166 DetAdj +CLaCL +S-O-V +206171 PrepNp +DetNP +V2CL +sub-CL +O2-O-V +NPofNP +206178 Conj-CL +ClCl2 +sub-CL +V-S-O +DetNP +Demo-NP +DetNP +CLaCL +ADV-V +206188 CLaCL +V-ADV-ADV +PrepNp +DetNP +206194 DetNP +P-VC-S +206197 Conj-CL +S-O-ADV-V-IO +DetNP +206201 Conj-CL +206203 DetNP +ClCl +PtclCL +IO-V +PtclCL +206209 that-VP +CLaCL +O-V-ADV +V-O +206214 O-V-ADV +V-O +206218 ClCl +206220 NpAdjp +PrepNp +sub-CL +ADV-V-IO-ADV +BeVerb +ADV-S-O-V +PrepNp +DetCL +V-O-IO +AdjpNp +206231 ADV-S-V-O +PrepNp +DetNP +V-O +206236 Conj-CL +S-V-ADV +DetAdj +206240 ClCl +ClCl2 +sub-CL +O-V +ADV-VC-P +NPofNP +DetNP +S-V-IO +All-NP +DetCL +O2-O-V +DetNP +206253 Conj-CL +CLaCL +S-ADV-V-ADV-O +DetNP +V-O +NP-Demo +DetNP +DetNP +206262 V-ADV-ADV +PrepNp +PrepNp +NpAdjp +CLaCL +VC-P +206269 ADV-P +206271 Conj-CL +ClCl +VC-P +NPofNP +DetNP +S-VC-P +PrepNp +206279 Conj-CL +206281 DetAdj +ClCl2 +V2CL +P2CL +DetNP +NPofNP +206288 Conj-CL +206290 ClCl +ClCl +V2CL +V2CL +V-O +206297 DetNP +O-V +DetNP +NPofNP +206303 DetNP +ClCl +ADV-V-O +sub-CL +ADV-O +206309 Conj-CL +206311 sub-CL +V2CL +206314 Conj-CL +V-O +DetNP +206318 Conj-CL +ADV-V-ADV +V-IO-O +DetNP +PrepNp +DetCL +VC-P +NP-CL +NP-CL +ofNPNP +S-VC-ADV-P +CLaCL +ADV-O-V +206332 CLaCL +ADV-O-ADV +PrepNp +AdjpNp +AdvpaAdvp +206339 ADV-O +DetNP +206342 Conj-CL +CLaCL +V-O-S +AdvpNp +DetNP +206348 V-ADV +PrepNp +DetNP +206352 Conj-CL +206354 BeVerb +Np2CL +Np-Appos +Np-Appos +DetNP +DetNP +NPofNP +DetAdj +206363 Conj-CL +206365 Demo-NP +DetNP +NPofNP +DetAdj +sub-CL +CLaCL +ClCl +P-VC-S +PrepNp +DetNP +DetNP +ADV-V-S +DetNP +206379 V-ADV +BeVerb +AdvpAdvpAdvp +206383 Conj-CL +206385 DetNP +DetNP +NPofNP +DetAdj +notCLbutCL2CL +206391 Np2CL +DetNP +NPofNP +DetAdj +that-VP +206397 P-VC +NPofNP +DetAdj +206402 DetNP +O-V +O-V +206406 Conj-CL +206408 sub-CL +S-V-O +DetNP +DetNP +CLaCL +V-O +DetNP +NPofNP +206417 ClCl +V-O +AdjpNp +IO-O +AdjpNp +206423 O2CL +DetNP +206426 Conj-CL +ClCl +VC-S-P +DetNP +ADV-P-ADV +PrepNp +DetAdv +PrepNp +206435 Conj-CL +ClCl +206438 PrepNp +notCLbutCL2CL +V-O +206442 PrepNp +P-VC +sub-CL +206446 DetNP +CLaCL +V-O-IO +DetNP +NPofNP +206452 ADV-V-O +PrepNp +DetNP +NPofNP +206457 Conj-CL +aCLaCL +206460 S-O-V +DetNP +206463 V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +2Np +NpaNp +DetNP +NPofNP +206473 DetNP +NPofNP +DetNP +NPofNP +NpaNp +Np-Appos +NPofNP +DetNP +206482 Np-Appos +DetNP +206485 Conj-CL +206487 V-O +206489 NpaNp +DetNP +206492 DetNP +O-V +DetNP +206496 Np2CL +V2CL +P2CL +DetNP +NPofNP +206503 DetNP +ClCl2 +V2CL +P2CL +DetNP +NPofNP +206510 Conj-CL +ADV-V-S-O-ADV +PrepNp +Demo-NP +DetNP +DetNP +PrepNp +DetAdj +206520 PrepNp +DetNP +206523 sub-CL +ADV-S-V +sub-CL +V-S +DetNP +V2CL +206530 S-V +NpAdjp +AdvpAdjp +206534 Conj-CL +ADV-V-IO +O-ADV-V +NpAdjp +AdjpAdvp +DetNP +ofNPNP +DetNP +206543 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +206549 DetNP +V2CL +206552 Conj-CL +ADV-V-O +V-O +DetNP +DetNP +206558 Conj-CL +206560 DetAdj +sub-CL +P-VC +sub-CL +ClCl +ADV-V-ADV-S-ADV +PrepNp +DetNP +DetNP +PrepNp +DetNP +sub-CL +VC-P-S +DetNP +NPofNP +Demo-NP +DetNP +DetNP +that-VP +CLaCL +V-S +ofNPNP +DetNP +206584 V2CL +206586 Conj-CL +CLaCL +V-S +DetNP +206591 aCLaCL +206593 V-O +DetNP +NPofNP +NpaNp +DetAdj +206599 Np-Appos +DetAdj +DetCL +V-ADV +206605 ADV-V +PrepNp +DetNP +sub-CL +V-O +ADV-S-V +V-O +ofNPNP +DetNP +CLaCL +S-ADV-O-V +NPofNP +DetNP +ofNPNP +DetNP +206621 V-ADV-S +NpaNp +206625 Conj-CL +ClCl +Conj3CL +S-V +DetCL +V2CL +206632 P-VC-S +ofNPNP +DetNP +206637 that-VP +ADV-V +sub-CL +S-V +AdvpNp +206643 Conj-CL +ClCl +V-S +sub-CL +206648 DetNP +S-ADV-V +NPofNP +206652 Conj-CL +206654 AdjpNp +V-ADV +PrepNp +O-V +206659 Conj-CL +206661 PrepNp +DetNP +NpPp +PrepNp +CLaCL +VC-P +NPofNP +DetNP +206670 V-ADV +PrepNp +DetNP +NPofNP +DetAdj +that-VP +V-O +DetNP +NPofNP +DetNP +206681 Conj-CL +V-S +DetNP +206685 Conj-CL +CLaCL +V2CL +206689 V-O +DetNP +NPofNP +206693 Conj-CL +V-S-ADV +AdvpNp +Np-Appos +DetCL +V-ADV-ADV-ADV +PrepNp +DetAdj +V-O-ADV +NPofNP +NpaNp +206705 AdvpNp +NpNump +206708 Conj-CL +CLaCL +V-O +DetNP +NPofNP +DetNP +206716 PrepNp +DetNP +sub-CL +P-VC-ADV-S +DetAdj +V2CL +206723 Conj-CL +CLaCL +VC-P-S +PrepNp +DetNP +NP-CL +ADV-V +206731 P-S +PrepNp +DetNP +NP-CL +NpAdjp +ADV-ADV-S-V +PrepNp +BeVerb +206740 Conj-CL +ADV-ADV-ADV-V-O +PrepNp +DetNP +NPofNP +DetAdj +sub-CL +P-VC-S +DetNP +DetNP +206751 Conj-CL +CLaCL +ClCl +ADV-S-V-ADV-ADV +DetNP +NPofNP +DetNP +Np-Appos +DetNP +PrepNp +DetNP +P-ADV-VC +206764 V-O +S-V-ADV +DetNP +PrepNp +DetNP +206770 Conj-CL +CLaCL +CLaCL +V2CL +206775 V-ADV +Conj2Pp +PrepNp +Np-Appos +206780 PrepNp +NP-CL +DetNP +AdjpNp +O-V-S +DetNP +206788 CLaCL +V-O-ADV +DetNP +PrepNp +DetNP +206794 ADV-V-O +ADV-V-O +206797 Conj-CL +CLaCL +V-S +NpaNp +DetNP +206803 DetNP +AdjpNp +206806 V-ADV +PrepNp +DetNP +206810 Conj-CL +V-S-ADV +DetNump +206814 Conj-CL +CLaCL +CLaCL +S-V-ADV-ADV +DetNP +AdjpNp +DetNP +206822 V-ADV-ADV +PrepNp +DetNP +206826 CLaCL +ADV-V-O +V2CL +V-S +DetNP +206832 ADV-V +206834 Conj-CL +CLaCL +V-S-ADV +AdvpNp +Np-Appos +V-O +206841 V-ADV +PrepNp +DetNP +206845 Conj-CL +V-O +CLaCL +S-V +DetNP +206852 Np2CL +DetNP +NP-CL +S-VC-P +PrepNp +DetNP +NPofNP +ADV-V +PrepNp +DetNP +ADV-V-ADV +PrepNp +AdjpNp +206866 Conj-CL +CLaCL +ADV-V-S +AdvpNp +Np-Appos +DetNP +AdjpNp +DetCL +V-ADV-ADV +PrepNp +DetNP +206878 CLaCL +V2CL +206881 V2CL +206883 Conj-CL +206885 DetNP +that-VP +V-S +S-ADV-V +PrepNp +206891 Conj-CL +V-ADV-ADV-S +PrepNp +DetNP +206896 Conj-CL +S-V-ADV-ADV-ADV +PrepNp +DetNP +V2CL +206902 Conj-CL +206904 sub-CL +V2CL +V-ADV +PrepNp +DetNP +206910 V-O +206912 NumpNP +NpPp +PrepNp +ADV-V-S +DetNP +NPofNP +DetNP +CLaCL +S-ADV +PrepNp +DetNP +206924 S-ADV +PrepNp +DetNP +206928 Conj-CL +206931 Np2CL +206934 that-VP +CLaCL +V-O +DetNP +NPofNP +206940 ADV-V-O +ADV-V-O +206943 CLaCL +ADV-V-ADV +O-V +PrepNp +DetNP +206949 CLaCL +V-O +S-V +DetNP +206955 that-VP +P-VC +206960 Np2CL +ADV-V +O-V +206966 that-VP +P-VC +DetNP +ClCl +206971 Np2CL +sub-CL +S-V-O +V-IO-O +ADV-V-O +S-O-V +206979 Np2CL +206982 V2CL +Np2CL +NP-CL +S-VC-P +Np2CL +206989 CLaCL +ClCl +ADV-O-V +sub-CL +ADV-V-ADV +PrepNp +DetNP +206997 CLaCL +V-ADV +PrepNp +DetNP +NPofNP +207004 V-ADV +PrepNp +DetNP +NpaNp +NpaNp +NPofNP +207011 NPofNP +207013 NpaNp +NPofNP +207016 NPofNP +207018 V-S-ADV +Np-Appos +DetNP +207022 DetNP +that-VP +CLaCL +V-O +DetNP +207028 O-V-IO +207030 Conj-CL +ClCl2 +CLaCL +V-S-ADV +Np-Appos +NP-Demo +DetNP +DetNP +NPofNP +207040 S-V-ADV-ADV +DetNP +P-VC-S +DetNP +PrepNp +DetNP +NPofNP +DetAdj +CLaCL +V-S +DetNP +207052 CLaCL +V-ADV +PrepNp +DetAdj +207058 S-IO +207060 Conj-CL +ADV-V-O-IO +O-V +aNpaNp +207065 DetNP +207067 DetNP +207069 Conj-CL +V-S-ADV +DetNP +V-O +DetNP +207075 Conj-CL +207077 DetNP +ClCl +S-IO +ClCl2 +sub-CL +V-O-S +DetNP +S-V-O +207086 Conj-CL +CLaCL +ADV-V +O-V +207092 V-O +NpAdjp +207095 ClCl +207097 PtclCL +V-O +ofNPNP +DetNP +207102 PtclCL +O-V +207105 Conj-CL +207107 Np-Appos +Np-Appos +NpPp +PrepNp +DetNump +DetCL +VC-P +PrepNp +sub-CL +V-S +207118 Conj-CL +CLaCL +207121 DetNP +AdjpNp +V-O +DetNP +207127 ClCl2 +sub-CL +Conj3CL +ADV-V-ADV-O +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +207138 V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +207146 V-O-ADV +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +ADV-V +2Advp_h1 +207155 Conj-CL +CLaCL +ADV-ADV-VC-P-S +PrepNp +NpNump +DetNP +NPofNP +207163 S-P +PrepNp +207166 CLaCL +ClCl +V-S +DetNP +S-V +DetNP +207173 CLaCL +V-ADV +PrepNp +DetAdj +207179 S-IO +207182 DetNP +CLaCL +CLaCL +CLaCL +V-O-ADV +DetNP +NPofNP +207190 V-O +DetNP +NPofNP +207194 CLaCL +V-O +DetNP +NPofNP +207199 V-ADV +PrepNp +DetNP +NPofNP +207204 notCLbutCL2CL +VC-P +P2CL +207208 CLaCL +V-S +207212 Np2CL +NpaNp +DetNP +NPofNP +207217 DetNP +NPofNP +207221 DetNP +ClCl +ClCl2 +sub-CL +V-O +V2CL +P-S +DetCL +CLaCL +ADV-V +207232 V2CL +207234 Conj-CL +aCLaCL +207238 AdvpNp +AdjpNp +AdjpNp +DetNP +PrepNp +DetNP +S-ADV-V-ADV +BeVerb +PrepNp +NP-Demo +DetNP +207251 CLaCL +sub-CL +207254 that-VP +S-VC-P +Np-Appos +DetNP +DetNP +NPofNP +DetNP +207262 sub-CL +ADV-O-V-ADV +V2CL +PrepNp +DetNP +NPofNP +207269 ADV-V-O-ADV-S-IO-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +207277 Conj-CL +V-ADV +207280 VC-P-S +Conj5Np +Np-Appos +207284 Np-Appos +DetCL +VC-P +207288 Np-Appos +NpPp +PrepNp +NPofNP +DetNP +207294 NPofNP +DetNP +207297 AdjpNp +PpNp2Np +PrepNp +DetNP +NPofNP +207304 Np-Appos +V-ADV +V2CL +207309 V-S-ADV +AdvpNp +PrepNp +207313 CLaCL +CLaCL +V2CL +207317 V-ADV +PrepNp +DetNP +207321 ADV-V-O +PrepNp +Demo-NP +DetNP +207326 Conj-CL +ClCl2 +S-ADV-V +V-S-ADV +PrepNp +DetNP +207333 Conj-CL +207335 DetNP +that-VP +P-VC +207339 Conj-CL +207342 Np2CL +O-V +AdjpNp +207347 ADV2CL +207349 Conj-CL +207351 CLaCL +V-ADV-O +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +DetNP +207360 V2CL +207362 Conj-CL +CLaCL +V2CL +207366 ADV-O-V-ADV +O-V +PrepNp +DetNP +NPofNP +DetNP +207373 Conj-CL +207375 NP-CL +NP-Demo +DetNP +O-V-S +DetNP +DetNP +P-VC +DetNP +207384 Conj-CL +CLaCL +207387 Np-Appos +207389 that-VP +P-VC +DetNP +DetNP +sub-CL +VC-P +207396 V-O-ADV +PrepNp +DetNP +207400 Conj-CL +207402 S-ADV-V +DetNP +AdjpNp +DetNP +sub-CL +notCLbutCL2CL +VC-P-ADV +PrepNp +DetNP +P2CL +AdvPp +PrepNp +NpAdjp +V-O +DetNP +NPofNP +DetNP +207420 Conj-CL +207422 sub-CL +V-ADV +PrepNp +DetNP +Conj3CL +S-V +207429 S-V +207431 S2CL +207434 DetNP +V-ADV +PrepNp +DetNP +NP-CL +O-V-ADV +207441 CLaCL +V-S +Np-Appos +207445 V-O-ADV-ADV +DetNP +PrepNp +DetNP +AdjpAdvp +NpNump +NpAdjp +NumpNumpNump +207454 Conj-CL +ClCl2 +P-VC +ADV-V-S +DetNP +207461 DetNP +ClCl2 +V2CL +V2CL +207466 S-V-O-ADV +NPofNP +DetNP +207470 S-P-VC +207472 that-VP +P-VC +DetNP +207476 CLaCL +V-S +207479 CLaCL +CLaCL +V-O +DetNP +207484 V-IO +207486 O-ADV +DetNP +207489 S-ADV-P +NP-CL +V-S-IO-ADV +DetNP +V-ADV +PrepNp +207496 Conj-CL +ClCl2 +sub-CL +V2CL +207501 DetNP +Np-Appos +DetNP +207505 Np2CL +NPofNP +AdjpAdvp +207511 Intj2CL +Np2CL +that-VP +V-O +207517 V-O +DetNP +NPofNP +207523 Np2CL +NPofNP +207528 Intj2CL +Np2CL +that-VP +V-O +207534 V-O +DetNP +NPofNP +207539 DetAdj +207541 Np2CL +NPofNP +207544 ClCl +V-S +DetNP +sub-CL +207549 DetAdj +V-O +207552 Conj-CL +207555 Np2CL +207557 that-VP +V-O +207561 V-O +DetNP +NPofNP +207565 PtclCL +PtclCL +207568 CLaCL +207570 sub-CL +VC-P +V-O +207574 V-ADV +ADV-V +207578 sub-CL +V2CL +V-O +DetNP +NPofNP +207584 S-V-O +207586 V-ADV +ADV-ADV-V +207589 Conj-CL +O-V-ADV +V-O +ADV-V-O +AdjpNp +DetNP +207596 Conj-CL +207598 O-V +V-O +207601 ADV-S-V-O +V2CL +DetNP +ClCl +S-V +DetNP +NP-CL +O-V-S +DetNP +CLaCL +S-ADV-V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +207620 Np2CL +DetCL +V-O +207624 Conj-CL +207626 O-V +DetNP +DetNP +207630 Np2CL +S-P +207634 DetNP +ClCl +207637 sub-CL +207639 S-V +sub-CL +V2CL +PrepNp +S-O-V +207645 Conj-CL +207647 Demo-NP +DetNP +PrepNp +DetNP +that-VP +S-ADV-V +NP-Demo +DetNP +207656 Conj-CL +notCLbutCL2CL +207659 DetNP +that-VP +ADV-V +ClCl2 +sub-CL +207665 S-V +sub-CL +V2CL +S-P +PrepNp +207671 CLaCL +S-VC-P +Np-Appos +DetNP +NpaNp +DetCL +V-ADV +PrepNp +207680 DetCL +V-O +207684 that-VP +P-S-VC +ofNPNP +DetNP +207689 Conj-CL +ClCl +V-S +AdvpNp +NP-CL +NpAdjp +O-V-S +DetNP +ClCl2 +sub-CL +S-V-ADV +PrepNp +V-O +ADV-S-V-O +PronNP +DetNP +DetNP +AdjpNp +V2CL +207710 Np2CL +intjNP +O-V-ADV +DetNP +AdjpNp +PrepNp +All-NP +O-V-S-ADV +O-V +EitherOrVp +207722 DetNP +PrepNp +207725 ADV-ADV-V +PronNP +V-IO-ADV +DetNP +NP-CL +O-V +PrepNp +NpAdjp +V2CL +PrepNp +DetCL +V-S +PrepNp +AdjpNp +CLaCL +ADV-V-IO +PrepNp +NpNump +207744 V-O +NpPp +PrepNp +DetNP +NPofNP +DetNP +207751 Conj-CL +207753 V2CL +CLaCL +ADV-ADV-V +PrepNp +207758 V-O +DetNP +NP-CL +NPofNP +DetNP +O-V-ADV +sub-CL +aCLaCL +207767 S-V-ADV +207769 S-ADV-V-ADV +PrepNp +NpAdjp +AdvPp +PrepNp +AdjpNp +Demo-NP +207777 Conj-CL +Conj-CL +S-ADV-V-O-ADV +V2CL +207783 Np2CL +ADV-V-O-IO +PrepNp +NP-Demo +DetNP +DetNP +DetNP +207792 PrepNp +ADV-P-VC-S +V-O +NP-CL +NpaNp +207798 O-S-V-ADV +DetNP +PrepNp +DetNP +AdjpNp +207804 Conj-CL +CLaCL +ClCl +V-O +V-S-ADV +DetNP +AdjpNp +PrepNp +207813 VC-P-ADV +ofNPNP +Conj2Pp +aPpaPp +207818 PrepNp +207820 PrepNp +All-NP +DetNP +NpaNp +207826 PrepNp +NPofNP +DetNP +207830 Conj-CL +CLaCL +ADV-ADV-V +O-V +V-S +207836 S-V-O-ADV +PrepNp +DetNP +NPofNP +207841 Conj-CL +ClCl2 +sub-CL +ClCl +V-ADV +VerbBe +PrepNp +DetNP +V-S +AdvpCL +207852 S-V-ADV-ADV +NpNump +PrepNp +NpAdjp +S-ADV-V +ClCl2 +ClCl +Np2CL +Np2CL +ADV-V-ADV +V-ADV +PrepNp +DetNP +S-ADV-V-ADV +Np-Appos +Demo-NP +DetNP +DetCL +V-ADV-ADV +PrepNp +PrepNp +DetNP +ADV-V-O +PronNP +S-V-ADV +PrepNp +DetNP +207880 ADV-V-ADV-ADV +PrepNp +PrepNp +NP-CL +Np-Appos +DetCL +VC-P +S-VC-P-ADV +PrepNp +O-V +ofNPNP +207892 Conj-CL +207894 sub-CL +V2CL +ADV-V +PrepNp +DetNP +ADV-V-S +BeVerb +NpNpNpNp +EitherOr4Np +207904 DetNP +207908 NpaNp +207910 NpaNp +207912 Conj3Np +NPofNP +207915 Np-Appos +DetNP +207918 NPofNP +207920 S-V-ADV-O-ADV +NP-all +BeVerb +DetNP +Conj2Pp +PrepNp +NpaNp +207928 Np-Appos +DetNP +NPofNP +DetNP +207933 PrepNp +DetNP +NPofNP +207937 Conj-CL +ClCl +CLaCL +ADV-ADV-S-V +PrepNp +NP-Demo +DetNP +V-ADV +PrepNp +NPofNP +DetNP +207949 VC-S-P +NpPp +NPofNP +PrepNp +DetNP +PrepNp +NumpNump +ClCl2 +ClCl +Np2CL +Np2CL +207961 V-S +DetNP +NP-CL +O-V-S-ADV-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +NPofNP +PrepNp +Np-Appos +DetCL +VC-P-ADV +DetCL +V-O +sub-CL +CLaCL +V-ADV +VerbBe +PrepNp +207982 V-O +DetNP +NPofNP +NP-Demo +DetNP +207988 Conj-CL +Conj-CL +CLaCL +S-V-O-ADV +PrepNp +NPofNP +DetNP +207996 CLaCL +ADV-V-ADV +P-VC +208000 V-S +All-NP +DetNP +NPofNP +208005 Conj-CL +P-VC-ADV-ADV +All-NP +DetCL +V-ADV +sub-CL +VC-S-ADV-P +NP-Demo +DetNP +DetNP +AdjpNp +NPofNP +NP-CL +S-VC-P +NPofNP +208021 Conj-CL +208023 PrepNp +NPofNP +CLaCL +CLaCL +VC-S-P +DetNP +NPofNP +208031 ADV-V-S +DetCL +V-ADV +PrepNp +208036 O-V-S +DetNP +NPofNP +208040 Conj-CL +V-S +208043 Np2CL +DetNP +NpAdjp +V-ADV-ADV +PrepNp +All-NP +NP-CL +ADV-V-ADV-S-ADV +Conj2VP +208053 PrepNp +Np-Appos +DetNP +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NP-CL +ADV-V-ADV +PrepNp +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +208071 Conj-CL +V-O +Np-Appos +NpaNp +NP-CL +Np-Appos +DetCL +VC-P +S-VC-P +208082 Conj-CL +208084 V2CL +208086 Np2CL +Np-Appos +NPofNP +CL-NP +O-V-ADV +PrepNp +Demo-NP +DetNump +V-O +DetNP +NPofNP +NP-CL +DetNP +NpaNp +NPofNP +208102 ADV-V-S-ADV +PrepNp +V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +208110 Conj-CL +CLaCL +CLaCL +V-O-IO +208115 V-S-ADV +DetNP +PrepNp +208119 V-ADV +PrepNp +DetNP +NumpNP +208124 Conj-CL +ADV-VC-S-ADV-P +PrepNp +DetCL +V-S +DetNP +NPofNP +DetNP +PrepNp +DetNP +208135 Conj-CL +CLaCL +208138 PrepNp +DetNP +sub-CL +V-S +NpAdjp +208144 V-O +NP-CL +All-NP +DetNP +ADV-V +BeVerb +208151 Conj-CL +CLaCL +CLaCL +208155 V2CL +sub-CL +S2CL +208159 V-ADV +PrepNp +NPofNP +NpAdjp +208164 CLaCL +V-S-ADV +NpAdjp +208169 V-ADV +AdjpNp +sub-CL +S-V-O-IO +DetNP +V2CL +208176 Conj-CL +V-ADV-S +BeVerb +PrepNp +Np-Appos +NpPp +NpAdjp +PrepNp +All-NP +Np-Appos +NpPp +PrepNp +DetNP +208190 Conj-CL +ClCl +ClCl2 +V-S +NP-Demo +DetNP +CLaCL +V-S +DetNP +208200 V2CL +sub-CL +V-S-O +NpAdjp +ADV-V-S +DetNP +AdjpNp +208208 Conj-CL +CLaCL +V2CL +208212 V-ADV +208215 S-VC-P +All-NP +Np-Appos +DetCL +V2CL +208221 Conj-CL +ADV-S-V-ADV-ADV +NP-CL +DetNP +AdjpNp +NPofNP +ADV-V +PrepNp +208230 S-V-O +Conj3Np +Conj3Np +208236 DetCL +V-ADV +NpNpNpNpNp +DetNP +aNpaNp +208243 NpaNp +208245 DetNP +aNpaNp +208249 NpaNp +208251 DetNP +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +208258 2Np +2Np +DetNP +AdjpNp +V2CL +aNpaNp +208266 NpaNp +208268 V-S-ADV-O +DetNP +AdjpNp +DetNP +NPofNP +DetNP +208275 Conj-CL +CLaCL +V-S +208279 V-ADV +208281 NpPp +PrepNp +V-S-O +P-VC +208286 Conj-CL +208288 V2CL +that-VP +ADV-V +VerbBe +208293 Conj-CL +CLaCL +ADV-S-V-O +V-ADV +PrepNp +DetNump +DetNP +DetNP +NPofNP +208305 Np2CL +NpaNp +NpAdjp +208309 NP-all +DetCL +V-ADV +S-ADV-P-VC +208314 V-O +DetNP +NPofNP +208318 Conj-CL +notCLbutCL2CL +ClCl +ClCl2 +sub-CL +S-V +S-V +sub-CL +VC-P +NPofNP +NpAdjp +DetNP +S-VC-P +DetCL +208333 PrepNp +Np-Appos +DetNP +ClCl +ClCl2 +Conj-CL +VC-P +PrepNp +DetNP +AdjpNp +V-S +DetNP +CLaCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +All-NP +208353 Conj3CL +V-S +NpaNp +DetNP +NPofNP +208359 DetNP +NPofNP +208362 S-O-V +DetNP +NPofNP +208366 S-ADV-V +DetNP +NPofNP +208370 CLaCL +ADV-ADV-V-ADV +AdvPp +Conj2Pp +PrepNp +DetNP +NPofNP +208378 PrepNp +DetNP +NPofNP +PrepNp +NP-Demo +DetNP +PrepNp +DetNP +NPofNP +208388 V2CL +208390 Conj-CL +ClCl +CLaCL +V-O-ADV-ADV +PrepNp +DetNP +208397 O-ADV-ADV +PrepNp +DetNP +O2CL +Conj3Np +208404 NPofNP +208407 S-V-ADV +DetNP +PrepNp +208411 S-ADV +DetNP +PrepNp +sub-CL +V-S +NPDetAdj +NPofNP +DetAdj +AdjpaAdjp +208422 Conj-CL +208424 V2CL +All-NP +PtclCL +S-V-O +DetNP +NPofNP +208431 ClCl2 +ClCl +Np2CL +Np2CL +V-O +NP-Demo +DetNP +208440 Np2CL +Np-Appos +Np-Appos +DetNP +NpAdjp +V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +NP-CL +Conj3Np +208454 O-V-ADV-S-ADV +PrepNp +DetNP +PrepNp +NPofNP +S-V +NpAdjp +DativeAdjp +DetNP +NpaNp +AdjpNp +V2CL +208467 NPofNP +DetNP +PrepNp +NPofNP +V2CL +208473 O-S-V-ADV +DetNP +V-O +DetNP +NPofNP +DetNP +ADV-VC-P-S +V-S-ADV +PrepNp +208483 Conj-CL +208485 PrepNp +ClCl +V-O-ADV-ADV +DetNP +PrepNp +PrepNp +sub-CL +208493 PrepNp +NPofNP +sub-CL +ADV-V +208498 ClCl +CLaCL +CLaCL +ADV-V-S +PrepNp +ofNPNP +DetNP +208506 V-S +DetNP +NPofNP +208510 ADV-S-V-ADV +AdvpNp +DetNP +NPofNP +PrepNp +sub-CL +CLaCL +ADV-V-O-ADV +DetNP +NPofNP +PrepNp +208522 V-O +S-V-O +DetNP +NPofNP +208528 NPofNP +V-O-ADV-ADV +PrepNp +DetNP +NPofNP +208534 ClCl2 +ClCl +Np2CL +Np2CL +P-S +V2CL +208541 PrepNp +PrepNp +PrepNp +Np-Appos +DetNP +that-VP +CLaCL +V2CL +EitherOrVp +208553 S-VC-P-ADV +DetNP +NPofNP +PrepNp +PrepNp +NP-Demo +DetNP +208561 Conj-CL +208563 CLaCL +P-VC +208567 that-VP +ADV-V-IO-S-O +DetNP +ADV-V-ADV +PrepNp +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +V2CL +PrepNp +DetNP +NPofNP +DetNP +that-VP +aCLaCL +208586 V-ADV +PrepNp +208589 S-V-O +DetNP +NPofNP +208594 O-V-S +Demo-NP +DetNP +DetNP +All-NP +208600 Conj-CL +ADV-V-O +CLaCL +ADV-V +DetNP +NPofNP +DetNP +208608 O-V-ADV +DetNP +NPofNP +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +NP-CL +O-S-V +EitherOrVp +208622 Conj-CL +CLaCL +ADV-S-V-ADV +PrepNp +DetNP +208630 DetNP +NPofNP +ClCl +V-ADV +PrepNp +NPofNP +sub-CL +PtclCL +V-O-O2 +DetNP +NPofNP +NPofNP +DetNP +NPofNP +208645 Conj-CL +208647 All-NP +NPofNP +that-VP +O2-V-S-O +aNpaNp +208654 DetNP +Np-Appos +Demo-NP +DetNP +NP-CL +O-S-V +208661 Conj-CL +CLaCL +ADV-V-ADV +V2CL +DetNP +208668 PrepNp +NpaNp +DetNP +208672 DetNP +AdjpNp +ClCl +O-V +ClCl +Np2CL +Np2CL +208680 Conj-CL +ClCl +S-ADV +PrepNp +CLaCL +CLaCL +V2CL +208688 V-S-ADV-ADV +NPofNP +PrepNp +DetNP +NPofNP +Np-Appos +PrepNp +NPofNP +DetNP +NPofNP +208699 V-O +DetNP +NPofNP +DetNP +AdjpNp +208705 Conj-CL +CLaCL +P-VC-S +DetNP +208710 P2CL +NpaNp +DetNP +NPofNP +208715 All-NP +NP-CL +NpPp +PrepNp +PtclCL +O-V-S +Np-Appos +DetNP +NPofNP +208725 aCLaCL +208727 ADV-V +NpAdjp +AdjpNp +208731 V-O-ADV +208733 V-ADV +PrepNp +NP-Demo +DetNP +NPDetAdj +DetAdj +208740 Conj-CL +Conj-CL +CLaCL +S-V +DetCL +V-O +DetNP +NPofNP +208749 V-ADV-S +PrepNp +NP-Demo +DetNP +NpAdjp +AdvpAdjp +208756 Conj-CL +V-O +BeVerb +2Np +NpaNp +DetNP +NPofNP +DetNP +208765 DetNP +NpaNp +DetNP +NPofNP +DetNP +208771 DetNP +208773 Conj-CL +CLaCL +V-ADV-S +All-NP +208778 S-ADV-V +AdjpNp +NpaNp +208782 PrepNp +DetNP +208785 Conj-CL +CLaCL +S-ADV-V-O-O2 +All-NP +DetCL +V2CL +PrepNp +DetNP +208794 CLaCL +O-V +NpaNp +DetNP +208799 DetNP +208802 sub-CL +PtclCL +S-O-V +208806 Conj-CL +ADV-V-O-ADV-ADV +CLaCL +ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +208814 V-ADV-O +PrepNp +PrepNp +NpaNp +208819 NPofNP +CLaCL +V-O +DetNP +208824 V-O-ADV +PrepNp +All-NP +DetNP +208829 Conj-CL +S-V-O-ADV-ADV +DetNP +DetCL +V2CL +PrepNp +PrepNp +DetNP +208838 Conj-CL +S-V-ADV-ADV +NpaNp +208842 PrepNp +DetNP +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetAdj +208851 Conj-CL +208853 S-V +AdjpNp +NpAdjp +P-ADV-VC +PrepNp +NPofNP +NPofNP +PrepNp +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +VC-P +DetCL +V-O-ADV +PrepNp +DetCL +V-ADV +PrepNp +DetNP +S-ADV-V-O +V-O +S-V-O +NpaNp +208880 V-ADV +PrepNp +DetNP +O-V +208885 Conj-CL +208887 V-ADV-ADV +PrepNp +PrepNp +DetNP +V-ADV +PrepNp +208894 Conj-CL +S-V-O-ADV +V-O +O-ADV-V +PrepNp +208900 Conj-CL +208902 ClCl +CLaCL +S-ADV-V-ADV +NpaNp +208909 O-V +ADV-V +PrepNp +DetNP +NPofNP +Np-Appos +Np-Appos +DetNP +208918 Conj-CL +ADV-V-O +V-O-ADV +DetNP +AdjpNp +208924 Conj-CL +CLaCL +ADV-V-S +NpaNp +DetNP +NPofNP +208931 DetNP +208933 CLaCL +CLaCL +ADV-V +V2CL +208938 V2CL +208940 V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +Conj3CL +V2CL +208947 V2CL +208949 V-O +DetNP +208952 Conj-CL +CLaCL +CLaCL +V-S-O +All-NP +DetNP +CLaCL +S-V +208961 V-O +DetNP +208965 that-VP +S-VC-P +DetCL +ADV-V-ADV +PrepNp +DetNP +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +208977 V-ADV-ADV +NpaNp +208980 PrepNp +DetCL +V-ADV +208984 Conj-CL +ClCl2 +V-S-O +NpaNp +DetNP +208990 DetNP +V-S-ADV-ADV-ADV +All-NP +DetNP +PrepNp +PrepNp +Np-Appos +DetNP +DetCL +VC-P +209001 Conj-CL +209003 V2CL +DetNP +PrepNp +DetNP +ClCl2 +ClCl +Np2CL +Np2CL +CLaCL +ADV-V-ADV +PrepNp +209015 O-ADV-V-ADV +sub-CL +ADV-V-ADV +AdjpNp +NpaNp +209021 DetCL +V-S +209024 S-V-O +Np-Appos +DetNP +NPofNP +Conj3Np +209031 DetNP +NPofNP +DetNP +NPofNP +NP-CL +Np-Appos +DetNP +NPofNP +PtclCL +CLaCL +O-S-V +209044 PrepNp +NPofNP +V-S-O +V2CL +209049 Conj-CL +CLaCL +CLaCL +S-O-V +DetAdj +AdjpaAdjp +209057 V-O +S-V-IO +Np-Appos +209063 DetNP +NPofNP +DetNP +O-S-V-ADV +DetNP +PrepNp +209070 Conj-CL +CLaCL +ADV-O-V-S +PrepNp +DetNP +NPofNP +DetNP +NPofNP +NP-CL +O-V +Conj2VP +209082 DetNP +NPofNP +209085 S-V-IO-O-ADV +Np-Appos +DetNP +NpPp +PrepNp +NP-Demo +DetNP +PrepNp +All-NP +209095 Conj-CL +209097 Np2CL +that-VP +209100 PrepNp +sub-CL +S2CL +AdvpNp +DetNP +NPofNP +209107 Conj-CL +S-O-V-ADV +DetNP +NP-CL +O-V-ADV +PrepNp +NPofNP +All-NP +DetNP +V-S +DetNP +NPofNP +209120 Conj-CL +209122 Conj2VP +209124 PrepNp +DetCL +V-S +ofNPNP +DetNP +sub-CL +PtclCL +CLaCL +V-S-ADV +NPofNP +PrepNp +NPofNP +DetNP +209138 V-O +NP-CL +Np-Appos +DetNP +AdjpNp +V-IO +V-S +PtclCL +O-S-V-ADV +PrepNp +NP-CL +NPofNP +NPofNP +O-V-S-ADV +DetNP +PrepNp +NPofNP +DetNP +AdjpNp +PpNp2Np +PrepNp +ofNPNP +209161 Conj-CL +209163 that-VP +209165 Np-Appos +DetNP +PrepNp +DetNP +NPofNP +sub-CL +O2CL +209173 O-V-ADV +PrepNp +All-NP +PtclCL +O-V-ADV +PrepNp +209180 Conj-CL +209182 S-V-ADV +All-NP +NP-CL +PtclCL +S-ADV-V-O +NP-Demo +DetNP +PrepNp +DetNP +209192 Conj-CL +S-ADV-V-O +AdvpNp +NP-CL +All-NP +DetNP +NpPp +PrepNp +NpaNp +209202 DetNP +S-V +NP-Demo +DetNP +209207 S-VC-P +DetNP +NPofNP +NpaNp +DetNP +209213 DetNP +NP-CL +O-S-V-ADV-ADV +DetNP +PrepNp +DetNP +NPofNP +209221 PrepNp +Conj-CL +ADV-V-S +PrepNp +DetNP +NPofNP +All-NP +DetNP +NPofNP +DetNP +209232 IO-ADV-S-ADV-V-O-ADV +DetNP +V-O +DetNP +NPofNP +V-O-ADV +PrepNp +DetCL +V-O-ADV +PrepNp +DetNP +NPofNP +209245 Conj-CL +CLaCL +209248 V-S-ADV +PrepNp +DetNP +Conj3Np +DetNP +209254 DetNP +NPofNP +DetNP +209258 DetNP +V-ADV +PrepNp +DetCL +CLaCL +V-S-O +DetNP +209266 V-ADV-O +PrepNp +DetNP +Np-Appos +DetNP +NpPp +PrepNp +209274 CLaCL +V-IO-O +DetNP +209278 ClCl +V-ADV-ADV +PrepNp +PrepNp +DetAdv +sub-CL +VC-P-ADV +209286 Conj-CL +CLaCL +S-V +NPofNP +DetCL +V-O +DetNP +209294 VC-S-P +NPofNP +DetNP +PrepNp +NpNump +209300 Conj-CL +CLaCL +CLaCL +V-ADV-S +PrepNp +DetNP +V-S-ADV +ofNPNP +Conj3Np +DetNP +209311 DetAdj +209313 DetNP +PrepNp +209316 S2CL +Conj5Np +Np-Appos +DetNP +209324 S-VC-P +PrepNp +NpAdjp +209328 ADV-V-O +V-O-ADV +PrepNp +DetAdj +ADV-V-O-S +Conj2Pp +PrepNp +AdjpNp +209337 PrepNp +AdjpNp +209341 V-ADV +NpAdjp +PrepNp +209345 Np2CL +NpaNp +NPofNP +DetNP +209350 sub-CL +ClCl +S-ADV-V-ADV +PrepNp +NPofNP +NpAdjp +ADV-S-V +PrepNp +209359 NpaNp +All-NP +209362 All-NP +DetNP +NPofNP +that-VP +209367 ADV2CL +PrepNp +DetNP +NPofNP +NP-CL +NP-CL +Np-Appos +Np-Appos +DetNP +O-S-V +O-S-V-ADV +DetNP +PrepNp +PrepNp +PrepNp +209383 S-VC-P +Np-Appos +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +Np-Appos +DetNP +DetCL +VC-P +PrepNp +NPofNP +209397 Conj-CL +ClCl +ADV-VC-P-S +PrepNp +AdjpNp +DetNP +sub-CL +ADV-VC-P-S +PrepNp +DetNP +NP-CL +Np-Appos +NpAdjp +DetCL +V-ADV +PrepNp +ADV-V-S +PrepNp +V-S +209417 Conj-CL +CLaCL +ADV-V +CLaCL +V-O +DetNP +ofNPNP +NpaNp +DetNP +209429 that-VP +CLaCL +P-VC +NpAdjp +209434 P2CL +209437 that-VP +P-VC +PrepNp +DetNP +209442 Conj-CL +ADV-O-V +V-O +S-ADV-V +Np-Appos +DetNP +DetCL +V2CL +PrepNp +O-V +209453 Conj-CL +ADV-V-ADV-ADV +V-O +S-ADV-V +PrepNp +DetNP +PrepNp +209461 O-V-IO +NP-Demo +DetNP +209465 Conj-CL +Conj-CL +CLaCL +S-ADV-P +that-VP +S-V-ADV +AdjpNp +PrepNp +All-NP +DetCL +V-ADV +209477 ADV-V-O +V2CL +209480 Conj-CL +ClCl2 +sub-CL +ADV-ADV-V-ADV +PrepNp +PrepNp +DetNP +V-IO-O +ADV-V-ADV-IO +PrepNp +NP-Demo +DetNP +NPofNP +209494 Conj-CL +ADV-V-O +V-O +ADV-ADV-V-ADV +Conj2VP +209500 PrepNp +DetNP +NPofNP +DetNP +209505 Conj-CL +209507 DetNP +NpaNp +209510 V2CL +PrepNp +ClCl +ClCl2 +sub-CL +P-VC-ADV-S +PrepNp +DetNP +CLaCL +O-V-ADV +209521 O2CL +DetNP +V2CL +sub-CL +ADV-V-S-O +O-ADV-V +O-V +Conj2VP +209531 Conj-CL +209533 V2CL +ADV-V-O +DetCL +ADV-V-O +PrepNp +DetNP +sub-CL +S-V-O-ADV +DetNP +PrepNp +DetCL +V2CL +209546 Conj-CL +P-VC-S +NpAdjp +AdjpAdvp +NP-CL +DetNP +ADV-V-S +PrepNp +NPofNP +NP-Demo +DetNP +DetNP +209559 Conj-CL +CLaCL +ADV-V-ADV +V2CL +PrepNp +DetAdj +209566 V-O +O-ADV-S-V +PrepNp +NpaNp +DetNP +209572 DetAdj +209574 Conj-CL +CLaCL +S-ADV-ADV-V-O-ADV +V2CL +PrepNp +DetNP +209583 Np2CL +Np-Appos +DetCL +V-O +Conj4Np +DetNP +209590 DetNP +209592 DetNP +209594 All-NP +NpPp +PrepNp +DetCL +209599 DetNP +NPofNP +PrepNp +NpAdjp +NPofNP +Np-Appos +NPofNP +ClCl +CLaCL +ADV-V-S +PrepNp +209611 S-V-O +CLaCL +V-S +DetNP +NPofNP +DetNP +209618 S-V-ADV-ADV +DetNP +PrepNp +DetNP +Conj2Pp +PrepNp +DetNP +209626 PrepNp +DetNP +NPofNP +209630 Conj-CL +V-ADV-ADV-ADV-S-ADV-ADV +PrepNp +PrepNp +NP-Demo +DetNP +PrepNp +NP-CL +Np-Appos +DetNP +AdjpNp +NPofNP +O-V +aNpaNp +209646 Np-Appos +PrepNp +NpaNp +209650 NPofNP +V-O +O-S-V +S-V +NpaNp +DetNP +NPofNP +209658 DetNP +209660 Conj-CL +209662 Np2CL +ADV-V-ADV +DetAdv +PrepNp +DetNP +NPofNP +209669 V-IO-O +DetNP +NPofNP +ADV-V-O-ADV +PrepNp +NP-all +DetNP +NPofNP +PrepNp +DetCL +CLaCL +O-V-S-ADV +DetNP +PrepNp +209684 S-V-ADV +NpaNp +209687 PrepNp +DetNP +NPofNP +Np-Appos +DetNP +AdjpNp +NPofNP +209695 Conj-CL +209697 V-S +V-S +NP-CL +DetNP +ADV-V +PrepNp +BeVerb +209705 CLaCL +V-S-ADV +DetNP +AdjpNp +209710 V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +209716 Conj-CL +CLaCL +S-VC-P +ofNPNP +DetNP +NPofNP +DetCL +V2CL +NpaNp +209727 notCLbutCL2CL +S-O-V +S-P-VC +NPofNP +DetCL +V-ADV +VC-ADV-S-P +209735 Conj-CL +CLaCL +ADV-V-O-S +NpAdjp +DetNP +NPofNP +ofNPNP +Np-Appos +DetNP +DetNP +DetNP +209747 S-VC-P +NpAdjp +PrepNp +All-NP +209752 Conj-CL +ADV-S-VC-P +NpAdjp +PrepNp +209757 Conj-CL +CLaCL +S-ADV-V-O +S-P-VC +NPofNP +NpaNp +209764 V2CL +DetNP +NPofNP +DetCL +V2CL +209770 V-ADV +PrepNp +DetNP +NPofNP +DetNP +209776 Conj-CL +209778 sub-CL +PtclCL +S-O-V +209782 Conj-CL +209784 Np2CL +Np-Appos +Np-Appos +Np-Appos +DetCL +209790 PrepNp +DetNP +S-VC-P +BeVerb +NPofNP +NpAdvp +DetNP +ClCl2 +VC-P-S +ADV-V-O +V2CL +DetNP +209803 V-ADV +PrepNp +DetNP +NPofNP +DetNP +209809 Conj-CL +CLaCL +CLaCL +S-ADV-V-O +NpAdjp +NpAdjp +P-ADV +PrepNp +Np-Appos +DetNP +NPofNP +209821 ClCl +V-ADV +PrepNp +DetNP +V-S +AdvpNp +DetNP +209829 ADV-ADV-V +V-O +NpAdjp +PrepNp +DetNP +NPofNP +DetNP +209837 Conj-CL +209839 DetNP +209841 Np2CL +PrepNp +DetNP +DetNP +NPofNP +CLaCL +V-S-O +DetNP +NPDetAdj +DetAdj +209852 V-ADV +PrepNp +DetNP +NPofNP +DetNP +209858 PtclCL +CLaCL +ADV-ADV-V +V2CL +209863 ADV-P-VC +V2CL +PrepNp +DetNP +AdjpNp +209869 P-S +that-VP +V-ADV-O +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +209878 notCLbutCL2CL +V-IO +IO2CL +DetNP +209883 Conj-CL +S-ADV-ADV-V +DetNP +V-O +NP-Demo +DetNP +V2CL +209891 Conj-CL +V-S-ADV +NpAdjp +PrepNp +All-NP +DetCL +V2CL +209899 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetAdj +209905 ADV-V +V2CL +209908 Conj-CL +CLaCL +V-S +ofNPNP +AdvpNp +NpAdjp +209915 S-ADV-V +DetNP +NPofNP +ADV-V-O +DetCL +V2CL +209922 Conj-CL +209924 PrepNp +209926 PtclCL +ADV-O-V +DetNP +209930 Conj-CL +209933 Intj2CL +209935 Conj-CL +ClCl +S-ADV +DetNP +PrepNp +ClCl +P-S +that-VP +V-ADV-S +V-O +DetNP +NPofNP +209948 S-P +DetNP +NPofNP +DetCL +V-O +DetNP +NPofNP +PrepNp +DetNP +209958 V-O +209960 Conj-CL +CLaCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +209967 V2CL +209969 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +S-P +209976 ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +209982 Conj-CL +V-S-ADV +NpAdjp +Conj2Pp +PrepNp +All-NP +DetNP +209990 PrepNp +All-NP +DetCL +V-O +209995 Conj-CL +ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +NpAdjp +NpaNp +210004 PrepNp +DetNP +210007 Conj-CL +VC-ADV-S-P +PrepNp +DetNP +NPofNP +210013 Conj-CL +CLaCL +S-V-O +ofNPNP +DetAdj +V-ADV +210020 V-O-S +DetNP +210023 Conj-CL +ADV-V-ADV-S-ADV +V-O +DetNP +NPofNP +aNpaNp +210031 sub-CL +210033 ADV-V-O +AdvPp +PrepNp +DetNP +DetAdj +210039 V-ADV +PrepNp +NpaNp +210043 sub-CL +ClCl2 +V-S +sub-CL +S-V-O +DetNP +NPofNP +210051 Conj-CL +V-S-ADV +AdvpNp +DetNP +NPofNP +DetNP +AdvpNp +AdvpNp +V-O +NP-CL +NpaNp +210063 V-ADV +PrepNp +NpAdjp +S-V +NP-all +210069 Conj-CL +CLaCL +ADV-S-V-ADV +V2CL +NpaNp +DetNP +210076 All-NP +Np-Appos +NpPp +PrepNp +DetCL +VC-P +NPofNP +DetNP +210085 CLaCL +V-O-ADV +DetNP +PrepNp +DetNP +210091 V-O-ADV +PrepNp +NpAdjp +210095 Conj-CL +CLaCL +S-ADV-V-O +NPofNP +PrepNp +DetNP +NPofNP +DetNP +210105 V-O +CLaCL +V2CL +210109 ADV-V-ADV-IO-O +V2CL +PrepNp +DetNP +DetNP +All-NP +DetNP +NPofNP +NP-Demo +DetNP +210120 Conj-CL +CLaCL +ADV-V-ADV-ADV +V2CL +PrepNp +DetNP +PrepNp +DetNP +210129 V2CL +210131 Conj-CL +CLaCL +ADV-S-V-O +V2CL +NpaNp +DetNP +210138 NpPp +PrepNp +NpaNp +DetNP +210143 All-NP +DetNP +NPofNP +DetNP +NPofNP +210149 V-ADV-ADV +PrepNp +DetNP +V-S +210154 Conj-CL +S-ADV-V-O-ADV +DetNP +AdjpNp +V2CL +PrepNp +DetNP +210162 Conj-CL +ADV-V-ADV +V2CL +210166 that-VP +CLaCL +V-O +CLaCL +S-V-ADV +DetNP +PrepNp +All-NP +210175 S-V-ADV +DetNP +PrepNp +DetNP +210180 ADV-ADV-O-V +V2CL +210183 Conj-CL +ClCl2 +sub-CL +V-O-S +NP-Demo +DetNP +aNpaNp +210191 DetNP +NPofNP +DetNP +210195 DetNP +210197 PrepNp +PtclCL +P-VC-S +210201 Conj-CL +210203 V2CL +that-VP +210206 S-V-ADV +DetNP +NP-CL +O-V-ADV +PrepNp +DetNP +BeVerb +PrepNp +DetNP +210216 V-O +DetNP +210219 ClCl +ClCl +ADV-ADV-S-ADV-V-O +V2CL +DetNP +PrepNp +DetNP +ADV-ADV +PrepNp +sub-CL +210230 DetNP +PtclCL +V2CL +210234 Conj-CL +ADV-V-ADV +V-O +PrepNp +DetNP +210240 Conj-CL +V-O-S-ADV +DetNP +210244 CLaCL +ADV-V-IO-O +ADV-V-ADV +PrepNp +NP-Demo +DetNP +210252 V-O-ADV +DetNP +DetNP +NPofNP +210257 V-O +V-ADV-O +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +210265 Conj-CL +210267 V2CL +NpaNp +210270 DetNP +CLaCL +V-S-ADV +V-O +210275 O2CL +210277 S-V-O +DetNP +NPofNP +DetNP +NPofNP +NP-CL +O-S-V-ADV +V-ADV +PrepNp +210287 O-S-O2-V-ADV-ADV +DetNP +NpaNp +210291 DetNP +NPofNP +DetCL +CLaCL +V-O-IO +DetNP +210298 O2CL +NPofNP +210301 Conj-CL +CLaCL +S-VC-P +NPofNP +NP-Demo +DetNP +210308 S2CL +NP-CL +DetNP +NPDetAdj +DetAdj +O-V-S-IO +DetNP +DetCL +V-O +210318 Conj-CL +CLaCL +S-ADV-V +V2CL +210323 V-O +V-O +210326 Conj-CL +CLaCL +ADV-S-V-O +V2CL +Np-Appos +Np-Appos +NpPp +PrepNp +DetNP +NpAdjp +ADV-P +NpAdjp +AdjpDative +All-NP +DetNP +ADV-ADV-O-V +DetNP +210345 PrepNp +ClCl2 +ClCl +Np2CL +Np2CL +210351 O-V +ADV-O-V +PrepNp +NP-Demo +DetNP +210357 Conj-CL +210359 PrepNp +Demo-NP +DetNP +V-O +VC-P-S +ADV-V-S +NpAdjp +ofNPNP +AdvpAdjp +CLaCL +S-V +210371 CLaCL +S-V +All-NP +S-V-O +210376 V-ADV +PrepNp +210379 ClCl +CLaCL +ADV-V-S-ADV +PrepNp +Np-Appos +DetNP +PrepNp +DetNP +NPofNP +DetNP +210390 V-O-ADV +PrepNp +CLaCL +S-V +210395 S-V +All-NP +S-V-O +210399 Conj-CL +ClCl +210402 DetAdv +CLaCL +V-ADV +PrepNp +NP-Demo +DetNP +210409 V-O +sub-CL +CLaCL +ClCl2 +sub-CL +VC-P-S +PrepNp +NpaNp +NP-Demo +DetNP +210420 NP-Demo +DetNP +V2CL +210424 ClCl +210426 sub-CL +P-VC +PrepNp +V-O +ADV-ADV-P-VC +AdvpNp +210433 Conj-CL +CLaCL +V-ADV +210437 CLaCL +ADV-ADV-V-O +V-O +DetNP +V2CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +210448 V2CL +210450 Conj-CL +Conj-CL +ClCl +S-V-ADV-ADV +V2CL +PrepNp +NPofNP +DetNP +sub-CL +V-O +ADV-V +PrepNp +DetNP +210464 Conj-CL +ADV-ADV-ADV-V-O +All-NP +Conj2Pp +PrepNp +DetNP +210471 PrepNp +CLaCL +V2CL +210475 V-O +S-P +DetNP +210479 Conj-CL +ClCl +ClCl2 +ADV-V-S +PrepNp +NP-Demo +DetNP +DetNP +V-S-ADV +NPofNP +DetNP +PrepNp +DetAdj +sub-CL +V-ADV-S +PrepNp +DetNP +NPDetAdj +DetAdj +DetNP +NPofNP +210501 Conj-CL +210503 DetNump +V-O +DetNP +NPofNP +DetNP +ADV-P-VC-S +S-ADV-V-O +V-O +DetNP +NPofNP +DetNP +210515 Conj-CL +210517 Np2CL +NP-CL +NpAdjp +NpNump +NpAdjp +NpPp +PrepNp +V2CL +AdjpAdvp +NpaNp +210528 O-V-ADV +PrepNp +NP-Demo +DetNP +210533 Conj-CL +S-O-V +NpaNp +DetNP +210538 DetNP +NPofNP +DetNP +210542 Conj-CL +Conj3CL +V-S-ADV +DetNP +PrepNp +All-NP +DetNP +210550 V-O +NP-CL +Conj7Np +Np-Appos +NpAdjp +AdjpAdvp +NpaNp +210558 NpAdjp +210565 Np-Appos +Np-Appos +O-V-ADV +PrepNp +DetNP +210571 ADV-V-IO-O +V2CL +DetNP +210575 Conj-CL +CLaCL +S-V +DetNP +NPofNP +DetNP +210582 CLaCL +V-S-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +210589 S-V-O +AdjpNp +NPofNP +DetNP +DetNP +210595 Conj-CL +S-ADV-V-O-ADV +AdjpAdvp +NpaNp +210600 NpAdjp +NpaNp +210603 PrepNp +DetNP +210606 Conj-CL +CLaCL +V-S-ADV +NPofNP +Conj4Np +NpPp +PrepNp +Np-Appos +DetNP +DetCL +VC-P +210620 NpPp +PrepNp +NpaNp +210624 V-ADV +DetNP +210627 ADV-V-O +V-O +NpaNp +DetNP +210632 DetNP +NP-CL +ADV-V +210636 ADV-V-O +NpAdjp +210639 that-VP +V-O +S-V-O-ADV +NpAdjp +PrepNp +NpaNp +210646 DetNP +210648 Conj-CL +CLaCL +V-O +Conj3Np +DetNP +210654 DetAdj +210656 DetNP +210658 CLaCL +ADV-V-O +V2CL +210662 CLaCL +V-ADV +PrepNp +DetNP +210667 V-O +NpAdjp +NpAdjp +210672 NP-Demo +DetNP +V-O-ADV +PrepNp +NpaNp +DetNP +NPDetAdj +DetAdj +210681 DetNP +sub-CL +V-O +210685 that-VP +CLaCL +S-V-O +NP-Demo +Np-Appos +DetNP +NP-Demo +DetNP +210694 V-O +DetNP +NP-CL +O-V-IO-S +210699 Conj-CL +210701 V-ADV +PrepNp +All-NP +DetCL +V-ADV +PrepNp +DetNP +DetNP +NPofNP +sub-CL +O2CL +NPofNP +210714 Conj-CL +210716 DetNP +PtclCL +S-ADV-V +210720 Conj-CL +210722 ClCl2 +ClCl +Np2CL +Np2CL +NpaNp +210728 V2CL +210730 CLaCL +S-V-IO-ADV-ADV +DetNP +NPofNP +DetNP +Np-Appos +DetNP +NPofNP +VC-P +PrepNp +DetNP +AdvpCL +sub-CL +V-S-ADV +PrepNp +210747 PrepNp +CLaCL +V-ADV +PrepNp +NpaNp +DetNP +NPofNP +210755 DetNP +NPofNP +210758 V-ADV +PrepNp +DetNP +NP-CL +PtclCL +O-IO-V +210765 ADV-ADV-V-ADV +V-ADV +PrepNp +NPofNP +PrepNp +210771 CLaCL +ADV-ADV-V-O-ADV +PrepNp +DetCL +V-S +DetNP +NPofNP +PrepNp +NP-CL +NP-Demo +DetNP +ADV-S-ADV-V +PrepNp +210785 CLaCL +CLaCL +ADV-V-IO-O-ADV +PrepNp +210790 O2CL +NPofNP +210794 CLaCL +V-IO-ADV-O +PrepNp +210798 IO2CL +DetNP +NpPp +NPofNP +PrepNp +ADV-VC-P-S +210805 Conj-CL +210807 DetNP +that-VP +CLaCL +VC-S-P-ADV +DetNP +NPofNP +PrepNp +NpAdjp +210816 V-O-ADV +Conj2VP +210819 NpAdjp +210821 Conj-CL +CLaCL +210824 O-V-S +DetNP +NP-CL +PtclCL +O-V +DetNP +210831 CLaCL +ADV-V +PrepNp +210835 V-O-ADV +PrepNp +NP-Demo +DetNP +210840 Conj-CL +V-IO-O +NPofNP +210844 Conj-CL +CLaCL +CLaCL +CLaCL +ADV-V-O +DetNP +210851 V-O-ADV +DetNP +NPDetAdj +DetAdj +210856 S-O +DetNP +210859 S-O +DetNP +NumpNP +210863 Conj-CL +S-ADV-V-ADV +DetNP +V-O +DetNP +PrepNp +210870 Conj-CL +CLaCL +CLaCL +VC-S-P +DetNP +PrepNp +210877 V-O-ADV +PrepNp +All-NP +DetNP +NPofNP +210883 CLaCL +V-IO-O-ADV +NpaNp +210887 PrepNp +Np-Appos +NPofNP +210891 V-O-O2 +V-ADV +PrepNp +NpaNp +210896 All-NP +DetNP +NPofNP +210900 Conj-CL +CLaCL +CLaCL +V-S-ADV +PrepNp +All-NP +DetNP +NpaNp +210910 S2CL +NpAdjp +210913 ADV-V-O-S +DetNP +NPofNP +210917 Conj-CL +S-ADV-V-O-ADV +V-O +VC-S-P +PrepNp +DetNP +NPofNP +210925 Conj-CL +CLaCL +ADV-V-S-IO +PrepNp +DetAdj +DetNP +NPofNP +210933 P-VC-ADV-S +DetNP +DetNP +NPofNP +210938 Conj-CL +CLaCL +ADV-S-V-O-ADV +V2CL +NpaNp +Np-Appos +DetNP +NPofNP +210947 All-NP +DetNP +PrepNp +NpNump +NumpNump +210953 V-S-ADV +PrepNp +210956 Conj-CL +CLaCL +CLaCL +V-S +NpaNp +210962 DetNP +NPofNP +210965 V-ADV +PrepNp +210968 V-ADV +PrepNp +DetNP +NP-CL +O-V-S-ADV-ADV-ADV +NPofNP +PrepNp +DetNP +NPofNP +PrepNp +210979 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +NPofNP +DetNP +NP-CL +O-V-S-IO +DetNP +DetNP +S-V-ADV-ADV +DetNP +Conj2VP +210994 PrepNp +PrepNp +ADV-V-ADV-S +PrepNp +NP-CL +NpAdjp +S-ADV-V-O +DetNP +211003 S-ADV-V-O-ADV +V-O +DetNP +NPofNP +DetNP +DetCL +V-O-O2-ADV +DetNP +NPofNP +PrepNp +DetCL +ADV-V +211016 ClCl +CLaCL +ADV-V-S +PrepNp +PronNP +211022 VC-P-ADV +DetNP +S-V-ADV-ADV +NpAdjp +PrepNp +DetNP +NPofNP +DetNP +211031 Conj-CL +ClCl2 +V-S +CLaCL +V-O-S +DetNP +NPofNP +211039 V-O-IO-ADV +PrepNp +211042 Conj-CL +CLaCL +V-S-ADV +All-NP +NPofNP +211048 VC-P-ADV +PrepNp +NPofNP +NpaNp +211054 Conj-CL +ClCl2 +sub-CL +V-ADV-S +AdjpNp +V-ADV-S +PrepNp +DetNP +NPofNP +V-O +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +211070 Conj-CL +CLaCL +ADV-V +V-O +S-V +211076 V-O-IO-ADV +DetCL +V2CL +V-O +DetAdj +211082 Conj-CL +CLaCL +V-O +211086 DetNP +that-VP +S-ADV-V-O-IO +DetNP +PrepNp +NPofNP +211093 S-ADV-V +211095 Conj-CL +CLaCL +ADV-V-IO-ADV +DetNP +AdjpNp +V2CL +V2CL +211103 V-O-ADV-ADV +PrepNp +211107 Np2CL +P-VC +ADV-V-O +PrepNp +211112 Conj-CL +S-V-O-ADV +DetCL +V-O +DetNP +211118 ClCl +S-O-V-O2 +NpPp +NpaNp +211123 PrepNp +PtclCL +O-S-V-ADV +V-O +ADV-V-ADV-O +PronNP +DetAdj +211131 Conj-CL +CLaCL +V-S-ADV +PrepNp +NP-Demo +DetNP +211138 VC-P-ADV +PrepNp +NP-CL +NPofNP +ADV-V-O +NpNump +211145 Conj-CL +ClCl2 +V-S +NpNump +V-IO-ADV-S-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +PrepNp +NPofNP +NPofNP +211159 Conj-CL +S-ADV-V-O +DetNP +V2CL +DetNP +211165 Conj-CL +211167 V-S-ADV +V2CL +NPofNP +S-P +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +Conj3Np +211182 Conj-CL +ADV-S-ADV-V-O +P-VC +V2CL +211187 Conj-CL +211189 DetNP +ClCl +V-O +DetNP +NPofNP +DetNP +NPofNP +sub-CL +S-P-VC +DetNP +NP-CL +ADV-V +PrepNp +NpAdjp +211204 CLaCL +CLaCL +ADV-V-O +V2CL +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +211216 O-V +DetNP +NPofNP +211220 V-ADV +V-O +211223 Conj-CL +ClCl2 +ADV-V +V-O-ADV +PrepNp +211230 Np2CL +NP-CL +Demo-NP +DetNP +O-V-ADV +211236 S-O-V-O2 +NpaNp +211239 DetNP +aNpaNp +211243 PrepNp +NPofNP +Np-Appos +DetCL +V-IO-ADV +PrepNp +DetNP +211251 S-V-O-ADV +V-O-ADV-ADV +NpaNp +211255 Conj3Pp +PrepNp +Np-Appos +211259 PrepNp +AdjpNp +211262 PrepNp +DetAdj +NpNump +211266 S-VC-P +Np-Appos +DetNP +DetCL +211271 DetNP +NPofNP +ClCl +O-IO-V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +sub-CL +O2CL +211282 S-VC-P +NP-CL +NP-CL +DetCL +VC-ADV-ADV-P +PrepNp +DetNP +PrepNp +DetAdj +PrepNp +NpaNp +Np-Appos +DetNP +DetCL +V-IO-ADV +PrepNp +Np-Appos +DetNP +211301 DetNP +NPofNP +S-V-O-ADV +NpAdjp +V2CL +V-IO +CLaCL +ADV-ADV-V-O-S +P-VC +DetNP +NPofNP +211313 CLaCL +V2CL +211316 V-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +211322 DetNP +ClCl +V-IO-O +NP-CL +S-V-ADV +sub-CL +211329 Np2CL +NP-CL +NP-Demo +DetNP +S-V-O-ADV +PrepNp +NPofNP +S-V-ADV +211338 Conj-CL +CLaCL +CLaCL +V-ADV +PrepNp +NP-Demo +DetNP +211346 V-O-IO +DetNP +211349 V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +211356 Conj-CL +ClCl +CLaCL +V-S +DetNP +211362 V-O-ADV +V-O +DetNP +NPofNP +DetNP +sub-CL +211369 PrepNp +NPofNP +DetNP +211373 O-V-IO-ADV +NpaNp +211376 NpPp +NpNump +PrepNp +DetAdj +Np2CL +NPofNP +211383 Conj-CL +V-O +Np-Appos +NpaNp +DetNP +NPofNP +DetNP +211391 DetNP +NPofNP +Np-Appos +DetNP +DetNP +NP-CL +O-V-ADV +V-O +211400 Conj-CL +V-O-ADV +PrepNp +211405 DetNP +NPofNP +DetNP +DetNP +NPofNP +PrepNp +DetAdj +sub-CL +V-S-O +DetCL +V-IO +DetNP +V-O-ADV +PrepNp +DetNP +NP-CL +O-V +O-ADV-V-ADV-S-ADV-ADV-ADV +V2CL +DetNP +NPofNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NP-CL +O-V-S-ADV +DetNP +PrepNp +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +NP-CL +CLaCL +S-V-O-ADV +PrepNp +DetNP +211447 V-O +V-O-IO +DetNP +NPofNP +211452 Conj-CL +S-V-IO-O +211455 Conj-CL +ClCl +ADV-S-ADV-V +DetAdj +PrepNp +sub-CL +211462 DetNP +CLaCL +S-ADV-P +DetNP +211467 S-P +DetNP +NPofNP +DetNP +NPofNP +211473 CLaCL +ClCl2 +O-V-IO +AdjpNp +V-S +211479 P-S +NPofNP +DetNP +NPofNP +211484 PtclCL +S-V-O +DetNP +NPofNP +NP-all +211491 Np2CL +AdjpaAdjp +211494 AdjpDative +NpaNp +211497 DetNP +DetNP +NPDetAdj +DetAdj +211502 sub-CL +S2CL +DetNP +NPofNP +AdvpNp +211508 O-ADV-V-S +NPofNP +DetNP +DetNP +NPofNP +211514 Conj-CL +V-O +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NP-CL +ClCl +ADV-ADV-S-P-VC +NpaNp +211527 CLaCL +S-V-O-ADV +DetNP +PrepNp +NPofNP +211533 ADV-V +211535 Conj-CL +CLaCL +ADV-V-ADV +V-O +DetNP +NPofNP +211542 V-O-ADV +DetNP +PrepNp +211546 Conj-CL +CLaCL +ADV-ADV-V-O +VC-P-ADV +NpAdjp +V-ADV +PrepNp +DetNP +NpaNp +NPofNP +211557 S-V-ADV +PrepNp +NPofNP +DetNP +211564 CLaCL +S-V +DetNP +211568 S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +NPofNP +DetNP +211576 Conj-CL +CLaCL +CLaCL +ADV-V-O +V-ADV +NpAdjp +DetNP +NPofNP +211585 V-ADV-ADV +PrepNp +211588 ADV-V +V-ADV +PrepNp +DetNP +211593 Conj-CL +S-V-O-ADV +DetNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +NpAdjp +VC-P +211604 Conj-CL +V-O-ADV +DetNP +CLaCL +V2CL +211612 Np2CL +Np-Appos +DetNP +NPofNP +211617 Conj-CL +211619 V-O +DetNP +NpAdjp +211623 Np2CL +Demo-NP +DetNP +211627 Conj-CL +ADV-V +O-V +211631 Conj-CL +S-V-ADV +BeVerb +DetNP +NPofNP +211637 Conj-CL +V-ADV-S-ADV +PrepNp +Demo-NP +DetNP +NpAdjp +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +211649 Conj-CL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NpaNp +211657 PrepNp +DetNP +211660 Conj-CL +CLaCL +V-O-S +DetNP +NpAdjp +211666 V-O-ADV +NpAdjp +PrepNp +211670 Conj-CL +ClCl +S-V-O-ADV +DetNP +ADV-V +PrepNp +DetNP +ADV-V-ADV +V-O +aNpaNp +211682 PrepNp +211684 Conj-CL +aCLaCL +211687 S-V-ADV +DetCL +V2CL +V-O +DetNP +211693 S-ADV-V-IO-O +V-ADV +PrepNp +DetNP +NPofNP +DetNP +DetNP +211701 Conj-CL +V-S-O-ADV-ADV +DetNP +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetCL +CLaCL +V-S +211713 V-O +DetNP +NP-CL +O-V +211718 Conj-CL +CLaCL +211721 Np2CL +NPofNP +DetCL +V-O +NpAdjp +V-ADV +NpAdjp +211729 S-V +AdjpNp +NpaNp +V2CL +211735 Conj-CL +V-S-ADV +AdjpNp +PrepNp +NP-Demo +DetNP +211742 Conj-CL +211744 NpAdjp +NpAdjp +ADV-P +PrepNp +DetNP +CLaCL +V2CL +211752 V-O +DetNP +NPofNP +DetNP +V-O +VC-P-S +NpAdjp +O-V-S-ADV +NpPp +2Pp +PrepNp +PrepNp +211765 S-VC-P +Np-Appos +DetNP +NPofNP +DetNP +DetCL +VC-P +211773 Conj-CL +V-O-ADV +PrepNp +DetCL +ADV-ADV-V-O +AdjpNp +DetNP +211781 Conj-CL +ClCl2 +sub-CL +V-O-ADV +DetNP +V-ADV +PrepNp +NpaNp +DetNP +NPofNP +DetNP +211793 DetNP +NPofNP +Np-Appos +V-S +aNpaNp +211801 Conj-CL +ClCl +CLaCL +211805 Np2CL +DetNP +AdvpNp +211809 ADV-V-O +V2CL +BeVerb +DetNP +ADV-V +V-O +S-V +aNpaNp +211819 NpAdjp +211821 Conj-CL +S-ADV-V-ADV-O +DetNP +PpNp2Np +PrepNp +211827 that-VP +V-S-O +DetNP +DetNP +NPofNP +DetNP +PrepNp +NP-CL +NpaNp +211838 S-ADV-V-ADV +V2CL +PrepNp +V-O +NpAdjp +211844 Conj-CL +CLaCL +ADV-V-ADV +BeVerb +PrepNp +NPofNP +211851 ADV-V-ADV +VerbBe +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +211859 CLaCL +ADV-V-O-ADV +DetNP +PrepNp +211864 V-O +NpAdjp +211867 Conj-CL +S-ADV-V-IO-O-ADV +DetNP +211871 that-VP +ADV-V-S +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +DetNP +211881 ClCl +V-IO-O +NP-Demo +DetNP +sub-CL +S-V-O +PtclCL +IO-V-O +DetNP +NpAdjp +211892 Conj-CL +211894 PrepNp +ClCl +S-ADV-VC-P +DetNP +NPofNP +PrepNp +PrepNp +sub-CL +V-O +O-ADV-V +DetNP +NPofNP +DetNP +PrepNp +211909 ClCl +ADV-VC-P-S-ADV +NpaNp +211913 PrepNp +NP-Demo +DetNP +sub-CL +S-ADV-VC-P-ADV +DetNP +NPofNP +PrepNp +DetNP +211923 Conj-CL +ClCl +CLaCL +V-ADV +PrepNp +NP-Demo +DetNP +NPofNP +211932 V-O +DetNP +PtclCL +PtclCL +V-ADV-S +DetNP +NPofNP +DetNP +NPofNP +211942 Conj-CL +O-V +P-S-VC +PrepNp +NpaNp +NPofNP +211949 NPofNP +211951 Conj-CL +211953 V2CL +DetNP +211956 PrepNp +PrepNp +DetNP +sub-CL +V-ADV-S +PrepNp +NPofNP +O-V +211965 Conj-CL +Conj-CL +CLaCL +S-ADV-V-ADV +V-O +Conj2VP +211972 DetNP +NPofNP +DetNP +PrepNp +211977 O-V +AdjpNp +NPofNP +DetNP +211982 Conj-CL +211984 NPofNP +PrepNp +211987 CLaCL +V2CL +211990 V-ADV-ADV +PrepNp +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +2Pp +PrepNp +PrepNp +S-VC-P +212002 Conj-CL +ADV-V +V2CL +212006 Conj-CL +212008 S-V +NP-CL +NP-CL +Np-Appos +Np-Appos +Np-Appos +NPofNP +Np-Appos +NPofNP +S-VC-P +PrepNp +All-NP +DetNP +NPofNP +S-V-ADV-ADV +V2CL +PrepNp +BeVerb +EitherOrVp +212029 V-ADV +PrepNp +DetNP +NPofNP +212034 V-O +Np-Appos +DetNP +212038 Conj-CL +212040 DetNP +DetNP +CLaCL +V2CL +212045 V-IO +NP-Demo +DetNP +212049 Conj-CL +CLaCL +ADV-S-V-O +V2CL +DetNP +S-V-O +Np-Appos +DetNP +212059 Conj-CL +PtclCL +V-O +O-V +212064 Conj-CL +212066 Conj-CL +212068 ADV-V +sub-CL +ADV-S-V-O +212072 Conj-CL +V-O +S-ADV-V-ADV +DetNP +V2CL +PrepNp +212079 Conj-CL +212081 S-VC-P +DetNP +NP-CL +NPofNP +DetNP +O-V +CLaCL +ClCl2 +sub-CL +S2CL +ADV-V +PrepNp +212094 ClCl2 +sub-CL +S-ADV-P +PrepNp +DetCL +V-O +ADV-ADV-V-O +DetNP +NPofNP +ClCl +ADV-S-V +PrepNp +DetNP +DetNP +NPofNP +212110 DetNP +NPofNP +sub-CL +V-ADV-S +PrepNp +DetNP +DetNP +NPofNP +212119 Conj-CL +212121 V2CL +DetNP +DetNP +212126 PrepNp +DetNP +ADV2CL +Conj2Pp +PrepNp +212132 PrepNp +AdjpNp +212135 Conj-CL +S-ADV-V-IO-O +DetNP +CLaCL +V-O +DetNP +NPofNP +212143 V-ADV +PrepNp +NP-Demo +DetNP +DetNP +212149 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +DetNP +CLaCL +V-ADV +PrepNp +AdjpNp +212161 DetNP +ClCl +212164 V2CL +S-V-O +S-V +212168 Conj-CL +CLaCL +V-O +V-S +DetNP +212174 CLaCL +V-ADV-ADV-S +PrepNp +DetNP +aNpaNp +212180 DetNP +212182 DetNP +212184 V-O +212186 Conj-CL +CLaCL +212189 sub-CL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +212196 ClCl +ADV-V-O-ADV-S +DetNP +sub-CL +V-ADV-ADV +DetNP +NPofNP +V2CL +212205 Conj-CL +CLaCL +S-V-ADV +PrepNp +212210 ADV-V-O-ADV +V2CL +NP-all +DetNP +PrepNp +DetCL +V-S-ADV +PrepNp +212219 Conj-CL +212221 DetNP +ADV-V-O-ADV +NpaNp +212225 PrepNp +DetNP +NPofNP +DetNP +V-ADV +DetNP +PrepNp +NpPp +NpPp +PrepNp +PrepNp +DetNP +sub-CL +212239 sub-CL +V-O +Np-Appos +NpAdjp +P-VC +DetNP +aNpaNp +212248 V2CL +PrepNp +212251 Conj-CL +CLaCL +ADV-V-S +PrepNp +DetCL +V2CL +S-V-ADV +DetNP +212260 CLaCL +ADV-O-V-S-ADV +PrepNp +DetNP +212265 ADV-V-O +V-ADV +PrepNp +DetNP +212270 ClCl2 +ClCl +Np2CL +Np2CL +ADV-O-V +212276 Conj-CL +212279 Np2CL +212281 Conj-CL +212283 S-VC-P +NP-CL +O-S-V +212287 Conj-CL +CLaCL +CLaCL +V2CL +212292 V-ADV +PrepNp +DetNP +212296 V-IO-S +S-V +Np-Appos +O-S-V +212301 Conj-CL +S-V-ADV-ADV +Np-Appos +DetNP +DetCL +V-ADV +aCLaCL +212309 V-O +DetNP +212312 O-V +212314 Conj-CL +CLaCL +V-S-ADV +PrepNp +DetNP +212320 ClCl2 +V-S +DetNP +NPofNP +O-V +212326 Conj-CL +ADV-O-V-ADV +V2CL +PrepNp +212331 Conj-CL +CLaCL +V-ADV-ADV +BeVerb +NpAdjp +212337 ADV-V +Conj2VP +212341 Conj-CL +CLaCL +VC-S-P +NpAdjp +AdjpNp +ADV-P +PrepNp +212350 PrepNp +PrepNp +DetNP +Np2CL +212355 Conj-CL +212358 V2CL +Np2CL +212361 Conj-CL +ClCl +S-ADV +DetNP +PrepNp +CLaCL +ADV-V-ADV +V2CL +PrepNp +Np-Appos +DetNP +DetCL +VC-P +212375 V-ADV-O +PrepNp +NPofNP +AdjpNp +P-ADV +212381 Conj-CL +212383 V2CL +212385 V-O +CLaCL +S-V +NpAdjp +P-ADV +212391 ClCl +V-IO-O +sub-CL +V2CL +212396 Conj-CL +212399 Np2CL +PrepNp +PrepNp +NP-Demo +DetNP +CLaCL +O-IO-V-ADV +AdjpNp +DetNP +NPofNP +PrepNp +212411 ADV-V-O-ADV +NpPp +PrepNp +DetNP +V-O +All-NP +DetCL +V-O +DetNP +NPofNP +212422 Conj-CL +212424 PrepNp +DetNP +ClCl +ClCl +V2CL +sub-CL +P-VC-ADV-S-ADV +NPofNP +DetCL +V-O-ADV +DetNP +NPofNP +PrepNp +aNpaNp +212439 NpaNp +212442 NPofNP +sub-CL +S-V-IO-O +S-V +O-S-ADV-V +PrepNp +DetNP +NPofNP +212451 Conj-CL +CLaCL +V-S +212455 CLaCL +V-ADV +PrepNp +DetNP +212461 V-ADV-O +PrepNp +DetNP +212465 Np2CL +Np-Appos +S-V-O +Np-Appos +DetNP +Np-Appos +DetCL +V-IO-ADV +PrepNp +DetNP +NP-CL +ADV-V +CLaCL +V2CL +212480 V-ADV +NpAdjp +212483 Conj-CL +CLaCL +CLaCL +CLaCL +212488 PrepNp +ofNPNP +DetNP +sub-CL +S2CL +212494 V2CL +212496 ADV-V +V2CL +212499 ADV-V +V-O +212502 Conj-CL +CLaCL +VC-P-ADV +PrepNp +DetNP +PpNp2Np +PrepNp +NpAdjp +212512 PrepNp +DetNP +DetNP +that-VP +S-VC-P +DetNP +NPofNP +DetNP +212521 Conj-CL +CLaCL +V-S +All-NP +DetCL +V2CL +212529 PtclCL +CLaCL +S-VC-P +DetCL +V-ADV-O +PrepNp +DetCL +V-O +NP-Demo +DetNP +212540 ClCl +ADV-ADV-V +PrepNp +sub-CL +ADV-O-V-ADV +V2CL +PrepNp +DetNP +212549 Conj-CL +CLaCL +S-ADV-V +212553 V-O-ADV +Np-Appos +DetCL +V-ADV +PrepNp +212559 that-VP +S-VC-P +DetNP +212563 Conj-CL +ClCl2 +sub-CL +V-S +NpAdjp +V-S-O +DetAdj +V-O +212572 Conj-CL +V-IO-S +DetNP +DetNP +NPofNP +212578 Conj-CL +212580 AdvpNp +DetNP +aNpaNp +212585 sub-CL +O-V +212588 Conj-CL +ADV-S-ADV-ADV-V-O-ADV +V2CL +DetNP +NPofNP +PrepNp +DetNP +V-ADV +PrepNp +212598 Conj-CL +ADV-V-O +V-ADV +PrepNp +V-IO +DetNP +212605 Conj-CL +S-V-O-ADV +212608 that-VP +VC-P +212611 Conj-CL +CLaCL +S-ADV-V-ADV +V-O +PrepNp +DetNP +212619 CLaCL +CLaCL +ADV-ADV-V-O +PrepNp +DetNP +DetNP +212626 that-VP +V-IO +212629 ADV-ADV-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +212635 Conj-CL +212637 BeVerb +Conj2VP +212640 PrepNp +PrepNp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +V-ADV +EitherOrVp +212651 PrepNp +DetNP +212654 Conj-CL +S-V-O +V-O +212658 Conj-CL +CLaCL +ADV-S-V-O-ADV +V2CL +DetNP +PrepNp +212665 V-O-ADV +PrepNp +212668 Conj-CL +Conj-CL +CLaCL +S-ADV-V-O-ADV +DetNP +PrepNp +All-NP +DetNP +Conj3Np +212679 V2CL +212681 ADV-V +V-ADV +NpaNp +DetNP +NPofNP +DetNP +212688 DetNP +NPofNP +DetNP +AdjpNp +212693 Conj-CL +V-S +S-ADV-V-ADV +V-ADV +PrepNp +AdvPp +PrepNp +Np-Appos +DetAdj +DetCL +V-ADV +212705 Conj-CL +V-ADV-O +NP-CL +NpAdjp +NpAdjp +NpAdjp +ADV-P +ADV-V-ADV +PrepNp +NpNump +PrepNp +S-VC-P +V2CL +212719 Conj-CL +212721 DetNP +212723 Np2CL +V-O-S +Np-Appos +CLaCL +V2CL +212729 V-IO +212731 Conj-CL +ADV-V +212734 Conj-CL +212736 V-O-S +All-NP +DetCL +V-ADV +NpaNp +212742 DetNP +PrepNp +DetNP +212746 Conj-CL +P-VC-S +PrepNp +AdjpNp +NpAdjp +ADV-P +NP-CL +S-ADV-VC-P +V2CL +212756 S-VC-P-ADV +NP-CL +NpaNp +NpAdjp +212761 O-V +212763 Conj-CL +V-ADV-S +PrepNp +NP-Demo +DetNP +ADV-S-V +V2CL +212771 Conj-CL +ADV-V-ADV +V2CL +PrepNp +212776 Conj-CL +ClCl2 +VC-S-P +PrepNp +DetNP +S-ADV-V-O-ADV-ADV +DetNP +212784 that-VP +S-VC-P +PrepNp +NumpNP +PrepNp +212790 ADV-V-O +V-ADV +PrepNp +212794 Conj-CL +212796 V2CL +CLaCL +O-ADV-V-ADV +V2CL +PrepNp +DetNP +212803 V-ADV-S-ADV +All-NP +DetNP +CLaCL +V2CL +212809 V-O +NP-CL +NpaNp +212813 O-V-ADV-S +P-VC +PrepNp +DetNP +212818 Conj-CL +CLaCL +S-ADV-V +DetNP +CLaCL +V-ADV-O +212825 V-O +DetNP +212829 V-ADV +PrepNp +DetNP +212833 Np2CL +212835 Conj-CL +CLaCL +S-V-O +DetNP +NPofNP +212841 ADV-V +V-O +DetNP +212845 Conj-CL +CLaCL +ADV-V-O +V-IO-O +212850 ADV-V-O-O2 +V-O +NpaNp +DetAdj +212855 DetNP +V2CL +212858 Conj-CL +CLaCL +P-VC-ADV +PrepNp +All-NP +DetNP +212865 V-S-ADV +PrepNp +DetNP +212869 Conj-CL +V-S +ADV-V-ADV-ADV +NpAdjp +PrepNp +PrepNp +Np-Appos +AdjpNp +212878 Conj-CL +S-V-ADV-ADV-ADV-O +NpAdjp +NpAdjp +Np-Appos +NpAdjp +NpPp +NpAdjp +PrepNp +ADV-P +NpPp +PrepNp +Np-Appos +DetCL +VC-P +AdjpaAdjp +212895 V-O-ADV +DetNP +PrepNp +All-NP +DetNP +NPofNP +AdjpaAdjp +V-O-IO +NpAdjp +DetNP +212906 V-O-ADV +DetNP +PrepNp +PrepNp +AdvPp +PrepNp +NPofNP +NpAdjp +DetNP +CLaCL +S-V-ADV +NPofNP +DetNP +PrepNp +212922 Np2CL +212924 Conj-CL +212926 CLaCL +V-O +212929 P-VC +212931 Np2CL +212933 Conj-CL +212935 S-V-ADV-ADV +NpaNp +DetNP +NPofNP +212940 DetNP +NPofNP +PrepNp +PrepNp +DetNP +212946 Conj-CL +CLaCL +ADV-V-O-ADV +PrepNp +212951 V-O +NP-CL +NpAdjp +S-VC-P +212956 S-V-ADV +PrepNp +NP-CL +Np-Appos +AdjpNp +P-VC-S-ADV +PrepNp +212964 Conj-CL +ClCl2 +sub-CL +V-S +Np-Appos +DetNP +DetCL +V-IO +ADV-V-O-ADV +CLaCL +V-O +NpaNp +NPofNP +DetNP +212979 NPofNP +NpAdjp +DetCL +V-O +212984 V-O-IO +PrepNp +DetNP +212988 Conj-CL +ADV-ADV-V-S-ADV-ADV-ADV +DetAdv +CLaCL +V-S +212994 ADV-V +DetNP +PrepNp +DetNP +V2CL +PrepNp +NpAdjp +213002 Conj-CL +CLaCL +VC-P +213006 V-O +V2CL +213009 Conj-CL +ClCl2 +V-S +CLaCL +V-ADV-S +PrepNp +213016 V-O +CLaCL +S-V +DetNP +213022 NpAdjp +sub-CL +S2CL +NpAdjp +ADV-V-ADV +AdjpNp +PrepNp +DetNP +P-VC-S +PrepNp +All-NP +DetNP +NpaNp +NPofNP +NpaNp +213038 DetNP +213040 NPofNP +DetNP +213043 Conj-CL +213045 PrepNp +213047 Np2CL +V2CL +Conj2VP +213052 Conj-CL +213054 DetNP +ClCl +213057 Np2CL +sub-CL +ADV-V-O +All-NP +NpaNp +213064 Conj-CL +213066 PrepNp +PrepNp +O-S-ADV-V +O-S-V +DetNP +213072 Conj-CL +CLaCL +S-V-ADV +PrepNp +213077 ADV-V-S-ADV +DetNP +PrepNp +DetNP +213082 Conj-CL +ClCl2 +sub-CL +ADV-V-S-O +PrepNp +DetNP +PtclCL +P-VC-S +DetNP +NP-CL +O-V +213094 S-ADV-V-ADV +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +V-O +DetNP +NPofNP +DetNP +PrepNp +DetNP +213108 ADV-V-O +V2CL +PtclCL +S-ADV-V +Np-Appos +DetCL +VC-P +213116 Conj-CL +213118 S-V-ADV +DetNP +PrepNp +DetNP +DetNP +CLaCL +213125 NpNump +213127 ClCl +CLaCL +ADV-V +V2CL +213132 V-ADV-ADV +PrepNp +O-V +sub-CL +S-V-O +213138 Conj-CL +213140 V2CL +PrepNp +DetNP +213144 S-VC-P +O-V +P-S +DetNP +NP-CL +ADV-V +PrepNp +213152 Conj-CL +213154 S-V-ADV-ADV +Np-Appos +Np-Appos +NpAdjp +Conj3Adjp +213160 V-O +DetNP +213163 V-ADV +PrepNp +All-NP +DetNP +NPofNP +DetAdj +PrepNp +NpAdjp +CLaCL +V-O-ADV +PrepNp +DetNP +NPofNP +213177 V-O-ADV +PrepNp +213180 Conj-CL +ADV-V +V-O +213184 Conj-CL +CLaCL +ADV-ADV-V-ADV +DetAdv +V2CL +PrepNp +213191 S-V-ADV +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +213198 Conj-CL +ADV-V-ADV +DetAdv +PrepNp +DetNP +213204 Conj-CL +S-V-O-ADV +DetNP +BeVerb +V-O +NpaNp +DetNP +NPofNP +213213 DetNP +AdjpNp +213216 Conj-CL +213218 sub-CL +V-ADV +DetCL +V-S +DetNP +V-O +DetNP +V-ADV +PrepNp +DetNP +213229 Conj-CL +S-V-O-ADV +DetNP +213233 ClCl +V2CL +S-P-VC +AdvpNp +NpPron +213239 Conj-CL +CLaCL +CLaCL +ADV-V +V-ADV +213245 V-O +V-S +213249 PrepNp +S-V-O +ADV-P-VC-ADV-S +NpAdjp +V-ADV +Conj2VP +213257 IO-S-V-O +DetNP +O-O2-V +AdjpNp +AdjpaAdjp +213264 Conj-CL +ADV-ADV-V-ADV +V2CL +213268 Conj-CL +V-O +ADV-V-O +AdjpNp +213273 Conj-CL +213275 DetNP +CLaCL +ADV-V-ADV-ADV +2Pp +PrepNp +AdjpNp +PrepNp +Demo-NP +DetNP +BeVerb +DetAdj +PrepNp +DetNP +NPofNP +213291 S-V-ADV-ADV +PrepNp +PrepNp +NpAdjp +213298 Np2CL +V-S +ofNPNP +DetNP +213303 S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +213309 Conj-CL +CLaCL +V-ADV +PrepNp +213314 V-O +NP-CL +S-VC-P +213318 S-V-ADV-ADV +PrepNp +NPofNP +Np-Appos +PrepNp +213324 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +213329 S-ADV-V-ADV +V2CL +213332 Conj-CL +ADV-S-ADV-V-ADV +All-NP +PrepNp +DetNP +V-O +All-NP +DetCL +V-IO-ADV +PrepNp +DetNP +213344 Conj-CL +213346 V-O +DetNP +213349 PrepNp +that-VP +notCLbutCL2CL +VC-P-S +DetNP +ADV-S-P-ADV-VC +PrepNp +All-NP +DetCL +CLaCL +V-O +213361 V-O +213364 O-S-V +DetNP +NP-CL +O-V-IO-ADV +DetNP +NPofNP +V-O-ADV +PrepNp +NP-CL +Np-Appos +S-VC-P +ofNPNP +2Np +DetNP +NP-CL +V-ADV-ADV-ADV +PrepNp +All-NP +DetNP +V-ADV +PrepNp +DetNP +PrepNp +DetNP +NP-CL +O-V-S +NP-CL +NP-CL +Np-Appos +NpPp +PrepNp +sub-CL +V-O-S-ADV +DetNP +NpaNp +NpAdjp +213402 S-V-ADV +CLaCL +V2CL +213406 V-O +All-NP +DetCL +V-ADV +PrepNp +DetAdj +S-VC-P +DetNP +PrepNp +213416 Conj-CL +213418 NPofNP +NP-CL +O-V-ADV +aPpaPp +213423 PrepNp +DetNP +NPofNP +DetAdj +213428 O-ADV-V-ADV +V-ADV +PrepNp +213432 CLaCL +O-S-V-ADV +DetNP +PrepNp +DetNP +AdjpNp +213439 V-O +S-P-VC-ADV +notNPbutNP +All-NP +DetNP +NP-CL +Np-Appos +Np-Appos +DetCL +V-ADV +PrepNp +DetNP +S-V-ADV-ADV +Conj2VP +213454 PrepNp +DetCL +V-S-ADV +PrepNp +213459 Conj-CL +V-IO-O +CLaCL +V-IO +DetNP +213466 that-VP +S-VC-P +DetNP +AdjpNp +V-ADV +PrepNp +DetNP +NPofNP +NpaNp +V2CL +213478 IO-S-V-O +All-NP +DetNP +O-V-ADV-S +NPofNP +PrepNp +DetNP +NPofNP +All-NP +DetCL +V-ADV +PrepNp +213492 ADV-V-S-O +DetNP +NP-Demo +DetNP +DetNP +NPDetAdj +DetAdj +PrepNp +All-NP +DetCL +V-O +DetNP +213505 Conj-CL +213507 NP-CL +DetNP +PpNp2Np +PrepNp +S-V-ADV +DetNP +sub-CL +ADV-S-V +AdvPp +PrepNp +DetNP +DetNP +NPofNP +DetNP +AdjpNp +213523 Conj-CL +V-O +CLaCL +S-V-ADV +213528 V-O +DetNP +213532 PtclCL +O-V-S-ADV +O-V +DetNP +DetCL +ADV-V-S +NP-CL +213540 S-O-V +DetNP +NPDetAdj +DetAdj +S2CL +AdvpNp +213547 Conj-CL +V-O +S-ADV-V +PrepNp +DetNP +NPofNP +Np-Appos +213555 ADV-V-O +S-V-ADV +NpAdjp +213559 Conj-CL +213561 NpaNp +DetNP +213564 Np-Appos +DetNP +DetCL +VC-P +PrepNp +DetNP +that-VP +S-V-O +AdvpNp +DetNP +DetNP +NPofNP +DetNP +213578 Conj-CL +ClCl2 +sub-CL +V-S-ADV +PrepNp +V-ADV-S-ADV +PrepNp +NpPp +PrepNp +213588 that-VP +CLaCL +V-ADV +PrepNp +NpAdjp +O-V +213595 V-ADV +213597 Conj-CL +ADV-S-V-IO-ADV-ADV +V2CL +213601 CLaCL +S-V-ADV +BeVerb +PrepNp +Np-Appos +213607 CLaCL +V-ADV-O +PrepNp +Np-Appos +213612 NpAdjp +sub-CL +S-ADV-V-ADV +NpAdjp +AdjpNp +PrepNp +DetNP +213620 V-ADV +PrepNp +213623 CLaCL +ADV-V +ADV-V +PrepNp +213628 V-O +Conj4Np +DetNP +NPofNP +DetNP +213634 DetNP +213636 DetNP +213638 DetNP +NPofNP +DetNP +213642 Conj-CL +V-ADV-O +213646 Np2CL +V2CL +Conj2VP +213651 Conj-CL +213653 ClCl +213655 Np2CL +sub-CL +S-ADV-V-ADV +AdjpaAdjp +213660 PrepNp +DetNP +NPofNP +213664 Conj-CL +213666 PrepNp +PrepNp +DetNP +O-S-ADV-V +O-S-V +DetNP +213673 Conj-CL +CLaCL +S-V-ADV +PrepNp +213678 V-ADV-S-ADV +PrepNp +DetNP +213682 Conj-CL +213684 AdjpNp +PrepNp +DetNP +NP-CL +P-VC +PrepNp +V-ADV-ADV +PrepNp +PrepNp +213694 Conj-CL +V-S-IO-O +DetNP +V-ADV-ADV +O-V +213700 Conj-CL +CLaCL +V-ADV-S +PrepNp +AdvpNp +NP-Demo +DetNP +NumpNP +213709 V-ADV +PrepNp +DetNP +NPofNP +DetNP +213715 Conj-CL +213717 sub-CL +V-O +CLaCL +S-ADV-V +DetNP +PrepNp +DetNP +NPofNP +213727 CLaCL +V-ADV +PrepNp +213731 V-O +NP-CL +Np-Appos +DetCL +VC-P +213737 S-V-O-ADV +PrepNp +PrepNp +NpaNp +213742 All-NP +DetNP +NPofNP +213746 Conj-CL +213748 PrepNp +DetCL +V-S-O +V2CL +DetNP +NPDetAdj +DetAdj +PrepNp +sub-CL +ADV-ADV +AdvPp +PrepNp +PrepNp +213762 Conj-CL +213764 DetNP +NPofNP +DetNP +sub-CL +213769 aCLaCL +213771 S-V-ADV +213773 S-V-ADV +PrepNp +NpAdjp +213777 Conj-CL +ClCl2 +sub-CL +ClCl +O-V-IO-S +DetNP +AdjpNp +DetNP +sub-CL +IO-ADV +AdvpNp +V-ADV +PrepNp +Np-Appos +DetNP +Np-Appos +ClCl +S-P-VC +P2CL +AdjpCL +V-O +DetNP +213800 Conj-CL +CLaCL +ADV-V +V-O +213805 V-O-ADV +DetNP +213808 Conj-CL +IO-S-O-V +AdvpNp +DetNP +DetNP +DetNP +NpPp +PrepNp +213817 Conj-CL +Conj-CL +S-V-ADV-ADV +DetCL +V-ADV +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +PrepNp +Conj3Np +213833 DetNP +sub-CL +ADV-ADV-IO +213837 Conj-CL +213839 VC-S-P +NpPp +PrepNp +Np-Appos +NpaNp +213845 V-ADV +PrepNp +AdvPp +PrepNp +DetNP +V-O +Np-Appos +DetNP +213854 Conj-CL +CLaCL +VC-S-P +NPofNP +PrepNp +213860 S-V-ADV +Np-Appos +AdjpNp +DetCL +V2CL +PrepNp +DetNP +213868 Conj-CL +CLaCL +V-S-ADV +DetNP +NpPp +PrepNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetCL +VC-P +PrepNp +213884 V-O-ADV +PrepNp +CLaCL +S-ADV-V +CLaCL +V2CL +213891 V-O +Np-Appos +DetNP +NPofNP +DetNP +213897 V-O +S-ADV-V-ADV +DetNP +NPofNP +DetNP +DetNP +VC-P +NpAdjp +AdjpaAdjp +213907 AdjpAdvp +NpaNp +NpAdjp +213912 Conj-CL +V-S-IO +NpAdjp +DetNP +213917 Conj-CL +CLaCL +V-ADV-ADV +PrepNp +V-O +213923 ADV-V-ADV +V2CL +PrepNp +213927 Conj-CL +V-ADV-S +CLaCL +CLaCL +ADV-V-ADV +AdvpNp +NP-all +PrepNp +DetNP +213937 V-O +NpAdjp +213940 VC-ADV-ADV-S-P +PrepNp +DetNP +213944 Conj-CL +ADV-V-ADV-S-ADV +PrepNp +Demo-NP +DetNP +PrepNp +PrepNp +213952 Conj-CL +213954 V2CL +NpAdjp +NpPp +PrepNp +ADV-P +PrepNp +DetNP +S-V-O +NpAdjp +VC-P +PrepNp +All-NP +DetNP +S-V-ADV +PrepNp +213970 Conj-CL +213972 Np2CL +DetNP +sub-CL +V-S +213977 NPofNP +ADV-V-IO +PrepNp +DetNP +AdjpNp +V-ADV +PrepNp +DetNP +O-ADV-V-ADV +V-ADV-ADV +PrepNp +DetAdj +PrepNp +NPofNP +NpaNp +213994 Conj-CL +ADV-V-S-O-ADV +PrepNp +Demo-NP +DetNP +Np-Appos +DetNP +DetNP +V-O +NPofNP +NpPp +PrepNp +DetNP +214008 Conj-CL +V-O-ADV +Np-Appos +DetNP +NPofNP +214014 Conj-CL +214016 CLaCL +ADV-V-O +214019 that-VP +P-VC-ADV +DetAdj +V-O +AdvpNp +214025 VC-P +NPofNP +DetAdj +O-ADV-V +PrepNp +V-IO-ADV +AdjpNp +NPofNP +V-O +V-O +ADV-V-O-IO +PrepNp +DetNP +DetNP +214040 Conj-CL +aCLaCL +214043 S-V-ADV +DetNP +PrepNp +DetNP +214048 S-VC-ADV-ADV-P-ADV +BeVerb +PrepNp +DetNP +PrepNp +DetNP +PrepNp +214056 Conj-CL +ClCl2 +sub-CL +V-O-S +V-O +DetNP +CLaCL +ADV-S-V-ADV-ADV +NP-Demo +DetNP +DetNP +BeVerb +PrepNp +NumpNP +V-ADV +NpAdjp +214073 S-ADV-V-O +PrepNp +DetNP +DetNP +214078 Conj-CL +214080 S-V +NPofNP +214083 S-V-ADV +PrepNp +DetNP +214087 Conj-CL +ADV-V-O-ADV +V-O +DetNP +NPofNP +DetNP +214094 V-ADV +PrepNp +214097 Conj-CL +V-S-ADV +ofNPNP +DetNP +PrepNp +DetNP +214104 Conj-CL +214106 DetNP +PrepNp +CLaCL +V2CL +214111 V-O +DetNP +NPofNP +214115 Conj-CL +V-ADV +214118 Conj-CL +214120 CLaCL +V-O +DetNP +NPofNP +214125 V-O +214127 Conj-CL +CLaCL +ADV-V +V2CL +214132 notCLbutCL2CL +214134 that-VP +P-VC-S +DetCL +V-ADV +PrepNp +DetNP +V-O +O-V +214143 Conj-CL +CLaCL +CLaCL +ADV-V-ADV +V-ADV +AdjpNp +AdjpaAdjp +214151 PrepNp +NP-CL +Np-Appos +DetNP +NPDetAdj +DetAdj +DetCL +V-ADV +PrepNp +DetNP +S-ADV-V-IO +214163 ADV-V-ADV +V2CL +NpAdjp +214167 ADV-V-S-ADV +DetNP +PrepNp +214171 Conj-CL +214173 DetNP +ADV-V +PrepNp +214177 that-VP +CLaCL +V-S-O +DetNP +DetNP +NPofNP +214184 V-O-ADV +PrepNp +NpaNp +NPofNP +214189 All-NP +DetNP +NPofNP +DetNP +NPofNP +DetAdj +214196 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +NP-CL +NPofNP +Np-Appos +DetNP +DetNP +NPofNP +Np-Appos +DetCL +VC-P +ADV-S-V +BeVerb +Conj2VP +214215 Conj-CL +ClCl2 +V-S-O +DetNP +NPofNP +DetNP +V-ADV-S +V2CL +NpAdjp +ADV-P +214226 Conj-CL +CLaCL +ADV-ADV-ADV-V-O +V-O +DetNP +NPofNP +DetNP +PrepNp +DetNP +DetNP +214237 ADV-V-O +V2CL +V-S-ADV +DetNP +PrepNp +DetNP +214244 Conj-CL +214246 PrepNp +V2CL +214249 Conj-CL +S-V-O +P-VC +214253 Conj-CL +214255 P-VC-ADV +DetNP +214258 Conj-CL +S-V-O +DetNP +V2CL +214263 Conj-CL +CLaCL +ADV-V-O +V2CL +214268 V2CL +214270 Conj-CL +CLaCL +ADV-V-IO-O +V-IO-ADV-ADV +DetNP +V2CL +ADV-S-O-V-ADV +DetNP +PrepNp +DetNP +214282 V-IO-O +NpaNp +214285 DetNP +214287 Conj-CL +ADV-V-ADV +V2CL +PrepNp +AdjpNp +214293 Conj-CL +214295 V-S +NpAdjp +AdvpAdjp +PrepNp +DetNP +sub-CL +P-S-VC +DetNP +214304 Conj-CL +CLaCL +S-ADV-ADV-V-O +CLaCL +V-O +214310 ADV-V +V-O +DetNP +V2CL +214315 ADV-V +V-ADV +2Pp +PrepNp +DetNP +PrepNp +214322 Conj-CL +V-O +BeVerb +NpaNp +214328 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +214333 ADV-V-O-ADV +V-O +Np-Appos +NpPp +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetCL +V-S-ADV +ofNPNP +DetNP +PrepNp +DetAdj +214349 Conj-CL +ADV-S-ADV-ADV-V-ADV +AdjpNp +DetNP +V-O +NpAdjp +V-ADV +PrepNp +DetNP +PrepNp +214360 Conj-CL +214362 DetNP +CLaCL +P2CL +ofNPNP +214367 ADV-P +214369 Conj-CL +CLaCL +ADV-V-O-S-ADV +NPofNP +PrepNp +ADV-ADV-V-O-IO +DetNP +DetNP +214378 ADV-V +VC-P +214381 Conj-CL +S-V +DetNP +NPofNP +DetNP +Conj2VP +214389 Conj-CL +S-V-ADV-ADV-ADV +NpaNp +214393 PrepNp +V-O +DetNP +V-O +Np-Appos +DetCL +VC-P +214401 Conj-CL +VC-P-ADV-S +PrepNp +PrepNp +DetNP +AdjpNp +V2CL +Np-Appos +NpaNp +214411 aNpaNp +214413 Conj3Np +DetNP +214416 Np-Appos +DetCL +VC-P +214420 Np-Appos +DetNP +214423 NpaNp +Np-Appos +ofNPNP +Np-Appos +DetNP +214430 Conj-CL +ClCl2 +CLaCL +V-S-O +DetNP +214436 V2CL +214438 DetNP +NPDetAdj +DetAdj +PtclCL +V-IO-O-ADV +DetNP +NpaNp +214446 PrepNp +DetNP +NP-CL +ADV-V-O +214451 ADV-ADV-V +Conj3CL +V2CL +214455 V2CL +214457 V-O-IO +DetNP +214460 Conj-CL +Conj-CL +CLaCL +CLaCL +S-ADV-V-ADV +V-ADV +PrepNp +DetNP +AdjpNp +PrepNp +214471 ADV-V-ADV +PrepNp +214474 ADV-V-O-ADV +VC-P +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetAdj +214485 Conj-CL +V-O-O2 +AdvpNp +214489 Conj-CL +ADV-V-O +V-ADV-ADV +All-NP +DetNP +PrepNp +NP-CL +NP-CL +Np-Appos +Np-Appos +NpAdjp +NpAdjp +ADV-S-P +S-VC-P +PrepNp +Np-Appos +Np-Appos +DetNP +Np-Appos +NpAdjp +214510 S-ADV-V-O +V-O +NpaNp +214514 V-O +DetNP +NPofNP +DetNP +214519 Conj-CL +V-O-S-ADV +NP-CL +Np-Appos +DetNP +sub-CL +ADV-V-S +DetNP +NPofNP +V-O +V-O-ADV +DetNP +PrepNp +DetNP +214534 Conj-CL +214536 Np-Appos +DetNP +AdvpNp +V-ADV +NpAdjp +V-ADV +PrepNp +ClCl2 +214545 Np2CL +Np2CL +NpAdvp +NpaNp +All-NP +214551 All-NP +Np2CL +NPofNP +Np2CL +NPofNP +All-NP +ADV-V-O +V-O +Np-Appos +DetNP +NPofNP +DetNP +DetAdj +214565 Conj-CL +214567 ADV2CL +214569 NPofNP +PrepNp +214572 VC-P-ADV +ADV-V-O-ADV +DetNP +PrepNp +214577 Conj-CL +CLaCL +ADV-V-ADV-S +PrepNp +NpaNp +214584 ADV-V-O +V2CL +214587 ADV-S-ADV-V-ADV +DetNP +V-O +DetCL +V2CL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +214598 Conj-CL +ADV-S-V-ADV +V-ADV +PrepNp +DetNP +NpPp +PrepNp +PrepNp +NPofNP +DetNP +214609 Conj-CL +S-ADV-V-ADV +V-ADV +PrepNp +PrepNp +214615 Conj-CL +CLaCL +S-ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +NPDetAdj +DetAdj +214625 ADV-V +V-ADV-ADV +PrepNp +DetNP +DetNP +NPofNP +DetNP +214633 Conj-CL +ADV-V-S-ADV-ADV +PrepNp +DetNP +NPofNP +NpaNp +DetNP +214641 DetNP +DetNP +PrepNp +214645 ClCl2 +ClCl +Np2CL +Np2CL +ClCl2 +sub-CL +VC-P-S +PrepNp +AdjpNp +NpPp +NPofNP +PrepNp +DetNP +V2CL +214660 Conj-CL +S-ADV-V +CLaCL +V2CL +214665 V-ADV +DetNP +214668 ClCl2 +CLaCL +ClCl +Np2CL +Np2CL +214674 Np2CL +DetCL +V-O +DetNP +V2CL +214680 ClCl +CLaCL +S-V-O +DetNP +NPofNP +Np-Appos +NP-Demo +DetNP +DetNP +NPofNP +214691 CLaCL +CLaCL +CLaCL +O-V-ADV +DetNP +PrepNp +DetNP +NpPp +PrepNp +NPofNP +214702 ADV-V-O-ADV +PrepNp +NpAdjp +PrepNp +214707 ADV-V-O-ADV +AdvpNp +AdjpNp +PrepNp +DetAdj +214713 ADV-V-O +V-O +NpPp +NpNump +PrepNp +NPofNP +DetNP +NPofNP +ADV2CL +AdvpNp +NpNump +Conj2Nump2 +214726 Conj-CL +ADV-V-O-ADV +PrepNp +PrepNp +NPofNP +214732 CLaCL +ADV-V-O +214735 V-IO-S-O-ADV +DetNP +Np-Appos +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +NPofNP +NpNump +214746 Conj-CL +ClCl +ADV-V-O-IO-ADV +V-O +DetNP +PrepNp +214753 IO-ADV-V-ADV +V2CL +NP-CL +Np-Appos +Np-Appos +NPofNP +DetNP +NpPp +PrepNp +DetNP +NPofNP +S-V-O +All-NP +DetNP +NPofNP +214770 DetNP +PrepNp +ofNPNP +DetNP +PrepNp +DetNP +Np-Appos +V-S-ADV-O-IO +PrepNp +NPofNP +DetNP +NPofNP +NPofNP +All-NP +DetNP +NPofNP +214787 Conj-CL +ClCl2 +sub-CL +V-S-O +DetNP +214794 P-S-VC +notCLbutCL2CL +VC-S +214798 PrepNp +ADV-ADV-VC-P-ADV +O-V +DetNP +NPofNP +DetNP +214805 ClCl2 +ClClCl +Np2CL +Np2CL +Np2CL +NpaNp +NPofNP +NPofNP +214814 NpAdjp +NpPp +PrepNp +V-O +DetNP +IO-S-V +DetNP +NPofNP +NP-Demo +DetNP +214825 Conj-CL +CLaCL +S-ADV-ADV-V +NpaNp +DetCL +V-ADV +PrepNp +214833 DetNP +NPofNP +CLaCL +O-V +214838 O2CL +Np-Appos +DetNP +NPofNP +DetNP +DetCL +ADV-V +PrepNp +All-NP +V2CL +214849 ADV-V-O-O2 +O-V +AdjpNp +NPofNP +V-S +214855 Conj-CL +ClCl2 +sub-CL +V-O +All-NP +DetCL +ADV-V +PrepNp +ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +214869 Conj-CL +214871 S-V-O-ADV +DetNP +PrepNp +PrepNp +NpAdjp +NP-CL +DetCL +V-ADV-ADV +2Pp +PrepNp +DetNP +PrepNp +S-ADV-VC-P-ADV +NPofNP +PrepNp +DetNP +214888 Conj-CL +214890 DetNP +AdjpNp +ADV-V +PrepNp +DetNP +that-VP +ClCl +O-S-V-IO-ADV +DetNP +DetNP +NPofNP +V-O +sub-CL +214904 AdvPp +PrepNp +DetNP +NPDetAdj +DetAdj +ClCl +P-VC-S +NPofNP +S-ADV-V-O +214914 Conj-CL +214916 that-VP +V-O-ADV-ADV +PrepNp +ADV-V-O +V-ADV +PrepNp +that-VP +V-IO-O +Np-Appos +DetNP +NPofNP +DetNP +214929 Conj-CL +214931 AdvPp +PrepNp +ADV-V-O +S-V-O +DetNP +NPofNP +214938 Conj-CL +aCLaCL +214941 Conj3CL +S-ADV-V +ADV-V-O +AdjpNp +DetNP +ofNPNP +DetNP +214949 V-ADV +PrepNp +DetNP +NPofNP +214954 V-O +214956 S-ADV-V-O +O-S-V +DetNP +214960 Conj-CL +214962 P-VC-ADV +ClCl +Np2CL +Np2CL +that-VP +CLaCL +ADV-IO-S-V +PrepNp +NPofNP +214972 ADV-ADV-S-V +PrepNp +NP-CL +ADV-ADV-V-O +ADV-V +PrepNp +NPofNP +PrepNp +All-NP +DetCL +V2CL +214984 Conj-CL +ClCl +V2CL +PtclCL +V-S +DetCL +214991 PrepNp +DetNP +ClCl +Conj3CL +214996 Np2CL +DetNP +214999 V2CL +215001 V2CL +sub-CL +215004 O-V-S-ADV +PrepNp +DetNP +NPofNP +NP-CL +215010 O-ADV-V +2Advp_h1 +S-V-IO +215014 Conj-CL +ClCl2 +V-S +V-O +ADV-V-IO-S +PrepNp +DetNP +AdvpNp +NP-Demo +DetNP +215025 Conj-CL +ClCl2 +V-S +DetNP +V-S-O +NPofNP +NpaNp +DetAdj +215034 DetNP +AdjpNp +V2CL +NP-CL +NpaNp +DetNP +215041 DetNP +S-ADV-V-O +V-IO +S-V-ADV +DetNP +NPofNP +DetNP +215049 Conj-CL +ADV-S-V-ADV +DetNP +AdjpNp +V2CL +AdvpNp +All-NP +DetNP +V-O +DetNP +NPofNP +DetNP +215062 Conj-CL +CLaCL +S-ADV-V-ADV +DetAdj +V-O +DetNP +215069 V-IO-ADV +DetCL +ADV-V +PrepNp +V2CL +215075 Conj-CL +215077 V2CL +NpaNp +DetNP +215081 DetNP +VC-P-S +IO-ADV-V-S +DetNP +NPofNP +DetNP +215088 ClCl2 +sub-CL +CLaCL +V-O +215093 ADV-V-O-O2 +AdjpAdvp +DetNP +AdjpNp +215098 PrepNp +DetNP +215101 Conj-CL +215103 DetNP +V-O-ADV-ADV +PrepNp +NPofNP +DetCL +VC-S-P-ADV +PrepNp +PrepNp +NPofNP +DetNP +215114 Conj-CL +CLaCL +CLaCL +ADV-S-V +V2CL +DetNP +215121 V-O +DetNP +NPofNP +DetNP +215126 V-S +S-V-ADV +BeVerb +PrepNp +NpAdjp +215132 Conj-CL +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +All-NP +DetNP +215141 Conj-CL +CLaCL +S-V-O +DetAdj +NpaNp +DetNP +AdjpNp +V2CL +NPDetAdj +DetAdj +215152 DetNP +NPofNP +DetNP +215156 CLaCL +V-O-ADV +PrepNp +DetNP +NpaNp +215163 V-O-ADV +PrepNp +DetNP +NPofNP +215168 Conj-CL +CLaCL +S-ADV-V-ADV +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +215178 S-V-ADV +DetNP +NpaNp +215182 NpAdjp +215184 Conj-CL +V-ADV-S +PrepNp +CLaCL +ADV-V-S-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetAdj +215196 V-ADV-ADV +sub-CL +V-S +ofNPNP +aNpaNp +215203 AdjpNp +215205 Conj-CL +S-V-O-ADV +DetNP +AdjpNp +V2CL +Conj2VP +215212 DetNP +NPofNP +DetNP +PrepNp +DetNP +215218 Conj-CL +aCLaCL +215221 ADV-V-ADV +AdjpNp +V-ADV +PrepNp +Np-Appos +DetNP +DetCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +V-O +S-V-ADV +NpaNp +215238 PrepNp +DetNP +NPofNP +215242 CLaCL +V-S +DetNP +NPofNP +DetNP +215248 aCLaCL +215250 S-VC-P +PrepNp +DetAdj +215254 S-P +PrepNp +DetNP +215258 Conj-CL +ClCl2 +sub-CL +V-S-ADV +NPofNP +DetNP +NpPp +aNpaNp +215268 PrepNp +DetNP +NPofNP +V-O +Conj2VP +215274 ClCl +ADV-V-ADV +V2CL +PrepNp +NpaNp +DetNP +Np-Appos +NPofNP +DetNP +NpaNp +215286 DetAdj +ADV-V +VerbBe +215290 Conj-CL +215292 AdjpNp +NP-CL +P-ADV +DetNP +PrepNp +P-ADV +PrepNp +NPofNP +NPofNP +S-ADV-V +215303 S-V-O +215305 DetNP +215307 S-ADV-V-ADV +CLaCL +V-O +215312 V2CL +V-O-ADV +DetCL +V2CL +AdjpNp +PrepNp +DetNP +NPofNP +215321 Conj-CL +CLaCL +V2CL +215325 V2CL +215327 Conj-CL +S-ADV-V-O-ADV +DetNP +V-O +O-V-S +DetNP +NPofNP +215335 S-ADV-V-ADV +DetNP +V-ADV +PrepNp +215340 aCLaCL +215342 CLaCL +V-O-O2 +DetNP +215346 ClCl +O-O2 +DetNP +sub-CL +S-VC-P +NPofNP +DetCL +V2CL +DetNP +215356 S-ADV-ADV-V-O +DetNP +NPofNP +Np-Appos +DetNP +DetCL +VC-P +PrepNp +DetNP +O-ADV-V +NpaNp +215368 PrepNp +DetNP +PrepNp +DetNP +V2CL +215374 Conj-CL +ADV-S-ADV-V-ADV-ADV +V2CL +Np-Appos +DetNP +NpaNp +215381 V-O +DetNP +NPofNP +PrepNp +DetNP +CLaCL +V2CL +215391 Np2CL +215393 S-P-VC-ADV +AdvpNp +AdjpNp +AdjpAdvp +V-O-ADV +ADV-V-ADV +PrepNp +Demo-NP +DetAdj +PrepNp +NP-CL +NP-CL +NpAdjp +V2CL +S-V-O +Conj4Np +DetNP +215411 DetNP +215413 DetNP +215415 All-NP +NpPp +PrepNp +S-ADV-V-O +PrepNp +DetNP +AdjpNp +V2CL +S-V-ADV +All-NP +DetNP +DetNP +NPofNP +215429 Conj-CL +ADV-O2-O-V-ADV +ClClCl +V2CL +CLaCL +ADV-IO-O-V +215436 O2CL +NpAdjp +V-ADV-O +NpaNp +215441 DetNP +NPofNP +215444 Conj-CL +ADV-ADV-V-O-ADV +O-V +DetNP +DetCL +ADV-V-IO +215451 Conj-CL +CLaCL +V-ADV-S +PrepNp +NpaNp +215458 ADV-V-ADV-ADV +CLaCL +V-O +DetNP +215463 V-O +DetNP +PrepNp +DetNP +V-O +S-V +215470 Conj-CL +ClCl2 +V-S-O +DetNP +ADV-V-ADV +V2CL +PrepNp +DetNP +215479 Conj-CL +ADV-V-ADV-ADV +DetAdv +PrepNp +DetNP +PrepNp +215486 Conj-CL +ADV-V-ADV-ADV +CLaCL +V-O +NP-Demo +DetNP +215493 V-O +Conj3Pp +PrepNp +DetNP +215498 PrepNp +215500 PrepNp +ClCl +V-O +DetNP +NPofNP +DetNP +V-O +CLaCL +V-ADV +DetNP +215511 that-VP +V-S +ADV-S-V-ADV +PrepNp +AdjpNp +PrepNp +DetNP +NPofNP +DetNP +215521 Conj-CL +ADV-ADV-V-O-IO +V-IO-ADV-O +PrepNp +V-ADV +PrepNp +DetNP +NP-CL +ADV-V +PrepNp +215532 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +DetNP +PrepNp +DetNP +215540 ADV-V-ADV +V-ADV-O +PrepNp +DetNP +PrepNp +215546 ADV-V-ADV +PrepNp +NP-CL +ADV-V-IO-ADV +BeVerb +DetNP +NPofNP +DetNP +PrepNp +DetNP +NP-CL +O-V +215559 Conj-CL +ADV-V-O +CLaCL +V2CL +215564 V-O +DetNP +CLaCL +O-V-S-ADV +DetNP +PrepNp +215571 that-VP +V-IO-O +DetNP +NPofNP +215576 Conj-CL +V-ADV-ADV +NpAdjp +AdvpAdjp +PrepNp +DetNP +215583 Conj-CL +215585 V-ADV +PrepNp +DetNP +DetNP +that-VP +ClCl2 +sub-CL +ADV-V-ADV +Np-Appos +DetNP +NPofNP +ADV-V-O +V2CL +215599 Conj-CL +215601 V-S-ADV-ADV +NpAdjp +NpaNp +215605 AdvpAdjp +NpaNp +DetNP +215609 DetNP +PrepNp +V-S-ADV-ADV-ADV +Conj3Np +215615 AdjpNp +NpPp +PrepNp +PrepNp +DetNP +NpaNp +215622 PrepNp +PrepNp +NP-Demo +DetNP +215627 Conj-CL +Conj-CL +CLaCL +S-ADV-V-ADV-ADV +V-ADV +PrepNp +DetNP +DetNP +aNpaNp +215638 V-O +DetNP +NPofNP +DetNP +215643 V-O-IO +NpAdjp +All-NP +DetNP +215648 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +PrepNp +Conj3Np +DetNP +215657 DetNP +215659 DetAdj +215661 V-O +O-S-V-ADV +DetNP +PrepNp +215666 Conj-CL +V-S-ADV +Np-Appos +NPofNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +V2CL +215677 that-VP +V-S +CLaCL +V-O +215682 V-O +V-O +DetNP +NPofNP +215687 Conj-CL +V-S-ADV +NpaNp +DetNP +215692 DetAdj +V-ADV +PrepNp +NPofNP +DetNP +215698 Conj-CL +215700 S-V +AdjpNp +V2CL +PrepNp +ClCl2 +ClCl +Np2CL +Np2CL +215709 that-VP +ADV-ADV-V-S-O +PrepNp +NpAdjp +PrepNp +DetNP +CLaCL +ADV-V-S-O +PrepNp +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +215725 V2CL +215727 Conj-CL +CLaCL +215730 Np-Appos +DetNP +V-O +DetNP +NPDetAdj +DetAdj +sub-CL +IO2CL +AdvpNp +215740 O-V-ADV-ADV +PrepNp +aNpaNp +215745 ADV-V-O +DetNP +DetNP +NPofNP +215750 Conj-CL +ADV-ADV-V-O-ADV +DetNP +215754 PrepNp +DetNP +NPofNP +DetNP +O-S-V +O-V +aNpaNp +215762 DetNP +NPofNP +215766 Conj-CL +V-O +ADV-V-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +PrepNp +ADV-S +PronNP +215778 Conj-CL +CLaCL +V-S +All-NP +DetNP +215784 V-O +S-V-O +NpaNp +215788 NP-CL +NpaNp +215791 O-V-S-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +215797 Conj-CL +ADV-V-S-ADV +PrepNp +DetCL +V-S +215803 ClCl2 +ClCl +Np2CL +Np2CL +V-O +215810 that-VP +ADV-S-V-ADV +DetNP +V-ADV-O-ADV +PrepNp +DetNP +NPofNP +215818 Conj-CL +215820 DetNP +NPofNP +DetNP +sub-CL +215825 ClCl2 +ClCl +CLaCL +ADV-V +PrepNp +215831 CLaCL +CLaCL +V-O +Np-Appos +DetNP +NPofNP +DetCL +V2CL +215840 O-V +NPofNP +DetCL +V2CL +215845 V-O +sub-CL +PtclCL +215849 V-S-O +DetNP +NPofNP +DetNP +DetNP +AdvpNp +All-NP +DetNP +NP-CL +ADV-V-S-ADV +PrepNp +DetNP +NPofNP +PrepNp +V-S +NpAdjp +V-O +NpAdjp +P-ADV +PrepNp +215870 Conj-CL +S-V-O +notCLbutCL2CL +V-O +NpAdjp +NpPp +PrepNp +DetNP +V-ADV +PrepNp +DetNP +V-IO-ADV +DetCL +V-O +Conj4Np +DetNP +NPofNP +DetNP +215889 DetNP +215892 DetNP +215894 Conj-CL +S-ADV-ADV-O-V-ADV +PrepNp +NpAdjp +PrepNp +DetCL +V-O +ADV-ADV-V +PrepNp +DetNP +PrepNp +All-NP +215907 ADV-V-ADV-ADV-S +NpaNp +DetNP +215911 DetAdj +PrepNp +All-NP +DetNP +ClCl +215917 V-O-ADV +PrepNp +PrepNp +PrepNp +DetNP +NpaNp +215924 O2CL +Np-Appos +NpaNp +Np-Appos +DetCL +VC-P +215931 NpAdjp +V-ADV +PrepNp +DetNP +215936 PrepNp +NPofNP +ClCl +S-IO +Np-Appos +NpaNp +DetNP +215944 DetAdj +Np-Appos +DetNP +PpNp2Np +PrepNp +DetNP +Conj3Np +215953 NpPp +PrepNp +V2CL +215957 ClCl2 +sub-CL +215960 that-VP +215962 NpPp +PrepNp +V-O +DetNP +NPofNP +IO-ADV-V +V-ADV-ADV-ADV-S +V-ADV +V-O +V-ADV-ADV +PrepNp +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +NpaNp +215980 NpAdjp +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +215992 Conj-CL +ClCl +V-O +NpaNp +215997 O2CL +AdvpNp +NpAdjp +ADV-V-O +PrepNp +DetNP +216004 Conj-CL +216006 NpaNp +DetNP +NPDetAdj +DetAdj +216011 O-V-IO-ADV +AdjpNp +AdjpAdjp +PrepNp +NP-CL +Demo-NP +DetNP +V-O +Conj4Np +216023 ADV-ADV-V +ADV-V-O +PrepNp +216027 V2CL +216029 Conj-CL +Conj-CL +CLaCL +S-ADV-V-ADV +V2CL +PrepNp +216036 ADV-V-O +V-O +DetNP +DetNP +216041 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +216047 CLaCL +S-ADV-ADV-V-O +aNpaNp +216052 S-P-VC +AdvpNp +PrepNp +NpAdjp +DetNP +216058 V2CL +216060 Conj-CL +ADV-V-ADV-ADV-ADV +V-ADV +PrepNp +PrepNp +DetNP +PrepNp +DetCL +V-O +216070 Conj-CL +S-V-ADV-ADV +NpaNp +216074 PrepNp +V-ADV-O +Conj2VP +216078 PrepNp +AdvpNp +NpAdjp +DetNP +NPofNP +DetNP +216085 Conj-CL +216087 PrepNp +AdjpNp +PrepNp +PtclCL +216092 V2CL +DetNP +PrepNp +NP-CL +NP-all +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +P-VC +216104 Conj-CL +S-V-O +V-O +AdvpNp +Np-Appos +DetNP +DetCL +VC-P +216113 Conj-CL +S-V-O +216116 Np2CL +DetCL +CLaCL +V-ADV-ADV +PrepNp +PrepNp +216123 ADV-V-ADV-ADV +PrepNp +DetNP +216127 Conj-CL +V-S-ADV +sub-CL +CLaCL +V-S-ADV +PrepNp +216134 S-ADV-V-ADV +DetNP +V-O +DetNP +PrepNp +216140 Conj-CL +CLaCL +S-ADV-V-ADV +V-O +V-IO-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +216151 V-ADV-ADV +NpaNp +DetNP +216155 V-O +DetNP +216158 Conj-CL +V-ADV +aPpaPp +216162 PrepNp +216164 PrepNp +216166 Conj-CL +216168 NP-CL +Np-Appos +NpAdjp +NpAdjp +ADV-P +NPofNP +NpaNp +NpAdjp +NpAdjp +216178 Np-Appos +S-V-ADV +PrepNp +DetNP +PpNp2Np +PrepNp +NpaNp +216187 CLaCL +V-S-O +DetNP +S-ADV-V +PrepNp +216194 V2CL +PrepNp +Np-Appos +DetAdj +DetCL +VC-P +PrepNp +NP-Demo +DetNP +sub-CL +216205 that-VP +P-S-VC +DetNP +NPofNP +216210 Conj-CL +ClCl2 +sub-CL +V-ADV +DetNP +V-IO-O +V-O +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +Np-Appos +DetNP +NpaNp +216226 NpPp +PrepNp +216229 Conj-CL +Conj-CL +CLaCL +S-V-ADV +DetNP +DetNP +216236 V-ADV-ADV +DetNP +PrepNp +216240 Conj-CL +V-ADV-ADV +DetNP +NpaNp +216245 AdjpNp +V-ADV-O +PrepNp +DetNP +AdjpNp +V-O-ADV +DetNP +PrepNp +DetNP +216255 Conj-CL +CLaCL +ADV-V-O +V-ADV +PrepNp +DetNP +ADV-V +PrepNp +DetNP +216265 ADV-V-O-S +DetNP +NPofNP +216269 Conj-CL +ADV-V-ADV +V-ADV +DetNP +PrepNp +216275 Conj-CL +216277 PrepNp +DetNP +S-V +Np-Appos +NpAdjp +BeVerb +Conj3VP +216285 V-O +216288 ADV-V-O +V-ADV +PrepNp +216292 Conj-CL +ClCl2 +sub-CL +O-V +DetNP +ADV-V-O-ADV +V-ADV +PrepNp +216301 that-VP +V-S-O +DetNP +S-V-O +216306 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +PrepNp +216313 ClCl +ADV-ADV +DetCL +V2CL +PrepNp +AdjpNp +ADV-ADV +PrepNp +NP-CL +S-VC-P +Np-Appos +AdjpNp +ofNPNP +DetNP +NPofNP +216329 Conj-CL +V-ADV-ADV +BeVerb +PrepNp +Demo-NP +DetNP +NpAdjp +216337 Conj-CL +CLaCL +ADV-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +PrepNp +NP-CL +O-V +P-S-VC +216350 ADV-V-IO +V2CL +DetNP +AdjpNp +V2CL +216356 Conj-CL +216358 Np-Appos +Np-Appos +NpAdjp +AdjpNp +ADV-P +NPofNP +NPofNP +V-O +DetNP +O-S-V-ADV +ofNPNP +DetNP +DetNP +V-O +DetCL +V-ADV +PrepNp +216376 Conj-CL +ClCl2 +sub-CL +CLaCL +V2CL +216382 S2CL +DetNP +NPofNP +V-ADV +216387 ClCl2 +sub-CL +V-O +S-P-ADV-VC +DetNP +ADV-V +V-ADV +PrepNp +DetNP +NPofNP +216398 Conj-CL +V-O +216401 Conj-CL +V-ADV-S +V-S-ADV +PrepNp +DetNP +216407 NpAdjp +NpAdjp +V-O +Np-Appos +S-O-V-IO-ADV +NpAdjp +DetNP +NPofNP +V2CL +216417 S-ADV-V-ADV +V-O +NpaNp +DetNP +216424 S-P-VC +Demo-NP +DetNP +NPofNP +Np-Appos +DetNP +DetNP +NPofNP +216433 Conj-CL +O-V-ADV +PrepNp +AdjpNp +216438 Conj-CL +216440 CLaCL +V2CL +216443 V-IO +DetNP +V-IO-O +ADV-V-ADV +PrepNp +NPofNP +Np-Appos +PrepNp +216452 Conj-CL +V-ADV +PronNP +DetNP +216457 Conj-CL +CLaCL +S-ADV-ADV-V-ADV-ADV +DetNP +NPofNP +216463 that-VP +V-S +DetNP +NPofNP +DetNP +NPofNP +V-O +NpaNp +DetNP +216473 DetNP +PrepNp +DetNP +PrepNp +DetNP +216480 V-O-IO +DetNP +CLaCL +S-V-O-ADV +Demo-NP +DetNP +ofNPNP +DetNP +P-VC +216490 V-O +NP-CL +S-ADV-V-ADV-ADV +O-V +Conj2VP +216496 P-VC +216498 Conj-CL +CLaCL +V-S-ADV +DetNP +PrepNp +216504 CLaCL +S-ADV-V-O +DetNP +V-O +ofNPNP +DetNP +V2CL +216512 ADV-V-ADV-ADV +V-IO-O +AdjpNp +PrepNp +216517 DetNP +ADV-V-O +CLaCL +S-ADV-V-O-ADV +O-V +NpAdjp +PrepNp +DetNP +AdjpNp +216527 O-V-ADV +DetNP +NPofNP +PrepNp +DetNP +216533 Conj-CL +CLaCL +ADV-S-ADV-V-O +PrepNp +DetNP +NpaNp +216540 V2CL +DetNP +216543 V-O-S +DetNP +216546 Conj-CL +CLaCL +ADV-S-V-ADV +NpAdjp +sub-CL +V-S +DetNP +NPofNP +DetNP +216556 CLaCL +V-ADV-S +NP-all +DetNP +216561 S-V +ofNPNP +DetNP +216565 Conj-CL +S-ADV-ADV-V-O-ADV +DetNP +CLaCL +P-VC +216571 V-O +V-S +DetNP +NPofNP +DetNP +V-O +DetNP +O-V +V-O +V-S +DetNP +216583 Conj-CL +V-S-ADV-ADV +AdjpNp +216587 ClCl +O-V-IO +AdjpNp +sub-CL +S-VC-P +216593 Conj-CL +CLaCL +CLaCL +ADV-V +V-O +216599 ADV-V-ADV +P-VC +NpaNp +DetNP +216606 V-O-ADV +216608 Np2CL +O-S-V +sub-CL +V2CL +216613 Conj-CL +216615 CLaCL +V-ADV +PrepNp +Np-Appos +DetNP +216621 V-S +NpaNp +216624 DetNP +NPofNP +216627 Conj-CL +V-IO-O-ADV +DetNP +NPofNP +DetNP +PrepNp +All-NP +NpPp +PrepNp +DetNP +NPofNP +216639 Conj-CL +Conj4CL +ADV-V-ADV +V-O-ADV +PrepNp +Demo-NP +DetNP +NPofNP +DetNP +PrepNp +DetNP +216651 V-S-ADV +NpaNp +216654 NpAdjp +NPofNP +216657 ADV-V-O +V-O-ADV +PrepNp +DetNP +216662 V-ADV-ADV +V-O +DetNP +216666 Conj-CL +ClCl2 +S-V +V-S-O-ADV +DetNP +DetNP +216673 V-O +NP-Demo +DetNP +216677 Conj-CL +216679 DetNP +NP-Demo +DetNP +PrepNp +DetNP +that-VP +ClCl +216687 DetNP +sub-CL +V2CL +Conj-CL +ADV-ADV-V-ADV +V2CL +PrepNp +216695 Conj-CL +216697 DetNP +PrepNp +ClCl +CLaCL +ADV-ADV-V-ADV +V-O-ADV-ADV +P-VC +NpAdjp +PrepNp +216707 ADV-ADV-O-V +sub-CL +CLaCL +ADV2CL +216712 ADV-S-O-V +V2CL +216715 Conj-CL +V-IO-S-O +DetNP +DetNP +NP-Demo +DetNP +216722 Conj-CL +CLaCL +CLaCL +V-ADV +216727 that-VP +P-VC +216730 ADV-V-O +V2CL +216733 ADV-V-O +V2CL +V-ADV +PrepNp +DetNP +216739 Conj-CL +CLaCL +ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +DetNP +216748 CLaCL +ADV-V-O +V2CL +DetNP +216753 V2CL +216755 Conj-CL +ADV-V-ADV +V-ADV +NpaNp +DetNP +216761 DetNP +PrepNp +NP-CL +P-VC-S +NPofNP +DetAdj +216768 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +DetCL +V-ADV +DetNP +PrepNp +216777 ADV-V-ADV-ADV-ADV +PrepNp +NpAdjp +PrepNp +DetNP +216783 Conj2VP +216785 CLaCL +that-VP +V-S +CLaCL +S-V +DetNP +216792 V-ADV +PrepNp +216795 that-VP +S-VC-P +NP-CL +Np-Appos +DetNP +DetNP +O-S-V-IO +216803 Conj-CL +ClCl +CLaCL +S-V +NpPp +PrepNp +216810 V-IO +NpaNp +DetNP +216814 DetNP +S2CL +aNpaNp +216818 ofNPNP +DetNP +AdjpNp +V2CL +NpAdjp +216824 ofNPNP +NPDetAdj +DetAdj +AdvpAdjp +216829 Conj-CL +CLaCL +S-ADV-V-O +DetAdj +CLaCL +V2CL +216836 CLaCL +V-O +ofNPNP +DetAdj +NpAdjp +NpAdjp +216843 V2CL +DetNP +216846 ADV-V-O +V-ADV +DetNP +NPofNP +O-V-ADV +PrepNp +DetNP +216854 Conj-CL +ADV-V-O-ADV-ADV +ADV-V-O +NpaNp +216859 AdjpNp +PrepNp +DetNP +216863 that-VP +216865 Np2CL +DetCL +O-V +DetNP +O-V-S +216871 Conj-CL +S-ADV-V-ADV +NP-all +PrepNp +DetNP +NPofNP +O-V +P-VC-S +NpAdjp +216881 Conj-CL +CLaCL +V-O-ADV +NpaNp +DetNP +216887 DetNP +V-O +216890 ADV-V-O +V-O-ADV +DetAdj +PrepNp +NpaNp +DetNP +216897 DetAdj +216899 Conj-CL +216901 DetNP +PrepNp +aNpaNp +216905 DetNP +216907 DetNP +PrepNp +S-ADV-ADV-V +V2CL +PrepNp +DetNP +NPofNP +DetAdj +216916 Conj-CL +216918 S-VC-P-ADV +NpPp +PrepNp +DetNP +PrepNp +All-NP +216925 NpPp +PrepNp +DetNP +PtclCL +VC-S-P +216931 Conj-CL +Conj-CL +CLaCL +S-V +NpPp +PrepNp +216938 S2CL +ofNPNP +NpaNp +DetNP +NPDetAdj +ofNPNP +DetAdj +216946 AdvpAdjp +216948 Conj-CL +ClCl2 +sub-CL +216952 V-S +DetNP +PpNp2Np +PrepNp +DetNP +ADV-V-ADV-S +AdvPp +PrepNp +DetNP +PrepNp +DetNP +DetNP +NPofNP +DetNP +V-ADV-ADV +V-O +Conj2VP +216970 DetNP +216972 Conj-CL +ADV-ADV-O-V-S-ADV +DetNP +DetNP +V-ADV +PrepNp +PrepNp +DetNP +216981 Conj-CL +V-S-ADV +aNpaNp +216985 DetNP +216987 DetNP +216989 Conj-CL +CLaCL +S-O-V-ADV +DetCL +V2CL +DetNP +PrepNp +216997 ADV-V +216999 NpPp +PrepNp +NpaNp +DetNP +217004 DetNP +that-VP +ADV-V-ADV +AdvpAdjp +PrepNp +217010 Conj-CL +ClCl2 +ADV-V-O-S +PrepNp +DetNP +DetNP +ClCl +V-S-ADV +DetNP +NPofNP +PrepNp +V-O +P-VC-S +DetNP +217025 Conj-CL +aCLaCL +217028 CLaCL +V-ADV-ADV +PrepNp +DetNP +NpaNp +DetAdj +217035 DetCL +V2CL +217038 ADV-ADV-ADV +PrepNp +DetNP +PrepNp +All-NP +PrepNp +DetCL +V2CL +217047 Conj3CL +S-V-ADV +NPofNP +aNpaNp +217052 DetNP +217054 AdjpNp +217056 ClCl +CLaCL +217059 PtclCL +V-S-O +NP-Demo +DetAdj +O-V +217065 ClCl +S2CL +V-O +P-VC +ofNPNP +AdjpNp +sub-CL +O-V +NpaNp +DetNP +217076 DetNP +217078 ADV-ADV-V-ADV +V-O +PrepNp +DetNP +2Np +217084 ClCl +217086 V-O +P-S +Np-Appos +NP-Demo +DetAdj +DetNP +AdjpNp +ADV-V +PrepNp +sub-CL +O-V-ADV +AdjpNp +V2CL +PrepNp +DetNP +NPofNP +Conj-CL +V-O +V-O +O-V-S +P-VC +217108 Conj-CL +CLaCL +S-ADV-V +NpaNp +NP-all +217114 DetNP +AdjpNp +V2CL +PrepNp +NpAdjp +217120 CLaCL +V-O +217123 V-O +NpAdjp +217126 Conj-CL +217128 V2CL +PrepNp +NPofNP +DetNP +NPofNP +217134 Np2CL +NpAdjp +ADV-P-S +PrepNp +AdvpAdjp +217140 Conj-CL +ADV-V-O +CLaCL +V2CL +217145 V-O +DetNP +NPofNP +AdvpNp +NP-CL +ADV-V-S +PrepNp +IO2CL +AdjpNp +217155 Conj-CL +217157 O-ADV-V +V2CL +217161 Np2CL +Np-Appos +DetNP +DetCL +V-O +NpaNp +DetNP +217169 All-NP +NpPp +PrepNp +S-ADV-ADV-ADV-V +P-VC +ofNPNP +NpaNp +217177 PrepNp +AdjpNp +217180 ADV-V-ADV-S-ADV +PrepNp +NpAdjp +V-O +V-IO-O +Conj3Np +217188 DetAdj +217190 Conj-CL +217192 PrepNp +All-NP +NPofNP +V-ADV +PrepNp +All-NP +NPofNP +DetNP +V-O +NpaNp +AdjpNp +V2CL +217205 DetNP +NPofNP +DetNP +NPofNP +V-O +DetNP +PtclCL +PtclCL +PtclCL +CLaCL +V-O +217217 V-ADV +PtclCL +ADV-P-ADV-VC +2Advp_h2 +PrepNp +NPofNP +NpAdjp +217225 Conj-CL +ClCl +ADV-V +PrepNp +Conj3VP +217232 sub-CL +217234 AdvpNp +NPofNP +DetNP +PpNp2Np +PrepNp +Conj-CL +P-VC +ofNPNP +AdvpNp +217244 Conj-CL +ADV-ADV-V-O +VC-P +NPofNP +DetNP +V-O +ADV-S-VC-P +Np-Appos +Conj3Np +217255 NPofNP +NPofNP +NpaNp +217259 DetAdj +217261 Conj-CL +Conj-CL +217264 O-V +DetNP +NPofNP +DetNP +DetNP +DetAdv +DetNP +S-V +NpAdvp +sub-CL +V-O +NP-CL +ADV-V-O-ADV +PrepNp +V-O-ADV-ADV +DetNP +PrepNp +PrepNp +NP-CL +O-V +O-V-IO-ADV +V-O-ADV +PrepNp +217288 Conj-CL +217290 V-O +NPofNP +217293 S-V +217296 V-O-ADV-ADV +PrepNp +2Advp_h1 +217300 ADV-S-V-ADV +DetNP +PrepNp +NPofNP +217305 Conj-CL +217307 AdjpNp +V-IO +P-S +PrepNp +aNpaNpaNp +217313 Np-Appos +DetNP +217316 NpAdjp +ADV-P +217319 NpPp +PrepNp +217322 ADV-ADV-V-ADV +PrepNp +V-ADV +PrepNp +DetNP +PrepNp +217329 Conj-CL +ClCl +Conj3CL +ADV-V-ADV +V-O +NpAdjp +NpAdjp +NpAdjp +AdjpNp +ADV-P +P-ADV +DetNP +ADV-V-ADV-ADV-ADV +PrepNp +DetNP +AdvpNp +Np-Appos +NPofNP +PrepNp +DetCL +V-S-O +V-S-ADV +All-NP +DetAdj +PrepNp +DetNP +217356 ADV-V-ADV +PrepNp +DetCL +P-VC +PrepNp +217362 V2CL +sub-CL +VC-P-ADV +DetNP +217367 Conj-CL +217369 PrepNp +DetNP +PrepNp +All-NP +V-O +aNpaNp +217378 Conj-CL +ClCl2 +sub-CL +V-ADV-S +PrepNp +DetNP +aNpaNp +217386 DetNP +217388 DetNP +V-ADV-S-ADV +DetNP +DetNP +V-IO-O +DetAdj +VC-S-P +DetNP +217397 Conj-CL +ClCl2 +CLaCL +V-S +217402 V2CL +217404 V-O +DetNP +PrepNp +ClCl +S-P +DetNP +NPofNP +PrepNp +DetNP +NPofNP +P-S +ADV-ADV-V +PrepNp +DetNP +PrepNp +DetNP +217421 Conj-CL +ADV-V-ADV +V-ADV +PrepNp +NPofNP +NP-CL +NpAdjp +NpAdjp +ADV-P +Np-Appos +V-O +DetNP +S-V-ADV +ofNPNP +DetNP +BeVerb +DetNP +217439 Conj-CL +CLaCL +S-V-O-ADV +Np-Appos +DetNP +DetNP +PrepNp +All-NP +DetNP +NPofNP +217450 CLaCL +S-ADV-V +NPofNP +DetAdj +V2CL +217456 V2CL +217458 Conj-CL +217460 DetNP +PrepNp +PrepNp +DetNP +CLaCL +notCLbutCL2CL +V2CL +V2CL +217470 sub-CL +CLaCL +S-VC-P +PrepNp +217476 DetCL +V-O +sub-CL +S-VC-P-ADV +NpAdjp +PrepNp +NP-Demo +DetNP +217485 Conj-CL +V-ADV-ADV +NpaNp +217489 NpNump +V-ADV-O +PrepNp +DetNP +NPofNP +DetNP +217496 Conj-CL +ClCl2 +S-VC-P +NPofNP +DetNP +CLaCL +V-ADV-S-O +DetAdj +DetNP +217506 V-O-ADV-ADV +PrepNp +DetNP +217510 that-VP +ADV-V-S-O-ADV +PrepNp +DetNP +DetNP +V-O +DetNP +217518 Conj-CL +217520 V-S-O +DetNP +V-O +DetNP +DetNP +PrepNp +DetAdj +aCLaCL +217529 ClCl2 +sub-CL +VC-P +NpaNp +NpAdjp +217535 NpAdjp +217537 Np2CL +intjNP +ADV-V-O +PrepNp +217542 ClCl +ClCl2 +sub-CL +VC-P +NpPp +PrepNp +Conj3Np +217551 Np-Appos +NpPp +PrepNp +V-S +ADV-V-S-O +P-VC +NPofNP +217559 Conj-CL +V-O-ADV +PrepNp +DetNP +217564 Conj-CL +S-ADV-V-ADV +V-O +Np-Appos +DetNP +PrepNp +DetNP +217572 Conj-CL +S-ADV-V +NPofNP +DetNP +217577 Conj-CL +ClCl +CLaCL +S-ADV-ADV-V-ADV +DetNP +ADV-V-ADV +NpAdjp +O-V +DetNP +PrepNp +DetNP +217589 P-S +PrepNp +NpaNp +217593 ClCl +V-ADV-O +PrepNp +DetNP +sub-CL +V-O +217600 Conj-CL +ClCl +V-ADV +PrepNp +CLaCL +O-V-ADV +217607 S-ADV-V-ADV +V-ADV +PrepNp +DetNP +DetAdj +217613 Conj-CL +217615 V-S-O +ADV-V +PrepNp +AdjpNp +V2CL +ADV-V-ADV +CLaCL +V2CL +217625 ClCl +ADV-V-ADV +PrepNp +S-V +DetNP +PrepNp +DetNP +217633 Conj-CL +CLaCL +ADV-ADV-V-ADV +V-ADV +PrepNp +CLaCL +V2CL +217641 V-O +DetNP +PrepNp +217645 ADV-V-ADV-ADV +V-O +NpAdjp +V-ADV-ADV +DetNP +NpaNp +AdjpNp +217653 V-O +All-NP +DetNP +217657 Conj-CL +S-V-ADV +Np-Appos +Np-Appos +NpAdjp +NpAdjp +NpAdjp +P-ADV +P-ADV +DetNP +NpAdjp +P-VC-ADV +PrepNp +DetNP +PrepNp +217673 CLaCL +S-V-O +BeVerb +DetNP +NPofNP +DetNP +217680 ADV-V-ADV-O-ADV +V-ADV +DetNP +Conj2VP +217685 NpPp +PrepNp +DetNP +V-ADV-O +DetNP +NPofNP +217692 Conj-CL +CLaCL +S-V-O +V-ADV +PrepNp +DetNP +217699 CLaCL +ADV-S-V-O +V-O +NpaNp +217705 ADV-IO-V-O +DetNP +NPofNP +DetNP +217710 Conj-CL +ClCl +ClCl2 +V-S-O +V-ADV +PrepNp +DetNP +ADV-S-V-IO-O +V2CL +DetNP +DetNP +V-O +NP-CL +S-ADV-V-ADV-ADV +V2CL +DetCL +V-ADV +PrepNp +DetNP +sub-CL +ADV-O-V-ADV-ADV +DetAdj +V-ADV-O +PrepNp +DetNP +VC-S-P +DetNP +217738 Conj-CL +CLaCL +V-ADV-S +PrepNp +DetCL +S-VC-P +DetNP +PrepNp +CLaCL +S-ADV-V-ADV +V-ADV +DetNP +AdjpNp +PrepNp +217753 V-O +AdjpNp +217757 PrepNp +PtclCL +O-V-ADV +NpAdjp +V2CL +217763 Conj-CL +ClCl +S-ADV +PrepNp +Conj-CL +217769 PtclCL +S-V +NpAdjp +217773 Conj-CL +217775 Conj-CL +ADV-V +PrepNp +217779 Conj-CL +217781 ADV2CL +PrepNp +DetNP +ofNPNP +217786 Conj-CL +217788 S-V-O-ADV +NPofNP +217791 DetNP +that-VP +217794 PrepNp +DetCL +V-ADV +PrepNp +S-VC-P +ADV2CL +PrepNp +DetNP +217803 Conj-CL +ADV-V-ADV +V2CL +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +217812 Conj-CL +ClCl2 +V-IO-S-O +DetNP +CLaCL +V-S-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +217823 CLaCL +V-ADV +217826 V2CL +217828 Conj-CL +VC-S-P +DetNP +All-NP +AdvpNp +217834 Conj-CL +ADV-V-ADV-ADV +V-ADV +PrepNp +DetNP +PrepNp +NpAdjp +V-ADV +Conj2VP +217844 PrepNp +DetNP +NPofNP +DetNP +217849 Conj-CL +ClCl2 +sub-CL +S-V-ADV +Conj2VP +217855 V-O-ADV +DetNP +PrepNp +DetNP +ADV-V-O-ADV +V-ADV +PrepNp +DetNP +ADV-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +217869 Conj-CL +S-V-ADV-ADV +PrepNp +NpNump +sub-CL +217875 All-NP +DetCL +V-ADV +DetNP +DetNP +NPofNP +DetNP +S2CL +aNpaNp +217887 Conj-CL +O-S-V-ADV-ADV +Np-Appos +AdvpNp +DetCL +V2CL +DetNP +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +ADV-V-ADV-S +AdvPp +PrepNp +DetCL +V2CL +PrepNp +DetNP +NPofNP +NpaNp +217910 CLaCL +V-ADV-S +PrepNp +DetNP +217915 S-V +DetNP +NPDetAdj +DetAdj +217920 Conj-CL +V-S-O-ADV +NPofNP +AdvpNp +DetNP +AdjpNp +V2CL +AdjpNp +V-ADV-O +PrepNp +DetCL +V-O +DetNP +NPDetAdj +DetAdj +DetNP +NPofNP +Np-Appos +DetNP +217940 V-O-ADV +DetNP +NP-CL +O-S-V +217945 Conj-CL +S-O-V +ofNPNP +Np-Appos +AdjpNp +AdjpNp +NumpNP +BeVerb +217954 Conj-CL +217956 V2CL +DetNP +NPDetAdj +DetAdj +CLaCL +CLaCL +O-V +DetNP +217965 O-V +DetNP +217968 S-P-VC +217970 Conj-CL +ADV-S-ADV-V-ADV-ADV +V-ADV +PrepNp +NP-CL +DetNP +P-VC-S +PrepNp +DetNP +NPDetAdj +DetAdj +V-ADV +PrepNp +sub-CL +ADV-V-ADV +AdjpaAdjp +217987 V2CL +PrepNp +NP-Demo +DetNP +217992 Conj-CL +CLaCL +S-VC-P-ADV +All-NP +Np-Appos +aNpaNp +218000 DetCL +V-ADV +DetNP +218004 CLaCL +V-S-ADV +PrepNp +All-NP +218009 V-S +DetNP +NPofNP +Np-Appos +DetNP +218015 Conj-CL +S-V-ADV +NPofNP +DetCL +V2CL +V-O +Conj2VP +218023 DetNP +NPofNP +218026 Conj-CL +S-ADV-V-ADV +NPofNP +DetCL +O-V +DetNP +V-O +DetNP +PrepNp +218036 Conj-CL +CLaCL +V-O +DetNP +NPofNP +218042 V-O +ofNPNP +NpNump +218046 ADV-ADV-S-V +PrepNp +ofNPNP +DetNP +DetNP +Conj2VP +218054 Conj-CL +ClCl2 +sub-CL +V-S +V-S-ADV-O-ADV +DetNP +PrepNp +DetNP +ADV-V-ADV +V-ADV +DetNP +NpaNp +218067 PrepNp +218069 that-VP +ADV-V-S +PrepNp +DetCL +VC-S-P +S-O-V +AdvpNp +218077 Conj-CL +ADV-S-V-ADV-ADV +V-ADV-O +PrepNp +DetNP +Np-Appos +NPofNP +DetCL +V-O +NpaNp +218088 PrepNp +DetNP +218091 Conj-CL +V-ADV-S +PrepNp +NP-Demo +DetNP +NpPp +NpAdjp +AdvpAdjp +PrepNp +DetNP +218102 Conj-CL +218104 Np-Appos +NpAdjp +P-ADV +V-O +NPofNP +NpAdjp +DetNP +AdjpNp +AdvpAdjp +218114 ADV-V +O-V +NpaNp +218118 DetNP +PpNp2Np +PrepNp +DetNP +Np2CL +218124 that-VP +P-S-VC +PrepNp +Demo-NP +DetNP +DetNP +NpAdvp +218133 Conj2VP +218135 that-VP +ADV-S-ADV-V-O-ADV +notNPbutNP +AdjpNp +AdvpNp +All-NP +DetNP +NP-Demo +DetNP +V2CL +AdjpNp +218147 that-VP +ADV-VC-P-S +DetCL +ADV-V +PrepNp +218153 Conj-CL +notCLbutCL2CL +ADV-S-V-ADV-ADV +S-ADV-V +DetNP +PrepNp +CLaCL +S-ADV-V +AdvpNp +DetNP +ofNPNP +Np-Appos +DetNP +AdjpNp +PrepNp +218169 V-O-S +ADV-V-ADV +DetNP +NPofNP +O-S-V +NpaNp +All-NP +DetNP +218178 DetNP +218180 Conj-CL +ADV-V-ADV +CLaCL +V2CL +218185 VC-P-ADV +218187 P-S +DetNP +NPofNP +218191 Conj-CL +CLaCL +V-S-ADV +DetNP +DetNP +218197 V-ADV-ADV-ADV +PrepNp +DetNP +V-O +Np-Appos +Np-Appos +NpaNp +218205 NPofNP +218207 Conj-CL +218209 S-V-O +V-ADV +PrepNp +DetNP +DetNP +218215 Conj-CL +S-ADV-V-O +Np-Appos +NPofNP +AdvpNp +DetNP +VC-ADV-P +V-ADV +PrepNp +ADV-V-O-ADV +PrepNp +DetNP +218228 Conj-CL +Conj-CL +218231 AdjpNp +sub-CL +CLaCL +S-V +DetNP +BeVerb +218238 S-ADV-V-O +DetAdj +ADV-V +NP-Prep +218243 Conj-CL +ClCl +S-V-O +PrepNp +DetNP +V-O-S +DetAdj +218251 Conj-CL +S-ADV-V-O +DetNP +V-O +DetNP +V-IO +DetNP +218259 Conj-CL +ADV-S-V-ADV-ADV-ADV +218262 that-VP +P-VC +NpAdjp +PrepNp +AdvPp +PrepNp +NpNump +ClCl +V2CL +P-S +DetNP +NPofNP +218275 Conj-CL +218277 DetNP +V-O +DetNP +218281 Np2CL +NpAdjp +P-VC-S +NPofNP +S-ADV-V-O +S-VC-P +DetNP +ofNPNP +NPofNP +NpaNp +DetNP +AdjpNp +218294 DetAdj +218296 Conj-CL +218298 P-VC-S +VerbBe +CLaCL +S-P-VC +V2CL +218304 O-V +AdjpNp +218307 Conj-CL +V-O +Np-Appos +NP-Demo +DetNP +aNpaNp +218315 V-O +DetNP +NPofNP +218319 Conj-CL +aCLaCL +218322 ClCl2 +sub-CL +S-V-ADV-O +NpaNp +218327 DetNP +PpNp2Np +PrepNp +PrepNp +ClCl +CLaCL +S-V +218335 S-V +V-O +218338 ClCl2 +sub-CL +O-ADV-V +ADV-V +PrepNp +DetNP +AdjpNp +218346 Conj-CL +218348 V-ADV-ADV +PrepNp +DetNP +S-V +AdjpNp +ADV-ADV-V-O +PrepNp +V-O-ADV +PrepNp +NP-Demo +DetNP +218360 Conj-CL +ADV-V-O +O-V +DetNP +218365 Conj-CL +ADV-S-ADV-ADV-V-ADV +PrepNp +DetCL +V-S +DetNP +DetNP +CLaCL +V-O +DetNP +218376 V2CL +V2CL +V-ADV +PrepNp +218381 Conj-CL +CLaCL +ADV-V-ADV +CLaCL +V-ADV +NP-Demo +DetNP +218389 V-O-ADV +NpAdjp +PrepNp +DetNP +218394 ClCl +V-ADV +NpAdjp +ClCl2 +218399 PrepNp +DetAdj +V-O +V-ADV +PrepNp +DetNP +VC-P +Np-Appos +DetCL +V-ADV +PrepNp +218411 Conj-CL +V-ADV-S +NpaNp +NpaNp +NpAdjp +NPofNP +218418 ofNPNP +NpaNp +218422 NpaNp +NpaNp +NpAdjp +218427 Np-Appos +NpaNp +218431 Conj-CL +S-ADV-V-O-ADV +V2CL +PrepNp +218436 Conj-CL +CLaCL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +DetAdj +PrepNp +218445 ClCl +V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +PrepNp +NpNump +ADV-V-ADV +NpNump +218455 Conj-CL +ClCl2 +ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +V-O +CLaCL +S-V-ADV-ADV +DetNP +V-O +V-ADV +DetAdv +218470 V-O-ADV +DetNP +PrepNp +218474 Conj-CL +VC-S-P +NpAdjp +PrepNp +DetNP +NP-CL +ADV-V +BeVerb +218483 Conj-CL +CLaCL +S-ADV-ADV-ADV-V-ADV-ADV +NpAdjp +AdjpNp +ADV-P +V-ADV +PrepNp +DetNP +ClCl +V-ADV +NpAdjp +V-S-ADV +DetNP +PrepNp +V-ADV +PrepNp +DetNP +PrepNp +DetNP +218504 V-ADV +218506 Conj-CL +CLaCL +ADV-S-V-ADV +V2CL +DetNP +218513 V2CL +ClCl +ADV-V +sub-CL +S-P-VC +DetNP +NPofNP +PrepNp +218522 Conj-CL +ADV-ADV-V +Conj4CL +V2CL +218527 V-O +DetNP +218530 V2CL +218532 ADV-V-ADV +PrepNp +PrepNp +218536 Conj-CL +CLaCL +V-O-O2 +DetNP +V2CL +218542 V-ADV +2Advp_h2 +218545 Conj-CL +ClCl +S-ADV-V-ADV-ADV +V-ADV +PrepNp +DetNP +PrepNp +DetNP +ADV-V-O +V-O +DetNP +sub-CL +ADV-V-ADV +VerbBe +V-S-O +V2CL +218562 Conj-CL +218564 sub-CL +V-ADV-ADV +PrepNp +DetNP +ClCl +ADV-V-ADV +V-O +PrepNp +ADV-ADV-V-ADV +ADV-V +DetCL +V2CL +PrepNp +218578 ADV-V-ADV +DetAdj +PrepNp +218582 ADV-V-ADV +DetCL +V2CL +PrepNp +218587 Conj-CL +ClCl +218590 DetNP +V-ADV +DetNP +sub-CL +ADV-V-ADV-S +V-ADV +PrepNp +DetNP +sub-CL +ClCl +V2CL +sub-CL +P-VC-ADV-S +ADV-VC-P +DetNP +NPofNP +DetNP +PrepNp +218609 Conj-CL +ADV-V-O +ADV-V-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +218619 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +218625 S-V-O +ADV-ADV-P-ADV-VC-ADV +PrepNp +NP-CL +AdjpNp +ADV-V-ADV +PrepNp +PrepNp +DetNP +PrepNp +DetNP +All-NP +V-O-ADV +DetNP +PrepNp +Conj3Np +All-NP +218644 Np-Appos +DetCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetAdj +218652 sub-CL +V-O-ADV-ADV +NPofNP +DetCL +V2CL +DetCL +AdvpCL +CLaCL +V-IO +218662 V-O-ADV +ADVaADV +218665 PrepNp +V-IO-O +aNpaNp +218670 DetNP +NpaNp +PpNp2Np +PrepNp +218675 NpPp +PrepNp +Np-Appos +DetNP +NPofNP +218681 Conj-CL +ClCl2 +ADV2CL +218685 V-ADV +DetNP +PrepNp +218689 DetCL +ADV-V-O +PrepNp +sub-CL +that-VP +S-ADV-V-IO-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +218700 that-VP +S-O-V +NpaNp +218705 Conj-CL +ADV-V-O-O2-ADV +AdjpNp +DetNP +AdjpAdvp +sub-CL +ClCl +V-O +NpaNp +DetNP +NPofNP +218717 DetNP +NP-CL +O-V-ADV +PrepNp +Np-Appos +DetNP +V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +218730 Conj-CL +ClCl2 +ADV2CL +218734 that-VP +ADV-V-O-S +DetNP +NPofNP +NP-CL +NP-all +ADV-V-ADV +PrepNp +V-O +DetNP +218745 Conj-CL +ClCl +218748 PrepNp +DetNP +AdvpNp +that-VP +P-VC-ADV +PrepNp +DetNP +NPofNP +sub-CL +ADV-V-ADV +DetCL +ADV-V-O-IO +All-NP +DetNP +NPofNP +DetNP +218765 V-O-ADV +NpaNp +218768 All-NP +DetNP +NP-CL +ADV-O-S-V-O2 +PrepNp +DetNP +NPDetAdj +DetAdj +V-O +DetNP +NP-CL +NPofNP +DetNP +O-V-ADV +PrepNp +DetNP +NPofNP +DetAdj +218788 that-VP +CLaCL +V-ADV-S-ADV-ADV +PrepNp +DetNP +NPofNP +NpAdjp +PrepNp +ADV-V-O +DetNP +218799 ADV-V-S-ADV-ADV +PrepNp +NpPron +V-O +V2CL +DetCL +V-O-ADV +DetNP +PrepNp +218809 Conj-CL +V-ADV +218812 V2CL +ADV-ADV-ADV-V-O +NpaNp +218816 ADV-V-O +PrepNp +NpAdjp +218820 Conj-CL +ADV-V-O-IO +DetAdv +NpaNp +DetNP +218826 Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetCL +V-O +CLaCL +V2CL +218836 V-O-ADV +DetNP +PrepNp +NP-all +DetCL +V2CL +218843 O-V +NPofNP +Conj3Np +218850 that-VP +O-V-S +NpaNp +DetNP +NPofNP +218856 DetCL +VC-P +PrepNp +NP-Demo +DetNP +218863 that-VP +ADV-V-S +ADV-V +CLaCL +V-O +DetCL +V2CL +218872 DetNP +NPofNP +Np-Appos +DetNP +that-VP +218878 CLaCL +P-VC-ADV-S +V2CL +218882 V2CL +218884 Conj-CL +ADV-ADV-ADV-V +O-V +V-O +DetNP +NPofNP +PrepNp +All-NP +218893 Conj-CL +CLaCL +P-VC-S +NPofNP +218898 ADV-V-O-ADV +V-ADV +PrepNp +DetNP +NPofNP +DetNP +V-ADV-ADV +PrepNp +DetNP +NP-CL +218909 ADV-V +ADV-V-O +O-V +DetNP +NPofNP +218915 Conj-CL +V-O-ADV +PrepNp +DetNP +218920 Conj-CL +218922 sub-CL +V-S +V-S-ADV +V-ADV +PrepNp +ADV-V-ADV +V2CL +PrepNp +DetNP +218932 ClCl +ADV-ADV +DetAdv +PrepNp +DetNP +ADV-ADV +PrepNp +218940 Conj-CL +ADV-ADV-V +V-O +NpAdjp +V-ADV +PrepNp +V2CL +218948 Conj-CL +CLaCL +ADV-V-ADV +CLaCL +V-O +DetNP +218955 V-O-ADV +PrepNp +218958 ClCl +V-ADV +PrepNp +sub-CL +ADV-S-V-O +DetNP +BeVerb +DetNP +218967 Conj-CL +218969 ADV-V-ADV-ADV +V-O +DetNP +NpNump +DetNP +PrepNp +DetNP +ADV-V-ADV +PrepNp +218979 Conj-CL +ClCl2 +sub-CL +V-S +V-S-O +DetNP +CLaCL +CLaCL +ADV-V-ADV +V2CL +V-O-S-ADV-ADV +PrepNp +NpaNp +218993 PrepNp +PrepNp +DetNP +218997 ADV-V-O +V-O-ADV-ADV +DetNP +PrepNp +DetNP +V2CL +219004 CLaCL +V-ADV +PrepNp +DetNP +219009 S-V-ADV +PrepNp +DetAdj +219013 Conj-CL +CLaCL +S-ADV-V-ADV +O-V-ADV +DetNP +PrepNp +PrepNp +219021 ADV-V-ADV-ADV +V-O +DetNP +NpAdjp +PrepNp +219027 Conj-CL +CLaCL +ADV-ADV-V-ADV +DetAdv +V2CL +PrepNp +219034 ADV-V-ADV +V-ADV +PrepNp +DetNP +NPofNP +NpAdjp +Np-Appos +DetNP +VC-P +PrepNp +DetNump +PrepNp +219047 Conj-CL +P-VC-S +Np-Appos +Np-Appos +NpAdjp +V2CL +219054 Conj-CL +ClCl2 +V-ADV +NpAdjp +CLaCL +V-S +Np-Appos +NpPp +PrepNp +DetNP +NpAdjp +ADV-P +219068 CLaCL +V-ADV +PrepNp +219072 ADV-V-O +V-O +DetNP +NPofNP +DetNP +ofNPNP +NpaNp +DetNP +219081 DetNP +219083 DetNP +NPDetAdj +DetAdj +CLaCL +O-ADV-V-ADV-S +DetNP +NP-CL +P-VC-S +NP-Demo +DetNP +PrepNp +DetAdj +219096 V-ADV +PrepNp +NPofNP +219100 Conj-CL +ClCl2 +sub-CL +V-O +V-S-ADV +aNpaNp +219108 DetNP +DetCL +ADV-V-S-ADV +PrepNp +219114 DetNP +ClCl +O-V-ADV +CLaCL +V2CL +219120 V-O +ofNPNP +DetNP +sub-CL +S-O-ADV-V-ADV +notCLbutCL2CL +ADV-V +ADV-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +219135 Conj-CL +219137 ADV-V-S +219139 S-V +ofNPNP +DetNP +DetNP +219144 Conj-CL +ADV-ADV-V-ADV +PrepNp +NP-Demo +DetNP +V2CL +PrepNp +219152 Conj-CL +V-S-ADV-ADV +AdvpNp +DetNP +NpPp +PrepNp +PrepNp +V-IO +CL-NP +ADV-V +PrepNp +Np-Appos +Np-Appos +AdjpNp +AdjpNp +219168 Conj-CL +ClCl2 +V-S-ADV +PrepNp +ADV-V-O-S +DetNP +219175 Conj-CL +CLaCL +ADV-V-S-ADV-ADV +DetCL +V2CL +DetNP +PrepNp +PrepNp +219184 V-S +All-NP +DetAdj +219188 Conj-CL +ADV-V-ADV-O +V-O +PrepNp +NPofNP +O-V-S-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +219201 Conj-CL +CLaCL +S-ADV-V-O +V2CL +DetNP +219208 CLaCL +ClCl +219211 Np2CL +S-VC-P +AdjpNp +NPofNP +DetCL +V2CL +PrepNp +DetAdj +219220 S-P-VC +NPofNP +DetNP +219224 Conj-CL +219226 PrepNp +that-VP +V-O2-O-ADV +NpPp +PrepNp +DetNP +PpNp2Np +PrepNp +DetNP +All-NP +V-O +CLaCL +ADV-V-S-O +DetNP +219241 ADV-V +DetNP +219244 Conj-CL +P-VC +219248 that-VP +V2CL +219251 Conj-CL +219253 O-V +219255 VC-P-S +NpAdjp +NpAdjp +O-V-ADV +PrepNp +219261 CLaCL +CLaCL +ADV-V-ADV +O-V +PrepNp +219268 PrepNp +sub-CL +V-O +DetNP +219274 that-VP +CLaCL +S-P-VC +O-V-ADV +PrepNp +219280 V-S-ADV +AdvpNp +V-O +DetNP +219285 Conj-CL +ADV-S-V-ADV +PrepNp +DetNP +AdjpNp +V2CL +V-O +V-S-O +EitherOr4Np +219295 DetAdj +219300 ADV-S-ADV-ADV-V-ADV-ADV +DetNP +V-O-ADV +DetNP +DetNP +AdjpNp +V2CL +ADV-V +PrepNp +PrepNp +DetNP +219312 DetNP +NPofNP +DetNP +NPofNP +DetNP +ADV-V-ADV-S +PrepNp +PrepNp +NPofNP +NpAdjp +DetNP +219324 Conj-CL +ClCl2 +sub-CL +V-S-O +DetNP +NumpNP +V2CL +CLaCL +S-ADV-V-O +DetNP +PpNp2Np +PrepNp +DetNP +V-O-ADV +PrepNp +DetNP +All-NP +DetNP +219343 V-ADV-O-ADV +PrepNp +DetNP +219347 ClCl2 +ClCl +Np2CL +Np2CL +ClCl +V2CL +CLaCL +S-VC-P +Np-Appos +DetNP +DetCL +ADV-O-ADV-V +PrepNp +Conj3Np +DetNP +219363 DetNP +219365 NPofNP +DetNP +219368 CLaCL +ADV-O-V-ADV +AdvpNp +PrepNp +DetNP +219374 V-O +NP-Demo +DetNP +AdjpNp +219379 Conj-CL +ClCl +V-O +BeVerb +S-ADV-P +Np-Appos +DetAdj +PrepNp +DetNP +PrepNp +219390 that-VP +O-ADV-V-S +PrepNp +DetNP +DetNP +219396 Conj-CL +CLaCL +CLaCL +V-S +NP-all +DetNP +219403 CLaCL +V-S +NPofNP +DetNP +219408 ADV-V-O-ADV +V-O +DetNP +PrepNp +DetNP +219414 ADV-V-S +DetNP +219417 Conj-CL +ClCl2 +V-O +O-V +219422 DetNP +NPofNP +DetNP +that-VP +S-V +All-NP +S-ADV-ADV-V-ADV +V-O +NpaNp +219432 PrepNp +219434 Conj-CL +S-ADV-V-O +V-O +NpaNp +DetNP +219440 DetNP +V-O +DetNP +219444 Conj3CL +ADV-ADV-S-V-O +V2CL +DetNP +219449 V-O +V-ADV +NpAdjp +219453 V-O +CLaCL +P-VC +219457 O-V +BeVerb +219460 Conj-CL +S-O-V-ADV +AdjpNp +PrepNp +DetNP +219466 Conj-CL +219468 ADV-V-S-O-ADV +V-O +DetAdj +PrepNp +DetNP +V-S-ADV +PrepNp +DetNP +219477 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +DetNP +ClCl +V-S +V-S-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +219498 V-O +219500 Conj-CL +219502 V-O +V-ADV +PrepNp +DetNP +DetNP +DetNP +PtclCL +V-ADV-S +V-O-ADV +PrepNp +219513 Conj-CL +219516 Conj-CL +ADV-S-VC-P +Np-Appos +DetAdj +DetCL +CLaCL +ADV-V +PrepNp +Demo-NP +DetNP +219527 V-ADV-O +PrepNp +DetAdj +DetNP +AdjpNp +NPofNP +DetNP +219535 Conj-CL +219537 DetNP +aCLaCL +219540 ClCl +S-VC-P +Np-Appos +Np-Appos +NPofNP +DetNP +P2CL +ofNPNP +AdjpNp +AdvpAdjp +219552 V-IO-O +V-ADV +PrepNp +DetNP +219557 Conj-CL +ClCl2 +V-S +S-ADV-V-ADV-IO +DetNP +V-ADV +PrepNp +DetNP +DetNP +DetNP +219568 Conj-CL +219570 S-V +AdjpNp +Np-Appos +DetNP +V2CL +219576 ClCl2 +ClCl +Np2CL +Np2CL +NpaNp +219582 V-O +ofNPNP +DetNP +PpNp2Np +PrepNp +AdvpNp +219589 Conj-CL +ADV-ADV-V-O +219592 that-VP +ADV-V-O +Np-Appos +DetNP +219597 Conj-CL +219600 NpAdjp +CLaCL +V-ADV +PrepNp +NPofNP +DetNP +219607 V-ADV +PrepNp +NP-Demo +DetNP +ADV-V-ADV +PrepNp +DetNP +NPofNP +PrepNp +NPofNP +DetNP +AdjpNp +219620 NPofNP +DetNP +sub-CL +S-VC-ADV +All-NP +219626 S-O-V-ADV-ADV +Demo-NP +DetNP +PrepNp +V-ADV-O +Conj2VP +219633 PrepNp +aNpaNp +219638 S-V-IO +AdvpNp +DetNP +219642 S2CL +All-NP +DetNP +ADV-ADV-V-ADV +ADV-O-V-ADV +PrepNp +AdvpNp +PrepNp +DetNP +PrepNp +219653 AdvpNp +DetCL +P-VC +V2CL +PrepNp +sub-CL +V2CL +219661 Conj-CL +CLaCL +V-ADV-ADV-ADV-S +CLaCL +V2CL +219667 V-ADV +DetNP +PrepNp +ADV-ADV-V-S-ADV +PrepNp +DetNP +NpAdjp +PrepNp +219676 CLaCL +V-ADV +PrepNp +DetNP +219681 V-O +219683 ClCl2 +ClCl +Np2CL +Np2CL +ADV-O-V +219689 Conj-CL +219692 Np2CL +219694 Conj-CL +219696 PrepNp +S-VC-P +NP-CL +Np-Appos +DetNP +O-S-V +219703 Conj-CL +aCLaCL +219706 S-O-V +DetCL +P-VC +PrepNp +DetNP +219712 ADV-V-O +DetNP +NPofNP +DetCL +V-IO +219718 Conj-CL +219721 Np2CL +219723 Conj-CL +219725 DetNP +PrepNp +ClCl +ADV-V-ADV +V2CL +PrepNp +ADV-IO-V-ADV +PrepNp +All-NP +S-V-IO +O-V +219737 Conj-CL +219739 sub-CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +V-ADV +PrepNp +DetCL +V-ADV +PrepNp +219752 Conj-CL +219754 Np-Appos +NpAdjp +NpAdjp +NpAdjp +AdjpPp +PrepNp +DetNP +V-ADV +PrepNp +All-NP +DetNP +AdjpNp +V2CL +CLaCL +V-ADV +PrepNp +219771 V2CL +ClCl2 +ClCl +Np2CL +Np2CL +V2CL +219778 S-ADV-V-ADV +PronNP +DetNP +PrepNp +219783 Conj-CL +219786 DetNP +NPofNP +DetNP +NPofNP +Conj3CL +V-O +DetNP +NPofNP +219795 V-O +DetAdj +219798 V-O +NpPp +PrepNp +DetNP +NPofNP +sub-CL +VC-ADV-ADV-P +PrepNp +All-NP +NPofNP +O-V +Conj2VP +219812 Conj-CL +ADV-O-V +219815 CLaCL +ADV-V +V2CL +219819 V-O-ADV +DetNP +NPofNP +V-O +DetNP +NPofNP +219826 Conj-CL +V-ADV-ADV-S +CLaCL +V-ADV +PrepNp +219832 V-S-ADV +PrepNp +DetNP +CLaCL +VC-S-P +PrepNp +219839 V-O +219841 ClCl +CLaCL +V2CL +219845 V-ADV-ADV +PrepNp +PrepNp +sub-CL +ADV-V-O +ofNPNP +NpPp +PrepNp +219856 Np2CL +that-VP +S-V-ADV-O +BeVerb +Conj2VP +219862 PrepNp +DetNP +DetCL +V-ADV +PrepNp +219868 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +S-V +AdvpNp +BeVerb +Conj3CL +V2CL +219883 V2CL +219885 V-O +DetNP +NPofNP +DetCL +V-O +219891 Conj-CL +219893 PrepNp +ClCl +V2CL +sub-CL +S-ADV-ADV-V-O +PrepNp +219900 Conj-CL +CLaCL +V-O-ADV +PrepNp +Demo-NP +DetNP +219907 V-O-ADV +DetNP +NPofNP +219911 ClCl +V-ADV-O +PrepNp +DetNP +DetNP +sub-CL +ADV-V-S +S-V +219920 Conj-CL +ClCl +CLaCL +V-S +219925 CLaCL +V-O +DetNP +219929 O-V-ADV +PrepNp +DetNP +219933 DetNP +V-S-ADV +PrepNp +DetNP +V-O +ADV-V-S +sub-CL +V-O +ADV-ADV-V-IO +PrepNp +PronNP +219945 Conj-CL +ClCl2 +sub-CL +V-O-ADV +DetNP +219951 PrepNp +DetNP +AdjpNp +V2CL +DetNP +PtclCL +S-V-ADV +O-V +NpAdjp +AdjpaAdjp +219963 Conj-CL +ADV-S-ADV-V-ADV +V2CL +DetNP +V-ADV +DetNP +219970 ClCl +V-O +O-V +sub-CL +S-P-VC +NP-Demo +DetNP +219978 Conj-CL +219980 V2CL +DetNP +219983 S-P-VC +219985 Conj-CL +219987 Intj2CL +219989 Conj-CL +219991 DetNP +S-ADV-O-V +AdjpNp +NP-Demo +DetNP +219997 Conj-CL +219999 DetNP +Conj-CL +S-ADV-V +220003 Conj-CL +ADV-V-ADV-S +PrepNp +DetCL +V-O +O-V +220010 Conj-CL +S-V-ADV +AdvpNp +DetNP +ClCl +V2CL +CLaCL +that-VP +P-VC +220020 that-VP +O-V +BeVerb +220024 Conj-CL +CLaCL +ADV-ADV-V-O +DetAdv +V-O +V-O +Np-Appos +DetAdj +DetCL +ADV-V-ADV +PrepNp +DetAdj +220037 CLaCL +V-O +V-S +NpaNp +DetNP +220043 All-NP +DetNP +220046 ADV-V-ADV +V-O +DetNP +PrepNp +220051 Conj-CL +220053 DetNP +V-O +DetNP +ClCl2 +ClCl +Np2CL +Np2CL +S-ADV-V-ADV-ADV +All-NP +NpAdjp +DetNP +PrepNp +Demo-NP +DetNP +220068 Conj-CL +S-V-IO-O +Np-Appos +DetNP +DetCL +V-ADV +V-O +ofNPNP +DetNP +220079 DetNP +PrepNp +ClCl +220083 V-O +DetNP +Np2CL +NpAdjp +V2CL +CLaCL +S-V-ADV +AdvpNp +V-O-ADV +PrepNp +DetNP +220095 ADV-V-O +V2CL +S-V +220099 Conj-CL +220101 DetCL +V2CL +O-V +DetNP +NPofNP +DetNP +220108 Conj-CL +220110 DetNP +ClCl +220113 Np2CL +that-VP +VC-P +sub-CL +220118 that-VP +O-ADV-V-ADV +NPofNP +DetNP +NPofNP +220124 Conj-CL +220126 DetNP +220128 that-VP +CLaCL +S-VC-P +DetNP +AdjpNp +220134 S-P +DetNP +PrepNp +DetNP +ClCl2 +ClCl +Np2CL +Np2CL +ClCl +ClCl +S-P-VC +P2CL +NPofNP +ADV-V +PrepNp +NpaNp +220151 NPofNP +220153 Conj-CL +ClCl +ClCl2 +O-S-V +CLaCL +V-S +NPofNP +DetNP +NpaNp +220164 V-S +DetNP +sub-CL +CLaCL +S-V-O +ADV-V-S +Conj3Np +220174 S-V-O +DetAdj +220177 Conj-CL +CLaCL +V-S +NpAdjp +220182 ADV-S-V-ADV +V2CL +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +220191 CLaCL +O-V-ADV +NpAdjp +PrepNp +NP-Demo +DetNP +220198 sub-CL +CLaCL +S-V-IO +220202 S2CL +220204 Conj-CL +220206 S-V +AdjpNp +DetNP +ClCl +V2CL +PtclCL +V-S-ADV +DetNP +PrepNp +CLaCL +S-ADV-V-O-ADV +DetNP +V2CL +PrepNp +NPofNP +220222 V-ADV +PrepNp +DetNP +220226 Conj-CL +220228 DetNP +AdjpNp +V2CL +V-ADV +DetNP +ClCl +V2CL +sub-CL +ClCl2 +sub-CL +V-O-ADV +NpPp +PrepNp +PrepNp +ADV-V-S +S-ADV-V +AdvPp +PrepNp +220247 Conj-CL +ClCl2 +V-S +ADV-S-V-O-ADV +V-O +DetAdj +V-O +V-ADV +EitherOrVp +220258 PrepNp +ADV-V-O +DetNP +220262 Conj-CL +VC-P-S +AdjpAdvp +NP-CL +DetCL +O-V +Demo-NP +DetNP +220271 S-ADV-V +V-ADV +NpaNp +DetNP +220276 DetAdj +S-O-V-ADV +PrepNp +ADV-V-O +DetNP +220282 Conj-CL +CLaCL +220285 DetNP +PrepNp +DetNP +sub-CL +V-O-ADV-ADV +PrepNp +sub-CL +V-O +V-ADV-O +NpPp +PrepNp +220297 S-ADV-P-VC-ADV +PrepNp +DetCL +V-S +DetCL +V-O +220304 Conj-CL +S-ADV-ADV-V-IO +DetNP +NPofNP +DetNP +NPofNP +V-O +DetNP +CLaCL +V2CL +220315 V-ADV +PrepNp +DetNP +DetNP +220320 Conj-CL +220322 DetNP +V-O +NPofNP +DetNP +ClCl +O-V-ADV +NP-Demo +DetNP +PrepNp +DetNP +sub-CL +V-O +V-O-IO +220336 Conj-CL +Conj-CL +CLaCL +S-ADV-V-ADV +V-O +PrepNp +DetNP +220345 S-ADV-V-O +Np-Appos +DetNP +V-O +O-V-ADV-ADV +Demo-NP +DetNP +PrepNp +V-O +O-V-IO +220356 Conj-CL +S-ADV-V-O +DetNP +CLaCL +V-O +DetNP +NPofNP +220364 V-ADV +PrepNp +P-VC-S +O-V +O-V-IO +220370 Conj-CL +220372 that-VP +S-V-O +DetAdj +DetCL +220377 sub-CL +ADV-O-V-ADV-ADV +DetNP +PrepNp +DetNP +sub-CL +V-O +O-ADV-V-ADV +PrepNp +220387 Conj-CL +220389 sub-CL +CLaCL +V-O-S +NP-CL +PpNp2Np +PrepNp +NpAdjp +AdjpAdvp +S-V-O +S-V-ADV +EitherOrVp +220402 PrepNp +ADV-V-O +220405 ADV-VC-P-ADV +V-O +DetNP +PpNp2Np +PrepNp +220411 Conj-CL +Conj-CL +S-V-O-ADV +DetNP +DetNP +V-O +220418 that-VP +O-V-ADV +PrepNp +220422 Conj-CL +ClCl +220425 V-O +NPofNP +NpNump +DetNP +CLaCL +220431 Conj3Np +NpAdjp +220434 NpNump +220436 NpAdjp +sub-CL +V-ADV-ADV +PrepNp +PrepNp +AdjpNp +NPofNP +DetNP +220446 sub-CL +ADV-V-ADV +V-O +DetNP +PrepNp +Np-Appos +DetNP +V-O +NpAdjp +V-O +NP-Demo +DetNP +220459 ClCl +S-IO +Np-Appos +Np-Appos +DetNP +AdjpNp +V2CL +220467 O-ADV-ADV-V-ADV +NP-Demo +DetNP +CLaCL +V-ADV +PrepNp +DetAdj +220475 V-O +V-ADV +PrepNp +V-ADV +PrepNp +DetNP +220482 that-VP +P-VC +220485 Conj-CL +ADV-V-ADV +V-O +V-O +DetNP +NP-CL +ADV-V-O +PrepNp +PrepNp +DetNP +NPofNP +220497 V-O +CLaCL +S-V-ADV +PrepNp +NPofNP +DetNP +NPofNP +220505 O-V +AdjpNp +AdjpNp +AdjpAdvp +NpaNp +220512 Conj-CL +220514 V-IO-S +S-ADV-V +PrepNp +DetNP +PrepNp +V-IO-O +AdvpNp +DetNP +V-ADV-ADV +PrepNp +PrepNp +220526 Conj-CL +Conj-CL +S-ADV-ADV-V-ADV-ADV +DetNP +PrepNp +DetCL +V-IO +V-O +DetNP +PrepNp +PrepNp +DetNP +220539 Conj-CL +220541 DetAdv +V-O +S-V-ADV +DetNP +PrepNp +PrepNp +DetNP +S-ADV-V-O-IO +CLaCL +V-ADV +PrepNp +DetNP +220554 V-O-IO +DetNP +DetNP +AdvpNp +DetNP +220560 Conj-CL +ClCl +220563 Conj3CL +V2CL +220567 P-VC +PrepNp +AdjpNp +220572 that-VP +P2CL +PrepNp +ClCl +V-O +sub-CL +S-V +AdvpNp +DetNP +NPofNP +V-O +ADV-V-S +PrepNp +DetNP +NPofNP +DetNP +220589 Conj-CL +220591 PrepNp +NumpNP +Np-Appos +DetNP +PrepNp +NpaNp +NpAdjp +220599 NpAdjp +Np-Appos +S-V-IO-ADV +DetNP +PrepNp +DetNP +220606 Conj-CL +220608 V-S +V2CL +DetNP +220613 CLaCL +O-V-ADV +AdjpNp +PrepNp +220618 S-V-ADV-ADV +NP-Demo +DetNP +PrepNp +DetNP +AdjpNp +ADV-V-ADV +aAdvpaAdvp +220628 PrepNp +All-NP +Np2CL +AdjpNp +220633 Conj-CL +ClCl2 +sub-CL +ADV-ADV-O-V +PrepNp +V-O +V-S-O-ADV-ADV +DetNP +AdjpNp +220643 Conj-CL +V-O +220647 NP-Demo +DetNP +Conj3Np +220651 V-O-IO +All-NP +Np-Appos +DetAdj +NpPp +PrepNp +DetNP +220659 NPofNP +DetNP +ofNPNP +DetNP +S-ADV-O-V +O-V +DetNP +O-ADV-V +PrepNp +V-ADV +PrepNp +All-NP +V-O +O2-S-V-O +220674 Conj-CL +V-S-ADV +AdvpNp +DetAdj +V-O +S-P-VC +220681 Conj-CL +ClCl +220684 DetNP +V-IO-S-O +DetNP +V2CL +220689 O-V +ADV-VC-S-P-ADV +PrepNp +AdjpNp +NP-Demo +DetNP +NpPp +PrepNp +V-S-O +220699 V2CL +CLaCL +ADV-P-VC-ADV-S-ADV +NpNump +PrepNp +ADV-V-ADV +V-ADV +PrepNp +220708 CLaCL +V-O-ADV +CLaCL +S-ADV-V +PrepNp +220714 O-V +NPofNP +aPpaPpaPp +220718 PrepNp +DetNP +220721 PrepNp +DetNP +220724 PrepNp +DetNP +220727 V-O +V-IO-ADV +PrepNp +O2-ADV-V-O +220732 Conj-CL +220734 that-VP +ADV-ADV-V-O-ADV-ADV +PrepNp +DetNP +NP-CL +O-V-O2 +DetNP +AdjpNp +V-O +All-NP +NpaNp +NpPp +PrepNp +DetNP +220749 DetCL +ADV-V +PrepNp +DetNP +V-O +NP-CL +NP-CL +NpPp +PrepNp +DetNP +O-S-V +AdvpNp +PronNP +V-O-S +V2CL +NPofNP +aNpaNp +220769 ADV-S-V-O +PrepNp +AdvpNp +O-V-ADV-ADV +AdjpNp +PrepNp +NpaNp +DetNP +220778 DetNP +PrepNp +220781 Conj-CL +220783 ADV-ADV-V +PrepNp +NpAdjp +O-V-ADV +PrepNp +DetNP +NPofNP +220791 O2CL +ADV-V-O +PrepNp +S-V-ADV-ADV +PrepNp +DetNP +notPPbutPP +PrepNp +PrepNp +220801 Conj-CL +220803 Np2CL +AdjpNp +PpNp2Np +PrepNp +DetNP +S-V +S-ADV-V +PrepNp +Conj2VP +220813 O-V-ADV +PrepNp +220816 Conj-CL +CLaCL +220819 PronNP +ClCl +O-V +AdjpNp +V-S-ADV +PrepNp +DetNP +220827 ADV2CL +PrepNp +Np-Appos +Demo-NP +NP-CL +220833 O-V-ADV +ADV-V +PrepNp +ADV-S-V-ADV-ADV +PrepNp +NPofNP +PrepNp +220841 Conj-CL +V-O-S-ADV-ADV-ADV +DetNP +ADV-V-O +NpPp +PrepNp +DetNP +220849 ClCl2 +sub-CL +S-V +Np-Appos +DetNP +V-O +NpPp +PrepNp +V-IO-O +DetNP +CLaCL +V-S +220862 CLaCL +V-O +220865 V-O +S-V-O +NPofNP +DetNP +NPofNP +220871 Conj-CL +CLaCL +ADV-S-ADV-V-O +PrepNp +NpAdjp +DetNP +V-ADV +PrepNp +NpAdjp +Np-Appos +DetNP +AdjpNp +VC-P +DetNP +220886 V-O-ADV +PrepNp +DetNP +PpNp2Np +PrepNp +Np-Appos +220893 Conj-CL +220895 V-S-ADV +PrepNp +Conj3Np +220900 Np-Appos +DetNP +DetCL +V2CL +P-VC +DetNP +CLaCL +ADV-V +DetCL +ADV-V +220911 ADV-V-O +O-V +220914 that-VP +S-V-IO-ADV +PrepNp +DetNP +220919 Conj-CL +ADV-V-ADV +ADV-ADV-O-V +220923 Conj-CL +CLaCL +ClCl2 +S-V +V-S-O +DetNP +Np-Appos +Np-Appos +220932 ADV-S-V-O-O2 +V-O +O-V-IO +DetAdj +DetNP +DetNP +V2CL +220940 Conj-CL +CLaCL +S-ADV-ADV-V-ADV-ADV +V-ADV +DetAdj +PrepNp +AdjpNp +PrepNp +PrepNp +220950 CLaCL +V-IO-S-ADV +NpaNp +DetNP +220955 DetNP +NPofNP +DetAdj +PrepNp +DetNP +220962 V-O-ADV +PrepNp +sub-CL +V-O-ADV-ADV +PrepNp +O-V-ADV +V-O-ADV +PrepNp +DetNP +220972 Conj-CL +Conj-CL +S-V-O +DetNP +CLaCL +V-S-ADV +DetNP +PrepNp +220981 S-V-O +ADV-V +PrepNp +220985 Conj-CL +220988 DetNP +PpNp2Np +PrepNp +V2CL +sub-CL +S-VC-P +Np-Appos +PrepNp +DetNP +220998 Conj-CL +ADV-ADV-ADV-V-O +V-ADV-ADV +PrepNp +NpAdjp +AdvpAdjp +AdjpAdvp +Conj2Nump +221007 V-ADV +PrepNp +ADV-V-ADV +DetAdv +PrepNp +DetNP +S-V +DetNP +221016 Conj-CL +ClCl +ClCl2 +V-S +V-ADV-S-ADV +DetNP +AdjpNp +ADV-V +PrepNp +221026 AdjpNp +AdjpaAdjp +221029 O-ADV-V +O-V +S-V-O +DetNP +that-VP +ADV-O-V +aPpaPpaPp +221037 PrepNp +DetNP +NPofNP +DetAdj +221042 PrepNp +DetNP +221045 PrepNp +221047 Conj-CL +221049 DetNP +V-O +IO-O-V +DetAdj +V-IO +DetNP +V-O +ADV-ADV-ADV-V-ADV +ADV-V +PrepNp +PrepNp +PrepNp +221062 Conj-CL +221064 DetNP +ClCl +ADV-V +PrepNp +DetNP +NPofNP +VerbBe +S-V +ADV-S-V +221074 ClCl +O-ADV-V +sub-CL +S-ADV-V +AdvpNp +221080 Conj-CL +aCLaCL +221083 ClCl2 +sub-CL +CLaCL +V2CL +221088 O-V +AdjpNp +AdjpAdvp +ADV-V-O +DetCL +V2CL +221095 ClCl2 +sub-CL +P-VC-S +O2-S-V-O +S-V-O +O-IO-V +221102 O-V +221105 DetNP +V-ADV +PrepNp +DetNP +ClCl +O-V +ADV-V +PrepNp +221114 Conj-CL +ClCl2 +S-V +NpAdjp +S-V-ADV-ADV +NpaNp +Np-Appos +DetNP +221123 PrepNp +V-O +DetNP +221127 Conj-CL +ClCl2 +sub-CL +ADV-V-ADV +AdjpNp +S-IO-V-O-ADV +DetNP +DetNP +NpPp +PrepNp +DetNP +221140 S-VC-P +NpAdjp +AdjpNp +V-ADV +PrepNp +ADV-ADV-V-S-ADV +PrepNp +VC-S-P +PrepNp +NpaNp +DetNP +221152 DetNP +NPofNP +DetAdj +V-ADV-O +PrepNp +ADV-V +PrepNp +ADV-VC-P-ADV-S +ClCl +V-O +AdjpNp +AdvpCL +sub-CL +CLaCL +S-ADV-V-O +DetCL +V2CL +PrepNp +DetNP +221172 O-V-ADV +NPofNP +PrepNp +DetNP +221177 Conj-CL +221179 V-ADV +ADV-ADV-V-O +O-V +NpAdjp +ADV-V-ADV +DetAdv +PrepNp +DetNP +V-S +DetNP +CLaCL +ADV-ADV-S-V-O +PrepNp +V2CL +DetNP +AdjpNp +NPofNP +CL-NP +O-S-V +221199 CLaCL +O-ADV-V-ADV +NpAdjp +PrepNp +DetNP +AdjpNp +PrepNp +221207 ADV2CL +PrepNp +NP-CL +NpAdjp +AdjpNp +V2CL +O-V-S +S-V +DetNP +221217 Conj-CL +221219 V-O +DetNP +PpNp2Np +PrepNp +PtclCL +V-O +CLaCL +V-ADV +PrepNp +221229 V-ADV +PrepNp +221232 Conj-CL +ClCl2 +S-V-O +DetNP +V-S-ADV +PrepNp +DetNP +ofNPNP +DetAdj +V-O +V-S-ADV +PrepNp +ADV-V-O-ADV +PrepNp +221247 Conj-CL +ClCl +S-ADV +PrepNp +DetNP +V-S-O +AdvpNp +O-V +DetNP +221258 ADV-V-O +221260 Conj-CL +ClCl2 +CLaCL +CLaCL +ADV-V-S-ADV +DetAdv +NpaNp +DetNP +221269 DetNP +PrepNp +AdjpNp +221273 V-ADV-ADV +PrepNp +DetNP +PrepNp +aNpaNp +221280 Np-Appos +NPofNP +NpPp +PrepNp +DetNP +221286 V-S +DetNP +V-S +DetNP +221291 Conj-CL +221293 DetNP +221295 Np2CL +NpaNp +Np-Appos +221299 All-NP +DetNP +AdjpNp +V-ADV +NP-CL +ADV-S-V-O-ADV-ADV +PrepNp +AdjpNp +DetNP +NPofNP +DetAdj +PrepNp +aNpaNp +221314 V-O +ADV-V-S +S-V-ADV +221318 Conj-CL +CLaCL +S-V-O +O-S-V +NpAdjp +AdjpAdvp +221326 S-V-O +PronNP +DetAdj +V-O +V2CL +ADV-O-ADV-V +PrepNp +O-V-IO +AdjpNp +DetNP +221337 Conj-CL +ClCl +221340 Conj2Pp +PrepNp +221343 AdvPp +PrepNp +Np2CL +Np-Appos +sub-CL +ClCl2 +S-V +DetNP +V-O +O-V +221354 Conj-CL +P-ADV-VC-S +ADV-ADV-O-V +V-O +AdvpNp +DetNP +PpNp2Np +PrepNp +221363 Conj-CL +221365 PrepNp +DetNP +V-IO-S +ADV-V +PrepNp +221372 DetNP +V-O +DetNP +ClCl +221377 Np2CL +Np-Appos +ADV-V-O-O2-ADV +PrepNp +All-NP +O-V-ADV +PrepNp +O-V +ADV-ADV-V +PrepNp +NPofNP +All-NP +DetNP +PpNp2Np +PrepNp +aNpaNp +221395 Conj-CL +V-O +ADV-V-O +221399 Conj-CL +Conj-CL +221402 Np-Appos +DetNP +NpPp +NPofNP +PrepNp +DetCL +ADV-VC-P +PrepNp +Conj2Pp +PrepNp +DetNP +NPofNP +221415 PrepNp +All-NP +V-O-ADV +sub-CL +V-O +221421 that-VP +ADV-V-ADV +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +AdjpNp +221430 Conj-CL +221432 PrepNp +NPofNP +DetNP +AdjpNp +ADV-V-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +V2CL +O-S-ADV-V +ADV-V +PrepNp +DetNP +NPofNP +ADV-ADV-V +PrepNp +NpaNp +221454 PrepNp +PronNP +PrepNp +Np2CL +221460 PrepNp +sub-CL +S-O-V +DetNP +221465 Conj-CL +Conj-CL +S-V-O +221469 ADV-O-V +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +AdjpNp +ClCl2 +CLaCL +O-ADV-V-ADV +PrepNp +221481 aCLaCLaCL +221483 O-S-ADV-V-ADV +NPofNP +DetAdj +PrepNp +O-V +DetNP +PpNp2Np +PrepNp +DetNP +221493 CLaCL +ClCl2 +V-S +V-O +221498 ADV-V-O +ADV-ADV-V-O +PrepNp +All-NP +DetNP +V2CL +221505 ADV-V-ADV +ADV-V-ADV +PrepNp +AdvPp +PrepNp +DetNP +AdvpNp +ADV-ADV-ADV-V-O +ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +PrepNp +Np-Appos +NpaNp +221521 NPofNP +DetNP +NpAdjp +PrepNp +DetNP +ADV-ADV-V-S-O +PrepNp +DetNP +NPofNP +DetNP +NpaNp +221533 DetCL +ADV-V +PrepNp +Np2CL +221538 Conj-CL +ClCl2 +S-V-ADV +All-NP +PrepNp +DetNP +V-O +221546 PrepNp +Np-Appos +DetNP +ClCl2 +ClCl +Np2CL +Np2CL +ClCl +ADV-O-V +P-ADV-S +ADV-V +PrepNp +221559 Conj-CL +221562 Np2CL +221564 Conj-CL +221566 DetNP +S-VC-P +NP-CL +O-S-V +221571 Conj-CL +CLaCL +V2CL +221575 V-ADV +PrepNp +DetNP +NPofNP +221580 Conj-CL +221582 PrepNp +V-O-O2 +NpaNp +221586 NPofNP +aNpaNp +221589 ADV-V-O +221591 ADV-V-IO +V-O-ADV +Conj2Pp +PrepNp +DetNP +221597 PrepNp +DetNP +ADV-S-V-O-ADV +PrepNp +V-O-ADV-ADV +NPofNP +DetCL +V-ADV +ADVaADV +2Pp +PrepNp +PrepNp +221610 AdvAdv +DetNP +NPofNP +DetNP +PrepNp +DetNP +DetCL +V-S-O +NpaNp +NPofNP +221621 NpPp +PrepNp +DetCL +V-ADV +Np-Appos +NpPp +PrepNp +221629 Conj-CL +221631 Np2CL +Np-Appos +VC-P-ADV +DetNP +AdjpNp +IO-V-O +2Np +aNpaNp +221640 NpAdvp +NpPp +PrepNp +221644 aNpaNp +221646 All-NP +DetNP +NPofNP +DetNP +221651 DetNP +CLaCL +V2CL +221655 V-ADV-ADV +PrepNp +DetNP +O-V +AdjpNp +AdjpAdvp +DetNP +221663 ADV-S-ADV-V-O +PrepNp +O-V-ADV +PrepNp +DetNP +V2CL +221670 Conj-CL +ADV-ADV-V-ADV-ADV +V-O +NPofNP +NpPp +PrepNp +DetNP +PrepNp +NP-Demo +DetNP +V-IO +aNpaNp +221685 PrepNp +O-S-V +S-V-O +V2CL +aNpaNp +221691 DetNP +221693 ClCl +sub-CL +P-S +DetNP +ClCl2 +sub-CL +P-ADV +PrepNp +NPofNP +V-O +O-V-IO +aNpaNp +221706 DetNP +221708 DetNP +221710 Conj-CL +221712 O-S-V +DetNP +AdjpNp +DetNP +ClCl +221718 Np2CL +S-O-ADV-V +DetNP +AdjpNp +PrepNp +221724 Conj-CL +221726 DetNP +ClCl +221729 Np2CL +AdjpNp +V2CL +O-V +ofNPNP +NpaNp +221736 sub-CL +221738 PrepNp +DetNP +NP-CL +ADV-ADV-ADV-V +PrepNp +V2CL +sub-CL +221746 V-O-ADV +sub-CL +ADV-V-ADV-S +BeVerb +PrepNp +221753 Np2CL +Np-Appos +DetNP +221758 that-VP +V2CL +221761 Conj-CL +ClCl +S-ADV +DetNP +PrepNp +DetNP +ADV-O-V-ADV +PrepNp +O-V +221771 Conj-CL +221773 DetNP +PtclCL +V-IO-ADV-O +DetNP +aPpaPp +221779 PrepNp +221781 PrepNp +S-VC-P-ADV +notNPbutNP +2Advp_h1 +AdvpNp +All-NP +DetCL +V-O-ADV +NP-CL +P-S-VC +AdvpNp +PrepNp +NP-Demo +DetNP +221796 CLaCL +V-S +aNpaNp +221800 NpaNp +DetNP +221803 DetNP +221805 NpaNp +DetNP +221808 DetCL +V-ADV +221811 ADV-V-ADV-ADV +V2CL +PrepNp +221815 that-VP +O-V-S +NpAdjp +AdvpAdjp +NpaNp +221821 NP-Demo +DetNP +221824 Conj-CL +221826 DetNP +ClCl +O-V-S +V2CL +NP-Demo +DetNP +sub-CL +ADV-V-O +221835 Conj-CL +ClCl2 +sub-CL +V-S +DetCL +V-S-ADV +PrepNp +DetNP +V-O-IO +aNpaNp +221846 DetNP +221848 AdjpNp +AdjpNp +NPofNP +NpAdjp +ADV-P +NpAdjp +221855 Conj-CL +ClCl +ADV-V +V-ADV +NpAdjp +NpAdjp +V-O +V-ADV +PrepNp +DetNP +PpNp2Np +PrepNp +DetNP +VC-P-S +PrepNp +Np-Appos +NPofNP +221873 aCLaCL +221875 ADV-V-ADV +DetAdj +PrepNp +221879 S-ADV-V-O +DetNP +ADV-O-V +DetNP +ADV-O-V +ADV-V +PrepNp +DetAdj +221888 CLaCL +ADV-V-ADV-ADV +ADV-V +DetNP +PrepNp +DetCL +S-VC-P +DetNP +221897 ADV-V-ADV +ADV-V +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NpaNp +221906 PrepNp +NPofNP +DetNP +221910 S-ADV-V-O-ADV +DetNP +ADV-V-O +NpAdjp +NpAdjp +V-ADV +PrepNp +DetNP +PrepNp +221920 Conj-CL +ClCl2 +CLaCL +ADV-V +PrepNp +AdjpNp +221927 ADV-V-ADV +PrepNp +DetNP +ClCl2 +ADV-V-O-S +DetNP +CLaCL +V-ADV-ADV +DetNP +PrepNp +221938 ADV-V-ADV +ADV-V-ADV +PrepNp +NP-CL +NpAdjp +NpAdjp +VC-P +AdjpNp +P-S-VC +NP-Prep +Np-Appos +221950 Conj-CL +ClCl2 +CLaCL +S-V +AdjpNp +221956 VC-ADV-P-S-ADV +DetNP +PrepNp +DetCL +S-ADV-V +AdvpNp +DetNP +V-S-ADV +DetNP +221967 Np2CL +that-VP +O-V-S +P-VC +PrepNp +NPofNP +NpaNp +221975 AdjpNp +notNPbutNP +2Advp_h1 +NpaNp +DetNP +221981 DetNP +AdvpNp +DetNP +NPofNP +DetNP +221987 Conj-CL +CLaCL +S-IO-ADV-V +DetNP +NpaNp +DetNP +221994 DetNP +221996 IO2CL +DetCL +ADV-V +PrepNp +222001 Conj-CL +ClCl2 +P-S-VC-ADV +DetNP +PrepNp +222007 DetAdj +V-ADV +PtclCL +PtclCL +V-O +ADV-V +V-ADV +PrepNp +Np-Appos +NpAdjp +NPofNP +DetNP +V-ADV +Conj2Pp +PrepNp +222023 PrepNp +222025 Conj-CL +ClCl2 +V-S +ADV-ADV-ADV-V-ADV +V-O +O-V +DetNP +V2CL +DetNP +222035 Conj-CL +ADV-V-ADV-S +PrepNp +AdvpAdjp +PrepNp +Np-Appos +NpAdjp +DetCL +VC-P +222045 Conj-CL +222047 CLaCL +V-S +DetNP +222051 ADV-V-O +V-O +DetNP +V2CL +222056 Conj-CL +CLaCL +222059 V-ADV +NpAdjp +NpAdjp +VC-P +P-VC-ADV +DetNP +ADV-O-V-ADV +O-V +V-O +DetNP +222070 ADV-ADV-ADV-V +ClCl +V2CL +PtclCL +ADV-V +PrepNp +DetNP +V-O +DetNP +222080 Conj-CL +ClCl2 +ADV-V-S +CLaCL +ADV-O-V +DetAdv +222087 ADV-ADV-O-V +DetAdj +DetNP +NPofNP +DetNP +222093 Conj-CL +222095 CLaCL +S-V-ADV +aNpaNp +222100 PrepNp +AdjpNp +222103 S-V +NpAdjp +AdvpAdjp +NPofNP +NP-all +DetCL +V-S +222111 Conj-CL +ClCl2 +S-V +AdjpNp +222116 V2CL +DetNP +PrepNp +NPofNP +222121 Np2CL +intjNP +V-S +CLaCL +ADV-ADV-V-ADV +V-O +PrepNp +DetNP +222130 V-O +NpaNp +NP-Demo +DetNP +222135 DetNP +222137 Conj-CL +222139 DetAdv +S-V +sub-CL +S-P-VC-ADV-ADV +NPofNP +PrepNp +PrepNp +DetNP +222148 Conj-CL +V-ADV-ADV-S-ADV +Demo-NP +DetNP +ofNPNP +DetNP +NP-CL +NP-CL +P-VC +O-ADV-V +222159 ClCl +222161 Np2CL +CLaCL +S-V +ADV-S-V +222167 DetNP +All-NP +DetCL +V-ADV +PrepNp +222173 Conj-CL +ClCl +222176 Np2CL +sub-CL +222179 DetNP +that-VP +P-VC-ADV +PrepNp +ADV-V-IO +PronNP +222186 Conj-CL +V-S +ADV-S-V +PrepNp +NpAdjp +222192 Conj-CL +ClCl2 +sub-CL +S-V +AdjpNp +ClCl2 +V-S-ADV +PrepNp +DetNP +ADV-V-S-O +PrepNp +NPofNP +DetNP +DetNP +V-S-ADV +AdjpNp +222209 Conj-CL +CLaCL +ADV-V-O +V2CL +NpNump +222215 ADV-V-O +CLaCL +ADV-V +222219 ADV-V +NpNump +222222 Conj-CL +ADV-ADV-V-O +ClCl +V2CL +PtclCL +ADV-ADV-V +PrepNp +AdjpNp +ADV-V-O +PrepNp +NpAdjp +S-V +222235 Conj-CL +ClCl2 +CLaCL +S-V-O +DetNP +V-ADV +PrepNp +DetNP +222245 DetNP +PrepNp +DetNP +sub-CL +O-V +ADV-O-V +PrepNp +222253 DetNP +NpaNp +DetNP +222257 DetNP +ClCl2 +sub-CL +ADV-S-V-ADV +PrepNp +DetNP +S-O-ADV-V +V2CL +222266 CLaCL +ADV-V-S-O +DetNP +DetNP +NPofNP +DetNP +222273 V-O +S-V +222276 Conj-CL +ADV-V-S-O-ADV +PrepNp +ADV-S-V-O +V2CL +DetNP +S-V-O +222284 ADV-ADV-V-ADV +O-ADV-V +AdjpNp +O-V +222289 Conj-CL +ClCl +222292 S-V-O +sub-CL +S-P-VC +PrepNp +DetNP +AdjpNp +sub-CL +S-ADV-V +ofNPNP +NPofNP +PrepNp +DetNP +222305 Conj-CL +CLaCL +ADV-V-O-ADV +CLaCL +V-O +222311 V-O +DetNP +PrepNp +222315 ADV-V-O +V2CL +V2CL +222319 Conj-CL +ADV-S-V-O +P-VC-S +AdvpNp +222324 Conj-CL +VC-S-P +DetNP +All-NP +NpPp +PrepNp +DetNP +NumpNumpNump2 +222333 Conj-CL +ADV-V-O-ADV +V-O +DetNP +V-O-ADV +DetNP +PrepNp +DetNP +222342 Conj-CL +ClCl2 +sub-CL +S-V +CLaCL +O-ADV-V +DetNP +222351 V-O +NpAdjp +NpAdjp +V-O +O-V +ADV-V-O +PrepNp +DetNP +V2CL +222361 Conj-CL +CLaCL +ADV-V-ADV-ADV +O-V +DetNP +PrepNp +DetNP +ADV-V-O +DetNP +NPofNP +DetNP +222373 ADV-V-ADV +V-O-IO +DetNP +DetCL +V2CL +PrepNp +DetNP +222381 Conj-CL +CLaCL +ADV-V-O +V-ADV +PrepNp +NpAdjp +DetNP +222389 aCLaCL +222391 S-ADV-V-ADV +DetNP +V2CL +222395 S-V-ADV +DetNP +PrepNp +DetNP +222400 Conj-CL +222402 ofNPNP +DetNP +that-VP +O-V +DetNP +PtclCL +S-ADV-V +V2CL +222411 Conj-CL +CLaCL +S-ADV-V-O-ADV +DetNP +V-O +V-O +DetNP +DetNP +222420 V-O +CLaCL +S-ADV-ADV-ADV-V +DetCL +V-O +V2CL +V2CL +PrepNp +DetNP +222431 S2CL +DetAdj +222434 S-ADV +PrepNp +222437 S-ADV +PrepNp +NPofNP +NpPp +PrepNp +DetNP +222444 Conj-CL +ADV-V-S +S-V-ADV +PrepNp +DetNP +222450 Conj-CL +222452 ADV-ADV-V +V2CL +P-S-VC +DetNP +222457 Conj-CL +ClCl +S-V-O-IO +DetAdj +DetNP +AdjpNp +ADV-V +sub-CL +ADV-V-O-ADV +V-O +All-NP +Conj2Pp +PrepNp +Np-Appos +DetNP +DetCL +V2CL +222475 PrepNp +DetNP +222478 Conj-CL +222480 CLaCL +V-S-O +DetNP +ofNPNP +AdjpNp +222486 V-ADV +PrepNp +DetNP +ADV-V +PrepNp +DetNP +DetNP +NPofNP +222495 Conj-CL +ClCl2 +sub-CL +V-S-O +DetAdj +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +222506 PrepNp +ADV-P-VC-S +NP-CL +NP-Demo +DetNP +O-S-ADV-V +S-ADV-V +V-ADV +PrepNp +DetNP +DetNP +222518 Conj-CL +Conj-CL +S-ADV-V-O +V-O-ADV +DetNP +PrepNp +DetNP +AdjpNp +222527 Conj-CL +S-V-O +CLaCL +S-V-O +V2CL +222533 V-ADV-ADV +222535 Conj-CL +ClCl2 +CLaCL +ADV-S-V +PrepNp +222541 V-O +S-ADV-V +AdjpNp +PrepNp +ADV-V-O +V2CL +S-VC-P +222549 Conj-CL +ADV-V-S-ADV +PrepNp +NpPp +PrepNp +NP-Demo +DetNP +NP-CL +NpAdjp +DetNP +NPofNP +DetNP +ADV-P +S-ADV-ADV-ADV-V +V-O +NpAdjp +222566 Conj-CL +222568 V-S +S-ADV-V +DetNP +NPofNP +DetNP +ADV-V +NpaNp +222576 CLaCL +ADV-V +PrepNp +222580 V2CL +DetNP +V-O-IO +DetNP +222585 Conj-CL +222587 S-V +CLaCL +S-V +AdvpNp +Np-Appos +DetAdj +DetCL +ADV-V-O +PrepNp +DetNP +222598 V2CL +CLaCL +S-ADV-ADV-V-O +AdjpNp +222603 ADV-V-O +V2CL +NpPp +PrepNp +DetNP +222609 Conj-CL +ADV-V-ADV +PrepNp +AdjpNp +PrepNp +NpAdjp +NpAdjp +NpAdjp +V-ADV +PrepNp +DetNP +P-S +222622 Conj-CL +ClCl +ADV-V-ADV +V-ADV +PrepNp +NpAdjp +ADV-V-ADV +ADV-V +PrepNp +222632 Conj-CL +ClCl +ClCl2 +ADV-V-S +PrepNp +AdjpNp +ADV-V-ADV +PrepNp +ADV-V-O +ADV-V-O +ADV-V-ADV +PrepNp +NpNump +222646 Conj-CL +ADV-ADV-V +PrepNp +DetNP +222652 DetNP +V-O +NpPp +PrepNp +PrepNp +NpAdvp +PrepNp +NpaNp +ofNPNP +222662 AdjpNp +ADV-S-ADV-V-O +O-V +DetNP +V-O +DetNP +222669 Conj-CL +222671 sub-CL +V-ADV +PrepNp +DetNP +V-ADV-ADV +PrepNp +PrepNp +DetNP +AdjpNp +V-O +222682 Conj-CL +V-ADV-S +PrepNp +NpAdjp +V-S-O +DetCL +VC-P +ofNPNP +DetAdj +222692 Conj-CL +ClCl2 +V-S +222696 PrepNp +ClCl2 +ClCl +Np2CL +Np2CL +222702 S-ADV-ADV-ADV-V-ADV +O-V-IO +NpAdjp +NpaNp +DetNP +222708 DetNP +NPDetAdj +DetAdj +PrepNp +PrepNp +DetNP +NPofNP +DetAdj +V-O +V2CL +PrepNp +DetCL +S-VC-P +AdjpNp +NPofNP +PrepNp +222725 Conj-CL +222727 V-S +DetAdj +V-O +AdvpCL +sub-CL +O-V +O-O2-V +DetNP +NPofNP +222737 Conj-CL +222739 PrepNp +Demo-NP +DetNP +CLaCL +V2CL +222745 V2CL +sub-CL +ADV-O-V +PrepNp +DetNP +NPofNP +DetNP +NP-Demo +DetNP +222755 Conj-CL +222757 PrepNp +aCLaCL +222760 S-O-V-ADV +NpPp +PrepNp +PrepNp +DetNP +222766 ADV-S-V-O +V2CL +NPofNP +DetNP +Conj2VP +222772 NpAdjp +NpPp +PrepNp +222776 Conj-CL +222778 ADV-V-O +PrepNp +O-V +sub-CL +PtclCL +ADV-P-ADV-VC-S +PrepNp +NP-Demo +DetNP +that-VP +ADV-V +222790 Conj-CL +222792 V-IO-O +PrepNp +PrepNp +DetNP +IO-V-ADV-ADV +CLaCL +V-O +DetNP +NPofNP +DetNP +222803 V-O-ADV-ADV +PrepNp +DetNP +PrepNp +aNpaNp +222809 DetNP +NPofNP +222812 DetNP +2Pp +PrepNp +PrepNp +222817 Conj-CL +aCLaCL +222820 S-V-ADV +DetCL +V2CL +222824 S-V +222826 Conj-CL +222828 P-VC-ADV +PrepNp +222831 DetNP +NpAdjp +that-VP +222835 DetNP +NPDetAdj +DetAdj +PrepNp +Np-Appos +DetNP +PrepNp +DetNP +NPofNP +V2CL +ClCl +CLaCL +V-ADV +PrepNp +NP-Demo +DetNP +222852 V2CL +CLaCL +CLaCL +ADV-V +222857 ADV-V +2Advp_h1 +222860 CLaCL +ADV-V +V2CL +222864 ADV-V +2Advp_h1 +222867 Conj-CL +ClCl +Conj3CL +V-S +DetNP +NPofNP +NP-Demo +DetNP +222876 ADV-ADV-V +DetNP +222879 O-V +DetNP +NPofNP +CLaCL +Conj4CL +ADV-ADV-V-ADV +DetNP +222887 ADV-V +DetNP +222890 ADV-V +DetNP +222893 V2CL +222895 V-O +222897 Conj-CL +P-VC-ADV-S +that-VP +ClCl +IO-V-S +DetNP +Demo-NP +DetNP +NPofNP +DetNP +S-ADV-V +222909 Conj-CL +CLaCL +V-ADV-ADV +NP-all +PrepNp +AdjpNp +222916 V-O-ADV +All-NP +DetCL +V-ADV +PrepNp +CLaCL +V-O +DetNP +NPofNP +DetNP +222927 V-O-ADV-ADV +NpPp +PrepNp +Np-Appos +DetNP +Np-Appos +PrepNp +All-NP +222936 S-IO +NpAdjp +Np-Appos +Np-Appos +NPofNP +Np-Appos +AdjpNp +V-ADV +PrepNp +NP-CL +NPofNP +O-V-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +NpAdjp +PrepNp +NP-CL +Np-Appos +NPofNP +Np-Appos +DetNP +NPofNP +DetCL +VC-P-ADV +PrepNp +NPofNP +PrepNp +DetCL +V-O-ADV-ADV-ADV +NPofNP +PrepNp +PrepNp +NPofNP +PrepNp +NPofNP +Np-Appos +Np-Appos +DetNP +NPofNP +222978 ADV-V-O-ADV-ADV-ADV +PrepNp +NpaNp +222982 PrepNp +NPofNP +PrepNp +All-NP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +AdvpNp +NPofNP +Np-Appos +All-NP +Np-Appos +DetCL +VC-P +PrepNp +Np-Appos +NPofNP +AdjpNp +223003 IO-S-ADV +NpaNp +223006 PrepNp +NpaNp +Np-Appos +NPofNP +223011 Np-Appos +Np-Appos +223014 Conj-CL +223016 DetNP +NPofNP +PrepNp +Np-Appos +PrepNp +All-NP +sub-CL +S-V-ADV +DetNP +NPofNP +PrepNp +All-NP +DetNP +223030 Conj-CL +223032 NPofNP +DetNP +NP-CL +O-V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +sub-CL +223046 NPofNP +ADV-ADV-V +PrepNp +DetNP +NPofNP +sub-CL +ADV-ADV-V-ADV +2Advp_h1 +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +223061 Conj-CL +ClCl +V-O +V-O +sub-CL +V-O-IO-ADV +AdjpNp +NpAdjp +PrepNp +DetCL +CLaCL +V-S +223074 S-VC-P +V-ADV-ADV +PrepNp +PrepNp +DetNP +PpNp2Np +PrepNp +NPofNP +aNpaNp +223086 Conj-CL +223088 Np2CL +223090 that-VP +ClCl +CLaCL +ADV-V-O +V-ADV +PrepNp +223097 V-ADV +PrepNp +DetNP +sub-CL +223102 AdjpNp +AdvPp +PrepNp +sub-CL +ADV2CL +AdvPp +PrepNp +DetNP +AdjpNp +223112 ADV-P-VC +2Np +aNpaNp +223117 aNpaNp +223121 ADV-S-P +DetNP +PpNp2Np +PrepNp +IO-V +AdvpNp +Np-Appos +NpPp +PrepNp +223131 Conj-CL +223133 DetNP +sub-CL +P-VC-ADV-ADV +NPofNP +PrepNp +Np-Appos +All-NP +DetCL +V2CL +aNpaNp +223144 NpAdvp +223147 Conj-CL +223149 NPofNP +PrepNp +2Pp +PrepNp +PrepNp +sub-CL +223156 Conj-CL +S-ADV-V +DetAdj +PrepNp +223161 Conj-CL +223163 NPofNP +PrepNp +PrepNp +All-NP +NPofNP +NpaNp +223170 Np-Appos +DetCL +O-ADV-V +DetNP +PrepNp +sub-CL +S-P-VC-ADV +DetNP +NPofNP +DetNP +PrepNp +223182 Conj-CL +S-IO-V +DetNP +223186 Conj-CL +S-ADV-ADV-V-ADV +Np-Appos +DetNP +NPofNP +DetNP +aNpaNp +223194 AdjpNp +ofNPNP +223197 PrepNp +NPofNP +ADV-V +DetNP +PrepNp +DetCL +VC-S-P +223205 sub-CL +CLaCL +CLaCL +ADV-ADV-ADV-V +V-O +DetNP +PrepNp +Conj2VP +223215 V-ADV +PrepNp +DetNP +NPofNP +223220 V-S +DetNP +AdjpNp +ofNPNP +223225 CLaCL +ADV-V +V-O +VC-P +223230 V-O-ADV +DetNP +NPofNP +DetNP +AdjpNp +PrepNp +NPofNP +NPofNP +AdjpNp +Conj4Np +223244 Conj-CL +V-O-S-ADV-ADV-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetCL +V-S-ADV +DetNP +NPofNP +PrepNp +NP-CL +CLaCL +S-V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +223267 V-O-ADV +Conj2VP +223270 DetNP +PrepNp +NP-CL +DetCL +V2CL +223276 PrepNp +DetNP +Intj2CL +223280 ADV-V-O-S-ADV +PrepNp +DetNP +PrepNp +NPofNP +223286 Conj-CL +aCLaCL +223289 S-V-O-ADV +DetNP +NPofNP +DetNP +AdjpNp +PrepNp +NpPp +PrepNp +223298 ADV-S-ADV-V-ADV-ADV-ADV +AdvpNp +DetAdj +V-O +DetNP +AdjpNp +NPofNP +DetAdj +PrepNp +DetNP +NPofNP +PrepNp +CLaCL +S-ADV-O-V +PrepNp +DetNP +223315 O-ADV-V +DetNP +NPofNP +NP-CL +S-V +DetNP +NPofNP +PrepNp +223324 Conj-CL +ClCl2 +sub-CL +ADV-V-O +O-V-ADV +DetNP +PrepNp +V-O-S-ADV-ADV-ADV +DetNP +PrepNp +AdjpNp +V-O +DetCL +ADV-V +ClClCl +V-ADV +All-NP +NpNpNpNp +P-ADV +NpNpNpNpNp +P2CL +12Np +NPofNP +AdvpNp +223349 CLaCL +S-ADV-ADV-ADV-O-V +223352 DetNP +NPofNP +DetNP +that-VP +S-P-ADV-VC +DetCL +O-V +DetNP +223361 ADV-V-ADV +DetCL +V2CL +223365 Conj-CL +223367 Np2CL +intjNP +Np-Appos +All-NP +DetCL +V2CL +223374 Conj-CL +223376 ADV-O-V +PrepNp +ADV-V-O +DetAdj +O-V-S +DetNP +DetCL +V2CL +223385 Conj-CL +V-O +that-VP +S-VC-P-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +DetCL +O-V +DetNP +223398 Conj-CL +223400 Np2CL +Np-Appos +intjNP +DetCL +CLaCL +V-O +DetCL +O-V +DetNP +223410 V-O +that-VP +CLaCL +S-V-O +DetNP +NPofNP +DetNP +223418 O-V-ADV +DetNP +NPofNP +Conj3Np +DetNP +NPofNP +223425 DetNP +223427 DetNP +223429 that-VP +S-ADV-O-V +DetNP +NPofNP +DetNP +PrepNp +223436 Conj-CL +ADV-V-IO-O-ADV +PrepNp +DetNP +NpaNp +NPofNP +223443 AdjpNp +PrepNp +NPofNP +NpaNp +223448 NPofNP +NPofNP +NP-CL +DetNP +S-V-IO-ADV +PrepNp +DetNP +NPofNP +223457 aCLaCL +223459 IO-O +DetCL +ADV-O-V +PrepNp +NPofNP +NpAdjp +Conj3Np +223468 NpAdjp +223470 IO-S +DetCL +CLaCL +ADV2CL +PrepNp +223476 CLaCL +V-O +DetNP +223480 V-O +DetNP +NpaNp +223485 CLaCL +S-ADV +NpaNp +223489 PrepNp +All-NP +NPofNP +Np-Appos +Np-Appos +DetCL +V-O +DetAdj +aNpaNp +223499 NpAdvp +223502 S-IO +Conj3Np +223506 All-NP +Np-Appos +DetCL +V-O +DetAdj +aNpaNp +223513 NpAdvp +223516 Conj-CL +ADV-VC-S-P +PrepNp +DetNP +223521 Conj-CL +CLaCL +S-ADV-ADV-V +S-ADV-V +223526 S-ADV-V +S-ADV-V +PrepNp +PrepNp +223531 Conj-CL +notCLbutCL2CL +S-P-ADV +DetNP +NPofNP +PrepNp +DetNP +S-V +DetNP +NPofNP +223542 Conj-CL +ClCl2 +sub-CL +S-ADV-O-V +Np-Appos +DetCL +ADV-O-V +NPofNP +DetNP +S-ADV-VC-P +NpAdjp +O-ADV-V +223555 S-V-O-O2-ADV-ADV +DetNP +NPofNP +DetNP +AdjpPp +PrepNp +DetNP +NPofNP +CLaCL +V-S +ofNPNP +DetNP +223568 CLaCL +ADV-S-V +PrepNp +DetNP +223573 ADV-V +NP-CL +ADV-V-S-O-ADV-ADV +PrepNp +DetNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +Np-Appos +223587 Conj-CL +ClCl2 +sub-CL +Conj6CL +S-P-VC +223593 V-ADV +223595 V-ADV +PrepNp +223598 V-O +DetNP +223601 V-O-ADV +DetCL +V2CL +V-ADV +PrepNp +DetNP +223608 V-O +S-VC-P-ADV +NpNpNpNp +NPofNP +NPofNP +NpPp +PrepNp +NPofNP +NPofNP +V-O-ADV +DetNP +NPofNP +NpaNp +DetNP +223623 DetNP +PrepNp +DetNP +Conj-CL +223628 Np2CL +DetCL +V-O +223633 Np2CL +DetCL +V-O +ADV-V +223639 Np2CL +DetCL +V-O +ADV-V +223645 Np2CL +DetCL +V-O +DetNP +223650 S-ADV-O-V +S-ADV-V +PrepNp +PrepNp +DetNP +NPofNP +DetNP +DetNP +223659 Conj-CL +223661 DetNP +NPofNP +DetNP +PrepNp +PrepNp +DetNP +sub-CL +V2CL +223670 Conj-CL +aCLaCL +223673 ClCl +S-V +sub-CL +O-V +223678 ClCl2 +sub-CL +P-VC +NPofNP +S-P-VC +DetNP +NPofNP +223686 Conj-CL +ClCl2 +sub-CL +S-O-V +DetNP +DetNP +NPofNP +DetNP +PtclCL +S-ADV-V +DetNP +NPofNP +PrepNp +223700 Conj-CL +V-S-ADV-O +DetNP +PpNp2Np +PrepNp +O-V +DetNP +Np-Appos +DetNP +PpNp2Np +PrepNp +NpaNp +223713 NPofNP +223715 Conj-CL +notCLbutCL2CL +CLaCL +S-P-VC +NpPp +PrepNp +DetAdj +223723 S-P +NpPp +2Pp +PrepNp +DetAdj +PrepNp +223730 S-P +NpPp +PrepNp +DetAdj +223735 S-P-ADV +PrepNp +2Np +AdvpNp +S-P +ofNPNP +DetNP +notPPbutPP +PrepNp +PrepNp +DetNP +223747 Conj-CL +CLaCL +P-S +DetNP +NPofNP +DetAdj +223754 P-S +DetNP +NPofNP +DetNP +223759 P-ADV +PrepNp +All-NP +223763 Conj-CL +PtclCL +P-S +that-VP +V-O +DetNP +NPofNP +DetNP +223772 Conj-CL +ClCl +ADV2CL +sub-CL +V-S +223778 PtclCL +S-O-V +DetNP +NPofNP +DetNP +NPofNP +DetNP +223786 ADV-V +223788 Conj-CL +ClCl +CLaCL +VC-S-P +DetNP +223794 S-P +All-NP +sub-CL +223798 sub-CL +CLaCL +PtclCL +V-ADV +PrepNp +DetNP +NPofNP +223806 V-ADV +PrepNp +DetCL +V-S +223811 Conj-CL +ClCl2 +sub-CL +S-O-V +DetNP +NPofNP +ofNPNP +O-V +223820 PtclCL +P-S +Np-Appos +DetNP +DetCL +V-O +DetNP +223828 ADV-V +PrepNp +223831 ADV-V +223833 sub-CL +ADV-V-S-O +DetNP +DetNP +223838 Conj-CL +ClCl2 +sub-CL +S-ADV-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +AdjpNp +PrepNp +DetNP +NPofNP +ADV-ADV-S-ADV-V +PrepNp +223854 Conj-CL +AdvpCL +CLaCL +sub-CL +V2CL +223860 sub-CL +223863 that-VP +223865 DetAdj +sub-CL +V-S +DetNP +S-P-VC +ofNPNP +DetNP +223873 Conj-CL +ClCl +O2CL +V2CL +223878 ClCl +ADV-ADV +sub-CL +223882 S-P-VC +NP-all +aNpaNp +223887 PrepNp +sub-CL +223890 that-VP +ClCl +ClCl +ADV-V-S +ADV-S +223896 DetCL +V2CL +ADV-V-S +DetCL +V-O +DetNP +223904 ADV-V +223906 ClCl +ADV-V-S +DetCL +V-O +ADV-V-ADV +PrepNp +223913 ClCl +ClCl +P-S +NpAdjp +V2CL +DetNP +NPofNP +ADV-V +DetNP +NPofNP +223924 NPofNP +PrepNp +DetNP +NPofNP +S-O-V +ofNPNP +DetNP +NpaNp +223934 CLaCL +ClCl +P-S-ADV +DetNP +NPofNP +V-O +S-P +NpaNp +223943 PrepNp +DetNP +NPofNP +223947 O-ADV-V +NPofNP +223950 ADV-VC-S-P +NPofNP +PrepNp +DetNP +NPofNP +223956 Conj-CL +223958 that-VP +223960 S-IO-V +O-S-V +DetNP +NpPp +PrepNp +DetNP +CLaCL +S-V +All-NP +223970 P-VC-S-ADV +All-NP +DetNP +DetNP +223975 sub-CL +223977 PrepNp +NPofNP +All-NP +PrepNp +sub-CL +ADV-P +PrepNp +NPofNP +223986 Conj-CL +CLaCL +ADV-ADV-S-V-ADV +PrepNp +NPofNP +V-ADV +PrepNp +NpaNp +DetNP +223996 DetNP +223998 S-ADV +NpPp +NPofNP +PrepNp +NPofNP +Np-Appos +PrepNp +All-NP +DetCL +V2CL +224009 Conj-CL +ADV-V-S +224012 Conj-CL +CLaCL +S-V +224016 V-O-ADV +DetNP +NPofNP +DetNP +V-ADV-ADV-ADV +DetNP +ofNPNP +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +Np-Appos +224030 O-V-S-O2-ADV +DetNP +PpPpPpPp +PpPpPpPpPp +PrepNp +PrepNp +DetNP +ofNPNP +PrepNp +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +AdjpNp +V2CL +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +AdvpNp +PrepNp +DetCL +VC-S-P +NpaNp +224065 V-O +NpPp +PrepNp +NPofNP +224070 ClCl +Conj-CL +P-S +DetNP +V2CL +224076 ClCl +ADV2CL +PrepNp +AdjpNp +ADV2CL +DetNP +224083 CLaCL +ADV2CL +224086 ADV2CL +PrepNp +NPofNP +224090 Conj-CL +V-O +V-ADV-S-ADV +PrepNp +NPofNP +224096 Conj-CL +P-S-ADV +DetNP +224100 PtclCL +P2CL +AdvpNp +224104 ClCl +PtclCL +P2CL +AdvpNp +sub-CL +P-S +NP-CL +DetNP +CLaCL +S-V-O-ADV +PrepNp +224116 O-ADV +PrepNp +DetNP +224120 Conj-CL +O-V-ADV +PrepNp +DetNP +224125 CLaCL +ADV-V +224128 O-V +224130 Conj-CL +V-O +O-V-S-ADV +Np-Appos +DetNP +NPofNP +PrepNp +224138 Conj-CL +224140 sub-CL +S-ADV-V +PrepNp +224144 Conj-CL +ADV-ADV +PrepNp +224148 Conj-CL +O-S-V +DetNP +224152 Conj-CL +CLaCL +V-S-O +DetNP +224157 V-IO-ADV +PrepNp +224160 Conj-CL +IO-S-V-ADV +DetCL +V2CL +DetNP +notPPbutPP +PrepNp +PrepNp +224169 Conj-CL +224171 DetCL +notCLbutCL2CL +V2CL +V-ADV +PrepNp +DetCL +V-O +DetAdj +DetNP +NPofNP +PrepNp +sub-CL +224184 AdvpNp +DetNP +NPofNP +DetNP +NP-CL +IO-S-V-O-ADV +DetNP +PrepNp +P-S +NpaNp +S-V +ofNPNP +DetNP +224198 S-V +ofNPNP +DetNP +224202 P-S +NP-CL +ADV-ADV-V-S-O +2Advp_h1 +224207 Conj-CL +S-P +NP-Demo +DetNP +Conj2Pp +PrepNp +DetNP +224215 AdvPp +PrepNp +DetNP +224219 Conj-CL +224221 V-IO-S-ADV +DetNP +DetNP +PrepNp +224226 Conj-CL +ADV-V +224229 VC-P +Conj2Pp +PrepNp +224233 PrepNp +224235 notCLbutCL2CL +P2CL +PrepNp +P2CL +PrepNp +224241 Conj-CL +V-O-ADV +Np-Appos +NPofNP +NPofNP +DetNP +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +DetNP +PrepNp +DetCL +CLaCL +VC-S-P +NPofNP +All-NP +DetCL +V-ADV-ADV +PrepNp +PrepNp +DetCL +V-IO-S +DetNP +224267 P-ADV +NPofNP +NpaNp +DetCL +ADV-P-ADV +PrepNp +224274 AdvpNp +DetCL +V-ADV +DetNP +NPofNP +DetNP +NPofNP +PpNp2Np +PrepNp +Np-Appos +DetNP +NPofNP +224287 Conj-CL +notCLbutCL2CL +ADV-S-IO +PrepNp +Np-Appos +DetNP +DetCL +P-S-VC +NPofNP +NpaNp +DetNP +224299 DetNP +NPofNP +ADV2CL +PrepNp +NPofNP +224305 Conj-CL +ClCl2 +sub-CL +S-P +NpPp +PrepNp +CLaCL +V-S +DetNP +224315 V-S +DetNP +224318 Conj-CL +S-O-V +DetNP +224322 Conj-CL +ADV-ADV-S +ADV-ADV-V-S +224327 PrepNp +PrepNp +sub-CL +ADV-ADV +PrepNp +PrepNp +DetCL +VC-P-S-ADV +DetNP +Np-Appos +All-NP +DetNP +notNPbutNP +NpPp +PrepNp +NpAdvp +DetNP +AdvpNp +NpPp +PrepNp +NPofNP +NP-CL +224350 S-VC-P-ADV +NPofNP +NPofNP +PrepNp +CL-NP +O-V +Np-Appos +DetCL +CLaCL +V-O +DetAdj +224362 V-O-ADV +DetCL +ADV-V +PrepNp +V2CL +224368 that-VP +O2-V-O +NPofNP +AdjpNp +224373 S-ADV-ADV-V-ADV +PrepNp +PrepNp +PrepNp +DetCL +VC-S-P-ADV +NPofNP +AdjpNp +PrepNp +DetCL +224384 P-VC-S +DetNP +NPofNP +224388 Conj-CL +CLaCL +CLaCL +ADV-V-O-ADV-ADV +ADV-V-ADV +DetNP +DetNP +ofNPNP +V2CL +P-ADV-VC +224399 O2CL +DetNP +NPofNP +DetNP +NPofNP +224405 CLaCL +ADV-ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +DetNP +224413 V-ADV-ADV +DetNP +CLaCL +V-O-IO +DetNP +224420 that-VP +VC-P +AdjpCL +O-ADV-V +O-V +224426 Conj-CL +ADV-V-IO-ADV +PrepNp +224430 Conj-CL +notCLbutCL2CL +224433 PrepNp +that-VP +V-IO +ADV2CL +AdvPp +PrepNp +Np-Appos +NP-CL +O-V +IO-V +DetCL +V-ADV +PrepNp +DetCL +V-ADV-O +PrepNp +NP-CL +Np-Appos +DetNP +NPofNP +CLaCL +S-V-ADV +PrepNp +DetNP +NPofNP +224459 V-ADV +PrepNp +DetNP +NPofNP +224464 Conj-CL +ADV-O-V-ADV-ADV +V-ADV +PrepNp +PrepNp +DetNP +PrepNp +NP-CL +Np-Appos +DetNP +NPofNP +Np-Appos +CLaCL +ADV-O-V-ADV-ADV +PrepNp +AdvpNp +DetNP +DetNP +PrepNp +NP-CL +NP-Demo +DetNP +ADV-V +PrepNp +224489 V-ADV +PrepNp +NPofNP +DetNP +NPofNP +DetNP +224496 Conj-CL +notCLbutCL2CL +ADV2CL +ADV-V-ADV-ADV +PrepNp +DetNP +224503 that-VP +Conj3CL +S-O-V +DetNP +224508 S-O +DetNP +224511 S-O +DetNP +224514 Conj-CL +224516 DetNP +sub-CL +S-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +Np-Appos +NpAdjp +DetCL +V-IO +224531 sub-CL +AdvpCL +S-ADV-ADV-ADV-V +VC-S-P-ADV +PrepNp +PrepNp +224538 Conj-CL +ADV-ADV-S-V +PrepNp +224542 Conj-CL +ADV-ADV-S-ADV-V-O +PrepNp +DetAdj +V2CL +224548 Conj-CL +224550 DetNP +ofNPNP +PrepNp +DetNP +that-VP +ClCl2 +ADV-P-VC-S +S-ADV-V +PrepNp +224560 Conj-CL +ADV-ADV-V-ADV-ADV +2Advp_h1 +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +PrepNp +DetNP +224571 Conj-CL +224573 sub-CL +ADV-V-IO-ADV +P-VC +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +AdvAdv +V2CL +PrepNp +DetNP +NPofNP +224588 Conj-CL +notCLbutCL2CL +ADV2CL +ADV-V-ADV-ADV +PrepNp +DetNP +PrepNp +NP-CL +Np-Appos +DetNP +NPofNP +Np-Appos +ADV-ADV-O-V +PrepNp +DetNP +224604 ClCl2 +ADV2CL +PrepNp +ClCl +ClCl2 +sub-CL +CLaCL +ADV-S-ADV-V +PrepNp +AdjpNp +DetNP +PrepNp +DetNP +224618 ADV-S +PrepNp +DetNP +DetNP +ADV-ADV-S-V-ADV +2Advp_h1 +PrepNp +All-NP +DetNP +PrepNp +ADV-S-V +sub-CL +CLaCL +ADV-S-VC-P +PrepNp +PrepNp +224636 ADV-V-S +224638 Conj-CL +V-S-ADV-ADV +DetNP +2Pp +PrepNp +PrepNp +AdvPp +PrepNp +DetCL +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +NP-CL +S-VC-P +NPofNP +DetCL +V2CL +224659 Conj-CL +224661 AdvpCL +sub-CL +S2CL +DetNP +AdvpNp +DetNP +224668 Conj-CL +224670 sub-CL +ADV-S-V +DetNP +ofNPNP +DetAdj +DetAdj +AdvAdv +NpaNp +DetNP +NPofNP +DetNP +224682 DetNP +NpPp +PrepNp +Np-Appos +NPofNP +Np-Appos +DetNP +AdjpNp +Np-Appos +PrepNp +DetAdj +224694 Conj-CL +ADV-P-S +AdvPp +PrepNp +NpAdjp +V2CL +DetNP +224702 Conj-CL +aCLaCL +224705 S-P-ADV +DetNP +PrepNp +PrepNp +224710 S-P-ADV +DetNP +PrepNp +AdjpNp +PrepNp +224716 Conj-CL +224718 sub-CL +ADV-S-V-ADV +DetNP +ofNPNP +DetAdj +DetNP +PrepNp +DetAdj +AdjpAdvp2Advp +DetCL +O-V +NpaNp +DetNP +NPofNP +DetNP +224734 DetNP +NPofNP +DetNP +PrepNp +PrepNp +Np-Appos +DetAdj +Np-Appos +224743 Conj-CL +Conj-CL +224746 sub-CL +ADV-ADV-ADV +PrepNp +ofNPNP +PrepNp +All-NP +PrepNp +AdvPp +PrepNp +ofNPNP +PrepNp +All-NP +PrepNp +NPofNP +224761 Conj-CL +224763 sub-CL +ADV-P-VC-S +PrepNp +DetNP +NPofNP +DetNP +AdjpNp +DetAdj +AdvPp +PrepNp +DetNP +NPofNP +DetAdj +DetAdj +224778 Conj-CL +224780 sub-CL +V-S +DetNP +224784 Conj-CL +224786 ADV-V-S +DetNP +DetNP +sub-CL +224791 sub-CL +V-S-ADV +DetNP +PrepNp +DetNP +AdvpNp +DetNP +PrepNp +PrepNp +NpAdjp +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +224807 Conj-CL +O-V +224811 DetNP +sub-CL +S-V +DetNP +224816 ADV-V +224818 S-ADV-ADV-V-ADV +S-V-ADV +DetNP +PrepNp +224823 Conj-CL +224825 that-VP +S-ADV-V +S-V-ADV +PrepNp +Np-Appos +PrepNp +DetNP +NPofNP +224834 Conj-CL +224836 PrepNp +DetNP +PrepNp +DetNP +sub-CL +224842 sub-CL +V-S-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +AdvpNp +PrepNp +NPofNP +224853 Conj-CL +224855 sub-CL +P-VC-ADV +DetNP +NPofNP +DetNP +NPofNP +ADV-VC +AdvpNp +DetNP +224866 that-VP +224868 DetNP +AdjpNp +ofNPNP +sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +DetCL +ADV-V-S-O +DetNP +224880 Conj-CL +S-V-ADV +DetCL +V2CL +PrepNp +DetNP +224887 Conj-CL +ClCl2 +sub-CL +V-ADV +PrepNp +224893 that-VP +ADV-V-ADV +224897 that-VP +ClCl +S-ADV-ADV-V +V-ADV +PrepNp +S-ADV-ADV-V +224904 Conj-CL +CLaCL +ADV-ADV-V-ADV +ADV-V +DetNP +224910 ADV-V-ADV +ADV-V +DetNP +224914 ADV-S-V-O +AdvpNp +S-VC-P +aCLaCL +224919 P-ADV +DetNP +224922 P-ADV-ADV +V2CL +DetNP +PrepNp +Np-Appos +224928 Conj-CL +CLaCL +CLaCL +ADV-V-S-ADV-ADV +DetNP +PrepNp +DetNP +AdjpNp +ofNPNP +PrepNp +DetCL +V-O +DetNP +NPofNP +224943 V-O-O2-IO +DetNP +NPofNP +NPofNP +DetNP +224949 CLaCL +V-O-IO-ADV +DetNP +PrepNp +ADV-V +PrepNp +224956 O-O2-IO +DetNP +NPofNP +NPofNP +DetNP +224962 Conj-CL +ClCl +S-ADV-ADV-V +sub-CL +notCLbutCL2CL +VC-P +PrepNp +P2CL +PrepNp +224972 Conj-CL +O2CL +224975 ClCl +V2CL +sub-CL +notCLbutCL2CL +VC-P +PrepNp +P2CL +PrepNp +224984 ADV-V +224987 that-VP +224990 IO-V-O-O2-ADV +PrepNp +O-V +224994 P-ADV +PrepNp +224997 P-ADV +PrepNp +225000 Conj-CL +225002 DetNP +that-VP +Conj3CL +VC-P +NPofNP +DetNP +225009 V-ADV-O +PrepNp +CL-NP +ADV-V +PrepNp +NPofNP +225016 ADV-V-IO +V-ADV +PrepNp +DetNP +DetNP +225022 O-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +225029 Conj-CL +225031 sub-CL +V-O-O2-IO-ADV +DetNP +NPofNP +NpaNp +DetNP +225038 DetNP +PrepNp +DetNP +DetNP +NPofNP +DetNP +PrepNp +225046 Conj-CL +225048 sub-CL +P-VC +NPofNP +DetNP +DetNP +225054 Conj-CL +O-V-ADV-ADV +AdjpNp +PrepNp +O-ADV-V +225060 Conj-CL +S-P +DetNP +NPofNP +225065 Conj-CL +CLaCL +ADV-ADV-V-O-ADV +CLaCL +V-ADV +PrepNp +DetNP +225073 V-IO +DetNP +DetNP +NPofNP +PrepNp +225079 O2CL +Np-Appos +DetNP +NpAdjp +225084 Conj-CL +CLaCL +S-P +DetNP +NPofNP +DetNP +225091 S-P-ADV +DetNP +NPofNP +DetNP +NpAdjp +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +225102 Conj-CL +225104 Np2CL +sub-CL +IO-V +V-O +that-VP +S-V-ADV-ADV +DetNP +DetNP +PrepNp +ADV-V +Np-Appos +225116 Conj-CL +S-IO-V-ADV +DetNP +AdjpNp +DetNP +AdjpNp +V2CL +225124 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +V-ADV +PrepNp +NPofNP +DetNP +DetNP +225135 Conj-CL +Conj-CL +ClCl2 +V-S +DetNP +225141 sub-CL +VC-P +NpAdjp +225145 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +P-VC-ADV-ADV +PrepNp +DetNP +DetCL +ADV-VC-S-P-ADV +VC-P +NpAdjp +225158 Conj-CL +225160 Np2CL +NPofNP +AdvpNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetCL +VC-S-P +Np-Appos +DetCL +ADV-V +PrepNp +sub-CL +V-IO +DetNP +225179 Conj-CL +ClCl2 +sub-CL +VC-P +PrepNp +DetNP +S-V-ADV-ADV +Np-Appos +DetNP +NPofNP +DetNP +NpPp +PrepNp +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetCL +V-IO +DetNP +225201 Conj-CL +ADV-V-ADV-ADV-ADV +PrepNp +DetNP +V-ADV +PrepNp +ADV-V +sub-CL +V-S-ADV +PrepNp +NpaNp +NPofNP +225214 AdvpNp +NPofNP +225217 Conj-CL +O-V +225220 S-P +DetNP +225223 ADV-V +225225 Conj-CL +ClCl +225228 DetNP +sub-CL +ADV-ADV +PrepNp +sub-CL +Conj-CL +225235 DetNP +sub-CL +225238 DetNP +ADV-V +225241 Conj-CL +ADV-S-ADV-V-ADV-O +O-V +DetNP +PrepNp +DetNP +PrepNp +All-NP +225250 Conj-CL +ADV-S-P +PrepNp +225254 Conj-CL +S-V-ADV-ADV +PrepNp +225258 Conj-CL +CLaCL +225261 V-S +DetNP +S-V +DetNP +225266 S-V +225268 V-ADV-S-ADV +NP-Demo +Np-Appos +DetNP +NpPp +PrepNp +PrepNp +225276 Conj-CL +CLaCL +S-ADV-ADV-V-O +DetNP +O-V +PrepNp +DetNP +225284 ADV-V +PrepNp +225287 Conj-CL +PtclCL +CLaCL +S-P +DetNP +225293 S-P +DetNP +Conj3Adjp +225299 Conj-CL +S-ADV-VC-P +DetAdj +225303 ADV-V +225305 Conj-CL +ClCl +ClCl +S2CL +DetNP +sub-CL +VC-P-ADV +ADV-IO-V-O +PrepNp +DetAdj +sub-CL +VC-ADV-P-S-ADV +PrepNp +DetNP +PrepNp +DetNP +225322 Conj-CL +225324 sub-CL +S-P-VC +DetNP +225328 Conj-CL +S-P-VC-ADV +V-ADV +PrepNp +DetNP +225334 Conj-CL +O-ADV-V +O-V +225338 Conj-CL +notCLbutCL2CL +225341 O-V +225343 O-V +225345 Conj-CL +ClCl2 +sub-CL +225349 O-ADV-V +225351 DetNP +that-VP +P2CL +225355 Conj-CL +AdvpCL +notCLbutCL2CL +S-V-O +S2CL +DetNP +AdjpNp +V-ADV +PrepNp +225365 Conj-CL +225367 that-VP +ADV-V-ADV-S +PrepNp +NP-CL +S-VC-P +PrepNp +DetNP +NPofNP +225376 Conj-CL +CLaCL +S-V-ADV +DetCL +V2CL +225382 S-ADV +DetCL +V-O +DetAdj +225387 Conj-CL +notCLbutCL2CL +O-V +Np-Appos +O-V +225393 Np2CL +Np-Appos +O-ADV-V +225397 Conj-CL +225399 sub-CL +225401 O-ADV-V +S-V-O +S2CL +DetNP +AdjpNp +V-ADV +PrepNp +225409 Conj-CL +225411 DetNP +Np-Appos +DetCL +V-O +V-O +DetAdj +that-VP +ADV-S-V +DetAdj +225421 Conj-CL +CLaCL +V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +AdvpNp +225431 V-O +CLaCL +S-ADV-V-ADV +AdjpNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +225443 V-O-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +VC-P +PrepNp +DetNP +NPofNP +225455 P-S +AdjpNp +225458 S-O-V-ADV +PrepNp +NP-Demo +DetNP +NPofNP +DetNP +225465 S-IO-ADV +DetNP +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +225473 Conj-CL +Conj-CL +aCLaCL +225477 S-ADV-V-O +PronNP +DetNP +NPofNP +225482 ADV-O +DetNP +NPofNP +225486 Conj-CL +S-ADV-P +AdjpNp +NpPp +PrepNp +Np-Appos +225493 Conj-CL +S-ADV-V-O-ADV +DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +Np-Appos +PrepNp +DetNP +NPofNP +NpaNp +DetNP +225508 DetNP +225510 Conj-CL +225512 Np2CL +NP-CL +DetNP +NPofNP +DetNP +ADV-V-ADV +PrepNp +PrepNp +DetNP +S-ADV-V-O-ADV +DetNP +O-V-ADV +DetNP +ofNPNP +Conj2Pp +PrepNp +NPofNP +NPofNP +225531 PrepNp +DetNP +PrepNp +DetNP +sub-CL +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +Np-Appos +DetCL +V-ADV +notPPbutPP +PrepNp +PrepNp +225548 Conj-CL +CLaCL +S-O-V +DetCL +P-VC +PrepNp +NPofNP +DetNP +225557 S-O +DetCL +P2CL +PrepNp +NPofNP +DetNP +225564 Conj-CL +CLaCL +S-P +DetNP +NPofNP +DetNP +225571 S-P +DetNP +NPofNP +DetNP +NpaNp +225578 sub-CL +ClCl +ClCl +S-P-ADV +DetNP +NPofNP +DetNP +PrepNp +sub-CL +IO-ADV-V +DetNP +NPofNP +DetNP +sub-CL +ADV-V +225594 Conj-CL +S-O-ADV-V +DetCL +P-VC +PrepNp +O-V +225601 Conj-CL +225603 notPPbutPP +PrepNp +PrepNp +sub-CL +S-V-ADV +NPofNP +PrepNp +225611 Conj-CL +225613 sub-CL +S-O-ADV-V +NPofNP +225617 Conj-CL +225619 sub-CL +S-P +PrepNp +225623 S-P-ADV +DetNP +PrepNp +225627 S-P-ADV +DetNP +PrepNp +225631 Conj-CL +225633 sub-CL +S-V-ADV +DetNP +NPofNP +DetCL +V-O-ADV +DetNP +PrepNp +PrepNp +DetCL +V-ADV-O +PrepNp +Np-Appos +AdvpNp +DetNP +AdjpNp +NPofNP +PrepNp +DetNP +AdjpNp +V-ADV +PrepNp +ofNPNP +225657 Conj-CL +Conj-CL +225660 Np2CL +P-VC +ADV-ADV-ADV +DetNP +DetCL +ADV-V +PrepNp +225668 Conj-CL +CLaCL +225671 sub-CL +ADV-V +PrepNp +V2CL +225677 sub-CL +ADV-O-V +DetNP +NPofNP +DetNP +225683 Conj-CL +225685 S-ADV-V +NPofNP +NPofNP +225689 Conj-CL +notCLbutCL2CL +V-O-ADV-ADV +NPofNP +PrepNp +V-O +NP-CL +NPofNP +225698 PrepNp +Np2CL +Np-Appos +DetNP +225704 PronNP +DetNP +DetNP +NPofNP +that-VP +VC-P +NPofNP +225712 Conj-CL +225714 sub-CL +P2CL +AdvpNp +225720 P2CL +NPofNP +225723 P2CL +NPofNP +sub-CL +V2CL +sub-CL +ADV-V +225730 Conj-CL +225732 that-VP +ADV-P-S-ADV +DetNP +NPofNP +DetNP +AdvpNp +PrepNp +DetNP +AdjpNp +V-O +V-ADV +PrepNp +225745 Conj-CL +S-O-V +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +225756 Conj-CL +ClCl +IO-S-V-ADV +DetNP +DetNP +notADVbutADV +PrepNp +DetCL +V-ADV +PrepNp +sub-CL +S-V-ADV-ADV +AdvpNp +PronNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +225784 Conj-CL +225786 that-VP +S-V-ADV +All-NP +DetNP +Conj2VP +225792 PrepNp +DetNP +225795 Conj-CL +notCLbutCL2CL +ADV2CL +S-ADV-V-ADV +AdvpNp +PronNP +AdjpNp +O-V +DetNP +NPofNP +DetNP +Np-Appos +AdvpNp +PrepNp +V-O +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +225816 Conj-CL +ADV-V +DetNP +225820 Conj-CL +S-ADV-VC-P +NpAdjp +V2CL +225825 Conj-CL +O-ADV-V +O-V-S +225829 Conj-CL +225831 sub-CL +O-V +O-ADV-V +PrepNp +225836 Conj-CL +ADV-S-V-ADV +AdvpNp +DetNP +DetNP +NPofNP +225843 Conj-CL +CLaCL +O-ADV-V +DetCL +225848 sub-CL +V2CL +225851 S-V-ADV +PronNP +DetNP +NpAdjp +225856 Conj-CL +225858 DetCL +V-O +DetNP +P-S +DetNP +NPofNP +DetNP +sub-CL +ADV-V-ADV +PrepNp +PrepNp +225870 Conj-CL +ClCl +225873 that-VP +ClCl +IO-S-V-ADV +DetCL +V-O +DetNP +PrepNp +IO2CL +DetCL +ADV-P-VC +PrepNp +sub-CL +Conj4CL +O-ADV-V-O2-ADV +O-V +NPofNP +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetCL +VC-S-P-ADV +PrepNp +AdjpNp +225900 O-V +225903 O-V +225906 O-V +225908 Conj-CL +O-V-ADV +PrepNp +225913 sub-CL +S-P +DetNP +PrepNp +PrepNp +225919 PtclCL +S-ADV-ADV-ADV-O-IO-V +CLaCL +S-O-ADV-V +DetNP +AdjpNp +225926 ADV-V-O +PrepNp +NP-all +AdvPp +PrepNp +DetAdj +225933 S-V-ADV +PrepNp +NPofNP +225937 S-P +DetCL +V2CL +225941 S-P +DetCL +V2CL +225945 P2CL +NP-CL +NP-CL +Np-Appos +Np-Appos +DetCL +CLaCL +V2CL +225954 ADV-V +S-VC-P +PrepNp +NPofNP +DetNP +S-ADV-V-ADV +PrepNp +225962 ClCl +S-O-V-ADV +PrepNp +DetNP +NPofNP +DetNP +ClCl +S2CL +Conj7Np +225977 sub-CL +225979 that-VP +ClCl +ADV-V-ADV +PrepNp +All-NP +DetNP +V-ADV +PrepNp +NPofNP +225989 Conj-CL +ADV-V-ADV +PrepNp +NP-all +PrepNp +DetCL +V-O +225997 Conj-CL +225999 sub-CL +S-V-O +NpNpNpNp +aNpaNp +226005 aNpaNp +226008 aNpaNpaNp +226010 V2CL +226012 V2CL +226014 aNpaNpaNp +226018 AdjpNp +NpAdjp +O-V-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NpPp +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +226033 ClCl +226035 PrepNp +ADV-V +226038 DetNP +NPofNP +PrepNp +NpAdjp +that-VP +CLaCL +S-ADV-VC-P +226046 S-P +AdjpNp +DetNP +NPofNP +226051 Conj-CL +V-S-O-ADV +PronNP +P-VC-ADV +PrepNp +DetNP +PrepNp +NP-CL +Np-Appos +DetNP +NPofNP +DetNP +NpPp +NPofNP +PrepNp +S-VC-P +NP-CL +2CLaCL +P-S +Conj6Np +DetNP +226073 DetNP +226075 DetNP +226077 DetNP +226079 DetNP +226081 DetNP +P-S +DetNP +226085 P-S +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +226093 DetNP +All-NP +VC-P +PrepNp +PrepNp +DetNP +Intj2CL +226101 Conj-CL +226103 ADV-S +V-S +DetNP +NPofNP +DetNP +226109 Conj-CL +notCLbutCL2CL +CLaCL +226113 Np2CL +All-NP +NpPp +PrepNp +226119 sub-CL +VC-P +NPofNP +ADV-V-IO-S +PrepNp +226125 ClCl2 +S-VC +notCLbutCL2CL +226129 Np2CL +DetNP +NPofNP +DetNP +NPofNP +DetNP +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +226141 Conj-CL +226143 ofNPNP +DetNP +CLaCL +ADV-V +PrepNp +NP-Demo +DetNP +226151 VC-P-S +DetNP +226154 Conj-CL +notCLbutCL2CL +ADV2CL +S-O-V-ADV +AdvpNp +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +226165 Conj-CL +ClCl2 +ClCl +CLaCL +ADV-V +226171 V-O +NpAdjp +AdjpaAdjp +226175 sub-CL +S-V-ADV +DetNP +PpNp2Np +PrepNp +NPofNP +DetNP +notPPbutPP +PrepNp +PrepNp +DetCL +V2CL +226188 that-VP +S-V-O +DetAdj +DetAdj +226193 sub-CL +226195 CLaCL +O-V +DetNP +226199 O-V +DetNP +226202 Conj-CL +O-V +226205 PtclCL +S-P +PrepNp +DetNP +226210 ADV-V +226212 Conj-CL +226214 DetNP +CLaCL +V-O +PtclCL +O-V +226220 V-O +PtclCL +O-V +226224 Conj-CL +Conj-CL +P2CL +notNPbutNP +NpaNp +DetCL +V2CL +226232 DetCL +V2CL +DetNP +AdjpNp +V2CL +226238 Conj-CL +226240 DetNP +DetNP +that-VP +ClCl +ADV-V-O +PrepNp +PronNP +CLaCL +sub-CL +V-ADV-O +PrepNp +DetNP +NPofNP +226254 sub-CL +V-S-ADV +DetNP +NPofNP +PrepNp +All-NP +DetNP +226262 Conj-CL +Conj-CL +CLaCL +O-V +O-V +226268 O-V +O-V +226271 Conj-CL +226274 Conj-CL +O-S-V +DetNP +NPofNP +226280 Np2CL +intjNP +P-VC-S +Np-Appos +DetCL +V-IO +DetNP +226288 PtclCL +226290 DetNP +DetCL +V2CL +ADV-O-V-ADV +226295 Conj-CL +PtclCL +V-S-O-ADV +DetNP +NPofNP +DetNP +ADV-V-O +PrepNp +DetNP +PronNP +NP-CL +aCLaCL +226308 O-ADV +PrepNp +226311 O-ADV +PrepNp +226314 Conj-CL +sub-CL +CLaCL +S-ADV-V-ADV-O +DetNP +V-O +CLaCL +V-O +DetNP +226324 V-O +DetNP +NPofNP +PrepNp +AdjpNp +NpAdjp +NPofNP +V-ADV +PrepNp +226334 sub-CL +V-O-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +Np-Appos +NP-CL +NP-CL +NPofNP +O-V-ADV +PrepNp +O-ADV-V +notPPbutPP +AdvPp +PrepNp +AdvPp +PrepNp +226354 sub-CL +226356 AdvPp +PrepNp +DetNP +CLaCL +V-O-O2 +DetNP +AdvpNp +NPofNP +NPofNP +226366 O-O2 +DetCL +ADV-V +V2CL +226371 Conj-CL +VC-P +PrepNp +DetNP +NP-CL +ClCl2 +226378 ADV-P-S +NPofNP +ADV-VC-P +NPofNP +NpAdjp +V2CL +226385 Conj-CL +226387 PrepNp +DetNP +ClCl2 +sub-CL +VC-S-P +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +S-V +DetNP +226403 Conj-CL +O-ADV-V-S-ADV +V2CL +Conj2VP +226408 PrepNp +DetNP +226411 Conj-CL +sub-CL +226414 ClCl2 +sub-CL +ADV-S-V-IO-O +NPofNP +CLaCL +PtclCL +P-VC +PrepNp +226423 PtclCL +ADV-V +PrepNp +226427 Conj-CL +O-V +226430 that-VP +S-V-O +Np-Appos +DetCL +ADV-V-O +NpaNp +226437 Np-Appos +NpPp +PrepNp +226441 Conj-CL +S-ADV-ADV-ADV-V +V-O +NPofNP +PrepNp +226447 ClCl +ADV2CL +PrepNp +sub-CL +notCLbutCL2CL +ADV2CL +PrepNp +sub-CL +ADV2CL +PrepNp +226458 ClCl +V-ADV +DetNP +NPofNP +DetNP +sub-CL +226466 V-ADV-O +PrepNp +NpaNp +NPofNP +226471 NPofNP +226473 S-ADV-V +DetCL +V-ADV +PrepNp +226479 Np2CL +S-P +NpaNp +DetNP +NPofNP +DetNP +AdjpNp +226487 DetNP +NpPp +NpPp +PrepNp +DetNP +PrepNp +PrepNp +226495 Conj-CL +226497 that-VP +CLaCL +O-V +NPofNP +226502 ADV-ADV +PrepNp +226505 Conj-CL +ADV-IO-ADV-V +CLaCL +V-O +DetNP +ofNPNP +DetNP +226513 O-V +O-V +DetAdj +DetNP +NPofNP +DetNP +226520 Conj-CL +P-S-ADV-ADV +NPofNP +PrepNp +All-NP +DetCL +V2CL +226528 Conj-CL +226530 that-VP +226532 Np2CL +Np-Appos +DetNP +NpPp +PrepNp +DetNP +AdjpNp +V2CL +PrepNp +226542 Conj-CL +226544 DetNP +PpNp2Np +PrepNp +226548 PrepNp +DetNP +NPofNP +ClCl +S-V-ADV +PrepNp +DetNP +S-VC-P +O-V +226558 Conj-CL +ClCl +S-V-ADV +PrepNp +DetNP +S-VC-P +O-ADV-V +PrepNp +226567 Conj-CL +226569 ClCl +ClCl +226572 PrepNp +DetNP +P2CL +Conj2Pp +PrepNp +DetNP +NPofNP +226580 PrepNp +DetNP +NPofNP +S-VC-P +DetNP +NP-CL +NPofNP +DetNP +O-V +sub-CL +ClCl2 +sub-CL +CLaCL +V-ADV-O +PrepNp +DetNP +NPofNP +Np-Appos +226600 PrepNp +DetNP +NPofNP +that-VP +S-O-V-ADV +DetNP +PrepNp +V2CL +226609 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +226614 ADV-V-ADV +PrepNp +226617 Conj-CL +226619 DetNP +S-ADV-V +All-NP +DetCL +V-ADV +PrepNp +226626 Conj-CL +ClCl +ADV-V-S +NPofNP +aNpaNp +226633 sub-CL +S-P-ADV +DetNP +PronNP +V-ADV +PrepNp +All-NP +DetCL +V-O +226643 Conj-CL +S-V +All-NP +PtclCL +S-V-O +DetNP +NPofNP +226651 Conj-CL +ADV-V-ADV +PrepNp +O-ADV-V +226656 Conj-CL +ADV-V-O +O-ADV-V +226660 Conj-CL +ADV-V-ADV +PrepNp +V2CL +226665 Conj-CL +226667 sub-CL +ADV-V +226670 sub-CL +226672 ADV-P-S +DetNP +NPofNP +DetCL +V-O +226678 Conj-CL +ADV-S-V-O +DetNP +226682 Conj-CL +226685 Np2CL +DetNP +NPofNP +226689 Conj-CL +CLaCL +S-ADV +DetNP +PrepNp +226695 S-ADV +DetNP +PrepNp +NPofNP +226700 Conj-CL +226702 PtclCL +ADV-V +226705 PtclCL +CLaCL +ADV-V-S +PrepNp +All-NP +DetNP +DetNP +NPofNP +226714 ADV-S +PrepNp +DetNP +NPofNP +DetNP +DetNP +NPofNP +226722 Conj-CL +226724 PtclCL +S-ADV-V +226728 ClCl +S-V-O-ADV +PrepNp +AdvpNp +ADV-V-O +PrepNp +NpAdjp +226736 Conj-CL +CLaCL +S-V +226741 ClCl +V-ADV +DetCL +O-ADV-V +P-VC-ADV +DetCL +O-ADV-V +226749 Conj-CL +226751 PrepNp +DetNP +ADV-V-O-ADV +All-NP +DetNP +DetNP +NPofNP +PrepNp +NpAdjp +AdjpaAdjp +V2CL +226763 V2CL +226765 Conj-CL +226767 PtclCL +V-S-O +DetNP +DetNP +NPofNP +226773 ADV-V +226775 Conj-CL +S-P-VC-ADV +AdvpNp +PrepNp +NPofNP +NPofNP +NPofNP +226783 ADV-V-S-O +DetNP +NP-CL +DetNP +NPofNP +O-V +226790 Conj-CL +226793 PrepNp +DetNP +sub-CL +226797 DetNP +PrepNp +DetNP +226801 Np2CL +O-V +DetNP +NPofNP +O-V +DetNP +NPofNP +CLaCL +S-V-ADV +226811 V-O +DetNP +NPofNP +226815 Conj-CL +O-V-IO-S +DetNP +226819 V-IO-O +NP-CL +AdjpNp +S-ADV-V-O-IO +NPofNP +226825 Conj-CL +ADV-ADV-S-ADV-V +AdvPp +PrepNp +DetNP +AdvpNp +PrepNp +NPofNP +226834 Conj-CL +226836 sub-CL +ADV2CL +PrepNp +sub-CL +S-ADV-VC-P +DetNP +226843 Conj-CL +226845 O2CL +226847 O-V-S +226849 S-V +DetNP +226852 Conj-CL +ClCl +S-V +DetAdj +sub-CL +226858 V-IO-S-O-ADV +DetNP +2Np +NPofNP +NpaNp +NPofNP +DetAdj +ADV-V +226867 NPofNP +DetAdj +ADV-V +PrepNp +DetNP +AdvpNp +226874 Conj-CL +226876 2CLaCL +VC-S-P +DetNP +NPofNP +Conj4Pp +PrepNp +226883 PrepNp +226885 PrepNp +226887 PrepNp +NpAdvp +V-S-ADV +DetNP +NPofNP +DetCL +ADV-V +226895 O-ADV-V +DetNP +NPofNP +PrepNp +226900 Conj-CL +226902 PtclCL +ClCl +V2CL +sub-CL +V2CL +226908 ADV-V +226910 Conj-CL +ADV-S-P-ADV +DetNP +ofNPNP +DetNP +DetNP +PrepNp +DetCL +V-O +226920 Conj-CL +226922 sub-CL +CLaCL +S-P +DetNP +NPofNP +NPofNP +226929 S-P +DetNP +NPofNP +NPofNP +2Advp_h2 +DetNP +NPofNP +226937 Conj-CL +V-IO +Np-Appos +DetNP +226942 Conj-CL +Conj-CL +226945 ADV-O-V +PrepNp +ADV-VC-S-P +ofNPNP +DetNP +NPofNP +PtclCL +CLaCL +V-O +ofNPNP +DetNP +226957 V-O +NpPp +PrepNp +226961 Conj-CL +226963 sub-CL +S-P +DetNP +NPofNP +NPofNP +DetNP +sub-CL +ADV-S-P +PrepNp +226973 Conj-CL +226975 sub-CL +S-P +DetNP +AdvpNp +DetNP +226981 Conj-CL +226983 sub-CL +S-P +DetNP +AdvpNp +DetNP +226989 Conj-CL +ClCl2 +sub-CL +CLaCL +S-V +NPofNP +DetNP +226997 CLaCL +S-ADV-V-ADV +P-VC +PrepNp +227002 P-VC +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +ADV-V-ADV +DetNP +227012 Conj-CL +ClCl2 +sub-CL +V2CL +notCLbutCL2CL +S-O-V +DetNP +S-O +DetNP +227022 Conj-CL +227024 ClCl +V-S +sub-CL +S-V +227029 ClCl +ADV2CL +CLaCL +ADV-V +DetNP +227035 S-ADV-V +DetNP +227038 notCLbutCL2CL +O-V +V2CL +227042 Conj-CL +227044 sub-CL +S-O-ADV-V +DetNP +DetNP +PpNp2Np +PrepNp +227051 Conj-CL +V-O +NPofNP +NpaNp +227059 P-S +PrepNp +DetCL +V2CL +227065 PrepNp +NPofNP +sub-CL +V-ADV +DetNP +sub-CL +S-V +AdvpNp +227074 Conj-CL +S-ADV-V +sub-CL +ADV-V-ADV +DetNP +227080 Conj-CL +P-VC-S-ADV +DetNP +ADV-V-O +227085 Conj-CL +227087 sub-CL +CLaCL +S-ADV-V +PrepNp +DetNP +PpNp2Np +PrepNp +227095 ADV-V-ADV +PrepNp +PrepNp +2Advp_h2 +Demo-NP +NpPp +PrepNp +DetNP +AdjpNp +227105 Conj-CL +227107 Np2CL +S-V-O +NP-Demo +DetNP +sub-CL +ADV-VC-ADV-P +PrepNp +that-VP +CLaCL +S-ADV-ADV-V-ADV +PrepNp +DetNP +PrepNp +ADV-S-V +DetNP +NPofNP +DetNP +227125 ADV-S-V +All-NP +227128 sub-CL +227130 ClCl +V-ADV-S +PrepNp +DetCL +V2CL +V-O-ADV +PrepNp +227138 Conj-CL +227140 DetNP +PpNp2Np +PrepNp +sub-CL +V-O +DetNP +NPofNP +227148 aCLaCL +227150 ADV-P-ADV +PrepNp +DetNP +PrepNp +227155 ADV-P-ADV +PrepNp +DetNP +PrepNp +DetNP +227161 Conj-CL +P-S +NpaNp +DetNP +227166 DetNP +NPofNP +DetNP +227170 Conj-CL +227172 sub-CL +CLaCL +S-ADV-V-O +DetNP +227177 ADV-V-ADV +DetNP +ofNPNP +AdvpNp +DetNP +AdjpNp +sub-CL +S-ADV-V +AdvpNp +227187 Conj-CL +227189 DetNP +DetAdj +PrepNp +sub-CL +O-V +DetAdj +227196 ClCl +PtclCL +Np2CL +NPofNP +NPofNP +Conj3Np +227204 sub-CL +CLaCL +P-S +DetNP +NPofNP +227210 P-S +DetNP +NPofNP +227214 Conj-CL +S-V-O +NPofNP +227218 Conj-CL +S-P-VC +NPofNP +227222 Conj-CL +CLaCL +S-V-IO +227226 V-IO +227228 sub-CL +P-S +Conj3Pp +PrepNp +227233 PrepNp +227235 PrepNp +DetAdj +227239 DetNP +PrepNp +DetNP +Intj2CL +227244 Conj-CL +227246 Np2CL +PrepNp +DetNP +NPofNP +DetNP +227252 DetNP +NPofNP +NpAdjp +NpAdjp +NpAdjp +V2CL +AdvpAdjp +DetNP +O2CL +DetNP +AdjpNp +NPofNP +227265 Conj-CL +notCLbutCL2CL +V-ADV +NP-Demo +DetNP +V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +DetCL +227277 P-S +DetNP +NPDetAdj +NPofNP +DetNP +DetAdj +Conj3Adjp +227287 Conj-CL +V-ADV-IO-O +PrepNp +Np-Appos +DetNP +DetCL +V-IO +All-NP +DetCL +VC-P +PrepNp +notCLbutCL2CL +V-ADV +PrepNp +S-V +O-V +227304 PrepNp +DetCL +V2CL +sub-CL +IO-S-V-O +DetNP +NPofNP +227312 Conj-CL +227314 sub-CL +CLaCL +ADV-O-V +PrepNp +AdjpNp +AdjpNp +227321 S-ADV-O-V +NP-all +DetNP +DetNP +PronNP +ADV-S-P-VC-ADV +DetAdj +AdjpNp +PrepNp +227331 S-P +NpPp +PrepNp +ofNPNP +227336 Conj-CL +ClCl2 +V-O-ADV +NpAdjp +PrepNp +Np-Appos +DetNP +DetCL +V-IO +ClClClClClClCl +ClCl2 +sub-CL +O2CL +ADV2CL +PrepNp +DetNP +NPofNP +DetNP +ClCl2 +sub-CL +O2CL +ADV2CL +PrepNp +DetNP +sub-CL +S-ADV +DetCL +V2CL +PrepNp +DetNP +sub-CL +S-ADV +DetCL +V2CL +PrepNp +DetNP +S-ADV +DetCL +V2CL +PrepNp +S-ADV +DetCL +V2CL +PrepNp +S-ADV +DetCL +V2CL +PrepNp +227385 S-P +DetNP +227388 ClCl +V-O +DetAdj +V-IO +DetAdj +227394 ClClClClClClClClClCl +ADV-ADV-P +DetNP +PrepNp +ADV-O-V +DetNP +ADV-ADV-P +DetNP +ADV-V +DetNP +O-V +DetNP +ADV-V +DetNP +ADV-V +DetNP +O-V +DetNP +ADV-V +DetNP +NPofNP +DetAdj +O-V +DetNP +227420 DetCL +V2CL +CLaCL +V2CL +227425 ADV-V +227427 ClCl +V-ADV +PrepNp +V2CL +V-ADV +PrepNp +V2CL +227436 DetNP +PrepNp +notCLbutCL2CL +O-V +DetAdj +ADV-V +DetAdj +227444 ADV-VC-P-ADV +PrepNp +227447 IO-O-ADV-V +PrepNp +227450 V-O-ADV +PrepNp +All-NP +227455 sub-CL +P2CL +NpPp +PrepNp +PrepNp +All-NP +227463 Np2CL +notCLbutCL2CL +O-V +V-O-IO +DetNP +sub-CL +227470 ClCl2 +ClCl +P-S +S-V +V-S +227476 Conj-CL +227478 sub-CL +V-S +DetNP +NPofNP +227484 sub-CL +V2CL +227487 Conj-CL +ADV-O-V-ADV +O-V +NPofNP +PrepNp +DetNP +NPofNP +227495 CLaCL +ADV-V-ADV +PrepNp +DetAdj +227500 V-ADV-O +PrepNp +DetAdj +DetAdj +227505 S-IO-V +All-NP +NpAdjp +V2CL +227510 Conj-CL +CLaCL +227513 sub-CL +ADV-ADV +PrepNp +227517 S-ADV-V +DetCL +V2CL +PrepNp +VerbBe +227523 Conj-CL +CLaCL +S-O-V +DetCL +V-O +DetNP +DetNP +ofNPNP +DetNP +227533 S-IO-O-V +DetCL +V2CL +227537 Conj-CL +S-VC-P-ADV +DetNP +notNPbutNP +DetNP +AdjpNp +DetAdj +227545 Conj-CL +V-O +ADV-V-O +DetNP +227550 CLaCL +O-V +DetAdj +227554 V-O-ADV +PrepNp +227557 Conj-CL +P-VC-ADV-ADV +ofNPNP +PrepNp +DetAdj +227563 Conj-CL +227565 sub-CL +O-V +DetAdj +227569 Conj-CL +ADV-O-V +2Advp_h1 +DetNP +227574 Conj-CL +ClCl +P-VC +ofNPNP +P-ADV-ADV +PrepNp +DetCL +O-V +DetAdj +227584 Conj-CL +P-S +V-ADV +notPPbutPP +AdvPp +PrepNp +DetNP +AdvPp +PrepNp +DetNP +227595 Conj-CL +ClCl +ADV-O-V +PrepNp +AdvpNp +sub-CL +P-VC-ADV +NPofNP +ADV-V +PrepNp +PronNP +227607 ClCl +V-IO-O +DetNP +ClClClCl +IO-O +NpAdvp +DetNP +DetNP +IO-O +NpAdvp +DetNP +DetNP +IO-O +NpAdvp +DetNP +DetNP +IO-O +NpAdvp +DetNP +DetNP +227629 sub-CL +ADV-O +DetCL +O-V +227634 Conj-CL +S-O-V +DetCL +V-O +DetAdj +227640 Conj-CL +ClCl2 +CLaCL +Np2CL +DetCL +ClClClCl +ADV-V +ADV-V +ADV-V +ADV-V +227651 sub-CL +S2CL +AdjpNp +AdjpNp +ADV-V-ADV +PrepNp +NP-Demo +DetNP +PrepNp +DetCL +227662 DetNP +NPofNP +sub-CL +O2CL +227667 S-IO-O-ADV-V +DetNP +DetNP +227671 Conj-CL +P-S +NPofNP +DetNP +227676 Conj-CL +ClCl +227679 Demo-NP +DetNP +that-VP +P-ADV-S +S-ADV-V +PrepNp +sub-CL +ADV-P-S-ADV +ofNPNP +DetNP +sub-CL +sub-CL +V2CL +227693 CLaCL +S-V +DetNP +227697 S-V +DetNP +227700 Conj-CL +CLaCL +V-O +DetNP +NPofNP +DetNP +227707 V-O +DetNP +NPofNP +DetNP +227713 sub-CL +ADV-ADV-V +PrepNp +ADV-ADV +NpaNp +227719 ADV-ADV +NpaNp +227722 ADV-ADV +NpaNp +227726 Conj-CL +CLaCL +V-O +Np-Appos +DetNP +Np-Appos +227733 O-ADV-V-ADV +ofNPNP +DetNP +PrepNp +227738 Conj-CL +227740 DetCL +V-ADV +DetNP +ADV-ADV +PrepNp +NPofNP +227747 aCLaCL +227749 S-V-O +V-O +227752 S-O-V +DetCL +V2CL +227756 ClCl +CLaCL +S-O-ADV-V +DetCL +V2CL +DetCL +ADV-V +227764 S-O-ADV-V +DetCL +ADV-V +DetCL +V2CL +sub-CL +S-O-V +DetNP +227774 Np2CL +DetCL +V-O +AdjpNp +227779 ADV-V +DetNP +AdjpNp +Conj2VP +227785 Conj-CL +ClCl +V2CL +sub-CL +V-S-O +DetNP +V-O +227793 Conj-CL +aCLaCL +227796 S-V-O-ADV +PrepNp +227799 S-V-O +All-NP +227802 S-ADV-V +PrepNp +DetNP +AdjpNp +227807 S-ADV-V +DetCL +V-O +DetNP +227812 Conj-CL +ClCl +S-ADV-V +DetCL +V2CL +sub-CL +V-O +DetNP +227821 Conj-CL +CLaCL +S-ADV-ADV-V +DetCL +ADV-V +227827 V-O +DetNP +227830 Conj-CL +CLaCL +S-ADV-V +NPofNP +227835 S-ADV-V +227837 Conj-CL +aCLaCL +227840 ClCl2 +sub-CL +V2CL +ADV-V +DetNP +227846 ClCl2 +sub-CL +V2CL +ADV-V +DetNP +227852 Conj-CL +227854 aCLaCL +227856 sub-CL +V2CL +227859 sub-CL +V2CL +DetNP +227863 Conj-CL +227865 PrepNp +Conj2VP +227868 sub-CL +ADV-V +aNpaNp +227873 V2CL +227875 Conj-CL +S-ADV-V-O +DetNP +NPofNP +227880 Conj-CL +S-ADV-V-O +AdvpNp +DetNP +NPofNP +227886 Conj-CL +S-V-ADV +DetNP +NPofNP +DetNP +227892 Conj-CL +227895 V-S +V-S +that-VP +CLaCL +ADV-V-S +All-NP +227902 S-V-O +All-NP +DetNP +227906 Conj-CL +Conj-CL +S-ADV-O-V-IO +NPofNP +PrepNp +DetNP +227913 Conj-CL +ADV-O-V +227916 Conj-CL +227918 Np2CL +DetCL +ADV-V-IO-O +DetNP +NpaNp +227926 Conj2VP +227928 PrepNp +Np-Appos +that-VP +ClCl +S-P-ADV +PrepNp +sub-CL +AdvpCL +227937 Np2CL +DetCL +V-O +S-P-VC +227942 Conj-CL +227944 sub-CL +ADV-S-V +PrepNp +DetNP +NPofNP +PrepNp +227952 DetNP +NPofNP +ADV-S-V +PrepNp +227957 Conj-CL +ADV-V-S +ofNPNP +DetAdj +227962 Conj-CL +notCLbutCL2CL +VC-S-P +DetNP +NPofNP +DetNP +NpaNp +227970 P2CL +Conj3Np +227974 NpPp +PrepNp +NpAdjp +227978 Conj-CL +CLaCL +S-P-ADV +DetCL +ADV-V-O +PrepNp +DetNP +DetNP +227987 P-ADV +DetNP +227990 Conj-CL +Conj-CL +V-O +NpaNp +NPofNP +DetNP +227997 NPofNP +Np-Appos +DetNP +NpPp +PrepNp +228003 ADV-ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +228009 PtclCL +CLaCL +S-P +228013 P-ADV +Np-Appos +DetNP +DetCL +ADV-V +PrepNp +228020 P-S +DetCL +Conj3CL +ADV-V-O +228025 V-O +228027 ADV-S-V +PrepNp +DetNP +NPofNP +228032 S-O-V-ADV +NP-CL +O-V-ADV +PrepNp +PrepNp +DetNP +228039 P-S +DetCL +ADV-V-O-ADV +PrepNp +O-V +228045 Conj-CL +ClCl +ClCl2 +sub-CL +S-V +DetCL +V2CL +V2CL +sub-CL +ADV-P +PrepNp +228057 Conj-CL +S-P-VC +All-NP +S-ADV-P +PrepNp +228063 Conj-CL +V-S-O +Np-Appos +DetAdj +CLaCL +O-V +DetNP +NPofNP +DetAdj +228073 ADV-O-V +228075 S-O-V-ADV-ADV +NPofNP +DetNP +PrepNp +DetAdj +PrepNp +228082 Conj-CL +S-ADV-O-V +AdvpNp +DetNP +228087 Conj-CL +sub-CL +228090 S-V-ADV +DetNP +NPofNP +DetCL +V-O +PrepNp +228097 Conj-CL +228099 S-ADV-V +S-V +PrepNp +DetNP +AdjpNp +ADV-O-V +Conj2Pp +PrepNp +DetNP +228109 PrepNp +DetNP +NPofNP +DetNP +DetNP +228115 Conj-CL +ClCl +S-V-IO-O +DetNP +NPofNP +NpaNp +DetNP +228123 DetNP +O-V-ADV-ADV +DetNP +PrepNp +PrepNp +Np-Appos +sub-CL +ADV-ADV-V-O +PrepNp +AdjpNp +DetNP +NPofNP +NpaNp +228137 Np-Appos +DetNP +NPofNP +Np-Appos +228142 Conj-CL +ClCl +V-O +sub-CL +S-V-O-ADV +AdvpNp +DetNP +PrepNp +NPofNP +DetNP +228153 Conj-CL +228155 S-P-VC-ADV-ADV +NPofNP +PrepNp +NPofNP +PrepNp +DetCL +CLaCL +V-O +DetNP +NPofNP +DetNP +228167 S-ADV-V-O +DetNP +PrepNp +DetNP +sub-CL +228173 CLaCL +ADV-V-O-ADV +PrepNp +PrepNp +228178 IO-V +DetNP +NPofNP +228182 Conj-CL +228185 Np2CL +PrepNp +DetNP +NPofNP +228190 Conj-CL +ClCl +ADV2CL +228194 Np2CL +All-NP +DetNP +V-O +DetNP +228200 V-O-S +All-NP +DetNP +228204 Conj-CL +228206 V-S +Np-Appos +DetNP +NPofNP +DetNP +AdvpNp +DetCL +V-ADV +V-ADV +228216 ADV-S-V +PrepNp +228219 Conj-CL +S-V-O-ADV-ADV-ADV +DetNP +NPofNP +DetNP +All-NP +NpaNp +228227 PrepNp +DetCL +V2CL +PrepNp +DetCL +V-S-ADV-ADV +PrepNp +DetNP +PrepNp +NPofNP +NpAdjp +228239 Conj-CL +228241 Np2CL +NPofNP +AdvpNp +PronNP +PrepNp +that-VP +S-P-VC-ADV-ADV +AdvpNp +228250 All-NP +DetNP +V-O +O-V +AdvpNp +228256 Conj-CL +228258 PrepNp +sub-CL +V-O-ADV +PrepNp +Np-Appos +DetNP +DetCL +V-IO-ADV-ADV +PrepNp +DetNP +PrepNp +DetCL +VC-S-P-ADV-ADV +NPofNP +Np-Appos +PrepNp +DetNP +V-O +DetNP +NPofNP +DetNP +sub-CL +VC-S-P-ADV +DetNP +NPofNP +DetNP +V-ADV +PrepNp +NpAdjp +228288 Conj-CL +V-O +Np-Appos +DetNP +NpPp +PrepNp +Np-Appos +NpPp +PrepNp +DetNP +228299 Conj-CL +notCLbutCL2CL +V-O +V-O +NPofNP +O-ADV-V-S-ADV-ADV-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +NpaNp +228310 2Pp +PrepNp +NPofNP +NpaNp +228315 PrepNp +NPofNP +NpAdjp +sub-CL +S-ADV-V-O +Conj2Pp +PrepNp +228323 AdvPp +PrepNp +DetNP +DetNP +NPofNP +DetNP +228330 V-ADV +AdvpNp +ADV-V-S +sub-CL +notCLbutCL2CL +ADV-V +PrepNp +AdjpNp +sub-CL +228340 CLaCL +V-S +IO-ADV-V-ADV +PrepNp +228345 S-V +S-ADV-V +228348 Conj-CL +ADV-V-ADV-ADV +DetAdj +DetCL +V-ADV +PrepNp +228355 Conj-CL +ClCl +CLaCL +ADV-ADV-O-V-ADV +PrepNp +NP-Demo +DetNP +228363 O-V-ADV +DetCL +228366 PrepNp +PrepNp +NPofNP +sub-CL +PtclCL +V-ADV +PrepNp +DetNP +sub-CL +228376 V2CL +CLaCL +V-O +228380 ADV-V-ADV +PrepNp +sub-CL +ADV-ADV-ADV-V +PrepNp +228386 Conj-CL +ADV-V-ADV-ADV +PrepNp +V-O +DetAdj +228392 Conj-CL +V-S-O +NpaNp +228396 O-V-ADV +NpAdjp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +228406 Conj-CL +CLaCL +V2CL +228410 P-VC-ADV +228412 Conj-CL +228414 sub-CL +ADV-V-S +DetNP +NPofNP +DetNP +ADV-V-O +PrepNp +DetAdj +228423 Conj-CL +ADV-V-ADV-ADV +CLaCL +O-V +228428 V-IO-O +NP-Demo +DetNP +PrepNp +PrepNp +228434 Conj-CL +228436 that-VP +ADV-ADV-V +V-ADV +PrepNp +PrepNp +NPofNP +NPofNP +228444 Conj-CL +228446 Np2CL +228448 Conj2Pp +PrepNp +Np-Appos +DetNP +NPofNP +Np-Appos +228455 PrepNp +DetNP +NPofNP +DetNP +S-V-ADV-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +PrepNp +DetNP +sub-CL +CLaCL +V-ADV +PrepNp +NpPp +DetCL +V2CL +PrepNp +DetNP +228475 S-P-ADV-VC +Np-Appos +DetNP +NPofNP +DetNP +PrepNp +DetAdj +sub-CL +ADV-V-ADV +ADV-V-ADV-ADV +PrepNp +PrepNp +PrepNp +NPofNP +228491 S-P +DetNP +NPofNP +DetNP +PrepNp +NPofNP +Intj2CL +228499 Conj-CL +ClCl +228502 Np-Appos +DetNP +NPofNP +VC-P +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +sub-CL +CLaCL +O-V-ADV-ADV +PrepNp +AdvpNp +DetAdj +228518 V-ADV-ADV +PrepNp +CL-NP +PtclCL +ADV-O-V +sub-CL +S-VC-P +AdvpNp +NPofNP +NpaNp +228529 NpPron +228531 V-O +NpaNp +NP-CL +NP-CL +Np-Appos +NpaNp +228538 DetNP +NpPp +NPofNP +PrepNp +Np-Appos +S-ADV-O-V +PrepNp +DetNP +NPofNP +DetNP +ofNPNP +O-V-S +notNPbutNP +NpAdjp +AdvpNp +All-NP +DetNP +NPofNP +DetNP +228558 DetNP +PpNp2Np +PrepNp +NPofNP +228563 V-O +NP-CL +Np-Appos +DetNP +NPofNP +S-VC-P +NpPp +NPofNP +DetNP +PrepNp +228574 V-O +NP-CL +S-O-V-ADV +PrepNp +228579 V-O +NP-CL +NP-CL +Np-Appos +NpaNp +228585 DetNP +NpaNp +NPofNP +228589 NPofNP +S-VC-P-ADV +PrepNp +DetNP +S-P-VC-ADV +AdvPp +PrepNp +PrepNp +228598 V-O +Np-Appos +DetNP +NpPp +NPofNP +PrepNp +228605 V-O +NpaNp +Np-Appos +DetNP +NpPp +NPofNP +PrepNp +228613 Np-Appos +DetNP +NPofNP +228617 V-O +Np-Appos +DetNP +NpPp +PrepNp +228623 V-O +NpPp +PrepNp +NPofNP +228628 V-O +Np-Appos +DetNP +NPofNP +228633 V-O +Np-Appos +NpPp +PrepNp +DetNP +DetCL +VC-P +PrepNp +228642 V-O +Np-Appos +NpaNp +228646 DetCL +V-ADV +PrepNp +228650 V-O +NP-CL +Np-Appos +DetAdj +S-O-V-ADV +PrepNp +228657 V-O +NpaNp +Np-Appos +NpPp +DetAdj +PrepNp +228664 DetNP +NPofNP +NpaNp +228669 V-O +NpaNp +NpNpNpNpNp +228673 DetNP +PpNp2Np +PrepNp +228677 V-O +NpaNp +NpaNp +2Np +NpaNp +228683 NpaNp +228685 DetNP +NPofNP +228689 DetNP +PpNp2Np +PrepNp +All-NP +228694 V-O-ADV +PrepNp +NpAdjp +228698 V-O-S +NPofNP +NP-all +DetNP +DetNP +228704 Conj-CL +228706 Np2CL +V-O +S-V-O +DetCL +O-ADV-V +NpaNp +DetNP +228714 DetNP +PrepNp +DetNP +NP-CL +O-S-V +228720 V-ADV +PrepNp +228723 Conj-CL +CLaCL +CLaCL +S-O-ADV-V +DetNP +Np-Appos +DetNP +NPofNP +228732 O2CL +DetNP +ofNPNP +228736 ADV-V-O +PrepNp +DetNP +NpaNp +228741 DetNP +NPofNP +DetAdj +228745 Conj-CL +S-ADV-V +DetNP +ofNPNP +PrepNp +228751 Conj-CL +CLaCL +ADV-V +PrepNp +228756 V-O +CLaCL +S-P-VC-ADV +PrepNp +DetAdj +228762 P-ADV +PrepNp +DetAdj +228766 Conj-CL +S-V-O-ADV-ADV +DetNP +NPofNP +DetNP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +228777 S-P +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +PrepNp +228785 V-O-S +Conj4Np +Np-Appos +DetNP +NPofNP +228793 Np-Appos +DetNP +NPofNP +228797 V-O-S +Np-Appos +Np-Appos +DetCL +V-O-ADV +DetNP +PrepNp +228805 V-O-S +Np-Appos +DetNP +NPofNP +NpaNp +228811 All-NP +DetNP +228814 V-O-S +NpaNp +Np-Appos +DetNP +NPofNP +DetNP +228821 Np-Appos +DetNP +228824 Conj-CL +228826 Np2CL +Np-Appos +DetCL +V-O +O-V-ADV-ADV +PrepNp +NpaNp +DetNP +NPofNP +228836 DetNP +NPofNP +Np-Appos +PrepNp +NPofNP +NpAdjp +CLaCL +CLaCL +ADV-V +NpAdjp +228847 V-ADV +228849 ADV-ADV-ADV-ADV-V +PrepNp +NpAdjp +PrepNp +NPofNP +DetNP +AdjpNp +PrepNp +NPofNP +PrepNp +All-NP +DetNP +AdjpNp +AdjpNp +PrepNp +Np-Appos +DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +228873 NpaNp +Np-Appos +NpPp +AdjpNp +NPofNP +Np-Appos +PrepNp +NPofNP +228882 Np-Appos +DetNP +Np-Appos +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +DetCL +VC-P +PrepNp +V-ADV +PrepNp +Np-Appos +NpPp +AdjpNp +PrepNp +All-NP +DetCL +V-O-ADV +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +PrepNp +All-NP +P2CL +NpaNp +228914 IO-S-ADV +NpaNp +228917 PrepNp +NpaNp +Np-Appos +NPofNP +228922 Np-Appos +Np-Appos +228926 V-O-ADV-ADV-ADV +DetNP +PrepNp +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-IO-ADV +PrepNp +Np-Appos +228939 PrepNp +PrepNp +PrepNp +NpaNp +All-NP +228945 All-NP +sub-CL +S-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +sub-CL +S-ADV-V-ADV-ADV +PrepNp +AdjpNp +V-O +DetNP +NPofNP +NP-CL +NPofNP +DetNP +NPofNP +Np-Appos +S-ADV-V-O-ADV-O2-ADV +PrepNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +228974 P-S +DetNP +NP-CL +ADV-V-ADV +PrepNp +PrepNp +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +Np-Appos +DetNP +NPofNP +228989 Conj-CL +228991 Np2CL +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +that-VP +CLaCL +O-V-S +DetNP +229004 CLaCL +ADV-VC-P-S +PrepNp +229008 V-ADV +BeVerb +Conj2Pp +PrepNp +DetNP +PronNP +229015 PrepNp +DetNP +PronNP +229019 Conj-CL +229021 Np2CL +NPofNP +PrepNp +PrepNp +NPofNP +that-VP +S-P-VC +PrepNp +229030 Conj-CL +229032 that-VP +229034 NPofNP +EitherOr4CL +229037 S-VC-P +229039 S-P +229041 S-P +229043 S-P +229045 V-S +DetNP +229048 PtclCL +CLaCL +S-V-ADV +PrepNp +229053 ADV-V +PrepNp +DetNP +NPofNP +229059 V2CL +ClCl +ClCl +O-V +NPofNP +sub-CL +ADV-O +NpaNp +229068 sub-CL +229070 that-VP +ADV-V +PrepNp +DetNP +AdjpNp +229076 Conj-CL +V-O +AdvpNp +DetNP +ofNPNP +229083 PtclCL +O-V +AdjpNp +229087 Conj-CL +229089 notCLbutCL2CL +V2CL +V2CL +229093 PrepNp +NPofNP +sub-CL +ADV-V-S +DetNP +NPofNP +DetNP +229101 Conj-CL +aCLaCL +229104 S-ADV-P-VC +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V2CL +229112 ADV-P-VC +Np-Appos +DetCL +V2CL +NPofNP +229118 Conj-CL +229120 CLaCL +V-O +DetNP +NPofNP +DetAdj +229126 O-V +DetNP +NPofNP +DetAdj +229131 P-S +229133 P-S +229135 P-S +NPofNP +NP-Demo +DetNP +229140 PtclCL +V-S-O +DetNP +DetNP +NPofNP +DetNP +229147 Conj-CL +ClCl +ClCl2 +sub-CL +ADV-ADV-V-S-ADV-O +PrepNp +DetNP +NPofNP +DetNP +DetNP +PrepNp +DetNP +DetNP +V-S-ADV-O +DetNP +PrepNp +DetNP +NPofNP +DetNP +V-O +DetCL +V2CL +sub-CL +aCLaCL +229172 S-O-V +229174 S-O-V +229176 Conj-CL +ClCl +229179 NpAdjp +V2CL +aCLaCLaCL +229183 IO-O +229185 IO-O +229187 IO-O +Np-Appos +Np-Appos +DetAdj +aNpaNp +229194 Np-Appos +NpaNp +ofNPNP +229198 ofNPNP +sub-CL +CLaCL +S-P-ADV-VC +DetNP +NPofNP +DetNP +DetNP +229207 S-P-ADV +DetNP +NPofNP +DetNP +DetNP +229213 Conj-CL +229215 Np2CL +DetNP +NPofNP +that-VP +ClClCl +ADV-P-S-ADV +PrepNp +ADV-P-S +ADV-P-S +229225 Conj-CL +ClCl +Conj3CL +229229 DetNP +NPofNP +DetNP +DetNP +sub-CL +V-O +DetAdj +229238 DetNP +NPofNP +DetNP +DetNP +sub-CL +V-O +DetAdj +229247 Np-Appos +NpaNp +DetNP +NPofNP +DetNP +229253 DetCL +V2CL +DetCL +ADV-V +DetNP +sub-CL +O-V +DetCL +V2CL +sub-CL +ADV-V-S-ADV +All-NP +PrepNp +DetNP +229268 Conj-CL +229270 PrepNp +PrepNp +NP-CL +Np-Appos +S-VC-ADV-ADV-P +PrepNp +Conj4Np +229280 sub-CL +sub-CL +229283 S-ADV-V +DetCL +V2CL +PrepNp +229289 Np2CL +V-ADV +PrepNp +ADV-ADV-V-IO-O +PrepNp +NpaNp +NPofNP +229297 DetNP +NPofNP +DetNP +229301 Conj-CL +ADV-V-O +229304 PrepNp +sub-CL +ADV-O +NpaNp +Np-Appos +229310 NpAdjp +V2CL +229313 CLaCL +S-P-VC-ADV +Conj3Pp +PrepNp +229318 PrepNp +229320 PrepNp +NpAdjp +PrepNp +229325 NpaNp +DetNP +NPofNP +229329 DetNP +NPofNP +notPPbutPP +PrepNp +AdjpNp +ofNPNP +PrepNp +NPofNP +NpaNp +229339 sub-CL +S-VC-P +DetNP +NPofNP +notPPbutPP +PrepNp +NPofNP +PrepNp +NPofNP +229349 Conj-CL +CLaCL +O-V-ADV +PrepNp +DetAdj +229355 ADV-O +NPofNP +NpaNp +NP-Demo +DetNP +229361 Np-Appos +DetNP +NPofNP +NP-Demo +DetNP +DetCL +V2CL +229369 Conj-CL +V-O +NP-CL +NP-CL +ofNPNP +Np-Appos +NpPp +PrepNp +DetCL +V2CL +O-V-S-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +NPofNP +229386 O-S-V +NPofNP +DetNP +NPofNP +NP-Demo +DetNP +ClCl2 +sub-CL +V2CL +PtclCL +ADV-O-V +DetNP +NPofNP +DetNP +229401 Conj-CL +sub-CL +229404 P-S +Conj3CL +O-S-ADV-V +229408 S-ADV-V +229410 ADV-ADV-V +PrepNp +NPofNP +O-V-S-IO +DetNP +DetCL +V-O +229418 Conj-CL +IO-V-S-ADV +DetNP +PrepNp +DetNP +229424 Conj-CL +ClCl +S-O-V +DetNP +O2CL +AdvpNp +DetNP +NPofNP +DetNP +229434 Conj-CL +229436 NPofNP +NPofNP +DetNP +sub-CL +ADV-S +Np-Appos +DetNP +NPofNP +DetNP +NpPp +PrepNp +229449 AdvpNp +NPofNP +DetNP +sub-CL +ADV-S +DetNP +NPofNP +DetNP +229458 Conj-CL +ClCl +notCLbutCL2CL +S-O-V +DetNP +NPofNP +DetNP +O2CL +Np-Appos +DetNP +NpPp +PrepNp +DetNP +sub-CL +V-O +NP-CL +DetCL +ADV-V-IO +PrepNp +DetNP +O-ADV-V-ADV-ADV +notPPbutPP +PrepNp +AdjpNp +AdjpAdvp +AdjpNp +PrepNp +NPofNP +ADV-O-V +229488 Conj-CL +CLaCL +229491 AdjpNp +NPofNP +DetNP +NPofNP +DetNP +sub-CL +P-ADV-VC +229500 V2CL +sub-CL +ADV-V +229504 Conj-CL +CLaCL +S-V-ADV-O +DetAdj +229509 S-ADV-V +PrepNp +229512 Conj-CL +229514 NPofNP +S-V-O +229517 Conj-CL +S-O-V +NPofNP +229522 Np2CL +notCLbutCL2CL +V-IO-ADV +PrepNp +ADV2CL +2Pp +PrepNp +PrepNp +NpPp +PrepNp +229533 ClCl +ClCl +O2-O-V +ADV-O +sub-CL +ADV-V +229540 Conj-CL +ClCl +ADV-ADV-ADV-V +sub-CL +ADV-P-VC +229546 Conj-CL +ClCl2 +sub-CL +P-S +PrepNp +NpaNp +229553 PtclCL +CLaCL +P-VC +229557 ADV-V +PrepNp +229560 Conj-CL +ClCl2 +sub-CL +aCLaCL +229566 S-VC-P +229568 ClCl +S2CL +S-P +PtclCL +P-VC +229574 Conj-CL +P-VC-S +229577 Conj-CL +P-VC-S +229580 P2CL +NP-CL +229583 ADV-V +PrepNp +IO-S-V +AdvpNp +DetNP +229589 CLaCL +ClCl +S-V +S-V +229594 S-V +DetNP +229597 sub-CL +CLaCL +aCLaCL +229601 S-VC-P +DetCL +V2CL +229605 S2CL +DetCL +V2CL +229609 S2CL +DetNP +AdjpNp +V2CL +229614 Conj-CL +CLaCL +S-P-VC +NpaNp +DetCL +V2CL +229621 DetCL +V2CL +229624 S-O-V-ADV +DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +229631 Conj-CL +ClCl +VC-P +ofNPNP +P-VC +2Np +ofNPNP +ofNPNP +229640 CLaCL +ADV-ADV-O-V +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-IO +PrepNp +AdjpNp +229652 S-V +229654 Conj-CL +ClCl +S-V +ADV-V +229659 Conj-CL +S-V-O +O-V-ADV +NpAdjp +PrepNp +NP-CL +DetCL +V2CL +S-VC-P +Np-Appos +229670 Conj-CL +ClCl +ClCl2 +sub-CL +S-V-ADV-O +PrepNp +DetNP +NpNpNpNpNpNp +NpAdjp +S-P-VC +ofNPNP +DetNP +sub-CL +229684 DetNP +sub-CL +CLaCL +ADV-V +PrepNp +229690 ClCl2 +S-P-VC +ofNPNP +DetNP +S-O-V +DetNP +229698 sub-CL +V-S +ofNPNP +DetNP +NP-CL +O-V +229705 CLaCL +229707 sub-CL +S-V +ofNPNP +DetNP +229712 CLaCL +S-V +229715 sub-CL +ADV-ADV +PrepNp +229720 that-VP +CLaCL +P-VC +NPofNP +229725 S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +229732 sub-CL +S-O-V +DetNP +NPofNP +DetNP +DetNP +229739 Conj-CL +229741 DetNP +NPofNP +DetNP +P-VC-S +229746 S-O-V +229748 ClCl +ClCl2 +sub-CL +S-V-O +P-VC-ADV-ADV +PrepNp +PrepNp +NP-Demo +DetNP +P-VC +sub-CL +VC-P +229761 Conj-CL +S-P-ADV-VC +DetNP +NPofNP +NP-Demo +DetNP +PrepNp +DetNP +229770 Conj-CL +229772 P2CL +DetCL +V-O-ADV +DetAdj +PrepNp +DetNP +NPofNP +229780 Conj-CL +ClCl +ADV2CL +229784 DetNP +NPofNP +DetAdj +that-VP +VC-P +229790 Conj-CL +S-V-ADV +PrepNp +229794 Conj-CL +CLaCL +ClCl +S-P-VC +S-P +Np-Appos +EitherOr8Np +229808 V2CL +229810 V2CL +229812 CLaCL +S-P +229815 S-P +229818 sub-CL +O2CL +NpaNp +NPofNP +229823 NPofNP +NPofNP +229827 PrepNp +DetNP +that-VP +O-S-V +229832 Conj-CL +229834 ADV-P-VC +PrepNp +V-ADV +Conj2Pp +PrepNp +229840 PrepNp +AdjpNp +229843 Conj-CL +ADV-O-V +229846 Conj-CL +CLaCL +CLaCL +O-ADV-V +229851 ADV-ADV-V +PrepNp +229854 S-P-VC +DetCL +V-O +229858 Conj-CL +ADV-ADV-O-V-ADV +PrepNp +sub-CL +PtclCL +V-S +DetNP +NP-CL +S-V +aCLaCL +229869 V-O +DetNP +NPofNP +DetNP +229874 V-O +DetNP +NPofNP +DetNP +229879 Conj-CL +ADV-S-V-ADV-ADV +DetNP +PrepNp +DetNP +229885 Conj-CL +229887 Np2CL +ClCl +O-V-ADV-ADV +PrepNp +NpaNp +229893 PrepNp +sub-CL +ADV-V-O +PrepNp +DetCL +ADV-ADV +PrepNp +S-V +sub-CL +ADV-S-ADV-V-ADV +PrepNp +DetAdj +PrepNp +DetAdj +229908 Conj-CL +S-O-V +229911 Conj-CL +V-O +NP-CL +O-ADV-V +229916 Conj-CL +ClCl2 +sub-CL +ADV-V +ADV-V-ADV +sub-CL +ADV-V +229924 ADV-V +VerbBe +229927 ADV-V +229929 ADV-V +PrepNp +229932 Conj-CL +229934 PtclCL +V2CL +sub-CL +S-ADV-V +AdvpNp +229940 Conj-CL +229943 DetNP +Np-Appos +DetNP +PrepNp +sub-CL +P-VC-ADV +Conj3Np +DetNP +229954 CLaCL +S-P-ADV +PrepNp +229958 S-P-ADV +PrepNp +229961 CLaCL +S-P +229964 S-P +229966 CLaCL +S-P +229969 S-P +229971 CLaCL +ADV-V +PrepNp +DetNP +AdvpNp +EitherOr5Vp +229983 V-ADV +V-ADV +DetNP +AdjpNp +229988 ClClCl +ADV-V +V2CL +ADV-V +V2CL +ADV-V +V2CL +229996 P-VC-ADV +PrepNp +Np-Appos +NPofNP +DetNP +ofNPNP +PrepNp +230004 ClCl +CLaCL +ADV-ADV-V-O +V-O +230009 ADV-V +PrepNp +NpAdjp +NPofNP +sub-CL +ClCl +CLandCL2 +sub-CL +O-V-ADV +AdjpNp +PrepNp +230021 ADV-O +AdjpNp +sub-CL +ADV-ADV-S-O-V +PrepNp +Np-Appos +PrepNp +DetNP +230030 Conj-CL +230032 P-VC +NPofNP +230035 ADV-V-IO-O +PrepNp +Demo-NP +NP-CL +NP-CL +S-VC-P +ofNPNP +NpPp +NpAdjp +AdjpaAdjp +230046 PrepNp +230048 S-O-V-O2 +DetNP +Np-Appos +NPofNP +NpPp +PrepNp +Np-Appos +ADV-ADV-V +PrepNp +All-NP +230059 Conj-CL +230061 sub-CL +ADV-V-S-ADV +PrepNp +230065 Conj-CL +CLaCL +ClCl +V-ADV-ADV +PrepNp +sub-CL +S-V +DetNP +230075 notNPbutNP +DetNP +NPofNP +DetCL +V2CL +DetNP +sub-CL +notCLbutCL2CL +P-S +PrepNp +DetNP +NPofNP +DetNP +P2CL +PrepNp +230091 O-V +230093 CLaCL +ADV-V-ADV +PrepNp +PrepNp +230098 ADV2CL +PrepNp +NpaNp +230102 NPofNP +230104 ADV-V-ADV-S +PrepNp +NpaNp +230108 NP-CL +NP-CL +AdjpNp +S-ADV-P +PrepNp +DetNP +sub-CL +S-O-V +NPofNP +DetNP +230119 Conj-CL +CLaCL +S-V +VerbBe +230125 sub-CL +V-ADV-S +PrepNp +NPofNP +DetCL +O-V +NP-Demo +DetNP +230134 Conj-CL +230136 aCLaCL +230138 V-ADV +DetNP +230141 V-ADV +DetNP +sub-CL +V2CL +DetCL +ADV-O-V +230148 ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +Np-Appos +NpaNp +230156 DetNP +AdjpNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +DetNP +PrepNp +NPofNP +DetNP +sub-CL +S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +230177 ADV-P-S +DetNP +NPofNP +230182 that-VP +S-O-V +AdjpNp +All-NP +DetNP +230189 DetNP +AdjpNp +sub-CL +230193 AdjpNp +sub-CL +VC-P +230197 Conj-CL +S-V +AdvpNp +Np-Appos +DetNP +NPofNP +230204 Conj-CL +V-ADV +notPPbutPP +Conj2Pp +PrepNp +NpAdjp +230211 PrepNp +NPofNP +NpaNp +230215 PrepNp +NPofNP +NpaNp +230221 PrepNp +DetNP +ClCl +ADV-V-ADV +ADV-ADV +2Advp_h1 +Conj4Np +DetNP +NPofNP +NP-Demo +DetNP +230233 DetNP +230236 sub-CL +sub-CL +V-O +ADV-V +PrepNp +DetNP +230243 Conj-CL +ADV-V-IO-O +ClCl +ClCl +ADV-V +sub-CL +S-VC-P +NpAdjp +P-VC +Conj6Np +230258 ADV-ADV-V +DetNP +230261 Conj-CL +P-ADV-S +O-V +DetNP +230266 PtclCL +O-S-V +DetNP +230270 Conj-CL +O-S-V +DetNP +DetNP +230275 V-O-ADV +DetAdj +PrepNp +NpPron +230280 V-S-ADV-O +NPofNP +O-V-ADV +PrepNp +DetAdj +CLaCL +V-ADV +PrepNp +DetAdj +230290 ADV-ADV +PrepNp +DetAdj +230294 Conj-CL +230296 that-VP +S-O-V +DetAdj +DetNP +230301 Conj-CL +230303 sub-CL +ADV-V-S +PrepNp +DetNP +NpAdjp +230310 that-VP +230312 PtclCL +O2CL +230315 Conj-CL +Conj-CL +230318 sub-CL +O-V +AdjpNp +Np2CL +DetCL +V-ADV +PrepNp +DetNP +230327 ADV-IO-V +PrepNp +230330 PtclCL +ADV-VC-P-S +PrepNp +AdjpNp +NP-CL +S-V-O +V-ADV +PrepNp +NPofNP +DetNP +NPofNP +230342 Conj-CL +CLaCL +S-ADV-V +PrepNp +230347 ADV-ADV +PrepNp +230350 Conj-CL +Conj-CL +ADV-ADV-P-ADV-VC-S +that-VP +O-V-ADV +PrepNp +230357 ADV-ADV-ADV-V +PrepNp +230360 ADV-ADV-ADV-V +PrepNp +230363 Conj-CL +CLaCL +S-V +Conj2VP +230369 ADV-O +230371 Conj-CL +230373 that-VP +S-O-ADV-V +ofNPNP +230377 ADV-V +230379 S-O-V +EitherOr10Np +230391 NPofNP +230393 Conj-CL +P-S-VC +230396 aCLaCLaCL +230398 V2CL +230400 V2CL +230402 V-ADV +Conj2Pp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +Np-Appos +230411 PrepNp +DetNP +NPofNP +DetNP +NPofNP +230417 CLaCL +S-ADV-V +230420 ADV-S-V +230422 CLaCL +S-ADV-V +230425 ADV-S-V-ADV +PrepNp +230428 CLaCL +S-P +DetNP +DetNP +230433 S-P +DetNP +DetNP +230437 Conj-CL +S-O-V +DetNP +aNpaNp +230444 Conj-CL +CLaCL +S-P +DetNP +notNPbutNP +DetNP +DetNP +230452 S-P +DetNP +DetNP +230456 Conj-CL +S-V +DetNP +aCLaCL +230461 O-V +DetNP +230464 O-V-ADV +PrepNp +DetNP +NPofNP +230470 that-VP +S-P-VC +DetNP +NPofNP +NPofNP +230476 Conj-CL +ADV-V-O +V-O +DetNP +NPofNP +DetNP +ofNPNP +230484 ADV-V +230486 Conj-CL +230488 that-VP +S-P-VC +DetCL +V-IO +DetNP +AdjpNp +230495 Conj-CL +230497 VC-S-P +DetNump +PrepNp +NpAdjp +230502 Conj-CL +S-P-VC +DetCL +V-IO +DetNP +AdjpNp +230509 V-O +DetNP +230512 CLaCL +S-P-VC +All-NP +NP-CL +PtclCL +O-V-S +PrepNp +DetNP +230521 S-ADV-V +DetCL +V2CL +PrepNp +DetNP +AdjpNp +230528 Conj-CL +230530 that-VP +CLaCL +230533 DetNP +NPofNP +NPofNP +DetNP +PpNp2Np +PrepNp +AdjpNp +ADV-V-ADV +PrepNp +230543 ADV-VC-P +230545 Conj-CL +V-ADV +230548 PtclCL +V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +230555 Conj-CL +230557 ADV2CL +PrepNp +O-V +O-ADV-V +230562 Conj-CL +CLaCL +ADV-S-O-V +PrepNp +DetNP +DetNP +ofNPNP +230570 S-O-V +DetNP +AdjpNp +230574 CLaCL +IO-S-O-V +DetNP +DetNP +DetNP +230580 ADV-S-IO +AdvpNp +DetNP +DetNP +230585 CLaCL +S-ADV-ADV-V +DetNP +DetNP +AdjpNp +230591 S2CL +DetNP +230594 Conj-CL +AdvpCL +CLaCL +S-ADV-ADV-V +AdvpNp +DetNP +DetNP +AdjpNp +230603 S2CL +DetNP +230606 ClCl +ClCl +ADV-V-O +sub-CL +PtclCL +PtclCL +230613 PrepNp +PrepNp +sub-CL +CLaCL +V-ADV +DetNP +230620 ADV-P-VC +PrepNp +DetNP +sub-CL +ADV-V-O-S-ADV +DetNP +PrepNp +DetNP +NPofNP +230630 Conj-CL +230632 PrepNp +ADV-ADV +PrepNp +230636 Conj-CL +V-O +S-VC-P +All-NP +PrepNp +AdvpNp +230643 Conj-CL +ClCl +S-V-O-ADV +AdjpNp +PrepNp +aCLaCL +230650 S-ADV +230652 S-ADV +230654 Conj-CL +230656 NpaNp +DetNP +230659 DetNP +ClCl +P-ADV +sub-CL +V-ADV +PrepNp +230666 Conj-CL +ClCl +230669 sub-CL +ADV-V +sub-CL +CLaCL +P-VC-S +V2CL +230676 V2CL +230678 Conj-CL +IO-V-S-O +DetCL +V2CL +notNPbutNP +DetNP +CLaCL +CLaCL +S-ADV-ADV-V +PrepNp +230690 sub-CL +ADV-V +VC-P +230694 ADV-V +DetNP +230697 S-O-ADV-V +230699 Conj-CL +IO-V-S +DetAdj +2Np +AdvpNp +DetNP +230706 ClCl2 +sub-CL +CLaCL +S-V-O +AdjpNp +NpAdjp +230713 S-V-O +V-ADV +PrepNp +ADV-V-O +230718 Conj-CL +230720 Np2CL +NP-CL +CLaCL +S-V-O +NpAdjp +230726 S-V-O +V-ADV +PrepNp +DetNP +230731 Conj-CL +CLaCL +V-S-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +230740 V-S-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +230747 sub-CL +CLaCL +sub-CL +S-P-VC +DetNP +NPofNP +230754 ADV-P-VC +230756 Conj-CL +230758 sub-CL +S-V +DetAdj +230762 ADV-V-S-ADV +NpaNp +DetNP +230766 DetNP +PrepNp +DetNP +230770 Conj-CL +ADV-V-O-S +PrepNp +DetNP +230775 Conj-CL +230777 Np2CL +PtclCL +O-V +DetNP +230782 Conj-CL +230784 Np2CL +PtclCL +O-V +DetNP +230789 ClCl2 +sub-CL +AdvpCL +ClCl +sub-CL +IO-V-S +DetNP +sub-CL +O-V-S +DetNP +ADV-V +230801 Conj-CL +ADV-ADV-V +PrepNp +NP-all +DetNP +230807 ADV-S-V +V2CL +230810 ADV-V +230812 ADV-V-S +PrepNp +230815 ADV-V +230817 CLaCL +CLaCL +S-P-VC +DetNP +230822 S-P-VC +DetNP +230825 S2CL +NPofNP +NPofNP +230829 S-ADV-ADV-V +PrepNp +DetNP +NP-CL +ADV-V +PrepNp +230836 ADV-V +P2CL +230839 ADV-ADV-V +230841 Conj-CL +ClCl2 +sub-CL +ADV-V-O +P-VC +ADV-V +230848 Conj-CL +230850 DetNP +AdjpNp +ADV-V +PrepNp +NPofNP +AdvpCL +S-VC-P +NpAdjp +DetAdj +V2CL +NPofNP +230862 ADV-V +230864 ADV-VC-P +NPofNP +230868 Np2CL +PrepNp +ADV-V-ADV +PrepNp +PrepNp +230874 Conj-CL +CLaCL +ADV-O-ADV-V +PrepNp +DetNP +NPofNP +230881 O-V-ADV +PrepNp +V-ADV-ADV +PrepNp +P-VC +230887 Conj-CL +230889 S-P-VC-ADV +PrepNp +DetNP +AdjpNp +V2CL +that-VP +P-ADV-S +DetCL +P-VC +230899 V-ADV +230901 ADV-V-O +230903 V-ADV +PrepNp +230906 ADV-V-O +230908 Conj-CL +230910 sub-CL +ADV-V +230913 Conj-CL +230915 sub-CL +V-S +DetNP +230919 Conj-CL +CLaCL +O-ADV-V-S +DetNP +DetNP +230925 S-O-V +230927 Conj-CL +230929 Np2CL +S-V +DetNP +VerbBe +230935 DetAdj +that-VP +Conj5CL +S-P-VC +AdvpNp +DetCL +V-O +sub-CL +ADV-V +230945 S-P +DetCL +V2CL +sub-CL +ADV-V +230951 S-P +DetCL +V2CL +sub-CL +ADV-V +230957 S-P +DetCL +V2CL +sub-CL +ADV-V +230963 S-P +DetCL +V-O +DetNP +sub-CL +ADV-V +230970 Conj-CL +V-S +DetNP +NPofNP +NP-Demo +DetNP +230977 Conj-CL +V-O +S-P-VC +230981 ClCl +S-V-O +DetNP +NPofNP +DetNP +ADV-V-O +DetNP +230989 Conj-CL +CLaCL +ClCl +S-V-O +DetCL +V2CL +NPofNP +DetNP +ADV-V-O +DetNP +231000 V2CL +231003 aNpaNp +231005 Np-Appos +DetNP +DetNP +231009 DetNP +NPofNP +DetNP +sub-CL +VC-P-ADV +aNpaNp +231016 DetNP +231018 DetNP +231020 Conj-CL +ClCl +S-V-O +DetCL +V2CL +NPofNP +DetNP +ADV-V-O +DetNP +231030 Conj-CL +231032 PrepNp +DetNP +ofNPNP +NpPron +notCLbutCL2CL +sub-CL +O-IO-V +ADV-ADV-ADV +PrepNp +DetAdj +AdjpaAdjp +231044 DetNP +231046 Conj-CL +231048 CLaCL +ClCl +sub-CL +S-O-V +V-ADV +PrepNp +DetNP +NPofNP +sub-CL +VC-P +231059 ADV-V-O +V2CL +O-V +231063 ClCl +ADV-V +V2CL +231067 Conj-CL +S-ADV-V +CLaCL +S-V-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +ADV-V-O +231076 CLaCL +O-V-ADV +PrepNp +DetNP +AdjpNp +231083 PrepNp +DetNP +AdjpNp +V-O +DetNP +ofNPNP +231090 Conj-CL +aCLaCL +231093 S-ADV-V +DetCL +V-O +DetNP +ofNPNP +231099 S-O-V +DetCL +ADV-V +231103 S-V-ADV +PrepNp +ADV-V-S +AdjpNp +DetNP +NPofNP +231110 Conj-CL +231112 sub-CL +V-S +DetNP +IO-V +O-V +ADV-ADV +PrepNp +231120 Conj-CL +CLaCL +ClCl +P-VC +sub-CL +ADV-V-ADV +PrepNp +DetNP +AdjpNp +231130 V-S-O +O-V +NPofNP +231134 Conj-CL +231136 PrepNp +DetAdj +that-VP +S-O-V +231141 CLaCL +S-V +DetNP +231145 S-V +DetNP +231148 ClCl2 +sub-CL +S-V-O +V-O +231153 sub-CL +V-S +V2CL +231157 Conj-CL +ClCl2 +sub-CL +S-V-O +DetNP +S-V-ADV +PrepNp +231165 Conj-CL +231167 PrepNp +DetNP +NPofNP +DetAdj +CLaCL +that-VP +P-S-ADV +PrepNp +231176 that-VP +231178 sub-CL +ADV-P +231181 Conj-CL +CLaCL +sub-CL +231185 AdjpNp +V2CL +aPpaPp +231189 PrepNp +231191 PrepNp +sub-CL +CLaCL +VC-S-P +231196 S-P +231198 CLaCL +ADV-P-S +NP-CL +Np-Appos +DetNP +CLaCL +P-S +PrepNp +DetAdj +231208 S-P +PrepNp +231211 P-S +NP-CL +Np-Appos +Np-Appos +CLaCL +P-S +PrepNp +DetAdj +231220 S-P +PrepNp +231223 Conj-CL +ADV-P-S +PrepNp +DetNP +231228 Conj-CL +CLaCL +231231 DetNP +PrepNp +DetNP +sub-CL +O-V +231237 S-ADV-V +DetNP +NPofNP +P-VC +231242 Conj-CL +S-O-ADV-V-IO +DetNP +231246 aCLaCL +231249 sub-CL +ADV-V +231253 sub-CL +V2CL +231256 Conj-CL +ClCl +V2CL +PtclCL +PtclCL +S-P-VC-ADV +NP-Demo +DetNP +NPofNP +DetAdj +231267 Conj-CL +ClCl2 +sub-CL +S-V-O +S-ADV-V +Np-Appos +DetCL +V-O +PrepNp +PtclCL +S-ADV-V-ADV +DetNP +NPofNP +P-VC +PrepNp +DetCL +O-V +DetAdj +231286 Conj-CL +V-ADV-S +PrepNp +DetNP +AdjpNp +Np-Appos +DetCL +V2CL +DetNP +NP-CL +ADV-S-V +PrepNp +231299 Conj-CL +ADV-ADV-V +CLaCL +ADV-V-ADV +PrepNp +DetNP +231306 V-O +ofNPNP +DetNP +NpAdjp +V2CL +PrepNp +231313 Conj-CL +231315 sub-CL +S-V-O +DetNP +NPofNP +2Advp_h1 +PrepNp +DetNP +sub-CL +ADV-O-V +DetNP +NPofNP +231327 PtclCL +VC-P +231330 PtclCL +VC-P +231333 PtclCL +O-V +Np-Appos +DetNP +NPofNP +231339 PtclCL +P-S-VC-ADV +DetNP +NPofNP +PrepNp +231346 sub-CL +ADV-ADV-VC-P +PtclCL +ADV-VC +231351 Conj-CL +P-S-VC-ADV +DetNP +NPofNP +NPofNP +DetNP +PrepNp +231359 S-ADV-VC-P +DetNP +AdjpNp +DetCL +O-V +231365 PtclCL +ADV-V-O-ADV +V2CL +Conj2VP +231371 PtclCL +231373 O-V +Np-Appos +sub-CL +S2CL +AdvpNp +Conj3Np +DetNP +AdjpNp +231382 DetNP +NPofNP +DetNP +231387 Conj-CL +ADV-S-ADV-V-O-ADV +NpaNp +231391 ADV-V +231393 S-V-ADV-ADV +AdjpNp +231396 CLaCL +S-V-O +231399 O-ADV-V +DetNP +NPofNP +231403 Conj-CL +CLaCL +S-V-O +231407 ADV-ADV-V +PrepNp +DetNP +NPofNP +DetNP +231413 PtclCL +CLaCL +ADV-O-V +PrepNp +231418 S-O-ADV-V +AdvpNp +DetNP +231422 Conj-CL +231424 PrepNp +DetNP +ofNPNP +ADV-V-O +NpAdjp +V2CL +231431 PtclCL +ADV-V-ADV +DetNP +DetNP +231436 Conj-CL +ADV-ADV-V +PrepNp +231440 Conj-CL +231442 PrepNp +sub-CL +CLaCL +V-O-S +ADV-V +PrepNp +DetCL +V2CL +231451 S-ADV-ADV +DetCL +V2CL +PrepNp +DetCL +V2CL +231459 sub-CL +S-IO-O-V +DetAdj +sub-CL +S-O-V +ofNPNP +DetAdj +231467 ClCl2 +sub-CL +S-O-V +DetNP +ofNPNP +PtclCL +ADV-S +231475 Conj-CL +ClCl +CLaCL +ADV-V-O +NP-Demo +DetNP +231482 O-V +sub-CL +ADV-O-V-IO +AdjpNp +DetNP +NPofNP +DetNP +231491 that-VP +ClCl +S-O-V +DetCL +O-V +DetAdj +NpPp +PrepNp +DetNP +S-ADV-V +DetCL +ADV-V +DetNP +DetNP +231506 ADV-S-V-IO-O +AdvpNp +DetNP +DetCL +O-V +DetNP +ADV-V +PrepNp +DetNP +231516 Conj-CL +S-ADV-V-O +NPofNP +231520 Conj-CL +ClCl +231523 sub-CL +ADV-V-ADV +PrepNp +sub-CL +CLaCL +P-ADV-ADV-S +V2CL +231531 O-S-V +DetNP +NPofNP +231535 Conj-CL +ClCl2 +sub-CL +V2CL +ADV-VC-P-S +231541 Conj-CL +S-ADV-V +231544 Conj-CL +ClCl +S-P-VC +sub-CL +ADV-V +231550 Conj-CL +231552 sub-CL +ADV-O-V +231555 Conj-CL +231557 sub-CL +ADV2CL +231560 Conj-CL +P-VC-S +ofNPNP +DetNP +231565 that-VP +ADV-ADV-V-O-ADV +V2CL +DetNP +PrepNp +DetCL +ADV-V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +231577 Conj-CL +231579 P-VC-ADV +PrepNp +sub-CL +O-V +DetAdj +231585 Conj-CL +ClCl +ClCl +VC-ADV-P +DetNP +PrepNp +sub-CL +O-V +231594 NpPp +PrepNp +PrepNp +PrepNp +ADV-VC-S-P +PrepNp +sub-CL +O-V +NpPp +PrepNp +231606 DetNP +PrepNp +notCLbutCL2CL +VC-P +NPofNP +P2CL +NPofNP +sub-CL +V-O +DetNP +231618 DetAdj +sub-CL +O-V +DetAdj +231624 DetAdj +sub-CL +ADV-O-V +231628 Conj-CL +231630 PrepNp +DetNP +sub-CL +P-VC +NPofNP +231637 that-VP +231639 Np2CL +DetCL +ADV-V +PrepNp +231644 S-V +231646 S-V-O +DetNP +231650 sub-CL +V2CL +231653 Conj-CL +ClCl +S-ADV-V +All-NP +DetCL +V2CL +Conj-CL +aCLaCL +231663 sub-CL +O-V +AdjpNp +231667 ClCl +S2CL +O2CL +231671 Conj-CL +231673 sub-CL +ADV-ADV +ADV-V-ADV +sub-CL +ADV-O-V +231679 Conj-CL +ClCl +CLaCL +V-O +ofNPNP +DetNP +231686 V2CL +PtclCL +PtclCL +ADV-S-P-VC +IO-V +231692 Conj-CL +231694 Np2CL +231696 that-VP +Conj4CL +S-P-VC +NP-all +DetNP +NPofNP +PrepNp +DetNP +231705 S-ADV-V +PrepNp +DetNP +231709 S-ADV-V-ADV +PrepNp +DetNP +Conj2Pp +PrepNp +DetNP +231716 PrepNp +DetNP +231719 CLaCL +S-O-V +DetNP +PronNP +AdjpNp +231725 S-O-V +DetNP +PronNP +AdjpNp +231730 Conj-CL +V-ADV +PrepNp +AdjpNp +AdjpNp +V2CL +231737 Conj-CL +S-VC-P +DetNP +DetNP +231742 Conj-CL +ClCl +ADV-ADV-V-S +PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-ADV +PrepNp +DetAdj +231754 Conj-CL +231756 NPofNP +PrepNp +DetCL +ADV-VC-S-P +NPofNP +sub-CL +S-V +231764 Conj-CL +ClCl +ClCl +P-VC +sub-CL +S2CL +NPofNP +sub-CL +231773 CLaCL +V-S-ADV +DetNP +V2CL +Conj2VP +231780 V-ADV +V2CL +231783 Conj-CL +231785 sub-CL +CLaCL +S-V +NPofNP +231790 V-ADV-S +AdjpNp +AdjpNp +231794 Conj-CL +231796 DetNP +sub-CL +CLaCL +S-V +NPofNP +231802 ADV-V +PrepNp +DetNP +231806 Conj-CL +231808 sub-CL +CLaCL +S-V +NPofNP +231813 V-ADV +PrepNp +DetNP +231817 Conj-CL +CLaCL +S-ADV-V-ADV +231821 V-ADV +PrepNp +NPofNP +NP-CL +ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +231831 Conj-CL +231833 DetCL +V-O +V2CL +PtclCL +V2CL +231840 sub-CL +ADV-S +231843 Conj-CL +P-S +DetNP +NP-CL +S-V +notCLbutCL +V-O +S-V-ADV +PrepNp +O-V +V-ADV-O-ADV +PrepNp +DetNP +AdvpNp +DetNP +DetCL +V-O +V2CL +231862 Conj-CL +231864 Np2CL +NPofNP +PrepNp +DetNP +231869 sub-CL +IO-V +231872 V-S-O +O-V +231875 S-ADV-VC-P +DetNP +NP-CL +NPofNP +DetNP +O-V +NPofNP +DetNP +NPofNP +DetNP +231886 S-ADV-P-VC +DetNP +NP-CL +O-V +NPofNP +DetNP +NPofNP +DetNP +231895 ClCl +231897 sub-CL +P-S +AdjpNp +DetAdj +sub-CL +S-ADV-V +DetAdj +PrepNp +DetNP +AdjpNp +231908 V-O +DetNP +NpPp +PrepNp +231913 PtclCL +S-P-VC +DetCL +V-O +DetNP +NPofNP +DetNP +231921 Conj-CL +O-V +231924 CLaCL +that-VP +S-P-VC +231928 that-VP +S-P-VC +231931 Conj-CL +that-VP +CLaCL +O-IO-V +O-V +NpaNp +231938 AdvpNp +231940 ADV-V-O +S-P-VC +NPofNP +DetNP +231945 ADV-V-O +CLaCL +O-V +NPofNP +231950 O2CL +NPofNP +231953 ADV-V-O +CLaCL +O-V +NPofNP +231958 O2CL +NPofNP +231961 Conj-CL +V-O +DetNP +231965 PtclCL +P-ADV-VC +231968 CLaCL +S-V +231971 ADV-S-V +231973 CLaCL +S-V +231976 ADV-S-V +231978 CLaCL +S-O-V +NPofNP +231982 O2CL +NPofNP +DetAdj +231986 ClCl +O-V-ADV +All-NP +DetCL +ADV-V +PrepNp +O-V-ADV +PrepNp +DetNP +Conj-CL +P-S +DetNP +NpaNp +DetNP +232001 DetNP +NPofNP +232004 ClCl2 +sub-CL +CLaCL +S-V-O +NPofNP +DetAdj +232011 V-O +V2CL +O-V-ADV +All-NP +DetCL +V-IO +O-V-ADV +PrepNp +DetNP +232021 Conj-CL +ClCl2 +sub-CL +232025 S-P-VC +CLaCL +ADV-V-ADV +PrepNp +NpaNp +Demo-NP +DetCL +V2CL +232034 DetNP +232037 Np-Appos +notNPbutNP +NPofNP +NPofNP +DetAdj +sub-CL +ADV-S-V-ADV +PrepNp +DetNP +NPofNP +PrepNp +ofNPNP +232050 ClCl2 +sub-CL +S-ADV-V +ADV-V-ADV +PrepNp +ADV-S-V +232057 Conj-CL +ClCl2 +aCLaCLaCL +232061 V2CL +232063 V2CL +232065 O-V +O-ADV-V +PrepNp +NPofNP +232071 aNpaNpaNp +232075 DetNP +NPofNP +DetNP +sub-CL +ClCl +S-ADV-O-V-ADV +V-O +notNPbutNP +DetNP +ofNPNP +NPofNP +DetAdj +sub-CL +V2CL +232091 NPofNP +sub-CL +S-P +232095 Conj-CL +232097 sub-CL +CLaCL +ADV-O-V +232101 ClCl2 +sub-CL +V-IO +O-V +DetNP +232107 Conj-CL +V-O +232110 that-VP +Conj3CL +P-S-VC +ofNPNP +All-NP +DetNP +DetNP +232118 P-S +NPofNP +DetNP +232122 P-S +NPofNP +DetNP +DetNP +232127 S-ADV-V-O +All-NP +V-ADV +Conj2VP +232132 ADV-V +PrepNp +DetNP +NPofNP +232137 Conj-CL +S-ADV-V-O +All-NP +V-ADV +Conj2VP +232143 AdjpNp +DetNP +DetNP +NPofNP +232148 Conj-CL +VC-P-ADV +NpaNp +232152 DetNP +DetCL +V2CL +232156 Conj-CL +232158 sub-CL +ADV-V-S +232161 Conj-CL +232163 sub-CL +P-ADV-S +DetCL +V2CL +Conj2VP +232170 Conj-CL +aCLaCL +232173 S-ADV-V-O-ADV +V-O +DetNP +P-VC +NPofNP +NpaNp +232181 S-P-VC +DetNP +NPofNP +232185 Conj-CL +notCLbutCL2CL +VC-S-P +PrepNp +S-P +PrepNp +232192 Conj-CL +notCLbutCL2CL +2Advp_h2 +V-S-ADV +PrepNp +DetNP +S-ADV +PrepNp +DetNP +232202 ADV-V-S-O +PrepNp +DetNP +O-V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +232211 Conj-CL +aCLaCL +232214 S-P +PrepNp +232217 S-P-ADV +PrepNp +PrepNp +232221 Conj-CL +CLaCL +232224 sub-CL +S-P +DetNP +PrepNp +DetNP +AdvpNp +DetNP +PrepNp +DetNP +232234 S-P +DetAdj +PrepNp +DetNP +232239 ADV-V +PrepNp +NpPron +232243 P-VC-S +V2CL +S-IO-V +NpAdjp +DetNP +232249 ClCl +232251 DetNP +NpPron +that-VP +aCLaCL +232257 sub-CL +S-V +232261 sub-CL +S-V +sub-CL +S-ADV-V-IO +DetNP +PrepNp +232268 Conj-CL +ClCl2 +sub-CL +S-V-O +P-VC +CLaCL +S-O-ADV-V +Demo-NP +232277 S2CL +DetNP +NPofNP +DetNP +232282 Conj-CL +232284 O-V +sub-CL +ADV-V +notPPbutPP +PrepNp +DetAdj +PrepNp +DetAdj +232293 Conj-CL +PtclCL +AdvpCL +ClCl2 +V-S-ADV +PrepNp +CLaCL +V-O +S-ADV-V +PrepNp +232304 O-V +NpAdjp +232307 Conj-CL +ClCl +V-S +S-P-VC +AdvpNp +PrepNp +sub-CL +S-P-VC-ADV +AdvpNp +DetAdj +PrepNp +232319 Conj-CL +ClCl +ClCl2 +V-S-ADV +PrepNp +DetNP +ADV-V-S +O-V +AdjpNp +sub-CL +CLaCL +S-O-V-ADV +DetNP +AdjpNp +PrepNp +DetCL +V2CL +232337 aCLaCL +232339 S-V +232341 S-V +232343 Conj-CL +PtclCL +O-ADV-V-ADV +PrepNp +DetCL +V2CL +Conj2VP +232352 Conj-CL +CLaCL +O-V +DetNP +NPofNP +DetNP +232359 V-O +DetCL +ADV-V +232363 O-V-IO +232365 V-O +232367 ADV-ADV-V +PrepNp +232370 Conj-CL +232372 PrepNp +DetNP +O-ADV-V-IO +that-VP +Conj3CL +S-ADV-V-O +Np-Appos +DetNP +PrepNp +DetNP +NP-CL +ADV-V +232385 ADV-V +V2CL +232389 ClCl +S-VC-P +Np-Appos +ofNPNP +DetNP +NpPp +PrepNp +O-V-ADV +PrepNp +DetNP +AdjpNp +232401 AdvpCL +O-ADV-ADV +AdvpNp +DetNP +PrepNp +DetCL +V2CL +232409 ClCl +S-P-VC-ADV +Demo-NP +DetNP +DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +O-V-ADV-ADV +AdvpCL +PtclCL +V2CL +PrepNp +DetNP +AdjpNp +232426 Conj-CL +ClCl2 +AdvpCL +PtclCL +CLaCL +V-O +NP-Demo +DetNP +232435 O-V +DetNP +O-V-ADV +DetNP +NPofNP +DetNP +PrepNp +ADV-V +232444 Conj-CL +S-P-VC-ADV +PtclCL +S-V-ADV +CLaCL +V-O +DetNP +232452 V-O +DetNP +NPofNP +DetNP +NPofNP +NpaNp +DetNP +232460 DetNP +DetNP +232463 Conj-CL +CLaCL +V-S-O +232467 CLaCL +ADV-ADV-V +PrepNp +DetNP +232472 ADV-V +PrepNp +DetNP +232476 Conj-CL +S-O-IO-V-ADV +DetCL +V2CL +Conj2VP +232482 Conj2VP +232484 ADV-V-O +DetNP +232487 CLaCL +ADV-ADV-S-P +PrepNp +PrepNp +AdjpaAdjp +232494 V-S +232496 Conj-CL +ClCl2 +sub-CL +O-V +PtclCL +ADV-V +232503 Conj-CL +232505 V-ADV +PrepNp +DetNP +sub-CL +ADV-ADV-V +PrepNp +DetNP +232513 Conj-CL +232515 Np2CL +NPofNP +V-ADV +PrepNp +DetCL +V2CL +232523 sub-CL +S-V +PrepNp +sub-CL +ADV-ADV-V +PrepNp +232530 Conj-CL +O-ADV-V +DetAdj +sub-CL +PtclCL +V2CL +232537 Conj-CL +232539 Np2CL +PrepNp +DetAdj +S-V +232545 that-VP +ClCl2 +sub-CL +P-VC +ADV-ADV-V +PrepNp +DetNP +NPDetAdj +DetAdj +sub-CL +PtclCL +V2CL +232558 Conj-CL +232560 that-VP +CLaCL +232563 NpAdjp +ADV-V +PrepNp +NPofNP +P-S +232571 P-S +sub-CL +ADV-ADV +PrepNp +NpAdjp +232577 Conj-CL +CLaCL +S-V +NPofNP +232582 S2CL +DetNP +PronNP +232586 Conj-CL +CLaCL +S-V +NPofNP +232591 S2CL +DetNP +PronNP +232595 Conj-CL +CLaCL +S-V +NPofNP +232600 S2CL +Np-Appos +DetNP +PronNP +DetCL +V-O-ADV +DetAdj +PrepNp +232609 Conj-CL +IO-V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +DetCL +V2CL +232618 Conj-CL +EitherOr7CL +232621 IO-ADV-V-S +PrepNp +DetNP +NPofNP +232627 NPofNP +PrepNp +DetNP +PronNP +IO-S-ADV +PrepNp +DetNP +PronNP +232636 IO-S-ADV +NPofNP +PrepNp +DetNP +AdjpNp +232642 IO-S +NPofNP +232645 IO-S +232648 NPofNP +IO-S +NPofNP +232652 IO-S +NPofNP +232655 Conj-CL +ClCl +O-V-S-ADV +All-NP +NpaNp +DetAdj +232662 DetNP +PronNP +V-IO +AdjpNp +sub-CL +V2CL +232669 Conj-CL +232671 sub-CL +CLaCL +CLaCL +S-P-VC +DetNP +232677 O-V +NpAdjp +232680 S-ADV-P-VC +All-NP +DetNP +NPofNP +DetNP +P-VC +AdjpNp +AdvpNp +DetNP +232690 Conj-CL +CLaCL +232693 AdvPp +PrepNp +AdjpNp +Np-Appos +PrepNp +AdjpNp +S2CL +EitherOr4Np +232706 S-O-V +AdjpNp +232709 Conj-CL +S-VC-P +AdvpNp +DetNP +notNPbutNP +AdjpNp +232716 ClCl2 +sub-CL +232719 DetNP +ClCl2 +sub-CL +ADV-VC-P +ADV-VC-P +PrepNp +DetNP +AdvpCL +ADV-ADV-VC-P +PrepNp +PrepNp +DetNP +232732 Conj-CL +ClCl2 +sub-CL +232736 DetNP +ClCl2 +sub-CL +ADV-VC-P +ADV-VC-P +PrepNp +DetNP +AdvpCL +ADV-ADV-VC-P +PrepNp +PrepNp +DetNP +232750 sub-CL +S-P +All-NP +DetNP +DetNP +232757 sub-CL +S-P +DetNP +232761 Conj-CL +232763 DetNP +Np-Appos +DetNP +NPofNP +NpAdjp +PrepNp +DetNP +sub-CL +V2CL +232773 Conj-CL +232775 sub-CL +VC-S-P +DetAdj +AdjpNp +DetNP +232781 Conj-CL +aCLaCL +232784 ADV-P-S +232786 P-S +232788 Conj-CL +CLaCL +ADV-V-S-O +DetNP +232793 DetNP +O-ADV-V +NPofNP +232797 ClCl +ADV-S-IO +DetNP +DetNP +O-ADV-V +NPofNP +232804 Conj-CL +CLaCL +Conj3CL +ADV-S-P-VC +2Advp_h1 +DetNP +AdjpNp +V-O +P-VC +NPofNP +DetNP +232817 O-V +S-VC-P +NPofNP +DetNP +NpAdjp +232823 S-O-V +DetNP +NPofNP +NpAdjp +232828 S-ADV-O-V +DetNP +NPofNP +232832 Conj-CL +232834 DetNP +DetNP +IO-V-O +DetCL +V2CL +AdjpNp +sub-CL +CLaCL +ADV-VC-S-P +PrepNp +DetNP +232846 O-ADV-V-S +DetNP +PrepNp +DetNP +232851 Conj-CL +ClCl +ClCl2 +sub-CL +V-S +AdjpNp +V-S +All-NP +DetNP +ClCl2 +sub-CL +V-S +V-S +All-NP +DetNP +232867 Conj-CL +S-VC-P +NpaNp +NPofNP +232872 NpPp +PrepNp +232875 Conj-CL +PtclCL +S-P +O-V-S-ADV +DetNP +PrepNp +DetNP +ClClClClCl +ADV-O +ADV-O +ADV-O +ADV-O +ADV-O +NpNpNpNp +NPofNP +NPofNP +232892 PtclCL +S-P +232895 PtclCL +S-P +232898 PtclCL +S-P +232901 PtclCL +S-P +232904 PtclCL +S-V-O +NPofNP +232908 PtclCL +S-ADV-V +232911 PtclCL +S-V +232914 Conj-CL +V-O +DetNP +NPDetAdj +DetAdj +232920 Conj-CL +ADV-O-IO-V +AdvPp +PrepNp +232925 ClCl2 +sub-CL +CLaCL +ADV-V +DetNP +NPofNP +NpaNp +DetNP +232934 DetNP +232936 O-ADV-V +VC-P +NpaNp +NpAdjp +V2CL +232942 NpAdjp +V2CL +232945 Conj-CL +ClCl2 +CLaCL +CLaCL +sub-CL +CLaCL +V-O +232953 V-O +NpaNp +NP-all +DetNP +232958 All-NP +DetNP +232961 sub-CL +V-O-ADV +All-NP +DetNP +sub-CL +O-V +232968 O-ADV-V +P-VC +232971 Conj-CL +232973 CLaCL +CLaCL +sub-CL +V-O +All-NP +NPofNP +DetCL +V2CL +232982 sub-CL +232984 DetNP +NPofNP +sub-CL +V2CL +232989 O-ADV-V +232991 ClClClClClClClClClCl +S-V +DetNP +V-S +DetNP +ADV-V +S-ADV-V +DetNP +ADV-V +ADV-V +ADV-V-O +NPofNP +ADV-V +ADV-V-O +DetAdj +notCLbutCL2CL +V-ADV +PrepNp +DetNP +V-ADV +DetNP +233013 ClClClCl +O-V +O-V +O-V +O-V +233019 S-ADV-V +DetNP +233022 Conj-CL +ClClCl +ClCl2 +sub-CL +S2CL +V2CL +ClCl2 +sub-CL +S2CL +V2CL +ClCl2 +sub-CL +S2CL +V2CL +233037 Conj-CL +CLaCL +ADV-V +PrepNp +233042 ADV-V +PrepNp +233045 Conj-CL +233047 sub-CL +V-S +DetAdj +NpPp +PrepNp +233053 ClCl2 +sub-CL +VC-P +ClClCl +V-ADV +PrepNp +V-ADV +PrepNp +V-ADV +PrepNp +233065 sub-CL +VC-P +NPofNP +DetAdj +233070 Conj-CL +CLaCL +V-ADV-ADV-ADV +PrepNp +PrepNp +233076 ADV-O-ADV +PrepNp +233079 CLaCL +ADV-V-ADV +PrepNp +233084 sub-CL +ADV-V +233087 Conj-CL +CLaCL +ADV-V-S +Np-Appos +NpNpNp +NP-Demo +DetAdj +233095 P-ADV-S +DetNP +233098 CLaCL +CLaCL +V-O +DetNP +233103 V-O +DetAdj +233106 that-VP +ADV-V +233109 Conj-CL +ClCl +CLaCL +S-ADV-IO-V +DetCL +V-ADV +233116 IO2CL +sub-CL +CLaCL +S-V +233121 IO-V-O +233123 Conj-CL +S-IO-V-O +DetCL +V2CL +Conj3Np +233131 S-O-V +DetCL +V-ADV +233135 Conj-CL +S-O-V +DetCL +V2CL +233140 Conj-CL +CLaCL +V-O +S-V-ADV +All-NP +233146 that-VP +ADV-V +233149 Conj-CL +ClCl +CLaCL +P-S +DetCL +V2CL +233156 S2CL +DetCL +V-ADV +sub-CL +233161 sub-CL +S-O-V +DetNP +233165 Conj-CL +233167 Np2CL +ClCl2 +sub-CL +ADV-V-ADV-ADV +PrepNp +ADV-V +O2-O-V +sub-CL +ADV-IO-V-ADV +aPpaPpaPp +233178 PrepNp +233180 PrepNp +233182 PrepNp +NpaNp +233186 AdvpCL +ClCl2 +233189 DetNP +AdjpNp +O-V +S2CL +aNpaNp +233196 ClCl2 +sub-CL +O-ADV-ADV-V +DetNP +ADV-V-S +NpaNp +DetCL +V2CL +233205 DetCL +V2CL +233208 Conj-CL +233210 sub-CL +S-O-V +AdvpNp +AdjpNp +PrepNp +233216 AdvpCL +ClCl2 +sub-CL +S-ADV-ADV-O-V +AdvpNp +PrepNp +DetNP +AdjpNp +ADV-V-S +DetCL +V2CL +233228 Conj-CL +ADV-V +PrepNp +BeVerb +233233 CLaCL +ClCl2 +sub-CL +V2CL +S-VC-P +AdjpNp +NPofNP +PrepNp +233242 S-P +233244 Conj-CL +ClCl2 +sub-CL +ADV-V-O +DetNP +NPofNP +DetNP +CLaCL +VC-ADV-P +DetCL +V2CL +233256 S-ADV-P +DetCL +V2CL +PrepNp +233261 AdvpCL +233263 Np2CL +AdvpNp +sub-CL +P-VC +NPofNP +233269 PrepNp +DetNP +NPofNP +DetNP +that-VP +V2CL +233276 Conj-CL +233278 DetCL +V-ADV +sub-CL +V2CL +233283 Conj-CL +CLaCL +ClCl2 +sub-CL +V-ADV +S-V +DetNP +NPofNP +233292 S-P-VC +DetNP +NPofNP +233296 Conj-CL +P-VC +233299 ClCl +ClCl +CLaCL +V-ADV +DetNP +233305 V-ADV +AdvpNp +DetNP +CLaCL +V-ADV +DetNP +233312 V-ADV +AdvpNp +DetNP +sub-CL +ClCl +ClCl2 +sub-CL +V-ADV +S-ADV-V-O-ADV +DetCL +V-O +DetNP +NPofNP +DetNP +DetNP +PrepNp +DetNP +AdjpNp +sub-CL +233332 O-V +233334 Conj-CL +PtclCL +CLaCL +S-ADV-V +233339 S-ADV-V +DetAdj +233343 DetNP +ADV-ADV-ADV-V +All-NP +233347 Conj-CL +CLaCL +233350 PrepNp +O-ADV-V +NumpNP +DetNP +NPofNP +sub-CL +O-V +AdvpNp +233359 O-ADV +AdjpNp +PrepNp +233364 Np2CL +notCLbutCL2CL +P-VC-ADV +DetNP +ADV-V +DetNP +233371 ADV-P-VC +DetNP +233375 PrepNp +DetNP +that-VP +ClCl2 +CLaCL +ADV-V-IO +Conj2Pp +PrepNp +233384 PrepNp +NPofNP +NP-Demo +DetNP +233389 ADV-ADV-V-O +V-S +233392 Conj-CL +CLaCL +S-P-VC-ADV +DetNP +PrepNp +notNPbutNP +DetCL +V2CL +DetAdj +233402 S-ADV +DetNP +notNPbutNP +DetAdj +DetCL +V2CL +233409 Conj-CL +ClCl2 +sub-CL +CLaCL +CLaCL +V-S-ADV +NP-all +DetNP +PrepNp +DetNP +233420 S-V-ADV +233422 V-S +NpaNp +233425 PtclCL +233427 that-VP +V2CL +233430 Conj-CL +ClCl2 +sub-CL +CLaCL +S-V +233436 V-S +AdjpNp +NpaNp +233440 CLaCL +ClClCl +V-ADV +PrepNp +V-ADV +PrepNp +S-P-VC +DetNP +NPofNP +DetNP +NPofNP +233452 ADV-ADV-V-O-ADV +V-ADV +PrepNp +DetNP +233457 that-VP +ADV-S-P-VC +DetNP +PrepNp +233462 Conj-CL +233464 Np2CL +233466 ClCl2 +sub-CL +V2CL +ClClClClCl +S-O-V +O-V +O-V +O-V +O-V +233476 S-P-VC +PrepNp +233479 ClCl2 +sub-CL +ADV-S-V +CLaCL +ADV2CL +Conj2Pp +PrepNp +NpaNp +233488 Np-Appos +DetAdj +233491 PrepNp +233493 S-V +233495 Conj-CL +CLaCL +ClCl2 +sub-CL +ADV-V-S +V-ADV +PrepNp +233503 V-IO +NpaNp +233506 DetNP +233508 Conj-CL +CLaCL +S-V +NpNump +Conj2Nump3 +233514 S-V +DetAdj +233517 Conj-CL +ClCl2 +sub-CL +IO-V +NpAdjp +V2CL +S-V +DetAdj +233526 Conj-CL +CLaCL +233529 PrepNp +V2CL +sub-CL +CLaCL +S-V +233535 S-V +233537 S-IO-V +NPofNP +233540 Conj-CL +notCLbutCL2CL +VC-P-S +DetNP +P2CL +233546 ClCl +ClCl2 +sub-CL +ADV2CL +PrepNp +All-NP +DetNP +NPofNP +DetAdj +S-ADV-V +DetNP +PrepNp +DetNP +sub-CL +ADV-V-IO-S +V2CL +233563 Conj-CL +ClCl +V2CL +sub-CL +S-V +AdvpNp +DetNP +233571 Conj-CL +ClCl +ClCl2 +sub-CL +O-V +O-V +ADV-O-V +PrepNp +DetNP +AdjpNp +sub-CL +P-VC-ADV-S +V-ADV +PrepNp +233586 aCLaCL +233588 ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +233594 ADV-ADV-V +PrepNp +233597 ClCl2 +sub-CL +S-V-O +VC-P +NpaNp +233604 O-V-IO +that-VP +P-VC +ofNPNP +233609 Conj-CL +ClCl2 +sub-CL +S-V +V2CL +233615 Conj-CL +233617 Np2CL +NPofNP +V-O +DetCL +V2CL +233623 O-ADV-V +DetCL +V-ADV +233627 Conj-CL +S-ADV-V +ADVaADV +233631 PrepNp +233633 Conj-CL +233635 Np2CL +DetNP +NP-CL +ClClClCl +O-V-IO +O-ADV-V +ADV-ADV-V +PrepNp +ADV-ADV-V +PrepNp +ClCl +233647 AdjpNp +sub-CL +V2CL +AdvpCL +sub-CL +ADV-ADV-V +233654 Conj-CL +233656 PrepNp +O-ADV-V +Conj4CL +that-VP +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +233667 that-VP +V2CL +233670 that-VP +V-ADV-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +233678 that-VP +ClCl +V-IO +ADV-IO +DetNump +233685 AdvpNp +AdjpNp +CLaCL +ADV-S-V-ADV +PrepNp +DetAdj +PrepNp +233693 S-V +233695 ClCl +ADV-V-IO +ADV-IO +DetNP +NP-all +233701 Conj-CL +233703 NPofNP +sub-CL +IO2CL +DetNP +233708 Conj-CL +S-VC-P +DetNP +NP-CL +NPofNP +DetNP +233715 S-ADV-VC-P-ADV +VC-P +V-O +DetNP +NPofNP +DetNP +233722 Conj-CL +CLaCL +CLaCL +ADV-VC-P +NPofNP +P-VC +233729 S-ADV-P-VC +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +233736 CLaCL +ADV-ADV-V +NP-all +233740 S2CL +notNPbutNP +DetNP +NpPp +NPofNP +DetNP +PrepNp +233748 Conj-CL +CLaCL +S-ADV-V +aNpaNp +233755 ADV-V +233757 Conj-CL +ClCl2 +sub-CL +233761 that-VP +ADV-V +PrepNp +233765 PpNp2Np +PrepNp +that-VP +S-ADV-V +NPofNP +233771 Conj-CL +233773 sub-CL +S-ADV-V +NPofNP +233777 Conj-CL +ClCl2 +sub-CL +S-ADV-V +sub-CL +CLaCL +233784 DetNP +NPofNP +P-S +AdvpNp +DetNP +NPofNP +233792 AdvpNp +NPofNP +DetNP +sub-CL +233797 PrepNp +DetNP +that-VP +V-O +NP-CL +DetNP +233804 O-ADV-V +sub-CL +S-ADV-V +233808 Conj-CL +233810 sub-CL +S-ADV-V +233813 Conj-CL +ClCl2 +sub-CL +S-ADV-V +233818 DetNP +NPofNP +ADV-VC-P +PrepNp +DetNP +NPofNP +233825 Conj-CL +S-V +AdvpNp +DetCL +V-ADV +PrepNp +233833 sub-CL +ADV-ADV-V-ADV +PrepNp +NP-Demo +DetNP +PrepNp +VerbBe +All-NP +233842 Conj-CL +ADV-V-ADV-S +PrepNp +Np-Appos +NPofNP +DetCL +V2CL +233850 Conj-CL +233852 sub-CL +P-S +PrepNp +AdvPp +PrepNp +NPofNP +233859 Conj-CL +233861 sub-CL +ADV-S-V +PrepNp +DetNP +AdvPp +PrepNp +DetNP +233869 Conj-CL +S-ADV +PrepNp +DetNP +AdjpNp +233875 ClCl +P-S +ADV-S-ADV +NPofNP +DetNP +PrepNp +DetNP +NPofNP +233885 DetNP +sub-CL +V-O-IO +DetNP +DetNP +NpaNp +233892 sub-CL +V-O +NpaNp +All-NP +233897 All-NP +NpaNp +233901 Conj-CL +V-S +S-V-ADV +PrepNp +ADV-V-O-ADV +All-NP +DetAdj +PrepNp +DetNP +NPofNP +233912 S-V +Np-Appos +AdjpNp +DetNP +233917 Conj-CL +O-V-ADV +PrepNp +DetNP +NPofNP +233923 Conj-CL +ClCl2 +sub-CL +233927 that-VP +S-V +P-S +that-VP +ADV2CL +PrepNp +DetCL +V-IO-O +DetAdj +233937 Conj-CL +233939 sub-CL +V-IO-S +DetAdj +AdvpNp +PronNP +DetNP +DetCL +V-IO-O +DetAdj +sub-CL +VC-S-P-ADV +DetNP +PrepNp +233953 sub-CL +O-V-S +DetCL +V-ADV +PrepNp +DetAdj +233961 sub-CL +ADV-S-ADV-V +PrepNp +233965 ADV-S-V-ADV +AdvpNp +All-NP +233970 Np2CL +PrepNp +AdvpNp +DetNP +AdjpNp +NP-CL +O-V-ADV +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +233984 sub-CL +ADV-V-ADV +PrepNp +PrepNp +DetNP +233990 ClCl +233992 sub-CL +S-ADV-V +V2CL +233996 V2CL +sub-CL +ADV-V +234000 ADV-V +234002 V-O-S +NpAdjp +NpAdjp +234006 ClCl +CLaCL +V-ADV +234010 ADV-V +sub-CL +O-S-V +NPofNP +234015 ADV-IO-V +PrepNp +234018 Conj-CL +234020 CLaCL +ADV-V-S +DetAdj +234024 ADV-V +AdjpNp +234028 Np2CL +S-ADV-V +O-S-V +ADV-V +234033 Conj-CL +234035 O-V +notCLbutCL2CL +O-V +Np-Appos +DetNP +DetCL +V2CL +O2CL +AdjpNp +234045 sub-CL +V2CL +NpaNp +234049 NPofNP +DetAdj +234052 Conj-CL +CLaCL +234055 DetNP +sub-CL +V2CL +234059 IO-O +NPofNP +DetNP +AdjpNp +234064 notCLbutCL2CL +S-P +All-NP +DetNP +PronNP +EitherOr4CL +234071 P-S +234073 P-S +NPofNP +234076 P-S +NPofNP +234079 P-S +234081 Conj-CL +S2CL +NpaNp +NpAdjp +234086 NpAdjp +234088 Conj-CL +aCLaCL +234091 P-S +DetNP +ofNPNP +DetAdj +234096 P-S +DetNP +DetAdj +234100 Conj3CL +P-S +NPofNP +234104 P-S +NPofNP +234107 P-S +NPofNP +234110 Conj-CL +S-ADV-V-ADV +PrepNp +234114 ADV-S +AdvpNp +DetNP +NPofNP +DetAdj +234120 ClCl +V-ADV +PrepNp +V-ADV +PrepNp +234126 ClCl +V-ADV +PrepNp +V-ADV +PrepNp +234132 ClCl +V-ADV +PrepNp +V-ADV +PrepNp +234138 ClCl +V-S +NpAdjp +V-S +NpAdjp +234145 sub-CL +V-S +NpAdjp +AdvpNp +234151 ClCl +V-S-ADV +Np-Appos +DetNP +AdjpNp +PrepNp +NpAdjp +V2CL +S-ADV +DetNP +AdjpNp +PrepNp +NpAdjp +V2CL +234166 Conj-CL +notCLbutCL2CL +ADV-S +DetAdj +ClCl +S2CL +DetAdj +ADV-S +DetAdj +234176 ClCl +S-ADV-P +DetNP +AdjpNp +PrepNp +S-P +DetNP +AdjpNp +PrepNp +234186 CLaCL +234188 P-S +DetAdj +AdvpNp +DetAdj +234194 P-S +DetAdj +AdvpNp +DetAdj +234199 Conj-CL +234201 sub-CL +V-O +DetNP +NPofNP +DetAdj +AdvpNp +DetNP +NPofNP +DetAdj +234211 Conj-CL +234213 Np2CL +that-VP +CLaCL +S-O-ADV-V +NpaNp +234219 O-V +NPofNP +234222 S-O-V +DetNP +DetNP +234226 ClCl2 +V2CL +O-IO-V +234230 CLaCL +S-ADV-V +234233 S-V-ADV +PpPpPp +PrepNp +PrepNp +NPofNP +PrepNp +DetNP +AdjpNp +234242 Conj-CL +Conj3CL +V2CL +234246 S-V-ADV +DetAdj +234249 S-V +234251 Conj-CL +V-S +CLaCL +S-V-O +NP-Demo +DetAdj +234258 S-V-O +NP-Demo +DetAdj +234262 Conj-CL +ClCl2 +sub-CL +CLaCL +S-V-O +NP-Demo +DetAdj +234270 S-V-O +NP-Demo +DetAdj +234274 Np-Appos +DetNP +DetCL +V2CL +ClCl +V-S-ADV +DetNP +PrepNp +ClCl +234284 Np2CL +ofNPNP +DetNP +234288 Np2CL +ofNPNP +DetNP +234292 Conj-CL +CLaCL +S-P +DetNP +NPofNP +DetNP +DetNP +234300 S-P +DetNP +NPofNP +DetNP +DetNP +234306 Conj-CL +S-IO +Np-Appos +DetNP +DetCL +V-IO-O-ADV +DetNP +PrepNp +Np-Appos +DetNP +NPofNP +Np-Appos +234319 Conj-CL +234321 Np2CL +NpAdjp +NPofNP +AdjpAdjp +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +234331 sub-CL +S-ADV-VC-P-ADV +DetNP +NPofNP +PrepNp +234337 Conj-CL +ClCl2 +ADV2CL +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +DetAdj +ClCl2 +sub-CL +V-IO +DetNP +NPofNP +DetNP +ADV-S-V +AdvpNp +234356 PrepNp +NPofNP +NPofNP +PrepNp +V-O +NP-CL +PtclCL +O-V +sub-CL +ADV-ADV-ADV-S-V +sub-CL +V2CL +234369 Conj-CL +ClCl2 +sub-CL +V2CL +ClCl2 +PtclCL +O-V +ADV-O-V-ADV +PrepNp +V-O-ADV +DetNP +NPofNP +PrepNp +234383 Conj-CL +234385 sub-CL +P-VC-S +DetCL +S-V +PrepNp +234391 Conj-CL +ClCl +234394 PrepNp +sub-CL +ADV-V +sub-CL +ADV-V +234400 Conj-CL +234402 ADV-ADV-V +PrepNp +V2CL +234406 ADV-V +sub-CL +S-O-V-ADV +PtclCL +ADV-V +234412 Conj-CL +ClCl +ADV-V-O +O-ADV-ADV-V +PrepNp +sub-CL +V-O +234420 NpAdjp +PrepNp +sub-CL +S-V +DetNP +234426 Conj-CL +V-ADV-ADV +PrepNp +PrepNp +DetNP +234432 Conj-CL +CLaCL +ADV-V-S +NpAdjp +AdjpaAdjp +234439 S-P +V2CL +234442 Conj-CL +ClCl +234445 sub-CL +V-S +that-VP +P-VC-ADV +PrepNp +sub-CL +O-V-ADV +DetNP +NPofNP +PrepNp +234456 Conj-CL +ADV-S-O-V +234459 Conj-CL +ClCl +ClCl +V-O-ADV +PrepNp +sub-CL +V-ADV +PrepNp +sub-CL +V-O-ADV +PrepNp +DetNP +234472 Conj-CL +CLaCL +CLaCL +234476 PrepNp +Np-Appos +DetNP +that-VP +V-ADV-ADV +PrepNp +PrepNp +DetNP +234486 that-VP +ADV-V +234489 ClCl +V2CL +sub-CL +V2CL +234494 ClClClCl +V2CL +V-ADV +PrepNp +DetNP +V2CL +V2CL +234502 S-P-VC +NPofNP +PrepNp +234506 Conj-CL +234509 Np2CL +V-O +NP-CL +DetNP +NPofNP +that-VP +CLaCL +VC-P +NPofNP +DetNP +234520 ADV-IO-V-O +PrepNp +DetAdj +that-VP +S-V-IO +AdvpNp +NpaNp +DetNP +234529 All-NP +DetCL +CLaCL +V2CL +234534 V2CL +234536 Conj-CL +ClCl +234539 PrepNp +DetNP +NPofNP +Conj3Np +234545 sub-CL +O-S-V +DetNP +AdjpNp +sub-CL +V-O +NpaNp +DetNP +AdjpNp +234555 NPofNP +234557 Conj-CL +V-O +DetNP +234561 V-O-S +DetNP +NPofNP +DetNP +234566 V-O-ADV-ADV-S-ADV +PrepNp +NpaNp +234570 PrepNp +DetNP +PpNp2Np +PrepNp +NPofNP +234576 V-O-S +NP-all +DetNP +234580 V-O-ADV +PrepNp +NpAdjp +234584 S-ADV +DetNP +DetNP +AdjpNp +NPofNP +234590 ClCl2 +sub-CL +S-ADV-V-O +DetNP +VC-P +234597 Np2CL +234599 S-P +DetNP +NPofNP +Np-Appos +DetNP +PrepNp +234606 S-P-ADV +DetNP +NPofNP +PrepNp +NPofNP +PrepNp +Np-Appos +234614 S-IO-ADV +NpaNp +Np-Appos +NpPp +NPofNP +Np-Appos +PrepNp +NPofNP +234623 Np-Appos +DetNP +Np-Appos +DetNP +NPofNP +DetNP +DetCL +VC-P +PrepNp +PrepNp +Np-Appos +NP-all +DetAdj +DetCL +VC-P +PrepNp +All-NP +DetNP +234642 IO-S-ADV +NpaNp +234645 PrepNp +NpaNp +Np-Appos +NPofNP +234650 Np-Appos +Np-Appos +234654 NPofNP +DetNP +Np-Appos +NpaNp +234659 Np-Appos +DetNP +NPofNP +Np-Appos +Np-Appos +DetNP +NpaNp +NPofNP +DetNP +234669 NPofNP +All-NP +DetCL +V-O-ADV-ADV +PrepNp +All-NP +DetNP +NPofNP +PrepNp +DetCL +V-O +S-V-O-ADV +NpPp +PrepNp +All-NP +PrepNp +DetNP +NP-CL +ADV-V-S-ADV +PrepNp +DetNP +sub-CL +234692 sub-CL +V-S-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +DetNP +AdvpNp +DetNP +NPofNP +234704 Conj-CL +234706 sub-CL +V2CL +PrepNp +DetNP +ofNPNP +NpaNp +234715 Conj-CL +V2CL +PrepNp +Np-Appos +DetNP +ofNPNP +DetCL +V-ADV +PrepNp +NPofNP +DetNP +PronNP +NP-CL +O-S-V +AdvpNp +234731 Conj-CL +S-P-ADV-ADV +DetNP +NPofNP +PrepNp +234737 that-VP +234739 sub-CL +VC-P +NPofNP +DetNP +AdvpNp +DetNP +234746 Conj-CL +234748 Np2CL +S-V-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetCL +VC-P +PrepNp +DetNP +that-VP +ADV-ADV-V-ADV +PrepNp +PrepNp +sub-CL +V-S-ADV +AdvpNp +DetCL +V2CL +234768 Conj-CL +ClCl +S-ADV-O-V +PrepNp +DetNP +NPofNP +DetNP +sub-CL +notCLbutCL2CL +V-ADV +VerbBe +PrepNp +ADV2CL +PrepNp +NP-CL +NP-CL +Np-Appos +DetNP +DetCL +V-O +DetAdj +CLaCL +S-ADV-V-O +PrepNp +AdjpNp +234794 V2CL +234796 ADV-V +PrepNp +ClCl +ClCl +ADV-V +2Advp_h1 +V-S-ADV-ADV +AdvpNp +PrepNp +DetNP +sub-CL +ADV-S-ADV-V-ADV +PrepNp +AdjpNp +DetNP +PpNp2Np +PrepNp +PrepNp +PrepNp +234816 Conj-CL +234818 NP-Demo +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +that-VP +CLaCL +ADV-ADV-V-ADV +PrepNp +NPofNP +NpaNp +234832 DetNP +notPPbutPP +PrepNp +NpAdjp +PrepNp +NPofNP +PrepNp +DetNP +234841 ADV-ADV +PrepNp +234844 Conj-CL +CLaCL +V-IO-O +notNPbutNP +aCLaCL +234850 O-V +234852 ADV-V +234855 V2CL +234857 PrepNp +sub-CL +ADV-V-O-ADV +PrepNp +that-VP +234863 NPofNP +sub-CL +S-P-ADV +AdvpNp +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +234874 Conj-CL +ADV-V-O +Demo-NP +DetNP +ClCl +234880 PrepNp +sub-CL +O-V +AdjpNp +aCLaCLaCL +234886 ADV-V-ADV +PrepNp +PrepNp +234890 ADV-ADV-V-ADV +PrepNp +PrepNp +234894 ADV-V-ADV +PrepNp +PrepNp +DetNP +234899 Conj-CL +234901 O-V +PtclCL +ADV-V +DetNP +234906 Conj-CL +234908 O-ADV-V +O-V +PrepNp +VC-P-S +PrepNp +NpaNp +DetNP +2Np +234917 DetNP +2Np +234920 Conj-CL +234922 DetNP +that-VP +S-ADV-VC-P +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +NpaNp +234933 Conj-CL +CLaCL +S-ADV-VC-P +Np-Appos +Np-Appos +DetNP +ofNPNP +DetNP +Np-Appos +DetCL +ADV-ADV-V-ADV +PrepNp +PrepNp +PrepNp +Conj3Np +234950 NpaNp +234953 P-ADV-VC +PrepNp +234956 Conj-CL +S-ADV-P +AdjpNp +NPofNP +PrepNp +DetNP +234963 Conj-CL +ADV-S-IO-ADV-ADV +AdvPp +PrepNp +DetNP +DetNP +PrepNp +PrepNp +234972 Conj-CL +S-P +DetCL +CLaCL +V-O-ADV-ADV +PrepNp +PrepNp +234980 V-O +Np-Appos +DetCL +aCLaCL +234985 V-O +234987 V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +234995 Conj-CL +234997 DetNP +PrepNp +DetNP +AdjpNp +that-VP +ADV-ADV-V-ADV +V-O +PrepNp +235006 that-VP +ClCl +notCLbutCL2CL +V-ADV +ofNPNP +DetNP +P-VC-ADV +DetNP +NPofNP +sub-CL +ADV-V +DetNP +235019 Conj-CL +V-ADV-O +Np-Appos +DetCL +ADV-ADV-ADV-V +2Advp_h1 +PrepNp +PrepNp +235028 Conj-CL +235030 sub-CL +S-V-O +AdvpNp +DetCL +V-O +sub-CL +ADV-P +DetCL +V-ADV +PrepNp +235041 Conj-CL +V-O-ADV-ADV +NpPron +sub-CL +ADV-ADV-O-V-ADV +V2CL +PrepNp +S-V +ADV-S-V +235051 PrepNp +All-NP +that-VP +S-P-VC +DetNP +AdjpNp +All-NP +235059 Conj-CL +235061 PrepNp +AdjpNp +NpaNp +235065 NPofNP +PrepNp +AdjpNp +notCLbutCL2CL +sub-CL +V2CL +sub-CL +V-O +DetNP +NP-CL +O-V-ADV-ADV +PrepNp +235078 Conj-CL +235080 sub-CL +S-V +O-V +235084 PrepNp +All-NP +sub-CL +ADV-V +235090 DetNP +Np-Appos +NP-Demo +DetNP +NpPp +PrepNp +DetAdj +sub-CL +ADV-S-V +2Advp_h1 +Conj2VP +235102 PtclCL +PtclCL +ADV-V-S +DetNP +AdjpNp +DetNP +235109 Conj-CL +V-O +S-V-ADV-O +PrepNp +235114 Conj-CL +235116 PrepNp +sub-CL +235119 DetNP +NPofNP +sub-CL +ADV-P-VC +PrepNp +235125 Conj-CL +235127 IO-O-V +235129 Conj-CL +ClCl +ClCl +235133 AdvpNp +sub-CL +O-V-ADV-ADV +PrepNp +PrepNp +NPofNP +sub-CL +ADV-V-ADV +PrepNp +DetNP +sub-CL +ADV-O-V +ofNPNP +DetNP +235148 Conj-CL +ClCl2 +CLaCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +235159 S-IO-V-ADV +PrepNp +CLaCL +ADV-V-O-ADV-ADV +DetNP +NPofNP +DetCL +ADV-V-S-O +Np-Appos +DetNP +NPofNP +235171 ADV-V-ADV +V-O +PrepNp +235175 Conj-CL +235177 Np-Appos +DetNP +DetCL +CLaCL +ADV-V-O-ADV +PrepNp +DetNP +235185 O-V-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +PrepNp +All-NP +sub-CL +ClCl +P-VC-ADV-ADV +ofNPNP +DetNP +Conj2Pp +PrepNp +DetCL +V2CL +235203 PrepNp +DetCL +V2CL +aCLaCL +235208 ADV-P +NpPp +2Pp +PrepNp +PrepNp +235214 ADV-P +NpPp +2Pp +PrepNp +PrepNp +235220 Conj-CL +ADV-S-P +PrepNp +235224 Conj-CL +notCLbutCL2CL +235227 BeVerb +DetNP +NPofNP +DetNP +sub-CL +S2CL +DetAdj +ClCl2 +CLaCL +sub-CL +ADV2CL +PrepNp +235240 sub-CL +ADV2CL +PrepNp +ADV-ADV-V +PrepNp +PrepNp +235247 V-ADV-O +O-V +235250 Conj-CL +PtclCL +V-ADV-O-ADV +PrepNp +AdjpNp +Conj2Pp +PrepNp +235258 PrepNp +235260 P-S-VC-ADV +DetNP +NPofNP +235264 PrepNp +DetNP +NPofNP +V-ADV +Conj2VP +235270 PrepNp +All-NP +235274 that-VP +VC-P-ADV +NPofNP +ClCl +V-ADV +PrepNp +V-ADV-ADV +notNPbutNP +NPofNP +NpAdjp +V2CL +notPPbutPP +PrepNp +NpAdjp +PrepNp +Np-Appos +NpAdjp +235292 Conj-CL +O-V-ADV-ADV +NP-Demo +PrepNp +DetNP +PrepNp +DetNP +235300 notCLbutCL2CL +that-VP +ADV-P-VC-ADV +PrepNp +V-O-ADV +AdvPp +PrepNp +S-P +DetNP +NPofNP +PrepNp +DetNP +NP-CL +S-ADV-V-O-O2 +NPofNP +AdjpNp +NPofNP +notNPbutNP +235319 Conj-CL +CLaCL +S-V +DetNP +235324 S-V +DetNP +235327 Conj-CL +ClCl2 +sub-CL +S-ADV-V-ADV-ADV +DetNP +NPofNP +DetNP +ADV-V-ADV +PrepNp +PrepNp +sub-CL +ADV-V-S-O +DetNP +NPofNP +V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetCL +V2CL +ADV-ADV-S-V-ADV +2Advp_h1 +DetNP +NPofNP +DetNP +PrepNp +235360 Conj-CL +235362 sub-CL +S-P +DetNP +NPofNP +DetNP +AdjpAdvp +DetNP +NPofNP +DetNP +235372 Conj-CL +ADV-ADV-V-S-ADV-ADV +DetCL +V2CL +PrepNp +Demo-NP +DetNP +PrepNp +DetNP +AdjpNp +V2CL +235384 Conj-CL +235386 sub-CL +S-ADV +DetCL +V2CL +PrepNp +AdjpAdvp +DetCL +V2CL +PrepNp +235396 Conj-CL +CLaCL +ADV-ADV-V +V-O +AdjpNp +AdjpNp +235403 AdvpCL +sub-CL +S-V-O-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetCL +ADV-V-S-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetCL +V2CL +235420 Conj-CL +V-S +DetNP +NPofNP +235425 Conj-CL +235427 PrepNp +DetNP +AdvpNp +DetNP +PronNP +PrepNp +DetNP +NPofNP +DetNP +AdjpNp +ADV-V +sub-CL +ADV-V +PrepNp +235442 Conj-CL +ClCl2 +ADV2CL +PrepNp +ClCl2 +PtclCL +sub-CL +V-S +S-ADV-V +PrepNp +DetNP +NPofNP +235455 Conj-CL +ClCl2 +sub-CL +PtclCL +V-ADV +PrepNp +V-S +DetNP +235464 Conj-CL +S-P-VC +DetNP +DetNP +235469 Conj-CL +ADV-S +ADV-S +DetNP +NPofNP +235475 Conj-CL +235477 NP-all +AdjpNp +V2CL +O-V +DetNP +NPofNP +DetNP +PronNP +PrepNp +PrepNp +sub-CL +ADV2CL +PrepNp +ofNPNP +235492 ClCl2 +ADV2CL +PrepNp +ClCl2 +V-O +NP-Demo +DetNP +ClCl2 +sub-CL +V2CL +notCLbutCL2CL +V2CL +V-O-ADV +DetNP +NPofNP +DetNP +notCLbutCL2CL +CLaCL +V-ADV +PrepNp +235513 V-O +DetNP +NPofNP +DetNP +ADV-V-O-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +All-NP +NPofNP +PrepNp +DetNP +235527 Conj-CL +ClCl2 +sub-CL +ADV-V-S +BeVerb +DetNP +NPofNP +235535 PrepNp +DetCL +V2CL +BeVerb +ADV-S-V-O-ADV +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +DetNP +NPofNP +DetAdj +PrepNp +DetCL +ADV-V-S +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +NP-CL +S-VC-P +NPofNP +DetNP +235563 Conj-CL +ClCl +notCLbutCL2CL +O-V +CLaCL +O-O2 +Np-Appos +235571 O-O2-ADV +NPofNP +PrepNp +sub-CL +P-S +DetNP +NP-CL +DetCL +235580 ADV-S-V +PrepNp +S-V-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +NPofNP +235596 Conj-CL +235598 NP-Demo +DetNP +PrepNp +AdjpNp +sub-CL +CLaCL +S-VC-P +DetNP +NPofNP +DetNP +DetNP +235610 ADV-P +PrepNp +235613 ClCl2 +ClClClCl +CLaCL +ADV-V +PrepNp +235619 ADV-V +CLaCL +V2CL +235623 ADV-V +CLaCL +V2CL +235627 ADV-V +CLaCL +V2CL +235631 ADV-V +ClCl +ADV-O-ADV-V +DetNP +NPofNP +DetNP +PrepNp +DetNP +sub-CL +S-ADV-V +AdvpNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +235649 Conj-CL +ClCl +ADV-S-ADV-V-ADV +Np-Appos +DetCL +V2CL +PrepNp +PrepNp +sub-CL +S-V-ADV +AdvpNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +AdjpNp +NPofNP +235668 Conj-CL +CLaCL +S-ADV-V +DetNP +PrepNp +235674 S-ADV +DetNP +PrepNp +235678 Conj-CL +235680 V-O +DetNP +PronNP +NPofNP +DetNP +PrepNp +DetCL +235689 Conj-CL +V2CL +AdvpNp +Conj-CL +ADV-V-ADV +235695 that-VP +CLaCL +S-O-ADV-V +DetCL +V-O +Np-Appos +DetNP +AdvpNp +PrepNp +235705 V-ADV +PrepNp +235708 Conj-CL +ClCl +S-P +DetAdj +PrepNp +sub-CL +S-ADV-O-V-ADV +DetNP +V-ADV +PrepNp +DetAdj +DetNP +PrepNp +DetNP +NPofNP +DetNP +235725 Conj-CL +CLaCL +ADV-V +235729 CLaCL +sub-CL +S-V +AdvpNp +DetNP +AdvpNp +ofNPNP +235737 S-V-ADV +DetNP +NPofNP +NpaNp +235743 Conj-CL +ClCl +S-ADV-O-V-IO +DetNP +AdvpNp +NPofNP +DetNP +2Pp +PrepNp +PrepNp +AdjpNp +NPofNP +notCLbutCL2CL +V-S-O +DetCL +V2CL +O2CL +DetCL +ADV-V +235763 Conj-CL +CLaCL +S-P +DetCL +V2CL +235769 S-P +DetCL +ADV-V +235773 Conj-CL +235775 that-VP +235777 sub-CL +S-V +DetNP +AdjpNp +ofNPNP +NPofNP +DetNP +PrepNp +Np-Appos +NpAdjp +NpAdjp +PrepNp +DetNP +235791 Conj-CL +235793 AdvPp +PrepNp +O-V +O-V +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +sub-CL +PtclCL +ADV-ADV-P-VC +ADV-V +235807 Conj-CL +235809 AdvpNp +DetCL +VC-P +PrepNp +DetNP +V2CL +PrepNp +ADV-V-O +V2CL +notVPbutVP +sub-CL +V-S-ADV +DetAdj +PrepNp +DetNP +235825 Conj-CL +S-P +DetCL +V-O-ADV +PrepNp +PronNP +Np-Appos +DetCL +V-IO-O +DetNP +NPofNP +DetNP +235838 Conj-CL +CLaCL +CLaCL +V-ADV +235843 ClCl +235845 that-VP +ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +DetNP +sub-CL +ADV-V-ADV +PrepNp +AdvPp +PrepNp +235858 CLaCL +V2CL +235861 V-ADV-O +CLaCL +V-ADV +PrepNp +DetNP +235867 V-ADV +PrepNp +DetNP +235871 Conj-CL +ADV-V-ADV-O +V2CL +EitherOrVp +235877 P-ADV-VC +235879 Conj-CL +235881 S-V-ADV +Np-Appos +DetNP +PrepNp +DetNP +NPofNP +DetNP +sub-CL +235890 NpPp +PrepNp +DetNP +PrepNp +O-V +aCLaCL +235897 O2CL +235899 O2CL +235901 Conj-CL +ADV-O-V +V-O +DetNP +NPofNP +DetNP +235908 Conj-CL +CLaCL +ADV-V +235912 V-O +ADV-V +AdvPp +PrepNp +DetNP +NPofNP +235919 ClCl +notCLbutCL2CL +ADV-O-V-IO +O-V-IO-ADV +NPofNP +PrepNp +sub-CL +V-ADV +PrepNp +DetCL +CLaCL +ADV-V +PrepNp +235933 ADV-ADV +PrepNp +235936 Conj-CL +aCLaCL +235940 V2CL +235943 V2CL +235945 Conj-CL +S-V-O-ADV +DetNP +NPofNP +DetNP +235951 that-VP +CLaCL +235954 PrepNp +sub-CL +S-V +DetAdj +235960 PrepNp +sub-CL +S-V-ADV +DetCL +V2CL +notNPbutNP +DetCL +ADV-V +PrepNp +Conj2VP +235972 Conj-CL +S-ADV-O-V-ADV +PrepNp +DetNP +PrepNp +235978 ClCl2 +sub-CL +ADV-V-ADV-O +PrepNp +Conj-CL +ADV-ADV-V +235985 Conj-CL +235987 sub-CL +S-P +PrepNp +AdjpNp +235992 ClCl +S-V +DetAdj +235997 Conj-CL +ClCl +S-P +DetAdj +PrepNp +Np-Appos +DetNP +DetCL +CLaCL +V-O-IO-ADV +PrepNp +236009 V-IO-O +DetNP +NPofNP +DetNP +sub-CL +that-VP +S-V-ADV-O-IO-ADV +BeVerb +PrepNp +CLaCL +ADV-V-IO-O +DetNP +NPofNP +236023 V-ADV-O +PrepNp +DetNP +NPofNP +DetNP +236029 Conj-CL +ClCl +ADV-V +PrepNp +sub-CL +S-V-ADV +DetNP +PrepNp +236039 PrepNp +V-ADV +DetNP +236044 DetCL +ADV-V-O +PrepNp +sub-CL +S-VC-P-ADV +NPofNP +PrepNp +236052 Conj-CL +236054 V2CL +ADV-ADV-O-V-S +PrepNp +DetNP +NPofNP +DetNP +sub-CL +236062 CLaCL +ADV-V-O +NpAdjp +236066 ADV-V-O +PrepNp +NPofNP +236071 NpAdjp +236074 NPofNP +236076 CLaCL +ClCl +O-ADV-V +AdjpNp +PrepNp +sub-CL +ADV-V-S +DetNP +236085 ADV-V-O-ADV-ADV +PrepNp +PrepNp +ofNPNP +PpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPpPp +PrepNp +NpAdjp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +NpAdjp +PrepNp +NpAdjp +PrepNp +NPofNP +PrepNp +NPofNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +NpaNp +236121 PrepNp +NpaNp +236124 PrepNp +NpaNp +236128 ClClClClClClCl +CLandCL2 +sub-CL +P2CL +236133 P2CL +CLandCL2 +sub-CL +V2CL +236138 V2CL +CLandCL2 +sub-CL +V2CL +236144 V2CL +CLandCL2 +sub-CL +V2CL +236149 ADV-V +CLandCL2 +sub-CL +V2CL +236154 ADV-V +CLandCL2 +sub-CL +P2CL +236159 O-V +CLandCL2 +sub-CL +O-V +236164 O-V +236167 Np2CL +DetNP +NPofNP +PrepNp +S-V +DetNP +NPofNP +236175 CLaCL +ADV-V-ADV +PrepNp +236179 V-ADV +PrepNp +DetNP +NPofNP +236184 Conj-CL +ClCl +O2CL +DetNP +PronNP +ClCl2 +sub-CL +IO-V +V-S +AdvpNp +236195 ADV-V-ADV +BeVerb +236198 Conj-CL +CLaCL +S-P-ADV +NpaNp +236204 S-P-ADV-ADV +PrepNp +236207 Conj-CL +CLaCL +S-P-ADV +NPofNP +PrepNp +236213 S-P-ADV-ADV +PrepNp +236216 Conj-CL +S-P-ADV-ADV +NPofNP +PrepNp +236221 Conj-CL +ClCl +S-P-VC +NPofNP +NpAdjp +V2CL +sub-CL +236229 DetNP +that-VP +CLaCL +CLaCL +V-ADV +PrepNp +236236 V2CL +236238 CLaCL +VC-P +ofNPNP +236242 S-VC-P +ofNPNP +236245 Conj-CL +ClCl +ClCl2 +CLaCL +CLaCL +V-ADV +PrepNp +NPofNP +236254 V2CL +236256 O-ADV-V +V-S +ClCl2 +Conj3CL +S-V-O +236262 VC-ADV-P +PrepNp +236265 S-VC-ADV-P +PrepNp +NpaNp +236269 V-S +Np-Appos +236272 Conj-CL +236274 Np2CL +V-O +Demo-NP +DetNP +PrepNp +All-NP +NPofNP +NpaNp +236283 V-O-ADV +PrepNp +NPofNP +236287 V-O +236289 ClClCl +O-V +O-V +O-V +236295 PrepNp +sub-CL +236298 that-VP +P-VC-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetCL +V2CL +Conj2VP +236309 ClCl +P-ADV-S-ADV +PrepNp +P-ADV-S-ADV +PrepNp +236315 ClCl +V-ADV +DetNP +V-ADV-ADV +DetNP +PrepNp +All-NP +DetNP +NPofNP +236325 Conj-CL +ClCl2 +ADV-V-S-ADV +PrepNp +notCLbutCL2CL +V-O-S +DetNP +NPofNP +ClClCl +ADV-V +PrepNp +P-S +P-S +236339 Conj-CL +S-V-O-ADV +Np-Appos +DetCL +V-O +DetAdj +DetNP +PrepNp +DetNP +NPofNP +236350 Conj-CL +236352 ADV-ADV-ADV +notPPbutPP +AdvPp +PrepNp +DetNP +NPofNP +AdvPp +PrepNp +DetNP +NP-CL +ADV-V-ADV +PrepNp +V-IO-O +NpNpNp +DetNP +ofNPNP +DetNP +ofNPNP +DetNP +ofNPNP +NpPp +PrepNp +sub-CL +S-ADV-V +ClCl +ClCl2 +sub-CL +ADV-V-O-ADV +PrepNp +DetNP +ADV-V +ClCl2 +sub-CL +ClCl +ADV-V +236388 that-VP +S-ADV-V-O +NP-Demo +DetNP +sub-CL +ADV-ADV +PrepNp +ClCl +ADV-V +notCLbutCL2CL +sub-CL +V2CL +sub-CL +V-ADV +PrepNp +236404 Conj-CL +236406 PrepNp +sub-CL +ADV-V-ADV +PrepNp +PrepNp +236412 Conj-CL +S-O-V +DetNP +PpNp2Np +PrepNp +NpAdjp +NpPp +PrepNp +236421 Conj-CL +S-O-V +DetNP +ofNPNP +DetNP +236427 Conj-CL +236429 Np-Appos +PronNP +DetCL +ADV-V +PrepNp +AdjpNp +Conj7Np +236443 ADV-V-O-ADV +PrepNp +P-VC-ADV +DetNP +236448 Conj-CL +ClCl2 +sub-CL +ADV-V-IO +ADV2CL +notPPbutPP +Conj2Pp +PrepNp +DetCL +V2CL +236459 PrepNp +DetCL +V2CL +PrepNp +DetCL +V-S-ADV-ADV +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +PrepNp +PrepNp +DetNP +236474 ADV-V +PrepNp +236477 Conj-CL +236479 ClCl +ADV-ADV-V-ADV +PrepNp +DetNP +NPofNP +2Advp_h1 +PrepNp +DetNP +NPofNP +sub-CL +V-S-ADV +DetNP +NPofNP +PrepNp +All-NP +ClCl2 +sub-CL +O-IO-ADV-V +PrepNp +notCLbutCL2CL +V2CL +ClCl2 +sub-CL +O-ADV-V-IO +PrepNp +ADV-S-P-VC +AdvpNp +DetNP +NpPp +NPofNP +PrepNp +236511 Conj-CL +S-P-ADV-VC-ADV +DetNP +NPofNP +PrepNp +236517 DetNP +ofNPNP +All-NP +that-VP +ADV-V-O +PrepNp +NpaNp +236526 ClCl +V2CL +sub-CL +ADV-V-ADV +PrepNp +PrepNp +236533 Conj-CL +236535 Np2CL +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +that-VP +ADV-S-V-ADV +PrepNp +AdjpNp +NPofNP +NpaNp +DetNP +NPofNP +DetNP +NPofNP +236557 DetNP +PpNp2Np +PrepNp +NPofNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +236567 CLaCL +236569 that-VP +ADV-ADV-ADV +Conj2Pp +PrepNp +236574 PrepNp +ADV-V-O-O2 +PrepNp +AdjpNp +NpaNp +DetNP +236581 DetNP +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +DetAdj +236589 CLaCL +ClCl +ADV2CL +sub-CL +V2CL +236595 O-V-IO-ADV-ADV +NpaNp +AdvpNp +DetNP +236600 PrepNp +NPofNP +PrepNp +DetCL +236605 that-VP +236607 sub-CL +V2CL +PrepNp +AdvpNp +NP-Demo +DetNP +236614 Conj-CL +236616 sub-CL +ADV-V-ADV +PrepNp +Conj5Np +236623 All-NP +236625 DetNP +PpNp2Np +2Pp +PrepNp +PrepNp +ADV-V +AdvPp +PrepNp +Demo-NP +DetNP +236636 notCLbutCL2CL +ADV-V +PrepNp +ADV-O-V +PrepNp +DetNP +ofNPNP +AdvpNp +DetNP +ofNPNP +DetNP +AdjpNp +236649 Conj-CL +236651 DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +that-VP +236659 PrepNp +P-VC +sub-CL +S-ADV-V +DetNP +ofNPNP +236666 Conj-CL +O-ADV-V +PrepNp +236670 Conj-CL +236672 S-O-V-ADV +notNPbutNP +AdvpNp +DetCL +V2CL +AdvpNp +DetCL +V2CL +PrepNp +236682 Conj-CL +236684 AdvpNp +DetCL +V2CL +sub-CL +236689 sub-CL +S2CL +DetNP +NPofNP +DetCL +V2CL +AdvpNp +DetCL +V-ADV +PrepNp +DetCL +V2CL +236702 Conj-CL +236704 sub-CL +S-V +DetNP +236708 sub-CL +PtclCL +V2CL +236712 sub-CL +ADV-V +236715 Conj-CL +ClCl +notCLbutCL2CL +that-VP +ClCl +ADV-S +ADV-S +P2CL +PrepNp +236725 PrepNp +DetNP +AdjpNp +DetNP +ofNPNP +PrepNp +DetNP +ofNPNP +sub-CL +S-V-ADV +AdvpNp +DetNP +ofNPNP +PrepNp +DetNP +ofNPNP +sub-CL +V-S +236744 sub-CL +236746 CLaCL +S-ADV-V +DetCL +O2CL +DetAdj +236752 S-ADV-V +DetCL +O2CL +DetAdj +236757 Conj-CL +236759 Np-Appos +DetNP +DetCL +V-O-ADV-ADV +DetNP +PronNP +PrepNp +PrepNp +DetNP +NPofNP +sub-CL +aCLaCL +236772 O-V +DetNP +236775 ADV-ADV-V-ADV +P-VC +PrepNp +236779 Conj-CL +V-ADV-O-ADV +PrepNp +DetNP +NP-CL +CLaCL +S-P +ofNPNP +DetNP +NpPp +PrepNp +DetNP +PrepNp +All-NP +DetNP +236795 ADV-P-ADV +notCLbutCL2CL +ADV2CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +PrepNp +Np-Appos +NP-Demo +DetNP +DetCL +V-ADV-ADV +PrepNp +PrepNp +DetNP +NpaNp +ofNPNP +PronNP +DetNP +236816 NPofNP +ClCl +V-O +PtclCL +S-O-V-ADV +PrepNp +Np-Appos +NP-Demo +DetNP +DetCL +V-ADV +PrepNp +236829 Conj-CL +V-O-ADV +notPPbutPP +AdvPp +PrepNp +AdvPp +PrepNp +236837 Conj-CL +V-ADV-O +DetNP +NP-CL +NPofNP +O-V-ADV-ADV-ADV +PrepNp +CLaCL +P-VC +236847 ADV-ADV-P-ADV +Np-Appos +NpAdjp +NpPp +PrepNp +236853 aCLaCL +236855 ClCl2 +ADV2CL +PrepNp +P2CL +NpaNp +NpAdjp +236862 PpNp2Np +PrepNp +236865 ClCl2 +Np2CL +NPofNP +P2CL +2Np +NPofNP +NPofNP +236873 Conj-CL +O-ADV-V-ADV +DetNP +NPofNP +NpaNp +DetNP +NPofNP +236881 ofNPNP +NpPp +PrepNp +PrepNp +PrepNp +NPofNP +DetNP +236889 Conj-CL +PtclCL +236892 PrepNp +Np-Appos +DetNP +NpPp +PrepNp +DetAdj +DetCL +V-IO +sub-CL +CLaCL +V-O +DetNP +NP-CL +NPofNP +236907 O-ADV-V-IO +PrepNp +S-V-ADV +PrepNp +236912 S-V-O +DetNP +ofNPNP +DetAdj +236917 Conj-CL +ClCl +ClCl +ClCl +V-O +DetNP +sub-CL +ADV-S-V-ADV +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +PrepNp +NP-Demo +DetNP +sub-CL +ClCl2 +sub-CL +V2CL +V2CL +VerbBe +PtclCL +AdvpCL +ClCl2 +sub-CL +CLaCL +V-ADV-S +PrepNp +236947 V-O +S-P +V-S-ADV-ADV +sub-CL +236952 S2CL +PrepNp +NP-Demo +DetNP +236957 Conj-CL +O2-V-O +236960 DetNP +that-VP +CLaCL +V-ADV +PrepNp +236966 V-O-ADV +DetNP +AdjpNp +V2CL +NPofNP +S-P-VC-ADV-ADV +Conj2Pp +PrepNp +236975 AdvPp +PrepNp +236978 Conj-CL +236980 CLaCL +S-ADV-ADV-V +DetCL +V-ADV +236985 S-ADV-ADV-V +DetCL +V-ADV +PrepNp +PrepNp +236991 ClCl +ClCl +ClCl +S2CL +sub-CL +V-ADV +DetNP +ADV-ADV +Conj2Pp +PrepNp +237002 PrepNp +sub-CL +O-V-S +AdjpNp +DetNP +237008 Conj-CL +ClCl +ClCl +V-S-O +DetNP +O-V-ADV +All-NP +PrepNp +sub-CL +ADV-ADV-ADV-V-ADV +PrepNp +O-V +All-NP +PrepNp +All-NP +NpAdjp +sub-CL +237026 ClClCl +V2CL +V-IO +DetNP +S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +237036 Conj-CL +CLaCL +S-V-O +DetCL +CLaCL +V-O-IO +DetCL +V2CL +237045 O-ADV +PrepNp +Conj2VP +237049 DetNP +NPofNP +237052 V-O +DetNP +NPofNP +DetNP +NPofNP +237058 ADV-V-ADV +PrepNp +PrepNp +All-NP +NP-CL +237064 S-V-ADV-O-IO +PrepNp +DetNP +CLaCL +S-ADV-ADV-V-O +DetNP +NPofNP +NP-Demo +DetNP +BeVerb +DetNP +NPofNP +DetAdj +237078 ADV-V-ADV-ADV +PrepNp +AdjpNp +DetNP +237083 CLaCL +ADV-V-O-ADV +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +DetNP +PrepNp +DetNP +NpaNp +NpPp +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +237103 NpPp +NPofNP +DetNP +Conj2Pp +PrepNp +237109 PrepNp +237111 S-ADV-V-O-ADV +NpPp +PrepNp +PrepNp +DetNP +AdjpNp +V2CL +NpPp +NPofNP +DetNP +PrepNp +237123 S-IO-ADV +DetNP +PrepNp +DetNP +AdjpNp +ofNPNP +237130 Conj-CL +237132 Np-Appos +PronNP +PrepNp +DetNP +NPofNP +NpaNp +237139 DetNP +S-P +aCLaCL +237143 ADV-P-ADV +PrepNp +PrepNp +237147 ADV-V-ADV +V2CL +PrepNp +237151 Conj-CL +V-O +DetCL +ADV-ADV-V-ADV +V2CL +DetNP +NP-CL +ADV-V-O +V-ADV +PrepNp +AdjpNp +DetCL +V-O-ADV +sub-CL +ADV-V +PrepNp +237168 Conj-CL +ClCl +ClCl +ADV-ADV-ADV-V +ADV-V +PrepNp +PrepNp +sub-CL +CLaCL +S-ADV-P +DetNP +NPofNP +DetNP +NPofNP +237183 P-ADV-ADV +DetNP +PrepNp +NPofNP +Conj3CL +V-O +NpaNp +237191 All-NP +NpAdjp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +237199 V-O-ADV +All-NP +PrepNp +DetNP +NPofNP +DetNP +237206 ClCl +ADV-V-O +PrepNp +V-O +All-NP +sub-CL +V-S +ofNPNP +DetNP +237216 O-V +NpPp +PrepNp +237220 ClCl2 +sub-CL +S-V-ADV-O +P-VC +237225 PrepNp +that-VP +237228 sub-CL +S-P +AdvpNp +237232 Conj-CL +ClCl +ClCl2 +sub-CL +AdvpCL +ADV-V-ADV +AdjpAdjp +PrepNp +DetNP +NP-CL +NPofNP +O-V-S-ADV +DetNP +Conj2Pp +PrepNp +237248 AdvPp +PrepNp +NPofNP +ADV-V +sub-CL +ADV-V-ADV +sub-CL +PtclCL +V-O-ADV +PrepNp +DetNP +237260 sub-CL +237262 aCLaCL +237264 S-P +DetNP +AdjpaAdjp +237269 CLaCL +S-P +DetNP +NPofNP +DetNP +237275 S-P +DetNP +V2CL +237280 DetNP +that-VP +237283 P-VC-ADV-ADV +DetNP +NpPp +PrepNp +V2CL +V2CL +DetNP +237291 Conj-CL +ADV-V-O +V-O-ADV +Conj2VP +237296 NPofNP +DetCL +O-V +237300 Conj-CL +S-ADV-ADV-V +CLaCL +ADV-O-V +PrepNp +237306 V-O-ADV +237308 Conj-CL +CLaCL +S-ADV-ADV-V +PrepNp +DetAdj +237314 ADV2CL +PrepNp +DetNP +NPofNP +DetNP +NP-CL +O-V-IO-S-O2-ADV +DetNP +V-ADV +PrepNp +AdvpNp +237326 Conj-CL +ClCl +ADV-ADV-V-O +sub-CL +ADV-V-ADV +PrepNp +sub-CL +ADV-V-ADV +PrepNp +AdvpNp +PrepNp +DetNP +NPofNP +DetNP +237341 CLaCL +ADV-ADV-V-ADV +PrepNp +DetAdj +PrepNp +AdjpNp +237348 O-V-ADV-ADV +V-S +DetNP +NPofNP +ClClCl +ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +PrepNp +ADV-V +PrepNp +NpPp +PrepNp +ADV-ADV-ADV-V +PrepNp +AdjpNp +PrepNp +DetAdj +237369 Conj-CL +S-ADV-V +DetCL +V2CL +PrepNp +237375 Conj-CL +notCLbutCL2CL +237378 Np2CL +DetCL +O-V +O-S-V +DetNP +237384 ClCl +V2CL +V-O-O2 +AdjpNp +NPofNP +237390 Conj-CL +ADV-V-O +237393 Conj-CL +ClCl +V-O-ADV +ofNPNP +sub-CL +V-O-IO-ADV +AdjpNp +O-V-IO +NpAdjp +DetNP +237404 Conj-CL +ClCl +V2CL +PtclCL +AdvpCL +ClCl2 +sub-CL +S-V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +V-S-ADV +DetNP +NPofNP +PrepNp +Np-Appos +NpaNp +DetNP +237424 DetNP +NpPp +PrepNp +237428 Conj-CL +PtclCL +ClCl2 +sub-CL +CLaCL +S-V-O +DetCL +V2CL +AdjpNp +NP-CL +O-ADV-V +237440 V-O +NpaNp +NP-CL +NpAdjp +O-ADV-V +237446 NP-CL +NpAdjp +O-ADV-V +ADV-V +237451 Conj-CL +V-O +O-V-ADV +DetNP +AdvpNp +237457 Conj-CL +CLaCL +CLandCL2 +sub-CL +P-ADV +AdvpNp +DetNP +237465 ADV-ADV +DetNP +237468 ADV-V-ADV-ADV +PrepNp +PrepNp +PrepNp +237473 Conj-CL +ClCl +O-V-ADV +237477 sub-CL +S-V +sub-CL +ADV-O-V-IO +DetNP +ofNPNP +DetNP +237485 CLaCL +O-V-ADV +AdjpNp +V-O-ADV +PrepNp +DetNP +ofNPNP +237493 ADV-ADV-V-ADV +CLaCL +V-ADV +PrepNp +237498 V2CL +237500 Conj-CL +O-V-S-ADV +DetNP +NPofNP +DetNP +V-ADV +PrepNp +237508 Conj-CL +ADV-O2-O-IO-V +PrepNp +Conj2VP +237514 ClCl +VC-S-P +NPofNP +PrepNp +sub-CL +S-ADV-V-ADV-ADV +NP-Demo +DetNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +237529 PrepNp +sub-CL +ADV-V-O +237533 S-V +DetNP +237536 Conj-CL +237539 O-ADV-V +O-V +V-O +DetNP +NPofNP +DetCL +V-O +237547 ADV-V +PrepNp +O-V +S2CL +AdvpNp +237553 Conj-CL +S-P-ADV +DetNP +2Np +NpAdjp +V-ADV +PrepNp +NPofNP +237562 Conj-CL +ClCl +ADV-P +sub-CL +S-V-ADV +PronNP +DetNP +PrepNp +NPofNP +237572 Conj-CL +237574 sub-CL +S-V-ADV +AdvpNp +DetNP +NPofNP +PrepNp +NPofNP +S-VC-P +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +237589 ADV-S-V-O +S-P-VC +237592 Conj-CL +ClCl +ClCl2 +sub-CL +ADV2CL +ClCl2 +sub-CL +sub-CL +O2CL +V-O +sub-CL +S-O-V +AdjpNp +237606 CLaCL +O-ADV-ADV-V +O-V +PrepNp +237611 sub-CL +ADV-ADV +PrepNp +PrepNp +Demo-NP +DetNP +NPofNP +DetNP +237620 ClCl2 +sub-CL +S-V-ADV +PrepNp +DetNP +S-V +237627 Conj-CL +ADV-V-O-ADV +DetAdj +P-VC +237632 Conj-CL +ClCl +V2CL +ClClClClCl +sub-CL +S-O-V +sub-CL +S-V +sub-CL +S-V +sub-CL +S-V +sub-CL +S-ADV-O-V +PrepNp +237649 PrepNp +sub-CL +that-VP +S-V +237654 Conj-CL +ClCl2 +PtclCL +ADV-S-V +PrepNp +237660 PrepNp +V-S +237663 ClCl +P-VC +S2CL +237667 ClCl +P-VC +S2CL +237671 ClCl +P-VC +NPofNP +S2CL +237676 P-VC +NPofNP +237680 V2CL +ADV-S +237683 ClClClCl +ADV-ADV +PrepNp +ADV-ADV +PrepNp +ADV-ADV +PrepNp +ADV-ADV +PrepNp +237693 ClClClClCl +ADV-ADV-O-V +PrepNp +NpPp +PrepNp +ADV-V +ADV-V +ADV-V +ADV-ADV-V +PrepNp +DetNP +237705 ClCl +237707 ClClClClClClClCl +P2CL +NPofNP +P2CL +NPofNP +P-ADV +PrepNp +P-ADV +PrepNp +P-ADV +PrepNp +P-ADV +PrepNp +P-ADV +PrepNp +P-ADV +PrepNp +ClClClClCl +P2CL +NpaNp +237728 P-ADV +PrepNp +P2CL +PrepNp +NpaNp +237734 P-ADV +PrepNp +P2CL +PrepNp +NpaNp +237741 ADV-S-ADV-P +PrepNp +DetNP +DetNP +Np-Appos +NpPp +PrepNp +DetNP +NPofNP +All-NP +DetNP +237753 CLaCL +S-V +237756 ADV-V +237758 CLaCL +S-V +237761 ADV-S-V +237763 ClCl2 +sub-CL +S-V +V2CL +O-V +NPofNP +DetNP +NPofNP +237773 Np-Appos +DetNP +NPofNP +NpaNp +237778 Np-Appos +DetNP +DetCL +VC-P-ADV +PrepNp +DetNP +that-VP +ADV-V +237787 CLaCL +ADV-S-V-O-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetNP +NPofNP +V-O +237798 CLaCL +ADV-ADV-V-ADV +PrepNp +PrepNp +PrepNp +DetNP +237805 V-O +DetNP +NPofNP +237809 S-V +V2CL +237812 aCLaCL +237814 ADV-V +237816 V-ADV +PrepNp +NPofNP +NpaNp +237822 V-O +237824 Np2CL +NpPp +PrepNp +ClCl +ClCl +ClCl2 +sub-CL +ADV2CL +PrepNp +ADV-V +ClCl2 +sub-CL +ADV2CL +PrepNp +DetNP +ADV-V +S-V +DetNP +ADV-V-S-ADV +PrepNp +NpAdjp +DetNP +PrepNp +AdjpNp +237849 Conj-CL +237852 Np2CL +DetNP +AdjpNp +ClCl +ClCl2 +aCLaCL +237859 ADV2CL +PrepNp +237862 ADV2CL +PrepNp +DetNP +ADV-V +S-V +DetNP +CLaCL +V-ADV +PrepNp +DetNP +237873 V-O +NP-CL +AdjpNp +S-ADV-V-ADV +O-V +237879 CLaCL +ADV-V +PrepNp +DetNP +237885 PrepNp +sub-CL +ADV-ADV +PrepNp +DetNP +237891 Conj-CL +ClCl +ClCl2 +sub-CL +V-O +V2CL +ADV-VC-P +sub-CL +O-V +237901 Conj-CL +ClCl +V2CL +PtclCL +S-ADV-V-ADV-ADV +PrepNp +PrepNp +CLaCL +O-V-ADV +237911 V-ADV +PrepNp +AdvpNp +DetNP +NPofNP +DetNP +237918 Conj-CL +237920 sub-CL +ADV-V +DetNP +237924 NPofNP +sub-CL +O-V +sub-CL +ADV-V +237931 PrepNp +DetNP +that-VP +V-ADV +PrepNp +237937 Conj-CL +237939 ClCl +V-ADV-S +DetNP +NPofNP +sub-CL +S-ADV-V +DetNP +PrepNp +237948 Conj-CL +237950 PrepNp +DetNP +sub-CL +V-ADV-S +PrepNp +DetNP +NPofNP +DetNP +237959 Conj-CL +V-ADV-ADV +PpPpPpPp +PrepNp +PrepNp +PrepNp +PrepNp +NpaNp +237968 PrepNp +237970 Conj-CL +237972 sub-CL +V2CL +237975 VC-P +237977 S-O-V +237979 Conj-CL +S-V-O +ADV-V +PrepNp +237984 Conj-CL +237986 DetNP +AdvpNp +sub-CL +P-VC +AdvpNp +237992 PtclCL +S-V-ADV-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +All-NP +aNpaNpaNp +238005 Conj-CL +238007 ADV-V-ADV +PrepNp +DetNP +AdjpNp +sub-CL +AdvpCL +that-VP +S-ADV-V-ADV +PronNP +238017 V-IO-O +NP-Demo +DetNP +238022 O-ADV-V-ADV +NP-Demo +V-ADV +PrepNp +238027 ADV-V +238029 Conj-CL +ClCl +notCLbutCL2CL +V-O +NPofNP +O2CL +sub-CL +notCLbutCL2CL +V-S-O +DetNP +IO-V +DetNP +S-IO +DetNP +DetNP +238045 Conj-CL +S-ADV-V-ADV +Conj2VP +238049 PrepNp +DetNP +NPofNP +238054 sub-CL +ADV-O-V +238057 Conj-CL +ClCl +V2CL +S-ADV-V-O +238062 Conj-CL +ADV-ADV-O-V +VC-P +238066 PtclCL +238068 Np2CL +NP-CL +O-V-ADV +PrepNp +PrepNp +238074 CLaCL +V-O +238077 V-O +DetNP +238080 PtclCL +V-O-S +238083 ClCl +PtclCL +ADV-V +DetNP +PronNP +PtclCL +ADV2CL +DetNP +PronNP +238094 that-VP +IO-V +238097 ADV-ADV-V +PrepNp +PrepNp +238101 Conj-CL +238103 Np2CL +DetAdj +PrepNp +DetNP +ofNPNP +238109 Conj-CL +ClCl +ClCl +V2CL +PtclCL +PtclCL +ClCl +ADV-O2-V-O +V2CL +ADV-O-V +S-V-ADV-O +O-ADV-V +PtclCL +PtclCL +S2CL +NpNpNpNpNpNpNpNp +238126 PtclCL +ClCl2 +ADV-V-S +CLaCL +V-O-S-ADV +DetNP +NPofNP +PrepNp +238135 V-O +NPofNP +DetCL +CLaCL +V2CL +238141 ADV-V-ADV +PrepNp +DetNP +NP-CL +Conj3Np +238148 O-V +238150 ADV-V-ADV +NP-Demo +PrepNp +238154 ADV-V-S +PrepNp +NPofNP +NpaNp +NumpNP +238160 All-NP +238163 Conj2VP +238165 CLaCL +sub-CL +V-ADV +DetAdj +238170 V-ADV +NpaNp +DetCL +V2CL +238175 NP-all +DetAdj +that-VP +ClCl +ClCl2 +sub-CL +V-ADV +PrepNp +DetAdv +ADV-V +sub-CL +V-O +NPofNP +NP-CL +DetNP +AdjpNp +ADV-V +PrepNp +CLaCL +S-ADV-ADV-V +PrepNp +238197 V-ADV +PrepNp +238200 Conj-CL +CLaCL +ADV-V-ADV +PrepNp +238205 V-ADV +PrepNp +NPofNP +238209 Conj-CL +CLaCL +S-V-ADV +AdvpNp +PrepNp +238215 V-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +PrepNp +238221 ClCl +ClCl +O-V +PtclCL +VC-P +PrepNp +DetNP +O-V +238230 sub-CL +238232 that-VP +S-P +Np-Appos +PrepNp +238237 sub-CL +PtclCL +P-VC +238241 Conj-CL +238243 V2CL +238245 that-VP +S-ADV-VC-P +238248 Conj-CL +CLaCL +238251 PrepNp +DetNP +ADV-V-S-O +NpAdjp +notCLbutCL2CL +sub-CL +S-P-VC +sub-CL +S-O-V +DetAdj +238262 S-P-VC +PrepNp +238265 Conj-CL +notCLbutCL2CL +V-O-ADV +PrepNp +DetNP +ADV2CL +PrepNp +DetNP +238274 Conj-CL +ClCl +V2CL +sub-CL +CLaCL +S-V +238281 S-P-VC +238283 ADV-V-O +Np-Appos +DetNP +ofNPNP +238289 PrepNp +V2CL +sub-CL +ADV-ADV-ADV-V-ADV +V2CL +PrepNp +DetNP +NP-CL +O-S-V-IO-ADV +DetNP +Conj2Pp +PrepNp +238302 AdvPp +PrepNp +238306 Np2CL +ADV2CL +CLaCL +ClClClClCl +V2CL +V2CL +V2CL +O-V +DetNP +V2CL +238317 S-VC-P +DetNP +NPofNP +DetNP +NpaNp +238323 PrepNp +238325 V-O-ADV +PrepNp +AdjpNp +238329 V-O-S +NP-all +DetAdj +238333 S-P +Conj3Np +DetNP +NPofNP +Np-Appos +DetNP +Np-Appos +238341 DetNP +NPofNP +DetNP +238345 DetNP +NPofNP +DetNP +AdjpNp +PrepNp +All-NP +238352 S-IO +NpaNp +Np-Appos +NpPp +notPPbutPP +Conj2Pp +PrepNp +238360 PrepNp +PrepNp +NpaNp +Np-Appos +238365 Np-Appos +Np-Appos +DetCL +V-O-ADV +PrepNp +238371 DetNP +PpNp2Np +PrepNp +All-NP +DetNP +NPofNP +DetNP +238379 IO-S-ADV +NpaNp +238382 PrepNp +NpaNp +Np-Appos +NPofNP +238387 Np-Appos +Np-Appos +Np-Appos +DetCL +ClCl +V-O-ADV +PrepNp +DetNP +NPofNP +sub-CL +V-O-ADV-ADV +PrepNp +NpAdjp +Np-Appos +DetNP +DetCL +V2CL +PrepNp +DetNP +NPofNP +NP-CL +DetNP +NPofNP +NpaNp +238413 DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +238420 ClCl +V2CL +sub-CL +ADV-ADV-V-ADV-ADV +PrepNp +DetCL +V-O-ADV +PrepNp +NPofNP +PrepNp +NP-CL +AdjpNp +238433 S-ADV-VC-P +ADV-S-VC-P +DetCL +CLaCL +V-O +238439 V-O +V-O +DetNP +NPofNP +DetNP +238445 Conj-CL +ClCl +ClCl2 +AdvpCL +sub-CL +S-V-IO-ADV +NpaNp +238453 NpPp +PrepNp +PrepNp +O-V-IO +P-VC +sub-CL +ClCl +CLaCL +V2CL +238463 ADV-ADV-V +ClCl2 +sub-CL +S-O-V-ADV +PrepNp +O-V +P-VC +238471 Conj-CL +CLaCL +ADV-V-O +NpaNp +238476 DetNP +238478 V-O +O-V +238482 sub-CL +ADV-O-V +P-ADV-VC +ofNPNP +238487 Conj-CL +238489 Np2CL +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +that-VP +ADV-VC-P +PrepNp +238499 Conj-CL +notCLbutCL2CL +CLaCL +S-ADV-V-O +PrepNp +238505 V2CL +ADV2CL +PrepNp +NPofNP +Np-Appos +238511 Conj-CL +238513 DetNP +AdjpNp +NpPp +NpAdvp +PrepNp +DetNP +that-VP +Conj3CL +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +238527 V-O +238529 V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +AdjpNp +NpPp +PrepNp +DetNP +NPofNP +ADV-VC-P +NPofNP +DetNP +AdjpNp +ofNPNP +238544 Conj-CL +ClCl2 +sub-CL +238548 DetCL +CLaCL +V-O-ADV +PrepNp +NPofNP +NPofNP +238555 V-ADV +PrepNp +DetNP +NPofNP +V-O-ADV +DetNP +NPofNP +PrepNp +sub-CL +V-O-ADV +PrepNp +DetNP +ADV-V +notCLbutCL +238570 NpaNp +238572 ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +PpNp2Np +PrepNp +CLaCL +V-ADV +PrepNp +238582 ADV-V-ADV +PrepNp +238585 CLaCL +ADV-ADV-V-ADV-ADV +PrepNp +AdjpNp +PrepNp +V-O +238592 V-ADV-ADV +PrepNp +NpNump +238596 Conj-CL +238598 NPofNP +DetNP +sub-CL +ADV-O +Np-Appos +DetNP +NPofNP +DetNP +238607 Conj-CL +ClCl2 +O-V-IO +ClCl2 +V2CL +238613 ADV2CL +PrepNp +DetNP +ADV-V +238618 ADV-V-ADV +PrepNp +DetNP +NPofNP +NpaNp +DetNP +238625 DetNP +238627 Conj-CL +V-ADV-ADV +BeVerb +DetNP +Np-Appos +DetNP +NPofNP +DetNP +NpPp +PrepNp +238638 Conj-CL +CLaCL +238641 VerbBe +that-VP +S-ADV-V-O +DetCL +V-O-ADV +NP-CL +DetNP +O-ADV-V +238650 V-ADV-O +PrepNp +DetNP +238654 ADV-ADV-ADV-V-ADV-ADV-ADV +PrepNp +AdjpNp +PrepNp +PrepNp +V-O +AdvpNp +238662 Conj-CL +V-ADV +PrepNp +238666 Conj-CL +CLaCL +V-IO-O +DetNP +NP-CL +O-V-ADV +PrepNp +DetNP +238676 PrepNp +DetCL +V2CL +PtclCL +PtclCL +ADV-V +PrepNp +Conj2VP +238686 Conj-CL +ADV-S-ADV-V-O +Np-Appos +NpPp +PrepNp +P-VC +V2CL +238694 Conj-CL +ADV2CL +PrepNp +DetNP +NP-CL +NP-CL +AdjpNp +238702 V-O +DetNP +NP-CL +NPofNP +O-V-ADV +PrepNp +Np-Appos +sub-CL +O-V +238712 ADV-ADV-ADV-V-ADV +PrepNp +DetNP +S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +238721 Conj-CL +ClCl +ADV2CL +PrepNp +DetCL +V-O +VC-P +ClCl +ClCl +S-ADV-ADV-V +P-ADV-VC +O-S-ADV-V +NPofNP +DetNP +sub-CL +IO-S-O-V +DetCL +V2CL +238740 Conj-CL +238742 CLaCL +ClCl +238745 V2CL +238747 DetNP +NPofNP +DetNP +sub-CL +S-O +DetNP +sub-CL +S-V-ADV-ADV +DetCL +V-ADV-ADV +PrepNp +NPofNP +DetNP +AdvpNp +PrepNp +DetNP +238764 V-O +Np-Appos +DetNP +DetCL +V-IO +Np-Appos +Conj3Np +238773 DetCL +V-O +P-VC +NPofNP +NpaNp +238779 sub-CL +CLaCL +S-ADV +PrepNp +DetNP +238785 S-ADV +PrepNp +DetNP +238790 ClCl +that-VP +O-V +DetAdj +ADV-ADV-V-O +O-V +PronNP +238798 Conj-CL +ClCl +ClCl2 +sub-CL +V-S-ADV +PrepNp +ADV-O-V +PrepNp +sub-CL +V2CL +VerbBe +238810 Conj-CL +CLaCL +ADV-ADV-V +PrepNp +DetCL +V-S-ADV +PrepNp +PrepNp +DetNP +238821 sub-CL +V2CL +Conj2VP +238825 V-O +V-O +NpPp +PrepNp +238830 Conj-CL +ClCl +V-ADV-S +AdvpNp +DetNP +AdjpNp +sub-CL +S-V-ADV +AdvpNp +ofNPNP +DetNP +238842 Conj-CL +ClCl2 +sub-CL +238846 V2CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +238853 DetNP +PrepNp +ClCl2 +sub-CL +S-ADV-ADV-V +P-VC +ADVaADV +238861 2Advp_h2 +ADV-V-O +S-V +DetNP +238866 CLaCL +CLaCL +S-ADV-P +238870 ADV-ADV-P +PrepNp +238873 ClCl +238876 that-VP +238878 PrepNp +NPofNP +sub-CL +ADV-ADV +PrepNp +NPofNP +Np-Appos +AdvpNp +PrepNp +Np-Appos +sub-CL +CLaCL +V-ADV +PrepNp +NPofNP +238894 ADV-ADV +PrepNp +NPofNP +sub-CL +ADV-ADV-V-S +PrepNp +NPofNP +All-NP +238903 Conj-CL +238905 sub-CL +ADV-V-S-O +V-O +V-ADV +PrepNp +AdvpNp +S-P +ofNPNP +238914 ADV-V +238916 Conj-CL +ClCl2 +sub-CL +238920 O-V +O2-O-V +238923 Conj-CL +238925 PrepNp +sub-CL +ADV-V +238929 ADV-V +238931 Conj-CL +CLaCL +V-ADV-S +238935 V-ADV-S +PrepNp +238938 Conj-CL +O-V-ADV +O-ADV-V-ADV +PrepNp +PrepNp +Np-Appos +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +DetCL +CLaCL +V-O +238953 V-O-ADV +PrepNp +238956 ADV-V-O +DetNP +NPofNP +DetNP +238961 Conj-CL +ClCl2 +sub-CL +P-S +PrepNp +ADV-S-ADV-V +238969 Np2CL +intjNP +AdjpNp +S-O-V +PrepNp +Np-Appos +V2CL +238977 ClCl +V-O +O-V-ADV +NpAdjp +PrepNp +O-V-ADV +DetNP +Conj2Pp +PrepNp +NPofNP +238988 PrepNp +NPofNP +238991 ADV-P-VC +238993 ADV-ADV-ADV-V +V-ADV +238997 sub-CL +ADV-ADV-P +239000 Conj-CL +239002 DetCL +CLaCL +V-IO-O +DetNP +239007 V-O-ADV +PrepNp +Conj2Pp +PrepNp +NPofNP +239013 PrepNp +NPofNP +sub-CL +CLaCL +S-V-O +DetNP +239020 V-IO-ADV +PrepNp +239023 Conj-CL +239025 that-VP +239027 Np2CL +NpPp +PrepNp +NPofNP +239032 Conj-CL +239034 DetNP +239036 that-VP +ADV-V-O-S +PrepNp +DetNP +DetNP +DetNP +that-VP +V-ADV-S +PrepNp +All-NP +DetNP +239048 Conj-CL +S-V-ADV +NpPp +PrepNp +PrepNp +DetNP +AdjpNp +239056 Conj-CL +S-P-VC +S-P-VC +PrepNp +NPofNP +PrepNp +239063 Conj-CL +239065 that-VP +P-S +All-NP +S-ADV-V-ADV-ADV +All-NP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +DetCL +V-O +239079 Conj-CL +239081 that-VP +ADV-S-V-ADV +PrepNp +PrepNp +DetNP +sub-CL +S-ADV-V +DetAdj +PrepNp +239091 Conj-CL +CLaCL +S-ADV-VC-P +DetNP +PrepNp +239097 S-V-ADV +DetCL +V-O +PrepNp +239102 ClCl +ClCl +239105 PrepNp +DetNP +NPofNP +DetNP +VC-ADV-P +PrepNp +sub-CL +239113 P-S +All-NP +DetCL +V-ADV +PrepNp +sub-CL +ADV-S-V-ADV +PrepNp +DetNP +DetNP +NPofNP +DetNP +PrepNp +Np-Appos +sub-CL +O-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +239136 Np2CL +PrepNp +239139 ADV-O-S-V +ofNPNP +AdjpNp +V2CL +Conj2VP +239146 Conj-CL +V-S-IO +DetNP +NpaNp +DetNP +239152 DetNP +NPofNP +239155 notCLbutCL2CL +ClCl +239158 Np2CL +ConjNp +239161 DetNP +sub-CL +ADV2CL +PrepNp +239166 sub-CL +ADV2CL +PrepNp +Np2CL +ConjNp +239172 DetNP +NPofNP +S-VC-P +239176 Conj-CL +239178 O-S-ADV-V-ADV +NpAdjp +V-ADV +PrepNp +DetNP +DetNP +AdjpNp +ADV-V +PrepNp +NumpNP +Conj2Nump2 +PrepNp +DetCL +V-O +DetNP +239194 Conj-CL +ClCl2 +sub-CL +P-S +PrepNp +DetNP +ADV-P +PrepNp +239203 Conj-CL +IO-ADV-V-S +DetNP +PrepNp +DetNP +239209 Conj-CL +ADV-S +DetNP +239213 ADV-V-ADV-ADV +NP-Prep +DetNP +PrepNp +PtclCL +V-S +NP-CL +DetNP +IO-V +V-ADV-ADV +PrepNp +PrepNp +NPofNP +239227 Conj-CL +CLaCL +S-P-ADV-VC +DetNP +239232 S-P-VC +DetNP +239235 Conj-CL +S-P +DetNP +PrepNp +DetNP +NPofNP +DetNP +239243 ADV-V +239245 Conj-CL +ClCl2 +sub-CL +V-S +Np-Appos +DetCL +V-O +V2CL +PtclCL +ADV-P-VC-S +PrepNp +DetNP +239258 Conj-CL +239260 DetNP +DetAdj +PrepNp +sub-CL +S-ADV-V-IO +DetNP +PrepNp +NPofNP +Np-Appos +DetCL +V2CL +239272 Conj-CL +ADV-ADV-V-ADV +PrepNp +DetCL +V-S +DetNP +PrepNp +V-ADV +PrepNp +DetNP +AdjpNp +V-O +V2CL +239286 Conj-CL +239288 DetNP +NPofNP +PrepNp +sub-CL +ADV-V +PrepNp +239295 Conj-CL +239297 V-S +DetNP +PrepNp +239301 Conj-CL +S-P-VC-ADV +NPofNP +PrepNp +DetNP +NpPp +PrepNp +Np-Appos +239310 Conj-CL +S-O-V +S-ADV-V +PrepNp +239315 ClClCl +P-VC-S +NpaNp +239319 P-VC-S +NpaNp +239322 P-VC-S +NpaNp +239326 Conj-CL +S-P-VC-ADV +All-NP +PrepNp +Np-Appos +239332 Conj-CL +ClCl2 +sub-CL +S-P +PtclCL +ClCl +P-VC +ofNPNP +DetNP +ADV-P +PrepNp +239344 Conj-CL +239346 CLaCL +ADV-O-V-ADV-ADV +ADV-S-P-VC +PrepNp +AdjpNp +DetNP +P-VC +NPofNP +239355 P-VC-ADV +PrepNp +NpaNp +239359 PrepNp +DetNP +NPofNP +DetNP +239364 ADV-S-ADV-ADV-V +AdvpNp +sub-CL +VC-P +PrepNp +DetNP +NPofNP +DetNP +BeVerb +239374 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +NPofNP +DetNP +ClCl +239383 DetNP +DetNP +NPofNP +V-ADV +PrepNp +V-ADV +PrepNp +sub-CL +O-V +NpPp +PrepNp +sub-CL +O-V +DetNP +239398 Conj-CL +ClCl2 +sub-CL +VC-P +V-S-O-ADV-ADV +DetNP +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +239412 Np2CL +Np-Appos +DetNP +239416 Conj-CL +VC-P +notNPbutNP +239420 Conj-CL +239422 sub-CL +P2CL +AdvpNp +PrepNp +239427 Conj-CL +aCLaCL +239430 ADV-ADV-V-O +ADV-V-O +DetCL +ADV-ADV-VC-P +239435 ADV-ADV-ADV-V-ADV-ADV +CLaCL +V-O +239439 ADV-V-ADV +PrepNp +PrepNp +NP-CL +DetNP +AdjpNp +AdjpaAdjp +239447 O-V +O-ADV-V +2Advp_h1 +239451 V-O +Conj4Np +239458 PtclCL +PtclCL +ADV-V-ADV +PrepNp +239463 ClCl +ClCl +ClCl +V2CL +sub-CL +S2CL +sub-CL +ClCl +S2CL +sub-CL +S2CL +239475 Np2CL +239477 ADV-O-V +239479 Conj-CL +239481 that-VP +CLaCL +ADV-V-IO-ADV +PrepNp +NPofNP +DetNP +DetAdj +239489 notCLbutCL2CL +O-V +DetNP +NpPp +NPofNP +PrepNp +DetNP +NPofNP +Conj2VP +239500 sub-CL +O2CL +NPofNP +sub-CL +O2CL +Np-Appos +239507 Conj-CL +P-S +DetNP +NPofNP +239512 Conj-CL +239514 that-VP +239516 sub-CL +P2CL +O-V +DetNP +NPofNP +239522 Conj-CL +P-VC-ADV +NPofNP +V-IO +239527 CLaCL +V-O-ADV-ADV +239531 V-O +sub-CL +O-V +239535 Conj-CL +239537 V-ADV-ADV +PrepNp +ADVaADV +239541 ADV-ADV-ADV +PrepNp +DetCL +V-S-ADV +PrepNp +Np2CL +NP-CL +NPofNP +O-ADV-V-ADV +PrepNp +ADV-V-S-ADV +PrepNp +239554 Conj-CL +ClCl +V-O +CLaCL +V-ADV-ADV +PrepNp +239561 V-O +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +239568 ClCl +239570 Np2CL +DetCL +O-V +P-VC +PrepNp +O-ADV-V +DetNP +239578 Conj-CL +239580 that-VP +S-V-O +Np-Appos +NumpNP +NpaNp +NpPp +PrepNp +DetNP +239589 NpPp +PrepNp +DetAdj +239593 Conj-CL +239596 S-ADV-V +NpPp +PrepNp +DetNP +PrepNp +239602 S-ADV +NpPp +PrepNp +DetAdj +PrepNp +DetNP +S-VC-P +V2CL +239611 Conj-CL +S-VC-P +NumpNP +239615 aCLaCL +239617 CLaCL +239619 PrepNp +NPofNP +ADV-V +PrepNp +S-VC-P +239625 ClCl +CLaCL +S-P-VC-ADV +DetNP +Np-Appos +PrepNp +DetNP +239633 V-ADV +DetNP +AdjpNp +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +239643 DetNP +AdvpNp +S-VC-P +NPofNP +239648 Conj-CL +239650 ClCl +ClCl +239653 Np2CL +Np-Appos +DetCL +ADV-V +239658 V2CL +239660 V2CL +Np2CL +DetCL +ADV-V +sub-CL +CLaCL +P-S-ADV +DetNP +NPofNP +DetAdj +239671 S2CL +DetCL +V-O +DetNP +239676 Conj-CL +239678 Np2CL +PrepNp +ofNPNP +239682 Conj-CL +239684 sub-CL +ADV-S-V-O +DetCL +ADV-V +PrepNp +NpPp +PrepNp +239692 Conj-CL +239694 DetNP +ClCl +V-O +NpaNp +DetNP +239700 DetNP +NPofNP +sub-CL +ADV-V-S-ADV +2Advp_h1 +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetAdj +239713 Conj-CL +239715 Np2CL +notNPbutNP +ofNPNP +DetAdj +239720 ADV-O-S-V +DetNP +239723 Conj-CL +CLaCL +V2CL +239727 ADV-ADV-ADV-V +NPofNP +239731 Np-Appos +that-VP +239734 sub-CL +V2CL +239737 Conj-CL +239739 All-NP +NpAdjp +V2CL +that-VP +P-VC-ADV +O-V +All-NP +DetNP +239749 PrepNp +S-ADV-V +PrepNp +ADV-V +DetNP +239755 Conj-CL +S-ADV-ADV-O-V +PrepNp +NPofNP +239760 Conj-CL +ADV-V +PrepNp +Np-Appos +notCLbutCL +S-O-V +NpaNp +239768 S2CL +NpAdjp +ADV-V +PrepNp +239773 V-ADV +239775 S-V-O +S-ADV-ADV-V +239778 S-ADV-P +DetNP +PrepNp +DetCL +V-O +239784 S-O-V +AdjpNp +All-NP +DetNP +239790 PrepNp +PrepNp +that-VP +O-V +AdjpNp +239796 Conj-CL +239798 DetCL +V-O +DetNP +PtclCL +P-VC +239804 Conj-CL +239806 Np2CL +sub-CL +S-O-ADV-V +ADV-ADV-V +239811 Conj-CL +V-S +DetNP +NPofNP +DetNP +239817 ClCl +V2CL +ADV-V-S +DetCL +V-O +239823 Conj-CL +239825 PrepNp +Np2CL +239828 notCLbutCL2CL +2Advp_h2 +O-ADV +DetNP +PrepNp +NpAdvp +DetNP +ADV-V-O +PrepNp +DetNP +239839 Conj-CL +S-V-ADV +DetNP +All-NP +2Pp +PrepNp +AdjpNp +PrepNp +NP-CL +239849 DetNP +NPofNP +sub-CL +O2CL +239854 Conj-CL +239856 sub-CL +O-V +Conj2VP +239860 V2CL +PtclCL +ADV-V +PrepNp +239865 Conj-CL +239867 CLaCL +ADV-V +239870 O-ADV-V +NPofNP +2Advp_h1 +239874 Conj-CL +CLaCL +S-V-ADV +DetNP +PrepNp +DetNP +239881 S-ADV +DetNP +PrepNp +DetNP +239886 Conj-CL +239888 sub-CL +AdvpCL +239891 PtclCL +O-V +239894 Conj-CL +ClCl2 +sub-CL +ADV-V +ADV-VC-P +PrepNp +239901 Conj-CL +P-VC-S +NP-CL +DetNP +NPofNP +DetNP +S-VC-P +NP-CL +NpNpNpNpNpNpNpNpNpNpNpNpNpNpNpAndNp +239911 DetAdj +AdjpDative +239914 O-V-IO +239916 that-VP +S-O-ADV-V +DetCL +O-V +DetNP +NPofNP +239923 ClCl +Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +NpNpNpNpNpNpNpNpNp +P-ADV-VC-S +PrepNp +DetNP +239934 Conj-CL +S-O-V-ADV +NPofNP +DetNP +Np-Appos +DetNP +PrepNp +NpaNp +DetNP +239944 DetNP +239947 sub-CL +V-ADV +239950 ADV-VC-P-ADV-ADV +O-V +O-V +239955 Np2CL +sub-CL +ADV-V-S-ADV +PrepNp +AdjpNp +S-V-O-ADV-ADV +Np-Appos +DetAdj +DetNP +PrepNp +NPofNP +239967 PtclCL +S-V +AdvpNp +239971 CLaCL +O-V +ofNPNP +DetNP +239976 ADV-V-O +DetNP +NPofNP +DetNP +239981 Conj-CL +ClCl2 +sub-CL +V-S-O-ADV +VC-P +P-VC +V-O +239989 Conj-CL +CLaCL +O-V-S +DetNP +NPofNP +239995 CLaCL +ADV-ADV-ADV-O-V +PrepNp +DetNP +240000 ADV-ADV +PrepNp +DetAdj +240004 Conj-CL +S-O-V +DetNP +AdjpNp +240009 Conj-CL +V-S-ADV-ADV +DetCL +V-O +DetNP +DetCL +V2CL +PrepNp +All-NP +240020 S-ADV-V +240022 Conj-CL +240024 PtclCL +O-V-S +sub-CL +CLaCL +S-ADV-V-O +DetCL +V-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +240037 S-ADV-V-O +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +NpAdjp +240046 Conj-CL +O-ADV-V +O-V +DetAdj +240051 Conj-CL +ADV-V-ADV +NpAdjp +ADV-V +240056 Conj-CL +Conj-CL +ClCl2 +sub-CL +O-V +CLaCL +V-O-ADV +DetAdj +PrepNp +240066 ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +240072 ClCl +V2CL +ADV-IO-V-ADV +AdjpNp +DetNP +AdjpNp +240081 S-V-O +V-ADV +PrepNp +S-V +ADV-ADV-ADV-V +DetNP +NPofNP +DetNP +240090 Conj-CL +notCLbutCL2CL +S-O-V +NpPron +DetCL +V2CL +ClCl +V-O +S-V +sub-CL +ADV-V +PrepNp +DetNP +AdjpNp +240105 Conj-CL +240107 V2CL +sub-CL +ADV-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +240118 ADV-IO-S-V +PrepNp +240121 Conj-CL +P-VC-S +notNPbutNP +NpaNp +240126 AdjpNp +240128 Conj-CL +240130 S-ADV-V +NP-Demo +DetNP +NpaNp +240135 Conj2Pp +PrepNp +240138 PrepNp +DetNP +NPofNP +DetNP +240143 ClCl +ADV-O-IO-S-V +DetAdj +sub-CL +S-O-ADV-V +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +240156 DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +PrepNp +DetNP +NPofNP +Np2CL +Intj2CL +240168 S-IO +Np-Appos +NpPp +NPofNP +Np-Appos +PrepNp +NPofNP +DetNP +NpaNp +Np-Appos +DetCL +VC-P +PrepNp +240182 NpPp +PrepNp +Np-Appos +240186 IO-S-ADV +NpaNp +240189 PrepNp +NpaNp +Np-Appos +NPofNP +240194 Np-Appos +Np-Appos +240197 P-S +Np-Appos +DetNP +NPofNP +NpaNp +240203 Np-Appos +DetNP +NPofNP +Np-Appos +DetCL +ClCl +V-O-ADV-ADV-ADV +PrepNp +All-NP +NpAdjp +PrepNp +DetAdj +PrepNp +sub-CL +V-O-ADV-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +VC-S-P-ADV-ADV +AdjpaAdjp +240224 PrepNp +PrepNp +V-O-ADV-ADV-ADV-ADV-ADV +PrepNp +PrepNp +Np-Appos +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +NPofNP +DetNP +NP-CL +NPofNP +O2-V-O-ADV +PrepNp +DetCL +V2CL +240247 ADV-V-O-ADV +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +NP-CL +NPofNP +O-V-ADV-ADV-ADV-ADV +PrepNp +PrepNp +All-NP +NpaNp +240270 V-IO-O +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NP-CL +NPofNP +O-V-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +DetNP +NPofNP +DetNP +ClCl +V-O-ADV +DetAdj +PrepNp +DetNP +O-ADV +NpaNp +NpPp +PrepNp +DetNP +240297 NpPp +PrepNp +DetNP +PrepNp +240302 ADV-ADV-V-ADV-ADV +PrepNp +V-ADV +PrepNp +NPofNP +DetCL +O-V-ADV +DetAdj +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetCL +V-ADV-S +PrepNp +NPofNP +NPofNP +Np-Appos +DetCL +V-ADV +PrepNp +DetNP +240327 ADV-S-ADV-ADV-V-ADV-ADV-ADV +PrepNp +AdvpNp +V-O +Np-Appos +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +NPofNP +ADV-ADV-V +PrepNp +NP-CL +DetNP +NPDetAdj +NPofNP +DetNP +DetAdj +S-VC-P +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +DetNP +PrepNp +NPofNP +DetNP +NPofNP +240359 ADV-S-ADV-ADV-V-O-ADV +PrepNp +V-O +NpaNp +DetNP +NpPp +PpNp2Np +PrepNp +PrepNp +DetNP +Np-Appos +240371 Np-Appos +DetNP +NpPp +PrepNp +All-NP +DetAdj +V-ADV +PrepNp +240380 PrepNp +DetNP +NPofNP +sub-CL +240385 Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +NpaNp +240398 PrepNp +NPofNP +V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetCL +V-S-O-ADV +2CLaCL +P-VC-S +DetNP +NPofNP +DetNP +NPofNP +P-S +DetNP +NPofNP +DetNP +NPofNP +DetNP +NpPp +NPofNP +PrepNp +DetAdj +240425 P-S +DetNP +NPofNP +AdjpNp +V2CL +DetNP +NpPp +NPofNP +PrepNp +Np-Appos +DetCL +V2CL +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +240445 O-V-ADV-ADV +PrepNp +DetNP +CLaCL +V-O-ADV +PrepNp +240452 V-ADV-ADV-ADV-ADV +PrepNp +NPofNP +PrepNp +DetAdj +PrepNp +NpaNp +All-NP +Conj4Np +240465 All-NP +NpAdjp +V2CL +notPPbutPP +2Advp_h1 +PrepNp +NP-Demo +DetNP +AdvPp +PrepNp +DetCL +V2CL +240478 Conj-CL +CLaCL +O-V-ADV +PrepNp +DetNP +NPofNP +240485 O-V-O2-IO +NpPp +PrepNp +NP-CL +DetNP +S-VC-P +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetCL +O-ADV-V +DetAdj +PrepNp +240501 Conj-CL +240503 S-VC-P-ADV +NPofNP +NpaNp +DetNP +240508 DetNP +PrepNp +PrepNp +DetNP +NPofNP +NP-Demo +DetNP +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetNP +Np-Appos +DetNP +DetCL +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +240531 CLaCL +ADV-S-V-ADV-ADV-ADV +PrepNp +AdvpNp +NP-all +PrepNp +DetNP +NPofNP +DetNP +NPofNP +V-O +DetNP +NPofNP +NpaNp +DetNP +240547 DetNP +240550 NPofNP +sub-CL +S2CL +AdvpNp +DetAdj +240556 Conj-CL +CLaCL +ClCl +S-ADV-ADV-ADV-V-ADV +DetNP +P-VC-ADV +PrepNp +PrepNp +DetNP +NP-CL +NPofNP +AdjpNp +ADV-V-O +ADV-VC-S-P-ADV +DetNP +DetNP +ADV-V +BeVerb +240575 ClCl +CLaCL +V2CL +240579 V-ADV-ADV +PrepNp +DetAdj +PrepNp +Np-Appos +sub-CL +V-ADV-O +PrepNp +Np-Appos +DetNP +DetCL +V2CL +DetNP +NPofNP +AdjpNp +V2CL +DetNP +NpPp +NPofNP +PrepNp +NpPp +NpPp +PrepNp +PrepNp +Np-Appos +240605 Conj-CL +ADV-V-ADV +DetNP +BeVerb +PrepNp +240611 Conj-CL +ClCl +S-ADV-P +PrepNp +P2CL +ofNPNP +DetNP +240619 ClCl +ADV-P +PrepNp +sub-CL +ADV-S-V +240625 Conj-CL +VC-P-ADV +ofNPNP +V-ADV-ADV +PrepNp +Np-Appos +PrepNp +NP-CL +NpAdjp +240635 O-V-S +DetNP +ADV-V +PrepNp +240640 Conj-CL +ClCl +V2CL +240644 that-VP +ADV-S +Np-Appos +Np-Appos +NpPp +DetNP +PrepNp +DetCL +VC-P-ADV +PrepNp +DetCL +VC-P +NpAdjp +NpPp +PrepNp +VC-ADV-ADV-P +NP-Demo +DetNP +PrepNp +AdjpAdjp +AdjpaAdjp +V-ADV +DetNP +NPofNP +DetNP +240670 AdjpofNp +DetNP +NPofNP +DetNP +AdjpaAdjp +O-ADV-V +240677 AdjpPp +PrepNp +DetNP +240681 Conj-CL +ADV-ADV-S-VC-P-ADV +PrepNp +Np-Appos +Np-Appos +DetCL +ADV-VC-P +PrepNp +DetNP +NPofNP +DetNP +240693 Conj-CL +S-VC-P-ADV +Np-Appos +DetNP +NPofNP +DetCL +CLaCL +V-O-O2 +DetAdj +240703 O-V-ADV +Np-Appos +DetNP +NPofNP +DetNP +DetNP +PrepNp +DetNP +NPofNP +240713 DetNP +NPofNP +DetNP +NpPp +PrepNp +sub-CL +CLaCL +O-V-ADV-ADV-ADV +DetNump +PrepNp +PrepNp +AdjpNp +AdjpNp +V-O +240728 V-O-ADV-IO-ADV-ADV +DetAdj +PrepNp +AdjpNp +DetNP +PrepNp +DetNP +V-O-ADV +DetNP +PrepNp +240739 Conj-CL +ClCl +CLaCL +ADV-V-O-IO +V2CL +Np-Appos +DetAdj +240747 O-IO +DetNP +sub-CL +ADV-V-O-S-ADV-ADV +PrepNp +DetNP +DetAdj +PrepNp +AdjpNp +PrepNp +DetNP +240759 Conj-CL +Conj-CL +V-ADV +notCLbutCL +VC-P +NpaNp +240766 VC-P +NpaNp +NPofNP +DetAdj +240771 NPofNP +DetNP +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NpaNp +240780 VC-P-S +NP-CL +PronNP +Np-Appos +ADV-S-ADV-V-ADV-ADV +PrepNp +All-NP +V2CL +PrepNp +NpAdjp +PrepNp +NP-CL +ADV-S-V-ADV-ADV +PrepNp +AdvpNp +PrepNp +NPofNP +DetNP +PrepNp +240801 ADV-S-P +NP-Prep +Np-Appos +DetNP +NpPp +NPofNP +DetNP +Np-Appos +PrepNp +Np-Appos +DetNP +ClCl +sub-CL +PtclCL +V-O +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-IO-ADV +PrepNp +sub-CL +240827 PrepNp +DetNP +sub-CL +V-ADV +PrepNp +ADV-V-ADV-O +PrepNp +V2CL +V-O +DetNP +NpPp +NPofNP +PrepNp +NP-CL +DetNP +NPofNP +DetNP +240845 S-ADV-ADV-V-IO +AdjpNp +DetNP +NPofNP +DetNP +ADV-V-IO-ADV-S +DetNP +NpaNp +NPofNP +AdjpNp +240856 PrepNp +VC-S-P-ADV-ADV +DetNP +Conj3Np +240862 NPofNP +DetNP +PrepNp +Np-Appos +PrepNp +DetNP +P-VC-ADV +ofNPNP +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-IO-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +240886 Np-Appos +DetAdj +AdjpofNp +All-NP +NP-Demo +DetNP +CLaCL +IO-V-O +DetNP +DetNP +NPofNP +AdjpNp +DetNP +240900 V-O +P-S +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +Np-Appos +DetNP +DetCL +O-V +DetAdj +sub-CL +V-ADV-IO-ADV-S-ADV +NpPp +NpaNp +DetNP +240922 DetNP +PrepNp +DetAdj +PrepNp +DetNP +DetNP +NPofNP +AdjpNp +DetNP +PrepNp +NP-CL +NPofNP +DetNP +O-V-ADV +PrepNp +NP-CL +Np-Appos +DetNP +Np-Appos +DetNP +NPofNP +ADV-V-O-ADV-ADV +PrepNp +DetNP +NpaNp +240948 PrepNp +PrepNp +DetNP +NPofNP +240953 Conj-CL +V-O +ADV-V-ADV +PrepNp +NP-CL +DetNP +NpPp +NPofNP +PrepNp +S-VC-P +NPofNP +240966 NP-Prep +DetNP +NPofNP +PrepNp +NP-CL +DetNP +ADV-S-V +PrepNp +NpPp +All-NP +Conj2Pp +PrepNp +240979 PrepNp +sub-CL +240982 PrepNp +DetNP +NPofNP +DetNP +NPofNP +ADV-V-ADV-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +AdvpNp +V-S-ADV-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +ADV-V +PrepNp +Conj2VP +241005 sub-CL +241007 CLaCL +V-ADV-O +PrepNp +All-NP +DetAdj +P-S +DetNP +Conj4Np +241019 V-O +DetNP +AdjpNp +V-ADV +DetNP +NPofNP +DetNP +sub-CL +V-ADV +PrepNp +All-NP +DetNP +NPofNP +DetNP +241034 Conj-CL +241036 Np2CL +DetCL +V-O +V-ADV-ADV-ADV +PrepNp +All-NP +O-V +Conj2VP +241045 PrepNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +Conj2Pp +PrepNp +DetNP +241056 PrepNp +Np-Appos +PrepNp +All-NP +DetNP +NPofNP +DetNP +NPofNP +DetNP +Intj2CL +241067 Conj-CL +V-O-S-O2 +Np-Appos +DetNP +NpPp +PrepNp +ADV-V-ADV-ADV-ADV +DetNP +NP-CL +ADV-V +ADV-ADV-V-O-ADV +PrepNp +All-NP +NpaNp +241082 PrepNp +PrepNp +V-O +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +241094 ClCl +P2CL +NpaNp +AdjpNp +241099 AdjpNp +sub-CL +ADV-V-ADV +PrepNp +AdjpNp +NPofNP +DetNP +NPofNP +241108 P2CL +NpNpNpNp +AdjpNp +AdjpNp +AdjpNp +Np-Appos +AdjpNp +NpaNp +241117 NPofNP +NpPp +Conj3Pp +PrepNp +241122 PrepNp +241124 PrepNp +241126 Conj-CL +IO-V-S-ADV +NPofNP +NpAdjp +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +241138 Conj-CL +241140 ClCl +ADV-V-O +V-ADV +PrepNp +V-O-IO +DetNP +241147 Conj-CL +241149 DetCL +V2CL +sub-CL +AdvpCL +that-VP +ADV-V-ADV +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +241161 S-VC-P +NpPron +DetCL +V2CL +AdvpNp +DetCL +241168 PrepNp +All-NP +DetNP +sub-CL +V-O +DetAdj +241175 Conj-CL +241177 EitherOr4Np +241179 DetNP +241181 DetNP +241183 DetNP +241185 DetNP +NpaNp +241188 PrepNp +DetNP +NpPp +NpPp +NPofNP +DetAdj +PrepNp +NPofNP +PrepNp +NPofNP +DetNP +NPofNP +DetNP +sub-CL +241203 DetAdj +PpPpPp +PrepNp +DetNP +NPofNP +NpaNp +DetNP +241211 DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +NpAdjp +PrepNp +NPofNP +NPofNP +DetNP +NPofNP +DetNP +sub-CL +CLaCL +ADV-VC-P +AdjpAdjp +V-ADV-ADV +Conj2VP +241231 All-NP +NPofNP +DetNP +PrepNp +DetNP +NpPp +NPofNP +DetNP +PrepNp +NpPp +PrepNp +DetNP +NPofNP +DetNP +241246 ADV-V-ADV-ADV +V-ADV +PrepNp +DetAdj +PrepNp +NP-CL +Np-Appos +NP-CL +S-VC-P +DetNP +ADV-S-ADV-O-V-ADV +PrepNp +All-NP +DetNP +V-ADV-ADV +Conj2VP +241263 PrepNp +All-NP +Np-Appos +DetNP +PrepNp +NPofNP +NpPp +PrepNp +Np-Appos +NpAdjp +DetNP +NPofNP +DetNP +PrepNp +NpPp +NPofNP +PrepNp +241281 Conj-CL +CLaCL +O-V +241285 V-ADV-O +PrepNp +ClCl +ADV-S-V +sub-CL +ADV-S-V-ADV-ADV +DetNP +PrepNp +NPofNP +DetNP +NPofNP +241297 VerbBe +DetNP +V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +Np-Appos +DetNP +DetCL +VC-P-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +NP-CL +S-ADV-O-V-ADV-ADV +V2CL +DetNP +PrepNp +NpPp +NPofNP +NP-all +PrepNp +241324 Conj-CL +ClCl +S-ADV-ADV-V-O +DetNP +sub-CL +PtclCL +CLaCL +O-V +241333 ADV-V-ADV-O +PrepNp +sub-CL +VC-S-P +PrepNp +DetNP +Conj3CL +V-S-ADV-O +PrepNp +DetNP +AdjpNp +Np-Appos +DetNP +AdjpNp +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +241354 V-ADV +DetNP +NPofNP +DetNP +NPofNP +241360 V-O +Np-Appos +DetNP +AdjpNp +DetCL +ADV-V-ADV +PrepNp +PrepNp +NPofNP +NpaNp +241371 DetNP +241373 Conj-CL +241375 V-O +DetNP +PrepNp +DetNP +NPofNP +sub-CL +VC-P +ofNPNP +241384 CLaCL +V2CL +241387 ADV-V +241389 ClCl +S-ADV-V-ADV +DetNP +PrepNp +NPofNP +ADV-V-O-IO +DetAdj +241397 CLaCL +S-ADV-V +DetCL +V2CL +241402 ClCl +ADV-V-ADV +V-ADV-O +DetNP +AdjpNp +DetAdj +sub-CL +V-O +V-IO +DetCL +O-V +241414 CLaCL +S-ADV-ADV-V +All-NP +NpAdjp +PrepNp +DetNP +NPofNP +241422 ClCl +sub-CL +S-P-ADV +PrepNp +NPofNP +DetNP +sub-CL +V-O-IO +DetCL +V2CL +241433 Conj-CL +ADV-V-O +NP-CL +Np-Appos +DetNP +DetNP +NPofNP +DetNP +ADV-V-ADV +PrepNp +PrepNp +NPofNP +241446 S-V-ADV-ADV +All-NP +Conj5Np +241453 PrepNp +PrepNp +All-NP +241457 Conj-CL +VC-ADV-P-ADV +PrepNp +AdjpAdjp +241462 sub-CL +S-ADV-V-O +AdvpNp +DetNP +PrepNp +241468 Conj-CL +CLaCL +241471 NPofNP +DetNP +sub-CL +S2CL +NpAdjp +241478 PrepNp +sub-CL +CLaCL +S-V-O +AdvpNp +DetNP +241485 V-O-ADV-O2 +PrepNp +NpPp +NpAdvp +NpaNp +241491 DetNP +PrepNp +NPofNP +241495 Conj-CL +CLaCL +CLaCL +241499 Conj3Np +241501 NP-all +241503 PrepNp +sub-CL +V-ADV +241507 S2CL +NP-CL +Conj3Np +241512 S-ADV-V +241514 ADV-S +241516 Conj-CL +O-V-ADV +241519 that-VP +S-ADV-V-O-ADV +NP-CL +All-NP +Conj3Np +241526 S-VC-P +PrepNp +DetNP +NPofNP +DetNP +NpaNp +241535 AdjpNp +sub-CL +ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +241547 Conj-CL +ADV-VC-P +NPofNP +241551 Conj-CL +CLaCL +VC-ADV-P +241555 ADV-P-ADV +PrepNp +241560 sub-CL +S2CL +NPofNP +sub-CL +S-P +DetNP +NPofNP +DetNP +PrepNp +All-NP +Conj3Np +241573 V-O +S-VC-P-ADV +DetNP +241577 Conj-CL +ClCl +CLaCL +ADV-V-ADV +Np-Appos +DetNP +DetNP +NPofNP +DetNP +241587 ADV-ADV-V +sub-CL +S-P-VC-ADV +DetCL +ADV-V-ADV +PrepNp +ADV-V +241595 Conj-CL +241597 DetAdj +V-ADV +PrepNp +DetNP +sub-CL +S-P-VC +All-NP +DetCL +V2CL +241607 Conj-CL +241609 Conj3CL +241611 Np2CL +DetCL +V2CL +241615 V-ADV +PrepNp +DetAdj +241619 V-ADV-S +DetNP +241622 Conj-CL +241624 ClCl +ADV-V +notCLbutCL2CL +sub-CL +S2CL +sub-CL +S2CL +V-O +DetNP +sub-CL +S-P-VC +DetNP +241637 CLaCL +ADV-ADV-VC-P +PrepNp +241641 V-O +P-S +DetNP +NPofNP +DetNP +241647 Conj-CL +notCLbutCL2CL +V-ADV +NP-CL +P-VC-S +PrepNp +V-ADV-ADV +PrepNp +ClClClCl +V-IO-ADV +Conj3Np +241660 NpAdjp +V-ADV-IO +Conj2VP +241664 DetNP +NPofNP +DetNP +V-ADV-ADV-ADV-O +PrepNp +PrepNp +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +NpaNp +241678 V-IO-ADV +PrepNp +NPofNP +241683 Np2CL +DetNP +DetNP +AdjpNp +sub-CL +IO2CL +DetNP +sub-CL +241692 NPofNP +DetNP +sub-CL +ClCl +S-P +AdvpNp +DetNP +NPofNP +DetNP +S-P +NPofNP +DetNP +241705 Conj-CL +241707 sub-CL +S-V-IO +DetNP +DetNP +AdvpNp +DetNP +DetNP +PrepNp +241717 Np2CL +DetNP +V-O +DetNP +sub-CL +CLaCL +S-V-O +AdvpNp +DetNP +DetNP +241728 ClCl +O-V-ADV +PrepNp +sub-CL +241733 V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +sub-CL +V-S-IO-O-O2 +DetNP +AdjpAdjp +V2CL +notCLbutCL +V-O +Conj3Np +241748 NPofNP +DetNP +that-VP +VC-P +AdjpaAdjp +241756 AdvpNp +DetNP +V-O +DetNP +ofNPNP +sub-CL +O2CL +DetNP +ofNPNP +241766 ClCl +S-O-V +DetCL +V-O +DetNP +ofNPNP +sub-CL +CLaCL +S-ADV-O-V +DetNP +ofNPNP +241779 Conj2VP +241781 sub-CL +241783 AdvpNp +DetNP +DetNP +sub-CL +VC-P +NPofNP +DetNP +NPofNP +241792 CLaCL +CLaCL +ADV-V-S-O +PrepNp +NpaNp +DetNP +241799 DetNP +241801 V-ADV +PrepNp +DetNP +NPofNP +241806 VC-S-P +DetNump +PrepNp +NpAdjp +241811 CLaCL +S-P-VC +NP-Demo +DetNP +241816 S-V-ADV +Conj2Pp +PrepNp +241820 PrepNp +DetNP +241823 Conj-CL +CLaCL +241826 AdvpNp +Np-Appos +NpPp +PrepNp +DetNP +ofNPNP +sub-CL +O2CL +241836 DetNP +that-VP +V-O +DetNP +241841 ClCl +241843 Np2CL +DetNP +DetNP +NPofNP +PrepNp +sub-CL +S-VC-P +241851 ClCl +241853 V-O +NpaNp +DetNP +NPofNP +241858 DetNP +NpPp +NpAdjp +PrepNp +sub-CL +CLaCL +P-ADV-VC +241866 VC-P-ADV +PrepNp +DetNP +241870 Conj-CL +241872 Np2CL +DetNP +notCLbutCL +V-O +DetNP +NPofNP +V-O-ADV +PrepNp +NPofNP +NpaNp +241885 Np2CL +DetNP +ClCl +V-O-ADV-ADV +DetNP +PpNp2Np +PrepNp +PrepNp +NpaNp +241895 PrepNp +NPofNP +DetNP +NPofNP +sub-CL +O2CL +DetNP +notCLbutCL2CL +ClCl +ADV2CL +PrepNp +sub-CL +S2CL +ClCl2 +sub-CL +S2CL +NPofNP +ADV-ADV-ADV +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +241919 PrepNp +sub-CL +CLaCL +O2CL +DetNP +241925 ADV-O +241927 that-VP +241929 sub-CL +S-O-V +NpAdjp +O-V-ADV +PrepNp +aCLaCL +241936 P2CL +241938 P2CL +241940 Conj-CL +241942 Np2CL +DetNP +DetNP +PrepNp +V-O +DetNP +241949 that-VP +CLaCL +S-VC-P +ofNPNP +aNpaNp +241956 DetNP +PrepNp +241959 S-ADV-VC-P +PrepNp +241962 ADV-V-ADV +DetAdj +Conj2Pp +PrepNp +241967 PrepNp +DetNP +NPofNP +DetNP +NPofNP +241974 DetNP +NPofNP +DetNP +PrepNp +DetCL +V-S-O +V-ADV +PrepNp +DetNP +NPofNP +DetAdj +sub-CL +VC-S-P +AdvpNp +DetNP +notPPbutPP +PrepNp +NpaNp +241993 PpPpPpPp +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +NP-Demo +PrepNp +DetNP +NpPp +NPofNP +DetNP +PrepNp +DetAdj +242012 PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-O +CLaCL +V-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +242025 ADV-V +O-V +242028 Conj-CL +V-ADV-ADV +Conj3CL +V-O-ADV +DetNP +NPofNP +PrepNp +242036 V-O +DetNP +NPofNP +DetNP +242041 V-O-ADV +DetNP +PrepNp +NPofNP +DetNP +NPofNP +DetNP +ADV-V-O +PrepNp +NP-CL +DetNP +NPofNP +DetNP +ADV-V-O +PrepNp +O-V +All-NP +Np-Appos +DetNP +NPofNP +DetAdj +DetCL +V2CL +242065 Conj-CL +V-O-ADV +NP-CL +NpaNp +DetNP +NPofNP +DetAdj +242073 DetNP +NPofNP +DetNP +S-VC-P +NPofNP +CLaCL +ADV-V-ADV-ADV +PrepNp +All-NP +NpaNp +242084 PrepNp +All-NP +PrepNp +242089 PrepNp +PrepNp +All-NP +NpaNp +242094 Conj2Pp +PrepNp +All-NP +DetAdj +242099 PrepNp +sub-CL +242102 PrepNp +NPofNP +DetNP +NPofNP +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +NP-CL +ADV-V-ADV +PrepNp +PrepNp +sub-CL +242117 PrepNp +sub-CL +V-S +S-V +242122 Conj-CL +ClCl2 +sub-CL +V-S-O +AdvpNp +NP-CL +NpPp +PrepNp +O-V +O-V-IO-S +NP-CL +Np-Appos +DetNP +NpaNp +AdjpNp +242138 NpPp +AdjpNp +PrepNp +242142 O-V-ADV-ADV +PrepNp +PrepNp +PronNP +CLaCL +V-O +NpPp +PrepNp +242151 V-O +DetNP +NPofNP +242155 IO-S-ADV-ADV +DetNP +NpaNp +242159 PrepNp +PrepNp +NpaNp +Np-Appos +242164 Np-Appos +Np-Appos +242167 S-P +DetNP +PrepNp +All-NP +DetCL +V-O-ADV +DetNP +Np-Appos +NPofNP +Np-Appos +PrepNp +242179 S-IO +Np-Appos +NpaNp +242183 NPofNP +Np-Appos +All-NP +Np-Appos +DetAdj +AdjpPp +PrepNp +Np-Appos +DetCL +VC-P-ADV +PrepNp +PrepNp +NpaNp +242198 IO-S-ADV +NpaNp +242201 PrepNp +NpaNp +Np-Appos +NPofNP +242206 Np-Appos +Np-Appos +242210 DetNP +NPofNP +PrepNp +All-NP +DetNP +NPofNP +ADV-ADV-ADV-O-V +PrepNp +All-NP +NpPp +NPofNP +PrepNp +All-NP +PrepNp +DetNP +PrepNp +DetNP +NpPp +NpPp +NPofNP +PrepNp +DetNP +2Pp +PrepNp +DetNP +AdjpNp +PrepNp +DetNP +242239 PronNP +that-VP +S-V-ADV +DetAdj +V-ADV-O +PrepNp +NpAdjp +PrepNp +NPofNP +Np-Appos +sub-CL +VC-P-ADV-S-ADV +O-V-ADV +PrepNp +All-NP +PrepNp +DetCL +V-S-ADV-O-ADV-ADV +PrepNp +DetNP +aPpaPp +242261 PrepNp +DetNP +NPofNP +242265 PrepNp +DetNP +NPofNP +NpaNp +242270 DetNP +P-S-VC +NPofNP +NPofNP +DetNP +All-NP +242277 Conj-CL +242279 NPofNP +DetNP +PtclCL +V-O-ADV +All-NP +PrepNp +NPofNP +Np-Appos +242288 Conj-CL +242290 that-VP +242292 DetNP +NPofNP +ADVaADV +242296 PrepNp +NpaNp +242299 All-NP +PrepNp +DetCL +V-S-O +DetCL +V2CL +sub-CL +VC-P-ADV-ADV +AdjpaAdjp +242309 PrepNp +NPofNP +V-ADV-ADV +Np-Appos +NPofNP +NpPp +PrepNp +Np-Appos +PrepNp +NPofNP +NpaNp +242322 Conj-CL +242324 Np2CL +242326 that-VP +S-ADV-ADV-V-ADV +NpPp +PrepNp +PrepNp +NPofNP +DetNP +sub-CL +CLaCL +S-P-ADV-VC-ADV +DetNP +NPofNP +PrepNp +PrepNp +NpaNp +All-NP +DetNP +242344 NP-all +DetAdj +242347 S-ADV-ADV-V-O +DetNP +NPofNP +DetNP +ADV-V-ADV +PrepNp +DetNP +NPofNP +ADV-O-V +DetNP +NPofNP +DetNP +242360 aCLaCL +242362 S-ADV +AdvPp +PrepNp +NpaNp +242368 S-ADV-O-V +AdvPp +PrepNp +DetNP +242373 aCLaCL +242375 S-ADV-ADV +PrepNp +242378 that-VP +ADV-V +PrepNp +NPofNP +DetNP +242385 PrepNp +DetNP +ADV-ADV-ADV +V-O +O-V-ADV +DetNP +NPofNP +242393 Conj-CL +S2CL +242396 Conj-CL +that-VP +CLaCL +ADV-ADV-S-V +All-NP +aNpaNp +242405 ADV-V +PrepNp +242408 Conj-CL +ClCl +ADV-V +sub-CL +242413 that-VP +S-ADV-V-ADV-ADV-ADV +PrepNp +PrepNp +NpaNp +DetNP +ofNPNP +242421 NPofNP +DetNP +NPofNP +Np-Appos +PrepNp +Np-Appos +DetNP +NPofNP +NpaNp +242431 sub-CL +CLaCL +ADV-V +PrepNp +242436 ADV-ADV-ADV-ADV-V-S-ADV-ADV +PrepNp +All-NP +2Advp_h2 +PrepNp +DetNP +NPofNP +aPpaPp +242445 PrepNp +242447 PrepNp +242449 Conj-CL +CLaCL +ADV-S-P +DetCL +V2CL +242455 S-P +DetCL +V2CL +242459 Conj-CL +242461 sub-CL +S2CL +DetCL +V-ADV +PrepNp +NPofNP +242468 Conj-CL +O-ADV-V +O-V +242472 Conj-CL +ClCl +V-ADV-ADV +PrepNp +DetNump +O-V-ADV +DetNP +PrepNp +DetCL +CLaCL +V2CL +242484 P-VC +PrepNp +sub-CL +ADV-ADV-P +242489 Conj-CL +S-P-ADV +DetCL +V-ADV +DetNP +PrepNp +242496 Conj-CL +242498 O-V +that-VP +242501 Conj2VP +242503 All-NP +PrepNp +NpaNp +DetNP +ofNPNP +242509 NPofNP +DetNP +sub-CL +S-V-ADV-ADV-ADV +DetNP +NPofNP +PrepNp +Np-Appos +PrepNp +PrepNp +DetNP +AdjpNp +NpPp +NpAdvp +PrepNp +242525 ClCl +242527 DetNP +NPofNP +DetNP +sub-CL +242532 aCLaCL +242534 CLaCL +V2CL +242537 V-O +242539 V2CL +NpPp +PrepNp +that-VP +242544 PrepNp +AdjpNp +ADVaADV +ADV-V-ADV +AdjpNp +DetNP +NPofNP +DetNP +242553 ADV-V-ADV-ADV +PrepNp +PrepNp +DetCL +V2CL +CLaCL +CLaCL +S-VC-ADV-P +NPofNP +242563 P2CL +ofNPNP +242566 S-P +PrepNp +sub-CL +IO-V-S-ADV +Np-Appos +NpPp +PrepNp +notNPbutNP +2Advp_h1 +DetCL +ADV-V +PrepNp +AdvpNp +DetCL +ADV-V +PrepNp +V-O +NP-CL +DetNP +PronNP +CLaCL +O-V-ADV +PrepNp +242590 ADV-V-ADV +PrepNp +242593 Conj-CL +ClCl2 +ClClClCl +sub-CL +S-P +AdjpNp +PrepNp +sub-CL +S2CL +AdjpNp +NPofNP +sub-CL +S2CL +AdjpNp +NPofNP +sub-CL +S2CL +AdjpNp +NpaNp +242614 V-O +ofNPNP +DetNP +ClCl +O-V-ADV-ADV-ADV +DetNP +O-V +DetNP +PronNP +O-V +DetAdj +CLaCL +O-ADV +Conj2Pp +PrepNp +242630 PrepNp +242633 DetNP +V-ADV +notCLbutCL2CL +O-ADV-V +NPofNP +O-ADV +AdvpNp +NPofNP +242643 O-V-ADV +PrepNp +S-ADV-P +PrepNp +Np-Appos +CLaCL +S-ADV-ADV-O2-V-O +ADV-V +PrepNp +NPofNP +DetCL +VC-P-ADV +242656 O-V-ADV-ADV +O-V +NPofNP +P-VC +PrepNp +NPofNP +242663 Conj-CL +ADV-V-O-ADV +242666 sub-CL +S2CL +VC-P-ADV +PrepNp +NpaNp +242672 NPofNP +242674 Conj-CL +ClCl +CLaCL +S-O-V +AdvpNp +DetNP +242681 V-IO-O +Np-Appos +DetNP +NpPp +PrepNp +All-NP +sub-CL +CLaCL +ADV-V-S +PrepNp +DetNP +NPofNP +All-NP +NPofNP +Conj3Np +242699 S-V-O-ADV +All-NP +that-VP +P-S +Np-Appos +PrepNp +NPofNP +Np-Appos +242708 Conj-CL +242710 Np2CL +NPofNP +sub-CL +ADV-V-ADV +sub-CL +notCLbutCL2CL +P-ADV +PrepNp +DetNP +NPofNP +ADV-ADV-P +AdjpAdvp2Advp +PrepNp +DetNP +NPofNP +PrepNp +NpaNp +242728 DetNP +ofNPNP +242731 Conj-CL +S-VC-P +DetCL +V-ADV-O +PrepNp +aNpaNp +242738 DetCL +V2CL +242741 DetCL +V-ADV +PrepNp +DetNP +242747 PrepNp +NpaNp +242750 sub-CL +VC-P-ADV +Np-Appos +AdjpaAdjp +242755 NpAdjp +NPofNP +NPofNP +NP-CL +NpAdjp +AdjpaAdjp +242762 V2CL +242764 ADV-V-ADV-ADV-ADV +PrepNp +sub-CL +S2CL +PrepNp +O-V-ADV-ADV +NPofNP +PrepNp +NpAdvp +PrepNp +NPofNP +notCLbutCL2CL +ADV-V +PrepNp +ADV-V +PrepNp +242781 Conj-CL +ClCl2 +sub-CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +NpaNp +242790 DetNP +NPofNP +CLaCL +V2CL +242795 V-ADV +All-NP +242798 Conj-CL +CLaCL +ADV-S-V +DetNP +AdvpNp +242804 V-ADV +242806 Conj-CL +242808 PrepNp +Np-Appos +O-ADV-V-IO +sub-CL +S-V-ADV +V-O +NpPp +PrepNp +242817 Conj-CL +ClCl +242820 NpAdjp +S-ADV-O-V +NpPp +PrepNp +sub-CL +ClCl +S-O-V +DetAdj +NPofNP +ADV-O +NPofNP +Np-Appos +242833 Conj-CL +242835 DetNP +NPofNP +sub-CL +ClCl2 +sub-CL +ADV-S +ADV-V-ADV +PrepNp +PrepNp +DetNP +242846 Conj-CL +aCLaCL +242849 V-O +O-V-ADV-ADV +sub-CL +PtclCL +V-O +NpPp +PrepNp +242858 PrepNp +that-VP +S-ADV-V +AdvpNp +242863 Conj-CL +242865 O-V-ADV +Np-Appos +Conj3Np +DetNP +NPofNP +Conj3Np +242874 ofNPNP +242876 NPofNP +DetNP +NPofNP +PrepNp +sub-CL +CLaCL +V-O +VerbBe +All-NP +242886 ClCl +V2CL +sub-CL +242890 that-VP +V2CL +242893 Conj-CL +ADV-V-ADV +AdjpDative +242897 Conj-CL +242899 DetNP +NpaNp +242902 notNPbutNP +NpAdjp +AdvpNp +sub-CL +ADV-O-ADV-V +PrepNp +242909 Conj-CL +242911 sub-CL +ClCl +ADV-V +V-O-ADV +S-P-VC +242917 Conj-CL +ClCl +CLaCL +V-O-ADV-ADV +PrepNp +PrepNp +All-NP +242925 O-O2-V +DetNP +sub-CL +242929 PrepNp +DetNP +NPofNP +PrepNp +V-ADV +DetNP +sub-CL +V-O +DetNP +NPofNP +ofNPNP +DetNP +PpNp2Np +PrepNp +242945 Np2CL +NPofNP +DetAdj +PrepNp +242950 S-P +O-V-IO +DetNP +aCLaCL +242955 ADV-ADV-P +242957 ADV-P +242959 ClClCl +V-O +DetNP +V-O +DetNP +AdjpNp +V-O +DetNP +242968 Conj-CL +VC-P-S +DetNP +Np-Appos +DetCL +Conj3CL +ADV-V +NPofNP +242977 V-ADV +PrepNp +Np-Appos +242981 ADV-ADV-V-ADV +PrepNp +sub-CL +S-V-O-ADV +AdvPp +PrepNp +242988 ClCl2 +sub-CL +S-V-O +NpAdjp +V-ADV +PrepNp +S-ADV +242996 ClClClClClClCl +ADV-P +P2CL +PrepNp +NPofNP +P2CL +NPofNP +P2CL +NpPp +PrepNp +ADV-P +PrepNp +ADV-P +PrepNp +V-O +DetNP +ADV-VC-P +PrepNp +Np-Appos +NpPp +PrepNp +243018 Conj-CL +243020 S-VC-ADV-P +PrepNp +DetNP +243024 Conj-CL +PtclCL +PtclCL +PtclCL +ClCl +243030 S-P-VC +PrepNp +NPofNP +DetCL +V2CL +DetNP +NPofNP +NP-CL +Np-Appos +Np-Appos +DetNP +NPofNP +CLaCL +ADV-O-V +PrepNp +DetAdj +243047 V-O2 +sub-CL +CLaCL +O-V +243052 V-ADV-ADV-ADV +PrepNp +V-O +notNPbutNP +Np-Appos +AdjpNp +NpPp +PrepNp +Np-Appos +NpPp +PrepNp +NPofNP +DetNP +PpNp2Np +PrepNp +NpPp +PrepNp +DetNP +DetCL +V-O-ADV +Conj3Np +243074 DetNP +NPofNP +DetNP +NPofNP +243079 NPofNP +NPofNP +V-ADV +DetNP +NPofNP +PtclCL +PtclCL +V-ADV +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +243093 notCLbutCL2CL +that-VP +CLaCL +ADV-V +243098 ADV-V +243100 PtclCL +ADV-V-O +ADV-ADV-V-ADV +PrepNp +PrepNp +Np-Appos +243108 Np2CL +S-V +243111 Conj-CL +ClCl +O2CL +ADV-ADV-V-ADV +aCLaCL +243117 O-V +DetNP +243120 ADV-V +DetNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +AdvpNp +NpPp +NPofNP +DetNP +PrepNp +Np-Appos +243134 Conj-CL +243136 S-P +243138 Conj-CL +ClCl2 +sub-CL +O-ADV-V +O-S-IO-V +AdvpNp +DetNP +243146 Conj-CL +243148 ADV2CL +PrepNp +O-V +DetNP +243154 Np2CL +P-VC +NPofNP +243158 V-O +DetCL +ClCl +ADV-V +sub-CL +V-O2-O +243165 Conj-CL +ClCl +243168 S-V +O-ADV-V-IO +243171 ADV-ADV-ADV-V-O +V2CL +P2CL +DetNP +NPofNP +DetNP +NPofNP +DetNP +S-P +ofNPNP +DetNP +CLaCL +S-P +ofNPNP +DetNP +DetNP +243188 S-P +DetNP +PrepNp +DetNP +NPofNP +P2CL +DetCL +O-V +DetAdj +243198 Conj-CL +243200 ofNPNP +DetNP +PrepNp +ADV-ADV-V-O +PrepNp +NP-CL +Np-Appos +Np-Appos +Np-Appos +S-V-O-O2-ADV +DetNP +NPofNP +DetNP +NPofNP +AdjpDative +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetCL +V-S-O +ADV-V-IO-O +DetAdj +243227 Conj-CL +243229 Np2CL +Np-Appos +NpAdjp +NPofNP +AdjpaAdjp +243235 NPofNP +NpaNp +243238 PrepNp +Np2CL +243241 ClCl +CLaCL +O-V +243245 O-V +O-V-ADV +DetNP +PrepNp +243251 Intj2CL +243253 AdvpNp +Np2CL +AdjpNp +V-ADV +NP-CL +S-ADV-V-ADV-ADV +PrepNp +DetNP +PrepNp +aNpaNp +243265 DetNP +AdjpNp +NP-CL +NPofNP +S-P +ofNPNP +DetNP +PrepNp +NPofNP +243275 V-ADV-ADV +PrepNp +243279 V2CL +243281 S-V-IO +DetNP +NPofNP +All-NP +243286 S-P +DetNP +243289 CLaCL +O-V +243292 ADV-ADV-ADV-S-V-ADV +PrepNp +NpaNp +DetNP +243297 DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +243304 Conj-CL +S-V-O-ADV +Np-Appos +DetNP +Np-Appos +DetNP +DetCL +V-ADV +All-NP +NpaNp +DetNP +NPofNP +243317 DetNP +NPofNP +PrepNp +Np-Appos +243323 Np2CL +DetAdj +243326 Np2CL +NpNpNpNpNpNp +S-VC-P +S-P +S-P +S-P +S-P +S-P +CLaCL +sub-CL +S-P +243338 sub-CL +S-P +O-V +243343 O-V-ADV +EitherOr4Vp +243349 PrepNp +243351 Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +PrepNp +243358 Conj-CL +243360 PrepNp +sub-CL +243363 DetCL +ADV-V +PrepNp +CLaCL +ADV-ADV-V +PrepNp +243370 V2CL +243373 that-VP +ADV-V +PrepNp +sub-CL +S-V-O +ADV-P-VC +P-VC +PrepNp +243383 ADV-V +V-O +ADV-V +243387 ADV-V-ADV +Conj2Pp +PrepNp +243391 PrepNp +ClCl +aCLaCL +243395 V2CL +243397 V2CL +aCLaCL +243400 V2CL +243402 V2CL +243404 O-V-ADV +PrepNp +DetCL +V-O +243409 Conj-CL +ADV-V-ADV +V-ADV +ofNPNP +DetNP +243415 Conj-CL +243417 Np2CL +243419 AdvpNp +that-VP +ClCl2 +sub-CL +V-ADV +PrepNp +243426 PrepNp +NPofNP +DetNP +AdjpNp +PrepNp +NPofNP +NpaNp +243434 sub-CL +ADV-S +NpAdjp +sub-CL +ADV-ADV-ADV-V +AdvPp +PrepNp +aAdvpaAdvp +243444 PrepNp +DetNP +NpAdvp +243448 notCLbutCL2CL +that-VP +V-O +DetNP +V-O +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +NPofNP +243460 Conj-CL +CLaCL +V-O +243464 V2CL +243466 V-ADV +V-ADV-O +PrepNp +Np-Appos +NpPp +PrepNp +NpNpNp +NPofNP +NpAdjp +NpAdvp +DetNP +243478 Conj-CL +S-V-O-ADV +DetNP +NPofNP +All-NP +NPofNP +PrepNp +DetNP +NpPp +NPofNP +PrepNp +NpPp +PrepNp +Np-Appos +243493 Conj-CL +243495 DetNP +NPofNP +NpaNp +243499 DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +243506 V-O-ADV +All-NP +PrepNp +Np-Appos +243511 V-O-S +DetNP +PpNp2Np +PrepNp +243516 CLaCL +V-O-S +All-NP +DetAdj +243521 ADV-S +NpPp +PrepNp +DetNP +ofNPNP +243527 S-P +DetNP +NPofNP +Np-Appos +DetNP +Np-Appos +PrepNp +DetNP +NPofNP +243537 S-IO +NpaNp +Np-Appos +NpPp +NPofNP +Np-Appos +PrepNp +NPofNP +243546 Np-Appos +DetNP +DetNP +NpPp +PpNp2Np +PrepNp +AdjpNp +AdjpaAdjp +243555 PrepNp +243557 IO-S-ADV +NpaNp +243560 PrepNp +Np-Appos +NPofNP +243565 Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +ADV-V +PrepNp +V-O-ADV +NpaNp +DetNP +NpPp +NPofNP +PrepNp +Np-Appos +243582 DetNP +NP-CL +O-V-ADV +PrepNp +All-NP +DetAdj +PrepNp +NP-CL +Np-Appos +DetNP +DetCL +V-ADV-ADV +PrepNp +DetNP +O-V-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +sub-CL +ClCl +ADV-V +AdvPp +PrepNp +All-NP +DetNP +BeVerb +Conj2VP +243617 sub-CL +243619 AdvPp +PrepNp +PrepNp +NP-CL +PronNP +V2CL +Conj2VP +243627 V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +sub-CL +V-ADV +PrepNp +NP-CL +Np-Appos +DetNP +NPofNP +AdjpNp +S-VC-P +Np-Appos +AdjpNp +PpNp2Np +PrepNp +NPofNP +DetNP +DetCL +ADV-V-IO-O +DetNP +ofNPNP +NpPp +PrepNp +243654 ADV-S-ADV-ADV-V-O +PrepNp +AdvpNp +PrepNp +ADV-V +PronNP +243661 PrepNp +Conj2VP +243664 that-VP +V-ADV-ADV-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +All-NP +NpaNp +243674 NpAdjp +V-ADV-ADV-ADV +DetNP +PrepNp +All-NP +ClClCl +CLaCL +ADV-V +PrepNp +All-NP +NpAdjp +243686 V-ADV +DetNP +NPofNP +DetNP +ADV-V-ADV-ADV +PrepNp +All-NP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +All-NP +NpaNp +243702 ADV-V-O +PrepNp +NP-CL +Np-Appos +DetNP +DetCL +V-O-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetAdj +PrepNp +DetNP +CLaCL +S-V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +243724 V-ADV +PrepNp +DetNP +NPofNP +NP-CL +NP-CL +DetNP +NPofNP +DetNP +NPofNP +ADV-V-O +PrepNp +Np-Appos +DetNP +DetNP +NPofNP +DetNP +243742 S-VC-P +Np-Appos +NPofNP +DetNP +NPDetAdj +DetAdj +NPofNP +All-NP +ADV-V-S +PrepNp +Np-Appos +DetNP +NpPp +Conj2Pp +PrepNp +DetNP +243759 PrepNp +DetNP +Np-Appos +NpaNp +DetAdj +243765 DetAdj +2Np +aNpaNp +243770 aNpaNp +243774 Conj3CL +S-ADV-V +DetAdj +Conj2Pp +PrepNp +243780 PrepNp +243782 S-VC-P +PrepNp +243785 S-ADV-V +DetAdj +PrepNp +243789 Conj-CL +243791 S-VC-P +DetNP +NPofNP +Np-Appos +DetNP +DetNP +243798 S-VC-P +Np-Appos +NpPp +PrepNp +DetAdj +VC-S-P +ADV-V +PrepNp +V-O +CLaCL +ADV-S-V +PrepNp +All-NP +DetNP +243813 ClCl +ADV-V-O-ADV-ADV +PrepNp +DetAdj +PrepNp +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +ADV-O +PrepNp +aNpaNp +243828 NpPp +PrepNp +DetNP +243832 NpPp +PrepNp +DetNP +243836 Conj-CL +CLaCL +S-ADV-VC-P-ADV-ADV +Conj2P +V2CL +243842 DetNP +PrepNp +DetNP +NPDetAdj +DetAdj +243849 PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +V-O-O2-ADV +Conj3Adjp +243860 PrepNp +sub-CL +PtclCL +V-ADV-ADV +DetNP +Conj3CL +V2CL +243868 P2CL +243870 ADV-V-ADV +PrepNp +DetNP +NPofNP +NP-CL +Np-Appos +DetNP +NP-CL +O-V +DetCL +V-ADV +PrepNp +All-NP +Np-Appos +NpPp +PrepNp +DetNP +P-VC-S +ofNPNP +Np-Appos +243891 CLaCL +ADV-V-ADV-ADV +PrepNp +DetNP +PrepNp +243897 V-O-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +NP-CL +DetNP +NPofNP +S-VC-P +NP-CL +DetNP +P-VC-S-ADV-ADV +ofNPNP +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-IO-ADV +PrepNp +V-O +Np-Appos +DetNP +NPofNP +DetNP +Np-Appos +DetNP +DetCL +V-ADV +Conj2Pp +PrepNp +DetNP +243936 PrepNp +DetNP +243939 Conj-CL +243941 NP-CL +DetNP +NPofNP +ADV-V-S-O +DetNP +V-O +243948 DetNP +NPofNP +DetNP +NPofNP +NP-Demo +DetNP +PrepNp +DetNP +S-VC-P +S-P +NpPp +PrepNp +DetNP +NPofNP +DetNP +243964 O-S-V-ADV +V-ADV +CLaCL +V-O +All-NP +243970 V-O +All-NP +PrepNp +All-NP +243975 All-NP +PrepNp +ADV-ADV-V-ADV +PrepNp +V-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetCL +V-ADV-ADV +PrepNp +PrepNp +243989 Conj-CL +243991 S-V-O +O-V-ADV +AdjpNp +PrepNp +Conj3Np +243997 NpPp +PrepNp +244000 S-ADV-V-O-ADV +DetNP +NPofNP +PrepNp +sub-CL +V-S-ADV-ADV +DetNP +NPofNP +V-ADV +Conj2Pp +PrepNp +244012 PrepNp +All-NP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +NP-CL +ADV-VC-S-P +PrepNp +All-NP +DetNP +NPofNP +DetNP +NpaNp +244035 sub-CL +S-O-V-ADV +PrepNp +244039 Conj-CL +ClCl2 +sub-CL +ADV-V +AdvpNp +DetNP +Conj-CL +ADV-P-VC-ADV +DetNP +PrepNp +CLaCL +V2CL +244052 V-O +NpaNp +ofNPNP +DetNP +244057 DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +NPofNP +244064 Conj-CL +ClCl2 +sub-CL +V-O-O2 +Np-Appos +DetNP +DetNP +ADV-V-ADV-ADV +PrepNp +CLaCL +V-ADV +Conj2VP +244077 PrepNp +244080 DetNP +sub-CL +V2CL +V-ADV +PrepNp +244086 ClCl +ClCl +V2CL +PtclCL +S-VC-P +DetCL +V-O-ADV-ADV +PrepNp +DetNP +NpaNp +244097 AdjpNp +2PpaPp +PrepNp +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +244108 AdvPp +PrepNp +sub-CL +CLaCL +ADV-V-S-ADV +PrepNp +All-NP +DetNP +NPofNP +DetNP +244119 V-ADV +BeVerb +PrepNp +NP-CL +NP-CL +S-VC-P +DetNP +NPofNP +All-NP +NpaNp +244130 ADV-ADV-V-ADV-ADV-ADV +PrepNp +NpAdjp +2Pp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +V-ADV-ADV +PrepNp +NP-CL +DetNP +ADV-ADV-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-O-ADV +PrepNp +244161 Conj-CL +CLaCL +ADV-V-O-ADV-ADV-ADV +S-P-VC-ADV +NpaNp +DetNP +244168 DetNP +NPofNP +DetNP +NPofNP +PrepNp +V-IO-O +All-NP +DetNP +V-O +NP-CL +DetNP +PpNp2Np +PrepNp +NpAdvp +DetNP +S-VC-P +NPofNP +244186 O-V-ADV-ADV +PrepNp +DetAdj +V-O-IO +DetNP +244192 ADV-V-ADV-ADV +V-O +NpaNp +DetNP +244197 DetNP +PrepNp +V-O-ADV +PrepNp +244202 Conj-CL +ADV-S-O-V-ADV +Conj3Pp +PrepNp +244207 PrepNp +244209 PrepNp +NPofNP +NP-CL +Conj3Np +244215 CLaCL +S-VC-P +NPofNP +DetCL +V2CL +244221 S-P +DetNP +DetNP +244225 S-O-V-ADV +ClClCl +V-ADV +PrepNp +NpaNp +244231 NPofNP +DetNP +O-V +O-V +CLaCL +ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +244243 ADV-V-O +NP-CL +DetNP +ADV-S-ADV-V-ADV +PrepNp +All-NP +DetNP +ADV-V +PrepNp +DetNP +NpaNp +244255 Conj2VP +244257 DetNP +NPofNP +DetNP +244261 ClCl +ClCl2 +sub-CL +V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +ADV-ADV-V +sub-CL +V-ADV +PrepNp +244275 ADV-V +Conj3VP +244279 NpPp +PrepNp +NpAdvp +DetNP +PrepNp +DetNP +NPofNP +NpaNp +244288 DetNP +S-VC-ADV-ADV-P-ADV +PtclCL +V-O-ADV +NPofNP +PrepNp +Conj3Np +244297 NPofNP +PrepNp +NpAdjp +PrepNp +NPofNP +DetNP +244304 Conj-CL +244306 sub-CL +V-ADV +DetNP +O-V +DetNP +ADV-S-V-ADV +DetNP +BeVerb +PrepNp +NPofNP +DetNP +244319 DetNP +ADV-O +NpPp +PrepNp +DetNP +244325 Conj-CL +CLaCL +V2CL +244329 S-V-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +PrepNp +DetNP +244338 sub-CL +V-S +Np-Appos +DetNP +DetNP +NPofNP +AdvpNp +PrepNp +PrepNp +244348 Conj-CL +V-O +Np-Appos +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NP-CL +4NpaNp +NpAdjp +244360 DetNP +NP-CL +S-VC-P +ADV-V-S-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +244370 ADV-S-V-ADV +AdvpNp +V-ADV +PrepNp +244375 Conj-CL +ADV-V-S-O-ADV +AdvpNp +Np-Appos +DetAdj +NpNpNpNpNp +PrepNp +DetNP +NPofNP +244386 PrepNp +CLaCL +V-O-ADV +DetNP +AdjpNp +PrepNp +DetNP +NPofNP +244395 V-O +Np-Appos +DetAdj +DetCL +V-ADV-ADV +PrepNp +PrepNp +NPofNP +DetCL +V-O +sub-CL +CLaCL +P-VC-S +NpNpNpNp +NpaNp +244411 NpaNp +244413 2Np +2Np +244416 CLaCL +P2CL +244419 P-S +PrepNp +244422 Conj-CL +244424 PrepNp +NpAdjp +NPofNP +DetNP +AdjpaAdjp +244430 V2CL +NpNpNpNpNp +NPofNP +CLaCL +V-O +244436 V-O +sub-CL +S-ADV-V-O +PrepNp +244442 sub-CL +S-V-O +AdvpNp +DetNP +AdvpNp +244448 Conj-CL +ADV-O +PrepNp +All-NP +DetNP +NP-CL +S-VC-P +NPofNP +DetNP +244458 Conj-CL +244460 S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +PrepNp +PrepNp +AdjpNp +244471 Conj-CL +P-VC +244474 S-V-ADV-ADV-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +ADV-V-O-ADV +PrepNp +All-NP +Conj2VP +244484 NpNpNp +NpAdjp +ADV-V-ADV-IO +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +244494 Conj-CL +244496 Np2CL +All-NP +NP-CL +PtclCL +O-V-ADV +Conj2Pp +PrepNp +244504 PrepNp +PrepNp +NPofNP +Np-Appos +V-O-ADV +Np-Appos +DetNP +PrepNp +244514 Np2CL +DetNP +DetNP +sub-CL +V-ADV +PrepNp +244522 Np2CL +DetNP +V-O +DetNP +244527 ADV-V-ADV +PrepNp +244530 ClCl +244532 Np2CL +DetNP +DetNP +PrepNp +sub-CL +S-P-VC-ADV +PrepNp +244541 Np2CL +DetNP +DetNP +NPofNP +sub-CL +ADV-V +244549 Np2CL +DetNP +PrepNp +DetNP +PpNp2Np +PrepNp +notCLbutCL2CL +244557 PrepNp +sub-CL +S2CL +ADV-ADV +PrepNp +NPofNP +V-O +DetNP +244566 O-ADV-V-ADV-ADV +PtclCL +O-V +PrepNp +PrepNp +NpaNp +DetNP +244574 AdvpNp +244576 that-VP +ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +244583 O-V +Np-Appos +DetNP +244587 Conj-CL +CLaCL +S-V-O +DetCL +V2CL +O-V +244594 P-VC-S +244597 Np2CL +DetNP +NpaNp +DetAdj +244602 DetNP +DetNP +244605 that-VP +S-V-O-ADV +AdvpNp +PrepNp +244610 O-V-ADV-ADV +DetNP +V-ADV-ADV +PrepNp +PrepNp +ClCl +244617 AdvPp +PrepNp +that-VP +S-V-ADV-O-ADV +DetNP +NPofNP +DetNP +V-O +NP-CL +DetNP +NPofNP +DetNP +ADV-ADV-V +PrepNp +sub-CL +244633 sub-CL +V-S +S-V +244637 ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +O-V +DetNP +244644 S-ADV-P-ADV-ADV +DetNP +NPofNP +PrepNp +ADV-V +V-O +ADV-V-S +S-IO-V +NpAdjp +244654 O-V-IO-S +DetNP +PpNp2Np +PrepNp +NP-CL +Np-Appos +DetNP +NpPp +Conj3Np +AdjpNp +244665 AdjpNp +244667 PrepNp +O-V-ADV-ADV-ADV-ADV +PrepNp +PrepNp +PronNP +sub-CL +CLaCL +V-O +NpPp +PrepNp +244678 V-O +DetNP +NPofNP +PrepNp +NP-CL +Np-Appos +DetNP +AdjpNp +AdjpaAdjp +244688 S-VC-P +PrepNp +244691 IO-V-O +All-NP +DetNP +244695 V-O-S +Np-Appos +Conj3Np +Np-Appos +DetNP +NPofNP +244702 NP-CL +Np-Appos +DetNP +NPofNP +244707 ADV-V-O +PrepNp +sub-CL +V-ADV +PrepNp +V-O +244714 Np-Appos +DetCL +VC-P +DetCL +VC-P +PrepNp +244722 AdjpNp +PrepNp +DetNP +NPofNP +DetNP +S-VC-ADV-P +244729 V-O-S-ADV +Np-Appos +Np-Appos +NpPp +PrepNp +NPofNP +Np-Appos +244737 PrepNp +PrepNp +DetNP +sub-CL +CLaCL +V-ADV +244744 V-ADV +PrepNp +All-NP +NPofNP +DetNP +244750 Conj-CL +244752 that-VP +V-O-ADV +AdjpNp +PrepNp +Conj3Np +244758 NpPp +PrepNp +244761 NpPp +PrepNp +244764 V-O-S +NpaNp +Np-Appos +DetNP +NPDetAdj +DetAdj +244772 V-O +Conj3Np +DetNP +PpNp2Np +PrepNp +244779 DetNP +PpNp2Np +PrepNp +NPofNP +244784 Conj-CL +ClCl2 +sub-CL +V-ADV-S +PrepNp +DetNP +ClCl +V2CL +CLaCL +that-VP +ADV-V +AdvPp +PrepNp +DetNP +ofNPNP +244800 that-VP +O-S-V +NpPp +PrepNp +AdvpNp +244806 Conj-CL +244808 ClCl +V-O +DetNP +NP-CL +O-V-ADV +PrepNp +sub-CL +O-V +244817 S-ADV +DetNP +DetNP +AdjpNp +NPofNP +244823 V-O +ofNPNP +DetNP +244827 S-P +DetNP +PrepNp +244831 S-IO +Conj3Np +244835 DetNP +NpPp +NPofNP +PrepNp +NpaNp +Np-Appos +244842 Np-Appos +Np-Appos +244845 IO-S +NpaNp +244849 ClCl +244851 DetNP +PrepNp +All-NP +O-V-ADV +PrepNp +DetNP +NPofNP +ADV-V-O-ADV +ofNPNP +Conj3Np +DetNP +NPofNP +DetNP +244865 DetNP +NPofNP +DetNP +244869 DetNP +NPofNP +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +PrepNp +DetNP +NPofNP +NpaNp +244882 V-O +DetNP +NPofNP +Np2CL +NpAdjp +V-ADV +PrepNp +DetNP +sub-CL +244892 DetNP +NPofNP +PrepNp +notPPbutPP +PpAdvp +PrepNp +AdvPp +Conj2Pp +PrepNp +244902 PrepNp +NpaNp +NpAdjp +244906 NpAdjp +sub-CL +V-O +P-VC-ADV-ADV +PrepNp +PrepNp +244913 Conj-CL +S-VC-P-ADV-ADV +NPofNP +NpaNp +244918 DetNP +V-O-ADV-ADV +DetNP +PrepNp +NpAdjp +PrepNp +NPofNP +NpAdjp +sub-CL +VC-S-P-ADV +All-NP +NpPp +DetCL +V2CL +Conj2Pp +PrepNp +DetNP +244936 PrepNp +DetNP +244939 Conj-CL +CLaCL +ADV-V-S-ADV-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NpaNp +DetNP +244951 ADV-S-V-ADV +PrepNp +All-NP +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +DetNP +sub-CL +ADV-O-V-S-ADV +V-O +244964 Conj-CL +S-ADV-V-O +PrepNp +CLaCL +O-V-ADV +AdjpNp +PrepNp +244972 ADV-V-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +CLaCL +V-O +NpAdjp +AdjpaAdjp +V2CL +244984 V-ADV-O +PrepNp +DetNP +Np-Appos +DetNP +NP-CL +NPofNP +O-V-ADV +PrepNp +DetAdj +Np-Appos +DetCL +V-O-ADV +PrepNp +Np-Appos +DetNP +DetCL +V2CL +245003 Conj-CL +245005 Np2CL +Np-Appos +DetNP +NPofNP +NpPp +PrepNp +that-VP +notCLbutCL2CL +P-VC +ADV-V-ADV-ADV +245016 Conj2VP +245018 PrepNp +sub-CL +V2CL +PrepNp +DetNP +NPofNP +V-ADV-O-ADV +PrepNp +DetNP +NPofNP +DetNP +PrepNp +AdjpNp +245032 Conj-CL +CLaCL +S-ADV-P +DetNP +NPofNP +Conj3Pp +PrepNp +245040 PrepNp +245042 PrepNp +245044 ClCl2 +sub-CL +V-ADV-ADV +PrepNp +DetNP +V-O +DetNP +ADV-V-ADV +sub-CL +V-O +notNPbutNP +Np-Appos +DetCL +V-O +DetNP +NPofNP +245061 Conj-CL +notCLbutCL2CL +Conj3CL +245065 PrepNp +NPofNP +sub-CL +V2CL +245070 ClCl +P2CL +PrepNp +NPofNP +S-P +245076 V-ADV-O-ADV-ADV +PrepNp +aPpaPp +245080 PrepNp +245082 PrepNp +245084 P-VC +PrepNp +sub-CL +S2CL +ofNPNP +VC-P-ADV +PrepNp +NPofNP +245093 ClCl +ClCl2 +sub-CL +sub-CL +S-V-O +DetNP +ofNPNP +ADV-V-O +ADV-V-O +V-IO-O +notNPbutNP +AdvpNp +DetNP +NPofNP +DetNP +AdvpNp +DetNP +ofNPNP +sub-CL +P-ADV-VC +245114 Conj-CL +245116 Np2CL +NpaNp +DetNP +NPofNP +245121 DetNP +245123 ADV-V-ADV-O +ADV-V-ADV +NpaNp +245127 PrepNp +DetCL +ADV-V-O +NPofNP +PrepNp +DetNP +NPofNP +DetNP +245136 ClCl +245138 NpaNp +245140 DetNP +P-ADV-VC +2Advp_h1 +Conj3Advp +245146 Np-Appos +DetCL +V2CL +sub-CL +245151 sub-CL +O-ADV-ADV +NPofNP +NpAdjp +sub-CL +S-O +NPofNP +V-O-ADV +Conj3VP +245162 PrepNp +DetCL +V-S-ADV-ADV +Np-Appos +DetNP +DetCL +V-O-ADV +PrepNp +DetNP +ofNPNP +NpaNp +245175 Conj-CL +245177 ADV-S-V-O-ADV +PrepNp +AdvpNp +DetNP +ADV-V-O +V-O +NPofNP +NPofNP +NpPp +PrepNp +DetNP +notNPbutNP +NPofNP +NP-CL +CL-NP +sub-CL +P-VC +NPofNP +S-ADV-V-ADV +PrepNp +Np-Appos +DetCL +V2CL +245201 Conj-CL +245203 Np2CL +S-VC-P +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +DetCL +VC-P-ADV +PrepNp +DetNP +PrepNp +Np-Appos +sub-CL +ClCl +O-V-S-ADV +DetNP +AdvpNp +PrepNp +DetNP +AdjpNp +sub-CL +S-ADV +AdvpNp +PrepNp +Np-Appos +DetNP +DetCL +Conj4CL +V-O +aNpaNp +245235 Np-Appos +DetNP +245238 DetNP +245240 O-V +245242 O-ADV-V +245244 ClCl +ADV-P +All-NP +V-O-ADV +245249 DetNP +sub-CL +V2CL +PrepNp +DetCL +V-O-ADV +ofNPNP +DetNP +245258 Conj-CL +V-ADV-S-ADV +PrepNp +DetNP +PrepNp +245264 Conj-CL +245266 Np2CL +V-ADV-ADV-ADV +PrepNp +PrepNp +NPofNP +AdvAdv +AdvpNp +O-V +DetNP +NPofNP +PrepNp +AdjpNp +245279 Conj-CL +245281 V-ADV +PrepNp +PtclCL +CLaCL +S-ADV +Np-Appos +aAdvpaAdvp +245291 V-O-S +DetNP +245294 Conj-CL +CLaCL +S-P +ofNPNP +Conj3Np +245301 NPofNP +245303 PtclCL +S-P-ADV +AdvpNp +PrepNp +Np-Appos +DetNP +NPofNP +PrepNp +DetNP +ofNPNP +245314 Conj-CL +S-VC-P +NpaNp +DetNP +NPofNP +245320 DetNP +245322 Conj-CL +CLaCL +ADV-V-O +ADV-V +V-ADV-ADV +PrepNp +245329 V-O-ADV +Np-Appos +NpaNp +DetNP +NPofNP +245335 NpPp +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +2Np +DetCL +V-O-ADV +Conj2VP +245348 PrepNp +DetNP +NPofNP +DetCL +S-V-ADV +PrepNp +NP-Demo +DetNP +245357 Conj-CL +245359 that-VP +ADV-V +PrepNp +245363 Conj-CL +ClCl2 +AdvpCL +sub-CL +P-VC +PrepNp +ClCl +245371 that-VP +V-O +V2CL +sub-CL +AdvpCL +CLaCL +V2CL +245379 V2CL +245382 PrepNp +ADV-V +PrepNp +DetCL +V-O +DetNP +NPofNP +PtclCL +PtclCL +CLaCL +V-O-S +DetCL +V2CL +245396 ADV-V-S +PrepNp +DetNP +NPofNP +245401 Conj-CL +ClCl +ClCl2 +CLaCL +ADV-V-S-ADV-ADV +PrepNp +PrepNp +245409 V-IO-O +Conj3Np +DetNP +245413 DetNP +NPofNP +245416 that-VP +V-O-ADV-ADV +NpAdjp +NPofNP +245421 O-V +sub-CL +S-O +AdvpNp +245426 Np2CL +PrepNp +PrepNp +PrepNp +All-NP +DetNP +NPofNP +NpaNp +245435 PrepNp +DetNP +ofNPNP +sub-CL +245440 sub-CL +S-V-ADV +PrepNp +245444 Conj-CL +V-O-ADV +O-IO-V-ADV-ADV +AdjpNp +DetNP +PrepNp +PrepNp +All-NP +DetNP +NP-CL +ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +ADV-ADV-V-ADV +NpaNp +245462 PrepNp +DetCL +CLaCL +V-O +ofNPNP +DetNP +245469 V-O +DetNP +NPofNP +DetNP +NPofNP +245475 Conj-CL +S-V-O-ADV +NpaNp +PronNP +DetNP +NPofNP +NpaNp +245484 Np-Appos +DetNP +NPofNP +DetNP +NPofNP +PrepNp +245491 Conj-CL +O-S-V-ADV-ADV-ADV +DetNP +Conj2VP +245496 DetNP +NpPp +Conj2Pp +PrepNp +245501 PrepNp +sub-CL +S-ADV +AdvpNp +PrepNp +PrepNp +DetCL +V-O-O2-ADV-ADV-ADV +ofNPNP +DetNP +PrepNp +PrepNp +DetNP +NPofNP +NpaNp +245517 PrepNp +DetNP +NpPp +NPofNP +Np-Appos +DetNP +NPofNP +PrepNp +All-NP +DetNP +NPofNP +245529 Conj-CL +245531 Np2CL +Conj2VP +245534 PrepNp +Np-Appos +that-VP +245538 sub-CL +245540 PrepNp +DetCL +ADV-V-S +CLaCL +S-V +245546 V-O +sub-CL +ADV-V +V-ADV +245551 Conj-CL +V-O +O-V-IO-ADV +AdjpNp +PrepNp +Np-Appos +DetNP +245559 Conj-CL +ClCl +P-VC-S +NPofNP +DetNP +P2CL +NP-CL +DetNP +NPofNP +ClCl +ClCl +V-S-ADV +PrepNp +DetNP +V-S-O-ADV +NPofNP +ClCl +O-V-ADV +DetNP +ofNPNP +PrepNp +NpaNp +245582 ClCl +ADV-P +PrepNp +NPofNP +sub-CL +S2CL +AdvpNp +Np-Appos +DetNP +DetCL +ADV-V-O +DetNP +DetCL +ADV-V-ADV-O +Conj2VP +245598 PrepNp +DetNP +DetNP +NPofNP +sub-CL +ClCl +P-S-ADV +PrepNp +All-NP +sub-CL +CLaCL +ADV-V-IO +245611 V2CL +245613 Conj-CL +notCLbutCL2CL +V-O-S-ADV +DetNP +PrepNp +ADV2CL +PrepNp +245621 Conj-CL +S-V-O +DetCL +V2CL +notNPbutNP +Np-Appos +DetNP +DetCL +ADV-V-O-ADV +DetNP +NPDetAdj +NPofNP +DetAdj +PrepNp +245636 Conj-CL +245638 PrepNp +DetNP +V-IO +sub-CL +S-P-VC-ADV +PronNP +PrepNp +DetCL +V-O +245648 Conj-CL +ADV-V-O-ADV +PrepNp +All-NP +DetNP +NpPp +PrepNp +All-NP +DetNP +245658 Conj-CL +245660 Np2CL +245662 Conj4CL +S-V-ADV +245665 V-O +V2CL +245668 V-O +DetAdj +245671 V-ADV +DetNP +NPofNP +sub-CL +IO-V +sub-CL +CLaCL +V-ADV-ADV +PrepNp +DetNP +245682 O-V +ofNPNP +245685 Conj-CL +245687 Np2CL +S-V-ADV +PrepNp +DetCL +V2CL +sub-CL +245694 sub-CL +S2CL +AdvpNp +Np-Appos +DetAdj +DetCL +ADV-V-O +245702 Conj-CL +ClCl2 +sub-CL +245706 that-VP +S-V +Conj2VP +245710 ADV-ADV-S-O-V-ADV +DetNP +DetCL +V-ADV +PrepNp +DetNP +PrepNp +245718 Conj-CL +ClCl +245721 PrepNp +NPofNP +that-VP +S-ADV-V-O +Np-Appos +Np-Appos +DetCL +V2CL +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +2Advp_h1 +DetCL +V2CL +sub-CL +CLaCL +S-ADV-V-ADV +PronNP +DetNP +2PpaPp +PrepNp +PrepNp +NPofNP +245748 PrepNp +NPofNP +PrepNp +245752 ClCl +S-V-ADV +DetNP +NpPp +PrepNp +ADV-S-ADV-ADV-V-ADV-ADV +Np-Appos +Np-Appos +DetCL +V2CL +DetCL +V2CL +PrepNp +PrepNp +PrepNp +NpPp +NPofNP +DetNP +PrepNp +245772 Conj-CL +ADV-ADV-P-VC +PrepNp +245776 Conj-CL +V-O-ADV +PrepNp +NP-Demo +DetNP +245782 Conj-CL +245784 Np2CL +PrepNp +NpaNp +DetNP +245789 DetNP +IO-V +sub-CL +245793 that-VP +245795 sub-CL +S-ADV +PrepNp +NPofNP +245800 ClCl2 +sub-CL +V-O +NpaNp +245805 CLaCL +245807 AdjpNp +sub-CL +S-ADV +DetNP +DetCL +ADV-V +PrepNp +245815 ADV-V +2Advp_h1 +245818 Conj-CL +245820 Np2CL +245822 PrepNp +sub-CL +245825 DetNP +sub-CL +S2CL +sub-CL +S-VC-P +All-NP +NpaNp +NPofNP +245834 NPofNP +245836 ADV-VC-P +NpaNp +245840 Conj-CL +Conj-CL +notCLbutCL2CL +ClCl +V2CL +sub-CL +S2CL +DetAdj +CLaCL +V2CL +245851 V2CL +245853 Conj-CL +CLaCL +S-ADV-V +DetCL +V2CL +245859 S-ADV-V +DetCL +V2CL +245863 Conj-CL +245865 P-VC +V-O +NpaNp +NPofNP +NpaNp +245872 NPofNP +NPofNP +sub-CL +245876 V-O-S-ADV +DetNP +PrepNp +ADV-ADV +PrepNp +NPofNP +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +Np-Appos +DetCL +V-ADV +PrepNp +sub-CL +ClCl2 +aCLaCL +245895 V2CL +245897 V2CL +ADV-ADV-V +PrepNp +245901 Conj-CL +245903 V-O +245905 V-ADV-O +DetAdj +sub-CL +ADV-V +245910 Conj-CL +245912 Np2CL +CLaCL +S-V-O +DetCL +Conj3CL +V-ADV +PrepNp +245920 V-O-ADV +PrepNp +245923 V-O +245925 V-O-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +245931 V-ADV +PrepNp +245934 Conj-CL +245936 Np2CL +ClClClCl +V-O +DetAdj +V-O +DetAdj +V-O +DetAdj +V-ADV +PrepNp +245948 notCLbutCL2CL +S-O-ADV-IO-V +PrepNp +ADV-O-V-ADV +DetAdj +Conj2Pp +PrepNp +245956 PrepNp +245958 ClClCl +ADV-V +ADV-V +ADV-V +PrepNp +245964 Conj-CL +S-P-ADV-ADV +NPofNP +PrepNp +Np-Appos +PrepNp +245971 CLaCL +ClCl +O-ADV-V +DetNP +O-ADV-V +245977 ClClCl +O-V +O-V +DetAdj +ADV-V +PrepNp +All-NP +NpAdjp +245986 Conj-CL +CLaCL +S-V-O-ADV +PronNP +DetNP +NPofNP +DetNP +245994 S-ADV-ADV-V +AdjpNp +ofNPNP +Conj3Np +DetNP +246000 DetNP +246002 DetNP +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +246011 P-S +NP-CL +DetCL +V-O +S-ADV-V +246018 Np2CL +PrepNp +246021 V-O-ADV +NP-all +DetNP +PrepNp +NpAdjp +246027 V-O-ADV-ADV +DetNP +V-S-IO +DetNP +All-NP +DetNP +246034 S-P +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +PrepNp +246043 S-IO +Conj3Np +246047 DetNP +NpPp +NPofNP +PrepNp +NpaNp +Np-Appos +NPofNP +246055 Np-Appos +Np-Appos +246058 IO-S-ADV +NpaNp +246061 PrepNp +NpaNp +Np-Appos +246065 Np-Appos +Np-Appos +246069 Np2CL +246071 V-O-ADV-ADV +DetNP +PrepNp +sub-CL +P-VC +sub-CL +ClCl +CLaCL +V-S +DetNP +NPofNP +246083 V-S +DetNP +NpPp +NPofNP +NPofNP +NpAdjp +All-NP +PrepNp +sub-CL +S-ADV-V-ADV-ADV +PronNP +PrepNp +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NpaNp +DetNP +NPofNP +246104 NpPp +PrepNp +NP-CL +All-NP +NpaNp +DetNP +NPofNP +246112 DetNP +ADV-V +246116 NPofNP +DetNP +AdjpNp +NPofNP +DetNP +PrepNp +DetCL +V-S-ADV +DetNP +NP-CL +NPofNP +DetNP +ADV-ADV-V +PrepNp +sub-CL +ClCl +246133 PrepNp +CLaCL +V-IO-O +DetCL +V-O +246139 IO-O-ADV-ADV-ADV +Np-Appos +DetCL +V2CL +PrepNp +PrepNp +DetNP +NpPp +NpPp +NpPp +NPofNP +Np-Appos +DetNP +PrepNp +PrepNp +NPofNP +NPofNP +PrepNp +NPofNP +V-O-IO +NP-CL +NpaNp +DetCL +ADV-V-O +246164 DetCL +ADV-V-O +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +S-V-O-ADV +Np-Appos +NpAdjp +Conj2Pp +PrepNp +NPofNP +DetNP +246179 PrepNp +DetNP +NPofNP +DetNP +NPofNP +sub-CL +V-ADV-ADV +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +246192 V-ADV +PrepNp +All-NP +DetCL +V2CL +PrepNp +NP-Demo +DetNP +sub-CL +V-S-ADV +DetNP +NPofNP +PrepNp +246208 ADV-ADV-V-ADV-ADV +PrepNp +PrepNp +CLaCL +O-V-ADV-S +DetNP +DetNP +NPofNP +246217 V-O-ADV +All-NP +NpaNp +NPofNP +246222 NPofNP +PrepNp +CLaCL +V-S-ADV +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +PrepNp +246233 S-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NpaNp +NPofNP +246242 Np-Appos +Np-Appos +246245 Conj-CL +246247 Np2CL +PrepNp +NpaNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +246257 NpPp +ofNPNP +PrepNp +PrepNp +DetCL +246263 Conj2VP +ADV-ADV-V-S-ADV +PrepNp +DetNP +246268 aPpaPpaPp +246270 PrepNp +246272 PrepNp +246274 PrepNp +NpPp +AdvPp +PrepNp +sub-CL +that-VP +V-S +DetNP +NPofNP +DetNP +246286 PrepNp +AdjpNp +sub-CL +sub-CL +AdvpCL +CLaCL +V-S-ADV +DetNP +246295 V-S-ADV +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +DetCL +V-ADV +Conj2VP +246308 PrepNp +All-NP +V-O +NpaNp +246313 sub-CL +S-ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +246320 that-VP +VC-P +246324 ADV-V +ADV-O-V-IO +ADV-VC-P +PrepNp +246329 Conj-CL +ADV-O-V-ADV +DetCL +V2CL +PrepNp +DetCL +V-S-ADV +PrepNp +DetNP +ofNPNP +246340 Conj-CL +246342 DetNP +NPofNP +DetNP +ClCl +ADV-S-ADV +DetCL +V2CL +sub-CL +ADV-V +PrepNp +246353 Conj-CL +ADV-V-S +NP-CL +NP-CL +DetAdj +CLaCL +O-S-V-ADV +Np-Appos +DetNP +DetNP +NPofNP +DetNP +NPofNP +246367 V-ADV +DetNP +NPofNP +DetNP +NPofNP +S-VC-P-ADV-ADV-ADV +ofNPNP +DetNP +PrepNp +NPofNP +DetNP +Conj2Pp +PrepNp +All-NP +Conj3Np +246384 NPofNP +246386 PrepNp +All-NP +NPofNP +DetCL +V2CL +PrepNp +ADV-O-ADV-V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetCL +V-S +246400 Conj-CL +246402 PrepNp +DetNP +NPofNP +PrepNp +DetCL +V-S-O +DetNP +sub-CL +V-S +All-NP +DetCL +notCLbutCL2CL +V-O +DetNP +V-ADV +DetNP +246419 Conj-CL +ClCl +246422 V-O-ADV-ADV +DetNP +PrepNp +Np2CL +NpAdjp +V-ADV +PrepNp +sub-CL +246431 DetNP +PrepNp +PrepNp +PrepNp +NpaNp +NPofNP +246438 NPofNP +ADV-ADV-V-O-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +PrepNp +NPofNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +246452 Conj-CL +Conj-CL +246455 Np2CL +V2CL +246458 V-O +DetNP +NP-CL +O-V-ADV +aPpaPp +246464 PrepNp +246466 PrepNp +NPofNP +246469 Conj-CL +CLaCL +S-V-O +NpaNp +PronNP +Np-Appos +DetNP +NPofNP +Np-Appos +246479 Np-Appos +Np-Appos +DetNP +DetNP +NPofNP +DetCL +CLaCL +V-O +246488 V-O-ADV +NpaNp +NpAdjp +246492 NpAdjp +PrepNp +ofNPNP +DetNP +246497 V-ADV +PrepNp +All-NP +NpAdjp +NpaNp +246505 Np2CL +DetAdj +PrepNp +CLaCL +that-VP +ClCl +CLaCL +S-V +DetNP +NPofNP +DetNP +246517 V2CL +sub-CL +ADV2CL +AdvPp +PrepNp +246523 that-VP +V-ADV +PrepNp +DetNP +AdjpNp +AdjpaAdjp +246531 Conj-CL +ADV-P-S +DetNP +246535 Conj-CL +P-VC-S +NP-CL +DetNP +CLaCL +S-V-O +246542 V-ADV +PrepNp +DetAdj +246546 Conj-CL +246548 PrepNp +PrepNp +that-VP +O-V +O-V +EitherOrVp +246557 Conj-CL +S-V-O-ADV +DetNP +ofNPNP +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +246568 PrepNp +DetNP +NPofNP +DetNP +246573 Conj-CL +246575 Np2CL +PrepNp +NPofNP +Np-Appos +DetNP +Np-Appos +V-S-ADV +PrepNp +All-NP +NpAdjp +CLaCL +ADV-V +246588 ADV-ADV +PrepNp +DetNP +NP-CL +O-V-ADV +PrepNp +246595 Conj-CL +ClCl +246598 ADV-V-S +V-O +sub-CL +notCLbutCL2CL +CLaCL +V-ADV +PrepNp +246606 ADV-O-V-ADV +PrepNp +ADV-ADV-V-ADV +PrepNp +NpaNp +246612 NpaNp +246614 PrepNp +DetCL +ADV-V-O +NPofNP +246619 notCLbutCL2CL +that-VP +ADV-V-O +that-VP +O-O2-V-IO-ADV +PrepNp +DetCL +V-O +246628 Conj-CL +ClCl2 +AdvpCL +sub-CL +VC-P +PrepNp +246635 that-VP +246637 sub-CL +S-ADV-V-O +V2CL +246641 Conj-CL +V-O +S-V-ADV-ADV-ADV +PrepNp +notCLbutCL2CL +V2CL +V2CL +246649 Conj-CL +246651 DetNP +Conj2VP +246654 PrepNp +Np-Appos +Np-Appos +that-VP +ADV-O-V +ADV-V +PrepNp +DetNP +ofNPNP +246664 Conj-CL +246666 Np2CL +V2CL +246669 Conj-CL +ClCl +ClCl2 +sub-CL +S-ADV-V-O +DetNP +NpPp +NPofNP +PrepNp +DetNP +O-V-ADV +ADV-V-ADV +sub-CL +V2CL +246684 Conj-CL +notCLbutCL2CL +ClCl2 +sub-CL +O2CL +V2CL +246691 sub-CL +O2CL +246694 Conj-CL +S-V-IO-O-ADV-ADV +PronNP +DetNP +NPofNP +DetNP +DetNP +PrepNp +PrepNp +All-NP +246705 S-P +DetNP +PrepNp +All-NP +246711 DetNP +DetNP +AdjpNp +NPofNP +S-VC-P-ADV +PrepNp +All-NP +246719 ADV-V +246721 S-P +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +PrepNp +All-NP +246731 S-IO +Np-Appos +NpPp +NPofNP +Np-Appos +PrepNp +NPofNP +NpaNp +Np-Appos +NPofNP +246742 Np-Appos +Np-Appos +DetNP +NPofNP +Np-Appos +NpPp +AdjpNp +PrepNp +246751 S-ADV +NpNpNp +PrepNp +NpaNp +Np-Appos +246757 Np-Appos +Np-Appos +DetNP +NPofNP +246762 ClCl +sub-CL +V-O-ADV +S-V-ADV +PrepNp +V-ADV +PrepNp +sub-CL +V-IO-O +CLaCL +ADV-V +246774 V-ADV +NP-CL +NpaNp +246778 NpAdjp +CLaCL +S-O-V-ADV +246782 O2CL +Np-Appos +NPofNP +NpPp +PrepNp +246788 Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +NpPp +PrepNp +NP-CL +Conj3Np +AdjpNp +246799 NpAdjp +246801 NpAdjp +ADV-S-V-ADV-ADV +ADV-V +PrepNp +246806 VC-P +ADV-V-O +aNpaNp +246810 O-V +246812 ADV-V +PrepNp +246815 Conj-CL +246817 that-VP +246819 DetNP +sub-CL +S-O-ADV-V-ADV +246823 V-O +notCLbutCL2CL +ADV-S-V +CLaCL +ADV2CL +NpNpNpNpNpNpNpNpNpNp +NpaNp +246831 NpaNp +246833 NpaNp +246835 NpaNp +246838 sub-CL +S-V-O +NpAdjp +DetNP +AdjpNp +V2CL +NpPp +PrepNp +NP-CL +DetNP +NPofNP +DetNP +NPofNP +DetNP +AdjpNp +O-V-S +246856 Np-Appos +DetCL +V-O +Np-Appos +Np-Appos +DetNP +NPofNP +sub-CL +O2-O-V-ADV-ADV +V-ADV +PrepNp +ADV-VC-P +DetAdj +Conj3Np +246873 Conj-CL +CLaCL +ClCl +V2CL +sub-CL +ADV-V-ADV +V2CL +PrepNp +246882 V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +Np-Appos +NpaNp +246891 NpPp +PrepNp +Np-Appos +246896 DetNP +AdjpaAdjp +246899 AdvpAdjp +All-NP +that-VP +246903 Np-Appos +PrepNp +DetNP +O-V +P-VC-S +ofNPNP +246910 Conj-CL +246912 ADV-V +PrepNp +ADV-V-S-O-ADV +PrepNp +Np-Appos +Np-Appos +DetNP +AdjpNp +PrepNp +NPofNP +DetCL +V-O +V-ADV-ADV +PrepNp +PrepNp +NpAdjp +246929 Conj-CL +246931 Np-Appos +DetNP +NPofNP +DetNP +AdjpNp +3Adjp +NpaNp +246939 PrepNp +DetNP +NPofNP +DetNP +Intj2CL +246946 Np2CL +Np-Appos +Demo-NP +DetNP +PrepNp +DetNP +AdjpNp +V-ADV +PrepNp +sub-CL +V-ADV-O-ADV +PrepNp +DetNP +AdjpNp +V-O +NpaNp +246963 NP-CL +AdjpNp +246966 ADV-S-ADV-V +O-V +PrepNp +DetNP +NP-CL +NpaNp +246974 O-V-IO +DetNP +V-O +ADV-V +246979 Conj-CL +V-O +246982 NPofNP +NpNpNpNp +2Pp +PrepNp +All-NP +PrepNp +NpaNp +246990 All-NP +DetCL +P-VC +PrepNp +sub-CL +O-V-ADV +AdjpNp +AdjpaAdjp +246999 PrepNp +All-NP +NpaNp +247004 S-P-ADV +AdjpaAdjp +247007 PrepNp +NP-CL +DetNP +Np-Appos +NPofNP +S-V-O +S-V +All-NP +CLaCL +V2CL +247018 ADV-V +PrepNp +NPofNP +247022 Conj-CL +ClCl +P-S +P-S +AdvpNp +Np-Appos +NPofNP +NpaNp +247031 Np-Appos +Np-Appos +Np-Appos +DetCL +V-O-O2-ADV +PrepNp +247039 DetNP +NpAdjp +247042 ADV-VC-S-P +PrepNp +Np-Appos +NpaNp +247047 NpPp +NPofNP +PrepNp +NpaNp +247052 ADV-V +247054 Conj-CL +V-O +247057 DetNP +PrepNp +All-NP +V-O +AdjpNp +PrepNp +NpaNp +247065 AdvpCL +S-ADV-ADV-V-O-ADV +PrepNp +NpAdjp +PrepNp +NpaNp +247072 notPPbutPP +PrepNp +Conj4Np +247078 NpAdjp +PrepNp +CL-NP +S-V-ADV +NpAdjp +V-O +NpAdjp +247086 S-ADV-V-ADV +PrepNp +PrepNp +All-NP +247091 Conj-CL +V-O +notCLbutCL2CL +CLaCL +V-S +247097 V-O +VC-P +PrepNp +247101 Conj-CL +CLaCL +ClCl +S-ADV-V +ADV-S +247107 CLaCL +S-ADV-V +247110 S-ADV-ADV-V +DetNP +V2CL +PrepNp +247115 Conj-CL +ClCl +V-ADV +PrepNp +DetNP +sub-CL +V-ADV-ADV +PrepNp +Conj3Np +247126 PrepNp +247128 P-S +DetNP +247132 sub-CL +S-O-V +AdjpNp +247136 Conj-CL +V-S +S-VC-P-ADV +DetNP +Np-Appos +NpNpNpNpNpNpNpNp +ofNPNP +AdjpNp +NpNpNp +AdvpNp +notNPbutNP +ClCl +O-ADV-V +DetNP +AdjpNp +O-V-ADV-ADV +PrepNp +PrepNp +All-NP +247156 Conj-CL +ClCl2 +sub-CL +S-O-ADV-V +O-V +DetNP +AdjpNp +ADV-O-V +NPofNP +247167 sub-CL +ADV-ADV-ADV-V +V2CL +PrepNp +NPofNP +DetAdj +247174 Conj-CL +247176 O-V-ADV +NpAdjp +PrepNp +DetNP +sub-CL +ADV-V-ADV +PrepNp +NpaNp +247185 NPofNP +DetAdj +247188 ADV-S +S-P +AdjpAdjpAdjpAdjpAdjp +AdvpAdjp +ADV-ADV-V +NpAdjp +AdvpAdjp +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +AdjpNp +247202 Conj-CL +ClCl +S-V-ADV +AdvpNp +ADV-V-ADV +P-VC +247209 ADV-S +S-P +AdjpAdjpAdjpAdjp +AdvpAdjp +AdjpPp +PrepNp +247216 S-VC-P-ADV +ofNPNP +AdjpNp +ADV-V-O +NpaNp +247222 DetNP +AdjpNp +247225 Conj-CL +CLaCL +S-O-IO-V +DetCL +ADV-V +NpAdjp +247232 O-ADV +AdjpNp +PrepNp +Np-Appos +NpPp +PrepNp +Np-Appos +247240 O-IO-V-ADV +V-O +V-ADV-ADV +PrepNp +247245 Conj-CL +ClCl2 +sub-CL +V2CL +sub-CL +V-O +ADV-V-S +V-ADV +PrepNp +NP-CL +NPofNP +S-VC-P +Np-Appos +NPofNP +NpAdjp +V2CL +NPofNP +NpaNp +247264 DetNP +247266 Conj-CL +ADV-P-VC-S +DetNP +ofNPNP +DetNP +247272 ClClClClClCl +S-V-ADV +PrepNp +V-ADV +PrepNp +V-IO +V-ADV +PrepNp +V-ADV +PrepNp +V-ADV +PrepNp +247285 Conj-CL +247287 DetNP +that-VP +ADV-V-S-ADV-ADV-ADV +PrepNp +AdjpNp +DetNP +V-ADV +NpaNp +NpAdjp +247297 NPofNP +PrepNp +NPofNP +NpAdjp +ClClCl +V-ADV +DetNP +AdjpNp +V-O +V2CL +V-O +NP-CL +247310 O-S-V-ADV +DetNP +PrepNp +NpAdvp +NpPp +PrepNp +DetNP +NpaNp +247319 V-O +DetNP +ClCl +CLaCL +S-P +All-NP +NPofNP +247327 S-P-ADV +ADV-V +PrepNp +sub-CL +V-ADV +PrepNp +NpaNp +NPofNP +247337 ADV-VC-P-ADV +O-V-IO +DetNP +AdjpNp +NPofNP +Np-Appos +V-ADV +DetNP +NPofNP +NpaNp +DetNP +247349 NP-CL +DetNP +AdjpNp +ADV-V +247354 Conj-CL +O-V +DetNP +AdjpNp +AdjpaAdjp +247361 Conj-CL +V-O-ADV +PrepNp +247365 Conj-CL +CLaCL +S-ADV-VC-P +DetNP +AdjpNp +PrepNp +247372 S-ADV-P-VC-ADV +DetNP +PrepNp +V-O +NPofNP +NPofNP +NpaNp +DetNP +247381 DetCL +V2CL +247384 S-P +DetNP +AdjpaAdjp +247388 AdvpAdjp +All-NP +247391 Conj-CL +247393 ADV-V +PrepNp +Conj2VP +247397 V-ADV +PrepNp +NP-CL +NpAdjp +V2CL +S-VC-P +NPofNP +2Np +All-NP +AdvpNp +247408 O-V +Conj2VP +247412 CLaCL +S-O-V +ofNPNP +DetNP +247417 VC-P-ADV +NPofNP +DetAdj +PpPpPpPpPp +PrepNp +PrepNp +PrepNp +PrepNp +PrepNp +247427 ClCl2 +sub-CL +V2CL +V-ADV +NpNpNp +DetNP +DetNP +DetNP +247436 ADV-V-O +NP-CL +DetNP +PpNp2Np +PrepNp +S-V-IO-ADV-ADV +PrepNp +PrepNp +NPofNP +DetNP +NPofNP +DetNP +247449 ClCl +247451 P-VC +PrepNp +sub-CL +S-P-VC-ADV +ofNPNP +DetNP +247458 ClCl +247460 NpaNp +247462 DetNP +V-ADV +sub-CL +ADV-V-O +O-V +aNpaNp +247470 DetCL +V-O +247473 ClCl +CLaCL +O-ADV-V +247477 V-ADV +PrepNp +ClClCl +O-ADV +PrepNp +O-ADV +PrepNp +O-ADV-ADV +PrepNp +PrepNp +All-NP +247489 V-O +Np-Appos +DetNP +AdvpNp +247494 Conj-CL +247496 sub-CL +S-O-V +AdjpNp +NpaNp +247501 CLaCL +O-V +DetNP +AdjpNp +247506 O-V-IO +DetNP +247509 Conj-CL +S-VC-P-ADV +PrepNp +DetNP +247514 Conj-CL +CLaCL +S-V-ADV +DetNP +AdvpNp +NpaNp +247521 V2CL +PrepNp +247524 V-ADV-ADV +NpaNp +DetNP +247528 DetNP +NpaNp +247532 Conj-CL +S-ADV-V +DetCL +V2CL +V2CL +247539 AdvpNp +sub-CL +P-VC +247543 Conj-CL +ClCl2 +sub-CL +S-O-ADV-V +DetNP +NpaNp +247550 AdvpNp +CLaCL +O-V +DetNP +247555 VC-ADV-P +247558 AdvpNp +NPofNP +NpNump +VC-P +ofNPNP +AdjpNp +ADV-V +PrepNp +NpAdjp +ClClClClCl +sub-CL +V2CL +sub-CL +V2CL +sub-CL +O-V +ofNPNP +sub-CL +O-V +V2CL +sub-CL +ADV-V +All-NP +NpAdjp +247583 Conj-CL +O-V +AdjpNp +247587 Conj-CL +ClCl2 +sub-CL +V-ADV +DetNP +O-V-ADV +V2CL +ClCl +V-O +sub-CL +O-V +DetNP +AdjpNp +247601 Conj-CL +CLaCL +ADV-ADV-V-ADV +AdvpAdjp +V-ADV +DetNP +247608 notCLbutCL2CL +ADV-P +P-ADV +AdvpNp +AdjpaAdjp +247614 V-O +DetCL +ADV-V +247618 Conj-CL +V-O +S-V +ClClClCl +V2CL +V2CL +V2CL +O-V-IO-ADV +AdjpNp +DetCL +V2CL +NP-Prep +247631 Conj-CL +ADV-S-V-ADV +PrepNp +DetNP +247637 sub-CL +S-V-O +AdjpNp +V-O +247642 ADV-V-S +DetNP +sub-CL +O-V +DetNP +AdvpNp +247649 ClCl +S-ADV-V +DetNP +AdjpNp +ADV-V +AdjpNp +ADV-S +DetCL +V-ADV +PrepNp +NpaNp +247662 Conj-CL +247664 DetNP +CLaCL +O-ADV-V +NpAdjp +V2CL +247670 P-S-ADV +DetNP +DetNP +NPofNP +247676 PrepNp +AdvpCL +sub-CL +ADV-ADV +PrepNp +NumpNP +Conj2Nump3 +247685 DetCL +V2CL +PrepNp +sub-CL +S-O-V +AdvpNp +DetAdj +247694 PrepNp +Conj3Np +DetNP +247698 Np-Appos +247700 DetNP +AdjpNp +that-VP +O-V-ADV-ADV +PrepNp +O-V-ADV +PrepNp +247708 CLaCL +O-ADV-IO-V +247711 V-ADV +NpAdjp +247714 O-O2-V +247716 notCLbutCL2CL +V2CL +O-V-ADV +NpAdjp +PrepNp +NpaNp +DetNP +247724 DetNP +AdjpNp +ofNPNP +247728 CLaCL +S-P-VC-ADV +ofNPNP +AdjpNp +DetNP +V-ADV +PrepNp +247736 ADV-ADV-V +247738 AdvpCL +CLaCL +S-P +AdvpNp +DetNP +NPDetAdj +DetAdj +247746 S-O-ADV-V +DetCL +ADV-V +V2CL +247752 S-O-O2-V +S-VC-ADV-P +PrepNp +DetNP +AdjpNp +AdvpAdjp +All-NP +ADV-S-V +NpaNp +DetNP +NPofNP +DetNP +247765 DetNP +247767 Conj-CL +247769 DetCL +V-O +AdjpNp +sub-CL +P-VC +247775 Conj-CL +ClCl +ADV-V +sub-CL +VC-P-S +NpaNp +247782 DetCL +O-V +DetNP +247786 O-V +Conj2VP +247790 ClCl2 +sub-CL +CLaCL +S-V +247795 ADV-V-ADV +NpaNp +Np-Appos +AdjpNp +V2CL +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +247806 DetNP +PpNp2Np +PrepNp +V-ADV +CLaCL +O-V +247813 V-ADV +PrepNp +NP-CL +NpaNp +247818 ADV-V-S +PrepNp +NpNpNpNpNp +NpAdjp +NPofNP +NpAdjp +CLa2CL +V-ADV +DetNP +247828 V-ADV +DetNP +V-O +P-VC-S +DetNP +247834 Conj-CL +VC-P-S +NpAdjp +DetNP +NpPp +PrepNp +247841 Conj-CL +247843 PrepNp +DetNP +sub-CL +ADV-O-V +V-O +247849 Conj-CL +ADV-ADV-V +V-O +NpaNp +247855 Conj-CL +S-V-ADV +DetCL +V-O +V2CL +PrepNp +NP-CL +Conj3Np +247865 NpAdjp +NpAdjp +AdjpaAdjp +247869 S-V-O-ADV +DetNP +PrepNp +NpaNp +247875 Conj-CL +P-VC-S +NPofNP +All-NP +DetAdj +NP-CL +DetNP +CLaCL +ADV-S-V-ADV +O-V +PrepNp +DetNP +247888 O-V-ADV +NpAdjp +247891 Conj-CL +247893 Np2CL +intjNP +NPofNP +247897 Conj-CL +ClClCl +V-O +NpNpNpNpNpNp +V-O +DetNP +AdjpNp +NPofNP +DetNP +V-O +NP-CL +DetNP +AdjpNp +ADV-V +PrepNp +CLaCL +V2CL +247915 V-O-ADV +DetNP +AdjpNp +PrepNp +AdjpNp +247921 V-ADV-O +PrepNp +NpaNp +Np-Appos +DetNP +DetCL +V-O +DetAdj +247930 Np-Appos +Np-Appos +DetCL +V-ADV-O +PrepNp +Np-Appos +DetNP +AdjpNp +V-S-O-ADV-ADV +DetNP +AdjpAdjp +PrepNp +NP-CL +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +O-ADV-V-S +NpAdjp +NP-CL +NP-CL +Np-Appos +Np-Appos +DetNP +AdjpNp +AdjpaAdjp +247959 DetNP +NpaNp +NPofNP +DetCL +V2CL +247965 NPofNP +DetCL +V2CL +DetNP +NpAdjp +ClCl +V-O +ADV-V +NpAdjp +CLaCL +O-V-S +NPofNP +247978 O-V +V2CL +247981 NpaNp +247983 NpAdjp +Intj2CL +247987 DetAdj +AdjpPp +PrepNp +DetNP +AdjpNp +ClClClClClCl +notCLbutCL2CL +CLaCL +V2CL +247997 V-ADV +PrepNp +ofNPNP +ADV2CL +PrepNp +Np-Appos +DetCL +V-IO-O-ADV-ADV +PrepNp +V2CL +V-ADV +PrepNp +NpAdjp +P-VC +P2CL +V-IO-O-ADV +NpAdjp +PrepNp +DetCL +V2CL +sub-CL +V-O +DetNP +AdvpNp +248023 Np2CL +intjNP +DetNP +V-O +DetNP +NpaNp +AdjpNp +248031 NPofNP +DetNP +NP-CL +AdjpNp +ADV-S-ADV-V +O-V +PrepNp +DetNP +248040 S-P +DetNP +PrepNp +248044 S-IO +Np-Appos +NpPp +NpPp +NPofNP +Np-Appos +PrepNp +NPofNP +PrepNp +NPofNP +Np-Appos +NpPp +PrepNp +Np-Appos +Np-Appos +AdjpNp +248061 S-ADV +NpNpNp +PrepNp +NpaNp +Np-Appos +248067 Np-Appos +Np-Appos +DetNP +NPofNP +248073 NP-CL +DetNP +O-V-ADV-ADV +PrepNp +PrepNp +AdjpNp +sub-CL +ADV-V-O-ADV-ADV-ADV +DetNP +PpNp2Np +PrepNp +PrepNp +DetNP +NPofNP +NpaNp +248089 ClCl +V-O-ADV +O-V +V-O +ofNPNP +DetNP +sub-CL +ADV-V-ADV +V-O +NPofNP +DetNP +PpNp2Np +PrepNp +NP-CL +AdjpNp +CLaCL +S-V-ADV-ADV +PrepNp +NpaNp +Np-Appos +DetNP +NPofNP +248112 Np-Appos +DetNP +NPofNP +248117 that-VP +ADV2CL +AdvPp +PrepNp +248122 ADV-V-O +PrepNp +PronNP +S-V-O +NP-CL +DetNP +NPofNP +DetNP +S-VC-P-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +248138 Conj-CL +notCLbutCL2CL +V-IO-S-O +DetNP +NPofNP +O2CL +Conj3Np +248148 Conj-CL +notCLbutCL2CL +V-O +NpaNp +DetNP +NPofNP +DetNP +NPofNP +248157 Np-Appos +DetNP +NPofNP +V-ADV-ADV +DetNP +PrepNp +NPofNP +Np-Appos +DetCL +CLaCL +V-O +248169 V-ADV-ADV +NpAdjp +notPPbutPP +PrepNp +DetNP +NPofNP +PrepNp +AdjpNp +NpaNp +248179 Np-Appos +DetCL +CLaCL +V-IO-ADV-ADV +PrepNp +Np-Appos +PrepNp +NpAdjp +248188 V-ADV-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +NpAdjp +Np-Appos +aCLaCL +248199 V-O +DetNP +248202 V-O-ADV +NpaNp +248205 PrepNp +NP-CL +DetNP +ADV-VC-S-P +PrepNp +Conj3Np +248215 CLaCL +ADV-O-V +PrepNp +PronNP +AdvpNp +248221 ADV-V +CLaCL +V-O +O-V +248227 that-VP +VC-P +AdjpCL +O-V-ADV +DetNP +NPofNP +PrepNp +Demo-NP +DetNP +248237 V-O-ADV +NPofNP +NP-CL +AdjpNp +V2CL +O-ADV-V +PrepNp +PrepNp +Np-Appos +NpaNp +248248 NpPp +PrepNp +Np-Appos +248252 O-V-ADV +DetNP +AdjpNp +PrepNp +Np-Appos +NpAdjp +DetCL +V-ADV +PrepNp +248263 that-VP +V-O-S +NP-CL +All-NP +NpPp +PrepNp +DetNP +P-VC-S +NpaNp +248274 ClCl +V-O-S-IO +DetNP +DetNP +ofNPNP +sub-CL +CLaCL +ADV-O-V +248283 notCLbutCL2CL +O-V +DetNP +NPofNP +CLaCL +ADV-ADV-V-O +VC-P +PrepNp +248292 V2CL +248294 V-IO-S-O +DetNP +V-O-ADV-ADV +PrepNp +PrepNp +Demo-NP +DetNP +248302 Conj-CL +O-ADV-S-V +O-ADV-V +PrepNp +248307 Conj-CL +248309 Np2CL +NPofNP +S-V-ADV +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +Np-Appos +248320 O-V-ADV-ADV +PrepNp +PrepNp +AdjpNp +NP-CL +AdjpNp +S-P-VC-ADV +O-V +AdvpNp +248330 V-ADV +PrepNp +AdjpNp +NPofNP +Np-Appos +248337 V2CL +DetNP +ofNPNP +DetNP +sub-CL +O-V +DetCL +V2CL +248346 Conj-CL +248348 sub-CL +ADV-V-S +sub-CL +ADV-ADV-V +248353 V-S +S-ADV-O-V +DetNP +AdjpNp +V2CL +DetNP +248360 V-O +O-V +248363 Conj-CL +V-IO-S-O-ADV +DetNP +PrepNp +248368 V-O +Np-Appos +NpPp +NpPp +NpAdjp +V-ADV +PrepNp +PrepNp +NPofNP +PrepNp +NP-CL +DetNP +NPofNP +CLaCL +248383 ADV-V-ADV +PrepNp +PrepNp +S2CL +248388 S-ADV-V +DetNP +NPofNP +DetNP +248394 PrepNp +PrepNp +DetAdj +that-VP +S-V-O-ADV +AdvpNp +Np-Appos +NpPp +PrepNp +Np-Appos +PrepNp +NpAdjp +248407 P-S +DetNP +248410 Conj-CL +248412 sub-CL +V2CL +248416 sub-CL +V2CL +248419 ClCl2 +sub-CL +V2CL +S-V-O +248424 ClCl +ClCl2 +sub-CL +V2CL +S-P-VC +sub-CL +O-ADV-V +V-O +248433 O-V-ADV +V-ADV-O +PrepNp +DetNP +AdvpCL +V-ADV-ADV +PrepNp +AdjpNp +PrepNp +NPofNP +DetCL +V2CL +248446 V-O +V-O-O2 +Np-Appos +AdjpDative +DetNP +NpAdjp +NpAdjp +V-O +DetNP +NPofNP +DetNP +248458 Conj-CL +O-V +DetNP +AdjpNp +248463 Conj-CL +248465 ADV-V +PrepNp +NPofNP +248469 S-ADV-O-V +DetNP +NPofNP +PrepNp +P-VC-S +NP-CL +NpaNp +248477 CLaCL +S-ADV-V-ADV +PrepNp +DetNP +V-O +S-ADV-V +248484 V-O +DetNP +ofNPNP +248488 Conj-CL +S-V-ADV +DetNP +AdjpNp +NPofNP +DetNP +248495 NP-Demo +DetNP +CLaCL +V-S-O +DetCL +VC-P +248502 V-ADV-S +PrepNp +All-NP +DetCL +V-O +DetNP +NPofNP +248510 Conj-CL +CLaCL +P-VC-S +PrepNp +AdjpNp +notNPbutNP +AdvpNp +NpAdjp +AdjpaAdjp +248520 AdvpNp +AdjpaAdjp +248524 aCLaCL +248526 S-P +PrepNp +248529 S-P +PrepNp +248532 Conj-CL +248534 sub-CL +S-V-O-ADV +PrepNp +NpAdjp +NpAdjp +NpAdjp +NpPp +PrepNp +V2CL +AdjpAdvp +DetNP +ADV-V +PrepNp +All-NP +NpAdjp +248550 Conj-CL +CLaCL +O-V +DetNP +AdjpNp +248556 V-O-ADV +NpNpNpNp +PrepNp +DetCL +V-O-ADV +DetNP +PrepNp +AdjpNp +248565 Conj-CL +O-V-ADV +DetNP +AdjpNp +AdjpaAdjp +248572 that-VP +V-O +248575 Conj-CL +248577 CLaCL +S-ADV-V +NPofNP +248581 VC-P-ADV +3Adjp +AdjpPp +PrepNp +ADV-V-O +PrepNp +DetCL +V2CL +CLaCL +ADV-ADV-V-IO-S-O-ADV +DetNP +PrepNp +NPofNP +248595 V-ADV-ADV +PrepNp +DetNP +ofNPNP +DetNP +V-ADV-ADV +PrepNp +PrepNp +DetNP +ofNPNP +248606 Conj-CL +248608 that-VP +ADV-V-S +PrepNp +AdjpNp +NpAdjp +248614 Conj-CL +ClCl +248617 DetNP +NpNpNpNpNpNpNpNpNpNpNpNpNpNpNpNp +AdvpAdjp +CLaCL +ADV-P-ADV +V2CL +248624 P2CL +CLaCL +V-O +NPofNP +248629 O-V +DetNP +NPofNP +248633 O-V +AdvpNp +248636 Conj-CL +P-VC-S +PrepNp +DetCL +CLaCL +V-ADV +PrepNp +DetNP +248645 V-O +NpAdjp +NpAdjp +ClCl +V-ADV +V-ADV +NpAdjp +CLaCL +ADV-V +248655 ADV-O-V +ADV-V +PrepNp +NPofNP +248660 Conj-CL +248663 ADV-S-V-O +PronNP +NpaNp +248667 DetNP +NpAdjp +NpAdjp +V-ADV +DetNP +AdjpPp +PrepNp +DetNP +248676 Conj-CL +ADV-V-ADV +PrepNp +248680 Conj-CL +248682 DetNP +NPofNP +sub-CL +S-V +AdvpNp +NPofNP +248689 Conj-CL +CLaCL +S-V-ADV +2Np +ofNPNP +7Np +DetNP +DetNP +DetNP +DetNP +DetNP +DetNP +DetNP +NP-CL +NP-CL +2Np +DetNP +DetNP +S-ADV-VC-P +PpPpPp +PrepNp +PrepNp +PrepNp +O-V +AdjpNp +248715 ADV-O-V-S +PrepNp +DetNP +248719 Conj-CL +S-V +AdvpNp +All-NP +DetCL +V-O +V-ADV-ADV +PrepNp +Np-Appos +248729 Conj-CL +S-V-ADV-ADV +NpaNp +AdjpNp +248734 PrepNp +DetAdj +V2CL +Conj2VP +248740 Conj-CL +S-V-ADV-ADV +PrepNp +O-V +Conj2VP +248747 CLaCL +ADV-V +PrepNp +248751 that-VP +ADV-V-O +PrepNp +Np-Appos +AdjpNp +DetCL +V-O +O-V-ADV-ADV +PrepNp +PrepNp +Np-Appos +NpPp +PrepNp +Np-Appos +248767 All-NP +AdjpaAdjp +248770 AdjpPp +PpPpPpPp +PrepNp +PrepNp +PrepNp +PrepNp +Np-Appos +NpPp +PrepNp +sub-CL +P-VC-S-ADV +DetNP +ofNPNP +DetNP +ADV-V +PrepNp +All-NP +NpAdjp +248789 V-ADV +ADVaADV +PrepNp +NpaNp +DetNP +248795 Np-Appos +Np-Appos +DetCL +V-O +V-O +NpaNp +V2CL +248804 NpaNp +DetNP +NPofNP +248808 DetNP +NPofNP +248811 ClClCl +V-O +DetNP +V-ADV +2Advp_h1 +V-ADV +ClClCl +V2CL +V2CL +V2CL +PrepNp +All-NP +NpaNp +248826 Conj-CL +ClCl +V-S +sub-CL +CLaCL +notCLbutCL2CL +O-V +DetNP +AdjpNp +V2CL +ADV-IO-V-O-ADV +PrepNp +DetNP +AdjpNp +V-O +DetNP +248843 aCLaCL +248845 ADV-O-V +PrepNp +DetNP +DetNP +248850 ADV-V +PrepNp +DetNP +248854 Conj-CL +ClClClCl +S-V-ADV +PrepNp +V2CL +V-O +NPofNP +O-V +DetNP +NPofNP +248865 Conj-CL +CLaCL +S-ADV-V +248869 S-V +DetNP +NPofNP +DetNP +NPofNP +248875 ClClCl +O-V +DetNP +AdjpNp +O-V +DetNP +O-V +DetNP +248884 ADV-V-ADV-S +NP-CL +DetNP +ofNPNP +DetNP +CLaCL +O-V-IO-S-ADV +Np-Appos +DetNP +DetNP +AdjpNp +PrepNp +Demo-NP +DetNP +248899 IO2CL +notNPbutNP +AdvpNp +AdvpNp +All-NP +DetCL +V-O +DetNP +NPofNP +248909 V-O +V-ADV-ADV +PrepNp +248913 Conj-CL +ClCl +ClClCl +CLaCL +S-O-V-ADV +V-O +DetNP +AdjpNp +248922 V-ADV +PrepNp +S-ADV +PrepNp +S-ADV +PrepNp +S-VC-ADV-P +PrepNp +248931 ClCl +ADV-V-ADV +O-V +PrepNp +sub-CL +VC-ADV-P-ADV +PrepNp +248939 Conj-CL +O-V-ADV +PrepNp +248943 CLaCL +O-ADV-V +DetNP +NP-CL +O-V-ADV-ADV +PrepNp +PrepNp +V2CL +248952 O2CL +2Np +DetNP +AdvpNp +DetNP +248958 S-O-IO-V +Np-Appos +DetNP +AdjpNp +248964 DetNP +PrepNp +DetNP +NPofNP +O-S-V +AdvpNp +248971 Conj-CL +ADV-V-O +DetNP +AdjpNp +248976 CLaCL +ADV-S-ADV-V +PrepNp +DetNP +AdjpNp +ofNPNP +248983 S-O-V +248985 ADV-IO-V +248987 Conj-CL +CLaCL +ClCl +CLaCL +S-ADV-V +DetNP +248994 V-O +sub-CL +CLaCL +ADV-S-V +PrepNp +DetNP +249001 V-S +All-NP +DetNP +249005 V-ADV +PrepNp +NPofNP +249010 CLaCL +V-O-S-ADV +DetNP +PrepNp +All-NP +NpAdjp +249017 V-ADV +PrepNp +DetNP +NPDetAdj +NPofNP +DetAdj +DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +249030 V-O +Conj3Np +249034 DetNP +ofNPNP +249037 CLaCL +S-V-ADV +PrepNp +249041 O-V-ADV-ADV +PrepNp +V2CL +249045 V-O +ADV-V +PrepNp +249049 V-O-S +Conj5Np +249055 NP-all +DetNP +249058 S-P +DetNP +PrepNp +DetNP +NPofNP +249064 S-P +DetNP +PrepNp +249068 S-ADV-ADV-IO +Np-Appos +NpaNp +NPofNP +249073 NPofNP +Np-Appos +PrepNp +NpaNp +NPofNP +NPofNP +249080 NPofNP +Np-Appos +NpPp +PrepNp +PrepNp +NPofNP +NP-CL +NpAdjp +CLaCL +O-V-S-ADV +DetNP +AdjpNp +PrepNp +NpAdjp +249095 V-ADV-O-ADV +NpAdjp +DetNP +NPofNP +PrepNp +NP-CL +O-V-S-ADV +PrepNp +NPofNP +DetNP +Np-Appos +NPofNP +Np-Appos +NpPp +AdjpNp +PrepNp +AdjpNp +249113 S-ADV +NpaNp +249116 PrepNp +NpaNp +Np-Appos +249120 Np-Appos +Np-Appos +DetNP +NPofNP +249125 ClCl +ADV-V-O-ADV +NP-Prep +PrepNp +sub-CL +CLaCL +O-V +DetCL +V2CL +249135 ClCl +ClCl +V-ADV-O +PrepNp +sub-CL +S-IO-V +sub-CL +S-VC-P +NpNpNp +ofNPNP +AdjpNp +V-O +NpAdjp +NpAdjp +AdvpCL +Conj2P +PrepNp +NPofNP +249155 Conj-CL +V-S +S-VC-ADV-P-ADV +DetNP +PrepNp +ofNPNP +AdjpAdjp +AdjpaAdjp +AdjpAdjpAdjpAdjpAdjp +AdvpAdjp +AdvpAdjp +AdvpAdjp +ADV-P +AdvpAdjp +249170 AdjpAdjpAdjpAdjpAdjpAdjp +249172 DetNP +PpNp2Np +PrepNp +DetNP +AdjpNp +sub-CL +VC-P +AdjpCL +aCLaCL +249182 V-ADV +PrepNp +Np-Appos +DetNP +DetCL +V2CL +249189 O-V +DetCL +V2CL +249193 Conj-CL +VC-P-S +NP-CL +NP-CL +2Np +2Np +NpaNp +249201 AdvpNp +NpPp +PrepNp +DetNP +S-V +O-V +S-O-V-ADV +All-NP +V-O-ADV +S-ADV-V +NP-Prep +AdjpNp +249215 Np-Appos +NpPp +PrepNp +AdjpNp +ofNPNP +S-ADV-P +NpNpNp +AdjpNp +NpAdjp +249225 S-VC-P +NP-Demo +DetNP +249230 ADV-V-O-ADV +PrepNp +PronNP +V-ADV-ADV +PrepNp +DetNP +ADV-V-ADV +NpaNp +AdjpNp +249240 NPofNP +NpAdjp +V-O +DetNP +249245 S-P-ADV +DetAdj +249248 Conj-CL +CLaCL +ADV-S-P +DetAdj +AdjpaAdjp +V2CL +249256 V-S +ofNPNP +aNpaNp +249260 DetNP +249262 DetNP +249264 CLaCL +O-V +O-V +249268 ADV-V-ADV +DetNP +VC-P +Conj3Adjp +249274 PP-Adjp +PrepNp +All-NP +NpAdjp +249279 Conj-CL +S-V-O +S-V-ADV +DetNP +AdjpNp +V2CL +249286 S-VC-P +AdjpAdjpAdjpAdjp +V-ADV +NpNpNp +DetNP +DetNP +DetNP +249294 ClCl +249296 PrepNp +AdjpAdjpAdjpAdjp +AdvpAdjp +ADV-IO-V +NpAdjp +sub-CL +V-O +S-VC-P +DetAdj +AdjpAdjpAdjpAdjpAdjpAdjpAdjp +V-IO +DetNP +AdjpNp +sub-CL +ADV-S-V +DetNP +NPofNP +DetNP +249315 O-ADV-V-O2 +DetAdj +V2CL +249319 ClCl +ClCl +ADV-O-V-O2 +PrepNp +NPofNP +AdjpNp +ADV-O +PrepNp +DetNP +NpNpNp +NpAdjp +NpAdjp +sub-CL +S-V-ADV +NpPp +PrepNp +V-O +V-ADV-O +PrepNp +NpAdjp +249340 ClCl +ClCl +S-IO-V-ADV +AdjpNp +PrepNp +P-VC-ADV +CLaCL +249348 ADV-V +249350 O-V +All-NP +NpAdjp +sub-CL +O-V-ADV +Np-Appos +DetNP +NPofNP +DetNP +Np-Appos +NPofNP +PrepNp +249363 Conj-CL +V-S-ADV-ADV +DetNP +NPofNP +DetNP +AdjpDative +All-NP +249371 that-VP +ADV-ADV-V-ADV-ADV +V-O +NpaNp +DetNP +249377 DetNP +AdjpNp +Conj3Advp +249382 PrepNp +DetNP +AdjpNp +V-O +DetNP +NpaNp +AdjpNp +249390 NPofNP +DetNP +NPofNP +NP-CL +Np-Appos +DetNP +Np-Appos +AdjpNp +NpaNp +249400 Np-Appos +249402 S-V-O-ADV +PrepNp +CLaCL +V-O-ADV +PrepNp +All-NP +249409 V-IO-O +Np-Appos +NpAdjp +NPofNP +AdjpNp +249415 CLaCL +O-V +249418 V-ADV +Conj2VP +249421 PrepNp +All-NP +249424 S-O-V +249426 V-O-O2-ADV +ClClClClClCl +IO-V +2Np +V2CL +ADV-P-VC +PrepNp +All-NP +NpAdjp +O-V +P-VC +P2CL +O-V-ADV +All-NP +PrepNp +All-NP +249443 Conj-CL +VC-ADV-S-P +AdvpNp +AdjpAdjpAdjpAdjpAdjpAdjpAdjp +V2CL +V-O +NpAdjp +NpaNp +249452 ADV-V +PrepNp +NpaNp +249456 V-O +249458 Conj-CL +249460 sub-CL +S-V +NPofNP +NpaNp +DetNP +249466 DetNP +DetNP +Np-Appos +NPofNP +ADV-V-O-ADV +notPPbutPP +PrepNp +NP-CL +Np-Appos +NpPp +PrepNp +O-V-S +PrepNp +DetNP +ofNPNP +PrepNp +NpaNp +NPofNP +249485 NPofNP +NP-CL +NpAdjp +O-V-ADV-ADV-ADV +PrepNp +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +ADV-P-VC-ADV +V-ADV +DetNP +ofNPNP +PrepNp +NPofNP +NpAdjp +249503 P-S +DetNP +249506 Conj-CL +ADV-V-O +PrepNp +249510 that-VP +V-O-S +O-V +AdjpNp +DetCL +V-O +249517 S-VC-P-ADV +AdjpaAdjp +249520 DetNP +249522 Conj-CL +249524 Conj4Np +AdjpNp +249529 NpAdjp +sub-CL +VC-P +AdjpaAdjp +249535 O-ADV-V-ADV +AdjpNp +PrepNp +AdjpNp +AdjpaAdjp +249542 that-VP +S-V-ADV +DetNP +Conj2VP +249547 VC-P +249549 ClCl +ClCl2 +sub-CL +V-ADV-O +PrepNp +NpaNp +249556 V-O +V-ADV-ADV +PrepNp +PrepNp +sub-CL +O-V +ADV-V +249565 NpaNp +Np-Appos +DetAdj +249569 sub-CL +S-ADV-V +249572 Conj-CL +249574 AdvpNp +DetNP +O-V-ADV +AdjpNp +PrepNp +DetNP +AdjpNp +sub-CL +ADV-VC-P +249584 V-O-S +NP-all +NpPp +PrepNp +249589 V-O +DetCL +V-O-ADV +PrepNp +249594 S-P +DetNP +PrepNp +All-NP +249599 S-IO +NpaNp +Np-Appos +NPofNP +Np-Appos +249605 Np-Appos +DetNP +Conj4Np +Np-Appos +DetNP +NPofNP +AdjpaAdjp +249614 Np-Appos +DetNP +249617 Np-Appos +DetNP +NPofNP +249621 DetNP +PpNp2Np +PrepNp +NPofNP +249626 IO-S-ADV +NpaNp +249629 PrepNp +NpaNp +Np-Appos +NPofNP +249634 Np-Appos +Np-Appos +249638 DetNP +NPofNP +O-V-ADV +NPofNP +PrepNp +DetNP +NPofNP +V-O +NP-CL +ofNPNP +NpaNp +DetNP +249651 DetNP +O-V-ADV +Conj2Pp +PrepNp +Np-Appos +DetNP +249658 PrepNp +All-NP +DetAdj +sub-CL +S-P-VC-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +All-NP +Np-Appos +NpPp +2Pp +PrepNp +PrepNp +249676 Conj-CL +249678 NpaNp +NpAdjp +249681 PrepNp +DetNP +NPofNP +sub-CL +S-V-ADV +DetNP +NPofNP +DetAdj +PrepNp +Np2CL +249692 Conj-CL +ADV-ADV-ADV-V-ADV +O-V-ADV +AdjpNp +PpNp2Np +PrepNp +V-IO-O +DetCL +V2CL +PrepNp +DetNP +CLaCL +P-VC-ADV +PrepNp +Np-Appos +249708 ADV-P +AdvpNp +NPofNP +Np-Appos +249713 V-O-ADV +PrepNp +NP-CL +DetNP +AdjpNp +V-ADV-O +PrepNp +DetNP +PronNP +NP-CL +NP-CL +Np-Appos +DetAdj +AdjpaAdjp +AdvpAdjp +DativeAdjp +249730 AdvpAdjp +DativeAdjp +aNpaNp +249735 V-IO-O +PronNP +NP-CL +S-VC-P +DetNP +AdjpNp +ClCl +S-V-O +O-ADV-V +PrepNp +sub-CL +ADV-O-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +249753 Conj-CL +249755 PrepNp +DetNP +AdjpNp +O-V +sub-CL +notCLbutCL2CL +P-S-VC +AdvPp +PrepNp +DetNP +NPofNP +P2CL +PrepNp +249769 Conj-CL +249771 PrepNp +PrepNp +sub-CL +249775 notPPbutPP +PrepNp +PrepNp +NpAdjp +CLaCL +ADV-IO +249782 ADV-IO-ADV +2Advp_h2 +aPpaPp +249786 PrepNp +249788 PrepNp +249790 Conj-CL +ClCl2 +sub-CL +O-V-O2 +ClCl +V-O +sub-CL +O2CL +249799 Conj-CL +249801 sub-CL +CLaCL +ADV-O-V +249805 V2CL +249808 Np-Appos +DetNP +AdjpNp +ClCl +S-V +sub-CL +249815 that-VP +O-IO-V +AdvpNp +249820 Intj2CL +Np2CL +PrepNp +249824 V-O-ADV +ofNPNP +DetNP +PrepNp +249829 ADV-V-IO-ADV +V-ADV +DetNP +NPofNP +249834 that-VP +ADV-V +AdvPp +PrepNp +O-V +249840 Conj-CL +ClCl +ADV-V-IO-O +2Advp_h1 +sub-CL +249846 V2CL +ADV-V-IO +PrepNp +DetNP +NPofNP +249852 V-O-S +2Np +Np-Appos +DetNP +NpPp +NPofNP +PrepNp +Np-Appos +Np-Appos +NpNpNpNp +DetNP +NPofNP +249865 S-P +DetNP +NPofNP +Np-Appos +DetNP +Np-Appos +PrepNp +DetNP +NPofNP +249875 ADV-S-ADV-V-IO-ADV +ADV-ADV-V-IO-ADV +AdvpaAdvp +249879 DetNP +PrepNp +DetNP +DetNP +PrepNp +NPofNP +NP-Demo +DetNP +PrepNp +NP-CL +NP-CL +NP-CL +O-V-O2 +NPofNP +ADV-ADV-V-O +PrepNp +DetNP +249897 S-ADV-ADV-V-ADV-ADV +CLaCL +VC-P +NpaNp +NPofNP +DetNP +249904 NPofNP +DetNP +NPofNP +249908 V-O-ADV +DetAdj +DetNP +NPofNP +DetNP +NPofNP +O-V +NPofNP +DetNP +PrepNp +NPofNP +DetNP +PrepNp +ADV-P-VC-ADV +DetNP +AdjpNp +PrepNp +249926 Conj-CL +249928 NPofNP +DetNP +ClCl +P-VC-S +NPofNP +S-ADV-V-O +249935 Conj-CL +249937 CLaCL +S-VC-ADV-P +PrepNp +249941 S-VC-ADV-P +PrepNp +249944 Conj-CL +ClCl2 +sub-CL +ADV-V-O-ADV +DetAdj +PrepNp +DetNP +249952 Conj-CL +V-O-S +All-NP +NPofNP +249957 Conj-CL +aCLaCL +249961 PrepNp +DetNP +P2CL +DetCL +CLaCL +V-O-O2 +DetNP +NPofNP +249970 O-O2 +DetNP +NPofNP +ofNPNP +249975 ClCl +ADV2CL +PrepNp +DetNP +249980 Np2CL +DetNP +S-P +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +249990 P-S +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +249998 CLaCL +V-O +250001 V-O +250003 ADV-V-O-S-ADV-ADV +PrepNp +Np-Appos +DetNP +DetNP +NPofNP +NPofNP +PrepNp +DetNP +NPofNP +250014 Conj-CL +250016 Np2CL +S-ADV-O-V +PrepNp +DetNP +250021 P-VC-S +NPofNP +DetNP +NPofNP +DetNP +250027 CLaCL +S-V +250030 S-V +250032 Conj-CL +CLaCL +250035 sub-CL +S2CL +250038 ClCl +250040 sub-CL +O2CL +250043 sub-CL +S2CL +250046 Conj-CL +CLaCL +S-P-VC +DetNP +250051 S-ADV-V +DetNP +NPofNP +250055 Conj-CL +250057 PrepNp +NPofNP +DetNP +ClCl +V-ADV +PrepNp +NPofNP +sub-CL +PtclCL +V-O-O2 +DetNP +NPofNP +NPofNP +DetNP +NPofNP +250073 PtclCL +S-VC-P +AdjpNp +NpAdjp +ADV-V-ADV +PrepNp +PrepNp +DetCL +V-O +V-O +250085 PrepNp +ADV-V-S-ADV +DetCL +V2CL +ADV-ADV-V +250091 Conj-CL +ClCl2 +sub-CL +CLaCL +S-VC-P +DetNP +AdjpNp +ADV-V +PrepNp +250101 S-V-O +All-NP +NpaNp +250105 AdjpNp +ADV-S-V-ADV +V-O +NP-CL +AdjpNp +250111 S-ADV-ADV-ADV-V +ADV-V-ADV +V-ADV +PrepNp +DetNP +PrepNp +DetCL +V2CL +PrepNp +DetNP +EitherOr4Np +250125 AdjpNp +250127 ofNPNP +NpAdjp +PrepNp +DetNP +ofNPNP +250133 Conj-CL +ADV-IO-V-O +NP-CL +Np-Appos +DetNP +DetCL +V2CL +ADV-V +PrepNp +250143 Conj-CL +V-ADV-S-ADV +250146 CLaCL +250148 sub-CL +V-O +250152 NPofNP +sub-CL +V-O +250156 ClClCl +V-O-ADV-ADV +AdjpNp +PrepNp +ADV-V-O +NpaNp +250163 O-V-ADV +PrepNp +DetNP +NPofNP +250168 Conj-CL +ADV-O-V-O2 +PrepNp +DetCL +V-IO-O +DetAdj +DativeAdjp +250176 Conj-CL +ADV-ADV-V-O +IO-S-V +DetAdj +250181 Conj-CL +V-O +250184 Np-Appos +DetCL +ADV-ADV-V +AdjpNp +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NpaNp +250195 sub-CL +ADV-ADV-V-O +NPofNP +PrepNp +250200 Conj-CL +V-ADV-S +NP-CL +CLaCL +ADV-S +PrepNp +DetAdj +250208 ADV-S +PrepNp +DetAdj +ADV-O-ADV-V +O-ADV-V +AdjpNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +250221 Conj-CL +S-P +aNpaNp +250225 DetCL +V2CL +250228 DetCL +V2CL +PpNp2Np +PrepNp +250233 ADV-ADV-V-ADV-ADV +PrepNp +PronNP +O2-O-V +250239 DetNP +NPofNP +DetNP +NPofNP +ADV-V-O +PrepNp +NPofNP +250247 Conj-CL +ClCl +ADV2CL +S-V-ADV +BeVerb +PrepNp +250254 Conj-CL +250257 V2CL +NpaNp +250260 DetNP +NP-CL +O-IO-V-S +DetNP +250265 Conj-CL +250267 sub-CL +S-V-O +DetNP +NpaNp +250272 AdvpNp +DetNP +sub-CL +CLaCL +ADV-V-O +PrepNp +DetNP +NP-CL +DetCL +O-V +DetNP +NPofNP +DetNP +S-VC-P +DetAdj +250288 V-O +NP-CL +S-ADV-ADV-P-VC +NPofNP +PrepNp +All-NP +DetCL +V2CL +AdjpofNp +250298 Conj-CL +notCLbutCL2CL +PtclCL +O-V +O-V +NPofNP +250305 Conj-CL +ClCl +V-O +ADV-ADV-V +PrepNp +DetNP +sub-CL +VC-P-ADV-ADV +AdjpNp +AdjpaAdjp +250316 NpPp +PrepNp +DetNP +PrepNp +DetCL +V-O +DetNP +NPofNP +DetNP +250326 Conj-CL +ADV-V-O +PrepNp +O-V-S-ADV +V2CL +O-V +DetCL +V2CL +250335 Conj-CL +250337 Np2CL +Np-Appos +NpAdjp +ofNPNP +NpAdjp +Np-Appos +DetNP +NPofNP +NpaNp +250347 DetNP +NPofNP +NpAdjp +250351 DetCL +V-O +sub-CL +S-ADV +AdvpNp +PrepNp +All-NP +DetNP +NPofNP +250361 Conj-CL +250363 AdjpNp +PrepNp +ADV-O-V-ADV-S +PrepNp +AdjpNp +DetNP +DetCL +V-O +250372 Conj-CL +CLaCL +S-V-ADV +All-NP +PrepNp +250378 S-P +DetCL +O-V +250382 Conj-CL +aCLaCL +250385 S-P-ADV-ADV-ADV +PrepNp +All-NP +DetNP +NPofNP +PrepNp +PrepNp +NPofNP +DetCL +V2CL +250396 S-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +NP-CL +250403 P-VC-S +ofNPNP +O-ADV-ADV-V +NpaNp +DetNP +250409 DetNP +NPofNP +DetNP +PrepNp +250414 Conj-CL +sub-CL +250417 DetNP +NPDetAdj +DetAdj +ClCl2 +sub-CL +ADV-O-V +DetNP +NPofNP +ClCl +ADV-V-O +DetNP +NPofNP +sub-CL +ADV-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NP-CL +DetAdj +CLaCL +ADV-V-S-ADV +DetNP +NPofNP +PrepNp +250446 V-O-ADV +DetNP +NPofNP +NumpNP +250451 Conj-CL +CLaCL +V-O +NP-Demo +DetNP +250457 ClCl +250459 CLaCL +ADV-V-ADV +DetNP +250463 S-ADV-V-O +DetNP +NPofNP +sub-CL +250468 PrepNp +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +250477 CLaCL +ClCl +250480 Np2CL +ADV-ADV-VC-P-S-ADV +PrepNp +NPofNP +NPofNP +NpAdjp +PrepNp +DetCL +V-ADV +PrepNp +NpAdjp +V2CL +250494 PrepNp +AdjpNp +PrepNp +ADV-P-VC +DetNP +sub-CL +ADV-V-S-ADV +NpPp +PrepNp +NPofNP +DetNP +250506 Conj-CL +ClCl +P-VC +NPofNP +DetNP +sub-CL +O-ADV-ADV-V-ADV +DetNP +NPofNP +DetNP +PrepNp +PrepNp +DetCL +250520 ClCl2 +sub-CL +ADV-O-V +DetNP +NPofNP +ClCl +ADV-V-O +DetNP +NPofNP +sub-CL +ADV2CL +PrepNp +DetNP +250534 Conj-CL +S-ADV-V +V2CL +250538 Conj-CL +PtclCL +S2CL +All-NP +DetCL +V-ADV-ADV +PrepNp +PrepNp +250547 Conj-CL +O-V-ADV +NumpNP +250551 PtclCL +O2CL +NP-CL +DetCL +V2CL +S-V-ADV +ofNPNP +DetNP +PrepNp +DetAdj +250562 Conj-CL +250564 ADV-V-ADV +PrepNp +DetNP +NPofNP +sub-CL +ADV-IO +DetCL +V2CL +250573 Conj-CL +250575 V2CL +ADV-V-O-ADV +V2CL +PrepNp +250580 Conj-CL +ClCl +V2CL +250584 ADV-ADV-V-S-ADV +V-ADV +PrepNp +DetNP +NPofNP +NpPp +PrepNp +V2CL +250593 Conj-CL +CLaCL +250596 BeVerb +sub-CL +S2CL +250600 ADV-V-S-O-ADV +DetNP +NPofNP +DetNP +ADV-V-ADV-ADV +DetNP +DetCL +V2CL +250609 Conj-CL +ClCl +250612 PrepNp +DetNP +DetCL +V2CL +sub-CL +250618 sub-CL +250620 PrepNp +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +sub-CL +S-ADV-V +DetNP +PrepNp +NPofNP +250634 Conj-CL +250636 PrepNp +DetAdj +Conj-CL +V-S-ADV-ADV +DetNP +PrepNp +DetNP +NPDetAdj +DetAdj +PrepNp +All-NP +DetNP +NPofNP +250650 Conj-CL +250652 PrepNp +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +250659 Conj-CL +ClCl2 +sub-CL +CLaCL +V-S +S-V-ADV +PrepNp +250667 S-ADV-V-ADV +DetCL +ADV-V +PrepNp +250672 Np-Appos +AdjpNp +ADV-V-ADV +PrepNp +PrepNp +AdjpNp +sub-CL +250680 ClCl2 +sub-CL +ADV-O-V +DetNP +NPofNP +ADV-V-O +DetNP +NPofNP +250689 Conj-CL +ClCl2 +sub-CL +O-S-V +PtclCL +ADV-ADV-V-ADV +PrepNp +AdjpNp +PrepNp +250699 Conj-CL +V-S-IO +DetNP +NPofNP +DetNP +250705 Conj-CL +250707 Np-Appos +DetCL +V-ADV +PrepNp +DetNP +NPofNP +AdvpNp +PrepNp +DetNP +NPofNP +sub-CL +ADV-S +PrepNp +DetAdj +DetNP +250723 Conj-CL +ClCl +V-O +V-ADV +PrepNp +Demo-NP +DetNP +sub-CL +ADV-ADV-S-V +PrepNp +DetNP +PronNP +NPofNP +DetNP +250738 Conj-CL +S-P +DetNP +NPofNP +DetNP +Conj5AdjP +V2CL +250747 AdjpPp +PrepNp +All-NP +NpAdjp +250752 V-ADV +PrepNp +NPofNP +2Np +NpaNp +250758 aNpaNp +250762 AdjpofNp +NPofNP +NpaNp +250767 Conj-CL +CLaCL +ADV-VC-S-P-ADV +PrepNp +250772 S-P-ADV +AdjpaAdjp +250775 V2CL +DetNP +NPofNP +NP-CL +P-ADV-S +PrepNp +DetNP +250783 Conj-CL +ADV-V-O +V-O +Np-Appos +NpAdjp +NpAdjp +V-ADV +DetNP +Np-Appos +DetNP +NPofNP +DetNP +DetNP +250797 Conj-CL +V-O +NpAdjp +notCLbutCL2CL +ADV-V-O +V-ADV +DetNP +NPofNP +V-ADV-ADV-ADV +PrepNp +PrepNp +PrepNp +250810 Conj-CL +250812 PrepNp +DetNP +NPofNP +DetNP +sub-CL +CLaCL +V-O +250820 O-V-ADV +PrepNp +AdjpNp +250824 Conj-CL +250826 All-NP +NpAdjp +ADV-V +PrepNp +PrepNp +NpPp +PrepNp +DetNP +sub-CL +V-O-ADV-ADV +aNpaNp +250839 PrepNp +250841 V-ADV +DetCL +V2CL +Conj2VP +250846 sub-CL +CLaCL +S-V-O +AdvpNp +250851 ADV-V-O +PrepNp +250854 sub-CL +ADV2CL +PrepNp +DetNP +AdvPp +PrepNp +PrepNp +250862 Conj-CL +notCLbutCL2CL +ADV-S-V-O +DetNP +250867 PrepNp +DetNP +sub-CL +S2CL +AdvpNp +250874 ADV-S-ADV-O-V-ADV +AdvpNp +DetNP +VC-P +250879 ClCl +S2CL +DetCL +250883 PrepNp +ClCl +P-VC-S +NPofNP +S-ADV-V-O +sub-CL +250890 AdvPp +PrepNp +S-P-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +S-ADV +CLaCL +ADV-O-ADV-ADV-V +PrepNp +DetNP +NPofNP +DetNP +NPofNP +aNpaNp +250909 PrepNp +DetCL +V-O +V-O-ADV +PrepNp +PrepNp +NpaNp +NpAdjp +250919 V-ADV +PrepNp +DetNP +250923 ADV-V-ADV-O +sub-CL +VC-P +PrepNp +O-V +DetNP +250930 Conj-CL +ADV-VC-ADV-P-ADV +V2CL +All-NP +DetCL +V-O +NPofNP +NpAdjp +V-ADV-O +PrepNp +DetNP +NpPp +PrepNp +DetNP +NPofNP +250946 CLaCL +ADV-P-ADV-S +PrepNp +DetNP +250952 V2CL +sub-CL +P-VC-ADV +DetNP +250957 Conj-CL +CLaCL +ADV-ADV-V-O +ADV-V-O-ADV +VC-P +PrepNp +DetNP +NPofNP +DetCL +V-O-S-O2 +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +250975 VC-P +V-O +NPofNP +2Np +AdvpNp +AdjpNp +250982 Conj-CL +CLaCL +250985 All-NP +DetCL +V-O +AdjpofNp +NPofNP +sub-CL +P-VC +250993 VC-S-P +DetNP +AdjpNp +Np-Appos +DetCL +ADV-O-O2-V-ADV +PrepNp +DetNP +DetNP +V2CL +PrepNp +NPofNP +aNpaNp +251009 Conj-CL +ADV-ADV-V-ADV +V-O +DetNP +ofNPNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +ADV-ADV-V-O +Np-Appos +NPofNP +NpaNp +NpPp +PrepNp +AdjpNp +251027 NpPp +PrepNp +NPofNP +2Np +NpaNp +251033 NPofNP +NpaNp +NPofNP +251037 NpAdjp +251039 Conj-CL +251041 sub-CL +V-S +DetNP +251045 Conj-CL +P-S-ADV +O-ADV-V-ADV +DetCL +Conj5CL +ADV-V +251052 V-O +DetNP +NPofNP +DetAdj +251057 O-V +NPofNP +NpAdjp +251061 V-O +NpaNp +AdjpNp +ofNPNP +251066 NPofNP +AdjpNp +V2CL +251070 V2CL +PrepNp +CLaCL +V-ADV-O +DetNP +NPofNP +DetNP +251078 V2CL +251080 Conj-CL +CLaCL +S-V-O-ADV +Np-Appos +DetCL +CLaCL +V-O +DetNP +AdjpNp +ADV-V-ADV +PrepNp +251092 V-O-IO +NpAdjp +NP-CL +ADV-ADV-V +PrepNp +PrepNp +DetNP +251101 S-P +V-O +NpaNp +251106 P2CL +NP-Prep +S-P +ofNPNP +DetNP +PrepNp +251113 Conj-CL +251115 Np2CL +PrepNp +DetAdj +AdjpaAdjp +251120 V-ADV +sub-CL +ADV-ADV-V +251124 Conj-CL +ADV-P-S-ADV +DetNP +V-O +NpaNp +DetNP +NPofNP +251132 DetNP +NP-CL +O-V-ADV-ADV +PrepNp +DetNP +NPofNP +V-O +Conj2VP +251141 DetAdj +251143 Conj-CL +251145 S-O-V-ADV-ADV +NPofNP +DetNP +PronNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +sub-CL +CLaCL +ADV-P-VC +251158 P2CL +NPofNP +DetCL +ADV-V-O +PrepNp +NpaNp +251165 DetNP +251167 Conj-CL +ADV-S-ADV-V-ADV-ADV +IO-V +DetNP +DetNP +sub-CL +O-V +ADV-V +PrepNp +NpAdjp +PrepNp +251179 sub-CL +PtclCL +CLaCL +ADV-V-O +V2CL +251185 ADV-V-O +V2CL +251188 Conj-CL +ADV-ADV-V-O +V2CL +DetNP +251193 Conj-CL +CLaCL +S-ADV-V +PrepNp +DetAdj +251199 ADV-P-ADV-S +ofNPNP +All-NP +PrepNp +DetNP +251206 ADV-S-V-ADV +ADV-ADV-V-O +PrepNp +V-IO-O +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +ADV-O-V-S-ADV +PrepNp +NP-CL +NumpNP +NpAdjp +ADV-P-S +PrepNp +V-S +AdjpNp +DetCL +V2CL +V-O +NP-CL +DetNP +AdjpNp +V2CL +O-V-ADV +PrepNp +NpAdjp +NPofNP +DetNP +AdjpaAdjp +EitherOrAdjp +251244 V-ADV +PrepNp +NP-CL +DetNP +NPofNP +DetNP +ADV-S-ADV-V-ADV +Np-Appos +PrepNp +ADV-P-VC-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +251260 Conj-CL +S-ADV-ADV-VC-P-ADV +NP-CL +Np-Appos +Demo-NP +Np-Appos +Np-Appos +DetNP +NPofNP +NPofNP +Np-Appos +DetNP +DetNP +DetCL +CLaCL +V-O-ADV +V-ADV +PrepNp +DetNP +NPofNP +DetNP +251282 V-O +IO-O-ADV-V-S +AdvpNp +PrepNp +aCLaCL +251288 ADV-VC-P +NPofNP +251291 ADV-P +AdvpNp +NP-CL +NPofNP +S-VC-P +NPofNP +AdvAdv +3Adjp +CLaCL +O-V +aNpaNp +251303 NPofNP +251305 ofNPNP +251307 V-ADV +DetNP +NPofNP +DetNP +PrepNp +DetAdj +251314 Conj-CL +251316 P-S +NP-CL +IO-O-S-V-ADV +Np-Appos +DetNP +PrepNp +DetNP +251324 Conj-CL +aCLaCL +251327 S-O-V-ADV +DetCL +ADV-O-V +PrepNp +DetNP +NPofNP +DetNP +V-ADV-O-ADV +PrepNp +DetNP +NP-CL +DetNP +S-VC-P +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +DetNP +NPofNP +251348 CLaCL +S-V-O +DetCL +ADV-V-ADV +PrepNp +251354 O-V +DetCL +V-O +DetNP +251359 Conj-CL +ADV-S-ADV-V +PrepNp +All-NP +DetAdj +PrepNp +DetAdj +251367 Conj-CL +aCLaCL +251370 ADV-O-S-V +AdjpNp +V2CL +251375 that-VP +V2CL +251378 Conj-CL +ClCl +ClCl2 +sub-CL +O-V +ADV-S-V +PrepNp +AdvpNp +Np-Appos +DetCL +O-V +sub-CL +251391 PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-O-S +251398 Conj-CL +Conj-CL +ClCl2 +sub-CL +ClCl +S-ADV-V +PrepNp +DetNP +AdjpNp +sub-CL +S-ADV-V +DetNP +PrepNp +P-ADV-S-ADV +CLaCL +ADV-V-S +PrepNp +DetNP +NPofNP +AdjpNp +251419 ADV-ADV-V +PrepNp +DetNP +NPofNP +251424 Conj-CL +ClCl2 +V-S +DetNP +ADV-S-V +PrepNp +AdvpNp +ofNPNP +251433 Conj-CL +251435 S-O-V +ADV-V-S +PrepNp +NpAdjp +PrepNp +DetNP +251442 Conj-CL +251444 that-VP +ADV-V-S +PrepNp +DetNP +NPofNP +ADV-ADV-O-S-V +PrepNp +PronNP +PrepNp +251454 Conj-CL +251456 AdvpAdjp +sub-CL +ADV-V-S +PrepNp +DetNP +NPofNP +NP-CL +NpAdjp +S-V-ADV +notPPbutPP +PrepNp +NPofNP +NpAdjp +PrepNp +NPofNP +NpAdjp +251473 Conj-CL +251475 that-VP +S-P-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +251483 Conj-CL +aCLaCL +251487 NPofNP +AdjpNp +V2CL +PrepNp +DetNP +ofNPNP +NpaNp +251495 sub-CL +O-V-S +DetNP +251499 S2CL +NPofNP +NP-CL +AdjpNp +ADV-V-ADV +PrepNp +DetNP +251507 Conj-CL +251510 ADV-ADV-ADV +PrepNp +PrepNp +aCLaCL +251515 S-ADV-VC-P +PrepNp +BeVerb +251519 S-ADV-ADV +PrepNp +PrepNp +DetCL +251524 PrepNp +ClCl +CLaCL +V-S +251529 ADV-V +S-P-ADV +PrepNp +DetNP +PrepNp +AdvpNp +ofNPNP +AdjpNp +251538 Conj-CL +aCLaCL +251541 S-VC-P-ADV +DetAdj +BeVerb +PrepNp +DetCL +ADV-V-S +V2CL +251549 S-ADV-ADV-V-O +PrepNp +DetCL +V-S-ADV +PrepNp +DetNP +DetNP +251557 Conj-CL +ADV-V-O-ADV +V-ADV-O +PrepNp +DetAdj +DetCL +V-ADV-ADV +PrepNp +DetNP +ADV-V-ADV +PrepNp +DetCL +V-ADV +PrepNp +251572 Conj-CL +ClCl +ADV-ADV-V-S +NP-CL +AdjpNp +NpAdjp +AdjpAdjpAdjpAdjp +CLaCL +V-ADV +PrepNp +DetAdj +251584 P-ADV-VC +DetNP +S-ADV-V-ADV-O-ADV-ADV +PrepNp +PrepNp +DetNP +ClCl +ADV-ADV-O-V +PrepNp +DetNP +AdjpNp +ADV-ADV +NPofNP +DetNP +sub-CL +O-V-ADV-ADV +O-V +251602 Conj-CL +CLaCL +S-O-V-O2-ADV +DetNP +V-O +251608 S-O-ADV +DetNP +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +DetNP +ADV-V +PrepNp +DetNP +251620 Conj-CL +ClCl +S2CL +NpPp +PrepNp +DetCL +V2CL +V-O +AdjpNp +Np-Appos +NP-CL +S-V-ADV-ADV +PrepNp +NPofNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +NpaNp +DetAdj +251643 DetNP +NP-CL +NPDetAdj +DetAdj +O-V-S +2Np +DetNP +AdvpNp +251652 Conj-CL +S-ADV-V +All-NP +PrepNp +DetCL +V-O +aNpaNp +251662 Conj-CL +P-S +V-S-O +AdvpNp +NP-CL +O-V +251669 Conj-CL +aCLaCL +251672 ClCl2 +sub-CL +VC-P +PrepNp +PtclCL +ClCl +ADV-VC-P +251680 DetCL +V-ADV-O +PrepNp +DetNP +251685 S-O-V +NPofNP +NpaNp +251689 DetAdj +251691 V-O +V-O +DetNP +sub-CL +251697 V2CL +PrepNp +Np-Appos +DetNP +DetCL +V-IO-ADV +PrepNp +DetNP +251707 ADV-O-V +AdjpNp +NPofNP +NP-CL +AdjpNp +S-ADV-V +PrepNp +AdjpNp +251716 Conj-CL +251718 sub-CL +S-VC-P +NP-Demo +DetAdj +ADV-S-V +ofNPNP +251725 Conj-CL +251727 V-O +CLaCL +ClCl2 +ClCl2 +V2CL +S-V +V-S +251735 ClCl2 +251737 Conj2Pp +PrepNp +DetNP +NPofNP +251742 PrepNp +DetNP +NPofNP +NpAdjp +ClCl +ADV-ADV +PrepNp +DetNP +NP-CL +251752 O-V-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +V-O-ADV +PrepNp +NPofNP +sub-CL +ClCl +S-ADV-V-ADV +PrepNp +DetNP +NPofNP +S-V-O +V-S +251770 sub-CL +ClCl +P-S +DetNP +NP-CL +O-V-ADV-ADV +DetNP +NPofNP +PrepNp +NP-Demo +DetNP +251782 CLaCL +CLaCL +V-O-ADV +NPofNP +PrepNp +DetNP +NPofNP +251790 ADV-V-O +PrepNp +NPofNP +251794 CLaCL +VC-ADV-P +PrepNp +251798 S-VC-ADV-P +PrepNp +251801 Conj-CL +ClCl +CLaCL +ADV-V-ADV-O +2Advp_h1 +DetNP +NPofNP +251809 ADV-O-ADV +DetNP +NPofNP +251813 V-O +DetNP +sub-CL +S-V-O-ADV +2Pp +PrepNp +PrepNp +NPofNP +251822 sub-CL +CLaCL +P-VC-ADV +DetNP +NPofNP +251828 O-ADV-V-ADV +DetNP +NPofNP +2Advp_h1 +251833 ADV-V-O +PrepNp +DetCL +V-O +DetAdj +251839 Conj-CL +S-P +DetAdj +AdjpaAdjp +V2CL +251845 V2CL +PrepNp +251848 Conj-CL +Conj-CL +V-S-O +AdvpNp +DetAdj +NpaNp +NPofNP +251856 NpAdjp +DetAdj +251859 Conj-CL +V-S +NP-CL +NP-CL +NPDetAdj +DetAdj +P-S +PrepNp +aNpaNpaNp +251869 DetNP +251871 DetNP +251873 DetNP +NPofNP +DetNP +S-VC-P +251878 Conj-CL +P-S +PrepNp +DetNP +AdjpNp +NpAdjp +Np-Appos +DetCL +VC-P +NPofNP +V-O +NpaNp +AdjpNp +251892 NP-CL +NpAdjp +DetNP +NPofNP +DetNP +V-ADV-ADV +CLaCL +P-S +PrepNp +Conj3Np +NpAdjp +NpAdjp +V-O +DetNP +251907 Np-Appos +DetNP +NPofNP +DetCL +V2CL +251913 DetNP +NPofNP +DetNP +251917 P-S +PrepNp +NpAdjp +NPofNP +V-O +DetNP +251924 ADV-ADV-VC-P-S +PrepNp +V-ADV +PrepNp +251929 Conj-CL +ClCl +ClCl2 +S-ADV-V +aCLaCL +251935 ADV-ADV-V-S-ADV +PrepNp +DetNP +AdjpNp +PrepNp +DetNP +O-V +DetNP +251944 ADV-ADV-ADV-S-ADV +PrepNp +DetAdj +AdvpNp +DetNP +DetNP +AdvPp +PrepNp +NP-CL +O-V-ADV +PrepNp +NpaNp +251957 DetNP +ofNPNP +DetNP +251961 DetNP +NPDetAdj +DetAdj +251965 DetNP +ofNPNP +DetNP +251969 ADV-S-V-O +DetNP +AdjpNp +PrepNp +Np-Appos +DetNP +DetCL +V2CL +251979 ADV-S-V-ADV +PrepNp +aNpaNp +251984 ADV-V-O +ADV-V-O +PrepNp +DetCL +V2CL +PrepNp +Conj3Np +251993 AdjpNp +NpAdjp +NPofNP +ADV-V +PrepNp +NPofNP +252000 Conj-CL +ADV-S-ADV-V-ADV-ADV-ADV +V2CL +Np-Appos +NPofNP +DetNP +AdjpNp +V2CL +Conj2Pp +Conj2Pp +PrepNp +DetNP +NP-CL +NpAdjp +AdjpNp +AdjpaAdjp +252017 AdvpAdjp +S-VC-ADV-P +Demo-NP +DetNP +252022 PrepNp +NPofNP +NpaNp +252027 PrepNp +DetNP +AdjpNp +PrepNp +DetAdj +O-V +AdjpNp +252035 Conj-CL +252037 sub-CL +S-ADV-V-ADV +NpaNp +DetNP +NPofNP +NpaNp +252045 NPofNP +V-O +DetCL +V2CL +PrepNp +DetNP +ofNPNP +DetNP +2Advp_h2 +DetNP +NPofNP +NP-CL +DetNP +S-ADV-O-V-O2-IO +PrepNp +NpAdjp +DetNP +DetNP +NPofNP +PrepNp +AdjpNp +PrepNp +DetCL +V-O +NpAdjp +V2CL +252072 Conj-CL +252074 PrepNp +ofNPNP +NpAdjp +sub-CL +ClCl2 +S-V-ADV +PrepNp +NPofNP +DetNP +PpNp2Np +PrepNp +DetNP +AdjpNp +V-S-O +DetCL +V2CL +DetNP +NPofNP +DetNP +AdjpNp +252095 Conj-CL +ADV-P-S +P-S +V-S +NPofNP +DetCL +V2CL +252103 Conj-CL +252105 PrepNp +sub-CL +252108 sub-CL +V-S +DetCL +V2CL +252113 Conj-CL +ADV-S-ADV-V +DetAdj +PrepNp +252118 Conj-CL +252120 V-S-ADV-ADV-IO +All-NP +PrepNp +DetNP +PrepNp +All-NP +DetNP +V-O-ADV +DetNP +NPofNP +NpaNp +DetNP +252133 DetNP +PrepNp +Conj3Np +252137 NpAdjp +252139 aNpaNp +252141 PronNP +DetNP +252144 All-NP +DetNP +252147 S-P +DetNP +NPofNP +DetNP +NP-CL +O-V-ADV-S +PrepNp +DetNP +252156 Conj-CL +O-ADV-ADV-V +aNpaNp +252160 DetNP +252162 All-NP +DetNP +NPofNP +DetNP +DetNP +252168 Conj-CL +CLaCL +ADV-ADV-S-V-ADV +PrepNp +PrepNp +DetNP +252175 ADV-ADV-V-S +PrepNp +252178 Conj-CL +P-S +aCLaCL +252182 S-ADV-V +DetNP +NPofNP +NpPp +PrepNp +DetNP +252189 S-ADV +PronNP +DetAdj +NpAdjp +AdjpPp +PrepNp +252196 Conj-CL +V-S-ADV-ADV +notPPbutPP +PrepNp +Np-Appos +AdjpNp +NPofNP +DetAdj +PrepNp +PronNP +DetNP +ADV-V-ADV-ADV +DetNP +NPofNP +DetNP +PrepNp +252214 sub-CL +252216 sub-CL +S-V-ADV-ADV-ADV +DetNP +PrepNp +DetAdj +PrepNp +PrepNp +NpAdjp +sub-CL +V-S +S-ADV-V-ADV +PrepNp +NPofNP +252230 Conj-CL +ADV-ADV-ADV-ADV-ADV-V +PrepNp +NPofNP +DetNP +PrepNp +NPofNP +DetNP +PrepNp +DetNP +NPofNP +252242 Conj-CL +252244 CLaCL +ADV-V-ADV-S +PrepNp +DetNP +ADV-V +252250 ADV-S +PrepNp +AdvpNp +DetNP +ADV-V-ADV +PrepNp +DetCL +O-V +ofNPNP +PrepNp +PrepNp +DetCL +O-V +PrepNp +252265 Conj-CL +252267 DetNP +V-O +2Np +NPofNP +DetNP +AdjpNp +V2CL +AdvpNp +PronNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +PronNP +NP-CL +O-V-ADV +PrepNp +DetAdj +O-V +DetCL +V2CL +sub-CL +PtclCL +PtclCL +V-O-ADV +V2CL +PrepNp +DetCL +ADV-V-ADV-O-S-ADV +NPofNP +DetCL +V2CL +ADV-V +252302 Conj-CL +P-S-ADV +PrepNp +NPofNP +PrepNp +252308 Conj-CL +P-S +S-V-O +NPofNP +NpaNp +252315 Conj-CL +252317 V-ADV +PrepNp +DetNP +ClClCl +CLaCL +O-ADV-V +NpaNp +252326 O-V-IO +O-ADV-V +NpaNp +252330 PrepNp +252333 Np2CL +DetNP +ADV-V-ADV +PrepNp +NPofNP +PrepNp +V-ADV +DetCL +V-O +DetNP +NPofNP +252346 ADV-ADV-V +252348 that-VP +252350 O-V +Conj4Np +252355 PrepNp +notVPbutVP +PrepNp +DetCL +V-O +DetNP +NPofNP +252364 DetAdj +sub-CL +O-V +DetAdj +252369 ADV-V-ADV-ADV +PrepNp +PronNP +VerbBe +PrepNp +DetNP +NPofNP +DetNP +NPofNP +Np-Appos +252380 Conj-CL +Conj-CL +S-V-ADV +All-NP +CLaCL +ADV-V +PrepNp +252388 ADV-V-O +DetNP +PronNP +NP-CL +S-ADV-V-O +V-O +252395 Conj-CL +S-ADV-V-ADV-ADV +O-ADV-V-ADV +AdjpNp +PrepNp +PrepNp +DetAdj +PrepNp +NPofNP +DetNP +252406 DetAdj +sub-CL +V-S-ADV +DetNP +NPofNP +NPofNP +DetNP +NPofNP +252415 Conj-CL +ADV-V-ADV-O +AdjpNp +PrepNp +DetAdj +DetCL +V2CL +252423 Conj-CL +V-IO-S +AdvpNp +DetNP +NPDetAdj +DetAdj +252430 Conj-CL +CLaCL +252433 ADV-V-S +PrepNp +DetCL +252437 P-S +DetNP +NP-CL +O-V-ADV-ADV +PrepNp +PrepNp +NP-Demo +DetNP +ADV-ADV-V-O +V-O-ADV +NPofNP +PrepNp +NPofNP +AdvPp +PrepNp +DetNP +NPofNP +252455 O-ADV-V-ADV +NpaNp +DetNP +NPofNP +252460 DetNP +NPofNP +2Advp_h1 +252464 ADV-ADV-S +P-S +NPofNP +NpPp +PrepNp +252470 Conj-CL +252472 Np2CL +CLaCL +252475 NpPp +PrepNp +DetNP +NPofNP +DetAdj +PrepNp +DetNP +NPofNP +O-V-ADV-ADV-ADV +NpAdjp +AdjpaAdjp +252487 V2CL +PrepNp +NP-CL +DetNP +S-VC-P +DetNP +NPofNP +252495 O-ADV +NpAdjp +PrepNp +DetNP +NPofNP +DetNP +PrepNp +AdjpNp +PrepNp +NPofNP +CLaCL +V-ADV-ADV +DetNP +PrepNp +NpAdjp +252511 V-ADV-ADV +DetNP +NpAdjp +252516 DetNP +NPofNP +DetNP +sub-CL +P-S +DetCL +V2CL +252524 Conj-CL +V-O-ADV-ADV +PrepNp +NPofNP +NpaNp +252530 AdjpNp +notCLbutCL2CL +252533 DetNP +NPofNP +sub-CL +P-ADV +V-ADV-ADV +AdvpNp +NP-CL +ADV-V-O +V-S +DetNP +252544 Conj-CL +252546 ADV-V-S-ADV +PrepNp +DetCL +V-O +DetNP +NPofNP +DetNP +ADV-ADV-V-S +PrepNp +252556 S2CL +NpaNp +AdjpNp +AdjpNp +NPofNP +252562 NPofNP +NpAdjp +V-O +V-O +DetAdj +252568 S-ADV-ADV-ADV-V +V-O +NPofNP +PrepNp +PrepNp +AdjpNp +AdjpaAdjp +252577 ADV-V-O +ADV-V-S +AdjpNp +DetCL +Conj3CL +O-V +DetNP +NPofNP +DetNP +252587 O2-V-O +NP-CL +DetNP +NPofNP +DetNP +ADV-V +PrepNp +252595 O-V +DetNP +NPofNP +DetNP +252600 Conj-CL +V-O +DetCL +CLaCL +252605 ClCl +ADV-S +S-V +252609 ClCl +ADV2CL +V-S-O +DetNP +NPofNP +252615 P-S +DetCL +V-ADV +PrepNp +NPofNP +NpAdjp +V2CL +252623 Conj-CL +V-O +NP-CL +DetNP +AdjpNp +ADV-ADV-V-O-ADV +PrepNp +V2CL +AdjpNp +NPofNP +aCLaCL +252635 ADV-ADV-V +aNpaNp +252640 ADV-P-VC +NPofNP +DetCL +ADV-V +252645 Conj-CL +CLaCL +ADV-V +AdvpNp +DetNP +252651 O-ADV-V-ADV +DetNP +NPofNP +DetNP +NPofNP +V2CL +PrepNp +V-O +V-S-O +NpAdjp +AdjpaAdjp +252663 V2CL +252665 Conj-CL +ADV-V-O +NP-CL +DetNP +NPofNP +S-V-O +AdjpNp +252673 Conj-CL +ClCl +O-V +ofNPNP +sub-CL +ADV-V-O +O-V +DetNP +NPofNP +DetNP +DetNP +252685 Conj-CL +CLaCL +ADV-ADV-S-V +AdjpNp +2Np +DetCL +V2CL +252693 ADV-V +252695 Conj-CL +CLaCL +S-ADV-V +DetNP +NPofNP +PrepNp +252702 ClCl2 +sub-CL +V2CL +ADV-V-S-ADV +DetNP +NPofNP +PrepNp +252710 Conj-CL +S-VC-P +notNPbutNP +NpPp +PrepNp +NpPp +PrepNp +NPofNP +252719 Conj-CL +VC-S-P +2Np +ofNPNP +V2CL +NPofNP +NpAdjp +ADV-V +252728 Conj-CL +ADV-V-S +PrepNp +DetAdj +252733 ADV-V-O +V-S-ADV-ADV +DetNP +NPofNP +PrepNp +DetCL +ADV-ADV-S-V +PrepNp +V2CL +DetCL +V2CL +252746 NpPp +AdjpNp +PrepNp +DetNP +CLaCL +252752 ADV-V-S +PrepNp +VC-P +PrepNp +DetNP +NPofNP +DetNP +252760 ADV-ADV-ADV-V +PrepNp +V2CL +252764 CLaCL +ADV-S-V-ADV +DetCL +ADV-V-O +252769 ClCl +ADV-V +sub-CL +V-O-S +DetNP +252775 Conj-CL +CLaCL +ADV-V-O +PrepNp +DetNP +V-O +DetNP +252784 PrepNp +V2CL +sub-CL +V-S +252789 DetCL +V-ADV +DetNP +that-VP +CLaCL +V2CL +252796 ADV-P-VC +DetCL +V-O +252801 V-ADV +PrepNp +DetCL +ADV-V +V2CL +PrepNp +NPofNP +DetNP +NPofNP +CLaCL +ADV-V-O +PrepNp +DetNP +252815 P-VC +ofNPNP +DetNP +PpNp2Np +PrepNp +252821 CLaCL +ADV-ADV-S-V-ADV +V2CL +V-ADV +PrepNp +NP-CL +V-O +O-V-ADV +PrepNp +252831 V-ADV +ADV-V-O +ADV-V +252835 ADV-V-ADV-ADV-ADV +PrepNp +NPofNP +DetNP +PrepNp +ADV-V-ADV +PrepNp +PrepNp +Np-Appos +NpaNp +252846 DetNP +NPofNP +DetNP +NPDetAdj +DetNP +252852 Conj-CL +V-O +NP-CL +DetNP +AdjpNp +O-V +DetNP +P-S +ofNPNP +NpaNp +252863 DetNP +252866 AdvpNp +PronNP +PrepNp +NPofNP +AdvPp +PrepNp +NPofNP +sub-CL +O2-V-O +DetCL +V2CL +252878 Conj-CL +252880 AdvPp +PrepNp +Np-Appos +V2CL +AdvpNp +CLaCL +sub-CL +S-ADV +DetNP +NPofNP +DetNP +DetNP +252893 sub-CL +S-P +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +DetAdj +252904 ADV-V-S-ADV +PrepNp +NP-all +notCLbutCL2CL +V-O +DetNP +CLaCL +ADV-O-V +Conj2VP +252916 that-VP +P-VC-ADV +NpaNp +252920 PrepNp +DetNP +252923 Conj-CL +252925 DetCL +O-V +that-VP +O-V +252930 Conj-CL +aCLaCL +252934 sub-CL +V-O +NP-CL +ADV-V +PrepNp +V-O-ADV +V2CL +252942 ADV-V-O +NP-CL +S-VC-P +252946 Conj-CL +ADV-V-O-S-ADV +DetNP +P-VC +NPofNP +252952 Conj-CL +V-IO-O +252955 CLaCL +ADV-V-S-O-ADV +DetNP +V2CL +252960 O-V-S-ADV +DetAdj +NP-CL +DetCL +O-V +DetNP +252967 ADV-V +PrepNp +ADV-V-IO-S +PrepNp +252972 that-VP +ADV-P-S +ADV-V +AdvPp +PrepNp +DetNP +252979 Conj-CL +O-ADV-V +AdvPp +PrepNp +252984 ADV-ADV-V-S-O +AdvPp +PrepNp +V2CL +NpaNp +DetNP +252991 DetNP +252993 CLaCL +ADV-S-ADV-O-V +V2CL +NPofNP +DetNP +NPofNP +253000 V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +253007 CLaCL +ADV-S-ADV-ADV-V +V2CL +PrepNp +DetNP +NPofNP +DetNP +NPofNP +253016 ADV-V +PrepNp +DetNP +NPofNP +253022 V2CL +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +V-O +P-S +DetNP +253032 ADV-V-O +DetNP +NPofNP +DetNP +253038 P-VC +VC-P +NPofNP +NPofNP +V-O +CLaCL +ADV-V-ADV +DetNP +NPofNP +DetNP +253049 ADV-V-O +ofNPNP +O2-V-ADV-O +AdjpNp +DetNP +ofNPNP +DetNP +NPofNP +DetNP +sub-CL +V-ADV +PrepNp +DetNP +253064 ADV-V-O +DetNP +NPofNP +DetNP +sub-CL +O-ADV-V +DetAdj +sub-CL +V2CL +253075 NpaNp +DetNP +253078 DetNP +NPofNP +DetNP +sub-CL +ADV-S-V-O +DetCL +V-O +DetAdj +253088 DetNP +AdjpNp +AdvPp +PrepNp +AdjpNp +ADV-S-V +O-V +ofNPNP +DetAdj +253098 ADV-S-V-ADV +DetNP +NPofNP +V-ADV +PrepNp +NumpNP +253105 ADV-S-ADV-V-ADV-ADV +Np-Appos +DetNP +DetCL +V2CL +V-O-ADV +DetNP +PrepNp +253114 Conj-CL +O-ADV-V +253117 Conj-CL +V-S-O +DetNP +S-V-ADV +PrepNp +NP-CL +2Np +NpNpNpNp +aNpaNpaNp +253129 DetNP +ClClClClClClClClCl +S-ADV-V-O +PrepNp +V-O +V-O +V-O +NPofNP +V-O +NPofNP +V-O +NPofNP +V-ADV +PrepNp +VC-P-ADV +PrepNp +O-V +NPofNP +253148 V-S-ADV-O +PrepNp +DetNP +NPofNP +253153 Conj-CL +253155 ADV-V-O +DetNP +sub-CL +O-V +AdjpNp +253161 Conj-CL +CLaCL +S-O-V +ofNPNP +NpaNp +253168 O2CL +AdvpNp +NpaNp +253174 V2CL +V2CL +V2CL +ADV-V +PrepNp +NPofNP +V-ADV-ADV-ADV +2Pp +PrepNp +PrepNp +AdjpNp +ClClCl +V2CL +V2CL +V2CL +V-ADV +PrepNp +Conj4Np +253195 DetNP +NPofNP +DetNP +ADV-ADV-VC-P-S +DetNP +253201 Conj-CL +ClCl +253204 NP-all +V-ADV +PrepNp +DetNP +DetNP +S-ADV-O-V +DetNP +PrepNp +AdjpNp +sub-CL +ADV-ADV-V +PrepNp +253217 Conj-CL +S-ADV-ADV-ADV-V-O-ADV +AdvpNp +V-O +AdjpNp +AdjpNp +V-ADV +NPofNP +V-O +NpaNp +NP-all +253229 DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +V-ADV +V-ADV +PrepNp +NP-CL +Np-Appos +DetNP +ofNPNP +DetNP +NpaNp +253244 CLaCL +S-ADV-V-O-ADV +PrepNp +DetNP +AdjpNp +V-ADV +O-V +253252 ADV-V +PrepNp +NPofNP +DetNP +NPofNP +DetNP +253259 Conj-CL +253261 DetCL +V-O +AdjpNp +PpNp2Np +PrepNp +DetAdj +PpNp2Np +PrepNp +sub-CL +ADV-V-ADV-ADV +DetNP +NPofNP +V2CL +253275 ADV-ADV-V-ADV +PrepNp +ADV-V +PrepNp +DetNP +253281 Conj-CL +V-O +NP-CL +DetNP +253286 S-IO-ADV-V +Conj-CL +IO2CL +Np2CL +NPofNP +ADV-V-O +NPofNP +253294 V-ADV +ADV-V +PrepNp +253298 Conj-CL +CLaCL +O-S-V +O-V +253303 V-O +All-NP +NP-CL +O-V +253308 ADV-V +PrepNp +253312 sub-CL +IO2CL +DetNP +253316 Conj-CL +P-S +NP-CL +O-ADV-V-S +253321 Conj-CL +253323 sub-CL +VC-P +PrepNp +NP-CL +P-VC-S +ofNPNP +P-VC +NpaNp +253332 AdvpNp +253334 Conj-CL +ClCl +CLaCL +ADV-O-V-O2 +DetNP +ofNPNP +DetNP +NPofNP +253343 V2CL +CLaCL +ADV-ADV-V-IO +2Advp_h1 +DetNP +NPofNP +DetNP +253351 V2CL +253353 Conj-CL +aCLaCL +253356 S-ADV-ADV-V +PrepNp +AdjpNp +PrepNp +DetCL +V-ADV +253363 S-ADV-ADV +PrepNp +DetCL +V2CL +PrepNp +DetCL +V-O +DetNP +NPofNP +253373 Conj-CL +S-P +All-NP +aCLaCL +253378 ADV-V-O +PrepNp +DetCL +V2CL +notCLbutCL2CL +P-VC +P2CL +253386 ADV-O-IO-V +NPofNP +NpAdjp +DetCL +ADV-V +PrepNp +253393 Conj-CL +253395 O-V +NpaNp +DetNP +AdjpNp +V2CL +253401 DetNP +AdjpNp +V2CL +253405 O-V-IO +NpAdjp +DetNP +NPofNP +sub-CL +CLaCL +ADV-S-V +DetAdj +253414 V-ADV +253416 V-ADV-O-ADV +PrepNp +NpaNp +253420 NP-CL +DetNP +ADV-S-V-O +NP-Prep +DetNP +V-O +ClClCl +PtclCL +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +PtclCL +CLaCL +S-ADV-V +AdjpNp +NPofNP +ADV-V +253440 ADV-V-S +PrepNp +DetAdj +PtclCL +S-P +NpaNp +253447 NpPp +PrepNp +NP-CL +S-ADV-V-O +PrepNp +NpAdjp +DetNP +NPofNP +253456 Conj-CL +253458 that-VP +253460 ADV-V-O +V-O +DetNP +Conj-CL +253465 ofNPNP +sub-CL +ADV-V-O +PrepNp +253470 Conj-CL +ADV-V-ADV +Conj7Np +V2CL +253475 AdjpNp +V2CL +253481 ofNPNP +253483 NP-CL +NPofNP +ADV-S-V-O +DetCL +V2CL +ADV-V-IO-S +253490 Conj-CL +ADV-V-O +DetCL +253494 ClCl2 +PtclCL +S-V-O +DetNP +V2CL +253500 Conj-CL +ClCl +ADV-P-VC-S +DetCL +V2CL +253506 VC-P +AdjpaAdjp +253510 Conj-CL +V-ADV +Conj8Np +Np-Appos +253515 Np-Appos +NPofNP +NpAdjp +V2CL +NpAdjp +253521 Np-Appos +NPofNP +253524 NPofNP +NpAdjp +V-ADV +PrepNp +253529 Np-Appos +NPofNP +253532 NPofNP +NpAdjp +V2CL +253536 Np-Appos +ofNPNP +NpAdjp +253540 NpAdjp +NPofNP +O-V-ADV +PrepNp +DetNP +253546 ClCl +V2CL +PtclCL +V-O +DetCL +V2CL +253553 Conj-CL +ClCl2 +sub-CL +ADV-V-S +NpAdjp +V-O +DetCL +ADV-V +PrepNp +ADV-S +2Advp_h1 +Np-Appos +DetCL +O-V +NpPp +PrepNp +253570 CLaCL +S-O-V-ADV +ofNPNP +DetNP +DetNP +253576 ADV-V-ADV +253578 ADV-S-V-O +2Advp_h1 +notNPbutNP +AdvpNp +DetNP +AdvpNp +DetNP +253586 Conj-CL +253588 DetNP +2Advp_h1 +DetNP +ofNPNP +DetCL +V2CL +PrepNp +V2CL +sub-CL +V-S +DetCL +ADV-V +253601 Conj-CL +ADV-V-O +O-V +NpAdjp +NP-CL +ADV-V-ADV-O-ADV +PrepNp +DetNP +PrepNp +NpaNp +253613 Conj-CL +S-P +AdvpNp +DetNP +NPofNP +NpAdjp +V2CL +253621 S-V +DetNP +253624 ClCl +O-ADV-V +DetNP +sub-CL +ADV-V-S-ADV +PrepNp +V-O +253632 ClCl +V-O-ADV +DetNP +sub-CL +V2CL +O-ADV +DetCL +V2CL +sub-CL +S-VC-P +AdvpNp +PrepNp +253645 ClCl +CLaCL +P-S-ADV +DetNP +PrepNp +253651 S-P +DetNP +sub-CL +O-V-S +NpaNp +253657 DetNP +253659 P-S +DetNP +253662 V-ADV +DetCL +V2CL +253666 Conj-CL +ClCl +253669 CLaCL +ADV-O-V +2Advp_h1 +253673 ADV-O-V +2Advp_h1 +sub-CL +253677 V2CL +ClClCl +S-ADV-P +ADV-V +O-V-IO-S +253683 V-O +NP-CL +NP-CL +DetNP +NPofNP +V2CL +S-V-IO-O +DetNP +NPofNP +DetNP +ADV-V-O +O-V +ofNPNP +DetNP +NPofNP +DetNP +DetNP +253701 CLaCL +S-ADV-P +Np-Appos +ADVaADV +253706 DetNP +253708 ADV2CL +PrepNp +DetNP +253712 ADV-ADV-V +NpAdjp +AdjpaAdjp +253717 Conj-CL +P-S +ADV-V-S-ADV +DetNP +AdvpNp +NP-CL +ADV-ADV-V-S +PrepNp +DetCL +V2CL +253728 V-O +NP-CL +ADV-ADV-V-O-S +ADV-V +PrepNp +DetCL +O-V +DetNP +253737 Conj-CL +ClCl +V-S-ADV-ADV-ADV +ofNPNP +PronNP +DetNP +PrepNp +PrepNp +DetAdj +PrepNp +DetNP +S-V-ADV +ofNPNP +DetNP +PrepNp +DetNP +253754 Conj-CL +S-ADV-ADV-V +AdvpNp +sub-CL +V-ADV-O +PrepNp +DetNP +AdjpNp +DetNP +PrepNp +DetNP +253766 Conj-CL +V-ADV-ADV-ADV +PrepNp +PrepNp +DetNP +O-V +DetNP +NPofNP +253775 Conj-CL +notCLbutCL2CL +V-ADV-O +AdjpNp +V2CL +O-V +DetCL +V2CL +253784 Conj-CL +ADV-V-ADV-IO-O +PrepNp +PrepNp +DetNP +NP-CL +NPofNP +S-VC-P +NPofNP +NpAdjp +V-IO +DetNP +NPofNP +253798 Conj-CL +ClCl +O-ADV-V +DetNP +NpaNp +253804 sub-CL +ADV-V-S +AdjpNp +DetNP +253810 CLaCL +V-O +DetNP +NPofNP +V2CL +253816 V2CL +sub-CL +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +sub-CL +O-V +sub-CL +CLaCL +ADV-O-V +PrepNp +253829 ClCl +ADV-ADV +V2CL +sub-CL +P-ADV-S +253836 PrepNp +sub-CL +253839 that-VP +O-V-ADV +AdjpNp +O-V +ADV-ADV-V +PrepNp +253846 Conj-CL +253848 O-V +sub-CL +ADV-V-IO +253852 Conj-CL +253854 Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-ADV-ADV-O +PrepNp +PrepNp +NPofNP +NpAdjp +Np-Appos +DetNP +NPDetAdj +NPofNP +DetNP +DetAdj +Np-Appos +DetNP +NPofNP +PrepNp +All-NP +PrepNp +DetCL +V-O +DetNP +NPofNP +V-ADV-O-ADV-ADV +PrepNp +DetAdj +PrepNp +PrepNp +Np-Appos +IO-S-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +253894 Conj-CL +ClCl +ClCl +253898 Np2CL +V-O +DetNP +NPofNP +DetNP +sub-CL +ADV-V-IO +AdvPp +PrepNp +253909 S-V +Np-Appos +DetNP +NPofNP +ADV-ADV-V-O +PrepNp +sub-CL +ADV-V +253918 V-O +NpaNp +All-NP +DetNP +NPofNP +V2CL +253925 All-NP +DetAdj +253928 V-O-S +NpPp +PrepNp +DetNP +253933 S-ADV +DetNP +PrepNp +All-NP +253938 S-IO-O +Np-Appos +ofNPNP +NpaNp +253943 Np-Appos +Np-Appos +DetNP +Np-Appos +NumpNP +NpPp +PrepNp +DetNP +V2CL +253954 Np2CL +NPofNP +All-NP +sub-CL +ADV-V +NpAdjp +253961 that-VP +S-V-O +DetNP +NPofNP +ofNPNP +DetNP +253968 Conj-CL +253970 DetNP +NpAdjp +sub-CL +VC-P-ADV +AdjpaAdjp +253976 ADV-V +PrepNp +253979 Conj-CL +ClCl2 +sub-CL +S-V-O +NPofNP +CLaCL +V-ADV +PrepNp +DetNP +AdjpNp +CLaCL +V-IO-ADV +253992 ADV-V +253994 V-IO +253996 Conj-CL +V-ADV-ADV +PrepNp +O-V +254001 Conj-CL +S-V-ADV +DetCL +V2CL +NpAdjp +NPofNP +AdjpaAdjp +V2CL +254010 V2CL +254012 Conj-CL +ClCl +254015 NP-Demo +DetNP +that-VP +V-O-ADV +PrepNp +DetNP +S-P-ADV +NpAdjp +PrepNp +All-NP +DetNP +NPofNP +254028 Conj-CL +CLaCL +V-S-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +NPofNP +254038 ClCl +S-ADV +DetAdj +PrepNp +DetNP +NPofNP +sub-CL +254046 sub-CL +S2CL +NPofNP +254050 Conj-CL +CLaCL +CLaCL +V-S-ADV +DetNP +PrepNp +DetNP +254058 V-O +DetNP +254061 CLaCL +S-V +DetNP +NPofNP +254066 S-V +DetNP +NPofNP +DetNP +NPofNP +254072 ADV-S-ADV-V +AdvpNp +DetAdj +PrepNp +DetNP +NPofNP +254079 ClCl +P-S +NP-CL +S-V-O +sub-CL +ADV-V-O +P-VC +NP-CL +DetNP +NPofNP +DetNP +O-V-IO +DetCL +V-O +254095 V2CL +that-VP +ADV-V +PrepNp +254100 Conj-CL +CLaCL +S-P-VC-ADV +DetNP +254105 V-S-O +254107 Conj-CL +S-V-ADV +ADV-V +PrepNp +DetNP +AdjpNp +Conj2VP +254116 CLaCL +ADV-S-ADV-V-O +DetNP +V2CL +254121 S-ADV-V-O +DetNP +V2CL +254126 Np2CL +NpAdjp +NPofNP +254130 S-P-VC-ADV +NpaNp +All-NP +NpAdjp +254135 All-NP +NpAdjp +V-ADV +PrepNp +NP-CL +DetNP +NPofNP +DetNP +P-ADV-VC-S +PrepNp +NpaNp +254147 ofNPNP +254149 ADV-V-O-ADV-ADV +V2CL +NPofNP +PrepNp +DetCL +VC-S-P +NPofNP +NpAdjp +DetNP +ofNPNP +254161 Np2CL +NpAdjp +NPofNP +254165 Conj-CL +ClClCl +VC-S-P-ADV +All-NP +PrepNp +DetCL +V2CL +P-ADV +PrepNp +DetCL +V2CL +P-ADV +PrepNp +254179 Conj-CL +S-O-ADV-V +NPofNP +NPofNP +254184 Conj-CL +ADV-ADV-V-O +V-O +All-NP +NpaNp +254190 NPofNP +PrepNp +Np-Appos +DetNP +AdjpNp +DetCL +V-O +V-O +DetNP +NPofNP +254201 Conj-CL +ClCl +CLaCL +VC-P +NPofNP +254207 ADV-P-ADV-ADV +V-O +sub-CL +ClCl2 +sub-CL +CLaCL +S-P-VC +NPofNP +254216 ADV-P +254218 NpAdjp +V-O-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +sub-CL +Conj3CL +V-O +254229 V2CL +254231 ADV-V-O +P-VC +254234 Conj-CL +254236 Np2CL +DetCL +CLaCL +V-ADV +PrepNp +Np-Appos +NpAdjp +NPofNP +DetNP +254246 V-ADV +VC-P +notNPbutNP +NPofNP +NPofNP +PrepNp +DetNP +NPofNP +254255 ClCl2 +sub-CL +S-V-O-ADV +P-VC +notCLbutCL2CL +V-O +NPofNP +V-O +NPofNP +S-P +ofNPNP +DetNP +254268 S-VC-P +NpPp +NpAdjp +AdjpaAdjp +254273 PrepNp +DetNP +NpaNp +254277 NP-CL +ClCl +V-O-ADV +NpaNp +254282 PrepNp +DetNP +NPofNP +O2-O-V-ADV +PrepNp +DetNP +254290 Np2CL +NPofNP +PrepNp +DetNP +NPofNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +254302 Conj-CL +ClCl2 +sub-CL +CLaCL +CLaCL +V-ADV-S +PrepNp +NPofNP +NpPp +NpAdjp +PrepNp +NpAdjp +254315 V-S +AdvpNp +NpPp +PrepNp +AdjpNp +254321 CLaCL +CLaCL +V-ADV +PrepNp +DetCL +V-O +DetNP +NPDetAdj +DetAdj +254332 S-V-ADV-ADV +254335 DetAdj +CLaCL +S-V-ADV +254339 V-ADV +PrepNp +DetNP +NPofNP +PtclCL +CLaCL +V-ADV +PrepNp +254348 VC-P +NPofNP +NpAdjp +254353 Np2CL +NpAdjp +NPofNP +254357 PtclCL +S-V-O-O2 +DetNP +DetNP +NpAdvp +DetNP +NpaNp +NpPp +PrepNp +254367 NPofNP +DetNP +NP-CL +O-V-IO +DetCL +V-O +254374 Conj-CL +S-V-O +DetAdj +254378 PtclCL +CLaCL +S-V-O +DetAdj +254383 S-V-O-ADV +PrepNp +254386 PtclCL +S-V-O +Np-Appos +DetNP +AdjpNp +DetCL +V-ADV +PrepNp +254395 ClCl2 +sub-CL +sub-CL +O-V-ADV +NpAdjp +PrepNp +DetNP +NP-CL +ClCl +V-O +DetNP +NPofNP +sub-CL +O2CL +ADV-V +254411 Conj-CL +ClCl2 +sub-CL +V2CL +O-V-ADV +254417 PrepNp +DetNP +sub-CL +S2CL +254422 Conj-CL +S-VC-P +CLaCL +S-O-V +All-NP +DetNP +254429 V-ADV +PrepNp +ofNPNP +254433 Conj-CL +254435 DetCL +254437 ADV-V +ADV-V +254440 Conj-CL +ClCl2 +sub-CL +CLaCL +ADV-V +254446 V2CL +VC-P +NPofNP +254450 ClCl +CLaCL +ADV-V +254454 ADV-V +sub-CL +O-V +ADV-V +PrepNp +NPofNP +254461 Conj-CL +ClCl +S-P-ADV +DetNP +DetCL +ADV-V-O +V-S-O +254470 Np2CL +NPofNP +P-S +DetNP +sub-CL +CLaCL +O-V-S +O-V +254479 O-ADV-V +254481 PtclCL +V-S-O +DetNP +V-O +254486 ClCl2 +sub-CL +CLaCL +CLaCL +S-P-VC +NpaNp +254494 V-O +DetNP +AdjpNp +254498 CLaCL +254500 NpPp +PrepNp +ClCl +V-ADV +PrepNp +CLaCL +V2CL +254508 V2CL +254510 ADV-V-IO-O +DetNP +NPofNP +DetNP +P-S +DetNP +254517 ADV-S-ADV-P-VC-ADV +AdvpNp +DetNP +sub-CL +ADV-V-O +PrepNp +254524 Conj-CL +254527 S-O-V +254530 DetNP +NPofNP +PrepNp +DetNP +S-IO-V-ADV-O +PrepNp +DetNP +NPofNP +DetNP +254541 that-VP +P-VC-S +DetNP +254545 ADV-V +254547 CLaCL +S-V +AdvpNp +DetNP +254552 V2CL +254554 Conj-CL +254556 Np2CL +intjNP +NpAdjp +254560 that-VP +S-ADV-P-VC +DetNP +PrepNp +DetNP +254567 Np2CL +Np-Appos +DetNP +NPofNP +ADV-V-ADV +PrepNp +V-O-ADV +Np-Appos +DetNP +NPofNP +PrepNp +DetNP +254581 V2CL +CLaCL +CLaCL +S-V-ADV +DetNP +DetNP +NPofNP +254589 ADV-S-V +PrepNp +DetNP +DetNP +254594 CLaCL +V-S +Np-Appos +DetNP +DetCL +V-O +CLaCL +Conj-CL +V-S-O +DetNP +254605 V-IO-ADV +PrepNp +254608 P-VC +NPofNP +254612 that-VP +CLaCL +ADV-V-S +PrepNp +254617 ADV-ADV-ADV +PrepNp +254620 Conj-CL +ADV-S-ADV-V-ADV +AdvpNp +Np-Appos +DetNP +AdvPp +PrepNp +CLaCL +V-O +DetNP +254631 ADV-V +AdjpNp +254634 Conj-CL +ClCl2 +sub-CL +S-ADV-P-VC +DetNP +PrepNp +ADV-ADV-S-ADV-P-VC +DetNP +PrepNp +254645 Np2CL +NPofNP +254648 that-VP +O-V +AdjpNp +254652 Conj-CL +ADV-V-S +254655 ClCl2 +sub-CL +S-ADV-ADV-V +PrepNp +S-P +NpAdjp +AdjpNp +AdjpCL +V-O +AdvpNp +All-NP +DetNP +254668 Conj-CL +ClCl2 +sub-CL +O-ADV-V-ADV +ofNPNP +DetNP +DetNP +PrepNp +DetNP +PrepNp +DetCL +V-S-O +O-V +AdvpNp +All-NP +DetNP +NPofNP +254687 AdvpNp +DetNP +CLaCL +P-VC +254692 ADV-V +PrepNp +NpAdjp +PrepNp +AdjpNp +ADV-S-V +DetNP +NPofNP +DetCL +V2CL +254703 CLaCL +ADV-S-P-VC +AdvpNp +DetNP +AdjpNp +254709 O-V +254712 AdjpNp +AdjpNp +254715 Conj-CL +ClCl +ClCl +S-P +DetNP +P2CL +DetNP +NPofNP +DetNP +ClCl +S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +P2CL +DetCL +Conj3CL +V-O +All-NP +DetNP +254737 V-O +DetNP +NPofNP +DetNP +254742 V-ADV +PrepNp +DetNP +254746 Conj-CL +CLaCL +S-V-ADV +All-NP +NPofNP +EitherOr4Np +254756 Conj2VP +254758 DetNP +NPDetAdj +DetAdj +254762 ClCl +O-V-S +O-V +DetNP +NPofNP +P2CL +3Adjp +AdjpAdvp +NpAdjp +254772 CLaCL +ADV-V-O +PrepNp +DetNP +NpaNp +254779 ADV-V-O +PrepNp +Np-Appos +DetNP +DetCL +ADV-V +PrepNp +NPofNP +254788 ADV-V-S +PrepNp +DetNP +PronNP +NpaNp +254796 Np2CL +NPofNP +S-P-VC +254800 PtclCL +S-ADV-V-O +DetNP +PrepNp +DetNP +PronNP +NpaNp +DetAdj +254809 DetAdj +254812 Np2CL +NPofNP +CLaCL +V-S-O +O-V +254818 S-O +254820 Conj-CL +S-V-O +AdjpNp +254824 S-P-ADV +AdjpaAdjp +254827 PrepNp +254829 V-ADV-O-ADV +PrepNp +DetNP +AdjpNp +DetNP +NPofNP +PrepNp +NPofNP +254838 Conj-CL +ClCl2 +sub-CL +V-O-ADV +NpaNp +NpAdjp +254845 PrepNp +DetNP +NPofNP +AdvpCL +CLaCL +V2CL +254852 V-ADV +PrepNp +DetNP +254856 notCLbutCL2CL +VC-S-P +Demo-NP +DetNP +ADV-V +P2CL +3Adjp +254864 Conj-CL +ClCl2 +P-S +NpaNp +254869 P-S +NpaNp +254872 All-NP +AdjpNp +254875 Conj-CL +254877 DetNP +AdvpNp +ADV-P +AdjpAdjpAdjpAdjpAdjpAdjp +AdjpAdvp +NpaNp +254884 NpAdjp +254886 Conj-CL +S-ADV-V-ADV +NPofNP +PrepNp +DetCL +V-O +254893 CLaCL +P-S +254896 P-S-ADV +PrepNp +254899 PtclCL +P2CL +AdvPp +PrepNp +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +254912 CLaCL +V2CL +254915 ADV-V +254917 CLaCL +CLaCL +V2CL +254921 V2CL +254923 ADV-V-O +V2CL +254926 CLaCL +V2CL +254929 V2CL +254931 ADV-V-ADV +PrepNp +DetCL +ADV-V-S +254936 ClCl +CLaCL +V2CL +254940 ADV-V +sub-CL +254943 sub-CL +ADV-V +PrepNp +DetNP +NPofNP +254950 Np2CL +254952 that-VP +S-P-VC +DetNP +NPofNP +DetNP +NPofNP +DetNP +254960 Conj-CL +S-O-V +PtclCL +S-V-O +VC-P +NPofNP +DetNP +NPofNP +DetNP +254970 Conj-CL +254972 that-VP +254974 DetNP +ADV-V-O +PrepNp +DetNP +NP-CL +O-V-ADV +PrepNp +254982 Conj-CL +O-V +AdjpNp +254986 Conj-CL +254988 CLaCL +S-O-V +DetNP +254992 IO-V-O +254994 Conj-CL +CLaCL +V-O +DetNP +254999 CLaCL +V-O +DetAdj +255003 V-ADV +PrepNp +255006 CLaCL +V-ADV +DetNP +255010 V-ADV +255012 CLaCL +255014 Np2CL +255017 Np2CL +255019 Conj3CL +V2CL +255022 V2CL +255024 V2CL +255026 CLaCL +S-ADV-V +DetNP +NPofNP +PrepNp +255032 S-ADV +DetNP +PrepNp +255036 CLaCL +V-ADV +PrepNp +255040 V-O +255043 Np2CL +255045 CLaCL +S-V-O +DetCL +CLaCL +V-O +255051 V-O +DetNP +NPofNP +255055 V-O +255057 Conj-CL +ClCl2 +sub-CL +O-V +VC-P +notNPbutNP +NPofNP +255065 P-VC-S +Np-Appos +NpaNp +255069 DetCL +V-O +V2CL +Conj2VP +255075 Conj-CL +255077 Np2CL +DetCL +V-O +DetNP +255082 ClCl +255084 Np2CL +NP-CL +DetCL +255088 CLaCL +ADV-V-ADV +AdvpaAdvp +255092 PrepNp +AdjpNp +DetNP +255096 Conj3CL +V-ADV-ADV +255099 V2CL +255101 V2CL +255104 S-ADV-V-O +DetNP +DetNP +NPofNP +VC-P +Np-Appos +DetCL +ClCl +ADV-V +PrepNp +ADV-V +2Advp_h1 +ADV2CL +PrepNp +DetCL +255120 ClCl2 +sub-CL +S-V +DetNP +aCLaCL +255126 V2CL +255128 V-O +NpaNp +255132 Conj-CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +255138 S-P-VC +NP-Demo +All-NP +255142 Conj-CL +ClCl2 +CLaCL +V-O +O-V +255148 ADV-V +S-ADV-V +255151 ClCl +ClCl +V-ADV +Np2CL +DetAdj +V-ADV +V-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetCL +V2CL +255165 CLaCL +S-V +DetNP +NPofNP +255170 S-P-VC +DetNP +NPofNP +255174 CLaCL +S-V +NpaNp +DetNP +NPofNP +255180 DetNP +255182 CLaCL +S-P-ADV-VC +DetNP +NPofNP +PrepNp +255188 V-O-ADV +DetNP +NPofNP +PrepNp +255193 V-ADV +PrepNp +AdjpNp +255198 S-V +Np-Appos +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-O +DetNP +NPofNP +DetCL +V-ADV +PrepNp +255212 S-ADV-V +DetNP +NPofNP +DetCL +V2CL +PrepNp +DetNP +NPofNP +NPofNP +255222 CLaCL +V-ADV +PrepNp +DetNP +255227 V2CL +255229 V-O-ADV +DetNP +NPofNP +PrepNp +NPofNP +255235 V-O +VpVp +DetAdj +255239 ADV-V-O +255241 Conj-CL +255243 Np2CL +PrepNp +DetNP +NPofNP +DetNP +255250 DetNP +DetNP +AdjpNp +NPofNP +DetNP +V-ADV +PrepNp +sub-CL +V-O +NpaNp +255263 V-S +AdvpNp +V-O +DetNP +NPofNP +sub-CL +S-V +DetNP +NPofNP +DetNP +255275 Np2CL +PrepNp +sub-CL +ADV-V +255281 DetNP +PrepNp +DetNP +255286 Np2CL +NPofNP +NpaNp +DetNP +255291 DetNP +NP-CL +DetNP +S-V-ADV +PrepNp +DetNP +NPofNP +255300 DetCL +V2CL +255304 O-V +DetNP +NPofNP +255308 O-V +DetNP +NPofNP +that-VP +VC-S-P +DetNP +AdjpaAdjp +255317 Conj-CL +255319 Np2CL +NPofNP +PrepNp +aNpaNpaNp +255324 DetNP +255326 DetNP +255328 AdjpNp +255330 Conj-CL +255332 VC-S-P +ofNPNP +DetNP +255336 S-P +DetNP +sub-CL +ADV-ADV-V +PrepNp +255342 ClCl +V-S +NpPp +PrepNp +V2CL +255348 ClCl +V-S +V2CL +255352 ClCl +V-S +NpPp +PrepNp +CLaCL +V-O +DetNP +NPofNP +DetNP +255362 V-ADV-ADV +PrepNp +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +255370 Conj-CL +CLaCL +S-V-O +DetNP +NPofNP +DetNP +DetCL +V2CL +255379 V-O-S +DetNP +255382 ClCl2 +sub-CL +O-V +BeVerb +V-IO +255388 Conj-CL +ClCl +CLaCL +V-IO-O +DetNP +255394 V-ADV +PrepNp +sub-CL +V2CL +255399 ADV-V-S-ADV +NPofNP +V2CL +255403 CLaCL +S-VC-P +NpAdjp +AdjpDative +255408 CLaCL +ADV-V-ADV +DetCL +ADV-V +255413 ADV-V-ADV-ADV +PrepNp +DetNP +NpaNp +NpAdjp +255419 NpNump +255421 Conj-CL +CLaCL +ADV-V +255425 CLaCL +S-O-V +DetNP +255429 S-V-O +DetNP +DetNP +NPofNP +255435 Np2CL +NPofNP +sub-CL +CLaCL +S-V-ADV +NpPp +PrepNp +PrepNp +DetNP +255445 V-S-O +255447 V2CL +CLaCL +S-V-O-ADV +DetCL +V-O-ADV +PrepNp +NPofNP +NPofNP +NPofNP +PrepNp +255458 V-O +NPofNP +255461 S-IO +Np-Appos +NPofNP +Np-Appos +AdjpNp +NpPp +NPofNP +NPofNP +4NpaNp +255471 PpPpPp +PrepNp +NPofNP +Np-Appos +PrepNp +NPofNP +PrepNp +NpaNp +255480 NPofNP +NPofNP +Np-Appos +255484 S-IO-V +NpaNp +255488 P-S +Np-Appos +DetNP +NPofNP +NpaNp +255494 Np-Appos +DetNP +NPofNP +Np-Appos +DetCL +ADV-V-O-ADV-ADV-ADV +PrepNp +DetNP +AdjpNp +ofNPNP +PrepNp +NpAdjp +V2CL +PrepNp +NpPp +NPofNP +Np-Appos +PrepNp +PrepNp +NpAdjp +NpAdjp +Conj3Adjp +255518 V-ADV-ADV +PrepNp +PrepNp +Np-Appos +DetCL +ADV-V-ADV-ADV-ADV +PrepNp +NPofNP +PrepNp +PrepNp +NpAdjp +V-ADV +PrepNp +NpAdjp +255535 ADV-V +PrepNp +ADV-ADV-V-S +V-ADV +PrepNp +AdjpNp +S-V-ADV-ADV +DetNP +NpAdjp +NPofNP +ofNPNP +DetNP +AdjpAdvp +Np-Appos +DetCL +CLaCL +V2CL +255553 ADV-V +PrepNp +PrepNp +Conj3Np +255559 PrepNp +NPofNP +Np-Appos +255563 CLaCL +O-ADV-V +ADV-V +255567 ADV-V-ADV-ADV +ADV-ADV-V +PrepNp +ADV-ADV-V +NpAdjp +AdjpaAdjp +255574 V2CL +V-O +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +255582 ADV-V-S-ADV +PrepNp +PronNP +Conj2VP +255587 Np-Appos +DetCL +ADV-V +PrepNp +DetNP +PpNp2Np +PrepNp +V-ADV +PrepNp +NP-CL +NpaNp +255599 AdjpNp +V-S-ADV +DetNP +PpNp2Np +PrepNp +NPofNP +V-O +NpaNp +DetNP +PpNp2Np +PrepNp +255611 DetNP +PpNp2Np +PrepNp +255616 IO-V +IO-V-O +notNPbutNP +NP-CL +NP-CL +S-ADV-V-IO-ADV +PrepNp +DetCL +V-O-ADV +PrepNp +NpAdjp +NpAdjp +V-ADV +PrepNp +O-V-S +ADV-V +PrepNp +255634 Conj-CL +ADV-ADV-V-ADV-ADV +ClCl +V-O +DetNP +NPofNP +DetNP +NPofNP +V2CL +PrepNp +DetNP +AdjpNp +V-IO +PrepNp +NPofNP +Np-Appos +255651 ClCl +ClCl2 +sub-CL +P2CL +NPofNP +notCLbutCL2CL +V-ADV +DetNP +PpNp2Np +AdvPp +PrepNp +DetNP +NPofNP +ADV-S-P-ADV-VC +PrepNp +DetNP +AdjpNp +V-O +AdvpNp +PrepNp +All-NP +sub-CL +255674 ClCl +P-VC +sub-CL +S-P +255679 Conj-CL +ClCl2 +sub-CL +O2-V-O +DetCL +ADV-V-ADV +PrepNp +DetNP +ofNPNP +ADV-ADV-V-ADV +PrepNp +DetNP +ofNPNP +DetNP +NPofNP +255695 that-VP +notCLbutCL2CL +ADV-V-ADV +AdjpNp +NpaNp +255701 PrepNp +DetNP +AdjpNp +ofNPNP +NpAdjp +ClCl +ADV2CL +AdjpNp +sub-CL +ADV2CL +Np-Appos +NpAdjp +AdjpaAdjp +255715 NpAdjp +aCLaCL +255718 V-ADV +PrepNp +NPofNP +255722 V-ADV-ADV +PrepNp +NPofNP +DetNP +PrepNp +Np-Appos +DetNP +PpNp2Np +PrepNp +NpPp +PrepNp +Np-Appos +DetCL +CLaCL +V-O-ADV +PrepNp +255739 O-IO-V-ADV +sub-CL +S-VC-P +DetNP +NpaNp +NPofNP +255746 PrepNp +255748 ADV-ADV-O-V-ADV-ADV +O-V-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NpAdjp +PrepNp +V-ADV-ADV +notADVbutADV +PrepNp +NpAdjp +PrepNp +NpAdjp +NPofNP +AdjpaAdjp +V2CL +255769 V2CL +255771 sub-CL +ClCl +CLaCL +S-P +All-NP +PrepNp +255778 S-P +All-NP +NPofNP +PrepNp +NPofNP +CLaCL +CLaCL +V-S +DetNP +255788 S-V +DetNP +255791 S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +255797 Conj-CL +S-VC-P +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +255805 Conj-CL +ClCl +255808 V-O +Conj5Np +All-NP +255812 All-NP +255816 All-NP +PrepNp +AdjpNp +DetNP +AdjpNp +AdjpNp +sub-CL +ADV-V-ADV +PrepNp +PrepNp +sub-CL +255828 that-VP +P-S +DetNP +255832 ADV-S-ADV-V-ADV-ADV-ADV +V-ADV +PrepNp +Np-Appos +NpAdjp +NpAdjp +V2CL +aCLaCL +255841 ADV-V +PrepNp +255844 ADV-P +PrepNp +AdjpAdjp +AdvpNp +PrepNp +NpAdjp +V2CL +NpAdjp +PrepNp +NpAdjp +V-O-IO-ADV +NpAdjp +AdjpNp +PrepNp +Np-Appos +255860 sub-CL +255862 PrepNp +255864 V-ADV-O +PrepNp +NpAdjp +NpAdjp +NpAdjp +255870 S-ADV-V +DetCL +V-ADV +PrepNp +2Advp_h1 +255876 Conj-CL +S-ADV +DetNP +Np-Appos +DetCL +V2CL +255883 Conj-CL +255885 V2CL +CLaCL +255888 Np2CL +NP-CL +O-V-S +DetCL +V2CL +PrepNp +NPofNP +255896 P2CL +NpaNp +NPofNP +255900 NPofNP +255902 S-V-ADV +O-V +DetNP +PrepNp +255907 Conj-CL +ClCl +255910 NpNpNpNp +NpAdjp +AdjpNp +NpAdjp +NpPp +PrepNp +sub-CL +V-O +DetNP +NPofNP +DetCL +ADV-O-V-ADV +PrepNp +PrepNp +DetNP +AdjpNp +ofNPNP +CLaCL +S-ADV-ADV-P +255930 ADV-P +NPofNP +CLaCL +S-ADV-P +V2CL +255936 ADV-P +V2CL +255940 Np2CL +ADV-V-O +PrepNp +NpaNp +255945 DetNP +NP-CL +AdjpNp +S-V-ADV +PrepNp +DetNP +255952 ClCl +O-ADV-V-O2 +DetNP +NPofNP +PrepNp +DetNP +sub-CL +ADV-ADV-V-O-ADV +PrepNp +255962 ADV-V-O +O2CL +ADV-V +PrepNp +DetNP +AdjpNp +DetNP +PrepNp +NPofNP +255972 V-ADV-IO +PrepNp +DetNP +Np-Appos +All-NP +AdjpNp +aNpaNp +255980 NpPp +PrepNp +V2CL +255984 NP-CL +sub-CL +ADV-V-ADV +PrepNp +PrepNp +NpaNp +NPofNP +255992 NPofNP +255994 sub-CL +ADV-VC-S-P +DetNP +NPofNP +DetNP +ADV-V-O +V2CL +DetNP +ofNPNP +DetNP +AdjpNp +256006 CLaCL +sub-CL +P2CL +256010 notCLbutCL2CL +sub-CL +V-O2-O +NPofNP +DetNP +DetNP +sub-CL +P2CL +ofNPNP +256020 ClClClCl +O-V +O-V +DetNP +O-V +DetNP +O-V +DetNP +256030 Np2CL +DetNP +PrepNp +All-NP +Np-Appos +DetNP +notNPbutNP +AdvpNp +DetAdj +AdjpaAdjp +256041 AdvpNp +DetAdj +256044 Conj-CL +ClCl +S-P +sub-CL +ADV-V-S-O-ADV +PrepNp +NPofNP +V-ADV +256053 Conj-CL +CLaCL +256056 sub-CL +ADV-V +V2CL +Conj2VP +256063 sub-CL +ADV-V +V2CL +Conj2VP +256068 PrepNp +256070 Conj-CL +256072 PrepNp +sub-CL +256075 AdvpNp +PrepNp +IO-V-O +sub-CL +V-ADV +DetNP +NPofNP +256083 CLaCL +S-O-ADV-V +256086 V-S-ADV +PrepNp +DetNP +NPofNP +256091 CLaCL +256093 S-ADV-ADV-V +V2CL +V2CL +256097 V-IO +DetCL +V-ADV +256102 S-O-V-ADV-ADV +NpPron +DetNP +NPofNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +ADV-ADV-V +ADV-V +DetNP +DetNP +256116 ADV-V +ofNPNP +DetNP +256120 Conj-CL +CLaCL +VC-P +PrepNp +NpAdjp +V2CL +256127 V-ADV-ADV +PrepNp +DetNP +NPofNP +NpaNp +256133 DetNP +NPofNP +256137 Np2CL +ADV-V-IO +DetNP +AdjpNp +sub-CL +ClCl2 +sub-CL +S-V-O +AdvpNp +DetNP +ADV-ADV-V-ADV +PrepNp +DetNP +ofNPNP +DetNP +PrepNp +V-O +DetNP +NPofNP +PpNp2Np +PrepNp +AdjpNp +256160 ADV-VC-P +notNPbutNP +DetNP +AdvpNp +ofNPNP +Conj3Np +NPofNP +256168 NPofNP +256170 NPofNP +DetNP +NpPp +AdjpNp +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +NP-CL +DetNP +AdjpNp +AdjpaAdjp +256184 S-VC-ADV-P +PrepNp +DetNP +256188 Conj-CL +ClCl +ADV-ADV-S-V-O-ADV +AdvpNp +Np-Appos +DetNP +AdjpNp +DetCL +V-ADV +PrepNp +V-IO +DetNP +AdjpNp +sub-CL +256203 DetNP +O2-O-V +P-VC-ADV +ofNPNP +CLaCL +V2CL +256210 ADV-V-O +AdjpNp +256214 Np2CL +DetNP +PrepNp +ClCl2 +sub-CL +IO2CL +AdjpNp +IO-V-O-ADV-ADV +DetAdj +sub-CL +IO2CL +AdvpNp +NPofNP +NPofNP +PrepNp +DetCL +ADV-V-S +DetNP +NPofNP +256234 Conj-CL +ADV-S-P +DetNP +AdjpAdjpAdjpAdjpAdjpAdjp +notCLbutCL2CL +CLaCL +V-O-ADV +PrepNp +256243 O-ADV +PrepNp +256246 sub-CL +256248 PrepNp +sub-CL +O-V +256252 Conj-CL +CLaCL +CLaCL +S-V-O-ADV +DetCL +V-O +CLaCL +O-V +256261 V-O +NpAdjp +DetNP +PrepNp +256266 O-ADV +DetCL +ADV-V-O +256270 ClCl +CLaCL +V-ADV +PrepNp +256275 V-O +CLaCL +V-O +256279 V-O +256281 sub-CL +CLaCL +CLaCL +S-P +NPofNP +PrepNp +256288 S-P +NPofNP +PrepNp +NPofNP +256293 S-P +NPofNP +PrepNp +V-O +256298 Conj-CL +256300 DetCL +V-O +sub-CL +P-VC +ofNPNP +DetAdj +256307 Conj-CL +256309 sub-CL +ADV-V-ADV +PrepNp +256313 Conj-CL +ClCl +CLaCL +CLaCL +CLaCL +ADV-ADV-V +DetNP +NPofNP +256322 V2CL +256324 O-V-ADV-ADV +Np-Appos +DetNP +PrepNp +DetNP +NPofNP +P-ADV-ADV-ADV +PrepNp +All-NP +DetCL +V-O-O2 +NpPp +PrepNp +DetNP +PpNp2Np +PrepNp +256341 ADV-O-V +PrepNp +NpaNp +256345 NpAdjp +sub-CL +ADV-V-S +PrepNp +ADV-V +DetCL +V-O +ofNPNP +DetNP +AdjpNp +PpNp2Np +PrepNp +256358 Conj-CL +ClCl +CLaCL +P-S +ADV-ADV-V +V2CL +sub-CL +V-S +DetNP +NPofNP +DetNP +256370 V2CL +sub-CL +256373 S-ADV-ADV-V +AdvpNp +PrepNp +S-ADV +PrepNp +sub-CL +O-V-IO-ADV +DetNP +aCLaCL +256383 V-ADV +256385 V-ADV +256387 ADV-ADV-V-IO +PrepNp +V2CL +Np-Appos +AdvpNp +DetNP +PpNp2Np +PrepNp +256396 sub-CL +ClCl +V-S-ADV +DetNP +ofNPNP +DetNP +PrepNp +NPofNP +V-S +NP-CL +ADV-S-V-ADV +PrepNp +NP-CL +S-VC-P +NumpNP +PrepNp +256413 ADV-O-ADV-V-S-ADV +AdvpNp +Np-Appos +Np-Appos +notNPbutNP +ofNPNP +NPofNP +NpPp +ofNPNP +NpAdjp +PrepNp +PrepNp +NPofNP +NP-CL +Np-Appos +256429 S-VC-P-ADV +PrepNp +NPofNP +V-ADV +PrepNp +Conj3Np +256438 Conj-CL +ClCl +ClCl2 +S-V-ADV +S-O-V-ADV +AdvpNp +DetNP +PronNP +PrepNp +DetCL +ADV-O-V +notNPbutNP +ofNPNP +NPofNP +DetNP +AdjpNp +PpNp2Np +PrepNp +sub-CL +S-V-ADV +DetCL +V-ADV +256461 Conj-CL +P-S-ADV +DetNP +AdjpNp +V2CL +256467 DetNP +NPofNP +DetNP +256471 V-ADV +PrepNp +NpaNp +NpNpNpNpNp +256476 AdjpNp +PrepNp +ADV-V-S-ADV +PrepNp +DetNP +PronNP +ofNPNP +DetNP +V2CL +S-V-O-IO +DetCL +ADV-V-ADV +V-O +NpaNp +V2CL +256493 Conj-CL +256495 PrepNp +AdvpNp +that-VP +aCLaCL +256500 V-ADV-ADV +PrepNp +256503 V-ADV-ADV +PrepNp +256506 Conj-CL +S-V +ofNPNP +DetNP +256511 Conj-CL +V-ADV +Conj2VP +256515 PrepNp +256518 PrepNp +DetNP +PpNp2Np +PrepNp +NpAdjp +sub-CL +S-V-O +NPofNP +256527 P-ADV-ADV +PrepNp +PrepNp +256531 ClCl +ClCl +ClCl +S-ADV-ADV-O-V +sub-CL +V-O +PrepNp +sub-CL +S2CL +AdjpNp +NPofNP +AdjpNp +NPofNP +ClCl +ClCl2 +sub-CL +S-V +sub-CL +O2CL +NPofNP +ClCl2 +sub-CL +S-V +sub-CL +ADV2CL +PrepNp +NP-CL +O-V-S +DetNP +sub-CL +ADV-V-S-ADV +PrepNp +DetNP +PrepNp +NP-CL +Np-Appos +256568 NpaNp +DetNP +256571 DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +256579 Np2CL +notCLbutCL2CL +ClCl +ClCl +V-ADV +DetNP +PpNp2Np +PrepNp +ADV-ADV-V +PrepNp +sub-CL +S-ADV-V +ClCl2 +sub-CL +V-ADV +DetNP +ofNPNP +DetNP +V2CL +sub-CL +ADV-V-ADV +AdvPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +V2CL +256608 ClCl +ClCl2 +sub-CL +V-ADV +PrepNp +NPofNP +P2CL +sub-CL +S-ADV-V +NpaNp +NPofNP +DetNP +256621 DetNP +ofNPNP +DetNP +PrepNp +256626 Conj-CL +ClCl +CLaCL +ADV-S-V-ADV +NPofNP +Conj2Pp +PrepNp +Conj3Np +256637 PrepNp +256639 ClCl2 +sub-CL +ADV2CL +PrepNp +notCLbutCL2CL +V2CL +V-O-ADV +DetNP +PrepNp +NP-Demo +DetNP +sub-CL +S-ADV +DetNP +DetCL +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +256661 Conj-CL +ClCl2 +sub-CL +ADV-P +PrepNp +P-S +DetNP +NPofNP +DetCL +V-O +DetNP +ofNPNP +DetNP +256675 Conj-CL +256677 sub-CL +S-ADV-V +DetAdj +DetNP +NpaNp +256684 Conj-CL +S-IO-V-O-ADV +AdvpNp +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +AdjpNp +DetNP +NPofNP +PrepNp +256698 Conj-CL +O-V-S +NpPp +PrepNp +NpaNp +DetNP +NpaNp +256706 NPofNP +DetNP +ofNPNP +DetNP +256711 DetNP +ofNPNP +DetNP +AdjpNp +V-O +V2CL +256718 V-O-ADV-ADV-ADV-ADV +DetNP +PpNp2Np +PrepNp +NPofNP +DetNP +notADVbutADV +PrepNp +notADVbutADV +notCLbutCL2CL +sub-CL +V-ADV +DetNP +VC-P +NPofNP +DetNP +256735 Conj-CL +ClCl2 +V-S +DetNP +V-O +DetNP +AdjpNp +ofNPNP +DetNP +256746 Np2CL +256748 Conj-CL +256750 DetNP +sub-CL +CLaCL +S-O-V +DetNP +256756 IO-V-O +256758 Conj-CL +V-ADV-ADV-ADV +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +sub-CL +O-V-ADV +PrepNp +ClCl +O-V-ADV +All-NP +DetNP +NPofNP +PrepNp +sub-CL +ADV-V-ADV +PrepNp +256779 V2CL +256782 S-ADV-V-ADV +Np-Appos +DetNP +NPofNP +sub-CL +S2CL +NpAdjp +V2CL +V-O +O-V +AdjpDative +DetNP +V-O +S-ADV-V +DetNP +NPofNP +DetNP +DetNP +PpNp2Np +PrepNp +DetNP +ofNPNP +256805 Conj-CL +ClCl +256808 Np2CL +Np-Appos +DetNP +NPofNP +All-NP +DetCL +V-O-ADV-ADV +PrepNp +DetNP +AdjpNp +ofNPNP +PrepNp +ADV-S-V +ADV-V +V2CL +V2CL +V2CL +256826 DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +256833 IO-ADV-ADV-V-ADV +PrepNp +Np-Appos +DetNP +NP-CL +AdjpNp +sub-CL +V2CL +PrepNp +CLaCL +V2CL +256845 V-O +256847 AdjpNp +NPofNP +DetNP +ADV-V +PrepNp +256853 V-O-S +NpaNp +DetNP +PpNp2Np +PrepNp +256859 Np-Appos +DetNP +NPofNP +256863 V-O-ADV +PrepNp +NPofNP +256867 S-IO +Np-Appos +All-NP +NpPp +PrepNp +256873 S-IO +Np-Appos +Np-Appos +NPofNP +NpaNp +256879 Np-Appos +DetCL +ADV-V-O-ADV +AdjpNp +PrepNp +NPofNP +Np-Appos +DetNP +NpaNp +Np-Appos +256890 Np-Appos +256892 S-IO-V-ADV +NpaNp +256895 PrepNp +NPofNP +NpaNp +DetNP +256900 Np-Appos +DetNP +NPofNP +256904 sub-CL +IO-S-O-V-ADV +DetNP +AdjpNp +NPofNP +Np-Appos +DetAdj +NpPp +PrepNp +NpaNp +256915 PrepNp +DetNP +NPofNP +DetCL +V-O-ADV +NP-CL +AdjpNp +NpaNp +256925 ADV-O-IO-V +PrepNp +DetNP +AdjpNp +AdjpaAdjp +256931 ADV-VC-P-ADV +PrepNp +NPofNP +AdjpNp +V-O +DetNP +PpNp2Np +PrepNp +DetNP +PpNp2Np +PrepNp +256943 Conj-CL +Conj7CL +ADV-ADV-V-ADV-O +AdvpNp +PronNP +O-V +NP-all +PrepNp +DetNP +NPofNP +DetNP +256955 ADV-O +PrepNp +DetNP +DetNP +256960 ADV-O +PrepNp +DetNP +DetNP +256965 ADV-O +PrepNp +DetNP +DetNP +256970 ADV-O +PrepNp +DetNP +DetNP +256975 ADV-O +PrepNp +DetNP +DetNP +256980 ADV-O +PrepNp +DetNP +DetNP +256985 Conj-CL +S-ADV-O2-V-ADV +ADV-V +Conj2VP +256990 notNPbutNP +PrepNp +DetNP +ofNPNP +Np-Appos +DetNP +NPofNP +Np-Appos +256999 Conj-CL +S-P-VC-ADV-ADV +ADV-ADV-V-S +V2CL +V-O +NPofNP +DetNP +NPofNP +DetNP +AdvpNp +ofNPNP +257011 Conj-CL +257013 Np2CL +O2-O-V +ofNPNP +DetNP +NpaNp +257020 Conj-CL +ADV-ADV-V-ADV +O-V +2Advp_h1 +257025 Conj-CL +ADV-ADV-V-IO-S +DetNP +NpPp +PrepNp +DetNP +AdjpNp +NPofNP +Np-Appos +DetNP +NpaNp +NPofNP +257038 Np-Appos +257040 Conj-CL +ClCl +V-O +ADV-O-V-ADV +PrepNp +sub-CL +V-ADV +Conj2VP +257049 PrepNp +DetNP +AdjpNp +V2CL +257054 Conj-CL +O2-V-ADV-O-ADV +PrepNp +ADV-VC-P +PrepNp +Demo-NP +DetNP +V-O-ADV +PrepNp +257064 that-VP +ClCl +P-VC-S +DetNP +NPofNP +DetNP +NPofNP +sub-CL +S-V-IO +AdvpNp +Np-Appos +DetNP +NPofNP +Np-Appos +257079 Conj-CL +V-O +O-V +ADV-V-S-ADV-O +2Advp_h1 +PrepNp +DetNP +AdjpNp +DetNP +ofNPNP +257090 Conj-CL +notCLbutCL2CL +ADV-V-IO-O +O-V +AdjpNp +V2CL +DetNP +ofNPNP +Np-Appos +DetNP +NPofNP +Np-Appos +NpaNp +257104 VC-P +NPofNP +DetNP +ofNPNP +257109 Conj-CL +CLaCL +ClCl +V-ADV-O +PrepNp +Np-Appos +NpaNp +257118 NP-Demo +PrepNp +DetNP +AdjpNp +257123 Np-Appos +DetNP +NPofNP +DetNP +NPofNP +ADV-S-V +PrepNp +257131 O-S-V-ADV-ADV +Demo-NP +DetNP +ADV-V +PrepNp +ADV-VC-P +PrepNp +PrepNp +DetNP +AdjpNp +257142 Conj-CL +257144 DetNP +AdjpNp +ADV-V-ADV-ADV +O-V-ADV-ADV +sub-CL +O2CL +NpAdjp +V-ADV +PrepNp +AdjpNp +PrepNp +CLaCL +ADV-S-V +257158 S-V-ADV +PrepNp +DetNP +NPofNP +257163 that-VP +S-ADV-ADV-V +All-NP +NPofNP +AdjpNp +257169 Conj-CL +notCLbutCL2CL +ADV-V-S-ADV +NPofNP +ADV-V-ADV-S +ADV-V +PrepNp +NpAdjp +PrepNp +257179 Conj-CL +ClCl +VC-S-P +AdvpNp +PrepNp +DetNP +sub-CL +P-VC-S +AdvPp +PrepNp +NP-CL +S-V-O-ADV-ADV +NPofNP +O-V +AdvpNp +DetNP +AdjpNp +V-O +V-IO-O +AdjpNp +257200 Conj-CL +257202 S-V-O +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +257210 Conj-CL +ADV-ADV-O-V +PrepNp +AdjpNp +257215 CLaCL +ADV-S-ADV-ADV-V +DetNP +257219 S-ADV-V +DetNP +NPofNP +257223 Conj-CL +ClCl2 +sub-CL +CLaCL +CLaCL +CLaCL +S-O-ADV-V +DetNP +NpAdjp +V2CL +257234 ADV-ADV-V-ADV +NPofNP +V2CL +ADV-V +PrepNp +257240 CLaCL +O-ADV-V +AdjpNp +257244 O-V-ADV +Np-Appos +Np-Appos +ofNPNP +O-IO-V +NPofNP +257251 CLaCL +ADV-ADV-V-ADV +O-V +NPofNP +NpaNp +257257 O2-V +NPofNP +V-O +V2CL +257262 ClCl +O-V +NpAdjp +Np-Appos +V-ADV +PrepNp +DetNP +ofNPNP +NpPp +DetAdj +PrepNp +sub-CL +ADV-S-ADV-ADV-O-ADV-V +NpaNp +257277 DetAdj +V-ADV +PrepNp +NpPp +PrepNp +NpAdjp +AdjpNp +V-S-O +CLaCL +O-ADV-V +PrepNp +257289 CLaCL +O-ADV-V +ADV-V +PrepNp +NPofNP +257295 ADV-O +DetCL +CLaCL +ADV-ADV-V +PrepNp +PrepNp +NPofNP +257303 O-V +257305 S-ADV-ADV-V-ADV +NpAdjp +O-V +ADV-S-ADV-ADV-V-ADV-ADV-O +ADV-P-VC +NpaNp +257312 PrepNp +PrepNp +AdjpNp +257316 Conj-CL +257318 PrepNp +AdjpNp +NpAdjp +V-ADV-ADV +PrepNp +NpaNp +257325 ADV-V +PrepNp +O-V +ADV-ADV-V-ADV +PrepNp +DetNP +NPofNP +V-ADV +NPofNP +257335 ADV-V-ADV +ClClClClClClClClCl +O2-V-O +DetNP +PpNp2Np +PrepNp +P2CL +NpaNp +257344 V-ADV +PrepNp +DetNP +NPofNP +V-ADV +V-O +NpAdjp +AdjpaAdjp +AdjpAdvp +257354 AdjpAdvp +V-O +NpAdjp +O-V +NpAdjp +V-ADV +P2CL +ofNPNP +V-O +AdjpNp +V-O +DetNP +NPofNP +NP-CL +DetNP +Np-Appos +NPofNP +CLaCL +S-O-V +NPofNP +257375 O-V +NPofNP +AdjpNp +257379 S-ADV-V-O +NpAdjp +ADV-V +PrepNp +ofNPNP +DetNP +ofNPNP +DetNP +257389 NpaNp +NpAdjp +257392 NpAdjp +ADV-V +PrepNp +IO-S-V +DetNP +NPofNP +DetNP +257400 Conj-CL +ADV-V-ADV-O-ADV +O-V +NPofNP +PrepNp +Np-Appos +NPofNP +DetCL +ADV-V-O +DetCL +ADV-V +PrepNp +257413 S-VC-P +NPofNP +DetNP +257417 Conj-CL +257419 ADV-S-V +257421 Conj-CL +ClCl2 +sub-CL +ADV-V +CLaCL +V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +NPofNP +Np-Appos +DetNP +NpaNp +257436 Np-Appos +257438 ADV-ADV-V +VC-ADV-S-P-ADV +DetAdj +DetAdj +257443 Conj-CL +CLaCL +P-VC-ADV-S +ADV-V-O +DetNP +NPofNP +DetNP +257451 ADV-V-ADV +V2CL +PrepNp +DetNP +AdjpNp +V-IO +AdjpNp +257460 NPofNP +DetNP +AdjpNp +CLaCL +S-V-ADV +PrepNp +DetNP +AdjpNp +257469 S-ADV-ADV +V2CL +PrepNp +NPofNP +257475 Np2CL +Demo-NP +AdjpNp +ADV-V-ADV-O-ADV +PrepNp +PrepNp +ofNPNP +DetNP +AdjpNp +V-O +NpaNp +DetNP +AdjpNp +V-ADV +PrepNp +DetNP +AdjpNp +257493 DetNP +ofNPNP +DetNP +NPofNP +NPofNP +DetNP +NpaNp +257503 that-VP +V-ADV-ADV-S-ADV +PrepNp +AdjpNp +DetNP +PrepNp +CLaCL +ADV-V +PrepNp +DetNP +AdjpNp +NPofNP +257518 DetNP +NPofNP +DetNP +NPofNP +sub-CL +ADV-S-ADV-V-ADV +PrepNp +ADV-S-V +DetNP +PrepNp +NPofNP +257530 Conj-CL +257532 O-V +that-VP +257535 S-VC-P +257537 S-ADV-V-ADV +Conj2Pp +PrepNp +257541 PrepNp +DetNP +ofNPNP +DetNP +ADV-S-ADV-V +PrepNp +DetNP +AdvpNp +ADV-V +257551 Conj-CL +S-ADV-V-ADV-ADV +NpaNp +DetNP +AdjpNp +257557 DetNP +DetNP +PronNP +VerbBe +V-ADV +PrepNp +NPofNP +NPofNP +NpaNp +257567 DetNP +AdjpNp +257570 Conj-CL +257572 Np2CL +NP-Demo +that-VP +CLaCL +S-ADV-P +AdjpNp +PrepNp +PrepNp +AdjpNp +257582 S-P +AdjpNp +PrepNp +NpAdjp +257587 notCLbutCL2CL +257589 DetNP +sub-CL +S-O-V +V-ADV-ADV +PrepNp +V-O +notCLbutCL2CL +S-V +S-ADV-V +PrepNp +257600 Conj-CL +257602 NPofNP +PrepNp +CLaCL +ADV-S-ADV-V +PrepNp +DetNP +257609 CLaCL +S-ADV-V +V2CL +257613 S-V +NpaNp +257616 DetNP +PpNp2Np +PrepNp +257620 ClCl2 +ADV-S-V +NP-all +V-S +P-VC-S-ADV-ADV +PrepNp +NpaNp +AdjpNp +257629 V-O +Conj2VP +257632 DetNP +NPofNP +DetNP +NP-CL +ofNPNP +DetNP +CLaCL +ADV-S-ADV-V +PrepNp +V2CL +257643 S-ADV-V +V2CL +257646 Conj-CL +257648 NpaNp +AdjpNp +257651 NpAdjp +PrepNp +DetNP +NPofNP +ADV-S-V +PrepNp +257658 Conj-CL +257660 Np2CL +ADV-V-O +O-V +P-ADV-VC-ADV +AdjpaAdjp +257666 PrepNp +257669 DetNP +ofNPNP +DetNP +NPofNP +sub-CL +S-ADV-V-IO-ADV +AdvpNp +Np-Appos +DetNP +AdjpNp +ofNPNP +PrepNp +DetNP +AdjpNp +V-IO +sub-CL +257686 AdvPp +PrepNp +All-NP +PrepNp +PrepNp +ADV-VC-P-S +PrepNp +NP-CL +O-S-V-ADV-ADV +DetAdj +AdjpaAdjp +257698 sub-CL +O2CL +AdvpNp +DetNP +AdjpNp +PrepNp +DetNP +AdjpNp +ofNPNP +257708 Conj-CL +257710 Np2CL +V2CL +sub-CL +ADV-ADV-V-ADV +ADV-V +DetNP +ofNPNP +DetAdj +DetNP +AdjpNp +257721 Conj-CL +V-ADV +PrepNp +NPofNP +NpaNp +257727 Np-Appos +DetNP +NpaNp +NPofNP +257732 Np-Appos +257734 IO-S-ADV +DetNP +EitherAdvpOrPp +PrepNp +NPofNP +257740 S-P +NpNpNpNp +S-VC-P +PrepNp +O-V +O-V-ADV +DetNP +NPofNP +CLaCL +O-V +257751 S-V +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +257759 Conj-CL +Conj4CL +S-V +DetNP +257764 V2CL +257766 V2CL +257768 V-IO-O +NP-CL +DetNP +NPDetAdj +DetAdj +CLaCL +S-VC-P +PrepNp +DetNP +257778 V-IO +257781 O-V-IO +O-V +Conj2VP +257785 AdvpNp +S-O-V-ADV +AdvpNp +PrepNp +257790 Conj-CL +S-P +AdvpNp +DetNP +NPDetAdj +DetAdj +Conj2Pp +PrepNp +DetNP +257800 PrepNp +Np-Appos +DetNP +NPofNP +Np-Appos +257806 Conj-CL +257808 sub-CL +S-V +DetNP +NPofNP +BeVerb +257814 Conj-CL +257816 DetNP +NP-CL +CLaCL +O-V-ADV +PrepNp +257822 V-IO +that-VP +CLaCL +S-P-VC +DetNP +257828 P-ADV-VC-S +PrepNp +NpAdjp +257832 ClCl2 +sub-CL +CLaCL +V-O +that-VP +O-V-ADV +PrepNp +257840 ADV-V +PrepNp +DetNP +CLaCL +V2CL +257846 ADV-V-O +DetNP +257849 Conj-CL +257851 sub-CL +257853 PrepNp +DetNP +sub-CL +S-VC-P +PrepNp +DetNP +O-V-ADV +PrepNp +257862 S-V-O-ADV +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +PrepNp +All-NP +257871 ClCl2 +sub-CL +V-O +that-VP +O-ADV-V +CLaCL +O-V +257879 S-ADV-VC-P +DetNP +PrepNp +257883 ClCl2 +sub-CL +V-O +DetNP +NPofNP +257889 AdjpaAdjp +257891 sub-CL +CLaCL +V-IO-O +DetNP +257896 V-O-ADV +PrepNp +All-NP +257900 ClCl2 +sub-CL +257903 that-VP +ADV-V +CLaCL +O2-V-O +257908 S-ADV-VC-P +DetNP +NPofNP +PrepNp +257914 Np2CL +NPofNP +sub-CL +ADV-V +257919 Conj-CL +257921 sub-CL +S-V +PrepNp +DetNP +Np-Appos +Np-Appos +Np-Appos +257929 Conj-CL +CLaCL +S-P-VC-ADV +PrepNp +DetNP +NPofNP +257936 ADV2CL +notPPbutPP +PpAdvp +PrepNp +DetAdj +AdvPp +PrepNp +All-NP +DetNP +257946 Conj-CL +257948 PrepNp +that-VP +V-O +sub-CL +O-V +DetNP +NPofNP +257956 CLaCL +S-P-VC +DetCL +CLaCL +257961 that-VP +V-O +257964 O-ADV-V +DetNP +NPofNP +257968 P-S-ADV-VC +PrepNp +DetNP +257972 Conj-CL +ClCl2 +PtclCL +S-V-O +ofNPNP +DetNP +ADV-ADV-S-V +PrepNp +DetNP +NPofNP +DetNP +257984 ADV-V-O +PrepNp +that-VP +P-VC +PrepNp +257991 Np2CL +DetCL +V-O +ADV-V +PrepNp +sub-CL +S-V +V-S-O +AdvpNp +ADV-V +258003 Np2CL +notNPbutNP +NpAdjp +NP-CL +NpAdjp +O-V-ADV +PrepNp +258011 S-VC-P +DetNP +NPDetAdj +DetAdj +DetNP +NP-CL +O-V +258020 NpAdjp +258022 S-VC-P-ADV +Conj2Pp +PrepNp +258026 PrepNp +CLaCL +S-V +DetNP +258031 S-ADV-V +DetNP +NPDetAdj +DetAdj +258036 S-P-VC-ADV +DetCL +CLaCL +V-O +P-VC +PrepNp +DetNP +258044 O-V +DetNP +NPofNP +PrepNp +DetNP +PrepNp +258051 CLaCL +S-ADV-V +DetCL +V-O +DetNP +NPofNP +PrepNp +DetNP +258060 S-P-ADV-VC +PrepNp +258063 Conj-CL +ClCl +Conj3CL +S-P-VC +DetCL +V-O +DetNP +NPofNP +PrepNp +DetNP +258074 ADV-V +PrepNp +DetNP +258078 ADV-V-O +ADV-V +sub-CL +S-V-O +DetNP +DetNP +NPofNP +258087 Np2CL +sub-CL +V-IO-S-ADV +DetNP +PrepNp +DetNP +NPofNP +258096 Np2CL +sub-CL +V-O +NpPp +PrepNp +258103 Np2CL +sub-CL +V-O +DetAdj +258109 Np2CL +sub-CL +V-O +DetNP +258115 Np2CL +sub-CL +V-O +NpPp +PrepNp +258122 Np2CL +sub-CL +Conj3CL +P-VC +258127 S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +258133 V-O +DetAdj +258136 ADV-V-O +NpaNp +DetNP +258140 NpPp +PrepNp +DetNP +258145 sub-CL +S-V-O +DetNP +DetNP +NPofNP +DetNP +PrepNp +258153 sub-CL +notCLbutCL2CL +S-VC-P +All-NP +Np-Appos +NpPp +PrepNp +DetNP +Conj3Np +DetNP +NPofNP +DetNP +258166 DetNP +NPofNP +DetNP +258170 DetNP +NPofNP +DetNP +PrepNp +DetNP +P-VC +PrepNp +DetNP +258179 Conj-CL +CLaCL +V-S +NpaNp +DetNP +258185 DetNP +NPofNP +258188 S-V-ADV +DetCL +V-O +DetNP +NPofNP +DetNP +PrepNp +DetNP +258198 Np2CL +P-VC +AdjpNp +258202 ClCl +ClCl2 +sub-CL +258206 that-VP +S-V +ADV-S-V +2Advp_h1 +NpAdjp +sub-CL +258213 that-VP +P-VC +AdjpNp +258217 CLaCL +ADV-V +PrepNp +258221 ADV-VC-P +PrepNp +258224 Conj-CL +258226 sub-CL +P-VC +PrepNp +V-ADV +PrepNp +258232 Conj-CL +sub-CL +258235 that-VP +ADV-VC-S-P +PrepNp +258239 Conj-CL +CLaCL +S-O-V-ADV +PrepNp +DetAdj +258245 V-S +258247 V-IO-ADV +notCLbutCL2CL +sub-CL +ADV-V-O +DetNP +CLaCL +sub-CL +V-O +258256 sub-CL +S-P-ADV-VC +All-NP +PrepNp +DetNP +258263 DetNP +sub-CL +ADV-P +DetCL +258268 that-VP +S-ADV-VC-P +DetNP +258272 S-VC-P +Np-Appos +DetNP +DetCL +V-O +NpaNp +DetNP +258280 DetNP +258282 S-ADV-O-V +All-NP +DetCL +V-O +DetNP +DetNP +258289 S-O-V +DetCL +V-O +DetNP +AdvpNp +DetNP +258297 Np2CL +O-V-ADV +PrepNp +PrepNp +258303 sub-CL +ADV-V-S +PrepNp +O-ADV-V +PrepNp +AdvpNp +Conj2Pp +PrepNp +DetNP +258313 PrepNp +DetNP +258316 Conj-CL +258318 DetNP +NP-CL +O-S-V-IO +P2CL +DetNP +NPDetAdj +DetAdj +258326 O-V-IO-ADV +PrepNp +DetCL +V-O +258331 Conj-CL +258333 Np2CL +S-V-ADV +DetNP +NP-CL +O-V-ADV +PrepNp +PrepNp +258342 ADV-O-V +S-V-O +258345 Conj-CL +ClCl2 +CLaCL +sub-CL +CLaCL +S-V-O-ADV +DetNP +ofNPNP +PrepNp +258355 CLaCL +P-VC +258358 ADV-VC-P +258360 sub-CL +V-O +V-ADV +PrepNp +258365 Conj-CL +258367 Np2CL +PrepNp +sub-CL +CLaCL +258372 sub-CL +V2CL +258375 ADV-V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +258381 ClCl2 +sub-CL +258384 that-VP +P-VC +258387 that-VP +S-ADV-V +AdvpNp +All-NP +DetCL +V-O +DetNP +PrepNp +258396 ClCl2 +V2CL +258399 O-V-IO-S +AdjpNp +DetNP +P-VC +NPofNP +258405 Conj-CL +VC2CL +258409 PrepNp +DetNP +sub-CL +ADV-V-O +258415 Np2CL +ADV-P-VC +NPofNP +258419 ADV-V-S +P-VC +258423 that-VP +258425 sub-CL +V2CL +sub-CL +258429 sub-CL +V2CL +258432 Conj-CL +ClCl +S-V-O +All-NP +DetCL +V-O-ADV +NP-Demo +DetNP +PrepNp +sub-CL +S-P-VC +258444 CLaCL +S-O-V +All-NP +DetCL +V-O +DetNP +AdvpNp +DetNP +258453 S-VC-P +DetNP +DetNP +258457 Conj-CL +258459 that-VP +CLaCL +258462 sub-CL +O-V +DetNP +258466 S-P-ADV-VC +PrepNp +258469 S-ADV-V +All-NP +DetCL +ADV-V +PrepNp +258475 CLaCL +S-ADV-V-O +All-NP +DetCL +V2CL +258481 V-O +258484 Np2CL +258487 DetCL +V-O +DetNP +sub-CL +S-P-VC +258494 DetCL +V-O +DetNP +PrepNp +DetAdj +sub-CL +ADV-S-V +PrepNp +DetAdj +258505 PrepNp +DetNP +NPofNP +DetNP +sub-CL +V-O +DetNP +NPofNP +DetAdj +258515 ClCl +S-O-ADV-V +All-NP +DetCL +V-ADV +PrepNp +DetNP +sub-CL +S-ADV-V +NPofNP +PrepNp +258527 Conj-CL +258529 V2CL +sub-CL +ADV-V +PrepNp +DetNP +258535 ADV-P-VC-S +PrepNp +NpaNp +DetNP +NPofNP +DetNP +258542 DetNP +NPofNP +DetAdj +258546 ClCl +CLaCL +S-ADV-VC-P +All-NP +DetCL +ADV-V-O +PrepNp +DetNP +258555 S2CL +DetCL +ADV-V-O +DetNP +NPofNP +sub-CL +258562 DetNP +NP-CL +O-V-ADV +PrepNp +that-VP +V-O +258569 AdvpCL +sub-CL +CLaCL +S-P-VC +PrepNp +DetAdj +258576 V-O +DetNP +NPofNP +258580 Conj-CL +ADV-V-O +PrepNp +258584 that-VP +CLaCL +S-P-VC +DetNP +NPofNP +258590 S-P +NPofNP +DetNP +NPofNP +258596 Np2CL +sub-CL +V-O-S +DetNP +258602 that-VP +258604 PrepNp +DetNP +PrepNp +DetNP +sub-CL +V-O +DetNP +258612 S-V-ADV +DetCL +ADV-V +PrepNp +DetNP +258618 CLaCL +S-P-VC +All-NP +DetCL +V-O +DetNP +NPofNP +258627 that-VP +S-ADV-V-O +All-NP +NpAdjp +NpAdjp +ADV-V +PrepNp +258636 PrepNp +DetNP +that-VP +S-ADV-O-V +PrepNp +DetNP +NPofNP +258644 Conj-CL +S-V-ADV-O +PrepNp +DetNP +O-V +DetNP +258651 Conj-CL +ClCl2 +PtclCL +Conj3CL +S-V-O +DetNP +NPofNP +DetNP +258660 V-O +S-O-V +DetNP +NPofNP +258665 V-O-ADV +DetNP +NPofNP +PrepNp +ADV-S-V-ADV +DetNP +NPofNP +DetNP +PrepNp +258676 Np2CL +notADVbutADV +NpaNp +258680 DetNP +PrepNp +NpaNp +258685 CLaCL +258687 PrepNp +that-VP +P-VC +PrepNp +DetNP +258693 ClCl +ADV-V-O +PrepNp +DetNP +NPofNP +258699 that-VP +sub-CL +V-S +ofNPNP +DetNP +CLaCL +P-VC-S-ADV +DetNP +DetNP +NPofNP +258710 V-O +258713 Np2CL +ClCl2 +sub-CL +S-ADV-V +DetNP +O-V-ADV +PrepNp +DetNP +258723 O-V-ADV +PtclCL +O-V +PrepNp +CLaCL +O-V +DetNP +NPofNP +258732 O-ADV-V +DetAdj +PrepNp +258736 Conj-CL +258738 DetNP +NPofNP +that-VP +CLaCL +V-O +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +258750 ClCl +V-O +sub-CL +V-O-IO +258755 Conj-CL +CLaCL +S-ADV-V +DetCL +V-O +DetNP +NPofNP +PrepNp +258764 S-ADV +PrepNp +258767 Conj-CL +258769 PrepNp +that-VP +V-ADV +PrepNp +ADV2CL +PrepNp +DetNP +NP-CL +O-IO-V +258780 Np2CL +notCLbutCL2CL +O-V +All-NP +ClCl +V-O +DetNP +PtclCL +P-VC +PrepNp +DetNP +sub-CL +S-V-ADV +AdjpNp +PrepNp +DetNP +258797 ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +258803 CLaCL +S-P-VC +All-NP +NP-CL +S-V-O +S-ADV-V +Np-Appos +PrepNp +PrepNp +DetNP +258814 S-P-ADV-VC +All-NP +NP-CL +S-ADV-V-O +DetNP +PrepNp +DetNP +258822 Conj-CL +S-VC-P +NP-CL +NPofNP +DetNP +CLaCL +258829 ADV-V +V2CL +258832 ADV-P-VC-ADV +PrepNp +DetNP +258837 Np2CL +S-P-VC +PrepNp +DetNP +258842 V-O +sub-CL +CLaCL +P-VC-S +NpPp +PrepNp +258849 S2CL +NpPp +PrepNp +DetNP +258854 S-P-VC +PrepNp +DetNP +258858 CLaCL +ADV-ADV-V +PrepNp +PrepNp +DetNP +258864 S-O-V +DetNP +258867 S-P-VC +PrepNp +DetNP +258872 DetCL +V-O +DetNP +S-ADV-V-O +S-ADV-VC-P +PrepNp +DetNP +258880 ADV-V-O +PrepNp +NpaNp +DetNP +NPofNP +DetNP +258887 DetNP +NPofNP +DetNP +258892 Np2CL +V-O +sub-CL +CLaCL +S-P-VC +DetNP +PrepNp +DetNP +258901 CLaCL +S-ADV-V +All-NP +DetCL +V2CL +PrepNp +DetNP +258909 V-O +DetNP +258913 DetCL +ADV-V +DetNP +sub-CL +S-P-VC +DetNP +258921 PrepNp +DetNP +NPofNP +DetNP +PrepNp +that-VP +258928 DetNP +NPDetAdj +NPofNP +DetAdj +DetNP +PrepNp +DetNP +sub-CL +V-ADV +PrepNp +258940 PrepNp +DetNP +notCLbutCL2CL +that-VP +S-V-O +DetNP +that-VP +CLaCL +S-V-O +258950 V-O-O2 +DetNP +NPofNP +NpPp +PrepNp +DetNP +NPofNP +258959 Np2CL +sub-CL +ADV-S-V-O +DetNP +AdvpNp +O-V +258966 O-S-ADV-V +258969 sub-CL +V-O +S-ADV-V +DetNP +PrepNp +258975 S-ADV-V +DetNP +NPofNP +PrepNp +VerbBe +258982 PrepNp +that-VP +CLaCL +ADV-V +PrepNp +258988 S-ADV +PrepNp +that-VP +O-V-IO +PrepNp +DetNP +NPofNP +258996 Conj-CL +S-V-O +Conj2VP +259000 that-VP +S-V-O-O2 +DetNP +DetNP +NPofNP +DetNP +259007 ClCl2 +PtclCL +259010 S-V +S-VC-P +DetNP +NPofNP +DetNP +CLaCL +S-ADV-V +DetNP +PrepNp +259020 S-ADV +PrepNp +DetNP +259024 Conj-CL +S-V-O +Conj2VP +259028 DetNP +NP-CL +O-V-S-ADV +DetNP +PrepNp +259034 CLaCL +S-P-VC +DetNP +259038 CLaCL +S-ADV-V +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +259047 S-ADV-V +DetNP +PrepNp +259052 ADV-V-S-ADV +PrepNp +DetNP +PrepNp +sub-CL +O-V-ADV +PrepNp +DetNP +NPofNP +DetNP +that-VP +259064 sub-CL +S-VC +AdvpNp +PrepNp +NP-Demo +DetNP +259072 S-ADV-VC-P +PrepNp +DetNP +259076 S-ADV-V-O +DetNP +AdjpNp +DetNP +sub-CL +CLaCL +S-O-V +DetNP +259085 S-ADV-V-ADV +DetCL +V2CL +PrepNp +DetNP +259092 sub-CL +S-ADV-V-O +259095 ClCl2 +sub-CL +CLaCL +259099 that-VP +V-O +DetNP +259103 O-V +DetNP +NPofNP +P-VC +259108 Conj-CL +S-ADV-V-O +DetCL +ADV-V-O +DetNP +NP-CL +NPofNP +O-V +O-V +DetNP +NP-CL +O-ADV-V +259121 Conj-CL +259123 Demo-NP +DetNP +PrepNp +that-VP +S-V-O +DetCL +V-O +DetNP +AdvpNp +DetNP +NPofNP +259135 CLaCL +S-ADV-V +All-NP +DetCL +259140 that-VP +S-VC-P +DetNP +PrepNp +DetNP +259146 S-V-O +All-NP +DetCL +V-O +DetCL +V2CL +DetCL +V-ADV +PrepNp +259156 ClCl +259158 PrepNp +that-VP +V-O +DetNP +NPofNP +DetNP +sub-CL +CLaCL +O-V +DetNP +259169 O-V +DetNP +NPofNP +259173 Conj-CL +259175 P-VC-S +DetNP +NPofNP +DetNP +O-V +DetNP +NPofNP +259183 Conj-CL +259185 DetNP +NPofNP +sub-CL +S-V-O +All-NP +DetCL +V-ADV +PrepNp +DetNP +DetNP +259196 Conj-CL +ClCl +P-VC-S +Np-Appos +DetNP +DetCL +V-O +DetNP +P2CL +DetNP +NPofNP +259208 ClCl +P-VC-S +DetCL +V-O +DetNP +sub-CL +ADV-P +DetCL +259217 that-VP +S-VC-P +DetNP +NPofNP +DetNP +259223 ClCl +P-VC-S +DetCL +V-ADV +PrepNp +NpaNp +259230 P2CL +Np-Appos +259233 notCLbutCL2CL +ADV-ADV +PrepNp +DetNP +ADV2CL +Conj2Pp +PrepNp +DetNP +259242 PrepNp +DetNP +259245 Conj-CL +259247 DetNP +DetCL +V2CL +sub-CL +S-VC-P +DetNP +DetNP +259255 sub-CL +CLaCL +259258 DetCL +V2CL +P2CL +Conj3Np +DetNP +259264 DetNP +259266 DetNP +259268 S-P-VC +DetAdj +PrepNp +DetAdj +259273 ClCl +ClCl2 +Conj-CL +O-V +DetNP +NPofNP +DetNP +S-P-VC +DetNP +NPofNP +DetNP +sub-CL +259286 DetNP +NPofNP +DetNP +that-VP +V-ADV +PrepNp +DetNP +NPofNP +259295 S-V-O-ADV +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +DetNP +PrepNp +259306 DetCL +ADV-V-O +DetNP +sub-CL +ADV-V-ADV +PrepNp +DetNP +NP-CL +O-V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +259320 Conj-CL +259322 DetNP +that-VP +CLaCL +O-V-S-IO +NpAdjp +DetNP +259329 S-P-VC +Demo-NP +DetNP +PrepNp +DetNP +NPofNP +259336 S-V-O +DetCL +V-O +DetNP +DetNP +259342 S-O-ADV-V +DetCL +ADV-V-O +DetNP +NPofNP +DetNP +DetNP +259351 Np-Appos +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +sub-CL +259362 that-VP +O-V +NpAdjp +259366 Conj-CL +259368 P-VC-S +DetNP +NP-CL +O-V-ADV +PrepNp +ClCl2 +sub-CL +O-V-ADV +PrepNp +DetNP +NPofNP +V-O +259381 Conj-CL +ClCl2 +sub-CL +259385 that-VP +V-O-ADV +PtclCL +O-V +259390 that-VP +V-O +DetNP +NP-CL +O-V-ADV +PrepNp +259397 CLaCL +ClCl2 +sub-CL +S-V-O +S-V-O +DetNP +NPofNP +NpPp +AdvPp +PrepNp +V2CL +259409 V-O-IO +Np-Appos +DetCL +V-O +AdvPp +PrepNp +259416 V-S +NpPp +PrepNp +259421 PrepNp +that-VP +V2CL +259425 CLaCL +S-P-VC +All-NP +259429 V-S +NpPp +AdvPp +PrepNp +259435 that-VP +CLaCL +S-ADV-V +All-NP +DetCL +V-ADV +PrepNp +DetNP +259444 CLaCL +S-V-O +DetCL +V-ADV +PrepNp +DetNP +259451 S-ADV-V-O +DetAdj +259455 that-VP +CLaCL +P-VC +PrepNp +DetNP +259461 S-ADV-V +NP-all +DetNP +PrepNp +DetAdj +259467 Conj-CL +259469 that-VP +CLaCL +S-V +DetNP +NPofNP +DetNP +259477 sub-CL +V-O +DetAdj +259481 Conj-CL +VC-P +2Pp +PrepNp +DetAdj +PrepNp +Np-Appos +DetNP +NPofNP +Np-Appos +259492 S-VC-P +NpaNp +DetNP +AdjpNp +259497 NpAdjp +259500 Np2CL +PrepNp +DetNP +259504 CLaCL +S-IO +DetAdj +NP-CL +NpaNp +AdjpNp +259511 DetNP +NPofNP +O-V-ADV-S-ADV +PrepNp +NpaNp +259517 notNPbutNP +NpAdjp +AdvpNp +All-NP +DetCL +V-O +DetNP +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +259531 P-VC-ADV +PrepNp +PrepNp +DetNP +259536 VC-P-S-ADV +PrepNp +NpPp +NpNpNp +Conj2Pp +PrepNp +Np-Appos +259544 PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +PrepNp +NpaNp +259554 ClCl +V-ADV +sub-CL +V-O +ClCl +ADV-V-ADV +PrepNp +DetNP +NPofNP +PrepNp +sub-CL +O-V-ADV +PrepNp +DetNP +259569 Conj-CL +259571 Np2CL +V-IO-ADV +notCLbutCL2CL +sub-CL +O2CL +NpAdjp +O-V-ADV +PrepNp +sub-CL +V-O +259582 Conj-CL +259584 P-VC-S +DetNP +V-ADV +PrepNp +DetNP +NPofNP +259592 DetNP +sub-CL +V-ADV +PrepNp +that-VP +ADV-V +PrepNp +259600 sub-CL +V-ADV-S +PrepNp +DetNP +Np-Appos +AdjpNp +DetCL +ADV-V-O +S-V-ADV +Np-Appos +PrepNp +259612 S-VC-P +NpaNp +DetAdj +259616 DetNP +259619 sub-CL +notCLbutCL2CL +V-O +O-V +O-V +NpAdjp +259626 S-O-ADV-V +All-NP +DetCL +CLaCL +V2CL +259632 ADV-V-ADV +PrepNp +DetNP +NPofNP +DetNP +259639 Np2CL +DetCL +V-ADV +PrepNp +DetNP +aNpaNp +259646 DetNP +259648 DetNP +259650 ClCl2 +sub-CL +CLaCL +S-V-ADV +PrepNp +259656 O-ADV-V +Demo-NP +DetNP +CLaCL +ADV-V-O-ADV +PrepNp +259663 O-IO-ADV-V +V2CL +259666 Conj-CL +S-V-ADV +DetCL +V-IO-O +V2CL +DetNP +NPDetAdj +NPofNP +DetAdj +259676 CLaCL +ADV-ADV-V-ADV +V-O +O-IO-V +PrepNp +NpaNp +259685 CLaCL +VC-P +PrepNp +259689 ADV-V +NpPp +PrepNp +sub-CL +S-V +DetNP +NPofNP +VerbBe +259698 V-O-S +DetNP +NPofNP +DetNP +NPDetAdj +NPofNP +DetAdj +259706 S-IO +DetAdj +NP-CL +NPDetAdj +DetAdj +O-S-V-ADV +PrepNp +259715 Np2CL +PrepNp +S-V +Conj2VP +259720 sub-CL +V-S +ofNPNP +DetNP +259725 Conj-CL +ClCl +V-ADV +ClCl +CLaCL +V-S +259732 V-ADV +ofNPNP +DetNP +sub-CL +S-ADV-V +PrepNp +259740 O-ADV-ADV-V +AdjpNp +V-O +S-ADV-V +DetNP +AdjpNp +PrepNp +DetNP +259750 Np2CL +O-V-ADV +PtclCL +O-V-ADV +PrepNp +DetNP +259757 O-ADV +NP-CL +NP-CL +S-V-ADV-ADV +ofNPNP +DetNP +PrepNp +ADV-ADV-V-ADV +V-ADV-ADV +DetNP +259768 Conj-CL +ADV-V-ADV +PrepNp +DetNP +O-V-ADV +PrepNp +DetAdj +259776 Conj-CL +259778 V-O +DetNP +sub-CL +P-VC-ADV +DetNP +259784 V-O-IO +DetNP +259787 Conj-CL +S-ADV-V-O +Np-Appos +DetCL +V-ADV +259793 ADV-ADV-V-O +PrepNp +sub-CL +V2CL +NP-CL +ofNPNP +DetNP +O-V-ADV +ADV-V-O +NpAdjp +259804 Conj-CL +ClCl2 +ADV-V-ADV +PrepNp +aCLaCLaCL +259810 S-V-O +DetNP +259813 O-V +DetCL +V2CL +259817 ADV-V +PrepNp +DetNP +259822 Np2CL +V-O +DetAdj +O2CL +DetAdj +259828 S-P-VC +DetCL +V2CL +PrepNp +DetNP +259834 S-ADV-V-O +DetCL +V2CL +DetNP +259839 ADV-V-ADV +Conj2Pp +PrepNp +259843 PrepNp +PronNP +DetNP +259847 Conj-CL +CLaCL +S-V +AdvpNp +259853 that-VP +S-P-VC +DetNP +NPofNP +259858 CLaCL +V-O +O-V-IO +259862 ADV-V-O +ADV-IO-V +PrepNp +NpaNp +259868 Conj-CL +CLaCL +V-O +ADV-O-V +259873 ADV-V +NpPp +PrepNp +259877 S-IO +259879 V-O-S +DetAdj +259882 V-O-ADV +DetAdj +PrepNp +259886 S-IO +Np-Appos +NpaNp +ofNPNP +Np-Appos +259892 NPofNP +DetNP +AdjpNp +CLaCL +ADV-V +PrepNp +Np-Appos +259900 ADV-V +Np-Appos +259903 IO-S-V +Conj3Np +259909 Np2CL +O-V-ADV +All-NP +V-IO-ADV +PrepNp +DetNP +AdjpNp +ofNPNP +V-IO-ADV +V-O +V-ADV +DetNP +AdjpNp +ADV-V-IO +DetAdj +259925 Conj-CL +V-S-ADV +Np-Appos +Np-Appos +AdjpNp +DetCL +ADV-V-ADV +PrepNp +Demo-NP +DetNP +CLaCL +O-V-ADV +DetNP +ofNPNP +DetNP +NPofNP +PrepNp +259943 O-V +DetNP +NpaNp +AdjpNp +259948 Np-Appos +NPofNP +Np-Appos +259952 Conj-CL +V-ADV-O +V-ADV-O +ClCl +V-O +259958 CLaCL +S-ADV-ADV-O-V +O-ADV-V +PrepNp +NPofNP +DetAdj +DetCL +ADV-V +259967 O-ADV-ADV-ADV-V +Np-Appos +DetCL +CLaCL +ADV-V-O +DetNP +ofNPNP +259975 V-O +DetNP +AdjpNp +PrepNp +NPofNP +AdjpNp +NpAdjp +PrepNp +sub-CL +S-ADV-V-O-ADV +Conj3Np +259988 DetNP +PpNp2Np +PrepNp +CLaCL +O-ADV-V +DetNP +AdjpNp +259996 V-ADV +PrepNp +NpAdjp +O-V +ofNPNP +NpAdjp +260003 Conj-CL +ADV-S-V +AdvpNp +Demo-NP +V2CL +aCLaCLaCL +260010 O-V +260012 O-V +260014 O-V +260016 Conj-CL +ClCl2 +sub-CL +ADV-V-ADV +ADV-V +DetAdj +PrepNp +DetNP +ofNPNP +notCLbutCL2CL +S-V-O +Np-Appos +DetNP +DetNP +O-V +NPofNP +260033 V-O-S +260035 Conj-CL +aCLaCL +260038 S-O-V +O-ADV-V +260042 O-ADV-ADV-V +sub-CL +S2CL +DetNP +AdjpNp +PrepNp +260049 ClCl +S-IO +sub-CL +Conj3CL +ADV-V +DetNP +NPofNP +DetNP +260058 ADV-V +DetNP +NPofNP +DetNP +ofNPNP +260064 ADV-V +DetNP +NPofNP +DetNP +260070 DetNP +PpNp2Np +PrepNp +DetNP +NPofNP +ClCl +V-ADV +O-V +P2CL +NpNpNpNp +NpAdjp +NpAdjp +ADV-V +PrepNp +NpAdjp +NpAdjp +NpAdjp +NpAdjp +ADV-V +V2CL +NpAdjp +NPofNP +NpAdjp +V-O +DetNP +ofNPNP +NP-CL +Np-Appos +IO-S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +260104 Conj-CL +V-IO-S-ADV +AdvpNp +Np-Appos +NpPp +PrepNp +260112 PrepNp +AdjpNp +NPofNP +CLaCL +V-O-ADV +PrepNp +260119 V-O-ADV +All-NP +DetAdj +Conj2Pp +PrepNp +All-NP +DetNP +NP-CL +NPofNP +NPofNP +ADV-V +260131 PrepNp +All-NP +DetNP +NP-CL +O-V-ADV-S +PrepNp +NpAdjp +260139 CLaCL +S-VC-P +NpAdjp +NpAdjp +ADV-V +PrepNp +DetNP +NPofNP +260148 S-V-O-ADV +DetNP +NPofNP +V-O-ADV +NP-Prep +260154 Conj-CL +260156 Np2CL +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +260169 that-VP +260171 P-VC-S +PrepNp +AdjpNp +DetNP +NpAdjp +V-ADV +PrepNp +DetNP +ofNPNP +NPofNP +DetNP +260183 S-VC-P +NpNpNp +DetCL +V2CL +O-ADV-V +260189 Conj-CL +260191 Np2CL +260193 DetNP +AdjpNp +ofNPNP +ADV-V +PrepNp +NpAdjp +PrepNp +NPofNP +V-O-ADV +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +Np-Appos +PrepNp +NpAdjp +260211 Conj-CL +aCLaCL +260215 O-V +NpAdjp +V2CL +ADV-V +PrepNp +260221 O-V-ADV-ADV +PrepNp +V-O +AdvpNp +DetNP +AdjpNp +ADV-V +PrepNp +DetNP +260231 Conj-CL +260233 Np-Appos +DetNP +V-O +CLaCL +V-O-O2 +260239 V-ADV-O2-ADV +PrepNp +DetNP +NPofNP +PrepNp +Np-Appos +AdjpNp +NPofNP +PrepNp +Np-Appos +Np-Appos +DetNP +NPofNP +3NpaNp +260254 Conj3ADV +PrepNp +All-NP +DetNP +260260 PrepNp +All-NP +DetNP +Intj2CL +260265 P2CL +NP-CL +NPofNP +Np-Appos +CLaCL +O-V-IO-S-ADV +DetNP +V-IO-O +DetNP +NPofNP +S-V +S-V-ADV +PrepNp +260279 V-ADV +V-ADV-IO +PrepNp +DetNP +NPofNP +NP-CL +Np-Appos +DetNP +NPofNP +S-V-O +NP-CL +NpaNp +DetNP +NPofNP +DetNP +260295 DetNP +NPofNP +Np-Appos +O-V +260301 NpaNp +DetCL +V2CL +260305 DetCL +CLaCL +V-O +DetNP +NPofNP +DetNP +260312 V-O +DetCL +ADV-V +PrepNp +sub-CL +S-P +DetNP +260320 S-IO +Np-Appos +DetNP +NumpNP +NpPp +PrepNp +DetNP +260328 S-IO-ADV +NpaNp +260331 Conj3Pp +PrepNp +Conj3Np +DetCL +V2CL +260337 DetCL +V2CL +260340 DetCL +V2CL +260343 PrepNp +DetNP +NP-CL +NumpNP +S-P +PrepNp +DetNP +NPofNP +260352 PrepNp +Np-Appos +Np-Appos +Np-Appos +DetNP +NPDetAdj +DetAdj +NpaNp +DetNP +NPofNP +DetAdj +260364 DetNP +NPofNP +DetNP +NPofNP +DetNP +260370 ClCl2 +CLaCL +Np2CL +DetCL +CLaCL +V-O +260377 V-O-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +260385 V-O-O2 +2Np +NpAdvp +DetNP +NPofNP +NpaNp +260393 NpaNp +DetNP +260396 DetNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +260403 CLaCL +260405 PrepNp +DetNP +260408 CLaCL +V-O-S +NpaNp +All-NP +260413 S-O-V +260415 V-ADV-S +PrepNp +All-NP +DetNP +NPofNP +DetNP +260423 Intj2CL +260425 ClCl +ClCl2 +S-VC-P +NpaNp +DetNP +260431 DetNP +V-S +Np-Appos +DetNP +P2CL +Np-Appos +Conj3Np +DetCL +V2CL +260441 DetCL +V2CL +260444 DetCL +V2CL +DetNP +260448 S-V-ADV-ADV +Np-Appos +Np-Appos +DetNP +NpaNp +NPofNP +260455 NpPp +PrepNp +DetNP +NpPp +Conj3Np +260462 PrepNp +PrepNp +Np-Appos +DetNP +DetCL +VC-P +PrepNp +NpaNp +DetNP +NPofNP +DetNP +260474 DetNP +NPofNP +260477 CLaCL +V-ADV-ADV +PrepNp +PrepNp +DetNP +AdjpNp +260484 V-ADV-O-ADV-ADV +PrepNp +NpAdjp +PrepNp +260489 CLaCL +O-V-ADV +O-V +PrepNp +260494 V-IO +DetNP +NumpNP +NpPp +Conj7Pp +PrepNp +260501 PrepNp +260503 PrepNp +260505 PrepNp +260507 PrepNp +260509 PrepNp +260511 PrepNp +260513 Conj-CL +V-ADV +V-O +DetNP +NP-CL +S-V-ADV +PrepNp +260521 Conj-CL +CLaCL +ADV-V-O +V2CL +NumpNP +NpAdjp +260528 ADV-O +PrepNp +NPofNP +DetNP +AdjpAdvp +NpAdjp +NPofNP +CLaCL +V-O +260538 V-ADV-O +PrepNp +DetNP +NpAdjp +260543 Conj-CL +Conj7CL +ClCl +260547 NpaNp +DetNP +NPofNP +260551 DetNP +sub-CL +S-P +sub-CL +S2CL +260557 S-P +DetNP +NPofNP +PrepNp +NPofNP +260563 S-P-ADV +DetNP +NPofNP +NpAdjp +sub-CL +ADV-V +PrepNp +260571 ClCl +S2CL +DetNP +NPofNP +sub-CL +S2CL +NPofNP +NpAdjp +260580 V-ADV-O +PrepNp +DetNP +AdjpNp +NPofNP +NpNump +260587 ADV-S-V +PrepNp +DetNP +NPofNP +NpAdjp +NpAdjp +260594 ClCl +S2CL +DetNP +NPofNP +sub-CL +S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +260605 Conj-CL +260607 sub-CL +V-O +PrepNp +DetNP +NPofNP +PrepNp +260614 Conj-CL +V-O-ADV-ADV +DetNP +NPofNP +PrepNp +260620 ADV-V +260622 CLaCL +S-VC-P +Conj3Np +DetAdj +260627 DetAdj +260629 DetCL +V2CL +260632 CLaCL +VC-P +260636 V-ADV +VerbBe +PrepNp +DetNP +NPofNP +DetNP +260643 V-O +DetNP +NPofNP +NpaNp +DetNP +260649 DetNP +260651 Conj-CL +V-O +Conj3Np +O-V +260656 S-V +260658 S-V-O +V-ADV +PrepNp +260663 Np2CL +NpaNp +DetNP +NPofNP +DetNP +NP-CL +NumpNP +O-V-ADV +PrepNp +DetNP +NPofNP +260675 DetNP +NumpNP +NPDetAdj +DetAdj +S-P-VC +DetNP +NumpNP +NPofNP +DetNP +NumpNP +260686 S-P-VC +DetNP +NPofNP +DetNump +NumpNP +260692 IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +260699 O-V-S +Np-Appos +DetCL +V-O-ADV +DetNP +NumpNP +PrepNp +DetNP +NPofNP +DetCL +V-ADV +PrepNp +NPofNP +DetNP +NumpNP +NPDetAdj +DetAdj +260717 CLaCL +V-O +Conj3Np +DetNP +NPofNP +260723 DetNP +260725 DetNP +NPofNP +260728 that-VP +CLaCL +ADV-V-O +V-O +260733 CLaCL +V-O +DetCL +V-O-O2 +260738 CLaCL +ADV-VC +260741 V-O +S-P +260744 Conj-CL +CLaCL +O-V +260748 CLaCL +V-ADV +PrepNp +DetNP +NPofNP +260754 ADV-V +260756 Conj-CL +260758 PrepNp +that-VP +O-V +DetNP +NPDetAdj +NPofNP +DetAdj +260766 Conj-CL +Conj3CL +V-O +ADV-V +260771 V2CL +260773 O-V +DetNP +AdjpNp +260777 Conj-CL +CLaCL +260780 sub-CL +ADV2CL +260784 DetNP +NPofNP +PrepNp +DetNP +NPofNP +sub-CL +ADV-V +260792 Conj-CL +260794 that-VP +V-O +NP-CL +DetNP +NPofNP +DetNP +O-S-V +260802 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +260810 Np2CL +DetCL +V2CL +V-ADV +PrepNp +DetNP +NP-CL +NPofNP +DetNP +S-VC-P +PrepNp +DetNP +NPofNP +DetNP +260825 Conj-CL +IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +260833 O-V-S +NP-CL +NpaNp +DetAdj +260838 DetAdj +CLaCL +S-VC-P +260842 V2CL +260844 CLaCL +CLaCL +V-O +ofNPNP +NpaNp +DetNP +260851 DetNP +260853 P-VC +260855 CLaCL +O2CL +DetNP +NpPp +PrepNp +DetCL +V-O +P-VC-S +260864 notCLbutCL2CL +V2CL +P2CL +NPofNP +DetNP +260870 ADV-V-O +O-V +O-V +260876 DetAdj +V-O-ADV +PrepNp +PrepNp +sub-CL +V2CL +260883 V-O +NPofNP +NpNump +260887 CLaCL +VC-P-ADV +PrepNp +260891 V-IO-O +DetNP +NPofNP +DetNP +260896 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +260903 S-ADV-V-ADV +DetCL +V2CL +2Advp_h1 +PrepNp +DetNP +NPDetAdj +DetAdj +260912 Conj-CL +IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +260920 O-V-S +DetCL +V-O +DetNP +NPDetAdj +NPDetAdj +DetAdj +DetAdj +260929 Conj3CL +V-O +NP-CL +ADV-V +P-S +DetNP +NPofNP +DetNP +260938 V-O +DetNP +NPofNP +260942 ADV-V-O-ADV +DetNP +NPofNP +AdvPp +PrepNp +DetNP +NPofNP +NP-CL +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +260957 S-V-ADV +PrepNp +DetNP +260961 Conj-CL +ClCl +V-ADV-O +PrepNp +sub-CL +V-ADV-O +V-O +DetNP +NPofNP +NP-CL +S-V-IO-O +DetNP +260974 PrepNp +DetNP +NPofNP +CLaCL +V-O +260980 V2CL +260982 ADV-V-S-O-ADV +AdvpNp +V-O +DetNP +NPofNP +DetNP +260989 Conj-CL +V2CL +260992 Conj-CL +260994 sub-CL +ADV2CL +V-ADV-ADV +260998 V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +261006 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +261014 Np2CL +DetCL +V2CL +V-IO-O +Np-Appos +DetNP +DetCL +V2CL +261023 V-IO-O +NpaNp +NpAdjp +261027 NP-CL +AdjpNp +ADV-V +PrepNp +DetNP +NpAdjp +261034 O-S-V +ADV-S +DetCL +V2CL +261039 Conj-CL +IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +261047 O-V-S +Np-Appos +DetNP +NPofNP +DetNP +DetCL +CLaCL +V-O-O2 +DetNP +NPofNP +PrepNp +NPofNP +261060 S-P-ADV +DetNP +NPofNP +261064 V-O +NpaNp +NpaNp +ofNPNP +DetNP +261070 Conj4Np +DetNP +261073 DetNP +261075 DetNP +261077 DetNP +NPofNP +261080 S-P-ADV +DetNP +NPDetAdj +NPofNP +DetAdj +DetAdj +261087 Conj-CL +CLaCL +261090 V-ADV +PrepNp +V-O +Np-Appos +Np-Appos +DetNP +DetCL +V-O-O2 +261099 V-O +Conj2VP +261102 S-V +DetNP +AdjpNp +CLaCL +V2CL +261108 V-O +261110 Conj-CL +CLaCL +261113 sub-CL +V2CL +261116 ADV-V-O +V-ADV +PrepNp +DetNP +NPofNP +261123 V-O-ADV +PrepNp +261127 DetCL +V-ADV +PrepNp +PrepNp +NpAdjp +sub-CL +ADV-V-ADV +PrepNp +DetNP +NPofNP +261138 Conj-CL +O-V-ADV +DetNP +NPofNP +PrepNp +261144 Conj-CL +CLaCL +261147 All-NP +DetNP +that-VP +S-VC-P +DetCL +V-O +NpaNp +261156 V-IO-ADV +NpAdjp +PrepNp +DetNP +NPofNP +261162 Conj-CL +261164 NP-CL +NP-CL +Np-Appos +Np-Appos +DetAdj +NpPp +PrepNp +S-ADV-V-O +NP-Demo +DetNP +261175 S-ADV-V-O +DetNP +NPofNP +DetNP +V2CL +ADV-V-ADV-O +PrepNp +AdjpNp +261184 Conj-CL +O-V-ADV +O-V +PrepNp +PtclCL +ADV-V +261191 Conj-CL +261193 Np2CL +NpaNp +DetCL +V2CL +261198 DetCL +V-ADV-O +PrepNp +DetNP +NPofNP +261204 V-IO-O +NpPp +PrepNp +DetNP +261210 PrepNp +NpAdjp +sub-CL +S-V +DetNP +NPDetAdj +DetAdj +sub-CL +S-V-ADV +PrepNp +DetNP +NPofNP +261223 V-IO-O +DetNP +NPDetAdj +DetAdj +261228 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +261235 Conj-CL +IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +261243 O-V-S +DetCL +V-O +NpaNp +DetNP +NumpNP +NPofNP +DetNP +261252 DetNP +NumpNP +261256 ofNPNP +DetNP +that-VP +CLaCL +261261 that-VP +V2CL +261264 P-VC +261266 ClCl +CLaCL +V2CL +BeVerb +261271 V-O +NP-CL +DetAdj +S-V-O +V2CL +sub-CL +ADV-V-O +S-V-ADV +ofNPNP +PrepNp +DetNP +NPofNP +261284 Conj-CL +CLaCL +V-O +ADV-V +Conj2VP +261291 CLaCL +V2CL +261294 V2CL +261296 Conj-CL +ClCl2 +sub-CL +ADV-V +CLaCL +V-ADV +PrepNp +261304 ADV-V-O +2Advp_h1 +ADV-V-ADV +AdjpNp +PrepNp +261310 Conj-CL +CLaCL +261313 AdjpNp +PrepNp +S-ADV-V-O +DetNP +NPofNP +261320 PrepNp +PrepNp +sub-CL +P-VC +261325 Conj3CL +S-ADV-V-ADV +DetCL +V2CL +PrepNp +NpAdjp +261332 ADV-V-O-ADV +2Advp_h1 +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +261341 V-O-ADV +DetNP +NPofNP +Conj2Pp +PrepNp +DetNP +NPofNP +261349 PrepNp +DetNP +NPofNP +261353 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +261360 Conj-CL +IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +261368 O-V-S +Np-Appos +Np-Appos +Np-Appos +DetAdj +DetAdj +DetCL +V-O +DetNP +NPofNP +DetCL +CLaCL +CLaCL +V2CL +261383 S-V +261385 CLaCL +V2CL +261388 S-V +261391 ofNPNP +DetNP +261394 V-ADV-O +PrepNp +NP-CL +NpAdjp +V2CL +O-S-V +O-V +Np-Appos +sub-CL +Conj3CL +O-V +AdjpNp +261407 V-O +ofNPNP +DetNP +261411 ADV-V-O +DetNP +NPofNP +261416 V-O +Np-Appos +PrepNp +DetNP +NPofNP +DetNP +DetCL +V-O +S-P-VC +261426 notCLbutCL2CL +V2CL +V2CL +261430 ClCl2 +V2CL +CLaCL +261434 that-VP +CLaCL +V2CL +261438 V-ADV +PrepNp +DetNP +NPofNP +261444 that-VP +S-V-O +261447 ClCl2 +sub-CL +V-O +DetNP +NPofNP +DetNP +NPofNP +S-O-V-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +V-O +V-ADV-ADV +PrepNp +NP-all +DetNP +V-O +DetCL +V-ADV +PrepNp +DetNP +261472 V-ADV +261475 O-V +sub-CL +S-V-O +DetNP +NPofNP +261482 Np2CL +DetCL +V2CL +V-O-O2-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +261492 ADV-ADV-V-ADV +2Advp_h1 +261495 V-ADV-O +PrepNp +Conj3Np +DetNP +NPofNP +DetNP +NPofNP +261503 DetNP +NPofNP +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetNP +AdjpNp +DetCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +261521 DetNP +NPDetAdj +NPofNP +DetAdj +261526 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +261533 Conj-CL +IO-V +DetNP +NPofNP +DetNP +PpNp2Np +PrepNp +261541 O-V-S +Np-Appos +Np-Appos +DetNP +DetNP +NPDetAdj +DetAdj +AdjpaAdjp +261550 DetNP +NPofNP +DetNP +NPofNP +DetNP +261557 ofNPNP +DetNP +that-VP +VC-P +EitherOrAdjp +261565 ClCl +V2CL +VC-P +AdjpaAdjp +261572 ADV2CL +sub-CL +CLaCL +P-VC +261577 P2CL +EitherOrAdjp +261581 O-V-ADV +PrepNp +DetNP +NPofNP +261586 ClCl2 +sub-CL +CLaCL +261590 that-VP +Conj3CL +P-VC +261594 V2CL +261596 O-V +AdjpNp +261600 that-VP +S-VC-P +DetAdj +Conj5AdjP +261608 V-IO-O +Conj3CL +261611 PrepNp +NpAdjp +V-ADV +PrepNp +sub-CL +V2CL +261619 NpAdjp +sub-CL +CLaCL +V2CL +261624 ADV-V-S +DetNP +NPofNP +DetNP +NPofNP +261631 V-O +DetNP +NPofNP +sub-CL +V2CL +261637 S-O-V +PtclCL +O-V +Conj2VP +261643 Conj-CL +CLaCL +V2CL +261647 V2CL +261650 V-ADV +PrepNp +DetNP +261654 V2CL +261656 ClCl2 +sub-CL +CLaCL +S-V-O +DetNP +NPofNP +261663 V-O +DetNP +CLaCL +V-ADV +PrepNp +261669 CLaCL +V-ADV +PrepNp +261673 S-ADV +PrepNp +261677 Np2CL +DetCL +V2CL +V-ADV-ADV +PrepNp +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +S-V +261689 V-ADV-ADV +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +261697 S-V-O +DetCL +V-O +O-S-V-IO +DetNP +DetNP +261704 CLaCL +ADV-V +PrepNp +261709 S-V-ADV +PrepNp +DetNP +261713 S-ADV-V-ADV-ADV +DetNP +NP-CL +NPDetAdj +DetAdj +O-V +PrepNp +PrepNp +261722 CLaCL +V-ADV +261725 V-IO-O +S-V +S-V-ADV +PrepNp +261730 ADV-V-ADV +PrepNp +261733 Conj-CL +261735 S-V-ADV +PrepNp +DetNP +261739 CLaCL +ADV-V +PrepNp +DetNP +261744 CLaCL +S-P-ADV-ADV +DetCL +V2CL +Np-Appos +NpaNp +261752 S-P-ADV-ADV +NpPp +PrepNp +DetNP +261757 Conj-CL +Conj3CL +P-S +PrepNp +DetNP +NpNump +NumpAdjp +261765 ADV-S-V-ADV +PrepNp +DetNP +NumpNP +NumpAdjp +V-ADV +PrepNp +NpAdjp +261774 P-S +PrepNp +DetNP +NPofNP +NpAdjp +261780 Conj-CL +ADV-V-S +PrepNp +DetNP +Conj3Np +261788 Conj-CL +CLaCL +261791 NumpNP +NPofNP +PrepNp +DetNP +S-VC-P +DetNP +NumpNP +NPofNP +DetNP +261801 P-S +PrepNp +DetNP +PrepNp +NpAdjp +NpAdjp +P-ADV +261809 Conj-CL +P-S +Conj2Pp +PrepNp +NPofNP +DetNP +261816 NPofNP +DetNP +AdjpNp +NpAdjp +V-O-ADV +AdvpaAdvp +261824 Conj-CL +Conj4CL +S-P-ADV +DetNP +NPDetAdj +DetAdj +261831 S-P-ADV +DetNP +AdjpNp +261835 S-V-O +DetNP +AdjpNp +DetNP +NpPp +PrepNp +261842 S-P-ADV +DetNP +AdjpNp +NpAdjp +V2CL +261848 Conj-CL +S-ADV-ADV-V-O +DetNP +AdjpNp +ADV-V-ADV-O +NpPp +PrepNp +NPofNP +NpNump +AdvpaAdvp +261860 Conj-CL +O-ADV-V-ADV-ADV +NpaNp +261865 P-S +3Adjp +Np-Appos +Np-Appos +Np-Appos +DetNP +DetNP +Conj3Np +DetCL +V2CL +261876 DetCL +V2CL +261879 DetCL +V2CL +261882 Conj-CL +ClCl2 +sub-CL +V-S-O-IO +DetNP +Conj3Np +261890 Np-Appos +DetCL +V-ADV +PrepNp +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +CLaCL +V-S-ADV +DetNP +NumpNP +NumpAdjp +PrepNp +DetCL +V-ADV +PrepNp +DetNP +261912 CLaCL +V-O +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +261921 V-O-ADV-ADV +DetNP +NPofNP +PrepNp +DetNP +261928 Np2CL +NPofNP +NpaNp +DetNP +261933 DetNP +P-VC-ADV +V-O +Conj3Np +DetNP +261939 DetNP +261941 DetNP +sub-CL +CLaCL +S-V-O +DetAdj +261947 ADV-V +PrepNp +DetNP +NPofNP +Conj2VP +261954 Conj-CL +V-ADV-O +PrepNp +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetNP +NpAdjp +NpAdjp +V-ADV +AdvpaAdvp +261968 V-ADV +NpNump +261971 Conj-CL +V-O +S-V-ADV-O +NpAdjp +PrepNp +NpAdjp +S-P-ADV +CLaCL +V-O +DetNP +261982 V-O +DetNP +NPofNP +261986 Conj-CL +V-S-O +NpPp +Conj3Pp +PrepNp +DetNP +261993 PrepNp +DetNP +261996 PrepNp +DetNP +CLaCL +V-O +DetNP +262002 V-O +262004 Conj-CL +262006 sub-CL +S-V-ADV +NpAdjp +CLaCL +V-O +DetNP +262013 V-O +262015 Conj-CL +262017 NpPp +PrepNp +DetAdj +ADV-V +262023 Np-Appos +Np-Appos +DetNP +NpPp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +V-O +NpaNp +DetNP +262036 DetNP +NumpNP +NPofNP +262040 Conj-CL +V-O +ADV-S-V-ADV-ADV +Conj2Pp +PrepNp +NPofNP +NpaNp +DetNP +262049 DetNP +AdjpNp +262052 PrepNp +NPofNP +DetAdj +Conj-CL +V2CL +V-O +NpaNp +NpNump +262061 NP-CL +NpNump +S-VC-P +DetNP +NumpNP +NpAdjp +NPofNP +DetNP +V-ADV +PrepNp +All-NP +DetNP +262074 Conj-CL +CLaCL +V2CL +262078 V-ADV +PrepNp +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetNP +262087 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +S-V-ADV-ADV +NpaNp +DetNP +AdjpNp +262097 DetNP +NumpNP +NumpAdjp +PrepNp +DetNP +V-ADV-O +NpaNp +262105 NpAdjp +NpAdjp +V-O +NP-CL +S-VC-P +DetNP +NPofNP +DetAdj +262114 Conj-CL +V-O-ADV +NpAdjp +262118 ClCl +P-VC-ADV +CLaCL +V-O +DetNP +262124 V-O +DetNP +NPofNP +sub-CL +Conj4CL +V2CL +262131 V-IO-ADV-O +DetNP +PrepNp +DetNP +NPofNP +PrepNp +All-NP +Conj4Np +262143 V-O-IO-O2 +DetNP +NPofNP +NpaNp +262149 V-ADV +PrepNp +DetNP +262153 Conj-CL +CLaCL +V2CL +262157 ClCl +CLaCL +V-O-ADV +NPofNP +NpAdjp +NPofNP +Conj3Np +DetNP +262166 DetNP +262168 DetAdj +262170 VC-S-P +DetNP +NPofNP +NpaNp +NPofNP +262176 NPofNP +V-ADV-O +NpAdjp +P-VC-S-ADV +Np-Appos +DetNP +DetCL +V2CL +V-O +DetNP +Conj7Np +262194 Conj-CL +262196 O-V +S-V +NpaNp +All-NP +NP-CL +S-P-VC +Conj4Pp +PrepNp +DetNP +262206 PrepNp +DetNP +262209 PrepNp +DetNP +262212 PrepNp +DetNP +262215 DetNP +PpNp2Np +PrepNp +NpaNp +DetCL +V-ADV +PrepNp +DetNP +262224 DetNP +Conj4Np +DetNP +262228 DetNP +262230 DetNP +262232 DetNP +PrepNp +DetNP +NPofNP +DetNP +262238 Conj-CL +262240 DetNP +AdjpNp +Intj2CL +262244 Conj-CL +CLaCL +S-V +DetAdj +262249 V2CL +262251 Conj-CL +CLaCL +ClCl +V2CL +sub-CL +V-S-O +DetNP +NpPp +PrepNp +DetNP +NumpNP +262263 V-O +262265 NpPp +PrepNp +DetNP +AdjpNp +PrepNp +NPofNP +V2CL +262273 Conj-CL +CLaCL +V2CL +262277 CLaCL +CLaCL +262280 V2CL +NpAdjp +262283 S-V-O +DetCL +V-ADV +PrepNp +262288 CLaCL +V-IO-S +262291 CLaCL +V-ADV +V2CL +262295 sub-CL +V2CL +262298 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +V-O +262307 DetNP +AdjpNp +V2CL +262311 Conj-CL +CLaCL +V-S +AdjpNp +NpAdjp +262318 Np2CL +DetCL +V-ADV +PrepNp +CLaCL +V-IO-S +V-O-ADV +DetNP +PrepNp +DetNP +262329 sub-CL +O-V +262332 V-IO-S +NpAdjp +262335 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +V-O +262344 DetNP +AdjpNp +V2CL +262348 Conj-CL +CLaCL +V2CL +262352 CLaCL +262354 V2CL +NpAdjp +262357 S-V-O-ADV +DetCL +V-ADV +PrepNp +PrepNp +DetNP +NPofNP +262365 Conj-CL +V-O +sub-CL +262369 PrepNp +NPofNP +DetNP +AdjpNp +CLaCL +CLaCL +S-P +NPofNP +262378 S-P +AdjpNp +NPofNP +262382 O-ADV-V +NpaNp +DetNP +262386 DetNP +262388 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +V-O +262397 NPofNP +DetNP +AdjpNp +V2CL +262402 Conj-CL +CLaCL +V2CL +262406 CLaCL +262408 V2CL +NpAdjp +262411 CLaCL +262413 Np2CL +DetCL +V-ADV +PrepNp +DetNP +262419 S-V-ADV +DetNP +PrepNp +262423 Conj-CL +V-IO-S-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +V-ADV +Conj4Pp +PrepNp +262433 PrepNp +262435 PrepNp +262437 PrepNp +DetNP +NPofNP +DetNP +262442 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +AdjpNp +V-ADV-O +PrepNp +DetNP +DetNP +NPofNP +DetCL +V-ADV +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +262461 PrepNp +DetNP +NP-CL +O-V +262466 Conj-CL +V-ADV-ADV +NpAdjp +V-O +262471 Np2CL +DetNP +NPDetAdj +DetAdj +AdjpaAdjp +262477 ADV-ADV-V +PrepNp +262480 V-O-ADV +DetNP +NPofNP +PrepNp +DetCL +V-ADV +PrepNp +DetNP +262489 Conj-CL +CLaCL +V-IO-S +NpAdjp +NpAdjp +262495 V-IO-S +that-VP +262498 NpAdjp +sub-CL +V-S +AdvpNp +Np-Appos +NpaNp +DetNP +NPofNP +262507 DetNP +NPofNP +DetCL +V-O +ClCl +V2CL +sub-CL +S2CL +AdvpNp +262517 Conj-CL +CLaCL +ClCl +V2CL +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +262527 Conj6CL +S-V +NpAdjp +262531 S-VC-P-ADV +DetNP +PrepNp +NpAdjp +262536 S-V-ADV +NP-all +DetNP +PrepNp +262542 DetNP +NPofNP +DetNP +PrepNp +DetNP +Conj-CL +S-V-O-ADV +DetNP +NPofNP +ADV-V +PrepNp +NpAdjp +262556 DetNP +Conj-CL +S-V +262560 S-ADV-V +All-NP +NpaNp +262564 PrepNp +DetNP +NPofNP +262568 Conj-CL +S-V-O-ADV +Conj6Np +DetNP +NPofNP +DetNP +262575 DetNP +262577 DetNP +262579 DetAdj +262581 DetAdj +262583 All-NP +NpaNp +262586 Conj2Pp +PrepNp +DetNP +262590 PrepNp +DetNP +NPofNP +DetNP +262595 Conj-CL +262597 NpaNp +DetNP +262600 DetNP +ClCl +CLaCL +V-ADV +PrepNp +262606 V-O-ADV +Conj2Pp +PrepNp +NPofNP +DetCL +V-ADV +PrepNp +DetNP +262615 PrepNp +DetNP +NPofNP +DetNP +sub-CL +CLaCL +V-S +DetNP +NPofNP +NPDetAdj +DetAdj +DetNP +NPofNP +262629 S-V-O +V2CL +262632 ADV-V-O +PrepNp +262635 AdjpNp +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +V-O +DetNP +AdjpNp +NPofNP +DetNP +sub-CL +ADV-V-S-ADV +Conj3Pp +PrepNp +DetNP +262652 PrepNp +DetNP +262655 PrepNp +All-NP +262658 Conj-CL +CLaCL +V-O +S-V-ADV-ADV +AdjpNp +PrepNp +NPofNP +V-O +NPofNP +NpAdjp +V2CL +262670 V-ADV-IO-ADV +NpAdjp +DetNP +NP-CL +AdjpNp +IO-V-S +Np-Appos +V-O +NpaNp +DetNP +262681 DetNP +262683 ClCl +ADV-V-O +Conj3Np +DetNP +262688 DetNP +262690 DetNP +sub-CL +V-O-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +262701 Conj-CL +V-O +Np-Appos +DetNP +NPofNP +DetCL +V2CL +NpAdjp +NumpNP +NumpNumpNump +V-ADV +PrepNp +All-NP +NPofNP +NPofNP +262717 ClClClClClClClClClClClCl +ADV-S-V +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S +PrepNp +NPofNP +NumpNP +ADV-S-V +PrepNp +NPofNP +NumpNP +262767 CLaCL +ADV-V +PrepNp +262772 S-V-ADV-ADV +NpPp +NP-CL +NpAdjp +O-S-V +O-V +Np-Appos +PrepNp +All-NP +Conj4Np +262785 Conj2Pp +PrepNp +DetNP +262789 PrepNp +DetNP +V-O +NpAdjp +262794 S-P +PrepNp +DetNP +NPofNP +262799 Conj-CL +V-ADV-ADV +NpAdjp +262803 S-IO +DetNP +NpaNp +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetNP +262814 DetNP +262816 Conj-CL +CLaCL +S-V-ADV +All-NP +DetNP +NPofNP +Conj3Np +DetNP +262825 DetAdj +262827 DetNP +AdjpNp +262830 CLaCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +262838 V-O-ADV +DetNP +262842 Intj2CL +Conj7Np +DetNP +262846 DetNP +262848 DetNP +262850 DetNP +262852 DetNP +262854 DetNP +262856 DetNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +Intj2CL +262865 Conj-CL +V-S-ADV +NpPp +PrepNp +DetAdj +262871 CLaCL +S-P-VC +Np-Appos +DetCL +V-O +DetNP +NPDetAdj +DetAdj +262880 ADV-V +262882 Conj-CL +262885 Np2CL +NPofNP +262888 Conj-CL +262890 CLaCL +S-VC-P +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetAdj +262899 CLaCL +V-O +DetNP +NPofNP +262904 V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +262910 CLaCL +CLaCL +ADV-VC-P +PrepNp +PrepNp +DetNP +NPofNP +DetNP +262919 V-O-ADV-ADV +NpaNp +262922 PrepNp +DetNP +NPofNP +262926 S-V-ADV +DetCL +V-ADV +PrepNp +DetNP +PrepNp +262934 ADV-V-ADV +262936 V-ADV +262938 ADV-V-ADV-S +PrepNp +NpaNp +DetNP +262943 All-NP +sub-CL +CLaCL +CLaCL +S-V-O +Np-Appos +DetNP +NpPp +PrepNp +NPofNP +DetNP +262955 V-O-ADV +PrepNp +ofNPNP +NPofNP +262960 V-S-O-ADV +DetNP +All-NP +PrepNp +DetNP +NPofNP +262967 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +NPDetAdj +DetAdj +V-S-ADV-ADV +PrepNp +DetNP +AdvpNp +262979 Conj-CL +CLaCL +V-O +DetNP +NP-CL +NumpNP +S-ADV-V +PrepNp +DetNP +262989 V-IO-S +NumpNP +262992 Conj-CL +CLaCL +S-V +AdjpNp +262997 CLaCL +V-ADV-ADV +PrepNp +DetNP +V-O +NpAdjp +263004 ClCl +V-IO-S +NpAdjp +sub-CL +V-ADV-ADV +DetNP +NPofNP +NP-all +DetNP +PrepNp +Np-Appos +DetNP +NPDetAdj +DetAdj +NpPp +PrepNp +DetNP +263022 Conj-CL +V-S-ADV-ADV-ADV +DetNP +NPofNP +DetNP +DetNP +NPofNP +DetAdj +PrepNp +NPofNP +DetNP +PrepNp +DetNP +263036 Conj-CL +Conj3CL +V-S-O +DetNP +DetNP +263042 V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +263048 V-ADV +PrepNp +DetNP +263052 Conj-CL +V-S +Conj4Np +263059 Conj-CL +263061 Np-Appos +DetNP +NumpNP +DetCL +V-O +DetNP +NumpNP +sub-CL +V2CL +263071 Conj-CL +S-V +DetAdj +263075 Conj-CL +CLaCL +V-S-ADV +NpaNp +263080 V-ADV +PrepNp +263083 V-ADV +PrepNp +DetNP +263087 Conj-CL +Conj3CL +S-V +DetNP +NPofNP +DetNP +263094 S-V +DetNP +NPofNP +DetNP +263099 S-V +All-NP +NpAdjp +263103 Conj-CL +S-V +DetNP +AdjpNp +263108 Conj-CL +S-V-ADV +PrepNp +NpAdjp +NpAdjp +ADV-V +PrepNp +DetNP +263117 Conj-CL +Conj3CL +VC-S-P +DetNP +NPofNP +DetNP +263124 V-S +DetNP +NPofNP +Np-Appos +Np-Appos +DetNP +NpPp +PrepNp +DetNP +DetCL +V-O +263136 S-V +DetNP +NPofNP +DetNP +263141 Conj-CL +S-V +DetNP +AdjpNp +263146 Conj-CL +CLaCL +V-ADV-S-ADV +PrepNp +DetNP +NpAdjp +ClCl +V2CL +sub-CL +S2CL +263157 V-ADV +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +263164 PrepNp +DetNP +NPofNP +DetNP +263169 Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +DetNP +263176 Conj-CL +CLaCL +VC-S-P +DetNP +NPofNP +DetNP +PrepNp +263184 ClCl +S-V-ADV +NPofNP +DetNP +PrepNp +DetNP +sub-CL +V2CL +263193 Conj-CL +S-V +DetNP +AdjpNp +263198 Conj-CL +CLaCL +263201 Conj3Np +DetNP +NPofNP +DetNP +263206 DetNP +NPofNP +DetNP +263210 DetNP +NPofNP +DetNP +sub-CL +V-S +DetNP +NPofNP +263218 CLaCL +S-ADV-V-ADV +DetNP +DetNP +NPofNP +263224 S-ADV +DetNP +263227 Conj-CL +CLaCL +V2CL +263231 V-O +263233 AdjpNp +V-ADV +PrepNp +NpAdjp +S-ADV-ADV +NpNpNp +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +NPofNP +Np-Appos +DetNP +AdjpNp +DetCL +V-O +V2CL +263256 Conj-CL +S-V +DetNP +AdjpNp +263261 Conj-CL +CLaCL +V-O +S-ADV-V-ADV +PrepNp +DetNP +PrepNp +DetNP +263270 V-IO-S +DetNP +NPofNP +DetNP +NPofNP +DetNP +263277 Conj-CL +CLaCL +CLaCL +V-O +DetNP +NPofNP +DetNP +263286 PrepNp +DetNP +sub-CL +S2CL +NPofNP +NpAdjp +263293 V-S-ADV +NpaNp +DetNP +263297 DetNP +PrepNp +DetNP +NPofNP +DetNP +263303 Conj-CL +CLaCL +ADV-V-S-ADV +PrepNp +DetNP +PrepNp +DetNP +263312 sub-CL +V-O-S +DetNP +NPofNP +DetNP +263318 Conj-CL +V-IO-S +that-VP +ClCl +ADV-V-O +Conj3Np +DetNP +NPofNP +DetNP +263328 All-NP +263330 All-NP +sub-CL +ADV-O +DetNP +NP-CL +S-ADV-V-O-ADV +DetNP +NPofNP +DetNP +PrepNp +DetNP +263342 Conj-CL +V-IO-S +that-VP +notCLbutCL2CL +V-O +that-VP +V-ADV +NpNump +263351 Conj-CL +263353 DetNP +NPofNP +PrepNp +NPofNP +sub-CL +V-O +263360 Conj-CL +CLaCL +CLaCL +ADV-V-S-O +PrepNp +NP-Demo +DetNP +DetNP +DetNP +263370 ADV-V-O +2Advp_h1 +263373 CLaCL +V-O +V2CL +263377 V-S-ADV +DetNP +PrepNp +263381 Conj-CL +Conj7CL +S-P-ADV +DetNP +NPofNP +DetNP +NpAdjp +V-ADV +PrepNp +263391 P-S +PrepNp +DetNP +NPofNP +PrepNp +NP-CL +P-ADV +263399 S-P +DetNP +NPofNP +PrepNp +NPofNP +263405 V-O +NpPp +PrepNp +NPofNP +263410 S-P-VC +DetNP +NPofNP +PrepNp +263415 V-O +NpPp +PrepNp +NpAdjp +263420 S-P +DetNP +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +NPofNP +NpAdjp +NpAdjp +V-ADV +PrepNp +263433 Conj-CL +CLaCL +V-O +NpaNp +NP-CL +P-ADV +263441 P-S +PrepNp +DetNP +NPofNP +DetNP +NP-CL +NPofNP +V-O-ADV +DetNP +NpNump +263452 V-ADV-O +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +263459 CLaCL +S-ADV-P +NpAdvp +263463 ADV-O-V-O2 +PrepNp +DetAdj +263467 S-V +DetNP +NPDetAdj +DetAdj +263473 NumpNP +PrepNp +263476 Conj-CL +S-V +DetNP +AdjpNp +263481 Conj-CL +V-O-ADV-ADV +NpAdjp +PrepNp +DetNP +AdjpNp +NPofNP +Np-Appos +DetNP +NPDetAdj +DetAdj +NpPp +PrepNp +DetNP +V-IO-O +Np-Appos +DetNP +AdjpNp +DetCL +V-O +DetNP +V-O +Np-Appos +DetNP +AdjpNp +DetCL +V-ADV +PrepNp +Np-Appos +DetNP +NPDetAdj +DetAdj +263514 Conj-CL +263516 Np-Appos +DetNP +AdjpNp +DetCL +V-ADV +PrepNp +DetNP +Conj4Np +263527 sub-CL +V-O +DetNP +NPofNP +DetNP +263533 Conj-CL +S-P +DetNP +NPofNP +DetNP +NPDetAdj +DetAdj +NPofNP +263542 V-O +DetNP +NPofNP +263546 Conj-CL +CLaCL +ADV-V-O-ADV +DetNP +PrepNp +DetNP +263553 S-V-O +DetCL +V-ADV +PrepNp +NpAdjp +Conj3Adjp +263562 Conj-CL +CLaCL +S-P +DetNP +NPofNP +DetNP +PrepNp +NPofNP +263571 ADV-V-S +PrepNp +DetNP +NPofNP +Conj3Np +263579 V-S-ADV +DetNP +NPofNP +DetNP +2Pp +PrepNp +NP-Demo +DetNP +AdjpNp +PrepNp +Np-Appos +Conj3Np +DetNP +263593 DetNP +263595 DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +263602 Conj-CL +S-VC-P +DetNP +NPofNP +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +263612 PrepNp +DetNP +NPofNP +263616 Conj-CL +CLaCL +S-P-ADV-ADV +DetNP +NPofNP +V-O +263623 ADV-V +PrepNp +263626 Conj-CL +CLaCL +263629 S-ADV-V-ADV +DetNP +NP-CL +NPofNP +DetNP +S-ADV-V-ADV +PrepNp +NP-Demo +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +ADV-V-O +NpaNp +DetNP +263647 DetNP +NP-CL +NPDetAdj +Conj5Np +DetAdj +263653 DetAdj +263655 DetAdj +263657 DetAdj +263659 DetAdj +S-V-O +V2CL +EitherOr3Vp +263667 ADV-V-ADV +Conj4Pp +PrepNp +DetNP +NPofNP +263673 PrepNp +DetNP +NPofNP +263677 PrepNp +DetNP +NPofNP +263681 PrepNp +DetNP +NPofNP +263685 Conj-CL +CLaCL +V-O +S-V-ADV-ADV +AdjpNp +NpAdjp +PrepNp +DetNP +V-O +263695 CLaCL +Conj3CL +S-P +DetNP +PrepNp +DetNP +NPofNP +263703 S-P +DetNP +NPofNP +PrepNp +DetNP +263709 S-P +DetNP +NPofNP +PrepNp +NPofNP +263715 V-ADV-O +PrepNp +DetNP +NPofNP +NpAdjp +V2CL +263722 Conj-CL +CLaCL +CLaCL +V-O-ADV +DetNP +NPDetAdj +NPofNP +DetAdj +PrepNp +DetNP +263733 O-ADV +DetAdj +PrepNp +DetNP +263739 NpAdjp +sub-CL +S-V +263743 Conj-CL +ClCl2 +sub-CL +V2CL +V-S-O +DetNP +NumpNP +DetNP +ofNPNP +263753 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +NumpNP +V-O +V2CL +263762 Conj-CL +V-O +S-ADV-V-O +PrepNp +DetNP +CLaCL +V-O +O-V-S +DetNP +NumpNP +263773 ADV-O-V +263775 Conj-CL +CLaCL +S-V-O-ADV +DetNP +NP-CL +O-V +S-V-ADV +Conj2Pp +PrepNp +DetNP +263786 PrepNp +DetNP +DetNP +NPDetAdj +NPofNP +DetAdj +PrepNp +DetNP +263796 PrepNp +NP-CL +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +S-V-O +Conj3Np +NpaNp +DetNP +263809 NpPp +PrepNp +263812 NpaNp +DetNP +263815 NpPp +PrepNp +263818 NpaNp +DetNP +263821 NpPp +PrepNp +that-VP +CLaCL +S-ADV-V +263828 PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +AdjpNp +sub-CL +V-O +V2CL +DetNP +NPofNP +DetNP +sub-CL +V-O +Np-Appos +DetNP +ofNPNP +DetNP +263848 Conj-CL +CLaCL +S-ADV-V-ADV +DetNP +NP-CL +O-V-ADV +PrepNp +DetNP +PrepNp +263858 V-O +ClCl +V2CL +V-O +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-ADV +Conj2Pp +PrepNp +DetNP +263877 PrepNp +DetNP +263880 Conj-CL +V-ADV-ADV +PrepNp +DetNP +V-IO-O +V-IO-O +DetNP +263888 Conj-CL +263890 CLaCL +CLaCL +V2CL +263894 V-O +263896 CLaCL +V-O +ofNPNP +DetNP +263902 PrepNp +DetNP +NPofNP +sub-CL +S2CL +263908 Conj-CL +CLaCL +CLaCL +V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +263918 V-O +263920 VC-ADV-ADV-P +PrepNp +DetNP +NPofNP +PrepNp +263926 Conj-CL +263928 sub-CL +V-O +DetNP +NPofNP +263933 Conj-CL +263935 V-S +S-ADV-V-ADV +PrepNp +NpAdjp +Conj4Np +263944 Conj-CL +V-IO-S-ADV +NP-CL +P-ADV +263949 CLaCL +V2CL +263952 V-O +Conj3Np +DetNP +NPofNP +DetNP +263958 DetNP +263960 DetCL +V-ADV +PrepNp +263964 Conj-CL +263966 O-V-ADV +Np-Appos +DetNP +NPofNP +DetAdv +DetNP +263973 ADV-O-V +sub-CL +CLaCL +V-IO +DetNP +263979 O-V-ADV +DetNP +NPDetAdj +DetAdj +NpNump +NumpNump +263986 Conj-CL +CLaCL +V-IO +DetNP +AdjpNp +NPofNP +263993 V-ADV-ADV +NpNump +NumpNumpNump3 +V-O +263998 S-VC-P +Np-Appos +NpaNp +DetNP +NumpNP +264004 DetNP +NumpNP +DetCL +ADV-V +PrepNp +DetNP +NPofNP +DetNP +264013 Conj-CL +ClCl2 +sub-CL +S-V-O +O-V +CLaCL +S-V-ADV +PrepNp +DetNP +NPofNP +264024 V-O +DetNP +NPofNP +264028 Conj-CL +ClCl2 +sub-CL +S-V-O +O-V +ADV-V-S +S-V +264036 Conj3CL +ClCl +S-V-O-ADV +DetNP +V-O +DetNP +sub-CL +ADV-S-V-ADV +DetNP +NPofNP +DetNP +NPofNP +264049 O-V-ADV-ADV +PrepNp +DetNP +V-O-ADV +PrepNp +264055 ClCl +V-O-ADV +DetNP +PrepNp +All-NP +AdvpCL +PtclCL +V2CL +264064 Conj-CL +ClCl2 +sub-CL +V-O +DetNP +NPofNP +CLaCL +S-V-ADV-O +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +PrepNp +264080 CLaCL +V-O +264083 V-O +264085 Conj-CL +S-P +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +NP-CL +NP-CL +NPDetAdj +DetAdj +S-VC-ADV-P +NpaNp +264100 ADV-S-V +AdvpNp +DetNP +NPofNP +264105 Conj-CL +CLaCL +V-S-O-ADV +PrepNp +Conj4Np +DetNP +264114 DetNP +NPofNP +NpAdjp +AdjpaAdjp +264120 ADV-V-O +S-V-ADV +DetNP +NPofNP +PrepNp +264126 Conj-CL +264128 CLaCL +S-V-ADV +DetCL +V-ADV +PrepNp +DetNP +PrepNp +264136 V2CL +264138 O-V-IO +sub-CL +S-V-O +Demo-NP +DetNP +NumpNP +DetCL +V-ADV +PrepNp +DetNP +264149 Conj-CL +CLaCL +CLaCL +ADV-S-ADV-V-ADV +PrepNp +DetNP +AdjpNp +AdjpaAdjp +264158 NPofNP +PrepNp +DetNP +PrepNp +264163 V-ADV +PrepNp +DetNP +NPofNP +264168 S-V-ADV +NpAdjp +PrepNp +DetCL +V-O +264174 Conj-CL +V-O +264177 NpAdjp +PrepNp +DetNP +V-ADV +264182 Conj-CL +CLaCL +V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +264190 V-O-S +DetNP +NPofNP +264194 Conj-CL +CLaCL +ADV-V-S +PrepNp +Demo-NP +DetNP +NpAdjp +264202 CLaCL +S-V +DetNP +NPofNP +DetNP +264208 CLaCL +V-ADV-S +PrepNp +DetNP +Np-Appos +NPofNP +NpNump +264216 CLaCL +S-P-VC +DetAdj +264220 V-O-IO +DetNP +NPofNP +DetNP +264225 S-V +DetNP +NPDetAdj +DetAdj +264231 DetNP +NPDetAdj +DetAdj +264235 Conj-CL +S-V +DetNP +AdjpNp +264240 Conj-CL +V-S-ADV-ADV +NpAdjp +PrepNp +DetNP +264246 CLaCL +VC-S-P +DetNP +NPofNP +DetNP +NpaNp +DetNP +NPofNP +264255 DetNP +NPofNP +264258 V-ADV +PrepNp +DetNP +NPofNP +DetNP +264264 Conj-CL +CLaCL +S-V-ADV +Np-Appos +DetNP +NumpNP +NumpAdjp +DetCL +ADV-V-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +NPofNP +264282 V-O-ADV +DetNP +264285 ClCl +264287 Np2CL +Np-Appos +Np-Appos +Np-Appos +DetNP +DetNP +NpaNp +DetCL +V2CL +264297 DetCL +V2CL +sub-CL +CLaCL +V-O +DetNP +NPDetAdj +NPofNP +DetAdj +264307 V2CL +264309 Conj-CL +CLaCL +S-V +DetNP +264314 CLaCL +V-S +DetNP +NPofNP +264319 S2CL +DetNP +NP-CL +NPofNP +DetAdj +Conj3CL +V2CL +264327 V-O-IO-ADV +DetNP +Np-Appos +DetNP +NPofNP +Conj3Np +DetNP +264335 DetAdj +264337 DetCL +V-O +DetNP +NPofNP +NpaNp +DetAdj +264344 DetAdj +264346 V-O +DetCL +V-O +DetNP +264351 Conj-CL +CLaCL +V-S +Np-Appos +DetNP +NPofNP +DetNP +NpPp +PrepNp +DetNP +264362 V-S-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +264371 Conj-CL +V-S +Conj5Np +264378 NpAdjp +264380 Conj-CL +264382 NpAdjp +PrepNp +DetNP +CLaCL +CLaCL +Conj3CL +S-V-O +DetNP +264391 S-P +DetNP +PrepNp +DetNP +NPofNP +264397 P-S +PrepNp +DetNP +NPofNP +NPofNP +NpNump +264404 ADV-V +PrepNp +264407 V-ADV +CLaCL +V2CL +264411 V-ADV +V2CL +264414 Conj-CL +CLaCL +V-S-ADV +AdjpNp +PrepNp +DetNP +264421 CLaCL +264423 S-V-O +NpAdjp +NpAdjp +NpaNp +NpNump +264429 NpNump +264431 P-S +PrepNp +DetNP +NPofNP +NumpNP +264437 CLaCL +S-V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +264447 V-O-ADV +PrepNp +DetNP +264451 Conj-CL +264453 DetNP +PrepNp +Np-Appos +DetNP +DetCL +V-O +V2CL +sub-CL +264462 sub-CL +V-O +DetNP +NPofNP +264467 Conj-CL +V-O +NP-CL +NpAdjp +S-V-O +V-O-ADV +All-NP +DetNP +PrepNp +NpAdjp +264478 Conj-CL +V-S-ADV +DetNP +NPofNP +Conj2Pp +PrepNp +DetNP +264486 PrepNp +DetNP +NPofNP +264490 Conj-CL +264492 DetNP +PrepNp +NP-CL +DetAdj +ADV-V-ADV-O +NpAdjp +V-ADV +PrepNp +DetNP +sub-CL +ADV-V-O-ADV +NpNump +NumpNumpNump3 +264506 Conj-CL +ClCl +V-S-ADV +PrepNp +DetNP +S-ADV +NpaNp +DetNP +264515 DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetNP +264522 Conj-CL +CLaCL +V-S +NpaNp +DetNP +264528 DetNP +NPofNP +264531 ClCl +ADV-V +ADV-S-V-ADV-ADV +NPofNP +PrepNp +DetNP +264538 Conj-CL +264540 Np-Appos +Np-Appos +Np-Appos +DetNP +NPDetAdj +DetAdj +DetNP +NPDetAdj +DetAdj +DetCL +VC-P +NpaNp +264553 DetNP +DetCL +V-O +NP-all +DetNP +CLaCL +V-ADV +PrepNp +DetNP +264563 S-ADV-V +DetNP +NPofNP +PrepNp +264568 Conj-CL +V-O +264571 NpAdjp +PrepNp +DetNP +ClCl +ADV-V-S +Conj4Np +DetNP +264579 DetNP +264581 DetNP +NPofNP +DetNP +NPofNP +264586 DetNP +NPofNP +DetNP +NPofNP +sub-CL +V-S +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetCL +V-O-ADV-ADV +PrepNp +DetNP +NPofNP +NpaNp +264605 Conj-CL +CLaCL +S-V-O-ADV +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +264614 PrepNp +DetNP +NPofNP +DetNP +NPofNP +264620 ADV-V-O-ADV +DetNP +NPofNP +PrepNp +264626 PrepNp +Np2CL +NpaNp +264630 DetCL +ADV-V +PrepNp +264634 ClCl +S-ADV +NpaNp +DetNP +264639 DetNP +sub-CL +V-S-ADV-ADV-ADV +DetAdj +PrepNp +V-O +NpAdjp +264647 that-VP +O-V +AdjpNp +264651 Conj-CL +264653 sub-CL +264655 DetNP +that-VP +V-ADV +PrepNp +DetNP +DetNP +NP-CL +S-V-O +DetAdj +264665 Conj-CL +264667 DetNP +DetNP +NumpNP +NPofNP +DetNP +NPofNP +DetAdj +sub-CL +V-ADV-ADV +PrepNp +DetAdj +PrepNp +NP-CL +DetNP +NPofNP +ADV-V-ADV-ADV-ADV +Conj3Np +264686 NPofNP +PrepNp +NPofNP +DetNP +264691 Conj-CL +264693 DetNP +PrepNp +DetNP +NPofNP +PrepNp +DetNP +sub-CL +O2CL +sub-CL +O-O2-V +264704 Conj-CL +CLaCL +V-S-O +DetNP +DetNP +264710 CLaCL +V-S-O +DetNP +DetNP +NPofNP +264716 V-O +DetNP +NP-CL +O-V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +264725 Conj-CL +CLaCL +V-S-ADV +DetNP +PrepNp +DetNP +264732 V-ADV +V-O-ADV +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetCL +CLaCL +V-O +DetNP +NPofNP +DetNP +264747 V-O +DetNP +NPofNP +264751 Conj-CL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +264758 Conj-CL +CLaCL +V-O +ADV-S-V-ADV +PrepNp +DetNP +V-O +NpaNp +NpNump +264768 NpNump +264770 CLaCL +P-S +PrepNp +DetNP +NPofNP +NumpNP +264777 P-S +PrepNp +DetNP +NPofNP +NPofNP +264783 Conj-CL +CLaCL +S-VC-P-ADV +DetNP +NP-CL +O-V +264790 CLaCL +S-P +DetNP +NPofNP +PrepNp +264796 S-P +DetNP +NPofNP +PrepNp +NPofNP +264802 Conj-CL +V-IO-S-O +DetNP +Conj3Np +DetNP +NPofNP +264809 DetNP +NPofNP +264812 NpAdjp +264814 Conj-CL +CLaCL +O-O2 +NpPp +PrepNp +DetNP +NPofNP +sub-CL +V-ADV +PrepNp +264825 S-V +DetNP +NPofNP +DetNP +NPofNP +264831 Conj-CL +CLaCL +CLaCL +V-S-ADV +All-NP +DetNP +PrepNp +DetNP +264841 DetNP +sub-CL +V-O-IO +DetNP +DetNP +264847 V-O-ADV +DetNP +264850 CLaCL +S-P-ADV +DetNP +264854 S-V-O +V-ADV +PrepNp +264858 Conj-CL +CLaCL +V-IO-S +NpAdjp +V-O +NpaNp +264866 V-IO-S-ADV +V-ADV +NpNump +NumpNump +264871 Conj-CL +V-O-ADV-ADV +DetNP +NPofNP +PrepNp +NpPp +PrepNp +DetNP +V-O +NpaNp +DetNP +NPofNP +264884 Np-Appos +DetNP +NPofNP +DetCL +ADV-V +PrepNp +DetNP +264892 Conj-CL +CLaCL +V-IO-S +CLaCL +V-O-ADV +PrepNp +DetAdj +264900 V-O +264902 V-IO-S-ADV +PrepNp +All-NP +Conj4Np +264910 Conj-CL +V-O-S +All-NP +NP-CL +DetCL +V-ADV +PrepNp +DetNP +ADV-V-S-ADV-ADV +ofNPNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V2CL +PrepNp +NPofNP +264934 ClCl2 +sub-CL +S-V-O +V2CL +264940 sub-CL +S-ADV +PrepNp +PrepNp +264946 sub-CL +S-ADV-V +PrepNp +S-ADV-V +PrepNp +264952 P-VC-S +NPofNP +NpaNp +DetNP +264957 DetNP +DetAdj +264960 Conj-CL +CLaCL +V-O +S-V-ADV +AdjpNp +PrepNp +DetNP +264968 CLaCL +V-O-O2 +NpNump +AdjpAdvp +264974 sub-CL +S2CL +264977 Conj-CL +O-V-ADV +NP-all +DetNP +NPofNP +DetNP +AdjpNp +PrepNp +264986 Conj-CL +264988 NpaNp +DetNP +264991 DetCL +ADV-V +PrepNp +sub-CL +V-O +NP-CL +DetNP +NPDetAdj +DetAdj +ADV-V-S +DetNP +NPofNP +DetNP +NPofNP +265006 Conj-CL +265008 NpAdjp +sub-CL +ADV-V-O +S-ADV-V-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +PrepNp +DetNP +265019 Conj-CL +V-O-ADV-ADV +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +NP-CL +S-V-IO-ADV +V-ADV +PrepNp +DetNP +V-IO-O +DetCL +V-ADV +PrepNp +DetNP +V-O-IO +DetNP +NP-CL +CLaCL +S-V-O +DetNP +NPofNP +DetNP +265046 V2CL +265048 Conj-CL +ClCl +V-IO-S +V-O-IO +DetNP +NPofNP +DetNP +sub-CL +CLaCL +ADV-V-S +DetNP +NPofNP +DetNP +265062 ClCl +V2CL +sub-CL +S-V +PtclCL +S-ADV-V-O +DetNP +NPofNP +DetNP +265072 Conj-CL +ClCl +V-O +Np-Appos +Conj3Np +NpaNp +DetAdj +265080 DetAdj +265082 NpaNp +DetAdj +265085 DetAdj +265087 NpaNp +DetAdj +265090 DetNP +CLaCL +sub-CL +V-IO-O-ADV +Conj2Pp +PrepNp +DetNP +NPDetAdj +NPofNP +DetAdj +265101 PrepNp +DetNP +NPofNP +265105 sub-CL +ClCl +ADV-S-V-O +CLaCL +V2CL +265111 V2CL +sub-CL +ADV-S +DetCL +V-O +Np-Appos +DetNP +NpaNp +DetNP +NPofNP +DetNP +265123 DetNP +NPofNP +DetNP +NPofNP +265128 P-S-VC +DetNP +265132 DetCL +V-O +DetNP +NPofNP +DetNP +sub-CL +P-VC +NPofNP +265141 Conj-CL +S-P +DetNP +NPofNP +NumpNumpNump2 +265147 Conj-CL +CLaCL +V2CL +265152 S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +265158 P-S +PrepNp +NpAdjp +NumpNP +NumpNumpNump +V-O +S-V-ADV +NpaNp +DetNP +NPofNP +265169 DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +265177 Conj-CL +CLaCL +265180 PrepNp +DetNP +CLaCL +sub-CL +O2CL +NPofNP +NpAdjp +265188 sub-CL +O2CL +NPofNP +NpAdjp +265193 S-P +DetNP +NP-CL +O-V +PrepNp +S-V-ADV +PrepNp +DetNP +NPofNP +265203 Conj-CL +V-O-ADV +NpAdjp +Conj2Pp +PrepNp +DetNP +265210 PrepNp +NpaNp +DetNP +AdjpNp +265215 DetAdj +265217 Conj-CL +265219 V-O +DetNP +sub-CL +ADV-S +Np-Appos +DetNP +NumpNP +NumpNumpNump +DetCL +V-ADV +PrepNp +DetNP +265232 ClCl2 +S-VC-P +S-ADV-ADV-V +PrepNp +sub-CL +P-VC +265239 S-P +DetCL +V-O-ADV +DetNP +PtclCL +ADV-V +265246 CLaCL +S-V-ADV-ADV +PrepNp +DetNP +NpAdvp +NpaNp +DetNP +265254 DetNP +265256 ADV-ADV-V-S +PrepNp +DetNP +NPofNP +265261 P-VC +265263 Conj-CL +V-O +S-V-ADV-ADV-ADV +AdjpNp +PrepNp +V-O-ADV +NpAdjp +V-ADV +Conj2Pp +PrepNp +DetCL +V-ADV +PrepNp +DetNP +265278 PrepNp +All-NP +Conj4Np +265285 PrepNp +NpAdjp +CLaCL +ClCl +CLaCL +V-O +DetNP +265293 V-IO-O +sub-CL +V-S +DetNP +NPofNP +DetNP +NPofNP +265301 V-O +DetCL +V-O +Conj4Np +DetNP +265307 DetNP +265310 NPofNP +265312 Conj-CL +S-V-ADV +Np-Appos +AdjpNp +265317 ClCl +V2CL +V-S +NP-CL +NPDetAdj +DetAdj +S-ADV-V-O +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +All-NP +DetNP +265334 Conj-CL +S-V-O-ADV +Np-Appos +AdjpNp +265339 PrepNp +NpAdjp +ClCl2 +sub-CL +CLaCL +S-V-O +NpaNp +DetNP +265348 DetNP +NPofNP +265351 V-O-ADV +Conj2Pp +PrepNp +DetNP +NPofNP +265357 PrepNp +DetNP +NPofNP +CLaCL +S-V-ADV +AdvpNp +PrepNp +Np-Appos +DetNP +NPofNP +DetNP +NPofNP +DetNP +DetCL +V-ADV-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +265378 V-ADV-ADV +PrepNp +NpaNp +265382 Conj2Pp +PrepNp +NpAdjp +265386 PrepNp +DetNP +265389 Conj-CL +CLaCL +S-ADV-V +DetNP +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +265399 ADV-V-O-ADV-S +NpaNp +265402 NpaNp +DetCL +V-O +NpaNp +DetNP +265408 DetNP +NPofNP +265411 sub-CL +S-V-O +DetNP +NPofNP +DetNP +NPofNP +265418 P-VC-S +DetNP +NPofNP +Np-Appos +DetAdj +DetCL +V-O +NpaNp +DetNP +NPofNP +DetNP +265430 DetNP +NPofNP +265433 Conj-CL +V-O +265436 PrepNp +DetNP +265439 P-S +Np-Appos +DetAdj +DetCL +ADV-V-ADV +PrepNp +265447 Intj2CL +DetNP +that-VP +ClCl +V-ADV +PrepNp +DetNP +NPofNP +sub-CL +S-V-ADV +DetNP +NPofNP +PrepNp +265461 Conj-CL +CLaCL +V2CL +265466 S2CL +NpAdjp +265470 PrepNp +DetNP +AdjpNp +NPofNP +CLaCL +V-ADV-O +PrepNp +DetNP +NPofNP +NpAdjp +265481 ADV-O +PrepNp +DetNP +NPofNP +NpAdjp +265487 Conj-CL +S-V-ADV-ADV +AdjpNp +PrepNp +DetNP +265493 PrepNp +NpAdjp +DetCL +V-ADV +PrepNp +DetNP +ClCl +CLaCL +V-O +DetNP +NPofNP +265505 V2CL +sub-CL +265508 DetNP +V2CL +sub-CL +V-S +DetNP +NPofNP +DetNP +265516 Conj-CL +CLaCL +V-S-O-ADV +DetCL +V-ADV +PrepNp +DetNP +DetNP +NPofNP +PrepNp +DetNP +265528 V-S +DetNP +265531 Conj-CL +S-V-ADV-ADV +AdjpNp +PrepNp +Np-Appos +DetNP +NpPp +PrepNp +DetNP +V-S-O +AdvpNp +NpAdjp +265544 Conj-CL +CLaCL +S-V-ADV +Np-Appos +AdjpNp +DetCL +V-O-ADV +PrepNp +DetNP +PrepNp +DetNP +265556 V-ADV-IO-ADV +NpAdjp +DetCL +V-O +DetNP +NPDetAdj +DetAdj +265564 ClCl +CLaCL +V-O +ofNPNP +DetNP +NPDetAdj +DetAdj +265572 V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +sub-CL +V-S +DetNP +NPofNP +265583 Conj-CL +CLaCL +V-S-O-ADV +DetNP +DetNP +NPofNP +PrepNp +DetNP +265592 CLaCL +V-O +DetNP +NPofNP +DetNP +265598 V-ADV +PrepNp +DetNP +NPDetAdj +NPofNP +DetNP +NPofNP +DetNP +DetAdj +265608 Conj-CL +CLaCL +V-S-ADV +DetNP +PrepNp +DetNP +265615 V-S-ADV-ADV-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NpAdjp +AdjpAdjp +265626 Conj-CL +V-O +Np-Appos +NpAdjp +AdjpNp +NpPp +PrepNp +DetNP +AdjpaAdjp +265637 NpNump +NPDetAdj +NpNump +DetAdj +sub-CL +ADV-V-S +PrepNp +DetNP +NPofNP +DetNP +265648 Conj-CL +ClCl +V2CL +CLaCL +S-V-ADV +PrepNp +NpAdjp +265656 S-V-ADV-ADV +DetCL +V-ADV +Conj3Pp +PrepNp +DetNP +265663 PrepNp +DetNP +NPofNP +265667 PrepNp +DetNP +NPofNP +DetNP +NPofNP +PrepNp +DetNP +NPDetAdj +DetAdj +V-O +NPofNP +DetNP +265680 Conj-CL +V-O-ADV +NpaNp +DetNP +NPofNP +Np-Appos +DetNP +NPofNP +DetNP +265690 DetNP +NPofNP +DetNP +265695 AdjpaAdjp +265697 DetNP +NPofNP +Np2CL +Np-Appos +Np-Appos +DetNP +DetNP +265706 AdjpaAdjp +265708 DetNP +NPofNP +Np2CL +DetNP +NPofNP +DetNP +265715 ClCl +CLaCL +265718 2Advp_h1 +Np2CL +265721 V-O +DetNP +NPofNP +sub-CL +265726 sub-CL +265728 S-V +All-NP +DetNP +265732 V-ADV +PrepNp +sub-CL +S-V +DetNP +NPofNP +265739 Conj-CL +CLaCL +ADV-V +PrepNp +265744 CLaCL +V-S +DetNP +NpPp +NPofNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +265755 V-S-ADV-ADV +Np-Appos +DetNP +NumpNP +DetCL +V-O +DetNP +NumpNP +PrepNp +DetNP +CLaCL +V-O +NpAdjp +NpAdjp +265770 V-ADV-O +PrepNp +DetNP +NpAdjp +265775 Conj-CL +S-V-IO-O +NpPp +PrepNp +DetNP +AdjpNp +DetNP +NumpNP +NumpNP +NpAdjp +NpAdjp +V-O +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +265798 Conj-CL +CLaCL +V-S-ADV-ADV +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +265808 PrepNp +DetNP +NPofNP +265813 V-ADV +PrepNp +DetNP +sub-CL +V-S +DetNP +NumpNP +NPofNP +DetNP +NumpNP +265824 Conj-CL +V-O +265827 AdjpNp +PrepNp +DetNP +DetNP +NumpNP +CLaCL +V2CL +265835 V-O-ADV +DetNP +NumpNP +NPofNP +DetNP +NPofNP +DetNP +PrepNp +DetNP +265845 Conj-CL +CLaCL +V-S +DetAdj +265850 V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +265856 Conj-CL +V-S-ADV +NpAdjp +AdjpaAdjp +265861 PrepNp +Np-Appos +DetNP +NpaNp +DetCL +V-O +DetNP +NPofNP +DetNP +265871 DetCL +V-O +DetNP +NPofNP +265876 Conj-CL +S-V-O-ADV +DetAdj +DetNP +NPofNP +PrepNp +DetNP +265884 Conj-CL +CLaCL +VC-P +NpPp +PrepNp +265890 S-V +Np-Appos +All-NP +NPofNP +NpPp +PrepNp +DetNP +265898 Conj-CL +S-V-O-ADV +DetAdj +DetNP +NPofNP +PrepNp +NpaNp +DetNP +265907 DetNP +NPofNP +DetNP +265911 Conj-CL +VC-P +265914 Conj-CL +V-O +265917 DetNP +NPofNP +DetNP +ClCl +265922 Np2CL +Np-Appos +NpaNp +DetCL +V2CL +265928 DetCL +V2CL +DetAdj +sub-CL +265933 sub-CL +CLaCL +O-V +NPofNP +NpaNp +265940 O-IO-V-ADV +V2CL +265943 P-VC +265945 Conj-CL +V-O +265948 DetNP +265950 Intj2CL +Np2CL +Np-Appos +Np-Appos +DetNP +DetNP +AdjpaAdjp +265958 DetNP +NPofNP +265961 Conj-CL +S-V-O-ADV +DetAdj +DetNP +NPofNP +PrepNp +DetNP +265969 Conj-CL +V-IO-S +V-O-ADV +DetNP +PrepNp +265975 Conj-CL +CLaCL +V-S-ADV +DetNP +NpAdjp +265981 CLaCL +V-O +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-O-ADV +DetNP +PrepNp +NP-Demo +DetNP +265994 ADV-V-ADV +V-IO-O +265997 Conj-CL +S-V-O-ADV +DetAdj +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +266007 Conj-CL +CLaCL +VC-S-P +DetNP +NPofNP +V2CL +266014 CLaCL +CLaCL +V-O-ADV +DetNP +NPofNP +PrepNp +DetNP +266022 V-O-ADV +DetNP +NPofNP +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +266031 PrepNp +DetNP +NPofNP +266035 ADV-V-ADV +PrepNp +DetNP +NPofNP +266040 Conj-CL +S-V-O-ADV +DetAdj +DetNP +NPofNP +PrepNp +Np-Appos +DetNP +DetNP +AdjpNp +266051 Conj-CL +266053 DetNP +NPofNP +sub-CL +V-S +DetNP +NPofNP +Np-Appos +DetNP +NpPp +PrepNp +NPofNP +266065 Conj-CL +V-O +ADV-S +Conj3Pp +PrepNp +DetNP +NPofNP +DetNP +266074 PrepNp +DetNP +NPofNP +DetNP +266079 PrepNp +DetNP +NPofNP +DetNP +NpPp +NpAdjp +NpAdjp +PrepNp +266088 Conj-CL +VC-P +NP-CL +NpAdjp +NPofNP +V-O +S-V-ADV-ADV +PrepNp +DetNP +NPofNP +NP-all +DetNP +V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +NPDetAdj +DetAdj +Np-Appos +DetNP +DetNP +266113 V2CL +sub-CL +S2CL +266118 DetCL +CLaCL +V2CL +266122 V-O +DetNP +NPofNP +sub-CL +CLaCL +ADV-ADV-V +266129 V-O +DetNP +NPofNP +266133 Conj-CL +V-O-ADV +PrepNp +Np-Appos +DetNP +DetCL +VC-ADV-P +266141 Conj-CL +S-V-O-ADV +DetAdj +DetNP +NPofNP +PrepNp +DetNP +266149 Conj-CL +V-S-ADV-ADV-ADV +NpAdjp +PrepNp +DetNP +PrepNp +DetNP +266157 V2CL +266159 Conj-CL +CLaCL +V-S +Conj3Np +266166 ClCl +266168 NpAdjp +S-ADV-V-ADV +PrepNp +ADV-S-V-ADV +PrepNp +DetNP +S-ADV-P +AdjpNp +266177 Conj-CL +CLaCL +V-S-ADV +DetNP +NPDetAdj +DetAdj +PrepNp +AdjpNp +266186 S-V +DetNP +NPofNP +DetNP +266191 Conj-CL +S-V-ADV-ADV +NPDetAdj +DetAdj +PrepNp +DetNP +V-IO-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +266207 Conj-CL +CLaCL +S-V +All-NP +266212 S-ADV-V +266214 Conj-CL +S-V-ADV-ADV +NpAdjp +NpAdjp +AdvpAdjp +PrepNp +DetNP +PrepNp +DetNP +266224 Conj-CL +266226 DetNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +sub-CL +P-VC-S-ADV +DetNP +NPofNP +266237 Conj-CL +CLaCL +V-S +NpPp +PrepNp +Np-Appos +DetNP +NumpNP +DetCL +V-O +DetNP +NumpNP +266250 V-ADV-ADV +PrepNp +266253 ClCl2 +V2CL +266256 DetNP +NPofNP +Np-Appos +DetNP +NPDetAdj +DetAdj +DetCL +V-ADV +PrepNp +NpAdjp +CLaCL +ADV-V-S +PrepNp +DetNP +NPofNP +DetNP +266273 V-S-ADV +DetCL +V-ADV +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +266283 Conj-CL +V-O-ADV-ADV +PrepNp +PrepNp +266288 Conj-CL +V-O +S-V-ADV +PrepNp +NpAdjp +NpAdjp +NpAdjp +V-O +NPofNP +V-O +NpaNp +NpNump +266301 NpNump +266303 Conj-CL +ClCl +S-VC-P +DetNP +CLaCL +V-O +AdjpaAdjp +266312 V-ADV +Conj3Np +266315 NpAdjp +266317 CLaCL +V-ADV-O +PrepNp +DetNP +NPofNP +NpAdjp +NpAdjp +V-O +NpaNp +266327 DetNP +NPofNP +DetNP +NPofNP +266332 ADV-V-S +PrepNp +DetNP +NPofNP +Np-Appos +Np-Appos +Np-Appos +NPDetAdj +DetAdj +DetNP +NPofNP +NpaNp +DetNP +266346 DetNP +NPofNP +DetNP +266350 Conj-CL +V-O +S-V-ADV +DetNP +Conj2Pp +PrepNp +DetNP +NPofNP +DetAdj +266360 PrepNp +DetNP +NPofNP +DetNP +NPofNP +266366 Conj-CL +V-ADV-O +V-O +NpAdjp +266371 Conj-CL +266373 DetNP +ADV-V +PrepNp +266377 S-V-IO-O +DetNP +NPofNP +NpaNp +DetNP +266383 Np-Appos +Np-Appos +DetNP +DetCL +V-O +DetCL +V-O +NpaNp +DetNP +NumpNP +266394 DetNP +NumpNP +266397 CLaCL +CLaCL +S-V +DetNP +NP-CL +O-V +266404 ADV-V +266406 CLaCL +V-O +V-ADV +PrepNp +DetNP +266412 ADV-V +PrepNp +266415 Conj-CL +V-S-ADV +NP-CL +DetCL +V-ADV +PrepNp +DetNP +S-ADV-V-ADV-ADV +ofNPNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +PrepNp +NPofNP +266432 DetNP +that-VP +Conj3CL +V2CL +266437 ADV-V +266439 V2CL +266441 P-S +Np-Appos +DetNP +DetCL +V-O +266447 ClCl +S-P-VC +DetNP +NumpNP +NumpNP +ADV-S-V-ADV +DetNP +PrepNp +266456 Conj-CL +P-VC +NpNump +266460 ClClCl +S-V +DetNump +S-V +DetAdj +CLaCL +S-ADV-V +DetAdj +266470 sub-CL +V2CL +ADV-S-V +266474 Conj-CL +266476 Np2CL +DetNP +NP-CL +CLaCL +S-V +266482 ADV-V +CLaCL +S-P-VC +AdvpNp +266487 P-VC +PrepNp +DetNump +266491 ADV-V +PrepNp +266494 Conj-CL +S-VC-P +DetNP +NP-CL +NumpNP +O-V +NP-CL +NumpNP +CLaCL +S-O-ADV-V +266505 O-ADV-ADV-V-ADV +PrepNp +AdjpNp +PrepNp +DetNP +266511 CLaCL +S-O-V +AdjpNp +266515 O-IO-V +DetNP +NPofNP +NpaNp +266520 DetNP +266522 CLaCL +S-ADV-V +PrepNp +DetNP +266527 ClCl +S-V-O +DetNP +sub-CL +CLaCL +VC-P +NpaNp +NPofNP +266536 NPofNP +266538 S-P +NpPp +PrepNp +Conj3Adjp +266545 Conj-CL +266547 S-VC-P +DetNP +NP-CL +NP-CL +O-V +ADV-S-V +DetNP +Conj4Np +266559 Conj-CL +266561 Np2CL +NpaNp +DetNP +NP-CL +NumpNP +O-V +266568 DetNP +S-V-O +DetNP +266572 CLaCL +V-O-O2 +AdjpaAdjp +V2CL +266578 CLaCL +O-V +DetNP +NPofNP +266583 O-V-ADV +PrepNp +266586 Conj-CL +266588 DetNP +PrepNp +DetNP +NPofNP +Conj3CL +V-O +DetNP +NPofNP +266597 V-O +AdjpNp +266600 V-O-IO +DetNP +NPofNP +DetNP +sub-CL +V-S +DetNP +NPofNP +DetNP +266610 Conj-CL +S-VC-P +DetNP +NP-CL +O-V +Np-Appos +DetNP +NPDetAdj +DetAdj +DetCL +V-O-ADV +PrepNp +DetNP +NPofNP +DetNP +266626 CLaCL +ADV-V-O +PrepNp +S-V-ADV-ADV +AdjpNp +PrepNp +DetNP +V-O +NpAdjp +266636 S-V-ADV +DetNP +PrepNp +DetNP +NPofNP +266642 Conj-CL +V-ADV-ADV +PrepNp +AdjpNp +266647 CLaCL +ClCl +V2CL +V-S +NPDetAdj +DetAdj +266655 Conj3Np +NPofNP +266658 NPofNP +All-NP +NpAdjp +266662 NPofNP +All-NP +NpAdjp +AdjpaAdjp +266667 V2CL +sub-CL +Conj3CL +ADV-V-S +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +All-NP +DetNP +266681 S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +266687 S-ADV-V +DetNP +NPofNP +DetNP +PrepNp +DetNP +NPofNP +DetNP +NPofNP +266697 Conj-CL +V-O +266700 AdjpNp +PrepNp +DetNP +266704 Np2CL +DetNP +NPofNP +PrepNp +CLaCL +sub-CL +ADV-V-ADV +DetNP +NPofNP +266714 sub-CL +ADV-ADV-V +PrepNp +DetNP +NPofNP +sub-CL +CLaCL +V-S-ADV +ofNPNP +DetNP +PrepNp +DetNP +266727 V-S-O +DetNP +DetNP +NPofNP +266732 CLaCL +266734 sub-CL +S-V +AdvpNp +266738 V-O-ADV +DetAdj +PrepNp +DetNP +NPofNP +266744 ADV-V-IO-O +PrepNp +DetNP +NP-CL +ADV-V +266752 CLaCL +ADV-V-O +266755 V2CL +AdjpNp +NpaNp +266760 PrepNp +DetNP +NPofNP +that-VP +CLaCL +V-ADV +266767 CLaCL +P-ADV-VC +266770 O-ADV-V +2Advp_h1 +266774 ADV-ADV-V-S +PrepNp +PrepNp +AdjpNp +Np-Appos +DetNP +NPofNP +Conj3Np +266785 ADV-V +PrepNp +sub-CL +P-S +Np-Appos +Np-Appos +DetNP +DetCL +V-O +266795 Conj-CL +ClCl +V-ADV-S +Conj2VP +266800 PrepNp +Np-Appos +DetNP +NPofNP +DetNP +DetCL +ADV-V +PrepNp +Conj2VP +266810 sub-CL +V-O-ADV-ADV +DetNP +NPofNP +DetNP +NPofNP +ADV-V-ADV +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +266824 ClCl +266826 Intj2CL +Np2CL +Np-Appos +DetNP +NPDetAdj +DetAdj +Np-Appos +DetNP +NPDetAdj +DetAdj +sub-CL +ADV-V-S +AdjpNp +DetNP +NPofNP +266842 Conj-CL +266844 DetNP +NPofNP +DetNP +Conj2VP +266849 PrepNp +sub-CL +S-V-ADV-O +Np-Appos +DetNP +NPofNP +Conj5Np +NPofNP +Conj8Np +266860 NpAdjp +266867 Conj3Np +All-NP +NpAdjp +266871 All-NP +NpAdjp +266874 All-NP +NpPp +PrepNp +Conj4Np +NpAdjp +266883 Conj5Np +266889 Conj4Np +266894 Conj6Np +266900 NPofNP +266902 Conj-CL +CLaCL +CLaCL +S-V-ADV +DetNP +NPofNP +ofNPNP +DetNP +NPofNP +DetNP +PrepNp +266914 S-V-ADV +All-NP +NpaNp +DetAdj +266919 DetAdj +PrepNp +266922 ADV-ADV-O-V +2Advp_h1 +266925 S-ADV-V-ADV-ADV-ADV +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +PrepNp +PrepNp +DetNP +NPofNP +DetNP +NPofNP +CLaCL +V2CL +266941 V2CL +266943 ClCl +266945 Intj2CL +Np2CL +Np-Appos +DetNP +NPDetAdj +DetAdj +DetCL +CLaCL +V-O +Conj3Np +266958 V-ADV +PrepNp +Conj3Np +266962 NpAdjp +266964 sub-CL +ADV-V-S +AdjpNp +DetNP +AdjpNp +266970 Conj-CL +CLaCL +S-ADV-V +Conj4Np +All-NP +266976 All-NP +DetCL +ADV-V +PrepNp +266982 S-ADV-V +DetNP +PrepNp +266986 V-ADV-ADV +V-O +DetNP +NPofNP +DetNP +NPofNP +266993 S-P-ADV +DetNP +NPDetAdj +DetAdj +266998 Conj-CL +CLaCL +V-O-ADV +PrepNp +DetNP +NPofNP +267005 V-ADV-ADV +CLaCL +V2CL +267009 V2CL +267011 ClCl +267013 Intj2CL +Np2CL +NP-CL +DetNP +NPDetAdj +DetAdj +ADV-V-S-ADV +PrepNp +All-NP +DetCL +V-O-ADV +DetNP +PrepNp +DetNP +PrepNp +DetNP +NPofNP +sub-CL +ADV-V +AdjpNp +267035 PrepNp +Np2CL +NpaNp +267039 Conj3Np +DetAdj +267042 DetNP +267044 DetNP +sub-CL +V-S-O-ADV +DetNP +DetNP +NPofNP +PrepNp +267052 Conj-CL +CLaCL +V-S-O +AdjpNp +NpAdjp +NpPp +PrepNp +NpAdjp +267061 V-ADV-ADV +PrepNp +DetNP +267065 CLaCL +ADV-ADV-V-S +Np-Appos +DetNP +AdjpNp +267071 ADV-V-ADV +2Advp_h1 +267074 Conj-CL +ClCl +Conj5CL +S-ADV-V-ADV-ADV +NPofNP +Conj4Np +267083 2Advp_h1 +PrepNp +267086 S-ADV-V-ADV-ADV +All-NP +NPofNP +All-NP +2Advp_h1 +PrepNp +267093 S-ADV-V-ADV-ADV +NPofNP +2Advp_h1 +PrepNp +267098 S-ADV-V-ADV-ADV +NPofNP +2Advp_h1 +PrepNp +267103 S-ADV-V-ADV-ADV +NPofNP +NpaNp +267107 2Advp_h1 +PrepNp +sub-CL +ClCl +S-VC-P +DetNP +NPofNP +DetNP +NPofNP +DetNP +sub-CL +CLaCL +ADV-V-S +PrepNp +DetNP +NPofNP +All-NP +DetNP +267126 ADV-V-S +PrepNp +NPofNP +Conj3Np +267132 All-NP +DetCL +V-ADV +PrepNp +DetNP +267138 ADV-V-O +PrepNp +267141 PrepNp +NPofNP +NpAdjp +NpAdjp +PrepNp +DetNP +267148 ClCl +S-P +Conj3Np +DetNP +267153 DetNP +267155 DetNP +DetNP +NPofNP +sub-CL +267160 AdjpaAdjp +267162 DetNP +NPofNP +sub-CL +CLaCL +V-O +DetNP +NP-CL +NPDetAdj +DetAdj +S-V-O-ADV +DetNP +PrepNp +DetNP +NPofNP +267177 V-O-ADV +DetNP +NPofNP +DetNP +NPofNP +PrepNp +NPofNP +267185 Conj-CL +267187 CLaCL +Intj2CL +267190 S-V-ADV +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +267198 Conj-CL +CLaCL +V-S +NpaNp +DetNP +NPDetAdj +DetNP +NumpNP +267207 DetNP +AdjpNp +267210 V-O-ADV +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +DetNP +267219 Intj2CL +267221 Conj-CL +S-ADV-V-ADV +PrepNp +DetNP +267227 DetNP +NPofNP +Np2CL +Np-Appos +Np-Appos +All-NP +DetNP +NPofNP +DetCL +V-O +NpaNp +DetAdj +267240 DetAdj +267242 Conj-CL +V-O +267245 Conj3Pp +PrepNp +NPofNP +NpAdjp +267250 PrepNp +NPofNP +NpAdjp +267254 PrepNp +NPofNP +NpAdjp +267258 Intj2CL +V-S +Np-Appos +Np-Appos +DetNP +NPofNP +DetNP +267266 ClCl +CLaCL +CLaCL +V2CL +267271 V2CL +267273 V-O-IO +DetNP +sub-CL +CLaCL +V-S +DetNP +NPofNP +DetNP +267282 S-V-O +DetNP +NPofNP +267286 Conj-CL +ClCl +V-IO-S +that-VP +V-O +NpAdjp +AdjpAdjp +sub-CL +S-P-VC +DetAdj +DetNP +NPofNP +DetAdj +267300 Conj-CL +267303 P-S +DetCL +ADV-V +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +267313 Conj-CL +267315 S-P-VC +DetNP +NPofNP +NpAdjp +DetNP +267321 Conj-CL +V-ADV-ADV +PrepNp +DetNP +NPofNP +V-O +267328 Conj-CL +267330 ClCl +ClCl +ClCl +V-O +ADV2CL +VC-P +NPofNP +NpaNp +267339 Np-Appos +DetNP +NPofNP +DetCL +V-O +DetNP +NPofNP +O-V +DetNP +sub-CL +S-VC-P +DetNP +NPofNP +DetNP +NPofNP +DetNP +267356 Conj-CL +CLaCL +V-O +S-V +DetNP +267362 CLaCL +267364 V2CL +NpAdjp +267367 CLaCL +S-VC-P +DetCL +V-ADV +PrepNp +AdjpaAdjp +267375 ADV-V +PrepNp +Conj2VP +267380 Conj-CL +CLaCL +CLaCL +S-P +DetNP +NPofNP +NPofNP +267388 P-S-ADV +PrepNp +DetNP +NPofNP +NpAdjp +CLaCL +V-O +NP-CL +NpAdjp +V2CL +267399 O-S-V +ADV-S +267402 V-O +NpAdjp +V-ADV +267406 VC-S-P +DetNP +NPofNP +DetNP +NPofNP +DetNP +267413 Conj-CL +S-V-O-ADV-ADV +Np-Appos +DetNP +NpPp +PrepNp +DetNP +PrepNp +NpAdjp +V-O +NpAdjp +NpAdjp +267426 Conj-CL +CLaCL +267429 PrepNp +DetNP +NPofNP +NpAdjp +sub-CL +ADV-V-O +PrepNp +DetNP +267438 S-V-O-ADV +PrepNp +NpAdjp +267442 Conj-CL +S-V-O +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +NPofNP +Np-Appos +DetNP +DetNP +267456 Conj-CL +V-ADV-O +Conj2Pp +PrepNp +DetNP +267462 PrepNp +DetNP +NPofNP +Np-Appos +NpAdjp +V2CL +NpaNp +NPofNP +267471 NPofNP +267473 Conj-CL +V-O +CLaCL +S-V-ADV +AdjpNp +PrepNp +DetNP +267481 V-ADV-ADV +PrepNp +NpAdjp +267485 All-NP +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +ClCl +ClCl2 +V2CL +V-ADV +PrepNp +DetNP +NPofNP +NPDetAdj +DetAdj +DetNP +sub-CL +V-O +Conj5Np +NPofNP +267506 NPofNP +267508 NPofNP +267510 NPofNP +NpaNp +267513 DetCL +V-ADV +PrepNp +267517 NPofNP +All-NP +NpaNp +aNpaNp +267524 NpaNp +267527 Conj-CL +V-O +S-V-ADV +Conj3Np +DetNP +267533 DetNP +NPofNP +DetNP +267537 DetNP +NPofNP +V-O-ADV +DetNP +Conj2Pp +PrepNp +DetCL +V-ADV +PrepNp +DetNP +267548 PrepNp +DetNP +NPofNP +267552 Conj-CL +CLaCL +V-S +DetNP +267558 PrepNp +Np-Appos +DetNP +DetCL +V-O-ADV +DetNP +PrepNp +ADV-V-O +PrepNp +NpaNp +DetCL +V-O +DetNP +NPofNP +DetNP +267574 DetCL +V-O +DetNP +NPofNP +267579 ADV-V-S-ADV +V2CL +DetNump +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +267591 Conj-CL +CLaCL +S-V-ADV +DetAdj +PrepNp +Np-Appos +DetNP +NPofNP +DetCL +V-ADV +PrepNp +DetNP +DetCL +V-ADV +PrepNp +DetNP +NPofNP +267609 S-V-ADV +All-NP +DetNP +PrepNp +DetNP +NPofNP +267616 Conj-CL +V-O +S-V-ADV-ADV +PrepNp +DetNP +V-O-ADV +NpaNp +DetNP +NPofNP +DetNP +267627 NpAdjp +PrepNp +DetNP +NPofNP +267632 Conj-CL +ClCl +ClCl +CLaCL +CLaCL +V-O +NP-CL +Np-Appos +DetNP +DetNP +NPDetAdj +DetAdj +S-VC-P +NpaNp +267647 DetNP +267649 V-O-ADV +AdjpNp +267652 CLaCL +V-O-ADV +PrepNp +DetNP +267657 CLaCL +V2CL +267660 V-ADV +PrepNp +sub-CL +ADV-V-ADV-O +DetNP +sub-CL +V-S +DetNP +AdjpNp +267670 ADV-V-S +PrepNp +V-S-ADV +AdjpNp +267675 Conj-CL +CLaCL +CLaCL +CLaCL +V-O +267681 CLaCL +V-ADV +PrepNp +267685 S-V-IO +267687 O2CL +DetNP +NPofNP +DetCL +V-ADV +Conj2Pp +PrepNp +DetNP +NPofNP +267697 PrepNp +DetNP +NPofNP +DetNP +267702 CLaCL +S-ADV-V-O +NpaNp +DetNP +267707 DetNP +NPofNP +267710 ADV-V-O-ADV +DetNP +Conj2Pp +PrepNp +DetNP +267716 PrepNp +DetNP +NPofNP +267720 Conj-CL +CLaCL +V2CL +267724 V-ADV-ADV +PrepNp +DetNP +AdjpNp +267730 DetNP +NPofNP +DetAdj +sub-CL +V-S +DetNP +AdjpNp +267738 S-P +DetNP +NPDetAdj +DetAdj +267743 P-S +AdjpaAdjp +267746 DetCL +V-O-ADV +PrepNp +DetNP +NPDetAdj +DetAdj +267753 CLaCL +ADV-S-ADV-V-O +PrepNp +DetNP +AdjpNp +267759 CLaCL +VC-P +NPofNP +NpaNp +DetNP +267765 DetNP +267767 V-ADV-ADV +PrepNp +DetNP +AdjpNp +267772 Conj-CL +ClCl2 +sub-CL +V-S +DetNP +AdjpNp +CLaCL +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +267786 V-O +Np-Appos +Np-Appos +DetNP +NpPp +PrepNp +DetNP +AdjpNp +NPofNP +DetNP +DetNP +NpaNp +267799 V-O-ADV +PrepNp +DetNP +S-P +ofNPNP +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +267811 Conj-CL +CLaCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +267819 V-O +NpaNp +DetNP +NPofNP +DetAdj +267825 Np-Appos +DetNP +DetCL +V2CL +267830 Conj-CL +CLaCL +V-S-ADV +PrepNp +DetNP +267836 V-O +267838 Conj-CL +CLaCL +S-V-ADV +Np-Appos +DetAdj +DetCL +V-O +PrepNp +DetNP +NP-CL +NPofNP +DetNP +NpaNp +267852 P-S +notNPbutNP +DetNP +DetNP +267857 V-ADV-ADV +NpaNp +267860 PrepNp +DetNP +NPofNP +DetNP +267865 Conj-CL +V-O +NpaNp +NpAdjp +NpAdjp +267871 NP-CL +DetCL +V-ADV +PrepNp +CLaCL +ADV-V-S +PrepNp +ofNPNP +DetNP +NpaNp +DetNP +267883 DetNP +267885 S-ADV-V-IO +267887 Conj-CL +CLaCL +V-O +S-V-ADV +Np-Appos +DetAdj +NpaNp +DetAdj +267896 DetAdj +PrepNp +DetNP +267900 S-V +267902 Conj-CL +267904 AdjpNp +S-VC-P +DetNP +267908 Conj-CL +V-S-ADV-ADV +DetAdj +PrepNp +DetCL +V-ADV +PrepNp +DetNP +PrepNp +DetNP +NPofNP +267920 Conj-CL +CLaCL +CLaCL +V-S-O +DetNP +Np-Appos +DetAdj +NpPp +PrepNp +267930 S-V-O +NpaNp +DetNP +267934 DetNP +Np-Appos +DetAdj +NpPp +PrepNp +267940 V-S-ADV +PrepNp +DetNP +NPofNP +267945 Conj-CL +S-V-ADV +NpaNp +DetNP +267950 DetNP +PrepNp +DetNP +NPofNP +DetNP +267956 S-P-VC +Np-Appos +DetNP +NPDetAdj +DetAdj +DetNP +NPofNP +DetNP +267965 Conj-CL +ClCl2 +sub-CL +S-ADV-V-O +ADV-V +PrepNp +DetNP +NPofNP +DetNP +V-ADV +PrepNp +DetNP +NPofNP +DetNP +267980 Conj-CL +ClCl +V-O +NpaNp +NpAdjp +267986 NpAdjp +sub-CL +CLaCL +S-V +NpaNp +DetNP +AdjpNp +267994 DetNP +AdjpNp +267997 S-ADV-V-ADV +DetNP +268000 Conj-CL +V-O +S-V-ADV-ADV-ADV +Np-Appos +DetNP +NPDetAdj +DetAdj +NpAdjp +PrepNp +DetNP +PrepNp +DetNP +V-ADV +PrepNp +NpAdjp +V-IO +DetNP +NPofNP +268019 Conj-CL +V-O +268022 NpAdjp +PrepNp +DetNP +268026 CLaCL +CLaCL +S-P +DetNP +NPofNP +DetNP +PrepNp +DetNP +268035 V-ADV +PrepNp +268038 CLaCL +S-P-VC +NPofNP +268042 S-P-VC +PronNP +DetNP +PrepNp +268047 CLaCL +V-O-ADV +All-NP +PrepNp +DetNP +NPofNP +268054 CLaCL +S-ADV-V-ADV +DetNP +268058 S-ADV-V-ADV +Conj3Np +268063 that-VP +S-V +DetAdj +268067 Conj-CL +268069 DetCL +V-ADV +PrepNp +DetNP +268075 Conj-CL +268078 sub-CL +S-P-VC +Demo-NP +DetNP +AdjpaAdjp +268085 Conj-CL +268087 V2CL +268089 S-P +Np-Appos +NpaNp +DetNP +268094 DetNP +NpaNp +DetNP +268098 DetNP +268100 S-IO-V-ADV-ADV +DetCL +V2CL +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +268110 CLaCL +S-V-O +DetCL +V2CL +268115 CLaCL +VC-ADV-P +268118 S-VC-ADV-P +268120 Conj-CL +268122 Np2CL +Conj8Np +DetAdj +268127 V2CL +268133 All-NP +DetAdj +DetNP +NPofNP +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +NpaNp +268144 S-VC-P +DetNP +NPDetAdj +DetAdj +268149 Conj-CL +CLaCL +V-S +NpPp +PrepNp +Np-Appos +DetNP +NumpNP +DetCL +V-O +Np-Appos +DetNP +NumpNP +DetCL +V-O +DetNP +NumpNP +NPofNP +DetAdj +268169 V-ADV-ADV +PrepNp +268172 ClCl2 +V2CL +V-IO-O +Np-Appos +DetNP +DetNP +NPofNP +DetNP +268181 Conj-CL +CLaCL +V-O-ADV-ADV +PrepNp +PrepNp +NpAdjp +AdjpaAdjp +268190 V-IO-O +S-V-ADV-ADV-ADV +Np-Appos +DetNP +NPDetAdj +DetAdj +PrepNp +DetNP +PrepNp +DetNP +V-O +DetNP +NPofNP +DetNP +268206 DetNP +NPofNP +NpAdjp +sub-CL +ADV2CL +NpAdjp +Np-Appos +V2CL +268215 ClCl +V-O +NpAdjp +AdjpaAdjp +268220 CLaCL +V-O +NpNump +268224 CLaCL +P-S +PrepNp +DetNP +NpNump +268230 V-S +NP-CL +S-VC-P +DetNP +NumpNP +NPofNP +NPofNP +268238 Conj4CL +P-S +PrepNp +NpAdjp +268243 P-S +PrepNp +NpAdjp +268247 P-S +PrepNp +NpAdjp +268251 P-S +PrepNp +NpAdjp +268255 Conj-CL +CLaCL +S-V-O +DetNP +NPofNP +DetNP +NpNump +268263 P-S +PrepNp +NumpNP +NPofNP +DetNP +NumpNP +NPofNP +DetNP +268272 Conj-CL +268274 DetCL +V-ADV +PrepNp +Np-Appos +NpAdjp +sub-CL +V-O +Conj3Np +DetNP +268284 DetNP +NPofNP +268287 DetNP +NPofNP +268290 Conj-CL +CLaCL +S-P-VC +DetNP +268296 DetNP +NPofNP +P-S +DetNP +268301 Conj-CL +V-O-ADV-ADV +DetNP +DetNP +PrepNp +Np-Appos +NumpNP +268309 S-P-VC +NPofNP +Conj3Np +DetNP +268314 DetNP +268316 DetNP +268318 Conj-CL +V-O-ADV-ADV +DetNP +NPofNP +NumpNP +NumpNumpNump +NP-CL +NPofNP +S-VC-P +268328 Conj-CL +CLaCL +S-P +DetNP +NPofNP +DetNP +NPofNP +268336 ClCl +S-P +DetNP +NpAdjp +P-ADV +NpAdjp +268343 S-ADV-V +DetNP +NPofNP +DetNP +NPofNP +DetNP +All-NP +NpAdjp +268352 ClClClClClClClClClClClCl +S-P +DetNP +NPDetAdj +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +S-P +DetAdj +268380 Conj-CL +ClCl +S-P +DetNP +NumpNP +NumpNP +ADV-S-VC-P +AdjpNp +NPofNP +DetNP +PrepNp +AdjpNp +268393 Conj-CL +S-P-ADV +DetNP +NPofNP +DetNP +NpAdjp +PrepNp +NpAdjp +268402 Conj-CL +ClCl +O-ADV-V-ADV +PrepNp +sub-CL +S-P-VC +NpaNp +Np-Appos +DetNP +Np-Appos +DetNP +DetNP +268415 DetNP +NPofNP +268418 Conj-CL +ClCl +268421 DetNP +NPofNP +NpaNp +DetNP +268426 DetNP +sub-CL +V-ADV +sub-CL +CLaCL +S-V-O +DetNP +NPofNP +DetNP +268436 S-P +DetNP +NPofNP +DetNP +268441 Conj-CL +V-S-ADV +DetNP +PrepNp +DetNP +NPofNP +268448 Conj-CL +S-V-O-ADV +DetNP +NPofNP +DetNP +DetNP +NPofNP +PrepNp +268457 Conj-CL +ClCl +S-ADV-V-ADV +DetNP +NPofNP +2Advp_h1 +sub-CL +S-ADV-VC-P +268466 Conj-CL +V-O-ADV +NPofNP +NpaNp +DetNP +268472 DetNP +DetNP +PrepNp +268476 Conj-CL +268478 2Advp_h1 +PrepNp +All-NP +NpaNp +268483 DetCL +V-O +NpaNp +268487 sub-CL +ADV-S +DetCL +V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +DetNP +268498 Conj-CL +V-IO-O +S-V-ADV +NpAdjp +NPofNP +NPofNP +AdjpPp +PrepNp +PrepNp +DetNP +NPofNP +NpaNp +DetNP +268512 DetNP +268514 CLaCL +P-ADV-S +PrepNp +NPofNP +NpaNp +DetNP +NPofNP +268522 DetNP +AdvpaAdvp +268525 NpAdjp +NpAdjp +NPofNP +V-O +NpNump +ADV-V-O +PrepNp +NpAdjp +DetNP +NPofNP +268536 S-P +DetNP +NPofNP +DetNP +PrepNp +NPofNP +DetNP +268544 Conj-CL +S-ADV-V-ADV +All-NP +268548 Conj-CL +CLaCL +S-P-VC +DetNP +NPofNP +NpaNp +DetNP +268556 DetNP +PrepNp +268559 CLaCL +CLaCL +S-V-O +DetNP +NPofNP +268565 V-O +DetNP +NPofNP +268569 S-P +DetNP +NPofNP +PrepNp +DetNP +NPofNP +268576 Conj-CL +CLaCL +CLaCL +S-ADV-V-ADV +268582 NPofNP +NpaNp +NPofNP +268586 NPofNP +sub-CL +S-V-ADV +Np-Appos +DetNP +PrepNp +268593 V-ADV +PrepNp +DetNP +NPofNP +DetNP +268599 Conj-CL +268601 CLaCL +S-P +Demo-NP +DetNP +AdjpaAdjp +268608 S-V-O-ADV +Np-Appos +DetNP +DetNP +NPofNP +DetNP +NPofNP +DetNP +DetNP +NPofNP +V-IO-O +DetNP +NPofNP +S-V +S-V-ADV +PrepNp +268625 Conj-CL +268628 P-S +DetCL +V-O +DetNP +NPofNP +DetNP +NPofNP +NP-Demo +DetNP +268638 S-P +Np-Appos +DetCL +V-O +Conj2VP +268645 Conj-CL +ClCl2 +sub-CL +CLaCL +V2CL +268651 V2CL +V-ADV +V-ADV +PrepNp +DetNP +NPofNP +Np-Appos +DetNP +DetCL +V-IO-O +268662 Conj-CL +268664 ClCl +ClCl +V-O +ADV2CL +VC-P +NPofNP +Conj3Np +268672 Np-Appos +DetNP +NPofNP +DetNP +268677 DetCL +V-O +DetNP +NPofNP +NP-Demo +DetNP +O-V +DetNP +268686 Conj-CL +268689 DetNP +NPofNP +DetNP +NPofNP +NP-Demo +DetNP +sub-CL +S-P-VC +DetNP +268699 CLaCL +CLaCL +S-V-ADV +DetCL +V2CL +268705 S-V-ADV +DetAdj +268708 CLaCL +S-O-V-ADV +DetAdj +268712 S-V-ADV +DetAdj +268715 CLaCL +268718 S-P-ADV +DetNP +NPofNP +PrepNp +268723 sub-CL +S-V +DetNP +NPofNP +268728 S-P +NpNpNp +NpaNp +DetNP +268733 DetNP +NpaNp +DetAdj +268737 DetAdj +NpaNp +DetNP +268741 DetNP +268743 P-S +DetCL +ClCl +V-O +DetNP +NPofNP +sub-CL +CLaCL +VC-S-P +DetNP +NPofNP +PrepNp +DetNP +NPofNP +DetNP +268759 ADV-V-ADV +DetNP +PrepNp +DetNP +268764 P-S +Conj6Np +DetNP +268768 DetNP +268770 DetNP +268772 DetNP +268774 DetNP +268776 All-NP +V-O +Conj2VP +268781 S-V-O-ADV +Np-Appos +DetNP +NPofNP +V-IO-O-ADV +PrepNp +DetNP +268789 S-VC-P +NPofNP +NPofNP +NpaNp +DetNP +268795 DetNP +DetNP +NPDetAdj +NPDetAdj +DetAdj +DetAdj +268802 Conj-CL +268804 NpaNp +DetNP +268807 DetNP +V2CL +268810 Conj-CL +268812 DetCL +V2CL +V2CL +268816 Conj-CL +ClCl +S-V +DetCL +V2CL +S-V-O-ADV +DetCL +V2CL +NPofNP +268826 V-S-IO +All-NP +DetCL +V-O +DetNP +NPofNP +DetNP +NPofNP +NPofNP +DetNP +268837 ClCl2 +sub-CL +S-V-ADV +PrepNp +V-S-ADV-O +DetNP +PrepNp +Np-Appos +DetNP +DetCL +V-ADV +PrepNp +NP-Demo +DetNP +268852 Conj-CL +ClCl2 +sub-CL +S-V-ADV +PrepNp +DetNP +NPofNP +DetNP +NPofNP +NP-Demo +DetNP +V-S-O-ADV +DetNP +DetNP +NPofNP +Np-Appos +Conj2Pp +PrepNp +DetNP +NPofNP +DetNP +268874 PrepNp +DetNP +NPDetAdj +DetAdj +DetCL +V-ADV +PrepNp +NP-Demo +DetNP +268885 DetCL +V-O +268888 Intj2CL +268891 Intj2CL +Np2CL +Np-Appos +268895 S-P +DetNP +NPofNP +Np-Appos +DetNP +PrepNp diff --git a/tf/0.1.1/after.tf b/tf/0.1.1/after.tf new file mode 100644 index 0000000..9a08822 --- /dev/null +++ b/tf/0.1.1/after.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=After the end of the word +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + + + + + + + + +. + + + +, + + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + + + + +, + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + + + + +, + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + + + + + + +. + + + + + + +, + + + + + + + + + + +. + + + + +, + + + + + + +, + + + +. + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + +· + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + +· + + + + + + + +· + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + +; + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + + + + + + + + + + +. + + + +· + + + +· + + + + + +· + + + +, +, + + + + + + +· + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + +· + + + + + +· + + +, + +, + + + + +. + + + + + +· + + + +, + + + + +, + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + + + + +, + + + + +. + + + + + + + +, + + + + + + + +. + + +, + + + + + + + + + + + + + + + + + + + + +, + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + +· + + + + +, + + + + + + +. + + + +, + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + +, + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + + +, + +· + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +; + + + + + +· + + + + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + +· + + + + + + + +, + + + + + + +· + + + + + + + +· + + + + + + +, + + + + +, + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + +; + + + + + + + +· + + + + + + + +. + + +. + + + + + + + + +· + + + + +, + + + + + + + + + +· + + + + + + + + + + + + + +, + + +. + + + + + + + + + +, + + + +. + + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + + + + +, + + +· + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +, + + + +. + + + + + +, +· + + + + + + + + + + +. + + + + +, + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + + + + + +, + +, + + +, + + +, + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + +· + + +. + + + + + +, + + + + +. + + + + + + + +. + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +· + + +. + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + +, + + + + +, + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + +· + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +. + + +, + + +. + + +, + + + + +. + + + + + + +, + + +. + + +, + + +. + + + + +, + + + + +. + + +, + + + + +. + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +. + + +, + + + + + + + +· + + + + + + + +. + + + + + +· + + + + +, + + +; + + + + + + + + + + + +. + + + + + +. + + + + + + +· + + + + + + + + +, + + + +, + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + +· + + + +, + + + + + + + +, + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + +, + + + + + + +· + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + +· + + + +, + + + +. + + + + + + + + + + + + + + +· + + + + + + + +, + + + +· + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + +, + + + + +, + + + +· + + +, + + + + + + + + + +. + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + +. + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + +· + + + +, + + + + +· + + + +, + + + + + +· + + +, + + + + + +· + + + + + +, + + + + + + + + +. + + + + + + +, + +· + + + + + + + +. + + + + + + + + + +. + + + + + + + +· + + + + + + + + +, + + + + +· + + + + + + + + + +, + + + + +· + + + + + +, + + + +. + + + +, + + + + + + + +. + + + + + + + + + + + +. + + + +, + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + +, + + +; + + + + + + +; + + + + + + +, + + +; + + + + + + +; + + + + + + + + + + + +. + + + + + + + + + + + + + +· + + +, + + + + + + + + + + +. + + + +, + + + +, + + + + + + + + + + +, + + + + +· + + +, + + + +. + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + +. + + +, + + + + +· + + + + + + + + + + + + +, + + + +· + + +, + + + +. + + + +, + + + + + + + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + +· + + + + + + + +. + + + +· + + + + + + + + + + + + +. + + + + + + + + + +· + + + +· + + + +· + + + +, + + + + + +· + + + + + + + +· + + + + + +, + + + + + + +· + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + +· + + + + + +, + + + + + + + +. + + +, + + + + + +· + + + + + + + + + +· + + +, + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + +, + + + + +, + + + + + +· + + + + + +, + + + + + +, + + + + + + +· + + + + + +, + + + + + +. + + + + + + +. + + + + + + +, + + + + + +· + + + + + + +, + + + + + +. + + + + + + + + +, + + +. + + + + +· + + + + + + + + +, + + + + + + +· + + + + + +. + + + +, + + + + + + +, + + + + + + + + +· + + + + + + + + + + + +; + + + + + +, + + + + + + + + +, + + + + + + + +· + + + + +; + + + + + + + + + + + + +; + + + + +; + + + + + + +· + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + +, +; + + + +· + +; +· + +; +· + +; + + + + + +· + + + + + + + + + + +. + + + + + + + + +, + + + + +. + + + + + +, + + + + +· + + + + + +. + +, + + +· + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +; + + + + + +· + + + + + + + +, + + + + + + + +; +, + + + + + + + +, + + + + + + + + + + + +. + + + + + +, + + + + + + + +, + + + + + + + + + + + +. +, + + +· +, + +· +, + + +. + + + + + + + + + + + + +. + + + + + +, + + + + + +, + + + +; + + + +, + + + +; + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + +· + + + + + + + +. + + + + +· + + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + +, + + + + + +. + + + +, + + + + + + + + + + + +. + + + + + +. + + + + + + + + +; + + + + + + +, + + + + + + +· + + + + + + +, + + + + + +. + + + + + + + + + + +. + + + + + + +. + + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + +, + + + + + + +; + + + + + + + +· + + + + + + +. + + + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +, + + +· + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +, + +, + + + + + +. + + + + + + + + +, + + + + + + +· + + + + + + +, + + + + + +. + + + + + + + + + +. + + + + + + + +, + + + + +. + + + + + + + +, +. + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + +. + + + + + +. + + + + + +, + + + + + + + + +· + + + +, + + + + +. + + + + + + +, + + + +, + + + +, + +, + + +, + +, + + + + + +, + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + +· + + + + + + + + +. + + + + + + +, + + + +. + + + + + + + +. + + + + + + + + + + + + + + +· + + + + +, + + + + +· + +, + + +. + + + + + + +· + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + +, + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + + +. + + + + + + + +, + + + + + + +· + + +. + + + + + +, +, +. + + + + + +, +; + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + +, + + +; + + + + + +; + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + + +. + + + + + + +· + + + + + + + + + + + +, + + + + +. + + + +, + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + +, + + + + + +. + + + + + + + +. + + + + + + + + + + +, +, + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + +; + + + +, + + + + +, + + + + +; + + + + + + + + + + + + + + +— + + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + +, + +, + + + + +. + + + +. + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + +. + + + + + + + + + + + + + +, + + + + + +; + + + + + + + + + + + + + + + + + + +; + + + + + + + + +, + + +. + + + + + + + + +· + + + + + + + +, + + + +. + + + + + + +· + + +, + + +, + + + + + + + +· + + + + + + +, + + +. + + + + + + + + + + + + + + + + +· + + + + + + + +, + +. + + + + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + +, +· + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + +· +· + + + + + + +. + + +. + + + + +, + + + + +, + + + +. + + + + + + + + + +. + + + + + + + + + + + + +, + +. + + + + + + + + +, + + + + + + + + + +; + + +, +. + + + + + + + + + + + +. + + + + +. + + + + + + +, + +. + + + + + + + + + +. + + +, + + + + +. + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +· + + + + + + + + + +, + + + + + + + + + +, + + +, + + + + +, + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + +. + +, + +, + +, + +· + +, + +. + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + +. + + + + + + + +, + + + + + +· + + + + +. + + + + + + +· + + + + + + +, + + + + + +· + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + +. + + +, + + + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + +. + + + + +· + + + + +, + + + + + + +· + + + + + + + + +, + + + + + +. + + + +, + + + + + +· + + + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +. + + + + + + + + +· + + + + +, + +. + + + + + + + +, + + + +· + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + + + +, + + + + +. + + + +· + + + + + + +, + + + + +. + + + + + +, + + + +· + + + + + +, + + + +. + + + + + + + +, + + + + + +· + + + + + + + + + + + +. + + + + +; + + + + + + + + + + + + +. + + + + + + + + + +. + + +· + + + +. + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + +· + + + + + + + + + + +, + + + +. + + + + + + +, + + + + + + + + + +. + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +, + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + +, + + +; + + + + + + + + + + + + +· + + + + +, + + + + +, + + + + + +· + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + +; + + +; + + + + +; + + + + + + + + + +. + + +; + +; +, + +, + + +. + + + + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + +. + + + + + + + + + +· + + + +, + + + + + +. + + + +. + + + + + +; + + + + + + + + + + + + + + + + +· + + + +· + + + + + + +, + + + +. + + + + + + + +, + + + + + + +, + + + +. + + + + + + + +. + + + + + + + + + + + +, + + +· + +, +· + +, +· + + + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + + + +. + +, + +, + + +; + + +· + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +. + + + + + + + + + +, +, + + + + + +, + + + + + + +, + + + +· +, + +, + + + + + +. + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + +, + + +. + + + + + + + + + +, + + + + + + +, + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + + + + +, + + + + +; + + + + + + + + + + + + + + + + + + + +; + + + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + +. + + + + + + + +. + + + + + +· + + + + + + + + +; + + +. + + + + + + + + + + + + +, + + + + + + + +, + + + + +; + + + + +. + + + + + +. + + + + + + + +. + +, + + + + + +. + + + + + + + + + + +. + + + + + +. + + + +, + + + +, + + + + + + + +· + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + +, + + + + +. + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + + + + +. + + + + + + +· + + +, + + + + + +. + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + +, + + +· + + + + + +; + + + + + + + +, + + + + + +; + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + +, + + + + + +; + + + + + + + +, + + + + + + +. + + + +, + + + + + + +, + + + + + + +. + + + + + + + + + +, + +· + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +· + + + + + + +. + +, + + + + + +; + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +· + + + + + +, + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + +. + + + + + + + + +, + + + + + +, + + +. + + + + + + + + +· + + + + + + + +. + + + + + + + + + + +, + + + +· + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + +; + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + +· + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + + +. + + + + + + + + + + + +; + + + + + + + + + + + + + +, + + + +. + + +, + + + +· + + + +, + + + + + +. + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +, + + + + +, + + + + +· + + + + + + + + + + + + + + +, + + +. + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +. + + + + + + + + +, + + + + + + + + + + +· + + + + + + +. + + + + + +, + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + +, + + + + + + + + + + + + +, + + +. + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + +. + + + + + + + + +, + + + + + + + +; + + + +; + + + + + + + +. + + + + + + + + + +; + + + +, + + + + + + + + + +· + + + + + +· + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +· + + + + + + +, + + +, + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +, + + + +. + + + + + + + + +, + + + + + +· + + + + + + + + + + + + + +, + + + +. + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +· + + + + + +· + + + +, + + + + + +· + + + + + + + +, + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + +. + + + + + + + + + +. + + + + + + +. + + + + + + + + + + +, + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + +, + + + + +. + + + + + + +· + + + + + + + + + + +, + + + + + + + +· + + + + + + + + +. + + +; + + +. + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + +. + + + + + + + + + + + +, + + + + + + + + + + + + +; + + + + + + +; + + + + + + + + + + + + + + + + +; + + + + + + + + +; + + + + +; + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + +· + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + +, + +, + + + + + + + +. + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + + + + + + + +. + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + +· + + + +, + + + + + + + +. + + + + + + + + +· + + + +. + + + + + + + + + + + + + +. + + +· + + + +. + + + + + + + +, + + + + + + + +, + + + + +, + + + + + + +, + + + + +. + + + + +, + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + +. + + + + + +. + + + + + + + + + +, + + + +, + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + +. + + + + + + + +, + +· + +. + + + + + + +, + + +, + + + + + + + +. + + + +. + + + + + + + + + + + + + + +. + + + + +, + + + + + +, + +. + + + + + + + + + + + + +, + + +; + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + +· + + + +. + + + + + + + + + + + + + + + + + + + +; + + + + + + + +. + + + + + + + + + + + + + + + + + +; + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + + + + +, + + + + + + + + + +· + + + + + + + + + +. +, + + + + + + + + + + + + +, + + + + + + + +· + + + +, + + + +. + + + + + + + + +· + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +; + + + + + + + + + + + + + + +. + +· + + + +· + + + + +, + + + +. + + + + + + + + + +. + + + + + + + +; + + + + + + + + + + + + + + + + +; + + + + + + + + + +, + + + +. + + + + + + +, +, +, +, +, +, +. + + + + + +· + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + +, + + +· + + + + +. + + + + + +. + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + +. + + + + + + +, + +. + + + + + + + + + + + + + + + +. + + + +, +· + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +· + + + +. + + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + + +, +, +, +, + + +, + + + + + + +· + + +· + + + + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + +, + + + + + + + + + + +· + + + + + +, + + + + + +. + + + + + + + + + + + + + + +; + + + + + + + +; + + + +, + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + +, + + + + + + + +. + + + + + + + + + + +. + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + +, + + + +· + + + +, + + + + +. + + + + + +, + + + + + + + +; + + + + + +, + + + + + + + + + +. + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + +, +, + + + +; + +, + + + + + + + + + + +; + + + + + + + + + +; + + + + + + + + +; + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + + + +, + + +, + + + + + + +. + + + + + + +; + + + + + + + + + + + + + + + +. + + + + + + + +, + +, + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, +· + + + + +. + + + + + + + + +, +· + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +, + + +. + + + + + + + +, + +· + + + + + + + + +, + +. + + + + + + + + +, + + + + +; + + + + + + + +; + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + +. + + + +, + + + + + + + +, + + + + + + + + +. + + + + + + + + + +. + + + + + + + +, + + + + +· + +, + + + +, + + + + + + + +. + + +, + + + + +, + + + + + + + + + + + + + +, + + +· + +. + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +; + + + + + + + + + +· + + + + + + +, + + + +, + + + + + +· + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + +· + + + + + + + + + + +. + + + + + +, + + + + +. + + + + + + + + + +, + + + + +; + + + +; + + + +. + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +; + + + + + + + +· + + + +, + + + + + +, + + + + + + +, + +, + + + +. + + + + + + + + + + + + + + + + + + +, + + +, + + + + +. + + +. + + + + + + + + + + + + + + + + + + + +; + +. + + + + + + + + + + + + +, +; + + + + + + + + + +; + + + + + + + +; + + + + +, + + + + + + + + +. + + + + +, + + + + + + + + + + +, + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +, + +· + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + +· + + + + +, + + + + + + + + +. + + + + + + + + + + +, + + + + + +· + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + +, + + + + + +· + + + + + + + +, + + + + + + + + + +. + + + + + + +· + + + + + + + + + + + + + + + + + + + +. + + +; + + + + + + + + + + +, + + + + + + + + + + + + +; + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + +, + + + +· + + + +, + + + + + + +, + + + + + + + + + +· + + + +, + + +· + + + + + +, + + + + + + + +. + + +, + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +, + + + + +. + + + + + + +, + + + + + + + + + +; + +; + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + +. + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + + + +, + + +. + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + + + + + +, + + + + + +, + + +· + + + + + + + +, + + + +; + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + +. + + + + +, + + + +. + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +; + + + + + + +. + + + + +, + + +. + + + + + + + + + + +; + + + + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + +, +. + + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + + + + + + + +. + + + +. + + + +, + + + + + + +· + + + + +. + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + +. + + + + + + +, + + + + + + +; + + + + + + + + + +; + + + +· + + + + + + +, + + +. + + +; + + + + + + +, + +, + +, + +, + + + + + +, + + + + + + +. + + + + + + +· + + +; + + + + + + + +, + + + + + + + +, + + + + +, + + + +. + + + + + + + +· + + + + +. + + + + + + + + + + + + + + + + + + +. + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +; + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + +; + + + + + + + + + + + + +, + + +, + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +, + + + + + + +. + + +. + + + + + + + + + +. + + + + + + + +, + + + + + + + + + +; + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + +. + + + + + + + +· + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + +, + + +· + + + +; + + + + +· + + + + + + + + +· + + + + + + + + +; + + + + + + + + + +; + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +, + + + + +, + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + +; + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + +; + + + + +. + + + + + + +, + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + +· + + + + + + + +, + + +, + + + + + + + +, + + +· + + + + + + + +, + + + + + + + + + +. + + + + + + + + +. + + + + + + + +, + + + +, + + + +, +, + +. + + + + + + +· + + + + + + +, +, + +. + + + + + + + + + + + +; + + +, + + + + +. + + + + + + + +, + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + +· + + +. + + + + + +, + + + + + + +· + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + +, + + + +. + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + +· + + + +. + + + + + + + + + + + + +; + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + + + + + + + + + +, +, + + + + + + +; + + + + + +· + + + + + + + + + +; + + + + + + + + +, + + +. + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +. + + + + +. + + + + + + + + + + +; + + + + + + + + +, + + + + + +, + + + + + +, + + + + + + + + + + + +, +· + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +; + + + + + + +; + + + + + + + + + + +, + + + +, + + + + + + + +· + + + + + +; + + + + +; + + + + + +· + + + +, + + + + + + + +; + + + + +, + + +· + + + + + + +. + + + + + + +. + + + + + + + + + + + + +. + + + +; + + + +· + + + + +, + + + + + +. + + + + + +, + + +. + + + + + +. + + + + + +, + + +. + + + + + + + + +; + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +· + + + + + + + +· + + + + + + + + +. + + +. + + + + + +, + + + + + + + + + + + +, + + + +, + +. + + + + + + +, + + + + + + + + + + +. + + + + + + + + + +, + + +, + + +. + + + + + + +, + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + + +· + + + + + + + + +. + + + + + + +, + + + + +; + + + + + +, + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +, + + + + +· + + + +, + + + + + +; + + + + + + + + + + + + + + + + + + +. + + + + + + + +· + + + + +, + +. + + + + + + + + + + + + + + +· + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + +, + + + +. + + + + + + + + + + + + +, + + + + + + +, + + +· + + + +. + + + +, + + + + + +, + + + + + +· + + + + + + + + + +. + + + +, + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + +· + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + +· + + + + +. + + + + + + + + + + + + + +· + + + +, + + + + + + +; + + +. + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + +, + + +. + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + +, + + + + + +· + + +, + + +; + + + + + +; + + + + + + + + + + +, +; + + + + + +. + + + + +. + + + + + + + + + +; +· +. + + + + + + + + + + + + + +. + + +, + + + +. + + + + + + +, + + + +, + + + + +, + + + + + + + +, + + + + + + + + + + + + +. + + + + + +· + + + + +, + + + + + + + + + + +· + + + + + + +, + + +· + + + + + +. + + + + + + + +; + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + + +. + + + + + + + + +. + + + + + + + +, + + + +, + + + + + + + + +, + + + + + +; + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + +; + + +; + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + +, + + + +; + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +· + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +· + + + + + +, + + + + +. + + + + + + + +· + + + + + + + +. + + +, + + + + + + +. + + + + + + +. + + + + +, + + + + +. + + +, + + + +, + + + + + + + + +· + + + +, + + + +. + + +, + + + +, + + + + + + + + + +, + + +, + + + + + +. + +, + + + + + + + + + +, + +· + + + + + + + + +, +. + + +, + + + +, + + + + + + + + +; + + + + + + +, + +· + + + + + + + + + +, +. +, + + +, + + + + + + + + +; + + + + + + + + + + + + + + +· + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + +. + +, + + + +, + + + + + + + + + +, + + + + + +, + + + + + + + +· + + + + + + +. + +, + + + +, + + + +. + +, + + + +, + + + + + + + + +, + + + + + + +. + +, + + + + + + + + + + + + +. + +, + + + +, + + + +, + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + +. + +, + + + +, + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +. +, + +, + + + + + + +; + + + + + + + + + + + +· + + + + +, + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + +, + + + + + + +. + +, + + + + + + + + + +, + + + + + +, + + + + + + + + + +, + + +. + + + + + +. + + +, + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +; + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + + + +; + + + + + + + + + + +. + + + + + + + + + + + +, + + +. + + + + + + +· +, + +· + + +, + + + + +. + + + + + + + + +, + + + + + + +· + + + + +. + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + +· + + + + + + +· + + + + + + + + + + +. + + + + +, + +. + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + +, + + + + + + + + + + + + +. + + + + + + +, + + + + +· + + + + + + + +. + + + + + + + + +, + +, + +· + + + + +, + + + + + + + +, + +, + + +. + + +. + + + + + + + + +, + +· + + + +, + +· + + + + + + + + + + +, + + + + + + + +· + + + + +, + + + +. + + + + + + + + + + +, + + + + + + + +, + + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + +· + + + + + + + + + + +, + + + + +· + + + + + + +, + + + + + +. + + + + + + + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +, + + +, + + + + + + + +, + + + + + + + + + +, + + + + + + + + +. + + + + + +, + + + + +· + + + + +, + + + + +. +, + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +; + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + +. + + + + + + + +, + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + +. + + + + + + + +, + + +. + + + + + + + + + + +. + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + + + + + +. + + + + + + +, + + + + + + + + +, + + + +. + + + + + + + + + +, + +. + + + + + + +, + + +. +, + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + +, + + +, + + + + +, + +. + + + + + + + + + + + + + +· + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + +· + + + + +. + + + + + +, + + + +, + + + +, + + + +· + + + + + + +. + + + + + + + +, + + + +· + + + + +. + + + + + +, + + + +, + + + +, + + + +· + + + + + + +. + + + + + + + + + +, + + + + + +, + + + +, + + + + +· + + + + + + + + + +· + + + +. + + + + + + + + + + +, + + + + + +, + + + + +; + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + +· + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + +· + + + + + + +, + + + + +, + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +, + + + +, + + + + +, + + + +, + + + +, + + + + + + +. + + + + + + +, + + + + + +, + + + +; + + + + + + +, + + + +; + + + + + + + + + + + +; + + + + + + + + +, + + + + + + + + + +, + +. + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + +, + + + + + +, + + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + + + +; + + + + + + +, + + + + + + + +, + + +. + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + +· + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +; + + + + + + + +. + + + + + + + + + + +; + + + + + +· + + + + + + +, + + + + +· + + + + + + + + + + + + + + +. + + +, + + + + + + + + + +, + + + + + + + +. + + + +, + + + +, + + + + + + + + +, + + + +; + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, +; + + + + + + + + + + + + +, + + +. + + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + +, +; + + + +. + + + + + + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + + + + +. + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + +· + + + + +, + + + + + +· + + + + + + + + + +. + + + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + +. + + + + + +. + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + +. + + + + + + + + + + + +, + + +, + + + + + +· + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +; + + +, + + + + +· + + + +, + + + +. + + + + + + + +, + + + + + + + + +, + + + +. + + + + + +, + + +. + + + + + + + + + + +, + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + + +. +, +· + + + + +. + + + +, + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· + +. + + + + + + +, +, + + +. + + + + + +, + + +. + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + +, + + + + + + + +; + + + + + + + + +; + + + + + + + + + + + + + + + + + + +; + + + + + + +, + + + +. + + + + + + + + + +. + + + + + + +. + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +; + + + +. + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + +· + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + +; + + + + + +· + + +; + + + + + + +. + + + + + + + + +, + + + + + +, +, + + + + +; + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + +. + + + +. + + + + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + +. + + + + + +; + +. + + + + + + + +, + + +. + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +, + + + +. + + + + + + +· + + + + + + + + + + + +; + + + + + +. + + + + + + + + + + + +. + + + + + + + + + +; + + + + + + + +, + + + + +. + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + + +, + + + + + +; + + + + + + +. + + + + + + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + +; + + + + +. + + + + + + + + + + +; + + +. + + + + + + +; + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + +· + +. + + + + + + + + + + + + + + + +. + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + +, + + +, + + + + + + + + + + + + +. + + + +, + + + + + + + + + +, + + + + + +. + + + + +, + +· + + + + + + +. + + + + + +, + + +, + + + + + + + + +· + + + + +. + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + +, + + + + +, + + + + +. + + + + + + + + + + + +, + +· + + + + +, + + + + + + + + +. + + + +, + + + + +· + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + +; + + + + + +, + + + +; + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + +, + + + +, + + + +, + + + + + + + + + + +· + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + +· + + + + + +, + + + + + + + +, + + + + + +. + + + + + + + +, + +, + + + + + +· + + + + + + + + +. + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + +. + + +, + + + + +, + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + +· + + + +. + + + + + + + + + + + +. + + +, + + + + +, + + + + + + + + + + +. + + + +· + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + +· + + +· + + + +· + + + + + +. + + + + + + + + + + + +, + + + + + + +, + + +. + + +. + + + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + +. + + + + + + +· + + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + +. + + + + + + +. + + + + + + + + + + +. + + + + + + + +, + + + + + + + +, + + + +, + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + + + + + + +, + + + + +· + + + + + + + + +, + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + + + + + + +. + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + +, + + +. + + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + + + +· + + +. + + + + + + + +, + + + + + +. + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + + + +· + + + + + + + + + + + + + + +. + + + +· + + + + + + + + +. + + + + + +· + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + +, + +; + + +. + + + +, + + + +. + + + + + + + + + +. + + + + + + + + + + + + + +. + + +, + + + + + + +; + + + +· + + + + + +, + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + +. + + + + + + +· + + + + +, + + +. + + +, + + + +, + + + + + + + + + +· + + + + + + + + +. + + + + + + +, + + + +, + + + + + +, + + +. + + + + + + + + + + +, + +. + + + + + + + +, + + + + + + + + + +. + + +· + + + + + +, + + + +· + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, +. + + + + + + +, + +. + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + +, + + + + + +· + + + + +. + + + + + + + + + + + +. + + +, + + + + + + + +, + + + + +. + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + +· +, + + + +. + + + + + + + + + + + + + + + + +; +· + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + + + +; + + +, + + + + + + +, + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + +. + + + + + +· + + + + + + +, + + +. + + + + + + + + + + +, + + + + +. + + + +. + + + + + + + +, + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + +; + + + + + + + + + + + + + + + +· + + + + + +. + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + +; + + + + + + + + + + + + + + + + + + +; + + + + + + +, + + +. + + + + + + + + +, + + + + + + +. + + + + + + + +· + + +, + + + + + + + + +, + + + +. + + + + + + + +· + + +, + + + + +, + + + + + + +. + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +; + + +· + + + + +, + + + + + + + + + +; + + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + +; + + + + + + + + +, + + + + + + +· + + + + + + + + + +. + + + + +, + + + + + + + +· + + + + + + + +, + + +. + + + + + + + + + + + + +. + + + + + + + + + +, + + + +; + + +. + + + + +, + + + + + + +, + + + + + +. + +, + + + + +. + + + + + + + + + + + +, + + +. + + + + + + + + + + +· + + + + + + +· + + + + + + + + + + + + + + + + + + + +, + +, + + +, + + +. + + + + + + + + + + + +, + + + +· + + +, + + + + + + + + +. + + + + +, + + +, + + + + + + + + + + + +. + + + + + + + + +. + + + + +, + + + + +, + + + +. + + + + + + +, + + + + + + + + + + +· + + + +, + + + + + +· + + + + + + + + + + +, + + + + +, + + + +· + + + + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + +· + + + + +, + + + + + + +. + + + + + + + +· + + + +. + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +; + + + + + +, + + + + + +· + + + + + +, + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + +. + + + + + + + + +, + + + + + +, + + +· + + + + + + + + +, + + + + + +, + + + + +. + + + + +. + + + + + + + + +, + + + + + + + +. + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +; + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + +. + + + + + +, + + + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + + + +· + + + + + +, + + + + + + +. + + + + + +, + + + + + + +, + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + +. + + + + + + +. + + + + +, + + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + +, + + + + + +, + + + + + +, + + + + + +. + + + + + + + +, + + + + + +; + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + + + + + + +· + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +; + + + + + +; + + + + +, + + + +· + + +, + + + + +. + + + + +, +. + + + + + +. + + + + + +, + + +. + + +, + +· + + + +, + + + + + +. + + + + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + +, + +, + +, + + + + + +. + + + + +, + + + +, + + + +. + + + + + + + +, + + + + + +; + + +, + + + + + +, + + + + + + + + +, + + +, + + + + + + +, + + + +, + + + + + + +. + + + + + + + + + + + +, + + +· + + + + + +, + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + +. + + + + +, + + + + + + +, + + + + +. + + + + + + + + + +· + + + + + + +, + + + + +; + + + + + + + + + +, +. + + + +, + + + +. + + + + + + +; + + + +; + + + +, + + + + + + + +, + + + + + + + + +; + + + + + + + + + + + +. + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + +· + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + + +; + + + +, + + +. + + + + + + + + + + +. + + + + + +; + + + + + +, + + +. + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + +, + + + +. + + +. + + + + + + + + + +, + + + + + + + + + +, + +, + + + + +. + + + + + + + + + + + + + +· + + + + + + +. + + + + +, + + + + + + + +, + + + +, + +. + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + +. + + + +, + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + + + + +, + + + + +. + + + + +, + +, + + + + + + + +, + + + + + + + + + + +, + + + + + +, + + + +. + + + +. + + + + +, + + +. + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +, + + + + +, + + + + + + + + +· + + + + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + +; + + + + + + + + + + +, + + + + +; + + + + + +. + + + + + +, + + + +, + + + + + + + + + +. + + + + +, + + + + +· + + +, + + + + + + +. + + + + + + + + + + + + +· + + + + +; + + + + + + + + + + + +, + +. + + + + + + + + + + + + + + + + + +. + + + + + + +, + + +, + + + + +, + + + + + + + +; + + + + + +. + + +. + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + +, + +, +. + + + + + + +· + + + +. + + + + +. + + + + + + + +, + + + + +. + + +, + + + + + +, + + + + + +. + + + + + + + +· + + + + + + + + +, + + + + + + +; + + + + + + + + +; + + + + +, + + + + + + + + + + + + +; + + + + + + + + +; + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +. + + + + + +. + + + + + +. + + + +, + + + + + +, + + + + + + + +, + + + + + + + + + + + +, + +, + +, + + + + +, + + +, + + + + +. + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + +. + + + + +, + + + +, + + + + + + +. + + + + +, + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + +· + + + + + + + + +. + + + + + + + + +, + +. + + + + + + + + + + + + + + + + + + + + +, + + +· + + + + + + + + + + + + + + + +. + + + + + + + + +, + + +· + + + + + +, + + + + + +, + + +, + + + + +, + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + +. + + + + + + + + + + +, + + +· + + + + + + + + + + + + + +. + + + + + + + +; + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + +, + + + +. + + + + + + + + + +. + + + + + + +, + + + + + + + + + + +. + + + + +, + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + +, + + + +· + +, + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + +, + + + +; + + + + + +; + + +. + + + +, + + +. + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + +· + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + +. + + + + + + + + + +, + + + + + +. + + + + + + +, + + + + + +, + + + + + + + + + + + +· + + + +. + + + + + + + + + + + +, + +· + + + + + +. + + + + + +, + + + +, + +, + +. + + + + + + +, + + + +· + + + + + + +· + + + + + +, + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + +. + + + + + + + + +, + + +, + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +; + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +· + + + +, + + + +· + + + + + + + + + +. + + + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + +, + + + + +, + + + + + + + + + +, + + + + + + + + + +· + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + +; + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + +, + + + +; + + + + + + + +, + + + +. + + + + + + + + + + + +, +, +, +, +, +, +, +, +, + +, +, +, +· + + + + + + + + + +. + + + + + + + +. + + + + + +, + + + + +· + + + + +, + + + + + + + +, + + + + + +· + + + + +, + + +· + + + + + + + + + + +. + + + + + + + +· + + + + + + + + + + + + +. + + + + + + +, +· + + + + + + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + +, + + +. + + + + +, + + + + + + + +, + + +. + + + + + +· + + + +, + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +· + + + + + + + +, + + + +· + + + + + +. + + + + + + + + + + + + + + + +; + + + + +; + + + + +. + + + + + + + +· + + + + + + + + + + + + + +, + + + +. + + + +· + + + + + + +. + + + +, + + + + + +. + + + +. + + +. + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + +, + +. + + + + + + + + + + + +; + + +, + + + + + +. + + + + + + + + +. + + + +, + + + + + + + + + + + +. + + + + +, + + + + + + + + + +. + + + + + + + +. + + + + + + + + + +; + + + +; + + + + +; + + + +, + + + + +; + + +, + + + + + + + +, + + + + +; + + +. + + + + + +, + + + + +; + + +. + + + + +; + + + +. + + + +, + + + + + +. + + + + + + + + + + +, + + + + + +, + + + +, + + + + +; + + + + + +, + + + +. + + + + + + + + + +, + + + +, + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + + + + +; + + + + + + + + + + + +, + + +, + + + + + +. + + + + + + + + +; + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +· + + + + +. + + + + + + + +. + + + + + + + + + + + + + + +, +, + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +, + + +. + + + + + + + +, + +· + + + + + + + + + + + +, + +. + + + + + + + + + + + + +; + + + + + + + +; + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + +. + + + +, + + + + + + + +, + + + + + + + + +. + + + + + +, + + + + +. + + + + + + + +, + + + + +, + + + +, + + + + + + + +. + + + + +· + + +. + + + + +, + + + + + + + + + + + + +, + +. + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + + +· + + + + + + + +, + + + + +; + + + + + + +, + + + + +, + + + +. + + + + + + + + + + + + + + +. + + + + + + + +, + + + +. + + + + + + +; + + + + + + + +, + + + + + +, + + +· + + + + +, + +, + + + + + + + +· + + + + + + + +, + + +. + + + + + + + +, + + + + +; + + + +; + + + +. + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + +; + + + + +· + + + + + + + + + + + + +· + + + +, + + + + +. + + + + + + + +, + + + +. + + + + + + + +· + + + +. + + + + + + +, + + + + + + + + + + + +, + + +, + + + + + + + +. + + + + + +· + + + +, + + + + + +. + + + + + + + + +, + +. + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + +. + + + + + +, + + + + + +· + + + + +, + + + + + + + + + + + +, + + +, + + + + + +. + + + + +, + + + +. + + + +. + + + + + + + + + + + +; + + +· + + + + + + + + +. + + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + +, + +· + + + + +, + + + + + + +. + + + + +, + + + + + + + +, + + + +, + + +, + + + +. + + + + + + +· + + + + + + + + + + + + + + +· + + + + + +, + + +. + + + + + + + + +, + + +, + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + +, + +· + + + + + + + +, + + + + + + + + +, + + + + +. + + + + + + +, + +· + + + + + + + +, + + + + + + + + +. + + + + + + +, + +· + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + +. + + + +. + + +· + + + + + +, + + + +; + + + + + + + +. + + + + + + + + + + + + +, + + + + + +, + + + + + +. + + + + + + + + + +, + +. + + + + + + + + +; + + +· + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + + +, + + + + + + +· + + + + + + +. + + + + +, + + +. + + + + + + + + + + +. + + + + + + + + + + + +, + + +· + + + + + + + + +, +. + + + + + + +· + + + + +. + + + + + + + + + + + + + +, + + +· + + + + + + + +. + + +, + + + + + + + + + +, + + + + +. + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +; + + + + + + + + +; + + + + + + +. + + + + +, + +, + +, + +, + +, + + + + + + +. + + + + +, + + + + + +. + + + + + + + + + + + + +· +, + + + + + + +, + + + + +, + + + +. + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + + + + + +. + + + + + + + + + + +; + + + + + + + +, + + + +· + + + + + +. + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +. + + + + + + + +, + + + + + +, + +, + + + +. + + + + + + + + + + + +, + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +; + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + +, + + + + + + +; + + + + +. + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + +, + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +. + + + + + +· + + + + + + + +, + + +, + + + + + + + +, + + +· + + + + + + + + + + + + + + + + + + +. + + + +. + + + + + + + + + + + + + + + +, + +, + + + +. + + + + + + + + + + + + + +, + +. + + + + + +· + + + + + + +, + +. + + + + + + +. + + + + + + +, +, + +. + + + + + + + + + + +. + + + + + + + + +; + + + + + + +, + +. + + + + + +, + + + + +. + + +, + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +· + + + +. + + + + + + + +; + + + + + +, + + + + + +. + + + + + + + + + + + +, + + +. + + + + + + + + + + + +; + + + + + + + +· + + +. + + + + + + +, + + + + + +, + + + +. + + + + + + + + +, + + +, + + + +. + + + + + + + +· + + + + + +· + + + + + + + +· + + + +. + + + + + + +· + + + + + +, + +, + + + + + +. + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + +· + + + + + +. + + + + + + + + + + + + +. + + + + +. + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + +; + + + + + +. + + + + + + +, + + + + +· + + +, + + + + + + + + +. + + + +, + + + +. + + + + + + + + +. + + + + + + +, + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + +. + + + +, + + + + +, + + +, + + +. + + + +, + + + + + +, + + + + + + + + + + + + + +. + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + +; + + + + + + + + + +; + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + + + +; + +. + + + + + + + + +, + + + + + + +; + + + + + + +· + + + + + + + + +. + + + + + + +. + + + + + + + + + + + + + +. + + + + + +. + + +, + + + + + + + + +, + + + +, + +. + + + + + + + +, + + + + + + + + + +· + + + + + + +. + + + + + + +· + + + +. + + +· + +, + + +, + + +, + + +. + +, + + +· + + + + + + + + + + +. + + + + + + + + + + + +· + + +, + + + + +. + + + +, + + + + + +. + + + + + +; + + + + +, + + + + +. + + + + + + + + + +, + + + + +· + + + +, + + + + + +; + + + +, + + + +· + + + + + + + +. + + + +. + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + +· + + + + + +, + + + + + + + +· + + + + + +; + + + +; + + + + + + + + + + +; + + + + +. + + +. + + + + + + + + + +; + + + + +. + + + + + + + + + + + + + + +. + + + +. + + + +, + + + + + +, + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + +· + + + + +, + + + + +· + + + + +, + + + + +· + + + +· + + + + + +. + + + + + +. + + +, + +, + + +; + + + + + + +. + + + + + + + + + + + + + + + + +; + + + + +, + + + +, + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + +. + +. + + + + +, + + +, + + + + +, + + + + + + +; + + + + + + +, +, + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + +. + + + + + +, +, + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + +, + + + + +, + + + + + + + + + +. + + + + + +. + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + +; + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +, + + + +. + + + + + + + + + + + + + +· + + + + +· + + + + + + + +, + + +. + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + +; + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +, + + +, + + + + + + + +; + + + + + + + + + + + +. + + + + + + + + + +, + + +. + + + + + + +, + +· + +, + + + +. + + + + + + + + +. + + + +, + +· + + +. + + + +· + + + + + + + + + + + + + + + +, + + +. + + + + + + + + +. + + + + + +, + + + +, + + + + + + + + +, + +· + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +· + + + + + + + + +· + + + + +, + +. + + + + + + + + + + +, + + +, + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + +· + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + +· + + + + + + + + +. + + + + + + + + + +, + +, + +· + + + + + + + + + + + + + + + + +· + + +· + + +. + + + + + + + + + + + +, + + + + + + + +, + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + +· + + + + + + + + + + +, + + + + + +· + + +, + + + +, + + + + + +. + + + + + + + + + + + + + + +. + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + +, + + + +. +, +· + + + + + + +. + + + + + + + + + + + + + +, + + + +, + + + + + +. +· + + + + + + + + + +, + + + + + + + +· + + + + + +. + + + +, + +, +. + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + + +· + + + + + + +. + + + + + + + + + + + + + +; + + + + + + + + + + + + +· + + +. + + + + + +· + + + +; + + + + +. + + + + + + +, + + + + + + +, + + + + +. + + +· + + + + + + + +. + + + +, + + + + + + + + +, + + + + + + + +. + + +, + + + +, + + + + + + + +. + + + + + + + + +. + + + + + +. + + + + + +, + + + +, + + + + + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + +· + +, + + + + + + + + + + + + + + + +, + + + + + + + +; + + + + + + + +· + + + +. + + + + + + + + + + + + + +, + + + +. + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + +; + + + + + + +, + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + +· + + + + +. + + + + + +, + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + +, + + + + +, + + + +. + + + + + + + + + +. + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + +. + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + + + + + + + +· + + + +. + + + + + + +, + + + + + + + + + + +, + + + + +, + + +· + + + + + +· + + + + + + + +. + + + + + +, + + + + +, +; + + + + +; + + +, + + + + +· + + + +, + + + +. + + + + + + + +. + + + + + +, + + +, + + + + + + + + +. + + + + + + + + + + + +· +· + + +, + + + + + + + + + + +. + +· + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + +. + + + + + + +, + + +· + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + +, + + + +· + + + + +. + + + + +. + + + + + + + + +, + + +· + + + + + + +. + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + +· + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + +; + + + +; + + + + + + +. + + + + + + + + + + + + + + + +; + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +; + + + +· + + +; + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + +· + + + + + + + + + + + + + + +. + + + +. + + + + + + + + + + + + +· + + + +. + + + + + + + + + + + + + +. + + + + + +. + + + + + + + + + + + + + + + + + + +· + + +. + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +; + + + + + + +. + + + + + +. + + + + + + + + + +; + + + +. + + + + + +, + + + +. + + + + + + + + +. + + +, + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + +; + + + + + +. + + + + + + + + +; + + + + + +. + + + + + + + + + + + + +, + + + + + + +. + + + + + + + +, + + +, + + + + +. + + + + + + + + + +· + + + + +, + + +· + + + + + + + + +, + + + + + +. + + + +, + + + + + + + + + +. + + + + + +. + + + + + + + + +, + + + + +, + + + + +. + + + + + +, + + + + + +. + + + + +· + + + +. + + +, + + + + +, + + + + + + +. + + + + + + +. + + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + +· + + + + + + + + + + + +, + + + +. + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + +, + + + +; + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +. + + + +, + + +, + + +, + + + + +, + +, + + + + + + + + +, + + + + + + + + + + +. + + + + + + +, + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + +. + + + + + + + + + + + + + +; + + + + + + +· + + + +. + + + + + + + + + + + + + +, + +. + + + + + +· + + + + + +· +, + + +· + + + + + +. + + + + + + + + + + + + + + +· + + +, + + +. + + + + + +, + + + + + +· + + + +· +. + + + + + + + + + + +, + + + + +. + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + +· + + + + +· + + +. + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + +, + + + +. + + + + + +, + + + + + +, + +, + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +, + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +, + + + + +. + + + + + + +, + + + + + + + + + +. + + + + +, + + + + +, + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + +, + + + + +. + + + + + + + +, +, + + + + +, + + + + + + + +, + + + + + +· + + + + + +, + + + + + + +. + + + + +, + + + + + + +, + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + +, + + + + + + + + + +, + + + +. + + + + + + + + + +; + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +, + + + + + +. + + + + + + +, + + + + + + + + +. + + + + + +, + + + + + + + +· + + + + +, + + +. + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + +, + + + + + +. + + + + + +, +, + + + +. + + + + + +, + + + + + + +. + + + + + + +, +· + + + + + +· + + + + + + + +, + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + +; + + + + + + + + + + +, + + + + +· + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +· + + + + + + + +. + + + + + + +· + + + + + +. + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + +, + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + +· + + + + + +. + + + + +, + + + + + + + + + + +. + + + + +, + + + + +· + + + + + + +, + + + + + + +. + + + +, + +, + + + + + + + + +. + + + + + +, + + + + + + + +, + + + + + +. + + + + + + + + +, + + +. + + + + + + + + + + + + + + + +, + + +. + + + + + + + + + + +, + + + + + + + + + +. + + + + + + +, + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + +. + + +. + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +, + + + + + + +; + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + + +. +, +, + + + + +· + + + + + + +, + + + + + + + + + + +, + + + + +, + + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + +. + + + +, + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + +, + +. + + + + + + + + + + + + +, + + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + +. + + + + + + +· + + + + + +, + + + + +, + + + + +, + + + +, + + +. + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + +, + + + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + + +, + + + +, + + + + + +· + + + + + + + + + + + + + + + + + + +. + + + + + + + +· + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + +, + + + + + +· + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + +ὶ + + + + + + + + + + + + +. + + + +, + +, + + +· + + + + +, + + + + + + + + +, + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + +. + + + + + + + + + + + + +. + + + + +, + + + + + + +, + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + +, + + + + + + + +, + + + +; + + + + + + + +. + + + + + + + +; + + + + + + + + + +; + + + + + + + + + +. + + + + + + + +, + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + +, + + + + + + + + + + +, + + + + +, + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + +· + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + +, + + + + + + + +; + + + + + +· + + + + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + +; + + + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + +; + + + + + + + + + + + +. + + + + + + + + + +; + + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + +· + + + + +, + + + + + + + + + +· + + + + + + + +· + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + +· + + + + +, + + + + + + + + + + + + + + + + + +, + + + + +, + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + +, + + +. + + + + + + + +, + +, + +, +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + +, + + + +. + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + +· + + + + + +, + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + +, + + + +· + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + +. + + + + + + +, + + +. + + + +, + + +, + + + + + + + + + + + + + +, + + +. + + + + + + +, + + + + + + + + + + + + + +, + + + + + +, + + + + + + + +, + + + +, + + + +. + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + +; + + + + + + + + + + +, + +· + + + + + +, + + + + + + +. + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + +, + + + + + + + + + + + +, + + + +· + + + + + + +. + + + + + + +. + + + + + + +· + + + + + +, + + + + + + +. + + + + + + + + + +, + + + + +, + + + +, + +; + + +; + + + +, + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + +, + + + + + + + + +, + + + + + + + + + + +; + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +, + + + + +. + + + + + + +, + + +· + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + +. + + + + + + + +· + + + + +, + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + +· + + + + + + + + +. + + + + + +, + + +, + + + + + + +· + + + + + + + +. + + + +, + + + + + + + +, + + + + + + +. + + + + +, + + + + + +· + + + + + + + +. + + + + + + +· + + + + +. + + + + + + + + + + + +· + +, + + + + + + + +. + + + + + + + + + + + +, + + + +, +. + + + + + + + + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + + + + +· + + + + + +. + + + + + + +, + + + +. + + + + + + + + + + + + + + +· + + + +, + + + + + + +, + +, + + +. + + + + + + + +, +· + + + + + + +. + + + + + +, + + + + + +, + + + + + + + + +, + + +. + + + + + + +, + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + +. + + + + + + + + + + + + + + +; + + + + + + + + +; + + + + + + + + + + + + + + + + +; + + +, + + + + + +, + + + + +; + + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + + +. + + + + +, + + + +, + + + + + + + +. + + + +, + + + +, + + + + + + + +. + + + +, + + + + + + + + +, + + + + +. + + + + + +. + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + + +, +; + + + +, + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + +· + + +, + + + + + + + + + + + + + + +. + + + + + + + +· + + +, + + + + + + +, + + + + + + +· + + + + + + +. + + + + + +· + + + + + +. + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + +, + + + + + + + + +; + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + +· + + + + + + + + + + + + +, + + + +. + + + + + +, + + + + + + + + + + + + + + +· + + +. + + + + + + + + + + + + + + +, + + + +; + + + + + + + + + +. + + +, + + + + +. + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + +, + + + +, + + + + +, + + + +, +, + + +, + + + + + +, + + + +, + + + +, + + + +, + + + + + + + +, + + +, + + +, + + +, + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + +· + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + +, + +. + + + +, + +. + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + +· + + + + + + + + +· + + + + + + + + + +. + + + + +, + + + + +. + +, + + +, + +. +, + + +, + + + +. + + + + + + + +· + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + +, + + + + +. + + + + + + + + + +, + + + + + + + + + + + +. + + + +, + + + + + + + +. + + + + + + + +, + + +. + + + + + +, + + + +; + + + + + + + +. + + + + + + +, + + + +; + + + + + +. + + + + + + +, + + + +; + + + + + + + +. + + + + + + + + + + +· + + + + + +, + + + +, + + + + + + + + +. + +, + + + + + +. + + +, + + + +· + + +, + + + +. +, + +· +, + + +· + + + + + + + + + +· + + + + + +. + + + + + + + + + +; + + + + +; + + + + + +· + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + +; + + + + + + +, + + + + + + + + +, + + + + + + + + +; +, + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + +· + + + + + +, + + + + +. + + + + + + + + + + + +, + + + + + + + + +· + + + + + + + +. + + + + + +, + + + + +; + + + + + + + + + + + + +, + + + + +. + + + + +, + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + +, + + +, + + + + + + + +. + + + + + + + + + + +, + + +. + + + + + + + +, + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + +· + + + + + + + + + + +. + + + + + +. + + + + + + + + +, + + + + + + +, + +· + + + + + + + + + +· + + + + + + +· + + +, + + + + +. + + + + + + + +, + + + +, + + + +, + +, + + +, + +, + + + + + +, + +. + + + + + + +, + + + + + + + + +, + + + + + + +. + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + + +, + + + +, + + + + + + + +. + + + + + + + + + + + + +. + + + + +, + + + +, + + +, + +, +. + + + + + + +, + + + + + +. + + + +, + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + +; + + + + + + + + + + + + + + + + + + +, + + +; + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + +· + +, + +, + +, + + +, + +, + +· + + + + + + + + +. + + + + + + + + + + + + + +; + + + + + + + +; + + +; + + + + + +; + + + + + + + + + + + +. + + +; + +; +, + +, + + +. + + + + + + + + + + + + +, + + + + + + +. + +, + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + +, + + + +· + + + + + + + + + + + + +, + + + +. + + + + + + + +, + + + +; + + + + + + + + + + + + + + + + +· + + + +. + + + + + + + + + + +, + + + +. + + + + + + + +, + + + + + + +, + + + +. + + + + + + + + +. + + + + + + + + + +· + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + +, + + +. + + + + + + + +, + + + +. + + +, +, +. + + + + +· + + + + +, + + + +. + + + + + +. + + + + + +; + + + + + + + + +. + + + + + +. + + + + + + + + + + + +; + + + + +, + + + + + +· + + + + + + + + + + + + +. + + + +· + + + + + + + + + + +. + + + + + +· + + + + + + +. + + + +, + + + + + +, + + +· + + + +, + +. + + + + + + +. + + + + + + + + + +, + + + +; + + + + + + + + + +· + + +. + + + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + + + + + +, + + + +, + + + + +, + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + +, + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + +, + + + + + +. + + + + + + + +, + + + + +. + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + + + + + +. + + + + +. + + + + + + +. + + + + + + + +, + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + +, + + + + +, + + + + + + + + +. + + + + + +, + + + +, + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + +. + + + +· + + + +, + +, + + + + +, + + + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + +· + +. + + + +. + + + + + + +, + + + +. + + + + + + +, +. + + + + + + + + + + +· + +, + + +. + + + + + + +; + + +, + + + + + + +, + + + + + + +, + + + +; + + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + +; + +, + + +. + + + + + + + + + +. + + + + +, + + + + + +, + + + + + + + + + + +. + + + + + + + + +; + + + +, + + + + + +. + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + +· + + +. + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + +, + + + + +, + + + + + + + + + + + + + + + + + +, + +. + + + + + + + + +. + + + + + + + + + + + + +, + + + +· + + + + + +. + + + + + + + + + + + + +· + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + +· + + + + +. + + + + + + +, + + + + + +· + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + +, + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + + + +; + + + + + + +, + + + + + +. + + + + + + +· + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + +, + + + +. + + + + +, + + + + +· + + +. + + + + + + + + + + + + + +, + + + +. + + + + + + + +· + +, + +. + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + +. + + + + +· + + + +. + + +, + + +. + + + + + + + + + +, +. + + + + +, + + +, + + + + +. + + + + +· + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +. + + + + + +, + + + + +. + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + +, + + + + + +, + + + + + + + +. + + + + + +· + + + + + + + +; + + + +. + + + + + + + +. + + + + + + + + + +. + + + + + +· + + + + + + + + + +, + + + + + +. + + + + +· + + + + + + + + +, + + + + + + + + + + + +, + + + + + +. + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + +. + + + +. + + + + + + + + + + + + +. + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + + + +. + + + + +, + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +; + + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + +; + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + +. + + + + + + + +, + +· + + + + + + + + +, + + +. + + + + + + + + + + + + +; + + + + + + + + +, + + + + + +, + + + + + + + + + + + + +. + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + + +, + + + +. + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + +, + + + +, + + + + + + + +, + + + +. + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + +, + +. + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +, + + + +, + + + + +, + + + + + + + +, + + + + + + +· + + + + + + + +, + + +. + + + + + + + + + +, + + + + + + + +; + + + + +. + + + + + + + + + +· + + + + + + + +, + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + +, + + + + + + + + +, + + + + + + + +. + + + +, + + + + +. + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + +, + +· + + + + +, + + + +· + + + + + + + + + +. + + + + + +, + + + + + + + +, + + +, + + + + +. + + + + + + +· + + + + + +, + + +. + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + +, + + +· + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + + +; + + + +. + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + +. + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + +, +· + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +· + + + + + + + + + + + + +. +· + + + + + + + +. + + +, + +, + +· + + + + + +. + + + + +, + + + + + + +. + + + + + +, + + + + + +· + + +, + + +. + + + + + +, + + + + + +· + + + + + + +. + + + + + +. + + + + + + + + +, + + + +, + + + + + +, + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +· + + +, + + + + + +. + + + + + + + + + + + + + +. + +, +, + +, +· + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +. + +, + +, + + +; + + + +. + + + + +, + + + + + +· + + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +, +, + + + + + +, + + + + + + +, + + + +· +, + +, + + + + + +. + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + +; + + + + + + + + + +; + +; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + +· + + + +. + + + + + + + + + + + + + +; + + + + + + + + + + +, + + +, + + + + + + + + + +. + + + + + + + + + +, + + + +. + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + + +. + + + + + +, + + + + + + + + + + + +. + + + + + + +· + + + +, + + + + + + + + + +; + + + + + + +. + + + + + + + +, + + + + +, + + + + + +· + + + + + +, + + + +. + + + + + +, + + + + + +, + + + + + + + +, + + +, + + + + + + +. + + + + +, + +, + + + +· + + + +· + + + + + + + + + +· + + + + + +, + + + + + + +· + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + +, + + + + + + + + + + + + + +· + + + + + + + +· + + + +, + + + + + + + + + +· + + + + +. + +, + + + + + + + + + + +, + + + + + + + + + +. + + +, +, + + +· +, + +· +, + + +· + + + + +, + + + +, + + + +. + + + + + + + + + +, + + + + + +; + + + +, + + +; + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + +, + + + +· + + + + + + + +. + + + +· + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + +; + + + + + + + +. + + + + + + + +, + + + + + +; + + + + + +. + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + +· + + + + + + +, + + + + + + +, + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + + +· + + + + + +. + + + + + + + + +, + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + +· + +, + + + + + + + + + +. + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + + + +, + + + +, + + + + + +. + + + + + + + +. + + + + + +, + + + + + + +· + + + +, + + + + +. + + + + + + + + + +. + + + + + + +, + + + + +, + + + + + + + + + + +. + + + + + + + + + + +· + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + +. +, + + + + + + + + +; + + + + +, + + + + + +. + + + + +, + + + + + + + + + +, + + + + + + + + +· + + + + + + +. + + + +, + + + + + + + + + + + + +. + +, + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + +. + +, + + + + + +, + + + + + +. + + + + + + + + + +, + + + + +, + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +· +, + +, + + + + +. + + + +, + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + +, + + +, + + + + + + + + + + + +, + + +, + +. + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + +. + + + + +· + + + + + + + + + + +. +, + +, + +. + + + + + +; + + + + + + + + + +. + + + + + + + + +. + +· + + +. + + +, + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + +, + +· + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + +, + + + + + + + +; + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + +, + + + + + + + +; + + + +· + + + + + + +, + + + + + + + + + +, + + + + + +, + + + + + + +· +, +, +, +. + + + + + +, + + + + + + + + +· + + +, + +; + + + + + + + + +. + + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + + + + + +. + + +, + + + + +, + + + + + +, + + + + +· + + + + + +. + + + + + + + + + + + +; + + + + +, + + + + +; + + +, + + + + +· + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + +, +. + + + + + + + + +, + + +· + + + + + + + +· + + + + + + + +· + + + + +, + + + +. + +, + + +· + + + + + + + + +. + + + + + + +· + + + + +, + + + + +, + + + + + + +· + + + + + +, + + + + + +. + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +. + + + +, + +· + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + +, + + + + + + +. + + + +, + + + + + + + + + +. + + + + +, + + + + + + + + + +; + + + + + + + + + + + +, + + + + + + + + + + + + + +; + + + +, + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +· + + + +, + + + +, + +. + + + + +, + + + +, + + + +, + + +. + + + + + +, + + + + + +. + + + +, + + + + + +. + + + + + + + +; + +, +, + + +. + + +, + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +, + + + + +, + + +· + + + +, + + + +, + +. +, + + + + + + + +, + + + + + + + +; + + + + + + + + +; + + + + + + + + +, + + + + + + + +, + + + + + + +, + + + + + + +, + + + + + + +. + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + +; +, + +, + + + +, + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + +; +, + +, + + + +, + + +. + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +· + +· + + + + + +; + + + + + +, + + + + + +, + + + + + + + +, + + + + + + +· + + +, + +. + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + +, + + + +, + + + + +· + + +, + + + +. + + + +, + + + + + + +, + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + + + +; + + + + + +, + + + + + + + +, + + + + + + + + +; + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + +, + + + +; + + + +, + + + + + + +, + + + + + +, + + + + + + + + + +. + + + + + + + + +; + + +, + + + + + + + +, + + + +. + + + + + + + + + + + +. + + + + +, + + + +; + + + + + + + + + + +, + + +, +, + + + + +. + + + + + + + + + +, + + + + + + + + + +, + +· + + + + + + + + +. + + + + + + + +, + + + + + +· + + + + + + + +· + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + +, + + + + + + +. + +, + + + + + + + + + +, + + + + + + + + + + + + + + +, + + +. + + + + + +. + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + +; + + +. + + + + + +. + + + + + + + + + + + +, + + + + + + + + +; + + + + + +. + + + + + +, + + + + +, + + + + + + + + +, + + + + +, + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +. + + +, + + + + + +, + + + + + + + + +, + +· + + + + + + + + +. + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + +, + +, +, +, +· + + +, + + + + +· + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + +, + + + + + + + + + + + + +, + + + +. + + + + + +. + + + + + +, + + + + + +· + +, + + +. + + + + + +, + + + + +· + +, + + +. + + + + +, + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + +, + + +, + + + +. + + + + + + + + + + + + + + + +, + + + + +· + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +, + + + +; + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + +; + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + +· + + + + + +, + + +; + + + + + + + +· + + +. + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + + + +, + + + + + + + + + + +, + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + + + + + + + +; + + + + + + + + + +, + + + + + +. +, + +, + + + + + + + + + + +. + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + +, + + + + + +· + + + + + + +. + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + +, +, + + +, + + + + + + + + +, + + + +. + + +. + + + + + + + + +· + + + + + +, + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + +. + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + + + + + +, + + + + +. + + + + +, + + + + +, + + + + + +· + + + + +, + + + + + + + + +, + + + +. + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + +; + + + + + +· + + + + +. + + + + + + + +, + + + + + + + + +; + + +, + +. + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +; + + + + + +. + + + + + + + + + + + + +. + + + + + + +; + + + + + +. + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + + + + + + + +. + + + +, + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + +; + + + + + + + +, + + + + +; + + + + + +· + + + + + + + + +, + + + + + + +. + + + + + +. + + + + + + + +, + + +. + + + + + + + + + + +, + + + + + + +· + + + + + + + + +. + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + +. + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + +. + + + + + + + +, + + +, + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + +. + + + +, + + + + + + + + + +, + + + + +· + + + + + + +. + + + + + + + + + + +, + + + + + + + + +, + + + + +. + + +, + + +, + + + + + + + + +· + + + +· + + +, + + + + + + + + + + +. + + + + + + + +· + +. + + + +, + +, + + + + + + + +, +. + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +, + + + + +· + + + + + + + + + + + + + + +, + + + + + + +. + +. + + + + +, + +, + + +, + +. + + + + + + + + + + + + + + +, + +. + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + +· + + + +. + + + + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + +, + + + + + + +; + + + + + + + + +; + + +, + + + + + +, + + + + +, + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + +, + + + + + + +, + +. + + + + + + + + +. + + + + + + +. + + + +, + + +, + + + + + + +, + + + + + + + + + +· + + + +. + + + + + + + + +; + + + +; + + + + + + + + + + + +; + + + + +· + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + +, + +· + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + +· +, +, +, +, + + + + + + + +, + + + + + + +. + + + + + + +· +, +, +, +, +, +· + + + + + + +, + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + + +. + + + +. + + + + + + +, + +, + + + +, + +. + +, + + + + + + + +, + + + + + + +· + + + + + +, + + + + + + +. + + + + +, +; + + + + + + +, + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + +. + + + + +· + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + + + + + + +, + + + +; + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + + + +, +, +, +, + + + + + +· + + + +, + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + +. + +, + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + +. + + +, + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + +; + + + + + + + + +; + + + + + + +. + + + + +, + +, + +, + +, + + + + + + +. + + + + + + + +. + + + + + + + + + +· + + + + + + +, + + + + + +, + + + +. + + + + + +, + + + +. + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + + + +; + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + + + +, + + + +, + + + + + +. + + + + +, + + + + + + + +, + + + + +. + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + +. + + + + + +, + +. + + + + + + +· + + + + + + +, + +. + + + + + + + + +. + + + + + + + +; + + + + +, + +. + + + + + +· + + + + +. + + +, + + + + + +. + + + + + + + + +. + + + + +. + + + + + +, + + + +, + + +· + + + + + + +, + + + + + +, + + + + +. + + + + + + + +, + + +, + + +. + + + + + + +, + + + + + + +, + +· + + + + + + + +. + + + +, + + + +. + + + + + + + + + + +. + + + + + + + +, + + + + + +, + + +, + + + + + + +. + + + + + + + + + + + + +, + + + + + +· + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + + +, + + + + +. + + + + +, + +, + + + + +, + + + + + +. + + + + + +, + + +, + + +. + + + + + + + + +. + + + + + + +, + + + +, + + + + +· + + +, + + + +, + + + +, + + + + +. + + + + + + + +, + +. + + + +, + + + + + + + + + + +; + + + + + + + + + +; + + + + + + +. + + + + + + + + + + + + + + + +. + + + +, + + +. + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + +, + + + + + + +, + + + +. + + + + + + + +; + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + +; + + + + + + + + +. + + + + + +, + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + +, + + +· + + + + + + + + +. + + + + + + + + + + +, + + + +. + + + + + + + +, + + +. + + +, + + + + + +, + + + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +· + + + + + +. + + + + + + + + +· + + + + + + + + + + + + + +, + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +; + + + + + + + + +, + + + + + + + + + + + +; + + + + + + + + + + +, + + + + + +; + + + + +, + + + + +· + + + + + +. + + + + +. + + + + + + + + + + + + + +. + + + + + + + + +. + + +, + + + +, + + + +. + + + + + + +, + + + + + + + +· + + + + + + +. + + + +· + + + + + + + + +. + + + +· + + + + + +. + + + + + + + +; + + + + + +· + + +. + + + + + + + + + + + + +· + +, + + + + +. + + + + + + +. + + + + + + + +; + + + + + +, + + + + +. + + + + +. + + + + + + + + + + + + + + + +, + + + + +; + + + + + + + +· + + + + +, + +. + + + + + + + + + + + + + + + +, + + + +· + + + + + + + + +. + + + + + + + +, + + + +, + + + + + + + + + +. + + + + +, + + + + + + + + + +, + + + + + + + +· + + + + + + +; + + + + + + + + + + +· + + + + +; + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + + + +, + + + + +, + + + +, + + +, + + + + + +, + + + +, + + + + + + + + + + + + +. + + + +· + + + + + + +· + + + + + + + +, + + + + + + + + + +. + + + + +. + + + + + + + + +; + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +· + + + + +, + + +, + + + + + + + +. + + + + +, + + + + + +, + + + + + + + + + + + +· + + + + + + +· + + + +. + + + + + + +, + +. + + + + + +. + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + +; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + +· + + + +. + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + +, + + + + + +, + + + +, + + + + + + + + + + + +. + + + + +, + + + +, + + + + + + + +; + + + + + +· + + + + + + + + + +, + + + +· + + + +. + + + + + +, + +· + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + + + +· + + + +. + + + + + + + + +· + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + + + +· + + + + + + + +. + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + +, + + + + + +, + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + + + +· + + +, + + + + + + + + + +· + + +, + + + +, + + + + + + + +. + + + + + + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + +· + + + +. + + + + + + + +, + + + + + +· + + + + + + + + + + + +. + +, + + + + +. + +, + + + + + + + + +. + + + + + +, + + + + +· + + + + + + + + + + +, + +. + + + + + + +; + + + + + + + + + + + + + + + +· + + + + + + + +· + + + + + + + + + + + + + + + + + + + + + +; + + + + + +· + +. + + + + + +, + + + +. + + + + +, +, + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + +. + + + + + + + + + + +· + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +· + + + + + +. + + + + + + +, + + + + + + + +, + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +. + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + +. + + + +, + + + + + + + + +, + + + + + +. + + +, + + + + +; + + +; + + + + + + + + +. + + + + + + + + + + +· + + +, + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +. + + +, + + + + + + + + + +· + + + + + + + + + + +· + + + + + + + +. + + + + +, + + + + + + + + + + +. + + + + +, +, + + + + + + + + +. + + + + + + + + + + + + +, + + +; + + + +. + + + + + + + + +, + + +, + + + + + + + + + + +. + + + + + + + + + + + + +· + + +, + + + + + + +. + + + +, + + + +. + + + + + +. + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + +. + + + + + + + +, + + + + + + +, + + + + + + + +· + + + + + + + + +. + + + + + + + +. + + + + + +· + + + + + + + + + + + +. + + + + +, + + + + + + + + + +, + + + + +; + +, + + + + +. + + + + +, + + + + + + + + +, + + + + + +. + + + + +, + + + + + +; + + + + + + + + +, + + + +; + + + + + + + + + + + + + + + + +. + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + +· + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + +, +. + + + + + + + + + + + +. + + + + +, + +. + + + + + + + + + + + + + + + +, + + + +. + + + + +, + + + +. + + + + + + +. + + + + + + +, + + + + + + + +, + + + + + + + + + + +. + + + + +. + + + + + + + + +, + + + + + +, + + + + +; + + + + + + +. + + + +, + + + + +, + + + +, + + + + + + +, + + + + + +, + +. + + + + + +, + + +· + + +, + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + +; + + + + + + + + + +. + + + + + + + +; + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +; + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + + +· + + + + + + + + + + + + +, + + + + + + + +. + + + + + +· + + + + +. + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + +· + + + + +· + + + + + + + +· + + + +. + + + + + +, + + + + +· + + + + + + + + + + + + + + +. + + + + + +, + + + +. + + + + + + +. + + + + + + + + + + +; + + + + + +· + + + +. + + + + + + + +, + + + + +. + + + + + + +· + + + + + + + + + +, + +, + + + + + + +. + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + +, + + + +· + + + + + + + + +, + + + + + + + + + +, + + + + + +, + + + + +. + + + + + + + +, + + + + +· + + + + + + +, + + + + +; + + + + + + + + +. + + + + + + + + +, + + + + + +, + + + + + + + +. + + + + +, + +· + + + + +. + + + + + + +. + + + + +. + + + + + + + +, + +, + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + +. + + + + + + + + + + +. + + + + + + + + + + + +; + + + +. + + + + + + + + + + + +, + + + + + +; + + + +, + + + + +· + + + + +. + + +, + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + +. + + + +. + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +, + + + +. + + + +, + + + + + + + + + + + +, + +. + + + + + +, + + + + +, +ς + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + +, + + + + +, + + + + + +, + + + +. + + + + +, + + + +. + + + +, + + + + + + +, + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + + + + + + +; + + +, + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + +, + + +. + + + + + + + +· + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + + +. + + + + + + + +, + + + + + +· + + + + + + + + +. + + + + + + + + + + + + +; + + +. + + + + + + + + + + + + + + + + + + + + + + +; + + + +; + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + +. + + + + + + +, + + + + + + + + +. + + + + + +. + + + + + + + + + + + + + + + +· + + + +, + + + +· + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + +; + + + + + + + +, + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + +. + + + + + +, + + + + + + + + +; + + + + + + + +, + + + +· + + + +, + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + +, + + + + + +; + + + + + + +· + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + +. + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + +, + + + + + + +, + + + + +. + + + + + + +. + + + +, + + + + + + + +. + + + +, + + + + + + + +. + + + + + + +, + + + + + +. + +, + + +, + + +· + + + +, + + + + +, + + + + +. + + + + +, + + + + + +. + + + +, + + + +, + + + + +. + + + +, + + + + + +, + + + + + +. + + + +, + + + + + +. + + + +, + + + + +, + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + +, + + + +. + + + + + + + + + + + + + + + + + +, + + + +. + + + + + + + +, + + + +· + + + + + +, + + + + + + + + +. + + + +· + + + + + + + + +, + +. + + + + + + + + + + + + + + + + + + + + + + + +; + + + + +, + + + + + + + +. + + + +; + + + +; + + + +. + + + +; + + +. + + + + +; + + + + + +· + + + +; + + + + + + + + + + +, + + + + +. + + + + + +. + + + + + + + + + + + + + + + + + + + +; + + + + + + + + +· + + + + + + +, + + + +, + + + + + + + + + + + +. + + + + + + +, + + +. + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + +. + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + +, + + + +. + + + +, + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + +; + + + + +, + + + +, + +; + + + + +. + + + + + +, + + + + + + +· + + + +. + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + +. + + + + + + + + + + +, + + + + + +. + + + + + + +. + + +. + + + + + + +. + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +; + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + +. + + + + + +; + + + + + + + + + + + + + + +. + + + + +, + + + + + +, + + + +. + + + + + + + + + + + + + + +, +; + + +. + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + +, +; + + + + +. + + + + + + + + + + +, +. + + +, + + + + + + + + + + + + + + +. + + + + + + + +. + + + + +. + + + + + + + + +. + + +. + + + + + + + + +, + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +, + + + + +· + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + +, + + +; + + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + + +; + + + + + + + + +. + + + + +, + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + +. + + + + + +, + + +· + + +, + + + + + + + + +, + + + + + +· + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + +; + + + + + + + + + + + +; + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + +. + + + + +, + + + + +, + + + + + + + +· + + + + + + + +. + + + + + + + + +; + + + + + + + + + + + + + + +; + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + +; + + + + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + +· + + + + +, + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + +, + + + + + +· + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + +, + + + + +, + + + +· + + + + + + + +. + + + + + + + + + + +. + + + + + + + + +, + + + + + + +, + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + +. + + + + + +· + + + + + + + + + +, + + + + + + +. + + + + + + +. + + +, + + +. + + + + + +· + + + + + + + + + + + + + +. + + + + + + + +· + + + +, + +, + + + + + +. + + + + + + + + + + +. + + + + + + + + + +· + + + + + + +. + + + + +, + + + + + + +. + + + + + + + +· + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + +, +ε + + + + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + +, + + + + + + + + + +· + + + + + +. + + + + + + + + + + + +· + + + +. + + + + + + +. + + + + + + +. + + + + + + + +, + + +. + + + + + + + + + + + + + + + +; + + + + + + +. + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + +, + + + + + + + +· + + + + + + +; + + + + + + + +, + + + + +, + + + + + + + + + + + + +; + + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + +. + + + + + + + +. + + + + + + + + + +· + + + +, + + + + + + + +· + + +. + + + + +, + + + + +. + + + + + + + +· + + + + + + + + + + + +. + + + + + +, +, + + + + + + + + + + + + + + +. + + + + +, + + + +, + + + + + + +· + + + + + +, + + + + + + + + + + +· + + + + + + + + +· + + +, + + + + + + + +. + + + + + + + + + + +· +, + + +, + + +. + + + + + + + +. +, + + + + + + +, + + + + + +· + + + + + + + + + +; + + + + + + + + + + + +, + + + + + + + + + + + + +· + + + + +; + + + + + + + +. + + + + + + + + +, +. + + + + + + + + + + + +. + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +; + + +, + + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + +· + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + +· + + + + +. + + + + + + + +, + + + + + + + + + + +· + + +, + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + +, + + + +, + + + + + + + + +· + + + + + + +. + + + + + + + +, + + + + +. + + + + + + + + + +· + + + + + + + + + + +, + + + + + + + + + + + +· + + +. + + + + + + + + + + + +, + + +. + + + + + +, + + + + + +. + + + + +· + + + +. + + + + + + + + + +, + +. + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + +, + + + + +. + + + + + + + + +, + + + +, + + +. + + + + + +, +, +, +, + + + + +. + + + + + + + + + + + +· + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + +· + + + +, + + + + + + + +, + + + + +; + + + + +, + + +, + + + + + + + + + +· + + + + +, + + + +. + + + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +; + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + +· + +, + + + + + +. + + + + + + + + + + + + + +. + + + + + + + +, + + + + +. + + + + + + + + + +, + +· + + + + + + +, + + + + + + + +, + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + +, + + + + + + +· + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + +. + + + + + + + + +, + + + + + + +. + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + +, + + + +. + + +, + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +· + + +, + + + + + + +, + + + + + + + + + + + + +. + + + + +, + + + + + +· + + + + + +, + + + + + + + + + + +. + + + +, + + + +· + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + +. + + + + + + + +· + + + + + + + + + + +, + + + + +, + + + + + + + +. + + + + +, + + + +. + + + + + + + + +, + + + + + + + + +, + + + +, + + + +. + + +, + + + + + + + +· + + + + + + +· + + + + + + + + +. + + + + +, + + + + + + + + + + + +. + + + + + + + +, + + + +· + + + + + + + +, + +. + + + +, + + + +, + + + + + + + + + +; + + + + + + + + +· + + + + +, + + + +. + + + +, + + +· + + + + +. + + + + + + +, + + + + +; + + + + + + + + + + + +. + + + + +, + + + + + + + + +. + + + + + +, + + + + + + +. + + + + +, + + + +. + + + + + + + + + + + + + +, + + + + + + + + +; + + + + +· + + + + +. + + + + + + + + + + +, + + + + +. + + + + + + +, + + + + + + + + + + + + + + + +· + + + + + +; + + + + + + +. + + + + + + +. + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + +, + + + +. +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + +. + + + + + +, + +. + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + +; + + + + + + + + + +, + + + + + +, + + + + + + + +. + + + + + +, + + + + + + + +, + + + + + + +· + + + + + +. + + + + + + + + + + + + +; + + + + + + + + + + +, + + + + + +. + + + + + +, + + + + + + +; + +; + + + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + + + + + + + + +. + + + + +, + + + + + +. + + + + + + + + + +· + + + + + + +, + + + + + + + + +. + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +; + + + + + + + +; + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + +· + + + + + + + + + + +. + + + + + +, + + + + + + +, + + + +. + + + +, + + + + +. + + + + + +. + + + + + + + + + + +· + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +· + + + + + + +, + + + +· + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +; + + + + + + + + +, + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + +, + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + +· + + + + + + + + +. + + + + + + +. + + + + + + + + + + + + +· + + + +; + + + + + + + + + + + + +, + + + + +; + + + + + + + + + + + +; + + + + +, + + + + +· + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + +; + + + + +, + + +; + + + +· + + + + + + + + + + + +. + + + + + + + + + +; + + + + + +. + + + + + +· + + + + +, + + + +. + + + + + + + + +· + + + + + + +, + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + + + +. + + +, + + + +. + + + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + +, + + +, + + + + + + + + + + +. + + + + +· + + + + + + +, + + + + + +. + + + + + + + +. + + + + + + + + +, + + + +, + + + + + +. + + + + + + + + + + + + +; + + + + + + + + +· + + + + + +, + + + +, + + + +. + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + +; + + + + + + + + + + + + + + + +· + + + + + + +, + + + +, + + + + + + + + + +. + + + + + + + + +· + + + + + + + +, + + + + + + + + +. + + + + + +; + + + + + + +. + + +; + + + + + +· + + +; + + + + + + + + + + + +. + + + + + + +, + +χ + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +; + + + +, + + + + +. + + + + + + + + + + +; + + + + + + + + +. + + + + + + + + + + +; + + + + +· + + + + +, + + + +. + + + + + + + + + + + + + + + +· + + + + +, + + + + + +, + + + +· + + +, + + + + + + +. + + + +, + + + + + + +, + + + + + +. + + + + + + + +, + + + + + +, + + + + + + +; + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + +; + + + + + + + + + + + +; + + + + + + + + + + + +, + + + + +; + + + + + + + + + + + + + + +, + + + + + +, + + + + +. + + + +, + + + +, + + +. + + + + + + + + + + + + + + + + + +· + + + +, + + + +. + + + + + + + + + + + + + +· + + + + + +· + + + + + + + + + + +; + + + + + + + + +, + + + + + + + +, + + +; + + + + + + + +· + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + + +; + + + + + + +, + + + +. + + + + + + + + + +; + + + + + + + + + + + +; + + + + + + + + + + +. + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + +; + + + + + + + + + +. + + + + + + +. + + + + + + + +. + + + + + + +, + + + + + + +. + + + +. + + + + + + + + + + + + +, + + + + +, + +, +, + + + + + +. + + + + + + + + + +· + + + +; + + + + +, + + + +. + + + + +, + + + + + +· + + + + +, + + + +, + + + + + + + + +. + + + + + + + +. +, + + + + + + +, + + +, + + + + + + +· + + + + +, + + + + + +. + + +, + + + + + + +, + +, + +, + + + + + +; + + +; + + +, +, +. + + + + +, + + + +· + + + +. + + + + + + + + + + + + +· + + + + + + + + +, + + + + + +. + + + + + + + + +· + + + + + +. + + + + + + + + + +, + + + + +, + + + + + + +· + + + + + + + + +. + + + + +, + + + +. + + + + +, + + + + + +, + + + +, + + + + + +. + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + +; + + + + + + + + +· + + +, + + + + + +. + + + + + + + + + + +· + + + +, + + + + + +. + + + + + + + + +, + + + + + +· + + + +. + + + + + + + + + +, + + + + + +; + + + + + + + + + + +, + + + + +· + + + + + +, + + + + + + +. + + + + + + + + +· + + + + + + +, + + + + +. + + + + + +; + + + + + + + + + + +; + + + + + + +· + + + + + +, + + + + +, + + + + +. + + + + + + +. + + + + + + + + + +, + + + + +, + + + + +, + + + + + +, + +. + + + + + + +· + + + +, + + + + + + +. + + + + + + +. + + + + + + + + + + + + + + + + +, + + + +, + + + +, + + + + +. + + + + + +, + + + +· + + + + + +; + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + +. + + + + + +, + + +. + + + + +· + + + +, + + + + + + + + +. + + + + + + +· + + + + + + + + +. + + + + + + + + +. + + + + + + + + +, + + + + +· + + + +, + + + + + + +, + + + + +· + + + +. + + + + + + +. + + + + + + +, + + + +. + + + + + + + + + + +, + + +· + + + + + + + +· + + + + +, + + + +. + + + + + + + +; + + + + + + + +. + + + + + + + + + + + + + +. + + + + + +, + + + + + +, + + + + + +. + + + +, + + + +, + + + + + + +. + + + + + +, + + +. + + + + + + +; + + +, + + + + + +; + + + + + + + + + +· + + + + +, + + + + + +. + + + + + + + + + + + + + + + + +; + + + + + +, + + + + +, + + + +. + + + + + + +· + + + + +. + + + +, + + + + + +, + + + + + + +. + + + + + + + + +. + + + + +, + + + + + + + + +, + + + + + + +. + + + + + + + +, + +; + + + +· + + +; + + + + + +, + + + + +· + + + + + + +, + + + + + + +, + + + +, + + + +. + + + + + +, + + + +· + + + + + + + +. + + + + + + + + + + +, + + + +. + + + + + + + + + + + + +; + + + + + + +, + + + + +. + + + + + + +· + + + + + + + +. + + + + + + +. + + + + + + + +, + +, + + + + +, + + +; + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +· + + + + + +. + + + + +, + + + +. + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + +. + + + +, + + +. + + + + + + + + +, + + +, + + + + + + + +; + + + + +· + + +, + + + +. + + + + +. + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + + + +· + + + + +. + + + + + +; + + +. + + + + +. + + +, + + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + +, + +, + +. + + + + + + + + + + + + +, + + + + +. + + + + + + + + +; + + + + +. + + + + + + + + + +, + + + + +; + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + +; + + + +; + + + + + + + + + + + + + + + + + +· + + + + + +, + + + + + + + + +· + +, + +, + + + +. + + + + + + + + +· + + + + + + + + + + +, + +. + + + + + + + + +, + +. + + + + + + + + +, + + + + + + +· + + + + + + + +. + + + + + + + +· + +, + + + + +. + + + + + +; + + + + +; + + + + + + + +· + + + +; + + + + + + +; + + + + + + + +, + + + + + +· + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + +. + + + + + + +, + + + + + + + + + +, + +. + + + + + + + + + + +· + + + + + +, + + + +. + + + + + + + + +, + + + +; + + + +. + + + + + +, + + + + + + + + + + +; + + + + + + +, +, + + + +; + + + + + + + + + + + + + +. + + + +, +· + + +. + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + +; + + + + + + +, + + + +· + + + + +· + + + +. + + + +, + + + + + + + + + + + + + +, + + + + +· + + + + + + + + + +. + + + +, + + + + + + +, + + + + + + + + + +. + + + + +, + + +, + + + + +, + + + + +· + + + + +, + + + +, + + + + + + +. + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + +. + + + +· + + + + +, +, + + + + + + +. + + + + + + + + + + + +· + + + + + + + +. + + + + + +. + + + + + + + + + + +· + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +· + + +, + + + + + +, + + + +, + +. + + + + + + + + + + + +, + + + +. + + + + +, + + + + + +. + + + +, + + + + + +· + + + + + + + +. + + + + + + + + + +. + + + + + + + + +· + + +; + + + + + + + +· + + + + + +; + + + + + + +· + +· + + + + + + + + + + + +. + + + + + + + + + + + + + +; + + + + +, + + +. + + + + + +, + + +· + + + + + + + + + + +, + + + +· + + + +, + + + + + + + +. + + + + + + + +, + + +, + + +, + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + +. + + + + + + + +. + + + + + + + + + + + +· + + + + + +; + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +; + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + +, + + + + + +; + + + + + + + +, + + +· + + +, + + + +, + + +, + + + + + + + + + + + + +. + + + +· + + + + + + +. + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + + + + + +. + + + + + +. + + + +, + + +, + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + +. + + + + +, + + + + + + + + +· + + + + + + + + + + +. + + + + +, + + + + + +, + + + +; + + + + + + + +; + + + + + +, + +, + + + + + + +· + + + + + + +, +, + + + + + + +. + +, + + + + + + + + + +· + + + + +. + + + + + +, + +, +. + + + + + + + +· + + + + + + + + + +. + + + + + + + + +, + + + +, + +, + + + +· + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + +, + + + + + +. + + + + + +, + + + +· + + + + + +. + + + + + + +, + + +, + + + + + +. + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + +, + + + + + + + + + + + + + +· + +; + + +, +· + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + +, + + + + + +· + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + +, + + + + + + + + +. + + + + + + + +, + + + + + + +, + + +, + + +, + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + +; + + +, + + +. + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + +· + + +, + + + + +. + + + + + +. + + + + + + + +, + +· + + +. + + + + + + + + + + + + + + +; + + + +. + + + + + + + + + +, + + + + +. + + + + + + +· + + + + + + +, + + + + + +. + + + + + + +, + +. + + + + + + + + + +, + + + + + +. + + + + + + + + + +. + + + + +, + + + + + + + + +, + + +· + + + + + + + + + + + + + +. + + + + + + + +, + + + +, + + + + + +; + + + + +, + + + +, + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + +, + + + + +. + + + + + + +, + + + + + + + + + + +, + + +. + + + + + + + + + + + + + + +; + + + + + + +; + + + + + + + + + + + + + + +, + + +. + + + + + + + + + + +, + + +, + + + + +. + + + + +, + + + +, + + + + + + + + + +· + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + +; + + + + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + + + +· + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + +, + + + + + +, + + + + + + + + + +, + + +, + + + + + +, + + + + +. + + + + + + + +, + + + + +, + +· + + + + +, + + + +. + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + +. + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + +· + + + + + + + + +, + + + + +, + + + +. + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + +. + + + +, + + + + + + + + + + +, + + +· + + +, + + +. + + + + + + +, + + + + + + + + + + + + + + +. + + + +, + +, + + + +, + + + + + + +· + + + +, + + + +. + + + + +, + + +; +, + + + + + +. + + + + + + + +. +, + + + +. + + + + + + + + + + +. + + + + + + + + + +· + + + + +. + + + + + + + + + + + + + +. + + + + + +· + + + + + + + +· + + + + + +, + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + +; + + + + + + +; + + + + + + + + + + + + +. + + + + +, + + + + +· + + + + + + + + + +. + + + +, + + + +, + + + +. + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + +, + + + + +; + + + + + +; + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + +, + + +. + + + + + + + +, + + + +. + + + + + + + + + +, + + + + + +, + + + +· + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + +. + + + + + + + + + +, + + + +· + + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + +, + + + + + + +· + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + +. + + + +, + + + + +, + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + +. + + +, + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +, + + + + +· + + + + + +, + + + + + + + + + + + + + +. + + + + +· + + +, + + + + +; + + + + + + + + + + + +, + + + +. + + + + + + + + + + + +. + + + + + + +, + + + + +. + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + +· + + + +, + + +. + + + + +· + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +; + + + + + + + +, + + +· +. + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + + + +. + + + +, + + + + + + +, + + + + + +. + + +, + + + + +. + + + + +· + + + +· + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + +. + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + +, + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + +, + +; + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +. + + + + + + + + + +· + + +, + + + + +, + + + + + + + + + + +, + + + + + +. + + + + + + +· + + +. + + +, + + + + + + + +, + + + + + +· + + + + + +, + + + + + + +, + + + +. +, + + + + +· + +, + + + + + + + + + +, + + + + + + +. + + + +, + + +, + + + + + + + +. + + + + + + + +, + + + + +. + + + + +, + +; + + + + + + +, + + + + +. + + + +, + + + + + + +; + + + + + +. + + + + + + + +; + + + +, + + + + + + + + +. + + + + +· + + + +, + + + +. + + + + + + + + +· + + +, + + +· + + + + +· + + + + + + +, + + + + + + +, + + + + + + +. + + + + + + +. + + + +, + + + +· + + + +; + + + + + + + + + + + + +· + + + + + + + + +. + + +, + + + + + +· + + + + + +. + + + +, + + + +, + + +. + + + + + + + + + + + + +, +; + + + + + +· + + + + + + +; + + + + + + + + + + + + +; + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + +· + + +, + + + + +. + + + +, + + + + + + + + + + +, + + + +, + + + + + +· + + + + + + + + +, + +, + + + + + + +. + + + + + + + +, + +. + + +, + + + + +. + + + + + + + + + + + + + + + +, + + + +, + +, + + + + + + + + + +· + + +, + + + + + + + +. + + + +, + + +. + + + + + + + +, + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + +· + + + + + + + + +, + + + + + + +. + + +, + + + +, + + + + + + + + + + + +; + + + + + + + +, + + + + +, + + + + + +, + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + +. + + + + + +· + + +, + + + + + + + + + + + +, + + + + + + + + + + + +. + + +, + + + + +· + + + + + + + +. + + + + + + +. + + + + + + + + + +. + + +, + + + + + + +, + + + + + +. + + + + + +, + + + +. + + + + +, + + + + + +· + + + + + +, + + + + + + + + +, + + + + + +, + +. +, + +. + + + + + +, + + + + + + +. + + + + + + +, + +, + + + + +, + + + + + +. + + + + + + + + + +· + + +, + + +. + + + + + + + + + + + + + + +, + + + + + + + +. + + + +, + + +. + + + + + + +, + + + +, + + + + + + +. + + + + + +, + + + + + + +, + + + + + + + +, + +. + + + + + + + + + + +, + + + + + + +. + + + + + +, + + + + + + + +. + + + + +, + + +· + + + + + +. + + + + +, + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + +, + + + + + +. + + + + +, + + + + + + + + + +. + + + +, + + + + + +. + + + +, + + + + + + + + + +· + + + +, + + + + + + + + + +. + + + +, + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + +, + + +. + + + + +, + + + + + +. + + + + +, + + + + + +· + + + + + + +, + + + + + + +, + + + + + +. + + + + + + + + + + + + + +· + + +, + + +· + + + + +, + + + +. + + + + + + + + + +, + + + + + +. + + + + + +, + + +· + + + + + + + + +. + + + + + + + +. + + + + + + + + + + +, + + +· + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + +, + + + +· + + + +, + + + + + +. + + + + + +. + + +· + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + +, + + + +. + + + + + + +, + + + +. + + + + + + +, + + + + + + + +; + + + + +, + + + + + +. + + + + + +, + + + + +. + + + +, + + + + + + +· + + +, + + + +. + + + + + + + + + + + + + +· +, + + + + + + +· +, + + + + + + + + + + +· + + +, + + + + + + +. + + + + +, + + + + +· + + + +, + + + +, + + + + + +· + + + + +, + + + +, + + + + +. + + +, + + + + + + + +. + + + + + + +· + + + + + + + + + + +. + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + +; + + + + + +; + + + + + + + + +; + + + +. + + + + + +, + + + + + + + + + + + + + + +, + + + + + +; + + + + + + + + +, + + + +· + +, + + + + + + +. + + + + + +, + + + + +· + + + + +, + + + + + + + + + + + + +. + + + + + + +· + + + +, + + + + +, + + + + + + + +. + + + + + + + + +. + + + +, + + + + + + + + + + +. + + + + + + + + +· +, + +, + + + + + +. + + + + +· + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + + + + +· + + + + + +, + + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + +. + + + + + + + + +, + + + +. + + + + + + + + + + + + +· + + + + + + +. + + + + +; + + + + + + + + + + + + + +· + + + +, + + + + + +. + + + + + + + +. + + + + +· + +, + + + +. + + +, + + + + + + + + + +, + + +· + + + +, + + + + +, + + + + + +, + + + + + + + + +. + + + + + +, + + + + + + + + + + + +. + + + + + +, + + + + + + + +· + +, + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + +, + + + + +. + + + + + + + + + +· + + + + + + + +, + + +, + + + + + + +, + + + + + +. + + + +· + + + + +, + + + + +, + + +, + + + + + + + + + +, + + + +. + + + + + +, + + + + + +, + + + +. + +, + + + + + + + + +, + + + + +. + + + +, + + + + + + + + + +, + +, + + + + + + + + + + +, + + + +. + + + + +, + + + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + +. + + + + +· + + + + + +. + + + + + +, + + + + + +· + + + + + +, + + + + + + +. + + + + + +, + + + + + + + + + + +, + + + +, + +, +, + + + + +, + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + +· + + + + + + +, + + + + +, + + + + + + + + + + + + + +. +, + + +, + + + + + + + + +, + + + + + +, + + + + + + + + +. + +, + + + + + +, + + + +, + + + + + + +· + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +; + + + + +. + + + +. + + + + + + + + +. + + + + + +, + + + + + + +. + + + + + +; + + + + + +. + + + + + + +· + + + +, + + +· + + + + + +, + + + +, + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + +. + + + + + + + + + + + +· + + + + + + +, + + + +; + + + + + + + + + + + + + + + + +, + + + + +· + + + + +, + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + +; + + + + +. + + + + + + + + +, + + +, + +· + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + +· + + + + + + + + +, + + + + +, + + + + +. + + +; + + + + + +· + + + + + +. + + + + + + + + + + + + + + + + +; + + + + + +, + + + +· + + +, + + +; + + + + + + + + + +. + + + + + + +. + + + + + + + + + + +; + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + +; + + + +, + + + +. + + + + + + + + + +· + + +· + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +; + + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +; + + + + + + +, + + + + + +; + + + + + + +; + + + + + + + + + +· + +; + +· + + + + + + + + + +· + + + + + + + + + +, + + + + + +, + + + + +· + + + + + + + + +. + + + + + + + + +; + + + + + + + +. + + + + + + + + + + +, + + + +· + + + + + + + + + +. + + + + + + +; + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +· + + + + + + + +; + + + + + +, + + +. + + + + +. + + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + + + + + + + +· + + + +. + + + + + + + + + + + + + +, + + + + + + + +. + + + + +, + + + + + + + +. + + + + + +. + + + + + + + + +, + + + +. + + + + + + + + +· + + + + + + +. + + + + + + +, + + + + + +, + + + + +. + + + + + + + +, + +, + + + + + + + + + + + + +; + + + + + + +. + + + + + + + +; + + + + + + + + + + + +; + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + +· + + + + + + + +, + + + + +· + + + + + + + +. + + + + + + + + + + +, + + + + + + + +, + + +. + + + + +, + + + +· + + + + + + + +. + + + + +, + +. + + + + + + + +; + + + + + + + + +. + + + + + + +. + + + +· + + + + + + + + + + +, + + + +, + + +, + + + + + + + +, + + + +. + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + +· + + + +, +, +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + +, +. + + + +, + + +, + + + + + + + +, + + +, + + +. + + + + +, + + + + + +. + + + + + + +, + + + + + +· + + + + + + + + + + + + + + + +. + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +, + + + +, + + + +. + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +, + + + +, + +. + + +· + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + +, + + +, + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + +. + + + +, + + + + + + + + + + + + +· + + + + +, + + + + +, + + + + +, + + + + + + + + +, + + + + + +. + + + +, + + + + + +, + + + + + +, + + + +. + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + +, + + + + + +· + + + +. + + + + + + +. + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + +, + + + + + +· + + + + + + +, + + + + +, + + +. + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + +. + + + + +· + + + + + + + + + + + + + +, + + + + + +, + + +. + + + + + + +, + + + + +· + + + + +, + + +, + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + +· + + + + +, + + + + + +. + + + + + + +. + + + + + + + +. + + +, + + + +, + + + + + + +, + + + + + +. + + + + + + + + +, + + + + +, + +; + + + + + + +, + + + + + +. + + + + + +, + + + + +, + + + + + +. + + + +, + +; + +; + + + + + +, + + +, + + + +, + + + + +, + + +. + + + +. + + + + +· + + + +. + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + + + + + + +. + + + + + + +. + + + + + + + +· + + + + +, + + +. + + + + + + + + + +. + + + + +, + +· + + +, +. + + + + + +, + + +, + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + +. + + + + + + + + + +, + + + +. + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +. + + + + + + +, +; + + + + + +. + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +· + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + +. + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + +· + + + + + + + +. + + + + +, + + + +; + + +. + + + + + + + + + + + + +, + +. +, + + + + + + + + + + +. + + + + + + + + + + + + + +. + + +, + + + + +, + + +, + + +, + + + + + +· + + + + + + +, + + + + + + + + + + + +, + + + + +. + + + + + +, + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + +. + + + + + +. + + + + + + + + +; + + + + +. + + + + + + + + +, + + + +. + + + + + + + + + +. + + +, + + + + + + + +, + + + +; + + +, +, + + + + +. + + + + + +. + + + + + +, + +; + + +, +, + + + + +. + + + + + +. + + + + + +, + +; + + + + + + + + + +; + + + +, + + +, + + + + +. + + + + + + +. + + + +, + + +, + + + + + +· + + +, + + + +, + + + + + + + + +. + + + + + + + + +. + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + +; + + + + + + + + +, + + +; + + + + + + + + + +, + + +; + + +. + + + + + + + + + + + + + +· + + + + + + + + +, + + + + + + +, + + +; + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + + + +. + +, + + + + + + +, + + + + +, + + + + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + + +, + + + + + + + + +· + + + + +, + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + +; + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + + +, + + + + + +; + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + +. + + + +, + + + + + + +, + + + + + + + + +, + + +, + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + +· + + + + + + +, + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +. + + +, + + + +, + + +, + +. + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + +, + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + + + +· + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +; + + + + + + + + + + + +, + + + + +, + + + + +, + + + +, + + + +, + + + +, + + + + + + + + +, + + + +, + + + +, + + +, + + + + + + + + + +; + + + + +, + + + + + + + +; + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + +, + + + + +. + + + + + + +, + + + + + +, + + + + + + + + + + + + + + +, + + +, + + + + + + + +, + + + + + + + + +, + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + + +, + +. + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + + + +. + +, + + + +· + + +, + + + + + + + + + + + +, + + + + + + + + +, + + +, + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + +. + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + +. + + + +, + + + + + + +. + +, + + + + + + + + + +, + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + +· + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + +, + + + + + + + + + + +, + +; + + + + +, + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + +, + + + + + + + + + + +. + + + + + + + +, + + + + + + + + +· + + + + + + + + + +, + + + + + + +. + + + + +· + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + +· + + +, + + +· + + + + + + + +. + + + + + + + +· + + + + + + + + +, + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +· + + +, + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + +, + + + + + + + + + + + + +; + + + + + + +, + + + + +, + + + + +, + + + + + + + + +, + + +· + + + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + +. + + + + + + + +, + + + +, + + + +, + + + + + + + + + + + + + +. + +, +, + + + + +, + + + + +· + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +· + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + + +, + + + +, + + + + + + + + +, + + + + + + + +, + + +, + + + + + +, + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + +· + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + +, +, + + + + + + + +, + + + + + +, + + + + +. + + + + + + + +, + + + + + + + + +; + + + + + + + +, + + + + +, + + + +· + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + +, +· + + + + + + + + + +. + + + + +, + + + + + +, + + +, + + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + +, + + + + + + + + + +, + + +. + + + + + + + + +, + +, + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + + + + + +· + + + + + + +, + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + +, + + + + +, +, + + +, + + +, + + + + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + +, + + + + + + + + + +. + + + + +, + + + + + + + +, + + + + + + + + + + + + +; + + + + + + + + + + +; + + + + + + + + + +; + + + + + +. + + + + + + + + +· + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + +, + + + + +; + + + +, +. + + + + + + + + + + + + +; + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + +· + + + + + + +, + + + + +· + + + + + +, + + + + +· + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + +, + + + + + + + +, + +. + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + +· + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + +, + + +, + + + +, + +· + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + +, + + + +, + + + + + +· + +, + + + + + + + + + +. + + + + + + + + + + + + + + + +· + +, + + + + + +. + + + + +, + + + + + + + +· + + + + + + + + + + + +, +· + + + + +, + + + +, + + + + +. + + +, + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. +, +, + + + + + + + + + +, + + + + + +· + + + + + + + + + +. + + + + + + + +, + + +, + + + + + +, + + + + + + + + + + + + + +, + + + + +, + + + + + +. + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + +; + + + + + + +, +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + +, + + + +. + + + + +, + + + + + + + + +, + + + + + + +· + + + + + + + +, + + +, + + + + + + + + + + +. + + + + +· + + + + + + + + + + + +, + + + +, + + + + +. + + + + + + + + +· + + + + + +, + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + +, + + + + +· + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + + +. + + + + +, + + + + + + + +. + + + + + + + + + + + + + +· + + + +. + + + + + + +, + + + + + + +, + +· + + + +; + + + + + + + + + + + + + + + +; + + + + + + + + + + +; + + + + + + +, + + + + + +, + + + +. + + + + + + + + + + + + + + + + +. + + + + + + +· + + + + + + + + + + + + +, + + + + + + +. + + + + + + +. + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + +, + + + + +, + + + +· + + + + + + +. + + +, + + + + + + + + +; + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + +, + + + + + + + + + +, + + + + + + + + +· + + + +, + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + +, + + + + + + + + + + + +, + + + + + +; + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + +. + + + + + + +· + + + + + + + +, + + + + + + +· + + + +, + +, + + + + + +; + + + + + + +; + + + + + + +, + + + + + + +, + + + + + +. + + + + + + + +; + + + + + + + + + + + + + + + +, + + + + + + +, + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + + +. + + + +, + + + + +, + + + +. + + + + + + + +, + + + + + +. + + + +. + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +. + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + +. + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + +· + + + +, + + + + + + + + + + + + +. + + + + + +, + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + +· + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + +. + + +. + + + + + + + + +, + + + + + + +, + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + +; + + + + + + + + + + + +; + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + + + +. + + + + + + +· + + + + +; + + + + + + + +. + + + + + + + + +, + + + + + +; + + + + + +; + + + + + + + + + + + + + + + + +. + + + + + +, + + + +, + + + + + +· + + + +; + + + + +, + + + + + +, + + + + + +, + + +. + + + + + +, + + + + +, + + + + + + +, + + + + + +. + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +, + + + +, + + + +. + + + + + + + + +, + + + + + + + +, + + + + + + + + + + +, + + +; + + + +, +; + + + + + + + +· + + + + + + +, + + + + + + +. + + + + + + + + +, + + + +, + + +. + + + + + +, + + + + + + +· + + + + + +. + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + +. + + + + +, +. + + + + + + + + + + + + + + + + + + + + +· + + +, + + + + + + + + + +, + +. + + + +, + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +, + +, + + + + + +. + + + + + + + + +, +, + + + +, + + + +. + + + + + + + + +, + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + +; + + + + + + + + + + +, + + + + + +. + + + + +, + + + + +· + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + +· + + + +, + + + + +. + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + +, + + + + + + +· + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + +. + + + + + +, + + + +· + + + +. + + +. + + + + + + + + + +, + + + + +. + + + + + + + +, + + + +· + + + + + + + + +. + + + + + + + + +· + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +· + + + + + +, + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + +, +. + + + + + +, + + + + +. + + + + + +· + + + + + + + + + +. + + + + + + +, + + + + + +. + + + + + + + + + + +. + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + + + + + + + +, + + + +, + + + + + +, + + + + + + + + + +. + + + + + + + + + +, +; + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + +· + + + + + + +, + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + +. + + + + + +, +, + + +. + + + + +, +, + + + + + + +. + + + + + + + + + + + + + +. + + + + +, + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + +· + + +, + + + + + +, + + + +. + + + + + + + + + + + +· + + + + + +; + + + + +, + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +. + + + +. + + + + + + +, + + + + + + + + +. + + + + + + +· + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + +. + + + + + + +· + + + + +. + + + +, + + + +, + + + + + + + + + + + + + + +· + + + + + +· + + + + + + + + +. + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + +, + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + +. + + + + +, + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + + + + +· + + + +. + + + + + + + + +, + + + + + + + + + +, + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + + +· + + + + + + + + + + + + + +· + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + + + +, +, + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +; + + + + + + + + +. + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + +, + + + +· + + + +, + + + + + + + + + + + + + + + + +. + + + + + + +, +, + + +. + + +, +, + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + +. + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + +; + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + +. + + + + + +, + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + +· + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +. + + + + + +. + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + +· + + + +. + + + + + +, + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + +· + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + +, + + + + + + + +. + + + + +, + + + + + +· + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + +. + + +. + + + + + + + + + +. + + +, + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + +, + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + +. + + + + + +. + + + + +. + + + + + + +. + + + + +· + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + +, + + + + +, + + + + + + + +. + + + + + +· + + + + +, + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + +, + + + +. + + + + + + + +. + + + + +, + +, + + +, + + + + +. + + + + + + + + + + + + + + + + + + +, + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +, + +. + + + + + + + + + + +· + + + + + +, + + + + + +, + + + + + + +. +, + + + +, + + + + + + + + + + + + + +, + +, + + +, + + + + + + + + +; + + + + + + +, + + + + + + + + +. + + + + + + + +, + + + +. + + + + + + +, + + + + + +. + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + +, +. + + + + + + + + + + + + + + +, +. + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + +. + + +, + + + + + + + + +, + + + +, + +· + + + + + + + + +, + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + +, + + + +, + + + +· + + + + + + + + + + + + + +. + +, + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +· + + + + + + + +, + + + + + + +. + + + + + + +· + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + +, + + + +. + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +· + + + + +, + + +. + + + +, + +, + + + + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + +, + + + +, + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + +, + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +· + + +. + + + + + + + + +, + + + + + + + +. + + + + +· + + + + + + + + + +, + + + + + + + + +. + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + +, + + + +, + + + + + + +. + + + + + + + + + +, + + + + + + +, + + + + +. + + + + + + +, + + + + + + + +, + + + +, + + +; + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + + + +· + + + + + + + + + + + + +· + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + +. + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + +, + + + +, + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + +. + + + + + + + +, + + + + + + + + +, + + + +, + + + + + + + + + + + +. + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + + + +. + + + + + +, + + + + + + +, + +; + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + +. + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + +, + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + +. +. + + + + + + +, + + + + + + +. + + + + + +. + + + +, + + + +, + + + + + + + +· + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + +. + + + + + + + + + +· + + +, + + + + + + + + + + + + +, + + +. + + +, + + + + +, + + + + + + + + +. + + + + +, + + + + + + + +· + + + + + + + + +. + + + + + + + +. + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + +· + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + +· + + + + + + + + + +, + + + + + + +· + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + +. + + + + +, + + + + +, + + + + + + + +. + + + + + + +, + + + + + +, + + +, + + + + + + +, +. + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + + + +, + + +, + + +, +, + + + + + + + + + + +. + + + + + + +, + + + + + + + + +, + + + + + +· + + +. + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + +. + + + + + +. + + + + + + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + +, + +, + + + + + + + + + + + +. + + + + + +, + + + + + + + + +, + + + + + + + +, + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + +· + + + +, + + + + + + +· + + + + + +, + + + + +. + + + + + + + + + + + +, + + + + + +, + + + +. + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + +; + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + +, + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + +. + + + + + +. + + + + + + + + + +, + + +, + + +· + + + + +; +, + + + + + +. + + + + + + + + +. + + + + + +, + + + +, + + + + + + +. + + + + + + + + +, + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +, + + + + + +, + +, + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + +, + + +· + + + + + + + +, + + + +. + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +; +· + + + + + +· + + + + + + +. + + + + + + + +, + + + + + + + + + + + +; + + + + + + + +· + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + +. + + + +, + + + +. + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + + + +, + + +, + + + + + + +, + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + +, + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + +, + + + + + + +. + + + +, + + +, + + + + + + + + +. + + + + + + +. + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + +, + + +, + + + + + + + + +, + + + + + + + + + + +, + +, + + + + + + + +, + +· + + + + +. + + + + + + + +, + + + + +. + + + + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + +· + +· + + + + + + +. + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + +, + + + + +· + + + + + + + + + + + + +, + +· + + + + + +. + + + + + +. + + + + + + + + + +· + + + + + +. + + + + + + +, + + + + + + +, + + + + + +, + + + + +· + + +. + + + +, + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + +, + + + +, + + + +, + + + + +, + + +, + + + + +, + + + + + + +, + + + +. + + + + +, + + +, + +, + + + + +. + + +, + + + + + + +, + + + + + + + + + + + +, + + + + +· + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +; + + + + + + +. + + + + + + + + + +; + + + + + + +. + + + + + + +, + + + + +, + + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + +, + + + + +. + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + +. + + + + + +, + + + + + + + + + + +, + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + +; + + + +, + + + + + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + + + + + +, + + + + + +, + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + +. + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + +, + + + + + +. + + + + + + + + + + + +. + + + +, +, + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + + + +. + + + + + +, + + + + + +, + + + + +, + +. + + + + + + + + + + + +· + + + + +, + + +, + + + + + + + + + +. + + + + + +· + + + + +, + + + + + + + +. + + + + + +, + + + +· + + + + + + + + + +. + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + +, + +. + + + + +, + + + + +. + + + + + + + +, + + +, + + + + + + + + + +. + + + + + +. + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + +, + + + + + + + + + + +, + + + + + +. + + + + + +, + + + + +, + + + + +, + + + + +· + + + + + + +· + + + + + + + + + +, + + + + + + + + + +, + + + +. + + + + + + + + + + + + + +, + + + +, + + + + + +. + + + + + + + + + +. + + + + + + + + +, + + +, + + + + +, + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + +. + + + + + + + +, + + + + + +, + +. + + + + +, + + + +. + + + + + + + + + +, + + + + +· + + + +, + + +. + + + + + + +, + + + + +· + + + + + + +, + + + + + +, + + + + + +. + + + + + + +, + + + + + + + +· +, + + + + +, + + + + + + +. + + + + + + + + + + + +. + + + + +, + + + +, + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + +, + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +· + + + + + + + + + + + + + + +. + + +, + + + + + + +, + + + + + + +, + + + + + + + + +. + + +, + + + + + + + +. + + + + +, + + + + + + + + +, + + + + + + +, + + + + + + +. + + + + + +. + + + + + + + +, + + + + +, + + + + + + + + +· + + + + + +, + +. + + + + + + + + + + +, + + + +· + + + + + + + +. + + + + + + + +· + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + +, + + + + + + +, + +. + + + + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + +, + + + +, +, + + + +, + + + + + + + + + +· + + + + + + + + + + + + + + +, + + + + + + + + + +. + + +; + + + +. + + + + + +· + + + + + + + +· + + + + +, + + + + + + + +, + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + +, + + + + + +, + + +, +· + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + +. + + + + + + + + + + + + +· + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + + + + + + +· + + + + + + + + + +, + + + + + +. + + + + + +, + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + + + + +; + + + + +; + + + + + + + + + + + + + + + + + + + + + +; + + + + + + + + +, +, + + + + + +· + + +, + + + + + +. + + + + + + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +. + +ς + + + + + + + + +. + +— + + + +, + + + + +, + + + + + +, + + + + + + + + + +, + + + + + + + + +· + + + + + + +, + + + + + + + + +, + + + + + + + + + +· + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + +; + + + + +, +; + + + + + + + + +, + + +. + + + + + + + + +, + + + + + + + +. + + + +, +; + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + +, +. + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + +; + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + + + + +. + + + + +, + + + + + + +. + + + + + + +, + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + + + +; + + + + + + + + + + + + + +; + + + + + +. + + + + + + + +, + + +; + + + +. + + + + + + + + + + +. + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + +, + + + + + +, + +, + + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + +, + +· + + + + + + + +, + + + + +; + + + + + + + + +; + + + + + +, +, + + +· + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + +, + +· + + + + + +. + + + + + + + + + +, + + + +. + + + + + + + + + +, + + + + +. + + + +, + + + + + + + + + + + + + + + + + +· + + + + + + +; + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + + + +· + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +· + + + + + + + +, + + + + + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +, + + + +, + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + +· + + + + + + + + +, + + + + +· + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + +· + + + + + + + + +, + + + +· + + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + + +, + +, + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + + +, + + +. + +, + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + +, + + + +, + + + + + + + + + + + + +. + + + + + + + + +. + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + +. + + + +, + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + +, + + + + + +, + + + +· + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + +· + + + + + + + + + +· + + + + + + +. + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + +, + + + + + +· + +, + + +, + + + +. + + +, + + + + + + + + + + + + + +, + + +, + + + + + + + + + +. + + + + + + + + + +, + + + + +, + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + +; + + + + + + + + + +, + + +. + + + +, + + + + +. + + + + + + + +, + + + + +· + + + + + + + +, + + + + +· + +. + + + + + + + + + +, + + +. + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + +· + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + + + + + +, + +. + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +. +, +, + +. + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + +. + + + + + + + + +· + + + + + + + + +, + +, + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + +, + + + + + +, + + + + + + +, + + + + + + + + + + + + +· + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + +, + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + +· + + + + + + + + + + + + + + + +, +. + + + + + + + + + +; + + + + + + + + + + + + + + +· + + + + +, + + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + +· +, + + + + + + + + + + + + + + + + +, + + +; + + + + +. + + + + +, +; + + + + + + + + + +. + + + + + + + +· + + + + +, + + + + + + + + + + + + +, + + + + + + + + +, + + + + +, + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. +, + +, + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +, +· + + + + + + +. + + + +, + +, + +, + + + + + +. + + + + + +, + + + + +· + + + + + + +· + + + + + + +. + +, +, + +; + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + +· + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + +, + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + +. +, + + + + + + +, + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + + +, + + + +, + + +· + + + + + + +, + + +, + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + +, +, + + + + + + + + + + + + + + + +. + + + + + +· + + + + + + + + + +. + + + + + + + +, + +, + + +, + + + +, +· + + +, + + + + + + + + + + + +. + +, +· + + + + + + + + + + + +. + + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + + + + +· + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + +, + +. + + + + +· + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + +. + + + +, + + + +, + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + +, + + + + + + + + + +. + + + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + + +, + + + +· + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + + +. + + + + + + + + +. + + + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + +, +, + +. + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + + + +· + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + +, + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + +, +, + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +· + + + + + + +, + + + + + + +. + + + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + + + +, + + +· + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +· + + + + + + +, + + + + +, + + + + +· + + + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + +· + + +. + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + +. + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + +, + +· + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +. + + + + + +, + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + +. + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + +. + +, + + + +, + + + + + +, + + + + +, + + + + + + + + + + + + +. + + + +, + + + + + +· + + + + + + + + + + +. + + + + +· + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + +· + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + +, + + + + + + + + + +, + + + + + +, + + + + + +. + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + +, + + + + + +· +. + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +, + + + +, + + + + + +, + + + + + +, +, +, +, +, +, +, + +, + +, +, +, +, +· + + + + + +, + + + + + + + +, + + + +, + + + + +. + + +, + + + + +· + + + + + +, + +· + + + + + +. + + + + + + + + + + + + + + +. + + +, + + + + + + + + + + +, + + + + + + +; + + + + + + + + + + + + +, + + + + + + + + + +; + + + + + + + + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + + +· + + + + + + + + + + + +, + + +. + + +, + + + + + + + +, + + + + +· + + + + + + + + + + +, + + + + +. + + + + + + +. + + + +, + + +· + + + + +, + + +· + + + + + + + + +, + + + + +. + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + +, + +, + +, + + + + + + + + + + +· + + + + + + +; + + + + +; + + + + +; + + + + +; + + + +, + + + + + + + +; + + + + + + + + + + +, + +. + + + + + + +· + + + + +, + + + + +. + + + + + + + + +, + + + + + + +; + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + +· + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + +, + + + + + +; + + + +. + + + + + + + + +. +; + + + +, + + + + + + + + +; + +· + + + + +, + + + +, + + + + + + + + + + + + + + +. + + + + + + + +, + +; + + + + + + + +; + + +. + +· + + + + + + +; + + + + + + + + + + + + + + +, + + + + + +; + + + + + + + + + + + + + + + + + +; + + + + +. +; + +; + +· + + + + + + + + + +, + + + + + + + +, + + + +, + + + + + +· + +, + +· + + + + +, + + + +. + + + + +, + + + +, + + + + + +· + + + + + + +· + + + + + +, + + + + + + +, + + + + +. + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + + + +· + + + + +. + + + + + + +, + + + + + + +, + + + + + + +, + + + +· + + + +· + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + +. + + + +; +. + + +; + +; +, + + + +. + + + + + + + +. + + + + +; + + +; + + +, + + + +, + + + + + + + + + +. + + + + + +; + +, + + +. + + + + + + + + + +; + + + + + +, + +· + + + +, + + + + +; + + + + +, + + + + +. + + + + + + + + + + + +· + + + +, + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + +; + + + + + + + + +. + + +; + + + + + +; + + + + + +· + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + +. + + + + + +, + + + + + + +· + + + + +· + + + + +, + +. + + + +, + + +, + + + + + + + + +, + + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + +· + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +, + + +, + + + + + +· + + + + + + + + + +, + + + +, + + + + + + + + + + + + +. + + + + + +. + + + + + + + + +, + + + +, + +, + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + +. +, + + + + + + + +, + + + + + +, + + + +, + + + +· + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + +· + + + + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +· +, + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + + +, + + + +· + + + + + + +, + + + + + + +· + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + +, + + + +· + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +· + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + +· + + + + +, + + +, + + + + + + + +, + + + + + + + + + + + + + + + +. + + +; + + +, + + + +; + +. + + + +, + + + + +; + + + + + + + +, + + + + +; + + + + + + + + +, + + + + + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + +· + +, + + + + + +, + + + + + +, + + + + + +· + + + + + + +. + + + + +, + + + + +, + + + + + + + +, + + + +. + + +, + + + +· + + +, + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + +· + + + + + + + +. +; + + + + + + + + + +; + +. + + + + + + + + +, + + + +, + + + + + + + +; + + + + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + +, + + + + +. + + + + +; + + + +· + + + + +. + + + + + + + + + +, + + + + + +, + + + + +. + + + + + +, + + + + + + + + + + + + +. + +, +, + + + +, + + + + + + + + + +; + + + + + + + + +· + + + + +, + + + + + +. + + + + + + + + + + +· + + + + +, + + + + +, + + + + + + + +. +, + +, + + + + + + + + + +, + + + + +, + + + +, + + + +. + + + + + +, + + + + + + + + + + + + + + + + + +· + + + + + +, + + + +, + + + + + + + + + +. + + +; + + +; + +· + + + + + + + + +· + + + + + + + + + + + + +· + + + + + + + + + + + + +· + + + + +. + + + + + +· + + + + + + +, + + +, + + + + + + + +, + + +· + + + + + + + + + + + + + +. + + + + +, + + + + + + + +. + + + + + +; + +· + + +, + + +, + + + + + +, + + + + + + + + + +. + + + + + + +· + + + +, + + + +. + + + + +· + + + + + +, + + + + +. + + + + + + +, + + + + +. + + + + + + + + + + + +. + + + + + + +, + + + + + +, +· + + + + +, + + + + + +· + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + + + +. + + + + + + + + + +, + + + + +· + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + +· + + + + + + + + + +; + + + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + +· + + + + + + +, + + +· + + + + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + +, + + + +. + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + +, +, + +, + + + + + + +. + + + + +, + +· + + + + + + + +, +. + + + + +, + + +. + + + + + + + + +, + + + +, + + + + + +. + + + + + + + + + + +. + + +, + +· + + +, + + +, + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + +, + +, + + + +, + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +· +, + + + + + + + + + + + + + + + +, +, + + + + + +. + + + +· + + + + + +· + + + +, + +; + + + + + +, + + +. + + + + + + + + +· + + + + + + + +, + + + + + + +· + + + + + + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + +. + + +, + + + + + + + +, + + + + + + + +· + + +, + + +· + + +, + + +· + + +, + + +. + + + + +; + + + + +, + + +; + + + + + + +, + + + + + +, + + + + + + + + +; + + + + +; + + +· + + +; + + + +, + + +, + + + + + +, + + + + +. + + + + + + + +; + + + + + + + + + + + + +; + + + + + + + + +, + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + +, + +, + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + + + + + + + + + + +, + + +, + + + + + + + +, + + + + + + + + +, +. + + + + + + + + +. + + + + + +, + +· + + + + +, + +, + + + + + +. + +, + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +. +, + + + + + + +, + + + + + +· + + + + + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + +· + + + + +, + + + +. + + +; + + + + +; + +. + + + + + + + +, + + + + +. + + + + + + + +, + + + +. + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + +, + + + +. + + + + + +; + + + + + +; + +, + + + + + + + +; + + + + + + + + + +; + + + + + + + + + + + + + +, + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + +, + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + + + +, + + +· + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + +. + + +; + + + + + + + +, + + + + +· + + + + + + + + +. + +; + + + + + + + +· + + + + +, + + + + + + + + + + +, + + + + + + +. +, + + + + + + + + + + + + + + + +. + + + + + + +, + + + +· + + + + + +, + + + +, + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +; + + + +· + + + + + +; + + + + + +. + + +; + + + + +, + + + + + + + + +· + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + +, +· + + + + +, + + + + +. + + + + + + + + + + +. + + + + + + + +· + + + + +, + + + + + +· + + + + + + + + +. + + + + + + +; + + + + + +; + + + + +; + + + + + +; + + + + + + + + +. + + + + + +. + + + +, + + + + +; + + + + +, + + + + + +. + +, + + +; + + + + + + + + +, + + + + + + + + +. + +, + + + +; + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + +. +, + + + + + + + +; + +· + + + + +, + + +, + +. + + + + + + + + +. + + + + + + + + +, + + + + + + +; +, + + + +, + + + +, + + + + + + + +. + + + + + +; + + + +, + + + + + +. + + + + + + + + + + + +· + + +, + + +, + + + + + +. +; + + + +, + + +, + + + +· + + + +, + + + + + + + +, + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + +. +, + + + + +; + +· + + + + + + + +, + + + +. + + + + + + + + + + + + +, + + + + +. + + + + +. + + + + + + + +, + + + +, + + + + + + + + + + +. + + + + + + +, + + + + + + + +; + + + + +, + + +· + + + + +, + + +. + + + + + +, + + + + + + + + + + + + + + + +, + + + +· + + +, + + + + + + + + +. + + + + + + +. +· + + +, + + + + +. + + +, + +· + + + + + + + + + +, + + +. + + + + + +· + + + + +, + + + + +, + + + +, + + + +. +, + + + + + +, +· + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + +. + +, + + + +, + + +, + + + + + +, + + + + + + + + + + + + + +, + + + + +, + + + + + + +, + + + +. + + + + + + +, + + + + +. + + + + + + +, + + + + + + + +· + + + + + + + + +. + + + + + + +, + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + +· + + + + + + + + + +. + + + + +; + + + + +; + + + +, + + +; + + + + + + + + + + +· + + + + + +· +. + +, + + + + + + +, + + + + + + + + + +, + + + +· + + + + + +, + + + + + +, + + + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + +, + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + + +, + + + + + + + + +, + + + + + +. + + + +, + + + + + + + +, + + + + +· + +, + + +· + + +, + + +· + + +, + + +· + + + +, + + + +, + + + +. + + +. + + +, + + +· + + + + +, + + + +, + + + +, + + +, + + +, + + +, + + +, + + +, + + + + +, + + +. + + +, + + + +. + + +, + + +. + + + + +· + + + + + + + +. + + + + +. + + + + +· + + + + +· + +, + + + + + + +· +, + + +, + + + + +· + + + +, + +, + +. + + + + + +, + +· + +, + +· + + + + + + + + + +. + + + + +, + + + + + + +. + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + +· + + + + + +. + + + + + + + + + + + +. + + + + + +; + + +, + + + + +· + + + + + + + +. + + + + +, +· + + + + + +· + + + +, + + + + + + +. + + +, + + + + + + + + + +. + + + + + +· + + + + + + + +. + + + +, + + + + +, + + + + +, + + + + +, + + + + +. + + +, + + + + +· + + + + + + +. + + + +, + +, + +, + +, + + + + +, + + + + +, + + + + + + + +. + + + + + + +· + + + + +. + + + + +, + + + + + + +· + + + + + + + + +. + + +, + + + +. + + + + + +, + + + + + +. + + + + +, + + + +, + + + +, + + + +· + + + + + +, + + + + + + + +. + + + + + +, + + + +. + + + + +, + + + + +. + + + + + + +, + + + + + + + +, + + + + +. + + + + + + +; + + + + + +· +, + + + + + + +. + + + + + + +, + + + + +· + + + + + +. + + + + + +· + + + + +, + + + +· + + + + + + +, + + + +. + + + + +, + + + +· + + + +, + + +, + + +, + + +. + + + + + + +, + + +. + + + + + + +, + + + + + +. + + + + + + +; + + + + + + + +; + + + + + + +. + + + +, + +, + + + + +, + + + + + +. + + + + + + + + + +. + + + +· + + + +, + + + + + + + +. + + + + + + + + + + +· + + + + + + +, + +. + + + + + + + +, + + + +. + + + + + +, + + + +. + + + + + +. + + + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + +. + + +, + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +· + + + + + +, + + + +· + + + + + + + +. + + + + + + + + + +, + + + +. + + + + + + + + + +· + + + + + + +· + + + + + + + + + + +. + + +, + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + +, + + + + + +, + + + +. + + + + + + + + +, + + + + + + +, + + + + + + + +, + + + + + + + + + + + + +. + + + +, +, + + + +. + + + + +, +, + +, + + + + + +. + + + + + + + + +, + + + + +· + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + +. +, + +, + + + + + +, + + + + + +, + + + +, + + + +. + + + + + +, + + +, + + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + +, + + + +. + + + + + + + + + + +· + + + + + + + + + + + + + +, + + +, + + + + +, + + + +· + + + + + + + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + +, + + + + +. + + + + + + + + +· + + + + + + + + +, + + + + + + + + + +, + + + + + +· + + + + + + + + + +, + + + + + +. + +ὶ + + + + + +. + + + + + + + + + + + + + + + +. +, + + + + +· + + + + + + + +, + + + + + + +. + + +, + + + + + +, + + + + +· + + + + + + + + + + +. + +, + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + +· +. + + + + + + +, + + + + + + +, + + + + + + + +, + + + + + + + + +· + + + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +, + + + + + +. + + + + +, + + + + + + +. + +, + + + + +. + + + + + + + + + +, + + + + + +, + + + + + + +. + + + + + + +. + + + + + + + + + + + +. + + + + + +. + + + + +. + + + + +. + + + + + + + + +. + + + + + + + +. + + + +, + + + + +. + + + + + + + + + + + +. + +, +, +, +, +, + + + + +. + + + +, + + + + +, + +, + + + + + +. + + + + +. + + + + + + +. + +, + +, + + + + + + + + + + + + + +, + + + +· + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + +· + + + +, + + + + + + + +, + + + + +. + + + + + + + + + + + + + +. + + + + + + + +. + + + + + +, + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + +, + + +, + + + + + + + +· +. + + + + + + + + + + + + + + + + + + + +, + + + +, + +, + + + + + + + + + + + + + +, + + +· + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + + +. + + +, + + + + + + + + + + + + +. + +, + +, + + + + + + + +, + + + + +, + + + + + +, + + + + + + + + + + + +. + + +, + + + +, + + +, + + + + +. + + +, + + + + + + + +, + + +, + + +, + + +. + + +; + + + + +, + + + + + +; + + + + + + + + + +· + + + + + + + + + +. + + + + + +· + + + + + + +. + + + + + + + +, + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + +, + + + + + +. + +; + +; + + + + +; + + + + + + + +; + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + +, + + +, + + + +, + + + +, + + + + + +. + + + + + + + + +, + + + + + + + +. + +, + + + +, + + + + + +, + + +, + + +· + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + +, + + +, + + + +, + + + + + + + +. + + + + + + + +, + + + + +, + + + + + + +, + + + + + + + +. +, + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + +· + + + + + +, + +, + + + + + + + + + +· + + + + + + + +· + + +, + + + + + + +· + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + +· + + + + +, + + + + +. + + + + + + + + + + + + + + + +; + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + +, + + + +, + + +. + + + + + + + + + +· + + + +, + + + +, + + +. + + + + + +, + + + + +. + + + + +, + + +; + + + + +. +, +, + + + + + + + + +, + + + +. + + +, + +· + + +. + + + + +, + + + +. + + + + + + +, + + + + + + +; + + + + + + + +, + + + +, + + +; + + + +; + + + +; + + + +, + + + + + +. + +, + +, + + + +· + + + + + + + + +, + + + +. + + + + + + + +, + + + + + + + + + +. + + + +· + +, + + +. + + + + + + + + + + + + +, + + +. + + + + +. + + + + + + + + +, + + + +. + + + + + + + +, +, + +, +, +, +, + + + + +· + + + +, + + + +, + + + + + + + + + +. + + + + + + +, + +· + + + + +, +, + + +, + + + + +. + + + + + + + + + + + + + +; + + + + + + +, + + + +· + + + + + + +, + + +. + + +· + + + + + + + + + + +, + +, + + +, + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + +, + + +. + + + + +· + + + +, + + + + + +, + + + + + +, + + + +, + +, + + +, + + +. + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + +· + + + +· + + + +, + + + + +· + + + + + +. + + + + + +, + + + + +, + + + + + + + + + + + + +· + + + + + + + + +. +, +, + + + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + + +; + + + + + +; + + + +, + + + + +; + + +· + +· + + +· + + + +, + + + + +. +, + + + + + + + + + +, + + + + + + + + +. + + + +, + + + + +· + +, + + +· + +, + + +. + + + + + + + + + + + + + + + + + + + +· + +, + +, + +· + + + + + + +, + +. + + + + +, + + + + + +. + + + + + + +, + + + +· + + + + + + + + + +. + + +, + + +. + + + + + +, + + + + + + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + + +· + + + + +, + + + +, + + + + + + + + + +· + + + + + + + +, + + +. + +; + + + + +, + + + + + +; + + + + +, + + + + + + + +, + + + + + +. + + + +, + + + +, + + + + + + + + + +; +, + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + +. + + + + +. + + + + + + + + +; + + + +, + + + +, + + +. + + + + + +. + + +, + + + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + + + +; + + + + +; + + + + + +. + + + + + +. + + + + + + + + + + + +, + + + + +; + + + + + + + + +; + + + + + + +, + + + +; + + + + +, + +; + + + + + +, + + + + +, + +; + + + +. + + + + + + +, + + + + + + + +; + + + + +, + + + +; + + + + + + + + + + + +. + + + + +; + + + + +; + + + + +, + + +. + + + + + + + + +; + +· + + + + + + + + + + + + + +, + +, + +, + + + + +. + + + +· + +, + +, + + + + + + + + + + + + + + + +. + + +, + + + +. + + +, + + + + + +. + + + +, + + + + +· + + + + + + + +. + + + + + + + + +, + + + + +· + + + + + + + + + + + + + +. + + + + + + + + +; + + + + + + + + +; + +. + + + + + + + + + + +; +, +, + + + + + +. + + + + + + + +. + + +. + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + +, + + + +; + + + +; + + +· + + + + + + + +. + + + +, + + + + +· + + + + + + + + +, + + + + + +. + + + + + + +, + + + + + + +. + + + + + + + + + +· + + + + + + + + + + + + +. + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + +. + + + + +, + + +. + + + + + + + +· + + + + + + +, + + +, + + +. + + + + + + +, + + + + + +· + + + +, +· + + + + + +. + + + +, + + + + +, + + + + + + + + +, + + + + + + + + + + +. + + + + +, + + +· + + + + + +, + + + + + +, + + +· + + + + + +, + + + + + +, + + + +. + + + + + + + + +, + + + + + + + + +· + + + + + + +, + + + +. + + + + +, +· + + + + + + + + + +· + + + + + + +. + +, + +, + + + +; + +, + +, + + + +; + + + + + + +, + + + + +, + +. + + + + + + +. + + +; + +· + + + +; + +. + + + +, + + + + +, + + + +. + + + + + +, + + +. + +; + + +· + + + + + +, + +. + + + + + + + + +· + + + + + + +. + +· + + + +. +, + + + +, + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + +. + +; + + +· + + +; + + +. + + + +, + +, + + + + +, + +· + + + + + + +, + + + +. + +, + +, + + + +· + + + + + + + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + + + + + +· + + + + + + +. + + + + +. + + + + + +, + + + +· + + + + + + +, + + + +, + +. + + + + + + + + + + + +, + + + + + + + + +· + + + + + + +, + + + +. + + + + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + +, + + +, + + + +, + + +· + +· +. + + + + + + + + + + +, + + + + + + +, + + + + + + +, + + + +, + +. + + + + + + + + +, + + + + + +. + + + + + + + + +· + + + + +, + + + + +, + + +· + + + + + +, + + + +· + + + + + +. + + + +, + + + + +. + + +, + + + +· + + + + +, + + + + +· + + + + + +, + + + +. + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + +, + + + + + +, + + + + + + + +, + + + + +, + + + + + + + +. + + + + + +· + + + + + + + + + + +, + + + + + + +. + + + + + + +· + + + + +, + + + +. + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +; + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + +, + + + + + +. + + +; + + +; + + + + + +; + + + + + + + +; + + + + +, + + + +· + + + + + + + + + +. + + + + + + + +. + + + + + + +; + + + + + + +, + + + + + + + + + + + +; + + + + + + + + + +; + + + + +; + + + + + + + + +; + + + + + + + + + + + +; + + + + +, + + + + + + +; + + + + + + + + + +. + + + + + +; + + + + +; + + + +, + + + + +, + + + + + + + + +. + + + + + +, + + + + + + +; + + + + + +, + + +; + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + +; + + + + + + + + + + + + +· + + + + + +. + + + + + + + + +· + + + + + + +ὸ + + + +. + + +, + + + +· + + + +· + + + + + + +. + + + + +, + +· + + +, + +. + + + + + +; + + + + + +, + + + + + + + + + +. + + + + + + + +, + + + +· + + + + + +, + + +· + + + + + +, + + + + +, + + + + +· + + + +, + + + + + + +, + + + +· + + + +, + + + +· + + + +, + + + +. + + + + + +, + + + +. + + + + + + + + + +, + + + + +; + + + +. + + + + + +, + + + + + + +, + + +. + + + + + + +, + + + + + +· + + + + + + +, + + + + + + +. + +, + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + +, + + + + + +· + + + + + + +, + + + + + +, + + + + + + + + +· + + + + +. + + + + +, + + + + + + +, + + +. + + +, + + +· + + + + + + + +, + + +. + +, + + + +, + + + + + +. + + + +, + + + + + + + + +. + +, + + + +, + + + + +. + + + + +, + + + + +, + + + + + + +. + + + + + + +, + + + + + + +· + + + +, + + + + + + + +, + + + + + + + + + + +. +, + +, + + + +. + + +· + + + +. + + + + + +, + + + + + + +; + + + +, + + + + + + +; + + +, + + + + +· + + + + + + + +. + + + + +· + + + + + + + + +; + + +; + + + +; + + + + +; + + + +, + + + + +· + + + + + + + +. + + + + + + + +· + + + + + + + +. + + + +; + + + +; + +, + + + +. + +, + + + +. + + + + + + + +. + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + + + + + + +, + + + + + + + + +· + + + + + + + + + +. + + + + + + + + + +; + + + +, + + + + + +; + + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + +, + + + + + + + + +, + +. + + +, + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + + +. + + + + +, + +· + + + + + + + +, +. + + + + + + + +, + + + + +· + + + + + +. + + + + + +, + + + +· + + + + + + + +, + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + +, + + + + + + +· + + + + + +. + + + +· + + + + + + +; + + + + + + + + + + +, + + +, + + + +, + + +; + + + + + + +. + + + + + +, + + + + +, + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + + +· + + + + + + + + +, + + + +, + + +. + + + + + + + + + +; + + + + + +, + + + + +; + + +; + +; + + + +. + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + +. + + + + + + +, + + + + + + + + + + + +· + +, + + +, + + + +. + + + + + + + + + + +, + + + + +, + + +. + + + + + + + + + + + + +, + + + + + + + + +. + + + +, + + + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + +. + + + +, + + +· + + + + + +, + + + + + +. +, + +, + + + + + +. + + +, + + +, + + + + +. + + + + + + +. + +, + + +, + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + +. + + + +, + + + +· + + + +, + + + +· + + + +, + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + + +, + + + + + + + +, + + + +, + + +, + + + +, + + +, + + + +· + + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + + + + +, + + + + +· + + + + + + + + + + +, + + + +, + + + +. + + + + +. + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + + +. + + + + +, + + +; + + +, + + +; + + + + + + +, + + + + + + + +. + + + + + + +, + + +; + + + + +, + + +. + + + + + + + + + + + +, + + + + + + + + + +· + + + + + + + + + + + +, + + + + + +, + + + + +, + + + + + + +, + + + + + + +. + + + + + +, + + + + +, + + + + + + +, + + + + + + + +. + + + + +, + + + +· + + +, + + + +. + + + + + + + + +. + + + + + + + + + + +, + +, + +, + +, + + +, +, +, + +. + + +; + + +; + + +; + + +; + + + + +; + + + +; + + +; + + + + + +. + + + + + + +. + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +, + + + +, + +. + + + + + + +, + + + + + +, + +, + + + +, + +. + + +, + + +, + +, + + + +, + +, + +, + + + +, + +, + + + +, + + + + +, + + + +· + +, + +, + +, + +. + + + +· + + +, +· + +, +· + +, +. + + + + + + + +· + + + + +, + + + +. + + +, + + +, + + +, + + +· + + +, + + + +. + + + + + + +, + + + + +· + + + +, + + + + + +. + + + +, +, +, + + +· + + + + +. + + +, + + + +, + + + +. + + + + + + + + +· + + +, + + + +· + + + + + + + + + +. + + + + +· + + + + +. + + + + + +, + + + +· + + + + + + + +, + + + +, + + + + +. +, +, + + + + + + +, + + +, + + + + + + + + + + + + + + +; + + + + +, + + + +, + + + + + +, + + + + + + +; + + + + + + +, + + + +; + + + + + + + + + + +, + + + +; + + + + +. + + + + + + + +, + + +· + + + + + + + +, + + + + + + + + + +. + + +, + + +, + + + + + + + + +. + + + + + + +. + + + +, + + + +, + + + + + +. + + +; + + +, + + + + +· + + +, + + + + +. + + + +, + + + + + + + + + + + + + +; + + + + +· + + + + +, + + + + +. + + +, + + + + +· + + + + + + + + + +, + + + +, + + + + +. +, + + + + +, + + + +, + + + + +. + + + + + + + + + + + + + + +, + + + + +, + +. + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +, + + + + +, + + + +; + + + +, + + + + + +, + + +, + + +, + + + + + + +, + + + + + + + +, + + + + + + + +. + + +, +; + +, + + +, + +, + +, + +, + +· + + + +. + + + +, + + + + + +, + + +, + + +· + + + + +, + + +, + + + + + +. + + + + + +, + + + +· + + + +, + + + +. + + + + + +, + + + + + +. + + + + +· + + + + + + + +, + + + + + + +, + + + + + +· + + + + +, + +, + + + + +. + + + + +, + + + + + +· + + + + + + +. + + + + + + + +, + + + + +; + + + + + + +, + + + + + + +· + + + + +, +. +, + +, + + +, + + + +· + + + + + + + + +. + +, + +, + + + + +, + + +, + + + +, + + + +, + + + +, + +, + + + + +. + + + + +, + + +, + + + + + + + + + +, + + +, + + + + + + + + + +, + + + +, + + +· + + + + + +, + + + + + + +, + + +· + + +, + + + +· + + + + +. + + + + + + + + + +, + + + + + +, + + + + + +· + + + + + +, + + + + + + + + + +, + + + + +, + + + + + + + + + +. + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + +; + + + + + +, + + +· + + + + +, + + + + +, + + + + +· + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + +, + + +· + + + + +, + + + +, + + + + + +. + + + + + + +. + + + + + + + + + +, + + + +. + + + + +, + + + +. + + + + +, + + + + +. + + + + + + +, + + + + + + +. + + + + + +· + +, + + + + + + + +, + + +, + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + +. + + + +· + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + +, + + + + + + +. + + + + + + + +; + + + + +, + + + + +; + + + + + +; +, + + +, + + + +, + + + + + + + +. + + + + + +, + + + +; + + + +, + + +, + + +. + +· + + + + +. + + + + +· + + + + +· + + + +. + + + + + + +; + + + +; +, + + +, + + + + +· + + +, + + + + + +, + + + + + + + + + +· + + + + + + + +, + + + + + +. + + + + + +, + + + +, + + + +, + + + +, + + +. + + +, + + +· + + + + + + +, + + + + +. + + +, + + + +, + + + +· + + + + + +. + + + + + +. + + +, + + +· + + +, + + +· + + +, + + +· + + +, + + +. + + + +, + + +. + + + + + + + + + + +· + + + + + +. + + + + + + + +, + + +. + + + + + +, + + + + +. + + +, + + + +, + + + +, + + + +· + + + + + + +, + + + + + +. + + +, +, + + + + + + + + +, + + + + + +. + + + +· + + +, + + +, + +, + + +, + + + +· +, + + + + + +, + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + +. +, + +, + +; +, + +, + +; + + + + + + +, + + + + + + +· + + + + + + + + + + + + + + +. +, + + +, +, + +, + + + + + + +, + + + + + + + + + +. + + + + + + + +, + + + + + +, + + + +. + + + + + + + + + + + + +, + + + + + + +. + + +, + + +, + + + + + + + + + +· + + + + + + +, + + +. + + + + + + +· + + +, + + + + + + + +, + + + + + + +. + + + + + + + +· + + + + + + +, + + + +. + + + + + + +· + + + + + + +, + + +. + + + +, + + + + + +· + + + + + + +· + + + + +. + + + + +, + + + +· + + + + + +. + + + + +, + + + + + + + + + +· + + + + + + + +, + + + +. +, + + + +, +, +. + + + + +. + + +, +· + + + +, + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + +, + + + + + +· + + + + + + + +. + + + +. + + + + + +. + + + + + + + + + + + + + +. + + + + +. + + + + +. + + + + + +. + + + + + +, + +. + +. + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + +, + + + + + +· + +, + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + +, + + + +. + +, + + + +, + + + + + + + + +, + + + + + +, + + + + + +· + + + + + + + + +, + + + + + + + + + + + + + +· + + + + + + + +, + + + + + + +, + + + + + + +, + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + +, + + + + + + + +, + + + +, + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + +. + + + + + + + +; + + + + + +, + + + + + + + + + + +; + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + +, + + + + +, + + + + +. + + + +, + + + +· + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + +. + + + + + +, + + + + + +· + + + +. + + + +, + + + + + + + +. + + + + +, + + + + + + + + + + +; + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +, + + +, + + + + + + + + + +. + + + +, + + +, + + +, + +. + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + +· + + + + +, + + + + +, + + + + +. + + + +, +· + + + + +, + + +, + + + + +, + + + + + +· + + + + + +. + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +, + + + + + + +. + + + + +; + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + +; + + + + + + + + + + + +; + + + + +, + + + + +, + + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + + +, + + + +· + + + +, + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + +; + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +. + + + + + +, + + + + + +. + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + +. + + + + +. + + + + + + + + + + + + + + +, + +, + + + +· + + + + + + + + + + + + +· + + + + + +, + + +. + + + + + +· + + + + +, +. + + + + + + + + + + + + + + + + +, + + + +. + +, + + + +, + +, + +, + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + +· + + + + + +, + + + +, + + + +, + + + +, + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + + +, + + + + + + + + + + + +. + + + + + +, + + + + +. + + + + + + +, + + + +, + +, + + +, + + +, + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + +. + + +, + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + +· + + + +, + + + + +. + + + + + + + + + + +, + + +, + + + + + + +. + + + + +, + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +· + + + +, + + +· + + + + + + + + + + + + + +. + + +, + + + +, + + +. + + + + + + + + + +, + + + + + + + + + + +, + + + +. + + + + + + + +, + + +· + + + + + + + +. + + + + +, + + + + + + +, + + + + + + + + + + +. + + +, +· + +, +. + + + + + + +, + +, + + + + +· + + + +· + + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + +, + + + +. + + + + +, + +· + + +, + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + +· + + +, + + +. + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +· + +ι + + + + + + + + + +· + + + +, + + + + + +, + + + + + + + +, + + + + + + + +, + + +, + +, + +, + +, + +, + +, + +, + +, + +, + +, + +, + +, + +, + +, + + +, + + +, + + +, + + +· + + + + + + + + +, + + + +, + + + +· + + + +, + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + + +. +, + + + + + +, + + + +· + + + +, + + + + + +· + + + +, + + +, + + +. + + + +· + + + + + +, + + + + + +; + + + + + +, + + + + + +; + + + + + + +; + + + + +· + + + + + + + + + + +, + + + +, + + + + +. + + + + +, + +, + + + +· + +, + + +, + + + + +, + + + + + + + +, + + +. + +, + + + +, + + + + + + + +, + + + + +. + +· + +, + +, + +. + + + +· + + + + + + + + + + + + +. + + + + +, + + + + +· + + +, + + + + + + + +. + + + + + + + + + + + +, + + + +· + +, + +. + + + + + + + + + + + + +· + + + + + + +, + + + + + + + + +, + + + + +, + + +, + + + + +, + + + +. + + + + + + + +, + +· + + +, + + + + + + + + + + +, + +, + + +, + + + + +· + + + +, + + + + + +. + + + + + + + + + +· + + + + + + +. + + + + + + + + + + + +, + +, + +, + +, + +, + +, + +. + + + + + + + +. + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +. + + +. + + + + + + + + + + + +, + + + + + + + +· + + + + + + +, + +, + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +. + + + + + + +. + +, + +, + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +· +, + + +, + + +, + + + + + +, + + + + + + + + + + +, + + + +, + + + + + + + + + + +, + + + + +, + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + +, + + + + + +, + + + + + +. + + + + +· + + + +, + + + + + + + + + + + +· + + + + + +, + + + + + +, + + + + + + +. + + + + +, + + + +, + + + +. + + + + +, + +· + + + + + + + + + + + + + +, + + + + + + + + + +, + + +, + + + + + + +, + + + + + +. + + + + + + + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + +, + + + + + + + + + + + +· + + + + + + + + + + +. + + + + + +, + + + + + + +, + + + + + + + + +. + + +, + + + + + +· + + +, + +, + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + +, + + + + + + +. + + + +, + + + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + +, + + + +, + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + +. +, + + + + + + +, + + + + + + + + +. + + + + +, + + + + + +· + + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + +, + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +· + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +, + + + + +· + + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + +, + + + + + + +, + + + + +. + + + +. + + + + + +, + + + + +, + + + +, + + +. + + + + + + + + + +, + + + + + + + + + + +, + +, + + + + + + + + + +. + +, +, + + + + +, + + + + + + + + + +. + + + +, + + + + + + + +, + + + + +. + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + + + + + +· + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + +, + + + + + + + +. + + + + + +· + + + + +, + + +, + + + + +. + + + + + +· + + + +. + + + + +, + + + + + + + + + +· + + + +, + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + +, + +. + + + + + + +. + + + + + +, + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + +; + + + + + + + + +, + + + + + + + + +· + + + + + + + + + +· + + + + + + + + +. + + + + +, + + + + + + + + + + + + +. + +; + + + +; + + +. + + +, + +, + + + + + + +, + + + + + + + +. + + + +, + +, + + + +. + + +· + + + + + + + +. + + + + + + + + + + + +· + + + + + + + +. + +, + + + + + +· + + +, + + + + +, + + + + +. + +, + + + +, + + + +, + + + + + +. + + + + + +, + +. + + + + + + +· + + + + + +, + + +, + + +, + + +, + + + + + +. + + +, + + + +. + + + + + +, + + +, + +. + +; +. + +; +. + + +; +. + + +; + +, + +· + + +, + + +, + + +, + + +. + + + + + + +, + +, + +, + +, + + + + +· + +, + +, + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + + +, + + +, + + + +· + + + + + + + + +, + + + + +. + +, + + +; + + + + + +; + + +, + + + + +. + + + + + + + + + + + + +, +, + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + +· +, + + + + + + + + +. + + + + +ε + + + +, + + + + + +, + + +, + + +, +α + + + + +. + + + + + +ε + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + +. + + + +, + + +, + + +· +, + + + + + + + + + + + + + + + + + + +. + + + +, + + + + +, + +, + + +, + + +. + + + + + +, + + + +. + + + + + + + +· + + + + + +. + + + + + + +, + + + + + + + +. + + + +, + +, + +, + + + +, + +· + + +, + + +. + +· + + +. + + + + + +. + + + + + +, + + + +. + + + + + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + + + +; + + + + +. + + + + + + + +, + + +· + + + + + + +. + + + + + + + +, + + + + +. + + + + + + + + + +. + + + +, + +; +, + + + + +· + + + + + +. + + + + + +, + + + +; + + + + + +· + + + +; + + + + +; + + + +; + + + + +. + + + + +· + +, + +, + + + +. + + + + + + + + + +, + + + + + +, + + +, +, +, +, +, +, +, +· + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + +· + + + + + + + + +. + + +, + + + + + + +, + + + + + +, + + + + + + + +, + + + + + + + +, + + + + + + + + +. + + + + +, + + + + +. + + + + + +, + + + + + + + + +. + + + + + + +, + +· + + + + + + + + +; + + + +. + + + + + + + + +. + + + + + + + + + +, + + + + +, + + + + + +, + + + + +. + + + + + + +, + + + +. + + + + +, + + + +· + +, + + + +. + + + + +, + + + + + + + + + + + + + + + + + + +. +, +, +, +, +, + + +, +, + + + + + + + + + +. + + + + +. + + + + +. + + + + + + + + + + + + + + + + + + + +. + +, + + + + + + + + + + + + + + + + + +, + + + + + +, + + + +· + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + +· +. + + + + + + + + + + + + + + +, + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + +. + +, + + + +, + + + + + + +, + +. + + + + + + +; + + + +; + + + +, + + + + +. + +, + +, + + + + + + + + + + +· + + + + + + + + +, + + + + +. + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + +, + + + + + + + + +, + + + +, + + + + +. + + + + + + + + +, + + + + + +· + + + + + +, + + + + + + +. + + + +, + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + +· + + + +· + + + + + + + + + +, + + + + +, + + + + + + +. + + + + + +, + +, + +· + + + + +, + + + + + + + + + + +, + + +· + + + + + + +, + + + + + + + +. + + + + + +, +ί + + + + +· + + + + + +— + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + +, + + + + +, + + + +, + +, + + + + + + + + +, + + + + +· + + + + +, + + + + + +. + + + + + +, + + + +, + + +. + + + + + + + + + + +· + + +, + + + +, + + + +. + + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + +; + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + +; + +. + + + + + + +, + + +. + + + + + + + + +· + +· + + + +, + + + + +· + + + + + +, + + + + + + + + + + + + + + + +. + + + + + +· + + + + +, + + + +. + + +, + + +, + + + + + + +; + + + + + +, + + + + + + + + + +; + + +; + + + + +; + + +; + + + +. + + + + + + + + + + +, + + + + + + +; + + + + +, + + + + +. + + + + + +, + + +. + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + +. + + + + + +, + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + +· + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +. +, + + +. + + + + + + + +. + + + + + + + + + +. + + + + +, + + +, + + + + + + + +, + + +. + + +· + + + + + + + + + + + + + + +, + + + + +. + + + + + +, + + +· + + + + + + + +. + + + +; + + + +, + + + + + + +, + + + + + +. + + + + + +, + + + + +. + + + + + + + +; + +. + + + + + + +, + + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + +, + + + +· + + + + + + + +. + + + + + + + + + + +· + + + + +, + +. + + + + +, + + + + +, + + + + +· + + + + + + + +. + + + +, + + + + +, + + +. +, + + + + + + + +, + + + + + +, + + + + + + + + + + +. + + +, + + +, + + + + + + +· + + + + + + +, + + + + + +, + + +, + + +, + + + + +, + + + +. + + + +, + + + + + + + + + + + +, + + + +. + + + + + +· + + +, + + + +. + + + + + + + + + + + +· + + + +, + + + + +, + + + + + + + + +, + + + + +; + + + + + + + +. + + + + + + + +. + + +, + + + +, +, + +. + + +· + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + +, + + +. + + + + +; + + + + + + + + + + + +. + + + + + +; + + + +, + + + +, + + +. + + + + + +, + + + + + + + + +, + +, + + + + + + + + +· + + + + + + + + + + +, + + + +. + +, + + + +, + + + + +; + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +. + + +· + + + + +, + + + + +, + + +, + + +, + + + + + + + + +· + + + + +, + + + + + +. + + + + + +, + + + +· + + +, + + + +, + + +, + + +· + + + + + + + + + + + +. +, +, + + + + + +. + + + + + + + + + + +, + + +. + + + + +; + + + + + + +· + + + + + + + + + + + + +. +, +, + + + + + + +. + + + + +· + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + +, + + +. + + + + + + + +. + + + + + + + +, + + + + + + +. + +· + + + + + +; + + + + + + +. + + + + + +. + + + + + + + + + +· + + + + + + +, + + +. +, +, + + + + +, + + +; + + + + + +. + + + + + +. + + + + +, +· + + + + + + + +, + + + + + +. + + + + +, + + + + + + + + + + +. + + + + + +, + + + + +. +, + + + + + + + + +. + + + + + + +, + + + + + +, + + + +, + + + + + + +. + + + +, + + + +. + + + + + + +, + + +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, + + + +, + + + + + + + + + + + + + +. + + + + + + +, +, +, +, +, +, +, +, +· + + + + + +. + + + + + + + + + + + + + +. + + +, + + +. + + +, + +, + +. +, + + + + + + +, + + + + + + + + +, + +, + + + +. + + + +, + + + + + + +. + + + + + + + +, + +. + + + + + +, + + + + + + + + + + + + +· + + + + + +. + + + + + + + + + + +. + +, + + +. + + + + +, + + +· + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + +· + + + + + +. + + + + +, + + + + +, + + + + + + +. + + + + + + + +. + + + + +, + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +, + + +. + + + + + +, + + +, + + + + + + + +. + + + + + +· + + + + + + + + + + +. + + + + + + + + + + +, +· +. + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + +, + + + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + + +, + + + + + +, + + + + + + + + +· + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +· + + + +, + + + + +, + + + + +, + + + + + + + + + + +, + + + + + +, + + + +, + + + + +. + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +, + + + +, + + + + + + + + +, + + + + + +, + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + +, + + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + +· + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + + + +· + + + + +, + + +· + + +, + + + +. + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + +, +, + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + +· + + + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + +, + + + + + + + +, + + + + +, + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +— + + + + + + + + + + + + + +, + + + + + + +, + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +· +. + + + + + + + + + + + + + +, + + + + +, + +, + + + +, + + + + + + + + + + +· + + + + +, + + + + + + + + +· + +, + +, + +· + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + +, + + + +. + + + + + + + + + + + + + + + +; + + + + + + + + + + +, + + + +. + + + + + +, + + +, + + +, + + + + +, + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + +, + + +, + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + +, +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + +, + +, + + + + + + +, + + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + +. + + + +· + + + + + + +, + + + + +. + + + +, + + + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + +. + + + + +, +, + + + + + + + + + +. + + + + +, + + +, + + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + +, + + + + + +, + + +, + + +. + + + +, + + + + + + +, + + +, + + + + + + + + + +. + + + + +· + + + + + + + + + + + + +. + + + + +· + + + +, + + + + +· + + + +, + +ὁ + + + + + + + + + +, +ς + + + + +, + + + + + + + + +, + + + +, + + + + + + + + + +· + + + + + + + +· + + + + + +. + + +, + +, + + + + +, + + + + +. + + + + +, + + + + + +, + + +, + + + + +. + + + + +, + + + + + + +. + + + +, + + + +, + + + +, + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + + + + +, + + + +. + + + + + + +, + + + + + + + +. + +, + + +, + + + + + + + + + + + +, + + + + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + +. + + + + + + +· + + + + + + +, + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +. + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + +, + + + + + +· + + + +. + + + + + + +, + + + + + +, + + + + + + + + + +. + + +, + + + + +, + + + + + + + +. + +, + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + + +, + + +, + + + + + +, + + + + + +, + + + + +, + + + +. + + +, + + + + +, + + +, + + + + + + + + + + +, + + + + + +. + +, + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + +, + + + +, + + +, + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + + + + +· + +, + + + + + + + + +, + + + +, + + + + +, + + + + + +, + + + + + + + + + + + + +, + + +, + + + + + + + + +, + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + +, + +, + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + +, + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + +. + + +, + + + + + + + + + + + + + +, + + + + + +, + + + + + + + +, + + + + + + +, + + + + +. + +, +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +· + + + +, + + + + + + +, + + + + + + +, + +, + + + + + +. +; + + + + +, + + + +, + +, + + + +· + + +· + + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + +. + + + + + +, + + + +, + + + + +. + + + + +, + + + + + + + + + +, + + + +· + + + + + + + +. + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + + +, + + + + + + +, + + + + + + + +, + + + + +, + + +, + + + +· + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + +, + + + +, + + + +, + + + + +, + + + + + + + +, + + + +, +, + + +, + + + + + +, + + + + + + +, + + + + +, + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + + + + +, + + + +· + + + + + + + + + + +, + + +. + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + +. +, + +, + + +, + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + +, + + + + +, + + + + + + + +, + + + + + + +, + + +, + + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + +· + + + + + + + + +. + + + + + + + + +, + + + + + + +. + + +, + + + + + + +· + + + + + +, + + + +. + + + + +, + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + +, + + + + + + + +, + + +, + + + + +, + +, + + + +. + + + + +· + + + + +, + + + + + + +, + + + + + +. + + + +, + + + + + + + +. + + + + + + + +, + + + + +, + + + + + + + + + + +, + + + + + + + + +. + +, + +, + + +. + + + + + + + +, + + +. + + +, + + + +, + + +. + + + +, + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +, + +· + +, + + +, + +, + + +, + + +, + + + + +, + + + + + + +. + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + +, + + + + + + +, + + + + +, + + + + + + +, + + + + + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + +, + + + + +, + + + + + + +. +, + + + + +· +, + + + + + + + + +, + + + + + + + + + + + + + +. + + +, + +· + + + + +, + + + + + +· + + + +, + + +. +, + + +, + + + + + + + + +. + + + + + + +, + + + + +, + + + + + +, + + + +, + + + + + + + + + + + +, + + + +. + + + + + + +, + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + +. +, + + + + +, + + + +, + + + +, +. + + + + + + + + + +. + + + +, + +, + +, + + + + + + + + + + + + + +, + + + + + +. + + + +· + +, +. + + + + + +. + + +· + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +. +, + +, + + +, + +, + +, + +, + +, + +, + + + + + + +, + +· + + + + + + + + + + +, + +· + + + + + + + +. + + + + + + + + + + + + +· + + + +, +. + + + + + +· + + + + + + + +. + + +, + + +· + + + + + +, + + + +, + + + +. + + + + + +. + + + + + + +. + +, + + +, + + + + +, + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + +, + + + + + + + + +. + + + + +· + + + + + + +, + +, + +, + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· +. + + + + + +. + + + + + +. + + + + +, + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + +, + + + + + + + +, + + + + + + + + +. + + + +, + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + +, + + + + +, + + + +· + + + + + + +, + + +, + + + + + + + + + + + + +, + + + + +, + + + + + + + +· + + + + + + + +· + + + + + + + + + + +, + + + + + + +, + +· + + +, + + + +, + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + +. + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +— + + + + + +, + + + + + + + + + + + + + + + +, + + + + +, + + + +· + + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + + +, + + + + + +, +, + + + + + + + + + + +. + + + + + + + +. + + + + + +, + + + + + +, + + + + + + + + + + + + + +. + + + + + + + +, + + +, + + + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + +· + + + + + + + + + +, + + +, + + + + + + + + + +, + + + + + + + + + + + + +, + + + + +, + + + + +, + + + + + + + + + + + + + + + +· + + + + + + + + + + + +, + + + +, + + + + +, + + + + + + + + + + +, + + + + + +, + + + +· + + + + + + + + +, + + + +. + + + + + + + + + + + + + + + + + +, + + + + +, + + + + +. + + + + + + + + + +, + + +, + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +, + + + + + + +; + + + + + + + + + + + + +, + + + + + + + +. + + + + +, + + +, + + + + +· + + + + + + +, + + + + +. +, + + + + + + + + + + + +· + +, + + + + +, + + + + + + + +. + + + + + + + +, +, +, +, + +, + + + + + +, + + + + + + +· + + + + + +, + + + +· + + + + + + +, +, +, +, +, + + + + +· + + + +, + + + + + + + +, + + + + + + + + + + + + +, + + + + + +, + + +, +, +, +, +, + + + + + +. +, + + + + + + + +, + +, +, +, +, +, + + + + +, + + + + + +· + + + + + + + + +· + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + +· + + +. + + + + + + + +, + + +· + + + +, + + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + +, + + + + + +. + +, + + +, + + + +. + +, + + + + + + + +. + +, + + + + +, + + + + + +. + +, + + + + +, + + +. + +, + + + + + + +, + + +, + +, + + + + + + +. + + +, + + + + + + + + +, + + + + + + + + +. + + + +· + + + + + +, + + + +. + +, + + + + + + + +, + + + + + + + +. + + +, + + + + +, + + + + +, + + + + + + + +, + + + + +, + + + +, + + + + + + +. + + + + + +, + + +. + + + + + +, + +, + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +, + + + + + + +, + + + +· + + + + +. + + + + + +, + + + + +, + + + +, + + + +, + +, + + + + +, + + + + + + + + + + + +, + + + +. + + + + + +, + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + +. + + + + + +. + + + +. + + + +. + + + + + + + + + + + + + + +· + + + +. + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + +, +, + + +, + + + + +, + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +· + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + +, + + + + + + + +, + + + + + + + + +. + +, + +, + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + +, + +, + + + + + + + + +. + + + + + + +, + +, + + + +, + +, + + + + +, + + + + + +, + + + + + + +· + + + + + +, + + + + + + +· + + + + + + + + + + + + + + + + +, + + + +. +, +, + + + + + + +· + + + + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + +. + +, + +, + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + +, + + + + + + + + + + + +, + + + +, + + + +, + + + + + + +, + + + + + + +. + + + + + + + +. +, +, + + + + + + + + + +, + + + + + + + + +. + + + + +, + + + + + + +, + + + + +. + + + + + + + + +— + + + +— + + + + + + + + +; + + + + + + + + +. + + + + + + + +, + + +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + +· + + + + + +, + + + + +, + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + +, +, + + +, + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + +. +, +, + + + + + + + +, + + + + + + + + + + + + +, + + +, + + +. + + + + + + + + + +. + + + + + +, + + +, + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + + + + +· + + + + + + + + + + + +. + +, + +, + +, + + + + + + + + + + + +, + + +, + + + + + + + + + +. + +, + + + +, + + +, + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + +· + + + + + +, + + + + + + +, + + +, + + + + + + +, + + + + + + + + + + + + + + + + + +· + + + + + +. + + + + + + +. + +, + + + + + +, + + + + +· + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + +, + + + +. +, +, + + + + +, + + + + +· + + + + + + + + + + +. + + + + +· + + + + + + +, + + + +. + + + + +, + + + + +· + + + + +, + + + + + + + + +· + + + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + + +, + + +. + +, + +, + + + + + + + + + + + + +, + + + + + + + + + +. + + +. + +, + +, + + +, + + +, + + +, + + +. + + + + + + + +, + + + + + + + + + +. + +, + +, + + +· + + + + + + + + +. + + + +, + + +· + + +, + + +· + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + +, + + +. +, + + +. + + + + + + +. + + + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + + + +. +, + + + + + + +, + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + +, + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + +. + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + +, + + + + + + + + + +. + +, + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + +· + + + + + + + + + + + + +, + + + +, + + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + + + + + +; + + + + +, + + + + + + + +. + + + + +· + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + + +, + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +. + +, +, +, + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + +. +, + + +, + +, + + + + + + + + + + + +, + + + + + + + + +· + + + + +. + + + + +, + + + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + +. + +, + +, + + + + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + +, + + + + + +, + + + + + + + + + + + + + + +· + + + + +, + + + + + + + + + +. + + + + + +, + + +, + + + + + +, + +. + + + + + + +, + + + +· + + + + + + + + + + + + + + + + + +. +, +, + + + +. + + + + + + + + + + +, + +, + + +, + +· + + + + +, + + + +. + + + + + + + + + + + + + + +. + + + + +. + + + + + +, + + + + + +· + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +· +, +, + + + + + + + + + +. + + + + + +, + + +, + + + + + + + + + + +, + + + + + + + + + +· + + + + + + + + + + + + + + + +, + + + + + +, + + +, + + + + + + + + +. + + + + + +, + + + + +, + +, + + + + +, + + + +, + + +, + + +, + + +, +, +, +, +, +, +, + + + + +, + + + + + + + + + + +, + + +. + + + + + + + + + +, + + + + + + +, + + + + + + + +· + +, + + + + +, + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + +· + + + +· + + + +, + + + + + + + + + +, + + + + + + + + + +. + + + + +, + + + +, + + + + + + + +· +. + +, + + + + +, + + + + + +, + + + + + + +, + + + + +, + + + + + + +· + + + + +, + + + +, + + + +. + + + + + +, +, +, +, + + +, + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + +. + + +, + + + + + +, + + +, + + + + + +, + + + +· + + + + + + +, + + + + + +. + +, + +, + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + +, + + + + + + +, + +. + + + + + + +· + +, + + + + + +, + + + +. + + + +, + +. + + + +, + + + + + + +· + + + + +, + + + + + + + + + +. + + +· + + + +, + + +. + + + + +, + + + +, +, +, +, +, +, + +, + +, + +, +, +, + + + + +, + + + + + + +, + + + + + + + + +, + + + +; + +, + + + + + + +. + + + + + + + + + +, + + + + + + + + +. + + +, + +, + + + +, + +, + + + + + + + +. + + + + +, + + + +. + + +, + +, +, + + +. + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + +· + + +, + + + + +, + + + + + + + +, + + + + +. + + + + + + + +· + + + +, + + +, + +, + + +, + + +, + + +. + + + + + + + + + + + + +, + + + + + +, + + +, + + + +, + +, + +, + + + + + + + + + + + + + +. + + + + +, + + + + + +· + + + + + + +. + + + + + + + + +, + + + + + + + + + + +· + + + + + + +. + + + + +. + + + + + + + +· + + + + + + +, + + + + + + + +. + + + + + + +· + + + + + +, + + + + +, + + + + +, + +. + + + +. + + + + +, + + + + + + +, + +, + +, + +, + +. + + + + +, + +, + +. + + + + + +, + + + + + + + + + + +. + +, + + +, + + + + + + +. + + + + +, + +· + + + + + + + + + +. + + +, + + + +, + + +, + + +, + + + + + +. + + + + +. + + + + + + + +, + + + + + + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + + + + +· + + + + +. + + +, + + +. + + + + + + + + + +, + + + + + + +. + + + + + + +, + + +, + + + +, + +, + +, + + + +, + + +, + + + + +. + + + +· + + + + +, + +, + + + + + + +· + + + + +, + + +, + + + + + + + + +, + + + +. + + + +, +, +, + + + + + + +· + + + + + + +. + + + + +, + +, + + + + +, + + + + +. + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + +. + + + + +, + + + + + + + +. + + + + +, + + + + + +. + + + + + + + + + + + + + + + +, + + + +. + + + +, + + + +· + + +. + +, + + + + + + + + + + + +. + + + + + + + + +, + + + +· + + + + + + +, + + + + + + +. + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + +, + + +, + + +, + + + + + + + + +. + + + +. + + + + + + + +, + + + + + +, + + + + +, +, + +, + + + + + +, + + + +, +, +, + +, + + + + + + + + +, + + + + +. + + + + + + + +· + + + + + +, + + + + +· + + + + +, + +. + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + + + + + +. +, + + +, + + +· + + +, +, +, +, +, +. + + + + + +, + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +, + + + +, + +, + + + + + + + +· + + + + +· +. + + + + + + + + +, + + + + +, + + + + + + + + + +, +, + + + +, + +, +, + + + + + + +, + + + + +. + +, + + +, + + + + + + + + +, + + + + + + +. + + + +. + + + + + + + + + + + + + + + + +· +, +, + + + + + + + + + +. + + + +, + + + + + + +, + + + + + + + + + + + + + +, + + +, + + + +, + + +, + + + + + + +, + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + + + +, + + + + + + +, + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +· + + + + + +, + + +, + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + + + + +. + +, + + + + + + + +, + + + + +. + + + + + + +, + + + +, + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + +, + + +. +, + +, + + + + + + + + +, + + + + + + + +, + + + +, + + + + + +. + + + + + +. + + + + + + +, + + + +. + + + + +, + + + + + +. + + + + + + + +. + + +· + + + + + + + +. + + + + + +, + + +, + + + +· + + + + + + +, + + + + + + +. + + + + + + +, + + + + + + + + + + + +. + + +· + + +, + +· + +, + +· + +, + + +· + +, + + +, + + + + +. + +, + + + + + +, + + +, + + + +. + + + + + +, + +, + + + + +. + + + + +· + + + +, + + + + + + + + +· + + + + +, + + + + +, + + + +, + + + + +. + + + + + + +, + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + + + + + +· + + + + + + +, + + + +, +, + + +, + + + + +. + + + + +, + + +, +, +, + + + + + + + + +. + + + + + + +, + + + +· + + + + + + + + + + +, +, +, + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + +. + + +, + + + + + + +· + + + + +, +, +, +, +, + +, +, +, +, +, +, +, +, +, +, +, +, + + + +, + + + + + + + +· + + +. + + + + + + + + + + + + + +, + + +, + + + + + + + + +. + + + + + + + +, + + + + + +, + + + +, + + + +. + + + + +· + + + + + + +, + + + + +. + + + + + +, + +, + +, + +, + +, + +, + +, + +, + +, + + + + +, + +, + +· + + +, + + + + + + +. + + + + + + + + + + +. + + + + + + + + +, + + +. + + + + + + + +, + + + +, + + + + +, + + + + + + + + + + + + + +. + + + + + + +, + +, + +, + + + + +, + + + + + + +, + + + + +. + + + + + + +, + + + + + +, + + + + + + + +· + + +, + + +, +, +, +, + + + + +. + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +, + + + + +. + + + + +, +, + + +, + + + +. + + + +, + + + + + + +. + + + +, + + +, + + +· + + + + + + +, + + + + + + + +, + + + +, + + + + + + + + + + + +. + + + + +· + + + + + + + +, + + + +, + + +, + + +· + + + + +. + + + + +· + + + + + +. + + + + +. + +, + + + + + +, + +, + + +, + + +. + + + + + + +· + + + + + + + +· + + + +· + + + + + +. + + + + + + + +, + + + +· + + +· + + + + + + + +, + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + + +· + + + + + + + +, +. + + + + + + + +. + + + +, + + + + + +. + + + +. + + + + + + + + + + + + +. + + + + + +. + + + +. + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + +· + + + + + + + + + + + +. + + + + + + + + + +, + + + + +, + + + +, + + + +, + + +, + + +, + + + + + +. + + + + + + + +, + + +, + +, + +, + +, + +, + +, +, +, +, +, +, + + + + + + +, + + + + + + + + + + + + + +. + + + +, + + +, + + + + +, + +, + + + + + + + + + + + +. + + + + + + + + + +, + +, + +. + + + + +. + + + + + +, + + + + +, + + + + + + + + + +. + + + +· + + + + + + +, + + + + + + + + +. + +, + + + + +, + + + + + + + + + +. + + + + + + + +. + +, + +, +, + + +, + +, + +· + + + + +, + + + + + +, +, + + + + +, + +, +, +, +, +, + + + +, + + + + + + +. + + + + + + +, + + + + +, + + + +, +, + + +, + + + + + + + + + + +. + + + + + +, + +, + +, + +, + + + +, + + + + + + + + + + + +. + + + + + + + + +, + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + +. + + + + + + + + +· + + +. + + + + +, +, + + + + + +, + +, + +, +, + + + + + +. + + + + + +, +, +, + + + + +, + + + + +, +, + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + +. + + +, + + + + + +, + + + + + + + +. + + + + + + +· + + + + + + + + + + +· + + + + +. + + + + + + + +, + + + + + + +, + +. + + + + + + +, + + + + + +· + + +. + + + + + + + +, + + + +. + + + + + + + + + + + +, + + + +. + + + + + +. + + + + + +. + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +· + + + + + + + + + +, + + + + + + + +, +. +, + + + + + + + + +, + + + + +, + + + + + + + + + + +, + + + + + +, + + + +, + +, + + + + + + + + + + +, + + + +, + + + + +· + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + +. + + + + + + +, + + + +, + + + + + +, + +, + +, + + + + + + + + + +. + + + + +, + + + +. + + + + + + +, + + +· + + + + + +, + +· + + + + + + + + +. +, +, + + + + +· + + + + + +. + + + + + +, + + + + + + +. + + + + + +· + + + + + + + + +. + + + + + + + + +, +, +, +, +, + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + +, + + + + + +· + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + +, + + + +; + + + + + + +, + + + + + +; + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + +· + + + + + + + + + + + + + +, + + + + + + + + +. + + + + +· + + + +, + +, + + + + + + + + +. + +, + + +, + + +, + + + + + + + +· + +, + + +· + + +, + + + + + + +, + + + +· + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + +; + + + + + + + +, + + +. + + + + + + + + +, + + + + + + + +, + + + + + +; + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + +. + + + + + + + + + + +; + + + + + +; + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + +. + + + + + + + +· + + + + + + + + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + +· + + + + + + + +, + + + + + + + +, + + + + +· + + + + + + +· + + + + + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + +, + + +, + + + + + + + + +. + + + + + +, + + + +. + + + + + + +, + + + + + + + + + +, + + + + + + +. + + + + + +, + + + +. +, + +, + + +, + + + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + +. + + + + + + + + + + + + + + +, + + + + + + + +· + + + +, + + + + + + + + + + + +. +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +· + + + + + + +, + + + + + + + + + + + +. +, +, + + + + + + + + + + + + + + +, + + + + + +, + + + + +, + + + + + + + + +· + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + +; + + + + + + + + +; + + + + +; + + +, + + + + + + +; + + + + + + + + + + + + +; + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + +· + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + +, + + + + + + + +, + + + +, +, + + + + + +, + + + + + + + +, + + + + +. + + + + +, + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + +, + + + +, + + + + + +· + + + + + + +, + + + + + + + +, + + + + +. + + + + + + +, + + + + +, + + +. + + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + +, + + + + + +, + + + + +, + + + +, + + + +, + + + + + + +. + + + + + + +, + + + + +, + + +. + + + + + + + + +, + + + + + + + + +, + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + +, + + + + + +, + + + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + + + + + + +, + + + + +, + + +. + + + + + + + +, + + +· + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + +, + + + +, +, + + + +, + +, + + +. + + +, + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +, + +, + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + +· + + + + + + + + +, + + + + +. + +, + + +, + + + + +, + + + +. + + + + + + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + + +. + + + + + +, + + + + +, + + + +, + + + + + + + + + +· + + + + + +. + + + + + +, + + + + + + + + +· + + + + + + + + + + + + + + + + + +, + + + + +, + + + + +, + + + + + + + + +· + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + + + + +. + + + +, + +, + + + + +, + + + + + + + + + + + +, + + + + + + +, + + + + +, + + + + +, + + + +, +, +, +, + + + + + + +, + + + + + +, + + + + +. + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + +· + + + + + + + +, + + + + + +. + + + + + + + + + +. + + + + + + +, + + + + +. + + + +, + + + + + + + +· + + + + + + + + + + + +. + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + +; + + + + + + + + + +. + + + + +, + + +, + + + + + +· + + + + + + + + +, + + + + + + + +. + + + + +, + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + +, + + + + +. + + + + + +, + + +ἱ + + + +, + + + + + + + + + + + +, + + + + + + + +· +ὰ + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +. + + + + + +, +, +, +, + + + +, + + + + +· + + + + + +, + + +, + + + + + + +, + + + +· + + + + + +. + + + + + + + +, + + + + + + + + + + + + + +. + + + + +, + + +, + + + + + + + + + + +, + + + + + + + +, + + + +, + +. + + + + + + + + + + +· + + + + + + + +. + + + + + +, + + + +, + + + + + + +· + + + + + +, + + + + + + + +. + +, + + + + + + + + + + + +· + + + +, + + + + +, + + + + + + +. + + + + + + +, + + + +. + + + + + + + +, + +, + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +, + + +, + +. + + + + + + + + + + + + +, + +, + + + + + + +, + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + +· + + + + + + +. + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + +, + + +· + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + +, + + + + + + + + +, + + + + + +, + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + +, + + + + + +. + + + + + + +, + + + + + + + +, + + + + + +, + + + + + +, + + + + +, + + + + +, + + +. + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + +, + + + + +· + + + + +, + + + + + + + +. + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + +. + + +, + + + + + + +, + + + + +, + + + + + + + +· + + + + +, + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +, + + + +, + + + + + +, + + + + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + +· + + + + +, + + + + + + + + + + +; + + + + + + +· + + + + + + + +. + + + + + + + + + + +, + + + +· + + + + + +. + + + +, + + + + + + +, +, + + + + +. + + + + + + + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + +· + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +. + + + + + + + +· + + + + + + + + + + + + + + +, + +· + + + + + +, + + + + + + +, + + + + + + + + + + + +. + + + +, + + + +. +, +, + + + + + + + + + + +, + + + + + + + + + +, + + + + +, + + + + + + + +, + + + + + + +, + + + + + + + + + + + +· + + + + + +, + + + +, + + + + + + + + +, + + + + +, + + +, + +, + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + +, + +· + + + + + + +. + + + + + + +. + + + + +, + + + + + + +, + + + + + + +, + + + + + + +. + + + + +, + + + + + + + + +, + + + + + + +. + + + + + +, + + + +. + + + + + + + + + + + + +. + + + + +, + + + + + +· + + + + + + +, + + +, + + + + + + +. + + + + + + +, + + + + +. + + + + +, + + + +. + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + +, + + + + + +. + + + + + + +, + + + + + + + +. + + + + + + + +· + + + + +· + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + + +. + + + + + + + +, + + +, + + + + + + + + + +· + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + + +. + + + + +, +, + + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + +, + + + + + +, + + + + + + + + + +. + + + + + + + +. + + + + + + + +, + + + +· + + +, + + + +. + + + + + + + +· + + + + +. + + + + + +, + + + + + + + +, + + + + + + + + +, + + + + + + + + +· + + + + + +. + + + + + + + + + + +. + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + +· + + + + +. + + +, + + + + + +· + + + + + +. + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + +. + + + + + + + +, + + + + +. + + + +; + + + + + + + +, +, +, +, + + + + + + +, + + + + +, + +, + +, + + +, + + +, + + +, + + +, + + + +, + +. + + + + + + + +· + + +, + + + +, + + + +· + + + + + + +, + + + + +· +, +, +, + + + +, + + +, + + +, +, +, +, + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + +, + + + + + + +, + + + + +. + + +, + + + + + +, + + + + + + +, + + + + + + +, + + + + + + + + +, + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + +, + + + +, + + + + + + +, + + + +, + + + + +· + + + + +, + + + + + +. + + +· + + + + + +· + + + + + + +; + + + + +, + + + +, + + + + + +. + + + + + + + + + + +· + + + + + + + + + +; + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + +, + + + + + + +, + + + + +, + + +. + + +, + + + +, + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + +, + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + +, +· +, + + + + +, + + + + + +· + + + + + + + +, + +, + + +, + + + + + + +, + + +, + + + + +, + + + + +, + + + + + + + +. + + + + +· + + + + + + + + + +, + + + + + + + +· + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + +. + + + + + +, + + + + + +, + + + +· + + + + + + +. + + +. + + + +· + + + + + + +. + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + +. + + +, + + +· + + + + + + + + + + + +· + + + + + + +, + +· + + + +; + + + +, + + + + + + +, + + + + + + + + +. + + + + + + + + + + +. + + + + + +· + + + + + +, + +, + + + + + +. + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + +. + + +, + + + + + + + +, + + + +. + + + + + + +, + + + +· + + + + + +, + + + +. + + + + + + + +, + + + + + + + + + +. + + + + + + +· + + + + + +. + + + + + +· + + + + + + + + + +· + + + + + + + +· + + + +. + + +· + + + + + +, + + + +. + + + + + +, + + + +. + + + + +, + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +· +. + + +, +, + + + + +· + + + + + +. + + + + + +, + + + + + + +. + + + + + + + + +. + + + + + +. + + + + +. + + + + + + + + + + + + + + +. + +, + + +, + + +, + + + + + + + + + +. + + + + + +, + + + + +, + + +. + + + + + +, + + + + + + + + +, + + + +. + + + +, + +· + + + + + + + + +. + + + + + + + + + + + +, + +, + + + + + +. + + + + + + + + + +, + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +· + + + + + + + + +. + + + + +, + + + + + + + +, + + + + +. + + + + + + +· + + + + + +, + + + +. + + + + + + + + + +· + + + + + +, + + + + + +. + +, + + +. + + + + + + + + + + + + + + +, + + + + + + + +. + + + + +, + + + + + + + + +. +, + + +. + + + + + + + +, + + + +, + + +· + + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + +, + + + + + +. + + + + + + + + +, + + + + + + + + + + +· + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + + +. + + + + +, + + + + + + + +, + + +. + + + + + + + + + + +, + + + + + + + + +, + + + + + +. + +, + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + +; +, + + +. + + + + + + + + + + + + + + + + + + + +; + + + + +. + + + + +, + + + + + +; + + + + + + + + + +; + + + + + + + + + + + + + +, + +· + + +, + +, + + + + + +. + + + + + +, + + + +, + + +. + + + + +, + + + +· + + + +, +, + + + +. + + + + + + + + + +. + + + + + + + + +· + + +. + +, + + +, + + + + + + + + +; + + + + + +; + + + + + + + + + + +, + + + + + + + + +, + + +, + + + + + + + +, + + +; + + + +, + + + +, + + + +. + + + + + +, + + +· + + + + + + + +, + + + + + + + + +. + + + + + + +; + +· + + + + + +. + + + +, + +, + + + + + + + +; + + + + + + + +, + + + + + + + +; + + + + + + + +, + + + + + + +, + + + + + + + + + + +, + + + + +, + + + +. + + + + + + + + + + +. + + + + + + + + + +, + + + + + + +; + + + + + + + +, + + + + + + + +. + +, + + + +, + + + + +. + + + +· + + + + + +, + + +, + + + + + +. + + + + + + + + + + + + + + +, + + + + + +. + + + +, + + + + + + +, + + + + + + + + + +· + + + + + + + + + +. + + + + + +· + + + +, + + + +, + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + +· + +, + + +. + + + + + + +, + + + + + + + + + + +· + + + + + + + +. + +, + +, + + +. + + + + + + + + + + + + +; + +, + +, + + + + + +; + + + + +. + + + + + +; + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + +, + +, +, +· + + + + +, + + + + + +. + + + + + + + +, + +, +, +, + + + + +, +, +. + + + + + + + + +. + + + + + + +; + +, + + + + + + + + + +; +, + + +· + + +, + + + +· + + +. + + + + + + +· + + + +, + + +, + + + + + +. +, + + + + + + + + + + +; + + + + + + + +, + + + +. + + + + + + + + + + + + + + + +; + + +· + + + + + + +, + + + +. + + + +· + + + +, + + + +· + + +, + + +. + +, +, + + +, +. + + + + +· + + + + + + + + + + +. + + +, + + +. + + +, +. + + + + + + + + + + + + +· + + + +, + + + + + +. + + + + +, + + + + +· + + + +, + + + +; + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +· + + + + + + +, + + +· + + + + + + + +, + + + + + + +. + + + + + + +· + + + + +. + + + + + + +, + + +. + + + +, + + + + + + + +. + + + +, + + + + + +, + + + + + + +, + + + + + + + + + + + + + + +. + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + +. +, + + +· + + +. +, +, + + + + + +. + + + + + + + + +, + + + + + + + +. + + +, + + + +, + + + + + +. +, + +, + +, + + +· + + + + + + +. +, +, + + + + + + + +, + + + + + +. + + + +· + + + +, + + + + +, + + + + + + +. +, + +, + + + +, + + + + + + + + + +· + + + + + +, + + + +, + + + + +. + + + +; +· + +; +. + + + +; + + + + +, + + + + + + + + + + +. + + + + + + + +, + + + + +· + + + +, + +. + + + + +, + + + +, + +. + + + + +. + + + + +, + + + + + +, + + + + + + + + + + +· + + +, + + + + + + + + + + + +. + +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + + + + + +, +, +, +, + +, + + + +, + + +, + + + + + + +· + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + + + + + + + + +. + + +, + + + + + + + +, + + + + + + + + + +, + + + +, + + + + + + + + + + +· + + + +, + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + + + + + +, + + +. + + + + + + + + +, +, +, + + + + + + + + + +. + + +, + + + + + + + + +, + + + + + + + + + + + + +, + + + +, + + +. + + + + + + + + + + +, + + + + + + + +, + + + +, + + +, + + + + + + +, + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + +, + + + + + + +, + + + + + +. + + + + +, + + + + + + +· + + +, + + + +· + + + + + + + +. + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + + + +, + + + + + +. +, + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + +, + + + + + + + +. + + + + + +· + + + + + + +, + + + + + + + + + + +· + + + + +, + + + +· + + + +, + +, + +, + + +, + + + + + + + + + + + + + +· + + + +, + + + +, + + +, + + +. +, + + + + + + + + +, + + + + +· + + + + + + + +, + + + + + + +, + + + + + + + + + + +. + + + +· + + + + + + +, + + + + + + + + + + + +· + + + + + + +, + + + + + + +· + +, + + + + + + + + +, + + + +. + +, + + +, + + +, + + +. + +, + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + +; + + + + + +, + + + +. + + + +, + + + + + +, + + + + + + + +· + + + + + + + + + + +· + + + +, + + +, + + + + +· + + + + + + + + + + + + +, + + + + + + +· + + + +. + + + + +, + + + + + + + + + + +. +, + + + + +, + + + + + + +, + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + +, + + +· + + + + + + + + +. + + + + + + + + + + +, + + + + + + +, + + + + + + +. + + + + +, +, +, +, +, + + + + + + + + +, + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + +· + + + + + + + + + + +, + + + + + +. + + + + + + + + + +; + + + + + +, +. + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + +, + + + + +, + +, + + + + + + + + + + + + + +. + + +, + + + + + +, + + +. + + + + + + +, + + +, + + + + +, + + + + + +· + + + +, + + + + + + + + + + + + + + + + + +, + + +, + + + +, + + +. + + + + + + +, + + + + + + + + + +, + + + +, + + + + +, + + +, + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + +, + + +, +, +, +, +, + + +. + + + + + + + + + + + +, +· + + + + + + + + + +. + + + + + +, + + + + + +, + + + + +. + + + + +. + + + + + +· + + + + + + + +, + + + + +· + + + + +· + + + +, + + + + + + + + + +· + + +, + + +· + + +, + + + + + + +· + + + + + + + + +, + + + + + + + + + + + +· +. +, + + + + + + + + + +, + + + +, + + + + + + + +, + + + + + + + + + +. + + + + +, +, + + + + + + + + + + + +. + + + + + + + + + + + + + +· + + + +, + +, + + + + + + + +. + + + + + + + + + + + +· + + + + +, + + + + + + + + +; + + + + + +, + + + + + +; + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + + + +, + + + + + + +, + + + + + +, + + + +, + + + + + + + + + +· + + + + + + + + + +. +, +, + +· + + + + + +, + + + + +, + + + +. + + + + + + + +, + + + + +, + + + + + + +, + + + + +. +, +. + + + + + + + + + + +· + + + + +, + + + + + + + + + + + +. + + + + +, + + + + + + + + + +, + + + +, +, +, +. + + + + + + + +· +. + + + + + +, + +, + + +, + + + + + + + + +, + + +. + + + + + + + + + + +. + + + + +. + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +· + + + + +, + + +, + + + + + + + +. + +, +, + + + + + + + +· + + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +. + + +, + + + + + + +, + + + +, + + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + +, + + + + + + + + + + +· + + +, + + + + + + + +· + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + +, + + + +, + + + + + +, + + + +· + + + + + +, + + + + + + +· + + + + + + +· + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + +, + + + + +, + + + + + +, + + + +, + + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + +. +, +, + +, + + + + + + + + + + + + + + + + +. +, + + + + + + + + + +, + + + +, + + + + + +, + + +· + + + + + +, + + + + + + + + + +, + + + + + + +, + + +, + + + +, + +· + + + +, + + + + + + +, + + + +, + + + +· + + + + + + + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + +, + + +, + + + + +· + + + +, + +. + + + + + + + + + + + + + + +, + + + + +, + + + + + + +. + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + +. +, +, + + +, + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + +, + + + + + + + + + + + + + + + + + + + + + + + +; + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +· + + + + + + + + + + + + + + + + + + + + + +. + +, + + + + +, + + + + + + + + + + + + + +. + + + + +, + + + +, + + + +, + + + + + + + + +. + + + + + +, + + + + + +, + + + +, + + + + + + + +. + + + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + +· + + + + + + + + + + +, + + + +. +, +, + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + +. +, +, + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + +. + + + +, + +, + + + + +, + + + + + + +, + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + +, + + +, + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +, + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + +. + + + + +, + + + +, + + + + + + + + + + +. + + + + +, + + + + + + + + + + +. + +, + + + + + +. + + + +, + + + + + + + +· + + + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + + +. + + + + +, + + + + + +, + +, + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + +· + + + + + + + + + + + + +. +, + +, + + + + + + + + + +· + + + + + + + + +. + + + + +, + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + +· + + + + + + + + + + + + + + +, + + + + +, + + + + + + +. +, + +, + + + + + + + + +. +, + +, + + + + +· +, + +, + + + +. +, + +, + + + +. +, + +, + + + + +. +, + +, + + + + + + + + + + + + + + +. + + + + + + + + +. + + + + +, + + + + + + + +· + + + + + + +, + + + + + + + + + + + + + +, + + + +, + + + + +. + + + + + + + +· + + + + + + + + + + +. +, + + +, + + + + + +, + + + + +· + + + + + +. + + +, + + + + +· + + + + +, + + + +· + + + + + + + + +. + + + + + + +, + + +. + + + + + + + +, + + + +, + + + + + + + + +. + + + + + + + + + + + + + +; + + + +, + + + + + + +. + + + + + + + + +· + + + + + + + +. + + + + +, + + +. + + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + +. + + + + + + +. + + + + + + + + + + +, + + + + + + + +· + + + + + + + + +, + + + + + + +, + + + +, + + +. + +, +, + + +, + + + + + + + + + + + + + +. + + + + +, + + + + + + + + + + +. + + + + + + + + + + +, + +. + + + + + + +, + + + +. +, + + + +, + + + + +. + + + + + + +, + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + +. + + + + + + +· + + + + + + + + +. +, + + +· + + + + + +, + + + +· + + + + + + + +, + + + + + +. + + + + + + +, + + + + + +. + + + + + + + + +, + + + + + +· + + + +, + + + + +. + + + + + + + + + + + + +· + + + + + + + + + +, + + + + + + +. + + + + + + + + +, + + +· + + + + + + + + + + + +· + + + + +; + + + + + +, + + + + + +. +, + +, + + + + +. + + + + + + + + + +, + + + +· + + + + + + +. + + + + + + + +, + + + + + + + + + + + +. + + + + +, + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +; +, + + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + +. +, + + + + +, + + + + +, + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + + +, + + + + + +. +, + + + +, + + + + + + + + +, + + + + + + +. + + + + + + +· + + + + + + + + + + + + +, + + + + + + + + + + + + +· + + + + + +, + + + +, + + + + + + +. +, + + + + +, + + +, + + + + + + + + + + +. + + + + +· + + + + + + + + + + +. + + + + +· + + + + + +, + + + + + + + + +. + + + + + + + + + + + +. +, + +, + + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + +, + + + + + +, + + + + + + + + + + + + + + +. +, + + + + + +, + + + + +. + + + +· + + +, + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + +. + + + +, + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + + +, + + + + +, + + + + + + + +. + +, + + + + +. + + + + + + +, + + + + +, + +· + + + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + +· + + + + + + +, + + + + + + + + + +· + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + +; + + + + + + + +, + +· + + + + +, + + + + + + + +· + + + + + +, + + + + + +. + + + + +, + + + + + + + +, + + + + + + +. + + + + + +, + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + +. + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + +· + + + + + + + + + + +. + + + + + + + + + + + +. + + + + +, + + + + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +, +, + + +, + + + + + +. + + + +· + + + + + +. + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + +, + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + + + +· + + + + +, + + + + + +. + + + + + + + +. +, + + + + +. + + + + + + + +, + + + +, + + + + + + + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + +, + + + +. + + + + + + + + + + +, + + + + + +. + +, + + +, + + + + + +, + + + + +, + + +. + + + + +, + + + + + +· + + + +, + + + +, + + + +. + + + + +, + + + + + + + + + +· + + + + + + +. + +, + + + + +, + + + +. + + + + + + + + + + + + + +· + + + + +, + + + + + + + +. + + + + + + + + + + +, + + + + +, + + + + +· + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + + +. + + + + +, + + + + +. +, + + + + + + +, + + + + +. + + + + + + + + + +, + + + + +. + +, + + + + + + + + + + + +. +, + + + + + + + + + + +, + + + + + + +, + + + + + + +· + + + + + + + + + +. + + + + + +, + + + + +. + + + +· + + + + + + + +. + +, + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +. +, + + + + + + +. + + + + + +· + + + + + +. + + + + + + + + +· + + + +, + + + + + + + +. + + + +, + + + + + + + + +· + + + + +, + + + + +. + +. + + + +. + + + + +. + + + +, + + +, + + + + + + + + + +. + + + + + + +. +, + + + + + + + + + +, + + + + + + + + + + + +. + + + +, + + + + + + +, +, + + + + + + + + + + + + + + + + + +. + +, + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + + +, + + + + + +. + + + + + + + +, + + +, + + +. + + + + + + + + + +, + + + + +, + + +, + + + + + +. + + + + + + +, + + + + + + + +, + + +. + +, + + + + + +, + + + + + + +, + + + + + +. + + + + + + + + + +, + +, + + + + +, + + + + + +, + + + + + + +, + +, + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + +, +, + + + + +, + + + + + +, + + + +. +, +, + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + +, +, + + +. +, +, + + + + + + +, + + + +, + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + +· +. + + +, + + + + +, + + + + + + + +, + + + + + + + +, + + + +, + + + + + + + + + + +, + +. + + + + + + + + + + + + + + + +· + + + +. + + + + + + + +· + + + + + + + + + + + + +, + + + + + + + + + +, + + + +, + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + +, + + + + + +, + + + + + + + + + + +· +. + + + + +, + + + + + + + + +, + + + + + + + + +. +, +. + + + + + + +, + + + +, + + + + + + + +, + +. + +, + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +· + + + + + +, + + + + + + + +, + + + + + + + + +· + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +, + + + + + + + +, + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + +. + + + +, + + + + + + +· + + + + + + + + + +· + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + +· + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + +, + + + +· + + +, + + + + + +, + + +. + + + + + + + + + + +. + + + +, + + + + + + +· + + +, + + + + + + + + + + +, + + +. + + +, + + + + + +, + + +. + + + + + + + + + +. + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + +, + + + + + + + + +, + + + + + + +. + + + +. + + + + + + + + + + + +, + + + + +. + + + +, + + + + + + +. + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +· + + + + +· + + + + +, + + + + + + + + + + + + + + + + +, + + + +, + + + +. + + + + +, + + + + + + +, + + + + + + + + + +, + + + +. + + + + + + + + + +. +· + + + +, + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +, + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + +, + + + + + + + + + + +· + + + + + +, + + + + + + + +. + + + + +, + + + + + + + +, + + + + + + +· + + + + + + +· + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + +, + +, + + + + + +· + + + + + + + +. + + + + + + + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + +, + + +. + +, + + + + + + +· + + + + + + + + + +· + + + + + +, + + + +. + + + +, + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + +. + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + + + +, + +, + + + + +, + + + + +, + + + + + + + + +· + + + + + +, + +· + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + + +, + + + + +· + + + + + + + + + + +, + + + + + +. + + + + + + +, + + + + + + + + + + + + + + +, + + + + + +. + +· + + +, + + + + + +. + +, + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + +. + + + + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + + + + +, + + + + + +. + + + + +. +, + + +, + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + +. + + + + + + +· + + + +. + + + + + + +· + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + +. + + +, + + + + + + +, + + + + + + + + + + + +, + + +, + + + + + + +. + + + + +· + + + + + + +, + + + + +, + + + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + +· + + + + + + + +, + + + + + + +· + + + + + + + + +· + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + +, + + + + + + + + +, + + + + + + +. + + + +, + + + + + + + +, + + + + +· + + + + + + + + + + + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + +, + + + + + + + +, + + + + + + +, + +, + + + + + + + + +, + + + + +, + + + + + + + +. + + + + + + + + + + + + + + +, + + +. + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + + + + + + + + + +. + + +, + + + + + + + + + +. + + + + + + + + +· + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + +, + + + + + + + + + + + +, + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + + +. + +, + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + +. + +, + + + +, + + + + + + +, + + + +, + + + + + +. + + + + + + +, + + + + + +. + + + + +, + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + +, + + + + + +. + +, + + + +, + + + + + + + + + + +. + + + + + + + + + + + + +, + + + + +· + + + + + + + +. + + + + + + +, + + + + + + +. + +, + + + +, + + + + +, + + + +, + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + +, + + + + + + + + + + + + +; + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + +, + + + +, + + + + + + + +, + + + + + + +, + + + + + + + + +, + + + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + +, + + + +; + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + +, + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + +. + + + + + +, + + + + + + + + + +· + + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + +, + + + + + +. + + +, + + + +, + + + + +, + + + + + + + + +, + + + + + + + +, + + +, + + + + + +· + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + +· +. + + + + + + + + + + + + + + + + + + + +; + + + + +, + +. + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + +, + + + + + + + + +. + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + +· + + + + + + + + + +. + + + + + + +, + + + + + + +. + + + + + + + + + +, + + + + +. + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + + + +. + + + +· + + + + + + + + + + + + +· + + + + + +, + + + + + +, + + + + +. + + + + +· + + + + + + + + + +· + + + + + + +, + + + + + + + + + +, + + +, + + + + + +. + + + + +· + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + +. + + + + + + + +, + + + + + + + + + +. + + + + +· + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + +. + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +· + + + + + + + + + +, + + + + + + + + +. + + + + + +· + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + +, + + + + +· + + + + + + +, + + +. + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + +, + + + + + + + + +, + + + + + + +, + + + + + +, + + + + + + +, + + + + + +, + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + +. + + + + +· + + + + + + +. + + + + +· + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + +· + + + +. + + + + + + + + + + + + +, + + + + + + +· + + + + + + + +, + + + + + + + + + + +. + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + +, + +, + + + +. + + + + +, + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + +, + + + + + + +, + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + +, + + + + + + +. + + +, + + + + + + +. + + + + + +, + +· + + + + + + + + + + + + +, + + + +. + + +, + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + +, + + + + + + + + +, + + +, + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + +, + + + + + +. + + + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + + + + + + +· + + + +, + + + +. + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + +. + + + + + + + + + + + + +, + + + +, + + + + + + + + +. + + + + + +, + + + + + + + +. + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + +· + + + + + +, + + + +. + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +. + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + +, + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + + +· + + + + + + + +, + + + + + +. + + + + + + + +, + + + + + +, + + + + + + + + +, + + + + + + + + + + + +. + + + + +· + + + + + + +. + + + + +· + + + + + + +, + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + +, + + +, + + + + +, + + + + +, + + + + + + + + +· + + + +, + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + +, + + + +, + + + + + + +, + + + + + + + +, + + + +, + + + + + +. + + + + + + +, + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + +. + + + + + + + + + +, + + + + + + +. + + +, +, + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + +, + + + + + + + +, + + + + + + + +. + + + + + +, + + + + + + + + + + +. + + + + + + + +, + + +, + + + + + + + +. + + + + + +, + + + +, + + + + + +, + + + + +, + + + +, + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + +. + + +, + + + + + +· + + + + + +, + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + +. + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + +. + + + + + +, + + + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + +, + + + + + + + + + + +· + + + + + + +. + + + + + + +, + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + +, + + + + + + +. + + + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + +. + + + + + + + +, + + + + + + + + + +, + + + + + + + + +, + + + + + +; + + + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + + + +, + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + +. + + + +, +. + + + +, + + +· + + + + +, + + + + +. + + + + + + + + +. + + + + + + + +, + + + + + +, + + + +. + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +. + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +, + + + + + + + + + +, + + + + + + + +. + + + + + + + + +, + + + + + + +, + + + + + + + + + + + +. + + +, + + + + +, + + + + + +, + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +. + + + +. + + + + + + + +· + + + +. + + + + + + +. + +, + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + + +· + + + + + + + + + + + + +, + + + + +. + + + + + + +· + + +. + + + + + + + +· + + + + + + + + + + +, + + + + + + + +· + +. + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + +· + + + + + + +, + + + + + + +, + + + + + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + + + +. + +, + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +. +, + + +, + + + + + +· + + + + + + +. + +, + + + +, + + + + + + + +, + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + +, + + + + +, + + + + + +. + + + + + + + + + + + + +, + + + +. + + + + + + + + + + +, + + + + +. + + + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + +, + + + + + + + + + + +, + + + +. + + + + + + + + + +, + + + + + + +, + + + + + + + +. + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + + +, + + + +. + + + + + + + + + + + + + +, + + + + + + +, + + + + +· + + + + + +, + + + +· + + + +, +, + + + + +; + + +, + + + + + + + + +, + + + + +. + + + +, + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +· + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + +· + + + + +, + + + + + + + +. +, + + + + + + + + + + + + + + +· + + +. + + + + + + + + +, + + + + +, + +, + + +, + + + + + +, + + + + +· + +. + + + + + +, + + + + +, + + + + + +. + + + + + + + + + +· + + + + + + + +. + + + + + +, + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +· + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + +· + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + +· + + + + + +, + + + + + + + +, + + + + + + + + + + + + +. + + + +· + + + + + + + +, + + + + + + + + +. + + + + + + + + + +. + + + + + + + + + +· + + + + + + + + + + + +. + + + + + + +, + + +, + + + + + + + + + + +, + + + +. + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + + +. + + + +, + + + +. + + + + + + + + + + + +· + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +, + + + + + +, + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + + + +. + + + + + + +. + + + + + + +, + + +, + + + + + +. + + + + + + + +, + + + + + + + +, + + + + + + + + + + + + + + +, + + + + + +, + +, + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + +. + + + + + + + +; + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + +· + + + + + + +, + + + + + + + + + + + + +, + + + + + + + + + +. + + + + + +. + + + + + +, + + + + + +. + + + +· + + +, + + +, + + + +, + + + + + +. + + + + + + + + +, + + + + + + + + +, + + + +. + + + + + + +, + + + + + +, + + + + + + + + + +. + + + +, + + + + + + + + +. + + + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + + +, + + + +, + + + + + + + +. + + + + + + + + +, + + + +, + + + + + +, + + + + +, + + + + +· + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + + + + +. + + + + + + + + +, + + +, + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + + + + + + +, + + + + + + + + + + + + +, + + + + + + + +, + + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + +, + + + + + + + +· + + + + + + + +, + + + + + + +. + + + + + +, + + + + + + + +· + + + + + + + +· + + + + +, + + + +. + + + + + + + + + + + + + + +, + + + + +· + + + + + + + + +, + + + + +, + + + +· + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + +, + + +, + + + +, + + + + +, + + + + + + +. + + + + + + + + + +, + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + + + +, + + +. + + + + + + + + + + +, + + + + + + + + + +, + + + + + +. + + +, + + + +, + + + + + + + + + + + +, + + +, + + + +, + + + + + + +, + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +; + + + + + + + + + + + +, + + +, + + + +, + + + + + + + + + + + + + + +, + + + +. + + +, + + + + + + + + + +, + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + +, + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + +, + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + +· + + + + + + + + +, + + + + + + + + +, + + + + + + + + + + + + + + +. + + + + + + + + + + + + +· + + + + + + + + + + +, + + + + + + +· + + + + + + + + + + + + + +, + + + + + + + + + +. + + + +· + + + + + + + + + +. + + + + + + + + + + +, + + + + + + + + + + +, +. + + + + + + + + + + +, + + + +, + + +, + + + + +. + + + + + + + + + + + + + + + +, + +, + + + + + + + +. + + +, + + + + +, + + + + + +, + + + + + +, + + + + + + + +· + + + + + + + +. + + + + + + + + + + + + + +. + + + + + + + + + +. + + + + + + + +. + + + + +· + + + + + + + + + + + +· + + +· + + + + + + + + +. + + + + +, + + + +, + + + + + + + + +, + + + + + +. + + + + + +, + + + + + + +, + + + + + + + + +, + + + + +, + + + + + + + + +. + + + + + + + + + + + +, + + + +. + + + + + + + +, + + + + + +· + + + + + + +· + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + +. + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + +· + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + + + + + +. + + + +, + + + +, + + + + + +, + + + + +, + + + + + +, + + + + + +, + + + + + +, + + + + +· + + + + + + +. + + +, + + + +, + + + +, + + + + + + + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + + + +· + + + + + + + + +. + + + + + + + + + + +. + + + + +. + + + + + + + + + + +· + + + + + + + +, + + + + + + + +, + + + + + + +. + + + + + +, + + + + + + +, + + + + + + + + + + + +, + + + +, + + + + +, + + + + + + + + +. + + + + + + +, + + + + + + + + + + +· + + + + + + + + +· + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + +, + + + + +. + + + +, + + + + +, + + + +, + + +· + + + +, + + + +· + + + + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + +. + + + + + + + + +. +, + + + + + + + + + + +, + + + + + +. + + + + + + +· + + + + + + + + +, + + + + + +. + + + + + + + + + + + + + + +, + + + + + + +. + + + + + + + + + + + + + + + +, + + + +, + + + + +, + + + + + + +, + + + + + + + +, + + + + + +, + + + + + + + + +· + + + +. + + + + + + + + + + +. + + +, + + + + + + + +. + + + +. + + + + + +, + + + + +. + + + + + + + + + + + +. + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +, + + + + + +. + + + + + + + + + + + +, + + + + + + +, + + + + + +, + + + + + + + +. + + + + + + + + + +, + + + + + + + + + + + + + + +, + + + + +· + + + + + +, + + + +· + + + + +, + + +, + + + + + +, + +, + + + + + + + +. + + + +, + + + + +, + + + + +, + + + + +. + + + + + + + +, + + + + + + + + + +. + + + + + + + + +, + + + + + + + + + + + +. + + + + +, + + + + + + +. + + + + + + + + + +· + + + + + + + + + + +. + + + + + + + + +, + +, + + +. + + + + + + +, + + + + + + + +. + + + + + + + + + +· + + + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +, + + +. + + + + + +· + + + + + + + + +. + + + + + + + + + +. + + + + + +· + + + + + + + + + +. + + +, + + + + + + + + + + +, + + +· + + + + + + +, + + + + + +. + + + + + + + +, + + + + + + + + + + +· + + + + + + + +, + + + + +· + + + + + + + + + + +. + + + + + + + + + + + + + +, + + + + + + + + + + +. + + + + + + + + +, + + + + + + + + +. + + + + + + + + + + + + + + + +, + + + + + + +, + + + + + + + + +. + + + + + +. + + + + + + + + + + +, + + + + + +, + + + + +, + + + + + + + +. + + + + +, + + + + + + + + +, + + + + + + +, + + + + + + +. + + + + + + + + +, + + + + + + + + + + + + + + + + + + + + +. + + + + +. + + + + + + + + + +. + + + + + + +. + + + + +, + + + + + + + + + + +. + + + + +· + + + + + + + + + + + + + + + + +· + + +. + + + + + + + + + + + +· + + + + +. + + + +, + + + + +, + + + + + +, + + + + +. + + +, + + + + + +, + + + + + +. + + + + + + +, + + + + +, + + + + +. + + + + + +, + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + +. + + + + + + + +, + + + +, + +. + + + + + + + +. + + + + +. + + + +, + + + + + +. + + + + + + + + + + + +· + + + + +, + + + + + + + + + + + + +· + + + + + + + + + + + +, + + + + + + + + + + + + + + + + +, + + + + + +. + + + + +, + +. +, + + +. + + + + + + +. diff --git a/tf/0.1.1/appositioncontainer.tf b/tf/0.1.1/appositioncontainer.tf new file mode 100644 index 0000000..c3201c8 --- /dev/null +++ b/tf/0.1.1/appositioncontainer.tf @@ -0,0 +1,1922 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Apposition container +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +154027 true +true +true +154084 true +154181 true +154188 true +154224 true +154229 true +154244 true +154264 true +154356 true +154385 true +154419 true +154430 true +154498 true +154509 true +154601 true +154626 true +154631 true +154697 true +154731 true +154752 true +154808 true +154981 true +155082 true +155121 true +155152 true +155164 true +155169 true +155182 true +155221 true +155224 true +155228 true +155255 true +155259 true +155263 true +155269 true +155322 true +155462 true +155528 true +155985 true +156057 true +156112 true +156165 true +156174 true +156215 true +156324 true +156333 true +156406 true +156615 true +156743 true +156781 true +156799 true +156891 true +157290 true +157648 true +158129 true +158135 true +158141 true +158145 true +158152 true +158155 true +158160 true +158163 true +true +158188 true +158574 true +158589 true +158869 true +158893 true +158952 true +158990 true +159025 true +159054 true +159352 true +159357 true +159444 true +159690 true +159721 true +159885 true +160057 true +160501 true +160702 true +160805 true +160815 true +160837 true +160840 true +160893 true +161055 true +161500 true +161530 true +161566 true +161729 true +161937 true +161956 true +161958 true +161962 true +161974 true +161982 true +162043 true +162202 true +162268 true +162369 true +162661 true +162776 true +162820 true +162828 true +162933 true +162980 true +162993 true +163527 true +163581 true +163711 true +163965 true +163979 true +164032 true +164082 true +164130 true +164167 true +164169 true +164236 true +164394 true +164735 true +164851 true +165152 true +165166 true +165380 true +165388 true +165409 true +165430 true +165451 true +165480 true +165498 true +165511 true +165564 true +165578 true +165596 true +165608 true +165642 true +165674 true +165725 true +165769 true +165775 true +166028 true +166035 true +166352 true +167110 true +167230 true +167262 true +167342 true +167347 true +167484 true +167528 true +167803 true +167961 true +168035 true +168043 true +168121 true +168143 true +168220 true +168224 true +168296 true +168302 true +168395 true +168459 true +168594 true +168644 true +168731 true +168887 true +168890 true +168913 true +168957 true +169042 true +169103 true +169313 true +true +169321 true +169346 true +169373 true +169455 true +169529 true +169560 true +169564 true +169578 true +169633 true +169992 true +170093 true +170247 true +170326 true +170390 true +170571 true +170575 true +170593 true +170598 true +170602 true +170629 true +171016 true +171244 true +171477 true +171479 true +171591 true +171888 true +172012 true +172026 true +172149 true +172177 true +172188 true +172232 true +172235 true +172351 true +172368 true +172618 true +172890 true +173396 true +173642 true +173799 true +173923 true +174398 true +174701 true +174869 true +174880 true +174957 true +175121 true +true +175134 true +175142 true +175235 true +175347 true +175576 true +175634 true +176088 true +176094 true +176242 true +176308 true +176329 true +176680 true +176880 true +176975 true +true +177100 true +177121 true +177186 true +177345 true +177452 true +177503 true +177637 true +177674 true +177759 true +178042 true +178044 true +178047 true +178062 true +178159 true +178255 true +178282 true +178285 true +178302 true +178320 true +true +178326 true +178386 true +178390 true +178399 true +178402 true +178462 true +true +178519 true +178632 true +178722 true +178838 true +178879 true +178927 true +179013 true +179037 true +179112 true +179116 true +179165 true +179174 true +179310 true +179370 true +179540 true +179548 true +179566 true +179594 true +179600 true +179683 true +179726 true +true +179765 true +179806 true +179859 true +179889 true +180050 true +180081 true +180096 true +180118 true +180153 true +true +180210 true +180255 true +180394 true +180397 true +180404 true +180415 true +180420 true +180443 true +180674 true +180681 true +180690 true +180727 true +180745 true +180747 true +180749 true +180751 true +180753 true +180755 true +180757 true +180759 true +180761 true +180763 true +180765 true +180767 true +180769 true +180771 true +180773 true +180775 true +180777 true +180779 true +180781 true +180783 true +180785 true +180787 true +180789 true +180791 true +180793 true +180795 true +180797 true +180799 true +180801 true +180803 true +180805 true +180807 true +180809 true +180811 true +180813 true +180815 true +180817 true +180819 true +180821 true +180823 true +180825 true +180827 true +180829 true +180831 true +180833 true +180835 true +180837 true +180839 true +180841 true +180843 true +180845 true +180847 true +180849 true +180851 true +180853 true +180855 true +180857 true +180859 true +180861 true +180863 true +180865 true +180867 true +180869 true +180871 true +180873 true +180875 true +180877 true +180879 true +180881 true +180883 true +180885 true +180887 true +180889 true +180891 true +180893 true +180895 true +180995 true +181049 true +181113 true +181177 true +181256 true +181265 true +181272 true +181310 true +181350 true +181652 true +181681 true +182120 true +182279 true +182368 true +182376 true +182388 true +182395 true +182533 true +182574 true +182774 true +182784 true +182798 true +182821 true +183258 true +183424 true +183445 true +183470 true +183549 true +183729 true +183740 true +183747 true +183749 true +184203 true +184205 true +184716 true +184740 true +184894 true +184922 true +185127 true +185182 true +185356 true +185469 true +185732 true +185773 true +185895 true +185952 true +186000 true +186400 true +186423 true +186457 true +186633 true +186718 true +186785 true +186835 true +186869 true +186897 true +186923 true +186942 true +187004 true +187021 true +187038 true +187120 true +187751 true +188003 true +188220 true +188847 true +189088 true +189461 true +189636 true +189880 true +189985 true +190585 true +190691 true +190776 true +190903 true +190985 true +190993 true +191397 true +191425 true +191537 true +191840 true +192033 true +192121 true +192228 true +192282 true +192716 true +192740 true +192756 true +192780 true +192965 true +192992 true +193041 true +193225 true +193351 true +193384 true +193566 true +193688 true +193965 true +194055 true +194104 true +194269 true +194298 true +194384 true +194466 true +194470 true +194598 true +194601 true +195155 true +195184 true +195231 true +195315 true +195347 true +195383 true +195536 true +195539 true +195542 true +195553 true +195573 true +195620 true +true +195816 true +195825 true +196076 true +196255 true +196498 true +196661 true +196705 true +196712 true +196755 true +196956 true +196967 true +197139 true +197384 true +197395 true +197523 true +197681 true +197849 true +197866 true +197873 true +197973 true +198020 true +198050 true +198093 true +198098 true +198101 true +198173 true +198189 true +198288 true +198378 true +198383 true +198395 true +198605 true +198617 true +198644 true +198710 true +198724 true +true +198849 true +198981 true +199006 true +199017 true +199046 true +199515 true +199599 true +199664 true +199673 true +200267 true +200287 true +200328 true +200477 true +200531 true +200718 true +200841 true +201117 true +201702 true +201712 true +201729 true +201842 true +201895 true +202026 true +true +202043 true +202077 true +202196 true +202244 true +202284 true +202347 true +202394 true +202538 true +true +true +202639 true +202712 true +202764 true +202897 true +203027 true +203232 true +203251 true +203299 true +203334 true +203407 true +203536 true +203572 true +203687 true +204095 true +204551 true +204564 true +204728 true +204811 true +205093 true +205098 true +205100 true +205465 true +205508 true +205517 true +205541 true +205569 true +205649 true +205677 true +205694 true +205804 true +205809 true +206356 true +true +206478 true +206482 true +206599 true +206696 true +206758 true +206778 true +206838 true +206870 true +207019 true +207034 true +207107 true +true +207256 true +207282 true +207284 true +207288 true +207304 true +207387 true +207443 true +207502 true +207673 true +207866 true +207884 true +207915 true +207928 true +207971 true +208054 true +208073 true +208076 true +208087 true +208180 true +208185 true +208217 true +208253 true +208334 true +208441 true +true +208544 true +208655 true +208693 true +208721 true +208845 true +208862 true +208914 true +true +208996 true +209025 true +209036 true +209059 true +209086 true +209140 true +209165 true +209269 true +209318 true +209373 true +true +209384 true +true +209390 true +209408 true +209446 true +209584 true +209604 true +209638 true +209646 true +209690 true +209742 true +209785 true +true +true +209817 true +210077 true +210330 true +true +210383 true +210553 true +210565 true +true +210613 true +210689 true +210735 true +210888 true +210943 true +211064 true +211153 true +211171 true +211210 true +211245 true +211257 true +211267 true +211293 true +211298 true +211385 true +211393 true +211613 true +211644 true +211766 true +211795 true +211856 true +211993 true +212011 true +true +true +212015 true +212035 true +212055 true +212241 true +212298 true +212303 true +212370 true +212466 true +212468 true +212470 true +212554 true +212700 true +212725 true +212875 true +212882 true +212890 true +212959 true +212968 true +213095 true +213112 true +213155 true +true +213193 true +213321 true +213373 true +213392 true +213445 true +true +213553 true +213564 true +213605 true +213610 true +213733 true +213790 true +213792 true +213823 true +213842 true +213851 true +213861 true +213877 true +213892 true +213999 true +214010 true +214153 true +214203 true +214207 true +214335 true +214397 true +214408 true +214416 true +214420 true +214424 true +214426 true +214497 true +true +214504 true +true +214507 true +214522 true +214536 true +214559 true +214685 true +214737 true +true +214756 true +true +214776 true +214839 true +214924 true +215225 true +215280 true +215359 true +215377 true +215593 true +215668 true +215730 true +215772 true +215834 true +215925 true +215927 true +215940 true +215945 true +215974 true +true +215987 true +215990 true +216108 true +216169 true +216178 true +216196 true +216217 true +216222 true +216280 true +216323 true +216358 true +true +216410 true +216428 true +216449 true +216618 true +216798 true +217088 true +217162 true +217251 true +217313 true +217345 true +217430 true +217442 true +217551 true +217567 true +217659 true +true +217809 true +217889 true +217937 true +217948 true +217996 true +218012 true +218082 true +218104 true +218164 true +218201 true +true +218217 true +218309 true +218406 true +218427 true +218644 true +218677 true +218721 true +218826 true +218874 true +219040 true +219049 true +true +219060 true +219132 true +219163 true +true +219355 true +219384 true +219518 true +219542 true +true +219572 true +219594 true +219699 true +219754 true +219874 true +220030 true +220070 true +220346 true +220451 true +220461 true +true +220593 true +220600 true +220653 true +220829 true +220852 true +220880 true +220891 true +220900 true +220929 true +true +220994 true +221120 true +221280 true +221297 true +221346 true +221378 true +221402 true +221473 true +221518 true +221547 true +221625 true +221632 true +221754 true +221870 true +221899 true +221948 true +222015 true +222040 true +222470 true +222591 true +222839 true +222930 true +222932 true +222938 true +true +222941 true +222955 true +222957 true +222973 true +true +222993 true +222995 true +222999 true +223008 true +223011 true +true +223019 true +223127 true +223138 true +223170 true +223188 true +223369 true +223401 true +223492 true +true +223507 true +223546 true +223585 true +223707 true +223822 true +224003 true +224024 true +224028 true +224133 true +224243 true +224248 true +224283 true +224291 true +224336 true +224356 true +224439 true +224450 true +224472 true +224475 true +224526 true +224596 true +224599 true +224685 true +224687 true +224690 true +224739 true +224741 true +224802 true +true +224829 true +224926 true +225080 true +225097 true +true +225114 true +225171 true +225186 true +225270 true +225390 true +225394 true +225412 true +225445 true +225468 true +true +225491 true +225501 true +225541 true +225645 true +225700 true +225806 true +225810 true +225948 true +true +226022 true +226028 true +true +226059 true +226087 true +226160 true +true +226283 true +226341 true +226432 true +226437 true +226533 true +226597 true +226939 true +227290 true +227341 true +227729 true +227731 true +227929 true +227998 true +228014 true +228065 true +228128 true +228137 true +228140 true +228207 true +228262 true +228272 true +228290 true +228294 true +228401 true +228450 true +228453 true +228476 true +228502 true +228507 true +228535 true +228542 true +228565 true +228582 true +228599 true +228607 true +228613 true +228618 true +228629 true +228634 true +228643 true +228652 true +228659 true +228728 true +228780 true +228787 true +228793 true +228798 true +true +228806 true +228816 true +228821 true +228827 true +228838 true +228864 true +228874 true +228878 true +228882 true +228884 true +true +true +228895 true +228904 true +228907 true +228919 true +228922 true +true +228930 true +228937 true +228963 true +228969 true +228972 true +228981 true +228984 true +true +228995 true +228998 true +229105 true +229113 true +229188 true +true +229194 true +229247 true +229273 true +229308 true +229361 true +229374 true +229441 true +229466 true +229643 true +229668 true +229799 true +229944 true +229998 true +230026 true +230050 true +230054 true +230153 true +230161 true +230200 true +230407 true +230409 true +231005 true +231201 true +231213 true +true +231272 true +231291 true +231335 true +231374 true +232037 true +232378 true +232391 true +232601 true +232696 true +232764 true +233090 true +233488 true +233730 true +233845 true +233913 true +233978 true +true +234038 true +234153 true +234274 true +234308 true +234314 true +234317 true +234341 true +234477 true +234602 true +234612 true +234616 true +234619 true +234623 true +234625 true +234633 true +234647 true +234650 true +true +234656 true +234659 true +234662 true +true +234718 true +234751 true +234784 true +234870 true +234925 true +234936 true +true +234941 true +234981 true +235021 true +235091 true +235167 true +235177 true +235289 true +235346 true +235569 true +235652 true +235700 true +235785 true +235797 true +235831 true +235882 true +236002 true +236270 true +236341 true +236429 true +236465 true +236536 true +236583 true +236653 true +236656 true +236759 true +236803 true +236822 true +236848 true +236893 true +236925 true +237132 true +237420 true +237745 true +237773 true +237778 true +237792 true +238234 true +238284 true +238337 true +238339 true +238354 true +238363 true +238365 true +true +238384 true +238387 true +true +true +238400 true +238490 true +238509 true +238602 true +238631 true +238688 true +238708 true +238765 true +238769 true +238884 true +238887 true +238943 true +238945 true +238974 true +239126 true +239249 true +239268 true +239308 true +239330 true +239413 true +239505 true +239582 true +239629 true +239654 true +239731 true +239763 true +239938 true +239961 true +240113 true +240116 true +240158 true +240161 true +240169 true +240172 true +240177 true +240184 true +240191 true +240194 true +true +240198 true +240203 true +240206 true +240229 true +240249 true +240321 true +240331 true +240369 true +240371 true +240385 true +240388 true +240391 true +240434 true +240491 true +240516 true +240522 true +240583 true +240587 true +240603 true +240630 true +240646 true +true +240684 true +true +240695 true +240704 true +240744 true +240783 true +240803 true +240808 true +240810 true +240818 true +240865 true +240873 true +240886 true +240904 true +240911 true +240938 true +240940 true +241046 true +241057 true +241069 true +241113 true +241252 true +241265 true +241271 true +241304 true +241344 true +241361 true +241436 true +241581 true +241671 true +241674 true +241827 true +242058 true +242133 true +242162 true +242164 true +true +242174 true +242176 true +242180 true +242184 true +242186 true +242190 true +242203 true +242206 true +true +242248 true +242286 true +242312 true +242316 true +242424 true +242426 true +242516 true +242570 true +242647 true +242682 true +242703 true +242706 true +242752 true +242809 true +242831 true +242866 true +242971 true +242979 true +243014 true +243038 true +true +243056 true +243060 true +243088 true +243105 true +243132 true +243206 true +true +true +243230 true +243306 true +243308 true +243320 true +243453 true +243469 true +243491 true +243509 true +243530 true +243532 true +243539 true +243542 true +243546 true +243561 true +243565 true +243568 true +243571 true +243580 true +243590 true +243600 true +243602 true +243636 true +243641 true +243705 true +243736 true +243743 true +243752 true +243761 true +243794 true +243799 true +243875 true +243883 true +243889 true +243916 true +243924 true +243928 true +243981 true +244020 true +244068 true +244155 true +244340 true +244350 true +true +244378 true +244396 true +244507 true +244509 true +244584 true +244659 true +244683 true +244696 true +244698 true +244703 true +244714 true +244730 true +true +244735 true +244766 true +244840 true +244842 true +true +244873 true +244876 true +244954 true +244987 true +244994 true +244998 true +245006 true +245055 true +245146 true +245165 true +245197 true +245206 true +245215 true +245228 true +245235 true +245286 true +245307 true +245330 true +245484 true +245521 true +245535 true +245556 true +245589 true +245626 true +245697 true +245725 true +true +245758 true +true +245883 true +true +245887 true +245968 true +246006 true +246009 true +246037 true +246040 true +246052 true +246055 true +true +246063 true +246065 true +true +246140 true +246150 true +246168 true +246172 true +246228 true +246242 true +true +246252 true +246255 true +246296 true +true +246360 true +246447 true +246450 true +246474 true +246477 true +246479 true +true +246578 true +246580 true +246655 true +true +246724 true +246727 true +246732 true +246735 true +246739 true +246742 true +true +246746 true +246755 true +246757 true +true +246783 true +246856 true +246859 true +true +246888 true +246893 true +246903 true +246916 true +true +246931 true +246947 true +247010 true +247027 true +247031 true +true +true +247044 true +247140 true +247235 true +247238 true +247257 true +247342 true +247490 true +247698 true +247797 true +247801 true +247804 true +247924 true +247930 true +true +247935 true +247945 true +247948 true +247953 true +true +248002 true +248045 true +248049 true +248054 true +248057 true +true +248065 true +248067 true +true +248108 true +248112 true +248157 true +248164 true +248179 true +248184 true +248192 true +248196 true +248245 true +248250 true +248256 true +248313 true +248317 true +248334 true +248369 true +248400 true +248403 true +248448 true +248727 true +248754 true +248761 true +248764 true +248776 true +248795 true +true +248891 true +248959 true +249069 true +249074 true +249081 true +249105 true +249107 true +249118 true +249120 true +true +249184 true +249215 true +249355 true +249359 true +249394 true +249396 true +249400 true +249410 true +249468 true +249474 true +249491 true +true +249566 true +249601 true +249603 true +249605 true +249608 true +249614 true +249617 true +249631 true +249634 true +true +249655 true +249670 true +249706 true +249711 true +249724 true +249808 true +249854 true +249859 true +true +249868 true +249870 true +250005 true +250136 true +250184 true +250338 true +250342 true +250672 true +250707 true +250786 true +250791 true +250996 true +251020 true +251083 true +251251 true +251263 true +251265 true +true +251270 true +251319 true +251386 true +251611 true +251629 true +251699 true +251884 true +251907 true +251973 true +252003 true +252200 true +252378 true +252843 true +252882 true +252895 true +253106 true +253238 true +253513 true +253515 true +253521 true +253529 true +253536 true +253564 true +253703 true +253854 true +253864 true +253870 true +253885 true +253910 true +253939 true +253943 true +true +253946 true +254192 true +254241 true +254296 true +254299 true +254388 true +254568 true +254574 true +254596 true +254623 true +254781 true +254903 true +255066 true +255109 true +255159 true +255199 true +255202 true +255462 true +255464 true +255474 true +255482 true +255489 true +255494 true +255497 true +255510 true +255521 true +255548 true +255561 true +255576 true +255587 true +255649 true +255711 true +255727 true +255733 true +255799 true +255835 true +255858 true +255879 true +255975 true +256034 true +256192 true +256325 true +256390 true +256415 true +true +256427 true +256566 true +256783 true +256809 true +256835 true +256859 true +256868 true +256874 true +true +256879 true +256885 true +256888 true +256890 true +256900 true +256909 true +256994 true +256997 true +257033 true +257038 true +257074 true +257077 true +257098 true +257101 true +257114 true +257123 true +257245 true +true +257265 true +257369 true +257405 true +257432 true +257436 true +257676 true +257727 true +257732 true +257801 true +257804 true +257865 true +257925 true +true +true +258157 true +258273 true +258745 true +258748 true +258809 true +259199 true +259231 true +259351 true +259410 true +259487 true +259490 true +259525 true +259542 true +259545 true +true +259604 true +259609 true +259789 true +259887 true +259890 true +259898 true +259901 true +259927 true +true +259948 true +259950 true +259968 true +260027 true +260097 true +260107 true +260157 true +260164 true +260167 true +260204 true +260207 true +260233 true +260244 true +260248 true +true +260268 true +260285 true +260297 true +260321 true +260353 true +true +true +260433 true +260436 true +260449 true +true +260464 true +260700 true +260950 true +true +261018 true +261048 true +261093 true +true +261166 true +true +261369 true +true +true +261401 true +261417 true +261456 true +261505 true +true +261542 true +true +261748 true +261867 true +true +true +261890 true +262023 true +true +262180 true +262502 true +262676 true +262703 true +262778 true +262806 true +262873 true +262948 true +263014 true +263061 true +263127 true +true +263249 true +263454 true +263488 true +263496 true +263503 true +263509 true +263516 true +263589 true +263843 true +263862 true +263869 true +263967 true +263999 true +264072 true +264212 true +264267 true +264288 true +true +true +264329 true +264354 true +264455 true +264540 true +true +true +264592 true +264735 true +264884 true +264927 true +265075 true +265116 true +265223 true +265314 true +265336 true +265364 true +265421 true +265440 true +265535 true +265547 true +265628 true +265685 true +265700 true +true +265756 true +265789 true +265862 true +265891 true +265923 true +265952 true +true +265985 true +266046 true +266059 true +266108 true +266136 true +266242 true +266258 true +266336 true +true +true +266383 true +true +266442 true +266615 true +266778 true +266789 true +true +266801 true +266828 true +266832 true +266852 true +266926 true +266947 true +267067 true +267211 true +267230 true +true +267260 true +true +267339 true +267415 true +267452 true +267465 true +267486 true +267559 true +267585 true +267596 true +267639 true +267787 true +true +267825 true +267841 true +267891 true +267925 true +267935 true +267957 true +268003 true +268090 true +268138 true +268154 true +268159 true +268175 true +268192 true +268212 true +268277 true +268306 true +268409 true +268411 true +268589 true +268609 true +268639 true +268657 true +268672 true +268782 true +268844 true +268867 true +268893 true +268898 true diff --git a/tf/0.1.1/articular.tf b/tf/0.1.1/articular.tf new file mode 100644 index 0000000..118d4b4 --- /dev/null +++ b/tf/0.1.1/articular.tf @@ -0,0 +1,28786 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Articular +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +154035 true +154038 true +154041 true +true +154044 true +154048 true +true +154051 true +true +true +154056 true +154059 true +154062 true +154065 true +154068 true +154071 true +true +true +154076 true +true +true +154081 true +154084 true +true +true +154091 true +154094 true +154097 true +154100 true +154103 true +154106 true +154109 true +154112 true +154115 true +154118 true +154121 true +154124 true +154127 true +154130 true +154133 true +true +154136 true +154138 true +true +154145 true +true +154148 true +154151 true +154154 true +154157 true +154160 true +154163 true +154166 true +154169 true +154172 true +154175 true +154178 true +154181 true +true +true +154189 true +154195 true +true +154206 true +true +154212 true +true +true +154216 true +true +154222 true +true +154225 true +154229 true +true +154232 true +154245 true +154267 true +154271 true +154281 true +154285 true +154287 true +true +154297 true +154300 true +true +154305 true +154311 true +154318 true +154325 true +154327 true +true +154331 true +154336 true +154344 true +154350 true +154353 true +154357 true +154364 true +154368 true +154372 true +true +true +true +154385 true +true +154394 true +true +154399 true +154402 true +154410 true +154413 true +true +154421 true +true +154430 true +true +154433 true +154438 true +154440 true +154442 true +154452 true +true +154468 true +154472 true +154475 true +true +154481 true +154486 true +154493 true +true +true +154499 true +154507 true +154522 true +true +154532 true +154538 true +true +154541 true +154555 true +true +154564 true +true +154567 true +154574 true +true +154579 true +154582 true +true +154587 true +154595 true +true +154600 true +true +true +154608 true +true +true +154615 true +true +154619 true +true +154623 true +154627 true +154637 true +154648 true +154652 true +154659 true +true +154662 true +154670 true +154672 true +154674 true +154680 true +true +154683 true +154695 true +true +true +true +154707 true +true +154710 true +154719 true +154721 true +true +154728 true +true +true +154732 true +154734 true +true +154737 true +154743 true +154745 true +154747 true +true +true +154753 true +154758 true +true +154762 true +154765 true +154772 true +true +true +154781 true +true +154786 true +154797 true +true +154800 true +true +154803 true +154806 true +true +154811 true +154819 true +154823 true +true +154829 true +true +154838 true +154845 true +154850 true +154852 true +true +true +true +154859 true +true +true +154863 true +154883 true +154888 true +154896 true +true +true +true +true +true +154905 true +154910 true +154912 true +true +154916 true +154920 true +true +true +true +true +true +true +true +154945 true +154959 true +true +true +154966 true +154977 true +true +154981 true +true +154984 true +154989 true +true +true +true +true +154995 true +true +155009 true +155015 true +155019 true +true +155030 true +155041 true +true +true +155048 true +true +155051 true +155058 true +155066 true +155075 true +155079 true +155083 true +155088 true +155095 true +true +true +155099 true +155101 true +155113 true +155122 true +155130 true +155142 true +true +155149 true +155153 true +true +155161 true +155165 true +155177 true +true +155180 true +155182 true +true +true +155190 true +true +155200 true +155209 true +155211 true +155216 true +true +155219 true +155225 true +155229 true +155231 true +true +155249 true +155261 true +155264 true +155266 true +true +155270 true +155272 true +155281 true +true +155284 true +155289 true +true +true +155294 true +true +155299 true +155301 true +155308 true +true +155313 true +155315 true +true +true +155322 true +true +true +155342 true +true +true +155350 true +true +155356 true +true +true +155364 true +155370 true +155375 true +155377 true +155380 true +155382 true +155385 true +155391 true +155394 true +155397 true +155401 true +155406 true +155411 true +155413 true +155416 true +155420 true +155426 true +155431 true +155433 true +155455 true +155457 true +true +155462 true +true +155467 true +true +155470 true +155476 true +155484 true +true +155487 true +true +155490 true +155497 true +155502 true +true +true +true +true +true +155512 true +true +155516 true +155518 true +true +155523 true +true +155528 true +true +155532 true +true +155539 true +true +155542 true +155557 true +true +155560 true +155567 true +true +155579 true +true +true +true +155585 true +true +true +155589 true +155599 true +true +155602 true +155610 true +true +true +155616 true +true +155619 true +155624 true +155631 true +155638 true +true +155641 true +155643 true +155648 true +155651 true +155657 true +true +155660 true +155667 true +155669 true +true +155674 true +155678 true +155680 true +true +155686 true +155691 true +155696 true +155701 true +true +155705 true +true +155708 true +true +true +155724 true +155736 true +true +155739 true +true +155742 true +true +155750 true +155753 true +155765 true +155769 true +true +155778 true +155792 true +155796 true +true +155806 true +155814 true +true +155817 true +155831 true +155836 true +true +155844 true +155846 true +true +true +true +155853 true +155855 true +true +true +true +155862 true +155871 true +155875 true +true +155887 true +155893 true +true +true +155897 true +true +155913 true +155918 true +true +155922 true +true +155927 true +true +155934 true +155937 true +true +155948 true +155952 true +155962 true +155966 true +155975 true +155979 true +true +155985 true +true +155993 true +156008 true +156014 true +true +true +156022 true +156028 true +true +true +156036 true +156039 true +156044 true +156046 true +true +true +true +156056 true +true +true +156061 true +true +156074 true +true +true +true +156079 true +true +156083 true +true +156090 true +156098 true +156101 true +156103 true +true +true +true +true +true +156112 true +true +156115 true +156117 true +true +156120 true +true +true +156125 true +true +true +156132 true +true +true +156136 true +true +156139 true +156142 true +156148 true +156157 true +true +156163 true +156165 true +true +156169 true +true +156174 true +true +156177 true +156179 true +true +156186 true +true +true +156193 true +true +156202 true +156206 true +true +156218 true +true +156221 true +156224 true +156227 true +156235 true +156238 true +156242 true +156247 true +156255 true +true +156262 true +true +156266 true +156269 true +156275 true +true +156278 true +156287 true +true +true +156293 true +156297 true +156304 true +156312 true +true +156316 true +156318 true +true +156321 true +156323 true +true +true +156328 true +true +156333 true +true +156336 true +156338 true +true +156342 true +true +156369 true +156372 true +true +156376 true +true +156379 true +true +156386 true +156388 true +true +156396 true +156398 true +true +156406 true +true +156410 true +156421 true +156424 true +156430 true +156442 true +156450 true +156457 true +true +156460 true +true +true +156465 true +true +156468 true +156480 true +156483 true +156494 true +true +156504 true +156506 true +156518 true +true +true +156530 true +156532 true +156538 true +156557 true +156561 true +156564 true +156572 true +true +156575 true +156584 true +true +156588 true +156591 true +true +156615 true +true +156618 true +true +156621 true +156625 true +156627 true +true +156634 true +156639 true +true +true +156645 true +true +true +156653 true +true +156656 true +156660 true +true +true +156664 true +156670 true +true +156674 true +156676 true +true +156680 true +true +156704 true +true +156709 true +156713 true +156724 true +156739 true +156743 true +true +156747 true +true +true +156760 true +156763 true +true +true +true +156768 true +156771 true +true +156778 true +156781 true +true +true +156785 true +true +156789 true +156796 true +156799 true +true +true +156803 true +true +156807 true +156811 true +true +156824 true +true +156843 true +156870 true +true +156874 true +156876 true +true +156882 true +true +156885 true +true +true +156889 true +156891 true +true +156895 true +true +156899 true +true +true +156909 true +156913 true +156917 true +156927 true +true +156930 true +156937 true +true +true +156945 true +true +true +true +156954 true +156957 true +156960 true +156963 true +true +156969 true +true +156974 true +true +156978 true +true +true +156986 true +true +true +true +156994 true +156997 true +157000 true +157003 true +true +157009 true +157018 true +true +true +157022 true +true +true +157034 true +true +true +true +157043 true +true +157062 true +157070 true +true +157075 true +157084 true +157087 true +157104 true +157106 true +true +157117 true +157123 true +true +true +157131 true +157158 true +true +true +true +157171 true +157174 true +157182 true +true +157199 true +true +157202 true +157206 true +157208 true +true +true +157212 true +157215 true +true +157218 true +157220 true +157224 true +true +157235 true +true +true +true +157242 true +157244 true +true +157248 true +157256 true +157260 true +157278 true +157281 true +true +157287 true +157291 true +157295 true +157299 true +157303 true +157307 true +true +157321 true +157325 true +157327 true +true +157330 true +157333 true +157335 true +157337 true +157342 true +157349 true +157354 true +157360 true +true +157367 true +true +157370 true +157376 true +true +157380 true +true +true +157404 true +true +157407 true +157414 true +157420 true +157422 true +157424 true +157429 true +true +true +true +157434 true +157441 true +true +157448 true +true +true +157461 true +157476 true +157482 true +true +157485 true +157494 true +true +157500 true +true +true +true +true +true +157508 true +true +157514 true +157519 true +true +157524 true +157530 true +true +157534 true +157540 true +true +157551 true +true +157563 true +157565 true +157567 true +157572 true +true +157578 true +157584 true +157586 true +157591 true +true +157600 true +true +157613 true +157615 true +true +true +157621 true +157626 true +true +157630 true +true +157637 true +true +157645 true +157648 true +true +true +157653 true +157659 true +157663 true +true +157679 true +true +157687 true +true +157690 true +157696 true +true +157701 true +true +157705 true +157711 true +157714 true +157716 true +true +157737 true +157745 true +157748 true +157753 true +157756 true +157758 true +157763 true +157771 true +157785 true +157787 true +true +157804 true +157807 true +157810 true +157829 true +157835 true +157845 true +157847 true +true +157857 true +157859 true +157868 true +157874 true +157883 true +157888 true +true +true +true +157895 true +157898 true +true +157901 true +157904 true +true +true +157909 true +157915 true +157925 true +157928 true +157932 true +157936 true +true +true +true +true +true +157946 true +157960 true +true +157964 true +157967 true +157979 true +157983 true +true +157989 true +true +157994 true +158002 true +true +true +true +158017 true +158019 true +158023 true +158026 true +true +158031 true +158033 true +true +158036 true +true +158041 true +true +true +true +158046 true +158049 true +true +158054 true +158056 true +158067 true +158081 true +158086 true +158089 true +158093 true +158095 true +158098 true +true +158105 true +158122 true +true +158125 true +158130 true +158136 true +158143 true +158146 true +158153 true +158157 true +158161 true +158165 true +true +158170 true +true +true +158186 true +true +true +true +true +158200 true +158202 true +158220 true +true +158234 true +true +158259 true +true +158268 true +true +158276 true +158287 true +158291 true +true +true +true +158296 true +true +158299 true +158313 true +true +true +158326 true +true +true +158332 true +true +true +158338 true +true +158347 true +true +158362 true +158377 true +true +true +158382 true +true +true +true +158387 true +true +158390 true +158392 true +158414 true +true +158420 true +true +158429 true +true +true +true +true +158442 true +158444 true +158447 true +158449 true +158451 true +true +true +true +158456 true +true +true +158463 true +true +true +true +true +158470 true +true +true +true +158476 true +158479 true +true +158482 true +158500 true +true +true +true +158508 true +true +true +true +158515 true +true +158519 true +158523 true +158527 true +158543 true +true +true +true +158551 true +true +true +true +158556 true +158570 true +true +158573 true +true +true +158578 true +true +158585 true +true +158588 true +true +true +158593 true +true +158600 true +true +158613 true +true +158618 true +true +158623 true +true +158627 true +158629 true +true +158634 true +158642 true +158652 true +158660 true +158662 true +158666 true +158668 true +158674 true +158678 true +158680 true +158685 true +158692 true +158703 true +true +158713 true +158722 true +158724 true +158728 true +158732 true +true +158738 true +158740 true +true +true +158744 true +158746 true +true +158749 true +true +true +158759 true +158788 true +158790 true +158795 true +true +158811 true +158813 true +true +true +158817 true +158834 true +158839 true +158852 true +158855 true +158857 true +true +158860 true +158865 true +true +true +158870 true +158872 true +158874 true +158880 true +true +true +158884 true +158894 true +158899 true +158904 true +true +158911 true +true +158916 true +158939 true +158941 true +158961 true +true +true +158968 true +158972 true +158990 true +true +true +159025 true +true +true +159031 true +true +159046 true +true +true +159050 true +159056 true +true +159059 true +159072 true +true +159080 true +true +159086 true +true +true +true +159092 true +true +true +true +true +159101 true +159106 true +true +true +159117 true +159128 true +159131 true +159137 true +159141 true +159145 true +true +true +true +true +true +true +159156 true +159167 true +159170 true +159192 true +true +159195 true +159198 true +159200 true +159211 true +159216 true +true +159221 true +true +true +true +true +159234 true +159247 true +159252 true +true +159255 true +159260 true +true +159276 true +159292 true +159305 true +159308 true +159310 true +true +159318 true +true +true +159325 true +159332 true +159349 true +159353 true +159357 true +true +159362 true +159366 true +159371 true +159376 true +159384 true +true +true +159401 true +159405 true +159418 true +159425 true +true +159429 true +true +true +159436 true +159440 true +true +true +true +true +true +159447 true +159452 true +159473 true +true +159479 true +159487 true +true +159502 true +159505 true +159507 true +159514 true +true +159517 true +159520 true +159524 true +159528 true +159533 true +159539 true +159550 true +159553 true +159555 true +159561 true +true +159564 true +159571 true +true +159574 true +159576 true +159578 true +true +true +159582 true +true +159590 true +159592 true +true +159598 true +159600 true +true +159606 true +true +true +159618 true +true +159621 true +true +159626 true +159628 true +true +159633 true +159635 true +true +159648 true +159656 true +true +159661 true +true +159667 true +159686 true +true +true +159691 true +159693 true +159695 true +true +true +true +159700 true +159705 true +159707 true +true +true +159711 true +159722 true +true +true +true +true +159731 true +true +159743 true +true +true +true +true +159752 true +true +159755 true +159757 true +159767 true +159769 true +true +159781 true +true +159811 true +159813 true +true +true +159818 true +true +true +true +true +159826 true +true +true +159830 true +159839 true +true +159843 true +159850 true +159852 true +true +true +159857 true +true +159864 true +159866 true +true +159869 true +159871 true +true +true +159876 true +159883 true +159885 true +true +159896 true +true +true +true +159901 true +true +true +159916 true +true +true +true +159926 true +159928 true +159933 true +true +true +159940 true +true +159945 true +159950 true +true +159957 true +true +159968 true +true +159974 true +true +159979 true +159985 true +true +159988 true +160001 true +160007 true +160019 true +160021 true +160023 true +160057 true +true +160060 true +160080 true +160082 true +true +160086 true +160089 true +160094 true +160097 true +160100 true +160110 true +true +160115 true +true +true +160145 true +160147 true +160153 true +160155 true +160160 true +160163 true +160165 true +true +160169 true +true +160172 true +true +160175 true +160177 true +true +160180 true +true +true +160185 true +160202 true +true +160205 true +160207 true +true +160210 true +true +true +true +160215 true +160218 true +true +160221 true +160223 true +160225 true +true +160230 true +160232 true +true +160235 true +true +160238 true +true +160242 true +160261 true +160263 true +160267 true +true +160274 true +true +160277 true +true +true +160284 true +160293 true +160296 true +true +160302 true +160304 true +160309 true +true +160323 true +160336 true +160338 true +160342 true +true +160349 true +true +160354 true +160358 true +true +160363 true +true +true +160372 true +160374 true +160379 true +true +160386 true +true +160393 true +160399 true +160401 true +160404 true +true +160412 true +160414 true +160427 true +160429 true +160435 true +160437 true +true +160442 true +160450 true +true +true +160456 true +160460 true +160462 true +160464 true +160469 true +true +160472 true +160474 true +160476 true +160478 true +true +true +true +160483 true +160485 true +true +160488 true +160490 true +160492 true +true +true +true +true +160498 true +160500 true +true +true +true +160505 true +160510 true +160514 true +160521 true +160524 true +true +160527 true +160531 true +160533 true +true +160539 true +true +160542 true +true +true +160546 true +160548 true +160551 true +true +160554 true +160557 true +true +160560 true +160562 true +160565 true +true +true +160569 true +160571 true +true +true +160576 true +160580 true +160582 true +160586 true +true +160593 true +true +160601 true +true +160605 true +160607 true +160625 true +160627 true +160632 true +true +160644 true +true +160648 true +160652 true +160655 true +true +160658 true +160662 true +160666 true +160669 true +160672 true +true +160675 true +160678 true +true +160681 true +160683 true +160698 true +160700 true +160704 true +true +160716 true +true +true +160724 true +true +160727 true +true +160735 true +true +true +true +160740 true +160742 true +true +true +160746 true +160751 true +160755 true +160764 true +true +160780 true +160783 true +true +true +true +true +160789 true +true +160796 true +true +160802 true +true +true +160806 true +true +160811 true +160816 true +160819 true +true +160824 true +160830 true +160832 true +160838 true +160841 true +160846 true +160855 true +160866 true +160868 true +160870 true +true +true +160875 true +160886 true +true +160891 true +160894 true +160900 true +true +true +true +160905 true +160911 true +true +160917 true +160922 true +160925 true +160932 true +160934 true +160940 true +160945 true +160954 true +true +true +160969 true +160976 true +160981 true +160984 true +160987 true +160991 true +true +160996 true +161023 true +true +true +161027 true +true +161031 true +161034 true +true +161040 true +true +161043 true +true +true +161055 true +true +161059 true +161065 true +161077 true +true +true +161082 true +true +161086 true +161091 true +true +true +161105 true +161107 true +true +161110 true +true +161114 true +161120 true +161123 true +true +161129 true +161132 true +true +161139 true +true +161144 true +161155 true +161163 true +true +161174 true +true +true +true +161180 true +true +161187 true +161199 true +161201 true +161211 true +true +161214 true +161219 true +true +161228 true +true +161237 true +161239 true +true +true +true +true +true +161247 true +true +161254 true +161256 true +161264 true +161271 true +161273 true +161275 true +161279 true +161289 true +161291 true +true +true +161298 true +161301 true +true +161304 true +161307 true +161318 true +true +161321 true +161326 true +true +161330 true +161335 true +161337 true +true +true +161348 true +true +true +161353 true +161365 true +161373 true +161375 true +true +true +161379 true +true +161382 true +true +true +161388 true +161392 true +161394 true +161403 true +161406 true +161423 true +161425 true +161437 true +true +161440 true +true +true +true +161451 true +161453 true +true +true +true +161458 true +161462 true +true +161467 true +true +true +161471 true +161474 true +161477 true +161482 true +true +true +161493 true +true +true +161503 true +161512 true +161526 true +true +true +true +true +true +true +161549 true +161551 true +161554 true +161563 true +true +true +true +true +true +161570 true +true +161573 true +161578 true +161583 true +true +161592 true +161594 true +true +true +161602 true +true +true +161606 true +161610 true +true +161625 true +true +161632 true +161644 true +161649 true +161651 true +161656 true +true +161670 true +true +161675 true +161685 true +161700 true +161702 true +true +true +true +161708 true +161715 true +161717 true +true +true +161729 true +true +161733 true +161739 true +161750 true +true +true +161755 true +true +161762 true +161768 true +true +161781 true +161790 true +161796 true +161798 true +161801 true +161803 true +161812 true +true +true +161823 true +161825 true +true +161831 true +161835 true +true +161838 true +161852 true +161864 true +161867 true +161872 true +true +true +161877 true +161889 true +true +161892 true +161897 true +true +161901 true +true +161904 true +true +true +true +161909 true +161915 true +161917 true +true +161921 true +true +161926 true +161928 true +161930 true +161938 true +161946 true +161957 true +true +true +true +161962 true +true +true +161970 true +161981 true +true +true +161986 true +true +161996 true +true +true +true +true +162007 true +162009 true +162011 true +162017 true +true +162020 true +true +162026 true +true +162029 true +true +162034 true +162037 true +true +true +162045 true +162054 true +true +162063 true +162069 true +162081 true +162093 true +162096 true +162099 true +true +162111 true +162122 true +162128 true +162138 true +162142 true +162147 true +162153 true +162155 true +162157 true +true +162160 true +162162 true +true +162167 true +true +162177 true +162185 true +162187 true +true +true +162197 true +true +true +162203 true +162218 true +162220 true +true +162224 true +162226 true +true +162239 true +true +162263 true +true +162266 true +162268 true +true +162271 true +162280 true +162289 true +162301 true +162311 true +true +162314 true +162317 true +162320 true +162322 true +162327 true +162331 true +162358 true +162360 true +162365 true +162370 true +162375 true +true +162385 true +true +162396 true +true +162399 true +true +true +162406 true +162415 true +162434 true +162438 true +162442 true +true +true +true +162448 true +162450 true +162458 true +true +true +true +162476 true +true +162487 true +true +162490 true +162493 true +162495 true +162503 true +162515 true +162517 true +true +162523 true +162532 true +true +162535 true +162542 true +162544 true +162548 true +true +true +true +162554 true +true +162560 true +true +true +162564 true +162567 true +162579 true +162586 true +162595 true +true +true +true +true +162603 true +true +162606 true +162624 true +true +true +162629 true +true +162632 true +162634 true +162637 true +true +true +true +true +true +162644 true +162652 true +true +162661 true +true +true +true +162672 true +true +162677 true +true +162680 true +162683 true +true +true +162691 true +162694 true +162698 true +162704 true +true +162708 true +162718 true +true +162729 true +true +162732 true +162738 true +162748 true +true +162754 true +true +162757 true +162763 true +true +162770 true +162774 true +162776 true +true +162796 true +162798 true +true +162803 true +162818 true +true +true +true +162823 true +162827 true +true +true +162836 true +true +162843 true +162857 true +162883 true +162885 true +162889 true +true +true +true +true +162895 true +162903 true +true +162911 true +true +162924 true +true +162932 true +true +true +162945 true +true +162953 true +162958 true +162966 true +162977 true +162979 true +162984 true +true +163002 true +163007 true +163009 true +163019 true +163031 true +163033 true +true +163037 true +163043 true +true +163047 true +163063 true +163082 true +163088 true +163091 true +163096 true +163098 true +true +163104 true +163110 true +true +true +163120 true +163128 true +163130 true +163133 true +true +163138 true +true +163142 true +163145 true +163147 true +true +163157 true +true +true +163162 true +true +163166 true +true +163170 true +true +true +163190 true +163202 true +163214 true +true +163217 true +163220 true +163224 true +163237 true +163252 true +true +163256 true +163269 true +163277 true +163281 true +163284 true +true +true +163294 true +true +163309 true +true +163315 true +true +163318 true +163321 true +163330 true +163336 true +163340 true +163344 true +163349 true +true +true +true +163354 true +163359 true +163376 true +true +163379 true +163385 true +true +163388 true +163396 true +163406 true +true +163409 true +163412 true +163418 true +163425 true +163436 true +true +163451 true +163453 true +163462 true +true +163469 true +true +163472 true +163483 true +true +163486 true +163491 true +163500 true +163510 true +163521 true +163528 true +163530 true +true +163534 true +163536 true +163544 true +163547 true +163561 true +true +163577 true +163579 true +163585 true +true +163592 true +true +163595 true +true +true +163607 true +true +163615 true +true +163637 true +true +163643 true +true +163653 true +true +163660 true +163662 true +true +163667 true +163670 true +163672 true +true +true +true +163681 true +true +163688 true +163701 true +true +163706 true +true +163712 true +163714 true +true +163717 true +163719 true +163733 true +163740 true +true +163750 true +true +163755 true +163762 true +163765 true +163773 true +163777 true +true +163786 true +163788 true +true +163798 true +true +true +163809 true +163813 true +163815 true +163817 true +true +163834 true +true +163845 true +true +163852 true +163857 true +163869 true +163874 true +163884 true +true +163891 true +true +true +163898 true +163904 true +163906 true +163909 true +163930 true +163932 true +163940 true +163957 true +true +163970 true +163986 true +163996 true +164003 true +true +164021 true +true +164024 true +164031 true +true +true +164053 true +164064 true +164066 true +true +164070 true +164073 true +164088 true +164096 true +true +true +164100 true +164104 true +164112 true +164114 true +true +true +true +164121 true +true +164125 true +true +164130 true +true +true +true +164136 true +164139 true +164141 true +164145 true +164149 true +true +true +164158 true +true +164165 true +true +true +true +164173 true +164178 true +true +164182 true +true +164187 true +true +164191 true +true +164194 true +164196 true +164198 true +164200 true +164206 true +164218 true +true +164226 true +true +164229 true +164231 true +true +164236 true +true +true +164241 true +true +164245 true +true +164256 true +164271 true +true +164280 true +true +164290 true +true +164302 true +true +164307 true +164312 true +164315 true +164320 true +164333 true +164337 true +true +164343 true +true +164352 true +true +164359 true +true +164363 true +true +164366 true +164368 true +164376 true +true +164382 true +164394 true +true +164426 true +164430 true +164435 true +164453 true +164458 true +true +164473 true +164485 true +true +true +164489 true +164492 true +true +164496 true +164502 true +true +164505 true +true +true +164509 true +164522 true +true +164525 true +164529 true +164554 true +164556 true +true +164559 true +true +164562 true +164568 true +true +164584 true +164591 true +164595 true +164600 true +164602 true +164604 true +true +true +164613 true +164620 true +true +164629 true +164631 true +true +true +164641 true +164645 true +true +true +164651 true +164653 true +true +164660 true +164677 true +164679 true +164684 true +164690 true +164692 true +true +true +164704 true +true +164707 true +164709 true +164720 true +164728 true +164732 true +164734 true +164738 true +164744 true +164747 true +164749 true +true +164759 true +164764 true +164767 true +true +164771 true +164775 true +true +164784 true +true +164789 true +true +164795 true +164797 true +164805 true +164809 true +164811 true +true +164815 true +164819 true +164824 true +164827 true +164833 true +true +164836 true +164841 true +true +164846 true +true +164849 true +true +164860 true +164865 true +164868 true +164885 true +true +164892 true +true +164895 true +164898 true +true +164901 true +164903 true +164913 true +164920 true +164922 true +true +164933 true +164935 true +164955 true +164957 true +164963 true +164965 true +164973 true +true +true +164977 true +164990 true +true +165003 true +true +true +165020 true +165022 true +165026 true +165037 true +165042 true +165044 true +165047 true +true +165050 true +165052 true +true +true +165059 true +165064 true +true +165068 true +165075 true +165079 true +165081 true +true +165084 true +165089 true +true +165098 true +true +165101 true +true +true +true +true +165107 true +165110 true +165112 true +true +165115 true +true +true +165120 true +165123 true +165127 true +true +165135 true +true +true +165142 true +165146 true +true +true +165160 true +true +165167 true +165169 true +true +true +true +165175 true +true +true +165180 true +true +true +165185 true +true +165193 true +165200 true +true +true +165204 true +true +165207 true +true +165213 true +165215 true +165218 true +true +165224 true +true +165233 true +165242 true +165244 true +true +165261 true +true +true +165267 true +true +true +165271 true +165275 true +true +165278 true +true +165281 true +165293 true +true +165310 true +true +165313 true +165316 true +165322 true +true +165325 true +true +165328 true +165334 true +165338 true +165341 true +true +165344 true +true +165347 true +165349 true +true +165352 true +165354 true +true +165358 true +true +165366 true +true +165375 true +true +165379 true +true +true +true +165389 true +165393 true +165414 true +165416 true +true +true +165425 true +165436 true +true +165439 true +165453 true +165459 true +true +165465 true +true +165468 true +165475 true +true +true +165479 true +true +true +true +165484 true +165491 true +true +165497 true +true +true +165506 true +true +true +165510 true +true +true +true +165515 true +165519 true +165521 true +true +165533 true +165535 true +true +165540 true +true +165546 true +165548 true +true +true +true +true +165554 true +165556 true +true +165570 true +true +165573 true +165575 true +165578 true +true +165581 true +true +true +165585 true +165587 true +165598 true +165601 true +165604 true +165614 true +165616 true +true +165619 true +165630 true +165632 true +165635 true +true +165665 true +165681 true +165683 true +165686 true +165688 true +165692 true +true +true +true +165697 true +165702 true +true +165705 true +165712 true +165714 true +165718 true +165720 true +165727 true +true +165730 true +165748 true +true +165763 true +true +true +true +true +165770 true +true +true +165778 true +true +true +165782 true +165789 true +true +true +165797 true +true +165801 true +165804 true +165810 true +165814 true +165816 true +true +165822 true +165836 true +165844 true +165846 true +true +165850 true +165853 true +165855 true +165876 true +true +165879 true +165881 true +165889 true +165891 true +true +165896 true +165901 true +165910 true +true +165914 true +true +165936 true +165966 true +true +true +true +true +165990 true +true +165993 true +true +165996 true +166000 true +true +166008 true +true +166011 true +true +true +true +166016 true +true +166020 true +166028 true +true +166031 true +true +166036 true +166040 true +166045 true +true +true +true +166051 true +true +166055 true +true +166061 true +true +166064 true +166069 true +true +166074 true +166076 true +true +true +166084 true +166098 true +true +166108 true +true +166115 true +true +true +true +166125 true +166144 true +true +166156 true +true +166160 true +166162 true +true +true +166171 true +166176 true +166178 true +166180 true +166184 true +true +166190 true +true +166193 true +true +true +166198 true +true +166203 true +true +true +166208 true +166210 true +166215 true +166217 true +166219 true +166223 true +true +166226 true +166230 true +166232 true +true +true +166236 true +166245 true +166251 true +166253 true +true +166264 true +true +true +166272 true +166276 true +166280 true +166295 true +true +166304 true +true +166307 true +166310 true +166317 true +true +true +166322 true +true +true +166326 true +166328 true +true +true +true +166335 true +true +true +166339 true +true +166342 true +166344 true +166351 true +true +true +true +166356 true +true +166367 true +true +166374 true +166378 true +true +166381 true +166383 true +166386 true +true +166394 true +true +166408 true +166417 true +166420 true +166428 true +166439 true +166441 true +166445 true +true +166451 true +true +true +166455 true +166457 true +166461 true +true +true +166467 true +166474 true +true +true +true +166485 true +true +166488 true +true +166492 true +true +166498 true +166504 true +true +166509 true +166511 true +true +166526 true +166528 true +true +166532 true +true +166535 true +166537 true +166540 true +166542 true +166547 true +166551 true +166563 true +166565 true +166570 true +true +true +true +true +166580 true +166589 true +166592 true +166598 true +true +true +166603 true +166608 true +true +166612 true +true +166617 true +166622 true +166630 true +true +166641 true +166645 true +166647 true +true +166651 true +166655 true +true +166677 true +true +166680 true +166689 true +166693 true +true +166707 true +true +166716 true +166718 true +166726 true +true +true +166734 true +166736 true +166740 true +166742 true +166750 true +166752 true +true +166761 true +166763 true +166777 true +166791 true +true +166794 true +166799 true +true +true +true +166813 true +166827 true +true +166830 true +166836 true +true +166839 true +166859 true +166861 true +true +166864 true +166869 true +166888 true +166890 true +166895 true +166902 true +166905 true +166907 true +166914 true +true +166921 true +true +166930 true +166932 true +true +166935 true +166938 true +true +166941 true +166943 true +166950 true +166952 true +true +true +166957 true +true +true +166969 true +true +166977 true +true +true +true +166985 true +166989 true +true +166994 true +167000 true +true +true +167004 true +167007 true +167044 true +167089 true +167096 true +true +true +167100 true +167109 true +true +true +167113 true +true +167116 true +true +167119 true +167176 true +true +167185 true +true +167196 true +true +true +true +167201 true +167209 true +167212 true +167214 true +true +true +167221 true +true +167224 true +167226 true +true +true +167230 true +true +true +167239 true +167245 true +true +true +true +167251 true +true +167257 true +167263 true +167272 true +true +167279 true +167283 true +true +167296 true +167299 true +167308 true +167316 true +true +true +true +167321 true +true +167331 true +true +true +true +true +167344 true +true +167349 true +true +167367 true +167369 true +true +true +167377 true +167383 true +true +true +true +167390 true +167393 true +167397 true +true +true +167406 true +167409 true +167412 true +167418 true +true +167446 true +true +167450 true +true +true +167458 true +167460 true +167466 true +true +true +167471 true +167473 true +167478 true +true +167485 true +167499 true +167507 true +167512 true +true +167526 true +true +true +true +167532 true +true +167544 true +true +true +167548 true +true +true +true +true +167556 true +true +167559 true +167565 true +true +167568 true +167571 true +167576 true +true +true +167583 true +167586 true +167588 true +167591 true +true +167594 true +true +167600 true +167608 true +167613 true +true +true +167620 true +167630 true +true +true +167637 true +167643 true +167652 true +true +167655 true +167666 true +167690 true +true +167703 true +true +167710 true +167728 true +167731 true +167746 true +167757 true +true +167766 true +167771 true +true +167783 true +167786 true +167788 true +167796 true +167805 true +167815 true +true +167820 true +167824 true +167836 true +167844 true +167852 true +true +true +167865 true +true +167871 true +167873 true +true +true +167878 true +167881 true +167883 true +true +167888 true +true +167899 true +167909 true +167915 true +true +true +true +true +167934 true +true +167945 true +167947 true +167950 true +true +167957 true +167959 true +167962 true +167964 true +true +167967 true +167972 true +167974 true +true +167977 true +167981 true +true +167984 true +167989 true +true +167992 true +true +true +true +168011 true +168013 true +168022 true +168028 true +168032 true +168034 true +true +true +true +168041 true +true +true +true +true +168047 true +168050 true +168059 true +168061 true +168064 true +168067 true +true +168070 true +168073 true +true +168083 true +168093 true +true +168105 true +168110 true +true +true +168122 true +168134 true +true +168140 true +168144 true +168151 true +168157 true +168159 true +168166 true +true +168177 true +168184 true +true +168202 true +true +true +168206 true +168208 true +true +true +168221 true +168225 true +168231 true +168233 true +168252 true +true +true +168261 true +168263 true +168267 true +true +168277 true +168279 true +168282 true +168286 true +true +168289 true +true +168293 true +168297 true +168302 true +true +168305 true +168307 true +true +168316 true +true +168319 true +168325 true +true +true +168331 true +168333 true +true +168336 true +168340 true +168345 true +true +168348 true +true +168354 true +168365 true +168370 true +168372 true +168388 true +168396 true +168407 true +true +168411 true +168418 true +true +168427 true +true +168430 true +true +168435 true +168438 true +168443 true +168447 true +true +168452 true +true +168456 true +168460 true +168479 true +168487 true +true +true +168493 true +true +168501 true +true +168504 true +168509 true +true +168515 true +168519 true +168524 true +168526 true +168528 true +true +true +168532 true +true +168544 true +true +168549 true +true +168560 true +168565 true +168568 true +true +168579 true +168582 true +168586 true +true +168600 true +168627 true +168636 true +true +168639 true +168645 true +168647 true +168661 true +168665 true +168670 true +true +168674 true +168684 true +168687 true +true +168691 true +168693 true +true +168707 true +true +168714 true +true +168729 true +true +true +true +true +168741 true +true +true +168749 true +true +168752 true +168774 true +168795 true +168806 true +168809 true +168814 true +168816 true +168823 true +168826 true +168829 true +168835 true +168841 true +true +true +true +168846 true +true +168854 true +true +168857 true +168860 true +168862 true +true +168865 true +168880 true +true +true +168888 true +168891 true +168893 true +168897 true +168899 true +168915 true +168919 true +true +168922 true +168925 true +168932 true +true +168938 true +true +true +168944 true +true +168950 true +168952 true +168958 true +168960 true +168963 true +true +168968 true +true +true +true +true +true +true +168976 true +168983 true +true +168993 true +true +true +169001 true +169004 true +169006 true +true +169010 true +169012 true +169015 true +169028 true +169030 true +true +true +169037 true +169043 true +169045 true +169048 true +169063 true +169071 true +169076 true +169083 true +true +169086 true +169095 true +true +169104 true +169118 true +169125 true +169130 true +true +169135 true +true +169144 true +true +169151 true +169163 true +true +169169 true +169176 true +169180 true +true +169189 true +169191 true +true +true +true +true +169202 true +true +169207 true +169213 true +169222 true +true +169238 true +true +169241 true +true +169249 true +169251 true +true +true +true +169257 true +169267 true +169275 true +true +169281 true +true +169284 true +true +169287 true +true +169290 true +169292 true +169302 true +true +true +true +169307 true +169311 true +169320 true +true +true +true +169326 true +169331 true +169336 true +true +169340 true +169343 true +169347 true +169349 true +true +169361 true +true +true +169366 true +true +169371 true +true +169375 true +169380 true +169388 true +true +169401 true +169407 true +169409 true +169421 true +true +true +169428 true +169431 true +true +169438 true +true +169442 true +169445 true +169451 true +true +true +true +true +true +169458 true +169464 true +true +true +169468 true +true +true +true +true +169475 true +true +169478 true +true +true +true +169484 true +169488 true +true +169491 true +true +true +true +169497 true +169499 true +169506 true +169509 true +169511 true +169516 true +true +169522 true +true +169525 true +169530 true +169532 true +true +169540 true +169552 true +169562 true +169565 true +169569 true +true +true +169578 true +true +169581 true +true +true +true +169593 true +169595 true +true +169600 true +true +169610 true +true +true +true +169615 true +true +true +true +true +169639 true +true +169642 true +169646 true +169655 true +169657 true +169679 true +true +169682 true +169688 true +169690 true +true +true +169694 true +169699 true +true +true +true +169713 true +169724 true +169729 true +169738 true +169741 true +true +true +169746 true +169752 true +true +true +true +169770 true +169806 true +true +169821 true +true +169824 true +true +true +169829 true +169850 true +169862 true +169880 true +169883 true +true +169898 true +169929 true +true +169933 true +169948 true +true +true +169956 true +169959 true +169963 true +169965 true +169967 true +169970 true +true +169976 true +169981 true +true +169993 true +169997 true +169999 true +170006 true +true +170014 true +170016 true +true +170025 true +170034 true +170036 true +170038 true +true +170042 true +170048 true +170052 true +true +170062 true +170069 true +170076 true +true +170082 true +true +170095 true +true +true +170110 true +true +170119 true +true +170122 true +170132 true +170134 true +170138 true +true +true +170142 true +170146 true +true +170154 true +true +170158 true +170160 true +true +170172 true +true +170176 true +170186 true +true +170190 true +170192 true +170195 true +170200 true +170203 true +170205 true +170208 true +170215 true +170225 true +170228 true +true +true +170243 true +170245 true +170248 true +170265 true +true +170270 true +170272 true +true +170284 true +true +true +true +170290 true +170294 true +170298 true +170300 true +170321 true +true +170324 true +170330 true +170332 true +170336 true +true +170340 true +true +170349 true +true +true +170353 true +true +true +true +170360 true +170362 true +170364 true +true +170376 true +170384 true +170390 true +true +true +170394 true +170397 true +true +170403 true +170422 true +true +170425 true +170427 true +170429 true +170436 true +170442 true +true +true +170451 true +true +true +170455 true +true +170462 true +true +170467 true +true +true +170473 true +true +170476 true +true +170490 true +170494 true +true +170510 true +170512 true +170518 true +true +true +170522 true +170533 true +true +170557 true +170562 true +170566 true +170573 true +170576 true +170578 true +170595 true +170599 true +170611 true +170629 true +true +true +170640 true +true +170643 true +true +170659 true +true +170667 true +true +170676 true +170689 true +true +170692 true +true +170697 true +170700 true +170707 true +170709 true +true +true +true +170714 true +170725 true +true +170728 true +true +true +170741 true +true +170745 true +170760 true +true +170764 true +170767 true +170774 true +true +170778 true +170783 true +170786 true +170788 true +true +true +170793 true +170799 true +170801 true +170811 true +true +170823 true +true +170826 true +true +true +true +true +true +true +true +170841 true +true +170847 true +170853 true +true +170860 true +true +170865 true +170873 true +true +170879 true +true +170888 true +170891 true +true +170897 true +true +170903 true +170911 true +true +170914 true +170944 true +true +true +170952 true +170954 true +170956 true +170960 true +true +170963 true +170986 true +true +170990 true +true +170994 true +170996 true +171002 true +true +171006 true +171013 true +171016 true +true +true +171024 true +171026 true +true +171033 true +171046 true +true +171051 true +171053 true +true +171056 true +true +true +171060 true +171064 true +true +171067 true +171069 true +171071 true +171073 true +171075 true +true +171078 true +171084 true +171086 true +true +171089 true +171093 true +171110 true +171114 true +true +171117 true +true +true +171124 true +true +171178 true +171180 true +171184 true +true +true +171197 true +171204 true +171209 true +true +171216 true +true +171220 true +171226 true +171228 true +171241 true +true +true +true +true +171247 true +true +171256 true +true +171264 true +true +171267 true +171269 true +171275 true +171287 true +171293 true +true +true +171298 true +true +171305 true +true +true +true +true +171322 true +true +true +171327 true +171329 true +true +true +true +171334 true +true +171352 true +171355 true +171363 true +171385 true +171387 true +171389 true +171393 true +true +171396 true +true +true +171400 true +171405 true +true +171408 true +true +171415 true +true +true +171424 true +true +171434 true +171437 true +171448 true +true +true +171452 true +true +171463 true +171479 true +true +true +171483 true +171488 true +true +171491 true +true +true +171511 true +true +171514 true +true +true +true +171528 true +true +171541 true +171543 true +true +true +171549 true +true +true +true +true +171557 true +true +171563 true +171567 true +true +true +171571 true +true +171579 true +171585 true +true +171591 true +true +171594 true +171596 true +171607 true +171610 true +171613 true +true +true +171621 true +true +171628 true +true +171631 true +171643 true +true +171646 true +true +171652 true +171663 true +true +171666 true +171674 true +true +true +true +true +171683 true +true +true +171692 true +171698 true +true +171706 true +171711 true +171743 true +171751 true +true +171755 true +true +171758 true +true +true +171769 true +true +171776 true +171778 true +171782 true +171785 true +true +171790 true +171794 true +171798 true +true +171801 true +true +171806 true +171811 true +171819 true +171825 true +171835 true +true +171842 true +171850 true +true +171856 true +true +171862 true +171865 true +171869 true +171872 true +true +171882 true +true +true +true +171889 true +171895 true +true +171898 true +171916 true +171927 true +true +171930 true +171932 true +171939 true +171944 true +171946 true +171952 true +true +171960 true +171987 true +true +171992 true +172000 true +true +172005 true +172012 true +true +true +172018 true +true +true +true +172024 true +true +true +true +true +172031 true +172042 true +172052 true +172055 true +true +true +true +true +172062 true +true +172066 true +true +172078 true +172082 true +true +172088 true +172094 true +172102 true +172104 true +172119 true +true +172149 true +true +172152 true +true +172177 true +true +172181 true +172189 true +172195 true +172210 true +172215 true +172224 true +true +172227 true +172233 true +172236 true +172243 true +true +172248 true +172250 true +172257 true +172268 true +true +172290 true +172292 true +true +172296 true +172298 true +172300 true +172304 true +172306 true +true +172310 true +true +172313 true +172318 true +true +172336 true +172342 true +172348 true +true +172352 true +172359 true +true +172366 true +172369 true +172374 true +true +true +true +172379 true +172386 true +172388 true +172395 true +true +172401 true +172406 true +172409 true +true +172417 true +172421 true +172430 true +true +true +172455 true +true +172459 true +172467 true +true +172483 true +true +true +172507 true +true +172512 true +172517 true +172525 true +true +172569 true +true +172586 true +true +172590 true +172593 true +true +172597 true +172601 true +172606 true +172622 true +true +true +172628 true +172630 true +172637 true +172639 true +true +172643 true +true +172648 true +172653 true +true +172662 true +172665 true +172668 true +true +172676 true +true +172681 true +172685 true +172688 true +true +172701 true +true +172729 true +true +172733 true +172743 true +true +172747 true +true +172754 true +true +172763 true +true +172768 true +true +true +172774 true +true +true +172796 true +true +true +172804 true +172806 true +172817 true +true +172821 true +172828 true +172835 true +172840 true +true +172843 true +true +172847 true +172849 true +172851 true +172868 true +true +172871 true +172875 true +172877 true +true +172880 true +172884 true +172891 true +172898 true +true +true +172903 true +172913 true +172915 true +true +172918 true +172923 true +172925 true +172928 true +172935 true +true +172939 true +172943 true +172953 true +true +172956 true +172965 true +true +172968 true +172970 true +172972 true +true +true +172986 true +172993 true +true +true +true +173002 true +true +173005 true +true +true +173009 true +173016 true +true +173019 true +173021 true +173033 true +true +173036 true +true +173039 true +true +173042 true +true +true +true +true +true +true +173051 true +true +173054 true +true +173061 true +true +173064 true +true +true +173071 true +true +173074 true +true +173077 true +173084 true +true +true +173089 true +173094 true +true +173114 true +true +173119 true +true +173126 true +173128 true +173134 true +true +true +173144 true +173149 true +173151 true +173154 true +173165 true +true +true +true +true +true +173172 true +173177 true +true +true +173181 true +true +173184 true +173189 true +true +173194 true +true +true +173199 true +173204 true +true +173208 true +true +173211 true +173214 true +173226 true +173232 true +true +173235 true +173237 true +true +173243 true +173249 true +true +173260 true +true +173265 true +173267 true +173290 true +173297 true +true +true +173306 true +173309 true +true +173326 true +true +173336 true +173354 true +173356 true +true +173364 true +173370 true +173376 true +173410 true +true +true +true +173415 true +true +173422 true +173428 true +true +173435 true +173438 true +true +173446 true +true +173453 true +true +173466 true +true +173474 true +true +true +173478 true +173480 true +173502 true +173517 true +173519 true +true +173529 true +true +true +true +true +173562 true +173564 true +true +true +173570 true +true +173574 true +173583 true +173591 true +true +true +173609 true +true +173614 true +true +173617 true +173619 true +true +173623 true +173627 true +true +true +173634 true +173643 true +173652 true +173662 true +true +true +173679 true +173681 true +173685 true +true +true +173689 true +173691 true +173701 true +173705 true +173716 true +173728 true +173731 true +173736 true +true +true +173749 true +173759 true +173766 true +173771 true +173777 true +173781 true +173787 true +173796 true +173798 true +true +true +true +true +true +173807 true +true +173810 true +173813 true +true +173816 true +173818 true +true +173821 true +173831 true +173839 true +173841 true +173849 true +true +true +173853 true +173867 true +173874 true +true +173885 true +173890 true +true +173919 true +true +true +true +true +true +173926 true +173934 true +true +173941 true +true +173951 true +173953 true +173958 true +173962 true +173970 true +173983 true +true +173986 true +174010 true +true +174023 true +true +174038 true +true +174042 true +174057 true +174064 true +174095 true +174099 true +true +174105 true +174138 true +174140 true +true +174144 true +174149 true +174151 true +174155 true +true +174160 true +174164 true +174166 true +174169 true +true +174193 true +174200 true +174202 true +174212 true +174222 true +true +174233 true +true +174243 true +174250 true +174252 true +174266 true +174277 true +true +true +174281 true +true +174289 true +true +174297 true +174324 true +174326 true +true +174335 true +true +174340 true +174345 true +true +174357 true +174364 true +true +174390 true +174398 true +true +true +true +174409 true +true +174414 true +true +174421 true +174427 true +true +174432 true +174434 true +true +true +true +true +174440 true +174446 true +174452 true +true +174457 true +174459 true +true +174466 true +174472 true +true +174475 true +174480 true +true +true +174485 true +174489 true +174495 true +174501 true +174515 true +true +true +174519 true +174521 true +true +174558 true +174560 true +true +174563 true +true +174576 true +true +174580 true +174583 true +174596 true +174600 true +true +true +174612 true +174622 true +174632 true +174638 true +174645 true +174648 true +true +true +true +174653 true +174661 true +174663 true +174672 true +174694 true +174702 true +174704 true +174712 true +true +174716 true +174729 true +174743 true +174755 true +true +174766 true +true +174771 true +174773 true +true +true +174777 true +174781 true +true +true +174788 true +174795 true +true +174798 true +174802 true +true +174805 true +174808 true +true +174811 true +174823 true +174833 true +true +174837 true +174845 true +174861 true +true +174866 true +true +true +174879 true +true +true +true +174892 true +174894 true +true +true +true +true +true +174905 true +174911 true +174917 true +174919 true +174928 true +174930 true +true +true +174934 true +174940 true +174960 true +174987 true +true +174993 true +175000 true +175005 true +175015 true +175019 true +175024 true +175030 true +175044 true +175053 true +175058 true +175061 true +175064 true +175089 true +true +175092 true +175099 true +175114 true +true +true +175121 true +true +true +175126 true +true +175135 true +175160 true +175165 true +175175 true +175178 true +true +175184 true +175190 true +175197 true +175201 true +175209 true +true +175220 true +true +175223 true +175227 true +175234 true +true +true +175261 true +175274 true +true +175282 true +175286 true +175292 true +175300 true +true +true +175306 true +175315 true +175317 true +true +175322 true +true +175327 true +true +175331 true +175337 true +175343 true +175347 true +true +175350 true +true +true +175357 true +true +175363 true +175367 true +true +175373 true +175396 true +175402 true +true +175408 true +175419 true +true +175422 true +true +true +175427 true +175429 true +true +175433 true +true +175436 true +175438 true +175440 true +175442 true +175447 true +true +175460 true +175463 true +true +175472 true +true +175475 true +175485 true +true +true +true +175495 true +true +175502 true +175508 true +175511 true +175518 true +175529 true +true +175534 true +true +175539 true +true +175575 true +true +true +175580 true +true +true +175592 true +true +175597 true +true +175600 true +175602 true +175611 true +true +175618 true +175634 true +true +175664 true +175667 true +175674 true +175679 true +175704 true +true +true +175709 true +true +true +true +175714 true +175757 true +175762 true +true +175765 true +175767 true +175774 true +175782 true +true +175786 true +175788 true +175795 true +175798 true +175801 true +true +175808 true +175826 true +175832 true +175843 true +true +175846 true +175869 true +175871 true +175886 true +true +175900 true +true +true +175904 true +175912 true +175919 true +true +175950 true +175952 true +175955 true +175964 true +175972 true +175979 true +175983 true +175987 true +true +175992 true +true +176000 true +176003 true +176009 true +176011 true +true +176014 true +176030 true +true +176035 true +true +true +176040 true +true +176043 true +true +176047 true +176049 true +true +true +176069 true +176080 true +176089 true +176095 true +176097 true +true +true +true +176103 true +true +true +176108 true +true +true +176113 true +true +true +176120 true +176130 true +176145 true +true +176148 true +true +true +true +176153 true +true +true +176157 true +true +true +176161 true +176163 true +176166 true +true +176173 true +176178 true +true +176181 true +176190 true +176192 true +true +176195 true +176198 true +176203 true +true +176206 true +176208 true +176217 true +176219 true +true +176232 true +176237 true +true +176241 true +true +true +true +176253 true +true +176257 true +true +176261 true +true +176264 true +true +176268 true +176270 true +176279 true +true +176282 true +true +true +176302 true +176308 true +true +true +true +true +true +176315 true +true +176321 true +true +176326 true +true +176332 true +true +176339 true +true +176343 true +176356 true +176358 true +true +176372 true +true +176375 true +true +true +176389 true +176397 true +176406 true +true +176428 true +true +176468 true +true +true +true +176485 true +true +true +176489 true +true +true +true +176494 true +true +176497 true +176517 true +true +176523 true +true +176534 true +176536 true +176539 true +176544 true +true +true +true +176552 true +true +176557 true +true +176563 true +true +true +true +176568 true +176573 true +true +176578 true +176580 true +true +true +176591 true +true +176601 true +true +true +176612 true +176618 true +true +176622 true +176630 true +176645 true +true +176650 true +176660 true +true +true +true +true +true +true +176669 true +true +176674 true +176676 true +true +176680 true +true +176683 true +true +176689 true +176691 true +176701 true +176704 true +176706 true +true +176717 true +true +true +176725 true +176729 true +176733 true +176749 true +true +176757 true +true +176760 true +176763 true +176769 true +true +true +true +176774 true +true +true +true +176781 true +true +true +true +176793 true +176801 true +176805 true +176807 true +true +176812 true +176823 true +176825 true +176843 true +true +176846 true +176853 true +true +176856 true +176863 true +true +true +true +176869 true +176877 true +true +176881 true +176891 true +true +true +176902 true +true +true +true +176909 true +true +176917 true +176924 true +176937 true +176952 true +176954 true +true +176964 true +true +true +true +176977 true +176979 true +true +true +176999 true +177002 true +177005 true +true +177014 true +177020 true +177026 true +true +177040 true +177043 true +177045 true +177049 true +true +true +177068 true +177071 true +true +177080 true +177086 true +true +177095 true +177103 true +177123 true +true +177127 true +true +177134 true +177136 true +177142 true +true +true +177147 true +177149 true +177154 true +true +177170 true +true +177185 true +true +true +177190 true +true +177200 true +true +177203 true +true +true +true +true +177210 true +true +177213 true +177218 true +true +177221 true +177225 true +177233 true +177236 true +177239 true +true +177242 true +true +177247 true +177257 true +177262 true +true +177287 true +true +177291 true +177301 true +true +177304 true +177306 true +177318 true +177330 true +true +177340 true +177346 true +177349 true +true +177367 true +177387 true +177390 true +177396 true +177408 true +true +177417 true +177423 true +177430 true +177432 true +177434 true +true +true +177438 true +177445 true +177452 true +true +177455 true +177463 true +true +true +177467 true +177469 true +177473 true +177496 true +177505 true +177508 true +true +177511 true +177514 true +true +177520 true +177536 true +true +177544 true +177562 true +177567 true +true +true +177572 true +true +true +177576 true +177578 true +177583 true +177587 true +true +177590 true +177595 true +true +177599 true +true +177605 true +true +177608 true +true +true +true +true +true +177624 true +177637 true +true +true +true +177649 true +177656 true +true +177670 true +177673 true +true +true +true +177678 true +177682 true +177689 true +177691 true +177694 true +177697 true +true +177700 true +177704 true +177706 true +177712 true +177717 true +177727 true +true +177736 true +177740 true +true +true +true +177747 true +177749 true +177754 true +177756 true +177758 true +true +true +true +177776 true +true +177781 true +177784 true +177796 true +177798 true +177814 true +true +true +177825 true +true +177829 true +177841 true +177843 true +true +true +177848 true +true +177851 true +177858 true +true +true +177862 true +177871 true +177875 true +177882 true +177885 true +177897 true +177899 true +true +177903 true +true +177909 true +177916 true +177920 true +177922 true +177929 true +177933 true +true +177937 true +177941 true +177946 true +177948 true +177956 true +177968 true +177971 true +true +true +177976 true +177984 true +true +true +177991 true +true +178008 true +178013 true +true +178020 true +178029 true +178032 true +178050 true +178056 true +178061 true +true +true +178083 true +178099 true +178101 true +178103 true +true +178106 true +178122 true +178126 true +178132 true +true +178136 true +178142 true +true +178146 true +true +178150 true +true +178159 true +true +true +178163 true +true +178173 true +178182 true +true +true +178190 true +178192 true +178203 true +true +true +178207 true +true +178216 true +178239 true +178245 true +178247 true +178255 true +true +true +178265 true +true +178283 true +178286 true +178290 true +178295 true +true +true +true +178304 true +178329 true +178331 true +178333 true +true +178337 true +178339 true +178345 true +178351 true +178358 true +true +true +true +178368 true +178378 true +true +178381 true +178385 true +true +true +true +178397 true +178400 true +178404 true +178414 true +178416 true +true +true +178420 true +178426 true +true +true +178430 true +178438 true +178447 true +true +178450 true +true +178464 true +true +178472 true +178474 true +true +178483 true +true +178487 true +178492 true +true +178502 true +true +178520 true +178527 true +178557 true +178564 true +true +178568 true +true +178574 true +178582 true +true +true +true +true +true +178591 true +178598 true +178604 true +178609 true +true +178632 true +true +true +true +178637 true +true +178643 true +178649 true +178652 true +true +true +178660 true +true +178664 true +true +178670 true +true +true +178678 true +178683 true +178691 true +true +178698 true +178703 true +178711 true +178715 true +178719 true +true +178724 true +178733 true +true +true +true +178740 true +178745 true +true +178748 true +true +true +178754 true +178761 true +178765 true +true +178772 true +true +178775 true +true +178778 true +178780 true +true +178783 true +true +178786 true +true +178790 true +true +178793 true +178797 true +true +178800 true +178802 true +178804 true +178812 true +178814 true +178827 true +178834 true +178838 true +true +178843 true +178853 true +true +178876 true +178880 true +178905 true +true +178915 true +178917 true +true +178924 true +178928 true +178930 true +true +178952 true +true +178956 true +true +178964 true +true +178968 true +true +178971 true +true +178983 true +true +178999 true +179001 true +179004 true +true +179010 true +true +true +179014 true +179033 true +true +179036 true +true +true +true +true +179044 true +179056 true +179058 true +179068 true +179074 true +true +179079 true +true +179084 true +179090 true +true +179102 true +179113 true +true +179117 true +179121 true +true +179124 true +true +179128 true +179133 true +true +179143 true +179154 true +true +179166 true +179175 true +179179 true +true +179185 true +true +179188 true +true +179192 true +true +179199 true +179205 true +true +true +true +true +179215 true +true +179220 true +179228 true +179230 true +true +179234 true +true +true +179241 true +179254 true +179256 true +179263 true +179265 true +179273 true +179275 true +179277 true +true +179282 true +true +true +179289 true +179293 true +179302 true +179304 true +179307 true +179309 true +true +true +true +179316 true +true +179319 true +179324 true +true +true +true +179332 true +179335 true +179338 true +true +179344 true +179373 true +true +179376 true +179378 true +true +179382 true +true +179394 true +true +179401 true +true +179404 true +179412 true +true +179415 true +179419 true +179428 true +true +179431 true +179435 true +179438 true +true +179441 true +179447 true +179457 true +true +true +true +179464 true +true +179469 true +179471 true +179490 true +179493 true +true +179499 true +179504 true +true +true +179510 true +true +true +179514 true +true +true +true +179520 true +true +179523 true +true +179529 true +true +179541 true +179549 true +179551 true +179559 true +179572 true +179584 true +true +179589 true +true +179601 true +179603 true +179613 true +true +179627 true +179630 true +179644 true +179650 true +179652 true +179661 true +179665 true +true +true +179672 true +true +179678 true +true +true +179685 true +true +179691 true +179697 true +true +179704 true +true +true +true +179710 true +true +true +179717 true +true +179728 true +179735 true +true +179740 true +179742 true +179746 true +179749 true +179759 true +true +179762 true +true +true +true +true +true +179773 true +true +true +179792 true +179799 true +true +true +179821 true +true +179827 true +179846 true +true +true +179850 true +179858 true +true +true +true +true +179865 true +179873 true +true +179876 true +179878 true +179881 true +true +true +179888 true +true +true +true +179893 true +true +true +179899 true +true +179902 true +true +179905 true +true +179911 true +true +true +179915 true +true +179921 true +179925 true +179940 true +179944 true +179946 true +true +179949 true +true +true +true +179954 true +true +179961 true +179963 true +179965 true +true +179973 true +179983 true +179985 true +true +179988 true +true +179991 true +true +180009 true +true +180015 true +180024 true +true +180027 true +180033 true +180038 true +true +true +true +180046 true +true +180049 true +true +true +true +180054 true +true +true +180058 true +180061 true +true +180066 true +180071 true +180073 true +true +180079 true +180081 true +true +true +180088 true +true +180102 true +true +180106 true +true +true +180119 true +180130 true +true +180138 true +true +180141 true +180166 true +true +180174 true +180184 true +true +180187 true +180191 true +true +180202 true +true +180206 true +true +true +180216 true +180227 true +180231 true +180233 true +180243 true +true +180246 true +180249 true +180252 true +true +180256 true +180260 true +180267 true +true +true +180273 true +true +true +180277 true +180292 true +true +180296 true +180304 true +true +180307 true +true +true +true +180312 true +180321 true +180327 true +true +180345 true +180350 true +180367 true +180369 true +true +true +true +180377 true +true +180392 true +180398 true +180401 true +180405 true +180407 true +180413 true +180421 true +180423 true +true +180428 true +true +true +180432 true +180444 true +180448 true +true +180452 true +180455 true +180470 true +180473 true +true +180481 true +180483 true +180487 true +180496 true +true +180505 true +180512 true +180517 true +180519 true +true +true +true +180526 true +true +true +true +180531 true +180546 true +180556 true +180559 true +180563 true +180582 true +true +180603 true +180610 true +180613 true +true +180616 true +true +true +true +180622 true +180628 true +true +180633 true +180635 true +180642 true +true +true +true +true +true +180651 true +180655 true +true +true +180661 true +180670 true +180674 true +true +true +180682 true +180684 true +180691 true +180695 true +180700 true +true +180704 true +true +180713 true +180716 true +180718 true +180725 true +true +true +true +180730 true +180903 true +true +180907 true +true +true +true +180913 true +true +180919 true +true +true +180929 true +180934 true +180936 true +true +180944 true +180950 true +180955 true +true +180958 true +180964 true +180967 true +true +true +true +180972 true +180991 true +180996 true +181009 true +true +181012 true +181019 true +181027 true +181030 true +181039 true +181045 true +181050 true +181057 true +181063 true +true +true +181067 true +true +true +181073 true +true +true +181080 true +true +181096 true +true +181099 true +true +181102 true +true +true +181113 true +true +181118 true +true +181145 true +181147 true +181151 true +true +true +true +true +181164 true +true +true +true +181176 true +true +true +181180 true +true +181183 true +true +181196 true +true +181203 true +true +181206 true +true +181217 true +true +181224 true +true +true +181228 true +true +181231 true +true +181235 true +181241 true +181243 true +true +true +181254 true +181262 true +true +181266 true +181273 true +181279 true +true +181286 true +true +181292 true +181296 true +181312 true +181317 true +true +181322 true +true +181328 true +181331 true +true +true +true +true +181356 true +true +181359 true +181363 true +181373 true +181375 true +true +181389 true +true +181397 true +181409 true +181414 true +true +true +true +181424 true +181436 true +181447 true +181459 true +181469 true +true +true +181473 true +181481 true +true +181496 true +181502 true +181512 true +true +181515 true +181517 true +181525 true +true +181528 true +181533 true +true +181537 true +181540 true +181542 true +181547 true +true +181554 true +true +181559 true +181562 true +181571 true +181574 true +true +181579 true +true +true +181589 true +true +181593 true +true +181597 true +181612 true +true +181615 true +181625 true +181630 true +181632 true +true +181635 true +181644 true +true +181653 true +181671 true +true +181675 true +181686 true +181690 true +true +true +181696 true +true +181703 true +true +true +181712 true +true +181717 true +181726 true +181740 true +181747 true +181758 true +181761 true +true +181772 true +181782 true +true +181790 true +true +181800 true +181816 true +181824 true +true +181847 true +true +181850 true +true +true +true +true +true +true +true +true +true +181864 true +181868 true +181874 true +true +181877 true +181885 true +true +true +true +181892 true +181894 true +181900 true +true +181908 true +181921 true +181923 true +true +true +181929 true +181937 true +181939 true +true +181950 true +true +181954 true +181962 true +181979 true +true +181993 true +true +182010 true +true +182013 true +182015 true +true +182021 true +true +182031 true +182033 true +182036 true +182038 true +true +182055 true +182062 true +182065 true +182071 true +182077 true +182079 true +182082 true +182093 true +true +true +true +182116 true +182119 true +true +true +182123 true +true +182137 true +182139 true +true +182146 true +182161 true +182173 true +182175 true +182177 true +182182 true +182185 true +182191 true +182199 true +182205 true +true +182208 true +182212 true +182214 true +182217 true +182222 true +true +true +182230 true +true +182233 true +182242 true +true +182251 true +182254 true +182260 true +true +182263 true +182266 true +true +182275 true +182279 true +true +true +182283 true +182288 true +true +182297 true +182302 true +182318 true +182326 true +182337 true +182343 true +true +true +true +true +182352 true +true +182355 true +182363 true +182377 true +182389 true +182415 true +182417 true +true +true +true +182423 true +182432 true +true +182438 true +182446 true +true +182459 true +182461 true +true +182466 true +182469 true +182471 true +182474 true +182480 true +182490 true +182499 true +182503 true +true +182506 true +182511 true +true +true +182518 true +182520 true +true +182525 true +true +true +true +182534 true +182537 true +182541 true +true +182549 true +true +182562 true +true +182566 true +true +true +true +182575 true +182579 true +182582 true +182585 true +182588 true +true +182594 true +182596 true +true +true +true +182602 true +true +182605 true +true +true +true +182616 true +true +182619 true +182627 true +182634 true +182639 true +true +true +182649 true +182653 true +true +true +182672 true +182678 true +182689 true +182696 true +true +182704 true +182738 true +true +182759 true +true +true +true +182764 true +182767 true +true +182774 true +true +182777 true +true +182780 true +182784 true +true +182787 true +true +182793 true +182798 true +true +182801 true +true +182805 true +182807 true +true +182814 true +true +true +182821 true +true +182824 true +true +182827 true +182844 true +true +182859 true +182861 true +true +182865 true +true +182869 true +true +true +true +182877 true +182891 true +true +true +182899 true +true +182915 true +true +182923 true +true +true +182929 true +true +182935 true +182942 true +true +182947 true +182952 true +182954 true +true +182960 true +true +182963 true +true +182966 true +182981 true +true +182985 true +182990 true +182996 true +true +183006 true +183010 true +183014 true +183021 true +true +183024 true +183033 true +true +183047 true +183075 true +true +true +true +183088 true +183092 true +183097 true +true +183104 true +true +true +183109 true +183114 true +true +183123 true +true +183133 true +183135 true +183144 true +183152 true +183159 true +183170 true +183173 true +183185 true +183191 true +183199 true +183209 true +true +183215 true +true +true +183219 true +true +true +true +183224 true +true +183229 true +183239 true +183241 true +true +true +183245 true +true +true +183256 true +183259 true +183262 true +true +true +183271 true +true +true +183313 true +183316 true +true +183322 true +true +183339 true +183345 true +true +183363 true +183368 true +183379 true +183381 true +true +183384 true +183388 true +true +true +183392 true +183394 true +183396 true +183401 true +true +183404 true +true +183407 true +183415 true +183417 true +true +183425 true +183446 true +183457 true +183459 true +183479 true +true +true +true +183488 true +183496 true +true +183499 true +183507 true +true +183515 true +true +183518 true +183524 true +true +183529 true +true +183534 true +183536 true +183540 true +183544 true +183549 true +true +true +183564 true +183573 true +183593 true +183596 true +true +183611 true +183620 true +true +true +183624 true +true +183629 true +true +true +183638 true +true +true +183643 true +183653 true +true +183658 true +183662 true +183669 true +183672 true +183683 true +true +183688 true +183698 true +true +183701 true +183709 true +true +183720 true +183722 true +183726 true +true +183741 true +183756 true +true +183773 true +183775 true +183777 true +183783 true +true +183786 true +true +183792 true +183794 true +183799 true +true +183804 true +true +183813 true +183817 true +183822 true +true +183825 true +183834 true +183840 true +183843 true +true +183851 true +183853 true +183855 true +183858 true +183870 true +183872 true +true +true +183876 true +183878 true +true +true +183882 true +true +true +183889 true +183892 true +true +true +183904 true +true +183910 true +183921 true +true +183924 true +true +183927 true +true +true +183938 true +183947 true +true +183957 true +183975 true +183977 true +184017 true +true +184020 true +184025 true +true +184031 true +true +184035 true +184050 true +184052 true +184054 true +184063 true +184070 true +true +184077 true +true +184080 true +184094 true +true +184115 true +true +184118 true +184120 true +184131 true +184145 true +184147 true +184149 true +184155 true +true +184159 true +true +true +true +184167 true +true +184172 true +true +184185 true +true +true +184193 true +184205 true +true +true +184213 true +184215 true +184217 true +true +184232 true +true +true +true +true +184240 true +184257 true +true +184266 true +true +184282 true +184284 true +true +true +true +184291 true +true +true +true +true +184302 true +184305 true +184309 true +true +true +184313 true +true +184321 true +184325 true +true +184330 true +true +184334 true +184339 true +true +184342 true +184348 true +184351 true +184356 true +true +184359 true +184361 true +184375 true +184379 true +184388 true +true +184394 true +184399 true +true +true +184403 true +184408 true +true +184411 true +true +184425 true +184429 true +true +184433 true +true +184448 true +true +184451 true +184467 true +184469 true +184473 true +184475 true +184480 true +184482 true +184488 true +184492 true +184498 true +184509 true +184521 true +true +true +184531 true +184538 true +true +184544 true +184547 true +184551 true +184563 true +true +184573 true +184575 true +184577 true +184601 true +184605 true +true +184612 true +184623 true +184629 true +184636 true +184639 true +true +true +true +184649 true +184651 true +184661 true +true +184693 true +true +true +true +true +true +184707 true +true +184717 true +true +true +184723 true +true +184742 true +184761 true +184774 true +184781 true +true +184784 true +184787 true +184793 true +184799 true +184802 true +184807 true +true +184840 true +true +true +true +184851 true +true +184869 true +true +184873 true +184876 true +true +184882 true +184884 true +184894 true +true +184903 true +true +184909 true +184915 true +184923 true +184932 true +184943 true +true +184946 true +184957 true +184959 true +184962 true +true +184971 true +184986 true +184997 true +185004 true +185012 true +185025 true +185029 true +185031 true +185034 true +true +185039 true +185041 true +185049 true +185056 true +185058 true +185063 true +true +true +185074 true +true +185081 true +true +185085 true +185087 true +185091 true +185104 true +true +185113 true +true +185123 true +true +185127 true +true +185130 true +185136 true +true +185141 true +true +true +185170 true +true +185173 true +true +185178 true +true +185182 true +true +185185 true +185191 true +true +185194 true +185201 true +true +true +185210 true +185214 true +true +185222 true +true +185229 true +true +185250 true +185260 true +185275 true +185283 true +185290 true +true +185293 true +185296 true +185299 true +185304 true +true +185307 true +185316 true +true +185320 true +true +185323 true +true +185327 true +185329 true +185338 true +true +185349 true +true +true +185357 true +185365 true +185367 true +185369 true +185380 true +true +true +true +185389 true +185392 true +true +185401 true +185407 true +true +185430 true +true +185433 true +185435 true +185440 true +true +185461 true +185469 true +true +185479 true +true +185496 true +true +185506 true +185510 true +185512 true +true +185515 true +185518 true +185520 true +185522 true +185534 true +185542 true +true +185548 true +185550 true +185562 true +true +185569 true +185573 true +185577 true +true +true +185581 true +185587 true +185608 true +185611 true +185615 true +185617 true +185620 true +true +185639 true +true +185650 true +true +185659 true +185670 true +true +true +185680 true +true +185700 true +185704 true +185711 true +185713 true +185726 true +true +185731 true +true +true +true +185736 true +true +185739 true +true +185745 true +185747 true +185753 true +true +true +185757 true +true +true +185773 true +true +true +185789 true +true +185801 true +true +185806 true +185810 true +185815 true +185817 true +185822 true +185827 true +true +true +true +185837 true +185840 true +true +185845 true +true +185853 true +true +true +185857 true +185869 true +185875 true +185877 true +true +185882 true +true +true +true +185887 true +185897 true +true +185900 true +185911 true +true +185918 true +true +185926 true +true +true +true +185933 true +true +true +true +true +185942 true +185947 true +true +185952 true +true +true +185991 true +true +186001 true +186003 true +true +true +true +186009 true +true +true +186014 true +true +true +186019 true +true +true +186025 true +186042 true +true +186050 true +186071 true +true +true +186083 true +true +186101 true +186110 true +true +186120 true +true +186124 true +186134 true +true +186141 true +true +186144 true +186146 true +true +186151 true +true +186154 true +186159 true +186167 true +true +186178 true +true +186188 true +true +186191 true +true +186197 true +186209 true +186221 true +186240 true +186247 true +true +186257 true +186266 true +186278 true +186281 true +186285 true +186288 true +186295 true +186338 true +186340 true +true +186344 true +true +186355 true +true +186361 true +true +186385 true +true +186390 true +186394 true +186403 true +true +186419 true +186423 true +true +186428 true +186443 true +186445 true +186449 true +186458 true +186460 true +true +186473 true +true +186490 true +true +186494 true +186500 true +186507 true +true +186522 true +186525 true +186527 true +186532 true +186534 true +186537 true +true +186550 true +186555 true +186560 true +186566 true +186573 true +186575 true +true +186586 true +true +186614 true +186616 true +true +true +186623 true +true +186629 true +true +186632 true +true +true +true +186645 true +186648 true +186650 true +186657 true +186663 true +true +186670 true +true +true +186678 true +186680 true +true +186683 true +true +true +186692 true +true +true +true +186697 true +true +186703 true +true +186706 true +186708 true +186719 true +true +true +true +true +186728 true +true +186741 true +true +true +186745 true +true +true +true +186751 true +186753 true +186755 true +true +186758 true +true +186765 true +186767 true +true +true +186776 true +true +186785 true +true +186794 true +true +186804 true +true +186809 true +true +186822 true +186826 true +true +186831 true +186836 true +true +186839 true +true +186842 true +186845 true +186853 true +186855 true +true +true +186862 true +186870 true +186874 true +true +186877 true +186882 true +true +186885 true +186887 true +186898 true +186901 true +true +186904 true +true +186907 true +186909 true +true +186914 true +true +true +true +true +186920 true +186923 true +true +true +186932 true +186943 true +186947 true +186952 true +186954 true +186960 true +186962 true +186965 true +186974 true +186976 true +186987 true +true +186990 true +187004 true +true +187007 true +true +true +187013 true +true +true +187022 true +187024 true +true +true +187028 true +187033 true +true +true +187039 true +187042 true +187044 true +187049 true +187055 true +true +187058 true +187066 true +true +187073 true +187075 true +187079 true +true +187083 true +true +187088 true +187104 true +true +true +true +187111 true +true +true +true +true +true +187121 true +187124 true +true +187128 true +187140 true +187142 true +true +187146 true +true +187163 true +true +187168 true +true +true +187172 true +187188 true +true +true +true +187193 true +187195 true +true +187198 true +187202 true +187204 true +true +true +true +187209 true +187216 true +true +187219 true +187223 true +187225 true +true +187233 true +true +true +187237 true +187239 true +187250 true +187252 true +true +true +187261 true +true +187265 true +187269 true +187290 true +true +true +true +187295 true +187297 true +true +187306 true +187309 true +187320 true +187331 true +true +187337 true +true +true +true +187342 true +187345 true +187362 true +187366 true +true +true +187376 true +187385 true +true +187392 true +187396 true +187402 true +true +187405 true +true +true +187411 true +187423 true +187427 true +187435 true +true +187443 true +true +187447 true +187457 true +true +true +187469 true +187471 true +187477 true +187495 true +187497 true +187501 true +true +187509 true +187515 true +true +187520 true +187523 true +187527 true +true +187539 true +true +true +187550 true +187553 true +true +187561 true +true +187566 true +187572 true +187575 true +true +187585 true +true +true +187591 true +187608 true +true +true +187612 true +true +187625 true +187628 true +187632 true +187642 true +187644 true +187648 true +187653 true +true +187661 true +187664 true +187668 true +187670 true +true +true +187674 true +187677 true +187680 true +true +true +187686 true +187692 true +true +true +true +187703 true +true +true +true +187709 true +187716 true +true +187719 true +187727 true +187729 true +true +187744 true +187746 true +true +187751 true +true +true +true +187757 true +187759 true +187765 true +true +187771 true +187792 true +true +187812 true +true +187826 true +true +187849 true +true +187853 true +true +187858 true +true +187863 true +true +187892 true +187894 true +true +187897 true +187900 true +true +187907 true +187914 true +true +187918 true +true +187924 true +true +187928 true +true +187932 true +187941 true +true +187947 true +true +true +187951 true +true +187955 true +true +true +true +187967 true +true +true +true +true +187985 true +true +true +true +187993 true +187995 true +true +188001 true +true +true +true +true +188017 true +true +188023 true +true +188036 true +true +188046 true +true +true +188056 true +true +188064 true +true +true +188078 true +true +188091 true +true +true +188110 true +true +188117 true +188122 true +188128 true +188134 true +188139 true +188143 true +true +true +188159 true +true +188162 true +188167 true +188175 true +true +true +188180 true +true +true +188196 true +188200 true +true +188203 true +188205 true +188211 true +true +188216 true +true +true +true +true +true +true +188230 true +188232 true +188251 true +188253 true +true +true +188261 true +188263 true +188291 true +188300 true +true +188318 true +188321 true +188328 true +188348 true +true +188365 true +true +188368 true +188370 true +188379 true +true +true +true +188384 true +188401 true +true +188404 true +188417 true +true +true +188434 true +true +188446 true +188454 true +188465 true +true +188469 true +188472 true +188478 true +188482 true +188484 true +true +188490 true +188505 true +188513 true +true +188519 true +188521 true +188536 true +true +true +188545 true +188574 true +188583 true +true +188588 true +188598 true +true +188609 true +188618 true +188628 true +true +188636 true +188642 true +true +true +188650 true +true +188655 true +188660 true +true +188670 true +true +188674 true +188677 true +188702 true +true +188705 true +188710 true +188715 true +true +188718 true +188731 true +188733 true +188735 true +188737 true +188750 true +188788 true +true +188794 true +true +188799 true +true +188804 true +188807 true +188815 true +188825 true +true +true +188830 true +true +188839 true +true +188847 true +true +true +true +188852 true +true +188870 true +true +true +188875 true +188877 true +188879 true +188881 true +188883 true +188885 true +true +true +188896 true +188913 true +188925 true +true +188933 true +true +188954 true +188977 true +true +188985 true +188991 true +true +189005 true +189012 true +true +true +189016 true +189021 true +189023 true +189025 true +189036 true +true +189054 true +189056 true +true +189060 true +true +189070 true +true +189077 true +true +true +true +189082 true +189088 true +true +189091 true +189095 true +true +true +true +true +189128 true +189137 true +189145 true +189153 true +true +189156 true +189170 true +189172 true +189175 true +189179 true +189183 true +189192 true +189198 true +189208 true +true +189220 true +189222 true +true +189226 true +true +189235 true +189237 true +true +189241 true +189253 true +189261 true +true +189270 true +true +true +189283 true +189289 true +true +189298 true +189305 true +true +189313 true +189317 true +true +true +189328 true +true +true +189337 true +189343 true +true +189348 true +true +189354 true +189356 true +189365 true +true +189382 true +189385 true +189394 true +189402 true +189411 true +189415 true +189417 true +189419 true +189433 true +189440 true +189453 true +true +189461 true +true +true +189465 true +189467 true +true +189470 true +189481 true +true +189494 true +true +189507 true +true +true +189518 true +true +189529 true +189531 true +189540 true +189545 true +189547 true +189562 true +true +true +true +189573 true +189575 true +189577 true +189579 true +189592 true +true +189611 true +true +189619 true +true +189622 true +189627 true +189629 true +true +true +true +189634 true +true +true +true +189644 true +true +189647 true +189652 true +true +189658 true +189665 true +189675 true +true +189679 true +189685 true +true +189688 true +189700 true +189703 true +189709 true +189721 true +189728 true +true +true +true +189733 true +true +189737 true +true +189742 true +189745 true +true +189749 true +true +189752 true +189758 true +189760 true +189769 true +true +189772 true +189776 true +189781 true +true +189785 true +189791 true +189812 true +true +189820 true +true +189823 true +true +189826 true +189830 true +true +189833 true +189840 true +189843 true +true +true +true +189852 true +true +189860 true +true +189863 true +189871 true +true +189887 true +189889 true +189893 true +189897 true +true +true +189908 true +189910 true +true +189915 true +189934 true +189952 true +true +189955 true +189965 true +true +true +true +true +189977 true +189999 true +190007 true +true +190012 true +190014 true +190026 true +true +190031 true +true +190037 true +true +190046 true +190060 true +190071 true +true +190077 true +190087 true +true +190093 true +true +190115 true +true +190141 true +190144 true +190151 true +true +190164 true +true +190200 true +190205 true +true +190221 true +190225 true +true +190236 true +190241 true +190244 true +190248 true +true +true +true +true +190260 true +190267 true +true +190270 true +190272 true +190278 true +190280 true +190290 true +190292 true +190297 true +true +190305 true +190307 true +190309 true +190330 true +190335 true +true +190340 true +190342 true +true +true +190353 true +true +true +190361 true +true +190364 true +true +true +190368 true +190370 true +190382 true +true +190387 true +190393 true +true +190417 true +true +true +190422 true +190424 true +190428 true +true +true +true +true +true +true +190436 true +true +190439 true +true +190446 true +true +190450 true +190458 true +190468 true +true +190474 true +190477 true +190481 true +true +190485 true +190488 true +190500 true +190502 true +true +190507 true +true +190521 true +190525 true +true +true +true +true +true +190536 true +true +190552 true +true +190558 true +true +190561 true +true +190570 true +190573 true +190575 true +190582 true +true +190585 true +true +190588 true +190599 true +190606 true +190608 true +190611 true +true +true +190617 true +true +true +true +190628 true +true +true +190634 true +true +190639 true +190642 true +190645 true +190649 true +true +190656 true +190658 true +190661 true +true +true +true +true +190669 true +190677 true +190680 true +true +true +190685 true +190689 true +true +190692 true +190698 true +true +190705 true +true +190710 true +190715 true +true +190723 true +190727 true +190733 true +190737 true +true +true +true +190742 true +190750 true +190752 true +190769 true +190777 true +190779 true +190786 true +true +190790 true +190801 true +190813 true +true +190830 true +190834 true +190836 true +true +true +190840 true +190849 true +true +190852 true +190856 true +190865 true +true +190868 true +true +190873 true +190876 true +190891 true +true +190894 true +190897 true +true +true +190902 true +true +true +true +190912 true +190919 true +true +190922 true +true +true +190926 true +190932 true +190944 true +190946 true +190954 true +true +190959 true +190965 true +true +190971 true +true +190986 true +190998 true +191013 true +191032 true +191036 true +191045 true +191049 true +true +191052 true +191057 true +191074 true +191078 true +true +191082 true +191087 true +true +191100 true +true +191104 true +191113 true +true +191138 true +true +191143 true +191145 true +true +191148 true +191158 true +true +191161 true +true +191170 true +191172 true +191176 true +191184 true +true +191193 true +191195 true +191227 true +191240 true +true +191244 true +191248 true +true +true +191252 true +191259 true +191263 true +191284 true +191288 true +191302 true +191304 true +191308 true +true +191329 true +true +191350 true +true +191360 true +191365 true +191368 true +191370 true +191383 true +true +191388 true +true +191397 true +true +true +191401 true +191424 true +true +true +true +191431 true +191434 true +true +191459 true +191466 true +191474 true +191476 true +191480 true +191486 true +191492 true +true +191497 true +true +true +true +true +191507 true +191509 true +true +191515 true +true +191518 true +191520 true +191522 true +true +191525 true +191528 true +191537 true +true +191542 true +191554 true +true +true +191560 true +191571 true +191579 true +191586 true +true +true +191604 true +191614 true +191624 true +191626 true +191632 true +true +191635 true +191642 true +191654 true +true +191660 true +true +191663 true +191666 true +true +191669 true +191674 true +191678 true +true +191687 true +191691 true +true +true +191698 true +true +191701 true +true +true +191715 true +191717 true +true +191730 true +191759 true +true +191773 true +191782 true +true +true +true +191797 true +true +191801 true +true +191804 true +191808 true +191833 true +191835 true +191840 true +true +191843 true +191849 true +191852 true +true +true +191858 true +191863 true +true +191868 true +191870 true +191877 true +true +191881 true +191893 true +true +191901 true +191906 true +true +191909 true +true +true +191922 true +true +191925 true +191928 true +true +true +true +191934 true +191940 true +true +191955 true +true +191958 true +191960 true +191978 true +191980 true +191990 true +true +192013 true +true +192021 true +true +192026 true +true +192035 true +true +192052 true +192054 true +192057 true +192066 true +192072 true +true +192075 true +192079 true +true +192085 true +true +192091 true +true +true +192098 true +192102 true +192105 true +192107 true +true +192113 true +192117 true +true +192120 true +true +true +192141 true +192147 true +192149 true +true +192153 true +192174 true +192187 true +192196 true +192205 true +192208 true +192221 true +true +192224 true +192226 true +true +true +true +true +192239 true +true +192243 true +true +192247 true +true +192251 true +192253 true +192262 true +192265 true +true +true +192282 true +true +true +true +192292 true +true +192295 true +true +192299 true +true +192302 true +true +192310 true +true +192337 true +192350 true +true +192358 true +192376 true +true +192410 true +192415 true +true +192423 true +true +192432 true +true +192447 true +true +192467 true +true +192473 true +true +192479 true +true +192482 true +192494 true +192501 true +true +true +true +192513 true +true +192519 true +192521 true +true +192526 true +true +192531 true +192533 true +true +true +192537 true +true +true +192541 true +true +192544 true +true +true +192552 true +true +true +192573 true +true +true +192587 true +192589 true +192592 true +192594 true +192599 true +192601 true +192616 true +192620 true +192627 true +true +192630 true +true +192641 true +192650 true +192652 true +192659 true +true +192667 true +true +192670 true +192673 true +192681 true +true +192691 true +true +192698 true +true +true +192704 true +true +192718 true +192723 true +true +192726 true +192732 true +true +true +192737 true +192739 true +true +true +true +192747 true +true +192751 true +true +192756 true +true +192759 true +true +192766 true +true +192769 true +true +192774 true +192781 true +192783 true +true +true +192787 true +192792 true +192795 true +192810 true +192816 true +192819 true +192822 true +192832 true +192846 true +true +192854 true +true +192862 true +192864 true +192866 true +192869 true +192871 true +true +true +192892 true +192898 true +192901 true +true +192910 true +true +192913 true +true +192924 true +true +192927 true +192943 true +true +true +true +192948 true +192951 true +192953 true +192963 true +true +true +true +192968 true +192972 true +true +192976 true +true +true +true +true +192983 true +true +true +true +192989 true +true +192992 true +true +true +true +193000 true +193002 true +193005 true +true +193011 true +193013 true +true +true +193019 true +true +true +193029 true +193033 true +193042 true +193051 true +193053 true +193056 true +193063 true +true +true +193068 true +true +193071 true +true +193074 true +true +193080 true +true +true +193085 true +193087 true +true +true +193092 true +true +193096 true +true +193100 true +true +true +193105 true +true +193114 true +193120 true +true +193123 true +true +193130 true +193133 true +193140 true +true +193144 true +true +true +193153 true +193159 true +193206 true +193213 true +193215 true +193225 true +true +true +193253 true +true +true +true +193258 true +193262 true +true +193268 true +true +193283 true +193291 true +true +193296 true +true +193300 true +193315 true +193320 true +true +193326 true +true +193329 true +true +193332 true +true +193351 true +true +193355 true +193358 true +193365 true +193367 true +193374 true +193387 true +true +true +193392 true +193395 true +193400 true +193407 true +193411 true +true +193419 true +193434 true +true +193437 true +193440 true +true +true +true +true +193446 true +193448 true +193456 true +true +193459 true +193463 true +193471 true +193474 true +193483 true +true +193507 true +193530 true +193543 true +true +193548 true +true +193551 true +193566 true +true +true +193577 true +193592 true +true +193595 true +193600 true +true +193605 true +true +true +193627 true +true +193630 true +193632 true +193635 true +193637 true +193641 true +true +true +193645 true +193660 true +true +193667 true +true +193670 true +true +193680 true +193692 true +193694 true +true +193697 true +193706 true +true +true +true +193711 true +193713 true +true +true +193722 true +193724 true +true +true +193728 true +true +true +193738 true +193743 true +true +true +true +193753 true +true +true +193760 true +193762 true +193770 true +true +193791 true +true +193794 true +193799 true +193802 true +true +193809 true +193814 true +193816 true +193818 true +true +true +true +193832 true +true +193835 true +193837 true +193841 true +true +193845 true +193851 true +true +true +193881 true +193889 true +true +193892 true +true +193897 true +193900 true +193933 true +193939 true +193945 true +true +193955 true +true +193969 true +193971 true +true +193978 true +true +194001 true +true +true +194011 true +true +194014 true +194024 true +194028 true +true +true +194039 true +true +194054 true +true +true +true +194062 true +true +194074 true +194085 true +194090 true +194095 true +true +194102 true +true +true +true +194107 true +true +194112 true +true +194120 true +true +true +194124 true +194131 true +true +194134 true +194139 true +194143 true +true +true +194153 true +194157 true +true +true +true +true +194182 true +true +194191 true +194193 true +true +194205 true +true +true +194211 true +194214 true +194216 true +194222 true +194227 true +194236 true +194238 true +194240 true +194243 true +true +194248 true +true +194252 true +true +true +194256 true +194259 true +194264 true +true +true +194270 true +194272 true +true +194292 true +true +true +194296 true +194300 true +194302 true +194304 true +194307 true +true +194310 true +194334 true +194338 true +true +true +true +194345 true +194356 true +true +true +194362 true +194364 true +194366 true +true +194376 true +true +true +194382 true +194384 true +true +194390 true +true +194407 true +true +true +194413 true +194415 true +true +194425 true +true +true +194433 true +194435 true +194443 true +194449 true +194454 true +true +194457 true +true +194460 true +true +194463 true +true +true +true +true +194473 true +true +194478 true +true +194486 true +true +194494 true +194496 true +true +194502 true +194508 true +194516 true +true +true +194530 true +true +true +true +194539 true +true +194552 true +194554 true +194561 true +true +true +194581 true +194584 true +true +true +194599 true +194607 true +true +true +194611 true +true +194616 true +true +194619 true +194628 true +true +true +194633 true +194656 true +true +194660 true +194675 true +true +194683 true +true +194698 true +true +194704 true +194708 true +194711 true +true +194721 true +true +true +true +true +true +194733 true +true +194753 true +194757 true +194764 true +true +194771 true +194779 true +true +194794 true +194801 true +true +194805 true +194811 true +true +194817 true +true +194826 true +194834 true +true +194839 true +true +194842 true +194870 true +true +194875 true +true +194879 true +194899 true +true +194902 true +194908 true +true +194930 true +194940 true +true +194943 true +true +true +194948 true +194954 true +true +true +194958 true +194967 true +194971 true +194975 true +true +194981 true +true +true +194992 true +194994 true +195000 true +true +195014 true +195020 true +true +195027 true +true +195041 true +true +true +195048 true +195050 true +true +true +true +195056 true +195058 true +195060 true +true +195076 true +true +true +195080 true +195085 true +true +true +195090 true +195104 true +true +195111 true +true +195115 true +true +195119 true +true +195122 true +195126 true +true +195129 true +true +true +true +195135 true +195139 true +195143 true +true +195147 true +195156 true +195158 true +true +195177 true +195183 true +true +true +195205 true +195215 true +true +195223 true +195226 true +true +195229 true +195239 true +true +true +true +195244 true +195248 true +195250 true +195255 true +195270 true +true +true +195285 true +true +195299 true +195308 true +true +195311 true +195316 true +195318 true +true +195321 true +true +195331 true +true +true +true +195337 true +195340 true +195349 true +true +195356 true +true +195359 true +195363 true +true +195368 true +195372 true +195374 true +195378 true +true +true +195382 true +true +true +195386 true +true +195389 true +195391 true +195408 true +195421 true +195432 true +true +195437 true +195442 true +195446 true +true +195456 true +true +true +195460 true +195464 true +true +true +195469 true +true +195476 true +true +195479 true +true +195482 true +195487 true +195492 true +195496 true +195529 true +true +195537 true +195541 true +true +true +true +195553 true +true +195556 true +195560 true +195566 true +true +195571 true +195574 true +195583 true +195585 true +true +195592 true +195597 true +195600 true +true +195608 true +195615 true +true +195618 true +true +195623 true +195635 true +195644 true +195662 true +true +195665 true +true +true +195672 true +true +195675 true +195678 true +195689 true +true +195704 true +195707 true +195709 true +195712 true +true +195715 true +195720 true +195722 true +195725 true +195728 true +195730 true +195734 true +true +true +195738 true +195740 true +true +195747 true +195749 true +195755 true +195762 true +195766 true +195768 true +195781 true +true +195784 true +195791 true +195793 true +195805 true +195815 true +true +true +195825 true +true +true +195829 true +195832 true +true +195840 true +195846 true +195848 true +195857 true +true +195861 true +195864 true +195869 true +195878 true +195881 true +195883 true +195893 true +195895 true +195899 true +195904 true +true +195907 true +true +195914 true +195921 true +true +true +true +195926 true +195928 true +195932 true +true +true +195937 true +195940 true +195942 true +195946 true +195948 true +195954 true +195959 true +195961 true +195967 true +195981 true +true +195990 true +195996 true +true +196005 true +true +196008 true +196019 true +196024 true +true +196027 true +196030 true +196034 true +true +true +true +true +true +true +true +196043 true +true +196047 true +true +196056 true +true +196065 true +true +196069 true +true +true +196078 true +true +196081 true +196098 true +true +true +196104 true +196119 true +196121 true +196125 true +196134 true +true +196137 true +196154 true +true +196157 true +196161 true +196163 true +true +196167 true +196169 true +true +196181 true +196186 true +196196 true +true +196199 true +true +196213 true +true +true +196217 true +196234 true +196241 true +196247 true +196251 true +true +true +true +true +true +196258 true +true +true +196262 true +196268 true +true +true +196274 true +196276 true +196279 true +true +196288 true +true +196293 true +196295 true +196299 true +true +196310 true +true +true +true +196316 true +196319 true +196323 true +196328 true +196332 true +true +196335 true +196338 true +196342 true +196346 true +true +true +196353 true +true +196356 true +true +196360 true +true +196367 true +true +196370 true +196373 true +true +196377 true +196383 true +196385 true +true +true +196390 true +true +196400 true +true +196403 true +196405 true +true +196421 true +true +196434 true +true +196439 true +true +196448 true +true +196457 true +true +196475 true +true +196482 true +true +true +196492 true +196494 true +196498 true +true +196501 true +true +196507 true +true +196510 true +196514 true +true +196517 true +196526 true +196530 true +true +true +true +true +true +true +true +196540 true +true +196544 true +196546 true +true +196557 true +196561 true +196563 true +true +196567 true +196573 true +true +196576 true +196579 true +196583 true +true +196587 true +true +196592 true +196594 true +true +196601 true +196603 true +196606 true +196608 true +196616 true +196618 true +196632 true +true +196637 true +196640 true +true +196646 true +true +196655 true +196657 true +true +196662 true +196668 true +196672 true +196674 true +true +true +true +196684 true +true +196689 true +196695 true +196697 true +true +196705 true +true +true +196726 true +true +196729 true +196732 true +196752 true +196755 true +true +true +196762 true +true +true +196768 true +196774 true +true +true +196779 true +196788 true +true +196791 true +true +true +196799 true +true +196804 true +true +196808 true +196820 true +196823 true +true +196837 true +196844 true +196850 true +196867 true +196875 true +196877 true +true +true +196885 true +196891 true +196898 true +196900 true +true +true +196905 true +196912 true +true +true +true +true +196926 true +196928 true +196934 true +true +196940 true +196944 true +196951 true +196957 true +196965 true +196968 true +196975 true +196996 true +196998 true +197001 true +true +197005 true +197014 true +true +true +197020 true +true +197027 true +true +true +197042 true +197049 true +197055 true +197057 true +197061 true +true +197071 true +197076 true +197080 true +197087 true +197095 true +true +197099 true +197105 true +true +true +true +true +197112 true +true +197124 true +true +197130 true +true +true +197134 true +197136 true +true +197139 true +true +197152 true +197165 true +true +197170 true +197173 true +true +197181 true +true +true +197185 true +197189 true +true +197192 true +true +197200 true +true +197209 true +true +true +197216 true +true +197221 true +true +197226 true +true +197230 true +197232 true +197239 true +true +197248 true +true +true +true +true +197262 true +true +197270 true +197282 true +197287 true +197291 true +197295 true +197300 true +true +197304 true +197312 true +197316 true +197321 true +197331 true +197336 true +true +true +true +true +197345 true +true +197352 true +true +197360 true +197362 true +true +true +true +true +197372 true +197377 true +true +true +true +true +true +197385 true +197395 true +true +197400 true +197402 true +197408 true +true +197412 true +197416 true +197418 true +true +197421 true +197431 true +true +197436 true +197449 true +197458 true +true +true +197468 true +197473 true +197481 true +197485 true +197492 true +true +true +197498 true +true +197506 true +197511 true +true +197516 true +197523 true +true +true +197534 true +197540 true +true +true +true +197548 true +true +true +197561 true +197564 true +197567 true +197573 true +true +197583 true +197593 true +197597 true +197601 true +197603 true +197608 true +197616 true +197622 true +197628 true +true +197635 true +true +197653 true +true +197658 true +true +197665 true +197667 true +true +true +197672 true +197675 true +197678 true +197680 true +true +true +true +197692 true +197695 true +197699 true +197708 true +true +true +true +197725 true +true +197728 true +197730 true +197733 true +197740 true +197742 true +true +197764 true +true +true +197770 true +true +true +197774 true +197777 true +true +197780 true +197793 true +197795 true +true +true +197799 true +197801 true +true +true +197805 true +197813 true +197818 true +197825 true +197835 true +197841 true +197847 true +true +true +true +true +197860 true +true +197866 true +true +197869 true +197873 true +true +197878 true +197880 true +true +true +197886 true +197890 true +true +197907 true +197915 true +197922 true +true +true +197942 true +197944 true +197949 true +true +197952 true +197960 true +true +197963 true +197973 true +true +197976 true +true +197983 true +true +197987 true +198008 true +198011 true +198016 true +true +true +198020 true +true +true +198030 true +198033 true +true +198040 true +true +198044 true +true +198050 true +true +true +198054 true +198058 true +198061 true +198083 true +198095 true +true +198099 true +198115 true +198118 true +198120 true +true +198123 true +true +198129 true +198131 true +198138 true +true +198143 true +198146 true +true +true +198156 true +198160 true +198172 true +true +true +198176 true +198178 true +198183 true +198187 true +true +true +true +true +198193 true +true +198207 true +true +198217 true +198219 true +true +198225 true +true +198236 true +198239 true +198254 true +true +true +198259 true +true +198274 true +true +198277 true +true +true +true +198287 true +true +true +true +198292 true +true +198304 true +198306 true +true +true +198310 true +198316 true +true +198321 true +198323 true +198329 true +198334 true +true +198338 true +true +198344 true +198349 true +true +198356 true +198370 true +true +198377 true +true +true +true +198382 true +true +true +true +198390 true +198392 true +198395 true +true +true +198406 true +198408 true +198416 true +198418 true +198438 true +198440 true +true +true +198448 true +true +198454 true +198460 true +198462 true +true +198465 true +198467 true +198470 true +true +true +198474 true +true +true +198478 true +true +198482 true +true +198486 true +198493 true +true +198497 true +true +true +198501 true +198505 true +198511 true +198530 true +198534 true +198540 true +true +true +198545 true +198547 true +true +true +198551 true +198556 true +198558 true +198569 true +true +198575 true +198577 true +198582 true +true +198586 true +198593 true +true +198600 true +198604 true +true +true +true +198609 true +true +198618 true +198621 true +true +198624 true +198628 true +true +198644 true +true +true +198649 true +true +198655 true +true +198662 true +true +198666 true +true +198675 true +198679 true +true +true +true +true +true +198690 true +198694 true +true +198697 true +198701 true +198703 true +true +true +198710 true +true +true +198714 true +true +198723 true +true +true +true +true +198729 true +198731 true +true +198737 true +true +true +true +true +198743 true +true +true +true +198749 true +198751 true +true +198754 true +198759 true +198763 true +198768 true +198777 true +198779 true +198781 true +198784 true +true +198791 true +198794 true +true +198798 true +true +198802 true +198808 true +198813 true +198819 true +198822 true +true +198826 true +true +198836 true +198840 true +true +true +true +true +198849 true +true +true +198858 true +198863 true +198865 true +true +true +true +198878 true +true +198883 true +true +198890 true +198896 true +198904 true +198906 true +198908 true +198910 true +true +true +true +198916 true +198920 true +198935 true +198938 true +198942 true +198956 true +true +198963 true +198965 true +true +198973 true +true +198995 true +true +true +198999 true +199002 true +199007 true +199015 true +199024 true +true +199031 true +true +true +199037 true +true +199042 true +199046 true +true +199049 true +true +199055 true +199062 true +true +199066 true +true +199069 true +199087 true +199091 true +199097 true +199100 true +199102 true +199105 true +199107 true +199112 true +199121 true +199125 true +true +199129 true +true +true +199134 true +199140 true +true +199147 true +199149 true +true +199160 true +true +true +199171 true +true +199185 true +199190 true +true +199193 true +199198 true +199201 true +true +199208 true +199220 true +199223 true +true +199231 true +199234 true +true +true +true +true +true +199245 true +199248 true +199250 true +199254 true +true +199257 true +199259 true +199268 true +199274 true +199280 true +199299 true +true +true +true +true +true +true +true +true +199319 true +199332 true +199338 true +true +199352 true +true +true +true +199363 true +true +199374 true +true +true +199391 true +true +199410 true +199413 true +199419 true +true +199425 true +true +199437 true +199439 true +199444 true +true +199447 true +199453 true +199460 true +true +199476 true +199488 true +true +199491 true +199494 true +199497 true +true +true +199514 true +true +true +199518 true +199520 true +true +199535 true +true +199541 true +199546 true +true +199552 true +true +199557 true +199567 true +true +199570 true +true +true +true +199576 true +true +199584 true +true +true +199590 true +199593 true +true +true +199600 true +199603 true +199607 true +true +199620 true +199625 true +true +true +true +199636 true +199640 true +true +199645 true +199654 true +true +199658 true +true +true +199664 true +true +true +true +199669 true +199674 true +199682 true +199684 true +199697 true +true +199700 true +true +199709 true +true +199714 true +true +199720 true +true +199723 true +199728 true +true +199732 true +true +199742 true +true +199745 true +199756 true +true +199762 true +true +199765 true +199779 true +199781 true +true +true +199794 true +199796 true +199802 true +true +199812 true +true +199816 true +true +true +true +199823 true +199826 true +199831 true +199836 true +true +199839 true +true +199842 true +true +199854 true +199864 true +199866 true +true +true +199870 true +199873 true +199876 true +true +199880 true +199882 true +199886 true +199890 true +199903 true +199920 true +true +199930 true +199932 true +199940 true +199945 true +true +true +199949 true +199952 true +199954 true +199956 true +true +true +199964 true +199971 true +199979 true +true +199988 true +true +199993 true +true +true +true +199998 true +true +200005 true +200017 true +true +200026 true +200038 true +true +true +true +true +true +true +true +true +true +true +true +true +true +true +true +true +200061 true +true +200071 true +true +200080 true +200084 true +200095 true +200099 true +true +200105 true +200109 true +200113 true +200115 true +200128 true +200133 true +200139 true +200148 true +true +true +200156 true +true +200159 true +200166 true +200169 true +200184 true +200190 true +true +200193 true +200195 true +200200 true +true +true +true +true +200206 true +true +true +200214 true +200227 true +200229 true +200234 true +true +200241 true +true +200249 true +200253 true +200258 true +200260 true +200262 true +200271 true +true +true +200277 true +200279 true +200289 true +200292 true +200297 true +200304 true +true +200315 true +200317 true +200321 true +200323 true +200325 true +true +true +true +true +true +200334 true +200336 true +200344 true +true +200354 true +200356 true +true +200362 true +true +200371 true +200386 true +true +true +true +true +200392 true +200396 true +true +true +true +200403 true +200420 true +200427 true +200431 true +200443 true +200447 true +true +200451 true +200460 true +true +200467 true +200471 true +true +200476 true +true +true +200484 true +200493 true +200497 true +true +200500 true +200526 true +200532 true +200536 true +200538 true +200547 true +200574 true +true +200586 true +200595 true +200606 true +true +200612 true +200614 true +200619 true +200621 true +200632 true +true +true +true +200637 true +200644 true +true +200648 true +true +true +true +200657 true +true +200660 true +200677 true +true +200680 true +200683 true +200685 true +true +true +200711 true +true +200718 true +true +true +200724 true +true +200731 true +true +200751 true +200753 true +true +200762 true +true +200766 true +true +200771 true +true +200779 true +true +true +200791 true +true +200796 true +true +200800 true +200814 true +200819 true +true +200829 true +200839 true +200842 true +200848 true +true +200860 true +200865 true +true +true +true +200882 true +true +200894 true +200898 true +200901 true +200910 true +200920 true +200926 true +200930 true +true +200950 true +true +200979 true +200985 true +200992 true +200999 true +201005 true +true +201012 true +201020 true +201025 true +true +201060 true +true +201063 true +201078 true +201083 true +true +201098 true +201102 true +true +true +201108 true +201112 true +201117 true +true +true +true +201130 true +201143 true +201150 true +true +201154 true +true +true +true +201159 true +201167 true +201169 true +true +201172 true +201176 true +201180 true +true +201186 true +201196 true +true +201203 true +201206 true +201219 true +true +true +201224 true +true +true +201235 true +201239 true +true +true +201243 true +201255 true +201257 true +true +201275 true +201293 true +true +201296 true +201299 true +201301 true +true +201304 true +true +201311 true +true +201317 true +201319 true +201322 true +201328 true +201335 true +true +201338 true +true +true +201342 true +201346 true +201349 true +201353 true +201355 true +201359 true +201361 true +true +201367 true +true +true +true +201378 true +201388 true +201391 true +201411 true +true +true +true +201418 true +true +true +true +true +201437 true +true +201446 true +true +true +201454 true +true +true +true +true +201460 true +201465 true +201470 true +201473 true +true +true +201479 true +201487 true +true +201491 true +true +201494 true +201499 true +true +true +true +201504 true +201508 true +201510 true +true +201522 true +true +201526 true +true +201532 true +true +201539 true +true +201542 true +201547 true +201550 true +201555 true +201559 true +true +201567 true +201582 true +201586 true +true +201599 true +201601 true +201605 true +201610 true +201613 true +true +201619 true +201624 true +201626 true +201639 true +201649 true +true +true +true +201660 true +true +201667 true +true +true +true +201674 true +201707 true +true +201713 true +201716 true +201718 true +201721 true +201724 true +201726 true +201729 true +true +true +201735 true +201745 true +201749 true +true +201753 true +true +true +201757 true +201760 true +201762 true +201767 true +true +true +201771 true +201774 true +201791 true +201793 true +true +201797 true +201802 true +201807 true +true +201810 true +201815 true +true +201819 true +201821 true +true +201828 true +true +201832 true +201843 true +201853 true +201861 true +true +true +201870 true +true +201873 true +201877 true +201896 true +201898 true +201909 true +201912 true +true +201915 true +true +true +true +201926 true +true +true +true +201934 true +true +201944 true +201948 true +true +201953 true +201962 true +201969 true +true +201973 true +201975 true +201979 true +201983 true +true +true +true +201990 true +true +true +true +201995 true +201999 true +202006 true +true +202014 true +true +202024 true +true +true +true +true +true +202031 true +true +202034 true +true +202044 true +202049 true +202062 true +true +202065 true +true +true +true +true +true +202073 true +202077 true +true +true +202083 true +true +202088 true +202097 true +true +202104 true +202109 true +true +true +202118 true +true +202130 true +202136 true +202151 true +202155 true +202164 true +true +202167 true +202169 true +202180 true +true +202191 true +202193 true +202196 true +true +202199 true +202208 true +202216 true +202218 true +202222 true +202227 true +true +202243 true +true +true +true +202262 true +202265 true +true +202268 true +202271 true +202275 true +202286 true +true +true +202291 true +true +202303 true +true +202312 true +true +202315 true +202322 true +true +202335 true +202338 true +true +202341 true +202343 true +202352 true +true +202364 true +true +202368 true +true +202378 true +true +202384 true +true +202389 true +true +202393 true +true +true +202397 true +true +202404 true +true +true +202413 true +true +true +202418 true +true +202421 true +true +202427 true +true +202433 true +202435 true +202439 true +true +true +true +202449 true +202454 true +true +202460 true +true +202465 true +true +202468 true +202481 true +202485 true +202499 true +202502 true +202504 true +true +202512 true +202518 true +202520 true +202523 true +202525 true +202530 true +true +true +202534 true +202541 true +202543 true +202545 true +202551 true +true +202563 true +true +202570 true +true +202576 true +202581 true +true +202584 true +202589 true +202597 true +202600 true +true +202607 true +true +202612 true +202620 true +202623 true +true +202629 true +202633 true +true +202638 true +true +true +true +true +202644 true +true +202650 true +202652 true +202662 true +true +202668 true +202670 true +202676 true +202686 true +202694 true +true +true +202712 true +true +true +202720 true +true +true +202730 true +202735 true +202739 true +202746 true +202749 true +true +202752 true +true +202758 true +true +202768 true +202775 true +202779 true +202782 true +202790 true +202794 true +202798 true +202801 true +202803 true +202812 true +202814 true +202816 true +true +202826 true +202828 true +202832 true +202834 true +202836 true +true +true +202850 true +true +202853 true +202858 true +202861 true +202869 true +true +true +202876 true +true +true +202882 true +true +202887 true +true +202897 true +true +true +202916 true +true +202924 true +true +202927 true +202929 true +true +202935 true +true +202948 true +202952 true +true +202956 true +true +true +202964 true +202966 true +202968 true +true +202971 true +202975 true +202978 true +202985 true +202991 true +202993 true +true +203001 true +203003 true +true +203025 true +203028 true +203033 true +203037 true +203048 true +true +203052 true +true +203059 true +203062 true +203072 true +203083 true +true +203089 true +true +203095 true +203097 true +true +true +true +203102 true +203112 true +203117 true +true +true +203123 true +203125 true +203130 true +true +203134 true +true +203138 true +true +203147 true +true +203158 true +203161 true +203164 true +203169 true +203171 true +203175 true +true +203179 true +true +203187 true +true +203200 true +203209 true +203214 true +true +203217 true +true +203222 true +true +203226 true +true +true +true +true +203232 true +true +203235 true +true +203245 true +true +true +203257 true +true +true +203267 true +true +true +true +203273 true +203280 true +true +203286 true +203288 true +203291 true +203304 true +true +203321 true +true +true +true +203337 true +true +203340 true +true +true +true +203345 true +203352 true +203356 true +203366 true +203378 true +203382 true +203392 true +true +true +203396 true +203408 true +true +203411 true +true +true +203417 true +true +203432 true +203436 true +203457 true +203459 true +203461 true +true +203464 true +203469 true +true +203485 true +203491 true +203493 true +203499 true +203515 true +203523 true +true +203526 true +true +203529 true +203531 true +203546 true +true +203549 true +203555 true +203560 true +203568 true +203576 true +true +203579 true +203589 true +203598 true +203605 true +true +203610 true +203615 true +203627 true +203629 true +203632 true +203638 true +203641 true +true +203657 true +203706 true +203712 true +203725 true +true +203730 true +true +203736 true +true +true +203740 true +203773 true +203780 true +203783 true +true +true +203787 true +203789 true +203792 true +true +203802 true +true +203816 true +203821 true +203831 true +203833 true +203837 true +203840 true +true +true +true +true +203847 true +203851 true +203858 true +203861 true +203865 true +true +true +true +true +203872 true +203880 true +true +true +203889 true +true +203894 true +203902 true +true +203912 true +true +203916 true +true +true +203923 true +true +203932 true +203934 true +203938 true +203947 true +true +true +true +203952 true +203956 true +203980 true +203990 true +true +true +true +true +true +true +true +204006 true +true +204010 true +204014 true +204020 true +204022 true +true +204032 true +true +204043 true +true +204056 true +204060 true +204071 true +204073 true +204079 true +204083 true +true +204094 true +true +true +true +204100 true +204102 true +true +true +204116 true +204122 true +204126 true +true +204146 true +true +204150 true +204166 true +204168 true +204177 true +204181 true +204186 true +204193 true +true +true +204197 true +204199 true +true +204202 true +204215 true +true +true +204224 true +true +204238 true +204243 true +true +204249 true +true +true +true +true +204256 true +true +204275 true +true +204283 true +true +204295 true +204306 true +204319 true +204323 true +true +204326 true +204332 true +204335 true +true +204341 true +true +204344 true +204347 true +true +true +204355 true +204357 true +204361 true +204365 true +204367 true +204378 true +204380 true +true +204394 true +204396 true +true +204405 true +true +204425 true +204432 true +true +true +204444 true +204451 true +true +true +true +204456 true +true +204461 true +true +true +true +true +204468 true +true +204472 true +204475 true +204479 true +204490 true +204493 true +true +204500 true +true +204505 true +204518 true +true +204523 true +204525 true +true +204532 true +204545 true +204551 true +true +true +204555 true +true +204564 true +true +204568 true +true +true +204573 true +204575 true +true +204598 true +true +204602 true +204610 true +204620 true +204636 true +true +204650 true +true +true +204656 true +204666 true +204678 true +204701 true +true +204711 true +204713 true +true +204729 true +204731 true +204733 true +true +true +204745 true +204753 true +true +204762 true +204767 true +true +204785 true +true +204805 true +true +204814 true +204853 true +204858 true +204865 true +204868 true +204875 true +true +true +true +204881 true +true +204895 true +true +204899 true +204905 true +true +true +204915 true +true +true +204922 true +true +204933 true +204947 true +true +204952 true +true +true +true +true +204962 true +204968 true +true +204977 true +true +204983 true +true +204987 true +true +204991 true +204994 true +true +204998 true +205031 true +true +205039 true +205050 true +true +205055 true +205062 true +205064 true +true +205068 true +205071 true +true +205075 true +205088 true +205094 true +205103 true +true +205106 true +205116 true +205119 true +true +205122 true +205126 true +true +true +205131 true +true +205140 true +205153 true +205175 true +true +205185 true +true +205189 true +205194 true +true +true +true +true +true +205201 true +true +true +205210 true +true +205227 true +true +205240 true +true +true +205244 true +205247 true +205255 true +true +205260 true +205262 true +205267 true +205272 true +true +205275 true +true +true +true +true +true +205286 true +true +205290 true +true +205294 true +true +true +true +true +true +205302 true +true +205306 true +205308 true +205313 true +true +205316 true +true +205328 true +true +true +true +205334 true +true +true +205338 true +true +205357 true +205365 true +205384 true +205403 true +205406 true +205417 true +true +205430 true +205437 true +205445 true +true +205448 true +true +205451 true +205459 true +205466 true +205468 true +205471 true +true +205477 true +205479 true +true +205483 true +true +true +205487 true +true +205498 true +true +205509 true +205518 true +205529 true +true +205542 true +205557 true +205574 true +205576 true +205579 true +true +205582 true +205586 true +205590 true +true +205593 true +true +true +205597 true +true +205601 true +205608 true +true +205611 true +205613 true +205615 true +true +205626 true +205630 true +true +205633 true +true +true +205637 true +205642 true +true +205647 true +205657 true +true +true +205662 true +true +true +205666 true +205669 true +true +true +205677 true +true +205680 true +true +205683 true +205686 true +205689 true +205693 true +true +true +true +true +true +205700 true +true +205703 true +true +205712 true +true +205715 true +205724 true +true +205733 true +true +true +true +true +205740 true +true +205746 true +205753 true +true +true +205757 true +true +205766 true +205779 true +true +205783 true +205791 true +true +205801 true +205805 true +205816 true +true +205819 true +true +205832 true +true +205835 true +205839 true +205843 true +true +205855 true +true +true +true +true +205866 true +true +205873 true +205878 true +205885 true +true +205901 true +205906 true +true +205911 true +205917 true +205919 true +205929 true +true +true +205935 true +205938 true +true +205941 true +205952 true +205958 true +true +205961 true +205963 true +205967 true +true +true +205971 true +true +true +true +205977 true +true +true +true +true +true +205984 true +205986 true +205988 true +205991 true +205994 true +205996 true +206000 true +206005 true +206018 true +true +206022 true +206024 true +true +true +true +true +true +true +206033 true +206040 true +true +206051 true +true +206056 true +206058 true +206063 true +206065 true +true +206070 true +206075 true +true +206084 true +206087 true +true +206099 true +true +206102 true +206110 true +206124 true +206126 true +true +206130 true +206135 true +206137 true +true +206144 true +true +206147 true +206155 true +206166 true +206171 true +true +206182 true +true +true +206190 true +true +206194 true +206199 true +206203 true +206227 true +206233 true +206238 true +206246 true +206248 true +true +206251 true +206256 true +206258 true +true +true +206275 true +206281 true +true +206284 true +true +206297 true +206299 true +206303 true +206316 true +206321 true +true +true +206339 true +true +206346 true +206349 true +true +206358 true +true +206361 true +206365 true +true +206368 true +true +true +true +true +true +true +true +206377 true +206385 true +true +206388 true +206391 true +true +206394 true +206399 true +206402 true +206410 true +true +206414 true +206423 true +true +206429 true +206431 true +true +206446 true +206449 true +206453 true +true +206461 true +206464 true +true +206467 true +true +true +true +206473 true +206475 true +206480 true +206483 true +206489 true +true +206492 true +206494 true +206498 true +true +206503 true +true +206506 true +true +206512 true +true +true +true +true +true +206521 true +206527 true +206539 true +true +true +206547 true +206549 true +206555 true +true +206560 true +206566 true +true +true +true +true +206573 true +206575 true +true +true +206581 true +true +206589 true +206594 true +206596 true +true +206599 true +true +true +206606 true +true +206612 true +true +206617 true +true +true +206629 true +206633 true +true +206648 true +206662 true +206668 true +206671 true +true +206674 true +206677 true +206679 true +206683 true +206690 true +206697 true +206700 true +206711 true +206713 true +206716 true +true +206720 true +206723 true +true +true +true +true +206731 true +true +true +206742 true +true +206745 true +206748 true +true +206755 true +206757 true +206759 true +true +true +206766 true +true +true +206780 true +true +true +206785 true +206790 true +true +true +206800 true +true +206803 true +206807 true +true +206812 true +206818 true +206820 true +206823 true +true +206830 true +206842 true +true +206849 true +206852 true +true +206855 true +true +true +206860 true +true +206869 true +true +true +206873 true +206875 true +true +206885 true +206894 true +206898 true +true +206907 true +true +206916 true +206918 true +206921 true +true +206925 true +true +206937 true +206946 true +true +206952 true +206966 true +true +true +206994 true +true +206999 true +true +207005 true +true +207020 true +207022 true +207026 true +207034 true +true +true +true +207041 true +207043 true +true +true +207047 true +207050 true +207054 true +true +207063 true +207065 true +207067 true +207071 true +207073 true +207077 true +207083 true +207099 true +true +207110 true +true +true +207121 true +207124 true +207131 true +true +207134 true +207136 true +207139 true +207141 true +true +207144 true +207147 true +true +true +true +207160 true +207169 true +207171 true +207175 true +true +207182 true +207187 true +207191 true +207196 true +207200 true +true +207212 true +true +true +207217 true +207221 true +207228 true +207241 true +true +true +207246 true +true +true +207254 true +true +true +true +true +207260 true +207265 true +true +207271 true +true +true +207275 true +207285 true +207292 true +207295 true +207299 true +true +207318 true +true +207322 true +true +true +207330 true +true +207335 true +207353 true +true +207357 true +true +207368 true +true +207371 true +207375 true +true +true +207379 true +true +true +true +207389 true +true +true +true +207397 true +true +207403 true +207405 true +207409 true +true +207416 true +207418 true +207424 true +true +207434 true +207436 true +true +207446 true +true +true +207458 true +207461 true +207468 true +207472 true +true +true +207482 true +207486 true +true +207492 true +207501 true +207503 true +207518 true +207535 true +207539 true +207546 true +207549 true +207562 true +207581 true +207594 true +207603 true +207606 true +207609 true +207612 true +true +true +true +207621 true +207627 true +true +207634 true +207647 true +true +true +true +207653 true +true +207659 true +207671 true +true +true +true +true +true +207680 true +207686 true +true +207696 true +207703 true +true +true +207713 true +207722 true +207728 true +207734 true +true +207746 true +true +207749 true +207759 true +207762 true +207785 true +true +true +true +true +207799 true +true +true +207809 true +207820 true +true +true +207828 true +207837 true +true +207847 true +true +207863 true +true +207866 true +true +true +true +207872 true +true +207877 true +true +207885 true +207897 true +true +207901 true +true +207904 true +207916 true +207923 true +207929 true +207931 true +207933 true +true +207941 true +true +true +207947 true +207952 true +true +207962 true +207965 true +207967 true +207972 true +207974 true +207983 true +207985 true +true +207994 true +208001 true +true +208007 true +true +208012 true +true +true +208028 true +208032 true +208037 true +208043 true +true +208054 true +true +208057 true +true +208060 true +true +208066 true +208077 true +208091 true +true +true +208095 true +208097 true +true +208105 true +true +208108 true +208116 true +208120 true +true +208124 true +true +true +true +208129 true +208131 true +true +true +208138 true +true +208145 true +true +true +208173 true +208187 true +true +208194 true +true +208198 true +208205 true +208218 true +208223 true +true +208236 true +208238 true +true +208245 true +208251 true +208253 true +true +208258 true +true +true +208269 true +208271 true +208273 true +208297 true +true +true +true +208309 true +true +208315 true +208318 true +true +208329 true +true +true +208333 true +true +true +208338 true +true +true +true +208344 true +208347 true +true +208355 true +true +208359 true +208363 true +208367 true +208372 true +true +true +true +208378 true +true +208381 true +true +true +true +true +208394 true +true +208398 true +true +208408 true +208411 true +true +208418 true +208428 true +208436 true +true +208443 true +208446 true +true +208456 true +208462 true +208468 true +208474 true +208476 true +208478 true +208488 true +208503 true +true +208507 true +208511 true +true +208518 true +208524 true +208530 true +true +208543 true +true +true +208554 true +208557 true +true +true +208569 true +208573 true +208575 true +true +208579 true +true +208582 true +208590 true +208595 true +true +true +208604 true +208606 true +208609 true +208611 true +208613 true +true +true +208625 true +true +208630 true +208639 true +208642 true +208654 true +208656 true +true +208665 true +208668 true +true +true +208672 true +208690 true +true +208696 true +208700 true +208702 true +208708 true +208710 true +true +true +208722 true +208734 true +true +true +208738 true +208744 true +208746 true +208750 true +true +true +208759 true +true +true +208763 true +208765 true +true +true +208769 true +208771 true +208782 true +true +208788 true +true +208791 true +true +208796 true +true +208799 true +208811 true +true +208822 true +208825 true +true +true +208831 true +true +208835 true +true +208842 true +true +true +true +true +208848 true +true +208861 true +true +true +208865 true +true +208868 true +208870 true +true +208873 true +true +208881 true +true +208889 true +true +208911 true +true +208916 true +208921 true +208927 true +true +208931 true +208942 true +true +208950 true +208956 true +true +208962 true +208965 true +true +true +208969 true +true +true +true +208975 true +208980 true +true +208987 true +true +208990 true +208992 true +true +208995 true +true +true +true +209004 true +true +true +209021 true +209025 true +true +209031 true +209033 true +209035 true +true +true +209053 true +209063 true +209065 true +209067 true +209073 true +true +209076 true +209082 true +209086 true +true +209090 true +true +209101 true +true +true +true +209109 true +209114 true +true +209117 true +209124 true +true +209127 true +true +209136 true +209139 true +true +true +209152 true +209155 true +209166 true +true +true +209187 true +true +true +true +209194 true +true +true +true +209202 true +209204 true +true +209207 true +true +209210 true +true +209213 true +209216 true +true +true +209224 true +true +209227 true +true +209230 true +209233 true +209235 true +209238 true +true +209241 true +true +209249 true +true +true +true +209254 true +209256 true +209258 true +209260 true +true +209264 true +209267 true +true +true +true +209276 true +209281 true +true +209290 true +209292 true +209296 true +209304 true +true +209307 true +true +true +209311 true +209313 true +209319 true +209330 true +true +209348 true +209362 true +true +209367 true +true +true +209375 true +209378 true +209383 true +true +true +true +true +209391 true +true +209402 true +true +true +true +true +209410 true +209422 true +209424 true +true +209437 true +true +true +true +209446 true +true +true +209457 true +true +209462 true +true +209473 true +true +209485 true +true +209489 true +true +true +209500 true +true +209503 true +209507 true +209516 true +true +209521 true +true +209535 true +209537 true +true +209541 true +true +true +209550 true +true +209554 true +true +true +true +209563 true +true +209569 true +true +209572 true +209578 true +true +209584 true +true +209587 true +true +209590 true +209592 true +209597 true +209599 true +209614 true +209616 true +209619 true +true +true +true +true +true +209626 true +true +209633 true +true +true +true +true +true +true +209654 true +true +209658 true +209664 true +true +true +209670 true +209675 true +209677 true +true +209681 true +209687 true +true +209690 true +true +209699 true +true +209707 true +209711 true +209713 true +209720 true +209722 true +209731 true +209739 true +209741 true +true +true +true +true +209765 true +209767 true +209771 true +true +209774 true +209788 true +209790 true +true +209796 true +209801 true +209804 true +true +209807 true +209818 true +209823 true +true +209826 true +true +209832 true +true +209835 true +209839 true +209843 true +true +209848 true +209850 true +209853 true +true +209856 true +209863 true +209865 true +true +209872 true +true +209875 true +true +209878 true +209880 true +true +209885 true +209887 true +true +209894 true +true +true +209903 true +209916 true +209919 true +209928 true +209935 true +true +true +true +209945 true +209948 true +true +209951 true +209953 true +209955 true +true +209963 true +true +209973 true +209978 true +true +209985 true +true +true +true +209990 true +true +true +209997 true +true +210000 true +210004 true +true +210007 true +true +true +true +210017 true +210021 true +210026 true +210034 true +true +true +true +210048 true +210053 true +true +210056 true +210073 true +true +210080 true +210083 true +210087 true +true +true +210100 true +210102 true +210111 true +true +true +true +true +210117 true +true +210124 true +true +true +true +210135 true +true +210140 true +true +210143 true +true +210146 true +210150 true +true +210156 true +210159 true +true +210171 true +210176 true +true +true +210187 true +true +true +210191 true +210193 true +210195 true +210207 true +210210 true +true +210213 true +true +210217 true +210223 true +true +true +210230 true +210237 true +true +210242 true +210247 true +true +true +210253 true +true +210260 true +210262 true +true +210270 true +210278 true +210280 true +210288 true +210291 true +210293 true +210296 true +210305 true +true +210308 true +true +true +210312 true +210314 true +true +210333 true +true +210339 true +true +210342 true +210353 true +true +true +210359 true +true +true +210384 true +true +true +210388 true +210402 true +210405 true +true +true +210416 true +true +true +210420 true +true +210440 true +210443 true +true +210446 true +210457 true +210461 true +true +210467 true +true +true +210477 true +210483 true +true +true +true +210489 true +true +true +210494 true +true +210497 true +true +210503 true +210505 true +210507 true +210511 true +210513 true +210529 true +true +true +210535 true +true +210538 true +210540 true +210545 true +true +true +true +210568 true +true +210573 true +210578 true +210580 true +210584 true +210586 true +210592 true +true +210603 true +true +210612 true +true +true +true +210625 true +210629 true +true +210632 true +210646 true +210651 true +true +210654 true +210656 true +210664 true +true +210672 true +true +210675 true +true +true +210679 true +210681 true +210690 true +true +true +210695 true +210703 true +true +210706 true +true +true +210716 true +210732 true +210734 true +true +true +210738 true +true +true +210750 true +true +true +210755 true +210759 true +true +210773 true +true +210776 true +210778 true +true +true +true +210798 true +true +210807 true +210811 true +210825 true +210829 true +210836 true +true +true +210849 true +210852 true +210854 true +210857 true +210860 true +210865 true +210867 true +210874 true +210878 true +true +true +210896 true +true +210904 true +true +true +210914 true +210922 true +210928 true +true +true +210934 true +true +210944 true +210947 true +true +210962 true +210969 true +true +210974 true +true +210983 true +210985 true +210988 true +true +210991 true +211001 true +211005 true +211007 true +true +211010 true +211012 true +true +211023 true +211026 true +true +211029 true +211036 true +211060 true +true +211064 true +true +211067 true +211077 true +211080 true +211086 true +211089 true +211098 true +211114 true +211116 true +211129 true +211134 true +true +true +211150 true +true +211153 true +true +211161 true +211163 true +211170 true +true +true +211174 true +211176 true +211189 true +211192 true +211194 true +211198 true +211208 true +211210 true +true +211217 true +211230 true +true +true +true +211239 true +211246 true +211248 true +true +211262 true +true +211266 true +true +true +true +211271 true +211275 true +true +true +211282 true +true +true +true +true +true +true +true +true +true +true +true +true +true +211297 true +true +true +211301 true +211310 true +211317 true +true +211322 true +211329 true +true +true +true +211342 true +true +true +211347 true +211350 true +true +211353 true +211360 true +211364 true +211366 true +211371 true +211378 true +true +211385 true +true +true +211389 true +211391 true +211393 true +true +true +211405 true +211407 true +true +211410 true +true +211414 true +211416 true +211418 true +true +211424 true +211427 true +true +211430 true +211433 true +211436 true +211438 true +true +211444 true +true +211449 true +211458 true +211462 true +211465 true +211468 true +211470 true +211481 true +211486 true +211497 true +true +211500 true +211502 true +true +true +211510 true +true +211516 true +211518 true +true +211521 true +211529 true +211539 true +211543 true +211552 true +true +211560 true +211566 true +211569 true +211571 true +211574 true +211582 true +211590 true +true +211595 true +true +211598 true +true +211606 true +211614 true +211620 true +211624 true +true +211634 true +211639 true +true +true +211643 true +true +true +211651 true +true +211654 true +211657 true +true +211663 true +211673 true +211675 true +true +211688 true +211691 true +211695 true +true +211698 true +true +211703 true +true +211706 true +true +true +true +211714 true +211723 true +211738 true +true +true +211747 true +true +211753 true +211755 true +211765 true +true +true +211769 true +true +211775 true +true +211779 true +211785 true +211787 true +true +true +211791 true +211793 true +211805 true +true +211812 true +211823 true +211829 true +true +211832 true +211853 true +true +211856 true +true +211861 true +211869 true +211873 true +true +211876 true +211878 true +true +211883 true +true +211889 true +211897 true +211904 true +211906 true +211913 true +true +true +211918 true +211920 true +true +211927 true +true +true +211933 true +211937 true +211939 true +211954 true +211957 true +true +211972 true +211974 true +211980 true +211992 true +true +true +true +212017 true +true +true +true +212030 true +true +212035 true +true +212040 true +true +212046 true +true +212053 true +212056 true +212075 true +212082 true +212085 true +212097 true +true +212101 true +212105 true +true +true +212110 true +212114 true +true +true +212122 true +true +212127 true +212137 true +212140 true +212144 true +true +true +true +212153 true +true +212161 true +212172 true +212176 true +true +true +212180 true +212182 true +212191 true +true +212194 true +212198 true +212201 true +212212 true +true +true +true +212221 true +212225 true +true +212228 true +212230 true +212235 true +true +212243 true +true +212254 true +true +212258 true +212262 true +true +212267 true +true +212293 true +true +212303 true +true +true +212310 true +212317 true +true +212322 true +212352 true +212361 true +true +true +true +212369 true +true +true +true +212401 true +true +true +212407 true +212413 true +true +212416 true +true +212419 true +212425 true +212432 true +212434 true +212447 true +true +212457 true +true +212463 true +212468 true +true +212471 true +212473 true +true +212488 true +true +true +212502 true +true +true +true +true +212512 true +true +true +true +true +true +212519 true +212524 true +true +212529 true +true +true +true +212535 true +212537 true +true +212546 true +true +212555 true +212559 true +true +true +212569 true +212574 true +true +212580 true +true +212591 true +212593 true +true +212603 true +212615 true +true +212622 true +true +true +212631 true +true +212643 true +true +212646 true +212651 true +true +212662 true +212672 true +true +true +true +212683 true +true +212686 true +212688 true +212690 true +212698 true +true +true +true +true +212721 true +212737 true +true +212742 true +true +true +212765 true +true +true +212778 true +true +true +212782 true +212800 true +true +212804 true +true +212816 true +212821 true +212826 true +212830 true +true +212838 true +212843 true +212852 true +true +212855 true +212861 true +true +true +212866 true +true +212891 true +212896 true +true +true +true +212904 true +212907 true +212914 true +212918 true +212936 true +true +212940 true +212943 true +true +212968 true +true +true +212977 true +212981 true +212985 true +true +212990 true +212995 true +true +true +213019 true +213028 true +true +213032 true +true +213038 true +213041 true +213054 true +213070 true +213078 true +true +true +213087 true +213090 true +213095 true +true +true +213099 true +true +213102 true +213104 true +true +true +213113 true +213119 true +true +true +true +213141 true +true +213147 true +213161 true +213164 true +true +true +213168 true +213173 true +true +213187 true +213193 true +true +213200 true +true +true +213206 true +213209 true +true +213213 true +213220 true +213222 true +213224 true +213226 true +true +213231 true +213258 true +213275 true +213281 true +true +true +213285 true +true +true +213300 true +true +213304 true +213306 true +true +213335 true +true +213338 true +true +213341 true +true +213347 true +213353 true +213357 true +213365 true +213368 true +213376 true +true +213380 true +true +true +213384 true +true +true +true +213397 true +213407 true +true +213410 true +true +213413 true +213421 true +213423 true +true +213426 true +213434 true +true +true +213442 true +true +213447 true +213449 true +true +213454 true +true +213463 true +213466 true +true +true +213471 true +true +213479 true +true +213483 true +true +213486 true +true +213493 true +true +true +true +213498 true +true +true +true +213503 true +213507 true +true +213512 true +213515 true +true +true +true +213520 true +213529 true +213535 true +true +213541 true +213543 true +213550 true +true +213561 true +true +213564 true +true +true +true +true +true +213572 true +true +true +213576 true +213617 true +true +213629 true +true +213632 true +213634 true +213636 true +213638 true +213640 true +213660 true +true +213667 true +true +213671 true +213679 true +true +213685 true +true +213696 true +213704 true +true +true +213710 true +true +213713 true +213721 true +true +true +213734 true +213742 true +true +213748 true +true +213752 true +213754 true +213764 true +213766 true +213782 true +213784 true +213789 true +true +true +213798 true +213806 true +213810 true +true +true +true +213820 true +213822 true +true +true +true +213833 true +213847 true +true +true +213851 true +true +213863 true +213865 true +true +213871 true +213874 true +true +213877 true +true +true +213892 true +true +213895 true +213899 true +213901 true +true +213915 true +213934 true +true +213942 true +213946 true +true +true +213959 true +true +213963 true +true +true +true +213972 true +true +213980 true +213983 true +true +213987 true +true +213996 true +true +true +214000 true +true +214005 true +true +214011 true +214021 true +214027 true +214036 true +true +true +214044 true +true +true +214048 true +214050 true +true +true +true +214061 true +214064 true +true +true +214074 true +true +true +214084 true +true +214090 true +214092 true +214099 true +true +true +true +214106 true +214112 true +214122 true +214136 true +214138 true +true +214151 true +true +true +true +214156 true +true +214159 true +true +214168 true +214173 true +214180 true +true +214189 true +true +214192 true +214194 true +214199 true +true +214203 true +true +true +214208 true +214218 true +214220 true +214230 true +214232 true +true +true +true +214240 true +true +true +214255 true +true +214260 true +214274 true +214277 true +true +true +214285 true +214293 true +214298 true +true +214302 true +214312 true +214317 true +true +true +214337 true +true +214340 true +true +true +214344 true +true +true +true +214352 true +214356 true +true +214362 true +214375 true +true +214383 true +214385 true +214395 true +214398 true +214404 true +true +214411 true +214413 true +true +214417 true +214421 true +214427 true +214434 true +214438 true +214440 true +214443 true +214446 true +true +214458 true +214466 true +true +214477 true +214479 true +true +true +214483 true +214492 true +true +214502 true +true +true +true +true +214515 true +214517 true +214523 true +214526 true +214530 true +true +true +214537 true +214559 true +true +214562 true +true +214574 true +214588 true +214590 true +214593 true +true +214596 true +214601 true +true +214607 true +214619 true +true +214623 true +214627 true +true +true +214631 true +214635 true +true +214638 true +true +214641 true +true +214656 true +true +214666 true +214674 true +true +214677 true +214683 true +214685 true +true +true +true +214695 true +true +true +214710 true +true +214719 true +214736 true +true +true +true +214750 true +214759 true +214761 true +true +214765 true +true +214770 true +true +true +true +214775 true +214780 true +214783 true +true +214791 true +214801 true +214803 true +214818 true +214820 true +214822 true +true +214828 true +true +214833 true +214838 true +true +true +214842 true +true +214859 true +true +214865 true +true +214872 true +214876 true +true +214879 true +true +true +214885 true +true +214890 true +214893 true +true +214898 true +true +214904 true +true +true +214908 true +214924 true +true +214927 true +214935 true +214945 true +214947 true +214950 true +true +214958 true +214980 true +true +214989 true +214991 true +true +214996 true +true +215005 true +true +215019 true +true +215022 true +true +215028 true +215031 true +true +215034 true +215037 true +true +true +215041 true +215045 true +215047 true +215051 true +215054 true +true +true +215058 true +215060 true +215065 true +215067 true +215070 true +215078 true +true +215081 true +215084 true +215086 true +215095 true +215098 true +true +215103 true +215107 true +215112 true +215119 true +215122 true +215124 true +215134 true +215136 true +true +true +true +215144 true +true +true +215150 true +215152 true +215154 true +215158 true +true +215164 true +true +215172 true +215174 true +215179 true +215189 true +true +true +true +215194 true +215207 true +215212 true +215214 true +true +true +215224 true +true +true +true +215229 true +true +215232 true +215238 true +true +215244 true +215246 true +215248 true +215250 true +true +true +215254 true +true +true +215263 true +215268 true +true +215277 true +true +true +215282 true +215286 true +215295 true +215305 true +215314 true +215317 true +true +215329 true +215332 true +215336 true +215344 true +215346 true +true +true +true +true +true +true +215354 true +215357 true +215359 true +true +true +true +true +true +215368 true +true +true +true +215377 true +true +215382 true +215384 true +true +215399 true +true +true +215408 true +true +215411 true +215413 true +215419 true +true +215424 true +true +true +215441 true +215447 true +true +215461 true +215464 true +true +true +215473 true +215476 true +true +215481 true +true +true +215490 true +true +215494 true +true +true +215503 true +215505 true +215509 true +215516 true +true +215519 true +215527 true +215536 true +true +true +215543 true +215551 true +215553 true +true +true +215565 true +215568 true +215573 true +215580 true +true +215586 true +true +true +215593 true +true +215606 true +true +215609 true +215618 true +true +215623 true +true +true +215632 true +true +true +215639 true +215641 true +215645 true +true +215653 true +true +true +215657 true +215659 true +215663 true +215671 true +true +215674 true +215684 true +215689 true +true +215692 true +215694 true +true +true +215714 true +215717 true +true +215720 true +true +215723 true +215730 true +true +215733 true +215735 true +215746 true +true +215752 true +215754 true +true +215757 true +215760 true +215762 true +215769 true +true +215772 true +true +215781 true +true +215792 true +true +true +215799 true +true +215812 true +215815 true +215820 true +215822 true +215834 true +true +215837 true +215841 true +true +215850 true +215852 true +true +true +true +true +215860 true +215876 true +true +215879 true +true +215882 true +215884 true +true +215887 true +215889 true +215892 true +215899 true +215902 true +true +215908 true +true +215911 true +true +true +true +215920 true +true +215928 true +215933 true +true +215938 true +true +true +true +true +215944 true +true +true +215948 true +true +215965 true +215973 true +true +true +true +215982 true +215984 true +true +215987 true +true +216002 true +216006 true +true +216009 true +216014 true +true +true +true +216038 true +true +216044 true +true +216056 true +216064 true +true +true +true +216081 true +216083 true +216093 true +216099 true +216101 true +216107 true +true +true +true +216116 true +true +216124 true +true +216135 true +216137 true +216145 true +216147 true +true +true +216152 true +true +216156 true +216180 true +true +216189 true +216195 true +true +true +true +true +true +true +true +216207 true +216214 true +216217 true +true +true +216221 true +true +true +216233 true +true +216237 true +216242 true +216247 true +true +216251 true +true +true +216259 true +true +216262 true +true +216266 true +216272 true +216278 true +216296 true +216303 true +216315 true +216326 true +216332 true +true +true +216340 true +216342 true +true +true +216352 true +216366 true +216368 true +true +true +216372 true +216382 true +true +216391 true +216394 true +true +216404 true +true +216413 true +216419 true +true +216425 true +true +216428 true +true +true +216444 true +216454 true +true +216460 true +216465 true +216467 true +216470 true +true +216473 true +true +true +true +true +216481 true +216484 true +true +true +true +216501 true +216506 true +216508 true +true +216517 true +216523 true +true +216528 true +216530 true +true +216536 true +true +216541 true +216544 true +216552 true +216554 true +216558 true +true +216562 true +true +216567 true +216573 true +216575 true +216577 true +216581 true +216601 true +true +216617 true +true +true +216624 true +216629 true +216631 true +216635 true +true +216643 true +true +true +216647 true +true +true +216659 true +true +216664 true +216670 true +true +216674 true +true +216679 true +true +true +true +true +216687 true +216697 true +216717 true +true +true +true +216736 true +true +216743 true +true +true +true +216751 true +216758 true +true +216761 true +216766 true +216771 true +true +216774 true +216780 true +true +216790 true +216795 true +true +true +true +true +true +216811 true +true +216814 true +216819 true +216826 true +216832 true +216839 true +216844 true +216848 true +216851 true +true +216860 true +true +216865 true +true +216868 true +216874 true +true +216884 true +true +216887 true +216892 true +true +true +true +216897 true +216901 true +216903 true +216905 true +216907 true +216911 true +true +216914 true +216921 true +216927 true +216940 true +true +216944 true +216953 true +216955 true +true +216958 true +true +true +true +true +true +216965 true +216970 true +216974 true +true +216977 true +true +true +216983 true +216985 true +216987 true +216992 true +216994 true +217000 true +true +true +217004 true +217013 true +true +true +217018 true +217023 true +217030 true +true +true +true +217035 true +217038 true +true +true +217043 true +true +217050 true +217052 true +217061 true +true +217073 true +true +217076 true +217080 true +true +217088 true +true +true +true +217099 true +true +217114 true +217131 true +217146 true +217161 true +true +true +true +217166 true +true +217188 true +217199 true +217205 true +217207 true +217210 true +217236 true +217248 true +217259 true +217265 true +217267 true +true +true +true +217279 true +217301 true +217314 true +217325 true +true +217340 true +217342 true +true +217347 true +true +217351 true +true +true +true +217357 true +true +217365 true +217369 true +true +217382 true +true +true +217386 true +217388 true +217390 true +true +217393 true +217395 true +217405 true +217407 true +true +true +217411 true +true +217416 true +true +true +true +217432 true +217434 true +true +217437 true +217443 true +true +true +true +true +217453 true +217460 true +217463 true +217476 true +217481 true +true +true +217492 true +217494 true +217500 true +217503 true +true +217507 true +true +217512 true +true +true +217516 true +217521 true +217523 true +true +true +true +217561 true +true +217568 true +true +true +217575 true +217581 true +217585 true +true +true +217596 true +217609 true +true +true +217629 true +true +true +217642 true +217649 true +217654 true +true +217666 true +217669 true +true +217676 true +217678 true +217682 true +217686 true +true +217689 true +217696 true +true +217706 true +217708 true +217715 true +true +217719 true +true +217725 true +217727 true +true +217731 true +217733 true +true +217736 true +217741 true +true +217744 true +217749 true +217781 true +true +true +217791 true +217794 true +true +217798 true +true +true +true +217806 true +true +217809 true +true +217815 true +217818 true +217820 true +217830 true +217837 true +true +217844 true +true +217847 true +217856 true +true +true +217862 true +217865 true +true +217875 true +true +217878 true +true +217881 true +217890 true +true +217893 true +true +true +217900 true +true +true +217904 true +true +217913 true +217916 true +217918 true +217923 true +true +217929 true +true +217932 true +217934 true +true +217937 true +true +217941 true +217957 true +217959 true +217963 true +217966 true +217974 true +true +217978 true +217980 true +217988 true +true +true +218000 true +218002 true +218010 true +218012 true +true +218018 true +218023 true +218029 true +218031 true +218033 true +218039 true +218048 true +true +true +218059 true +true +true +218064 true +218071 true +true +218080 true +true +218084 true +218088 true +true +218093 true +true +true +218099 true +true +218110 true +218118 true +218120 true +true +218124 true +true +true +true +true +true +218137 true +218139 true +true +true +true +true +218149 true +218157 true +218161 true +true +218164 true +true +218171 true +218174 true +true +true +218178 true +218188 true +218194 true +true +218198 true +true +218211 true +true +true +218219 true +true +218225 true +true +218235 true +218239 true +218246 true +true +218249 true +218253 true +218255 true +218257 true +218272 true +218277 true +218279 true +218287 true +218290 true +true +218294 true +218309 true +true +true +218316 true +218327 true +218342 true +true +218349 true +true +218356 true +true +true +218363 true +218367 true +true +218370 true +true +218374 true +218386 true +true +218391 true +true +218399 true +true +218403 true +true +218407 true +218439 true +true +218442 true +218448 true +true +218458 true +true +218461 true +218465 true +218468 true +218471 true +218474 true +true +218477 true +true +218490 true +true +218496 true +218499 true +true +true +true +218510 true +218518 true +218528 true +218539 true +218549 true +true +true +true +218555 true +218566 true +true +218574 true +218579 true +218583 true +218590 true +218592 true +218596 true +true +218604 true +218606 true +218612 true +true +218615 true +218617 true +218632 true +true +218635 true +218638 true +218645 true +218647 true +true +218650 true +218655 true +218657 true +218670 true +218676 true +true +true +218686 true +218689 true +218695 true +218697 true +218708 true +218713 true +true +218717 true +218720 true +true +true +218724 true +218726 true +218728 true +218736 true +218743 true +218748 true +true +218753 true +true +218758 true +218760 true +true +218763 true +218768 true +true +218773 true +218775 true +218777 true +218780 true +218782 true +true +218785 true +218791 true +true +218797 true +218804 true +218806 true +218822 true +true +true +218826 true +true +218829 true +218831 true +218837 true +true +true +true +218852 true +true +218856 true +218859 true +true +218868 true +218872 true +218874 true +true +218888 true +218900 true +true +218903 true +218905 true +true +218912 true +218917 true +true +218929 true +true +218932 true +true +true +true +true +218953 true +218963 true +218965 true +218971 true +218973 true +true +true +218984 true +218993 true +true +true +218999 true +true +true +219006 true +true +219010 true +true +219017 true +219023 true +219030 true +219036 true +true +219041 true +true +true +true +219062 true +true +219074 true +219076 true +true +true +true +219081 true +219083 true +219085 true +219088 true +219091 true +true +219094 true +219108 true +true +219114 true +219121 true +true +219129 true +true +219132 true +true +219140 true +true +true +219146 true +true +true +219154 true +true +219173 true +219178 true +219180 true +219185 true +true +219194 true +true +true +true +true +219205 true +219212 true +219215 true +219217 true +true +219222 true +219231 true +219233 true +true +219239 true +219242 true +219271 true +219283 true +219287 true +true +219293 true +219295 true +219301 true +219303 true +true +219309 true +true +219312 true +219314 true +219316 true +219322 true +219328 true +219333 true +219335 true +true +219338 true +true +true +true +219345 true +219353 true +true +true +true +true +219359 true +true +true +219363 true +219365 true +true +219371 true +true +219375 true +true +219385 true +true +true +219392 true +true +true +219400 true +true +219406 true +219410 true +true +true +219415 true +219422 true +219424 true +219437 true +true +219440 true +219442 true +219447 true +219463 true +true +219470 true +true +true +219474 true +true +219481 true +true +219486 true +true +true +true +219491 true +219494 true +219496 true +219504 true +true +true +true +219516 true +true +true +true +true +219523 true +true +true +219528 true +true +true +219533 true +219537 true +219545 true +219554 true +true +219561 true +219563 true +true +true +true +219572 true +true +219583 true +true +219594 true +true +219605 true +219608 true +true +true +219612 true +true +219617 true +219621 true +219627 true +true +219639 true +true +219642 true +true +true +219649 true +true +219653 true +true +219668 true +219671 true +true +219678 true +true +219700 true +219707 true +219710 true +219713 true +219715 true +219725 true +219741 true +true +219744 true +true +219747 true +true +219759 true +true +219762 true +true +true +219779 true +true +219786 true +219788 true +219792 true +219796 true +219800 true +true +219820 true +219823 true +219833 true +true +219862 true +true +true +219872 true +219875 true +219886 true +219888 true +219903 true +true +true +219908 true +219913 true +true +true +219927 true +219930 true +true +219933 true +219935 true +true +219949 true +219951 true +true +219955 true +219966 true +219968 true +219975 true +true +219981 true +219991 true +219994 true +true +219999 true +220006 true +220012 true +true +220027 true +220030 true +true +true +220034 true +true +220040 true +true +220043 true +true +220048 true +220053 true +220055 true +220063 true +true +true +true +220070 true +true +true +220075 true +true +220079 true +220084 true +220092 true +true +220101 true +220104 true +220106 true +220110 true +220121 true +220126 true +220131 true +220135 true +true +true +220160 true +220165 true +220175 true +220185 true +220187 true +220189 true +220194 true +true +true +220208 true +220213 true +220217 true +220223 true +true +220228 true +220232 true +220252 true +220260 true +220265 true +true +220268 true +true +220273 true +true +220276 true +220280 true +220285 true +true +true +220298 true +true +220301 true +220306 true +220308 true +220311 true +220316 true +true +true +220322 true +220325 true +220328 true +true +true +true +220341 true +true +220346 true +true +220350 true +true +220358 true +220361 true +220374 true +true +220379 true +true +true +220407 true +220414 true +true +220428 true +220443 true +220449 true +220452 true +220456 true +true +220462 true +true +220468 true +true +220472 true +true +220479 true +true +220489 true +220493 true +true +220502 true +220516 true +true +220520 true +true +220529 true +true +true +220534 true +220536 true +true +220541 true +220544 true +220546 true +true +220551 true +true +220555 true +true +true +true +220579 true +true +220584 true +true +220587 true +220593 true +true +220602 true +true +true +220610 true +220619 true +true +true +true +220640 true +220647 true +true +220652 true +true +true +220656 true +true +220660 true +220662 true +220665 true +220676 true +true +220684 true +220686 true +220693 true +true +220716 true +220718 true +true +220721 true +true +220724 true +true +220736 true +true +220740 true +220746 true +true +220749 true +220751 true +true +220757 true +true +220774 true +true +true +220778 true +220787 true +true +220795 true +true +220806 true +true +220824 true +true +220843 true +220846 true +true +220853 true +220858 true +220868 true +220876 true +220881 true +220884 true +220887 true +true +220900 true +true +true +220905 true +220908 true +220916 true +true +220928 true +220935 true +true +true +220944 true +220952 true +true +220955 true +220957 true +true +true +220969 true +true +220975 true +220978 true +220988 true +220992 true +true +220995 true +true +221010 true +true +true +221014 true +221021 true +221032 true +221035 true +221037 true +true +221040 true +221042 true +true +221049 true +221052 true +221054 true +221064 true +221067 true +true +221092 true +221105 true +221107 true +true +221121 true +221125 true +221133 true +true +221136 true +true +221149 true +true +221152 true +221154 true +221167 true +221170 true +221174 true +true +221184 true +true +true +221188 true +221193 true +221202 true +true +221215 true +221220 true +221235 true +221237 true +true +221240 true +221250 true +true +221255 true +221265 true +true +true +221269 true +221274 true +true +221284 true +221287 true +221289 true +221293 true +221299 true +true +221306 true +true +221309 true +221328 true +221335 true +221350 true +221358 true +true +221365 true +true +221372 true +221374 true +221388 true +true +221402 true +true +221407 true +true +221410 true +true +true +221423 true +true +221427 true +221434 true +221437 true +true +221440 true +true +221446 true +221463 true +221470 true +true +221474 true +221485 true +221488 true +221490 true +true +221500 true +true +true +221507 true +true +true +true +221515 true +true +221522 true +221524 true +true +221527 true +true +221530 true +221533 true +221542 true +true +221547 true +true +221566 true +221576 true +true +221593 true +true +true +221597 true +true +221603 true +221610 true +true +221613 true +true +true +true +221622 true +true +221634 true +221644 true +221646 true +true +221649 true +221651 true +221656 true +true +221661 true +221666 true +true +221675 true +true +true +true +true +221689 true +221691 true +221696 true +221704 true +221706 true +221708 true +221713 true +true +true +221720 true +221726 true +221739 true +221755 true +221761 true +true +true +true +true +true +221771 true +221773 true +221776 true +221783 true +221785 true +true +true +221792 true +true +true +221798 true +221800 true +true +221803 true +221805 true +true +221808 true +221821 true +true +221826 true +221830 true +true +221839 true +221841 true +true +221844 true +221846 true +221863 true +true +221866 true +true +221876 true +221880 true +221882 true +221885 true +true +221891 true +true +true +221895 true +221899 true +true +221902 true +true +221908 true +221911 true +221916 true +true +221928 true +true +221932 true +221935 true +221957 true +true +true +221961 true +true +221964 true +221976 true +221978 true +true +221981 true +true +true +221985 true +221990 true +true +true +221994 true +221996 true +true +222004 true +222007 true +222018 true +222031 true +222033 true +222042 true +222049 true +222053 true +222064 true +222068 true +222075 true +true +222078 true +222085 true +222088 true +true +222091 true +222108 true +222117 true +222127 true +true +222131 true +true +true +222135 true +222139 true +222145 true +true +222150 true +true +222153 true +222167 true +true +true +222179 true +222199 true +true +222204 true +true +222239 true +222241 true +true +222245 true +true +true +222253 true +true +true +222257 true +222261 true +true +222268 true +true +222271 true +222281 true +222293 true +true +true +true +222302 true +true +222312 true +222326 true +222329 true +true +222336 true +222338 true +true +true +222348 true +222358 true +222365 true +true +true +222369 true +222371 true +222375 true +true +222378 true +true +222387 true +222392 true +222396 true +true +true +222403 true +222406 true +222414 true +222417 true +true +222423 true +222427 true +true +222431 true +true +222441 true +true +222447 true +true +222455 true +222460 true +true +222468 true +true +true +true +true +222475 true +true +222482 true +222487 true +true +222490 true +true +true +222499 true +222501 true +true +true +222508 true +true +true +222514 true +true +true +222522 true +true +true +222553 true +true +true +true +true +true +222560 true +222570 true +222572 true +222581 true +222583 true +222590 true +true +true +true +222595 true +true +222606 true +true +222618 true +true +222648 true +true +222652 true +222665 true +222667 true +222674 true +222677 true +true +222687 true +222690 true +222705 true +true +222708 true +222710 true +222712 true +true +222715 true +222718 true +true +222728 true +222734 true +222739 true +true +true +222748 true +true +222751 true +true +true +222763 true +true +222769 true +222784 true +true +true +222794 true +true +222799 true +222801 true +222804 true +true +true +true +222809 true +222812 true +222821 true +222831 true +222835 true +222837 true +222840 true +true +true +222848 true +true +true +222871 true +222873 true +true +222877 true +222880 true +222885 true +222888 true +222891 true +222902 true +true +true +222906 true +222917 true +true +222923 true +222925 true +222929 true +true +true +222948 true +true +222953 true +true +true +true +true +true +222960 true +222965 true +222975 true +222984 true +true +true +true +true +222994 true +true +true +223016 true +223024 true +223026 true +true +true +223033 true +223036 true +true +223039 true +true +223042 true +223048 true +true +223055 true +true +223058 true +223069 true +true +223077 true +true +223098 true +true +223105 true +true +true +true +true +223122 true +223133 true +223138 true +true +true +223158 true +223171 true +223173 true +223177 true +223179 true +223184 true +223188 true +true +223191 true +223200 true +true +true +223210 true +223216 true +true +223221 true +223231 true +223233 true +223246 true +true +true +223250 true +223253 true +223255 true +223261 true +223263 true +true +true +223270 true +true +true +true +223276 true +true +223282 true +223290 true +223292 true +223299 true +true +223302 true +223305 true +true +true +223313 true +223316 true +223320 true +223329 true +223332 true +223336 true +223352 true +223354 true +223357 true +223359 true +223362 true +223370 true +true +223379 true +223381 true +true +223389 true +223391 true +223393 true +true +223396 true +223403 true +223406 true +223408 true +223414 true +223416 true +223419 true +223421 true +true +223425 true +223427 true +223431 true +223433 true +223438 true +true +223450 true +true +223453 true +true +223460 true +223471 true +223478 true +223481 true +223494 true +223496 true +223506 true +true +true +223510 true +223516 true +true +true +true +223534 true +223536 true +true +223539 true +223547 true +223550 true +223556 true +223558 true +223560 true +true +223565 true +true +223571 true +223577 true +true +223580 true +true +true +223599 true +223602 true +223605 true +true +223618 true +223620 true +true +223623 true +true +true +223628 true +true +223633 true +true +223639 true +true +223645 true +true +223648 true +223653 true +true +223656 true +true +223661 true +223663 true +223665 true +true +223683 true +223690 true +true +223693 true +223696 true +223702 true +223706 true +223708 true +223720 true +true +223725 true +true +true +223732 true +true +223739 true +true +true +true +223744 true +true +223750 true +223752 true +223755 true +223757 true +223768 true +223770 true +223780 true +223782 true +223784 true +223792 true +223802 true +true +223807 true +true +223815 true +223822 true +true +true +223826 true +223835 true +true +223842 true +223844 true +true +true +223848 true +true +223865 true +223868 true +223870 true +true +223896 true +223899 true +223901 true +223908 true +223918 true +223921 true +223925 true +true +223929 true +true +223937 true +223940 true +223943 true +true +223950 true +223952 true +true +223962 true +223964 true +true +223971 true +true +true +223992 true +true +true +223996 true +224004 true +true +true +224017 true +224019 true +224021 true +224023 true +true +true +224031 true +224035 true +true +224040 true +224042 true +true +224045 true +224048 true +true +224051 true +true +true +224055 true +224057 true +true +224060 true +true +224073 true +224080 true +true +224098 true +224110 true +true +224117 true +true +224122 true +true +224134 true +224150 true +224155 true +224162 true +224164 true +224171 true +224175 true +true +224178 true +true +224185 true +224187 true +224190 true +224195 true +true +224199 true +true +224207 true +true +true +true +true +true +true +224215 true +true +true +224222 true +true +224246 true +224248 true +true +224251 true +true +true +true +224258 true +true +224262 true +true +224265 true +224269 true +true +224274 true +true +224277 true +224279 true +224283 true +true +224289 true +224291 true +true +true +224296 true +true +224299 true +224313 true +224316 true +224320 true +224329 true +true +224332 true +true +224335 true +true +true +true +224341 true +true +true +224357 true +224360 true +224363 true +224376 true +true +224381 true +true +224385 true +224393 true +true +224399 true +true +224402 true +224407 true +true +224410 true +true +224414 true +224417 true +224443 true +224445 true +true +224451 true +224455 true +true +224460 true +true +224468 true +true +true +true +true +true +224479 true +true +true +true +true +true +true +224492 true +224494 true +224500 true +true +224506 true +224508 true +true +224511 true +true +224516 true +224519 true +224521 true +true +true +224528 true +224544 true +true +224550 true +224553 true +224564 true +true +224568 true +true +224576 true +true +true +224580 true +224584 true +true +224592 true +true +true +true +true +true +224602 true +224614 true +true +true +224618 true +true +true +true +224626 true +224640 true +224644 true +true +true +224648 true +true +224651 true +224656 true +224659 true +224661 true +true +true +true +true +true +224672 true +224674 true +true +224677 true +true +224680 true +224682 true +224687 true +true +224691 true +true +224700 true +224706 true +224711 true +224720 true +224722 true +true +true +true +224727 true +224729 true +true +224732 true +224734 true +224736 true +224738 true +true +true +224765 true +true +224768 true +224770 true +true +true +true +224775 true +true +224782 true +224787 true +true +224793 true +true +true +true +true +224804 true +224811 true +224814 true +224820 true +224830 true +true +224836 true +true +true +true +224845 true +true +224848 true +224857 true +224859 true +224862 true +true +224868 true +224873 true +224875 true +true +224878 true +224882 true +224884 true +true +224908 true +224912 true +224920 true +224924 true +224932 true +true +true +224937 true +true +224940 true +224944 true +224947 true +224951 true +224956 true +true +224960 true +225002 true +225007 true +225018 true +true +true +225023 true +true +225026 true +225033 true +225035 true +true +225038 true +true +true +true +225043 true +225051 true +true +225062 true +225070 true +true +225074 true +true +225079 true +true +true +225087 true +225089 true +225092 true +225094 true +225099 true +225110 true +true +225118 true +225120 true +225128 true +225130 true +true +true +true +225139 true +225149 true +225151 true +true +true +225163 true +true +true +225167 true +true +true +225172 true +225177 true +225181 true +true +true +true +225186 true +true +225189 true +225191 true +true +true +true +225196 true +true +225199 true +225203 true +true +225221 true +225228 true +225235 true +225238 true +225244 true +true +true +225262 true +225264 true +225269 true +true +true +225279 true +225281 true +true +225291 true +225294 true +225301 true +225305 true +true +true +true +true +225313 true +true +225318 true +true +true +225326 true +225331 true +true +225351 true +225355 true +true +true +225359 true +true +225371 true +true +true +225379 true +225382 true +true +225385 true +225397 true +225403 true +true +225411 true +225413 true +225416 true +225419 true +225424 true +225426 true +true +true +225435 true +true +225438 true +225440 true +225444 true +true +true +225448 true +true +true +true +true +225459 true +true +true +225463 true +225466 true +225470 true +225479 true +225483 true +225495 true +225497 true +225499 true +225502 true +true +225505 true +true +225508 true +225512 true +true +true +225516 true +225519 true +true +225522 true +225524 true +225532 true +true +true +225537 true +225539 true +225542 true +225551 true +225555 true +225557 true +true +225562 true +225567 true +225569 true +225572 true +225574 true +225582 true +225584 true +225588 true +225590 true +225596 true +225624 true +225628 true +225635 true +225637 true +225639 true +225642 true +225646 true +true +225650 true +true +225663 true +true +225679 true +225681 true +225701 true +225704 true +true +true +225734 true +225736 true +225738 true +true +225747 true +225749 true +true +225752 true +225754 true +225759 true +true +true +true +true +225768 true +true +true +true +true +225774 true +true +true +225778 true +225780 true +225782 true +225788 true +true +225792 true +true +225803 true +225805 true +225811 true +225813 true +225818 true +225838 true +true +true +225846 true +225852 true +true +225858 true +225860 true +225862 true +225864 true +225876 true +225878 true +225880 true +true +225889 true +225891 true +225893 true +true +225915 true +225923 true +225931 true +225937 true +true +225941 true +true +225950 true +225958 true +225964 true +true +225967 true +225983 true +true +225993 true +true +226021 true +true +true +226025 true +226030 true +226038 true +226046 true +226048 true +226055 true +true +true +true +true +true +226062 true +226070 true +true +226073 true +226075 true +226077 true +226079 true +226081 true +226083 true +226087 true +true +226093 true +226097 true +true +226105 true +226107 true +226129 true +true +226132 true +226134 true +226136 true +226138 true +226143 true +true +226147 true +true +true +226151 true +true +226162 true +226177 true +226181 true +true +226184 true +true +226190 true +true +226197 true +226200 true +226205 true +true +true +true +226214 true +226224 true +true +true +true +true +true +226232 true +226234 true +226240 true +true +226251 true +226256 true +226258 true +true +true +226276 true +226284 true +226286 true +226290 true +true +226298 true +226300 true +226302 true +true +226318 true +226322 true +226325 true +226336 true +226338 true +226356 true +true +true +226361 true +226366 true +true +226371 true +true +true +true +226387 true +true +226390 true +true +true +226394 true +226396 true +true +226399 true +226401 true +226408 true +true +226433 true +226460 true +226462 true +226474 true +226481 true +true +226484 true +226487 true +226490 true +true +226509 true +226511 true +226515 true +true +226518 true +226524 true +true +226532 true +true +true +226537 true +226544 true +226548 true +true +226553 true +true +226561 true +true +226573 true +true +true +true +true +226580 true +true +226583 true +true +226587 true +226594 true +true +226600 true +true +226605 true +226619 true +226621 true +true +226635 true +226638 true +true +true +226648 true +226673 true +226675 true +226680 true +226686 true +226689 true +true +true +true +226695 true +true +226708 true +true +true +true +226714 true +true +true +226718 true +true +226743 true +226746 true +226751 true +true +226754 true +true +true +226769 true +true +226784 true +true +true +226794 true +226797 true +true +true +226803 true +226806 true +226812 true +226817 true +226827 true +true +true +226841 true +226850 true +226855 true +226859 true +226864 true +226868 true +226870 true +true +226878 true +226890 true +226892 true +226896 true +226910 true +true +true +226914 true +true +true +true +226920 true +226925 true +226930 true +226934 true +226940 true +226949 true +226954 true +true +226965 true +226968 true +226973 true +226977 true +true +true +226981 true +226985 true +true +true +226995 true +227004 true +227006 true +227008 true +227010 true +227012 true +true +227016 true +227018 true +true +true +227033 true +227036 true +227046 true +true +227059 true +true +true +227069 true +227078 true +227082 true +227090 true +true +227102 true +227109 true +true +227118 true +227121 true +227123 true +227133 true +227138 true +227140 true +227145 true +227151 true +true +227156 true +true +true +true +227163 true +true +227166 true +227168 true +227175 true +227178 true +227181 true +227189 true +true +227194 true +227207 true +227211 true +227236 true +227239 true +true +true +227247 true +true +227250 true +227252 true +227259 true +true +true +227268 true +true +227271 true +227273 true +true +true +227278 true +227281 true +true +227289 true +true +true +true +227294 true +true +227304 true +true +227309 true +227322 true +true +true +227327 true +227336 true +true +227340 true +true +true +true +227345 true +true +227349 true +true +true +227353 true +true +227357 true +true +true +true +true +true +227364 true +true +true +true +true +227370 true +true +true +true +227376 true +true +227380 true +true +227386 true +227390 true +227392 true +227396 true +227399 true +227401 true +227403 true +227405 true +227407 true +227409 true +227411 true +227413 true +227415 true +227417 true +227420 true +227436 true +227440 true +227442 true +227467 true +227480 true +227491 true +true +227497 true +true +227501 true +true +true +227518 true +227526 true +227528 true +true +227531 true +227534 true +227539 true +true +true +227543 true +227548 true +227552 true +227560 true +true +227567 true +227572 true +227580 true +227582 true +227587 true +true +true +true +true +true +true +227609 true +true +true +227613 true +true +true +227617 true +true +true +227621 true +true +true +227625 true +true +227629 true +true +true +227636 true +227638 true +227642 true +true +true +227656 true +true +true +true +true +227662 true +227668 true +true +227674 true +227679 true +true +227687 true +true +227695 true +227698 true +227703 true +227705 true +227708 true +227710 true +227729 true +true +227735 true +227740 true +227742 true +227753 true +227759 true +227761 true +227765 true +227767 true +227771 true +227774 true +true +227780 true +227790 true +227803 true +true +227808 true +227810 true +227815 true +227819 true +227824 true +227828 true +227844 true +227850 true +227852 true +227861 true +227877 true +227883 true +227888 true +227890 true +227904 true +227911 true +227918 true +true +227921 true +227937 true +true +227947 true +227952 true +227959 true +true +227965 true +227967 true +227981 true +227984 true +true +227988 true +227995 true +227998 true +true +228005 true +228007 true +228014 true +true +true +228021 true +228029 true +228036 true +true +228040 true +228050 true +228066 true +228069 true +228071 true +228077 true +true +true +228084 true +true +228091 true +228093 true +228101 true +true +228105 true +true +true +228109 true +true +228112 true +true +228118 true +228120 true +true +228123 true +228125 true +228133 true +228137 true +true +228147 true +true +228151 true +228159 true +true +228163 true +228165 true +228168 true +228170 true +228179 true +228186 true +true +228194 true +true +true +228198 true +228201 true +true +228207 true +true +228210 true +true +true +228221 true +228223 true +228227 true +true +228230 true +true +228233 true +true +228250 true +true +228261 true +true +true +true +228266 true +true +true +true +228273 true +true +228276 true +228278 true +228281 true +228283 true +228290 true +true +228296 true +true +228323 true +true +true +true +228328 true +228350 true +true +228359 true +true +true +228364 true +228372 true +true +228390 true +228398 true +true +228401 true +true +228416 true +228418 true +228420 true +true +228429 true +true +228448 true +true +true +true +228455 true +true +228458 true +228460 true +true +228463 true +true +228468 true +true +true +228472 true +true +228476 true +true +228479 true +228481 true +228492 true +228494 true +228503 true +228507 true +true +228515 true +true +228538 true +228544 true +true +228547 true +228550 true +228552 true +true +true +228556 true +228558 true +228566 true +228571 true +228585 true +228591 true +true +228600 true +228608 true +228614 true +228619 true +228630 true +228636 true +true +true +228646 true +228653 true +228660 true +true +228664 true +228673 true +228685 true +228689 true +228699 true +true +true +true +228709 true +228711 true +true +228714 true +true +true +228727 true +true +true +228732 true +true +228737 true +true +228741 true +228743 true +228747 true +228759 true +true +228763 true +true +228768 true +228770 true +true +true +true +228778 true +228780 true +true +228788 true +228794 true +228800 true +228802 true +228807 true +228811 true +true +228817 true +228819 true +228822 true +228824 true +228826 true +true +true +228831 true +true +true +228836 true +228854 true +228858 true +true +true +228865 true +true +true +228869 true +228883 true +true +true +true +true +228889 true +true +228898 true +true +true +228902 true +228904 true +true +228927 true +228929 true +true +true +228933 true +true +228948 true +228950 true +228957 true +228959 true +true +true +228966 true +true +228969 true +true +228975 true +228981 true +true +228986 true +228992 true +true +228995 true +true +229002 true +229010 true +true +true +229015 true +true +229046 true +229054 true +true +229072 true +true +229078 true +true +229097 true +229099 true +229105 true +true +229108 true +true +229113 true +true +229122 true +229124 true +229127 true +229129 true +229137 true +true +229142 true +true +229145 true +229152 true +true +229155 true +true +true +true +true +229161 true +true +true +229165 true +229167 true +229190 true +229202 true +229204 true +true +229208 true +229210 true +true +229216 true +229229 true +229231 true +true +229235 true +229238 true +229240 true +true +229244 true +229247 true +true +true +229251 true +229253 true +229255 true +229257 true +229260 true +229265 true +true +229284 true +229297 true +229299 true +229325 true +true +229329 true +229341 true +229352 true +true +229357 true +true +true +229361 true +true +229364 true +true +true +229377 true +229380 true +true +true +229388 true +229390 true +true +229397 true +229399 true +229414 true +true +229420 true +true +true +229427 true +true +true +true +229432 true +229438 true +true +true +true +true +229444 true +229451 true +true +true +true +229456 true +229458 true +true +true +229462 true +229464 true +true +true +true +229469 true +true +229473 true +true +229476 true +true +229493 true +229495 true +229507 true +229587 true +229595 true +229602 true +229605 true +true +229609 true +true +229617 true +true +229621 true +229625 true +229627 true +true +229642 true +true +true +229646 true +true +229663 true +true +true +229675 true +true +229680 true +true +229684 true +229692 true +true +229695 true +229700 true +true +229709 true +true +229726 true +229728 true +229734 true +229736 true +true +229741 true +229743 true +229754 true +true +true +229763 true +229765 true +true +true +true +229772 true +true +229775 true +true +true +229784 true +229786 true +229827 true +true +229855 true +229864 true +229870 true +229872 true +229875 true +229877 true +229881 true +true +true +229897 true +229903 true +true +true +true +229943 true +229945 true +229949 true +true +229973 true +true +229985 true +230000 true +230027 true +true +230049 true +230072 true +230075 true +true +230078 true +230080 true +230085 true +230087 true +230111 true +true +true +230117 true +230129 true +230131 true +true +230139 true +230142 true +230145 true +230149 true +true +230152 true +230156 true +230158 true +true +230161 true +true +230164 true +true +230168 true +230171 true +true +true +230175 true +230178 true +230185 true +true +230189 true +230199 true +true +true +230221 true +true +230225 true +230227 true +true +230230 true +true +230233 true +230240 true +true +230259 true +230264 true +230268 true +230272 true +true +230276 true +230283 true +true +230287 true +true +230290 true +true +true +230298 true +true +230306 true +230321 true +true +230324 true +true +230339 true +230403 true +true +true +230407 true +true +230411 true +true +230414 true +230428 true +true +true +true +230433 true +true +true +230439 true +230444 true +true +true +true +true +true +true +230452 true +true +true +230458 true +230462 true +230465 true +true +230472 true +230479 true +230481 true +230490 true +230492 true +230498 true +230504 true +230506 true +230510 true +230512 true +true +230518 true +true +230522 true +230524 true +true +230533 true +230536 true +230550 true +true +true +230565 true +true +true +230571 true +230576 true +true +true +230580 true +true +true +true +230587 true +true +230591 true +true +230598 true +true +true +230603 true +true +230618 true +230620 true +true +true +230625 true +true +true +230656 true +true +230659 true +230680 true +230682 true +true +230695 true +230701 true +230703 true +true +230729 true +230734 true +230736 true +true +true +230741 true +230743 true +true +true +230751 true +230760 true +230763 true +true +230766 true +true +true +230773 true +230780 true +230787 true +230795 true +230798 true +230803 true +true +true +230820 true +230823 true +230830 true +true +230850 true +230857 true +true +230877 true +true +230890 true +true +230896 true +230917 true +230922 true +true +230931 true +230935 true +230939 true +true +230946 true +230952 true +230958 true +230964 true +230966 true +230972 true +230974 true +true +230983 true +230985 true +230987 true +230993 true +230996 true +230998 true +231003 true +231005 true +true +true +231009 true +231011 true +231014 true +231016 true +231018 true +231023 true +231026 true +231028 true +231032 true +true +231036 true +231039 true +true +true +231044 true +231053 true +true +231071 true +true +231078 true +true +231083 true +true +231087 true +231094 true +231096 true +231100 true +231107 true +231114 true +231126 true +true +231136 true +true +231143 true +231146 true +231161 true +231167 true +true +231170 true +231202 true +231206 true +231218 true +231226 true +231228 true +true +231231 true +231233 true +231238 true +231244 true +231262 true +true +231265 true +231273 true +231278 true +231281 true +true +231284 true +231288 true +true +231291 true +true +231294 true +231303 true +true +231307 true +true +231317 true +231320 true +true +231324 true +231336 true +231339 true +true +true +231351 true +true +true +231356 true +231360 true +231362 true +231375 true +true +true +true +true +231382 true +231384 true +231400 true +231408 true +true +231411 true +231419 true +true +231424 true +true +231433 true +true +231448 true +231451 true +true +231455 true +231461 true +231464 true +true +231470 true +231479 true +true +231486 true +231488 true +231494 true +231496 true +231498 true +true +231501 true +231503 true +true +231507 true +true +true +231511 true +231513 true +true +231532 true +231562 true +true +231568 true +true +true +231572 true +231574 true +true +231583 true +231589 true +231606 true +231615 true +231618 true +231621 true +231624 true +231630 true +true +231639 true +true +231647 true +231656 true +true +231683 true +true +231696 true +true +true +true +true +231702 true +true +231706 true +true +231710 true +true +true +true +true +231716 true +true +231721 true +231726 true +231737 true +true +true +true +231745 true +true +231748 true +231751 true +true +231757 true +true +231775 true +231796 true +231803 true +true +231814 true +true +231827 true +231829 true +231833 true +231845 true +231854 true +true +true +true +true +231866 true +true +231876 true +231879 true +231882 true +231884 true +231887 true +231891 true +231893 true +231900 true +231903 true +true +true +231909 true +231915 true +231917 true +231919 true +231943 true +231963 true +231984 true +231988 true +true +231993 true +true +true +true +true +true +true +232001 true +232009 true +232014 true +true +232018 true +true +232028 true +true +true +true +232034 true +232041 true +232045 true +232075 true +232077 true +232083 true +232086 true +232105 true +232110 true +true +true +true +232115 true +true +232120 true +232124 true +true +232134 true +232143 true +true +true +232152 true +true +232165 true +232175 true +232182 true +232196 true +true +232199 true +true +232204 true +232206 true +true +true +true +232221 true +true +232224 true +true +true +true +true +true +true +true +true +232234 true +true +true +true +232247 true +232251 true +232265 true +232277 true +true +232280 true +232287 true +true +true +true +true +232315 true +true +232323 true +true +232331 true +232333 true +true +232346 true +true +232355 true +232357 true +232360 true +232372 true +true +232378 true +true +true +true +232389 true +true +true +true +true +232397 true +true +232401 true +true +true +true +true +true +232409 true +true +true +true +true +232415 true +true +232422 true +true +232432 true +true +232436 true +232438 true +232440 true +232450 true +232453 true +232455 true +true +true +true +232460 true +true +232469 true +true +232473 true +true +232478 true +232485 true +232506 true +true +232510 true +true +232518 true +true +232532 true +232540 true +true +232550 true +true +232553 true +232582 true +true +232591 true +true +232600 true +true +true +232604 true +232606 true +232611 true +232613 true +true +true +232622 true +true +232628 true +true +232632 true +true +232638 true +true +232659 true +true +232662 true +232669 true +232675 true +232681 true +true +232684 true +232687 true +true +232711 true +true +232716 true +232719 true +true +232723 true +true +true +true +true +232729 true +true +232732 true +true +232736 true +true +232740 true +true +true +true +true +232746 true +true +232752 true +true +true +232759 true +232763 true +true +true +232768 true +true +232777 true +232779 true +232791 true +232793 true +232797 true +true +true +true +232809 true +232814 true +232820 true +232824 true +232829 true +232834 true +true +232837 true +232840 true +true +true +true +true +232847 true +232849 true +232858 true +true +232864 true +true +232879 true +true +true +232916 true +232918 true +232929 true +232931 true +true +232934 true +232954 true +true +true +232958 true +true +232963 true +true +232977 true +true +true +232984 true +232993 true +232995 true +232998 true +233005 true +233008 true +true +233011 true +233020 true +233049 true +233068 true +233092 true +true +233096 true +233101 true +233104 true +233113 true +233125 true +233132 true +233137 true +233153 true +233156 true +true +233163 true +233189 true +233199 true +233201 true +true +233205 true +233221 true +true +233225 true +233248 true +233250 true +233253 true +233257 true +233269 true +true +233272 true +233278 true +233289 true +233293 true +233303 true +233306 true +true +233310 true +233313 true +true +233321 true +233323 true +233325 true +true +true +true +233340 true +233343 true +233353 true +233367 true +233369 true +233372 true +233375 true +true +233386 true +true +233395 true +233397 true +true +233400 true +233402 true +true +true +true +true +233415 true +true +true +true +233447 true +233449 true +233455 true +233459 true +233488 true +true +233506 true +233515 true +233524 true +233543 true +233548 true +true +true +true +true +233554 true +233556 true +true +true +233568 true +true +233579 true +233590 true +233592 true +233620 true +233624 true +233636 true +233661 true +true +233664 true +true +233672 true +233674 true +true +true +233681 true +true +233690 true +233697 true +true +233704 true +true +true +233708 true +true +true +233713 true +233718 true +233720 true +233730 true +true +233740 true +true +true +233745 true +233784 true +233787 true +true +233794 true +233797 true +true +233801 true +true +233818 true +233820 true +true +true +233827 true +true +233835 true +true +true +233847 true +233863 true +true +true +true +true +233871 true +true +233879 true +true +true +233885 true +233888 true +true +233906 true +true +true +true +233915 true +233919 true +true +233930 true +true +true +true +233935 true +233941 true +true +true +true +true +233947 true +233950 true +233955 true +233957 true +true +233972 true +true +233980 true +233988 true +234022 true +234038 true +true +true +234050 true +234055 true +234061 true +234065 true +234067 true +234092 true +234094 true +234097 true +true +234114 true +true +true +234118 true +234153 true +true +234159 true +true +234166 true +true +true +true +true +true +true +true +true +234178 true +234182 true +234189 true +true +true +234195 true +true +true +234203 true +234205 true +true +true +234209 true +234223 true +true +234238 true +true +234247 true +234255 true +true +234259 true +true +234267 true +true +234271 true +true +234274 true +true +true +234280 true +234285 true +true +234289 true +true +234292 true +true +true +true +234297 true +true +234300 true +true +234303 true +true +234308 true +true +true +234312 true +true +true +true +234326 true +true +234329 true +234333 true +234339 true +true +true +true +234344 true +true +234349 true +234351 true +234379 true +234387 true +234424 true +234429 true +true +234452 true +234469 true +true +234478 true +234482 true +true +234497 true +true +234511 true +true +234518 true +234522 true +234526 true +true +234529 true +true +234539 true +true +234547 true +234551 true +true +234559 true +234562 true +234564 true +234570 true +true +234577 true +true +234584 true +true +true +234593 true +234600 true +234602 true +true +234607 true +234624 true +true +true +234628 true +true +234632 true +true +true +true +true +true +true +true +true +234654 true +true +234659 true +true +234663 true +true +234667 true +234671 true +234673 true +true +true +234677 true +true +234684 true +true +234688 true +true +234694 true +234696 true +234698 true +true +true +true +234704 true +234708 true +true +234717 true +true +true +234721 true +234725 true +234733 true +234737 true +234742 true +true +true +234750 true +true +true +234754 true +true +true +true +234764 true +true +234772 true +234774 true +true +true +234780 true +true +true +true +true +true +true +234788 true +234805 true +234810 true +234816 true +234818 true +true +234821 true +234823 true +234832 true +234838 true +true +234867 true +true +234870 true +true +234876 true +true +234896 true +true +234904 true +234913 true +true +234917 true +234922 true +234925 true +true +234936 true +true +true +234940 true +234942 true +234956 true +true +234961 true +234963 true +true +234967 true +true +234974 true +234982 true +234988 true +234990 true +true +true +234997 true +true +true +235010 true +true +235013 true +235017 true +235022 true +235028 true +235033 true +235035 true +true +true +235055 true +235073 true +235090 true +true +true +true +235095 true +true +235105 true +235107 true +235119 true +235141 true +true +235145 true +true +235152 true +true +true +true +235157 true +235163 true +235165 true +235168 true +235177 true +true +true +235182 true +true +235186 true +235188 true +235197 true +true +true +true +235203 true +true +235228 true +235230 true +true +true +true +235260 true +true +235264 true +true +235295 true +true +true +true +235300 true +235307 true +true +235310 true +true +235322 true +235325 true +235331 true +235333 true +235339 true +235342 true +true +235345 true +true +true +235349 true +235351 true +235355 true +235357 true +235364 true +235366 true +235368 true +235370 true +235374 true +235376 true +true +true +true +true +235384 true +235386 true +true +true +235392 true +235406 true +true +235409 true +true +235412 true +235414 true +true +235417 true +235422 true +235427 true +true +235430 true +235432 true +true +235435 true +235451 true +true +235462 true +235464 true +true +true +true +235471 true +true +235481 true +235483 true +235497 true +true +235505 true +235507 true +235514 true +235516 true +235518 true +235520 true +235524 true +true +235532 true +235535 true +true +235541 true +235543 true +true +true +235547 true +true +true +235551 true +235553 true +235555 true +235557 true +235561 true +235574 true +true +true +true +true +235583 true +true +235588 true +235590 true +235592 true +235598 true +true +235602 true +true +true +true +235607 true +true +235634 true +235636 true +true +true +235641 true +true +235644 true +true +true +235653 true +235659 true +true +235662 true +true +true +235671 true +235674 true +true +235681 true +235684 true +true +true +235698 true +235700 true +true +235711 true +235715 true +235717 true +true +true +true +true +235723 true +235732 true +true +235738 true +235746 true +235749 true +235755 true +235757 true +235759 true +true +235766 true +235770 true +235779 true +235783 true +235788 true +true +235797 true +true +235809 true +true +true +true +true +235821 true +true +true +235827 true +235832 true +235834 true +235836 true +235848 true +true +true +true +235864 true +true +235868 true +true +235882 true +true +true +true +235887 true +235891 true +true +235904 true +235906 true +235914 true +true +true +235927 true +true +235947 true +235949 true +235957 true +235963 true +235965 true +true +235974 true +true +235994 true +235997 true +true +true +true +true +true +true +true +236010 true +236012 true +236020 true +236025 true +236027 true +236035 true +236041 true +236044 true +236057 true +236059 true +236083 true +236113 true +true +236116 true +236118 true +236168 true +236172 true +236180 true +true +236184 true +true +true +true +236229 true +236276 true +true +236298 true +true +true +true +236303 true +true +236317 true +236319 true +true +true +true +236331 true +236341 true +true +236344 true +true +true +true +236350 true +236352 true +true +true +true +true +236358 true +true +true +236365 true +true +236368 true +236370 true +236380 true +true +236390 true +true +236414 true +236423 true +236425 true +236431 true +236446 true +236448 true +true +236452 true +true +true +true +true +236459 true +true +236462 true +true +236465 true +true +236471 true +true +236481 true +true +236485 true +true +236490 true +236505 true +true +236513 true +236517 true +236536 true +true +236539 true +true +236542 true +true +236545 true +236551 true +true +236554 true +236557 true +236561 true +true +236564 true +236578 true +true +236581 true +236583 true +true +236586 true +true +236596 true +true +true +236602 true +true +236610 true +true +true +236625 true +236631 true +true +true +true +236640 true +true +236643 true +true +236646 true +236651 true +236653 true +true +236663 true +236673 true +true +true +236677 true +true +236684 true +true +236687 true +236689 true +true +true +236693 true +236695 true +true +236698 true +true +236706 true +236725 true +true +236728 true +236730 true +true +236735 true +true +236738 true +true +236748 true +true +true +236753 true +true +true +236759 true +true +true +236763 true +236766 true +true +236773 true +236782 true +236784 true +true +true +true +236789 true +true +true +true +true +236799 true +true +236802 true +true +true +true +true +236809 true +true +236813 true +true +236821 true +true +true +true +true +236839 true +236875 true +236877 true +true +236887 true +236892 true +true +true +236896 true +true +true +236903 true +236913 true +236915 true +236922 true +236925 true +true +236930 true +true +true +236953 true +true +true +236960 true +236967 true +236982 true +236986 true +236997 true +237006 true +237012 true +237029 true +237031 true +237033 true +true +237039 true +237042 true +237049 true +237053 true +237055 true +237066 true +237069 true +237071 true +true +237074 true +237076 true +237081 true +237085 true +true +237088 true +true +true +true +true +237096 true +237098 true +true +237101 true +237105 true +237114 true +true +237120 true +237124 true +true +true +237134 true +true +237139 true +237153 true +237156 true +237160 true +true +true +237178 true +237180 true +237184 true +237194 true +true +237197 true +237201 true +true +237204 true +237213 true +true +237239 true +true +237244 true +237257 true +true +237265 true +237271 true +237273 true +237276 true +237280 true +237284 true +237289 true +237297 true +237311 true +true +237314 true +true +true +237318 true +237321 true +237336 true +true +237339 true +237343 true +true +237350 true +237355 true +true +237366 true +true +237371 true +237378 true +true +237382 true +237402 true +237412 true +true +true +237417 true +237419 true +true +true +true +237424 true +237434 true +237454 true +237457 true +true +true +237463 true +237465 true +true +237481 true +237483 true +237489 true +true +237502 true +237504 true +237520 true +true +237523 true +true +237526 true +237534 true +237542 true +237544 true +237555 true +237567 true +true +237576 true +true +237581 true +true +true +true +true +237611 true +true +237614 true +true +true +237618 true +237623 true +true +237629 true +237702 true +true +237742 true +true +true +237748 true +237750 true +true +237769 true +237773 true +true +237778 true +true +true +237782 true +true +237790 true +237793 true +true +237802 true +true +237806 true +237835 true +true +true +true +237841 true +237845 true +237852 true +true +237862 true +true +true +237867 true +237870 true +true +237881 true +true +237886 true +true +true +true +237913 true +true +237916 true +237922 true +237932 true +237941 true +237945 true +237950 true +true +237955 true +237957 true +237986 true +237994 true +237996 true +238008 true +true +238018 true +true +238035 true +true +238038 true +238040 true +true +true +true +238049 true +true +238078 true +238086 true +238088 true +true +true +238101 true +238104 true +true +true +238131 true +238137 true +238142 true +true +238168 true +238171 true +true +238175 true +true +238182 true +true +238188 true +true +238224 true +true +true +true +238251 true +true +238260 true +238265 true +true +238268 true +true +true +true +true +238285 true +238294 true +true +238298 true +238314 true +238318 true +238320 true +238330 true +true +238334 true +true +238337 true +true +238341 true +238343 true +238345 true +238347 true +238367 true +238371 true +238375 true +238377 true +238390 true +238393 true +true +238398 true +true +true +true +true +238404 true +true +238407 true +true +238413 true +true +true +238417 true +238424 true +true +238434 true +true +238441 true +238443 true +238476 true +238490 true +true +true +238513 true +238517 true +true +238523 true +238525 true +238530 true +true +238535 true +true +238540 true +238548 true +238556 true +true +238560 true +238565 true +true +238574 true +true +238599 true +238603 true +238605 true +238607 true +true +238610 true +238613 true +true +true +238619 true +true +238622 true +true +238625 true +238630 true +true +true +238634 true +238644 true +238646 true +true +238652 true +238669 true +238672 true +true +238677 true +238694 true +true +true +true +238703 true +238714 true +238716 true +238718 true +238721 true +true +true +true +true +238734 true +238737 true +238747 true +238749 true +238752 true +238755 true +238759 true +238761 true +true +238765 true +true +true +238773 true +238782 true +true +238786 true +true +238793 true +238813 true +true +238817 true +true +238833 true +true +238839 true +true +238848 true +true +238851 true +238853 true +238864 true +238945 true +true +238948 true +true +238957 true +238959 true +238983 true +239000 true +239002 true +239005 true +239018 true +239034 true +239039 true +true +true +239045 true +true +239052 true +true +239069 true +true +239072 true +true +239075 true +true +239084 true +true +239088 true +239094 true +239098 true +239105 true +true +239108 true +239114 true +true +239120 true +true +true +239124 true +239129 true +239131 true +true +true +239148 true +true +true +239152 true +239155 true +239158 true +true +239161 true +239169 true +true +239172 true +239181 true +true +true +239189 true +true +239192 true +239199 true +239205 true +239207 true +239209 true +true +true +239214 true +true +239219 true +true +239230 true +239233 true +239235 true +true +true +true +true +239241 true +239250 true +239256 true +239260 true +true +239265 true +239269 true +239274 true +true +239277 true +239280 true +true +239288 true +239298 true +239304 true +true +239340 true +239351 true +239359 true +true +239362 true +239368 true +true +239371 true +239378 true +239380 true +239383 true +true +239396 true +239403 true +true +239406 true +239408 true +true +239414 true +239432 true +239441 true +true +true +239486 true +true +239491 true +239494 true +true +239509 true +239519 true +239542 true +true +239562 true +239570 true +true +239576 true +239586 true +true +239590 true +true +239598 true +true +239604 true +true +true +true +239628 true +239630 true +true +239634 true +239638 true +true +239643 true +239655 true +239661 true +true +239667 true +239669 true +239671 true +true +239674 true +239686 true +239694 true +239697 true +true +239700 true +239705 true +239707 true +true +true +239711 true +239713 true +239716 true +239718 true +239721 true +239745 true +true +239753 true +239778 true +true +true +true +239786 true +true +239798 true +239800 true +239813 true +239815 true +239820 true +239830 true +true +239834 true +239836 true +true +239841 true +239849 true +239877 true +true +true +239881 true +true +true +true +239903 true +true +239906 true +239911 true +239918 true +239920 true +239926 true +239928 true +239930 true +true +true +239937 true +239939 true +true +true +true +239944 true +239962 true +true +239973 true +true +239977 true +239979 true +239992 true +239998 true +240000 true +true +true +240006 true +240011 true +240013 true +true +240029 true +240031 true +true +240034 true +true +240038 true +240040 true +true +true +true +240049 true +240063 true +240066 true +true +true +240070 true +240076 true +240086 true +240088 true +240093 true +true +240101 true +true +240108 true +true +true +true +240113 true +true +240131 true +true +240138 true +true +240141 true +240145 true +240148 true +240150 true +true +true +240156 true +240158 true +true +240162 true +true +240175 true +240178 true +240198 true +true +240203 true +true +240207 true +240213 true +true +240231 true +true +240234 true +240239 true +240243 true +true +240249 true +true +240252 true +true +240255 true +240257 true +true +true +240261 true +240271 true +240273 true +240275 true +true +240283 true +240285 true +240288 true +true +true +240294 true +true +240298 true +true +240307 true +240309 true +true +true +240313 true +240315 true +true +240322 true +240324 true +true +240331 true +true +240334 true +true +240337 true +240341 true +true +240345 true +true +240349 true +240353 true +240356 true +240362 true +true +240367 true +true +240371 true +true +240374 true +true +true +240380 true +true +240385 true +true +240388 true +true +240392 true +240394 true +240401 true +240403 true +240405 true +true +240410 true +240412 true +240415 true +240417 true +240419 true +240422 true +true +240426 true +240430 true +240435 true +240437 true +true +240440 true +240442 true +240446 true +true +240455 true +true +240468 true +240470 true +true +true +true +true +true +240481 true +true +240488 true +true +true +true +true +240494 true +240496 true +240498 true +240504 true +true +true +240508 true +240510 true +true +240513 true +true +true +true +true +240519 true +240521 true +true +true +true +240526 true +true +240529 true +240536 true +true +240539 true +240542 true +240544 true +true +240547 true +240551 true +true +true +true +240560 true +240563 true +true +240570 true +true +240580 true +true +240586 true +true +true +true +240591 true +240595 true +240607 true +240615 true +true +true +240636 true +240648 true +true +240651 true +240653 true +true +240660 true +true +240666 true +240668 true +240671 true +240673 true +240678 true +true +240686 true +240688 true +true +240691 true +240693 true +true +true +true +240698 true +240701 true +240704 true +true +240707 true +true +true +true +240713 true +240715 true +240721 true +240729 true +240732 true +true +true +240736 true +240745 true +240748 true +240752 true +true +240756 true +true +240769 true +240772 true +240774 true +true +240777 true +240797 true +240801 true +240804 true +240807 true +240811 true +240816 true +240818 true +true +240821 true +true +240828 true +240836 true +240839 true +true +true +240843 true +240847 true +240849 true +240851 true +240858 true +240863 true +240866 true +true +240870 true +true +240873 true +true +240876 true +true +240879 true +true +240882 true +240887 true +240890 true +true +240894 true +true +240898 true +240902 true +240904 true +true +true +240908 true +true +true +true +true +true +240915 true +240918 true +true +true +240922 true +true +true +true +true +true +240930 true +240934 true +240936 true +true +true +true +240941 true +240945 true +240949 true +true +240956 true +true +true +240967 true +240969 true +true +true +240982 true +true +240985 true +240988 true +true +240991 true +true +240995 true +true +true +true +true +241009 true +true +true +241013 true +241020 true +241023 true +241025 true +241028 true +true +true +241032 true +241034 true +241036 true +true +241045 true +true +true +true +241051 true +true +true +true +241058 true +true +true +241062 true +241064 true +241070 true +241074 true +241086 true +241088 true +true +true +241092 true +241105 true +241130 true +true +true +241134 true +241136 true +241145 true +241149 true +241155 true +true +241159 true +241161 true +true +true +241165 true +true +241168 true +true +true +241173 true +241177 true +241179 true +241181 true +241183 true +241185 true +241188 true +true +241193 true +241198 true +241200 true +241203 true +true +true +true +241208 true +true +241211 true +241213 true +241215 true +241221 true +241223 true +241233 true +true +true +241238 true +241241 true +true +241244 true +241249 true +241254 true +true +241258 true +true +241266 true +241273 true +241275 true +241291 true +241294 true +241298 true +241300 true +241302 true +true +true +true +true +241309 true +true +241312 true +241317 true +241327 true +241335 true +true +true +true +241341 true +true +241344 true +true +241347 true +241349 true +true +241352 true +241355 true +241357 true +241361 true +true +241364 true +241371 true +241376 true +true +true +241391 true +241395 true +241399 true +241405 true +241407 true +241411 true +241418 true +true +241427 true +241430 true +241435 true +true +true +true +241440 true +241464 true +true +241472 true +241482 true +true +241491 true +241527 true +true +241530 true +241539 true +241541 true +true +true +241545 true +241565 true +241567 true +241575 true +241581 true +true +true +241585 true +241590 true +241597 true +241599 true +true +241603 true +true +241611 true +true +241616 true +true +241620 true +241632 true +241635 true +241643 true +241645 true +241664 true +241666 true +241671 true +true +241675 true +241683 true +true +true +241687 true +true +true +241693 true +241697 true +true +241700 true +241703 true +241705 true +241709 true +true +true +true +true +241717 true +true +241720 true +241724 true +true +true +241734 true +241736 true +241740 true +241749 true +241756 true +true +241759 true +241761 true +true +true +241768 true +241770 true +241775 true +241781 true +241783 true +true +true +241789 true +241796 true +true +241799 true +241802 true +true +241807 true +241813 true +true +241820 true +true +241830 true +241836 true +241839 true +241843 true +true +true +241854 true +true +241858 true +241867 true +true +241872 true +true +241876 true +241885 true +true +241889 true +241897 true +241899 true +true +true +241914 true +241916 true +241920 true +true +true +true +241942 true +true +true +241947 true +241952 true +241956 true +241963 true +241967 true +true +241970 true +241974 true +241976 true +true +true +241981 true +true +241984 true +true +true +true +true +true +241993 true +true +true +true +true +true +true +242001 true +242003 true +true +242007 true +true +true +242013 true +242015 true +242020 true +true +242023 true +242032 true +242037 true +242039 true +242042 true +242045 true +242047 true +242050 true +true +242053 true +242057 true +true +true +242061 true +true +242067 true +true +true +242071 true +242073 true +242075 true +242094 true +true +true +true +242104 true +242108 true +242110 true +242134 true +242152 true +242156 true +242167 true +true +true +true +true +242173 true +242185 true +true +true +242191 true +242210 true +242212 true +true +true +242224 true +true +true +242230 true +true +true +true +true +242236 true +true +242242 true +242254 true +true +242257 true +true +true +242261 true +true +242265 true +true +242270 true +242274 true +242280 true +242292 true +242300 true +true +242303 true +242332 true +242336 true +242339 true +true +true +true +242344 true +true +242348 true +242350 true +242353 true +242356 true +242358 true +242371 true +242382 true +242386 true +242390 true +242416 true +true +true +242422 true +242425 true +true +true +242440 true +true +242452 true +242456 true +242461 true +true +true +242475 true +true +242478 true +true +true +242491 true +242493 true +242504 true +true +true +242510 true +242513 true +242518 true +true +242527 true +242529 true +242549 true +242551 true +242555 true +true +242573 true +242575 true +242578 true +true +242583 true +true +242615 true +true +242619 true +242621 true +242624 true +242633 true +242653 true +242678 true +true +242682 true +true +242690 true +true +242714 true +true +true +true +true +242720 true +242722 true +true +242728 true +242731 true +true +true +242736 true +242738 true +242741 true +242743 true +true +242785 true +true +242790 true +242801 true +242827 true +242835 true +242843 true +true +242867 true +true +242877 true +242899 true +242926 true +242929 true +true +242934 true +242937 true +242940 true +242947 true +242952 true +242961 true +242963 true +242966 true +242968 true +true +true +242972 true +243011 true +243021 true +true +243031 true +true +true +243035 true +243040 true +243045 true +243064 true +243068 true +true +true +243074 true +243076 true +243082 true +243087 true +true +true +243118 true +243121 true +243123 true +true +243126 true +243130 true +243144 true +243151 true +243159 true +243173 true +true +243176 true +243178 true +243180 true +true +true +true +true +true +true +243188 true +true +true +true +243193 true +true +243196 true +243200 true +true +243210 true +243212 true +243215 true +243217 true +243219 true +true +243222 true +243225 true +243247 true +243259 true +true +243265 true +243270 true +true +243282 true +243287 true +243294 true +true +243297 true +243299 true +243301 true +true +243306 true +true +243309 true +true +243313 true +true +243317 true +243324 true +243353 true +243355 true +243363 true +243405 true +true +243412 true +true +243428 true +243444 true +true +243451 true +243453 true +true +true +243476 true +243480 true +243484 true +true +243493 true +243495 true +243499 true +true +true +243503 true +243512 true +243518 true +true +243523 true +true +243527 true +true +243530 true +true +243533 true +true +243547 true +true +243565 true +true +243568 true +true +243575 true +true +243582 true +243585 true +true +true +true +true +true +true +true +243594 true +true +243597 true +true +243600 true +true +true +true +true +243610 true +true +true +true +243628 true +243630 true +243637 true +243646 true +true +243649 true +243666 true +243668 true +243676 true +243687 true +243689 true +243693 true +true +243696 true +243704 true +true +true +true +243709 true +true +243712 true +243714 true +true +true +243719 true +true +243722 true +243725 true +true +243728 true +true +true +243732 true +243736 true +true +true +243740 true +243745 true +243747 true +243752 true +true +243755 true +true +true +243759 true +true +true +true +true +243765 true +243776 true +243786 true +243789 true +243791 true +true +243794 true +true +true +243801 true +true +243810 true +true +243816 true +243819 true +true +243822 true +243829 true +true +243833 true +true +243842 true +true +true +243846 true +243849 true +true +243852 true +243854 true +true +243864 true +243871 true +true +243874 true +true +true +243879 true +243885 true +true +243893 true +true +243898 true +243900 true +243902 true +true +true +243906 true +true +true +243910 true +true +true +243915 true +true +true +243919 true +true +243924 true +true +243927 true +true +true +true +243932 true +true +true +243936 true +true +243941 true +true +243945 true +243948 true +243950 true +243952 true +true +true +true +true +true +243960 true +243962 true +243980 true +true +true +243984 true +244001 true +244006 true +244015 true +244017 true +244020 true +true +244023 true +244027 true +true +244030 true +244043 true +true +244047 true +244053 true +true +true +244057 true +244059 true +244068 true +true +true +244080 true +244089 true +true +true +244093 true +true +244098 true +true +true +244102 true +true +true +244106 true +244114 true +true +244117 true +244124 true +true +244133 true +true +true +244137 true +244139 true +true +true +244143 true +244145 true +true +true +244150 true +true +244153 true +244155 true +true +true +244165 true +true +244168 true +244170 true +244174 true +true +244177 true +true +244182 true +244187 true +true +244190 true +244194 true +true +244197 true +244218 true +244221 true +true +true +244232 true +244237 true +true +244240 true +244244 true +true +244248 true +true +244251 true +true +244257 true +244259 true +244266 true +true +244269 true +244282 true +true +true +244288 true +244302 true +244308 true +244310 true +244312 true +244316 true +244319 true +244322 true +true +244330 true +244332 true +true +true +true +244340 true +true +true +244350 true +true +true +244354 true +true +244360 true +244365 true +244367 true +244378 true +true +244381 true +true +244389 true +244391 true +true +244396 true +true +true +244403 true +244427 true +244444 true +true +244448 true +true +244452 true +244456 true +244461 true +244463 true +true +true +244475 true +244477 true +244487 true +true +true +true +244492 true +244509 true +true +244514 true +true +true +244522 true +true +244525 true +244532 true +true +true +244541 true +true +true +244549 true +true +244552 true +244564 true +244570 true +true +true +244579 true +244581 true +244584 true +true +244590 true +244597 true +true +true +true +244602 true +true +244611 true +244621 true +244623 true +244625 true +true +244628 true +244639 true +true +244642 true +244645 true +244655 true +244660 true +244679 true +244684 true +244692 true +true +244699 true +244704 true +244715 true +244717 true +244723 true +true +244726 true +244738 true +true +244748 true +244767 true +244769 true +244773 true +true +244779 true +244789 true +244795 true +true +true +244810 true +244817 true +true +true +244824 true +true +244828 true +244835 true +244851 true +244855 true +true +244859 true +true +true +244863 true +244865 true +244867 true +244869 true +244871 true +244873 true +true +244877 true +true +244883 true +244888 true +true +244892 true +244918 true +244920 true +244928 true +true +true +244932 true +true +true +244936 true +true +244943 true +244945 true +true +true +true +244954 true +true +244958 true +true +244973 true +true +true +true +244985 true +true +true +true +244992 true +true +244995 true +244997 true +true +true +true +245006 true +true +245021 true +true +245026 true +245028 true +245035 true +245047 true +true +245050 true +245056 true +245058 true +245098 true +245103 true +true +true +245107 true +true +true +245117 true +true +245121 true +245127 true +true +245132 true +245134 true +245140 true +245147 true +245162 true +true +245165 true +true +true +245169 true +true +245180 true +245187 true +245198 true +245206 true +true +245209 true +true +true +true +true +245219 true +245221 true +true +245227 true +true +true +true +245233 true +245235 true +true +245238 true +245249 true +245252 true +true +245255 true +true +245261 true +245274 true +245292 true +245303 true +true +245306 true +true +true +245310 true +true +245314 true +true +true +true +245320 true +245331 true +true +245337 true +true +true +245341 true +true +true +true +245348 true +true +245351 true +245353 true +true +true +245384 true +true +245387 true +245393 true +245398 true +245410 true +true +245413 true +245429 true +true +true +245435 true +true +245448 true +245450 true +true +true +245456 true +true +245462 true +true +245466 true +true +245470 true +245472 true +245477 true +true +true +245484 true +true +245487 true +245493 true +245496 true +245506 true +true +245509 true +true +245512 true +true +245517 true +true +245521 true +true +245524 true +true +true +245541 true +245555 true +true +true +245563 true +true +true +true +245571 true +true +245577 true +245586 true +true +true +true +true +true +245593 true +true +245598 true +true +true +245616 true +245623 true +245625 true +true +true +true +245630 true +245633 true +245638 true +true +245644 true +true +245650 true +true +true +245654 true +true +true +245669 true +245672 true +245679 true +true +245689 true +true +245694 true +true +true +true +true +true +245711 true +true +245714 true +true +245726 true +true +245729 true +245731 true +true +245734 true +245736 true +245741 true +true +245754 true +245759 true +true +245762 true +245769 true +245778 true +true +true +245785 true +true +true +245789 true +245808 true +true +true +true +245825 true +245845 true +true +true +245856 true +245860 true +245874 true +245877 true +245879 true +245882 true +true +true +true +245888 true +245906 true +245915 true +245927 true +true +245939 true +245941 true +245943 true +245952 true +245974 true +245980 true +245989 true +true +245992 true +245995 true +true +true +true +246000 true +246002 true +true +true +246006 true +true +246012 true +true +246022 true +true +246028 true +246030 true +true +true +246035 true +246037 true +true +246047 true +246072 true +246080 true +246084 true +246095 true +true +246098 true +true +true +true +246105 true +true +true +true +true +246112 true +246117 true +246120 true +true +true +246124 true +246127 true +246136 true +246141 true +246144 true +true +246150 true +true +246159 true +true +true +246164 true +246166 true +246168 true +true +246177 true +246179 true +true +246182 true +246188 true +true +246193 true +true +true +246197 true +true +true +246202 true +246213 true +true +246226 true +246228 true +true +246235 true +true +246238 true +246248 true +true +true +246252 true +true +246260 true +true +246265 true +true +246281 true +246283 true +246293 true +246296 true +true +true +246300 true +true +246303 true +true +246315 true +true +246318 true +246331 true +246333 true +true +246336 true +true +246342 true +246344 true +true +true +true +246355 true +true +true +246360 true +true +true +246364 true +246368 true +246370 true +246373 true +true +246377 true +246389 true +246393 true +246395 true +true +true +246403 true +246405 true +true +246408 true +246411 true +true +246415 true +246417 true +246423 true +246431 true +246441 true +true +246447 true +true +246459 true +246472 true +true +true +true +246479 true +true +true +true +246484 true +246494 true +true +246506 true +246513 true +246515 true +246525 true +true +246533 true +246537 true +true +246543 true +true +246559 true +true +true +true +true +true +246566 true +246568 true +true +246571 true +246578 true +true +246588 true +true +true +246614 true +true +246624 true +true +246651 true +246661 true +246674 true +246677 true +true +246696 true +true +246699 true +true +246706 true +246711 true +true +246722 true +246724 true +true +246744 true +246759 true +246790 true +246792 true +246819 true +246841 true +246845 true +true +true +246849 true +246851 true +246856 true +true +246861 true +246868 true +246883 true +246885 true +246896 true +246904 true +true +246918 true +246922 true +246931 true +true +246934 true +246939 true +true +246942 true +246948 true +true +true +true +246958 true +246968 true +true +246975 true +246990 true +true +247007 true +true +true +247034 true +247039 true +247057 true +247111 true +247118 true +true +247129 true +247139 true +247149 true +247161 true +247172 true +247178 true +true +247186 true +247196 true +247198 true +247222 true +247228 true +247264 true +247268 true +247270 true +247287 true +247292 true +247303 true +247311 true +247316 true +247320 true +247339 true +247344 true +247346 true +true +247349 true +true +247356 true +247368 true +247373 true +247378 true +true +247381 true +247385 true +247414 true +true +247419 true +247431 true +true +true +true +247437 true +true +247445 true +247447 true +247455 true +true +247462 true +247470 true +247491 true +247503 true +247507 true +247511 true +true +247517 true +247525 true +true +247528 true +247534 true +247547 true +247553 true +247591 true +247598 true +247606 true +247615 true +247627 true +247633 true +true +247643 true +247646 true +247651 true +247655 true +true +247664 true +247671 true +true +247685 true +247690 true +true +247694 true +true +true +247700 true +247720 true +true +true +247724 true +247730 true +247732 true +247741 true +true +247744 true +247747 true +247755 true +247760 true +true +247763 true +247765 true +247769 true +247782 true +247784 true +247801 true +true +247806 true +247826 true +247829 true +247832 true +247837 true +247843 true +true +247857 true +247870 true +247878 true +true +true +true +247885 true +true +247902 true +247905 true +247907 true +true +247916 true +247922 true +true +true +true +true +247928 true +247932 true +247936 true +247939 true +247941 true +true +true +247945 true +true +247951 true +true +true +true +true +247959 true +247962 true +247966 true +247968 true +247987 true +247989 true +true +248003 true +248014 true +true +248019 true +248025 true +248027 true +248032 true +248037 true +true +248041 true +248069 true +248073 true +true +248081 true +248084 true +true +248093 true +true +248099 true +248106 true +true +true +true +248112 true +true +248126 true +true +248129 true +248132 true +true +248135 true +248141 true +248151 true +true +248154 true +248158 true +248161 true +248165 true +248172 true +true +248180 true +248189 true +true +248192 true +true +248200 true +248205 true +true +true +248231 true +248233 true +true +true +248253 true +248258 true +248268 true +true +248276 true +true +248285 true +248295 true +248298 true +true +true +248312 true +true +true +248338 true +248340 true +248343 true +248355 true +248358 true +248365 true +248377 true +true +true +248389 true +248391 true +248395 true +true +248408 true +248435 true +true +248443 true +248450 true +248454 true +248456 true +248460 true +248470 true +248479 true +true +248485 true +248490 true +248493 true +248495 true +true +248499 true +248504 true +true +248507 true +248544 true +248553 true +248558 true +true +248561 true +248567 true +248587 true +248591 true +248596 true +true +248599 true +248602 true +true +248617 true +248630 true +248639 true +248642 true +true +248667 true +248671 true +248673 true +true +248682 true +248692 true +true +true +true +true +true +true +true +true +true +true +true +true +true +true +248717 true +248721 true +true +true +248734 true +true +248756 true +248781 true +248783 true +248790 true +true +true +true +248797 true +248804 true +true +248808 true +248813 true +248833 true +248837 true +true +248841 true +248846 true +true +true +248851 true +true +248862 true +248870 true +248872 true +248877 true +248880 true +248882 true +248885 true +true +248888 true +248891 true +true +true +248895 true +true +true +248899 true +true +248902 true +true +true +248906 true +248919 true +248945 true +248952 true +true +true +true +true +248960 true +248964 true +true +true +248973 true +248978 true +true +248992 true +248999 true +249002 true +true +249012 true +249018 true +true +249022 true +true +true +true +249027 true +249034 true +249055 true +true +249058 true +true +true +true +249065 true +249090 true +249097 true +249104 true +249122 true +249132 true +249158 true +249172 true +249174 true +true +249183 true +true +true +true +249190 true +249203 true +true +249226 true +true +249234 true +true +249243 true +249246 true +249251 true +249257 true +true +249260 true +249262 true +249269 true +249282 true +249289 true +true +true +true +249304 true +249307 true +249311 true +249313 true +249316 true +249326 true +true +249355 true +true +249358 true +249365 true +249367 true +249374 true +true +249377 true +249382 true +true +249386 true +249391 true +249393 true +true +true +249462 true +true +true +249466 true +true +249471 true +249478 true +true +249493 true +249497 true +249504 true +249514 true +249520 true +249544 true +249567 true +249574 true +true +249578 true +true +249590 true +249595 true +249606 true +249609 true +249615 true +249618 true +249621 true +249638 true +249642 true +true +249646 true +true +true +true +249651 true +249653 true +true +true +true +249658 true +true +true +249663 true +249665 true +249681 true +true +249686 true +249688 true +249699 true +249701 true +true +249714 true +true +true +249719 true +true +249725 true +249738 true +true +249748 true +true +249751 true +249755 true +true +249764 true +249809 true +249825 true +true +249831 true +249848 true +true +249855 true +249862 true +249865 true +true +249868 true +true +249871 true +true +249879 true +true +true +true +249885 true +true +249895 true +249902 true +249905 true +249909 true +true +249912 true +249916 true +249919 true +249922 true +249929 true +249948 true +true +true +249961 true +true +true +true +249967 true +249970 true +true +249975 true +true +true +true +249980 true +true +true +true +249985 true +true +249988 true +249990 true +true +249993 true +249995 true +250005 true +true +true +250010 true +true +250019 true +250023 true +250025 true +250046 true +true +true +true +250052 true +250059 true +250067 true +250070 true +250079 true +true +250087 true +250096 true +250114 true +true +true +true +250120 true +250129 true +true +250135 true +true +true +true +250164 true +true +250170 true +true +250173 true +250179 true +250184 true +true +250189 true +true +250192 true +250203 true +true +250206 true +250208 true +250210 true +250215 true +250217 true +250223 true +250225 true +250228 true +250239 true +250241 true +250260 true +250263 true +250269 true +250273 true +250277 true +true +true +true +250282 true +250284 true +true +true +250292 true +true +true +250310 true +250317 true +true +true +true +250322 true +250324 true +250332 true +250342 true +true +250347 true +250351 true +250356 true +true +true +250368 true +true +250379 true +250386 true +true +true +250393 true +250398 true +true +250406 true +true +250409 true +250411 true +250417 true +250419 true +250423 true +250427 true +250429 true +true +true +true +true +true +250436 true +true +true +true +250442 true +250447 true +250454 true +true +250461 true +250464 true +250468 true +true +250473 true +true +250486 true +true +250496 true +true +true +250504 true +250510 true +250513 true +250515 true +250517 true +true +250523 true +250527 true +250529 true +true +true +true +250538 true +true +true +true +true +250551 true +true +true +true +250557 true +true +true +true +250565 true +true +250568 true +true +true +250586 true +true +250601 true +250603 true +250605 true +true +250612 true +true +true +250620 true +true +250625 true +true +250630 true +250636 true +true +250640 true +true +true +250644 true +true +true +true +250655 true +true +250668 true +250683 true +250686 true +250701 true +250703 true +250707 true +true +250710 true +true +250714 true +true +250717 true +true +true +true +true +250727 true +true +true +250732 true +true +250736 true +250740 true +250742 true +250776 true +250781 true +250790 true +250792 true +250794 true +true +250803 true +250813 true +250815 true +250832 true +true +250842 true +250854 true +true +true +true +250865 true +250867 true +true +250875 true +true +250879 true +true +true +250893 true +true +true +true +250901 true +true +250904 true +250909 true +true +250920 true +true +250928 true +250933 true +true +250939 true +true +250942 true +true +250949 true +250955 true +250962 true +true +250965 true +250967 true +250969 true +250971 true +250973 true +250985 true +true +250994 true +250997 true +250999 true +true +true +251012 true +251014 true +251016 true +true +true +251043 true +251048 true +251053 true +251055 true +251074 true +251076 true +251084 true +251087 true +251097 true +true +251109 true +true +251117 true +251126 true +251128 true +true +251132 true +251135 true +true +251141 true +251147 true +251149 true +true +251152 true +251160 true +251165 true +251170 true +true +251191 true +251196 true +true +251203 true +251210 true +251212 true +true +251215 true +251217 true +251227 true +251230 true +true +251238 true +251245 true +true +true +251249 true +251254 true +true +251257 true +true +251262 true +true +true +true +true +true +251270 true +true +true +true +251277 true +true +251280 true +251308 true +251310 true +true +true +251320 true +true +true +251328 true +251330 true +true +251333 true +251335 true +true +true +true +true +true +251344 true +true +251350 true +251355 true +251357 true +251363 true +true +true +251387 true +251389 true +251391 true +true +251394 true +251404 true +true +251409 true +251414 true +true +251420 true +true +251427 true +251440 true +251447 true +251459 true +true +251477 true +true +true +true +251490 true +true +251497 true +251505 true +251521 true +true +251531 true +true +251542 true +251544 true +true +251550 true +true +251553 true +true +true +251560 true +true +true +251565 true +251567 true +true +251581 true +true +251585 true +251588 true +true +251592 true +true +251597 true +251605 true +251608 true +true +251611 true +true +251614 true +true +251617 true +true +251624 true +true +251634 true +251636 true +true +true +251640 true +true +251643 true +251646 true +251648 true +true +251655 true +true +251680 true +251683 true +251689 true +251693 true +251698 true +true +true +true +251703 true +true +251720 true +true +251737 true +true +true +251742 true +true +251746 true +true +true +true +251753 true +251756 true +251764 true +true +251773 true +251776 true +251778 true +true +true +251786 true +true +251806 true +251809 true +true +251814 true +251825 true +251829 true +251834 true +true +251837 true +251841 true +251851 true +true +251856 true +true +251864 true +251867 true +251869 true +251871 true +251873 true +251875 true +251878 true +true +true +true +251885 true +251892 true +true +true +251896 true +251905 true +251907 true +true +251910 true +251913 true +251915 true +251922 true +251936 true +true +251940 true +251942 true +251944 true +true +true +true +true +true +251957 true +251959 true +251961 true +251963 true +251965 true +251967 true +251970 true +251972 true +true +true +true +251987 true +252005 true +252008 true +true +true +true +252018 true +true +true +252027 true +true +252030 true +true +252039 true +true +252047 true +252049 true +true +252052 true +252054 true +252056 true +true +252061 true +true +252066 true +true +252082 true +252084 true +true +252088 true +252090 true +252092 true +252100 true +252110 true +252115 true +252122 true +true +252125 true +true +252128 true +252130 true +true +252133 true +252139 true +252141 true +true +252144 true +true +252147 true +true +252150 true +252154 true +252158 true +252160 true +252162 true +true +252165 true +true +252172 true +true +252183 true +252186 true +true +252189 true +true +true +252198 true +252203 true +true +true +true +252208 true +252210 true +252218 true +true +true +252234 true +252237 true +true +true +252247 true +252252 true +true +252255 true +true +252261 true +252267 true +252271 true +252274 true +true +true +252278 true +252280 true +252284 true +true +252287 true +252294 true +true +252298 true +252318 true +true +252333 true +true +252340 true +252342 true +252358 true +252360 true +252364 true +252367 true +252373 true +true +252376 true +252389 true +252400 true +true +252404 true +252406 true +252409 true +252412 true +252418 true +true +true +252425 true +true +252428 true +252434 true +true +252438 true +252442 true +true +true +252450 true +true +true +252456 true +true +252460 true +252476 true +true +252479 true +true +true +252488 true +true +true +true +true +252497 true +true +252500 true +252507 true +252512 true +252516 true +252518 true +252521 true +252533 true +252542 true +252547 true +true +252550 true +252552 true +252566 true +252580 true +252583 true +252585 true +252588 true +true +252591 true +252596 true +252598 true +252602 true +252612 true +252616 true +252625 true +true +252642 true +252648 true +true +252652 true +252654 true +252667 true +true +252680 true +252682 true +true +252690 true +252698 true +252706 true +252731 true +252735 true +252737 true +true +252742 true +252749 true +252755 true +true +252758 true +252766 true +252773 true +252778 true +true +252781 true +252789 true +252791 true +252797 true +252802 true +true +252808 true +252813 true +252817 true +252838 true +252846 true +252848 true +252850 true +252854 true +true +252858 true +252863 true +252875 true +252885 true +true +true +true +252890 true +true +252893 true +true +true +true +252898 true +true +252901 true +true +252909 true +252920 true +true +252925 true +252948 true +252957 true +252961 true +true +true +252965 true +252977 true +252988 true +true +252991 true +252997 true +253001 true +true +253004 true +253010 true +true +253013 true +253017 true +true +253023 true +true +253030 true +253033 true +253035 true +253045 true +253047 true +253053 true +253055 true +253057 true +253060 true +true +253065 true +253067 true +253070 true +253075 true +true +253078 true +253080 true +253083 true +253085 true +253088 true +253096 true +253099 true +253107 true +true +253111 true +253119 true +253129 true +253150 true +253156 true +253195 true +253197 true +253199 true +253206 true +true +true +253210 true +253229 true +253232 true +253236 true +true +true +true +253241 true +253246 true +true +253255 true +253257 true +253261 true +253265 true +true +253271 true +253278 true +true +253283 true +true +253314 true +253338 true +253340 true +253347 true +253349 true +253359 true +true +253364 true +true +253367 true +true +253370 true +253379 true +true +253389 true +253396 true +true +253401 true +253407 true +253412 true +253420 true +true +253424 true +253429 true +true +253432 true +253442 true +253453 true +253462 true +253486 true +253492 true +253497 true +253503 true +253543 true +true +253550 true +253559 true +253565 true +253572 true +true +true +253580 true +true +true +true +true +253588 true +253590 true +253592 true +253598 true +253608 true +253615 true +true +253622 true +253626 true +253634 true +253637 true +true +253648 true +253652 true +253657 true +253660 true +253663 true +253684 true +true +true +253690 true +253692 true +253695 true +true +253698 true +true +253701 true +true +253706 true +253708 true +true +true +253720 true +253725 true +253733 true +253735 true +253740 true +253742 true +253744 true +true +true +true +253749 true +true +true +true +253759 true +true +253762 true +true +true +253769 true +true +253772 true +253781 true +253788 true +253795 true +253801 true +253807 true +253812 true +253819 true +true +253854 true +true +253857 true +true +253864 true +true +253868 true +true +true +true +253875 true +true +253878 true +253882 true +253886 true +true +true +true +253891 true +253900 true +253902 true +253910 true +true +253919 true +true +true +253925 true +true +253930 true +true +253933 true +true +253945 true +253949 true +true +253963 true +253965 true +true +253970 true +253986 true +true +254003 true +254015 true +true +254019 true +true +254023 true +true +true +254031 true +254033 true +true +true +254038 true +true +true +true +true +254054 true +true +true +254059 true +254063 true +254067 true +254069 true +254073 true +true +true +true +254086 true +true +254089 true +254091 true +254103 true +254110 true +true +254118 true +254122 true +254138 true +true +true +254142 true +254152 true +true +254157 true +254169 true +true +254173 true +true +254192 true +true +254195 true +254198 true +254220 true +254222 true +254236 true +true +254244 true +254251 true +true +254265 true +true +254273 true +true +254282 true +true +254286 true +true +254293 true +254295 true +true +true +254300 true +254324 true +true +254327 true +254329 true +254335 true +254340 true +true +254359 true +true +254362 true +254368 true +254371 true +254376 true +254381 true +254388 true +true +254391 true +254400 true +true +254405 true +254417 true +true +254426 true +true +254435 true +254464 true +true +254473 true +254483 true +254495 true +254511 true +254513 true +254515 true +254518 true +true +254530 true +254532 true +true +254535 true +true +254538 true +254543 true +254549 true +true +254562 true +true +true +254569 true +254575 true +254577 true +true +254585 true +true +254590 true +true +true +254596 true +true +true +254603 true +254624 true +254629 true +254638 true +254641 true +254664 true +true +true +254672 true +true +true +true +true +true +true +254681 true +true +true +254687 true +true +254698 true +254700 true +254705 true +true +254719 true +true +true +254723 true +254726 true +true +true +254730 true +true +254734 true +true +254738 true +254740 true +254743 true +true +254758 true +254760 true +254765 true +254775 true +254781 true +true +true +254789 true +true +254802 true +true +true +254806 true +true +254809 true +254830 true +true +254833 true +254845 true +true +254853 true +true +254858 true +true +254877 true +254890 true +254899 true +true +true +true +true +true +254906 true +254908 true +true +254932 true +true +254945 true +true +254954 true +254956 true +254958 true +254966 true +254968 true +254974 true +254977 true +254990 true +254997 true +255001 true +255008 true +255028 true +255032 true +true +255047 true +255052 true +255069 true +255077 true +true +255080 true +255084 true +true +true +255092 true +true +true +255105 true +true +255110 true +255116 true +true +true +255123 true +255134 true +true +255154 true +true +255158 true +true +true +255162 true +255167 true +255171 true +255176 true +true +255180 true +255184 true +255189 true +255199 true +true +255202 true +true +true +255206 true +255208 true +255213 true +255215 true +255217 true +true +255224 true +true +255230 true +255237 true +255244 true +true +255247 true +255250 true +true +255254 true +255266 true +255270 true +255272 true +255281 true +true +true +255288 true +true +255291 true +true +true +255295 true +true +255300 true +255305 true +255309 true +255313 true +255322 true +255324 true +255326 true +255333 true +true +255337 true +255358 true +255360 true +255365 true +true +255368 true +255373 true +255375 true +true +255380 true +255392 true +255410 true +255414 true +true +255427 true +255430 true +true +255442 true +true +255450 true +255489 true +true +255494 true +true +255498 true +255500 true +true +255522 true +255542 true +255545 true +true +255549 true +255576 true +true +255579 true +255588 true +255590 true +true +255601 true +255606 true +true +255611 true +255622 true +true +255638 true +255640 true +255643 true +true +255658 true +255660 true +true +true +255665 true +true +255683 true +255685 true +true +255690 true +255692 true +255701 true +true +255725 true +255728 true +255734 true +255742 true +255750 true +255752 true +true +255755 true +255786 true +255789 true +255792 true +255794 true +true +255797 true +true +true +true +true +255819 true +255830 true +255871 true +255876 true +true +true +255880 true +255891 true +255904 true +255918 true +255920 true +255923 true +true +255945 true +255949 true +true +255954 true +255956 true +true +255965 true +true +255968 true +255973 true +true +255996 true +255998 true +256001 true +256003 true +256014 true +true +256023 true +256025 true +256027 true +256030 true +true +256034 true +true +true +true +true +256041 true +true +256080 true +256087 true +true +256098 true +256104 true +256106 true +true +256109 true +true +256113 true +true +256117 true +true +256128 true +true +256133 true +256139 true +256146 true +256148 true +true +256151 true +256154 true +256160 true +true +true +256171 true +256175 true +true +true +256179 true +true +256185 true +true +256191 true +true +true +256195 true +256199 true +256203 true +256214 true +true +256222 true +256228 true +true +256231 true +256236 true +256256 true +256263 true +256267 true +256300 true +256305 true +256319 true +256326 true +true +true +256332 true +true +256336 true +true +256350 true +256352 true +true +256366 true +256368 true +256380 true +256390 true +true +true +256399 true +256401 true +256444 true +256446 true +true +256452 true +256458 true +256463 true +256467 true +256469 true +256479 true +true +256483 true +256486 true +256508 true +true +256519 true +256559 true +256563 true +256568 true +true +256571 true +true +true +256575 true +256584 true +256594 true +256596 true +256600 true +true +true +256604 true +256619 true +256621 true +256623 true +256646 true +true +true +true +true +true +true +true +256655 true +true +true +256659 true +256667 true +256669 true +256671 true +256673 true +256679 true +true +256686 true +true +256689 true +true +256692 true +256694 true +256702 true +true +256707 true +256709 true +256711 true +256713 true +256719 true +256723 true +256730 true +256733 true +256738 true +256740 true +256743 true +256750 true +256754 true +256760 true +true +256764 true +256770 true +true +256783 true +true +256793 true +256796 true +256798 true +true +256801 true +true +256808 true +true +true +256813 true +256815 true +true +256826 true +true +true +256830 true +256836 true +256849 true +256854 true +true +256860 true +256880 true +256885 true +true +256897 true +true +256901 true +256906 true +256909 true +true +256915 true +true +256918 true +256927 true +256936 true +256938 true +true +256950 true +true +256953 true +256955 true +true +true +true +256960 true +true +true +true +256965 true +true +true +true +256970 true +true +true +true +256975 true +true +true +true +256980 true +true +true +true +256991 true +true +256994 true +true +257005 true +257007 true +257015 true +true +257027 true +257029 true +true +257033 true +true +257049 true +true +257056 true +true +true +true +true +257067 true +257069 true +257073 true +true +true +257084 true +true +257087 true +257096 true +257098 true +true +257106 true +257119 true +true +257123 true +true +257126 true +257132 true +true +257136 true +257138 true +true +257144 true +257159 true +true +257179 true +true +true +257183 true +true +257193 true +true +257203 true +true +257206 true +257208 true +257217 true +257220 true +257230 true +257267 true +true +257270 true +true +257277 true +257295 true +true +257329 true +true +257338 true +257345 true +true +257365 true +257367 true +true +257384 true +257386 true +257396 true +257398 true +257407 true +257409 true +257415 true +257427 true +257429 true +257432 true +true +257440 true +true +257447 true +257449 true +257453 true +true +257461 true +257465 true +true +257481 true +true +257485 true +true +257489 true +true +257493 true +257495 true +257498 true +257505 true +true +true +257511 true +true +257518 true +257520 true +257526 true +257542 true +257544 true +257547 true +257553 true +true +257557 true +true +257567 true +257589 true +257607 true +257616 true +257632 true +257634 true +257637 true +257652 true +true +257669 true +257671 true +257675 true +true +true +257680 true +true +257695 true +257698 true +true +true +true +257703 true +true +257715 true +257717 true +true +257727 true +true +257734 true +true +257740 true +257746 true +257752 true +257754 true +true +257757 true +257762 true +257769 true +true +257772 true +true +true +true +true +257790 true +true +true +true +257795 true +true +true +true +257800 true +true +true +257810 true +257816 true +257826 true +257841 true +true +257847 true +257853 true +true +true +true +true +true +257863 true +257866 true +257880 true +257886 true +257894 true +257909 true +257923 true +true +257932 true +true +257936 true +true +true +true +true +true +true +true +true +257953 true +257958 true +257965 true +257970 true +257976 true +true +257980 true +257982 true +257991 true +true +258011 true +true +258014 true +true +258029 true +258032 true +258034 true +258036 true +true +258040 true +true +true +258045 true +258047 true +true +258053 true +258055 true +258057 true +true +258063 true +true +true +true +true +258069 true +258071 true +true +258075 true +true +258082 true +true +258090 true +true +true +258106 true +258112 true +258128 true +258130 true +258134 true +258137 true +true +258141 true +true +258147 true +true +258150 true +258153 true +true +true +258159 true +true +true +true +258164 true +258166 true +258168 true +258170 true +258172 true +true +true +true +true +true +258182 true +true +258185 true +258189 true +258191 true +258193 true +true +true +258242 true +true +258251 true +258256 true +true +258259 true +true +258263 true +true +true +true +258268 true +true +true +258272 true +true +true +true +258277 true +true +258280 true +258283 true +true +258286 true +true +258290 true +258292 true +true +true +258309 true +true +true +258313 true +true +258318 true +258321 true +true +258324 true +258327 true +true +258335 true +258351 true +258377 true +true +258389 true +true +true +258393 true +258401 true +258410 true +258435 true +true +258438 true +true +258446 true +true +258449 true +true +true +258453 true +true +true +258464 true +258470 true +true +258477 true +true +258487 true +258489 true +258494 true +258496 true +true +true +258502 true +258506 true +258508 true +258511 true +258513 true +258517 true +true +258520 true +true +258532 true +true +258537 true +true +258540 true +258542 true +258544 true +258546 true +true +true +true +true +258552 true +true +258555 true +true +258558 true +258562 true +258569 true +true +true +true +true +true +258577 true +258587 true +258592 true +258599 true +258604 true +true +true +true +258610 true +258613 true +258615 true +true +258620 true +true +258623 true +258637 true +258641 true +258646 true +true +258649 true +258656 true +258658 true +258662 true +258666 true +258670 true +258672 true +258680 true +258688 true +true +true +true +258696 true +258702 true +true +258706 true +true +258717 true +258719 true +true +258729 true +258733 true +258738 true +258743 true +258745 true +true +258758 true +258760 true +258773 true +true +true +258786 true +true +true +true +true +258794 true +true +258799 true +258801 true +258803 true +true +258811 true +true +258814 true +258818 true +true +true +258826 true +258832 true +true +true +258838 true +true +true +258851 true +true +258854 true +true +true +258861 true +true +258865 true +258867 true +true +true +258872 true +258874 true +258876 true +true +true +258882 true +true +258885 true +258887 true +258889 true +258894 true +true +true +true +true +true +258903 true +true +258906 true +true +258910 true +258913 true +258915 true +258918 true +258922 true +258924 true +258928 true +258931 true +true +true +true +258941 true +258945 true +258951 true +258954 true +true +258962 true +258972 true +258976 true +258992 true +true +259002 true +true +259005 true +259008 true +259011 true +true +259014 true +259017 true +259021 true +true +259028 true +259031 true +259036 true +259040 true +259042 true +true +true +true +259048 true +259054 true +259058 true +true +259061 true +true +259067 true +true +true +259072 true +true +true +259077 true +259079 true +259083 true +259086 true +259088 true +true +259101 true +259104 true +259110 true +259112 true +259117 true +259123 true +true +259128 true +259130 true +true +true +259137 true +true +259140 true +true +true +true +true +259147 true +true +259150 true +259152 true +259161 true +259163 true +259167 true +259170 true +259176 true +259178 true +259180 true +259185 true +259189 true +true +259192 true +true +true +259199 true +true +true +259203 true +true +true +259210 true +259212 true +true +true +true +259217 true +true +true +259221 true +259225 true +259233 true +259235 true +true +true +true +true +true +259242 true +true +259245 true +259247 true +true +259250 true +true +true +true +259258 true +259260 true +true +true +259264 true +259266 true +259268 true +true +true +true +259277 true +259279 true +259281 true +259283 true +259286 true +259288 true +259291 true +true +259296 true +259298 true +true +259301 true +true +259306 true +259308 true +259311 true +true +259315 true +true +true +259322 true +259327 true +259329 true +true +true +true +true +259337 true +259339 true +true +259343 true +259345 true +259347 true +true +259352 true +259354 true +true +259357 true +259359 true +259369 true +259376 true +true +259392 true +259402 true +259411 true +259438 true +true +259441 true +true +259446 true +259448 true +true +259452 true +259455 true +true +true +true +true +259462 true +true +true +true +259472 true +259474 true +259479 true +259481 true +true +true +true +true +true +true +true +259492 true +true +true +259501 true +true +259504 true +true +true +259511 true +259517 true +259519 true +true +true +259523 true +true +true +true +true +259533 true +true +259547 true +259549 true +259560 true +true +259566 true +true +259585 true +259587 true +true +259592 true +259602 true +true +259606 true +259612 true +true +true +259616 true +259627 true +true +259633 true +true +259636 true +259639 true +true +259642 true +true +true +259646 true +259648 true +259657 true +true +259668 true +259671 true +259674 true +259694 true +259699 true +259701 true +259704 true +259706 true +true +259710 true +259722 true +true +259733 true +true +259744 true +259746 true +true +259754 true +true +259761 true +true +259766 true +259770 true +true +259773 true +true +259779 true +259782 true +259785 true +259789 true +true +259797 true +true +true +259811 true +259814 true +259818 true +true +259824 true +true +true +259828 true +true +259831 true +true +259835 true +259837 true +259843 true +true +true +259855 true +259880 true +259883 true +259893 true +259913 true +true +259920 true +259923 true +259930 true +259932 true +true +true +259937 true +259939 true +259944 true +259963 true +true +259969 true +259972 true +259976 true +259988 true +259993 true +260021 true +true +true +260027 true +true +true +260043 true +true +true +260054 true +260056 true +260059 true +260061 true +260065 true +260067 true +260070 true +260072 true +true +260094 true +260099 true +260101 true +260120 true +true +true +true +true +true +260131 true +true +true +260144 true +true +260149 true +260157 true +true +true +260161 true +true +260164 true +true +260171 true +true +true +true +260177 true +true +260181 true +260183 true +true +true +260193 true +260202 true +260204 true +true +260224 true +true +260228 true +true +260233 true +true +260240 true +true +260250 true +260254 true +true +true +true +260260 true +true +true +260271 true +260273 true +260281 true +true +260284 true +true +true +260289 true +true +true +260293 true +260295 true +260301 true +true +260305 true +260308 true +260310 true +260313 true +260318 true +260321 true +true +260325 true +true +260331 true +true +true +true +260337 true +260340 true +260343 true +true +260347 true +true +true +260356 true +260358 true +true +true +260362 true +260364 true +260366 true +260368 true +260370 true +true +true +true +260378 true +true +260381 true +true +260388 true +260393 true +true +260396 true +true +true +260400 true +260405 true +true +260417 true +true +260420 true +260427 true +true +true +260431 true +260434 true +true +true +true +true +260441 true +260444 true +260446 true +260451 true +260456 true +true +260463 true +true +true +true +260468 true +true +true +260472 true +260474 true +260480 true +true +260495 true +260516 true +260531 true +260539 true +true +260547 true +true +260551 true +260558 true +260564 true +260571 true +true +true +260581 true +true +260588 true +true +260594 true +true +true +260600 true +true +true +260609 true +true +260616 true +260622 true +true +true +true +260627 true +260629 true +260638 true +true +260641 true +260644 true +260646 true +true +260649 true +260663 true +true +true +260667 true +260671 true +true +260675 true +260678 true +260680 true +260683 true +260687 true +260689 true +260693 true +260695 true +260700 true +true +260703 true +260705 true +true +260708 true +260712 true +260715 true +260719 true +true +260723 true +260725 true +260735 true +260750 true +true +260761 true +260764 true +260774 true +260784 true +260786 true +true +260796 true +true +260799 true +260803 true +260806 true +true +260810 true +true +260814 true +true +260818 true +true +true +true +260823 true +260827 true +260829 true +260834 true +true +true +260838 true +260847 true +true +true +260851 true +260855 true +true +true +260859 true +true +260868 true +260876 true +260892 true +260894 true +260897 true +260900 true +true +260904 true +260907 true +true +260910 true +260914 true +260916 true +260921 true +260923 true +260926 true +true +260934 true +260936 true +260939 true +260943 true +260945 true +true +true +260951 true +true +260954 true +260959 true +260968 true +260972 true +260974 true +true +260985 true +260987 true +261000 true +true +261003 true +261007 true +261010 true +true +261014 true +true +261018 true +true +true +261030 true +true +261035 true +true +261041 true +261043 true +261048 true +true +261051 true +true +261055 true +261061 true +261065 true +true +true +true +261070 true +true +261073 true +261075 true +261077 true +261081 true +261084 true +true +261093 true +true +true +true +261103 true +261118 true +true +261127 true +261134 true +true +261140 true +261147 true +true +true +true +true +261158 true +true +261167 true +true +261172 true +true +261176 true +261178 true +261193 true +true +true +261198 true +261201 true +261206 true +true +261214 true +261216 true +261219 true +true +261224 true +261226 true +261229 true +261232 true +true +261237 true +261239 true +261244 true +261246 true +true +261250 true +261252 true +261256 true +true +261272 true +true +261280 true +true +261316 true +261327 true +261334 true +261336 true +true +261339 true +261342 true +261344 true +true +true +261349 true +true +261354 true +261357 true +true +261362 true +261364 true +261369 true +true +true +true +true +true +261376 true +261378 true +261391 true +true +261408 true +true +261412 true +261417 true +true +true +261421 true +true +261439 true +true +261450 true +261452 true +261455 true +true +true +261459 true +true +261463 true +true +true +261467 true +261469 true +true +261478 true +261482 true +true +261486 true +true +261489 true +261497 true +true +261500 true +261503 true +261505 true +true +true +261509 true +261511 true +261513 true +261515 true +true +true +true +261521 true +261524 true +261527 true +261530 true +true +261535 true +261537 true +261542 true +true +true +true +261547 true +261550 true +261552 true +261554 true +261557 true +true +261582 true +true +261600 true +true +true +261625 true +261627 true +261632 true +261651 true +true +261660 true +261664 true +261677 true +true +261682 true +true +261690 true +true +261693 true +true +261698 true +261701 true +true +261710 true +true +261714 true +261717 true +261736 true +true +261741 true +true +261746 true +261754 true +true +261757 true +true +true +true +true +261766 true +true +261774 true +true +true +261782 true +true +261793 true +true +true +true +261799 true +261801 true +true +true +261814 true +261817 true +261827 true +261829 true +261832 true +261836 true +261838 true +261843 true +261850 true +261869 true +true +true +true +true +261876 true +261879 true +261886 true +261890 true +true +261893 true +true +true +261897 true +true +261900 true +261903 true +261906 true +true +261909 true +true +261914 true +261916 true +true +261919 true +261922 true +261924 true +true +261928 true +true +true +true +261933 true +261936 true +true +261939 true +261941 true +261945 true +261948 true +true +261956 true +true +261959 true +261961 true +true +261980 true +261983 true +261989 true +true +true +261993 true +true +261996 true +true +262000 true +262011 true +262018 true +true +262023 true +true +true +262027 true +true +262030 true +262033 true +true +262036 true +262046 true +true +262049 true +262054 true +262063 true +true +262068 true +262070 true +true +true +262079 true +true +262082 true +262084 true +true +262091 true +262093 true +true +262097 true +262100 true +true +262109 true +true +262112 true +262122 true +262125 true +262132 true +true +true +262144 true +262150 true +true +262163 true +true +262166 true +262168 true +262171 true +262180 true +true +true +262185 true +262201 true +true +true +true +262206 true +true +262209 true +true +262212 true +true +262215 true +262218 true +true +262221 true +true +262224 true +true +true +262228 true +262230 true +262232 true +true +true +262236 true +262240 true +262247 true +262257 true +262259 true +true +262266 true +true +262284 true +262302 true +262304 true +262307 true +262318 true +true +262325 true +true +true +262339 true +262341 true +262344 true +262358 true +262361 true +true +262371 true +262383 true +true +262386 true +262392 true +262394 true +262398 true +262413 true +true +262417 true +262420 true +262425 true +true +262428 true +262437 true +true +262440 true +262446 true +262449 true +true +true +262453 true +262455 true +true +true +262459 true +262461 true +true +262471 true +true +262474 true +262481 true +262483 true +true +262486 true +true +262501 true +true +true +true +262507 true +262509 true +262523 true +262525 true +262532 true +262537 true +true +262542 true +262544 true +true +true +262549 true +262556 true +262564 true +true +262570 true +true +262573 true +262575 true +262577 true +262579 true +262581 true +262586 true +true +true +262590 true +true +262593 true +262597 true +true +262600 true +262610 true +262612 true +true +262615 true +true +262618 true +262622 true +262625 true +true +262636 true +true +262640 true +262642 true +262645 true +262648 true +true +true +262652 true +true +262672 true +262678 true +true +262681 true +262685 true +true +262688 true +262690 true +262693 true +262695 true +262697 true +true +262703 true +true +262706 true +262785 true +true +true +262789 true +true +262794 true +true +true +262803 true +true +true +true +true +262809 true +262811 true +true +262814 true +262819 true +true +262822 true +true +262825 true +262827 true +262832 true +true +true +true +262839 true +262843 true +true +262846 true +262848 true +262850 true +262852 true +262854 true +262856 true +true +262859 true +true +262862 true +262868 true +true +262874 true +262876 true +262878 true +262890 true +true +true +262894 true +true +262897 true +262901 true +262905 true +true +262908 true +262910 true +true +true +262914 true +true +262917 true +262922 true +true +262927 true +262929 true +true +262940 true +true +262948 true +true +262953 true +262961 true +262963 true +true +262971 true +262973 true +262975 true +true +262982 true +262986 true +true +262999 true +true +263009 true +263011 true +true +true +true +true +263017 true +263019 true +true +263024 true +263026 true +true +263029 true +263032 true +true +true +263039 true +true +263043 true +true +263046 true +263049 true +true +263061 true +true +263064 true +263066 true +263073 true +263084 true +true +263090 true +263092 true +263095 true +263097 true +263105 true +263114 true +true +263120 true +263122 true +263125 true +263127 true +true +true +263131 true +true +true +263137 true +263139 true +263143 true +263149 true +true +263158 true +true +true +263162 true +263164 true +true +263167 true +263169 true +true +true +263173 true +true +263179 true +263181 true +263187 true +true +true +263195 true +263201 true +true +263204 true +263206 true +263208 true +263210 true +263212 true +263215 true +263220 true +true +263224 true +true +263239 true +263241 true +true +true +true +263247 true +263249 true +true +263252 true +263258 true +263265 true +true +true +true +263271 true +263273 true +263275 true +263281 true +263283 true +263286 true +true +263294 true +true +263297 true +true +true +263301 true +263306 true +true +true +true +263314 true +263316 true +263323 true +true +263326 true +263331 true +true +true +263336 true +263338 true +true +true +263353 true +263364 true +true +true +true +true +263378 true +263384 true +263386 true +263391 true +true +true +263400 true +263411 true +263421 true +263423 true +263441 true +true +true +263445 true +263449 true +263455 true +263457 true +263464 true +true +263468 true +263470 true +263478 true +263484 true +true +263488 true +true +263491 true +263493 true +true +263496 true +true +263499 true +263501 true +263503 true +true +263506 true +263508 true +true +true +263512 true +263516 true +true +263519 true +263521 true +true +263529 true +263531 true +263535 true +263537 true +263539 true +263543 true +263549 true +true +true +263554 true +263565 true +263567 true +263572 true +true +263580 true +263582 true +true +true +true +true +263588 true +true +true +true +263593 true +263595 true +true +263598 true +true +263602 true +true +true +263606 true +true +true +true +263612 true +true +263619 true +263630 true +263633 true +263635 true +true +true +true +true +263641 true +263644 true +true +263647 true +263650 true +true +263653 true +263655 true +263657 true +263659 true +263668 true +true +true +263673 true +true +263677 true +true +263681 true +true +263691 true +true +263695 true +true +true +true +true +true +263703 true +true +263706 true +true +263710 true +263716 true +true +263726 true +263729 true +true +true +263733 true +true +true +true +263748 true +263750 true +263757 true +263765 true +true +263770 true +263778 true +263782 true +true +true +263786 true +true +true +263791 true +true +true +263796 true +true +true +263800 true +true +263803 true +263805 true +true +true +263812 true +true +263818 true +true +263828 true +true +263831 true +263833 true +263838 true +263840 true +263843 true +true +263846 true +263851 true +263854 true +true +263862 true +true +true +263866 true +true +263869 true +true +true +263873 true +true +true +263877 true +true +263882 true +true +263886 true +263898 true +true +263902 true +true +263912 true +true +true +263916 true +263921 true +true +263930 true +263953 true +true +263956 true +263958 true +263960 true +263967 true +true +true +true +true +263977 true +263980 true +263982 true +263989 true +263998 true +true +true +true +264004 true +264006 true +264008 true +true +264011 true +264020 true +true +264025 true +264039 true +264041 true +264044 true +264046 true +264050 true +true +264057 true +264068 true +264072 true +true +true +264076 true +true +264085 true +true +true +264089 true +true +264092 true +264096 true +264101 true +true +264108 true +true +true +264114 true +264122 true +264130 true +264132 true +true +264141 true +true +264144 true +264146 true +true +264153 true +true +264159 true +true +264164 true +true +264170 true +true +264178 true +true +264185 true +true +true +true +264191 true +264197 true +true +true +264204 true +264206 true +264210 true +true +264218 true +264221 true +264223 true +264226 true +264228 true +264231 true +264233 true +264237 true +264243 true +true +264246 true +true +true +264250 true +true +true +264255 true +264259 true +true +264262 true +264267 true +true +264271 true +264273 true +true +true +true +264278 true +true +264283 true +264290 true +true +true +true +true +264297 true +264302 true +264305 true +264312 true +264316 true +264319 true +true +264323 true +264328 true +true +true +264332 true +true +264335 true +264337 true +264339 true +264341 true +true +264344 true +264347 true +264349 true +264354 true +true +264357 true +264359 true +true +264363 true +264365 true +264367 true +true +264383 true +true +264389 true +264391 true +true +true +true +264397 true +true +true +264418 true +true +264431 true +true +true +264439 true +264441 true +264443 true +264445 true +264448 true +true +264453 true +true +true +true +true +264464 true +264473 true +true +264480 true +264482 true +true +true +264486 true +true +264492 true +true +true +true +264499 true +true +264509 true +true +true +true +true +264515 true +264517 true +264519 true +true +264525 true +true +264528 true +264535 true +true +264540 true +true +true +true +264545 true +true +264548 true +true +264553 true +true +264556 true +true +264560 true +true +264564 true +264572 true +true +264576 true +true +264579 true +264581 true +264583 true +264586 true +264588 true +264592 true +true +264595 true +264597 true +264599 true +true +264608 true +true +true +264612 true +264614 true +true +264617 true +264621 true +264630 true +264636 true +true +264639 true +264642 true +264655 true +264658 true +true +true +264663 true +264667 true +true +264671 true +264673 true +264676 true +true +true +true +true +264689 true +264693 true +true +true +264697 true +true +264707 true +true +264712 true +true +264717 true +264720 true +true +true +264728 true +true +true +264734 true +true +true +264738 true +264740 true +264743 true +264745 true +264748 true +264753 true +true +264756 true +264762 true +true +264770 true +true +true +true +264777 true +true +true +264786 true +264792 true +264797 true +264804 true +true +true +264809 true +264818 true +true +264826 true +264828 true +264835 true +true +true +true +264841 true +264844 true +true +264848 true +264852 true +264873 true +264877 true +true +264880 true +true +264884 true +true +264887 true +264889 true +true +264897 true +true +264912 true +true +true +264916 true +true +264919 true +true +264922 true +true +264925 true +264927 true +true +true +264953 true +true +true +264957 true +true +264965 true +true +264979 true +true +264982 true +264988 true +true +264991 true +264996 true +true +264999 true +265001 true +265003 true +265012 true +true +true +true +true +true +265021 true +265023 true +true +true +true +265030 true +true +265033 true +265035 true +true +265038 true +265042 true +265044 true +265052 true +265054 true +265058 true +265060 true +265068 true +265070 true +265076 true +true +true +265080 true +265082 true +true +265085 true +265087 true +true +265090 true +265094 true +true +true +265099 true +265101 true +true +265112 true +true +true +265116 true +true +true +true +265121 true +265123 true +265125 true +265129 true +265132 true +265134 true +265136 true +265143 true +265153 true +true +true +265165 true +true +265169 true +265171 true +265173 true +true +265180 true +true +265194 true +265199 true +true +265206 true +true +true +265210 true +true +true +265215 true +265220 true +true +true +true +true +265227 true +265229 true +true +265239 true +true +265242 true +265248 true +true +265251 true +true +265254 true +265257 true +true +265271 true +true +true +265275 true +true +265291 true +265296 true +265298 true +265302 true +265304 true +true +265307 true +265322 true +265324 true +true +265327 true +265329 true +265331 true +true +265345 true +true +265348 true +265352 true +true +true +265357 true +true +265363 true +true +true +265367 true +265369 true +true +265372 true +true +265375 true +265386 true +true +265392 true +265394 true +265402 true +true +265405 true +true +265408 true +265413 true +265415 true +265419 true +265421 true +true +true +265425 true +true +265428 true +265430 true +265436 true +true +265440 true +true +true +265448 true +265452 true +true +265457 true +265470 true +true +265476 true +true +265482 true +true +265490 true +true +265495 true +265497 true +true +265502 true +265508 true +265512 true +265514 true +265519 true +265521 true +true +true +265525 true +true +265529 true +265534 true +true +true +265538 true +true +265549 true +265551 true +true +true +true +265558 true +265560 true +265562 true +265567 true +true +265570 true +265573 true +265575 true +265577 true +265580 true +265586 true +true +265589 true +true +265594 true +265596 true +265599 true +true +265603 true +265605 true +true +265611 true +true +true +265616 true +true +true +true +265621 true +265632 true +true +265640 true +265644 true +265646 true +265657 true +265659 true +true +true +265663 true +true +265667 true +true +265670 true +265672 true +true +265675 true +265678 true +265682 true +true +265686 true +265688 true +265690 true +265692 true +265697 true +265701 true +true +true +265708 true +265710 true +true +265713 true +265722 true +265729 true +true +265736 true +265746 true +265749 true +265751 true +true +true +265756 true +true +265759 true +265761 true +265763 true +true +265771 true +true +265778 true +true +265781 true +265787 true +265789 true +true +true +265793 true +true +265796 true +265801 true +true +true +true +265806 true +265808 true +true +265814 true +true +265818 true +265821 true +265828 true +true +true +265836 true +265839 true +265841 true +true +true +265848 true +265851 true +265853 true +true +265861 true +true +true +true +true +265867 true +265869 true +265871 true +265873 true +265878 true +true +265881 true +true +265895 true +true +265900 true +true +265903 true +true +true +265907 true +265909 true +265917 true +265919 true +265922 true +true +true +true +265928 true +265930 true +265948 true +265953 true +true +true +265958 true +265963 true +true +265966 true +true +265972 true +265978 true +265983 true +265985 true +true +true +265989 true +true +true +true +265999 true +true +266002 true +true +266005 true +266010 true +266017 true +266019 true +true +266023 true +266025 true +true +true +true +266031 true +true +266036 true +true +266042 true +true +266045 true +true +true +true +266053 true +266057 true +266059 true +true +266068 true +true +true +266072 true +266074 true +true +266077 true +266079 true +true +266082 true +266095 true +true +266098 true +true +266101 true +true +266104 true +266107 true +true +true +true +266118 true +266123 true +266130 true +266135 true +true +true +true +266143 true +true +266146 true +true +266152 true +true +true +true +266172 true +true +266180 true +266182 true +266187 true +266189 true +266194 true +true +true +266198 true +266200 true +266202 true +266204 true +266219 true +true +true +true +266226 true +true +true +true +266231 true +266234 true +266241 true +true +true +266245 true +266247 true +266256 true +266258 true +true +266261 true +true +266269 true +266271 true +266274 true +266276 true +true +true +266280 true +266306 true +266319 true +true +266327 true +266329 true +266333 true +true +266340 true +true +266343 true +true +266346 true +266348 true +266353 true +true +true +true +266358 true +266360 true +true +266363 true +266373 true +266378 true +266380 true +true +266383 true +true +true +true +266388 true +266390 true +true +266394 true +266400 true +266409 true +true +266417 true +true +266420 true +true +266423 true +true +true +true +266428 true +266432 true +266442 true +true +true +266449 true +266453 true +266462 true +266464 true +266467 true +266476 true +true +266487 true +true +true +266496 true +266508 true +true +266516 true +266520 true +266524 true +true +266529 true +266548 true +266553 true +266561 true +true +true +266568 true +266570 true +266580 true +266588 true +true +true +266594 true +266601 true +266603 true +266606 true +266608 true +266610 true +true +true +266615 true +true +266618 true +true +266621 true +true +266624 true +266631 true +true +266637 true +true +true +266652 true +266671 true +true +266674 true +266676 true +266678 true +true +266682 true +266684 true +266688 true +266690 true +true +true +266694 true +266701 true +true +266704 true +true +266711 true +266716 true +true +266722 true +true +true +true +266728 true +true +266739 true +true +true +266745 true +true +266760 true +true +266778 true +true +266791 true +true +266801 true +true +266804 true +true +266812 true +266814 true +266818 true +true +266821 true +266827 true +true +true +266831 true +266833 true +266835 true +266839 true +266844 true +266846 true +266852 true +true +266906 true +266908 true +true +266911 true +266915 true +true +true +266919 true +266926 true +true +266929 true +266933 true +true +266936 true +266946 true +true +true +266950 true +true +266967 true +266976 true +true +266983 true +266988 true +266990 true +266994 true +266996 true +267001 true +true +267014 true +true +true +267018 true +267021 true +true +267024 true +true +true +true +true +267039 true +true +267042 true +267044 true +267047 true +true +267062 true +true +267068 true +267109 true +true +true +true +267114 true +267116 true +267120 true +true +267123 true +true +267132 true +true +267135 true +true +267145 true +true +267148 true +true +true +true +267153 true +267155 true +true +267162 true +267167 true +267170 true +267172 true +true +true +267178 true +267180 true +267191 true +267193 true +true +267196 true +267201 true +true +267204 true +267207 true +267211 true +true +true +267215 true +true +267223 true +true +267227 true +267229 true +true +true +true +true +267235 true +267237 true +true +267240 true +267262 true +267264 true +267274 true +267278 true +267280 true +267283 true +267293 true +true +true +true +267298 true +267304 true +267306 true +true +267309 true +267311 true +267315 true +true +267319 true +267323 true +true +267339 true +true +267342 true +267344 true +267347 true +true +true +true +267352 true +267354 true +267360 true +267369 true +267384 true +267388 true +true +true +267406 true +true +267409 true +267411 true +267415 true +true +267418 true +true +267429 true +true +267436 true +267444 true +267446 true +267448 true +267450 true +267452 true +true +true +267458 true +true +true +267462 true +true +267478 true +true +267485 true +true +true +true +267495 true +true +267499 true +true +267513 true +267530 true +true +267533 true +267535 true +267537 true +267540 true +true +true +true +267545 true +true +267548 true +true +267555 true +267559 true +true +true +267563 true +267567 true +true +267570 true +267572 true +267574 true +267576 true +267581 true +true +true +267585 true +true +true +267594 true +true +true +true +267599 true +267601 true +true +true +267605 true +true +267610 true +true +true +true +267619 true +true +267622 true +true +267625 true +267628 true +true +267638 true +true +true +true +267643 true +267647 true +267654 true +true +267664 true +267667 true +267687 true +true +267690 true +267692 true +true +true +267697 true +true +267700 true +267704 true +true +267707 true +267711 true +true +true +true +267716 true +true +267725 true +true +267730 true +267732 true +267735 true +267738 true +true +267741 true +267746 true +267748 true +true +267751 true +267756 true +267762 true +true +267765 true +267769 true +267776 true +267780 true +true +true +267787 true +true +true +267791 true +true +267795 true +true +267800 true +true +true +true +true +267806 true +true +267809 true +267814 true +true +267817 true +267820 true +true +267823 true +267825 true +true +true +267833 true +true +267841 true +true +true +267845 true +true +267849 true +267853 true +true +true +267860 true +true +267863 true +267871 true +true +267877 true +true +true +true +true +267883 true +267891 true +true +true +true +267896 true +true +true +267905 true +true +267910 true +true +true +267914 true +true +true +true +267924 true +true +true +267931 true +true +267934 true +true +true +267941 true +true +267947 true +true +267950 true +true +true +267954 true +267956 true +true +true +267960 true +true +267963 true +267970 true +true +267973 true +267975 true +true +267978 true +267990 true +true +267994 true +267998 true +268003 true +true +268006 true +268008 true +true +true +true +268016 true +268023 true +true +268026 true +true +true +true +268031 true +true +true +268043 true +true +268050 true +true +268056 true +268065 true +268069 true +268071 true +true +268080 true +true +268089 true +true +true +true +268094 true +true +true +268098 true +268101 true +268103 true +true +268106 true +268108 true +268112 true +268120 true +268122 true +true +true +268133 true +true +true +268137 true +true +true +true +268144 true +true +268147 true +268153 true +true +true +268157 true +268159 true +true +268162 true +268164 true +268167 true +268175 true +true +true +268179 true +268192 true +true +268195 true +true +true +true +true +268201 true +268203 true +268206 true +268224 true +true +true +true +268232 true +true +268258 true +268260 true +268267 true +268270 true +268274 true +268281 true +true +268284 true +268287 true +268293 true +268296 true +268299 true +268303 true +true +268310 true +true +true +268314 true +268316 true +268320 true +268331 true +268333 true +268338 true +268344 true +268346 true +268348 true +268354 true +268356 true +268358 true +268360 true +268362 true +268364 true +268366 true +268368 true +268370 true +268372 true +268374 true +268376 true +268378 true +268383 true +268389 true +268395 true +268397 true +268408 true +true +true +true +true +true +268415 true +268421 true +268423 true +true +268426 true +268432 true +268434 true +268436 true +true +268439 true +268443 true +true +true +268450 true +268452 true +true +268460 true +268468 true +true +true +268472 true +true +268483 true +268487 true +true +true +268491 true +true +268494 true +268496 true +268506 true +true +268509 true +true +268512 true +268518 true +true +268522 true +268533 true +268537 true +268539 true +268542 true +268551 true +268553 true +true +268556 true +268562 true +268566 true +268569 true +true +268572 true +true +268590 true +268594 true +true +268597 true +268603 true +true +268609 true +true +true +268613 true +268615 true +true +268619 true +268629 true +268631 true +268633 true +268635 true +true +268638 true +268640 true +268654 true +true +268657 true +true +true +268672 true +true +268675 true +268677 true +268679 true +268681 true +true +268684 true +268689 true +268691 true +268693 true +true +268697 true +268702 true +268706 true +268710 true +268713 true +268719 true +268725 true +268728 true +true +true +true +268733 true +true +true +268737 true +true +true +268741 true +268744 true +268747 true +268749 true +true +true +true +268754 true +true +268757 true +268760 true +true +true +268765 true +true +268768 true +268770 true +268772 true +268774 true +268783 true +268786 true +true +268789 true +true +true +true +true +268795 true +true +268799 true +true +268804 true +true +268807 true +268812 true +268819 true +268822 true +268827 true +true +268830 true +268832 true +268834 true +true +268842 true +268844 true +true +true +268848 true +true +true +268856 true +true +268859 true +268861 true +true +268864 true +true +268867 true +true +true +true +268872 true +268874 true +true +268877 true +true +268880 true +true +true +268885 true +268896 true +268898 true +true diff --git a/tf/0.1.1/book.tf b/tf/0.1.1/book.tf new file mode 100644 index 0000000..2bfe14e --- /dev/null +++ b/tf/0.1.1/book.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Book name (abbreviated) +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MAT +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +MRK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +LUK +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +JHN +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ACT +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +ROM +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +1CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +2CO +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +GAL +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +EPH +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +PHP +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +COL +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +1TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +2TH +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +1TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +2TI +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +TIT +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +PHM +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +HEB +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +JAS +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +1PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +2PE +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +1JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +2JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +3JN +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +JUD +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV +REV diff --git a/tf/0.1.1/book_num.tf b/tf/0.1.1/book_num.tf new file mode 100644 index 0000000..6f6cf65 --- /dev/null +++ b/tf/0.1.1/book_num.tf @@ -0,0 +1,41 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=NT book number (Matthew=1, Mark=2, ..., Revelation=27) +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=int +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +137780 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 diff --git a/tf/0.1.1/book_short.tf b/tf/0.1.1/book_short.tf new file mode 100644 index 0000000..cd3b01a --- /dev/null +++ b/tf/0.1.1/book_short.tf @@ -0,0 +1,41 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Book name (abbreviated) +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +137780 MAT +MRK +LUK +JHN +ACT +ROM +1CO +2CO +GAL +EPH +PHP +COL +1TH +2TH +1TI +2TI +TIT +PHM +HEB +JAS +1PE +2PE +1JN +2JN +3JN +JUD +REV diff --git a/tf/0.1.1/case.tf b/tf/0.1.1/case.tf new file mode 100644 index 0000000..a6ec74a --- /dev/null +++ b/tf/0.1.1/case.tf @@ -0,0 +1,79532 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Type of case +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +nominative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +nominative +11 accusative +accusative +14 nominative +16 accusative +accusative +19 nominative +21 accusative +accusative +24 accusative +accusative +genitive +28 nominative +30 accusative +accusative +33 accusative +accusative +36 genitive +genitive +39 nominative +41 accusative +accusative +44 nominative +46 accusative +accusative +49 nominative +51 accusative +accusative +54 nominative +56 accusative +accusative +59 nominative +61 accusative +accusative +64 nominative +66 accusative +accusative +69 genitive +genitive +72 nominative +74 accusative +accusative +77 genitive +genitive +80 nominative +82 accusative +accusative +85 nominative +87 accusative +accusative +accusative +accusative +92 nominative +94 accusative +accusative +97 genitive +genitive +genitive +101 nominative +103 accusative +accusative +106 nominative +108 accusative +accusative +111 nominative +113 accusative +accusative +116 nominative +118 accusative +accusative +121 nominative +123 accusative +accusative +126 nominative +128 accusative +accusative +131 nominative +133 accusative +accusative +136 nominative +138 accusative +accusative +141 nominative +143 accusative +accusative +146 nominative +148 accusative +accusative +151 nominative +153 accusative +accusative +156 nominative +158 accusative +accusative +161 nominative +163 accusative +accusative +166 accusative +accusative +genitive +170 genitive +genitive +genitive +175 accusative +accusative +genitive +nominative +180 accusative +accusative +183 nominative +185 accusative +accusative +188 nominative +190 accusative +accusative +193 nominative +195 accusative +accusative +198 nominative +200 accusative +accusative +203 nominative +205 accusative +accusative +208 nominative +210 accusative +accusative +213 nominative +215 accusative +accusative +218 nominative +220 accusative +accusative +223 nominative +225 accusative +accusative +228 nominative +230 accusative +accusative +233 nominative +235 accusative +accusative +accusative +accusative +genitive +241 genitive +243 nominative +nominative +nominative +nominative +248 nominative +nominative +nominative +252 genitive +254 genitive +nominative +nominative +259 genitive +261 genitive +genitive +genitive +nominative +nominative +268 genitive +genitive +genitive +272 genitive +genitive +nominative +nominative +277 genitive +genitive +genitive +nominative +nominative +284 genitive +genitive +genitive +genitive +genitive +dative +dative +294 accusative +297 dative +nominative +300 genitive +genitive +303 nominative +nominative +nominative +genitive +nominative +nominative +311 nominative +accusative +317 accusative +319 accusative +genitive +genitive +323 nominative +genitive +326 accusative +328 dative +nominative +vocative +nominative +genitive +336 accusative +accusative +accusative +genitive +341 nominative +343 dative +nominative +346 genitive +genitive +351 accusative +354 accusative +accusative +genitive +accusative +359 nominative +361 accusative +accusative +genitive +365 genitive +genitive +genitive +369 nominative +nominative +374 nominative +nominative +377 genitive +379 genitive +genitive +genitive +383 nominative +nominative +386 dative +390 accusative +393 accusative +accusative +genitive +accusative +nominative +399 nominative +401 genitive +nominative +nominative +405 nominative +nominative +nominative +409 genitive +genitive +414 dative +nominative +nominative +genitive +420 accusative +accusative +genitive +426 accusative +428 genitive +430 accusative +433 accusative +accusative +genitive +accusative +438 genitive +genitive +genitive +442 dative +genitive +genitive +446 dative +genitive +genitive +genitive +451 nominative +453 genitive +456 accusative +nominative +460 nominative +nominative +nominative +genitive +genitive +467 genitive +accusative +accusative +471 dative +dative +476 dative +478 nominative +nominative +nominative +nominative +484 nominative +nominative +487 genitive +489 nominative +accusative +accusative +accusative +494 accusative +genitive +genitive +499 genitive +501 nominative +nominative +505 nominative +507 dative +509 dative +genitive +genitive +516 genitive +genitive +519 vocative +vocative +genitive +nominative +524 nominative +527 dative +dative +genitive +532 genitive +534 nominative +nominative +537 accusative +accusative +genitive +accusative +accusative +543 nominative +545 nominative +accusative +accusative +550 genitive +accusative +accusative +genitive +genitive +genitive +557 nominative +accusative +560 accusative +562 nominative +566 genitive +genitive +572 dative +574 nominative +nominative +577 dative +579 nominative +nominative +genitive +genitive +586 nominative +nominative +accusative +591 dative +dative +594 accusative +596 nominative +601 nominative +nominative +604 nominative +accusative +accusative +608 accusative +accusative +612 nominative +614 accusative +accusative +617 accusative +accusative +620 genitive +genitive +genitive +genitive +625 nominative +627 dative +629 nominative +accusative +accusative +genitive +634 dative +accusative +accusative +638 accusative +640 accusative +642 nominative +644 accusative +648 accusative +650 genitive +genitive +654 accusative +accusative +genitive +658 genitive +genitive +661 nominative +genitive +665 accusative +dative +dative +nominative +nominative +671 accusative +accusative +674 accusative +accusative +genitive +680 accusative +687 dative +690 nominative +692 accusative +accusative +genitive +696 accusative +698 nominative +nominative +701 accusative +accusative +704 accusative +accusative +genitive +genitive +711 accusative +716 genitive +genitive +genitive +721 nominative +nominative +724 genitive +726 genitive +genitive +genitive +730 genitive +732 accusative +accusative +genitive +736 nominative +nominative +741 genitive +genitive +746 nominative +748 accusative +accusative +accusative +accusative +753 dative +756 dative +dative +dative +genitive +761 genitive +765 accusative +accusative +accusative +770 genitive +genitive +774 nominative +nominative +777 genitive +genitive +genitive +genitive +782 dative +784 nominative +nominative +787 nominative +nominative +nominative +nominative +accusative +accusative +genitive +802 genitive +genitive +genitive +806 nominative +genitive +810 accusative +dative +dative +814 dative +nominative +nominative +818 accusative +accusative +821 accusative +accusative +genitive +827 accusative +genitive +831 nominative +nominative +accusative +accusative +genitive +genitive +838 nominative +nominative +841 accusative +accusative +844 accusative +accusative +genitive +850 accusative +genitive +853 nominative +855 nominative +857 genitive +genitive +860 genitive +genitive +genitive +genitive +868 nominative +870 accusative +873 accusative +accusative +genitive +genitive +878 nominative +881 accusative +accusative +accusative +886 nominative +nominative +889 genitive +genitive +892 nominative +896 dative +dative +dative +900 nominative +nominative +nominative +nominative +905 dative +dative +genitive +genitive +nominative +913 nominative +nominative +genitive +genitive +918 nominative +920 nominative +nominative +923 genitive +genitive +genitive +genitive +nominative +genitive +930 dative +dative +933 accusative +accusative +genitive +accusative +938 accusative +accusative +genitive +942 nominative +nominative +nominative +946 accusative +accusative +genitive +950 genitive +genitive +953 accusative +accusative +956 accusative +accusative +genitive +960 nominative +nominative +genitive +964 nominative +966 nominative +nominative +971 accusative +nominative +974 nominative +nominative +nominative +978 nominative +nominative +nominative +genitive +genitive +986 dative +dative +dative +990 genitive +nominative +accusative +accusative +genitive +996 nominative +accusative +genitive +genitive +1001 genitive +accusative +1004 accusative +accusative +1007 dative +vocative +genitive +nominative +1012 dative +1015 genitive +genitive +genitive +1020 accusative +accusative +genitive +genitive +1029 dative +accusative +1032 accusative +accusative +1036 dative +1039 nominative +nominative +1042 genitive +genitive +genitive +1046 accusative +dative +dative +1051 nominative +nominative +1054 accusative +accusative +genitive +genitive +1060 nominative +nominative +1063 nominative +accusative +accusative +1069 accusative +1072 nominative +accusative +1076 dative +1078 accusative +1080 nominative +1082 genitive +nominative +nominative +genitive +1087 genitive +1090 nominative +accusative +accusative +1094 nominative +accusative +1098 dative +dative +1101 dative +genitive +nominative +nominative +1106 dative +dative +genitive +1111 accusative +accusative +genitive +1116 accusative +accusative +genitive +1120 accusative +accusative +1123 accusative +accusative +1126 dative +dative +1130 nominative +nominative +1133 genitive +genitive +1136 accusative +accusative +1139 accusative +accusative +genitive +1144 genitive +1146 nominative +1148 accusative +nominative +nominative +accusative +1154 genitive +1157 nominative +1160 accusative +1162 nominative +nominative +nominative +1166 dative +1171 nominative +1173 dative +1175 accusative +accusative +1179 accusative +1181 nominative +nominative +nominative +nominative +1187 genitive +genitive +1192 nominative +nominative +1196 accusative +genitive +accusative +1200 accusative +accusative +1203 accusative +1206 nominative +1208 genitive +genitive +nominative +nominative +1213 nominative +nominative +genitive +nominative +nominative +1219 dative +1222 nominative +nominative +1226 accusative +accusative +1229 genitive +genitive +1233 genitive +genitive +1236 nominative +accusative +1241 accusative +accusative +1245 nominative +nominative +nominative +1249 dative +1252 nominative +genitive +genitive +1257 nominative +nominative +nominative +nominative +1263 nominative +nominative +1269 dative +dative +1272 nominative +nominative +1276 dative +dative +dative +1280 genitive +genitive +1284 accusative +nominative +nominative +1288 accusative +accusative +accusative +1293 accusative +1295 accusative +accusative +genitive +genitive +1301 dative +1304 nominative +genitive +genitive +1308 accusative +1313 dative +dative +genitive +1318 genitive +1321 genitive +1323 accusative +1328 accusative +accusative +accusative +genitive +1333 dative +nominative +nominative +1340 accusative +accusative +accusative +genitive +1346 accusative +nominative +nominative +1350 accusative +accusative +1355 dative +accusative +accusative +accusative +genitive +genitive +1362 accusative +accusative +genitive +1367 dative +accusative +accusative +dative +1373 nominative +1375 dative +1378 dative +nominative +nominative +1382 vocative +1385 accusative +accusative +accusative +genitive +1391 dative +dative +1396 accusative +nominative +nominative +1401 nominative +1405 dative +1407 nominative +1409 nominative +1413 accusative +accusative +1416 nominative +accusative +accusative +nominative +1422 accusative +accusative +accusative +1426 dative +genitive +1429 genitive +1432 nominative +nominative +1435 genitive +genitive +genitive +genitive +nominative +genitive +1442 nominative +genitive +accusative +genitive +1447 genitive +genitive +nominative +genitive +genitive +nominative +nominative +nominative +nominative +1457 dative +accusative +accusative +1462 dative +dative +1465 dative +1467 dative +genitive +nominative +1471 dative +1475 nominative +nominative +1483 nominative +nominative +genitive +genitive +1488 nominative +1490 accusative +accusative +genitive +genitive +1496 accusative +accusative +accusative +accusative +accusative +1502 accusative +accusative +accusative +genitive +accusative +accusative +1509 accusative +accusative +1513 nominative +1516 dative +1519 genitive +1522 accusative +accusative +genitive +1526 nominative +1528 nominative +accusative +accusative +1532 dative +1534 nominative +1537 accusative +1539 accusative +accusative +accusative +genitive +genitive +1545 accusative +accusative +accusative +genitive +1550 dative +dative +1553 genitive +genitive +genitive +genitive +accusative +accusative +accusative +genitive +1563 accusative +1565 nominative +1567 nominative +accusative +accusative +1571 accusative +accusative +genitive +1575 dative +1579 dative +dative +dative +nominative +1584 dative +dative +genitive +1588 nominative +accusative +accusative +genitive +genitive +1594 nominative +accusative +accusative +1598 accusative +accusative +1601 dative +dative +1605 nominative +nominative +genitive +1609 accusative +accusative +accusative +1614 dative +accusative +accusative +1618 accusative +dative +dative +1622 dative +accusative +accusative +1626 accusative +1628 accusative +1631 accusative +1634 dative +nominative +nominative +1638 genitive +genitive +1641 genitive +1643 genitive +1645 genitive +1648 genitive +genitive +1651 nominative +accusative +accusative +1656 accusative +accusative +1659 genitive +genitive +1662 dative +nominative +nominative +genitive +1667 nominative +accusative +accusative +genitive +1672 accusative +nominative +nominative +nominative +nominative +dative +dative +1680 genitive +1682 nominative +nominative +genitive +genitive +nominative +nominative +nominative +1690 nominative +1692 nominative +nominative +nominative +1696 nominative +1698 accusative +accusative +nominative +nominative +nominative +1704 nominative +accusative +accusative +1708 nominative +1710 nominative +nominative +nominative +1714 nominative +1716 nominative +nominative +nominative +dative +dative +1722 nominative +accusative +accusative +1726 nominative +nominative +nominative +1730 nominative +nominative +genitive +1734 nominative +nominative +nominative +1738 genitive +1740 genitive +1742 nominative +nominative +genitive +genitive +nominative +1750 accusative +1755 accusative +accusative +1758 genitive +nominative +1761 genitive +1766 nominative +nominative +genitive +nominative +1771 dative +dative +1776 accusative +accusative +accusative +1780 genitive +nominative +1783 nominative +nominative +genitive +genitive +1789 nominative +nominative +1793 dative +1796 accusative +1801 nominative +1805 genitive +genitive +nominative +1809 nominative +nominative +genitive +genitive +1815 nominative +1818 genitive +nominative +1822 accusative +1825 accusative +1827 accusative +accusative +1831 accusative +accusative +1835 dative +dative +1838 dative +dative +1842 nominative +nominative +genitive +1846 genitive +genitive +1850 genitive +accusative +accusative +accusative +1856 accusative +accusative +genitive +accusative +1861 dative +dative +1868 accusative +accusative +1871 accusative +accusative +1881 dative +1885 nominative +nominative +1888 nominative +nominative +nominative +nominative +1893 nominative +nominative +1899 genitive +genitive +1903 nominative +1907 nominative +1909 accusative +genitive +genitive +genitive +genitive +genitive +1918 accusative +accusative +nominative +1923 dative +dative +genitive +genitive +1929 nominative +1933 nominative +nominative +1937 dative +dative +genitive +genitive +1943 dative +1948 genitive +nominative +nominative +accusative +genitive +genitive +1955 genitive +1960 accusative +accusative +genitive +genitive +1967 dative +dative +1973 nominative +1975 nominative +1977 dative +dative +1980 nominative +1982 dative +1984 nominative +nominative +nominative +dative +dative +genitive +nominative +1992 dative +dative +1996 nominative +1998 dative +dative +genitive +vocative +nominative +2004 dative +dative +2008 nominative +2010 vocative +nominative +2014 accusative +accusative +genitive +genitive +2021 accusative +accusative +genitive +2025 accusative +accusative +2030 nominative +nominative +genitive +2034 accusative +2036 genitive +2039 accusative +accusative +genitive +2043 genitive +genitive +2047 accusative +2049 dative +dative +genitive +2054 nominative +2056 accusative +accusative +genitive +2060 nominative +dative +dative +genitive +accusative +2066 genitive +2069 genitive +2071 dative +dative +2075 accusative +2077 nominative +nominative +dative +dative +2082 nominative +nominative +dative +dative +2088 accusative +2092 dative +2100 accusative +accusative +accusative +2109 nominative +2111 dative +2113 nominative +nominative +nominative +accusative +2118 accusative +2120 accusative +2123 accusative +2125 dative +dative +genitive +2130 nominative +nominative +genitive +nominative +nominative +2136 accusative +2138 accusative +2142 genitive +2145 dative +2148 nominative +genitive +genitive +genitive +2154 nominative +nominative +nominative +genitive +2160 accusative +2163 nominative +nominative +genitive +nominative +2168 accusative +2170 accusative +2174 genitive +2177 dative +2180 nominative +genitive +genitive +genitive +2186 nominative +nominative +nominative +genitive +2191 accusative +2196 nominative +2198 accusative +accusative +genitive +2202 dative +accusative +2205 nominative +2207 dative +2209 nominative +nominative +nominative +accusative +accusative +genitive +2216 genitive +genitive +2219 accusative +2223 nominative +accusative +2231 dative +dative +2237 dative +dative +accusative +accusative +genitive +2243 nominative +2245 dative +2251 dative +dative +2255 nominative +genitive +genitive +2260 dative +dative +2264 nominative +genitive +genitive +genitive +2270 accusative +2273 nominative +genitive +genitive +genitive +2279 dative +dative +genitive +2286 accusative +accusative +2289 accusative +2291 accusative +2294 nominative +nominative +genitive +2302 nominative +nominative +genitive +2306 genitive +genitive +2312 accusative +2314 genitive +2316 accusative +2318 genitive +2320 nominative +2322 dative +2325 dative +dative +2328 nominative +accusative +2332 accusative +accusative +accusative +genitive +2337 dative +2339 accusative +accusative +2342 dative +dative +dative +2347 accusative +accusative +genitive +2352 dative +2354 accusative +accusative +2357 nominative +accusative +2360 accusative +accusative +2364 genitive +2366 dative +dative +accusative +2371 accusative +accusative +2374 genitive +2382 accusative +2384 genitive +2387 accusative +accusative +genitive +2391 nominative +2393 dative +2395 accusative +accusative +genitive +2401 genitive +genitive +accusative +2406 nominative +genitive +genitive +genitive +genitive +2412 dative +2414 accusative +accusative +genitive +2419 accusative +2421 accusative +2425 accusative +2427 accusative +2431 accusative +accusative +accusative +accusative +accusative +2439 nominative +nominative +accusative +accusative +2447 accusative +accusative +genitive +accusative +accusative +accusative +2456 nominative +nominative +accusative +accusative +2463 nominative +nominative +2466 nominative +nominative +genitive +nominative +nominative +nominative +2475 accusative +accusative +genitive +2481 genitive +genitive +2484 accusative +2486 dative +2490 accusative +2494 dative +dative +genitive +dative +2499 dative +dative +2504 accusative +2508 genitive +2510 nominative +nominative +2514 dative +dative +2518 dative +dative +2523 genitive +genitive +2527 dative +2529 accusative +accusative +genitive +2533 genitive +genitive +accusative +2538 nominative +nominative +genitive +accusative +2543 nominative +nominative +genitive +2548 genitive +nominative +nominative +2552 dative +dative +2555 nominative +nominative +genitive +nominative +nominative +2561 dative +dative +2564 dative +2571 nominative +nominative +2576 dative +dative +2580 dative +dative +genitive +genitive +nominative +2588 dative +dative +2592 dative +2594 accusative +accusative +genitive +2599 nominative +2603 accusative +accusative +genitive +2607 nominative +accusative +accusative +genitive +2612 dative +dative +genitive +dative +2617 dative +dative +2620 nominative +nominative +genitive +nominative +nominative +2626 dative +dative +2629 dative +2631 nominative +2635 nominative +nominative +2641 dative +dative +genitive +2648 dative +2651 nominative +nominative +genitive +genitive +accusative +2658 genitive +accusative +2661 accusative +2665 nominative +vocative +genitive +nominative +2670 dative +dative +2673 nominative +nominative +genitive +2677 nominative +nominative +genitive +2681 nominative +nominative +genitive +2686 dative +2689 genitive +accusative +accusative +genitive +accusative +accusative +2696 dative +2700 dative +accusative +accusative +genitive +2706 nominative +2708 dative +dative +genitive +2714 accusative +2716 accusative +2719 accusative +2721 genitive +genitive +2726 dative +dative +accusative +accusative +genitive +2733 dative +nominative +nominative +genitive +nominative +nominative +2743 dative +dative +2746 nominative +nominative +genitive +2750 accusative +accusative +genitive +2759 nominative +nominative +nominative +2764 accusative +accusative +genitive +2769 dative +dative +nominative +2774 dative +2776 accusative +accusative +genitive +2780 nominative +nominative +2783 genitive +accusative +accusative +2787 accusative +accusative +genitive +2794 dative +dative +nominative +2798 dative +dative +genitive +dative +2803 dative +dative +2806 nominative +nominative +genitive +nominative +nominative +2812 dative +dative +2815 dative +2818 dative +accusative +2821 genitive +genitive +2824 nominative +2826 nominative +2830 nominative +2836 dative +accusative +2839 dative +2842 nominative +2844 nominative +2848 nominative +2856 nominative +nominative +genitive +2862 nominative +nominative +genitive +nominative +nominative +genitive +genitive +2870 nominative +nominative +2875 nominative +nominative +genitive +nominative +nominative +nominative +nominative +genitive +nominative +2887 nominative +nominative +genitive +nominative +2892 nominative +nominative +nominative +genitive +nominative +2900 nominative +nominative +nominative +2904 dative +nominative +2907 nominative +nominative +nominative +nominative +2912 dative +dative +2917 accusative +accusative +2921 accusative +accusative +2925 genitive +2928 genitive +genitive +2933 dative +2936 dative +2938 accusative +2940 dative +2943 dative +dative +genitive +accusative +2949 accusative +2952 dative +dative +genitive +accusative +2958 nominative +nominative +nominative +2962 genitive +genitive +2965 nominative +nominative +genitive +genitive +2971 accusative +accusative +genitive +genitive +2983 accusative +2985 nominative +nominative +genitive +nominative +nominative +2991 accusative +2993 nominative +2996 genitive +2998 nominative +3000 genitive +nominative +3005 accusative +accusative +genitive +accusative +accusative +3012 genitive +accusative +3016 accusative +accusative +genitive +genitive +3028 dative +3031 nominative +3033 dative +dative +dative +genitive +3039 accusative +genitive +3043 accusative +accusative +genitive +genitive +3048 accusative +3052 accusative +accusative +nominative +nominative +3059 dative +3061 accusative +vocative +3066 nominative +accusative +3070 accusative +3073 accusative +3076 accusative +accusative +nominative +nominative +3083 nominative +nominative +genitive +nominative +nominative +3090 genitive +genitive +3094 accusative +accusative +accusative +3098 accusative +accusative +genitive +3102 nominative +nominative +3105 dative +3110 accusative +3113 nominative +3116 genitive +nominative +dative +dative +nominative +nominative +genitive +3130 dative +dative +3136 dative +dative +3140 dative +3142 accusative +3144 accusative +accusative +accusative +3148 dative +dative +genitive +genitive +genitive +3154 accusative +3156 dative +dative +dative +accusative +3165 dative +dative +genitive +3170 accusative +accusative +3173 genitive +genitive +genitive +3178 nominative +nominative +3181 dative +dative +genitive +vocative +3186 accusative +3188 genitive +genitive +genitive +accusative +accusative +3197 accusative +accusative +3200 genitive +genitive +genitive +genitive +genitive +3207 accusative +accusative +dative +dative +3213 accusative +accusative +genitive +3217 genitive +genitive +3222 accusative +3224 dative +dative +genitive +3228 nominative +3230 accusative +3234 dative +3241 dative +3243 nominative +nominative +nominative +3248 nominative +nominative +3252 dative +dative +3258 genitive +nominative +nominative +accusative +3263 nominative +nominative +genitive +accusative +3268 accusative +3270 dative +3273 accusative +3276 accusative +3278 dative +3281 nominative +nominative +nominative +3285 accusative +accusative +3288 dative +dative +genitive +dative +3293 nominative +nominative +genitive +nominative +3298 dative +dative +3301 accusative +dative +dative +accusative +3306 accusative +3308 accusative +3312 dative +nominative +nominative +3317 nominative +3319 dative +3321 nominative +3323 nominative +nominative +3326 nominative +nominative +3330 genitive +genitive +genitive +3334 nominative +nominative +nominative +3338 nominative +nominative +nominative +nominative +nominative +3344 accusative +accusative +3347 nominative +3349 nominative +nominative +3352 genitive +3354 nominative +nominative +nominative +3358 nominative +nominative +nominative +nominative +nominative +3364 accusative +accusative +3367 nominative +3369 nominative +nominative +accusative +3374 genitive +genitive +nominative +3379 accusative +3381 dative +genitive +3386 nominative +nominative +3389 genitive +genitive +genitive +3393 accusative +3397 genitive +accusative +3401 genitive +accusative +3404 nominative +nominative +nominative +accusative +accusative +3411 nominative +nominative +nominative +accusative +accusative +3419 nominative +nominative +accusative +accusative +3425 nominative +nominative +accusative +accusative +3430 nominative +nominative +3433 nominative +accusative +accusative +3439 accusative +3443 genitive +genitive +genitive +3447 accusative +3449 nominative +nominative +nominative +dative +vocative +vocative +3457 accusative +accusative +genitive +genitive +3462 nominative +nominative +accusative +accusative +genitive +genitive +genitive +genitive +3471 dative +dative +nominative +3475 dative +3477 dative +dative +dative +vocative +vocative +3483 dative +dative +dative +3488 dative +dative +dative +accusative +3494 dative +dative +dative +accusative +accusative +3503 dative +3507 accusative +3510 genitive +nominative +nominative +accusative +accusative +3516 nominative +nominative +3519 genitive +accusative +accusative +accusative +3525 accusative +3527 dative +dative +nominative +3531 genitive +accusative +accusative +3535 accusative +accusative +3539 nominative +nominative +3543 nominative +nominative +3547 nominative +nominative +3551 dative +dative +dative +3560 accusative +accusative +3563 nominative +nominative +nominative +genitive +accusative +accusative +accusative +3572 nominative +accusative +3575 dative +dative +nominative +3579 genitive +accusative +accusative +3583 accusative +accusative +3587 nominative +nominative +3591 nominative +nominative +3595 nominative +nominative +3599 dative +dative +dative +3606 nominative +nominative +genitive +nominative +3614 nominative +nominative +accusative +accusative +accusative +3620 nominative +nominative +3623 dative +dative +genitive +3628 nominative +accusative +3631 accusative +nominative +3636 nominative +nominative +genitive +3640 genitive +genitive +3643 genitive +genitive +3646 dative +nominative +nominative +3651 nominative +nominative +3654 dative +nominative +vocative +3660 accusative +3663 nominative +accusative +accusative +3667 genitive +nominative +3674 genitive +nominative +nominative +3679 dative +nominative +nominative +3683 dative +3687 accusative +3689 dative +dative +3693 accusative +accusative +accusative +3697 nominative +3699 accusative +dative +3702 genitive +genitive +3705 accusative +3707 dative +nominative +nominative +accusative +3712 nominative +vocative +nominative +nominative +genitive +3719 dative +dative +nominative +3723 nominative +3725 dative +nominative +nominative +3729 accusative +3731 nominative +nominative +nominative +3735 vocative +3738 nominative +3741 genitive +accusative +accusative +3746 accusative +3748 dative +3751 nominative +nominative +genitive +3756 nominative +3758 nominative +3760 accusative +nominative +3763 accusative +accusative +3767 dative +3772 dative +3777 dative +dative +genitive +3781 accusative +3785 nominative +nominative +nominative +3791 dative +dative +3795 dative +3797 dative +accusative +accusative +3801 dative +dative +3806 dative +3808 nominative +3810 genitive +3812 genitive +3817 genitive +3819 genitive +3821 genitive +3823 dative +dative +genitive +genitive +3828 nominative +nominative +genitive +genitive +3834 accusative +accusative +accusative +accusative +3840 nominative +nominative +3843 nominative +nominative +genitive +genitive +3849 nominative +nominative +dative +dative +3857 dative +3860 nominative +nominative +3863 dative +dative +dative +3867 nominative +nominative +nominative +3871 accusative +accusative +genitive +3875 accusative +accusative +genitive +accusative +3880 accusative +3883 genitive +genitive +genitive +3888 accusative +nominative +nominative +3895 dative +3897 genitive +genitive +3900 dative +accusative +accusative +3905 accusative +accusative +dative +3909 accusative +accusative +3912 accusative +3916 nominative +nominative +3919 genitive +genitive +genitive +genitive +nominative +accusative +accusative +genitive +3929 accusative +accusative +3933 nominative +nominative +nominative +accusative +3938 accusative +3942 accusative +3945 nominative +nominative +nominative +3949 dative +vocative +3952 dative +3958 dative +nominative +nominative +nominative +nominative +accusative +3966 nominative +nominative +genitive +genitive +accusative +3972 nominative +nominative +genitive +genitive +3979 accusative +accusative +3983 nominative +genitive +genitive +3987 dative +vocative +3990 dative +accusative +3995 accusative +accusative +genitive +3999 nominative +nominative +4002 dative +4004 dative +4007 accusative +accusative +4010 accusative +genitive +accusative +4014 dative +dative +4017 accusative +accusative +4020 dative +nominative +nominative +genitive +4026 nominative +nominative +4030 dative +dative +4033 accusative +accusative +4037 genitive +genitive +4040 nominative +4043 nominative +4045 accusative +nominative +vocative +4052 dative +nominative +nominative +4056 vocative +4058 nominative +4060 dative +dative +4063 dative +dative +4067 nominative +nominative +4070 nominative +nominative +4073 nominative +nominative +4076 nominative +4079 nominative +nominative +4082 nominative +nominative +dative +4087 genitive +genitive +4090 accusative +4093 accusative +accusative +genitive +genitive +4098 dative +4100 nominative +4102 genitive +genitive +nominative +nominative +4110 accusative +4113 genitive +genitive +genitive +4119 nominative +nominative +dative +4123 dative +vocative +genitive +genitive +4130 genitive +4132 accusative +4135 accusative +4137 genitive +nominative +genitive +genitive +nominative +4143 nominative +nominative +4146 accusative +nominative +4150 accusative +4152 accusative +4154 accusative +accusative +genitive +genitive +4160 dative +4163 nominative +nominative +4167 accusative +accusative +4172 nominative +nominative +nominative +4176 genitive +genitive +4179 accusative +accusative +4184 dative +dative +4187 nominative +nominative +4191 nominative +4193 accusative +accusative +4196 accusative +4198 accusative +genitive +genitive +4203 nominative +nominative +nominative +4208 accusative +dative +dative +4212 nominative +accusative +4218 genitive +genitive +genitive +4222 nominative +4224 accusative +4229 accusative +accusative +accusative +4235 dative +accusative +4238 genitive +accusative +4241 nominative +nominative +nominative +accusative +accusative +genitive +4248 dative +dative +4251 vocative +4253 genitive +nominative +nominative +4258 nominative +genitive +genitive +4263 dative +nominative +4267 nominative +nominative +nominative +accusative +accusative +genitive +4275 accusative +4277 accusative +4279 dative +dative +genitive +4283 nominative +4285 nominative +4288 genitive +nominative +nominative +4300 accusative +4302 nominative +nominative +genitive +genitive +4307 genitive +genitive +4310 accusative +4313 dative +dative +4317 genitive +accusative +accusative +4323 accusative +accusative +genitive +4327 nominative +4330 accusative +accusative +genitive +4334 nominative +nominative +nominative +4340 accusative +accusative +accusative +accusative +accusative +accusative +dative +dative +4349 nominative +4351 nominative +nominative +4354 accusative +accusative +4357 accusative +accusative +accusative +accusative +4363 dative +4365 dative +4367 nominative +4369 dative +4372 genitive +genitive +4375 dative +dative +4379 nominative +nominative +4382 nominative +nominative +4385 dative +dative +4388 dative +dative +genitive +4392 nominative +nominative +nominative +4396 dative +dative +genitive +4400 accusative +4402 genitive +genitive +4405 genitive +4407 nominative +nominative +genitive +4411 nominative +nominative +4415 accusative +genitive +4418 nominative +nominative +4421 nominative +4423 nominative +4425 nominative +4427 nominative +4429 accusative +4433 accusative +4438 accusative +4440 accusative +4443 dative +nominative +nominative +genitive +nominative +4449 accusative +nominative +4452 nominative +nominative +4456 nominative +nominative +genitive +4463 dative +nominative +nominative +4468 nominative +nominative +genitive +genitive +4474 accusative +4476 genitive +4478 nominative +nominative +4482 nominative +4486 genitive +nominative +nominative +4493 nominative +4495 accusative +genitive +genitive +4499 dative +dative +4503 nominative +nominative +genitive +4507 genitive +genitive +4510 nominative +nominative +4515 accusative +accusative +4518 accusative +accusative +4524 nominative +nominative +4527 nominative +nominative +4531 nominative +nominative +4536 accusative +accusative +4539 accusative +accusative +4542 nominative +4544 accusative +genitive +genitive +dative +4549 nominative +nominative +nominative +4553 dative +nominative +4556 nominative +nominative +genitive +4562 nominative +4564 accusative +accusative +genitive +4568 accusative +4572 nominative +nominative +nominative +4576 dative +4578 nominative +nominative +genitive +4583 nominative +nominative +4586 accusative +nominative +4590 genitive +genitive +genitive +genitive +genitive +4598 dative +4600 accusative +4602 genitive +genitive +genitive +4607 nominative +nominative +nominative +4611 nominative +accusative +4615 vocative +nominative +nominative +genitive +4620 accusative +4623 nominative +nominative +4626 genitive +genitive +genitive +4630 nominative +nominative +nominative +4634 accusative +accusative +genitive +genitive +4639 nominative +accusative +accusative +4643 accusative +accusative +accusative +4651 nominative +nominative +4657 genitive +4661 nominative +nominative +nominative +4665 genitive +genitive +genitive +4670 nominative +nominative +4674 nominative +nominative +nominative +4678 accusative +accusative +accusative +accusative +4683 dative +4685 dative +dative +4689 nominative +nominative +4692 nominative +4694 accusative +nominative +genitive +4698 dative +4700 accusative +accusative +4703 dative +nominative +nominative +4708 dative +nominative +nominative +4714 accusative +4717 dative +4719 vocative +4722 genitive +genitive +genitive +nominative +4727 accusative +accusative +genitive +4731 dative +4734 genitive +nominative +nominative +4739 dative +nominative +nominative +nominative +4744 nominative +4747 nominative +nominative +4750 accusative +4752 dative +dative +dative +dative +4757 genitive +genitive +4761 dative +accusative +accusative +4765 genitive +genitive +genitive +4769 nominative +nominative +4773 nominative +nominative +nominative +4780 dative +dative +4783 nominative +nominative +4787 dative +dative +genitive +genitive +4792 accusative +accusative +4796 nominative +nominative +accusative +accusative +accusative +4802 accusative +accusative +nominative +4806 dative +dative +genitive +4810 nominative +accusative +accusative +genitive +genitive +4816 nominative +accusative +accusative +4820 accusative +accusative +4823 nominative +accusative +accusative +4828 genitive +4831 nominative +4833 nominative +4835 nominative +4837 nominative +accusative +4841 dative +dative +genitive +4845 nominative +nominative +nominative +4849 nominative +nominative +nominative +4854 genitive +genitive +genitive +genitive +4860 accusative +4862 accusative +accusative +genitive +4866 nominative +accusative +4869 accusative +genitive +4872 dative +accusative +genitive +genitive +4878 accusative +4881 accusative +accusative +4884 accusative +accusative +4887 genitive +4889 genitive +nominative +nominative +4893 nominative +nominative +nominative +nominative +nominative +nominative +4900 nominative +nominative +nominative +genitive +4905 nominative +nominative +genitive +genitive +4910 nominative +nominative +nominative +genitive +nominative +4916 nominative +nominative +4919 nominative +nominative +nominative +nominative +nominative +genitive +genitive +4927 nominative +nominative +nominative +nominative +4932 nominative +nominative +nominative +nominative +4937 nominative +accusative +accusative +accusative +4943 nominative +nominative +nominative +dative +nominative +4949 accusative +genitive +4955 accusative +genitive +4963 accusative +accusative +accusative +accusative +genitive +genitive +4970 nominative +4972 nominative +4975 nominative +nominative +genitive +genitive +accusative +4981 accusative +4983 accusative +4985 accusative +4993 accusative +4995 accusative +4997 accusative +4999 accusative +accusative +genitive +5003 accusative +5005 accusative +5008 accusative +5010 accusative +5012 accusative +5014 nominative +nominative +nominative +genitive +genitive +genitive +5023 accusative +accusative +5026 accusative +5029 nominative +5031 dative +nominative +5040 nominative +5042 accusative +accusative +5045 accusative +5050 nominative +nominative +nominative +5054 nominative +nominative +genitive +5058 accusative +5063 nominative +nominative +nominative +genitive +5068 accusative +5072 nominative +5075 accusative +5078 accusative +accusative +genitive +nominative +5083 genitive +genitive +5086 genitive +genitive +genitive +5090 accusative +accusative +genitive +genitive +genitive +5097 dative +nominative +5100 dative +genitive +5103 genitive +5105 dative +genitive +5108 dative +dative +dative +5112 nominative +5114 accusative +5116 accusative +5118 dative +genitive +5122 nominative +5124 nominative +nominative +5127 nominative +5129 nominative +nominative +5134 genitive +genitive +5138 accusative +5140 accusative +5143 dative +dative +genitive +5147 accusative +5151 accusative +5153 accusative +5156 genitive +5158 accusative +dative +5161 dative +dative +5166 accusative +5171 accusative +5175 dative +5177 dative +dative +dative +accusative +5184 nominative +5186 nominative +nominative +5189 nominative +nominative +genitive +genitive +genitive +nominative +nominative +5197 dative +5200 nominative +accusative +5203 accusative +5205 nominative +accusative +5209 nominative +5211 accusative +5214 accusative +5217 nominative +5219 genitive +5221 accusative +accusative +genitive +5225 nominative +nominative +5228 accusative +nominative +5234 accusative +5236 dative +dative +dative +5241 accusative +accusative +5246 dative +5250 accusative +accusative +genitive +genitive +5256 nominative +nominative +genitive +genitive +5262 nominative +5264 accusative +accusative +5267 nominative +5269 accusative +accusative +genitive +nominative +dative +dative +5278 nominative +nominative +genitive +5282 nominative +nominative +5285 nominative +nominative +genitive +5289 accusative +accusative +accusative +5293 dative +5295 accusative +accusative +genitive +5301 accusative +5303 nominative +5305 nominative +nominative +5310 nominative +nominative +5314 accusative +5316 dative +5318 dative +dative +5322 dative +dative +5325 accusative +5327 accusative +accusative +5332 genitive +genitive +5338 genitive +genitive +accusative +accusative +5344 genitive +accusative +accusative +5351 accusative +accusative +5354 accusative +5356 accusative +5359 dative +5362 nominative +genitive +5366 nominative +5368 genitive +5372 accusative +accusative +5375 genitive +genitive +genitive +5380 genitive +nominative +nominative +genitive +genitive +nominative +nominative +5391 genitive +genitive +5394 nominative +5396 nominative +nominative +5400 dative +5402 genitive +genitive +5405 nominative +5407 dative +5409 genitive +genitive +genitive +genitive +5414 dative +dative +5418 nominative +5420 accusative +5422 genitive +genitive +5425 nominative +accusative +5428 genitive +genitive +genitive +genitive +5433 dative +dative +5440 accusative +5442 accusative +accusative +5447 accusative +5449 accusative +5453 accusative +5455 genitive +genitive +genitive +5459 accusative +5461 genitive +genitive +genitive +5465 accusative +5467 genitive +genitive +genitive +5471 nominative +genitive +genitive +nominative +nominative +genitive +nominative +nominative +accusative +5481 accusative +5483 accusative +5486 genitive +nominative +5489 nominative +nominative +accusative +5493 accusative +5495 accusative +5498 genitive +nominative +5501 nominative +5504 accusative +accusative +genitive +5510 genitive +5513 genitive +nominative +nominative +nominative +accusative +accusative +genitive +5521 accusative +5523 nominative +nominative +accusative +accusative +genitive +5529 genitive +5531 accusative +nominative +nominative +accusative +accusative +5538 nominative +accusative +nominative +5542 accusative +accusative +accusative +nominative +nominative +accusative +5549 accusative +genitive +accusative +genitive +5555 nominative +nominative +accusative +5559 accusative +genitive +accusative +genitive +5566 nominative +5568 accusative +genitive +genitive +genitive +accusative +genitive +5576 accusative +genitive +5580 dative +5584 accusative +accusative +genitive +5591 nominative +nominative +nominative +dative +5596 dative +genitive +5600 genitive +5605 dative +dative +genitive +5609 nominative +nominative +nominative +5613 dative +dative +accusative +accusative +genitive +genitive +nominative +5621 genitive +genitive +genitive +5625 dative +nominative +5628 nominative +nominative +5631 accusative +5634 nominative +nominative +nominative +5638 dative +nominative +5641 dative +accusative +5646 nominative +5649 nominative +5651 nominative +5654 nominative +5657 nominative +5660 nominative +5663 nominative +5666 nominative +5670 dative +5672 genitive +genitive +5675 nominative +nominative +5678 dative +dative +5681 genitive +accusative +5686 accusative +accusative +accusative +5690 genitive +accusative +5693 accusative +5696 accusative +5698 dative +accusative +5701 nominative +accusative +accusative +nominative +5706 dative +dative +genitive +genitive +5711 accusative +5713 accusative +5717 dative +5719 accusative +genitive +nominative +5724 genitive +5727 nominative +5729 accusative +accusative +genitive +5733 genitive +genitive +nominative +5737 accusative +accusative +genitive +5741 genitive +5744 dative +5748 dative +genitive +nominative +genitive +genitive +genitive +5755 nominative +nominative +5758 dative +dative +genitive +genitive +nominative +genitive +5767 genitive +genitive +genitive +genitive +genitive +5774 nominative +nominative +genitive +genitive +5780 nominative +5782 accusative +5784 nominative +nominative +nominative +5788 nominative +nominative +5791 genitive +5797 nominative +5799 nominative +nominative +nominative +5803 nominative +nominative +accusative +5808 dative +5810 accusative +accusative +accusative +nominative +5815 dative +dative +5818 dative +dative +nominative +nominative +dative +dative +dative +5826 dative +5836 nominative +5838 nominative +5840 nominative +5843 accusative +5846 nominative +nominative +genitive +genitive +nominative +5852 nominative +5856 nominative +nominative +5859 nominative +nominative +genitive +5863 genitive +5866 nominative +nominative +5869 genitive +genitive +genitive +5875 accusative +accusative +5878 dative +5880 nominative +nominative +nominative +genitive +5888 dative +vocative +5891 dative +vocative +5896 dative +5898 dative +5900 nominative +nominative +nominative +nominative +5905 dative +5909 dative +5911 dative +5915 dative +dative +5918 dative +nominative +5922 dative +genitive +5925 dative +5927 vocative +5929 nominative +5931 genitive +5934 genitive +5939 dative +5941 nominative +nominative +nominative +nominative +5946 dative +5950 genitive +5954 dative +5956 dative +genitive +nominative +5961 dative +genitive +5964 dative +5966 dative +dative +dative +nominative +nominative +nominative +5974 dative +vocative +vocative +genitive +genitive +5980 genitive +genitive +5984 accusative +5986 genitive +5988 genitive +5991 accusative +dative +5994 nominative +nominative +5998 nominative +6001 genitive +nominative +dative +6006 genitive +genitive +genitive +6010 nominative +6012 accusative +accusative +6016 nominative +nominative +6019 accusative +accusative +nominative +6025 nominative +nominative +6029 dative +6032 nominative +nominative +6036 accusative +nominative +nominative +nominative +6041 nominative +nominative +6044 accusative +6046 accusative +accusative +genitive +6050 accusative +6054 genitive +6057 nominative +6059 nominative +dative +dative +6064 accusative +dative +dative +genitive +6069 nominative +nominative +genitive +nominative +6074 nominative +nominative +genitive +nominative +6080 dative +dative +dative +6084 nominative +nominative +dative +dative +6089 genitive +genitive +6092 nominative +nominative +genitive +6099 accusative +6103 nominative +nominative +nominative +6107 dative +6109 nominative +nominative +genitive +6113 accusative +6118 dative +6120 nominative +6122 dative +6125 accusative +6127 nominative +6131 nominative +6133 genitive +6137 accusative +accusative +genitive +genitive +6142 accusative +accusative +genitive +genitive +6147 nominative +6150 nominative +6152 dative +6154 dative +6156 genitive +6159 dative +dative +dative +6166 dative +dative +6169 dative +dative +nominative +nominative +6174 dative +dative +accusative +accusative +6180 nominative +6184 dative +6186 genitive +genitive +nominative +6194 nominative +6196 accusative +6200 accusative +6204 accusative +accusative +6208 nominative +genitive +genitive +nominative +nominative +genitive +genitive +6216 nominative +6220 accusative +accusative +genitive +6225 nominative +accusative +nominative +accusative +6231 accusative +nominative +6235 dative +dative +6240 genitive +6242 nominative +6244 dative +nominative +6248 genitive +nominative +nominative +6252 accusative +accusative +6257 nominative +dative +dative +6261 accusative +6264 accusative +6268 dative +6270 nominative +genitive +6274 dative +dative +6280 dative +dative +6283 genitive +accusative +accusative +6290 nominative +6292 nominative +nominative +6295 nominative +nominative +nominative +accusative +6301 genitive +6303 accusative +6306 nominative +nominative +nominative +6313 dative +nominative +6317 accusative +accusative +6321 dative +6324 accusative +accusative +6329 nominative +nominative +6332 genitive +genitive +genitive +genitive +6337 nominative +nominative +genitive +accusative +6342 nominative +nominative +genitive +accusative +6347 nominative +nominative +genitive +6351 accusative +accusative +genitive +6355 accusative +6357 accusative +dative +dative +6367 nominative +6369 dative +dative +accusative +accusative +genitive +accusative +accusative +6379 accusative +accusative +6387 accusative +accusative +accusative +6391 dative +dative +genitive +nominative +6398 dative +nominative +nominative +6402 nominative +6405 accusative +6407 accusative +accusative +6414 nominative +nominative +nominative +6420 nominative +6422 nominative +nominative +genitive +6426 nominative +nominative +nominative +6430 nominative +6433 accusative +accusative +6438 dative +dative +dative +genitive +genitive +6444 nominative +accusative +accusative +genitive +6449 dative +nominative +nominative +nominative +6454 genitive +6457 nominative +nominative +6460 nominative +nominative +6463 genitive +6468 nominative +nominative +accusative +accusative +6474 accusative +6479 nominative +nominative +genitive +6484 nominative +6486 dative +6488 accusative +accusative +nominative +nominative +genitive +6494 dative +6497 accusative +nominative +nominative +genitive +6505 dative +genitive +nominative +6509 accusative +accusative +6514 accusative +nominative +nominative +genitive +genitive +6522 nominative +6525 accusative +accusative +genitive +genitive +6530 accusative +accusative +genitive +6536 accusative +6538 accusative +accusative +6542 accusative +accusative +genitive +6546 nominative +6548 nominative +6550 genitive +6552 genitive +6555 nominative +6557 nominative +6559 genitive +6562 accusative +6564 dative +nominative +nominative +6568 nominative +6570 dative +dative +6573 nominative +genitive +genitive +nominative +6581 nominative +6583 accusative +6585 genitive +genitive +genitive +genitive +6590 dative +6593 nominative +6596 genitive +genitive +genitive +genitive +6602 dative +6605 dative +dative +dative +6610 dative +dative +6614 accusative +accusative +accusative +6618 accusative +accusative +genitive +accusative +6624 accusative +accusative +accusative +6628 accusative +accusative +genitive +accusative +6634 genitive +genitive +nominative +nominative +6639 vocative +genitive +6643 accusative +6645 nominative +nominative +6649 genitive +genitive +genitive +genitive +nominative +nominative +6656 nominative +nominative +nominative +6660 genitive +genitive +genitive +6664 accusative +6666 nominative +nominative +nominative +6670 genitive +genitive +genitive +6674 accusative +6677 dative +6679 nominative +nominative +nominative +accusative +6684 nominative +nominative +6688 genitive +accusative +6691 dative +genitive +6695 genitive +genitive +genitive +6701 genitive +genitive +genitive +6707 dative +nominative +genitive +genitive +6712 genitive +nominative +vocative +6717 genitive +accusative +6721 nominative +nominative +6724 dative +nominative +nominative +6728 nominative +accusative +6732 nominative +6735 dative +6738 accusative +accusative +genitive +genitive +genitive +6746 nominative +6748 dative +dative +genitive +genitive +accusative +accusative +6755 accusative +accusative +6759 nominative +nominative +genitive +genitive +6764 dative +dative +genitive +genitive +accusative +accusative +6771 accusative +accusative +nominative +nominative +6777 dative +dative +6780 genitive +genitive +genitive +6785 accusative +6789 accusative +accusative +genitive +6794 nominative +genitive +6797 nominative +genitive +6801 dative +dative +6804 genitive +genitive +genitive +6809 accusative +6813 genitive +genitive +genitive +genitive +6818 accusative +accusative +genitive +6823 nominative +genitive +6828 nominative +nominative +nominative +6833 genitive +genitive +6837 genitive +genitive +nominative +accusative +6847 accusative +accusative +genitive +6854 nominative +6856 accusative +6858 accusative +6860 accusative +6866 genitive +6868 accusative +accusative +accusative +genitive +6873 nominative +6878 nominative +nominative +genitive +genitive +genitive +nominative +genitive +genitive +6889 dative +dative +dative +dative +dative +6895 genitive +genitive +dative +dative +6900 nominative +nominative +6903 nominative +nominative +genitive +6908 nominative +dative +6913 nominative +dative +6916 nominative +nominative +genitive +6920 nominative +nominative +genitive +6925 nominative +dative +6929 nominative +nominative +6932 dative +dative +dative +nominative +6937 nominative +nominative +genitive +6941 nominative +6943 nominative +nominative +genitive +6947 nominative +accusative +accusative +genitive +6952 accusative +accusative +genitive +6957 nominative +nominative +genitive +6961 nominative +nominative +genitive +6966 nominative +6968 accusative +accusative +genitive +genitive +genitive +genitive +6975 dative +nominative +genitive +nominative +6980 nominative +6982 nominative +6985 dative +dative +dative +nominative +nominative +nominative +genitive +genitive +6995 accusative +accusative +7000 accusative +nominative +nominative +7004 accusative +7006 accusative +accusative +7010 nominative +nominative +nominative +7014 accusative +accusative +7019 dative +accusative +7022 dative +nominative +7026 nominative +nominative +genitive +7032 dative +7034 accusative +7036 nominative +7039 accusative +accusative +7042 nominative +nominative +nominative +7046 accusative +7048 nominative +7051 accusative +accusative +7056 accusative +accusative +7062 accusative +7065 accusative +genitive +7068 genitive +genitive +7073 accusative +7076 accusative +7079 nominative +7082 accusative +accusative +7086 nominative +nominative +7090 accusative +7092 nominative +7095 accusative +accusative +accusative +accusative +7101 accusative +7103 nominative +7106 nominative +7109 nominative +7111 nominative +nominative +accusative +7116 nominative +nominative +nominative +7120 dative +7122 accusative +7124 dative +7126 dative +7128 nominative +nominative +7132 dative +7135 accusative +accusative +genitive +genitive +genitive +genitive +7142 dative +7146 nominative +7149 dative +7153 nominative +7157 accusative +7161 genitive +7163 accusative +7165 dative +dative +7169 nominative +7173 nominative +7180 dative +nominative +nominative +genitive +nominative +nominative +dative +7193 nominative +7201 nominative +nominative +genitive +genitive +genitive +7207 dative +dative +7212 accusative +accusative +genitive +7219 dative +dative +7222 dative +dative +7226 dative +dative +7233 accusative +7235 nominative +genitive +nominative +nominative +7242 nominative +nominative +genitive +7250 dative +7252 nominative +nominative +7255 nominative +7258 accusative +7265 accusative +7271 nominative +7273 accusative +accusative +genitive +genitive +genitive +genitive +accusative +accusative +genitive +genitive +7285 genitive +7287 nominative +nominative +7291 accusative +accusative +7294 dative +dative +genitive +nominative +7299 nominative +7301 accusative +accusative +nominative +7305 nominative +7307 accusative +accusative +nominative +nominative +7312 nominative +accusative +accusative +nominative +7317 nominative +7319 genitive +nominative +accusative +7325 accusative +7327 dative +7329 nominative +7332 genitive +genitive +7335 genitive +7337 accusative +accusative +nominative +7342 nominative +7344 accusative +accusative +nominative +nominative +7349 nominative +accusative +accusative +nominative +7354 nominative +nominative +genitive +genitive +7359 nominative +nominative +genitive +genitive +7364 accusative +accusative +7367 nominative +7370 nominative +7372 accusative +accusative +accusative +nominative +nominative +7378 nominative +accusative +accusative +nominative +7383 nominative +7385 nominative +7390 accusative +7393 accusative +7396 accusative +7398 accusative +accusative +7401 dative +nominative +7404 nominative +nominative +genitive +genitive +dative +dative +accusative +accusative +7413 dative +dative +genitive +7418 dative +7420 accusative +accusative +7423 genitive +nominative +nominative +7428 accusative +7430 accusative +genitive +genitive +7438 nominative +nominative +7441 accusative +7446 nominative +nominative +7449 nominative +nominative +nominative +genitive +genitive +7455 dative +vocative +7458 accusative +accusative +7462 dative +dative +dative +7468 accusative +7470 nominative +7472 dative +nominative +nominative +accusative +7478 nominative +nominative +dative +7484 nominative +7486 accusative +7488 nominative +7493 nominative +accusative +accusative +7498 dative +accusative +accusative +7503 accusative +7505 genitive +genitive +7509 dative +genitive +genitive +7513 dative +dative +7516 accusative +accusative +accusative +7521 accusative +7523 accusative +7525 accusative +7527 accusative +7529 accusative +accusative +7533 accusative +accusative +genitive +accusative +accusative +7539 dative +nominative +nominative +7543 nominative +nominative +genitive +genitive +dative +genitive +accusative +nominative +nominative +7554 dative +dative +genitive +7558 nominative +nominative +7561 genitive +genitive +genitive +7567 nominative +genitive +genitive +7573 nominative +7576 accusative +accusative +genitive +genitive +7583 dative +dative +genitive +accusative +accusative +7589 dative +nominative +7592 nominative +nominative +genitive +genitive +dative +accusative +nominative +nominative +7602 genitive +accusative +accusative +7606 genitive +7608 nominative +accusative +accusative +7612 nominative +nominative +7615 dative +dative +dative +7620 genitive +accusative +7623 dative +7626 nominative +nominative +7629 genitive +genitive +genitive +7634 dative +accusative +accusative +genitive +7639 accusative +7641 genitive +7643 nominative +accusative +accusative +7648 accusative +accusative +7652 dative +nominative +nominative +genitive +nominative +7658 dative +accusative +accusative +genitive +genitive +genitive +genitive +7666 nominative +nominative +7669 nominative +nominative +accusative +accusative +accusative +7675 nominative +nominative +genitive +genitive +7680 nominative +nominative +7683 nominative +nominative +7686 nominative +nominative +nominative +nominative +7691 nominative +nominative +genitive +genitive +7696 nominative +nominative +7699 nominative +nominative +genitive +genitive +7704 nominative +nominative +nominative +nominative +accusative +7710 nominative +nominative +7713 nominative +nominative +nominative +genitive +7719 nominative +nominative +nominative +7726 nominative +nominative +7729 dative +7734 dative +dative +genitive +genitive +7739 nominative +nominative +genitive +genitive +accusative +accusative +genitive +7749 genitive +genitive +genitive +accusative +accusative +accusative +7756 accusative +accusative +accusative +accusative +7762 accusative +7764 accusative +accusative +genitive +genitive +7770 nominative +nominative +7773 nominative +nominative +genitive +genitive +7778 nominative +nominative +7782 dative +dative +genitive +genitive +genitive +7788 nominative +nominative +nominative +nominative +accusative +7794 nominative +7796 nominative +nominative +genitive +genitive +dative +dative +7803 dative +dative +accusative +nominative +nominative +7811 genitive +genitive +genitive +7817 accusative +7821 accusative +accusative +accusative +7825 nominative +7827 nominative +nominative +genitive +genitive +dative +dative +accusative +accusative +7836 nominative +accusative +accusative +accusative +nominative +7842 accusative +accusative +7847 accusative +7849 nominative +7851 nominative +nominative +genitive +genitive +dative +dative +7858 accusative +accusative +7862 genitive +genitive +dative +accusative +7868 nominative +7870 accusative +accusative +7873 nominative +7875 accusative +accusative +7878 accusative +7880 accusative +accusative +7887 dative +dative +genitive +genitive +7892 nominative +nominative +7896 accusative +accusative +7899 genitive +genitive +genitive +7904 accusative +7906 accusative +accusative +genitive +genitive +7912 nominative +nominative +7915 nominative +nominative +genitive +genitive +7920 accusative +accusative +7923 dative +7926 nominative +7928 dative +7930 accusative +nominative +nominative +nominative +dative +dative +genitive +genitive +nominative +7940 dative +dative +nominative +7945 genitive +genitive +genitive +accusative +7950 accusative +7955 nominative +nominative +accusative +accusative +accusative +7963 nominative +7965 accusative +accusative +genitive +7969 accusative +7971 dative +dative +genitive +7976 accusative +7980 dative +nominative +nominative +nominative +7985 nominative +nominative +7988 nominative +7990 nominative +genitive +genitive +nominative +7995 nominative +nominative +genitive +7999 nominative +8001 nominative +nominative +genitive +nominative +8006 nominative +8008 nominative +8010 nominative +8012 nominative +nominative +genitive +8016 nominative +8018 accusative +8022 dative +nominative +nominative +8028 dative +8030 nominative +nominative +8033 dative +8036 nominative +nominative +8041 dative +dative +8045 dative +dative +genitive +8052 accusative +accusative +8055 accusative +accusative +genitive +8059 dative +dative +dative +8063 nominative +nominative +nominative +accusative +accusative +genitive +8071 dative +dative +genitive +nominative +8076 nominative +nominative +nominative +nominative +8082 genitive +genitive +8086 accusative +nominative +nominative +8091 dative +8093 nominative +nominative +nominative +accusative +accusative +8101 dative +8104 accusative +accusative +accusative +genitive +genitive +genitive +genitive +8113 nominative +nominative +dative +8118 dative +8120 accusative +8122 nominative +accusative +8126 accusative +accusative +8130 accusative +accusative +8134 dative +genitive +genitive +dative +8139 nominative +nominative +genitive +genitive +8144 dative +dative +8148 dative +dative +8152 genitive +8154 dative +8157 accusative +8160 nominative +nominative +8163 genitive +genitive +genitive +8168 dative +8171 dative +accusative +accusative +genitive +genitive +genitive +8178 nominative +nominative +nominative +8182 accusative +accusative +8185 accusative +accusative +8190 nominative +8192 accusative +8194 dative +dative +8198 nominative +nominative +genitive +8202 dative +8205 dative +dative +8209 dative +dative +genitive +8213 nominative +nominative +nominative +genitive +8218 accusative +accusative +8222 accusative +8224 nominative +8226 dative +dative +8229 nominative +nominative +nominative +8235 dative +8237 accusative +accusative +8240 accusative +8242 nominative +nominative +nominative +8246 dative +8249 genitive +genitive +8252 nominative +8254 accusative +accusative +8259 dative +8262 accusative +accusative +genitive +8266 genitive +genitive +8269 dative +nominative +nominative +nominative +nominative +8275 nominative +nominative +8278 nominative +nominative +8284 accusative +accusative +8287 nominative +8289 accusative +accusative +8292 dative +accusative +8295 nominative +nominative +8298 dative +8300 accusative +8304 dative +nominative +8308 nominative +8310 dative +8317 accusative +8320 accusative +8322 nominative +8325 dative +8327 accusative +8329 nominative +accusative +accusative +8334 genitive +genitive +nominative +accusative +8339 accusative +8341 accusative +8343 accusative +nominative +8346 accusative +accusative +8350 nominative +8352 dative +dative +accusative +accusative +8357 nominative +nominative +dative +dative +8363 nominative +8368 accusative +accusative +genitive +genitive +8373 accusative +accusative +8376 nominative +nominative +8379 nominative +8381 nominative +8383 genitive +8385 genitive +8389 accusative +accusative +8393 accusative +accusative +8397 accusative +8399 accusative +8402 genitive +8404 accusative +accusative +8407 nominative +accusative +accusative +8412 accusative +accusative +8415 accusative +8418 genitive +genitive +nominative +8424 nominative +nominative +8427 accusative +accusative +8430 genitive +genitive +8433 nominative +8435 genitive +genitive +8439 nominative +nominative +nominative +8443 dative +dative +genitive +genitive +8449 accusative +nominative +8452 accusative +accusative +8455 nominative +nominative +nominative +accusative +8460 genitive +genitive +accusative +8464 nominative +8466 nominative +8470 genitive +genitive +8474 nominative +8476 nominative +nominative +dative +nominative +8481 nominative +8486 nominative +dative +nominative +nominative +8491 vocative +8493 nominative +8496 accusative +8499 accusative +8501 accusative +accusative +8504 nominative +8508 nominative +8510 genitive +genitive +nominative +8515 accusative +accusative +8520 accusative +accusative +8523 nominative +accusative +accusative +8528 nominative +8531 nominative +vocative +8534 accusative +8537 nominative +nominative +nominative +accusative +accusative +8543 genitive +8546 dative +vocative +8549 accusative +8552 genitive +genitive +8555 accusative +accusative +8558 nominative +nominative +8561 nominative +8563 dative +dative +8566 dative +nominative +8569 genitive +nominative +8573 nominative +8576 accusative +accusative +8579 accusative +8581 nominative +accusative +nominative +nominative +genitive +genitive +genitive +8590 accusative +accusative +accusative +accusative +8596 dative +accusative +accusative +8600 accusative +8603 accusative +8605 accusative +8607 genitive +genitive +genitive +genitive +genitive +8613 nominative +8618 dative +dative +8621 genitive +nominative +8624 nominative +nominative +8627 accusative +nominative +nominative +genitive +8632 accusative +accusative +genitive +genitive +8639 accusative +accusative +8642 accusative +8645 nominative +nominative +8648 dative +8650 accusative +8652 nominative +8654 accusative +accusative +genitive +genitive +8659 accusative +accusative +genitive +8663 nominative +nominative +8667 accusative +accusative +8670 accusative +accusative +8673 nominative +nominative +accusative +8677 accusative +dative +8681 nominative +8684 nominative +8686 dative +dative +8689 dative +dative +nominative +8693 accusative +8695 genitive +8700 accusative +accusative +genitive +8704 accusative +accusative +genitive +8709 accusative +accusative +genitive +genitive +8714 accusative +accusative +genitive +vocative +8721 genitive +nominative +nominative +nominative +nominative +nominative +dative +dative +accusative +8732 nominative +nominative +genitive +8738 genitive +8742 accusative +nominative +accusative +accusative +genitive +8748 nominative +accusative +accusative +8752 dative +8757 nominative +nominative +8760 accusative +accusative +8763 accusative +accusative +8766 nominative +nominative +8769 genitive +genitive +nominative +8773 accusative +accusative +8776 nominative +nominative +nominative +8780 dative +8783 nominative +nominative +nominative +accusative +accusative +8790 nominative +nominative +8793 nominative +nominative +accusative +8798 nominative +nominative +genitive +nominative +nominative +8805 accusative +8807 nominative +nominative +genitive +8812 nominative +accusative +8815 nominative +8817 accusative +8820 nominative +nominative +nominative +8824 dative +8826 dative +accusative +accusative +8830 nominative +8832 accusative +8834 nominative +nominative +8840 nominative +nominative +nominative +8844 accusative +accusative +8847 accusative +accusative +8852 accusative +8855 nominative +nominative +8858 genitive +genitive +8861 genitive +genitive +8864 nominative +8866 accusative +accusative +8870 genitive +genitive +8873 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +8883 nominative +nominative +accusative +accusative +8888 nominative +dative +dative +8894 accusative +accusative +8897 nominative +8899 nominative +nominative +8903 accusative +accusative +genitive +8907 genitive +8910 nominative +nominative +8913 genitive +genitive +genitive +nominative +8918 nominative +8920 accusative +vocative +nominative +genitive +nominative +nominative +genitive +8930 nominative +8933 dative +accusative +8936 nominative +nominative +nominative +genitive +8941 accusative +nominative +8944 accusative +8948 genitive +8950 nominative +nominative +8958 accusative +accusative +accusative +accusative +genitive +genitive +8965 nominative +nominative +8968 dative +nominative +vocative +8972 dative +8974 nominative +nominative +8979 nominative +8981 accusative +accusative +genitive +genitive +8987 dative +dative +8990 nominative +8993 vocative +8996 nominative +nominative +9000 genitive +genitive +genitive +genitive +9005 genitive +genitive +genitive +genitive +genitive +9011 nominative +nominative +nominative +9015 dative +9017 vocative +nominative +genitive +nominative +nominative +9023 dative +9028 nominative +nominative +genitive +9032 genitive +genitive +genitive +9036 nominative +9038 nominative +nominative +9042 accusative +accusative +genitive +genitive +9047 nominative +9049 accusative +accusative +9055 dative +nominative +nominative +nominative +9060 genitive +accusative +accusative +accusative +accusative +9066 accusative +accusative +9070 accusative +9072 accusative +accusative +genitive +9077 accusative +9079 accusative +accusative +9082 accusative +accusative +accusative +accusative +nominative +9088 accusative +accusative +9091 accusative +accusative +9095 accusative +accusative +genitive +9099 nominative +nominative +nominative +accusative +accusative +genitive +9108 accusative +accusative +9112 nominative +nominative +9115 dative +9119 accusative +9123 accusative +accusative +9131 dative +dative +9135 dative +nominative +nominative +9139 dative +9141 dative +nominative +nominative +9146 accusative +accusative +9150 dative +nominative +nominative +accusative +accusative +9157 nominative +9161 accusative +accusative +9164 nominative +dative +dative +9169 accusative +accusative +9172 accusative +9174 accusative +9176 accusative +accusative +9179 nominative +9183 dative +dative +9186 nominative +nominative +dative +dative +9192 nominative +9196 accusative +accusative +genitive +genitive +9201 accusative +accusative +9205 nominative +nominative +9208 nominative +nominative +9211 genitive +9213 genitive +9215 nominative +accusative +accusative +9220 accusative +accusative +9225 accusative +accusative +genitive +9229 nominative +nominative +nominative +9233 nominative +nominative +9236 accusative +accusative +9239 genitive +genitive +9242 dative +9244 nominative +nominative +9247 dative +genitive +genitive +9251 nominative +9254 nominative +nominative +9259 nominative +9262 nominative +nominative +nominative +9266 accusative +accusative +genitive +genitive +9273 accusative +accusative +genitive +genitive +9279 nominative +nominative +9282 nominative +accusative +9286 nominative +9289 dative +9292 nominative +nominative +genitive +9296 nominative +accusative +9300 nominative +nominative +nominative +9304 accusative +9307 accusative +9310 nominative +nominative +9313 dative +9318 genitive +genitive +genitive +genitive +9323 genitive +9325 nominative +9328 dative +nominative +9331 accusative +9335 nominative +nominative +nominative +9339 accusative +9342 dative +vocative +9345 accusative +9352 accusative +9354 accusative +genitive +genitive +9358 accusative +accusative +9362 accusative +9364 accusative +genitive +genitive +9368 accusative +accusative +9377 genitive +9379 dative +9383 genitive +genitive +genitive +genitive +9388 genitive +9396 genitive +genitive +genitive +genitive +9402 genitive +genitive +genitive +genitive +9407 genitive +9409 nominative +nominative +nominative +9413 accusative +accusative +genitive +genitive +genitive +9419 accusative +accusative +genitive +nominative +9424 nominative +nominative +accusative +9428 accusative +accusative +genitive +genitive +9433 nominative +9436 nominative +accusative +accusative +accusative +9441 nominative +accusative +9444 nominative +accusative +9447 accusative +genitive +genitive +9451 dative +9453 nominative +accusative +accusative +9459 nominative +nominative +nominative +9463 nominative +9465 nominative +nominative +nominative +nominative +genitive +genitive +genitive +genitive +9474 nominative +nominative +nominative +9478 dative +nominative +9481 vocative +vocative +9484 nominative +9486 nominative +9489 dative +9491 nominative +nominative +genitive +nominative +9496 dative +dative +9499 nominative +dative +9503 nominative +9505 nominative +9508 dative +dative +dative +9512 genitive +accusative +accusative +9516 nominative +genitive +9520 genitive +9522 dative +accusative +accusative +genitive +genitive +genitive +genitive +9531 accusative +9534 genitive +genitive +9537 nominative +9539 dative +dative +9543 accusative +9546 genitive +genitive +9549 nominative +9551 dative +dative +9555 dative +dative +9558 dative +9561 nominative +9563 nominative +nominative +9568 nominative +nominative +9571 dative +dative +genitive +9576 accusative +9578 accusative +9581 accusative +9584 genitive +genitive +9587 genitive +9589 genitive +9593 dative +dative +dative +9598 nominative +accusative +nominative +nominative +9604 dative +nominative +nominative +dative +vocative +9612 dative +nominative +9615 nominative +nominative +9618 dative +dative +9622 genitive +vocative +nominative +genitive +9630 accusative +genitive +genitive +9634 accusative +genitive +genitive +9638 nominative +nominative +9641 dative +dative +genitive +9645 nominative +9648 genitive +9651 accusative +9654 accusative +accusative +genitive +9659 dative +9662 nominative +9664 accusative +accusative +genitive +9669 accusative +9672 nominative +9674 accusative +accusative +genitive +9678 genitive +9680 accusative +9682 accusative +9684 nominative +9686 accusative +accusative +accusative +9691 accusative +accusative +genitive +9696 accusative +9698 nominative +accusative +genitive +genitive +genitive +9705 nominative +nominative +genitive +genitive +9711 dative +dative +genitive +genitive +genitive +9717 genitive +genitive +genitive +9723 dative +9725 accusative +accusative +genitive +9730 dative +9733 nominative +genitive +9736 genitive +nominative +9741 genitive +9745 accusative +accusative +genitive +genitive +accusative +9751 dative +dative +genitive +9756 accusative +9759 nominative +nominative +accusative +accusative +9764 accusative +9766 accusative +accusative +accusative +genitive +9772 accusative +9774 accusative +accusative +9777 accusative +9781 genitive +9784 nominative +nominative +genitive +9788 nominative +nominative +9791 nominative +nominative +genitive +9795 nominative +9797 nominative +nominative +9802 dative +nominative +9805 nominative +nominative +9808 genitive +9810 nominative +nominative +nominative +9814 dative +dative +vocative +nominative +9819 accusative +9826 accusative +accusative +dative +accusative +9831 dative +accusative +9834 dative +accusative +9837 genitive +genitive +9840 nominative +nominative +9843 accusative +9846 nominative +9848 genitive +genitive +nominative +nominative +9853 nominative +nominative +genitive +nominative +nominative +9859 dative +9862 genitive +9864 nominative +nominative +nominative +9869 accusative +genitive +9876 nominative +nominative +9879 nominative +genitive +9887 nominative +accusative +accusative +genitive +accusative +9895 accusative +accusative +accusative +9899 genitive +genitive +9902 genitive +genitive +9905 dative +nominative +nominative +nominative +dative +9911 accusative +accusative +9914 genitive +nominative +nominative +genitive +genitive +9920 genitive +9924 accusative +nominative +nominative +nominative +9929 accusative +nominative +nominative +9935 accusative +9937 accusative +9939 nominative +nominative +9943 nominative +9947 accusative +9950 dative +9952 nominative +9958 accusative +9962 dative +accusative +9967 nominative +nominative +genitive +genitive +9974 genitive +9977 nominative +nominative +9981 genitive +genitive +genitive +9985 dative +9987 genitive +9989 accusative +accusative +9992 dative +nominative +nominative +accusative +9997 nominative +vocative +10000 genitive +accusative +accusative +10012 accusative +accusative +10017 accusative +accusative +10021 accusative +dative +dative +genitive +10028 accusative +10031 nominative +nominative +nominative +10036 vocative +vocative +10039 nominative +10043 genitive +10048 genitive +10050 dative +accusative +10055 dative +nominative +nominative +10061 genitive +nominative +nominative +10066 nominative +nominative +10069 genitive +genitive +genitive +10073 nominative +nominative +nominative +dative +dative +10079 accusative +10082 accusative +nominative +10087 accusative +10089 nominative +10091 dative +10093 accusative +accusative +genitive +10099 dative +10102 accusative +10104 accusative +genitive +10107 dative +dative +dative +10116 nominative +10118 dative +10120 genitive +genitive +10123 dative +dative +10126 dative +nominative +nominative +10130 nominative +nominative +genitive +genitive +10136 accusative +genitive +10140 accusative +10142 dative +dative +dative +10150 genitive +genitive +10153 accusative +10155 nominative +accusative +accusative +nominative +dative +dative +10164 nominative +nominative +genitive +10168 accusative +10172 accusative +10174 accusative +accusative +10177 accusative +nominative +nominative +nominative +nominative +dative +10184 vocative +nominative +nominative +genitive +genitive +10190 genitive +10192 accusative +10194 accusative +10196 genitive +genitive +genitive +10201 genitive +genitive +10204 genitive +10206 genitive +genitive +10209 dative +nominative +nominative +10213 nominative +10215 nominative +nominative +10221 accusative +nominative +10224 accusative +10226 accusative +10228 accusative +accusative +accusative +accusative +10234 nominative +accusative +accusative +genitive +10239 accusative +accusative +nominative +10243 dative +10245 genitive +10247 genitive +10249 dative +dative +dative +10253 nominative +nominative +dative +dative +nominative +10259 nominative +nominative +10263 dative +dative +genitive +genitive +10268 nominative +accusative +10271 accusative +10273 dative +genitive +10279 dative +10286 nominative +nominative +10292 accusative +accusative +genitive +genitive +10297 nominative +10299 accusative +10301 nominative +nominative +nominative +nominative +10306 nominative +nominative +10309 dative +dative +genitive +genitive +10315 nominative +10317 accusative +accusative +accusative +10321 dative +dative +genitive +accusative +10328 nominative +10330 accusative +genitive +genitive +genitive +genitive +genitive +10337 accusative +10339 dative +10342 nominative +nominative +10345 accusative +accusative +genitive +10351 dative +dative +genitive +genitive +10356 dative +dative +10359 genitive +genitive +10362 nominative +10364 accusative +accusative +10368 dative +dative +10371 genitive +nominative +nominative +10377 nominative +nominative +genitive +10381 nominative +nominative +genitive +10385 accusative +10387 accusative +10391 genitive +nominative +dative +10397 accusative +accusative +accusative +10401 accusative +10404 accusative +10407 accusative +accusative +10411 accusative +accusative +accusative +accusative +10417 nominative +nominative +genitive +10421 accusative +10423 accusative +10427 genitive +nominative +dative +10431 accusative +10433 accusative +accusative +10438 accusative +accusative +10442 accusative +accusative +genitive +genitive +10449 genitive +genitive +genitive +genitive +10455 dative +10457 nominative +nominative +genitive +10461 dative +10463 genitive +10465 accusative +accusative +genitive +genitive +genitive +genitive +10472 dative +nominative +dative +10478 dative +dative +10481 nominative +10484 nominative +10486 genitive +10489 accusative +10493 accusative +accusative +10496 nominative +10498 accusative +accusative +10504 accusative +10507 dative +10511 dative +10515 dative +10518 dative +10520 dative +10524 nominative +10526 genitive +genitive +genitive +genitive +10531 dative +10534 nominative +genitive +genitive +genitive +10541 nominative +nominative +genitive +10546 accusative +10548 genitive +10550 genitive +genitive +10553 genitive +10556 accusative +accusative +genitive +10565 genitive +10567 accusative +10572 genitive +10575 genitive +genitive +10578 nominative +nominative +10583 genitive +10585 dative +dative +10590 genitive +genitive +10594 dative +10596 nominative +nominative +10599 nominative +nominative +10603 dative +10605 accusative +10608 genitive +genitive +10611 nominative +10613 dative +10616 accusative +10619 genitive +genitive +10622 nominative +10624 dative +10628 dative +10633 genitive +10636 genitive +genitive +10639 genitive +genitive +10642 genitive +10645 dative +10647 genitive +genitive +genitive +genitive +10652 dative +10656 nominative +10659 nominative +10661 accusative +accusative +accusative +10667 dative +genitive +10670 nominative +nominative +nominative +10674 dative +vocative +10679 accusative +nominative +nominative +genitive +10685 dative +10689 dative +nominative +nominative +10694 dative +10702 accusative +10704 nominative +nominative +genitive +genitive +dative +dative +nominative +10713 accusative +10715 genitive +genitive +genitive +10719 genitive +genitive +10723 dative +nominative +nominative +genitive +genitive +10730 genitive +genitive +10734 nominative +nominative +10737 accusative +10739 accusative +accusative +10742 accusative +accusative +10745 accusative +accusative +10751 nominative +nominative +nominative +10755 dative +nominative +10759 dative +10761 accusative +10763 dative +10765 nominative +nominative +nominative +genitive +genitive +genitive +10772 accusative +10774 accusative +accusative +10777 dative +10779 nominative +nominative +nominative +nominative +10784 accusative +genitive +genitive +genitive +nominative +10790 dative +10792 accusative +10794 nominative +accusative +10797 nominative +10800 accusative +10803 nominative +nominative +nominative +genitive +10808 accusative +nominative +10812 dative +10815 dative +10817 nominative +10821 nominative +10823 accusative +10825 accusative +10828 accusative +accusative +10831 nominative +nominative +genitive +nominative +accusative +accusative +10840 nominative +10842 dative +dative +genitive +accusative +accusative +accusative +10849 nominative +accusative +nominative +nominative +genitive +10855 dative +vocative +vocative +accusative +accusative +accusative +accusative +10863 dative +10866 accusative +10870 accusative +10872 accusative +accusative +genitive +10876 nominative +accusative +10880 nominative +nominative +nominative +genitive +10885 accusative +dative +dative +10889 genitive +10891 accusative +accusative +accusative +dative +10897 nominative +nominative +genitive +nominative +nominative +10903 dative +10907 nominative +dative +dative +genitive +10912 genitive +genitive +genitive +10919 nominative +nominative +accusative +accusative +accusative +10926 genitive +genitive +10931 accusative +accusative +genitive +genitive +10936 genitive +genitive +10940 dative +nominative +nominative +10945 accusative +10949 dative +nominative +nominative +accusative +10954 nominative +10958 accusative +accusative +genitive +10962 accusative +accusative +10965 nominative +nominative +10971 nominative +nominative +10974 genitive +accusative +10977 accusative +10979 accusative +10983 genitive +10985 nominative +accusative +accusative +10989 accusative +accusative +10993 dative +dative +genitive +10998 nominative +11001 accusative +accusative +11008 nominative +nominative +11011 accusative +nominative +nominative +11015 nominative +11019 dative +11021 accusative +nominative +11025 accusative +genitive +11030 dative +11032 nominative +11034 accusative +accusative +genitive +11038 dative +11040 accusative +accusative +genitive +11045 genitive +11051 dative +11054 nominative +11056 accusative +accusative +genitive +11061 dative +11064 accusative +11067 dative +nominative +nominative +11073 nominative +nominative +genitive +genitive +11078 genitive +genitive +11084 nominative +11086 dative +11088 nominative +11090 accusative +accusative +accusative +11094 dative +11098 nominative +nominative +11101 genitive +genitive +11107 nominative +nominative +11111 genitive +genitive +11115 nominative +nominative +11118 accusative +11120 accusative +accusative +genitive +genitive +nominative +nominative +11130 dative +nominative +11133 accusative +accusative +11136 dative +11140 nominative +nominative +11143 dative +11145 nominative +nominative +11149 accusative +accusative +11154 accusative +11157 accusative +11159 genitive +genitive +11162 nominative +nominative +genitive +genitive +11167 nominative +accusative +accusative +dative +11175 nominative +nominative +dative +11179 vocative +accusative +accusative +11185 accusative +accusative +11188 nominative +11190 dative +accusative +accusative +11195 genitive +genitive +nominative +11199 nominative +nominative +11205 accusative +accusative +11209 accusative +accusative +11212 dative +accusative +11215 nominative +nominative +11218 accusative +11228 accusative +accusative +11231 accusative +accusative +11235 accusative +11237 genitive +11239 accusative +11241 dative +nominative +nominative +accusative +accusative +11247 accusative +11251 dative +nominative +nominative +11256 nominative +11260 genitive +accusative +accusative +11265 dative +11268 accusative +11270 dative +11274 dative +11276 nominative +nominative +nominative +accusative +accusative +11282 nominative +11285 nominative +accusative +accusative +11289 nominative +nominative +11292 dative +dative +genitive +11297 dative +11299 nominative +11303 accusative +accusative +genitive +genitive +11310 dative +nominative +11313 accusative +11315 genitive +genitive +11319 accusative +11321 accusative +accusative +genitive +genitive +11326 nominative +nominative +nominative +11331 nominative +11333 nominative +11337 nominative +nominative +nominative +11341 dative +11343 dative +nominative +nominative +11349 dative +nominative +nominative +11353 nominative +nominative +nominative +11357 dative +11359 nominative +11361 accusative +11364 dative +11366 nominative +11368 dative +11370 nominative +nominative +11373 dative +11376 dative +11378 nominative +nominative +nominative +dative +11383 dative +dative +11387 nominative +nominative +genitive +genitive +11392 genitive +genitive +genitive +11397 nominative +11400 accusative +nominative +accusative +11404 accusative +genitive +genitive +11408 nominative +nominative +11411 accusative +11413 accusative +11415 accusative +11417 accusative +11419 accusative +11421 accusative +11423 accusative +11425 genitive +genitive +genitive +accusative +11431 accusative +accusative +11435 nominative +nominative +11438 nominative +11440 nominative +nominative +11443 nominative +11445 nominative +nominative +genitive +genitive +dative +dative +nominative +11456 accusative +11458 accusative +accusative +genitive +11462 nominative +11464 genitive +genitive +11467 genitive +accusative +accusative +11471 accusative +11473 accusative +accusative +genitive +11477 nominative +11479 accusative +accusative +11482 accusative +accusative +11485 dative +dative +accusative +11489 dative +11493 nominative +11495 accusative +accusative +11499 accusative +11501 nominative +11503 dative +11505 nominative +11509 nominative +11511 accusative +11513 accusative +accusative +11519 accusative +accusative +nominative +11523 accusative +accusative +11527 dative +accusative +11531 accusative +accusative +accusative +nominative +11536 dative +11538 nominative +accusative +11542 dative +11545 nominative +11547 accusative +accusative +11550 genitive +genitive +11553 nominative +nominative +genitive +genitive +dative +dative +genitive +11561 accusative +accusative +11565 accusative +accusative +nominative +11569 genitive +genitive +11572 genitive +genitive +11575 nominative +nominative +11578 accusative +accusative +accusative +11583 accusative +11585 nominative +nominative +nominative +11590 accusative +11594 accusative +11596 accusative +11598 nominative +11600 nominative +11603 genitive +genitive +nominative +nominative +nominative +nominative +accusative +accusative +11613 accusative +accusative +11616 dative +dative +dative +accusative +accusative +genitive +genitive +11624 accusative +accusative +11627 nominative +nominative +dative +genitive +11632 vocative +11635 accusative +11637 genitive +11639 dative +11641 accusative +accusative +11647 dative +dative +dative +11653 dative +11656 dative +accusative +11661 dative +dative +11664 nominative +nominative +genitive +nominative +11670 nominative +nominative +11675 nominative +nominative +nominative +11679 nominative +nominative +nominative +11683 nominative +nominative +11687 accusative +11689 accusative +11692 accusative +11695 dative +dative +11698 dative +11702 accusative +11704 nominative +nominative +genitive +genitive +11709 dative +dative +11712 dative +11715 accusative +11717 accusative +11720 accusative +dative +dative +11724 accusative +11731 dative +dative +dative +11737 dative +nominative +nominative +genitive +genitive +genitive +11744 genitive +genitive +genitive +nominative +11749 nominative +accusative +11752 genitive +11754 nominative +11756 dative +accusative +11760 dative +11764 nominative +nominative +11767 nominative +genitive +nominative +11771 genitive +11773 nominative +11775 genitive +genitive +11778 dative +dative +genitive +11782 nominative +nominative +nominative +11788 accusative +11792 accusative +accusative +accusative +11796 nominative +11799 dative +11802 dative +11804 accusative +accusative +genitive +11809 accusative +11812 genitive +genitive +11816 genitive +11819 nominative +accusative +11823 dative +11826 genitive +genitive +genitive +11830 nominative +nominative +11835 genitive +11837 genitive +11839 nominative +nominative +nominative +accusative +11846 nominative +nominative +genitive +genitive +11851 genitive +11853 nominative +nominative +11856 genitive +11861 dative +11864 nominative +11867 dative +nominative +11871 genitive +nominative +11875 nominative +11878 dative +11880 nominative +11882 genitive +nominative +11885 nominative +nominative +genitive +genitive +11896 accusative +accusative +genitive +accusative +11901 genitive +11903 genitive +genitive +11906 genitive +11908 dative +nominative +nominative +11914 nominative +nominative +11917 accusative +accusative +nominative +11921 nominative +11924 nominative +11926 accusative +vocative +nominative +genitive +11931 nominative +nominative +11934 dative +11938 nominative +accusative +11941 nominative +11943 accusative +vocative +nominative +genitive +11948 nominative +nominative +nominative +11952 accusative +11956 accusative +11958 dative +11960 dative +vocative +11964 nominative +nominative +genitive +11968 nominative +nominative +nominative +11972 genitive +genitive +genitive +11980 dative +11985 accusative +11989 accusative +11991 accusative +accusative +genitive +genitive +11996 nominative +11999 accusative +nominative +dative +12004 accusative +accusative +accusative +12008 genitive +12012 accusative +accusative +12015 accusative +12017 genitive +nominative +12020 dative +12023 nominative +dative +12026 accusative +12029 nominative +nominative +genitive +accusative +12035 nominative +12037 accusative +12039 nominative +12043 nominative +nominative +12046 genitive +genitive +genitive +12050 dative +dative +genitive +12054 nominative +nominative +genitive +12058 dative +nominative +12061 nominative +12063 accusative +12066 accusative +accusative +genitive +12070 nominative +nominative +nominative +12074 nominative +12077 dative +nominative +nominative +12081 accusative +accusative +12084 accusative +accusative +12089 genitive +accusative +accusative +12095 genitive +12097 nominative +nominative +nominative +12101 genitive +accusative +accusative +12105 dative +dative +12108 nominative +12110 accusative +12112 genitive +genitive +12117 dative +dative +12120 nominative +nominative +nominative +nominative +accusative +12126 nominative +nominative +12129 nominative +12131 dative +dative +genitive +nominative +nominative +nominative +12138 dative +genitive +12142 dative +dative +12145 genitive +genitive +12148 accusative +12150 nominative +nominative +nominative +nominative +nominative +12156 nominative +12158 nominative +nominative +12161 nominative +12163 nominative +nominative +nominative +nominative +12168 genitive +genitive +genitive +12173 nominative +12175 accusative +accusative +12179 accusative +accusative +accusative +12183 accusative +12185 dative +dative +12189 accusative +accusative +genitive +genitive +12194 accusative +accusative +genitive +genitive +accusative +accusative +12202 dative +12204 nominative +nominative +genitive +nominative +genitive +12211 nominative +accusative +12214 accusative +genitive +12218 dative +nominative +12221 nominative +12223 dative +dative +12227 accusative +12229 nominative +nominative +12232 nominative +nominative +nominative +accusative +accusative +accusative +12240 accusative +accusative +accusative +accusative +12245 dative +dative +12248 accusative +12250 dative +dative +genitive +12256 dative +12258 accusative +nominative +12262 nominative +nominative +12265 dative +12271 genitive +genitive +12274 genitive +12276 accusative +12278 nominative +accusative +12282 genitive +genitive +12285 accusative +12291 nominative +12293 accusative +accusative +12297 nominative +accusative +accusative +12301 genitive +genitive +12305 accusative +12307 accusative +12310 dative +12313 accusative +accusative +12317 dative +12321 genitive +nominative +12325 accusative +accusative +12330 nominative +nominative +12333 nominative +nominative +nominative +12337 nominative +12341 nominative +nominative +12344 nominative +nominative +nominative +12348 dative +12351 dative +12354 accusative +12359 accusative +accusative +genitive +genitive +12366 dative +dative +dative +12374 accusative +accusative +12378 accusative +12380 accusative +12383 dative +dative +nominative +12388 genitive +genitive +12391 accusative +accusative +12394 dative +dative +nominative +nominative +12399 nominative +nominative +genitive +genitive +nominative +12405 dative +dative +accusative +12410 nominative +dative +12413 accusative +accusative +accusative +12417 nominative +nominative +nominative +12421 dative +12423 accusative +nominative +accusative +accusative +12428 accusative +12430 dative +nominative +dative +12435 dative +dative +accusative +12439 nominative +nominative +nominative +genitive +12446 genitive +12449 genitive +12451 nominative +12454 dative +nominative +12459 genitive +12461 dative +12464 accusative +12467 dative +12472 genitive +12474 accusative +accusative +12477 nominative +12479 accusative +12481 accusative +accusative +12484 nominative +dative +dative +12491 dative +12493 nominative +12495 nominative +12497 dative +12499 dative +dative +accusative +12504 nominative +dative +12507 nominative +12509 accusative +12511 nominative +dative +dative +12515 vocative +12520 dative +dative +12523 nominative +nominative +12526 nominative +vocative +12532 nominative +dative +dative +12538 nominative +nominative +12544 nominative +12546 nominative +12548 genitive +12551 accusative +accusative +genitive +genitive +12556 nominative +nominative +12559 dative +nominative +nominative +12564 dative +12566 nominative +nominative +12569 nominative +nominative +12572 accusative +12574 accusative +accusative +genitive +genitive +12580 nominative +12582 accusative +12584 dative +genitive +12589 dative +12591 nominative +nominative +12594 nominative +nominative +12597 dative +12599 nominative +nominative +12603 accusative +genitive +12606 dative +accusative +accusative +12610 nominative +12612 nominative +nominative +12615 accusative +12617 accusative +dative +12623 dative +accusative +12627 accusative +12630 accusative +dative +12637 nominative +nominative +genitive +genitive +12642 accusative +accusative +genitive +12646 accusative +accusative +12649 accusative +accusative +genitive +12653 nominative +nominative +nominative +accusative +accusative +genitive +12660 accusative +12663 accusative +12666 accusative +12670 accusative +accusative +accusative +genitive +genitive +12677 dative +12680 accusative +12683 accusative +accusative +accusative +genitive +nominative +12689 accusative +accusative +genitive +12693 nominative +nominative +nominative +accusative +accusative +12700 dative +nominative +12703 nominative +nominative +12707 accusative +12710 accusative +accusative +genitive +12714 nominative +accusative +12718 genitive +genitive +12725 nominative +nominative +genitive +genitive +accusative +12731 dative +dative +dative +12735 dative +accusative +12739 accusative +12741 accusative +accusative +12744 dative +dative +nominative +12748 dative +accusative +accusative +12752 dative +dative +genitive +12756 dative +nominative +nominative +12762 dative +dative +accusative +accusative +12767 nominative +nominative +nominative +12772 accusative +genitive +12775 genitive +12777 nominative +12780 nominative +12782 dative +genitive +12785 accusative +12787 dative +12791 genitive +nominative +nominative +genitive +genitive +12798 dative +dative +accusative +accusative +genitive +12804 nominative +nominative +12807 accusative +accusative +accusative +12814 accusative +12817 accusative +12819 nominative +nominative +12822 nominative +nominative +nominative +accusative +accusative +genitive +12831 genitive +12834 nominative +accusative +12838 accusative +accusative +12842 accusative +accusative +12846 nominative +nominative +nominative +12852 dative +dative +nominative +12856 nominative +nominative +genitive +genitive +dative +dative +nominative +12864 accusative +dative +dative +genitive +12870 accusative +accusative +genitive +12874 accusative +accusative +12877 accusative +accusative +12885 accusative +accusative +nominative +12889 dative +dative +12892 accusative +accusative +genitive +12896 nominative +nominative +genitive +12900 nominative +nominative +nominative +12904 nominative +nominative +12908 accusative +accusative +12911 nominative +nominative +12915 nominative +12917 accusative +accusative +accusative +12921 nominative +12923 accusative +accusative +genitive +12927 nominative +nominative +nominative +accusative +accusative +genitive +12937 nominative +nominative +12941 nominative +accusative +accusative +genitive +12946 accusative +accusative +accusative +12950 accusative +accusative +genitive +12956 dative +dative +genitive +12960 nominative +nominative +nominative +12965 nominative +nominative +12969 nominative +12973 accusative +accusative +genitive +genitive +12979 accusative +12983 accusative +accusative +12986 nominative +nominative +nominative +nominative +12991 accusative +accusative +12994 accusative +accusative +12998 accusative +13000 accusative +13003 nominative +nominative +genitive +13007 nominative +nominative +nominative +13011 accusative +accusative +13015 accusative +13017 accusative +accusative +genitive +13022 dative +vocative +13028 nominative +accusative +genitive +13032 nominative +13035 nominative +nominative +13038 dative +dative +nominative +genitive +accusative +13044 accusative +13046 accusative +13048 accusative +accusative +accusative +accusative +13054 nominative +nominative +13057 nominative +nominative +genitive +genitive +13062 nominative +13064 nominative +13066 nominative +nominative +13069 nominative +nominative +nominative +accusative +13075 accusative +13078 dative +13081 dative +accusative +accusative +genitive +13086 genitive +genitive +accusative +vocative +13092 nominative +13095 accusative +accusative +genitive +genitive +13100 dative +13105 dative +13107 genitive +13112 accusative +genitive +13116 dative +nominative +dative +13122 accusative +dative +13127 nominative +nominative +nominative +accusative +accusative +genitive +13134 accusative +accusative +13137 vocative +13139 dative +accusative +accusative +genitive +genitive +13145 nominative +13147 dative +accusative +13151 dative +genitive +nominative +nominative +nominative +13157 nominative +nominative +13160 genitive +13163 dative +13166 accusative +genitive +dative +13170 accusative +genitive +genitive +dative +dative +13176 nominative +13179 nominative +accusative +13183 dative +dative +dative +13187 dative +nominative +nominative +13192 accusative +13195 accusative +nominative +vocative +nominative +13201 nominative +13204 nominative +accusative +13207 nominative +nominative +genitive +accusative +accusative +genitive +13215 accusative +dative +dative +genitive +13222 dative +13224 nominative +13226 nominative +nominative +nominative +13232 nominative +accusative +13235 accusative +accusative +genitive +dative +dative +genitive +13243 nominative +nominative +13246 nominative +nominative +13249 genitive +13252 accusative +genitive +13255 nominative +nominative +13259 dative +dative +genitive +genitive +13264 nominative +13267 nominative +13269 accusative +13271 nominative +nominative +nominative +13275 dative +13278 nominative +accusative +accusative +13282 accusative +accusative +genitive +genitive +13288 dative +dative +13296 nominative +13298 dative +dative +13303 genitive +genitive +genitive +genitive +13309 accusative +accusative +dative +13313 genitive +genitive +genitive +nominative +13318 nominative +nominative +genitive +13322 nominative +nominative +genitive +13326 nominative +nominative +genitive +13331 nominative +nominative +genitive +13335 genitive +13337 nominative +nominative +nominative +13342 dative +dative +genitive +13346 nominative +nominative +nominative +13351 accusative +accusative +13355 accusative +accusative +13359 nominative +13361 genitive +nominative +nominative +accusative +vocative +nominative +nominative +nominative +13370 dative +dative +13373 nominative +13375 dative +13377 accusative +accusative +accusative +genitive +13382 dative +dative +dative +genitive +13388 dative +dative +dative +genitive +13394 dative +dative +dative +genitive +nominative +13400 nominative +nominative +13403 nominative +nominative +nominative +nominative +dative +13409 accusative +13411 genitive +13413 accusative +13415 dative +dative +dative +dative +nominative +nominative +nominative +13424 nominative +nominative +13427 genitive +genitive +genitive +13431 accusative +nominative +nominative +nominative +nominative +dative +13439 genitive +genitive +genitive +nominative +13445 dative +genitive +genitive +13449 dative +13452 nominative +13454 dative +13456 accusative +accusative +nominative +13460 nominative +dative +dative +genitive +13466 genitive +genitive +13471 accusative +accusative +genitive +13475 genitive +genitive +genitive +13480 nominative +13482 accusative +accusative +13485 nominative +genitive +13489 nominative +13492 dative +accusative +13496 nominative +13498 genitive +genitive +genitive +13502 accusative +13505 nominative +nominative +13508 dative +dative +13511 dative +dative +genitive +nominative +13516 genitive +genitive +genitive +13520 nominative +nominative +13523 nominative +nominative +13526 accusative +13528 accusative +13530 dative +13536 accusative +accusative +genitive +13548 accusative +accusative +13553 accusative +accusative +genitive +genitive +13558 nominative +dative +dative +genitive +13565 accusative +13567 accusative +accusative +accusative +genitive +13573 accusative +13575 dative +dative +13579 accusative +accusative +genitive +13584 accusative +accusative +13588 accusative +accusative +13591 dative +dative +13594 accusative +accusative +13597 dative +dative +13600 accusative +accusative +13603 dative +dative +13608 genitive +genitive +nominative +13612 nominative +13615 nominative +13617 nominative +13619 genitive +nominative +nominative +13623 nominative +nominative +nominative +13628 accusative +genitive +13633 genitive +genitive +13636 nominative +13638 genitive +nominative +nominative +nominative +nominative +13645 nominative +13647 nominative +genitive +13650 nominative +nominative +nominative +13654 nominative +nominative +genitive +13658 genitive +nominative +13661 nominative +13663 accusative +13666 nominative +13668 accusative +13672 dative +vocative +13675 vocative +vocative +13679 accusative +accusative +genitive +genitive +13684 genitive +genitive +13687 nominative +13691 accusative +accusative +13696 dative +vocative +13699 vocative +vocative +13703 accusative +accusative +13706 accusative +accusative +13709 accusative +accusative +13715 accusative +accusative +genitive +accusative +genitive +13721 dative +vocative +vocative +nominative +nominative +13727 nominative +13730 dative +dative +nominative +13736 nominative +13739 dative +dative +genitive +genitive +13744 vocative +13746 vocative +13748 nominative +nominative +13751 nominative +nominative +13754 nominative +nominative +nominative +nominative +accusative +accusative +13762 nominative +13765 dative +dative +nominative +13771 nominative +13774 dative +dative +dative +13778 genitive +13780 vocative +13782 nominative +nominative +nominative +nominative +13787 nominative +nominative +nominative +nominative +accusative +accusative +13794 nominative +nominative +13797 dative +dative +13801 dative +13804 dative +dative +13807 genitive +13809 nominative +nominative +13812 dative +dative +13816 dative +13819 dative +dative +accusative +13823 nominative +nominative +13826 dative +dative +13830 dative +dative +genitive +genitive +13836 dative +dative +13839 genitive +13841 dative +vocative +13844 vocative +vocative +13848 accusative +accusative +13851 accusative +accusative +13854 accusative +accusative +13858 accusative +accusative +genitive +genitive +accusative +accusative +13865 accusative +accusative +13868 accusative +accusative +13872 accusative +13874 accusative +13877 vocative +vocative +nominative +nominative +accusative +accusative +13884 accusative +accusative +nominative +13888 dative +vocative +13891 vocative +vocative +13895 accusative +13897 genitive +genitive +13900 genitive +genitive +13906 genitive +13908 genitive +vocative +vocative +13912 accusative +accusative +13915 genitive +genitive +13920 nominative +13922 genitive +nominative +13925 dative +vocative +13928 vocative +vocative +13932 dative +dative +13935 nominative +13938 nominative +13942 genitive +genitive +13945 genitive +genitive +13949 nominative +13953 dative +dative +nominative +13959 nominative +genitive +13962 genitive +13964 dative +vocative +13967 vocative +vocative +13971 accusative +accusative +genitive +genitive +13977 accusative +accusative +genitive +genitive +13986 dative +dative +genitive +genitive +genitive +13994 genitive +nominative +13997 dative +dative +genitive +genitive +14003 dative +14006 nominative +genitive +genitive +accusative +accusative +14012 nominative +14014 accusative +accusative +genitive +genitive +genitive +vocative +vocative +genitive +14025 genitive +genitive +genitive +genitive +14031 accusative +nominative +14035 accusative +accusative +14038 accusative +14040 accusative +14042 genitive +14048 genitive +14051 dative +dative +genitive +14057 genitive +14059 accusative +14063 accusative +nominative +nominative +nominative +nominative +14069 genitive +genitive +14072 genitive +genitive +genitive +genitive +genitive +14078 genitive +genitive +genitive +genitive +genitive +accusative +14086 genitive +genitive +14089 genitive +genitive +14093 dative +14095 nominative +nominative +14098 accusative +accusative +accusative +vocative +vocative +nominative +nominative +accusative +accusative +14108 nominative +accusative +accusative +14112 accusative +14116 accusative +accusative +genitive +accusative +accusative +nominative +14123 accusative +accusative +genitive +14127 accusative +accusative +14134 dative +nominative +nominative +genitive +14140 dative +14143 accusative +14150 nominative +nominative +nominative +14154 dative +genitive +14157 nominative +nominative +nominative +14161 genitive +genitive +14166 nominative +nominative +genitive +14170 dative +accusative +accusative +genitive +genitive +14176 nominative +nominative +14179 dative +14182 accusative +accusative +14186 dative +14192 accusative +nominative +nominative +14198 genitive +genitive +14201 genitive +genitive +genitive +genitive +14206 dative +nominative +nominative +14210 accusative +nominative +14213 dative +14215 nominative +14218 nominative +nominative +nominative +genitive +genitive +genitive +14225 genitive +genitive +genitive +14229 nominative +nominative +nominative +14233 dative +14236 nominative +accusative +14240 nominative +14243 dative +dative +genitive +nominative +nominative +14249 nominative +nominative +14252 accusative +14257 accusative +14259 accusative +genitive +14270 nominative +nominative +14274 nominative +14276 accusative +14278 nominative +14280 accusative +14283 nominative +14285 nominative +14287 accusative +14289 nominative +nominative +nominative +genitive +14295 accusative +14297 accusative +14300 accusative +14303 nominative +14305 genitive +genitive +genitive +14309 accusative +accusative +genitive +14315 nominative +14317 accusative +14321 accusative +14323 nominative +nominative +14328 accusative +14331 accusative +14333 accusative +accusative +14336 nominative +nominative +genitive +genitive +14341 nominative +nominative +14344 accusative +nominative +14349 nominative +nominative +nominative +genitive +genitive +14355 dative +dative +dative +14359 accusative +dative +dative +dative +14366 nominative +nominative +14371 accusative +accusative +genitive +genitive +accusative +accusative +14378 genitive +genitive +genitive +accusative +14383 dative +dative +nominative +nominative +14389 nominative +14391 dative +dative +14395 accusative +accusative +nominative +14399 genitive +genitive +14404 accusative +14406 genitive +genitive +genitive +14410 nominative +14412 dative +dative +14418 accusative +accusative +genitive +14423 dative +14425 dative +dative +14428 dative +dative +14431 dative +dative +dative +14439 nominative +nominative +genitive +genitive +14444 dative +14448 nominative +nominative +nominative +14454 genitive +genitive +14457 genitive +14467 nominative +nominative +nominative +14473 nominative +nominative +14477 accusative +accusative +14480 nominative +nominative +nominative +14485 nominative +dative +14490 nominative +nominative +14498 nominative +14500 nominative +14503 accusative +accusative +14506 accusative +14510 nominative +14512 accusative +accusative +14516 dative +14520 dative +14523 dative +dative +14530 dative +dative +14536 nominative +nominative +14540 genitive +14544 genitive +14547 nominative +nominative +genitive +genitive +genitive +genitive +14556 nominative +nominative +14560 nominative +nominative +14565 accusative +accusative +genitive +genitive +genitive +nominative +nominative +14574 nominative +nominative +14578 accusative +accusative +genitive +14582 nominative +nominative +14586 genitive +genitive +14589 nominative +nominative +genitive +genitive +14597 nominative +nominative +genitive +genitive +genitive +genitive +14604 dative +14608 nominative +nominative +nominative +genitive +genitive +14615 accusative +accusative +genitive +genitive +accusative +14621 genitive +genitive +genitive +genitive +14626 genitive +14628 genitive +genitive +14632 accusative +accusative +genitive +14636 genitive +genitive +14640 accusative +accusative +genitive +14644 genitive +genitive +genitive +14648 genitive +genitive +14651 genitive +genitive +14655 genitive +genitive +14658 accusative +accusative +14662 nominative +nominative +genitive +14666 nominative +14668 accusative +accusative +14674 nominative +nominative +14678 nominative +14681 accusative +accusative +14688 dative +14691 dative +14696 nominative +nominative +nominative +14701 nominative +nominative +14704 nominative +nominative +14707 nominative +nominative +14711 nominative +nominative +genitive +14719 genitive +genitive +14722 genitive +genitive +nominative +14727 nominative +nominative +genitive +genitive +14732 nominative +nominative +14736 nominative +nominative +nominative +14741 nominative +nominative +genitive +genitive +14747 nominative +nominative +genitive +genitive +genitive +genitive +14756 dative +dative +dative +dative +14761 genitive +genitive +14764 nominative +14766 nominative +nominative +14769 nominative +14771 genitive +genitive +14774 nominative +14776 accusative +accusative +14783 nominative +nominative +14787 accusative +14791 nominative +nominative +genitive +genitive +genitive +genitive +14801 dative +dative +nominative +14806 nominative +14809 nominative +14811 dative +dative +nominative +14816 nominative +14823 dative +dative +nominative +nominative +genitive +14830 accusative +14835 nominative +nominative +dative +dative +nominative +nominative +14849 accusative +accusative +genitive +14853 accusative +14855 nominative +14857 nominative +14859 dative +14862 dative +nominative +nominative +genitive +genitive +14869 nominative +14871 nominative +nominative +14874 nominative +nominative +accusative +14878 nominative +nominative +14881 genitive +genitive +genitive +genitive +14886 dative +accusative +accusative +14890 dative +nominative +nominative +nominative +nominative +accusative +14897 accusative +nominative +nominative +nominative +genitive +14905 dative +14908 dative +dative +dative +genitive +14913 accusative +14917 nominative +nominative +nominative +nominative +14922 dative +dative +genitive +14926 genitive +nominative +nominative +14932 accusative +accusative +genitive +14940 genitive +genitive +14943 nominative +nominative +genitive +genitive +genitive +14949 dative +dative +14955 dative +dative +14961 accusative +14963 accusative +accusative +genitive +14967 genitive +genitive +14972 nominative +nominative +14975 nominative +nominative +genitive +genitive +14981 nominative +nominative +genitive +genitive +14986 dative +nominative +nominative +accusative +accusative +genitive +14994 accusative +genitive +genitive +15000 genitive +15002 nominative +15005 nominative +15007 nominative +nominative +nominative +accusative +accusative +15015 genitive +accusative +15018 nominative +nominative +15021 accusative +15023 dative +dative +15026 genitive +genitive +genitive +15030 genitive +genitive +genitive +15034 nominative +15038 genitive +genitive +nominative +15043 nominative +nominative +15047 accusative +15050 nominative +nominative +nominative +nominative +15056 accusative +accusative +genitive +15060 nominative +nominative +dative +dative +15066 dative +15068 genitive +genitive +genitive +15072 nominative +nominative +genitive +15078 nominative +nominative +nominative +15086 dative +15088 dative +15092 accusative +accusative +15096 dative +15098 genitive +genitive +15102 nominative +nominative +15105 nominative +nominative +15109 genitive +15111 accusative +accusative +15115 nominative +nominative +15118 accusative +15121 nominative +nominative +nominative +nominative +vocative +vocative +15128 dative +15130 nominative +nominative +15135 dative +15138 accusative +15144 accusative +accusative +15147 accusative +accusative +15151 nominative +nominative +15154 accusative +accusative +accusative +15159 dative +accusative +accusative +genitive +15165 dative +15168 accusative +15170 dative +15173 dative +accusative +dative +15177 accusative +accusative +accusative +15183 nominative +nominative +accusative +15187 accusative +nominative +15191 dative +15194 accusative +15197 nominative +accusative +15201 accusative +15204 nominative +accusative +accusative +nominative +nominative +15210 accusative +15213 accusative +accusative +genitive +genitive +genitive +15220 accusative +accusative +15223 nominative +nominative +genitive +genitive +genitive +15230 accusative +15232 genitive +15234 nominative +nominative +accusative +15238 accusative +nominative +15241 accusative +15243 accusative +nominative +vocative +15247 accusative +dative +15251 accusative +15253 accusative +15256 dative +nominative +nominative +genitive +15261 vocative +vocative +15264 vocative +15266 accusative +15268 nominative +15270 genitive +accusative +15275 accusative +accusative +genitive +genitive +genitive +nominative +15282 nominative +accusative +15285 accusative +15287 vocative +15289 accusative +dative +15293 accusative +15295 accusative +15298 dative +nominative +nominative +genitive +15303 vocative +vocative +15306 vocative +15308 accusative +15310 nominative +15312 genitive +accusative +15317 accusative +accusative +genitive +genitive +genitive +15323 nominative +15325 nominative +accusative +accusative +accusative +nominative +15331 vocative +15333 accusative +15336 nominative +nominative +nominative +15343 nominative +15348 nominative +nominative +15351 accusative +accusative +genitive +15355 dative +dative +15359 accusative +accusative +15362 nominative +nominative +nominative +genitive +15367 dative +vocative +vocative +15371 vocative +15385 accusative +15387 accusative +accusative +genitive +dative +dative +15394 nominative +nominative +15397 accusative +accusative +15400 dative +15404 genitive +accusative +accusative +15409 dative +dative +accusative +15413 accusative +15415 dative +dative +dative +15422 genitive +15424 genitive +15426 accusative +15430 genitive +15432 accusative +accusative +accusative +15437 accusative +accusative +accusative +accusative +15443 nominative +nominative +15446 nominative +nominative +genitive +genitive +15453 nominative +nominative +genitive +genitive +15458 dative +dative +genitive +15462 nominative +nominative +nominative +15466 genitive +15470 genitive +genitive +genitive +15476 genitive +nominative +nominative +nominative +15482 accusative +15484 genitive +15486 nominative +nominative +15489 accusative +accusative +15492 genitive +genitive +15497 accusative +accusative +15500 genitive +genitive +15503 accusative +accusative +15506 genitive +15509 nominative +nominative +dative +15513 genitive +genitive +15516 nominative +nominative +genitive +genitive +genitive +15522 accusative +accusative +dative +15526 genitive +genitive +accusative +15533 dative +15538 accusative +nominative +15543 accusative +nominative +15547 accusative +15551 accusative +15553 dative +15558 accusative +15561 dative +nominative +nominative +nominative +vocative +15568 accusative +accusative +15573 accusative +15579 accusative +accusative +15584 accusative +15590 accusative +accusative +15594 dative +15598 accusative +15600 nominative +nominative +nominative +15604 dative +15607 dative +15609 accusative +15611 dative +genitive +genitive +genitive +genitive +genitive +genitive +dative +15623 dative +15625 genitive +nominative +15629 genitive +15631 accusative +accusative +accusative +accusative +accusative +accusative +dative +dative +15640 dative +dative +genitive +15648 dative +15654 accusative +nominative +15660 accusative +nominative +15665 accusative +nominative +15669 dative +15673 accusative +15677 nominative +nominative +vocative +15682 accusative +accusative +15685 accusative +15687 accusative +15689 accusative +15691 accusative +15694 dative +15698 dative +15701 dative +nominative +15705 dative +15707 accusative +15710 dative +genitive +genitive +genitive +15715 dative +15719 nominative +15721 accusative +accusative +15724 nominative +nominative +15727 accusative +accusative +15733 nominative +nominative +accusative +accusative +accusative +accusative +15740 dative +dative +genitive +15747 accusative +nominative +nominative +15752 nominative +nominative +genitive +genitive +15758 accusative +15762 nominative +nominative +15765 nominative +nominative +genitive +genitive +15770 accusative +accusative +genitive +genitive +genitive +genitive +genitive +15780 accusative +accusative +dative +15790 dative +dative +15794 nominative +15797 dative +dative +15800 genitive +genitive +genitive +15804 dative +15806 dative +genitive +genitive +genitive +15811 dative +nominative +nominative +accusative +genitive +genitive +15820 genitive +genitive +genitive +genitive +15825 nominative +nominative +nominative +15829 nominative +15831 accusative +nominative +nominative +nominative +15837 nominative +15839 genitive +15842 dative +15844 nominative +nominative +nominative +15848 dative +accusative +accusative +15852 dative +dative +15855 accusative +accusative +15859 accusative +15862 accusative +accusative +15866 genitive +15868 accusative +15873 nominative +nominative +accusative +accusative +accusative +15879 genitive +genitive +genitive +15883 accusative +15885 accusative +15889 dative +15893 nominative +nominative +nominative +15897 dative +dative +dative +15902 accusative +15904 nominative +15906 accusative +genitive +15909 nominative +genitive +15912 nominative +nominative +nominative +nominative +nominative +15918 accusative +accusative +15922 accusative +dative +15925 nominative +dative +15928 accusative +15930 nominative +15932 dative +15934 accusative +15939 accusative +15941 accusative +15944 dative +dative +genitive +genitive +15949 nominative +nominative +dative +dative +nominative +15957 dative +15959 accusative +accusative +15962 nominative +15966 accusative +accusative +15969 accusative +accusative +15973 dative +nominative +nominative +15977 nominative +nominative +genitive +15983 accusative +15985 accusative +accusative +15988 genitive +genitive +genitive +15993 nominative +nominative +15997 dative +nominative +nominative +16002 accusative +accusative +16005 genitive +genitive +16009 genitive +16011 genitive +16013 genitive +genitive +16018 dative +16020 nominative +16022 genitive +16024 accusative +16026 nominative +16030 dative +nominative +nominative +16034 nominative +16036 vocative +16038 nominative +nominative +16041 nominative +nominative +16044 genitive +accusative +accusative +16048 dative +dative +nominative +accusative +16054 nominative +nominative +genitive +genitive +16062 genitive +16065 dative +dative +dative +16069 genitive +nominative +nominative +genitive +genitive +16075 nominative +16077 dative +16081 nominative +nominative +nominative +16085 nominative +nominative +nominative +nominative +accusative +16092 nominative +16094 vocative +16096 dative +nominative +16100 genitive +genitive +nominative +nominative +nominative +accusative +16107 nominative +16110 nominative +dative +dative +16116 nominative +16118 nominative +nominative +genitive +16122 nominative +accusative +16125 nominative +16127 dative +nominative +16131 genitive +nominative +16134 nominative +16136 nominative +nominative +genitive +genitive +genitive +nominative +16143 genitive +nominative +16146 accusative +genitive +16150 dative +16157 genitive +genitive +genitive +genitive +genitive +16163 genitive +genitive +genitive +16167 accusative +16170 genitive +accusative +16173 dative +dative +genitive +genitive +genitive +16179 nominative +16182 accusative +accusative +genitive +genitive +16188 dative +nominative +nominative +nominative +nominative +16195 dative +16197 dative +dative +dative +16203 accusative +accusative +16207 nominative +nominative +genitive +genitive +16213 accusative +16215 accusative +16217 accusative +16219 accusative +accusative +16222 nominative +nominative +nominative +16226 dative +16228 nominative +16231 dative +nominative +16236 dative +nominative +nominative +16241 dative +16244 dative +dative +dative +16248 accusative +16252 accusative +16254 dative +nominative +nominative +16259 accusative +16261 dative +16265 accusative +16269 nominative +nominative +nominative +16276 genitive +nominative +nominative +16280 accusative +accusative +accusative +16285 dative +dative +16290 genitive +nominative +16295 nominative +accusative +accusative +16299 accusative +16301 accusative +genitive +16309 dative +nominative +16312 nominative +nominative +genitive +16316 genitive +16322 genitive +16324 nominative +accusative +16328 accusative +genitive +nominative +16332 nominative +vocative +genitive +16336 nominative +16340 genitive +nominative +nominative +nominative +16347 nominative +16351 nominative +16355 accusative +accusative +16359 accusative +accusative +16363 dative +dative +16368 accusative +accusative +16372 genitive +16380 accusative +16382 nominative +nominative +nominative +16386 nominative +nominative +nominative +16391 genitive +nominative +16394 nominative +vocative +genitive +16400 nominative +16404 accusative +16407 nominative +nominative +genitive +16411 nominative +16414 accusative +accusative +16418 nominative +genitive +nominative +nominative +16423 nominative +accusative +16426 nominative +16429 genitive +accusative +accusative +accusative +nominative +16438 accusative +accusative +16442 dative +16444 accusative +16449 nominative +nominative +16452 nominative +nominative +genitive +genitive +16458 accusative +genitive +16464 nominative +nominative +accusative +16469 genitive +genitive +16472 nominative +nominative +genitive +16479 genitive +nominative +nominative +16483 genitive +16485 genitive +16487 genitive +genitive +16490 genitive +genitive +genitive +16494 nominative +nominative +accusative +16498 dative +accusative +nominative +16502 accusative +16504 nominative +16507 accusative +16510 nominative +dative +dative +16515 vocative +16518 accusative +16520 nominative +nominative +16523 dative +vocative +16526 accusative +16529 nominative +16531 accusative +accusative +16534 accusative +accusative +16538 accusative +16541 nominative +genitive +16544 genitive +nominative +accusative +accusative +16549 accusative +accusative +genitive +16553 nominative +accusative +accusative +genitive +genitive +16559 genitive +accusative +accusative +16564 dative +nominative +nominative +16568 accusative +accusative +genitive +16572 accusative +accusative +genitive +16576 nominative +nominative +nominative +accusative +16581 dative +16589 accusative +accusative +genitive +16594 dative +16596 accusative +16598 accusative +genitive +16603 nominative +nominative +16610 dative +dative +dative +16614 nominative +nominative +dative +dative +16620 accusative +16623 genitive +16625 genitive +16627 accusative +16629 accusative +16631 dative +dative +16634 nominative +16638 accusative +16640 nominative +nominative +16645 nominative +nominative +genitive +genitive +16650 nominative +nominative +nominative +nominative +accusative +16657 nominative +nominative +accusative +accusative +16663 accusative +accusative +accusative +16667 nominative +nominative +16670 nominative +nominative +16674 nominative +nominative +16677 dative +16681 genitive +genitive +genitive +genitive +16686 nominative +16690 genitive +genitive +16693 accusative +accusative +16696 nominative +nominative +16699 nominative +nominative +nominative +16703 accusative +16705 genitive +genitive +16708 accusative +16713 genitive +genitive +genitive +16717 accusative +nominative +16721 nominative +16725 accusative +accusative +genitive +genitive +16731 genitive +genitive +16735 nominative +nominative +nominative +16739 dative +accusative +16742 accusative +nominative +genitive +16747 nominative +nominative +16751 nominative +nominative +16754 dative +16756 accusative +16758 genitive +genitive +genitive +genitive +16763 dative +16766 nominative +16768 nominative +nominative +nominative +nominative +genitive +genitive +16775 dative +nominative +nominative +nominative +16782 dative +16786 accusative +accusative +genitive +genitive +accusative +16792 genitive +genitive +genitive +16796 accusative +16798 genitive +genitive +genitive +genitive +16803 nominative +nominative +16806 accusative +accusative +genitive +nominative +16811 accusative +16813 accusative +genitive +16819 accusative +accusative +nominative +dative +16825 nominative +nominative +16828 nominative +genitive +16834 accusative +accusative +genitive +16839 accusative +16841 nominative +16843 nominative +16845 dative +vocative +nominative +16849 nominative +nominative +accusative +16853 nominative +nominative +16858 dative +dative +16862 dative +nominative +nominative +nominative +16867 nominative +16870 genitive +genitive +genitive +16874 nominative +16877 genitive +nominative +16881 accusative +16884 accusative +16886 accusative +accusative +16889 accusative +nominative +16893 dative +16895 nominative +16898 genitive +genitive +genitive +16905 genitive +16909 accusative +accusative +16913 accusative +nominative +nominative +nominative +16918 dative +dative +16922 nominative +16924 genitive +16928 nominative +nominative +genitive +accusative +accusative +16942 accusative +accusative +16946 nominative +16950 nominative +nominative +genitive +genitive +genitive +genitive +16958 accusative +16962 accusative +16964 nominative +16969 genitive +genitive +accusative +16973 nominative +nominative +nominative +16977 nominative +nominative +genitive +genitive +16982 genitive +genitive +16986 accusative +16988 nominative +accusative +16993 dative +dative +dative +16997 nominative +nominative +nominative +accusative +nominative +17004 nominative +17006 accusative +17008 accusative +dative +dative +17012 dative +nominative +17015 nominative +accusative +accusative +17019 nominative +17021 nominative +17023 accusative +nominative +17027 nominative +accusative +accusative +17031 accusative +accusative +17035 nominative +17038 nominative +nominative +nominative +accusative +accusative +17047 accusative +17049 accusative +accusative +17052 nominative +genitive +17056 accusative +nominative +17060 genitive +accusative +accusative +genitive +genitive +17066 accusative +dative +dative +17071 nominative +nominative +nominative +nominative +genitive +17077 genitive +17081 nominative +nominative +17084 genitive +genitive +genitive +genitive +17090 accusative +17092 accusative +accusative +accusative +genitive +genitive +accusative +17100 genitive +genitive +17104 accusative +17106 accusative +accusative +genitive +genitive +17112 dative +nominative +17115 nominative +nominative +17119 genitive +genitive +17123 accusative +nominative +nominative +nominative +nominative +17129 nominative +nominative +genitive +genitive +17134 nominative +nominative +17137 nominative +17141 dative +17143 accusative +17145 genitive +genitive +17148 genitive +accusative +17153 dative +nominative +nominative +17158 accusative +genitive +17164 dative +17167 accusative +accusative +17171 accusative +accusative +17176 accusative +17178 nominative +nominative +17181 dative +dative +accusative +accusative +accusative +17190 accusative +accusative +accusative +accusative +17195 genitive +genitive +17198 dative +nominative +nominative +17202 accusative +17204 dative +accusative +17207 accusative +accusative +accusative +accusative +17215 accusative +17217 accusative +17219 genitive +genitive +17222 genitive +genitive +17226 accusative +nominative +nominative +genitive +nominative +nominative +dative +17234 dative +dative +dative +17238 accusative +17242 accusative +17244 accusative +17246 nominative +nominative +17249 nominative +nominative +17252 accusative +accusative +17256 accusative +accusative +17259 accusative +accusative +17263 nominative +nominative +nominative +17267 dative +17269 accusative +17271 genitive +17274 dative +17276 nominative +17278 accusative +accusative +17281 dative +nominative +nominative +17285 accusative +17287 accusative +accusative +accusative +accusative +17292 nominative +17295 nominative +17298 accusative +accusative +17302 nominative +17305 nominative +17308 nominative +nominative +nominative +17312 accusative +17316 nominative +17318 nominative +accusative +17321 accusative +accusative +17324 genitive +genitive +nominative +nominative +17330 genitive +genitive +genitive +nominative +17336 nominative +nominative +nominative +nominative +17341 nominative +nominative +genitive +17345 accusative +17348 accusative +accusative +genitive +17353 dative +accusative +accusative +17357 accusative +accusative +nominative +17364 nominative +nominative +genitive +genitive +nominative +accusative +accusative +17372 accusative +accusative +17376 accusative +accusative +accusative +accusative +17381 nominative +accusative +accusative +accusative +17386 dative +17388 nominative +accusative +17391 genitive +17394 genitive +genitive +genitive +17398 accusative +17400 dative +dative +genitive +17404 nominative +17406 genitive +17408 dative +nominative +17411 vocative +genitive +genitive +17415 nominative +17417 accusative +17419 accusative +accusative +17424 accusative +accusative +genitive +17430 dative +17432 accusative +accusative +accusative +17437 accusative +accusative +accusative +genitive +17443 accusative +17445 accusative +17448 nominative +17450 accusative +accusative +dative +accusative +accusative +17458 accusative +accusative +genitive +17462 nominative +17464 accusative +accusative +accusative +nominative +17469 nominative +genitive +nominative +17473 dative +17475 accusative +17477 genitive +accusative +17480 nominative +17485 nominative +accusative +17488 accusative +accusative +genitive +nominative +accusative +17494 nominative +17496 accusative +17501 genitive +genitive +genitive +accusative +accusative +genitive +accusative +nominative +17510 nominative +nominative +nominative +genitive +genitive +17518 dative +17520 nominative +nominative +17523 genitive +17525 nominative +17527 genitive +17529 nominative +nominative +17532 accusative +nominative +accusative +accusative +genitive +17538 nominative +nominative +nominative +accusative +accusative +17545 dative +dative +nominative +17549 accusative +17552 nominative +genitive +genitive +17558 genitive +genitive +17561 nominative +nominative +nominative +17565 genitive +genitive +17568 genitive +17570 accusative +17572 accusative +17576 nominative +genitive +17582 genitive +genitive +17587 accusative +17590 accusative +accusative +17596 accusative +17600 genitive +nominative +17604 accusative +accusative +17607 nominative +nominative +nominative +nominative +17612 dative +17614 accusative +17617 genitive +genitive +nominative +17622 accusative +accusative +accusative +17626 genitive +genitive +17630 accusative +accusative +accusative +17634 nominative +nominative +dative +dative +nominative +vocative +vocative +17643 nominative +17645 vocative +genitive +vocative +genitive +17650 accusative +accusative +17654 nominative +genitive +17657 genitive +nominative +17661 accusative +17663 nominative +17666 nominative +17668 genitive +nominative +17671 nominative +accusative +17674 nominative +genitive +17677 nominative +dative +17680 accusative +17682 nominative +nominative +17689 nominative +nominative +accusative +17693 nominative +nominative +17696 nominative +dative +dative +17700 accusative +accusative +17704 nominative +nominative +genitive +genitive +17716 nominative +nominative +17720 nominative +nominative +17724 nominative +nominative +17728 nominative +nominative +genitive +genitive +genitive +17735 nominative +17737 genitive +genitive +17740 accusative +accusative +genitive +17745 accusative +accusative +accusative +17750 dative +17752 nominative +nominative +17755 nominative +17757 genitive +nominative +accusative +accusative +nominative +accusative +accusative +17765 accusative +accusative +17769 nominative +17771 genitive +nominative +17774 nominative +17778 nominative +nominative +17782 nominative +nominative +17785 dative +dative +17788 genitive +genitive +nominative +dative +17793 dative +17795 nominative +nominative +nominative +17799 nominative +nominative +genitive +genitive +17804 genitive +nominative +17807 nominative +nominative +genitive +genitive +genitive +17813 genitive +genitive +17816 nominative +nominative +17819 genitive +accusative +nominative +nominative +17824 nominative +17826 dative +dative +nominative +nominative +dative +dative +17833 accusative +accusative +genitive +genitive +17838 nominative +nominative +17843 nominative +accusative +accusative +nominative +nominative +17849 accusative +17851 dative +dative +17855 accusative +17857 dative +dative +genitive +dative +accusative +17864 dative +dative +17867 nominative +accusative +accusative +dative +dative +genitive +genitive +17877 nominative +nominative +nominative +17881 nominative +nominative +nominative +17885 nominative +17887 genitive +genitive +17890 dative +17892 nominative +17895 accusative +accusative +17898 nominative +nominative +17901 nominative +nominative +17904 accusative +nominative +vocative +17909 nominative +nominative +nominative +17914 nominative +17916 accusative +accusative +17922 accusative +accusative +17925 genitive +genitive +genitive +17930 nominative +nominative +nominative +17934 accusative +17937 dative +dative +17941 genitive +genitive +17945 nominative +nominative +nominative +nominative +genitive +genitive +17952 dative +nominative +nominative +17956 accusative +17962 nominative +nominative +17965 accusative +accusative +nominative +accusative +accusative +17971 genitive +genitive +17975 genitive +dative +dative +17979 accusative +genitive +17982 nominative +nominative +nominative +17986 nominative +nominative +nominative +17990 accusative +accusative +17994 nominative +nominative +17998 nominative +genitive +nominative +18002 genitive +18004 nominative +18006 accusative +accusative +18011 genitive +18014 nominative +nominative +genitive +18018 nominative +18020 nominative +nominative +genitive +nominative +18025 nominative +18028 genitive +genitive +genitive +18032 nominative +nominative +18037 nominative +18039 nominative +nominative +nominative +18043 dative +dative +18047 nominative +18051 accusative +accusative +accusative +18064 accusative +accusative +18069 accusative +nominative +18072 dative +dative +genitive +18078 genitive +genitive +18083 accusative +18085 accusative +accusative +18088 accusative +18092 dative +18094 nominative +accusative +18097 genitive +genitive +18100 genitive +18102 genitive +genitive +18106 dative +dative +genitive +18111 nominative +18113 dative +nominative +18117 nominative +nominative +18120 genitive +accusative +accusative +18125 dative +18128 dative +nominative +nominative +18135 dative +dative +genitive +18141 accusative +accusative +18144 accusative +18147 genitive +genitive +18150 nominative +genitive +genitive +nominative +18155 accusative +accusative +18158 dative +dative +accusative +accusative +accusative +18164 nominative +18166 genitive +genitive +18169 accusative +nominative +accusative +accusative +18174 dative +dative +nominative +18179 nominative +nominative +genitive +genitive +nominative +18185 accusative +genitive +genitive +18191 nominative +18193 genitive +genitive +nominative +18198 accusative +accusative +18202 nominative +nominative +accusative +18210 nominative +nominative +nominative +18214 dative +18216 genitive +18218 genitive +18220 nominative +18222 nominative +18225 accusative +accusative +18228 accusative +accusative +18232 dative +nominative +nominative +18236 nominative +accusative +18240 nominative +18243 nominative +nominative +nominative +18247 dative +nominative +18250 dative +nominative +nominative +18254 dative +18257 genitive +genitive +18260 nominative +18262 accusative +accusative +accusative +nominative +accusative +18268 accusative +accusative +genitive +genitive +18273 genitive +genitive +18276 genitive +genitive +genitive +nominative +accusative +18282 accusative +accusative +18285 dative +18288 nominative +18290 genitive +18292 accusative +accusative +accusative +18296 genitive +genitive +genitive +genitive +nominative +genitive +genitive +genitive +genitive +genitive +genitive +18310 dative +dative +dative +dative +18316 accusative +accusative +genitive +18320 genitive +genitive +nominative +18324 accusative +accusative +genitive +nominative +genitive +18330 dative +dative +18333 accusative +accusative +genitive +accusative +18338 accusative +accusative +genitive +18342 nominative +nominative +nominative +18346 dative +dative +nominative +accusative +genitive +18352 accusative +genitive +18357 accusative +nominative +nominative +nominative +nominative +18363 nominative +nominative +nominative +18369 genitive +18371 dative +dative +dative +nominative +accusative +accusative +genitive +18380 nominative +nominative +nominative +accusative +genitive +18386 accusative +accusative +18389 accusative +accusative +genitive +18393 nominative +accusative +18396 accusative +accusative +18400 nominative +18402 nominative +nominative +genitive +18406 genitive +genitive +18410 nominative +nominative +18413 accusative +accusative +genitive +genitive +genitive +nominative +18420 accusative +dative +18423 nominative +18425 accusative +dative +dative +18431 dative +dative +dative +18435 nominative +18437 genitive +genitive +genitive +18443 accusative +accusative +18446 genitive +18448 nominative +nominative +18451 genitive +genitive +18454 accusative +accusative +accusative +18458 accusative +accusative +18461 accusative +accusative +18464 accusative +18466 nominative +18469 genitive +genitive +nominative +18473 nominative +nominative +genitive +nominative +nominative +18479 dative +18482 nominative +nominative +nominative +accusative +18488 accusative +accusative +18493 dative +dative +18496 accusative +nominative +18499 genitive +genitive +18504 genitive +genitive +18507 nominative +nominative +18510 dative +18513 accusative +18515 accusative +accusative +18518 nominative +nominative +18521 accusative +accusative +nominative +accusative +accusative +genitive +genitive +18529 nominative +18532 nominative +nominative +18536 nominative +nominative +genitive +genitive +18544 dative +dative +18547 nominative +18549 accusative +accusative +genitive +genitive +18554 accusative +18556 accusative +accusative +accusative +genitive +accusative +18562 dative +dative +18566 nominative +18569 dative +nominative +nominative +18574 genitive +18577 accusative +18579 accusative +genitive +18582 nominative +nominative +accusative +accusative +18587 dative +18589 nominative +accusative +18592 accusative +accusative +genitive +genitive +18597 accusative +accusative +accusative +genitive +18602 accusative +18604 dative +dative +accusative +accusative +accusative +18610 nominative +18612 accusative +18614 nominative +accusative +accusative +genitive +accusative +18620 dative +dative +18623 genitive +genitive +18627 genitive +18631 accusative +18633 nominative +dative +dative +nominative +18638 accusative +accusative +18644 dative +dative +genitive +18649 nominative +accusative +18652 accusative +nominative +18657 nominative +nominative +18660 nominative +18663 dative +dative +genitive +nominative +18668 dative +dative +18672 nominative +nominative +dative +18676 dative +vocative +vocative +18681 accusative +18683 accusative +nominative +18686 nominative +nominative +genitive +genitive +18692 dative +nominative +nominative +18699 genitive +18701 nominative +nominative +nominative +nominative +nominative +accusative +18708 nominative +dative +dative +18713 genitive +18716 nominative +18719 accusative +accusative +nominative +18723 nominative +nominative +nominative +18727 accusative +18729 dative +dative +dative +dative +18736 dative +18739 nominative +nominative +genitive +nominative +18745 accusative +accusative +accusative +genitive +genitive +18751 nominative +18753 genitive +genitive +nominative +18758 accusative +accusative +genitive +18762 genitive +18764 genitive +18766 genitive +18768 nominative +nominative +genitive +18772 nominative +18774 nominative +18776 dative +18778 genitive +18780 nominative +18782 accusative +nominative +genitive +genitive +18788 accusative +nominative +nominative +18793 dative +18795 genitive +genitive +18799 nominative +nominative +18803 accusative +accusative +accusative +18807 accusative +18809 accusative +accusative +18813 nominative +nominative +nominative +nominative +18818 accusative +accusative +18822 accusative +18824 accusative +dative +dative +18828 accusative +accusative +18835 accusative +accusative +18839 accusative +18842 accusative +18844 nominative +18849 accusative +accusative +18855 accusative +nominative +18858 nominative +18860 genitive +18863 accusative +18866 dative +18868 nominative +18870 accusative +18873 dative +18877 accusative +accusative +accusative +18886 accusative +18890 nominative +18892 accusative +accusative +genitive +18896 accusative +accusative +accusative +18900 accusative +accusative +nominative +18906 accusative +nominative +nominative +accusative +18911 nominative +nominative +dative +18918 accusative +18921 nominative +nominative +accusative +accusative +genitive +18929 dative +18933 nominative +18936 genitive +nominative +nominative +18942 nominative +dative +nominative +18946 accusative +18949 dative +18951 dative +accusative +18956 accusative +18958 dative +dative +18963 genitive +genitive +genitive +accusative +18968 nominative +18970 accusative +dative +18973 nominative +nominative +18977 accusative +18980 accusative +accusative +18984 accusative +18988 accusative +18993 dative +dative +18999 accusative +19002 nominative +19005 accusative +19007 genitive +19011 dative +19015 nominative +19020 accusative +19022 accusative +accusative +19026 dative +accusative +accusative +19031 nominative +19033 accusative +accusative +accusative +19037 genitive +19040 nominative +19042 dative +19044 accusative +accusative +19047 accusative +accusative +19052 nominative +19054 accusative +accusative +19057 nominative +nominative +19061 nominative +nominative +nominative +accusative +accusative +genitive +19068 dative +dative +vocative +19072 genitive +nominative +nominative +19077 nominative +genitive +genitive +19081 nominative +19083 nominative +19085 dative +dative +genitive +accusative +nominative +19093 nominative +19096 accusative +19099 nominative +nominative +nominative +19103 nominative +nominative +nominative +nominative +dative +dative +genitive +19114 dative +19116 dative +accusative +accusative +19121 dative +dative +genitive +nominative +19126 nominative +19128 dative +dative +19131 genitive +nominative +nominative +19139 accusative +accusative +genitive +19148 accusative +19150 nominative +nominative +genitive +genitive +19155 accusative +19157 genitive +genitive +19160 dative +dative +dative +19166 accusative +accusative +genitive +19172 accusative +accusative +genitive +19178 nominative +nominative +accusative +accusative +19184 genitive +19187 accusative +19190 accusative +accusative +accusative +19201 accusative +accusative +19204 nominative +nominative +nominative +19209 accusative +19212 accusative +19214 nominative +19216 accusative +accusative +genitive +genitive +accusative +19222 accusative +accusative +19226 dative +19228 dative +19230 nominative +19232 dative +19236 accusative +19238 dative +dative +genitive +19242 nominative +nominative +19245 nominative +19247 dative +dative +19250 dative +dative +genitive +19255 nominative +19258 dative +19260 nominative +nominative +genitive +genitive +nominative +19268 genitive +genitive +19271 genitive +19273 dative +dative +genitive +19278 genitive +genitive +19281 genitive +19284 nominative +nominative +nominative +19288 dative +19290 accusative +genitive +19293 nominative +nominative +19296 nominative +19298 nominative +19302 accusative +19304 accusative +19307 nominative +nominative +nominative +genitive +19312 nominative +nominative +19318 dative +19320 accusative +nominative +nominative +genitive +19325 nominative +nominative +genitive +genitive +19331 nominative +nominative +nominative +19338 dative +nominative +nominative +19343 nominative +nominative +genitive +genitive +19348 dative +nominative +nominative +19352 genitive +19355 accusative +accusative +19358 accusative +accusative +19361 genitive +19367 nominative +19371 genitive +nominative +nominative +19378 dative +dative +dative +nominative +accusative +genitive +genitive +19387 accusative +accusative +19393 accusative +accusative +nominative +nominative +19398 genitive +genitive +genitive +19402 nominative +nominative +19406 nominative +19408 accusative +accusative +19411 accusative +accusative +19417 nominative +nominative +accusative +accusative +19422 nominative +nominative +19426 nominative +nominative +19429 accusative +accusative +19432 accusative +accusative +19436 accusative +19438 dative +dative +19442 genitive +genitive +19445 nominative +nominative +genitive +19449 accusative +19451 nominative +accusative +accusative +19455 nominative +nominative +19458 dative +19460 accusative +19462 dative +dative +accusative +19469 dative +19472 accusative +19474 nominative +19476 accusative +19480 nominative +19482 nominative +19484 genitive +19488 accusative +accusative +genitive +genitive +19493 genitive +genitive +19496 accusative +accusative +genitive +genitive +19501 accusative +19507 accusative +accusative +19512 dative +19514 dative +dative +19518 dative +nominative +nominative +19522 accusative +accusative +19527 nominative +nominative +19530 accusative +accusative +19534 nominative +nominative +genitive +genitive +nominative +19540 genitive +genitive +19546 accusative +19550 nominative +accusative +nominative +accusative +accusative +19557 accusative +19559 dative +dative +19562 accusative +19565 genitive +19568 dative +dative +dative +accusative +accusative +accusative +dative +19577 accusative +accusative +19581 dative +19583 dative +dative +accusative +19589 accusative +19594 nominative +19597 nominative +accusative +19600 genitive +nominative +19603 dative +dative +genitive +genitive +genitive +19609 dative +dative +19612 accusative +accusative +19618 nominative +nominative +genitive +19622 nominative +nominative +nominative +nominative +19627 genitive +genitive +accusative +19632 genitive +19634 accusative +19637 nominative +nominative +19640 genitive +genitive +genitive +19645 accusative +accusative +19648 nominative +nominative +19651 genitive +genitive +19656 genitive +genitive +19660 genitive +19663 genitive +genitive +19667 genitive +genitive +19671 accusative +19673 accusative +nominative +nominative +nominative +accusative +19681 accusative +19684 dative +dative +genitive +19688 nominative +19690 dative +19692 accusative +accusative +19697 accusative +19699 accusative +19703 dative +19705 genitive +19707 nominative +19709 accusative +19711 nominative +nominative +nominative +nominative +19716 accusative +19719 dative +19722 nominative +19724 nominative +19726 nominative +nominative +genitive +genitive +19731 accusative +19733 dative +19736 accusative +accusative +19742 accusative +accusative +19746 accusative +19748 nominative +19752 accusative +19759 genitive +19763 accusative +19767 accusative +19769 accusative +accusative +19773 accusative +19777 accusative +dative +dative +accusative +19782 accusative +accusative +genitive +genitive +19787 accusative +accusative +accusative +genitive +genitive +19794 dative +accusative +accusative +nominative +19799 nominative +genitive +19802 accusative +19804 accusative +19806 accusative +19808 accusative +19810 accusative +19812 accusative +accusative +genitive +genitive +19817 accusative +19819 accusative +accusative +accusative +19823 accusative +accusative +nominative +19828 accusative +19832 accusative +19836 nominative +nominative +19841 accusative +19843 accusative +19846 nominative +nominative +19849 genitive +19852 accusative +19858 nominative +nominative +nominative +19862 genitive +nominative +19866 accusative +19871 dative +dative +genitive +genitive +19876 accusative +accusative +19879 nominative +accusative +19882 dative +19884 dative +19887 nominative +accusative +19892 nominative +19894 accusative +19899 nominative +nominative +nominative +19904 nominative +19906 accusative +19910 nominative +nominative +nominative +19916 nominative +nominative +19920 accusative +19927 accusative +19932 nominative +19934 accusative +accusative +genitive +genitive +nominative +accusative +accusative +genitive +19945 accusative +accusative +accusative +19951 accusative +accusative +genitive +19957 dative +19960 dative +dative +genitive +genitive +nominative +nominative +nominative +19968 nominative +nominative +19971 accusative +19975 nominative +19978 accusative +accusative +accusative +accusative +19984 accusative +19986 accusative +accusative +19989 nominative +19991 genitive +genitive +19995 accusative +accusative +20000 nominative +nominative +genitive +20004 nominative +nominative +genitive +20009 nominative +20012 accusative +nominative +accusative +20018 accusative +nominative +20022 dative +20024 nominative +nominative +genitive +20028 nominative +nominative +genitive +20032 nominative +nominative +genitive +20037 accusative +20039 nominative +dative +20042 nominative +20044 nominative +nominative +genitive +20048 nominative +nominative +20051 nominative +accusative +20054 accusative +dative +accusative +20059 nominative +nominative +genitive +20063 nominative +nominative +genitive +20067 nominative +20069 accusative +accusative +genitive +genitive +nominative +nominative +genitive +20077 nominative +20079 nominative +20086 accusative +accusative +20091 accusative +nominative +nominative +20095 accusative +20097 accusative +accusative +20101 dative +dative +20104 nominative +nominative +nominative +20108 accusative +accusative +20111 genitive +genitive +20116 accusative +20118 dative +accusative +20122 dative +20124 dative +dative +genitive +20130 nominative +nominative +20136 dative +20139 nominative +20142 accusative +accusative +20146 nominative +nominative +20150 accusative +20152 nominative +20155 accusative +accusative +20160 accusative +accusative +20163 nominative +20166 accusative +20169 accusative +genitive +20174 nominative +nominative +20179 accusative +20182 accusative +20185 nominative +20188 accusative +accusative +20192 nominative +nominative +20196 accusative +20198 accusative +20202 nominative +20205 accusative +accusative +accusative +accusative +20211 accusative +nominative +20214 nominative +20227 nominative +20229 accusative +20236 accusative +20238 accusative +nominative +20241 accusative +20243 dative +20245 accusative +accusative +20249 dative +dative +20252 nominative +nominative +genitive +genitive +genitive +genitive +20259 dative +dative +20263 dative +nominative +nominative +20268 nominative +20274 nominative +20284 dative +20287 dative +20290 accusative +accusative +accusative +20295 accusative +accusative +accusative +20299 nominative +nominative +accusative +accusative +20305 nominative +20307 nominative +20309 accusative +accusative +20313 nominative +nominative +20318 nominative +20320 nominative +nominative +20324 accusative +accusative +accusative +accusative +20329 accusative +20333 nominative +20335 accusative +accusative +nominative +nominative +nominative +20342 accusative +accusative +nominative +20346 genitive +20348 accusative +20352 accusative +20354 dative +20356 nominative +20359 genitive +genitive +20362 genitive +20364 accusative +accusative +nominative +20369 nominative +20371 nominative +20373 accusative +accusative +nominative +nominative +20378 nominative +accusative +accusative +nominative +20383 nominative +nominative +genitive +genitive +20388 nominative +nominative +genitive +genitive +20393 nominative +20395 accusative +accusative +nominative +nominative +20400 accusative +accusative +20403 nominative +20407 nominative +20409 accusative +accusative +accusative +accusative +nominative +nominative +nominative +20417 accusative +accusative +20433 dative +20437 nominative +nominative +20441 accusative +accusative +20446 accusative +accusative +20451 accusative +accusative +20457 nominative +nominative +20465 nominative +20470 accusative +20472 nominative +20474 accusative +20479 dative +20481 accusative +20484 dative +dative +20488 dative +20491 dative +20493 nominative +20496 dative +20498 nominative +20502 accusative +20506 genitive +20511 nominative +nominative +genitive +genitive +20516 nominative +20518 accusative +accusative +20521 genitive +genitive +20527 accusative +20529 accusative +20531 nominative +nominative +20539 nominative +nominative +nominative +nominative +20544 accusative +accusative +20547 accusative +20549 nominative +nominative +20552 dative +dative +20557 nominative +nominative +nominative +20561 accusative +accusative +20565 nominative +nominative +20571 accusative +accusative +genitive +genitive +20577 dative +dative +accusative +20582 dative +genitive +nominative +20588 genitive +genitive +nominative +nominative +genitive +genitive +genitive +genitive +20597 genitive +genitive +20605 nominative +genitive +genitive +genitive +20611 accusative +accusative +20616 accusative +accusative +genitive +20620 accusative +accusative +genitive +genitive +20625 dative +dative +dative +20629 dative +accusative +accusative +20637 genitive +20640 dative +20643 accusative +dative +dative +dative +20648 accusative +20651 dative +20653 dative +dative +dative +genitive +genitive +20660 accusative +20663 nominative +accusative +accusative +20667 accusative +20671 dative +dative +20674 nominative +nominative +20678 genitive +20681 nominative +nominative +genitive +20685 nominative +nominative +20689 accusative +accusative +20694 accusative +accusative +20697 nominative +20700 dative +dative +20703 accusative +accusative +nominative +20708 accusative +20711 dative +vocative +20715 dative +20719 nominative +20721 dative +dative +20725 dative +dative +20731 nominative +nominative +20735 nominative +nominative +20739 dative +nominative +nominative +20747 accusative +20750 accusative +accusative +20755 accusative +20757 nominative +nominative +20762 nominative +nominative +20765 nominative +nominative +20768 dative +20772 accusative +20774 genitive +genitive +20777 accusative +accusative +genitive +genitive +20782 genitive +genitive +20785 genitive +genitive +nominative +20789 dative +20791 genitive +genitive +nominative +20795 dative +dative +nominative +accusative +accusative +20802 dative +dative +20806 dative +20808 nominative +20810 accusative +20813 accusative +accusative +20816 dative +20818 dative +20823 genitive +accusative +accusative +20827 accusative +accusative +20831 nominative +20833 accusative +20837 genitive +genitive +20840 genitive +20842 dative +dative +20846 dative +dative +20849 nominative +20851 nominative +accusative +dative +20855 nominative +accusative +accusative +20863 accusative +20865 nominative +dative +dative +20869 nominative +dative +20872 dative +vocative +vocative +genitive +genitive +genitive +genitive +20880 accusative +accusative +accusative +20884 accusative +20888 dative +nominative +nominative +nominative +nominative +20895 genitive +genitive +20899 accusative +nominative +nominative +dative +20905 dative +nominative +nominative +dative +20910 nominative +20914 accusative +accusative +20918 accusative +20921 genitive +genitive +20927 dative +dative +nominative +genitive +nominative +nominative +20935 accusative +nominative +20938 accusative +20940 accusative +accusative +20944 accusative +20948 dative +20950 nominative +nominative +nominative +nominative +nominative +20957 accusative +accusative +20961 nominative +nominative +20964 genitive +genitive +20967 accusative +accusative +20970 nominative +20974 dative +dative +20977 nominative +nominative +accusative +20984 accusative +accusative +20988 accusative +accusative +20993 nominative +20995 nominative +nominative +21000 accusative +accusative +21004 accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +21013 accusative +21018 dative +nominative +nominative +21023 dative +dative +21027 genitive +genitive +21032 accusative +21035 genitive +genitive +genitive +21039 genitive +genitive +21042 accusative +accusative +21045 accusative +nominative +nominative +21050 genitive +21055 accusative +21058 dative +21061 accusative +accusative +genitive +21065 accusative +accusative +21069 dative +accusative +nominative +nominative +dative +21077 accusative +21084 dative +dative +accusative +21088 dative +nominative +nominative +21092 nominative +21095 genitive +genitive +genitive +21099 dative +dative +21103 accusative +21106 nominative +nominative +21109 accusative +21113 accusative +accusative +21117 nominative +genitive +genitive +dative +nominative +21123 nominative +accusative +21127 accusative +accusative +genitive +21132 accusative +accusative +nominative +21136 nominative +nominative +genitive +21142 nominative +21144 accusative +accusative +dative +21154 genitive +21157 dative +nominative +nominative +21162 accusative +21164 nominative +nominative +21167 dative +genitive +21170 accusative +21172 accusative +nominative +21175 genitive +genitive +21178 nominative +accusative +21181 genitive +accusative +21184 accusative +nominative +21189 accusative +accusative +nominative +nominative +accusative +21195 genitive +genitive +nominative +21199 dative +dative +21203 genitive +genitive +genitive +21212 genitive +genitive +genitive +21217 nominative +21219 nominative +nominative +genitive +genitive +genitive +21226 dative +dative +21231 genitive +genitive +21234 nominative +nominative +nominative +nominative +21239 dative +accusative +21242 genitive +accusative +accusative +nominative +21247 dative +dative +21250 nominative +21252 genitive +genitive +genitive +21257 dative +nominative +nominative +genitive +21262 accusative +accusative +accusative +accusative +21268 nominative +genitive +21274 accusative +accusative +accusative +21278 nominative +nominative +nominative +21282 nominative +nominative +nominative +21286 dative +21290 dative +21293 dative +accusative +accusative +accusative +21298 nominative +21300 dative +vocative +nominative +nominative +genitive +21306 accusative +21309 accusative +21312 nominative +21314 genitive +genitive +genitive +21318 genitive +genitive +21322 genitive +genitive +nominative +21326 nominative +nominative +genitive +21330 accusative +21333 accusative +accusative +21336 nominative +nominative +nominative +accusative +accusative +accusative +21343 dative +dative +21347 accusative +21352 accusative +21354 genitive +21358 accusative +accusative +21361 accusative +21363 accusative +accusative +accusative +genitive +21370 accusative +accusative +genitive +genitive +21376 accusative +21378 accusative +21380 accusative +accusative +21383 nominative +21385 dative +accusative +21390 nominative +nominative +21398 genitive +21400 nominative +nominative +accusative +21404 accusative +accusative +genitive +genitive +21409 accusative +accusative +21412 accusative +21414 genitive +21419 nominative +nominative +21422 nominative +genitive +genitive +genitive +genitive +21428 dative +vocative +21431 nominative +21433 nominative +nominative +nominative +dative +21440 nominative +21442 nominative +nominative +21448 genitive +21452 nominative +dative +dative +21457 dative +accusative +21460 nominative +21462 accusative +21466 dative +21474 accusative +accusative +genitive +21479 dative +nominative +nominative +genitive +21484 genitive +genitive +21489 dative +dative +21492 nominative +nominative +nominative +21496 nominative +21498 dative +nominative +21501 nominative +nominative +nominative +nominative +nominative +dative +21508 nominative +nominative +nominative +21512 genitive +genitive +genitive +nominative +21517 nominative +21519 nominative +nominative +nominative +nominative +genitive +genitive +21526 nominative +genitive +21529 genitive +21531 genitive +21533 genitive +21537 nominative +nominative +genitive +21542 accusative +21546 dative +21549 dative +nominative +nominative +21555 nominative +nominative +21560 dative +dative +genitive +21565 dative +dative +genitive +21570 dative +dative +genitive +21578 accusative +accusative +21582 dative +dative +nominative +accusative +accusative +21591 accusative +accusative +genitive +21596 accusative +accusative +dative +nominative +21602 accusative +21606 accusative +21612 dative +accusative +genitive +genitive +genitive +genitive +21620 dative +21622 accusative +21625 accusative +21628 accusative +accusative +21631 accusative +21633 accusative +21636 accusative +accusative +accusative +21640 accusative +accusative +21646 accusative +21649 dative +21654 accusative +21663 nominative +nominative +21667 accusative +21670 genitive +nominative +21674 accusative +accusative +accusative +21678 genitive +genitive +genitive +21682 accusative +dative +21685 nominative +21690 accusative +accusative +21695 dative +accusative +accusative +21702 nominative +nominative +nominative +21706 nominative +21708 nominative +nominative +genitive +21714 nominative +nominative +nominative +21719 genitive +21722 accusative +21724 nominative +nominative +21727 dative +21729 nominative +21732 nominative +21735 nominative +21738 nominative +21740 nominative +genitive +genitive +21744 nominative +nominative +nominative +21748 accusative +nominative +21751 accusative +nominative +21755 nominative +nominative +nominative +nominative +21760 accusative +accusative +21764 accusative +21766 dative +21768 accusative +accusative +accusative +genitive +genitive +genitive +genitive +21776 accusative +21780 nominative +nominative +dative +dative +21787 dative +21789 accusative +accusative +genitive +genitive +genitive +21795 nominative +nominative +21798 dative +21801 accusative +21807 nominative +nominative +21810 accusative +accusative +nominative +accusative +accusative +accusative +21817 accusative +21820 accusative +21822 nominative +genitive +accusative +21828 genitive +21831 genitive +genitive +genitive +21835 nominative +dative +dative +genitive +accusative +21841 dative +dative +genitive +21845 dative +dative +21848 dative +dative +genitive +genitive +21853 genitive +genitive +genitive +genitive +genitive +genitive +21860 genitive +21862 dative +dative +21865 dative +dative +21868 nominative +nominative +21871 dative +dative +21874 accusative +21876 accusative +21880 dative +21883 dative +21886 accusative +21889 dative +21891 genitive +genitive +genitive +genitive +21896 nominative +21898 dative +dative +genitive +accusative +21904 nominative +21906 accusative +accusative +genitive +genitive +genitive +21912 nominative +nominative +21915 genitive +21917 accusative +accusative +21920 nominative +21925 dative +21927 dative +accusative +accusative +genitive +genitive +genitive +21934 nominative +nominative +nominative +nominative +21939 accusative +accusative +21942 accusative +accusative +21947 accusative +21949 nominative +nominative +accusative +nominative +nominative +21956 accusative +accusative +genitive +21960 nominative +21962 accusative +21964 dative +dative +21968 accusative +accusative +genitive +21972 dative +21975 accusative +dative +dative +21979 nominative +nominative +21982 accusative +dative +dative +genitive +21987 nominative +nominative +nominative +genitive +21994 accusative +accusative +genitive +21999 accusative +22001 dative +22004 nominative +nominative +22007 accusative +accusative +22011 dative +accusative +accusative +22016 accusative +22020 dative +22022 nominative +nominative +22025 accusative +22027 accusative +accusative +22031 accusative +22034 nominative +nominative +22037 nominative +nominative +nominative +22047 dative +dative +22050 accusative +accusative +22053 accusative +22056 accusative +accusative +22060 nominative +22064 genitive +genitive +genitive +22071 accusative +22073 nominative +22075 accusative +accusative +22080 accusative +22084 nominative +22086 nominative +accusative +22091 accusative +accusative +22095 genitive +genitive +genitive +nominative +dative +nominative +nominative +genitive +22105 nominative +22107 nominative +nominative +22111 nominative +nominative +22114 accusative +22116 nominative +22118 accusative +dative +accusative +22122 accusative +22124 dative +accusative +22128 nominative +nominative +22131 dative +22133 dative +nominative +22138 dative +nominative +22141 genitive +genitive +accusative +22146 dative +22149 nominative +22151 dative +accusative +accusative +22158 nominative +22163 accusative +22166 dative +22168 accusative +accusative +accusative +22172 dative +dative +dative +22177 nominative +nominative +22185 nominative +accusative +22188 accusative +22190 accusative +22192 accusative +nominative +22195 accusative +accusative +22200 accusative +accusative +22204 dative +dative +22208 dative +22210 accusative +22212 accusative +22214 dative +22217 nominative +22222 accusative +22224 genitive +accusative +22228 genitive +genitive +22232 nominative +nominative +accusative +accusative +nominative +nominative +22239 nominative +22241 accusative +accusative +genitive +22246 accusative +accusative +22251 accusative +22254 accusative +22256 nominative +22258 accusative +accusative +22261 nominative +dative +22265 accusative +accusative +22269 genitive +genitive +22272 nominative +nominative +22275 dative +genitive +genitive +22279 nominative +nominative +22282 genitive +genitive +22285 nominative +accusative +accusative +22289 dative +22293 nominative +nominative +nominative +dative +22298 accusative +accusative +genitive +genitive +22304 accusative +nominative +22307 genitive +genitive +22312 accusative +22314 nominative +nominative +accusative +22318 genitive +genitive +accusative +22323 nominative +22328 nominative +accusative +22334 nominative +nominative +22338 genitive +22341 dative +22343 nominative +22350 accusative +22352 accusative +accusative +22356 nominative +nominative +22361 genitive +22363 dative +22369 dative +dative +22373 nominative +genitive +nominative +nominative +22378 nominative +22380 accusative +accusative +22384 accusative +22388 genitive +genitive +22391 genitive +genitive +nominative +nominative +accusative +22397 accusative +accusative +accusative +accusative +22404 dative +dative +accusative +22408 accusative +22419 accusative +22422 accusative +22425 accusative +22427 dative +dative +22430 accusative +accusative +22434 accusative +22437 genitive +genitive +genitive +genitive +genitive +22445 nominative +22447 genitive +22452 accusative +nominative +nominative +22456 nominative +genitive +genitive +nominative +22461 genitive +22463 nominative +accusative +genitive +genitive +genitive +22469 dative +dative +nominative +22473 dative +22475 accusative +accusative +22478 nominative +nominative +22481 nominative +nominative +nominative +22486 dative +22488 accusative +accusative +22492 nominative +accusative +accusative +genitive +genitive +22499 genitive +22506 nominative +nominative +22509 accusative +22512 accusative +genitive +22515 genitive +22517 genitive +22520 accusative +nominative +nominative +22524 nominative +nominative +22527 accusative +22530 nominative +nominative +genitive +22534 accusative +accusative +genitive +genitive +22539 dative +dative +22542 accusative +accusative +22545 nominative +22547 dative +22550 nominative +22552 genitive +genitive +genitive +22558 nominative +nominative +nominative +dative +dative +accusative +22566 nominative +nominative +genitive +22572 genitive +22576 accusative +nominative +accusative +accusative +genitive +nominative +accusative +accusative +genitive +genitive +22587 accusative +accusative +genitive +genitive +22593 dative +22596 accusative +accusative +genitive +genitive +22601 accusative +accusative +genitive +22606 nominative +22609 accusative +accusative +genitive +22613 accusative +accusative +genitive +22617 nominative +nominative +accusative +22621 accusative +dative +22625 nominative +22629 nominative +dative +dative +22633 dative +dative +nominative +nominative +22638 nominative +22640 accusative +22642 genitive +22646 accusative +accusative +22649 dative +dative +22652 dative +dative +nominative +accusative +accusative +genitive +genitive +dative +dative +genitive +dative +22665 accusative +accusative +accusative +22670 nominative +22672 accusative +accusative +22675 dative +22677 genitive +nominative +22681 nominative +22684 genitive +genitive +nominative +22688 accusative +nominative +22692 accusative +22694 nominative +22696 genitive +genitive +nominative +22700 nominative +nominative +accusative +accusative +22708 accusative +22710 genitive +genitive +22713 accusative +nominative +nominative +genitive +accusative +accusative +22721 dative +22724 nominative +nominative +22730 nominative +nominative +22733 nominative +22735 accusative +accusative +22739 accusative +22745 genitive +accusative +accusative +22750 accusative +accusative +22754 accusative +accusative +22757 nominative +accusative +accusative +accusative +22764 nominative +22766 genitive +genitive +nominative +nominative +22771 accusative +accusative +22776 genitive +genitive +genitive +genitive +nominative +nominative +nominative +nominative +22785 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +22806 accusative +accusative +22810 nominative +22813 accusative +accusative +genitive +22817 nominative +22819 accusative +accusative +22828 nominative +nominative +22831 genitive +nominative +genitive +nominative +nominative +genitive +22838 accusative +accusative +nominative +22843 accusative +accusative +genitive +22847 nominative +nominative +22850 nominative +nominative +dative +dative +22856 accusative +22858 accusative +accusative +22862 genitive +genitive +genitive +22867 dative +22869 accusative +22871 accusative +accusative +22876 nominative +22878 accusative +accusative +genitive +genitive +22883 dative +dative +22887 nominative +22891 dative +22893 vocative +22895 nominative +nominative +22898 genitive +genitive +22902 genitive +genitive +genitive +genitive +22908 dative +22910 accusative +accusative +accusative +22916 genitive +genitive +genitive +nominative +nominative +22922 nominative +22924 accusative +accusative +genitive +22928 accusative +accusative +accusative +22932 accusative +accusative +22935 accusative +accusative +accusative +22940 nominative +22942 genitive +genitive +genitive +22947 genitive +22949 accusative +accusative +genitive +genitive +22954 accusative +genitive +genitive +genitive +22960 dative +accusative +22963 accusative +22966 accusative +22969 dative +accusative +accusative +22973 nominative +accusative +22976 genitive +genitive +22979 accusative +22981 accusative +accusative +genitive +22985 accusative +accusative +genitive +22989 nominative +22991 genitive +genitive +genitive +22995 nominative +22997 accusative +accusative +23002 dative +23004 nominative +23009 genitive +nominative +nominative +23015 nominative +nominative +genitive +genitive +genitive +23025 dative +23027 dative +23030 accusative +dative +23033 nominative +23035 accusative +23040 nominative +23042 accusative +23046 accusative +accusative +23050 accusative +23053 dative +dative +dative +23057 genitive +genitive +genitive +23062 genitive +accusative +23065 nominative +accusative +accusative +23069 dative +23072 accusative +accusative +23076 nominative +nominative +23079 dative +23083 accusative +23088 accusative +accusative +23091 accusative +genitive +23095 dative +dative +23098 nominative +genitive +23105 dative +nominative +nominative +genitive +23112 nominative +accusative +23116 genitive +23118 genitive +23121 accusative +accusative +accusative +23126 nominative +23131 dative +dative +23135 genitive +genitive +23138 nominative +accusative +23141 accusative +nominative +23146 dative +dative +genitive +23153 dative +dative +23157 accusative +accusative +23160 nominative +accusative +23164 accusative +23172 accusative +genitive +23175 accusative +23179 nominative +23182 accusative +23184 nominative +nominative +23187 accusative +accusative +23190 genitive +genitive +genitive +23195 accusative +accusative +genitive +23200 nominative +nominative +23205 dative +nominative +23208 genitive +accusative +23211 genitive +genitive +nominative +accusative +23216 nominative +dative +dative +genitive +23221 accusative +nominative +nominative +nominative +23226 accusative +23229 dative +23232 dative +dative +dative +accusative +23237 nominative +accusative +23240 nominative +23243 accusative +23248 accusative +23252 accusative +accusative +23257 genitive +23259 dative +dative +23263 dative +nominative +23268 genitive +genitive +genitive +genitive +23273 genitive +genitive +genitive +23279 accusative +23281 accusative +23285 nominative +23287 dative +accusative +23291 accusative +23298 accusative +23300 accusative +accusative +genitive +accusative +nominative +23308 accusative +nominative +23316 accusative +23318 accusative +23321 accusative +accusative +accusative +accusative +genitive +accusative +23329 dative +23332 accusative +23335 accusative +accusative +genitive +genitive +accusative +genitive +23347 dative +23353 accusative +23356 dative +accusative +23360 accusative +23362 genitive +23365 nominative +genitive +genitive +genitive +genitive +23371 accusative +23373 genitive +genitive +23376 nominative +23378 accusative +accusative +genitive +nominative +accusative +accusative +dative +23386 accusative +23388 accusative +23391 nominative +23394 accusative +accusative +23398 accusative +accusative +23404 accusative +accusative +23407 accusative +accusative +genitive +23417 accusative +23420 accusative +23422 accusative +genitive +nominative +23427 accusative +accusative +23432 nominative +nominative +23435 nominative +nominative +genitive +23439 accusative +accusative +genitive +genitive +genitive +23446 dative +dative +23449 accusative +accusative +genitive +nominative +dative +accusative +accusative +23458 nominative +nominative +23461 nominative +23463 dative +nominative +23466 accusative +accusative +accusative +23470 nominative +accusative +23473 nominative +23475 nominative +genitive +genitive +23479 nominative +23481 accusative +23483 nominative +accusative +accusative +23488 nominative +nominative +nominative +23492 dative +nominative +23495 nominative +nominative +23499 dative +23501 dative +23504 genitive +23508 accusative +23511 accusative +accusative +genitive +genitive +accusative +23520 genitive +genitive +23523 genitive +genitive +23526 genitive +genitive +23532 accusative +accusative +23536 dative +accusative +accusative +23541 nominative +nominative +nominative +accusative +23547 dative +23549 nominative +nominative +23552 nominative +accusative +accusative +genitive +23557 dative +23562 genitive +vocative +23567 accusative +genitive +genitive +23571 accusative +genitive +genitive +23575 nominative +accusative +accusative +23579 dative +dative +genitive +23583 dative +23585 nominative +23588 genitive +23591 accusative +23594 accusative +accusative +genitive +23599 dative +23602 nominative +23604 accusative +accusative +genitive +23609 accusative +23612 nominative +23614 accusative +accusative +genitive +23618 genitive +23620 genitive +genitive +23623 accusative +23625 nominative +23627 accusative +23629 accusative +accusative +accusative +23634 accusative +accusative +genitive +23638 accusative +23640 nominative +accusative +genitive +genitive +genitive +23647 nominative +23649 accusative +23651 accusative +accusative +accusative +23655 dative +dative +dative +dative +dative +23661 dative +23663 nominative +nominative +genitive +genitive +23668 accusative +23672 dative +dative +genitive +genitive +genitive +23678 genitive +genitive +genitive +genitive +23684 dative +23687 dative +23690 nominative +genitive +23693 genitive +nominative +23698 genitive +23702 accusative +accusative +genitive +genitive +accusative +23708 dative +23711 accusative +23714 nominative +nominative +accusative +accusative +23719 accusative +accusative +23722 accusative +23725 accusative +23727 accusative +accusative +23730 accusative +accusative +23735 genitive +23737 nominative +nominative +genitive +23741 nominative +nominative +23744 accusative +nominative +23747 genitive +genitive +23755 dative +nominative +23758 dative +23761 nominative +dative +dative +23765 nominative +nominative +nominative +23769 dative +dative +vocative +nominative +23774 accusative +23779 accusative +accusative +dative +accusative +23784 dative +accusative +23787 dative +accusative +23792 accusative +23795 nominative +23799 nominative +nominative +dative +23804 nominative +23806 genitive +genitive +nominative +23810 nominative +nominative +genitive +nominative +nominative +23816 genitive +23819 nominative +23821 accusative +23824 accusative +accusative +accusative +23828 genitive +23830 genitive +genitive +23833 genitive +genitive +23836 dative +23838 dative +accusative +23845 nominative +nominative +genitive +genitive +23850 genitive +23853 accusative +accusative +23857 accusative +nominative +nominative +23861 nominative +23863 genitive +23867 accusative +nominative +23871 nominative +nominative +23875 accusative +23877 accusative +23879 nominative +23881 dative +23883 nominative +nominative +accusative +23887 accusative +23892 accusative +accusative +genitive +genitive +23897 accusative +23903 dative +23906 nominative +23910 dative +accusative +23916 accusative +23918 nominative +23920 accusative +accusative +23923 accusative +accusative +23926 accusative +23928 accusative +accusative +23931 accusative +23933 nominative +nominative +nominative +nominative +nominative +accusative +23941 nominative +23943 accusative +23946 accusative +accusative +23950 accusative +23953 dative +nominative +23956 genitive +genitive +vocative +23960 accusative +accusative +genitive +23964 accusative +accusative +accusative +accusative +23971 accusative +23974 accusative +23979 accusative +accusative +23985 dative +dative +genitive +23989 accusative +23995 nominative +nominative +dative +24000 vocative +vocative +24005 accusative +24010 genitive +24012 accusative +24014 accusative +24017 accusative +24019 accusative +24021 nominative +accusative +nominative +nominative +nominative +24027 accusative +24029 nominative +24031 genitive +genitive +24034 nominative +24037 accusative +accusative +genitive +nominative +nominative +24044 nominative +24046 dative +24048 nominative +24056 accusative +accusative +24061 accusative +24064 accusative +24067 accusative +24070 dative +nominative +24073 accusative +24075 nominative +nominative +24078 dative +nominative +24082 nominative +nominative +dative +dative +nominative +nominative +nominative +nominative +genitive +genitive +24095 genitive +dative +dative +24099 nominative +nominative +nominative +24104 nominative +24106 dative +dative +dative +dative +nominative +dative +nominative +nominative +24115 nominative +nominative +nominative +24119 dative +24122 genitive +24127 accusative +24129 nominative +24131 nominative +nominative +24137 nominative +24139 accusative +accusative +24145 nominative +nominative +nominative +genitive +genitive +genitive +24152 accusative +24156 genitive +genitive +24159 accusative +nominative +nominative +genitive +24164 accusative +24166 accusative +24168 nominative +24172 accusative +24175 dative +nominative +nominative +nominative +24180 dative +24186 dative +24188 nominative +24191 genitive +genitive +24197 nominative +24201 accusative +accusative +genitive +24206 dative +24208 nominative +nominative +genitive +genitive +24214 accusative +genitive +24218 accusative +24220 nominative +24222 accusative +accusative +24226 nominative +24228 accusative +accusative +24232 accusative +24237 accusative +24240 dative +dative +nominative +24244 accusative +accusative +24247 dative +dative +24251 nominative +24255 accusative +24258 dative +dative +nominative +nominative +24263 nominative +24265 accusative +24269 dative +24271 nominative +24273 nominative +24276 genitive +nominative +24279 genitive +nominative +24282 nominative +accusative +24285 accusative +24287 dative +genitive +24290 nominative +accusative +24293 dative +24295 nominative +accusative +genitive +genitive +genitive +24302 dative +dative +genitive +accusative +24309 nominative +accusative +24313 accusative +24316 accusative +accusative +accusative +24320 dative +nominative +nominative +vocative +24325 accusative +24327 dative +dative +genitive +accusative +accusative +nominative +24335 dative +24338 accusative +24342 dative +24344 nominative +nominative +24349 accusative +24351 nominative +24353 nominative +24355 accusative +24357 dative +dative +genitive +24362 accusative +24364 accusative +24366 nominative +24370 genitive +24372 genitive +24376 nominative +24378 accusative +accusative +genitive +24382 dative +24384 genitive +24388 dative +24393 accusative +accusative +genitive +24398 nominative +24400 accusative +genitive +genitive +genitive +genitive +genitive +nominative +24408 dative +24412 nominative +nominative +24415 accusative +accusative +genitive +24421 accusative +accusative +24426 accusative +nominative +nominative +genitive +24431 accusative +nominative +24434 accusative +accusative +24438 accusative +accusative +24441 accusative +24443 accusative +accusative +24447 accusative +accusative +24450 accusative +accusative +accusative +accusative +24456 nominative +nominative +genitive +24460 accusative +24462 accusative +nominative +24465 accusative +24468 accusative +accusative +accusative +24472 accusative +24474 accusative +accusative +24478 accusative +accusative +24482 nominative +nominative +genitive +24486 accusative +24488 accusative +nominative +24491 accusative +accusative +24495 accusative +accusative +genitive +genitive +24501 accusative +accusative +24505 accusative +accusative +24508 nominative +nominative +genitive +24514 nominative +nominative +24519 nominative +dative +24522 nominative +nominative +nominative +24527 nominative +nominative +nominative +24532 dative +accusative +24537 dative +accusative +24542 dative +24545 nominative +24548 accusative +accusative +genitive +genitive +24554 genitive +genitive +24559 nominative +24561 accusative +24567 accusative +24569 nominative +nominative +24572 accusative +24575 dative +accusative +24578 nominative +accusative +24581 nominative +nominative +24584 dative +accusative +dative +24588 nominative +24590 nominative +24593 nominative +accusative +genitive +24600 nominative +nominative +24603 dative +24605 accusative +accusative +genitive +24609 dative +accusative +accusative +accusative +24615 genitive +genitive +accusative +24619 accusative +24621 accusative +24623 genitive +24625 nominative +accusative +accusative +genitive +24630 accusative +accusative +24634 nominative +24637 accusative +accusative +24644 nominative +nominative +24647 accusative +nominative +nominative +24651 nominative +24656 accusative +accusative +24659 nominative +nominative +24662 genitive +24664 accusative +24667 dative +24669 nominative +24671 accusative +accusative +genitive +24676 accusative +24679 accusative +24682 nominative +nominative +accusative +accusative +genitive +24688 accusative +24692 dative +accusative +24695 genitive +24698 nominative +nominative +24701 dative +24703 nominative +nominative +nominative +24709 dative +24711 accusative +accusative +24715 accusative +24718 accusative +24720 genitive +genitive +24723 nominative +nominative +genitive +genitive +24729 dative +24731 nominative +24734 accusative +accusative +genitive +genitive +24739 nominative +24744 accusative +24746 nominative +accusative +24749 nominative +accusative +accusative +24753 accusative +24755 genitive +genitive +24758 accusative +nominative +nominative +24762 nominative +accusative +24765 accusative +vocative +vocative +accusative +24771 accusative +accusative +24775 nominative +nominative +24778 dative +accusative +accusative +24782 accusative +nominative +nominative +24787 nominative +nominative +nominative +accusative +accusative +24804 accusative +accusative +genitive +24808 accusative +accusative +24811 nominative +24813 dative +vocative +accusative +accusative +24819 genitive +genitive +24822 nominative +nominative +nominative +dative +24827 accusative +24830 dative +nominative +accusative +24835 accusative +24840 dative +dative +24844 accusative +24846 dative +24850 dative +24852 nominative +nominative +24855 dative +dative +24858 nominative +24861 nominative +accusative +accusative +24865 nominative +nominative +nominative +24869 dative +dative +genitive +24874 nominative +accusative +accusative +nominative +24879 accusative +accusative +genitive +genitive +24885 nominative +nominative +24889 dative +dative +genitive +24893 nominative +nominative +24896 nominative +24898 dative +vocative +24901 nominative +24904 accusative +accusative +genitive +genitive +24909 nominative +24911 accusative +24913 genitive +genitive +genitive +genitive +24919 accusative +24921 accusative +accusative +genitive +genitive +24927 nominative +24930 nominative +24932 accusative +24934 nominative +24937 nominative +dative +nominative +nominative +24943 dative +nominative +24948 dative +24950 nominative +nominative +24953 dative +dative +24956 nominative +nominative +24959 dative +24961 nominative +24963 accusative +24966 dative +24968 nominative +nominative +24972 dative +nominative +24975 nominative +24977 accusative +24979 accusative +24981 accusative +24983 accusative +24985 accusative +24987 accusative +24989 accusative +24991 genitive +24994 genitive +genitive +25001 dative +dative +dative +accusative +accusative +25007 accusative +25009 accusative +25011 accusative +25013 accusative +25015 accusative +25017 genitive +25020 dative +dative +dative +dative +accusative +accusative +25027 nominative +nominative +25030 nominative +25032 nominative +nominative +nominative +25038 dative +dative +nominative +25042 accusative +25045 nominative +accusative +nominative +nominative +25052 nominative +nominative +25056 nominative +25058 accusative +25061 dative +25063 accusative +accusative +dative +25071 accusative +25073 nominative +nominative +genitive +genitive +25078 dative +dative +25081 dative +dative +25085 accusative +dative +25089 accusative +dative +dative +25094 dative +25097 dative +25100 accusative +25105 accusative +accusative +25110 dative +nominative +25113 nominative +nominative +nominative +genitive +nominative +dative +vocative +25123 accusative +25125 accusative +25127 dative +25129 nominative +25131 dative +25133 accusative +accusative +25136 dative +25138 nominative +25140 dative +25142 dative +25144 nominative +25146 genitive +genitive +25149 nominative +25151 genitive +25154 dative +dative +genitive +25158 nominative +nominative +25161 dative +25164 accusative +25168 accusative +accusative +accusative +nominative +25174 accusative +accusative +accusative +nominative +25181 nominative +25183 dative +25186 nominative +nominative +25189 dative +accusative +accusative +accusative +nominative +25197 accusative +accusative +accusative +nominative +25204 nominative +25207 genitive +genitive +25211 genitive +25214 nominative +25217 dative +25220 nominative +nominative +25226 genitive +25228 genitive +25230 nominative +accusative +nominative +nominative +25235 dative +25238 nominative +nominative +25241 genitive +genitive +25244 genitive +25246 nominative +nominative +genitive +25250 genitive +25256 dative +25259 nominative +25261 nominative +25264 dative +25266 genitive +nominative +25270 nominative +25273 dative +25275 nominative +25277 genitive +nominative +25281 nominative +nominative +genitive +genitive +25292 accusative +accusative +genitive +accusative +25297 genitive +25301 accusative +25303 genitive +genitive +25306 genitive +25308 genitive +genitive +genitive +25312 genitive +genitive +nominative +nominative +genitive +nominative +nominative +nominative +25322 accusative +accusative +25325 nominative +25327 nominative +nominative +nominative +25335 vocative +genitive +vocative +25339 accusative +25342 dative +nominative +25347 nominative +dative +25351 vocative +genitive +25354 accusative +25356 nominative +nominative +nominative +25361 accusative +25364 accusative +accusative +nominative +dative +25371 accusative +25373 nominative +nominative +accusative +accusative +genitive +nominative +25381 accusative +accusative +25384 nominative +dative +nominative +nominative +25389 accusative +dative +25394 nominative +nominative +25397 dative +vocative +25402 nominative +nominative +25405 dative +25407 nominative +nominative +genitive +25411 accusative +25413 nominative +25417 dative +25419 dative +dative +25425 accusative +25427 accusative +25429 accusative +25431 accusative +accusative +genitive +genitive +25437 genitive +genitive +genitive +25442 dative +25445 accusative +accusative +accusative +25449 genitive +25451 nominative +nominative +25454 accusative +25456 accusative +accusative +25459 accusative +nominative +genitive +25465 accusative +25470 nominative +dative +25473 accusative +25475 accusative +25477 nominative +nominative +genitive +accusative +25483 nominative +accusative +25492 accusative +accusative +25495 accusative +25498 genitive +genitive +25502 accusative +25504 nominative +genitive +25507 genitive +25509 dative +accusative +25512 nominative +accusative +accusative +25516 nominative +25518 dative +25521 nominative +nominative +25525 accusative +25528 accusative +accusative +25531 accusative +accusative +25535 dative +accusative +accusative +genitive +25542 accusative +25544 nominative +accusative +accusative +genitive +25550 accusative +accusative +25553 nominative +accusative +nominative +25557 genitive +genitive +25560 nominative +nominative +25563 nominative +nominative +25567 nominative +nominative +nominative +25571 dative +genitive +nominative +nominative +nominative +nominative +genitive +genitive +genitive +genitive +25583 dative +dative +25588 accusative +25590 accusative +accusative +25593 genitive +25595 genitive +genitive +genitive +nominative +accusative +25602 accusative +25604 genitive +25607 dative +25609 genitive +genitive +25612 genitive +25615 nominative +25618 accusative +accusative +accusative +25624 accusative +25627 dative +25629 nominative +25631 accusative +accusative +25636 accusative +25638 nominative +nominative +25642 genitive +25644 nominative +25646 dative +25649 accusative +accusative +25652 genitive +nominative +accusative +25658 nominative +nominative +genitive +25664 accusative +25666 nominative +25668 accusative +accusative +25672 accusative +accusative +25675 accusative +accusative +25678 dative +dative +25681 accusative +accusative +genitive +genitive +25686 accusative +accusative +genitive +genitive +accusative +accusative +25697 nominative +25699 accusative +25701 genitive +genitive +25707 dative +25711 nominative +nominative +genitive +nominative +genitive +25717 dative +dative +dative +25721 nominative +25723 accusative +accusative +genitive +25728 nominative +nominative +25731 nominative +nominative +25736 accusative +25740 accusative +25742 nominative +nominative +nominative +25747 dative +dative +genitive +25756 genitive +genitive +25759 nominative +25762 accusative +accusative +accusative +25766 genitive +25768 nominative +nominative +nominative +25772 dative +vocative +25775 nominative +nominative +accusative +25781 nominative +nominative +nominative +25785 dative +25787 accusative +genitive +25791 dative +25794 nominative +25796 dative +dative +dative +25803 accusative +accusative +25809 dative +dative +genitive +25815 accusative +25819 dative +25821 accusative +25823 dative +accusative +accusative +25834 dative +25838 nominative +25841 accusative +25844 genitive +25847 nominative +nominative +genitive +nominative +25852 dative +dative +25855 dative +accusative +accusative +genitive +25863 accusative +25866 dative +dative +genitive +genitive +25872 accusative +nominative +nominative +25876 nominative +nominative +25879 nominative +nominative +25883 dative +25885 dative +dative +accusative +25890 nominative +dative +25893 accusative +accusative +accusative +25897 accusative +25900 nominative +nominative +25903 dative +25905 accusative +accusative +accusative +25910 dative +25913 dative +25915 dative +dative +accusative +25919 nominative +nominative +nominative +genitive +25924 genitive +25928 genitive +25930 dative +25934 accusative +nominative +25939 genitive +25943 accusative +25946 dative +25950 genitive +25952 accusative +accusative +25955 nominative +25957 accusative +accusative +25961 nominative +25964 nominative +dative +dative +25971 nominative +nominative +25974 dative +25976 nominative +25978 dative +25980 dative +dative +accusative +25986 dative +25988 dative +25990 accusative +nominative +25995 accusative +25998 accusative +26001 accusative +26004 accusative +dative +26011 accusative +accusative +dative +dative +accusative +26018 genitive +genitive +26022 genitive +genitive +genitive +genitive +26027 nominative +accusative +26032 accusative +26037 accusative +accusative +accusative +accusative +26045 accusative +26047 accusative +26050 accusative +accusative +26053 accusative +nominative +26056 accusative +nominative +26060 accusative +accusative +accusative +26064 accusative +accusative +26067 accusative +nominative +26071 accusative +accusative +genitive +26075 nominative +nominative +nominative +26079 accusative +26082 nominative +26084 nominative +nominative +26088 accusative +26090 genitive +26092 nominative +nominative +26095 nominative +26097 accusative +26100 accusative +26102 genitive +genitive +accusative +26106 nominative +nominative +genitive +genitive +26113 accusative +accusative +26117 accusative +accusative +dative +26121 accusative +accusative +accusative +26125 accusative +accusative +26128 nominative +nominative +nominative +26133 accusative +genitive +26136 genitive +26138 nominative +26141 nominative +26143 dative +genitive +26147 accusative +26151 accusative +accusative +26157 accusative +accusative +accusative +26162 nominative +accusative +26168 accusative +accusative +genitive +genitive +26173 genitive +genitive +26176 accusative +26178 dative +26180 nominative +26182 dative +vocative +26186 nominative +26191 dative +26193 genitive +26198 accusative +genitive +26202 genitive +accusative +accusative +genitive +genitive +26210 accusative +dative +26219 nominative +nominative +genitive +accusative +accusative +26225 dative +accusative +accusative +26230 dative +accusative +26235 nominative +26239 dative +genitive +nominative +nominative +nominative +26245 nominative +nominative +26248 nominative +26250 dative +genitive +26253 nominative +nominative +26256 dative +accusative +genitive +26260 dative +26262 accusative +genitive +genitive +dative +dative +26270 dative +26274 accusative +nominative +nominative +26278 accusative +26283 accusative +nominative +vocative +nominative +26288 dative +26291 genitive +nominative +26296 accusative +26300 accusative +26303 nominative +nominative +genitive +accusative +accusative +26310 accusative +dative +dative +genitive +26315 nominative +26318 nominative +nominative +26321 accusative +26323 nominative +26326 accusative +26328 nominative +nominative +26331 accusative +26335 nominative +accusative +26338 nominative +nominative +26342 nominative +26346 accusative +accusative +genitive +26350 nominative +nominative +26354 dative +dative +26358 genitive +genitive +nominative +26363 nominative +26366 accusative +accusative +26369 dative +nominative +nominative +26374 accusative +26377 nominative +accusative +accusative +26381 accusative +accusative +genitive +genitive +26388 genitive +26397 nominative +26399 dative +dative +26403 genitive +genitive +26410 dative +dative +genitive +26414 genitive +genitive +26418 dative +nominative +nominative +nominative +nominative +nominative +nominative +genitive +26427 nominative +genitive +26430 nominative +genitive +26434 nominative +genitive +26437 genitive +accusative +26441 nominative +nominative +genitive +genitive +nominative +genitive +genitive +nominative +26452 dative +26454 accusative +nominative +26457 nominative +nominative +genitive +26461 nominative +nominative +26464 nominative +26467 vocative +nominative +nominative +nominative +genitive +nominative +nominative +26477 accusative +accusative +accusative +genitive +26482 genitive +genitive +genitive +genitive +26488 genitive +genitive +genitive +genitive +26494 genitive +genitive +genitive +genitive +26500 genitive +genitive +genitive +genitive +nominative +nominative +26507 accusative +26509 genitive +26511 accusative +nominative +genitive +nominative +nominative +26520 dative +nominative +nominative +26524 vocative +26526 genitive +26529 nominative +26534 nominative +26536 genitive +26538 nominative +26540 accusative +26542 genitive +genitive +genitive +26547 genitive +genitive +genitive +26552 genitive +genitive +genitive +26556 nominative +26558 accusative +26561 accusative +nominative +26564 genitive +genitive +genitive +26568 genitive +26570 nominative +nominative +nominative +accusative +26578 dative +26580 accusative +26583 genitive +genitive +genitive +genitive +26588 nominative +26591 accusative +26594 nominative +nominative +nominative +26598 nominative +26600 dative +dative +26604 nominative +nominative +26607 nominative +nominative +nominative +genitive +26612 nominative +nominative +26616 dative +dative +dative +dative +26621 nominative +dative +dative +genitive +26627 genitive +genitive +26632 accusative +accusative +genitive +26636 genitive +genitive +genitive +nominative +nominative +26642 accusative +accusative +26646 genitive +nominative +26650 nominative +nominative +nominative +26654 genitive +26658 dative +dative +genitive +26664 genitive +genitive +genitive +genitive +26669 dative +26672 accusative +26674 dative +dative +26677 accusative +26679 dative +dative +26682 accusative +26684 dative +dative +nominative +nominative +accusative +accusative +genitive +genitive +26693 dative +accusative +nominative +nominative +26698 accusative +accusative +26701 nominative +26703 genitive +genitive +26707 nominative +nominative +26710 accusative +26712 accusative +accusative +26715 nominative +nominative +26718 accusative +26720 nominative +nominative +nominative +nominative +26725 accusative +26727 nominative +26729 nominative +26731 nominative +accusative +accusative +genitive +26736 dative +26739 dative +26741 nominative +nominative +nominative +nominative +nominative +accusative +26748 genitive +genitive +genitive +26752 accusative +accusative +26755 nominative +26757 genitive +genitive +dative +26762 nominative +26764 genitive +genitive +genitive +26768 accusative +accusative +26771 accusative +accusative +accusative +genitive +26776 genitive +genitive +26779 genitive +genitive +26782 dative +nominative +genitive +genitive +genitive +vocative +26789 nominative +nominative +26792 nominative +nominative +26795 nominative +nominative +26798 dative +26800 accusative +accusative +accusative +accusative +26808 accusative +nominative +nominative +26815 genitive +genitive +26818 accusative +accusative +genitive +genitive +26823 genitive +genitive +26826 accusative +26828 accusative +nominative +26831 nominative +26833 nominative +26835 nominative +26837 dative +26839 nominative +26842 nominative +nominative +nominative +26847 accusative +accusative +26851 nominative +nominative +26855 dative +26858 nominative +accusative +26861 nominative +26864 dative +dative +genitive +nominative +26869 nominative +26872 accusative +26877 accusative +26879 accusative +genitive +26887 nominative +nominative +26891 nominative +26893 accusative +26895 nominative +26897 accusative +26899 nominative +26901 accusative +26903 nominative +nominative +genitive +nominative +26909 nominative +accusative +26912 accusative +26914 accusative +26917 accusative +26921 genitive +26923 genitive +26926 genitive +26928 accusative +dative +26932 accusative +accusative +accusative +accusative +26937 nominative +nominative +26943 accusative +nominative +26947 accusative +26951 accusative +26953 dative +26955 dative +dative +dative +accusative +26963 nominative +nominative +nominative +26967 nominative +nominative +nominative +nominative +26973 nominative +accusative +26976 accusative +26978 nominative +accusative +26982 nominative +26984 accusative +26987 accusative +26990 nominative +26992 genitive +26994 accusative +accusative +genitive +26998 nominative +nominative +27001 accusative +nominative +27007 accusative +accusative +genitive +genitive +accusative +27015 nominative +nominative +27019 nominative +27021 dative +dative +27025 accusative +accusative +nominative +27029 genitive +genitive +27035 accusative +27038 genitive +genitive +genitive +27042 nominative +27044 accusative +accusative +27049 accusative +27052 accusative +accusative +genitive +27057 dative +27059 dative +dative +27062 dative +dative +27065 dative +dative +dative +27073 genitive +27076 nominative +nominative +nominative +nominative +nominative +27083 nominative +27085 genitive +genitive +accusative +27089 nominative +nominative +27092 genitive +27102 nominative +accusative +accusative +27108 nominative +nominative +27112 accusative +accusative +accusative +27117 accusative +accusative +27122 nominative +dative +27127 nominative +nominative +27135 nominative +27137 nominative +27140 accusative +27142 accusative +27144 accusative +27147 nominative +accusative +accusative +27151 nominative +27154 dative +accusative +27158 dative +dative +dative +27162 accusative +accusative +accusative +nominative +nominative +27169 nominative +nominative +27173 accusative +accusative +genitive +27177 nominative +nominative +27180 nominative +27182 genitive +genitive +27185 nominative +nominative +nominative +27189 dative +dative +27195 accusative +accusative +genitive +genitive +accusative +27201 dative +27203 genitive +genitive +27206 genitive +27210 accusative +accusative +27214 accusative +accusative +genitive +27218 genitive +genitive +genitive +27222 genitive +genitive +27225 genitive +genitive +27229 genitive +genitive +27232 accusative +accusative +27236 nominative +nominative +genitive +nominative +27243 accusative +accusative +27248 nominative +nominative +27253 nominative +27256 accusative +accusative +27263 dative +27266 dative +27271 nominative +nominative +nominative +27275 genitive +nominative +nominative +27279 nominative +nominative +27282 nominative +nominative +27286 nominative +nominative +genitive +27293 genitive +genitive +genitive +27297 genitive +genitive +nominative +27302 nominative +nominative +27305 dative +27307 nominative +nominative +27311 nominative +nominative +27319 nominative +nominative +27323 nominative +nominative +nominative +accusative +accusative +genitive +27330 nominative +dative +dative +genitive +accusative +accusative +dative +accusative +accusative +genitive +27341 dative +dative +27352 nominative +nominative +genitive +genitive +27360 accusative +27362 genitive +27366 nominative +27369 accusative +accusative +27372 accusative +dative +27375 dative +27380 nominative +nominative +27383 nominative +nominative +27387 accusative +27390 nominative +nominative +27393 nominative +nominative +27396 accusative +27398 dative +nominative +27405 dative +dative +27410 nominative +genitive +genitive +27414 genitive +genitive +27417 dative +27419 dative +dative +genitive +genitive +genitive +genitive +genitive +27427 nominative +nominative +accusative +genitive +genitive +genitive +genitive +nominative +accusative +accusative +27438 genitive +genitive +genitive +27442 nominative +27444 nominative +27446 accusative +27448 accusative +nominative +nominative +nominative +genitive +genitive +27457 nominative +nominative +nominative +27462 genitive +genitive +27466 dative +dative +27470 dative +27472 nominative +nominative +27476 accusative +accusative +dative +accusative +27481 accusative +accusative +27485 dative +27488 accusative +accusative +27492 genitive +27497 dative +27501 accusative +27505 accusative +27510 accusative +accusative +genitive +27514 accusative +accusative +27519 dative +27523 nominative +nominative +27526 accusative +accusative +accusative +27530 accusative +27532 nominative +27535 accusative +genitive +27538 nominative +nominative +nominative +nominative +genitive +27546 accusative +accusative +27549 accusative +27551 dative +27553 nominative +nominative +27558 dative +accusative +27564 accusative +27568 dative +dative +dative +genitive +genitive +27574 accusative +accusative +27578 dative +nominative +nominative +genitive +27584 nominative +27588 accusative +accusative +27593 genitive +genitive +genitive +27598 dative +27601 accusative +accusative +27605 dative +nominative +accusative +genitive +nominative +27611 dative +27617 dative +dative +27620 nominative +nominative +27625 nominative +nominative +genitive +27629 accusative +accusative +27632 genitive +genitive +genitive +27637 nominative +dative +27640 accusative +accusative +accusative +accusative +27647 dative +27650 nominative +nominative +27655 accusative +accusative +27661 dative +27664 accusative +accusative +27667 genitive +genitive +27671 genitive +27674 genitive +genitive +27677 genitive +nominative +nominative +27683 dative +27686 accusative +nominative +27689 genitive +nominative +nominative +27693 genitive +27698 dative +nominative +27701 nominative +27703 nominative +27705 nominative +27707 dative +nominative +genitive +27711 nominative +nominative +27714 genitive +27716 accusative +accusative +27720 nominative +nominative +genitive +genitive +27728 genitive +27731 dative +dative +dative +27735 genitive +nominative +nominative +genitive +genitive +27741 nominative +dative +27746 nominative +nominative +nominative +27750 genitive +genitive +nominative +accusative +nominative +27758 dative +27762 nominative +27764 nominative +nominative +genitive +27768 nominative +accusative +nominative +27772 dative +27776 genitive +nominative +27780 dative +nominative +27783 nominative +nominative +genitive +genitive +genitive +nominative +nominative +27791 genitive +27794 dative +27801 genitive +genitive +genitive +genitive +27806 genitive +genitive +genitive +27810 accusative +27812 accusative +27814 dative +dative +genitive +genitive +27819 nominative +27822 accusative +accusative +genitive +genitive +27828 dative +nominative +nominative +27832 nominative +27837 accusative +accusative +27840 nominative +nominative +27845 accusative +27847 accusative +27849 accusative +27851 accusative +accusative +27854 nominative +nominative +27857 dative +27860 nominative +27864 nominative +27867 dative +nominative +nominative +27872 dative +27874 nominative +27876 dative +dative +dative +27882 accusative +27885 accusative +27888 nominative +27893 accusative +27895 dative +27898 accusative +27903 nominative +27908 accusative +genitive +nominative +nominative +nominative +27915 dative +dative +genitive +27924 accusative +accusative +27927 accusative +accusative +27930 accusative +accusative +27933 genitive +27941 dative +nominative +27944 nominative +nominative +genitive +27948 genitive +27954 nominative +accusative +27958 genitive +genitive +27964 nominative +27968 genitive +nominative +nominative +27973 vocative +nominative +nominative +nominative +nominative +dative +27980 accusative +accusative +accusative +27984 genitive +27987 accusative +nominative +27991 accusative +nominative +27997 accusative +accusative +28001 dative +dative +vocative +28007 accusative +accusative +28017 accusative +28019 nominative +nominative +nominative +28023 nominative +nominative +nominative +28028 nominative +28030 accusative +accusative +accusative +nominative +28036 nominative +28038 accusative +accusative +28042 nominative +genitive +nominative +nominative +28049 accusative +28051 dative +28054 accusative +accusative +28058 dative +28060 accusative +accusative +28066 nominative +nominative +28070 nominative +nominative +genitive +genitive +28075 accusative +accusative +genitive +genitive +28082 nominative +nominative +accusative +28087 nominative +28089 genitive +genitive +28092 nominative +nominative +nominative +genitive +28099 genitive +nominative +28102 genitive +28104 genitive +28106 genitive +genitive +28109 genitive +genitive +28112 genitive +genitive +28116 nominative +nominative +accusative +accusative +dative +nominative +28123 accusative +28125 nominative +28128 accusative +28133 nominative +nominative +nominative +dative +28138 vocative +28141 accusative +28143 nominative +28145 accusative +accusative +dative +28150 accusative +28152 nominative +nominative +genitive +genitive +nominative +accusative +accusative +28160 accusative +accusative +genitive +genitive +28166 genitive +accusative +accusative +28170 nominative +nominative +nominative +28174 dative +28177 accusative +28180 genitive +28182 genitive +28184 accusative +28186 accusative +28189 accusative +28191 dative +dative +nominative +28197 accusative +28201 nominative +nominative +28204 nominative +accusative +28207 nominative +28209 nominative +nominative +28212 dative +nominative +accusative +28216 genitive +28219 accusative +28221 nominative +nominative +accusative +accusative +nominative +28229 accusative +accusative +28232 accusative +accusative +28236 nominative +nominative +nominative +28240 nominative +nominative +28243 nominative +nominative +28246 nominative +nominative +28251 dative +28255 accusative +accusative +genitive +genitive +28261 nominative +28263 genitive +genitive +28266 nominative +28268 accusative +accusative +28271 nominative +nominative +28274 nominative +nominative +nominative +28279 genitive +genitive +accusative +28283 accusative +28285 accusative +28290 nominative +28293 genitive +28295 nominative +nominative +nominative +28301 nominative +nominative +28305 genitive +nominative +28308 nominative +28310 genitive +genitive +28313 nominative +28315 accusative +accusative +accusative +accusative +accusative +28322 genitive +genitive +accusative +accusative +28330 nominative +28332 nominative +nominative +genitive +28336 nominative +28338 accusative +nominative +nominative +28342 accusative +accusative +nominative +28347 accusative +accusative +nominative +genitive +28353 nominative +28358 accusative +28360 nominative +nominative +28363 accusative +28366 dative +nominative +28369 nominative +nominative +nominative +nominative +genitive +genitive +28376 nominative +nominative +28379 nominative +28383 accusative +accusative +genitive +genitive +28388 genitive +genitive +genitive +accusative +28393 accusative +28395 genitive +genitive +genitive +genitive +28400 nominative +nominative +nominative +accusative +accusative +genitive +28407 accusative +28409 accusative +genitive +28413 genitive +genitive +nominative +dative +28419 nominative +nominative +28422 accusative +accusative +28425 genitive +28428 nominative +28430 dative +28433 genitive +accusative +accusative +28438 accusative +28441 dative +28444 nominative +nominative +dative +accusative +28450 genitive +genitive +genitive +28455 dative +dative +28458 nominative +genitive +genitive +genitive +genitive +28464 nominative +accusative +accusative +accusative +nominative +dative +28472 nominative +28474 genitive +genitive +genitive +genitive +28480 nominative +28482 nominative +28487 nominative +accusative +28494 accusative +accusative +28497 nominative +nominative +nominative +accusative +28504 dative +dative +28507 nominative +28509 genitive +28512 nominative +28517 accusative +28519 nominative +nominative +28522 dative +dative +28526 genitive +28530 nominative +28533 nominative +28541 accusative +accusative +accusative +accusative +28547 nominative +28549 genitive +nominative +28554 nominative +nominative +accusative +accusative +28560 dative +nominative +nominative +28565 accusative +28569 accusative +28572 nominative +28575 nominative +28577 nominative +nominative +accusative +nominative +28582 genitive +genitive +28585 genitive +28587 nominative +nominative +nominative +nominative +accusative +accusative +28596 dative +28599 accusative +nominative +nominative +nominative +28604 nominative +nominative +genitive +genitive +28609 nominative +nominative +dative +28613 nominative +28617 genitive +nominative +nominative +accusative +28622 nominative +nominative +28626 accusative +nominative +28630 accusative +28632 accusative +genitive +28636 nominative +nominative +28639 accusative +28643 accusative +accusative +28647 accusative +28649 dative +accusative +accusative +accusative +28656 nominative +nominative +nominative +nominative +28661 genitive +genitive +nominative +28665 dative +dative +accusative +28670 nominative +nominative +nominative +28677 dative +28679 nominative +nominative +28682 dative +nominative +28686 dative +accusative +accusative +genitive +genitive +28695 accusative +28697 accusative +nominative +nominative +28701 nominative +nominative +28704 accusative +accusative +28708 accusative +accusative +28711 dative +28713 nominative +nominative +28716 nominative +28718 dative +28720 accusative +28722 accusative +28724 accusative +accusative +genitive +genitive +28729 nominative +28733 accusative +28735 nominative +nominative +28738 dative +28741 accusative +accusative +28744 nominative +28748 accusative +28750 nominative +nominative +nominative +dative +dative +accusative +accusative +28759 dative +accusative +accusative +28764 accusative +accusative +nominative +28770 nominative +nominative +28773 accusative +28775 genitive +genitive +nominative +28779 nominative +28782 accusative +accusative +accusative +28787 accusative +accusative +28791 dative +nominative +accusative +accusative +28798 accusative +28800 vocative +genitive +genitive +28805 genitive +accusative +accusative +dative +28811 dative +28813 nominative +accusative +accusative +28817 dative +28821 dative +28823 accusative +accusative +accusative +28828 accusative +accusative +accusative +genitive +28834 accusative +28837 accusative +28840 accusative +accusative +accusative +accusative +accusative +28846 genitive +accusative +accusative +genitive +28851 genitive +28854 accusative +accusative +genitive +28859 accusative +28861 accusative +accusative +accusative +nominative +28866 nominative +genitive +nominative +28871 dative +accusative +accusative +28875 nominative +28880 accusative +28883 accusative +accusative +genitive +nominative +accusative +28889 accusative +nominative +accusative +28895 nominative +nominative +28899 accusative +28902 nominative +nominative +nominative +genitive +genitive +genitive +nominative +nominative +genitive +genitive +28914 dative +28917 accusative +accusative +28920 genitive +28922 accusative +28924 genitive +genitive +28927 nominative +nominative +28930 accusative +nominative +accusative +accusative +genitive +28936 nominative +28938 nominative +nominative +accusative +accusative +28943 nominative +28945 dative +dative +28948 accusative +nominative +28951 genitive +genitive +28955 nominative +nominative +nominative +28959 accusative +28961 genitive +genitive +28964 accusative +28966 accusative +28970 nominative +nominative +nominative +nominative +genitive +28978 genitive +genitive +28985 nominative +nominative +28988 dative +28990 accusative +28992 genitive +genitive +genitive +nominative +28998 accusative +accusative +accusative +29002 genitive +genitive +29005 dative +dative +dative +29009 nominative +nominative +dative +dative +vocative +vocative +29017 nominative +29019 nominative +nominative +nominative +genitive +nominative +nominative +genitive +29027 accusative +29029 accusative +29031 nominative +genitive +genitive +nominative +29037 accusative +29040 nominative +nominative +29043 nominative +accusative +genitive +nominative +dative +29049 accusative +nominative +29055 nominative +29057 accusative +29059 nominative +nominative +nominative +accusative +accusative +29066 nominative +nominative +genitive +genitive +29078 nominative +nominative +nominative +nominative +29083 genitive +genitive +nominative +29091 nominative +nominative +nominative +nominative +genitive +29100 nominative +29103 nominative +29105 dative +29107 nominative +nominative +nominative +29111 nominative +nominative +genitive +genitive +genitive +29117 genitive +nominative +29120 nominative +nominative +29125 dative +dative +29128 dative +29131 dative +29133 nominative +nominative +nominative +nominative +dative +29139 accusative +29142 genitive +genitive +29146 nominative +nominative +29149 nominative +nominative +nominative +nominative +29154 genitive +nominative +nominative +nominative +29159 nominative +29161 nominative +accusative +accusative +genitive +genitive +nominative +29169 accusative +accusative +29173 accusative +accusative +genitive +genitive +29178 nominative +nominative +29185 nominative +accusative +accusative +29189 accusative +29194 nominative +29196 genitive +genitive +29199 accusative +accusative +dative +dative +29204 nominative +accusative +nominative +accusative +29209 dative +dative +29213 accusative +29215 dative +nominative +29218 nominative +29220 genitive +29223 accusative +29225 accusative +accusative +genitive +genitive +29230 nominative +nominative +nominative +nominative +29235 nominative +nominative +genitive +29242 genitive +genitive +genitive +nominative +nominative +nominative +29249 nominative +nominative +genitive +genitive +29254 nominative +29256 accusative +29258 nominative +29260 accusative +29264 dative +dative +genitive +genitive +29270 accusative +accusative +genitive +genitive +genitive +29278 accusative +nominative +29281 dative +accusative +accusative +29285 genitive +genitive +genitive +genitive +29290 nominative +29294 nominative +nominative +29298 nominative +29301 nominative +29303 accusative +accusative +29306 accusative +accusative +29309 dative +dative +accusative +accusative +accusative +29317 nominative +29319 dative +29323 accusative +accusative +accusative +accusative +accusative +29333 nominative +nominative +29337 accusative +29341 dative +dative +genitive +29345 dative +dative +29349 accusative +29351 accusative +accusative +29354 accusative +29358 dative +29360 nominative +29363 genitive +genitive +29367 accusative +nominative +29370 nominative +29372 dative +accusative +29378 nominative +29380 dative +genitive +29383 accusative +dative +dative +dative +29388 genitive +29391 accusative +nominative +nominative +29395 dative +29397 genitive +dative +dative +29401 dative +nominative +nominative +29409 genitive +29413 accusative +dative +29416 genitive +dative +29420 dative +dative +dative +29424 accusative +nominative +nominative +29428 dative +dative +29431 dative +29434 accusative +dative +dative +dative +29442 accusative +accusative +genitive +29446 accusative +29448 dative +dative +accusative +accusative +29456 dative +nominative +29459 accusative +accusative +accusative +29463 accusative +accusative +dative +dative +dative +nominative +nominative +29471 nominative +29474 nominative +nominative +29478 nominative +nominative +dative +dative +29484 dative +dative +genitive +accusative +29489 dative +dative +29492 accusative +29495 accusative +accusative +29500 accusative +29503 accusative +accusative +29511 nominative +nominative +nominative +29515 accusative +29517 dative +29520 accusative +accusative +29525 genitive +genitive +genitive +29529 nominative +nominative +29533 genitive +genitive +genitive +29537 accusative +accusative +genitive +29541 genitive +genitive +genitive +29545 accusative +accusative +accusative +dative +29550 accusative +accusative +29556 accusative +29558 nominative +nominative +nominative +29562 genitive +29565 genitive +29568 genitive +accusative +accusative +29572 accusative +accusative +genitive +genitive +genitive +29578 nominative +29581 accusative +29583 genitive +genitive +29586 dative +genitive +29590 dative +nominative +29593 genitive +nominative +29596 nominative +nominative +genitive +genitive +29601 dative +dative +29604 dative +29607 dative +29609 vocative +vocative +29614 genitive +29616 genitive +accusative +accusative +29621 dative +dative +genitive +genitive +genitive +genitive +nominative +nominative +dative +nominative +29632 genitive +genitive +29635 nominative +dative +29638 genitive +genitive +genitive +29642 nominative +nominative +genitive +nominative +29648 nominative +nominative +29651 genitive +genitive +nominative +29655 dative +dative +dative +29659 dative +genitive +genitive +nominative +29666 dative +nominative +29670 nominative +nominative +nominative +29674 nominative +nominative +29678 dative +dative +genitive +29684 dative +29686 accusative +29688 dative +dative +genitive +genitive +genitive +29694 genitive +genitive +29697 accusative +accusative +genitive +genitive +29702 genitive +29704 nominative +29706 accusative +accusative +genitive +genitive +29711 nominative +nominative +nominative +genitive +genitive +29717 nominative +29719 dative +dative +genitive +genitive +29725 dative +nominative +genitive +nominative +29730 genitive +genitive +genitive +genitive +genitive +29737 nominative +nominative +29740 nominative +29743 accusative +29747 accusative +nominative +nominative +29752 vocative +29755 nominative +nominative +genitive +29759 nominative +nominative +genitive +nominative +29764 accusative +dative +29768 accusative +accusative +genitive +accusative +29774 dative +nominative +29777 nominative +29779 nominative +29781 dative +dative +genitive +29787 nominative +29789 genitive +29791 accusative +29793 accusative +29798 genitive +genitive +29803 genitive +genitive +genitive +29807 accusative +genitive +genitive +genitive +29813 accusative +accusative +accusative +genitive +29818 nominative +29821 genitive +29823 dative +29825 dative +genitive +29828 accusative +genitive +29831 accusative +29833 accusative +29835 dative +genitive +29838 dative +accusative +accusative +29843 nominative +29845 accusative +accusative +29848 accusative +29850 accusative +29852 nominative +29854 nominative +29856 nominative +nominative +genitive +nominative +29861 dative +dative +genitive +29865 nominative +nominative +nominative +29869 dative +nominative +29872 nominative +nominative +nominative +29876 genitive +genitive +29882 accusative +29885 dative +accusative +29890 nominative +29893 nominative +29896 genitive +genitive +29899 nominative +29901 genitive +29904 dative +dative +genitive +nominative +29910 accusative +accusative +genitive +29915 nominative +nominative +nominative +accusative +accusative +29923 dative +29926 dative +dative +accusative +29930 nominative +29934 dative +29938 accusative +29941 dative +dative +29944 nominative +29946 nominative +dative +29950 nominative +29955 nominative +nominative +genitive +genitive +genitive +29962 accusative +accusative +genitive +29967 accusative +accusative +accusative +29971 nominative +nominative +nominative +genitive +29977 accusative +accusative +29980 nominative +29983 dative +29985 nominative +29987 dative +dative +29991 accusative +genitive +29994 dative +29997 dative +dative +dative +dative +30002 nominative +nominative +nominative +30006 genitive +genitive +30009 accusative +genitive +genitive +dative +nominative +nominative +30016 accusative +accusative +dative +dative +nominative +nominative +30023 genitive +genitive +30026 nominative +nominative +genitive +genitive +nominative +30032 nominative +30034 accusative +30037 nominative +nominative +nominative +30041 genitive +30043 nominative +30045 dative +dative +30050 nominative +30052 nominative +nominative +nominative +30057 nominative +nominative +dative +30062 vocative +30065 accusative +30067 dative +dative +30073 dative +30076 accusative +30079 accusative +accusative +genitive +accusative +nominative +30085 nominative +30087 nominative +genitive +30092 dative +nominative +nominative +nominative +accusative +accusative +genitive +genitive +genitive +genitive +30105 accusative +accusative +genitive +30109 accusative +accusative +30112 genitive +genitive +genitive +30117 nominative +30120 nominative +30122 accusative +accusative +30126 nominative +30128 accusative +30132 nominative +nominative +nominative +30136 dative +nominative +nominative +30141 accusative +30143 nominative +genitive +30146 dative +30149 nominative +nominative +nominative +30153 nominative +genitive +30157 nominative +nominative +nominative +genitive +30162 nominative +30164 accusative +30166 dative +genitive +30169 nominative +nominative +nominative +30173 dative +dative +dative +dative +30181 genitive +genitive +nominative +nominative +30187 nominative +30189 nominative +nominative +genitive +30193 dative +30195 accusative +accusative +genitive +30201 genitive +nominative +nominative +30205 nominative +nominative +30208 dative +dative +dative +30213 accusative +accusative +30216 genitive +30218 accusative +genitive +30223 accusative +accusative +genitive +30228 accusative +accusative +30234 accusative +accusative +genitive +genitive +nominative +nominative +30241 nominative +nominative +30244 dative +dative +genitive +30249 genitive +genitive +nominative +nominative +30255 dative +dative +30259 nominative +nominative +30262 dative +30264 nominative +nominative +nominative +genitive +genitive +genitive +30272 dative +nominative +30276 nominative +nominative +genitive +genitive +genitive +30282 accusative +30287 nominative +nominative +genitive +genitive +genitive +30293 accusative +accusative +genitive +30298 dative +nominative +nominative +30302 dative +dative +genitive +30306 nominative +nominative +nominative +30311 nominative +dative +dative +dative +30316 genitive +30319 nominative +30321 nominative +nominative +genitive +accusative +accusative +30328 nominative +nominative +genitive +30332 dative +dative +dative +dative +genitive +30340 accusative +accusative +genitive +genitive +genitive +30348 genitive +30351 accusative +nominative +nominative +nominative +30357 dative +accusative +nominative +nominative +30362 accusative +nominative +nominative +genitive +30367 nominative +nominative +genitive +30371 accusative +30373 accusative +dative +dative +accusative +30378 accusative +30380 dative +genitive +30383 accusative +dative +genitive +genitive +30388 accusative +30390 genitive +30393 accusative +accusative +30396 genitive +30398 accusative +30400 accusative +30402 genitive +genitive +genitive +30406 genitive +dative +dative +30410 dative +dative +genitive +30414 accusative +accusative +30419 accusative +accusative +genitive +30424 nominative +30426 dative +30428 accusative +accusative +30433 accusative +accusative +genitive +30437 dative +dative +30440 nominative +nominative +genitive +30444 accusative +30447 accusative +30450 nominative +nominative +30453 nominative +nominative +genitive +30458 nominative +accusative +accusative +genitive +30463 genitive +30466 dative +30470 dative +dative +dative +dative +30476 accusative +accusative +30480 accusative +30482 dative +dative +genitive +genitive +genitive +accusative +30489 nominative +nominative +nominative +genitive +30497 nominative +30501 accusative +30505 genitive +genitive +genitive +nominative +nominative +30511 dative +dative +dative +30516 dative +dative +genitive +accusative +30522 accusative +30524 accusative +30526 nominative +accusative +30529 nominative +nominative +30532 nominative +genitive +30536 nominative +30539 nominative +nominative +genitive +30544 nominative +nominative +genitive +30549 nominative +accusative +accusative +30554 nominative +30556 accusative +accusative +accusative +accusative +30562 dative +dative +dative +genitive +genitive +30568 nominative +nominative +nominative +nominative +30574 nominative +nominative +nominative +30578 dative +dative +genitive +nominative +30583 nominative +nominative +nominative +nominative +30590 nominative +genitive +30594 genitive +30596 nominative +nominative +nominative +genitive +30601 genitive +genitive +30605 nominative +nominative +nominative +nominative +nominative +genitive +genitive +30616 accusative +dative +dative +genitive +30622 accusative +genitive +dative +30626 dative +genitive +genitive +genitive +30633 genitive +genitive +genitive +30637 genitive +genitive +genitive +accusative +30642 genitive +genitive +30646 genitive +genitive +genitive +genitive +accusative +30652 accusative +30654 genitive +genitive +genitive +30659 genitive +genitive +genitive +accusative +accusative +30666 accusative +accusative +accusative +genitive +genitive +30672 dative +30674 genitive +genitive +accusative +30679 dative +30681 dative +30683 dative +30685 genitive +dative +dative +dative +genitive +30691 vocative +30693 nominative +nominative +genitive +30700 genitive +30702 accusative +genitive +genitive +30706 accusative +genitive +dative +dative +genitive +30712 dative +genitive +genitive +30716 accusative +genitive +genitive +genitive +30721 dative +30723 accusative +nominative +30726 genitive +30728 dative +30730 dative +30732 dative +genitive +dative +genitive +30737 accusative +accusative +genitive +30741 accusative +genitive +30744 nominative +nominative +30749 dative +30753 dative +dative +30756 genitive +genitive +genitive +30760 accusative +accusative +30765 dative +dative +dative +30769 nominative +30771 genitive +genitive +30774 accusative +accusative +accusative +nominative +nominative +nominative +30781 genitive +genitive +genitive +genitive +30787 nominative +30789 nominative +30791 accusative +genitive +accusative +30797 nominative +30799 genitive +genitive +30802 genitive +genitive +30805 accusative +accusative +30808 accusative +genitive +nominative +30812 nominative +30814 accusative +30816 accusative +30818 genitive +30820 genitive +genitive +30824 dative +dative +dative +dative +dative +dative +30833 dative +30835 accusative +30838 nominative +nominative +genitive +30842 accusative +30845 accusative +accusative +genitive +accusative +accusative +30852 accusative +30855 accusative +30857 dative +30861 dative +nominative +30864 dative +dative +30867 nominative +30870 dative +dative +dative +dative +nominative +30876 nominative +accusative +genitive +genitive +30881 accusative +accusative +genitive +30885 nominative +genitive +30888 dative +30890 nominative +genitive +30893 accusative +30896 accusative +accusative +30900 dative +nominative +nominative +30908 dative +accusative +accusative +nominative +30913 dative +dative +dative +30918 dative +30920 nominative +nominative +30923 nominative +nominative +30926 dative +genitive +30929 nominative +dative +nominative +30933 accusative +accusative +30936 accusative +30938 dative +30943 dative +dative +nominative +genitive +genitive +genitive +accusative +accusative +30952 genitive +nominative +30955 dative +dative +30959 genitive +nominative +30962 dative +genitive +30969 genitive +30971 accusative +accusative +nominative +nominative +nominative +nominative +30979 accusative +30983 genitive +30986 accusative +accusative +accusative +accusative +accusative +accusative +nominative +nominative +30995 dative +30998 nominative +31002 accusative +accusative +31005 accusative +accusative +31008 accusative +accusative +accusative +31012 dative +dative +31015 nominative +31018 genitive +genitive +genitive +genitive +dative +31024 genitive +genitive +genitive +31028 nominative +nominative +nominative +31033 genitive +genitive +31036 genitive +genitive +31039 accusative +31041 nominative +nominative +31044 accusative +accusative +accusative +accusative +nominative +31050 dative +dative +genitive +31055 nominative +nominative +nominative +31059 nominative +accusative +accusative +31063 dative +dative +31071 accusative +31075 nominative +31077 genitive +31079 accusative +31082 nominative +nominative +genitive +nominative +nominative +nominative +31089 genitive +genitive +31092 genitive +31094 accusative +31096 dative +dative +31101 nominative +nominative +genitive +genitive +genitive +31107 accusative +accusative +genitive +31111 accusative +31113 accusative +31115 dative +dative +31120 dative +genitive +31123 nominative +nominative +nominative +accusative +accusative +dative +dative +31132 genitive +31134 accusative +31136 accusative +accusative +31139 dative +dative +genitive +accusative +genitive +31146 accusative +genitive +31150 nominative +31153 dative +dative +nominative +nominative +31158 nominative +nominative +nominative +nominative +31163 nominative +nominative +accusative +genitive +genitive +31169 nominative +nominative +31173 accusative +31176 nominative +dative +31179 genitive +genitive +genitive +genitive +31185 accusative +31190 accusative +accusative +genitive +31196 dative +dative +31199 accusative +accusative +31203 dative +31205 accusative +accusative +accusative +accusative +accusative +genitive +31212 accusative +31214 accusative +accusative +genitive +genitive +31219 genitive +31221 nominative +31223 accusative +31225 accusative +accusative +31229 accusative +accusative +31233 vocative +31236 accusative +accusative +genitive +31240 accusative +accusative +genitive +31244 dative +31247 nominative +nominative +genitive +accusative +accusative +genitive +accusative +31256 accusative +genitive +genitive +genitive +nominative +31262 accusative +genitive +31265 accusative +genitive +genitive +genitive +31271 nominative +nominative +nominative +genitive +31276 nominative +nominative +31279 dative +dative +31282 genitive +31285 accusative +nominative +31290 accusative +accusative +accusative +genitive +31295 nominative +31298 accusative +31300 accusative +genitive +31303 dative +dative +31307 accusative +accusative +31311 genitive +genitive +accusative +accusative +31316 nominative +31321 genitive +genitive +nominative +31326 nominative +nominative +nominative +genitive +31331 genitive +genitive +nominative +nominative +31336 dative +dative +nominative +31340 genitive +accusative +31344 genitive +genitive +genitive +31348 nominative +nominative +31351 genitive +31353 genitive +nominative +31357 genitive +genitive +dative +31361 dative +nominative +accusative +31365 accusative +31367 dative +dative +dative +nominative +31372 dative +dative +31377 genitive +dative +dative +dative +accusative +genitive +31386 accusative +accusative +31389 accusative +accusative +genitive +31394 accusative +accusative +31397 accusative +genitive +accusative +31401 nominative +nominative +31406 nominative +dative +31409 nominative +genitive +31413 accusative +31416 nominative +nominative +genitive +31420 accusative +31422 accusative +dative +dative +genitive +genitive +31430 genitive +31432 genitive +genitive +31435 accusative +accusative +genitive +genitive +31440 genitive +accusative +accusative +31444 dative +31446 accusative +31448 nominative +nominative +nominative +31452 dative +31456 nominative +nominative +genitive +31460 nominative +accusative +31464 dative +dative +31467 genitive +accusative +31471 accusative +31473 dative +dative +31476 dative +dative +31480 nominative +31483 accusative +nominative +accusative +31489 accusative +accusative +31492 accusative +31494 dative +dative +accusative +31498 dative +genitive +genitive +31502 accusative +genitive +31505 accusative +accusative +31509 nominative +nominative +nominative +genitive +31514 dative +dative +31517 dative +dative +genitive +31521 nominative +accusative +31527 accusative +nominative +nominative +genitive +vocative +accusative +31534 dative +31537 nominative +nominative +genitive +nominative +nominative +31543 accusative +31547 accusative +nominative +31551 accusative +31556 dative +genitive +genitive +genitive +31561 accusative +31564 nominative +31567 accusative +accusative +accusative +31571 dative +31575 genitive +31579 accusative +31582 nominative +dative +31585 nominative +nominative +genitive +31589 accusative +accusative +accusative +31593 dative +dative +genitive +31597 nominative +31600 dative +dative +31603 dative +31605 dative +31607 dative +31609 dative +31612 dative +dative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +31624 genitive +genitive +genitive +genitive +31629 genitive +genitive +genitive +genitive +genitive +genitive +genitive +31637 genitive +genitive +31640 genitive +genitive +genitive +genitive +31645 genitive +genitive +31648 genitive +31650 nominative +genitive +31653 accusative +accusative +genitive +accusative +31658 dative +dative +31663 accusative +accusative +accusative +genitive +genitive +nominative +accusative +genitive +31672 accusative +genitive +31677 dative +genitive +genitive +genitive +genitive +nominative +genitive +31685 dative +dative +31688 accusative +accusative +genitive +accusative +31693 accusative +accusative +genitive +nominative +nominative +31700 nominative +nominative +31703 nominative +31707 nominative +nominative +31710 accusative +31712 nominative +nominative +31715 accusative +accusative +31719 nominative +nominative +accusative +accusative +genitive +genitive +31727 dative +dative +31731 genitive +dative +vocative +genitive +nominative +31737 dative +31740 genitive +genitive +genitive +31745 accusative +accusative +genitive +genitive +31754 dative +accusative +31757 accusative +accusative +31761 dative +31764 nominative +nominative +31767 genitive +genitive +genitive +31771 accusative +dative +dative +31777 nominative +nominative +31780 accusative +accusative +genitive +genitive +31786 nominative +nominative +31789 nominative +accusative +accusative +31795 accusative +31799 accusative +nominative +nominative +nominative +31804 accusative +31807 nominative +31809 dative +nominative +nominative +31813 accusative +31815 dative +31817 dative +31819 nominative +nominative +accusative +31827 nominative +31832 accusative +vocative +accusative +31837 nominative +31840 accusative +accusative +accusative +31844 accusative +accusative +dative +31850 accusative +31852 nominative +nominative +accusative +31857 nominative +31860 dative +accusative +31867 dative +dative +genitive +31871 genitive +genitive +genitive +31875 genitive +genitive +31878 dative +dative +genitive +31882 genitive +genitive +31886 nominative +31888 nominative +nominative +31891 nominative +dative +nominative +nominative +31896 nominative +dative +31899 accusative +31902 nominative +nominative +genitive +genitive +31908 nominative +31910 accusative +accusative +genitive +genitive +genitive +nominative +accusative +31919 dative +dative +31922 dative +genitive +nominative +nominative +31927 dative +dative +genitive +31931 accusative +accusative +genitive +31936 accusative +accusative +31939 accusative +accusative +genitive +31943 accusative +accusative +31946 dative +dative +31950 accusative +31952 accusative +nominative +31955 accusative +accusative +31958 nominative +nominative +nominative +nominative +nominative +31964 genitive +31966 genitive +genitive +genitive +genitive +genitive +genitive +31974 genitive +genitive +genitive +31978 nominative +nominative +31982 accusative +31984 dative +31986 accusative +accusative +31989 dative +31993 dative +31995 accusative +accusative +accusative +31999 genitive +genitive +32002 genitive +32004 accusative +accusative +32008 accusative +accusative +accusative +accusative +dative +dative +32015 accusative +32017 accusative +32019 accusative +32021 genitive +32023 nominative +32025 nominative +nominative +genitive +nominative +nominative +32031 dative +32034 nominative +nominative +32037 nominative +32039 genitive +32043 nominative +nominative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +32199 nominative +nominative +genitive +genitive +32205 genitive +genitive +32210 dative +dative +32213 dative +dative +accusative +32217 nominative +32219 genitive +genitive +32224 accusative +32226 dative +dative +dative +32230 genitive +genitive +32235 dative +nominative +nominative +32240 nominative +genitive +genitive +32244 dative +dative +dative +32249 nominative +32253 accusative +nominative +nominative +32260 dative +dative +32263 nominative +nominative +32266 nominative +accusative +32269 dative +accusative +accusative +accusative +genitive +genitive +32276 dative +genitive +32280 dative +nominative +nominative +dative +32285 accusative +accusative +accusative +accusative +32290 accusative +accusative +genitive +32294 dative +32298 dative +32301 accusative +32304 nominative +32307 genitive +32309 genitive +nominative +32312 nominative +nominative +nominative +32316 dative +32319 accusative +accusative +accusative +genitive +32324 dative +dative +32329 accusative +32331 accusative +32335 accusative +accusative +genitive +genitive +32341 dative +32344 nominative +genitive +genitive +32348 accusative +32354 dative +dative +genitive +32359 genitive +genitive +32362 accusative +32366 genitive +32368 accusative +32373 accusative +accusative +accusative +genitive +32378 nominative +32380 dative +nominative +nominative +32387 accusative +accusative +accusative +genitive +32392 nominative +accusative +accusative +nominative +nominative +32399 genitive +32401 genitive +32404 nominative +nominative +32407 dative +dative +genitive +genitive +32412 accusative +accusative +32415 nominative +32418 genitive +genitive +genitive +32422 genitive +32424 nominative +32427 dative +dative +genitive +nominative +32432 genitive +32436 accusative +32439 nominative +32443 accusative +accusative +dative +32447 dative +dative +genitive +genitive +32452 accusative +accusative +32459 dative +nominative +genitive +genitive +genitive +32465 nominative +accusative +accusative +32469 accusative +accusative +32473 nominative +nominative +genitive +32477 accusative +genitive +32481 accusative +32483 dative +32485 accusative +32487 dative +accusative +32490 dative +accusative +32493 accusative +32495 dative +32497 accusative +genitive +accusative +32501 nominative +accusative +accusative +nominative +dative +dative +32509 genitive +nominative +nominative +32513 dative +dative +32516 nominative +dative +32522 accusative +32526 nominative +nominative +nominative +32530 dative +dative +genitive +32534 nominative +32536 dative +32540 dative +dative +genitive +genitive +dative +dative +32547 genitive +genitive +genitive +32553 nominative +genitive +32556 nominative +32560 accusative +32563 dative +accusative +accusative +accusative +vocative +32569 accusative +32571 accusative +accusative +32574 accusative +accusative +32580 dative +dative +genitive +32587 dative +32589 nominative +nominative +nominative +32594 dative +dative +genitive +32599 genitive +32601 dative +nominative +nominative +32606 dative +dative +genitive +32610 dative +dative +32614 nominative +nominative +32617 accusative +accusative +32620 accusative +32624 nominative +nominative +32627 accusative +accusative +accusative +32632 accusative +genitive +32635 nominative +32639 accusative +genitive +genitive +32643 accusative +accusative +32646 nominative +nominative +32650 dative +dative +32653 genitive +genitive +genitive +32657 nominative +genitive +32662 nominative +nominative +nominative +32667 genitive +nominative +32670 dative +dative +nominative +accusative +32675 nominative +32677 accusative +32679 genitive +genitive +32683 accusative +32685 genitive +genitive +genitive +32689 genitive +nominative +nominative +genitive +32696 accusative +32698 nominative +nominative +32701 genitive +genitive +32707 accusative +accusative +genitive +genitive +32713 nominative +accusative +32716 dative +dative +32721 dative +dative +genitive +32726 dative +32728 nominative +nominative +genitive +32733 dative +dative +32736 nominative +nominative +accusative +genitive +genitive +32743 dative +dative +32746 nominative +dative +32749 dative +vocative +vocative +32754 accusative +32756 accusative +nominative +32759 nominative +nominative +genitive +genitive +32765 dative +nominative +nominative +nominative +32773 genitive +32775 nominative +nominative +nominative +accusative +32780 accusative +accusative +32784 genitive +accusative +nominative +accusative +32790 nominative +32792 accusative +32796 accusative +nominative +nominative +nominative +nominative +nominative +32804 dative +32806 dative +32808 dative +dative +dative +32815 nominative +32817 genitive +32819 accusative +accusative +genitive +genitive +32824 nominative +32826 genitive +genitive +32830 accusative +accusative +genitive +32834 nominative +genitive +genitive +32838 nominative +dative +dative +32843 accusative +32845 genitive +32847 nominative +32849 genitive +32851 dative +dative +32855 accusative +32858 nominative +32860 dative +32862 genitive +genitive +genitive +nominative +nominative +32868 accusative +dative +dative +32872 accusative +32874 accusative +32876 nominative +dative +dative +genitive +accusative +accusative +nominative +32884 accusative +32888 nominative +32890 genitive +nominative +32893 nominative +32895 nominative +32897 nominative +nominative +genitive +genitive +32902 nominative +32905 accusative +32909 accusative +accusative +accusative +32914 genitive +genitive +nominative +32919 accusative +accusative +32922 nominative +nominative +32925 accusative +32929 genitive +32932 accusative +genitive +32937 genitive +32939 nominative +32942 accusative +32945 dative +dative +dative +32949 accusative +accusative +accusative +genitive +genitive +32957 accusative +32961 nominative +32963 accusative +accusative +genitive +genitive +32970 dative +accusative +accusative +32974 dative +32977 accusative +accusative +genitive +genitive +32982 nominative +32984 nominative +32986 accusative +accusative +genitive +32991 accusative +32993 accusative +32995 accusative +accusative +32998 nominative +nominative +33001 genitive +nominative +33004 accusative +accusative +33007 nominative +33009 accusative +genitive +genitive +nominative +33014 genitive +33016 accusative +33018 genitive +genitive +33021 accusative +33023 nominative +33025 genitive +genitive +33028 accusative +accusative +33033 nominative +33036 accusative +accusative +33040 accusative +accusative +33044 accusative +accusative +genitive +33048 accusative +33050 nominative +nominative +33053 vocative +33055 genitive +genitive +nominative +accusative +33062 dative +dative +genitive +33066 accusative +accusative +33069 accusative +nominative +33072 accusative +genitive +accusative +33077 nominative +nominative +genitive +33082 dative +dative +33085 dative +dative +dative +genitive +accusative +33091 dative +33096 accusative +accusative +accusative +33101 accusative +33103 nominative +nominative +nominative +33107 dative +dative +genitive +nominative +33113 genitive +33115 nominative +nominative +33118 vocative +33120 nominative +33122 accusative +33124 accusative +accusative +33127 dative +33129 dative +dative +genitive +genitive +dative +33138 accusative +33140 accusative +accusative +genitive +nominative +33145 nominative +dative +dative +33151 accusative +accusative +nominative +nominative +33158 genitive +33160 accusative +33162 nominative +33164 nominative +accusative +accusative +33168 accusative +accusative +nominative +accusative +33173 dative +33177 dative +33179 accusative +33181 dative +genitive +genitive +33186 nominative +nominative +genitive +33190 nominative +accusative +accusative +nominative +33195 accusative +33197 genitive +nominative +vocative +33203 accusative +33206 nominative +accusative +accusative +33210 genitive +nominative +33216 nominative +nominative +33220 genitive +33222 nominative +33224 dative +dative +33228 nominative +33230 accusative +dative +dative +33236 genitive +genitive +genitive +33241 nominative +33243 accusative +dative +33248 nominative +nominative +33251 genitive +33254 nominative +nominative +33260 genitive +genitive +genitive +33264 nominative +33266 nominative +33268 dative +dative +33271 nominative +33275 dative +genitive +genitive +33279 nominative +33281 nominative +33284 nominative +nominative +33287 nominative +nominative +33290 nominative +33292 genitive +genitive +genitive +genitive +33297 genitive +33299 genitive +33301 nominative +genitive +33305 accusative +33307 accusative +33310 nominative +nominative +33313 genitive +accusative +nominative +33317 nominative +33320 accusative +33325 genitive +33328 nominative +genitive +33331 accusative +33333 accusative +accusative +nominative +33337 accusative +accusative +33340 genitive +genitive +33343 accusative +33345 dative +dative +33348 accusative +accusative +33351 genitive +genitive +33354 nominative +accusative +accusative +genitive +33359 vocative +33361 dative +nominative +nominative +genitive +33368 nominative +nominative +33371 nominative +nominative +nominative +nominative +33376 nominative +nominative +33379 accusative +nominative +33382 accusative +33386 nominative +nominative +nominative +33390 nominative +nominative +nominative +accusative +accusative +genitive +nominative +33399 accusative +accusative +33403 dative +dative +genitive +nominative +33408 nominative +33411 dative +nominative +nominative +genitive +33424 nominative +nominative +genitive +genitive +accusative +33431 genitive +genitive +33434 accusative +33436 dative +dative +dative +33442 nominative +accusative +accusative +genitive +33448 accusative +accusative +genitive +33453 nominative +33455 genitive +nominative +33458 accusative +33462 accusative +accusative +genitive +nominative +accusative +accusative +33469 nominative +33471 accusative +33474 accusative +accusative +33478 genitive +nominative +33482 accusative +33486 accusative +33490 accusative +dative +accusative +accusative +33495 accusative +accusative +33499 dative +33501 dative +33503 nominative +accusative +nominative +33507 dative +33510 accusative +accusative +nominative +dative +33515 dative +dative +genitive +33520 nominative +nominative +genitive +33524 genitive +nominative +33527 nominative +33529 genitive +33532 nominative +nominative +33535 nominative +nominative +genitive +33539 accusative +accusative +genitive +nominative +33544 accusative +33546 genitive +genitive +33549 genitive +33554 nominative +nominative +nominative +33559 accusative +33561 accusative +genitive +33564 nominative +nominative +33567 nominative +33569 nominative +33573 accusative +33575 accusative +33577 accusative +33579 nominative +33582 accusative +nominative +nominative +genitive +33587 accusative +33589 accusative +33593 nominative +genitive +genitive +33597 nominative +nominative +33603 nominative +nominative +33607 accusative +33610 accusative +accusative +genitive +genitive +33615 dative +nominative +nominative +33619 genitive +33625 nominative +33630 genitive +nominative +nominative +33636 dative +dative +dative +33642 accusative +33644 accusative +33646 nominative +accusative +33649 genitive +genitive +nominative +33654 accusative +accusative +33660 accusative +accusative +33664 dative +dative +33668 nominative +nominative +nominative +33672 genitive +genitive +33675 nominative +33677 accusative +accusative +33680 accusative +accusative +33686 nominative +nominative +nominative +nominative +accusative +accusative +33693 nominative +33696 nominative +nominative +33700 accusative +accusative +33703 accusative +accusative +nominative +33707 nominative +nominative +accusative +33711 accusative +33714 nominative +nominative +nominative +33721 dative +33723 accusative +33725 genitive +33730 nominative +nominative +genitive +accusative +accusative +nominative +dative +dative +33739 nominative +genitive +genitive +33743 accusative +33745 accusative +33748 dative +dative +33751 nominative +33753 accusative +33755 nominative +nominative +33759 accusative +accusative +33762 nominative +33765 nominative +33767 nominative +33769 genitive +nominative +33774 accusative +accusative +genitive +genitive +33779 accusative +accusative +genitive +genitive +nominative +33787 dative +33789 genitive +accusative +33796 accusative +accusative +accusative +33801 dative +33803 nominative +genitive +genitive +nominative +nominative +genitive +genitive +33813 dative +dative +33816 accusative +33818 accusative +accusative +33824 nominative +33827 nominative +nominative +genitive +nominative +nominative +33833 nominative +33836 accusative +nominative +nominative +33840 nominative +nominative +33844 dative +dative +33850 genitive +33852 nominative +33854 accusative +accusative +genitive +33859 dative +dative +dative +accusative +dative +accusative +accusative +33870 accusative +accusative +33873 nominative +33877 nominative +nominative +33880 accusative +33882 accusative +33885 dative +dative +33890 accusative +33895 nominative +accusative +accusative +33899 dative +33901 accusative +accusative +genitive +33905 nominative +33909 nominative +nominative +genitive +33913 nominative +33915 genitive +33919 accusative +33921 accusative +33923 dative +dative +33928 dative +dative +dative +33932 accusative +33934 accusative +accusative +33939 nominative +33941 dative +dative +genitive +genitive +33948 nominative +33950 accusative +accusative +genitive +33954 nominative +33956 genitive +33958 accusative +33960 accusative +33962 accusative +accusative +33966 accusative +33968 accusative +accusative +accusative +genitive +33973 accusative +33975 accusative +33977 accusative +33979 accusative +33981 accusative +33983 accusative +33985 accusative +genitive +33988 accusative +accusative +accusative +accusative +33993 accusative +genitive +33996 accusative +accusative +nominative +34000 nominative +34002 nominative +34004 genitive +34007 genitive +genitive +34010 nominative +nominative +genitive +genitive +34015 nominative +nominative +genitive +genitive +34020 genitive +genitive +genitive +34024 genitive +34026 genitive +genitive +genitive +34030 genitive +nominative +34034 genitive +34038 genitive +genitive +genitive +34042 nominative +nominative +34045 genitive +genitive +34049 nominative +nominative +nominative +34054 genitive +34056 nominative +34058 genitive +34062 accusative +34064 nominative +nominative +accusative +accusative +genitive +34070 accusative +accusative +genitive +34074 nominative +nominative +nominative +34078 nominative +34080 nominative +nominative +genitive +genitive +nominative +nominative +nominative +34090 nominative +nominative +nominative +34096 nominative +34100 accusative +nominative +nominative +34106 accusative +34111 accusative +accusative +genitive +34115 accusative +34117 genitive +genitive +genitive +genitive +34123 dative +dative +dative +34130 nominative +nominative +genitive +nominative +34135 dative +dative +34139 accusative +accusative +34142 dative +dative +nominative +nominative +genitive +34149 dative +dative +dative +34154 accusative +accusative +genitive +34158 dative +nominative +nominative +34165 nominative +nominative +34175 accusative +34177 nominative +nominative +nominative +34182 accusative +accusative +34185 dative +dative +nominative +nominative +genitive +34192 dative +dative +dative +34196 accusative +accusative +genitive +34201 dative +dative +accusative +34205 accusative +accusative +accusative +34210 genitive +genitive +accusative +dative +dative +accusative +34217 accusative +accusative +34221 accusative +accusative +34225 genitive +genitive +genitive +accusative +accusative +34231 accusative +accusative +34235 dative +dative +accusative +34241 genitive +genitive +accusative +accusative +34252 dative +nominative +nominative +34256 dative +34261 accusative +accusative +accusative +nominative +nominative +dative +34270 nominative +nominative +accusative +accusative +accusative +34280 accusative +accusative +accusative +nominative +nominative +dative +34288 nominative +nominative +accusative +accusative +34297 genitive +34300 nominative +nominative +dative +34305 nominative +dative +34310 accusative +accusative +34314 accusative +accusative +genitive +34321 accusative +nominative +34325 nominative +nominative +genitive +nominative +34331 nominative +genitive +34334 nominative +nominative +34338 accusative +accusative +34341 accusative +34343 nominative +34345 nominative +nominative +genitive +nominative +34370 dative +accusative +accusative +accusative +accusative +accusative +34378 accusative +accusative +genitive +34382 dative +dative +34386 dative +34390 accusative +dative +34394 nominative +accusative +34398 nominative +34400 accusative +34404 nominative +34406 accusative +accusative +34409 nominative +nominative +34413 nominative +nominative +genitive +34417 accusative +34419 accusative +accusative +accusative +34423 dative +dative +genitive +genitive +genitive +34429 accusative +accusative +accusative +34433 dative +dative +dative +34441 dative +dative +genitive +vocative +34447 accusative +accusative +accusative +34451 dative +dative +genitive +nominative +accusative +34457 dative +dative +genitive +accusative +34462 nominative +vocative +34465 accusative +accusative +accusative +34469 genitive +genitive +genitive +34475 accusative +accusative +accusative +34479 dative +dative +genitive +genitive +genitive +34488 nominative +nominative +nominative +accusative +accusative +34495 nominative +nominative +nominative +accusative +accusative +34501 nominative +nominative +34504 genitive +genitive +genitive +34511 genitive +34513 accusative +34516 genitive +accusative +34519 nominative +nominative +nominative +34523 genitive +genitive +genitive +genitive +genitive +34529 accusative +accusative +34532 nominative +nominative +34535 genitive +genitive +34538 accusative +accusative +34542 genitive +genitive +34545 nominative +nominative +genitive +34549 accusative +accusative +34552 vocative +vocative +34557 accusative +34559 nominative +nominative +nominative +34563 accusative +34565 nominative +genitive +genitive +genitive +34570 nominative +accusative +34573 dative +dative +34576 nominative +nominative +34579 dative +dative +accusative +nominative +34588 accusative +34590 accusative +accusative +34593 genitive +genitive +34596 nominative +nominative +dative +dative +dative +34605 accusative +34607 accusative +34610 accusative +34612 nominative +nominative +34616 nominative +nominative +34619 dative +dative +accusative +34623 accusative +accusative +34626 genitive +dative +34629 nominative +nominative +34632 nominative +34636 nominative +nominative +genitive +genitive +genitive +nominative +34644 accusative +accusative +accusative +genitive +34649 accusative +accusative +genitive +genitive +34655 accusative +34657 genitive +genitive +nominative +34661 nominative +34664 nominative +34666 dative +nominative +34669 nominative +34671 genitive +genitive +34675 accusative +accusative +genitive +genitive +nominative +accusative +34682 nominative +34684 accusative +accusative +genitive +34688 nominative +nominative +34691 accusative +accusative +34694 accusative +34696 nominative +34698 nominative +34700 dative +34702 accusative +34705 accusative +accusative +genitive +34709 accusative +accusative +nominative +34713 dative +34715 nominative +nominative +34719 dative +34722 genitive +34724 accusative +genitive +34727 genitive +genitive +34730 accusative +nominative +nominative +nominative +dative +vocative +34741 nominative +34744 accusative +accusative +genitive +34750 accusative +34753 accusative +34757 dative +34760 nominative +nominative +genitive +34765 nominative +34767 nominative +34769 accusative +nominative +nominative +34773 accusative +accusative +34777 dative +34782 dative +34787 dative +dative +genitive +34791 accusative +34795 nominative +accusative +nominative +nominative +34800 accusative +34802 nominative +dative +dative +dative +dative +34809 dative +34812 dative +dative +accusative +accusative +34818 nominative +34820 accusative +accusative +nominative +nominative +34825 accusative +accusative +accusative +34831 dative +34835 accusative +accusative +accusative +34840 dative +nominative +nominative +genitive +34845 nominative +nominative +34850 dative +dative +genitive +genitive +34857 nominative +nominative +nominative +dative +dative +genitive +34864 nominative +34866 nominative +34868 nominative +genitive +genitive +nominative +34874 dative +34876 nominative +accusative +nominative +nominative +34882 dative +34885 dative +34889 nominative +34891 genitive +genitive +34894 nominative +nominative +34899 vocative +dative +34905 nominative +nominative +34912 accusative +dative +dative +genitive +34918 nominative +accusative +34922 accusative +accusative +nominative +34926 nominative +nominative +34930 dative +34934 nominative +nominative +accusative +accusative +genitive +34941 nominative +nominative +nominative +34945 genitive +34947 dative +dative +dative +34951 dative +dative +dative +34956 dative +nominative +nominative +genitive +34961 genitive +genitive +34964 nominative +34966 accusative +genitive +genitive +genitive +nominative +nominative +34974 accusative +accusative +nominative +nominative +34979 nominative +nominative +34982 accusative +34985 nominative +34987 accusative +nominative +nominative +34991 nominative +nominative +nominative +34995 accusative +34997 accusative +nominative +nominative +35001 nominative +nominative +35004 accusative +35007 dative +dative +dative +35011 accusative +35013 genitive +35015 genitive +35017 genitive +genitive +35020 dative +dative +35025 nominative +35027 dative +nominative +35030 dative +accusative +35035 nominative +35037 nominative +35039 nominative +35042 nominative +35044 nominative +35046 nominative +35049 nominative +35052 nominative +35056 dative +35058 genitive +genitive +genitive +genitive +35065 accusative +accusative +35068 genitive +accusative +35073 accusative +accusative +accusative +35077 genitive +accusative +35080 accusative +35083 accusative +35085 dative +dative +accusative +35089 nominative +35091 dative +dative +35094 dative +nominative +35097 dative +dative +35101 accusative +35104 accusative +35107 dative +35109 accusative +genitive +nominative +35114 genitive +35118 accusative +accusative +genitive +35122 genitive +genitive +nominative +35126 accusative +accusative +genitive +35130 genitive +35132 dative +nominative +35135 dative +genitive +genitive +nominative +35141 nominative +nominative +35144 dative +dative +genitive +genitive +nominative +genitive +35152 nominative +nominative +nominative +35156 nominative +nominative +nominative +35160 accusative +accusative +nominative +accusative +accusative +genitive +35167 nominative +nominative +35170 nominative +nominative +accusative +accusative +genitive +genitive +35178 accusative +35180 nominative +35182 genitive +35184 dative +35186 accusative +accusative +genitive +genitive +genitive +35192 dative +35194 nominative +nominative +35197 dative +dative +35200 dative +dative +35203 dative +dative +nominative +35208 dative +35218 nominative +nominative +nominative +35222 nominative +accusative +35225 nominative +accusative +35229 accusative +35232 nominative +nominative +genitive +genitive +nominative +35238 nominative +35242 nominative +nominative +35245 nominative +nominative +genitive +35249 genitive +35252 nominative +nominative +35255 genitive +genitive +genitive +genitive +35261 nominative +genitive +genitive +accusative +35268 genitive +35270 nominative +35272 accusative +accusative +genitive +genitive +35279 nominative +nominative +35283 dative +dative +nominative +35287 nominative +35291 dative +dative +genitive +genitive +nominative +accusative +genitive +35299 nominative +35302 accusative +accusative +genitive +nominative +35307 dative +dative +35310 accusative +accusative +genitive +35314 dative +dative +genitive +genitive +genitive +35322 accusative +accusative +genitive +35327 dative +dative +35330 nominative +nominative +nominative +nominative +nominative +accusative +35338 dative +nominative +35341 nominative +35343 nominative +35346 nominative +35348 nominative +nominative +nominative +nominative +35353 genitive +35355 nominative +35358 nominative +nominative +nominative +35363 accusative +vocative +35366 dative +accusative +35370 nominative +vocative +35375 nominative +35377 dative +dative +nominative +nominative +35382 accusative +accusative +35385 nominative +nominative +35389 genitive +genitive +35392 dative +35395 nominative +genitive +accusative +35399 accusative +nominative +nominative +35405 dative +accusative +accusative +35410 nominative +35412 dative +35416 nominative +35418 accusative +accusative +dative +dative +35424 accusative +accusative +accusative +35429 genitive +accusative +accusative +accusative +dative +35435 accusative +35439 nominative +dative +dative +35443 genitive +accusative +accusative +35447 dative +dative +genitive +35451 accusative +dative +35456 nominative +35458 genitive +35462 nominative +genitive +accusative +accusative +dative +accusative +accusative +genitive +35473 nominative +dative +35476 accusative +accusative +genitive +genitive +35482 dative +35484 nominative +nominative +genitive +nominative +nominative +35491 accusative +35493 dative +nominative +35496 accusative +35500 dative +35502 genitive +nominative +nominative +35507 nominative +nominative +35511 dative +nominative +nominative +35515 nominative +35517 accusative +35522 accusative +accusative +nominative +nominative +genitive +35528 accusative +35531 accusative +35535 dative +35538 nominative +35541 accusative +35543 accusative +nominative +35546 nominative +accusative +accusative +genitive +genitive +35553 dative +nominative +35557 nominative +nominative +nominative +35561 nominative +35563 genitive +genitive +35566 genitive +nominative +nominative +nominative +nominative +35572 genitive +nominative +35577 nominative +nominative +genitive +genitive +genitive +35583 nominative +35585 nominative +nominative +nominative +35589 dative +35591 genitive +genitive +dative +35595 genitive +genitive +genitive +35599 genitive +35601 accusative +genitive +35604 accusative +35607 genitive +35609 nominative +nominative +genitive +35613 accusative +accusative +genitive +35618 dative +35620 accusative +nominative +35625 accusative +accusative +35630 nominative +nominative +genitive +genitive +35635 accusative +35637 nominative +35640 accusative +accusative +35643 nominative +35646 accusative +35649 accusative +35651 nominative +35654 dative +genitive +genitive +35658 nominative +nominative +nominative +35662 accusative +35664 nominative +35667 accusative +accusative +accusative +accusative +35672 nominative +35674 accusative +accusative +accusative +nominative +35679 nominative +nominative +accusative +35686 accusative +nominative +nominative +genitive +nominative +35692 nominative +nominative +nominative +35696 nominative +35698 dative +35701 accusative +accusative +genitive +genitive +genitive +genitive +35708 dative +dative +35711 dative +35713 nominative +35717 nominative +35722 nominative +nominative +nominative +nominative +nominative +35728 nominative +nominative +genitive +genitive +35733 nominative +35735 accusative +accusative +35738 nominative +nominative +35742 nominative +nominative +35746 accusative +accusative +35749 genitive +genitive +genitive +35754 nominative +35757 nominative +35759 genitive +genitive +nominative +35765 genitive +35767 accusative +accusative +35770 nominative +accusative +35774 nominative +35776 accusative +35780 dative +genitive +35784 nominative +35786 accusative +accusative +nominative +nominative +35791 nominative +nominative +35795 genitive +35797 genitive +35799 genitive +genitive +genitive +nominative +35808 nominative +35810 dative +dative +dative +nominative +35815 nominative +35817 dative +dative +35820 dative +nominative +accusative +accusative +35828 dative +35830 nominative +accusative +nominative +35834 accusative +dative +35838 genitive +35842 genitive +35845 nominative +nominative +35848 accusative +accusative +35853 nominative +nominative +35856 nominative +35859 nominative +nominative +35866 accusative +35874 nominative +35877 dative +35880 nominative +35884 accusative +35889 genitive +35893 accusative +nominative +nominative +35897 nominative +nominative +genitive +35904 dative +35906 accusative +accusative +35910 dative +nominative +nominative +genitive +35915 nominative +nominative +genitive +35921 accusative +nominative +35924 nominative +nominative +35928 accusative +nominative +genitive +35932 nominative +genitive +nominative +35936 nominative +accusative +accusative +genitive +genitive +nominative +35943 nominative +35947 dative +genitive +genitive +35951 nominative +35954 accusative +35956 nominative +nominative +genitive +35962 accusative +35965 accusative +35967 genitive +genitive +35972 genitive +genitive +35977 nominative +genitive +35980 accusative +accusative +35987 nominative +35989 accusative +nominative +vocative +vocative +35995 nominative +nominative +35998 dative +dative +36001 dative +dative +genitive +genitive +36009 nominative +36012 dative +36014 nominative +nominative +genitive +36018 nominative +36020 nominative +36022 accusative +36024 nominative +nominative +36029 dative +dative +36032 dative +dative +36037 dative +36041 accusative +accusative +genitive +genitive +nominative +36048 genitive +genitive +36051 dative +dative +36054 accusative +accusative +36057 nominative +nominative +36060 genitive +genitive +nominative +accusative +36065 dative +dative +36069 accusative +36072 dative +36077 dative +dative +36080 nominative +accusative +accusative +nominative +36085 dative +36087 dative +dative +36090 nominative +dative +36093 dative +vocative +vocative +genitive +genitive +genitive +genitive +36101 genitive +36103 accusative +36107 dative +dative +dative +dative +36113 genitive +genitive +36116 dative +dative +36119 accusative +36122 dative +36124 dative +nominative +36127 nominative +accusative +accusative +36132 genitive +genitive +36135 accusative +accusative +36139 accusative +nominative +nominative +nominative +dative +nominative +36147 nominative +36149 nominative +36152 nominative +nominative +36155 accusative +36158 accusative +36162 dative +36164 accusative +accusative +36170 nominative +genitive +genitive +nominative +36175 dative +dative +36179 accusative +36182 dative +36184 accusative +36188 dative +36190 nominative +nominative +nominative +36194 genitive +genitive +36198 accusative +accusative +36202 nominative +nominative +36205 genitive +genitive +36208 accusative +accusative +36213 nominative +nominative +nominative +accusative +accusative +36222 accusative +accusative +36226 accusative +accusative +36231 accusative +accusative +36236 accusative +accusative +36240 accusative +accusative +accusative +36244 genitive +nominative +nominative +36248 accusative +36250 accusative +36252 accusative +accusative +genitive +genitive +36260 dative +nominative +nominative +36265 nominative +nominative +36269 nominative +nominative +nominative +genitive +genitive +genitive +genitive +accusative +36279 genitive +36281 dative +dative +36285 nominative +nominative +36288 accusative +36292 genitive +nominative +nominative +36296 genitive +36298 nominative +nominative +36302 dative +36305 accusative +nominative +36309 accusative +accusative +genitive +36314 accusative +dative +36317 nominative +nominative +36322 accusative +accusative +accusative +nominative +accusative +36328 dative +nominative +nominative +36333 dative +36335 accusative +accusative +36338 accusative +nominative +nominative +36342 nominative +36344 nominative +accusative +36349 nominative +dative +nominative +nominative +36354 nominative +nominative +genitive +genitive +36360 nominative +36362 accusative +accusative +genitive +36366 accusative +36369 accusative +accusative +genitive +36373 nominative +nominative +36376 genitive +36379 dative +36381 nominative +36385 dative +36387 accusative +nominative +nominative +36391 accusative +36393 nominative +nominative +36396 dative +genitive +36399 genitive +36401 nominative +36405 genitive +36407 nominative +36410 genitive +genitive +genitive +genitive +genitive +36418 nominative +nominative +genitive +genitive +genitive +36425 nominative +nominative +nominative +nominative +nominative +genitive +36432 genitive +genitive +36435 nominative +nominative +vocative +nominative +nominative +36441 accusative +36445 nominative +nominative +36449 genitive +nominative +36452 nominative +36454 accusative +accusative +36457 genitive +36459 nominative +nominative +nominative +36465 nominative +36468 nominative +dative +36471 accusative +accusative +36474 genitive +36477 genitive +genitive +genitive +36485 nominative +36487 dative +vocative +nominative +nominative +genitive +36493 accusative +36496 accusative +36498 genitive +genitive +36501 nominative +36503 genitive +genitive +nominative +36508 nominative +nominative +genitive +36513 accusative +accusative +36516 nominative +nominative +nominative +36520 dative +36523 accusative +36528 nominative +36530 accusative +accusative +36535 accusative +36537 dative +36540 accusative +36542 accusative +36544 accusative +36546 accusative +accusative +genitive +genitive +36551 accusative +accusative +36554 nominative +36558 accusative +36560 nominative +36570 genitive +nominative +36575 nominative +nominative +genitive +genitive +genitive +36581 nominative +nominative +nominative +36587 nominative +nominative +genitive +36595 dative +36600 nominative +nominative +genitive +36604 nominative +36606 dative +dative +36609 accusative +accusative +36612 nominative +accusative +36616 dative +accusative +36619 accusative +36621 accusative +accusative +accusative +36625 accusative +36629 accusative +36631 accusative +accusative +genitive +genitive +36640 accusative +accusative +36644 accusative +accusative +36647 accusative +36649 accusative +36651 accusative +36653 accusative +36657 accusative +36662 accusative +accusative +36672 nominative +36675 accusative +nominative +36678 genitive +genitive +genitive +accusative +accusative +36684 genitive +genitive +genitive +36689 accusative +36691 accusative +36693 nominative +36696 accusative +accusative +nominative +36700 nominative +36704 nominative +nominative +nominative +accusative +accusative +accusative +36713 accusative +36716 genitive +36718 nominative +36721 genitive +36724 genitive +36726 nominative +36729 genitive +36731 nominative +nominative +genitive +genitive +36738 nominative +accusative +nominative +36743 nominative +36745 nominative +36747 genitive +36749 accusative +36753 accusative +36755 nominative +nominative +nominative +36759 dative +accusative +36763 nominative +accusative +36767 accusative +36769 accusative +accusative +accusative +36773 nominative +nominative +nominative +36777 dative +36779 nominative +accusative +36782 dative +36784 genitive +genitive +genitive +genitive +36789 accusative +accusative +genitive +accusative +36795 nominative +nominative +36800 nominative +nominative +36804 dative +36806 accusative +accusative +36809 nominative +36811 accusative +dative +accusative +36815 accusative +36819 accusative +36823 dative +dative +36829 accusative +36831 dative +36833 nominative +36835 nominative +36839 dative +nominative +36842 nominative +36845 nominative +36849 nominative +nominative +36853 accusative +accusative +accusative +accusative +accusative +36861 nominative +nominative +36866 accusative +accusative +genitive +36870 accusative +accusative +36880 accusative +36882 nominative +accusative +36885 accusative +36887 accusative +36889 accusative +nominative +36892 accusative +accusative +36895 accusative +36900 dative +dative +36903 dative +dative +36909 nominative +36912 nominative +nominative +dative +genitive +nominative +36921 dative +36923 accusative +accusative +36926 accusative +36928 dative +nominative +nominative +36933 accusative +nominative +accusative +accusative +36938 nominative +nominative +36942 nominative +nominative +36945 accusative +accusative +accusative +36949 nominative +accusative +36952 nominative +36954 nominative +nominative +genitive +genitive +36961 dative +36963 nominative +accusative +accusative +36969 nominative +nominative +36972 accusative +accusative +genitive +genitive +36977 nominative +nominative +dative +36981 dative +36983 accusative +nominative +36987 accusative +accusative +genitive +genitive +accusative +36996 genitive +genitive +36999 genitive +37001 genitive +37005 dative +dative +dative +37012 accusative +37014 nominative +37017 genitive +37020 accusative +37023 accusative +accusative +genitive +37027 accusative +37030 dative +37033 nominative +37035 accusative +accusative +genitive +37040 accusative +37043 nominative +37045 accusative +accusative +genitive +37049 genitive +nominative +37052 accusative +37054 accusative +37056 nominative +nominative +accusative +accusative +accusative +37062 accusative +nominative +37065 nominative +37068 nominative +37070 accusative +37072 accusative +accusative +accusative +accusative +nominative +nominative +genitive +genitive +37084 dative +dative +genitive +37088 genitive +genitive +37091 genitive +genitive +genitive +37096 dative +37099 nominative +genitive +37102 genitive +nominative +37107 genitive +37111 accusative +accusative +genitive +genitive +37118 accusative +accusative +accusative +37122 nominative +37125 nominative +accusative +37128 accusative +37130 accusative +37133 accusative +accusative +37139 dative +37141 accusative +nominative +nominative +genitive +genitive +genitive +nominative +37149 nominative +nominative +genitive +nominative +nominative +37156 nominative +37159 dative +nominative +37162 nominative +37164 nominative +nominative +nominative +37168 dative +37170 accusative +accusative +genitive +accusative +37176 dative +37179 nominative +nominative +37182 nominative +37184 dative +37186 nominative +dative +37189 nominative +37191 accusative +accusative +genitive +37195 accusative +37197 accusative +accusative +accusative +dative +37204 dative +37206 accusative +37208 genitive +37210 nominative +nominative +37213 accusative +accusative +vocative +nominative +37218 accusative +37223 accusative +accusative +accusative +dative +37228 accusative +dative +37231 accusative +dative +37234 nominative +accusative +37238 accusative +genitive +genitive +37242 nominative +37245 accusative +37249 dative +37251 accusative +37253 accusative +accusative +37256 nominative +37259 genitive +genitive +nominative +nominative +37264 nominative +nominative +genitive +nominative +nominative +genitive +37273 dative +37275 accusative +accusative +37278 nominative +nominative +37281 nominative +37284 dative +37287 dative +dative +dative +accusative +genitive +37295 dative +37297 dative +genitive +genitive +37301 genitive +genitive +37304 dative +nominative +nominative +37309 nominative +37311 genitive +genitive +37314 nominative +vocative +37317 genitive +37320 accusative +accusative +genitive +37324 nominative +dative +37329 nominative +37331 accusative +37337 accusative +37339 genitive +37344 genitive +nominative +accusative +37349 genitive +genitive +genitive +37354 accusative +37359 nominative +nominative +nominative +37364 vocative +vocative +37367 nominative +37372 accusative +37375 genitive +37378 accusative +accusative +genitive +37383 genitive +genitive +37386 accusative +nominative +nominative +37393 nominative +nominative +dative +dative +dative +dative +37401 accusative +accusative +37405 accusative +dative +dative +genitive +37411 nominative +37413 dative +dative +genitive +genitive +37418 genitive +genitive +37421 dative +dative +37426 accusative +accusative +genitive +37430 nominative +37432 accusative +accusative +genitive +accusative +accusative +accusative +37439 nominative +nominative +genitive +genitive +37446 accusative +genitive +37449 nominative +37451 accusative +accusative +accusative +37456 nominative +37458 genitive +37462 accusative +37466 accusative +37468 genitive +genitive +genitive +37474 dative +nominative +nominative +37478 nominative +genitive +37481 nominative +37483 nominative +nominative +nominative +accusative +accusative +genitive +genitive +genitive +nominative +accusative +37494 accusative +37496 dative +37499 dative +37501 nominative +37503 accusative +accusative +accusative +37507 dative +dative +genitive +accusative +37514 nominative +accusative +37518 accusative +accusative +accusative +37522 nominative +nominative +37525 dative +dative +nominative +nominative +37530 nominative +37532 nominative +nominative +nominative +37536 vocative +37538 accusative +37540 dative +dative +genitive +accusative +accusative +37547 accusative +37552 genitive +37556 accusative +nominative +37561 nominative +37565 genitive +37567 genitive +37572 dative +37574 accusative +accusative +genitive +genitive +genitive +37580 nominative +accusative +accusative +37584 genitive +37587 accusative +37590 accusative +37592 genitive +genitive +37595 nominative +37598 accusative +genitive +37602 dative +37606 accusative +37608 nominative +nominative +genitive +37612 nominative +37614 accusative +37616 nominative +nominative +nominative +nominative +37621 nominative +37623 vocative +37626 accusative +37629 genitive +genitive +37633 accusative +37635 nominative +37637 dative +37641 accusative +accusative +37644 genitive +genitive +37647 dative +dative +37650 nominative +37652 accusative +37654 dative +37660 dative +nominative +nominative +nominative +nominative +accusative +37668 nominative +nominative +genitive +genitive +accusative +37674 nominative +nominative +genitive +genitive +37681 accusative +accusative +37687 accusative +37689 dative +37691 nominative +37694 dative +37696 dative +37698 accusative +accusative +genitive +37703 dative +37705 accusative +accusative +37708 accusative +genitive +accusative +37712 nominative +nominative +37715 accusative +accusative +genitive +genitive +37722 nominative +37724 dative +vocative +37727 accusative +37729 dative +37731 dative +37733 accusative +accusative +genitive +37739 accusative +nominative +nominative +nominative +nominative +accusative +accusative +37747 accusative +37749 nominative +37751 accusative +37753 nominative +37755 dative +dative +genitive +genitive +37761 accusative +37763 nominative +nominative +accusative +37769 accusative +37773 genitive +genitive +37776 accusative +accusative +37779 accusative +37782 nominative +37787 accusative +37789 nominative +nominative +nominative +37793 nominative +nominative +nominative +37798 genitive +genitive +genitive +genitive +37803 accusative +37806 accusative +accusative +genitive +37812 accusative +37814 accusative +37816 dative +genitive +37820 accusative +37822 accusative +37824 accusative +37826 accusative +37828 accusative +accusative +37834 accusative +accusative +37837 accusative +37839 nominative +dative +dative +dative +37847 nominative +genitive +37851 accusative +nominative +nominative +genitive +37859 accusative +37863 dative +dative +dative +37867 nominative +37869 nominative +accusative +37872 genitive +37874 nominative +nominative +nominative +genitive +genitive +genitive +37883 genitive +37885 accusative +37889 accusative +accusative +37894 accusative +37896 accusative +accusative +dative +37901 accusative +37903 dative +accusative +37907 dative +37910 accusative +nominative +nominative +genitive +genitive +37918 accusative +accusative +37924 accusative +nominative +37927 accusative +accusative +genitive +37932 accusative +accusative +accusative +accusative +dative +37938 genitive +genitive +genitive +37942 accusative +accusative +37945 dative +37947 accusative +37951 nominative +nominative +genitive +genitive +37956 dative +37958 dative +37960 dative +dative +dative +nominative +37966 dative +dative +dative +37970 dative +vocative +37973 dative +vocative +37978 dative +37980 dative +37982 nominative +nominative +nominative +nominative +37987 dative +37991 dative +37993 dative +nominative +37997 dative +37999 dative +nominative +38003 dative +dative +38006 dative +38008 vocative +38010 nominative +38012 genitive +38015 genitive +genitive +38018 nominative +nominative +genitive +genitive +38024 nominative +nominative +accusative +accusative +38030 nominative +accusative +nominative +38034 accusative +accusative +accusative +38039 nominative +38042 genitive +nominative +vocative +38046 nominative +nominative +38049 dative +38051 dative +dative +genitive +38056 dative +38058 accusative +accusative +38061 accusative +38063 genitive +genitive +accusative +38068 dative +accusative +accusative +genitive +38074 genitive +38076 genitive +38079 accusative +accusative +accusative +genitive +genitive +38085 accusative +accusative +38092 dative +38096 nominative +nominative +dative +38103 nominative +nominative +genitive +38108 dative +dative +38111 dative +dative +dative +38115 dative +dative +dative +dative +38122 dative +vocative +vocative +genitive +genitive +38128 genitive +genitive +38132 accusative +38134 genitive +38136 genitive +38139 accusative +dative +38142 nominative +nominative +38146 nominative +38149 genitive +nominative +dative +38154 genitive +genitive +genitive +38158 nominative +38160 nominative +38162 nominative +nominative +38166 nominative +nominative +38169 nominative +38171 nominative +nominative +38175 nominative +nominative +38179 dative +38182 nominative +nominative +38185 nominative +38187 accusative +accusative +38190 accusative +38192 nominative +nominative +nominative +nominative +nominative +accusative +38201 dative +38203 nominative +nominative +38206 nominative +38209 accusative +nominative +38217 accusative +38224 nominative +nominative +38227 nominative +accusative +nominative +vocative +accusative +nominative +accusative +accusative +38237 nominative +38240 accusative +38242 dative +dative +nominative +38249 nominative +nominative +38253 accusative +accusative +accusative +genitive +38258 genitive +genitive +genitive +genitive +38264 dative +dative +dative +genitive +38270 dative +dative +dative +genitive +38276 dative +dative +dative +genitive +38281 accusative +38283 genitive +38285 accusative +38288 dative +38291 accusative +38296 nominative +nominative +38299 accusative +38302 accusative +accusative +38305 nominative +38307 genitive +38309 nominative +nominative +nominative +38313 nominative +nominative +38317 genitive +38319 accusative +38321 dative +38323 nominative +38325 nominative +accusative +38328 accusative +nominative +38331 nominative +accusative +38335 accusative +nominative +nominative +38340 dative +dative +dative +38344 nominative +accusative +38350 nominative +38352 accusative +accusative +nominative +38356 nominative +38359 nominative +nominative +nominative +38364 accusative +38366 nominative +38369 nominative +38371 accusative +accusative +genitive +nominative +accusative +38377 accusative +38379 nominative +accusative +38382 accusative +accusative +accusative +38386 accusative +38388 accusative +38391 genitive +38394 accusative +38396 nominative +38398 accusative +38400 dative +dative +38405 genitive +38407 accusative +38409 accusative +38411 nominative +38413 dative +38415 accusative +38417 dative +38419 dative +nominative +genitive +genitive +genitive +38426 genitive +genitive +38429 accusative +accusative +38432 nominative +38434 nominative +nominative +accusative +accusative +38439 genitive +38442 dative +nominative +nominative +38447 nominative +38452 dative +38454 accusative +nominative +38458 accusative +accusative +38461 nominative +nominative +dative +nominative +38466 accusative +38468 accusative +accusative +38471 dative +38473 nominative +nominative +nominative +nominative +38478 nominative +38480 accusative +accusative +genitive +genitive +38485 accusative +accusative +genitive +38489 nominative +nominative +38493 accusative +accusative +38496 nominative +38498 vocative +38501 dative +38503 nominative +nominative +genitive +accusative +accusative +38512 dative +38514 dative +38517 nominative +38519 dative +nominative +nominative +vocative +vocative +38528 accusative +38530 genitive +nominative +38534 genitive +38536 nominative +accusative +accusative +accusative +38541 nominative +38544 genitive +38548 dative +38550 accusative +accusative +38553 dative +dative +38558 nominative +genitive +genitive +genitive +38563 accusative +vocative +38566 accusative +38570 nominative +38572 accusative +accusative +genitive +38577 dative +38581 vocative +38583 nominative +nominative +genitive +38587 nominative +nominative +genitive +accusative +accusative +genitive +accusative +accusative +38596 dative +accusative +38599 accusative +38602 dative +accusative +accusative +genitive +38608 nominative +38610 dative +dative +dative +38616 accusative +38618 accusative +38622 accusative +nominative +38625 genitive +38627 accusative +38631 accusative +genitive +38635 dative +vocative +38638 dative +accusative +accusative +38642 nominative +genitive +38646 genitive +38648 accusative +38652 accusative +38654 dative +nominative +38657 nominative +38660 dative +accusative +38664 nominative +nominative +38668 nominative +nominative +genitive +38672 genitive +38674 accusative +accusative +38679 nominative +38681 dative +38683 dative +38688 dative +nominative +38691 accusative +38693 accusative +genitive +38697 accusative +accusative +genitive +nominative +38702 dative +genitive +38705 nominative +dative +38711 dative +38718 dative +38720 nominative +nominative +nominative +38725 nominative +nominative +38729 dative +dative +38733 accusative +38735 genitive +accusative +accusative +38739 nominative +nominative +accusative +38744 genitive +accusative +dative +38751 accusative +38753 dative +accusative +38757 nominative +nominative +nominative +38761 accusative +accusative +38764 dative +dative +genitive +dative +38769 nominative +nominative +nominative +38773 genitive +38775 accusative +accusative +dative +dative +accusative +38782 nominative +accusative +38785 nominative +38787 accusative +38790 genitive +genitive +genitive +38794 nominative +nominative +38798 nominative +nominative +38801 nominative +38803 genitive +38806 dative +dative +dative +genitive +genitive +38812 accusative +accusative +38815 nominative +nominative +accusative +38819 genitive +38822 genitive +38824 nominative +nominative +genitive +accusative +accusative +38830 dative +nominative +nominative +38834 accusative +nominative +38838 nominative +38840 accusative +38845 nominative +nominative +38848 accusative +38852 nominative +nominative +genitive +38858 dative +38860 accusative +accusative +accusative +38865 nominative +38867 dative +38869 accusative +accusative +nominative +nominative +genitive +38875 dative +38878 accusative +nominative +genitive +nominative +38886 dative +genitive +nominative +38890 accusative +accusative +38895 accusative +nominative +nominative +genitive +genitive +38901 nominative +nominative +nominative +38905 accusative +genitive +accusative +38909 dative +38911 nominative +nominative +genitive +38916 nominative +genitive +nominative +38920 accusative +accusative +accusative +genitive +38926 dative +38929 accusative +accusative +genitive +38933 nominative +38935 nominative +38937 genitive +38939 genitive +38942 nominative +38944 nominative +38946 genitive +38949 nominative +nominative +nominative +38954 genitive +genitive +38958 genitive +genitive +nominative +accusative +38964 nominative +38968 accusative +accusative +genitive +38974 nominative +38976 accusative +38978 accusative +38983 accusative +accusative +accusative +genitive +38989 nominative +38994 nominative +nominative +genitive +genitive +genitive +nominative +genitive +genitive +39005 dative +39007 accusative +accusative +nominative +accusative +nominative +nominative +39014 genitive +genitive +39017 dative +nominative +nominative +nominative +nominative +nominative +accusative +39025 nominative +accusative +39029 nominative +39032 nominative +nominative +nominative +accusative +accusative +genitive +genitive +39040 nominative +39042 genitive +genitive +genitive +39047 nominative +nominative +nominative +nominative +nominative +39053 accusative +39056 nominative +39059 dative +39062 nominative +nominative +genitive +39068 nominative +dative +dative +nominative +39075 nominative +nominative +genitive +genitive +dative +dative +dative +nominative +genitive +39086 dative +dative +39089 genitive +genitive +genitive +genitive +genitive +39096 accusative +39100 genitive +genitive +genitive +genitive +39105 accusative +accusative +genitive +39110 nominative +genitive +39113 nominative +nominative +39117 dative +dative +39120 genitive +genitive +genitive +39125 accusative +39129 accusative +accusative +genitive +39134 nominative +genitive +39137 nominative +accusative +nominative +39141 accusative +39145 accusative +accusative +39149 accusative +accusative +39152 nominative +nominative +accusative +accusative +39157 nominative +nominative +genitive +genitive +39162 nominative +nominative +genitive +39166 nominative +nominative +genitive +nominative +39172 nominative +nominative +nominative +genitive +nominative +39180 nominative +39183 nominative +nominative +genitive +nominative +39190 nominative +nominative +nominative +39194 dative +nominative +39199 nominative +nominative +genitive +nominative +nominative +39205 nominative +accusative +accusative +accusative +39210 nominative +nominative +39214 nominative +nominative +dative +dative +39219 accusative +39222 dative +39225 accusative +nominative +39230 dative +39232 nominative +39235 nominative +nominative +nominative +39241 accusative +39244 genitive +genitive +39248 nominative +nominative +39251 accusative +39253 nominative +nominative +nominative +accusative +39258 genitive +genitive +39261 genitive +genitive +39265 nominative +39267 genitive +39269 genitive +39271 genitive +vocative +39274 nominative +nominative +accusative +39279 accusative +39283 accusative +accusative +39286 accusative +39289 nominative +nominative +dative +39295 dative +dative +dative +39300 accusative +accusative +39303 accusative +accusative +39306 accusative +accusative +39310 accusative +accusative +39313 accusative +accusative +genitive +genitive +39319 accusative +39321 accusative +39325 dative +dative +dative +39330 accusative +accusative +39333 dative +dative +39336 accusative +accusative +39339 dative +dative +39342 dative +39346 nominative +nominative +nominative +nominative +39351 nominative +nominative +nominative +nominative +39359 nominative +nominative +genitive +genitive +39364 dative +vocative +accusative +nominative +39369 accusative +39372 nominative +39375 dative +dative +dative +39381 accusative +accusative +accusative +accusative +39386 nominative +dative +genitive +genitive +genitive +39393 dative +dative +39396 dative +39399 accusative +accusative +genitive +genitive +39404 nominative +nominative +genitive +39408 accusative +39410 nominative +39414 dative +dative +genitive +genitive +genitive +39421 nominative +39423 accusative +39425 nominative +39428 accusative +39430 nominative +nominative +genitive +genitive +39437 accusative +accusative +39440 accusative +39443 genitive +39449 nominative +nominative +genitive +genitive +genitive +nominative +nominative +39457 genitive +genitive +39460 genitive +genitive +genitive +39464 genitive +genitive +39467 genitive +genitive +genitive +genitive +39472 genitive +genitive +39475 genitive +genitive +39479 dative +39482 genitive +genitive +genitive +39486 dative +dative +dative +39491 accusative +accusative +genitive +genitive +nominative +39499 accusative +accusative +39503 genitive +genitive +39506 nominative +nominative +39509 nominative +nominative +39515 accusative +39517 genitive +nominative +accusative +39521 accusative +39523 genitive +genitive +genitive +39527 dative +genitive +genitive +genitive +genitive +genitive +39535 accusative +39539 accusative +accusative +genitive +accusative +39544 dative +39546 genitive +genitive +nominative +39550 nominative +genitive +genitive +39554 nominative +39556 nominative +nominative +39561 nominative +nominative +39566 genitive +accusative +39569 dative +dative +39573 dative +dative +39577 accusative +39579 accusative +accusative +39583 dative +dative +39587 genitive +genitive +39591 dative +dative +dative +genitive +39598 genitive +genitive +accusative +accusative +39604 accusative +39606 genitive +accusative +accusative +39612 dative +accusative +39616 accusative +39618 accusative +39620 accusative +accusative +39624 accusative +accusative +39628 dative +accusative +39633 nominative +39635 genitive +39638 nominative +39640 genitive +39643 nominative +39645 genitive +genitive +39649 nominative +nominative +genitive +genitive +genitive +nominative +39658 genitive +genitive +39663 dative +nominative +39666 nominative +39669 dative +39671 genitive +genitive +39674 nominative +nominative +genitive +genitive +39680 dative +39682 genitive +genitive +genitive +genitive +39687 nominative +nominative +accusative +39691 genitive +genitive +39695 genitive +genitive +genitive +genitive +39700 nominative +nominative +39703 accusative +39705 accusative +accusative +genitive +genitive +39710 dative +39712 dative +39714 accusative +accusative +accusative +dative +39723 accusative +39725 accusative +accusative +39728 accusative +accusative +39731 accusative +accusative +39737 accusative +39740 accusative +39743 nominative +nominative +nominative +39747 accusative +39749 dative +dative +dative +accusative +39757 nominative +39759 genitive +genitive +dative +vocative +39764 dative +dative +genitive +39769 genitive +accusative +accusative +39773 nominative +39775 dative +vocative +nominative +accusative +39780 accusative +39782 accusative +39784 accusative +39788 accusative +39793 genitive +genitive +39798 dative +39800 dative +nominative +nominative +genitive +39806 genitive +genitive +dative +39811 accusative +39813 accusative +nominative +genitive +genitive +genitive +nominative +nominative +39824 dative +nominative +accusative +39833 accusative +accusative +genitive +39838 accusative +39841 genitive +accusative +accusative +39845 accusative +39850 accusative +accusative +accusative +39854 accusative +accusative +genitive +39859 dative +dative +genitive +vocative +39864 accusative +accusative +accusative +39868 accusative +accusative +39876 dative +nominative +nominative +vocative +dative +dative +dative +accusative +accusative +genitive +39888 genitive +39890 accusative +39892 dative +39895 nominative +nominative +dative +39901 accusative +nominative +39906 accusative +accusative +genitive +39910 accusative +39912 dative +39915 dative +dative +accusative +39920 dative +dative +accusative +39925 nominative +nominative +nominative +39929 genitive +genitive +39932 nominative +nominative +genitive +genitive +39937 accusative +accusative +39944 dative +39947 nominative +39949 nominative +39951 nominative +nominative +39954 accusative +dative +39957 nominative +39959 genitive +genitive +39962 nominative +39964 genitive +nominative +39968 accusative +accusative +genitive +39972 accusative +39976 accusative +39978 accusative +39980 genitive +genitive +39984 accusative +accusative +39993 dative +39995 nominative +39997 dative +dative +dative +genitive +40003 accusative +genitive +40008 dative +accusative +accusative +accusative +40016 accusative +accusative +nominative +nominative +40022 dative +40024 accusative +vocative +40027 nominative +40030 accusative +40033 accusative +40039 accusative +nominative +nominative +nominative +genitive +genitive +40047 genitive +nominative +nominative +40053 genitive +40056 accusative +accusative +genitive +40060 nominative +40062 dative +40065 nominative +nominative +nominative +40070 nominative +nominative +genitive +40074 dative +accusative +accusative +40078 accusative +accusative +genitive +40083 accusative +40085 dative +accusative +40088 accusative +accusative +accusative +40092 dative +dative +40095 nominative +40099 nominative +40104 nominative +nominative +genitive +40109 nominative +nominative +genitive +40114 genitive +nominative +nominative +nominative +40119 nominative +nominative +nominative +40123 nominative +nominative +dative +dative +accusative +accusative +genitive +40133 genitive +genitive +40136 genitive +40138 genitive +40141 dative +nominative +nominative +nominative +nominative +accusative +accusative +nominative +nominative +nominative +40154 dative +40159 accusative +40161 nominative +40163 dative +40166 dative +dative +40170 dative +dative +dative +40177 nominative +40179 nominative +40181 accusative +40186 nominative +nominative +dative +dative +nominative +nominative +40197 accusative +accusative +genitive +40201 nominative +40203 nominative +40205 dative +dative +40209 nominative +nominative +genitive +genitive +40216 nominative +nominative +vocative +40220 accusative +accusative +accusative +accusative +40228 accusative +40231 nominative +nominative +40234 nominative +40236 nominative +nominative +nominative +nominative +nominative +accusative +40243 nominative +nominative +40246 genitive +genitive +genitive +genitive +40252 dative +accusative +accusative +nominative +nominative +nominative +nominative +accusative +accusative +40262 nominative +nominative +nominative +genitive +40269 dative +40272 dative +dative +dative +genitive +40277 accusative +40281 nominative +nominative +nominative +40285 dative +dative +genitive +40289 nominative +nominative +genitive +40296 accusative +accusative +40299 accusative +accusative +40308 nominative +nominative +genitive +genitive +genitive +40314 dative +dative +40320 dative +dative +40326 accusative +40328 accusative +accusative +genitive +40332 genitive +genitive +40336 nominative +nominative +nominative +nominative +nominative +accusative +accusative +genitive +genitive +genitive +40348 nominative +40350 nominative +40352 accusative +accusative +genitive +40356 accusative +40358 nominative +40360 nominative +40362 nominative +accusative +genitive +40366 accusative +40368 dative +dative +40371 nominative +nominative +40375 genitive +40377 dative +40379 accusative +accusative +40382 accusative +40384 accusative +40387 accusative +accusative +40390 accusative +40396 accusative +40403 genitive +40408 accusative +40411 dative +dative +40414 dative +40418 accusative +40421 nominative +40423 genitive +40427 dative +dative +nominative +40431 dative +40435 dative +40437 nominative +40439 dative +40441 nominative +40443 dative +nominative +40446 accusative +40448 nominative +40450 accusative +accusative +nominative +40454 accusative +accusative +genitive +40458 nominative +40460 accusative +accusative +40465 dative +dative +40469 accusative +accusative +40472 genitive +40476 nominative +40483 accusative +accusative +40487 nominative +40491 vocative +accusative +accusative +genitive +genitive +40497 genitive +genitive +40502 accusative +accusative +accusative +40509 accusative +40512 genitive +40515 accusative +accusative +40521 genitive +genitive +genitive +40525 accusative +40527 dative +dative +40530 accusative +40533 genitive +40537 accusative +40539 accusative +accusative +40542 nominative +nominative +accusative +40546 dative +dative +40549 nominative +nominative +accusative +40554 accusative +40556 dative +40563 accusative +accusative +accusative +40569 nominative +40571 dative +dative +dative +nominative +dative +40577 genitive +genitive +genitive +accusative +accusative +nominative +40585 genitive +genitive +genitive +40589 nominative +40591 dative +40594 nominative +nominative +nominative +nominative +40599 accusative +accusative +accusative +40604 accusative +40608 dative +40613 nominative +40617 nominative +nominative +40622 accusative +40624 nominative +nominative +40627 dative +dative +40631 accusative +40634 nominative +nominative +40638 accusative +accusative +accusative +accusative +accusative +accusative +40646 dative +40651 nominative +40656 accusative +accusative +accusative +accusative +40661 nominative +accusative +40664 dative +dative +genitive +40669 nominative +accusative +40672 dative +40679 accusative +accusative +40682 accusative +accusative +40685 genitive +40687 nominative +accusative +40690 dative +dative +dative +40697 accusative +40699 accusative +40701 accusative +accusative +40705 nominative +nominative +40708 dative +vocative +40711 accusative +40713 accusative +accusative +accusative +40717 genitive +40720 accusative +40723 accusative +40727 accusative +40729 accusative +accusative +40735 accusative +40738 nominative +40740 dative +genitive +genitive +40744 dative +dative +40748 nominative +accusative +genitive +nominative +accusative +40757 nominative +40760 nominative +40763 accusative +accusative +40766 nominative +accusative +nominative +nominative +40773 dative +vocative +40776 genitive +genitive +genitive +40781 dative +accusative +accusative +40789 accusative +accusative +40792 nominative +nominative +nominative +nominative +40797 dative +dative +40800 nominative +nominative +40803 dative +dative +40807 nominative +40810 dative +40815 dative +nominative +40820 dative +dative +genitive +genitive +40826 dative +nominative +nominative +40831 vocative +40833 nominative +genitive +dative +dative +40838 accusative +accusative +genitive +40842 accusative +accusative +40845 genitive +genitive +40848 nominative +40852 accusative +accusative +genitive +accusative +accusative +40858 nominative +nominative +40863 accusative +40866 genitive +genitive +genitive +dative +dative +genitive +genitive +40876 accusative +genitive +genitive +40880 nominative +nominative +nominative +dative +40885 nominative +nominative +nominative +40890 dative +dative +dative +dative +dative +40896 genitive +40899 dative +nominative +40902 nominative +nominative +genitive +genitive +40907 dative +40909 accusative +nominative +40912 dative +genitive +accusative +nominative +nominative +40919 accusative +genitive +40926 accusative +40928 nominative +nominative +genitive +genitive +40934 dative +dative +genitive +40940 dative +40942 accusative +accusative +genitive +genitive +nominative +40948 dative +accusative +nominative +nominative +40954 genitive +accusative +accusative +40958 genitive +40960 nominative +40964 accusative +40966 accusative +nominative +40969 accusative +nominative +40972 accusative +40975 nominative +dative +vocative +40979 nominative +nominative +nominative +40983 nominative +40986 accusative +40990 genitive +genitive +genitive +40995 dative +nominative +41004 genitive +41006 nominative +nominative +41010 accusative +accusative +41018 accusative +accusative +nominative +vocative +41023 dative +41025 nominative +41027 dative +41030 accusative +41038 genitive +41043 dative +dative +genitive +41049 nominative +dative +41057 genitive +nominative +nominative +genitive +41063 nominative +nominative +41066 nominative +nominative +genitive +genitive +41072 accusative +41074 accusative +41076 accusative +41078 accusative +accusative +accusative +41082 dative +dative +genitive +genitive +41087 accusative +accusative +41093 genitive +41095 genitive +41098 genitive +41100 genitive +41104 dative +dative +genitive +genitive +41111 nominative +nominative +41114 nominative +41117 nominative +nominative +41120 nominative +41122 dative +dative +dative +41126 nominative +nominative +nominative +dative +41135 nominative +41137 accusative +41141 dative +nominative +41144 dative +dative +dative +41149 accusative +41151 accusative +41157 dative +dative +41162 accusative +41167 dative +dative +41173 accusative +41176 genitive +vocative +vocative +nominative +nominative +accusative +accusative +41184 nominative +accusative +accusative +41188 accusative +41192 accusative +accusative +genitive +accusative +accusative +nominative +accusative +genitive +accusative +41202 accusative +accusative +41209 dative +nominative +nominative +genitive +41215 dative +41219 accusative +41224 nominative +nominative +nominative +41228 dative +genitive +41233 dative +41235 accusative +41237 accusative +genitive +genitive +genitive +genitive +genitive +dative +41245 accusative +41247 nominative +41249 nominative +accusative +41253 nominative +nominative +nominative +41258 genitive +41260 nominative +nominative +nominative +41265 accusative +accusative +41268 accusative +nominative +41271 dative +dative +41277 nominative +41280 nominative +41282 accusative +41287 accusative +41289 genitive +genitive +nominative +41293 nominative +41295 accusative +41301 accusative +41303 dative +genitive +genitive +41311 accusative +41315 accusative +accusative +accusative +nominative +41320 accusative +accusative +41323 nominative +41325 accusative +41329 genitive +41331 accusative +41335 accusative +accusative +41339 nominative +genitive +41342 nominative +41344 genitive +41346 nominative +nominative +accusative +41350 accusative +nominative +41353 dative +41355 dative +accusative +41361 genitive +accusative +accusative +accusative +41369 nominative +41372 accusative +accusative +accusative +41378 nominative +nominative +accusative +41382 dative +vocative +41385 accusative +41388 dative +nominative +41391 genitive +genitive +genitive +dative +41396 nominative +nominative +nominative +accusative +41402 nominative +nominative +accusative +41409 dative +dative +accusative +41414 accusative +41416 accusative +41419 accusative +accusative +genitive +41423 accusative +accusative +genitive +41427 accusative +accusative +genitive +41431 accusative +accusative +41436 nominative +41438 accusative +41441 accusative +dative +41445 accusative +41448 accusative +accusative +accusative +accusative +41453 nominative +41459 dative +41462 dative +41464 dative +dative +genitive +genitive +41469 nominative +genitive +genitive +nominative +accusative +41475 dative +nominative +nominative +41479 accusative +41481 dative +dative +genitive +genitive +41486 nominative +41488 dative +nominative +nominative +41492 accusative +accusative +41496 accusative +41499 accusative +accusative +genitive +dative +dative +genitive +genitive +41507 dative +dative +41512 nominative +41517 genitive +nominative +41520 nominative +nominative +41523 dative +accusative +41528 accusative +nominative +41531 accusative +41533 accusative +41535 accusative +accusative +41538 nominative +41540 accusative +genitive +41547 accusative +41549 accusative +41551 accusative +accusative +41554 nominative +41556 accusative +41560 accusative +41565 nominative +nominative +nominative +41569 dative +dative +genitive +accusative +41574 nominative +nominative +nominative +41578 dative +dative +genitive +41584 accusative +accusative +41587 accusative +genitive +genitive +41591 accusative +accusative +41594 accusative +41596 accusative +41598 accusative +41603 nominative +nominative +vocative +41607 accusative +41611 nominative +41615 nominative +nominative +41618 accusative +accusative +41622 accusative +accusative +41625 accusative +41631 genitive +nominative +nominative +41636 dative +41638 nominative +genitive +genitive +genitive +genitive +genitive +41645 genitive +genitive +genitive +41650 dative +nominative +nominative +41654 nominative +41657 accusative +41659 nominative +41662 accusative +41666 accusative +accusative +genitive +41670 accusative +accusative +41673 accusative +accusative +41676 accusative +accusative +41679 accusative +accusative +41682 accusative +accusative +41687 accusative +accusative +genitive +41693 genitive +nominative +nominative +41698 accusative +accusative +genitive +41704 genitive +41708 genitive +nominative +41712 nominative +41714 genitive +nominative +accusative +41718 accusative +nominative +41721 accusative +accusative +41726 accusative +41730 genitive +genitive +accusative +41735 genitive +41737 nominative +nominative +nominative +41741 dative +41743 nominative +41745 nominative +nominative +nominative +41756 nominative +nominative +nominative +dative +dative +41763 accusative +nominative +accusative +41768 nominative +41772 dative +41774 dative +41777 genitive +dative +41780 accusative +41785 genitive +41787 genitive +accusative +nominative +41791 accusative +41793 accusative +41796 nominative +41798 genitive +nominative +41802 dative +dative +genitive +dative +41809 genitive +nominative +41812 nominative +nominative +nominative +41818 nominative +nominative +41822 dative +41826 accusative +41829 accusative +nominative +41834 accusative +nominative +nominative +accusative +41842 nominative +dative +nominative +nominative +nominative +41848 nominative +nominative +41851 genitive +41855 nominative +nominative +41858 nominative +nominative +nominative +41862 nominative +accusative +41867 dative +41871 accusative +accusative +accusative +accusative +nominative +nominative +nominative +41879 genitive +nominative +41882 accusative +41884 nominative +41886 genitive +accusative +41890 accusative +41894 dative +dative +41899 accusative +accusative +41903 accusative +41905 nominative +41908 accusative +accusative +genitive +nominative +41913 nominative +41915 accusative +accusative +41918 accusative +accusative +41921 accusative +accusative +nominative +dative +41926 dative +41929 accusative +accusative +genitive +accusative +accusative +41935 dative +41938 nominative +41940 dative +dative +41944 dative +dative +dative +41951 dative +nominative +41954 accusative +genitive +41958 nominative +nominative +accusative +41962 nominative +41965 accusative +accusative +41969 accusative +41972 accusative +accusative +41978 genitive +41981 nominative +41983 accusative +accusative +41986 accusative +nominative +41989 dative +41992 accusative +accusative +accusative +41998 dative +42000 nominative +42002 genitive +genitive +genitive +genitive +42007 dative +dative +dative +42012 nominative +nominative +42016 accusative +42019 nominative +nominative +genitive +dative +dative +vocative +42026 dative +accusative +accusative +accusative +genitive +genitive +42033 nominative +42035 dative +accusative +accusative +42041 accusative +accusative +nominative +accusative +nominative +nominative +nominative +42050 accusative +accusative +42055 accusative +accusative +genitive +nominative +42061 genitive +genitive +accusative +42065 nominative +nominative +42068 accusative +accusative +accusative +42072 nominative +42076 nominative +42078 dative +genitive +genitive +genitive +genitive +genitive +42086 accusative +42088 accusative +accusative +genitive +42092 accusative +42096 accusative +accusative +genitive +42100 genitive +genitive +genitive +42104 nominative +nominative +42107 nominative +42109 dative +42112 accusative +nominative +42115 nominative +nominative +genitive +genitive +genitive +42121 genitive +42123 nominative +dative +42127 nominative +42130 accusative +accusative +genitive +42135 dative +vocative +42139 accusative +accusative +42143 genitive +42146 nominative +42148 nominative +genitive +42151 accusative +42153 accusative +genitive +genitive +genitive +42158 nominative +42161 accusative +accusative +genitive +42166 genitive +accusative +genitive +42170 accusative +nominative +nominative +genitive +42177 nominative +42180 accusative +accusative +genitive +42185 accusative +42188 nominative +nominative +dative +vocative +42194 accusative +accusative +42198 genitive +42201 nominative +42203 nominative +genitive +42207 nominative +nominative +42210 accusative +accusative +genitive +accusative +42215 accusative +accusative +accusative +42220 accusative +42223 accusative +42225 accusative +accusative +genitive +42229 accusative +42231 accusative +accusative +42235 accusative +accusative +accusative +accusative +42241 nominative +42244 nominative +nominative +nominative +genitive +nominative +42253 nominative +42261 nominative +nominative +genitive +nominative +nominative +42267 dative +42270 nominative +42272 dative +dative +42275 genitive +42277 genitive +42279 nominative +accusative +genitive +genitive +42285 nominative +42287 nominative +42289 nominative +42291 dative +42293 nominative +nominative +genitive +42299 nominative +nominative +genitive +accusative +accusative +accusative +accusative +42307 accusative +accusative +42317 nominative +nominative +genitive +nominative +42322 accusative +42324 nominative +nominative +42327 dative +dative +42330 accusative +accusative +42333 dative +42336 accusative +genitive +42340 dative +42343 accusative +42346 genitive +genitive +genitive +42352 nominative +nominative +genitive +nominative +nominative +nominative +genitive +accusative +accusative +42362 genitive +42365 dative +accusative +accusative +accusative +42370 nominative +42372 dative +vocative +nominative +42377 genitive +42380 nominative +nominative +nominative +nominative +42391 nominative +nominative +genitive +nominative +nominative +42400 nominative +42407 accusative +accusative +nominative +nominative +42412 nominative +nominative +42415 accusative +42417 nominative +42419 dative +42421 nominative +accusative +accusative +genitive +42426 nominative +accusative +42429 dative +accusative +accusative +42434 genitive +42436 accusative +accusative +genitive +genitive +genitive +42449 dative +nominative +nominative +accusative +42455 nominative +nominative +genitive +42459 accusative +accusative +42462 genitive +42469 accusative +42475 genitive +genitive +42478 accusative +42480 accusative +accusative +genitive +42484 nominative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +42493 dative +dative +accusative +42497 dative +dative +genitive +42501 nominative +42504 accusative +genitive +42507 nominative +42509 dative +42511 genitive +accusative +accusative +42515 nominative +42520 dative +42523 nominative +accusative +42527 nominative +42530 accusative +genitive +42533 dative +42535 genitive +accusative +accusative +42543 nominative +nominative +accusative +accusative +genitive +genitive +42553 nominative +nominative +genitive +genitive +genitive +nominative +42560 accusative +accusative +genitive +genitive +42565 accusative +accusative +accusative +genitive +42571 nominative +dative +42574 dative +42576 accusative +42578 genitive +genitive +genitive +genitive +42586 accusative +42588 accusative +accusative +accusative +nominative +nominative +42594 dative +42597 dative +nominative +42601 nominative +42603 dative +nominative +42607 dative +nominative +42613 dative +dative +dative +nominative +42619 accusative +accusative +nominative +dative +42627 dative +dative +nominative +42632 accusative +accusative +nominative +42636 dative +nominative +nominative +42640 dative +dative +42645 accusative +accusative +42649 accusative +accusative +42653 genitive +42656 genitive +genitive +42661 dative +42664 dative +42667 accusative +accusative +nominative +nominative +nominative +nominative +42675 accusative +42678 dative +nominative +42681 nominative +nominative +accusative +42685 genitive +genitive +42688 nominative +nominative +42691 accusative +accusative +genitive +42695 nominative +42697 dative +nominative +nominative +42701 genitive +genitive +nominative +nominative +42706 nominative +nominative +42709 genitive +42712 nominative +nominative +genitive +genitive +42718 nominative +42720 accusative +42723 nominative +42725 accusative +accusative +42728 accusative +accusative +42732 genitive +genitive +accusative +accusative +42737 nominative +nominative +nominative +accusative +accusative +genitive +42744 nominative +accusative +42748 nominative +accusative +42751 genitive +nominative +42755 nominative +nominative +42758 nominative +42761 accusative +42763 accusative +nominative +42766 accusative +42769 nominative +nominative +dative +nominative +42775 accusative +accusative +genitive +nominative +42780 nominative +42783 genitive +genitive +42786 genitive +genitive +genitive +genitive +42792 nominative +nominative +nominative +42796 accusative +accusative +genitive +42802 accusative +accusative +42806 accusative +42808 genitive +genitive +42811 accusative +accusative +genitive +42817 nominative +nominative +42823 dative +dative +nominative +accusative +accusative +genitive +nominative +42831 dative +42833 accusative +42837 accusative +42839 dative +dative +genitive +42843 nominative +nominative +42846 vocative +vocative +42849 accusative +42852 accusative +42855 accusative +accusative +genitive +genitive +genitive +genitive +42863 accusative +accusative +genitive +42869 dative +dative +dative +42874 nominative +vocative +42879 accusative +accusative +genitive +42883 dative +dative +genitive +42887 nominative +42889 accusative +accusative +42896 nominative +42900 dative +dative +42903 genitive +42905 genitive +nominative +nominative +42910 nominative +nominative +42915 accusative +42921 accusative +42927 accusative +vocative +42931 accusative +42933 accusative +accusative +genitive +genitive +genitive +42941 accusative +42944 dative +42948 nominative +42951 accusative +accusative +accusative +genitive +genitive +42958 nominative +42960 accusative +42962 accusative +accusative +42965 genitive +42967 nominative +42970 vocative +vocative +42974 nominative +42976 genitive +42979 accusative +42983 dative +42985 genitive +42987 genitive +genitive +42993 nominative +42995 genitive +43001 accusative +accusative +genitive +nominative +43006 genitive +accusative +accusative +43014 genitive +43017 dative +43019 nominative +nominative +43023 accusative +accusative +genitive +43029 accusative +accusative +43034 genitive +genitive +genitive +accusative +43039 dative +43042 nominative +nominative +genitive +43046 dative +43051 dative +43055 genitive +genitive +43059 accusative +43064 accusative +nominative +43068 dative +43071 nominative +nominative +dative +dative +43076 dative +accusative +43080 nominative +nominative +43084 accusative +43086 accusative +genitive +43090 dative +dative +dative +43097 dative +dative +43102 dative +43104 nominative +43106 genitive +nominative +accusative +accusative +43111 accusative +nominative +dative +43115 genitive +genitive +43118 dative +43120 nominative +43125 dative +43127 accusative +43130 nominative +43132 dative +43139 accusative +43143 nominative +43146 accusative +dative +dative +43151 accusative +accusative +43155 nominative +43158 accusative +accusative +accusative +dative +43164 nominative +nominative +43167 accusative +43174 dative +43177 accusative +43179 nominative +43182 accusative +genitive +43185 genitive +43187 genitive +genitive +43190 accusative +accusative +43194 nominative +nominative +nominative +43200 nominative +43202 accusative +nominative +vocative +vocative +43207 accusative +43209 nominative +43211 dative +nominative +43214 accusative +dative +dative +43220 dative +43222 accusative +43225 nominative +43227 genitive +nominative +43233 genitive +genitive +nominative +accusative +accusative +43241 accusative +43243 accusative +accusative +genitive +nominative +dative +43249 nominative +43251 nominative +43253 nominative +nominative +nominative +43258 nominative +43262 nominative +43267 nominative +43269 accusative +dative +dative +43274 nominative +nominative +nominative +43279 dative +nominative +43282 nominative +nominative +genitive +43286 accusative +43288 nominative +43290 genitive +genitive +43294 nominative +nominative +genitive +genitive +43299 dative +43304 nominative +nominative +genitive +genitive +43309 genitive +43318 nominative +nominative +genitive +genitive +43323 genitive +43328 accusative +accusative +43331 nominative +43334 accusative +genitive +genitive +genitive +genitive +genitive +genitive +43347 dative +43358 nominative +nominative +nominative +43362 genitive +43364 accusative +accusative +43367 accusative +43369 accusative +43373 nominative +nominative +genitive +genitive +43378 dative +dative +genitive +43383 accusative +accusative +accusative +43390 genitive +genitive +genitive +43397 dative +dative +genitive +43404 dative +dative +genitive +genitive +genitive +genitive +43415 genitive +genitive +43418 nominative +43420 accusative +accusative +43424 nominative +nominative +43428 accusative +43433 dative +dative +genitive +43443 dative +dative +43446 nominative +43448 genitive +43450 accusative +43452 accusative +43454 genitive +43457 accusative +43459 accusative +accusative +43462 dative +dative +nominative +nominative +genitive +genitive +43470 dative +dative +dative +nominative +43476 genitive +genitive +43479 nominative +nominative +genitive +43483 dative +dative +43488 accusative +43490 nominative +43492 dative +43497 accusative +43500 genitive +genitive +genitive +43504 nominative +43506 accusative +accusative +genitive +43511 accusative +43514 nominative +43517 accusative +43519 dative +dative +dative +dative +43526 genitive +genitive +nominative +nominative +43532 nominative +nominative +43536 nominative +43539 accusative +accusative +nominative +nominative +43545 nominative +nominative +43549 nominative +43551 dative +43553 vocative +43555 nominative +43557 dative +43559 nominative +nominative +43563 nominative +nominative +43568 accusative +dative +43571 accusative +43575 accusative +43579 nominative +nominative +nominative +43584 dative +dative +accusative +accusative +43589 nominative +43591 accusative +43593 nominative +43595 nominative +43598 dative +dative +dative +43604 accusative +nominative +43607 accusative +43609 genitive +genitive +genitive +43616 accusative +43619 accusative +43622 dative +43625 accusative +accusative +43630 accusative +43634 accusative +43636 dative +accusative +accusative +accusative +accusative +43642 accusative +43646 accusative +nominative +43649 accusative +43652 nominative +nominative +43655 accusative +nominative +nominative +genitive +genitive +43664 nominative +nominative +43667 accusative +accusative +genitive +genitive +genitive +genitive +genitive +dative +genitive +43677 genitive +43681 dative +43683 dative +43686 accusative +accusative +genitive +43690 dative +43692 nominative +nominative +genitive +genitive +nominative +43699 accusative +accusative +43702 genitive +genitive +43708 accusative +accusative +accusative +43712 dative +43715 nominative +43717 accusative +accusative +accusative +accusative +accusative +accusative +nominative +43727 accusative +accusative +43730 nominative +nominative +nominative +43734 nominative +nominative +nominative +nominative +nominative +nominative +accusative +43742 accusative +43744 nominative +nominative +43747 dative +43752 nominative +nominative +genitive +genitive +nominative +nominative +nominative +43762 nominative +nominative +nominative +43767 genitive +genitive +43770 accusative +accusative +43774 nominative +nominative +43777 nominative +43781 accusative +accusative +43785 accusative +accusative +43789 accusative +accusative +genitive +nominative +nominative +nominative +43796 dative +dative +dative +43800 dative +43802 nominative +nominative +43805 accusative +accusative +genitive +43809 accusative +43811 nominative +nominative +nominative +accusative +43817 nominative +nominative +accusative +43823 dative +43825 accusative +accusative +43828 genitive +43831 nominative +nominative +nominative +43835 dative +43837 nominative +nominative +43840 accusative +nominative +43843 accusative +accusative +43847 accusative +43851 accusative +43853 genitive +genitive +43856 nominative +nominative +genitive +genitive +43862 dative +43864 nominative +43867 accusative +accusative +genitive +genitive +43872 nominative +43877 accusative +43880 nominative +nominative +accusative +nominative +vocative +vocative +accusative +nominative +accusative +accusative +43893 dative +nominative +nominative +accusative +accusative +43899 accusative +nominative +nominative +43904 nominative +nominative +nominative +accusative +accusative +43919 accusative +accusative +genitive +43923 accusative +accusative +43926 nominative +43928 accusative +accusative +43932 genitive +43934 nominative +nominative +nominative +43938 dative +43940 nominative +dative +43943 accusative +accusative +43949 dative +43952 accusative +43954 dative +dative +43959 dative +43961 nominative +nominative +accusative +nominative +43968 nominative +43971 nominative +accusative +nominative +nominative +43978 nominative +accusative +accusative +nominative +43983 accusative +accusative +genitive +genitive +43989 nominative +43991 accusative +43993 genitive +genitive +43997 accusative +43999 accusative +accusative +genitive +genitive +44006 nominative +nominative +44009 nominative +44013 nominative +44015 nominative +nominative +44018 dative +nominative +44021 dative +dative +44026 nominative +nominative +44029 nominative +nominative +accusative +accusative +44034 dative +44036 nominative +44038 dative +44041 dative +44043 nominative +44045 nominative +44047 accusative +44049 accusative +44051 accusative +44053 accusative +44055 accusative +44057 genitive +genitive +genitive +genitive +nominative +44065 accusative +44067 dative +dative +dative +44072 dative +dative +dative +dative +accusative +accusative +44079 nominative +accusative +44084 accusative +44088 accusative +44091 nominative +nominative +nominative +44095 genitive +genitive +dative +dative +genitive +genitive +44103 dative +dative +44112 nominative +44114 accusative +44116 dative +dative +dative +dative +44122 nominative +accusative +genitive +44128 nominative +nominative +nominative +nominative +44133 genitive +44137 accusative +accusative +44142 dative +44144 accusative +44146 accusative +nominative +nominative +44151 accusative +accusative +nominative +44155 nominative +genitive +genitive +44159 nominative +44161 nominative +44164 dative +44166 nominative +nominative +nominative +44172 nominative +vocative +vocative +genitive +44177 accusative +44179 nominative +nominative +44182 dative +44186 nominative +dative +44190 vocative +genitive +44193 accusative +44195 nominative +nominative +nominative +44199 accusative +44202 accusative +44204 genitive +genitive +44207 accusative +accusative +dative +44213 nominative +44215 vocative +44219 nominative +nominative +44222 dative +44224 nominative +nominative +genitive +44228 accusative +44234 dative +nominative +accusative +accusative +44239 nominative +nominative +nominative +nominative +44244 accusative +dative +dative +44248 nominative +44250 accusative +accusative +44254 nominative +dative +nominative +nominative +44259 nominative +44261 nominative +44263 nominative +nominative +44268 accusative +accusative +nominative +44276 genitive +genitive +44279 dative +dative +nominative +44284 nominative +44286 accusative +44290 accusative +44293 accusative +44295 genitive +44302 accusative +accusative +nominative +nominative +nominative +44309 accusative +vocative +nominative +44316 dative +dative +genitive +accusative +44323 nominative +44327 accusative +nominative +44330 nominative +nominative +44333 nominative +44336 dative +dative +44341 nominative +nominative +44345 accusative +accusative +vocative +44349 accusative +accusative +genitive +genitive +genitive +dative +dative +44359 genitive +accusative +44363 accusative +44367 accusative +nominative +nominative +44372 nominative +dative +dative +dative +44379 nominative +nominative +genitive +44385 nominative +nominative +genitive +genitive +44392 accusative +accusative +44395 genitive +genitive +accusative +nominative +44400 accusative +44402 accusative +44405 genitive +accusative +44409 accusative +44413 nominative +nominative +genitive +genitive +44420 nominative +nominative +nominative +44425 accusative +accusative +44428 dative +accusative +44433 nominative +44435 accusative +genitive +44438 dative +44440 accusative +44444 accusative +44447 dative +44450 nominative +nominative +genitive +44454 accusative +44457 accusative +44459 genitive +nominative +44463 accusative +44466 accusative +44470 dative +44472 accusative +accusative +accusative +accusative +44479 dative +accusative +accusative +accusative +dative +44485 accusative +accusative +44489 nominative +accusative +44494 nominative +nominative +nominative +vocative +nominative +nominative +genitive +44502 accusative +44506 dative +44508 vocative +vocative +44512 dative +nominative +44516 accusative +nominative +44520 genitive +44523 nominative +nominative +nominative +vocative +nominative +nominative +genitive +44532 accusative +44536 dative +44538 nominative +44541 genitive +44544 nominative +nominative +44547 nominative +vocative +44550 nominative +nominative +genitive +accusative +44555 accusative +44557 dative +44560 accusative +44562 nominative +nominative +44566 accusative +44571 accusative +44575 dative +44577 genitive +genitive +genitive +44581 accusative +vocative +vocative +44586 nominative +44588 nominative +nominative +nominative +accusative +44595 nominative +accusative +44601 accusative +44604 genitive +accusative +accusative +44608 accusative +44610 nominative +nominative +44613 dative +accusative +44617 dative +dative +44622 genitive +accusative +accusative +44627 dative +accusative +44630 accusative +dative +44634 dative +vocative +44638 accusative +44640 dative +44642 dative +dative +dative +44648 genitive +44650 genitive +44652 accusative +44656 accusative +accusative +genitive +accusative +accusative +44662 accusative +accusative +44666 accusative +44671 accusative +44673 genitive +44675 nominative +accusative +44679 nominative +44681 accusative +44687 accusative +44689 accusative +44691 accusative +accusative +accusative +accusative +genitive +44698 genitive +genitive +nominative +44703 accusative +44705 accusative +44707 dative +nominative +44710 accusative +accusative +44713 accusative +nominative +genitive +44719 nominative +accusative +44724 nominative +accusative +44728 accusative +44733 nominative +nominative +genitive +accusative +44739 nominative +nominative +nominative +44745 dative +44747 genitive +genitive +accusative +accusative +44752 nominative +nominative +genitive +44756 accusative +accusative +44759 accusative +accusative +44762 nominative +44765 nominative +nominative +genitive +accusative +44772 accusative +44774 accusative +accusative +44777 nominative +genitive +accusative +accusative +44782 accusative +accusative +44785 accusative +accusative +44788 genitive +genitive +44791 accusative +accusative +genitive +44795 dative +dative +44798 genitive +genitive +44802 dative +dative +genitive +genitive +genitive +genitive +44809 nominative +nominative +nominative +genitive +genitive +nominative +44816 accusative +accusative +dative +dative +44821 genitive +genitive +44824 genitive +nominative +nominative +nominative +nominative +44830 dative +genitive +nominative +nominative +44835 dative +nominative +44838 nominative +44840 dative +44842 nominative +genitive +genitive +44846 genitive +genitive +44850 accusative +vocative +44853 dative +dative +genitive +44857 nominative +44860 dative +44862 nominative +44864 nominative +nominative +44870 nominative +accusative +accusative +44875 accusative +nominative +44881 dative +dative +dative +44885 nominative +accusative +44888 accusative +44893 genitive +genitive +44897 nominative +44899 accusative +44902 nominative +nominative +genitive +accusative +dative +44909 accusative +44912 accusative +44916 accusative +44918 accusative +accusative +genitive +44922 dative +44926 accusative +44928 accusative +44930 dative +44932 genitive +44935 accusative +accusative +genitive +genitive +genitive +44941 nominative +44943 accusative +accusative +44947 accusative +accusative +nominative +dative +44954 nominative +nominative +genitive +nominative +genitive +44960 nominative +accusative +44963 accusative +genitive +44967 nominative +accusative +44970 accusative +44972 dative +dative +44975 nominative +nominative +44978 nominative +nominative +44981 accusative +44984 nominative +nominative +genitive +genitive +44990 nominative +accusative +accusative +44995 nominative +nominative +nominative +44999 genitive +nominative +45004 dative +genitive +genitive +genitive +genitive +accusative +accusative +45012 dative +dative +45015 genitive +45017 nominative +nominative +45020 nominative +nominative +45023 dative +dative +45027 nominative +45029 accusative +45031 dative +45033 dative +dative +accusative +45038 nominative +45040 nominative +nominative +dative +accusative +accusative +accusative +45047 nominative +45050 accusative +45052 accusative +nominative +accusative +45057 dative +nominative +nominative +genitive +45062 genitive +45066 genitive +45068 nominative +45071 accusative +nominative +45077 genitive +45080 accusative +45083 dative +45088 genitive +nominative +nominative +nominative +45093 accusative +45095 nominative +45097 accusative +accusative +45106 nominative +nominative +45109 dative +45111 nominative +45113 dative +45115 dative +dative +accusative +45122 accusative +accusative +45125 accusative +accusative +accusative +nominative +45130 accusative +45133 accusative +dative +45137 accusative +accusative +45140 dative +45143 accusative +accusative +accusative +45148 genitive +genitive +genitive +genitive +45153 dative +45155 nominative +nominative +45158 accusative +nominative +accusative +45163 accusative +accusative +45167 nominative +accusative +nominative +45171 nominative +45173 accusative +45176 accusative +45179 nominative +45181 accusative +nominative +45186 nominative +nominative +genitive +genitive +accusative +45193 accusative +accusative +genitive +accusative +accusative +45199 accusative +45202 nominative +accusative +nominative +nominative +45208 accusative +nominative +nominative +45212 nominative +nominative +45215 accusative +45217 genitive +45219 nominative +nominative +45222 nominative +accusative +45225 genitive +genitive +45229 accusative +45231 dative +nominative +nominative +genitive +genitive +45239 accusative +accusative +accusative +45244 accusative +accusative +dative +45248 nominative +45253 nominative +nominative +dative +45258 nominative +45260 nominative +nominative +nominative +accusative +accusative +45266 nominative +nominative +nominative +45271 accusative +genitive +nominative +nominative +nominative +45277 accusative +accusative +accusative +45284 accusative +45287 accusative +45290 nominative +nominative +45293 nominative +nominative +45297 accusative +accusative +accusative +45301 dative +dative +dative +45306 accusative +accusative +45312 accusative +45314 accusative +accusative +accusative +45318 nominative +45320 accusative +accusative +accusative +accusative +45327 genitive +genitive +45331 accusative +dative +dative +45335 dative +dative +genitive +genitive +45341 accusative +nominative +vocative +45353 accusative +45356 genitive +accusative +accusative +genitive +genitive +45363 accusative +dative +accusative +45370 nominative +genitive +accusative +accusative +45376 accusative +45378 dative +accusative +45381 genitive +accusative +45384 accusative +45386 nominative +45388 genitive +45390 nominative +45393 accusative +45396 accusative +genitive +dative +45400 accusative +genitive +genitive +dative +dative +45409 genitive +genitive +45412 genitive +genitive +45415 nominative +45417 dative +dative +genitive +45422 nominative +nominative +genitive +genitive +nominative +nominative +accusative +45432 accusative +nominative +vocative +nominative +45437 dative +45439 genitive +nominative +45442 nominative +accusative +45445 nominative +nominative +45450 nominative +nominative +genitive +accusative +accusative +45457 accusative +dative +dative +genitive +45463 nominative +45466 nominative +nominative +nominative +accusative +45471 nominative +45473 nominative +nominative +45476 nominative +nominative +45479 accusative +45483 nominative +45487 accusative +45490 accusative +45492 nominative +nominative +45496 nominative +nominative +45499 dative +dative +genitive +genitive +nominative +45506 nominative +45509 accusative +accusative +45513 dative +nominative +nominative +nominative +nominative +genitive +genitive +genitive +45525 nominative +nominative +genitive +genitive +genitive +45532 genitive +genitive +genitive +45536 genitive +45547 nominative +45550 nominative +genitive +45553 genitive +genitive +nominative +nominative +45560 nominative +nominative +45563 nominative +45566 genitive +genitive +45570 accusative +accusative +accusative +genitive +45575 accusative +genitive +45578 accusative +genitive +45581 nominative +45584 genitive +45586 genitive +45588 nominative +dative +45592 nominative +nominative +genitive +genitive +45597 vocative +45604 accusative +accusative +45609 accusative +45612 accusative +accusative +45615 genitive +accusative +45618 nominative +nominative +45622 dative +genitive +45625 nominative +dative +dative +genitive +45631 genitive +genitive +45636 accusative +accusative +genitive +accusative +genitive +genitive +genitive +45644 nominative +accusative +accusative +45650 genitive +nominative +45654 genitive +genitive +genitive +genitive +45659 dative +dative +45663 genitive +genitive +genitive +genitive +45669 dative +45671 genitive +accusative +45674 dative +dative +45677 accusative +45679 dative +dative +45682 accusative +45684 dative +dative +nominative +45688 accusative +accusative +genitive +genitive +45693 dative +accusative +45696 nominative +45698 accusative +accusative +45701 nominative +45703 accusative +accusative +45706 accusative +accusative +accusative +accusative +genitive +accusative +45714 accusative +accusative +accusative +accusative +45719 accusative +45725 dative +45727 nominative +nominative +nominative +nominative +nominative +accusative +genitive +45736 nominative +nominative +45739 genitive +genitive +dative +45744 accusative +accusative +45747 nominative +45749 genitive +genitive +genitive +accusative +accusative +accusative +accusative +45759 genitive +genitive +45762 genitive +genitive +45765 dative +dative +45768 dative +45771 accusative +accusative +45775 nominative +45777 dative +45781 dative +nominative +nominative +45788 accusative +nominative +vocative +45793 nominative +45796 nominative +nominative +nominative +45801 nominative +45804 nominative +45810 nominative +45813 dative +dative +genitive +nominative +nominative +45820 nominative +nominative +45826 genitive +45830 accusative +45832 accusative +45837 accusative +45839 accusative +45843 nominative +nominative +45847 dative +45849 nominative +45851 accusative +45853 nominative +45855 accusative +45857 nominative +nominative +45861 accusative +nominative +45864 nominative +45867 nominative +45870 genitive +nominative +nominative +45876 genitive +genitive +45880 accusative +accusative +accusative +genitive +45886 nominative +45888 accusative +accusative +45891 accusative +accusative +45894 accusative +45896 accusative +45898 genitive +genitive +genitive +45902 dative +45904 accusative +45908 dative +dative +genitive +45915 nominative +45917 dative +accusative +45920 accusative +dative +45927 nominative +nominative +nominative +dative +45935 genitive +45937 genitive +45939 genitive +45941 genitive +45945 genitive +45948 nominative +45950 genitive +45952 accusative +accusative +genitive +45956 nominative +45958 genitive +genitive +genitive +45965 dative +dative +genitive +45969 accusative +accusative +genitive +45975 accusative +45977 genitive +accusative +45983 nominative +nominative +genitive +45987 nominative +45989 dative +dative +45993 accusative +accusative +45996 nominative +45998 dative +genitive +46002 nominative +46004 dative +dative +46009 accusative +46011 nominative +genitive +nominative +46015 genitive +46017 accusative +accusative +accusative +46021 dative +46023 dative +dative +46026 dative +dative +46029 dative +dative +dative +46034 nominative +nominative +46037 genitive +genitive +46040 nominative +dative +dative +dative +46046 dative +genitive +46051 accusative +accusative +accusative +46055 nominative +46057 nominative +46059 genitive +46061 genitive +46063 nominative +genitive +46067 nominative +46069 dative +46071 dative +46073 dative +46076 genitive +genitive +nominative +genitive +46081 dative +genitive +genitive +46085 genitive +genitive +genitive +46089 genitive +46091 genitive +genitive +genitive +dative +dative +46097 nominative +nominative +genitive +genitive +46105 accusative +accusative +genitive +genitive +accusative +46111 dative +46113 genitive +46115 genitive +genitive +46118 genitive +genitive +46124 accusative +accusative +genitive +46129 nominative +nominative +genitive +46134 accusative +dative +46137 accusative +accusative +46140 accusative +accusative +accusative +46146 nominative +46148 genitive +46153 nominative +nominative +46158 nominative +46161 accusative +accusative +46167 nominative +nominative +genitive +genitive +46173 dative +46178 nominative +nominative +nominative +46183 nominative +46185 nominative +nominative +46188 nominative +nominative +46192 nominative +nominative +genitive +46200 dative +46204 genitive +nominative +nominative +46208 dative +46210 dative +46212 dative +dative +46217 accusative +nominative +nominative +nominative +nominative +46223 nominative +46227 accusative +accusative +accusative +46231 accusative +genitive +genitive +genitive +46238 dative +dative +nominative +46244 accusative +accusative +accusative +accusative +46252 genitive +genitive +genitive +genitive +46258 nominative +accusative +accusative +46262 dative +dative +46265 accusative +accusative +nominative +46270 accusative +accusative +accusative +accusative +genitive +46276 nominative +nominative +nominative +46281 accusative +46283 dative +dative +46286 genitive +46289 nominative +nominative +genitive +genitive +nominative +nominative +nominative +46298 nominative +nominative +46301 nominative +nominative +accusative +46306 accusative +46309 accusative +accusative +46313 nominative +46315 accusative +accusative +accusative +accusative +accusative +46321 genitive +genitive +genitive +46326 nominative +46328 dative +dative +46331 dative +accusative +46334 dative +46336 accusative +46341 dative +accusative +46348 accusative +genitive +46351 accusative +46353 genitive +dative +46357 nominative +nominative +genitive +genitive +dative +46364 accusative +accusative +46368 accusative +46370 accusative +nominative +nominative +46374 dative +accusative +accusative +46380 nominative +46382 dative +46387 nominative +46389 dative +46391 genitive +genitive +46394 accusative +accusative +46397 dative +nominative +accusative +genitive +nominative +46403 dative +46405 accusative +accusative +46408 accusative +46412 dative +dative +genitive +genitive +46417 dative +nominative +nominative +46422 nominative +nominative +46425 accusative +accusative +46428 genitive +genitive +genitive +46432 nominative +dative +46435 accusative +accusative +accusative +46441 nominative +46445 dative +46448 accusative +accusative +46453 nominative +nominative +46457 nominative +nominative +46460 dative +46464 accusative +dative +46467 accusative +accusative +accusative +46472 genitive +46474 genitive +accusative +46479 dative +46485 accusative +46487 genitive +46490 dative +dative +genitive +genitive +46495 nominative +accusative +nominative +46500 accusative +46504 accusative +46507 dative +46512 genitive +46515 genitive +genitive +genitive +genitive +46520 genitive +nominative +nominative +genitive +genitive +46527 nominative +accusative +nominative +46533 dative +nominative +nominative +46537 nominative +nominative +genitive +nominative +46542 genitive +nominative +accusative +46547 accusative +accusative +accusative +46551 nominative +nominative +46555 accusative +46557 nominative +nominative +nominative +nominative +46562 dative +dative +genitive +nominative +nominative +nominative +nominative +46570 genitive +nominative +46574 nominative +nominative +genitive +genitive +accusative +46580 genitive +46582 genitive +genitive +46586 nominative +nominative +genitive +genitive +46591 accusative +accusative +46596 dative +dative +dative +46600 genitive +46603 nominative +46607 accusative +accusative +46610 nominative +46613 genitive +nominative +accusative +46617 nominative +46621 dative +46623 nominative +nominative +nominative +genitive +46629 nominative +46631 nominative +46633 dative +nominative +nominative +genitive +genitive +46639 genitive +46641 nominative +nominative +genitive +nominative +46647 nominative +46651 nominative +nominative +46654 dative +46657 nominative +nominative +46660 nominative +nominative +46663 nominative +nominative +46666 nominative +nominative +nominative +nominative +46671 nominative +nominative +46674 nominative +nominative +46677 nominative +46679 dative +genitive +46683 nominative +nominative +46686 nominative +46688 nominative +nominative +46691 genitive +46693 dative +dative +genitive +nominative +46698 dative +46701 dative +nominative +nominative +genitive +accusative +46711 genitive +genitive +genitive +46715 dative +dative +genitive +46721 genitive +accusative +46724 accusative +genitive +genitive +nominative +vocative +vocative +46731 nominative +nominative +46734 accusative +genitive +46738 accusative +accusative +46741 nominative +46744 genitive +46748 nominative +nominative +genitive +46752 nominative +46754 nominative +46756 accusative +accusative +genitive +46760 nominative +46762 dative +vocative +46765 genitive +nominative +46770 accusative +46773 accusative +46776 nominative +46779 dative +vocative +46784 nominative +46787 accusative +46793 dative +46796 accusative +46798 genitive +46800 genitive +46802 genitive +46804 genitive +46807 nominative +46809 genitive +46812 dative +46815 nominative +nominative +accusative +46821 accusative +46823 nominative +46825 nominative +46827 accusative +accusative +genitive +46832 accusative +46835 dative +46838 accusative +accusative +accusative +accusative +46844 genitive +46848 dative +46851 accusative +46853 genitive +accusative +46857 nominative +46859 vocative +46861 nominative +46865 nominative +46867 dative +nominative +46871 nominative +46874 accusative +accusative +46877 accusative +accusative +genitive +genitive +46883 dative +46885 nominative +nominative +46888 nominative +46890 genitive +genitive +46893 dative +46898 accusative +46900 nominative +46903 genitive +46905 genitive +accusative +46908 nominative +accusative +accusative +46912 nominative +vocative +46917 accusative +accusative +accusative +46921 genitive +46924 nominative +nominative +genitive +46928 nominative +nominative +46933 dative +nominative +46936 genitive +nominative +accusative +46940 nominative +46942 dative +accusative +46947 nominative +nominative +genitive +46951 nominative +genitive +nominative +46955 accusative +accusative +46958 nominative +46960 genitive +genitive +nominative +46964 accusative +accusative +46967 accusative +accusative +46970 genitive +genitive +46974 dative +accusative +46977 nominative +46983 accusative +46985 genitive +genitive +46988 nominative +46990 nominative +nominative +nominative +nominative +genitive +46997 accusative +47000 dative +dative +47003 accusative +47005 nominative +47007 dative +vocative +dative +accusative +accusative +genitive +genitive +47016 nominative +47018 accusative +nominative +accusative +accusative +47023 vocative +47027 dative +47030 nominative +nominative +47033 genitive +genitive +genitive +accusative +accusative +47040 accusative +accusative +genitive +accusative +accusative +47046 nominative +nominative +nominative +47052 genitive +47054 nominative +genitive +genitive +47058 accusative +47061 nominative +47063 accusative +accusative +47066 accusative +accusative +47069 accusative +genitive +genitive +47073 accusative +47076 accusative +47079 genitive +47081 genitive +47083 accusative +genitive +genitive +47087 genitive +47089 dative +dative +47093 accusative +accusative +47096 accusative +47098 nominative +47100 genitive +nominative +nominative +47104 nominative +nominative +genitive +genitive +47109 nominative +accusative +47115 accusative +accusative +genitive +genitive +47120 nominative +nominative +47125 genitive +accusative +47128 dative +genitive +genitive +47132 genitive +47134 nominative +nominative +nominative +genitive +47139 nominative +nominative +nominative +accusative +accusative +47145 accusative +accusative +47148 nominative +dative +47152 nominative +47154 dative +47157 nominative +47159 nominative +47162 accusative +vocative +47166 accusative +nominative +nominative +accusative +47172 nominative +47174 genitive +47177 nominative +nominative +47180 vocative +47184 genitive +47186 genitive +genitive +nominative +nominative +47191 nominative +47193 genitive +47195 nominative +47197 genitive +47201 nominative +47205 nominative +nominative +vocative +47210 accusative +47215 genitive +genitive +47218 nominative +47220 nominative +nominative +nominative +47224 dative +dative +47228 nominative +nominative +genitive +genitive +genitive +genitive +47236 dative +47239 accusative +47243 accusative +47246 nominative +47251 nominative +nominative +nominative +nominative +accusative +47257 dative +nominative +47260 nominative +accusative +47263 nominative +47265 nominative +47267 nominative +nominative +accusative +47271 accusative +accusative +47274 nominative +47276 accusative +47280 nominative +47282 nominative +nominative +genitive +genitive +47287 nominative +47289 nominative +47292 accusative +47294 accusative +accusative +genitive +nominative +47299 nominative +47301 nominative +nominative +47304 dative +47307 dative +47309 dative +47322 genitive +47325 nominative +nominative +nominative +genitive +genitive +47331 genitive +genitive +genitive +genitive +genitive +47338 nominative +47340 nominative +47342 nominative +nominative +genitive +genitive +47347 nominative +47349 accusative +47351 nominative +47354 nominative +47357 nominative +47359 accusative +47362 genitive +accusative +47365 nominative +47368 genitive +genitive +genitive +47372 nominative +nominative +nominative +nominative +genitive +47378 accusative +47380 accusative +accusative +47385 genitive +nominative +47388 accusative +accusative +accusative +accusative +genitive +47394 accusative +accusative +dative +47399 accusative +accusative +accusative +accusative +47405 nominative +nominative +47408 accusative +nominative +nominative +47412 nominative +nominative +genitive +genitive +47417 nominative +nominative +dative +47421 nominative +47424 nominative +nominative +47428 accusative +accusative +47431 accusative +accusative +accusative +47435 accusative +47437 dative +dative +dative +47441 nominative +47443 nominative +47446 accusative +accusative +nominative +47450 genitive +genitive +genitive +47454 nominative +47456 genitive +genitive +47461 nominative +nominative +47465 nominative +nominative +nominative +47470 nominative +47473 genitive +genitive +genitive +47478 accusative +47480 accusative +accusative +47483 accusative +47485 dative +47487 dative +dative +dative +47491 nominative +nominative +nominative +accusative +accusative +47500 nominative +47502 genitive +genitive +47505 accusative +47507 accusative +47510 genitive +47514 accusative +accusative +47517 genitive +accusative +47521 accusative +47523 dative +dative +47526 nominative +accusative +47529 dative +47532 nominative +nominative +47535 nominative +nominative +47538 nominative +genitive +47541 nominative +nominative +nominative +accusative +47546 dative +dative +genitive +47550 nominative +nominative +accusative +accusative +47555 accusative +dative +dative +47560 nominative +47562 nominative +nominative +47565 nominative +nominative +47568 dative +dative +dative +47572 genitive +47576 dative +nominative +47579 accusative +47581 nominative +nominative +accusative +accusative +47586 accusative +accusative +47589 accusative +accusative +47593 accusative +47595 dative +accusative +accusative +accusative +47600 accusative +accusative +accusative +47605 nominative +47607 genitive +nominative +accusative +47612 dative +dative +dative +accusative +genitive +47619 genitive +47622 nominative +47625 accusative +47627 accusative +47630 nominative +nominative +genitive +47634 nominative +dative +47637 nominative +accusative +47643 nominative +47645 accusative +47648 dative +accusative +accusative +nominative +47653 nominative +47655 accusative +accusative +accusative +47659 dative +dative +47662 accusative +47664 dative +dative +47668 nominative +nominative +47671 dative +nominative +47674 accusative +accusative +47677 nominative +47679 nominative +47682 accusative +47684 nominative +accusative +47688 accusative +47690 accusative +accusative +47693 nominative +accusative +accusative +genitive +47699 dative +47701 nominative +accusative +47705 nominative +47707 dative +dative +nominative +accusative +47714 nominative +nominative +genitive +47718 nominative +47721 accusative +accusative +genitive +47726 accusative +47728 accusative +47730 accusative +accusative +47733 accusative +accusative +47737 accusative +accusative +47740 dative +dative +genitive +47746 accusative +nominative +accusative +accusative +accusative +accusative +47753 genitive +47755 dative +accusative +accusative +47760 genitive +genitive +47764 dative +nominative +nominative +genitive +genitive +47770 genitive +nominative +47775 accusative +47777 nominative +47779 accusative +nominative +47782 vocative +genitive +47787 accusative +47790 accusative +47794 accusative +accusative +genitive +47800 nominative +47802 dative +47804 nominative +nominative +nominative +47808 nominative +nominative +nominative +47814 nominative +nominative +47821 dative +dative +47825 accusative +47827 dative +dative +47830 accusative +47834 dative +dative +accusative +47839 dative +dative +nominative +47846 nominative +nominative +47850 dative +47856 accusative +accusative +accusative +accusative +accusative +47863 accusative +47865 accusative +accusative +47868 accusative +47870 genitive +47872 accusative +47874 genitive +47876 nominative +nominative +47879 vocative +47881 dative +47885 accusative +47888 nominative +accusative +accusative +genitive +47893 accusative +47896 nominative +nominative +nominative +47902 nominative +nominative +nominative +accusative +47908 accusative +47910 nominative +47912 nominative +nominative +genitive +genitive +nominative +nominative +47920 dative +47922 nominative +nominative +nominative +accusative +nominative +dative +47929 nominative +47931 nominative +47933 nominative +nominative +genitive +genitive +47938 accusative +47942 nominative +47944 dative +nominative +nominative +genitive +genitive +nominative +47951 nominative +genitive +genitive +genitive +47956 accusative +47958 nominative +47960 nominative +nominative +47963 accusative +47965 accusative +47967 nominative +nominative +nominative +nominative +dative +47975 nominative +accusative +accusative +47980 dative +dative +dative +47986 nominative +47989 accusative +genitive +47994 nominative +accusative +accusative +48000 vocative +48002 genitive +48006 accusative +accusative +genitive +48011 dative +48013 dative +48017 genitive +48020 dative +dative +48026 nominative +nominative +48029 nominative +48032 accusative +accusative +accusative +48036 genitive +genitive +genitive +genitive +genitive +48043 nominative +nominative +genitive +genitive +accusative +48049 nominative +dative +dative +nominative +nominative +48055 vocative +48057 accusative +genitive +48060 accusative +accusative +genitive +48064 accusative +nominative +48068 nominative +nominative +nominative +accusative +accusative +48074 accusative +accusative +nominative +48078 nominative +nominative +nominative +nominative +48084 nominative +nominative +nominative +48088 accusative +accusative +accusative +nominative +nominative +accusative +accusative +nominative +accusative +accusative +48103 nominative +nominative +nominative +dative +48108 nominative +nominative +nominative +dative +48113 genitive +genitive +nominative +accusative +48119 nominative +dative +nominative +nominative +nominative +nominative +nominative +48127 nominative +nominative +48131 nominative +dative +dative +48135 dative +dative +genitive +48139 genitive +genitive +genitive +genitive +nominative +48145 accusative +accusative +genitive +genitive +nominative +nominative +dative +dative +48154 accusative +accusative +genitive +genitive +48159 nominative +48161 accusative +dative +48165 accusative +48167 dative +dative +48172 nominative +nominative +48176 nominative +genitive +48180 nominative +48183 nominative +nominative +nominative +nominative +48188 nominative +48190 genitive +genitive +dative +48194 accusative +accusative +48199 nominative +nominative +genitive +48203 nominative +48205 accusative +48207 accusative +48210 accusative +accusative +48214 accusative +accusative +48217 dative +dative +genitive +genitive +genitive +genitive +48224 accusative +accusative +48227 nominative +accusative +48230 accusative +48233 accusative +accusative +accusative +48237 genitive +genitive +48240 nominative +48243 accusative +accusative +genitive +genitive +genitive +48251 dative +48253 accusative +48255 genitive +48258 nominative +48261 dative +48263 dative +dative +48266 genitive +genitive +genitive +48270 genitive +accusative +accusative +48274 accusative +accusative +48278 accusative +accusative +48281 accusative +accusative +48284 genitive +genitive +48294 dative +48296 nominative +48298 dative +dative +nominative +48303 accusative +accusative +genitive +genitive +48309 accusative +genitive +genitive +48315 dative +dative +dative +48321 genitive +genitive +genitive +48325 nominative +48327 genitive +genitive +48330 accusative +accusative +dative +48335 dative +dative +dative +48340 nominative +nominative +nominative +48344 nominative +48346 nominative +nominative +genitive +48350 nominative +nominative +48353 dative +48356 accusative +accusative +accusative +48362 genitive +48364 nominative +nominative +nominative +nominative +48370 dative +48372 nominative +nominative +nominative +48377 accusative +accusative +48380 nominative +48382 accusative +accusative +accusative +48388 accusative +nominative +accusative +accusative +48396 genitive +48398 dative +dative +dative +48402 nominative +48404 accusative +accusative +accusative +48409 genitive +dative +nominative +nominative +48414 nominative +48417 accusative +48419 genitive +genitive +genitive +genitive +48426 dative +48428 accusative +48432 nominative +nominative +nominative +48436 dative +48438 nominative +nominative +genitive +48442 genitive +48445 accusative +48449 accusative +nominative +nominative +nominative +nominative +accusative +48457 accusative +nominative +48461 nominative +48463 nominative +nominative +dative +nominative +48469 accusative +nominative +nominative +48473 accusative +48477 accusative +accusative +48480 dative +48482 dative +dative +dative +48487 dative +accusative +48490 nominative +48492 dative +accusative +48495 genitive +genitive +genitive +nominative +48500 nominative +nominative +nominative +48504 dative +48506 dative +48508 genitive +genitive +48511 genitive +genitive +genitive +48517 accusative +nominative +nominative +48521 nominative +nominative +genitive +48525 accusative +genitive +48529 accusative +48531 nominative +48534 nominative +48536 nominative +nominative +48539 accusative +accusative +48545 dative +dative +accusative +accusative +accusative +48552 genitive +nominative +48557 nominative +nominative +48560 genitive +48562 accusative +nominative +nominative +48566 accusative +accusative +48570 nominative +accusative +accusative +genitive +48575 nominative +48577 accusative +genitive +48580 nominative +48582 accusative +48586 nominative +genitive +48589 dative +48591 accusative +accusative +48598 nominative +nominative +48602 accusative +48606 nominative +48609 accusative +48611 vocative +48613 nominative +dative +dative +genitive +48619 dative +dative +48622 nominative +nominative +48626 accusative +48628 accusative +accusative +48633 accusative +accusative +genitive +48637 nominative +48639 genitive +48642 genitive +genitive +genitive +48646 dative +48648 dative +dative +dative +accusative +48653 genitive +48657 accusative +accusative +48662 nominative +48668 accusative +nominative +48672 genitive +48675 accusative +48680 nominative +nominative +48684 genitive +48687 dative +48691 dative +48693 accusative +48695 genitive +nominative +accusative +accusative +48701 nominative +48703 dative +48705 genitive +nominative +nominative +48711 accusative +48713 nominative +nominative +48717 genitive +48721 accusative +48723 nominative +nominative +genitive +nominative +48729 dative +48732 dative +48734 dative +dative +48738 dative +accusative +accusative +48742 nominative +dative +dative +dative +48748 accusative +48751 accusative +accusative +48755 accusative +48757 dative +accusative +48762 nominative +nominative +48766 dative +48768 nominative +48770 accusative +48772 dative +dative +48777 dative +48779 dative +dative +genitive +genitive +48784 accusative +genitive +genitive +nominative +48790 dative +genitive +48794 dative +nominative +dative +48798 nominative +48800 nominative +nominative +48803 accusative +48807 dative +nominative +nominative +48813 accusative +nominative +48817 dative +dative +genitive +48821 accusative +accusative +genitive +48825 accusative +accusative +genitive +48829 nominative +48831 nominative +48833 accusative +48837 nominative +accusative +48840 accusative +48844 accusative +accusative +48848 accusative +nominative +48851 dative +accusative +accusative +48855 accusative +accusative +48859 genitive +genitive +48862 genitive +genitive +48865 genitive +48867 dative +48869 accusative +accusative +48873 nominative +48875 dative +genitive +genitive +accusative +48880 nominative +48882 genitive +48887 accusative +nominative +nominative +nominative +genitive +accusative +48895 accusative +48897 nominative +48899 dative +48903 accusative +accusative +accusative +48907 dative +dative +genitive +48911 dative +dative +48914 dative +48916 genitive +48919 genitive +accusative +accusative +genitive +48924 accusative +accusative +48928 dative +48933 accusative +accusative +48938 genitive +dative +dative +dative +48945 dative +dative +genitive +accusative +48950 accusative +genitive +48953 accusative +accusative +accusative +nominative +48958 genitive +nominative +nominative +genitive +48964 nominative +48966 accusative +accusative +genitive +genitive +genitive +48972 accusative +48974 nominative +48977 dative +dative +48980 genitive +48983 genitive +accusative +48987 accusative +48990 accusative +48992 nominative +accusative +accusative +genitive +48997 accusative +49001 dative +49003 accusative +accusative +49007 genitive +49011 accusative +accusative +49014 nominative +nominative +accusative +49019 accusative +49021 genitive +genitive +49025 nominative +49027 genitive +49029 dative +dative +accusative +accusative +49034 dative +49036 nominative +nominative +49039 nominative +nominative +49043 accusative +accusative +49046 nominative +49048 nominative +nominative +nominative +49053 dative +49055 accusative +accusative +nominative +49059 genitive +49063 genitive +49066 nominative +nominative +49070 dative +nominative +49074 nominative +nominative +49077 nominative +nominative +genitive +genitive +49082 nominative +nominative +49085 dative +dative +49089 nominative +nominative +accusative +49095 nominative +nominative +49098 genitive +nominative +dative +nominative +nominative +49105 accusative +49109 genitive +genitive +49112 nominative +49115 genitive +49118 nominative +nominative +nominative +49125 genitive +genitive +nominative +nominative +nominative +nominative +nominative +49133 accusative +accusative +49136 accusative +49138 accusative +accusative +49141 dative +dative +49145 nominative +nominative +49148 genitive +49151 nominative +nominative +accusative +49157 accusative +accusative +49161 nominative +nominative +accusative +49167 nominative +49169 accusative +49171 accusative +nominative +genitive +49175 dative +dative +dative +49179 accusative +accusative +genitive +nominative +49185 genitive +49188 genitive +genitive +49192 genitive +genitive +49196 genitive +49199 nominative +nominative +nominative +49206 dative +49209 accusative +accusative +genitive +accusative +49214 genitive +49216 genitive +nominative +genitive +49220 genitive +nominative +49224 genitive +49227 nominative +nominative +49230 accusative +49232 nominative +49234 genitive +nominative +49237 genitive +49240 nominative +genitive +49245 genitive +genitive +genitive +nominative +nominative +49252 accusative +49254 genitive +49256 nominative +nominative +49259 genitive +49261 nominative +nominative +49264 nominative +nominative +49267 genitive +genitive +49270 accusative +nominative +49274 nominative +nominative +nominative +nominative +49279 accusative +accusative +genitive +genitive +nominative +49286 nominative +49288 nominative +nominative +genitive +genitive +49295 accusative +nominative +nominative +49299 genitive +accusative +49302 accusative +49305 accusative +nominative +nominative +49317 nominative +49320 nominative +nominative +49324 accusative +49326 nominative +nominative +nominative +49334 nominative +nominative +49337 nominative +49343 dative +nominative +49347 accusative +49349 dative +dative +accusative +accusative +49355 genitive +49357 nominative +nominative +genitive +49361 dative +dative +49364 accusative +accusative +genitive +49369 nominative +nominative +nominative +49373 nominative +49376 genitive +genitive +49380 accusative +49383 dative +49385 accusative +49388 nominative +49391 nominative +nominative +49394 nominative +49396 nominative +nominative +49399 dative +nominative +nominative +nominative +nominative +49406 dative +nominative +genitive +49410 accusative +nominative +49414 nominative +49416 genitive +nominative +genitive +49421 nominative +nominative +49425 genitive +accusative +accusative +genitive +genitive +nominative +49432 dative +49435 genitive +genitive +49439 nominative +nominative +nominative +dative +49445 accusative +accusative +accusative +49449 accusative +49453 nominative +nominative +genitive +genitive +nominative +nominative +accusative +accusative +genitive +genitive +nominative +49466 genitive +nominative +49470 genitive +49472 nominative +nominative +49475 genitive +49478 nominative +genitive +49481 nominative +49484 accusative +49488 dative +dative +49491 accusative +49493 nominative +49495 dative +nominative +49499 nominative +nominative +49503 accusative +accusative +accusative +49507 accusative +49509 genitive +49513 accusative +nominative +49517 accusative +49519 nominative +nominative +accusative +49524 dative +nominative +dative +49530 accusative +49532 accusative +accusative +accusative +49536 accusative +49538 accusative +nominative +49541 nominative +nominative +49544 dative +dative +nominative +49551 nominative +49553 nominative +nominative +genitive +genitive +dative +49561 nominative +nominative +49565 genitive +genitive +genitive +49570 nominative +dative +dative +dative +49576 nominative +nominative +genitive +genitive +49582 nominative +49584 nominative +genitive +genitive +49589 dative +dative +49592 nominative +nominative +nominative +49596 nominative +accusative +accusative +49600 dative +accusative +49604 nominative +49606 dative +vocative +nominative +49610 nominative +vocative +49615 dative +49627 dative +49629 accusative +accusative +accusative +nominative +49635 nominative +49637 nominative +nominative +nominative +genitive +genitive +nominative +49644 genitive +49646 genitive +genitive +49649 genitive +49651 genitive +dative +49654 nominative +accusative +accusative +accusative +accusative +accusative +accusative +49663 dative +49665 accusative +accusative +nominative +49669 nominative +nominative +49672 accusative +49674 accusative +accusative +nominative +dative +nominative +nominative +49681 nominative +49683 nominative +nominative +nominative +genitive +nominative +49689 nominative +nominative +49692 nominative +dative +49698 accusative +accusative +49702 accusative +49705 dative +nominative +nominative +49709 dative +49712 nominative +nominative +49715 genitive +49717 genitive +genitive +genitive +49721 genitive +49723 nominative +accusative +accusative +49728 dative +accusative +49731 nominative +49733 dative +dative +49736 nominative +nominative +49739 accusative +accusative +genitive +genitive +accusative +49745 genitive +49748 dative +nominative +49751 genitive +49754 nominative +nominative +49757 dative +nominative +nominative +49764 nominative +accusative +accusative +accusative +49769 accusative +49773 genitive +49776 nominative +49778 dative +nominative +49783 dative +nominative +49786 accusative +49789 nominative +49792 dative +49794 genitive +accusative +accusative +49798 accusative +49800 accusative +accusative +accusative +49805 dative +nominative +vocative +nominative +49810 nominative +nominative +genitive +genitive +nominative +nominative +genitive +genitive +49820 nominative +49823 dative +49826 dative +49829 accusative +49831 genitive +genitive +49834 accusative +genitive +49839 dative +49843 dative +49845 accusative +accusative +accusative +49849 accusative +accusative +genitive +genitive +accusative +49855 accusative +49857 accusative +accusative +genitive +genitive +49862 dative +dative +dative +dative +nominative +49869 dative +genitive +genitive +49874 nominative +nominative +genitive +genitive +49882 nominative +nominative +49885 nominative +nominative +genitive +49889 accusative +accusative +49892 genitive +genitive +49895 nominative +nominative +genitive +genitive +49900 accusative +accusative +49906 dative +nominative +nominative +nominative +dative +49912 dative +vocative +49916 nominative +nominative +genitive +49920 nominative +nominative +genitive +dative +dative +nominative +49927 nominative +49929 dative +49933 nominative +49935 nominative +nominative +49939 accusative +accusative +genitive +genitive +nominative +49945 accusative +49948 accusative +49950 dative +nominative +nominative +49954 accusative +accusative +genitive +49959 accusative +49964 dative +49969 dative +dative +49972 nominative +49977 nominative +nominative +accusative +accusative +accusative +accusative +49990 nominative +nominative +nominative +nominative +accusative +accusative +49997 accusative +accusative +nominative +nominative +50003 dative +nominative +nominative +accusative +accusative +accusative +accusative +50014 accusative +accusative +nominative +50018 accusative +accusative +accusative +50023 accusative +accusative +genitive +genitive +50028 nominative +nominative +50031 dative +genitive +genitive +50036 accusative +accusative +genitive +50042 accusative +nominative +nominative +genitive +50047 accusative +50050 accusative +nominative +50053 nominative +nominative +genitive +50057 nominative +nominative +50060 nominative +nominative +genitive +50067 accusative +accusative +50072 nominative +nominative +genitive +genitive +50079 accusative +nominative +nominative +50085 dative +dative +accusative +accusative +accusative +50091 accusative +50093 accusative +50095 accusative +accusative +accusative +50099 nominative +accusative +50102 genitive +accusative +50106 genitive +genitive +50109 accusative +accusative +50112 accusative +accusative +50115 genitive +genitive +accusative +accusative +50121 accusative +accusative +50125 dative +accusative +accusative +dative +50131 accusative +50135 accusative +accusative +genitive +genitive +genitive +accusative +genitive +50143 nominative +nominative +genitive +50147 nominative +50149 nominative +nominative +genitive +genitive +genitive +50155 accusative +50158 nominative +nominative +50162 dative +accusative +accusative +50166 dative +50168 accusative +50171 nominative +50174 dative +50176 accusative +accusative +accusative +50181 dative +dative +50184 accusative +50187 nominative +nominative +50192 dative +50194 nominative +nominative +nominative +50198 nominative +50200 dative +dative +50203 accusative +50205 nominative +50208 genitive +genitive +genitive +genitive +genitive +50217 genitive +50219 nominative +nominative +genitive +50223 accusative +50227 dative +dative +50230 dative +dative +accusative +50234 nominative +nominative +50240 dative +dative +50243 dative +dative +50246 dative +dative +nominative +50251 accusative +accusative +genitive +nominative +genitive +accusative +accusative +accusative +50261 nominative +nominative +50265 accusative +dative +50268 accusative +accusative +50271 accusative +50275 accusative +50278 nominative +50281 genitive +genitive +50284 nominative +50286 nominative +50289 dative +dative +50293 nominative +50295 genitive +genitive +nominative +genitive +genitive +nominative +nominative +dative +nominative +50306 accusative +genitive +50310 dative +vocative +50315 genitive +50317 nominative +50319 nominative +50321 accusative +accusative +accusative +accusative +nominative +50331 nominative +nominative +50334 genitive +50336 nominative +50339 dative +50343 dative +50346 nominative +50352 accusative +accusative +genitive +genitive +50358 accusative +nominative +nominative +50363 nominative +50365 nominative +nominative +50370 accusative +accusative +genitive +genitive +genitive +accusative +50380 nominative +50384 dative +50387 nominative +50390 genitive +50392 genitive +50397 accusative +accusative +genitive +genitive +nominative +nominative +50404 genitive +genitive +nominative +50409 nominative +nominative +50412 genitive +genitive +nominative +50420 dative +50422 accusative +50425 nominative +nominative +50431 accusative +accusative +genitive +50445 nominative +nominative +nominative +50449 genitive +genitive +50452 nominative +50455 dative +50458 nominative +50461 nominative +50464 dative +nominative +50467 nominative +nominative +genitive +genitive +50472 accusative +50478 dative +50480 accusative +50484 accusative +50488 accusative +accusative +genitive +50494 accusative +accusative +50497 dative +50504 dative +accusative +accusative +50509 nominative +50512 accusative +accusative +50516 nominative +50518 genitive +genitive +nominative +nominative +nominative +genitive +genitive +50527 nominative +50529 accusative +accusative +50532 dative +dative +50537 accusative +accusative +genitive +genitive +50542 nominative +nominative +nominative +50546 dative +50548 accusative +accusative +50553 nominative +nominative +accusative +accusative +50558 accusative +accusative +accusative +accusative +50564 nominative +nominative +nominative +50568 accusative +50573 accusative +accusative +50578 nominative +nominative +accusative +accusative +50583 accusative +accusative +50587 accusative +accusative +50592 nominative +nominative +50595 genitive +nominative +nominative +50599 accusative +50602 nominative +50604 nominative +50611 accusative +accusative +genitive +genitive +genitive +genitive +genitive +50619 nominative +50621 nominative +nominative +50624 nominative +nominative +50628 accusative +accusative +50632 nominative +nominative +50635 accusative +accusative +50638 accusative +accusative +50642 nominative +genitive +nominative +nominative +50647 nominative +nominative +accusative +nominative +50652 accusative +accusative +50658 accusative +accusative +50663 nominative +nominative +genitive +50667 nominative +nominative +accusative +accusative +50673 accusative +accusative +50677 genitive +nominative +nominative +50682 dative +50684 nominative +50686 accusative +50688 nominative +nominative +50691 nominative +nominative +genitive +50695 accusative +accusative +accusative +50702 genitive +50707 nominative +50709 nominative +50711 dative +50713 genitive +genitive +50716 nominative +nominative +50727 nominative +50729 accusative +accusative +nominative +50734 nominative +50736 genitive +genitive +genitive +50740 genitive +50742 genitive +50746 accusative +accusative +50750 dative +vocative +nominative +50755 genitive +50757 genitive +genitive +dative +nominative +50763 nominative +50766 nominative +50769 accusative +50771 nominative +50776 nominative +50778 accusative +50782 nominative +dative +50785 genitive +genitive +nominative +nominative +dative +50795 nominative +nominative +nominative +50800 nominative +50803 genitive +nominative +nominative +accusative +accusative +nominative +50811 nominative +nominative +genitive +genitive +nominative +nominative +50818 nominative +genitive +dative +50823 accusative +accusative +genitive +genitive +50828 nominative +nominative +nominative +nominative +nominative +50835 accusative +50838 accusative +50840 nominative +50842 nominative +50844 genitive +50846 nominative +nominative +50849 genitive +genitive +50852 genitive +genitive +50857 genitive +genitive +50860 nominative +50862 genitive +genitive +nominative +50866 genitive +50868 accusative +50872 accusative +50875 accusative +accusative +genitive +nominative +50880 nominative +nominative +genitive +accusative +accusative +50887 nominative +nominative +nominative +50892 accusative +50894 nominative +nominative +accusative +accusative +genitive +genitive +50904 genitive +50906 accusative +accusative +nominative +nominative +50911 accusative +accusative +50914 accusative +50917 dative +dative +genitive +nominative +nominative +50923 accusative +accusative +50926 accusative +accusative +50929 nominative +nominative +dative +dative +50935 accusative +50937 nominative +nominative +genitive +genitive +50943 accusative +50947 nominative +nominative +50951 nominative +nominative +50954 nominative +accusative +accusative +50961 nominative +50963 nominative +nominative +50968 nominative +nominative +genitive +50972 accusative +accusative +50978 accusative +accusative +50982 accusative +50985 genitive +genitive +50990 accusative +genitive +genitive +accusative +accusative +50996 genitive +genitive +accusative +51000 nominative +dative +dative +dative +genitive +51008 nominative +genitive +genitive +51012 nominative +nominative +nominative +51016 genitive +genitive +51021 dative +dative +nominative +51026 nominative +51028 nominative +51030 genitive +genitive +51033 accusative +51035 dative +nominative +nominative +51039 dative +51042 nominative +nominative +genitive +51047 accusative +accusative +51050 accusative +51054 dative +nominative +nominative +nominative +nominative +51060 nominative +nominative +nominative +51064 genitive +genitive +genitive +genitive +51073 nominative +dative +51076 nominative +51079 dative +51082 accusative +accusative +genitive +genitive +51087 nominative +51089 nominative +nominative +dative +51093 dative +51096 nominative +51098 accusative +51102 dative +accusative +accusative +51106 dative +vocative +51109 accusative +51112 nominative +nominative +51115 nominative +51119 accusative +accusative +accusative +accusative +51124 nominative +nominative +51127 genitive +genitive +genitive +genitive +nominative +51133 dative +accusative +accusative +51137 nominative +51139 genitive +51142 nominative +nominative +genitive +51146 nominative +nominative +genitive +51150 nominative +51153 dative +nominative +nominative +nominative +51158 genitive +genitive +genitive +51165 nominative +51168 genitive +genitive +genitive +nominative +51173 dative +51178 accusative +accusative +51181 nominative +nominative +accusative +51185 dative +51188 dative +nominative +genitive +genitive +51193 accusative +accusative +51197 accusative +nominative +nominative +vocative +51202 dative +accusative +accusative +accusative +51214 dative +51217 accusative +accusative +genitive +51224 nominative +nominative +51230 accusative +51232 dative +nominative +nominative +51238 accusative +51243 accusative +51246 accusative +51251 genitive +nominative +accusative +accusative +51257 dative +nominative +nominative +vocative +51263 nominative +51265 nominative +nominative +nominative +genitive +51270 dative +dative +dative +51275 nominative +51279 dative +51281 nominative +nominative +51287 dative +nominative +nominative +51291 dative +vocative +51295 nominative +51299 dative +dative +dative +51304 dative +51306 dative +dative +nominative +51310 accusative +51313 nominative +51315 accusative +51318 nominative +nominative +51321 genitive +genitive +51326 nominative +51331 nominative +nominative +nominative +51335 dative +dative +51338 dative +51340 dative +51343 nominative +nominative +accusative +51347 accusative +accusative +accusative +nominative +nominative +nominative +51354 accusative +accusative +51357 dative +51359 dative +51363 dative +nominative +nominative +51368 nominative +nominative +nominative +nominative +51375 nominative +51377 dative +accusative +51380 dative +nominative +nominative +nominative +nominative +nominative +dative +51390 dative +51392 nominative +nominative +genitive +51399 genitive +51402 nominative +51404 accusative +51407 accusative +51410 genitive +51413 accusative +accusative +genitive +nominative +nominative +51421 accusative +accusative +51425 dative +dative +51429 accusative +nominative +51432 dative +accusative +accusative +51437 nominative +51439 nominative +nominative +51443 genitive +genitive +51448 accusative +51450 dative +51453 accusative +nominative +nominative +nominative +vocative +51460 nominative +51462 dative +nominative +accusative +51467 accusative +nominative +51473 nominative +nominative +51476 accusative +51478 nominative +51480 dative +51483 dative +nominative +nominative +nominative +nominative +51491 accusative +accusative +genitive +genitive +accusative +51498 genitive +accusative +accusative +51502 nominative +51506 nominative +51509 nominative +nominative +51514 dative +51516 accusative +accusative +genitive +51521 accusative +accusative +51524 nominative +51527 accusative +51529 nominative +nominative +accusative +51535 accusative +51537 accusative +accusative +51542 nominative +nominative +51545 nominative +nominative +51549 dative +nominative +nominative +51553 nominative +51555 nominative +51557 nominative +nominative +51560 nominative +nominative +nominative +nominative +51565 accusative +51567 accusative +51569 nominative +51571 nominative +51574 nominative +51576 accusative +accusative +genitive +51582 genitive +genitive +genitive +nominative +genitive +genitive +51590 accusative +51592 accusative +accusative +genitive +genitive +genitive +51599 dative +accusative +accusative +51607 accusative +nominative +nominative +51611 accusative +51614 dative +51619 accusative +51621 dative +nominative +51625 accusative +accusative +genitive +51629 dative +dative +51635 accusative +accusative +accusative +51640 nominative +51645 nominative +51648 nominative +nominative +genitive +genitive +51654 accusative +51656 accusative +51660 accusative +accusative +51663 nominative +nominative +51667 nominative +51669 dative +dative +dative +accusative +51679 accusative +accusative +51682 accusative +nominative +nominative +nominative +accusative +accusative +51690 dative +51692 dative +dative +51696 nominative +51699 accusative +accusative +51705 accusative +accusative +genitive +genitive +51711 accusative +accusative +accusative +51716 nominative +nominative +genitive +nominative +nominative +51723 dative +nominative +nominative +51727 nominative +51730 genitive +genitive +51733 accusative +accusative +51737 accusative +51744 genitive +accusative +accusative +51752 nominative +nominative +51755 accusative +51758 accusative +51760 accusative +51767 accusative +nominative +nominative +vocative +51774 accusative +accusative +genitive +51778 dative +nominative +nominative +51782 nominative +nominative +genitive +51787 nominative +nominative +dative +dative +accusative +51793 dative +nominative +nominative +51800 genitive +genitive +nominative +nominative +51805 dative +nominative +51808 nominative +nominative +genitive +51814 accusative +accusative +51817 genitive +51819 dative +accusative +51824 dative +51827 accusative +accusative +51830 accusative +nominative +nominative +51835 nominative +nominative +51838 dative +dative +dative +51842 dative +51844 dative +nominative +nominative +nominative +nominative +genitive +51853 nominative +51855 nominative +nominative +genitive +nominative +51861 accusative +accusative +accusative +51865 nominative +nominative +nominative +51869 genitive +genitive +51872 accusative +accusative +51875 accusative +51877 nominative +genitive +genitive +51882 nominative +51884 accusative +51888 dative +dative +51891 dative +dative +nominative +nominative +nominative +51897 nominative +51899 accusative +nominative +51902 dative +51904 nominative +genitive +genitive +genitive +genitive +genitive +genitive +accusative +genitive +genitive +accusative +51916 nominative +51918 accusative +51921 dative +dative +51925 accusative +accusative +51928 nominative +nominative +nominative +51932 accusative +accusative +genitive +genitive +nominative +51938 dative +51941 dative +51944 nominative +nominative +51950 accusative +nominative +51953 dative +dative +genitive +nominative +nominative +accusative +accusative +nominative +51962 nominative +51964 accusative +accusative +51969 dative +51971 nominative +51974 dative +nominative +nominative +vocative +accusative +51984 nominative +nominative +51987 accusative +51989 accusative +accusative +51993 dative +51995 nominative +nominative +51998 genitive +52001 dative +nominative +nominative +52006 accusative +accusative +genitive +52014 nominative +nominative +nominative +52019 accusative +accusative +genitive +52026 nominative +52028 dative +dative +dative +52033 nominative +nominative +dative +dative +nominative +52042 dative +52044 accusative +accusative +52047 nominative +52049 dative +nominative +nominative +accusative +accusative +nominative +dative +52058 accusative +accusative +genitive +52064 accusative +nominative +52067 nominative +nominative +nominative +nominative +dative +52076 nominative +nominative +52080 nominative +52083 nominative +nominative +52086 genitive +genitive +52089 dative +dative +52092 accusative +52094 accusative +nominative +nominative +52098 dative +dative +52102 dative +52104 nominative +52110 nominative +nominative +dative +52115 nominative +nominative +52119 dative +dative +52122 nominative +52124 nominative +nominative +accusative +accusative +52130 accusative +52132 nominative +nominative +accusative +accusative +52137 accusative +52140 dative +52142 nominative +52144 dative +nominative +nominative +genitive +52151 nominative +52155 accusative +52158 accusative +52160 nominative +nominative +52164 accusative +52166 accusative +accusative +52170 accusative +accusative +52173 accusative +accusative +accusative +accusative +nominative +dative +dative +52182 nominative +nominative +52186 dative +52190 dative +52193 nominative +nominative +52197 genitive +accusative +52202 accusative +accusative +accusative +accusative +52208 accusative +nominative +52211 accusative +52213 nominative +nominative +52218 nominative +nominative +52221 accusative +accusative +52225 dative +accusative +accusative +nominative +52231 accusative +genitive +accusative +52235 dative +52237 nominative +52241 nominative +nominative +52244 accusative +accusative +52250 nominative +nominative +accusative +52257 nominative +nominative +52260 accusative +52262 accusative +accusative +accusative +52266 dative +dative +52269 nominative +52271 accusative +accusative +52275 accusative +accusative +nominative +52279 nominative +accusative +accusative +52284 accusative +accusative +accusative +accusative +accusative +52292 dative +52294 nominative +accusative +accusative +genitive +nominative +52300 nominative +dative +dative +accusative +52305 accusative +accusative +52309 accusative +52315 genitive +genitive +52318 accusative +accusative +52323 dative +52326 nominative +52331 nominative +nominative +52334 genitive +genitive +genitive +genitive +genitive +genitive +52341 nominative +nominative +52346 nominative +nominative +52349 accusative +52351 dative +52354 dative +dative +52357 accusative +52360 dative +52362 accusative +52364 dative +accusative +52368 nominative +genitive +52373 accusative +52376 nominative +52378 dative +nominative +nominative +52382 dative +dative +52385 genitive +genitive +genitive +52390 nominative +accusative +accusative +nominative +52395 accusative +genitive +nominative +accusative +accusative +nominative +52402 accusative +genitive +52406 nominative +52409 genitive +accusative +52415 nominative +nominative +nominative +nominative +nominative +52424 accusative +accusative +accusative +accusative +52429 accusative +accusative +genitive +genitive +accusative +52435 nominative +52438 genitive +nominative +nominative +genitive +52444 nominative +nominative +52447 nominative +nominative +52450 genitive +52454 nominative +52456 nominative +nominative +accusative +52461 genitive +nominative +52465 accusative +52468 dative +dative +52471 nominative +52474 genitive +accusative +accusative +52479 accusative +52482 nominative +52484 nominative +52486 nominative +nominative +nominative +nominative +52491 nominative +52493 nominative +52497 accusative +52499 dative +dative +genitive +52503 nominative +52505 accusative +accusative +accusative +genitive +genitive +52511 nominative +nominative +accusative +52515 dative +nominative +nominative +52520 accusative +nominative +nominative +nominative +accusative +52528 genitive +52530 nominative +nominative +accusative +52535 nominative +nominative +accusative +nominative +nominative +52542 genitive +52544 accusative +genitive +52549 accusative +genitive +52555 accusative +accusative +genitive +52559 dative +accusative +52562 accusative +52564 nominative +dative +nominative +52570 accusative +accusative +52573 nominative +52576 dative +accusative +accusative +52581 nominative +52583 nominative +nominative +52586 genitive +52592 accusative +52594 accusative +52596 accusative +52598 genitive +52603 accusative +52605 accusative +accusative +genitive +genitive +52612 dative +nominative +52616 dative +dative +genitive +genitive +genitive +52624 accusative +52626 nominative +52629 dative +dative +dative +dative +accusative +52637 nominative +52639 accusative +52641 genitive +nominative +52644 accusative +accusative +accusative +52648 genitive +genitive +genitive +52656 nominative +52658 genitive +52660 accusative +accusative +52663 nominative +nominative +genitive +nominative +52668 accusative +nominative +52674 dative +52677 dative +52680 genitive +nominative +52685 dative +genitive +dative +52691 dative +dative +dative +52696 accusative +52698 nominative +nominative +52701 genitive +genitive +genitive +genitive +genitive +genitive +52709 dative +nominative +nominative +52714 accusative +accusative +accusative +52719 genitive +genitive +52724 accusative +accusative +nominative +52731 genitive +genitive +genitive +52737 nominative +nominative +nominative +nominative +genitive +genitive +52744 nominative +nominative +nominative +accusative +accusative +52750 nominative +52752 nominative +nominative +52756 accusative +52759 accusative +52762 accusative +52765 nominative +52767 accusative +52769 nominative +accusative +52772 nominative +52774 accusative +52778 dative +nominative +nominative +genitive +genitive +nominative +52786 dative +52788 nominative +accusative +accusative +52793 dative +nominative +52796 genitive +genitive +genitive +nominative +nominative +nominative +genitive +genitive +52805 nominative +52807 nominative +52810 accusative +accusative +52814 accusative +52816 nominative +nominative +52820 accusative +52822 nominative +nominative +52825 accusative +accusative +52830 nominative +nominative +52833 dative +dative +52837 nominative +nominative +accusative +accusative +52842 nominative +52845 accusative +accusative +nominative +nominative +52850 nominative +52852 dative +dative +52857 genitive +genitive +accusative +52865 dative +dative +genitive +52869 accusative +accusative +accusative +52874 nominative +52881 accusative +genitive +52884 genitive +52886 genitive +genitive +genitive +accusative +52891 dative +dative +52894 nominative +nominative +nominative +accusative +52899 accusative +52902 nominative +52905 nominative +nominative +nominative +nominative +52910 accusative +accusative +52913 nominative +52919 accusative +52922 accusative +52926 accusative +accusative +nominative +nominative +nominative +52933 nominative +52936 nominative +nominative +genitive +52940 accusative +accusative +52943 nominative +52945 accusative +52948 genitive +genitive +52951 accusative +52953 nominative +52960 accusative +nominative +nominative +52964 nominative +nominative +genitive +genitive +genitive +52971 nominative +52973 accusative +52979 accusative +accusative +accusative +52983 genitive +genitive +52987 genitive +genitive +accusative +52993 nominative +52995 dative +nominative +53003 accusative +53005 accusative +accusative +53010 nominative +nominative +53013 genitive +genitive +53016 accusative +53018 dative +53020 nominative +nominative +nominative +nominative +53025 genitive +genitive +53029 nominative +nominative +53036 nominative +53041 dative +dative +genitive +nominative +nominative +53047 accusative +accusative +53050 nominative +nominative +nominative +genitive +53056 accusative +53059 genitive +53061 genitive +genitive +53065 accusative +accusative +genitive +genitive +genitive +53073 nominative +nominative +53076 nominative +53081 nominative +nominative +genitive +53085 nominative +53087 accusative +accusative +53092 accusative +nominative +accusative +accusative +53097 nominative +accusative +53100 genitive +genitive +53103 dative +vocative +53109 dative +nominative +nominative +53117 dative +53119 accusative +53123 accusative +53128 genitive +genitive +53134 accusative +accusative +accusative +accusative +53139 accusative +accusative +accusative +accusative +53144 accusative +accusative +accusative +nominative +nominative +genitive +genitive +dative +53154 accusative +nominative +nominative +nominative +nominative +53163 accusative +accusative +53168 accusative +accusative +genitive +genitive +53173 nominative +53176 dative +nominative +53179 nominative +nominative +genitive +genitive +53186 accusative +53188 nominative +53191 dative +53193 accusative +accusative +53196 nominative +53201 dative +accusative +53204 nominative +nominative +genitive +accusative +accusative +53211 dative +dative +53215 nominative +accusative +53218 genitive +genitive +53221 dative +53225 dative +nominative +nominative +53231 dative +53233 nominative +53235 dative +accusative +accusative +53239 genitive +genitive +53242 nominative +nominative +genitive +53246 dative +accusative +accusative +53250 genitive +genitive +accusative +accusative +53255 nominative +nominative +genitive +genitive +53260 nominative +nominative +53263 genitive +genitive +53266 accusative +nominative +dative +dative +53273 accusative +vocative +53277 dative +accusative +accusative +accusative +53282 dative +nominative +nominative +nominative +53287 nominative +nominative +genitive +genitive +nominative +nominative +53294 accusative +53299 nominative +nominative +53302 accusative +53309 dative +53313 accusative +53317 accusative +accusative +53320 dative +nominative +nominative +53324 accusative +53327 accusative +accusative +53330 accusative +53338 genitive +genitive +53343 accusative +accusative +accusative +accusative +53348 accusative +accusative +genitive +genitive +accusative +53354 nominative +53356 nominative +nominative +genitive +genitive +accusative +53362 accusative +accusative +53365 dative +53369 genitive +53372 accusative +53374 dative +dative +dative +53378 nominative +53380 nominative +nominative +genitive +genitive +genitive +53386 nominative +nominative +nominative +accusative +accusative +53392 nominative +53394 accusative +53396 accusative +accusative +53400 accusative +nominative +53403 dative +dative +dative +53408 nominative +nominative +53411 genitive +53414 nominative +53416 nominative +nominative +nominative +nominative +53421 genitive +genitive +53426 nominative +53428 nominative +nominative +nominative +genitive +genitive +nominative +53435 accusative +accusative +53438 accusative +accusative +53445 genitive +genitive +53449 nominative +53452 dative +53456 genitive +nominative +53461 accusative +53464 nominative +nominative +nominative +nominative +accusative +53470 accusative +nominative +53473 accusative +53475 dative +dative +dative +53479 nominative +53481 dative +dative +53485 nominative +nominative +genitive +nominative +nominative +nominative +53492 genitive +genitive +53495 nominative +53498 accusative +53501 accusative +accusative +53504 nominative +53507 nominative +nominative +53510 genitive +genitive +nominative +53514 accusative +accusative +53519 dative +nominative +nominative +53523 accusative +accusative +nominative +53527 nominative +nominative +genitive +genitive +nominative +nominative +genitive +53536 dative +dative +accusative +accusative +53542 nominative +53544 nominative +nominative +nominative +53548 genitive +genitive +nominative +53552 nominative +53554 genitive +53559 nominative +53561 nominative +nominative +nominative +nominative +nominative +53567 genitive +genitive +nominative +53571 nominative +53574 genitive +genitive +genitive +53579 accusative +accusative +53583 nominative +nominative +accusative +nominative +53588 nominative +nominative +genitive +53593 genitive +genitive +genitive +genitive +53600 accusative +nominative +nominative +nominative +53606 nominative +dative +53609 accusative +accusative +53614 dative +nominative +nominative +53620 dative +53624 accusative +accusative +genitive +genitive +genitive +genitive +53632 genitive +accusative +accusative +53637 accusative +53639 dative +nominative +nominative +genitive +accusative +accusative +53646 nominative +genitive +accusative +accusative +53651 accusative +accusative +nominative +53655 accusative +dative +dative +dative +53660 nominative +nominative +genitive +nominative +nominative +53667 nominative +nominative +genitive +nominative +nominative +53673 nominative +nominative +genitive +accusative +accusative +53679 nominative +genitive +accusative +accusative +53684 dative +53686 nominative +53688 dative +53691 accusative +nominative +nominative +nominative +nominative +53698 accusative +accusative +53701 nominative +nominative +accusative +nominative +53707 accusative +nominative +53710 nominative +nominative +nominative +53714 genitive +nominative +53719 nominative +nominative +53723 nominative +nominative +accusative +accusative +accusative +53730 accusative +accusative +accusative +53735 dative +nominative +53738 dative +53740 nominative +53742 genitive +genitive +genitive +nominative +53747 nominative +53749 nominative +nominative +nominative +nominative +53754 genitive +53757 nominative +nominative +nominative +53761 dative +53765 genitive +nominative +nominative +genitive +53770 dative +nominative +accusative +53777 accusative +accusative +genitive +genitive +accusative +53784 accusative +accusative +nominative +nominative +53789 nominative +nominative +nominative +nominative +53795 accusative +nominative +nominative +accusative +nominative +53801 dative +nominative +53805 nominative +53810 genitive +nominative +nominative +53818 genitive +nominative +nominative +nominative +53823 nominative +53825 nominative +53827 nominative +53829 nominative +nominative +accusative +53835 accusative +53837 dative +53839 nominative +53843 accusative +53847 nominative +dative +53850 genitive +genitive +53853 genitive +nominative +genitive +genitive +genitive +53860 accusative +53865 genitive +53869 nominative +nominative +dative +53875 nominative +53879 dative +nominative +nominative +vocative +53884 accusative +53886 accusative +genitive +genitive +53891 nominative +53896 nominative +53898 nominative +nominative +genitive +genitive +53903 dative +nominative +nominative +53907 nominative +accusative +accusative +53914 genitive +nominative +nominative +53920 accusative +accusative +genitive +genitive +53925 nominative +53928 accusative +nominative +53931 genitive +53935 accusative +53937 nominative +nominative +53940 dative +dative +53946 dative +dative +53951 accusative +53953 nominative +nominative +53958 nominative +nominative +genitive +genitive +nominative +nominative +53967 accusative +nominative +nominative +genitive +53976 accusative +accusative +53980 nominative +nominative +genitive +53984 accusative +accusative +genitive +accusative +53990 nominative +accusative +53993 dative +53997 nominative +53999 dative +54002 accusative +54005 accusative +dative +dative +54010 nominative +nominative +genitive +54015 accusative +54018 dative +nominative +nominative +nominative +nominative +nominative +nominative +54028 nominative +nominative +nominative +nominative +54034 nominative +54037 nominative +nominative +54040 accusative +54042 accusative +54045 nominative +54048 genitive +54050 nominative +nominative +genitive +nominative +54055 nominative +54058 accusative +accusative +nominative +54064 accusative +accusative +accusative +54068 nominative +nominative +nominative +54074 accusative +nominative +dative +54079 dative +dative +54084 nominative +nominative +genitive +54088 accusative +accusative +54092 nominative +54099 dative +54101 nominative +nominative +54104 accusative +54106 dative +dative +54112 nominative +54114 nominative +54116 genitive +54118 nominative +54120 dative +dative +54123 nominative +54126 nominative +54129 nominative +54134 accusative +accusative +54137 nominative +dative +54141 genitive +54143 accusative +accusative +genitive +genitive +54149 genitive +genitive +genitive +54153 nominative +54155 accusative +accusative +54161 nominative +nominative +nominative +54165 nominative +accusative +54169 nominative +54172 dative +nominative +54176 nominative +nominative +nominative +54181 nominative +54183 genitive +genitive +accusative +54187 nominative +54189 accusative +accusative +genitive +54195 genitive +genitive +54199 genitive +genitive +54203 nominative +54205 genitive +54207 nominative +54209 genitive +nominative +accusative +accusative +accusative +accusative +54217 nominative +nominative +accusative +accusative +genitive +genitive +accusative +nominative +nominative +54228 nominative +54230 dative +54234 nominative +54236 dative +accusative +accusative +54240 nominative +54242 genitive +54244 accusative +accusative +accusative +accusative +54251 nominative +nominative +accusative +54255 nominative +accusative +54260 nominative +54263 dative +accusative +accusative +54268 nominative +54271 accusative +nominative +54274 dative +accusative +accusative +54280 genitive +genitive +54285 genitive +genitive +54289 dative +54291 accusative +54293 accusative +54295 nominative +54297 dative +54301 nominative +nominative +genitive +dative +54307 accusative +accusative +accusative +54312 dative +54316 accusative +54318 accusative +accusative +accusative +54324 nominative +54326 genitive +genitive +54329 nominative +54331 accusative +54336 dative +54339 accusative +dative +54346 nominative +nominative +54349 nominative +54351 nominative +nominative +54354 accusative +54359 nominative +nominative +54363 nominative +54370 dative +dative +nominative +nominative +nominative +54376 nominative +accusative +54385 genitive +54390 nominative +nominative +nominative +accusative +accusative +nominative +54398 nominative +54400 accusative +54403 genitive +54405 nominative +accusative +54410 accusative +54413 nominative +54416 accusative +accusative +accusative +54422 nominative +nominative +genitive +54427 genitive +genitive +nominative +54432 accusative +54435 nominative +nominative +54440 accusative +accusative +54443 genitive +nominative +54447 nominative +nominative +genitive +genitive +genitive +54453 genitive +accusative +54457 nominative +nominative +54460 nominative +nominative +accusative +54465 accusative +54468 nominative +nominative +54471 accusative +accusative +54474 genitive +54479 accusative +accusative +accusative +54483 accusative +54490 nominative +54492 nominative +54497 nominative +nominative +54500 accusative +54503 nominative +54506 nominative +54509 accusative +54513 accusative +accusative +genitive +genitive +54520 accusative +accusative +nominative +54524 nominative +nominative +nominative +accusative +54530 accusative +54537 nominative +54539 nominative +54544 dative +dative +dative +dative +dative +genitive +genitive +54552 nominative +nominative +54556 nominative +54558 nominative +54562 accusative +54565 nominative +nominative +54568 accusative +54571 nominative +nominative +nominative +genitive +genitive +54577 genitive +genitive +genitive +54582 accusative +54585 genitive +genitive +genitive +54590 nominative +nominative +54593 accusative +54597 nominative +54599 nominative +54604 genitive +genitive +nominative +genitive +genitive +genitive +54611 nominative +54614 nominative +nominative +nominative +54618 nominative +54620 nominative +nominative +54623 nominative +54628 genitive +genitive +nominative +nominative +54634 nominative +nominative +54639 genitive +genitive +genitive +54644 genitive +genitive +genitive +54649 nominative +54651 nominative +nominative +54654 nominative +54657 dative +dative +54660 accusative +54662 nominative +54664 genitive +54667 accusative +54669 nominative +54672 accusative +accusative +accusative +54677 nominative +nominative +54680 accusative +accusative +54683 accusative +54686 dative +nominative +54689 accusative +54692 accusative +54694 nominative +nominative +54699 nominative +54701 nominative +nominative +nominative +54707 dative +nominative +nominative +54712 nominative +54715 nominative +54717 genitive +genitive +54721 accusative +54724 genitive +genitive +54727 nominative +nominative +nominative +nominative +54732 nominative +accusative +accusative +nominative +54739 accusative +nominative +nominative +nominative +54744 accusative +accusative +nominative +nominative +54749 genitive +54751 nominative +nominative +genitive +54755 accusative +accusative +54760 accusative +54762 genitive +54765 accusative +54770 dative +54773 nominative +54775 genitive +genitive +54783 genitive +genitive +nominative +54790 nominative +54792 accusative +accusative +genitive +54796 nominative +54799 accusative +accusative +genitive +genitive +54804 genitive +54808 accusative +accusative +54811 nominative +nominative +nominative +54816 accusative +54818 nominative +54820 accusative +54823 nominative +nominative +54826 nominative +nominative +54829 accusative +accusative +54832 dative +accusative +54835 nominative +accusative +54838 dative +54840 dative +vocative +nominative +nominative +nominative +54846 dative +nominative +54850 dative +dative +nominative +dative +54855 accusative +accusative +54859 nominative +accusative +54863 accusative +54865 nominative +accusative +54870 genitive +54872 nominative +nominative +54875 nominative +dative +dative +54880 accusative +accusative +54885 nominative +accusative +nominative +54890 accusative +nominative +nominative +genitive +nominative +accusative +accusative +54898 dative +54903 nominative +54906 accusative +accusative +54909 nominative +nominative +54913 genitive +genitive +nominative +54917 nominative +54919 nominative +54921 genitive +genitive +54924 genitive +genitive +54928 nominative +nominative +nominative +54932 nominative +nominative +54935 dative +nominative +54938 nominative +nominative +nominative +54942 accusative +nominative +54945 genitive +genitive +54948 dative +nominative +nominative +54953 nominative +nominative +nominative +genitive +nominative +accusative +54961 nominative +54963 nominative +vocative +54967 dative +nominative +nominative +54971 nominative +accusative +54980 dative +54982 nominative +nominative +nominative +nominative +54987 nominative +nominative +genitive +genitive +nominative +nominative +dative +54998 dative +dative +55002 accusative +accusative +genitive +genitive +55008 dative +nominative +nominative +nominative +55013 genitive +55015 nominative +nominative +genitive +55020 nominative +55022 nominative +55025 dative +55027 nominative +55030 genitive +nominative +55033 nominative +nominative +genitive +55044 nominative +55052 nominative +55054 accusative +accusative +55057 nominative +55060 accusative +55065 nominative +nominative +nominative +nominative +nominative +nominative +55073 nominative +55077 nominative +55079 nominative +nominative +accusative +55085 dative +dative +dative +dative +55092 genitive +nominative +nominative +nominative +55097 nominative +55099 nominative +nominative +55102 genitive +55106 genitive +nominative +nominative +accusative +nominative +55113 dative +55116 nominative +nominative +genitive +55120 nominative +55122 accusative +55125 accusative +accusative +genitive +55129 accusative +55133 accusative +accusative +genitive +55137 accusative +accusative +accusative +55142 dative +dative +nominative +55146 dative +dative +55149 nominative +55151 accusative +55155 nominative +nominative +genitive +55161 dative +nominative +55166 accusative +55169 dative +dative +genitive +55174 nominative +55177 nominative +55182 nominative +nominative +55186 accusative +55190 nominative +55193 nominative +55198 dative +nominative +55201 genitive +55204 nominative +55206 genitive +55209 nominative +55211 genitive +genitive +genitive +55215 nominative +55219 genitive +genitive +genitive +55224 dative +55228 dative +dative +genitive +55236 nominative +55240 dative +dative +genitive +55245 dative +nominative +nominative +55250 dative +nominative +nominative +accusative +accusative +accusative +accusative +55259 dative +55261 accusative +55263 genitive +55268 nominative +nominative +accusative +nominative +55273 accusative +nominative +55277 genitive +accusative +55281 accusative +accusative +55286 accusative +accusative +dative +55292 nominative +nominative +55296 accusative +accusative +genitive +genitive +55303 nominative +55307 genitive +55309 accusative +55313 accusative +nominative +nominative +accusative +55319 nominative +nominative +accusative +55323 genitive +55327 accusative +accusative +55330 nominative +accusative +accusative +dative +55336 accusative +genitive +genitive +nominative +55342 accusative +55345 nominative +nominative +55348 accusative +accusative +dative +accusative +55353 nominative +55356 dative +dative +dative +dative +55361 nominative +genitive +55366 accusative +accusative +55369 nominative +nominative +55372 accusative +55375 accusative +nominative +genitive +55380 dative +55384 nominative +55387 nominative +55390 dative +nominative +nominative +55396 dative +55398 nominative +nominative +nominative +accusative +accusative +55404 nominative +genitive +genitive +55408 nominative +nominative +55413 dative +dative +55416 accusative +accusative +nominative +nominative +55422 accusative +accusative +55426 nominative +nominative +accusative +55431 nominative +55435 nominative +genitive +55440 accusative +55443 nominative +nominative +nominative +nominative +55450 dative +accusative +nominative +55455 dative +dative +55460 nominative +accusative +55464 genitive +genitive +55470 dative +nominative +nominative +genitive +nominative +55477 dative +nominative +nominative +55481 nominative +genitive +genitive +55485 accusative +accusative +genitive +genitive +55494 accusative +accusative +nominative +accusative +accusative +dative +55501 accusative +55504 genitive +genitive +accusative +nominative +55510 nominative +55512 accusative +accusative +genitive +genitive +genitive +55518 dative +nominative +55521 genitive +55524 accusative +accusative +accusative +accusative +55530 dative +nominative +nominative +55534 nominative +nominative +nominative +genitive +55541 accusative +55543 nominative +55545 genitive +genitive +55553 genitive +55556 nominative +accusative +55560 accusative +accusative +accusative +accusative +accusative +55571 accusative +accusative +accusative +accusative +nominative +55577 genitive +genitive +genitive +genitive +55583 accusative +accusative +genitive +genitive +genitive +55590 nominative +nominative +55594 genitive +55597 dative +dative +55604 nominative +55606 dative +55609 accusative +accusative +55612 genitive +genitive +55616 nominative +55619 nominative +nominative +genitive +55623 nominative +55625 accusative +accusative +55630 dative +nominative +55633 genitive +55635 accusative +55637 genitive +55639 accusative +55642 accusative +nominative +55646 dative +nominative +nominative +55650 genitive +genitive +accusative +accusative +genitive +genitive +55658 accusative +nominative +55664 genitive +genitive +55669 nominative +nominative +55673 dative +55677 nominative +55679 nominative +55681 nominative +55683 accusative +55686 nominative +nominative +accusative +55693 accusative +accusative +genitive +55697 nominative +55699 accusative +55701 nominative +55704 accusative +accusative +genitive +55708 nominative +nominative +55711 nominative +55715 dative +55717 nominative +accusative +accusative +accusative +55722 accusative +55727 accusative +accusative +55730 dative +nominative +nominative +55736 accusative +55738 nominative +55741 nominative +nominative +55744 nominative +55747 nominative +accusative +accusative +genitive +55755 genitive +55757 accusative +accusative +55760 nominative +nominative +55763 genitive +genitive +genitive +genitive +nominative +55770 nominative +nominative +55773 accusative +accusative +55777 nominative +55779 nominative +55781 accusative +nominative +nominative +genitive +nominative +55788 nominative +nominative +genitive +nominative +nominative +accusative +accusative +nominative +55798 nominative +genitive +55804 accusative +55806 nominative +55808 accusative +55814 accusative +55816 nominative +dative +nominative +55821 accusative +55823 accusative +accusative +genitive +55827 nominative +nominative +nominative +genitive +55834 accusative +accusative +accusative +accusative +55844 nominative +nominative +55847 accusative +55849 accusative +55853 accusative +55856 dative +nominative +55861 dative +55863 accusative +55865 nominative +55869 accusative +55873 accusative +55875 nominative +55880 genitive +genitive +55883 nominative +55885 accusative +accusative +55888 genitive +55891 accusative +nominative +nominative +genitive +nominative +vocative +nominative +55899 nominative +55901 nominative +nominative +genitive +55905 nominative +55908 nominative +55910 nominative +55913 nominative +nominative +genitive +55919 nominative +nominative +genitive +genitive +55924 dative +55926 accusative +55928 accusative +accusative +genitive +genitive +accusative +55934 nominative +55937 nominative +55939 nominative +55944 dative +dative +55948 nominative +genitive +genitive +accusative +nominative +55957 accusative +55959 genitive +genitive +55963 genitive +accusative +accusative +55967 accusative +accusative +55971 dative +55975 accusative +accusative +genitive +genitive +nominative +55981 nominative +55988 nominative +55990 nominative +nominative +55993 nominative +nominative +accusative +accusative +accusative +55999 nominative +56003 nominative +56005 nominative +nominative +56008 nominative +nominative +56012 nominative +56014 nominative +56018 nominative +dative +56021 nominative +56024 nominative +56028 dative +56032 genitive +nominative +nominative +56036 nominative +nominative +nominative +nominative +nominative +nominative +accusative +56046 genitive +accusative +accusative +56051 dative +56055 accusative +accusative +56060 nominative +56062 nominative +56066 dative +56069 nominative +56074 accusative +accusative +56077 accusative +56079 accusative +accusative +56083 nominative +56085 dative +dative +accusative +accusative +56090 nominative +nominative +56094 genitive +accusative +accusative +56100 accusative +56102 nominative +nominative +56107 nominative +56109 dative +accusative +56113 genitive +accusative +accusative +56123 genitive +genitive +nominative +56129 genitive +nominative +nominative +nominative +56134 accusative +accusative +56138 nominative +56142 nominative +nominative +accusative +accusative +56148 nominative +56151 dative +56154 dative +dative +56157 accusative +nominative +56161 genitive +56164 genitive +accusative +accusative +56168 nominative +56171 nominative +56176 nominative +nominative +56179 genitive +56182 nominative +56186 genitive +56188 accusative +accusative +genitive +genitive +genitive +56195 accusative +nominative +nominative +56199 nominative +nominative +genitive +accusative +nominative +56206 nominative +56214 nominative +nominative +genitive +56221 nominative +56223 nominative +nominative +genitive +56228 nominative +56237 nominative +56239 genitive +accusative +accusative +nominative +56245 accusative +56247 accusative +56249 nominative +56251 genitive +56253 accusative +56255 nominative +nominative +genitive +56260 accusative +accusative +56265 nominative +nominative +56269 nominative +accusative +56272 accusative +nominative +56276 accusative +nominative +nominative +genitive +56282 accusative +56284 accusative +56288 accusative +accusative +56291 genitive +nominative +56294 nominative +56297 dative +56299 accusative +dative +dative +nominative +56305 nominative +nominative +nominative +nominative +56312 nominative +56314 nominative +56318 accusative +56321 nominative +nominative +56327 dative +accusative +56330 dative +56333 genitive +accusative +accusative +56337 dative +56339 dative +56344 accusative +56350 nominative +56352 genitive +nominative +56357 accusative +56360 nominative +nominative +genitive +56365 nominative +genitive +genitive +nominative +56370 nominative +56373 dative +56375 nominative +nominative +56378 accusative +56384 nominative +nominative +56388 dative +56391 dative +nominative +nominative +56396 nominative +56403 genitive +accusative +accusative +56408 nominative +nominative +genitive +56415 nominative +nominative +56419 accusative +accusative +genitive +56423 genitive +56426 genitive +genitive +56432 nominative +accusative +genitive +genitive +56439 nominative +56441 genitive +56445 accusative +56449 dative +56451 dative +nominative +56454 nominative +56456 nominative +56458 accusative +56461 accusative +56464 nominative +56467 accusative +56470 nominative +accusative +56473 nominative +56476 accusative +accusative +genitive +genitive +56481 nominative +56485 nominative +56487 vocative +56491 accusative +56493 dative +nominative +nominative +56498 accusative +56500 nominative +nominative +56503 genitive +nominative +56507 nominative +56510 vocative +56513 dative +56516 nominative +nominative +56519 accusative +nominative +56522 accusative +accusative +accusative +56527 nominative +56529 nominative +56532 nominative +nominative +nominative +56537 accusative +56539 genitive +genitive +nominative +56543 genitive +nominative +56547 dative +56550 nominative +nominative +56554 dative +nominative +nominative +56558 nominative +56563 accusative +56569 nominative +nominative +genitive +56576 dative +nominative +56579 nominative +56581 genitive +genitive +56584 accusative +accusative +genitive +genitive +56589 nominative +56591 nominative +nominative +56595 nominative +56597 nominative +nominative +56600 genitive +genitive +56603 nominative +genitive +genitive +dative +nominative +nominative +56611 nominative +nominative +genitive +genitive +genitive +56618 accusative +accusative +accusative +56623 accusative +56626 accusative +56628 accusative +accusative +accusative +56633 genitive +56636 nominative +nominative +dative +56642 accusative +accusative +genitive +56646 dative +56653 genitive +56657 genitive +genitive +accusative +accusative +accusative +accusative +accusative +56665 dative +nominative +nominative +56669 nominative +56672 nominative +56674 accusative +56676 dative +56680 nominative +nominative +56685 dative +56687 nominative +56689 nominative +nominative +genitive +genitive +nominative +nominative +56697 genitive +nominative +56701 nominative +56705 genitive +nominative +nominative +nominative +56710 nominative +nominative +56714 genitive +nominative +56723 accusative +56725 nominative +nominative +56737 nominative +56740 accusative +56743 accusative +56745 nominative +56747 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +accusative +accusative +genitive +56760 genitive +genitive +nominative +nominative +56766 nominative +nominative +genitive +56771 nominative +nominative +nominative +56775 accusative +accusative +accusative +56780 accusative +accusative +56785 nominative +nominative +56788 accusative +56792 nominative +56797 dative +56799 genitive +genitive +nominative +56803 nominative +nominative +nominative +nominative +56809 accusative +accusative +56813 accusative +nominative +nominative +56818 accusative +nominative +nominative +nominative +56823 accusative +accusative +56826 accusative +accusative +genitive +56831 genitive +genitive +56834 accusative +accusative +56837 nominative +56841 genitive +genitive +genitive +accusative +accusative +56849 genitive +genitive +genitive +56855 nominative +nominative +nominative +nominative +56860 accusative +accusative +nominative +nominative +56866 nominative +56868 accusative +accusative +genitive +56874 accusative +nominative +56877 accusative +56879 genitive +56881 nominative +56883 accusative +56885 genitive +accusative +56889 accusative +56891 accusative +56895 accusative +accusative +accusative +accusative +56901 genitive +genitive +genitive +nominative +56908 dative +dative +56911 accusative +accusative +accusative +56916 nominative +56918 genitive +accusative +56923 accusative +genitive +56926 nominative +56928 nominative +nominative +nominative +56933 genitive +56935 nominative +56937 genitive +accusative +56942 nominative +nominative +56945 dative +dative +nominative +56951 nominative +nominative +56954 dative +dative +56957 dative +dative +genitive +genitive +56963 accusative +nominative +nominative +56968 dative +56971 accusative +accusative +genitive +56976 nominative +56978 nominative +nominative +56981 dative +dative +56984 dative +nominative +nominative +56988 dative +56992 nominative +nominative +accusative +nominative +56998 dative +dative +genitive +genitive +genitive +nominative +57006 genitive +57008 nominative +57015 genitive +genitive +genitive +genitive +nominative +nominative +nominative +nominative +genitive +genitive +genitive +57027 nominative +57029 accusative +57032 dative +nominative +57035 dative +accusative +accusative +57043 accusative +accusative +57048 nominative +accusative +57051 genitive +genitive +genitive +nominative +nominative +genitive +accusative +57059 dative +genitive +nominative +57064 nominative +57068 genitive +genitive +genitive +genitive +nominative +57074 nominative +nominative +nominative +57080 accusative +nominative +nominative +57085 accusative +57087 dative +nominative +nominative +accusative +accusative +accusative +57094 dative +57096 genitive +genitive +57099 accusative +genitive +accusative +accusative +57105 dative +nominative +nominative +57109 genitive +genitive +57113 accusative +57116 genitive +57119 nominative +nominative +nominative +57123 accusative +accusative +57126 dative +nominative +nominative +57131 nominative +57133 dative +dative +genitive +57137 nominative +57139 nominative +57142 accusative +57144 accusative +57146 accusative +nominative +nominative +genitive +genitive +57156 nominative +nominative +accusative +nominative +nominative +57165 accusative +accusative +nominative +57173 nominative +genitive +genitive +57180 accusative +accusative +genitive +genitive +genitive +57187 dative +57192 dative +57195 dative +dative +57204 dative +nominative +nominative +nominative +57209 dative +dative +57213 accusative +57219 genitive +genitive +genitive +57226 genitive +genitive +57229 accusative +accusative +57233 nominative +nominative +accusative +accusative +57241 nominative +57244 accusative +57249 nominative +accusative +accusative +57254 nominative +accusative +57257 nominative +57259 genitive +nominative +57263 nominative +57266 accusative +57270 nominative +nominative +nominative +57274 genitive +57276 genitive +genitive +genitive +57280 genitive +genitive +genitive +genitive +57286 nominative +nominative +nominative +accusative +accusative +dative +57293 nominative +accusative +accusative +genitive +dative +dative +genitive +genitive +nominative +nominative +nominative +57307 nominative +nominative +57310 accusative +nominative +vocative +57314 accusative +57318 nominative +nominative +nominative +57322 nominative +nominative +nominative +57328 accusative +57331 genitive +genitive +genitive +genitive +57337 nominative +nominative +genitive +genitive +57342 genitive +57345 nominative +nominative +accusative +accusative +57350 accusative +accusative +genitive +57354 accusative +accusative +57365 dative +57367 dative +57369 accusative +57372 accusative +57374 dative +dative +57378 accusative +accusative +57382 dative +nominative +nominative +vocative +57388 accusative +57390 nominative +nominative +57397 nominative +57400 nominative +57402 genitive +genitive +57405 nominative +57408 dative +dative +57413 accusative +accusative +genitive +genitive +genitive +57421 nominative +57424 dative +dative +57428 nominative +nominative +57433 dative +accusative +57438 accusative +57440 dative +nominative +nominative +nominative +genitive +57450 accusative +57453 nominative +nominative +dative +vocative +57462 nominative +nominative +57465 genitive +genitive +genitive +57469 nominative +57473 genitive +genitive +genitive +genitive +57481 dative +nominative +nominative +dative +nominative +57490 accusative +57500 accusative +57503 nominative +nominative +nominative +nominative +dative +dative +57511 nominative +57515 genitive +57517 nominative +nominative +nominative +57521 accusative +accusative +accusative +57525 accusative +57527 dative +dative +57531 nominative +57533 genitive +genitive +57537 genitive +57540 nominative +57542 genitive +genitive +57546 accusative +accusative +57549 accusative +57552 accusative +57554 genitive +genitive +57560 nominative +57562 nominative +nominative +57565 dative +57567 nominative +57569 dative +dative +57574 nominative +nominative +57577 accusative +vocative +57585 nominative +nominative +genitive +57593 accusative +57595 accusative +accusative +57598 dative +nominative +nominative +57602 dative +nominative +nominative +57606 nominative +nominative +genitive +57610 dative +nominative +nominative +57617 dative +dative +57620 dative +dative +dative +57624 dative +nominative +nominative +nominative +57629 nominative +nominative +57632 nominative +nominative +nominative +nominative +57637 accusative +57642 nominative +nominative +nominative +57646 nominative +57648 accusative +57653 accusative +accusative +57656 accusative +57658 dative +57660 vocative +nominative +57664 nominative +57666 nominative +nominative +nominative +nominative +genitive +genitive +nominative +57674 accusative +accusative +nominative +57678 accusative +nominative +57683 accusative +accusative +accusative +genitive +57688 nominative +nominative +nominative +57694 accusative +57696 nominative +57700 accusative +57704 accusative +57708 nominative +nominative +57711 accusative +accusative +57717 dative +dative +57721 dative +nominative +nominative +57725 nominative +nominative +nominative +nominative +57730 genitive +57732 dative +dative +57735 nominative +accusative +nominative +accusative +accusative +57746 dative +nominative +57751 accusative +accusative +57757 nominative +nominative +57763 nominative +nominative +accusative +57768 genitive +accusative +accusative +nominative +dative +vocative +57780 genitive +nominative +nominative +57784 nominative +57787 accusative +accusative +57790 accusative +accusative +dative +accusative +accusative +57796 dative +dative +57800 accusative +57805 accusative +57807 dative +vocative +57813 nominative +nominative +57817 nominative +nominative +57822 accusative +57824 nominative +57826 genitive +57830 nominative +nominative +nominative +accusative +accusative +genitive +genitive +57840 nominative +57844 nominative +57846 nominative +57848 dative +57851 accusative +accusative +57855 nominative +57857 nominative +57860 dative +57862 nominative +nominative +57865 accusative +accusative +57868 dative +nominative +nominative +genitive +genitive +nominative +vocative +57878 nominative +57881 dative +nominative +nominative +57886 dative +57891 accusative +accusative +genitive +genitive +57897 accusative +accusative +57900 nominative +nominative +57903 accusative +accusative +57908 vocative +57910 dative +57913 genitive +57915 nominative +57919 genitive +57923 accusative +accusative +accusative +accusative +57931 nominative +accusative +57935 accusative +nominative +dative +dative +57940 vocative +57944 nominative +nominative +nominative +accusative +accusative +57950 accusative +accusative +dative +57954 nominative +nominative +genitive +dative +57960 dative +nominative +nominative +57964 accusative +57967 accusative +57970 nominative +57972 genitive +genitive +nominative +nominative +57977 accusative +accusative +57980 nominative +accusative +57985 accusative +57987 nominative +57989 genitive +57992 accusative +accusative +57996 dative +accusative +57999 nominative +58002 nominative +nominative +58005 nominative +nominative +accusative +58010 accusative +58013 nominative +nominative +nominative +accusative +accusative +58021 accusative +58023 nominative +58026 accusative +58029 nominative +nominative +58033 genitive +58035 accusative +accusative +58038 accusative +accusative +58041 nominative +nominative +58044 genitive +nominative +nominative +nominative +genitive +genitive +genitive +58052 dative +nominative +58056 accusative +58061 dative +58063 nominative +nominative +58067 genitive +genitive +58071 nominative +nominative +nominative +58076 accusative +58078 genitive +58082 nominative +nominative +genitive +genitive +genitive +58090 nominative +58093 genitive +genitive +58098 genitive +genitive +accusative +58104 accusative +accusative +genitive +genitive +accusative +accusative +58112 accusative +58115 genitive +genitive +genitive +58121 accusative +58123 nominative +nominative +58126 dative +58129 dative +dative +58135 accusative +accusative +58138 genitive +genitive +58141 accusative +accusative +accusative +58147 genitive +genitive +58152 nominative +nominative +genitive +genitive +58158 nominative +58160 accusative +58162 genitive +genitive +58165 genitive +genitive +58169 accusative +58172 accusative +accusative +58177 genitive +58179 dative +dative +nominative +nominative +58184 dative +58190 accusative +accusative +58194 nominative +nominative +58197 nominative +nominative +accusative +58202 nominative +58209 accusative +58211 nominative +nominative +58215 genitive +genitive +genitive +58220 accusative +58223 nominative +accusative +58227 genitive +nominative +58231 dative +accusative +58235 nominative +nominative +58239 nominative +nominative +58242 nominative +58244 genitive +genitive +58247 dative +58249 nominative +nominative +nominative +accusative +genitive +genitive +genitive +genitive +58258 accusative +accusative +genitive +genitive +58264 dative +dative +genitive +accusative +accusative +genitive +58271 nominative +nominative +58275 genitive +genitive +genitive +genitive +58281 nominative +nominative +nominative +nominative +genitive +genitive +genitive +nominative +nominative +accusative +58293 accusative +nominative +nominative +nominative +58299 genitive +genitive +58303 dative +58306 accusative +58310 genitive +genitive +58313 dative +58316 nominative +58319 accusative +accusative +nominative +accusative +accusative +58327 nominative +nominative +58330 accusative +58333 accusative +accusative +genitive +genitive +genitive +58339 accusative +58341 accusative +accusative +58346 genitive +58348 accusative +58354 nominative +nominative +nominative +58358 genitive +genitive +58367 accusative +accusative +accusative +58374 accusative +accusative +accusative +58379 genitive +58382 nominative +nominative +58386 accusative +accusative +58390 nominative +genitive +genitive +58394 accusative +58399 accusative +accusative +dative +58403 nominative +nominative +nominative +nominative +nominative +58409 accusative +accusative +nominative +58414 nominative +58416 accusative +58418 accusative +accusative +genitive +genitive +58425 accusative +dative +58430 nominative +nominative +nominative +58434 dative +genitive +58437 nominative +nominative +genitive +genitive +58442 nominative +accusative +nominative +nominative +58448 accusative +58451 nominative +58454 vocative +genitive +58457 nominative +nominative +genitive +58461 nominative +58463 accusative +genitive +accusative +58468 genitive +nominative +nominative +accusative +accusative +58476 nominative +58480 nominative +58482 nominative +58484 dative +58486 accusative +58488 dative +58491 nominative +nominative +nominative +nominative +58496 genitive +58498 accusative +accusative +58502 genitive +genitive +58506 accusative +58508 genitive +58510 accusative +58513 dative +nominative +nominative +58518 accusative +accusative +58521 accusative +accusative +58524 nominative +nominative +58528 accusative +58533 accusative +58535 nominative +nominative +58538 genitive +58542 nominative +nominative +58545 genitive +genitive +58550 dative +dative +58553 nominative +58555 dative +dative +58558 genitive +genitive +genitive +58563 accusative +nominative +vocative +58567 accusative +accusative +58571 nominative +nominative +58575 dative +dative +58578 nominative +58580 nominative +58583 dative +dative +58586 nominative +nominative +58589 dative +nominative +58592 nominative +nominative +58596 nominative +nominative +genitive +genitive +58603 dative +58606 nominative +nominative +genitive +genitive +nominative +58612 accusative +accusative +58615 nominative +nominative +58621 accusative +accusative +58624 nominative +nominative +accusative +accusative +genitive +58630 accusative +58632 nominative +nominative +accusative +accusative +genitive +58638 dative +dative +dative +58642 accusative +accusative +58645 accusative +58647 dative +nominative +58650 dative +58655 nominative +58658 nominative +nominative +nominative +nominative +58664 nominative +dative +58668 accusative +nominative +nominative +58672 nominative +nominative +genitive +58677 accusative +58679 vocative +58681 accusative +58683 genitive +genitive +genitive +58688 accusative +58691 accusative +accusative +accusative +vocative +58696 genitive +accusative +accusative +58701 nominative +58703 genitive +genitive +58711 nominative +nominative +nominative +nominative +58716 nominative +58718 accusative +58720 nominative +58722 nominative +dative +58726 nominative +58731 accusative +nominative +nominative +nominative +58738 accusative +58741 nominative +genitive +genitive +genitive +58746 nominative +nominative +genitive +genitive +genitive +58754 nominative +58757 genitive +genitive +accusative +58762 accusative +58764 accusative +58766 nominative +dative +dative +58773 dative +nominative +nominative +nominative +58779 genitive +genitive +58782 nominative +nominative +58786 accusative +accusative +58791 nominative +58795 accusative +accusative +genitive +genitive +nominative +58801 nominative +nominative +nominative +genitive +genitive +58808 dative +nominative +nominative +58812 accusative +accusative +nominative +nominative +58817 dative +58821 accusative +accusative +58826 nominative +accusative +58830 nominative +nominative +58833 dative +dative +58840 accusative +accusative +58845 accusative +accusative +58848 nominative +genitive +58851 accusative +58853 nominative +58855 nominative +58858 genitive +58860 genitive +accusative +accusative +genitive +58865 genitive +58869 accusative +58871 nominative +nominative +genitive +genitive +genitive +58877 accusative +58879 vocative +nominative +58882 dative +dative +genitive +58886 nominative +nominative +genitive +dative +58892 accusative +58899 nominative +58901 genitive +accusative +accusative +58906 genitive +accusative +accusative +58912 dative +dative +58916 dative +dative +58922 accusative +accusative +58925 nominative +58928 accusative +accusative +genitive +58934 genitive +58939 genitive +genitive +nominative +58944 accusative +58947 accusative +accusative +58953 nominative +58957 accusative +accusative +genitive +genitive +58963 accusative +accusative +genitive +genitive +58968 nominative +58972 nominative +nominative +58975 accusative +58979 accusative +58982 accusative +accusative +accusative +58986 nominative +nominative +accusative +58990 accusative +accusative +accusative +nominative +nominative +58996 accusative +accusative +59000 nominative +nominative +nominative +59004 accusative +59006 dative +dative +59012 nominative +59014 genitive +genitive +genitive +59020 nominative +59023 accusative +59029 accusative +accusative +59034 accusative +accusative +nominative +nominative +accusative +59041 nominative +accusative +accusative +genitive +59046 accusative +accusative +accusative +nominative +nominative +accusative +59053 nominative +59055 accusative +59057 dative +dative +dative +59061 nominative +59063 genitive +59067 nominative +nominative +accusative +nominative +nominative +dative +accusative +59075 accusative +59078 accusative +59083 nominative +nominative +genitive +nominative +nominative +59090 accusative +nominative +59095 dative +nominative +nominative +59102 genitive +genitive +genitive +genitive +nominative +nominative +nominative +59111 genitive +nominative +nominative +59117 genitive +genitive +genitive +59121 accusative +accusative +nominative +accusative +accusative +accusative +59128 dative +dative +59131 accusative +59133 accusative +59135 genitive +genitive +genitive +genitive +59140 genitive +59142 accusative +accusative +59146 accusative +nominative +genitive +nominative +nominative +59152 accusative +59154 dative +nominative +nominative +59158 accusative +accusative +59163 genitive +59167 accusative +accusative +59172 genitive +genitive +59176 accusative +accusative +59179 nominative +accusative +59182 accusative +59185 accusative +59187 accusative +accusative +59192 accusative +accusative +genitive +genitive +59198 dative +dative +dative +59202 nominative +59206 accusative +accusative +59209 dative +vocative +nominative +59213 genitive +accusative +accusative +59217 nominative +59220 dative +accusative +nominative +59224 nominative +59231 accusative +59233 dative +nominative +59238 genitive +accusative +accusative +59242 accusative +accusative +59245 nominative +dative +59250 accusative +59253 accusative +59255 genitive +59257 dative +nominative +nominative +vocative +59262 accusative +accusative +genitive +accusative +59268 accusative +accusative +59271 accusative +accusative +59274 dative +nominative +nominative +nominative +59280 accusative +59283 accusative +accusative +59288 nominative +nominative +59291 nominative +nominative +59296 nominative +59299 accusative +accusative +accusative +59303 accusative +59307 nominative +nominative +59313 accusative +accusative +genitive +59318 accusative +accusative +genitive +59325 dative +59327 accusative +59329 dative +nominative +59332 accusative +nominative +nominative +59336 nominative +nominative +59345 nominative +nominative +nominative +59349 nominative +nominative +59352 genitive +accusative +accusative +59356 nominative +59359 genitive +accusative +accusative +59363 accusative +59365 dative +59368 nominative +59370 dative +59372 nominative +59377 dative +59380 nominative +nominative +genitive +genitive +genitive +59386 nominative +nominative +genitive +genitive +accusative +59392 accusative +59394 nominative +59398 accusative +59401 genitive +genitive +59404 nominative +59406 accusative +59410 nominative +nominative +59413 nominative +nominative +genitive +accusative +accusative +59420 accusative +accusative +accusative +genitive +59427 dative +59429 genitive +59436 nominative +59441 dative +nominative +nominative +59445 accusative +59447 accusative +59450 nominative +accusative +nominative +59454 accusative +accusative +accusative +accusative +nominative +nominative +59461 dative +dative +59470 dative +59472 nominative +59474 genitive +59476 accusative +59479 accusative +nominative +nominative +nominative +59484 genitive +59487 nominative +nominative +59490 genitive +genitive +genitive +59494 dative +dative +genitive +genitive +accusative +59500 nominative +nominative +59504 dative +nominative +nominative +59509 dative +59511 nominative +59514 genitive +59516 nominative +nominative +59520 accusative +accusative +genitive +genitive +59525 dative +vocative +nominative +59531 nominative +nominative +59534 nominative +dative +nominative +59538 accusative +accusative +59542 dative +59544 nominative +accusative +accusative +59550 dative +genitive +genitive +59555 accusative +accusative +59560 accusative +nominative +nominative +59565 dative +nominative +accusative +59570 accusative +59573 nominative +genitive +genitive +accusative +59578 accusative +59580 dative +59582 nominative +59585 accusative +accusative +59588 nominative +59591 dative +nominative +59594 genitive +accusative +59598 accusative +accusative +59602 dative +dative +accusative +59607 nominative +accusative +accusative +nominative +59612 nominative +59615 nominative +59620 nominative +59623 nominative +nominative +genitive +genitive +59628 nominative +nominative +59632 dative +59634 nominative +nominative +59638 dative +59640 nominative +nominative +59643 accusative +59645 dative +59647 nominative +59649 accusative +vocative +59652 accusative +59654 genitive +59657 accusative +59661 dative +dative +59665 nominative +59668 nominative +59672 dative +59675 accusative +accusative +59678 dative +59681 accusative +59684 accusative +59687 nominative +59689 accusative +59691 dative +59693 nominative +59695 nominative +nominative +59699 accusative +59702 dative +59704 dative +nominative +nominative +vocative +59711 nominative +59714 dative +59721 accusative +59723 dative +nominative +vocative +59727 accusative +59730 dative +59733 accusative +accusative +genitive +59737 genitive +59740 nominative +accusative +accusative +genitive +59745 genitive +59750 dative +59753 nominative +59756 genitive +59758 accusative +59762 genitive +nominative +nominative +59767 accusative +accusative +59771 accusative +59774 dative +dative +genitive +genitive +genitive +nominative +nominative +59787 dative +59791 accusative +dative +59798 accusative +dative +59804 accusative +59806 accusative +59810 nominative +59812 nominative +59816 nominative +59819 accusative +accusative +59822 dative +nominative +vocative +59831 accusative +accusative +59834 dative +nominative +nominative +59838 nominative +nominative +59841 nominative +nominative +59844 nominative +nominative +nominative +59849 accusative +accusative +59854 genitive +59857 accusative +59860 accusative +accusative +genitive +59867 accusative +59871 dative +nominative +vocative +59875 dative +accusative +accusative +59880 dative +59882 dative +nominative +nominative +accusative +accusative +59888 genitive +59893 accusative +vocative +nominative +nominative +accusative +59899 accusative +accusative +59902 nominative +59905 dative +accusative +accusative +59911 nominative +59913 dative +dative +59916 nominative +nominative +59919 dative +59921 accusative +accusative +accusative +nominative +59926 dative +59928 genitive +59932 nominative +nominative +59935 dative +nominative +59938 accusative +accusative +genitive +59942 dative +59944 nominative +59946 dative +dative +59949 nominative +nominative +59952 dative +59957 accusative +accusative +accusative +59964 dative +nominative +nominative +59968 accusative +accusative +accusative +accusative +nominative +59974 nominative +59977 accusative +genitive +59981 nominative +59983 accusative +accusative +59987 accusative +59989 accusative +59992 dative +dative +genitive +accusative +59999 nominative +nominative +60002 dative +dative +60005 accusative +60007 accusative +60009 dative +dative +genitive +nominative +60016 accusative +accusative +accusative +accusative +accusative +60022 nominative +60024 accusative +accusative +60027 accusative +accusative +60030 dative +60034 genitive +60036 accusative +accusative +accusative +accusative +genitive +genitive +accusative +60044 nominative +nominative +60051 accusative +60054 nominative +60056 accusative +60059 dative +60063 dative +60067 accusative +accusative +60071 accusative +60074 accusative +nominative +nominative +accusative +60081 nominative +60083 accusative +60085 nominative +60088 nominative +60091 dative +dative +dative +60095 nominative +60097 nominative +60099 dative +dative +genitive +60103 nominative +60105 dative +nominative +60108 dative +nominative +nominative +accusative +accusative +genitive +60115 nominative +accusative +nominative +60119 nominative +nominative +accusative +60123 nominative +nominative +accusative +60128 genitive +genitive +genitive +nominative +60133 accusative +60136 dative +accusative +60139 dative +nominative +60142 nominative +nominative +vocative +60146 nominative +60150 dative +60152 accusative +60155 dative +dative +60158 nominative +60161 dative +60163 nominative +60165 accusative +accusative +accusative +genitive +60171 nominative +nominative +genitive +60175 accusative +60178 accusative +60181 accusative +60183 dative +60185 nominative +60187 nominative +accusative +accusative +accusative +genitive +60195 nominative +nominative +accusative +60201 nominative +60203 genitive +genitive +accusative +genitive +accusative +60209 dative +60211 dative +nominative +60214 nominative +nominative +nominative +nominative +nominative +nominative +accusative +60222 nominative +nominative +60225 dative +dative +genitive +nominative +accusative +60231 accusative +60234 accusative +accusative +accusative +60238 dative +nominative +accusative +60242 dative +accusative +accusative +accusative +60247 dative +60250 nominative +nominative +60253 nominative +60255 dative +60258 genitive +nominative +nominative +60265 nominative +60267 dative +60272 accusative +60275 accusative +60281 accusative +accusative +60284 nominative +nominative +nominative +genitive +60292 dative +60300 accusative +60303 genitive +60306 nominative +genitive +genitive +nominative +60312 dative +60315 accusative +60319 nominative +nominative +60323 accusative +accusative +60328 dative +nominative +nominative +60336 nominative +60338 nominative +nominative +nominative +nominative +60343 nominative +nominative +genitive +nominative +nominative +60349 accusative +accusative +60352 dative +60354 accusative +accusative +60357 accusative +60359 accusative +accusative +accusative +accusative +60364 accusative +60366 accusative +accusative +60370 nominative +nominative +60374 accusative +accusative +accusative +60378 dative +60381 dative +nominative +60384 dative +60386 nominative +nominative +60390 accusative +60393 genitive +60398 dative +dative +60402 nominative +60406 dative +60408 nominative +60410 nominative +nominative +nominative +nominative +nominative +nominative +nominative +60418 dative +nominative +60421 dative +nominative +60424 accusative +accusative +60428 genitive +60432 accusative +60435 nominative +60438 dative +60442 nominative +nominative +60448 accusative +60451 accusative +accusative +60459 dative +60461 nominative +nominative +genitive +60465 dative +60468 accusative +60473 dative +60475 dative +60477 nominative +nominative +genitive +60481 accusative +accusative +60486 nominative +nominative +60490 accusative +nominative +nominative +nominative +accusative +60498 dative +dative +dative +dative +60503 accusative +accusative +genitive +60509 dative +dative +genitive +60513 nominative +genitive +genitive +genitive +accusative +accusative +60523 genitive +dative +dative +accusative +60528 dative +60530 nominative +nominative +nominative +nominative +60535 dative +60538 nominative +nominative +genitive +60542 nominative +60544 nominative +nominative +nominative +nominative +60550 accusative +60553 accusative +accusative +genitive +accusative +nominative +60560 nominative +accusative +accusative +genitive +60566 genitive +genitive +genitive +nominative +nominative +genitive +60575 accusative +nominative +60578 dative +60581 accusative +accusative +60584 nominative +nominative +60588 accusative +60590 genitive +nominative +nominative +60594 accusative +60596 accusative +60598 accusative +accusative +60602 genitive +genitive +genitive +60606 dative +60608 nominative +accusative +60612 nominative +60614 accusative +60617 accusative +60619 nominative +60622 accusative +60625 nominative +nominative +genitive +60630 accusative +60632 accusative +60634 accusative +accusative +60637 dative +dative +genitive +60641 dative +accusative +60644 dative +60647 accusative +60649 nominative +nominative +accusative +60655 accusative +accusative +genitive +60661 genitive +genitive +60665 nominative +nominative +accusative +accusative +60673 genitive +genitive +60678 nominative +60680 accusative +60682 genitive +genitive +60685 accusative +60687 accusative +nominative +nominative +60691 genitive +genitive +genitive +nominative +60696 dative +60699 nominative +nominative +genitive +genitive +genitive +60705 accusative +60708 accusative +60711 accusative +accusative +genitive +60716 accusative +accusative +60720 accusative +accusative +60724 accusative +60726 accusative +accusative +genitive +60732 accusative +accusative +accusative +60740 dative +accusative +60746 accusative +60750 genitive +genitive +genitive +nominative +accusative +nominative +60757 accusative +accusative +genitive +60762 accusative +accusative +60767 dative +accusative +nominative +nominative +60772 accusative +60782 accusative +60784 accusative +accusative +genitive +60790 nominative +nominative +nominative +60794 dative +dative +genitive +nominative +60800 accusative +60804 nominative +nominative +accusative +nominative +60809 dative +60811 genitive +genitive +nominative +nominative +genitive +genitive +nominative +60819 genitive +genitive +60822 nominative +60825 genitive +60828 nominative +60832 genitive +60834 genitive +60836 accusative +60838 dative +60842 accusative +60844 accusative +60847 nominative +60849 nominative +nominative +nominative +accusative +60854 accusative +60856 dative +dative +60859 accusative +60864 accusative +accusative +60867 accusative +60869 accusative +60871 dative +60875 nominative +nominative +genitive +60879 genitive +60881 nominative +60883 dative +60885 accusative +dative +60888 genitive +60893 genitive +60899 accusative +accusative +accusative +60903 nominative +60905 genitive +60907 accusative +60912 accusative +60914 dative +nominative +nominative +60918 genitive +accusative +accusative +60922 nominative +accusative +accusative +60926 dative +60928 dative +60930 nominative +60936 nominative +nominative +60942 accusative +60947 accusative +60949 accusative +60951 nominative +nominative +60954 accusative +accusative +60957 genitive +60960 genitive +60963 genitive +60966 genitive +60971 accusative +60974 genitive +60977 accusative +accusative +60983 accusative +60986 genitive +60988 nominative +nominative +genitive +genitive +genitive +60996 accusative +dative +61007 nominative +nominative +nominative +genitive +genitive +61013 accusative +61015 accusative +accusative +accusative +61022 genitive +61024 accusative +61028 accusative +accusative +61031 dative +nominative +accusative +61037 genitive +genitive +61042 dative +nominative +accusative +61046 nominative +nominative +nominative +61051 accusative +61055 genitive +genitive +61060 dative +accusative +61065 accusative +61068 accusative +61071 accusative +61075 genitive +genitive +genitive +61079 accusative +nominative +61082 nominative +accusative +61085 dative +accusative +61090 accusative +61093 accusative +61096 accusative +61101 accusative +accusative +61105 nominative +61107 nominative +accusative +61110 accusative +accusative +61114 accusative +61117 nominative +61120 accusative +61124 dative +61126 genitive +61129 genitive +61132 accusative +61136 accusative +61139 accusative +61142 accusative +61146 dative +61151 nominative +61153 nominative +nominative +61156 nominative +61159 nominative +nominative +genitive +61163 accusative +61166 nominative +nominative +61169 accusative +61173 nominative +nominative +genitive +61179 accusative +accusative +61183 genitive +genitive +61186 accusative +accusative +61190 nominative +61192 accusative +accusative +61197 nominative +61199 accusative +61204 accusative +61207 genitive +nominative +nominative +61211 accusative +accusative +genitive +nominative +61217 genitive +61220 dative +dative +dative +accusative +61226 accusative +61230 dative +61232 accusative +61234 accusative +accusative +61237 dative +61239 dative +dative +genitive +61246 accusative +61248 dative +dative +genitive +61255 nominative +nominative +genitive +61259 nominative +accusative +61262 dative +61264 dative +61266 nominative +61270 dative +61272 dative +61274 dative +61276 genitive +genitive +61279 dative +61281 dative +dative +dative +61285 dative +dative +genitive +61292 dative +61294 nominative +61296 accusative +accusative +61299 genitive +61301 nominative +nominative +nominative +61305 accusative +61307 nominative +accusative +61313 nominative +61315 genitive +genitive +61320 genitive +genitive +61325 accusative +accusative +61329 accusative +accusative +61334 accusative +accusative +61337 nominative +nominative +genitive +61343 dative +61346 accusative +accusative +61353 accusative +61356 accusative +61359 nominative +accusative +61363 dative +61367 genitive +61370 dative +nominative +61376 nominative +61381 nominative +61383 accusative +accusative +accusative +accusative +61391 nominative +61393 nominative +nominative +61396 genitive +61398 accusative +61400 dative +61403 dative +accusative +61407 dative +dative +accusative +61413 nominative +61415 accusative +accusative +accusative +61419 nominative +61421 nominative +accusative +accusative +genitive +61426 accusative +accusative +61429 vocative +61431 nominative +nominative +61434 genitive +accusative +accusative +61438 nominative +nominative +61441 accusative +61444 dative +accusative +genitive +genitive +61449 accusative +accusative +61452 dative +61454 dative +accusative +accusative +61458 nominative +61460 nominative +nominative +nominative +61465 accusative +accusative +accusative +accusative +accusative +61471 accusative +61473 accusative +accusative +nominative +accusative +61479 genitive +genitive +nominative +accusative +accusative +accusative +61486 dative +61490 vocative +61493 accusative +nominative +61496 dative +dative +dative +dative +61502 genitive +accusative +accusative +61507 dative +61509 genitive +accusative +accusative +dative +dative +accusative +61516 dative +61518 genitive +genitive +nominative +61522 dative +accusative +61526 accusative +accusative +genitive +61533 nominative +accusative +61536 dative +61538 genitive +61541 accusative +accusative +accusative +61545 dative +61547 dative +61549 nominative +61556 genitive +61561 nominative +accusative +61564 nominative +61566 genitive +61570 genitive +genitive +61575 genitive +61577 dative +61579 nominative +61582 nominative +nominative +nominative +nominative +61588 nominative +nominative +nominative +61594 dative +61599 dative +dative +61602 nominative +61604 dative +dative +61607 nominative +61609 accusative +61611 vocative +vocative +61614 accusative +61616 dative +dative +genitive +dative +61621 dative +61624 nominative +61626 nominative +61630 genitive +nominative +61633 accusative +61635 dative +dative +genitive +dative +61640 dative +61644 nominative +61646 genitive +61650 nominative +nominative +genitive +genitive +61655 nominative +nominative +61661 accusative +61664 accusative +61667 dative +dative +61671 accusative +accusative +accusative +accusative +accusative +61677 dative +nominative +61680 dative +accusative +accusative +genitive +61685 nominative +nominative +61688 accusative +61693 genitive +genitive +61696 nominative +61700 genitive +genitive +61706 accusative +61708 genitive +genitive +61713 accusative +61715 genitive +genitive +61718 genitive +genitive +61723 nominative +61727 genitive +genitive +61730 accusative +61732 dative +dative +nominative +nominative +nominative +nominative +nominative +61741 accusative +61744 accusative +accusative +nominative +61748 accusative +61750 accusative +accusative +61754 genitive +nominative +61757 accusative +61760 nominative +61762 nominative +61764 dative +61768 genitive +61770 accusative +61774 genitive +genitive +61777 genitive +genitive +genitive +61781 accusative +61783 nominative +nominative +61787 nominative +nominative +61790 dative +nominative +61793 dative +61796 nominative +61798 dative +61801 nominative +nominative +61805 nominative +accusative +61808 nominative +accusative +accusative +accusative +61813 dative +61815 dative +61818 nominative +61820 nominative +nominative +nominative +61824 dative +61826 nominative +61828 dative +61831 nominative +61833 accusative +61836 nominative +nominative +61839 nominative +accusative +61844 accusative +61846 accusative +61848 nominative +accusative +61851 dative +61856 nominative +nominative +61860 genitive +61863 accusative +accusative +accusative +accusative +accusative +61869 dative +61872 accusative +61874 genitive +genitive +nominative +vocative +61879 nominative +nominative +accusative +61885 nominative +accusative +61889 nominative +61892 nominative +accusative +61897 dative +accusative +accusative +genitive +61904 nominative +nominative +accusative +61908 accusative +61910 dative +61912 nominative +61914 dative +accusative +nominative +nominative +61920 dative +dative +genitive +61924 genitive +genitive +genitive +genitive +61930 nominative +61932 accusative +61934 nominative +61936 nominative +nominative +genitive +61942 nominative +nominative +nominative +accusative +accusative +accusative +61951 nominative +61954 genitive +genitive +genitive +61958 nominative +nominative +nominative +accusative +accusative +61965 genitive +genitive +61969 genitive +genitive +accusative +61975 genitive +61977 genitive +61979 genitive +61981 nominative +nominative +accusative +accusative +accusative +61987 accusative +61991 dative +accusative +61995 dative +accusative +accusative +accusative +62000 dative +nominative +62006 nominative +nominative +nominative +accusative +62011 genitive +62015 dative +nominative +62020 accusative +62028 accusative +accusative +62032 nominative +62034 accusative +accusative +accusative +62038 nominative +62040 dative +62042 nominative +62046 accusative +62049 accusative +62053 nominative +nominative +accusative +62058 accusative +62060 dative +62064 genitive +accusative +62067 nominative +nominative +nominative +accusative +62072 accusative +62075 accusative +genitive +genitive +accusative +62081 genitive +accusative +accusative +accusative +accusative +62088 nominative +dative +dative +nominative +62094 nominative +nominative +dative +dative +62099 accusative +accusative +62102 accusative +accusative +accusative +accusative +accusative +62108 dative +nominative +nominative +62114 accusative +62116 nominative +nominative +62119 nominative +nominative +62122 nominative +nominative +genitive +genitive +62127 accusative +accusative +62131 accusative +62135 accusative +accusative +62139 nominative +genitive +genitive +nominative +62144 nominative +genitive +genitive +genitive +62150 nominative +nominative +nominative +dative +dative +62157 accusative +accusative +62161 genitive +genitive +62165 dative +dative +nominative +nominative +62170 nominative +nominative +62173 nominative +nominative +nominative +62177 nominative +dative +dative +62182 dative +dative +62185 accusative +accusative +genitive +genitive +62190 nominative +nominative +62194 dative +dative +62199 nominative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +62209 dative +dative +62213 accusative +accusative +62217 dative +dative +nominative +nominative +nominative +nominative +62225 nominative +62227 genitive +genitive +genitive +genitive +genitive +62234 nominative +62239 nominative +nominative +62242 nominative +nominative +accusative +nominative +62247 nominative +62253 nominative +nominative +62256 genitive +62258 nominative +62260 nominative +62262 nominative +nominative +62265 accusative +accusative +62268 genitive +genitive +genitive +62273 genitive +genitive +genitive +62277 dative +nominative +nominative +dative +62282 dative +dative +nominative +62288 dative +62291 dative +dative +62294 nominative +nominative +nominative +62300 dative +62302 accusative +accusative +accusative +62307 accusative +accusative +accusative +62311 dative +62313 nominative +62315 accusative +62317 nominative +62319 accusative +genitive +genitive +nominative +nominative +genitive +genitive +62327 accusative +dative +dative +nominative +62333 dative +dative +62336 dative +nominative +62343 genitive +genitive +62348 accusative +accusative +62353 accusative +nominative +nominative +accusative +62358 accusative +accusative +accusative +62362 nominative +nominative +62365 nominative +62367 nominative +62370 dative +62373 nominative +62375 genitive +genitive +genitive +62380 nominative +62386 nominative +62388 genitive +genitive +genitive +genitive +nominative +nominative +genitive +62396 nominative +accusative +accusative +62400 nominative +62402 accusative +62404 dative +dative +62407 genitive +62411 nominative +62414 nominative +62418 accusative +accusative +62421 genitive +genitive +62424 accusative +accusative +62430 nominative +62434 accusative +accusative +62441 accusative +accusative +62445 nominative +nominative +62449 accusative +62452 accusative +accusative +genitive +genitive +genitive +62461 dative +62465 nominative +nominative +accusative +62470 dative +62472 accusative +62475 dative +nominative +nominative +62479 accusative +nominative +62483 accusative +accusative +genitive +62487 accusative +62489 dative +nominative +nominative +dative +62496 accusative +62498 nominative +nominative +genitive +genitive +62503 accusative +62505 nominative +dative +dative +62514 accusative +accusative +nominative +nominative +62520 accusative +accusative +62524 dative +nominative +62527 nominative +nominative +genitive +genitive +62532 nominative +62534 genitive +nominative +accusative +62539 nominative +62541 dative +62543 genitive +62545 nominative +nominative +62548 nominative +nominative +62551 nominative +nominative +nominative +nominative +62556 nominative +nominative +62559 accusative +dative +accusative +62564 nominative +nominative +nominative +nominative +nominative +62572 genitive +genitive +genitive +62577 genitive +genitive +genitive +62581 nominative +nominative +nominative +nominative +62586 nominative +nominative +nominative +nominative +62594 dative +dative +62598 nominative +nominative +nominative +nominative +62607 dative +nominative +nominative +62611 nominative +62613 nominative +62615 nominative +nominative +nominative +62620 nominative +62622 nominative +62624 accusative +62628 accusative +62631 accusative +accusative +62635 dative +dative +nominative +nominative +nominative +62641 genitive +genitive +62644 genitive +genitive +genitive +62648 dative +nominative +nominative +nominative +62653 nominative +62655 accusative +nominative +62660 accusative +accusative +62664 dative +nominative +accusative +62669 dative +accusative +62673 nominative +dative +62676 accusative +62678 dative +62680 dative +dative +62685 dative +accusative +accusative +genitive +genitive +62693 nominative +62695 accusative +62697 accusative +accusative +62701 nominative +nominative +nominative +62707 nominative +nominative +accusative +accusative +62714 nominative +nominative +nominative +accusative +62719 genitive +62721 genitive +dative +dative +62725 accusative +accusative +62728 accusative +62732 accusative +62736 nominative +nominative +genitive +genitive +62742 dative +accusative +62748 nominative +nominative +62752 dative +62755 dative +accusative +62761 accusative +accusative +62765 dative +62768 nominative +nominative +62771 nominative +accusative +accusative +accusative +62776 accusative +accusative +accusative +62781 dative +62783 nominative +nominative +62788 accusative +nominative +nominative +62792 nominative +nominative +62795 nominative +62799 dative +nominative +nominative +62803 accusative +nominative +62808 nominative +62812 dative +accusative +62815 dative +nominative +nominative +nominative +accusative +62823 accusative +accusative +62828 accusative +genitive +accusative +62835 nominative +nominative +accusative +accusative +accusative +62845 accusative +accusative +62850 dative +dative +62854 nominative +62856 nominative +nominative +accusative +62861 dative +62864 dative +nominative +nominative +62868 dative +62873 accusative +62876 accusative +62878 accusative +62881 accusative +62883 nominative +62886 accusative +accusative +62889 genitive +62893 nominative +dative +62897 accusative +nominative +nominative +accusative +dative +accusative +accusative +62906 genitive +nominative +nominative +62911 accusative +62913 nominative +nominative +62916 nominative +62918 accusative +62922 nominative +genitive +genitive +nominative +nominative +accusative +accusative +nominative +62931 dative +dative +62934 nominative +nominative +nominative +genitive +genitive +genitive +62942 accusative +accusative +62947 genitive +62949 accusative +accusative +accusative +62954 accusative +62957 nominative +genitive +genitive +nominative +62963 nominative +62966 dative +dative +62969 nominative +nominative +genitive +62974 nominative +62978 accusative +62980 dative +nominative +nominative +accusative +accusative +genitive +62988 nominative +nominative +62992 accusative +62995 accusative +62999 accusative +dative +63005 accusative +accusative +63008 nominative +dative +accusative +accusative +63014 accusative +accusative +genitive +accusative +nominative +63021 nominative +63023 accusative +63027 genitive +accusative +63034 accusative +accusative +accusative +63040 accusative +nominative +nominative +63046 genitive +genitive +63050 nominative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +63059 accusative +accusative +accusative +63063 nominative +genitive +genitive +63068 genitive +genitive +63071 nominative +nominative +63075 nominative +nominative +63079 nominative +63085 dative +dative +nominative +nominative +genitive +genitive +63093 nominative +nominative +genitive +genitive +63099 nominative +63101 nominative +genitive +genitive +63106 nominative +nominative +accusative +63113 nominative +nominative +63116 accusative +accusative +63119 accusative +accusative +genitive +63124 accusative +accusative +dative +dative +nominative +63130 accusative +accusative +63134 nominative +nominative +nominative +63138 genitive +63140 nominative +63142 genitive +63146 accusative +63149 accusative +63153 genitive +genitive +63157 nominative +nominative +63161 accusative +accusative +genitive +dative +63167 accusative +accusative +genitive +63171 accusative +63174 nominative +nominative +accusative +63181 dative +dative +genitive +genitive +nominative +nominative +genitive +63189 nominative +nominative +genitive +genitive +genitive +nominative +nominative +genitive +genitive +63199 nominative +nominative +nominative +63203 nominative +nominative +accusative +accusative +63208 accusative +accusative +accusative +accusative +63214 dative +dative +vocative +63218 nominative +nominative +genitive +63223 dative +dative +63226 nominative +nominative +genitive +63231 genitive +genitive +genitive +63235 nominative +nominative +accusative +63239 accusative +accusative +63242 accusative +nominative +nominative +nominative +63248 nominative +63252 nominative +nominative +63256 nominative +genitive +nominative +63261 accusative +accusative +genitive +genitive +dative +nominative +63268 genitive +dative +dative +63274 accusative +accusative +nominative +nominative +63281 nominative +accusative +accusative +63285 accusative +accusative +63288 nominative +nominative +63291 nominative +63297 genitive +genitive +nominative +nominative +63302 dative +dative +63306 nominative +nominative +nominative +genitive +genitive +genitive +63313 accusative +accusative +63317 genitive +nominative +nominative +63324 nominative +nominative +63329 accusative +accusative +genitive +genitive +63334 genitive +genitive +genitive +genitive +dative +63341 accusative +accusative +nominative +63347 accusative +accusative +63351 genitive +accusative +accusative +63355 nominative +genitive +genitive +dative +genitive +accusative +accusative +63365 nominative +nominative +63368 nominative +63370 nominative +nominative +63374 nominative +63376 genitive +nominative +nominative +63380 nominative +63383 accusative +63387 nominative +63391 nominative +63393 nominative +nominative +63396 nominative +genitive +63402 nominative +nominative +63407 accusative +63411 accusative +63413 accusative +accusative +nominative +63417 genitive +nominative +nominative +genitive +genitive +63423 nominative +63425 accusative +accusative +genitive +genitive +63431 accusative +accusative +genitive +genitive +63437 nominative +nominative +63443 accusative +accusative +genitive +63449 nominative +nominative +nominative +63453 accusative +genitive +accusative +accusative +nominative +accusative +genitive +63461 genitive +63463 accusative +63467 accusative +accusative +genitive +genitive +63473 accusative +dative +63476 genitive +genitive +63479 nominative +63481 dative +dative +63487 dative +dative +63491 nominative +63494 dative +dative +nominative +nominative +63499 dative +63501 nominative +63503 nominative +63507 accusative +accusative +genitive +genitive +63514 nominative +nominative +63517 accusative +accusative +63520 dative +dative +genitive +genitive +nominative +nominative +nominative +63530 accusative +accusative +genitive +63534 genitive +63537 accusative +accusative +accusative +63541 genitive +genitive +63548 accusative +accusative +63552 accusative +accusative +accusative +accusative +63557 nominative +nominative +63561 dative +63563 accusative +accusative +63566 genitive +genitive +63573 accusative +63576 nominative +nominative +63579 nominative +nominative +nominative +63585 accusative +accusative +63589 nominative +63593 nominative +nominative +nominative +63597 accusative +genitive +genitive +63602 nominative +63604 accusative +accusative +63607 nominative +63609 accusative +accusative +accusative +63618 nominative +nominative +nominative +dative +63625 accusative +accusative +63629 accusative +accusative +accusative +63633 accusative +accusative +nominative +63638 genitive +genitive +genitive +63643 genitive +genitive +accusative +63648 accusative +63650 accusative +accusative +63656 nominative +nominative +nominative +nominative +nominative +nominative +63663 accusative +accusative +63672 accusative +accusative +63676 accusative +63678 genitive +63684 accusative +nominative +nominative +63688 nominative +63691 dative +dative +63694 nominative +63700 accusative +accusative +63705 accusative +63707 dative +accusative +63711 nominative +nominative +genitive +genitive +accusative +63717 dative +dative +63720 accusative +63722 dative +dative +63726 dative +nominative +vocative +accusative +63732 dative +63735 accusative +accusative +genitive +63743 accusative +accusative +nominative +63748 accusative +63752 accusative +accusative +accusative +63759 nominative +63762 dative +nominative +vocative +accusative +63767 accusative +63769 nominative +nominative +63772 nominative +nominative +63776 dative +vocative +63779 nominative +63781 accusative +63783 dative +63786 accusative +nominative +accusative +63791 dative +nominative +vocative +nominative +nominative +63797 dative +63799 vocative +nominative +63802 vocative +63804 dative +nominative +63807 genitive +63813 accusative +accusative +63818 accusative +accusative +genitive +63823 dative +63826 accusative +accusative +genitive +63830 accusative +genitive +63833 accusative +genitive +63836 accusative +genitive +63839 nominative +nominative +nominative +nominative +dative +dative +63847 accusative +accusative +63850 accusative +63852 dative +63854 genitive +genitive +dative +dative +dative +dative +dative +genitive +63863 genitive +genitive +genitive +63868 nominative +nominative +63871 accusative +accusative +genitive +genitive +63876 nominative +nominative +63881 accusative +accusative +63885 dative +nominative +dative +63889 accusative +nominative +63893 accusative +accusative +63896 accusative +accusative +dative +63901 nominative +nominative +nominative +accusative +accusative +63908 dative +nominative +nominative +63912 nominative +dative +63916 accusative +nominative +nominative +nominative +63921 accusative +63923 accusative +nominative +63928 dative +63930 accusative +accusative +63934 genitive +accusative +accusative +63938 dative +63940 genitive +63944 nominative +nominative +63947 genitive +63949 nominative +nominative +nominative +63955 genitive +63958 nominative +63961 dative +nominative +nominative +nominative +63966 accusative +accusative +63969 nominative +63971 dative +63976 dative +dative +genitive +accusative +accusative +genitive +genitive +63985 accusative +accusative +genitive +63989 accusative +accusative +genitive +genitive +63995 genitive +accusative +accusative +63999 accusative +accusative +genitive +64007 accusative +64012 nominative +nominative +genitive +64016 nominative +64018 genitive +64020 nominative +nominative +genitive +genitive +genitive +64028 accusative +accusative +64032 nominative +dative +64036 dative +dative +64039 accusative +accusative +genitive +64045 accusative +accusative +genitive +64050 accusative +accusative +genitive +64056 accusative +accusative +genitive +64062 nominative +64064 nominative +64066 nominative +64069 dative +nominative +nominative +genitive +64074 nominative +nominative +genitive +64078 dative +nominative +nominative +64083 accusative +64085 nominative +nominative +64088 nominative +64090 nominative +64094 accusative +accusative +accusative +64098 nominative +nominative +64101 genitive +genitive +nominative +64106 nominative +64108 dative +dative +dative +64112 nominative +64117 nominative +64119 nominative +nominative +nominative +nominative +genitive +genitive +64127 nominative +accusative +64131 dative +dative +genitive +64135 accusative +64137 accusative +64139 nominative +dative +dative +64143 genitive +genitive +genitive +genitive +64152 nominative +nominative +64155 nominative +nominative +nominative +nominative +64160 nominative +nominative +64163 genitive +genitive +genitive +64167 nominative +genitive +genitive +64171 nominative +64173 genitive +genitive +genitive +64178 dative +nominative +nominative +64184 dative +64187 nominative +64189 dative +64194 accusative +accusative +64198 dative +dative +dative +64202 accusative +64204 genitive +64206 genitive +64208 nominative +64210 accusative +accusative +64215 nominative +nominative +64218 nominative +64222 dative +nominative +vocative +64226 accusative +accusative +64230 dative +64233 nominative +64235 dative +64238 accusative +accusative +accusative +genitive +genitive +accusative +accusative +64251 accusative +64255 genitive +genitive +genitive +genitive +64261 nominative +nominative +nominative +accusative +64266 nominative +nominative +dative +dative +nominative +nominative +64274 nominative +nominative +nominative +64278 nominative +nominative +64281 accusative +accusative +64286 nominative +64289 accusative +64291 accusative +accusative +64294 nominative +nominative +nominative +dative +dative +64303 accusative +64305 genitive +genitive +64310 genitive +genitive +nominative +accusative +accusative +genitive +genitive +64321 accusative +accusative +64324 accusative +accusative +64327 accusative +accusative +64330 accusative +64332 dative +nominative +nominative +64337 genitive +genitive +genitive +64343 nominative +nominative +64347 accusative +accusative +64350 accusative +accusative +accusative +genitive +genitive +64357 genitive +64359 genitive +genitive +64363 nominative +nominative +64366 dative +nominative +nominative +64371 nominative +genitive +genitive +64376 accusative +nominative +nominative +64380 nominative +64382 nominative +nominative +64386 nominative +64389 accusative +accusative +64393 dative +64395 accusative +accusative +64398 nominative +64400 accusative +64402 nominative +dative +dative +nominative +64407 genitive +64412 dative +dative +dative +nominative +nominative +vocative +genitive +64420 accusative +accusative +genitive +64424 dative +64426 vocative +nominative +64431 accusative +64433 dative +64435 accusative +accusative +genitive +64439 dative +64442 vocative +genitive +64445 accusative +64447 dative +64449 vocative +nominative +64454 accusative +64456 dative +64458 accusative +accusative +genitive +64462 dative +accusative +accusative +vocative +genitive +64468 accusative +64470 nominative +nominative +64474 dative +accusative +accusative +64478 accusative +64481 dative +vocative +accusative +nominative +64486 nominative +64490 accusative +64492 dative +nominative +64495 accusative +accusative +genitive +64501 dative +64504 nominative +64506 accusative +64515 accusative +accusative +genitive +64519 nominative +64521 accusative +64528 accusative +64530 nominative +dative +dative +64534 accusative +accusative +64537 accusative +nominative +64540 dative +64542 dative +nominative +nominative +nominative +64547 accusative +accusative +accusative +64551 nominative +nominative +accusative +nominative +64558 dative +dative +64561 accusative +accusative +genitive +64566 vocative +nominative +64569 nominative +nominative +accusative +64573 accusative +nominative +nominative +nominative +64578 dative +dative +vocative +64582 nominative +nominative +64585 dative +nominative +nominative +64589 accusative +64594 nominative +64596 accusative +nominative +dative +64602 nominative +nominative +nominative +64606 accusative +accusative +64609 nominative +nominative +nominative +64617 dative +nominative +nominative +64625 accusative +64630 nominative +64632 accusative +nominative +64635 nominative +nominative +nominative +nominative +64640 genitive +64642 nominative +nominative +accusative +64648 nominative +genitive +nominative +nominative +64656 nominative +nominative +accusative +64660 nominative +nominative +64663 nominative +64666 accusative +64669 accusative +accusative +accusative +64673 accusative +accusative +accusative +64677 vocative +64679 accusative +accusative +accusative +64684 genitive +genitive +64691 nominative +nominative +64694 genitive +genitive +nominative +dative +dative +accusative +64702 genitive +genitive +64705 dative +64708 accusative +accusative +64711 accusative +64713 accusative +64715 dative +dative +64718 genitive +64720 nominative +dative +64723 nominative +accusative +64726 genitive +genitive +genitive +genitive +64731 nominative +64733 dative +64735 genitive +64740 accusative +accusative +genitive +genitive +accusative +64746 genitive +64749 nominative +64751 dative +64753 nominative +64755 dative +dative +64760 accusative +accusative +accusative +64765 nominative +nominative +64768 accusative +nominative +vocative +64773 dative +dative +dative +64777 accusative +accusative +dative +dative +64783 accusative +64785 genitive +64788 accusative +64790 accusative +accusative +nominative +nominative +64796 dative +dative +dative +64801 accusative +genitive +genitive +genitive +genitive +64807 accusative +64810 genitive +nominative +64814 dative +64817 dative +dative +dative +64821 dative +64824 genitive +genitive +genitive +64828 accusative +nominative +genitive +genitive +64834 nominative +64836 accusative +64838 genitive +genitive +genitive +64843 nominative +64846 accusative +accusative +genitive +genitive +64852 nominative +64855 dative +64857 dative +dative +nominative +64862 vocative +vocative +accusative +64866 nominative +64868 accusative +accusative +nominative +nominative +nominative +nominative +nominative +64876 genitive +64878 accusative +accusative +64882 accusative +accusative +64885 accusative +accusative +64888 accusative +accusative +64893 accusative +64895 genitive +genitive +genitive +genitive +nominative +64902 genitive +genitive +accusative +accusative +64910 accusative +accusative +64915 nominative +64917 nominative +nominative +64920 nominative +64922 nominative +64924 nominative +nominative +64927 nominative +nominative +64930 nominative +nominative +genitive +64934 nominative +nominative +nominative +64938 nominative +genitive +nominative +nominative +64943 nominative +64945 dative +dative +64948 dative +64950 dative +dative +dative +genitive +genitive +64957 dative +dative +genitive +64962 dative +dative +dative +nominative +64967 dative +genitive +genitive +nominative +64974 nominative +genitive +64977 accusative +accusative +64982 vocative +vocative +64986 accusative +accusative +accusative +64990 nominative +nominative +nominative +nominative +64995 genitive +genitive +64998 genitive +genitive +genitive +genitive +dative +dative +accusative +65006 nominative +65009 dative +65012 accusative +accusative +genitive +genitive +genitive +65019 nominative +65021 accusative +65023 genitive +genitive +genitive +65027 nominative +nominative +65030 nominative +65033 nominative +nominative +nominative +genitive +65038 nominative +65040 dative +dative +dative +accusative +65046 accusative +accusative +accusative +dative +dative +dative +genitive +accusative +nominative +65056 accusative +genitive +65061 dative +genitive +65064 nominative +nominative +genitive +nominative +65071 nominative +nominative +65074 dative +65076 accusative +accusative +genitive +65080 nominative +65083 genitive +genitive +genitive +dative +65088 dative +dative +dative +65095 accusative +nominative +nominative +nominative +nominative +65101 genitive +genitive +genitive +65105 genitive +genitive +genitive +65110 genitive +accusative +genitive +genitive +genitive +65116 dative +65118 accusative +genitive +65123 accusative +accusative +accusative +accusative +nominative +65129 nominative +65131 accusative +65133 nominative +65135 vocative +vocative +genitive +nominative +65140 accusative +65143 genitive +genitive +65146 accusative +65148 accusative +accusative +genitive +genitive +genitive +65154 genitive +65156 genitive +65158 nominative +65161 accusative +accusative +accusative +accusative +65167 accusative +dative +65171 nominative +nominative +65174 accusative +65178 genitive +65180 genitive +65183 dative +65185 accusative +accusative +genitive +genitive +65190 nominative +65193 accusative +accusative +65199 genitive +genitive +nominative +65203 genitive +genitive +genitive +65208 accusative +accusative +accusative +65213 nominative +65216 dative +nominative +nominative +65220 genitive +65224 accusative +accusative +genitive +65229 nominative +genitive +genitive +65235 dative +dative +65238 nominative +nominative +65242 dative +65245 nominative +65247 accusative +nominative +nominative +nominative +65252 genitive +genitive +genitive +65256 accusative +accusative +65259 genitive +genitive +genitive +genitive +65264 nominative +nominative +65270 nominative +nominative +dative +dative +dative +genitive +genitive +65281 nominative +65284 nominative +nominative +nominative +nominative +65289 nominative +65292 nominative +65294 nominative +dative +dative +dative +genitive +65300 dative +65302 nominative +65304 nominative +65306 nominative +65308 nominative +nominative +accusative +accusative +65313 accusative +65315 accusative +accusative +65318 accusative +accusative +65321 accusative +65323 accusative +accusative +65326 accusative +accusative +genitive +genitive +genitive +65332 accusative +65334 nominative +nominative +nominative +65338 nominative +65340 nominative +nominative +65343 nominative +65345 genitive +genitive +dative +dative +dative +accusative +accusative +genitive +genitive +65356 nominative +65359 nominative +65361 accusative +nominative +65364 nominative +nominative +65368 nominative +nominative +65372 genitive +nominative +65376 nominative +65378 dative +65380 nominative +nominative +65383 accusative +accusative +genitive +65388 dative +vocative +vocative +65392 nominative +nominative +accusative +nominative +nominative +dative +nominative +65402 accusative +accusative +genitive +65408 nominative +65410 nominative +65414 nominative +nominative +genitive +genitive +65419 nominative +65421 nominative +nominative +65424 genitive +genitive +genitive +65430 dative +dative +dative +65434 nominative +nominative +65438 genitive +genitive +genitive +65442 accusative +accusative +65446 nominative +nominative +genitive +65450 nominative +nominative +genitive +65454 nominative +nominative +genitive +accusative +65460 nominative +nominative +genitive +dative +65467 accusative +accusative +genitive +65472 accusative +accusative +genitive +65476 dative +dative +dative +65481 genitive +genitive +genitive +65488 accusative +65490 dative +dative +65494 accusative +65496 genitive +genitive +65499 accusative +65501 accusative +65503 accusative +genitive +nominative +nominative +65509 accusative +65511 nominative +nominative +65514 accusative +65517 accusative +genitive +accusative +accusative +65522 accusative +65525 nominative +65527 nominative +65529 accusative +accusative +genitive +65533 vocative +vocative +65536 accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +65545 genitive +genitive +65548 accusative +dative +65551 dative +65553 dative +dative +65557 genitive +nominative +nominative +65561 dative +genitive +65564 nominative +65566 accusative +dative +dative +dative +65571 dative +genitive +genitive +accusative +65576 genitive +genitive +nominative +65580 accusative +nominative +nominative +65584 nominative +accusative +accusative +genitive +genitive +65592 nominative +65594 accusative +65596 genitive +65598 nominative +65601 accusative +65603 accusative +accusative +65606 genitive +65608 genitive +65611 genitive +genitive +65618 accusative +65620 genitive +nominative +nominative +65625 nominative +nominative +genitive +65631 nominative +nominative +genitive +65636 dative +65640 accusative +accusative +genitive +65644 accusative +65647 accusative +accusative +genitive +65651 accusative +65653 dative +accusative +genitive +65657 accusative +genitive +65660 genitive +genitive +genitive +vocative +vocative +nominative +65668 genitive +65670 accusative +65672 genitive +genitive +genitive +65681 nominative +nominative +genitive +65686 dative +65688 genitive +genitive +genitive +65692 nominative +nominative +65695 nominative +65697 dative +65699 dative +nominative +nominative +65703 genitive +genitive +genitive +genitive +65709 accusative +accusative +genitive +nominative +65715 genitive +genitive +genitive +genitive +65723 accusative +65725 nominative +nominative +genitive +65729 accusative +accusative +accusative +accusative +65734 nominative +nominative +genitive +nominative +nominative +65740 nominative +65742 dative +dative +genitive +genitive +nominative +65748 accusative +accusative +genitive +genitive +genitive +genitive +nominative +65756 genitive +genitive +65759 accusative +accusative +nominative +65768 nominative +65771 accusative +accusative +65775 nominative +65777 nominative +dative +dative +genitive +65783 genitive +genitive +65788 accusative +accusative +genitive +accusative +genitive +genitive +genitive +65798 nominative +nominative +genitive +65803 accusative +65805 accusative +65807 nominative +nominative +accusative +accusative +accusative +accusative +accusative +nominative +65817 nominative +65819 accusative +accusative +65824 accusative +accusative +65827 accusative +accusative +accusative +accusative +65832 vocative +vocative +65835 nominative +65837 accusative +65841 nominative +genitive +65844 dative +dative +genitive +genitive +65849 accusative +genitive +genitive +genitive +65855 accusative +accusative +genitive +genitive +genitive +65861 dative +65863 nominative +nominative +65866 dative +dative +genitive +65870 dative +dative +65873 accusative +65875 accusative +65877 nominative +nominative +nominative +genitive +65882 dative +dative +dative +65888 accusative +nominative +65892 genitive +genitive +genitive +genitive +genitive +65899 nominative +nominative +accusative +accusative +genitive +65908 dative +dative +dative +nominative +65913 nominative +65916 nominative +dative +dative +genitive +genitive +65922 dative +dative +dative +dative +genitive +genitive +65929 dative +dative +65933 dative +dative +nominative +65937 nominative +nominative +65940 nominative +65942 genitive +genitive +65946 nominative +nominative +nominative +65950 accusative +accusative +65953 accusative +accusative +65956 accusative +accusative +65959 accusative +accusative +65964 accusative +dative +65968 nominative +accusative +65973 accusative +nominative +65977 dative +dative +65980 nominative +65982 accusative +accusative +65985 genitive +65987 dative +65989 dative +genitive +nominative +accusative +accusative +65995 nominative +accusative +65998 accusative +accusative +accusative +66002 nominative +nominative +66005 accusative +accusative +66008 accusative +66010 accusative +accusative +66013 nominative +66015 nominative +66018 accusative +accusative +66021 accusative +accusative +genitive +genitive +accusative +accusative +66028 nominative +nominative +nominative +66032 genitive +genitive +genitive +nominative +66037 accusative +66040 accusative +66042 accusative +accusative +genitive +genitive +accusative +accusative +accusative +genitive +66051 accusative +66053 genitive +genitive +66056 accusative +accusative +nominative +nominative +accusative +66062 accusative +accusative +66066 accusative +accusative +66069 accusative +66072 nominative +nominative +66075 accusative +66077 dative +dative +66082 accusative +66084 nominative +66086 dative +nominative +accusative +66090 genitive +66094 nominative +accusative +66097 accusative +66100 dative +66102 accusative +66104 accusative +dative +66108 dative +dative +genitive +genitive +genitive +genitive +66116 nominative +accusative +genitive +genitive +genitive +66122 accusative +66126 nominative +nominative +genitive +66130 nominative +nominative +66133 nominative +66140 dative +66142 accusative +accusative +nominative +66146 nominative +66148 nominative +accusative +accusative +66153 nominative +nominative +nominative +accusative +accusative +66159 accusative +accusative +accusative +66164 accusative +66166 nominative +66168 nominative +66170 accusative +accusative +nominative +66174 dative +dative +dative +genitive +genitive +66181 genitive +66183 genitive +66185 dative +dative +dative +66189 genitive +genitive +accusative +accusative +66194 accusative +accusative +66197 nominative +nominative +nominative +66201 accusative +66203 dative +dative +dative +dative +genitive +nominative +66210 nominative +nominative +nominative +66215 accusative +accusative +vocative +vocative +accusative +66222 dative +66224 dative +accusative +66228 dative +dative +66231 dative +dative +genitive +66235 accusative +nominative +nominative +genitive +66240 genitive +66242 genitive +nominative +nominative +genitive +genitive +genitive +66249 accusative +accusative +genitive +accusative +66254 accusative +nominative +66260 accusative +genitive +genitive +genitive +66266 nominative +accusative +accusative +66270 accusative +66274 accusative +accusative +66277 dative +66279 accusative +accusative +genitive +genitive +66284 accusative +nominative +nominative +66289 genitive +genitive +nominative +nominative +66296 dative +dative +genitive +genitive +genitive +accusative +accusative +66307 nominative +nominative +genitive +66311 nominative +nominative +nominative +66315 genitive +66317 dative +accusative +accusative +accusative +66322 genitive +genitive +66325 vocative +66330 accusative +66334 nominative +nominative +genitive +66338 nominative +nominative +accusative +66343 genitive +genitive +genitive +genitive +66348 accusative +accusative +genitive +66358 accusative +66360 genitive +accusative +accusative +66366 nominative +genitive +66369 genitive +genitive +genitive +66374 accusative +accusative +dative +accusative +accusative +66381 accusative +accusative +66385 genitive +genitive +genitive +genitive +66390 nominative +nominative +66393 genitive +genitive +genitive +66397 genitive +genitive +genitive +66401 nominative +66404 accusative +dative +66407 nominative +nominative +nominative +66411 genitive +genitive +genitive +66415 accusative +genitive +66419 accusative +66421 accusative +66424 accusative +66427 nominative +nominative +66430 nominative +66433 genitive +genitive +genitive +66438 genitive +genitive +66442 nominative +nominative +nominative +66446 genitive +66448 genitive +66450 nominative +66454 accusative +accusative +accusative +nominative +66459 nominative +nominative +genitive +genitive +66464 genitive +genitive +genitive +nominative +nominative +66471 accusative +accusative +genitive +nominative +66476 accusative +66479 dative +dative +genitive +66483 nominative +nominative +nominative +genitive +genitive +dative +accusative +nominative +nominative +nominative +accusative +accusative +genitive +66497 accusative +accusative +accusative +66501 dative +66503 accusative +66505 genitive +genitive +genitive +66509 genitive +genitive +66512 accusative +accusative +66515 dative +nominative +nominative +66519 nominative +nominative +genitive +genitive +66524 nominative +nominative +nominative +66528 accusative +66530 accusative +accusative +accusative +66536 dative +dative +accusative +accusative +accusative +66542 genitive +66545 dative +accusative +accusative +66551 accusative +66553 accusative +66557 nominative +66560 nominative +genitive +genitive +accusative +accusative +66568 nominative +genitive +genitive +66572 nominative +66577 accusative +66580 genitive +accusative +accusative +66584 accusative +accusative +66587 accusative +accusative +66590 dative +66592 nominative +nominative +nominative +66596 nominative +66598 nominative +66600 nominative +66602 nominative +66605 genitive +genitive +66608 nominative +accusative +66611 dative +dative +66615 dative +dative +66619 dative +dative +66622 accusative +nominative +66625 nominative +nominative +genitive +genitive +66631 accusative +vocative +genitive +genitive +66636 vocative +66638 nominative +66642 dative +genitive +genitive +66646 dative +nominative +66649 nominative +66651 dative +dative +66654 dative +dative +dative +genitive +66660 dative +dative +genitive +genitive +genitive +genitive +accusative +nominative +66669 accusative +nominative +nominative +66674 genitive +66676 dative +nominative +66680 genitive +nominative +nominative +66684 nominative +nominative +nominative +nominative +66689 genitive +genitive +genitive +nominative +nominative +66695 accusative +genitive +66701 dative +dative +nominative +nominative +66709 accusative +accusative +nominative +nominative +nominative +nominative +66716 dative +66718 dative +66721 accusative +66723 nominative +accusative +genitive +genitive +66728 genitive +accusative +66731 nominative +66733 nominative +nominative +66737 nominative +66741 accusative +66744 dative +dative +66748 nominative +accusative +accusative +accusative +accusative +66754 dative +accusative +accusative +66760 nominative +accusative +66763 genitive +genitive +66768 accusative +nominative +accusative +66772 dative +dative +dative +66778 nominative +nominative +66782 genitive +dative +dative +dative +accusative +nominative +66796 accusative +66799 accusative +accusative +66802 dative +66806 dative +dative +dative +dative +genitive +66812 nominative +accusative +66821 dative +dative +genitive +genitive +66826 nominative +nominative +66829 nominative +nominative +66833 accusative +66835 nominative +66838 genitive +genitive +genitive +66844 genitive +genitive +66850 nominative +accusative +66858 nominative +nominative +66861 accusative +accusative +nominative +accusative +66867 accusative +66869 accusative +accusative +66872 nominative +66874 accusative +accusative +66877 dative +dative +66880 genitive +genitive +66884 nominative +nominative +66887 accusative +66889 nominative +nominative +nominative +genitive +genitive +66895 nominative +66898 accusative +accusative +66902 accusative +66904 accusative +nominative +nominative +66908 nominative +nominative +66912 nominative +nominative +66916 accusative +66918 accusative +accusative +66922 vocative +nominative +nominative +nominative +accusative +accusative +66929 accusative +accusative +66932 accusative +accusative +66935 accusative +accusative +66938 dative +nominative +genitive +genitive +genitive +66944 genitive +genitive +genitive +genitive +genitive +genitive +nominative +66952 accusative +66954 nominative +66956 nominative +66958 accusative +66960 nominative +nominative +genitive +genitive +66965 nominative +nominative +66969 accusative +accusative +66972 genitive +genitive +66976 genitive +genitive +genitive +66982 genitive +66984 dative +dative +dative +66988 accusative +accusative +accusative +genitive +accusative +accusative +66996 nominative +66998 nominative +nominative +67001 dative +67003 dative +genitive +67006 accusative +67008 nominative +nominative +genitive +67012 nominative +nominative +67016 vocative +accusative +67021 accusative +accusative +genitive +67026 dative +dative +genitive +67030 genitive +genitive +67033 accusative +accusative +genitive +67037 dative +accusative +accusative +67041 accusative +67043 accusative +67045 accusative +67047 accusative +67050 genitive +genitive +genitive +genitive +genitive +genitive +genitive +67058 genitive +genitive +67061 nominative +nominative +67064 dative +67066 nominative +67069 nominative +genitive +genitive +genitive +67075 accusative +accusative +genitive +genitive +67080 genitive +67082 genitive +genitive +genitive +genitive +nominative +67088 nominative +67090 nominative +67093 nominative +accusative +genitive +genitive +dative +accusative +67103 dative +nominative +nominative +67107 dative +dative +67110 accusative +accusative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +67120 nominative +nominative +67124 accusative +accusative +67128 nominative +nominative +67132 dative +67134 nominative +nominative +genitive +67138 genitive +67140 nominative +67142 accusative +accusative +genitive +genitive +67149 accusative +accusative +genitive +genitive +67155 dative +67158 nominative +accusative +67162 nominative +nominative +nominative +nominative +67167 genitive +genitive +nominative +67171 nominative +nominative +genitive +nominative +nominative +dative +dative +genitive +dative +genitive +nominative +67183 accusative +accusative +67188 accusative +accusative +genitive +genitive +67193 nominative +nominative +nominative +dative +67198 dative +dative +dative +genitive +67203 accusative +67207 genitive +genitive +genitive +67211 genitive +genitive +67214 nominative +accusative +accusative +67218 accusative +accusative +genitive +genitive +67225 nominative +nominative +vocative +67229 accusative +67231 nominative +nominative +accusative +accusative +genitive +67237 accusative +accusative +accusative +accusative +accusative +67245 genitive +genitive +genitive +genitive +67250 nominative +dative +67254 nominative +67256 dative +dative +dative +67260 nominative +67264 dative +dative +genitive +accusative +accusative +accusative +67272 dative +67274 dative +dative +67277 nominative +nominative +nominative +accusative +accusative +accusative +nominative +67287 nominative +nominative +67290 accusative +accusative +accusative +67294 nominative +nominative +nominative +67298 accusative +67300 nominative +67305 genitive +genitive +nominative +67309 nominative +nominative +genitive +67313 nominative +accusative +accusative +67320 accusative +nominative +67323 dative +67325 genitive +accusative +accusative +67330 nominative +67333 genitive +67335 nominative +nominative +67338 accusative +nominative +67342 dative +67344 accusative +accusative +genitive +67348 nominative +nominative +genitive +genitive +accusative +accusative +genitive +67356 dative +dative +67360 accusative +67365 accusative +accusative +genitive +67371 nominative +nominative +nominative +67375 accusative +accusative +67378 nominative +67381 accusative +accusative +genitive +67386 nominative +nominative +67389 accusative +accusative +accusative +67394 accusative +accusative +accusative +accusative +67400 genitive +genitive +genitive +genitive +67405 nominative +67407 nominative +nominative +67410 dative +dative +67415 nominative +67417 dative +dative +genitive +67421 genitive +genitive +nominative +67426 dative +67429 accusative +nominative +nominative +67435 nominative +dative +dative +nominative +67440 genitive +67442 genitive +67446 accusative +accusative +67449 accusative +accusative +67454 genitive +67456 genitive +67458 genitive +genitive +67461 nominative +nominative +67464 dative +genitive +67469 nominative +nominative +genitive +67473 genitive +genitive +nominative +accusative +67478 accusative +67480 genitive +genitive +nominative +nominative +67486 nominative +nominative +nominative +67490 nominative +nominative +67493 dative +nominative +nominative +nominative +genitive +genitive +67500 genitive +67503 accusative +accusative +67506 accusative +accusative +67510 accusative +67512 dative +dative +67515 nominative +genitive +67518 genitive +67520 accusative +accusative +genitive +genitive +67525 nominative +accusative +67530 nominative +67533 dative +dative +dative +dative +accusative +accusative +accusative +genitive +genitive +genitive +67544 nominative +67547 accusative +accusative +67550 accusative +accusative +67555 nominative +nominative +nominative +67559 nominative +67561 dative +67563 accusative +accusative +67566 accusative +accusative +accusative +genitive +genitive +genitive +67575 accusative +accusative +67578 accusative +67580 nominative +nominative +nominative +67585 accusative +67587 dative +dative +67590 nominative +67592 nominative +67595 accusative +accusative +accusative +67599 dative +dative +67602 accusative +accusative +accusative +67606 genitive +genitive +67609 nominative +67611 accusative +67616 accusative +accusative +accusative +67620 nominative +nominative +genitive +genitive +67625 nominative +nominative +67629 genitive +67631 nominative +67633 nominative +67635 nominative +nominative +67638 dative +67641 nominative +nominative +accusative +67646 dative +dative +67649 nominative +67651 dative +dative +67654 nominative +accusative +accusative +67658 nominative +nominative +nominative +67662 dative +dative +67665 accusative +67668 genitive +67671 accusative +accusative +67676 nominative +accusative +67680 dative +dative +67684 accusative +nominative +nominative +nominative +dative +67690 dative +67694 dative +dative +dative +67700 accusative +accusative +genitive +genitive +genitive +67709 accusative +accusative +accusative +genitive +genitive +genitive +67716 nominative +nominative +67719 nominative +nominative +67724 dative +67727 dative +nominative +nominative +genitive +genitive +genitive +67734 accusative +accusative +nominative +67738 nominative +67740 genitive +accusative +nominative +nominative +accusative +67746 accusative +67748 dative +dative +genitive +genitive +67753 accusative +dative +dative +67757 accusative +genitive +67760 nominative +67762 nominative +genitive +genitive +genitive +67767 accusative +accusative +accusative +accusative +accusative +67773 nominative +nominative +dative +dative +dative +67779 nominative +nominative +67785 accusative +67787 nominative +nominative +67790 dative +dative +nominative +dative +nominative +nominative +nominative +dative +dative +dative +67802 accusative +accusative +accusative +67809 accusative +vocative +vocative +67813 dative +67815 dative +dative +dative +accusative +67823 genitive +genitive +genitive +67827 nominative +nominative +67830 accusative +accusative +dative +67834 genitive +nominative +67837 genitive +nominative +67841 nominative +nominative +67844 dative +67849 accusative +67851 accusative +67853 nominative +nominative +nominative +67857 dative +dative +genitive +genitive +67863 accusative +67865 genitive +nominative +67869 nominative +nominative +67872 dative +67875 accusative +67878 dative +67881 genitive +genitive +genitive +67886 accusative +67891 genitive +nominative +nominative +nominative +67896 nominative +nominative +nominative +67903 genitive +67908 accusative +67912 nominative +67916 dative +67918 nominative +accusative +accusative +nominative +67926 dative +dative +genitive +genitive +67934 nominative +67936 nominative +67938 genitive +genitive +genitive +67944 genitive +genitive +67948 accusative +accusative +67951 dative +dative +67955 accusative +67958 nominative +67960 nominative +accusative +accusative +accusative +67966 dative +dative +dative +genitive +genitive +genitive +67973 nominative +genitive +genitive +67977 accusative +accusative +67982 dative +dative +dative +dative +nominative +nominative +genitive +67990 nominative +67992 nominative +accusative +accusative +genitive +genitive +67999 nominative +68001 accusative +accusative +accusative +accusative +genitive +genitive +68008 dative +68010 vocative +68012 accusative +68014 genitive +accusative +68017 accusative +genitive +68020 genitive +accusative +68024 genitive +genitive +genitive +68028 nominative +dative +dative +68032 dative +dative +genitive +genitive +68039 nominative +nominative +68042 genitive +genitive +genitive +68047 accusative +accusative +accusative +genitive +68052 genitive +genitive +68055 accusative +68057 accusative +68059 accusative +68061 accusative +68063 accusative +68065 accusative +accusative +accusative +accusative +68071 genitive +genitive +68074 nominative +68076 dative +accusative +accusative +68080 nominative +nominative +genitive +genitive +68087 nominative +nominative +genitive +genitive +68092 dative +68095 nominative +nominative +genitive +genitive +68100 dative +dative +68103 nominative +nominative +genitive +68107 genitive +68109 accusative +68111 accusative +accusative +68114 dative +dative +68118 nominative +genitive +68121 genitive +genitive +genitive +genitive +genitive +68127 genitive +68129 genitive +68131 genitive +68133 genitive +68135 genitive +nominative +dative +dative +68143 dative +dative +68146 dative +dative +dative +68152 accusative +accusative +68156 genitive +genitive +accusative +accusative +68161 accusative +68163 accusative +accusative +68167 accusative +accusative +68170 accusative +accusative +68173 accusative +accusative +68176 nominative +68178 accusative +68182 accusative +accusative +68186 accusative +accusative +accusative +nominative +nominative +nominative +68194 nominative +accusative +68197 genitive +genitive +genitive +genitive +68202 genitive +genitive +68206 genitive +genitive +68209 nominative +nominative +nominative +nominative +68214 accusative +accusative +accusative +68219 accusative +accusative +accusative +68223 dative +nominative +68226 nominative +68228 accusative +nominative +nominative +nominative +68233 dative +dative +68236 accusative +accusative +genitive +68240 accusative +genitive +68244 nominative +nominative +68247 nominative +68251 nominative +68253 vocative +vocative +68256 vocative +68258 nominative +nominative +genitive +genitive +68263 dative +dative +genitive +dative +dative +68269 dative +dative +68274 accusative +68276 dative +68280 accusative +68283 genitive +genitive +genitive +68287 genitive +genitive +genitive +68293 accusative +accusative +68296 accusative +dative +68300 nominative +68302 genitive +genitive +68306 dative +68309 accusative +68311 accusative +accusative +genitive +68315 accusative +68317 accusative +accusative +accusative +68321 accusative +nominative +68328 dative +accusative +68331 dative +68333 accusative +genitive +68338 dative +68340 accusative +accusative +68343 dative +dative +genitive +68347 accusative +68349 genitive +dative +genitive +68355 nominative +nominative +68359 nominative +nominative +genitive +nominative +68364 dative +dative +68370 accusative +accusative +accusative +68374 accusative +accusative +68377 dative +68380 nominative +nominative +nominative +68386 accusative +68390 dative +68392 dative +dative +dative +68397 dative +accusative +genitive +68403 accusative +accusative +68407 accusative +dative +dative +dative +dative +68413 nominative +accusative +accusative +68417 nominative +accusative +68420 accusative +68422 nominative +nominative +nominative +accusative +accusative +68429 accusative +68432 nominative +nominative +68435 genitive +68438 accusative +68440 genitive +genitive +genitive +genitive +68446 dative +accusative +68449 accusative +68451 genitive +genitive +genitive +68456 accusative +accusative +68459 accusative +68461 accusative +accusative +accusative +genitive +68467 nominative +68469 accusative +accusative +accusative +68473 accusative +68475 nominative +nominative +68480 accusative +nominative +nominative +genitive +68485 nominative +nominative +accusative +accusative +68490 accusative +68492 accusative +accusative +genitive +accusative +68498 dative +dative +68501 nominative +dative +dative +genitive +68506 nominative +68508 dative +dative +nominative +nominative +genitive +68514 nominative +nominative +68517 accusative +accusative +accusative +genitive +68522 accusative +accusative +accusative +68526 dative +68531 nominative +68533 accusative +68536 nominative +68538 nominative +nominative +genitive +68544 accusative +68548 dative +dative +dative +68552 nominative +genitive +genitive +68556 genitive +genitive +genitive +68560 dative +68564 nominative +nominative +genitive +genitive +genitive +68570 nominative +nominative +dative +dative +nominative +nominative +68580 dative +68582 genitive +68585 accusative +nominative +nominative +nominative +68591 accusative +accusative +nominative +nominative +accusative +accusative +genitive +68599 accusative +accusative +genitive +68603 accusative +accusative +genitive +accusative +68608 accusative +68612 dative +dative +68615 nominative +68618 nominative +dative +dative +nominative +68623 accusative +accusative +68626 dative +dative +genitive +genitive +68631 genitive +genitive +68634 accusative +nominative +nominative +genitive +68640 accusative +dative +68643 accusative +68646 nominative +dative +dative +genitive +68652 nominative +68654 dative +68656 dative +genitive +68661 dative +nominative +nominative +68666 accusative +accusative +genitive +68670 accusative +accusative +genitive +accusative +accusative +genitive +68677 nominative +accusative +accusative +68683 accusative +dative +dative +nominative +accusative +accusative +68692 accusative +accusative +68695 nominative +nominative +68698 genitive +genitive +68701 accusative +dative +68704 nominative +68708 dative +dative +dative +68712 dative +dative +68716 accusative +68718 accusative +nominative +vocative +nominative +68724 accusative +68726 accusative +68728 nominative +nominative +accusative +68733 accusative +nominative +nominative +accusative +68738 accusative +68740 accusative +68742 genitive +68745 accusative +nominative +68748 accusative +accusative +68752 accusative +accusative +68756 nominative +68758 dative +dative +dative +68763 nominative +68765 dative +genitive +68769 accusative +68772 genitive +genitive +68776 dative +68778 dative +dative +genitive +genitive +genitive +nominative +68785 dative +genitive +genitive +68789 nominative +nominative +nominative +68793 accusative +accusative +68796 genitive +genitive +68800 nominative +genitive +nominative +nominative +nominative +genitive +genitive +genitive +nominative +nominative +genitive +68812 genitive +68814 genitive +68816 nominative +nominative +nominative +68824 dative +nominative +nominative +68828 accusative +accusative +genitive +genitive +genitive +68834 nominative +nominative +68837 dative +68839 nominative +nominative +68842 nominative +68844 accusative +accusative +genitive +genitive +genitive +genitive +68851 dative +68853 genitive +genitive +genitive +68860 accusative +68865 accusative +68867 accusative +accusative +accusative +accusative +accusative +68873 nominative +nominative +accusative +68877 accusative +68879 accusative +accusative +nominative +nominative +68884 accusative +68886 accusative +68889 dative +genitive +genitive +genitive +dative +68895 dative +dative +nominative +68899 accusative +nominative +accusative +68903 accusative +68905 dative +dative +68909 dative +dative +68913 dative +dative +accusative +68917 nominative +68919 nominative +nominative +nominative +nominative +dative +dative +genitive +accusative +dative +68929 nominative +nominative +68932 genitive +genitive +genitive +68936 accusative +nominative +68939 nominative +nominative +68942 dative +dative +68945 dative +dative +68948 genitive +genitive +genitive +genitive +dative +68954 dative +dative +dative +68958 genitive +genitive +genitive +nominative +68963 accusative +accusative +68966 dative +dative +68970 nominative +68972 nominative +nominative +genitive +68980 dative +dative +genitive +68984 accusative +nominative +dative +dative +68989 dative +accusative +nominative +68993 genitive +68995 nominative +nominative +nominative +nominative +69000 accusative +69002 genitive +genitive +69006 nominative +69008 dative +69012 dative +dative +dative +69017 accusative +dative +dative +69023 dative +dative +genitive +genitive +genitive +69030 nominative +nominative +69034 accusative +69036 dative +dative +genitive +genitive +69043 dative +genitive +genitive +69047 accusative +69049 accusative +69051 dative +accusative +69055 dative +dative +nominative +genitive +69061 accusative +accusative +genitive +genitive +69066 accusative +accusative +genitive +genitive +genitive +accusative +accusative +accusative +69076 dative +69079 accusative +69081 genitive +nominative +nominative +genitive +genitive +69087 dative +dative +genitive +69091 dative +dative +69095 nominative +nominative +dative +dative +69100 accusative +69102 accusative +accusative +accusative +69106 accusative +69109 nominative +nominative +nominative +genitive +69114 genitive +69116 dative +dative +genitive +genitive +genitive +69122 nominative +nominative +69125 genitive +genitive +genitive +genitive +69130 genitive +genitive +genitive +nominative +69135 accusative +69137 genitive +genitive +69142 accusative +dative +dative +genitive +69147 nominative +69149 dative +accusative +69153 nominative +nominative +69156 dative +69159 nominative +nominative +69162 nominative +nominative +dative +nominative +69167 nominative +nominative +nominative +genitive +genitive +genitive +accusative +accusative +69176 dative +69178 nominative +69180 nominative +nominative +genitive +genitive +genitive +69186 nominative +nominative +genitive +69190 accusative +accusative +vocative +69194 vocative +dative +69197 dative +dative +nominative +69201 dative +dative +dative +dative +69207 nominative +nominative +genitive +69211 nominative +accusative +genitive +genitive +69217 nominative +nominative +genitive +69222 accusative +accusative +69225 genitive +genitive +genitive +genitive +genitive +69231 nominative +nominative +69234 nominative +69236 nominative +69238 accusative +accusative +69241 accusative +genitive +69247 nominative +accusative +69250 dative +dative +genitive +69255 accusative +accusative +69258 accusative +69260 nominative +nominative +genitive +genitive +nominative +69266 accusative +accusative +69269 accusative +genitive +69272 accusative +accusative +69275 genitive +genitive +genitive +69282 accusative +accusative +accusative +69286 accusative +accusative +genitive +genitive +69291 genitive +genitive +genitive +accusative +69296 nominative +dative +dative +69300 accusative +accusative +genitive +69307 accusative +69309 nominative +69311 genitive +genitive +69315 nominative +nominative +69318 accusative +accusative +genitive +69322 accusative +accusative +genitive +genitive +genitive +69329 accusative +accusative +accusative +69333 accusative +vocative +vocative +69337 accusative +accusative +genitive +69341 nominative +accusative +accusative +69345 dative +dative +vocative +69350 dative +accusative +accusative +accusative +69355 accusative +nominative +69359 nominative +69361 nominative +dative +dative +genitive +69368 dative +dative +dative +nominative +nominative +69374 accusative +accusative +accusative +69378 dative +69380 nominative +69383 accusative +accusative +genitive +genitive +69388 genitive +69390 genitive +genitive +69394 accusative +accusative +nominative +nominative +69400 accusative +accusative +69403 dative +69405 nominative +69407 accusative +accusative +69410 accusative +accusative +nominative +nominative +69415 accusative +69417 accusative +69420 accusative +69423 nominative +nominative +69426 nominative +accusative +accusative +69430 nominative +nominative +69433 accusative +accusative +genitive +genitive +69438 dative +accusative +accusative +69443 nominative +nominative +dative +dative +69448 genitive +genitive +69452 dative +69454 accusative +69457 accusative +accusative +accusative +69462 nominative +genitive +genitive +accusative +accusative +nominative +dative +dative +69472 nominative +nominative +69475 nominative +69479 nominative +nominative +69482 dative +dative +dative +69486 nominative +nominative +dative +nominative +69492 dative +dative +nominative +69496 nominative +accusative +accusative +genitive +genitive +nominative +69503 accusative +accusative +accusative +dative +69508 nominative +69510 genitive +69512 genitive +nominative +nominative +69516 nominative +nominative +genitive +genitive +nominative +nominative +nominative +69525 dative +69527 accusative +dative +dative +dative +dative +69533 accusative +69537 dative +dative +dative +69541 genitive +genitive +genitive +genitive +69546 genitive +genitive +genitive +genitive +69552 nominative +69554 nominative +69556 nominative +nominative +69559 nominative +69562 nominative +69564 nominative +dative +dative +nominative +69569 accusative +69571 accusative +accusative +accusative +69576 nominative +69578 dative +nominative +nominative +69583 nominative +nominative +accusative +accusative +genitive +genitive +69591 accusative +accusative +69594 accusative +nominative +nominative +69599 genitive +69602 accusative +accusative +69607 nominative +69609 dative +genitive +69612 accusative +nominative +69616 accusative +accusative +genitive +genitive +genitive +69623 accusative +accusative +69626 accusative +69629 accusative +accusative +69632 nominative +nominative +nominative +69637 genitive +genitive +genitive +genitive +genitive +genitive +69644 nominative +nominative +69647 dative +accusative +nominative +69651 dative +accusative +accusative +accusative +69657 dative +69659 accusative +accusative +69662 accusative +accusative +69665 nominative +69668 accusative +nominative +nominative +genitive +69673 dative +69676 accusative +69679 accusative +accusative +genitive +genitive +69684 genitive +69688 dative +nominative +69691 nominative +69693 dative +dative +dative +69697 nominative +nominative +genitive +69702 nominative +69704 genitive +genitive +69709 genitive +genitive +genitive +genitive +69715 genitive +genitive +69720 dative +nominative +nominative +genitive +genitive +genitive +69728 accusative +genitive +69731 accusative +genitive +accusative +accusative +69737 nominative +nominative +nominative +69742 nominative +69744 genitive +69746 accusative +accusative +69751 accusative +nominative +genitive +69757 nominative +nominative +69760 nominative +accusative +accusative +genitive +genitive +69767 accusative +69769 accusative +accusative +genitive +genitive +69775 nominative +genitive +69779 accusative +nominative +69785 accusative +69787 accusative +accusative +accusative +accusative +69792 genitive +69794 accusative +nominative +69797 nominative +69799 nominative +69803 nominative +nominative +nominative +nominative +genitive +genitive +genitive +nominative +69813 genitive +genitive +genitive +genitive +nominative +69819 nominative +69821 accusative +69824 nominative +69826 nominative +69828 genitive +genitive +genitive +69833 accusative +accusative +accusative +69838 nominative +nominative +dative +dative +69845 dative +dative +dative +69849 nominative +nominative +nominative +69853 genitive +genitive +accusative +accusative +accusative +69863 accusative +69866 nominative +69874 nominative +69876 accusative +69879 accusative +accusative +accusative +69884 dative +69886 nominative +nominative +genitive +genitive +accusative +69893 nominative +69895 nominative +69897 accusative +69901 nominative +69903 genitive +genitive +accusative +nominative +69910 accusative +accusative +genitive +69914 dative +dative +nominative +nominative +genitive +69920 accusative +accusative +genitive +nominative +69928 genitive +genitive +nominative +nominative +genitive +69934 nominative +nominative +nominative +dative +dative +69941 genitive +69943 genitive +nominative +nominative +69947 accusative +69949 genitive +69952 genitive +genitive +69955 nominative +nominative +nominative +accusative +accusative +genitive +69962 nominative +69964 genitive +genitive +genitive +69968 dative +accusative +accusative +69975 accusative +accusative +69979 accusative +accusative +69983 nominative +nominative +69986 nominative +nominative +69989 accusative +69994 accusative +accusative +69998 nominative +70000 accusative +accusative +70003 nominative +nominative +70006 nominative +nominative +70010 accusative +70015 genitive +genitive +nominative +genitive +70020 accusative +accusative +70025 accusative +70027 nominative +nominative +70031 accusative +accusative +genitive +nominative +70036 nominative +70039 accusative +70041 nominative +70043 accusative +accusative +accusative +70047 genitive +70049 accusative +70051 accusative +70053 nominative +nominative +70056 nominative +genitive +70059 genitive +70061 accusative +accusative +genitive +genitive +nominative +dative +dative +70070 genitive +accusative +70073 accusative +70075 accusative +accusative +70080 accusative +genitive +genitive +accusative +70085 accusative +70087 accusative +accusative +70091 accusative +70094 dative +70097 accusative +70099 dative +dative +70103 accusative +70105 nominative +70107 genitive +genitive +70110 nominative +70112 accusative +accusative +70115 accusative +accusative +dative +vocative +vocative +accusative +accusative +70125 nominative +70127 vocative +70129 nominative +nominative +70132 nominative +accusative +nominative +70141 accusative +accusative +70145 dative +accusative +accusative +accusative +70152 nominative +nominative +nominative +nominative +dative +70158 nominative +70160 nominative +genitive +genitive +70164 accusative +nominative +70168 nominative +70170 genitive +genitive +70173 genitive +genitive +genitive +genitive +accusative +70180 nominative +accusative +70184 accusative +70187 nominative +accusative +accusative +70198 nominative +nominative +dative +nominative +70203 dative +70207 accusative +70209 dative +nominative +nominative +vocative +70214 nominative +70217 nominative +vocative +70220 nominative +nominative +70223 accusative +nominative +70227 accusative +accusative +accusative +accusative +accusative +70235 dative +genitive +accusative +dative +accusative +70245 accusative +accusative +dative +accusative +70250 accusative +dative +accusative +70257 nominative +vocative +70261 genitive +70263 genitive +genitive +genitive +accusative +accusative +dative +dative +genitive +70273 dative +70277 accusative +70279 genitive +genitive +70282 accusative +accusative +accusative +accusative +accusative +genitive +70291 accusative +nominative +nominative +70296 nominative +genitive +70299 dative +nominative +genitive +70303 accusative +accusative +genitive +70308 genitive +70310 genitive +70312 genitive +genitive +70315 nominative +70317 dative +accusative +accusative +70321 genitive +genitive +genitive +70328 nominative +70332 accusative +accusative +70335 nominative +70337 accusative +accusative +accusative +70341 vocative +vocative +nominative +nominative +nominative +nominative +nominative +dative +70350 dative +dative +dative +70355 accusative +70360 genitive +genitive +70366 genitive +genitive +genitive +70370 nominative +70374 nominative +70377 nominative +accusative +70383 genitive +70385 dative +genitive +accusative +accusative +70392 dative +dative +70395 accusative +accusative +70398 nominative +70400 nominative +nominative +genitive +genitive +70406 nominative +nominative +nominative +70412 nominative +70414 nominative +nominative +70417 accusative +accusative +accusative +accusative +accusative +accusative +70426 accusative +70429 accusative +accusative +70433 accusative +accusative +70436 nominative +70441 accusative +accusative +accusative +70445 dative +nominative +70448 nominative +70450 nominative +nominative +70455 nominative +nominative +70458 nominative +nominative +70461 accusative +70464 dative +dative +nominative +nominative +genitive +70472 accusative +accusative +70475 genitive +70477 genitive +70479 accusative +70482 nominative +nominative +nominative +genitive +genitive +70488 genitive +genitive +70491 accusative +nominative +70494 dative +70496 nominative +70498 accusative +70501 dative +dative +70504 nominative +70506 accusative +70508 nominative +70511 nominative +70513 nominative +nominative +accusative +70518 accusative +accusative +70522 dative +70525 dative +dative +70528 accusative +accusative +70533 dative +70537 dative +70540 dative +dative +genitive +70545 nominative +70547 nominative +70549 genitive +70551 accusative +nominative +70554 dative +dative +genitive +genitive +70563 accusative +accusative +70566 nominative +70569 accusative +70571 nominative +nominative +nominative +70575 accusative +70577 accusative +70580 accusative +70582 accusative +70585 nominative +nominative +70588 genitive +genitive +genitive +70592 genitive +70594 genitive +70596 accusative +nominative +70599 nominative +dative +dative +genitive +genitive +70605 dative +dative +genitive +genitive +genitive +70613 accusative +accusative +70616 genitive +70620 accusative +accusative +accusative +accusative +accusative +70628 accusative +accusative +dative +accusative +70633 genitive +70635 accusative +70637 genitive +nominative +70640 nominative +70643 dative +nominative +nominative +vocative +70648 accusative +nominative +nominative +70654 dative +70660 accusative +nominative +nominative +nominative +accusative +70666 accusative +accusative +nominative +70671 accusative +accusative +70675 dative +70677 nominative +nominative +dative +nominative +nominative +nominative +70684 nominative +nominative +70687 nominative +genitive +genitive +70691 genitive +genitive +70697 dative +dative +dative +accusative +accusative +70704 nominative +70707 dative +70709 genitive +genitive +70712 dative +dative +nominative +nominative +nominative +70718 nominative +70721 dative +70724 accusative +70726 accusative +nominative +70732 genitive +70734 nominative +nominative +70737 dative +accusative +accusative +70742 accusative +accusative +70746 dative +nominative +nominative +nominative +nominative +70752 nominative +accusative +70755 accusative +accusative +70759 genitive +nominative +nominative +nominative +70764 nominative +nominative +nominative +70768 accusative +70770 nominative +accusative +accusative +70775 nominative +70777 accusative +accusative +70780 vocative +70783 nominative +70785 accusative +accusative +genitive +70789 nominative +accusative +accusative +70794 nominative +dative +accusative +70798 accusative +70800 nominative +accusative +accusative +70804 accusative +accusative +70807 accusative +accusative +70810 nominative +70813 genitive +genitive +genitive +70818 nominative +70820 accusative +accusative +70824 accusative +accusative +70828 dative +70830 dative +dative +dative +70834 nominative +nominative +70837 dative +dative +nominative +nominative +70842 genitive +genitive +genitive +genitive +nominative +70848 nominative +accusative +accusative +70852 dative +dative +dative +genitive +nominative +accusative +accusative +dative +dative +70862 nominative +genitive +genitive +70866 genitive +70869 dative +70873 accusative +accusative +genitive +genitive +accusative +genitive +genitive +accusative +70882 accusative +70884 accusative +dative +vocative +70888 nominative +nominative +dative +70892 nominative +nominative +70895 nominative +70897 vocative +70900 dative +nominative +nominative +genitive +70905 nominative +nominative +genitive +70910 accusative +70912 genitive +genitive +70917 accusative +70919 accusative +70922 accusative +accusative +nominative +70926 nominative +nominative +70930 dative +dative +dative +dative +70935 nominative +70937 accusative +70941 nominative +nominative +nominative +nominative +dative +nominative +70948 genitive +genitive +70951 accusative +accusative +genitive +genitive +dative +70957 nominative +accusative +dative +70961 accusative +70963 accusative +accusative +70966 dative +70968 genitive +genitive +70971 dative +dative +genitive +70975 nominative +70977 accusative +accusative +70981 accusative +accusative +70985 nominative +70990 genitive +genitive +70994 accusative +nominative +70998 accusative +accusative +accusative +71002 accusative +accusative +accusative +71006 accusative +accusative +dative +dative +accusative +71012 genitive +genitive +71015 dative +71017 nominative +nominative +nominative +71021 nominative +genitive +genitive +71025 nominative +genitive +genitive +71030 nominative +71032 accusative +vocative +nominative +71039 nominative +nominative +71043 vocative +71047 accusative +accusative +71050 accusative +71052 nominative +71055 genitive +71057 accusative +accusative +nominative +nominative +71062 nominative +71066 nominative +71071 nominative +71073 nominative +nominative +71076 accusative +accusative +71081 dative +71083 nominative +nominative +71086 nominative +71088 nominative +nominative +accusative +71093 nominative +nominative +nominative +nominative +71098 genitive +genitive +nominative +accusative +accusative +genitive +genitive +71107 accusative +accusative +71110 nominative +71113 nominative +nominative +nominative +nominative +71120 genitive +genitive +genitive +71124 genitive +genitive +71127 nominative +nominative +71130 nominative +71132 nominative +accusative +71135 nominative +71140 dative +accusative +nominative +71144 nominative +71146 accusative +71148 nominative +nominative +71151 accusative +accusative +71155 nominative +71157 accusative +71159 nominative +nominative +nominative +71163 accusative +71166 nominative +71168 nominative +nominative +nominative +nominative +71173 nominative +accusative +accusative +71177 nominative +71179 genitive +genitive +genitive +genitive +genitive +71186 genitive +genitive +71189 accusative +71191 accusative +accusative +genitive +71196 accusative +71198 genitive +71200 nominative +accusative +71204 dative +71206 nominative +71209 dative +71211 nominative +genitive +genitive +genitive +71216 genitive +71218 dative +71220 dative +71224 accusative +accusative +71227 nominative +nominative +71230 nominative +accusative +nominative +accusative +accusative +genitive +71237 accusative +accusative +accusative +71243 genitive +71245 accusative +accusative +nominative +dative +nominative +nominative +nominative +71253 accusative +accusative +71257 nominative +nominative +71260 accusative +nominative +71264 nominative +nominative +nominative +71269 nominative +dative +71274 accusative +accusative +71279 accusative +nominative +71283 nominative +71285 dative +dative +71290 dative +dative +nominative +nominative +71295 accusative +accusative +accusative +71299 accusative +71305 nominative +71308 dative +dative +71311 accusative +71313 nominative +nominative +71317 genitive +genitive +71320 genitive +genitive +genitive +71324 nominative +accusative +accusative +71328 dative +dative +genitive +71333 nominative +71336 genitive +71338 dative +dative +71342 vocative +71344 genitive +nominative +nominative +71348 nominative +nominative +genitive +71353 genitive +genitive +71358 accusative +71361 accusative +nominative +71364 nominative +nominative +71368 dative +genitive +genitive +71372 accusative +71377 accusative +71379 nominative +71382 nominative +71385 nominative +nominative +71388 genitive +genitive +71392 accusative +accusative +accusative +dative +71397 genitive +genitive +71400 nominative +nominative +accusative +accusative +71406 genitive +71411 nominative +nominative +nominative +71416 dative +dative +nominative +nominative +accusative +71422 nominative +accusative +nominative +dative +71427 accusative +accusative +accusative +71431 dative +dative +genitive +nominative +accusative +71437 genitive +genitive +nominative +71441 genitive +nominative +nominative +71445 accusative +accusative +accusative +71449 genitive +genitive +genitive +nominative +71454 genitive +genitive +71457 accusative +accusative +accusative +71461 nominative +accusative +accusative +71465 genitive +71468 accusative +nominative +nominative +dative +dative +71474 dative +nominative +71477 nominative +71479 nominative +accusative +accusative +accusative +71484 genitive +genitive +71487 nominative +nominative +71491 genitive +71493 nominative +nominative +genitive +genitive +71500 dative +dative +genitive +genitive +71505 dative +accusative +71509 nominative +71511 genitive +accusative +nominative +nominative +71517 dative +dative +dative +71522 accusative +accusative +71526 dative +dative +dative +71530 dative +dative +dative +71534 genitive +genitive +dative +nominative +71541 dative +71543 accusative +71545 accusative +71547 genitive +71550 dative +71552 dative +dative +71557 nominative +71559 nominative +nominative +71562 genitive +genitive +nominative +genitive +71567 genitive +dative +nominative +nominative +nominative +71573 accusative +genitive +71577 genitive +genitive +genitive +accusative +accusative +accusative +71584 accusative +71586 genitive +genitive +genitive +accusative +accusative +accusative +71593 nominative +nominative +nominative +nominative +71598 accusative +accusative +accusative +accusative +accusative +71605 nominative +71607 genitive +nominative +nominative +71611 dative +dative +71616 accusative +accusative +nominative +nominative +genitive +genitive +genitive +71626 genitive +genitive +dative +71630 genitive +accusative +accusative +71635 nominative +71637 accusative +accusative +71641 nominative +genitive +71645 accusative +nominative +accusative +accusative +accusative +accusative +71654 nominative +71657 accusative +71659 dative +dative +genitive +genitive +71666 accusative +71668 accusative +accusative +71672 nominative +nominative +71675 nominative +nominative +nominative +nominative +71680 accusative +accusative +71684 nominative +nominative +71687 accusative +accusative +genitive +genitive +71694 nominative +71696 accusative +71699 accusative +nominative +71702 genitive +nominative +71707 accusative +accusative +accusative +71712 dative +71714 nominative +nominative +71717 dative +71719 nominative +nominative +71722 nominative +71724 dative +dative +71729 dative +accusative +accusative +accusative +accusative +71735 accusative +accusative +dative +dative +accusative +71741 genitive +genitive +71746 genitive +71748 accusative +nominative +71753 accusative +accusative +genitive +genitive +71758 accusative +accusative +71761 accusative +accusative +71764 accusative +accusative +genitive +genitive +71771 genitive +genitive +dative +vocative +nominative +71782 vocative +71784 nominative +71786 nominative +71790 accusative +accusative +genitive +71796 genitive +nominative +71799 genitive +genitive +accusative +nominative +nominative +71805 nominative +71809 nominative +71816 nominative +71818 accusative +accusative +71823 nominative +nominative +71827 accusative +accusative +71830 dative +71832 nominative +71834 genitive +71836 accusative +71839 nominative +nominative +dative +71843 dative +accusative +accusative +71849 dative +71851 nominative +71853 nominative +nominative +71858 accusative +accusative +genitive +genitive +71864 dative +71867 accusative +accusative +71870 dative +dative +genitive +accusative +71875 accusative +71878 accusative +71881 accusative +accusative +accusative +accusative +nominative +71887 accusative +71889 accusative +71891 dative +71893 nominative +71895 nominative +nominative +nominative +genitive +71901 dative +71903 accusative +71906 nominative +nominative +nominative +nominative +71911 accusative +71915 accusative +71917 dative +71920 genitive +genitive +genitive +genitive +71927 nominative +71929 dative +71931 nominative +71934 dative +dative +71938 accusative +accusative +accusative +71942 dative +nominative +nominative +71947 dative +dative +71950 accusative +accusative +accusative +accusative +nominative +nominative +71957 nominative +71959 accusative +accusative +71962 nominative +accusative +71967 accusative +accusative +nominative +71972 dative +dative +nominative +nominative +accusative +accusative +71979 accusative +71983 nominative +nominative +71986 genitive +genitive +genitive +genitive +71991 dative +71994 genitive +71996 genitive +71998 genitive +dative +nominative +accusative +accusative +72005 accusative +dative +72009 nominative +72011 genitive +nominative +nominative +72015 nominative +nominative +nominative +72019 accusative +72023 accusative +accusative +nominative +accusative +accusative +accusative +72031 nominative +genitive +72034 genitive +72036 nominative +nominative +nominative +nominative +72042 accusative +accusative +72046 nominative +nominative +72049 genitive +72051 accusative +accusative +genitive +genitive +genitive +genitive +72058 dative +72061 accusative +72063 genitive +nominative +nominative +72067 nominative +accusative +accusative +accusative +genitive +genitive +72076 accusative +dative +dative +genitive +genitive +72082 dative +dative +72086 nominative +nominative +72089 nominative +genitive +genitive +72093 genitive +72096 nominative +nominative +dative +dative +72103 accusative +72105 accusative +72107 nominative +72110 accusative +72113 dative +72115 accusative +accusative +72119 dative +dative +72123 accusative +accusative +72129 dative +accusative +accusative +accusative +72135 dative +dative +dative +72140 genitive +nominative +72143 accusative +72145 nominative +nominative +72148 genitive +dative +nominative +72153 genitive +genitive +accusative +accusative +72160 accusative +accusative +accusative +nominative +72166 genitive +72168 genitive +genitive +72172 nominative +72174 nominative +genitive +72177 accusative +72179 dative +dative +72182 dative +dative +dative +accusative +72188 nominative +72190 accusative +accusative +72193 genitive +genitive +72196 genitive +72199 accusative +accusative +accusative +72203 nominative +nominative +nominative +accusative +accusative +72209 accusative +genitive +72212 genitive +genitive +72216 accusative +accusative +accusative +genitive +dative +72222 nominative +72224 nominative +72226 dative +dative +72231 accusative +72234 nominative +genitive +genitive +accusative +72239 nominative +72242 accusative +nominative +dative +dative +genitive +72248 accusative +nominative +72251 accusative +accusative +72254 accusative +dative +dative +72259 nominative +nominative +72263 dative +dative +72266 nominative +72268 nominative +72271 genitive +genitive +72274 accusative +accusative +72277 genitive +72282 accusative +nominative +nominative +dative +dative +dative +nominative +nominative +72291 nominative +72294 genitive +nominative +dative +dative +72299 nominative +72301 genitive +genitive +72304 accusative +accusative +72308 nominative +genitive +72312 nominative +72315 dative +dative +72318 nominative +accusative +accusative +genitive +genitive +72324 accusative +nominative +72328 dative +72331 genitive +nominative +nominative +72335 genitive +genitive +72339 nominative +nominative +72342 accusative +72346 accusative +accusative +genitive +72354 dative +72356 accusative +accusative +genitive +72361 dative +72363 nominative +72369 nominative +72371 nominative +nominative +72374 genitive +genitive +72378 accusative +72381 nominative +accusative +72384 accusative +accusative +72388 accusative +accusative +accusative +accusative +accusative +accusative +72395 accusative +accusative +nominative +nominative +72400 dative +72402 nominative +72404 accusative +accusative +72409 nominative +nominative +72412 genitive +72414 nominative +nominative +72417 dative +nominative +72425 nominative +nominative +accusative +accusative +genitive +72432 accusative +72434 genitive +genitive +72437 genitive +genitive +genitive +genitive +genitive +genitive +genitive +72445 nominative +72448 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +72459 nominative +72461 nominative +72463 nominative +72465 genitive +genitive +accusative +accusative +genitive +genitive +72473 nominative +dative +nominative +72477 nominative +accusative +accusative +genitive +genitive +72483 genitive +genitive +72487 accusative +accusative +72490 nominative +72493 accusative +accusative +72496 genitive +genitive +72499 nominative +72501 accusative +72505 nominative +72510 nominative +72512 nominative +nominative +72515 genitive +72517 nominative +nominative +72520 nominative +72522 nominative +72524 accusative +72528 nominative +dative +dative +dative +72534 dative +72536 nominative +nominative +accusative +72541 genitive +genitive +72546 dative +72548 dative +dative +accusative +72552 nominative +72555 accusative +accusative +72558 genitive +genitive +72561 nominative +72563 nominative +72565 dative +dative +72568 nominative +nominative +nominative +72573 nominative +nominative +accusative +72578 nominative +nominative +accusative +accusative +72585 nominative +72587 genitive +genitive +72590 accusative +72594 nominative +dative +72597 dative +72602 accusative +72604 nominative +accusative +accusative +72608 genitive +genitive +genitive +genitive +72613 accusative +72615 accusative +72617 genitive +accusative +accusative +72621 genitive +genitive +72624 dative +dative +nominative +nominative +nominative +accusative +accusative +nominative +72633 genitive +genitive +72637 accusative +72639 nominative +nominative +72642 genitive +nominative +72646 genitive +72650 accusative +nominative +genitive +72654 genitive +72657 accusative +accusative +dative +dative +72662 nominative +nominative +72666 nominative +nominative +genitive +genitive +72674 nominative +72676 nominative +72679 accusative +nominative +accusative +accusative +nominative +accusative +accusative +accusative +accusative +72691 dative +72693 accusative +accusative +accusative +nominative +72698 nominative +72700 nominative +nominative +72703 nominative +nominative +nominative +nominative +72708 nominative +nominative +nominative +72712 nominative +genitive +genitive +genitive +nominative +72718 nominative +72720 genitive +genitive +dative +dative +72725 genitive +72727 nominative +nominative +nominative +nominative +72733 dative +accusative +accusative +72737 accusative +72739 accusative +accusative +accusative +72743 accusative +72745 nominative +72747 nominative +72749 nominative +accusative +accusative +dative +72756 nominative +nominative +72759 genitive +genitive +genitive +72764 accusative +72769 accusative +72771 nominative +72773 dative +72775 accusative +accusative +genitive +genitive +72780 dative +dative +genitive +genitive +72787 accusative +accusative +72790 nominative +accusative +accusative +accusative +72795 genitive +72797 accusative +accusative +accusative +accusative +accusative +dative +nominative +nominative +nominative +72808 dative +dative +dative +dative +dative +dative +nominative +nominative +accusative +72818 accusative +72821 accusative +accusative +genitive +genitive +72827 dative +nominative +nominative +nominative +72834 nominative +nominative +genitive +nominative +72839 accusative +accusative +72842 genitive +genitive +72845 nominative +nominative +72848 nominative +nominative +genitive +genitive +nominative +72854 accusative +72857 nominative +genitive +genitive +72861 genitive +genitive +vocative +genitive +vocative +genitive +genitive +72870 nominative +accusative +accusative +genitive +genitive +accusative +accusative +72880 nominative +genitive +72883 accusative +72886 nominative +72888 nominative +accusative +accusative +72892 genitive +72897 accusative +nominative +72900 nominative +72902 nominative +72904 accusative +72906 nominative +nominative +nominative +accusative +accusative +72912 nominative +72914 dative +dative +genitive +genitive +72919 nominative +72921 genitive +genitive +nominative +72925 accusative +72928 accusative +genitive +genitive +72932 nominative +nominative +72935 genitive +72938 accusative +72940 nominative +nominative +72943 genitive +genitive +72947 accusative +accusative +accusative +72951 nominative +72953 accusative +accusative +dative +dative +genitive +genitive +72962 accusative +accusative +genitive +genitive +72967 genitive +genitive +72970 nominative +nominative +72973 accusative +nominative +vocative +vocative +72980 dative +nominative +nominative +genitive +72985 accusative +accusative +72989 nominative +nominative +72992 nominative +dative +dative +72996 vocative +vocative +72999 nominative +nominative +accusative +accusative +73004 nominative +nominative +genitive +genitive +genitive +genitive +73011 accusative +accusative +genitive +73015 accusative +accusative +73019 dative +dative +73022 dative +genitive +73026 genitive +genitive +73029 accusative +73031 genitive +73034 accusative +accusative +73037 accusative +73039 dative +dative +73042 nominative +accusative +73046 dative +genitive +73049 accusative +accusative +genitive +73053 dative +dative +73059 accusative +73061 accusative +73063 genitive +genitive +73067 accusative +73070 dative +nominative +nominative +accusative +accusative +accusative +genitive +accusative +73079 genitive +genitive +accusative +73084 nominative +accusative +73087 accusative +accusative +dative +73091 accusative +dative +73095 nominative +73097 accusative +accusative +genitive +genitive +accusative +73103 accusative +accusative +genitive +nominative +73108 accusative +accusative +accusative +genitive +nominative +nominative +73115 genitive +genitive +genitive +73119 accusative +73121 dative +dative +accusative +accusative +genitive +genitive +73128 genitive +genitive +genitive +genitive +accusative +genitive +dative +dative +dative +genitive +73141 nominative +accusative +accusative +73145 accusative +accusative +73151 nominative +73156 accusative +genitive +73160 nominative +accusative +accusative +genitive +genitive +73166 vocative +vocative +vocative +genitive +genitive +73172 nominative +73174 dative +nominative +accusative +accusative +dative +nominative +nominative +genitive +genitive +genitive +73186 nominative +nominative +73189 dative +73191 nominative +nominative +genitive +accusative +nominative +73197 accusative +accusative +genitive +genitive +accusative +73203 accusative +accusative +accusative +nominative +73209 accusative +accusative +genitive +nominative +73214 accusative +73216 accusative +73220 accusative +accusative +73223 genitive +accusative +nominative +73227 genitive +genitive +73231 accusative +73233 nominative +nominative +73236 accusative +73238 genitive +nominative +73242 accusative +accusative +dative +dative +dative +73248 genitive +genitive +73251 accusative +nominative +73255 nominative +genitive +73258 accusative +accusative +73261 nominative +accusative +73264 accusative +73266 accusative +accusative +accusative +accusative +73271 accusative +nominative +nominative +73275 dative +dative +genitive +nominative +accusative +73283 dative +dative +dative +dative +73288 nominative +genitive +73291 nominative +nominative +73295 accusative +73299 accusative +73301 genitive +73303 accusative +73306 accusative +73311 dative +accusative +accusative +genitive +accusative +accusative +73320 dative +73324 accusative +accusative +genitive +73328 accusative +73331 nominative +dative +dative +nominative +dative +genitive +genitive +dative +73343 accusative +accusative +genitive +73348 accusative +73350 accusative +nominative +nominative +73356 accusative +73358 nominative +73360 dative +vocative +vocative +73365 genitive +dative +nominative +genitive +73372 genitive +genitive +73377 dative +genitive +73381 dative +nominative +nominative +nominative +73390 nominative +nominative +73393 dative +dative +73396 nominative +nominative +73403 accusative +73405 nominative +73407 dative +dative +genitive +accusative +accusative +73416 nominative +73418 dative +73420 genitive +genitive +73424 accusative +73426 accusative +73428 dative +accusative +accusative +accusative +73433 genitive +genitive +genitive +73437 nominative +genitive +genitive +73441 genitive +genitive +genitive +dative +dative +73447 dative +dative +nominative +nominative +dative +73453 accusative +73455 dative +dative +genitive +genitive +73460 dative +dative +dative +73464 nominative +nominative +nominative +73469 accusative +accusative +genitive +genitive +73474 nominative +nominative +nominative +accusative +accusative +73480 genitive +73483 dative +73485 genitive +dative +nominative +73489 nominative +nominative +nominative +73493 nominative +nominative +73497 nominative +dative +accusative +73501 accusative +accusative +genitive +genitive +73507 accusative +73511 accusative +accusative +genitive +genitive +genitive +73519 accusative +accusative +73524 dative +nominative +nominative +73528 accusative +73530 accusative +genitive +genitive +73534 accusative +73536 accusative +73538 genitive +genitive +genitive +73542 nominative +nominative +nominative +73548 accusative +accusative +genitive +genitive +73554 nominative +73556 nominative +73558 accusative +accusative +73562 nominative +nominative +genitive +genitive +73567 genitive +genitive +genitive +73571 nominative +nominative +73574 accusative +accusative +accusative +accusative +accusative +73580 accusative +accusative +genitive +genitive +73586 accusative +73588 accusative +accusative +73591 accusative +73594 accusative +73596 genitive +genitive +genitive +73600 nominative +nominative +accusative +accusative +genitive +genitive +73607 accusative +73610 accusative +73612 nominative +nominative +73615 genitive +73617 genitive +genitive +73622 dative +73624 accusative +accusative +73627 accusative +73629 accusative +accusative +genitive +genitive +73639 genitive +73641 genitive +accusative +accusative +73645 nominative +nominative +nominative +73651 accusative +accusative +genitive +genitive +73656 genitive +genitive +73660 accusative +accusative +73663 nominative +73665 dative +dative +dative +dative +73670 dative +dative +genitive +genitive +genitive +dative +accusative +73678 accusative +73681 genitive +genitive +genitive +73686 nominative +nominative +genitive +genitive +73692 nominative +73695 dative +dative +73698 nominative +73700 dative +dative +73705 nominative +genitive +73708 genitive +73710 genitive +73712 dative +dative +genitive +73718 accusative +nominative +73722 accusative +accusative +genitive +genitive +accusative +73728 accusative +73730 accusative +accusative +73733 nominative +73736 nominative +nominative +nominative +dative +dative +73742 dative +73744 nominative +73746 genitive +genitive +genitive +nominative +73752 nominative +73754 genitive +genitive +genitive +nominative +nominative +dative +73761 nominative +73764 accusative +genitive +73768 dative +dative +73772 accusative +accusative +genitive +nominative +73781 nominative +nominative +nominative +accusative +73786 nominative +73788 accusative +accusative +genitive +73792 nominative +nominative +nominative +nominative +dative +73799 accusative +73802 accusative +accusative +accusative +73806 accusative +accusative +accusative +73810 nominative +73812 nominative +nominative +genitive +genitive +73817 nominative +nominative +genitive +genitive +genitive +genitive +73824 genitive +genitive +accusative +73828 accusative +73830 accusative +accusative +nominative +73834 dative +dative +73839 nominative +nominative +nominative +nominative +73844 nominative +nominative +accusative +accusative +genitive +73851 accusative +accusative +nominative +73855 nominative +vocative +accusative +accusative +73861 nominative +nominative +dative +nominative +73866 nominative +accusative +73869 genitive +genitive +genitive +73874 accusative +accusative +nominative +73878 accusative +accusative +73881 accusative +accusative +73884 accusative +accusative +73887 accusative +accusative +73890 dative +nominative +73893 dative +dative +dative +73897 accusative +accusative +accusative +73901 dative +dative +genitive +73906 accusative +accusative +73909 nominative +73911 dative +accusative +nominative +73915 accusative +accusative +nominative +genitive +73920 genitive +accusative +accusative +genitive +73925 accusative +nominative +73929 accusative +accusative +genitive +73934 dative +73938 genitive +73940 genitive +nominative +73943 nominative +accusative +accusative +73947 nominative +accusative +accusative +73952 genitive +genitive +nominative +accusative +73958 genitive +genitive +genitive +accusative +nominative +73965 accusative +accusative +73968 dative +73972 dative +dative +73975 accusative +73977 nominative +accusative +accusative +accusative +73982 nominative +accusative +73986 accusative +accusative +73990 accusative +73993 accusative +nominative +accusative +accusative +genitive +genitive +nominative +74001 dative +dative +74007 genitive +genitive +accusative +74012 accusative +accusative +genitive +genitive +74017 nominative +dative +74020 accusative +accusative +nominative +74024 genitive +74026 accusative +dative +dative +74030 accusative +74033 nominative +accusative +accusative +74038 accusative +accusative +74041 nominative +74043 dative +accusative +accusative +74048 accusative +74052 accusative +74055 nominative +dative +dative +genitive +genitive +74061 accusative +accusative +accusative +74066 nominative +74068 nominative +accusative +accusative +74072 accusative +74074 nominative +nominative +74077 genitive +74081 dative +dative +accusative +genitive +74087 accusative +74089 accusative +74091 dative +dative +74094 nominative +nominative +74097 genitive +genitive +74100 accusative +accusative +74106 dative +dative +dative +genitive +74114 genitive +genitive +74117 genitive +74119 genitive +dative +dative +74123 dative +dative +74126 accusative +74129 accusative +74131 accusative +74133 accusative +accusative +74136 genitive +74138 accusative +accusative +74141 accusative +74143 accusative +74145 genitive +genitive +genitive +74150 nominative +nominative +74153 genitive +genitive +74156 accusative +74158 accusative +74160 accusative +nominative +accusative +accusative +genitive +genitive +74168 accusative +accusative +dative +dative +dative +74174 nominative +74176 accusative +74179 genitive +genitive +74182 genitive +genitive +74185 genitive +genitive +74189 accusative +nominative +nominative +74194 genitive +74197 nominative +genitive +74200 genitive +genitive +genitive +genitive +nominative +nominative +74209 accusative +74213 accusative +accusative +genitive +74218 nominative +nominative +74221 nominative +nominative +74225 genitive +genitive +genitive +74229 genitive +genitive +genitive +nominative +nominative +74236 accusative +vocative +vocative +nominative +74243 genitive +genitive +74246 dative +74248 nominative +nominative +74251 genitive +genitive +genitive +74255 accusative +accusative +accusative +accusative +genitive +genitive +74264 nominative +nominative +nominative +74268 dative +nominative +accusative +accusative +accusative +accusative +74276 dative +74278 accusative +74282 genitive +74284 genitive +dative +dative +nominative +accusative +accusative +genitive +74293 accusative +74295 accusative +accusative +74298 accusative +74300 accusative +accusative +genitive +genitive +accusative +74307 nominative +nominative +genitive +74311 nominative +74316 genitive +genitive +genitive +genitive +genitive +74323 accusative +accusative +nominative +74328 nominative +nominative +nominative +74333 genitive +74335 genitive +genitive +accusative +74339 accusative +accusative +74342 nominative +nominative +74345 dative +dative +74348 genitive +74351 accusative +74353 accusative +74355 nominative +nominative +vocative +vocative +74360 genitive +nominative +74364 accusative +nominative +nominative +74370 genitive +accusative +dative +dative +genitive +74376 dative +74378 nominative +nominative +genitive +genitive +74385 accusative +74389 accusative +accusative +genitive +accusative +accusative +74395 accusative +accusative +genitive +74401 accusative +74405 nominative +nominative +genitive +genitive +accusative +accusative +74412 nominative +nominative +nominative +74416 accusative +74418 nominative +nominative +genitive +74422 accusative +74424 nominative +nominative +accusative +accusative +74429 genitive +74431 nominative +74435 dative +74437 genitive +genitive +dative +74441 accusative +accusative +74445 dative +genitive +74448 genitive +genitive +genitive +genitive +74453 genitive +genitive +74456 genitive +74458 genitive +genitive +74461 nominative +74463 genitive +genitive +74466 accusative +accusative +accusative +accusative +74472 dative +dative +74475 accusative +accusative +nominative +74480 dative +dative +74483 dative +dative +74486 dative +dative +dative +accusative +accusative +74492 genitive +74495 accusative +74497 dative +dative +74500 dative +accusative +accusative +accusative +accusative +74506 accusative +accusative +accusative +74510 dative +dative +nominative +74514 genitive +genitive +nominative +nominative +74519 nominative +nominative +nominative +dative +74524 accusative +accusative +74527 accusative +74529 accusative +dative +dative +74533 genitive +74538 nominative +74540 genitive +74542 accusative +dative +nominative +accusative +accusative +genitive +dative +74552 dative +dative +74555 accusative +accusative +74559 accusative +74561 dative +dative +genitive +dative +74566 dative +dative +dative +accusative +accusative +genitive +74573 genitive +genitive +genitive +genitive +genitive +genitive +genitive +74582 accusative +74584 accusative +74586 accusative +74588 genitive +accusative +accusative +accusative +74594 dative +dative +dative +dative +74599 dative +accusative +accusative +accusative +74604 dative +74606 genitive +genitive +74610 genitive +74612 genitive +74614 genitive +74616 genitive +74618 genitive +nominative +accusative +74626 nominative +nominative +74630 accusative +74632 nominative +accusative +accusative +74636 accusative +accusative +74639 nominative +74642 dative +dative +74645 nominative +74647 nominative +74649 nominative +nominative +nominative +74653 genitive +genitive +74656 accusative +accusative +74661 nominative +accusative +74665 genitive +74667 genitive +genitive +74670 accusative +accusative +accusative +74674 nominative +74676 nominative +74679 dative +nominative +74682 nominative +74685 genitive +genitive +accusative +accusative +genitive +genitive +74693 accusative +accusative +74697 accusative +nominative +74700 nominative +74702 accusative +accusative +74705 accusative +accusative +74708 dative +74710 accusative +accusative +genitive +genitive +74717 nominative +74721 accusative +accusative +accusative +accusative +accusative +74727 nominative +74729 accusative +accusative +74732 genitive +74734 genitive +74737 accusative +dative +74740 accusative +accusative +74744 accusative +74747 nominative +74750 accusative +74752 genitive +74754 accusative +accusative +accusative +accusative +accusative +74761 accusative +74763 nominative +nominative +accusative +74767 nominative +dative +dative +genitive +genitive +74773 genitive +genitive +74777 accusative +accusative +74780 accusative +nominative +accusative +accusative +74788 accusative +74791 accusative +74796 nominative +nominative +dative +nominative +nominative +genitive +genitive +genitive +74805 genitive +genitive +nominative +74810 genitive +74812 dative +74814 dative +genitive +74817 nominative +nominative +accusative +74821 dative +74824 nominative +74826 accusative +74828 accusative +accusative +accusative +accusative +74833 dative +dative +dative +74838 nominative +74840 nominative +nominative +nominative +genitive +74848 accusative +accusative +74851 dative +74853 accusative +accusative +accusative +accusative +74858 genitive +genitive +74861 genitive +genitive +74864 dative +74867 nominative +nominative +74870 dative +dative +74874 dative +dative +74877 accusative +74880 accusative +accusative +74883 accusative +accusative +nominative +74887 genitive +genitive +genitive +74891 accusative +accusative +74894 dative +dative +74897 nominative +74899 accusative +accusative +74903 accusative +accusative +74909 accusative +nominative +nominative +genitive +74914 nominative +accusative +accusative +74919 accusative +74921 nominative +74923 genitive +dative +dative +74927 nominative +nominative +nominative +74931 nominative +74933 nominative +accusative +74936 nominative +nominative +74939 accusative +74941 dative +74944 accusative +accusative +74951 accusative +nominative +74955 nominative +nominative +accusative +74959 accusative +74961 nominative +74963 genitive +74966 accusative +74968 dative +dative +74971 accusative +accusative +74975 accusative +nominative +74978 nominative +genitive +genitive +genitive +nominative +nominative +74986 nominative +74988 dative +dative +dative +accusative +accusative +74994 dative +dative +genitive +genitive +75000 genitive +genitive +75003 accusative +75005 accusative +75009 nominative +75011 dative +dative +dative +75015 nominative +nominative +dative +nominative +nominative +genitive +genitive +nominative +accusative +accusative +75026 genitive +accusative +accusative +nominative +nominative +75033 dative +dative +75036 genitive +75041 nominative +nominative +genitive +75045 nominative +75048 accusative +accusative +dative +dative +75053 nominative +75055 accusative +accusative +genitive +75061 accusative +75064 genitive +genitive +75067 accusative +accusative +accusative +accusative +accusative +accusative +accusative +75075 dative +nominative +accusative +accusative +75080 dative +dative +genitive +nominative +nominative +nominative +dative +dative +75089 dative +75091 nominative +nominative +nominative +nominative +nominative +genitive +genitive +genitive +genitive +75101 nominative +75103 dative +accusative +genitive +75107 accusative +75110 accusative +accusative +75113 nominative +nominative +75116 nominative +dative +dative +75121 dative +75123 dative +genitive +genitive +75128 genitive +75131 dative +dative +dative +75135 nominative +nominative +genitive +nominative +75141 nominative +nominative +genitive +genitive +genitive +nominative +accusative +accusative +75150 accusative +accusative +75154 accusative +accusative +75157 accusative +accusative +75160 nominative +accusative +dative +dative +75165 nominative +nominative +nominative +75169 genitive +accusative +accusative +nominative +nominative +75176 accusative +accusative +75183 dative +dative +dative +75188 nominative +nominative +75191 genitive +75193 nominative +nominative +nominative +genitive +accusative +accusative +75202 nominative +dative +accusative +accusative +75208 accusative +nominative +dative +dative +75214 accusative +nominative +accusative +accusative +nominative +75220 accusative +75222 accusative +accusative +accusative +75226 accusative +accusative +genitive +75231 accusative +accusative +75235 accusative +accusative +nominative +75239 nominative +nominative +75242 accusative +accusative +75246 genitive +nominative +nominative +75251 nominative +nominative +75256 accusative +accusative +genitive +genitive +75263 nominative +nominative +nominative +75267 genitive +nominative +nominative +75272 nominative +nominative +nominative +nominative +75277 nominative +accusative +accusative +accusative +genitive +genitive +nominative +accusative +accusative +75287 accusative +75289 nominative +75291 accusative +accusative +75295 nominative +dative +dative +nominative +accusative +accusative +75302 dative +75304 nominative +75308 nominative +accusative +75312 nominative +nominative +75315 dative +dative +75318 dative +75320 nominative +accusative +75324 vocative +accusative +accusative +75332 nominative +75336 accusative +accusative +accusative +75341 nominative +75343 nominative +nominative +genitive +75348 dative +accusative +accusative +genitive +genitive +75354 dative +dative +75357 dative +dative +genitive +75361 nominative +accusative +75364 dative +dative +dative +genitive +genitive +75371 genitive +genitive +75375 nominative +75377 nominative +genitive +nominative +75382 nominative +accusative +75385 accusative +accusative +75388 accusative +75392 nominative +dative +dative +75396 genitive +genitive +75399 nominative +nominative +accusative +accusative +nominative +75405 accusative +accusative +accusative +75410 nominative +nominative +accusative +accusative +accusative +75416 accusative +accusative +75420 nominative +nominative +75426 nominative +75429 dative +75431 nominative +nominative +75435 accusative +nominative +accusative +dative +accusative +accusative +accusative +accusative +75445 accusative +75449 accusative +75454 nominative +nominative +accusative +75460 dative +dative +nominative +nominative +accusative +accusative +accusative +75469 nominative +75471 nominative +75474 nominative +75476 accusative +75478 nominative +75482 genitive +genitive +75485 nominative +75487 genitive +genitive +75491 accusative +accusative +75494 nominative +75496 accusative +accusative +75501 nominative +accusative +accusative +75505 accusative +accusative +75509 accusative +75512 nominative +genitive +genitive +75517 accusative +accusative +dative +dative +75523 accusative +75526 accusative +accusative +75529 dative +75531 genitive +genitive +nominative +75535 nominative +75538 accusative +accusative +75544 genitive +75547 nominative +75549 nominative +nominative +nominative +nominative +accusative +nominative +75556 dative +75558 nominative +75560 genitive +75564 dative +dative +75567 dative +dative +75570 genitive +genitive +genitive +nominative +nominative +75576 genitive +genitive +genitive +75580 nominative +75582 nominative +nominative +nominative +75586 nominative +genitive +genitive +accusative +accusative +accusative +75593 nominative +75595 accusative +accusative +75598 nominative +dative +dative +genitive +75603 accusative +75606 accusative +accusative +75610 nominative +accusative +75613 accusative +75615 accusative +accusative +75618 accusative +accusative +nominative +75622 nominative +accusative +accusative +nominative +nominative +75630 accusative +75632 nominative +75634 nominative +nominative +75637 genitive +genitive +genitive +75641 accusative +accusative +75644 accusative +nominative +75648 accusative +accusative +75651 accusative +accusative +accusative +accusative +75656 nominative +accusative +accusative +75660 genitive +genitive +75663 genitive +genitive +75666 accusative +75668 nominative +nominative +75672 genitive +75675 accusative +accusative +75678 accusative +accusative +75681 accusative +nominative +nominative +75685 accusative +accusative +genitive +genitive +75691 nominative +75693 nominative +genitive +75696 dative +nominative +75699 accusative +accusative +75702 genitive +genitive +accusative +75706 accusative +nominative +accusative +accusative +75712 nominative +75716 nominative +75718 genitive +75721 genitive +genitive +genitive +genitive +genitive +75727 genitive +75729 nominative +75733 nominative +75735 genitive +genitive +nominative +75741 dative +dative +75745 genitive +genitive +nominative +nominative +genitive +genitive +75753 nominative +75755 nominative +accusative +accusative +75761 accusative +accusative +75764 nominative +nominative +75769 accusative +accusative +75774 nominative +nominative +75777 nominative +nominative +75781 nominative +nominative +accusative +accusative +75787 genitive +75789 nominative +accusative +75792 accusative +accusative +75795 accusative +accusative +75799 accusative +75802 accusative +75806 dative +dative +genitive +accusative +genitive +genitive +75813 nominative +nominative +genitive +75817 dative +genitive +accusative +accusative +accusative +accusative +75827 dative +dative +dative +dative +75832 dative +dative +75836 dative +dative +75839 accusative +accusative +75842 accusative +accusative +75845 nominative +75847 genitive +genitive +75850 genitive +genitive +75853 dative +75855 nominative +75859 nominative +nominative +nominative +accusative +75865 nominative +75867 genitive +genitive +nominative +75872 accusative +accusative +75875 accusative +accusative +75879 nominative +genitive +75882 accusative +accusative +accusative +75886 nominative +75889 nominative +nominative +nominative +nominative +nominative +75895 genitive +nominative +nominative +75899 accusative +accusative +75903 accusative +accusative +genitive +75909 nominative +75912 nominative +75914 nominative +nominative +75917 nominative +nominative +nominative +75921 accusative +accusative +75926 accusative +75929 accusative +accusative +75932 nominative +nominative +75935 dative +genitive +genitive +genitive +75940 vocative +vocative +75943 accusative +75945 accusative +accusative +75949 nominative +75951 nominative +accusative +accusative +genitive +75957 accusative +75959 dative +75961 dative +dative +75964 accusative +nominative +75967 accusative +nominative +75970 dative +nominative +nominative +nominative +nominative +accusative +accusative +75978 accusative +accusative +75981 dative +nominative +genitive +75985 genitive +nominative +nominative +75990 dative +dative +75995 genitive +genitive +75998 nominative +genitive +nominative +nominative +dative +accusative +76005 accusative +76007 accusative +accusative +76012 genitive +accusative +accusative +genitive +76018 genitive +genitive +genitive +genitive +nominative +accusative +accusative +76026 accusative +accusative +genitive +genitive +genitive +76032 accusative +accusative +76038 accusative +76044 accusative +76046 genitive +genitive +genitive +accusative +76052 dative +76060 nominative +genitive +76063 accusative +genitive +76067 genitive +76069 nominative +76072 nominative +nominative +genitive +genitive +76079 dative +76081 dative +76083 dative +dative +genitive +76087 genitive +genitive +accusative +accusative +76092 accusative +76095 accusative +accusative +genitive +genitive +nominative +nominative +nominative +accusative +76105 dative +dative +accusative +76112 accusative +76114 dative +76117 accusative +accusative +76120 dative +76122 dative +dative +76125 accusative +nominative +dative +nominative +accusative +76131 genitive +76133 nominative +accusative +genitive +76137 nominative +76140 nominative +76143 genitive +76145 genitive +76149 nominative +nominative +76153 genitive +genitive +76156 nominative +nominative +nominative +dative +76162 dative +76164 nominative +nominative +nominative +76168 nominative +dative +nominative +76172 nominative +76174 dative +76176 accusative +nominative +76179 genitive +genitive +76183 accusative +76185 nominative +accusative +accusative +dative +accusative +accusative +dative +dative +76194 accusative +76196 genitive +genitive +76199 accusative +accusative +genitive +76203 accusative +76205 accusative +76207 accusative +accusative +accusative +76211 genitive +genitive +76214 dative +76217 accusative +accusative +76222 dative +76227 nominative +dative +dative +76233 dative +dative +76236 accusative +accusative +76240 accusative +76242 accusative +76247 genitive +genitive +76250 nominative +nominative +76253 nominative +nominative +76256 dative +dative +nominative +nominative +nominative +dative +dative +76264 accusative +accusative +accusative +76268 genitive +genitive +76271 genitive +nominative +accusative +accusative +76277 accusative +nominative +nominative +genitive +76282 accusative +accusative +genitive +nominative +nominative +76288 genitive +76291 accusative +accusative +76295 nominative +76299 accusative +genitive +dative +genitive +genitive +genitive +accusative +accusative +genitive +nominative +nominative +76311 nominative +dative +dative +76315 nominative +nominative +nominative +76319 dative +dative +76322 dative +dative +dative +genitive +76327 nominative +genitive +genitive +nominative +76336 nominative +nominative +76339 dative +76341 genitive +dative +dative +76352 nominative +76355 genitive +76357 nominative +76359 dative +genitive +76362 accusative +76364 nominative +nominative +76367 dative +76369 dative +dative +dative +76374 accusative +76376 accusative +76378 nominative +76380 dative +accusative +accusative +genitive +genitive +76386 genitive +genitive +genitive +genitive +genitive +76393 nominative +nominative +dative +dative +76399 accusative +76401 accusative +accusative +nominative +76406 accusative +accusative +76409 nominative +accusative +accusative +76413 accusative +accusative +76416 genitive +genitive +genitive +76420 accusative +accusative +76423 nominative +nominative +76426 accusative +accusative +76431 nominative +nominative +76434 nominative +nominative +76437 vocative +76440 accusative +76442 genitive +76446 nominative +76448 genitive +76450 genitive +76452 genitive +genitive +76455 accusative +76457 nominative +76460 nominative +nominative +genitive +76466 accusative +76468 genitive +genitive +76471 nominative +nominative +accusative +accusative +accusative +76478 genitive +genitive +76481 nominative +genitive +dative +dative +76487 nominative +nominative +76490 nominative +accusative +accusative +dative +dative +nominative +76498 accusative +accusative +76502 dative +nominative +76505 nominative +nominative +76508 dative +accusative +accusative +76513 accusative +76517 accusative +accusative +76522 nominative +nominative +76525 accusative +accusative +76528 dative +dative +76531 genitive +genitive +76534 accusative +accusative +76540 nominative +76542 nominative +76546 accusative +genitive +genitive +genitive +76552 genitive +genitive +76555 nominative +76557 accusative +nominative +76560 nominative +accusative +accusative +76565 accusative +76567 nominative +accusative +accusative +76571 nominative +76573 accusative +accusative +accusative +76577 accusative +nominative +accusative +accusative +accusative +76583 nominative +nominative +nominative +dative +nominative +dative +dative +nominative +nominative +nominative +nominative +76595 dative +dative +76599 accusative +nominative +76602 nominative +accusative +accusative +genitive +genitive +76608 nominative +dative +dative +76615 accusative +76617 genitive +genitive +nominative +accusative +accusative +accusative +genitive +76625 nominative +76629 dative +dative +76632 nominative +genitive +nominative +76636 nominative +76638 accusative +76640 accusative +dative +76643 accusative +accusative +genitive +genitive +76648 genitive +genitive +76652 accusative +accusative +nominative +nominative +nominative +76658 dative +dative +76661 accusative +nominative +nominative +76665 accusative +dative +dative +76669 genitive +genitive +76673 dative +dative +76676 dative +nominative +76679 genitive +genitive +76682 accusative +accusative +accusative +76688 dative +accusative +accusative +76693 dative +accusative +accusative +accusative +accusative +accusative +76701 accusative +76704 accusative +accusative +76709 accusative +76711 accusative +accusative +76714 nominative +76716 nominative +76718 accusative +76723 nominative +nominative +76730 accusative +76733 nominative +76736 accusative +genitive +accusative +76741 nominative +nominative +76744 accusative +genitive +dative +dative +nominative +76752 accusative +accusative +76755 accusative +nominative +76759 accusative +accusative +76762 nominative +76765 accusative +accusative +genitive +genitive +genitive +76771 genitive +dative +genitive +genitive +accusative +76777 nominative +nominative +nominative +nominative +76782 accusative +76785 dative +76790 nominative +nominative +nominative +76796 nominative +76798 accusative +accusative +76802 accusative +accusative +nominative +76806 nominative +76808 genitive +genitive +genitive +genitive +76814 nominative +76818 nominative +accusative +accusative +76822 genitive +genitive +nominative +76826 genitive +76828 accusative +accusative +76831 accusative +nominative +76834 dative +dative +genitive +76838 nominative +76841 accusative +76844 accusative +accusative +accusative +accusative +accusative +76850 accusative +accusative +genitive +genitive +76855 accusative +76857 accusative +76859 accusative +76861 accusative +accusative +nominative +nominative +76867 genitive +genitive +genitive +76873 accusative +accusative +76877 genitive +genitive +genitive +accusative +76882 accusative +76886 genitive +accusative +accusative +76890 accusative +accusative +accusative +accusative +76897 nominative +76899 genitive +genitive +genitive +genitive +76905 accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +genitive +genitive +genitive +nominative +76918 accusative +accusative +accusative +accusative +nominative +76925 genitive +genitive +genitive +genitive +76930 nominative +accusative +76933 nominative +76935 nominative +nominative +nominative +nominative +nominative +76941 dative +accusative +accusative +76946 accusative +accusative +76950 nominative +nominative +76954 nominative +76956 accusative +nominative +nominative +76960 dative +76962 nominative +nominative +nominative +nominative +nominative +genitive +76970 genitive +76972 accusative +76974 accusative +76977 genitive +genitive +genitive +76981 nominative +76983 nominative +dative +76986 dative +76988 dative +dative +dative +accusative +accusative +76995 nominative +76997 accusative +accusative +77001 nominative +nominative +genitive +genitive +genitive +77007 nominative +genitive +genitive +77011 nominative +77013 nominative +accusative +accusative +genitive +77018 nominative +genitive +accusative +accusative +genitive +nominative +accusative +accusative +77028 genitive +77031 accusative +accusative +genitive +77036 genitive +accusative +77041 accusative +genitive +genitive +nominative +nominative +77052 nominative +77054 nominative +nominative +77057 dative +dative +nominative +accusative +accusative +77063 accusative +77066 accusative +nominative +77070 accusative +77072 accusative +77075 accusative +77077 accusative +77080 nominative +77082 accusative +accusative +77085 genitive +genitive +dative +accusative +77090 accusative +nominative +77093 accusative +77095 accusative +accusative +77100 accusative +accusative +accusative +nominative +77105 nominative +77107 genitive +genitive +77110 nominative +nominative +dative +nominative +nominative +accusative +accusative +genitive +77119 dative +dative +77122 accusative +accusative +accusative +77126 accusative +77128 accusative +accusative +accusative +nominative +77133 vocative +77137 genitive +genitive +genitive +nominative +nominative +dative +77150 accusative +genitive +77154 genitive +genitive +genitive +nominative +nominative +nominative +nominative +77162 accusative +accusative +nominative +77168 nominative +nominative +77171 genitive +nominative +77175 accusative +nominative +77178 dative +accusative +accusative +77182 accusative +77186 accusative +genitive +genitive +genitive +genitive +accusative +77193 accusative +77199 genitive +genitive +genitive +accusative +nominative +nominative +nominative +77207 nominative +nominative +77211 nominative +77213 nominative +nominative +genitive +77217 nominative +nominative +nominative +nominative +genitive +77224 nominative +nominative +genitive +genitive +77232 accusative +accusative +nominative +accusative +77237 accusative +accusative +accusative +genitive +77242 genitive +genitive +77246 accusative +accusative +77250 accusative +nominative +nominative +77254 nominative +77256 genitive +genitive +nominative +dative +nominative +nominative +77263 accusative +77267 accusative +77269 accusative +accusative +77273 nominative +accusative +accusative +77278 nominative +nominative +77281 nominative +77283 nominative +nominative +77287 genitive +77292 genitive +genitive +77295 accusative +genitive +accusative +genitive +genitive +77301 nominative +nominative +nominative +accusative +accusative +77308 dative +dative +77311 nominative +77313 nominative +77315 nominative +nominative +77319 genitive +77322 accusative +77324 nominative +nominative +nominative +nominative +genitive +77330 nominative +nominative +nominative +accusative +accusative +77336 vocative +nominative +77339 nominative +genitive +77342 nominative +77345 accusative +genitive +accusative +accusative +accusative +genitive +genitive +genitive +77354 genitive +genitive +77357 genitive +genitive +genitive +nominative +77362 accusative +accusative +77366 accusative +accusative +77371 accusative +accusative +accusative +77375 accusative +77377 accusative +accusative +accusative +genitive +77384 nominative +77386 nominative +77388 dative +nominative +77392 accusative +accusative +nominative +77397 nominative +77400 dative +77403 accusative +77407 dative +dative +dative +77415 genitive +77417 genitive +77419 genitive +genitive +genitive +77423 genitive +77427 accusative +77429 genitive +genitive +genitive +77433 accusative +nominative +77436 accusative +accusative +77440 accusative +77442 accusative +accusative +nominative +nominative +nominative +accusative +accusative +77450 nominative +nominative +77455 accusative +77457 nominative +accusative +accusative +accusative +77462 nominative +accusative +dative +dative +77468 accusative +accusative +77471 nominative +accusative +accusative +genitive +genitive +dative +77478 genitive +genitive +dative +77483 accusative +accusative +77486 genitive +genitive +77490 genitive +77493 dative +nominative +genitive +nominative +77498 genitive +nominative +77501 nominative +77503 nominative +nominative +77506 nominative +77508 nominative +nominative +77511 nominative +77513 nominative +nominative +77516 accusative +77518 dative +77520 nominative +77523 accusative +accusative +genitive +genitive +77528 genitive +77532 accusative +77534 accusative +accusative +77537 genitive +77541 accusative +77545 dative +dative +genitive +genitive +genitive +genitive +77552 accusative +nominative +nominative +77556 dative +nominative +77559 dative +77563 accusative +accusative +77566 genitive +77569 nominative +nominative +77572 dative +dative +77576 nominative +77578 nominative +nominative +dative +nominative +nominative +77584 genitive +genitive +nominative +dative +dative +genitive +genitive +genitive +77593 accusative +nominative +77596 genitive +genitive +77600 genitive +genitive +77605 nominative +77607 nominative +nominative +nominative +77611 dative +77613 nominative +77618 nominative +nominative +genitive +77622 dative +77625 nominative +77627 nominative +accusative +accusative +77631 nominative +77634 accusative +nominative +77637 genitive +77642 accusative +accusative +accusative +77650 nominative +nominative +77653 accusative +accusative +77657 accusative +accusative +77660 nominative +77662 accusative +accusative +77666 nominative +77668 nominative +nominative +77674 dative +77676 accusative +accusative +nominative +accusative +77682 accusative +77684 nominative +dative +dative +77689 genitive +77691 dative +dative +77695 accusative +77697 dative +dative +77701 accusative +77704 nominative +nominative +77707 accusative +accusative +77712 dative +77715 dative +dative +77720 nominative +77722 dative +accusative +accusative +genitive +genitive +77729 accusative +77732 genitive +genitive +nominative +77736 accusative +77738 accusative +accusative +genitive +genitive +77746 accusative +77748 dative +nominative +77752 genitive +genitive +77755 genitive +77758 accusative +accusative +77762 genitive +accusative +accusative +accusative +77767 nominative +dative +dative +77771 genitive +genitive +77774 genitive +77776 genitive +genitive +genitive +dative +77781 dative +dative +genitive +genitive +77787 accusative +genitive +genitive +genitive +77793 dative +77796 accusative +dative +77800 accusative +nominative +77803 dative +77805 dative +accusative +77808 accusative +accusative +77811 accusative +77813 accusative +accusative +genitive +accusative +77820 nominative +dative +dative +nominative +77826 accusative +accusative +77829 dative +accusative +dative +77833 nominative +77836 nominative +nominative +nominative +nominative +77841 accusative +77843 dative +nominative +77846 nominative +77848 nominative +accusative +77852 genitive +genitive +77855 accusative +accusative +accusative +dative +77861 accusative +accusative +genitive +77865 accusative +accusative +accusative +77870 genitive +genitive +genitive +77874 accusative +accusative +genitive +genitive +genitive +genitive +77883 nominative +77888 accusative +accusative +genitive +nominative +nominative +77894 dative +77896 nominative +accusative +accusative +77901 dative +77903 dative +77905 dative +77907 nominative +77910 genitive +genitive +genitive +77916 genitive +77919 accusative +accusative +accusative +genitive +genitive +dative +77926 dative +77928 dative +dative +dative +77932 dative +accusative +nominative +nominative +nominative +nominative +77939 accusative +77941 accusative +accusative +genitive +genitive +accusative +77948 genitive +genitive +genitive +genitive +nominative +77957 accusative +accusative +genitive +nominative +nominative +77963 accusative +77965 nominative +genitive +genitive +77970 genitive +genitive +77973 nominative +nominative +accusative +genitive +77978 accusative +accusative +77981 genitive +77984 nominative +77986 accusative +accusative +77989 accusative +77993 genitive +nominative +accusative +accusative +77998 accusative +78001 accusative +dative +dative +78005 dative +dative +genitive +genitive +genitive +dative +dative +78015 accusative +accusative +78018 dative +dative +dative +genitive +78023 genitive +78025 genitive +genitive +78028 nominative +78031 dative +dative +genitive +78035 dative +dative +78038 genitive +78040 nominative +nominative +nominative +accusative +78045 dative +78048 accusative +78051 genitive +genitive +78055 genitive +genitive +genitive +genitive +genitive +78061 nominative +78063 nominative +78070 accusative +nominative +nominative +accusative +accusative +genitive +78077 dative +dative +78081 nominative +78083 nominative +genitive +78086 nominative +78088 accusative +accusative +genitive +genitive +78093 accusative +nominative +78097 dative +dative +dative +78104 accusative +accusative +genitive +78110 accusative +78112 accusative +accusative +78118 accusative +accusative +78121 genitive +nominative +78125 accusative +accusative +78128 dative +78131 accusative +accusative +78135 accusative +78137 nominative +accusative +accusative +78141 accusative +nominative +78145 nominative +accusative +accusative +78149 nominative +accusative +accusative +78154 accusative +78158 accusative +78161 nominative +nominative +78164 nominative +accusative +accusative +78168 nominative +accusative +accusative +78173 accusative +78175 nominative +dative +dative +78180 genitive +genitive +78185 accusative +78190 accusative +accusative +accusative +nominative +78195 genitive +accusative +genitive +78199 dative +78201 dative +78204 genitive +genitive +78207 nominative +accusative +accusative +78211 accusative +accusative +nominative +78215 accusative +78219 accusative +accusative +78222 nominative +78225 accusative +accusative +78228 nominative +accusative +accusative +nominative +78233 genitive +78236 accusative +78238 nominative +accusative +accusative +78242 accusative +accusative +78245 dative +78247 dative +78249 nominative +78252 accusative +78254 nominative +78256 accusative +accusative +genitive +genitive +genitive +genitive +78263 genitive +78267 dative +78269 dative +78271 nominative +nominative +nominative +nominative +78276 genitive +accusative +accusative +78280 nominative +78282 genitive +genitive +nominative +dative +nominative +78288 nominative +78290 accusative +78292 nominative +accusative +accusative +genitive +genitive +nominative +genitive +accusative +accusative +78302 accusative +accusative +78305 accusative +78307 nominative +nominative +nominative +nominative +accusative +accusative +genitive +78315 nominative +nominative +nominative +78321 dative +nominative +nominative +78327 accusative +genitive +78332 accusative +78335 nominative +78337 nominative +nominative +genitive +78342 accusative +78344 accusative +78347 nominative +nominative +accusative +78351 nominative +78353 nominative +genitive +accusative +accusative +78358 nominative +78360 accusative +78366 accusative +78370 genitive +genitive +genitive +genitive +genitive +78377 genitive +genitive +78380 nominative +genitive +genitive +nominative +nominative +78388 accusative +accusative +accusative +nominative +78394 accusative +78398 genitive +genitive +78401 genitive +78403 dative +nominative +78406 dative +78408 dative +dative +dative +dative +dative +78414 genitive +genitive +78417 accusative +78420 accusative +nominative +nominative +78424 dative +dative +78427 nominative +nominative +78430 dative +78432 accusative +78435 nominative +nominative +nominative +78439 nominative +accusative +78443 accusative +accusative +genitive +78447 nominative +nominative +78450 dative +dative +78453 genitive +genitive +genitive +78457 nominative +nominative +78460 accusative +accusative +78464 dative +78466 vocative +nominative +nominative +genitive +genitive +78473 dative +dative +78476 nominative +nominative +genitive +genitive +78484 genitive +78487 accusative +78489 genitive +accusative +78492 accusative +accusative +accusative +accusative +nominative +78499 accusative +accusative +accusative +78503 dative +dative +78507 nominative +78514 accusative +78516 accusative +dative +78520 dative +nominative +nominative +accusative +nominative +78526 genitive +accusative +nominative +78531 dative +78535 dative +78538 accusative +accusative +78542 nominative +78544 genitive +78547 genitive +nominative +78553 nominative +nominative +accusative +accusative +78559 genitive +genitive +genitive +nominative +78564 nominative +78566 accusative +78568 accusative +accusative +78571 accusative +78573 accusative +78575 accusative +78577 nominative +nominative +nominative +accusative +accusative +dative +dative +dative +78586 dative +nominative +78590 accusative +accusative +nominative +accusative +accusative +genitive +genitive +genitive +genitive +78600 genitive +78603 genitive +genitive +genitive +nominative +nominative +78611 nominative +78613 nominative +78615 nominative +78617 genitive +genitive +nominative +nominative +accusative +78623 dative +dative +78626 accusative +accusative +accusative +78632 accusative +accusative +accusative +nominative +vocative +vocative +78639 nominative +78641 nominative +nominative +nominative +78645 genitive +genitive +78648 genitive +genitive +78651 genitive +genitive +genitive +accusative +78656 nominative +78660 accusative +78663 accusative +accusative +78667 accusative +accusative +accusative +accusative +78673 nominative +accusative +accusative +accusative +78678 dative +dative +78681 dative +78684 accusative +78686 accusative +accusative +78689 nominative +nominative +78693 nominative +nominative +nominative +78698 nominative +genitive +genitive +78702 nominative +genitive +genitive +78706 accusative +78708 genitive +genitive +78713 nominative +nominative +78716 genitive +accusative +78720 nominative +dative +dative +genitive +genitive +78726 nominative +nominative +78729 nominative +78731 nominative +accusative +78734 accusative +78737 accusative +78739 nominative +nominative +accusative +accusative +78744 accusative +accusative +78747 nominative +accusative +accusative +78751 nominative +nominative +nominative +78755 genitive +78759 dative +dative +78763 nominative +78766 nominative +78768 nominative +78770 nominative +accusative +accusative +78775 dative +dative +78779 genitive +genitive +78782 accusative +accusative +78785 accusative +accusative +78789 accusative +78791 accusative +accusative +78797 accusative +accusative +78801 accusative +78803 genitive +genitive +78806 accusative +accusative +genitive +genitive +78812 nominative +nominative +genitive +genitive +nominative +78818 accusative +78820 nominative +78823 accusative +accusative +nominative +nominative +78828 dative +dative +78832 dative +78834 accusative +78836 accusative +78838 nominative +78844 nominative +78846 nominative +nominative +nominative +78850 genitive +genitive +genitive +nominative +78855 nominative +78857 accusative +accusative +accusative +accusative +accusative +genitive +genitive +78866 nominative +nominative +78869 nominative +78871 nominative +nominative +nominative +genitive +genitive +78877 genitive +genitive +nominative +78882 genitive +78884 dative +78887 accusative +accusative +78890 genitive +genitive +nominative +nominative +nominative +78896 genitive +genitive +78899 dative +dative +dative +dative +78904 genitive +genitive +genitive +78908 dative +dative +dative +nominative +vocative +vocative +78915 vocative +78917 genitive +genitive +78920 accusative +78922 genitive +78924 nominative +78926 dative +dative +dative +78930 dative +78933 accusative +78936 nominative +78938 nominative +nominative +nominative +78942 dative +genitive +genitive +78946 nominative +78948 dative +dative +dative +78952 accusative +accusative +genitive +nominative +78957 accusative +genitive +genitive +genitive +nominative +nominative +genitive +genitive +78966 nominative +nominative +78970 nominative +accusative +accusative +accusative +78976 genitive +nominative +78979 nominative +78981 accusative +78983 accusative +78985 accusative +78988 nominative +nominative +78991 dative +78993 nominative +nominative +nominative +78997 genitive +78999 accusative +nominative +79002 accusative +accusative +79005 accusative +79007 nominative +79009 accusative +79011 accusative +accusative +79014 accusative +79019 dative +dative +79022 dative +dative +dative +79026 accusative +79029 genitive +genitive +79032 accusative +accusative +79035 accusative +79039 accusative +accusative +79043 genitive +genitive +dative +vocative +vocative +accusative +accusative +79052 nominative +79054 nominative +79056 vocative +79060 accusative +nominative +79063 nominative +nominative +nominative +accusative +nominative +79071 nominative +79073 dative +nominative +accusative +accusative +79081 accusative +accusative +genitive +genitive +dative +79088 accusative +79090 vocative +79092 nominative +nominative +79096 accusative +nominative +79100 accusative +79102 dative +79105 genitive +genitive +79109 dative +79115 genitive +genitive +genitive +genitive +genitive +nominative +79122 genitive +genitive +dative +79127 accusative +79129 nominative +nominative +nominative +nominative +79134 accusative +accusative +nominative +79138 genitive +genitive +genitive +genitive +nominative +79144 accusative +79146 nominative +79148 dative +vocative +vocative +79152 nominative +dative +dative +dative +79158 accusative +79160 nominative +79162 nominative +nominative +genitive +genitive +genitive +79168 accusative +79170 accusative +accusative +genitive +79175 accusative +accusative +79179 accusative +79181 genitive +genitive +genitive +79186 dative +79188 accusative +accusative +nominative +genitive +79197 accusative +79199 nominative +79203 accusative +accusative +genitive +nominative +accusative +accusative +genitive +79212 dative +dative +79215 accusative +79217 genitive +genitive +79220 dative +dative +79223 accusative +79225 dative +79228 accusative +accusative +dative +79235 dative +79237 genitive +79241 genitive +accusative +79244 genitive +nominative +79247 vocative +nominative +79251 nominative +79253 nominative +79255 nominative +79257 accusative +accusative +accusative +accusative +79262 accusative +79266 nominative +nominative +genitive +genitive +genitive +genitive +79273 nominative +79275 nominative +79277 nominative +79279 nominative +accusative +accusative +genitive +genitive +accusative +79288 accusative +79291 nominative +79293 accusative +accusative +79296 accusative +79299 genitive +79301 genitive +genitive +genitive +79306 accusative +accusative +genitive +nominative +79312 genitive +genitive +accusative +accusative +79319 accusative +79322 genitive +genitive +79325 genitive +accusative +accusative +79329 accusative +genitive +79332 accusative +accusative +79335 nominative +nominative +79338 accusative +79340 accusative +accusative +nominative +dative +79345 accusative +79349 accusative +accusative +79353 dative +79357 accusative +dative +dative +79362 accusative +accusative +accusative +nominative +nominative +79368 accusative +accusative +79371 accusative +79374 dative +79376 nominative +nominative +nominative +nominative +dative +dative +79383 nominative +79385 accusative +79388 nominative +nominative +nominative +nominative +79394 nominative +nominative +nominative +79398 dative +79400 dative +nominative +nominative +79405 nominative +79410 nominative +nominative +nominative +genitive +genitive +accusative +accusative +accusative +79420 nominative +nominative +79424 nominative +79431 genitive +nominative +nominative +accusative +79438 nominative +nominative +79441 nominative +79443 nominative +79447 accusative +79449 nominative +79451 dative +79453 nominative +79455 accusative +accusative +accusative +accusative +79461 genitive +genitive +79464 accusative +79468 accusative +accusative +79471 accusative +accusative +accusative +79475 nominative +accusative +accusative +79480 accusative +79482 nominative +nominative +nominative +dative +dative +79488 vocative +vocative +nominative +dative +dative +dative +79495 dative +dative +79498 genitive +genitive +genitive +79502 nominative +nominative +nominative +79506 dative +dative +dative +79510 genitive +accusative +accusative +79514 nominative +nominative +79517 accusative +79520 accusative +79522 nominative +nominative +vocative +vocative +79527 nominative +79529 nominative +accusative +79532 accusative +accusative +79535 nominative +79537 accusative +79540 nominative +nominative +79543 accusative +accusative +genitive +genitive +79550 nominative +nominative +79554 vocative +79557 nominative +79561 accusative +genitive +genitive +genitive +79569 nominative +nominative +nominative +79573 nominative +nominative +nominative +79577 genitive +79579 nominative +nominative +genitive +79584 dative +dative +vocative +vocative +nominative +nominative +79591 nominative +genitive +79594 genitive +79596 genitive +genitive +79600 accusative +genitive +genitive +79604 nominative +genitive +genitive +79608 genitive +79611 nominative +nominative +79614 nominative +79618 accusative +79620 accusative +79622 accusative +79624 nominative +79626 accusative +accusative +79630 nominative +nominative +79633 nominative +nominative +genitive +genitive +genitive +genitive +genitive +genitive +79642 nominative +accusative +accusative +79647 dative +dative +dative +79652 nominative +79654 dative +79656 nominative +79658 genitive +genitive +genitive +nominative +nominative +nominative +79666 nominative +nominative +79669 genitive +79671 accusative +accusative +accusative +79675 accusative +79677 genitive +genitive +79682 accusative +accusative +79685 dative +dative +dative +nominative +dative +nominative +nominative +79697 accusative +79699 genitive +79701 accusative +79704 accusative +79707 accusative +79710 genitive +genitive +nominative +accusative +nominative +nominative +79717 accusative +nominative +79724 genitive +79726 accusative +accusative +79730 nominative +79732 nominative +accusative +accusative +accusative +nominative +nominative +nominative +dative +dative +79742 dative +dative +79745 dative +79747 accusative +genitive +79751 genitive +79753 accusative +accusative +79757 nominative +79759 dative +dative +79762 dative +dative +79766 accusative +79768 accusative +79770 accusative +79772 accusative +accusative +79775 genitive +79777 nominative +79779 genitive +79781 accusative +nominative +79784 genitive +79786 accusative +79788 nominative +nominative +genitive +genitive +genitive +nominative +accusative +accusative +nominative +79798 nominative +79800 accusative +accusative +79803 dative +dative +79806 nominative +nominative +nominative +accusative +genitive +genitive +79813 accusative +accusative +accusative +79818 accusative +accusative +79823 accusative +dative +79827 nominative +nominative +accusative +79832 accusative +accusative +79836 nominative +nominative +nominative +nominative +accusative +79842 accusative +accusative +accusative +79847 accusative +accusative +accusative +79851 dative +79853 nominative +nominative +nominative +genitive +genitive +genitive +79860 nominative +79862 accusative +79864 nominative +79866 accusative +79868 dative +79873 nominative +nominative +79876 genitive +79878 accusative +79881 accusative +accusative +79885 accusative +accusative +79888 nominative +accusative +79893 genitive +79895 nominative +79898 dative +79901 accusative +79903 genitive +nominative +nominative +79907 nominative +79909 accusative +79915 genitive +79917 accusative +79921 nominative +nominative +accusative +79925 genitive +accusative +79929 nominative +nominative +79932 accusative +accusative +nominative +dative +79938 accusative +79941 accusative +79943 nominative +accusative +79946 genitive +genitive +79950 accusative +accusative +79953 accusative +79956 accusative +accusative +79961 genitive +79963 genitive +genitive +genitive +genitive +79968 accusative +79971 nominative +accusative +accusative +79976 accusative +accusative +accusative +nominative +accusative +accusative +accusative +accusative +accusative +nominative +nominative +dative +dative +dative +dative +79992 accusative +accusative +accusative +accusative +79997 genitive +genitive +80000 accusative +80003 genitive +nominative +80006 dative +dative +80009 nominative +80011 nominative +80014 nominative +80016 accusative +accusative +80019 accusative +80021 dative +80024 accusative +accusative +genitive +80028 accusative +accusative +80031 genitive +genitive +genitive +genitive +80036 accusative +accusative +genitive +80040 genitive +accusative +accusative +80044 genitive +dative +genitive +80048 accusative +accusative +80054 accusative +nominative +80057 dative +dative +80061 accusative +80063 genitive +80066 nominative +nominative +80069 accusative +accusative +dative +nominative +accusative +accusative +80077 genitive +80079 accusative +accusative +80082 dative +80084 nominative +accusative +accusative +80089 dative +80092 accusative +accusative +nominative +nominative +80097 accusative +accusative +80100 nominative +accusative +accusative +dative +dative +80107 accusative +accusative +dative +80111 nominative +80113 nominative +80115 genitive +genitive +80119 nominative +80122 genitive +80125 genitive +80128 nominative +nominative +genitive +80132 nominative +80134 dative +dative +genitive +genitive +80139 accusative +80143 accusative +80145 nominative +nominative +nominative +80149 genitive +genitive +80152 genitive +genitive +genitive +nominative +80157 dative +dative +80160 genitive +genitive +80163 genitive +genitive +80167 nominative +nominative +nominative +genitive +genitive +nominative +80174 genitive +80176 genitive +genitive +dative +dative +dative +80182 genitive +genitive +genitive +80191 genitive +genitive +vocative +vocative +80199 accusative +accusative +80204 accusative +genitive +80207 dative +dative +dative +80211 nominative +accusative +accusative +accusative +accusative +80217 accusative +accusative +dative +dative +dative +dative +80224 accusative +accusative +80227 accusative +genitive +genitive +genitive +genitive +nominative +80234 accusative +accusative +80238 accusative +80242 genitive +80244 nominative +nominative +80247 genitive +genitive +80250 genitive +nominative +80253 genitive +80257 nominative +nominative +nominative +accusative +80265 nominative +nominative +genitive +dative +genitive +genitive +80273 genitive +genitive +accusative +accusative +accusative +dative +dative +dative +nominative +80283 accusative +80285 genitive +80287 genitive +genitive +80292 nominative +80294 dative +nominative +80298 genitive +80300 nominative +80302 accusative +80305 accusative +80307 accusative +accusative +80310 accusative +genitive +accusative +80315 dative +dative +80319 dative +dative +80323 accusative +accusative +80328 dative +80330 genitive +80333 genitive +80336 accusative +dative +80340 accusative +accusative +accusative +80344 accusative +80347 dative +dative +dative +nominative +dative +dative +80354 accusative +accusative +80357 dative +80359 dative +dative +dative +nominative +accusative +80365 accusative +accusative +accusative +80369 nominative +nominative +80374 accusative +80376 genitive +80378 genitive +80380 dative +80382 nominative +80384 accusative +accusative +80388 accusative +accusative +80391 accusative +accusative +80394 genitive +80397 genitive +genitive +accusative +nominative +80402 accusative +accusative +genitive +80407 accusative +80409 dative +80411 accusative +accusative +80414 dative +dative +80418 genitive +80421 genitive +80423 nominative +80425 genitive +genitive +nominative +accusative +80430 genitive +80436 accusative +80439 accusative +80441 nominative +nominative +80444 accusative +accusative +80447 genitive +genitive +80450 genitive +genitive +80454 genitive +genitive +genitive +genitive +80460 dative +nominative +80464 genitive +genitive +nominative +80470 genitive +80473 accusative +nominative +nominative +accusative +nominative +accusative +80480 genitive +genitive +nominative +80484 nominative +nominative +nominative +80489 accusative +80491 accusative +nominative +dative +dative +80496 accusative +80499 accusative +80502 accusative +genitive +genitive +genitive +80507 dative +80510 accusative +accusative +nominative +nominative +nominative +80516 dative +dative +dative +dative +dative +dative +80523 accusative +accusative +80527 genitive +80529 genitive +80531 accusative +accusative +genitive +80535 genitive +genitive +80538 genitive +80540 genitive +80542 genitive +genitive +genitive +genitive +nominative +nominative +nominative +nominative +80551 accusative +80553 accusative +80556 accusative +nominative +80559 accusative +80562 nominative +80564 accusative +80566 dative +80568 genitive +genitive +80572 accusative +accusative +nominative +80576 dative +80578 genitive +genitive +80581 nominative +nominative +accusative +accusative +accusative +80587 nominative +accusative +80590 dative +dative +nominative +nominative +80595 accusative +accusative +accusative +80599 nominative +nominative +dative +dative +80604 accusative +accusative +80608 accusative +80610 genitive +80613 dative +nominative +nominative +80617 nominative +nominative +genitive +genitive +80622 genitive +genitive +80626 accusative +nominative +accusative +80630 genitive +80633 accusative +80635 accusative +accusative +nominative +80639 accusative +80641 accusative +accusative +80645 nominative +nominative +80649 accusative +accusative +80652 accusative +80654 accusative +80657 dative +80661 nominative +80663 dative +nominative +nominative +80667 genitive +80669 nominative +nominative +80673 dative +dative +80676 nominative +80678 dative +accusative +80681 accusative +80685 nominative +80687 accusative +dative +80690 nominative +80692 genitive +genitive +80695 accusative +accusative +80699 genitive +genitive +80702 accusative +nominative +80705 genitive +nominative +nominative +accusative +80710 accusative +accusative +nominative +accusative +80717 genitive +genitive +genitive +80723 accusative +accusative +genitive +genitive +80729 accusative +accusative +80733 accusative +accusative +80737 nominative +nominative +nominative +dative +dative +accusative +80744 nominative +dative +dative +80750 accusative +nominative +80754 genitive +80757 genitive +80760 nominative +nominative +80763 genitive +genitive +genitive +nominative +80769 accusative +80772 accusative +accusative +80777 nominative +accusative +80785 accusative +genitive +accusative +80791 accusative +80795 nominative +80797 genitive +nominative +80800 genitive +nominative +80803 accusative +dative +80806 accusative +80809 nominative +nominative +nominative +80813 genitive +genitive +80816 accusative +80819 accusative +80822 genitive +genitive +genitive +nominative +nominative +nominative +80829 nominative +80832 accusative +nominative +accusative +accusative +80838 accusative +accusative +80842 nominative +nominative +dative +dative +80847 accusative +80849 accusative +accusative +nominative +nominative +nominative +80855 nominative +80857 genitive +nominative +80860 genitive +genitive +genitive +80864 accusative +80866 nominative +nominative +80869 nominative +nominative +genitive +genitive +nominative +80875 genitive +accusative +80878 accusative +80883 nominative +dative +80886 accusative +accusative +80890 nominative +nominative +80893 accusative +80895 accusative +accusative +80898 accusative +genitive +80902 genitive +genitive +80905 genitive +80907 accusative +accusative +nominative +dative +80912 nominative +80914 genitive +genitive +80918 accusative +accusative +80921 genitive +nominative +nominative +nominative +80926 accusative +accusative +genitive +nominative +80931 genitive +80933 accusative +accusative +80936 genitive +genitive +genitive +80941 accusative +80944 genitive +genitive +genitive +accusative +80950 nominative +nominative +80953 nominative +nominative +accusative +80957 genitive +accusative +80964 accusative +80968 genitive +80970 genitive +genitive +genitive +80974 accusative +80976 accusative +genitive +genitive +accusative +80982 accusative +80984 genitive +80986 accusative +80988 accusative +80990 nominative +80992 accusative +accusative +80996 nominative +genitive +genitive +81003 genitive +81005 dative +81007 genitive +genitive +genitive +81011 genitive +genitive +81014 genitive +genitive +81017 genitive +81019 accusative +accusative +81023 dative +81025 dative +dative +81028 accusative +genitive +genitive +81032 genitive +genitive +genitive +81036 nominative +nominative +81040 nominative +nominative +vocative +vocative +81045 nominative +nominative +nominative +dative +vocative +81051 accusative +81053 genitive +nominative +nominative +nominative +genitive +genitive +81060 dative +81063 dative +81066 nominative +81069 accusative +81073 nominative +81075 accusative +accusative +genitive +accusative +81081 genitive +genitive +genitive +accusative +accusative +81089 genitive +accusative +accusative +81093 dative +dative +81099 accusative +81101 genitive +81105 genitive +vocative +vocative +81109 genitive +genitive +genitive +81113 accusative +81116 nominative +dative +81119 accusative +accusative +81123 accusative +81125 genitive +accusative +81129 nominative +81131 accusative +accusative +81135 dative +81137 genitive +81140 nominative +nominative +nominative +accusative +accusative +81146 vocative +vocative +81149 genitive +genitive +81153 genitive +81155 accusative +accusative +81158 genitive +81161 nominative +81163 accusative +accusative +accusative +genitive +genitive +81169 accusative +81171 genitive +81173 genitive +81178 genitive +81181 accusative +accusative +genitive +81185 genitive +accusative +81188 genitive +accusative +81191 dative +dative +genitive +81196 dative +81198 nominative +nominative +nominative +accusative +81208 accusative +accusative +accusative +genitive +genitive +genitive +81215 nominative +81219 dative +genitive +81222 accusative +accusative +genitive +genitive +81227 genitive +genitive +genitive +81231 nominative +81233 accusative +81235 nominative +nominative +genitive +81239 dative +accusative +81242 accusative +nominative +81246 genitive +genitive +81250 genitive +vocative +accusative +accusative +81256 dative +81258 nominative +nominative +accusative +81264 nominative +81266 dative +81269 accusative +accusative +genitive +genitive +genitive +accusative +accusative +81277 accusative +81281 dative +81284 accusative +genitive +genitive +nominative +81289 dative +81291 accusative +81293 genitive +genitive +accusative +nominative +81298 genitive +genitive +81301 accusative +81304 accusative +accusative +accusative +81308 nominative +accusative +81314 nominative +dative +81320 accusative +81322 accusative +81324 dative +nominative +81327 accusative +accusative +81330 genitive +81332 genitive +genitive +genitive +genitive +genitive +genitive +81339 accusative +accusative +81344 accusative +accusative +genitive +genitive +accusative +accusative +accusative +81352 accusative +81354 dative +accusative +vocative +81358 genitive +genitive +genitive +81362 accusative +accusative +81365 accusative +accusative +81368 accusative +dative +dative +dative +vocative +vocative +accusative +accusative +81377 nominative +dative +81380 accusative +81383 nominative +81385 nominative +81387 vocative +81389 nominative +nominative +81392 nominative +81394 nominative +accusative +nominative +81403 accusative +accusative +genitive +81408 accusative +81410 dative +81412 accusative +accusative +81415 accusative +81417 genitive +81419 accusative +81421 genitive +81423 dative +nominative +accusative +81427 genitive +genitive +81431 genitive +genitive +81434 accusative +nominative +81437 accusative +81439 accusative +genitive +genitive +81444 genitive +81446 accusative +81448 genitive +genitive +genitive +genitive +81453 accusative +accusative +genitive +81457 accusative +accusative +genitive +81461 accusative +81463 dative +dative +dative +dative +81468 accusative +81470 vocative +vocative +81474 nominative +dative +dative +dative +81480 dative +81482 dative +accusative +81485 dative +81487 accusative +accusative +accusative +genitive +genitive +81493 dative +dative +81500 accusative +accusative +accusative +genitive +genitive +accusative +accusative +81508 genitive +nominative +accusative +nominative +81513 dative +dative +81518 nominative +genitive +genitive +81522 genitive +genitive +81525 genitive +genitive +genitive +81529 nominative +81531 dative +81533 dative +accusative +nominative +81537 genitive +genitive +81541 nominative +nominative +81544 nominative +81547 nominative +nominative +nominative +81551 nominative +81553 genitive +genitive +81556 accusative +81559 dative +dative +81562 dative +dative +81565 accusative +genitive +genitive +nominative +nominative +dative +dative +dative +81575 vocative +nominative +nominative +nominative +accusative +81581 accusative +81584 nominative +nominative +81587 vocative +vocative +81592 genitive +81594 genitive +accusative +81600 genitive +nominative +nominative +81604 accusative +81606 nominative +81610 accusative +genitive +81614 accusative +81618 nominative +81620 dative +nominative +vocative +vocative +81625 dative +dative +81631 nominative +nominative +81634 accusative +accusative +81637 dative +accusative +81640 accusative +81643 nominative +nominative +81647 dative +dative +81651 dative +81654 dative +81656 accusative +accusative +81660 accusative +accusative +accusative +genitive +81666 accusative +nominative +81669 nominative +81672 genitive +genitive +genitive +81677 nominative +nominative +81680 nominative +nominative +81683 nominative +nominative +81686 nominative +nominative +dative +81690 nominative +81693 accusative +nominative +81696 accusative +genitive +81699 genitive +accusative +81702 nominative +nominative +nominative +81706 nominative +dative +dative +81712 nominative +nominative +nominative +81718 accusative +81722 genitive +81724 accusative +81726 accusative +accusative +81730 accusative +accusative +81733 accusative +accusative +accusative +dative +dative +dative +genitive +genitive +81742 nominative +dative +dative +dative +81748 accusative +81750 accusative +accusative +accusative +81754 genitive +81756 dative +genitive +genitive +genitive +81761 dative +dative +81765 accusative +81767 nominative +nominative +81770 dative +dative +nominative +81775 accusative +accusative +dative +genitive +81781 nominative +81783 accusative +accusative +81786 accusative +accusative +accusative +81790 accusative +81792 accusative +accusative +accusative +81796 accusative +accusative +81799 accusative +nominative +81803 accusative +genitive +genitive +nominative +nominative +81809 nominative +accusative +accusative +accusative +81814 accusative +accusative +81817 accusative +81819 accusative +81822 dative +dative +nominative +81827 nominative +81829 accusative +accusative +81832 genitive +accusative +genitive +genitive +81837 accusative +accusative +81840 accusative +81843 nominative +accusative +81847 accusative +accusative +accusative +accusative +accusative +dative +81854 nominative +nominative +81858 genitive +genitive +genitive +81862 genitive +81864 genitive +genitive +genitive +81868 accusative +81870 accusative +accusative +81875 nominative +nominative +nominative +dative +vocative +81883 genitive +81885 genitive +genitive +81888 accusative +genitive +genitive +81892 genitive +genitive +81896 genitive +genitive +genitive +81901 accusative +accusative +81904 nominative +nominative +dative +dative +81909 dative +dative +81914 dative +81916 genitive +dative +81919 genitive +genitive +genitive +genitive +81924 accusative +nominative +nominative +81928 accusative +81934 nominative +81936 accusative +accusative +genitive +genitive +accusative +81942 accusative +81945 accusative +81948 genitive +genitive +nominative +genitive +genitive +81954 nominative +81957 accusative +accusative +81962 accusative +81965 genitive +nominative +nominative +nominative +nominative +nominative +81972 genitive +genitive +genitive +81977 genitive +81979 dative +dative +nominative +81984 nominative +accusative +accusative +accusative +accusative +81991 nominative +81993 genitive +genitive +accusative +nominative +dative +81999 nominative +accusative +accusative +82003 nominative +82006 accusative +accusative +82009 nominative +accusative +accusative +82016 genitive +genitive +dative +82020 accusative +82023 dative +dative +nominative +accusative +accusative +genitive +genitive +82033 genitive +82035 genitive +genitive +82038 accusative +accusative +82041 genitive +82043 genitive +genitive +accusative +82047 nominative +nominative +genitive +82051 accusative +82053 genitive +genitive +genitive +82057 nominative +nominative +nominative +82061 dative +genitive +82065 vocative +82068 accusative +dative +82073 genitive +genitive +82077 accusative +accusative +accusative +82081 accusative +accusative +82084 accusative +82087 accusative +82090 nominative +genitive +nominative +82095 genitive +82097 genitive +genitive +82101 dative +dative +dative +dative +genitive +genitive +genitive +82109 dative +82112 nominative +nominative +82116 vocative +dative +accusative +82124 dative +nominative +nominative +accusative +accusative +accusative +82131 genitive +82134 vocative +82137 dative +dative +82143 accusative +accusative +82146 dative +82150 accusative +accusative +accusative +82156 nominative +nominative +82159 genitive +genitive +82162 dative +dative +82165 accusative +genitive +genitive +82169 nominative +nominative +82172 accusative +accusative +dative +82176 nominative +82178 accusative +82181 accusative +nominative +82185 nominative +82187 accusative +82190 nominative +82194 accusative +accusative +82198 genitive +nominative +accusative +accusative +82203 accusative +82206 genitive +genitive +genitive +82211 genitive +genitive +82214 genitive +accusative +accusative +82218 accusative +accusative +dative +82223 genitive +accusative +82226 genitive +82228 nominative +nominative +dative +dative +82233 dative +dative +82237 nominative +82240 dative +dative +nominative +82248 nominative +nominative +accusative +accusative +genitive +genitive +82256 accusative +82260 genitive +nominative +82265 nominative +nominative +accusative +82269 genitive +nominative +accusative +accusative +82274 nominative +nominative +82277 accusative +nominative +82281 accusative +82283 genitive +82285 nominative +82287 genitive +genitive +genitive +82292 genitive +genitive +nominative +82296 genitive +genitive +82300 nominative +accusative +82303 nominative +accusative +82306 dative +dative +82309 genitive +82311 nominative +82315 nominative +nominative +nominative +82319 nominative +82321 genitive +82324 nominative +nominative +nominative +82328 dative +dative +nominative +82334 nominative +genitive +82337 accusative +accusative +nominative +accusative +accusative +82343 accusative +accusative +82347 nominative +82349 accusative +accusative +82355 accusative +accusative +accusative +accusative +82360 accusative +82362 accusative +accusative +82368 accusative +accusative +nominative +82373 accusative +accusative +82376 nominative +accusative +accusative +genitive +genitive +82382 nominative +accusative +accusative +dative +dative +82389 accusative +accusative +82392 nominative +82394 accusative +accusative +82397 accusative +accusative +82401 nominative +nominative +nominative +82405 nominative +82407 nominative +nominative +82411 genitive +genitive +82414 genitive +genitive +nominative +82419 accusative +accusative +82423 nominative +nominative +82427 nominative +nominative +nominative +82431 accusative +accusative +82434 accusative +genitive +genitive +82439 accusative +accusative +82442 accusative +accusative +82445 accusative +accusative +82449 accusative +accusative +82452 accusative +82454 dative +82456 accusative +82458 genitive +genitive +82461 genitive +genitive +82466 accusative +82469 accusative +accusative +82472 nominative +82476 nominative +nominative +nominative +82481 nominative +nominative +82484 accusative +82486 accusative +accusative +dative +82490 nominative +accusative +82493 accusative +accusative +82496 accusative +accusative +accusative +accusative +82502 accusative +accusative +82505 genitive +genitive +genitive +genitive +accusative +accusative +82512 genitive +82514 accusative +accusative +nominative +82518 genitive +genitive +nominative +82522 genitive +genitive +genitive +82528 nominative +nominative +accusative +accusative +accusative +82534 genitive +genitive +genitive +82538 accusative +82541 nominative +82543 nominative +nominative +nominative +accusative +accusative +82549 genitive +genitive +82552 nominative +nominative +82558 nominative +nominative +accusative +accusative +82563 accusative +accusative +82566 accusative +accusative +82569 nominative +82571 accusative +82577 accusative +82580 accusative +genitive +genitive +82584 genitive +accusative +accusative +82588 accusative +accusative +nominative +82592 accusative +82594 accusative +82597 dative +82599 accusative +accusative +accusative +82603 nominative +dative +dative +genitive +genitive +dative +dative +nominative +nominative +accusative +accusative +accusative +82619 accusative +accusative +genitive +genitive +dative +82625 dative +accusative +82629 accusative +nominative +82632 nominative +nominative +nominative +nominative +accusative +accusative +dative +82640 accusative +82642 genitive +genitive +82645 nominative +nominative +nominative +82649 dative +dative +nominative +accusative +82656 nominative +82658 dative +dative +82661 accusative +82663 dative +82665 accusative +82667 accusative +accusative +82671 accusative +accusative +82675 dative +dative +82678 dative +dative +dative +dative +dative +82684 nominative +82686 accusative +82688 accusative +accusative +82691 nominative +82694 accusative +82697 accusative +accusative +genitive +genitive +nominative +82704 accusative +82706 nominative +accusative +82710 dative +82712 accusative +82717 accusative +accusative +82721 nominative +nominative +nominative +accusative +82726 genitive +82729 accusative +dative +82732 genitive +genitive +82735 genitive +genitive +accusative +nominative +nominative +nominative +nominative +dative +dative +82745 accusative +82750 accusative +82752 dative +dative +82756 accusative +82758 dative +dative +accusative +dative +82765 accusative +accusative +82768 accusative +accusative +accusative +genitive +genitive +accusative +82775 genitive +genitive +82779 accusative +vocative +vocative +nominative +accusative +accusative +nominative +dative +dative +82789 dative +dative +dative +dative +nominative +82795 genitive +82798 accusative +accusative +genitive +genitive +nominative +nominative +accusative +82808 accusative +accusative +accusative +genitive +82814 dative +82816 genitive +genitive +genitive +82821 accusative +82824 genitive +genitive +genitive +accusative +82829 nominative +82832 accusative +accusative +accusative +82836 accusative +82842 genitive +genitive +genitive +genitive +accusative +accusative +accusative +82851 nominative +82853 accusative +82856 nominative +accusative +82859 genitive +82862 genitive +genitive +82865 nominative +nominative +genitive +genitive +82872 accusative +82874 genitive +accusative +82879 genitive +82881 accusative +82886 genitive +genitive +genitive +nominative +dative +82896 nominative +dative +accusative +82901 accusative +82903 accusative +accusative +nominative +dative +82908 nominative +accusative +accusative +genitive +genitive +82914 nominative +accusative +82917 genitive +genitive +82921 genitive +genitive +genitive +82925 genitive +genitive +82930 genitive +82933 nominative +82935 dative +dative +82938 nominative +82941 nominative +nominative +82944 accusative +82946 genitive +genitive +genitive +accusative +accusative +82953 nominative +nominative +nominative +nominative +82959 genitive +genitive +genitive +82963 accusative +accusative +genitive +nominative +82969 accusative +accusative +accusative +82974 dative +82981 nominative +82989 nominative +nominative +genitive +genitive +genitive +82995 dative +dative +83000 accusative +accusative +genitive +83007 dative +dative +83010 dative +dative +83014 dative +dative +83021 accusative +83023 nominative +83025 dative +83027 dative +dative +83030 nominative +nominative +nominative +genitive +genitive +nominative +83040 accusative +accusative +83043 dative +dative +83047 accusative +accusative +accusative +83051 accusative +nominative +accusative +accusative +genitive +genitive +83058 nominative +accusative +83061 genitive +genitive +genitive +genitive +83066 genitive +genitive +83069 nominative +nominative +genitive +genitive +nominative +nominative +nominative +83077 accusative +genitive +accusative +83082 genitive +genitive +genitive +83086 dative +dative +83089 genitive +genitive +genitive +genitive +genitive +83095 genitive +genitive +83098 accusative +genitive +genitive +genitive +genitive +83104 dative +83106 accusative +genitive +83109 genitive +genitive +genitive +genitive +genitive +genitive +genitive +83117 genitive +83119 accusative +83121 accusative +83123 accusative +genitive +83126 dative +dative +dative +83130 genitive +genitive +genitive +83134 dative +83137 nominative +nominative +genitive +genitive +dative +dative +dative +83145 dative +dative +genitive +dative +dative +dative +nominative +83153 nominative +83155 genitive +genitive +genitive +83159 genitive +genitive +genitive +83163 accusative +83165 dative +dative +genitive +83169 genitive +genitive +83172 genitive +genitive +83175 nominative +nominative +genitive +83180 dative +dative +dative +83184 nominative +genitive +83187 nominative +nominative +dative +83192 dative +dative +genitive +83196 dative +dative +genitive +genitive +genitive +83203 accusative +genitive +83208 genitive +genitive +genitive +nominative +83218 dative +dative +genitive +genitive +83224 accusative +83228 accusative +83231 accusative +accusative +accusative +dative +83236 accusative +83238 accusative +83240 nominative +83244 dative +83246 genitive +83248 dative +genitive +83251 genitive +83253 genitive +83255 vocative +83258 accusative +83265 accusative +83269 genitive +83272 accusative +accusative +83277 dative +83281 dative +dative +dative +83285 dative +83287 dative +83289 dative +83291 dative +nominative +83295 nominative +83297 accusative +nominative +83300 dative +dative +83303 dative +83308 accusative +accusative +83311 nominative +genitive +83315 accusative +dative +dative +dative +83320 dative +accusative +83323 dative +83325 nominative +genitive +83328 dative +83331 genitive +83333 accusative +83337 nominative +nominative +83340 genitive +83344 nominative +genitive +83347 genitive +83349 accusative +accusative +83352 accusative +genitive +genitive +accusative +accusative +83358 dative +genitive +83361 nominative +nominative +genitive +genitive +nominative +83368 dative +83370 nominative +nominative +dative +83375 nominative +nominative +genitive +nominative +83380 nominative +genitive +nominative +83384 nominative +83386 genitive +genitive +dative +dative +nominative +83393 accusative +83395 accusative +accusative +83398 nominative +accusative +accusative +83403 accusative +83410 dative +dative +genitive +83415 nominative +nominative +genitive +nominative +nominative +83421 nominative +83425 accusative +accusative +genitive +genitive +genitive +83431 dative +genitive +genitive +genitive +83436 genitive +83438 genitive +83440 genitive +83443 accusative +nominative +nominative +83447 dative +dative +genitive +genitive +genitive +83453 accusative +genitive +83456 accusative +accusative +genitive +83460 dative +nominative +83463 accusative +accusative +genitive +genitive +83468 dative +dative +83474 dative +dative +83477 accusative +accusative +nominative +83481 nominative +83483 accusative +accusative +83487 accusative +83489 accusative +nominative +nominative +83493 accusative +genitive +83497 nominative +nominative +genitive +83501 accusative +accusative +accusative +83505 accusative +83507 accusative +83511 nominative +nominative +nominative +accusative +accusative +accusative +genitive +genitive +83521 dative +dative +genitive +83525 accusative +nominative +83528 dative +accusative +accusative +nominative +83533 accusative +accusative +accusative +83537 genitive +genitive +genitive +83541 dative +nominative +83547 accusative +accusative +83551 dative +83553 accusative +nominative +nominative +83557 accusative +accusative +83560 accusative +83562 accusative +accusative +dative +dative +dative +dative +dative +accusative +genitive +genitive +genitive +genitive +genitive +accusative +accusative +accusative +accusative +accusative +accusative +accusative +genitive +dative +accusative +accusative +accusative +accusative +accusative +nominative +accusative +accusative +genitive +genitive +nominative +83596 nominative +accusative +accusative +nominative +nominative +genitive +83604 accusative +accusative +83610 dative +dative +83613 nominative +83616 vocative +nominative +nominative +nominative +83622 dative +83624 accusative +accusative +accusative +83629 accusative +accusative +83632 nominative +nominative +83637 nominative +nominative +genitive +genitive +83643 accusative +83645 accusative +accusative +accusative +accusative +83651 accusative +83653 vocative +nominative +nominative +accusative +accusative +accusative +accusative +83661 nominative +accusative +83664 nominative +83666 accusative +accusative +genitive +genitive +83671 genitive +genitive +genitive +genitive +genitive +83677 genitive +genitive +83680 genitive +genitive +83683 nominative +83685 nominative +nominative +genitive +genitive +83690 accusative +accusative +83695 accusative +accusative +genitive +83699 accusative +accusative +83702 dative +accusative +83705 dative +genitive +83708 genitive +genitive +genitive +genitive +nominative +83714 dative +83716 accusative +accusative +genitive +83720 dative +83722 accusative +genitive +genitive +accusative +83727 accusative +83729 accusative +dative +accusative +accusative +83734 dative +83736 genitive +83738 dative +dative +dative +83742 dative +dative +dative +nominative +83747 nominative +nominative +83750 nominative +83752 accusative +accusative +genitive +genitive +genitive +accusative +accusative +83760 genitive +accusative +83763 genitive +83765 nominative +83767 nominative +83769 nominative +dative +dative +dative +accusative +accusative +83776 dative +accusative +83779 dative +83783 nominative +83785 dative +dative +83788 nominative +83795 nominative +83797 dative +83800 genitive +83804 nominative +nominative +genitive +nominative +83809 dative +dative +83812 nominative +nominative +genitive +83818 nominative +nominative +83821 accusative +nominative +dative +accusative +genitive +genitive +83828 nominative +accusative +83831 nominative +dative +83834 nominative +nominative +83837 accusative +accusative +genitive +genitive +accusative +83843 dative +dative +genitive +genitive +genitive +genitive +genitive +83852 genitive +genitive +genitive +genitive +83858 genitive +dative +83861 dative +83863 nominative +nominative +accusative +accusative +genitive +genitive +83870 accusative +accusative +genitive +83874 genitive +genitive +83878 nominative +nominative +83883 dative +83887 dative +83890 accusative +accusative +83894 accusative +accusative +nominative +83898 genitive +genitive +83902 accusative +83904 accusative +genitive +accusative +genitive +83909 dative +accusative +genitive +accusative +genitive +accusative +accusative +accusative +genitive +genitive +83920 genitive +genitive +83923 dative +dative +83926 nominative +nominative +accusative +accusative +83932 nominative +nominative +83937 nominative +nominative +83942 nominative +nominative +accusative +accusative +83947 nominative +83949 dative +83952 genitive +genitive +genitive +genitive +accusative +accusative +83960 nominative +nominative +genitive +genitive +83965 accusative +83968 dative +dative +83974 nominative +83977 accusative +83981 nominative +genitive +83984 nominative +nominative +genitive +nominative +83991 nominative +nominative +accusative +accusative +genitive +genitive +83999 nominative +nominative +genitive +84003 accusative +84007 nominative +84009 genitive +nominative +accusative +accusative +nominative +accusative +accusative +84017 genitive +84019 genitive +accusative +genitive +84024 nominative +84026 dative +dative +nominative +84031 nominative +84033 dative +dative +84036 dative +nominative +84039 nominative +84041 dative +dative +nominative +84045 nominative +genitive +84048 dative +84050 dative +genitive +nominative +nominative +84056 genitive +84059 genitive +genitive +84062 nominative +nominative +nominative +genitive +genitive +84068 nominative +nominative +nominative +genitive +genitive +nominative +84075 accusative +accusative +84079 accusative +84082 accusative +accusative +genitive +genitive +84087 nominative +84090 nominative +84092 nominative +nominative +genitive +accusative +accusative +genitive +genitive +84104 nominative +nominative +nominative +84108 nominative +nominative +nominative +84117 dative +dative +genitive +84123 dative +84125 accusative +84128 nominative +nominative +genitive +genitive +accusative +84134 accusative +84137 nominative +nominative +nominative +nominative +nominative +accusative +accusative +84145 accusative +84152 nominative +nominative +accusative +accusative +84158 nominative +nominative +genitive +genitive +84163 dative +dative +dative +84168 accusative +accusative +genitive +accusative +84173 nominative +84175 nominative +84184 nominative +accusative +84189 accusative +accusative +84193 nominative +nominative +genitive +nominative +nominative +nominative +84201 nominative +84208 accusative +84210 accusative +accusative +84213 accusative +84220 nominative +84222 nominative +84225 nominative +nominative +84229 nominative +nominative +accusative +accusative +nominative +84239 nominative +nominative +accusative +84245 genitive +nominative +nominative +nominative +nominative +genitive +dative +dative +genitive +84255 nominative +genitive +84258 accusative +accusative +genitive +genitive +nominative +nominative +genitive +84266 genitive +84268 nominative +nominative +nominative +genitive +84273 accusative +nominative +84276 nominative +84278 dative +dative +genitive +84282 accusative +genitive +84288 nominative +genitive +84291 genitive +genitive +genitive +84297 accusative +nominative +nominative +84301 dative +84303 dative +dative +84307 nominative +nominative +84311 nominative +84313 nominative +nominative +nominative +dative +dative +84320 genitive +genitive +84324 nominative +nominative +84327 genitive +84330 genitive +nominative +genitive +84336 genitive +nominative +genitive +84340 nominative +84342 genitive +genitive +84345 genitive +genitive +84348 nominative +genitive +84351 genitive +genitive +genitive +84355 accusative +accusative +accusative +84361 nominative +84363 nominative +84367 genitive +genitive +genitive +genitive +nominative +84373 dative +genitive +dative +84377 genitive +genitive +genitive +84381 dative +dative +accusative +84385 nominative +nominative +accusative +84389 genitive +84391 dative +genitive +dative +84395 accusative +genitive +genitive +genitive +84400 accusative +accusative +genitive +genitive +genitive +84406 dative +dative +genitive +genitive +84411 accusative +accusative +genitive +genitive +genitive +84417 dative +84419 dative +84421 accusative +84423 accusative +accusative +84426 accusative +accusative +84429 genitive +genitive +84433 nominative +nominative +84437 genitive +genitive +genitive +genitive +84444 genitive +genitive +84449 dative +accusative +84452 genitive +genitive +84455 genitive +nominative +nominative +accusative +84461 genitive +84464 genitive +84466 nominative +nominative +nominative +nominative +84471 accusative +84473 genitive +84475 accusative +84477 genitive +genitive +84480 accusative +84483 genitive +genitive +84488 accusative +84492 accusative +84494 accusative +accusative +accusative +genitive +84499 accusative +84502 nominative +84504 genitive +84507 accusative +84511 accusative +84513 accusative +nominative +nominative +84519 nominative +dative +dative +84524 dative +84526 accusative +84528 dative +dative +nominative +nominative +84535 accusative +84538 accusative +84540 dative +84542 dative +84544 dative +84546 accusative +accusative +accusative +accusative +84551 nominative +nominative +genitive +84555 accusative +84558 nominative +84560 accusative +accusative +genitive +genitive +dative +nominative +nominative +84568 accusative +84570 genitive +nominative +genitive +nominative +nominative +84577 genitive +nominative +nominative +84581 nominative +nominative +genitive +84587 nominative +accusative +84590 nominative +nominative +nominative +84594 accusative +accusative +84599 accusative +accusative +84604 dative +dative +nominative +nominative +84609 accusative +84613 dative +84615 dative +84618 dative +84621 dative +84624 dative +84627 accusative +genitive +accusative +genitive +genitive +genitive +genitive +genitive +84636 dative +dative +84639 accusative +84641 accusative +accusative +genitive +genitive +genitive +84647 genitive +84649 accusative +84651 dative +accusative +accusative +84655 accusative +genitive +dative +84660 genitive +accusative +84664 dative +dative +dative +dative +genitive +84670 dative +genitive +genitive +genitive +genitive +genitive +84679 genitive +nominative +nominative +nominative +accusative +genitive +accusative +84687 dative +dative +84690 dative +dative +genitive +84695 genitive +genitive +84699 nominative +84701 genitive +nominative +84704 nominative +nominative +84708 nominative +nominative +84711 nominative +nominative +accusative +84719 nominative +84721 nominative +84723 accusative +84725 genitive +84728 accusative +84730 accusative +84732 accusative +accusative +accusative +dative +dative +dative +84739 dative +84741 genitive +genitive +accusative +84746 dative +84748 genitive +genitive +nominative +84752 nominative +genitive +genitive +84756 genitive +84758 genitive +genitive +genitive +accusative +accusative +84764 genitive +accusative +84767 accusative +84769 accusative +84773 accusative +genitive +genitive +84777 accusative +nominative +84780 accusative +84782 dative +84785 accusative +84787 accusative +accusative +genitive +genitive +84792 accusative +accusative +84796 nominative +nominative +genitive +84801 nominative +dative +dative +84805 accusative +genitive +accusative +accusative +nominative +84811 nominative +84813 accusative +accusative +genitive +genitive +genitive +84820 accusative +accusative +genitive +genitive +84826 dative +dative +84830 dative +dative +nominative +accusative +dative +dative +84837 nominative +84840 nominative +accusative +84848 dative +84850 accusative +84855 accusative +accusative +84859 dative +84863 accusative +dative +84867 dative +dative +84870 accusative +accusative +84873 genitive +accusative +accusative +accusative +genitive +nominative +84881 accusative +accusative +genitive +84887 accusative +accusative +genitive +84891 nominative +84893 genitive +accusative +84897 accusative +accusative +84900 genitive +genitive +genitive +genitive +genitive +84906 genitive +84908 accusative +accusative +84911 dative +dative +84914 accusative +accusative +accusative +84918 dative +84923 dative +genitive +genitive +genitive +genitive +84930 accusative +84935 dative +dative +nominative +84939 nominative +nominative +accusative +84944 nominative +nominative +accusative +84948 nominative +nominative +accusative +84952 nominative +nominative +84957 nominative +nominative +genitive +genitive +84963 dative +dative +genitive +84967 genitive +genitive +genitive +genitive +dative +84974 nominative +genitive +genitive +genitive +84980 accusative +84982 genitive +84987 genitive +nominative +84992 genitive +genitive +84995 nominative +85001 accusative +genitive +accusative +85005 accusative +nominative +nominative +85010 genitive +genitive +genitive +nominative +85015 genitive +85018 dative +85020 nominative +85023 dative +dative +genitive +85028 genitive +85030 genitive +genitive +85034 nominative +nominative +85037 dative +dative +85040 genitive +genitive +genitive +genitive +genitive +dative +85047 nominative +85050 dative +dative +genitive +85055 accusative +85058 nominative +85060 dative +dative +85063 genitive +genitive +genitive +genitive +genitive +85069 genitive +85071 accusative +accusative +85075 accusative +85078 genitive +genitive +nominative +nominative +85083 accusative +accusative +85088 genitive +genitive +nominative +nominative +85095 accusative +accusative +nominative +nominative +85101 dative +nominative +85106 genitive +nominative +85110 dative +85112 nominative +85116 genitive +genitive +85120 nominative +nominative +85123 genitive +85125 genitive +85128 accusative +85130 accusative +85132 dative +dative +genitive +genitive +genitive +nominative +85139 nominative +genitive +genitive +85145 nominative +nominative +85149 nominative +nominative +85153 dative +genitive +genitive +dative +nominative +nominative +85160 dative +85162 nominative +nominative +genitive +genitive +85167 nominative +nominative +85170 dative +dative +genitive +genitive +genitive +genitive +genitive +85178 accusative +accusative +85185 genitive +genitive +nominative +nominative +85191 nominative +nominative +85194 genitive +85196 accusative +85198 nominative +nominative +85201 genitive +genitive +85204 accusative +85207 dative +genitive +genitive +dative +nominative +nominative +85215 genitive +genitive +dative +85219 nominative +accusative +accusative +genitive +genitive +85225 genitive +genitive +genitive +genitive +nominative +85231 dative +85234 genitive +genitive +genitive +genitive +85242 genitive +genitive +85245 accusative +accusative +85248 accusative +85252 genitive +genitive +85255 accusative +accusative +85258 accusative +genitive +85263 genitive +genitive +genitive +genitive +genitive +nominative +85270 nominative +nominative +85275 genitive +genitive +genitive +genitive +nominative +85281 nominative +nominative +85284 nominative +85288 nominative +nominative +85293 nominative +nominative +85296 nominative +nominative +85301 nominative +nominative +85304 dative +dative +85308 nominative +nominative +85312 genitive +85314 accusative +accusative +85317 genitive +genitive +genitive +genitive +genitive +85323 accusative +85326 dative +dative +85329 nominative +nominative +85334 nominative +85336 dative +dative +85342 dative +85346 nominative +85349 accusative +accusative +85352 accusative +accusative +genitive +85358 dative +85360 genitive +genitive +85363 accusative +accusative +85368 nominative +85370 genitive +85372 genitive +genitive +genitive +genitive +85378 nominative +85380 dative +genitive +85385 nominative +85387 dative +dative +genitive +genitive +genitive +85394 genitive +genitive +85397 accusative +nominative +85400 nominative +nominative +genitive +nominative +85407 nominative +nominative +genitive +genitive +genitive +85414 accusative +dative +dative +85418 nominative +nominative +85422 genitive +genitive +85428 dative +85433 dative +nominative +85436 nominative +nominative +85439 genitive +85442 nominative +genitive +85447 accusative +85449 dative +dative +85454 accusative +85457 dative +dative +85461 nominative +85463 accusative +85466 accusative +dative +dative +85470 accusative +dative +dative +85474 dative +dative +85479 nominative +nominative +85482 dative +dative +genitive +dative +85487 accusative +85489 dative +dative +genitive +85494 accusative +accusative +genitive +accusative +genitive +dative +dative +85503 accusative +dative +dative +85508 genitive +accusative +85511 accusative +accusative +genitive +accusative +genitive +dative +dative +85519 nominative +genitive +85527 accusative +85530 accusative +85532 nominative +85538 accusative +85541 accusative +85547 dative +85549 accusative +accusative +85552 accusative +nominative +85555 dative +85558 genitive +85560 accusative +85562 genitive +85564 accusative +85566 nominative +dative +dative +85571 nominative +genitive +genitive +85577 genitive +85579 accusative +85581 accusative +genitive +85584 nominative +85586 genitive +genitive +85589 dative +dative +accusative +85594 accusative +accusative +genitive +genitive +genitive +85602 accusative +accusative +genitive +accusative +dative +dative +85609 dative +dative +85612 accusative +accusative +85617 accusative +accusative +genitive +accusative +dative +dative +85624 accusative +85627 nominative +genitive +genitive +85631 nominative +85633 dative +dative +85636 accusative +accusative +85641 dative +85645 nominative +nominative +genitive +nominative +85651 nominative +85653 genitive +genitive +85656 nominative +dative +dative +85660 accusative +accusative +genitive +85664 accusative +85666 nominative +nominative +accusative +accusative +85671 nominative +nominative +genitive +genitive +nominative +85677 nominative +nominative +genitive +genitive +nominative +nominative +85684 dative +dative +dative +dative +genitive +85690 vocative +85693 dative +accusative +85697 nominative +nominative +85700 genitive +genitive +85703 accusative +accusative +85707 nominative +nominative +nominative +dative +dative +dative +85714 dative +85718 nominative +nominative +85722 genitive +genitive +genitive +genitive +85728 genitive +genitive +genitive +nominative +85735 dative +dative +85740 nominative +nominative +nominative +85745 genitive +genitive +genitive +85750 accusative +accusative +accusative +dative +dative +85756 vocative +genitive +85759 nominative +85761 dative +dative +85764 genitive +genitive +genitive +genitive +85769 accusative +85771 accusative +dative +dative +85775 genitive +dative +85779 dative +dative +85785 dative +dative +nominative +nominative +genitive +genitive +nominative +85793 genitive +genitive +85797 dative +dative +genitive +85801 accusative +85803 dative +dative +85809 genitive +genitive +nominative +85813 dative +85817 accusative +85819 dative +genitive +85823 dative +genitive +85826 accusative +85828 nominative +nominative +nominative +85834 accusative +accusative +85841 genitive +85844 accusative +accusative +85850 nominative +nominative +85856 accusative +nominative +nominative +nominative +85861 genitive +genitive +85865 dative +accusative +accusative +85870 genitive +nominative +nominative +85874 nominative +85877 genitive +85880 genitive +genitive +genitive +nominative +nominative +85887 nominative +85891 dative +nominative +nominative +nominative +85896 accusative +nominative +85899 accusative +85901 nominative +nominative +accusative +nominative +85906 genitive +genitive +85909 accusative +85912 genitive +85916 nominative +nominative +nominative +85920 nominative +nominative +nominative +85924 nominative +85926 nominative +85928 nominative +nominative +dative +85932 nominative +85936 nominative +nominative +85940 nominative +85942 genitive +genitive +dative +nominative +accusative +85950 accusative +nominative +nominative +nominative +85955 genitive +genitive +85960 nominative +nominative +nominative +85965 nominative +nominative +85968 nominative +85970 accusative +accusative +85973 accusative +85979 accusative +85981 accusative +85984 accusative +85986 accusative +85990 accusative +85993 accusative +85996 dative +dative +85999 nominative +86003 nominative +86005 accusative +86007 nominative +nominative +86010 dative +nominative +86018 dative +nominative +86022 dative +dative +genitive +nominative +86027 nominative +86030 dative +86032 nominative +86034 accusative +accusative +86039 accusative +86041 accusative +86044 accusative +86047 accusative +accusative +86052 accusative +86055 accusative +nominative +86059 nominative +86061 accusative +86063 nominative +nominative +86066 dative +nominative +86070 accusative +accusative +dative +dative +dative +86076 accusative +accusative +86079 dative +nominative +nominative +86085 dative +dative +genitive +genitive +86090 accusative +86092 accusative +86095 accusative +accusative +86098 dative +dative +genitive +accusative +dative +dative +genitive +genitive +genitive +86108 accusative +accusative +86111 dative +dative +genitive +genitive +dative +dative +86118 dative +dative +genitive +nominative +nominative +nominative +nominative +accusative +86128 genitive +genitive +genitive +genitive +genitive +nominative +dative +dative +86137 genitive +genitive +genitive +genitive +genitive +86145 nominative +nominative +dative +dative +86150 dative +genitive +86153 dative +dative +dative +genitive +86158 nominative +nominative +86161 dative +86163 dative +dative +86166 nominative +nominative +genitive +genitive +genitive +genitive +86173 dative +dative +86176 accusative +86178 genitive +genitive +genitive +genitive +86183 genitive +genitive +86186 nominative +nominative +genitive +genitive +86191 dative +86194 genitive +genitive +nominative +nominative +accusative +genitive +accusative +nominative +86203 dative +genitive +genitive +86208 genitive +86210 accusative +accusative +86213 dative +dative +86216 nominative +nominative +genitive +genitive +86222 dative +dative +dative +86227 accusative +86230 accusative +86232 nominative +86234 accusative +nominative +accusative +genitive +genitive +86241 nominative +86243 accusative +accusative +genitive +genitive +86248 nominative +nominative +genitive +genitive +nominative +86254 nominative +nominative +genitive +genitive +nominative +86260 nominative +86262 nominative +nominative +genitive +genitive +nominative +86268 accusative +86270 dative +dative +genitive +genitive +86280 nominative +86282 dative +nominative +dative +86289 nominative +86293 dative +86296 dative +86298 nominative +genitive +86302 dative +86305 nominative +accusative +genitive +86310 nominative +86313 genitive +86316 nominative +86318 dative +86320 nominative +nominative +nominative +86324 accusative +86326 nominative +nominative +nominative +86330 accusative +86333 nominative +nominative +genitive +genitive +accusative +accusative +86340 genitive +86343 dative +nominative +nominative +86347 genitive +accusative +accusative +86352 accusative +accusative +accusative +genitive +86357 genitive +genitive +86360 dative +genitive +genitive +86365 vocative +nominative +86369 dative +dative +genitive +86373 accusative +86378 accusative +86384 dative +accusative +accusative +genitive +genitive +86392 nominative +dative +genitive +86396 nominative +nominative +genitive +86403 accusative +genitive +86407 accusative +86410 accusative +genitive +86413 dative +86415 vocative +nominative +nominative +nominative +nominative +nominative +86422 dative +dative +genitive +86427 nominative +genitive +86431 nominative +86433 nominative +86435 nominative +genitive +86438 nominative +genitive +86449 nominative +nominative +nominative +genitive +86454 genitive +86456 accusative +accusative +86460 accusative +accusative +86463 nominative +nominative +genitive +genitive +accusative +accusative +genitive +genitive +genitive +genitive +86475 dative +dative +nominative +nominative +86481 nominative +86484 accusative +accusative +86487 dative +86490 nominative +nominative +nominative +86495 genitive +genitive +genitive +genitive +86500 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +86511 nominative +nominative +nominative +86518 genitive +86522 accusative +86525 nominative +accusative +accusative +genitive +genitive +nominative +nominative +86533 nominative +86535 dative +86537 nominative +accusative +accusative +accusative +genitive +genitive +genitive +86545 dative +dative +86549 nominative +nominative +86553 nominative +86555 accusative +86557 nominative +accusative +86562 accusative +86567 genitive +86572 nominative +nominative +86575 dative +dative +genitive +86579 accusative +accusative +86587 nominative +nominative +nominative +86591 dative +dative +86594 nominative +nominative +accusative +accusative +86599 nominative +nominative +nominative +genitive +genitive +86606 accusative +86609 genitive +86613 dative +dative +accusative +accusative +accusative +86620 accusative +dative +86623 accusative +dative +dative +86627 accusative +86631 accusative +genitive +genitive +genitive +genitive +genitive +86638 accusative +86640 accusative +accusative +86643 dative +dative +86646 accusative +86648 accusative +86652 accusative +86654 accusative +86658 accusative +86660 accusative +86664 accusative +86667 accusative +86669 nominative +nominative +86672 genitive +nominative +86675 genitive +86677 nominative +genitive +genitive +genitive +86685 genitive +genitive +86688 accusative +86693 dative +accusative +accusative +dative +86698 nominative +86701 genitive +genitive +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +86715 nominative +nominative +86719 dative +genitive +genitive +nominative +86726 genitive +nominative +accusative +86731 genitive +genitive +genitive +genitive +nominative +86737 nominative +86739 nominative +86741 nominative +86743 nominative +86745 nominative +86747 nominative +86752 genitive +86754 accusative +accusative +accusative +86759 nominative +genitive +86763 dative +dative +86767 genitive +genitive +accusative +86774 nominative +86776 nominative +86778 nominative +86780 nominative +86782 nominative +86784 nominative +86786 nominative +86788 nominative +86790 nominative +86792 nominative +nominative +nominative +86796 accusative +86799 genitive +genitive +genitive +genitive +genitive +86805 dative +dative +dative +dative +genitive +accusative +86813 dative +86816 genitive +dative +genitive +genitive +genitive +86822 dative +dative +86825 nominative +dative +86828 nominative +86830 nominative +nominative +dative +dative +genitive +86837 nominative +nominative +nominative +86842 genitive +genitive +86845 genitive +genitive +genitive +genitive +genitive +genitive +86852 accusative +nominative +86855 nominative +genitive +nominative +nominative +86860 nominative +nominative +86863 nominative +nominative +86866 nominative +nominative +86869 nominative +nominative +86872 nominative +nominative +genitive +nominative +nominative +86879 genitive +nominative +nominative +accusative +86884 accusative +nominative +nominative +86888 genitive +nominative +nominative +86892 accusative +accusative +86897 nominative +86900 nominative +nominative +genitive +genitive +86906 nominative +nominative +86909 genitive +nominative +nominative +86915 nominative +genitive +nominative +nominative +86921 dative +86923 dative +nominative +nominative +86928 nominative +nominative +genitive +genitive +nominative +nominative +genitive +genitive +86937 nominative +nominative +genitive +genitive +86943 accusative +86945 genitive +nominative +nominative +nominative +86950 accusative +accusative +accusative +86956 dative +dative +nominative +86961 accusative +86964 nominative +accusative +nominative +86968 genitive +genitive +genitive +genitive +genitive +86975 genitive +86977 genitive +accusative +accusative +86981 accusative +86983 nominative +86985 accusative +nominative +genitive +genitive +86992 genitive +86995 genitive +genitive +86998 dative +87000 nominative +nominative +87003 dative +dative +87007 accusative +accusative +87011 accusative +accusative +87015 accusative +87018 nominative +87020 dative +dative +87025 dative +dative +87030 accusative +87035 accusative +87040 genitive +genitive +87043 genitive +genitive +87046 genitive +genitive +genitive +87051 nominative +nominative +dative +dative +87057 accusative +accusative +87060 accusative +87064 dative +accusative +accusative +genitive +87071 nominative +nominative +genitive +87075 dative +dative +dative +87080 accusative +87084 accusative +87089 dative +accusative +87094 dative +dative +genitive +nominative +87100 vocative +87102 nominative +87104 nominative +nominative +nominative +dative +dative +87111 nominative +nominative +dative +dative +accusative +accusative +87122 nominative +nominative +accusative +genitive +genitive +87128 genitive +genitive +genitive +87132 accusative +87134 accusative +87136 accusative +87138 accusative +87140 accusative +87143 nominative +nominative +nominative +87147 accusative +accusative +87151 accusative +accusative +genitive +87156 dative +dative +accusative +genitive +accusative +87162 accusative +87166 accusative +accusative +genitive +genitive +genitive +87172 accusative +genitive +accusative +87177 accusative +accusative +87181 accusative +87183 accusative +87185 genitive +87189 genitive +87193 dative +dative +87197 accusative +87199 accusative +genitive +accusative +genitive +87204 accusative +87206 accusative +accusative +87211 dative +dative +87215 dative +87217 nominative +genitive +nominative +87222 nominative +genitive +genitive +87226 nominative +87229 genitive +genitive +87233 nominative +nominative +genitive +genitive +genitive +87239 nominative +nominative +genitive +genitive +nominative +nominative +87247 accusative +nominative +87250 nominative +87252 nominative +87254 genitive +genitive +87259 nominative +87262 nominative +genitive +87265 dative +accusative +87269 nominative +87274 nominative +87277 accusative +87280 nominative +nominative +87283 nominative +accusative +87286 accusative +87288 accusative +accusative +87291 genitive +87293 nominative +nominative +accusative +genitive +87298 accusative +87302 accusative +87306 genitive +87310 genitive +87312 dative +dative +genitive +genitive +87321 dative +accusative +genitive +87325 accusative +genitive +87328 nominative +nominative +87331 dative +87334 vocative +87336 nominative +nominative +genitive +genitive +genitive +87342 nominative +nominative +87345 accusative +accusative +87348 genitive +87350 accusative +87353 dative +87355 accusative +genitive +87361 accusative +87363 nominative +accusative +genitive +genitive +accusative +87369 accusative +accusative +87372 nominative +dative +dative +genitive +genitive +87380 nominative +genitive +nominative +87384 accusative +dative +dative +dative +87389 nominative +87392 accusative +accusative +accusative +87396 genitive +nominative +nominative +nominative +87402 dative +87404 nominative +87406 genitive +nominative +87413 dative +dative +genitive +nominative +87419 accusative +accusative +nominative +87423 accusative +87426 nominative +87429 accusative +accusative +nominative +87433 accusative +87435 genitive +87438 accusative +87441 genitive +nominative +nominative +87446 dative +dative +genitive +87451 dative +dative +genitive +nominative +87456 nominative +nominative +genitive +genitive +accusative +87466 dative +dative +genitive +accusative +accusative +87474 dative +dative +genitive +87478 nominative +nominative +accusative +87483 genitive +87486 dative +87489 accusative +87491 dative +87494 accusative +87497 nominative +nominative +nominative +nominative +nominative +87503 dative +87509 nominative +87511 genitive +87513 genitive +87515 nominative +nominative +nominative +genitive +nominative +87521 accusative +accusative +accusative +accusative +87526 nominative +87528 nominative +87530 accusative +accusative +genitive +87538 accusative +87544 genitive +87551 genitive +87561 nominative +nominative +nominative +genitive +genitive +accusative +87569 nominative +87571 dative +dative +87574 nominative +87576 vocative +nominative +87579 dative +dative +genitive +87583 nominative +nominative +87586 genitive +87588 nominative +nominative +87591 genitive +genitive +87600 accusative +accusative +accusative +87604 nominative +nominative +genitive +87609 accusative +accusative +genitive +genitive +nominative +nominative +genitive +87619 nominative +87622 nominative +nominative +87625 nominative +87627 accusative +87630 dative +87632 dative +dative +87635 accusative +87637 nominative +87642 dative +accusative +87645 dative +nominative +87648 dative +accusative +87651 dative +87654 accusative +accusative +87657 accusative +accusative +accusative +87661 accusative +accusative +genitive +87665 accusative +accusative +87668 accusative +87673 nominative +nominative +accusative +accusative +genitive +87682 nominative +nominative +87686 genitive +genitive +genitive +genitive +87692 nominative +nominative +accusative +accusative +genitive +accusative +87703 dative +accusative +87706 nominative +nominative +87710 dative +dative +87713 genitive +genitive +vocative +accusative +accusative +genitive +87720 accusative +accusative +genitive +87724 nominative +87726 nominative +87729 accusative +accusative +genitive +87733 accusative +87735 dative +nominative +nominative +87739 dative +accusative +accusative +nominative +87745 accusative +dative +genitive +87752 dative +87754 dative +nominative +87757 accusative +genitive +87762 dative +87765 genitive +87767 nominative +nominative +87771 nominative +87773 nominative +accusative +87776 nominative +accusative +87781 nominative +nominative +87785 nominative +nominative +87791 dative +nominative +nominative +accusative +genitive +accusative +genitive +87801 accusative +genitive +87806 genitive +87808 genitive +87810 nominative +87813 nominative +nominative +genitive +87817 accusative +87820 accusative +87823 accusative +87826 accusative +dative +87829 nominative +nominative +genitive +genitive +87836 accusative +accusative +genitive +87840 genitive +87851 dative +genitive +dative +nominative +nominative +dative +dative +87859 accusative +87861 accusative +87864 nominative +nominative +genitive +nominative +genitive +87870 nominative +nominative +genitive +nominative +genitive +dative +87877 nominative +nominative +genitive +87882 dative +dative +dative +87888 accusative +87890 nominative +genitive +nominative +accusative +accusative +genitive +87900 genitive +accusative +accusative +87905 accusative +87907 genitive +87910 nominative +nominative +genitive +nominative +genitive +nominative +nominative +nominative +87920 nominative +87922 genitive +87925 nominative +nominative +nominative +87929 nominative +nominative +87933 nominative +nominative +nominative +87937 nominative +nominative +87941 nominative +genitive +genitive +87946 nominative +nominative +nominative +87951 dative +87953 nominative +genitive +genitive +genitive +genitive +genitive +genitive +87963 genitive +genitive +87969 nominative +accusative +accusative +87974 nominative +nominative +accusative +87980 nominative +87982 nominative +87985 dative +dative +87989 nominative +dative +dative +87994 accusative +88000 nominative +nominative +genitive +88004 accusative +genitive +88009 genitive +88013 accusative +88015 accusative +genitive +88019 accusative +accusative +nominative +88024 accusative +nominative +genitive +88029 dative +dative +88033 nominative +88036 nominative +88040 dative +dative +88044 nominative +88046 nominative +nominative +88050 accusative +88053 nominative +88055 genitive +88057 accusative +genitive +88062 accusative +88065 accusative +dative +88068 nominative +nominative +88071 accusative +88073 dative +dative +dative +88077 vocative +88080 accusative +88082 accusative +accusative +accusative +88089 dative +nominative +88092 nominative +88094 genitive +dative +dative +88099 genitive +nominative +nominative +genitive +genitive +88107 nominative +nominative +88114 genitive +nominative +nominative +88118 accusative +88120 genitive +88122 nominative +dative +nominative +88126 genitive +nominative +88130 accusative +accusative +genitive +88135 accusative +accusative +nominative +88139 accusative +88142 accusative +accusative +nominative +88146 accusative +accusative +88149 nominative +nominative +nominative +88153 nominative +nominative +genitive +genitive +88159 nominative +88162 dative +dative +88167 dative +genitive +dative +88172 nominative +88175 dative +dative +dative +88180 nominative +88185 nominative +nominative +accusative +accusative +88190 accusative +88192 accusative +accusative +88196 nominative +genitive +88199 genitive +88201 genitive +genitive +88204 nominative +nominative +nominative +genitive +88209 nominative +nominative +nominative +genitive +88214 nominative +88216 accusative +genitive +88219 nominative +nominative +genitive +88224 nominative +88226 dative +88229 dative +88232 genitive +88235 genitive +88238 accusative +nominative +nominative +dative +nominative +nominative +88245 accusative +accusative +88249 vocative +88252 genitive +genitive +genitive +genitive +accusative +88258 accusative +accusative +genitive +accusative +accusative +accusative +dative +dative +accusative +accusative +accusative +accusative +genitive +88274 dative +dative +dative +88279 dative +dative +genitive +genitive +88284 accusative +88286 accusative +nominative +nominative +nominative +genitive +genitive +nominative +nominative +88295 nominative +88297 nominative +88301 genitive +genitive +genitive +genitive +dative +dative +dative +dative +88310 dative +88314 accusative +88320 accusative +88323 dative +nominative +nominative +88327 accusative +genitive +88332 dative +dative +accusative +accusative +88338 nominative +nominative +nominative +88342 accusative +accusative +accusative +88347 nominative +nominative +nominative +nominative +88353 dative +88355 nominative +88357 nominative +genitive +nominative +88361 nominative +accusative +accusative +88365 accusative +accusative +accusative +accusative +dative +88371 accusative +88373 accusative +accusative +genitive +genitive +88378 accusative +88380 dative +dative +88383 nominative +nominative +88386 dative +dative +88389 nominative +nominative +88392 dative +dative +nominative +nominative +88397 dative +nominative +nominative +88401 dative +nominative +nominative +88405 dative +nominative +nominative +nominative +nominative +accusative +accusative +nominative +dative +dative +dative +dative +88418 accusative +nominative +dative +dative +accusative +nominative +dative +dative +88427 nominative +dative +dative +nominative +dative +dative +nominative +dative +dative +nominative +dative +dative +nominative +dative +dative +nominative +dative +dative +genitive +genitive +nominative +accusative +accusative +nominative +88452 accusative +accusative +88460 genitive +88463 genitive +accusative +accusative +88467 accusative +nominative +88470 accusative +accusative +nominative +88474 dative +dative +nominative +88479 nominative +88481 dative +dative +accusative +88485 genitive +nominative +nominative +accusative +88490 genitive +genitive +88493 nominative +nominative +88496 genitive +88498 genitive +genitive +nominative +vocative +88503 accusative +nominative +88507 accusative +dative +dative +88512 dative +nominative +nominative +88517 nominative +88521 nominative +nominative +genitive +88525 accusative +88529 accusative +88531 accusative +nominative +accusative +genitive +88537 accusative +accusative +genitive +88543 genitive +genitive +88548 dative +dative +accusative +accusative +nominative +nominative +dative +dative +88560 nominative +88564 genitive +88566 nominative +nominative +88569 genitive +nominative +88573 nominative +nominative +dative +dative +dative +genitive +genitive +dative +88583 nominative +nominative +dative +accusative +88589 nominative +nominative +88592 nominative +88594 dative +dative +dative +88598 dative +dative +88604 accusative +accusative +accusative +accusative +88611 accusative +88613 genitive +88615 genitive +nominative +88618 dative +88620 accusative +accusative +88624 accusative +accusative +88631 accusative +accusative +88635 genitive +nominative +88638 nominative +88640 accusative +dative +accusative +accusative +dative +88646 nominative +88649 accusative +88651 accusative +accusative +88656 accusative +accusative +88660 accusative +88662 accusative +88665 nominative +genitive +88669 accusative +accusative +nominative +88673 dative +accusative +accusative +dative +accusative +accusative +accusative +accusative +dative +accusative +accusative +accusative +accusative +dative +accusative +accusative +accusative +accusative +dative +accusative +accusative +accusative +accusative +dative +accusative +88701 accusative +accusative +88705 nominative +nominative +accusative +accusative +accusative +88712 nominative +88723 nominative +nominative +nominative +88727 dative +dative +dative +88732 dative +88734 accusative +88736 genitive +88738 accusative +nominative +nominative +dative +88743 accusative +88747 nominative +genitive +nominative +nominative +88752 nominative +accusative +accusative +accusative +88757 nominative +88759 accusative +88761 genitive +88766 genitive +nominative +nominative +88772 nominative +nominative +88776 nominative +nominative +88781 accusative +accusative +genitive +genitive +88787 accusative +accusative +genitive +genitive +88793 dative +88797 dative +88799 dative +88801 dative +88803 dative +88805 dative +88807 dative +88810 accusative +accusative +accusative +accusative +88815 genitive +genitive +accusative +88821 accusative +88823 accusative +accusative +dative +dative +88830 accusative +genitive +88833 nominative +88836 accusative +88838 nominative +nominative +accusative +88842 nominative +nominative +accusative +88846 accusative +88850 nominative +88852 nominative +accusative +accusative +88858 nominative +nominative +accusative +88862 nominative +nominative +88865 nominative +nominative +accusative +accusative +dative +dative +dative +88879 nominative +nominative +88882 accusative +88885 nominative +88887 accusative +88889 accusative +88891 nominative +88893 accusative +accusative +nominative +88897 dative +dative +dative +88901 nominative +nominative +accusative +accusative +dative +88908 nominative +nominative +dative +88914 dative +dative +88917 nominative +88919 nominative +dative +88925 dative +dative +88928 nominative +genitive +dative +88933 nominative +dative +88940 dative +dative +88946 dative +dative +88956 genitive +genitive +88961 accusative +nominative +88968 genitive +88970 genitive +88973 nominative +accusative +88976 accusative +accusative +genitive +88981 nominative +accusative +88984 accusative +accusative +genitive +88988 nominative +88990 dative +dative +genitive +genitive +88997 nominative +88999 nominative +89001 dative +89003 nominative +nominative +89006 nominative +nominative +89009 dative +dative +89013 nominative +genitive +89016 genitive +accusative +89019 dative +dative +89023 accusative +89026 accusative +89029 accusative +89032 dative +dative +accusative +89036 accusative +89041 dative +dative +89044 nominative +nominative +89047 genitive +89050 dative +dative +nominative +nominative +89055 dative +nominative +89060 accusative +nominative +nominative +genitive +89067 accusative +89070 dative +dative +genitive +accusative +89076 genitive +nominative +89082 genitive +nominative +nominative +89088 nominative +nominative +genitive +genitive +nominative +89094 nominative +89096 nominative +89098 nominative +89100 nominative +89102 dative +dative +89105 nominative +89107 dative +nominative +dative +dative +nominative +dative +dative +89115 nominative +dative +dative +89121 accusative +genitive +genitive +89125 accusative +genitive +genitive +genitive +89130 accusative +89133 genitive +89135 accusative +accusative +genitive +genitive +89140 nominative +nominative +89143 nominative +dative +dative +dative +89148 genitive +dative +nominative +nominative +89154 accusative +89157 accusative +89160 dative +nominative +nominative +genitive +89165 nominative +accusative +accusative +89170 accusative +89173 genitive +genitive +nominative +nominative +89178 nominative +accusative +89181 dative +89185 nominative +nominative +89192 genitive +89194 nominative +nominative +89198 genitive +nominative +89203 nominative +nominative +nominative +accusative +accusative +genitive +genitive +89213 dative +89215 nominative +genitive +dative +89221 accusative +accusative +89224 accusative +89227 nominative +nominative +89230 dative +89235 nominative +nominative +genitive +genitive +accusative +89242 accusative +89244 nominative +89247 accusative +accusative +accusative +89253 genitive +genitive +89257 genitive +genitive +genitive +genitive +accusative +accusative +89265 nominative +nominative +genitive +genitive +89270 genitive +genitive +89273 dative +accusative +accusative +89278 dative +89280 accusative +accusative +89285 dative +dative +89288 accusative +accusative +89291 accusative +genitive +genitive +genitive +genitive +genitive +89299 accusative +89302 nominative +nominative +89305 accusative +89307 accusative +genitive +genitive +89312 accusative +accusative +genitive +89317 genitive +genitive +89320 accusative +89322 accusative +accusative +genitive +genitive +89327 nominative +nominative +89330 genitive +89332 accusative +accusative +89337 accusative +89339 dative +89341 dative +89343 dative +dative +genitive +89350 vocative +89353 genitive +genitive +genitive +89358 nominative +nominative +nominative +89362 accusative +accusative +89366 accusative +nominative +nominative +nominative +89372 nominative +89375 nominative +nominative +genitive +genitive +89380 nominative +nominative +89383 genitive +89385 dative +nominative +89389 nominative +nominative +genitive +genitive +89394 accusative +genitive +genitive +89398 genitive +89400 dative +89403 accusative +89405 accusative +89407 dative +dative +89410 dative +genitive +genitive +89414 vocative +genitive +89418 nominative +nominative +89421 genitive +89424 nominative +nominative +89427 genitive +nominative +genitive +genitive +genitive +nominative +89434 accusative +89439 dative +89441 genitive +89443 nominative +accusative +89446 accusative +accusative +accusative +accusative +dative +89452 genitive +genitive +89455 accusative +89457 accusative +accusative +genitive +genitive +89462 accusative +accusative +accusative +accusative +accusative +genitive +genitive +89471 nominative +nominative +genitive +genitive +nominative +nominative +89478 dative +dative +89482 accusative +accusative +89485 dative +dative +accusative +89489 accusative +accusative +89495 accusative +genitive +89499 nominative +89501 genitive +89503 accusative +genitive +dative +89507 dative +89509 dative +genitive +89512 genitive +89514 dative +genitive +genitive +89518 accusative +89520 genitive +89522 dative +89524 genitive +genitive +89527 accusative +accusative +genitive +genitive +89533 accusative +89538 nominative +89542 accusative +accusative +89549 dative +89553 genitive +89555 nominative +89562 accusative +accusative +genitive +89567 accusative +89571 accusative +nominative +89574 dative +dative +dative +89578 accusative +nominative +genitive +89583 accusative +89585 genitive +genitive +89591 accusative +accusative +89595 nominative +89597 accusative +89600 genitive +89604 genitive +accusative +89607 genitive +89613 accusative +nominative +dative +dative +89619 nominative +89621 nominative +accusative +accusative +89626 accusative +accusative +genitive +genitive +genitive +89632 dative +89636 nominative +89638 genitive +89641 dative +dative +genitive +89645 nominative +nominative +89650 dative +dative +89653 dative +89655 accusative +nominative +89658 nominative +dative +accusative +accusative +accusative +89665 genitive +89667 accusative +89671 nominative +89673 accusative +89675 dative +genitive +genitive +89680 vocative +89683 genitive +genitive +genitive +genitive +genitive +89690 genitive +genitive +genitive +genitive +accusative +89696 dative +89698 dative +dative +89701 genitive +89703 accusative +accusative +89708 genitive +genitive +89711 dative +dative +89714 nominative +nominative +genitive +nominative +89719 accusative +nominative +dative +dative +89726 dative +nominative +89729 accusative +89731 genitive +genitive +89734 dative +89736 nominative +nominative +genitive +genitive +89741 genitive +genitive +89746 dative +accusative +accusative +accusative +genitive +accusative +accusative +genitive +genitive +genitive +89757 dative +89759 accusative +89762 dative +89764 genitive +genitive +89768 dative +89771 dative +genitive +89774 dative +89777 nominative +89779 nominative +genitive +89782 genitive +genitive +89785 accusative +89787 accusative +accusative +accusative +genitive +89792 dative +dative +nominative +89796 genitive +genitive +genitive +accusative +genitive +accusative +89803 dative +89806 nominative +nominative +89810 nominative +nominative +nominative +genitive +genitive +89816 accusative +89818 accusative +genitive +accusative +89822 accusative +accusative +accusative +genitive +nominative +89828 nominative +genitive +genitive +89832 accusative +89834 accusative +nominative +accusative +89839 accusative +89841 accusative +89843 accusative +accusative +accusative +genitive +89848 accusative +genitive +nominative +89852 nominative +89854 dative +dative +nominative +89859 genitive +89862 dative +89864 accusative +accusative +accusative +genitive +89869 dative +89871 accusative +accusative +accusative +genitive +89876 dative +89878 accusative +accusative +accusative +genitive +89883 accusative +accusative +accusative +89887 dative +89889 accusative +89891 genitive +genitive +89894 accusative +accusative +accusative +genitive +89899 accusative +89901 genitive +genitive +accusative +accusative +89906 dative +89908 accusative +89910 accusative +accusative +accusative +89914 dative +89916 accusative +accusative +accusative +nominative +accusative +89923 dative +89925 accusative +accusative +accusative +89929 dative +89931 accusative +accusative +genitive +89935 genitive +89937 accusative +accusative +accusative +accusative +accusative +89943 accusative +89945 dative +accusative +89948 accusative +89950 accusative +accusative +89953 accusative +accusative +genitive +89957 accusative +89959 accusative +89961 dative +accusative +accusative +89965 accusative +89967 dative +dative +89970 accusative +nominative +nominative +nominative +genitive +genitive +89977 vocative +89979 accusative +89981 accusative +accusative +accusative +89985 accusative +accusative +89988 accusative +accusative +accusative +nominative +89993 accusative +89997 genitive +89999 nominative +nominative +dative +dative +genitive +dative +90008 dative +genitive +dative +90013 genitive +genitive +90016 genitive +90018 accusative +accusative +genitive +genitive +90023 nominative +genitive +nominative +90027 accusative +90031 dative +90035 accusative +accusative +90039 accusative +accusative +90042 accusative +90044 accusative +accusative +90047 nominative +nominative +genitive +genitive +90052 accusative +accusative +90055 accusative +accusative +genitive +90059 dative +nominative +nominative +genitive +genitive +genitive +genitive +90067 genitive +90069 accusative +nominative +nominative +nominative +genitive +90075 nominative +90077 nominative +90079 nominative +nominative +nominative +genitive +90084 accusative +nominative +nominative +nominative +nominative +accusative +accusative +90092 dative +90094 accusative +nominative +nominative +nominative +genitive +90100 genitive +genitive +genitive +90104 accusative +nominative +nominative +nominative +genitive +genitive +90111 nominative +nominative +nominative +90115 dative +dative +accusative +90120 accusative +accusative +genitive +90124 accusative +accusative +genitive +genitive +90129 accusative +genitive +dative +dative +genitive +90135 genitive +90139 genitive +genitive +90142 accusative +genitive +genitive +genitive +90147 accusative +genitive +90150 accusative +accusative +accusative +genitive +dative +dative +dative +90158 genitive +genitive +dative +nominative +nominative +90164 accusative +accusative +genitive +genitive +90169 nominative +nominative +nominative +genitive +genitive +90175 genitive +genitive +90178 nominative +nominative +nominative +dative +dative +genitive +genitive +dative +dative +90188 dative +dative +90191 dative +dative +dative +dative +90196 dative +dative +dative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +90207 dative +dative +genitive +90211 genitive +dative +nominative +90215 nominative +90217 genitive +genitive +genitive +90221 genitive +genitive +genitive +90225 dative +dative +90229 genitive +90231 dative +dative +genitive +genitive +dative +dative +dative +90239 dative +dative +90243 dative +90246 dative +90248 dative +dative +90251 dative +dative +90254 nominative +nominative +genitive +genitive +90260 dative +90262 accusative +90266 dative +dative +accusative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +nominative +90279 accusative +90281 genitive +accusative +90284 dative +dative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +nominative +90295 genitive +90298 accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +90308 vocative +90310 accusative +90312 genitive +genitive +genitive +genitive +genitive +genitive +genitive +90320 accusative +accusative +90323 nominative +90328 dative +nominative +90332 nominative +90334 dative +dative +dative +90339 dative +dative +dative +90343 vocative +genitive +90346 dative +90348 genitive +90350 genitive +genitive +90353 nominative +90355 dative +90359 accusative +90361 nominative +genitive +90365 nominative +90367 genitive +90369 nominative +genitive +90372 nominative +genitive +90375 nominative +genitive +90378 nominative +nominative +90381 nominative +90384 genitive +90387 accusative +accusative +genitive +90393 accusative +genitive +90398 accusative +90400 accusative +90403 nominative +90407 accusative +accusative +accusative +90414 accusative +genitive +accusative +accusative +90421 accusative +accusative +90426 accusative +nominative +90434 dative +genitive +90439 nominative +nominative +genitive +genitive +90445 nominative +nominative +nominative +genitive +genitive +dative +dative +nominative +90455 dative +dative +dative +nominative +genitive +90464 accusative +accusative +genitive +genitive +90469 accusative +accusative +genitive +genitive +90475 nominative +90477 nominative +90479 nominative +genitive +genitive +genitive +90485 nominative +nominative +accusative +accusative +genitive +genitive +90494 dative +dative +genitive +genitive +90500 nominative +nominative +90503 genitive +genitive +accusative +accusative +90508 nominative +nominative +90511 genitive +genitive +genitive +genitive +90516 accusative +accusative +90520 nominative +accusative +90524 nominative +accusative +90528 nominative +90530 accusative +accusative +90533 dative +accusative +90536 dative +accusative +90539 dative +dative +dative +90543 dative +90545 dative +accusative +genitive +accusative +90550 genitive +accusative +90553 nominative +nominative +genitive +genitive +nominative +genitive +genitive +90562 nominative +nominative +genitive +genitive +nominative +genitive +genitive +90570 vocative +90572 accusative +accusative +genitive +90577 nominative +nominative +90580 accusative +90582 nominative +nominative +90585 nominative +nominative +90588 accusative +accusative +genitive +genitive +90593 nominative +nominative +90597 accusative +accusative +90600 accusative +accusative +genitive +genitive +90605 nominative +nominative +90609 accusative +accusative +90612 accusative +accusative +genitive +genitive +90617 accusative +accusative +accusative +90621 accusative +90623 nominative +nominative +90626 accusative +accusative +90632 nominative +nominative +90635 genitive +genitive +90639 genitive +nominative +90643 dative +dative +nominative +90647 dative +90649 genitive +nominative +90652 nominative +90654 nominative +90656 nominative +90660 nominative +nominative +90663 dative +90665 vocative +nominative +nominative +90669 accusative +90673 accusative +genitive +90676 genitive +nominative +dative +accusative +accusative +genitive +genitive +90686 accusative +90689 dative +90692 accusative +accusative +90695 accusative +accusative +nominative +90699 dative +90702 dative +90705 dative +dative +90709 accusative +90711 nominative +nominative +genitive +90715 nominative +nominative +genitive +90720 dative +genitive +dative +90725 dative +genitive +90728 genitive +90730 nominative +nominative +genitive +90736 dative +genitive +90740 dative +genitive +90743 accusative +90746 dative +dative +90750 accusative +genitive +genitive +genitive +90755 genitive +genitive +genitive +genitive +genitive +genitive +genitive +90764 genitive +accusative +90767 dative +accusative +accusative +accusative +90772 nominative +nominative +90775 genitive +genitive +90778 accusative +genitive +accusative +nominative +genitive +genitive +genitive +genitive +genitive +90793 accusative +accusative +genitive +genitive +90801 accusative +nominative +90806 nominative +90811 accusative +genitive +90815 accusative +90817 nominative +nominative +dative +dative +accusative +90823 dative +90825 nominative +nominative +90828 genitive +genitive +90831 nominative +nominative +accusative +90836 accusative +accusative +genitive +genitive +90841 nominative +genitive +90844 accusative +genitive +genitive +90849 nominative +nominative +genitive +genitive +nominative +90855 dative +90858 accusative +genitive +genitive +nominative +90865 nominative +nominative +genitive +genitive +90871 nominative +accusative +accusative +genitive +genitive +90878 accusative +accusative +accusative +90882 genitive +genitive +90886 accusative +90888 genitive +genitive +accusative +dative +accusative +90897 dative +genitive +genitive +dative +90903 dative +genitive +dative +accusative +nominative +90909 nominative +nominative +90913 accusative +genitive +genitive +genitive +genitive +90919 nominative +dative +90930 nominative +nominative +90934 accusative +90936 nominative +90938 genitive +90941 nominative +90943 accusative +genitive +nominative +90947 accusative +90949 nominative +accusative +genitive +90953 vocative +nominative +90958 dative +90960 dative +90963 dative +90965 dative +90967 dative +accusative +accusative +90972 accusative +90983 nominative +90988 dative +nominative +90991 nominative +90993 nominative +90997 accusative +91003 nominative +nominative +91006 genitive +91008 nominative +nominative +genitive +91012 nominative +91015 nominative +91017 nominative +91019 nominative +91021 nominative +nominative +91024 genitive +91028 dative +nominative +nominative +91032 nominative +91034 nominative +91037 nominative +nominative +91042 nominative +nominative +91045 nominative +91047 nominative +nominative +91050 nominative +nominative +nominative +91054 nominative +nominative +91057 nominative +nominative +nominative +91062 nominative +accusative +accusative +accusative +91068 accusative +accusative +accusative +91073 genitive +nominative +genitive +nominative +genitive +nominative +91081 accusative +accusative +genitive +genitive +accusative +accusative +dative +91089 nominative +nominative +accusative +91094 nominative +91097 nominative +91102 nominative +91104 accusative +accusative +91108 accusative +accusative +nominative +91112 nominative +nominative +91116 nominative +91119 accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +genitive +nominative +nominative +nominative +91134 nominative +nominative +91139 dative +91142 genitive +nominative +nominative +nominative +91147 nominative +nominative +nominative +91153 genitive +nominative +nominative +accusative +91158 accusative +91161 genitive +nominative +nominative +91167 nominative +91173 genitive +91177 nominative +genitive +91181 nominative +nominative +genitive +genitive +91186 dative +91189 nominative +accusative +accusative +genitive +genitive +91196 accusative +nominative +nominative +91200 nominative +nominative +genitive +genitive +nominative +91206 nominative +91208 nominative +nominative +accusative +91213 nominative +91215 nominative +91218 dative +91220 dative +dative +dative +nominative +91227 nominative +91229 nominative +nominative +genitive +genitive +genitive +nominative +91236 dative +dative +91241 nominative +nominative +accusative +accusative +91246 dative +dative +genitive +91251 nominative +91253 accusative +accusative +genitive +genitive +91259 nominative +91261 nominative +91264 dative +91266 nominative +genitive +91270 nominative +91272 nominative +91274 nominative +91276 nominative +91278 nominative +91280 nominative +91282 nominative +91284 nominative +nominative +genitive +91288 nominative +genitive +91291 nominative +genitive +91294 accusative +91296 nominative +91298 accusative +genitive +91301 accusative +genitive +genitive +91305 accusative +91308 dative +dative +91311 nominative +nominative +91315 dative +91317 accusative +91322 genitive +91325 genitive +genitive +91329 accusative +91332 accusative +dative +91338 dative +91341 nominative +nominative +accusative +nominative +91349 genitive +accusative +91355 nominative +nominative +nominative +91360 accusative +accusative +genitive +genitive +91366 accusative +accusative +genitive +genitive +91372 nominative +nominative +91375 dative +91377 genitive +genitive +91380 vocative +accusative +91384 accusative +91386 accusative +91388 accusative +91391 dative +91393 accusative +91396 nominative +91400 nominative +91402 genitive +genitive +91406 genitive +genitive +91409 nominative +accusative +91414 accusative +accusative +91422 accusative +91426 nominative +91428 nominative +91433 genitive +91441 nominative +dative +91446 nominative +nominative +accusative +accusative +accusative +accusative +91454 accusative +91456 nominative +91458 dative +dative +91461 dative +91463 dative +nominative +nominative +91467 accusative +91469 nominative +nominative +91472 dative +nominative +nominative +91476 nominative +nominative +nominative +nominative +91481 nominative +nominative +91484 genitive +91486 genitive +91499 nominative +dative +dative +dative +nominative +91505 nominative +91507 nominative +91510 nominative +genitive +genitive +genitive +nominative +91519 nominative +accusative +91522 accusative +91525 accusative +genitive +accusative +nominative +91531 accusative +accusative +91535 dative +91538 accusative +accusative +91542 dative +dative +91545 genitive +genitive +nominative +accusative +91552 accusative +nominative +genitive +91557 accusative +accusative +91560 dative +accusative +nominative +91564 genitive +nominative +nominative +91568 nominative +91570 dative +nominative +accusative +91574 accusative +accusative +genitive +accusative +91579 dative +dative +91584 dative +dative +91590 genitive +genitive +91593 accusative +91595 nominative +91600 accusative +91602 nominative +nominative +91608 accusative +accusative +genitive +genitive +91613 accusative +accusative +91618 dative +nominative +nominative +genitive +genitive +91625 dative +accusative +91629 dative +91632 accusative +91635 dative +91637 dative +genitive +91642 dative +nominative +91645 nominative +nominative +nominative +91650 dative +dative +91653 accusative +accusative +genitive +genitive +91659 nominative +nominative +91669 genitive +genitive +nominative +accusative +accusative +accusative +nominative +91677 nominative +91679 nominative +dative +dative +91683 nominative +dative +dative +91689 nominative +accusative +91692 accusative +accusative +91695 dative +dative +genitive +genitive +genitive +genitive +genitive +91703 genitive +genitive +genitive +91707 dative +dative +genitive +genitive +genitive +genitive +91714 accusative +accusative +dative +dative +91719 accusative +genitive +genitive +91723 nominative +nominative +91727 dative +dative +genitive +genitive +91732 nominative +nominative +nominative +genitive +91739 nominative +nominative +accusative +accusative +accusative +91746 accusative +accusative +accusative +91751 nominative +nominative +91755 nominative +91758 nominative +nominative +genitive +nominative +91767 dative +dative +91771 dative +genitive +91774 genitive +91777 dative +genitive +91780 genitive +91782 dative +91784 dative +dative +91788 dative +91791 dative +dative +genitive +genitive +genitive +91797 dative +dative +91800 dative +91802 dative +91807 genitive +genitive +91813 dative +91817 nominative +nominative +nominative +91821 nominative +91823 nominative +91825 nominative +91827 nominative +91829 nominative +91831 nominative +dative +dative +91837 nominative +dative +accusative +91843 accusative +91845 nominative +91848 accusative +91850 nominative +nominative +91854 accusative +accusative +91857 genitive +genitive +91860 nominative +genitive +accusative +nominative +91865 accusative +accusative +91869 genitive +genitive +91874 genitive +genitive +91880 nominative +nominative +accusative +accusative +91888 dative +91890 nominative +nominative +nominative +91894 genitive +genitive +91899 accusative +91902 accusative +91906 accusative +accusative +91909 accusative +accusative +91912 dative +dative +accusative +91917 accusative +dative +91924 dative +nominative +nominative +nominative +91931 accusative +genitive +genitive +genitive +91936 nominative +91938 genitive +91941 nominative +91943 genitive +91948 nominative +dative +91952 accusative +91955 genitive +91957 accusative +91962 accusative +91967 nominative +91972 accusative +accusative +91978 nominative +genitive +accusative +91986 nominative +91988 nominative +91990 nominative +91992 nominative +91994 nominative +91996 nominative +91998 nominative +92000 nominative +92002 nominative +92004 nominative +accusative +genitive +92009 nominative +nominative +92019 dative +dative +genitive +genitive +genitive +genitive +92027 dative +dative +genitive +genitive +genitive +nominative +dative +92037 nominative +92039 nominative +dative +92044 nominative +92047 genitive +nominative +nominative +dative +dative +92053 nominative +nominative +dative +dative +92058 nominative +nominative +92061 accusative +92063 accusative +92066 nominative +nominative +92069 dative +dative +92072 dative +dative +92075 nominative +nominative +dative +dative +92080 nominative +nominative +92083 accusative +accusative +92087 accusative +92090 genitive +genitive +genitive +92096 nominative +nominative +genitive +nominative +genitive +92103 nominative +accusative +accusative +genitive +genitive +92109 genitive +accusative +92117 nominative +nominative +dative +dative +nominative +nominative +92127 nominative +92130 accusative +accusative +92133 nominative +nominative +dative +dative +nominative +nominative +92141 accusative +accusative +nominative +nominative +92146 accusative +92148 nominative +92150 genitive +genitive +92154 nominative +nominative +92157 accusative +accusative +accusative +92165 nominative +nominative +genitive +nominative +genitive +92171 dative +genitive +genitive +92175 genitive +92178 genitive +92182 genitive +92185 genitive +92188 accusative +accusative +92191 dative +dative +genitive +92196 genitive +92198 nominative +dative +genitive +92205 accusative +accusative +nominative +accusative +genitive +accusative +92213 nominative +accusative +accusative +accusative +92218 dative +dative +nominative +nominative +accusative +accusative +92228 nominative +nominative +dative +dative +nominative +nominative +genitive +genitive +genitive +92240 nominative +nominative +92245 nominative +nominative +genitive +genitive +genitive +92253 nominative +nominative +92257 accusative +92262 genitive +92264 accusative +92267 dative +dative +92272 accusative +accusative +92278 accusative +nominative +nominative +92282 accusative +accusative +genitive +92286 accusative +92289 accusative +92292 accusative +92295 accusative +accusative +92300 accusative +92302 nominative +92304 accusative +accusative +92307 genitive +92309 nominative +92312 nominative +92316 dative +dative +92319 dative +dative +nominative +dative +92326 nominative +92333 nominative +92339 dative +dative +92343 nominative +92345 nominative +nominative +accusative +92349 genitive +92357 nominative +92359 dative +dative +92363 accusative +accusative +92368 dative +dative +92371 nominative +92373 nominative +nominative +92376 nominative +nominative +92379 accusative +accusative +92382 nominative +92386 genitive +92389 accusative +92391 nominative +nominative +92394 accusative +accusative +92397 nominative +92401 genitive +92404 accusative +accusative +92408 nominative +nominative +nominative +nominative +92413 dative +dative +92417 nominative +nominative +nominative +nominative +92422 dative +dative +92426 nominative +nominative +genitive +nominative +92433 nominative +92437 nominative +nominative +92443 nominative +nominative +92446 nominative +nominative +92449 dative +dative +92453 dative +92455 accusative +nominative +nominative +92459 vocative +accusative +92463 accusative +accusative +92467 vocative +accusative +92471 accusative +accusative +92477 dative +92479 nominative +nominative +92482 accusative +92484 nominative +nominative +92491 dative +dative +dative +92495 nominative +nominative +92501 dative +92503 nominative +92506 nominative +nominative +nominative +92511 nominative +nominative +nominative +92516 nominative +genitive +genitive +nominative +92521 dative +dative +dative +92526 dative +92528 nominative +92531 dative +92537 nominative +92542 nominative +92544 dative +nominative +nominative +nominative +genitive +92551 nominative +nominative +nominative +92555 nominative +genitive +genitive +92561 nominative +genitive +vocative +nominative +92566 dative +92569 dative +92572 dative +92575 genitive +genitive +accusative +genitive +92582 accusative +92585 nominative +92587 genitive +nominative +92592 accusative +accusative +92596 accusative +accusative +accusative +92600 nominative +dative +nominative +92606 dative +92609 accusative +92612 genitive +92615 accusative +92625 nominative +nominative +92630 accusative +dative +dative +92634 nominative +nominative +92637 nominative +genitive +92641 vocative +accusative +92644 nominative +nominative +nominative +92648 accusative +accusative +92652 nominative +nominative +accusative +92657 nominative +92660 nominative +nominative +92664 nominative +92666 nominative +nominative +92670 nominative +92672 nominative +nominative +92676 nominative +92678 nominative +nominative +accusative +accusative +92684 nominative +92687 nominative +nominative +genitive +genitive +genitive +92694 accusative +accusative +92697 nominative +nominative +92700 accusative +genitive +genitive +92705 dative +dative +92708 nominative +nominative +92711 accusative +genitive +genitive +92716 dative +dative +92721 nominative +nominative +nominative +nominative +92726 nominative +nominative +92729 accusative +genitive +genitive +92734 nominative +92736 dative +dative +92739 dative +dative +92742 nominative +nominative +92745 accusative +genitive +genitive +92750 dative +dative +92753 accusative +92755 accusative +genitive +genitive +accusative +92762 accusative +dative +92767 accusative +accusative +92770 accusative +dative +dative +92776 nominative +92779 accusative +accusative +genitive +92785 nominative +92790 accusative +92797 nominative +92800 dative +dative +genitive +nominative +92805 nominative +accusative +92808 accusative +92811 genitive +genitive +genitive +92815 accusative +92818 dative +dative +dative +92822 accusative +genitive +accusative +92829 nominative +nominative +accusative +genitive +accusative +92837 nominative +92839 nominative +accusative +92842 nominative +92845 accusative +accusative +92848 nominative +nominative +genitive +92854 nominative +nominative +nominative +92858 dative +92861 accusative +92863 dative +92865 nominative +92871 accusative +accusative +accusative +92876 nominative +accusative +genitive +92882 genitive +genitive +92886 nominative +accusative +92889 nominative +nominative +92893 nominative +nominative +92897 nominative +92900 accusative +92908 nominative +92910 accusative +accusative +nominative +92915 genitive +92918 genitive +genitive +genitive +genitive +92924 nominative +nominative +92927 dative +92930 nominative +nominative +92934 nominative +92939 nominative +nominative +92943 dative +92946 genitive +92949 nominative +nominative +92952 nominative +nominative +92955 dative +nominative +nominative +nominative +nominative +92961 genitive +nominative +nominative +92965 nominative +92967 accusative +92969 nominative +nominative +nominative +nominative +92974 genitive +nominative +nominative +92978 nominative +92980 genitive +92984 dative +nominative +nominative +92988 nominative +dative +dative +92993 genitive +genitive +92996 accusative +92999 nominative +nominative +genitive +nominative +nominative +93006 nominative +accusative +93010 dative +dative +93025 nominative +nominative +genitive +nominative +nominative +93031 dative +dative +93035 nominative +93037 accusative +accusative +accusative +accusative +93042 dative +accusative +93045 nominative +nominative +genitive +genitive +genitive +93052 accusative +accusative +accusative +93059 dative +dative +dative +nominative +nominative +nominative +nominative +93067 accusative +nominative +93072 nominative +93074 accusative +accusative +93077 nominative +genitive +accusative +accusative +accusative +93083 accusative +93087 nominative +93089 accusative +accusative +genitive +93095 accusative +93097 accusative +accusative +93101 accusative +accusative +genitive +93107 nominative +93110 nominative +93112 accusative +accusative +accusative +genitive +93118 nominative +nominative +genitive +nominative +93124 dative +93126 dative +93129 nominative +93132 dative +93135 nominative +nominative +genitive +genitive +genitive +nominative +93143 dative +nominative +nominative +nominative +dative +accusative +dative +93151 nominative +93155 accusative +93162 accusative +accusative +accusative +93168 nominative +nominative +nominative +93172 nominative +nominative +genitive +genitive +93177 nominative +93179 nominative +nominative +93182 nominative +93185 accusative +93188 nominative +93190 dative +dative +93193 nominative +93195 accusative +93197 accusative +accusative +genitive +93203 nominative +93205 accusative +93208 genitive +genitive +genitive +genitive +93216 accusative +accusative +93221 nominative +nominative +accusative +93228 dative +genitive +dative +93234 accusative +accusative +93237 genitive +genitive +93240 dative +dative +93244 accusative +93249 accusative +93254 dative +93256 nominative +nominative +93259 nominative +nominative +93262 dative +genitive +93266 nominative +dative +accusative +accusative +93271 nominative +93273 nominative +genitive +accusative +accusative +93279 nominative +genitive +genitive +genitive +93286 nominative +93290 dative +dative +dative +93294 accusative +93298 accusative +accusative +93301 dative +dative +genitive +genitive +93308 nominative +accusative +accusative +nominative +accusative +93314 genitive +genitive +93317 nominative +dative +dative +nominative +dative +dative +93326 nominative +nominative +93329 dative +accusative +accusative +dative +93334 genitive +genitive +93338 nominative +93341 dative +genitive +93346 accusative +93351 dative +93353 nominative +dative +93358 accusative +accusative +genitive +nominative +93368 dative +nominative +93371 nominative +dative +93376 dative +93383 nominative +accusative +93386 accusative +93390 nominative +accusative +93394 nominative +93396 genitive +nominative +nominative +93400 nominative +accusative +93403 accusative +accusative +93406 accusative +93409 dative +dative +genitive +93413 dative +dative +93416 nominative +nominative +93419 genitive +dative +accusative +93424 accusative +accusative +93429 dative +dative +93432 nominative +93434 accusative +93436 dative +93438 accusative +93441 accusative +93443 nominative +nominative +93446 accusative +93448 accusative +93450 accusative +93452 dative +dative +93455 nominative +93457 nominative +nominative +genitive +93461 nominative +genitive +93465 accusative +accusative +93468 dative +dative +nominative +93472 accusative +accusative +93475 dative +dative +93478 nominative +93481 accusative +93484 accusative +93487 accusative +accusative +93490 nominative +genitive +93496 nominative +93498 dative +nominative +93501 nominative +93504 nominative +93506 accusative +accusative +93513 nominative +nominative +nominative +accusative +93520 nominative +93522 accusative +accusative +93526 nominative +accusative +93529 nominative +93539 accusative +nominative +93543 genitive +accusative +accusative +93550 dative +nominative +nominative +nominative +93556 vocative +93559 accusative +93562 nominative +nominative +genitive +nominative +93567 accusative +accusative +93571 nominative +93573 genitive +genitive +93577 nominative +93579 accusative +accusative +93583 dative +dative +93587 dative +dative +93590 nominative +accusative +accusative +accusative +accusative +93597 nominative +accusative +accusative +accusative +accusative +93606 genitive +genitive +genitive +93610 nominative +nominative +93613 nominative +nominative +93618 dative +dative +genitive +93622 nominative +nominative +93627 dative +dative +93630 nominative +nominative +genitive +93635 accusative +93638 accusative +accusative +genitive +93642 nominative +93645 nominative +93648 nominative +genitive +93653 nominative +nominative +93664 nominative +genitive +93669 dative +dative +nominative +nominative +93675 accusative +accusative +93678 nominative +genitive +93683 genitive +genitive +93689 nominative +genitive +93695 genitive +genitive +93698 nominative +93701 dative +93705 accusative +genitive +93708 accusative +nominative +nominative +genitive +genitive +93715 nominative +nominative +93721 nominative +accusative +93727 nominative +93729 nominative +nominative +nominative +nominative +93735 accusative +93738 accusative +93743 dative +dative +93746 accusative +accusative +genitive +93752 vocative +genitive +93756 genitive +genitive +93759 dative +93762 nominative +accusative +93765 nominative +nominative +genitive +genitive +accusative +93773 nominative +genitive +genitive +genitive +genitive +accusative +accusative +accusative +93783 nominative +genitive +genitive +genitive +genitive +93790 nominative +nominative +nominative +nominative +nominative +nominative +93798 nominative +nominative +93801 genitive +genitive +genitive +93806 accusative +accusative +93809 accusative +93811 nominative +nominative +accusative +accusative +nominative +genitive +genitive +93820 accusative +93823 nominative +nominative +93828 nominative +nominative +93833 accusative +93835 dative +93838 dative +93843 accusative +accusative +genitive +genitive +93850 accusative +genitive +93854 accusative +genitive +93858 genitive +genitive +93862 genitive +genitive +93866 accusative +accusative +93869 nominative +genitive +93872 nominative +93876 nominative +93878 nominative +93882 nominative +93884 nominative +accusative +genitive +93889 accusative +genitive +genitive +accusative +accusative +93895 dative +accusative +93898 accusative +nominative +93901 accusative +accusative +93904 genitive +genitive +nominative +nominative +93909 nominative +nominative +genitive +93913 nominative +genitive +genitive +93917 accusative +93921 accusative +accusative +accusative +dative +93926 accusative +nominative +93929 accusative +accusative +93933 nominative +dative +93936 nominative +nominative +93942 accusative +accusative +accusative +93946 accusative +accusative +93950 accusative +93952 accusative +genitive +93955 accusative +genitive +genitive +93960 accusative +nominative +nominative +genitive +93966 genitive +genitive +93969 nominative +dative +93972 accusative +93975 genitive +nominative +93984 accusative +93986 accusative +93988 accusative +genitive +93991 nominative +93994 dative +93996 dative +93998 dative +dative +genitive +genitive +94003 nominative +accusative +dative +94007 nominative +94009 accusative +genitive +accusative +94013 accusative +genitive +genitive +94018 nominative +genitive +94022 nominative +genitive +94026 accusative +94028 accusative +genitive +94034 dative +accusative +accusative +94040 accusative +94043 genitive +genitive +nominative +nominative +nominative +nominative +94051 nominative +genitive +nominative +nominative +94056 nominative +genitive +genitive +nominative +nominative +nominative +nominative +nominative +94065 nominative +94067 genitive +nominative +94070 accusative +accusative +genitive +94074 nominative +nominative +nominative +94078 nominative +dative +dative +dative +94083 accusative +accusative +genitive +94088 nominative +94090 nominative +nominative +dative +dative +94098 nominative +94103 nominative +dative +nominative +94112 nominative +94116 accusative +accusative +nominative +94120 nominative +genitive +nominative +94124 nominative +nominative +nominative +genitive +94132 nominative +94134 genitive +94136 nominative +94138 genitive +94143 nominative +94145 accusative +accusative +94148 nominative +94150 accusative +accusative +94153 accusative +94155 nominative +nominative +accusative +94160 genitive +genitive +94163 accusative +accusative +94167 nominative +94169 genitive +94171 nominative +94173 genitive +94175 dative +94178 nominative +nominative +94181 genitive +genitive +94185 nominative +nominative +94188 genitive +genitive +94191 nominative +nominative +94194 genitive +genitive +94197 dative +dative +94200 nominative +94202 accusative +accusative +dative +dative +94208 nominative +nominative +nominative +94212 accusative +94216 nominative +94218 nominative +dative +94223 nominative +94225 nominative +dative +94229 nominative +nominative +94232 genitive +94234 dative +94237 nominative +94239 nominative +94241 nominative +accusative +accusative +94247 nominative +nominative +genitive +genitive +94252 accusative +nominative +94259 accusative +accusative +94263 accusative +accusative +94268 accusative +genitive +genitive +94272 dative +94274 accusative +94276 dative +94279 accusative +accusative +94285 nominative +94287 dative +94291 nominative +nominative +nominative +94296 dative +94298 genitive +genitive +94301 accusative +accusative +94305 accusative +accusative +94309 nominative +accusative +accusative +accusative +94315 dative +94319 nominative +94322 nominative +94326 accusative +94330 accusative +94335 genitive +genitive +genitive +genitive +94342 accusative +94344 accusative +accusative +94347 dative +94349 accusative +94351 dative +94355 nominative +94358 genitive +genitive +accusative +94363 dative +94365 nominative +nominative +nominative +94369 dative +dative +dative +94374 accusative +94376 nominative +94380 nominative +94382 genitive +nominative +nominative +nominative +94387 genitive +accusative +94391 accusative +accusative +accusative +94396 accusative +accusative +94399 accusative +94401 nominative +nominative +nominative +nominative +nominative +nominative +nominative +94410 dative +dative +dative +accusative +94419 accusative +accusative +accusative +94426 accusative +accusative +accusative +94430 accusative +accusative +94433 accusative +accusative +genitive +genitive +94439 genitive +94443 nominative +94445 accusative +accusative +94449 accusative +accusative +genitive +genitive +94454 nominative +94456 genitive +genitive +94459 genitive +genitive +genitive +genitive +94465 nominative +accusative +94470 genitive +genitive +94475 genitive +genitive +94479 nominative +nominative +94482 nominative +accusative +dative +94489 nominative +accusative +accusative +94493 accusative +94495 dative +nominative +nominative +94499 nominative +94502 nominative +94505 accusative +94511 nominative +94513 genitive +genitive +94519 dative +dative +94523 vocative +genitive +nominative +94527 accusative +94529 accusative +94532 nominative +94535 dative +94540 accusative +94543 accusative +accusative +94550 vocative +94552 genitive +genitive +94556 accusative +94561 nominative +94564 accusative +accusative +accusative +accusative +94571 nominative +94574 dative +94576 nominative +94578 dative +genitive +nominative +94582 nominative +nominative +94585 nominative +94588 nominative +nominative +94593 dative +dative +94596 nominative +genitive +94600 nominative +nominative +nominative +94604 nominative +genitive +94608 nominative +nominative +nominative +94612 nominative +genitive +94616 nominative +nominative +nominative +nominative +nominative +accusative +accusative +94624 dative +94626 dative +94628 nominative +nominative +genitive +genitive +94633 accusative +accusative +94637 dative +94639 genitive +genitive +94642 nominative +genitive +94645 dative +nominative +genitive +94649 accusative +accusative +accusative +dative +nominative +94655 dative +dative +dative +94659 dative +nominative +genitive +94663 dative +dative +dative +94667 dative +nominative +genitive +94671 dative +nominative +94674 dative +nominative +genitive +dative +nominative +genitive +94681 dative +nominative +genitive +94685 accusative +accusative +94688 nominative +nominative +94691 nominative +nominative +nominative +nominative +dative +dative +94701 nominative +nominative +nominative +94706 accusative +accusative +94710 nominative +nominative +nominative +genitive +genitive +nominative +nominative +nominative +nominative +94722 nominative +nominative +94727 dative +dative +nominative +nominative +94732 accusative +accusative +94736 nominative +94738 nominative +94740 nominative +94742 nominative +94744 nominative +accusative +accusative +94750 nominative +nominative +94754 nominative +nominative +94757 nominative +94760 nominative +nominative +94765 nominative +94769 genitive +genitive +94773 accusative +94777 genitive +genitive +94782 nominative +nominative +94787 nominative +94791 genitive +genitive +94795 accusative +94799 genitive +genitive +94802 nominative +nominative +nominative +nominative +94807 nominative +nominative +94810 nominative +nominative +94813 nominative +nominative +94817 nominative +nominative +94820 accusative +accusative +accusative +accusative +genitive +94826 dative +dative +94833 nominative +nominative +nominative +nominative +94838 nominative +nominative +94843 nominative +nominative +94846 nominative +nominative +94851 nominative +nominative +94854 dative +dative +accusative +genitive +94862 nominative +nominative +dative +dative +accusative +genitive +94871 dative +94873 nominative +nominative +nominative +94877 nominative +genitive +genitive +nominative +94883 accusative +94885 accusative +genitive +genitive +94889 dative +accusative +accusative +94894 nominative +nominative +genitive +accusative +accusative +94901 nominative +nominative +genitive +94905 accusative +94908 nominative +nominative +94911 accusative +accusative +dative +dative +nominative +accusative +accusative +94921 nominative +94923 dative +dative +94926 accusative +accusative +94929 genitive +94931 nominative +nominative +94936 nominative +nominative +94939 nominative +nominative +nominative +94944 nominative +94946 nominative +nominative +nominative +94950 nominative +94952 nominative +genitive +94955 nominative +94957 genitive +94960 accusative +94962 nominative +nominative +94965 dative +dative +accusative +accusative +accusative +accusative +accusative +accusative +94974 accusative +94976 accusative +genitive +accusative +accusative +accusative +genitive +94983 nominative +nominative +94986 nominative +nominative +94989 nominative +nominative +94992 nominative +nominative +94995 nominative +94997 accusative +genitive +95000 nominative +dative +95004 nominative +95008 accusative +accusative +accusative +accusative +95015 accusative +accusative +dative +95020 dative +dative +genitive +genitive +95025 genitive +genitive +95029 accusative +95033 nominative +nominative +95036 nominative +nominative +95041 accusative +95044 accusative +accusative +accusative +95048 accusative +accusative +accusative +95054 accusative +accusative +accusative +95058 accusative +95061 accusative +95064 nominative +95069 accusative +accusative +accusative +genitive +95076 accusative +accusative +genitive +95082 accusative +95085 accusative +95087 nominative +nominative +95091 nominative +nominative +95095 nominative +nominative +95105 accusative +genitive +95111 accusative +accusative +95116 dative +dative +95120 dative +dative +accusative +95124 accusative +95126 accusative +95128 accusative +95130 nominative +nominative +95136 nominative +95139 nominative +95142 nominative +95146 genitive +95150 genitive +95155 nominative +nominative +nominative +95159 genitive +95163 nominative +95166 nominative +95169 nominative +95172 nominative +95175 nominative +95177 accusative +genitive +genitive +95184 genitive +95186 dative +95189 accusative +95191 accusative +95195 genitive +95205 nominative +nominative +nominative +nominative +nominative +nominative +95212 nominative +genitive +nominative +nominative +95217 accusative +accusative +95221 accusative +accusative +95228 nominative +nominative +dative +95232 dative +95235 dative +95237 nominative +95240 dative +95242 accusative +95244 nominative +nominative +dative +95248 accusative +95250 accusative +95252 accusative +nominative +nominative +dative +accusative +95259 nominative +nominative +accusative +95265 accusative +accusative +95268 dative +95274 nominative +nominative +nominative +95278 nominative +nominative +dative +95286 nominative +nominative +accusative +95291 vocative +95296 accusative +dative +nominative +accusative +accusative +95304 dative +95308 dative +95311 dative +95314 dative +95316 dative +95318 nominative +nominative +accusative +nominative +95323 nominative +95325 nominative +95327 accusative +dative +dative +95334 nominative +nominative +95337 nominative +nominative +95342 nominative +accusative +accusative +95346 nominative +95349 accusative +95353 nominative +95355 genitive +genitive +95358 accusative +accusative +95363 nominative +nominative +95367 accusative +95369 nominative +95372 nominative +nominative +genitive +95377 dative +95379 nominative +nominative +95385 accusative +accusative +genitive +genitive +95390 dative +dative +nominative +95394 nominative +nominative +95397 dative +nominative +95401 nominative +95403 nominative +genitive +95407 accusative +accusative +genitive +genitive +95415 nominative +nominative +dative +95424 dative +nominative +nominative +genitive +95430 nominative +nominative +genitive +nominative +95436 nominative +95439 dative +dative +95444 dative +dative +95447 dative +dative +95452 dative +dative +95457 dative +nominative +nominative +accusative +accusative +genitive +genitive +95466 accusative +95469 dative +dative +dative +95473 accusative +95479 nominative +95483 nominative +nominative +95488 dative +dative +genitive +genitive +95493 dative +95497 dative +95500 accusative +dative +dative +genitive +95507 accusative +95510 accusative +accusative +95513 dative +vocative +95516 nominative +95518 dative +dative +95521 dative +dative +95525 dative +dative +nominative +95530 dative +dative +95535 dative +95538 dative +genitive +95541 dative +dative +dative +95548 genitive +95550 nominative +95552 nominative +nominative +95555 accusative +95558 dative +dative +95561 dative +dative +95564 nominative +nominative +95567 dative +dative +95570 dative +dative +95575 nominative +nominative +nominative +95579 accusative +accusative +95582 nominative +95584 dative +95587 nominative +95589 nominative +95596 nominative +95600 nominative +nominative +95603 nominative +95606 genitive +95609 genitive +nominative +nominative +genitive +genitive +genitive +nominative +95619 nominative +95621 accusative +95623 dative +dative +nominative +95628 nominative +nominative +95631 dative +95634 nominative +95636 vocative +95639 nominative +accusative +95642 accusative +95644 accusative +95646 accusative +95648 accusative +95650 nominative +95652 accusative +95655 dative +nominative +95661 accusative +accusative +accusative +95666 accusative +95668 nominative +95674 nominative +95677 dative +95680 dative +95682 dative +dative +95685 nominative +95688 nominative +95691 nominative +nominative +95696 dative +dative +95699 nominative +nominative +95705 accusative +nominative +95709 nominative +95712 nominative +95715 nominative +genitive +dative +95722 genitive +nominative +nominative +95726 genitive +95729 dative +dative +dative +genitive +genitive +nominative +nominative +95737 dative +dative +95743 dative +95749 nominative +nominative +95754 accusative +95758 dative +accusative +accusative +accusative +95764 nominative +95766 dative +95769 dative +95772 genitive +nominative +nominative +genitive +genitive +95780 accusative +accusative +95784 nominative +95787 nominative +95789 nominative +95791 accusative +95793 dative +95795 genitive +nominative +95800 nominative +95804 vocative +genitive +95807 accusative +95810 accusative +95812 dative +95816 nominative +95820 accusative +95823 vocative +95825 dative +accusative +accusative +accusative +95830 dative +accusative +95835 dative +95839 genitive +95842 dative +dative +95845 dative +95855 dative +95857 dative +accusative +95862 nominative +95865 genitive +genitive +genitive +95869 accusative +accusative +95877 dative +dative +dative +dative +95882 accusative +accusative +95887 dative +95889 dative +95894 dative +dative +95898 genitive +nominative +nominative +95905 nominative +95909 dative +95911 dative +dative +dative +95915 accusative +genitive +95918 dative +95920 dative +dative +95923 nominative +95925 nominative +nominative +genitive +genitive +nominative +95932 nominative +95934 nominative +95937 accusative +accusative +genitive +genitive +95942 dative +genitive +95945 nominative +95948 nominative +nominative +genitive +nominative +95953 accusative +95955 nominative +95958 accusative +genitive +genitive +95964 nominative +95966 nominative +nominative +genitive +genitive +95971 dative +95974 nominative +95976 nominative +95984 nominative +95988 genitive +95993 dative +nominative +95996 nominative +genitive +96002 nominative +genitive +96007 nominative +96011 nominative +96015 nominative +nominative +nominative +genitive +nominative +96021 nominative +nominative +genitive +96027 nominative +genitive +genitive +96033 genitive +genitive +96037 accusative +accusative +accusative +96044 nominative +96049 nominative +96053 nominative +96057 nominative +96060 nominative +nominative +nominative +genitive +96067 dative +dative +genitive +96072 nominative +nominative +96075 dative +96079 dative +dative +dative +96083 dative +nominative +96086 accusative +nominative +genitive +genitive +96095 genitive +nominative +nominative +genitive +genitive +96103 genitive +nominative +96107 genitive +nominative +genitive +96113 dative +dative +nominative +96120 dative +dative +nominative +96125 nominative +96127 dative +dative +dative +nominative +nominative +96133 nominative +genitive +genitive +96137 dative +dative +genitive +96141 nominative +nominative +96145 accusative +accusative +dative +dative +96150 dative +96153 accusative +accusative +96156 accusative +accusative +96159 accusative +96162 accusative +96165 genitive +96167 accusative +accusative +accusative +96171 accusative +accusative +genitive +nominative +nominative +nominative +nominative +96180 accusative +96183 accusative +accusative +genitive +96190 nominative +96192 nominative +96195 genitive +genitive +dative +accusative +accusative +96203 dative +nominative +nominative +96208 nominative +nominative +nominative +96212 dative +dative +dative +accusative +accusative +96219 nominative +nominative +nominative +96223 dative +96225 accusative +96227 nominative +nominative +96230 genitive +genitive +96234 nominative +96237 accusative +96241 genitive +accusative +96244 nominative +96246 accusative +accusative +vocative +96250 accusative +96253 accusative +accusative +accusative +accusative +96259 dative +dative +dative +dative +genitive +96266 accusative +96269 dative +nominative +dative +nominative +nominative +96275 nominative +96287 accusative +accusative +nominative +nominative +96297 accusative +genitive +nominative +96302 accusative +dative +96307 nominative +96310 nominative +nominative +96313 dative +dative +96316 vocative +accusative +nominative +96326 accusative +96329 accusative +accusative +accusative +accusative +96335 accusative +accusative +96339 genitive +96341 genitive +genitive +genitive +96345 nominative +nominative +96348 dative +accusative +96353 dative +genitive +genitive +accusative +accusative +96359 nominative +nominative +nominative +nominative +nominative +96366 nominative +genitive +96369 nominative +nominative +genitive +96373 nominative +nominative +genitive +96377 nominative +genitive +96380 nominative +nominative +96383 nominative +nominative +96387 nominative +nominative +genitive +genitive +nominative +96393 nominative +nominative +genitive +genitive +nominative +nominative +genitive +96401 nominative +nominative +genitive +96405 nominative +nominative +genitive +96409 nominative +genitive +96413 dative +96416 nominative +nominative +genitive +genitive +96422 dative +96425 dative +96428 dative +96431 dative +96434 dative +96437 dative +96439 nominative +nominative +96442 nominative +nominative +96446 nominative +nominative +96450 nominative +96455 nominative +nominative +nominative +nominative +96460 accusative +accusative +nominative +nominative +nominative +96466 accusative +accusative +96470 nominative +nominative +nominative +96474 nominative +nominative +96477 nominative +nominative +nominative +nominative +nominative +96483 genitive +nominative +nominative +nominative +nominative +96489 genitive +nominative +nominative +nominative +nominative +96495 nominative +nominative +96498 nominative +nominative +nominative +nominative +96503 nominative +nominative +96508 accusative +accusative +genitive +genitive +96514 accusative +accusative +genitive +genitive +96519 accusative +96521 vocative +96523 nominative +96525 nominative +accusative +genitive +96532 nominative +nominative +accusative +accusative +96538 accusative +dative +96541 nominative +96545 nominative +96548 dative +96550 dative +genitive +96553 dative +dative +dative +96559 nominative +nominative +96562 nominative +96564 nominative +96568 nominative +nominative +nominative +96572 accusative +96574 nominative +nominative +nominative +96578 accusative +96581 nominative +nominative +nominative +96585 accusative +96587 nominative +nominative +nominative +96591 accusative +96594 nominative +nominative +nominative +nominative +96599 nominative +nominative +96602 accusative +vocative +96605 genitive +nominative +nominative +vocative +96610 genitive +nominative +nominative +96614 nominative +nominative +genitive +genitive +nominative +nominative +96621 nominative +nominative +genitive +genitive +nominative +nominative +96628 nominative +dative +dative +dative +dative +dative +accusative +accusative +96637 genitive +genitive +genitive +genitive +genitive +96643 vocative +genitive +vocative +96647 nominative +nominative +nominative +96651 dative +dative +genitive +genitive +96656 nominative +96658 nominative +nominative +genitive +96663 nominative +96665 dative +96668 genitive +genitive +genitive +96672 accusative +accusative +96676 dative +dative +genitive +genitive +96682 nominative +96685 accusative +genitive +nominative +genitive +96690 dative +96692 nominative +accusative +96695 accusative +96702 nominative +96708 accusative +96711 genitive +accusative +96715 accusative +accusative +genitive +96719 accusative +96722 nominative +96724 genitive +accusative +96728 dative +96733 accusative +96735 accusative +96738 accusative +96742 accusative +accusative +96749 nominative +accusative +96758 accusative +96761 dative +96765 accusative +accusative +96769 accusative +96771 nominative +nominative +96777 dative +96779 genitive +genitive +96782 dative +96784 nominative +nominative +96787 nominative +96789 nominative +nominative +96794 nominative +96800 accusative +96802 accusative +accusative +genitive +96807 nominative +96810 nominative +accusative +96815 accusative +96817 dative +96821 accusative +96824 accusative +96826 genitive +genitive +96830 genitive +genitive +genitive +accusative +96835 accusative +96839 accusative +96841 genitive +genitive +96847 nominative +96858 dative +dative +96862 nominative +genitive +96865 dative +96869 accusative +vocative +96872 accusative +accusative +genitive +96877 nominative +genitive +genitive +96882 accusative +dative +dative +96886 accusative +96889 nominative +96891 dative +dative +96894 dative +dative +dative +96898 dative +96902 dative +dative +genitive +96906 genitive +96908 genitive +96910 accusative +accusative +accusative +nominative +96917 accusative +accusative +accusative +96921 accusative +genitive +96925 accusative +accusative +96928 accusative +nominative +nominative +genitive +genitive +96934 accusative +96936 dative +accusative +nominative +96940 nominative +96942 dative +96944 accusative +genitive +dative +96948 accusative +nominative +nominative +nominative +96953 accusative +96955 dative +dative +nominative +nominative +dative +dative +dative +genitive +96964 nominative +96967 accusative +accusative +96970 nominative +vocative +96973 nominative +nominative +genitive +genitive +genitive +96979 genitive +nominative +nominative +genitive +96984 genitive +genitive +96987 dative +dative +nominative +nominative +genitive +genitive +96994 genitive +genitive +96997 nominative +nominative +nominative +dative +dative +genitive +genitive +dative +dative +97007 dative +97009 dative +dative +dative +dative +dative +97015 dative +dative +dative +dative +nominative +97021 nominative +97023 genitive +genitive +genitive +97027 genitive +genitive +genitive +nominative +nominative +nominative +97034 nominative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +genitive +genitive +97045 nominative +genitive +genitive +nominative +nominative +accusative +97052 dative +dative +dative +genitive +97057 accusative +97059 accusative +97061 accusative +97063 dative +dative +97066 genitive +genitive +genitive +97070 nominative +97072 genitive +genitive +97077 nominative +nominative +genitive +genitive +97082 accusative +97085 genitive +genitive +97089 nominative +nominative +genitive +97096 genitive +genitive +genitive +97100 genitive +97104 genitive +genitive +genitive +genitive +genitive +97110 dative +genitive +genitive +genitive +genitive +97116 nominative +97119 nominative +nominative +genitive +nominative +97124 genitive +nominative +97129 nominative +genitive +genitive +97134 genitive +genitive +97137 vocative +97140 accusative +97143 genitive +genitive +genitive +genitive +genitive +97149 dative +dative +97153 accusative +97155 accusative +97159 accusative +97161 genitive +97164 nominative +97166 dative +accusative +accusative +genitive +genitive +97174 nominative +97177 dative +97180 dative +dative +dative +dative +accusative +accusative +nominative +97188 genitive +genitive +97191 accusative +97195 accusative +97201 genitive +97203 genitive +97205 genitive +dative +dative +97210 genitive +genitive +nominative +97214 accusative +nominative +97217 genitive +97220 genitive +97222 nominative +nominative +genitive +nominative +97227 nominative +nominative +genitive +genitive +genitive +97234 dative +97236 dative +genitive +genitive +97241 dative +dative +97245 dative +genitive +97249 dative +dative +97254 accusative +97257 dative +97259 accusative +97262 accusative +97271 genitive +97276 accusative +97278 genitive +97280 nominative +genitive +97285 nominative +genitive +97288 dative +dative +genitive +genitive +genitive +genitive +97295 dative +dative +dative +97299 accusative +97301 accusative +97304 accusative +accusative +97309 genitive +97312 accusative +97316 genitive +97319 accusative +97322 genitive +97325 accusative +accusative +97328 accusative +nominative +97332 dative +dative +97336 accusative +97339 accusative +97344 dative +nominative +97349 nominative +97353 nominative +nominative +nominative +97357 nominative +nominative +genitive +nominative +97362 accusative +97369 nominative +genitive +genitive +nominative +nominative +nominative +nominative +97377 dative +97379 genitive +nominative +97382 genitive +97384 genitive +97386 genitive +97395 dative +97398 nominative +nominative +genitive +97402 dative +nominative +97408 genitive +nominative +97411 dative +dative +97414 accusative +97416 genitive +97418 nominative +nominative +accusative +97422 dative +97424 accusative +97426 nominative +accusative +nominative +nominative +97431 nominative +accusative +97434 nominative +accusative +accusative +genitive +genitive +97440 dative +dative +genitive +97444 nominative +accusative +accusative +accusative +97450 accusative +accusative +accusative +97454 nominative +genitive +97459 accusative +97463 genitive +genitive +genitive +97467 nominative +97469 genitive +genitive +genitive +97473 dative +dative +97478 dative +accusative +accusative +97484 dative +97486 accusative +97490 nominative +97492 accusative +97494 nominative +nominative +nominative +accusative +97500 nominative +nominative +97503 genitive +97506 accusative +accusative +97510 nominative +accusative +97514 genitive +accusative +97518 nominative +97520 accusative +accusative +97523 nominative +nominative +nominative +genitive +genitive +97531 genitive +genitive +97534 genitive +genitive +97537 dative +97539 genitive +genitive +97547 accusative +accusative +accusative +97553 accusative +97556 nominative +97559 accusative +97563 genitive +accusative +accusative +97569 nominative +dative +dative +nominative +nominative +nominative +nominative +97577 genitive +genitive +97582 accusative +97588 dative +dative +dative +97592 nominative +nominative +97596 accusative +97599 accusative +accusative +97603 accusative +97608 accusative +accusative +genitive +97613 accusative +nominative +97617 dative +accusative +97620 nominative +97623 nominative +accusative +97627 accusative +97630 accusative +97632 dative +genitive +97638 genitive +genitive +97642 genitive +accusative +accusative +97647 nominative +97649 accusative +accusative +97652 accusative +accusative +genitive +genitive +97657 genitive +dative +genitive +97661 dative +97664 accusative +dative +dative +genitive +dative +97671 accusative +accusative +accusative +accusative +genitive +97677 nominative +dative +97681 accusative +97683 nominative +dative +dative +dative +97688 dative +accusative +97691 dative +dative +97694 accusative +accusative +genitive +genitive +genitive +dative +97701 genitive +97703 dative +dative +97706 genitive +nominative +97709 dative +dative +97712 dative +dative +97716 dative +dative +97719 dative +nominative +97722 genitive +97724 accusative +97726 dative +nominative +97729 genitive +97731 accusative +97734 accusative +nominative +nominative +97740 nominative +accusative +accusative +genitive +genitive +97746 nominative +nominative +97751 genitive +97755 genitive +97757 genitive +97759 dative +97763 accusative +97769 nominative +genitive +genitive +97773 accusative +97776 genitive +nominative +nominative +genitive +nominative +97782 nominative +97784 dative +dative +genitive +nominative +97789 nominative +97791 genitive +genitive +nominative +97796 nominative +genitive +nominative +97800 genitive +nominative +97803 dative +97805 dative +genitive +genitive +97810 dative +dative +97814 dative +dative +dative +97818 accusative +accusative +97822 genitive +genitive +97825 accusative +accusative +97830 genitive +nominative +97834 accusative +97837 genitive +97839 nominative +nominative +genitive +97843 genitive +genitive +nominative +97848 accusative +accusative +genitive +genitive +97853 genitive +97855 genitive +97857 nominative +nominative +97861 nominative +nominative +97866 nominative +nominative +genitive +genitive +97871 dative +nominative +dative +97876 dative +97880 accusative +accusative +genitive +97885 accusative +accusative +genitive +97889 accusative +accusative +genitive +genitive +genitive +accusative +accusative +97899 nominative +nominative +genitive +genitive +97905 dative +97908 nominative +nominative +genitive +genitive +nominative +dative +97916 nominative +nominative +genitive +genitive +dative +97925 nominative +nominative +97928 dative +dative +dative +97932 genitive +genitive +genitive +97937 nominative +nominative +97940 genitive +dative +97943 nominative +nominative +97946 dative +97948 nominative +accusative +accusative +dative +dative +97957 nominative +97959 accusative +97961 accusative +accusative +genitive +97965 accusative +97968 accusative +accusative +genitive +97972 accusative +accusative +genitive +genitive +97978 nominative +nominative +genitive +97983 genitive +97985 genitive +nominative +nominative +nominative +97990 dative +dative +genitive +genitive +genitive +97997 nominative +98000 dative +98008 nominative +nominative +98011 accusative +accusative +genitive +98020 accusative +98022 nominative +nominative +98025 nominative +nominative +nominative +nominative +98032 nominative +nominative +genitive +nominative +98037 nominative +nominative +dative +dative +accusative +accusative +genitive +nominative +accusative +accusative +accusative +98050 genitive +98052 accusative +98055 genitive +genitive +98058 accusative +nominative +accusative +accusative +accusative +98069 accusative +accusative +genitive +genitive +98074 nominative +98076 dative +98078 nominative +accusative +accusative +genitive +genitive +98084 dative +dative +genitive +genitive +nominative +accusative +98091 accusative +accusative +genitive +98095 genitive +genitive +98101 nominative +nominative +nominative +genitive +98106 dative +dative +98109 nominative +98111 dative +nominative +nominative +genitive +genitive +genitive +98118 accusative +accusative +genitive +genitive +98123 accusative +98126 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +nominative +98136 nominative +genitive +genitive +98141 accusative +98144 accusative +accusative +accusative +98148 accusative +accusative +genitive +98152 accusative +98154 nominative +nominative +nominative +nominative +98159 genitive +nominative +98162 nominative +98165 dative +dative +genitive +98169 accusative +genitive +genitive +genitive +genitive +genitive +genitive +98177 dative +genitive +98181 accusative +accusative +accusative +98185 dative +dative +98188 nominative +nominative +genitive +genitive +98193 genitive +genitive +98198 genitive +98200 dative +nominative +98204 nominative +nominative +98208 nominative +nominative +98212 nominative +nominative +98216 nominative +98218 accusative +accusative +genitive +genitive +98223 dative +dative +nominative +98228 nominative +nominative +genitive +genitive +98233 dative +dative +genitive +98239 nominative +nominative +nominative +98243 accusative +98246 accusative +98249 nominative +nominative +genitive +genitive +98255 dative +dative +dative +genitive +98260 nominative +nominative +98263 dative +98266 nominative +nominative +98269 dative +98271 nominative +accusative +accusative +accusative +genitive +genitive +98278 accusative +accusative +98284 nominative +98289 nominative +98291 nominative +nominative +accusative +accusative +accusative +98297 accusative +98299 dative +98304 dative +98306 nominative +nominative +98309 accusative +98311 nominative +nominative +nominative +98315 genitive +genitive +accusative +accusative +98321 accusative +accusative +genitive +genitive +98331 nominative +98333 genitive +nominative +98337 nominative +98339 genitive +98341 dative +98343 dative +98345 nominative +98347 nominative +genitive +genitive +98351 accusative +98353 accusative +accusative +accusative +genitive +98358 dative +98360 genitive +genitive +accusative +accusative +98365 accusative +98367 accusative +98369 nominative +nominative +nominative +98373 nominative +98375 nominative +nominative +98381 nominative +nominative +genitive +nominative +genitive +genitive +98389 genitive +98391 accusative +accusative +accusative +accusative +98396 dative +dative +98401 dative +98403 accusative +accusative +genitive +accusative +98408 genitive +98410 nominative +98414 nominative +98416 nominative +98420 nominative +nominative +98423 dative +dative +98426 nominative +98428 dative +98436 nominative +nominative +98439 genitive +genitive +98442 nominative +nominative +accusative +98446 accusative +accusative +nominative +nominative +nominative +dative +accusative +accusative +genitive +genitive +98457 nominative +98460 nominative +98462 nominative +98464 dative +dative +98468 genitive +genitive +98472 genitive +98476 genitive +98484 genitive +genitive +98489 accusative +accusative +98495 nominative +98497 nominative +nominative +dative +98502 accusative +accusative +accusative +98507 genitive +genitive +genitive +genitive +98514 nominative +accusative +98517 genitive +genitive +98520 accusative +98523 accusative +98525 accusative +98527 nominative +accusative +accusative +genitive +genitive +accusative +98535 dative +98541 dative +dative +genitive +98547 accusative +98549 dative +98551 accusative +genitive +nominative +dative +98556 genitive +98560 accusative +98562 dative +accusative +98567 dative +98571 dative +98574 dative +98576 nominative +nominative +genitive +genitive +98581 accusative +accusative +accusative +98585 nominative +98587 genitive +98590 nominative +nominative +98595 genitive +98598 nominative +nominative +98602 dative +98604 dative +98606 genitive +dative +98609 dative +98611 nominative +98613 genitive +98615 accusative +98618 accusative +98623 accusative +accusative +98631 nominative +98633 dative +nominative +nominative +nominative +nominative +98641 nominative +98643 nominative +nominative +98646 genitive +genitive +genitive +genitive +accusative +dative +98653 genitive +98655 genitive +dative +accusative +accusative +genitive +genitive +98663 nominative +98665 nominative +98667 dative +accusative +dative +98671 nominative +dative +accusative +accusative +genitive +98677 nominative +98679 dative +accusative +accusative +genitive +genitive +98686 genitive +98689 genitive +genitive +genitive +98693 genitive +98696 genitive +98698 dative +dative +accusative +98702 accusative +accusative +98705 genitive +accusative +98709 nominative +98711 nominative +genitive +98714 dative +98716 nominative +98721 accusative +accusative +accusative +genitive +genitive +98727 accusative +98730 dative +dative +98733 genitive +98736 dative +genitive +98739 dative +98742 nominative +nominative +98746 nominative +genitive +accusative +accusative +98751 dative +nominative +98756 nominative +nominative +98760 dative +nominative +accusative +98764 genitive +nominative +98767 dative +dative +98770 dative +98772 dative +98774 dative +98776 dative +98778 dative +98780 dative +98782 dative +98784 dative +98786 dative +98788 dative +98790 dative +98792 dative +98794 dative +98796 dative +dative +98799 dative +dative +98802 dative +genitive +98805 dative +genitive +98808 genitive +genitive +genitive +genitive +genitive +genitive +98815 genitive +98817 genitive +98819 genitive +98821 genitive +98823 genitive +98825 nominative +98827 nominative +98829 nominative +98831 nominative +98833 nominative +98838 nominative +98841 nominative +98843 nominative +98846 nominative +98848 nominative +98850 accusative +nominative +98853 accusative +nominative +98856 accusative +nominative +vocative +nominative +nominative +genitive +98864 accusative +nominative +nominative +genitive +98872 dative +98876 dative +dative +genitive +98880 accusative +accusative +accusative +98884 dative +98888 nominative +98891 nominative +dative +98894 nominative +nominative +dative +98898 dative +98900 nominative +nominative +dative +98904 accusative +98906 nominative +nominative +genitive +98910 accusative +98912 nominative +nominative +dative +98916 genitive +98918 nominative +nominative +dative +genitive +98923 genitive +98925 nominative +nominative +genitive +genitive +98932 nominative +nominative +98937 dative +98942 genitive +nominative +98945 nominative +98947 genitive +nominative +98952 genitive +genitive +98957 genitive +98961 nominative +nominative +98964 accusative +98967 dative +98969 accusative +98971 nominative +98973 dative +98975 accusative +98977 accusative +98979 nominative +nominative +98982 vocative +nominative +accusative +accusative +accusative +98988 accusative +98990 genitive +genitive +genitive +98994 genitive +nominative +accusative +98998 dative +genitive +99001 accusative +accusative +99004 accusative +99006 accusative +99009 accusative +99016 dative +dative +genitive +99021 accusative +99025 nominative +dative +nominative +99029 accusative +nominative +dative +nominative +99034 genitive +99036 dative +dative +99039 dative +dative +99042 dative +dative +dative +genitive +99048 genitive +genitive +99051 accusative +accusative +99054 accusative +nominative +nominative +genitive +99060 dative +nominative +99063 nominative +99065 nominative +99067 nominative +nominative +accusative +accusative +nominative +nominative +99074 accusative +99076 dative +dative +genitive +99081 accusative +99083 dative +dative +genitive +99089 dative +dative +dative +99094 dative +nominative +dative +accusative +genitive +accusative +accusative +genitive +accusative +accusative +genitive +accusative +99107 genitive +99109 accusative +99116 accusative +99118 dative +dative +99127 nominative +nominative +nominative +99133 accusative +99135 accusative +99145 accusative +99149 accusative +99152 dative +99155 genitive +99157 nominative +99159 accusative +nominative +accusative +99163 accusative +accusative +99167 nominative +genitive +genitive +nominative +accusative +99175 nominative +nominative +nominative +99179 accusative +99182 dative +accusative +accusative +99186 accusative +99188 accusative +99190 accusative +99192 accusative +99194 accusative +99196 accusative +99198 dative +99200 accusative +accusative +99203 dative +dative +99209 dative +99212 genitive +genitive +99216 genitive +genitive +99220 genitive +99222 accusative +accusative +genitive +accusative +99227 genitive +99229 accusative +99231 genitive +genitive +99234 accusative +99238 dative +dative +genitive +99245 dative +dative +genitive +99250 nominative +nominative +genitive +99254 genitive +genitive +99258 accusative +dative +99261 genitive +99267 accusative +99269 dative +99271 dative +99274 nominative +nominative +genitive +99278 genitive +nominative +99282 nominative +nominative +genitive +99287 accusative +99289 genitive +accusative +genitive +genitive +accusative +99296 genitive +99298 genitive +99300 accusative +99304 dative +99307 dative +99309 vocative +99311 dative +accusative +accusative +genitive +genitive +accusative +accusative +99319 dative +dative +genitive +genitive +99325 dative +dative +genitive +nominative +nominative +genitive +genitive +genitive +99334 nominative +99336 genitive +nominative +genitive +99341 accusative +accusative +genitive +genitive +genitive +99349 accusative +99352 accusative +nominative +99355 genitive +genitive +nominative +genitive +accusative +accusative +99362 accusative +accusative +genitive +genitive +genitive +99368 accusative +accusative +99375 accusative +99377 accusative +dative +dative +99381 dative +99383 genitive +genitive +99386 accusative +99388 accusative +accusative +99397 accusative +99399 accusative +accusative +accusative +99405 dative +99407 dative +99409 dative +99411 dative +99413 dative +dative +99416 dative +99418 genitive +99420 dative +dative +99425 dative +dative +dative +99431 accusative +99435 genitive +genitive +genitive +99439 accusative +genitive +genitive +genitive +accusative +nominative +99447 accusative +accusative +genitive +genitive +genitive +genitive +genitive +99456 accusative +99458 nominative +nominative +99461 nominative +dative +genitive +dative +99467 accusative +99469 dative +99472 nominative +dative +99475 nominative +99477 accusative +accusative +99482 accusative +99490 accusative +99495 nominative +nominative +genitive +99501 nominative +99504 genitive +99508 nominative +nominative +99514 nominative +99522 dative +nominative +dative +nominative +99528 genitive +99530 dative +99532 dative +nominative +genitive +nominative +99537 accusative +genitive +accusative +99542 nominative +genitive +nominative +99547 accusative +genitive +accusative +99552 nominative +99555 nominative +accusative +accusative +99561 nominative +accusative +accusative +99567 nominative +dative +dative +dative +dative +accusative +accusative +accusative +99576 genitive +99578 dative +dative +genitive +99583 accusative +accusative +99587 nominative +nominative +nominative +99592 accusative +99596 genitive +accusative +accusative +genitive +nominative +nominative +99603 dative +dative +99606 genitive +genitive +genitive +99611 accusative +99614 nominative +99616 genitive +genitive +nominative +genitive +99621 dative +dative +dative +dative +dative +99627 genitive +99629 accusative +genitive +genitive +genitive +accusative +99635 accusative +genitive +nominative +accusative +99640 nominative +accusative +99644 dative +dative +dative +dative +dative +99650 genitive +99653 accusative +99655 accusative +99657 genitive +99661 genitive +99664 dative +accusative +accusative +genitive +accusative +99671 dative +99673 accusative +accusative +99677 accusative +accusative +dative +dative +dative +99683 accusative +99686 genitive +nominative +nominative +99691 accusative +nominative +99694 nominative +genitive +nominative +genitive +nominative +genitive +99701 accusative +accusative +genitive +genitive +genitive +99707 genitive +genitive +99710 genitive +99712 accusative +nominative +99715 accusative +genitive +genitive +99721 genitive +genitive +genitive +99725 accusative +accusative +nominative +dative +99730 nominative +99732 dative +99735 accusative +accusative +genitive +accusative +99740 genitive +99742 dative +99744 nominative +99749 nominative +genitive +nominative +99753 accusative +accusative +99757 accusative +accusative +99761 nominative +nominative +genitive +nominative +99766 genitive +99769 dative +dative +dative +99775 nominative +99782 dative +nominative +99786 accusative +accusative +99789 nominative +99793 nominative +99795 dative +dative +dative +99799 accusative +99802 accusative +accusative +99807 accusative +99810 accusative +accusative +accusative +genitive +accusative +accusative +99819 accusative +99823 accusative +99825 accusative +nominative +nominative +99833 nominative +nominative +99836 dative +99838 dative +99841 nominative +99844 dative +dative +99848 genitive +99851 genitive +99853 accusative +accusative +99856 nominative +nominative +99860 nominative +nominative +accusative +accusative +99866 accusative +99869 dative +99871 accusative +accusative +nominative +99876 accusative +accusative +accusative +99883 dative +dative +nominative +nominative +genitive +99890 accusative +accusative +99893 nominative +nominative +accusative +dative +dative +99899 accusative +99901 accusative +99905 accusative +accusative +genitive +99910 accusative +accusative +genitive +genitive +genitive +99916 dative +nominative +99919 accusative +accusative +nominative +99924 genitive +accusative +dative +dative +99929 nominative +nominative +genitive +genitive +genitive +99935 accusative +99937 nominative +accusative +accusative +genitive +genitive +99944 nominative +99946 genitive +genitive +dative +dative +99951 genitive +genitive +genitive +genitive +genitive +nominative +accusative +accusative +99960 dative +dative +genitive +genitive +genitive +99966 accusative +accusative +genitive +genitive +99971 dative +genitive +genitive +99975 accusative +99978 accusative +99980 genitive +dative +99983 genitive +genitive +accusative +99987 accusative +accusative +accusative +genitive +genitive +99993 dative +nominative +dative +dative +99998 dative +dative +genitive +dative +100003 nominative +nominative +nominative +100007 accusative +100009 genitive +genitive +100012 genitive +genitive +genitive +nominative +100018 accusative +nominative +100021 dative +100023 nominative +100026 accusative +100029 accusative +100031 nominative +100033 dative +dative +dative +100039 accusative +accusative +accusative +accusative +100045 accusative +accusative +100049 dative +nominative +100053 accusative +100056 nominative +nominative +genitive +genitive +genitive +100062 nominative +100064 nominative +dative +dative +100068 accusative +genitive +nominative +accusative +100073 accusative +accusative +accusative +100077 genitive +genitive +genitive +genitive +100082 nominative +accusative +accusative +100086 accusative +accusative +genitive +genitive +100092 dative +nominative +100095 accusative +accusative +100099 genitive +nominative +nominative +accusative +100104 accusative +100107 nominative +100109 dative +genitive +100112 accusative +100116 genitive +100119 nominative +genitive +100123 nominative +100127 accusative +accusative +100131 genitive +genitive +genitive +genitive +100136 nominative +nominative +100139 accusative +100143 accusative +genitive +100153 accusative +100155 genitive +genitive +100160 nominative +nominative +nominative +100164 nominative +100166 nominative +nominative +genitive +genitive +nominative +100172 nominative +nominative +nominative +accusative +100177 nominative +nominative +100180 nominative +100182 dative +dative +100185 genitive +nominative +nominative +100189 nominative +dative +dative +100198 accusative +dative +genitive +accusative +genitive +100204 nominative +100206 dative +accusative +nominative +100210 nominative +accusative +dative +100216 nominative +100219 accusative +accusative +100224 accusative +accusative +genitive +genitive +genitive +100230 dative +nominative +nominative +genitive +100237 genitive +100242 nominative +100244 accusative +100246 accusative +100250 genitive +100253 dative +dative +genitive +genitive +100259 accusative +accusative +nominative +100263 dative +dative +100266 accusative +nominative +genitive +genitive +genitive +genitive +100273 dative +100276 accusative +accusative +genitive +100280 accusative +100282 accusative +100284 genitive +100288 dative +dative +100291 accusative +accusative +100295 nominative +nominative +100298 dative +100302 nominative +accusative +nominative +nominative +100307 nominative +100309 accusative +nominative +nominative +100315 genitive +accusative +accusative +genitive +100322 genitive +100325 accusative +genitive +dative +100330 accusative +dative +dative +accusative +accusative +100336 dative +dative +100343 nominative +nominative +100346 accusative +100348 dative +dative +genitive +100352 nominative +nominative +genitive +100356 genitive +genitive +100359 genitive +genitive +genitive +100363 accusative +100367 nominative +nominative +100370 accusative +accusative +accusative +100377 accusative +accusative +accusative +100383 accusative +accusative +accusative +100392 accusative +100394 genitive +100396 genitive +100400 nominative +dative +dative +100405 dative +dative +100409 dative +nominative +100412 dative +100414 accusative +100416 accusative +100418 accusative +nominative +100421 nominative +100425 accusative +genitive +genitive +accusative +100430 dative +accusative +accusative +100434 nominative +accusative +100437 accusative +genitive +accusative +100441 nominative +100443 accusative +100445 nominative +100448 genitive +100450 accusative +accusative +genitive +100454 nominative +nominative +nominative +100458 genitive +100461 dative +accusative +accusative +dative +100469 nominative +genitive +100472 dative +100474 nominative +nominative +nominative +100480 accusative +100482 dative +dative +genitive +genitive +100487 accusative +100491 accusative +nominative +nominative +100496 accusative +100502 accusative +accusative +genitive +genitive +accusative +100509 dative +100514 nominative +100516 nominative +nominative +nominative +nominative +nominative +nominative +100523 accusative +genitive +100527 nominative +100529 nominative +nominative +nominative +100534 accusative +genitive +100538 nominative +100541 nominative +nominative +genitive +100546 nominative +genitive +genitive +nominative +nominative +100553 accusative +accusative +genitive +100559 nominative +100561 accusative +accusative +100569 accusative +100571 accusative +100573 nominative +accusative +accusative +100577 accusative +100581 accusative +100586 dative +100588 dative +dative +dative +genitive +genitive +100594 nominative +100597 accusative +accusative +nominative +100604 genitive +genitive +nominative +nominative +100611 nominative +accusative +100615 nominative +100618 nominative +100621 nominative +100624 nominative +100626 accusative +accusative +100630 accusative +100634 nominative +100639 dative +nominative +100643 dative +100646 nominative +nominative +100649 nominative +nominative +100652 nominative +nominative +genitive +100656 nominative +nominative +genitive +100660 nominative +100663 nominative +100665 dative +100668 dative +100671 dative +100674 dative +100677 genitive +100681 accusative +100689 accusative +100691 dative +dative +100694 dative +100696 dative +genitive +dative +genitive +dative +100702 genitive +dative +100705 genitive +dative +100708 dative +dative +100711 dative +dative +100714 dative +dative +100717 dative +dative +100720 dative +100722 dative +100725 dative +100727 dative +100729 dative +100732 dative +100734 dative +100736 genitive +100738 nominative +nominative +dative +nominative +100743 accusative +nominative +nominative +genitive +genitive +genitive +nominative +100754 nominative +100758 nominative +100763 accusative +genitive +genitive +genitive +100768 nominative +nominative +100771 nominative +genitive +genitive +genitive +nominative +nominative +nominative +100779 accusative +accusative +100786 dative +nominative +nominative +genitive +genitive +genitive +100793 accusative +accusative +genitive +100797 accusative +100800 genitive +100802 dative +100805 genitive +genitive +100809 accusative +accusative +genitive +100816 accusative +100820 accusative +100822 accusative +genitive +100825 accusative +100827 dative +100830 dative +100835 genitive +genitive +100839 nominative +nominative +100843 genitive +genitive +accusative +accusative +accusative +100849 genitive +genitive +100853 accusative +accusative +accusative +100858 dative +100861 genitive +genitive +100865 nominative +nominative +100871 accusative +accusative +100875 accusative +accusative +accusative +100880 nominative +dative +100883 genitive +genitive +100888 genitive +100894 dative +dative +100902 nominative +100904 accusative +100909 nominative +100911 accusative +100914 accusative +100916 accusative +100920 genitive +100922 dative +dative +genitive +genitive +100931 dative +nominative +dative +dative +nominative +genitive +100938 accusative +100944 genitive +100946 accusative +accusative +100952 genitive +100955 dative +100957 dative +nominative +nominative +genitive +100962 nominative +nominative +100965 dative +100968 accusative +100972 dative +dative +100977 accusative +nominative +nominative +genitive +genitive +100985 dative +100987 dative +100989 dative +100991 dative +100993 dative +100995 genitive +101000 nominative +101003 nominative +nominative +accusative +101008 nominative +101011 genitive +101014 accusative +101016 genitive +101018 genitive +101021 nominative +101024 nominative +nominative +genitive +genitive +101030 dative +101032 dative +dative +101035 dative +101037 dative +101039 dative +101041 nominative +101043 accusative +101046 accusative +accusative +accusative +101052 nominative +nominative +101056 genitive +101058 dative +accusative +accusative +accusative +101063 accusative +accusative +101069 accusative +101076 accusative +genitive +101079 accusative +101083 nominative +nominative +dative +dative +101089 nominative +nominative +dative +dative +101094 nominative +accusative +101100 genitive +genitive +genitive +101105 accusative +101107 accusative +101111 nominative +101114 accusative +101116 nominative +nominative +dative +accusative +101122 accusative +genitive +101126 accusative +101128 genitive +101130 accusative +101132 accusative +101135 accusative +accusative +101139 accusative +nominative +101142 dative +dative +dative +101147 dative +dative +dative +101153 dative +101156 genitive +101158 dative +101161 vocative +nominative +nominative +101165 genitive +genitive +genitive +101172 nominative +101174 accusative +101177 accusative +nominative +101180 dative +accusative +101186 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +101196 genitive +genitive +101199 accusative +nominative +nominative +genitive +101204 accusative +101207 accusative +genitive +genitive +101212 genitive +101214 dative +dative +101217 dative +101219 dative +dative +101222 accusative +accusative +101226 accusative +101228 genitive +101230 genitive +101232 genitive +101234 nominative +nominative +101240 nominative +accusative +accusative +101244 nominative +101246 dative +dative +101249 dative +dative +dative +101256 accusative +101262 accusative +genitive +101265 dative +genitive +genitive +nominative +101270 accusative +101276 dative +101281 genitive +101285 genitive +genitive +101289 nominative +101292 dative +101296 dative +101298 genitive +genitive +101301 accusative +accusative +101307 dative +dative +accusative +101314 accusative +101316 nominative +nominative +101319 dative +101322 nominative +101329 nominative +101332 nominative +101336 accusative +accusative +101340 accusative +accusative +accusative +101345 nominative +nominative +101350 nominative +accusative +accusative +101355 nominative +101357 nominative +101362 accusative +101364 genitive +genitive +101368 genitive +genitive +101373 nominative +101376 nominative +nominative +101381 accusative +accusative +genitive +accusative +101386 accusative +accusative +nominative +101391 nominative +101396 accusative +accusative +accusative +nominative +nominative +101402 dative +101404 accusative +101408 accusative +vocative +accusative +101414 accusative +accusative +101419 nominative +nominative +genitive +genitive +101424 genitive +101427 genitive +101429 accusative +101431 dative +dative +101434 accusative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +genitive +genitive +101445 nominative +nominative +genitive +genitive +101450 nominative +nominative +genitive +genitive +genitive +101456 genitive +genitive +nominative +nominative +101462 genitive +101465 genitive +101468 genitive +genitive +101471 genitive +genitive +genitive +genitive +accusative +101477 genitive +101479 nominative +101481 dative +nominative +nominative +dative +dative +genitive +genitive +dative +nominative +101491 nominative +101493 genitive +genitive +genitive +101497 genitive +genitive +genitive +genitive +genitive +accusative +101504 genitive +genitive +genitive +101509 accusative +101511 genitive +genitive +genitive +genitive +genitive +101517 accusative +accusative +genitive +genitive +101522 genitive +genitive +dative +nominative +nominative +101528 accusative +accusative +genitive +genitive +101539 genitive +genitive +accusative +101543 dative +genitive +101546 accusative +accusative +nominative +101551 nominative +101554 nominative +101556 nominative +nominative +accusative +101560 nominative +101562 accusative +accusative +genitive +genitive +101569 nominative +101571 nominative +101573 genitive +101575 dative +101577 accusative +101579 dative +nominative +101589 nominative +accusative +101593 accusative +101595 nominative +101600 accusative +101602 accusative +accusative +101606 dative +101610 dative +101613 genitive +nominative +101618 vocative +101620 dative +accusative +accusative +accusative +accusative +101626 genitive +101631 accusative +101634 nominative +101636 genitive +101638 accusative +101643 genitive +genitive +genitive +101648 accusative +accusative +accusative +101653 dative +dative +101657 accusative +101659 accusative +accusative +genitive +genitive +101665 accusative +101669 dative +dative +101672 accusative +accusative +101675 dative +dative +genitive +101679 nominative +nominative +genitive +genitive +genitive +genitive +101688 nominative +nominative +accusative +101692 genitive +genitive +genitive +101696 nominative +101698 genitive +genitive +genitive +101702 accusative +accusative +genitive +101706 dative +101709 accusative +101711 dative +dative +101716 dative +101718 dative +101722 accusative +101724 accusative +101726 genitive +accusative +101731 accusative +101736 accusative +101739 accusative +accusative +101743 accusative +101745 accusative +101749 accusative +accusative +101753 accusative +genitive +genitive +101760 accusative +accusative +accusative +genitive +genitive +101766 accusative +101768 dative +101771 genitive +genitive +101779 accusative +accusative +genitive +genitive +101784 genitive +genitive +101788 nominative +dative +dative +dative +dative +genitive +genitive +dative +101797 dative +101799 accusative +nominative +101803 nominative +nominative +accusative +101809 accusative +accusative +accusative +101817 dative +accusative +accusative +101822 genitive +genitive +101827 accusative +101829 genitive +nominative +101832 accusative +101836 accusative +101839 dative +accusative +accusative +accusative +101845 dative +dative +101849 accusative +dative +dative +101855 accusative +101861 nominative +nominative +101864 dative +nominative +nominative +101871 accusative +accusative +accusative +nominative +101877 accusative +accusative +genitive +accusative +101883 dative +dative +101886 accusative +101888 dative +101891 accusative +101893 dative +dative +101896 nominative +nominative +genitive +genitive +101902 accusative +101905 genitive +genitive +101908 accusative +nominative +101912 accusative +dative +101915 accusative +genitive +nominative +nominative +101922 dative +nominative +nominative +accusative +101928 accusative +nominative +101932 accusative +accusative +genitive +genitive +101937 nominative +genitive +genitive +101941 nominative +nominative +dative +101945 accusative +genitive +genitive +101950 dative +101952 accusative +accusative +101955 nominative +accusative +accusative +accusative +accusative +dative +nominative +101963 nominative +101965 nominative +nominative +nominative +nominative +101970 accusative +genitive +101973 dative +101975 genitive +101977 nominative +101979 accusative +accusative +101982 nominative +101984 accusative +accusative +accusative +101988 genitive +genitive +101991 accusative +101994 accusative +accusative +102000 nominative +102002 accusative +102004 accusative +dative +102008 nominative +102012 genitive +102014 accusative +102016 genitive +102018 genitive +genitive +102027 accusative +nominative +accusative +102031 genitive +102034 dative +102036 nominative +nominative +nominative +102041 nominative +102043 genitive +dative +dative +102053 accusative +accusative +genitive +genitive +102058 dative +dative +102061 genitive +102063 nominative +nominative +nominative +102073 accusative +accusative +102076 nominative +dative +nominative +102082 genitive +nominative +102085 nominative +102089 nominative +102091 genitive +genitive +102096 genitive +genitive +genitive +102100 nominative +102102 accusative +accusative +102108 genitive +genitive +102113 genitive +genitive +102117 genitive +genitive +102121 nominative +nominative +102125 nominative +102128 dative +102131 nominative +nominative +102134 nominative +genitive +nominative +102141 accusative +102143 accusative +102146 accusative +accusative +102150 nominative +102152 genitive +dative +102156 dative +102158 dative +102163 nominative +102167 dative +nominative +102170 accusative +102174 dative +102177 dative +dative +genitive +genitive +genitive +genitive +genitive +genitive +accusative +102187 genitive +accusative +102190 genitive +102193 accusative +accusative +genitive +genitive +102200 genitive +nominative +102203 nominative +102207 vocative +vocative +nominative +accusative +102212 dative +102214 accusative +nominative +nominative +102218 nominative +102220 accusative +accusative +102224 genitive +accusative +accusative +102229 genitive +genitive +102233 genitive +genitive +102236 nominative +102238 nominative +dative +102241 dative +102243 accusative +102251 nominative +nominative +dative +accusative +accusative +102257 nominative +accusative +102260 dative +102262 genitive +genitive +102266 genitive +genitive +102269 nominative +102271 dative +dative +102275 dative +102277 accusative +102281 nominative +102283 genitive +nominative +nominative +genitive +102289 nominative +nominative +nominative +102294 genitive +102296 accusative +accusative +nominative +nominative +102301 dative +dative +102306 dative +nominative +nominative +nominative +102311 nominative +102313 genitive +102316 dative +dative +dative +102320 nominative +102322 genitive +genitive +102326 accusative +102331 nominative +nominative +nominative +102336 dative +dative +dative +102340 dative +dative +genitive +genitive +genitive +102346 accusative +102350 dative +nominative +102354 dative +dative +nominative +102358 nominative +nominative +102361 genitive +102364 nominative +nominative +102369 genitive +102371 nominative +nominative +accusative +102376 dative +nominative +accusative +102381 genitive +genitive +genitive +genitive +nominative +102387 genitive +nominative +102391 nominative +nominative +nominative +nominative +102396 genitive +102399 accusative +accusative +nominative +nominative +genitive +genitive +102407 dative +dative +102410 accusative +accusative +genitive +genitive +102416 genitive +genitive +vocative +102420 accusative +102423 genitive +accusative +accusative +nominative +102432 nominative +nominative +dative +dative +102437 dative +dative +genitive +102443 dative +dative +102447 genitive +102451 genitive +102453 dative +dative +genitive +nominative +102458 nominative +102460 accusative +102462 accusative +accusative +102465 genitive +genitive +nominative +102469 accusative +102472 accusative +nominative +nominative +102478 accusative +102480 accusative +accusative +102485 genitive +nominative +nominative +102490 genitive +102492 dative +dative +102495 genitive +102497 nominative +nominative +102500 nominative +nominative +nominative +genitive +genitive +102510 nominative +nominative +dative +102514 nominative +102516 genitive +102518 dative +genitive +102521 nominative +nominative +genitive +102527 nominative +nominative +nominative +102532 nominative +nominative +102535 genitive +genitive +genitive +genitive +102544 nominative +nominative +nominative +102551 genitive +102553 nominative +nominative +102557 nominative +nominative +accusative +accusative +102562 accusative +102564 nominative +nominative +102567 genitive +genitive +genitive +102571 dative +dative +102575 genitive +102577 accusative +accusative +102580 accusative +102582 nominative +102584 accusative +accusative +102587 accusative +102589 nominative +nominative +nominative +genitive +102595 accusative +102598 genitive +102601 genitive +genitive +genitive +102606 accusative +102609 nominative +nominative +genitive +102614 genitive +genitive +102617 dative +dative +102620 nominative +102622 accusative +102624 accusative +102628 nominative +102630 nominative +102633 nominative +102635 nominative +102638 nominative +102640 nominative +102642 nominative +nominative +nominative +102647 dative +dative +102651 nominative +genitive +102654 genitive +genitive +nominative +102659 accusative +nominative +102664 accusative +accusative +nominative +nominative +nominative +102670 accusative +102672 genitive +nominative +genitive +nominative +102678 accusative +102680 accusative +102683 genitive +genitive +genitive +genitive +102689 nominative +102692 nominative +102694 accusative +accusative +genitive +genitive +102699 nominative +102703 nominative +nominative +genitive +genitive +102708 nominative +nominative +accusative +accusative +genitive +accusative +102715 genitive +accusative +102718 accusative +102720 accusative +102722 accusative +102725 accusative +accusative +102731 nominative +102733 nominative +nominative +accusative +accusative +genitive +genitive +genitive +102741 accusative +accusative +genitive +accusative +vocative +nominative +nominative +102751 nominative +102753 nominative +102756 nominative +102758 nominative +102760 genitive +102765 nominative +accusative +102768 dative +dative +102771 dative +dative +102775 nominative +accusative +102779 nominative +102781 genitive +102786 accusative +accusative +102789 accusative +accusative +dative +102797 accusative +102799 accusative +102801 accusative +102803 accusative +102805 accusative +102811 accusative +102814 nominative +102816 nominative +102818 nominative +vocative +102821 genitive +accusative +accusative +102829 accusative +genitive +genitive +102833 dative +accusative +accusative +102838 accusative +accusative +genitive +102842 dative +dative +genitive +102850 accusative +genitive +102853 accusative +102855 accusative +accusative +102859 nominative +nominative +genitive +102864 dative +102867 nominative +accusative +accusative +genitive +nominative +102873 dative +102875 nominative +genitive +102878 nominative +dative +102881 accusative +102886 accusative +102889 accusative +102892 nominative +102895 dative +102899 accusative +102901 dative +102903 accusative +102905 accusative +vocative +genitive +accusative +102912 genitive +102914 nominative +102916 dative +102921 accusative +102925 accusative +accusative +genitive +102931 dative +102933 dative +nominative +102936 accusative +102938 nominative +accusative +accusative +102946 nominative +102949 accusative +accusative +102952 genitive +genitive +102955 accusative +102957 genitive +genitive +102961 nominative +102963 genitive +genitive +102966 accusative +102969 nominative +102971 genitive +genitive +102974 genitive +genitive +nominative +102978 nominative +102980 nominative +102983 nominative +102985 nominative +102987 genitive +genitive +102990 accusative +nominative +nominative +102994 nominative +102996 nominative +nominative +nominative +nominative +103002 dative +dative +103006 dative +103008 dative +103012 genitive +genitive +genitive +103016 nominative +103018 nominative +nominative +103021 nominative +103023 nominative +genitive +103028 vocative +nominative +103031 nominative +103035 nominative +103037 nominative +103039 nominative +nominative +nominative +genitive +genitive +103046 genitive +genitive +accusative +accusative +103051 vocative +nominative +103054 accusative +genitive +nominative +103061 nominative +103063 accusative +nominative +103066 accusative +103068 accusative +103073 accusative +103075 nominative +nominative +103078 accusative +accusative +103081 accusative +accusative +genitive +103088 nominative +nominative +genitive +genitive +103093 genitive +genitive +genitive +genitive +103098 vocative +103101 genitive +nominative +103104 genitive +genitive +dative +dative +accusative +nominative +103116 dative +genitive +103120 nominative +nominative +103123 dative +103127 nominative +accusative +accusative +103134 dative +dative +dative +103138 nominative +103140 accusative +accusative +accusative +103146 genitive +nominative +103149 dative +103151 genitive +genitive +103155 nominative +dative +103158 genitive +accusative +genitive +103164 dative +dative +103167 nominative +103169 nominative +accusative +103173 nominative +103175 genitive +nominative +103179 nominative +103181 accusative +dative +103185 nominative +nominative +103189 genitive +genitive +accusative +nominative +nominative +accusative +accusative +accusative +103198 nominative +103201 accusative +103203 dative +103205 accusative +accusative +103209 nominative +nominative +accusative +103213 accusative +accusative +103216 nominative +103219 vocative +103221 nominative +accusative +103225 accusative +103230 nominative +nominative +genitive +genitive +103237 nominative +nominative +accusative +103241 nominative +103243 dative +103245 vocative +accusative +103248 accusative +accusative +103251 accusative +dative +dative +103256 genitive +genitive +103259 dative +103261 nominative +nominative +nominative +103266 dative +dative +103269 dative +103271 accusative +103273 genitive +103275 accusative +103278 accusative +103285 genitive +103289 dative +103292 accusative +genitive +103298 nominative +nominative +103302 genitive +genitive +103305 nominative +nominative +103308 genitive +genitive +103311 nominative +dative +103317 accusative +103319 accusative +103323 dative +103328 accusative +103330 nominative +103332 nominative +nominative +genitive +genitive +nominative +103338 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +103354 nominative +nominative +dative +accusative +103359 dative +103363 nominative +accusative +accusative +nominative +accusative +genitive +103372 nominative +nominative +genitive +genitive +103377 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +103387 genitive +genitive +103391 nominative +103393 nominative +genitive +genitive +genitive +accusative +accusative +103401 dative +dative +103404 dative +dative +103408 dative +dative +103414 nominative +accusative +nominative +dative +nominative +vocative +103423 nominative +103425 dative +dative +nominative +nominative +nominative +103431 accusative +accusative +103434 dative +genitive +nominative +accusative +103440 nominative +103442 genitive +accusative +accusative +103449 accusative +accusative +genitive +genitive +103456 nominative +103458 nominative +nominative +nominative +103462 accusative +103464 accusative +accusative +genitive +103468 nominative +103472 accusative +accusative +accusative +accusative +103480 accusative +accusative +103483 nominative +accusative +accusative +accusative +103490 nominative +nominative +accusative +accusative +dative +dative +103497 dative +dative +103501 nominative +103506 accusative +103508 nominative +accusative +103513 nominative +nominative +103516 accusative +accusative +genitive +103520 genitive +genitive +103523 accusative +103525 nominative +nominative +103528 accusative +accusative +103531 genitive +genitive +103534 accusative +accusative +103537 accusative +accusative +nominative +103543 dative +dative +103547 nominative +103551 accusative +103554 accusative +accusative +103557 accusative +103561 accusative +accusative +genitive +genitive +103566 dative +dative +dative +103570 dative +dative +dative +nominative +103577 dative +nominative +103580 accusative +103583 accusative +dative +dative +genitive +genitive +103592 nominative +nominative +nominative +accusative +103599 accusative +103603 dative +dative +dative +103608 dative +103615 dative +dative +genitive +genitive +genitive +genitive +genitive +103623 genitive +dative +nominative +103627 nominative +dative +103630 nominative +103633 nominative +103635 nominative +103637 nominative +nominative +103640 nominative +dative +dative +dative +103645 nominative +103647 nominative +103649 accusative +103652 accusative +accusative +genitive +genitive +genitive +genitive +accusative +dative +nominative +103663 nominative +accusative +accusative +genitive +genitive +103669 dative +dative +genitive +103673 nominative +nominative +genitive +genitive +genitive +genitive +genitive +103681 genitive +genitive +genitive +vocative +103686 nominative +nominative +genitive +genitive +103691 genitive +genitive +dative +dative +dative +dative +103698 dative +103700 dative +103702 dative +dative +dative +nominative +103707 nominative +103709 genitive +genitive +genitive +103713 genitive +genitive +genitive +nominative +nominative +nominative +103720 nominative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +accusative +103730 dative +dative +dative +103734 dative +dative +103737 dative +103740 accusative +103742 dative +103744 genitive +genitive +103747 accusative +accusative +103750 accusative +103752 genitive +103754 dative +nominative +accusative +103758 accusative +103760 genitive +genitive +103763 accusative +103765 accusative +accusative +genitive +genitive +genitive +103771 accusative +genitive +genitive +genitive +genitive +genitive +103778 accusative +103780 dative +dative +103783 dative +103785 accusative +accusative +103788 genitive +genitive +genitive +accusative +accusative +genitive +genitive +103796 accusative +accusative +genitive +genitive +genitive +genitive +103804 accusative +103806 dative +dative +103809 dative +nominative +dative +accusative +accusative +genitive +genitive +genitive +103818 accusative +accusative +genitive +accusative +103824 dative +103826 accusative +genitive +genitive +genitive +genitive +103832 accusative +accusative +103835 dative +dative +accusative +103839 dative +dative +103842 accusative +103844 genitive +genitive +103847 dative +103849 dative +103852 nominative +103854 accusative +genitive +accusative +accusative +genitive +103860 accusative +accusative +genitive +genitive +genitive +103866 accusative +103869 accusative +genitive +genitive +accusative +accusative +accusative +103876 dative +dative +103879 dative +103881 nominative +nominative +accusative +accusative +genitive +genitive +accusative +accusative +genitive +genitive +genitive +103893 dative +103895 nominative +103897 dative +dative +genitive +genitive +dative +dative +nominative +103905 nominative +genitive +genitive +genitive +103910 accusative +genitive +genitive +103914 accusative +genitive +genitive +genitive +103919 accusative +nominative +nominative +accusative +103924 accusative +accusative +103927 dative +dative +dative +103931 accusative +accusative +accusative +103935 accusative +accusative +accusative +103940 nominative +103942 genitive +accusative +nominative +103946 genitive +genitive +genitive +103950 nominative +nominative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +genitive +genitive +103962 dative +accusative +genitive +103966 genitive +103968 dative +genitive +accusative +accusative +accusative +genitive +genitive +genitive +103977 accusative +103979 accusative +nominative +103982 nominative +nominative +genitive +genitive +genitive +nominative +nominative +nominative +genitive +genitive +genitive +genitive +genitive +103996 dative +dative +103999 nominative +nominative +nominative +nominative +genitive +genitive +genitive +104007 accusative +accusative +accusative +104011 accusative +accusative +genitive +genitive +genitive +genitive +genitive +accusative +104021 dative +dative +nominative +accusative +104026 genitive +104028 nominative +104030 dative +genitive +104033 dative +dative +104036 genitive +genitive +104039 genitive +104041 genitive +104043 genitive +104045 genitive +genitive +genitive +104049 accusative +104051 dative +dative +dative +104057 dative +dative +104060 accusative +104063 accusative +accusative +genitive +104067 accusative +104069 accusative +104071 accusative +dative +dative +nominative +104076 nominative +nominative +genitive +nominative +nominative +genitive +accusative +accusative +104085 dative +genitive +104088 accusative +accusative +accusative +dative +dative +104094 dative +dative +genitive +104098 dative +104102 accusative +accusative +genitive +genitive +genitive +104108 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +104118 genitive +104120 dative +dative +genitive +genitive +104125 dative +104127 nominative +nominative +104132 dative +dative +genitive +genitive +genitive +nominative +accusative +accusative +genitive +genitive +104143 genitive +genitive +104147 nominative +genitive +dative +104152 nominative +nominative +104155 nominative +nominative +nominative +nominative +104160 dative +104162 accusative +accusative +accusative +genitive +accusative +104168 accusative +104170 accusative +accusative +accusative +dative +dative +104176 dative +dative +dative +104180 nominative +104186 dative +dative +104189 dative +dative +104194 dative +dative +dative +dative +accusative +accusative +accusative +genitive +genitive +genitive +104205 dative +104207 accusative +104209 dative +dative +104212 dative +dative +104215 nominative +104217 genitive +104219 nominative +104222 genitive +genitive +nominative +nominative +104228 genitive +104231 nominative +104235 genitive +nominative +nominative +104239 dative +dative +104242 dative +dative +dative +104246 nominative +nominative +104250 dative +104256 nominative +nominative +nominative +104260 dative +nominative +nominative +nominative +104265 genitive +genitive +genitive +104269 dative +genitive +104273 dative +dative +dative +104277 genitive +nominative +genitive +genitive +genitive +genitive +104284 nominative +genitive +genitive +genitive +genitive +accusative +104291 nominative +104293 nominative +104295 dative +dative +104300 dative +dative +nominative +nominative +104305 nominative +accusative +104310 dative +dative +genitive +genitive +104315 nominative +104317 nominative +nominative +genitive +nominative +nominative +accusative +accusative +accusative +104326 accusative +accusative +genitive +genitive +accusative +accusative +nominative +104334 dative +dative +genitive +accusative +accusative +genitive +genitive +104342 dative +nominative +104345 accusative +104349 dative +104351 accusative +accusative +accusative +nominative +accusative +104358 accusative +accusative +104361 dative +dative +dative +dative +104366 genitive +genitive +nominative +accusative +accusative +104372 dative +104374 nominative +104376 accusative +dative +dative +accusative +104381 accusative +dative +104386 genitive +104388 accusative +accusative +nominative +nominative +104393 dative +dative +104396 accusative +accusative +104402 nominative +104404 nominative +104407 nominative +genitive +genitive +104411 nominative +genitive +genitive +nominative +104416 dative +dative +genitive +genitive +104421 genitive +genitive +genitive +genitive +genitive +genitive +104428 dative +nominative +nominative +nominative +104434 accusative +accusative +104437 dative +104439 dative +104441 nominative +104444 accusative +genitive +genitive +104448 dative +genitive +104451 nominative +nominative +nominative +nominative +genitive +genitive +genitive +104459 genitive +genitive +genitive +104465 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +dative +104475 accusative +104478 accusative +104480 dative +nominative +nominative +104486 dative +104488 accusative +104490 nominative +104492 accusative +accusative +genitive +104496 dative +dative +genitive +genitive +nominative +dative +dative +104505 dative +dative +genitive +genitive +104512 dative +dative +dative +genitive +104517 dative +104519 dative +104521 accusative +accusative +accusative +104525 accusative +104527 accusative +genitive +genitive +104531 dative +dative +104534 genitive +genitive +genitive +nominative +104540 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +dative +104550 accusative +accusative +genitive +genitive +genitive +dative +dative +dative +genitive +genitive +104561 nominative +nominative +nominative +dative +dative +104567 accusative +accusative +accusative +genitive +genitive +104574 nominative +nominative +nominative +genitive +genitive +genitive +genitive +104582 genitive +genitive +104585 dative +dative +dative +accusative +accusative +dative +104594 dative +dative +104597 dative +dative +104600 dative +dative +104603 genitive +genitive +nominative +nominative +nominative +genitive +genitive +104611 accusative +genitive +genitive +accusative +104617 dative +dative +dative +dative +dative +genitive +104624 dative +104626 accusative +accusative +104629 accusative +104631 dative +104633 genitive +genitive +genitive +104641 dative +dative +genitive +104645 genitive +nominative +104648 nominative +genitive +genitive +104653 accusative +accusative +genitive +104657 accusative +accusative +104660 genitive +nominative +nominative +104664 dative +104667 genitive +104671 dative +104673 accusative +accusative +genitive +genitive +genitive +dative +104681 genitive +genitive +genitive +104685 accusative +104687 accusative +104689 accusative +accusative +104692 genitive +genitive +104695 dative +dative +genitive +104699 dative +nominative +104702 nominative +104707 dative +dative +dative +nominative +nominative +nominative +104714 nominative +104716 nominative +104718 nominative +104721 accusative +accusative +genitive +genitive +accusative +genitive +genitive +104731 accusative +accusative +accusative +genitive +genitive +104737 dative +dative +104742 accusative +genitive +104748 accusative +accusative +accusative +accusative +104753 dative +dative +nominative +nominative +104758 dative +dative +104762 dative +dative +104765 accusative +accusative +accusative +genitive +genitive +genitive +genitive +104775 accusative +nominative +nominative +nominative +104780 dative +104783 genitive +genitive +genitive +104788 genitive +genitive +104791 genitive +104793 genitive +nominative +genitive +104797 dative +nominative +104800 accusative +accusative +genitive +genitive +104805 dative +dative +genitive +genitive +nominative +nominative +104812 nominative +nominative +104818 dative +dative +genitive +genitive +genitive +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +104832 nominative +genitive +nominative +104836 genitive +104839 genitive +104842 dative +104844 dative +dative +genitive +104848 nominative +nominative +104851 accusative +accusative +genitive +genitive +genitive +genitive +104859 nominative +104861 accusative +104863 accusative +104865 accusative +dative +dative +104869 nominative +104871 nominative +104879 accusative +accusative +accusative +genitive +genitive +nominative +nominative +nominative +104889 nominative +nominative +104892 genitive +genitive +genitive +104897 accusative +accusative +104900 nominative +104903 accusative +accusative +104906 accusative +accusative +104909 accusative +accusative +104912 accusative +accusative +104915 accusative +104917 accusative +accusative +genitive +genitive +104922 accusative +genitive +104925 accusative +genitive +genitive +genitive +genitive +104932 nominative +nominative +104935 accusative +accusative +genitive +genitive +104940 genitive +genitive +genitive +genitive +genitive +genitive +104947 accusative +accusative +104950 accusative +genitive +genitive +genitive +genitive +genitive +104959 nominative +nominative +104962 nominative +dative +dative +genitive +genitive +104968 dative +dative +genitive +genitive +104973 dative +104975 accusative +accusative +genitive +genitive +104980 nominative +104982 dative +104984 accusative +accusative +104987 accusative +nominative +104990 nominative +nominative +nominative +104994 genitive +nominative +nominative +nominative +nominative +105000 nominative +105002 genitive +genitive +genitive +genitive +105007 accusative +105009 dative +genitive +genitive +genitive +accusative +accusative +genitive +genitive +105019 accusative +genitive +105022 dative +105024 accusative +105029 dative +105031 accusative +105035 nominative +nominative +105039 dative +genitive +genitive +genitive +nominative +nominative +dative +dative +nominative +genitive +genitive +genitive +genitive +105053 accusative +accusative +accusative +accusative +105058 dative +105060 accusative +accusative +genitive +genitive +genitive +nominative +nominative +accusative +105069 dative +dative +105072 accusative +genitive +genitive +105076 dative +105078 nominative +105082 accusative +accusative +105086 accusative +105090 dative +105094 nominative +105096 dative +dative +105099 accusative +105101 accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +105110 accusative +accusative +genitive +genitive +105116 dative +dative +genitive +genitive +genitive +105123 accusative +accusative +accusative +accusative +105128 accusative +accusative +105131 dative +105133 dative +genitive +genitive +105137 nominative +accusative +accusative +105141 accusative +nominative +105144 genitive +105146 genitive +105149 genitive +nominative +105155 nominative +nominative +105160 dative +genitive +105164 accusative +dative +dative +nominative +nominative +105174 nominative +dative +dative +dative +accusative +accusative +105183 dative +accusative +dative +nominative +nominative +nominative +105190 genitive +genitive +genitive +105197 nominative +nominative +105200 accusative +genitive +genitive +105205 accusative +dative +dative +105211 accusative +accusative +accusative +accusative +genitive +genitive +105218 dative +105221 accusative +genitive +nominative +nominative +105226 nominative +105228 nominative +105230 nominative +105232 nominative +105235 genitive +105237 dative +dative +105242 accusative +nominative +nominative +nominative +dative +105249 nominative +nominative +105252 dative +105254 dative +105257 nominative +genitive +genitive +105261 nominative +nominative +105266 dative +105269 nominative +nominative +105272 accusative +105275 accusative +105277 genitive +accusative +105280 accusative +dative +dative +105284 accusative +genitive +105287 nominative +105289 nominative +nominative +105292 nominative +105296 dative +105299 dative +105301 nominative +105303 nominative +105305 nominative +nominative +105311 nominative +105313 accusative +105315 nominative +105317 nominative +nominative +105320 nominative +105322 nominative +nominative +105325 nominative +105328 accusative +105330 dative +dative +genitive +genitive +105335 genitive +nominative +accusative +105339 dative +dative +105343 accusative +105345 nominative +nominative +genitive +genitive +105350 accusative +accusative +genitive +genitive +105357 nominative +genitive +105362 nominative +105365 nominative +105367 dative +105369 nominative +genitive +105373 nominative +nominative +genitive +genitive +105378 dative +dative +105381 dative +105383 dative +nominative +nominative +105387 nominative +dative +dative +105393 dative +dative +dative +dative +genitive +genitive +105404 nominative +105406 accusative +105408 genitive +nominative +105414 nominative +nominative +nominative +105418 genitive +genitive +105422 nominative +nominative +nominative +nominative +105430 nominative +nominative +105435 genitive +genitive +105439 dative +nominative +nominative +105449 nominative +105452 nominative +nominative +accusative +accusative +105457 nominative +nominative +nominative +105462 accusative +105465 nominative +105468 nominative +nominative +nominative +genitive +genitive +105476 dative +105478 dative +105480 nominative +105484 dative +nominative +dative +dative +105489 dative +105491 dative +dative +nominative +105495 nominative +dative +dative +genitive +dative +dative +nominative +105504 genitive +105506 dative +genitive +genitive +genitive +genitive +genitive +dative +dative +105515 dative +nominative +dative +105519 dative +genitive +nominative +nominative +dative +dative +dative +105527 dative +dative +105530 nominative +105532 nominative +genitive +genitive +105537 nominative +nominative +nominative +genitive +genitive +nominative +nominative +genitive +genitive +105548 nominative +nominative +105551 dative +dative +105555 nominative +nominative +dative +dative +105560 dative +nominative +nominative +105564 accusative +accusative +105568 nominative +nominative +105571 accusative +accusative +105574 accusative +105577 genitive +105579 accusative +105581 nominative +dative +dative +genitive +genitive +105587 dative +105590 nominative +dative +accusative +accusative +accusative +105596 accusative +accusative +105599 accusative +105601 accusative +genitive +genitive +105607 nominative +105609 nominative +105613 nominative +nominative +105616 accusative +genitive +accusative +105620 accusative +genitive +accusative +nominative +nominative +accusative +genitive +accusative +accusative +105631 nominative +105633 accusative +genitive +accusative +105641 accusative +105644 nominative +nominative +accusative +accusative +105650 nominative +genitive +genitive +genitive +105655 genitive +105657 nominative +accusative +accusative +105661 accusative +accusative +105666 accusative +accusative +genitive +105671 nominative +105674 accusative +accusative +nominative +nominative +nominative +nominative +105682 nominative +105685 accusative +105688 accusative +accusative +105692 nominative +nominative +105695 accusative +nominative +accusative +genitive +accusative +105703 accusative +105705 nominative +nominative +105709 accusative +accusative +nominative +nominative +105714 dative +dative +genitive +105718 dative +105720 nominative +105722 nominative +105724 accusative +accusative +genitive +105728 accusative +accusative +nominative +105732 nominative +nominative +105735 dative +105738 dative +105742 nominative +105744 genitive +genitive +105747 nominative +nominative +105751 accusative +accusative +genitive +105756 accusative +105758 dative +105760 dative +genitive +nominative +nominative +105765 dative +105767 accusative +dative +105770 genitive +105772 genitive +105774 dative +genitive +genitive +genitive +105779 dative +dative +105783 accusative +105785 nominative +105788 nominative +genitive +nominative +accusative +accusative +genitive +genitive +105796 genitive +105798 genitive +nominative +105801 dative +dative +105805 dative +nominative +105809 nominative +accusative +accusative +105813 accusative +105816 genitive +105818 nominative +105820 nominative +105822 nominative +nominative +accusative +accusative +105828 accusative +nominative +accusative +accusative +nominative +105835 genitive +105837 genitive +nominative +nominative +105842 dative +105844 nominative +105848 dative +genitive +genitive +105853 dative +105856 dative +dative +genitive +genitive +genitive +105862 accusative +accusative +genitive +genitive +105867 accusative +105869 accusative +105872 accusative +accusative +genitive +genitive +105878 dative +nominative +nominative +105883 accusative +105885 accusative +105888 accusative +accusative +105891 accusative +accusative +105894 accusative +accusative +genitive +genitive +genitive +105900 accusative +accusative +genitive +genitive +105905 dative +dative +105908 accusative +105910 accusative +accusative +genitive +genitive +105918 dative +dative +dative +dative +105923 accusative +nominative +105928 nominative +accusative +accusative +genitive +105933 dative +105935 nominative +accusative +accusative +genitive +genitive +105941 nominative +accusative +accusative +105945 dative +genitive +genitive +genitive +genitive +105951 dative +nominative +accusative +accusative +genitive +genitive +105958 dative +105960 accusative +accusative +accusative +genitive +genitive +accusative +accusative +105970 accusative +accusative +genitive +genitive +105975 accusative +accusative +genitive +genitive +nominative +105981 nominative +genitive +105984 genitive +genitive +105987 genitive +nominative +105990 dative +dative +105993 dative +105996 accusative +nominative +105999 dative +dative +106002 dative +106004 genitive +genitive +genitive +106009 genitive +106011 dative +106013 nominative +106015 dative +genitive +genitive +genitive +106020 dative +106022 accusative +accusative +genitive +genitive +106027 genitive +106030 dative +106033 dative +106037 accusative +106043 nominative +accusative +106046 accusative +accusative +106049 accusative +106051 dative +nominative +nominative +nominative +nominative +106057 nominative +nominative +106060 dative +accusative +106064 accusative +106066 accusative +accusative +106070 accusative +106072 genitive +106075 accusative +accusative +genitive +dative +dative +nominative +106082 nominative +106084 genitive +106086 genitive +genitive +106089 genitive +genitive +genitive +nominative +nominative +106095 genitive +genitive +genitive +accusative +accusative +genitive +accusative +accusative +106104 dative +nominative +106107 nominative +nominative +genitive +genitive +dative +dative +dative +106115 dative +dative +dative +dative +106120 dative +106122 dative +106124 dative +dative +nominative +106128 nominative +106130 genitive +genitive +genitive +106134 genitive +genitive +genitive +106138 dative +dative +genitive +106142 dative +dative +dative +genitive +106148 dative +dative +genitive +106152 genitive +genitive +106155 genitive +accusative +accusative +nominative +106160 dative +dative +genitive +106164 accusative +accusative +106167 genitive +genitive +genitive +106171 genitive +106173 nominative +accusative +accusative +106177 nominative +nominative +106180 dative +accusative +accusative +106185 genitive +genitive +genitive +106190 nominative +dative +accusative +106195 genitive +genitive +106198 accusative +106200 accusative +106202 dative +dative +accusative +106207 dative +dative +genitive +106212 dative +dative +106215 dative +genitive +genitive +accusative +genitive +genitive +genitive +accusative +accusative +accusative +106226 nominative +genitive +nominative +nominative +106232 accusative +accusative +106235 dative +genitive +genitive +106239 accusative +106242 nominative +nominative +genitive +106251 dative +106253 dative +dative +106256 accusative +106258 accusative +accusative +accusative +106263 nominative +106265 nominative +106267 accusative +genitive +nominative +accusative +genitive +accusative +106274 genitive +genitive +106277 accusative +106279 accusative +genitive +106282 vocative +106285 accusative +106287 nominative +106289 accusative +106292 accusative +genitive +genitive +106297 accusative +accusative +genitive +accusative +106302 dative +106305 dative +dative +dative +106309 dative +dative +dative +106313 accusative +accusative +genitive +genitive +106318 dative +accusative +dative +dative +genitive +106326 accusative +accusative +genitive +genitive +106332 nominative +106335 accusative +106337 accusative +106339 nominative +106342 accusative +accusative +accusative +106347 nominative +106349 genitive +nominative +106353 accusative +genitive +genitive +106358 nominative +106360 genitive +accusative +accusative +106366 nominative +accusative +106369 dative +dative +genitive +106373 nominative +106376 dative +dative +106379 dative +106381 dative +nominative +106386 dative +106394 nominative +dative +106398 accusative +106400 genitive +genitive +genitive +106404 genitive +genitive +genitive +genitive +genitive +106410 accusative +accusative +106413 accusative +genitive +106417 dative +106421 dative +dative +106428 nominative +106430 dative +dative +genitive +106435 genitive +106438 genitive +106440 dative +nominative +106443 nominative +106445 nominative +106447 nominative +106450 nominative +106453 dative +nominative +dative +nominative +genitive +106459 accusative +106466 genitive +106468 accusative +accusative +nominative +106472 accusative +106476 dative +106479 dative +106481 nominative +106483 nominative +106485 dative +dative +nominative +106489 accusative +106491 accusative +nominative +106498 dative +dative +106501 accusative +genitive +accusative +106505 accusative +genitive +genitive +106509 nominative +nominative +genitive +106514 dative +dative +106517 dative +106519 genitive +genitive +genitive +106524 accusative +accusative +106527 genitive +genitive +genitive +genitive +106534 nominative +106536 nominative +accusative +106539 nominative +106541 accusative +106543 genitive +106547 dative +dative +dative +dative +nominative +dative +dative +genitive +genitive +106558 nominative +106560 dative +106562 genitive +genitive +nominative +106566 dative +nominative +genitive +106570 genitive +genitive +106573 nominative +106575 genitive +106577 dative +106579 nominative +106581 genitive +106584 nominative +106586 accusative +106590 nominative +106592 genitive +106594 nominative +accusative +accusative +accusative +accusative +106601 dative +106606 dative +106609 nominative +nominative +106612 dative +106614 nominative +nominative +genitive +106618 nominative +nominative +genitive +106622 nominative +nominative +106625 nominative +106627 genitive +accusative +accusative +106631 accusative +accusative +106634 accusative +accusative +accusative +nominative +nominative +accusative +accusative +nominative +accusative +106644 accusative +106647 accusative +106649 dative +dative +accusative +nominative +accusative +genitive +106656 accusative +genitive +nominative +nominative +106662 accusative +genitive +nominative +accusative +106668 dative +nominative +106672 dative +dative +nominative +106676 dative +genitive +nominative +106680 accusative +106682 accusative +106684 accusative +dative +106687 accusative +106689 accusative +genitive +nominative +106693 dative +genitive +nominative +106697 dative +nominative +106700 nominative +106702 accusative +nominative +nominative +106706 genitive +106708 genitive +genitive +106712 nominative +nominative +accusative +106718 dative +accusative +accusative +accusative +106723 accusative +accusative +106727 dative +dative +genitive +106731 nominative +nominative +genitive +106735 genitive +106737 genitive +106739 nominative +nominative +106743 nominative +nominative +nominative +106747 accusative +genitive +genitive +106751 vocative +genitive +106759 dative +dative +genitive +accusative +106765 dative +106768 dative +dative +genitive +106772 genitive +106774 genitive +accusative +genitive +accusative +106780 nominative +106782 nominative +nominative +106785 dative +106787 accusative +106790 accusative +106793 genitive +genitive +accusative +106798 genitive +106800 genitive +106803 nominative +106805 nominative +nominative +genitive +nominative +accusative +genitive +genitive +106813 genitive +106815 dative +106818 nominative +106820 dative +accusative +genitive +nominative +106825 accusative +dative +106828 accusative +genitive +106833 accusative +106837 accusative +106844 dative +dative +106847 dative +genitive +genitive +genitive +106854 dative +dative +106857 accusative +accusative +106860 nominative +106864 dative +106868 dative +dative +accusative +106873 dative +106875 nominative +106877 nominative +accusative +106880 genitive +106882 accusative +accusative +106885 nominative +106887 accusative +106889 genitive +106892 nominative +nominative +accusative +genitive +106898 accusative +genitive +genitive +106902 accusative +accusative +genitive +106908 dative +nominative +106911 dative +106914 accusative +accusative +106919 accusative +106924 accusative +106926 accusative +106931 dative +106934 nominative +106939 accusative +accusative +accusative +accusative +106944 accusative +106946 accusative +genitive +106949 genitive +accusative +106952 accusative +genitive +genitive +genitive +106958 accusative +106960 nominative +106962 accusative +accusative +106965 nominative +106973 accusative +dative +106976 nominative +nominative +106979 accusative +106982 accusative +accusative +106986 accusative +106989 accusative +106991 accusative +106996 accusative +106998 nominative +accusative +107002 nominative +nominative +107007 accusative +107009 dative +107011 genitive +genitive +107014 accusative +accusative +accusative +107020 accusative +accusative +genitive +107024 genitive +107026 nominative +dative +dative +107031 accusative +genitive +accusative +genitive +107036 accusative +genitive +vocative +genitive +accusative +accusative +107044 dative +accusative +accusative +107048 dative +107050 dative +107052 nominative +107054 dative +nominative +107057 accusative +accusative +107060 accusative +accusative +accusative +107064 accusative +accusative +107068 nominative +nominative +nominative +nominative +dative +genitive +nominative +107076 nominative +107078 dative +dative +107083 dative +nominative +107086 nominative +nominative +accusative +107091 dative +107093 nominative +nominative +107098 dative +nominative +107101 dative +nominative +107104 genitive +genitive +genitive +genitive +nominative +107110 genitive +107112 accusative +nominative +107115 accusative +nominative +accusative +accusative +107120 accusative +accusative +107123 dative +nominative +nominative +107127 nominative +107129 dative +nominative +accusative +107134 accusative +accusative +accusative +107143 accusative +accusative +107147 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +107157 accusative +accusative +accusative +107163 accusative +107165 accusative +107170 dative +nominative +107173 accusative +accusative +accusative +107177 genitive +107179 accusative +107181 genitive +genitive +accusative +107185 genitive +accusative +107188 dative +dative +genitive +107192 accusative +107194 accusative +accusative +genitive +genitive +genitive +107200 accusative +genitive +genitive +nominative +dative +dative +genitive +107211 accusative +accusative +accusative +107215 genitive +107229 dative +107233 genitive +genitive +vocative +nominative +107239 accusative +107242 accusative +107244 accusative +107246 nominative +107248 dative +107250 nominative +107252 accusative +107255 accusative +accusative +genitive +107259 genitive +genitive +genitive +107263 dative +dative +107266 nominative +nominative +accusative +107272 accusative +107276 accusative +nominative +nominative +dative +107283 accusative +107285 dative +dative +107288 vocative +nominative +genitive +107294 accusative +107296 accusative +107299 accusative +accusative +107302 nominative +107304 accusative +107307 dative +107311 nominative +107313 accusative +accusative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +nominative +genitive +nominative +nominative +nominative +nominative +107329 nominative +nominative +107332 dative +dative +genitive +nominative +accusative +accusative +nominative +107340 genitive +nominative +nominative +107344 dative +107347 genitive +107350 accusative +accusative +accusative +accusative +nominative +107356 accusative +accusative +genitive +genitive +genitive +accusative +dative +dative +genitive +genitive +genitive +107368 accusative +accusative +genitive +107372 accusative +107375 dative +accusative +accusative +107379 vocative +genitive +vocative +107383 vocative +nominative +107386 nominative +genitive +107391 dative +vocative +accusative +107396 accusative +107398 accusative +accusative +107402 dative +107406 accusative +vocative +vocative +107410 dative +nominative +107413 dative +dative +107416 dative +107419 genitive +107421 genitive +genitive +genitive +genitive +genitive +nominative +nominative +107429 dative +genitive +107433 dative +107438 nominative +nominative +genitive +107442 dative +dative +nominative +nominative +107447 accusative +107451 dative +dative +dative +107455 dative +dative +107458 genitive +nominative +nominative +genitive +107464 accusative +accusative +107467 nominative +nominative +genitive +genitive +nominative +nominative +accusative +accusative +107476 accusative +accusative +genitive +107480 accusative +accusative +genitive +107484 dative +dative +vocative +accusative +accusative +nominative +107491 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +107503 nominative +nominative +107507 nominative +nominative +accusative +107511 accusative +107521 dative +accusative +107525 nominative +nominative +genitive +genitive +107531 genitive +107535 dative +107541 accusative +107543 genitive +107546 dative +107554 accusative +107557 nominative +107560 dative +107562 nominative +107571 dative +107574 dative +107584 accusative +107587 dative +dative +accusative +107593 nominative +genitive +dative +dative +107598 vocative +107601 nominative +107606 genitive +107608 dative +genitive +genitive +nominative +nominative +dative +107616 accusative +genitive +107619 genitive +107622 nominative +nominative +107627 dative +107633 accusative +accusative +dative +107640 accusative +accusative +107644 accusative +accusative +accusative +accusative +107649 accusative +genitive +107653 accusative +107657 nominative +107659 genitive +accusative +107662 genitive +accusative +genitive +accusative +accusative +accusative +dative +dative +107671 nominative +nominative +genitive +107675 accusative +accusative +genitive +107679 accusative +accusative +genitive +107683 dative +107685 dative +dative +107688 dative +dative +107691 dative +genitive +nominative +nominative +107696 accusative +accusative +genitive +genitive +107702 accusative +accusative +107705 dative +dative +107708 accusative +nominative +107711 dative +nominative +107714 accusative +nominative +nominative +nominative +107720 nominative +107722 genitive +genitive +genitive +nominative +nominative +genitive +genitive +genitive +genitive +107732 genitive +genitive +genitive +nominative +nominative +genitive +genitive +107740 genitive +genitive +107743 nominative +nominative +nominative +dative +107748 dative +dative +107751 dative +dative +107754 dative +dative +nominative +107758 nominative +107760 genitive +genitive +genitive +107764 dative +dative +dative +genitive +genitive +genitive +genitive +genitive +107774 genitive +nominative +nominative +accusative +accusative +genitive +107781 dative +dative +107784 accusative +accusative +accusative +107789 accusative +accusative +accusative +107793 accusative +accusative +accusative +accusative +dative +107799 dative +dative +accusative +107804 dative +dative +genitive +genitive +genitive +genitive +genitive +genitive +107813 accusative +107817 dative +dative +dative +107821 nominative +107823 nominative +107827 dative +107829 genitive +genitive +107834 accusative +accusative +genitive +genitive +107839 dative +107843 genitive +genitive +genitive +genitive +genitive +nominative +107850 nominative +107852 genitive +nominative +genitive +genitive +nominative +107858 nominative +dative +accusative +genitive +accusative +107864 dative +107866 accusative +107868 nominative +107870 genitive +genitive +107876 genitive +nominative +107879 nominative +107882 accusative +accusative +genitive +genitive +genitive +107888 dative +dative +107891 dative +dative +107895 genitive +genitive +107898 accusative +accusative +107901 dative +dative +dative +nominative +107906 nominative +dative +dative +genitive +genitive +107912 dative +dative +nominative +107916 accusative +accusative +genitive +genitive +genitive +107922 accusative +accusative +107925 accusative +107927 genitive +nominative +dative +dative +dative +dative +accusative +107935 accusative +accusative +genitive +genitive +genitive +genitive +107942 dative +dative +nominative +107946 accusative +107948 genitive +genitive +genitive +genitive +107955 accusative +accusative +genitive +genitive +genitive +genitive +genitive +107963 dative +107965 accusative +accusative +accusative +accusative +genitive +genitive +nominative +107973 nominative +genitive +genitive +genitive +genitive +nominative +genitive +genitive +107983 dative +107985 nominative +nominative +107988 dative +dative +107992 genitive +genitive +nominative +nominative +107997 nominative +nominative +108000 nominative +108002 nominative +108004 nominative +108006 nominative +nominative +nominative +108010 genitive +108013 accusative +108016 nominative +108019 genitive +108021 nominative +nominative +108024 dative +108027 nominative +108029 nominative +nominative +genitive +genitive +genitive +genitive +nominative +108037 nominative +nominative +108040 genitive +genitive +108044 nominative +108046 dative +nominative +108051 dative +nominative +nominative +nominative +108058 genitive +108060 accusative +accusative +108063 accusative +nominative +108066 genitive +genitive +genitive +genitive +genitive +108072 genitive +108074 accusative +108076 genitive +genitive +108079 accusative +108081 dative +dative +108084 accusative +108086 accusative +accusative +108089 accusative +dative +dative +108093 dative +dative +dative +dative +108101 dative +dative +genitive +genitive +genitive +108107 genitive +genitive +108110 accusative +accusative +108113 accusative +108115 accusative +108117 genitive +108121 dative +dative +nominative +108125 nominative +108128 nominative +108130 genitive +genitive +genitive +genitive +genitive +108136 genitive +genitive +108139 dative +dative +dative +108143 accusative +accusative +genitive +nominative +108148 nominative +nominative +108153 dative +dative +108156 genitive +108159 accusative +accusative +genitive +genitive +genitive +genitive +108166 dative +dative +genitive +108170 genitive +genitive +genitive +nominative +108175 nominative +nominative +genitive +nominative +108180 nominative +108182 accusative +accusative +genitive +genitive +accusative +accusative +dative +108190 accusative +108192 accusative +accusative +genitive +genitive +accusative +accusative +accusative +accusative +108201 genitive +genitive +108205 genitive +genitive +108210 dative +dative +genitive +dative +108215 nominative +nominative +108218 nominative +nominative +nominative +genitive +genitive +genitive +genitive +genitive +108227 dative +dative +nominative +108231 nominative +108233 dative +nominative +nominative +genitive +genitive +accusative +nominative +108241 nominative +accusative +accusative +108245 nominative +accusative +accusative +108249 dative +dative +108253 accusative +accusative +accusative +108257 dative +108259 accusative +108262 nominative +108264 accusative +accusative +genitive +accusative +accusative +108270 dative +108272 dative +108275 accusative +108277 accusative +accusative +108281 genitive +108283 genitive +108285 dative +108287 nominative +108290 accusative +accusative +genitive +108294 dative +108297 nominative +nominative +genitive +nominative +108302 dative +108305 accusative +accusative +genitive +genitive +genitive +genitive +108312 accusative +genitive +genitive +genitive +genitive +genitive +108319 dative +108321 nominative +nominative +nominative +genitive +genitive +108327 genitive +nominative +accusative +108332 nominative +accusative +108336 dative +108340 dative +dative +108344 dative +dative +108347 dative +108349 nominative +108351 nominative +genitive +accusative +accusative +108356 accusative +accusative +genitive +108360 accusative +genitive +genitive +108366 accusative +accusative +accusative +accusative +accusative +108372 dative +108374 nominative +108376 nominative +108378 dative +108380 nominative +dative +dative +108385 nominative +108387 dative +108390 nominative +108392 nominative +nominative +accusative +108396 genitive +genitive +108399 genitive +genitive +108402 accusative +accusative +genitive +genitive +108407 accusative +accusative +genitive +genitive +108414 accusative +108417 dative +108419 nominative +nominative +nominative +genitive +genitive +108427 nominative +108429 dative +nominative +108432 nominative +nominative +genitive +genitive +108437 genitive +108439 dative +108442 dative +dative +108445 dative +dative +genitive +genitive +genitive +genitive +108452 dative +dative +genitive +genitive +nominative +dative +108459 dative +dative +108462 dative +108466 genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +accusative +108476 genitive +108478 accusative +accusative +accusative +dative +dative +108484 dative +dative +genitive +genitive +genitive +108490 accusative +108492 dative +nominative +dative +accusative +accusative +accusative +nominative +accusative +108501 genitive +accusative +dative +dative +nominative +108507 nominative +dative +108510 accusative +108513 genitive +genitive +nominative +accusative +dative +dative +nominative +accusative +accusative +108523 accusative +accusative +108527 dative +nominative +accusative +108531 dative +108534 nominative +accusative +108538 dative +108541 dative +108544 dative +genitive +108547 genitive +108549 genitive +nominative +108552 nominative +genitive +genitive +108556 nominative +nominative +genitive +genitive +nominative +accusative +108563 nominative +108565 dative +108567 dative +genitive +genitive +accusative +108572 nominative +108574 nominative +108576 genitive +genitive +genitive +genitive +genitive +108583 nominative +accusative +accusative +108587 genitive +nominative +nominative +nominative +108592 genitive +genitive +108595 genitive +nominative +108598 nominative +108600 accusative +accusative +genitive +genitive +108607 dative +108609 genitive +genitive +genitive +genitive +accusative +108615 nominative +108617 dative +108625 nominative +108627 nominative +108629 accusative +dative +dative +108633 accusative +accusative +108636 accusative +genitive +genitive +nominative +108642 nominative +accusative +genitive +108646 dative +108648 dative +108650 dative +genitive +108654 dative +dative +108657 accusative +genitive +genitive +108663 dative +dative +accusative +108669 nominative +nominative +108672 nominative +108674 dative +genitive +genitive +accusative +108681 accusative +108683 genitive +genitive +108688 nominative +nominative +genitive +108693 dative +dative +108696 dative +dative +108700 nominative +nominative +nominative +nominative +genitive +108707 nominative +108709 dative +108712 dative +108715 accusative +accusative +accusative +108719 genitive +genitive +accusative +accusative +accusative +accusative +accusative +108727 accusative +accusative +nominative +108731 nominative +108733 accusative +108735 nominative +nominative +genitive +genitive +108740 dative +108742 nominative +108748 dative +108753 nominative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +108762 genitive +genitive +genitive +108768 accusative +nominative +accusative +accusative +accusative +108774 dative +dative +genitive +108778 nominative +accusative +accusative +accusative +accusative +108784 accusative +108786 accusative +genitive +genitive +accusative +108793 nominative +108795 nominative +nominative +108798 nominative +nominative +nominative +nominative +nominative +108804 nominative +108807 dative +nominative +108812 nominative +genitive +genitive +nominative +108817 nominative +accusative +genitive +accusative +accusative +accusative +accusative +nominative +genitive +108827 nominative +dative +108830 nominative +108832 accusative +108834 accusative +108837 nominative +nominative +108840 dative +108843 nominative +108846 dative +dative +accusative +accusative +nominative +108852 nominative +genitive +genitive +108856 nominative +nominative +genitive +genitive +108862 dative +dative +genitive +108866 accusative +108870 dative +dative +108873 nominative +108875 nominative +nominative +genitive +genitive +108881 dative +108884 dative +dative +nominative +108888 nominative +accusative +dative +dative +dative +dative +108895 dative +dative +nominative +108899 dative +dative +genitive +dative +dative +108905 accusative +accusative +108908 accusative +108911 dative +108914 dative +accusative +108917 dative +genitive +genitive +nominative +dative +dative +dative +108925 genitive +nominative +nominative +108929 dative +dative +108934 dative +nominative +nominative +108938 accusative +accusative +108944 accusative +nominative +nominative +108948 dative +dative +108951 accusative +108953 nominative +nominative +108957 dative +nominative +nominative +108962 accusative +accusative +genitive +108968 nominative +nominative +108972 accusative +dative +108975 accusative +dative +108979 dative +108981 nominative +108984 dative +genitive +nominative +accusative +accusative +108990 accusative +108993 genitive +108996 dative +dative +109000 dative +nominative +109004 genitive +109006 accusative +accusative +genitive +genitive +dative +dative +dative +109015 nominative +nominative +109018 accusative +109023 nominative +nominative +nominative +accusative +accusative +109029 accusative +accusative +dative +dative +109034 nominative +109037 nominative +109039 accusative +109041 dative +dative +dative +109045 nominative +109047 dative +109049 dative +nominative +109054 genitive +109056 nominative +nominative +109059 dative +accusative +genitive +genitive +109064 accusative +accusative +genitive +genitive +109069 accusative +109074 accusative +109077 accusative +109080 dative +109083 accusative +109085 accusative +accusative +nominative +nominative +nominative +genitive +109093 dative +dative +nominative +109099 accusative +dative +dative +109103 accusative +109105 accusative +accusative +109108 dative +nominative +nominative +nominative +nominative +109114 nominative +nominative +109117 nominative +109119 dative +accusative +109123 accusative +109125 accusative +accusative +109129 accusative +109131 genitive +109134 accusative +accusative +genitive +109138 dative +dative +dative +109142 dative +dative +nominative +109147 genitive +dative +109150 accusative +accusative +109154 accusative +nominative +nominative +nominative +genitive +109160 nominative +nominative +nominative +genitive +109165 genitive +109167 accusative +109171 accusative +109173 accusative +109175 nominative +nominative +nominative +nominative +nominative +nominative +109182 genitive +nominative +nominative +nominative +109187 accusative +accusative +genitive +genitive +nominative +109193 dative +nominative +109196 accusative +nominative +nominative +109200 genitive +nominative +genitive +genitive +109205 nominative +109207 genitive +109209 dative +dative +109213 nominative +109215 nominative +109217 dative +dative +genitive +genitive +109223 dative +109226 accusative +accusative +109229 genitive +109231 genitive +109233 dative +109235 genitive +109237 dative +109239 accusative +nominative +nominative +nominative +nominative +nominative +109246 nominative +109248 accusative +109250 dative +accusative +109253 accusative +109255 accusative +109257 accusative +genitive +accusative +109264 dative +nominative +nominative +109271 dative +genitive +dative +109277 accusative +109279 genitive +109281 nominative +109285 dative +109287 accusative +accusative +accusative +109292 dative +109294 accusative +109296 nominative +nominative +dative +dative +dative +genitive +109303 genitive +genitive +genitive +nominative +nominative +109309 genitive +nominative +109312 nominative +109314 nominative +dative +dative +genitive +109319 dative +dative +109322 dative +dative +dative +dative +nominative +109328 nominative +109330 dative +dative +109334 genitive +genitive +accusative +nominative +109339 genitive +genitive +genitive +109343 nominative +genitive +genitive +genitive +genitive +genitive +109350 genitive +genitive +genitive +genitive +109355 genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +109365 genitive +genitive +109368 genitive +genitive +nominative +accusative +accusative +genitive +vocative +nominative +109377 genitive +genitive +109380 nominative +nominative +genitive +109385 accusative +109388 dative +accusative +109393 dative +109396 dative +dative +109399 dative +dative +109403 nominative +109406 dative +109408 accusative +109410 nominative +109412 nominative +genitive +109415 genitive +genitive +nominative +accusative +accusative +109421 dative +dative +109424 genitive +genitive +genitive +109429 accusative +accusative +dative +dative +dative +109435 dative +dative +109439 dative +dative +109443 genitive +109445 nominative +nominative +genitive +genitive +109450 accusative +109452 dative +dative +109455 dative +109458 dative +dative +nominative +nominative +genitive +nominative +109465 accusative +accusative +109470 accusative +109472 accusative +109474 accusative +109476 nominative +109478 genitive +109480 accusative +accusative +109484 accusative +109489 accusative +accusative +109492 genitive +genitive +109495 dative +dative +109498 dative +109502 genitive +genitive +accusative +accusative +genitive +accusative +109510 genitive +genitive +accusative +accusative +accusative +accusative +109517 genitive +genitive +genitive +genitive +109522 vocative +nominative +109525 accusative +accusative +genitive +accusative +109530 accusative +109533 nominative +109536 nominative +109538 nominative +109540 dative +109545 dative +dative +genitive +109550 accusative +accusative +accusative +genitive +genitive +109556 dative +dative +109559 nominative +nominative +genitive +109564 genitive +109567 genitive +109570 dative +109575 genitive +genitive +109578 accusative +accusative +109583 nominative +109585 dative +109587 dative +dative +dative +accusative +accusative +genitive +109597 dative +genitive +109604 dative +genitive +nominative +nominative +109609 nominative +109611 genitive +accusative +109615 genitive +109618 genitive +nominative +109621 dative +109624 genitive +nominative +109628 nominative +109630 dative +genitive +109634 nominative +109636 accusative +genitive +accusative +109640 nominative +genitive +109644 dative +109646 accusative +accusative +accusative +genitive +genitive +109653 accusative +genitive +accusative +109657 nominative +dative +109661 vocative +109663 accusative +accusative +genitive +109667 accusative +accusative +genitive +109671 genitive +nominative +109674 accusative +109677 accusative +genitive +109681 accusative +accusative +accusative +genitive +genitive +nominative +nominative +109689 nominative +nominative +109697 dative +dative +dative +109704 accusative +accusative +genitive +109708 nominative +accusative +genitive +nominative +109713 nominative +109715 nominative +accusative +109718 accusative +109720 accusative +109722 genitive +genitive +genitive +genitive +accusative +109728 accusative +genitive +accusative +109732 accusative +109735 accusative +109737 nominative +109739 dative +dative +109743 nominative +accusative +genitive +109747 genitive +genitive +genitive +109752 accusative +genitive +109758 accusative +genitive +nominative +109764 dative +dative +dative +109768 vocative +nominative +109771 nominative +genitive +genitive +genitive +genitive +genitive +genitive +109779 dative +dative +109782 dative +dative +109785 accusative +accusative +109789 nominative +109791 genitive +genitive +genitive +109796 nominative +109798 genitive +genitive +genitive +genitive +109803 accusative +accusative +accusative +109807 accusative +accusative +109810 accusative +genitive +109813 dative +109815 genitive +109817 dative +dative +genitive +genitive +accusative +dative +dative +109828 accusative +109830 genitive +accusative +accusative +109837 accusative +nominative +nominative +109841 accusative +109843 vocative +nominative +nominative +109847 genitive +109849 accusative +genitive +dative +109853 dative +109856 accusative +accusative +genitive +109861 dative +dative +109867 accusative +109869 nominative +nominative +109877 accusative +nominative +nominative +109881 nominative +genitive +nominative +109885 nominative +109887 nominative +genitive +109892 nominative +109894 genitive +genitive +genitive +genitive +109899 dative +genitive +dative +109903 nominative +109905 nominative +nominative +genitive +109909 nominative +nominative +109913 nominative +109917 dative +nominative +109921 accusative +accusative +accusative +genitive +109926 accusative +genitive +genitive +109930 dative +dative +genitive +genitive +109935 accusative +109939 accusative +109941 genitive +genitive +genitive +accusative +accusative +109948 dative +dative +dative +109952 nominative +109956 accusative +109962 accusative +109965 dative +109975 accusative +nominative +109978 nominative +109981 accusative +109983 accusative +accusative +genitive +109989 accusative +nominative +nominative +109994 accusative +109996 nominative +nominative +genitive +110001 genitive +genitive +110004 accusative +110006 genitive +110008 genitive +dative +accusative +accusative +110013 accusative +accusative +genitive +110019 accusative +genitive +accusative +110023 nominative +accusative +110028 nominative +accusative +vocative +110032 accusative +110035 dative +110037 dative +dative +dative +110041 dative +genitive +110044 genitive +genitive +genitive +110051 nominative +110054 dative +110057 accusative +accusative +dative +dative +110063 genitive +110065 dative +dative +dative +dative +110071 accusative +110073 genitive +genitive +genitive +genitive +110078 genitive +110080 nominative +110082 accusative +110084 genitive +accusative +accusative +110089 accusative +accusative +genitive +genitive +genitive +110095 nominative +nominative +nominative +110099 nominative +genitive +110102 nominative +nominative +genitive +nominative +110107 accusative +accusative +genitive +110111 accusative +110113 accusative +nominative +nominative +110119 dative +dative +110122 accusative +110125 accusative +110128 nominative +110130 accusative +110132 accusative +110134 genitive +accusative +accusative +accusative +110139 dative +110141 genitive +genitive +110144 genitive +genitive +110147 dative +dative +genitive +genitive +genitive +genitive +110154 genitive +genitive +genitive +genitive +110159 vocative +accusative +110164 accusative +110166 dative +dative +110172 genitive +nominative +110176 accusative +110180 dative +110189 accusative +accusative +110192 dative +110194 genitive +genitive +genitive +110198 nominative +110200 nominative +genitive +genitive +nominative +nominative +genitive +110207 accusative +110209 genitive +genitive +110212 accusative +genitive +accusative +genitive +accusative +110219 dative +110221 dative +110224 dative +genitive +110228 nominative +nominative +nominative +110232 nominative +accusative +accusative +accusative +110241 dative +dative +accusative +accusative +genitive +110247 nominative +nominative +110250 genitive +genitive +110255 dative +110261 accusative +nominative +nominative +110265 dative +110268 dative +110270 nominative +nominative +110274 accusative +110276 accusative +accusative +accusative +110280 accusative +accusative +accusative +genitive +accusative +accusative +110287 accusative +110290 genitive +genitive +110293 accusative +110296 dative +110298 nominative +nominative +nominative +110303 accusative +110305 accusative +110309 accusative +110311 accusative +accusative +accusative +110315 dative +dative +dative +110319 vocative +110321 accusative +110329 accusative +accusative +110333 dative +dative +genitive +110337 dative +110343 accusative +110346 genitive +accusative +110350 vocative +110353 accusative +110356 genitive +genitive +110363 nominative +nominative +nominative +110367 nominative +accusative +110373 nominative +110379 nominative +nominative +accusative +accusative +110384 genitive +genitive +110388 dative +110390 accusative +dative +110394 dative +genitive +110397 nominative +nominative +nominative +nominative +nominative +110403 accusative +accusative +genitive +genitive +110410 accusative +accusative +110413 nominative +nominative +nominative +110417 dative +110419 dative +genitive +110423 dative +genitive +110427 genitive +110429 nominative +nominative +110432 dative +110434 accusative +110436 nominative +nominative +nominative +nominative +nominative +110443 dative +110446 dative +110448 accusative +genitive +genitive +110452 accusative +110457 dative +110461 accusative +110463 dative +dative +dative +110467 vocative +110469 genitive +genitive +110472 genitive +genitive +110475 accusative +110477 dative +110480 nominative +110485 nominative +110487 dative +nominative +genitive +110494 nominative +110496 nominative +110498 nominative +nominative +dative +110503 nominative +nominative +dative +110507 dative +dative +110514 vocative +nominative +110519 dative +110521 nominative +nominative +accusative +110526 nominative +110528 nominative +nominative +110531 nominative +genitive +110534 nominative +genitive +110538 genitive +110540 genitive +110546 nominative +nominative +110553 nominative +nominative +genitive +110558 nominative +nominative +genitive +110563 nominative +genitive +nominative +110567 nominative +accusative +genitive +110571 genitive +110573 accusative +accusative +genitive +110579 accusative +nominative +nominative +110583 accusative +110586 accusative +genitive +110589 genitive +genitive +genitive +genitive +genitive +genitive +genitive +110597 genitive +110605 dative +110609 accusative +110612 nominative +accusative +accusative +110619 vocative +110621 accusative +110623 accusative +accusative +110626 dative +110628 accusative +genitive +110631 dative +110633 accusative +accusative +110637 accusative +110640 dative +110642 accusative +accusative +genitive +110647 dative +110649 vocative +110651 accusative +110653 accusative +accusative +110656 accusative +accusative +110659 genitive +genitive +110663 accusative +110666 nominative +accusative +110669 genitive +dative +110674 accusative +accusative +110678 accusative +110681 accusative +110687 dative +110690 nominative +nominative +genitive +110694 dative +dative +110697 accusative +accusative +accusative +110702 accusative +110706 accusative +110708 accusative +accusative +110712 genitive +genitive +genitive +110717 nominative +nominative +nominative +genitive +genitive +110723 accusative +accusative +110726 nominative +genitive +nominative +nominative +110731 nominative +nominative +110734 nominative +nominative +110738 dative +dative +genitive +genitive +genitive +genitive +genitive +110746 nominative +nominative +nominative +accusative +nominative +110753 vocative +110756 genitive +110758 accusative +accusative +accusative +110762 dative +dative +110765 accusative +accusative +accusative +110769 accusative +accusative +dative +dative +dative +nominative +nominative +genitive +genitive +genitive +genitive +genitive +110782 genitive +nominative +110785 nominative +110787 nominative +dative +dative +genitive +110792 dative +dative +genitive +110796 dative +dative +dative +dative +nominative +110802 nominative +110804 genitive +genitive +110807 genitive +genitive +genitive +vocative +110813 dative +dative +110817 genitive +110819 nominative +110823 nominative +nominative +genitive +110828 nominative +nominative +genitive +genitive +genitive +genitive +110835 accusative +110837 accusative +accusative +110840 dative +110843 dative +dative +genitive +genitive +110848 genitive +genitive +genitive +110852 genitive +110854 dative +dative +dative +genitive +110859 dative +dative +dative +110863 nominative +genitive +genitive +genitive +genitive +genitive +110870 accusative +110872 accusative +genitive +genitive +genitive +genitive +110878 genitive +110882 nominative +110884 dative +110886 dative +dative +accusative +accusative +110891 dative +dative +dative +accusative +110896 genitive +110898 dative +dative +genitive +genitive +genitive +110904 genitive +110906 genitive +genitive +genitive +110910 dative +genitive +genitive +accusative +dative +110916 dative +accusative +110919 dative +110921 dative +dative +dative +genitive +genitive +genitive +genitive +nominative +110930 accusative +accusative +accusative +110934 genitive +genitive +genitive +110939 genitive +genitive +genitive +genitive +genitive +110948 dative +dative +genitive +110954 dative +dative +dative +110958 dative +dative +dative +110963 nominative +nominative +genitive +110967 accusative +110969 accusative +110974 genitive +110976 accusative +110978 genitive +genitive +nominative +nominative +genitive +110985 accusative +accusative +genitive +110989 accusative +genitive +110992 dative +110995 nominative +nominative +genitive +genitive +genitive +genitive +111002 dative +111004 nominative +111006 dative +111008 accusative +accusative +genitive +genitive +genitive +111014 genitive +genitive +genitive +111018 vocative +111020 accusative +111022 genitive +genitive +genitive +genitive +genitive +genitive +genitive +111030 genitive +genitive +111033 accusative +111035 accusative +111039 accusative +111041 genitive +genitive +111047 genitive +111050 genitive +111053 genitive +111056 genitive +111060 nominative +nominative +genitive +genitive +111065 nominative +accusative +111069 accusative +accusative +111075 nominative +nominative +accusative +111080 nominative +nominative +genitive +genitive +nominative +nominative +genitive +genitive +nominative +nominative +111091 nominative +111093 accusative +accusative +accusative +111097 accusative +111099 accusative +111101 accusative +accusative +genitive +genitive +111106 accusative +accusative +111110 nominative +111115 nominative +111117 accusative +accusative +111120 dative +111123 accusative +accusative +111127 accusative +111129 accusative +111131 dative +genitive +dative +111135 nominative +nominative +genitive +genitive +111141 accusative +nominative +nominative +111147 genitive +111152 nominative +nominative +accusative +nominative +nominative +nominative +111159 dative +dative +genitive +genitive +genitive +111166 dative +dative +genitive +genitive +genitive +genitive +nominative +nominative +111176 accusative +genitive +genitive +111180 dative +dative +111183 dative +111185 dative +genitive +111189 dative +dative +genitive +dative +dative +111195 genitive +accusative +accusative +genitive +genitive +111203 accusative +111205 accusative +111208 accusative +111210 dative +nominative +nominative +accusative +genitive +111216 accusative +111218 accusative +dative +dative +111223 nominative +nominative +111226 nominative +dative +dative +111230 nominative +dative +dative +111234 nominative +111237 dative +dative +111241 genitive +vocative +nominative +111245 genitive +111248 accusative +nominative +nominative +111252 genitive +111254 accusative +111256 dative +genitive +111259 dative +genitive +111262 accusative +111265 accusative +111267 genitive +genitive +genitive +111271 accusative +genitive +genitive +genitive +genitive +genitive +genitive +111280 vocative +111284 accusative +accusative +accusative +111290 genitive +111293 genitive +genitive +111296 nominative +nominative +nominative +genitive +nominative +nominative +111303 nominative +nominative +nominative +nominative +genitive +nominative +nominative +accusative +111312 nominative +accusative +accusative +111316 accusative +accusative +111319 dative +111321 genitive +accusative +accusative +111327 dative +dative +111330 dative +dative +vocative +accusative +accusative +111337 genitive +111339 nominative +nominative +genitive +genitive +111349 accusative +111354 genitive +genitive +111357 genitive +genitive +111361 genitive +nominative +nominative +111365 nominative +111367 nominative +nominative +nominative +111371 accusative +111375 genitive +genitive +111380 dative +111382 accusative +111384 accusative +111391 nominative +nominative +111394 genitive +accusative +accusative +111398 accusative +accusative +genitive +genitive +111404 accusative +accusative +genitive +genitive +111409 vocative +111411 dative +111413 dative +genitive +genitive +genitive +genitive +111419 accusative +111421 genitive +genitive +111424 genitive +111428 accusative +accusative +accusative +111433 genitive +111435 nominative +111440 accusative +111445 dative +111448 accusative +111451 genitive +111454 dative +111456 dative +genitive +111459 genitive +nominative +111462 accusative +111465 accusative +genitive +111471 accusative +111474 accusative +accusative +111477 dative +111479 accusative +111481 accusative +111487 accusative +accusative +111490 dative +111493 nominative +111501 accusative +accusative +111504 dative +111506 accusative +accusative +111509 accusative +111511 dative +dative +111517 dative +dative +dative +111522 genitive +nominative +accusative +genitive +accusative +111529 vocative +nominative +111533 nominative +111536 nominative +111539 dative +dative +genitive +111543 genitive +genitive +accusative +111549 dative +111555 accusative +111560 accusative +111562 nominative +nominative +nominative +genitive +genitive +111568 dative +accusative +accusative +111572 genitive +111574 dative +dative +nominative +nominative +111579 genitive +genitive +nominative +nominative +dative +dative +dative +genitive +nominative +111589 nominative +111591 dative +dative +111595 nominative +nominative +genitive +genitive +genitive +genitive +genitive +111603 genitive +genitive +nominative +nominative +genitive +genitive +111610 accusative +genitive +genitive +genitive +111615 genitive +genitive +genitive +genitive +genitive +dative +dative +dative +111624 dative +nominative +nominative +nominative +111629 genitive +genitive +111632 genitive +genitive +genitive +genitive +genitive +111639 accusative +111642 dative +nominative +111645 accusative +111648 dative +111653 dative +111655 dative +dative +nominative +accusative +111662 accusative +genitive +accusative +111666 dative +111668 nominative +nominative +genitive +genitive +111673 nominative +111675 genitive +genitive +111678 genitive +genitive +111681 genitive +genitive +genitive +nominative +nominative +111688 accusative +nominative +111691 nominative +111693 nominative +111695 accusative +111699 genitive +111704 nominative +nominative +nominative +111708 nominative +dative +111712 nominative +accusative +111716 dative +nominative +111720 dative +111722 dative +dative +111725 dative +dative +111728 dative +dative +111731 dative +dative +dative +dative +dative +dative +dative +111740 nominative +nominative +111743 dative +dative +dative +111747 accusative +accusative +genitive +genitive +genitive +genitive +genitive +accusative +111756 nominative +accusative +111759 dative +dative +accusative +dative +dative +dative +dative +genitive +111768 accusative +accusative +111771 nominative +111773 accusative +accusative +accusative +accusative +accusative +111779 accusative +111781 accusative +111785 nominative +111788 dative +111791 nominative +nominative +genitive +genitive +genitive +111797 genitive +111799 genitive +genitive +111802 dative +dative +nominative +nominative +nominative +111808 genitive +genitive +nominative +111812 nominative +nominative +111816 accusative +accusative +accusative +111820 genitive +nominative +111823 nominative +111826 accusative +111830 dative +dative +111833 nominative +nominative +accusative +accusative +accusative +111839 accusative +genitive +genitive +111844 dative +111846 accusative +accusative +111849 dative +dative +genitive +genitive +dative +dative +dative +dative +nominative +111859 nominative +111861 accusative +accusative +genitive +genitive +111866 vocative +vocative +accusative +accusative +accusative +111872 dative +111874 accusative +accusative +111877 accusative +accusative +111882 dative +accusative +accusative +accusative +nominative +accusative +111889 accusative +accusative +accusative +nominative +nominative +111895 accusative +accusative +111898 genitive +111900 nominative +111902 nominative +accusative +111905 dative +dative +111913 accusative +genitive +111916 accusative +accusative +accusative +accusative +111921 genitive +genitive +111924 genitive +111926 genitive +genitive +111929 dative +genitive +111932 accusative +111934 accusative +accusative +111938 dative +dative +111941 dative +nominative +nominative +111945 nominative +111947 genitive +genitive +genitive +genitive +nominative +111953 accusative +accusative +111958 accusative +genitive +111962 nominative +nominative +nominative +111966 nominative +genitive +111969 genitive +nominative +nominative +nominative +nominative +nominative +accusative +accusative +111978 genitive +accusative +accusative +dative +dative +111984 accusative +111986 nominative +nominative +111989 nominative +nominative +genitive +111993 dative +111995 dative +accusative +112003 accusative +accusative +112006 dative +dative +accusative +accusative +accusative +112012 genitive +112014 genitive +112016 accusative +112018 dative +dative +112021 genitive +112023 genitive +112025 accusative +112028 dative +112030 dative +112032 dative +112034 dative +dative +112038 nominative +112040 dative +dative +accusative +genitive +genitive +nominative +112047 dative +112050 dative +dative +112056 dative +112059 genitive +112063 dative +112065 nominative +nominative +112069 nominative +112071 nominative +112075 nominative +nominative +nominative +112079 dative +112084 genitive +genitive +112089 dative +112091 dative +112093 dative +112095 genitive +nominative +nominative +nominative +112100 nominative +genitive +112103 genitive +genitive +112108 accusative +accusative +112111 accusative +genitive +genitive +accusative +accusative +accusative +accusative +accusative +accusative +112121 accusative +112123 accusative +112125 accusative +accusative +accusative +genitive +genitive +genitive +112132 accusative +accusative +accusative +112136 dative +112138 genitive +genitive +112142 nominative +genitive +genitive +genitive +112150 genitive +genitive +112154 accusative +112157 nominative +112159 accusative +genitive +genitive +112166 accusative +accusative +112170 genitive +112176 accusative +112178 accusative +genitive +genitive +112182 accusative +accusative +112185 accusative +112187 dative +dative +accusative +112191 accusative +accusative +accusative +accusative +genitive +genitive +112198 dative +dative +112202 nominative +112204 accusative +112207 nominative +nominative +112210 accusative +accusative +112213 accusative +accusative +accusative +112217 dative +nominative +112220 genitive +genitive +nominative +112224 nominative +genitive +112227 genitive +genitive +genitive +112231 nominative +112233 nominative +accusative +accusative +dative +112239 accusative +accusative +112242 dative +dative +112245 dative +dative +accusative +dative +112250 nominative +112253 accusative +dative +112264 dative +genitive +nominative +112268 nominative +genitive +genitive +nominative +112273 nominative +genitive +genitive +112278 nominative +112280 nominative +genitive +genitive +nominative +nominative +112287 dative +112290 dative +112292 dative +112295 dative +112298 dative +112301 dative +112303 nominative +nominative +112309 dative +dative +112312 nominative +genitive +genitive +nominative +dative +dative +112319 dative +genitive +112322 dative +genitive +genitive +accusative +accusative +accusative +genitive +112331 genitive +accusative +nominative +nominative +112337 accusative +112339 genitive +dative +dative +112343 dative +accusative +accusative +112347 nominative +nominative +genitive +nominative +112352 nominative +nominative +112355 genitive +nominative +112360 genitive +genitive +112363 genitive +accusative +nominative +dative +dative +112369 nominative +nominative +genitive +genitive +nominative +dative +dative +genitive +genitive +112379 genitive +genitive +genitive +dative +112385 accusative +accusative +112388 accusative +accusative +112393 accusative +112395 accusative +112397 nominative +nominative +nominative +112401 accusative +112403 nominative +112405 nominative +nominative +112408 accusative +nominative +112411 nominative +accusative +genitive +genitive +112417 genitive +genitive +nominative +nominative +nominative +112423 genitive +genitive +nominative +112428 accusative +112435 dative +dative +nominative +112439 nominative +genitive +genitive +112443 genitive +accusative +112448 nominative +genitive +genitive +genitive +112455 nominative +genitive +genitive +112459 dative +112461 dative +112463 dative +112465 dative +112467 dative +112471 dative +dative +dative +dative +dative +dative +112479 genitive +112481 dative +genitive +nominative +112485 dative +112487 genitive +112489 genitive +genitive +genitive +genitive +genitive +accusative +112497 dative +112500 genitive +nominative +nominative +nominative +112505 dative +112507 dative +112509 dative +dative +112512 dative +112514 accusative +nominative +112518 accusative +112520 accusative +accusative +genitive +dative +112529 accusative +accusative +112532 accusative +accusative +112535 accusative +accusative +112538 accusative +112540 dative +dative +112543 accusative +accusative +112546 accusative +112549 nominative +nominative +accusative +112553 accusative +112557 accusative +accusative +accusative +112562 accusative +112564 dative +dative +112567 nominative +112569 nominative +112571 genitive +genitive +112574 nominative +112576 nominative +112578 nominative +112581 accusative +112584 dative +dative +112587 dative +dative +genitive +112591 genitive +112593 nominative +nominative +nominative +112598 accusative +112601 nominative +112605 nominative +genitive +genitive +112610 genitive +112613 accusative +accusative +112618 genitive +nominative +nominative +112623 nominative +genitive +112626 nominative +genitive +genitive +nominative +112631 dative +dative +nominative +112639 genitive +accusative +112643 dative +112646 dative +dative +dative +112651 accusative +accusative +112657 genitive +genitive +112661 nominative +accusative +112664 accusative +accusative +accusative +112671 nominative +112673 nominative +accusative +accusative +112678 accusative +nominative +112682 nominative +112684 nominative +nominative +accusative +112688 accusative +112691 accusative +112695 accusative +accusative +112698 dative +dative +genitive +112704 nominative +112707 genitive +genitive +112710 nominative +nominative +112713 accusative +112715 dative +112719 nominative +nominative +112722 dative +112724 dative +112726 nominative +112728 nominative +nominative +genitive +genitive +112734 nominative +nominative +112737 dative +112739 dative +112742 nominative +nominative +accusative +accusative +112749 nominative +nominative +nominative +genitive +genitive +genitive +112756 genitive +accusative +112766 genitive +genitive +accusative +accusative +112771 genitive +112775 nominative +nominative +accusative +112781 genitive +genitive +112784 genitive +genitive +112787 genitive +genitive +genitive +112791 accusative +112794 genitive +accusative +nominative +112798 accusative +accusative +112801 dative +112805 dative +dative +accusative +accusative +112813 dative +dative +112817 accusative +accusative +112820 accusative +accusative +genitive +accusative +genitive +genitive +nominative +nominative +nominative +112830 nominative +112832 accusative +112834 dative +112839 nominative +nominative +nominative +nominative +nominative +112845 nominative +112847 nominative +112851 nominative +112854 accusative +nominative +accusative +accusative +accusative +genitive +genitive +accusative +112865 nominative +nominative +genitive +genitive +112870 nominative +nominative +112874 nominative +nominative +accusative +accusative +112881 nominative +112888 nominative +112890 nominative +nominative +genitive +genitive +nominative +accusative +112900 nominative +112905 dative +dative +dative +genitive +genitive +genitive +genitive +genitive +112914 dative +112916 accusative +dative +112919 accusative +nominative +112922 nominative +112924 accusative +112926 accusative +112928 genitive +112930 nominative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +accusative +accusative +112941 genitive +genitive +genitive +genitive +accusative +112947 accusative +accusative +112951 nominative +nominative +nominative +nominative +112956 genitive +112958 accusative +112961 accusative +accusative +112966 accusative +112969 nominative +accusative +112972 accusative +dative +112976 nominative +nominative +112981 accusative +112983 accusative +112985 accusative +accusative +accusative +112989 accusative +nominative +112992 accusative +accusative +112995 accusative +112997 accusative +112999 nominative +genitive +genitive +genitive +113004 nominative +nominative +genitive +nominative +nominative +113011 genitive +genitive +113014 accusative +113016 dative +dative +113020 vocative +genitive +nominative +accusative +113027 accusative +accusative +accusative +accusative +accusative +accusative +113034 accusative +accusative +accusative +genitive +genitive +113040 genitive +genitive +genitive +113044 accusative +113048 accusative +accusative +accusative +113052 genitive +genitive +113056 genitive +genitive +genitive +genitive +accusative +accusative +113063 genitive +genitive +genitive +genitive +113068 genitive +genitive +accusative +accusative +accusative +113074 accusative +accusative +accusative +accusative +accusative +113080 genitive +genitive +genitive +genitive +genitive +genitive +genitive +accusative +dative +dative +113091 nominative +nominative +113094 nominative +nominative +nominative +nominative +genitive +genitive +113101 nominative +genitive +genitive +nominative +nominative +nominative +accusative +accusative +accusative +nominative +accusative +113113 nominative +genitive +113118 dative +nominative +113121 nominative +nominative +113124 dative +dative +113127 dative +113129 dative +113136 genitive +dative +113140 dative +dative +dative +dative +accusative +113147 accusative +113151 dative +dative +accusative +113155 accusative +accusative +dative +accusative +accusative +113161 accusative +accusative +113165 genitive +113167 genitive +113169 vocative +accusative +accusative +113173 nominative +accusative +accusative +accusative +113178 accusative +genitive +genitive +genitive +accusative +nominative +nominative +113186 accusative +accusative +113189 nominative +nominative +113192 genitive +nominative +nominative +genitive +genitive +113198 genitive +genitive +113201 accusative +genitive +genitive +113205 dative +dative +dative +dative +dative +nominative +nominative +nominative +113214 genitive +genitive +113217 genitive +genitive +genitive +genitive +genitive +accusative +113224 dative +dative +dative +113229 genitive +113231 dative +dative +113234 accusative +113236 accusative +113238 genitive +accusative +113241 dative +dative +genitive +genitive +113246 genitive +nominative +accusative +113250 nominative +genitive +genitive +genitive +113255 genitive +113257 nominative +accusative +genitive +113261 dative +genitive +genitive +nominative +113266 accusative +113268 dative +dative +genitive +dative +113273 dative +dative +genitive +dative +113282 dative +113284 accusative +accusative +113287 accusative +113289 accusative +accusative +genitive +genitive +nominative +113296 dative +113298 genitive +genitive +genitive +genitive +genitive +113306 dative +nominative +nominative +accusative +genitive +113312 genitive +113314 genitive +113316 genitive +113320 accusative +accusative +genitive +genitive +genitive +113326 accusative +accusative +accusative +genitive +113332 dative +dative +113335 accusative +genitive +genitive +genitive +accusative +113341 genitive +dative +dative +113346 accusative +accusative +genitive +113351 accusative +accusative +113354 accusative +accusative +accusative +dative +113359 dative +dative +113362 genitive +genitive +113365 accusative +113368 genitive +genitive +genitive +genitive +genitive +genitive +genitive +113376 genitive +accusative +accusative +113380 genitive +accusative +113383 accusative +113385 genitive +genitive +113388 accusative +113390 nominative +nominative +113393 nominative +113395 nominative +113397 accusative +accusative +113400 accusative +113407 dative +113413 nominative +accusative +accusative +genitive +113419 accusative +accusative +accusative +113423 accusative +genitive +genitive +genitive +113428 genitive +113431 dative +113433 dative +dative +113436 dative +dative +accusative +accusative +accusative +113443 genitive +genitive +genitive +genitive +113448 dative +113450 accusative +113453 accusative +nominative +nominative +113457 dative +dative +genitive +113461 nominative +113463 nominative +113465 accusative +nominative +nominative +dative +genitive +dative +113473 accusative +113477 accusative +accusative +genitive +113482 nominative +113484 dative +113487 accusative +113491 dative +nominative +nominative +113495 accusative +113497 genitive +113499 dative +dative +dative +113503 accusative +113505 dative +113507 accusative +nominative +113511 vocative +genitive +nominative +113516 dative +dative +dative +113520 dative +dative +113523 accusative +113526 genitive +113528 genitive +genitive +accusative +113532 dative +dative +nominative +nominative +113538 accusative +113542 nominative +nominative +genitive +genitive +nominative +nominative +113549 dative +genitive +genitive +dative +113554 dative +dative +113561 nominative +113569 accusative +accusative +accusative +accusative +genitive +genitive +113577 accusative +113581 dative +nominative +nominative +accusative +113586 dative +113588 accusative +accusative +accusative +113592 genitive +113594 genitive +genitive +113597 accusative +accusative +genitive +113601 dative +113604 genitive +113606 nominative +113608 nominative +nominative +genitive +genitive +113615 accusative +accusative +113619 accusative +accusative +113623 nominative +113625 genitive +genitive +113628 dative +dative +113631 genitive +genitive +nominative +nominative +nominative +113647 nominative +113649 accusative +113652 nominative +nominative +113657 accusative +113660 accusative +113662 nominative +113664 genitive +genitive +113669 accusative +accusative +113672 dative +genitive +genitive +113677 accusative +accusative +dative +dative +accusative +accusative +accusative +accusative +accusative +genitive +genitive +113689 accusative +accusative +accusative +113695 accusative +genitive +113699 nominative +nominative +genitive +113703 nominative +accusative +113706 genitive +113708 nominative +113710 nominative +nominative +113713 accusative +accusative +113716 nominative +accusative +113722 accusative +genitive +accusative +113726 nominative +nominative +nominative +genitive +genitive +113732 nominative +accusative +accusative +accusative +113737 nominative +accusative +accusative +genitive +113744 genitive +nominative +nominative +nominative +accusative +accusative +genitive +113753 dative +dative +113757 accusative +nominative +nominative +113761 nominative +113764 nominative +113766 nominative +113769 nominative +113771 accusative +113773 nominative +113775 accusative +113778 nominative +113780 accusative +113782 genitive +113784 nominative +113786 accusative +nominative +nominative +dative +dative +113792 accusative +accusative +accusative +nominative +113797 accusative +accusative +accusative +113803 accusative +accusative +accusative +accusative +113808 genitive +genitive +accusative +accusative +113813 genitive +genitive +113816 accusative +accusative +113819 accusative +accusative +113822 nominative +113825 accusative +113828 accusative +genitive +113834 accusative +113836 accusative +accusative +accusative +113840 dative +accusative +accusative +accusative +113847 dative +nominative +nominative +accusative +113852 accusative +genitive +113857 genitive +genitive +genitive +genitive +nominative +113863 genitive +113865 accusative +genitive +accusative +113869 accusative +113873 dative +dative +113876 nominative +nominative +113880 nominative +nominative +nominative +nominative +nominative +nominative +nominative +dative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +113903 nominative +nominative +accusative +genitive +113908 accusative +accusative +genitive +nominative +113913 accusative +113917 genitive +113919 nominative +nominative +113922 accusative +accusative +113925 nominative +accusative +accusative +dative +accusative +dative +dative +113933 accusative +113937 accusative +genitive +113940 accusative +113942 accusative +accusative +nominative +113946 nominative +113948 dative +113951 nominative +113953 dative +dative +nominative +nominative +accusative +accusative +nominative +113961 accusative +accusative +113967 accusative +113969 nominative +nominative +genitive +nominative +113974 dative +113977 nominative +genitive +113981 nominative +113983 genitive +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +dative +nominative +dative +114006 dative +114008 dative +114010 dative +accusative +accusative +114016 genitive +accusative +114019 nominative +nominative +114023 nominative +nominative +nominative +114029 dative +dative +114033 nominative +nominative +114036 nominative +114039 accusative +accusative +nominative +114043 nominative +114045 nominative +114048 dative +114052 nominative +114054 genitive +114059 genitive +114061 accusative +accusative +accusative +accusative +accusative +114068 accusative +114070 genitive +genitive +114073 dative +dative +nominative +nominative +nominative +114079 nominative +114081 accusative +114083 accusative +114085 accusative +114087 accusative +accusative +114090 dative +114092 nominative +114094 nominative +genitive +genitive +nominative +114099 accusative +accusative +accusative +nominative +114105 genitive +genitive +114108 genitive +genitive +genitive +genitive +114113 accusative +114115 accusative +114117 accusative +accusative +genitive +114121 accusative +accusative +genitive +114125 accusative +accusative +114134 dative +dative +114137 dative +114140 nominative +114143 genitive +genitive +genitive +114149 accusative +accusative +accusative +dative +114154 accusative +nominative +accusative +accusative +114161 genitive +genitive +accusative +accusative +114168 accusative +accusative +114172 nominative +114175 dative +114178 accusative +genitive +accusative +accusative +genitive +114185 nominative +114189 nominative +nominative +genitive +genitive +genitive +114195 accusative +accusative +accusative +114199 accusative +accusative +114202 accusative +accusative +114205 accusative +114207 dative +nominative +genitive +genitive +nominative +accusative +114214 dative +nominative +nominative +nominative +nominative +nominative +114221 dative +dative +dative +114226 accusative +dative +114230 dative +dative +dative +accusative +accusative +genitive +114239 accusative +114242 nominative +accusative +114245 nominative +accusative +114248 accusative +114252 accusative +nominative +114255 accusative +nominative +114258 accusative +nominative +114261 nominative +114263 genitive +accusative +nominative +114268 genitive +114271 dative +nominative +114274 accusative +114276 accusative +114279 accusative +accusative +accusative +accusative +114285 dative +114287 dative +nominative +114291 accusative +accusative +114294 accusative +accusative +nominative +nominative +nominative +accusative +accusative +dative +114304 dative +nominative +nominative +114308 accusative +accusative +genitive +accusative +114313 nominative +114318 dative +dative +dative +114322 dative +dative +genitive +dative +nominative +dative +114330 nominative +accusative +114334 dative +114337 nominative +nominative +dative +114343 accusative +114346 genitive +nominative +nominative +114352 nominative +nominative +nominative +114358 genitive +genitive +114361 accusative +nominative +nominative +114365 genitive +genitive +genitive +114371 accusative +accusative +genitive +accusative +accusative +dative +nominative +nominative +114380 accusative +accusative +genitive +genitive +114386 accusative +114388 accusative +114390 accusative +genitive +accusative +nominative +114396 dative +114398 accusative +114401 dative +accusative +114405 genitive +114408 accusative +nominative +114411 nominative +114413 nominative +114415 nominative +114417 nominative +nominative +nominative +nominative +nominative +114423 genitive +genitive +genitive +nominative +nominative +114429 genitive +nominative +nominative +genitive +114434 nominative +genitive +genitive +114438 accusative +genitive +genitive +114442 accusative +genitive +genitive +114446 accusative +114448 dative +genitive +genitive +accusative +114453 nominative +nominative +nominative +114457 genitive +genitive +114461 dative +dative +accusative +accusative +genitive +114467 dative +accusative +114470 nominative +114472 accusative +genitive +genitive +genitive +genitive +dative +dative +dative +114481 accusative +accusative +nominative +114485 nominative +114487 genitive +genitive +114490 genitive +genitive +genitive +genitive +genitive +genitive +114498 accusative +114500 dative +114502 accusative +accusative +114508 accusative +accusative +114511 nominative +dative +114515 nominative +114517 nominative +genitive +genitive +nominative +nominative +accusative +accusative +114526 dative +genitive +114529 accusative +114532 accusative +accusative +114536 genitive +accusative +accusative +114540 accusative +114542 accusative +114544 accusative +114546 accusative +114548 accusative +114550 accusative +accusative +accusative +accusative +accusative +accusative +accusative +genitive +114559 accusative +accusative +genitive +genitive +114565 nominative +114569 dative +dative +dative +dative +114574 accusative +accusative +114579 nominative +nominative +nominative +114583 nominative +114585 nominative +114587 genitive +genitive +accusative +114592 nominative +accusative +accusative +114596 nominative +accusative +114600 genitive +genitive +114604 nominative +114606 genitive +nominative +genitive +nominative +nominative +114612 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +114621 nominative +114623 accusative +accusative +114626 accusative +114631 dative +dative +114634 nominative +dative +dative +114638 dative +genitive +genitive +accusative +accusative +nominative +nominative +dative +dative +114648 dative +dative +114651 dative +nominative +nominative +114656 genitive +114658 nominative +nominative +114661 nominative +nominative +accusative +114667 dative +dative +114670 nominative +nominative +114673 nominative +114676 accusative +accusative +accusative +nominative +114681 nominative +114683 nominative +114685 dative +dative +dative +accusative +114690 accusative +accusative +accusative +accusative +dative +dative +dative +dative +dative +dative +accusative +114703 dative +accusative +114706 accusative +114708 dative +dative +accusative +accusative +114714 accusative +accusative +114717 accusative +accusative +accusative +accusative +accusative +accusative +accusative +dative +dative +dative +114729 nominative +nominative +genitive +genitive +114734 accusative +accusative +114740 accusative +accusative +nominative +accusative +genitive +genitive +114747 dative +dative +accusative +accusative +accusative +accusative +accusative +114755 nominative +114757 genitive +114759 nominative +114762 genitive +accusative +accusative +accusative +dative +dative +114770 dative +accusative +114774 accusative +114776 accusative +114778 accusative +accusative +accusative +accusative +114783 accusative +accusative +accusative +genitive +genitive +genitive +genitive +114792 dative +114795 nominative +nominative +genitive +genitive +nominative +dative +dative +nominative +accusative +114805 nominative +accusative +accusative +114809 accusative +accusative +accusative +114819 dative +114821 dative +nominative +accusative +accusative +accusative +114827 accusative +genitive +genitive +genitive +genitive +genitive +114834 genitive +genitive +genitive +genitive +nominative +114840 accusative +114842 genitive +114845 accusative +114847 genitive +genitive +114851 dative +accusative +accusative +accusative +genitive +genitive +accusative +114864 genitive +genitive +nominative +genitive +114870 accusative +dative +dative +114876 accusative +accusative +accusative +accusative +114881 accusative +114883 accusative +114885 accusative +accusative +accusative +accusative +114890 accusative +accusative +114896 nominative +nominative +nominative +nominative +nominative +dative +114903 dative +dative +114906 dative +114908 dative +nominative +nominative +nominative +accusative +114915 nominative +nominative +114918 nominative +nominative +genitive +genitive +genitive +genitive +114927 genitive +genitive +114930 dative +accusative +114933 nominative +114936 accusative +genitive +accusative +114940 accusative +114942 genitive +genitive +114945 genitive +genitive +genitive +genitive +114951 accusative +114954 genitive +genitive +genitive +genitive +genitive +114960 nominative +dative +genitive +dative +nominative +114967 accusative +genitive +genitive +nominative +nominative +nominative +114975 genitive +114977 accusative +114981 genitive +genitive +114984 nominative +nominative +dative +nominative +114989 nominative +114991 nominative +dative +dative +114995 accusative +accusative +114998 accusative +115000 accusative +115002 accusative +accusative +115007 nominative +115009 nominative +accusative +accusative +115013 accusative +115015 accusative +accusative +115018 nominative +115020 nominative +nominative +115025 nominative +nominative +115030 accusative +accusative +115033 accusative +115037 accusative +115039 accusative +115044 accusative +accusative +accusative +115048 accusative +115052 nominative +dative +115058 nominative +nominative +genitive +genitive +115064 accusative +accusative +accusative +115070 nominative +115072 accusative +nominative +115075 genitive +nominative +115078 accusative +accusative +accusative +115082 dative +nominative +nominative +115086 genitive +genitive +nominative +nominative +genitive +genitive +115093 nominative +nominative +nominative +dative +dative +dative +115100 dative +genitive +115103 dative +dative +dative +115107 dative +dative +dative +genitive +115112 dative +115114 accusative +genitive +dative +dative +nominative +115120 nominative +115122 genitive +genitive +genitive +115126 genitive +genitive +genitive +115130 dative +dative +genitive +115134 accusative +genitive +nominative +115138 genitive +genitive +genitive +nominative +genitive +accusative +accusative +115146 accusative +accusative +accusative +115151 accusative +accusative +accusative +115156 accusative +accusative +accusative +115160 nominative +nominative +genitive +genitive +genitive +nominative +115168 dative +genitive +genitive +genitive +115173 dative +115175 accusative +115177 accusative +accusative +115180 accusative +115183 dative +dative +genitive +115187 nominative +nominative +genitive +genitive +115193 genitive +vocative +115196 accusative +115198 dative +accusative +nominative +115202 dative +accusative +accusative +115206 accusative +accusative +115210 nominative +nominative +115213 nominative +nominative +115218 nominative +genitive +genitive +115222 accusative +115224 genitive +genitive +genitive +115229 dative +dative +accusative +accusative +accusative +115235 dative +accusative +115240 dative +115242 dative +accusative +115245 dative +accusative +accusative +nominative +115250 nominative +nominative +nominative +nominative +115255 accusative +115257 accusative +115261 genitive +dative +115265 dative +dative +genitive +genitive +115271 genitive +genitive +genitive +accusative +115281 accusative +nominative +nominative +genitive +115288 accusative +115292 accusative +115295 accusative +115297 accusative +accusative +115302 accusative +115305 accusative +accusative +accusative +115309 dative +115311 dative +115313 dative +115316 dative +115319 dative +115322 accusative +115324 accusative +115326 accusative +115328 accusative +115331 accusative +accusative +115336 accusative +dative +115339 nominative +nominative +115342 dative +dative +dative +nominative +115350 dative +115353 accusative +dative +115357 vocative +nominative +genitive +115362 dative +115364 genitive +accusative +accusative +115368 dative +nominative +dative +dative +genitive +115374 dative +nominative +115379 accusative +115386 dative +accusative +115392 genitive +genitive +genitive +115396 dative +115398 accusative +nominative +nominative +nominative +genitive +115404 dative +dative +nominative +nominative +nominative +nominative +nominative +nominative +genitive +nominative +nominative +genitive +genitive +genitive +genitive +115420 genitive +genitive +genitive +115427 nominative +dative +dative +115431 dative +dative +nominative +nominative +115436 genitive +genitive +genitive +genitive +115441 dative +115443 dative +accusative +115446 accusative +genitive +115449 genitive +115452 accusative +accusative +nominative +nominative +nominative +genitive +genitive +115460 nominative +genitive +genitive +genitive +115465 nominative +accusative +accusative +dative +dative +genitive +genitive +genitive +accusative +genitive +genitive +nominative +115479 dative +genitive +genitive +115483 dative +dative +nominative +nominative +genitive +genitive +dative +accusative +accusative +115493 accusative +115496 dative +genitive +genitive +115501 nominative +genitive +115504 nominative +nominative +115508 accusative +115511 nominative +115513 dative +115515 accusative +115517 nominative +115519 dative +115521 accusative +115526 accusative +accusative +115529 accusative +accusative +115534 dative +nominative +nominative +genitive +115541 accusative +accusative +115544 nominative +nominative +accusative +accusative +genitive +accusative +115551 accusative +accusative +genitive +genitive +accusative +115558 accusative +accusative +nominative +nominative +nominative +nominative +genitive +115566 accusative +accusative +genitive +genitive +115571 nominative +nominative +genitive +genitive +nominative +genitive +genitive +genitive +115580 accusative +115583 accusative +115585 accusative +115587 accusative +nominative +nominative +nominative +nominative +genitive +accusative +genitive +115596 accusative +accusative +genitive +115600 vocative +nominative +115603 accusative +accusative +accusative +115608 nominative +genitive +genitive +genitive +115613 nominative +nominative +nominative +115618 nominative +115621 nominative +115624 nominative +115627 accusative +115629 accusative +115631 accusative +115635 nominative +nominative +nominative +115640 nominative +nominative +genitive +115647 accusative +genitive +genitive +115654 genitive +genitive +115659 accusative +accusative +genitive +accusative +genitive +genitive +genitive +115667 nominative +115669 nominative +nominative +115672 accusative +nominative +115675 accusative +accusative +115678 accusative +115680 accusative +115684 accusative +dative +dative +115692 nominative +115694 genitive +nominative +nominative +115698 nominative +115700 nominative +nominative +115703 nominative +115705 accusative +accusative +115708 nominative +115710 nominative +genitive +genitive +nominative +accusative +nominative +115718 genitive +genitive +115721 genitive +genitive +115724 accusative +115726 genitive +genitive +genitive +115730 dative +115732 dative +115734 dative +dative +115737 genitive +genitive +dative +115741 accusative +genitive +accusative +115746 dative +115748 accusative +accusative +accusative +accusative +115753 genitive +115758 nominative +nominative +nominative +115762 nominative +115765 genitive +115767 nominative +genitive +115771 accusative +115773 accusative +accusative +accusative +115777 accusative +dative +115780 dative +115782 accusative +accusative +115786 genitive +genitive +genitive +115791 dative +115793 dative +accusative +accusative +accusative +115798 dative +accusative +115804 dative +accusative +accusative +accusative +115810 accusative +accusative +accusative +115814 accusative +accusative +accusative +115818 accusative +accusative +genitive +genitive +dative +115824 dative +accusative +115827 dative +genitive +115830 genitive +115832 genitive +115835 dative +115837 accusative +nominative +nominative +115842 genitive +nominative +nominative +accusative +accusative +115848 accusative +accusative +accusative +accusative +genitive +genitive +genitive +115856 genitive +115860 nominative +nominative +115863 nominative +nominative +115866 genitive +nominative +115869 accusative +accusative +115873 accusative +accusative +115876 nominative +115878 accusative +accusative +genitive +dative +dative +genitive +115885 dative +genitive +115888 accusative +115891 nominative +115893 nominative +115895 dative +115899 nominative +115901 nominative +nominative +accusative +dative +115906 nominative +nominative +115910 nominative +nominative +115913 genitive +115915 genitive +115917 nominative +115920 genitive +genitive +115924 genitive +genitive +115927 accusative +accusative +accusative +genitive +genitive +accusative +nominative +115935 accusative +accusative +115939 accusative +nominative +dative +genitive +115944 genitive +genitive +115947 nominative +genitive +115953 genitive +115956 genitive +genitive +115962 accusative +dative +dative +115968 nominative +115970 nominative +nominative +accusative +115974 accusative +accusative +115977 accusative +115979 accusative +accusative +genitive +genitive +115985 dative +115987 nominative +nominative +115990 dative +dative +115994 vocative +vocative +genitive +genitive +nominative +116000 accusative +accusative +116003 accusative +genitive +genitive +genitive +accusative +accusative +accusative +dative +dative +accusative +116015 nominative +116017 dative +dative +dative +genitive +116022 genitive +genitive +nominative +116026 accusative +116029 accusative +accusative +accusative +116033 genitive +genitive +nominative +nominative +accusative +116039 nominative +nominative +116043 genitive +116045 nominative +accusative +nominative +nominative +116051 nominative +nominative +116054 dative +dative +dative +genitive +116059 nominative +116061 accusative +genitive +genitive +116065 nominative +116067 nominative +116069 accusative +accusative +genitive +genitive +nominative +116075 nominative +116077 accusative +accusative +116080 accusative +accusative +genitive +genitive +116085 genitive +accusative +116091 nominative +nominative +nominative +nominative +116097 genitive +genitive +genitive +116103 accusative +accusative +genitive +116108 dative +dative +116111 accusative +accusative +genitive +genitive +116116 dative +dative +116120 nominative +nominative +genitive +116124 dative +116127 accusative +accusative +genitive +116131 accusative +116134 dative +dative +dative +116141 dative +dative +116144 nominative +116147 accusative +accusative +genitive +116153 dative +dative +genitive +116159 accusative +accusative +genitive +116163 vocative +116168 dative +genitive +nominative +nominative +genitive +116174 dative +116177 genitive +genitive +116181 accusative +116183 accusative +accusative +116186 genitive +accusative +116193 nominative +116195 genitive +dative +genitive +genitive +116200 nominative +genitive +genitive +116205 accusative +accusative +genitive +genitive +116210 genitive +accusative +116214 dative +116218 genitive +genitive +genitive +116224 accusative +accusative +genitive +116229 dative +dative +116232 nominative +nominative +116237 nominative +nominative +nominative +116241 genitive +116243 genitive +116245 dative +116248 accusative +116250 dative +dative +genitive +nominative +nominative +116257 dative +dative +116260 dative +116265 accusative +accusative +genitive +116270 dative +dative +116279 accusative +116284 genitive +genitive +116288 accusative +accusative +genitive +116292 nominative +116294 genitive +116299 nominative +116301 nominative +116305 nominative +nominative +genitive +genitive +accusative +116311 nominative +dative +dative +dative +dative +116319 accusative +accusative +nominative +nominative +116328 dative +dative +genitive +116334 accusative +accusative +genitive +116338 genitive +genitive +116341 genitive +genitive +genitive +116348 genitive +genitive +116353 nominative +nominative +116356 dative +dative +dative +dative +116361 genitive +genitive +genitive +genitive +116367 dative +116372 accusative +accusative +genitive +116378 accusative +116381 accusative +116383 nominative +accusative +nominative +116389 accusative +116392 accusative +accusative +116396 dative +nominative +116399 accusative +accusative +116405 genitive +genitive +genitive +116411 accusative +accusative +genitive +116416 accusative +nominative +116422 genitive +genitive +116426 accusative +116429 nominative +dative +dative +genitive +genitive +116435 nominative +nominative +116438 accusative +accusative +genitive +116442 nominative +116445 genitive +genitive +genitive +116450 genitive +genitive +nominative +nominative +116458 accusative +accusative +accusative +116464 dative +dative +dative +genitive +genitive +nominative +116472 nominative +nominative +genitive +genitive +nominative +116478 nominative +116480 nominative +116482 accusative +accusative +accusative +116486 nominative +116488 genitive +genitive +116491 genitive +116493 genitive +116495 genitive +116497 nominative +genitive +116500 genitive +genitive +116505 nominative +nominative +116508 genitive +116510 nominative +nominative +116513 nominative +dative +dative +genitive +116518 accusative +dative +nominative +nominative +116523 nominative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +accusative +genitive +genitive +116535 genitive +genitive +116539 accusative +116542 accusative +116544 dative +dative +genitive +116548 accusative +116550 accusative +116552 accusative +116554 genitive +116558 genitive +dative +dative +genitive +genitive +116565 accusative +116567 accusative +116570 accusative +accusative +116573 nominative +nominative +116576 genitive +nominative +116579 genitive +116581 accusative +116583 accusative +accusative +116588 accusative +116590 accusative +116592 genitive +nominative +116595 dative +dative +116598 dative +116601 nominative +116603 accusative +116606 accusative +116610 genitive +genitive +116615 genitive +116618 genitive +116621 dative +nominative +116624 accusative +accusative +116627 nominative +116629 genitive +genitive +116633 nominative +116636 nominative +nominative +116639 accusative +116642 accusative +116644 nominative +nominative +116647 accusative +nominative +genitive +116651 nominative +nominative +116655 accusative +116659 dative +116661 nominative +nominative +116664 accusative +accusative +116667 accusative +accusative +genitive +nominative +116672 dative +dative +genitive +genitive +genitive +116678 accusative +116680 accusative +116682 accusative +accusative +116685 accusative +116687 genitive +116689 genitive +genitive +116692 genitive +nominative +116695 nominative +116697 genitive +genitive +116700 nominative +nominative +116704 genitive +116706 accusative +accusative +116709 nominative +116711 dative +dative +dative +dative +nominative +genitive +genitive +nominative +116720 genitive +genitive +nominative +116724 accusative +accusative +genitive +116728 genitive +nominative +dative +nominative +nominative +116734 nominative +116737 nominative +116739 dative +dative +116743 nominative +116745 nominative +116747 accusative +accusative +116751 accusative +genitive +116754 accusative +accusative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +116766 nominative +accusative +genitive +116770 genitive +genitive +116773 nominative +nominative +nominative +genitive +nominative +genitive +genitive +116781 nominative +116785 nominative +nominative +nominative +genitive +genitive +116791 accusative +accusative +accusative +accusative +accusative +genitive +116798 accusative +116800 genitive +116802 genitive +116804 nominative +accusative +genitive +genitive +genitive +genitive +accusative +116812 accusative +accusative +116817 nominative +accusative +genitive +116821 genitive +genitive +116824 genitive +116826 accusative +accusative +genitive +116830 genitive +genitive +genitive +genitive +116835 genitive +genitive +116838 accusative +116842 nominative +nominative +116845 nominative +accusative +116848 accusative +116850 accusative +genitive +genitive +genitive +genitive +116856 accusative +genitive +genitive +accusative +116861 accusative +accusative +genitive +accusative +116866 accusative +genitive +genitive +116870 accusative +116874 accusative +accusative +dative +accusative +accusative +genitive +genitive +116882 accusative +116884 nominative +nominative +nominative +accusative +116889 genitive +accusative +116892 accusative +116894 nominative +accusative +accusative +dative +116899 accusative +116903 genitive +116905 genitive +genitive +116908 nominative +accusative +116911 accusative +nominative +116914 genitive +116916 genitive +nominative +nominative +116920 accusative +116922 vocative +116925 genitive +accusative +accusative +116929 accusative +genitive +116937 nominative +nominative +nominative +116941 genitive +genitive +genitive +116945 genitive +genitive +genitive +116950 accusative +accusative +genitive +nominative +116955 nominative +dative +dative +116960 accusative +genitive +accusative +accusative +accusative +116967 accusative +accusative +genitive +genitive +116972 genitive +116975 nominative +116978 nominative +genitive +116981 genitive +116983 genitive +genitive +accusative +accusative +116988 dative +dative +nominative +nominative +nominative +116995 genitive +genitive +117001 genitive +nominative +117005 nominative +117007 accusative +117009 nominative +117011 accusative +117014 nominative +117016 genitive +genitive +117019 nominative +117021 genitive +genitive +117025 dative +genitive +genitive +nominative +117030 accusative +nominative +nominative +117034 dative +accusative +nominative +117038 dative +dative +genitive +genitive +accusative +accusative +genitive +genitive +genitive +nominative +nominative +117050 dative +117054 genitive +genitive +117057 dative +nominative +117060 accusative +accusative +accusative +117064 nominative +nominative +117067 genitive +genitive +genitive +accusative +117073 accusative +genitive +genitive +117077 accusative +117079 accusative +117081 accusative +117083 accusative +accusative +genitive +genitive +117088 nominative +nominative +117091 genitive +117094 accusative +accusative +genitive +nominative +nominative +117100 accusative +accusative +117103 nominative +nominative +nominative +nominative +genitive +nominative +genitive +genitive +genitive +genitive +nominative +nominative +dative +dative +117118 genitive +genitive +genitive +genitive +117123 nominative +accusative +dative +117127 accusative +117129 genitive +117131 nominative +117133 accusative +nominative +nominative +genitive +117140 nominative +genitive +nominative +117144 nominative +genitive +nominative +nominative +nominative +117150 accusative +genitive +117153 genitive +accusative +nominative +117157 nominative +dative +dative +genitive +genitive +117163 nominative +117165 accusative +accusative +117169 nominative +nominative +dative +accusative +nominative +nominative +nominative +117178 genitive +genitive +117182 nominative +117184 genitive +genitive +genitive +accusative +accusative +nominative +accusative +117194 accusative +accusative +accusative +accusative +nominative +117200 accusative +accusative +genitive +117204 accusative +117206 genitive +genitive +genitive +117210 nominative +117212 nominative +117214 genitive +117216 accusative +117218 accusative +accusative +accusative +accusative +117225 genitive +genitive +nominative +nominative +117230 genitive +genitive +117236 accusative +nominative +nominative +117242 nominative +117247 accusative +117250 genitive +117252 nominative +nominative +accusative +nominative +117260 dative +dative +genitive +genitive +117267 dative +nominative +117272 nominative +117274 genitive +genitive +genitive +117279 nominative +nominative +117282 genitive +117284 nominative +117286 nominative +117288 accusative +accusative +genitive +117292 accusative +accusative +117297 accusative +accusative +genitive +117302 genitive +genitive +genitive +117306 genitive +117308 genitive +nominative +117313 accusative +117315 nominative +genitive +genitive +117320 genitive +nominative +117323 dative +dative +117326 nominative +117329 genitive +117331 nominative +nominative +genitive +117335 accusative +accusative +117338 genitive +accusative +nominative +117343 nominative +117345 nominative +117349 accusative +accusative +genitive +117353 nominative +nominative +nominative +117359 accusative +genitive +genitive +117364 accusative +genitive +genitive +117370 nominative +nominative +117373 accusative +accusative +117376 accusative +accusative +genitive +117381 nominative +genitive +genitive +117386 accusative +genitive +accusative +117390 accusative +117392 accusative +117394 nominative +nominative +117397 nominative +genitive +genitive +117401 genitive +117403 dative +dative +117407 accusative +117410 genitive +117413 nominative +117415 genitive +117417 nominative +nominative +117420 nominative +117422 genitive +117424 genitive +genitive +117427 accusative +117429 nominative +117433 nominative +nominative +117436 accusative +accusative +117439 accusative +117441 genitive +genitive +nominative +117445 nominative +117448 nominative +nominative +117451 nominative +nominative +117454 accusative +dative +117459 nominative +117461 accusative +117463 accusative +117465 accusative +accusative +accusative +117469 accusative +accusative +117476 accusative +accusative +accusative +accusative +117481 genitive +dative +dative +117485 nominative +117487 accusative +117490 genitive +117492 dative +117495 nominative +nominative +nominative +nominative +nominative +nominative +117502 genitive +genitive +117505 nominative +genitive +genitive +nominative +nominative +117513 accusative +accusative +117516 nominative +nominative +accusative +117520 genitive +genitive +genitive +accusative +117526 genitive +genitive +genitive +117530 accusative +117533 accusative +nominative +117536 nominative +nominative +accusative +117540 accusative +accusative +accusative +117544 nominative +nominative +genitive +genitive +genitive +117550 accusative +accusative +accusative +117554 accusative +accusative +accusative +117558 nominative +117560 dative +dative +117563 accusative +accusative +nominative +117568 dative +genitive +genitive +genitive +genitive +117574 dative +dative +nominative +genitive +genitive +117580 genitive +genitive +genitive +genitive +accusative +117586 nominative +nominative +117589 nominative +117591 nominative +nominative +117594 accusative +117597 accusative +117599 accusative +117602 nominative +117605 accusative +accusative +accusative +117614 genitive +117618 nominative +genitive +genitive +genitive +117623 accusative +accusative +accusative +nominative +dative +117629 dative +genitive +genitive +117635 nominative +nominative +117638 accusative +accusative +117644 accusative +117646 accusative +accusative +accusative +accusative +dative +117652 dative +dative +117656 genitive +genitive +117659 dative +117662 nominative +genitive +genitive +nominative +117667 dative +dative +117672 nominative +nominative +nominative +117676 nominative +117679 genitive +nominative +117683 nominative +accusative +117687 nominative +117690 nominative +117694 accusative +accusative +genitive +117699 accusative +accusative +genitive +accusative +accusative +117706 accusative +accusative +accusative +117710 dative +dative +genitive +117714 dative +genitive +genitive +genitive +genitive +genitive +117721 accusative +117723 genitive +genitive +117726 nominative +117730 dative +dative +genitive +nominative +117735 genitive +117737 nominative +117739 nominative +nominative +nominative +accusative +117744 dative +dative +genitive +117748 accusative +accusative +accusative +117752 nominative +nominative +accusative +genitive +117757 accusative +accusative +genitive +117762 accusative +genitive +117765 accusative +117768 dative +117770 accusative +117772 nominative +117774 dative +117776 accusative +117781 nominative +accusative +accusative +genitive +117786 nominative +accusative +accusative +genitive +nominative +117792 accusative +accusative +117795 nominative +117797 accusative +117799 genitive +117801 genitive +genitive +117804 nominative +117806 dative +dative +genitive +117810 genitive +genitive +genitive +117818 dative +117820 accusative +117822 accusative +accusative +117825 nominative +nominative +117828 nominative +117830 genitive +117835 nominative +nominative +accusative +genitive +117840 accusative +accusative +accusative +117845 nominative +nominative +nominative +117849 dative +117851 nominative +nominative +117854 nominative +nominative +117857 nominative +nominative +genitive +genitive +nominative +117863 nominative +117866 accusative +accusative +accusative +nominative +nominative +nominative +nominative +genitive +nominative +accusative +accusative +117878 accusative +accusative +genitive +genitive +accusative +117884 dative +117886 dative +nominative +nominative +nominative +accusative +accusative +117893 nominative +nominative +genitive +nominative +nominative +117899 nominative +nominative +genitive +genitive +117905 genitive +nominative +genitive +nominative +accusative +accusative +117912 genitive +117918 accusative +117920 genitive +117922 genitive +117925 accusative +accusative +accusative +117929 genitive +117931 nominative +nominative +accusative +accusative +nominative +117938 accusative +accusative +117941 genitive +genitive +nominative +nominative +nominative +117948 genitive +accusative +117952 genitive +117954 genitive +genitive +genitive +genitive +accusative +genitive +genitive +genitive +genitive +genitive +117966 accusative +genitive +genitive +accusative +117971 genitive +genitive +genitive +genitive +accusative +nominative +nominative +117979 accusative +accusative +accusative +accusative +117984 accusative +117986 nominative +117988 nominative +117991 nominative +117993 accusative +117995 accusative +accusative +accusative +117999 dative +118001 dative +118003 dative +dative +nominative +genitive +118008 genitive +genitive +nominative +118012 nominative +nominative +nominative +genitive +genitive +genitive +118019 genitive +genitive +118022 genitive +genitive +118025 genitive +nominative +118029 genitive +genitive +genitive +118034 genitive +genitive +118037 genitive +118040 genitive +genitive +genitive +118046 accusative +accusative +accusative +accusative +nominative +118053 nominative +nominative +genitive +118057 genitive +118059 nominative +genitive +nominative +accusative +accusative +118066 accusative +genitive +genitive +accusative +dative +118072 nominative +nominative +genitive +genitive +nominative +118078 genitive +genitive +accusative +118082 accusative +dative +dative +118086 accusative +accusative +genitive +118090 genitive +genitive +118093 accusative +118095 dative +dative +118099 accusative +genitive +genitive +nominative +118105 genitive +genitive +118108 accusative +genitive +118111 dative +dative +dative +genitive +118116 nominative +nominative +accusative +accusative +genitive +genitive +genitive +118125 nominative +nominative +118128 accusative +genitive +genitive +118132 nominative +118134 dative +nominative +118142 nominative +nominative +118146 nominative +nominative +118149 genitive +118152 genitive +genitive +genitive +118156 accusative +accusative +118159 genitive +dative +dative +dative +nominative +accusative +accusative +genitive +genitive +118169 genitive +genitive +118172 genitive +118174 genitive +genitive +118177 genitive +118179 accusative +accusative +accusative +118183 accusative +accusative +accusative +118187 nominative +nominative +nominative +nominative +genitive +genitive +genitive +118196 accusative +nominative +nominative +118201 accusative +accusative +118204 accusative +accusative +accusative +genitive +genitive +dative +dative +118216 dative +nominative +118220 accusative +accusative +118224 genitive +118227 nominative +118229 nominative +118231 accusative +accusative +genitive +118235 dative +dative +dative +118240 accusative +accusative +accusative +dative +dative +118246 accusative +118249 nominative +118252 accusative +accusative +accusative +genitive +genitive +118259 accusative +accusative +accusative +118264 dative +dative +genitive +genitive +118269 genitive +118274 accusative +118276 nominative +nominative +118280 accusative +accusative +118283 accusative +118285 dative +dative +118289 accusative +118293 genitive +genitive +118299 dative +genitive +genitive +118303 accusative +genitive +genitive +118307 genitive +genitive +genitive +118313 accusative +118315 dative +dative +118321 accusative +nominative +118325 nominative +nominative +118328 nominative +118330 accusative +genitive +accusative +118335 genitive +118337 genitive +118339 dative +accusative +dative +118343 accusative +118345 nominative +nominative +nominative +accusative +genitive +genitive +genitive +118353 accusative +accusative +accusative +genitive +genitive +118359 accusative +dative +dative +dative +accusative +118366 accusative +accusative +118370 accusative +accusative +118377 nominative +118379 accusative +accusative +118383 accusative +genitive +accusative +accusative +118388 accusative +118391 dative +nominative +genitive +118395 accusative +118397 nominative +nominative +genitive +118401 genitive +118403 accusative +118405 nominative +118407 accusative +accusative +118410 accusative +118412 accusative +118416 accusative +118418 dative +accusative +118422 genitive +118427 nominative +nominative +118431 dative +genitive +118435 genitive +118437 genitive +118439 accusative +accusative +genitive +accusative +nominative +118445 accusative +118447 accusative +118449 accusative +118452 genitive +118457 nominative +118459 accusative +118465 genitive +118467 accusative +accusative +genitive +118471 accusative +accusative +118474 accusative +accusative +118478 dative +dative +nominative +118483 genitive +genitive +genitive +genitive +genitive +genitive +118492 nominative +nominative +118496 accusative +nominative +118500 nominative +accusative +accusative +accusative +nominative +118508 accusative +118510 nominative +accusative +accusative +118514 genitive +nominative +118517 accusative +accusative +118521 dative +genitive +genitive +accusative +accusative +nominative +118529 nominative +nominative +genitive +accusative +genitive +genitive +genitive +118537 dative +dative +118541 accusative +accusative +accusative +accusative +118547 dative +118549 nominative +nominative +nominative +nominative +118555 accusative +118557 nominative +nominative +nominative +accusative +118563 accusative +118565 accusative +accusative +accusative +118569 nominative +nominative +accusative +genitive +118574 accusative +genitive +118578 accusative +accusative +genitive +118582 accusative +118584 genitive +genitive +genitive +118588 genitive +genitive +genitive +118597 nominative +genitive +118600 nominative +118602 genitive +118604 vocative +nominative +accusative +118608 accusative +accusative +genitive +genitive +118613 dative +dative +genitive +accusative +118618 dative +accusative +accusative +118622 accusative +118624 genitive +genitive +nominative +118628 genitive +genitive +genitive +118632 accusative +accusative +118635 accusative +accusative +genitive +genitive +118641 genitive +genitive +118644 dative +genitive +nominative +accusative +accusative +118650 genitive +genitive +118653 nominative +accusative +accusative +dative +dative +118659 accusative +accusative +genitive +genitive +accusative +118665 nominative +nominative +nominative +118670 accusative +118672 accusative +genitive +118675 genitive +genitive +118678 nominative +accusative +accusative +genitive +118683 nominative +dative +118686 nominative +118689 dative +dative +118692 accusative +accusative +accusative +118697 genitive +genitive +118700 accusative +118702 accusative +accusative +genitive +genitive +118708 genitive +118710 nominative +118712 nominative +nominative +nominative +genitive +118717 nominative +genitive +genitive +118721 accusative +accusative +nominative +nominative +accusative +genitive +118728 genitive +118730 dative +118732 dative +dative +118735 dative +118737 genitive +genitive +118740 nominative +accusative +accusative +genitive +genitive +nominative +118747 accusative +nominative +accusative +accusative +genitive +genitive +118754 dative +118757 accusative +accusative +genitive +genitive +nominative +118764 accusative +accusative +dative +nominative +nominative +118773 nominative +accusative +accusative +genitive +nominative +nominative +118781 accusative +genitive +genitive +118786 accusative +accusative +accusative +118790 dative +nominative +118793 accusative +accusative +genitive +118797 accusative +118799 dative +118801 dative +nominative +118804 accusative +nominative +genitive +118808 genitive +nominative +118812 dative +dative +118816 accusative +accusative +genitive +genitive +genitive +118822 genitive +118824 nominative +118826 accusative +accusative +accusative +118830 accusative +118834 accusative +accusative +genitive +nominative +118839 accusative +accusative +118842 genitive +accusative +118846 accusative +accusative +genitive +genitive +nominative +118852 accusative +accusative +118856 accusative +accusative +accusative +nominative +nominative +118866 nominative +nominative +genitive +118870 genitive +118877 nominative +nominative +genitive +118881 dative +118883 nominative +118886 genitive +118888 accusative +118890 genitive +118892 accusative +genitive +118896 nominative +genitive +nominative +nominative +genitive +118902 genitive +118905 dative +118907 nominative +nominative +dative +118912 accusative +accusative +dative +genitive +118917 accusative +118920 genitive +accusative +accusative +118924 dative +nominative +accusative +accusative +118929 accusative +118931 dative +dative +118934 genitive +118937 nominative +genitive +118940 dative +dative +genitive +genitive +genitive +118947 genitive +nominative +118951 dative +nominative +118954 genitive +118957 accusative +118963 accusative +nominative +nominative +118968 genitive +genitive +118972 dative +dative +118976 genitive +nominative +118982 accusative +accusative +dative +dative +118989 dative +dative +accusative +nominative +118994 dative +nominative +nominative +118998 genitive +119000 genitive +nominative +119003 accusative +119005 accusative +genitive +genitive +genitive +119010 genitive +119012 accusative +accusative +119015 genitive +119017 accusative +genitive +nominative +119021 dative +nominative +nominative +119027 accusative +119029 accusative +119032 accusative +119036 nominative +119039 dative +119042 accusative +genitive +genitive +119046 accusative +119048 dative +nominative +119051 genitive +119053 genitive +genitive +genitive +genitive +genitive +genitive +genitive +119062 accusative +accusative +accusative +accusative +accusative +genitive +nominative +119070 nominative +nominative +nominative +dative +119075 dative +dative +accusative +119079 accusative +genitive +119084 accusative +genitive +119087 accusative +119089 accusative +accusative +119094 genitive +genitive +119098 nominative +119100 nominative +nominative +genitive +genitive +dative +dative +119108 nominative +nominative +nominative +119112 accusative +accusative +genitive +genitive +nominative +nominative +119119 accusative +119121 nominative +nominative +119124 nominative +accusative +accusative +119129 accusative +nominative +119132 nominative +119134 nominative +119136 nominative +119138 nominative +119141 genitive +genitive +119144 nominative +accusative +nominative +119149 accusative +119155 genitive +119157 genitive +119161 accusative +119166 genitive +nominative +119169 genitive +119173 accusative +nominative +nominative +nominative +genitive +119181 dative +accusative +dative +119185 nominative +accusative +accusative +nominative +119190 accusative +accusative +119193 nominative +accusative +accusative +nominative +119198 accusative +119202 dative +119204 dative +nominative +nominative +119210 genitive +119212 nominative +nominative +nominative +119216 accusative +119219 dative +119221 dative +119224 genitive +119226 nominative +accusative +accusative +119230 accusative +accusative +dative +nominative +nominative +accusative +genitive +genitive +genitive +119243 accusative +accusative +genitive +genitive +genitive +dative +nominative +nominative +119252 genitive +genitive +genitive +genitive +genitive +119260 genitive +genitive +genitive +119264 dative +nominative +nominative +119268 accusative +119270 genitive +genitive +genitive +119275 accusative +accusative +accusative +119281 accusative +accusative +genitive +genitive +dative +nominative +nominative +nominative +119291 nominative +genitive +genitive +nominative +119297 dative +dative +genitive +genitive +119302 accusative +119304 genitive +accusative +accusative +accusative +nominative +genitive +genitive +genitive +accusative +accusative +genitive +genitive +119319 accusative +accusative +dative +119323 accusative +119325 nominative +accusative +accusative +genitive +genitive +119331 accusative +accusative +119334 nominative +119336 dative +119338 accusative +accusative +119341 accusative +accusative +genitive +genitive +119347 nominative +nominative +accusative +accusative +119352 genitive +dative +119355 accusative +accusative +accusative +119360 genitive +genitive +genitive +accusative +nominative +nominative +nominative +119368 dative +nominative +nominative +genitive +119373 nominative +119376 accusative +dative +nominative +nominative +nominative +119383 dative +dative +nominative +accusative +accusative +119389 genitive +119391 accusative +119396 nominative +nominative +accusative +accusative +119401 genitive +genitive +genitive +genitive +119406 genitive +119408 genitive +119410 genitive +genitive +nominative +119414 genitive +119416 accusative +119418 accusative +119420 genitive +119422 accusative +genitive +119425 accusative +genitive +119428 accusative +genitive +119432 genitive +119434 nominative +119436 dative +accusative +genitive +119441 nominative +119443 genitive +accusative +accusative +genitive +119448 nominative +119451 nominative +accusative +accusative +119455 genitive +genitive +119459 nominative +genitive +119462 genitive +accusative +119467 genitive +119469 genitive +119474 dative +genitive +119479 dative +119481 dative +dative +nominative +nominative +nominative +nominative +119488 dative +119490 dative +119492 dative +119494 dative +dative +genitive +genitive +genitive +119501 nominative +nominative +nominative +119505 nominative +nominative +nominative +119509 genitive +genitive +119513 accusative +accusative +genitive +genitive +119518 genitive +accusative +accusative +genitive +119525 genitive +119529 nominative +nominative +accusative +accusative +dative +accusative +genitive +nominative +accusative +accusative +119540 accusative +accusative +accusative +119544 genitive +119546 accusative +accusative +dative +accusative +nominative +119552 accusative +genitive +genitive +accusative +119557 accusative +accusative +nominative +119561 genitive +genitive +dative +genitive +119566 accusative +genitive +nominative +119571 dative +genitive +genitive +genitive +genitive +119579 accusative +accusative +accusative +119583 genitive +genitive +119586 accusative +accusative +119591 dative +dative +genitive +nominative +119597 genitive +119600 accusative +accusative +nominative +119605 genitive +genitive +nominative +dative +119610 dative +119612 vocative +genitive +119616 genitive +genitive +119621 genitive +nominative +119624 accusative +119626 nominative +119630 accusative +accusative +accusative +119635 accusative +119638 dative +dative +119641 nominative +nominative +119644 nominative +nominative +accusative +119649 nominative +119654 genitive +genitive +nominative +119658 nominative +119660 nominative +119663 nominative +119667 accusative +genitive +genitive +genitive +accusative +119673 accusative +119677 accusative +119680 dative +dative +genitive +genitive +119688 nominative +119690 accusative +accusative +119693 accusative +accusative +dative +119698 nominative +119700 accusative +accusative +119703 accusative +119705 genitive +genitive +genitive +119709 nominative +nominative +119713 accusative +accusative +119717 genitive +119720 genitive +119722 accusative +accusative +accusative +genitive +dative +119728 genitive +dative +119732 accusative +accusative +accusative +119736 accusative +accusative +accusative +119741 accusative +accusative +119744 dative +dative +genitive +119749 nominative +nominative +119757 genitive +accusative +119760 accusative +accusative +genitive +119764 nominative +119766 accusative +accusative +nominative +119770 nominative +nominative +119773 genitive +genitive +genitive +genitive +119778 nominative +nominative +genitive +119782 nominative +119786 genitive +119788 nominative +nominative +119791 nominative +nominative +119794 nominative +119796 nominative +nominative +119799 genitive +genitive +119802 accusative +accusative +genitive +119810 nominative +119812 accusative +accusative +119816 genitive +accusative +119822 genitive +nominative +accusative +119828 dative +119830 dative +dative +119833 dative +119835 dative +119837 dative +119839 genitive +dative +119842 dative +genitive +genitive +nominative +nominative +119850 dative +accusative +119855 accusative +accusative +119858 nominative +119860 genitive +genitive +119865 nominative +119867 nominative +nominative +nominative +119872 nominative +119874 nominative +119877 dative +dative +119880 dative +genitive +genitive +dative +dative +119886 dative +genitive +dative +119890 dative +genitive +genitive +119894 dative +119896 dative +genitive +dative +119900 dative +genitive +genitive +119904 genitive +genitive +dative +dative +119909 dative +genitive +accusative +dative +119914 accusative +accusative +119919 accusative +accusative +119925 nominative +nominative +accusative +119929 genitive +accusative +accusative +119933 nominative +nominative +accusative +119937 genitive +nominative +genitive +nominative +nominative +accusative +accusative +119949 nominative +119952 nominative +119955 accusative +accusative +accusative +119960 accusative +accusative +119963 nominative +119967 accusative +genitive +genitive +accusative +119972 genitive +119975 nominative +119977 nominative +119979 accusative +accusative +nominative +119983 accusative +119985 genitive +119988 dative +dative +119991 genitive +119993 genitive +119996 nominative +nominative +genitive +nominative +nominative +nominative +nominative +120004 genitive +genitive +120010 genitive +120012 nominative +nominative +accusative +120016 genitive +genitive +120019 nominative +genitive +genitive +120024 nominative +nominative +120027 dative +nominative +nominative +nominative +120032 dative +120034 nominative +nominative +nominative +120038 accusative +120040 accusative +120042 nominative +nominative +nominative +nominative +nominative +nominative +dative +dative +120051 nominative +120055 accusative +120060 accusative +120063 accusative +accusative +120066 nominative +dative +nominative +120071 accusative +120073 dative +nominative +120076 genitive +genitive +genitive +nominative +120081 dative +accusative +accusative +genitive +genitive +genitive +accusative +accusative +genitive +genitive +nominative +120093 accusative +accusative +nominative +nominative +120100 nominative +nominative +120104 accusative +accusative +dative +dative +120109 dative +120113 nominative +dative +120116 accusative +accusative +120119 dative +120121 dative +120124 nominative +nominative +120127 accusative +120129 genitive +120133 accusative +nominative +dative +dative +nominative +120140 genitive +genitive +nominative +nominative +120145 genitive +120147 accusative +accusative +120150 genitive +genitive +genitive +nominative +nominative +120157 genitive +genitive +120161 nominative +120165 genitive +genitive +genitive +accusative +accusative +120171 genitive +genitive +120177 accusative +120179 genitive +genitive +accusative +accusative +genitive +nominative +120189 accusative +accusative +120192 accusative +accusative +120197 genitive +120200 genitive +dative +dative +accusative +genitive +nominative +120207 accusative +genitive +genitive +dative +dative +genitive +120214 genitive +genitive +120217 genitive +120221 dative +dative +120224 nominative +nominative +120227 dative +dative +genitive +120233 nominative +120236 genitive +genitive +genitive +120240 accusative +nominative +120244 genitive +accusative +120249 nominative +120251 nominative +dative +nominative +120256 genitive +120260 accusative +accusative +120264 dative +120267 nominative +120271 accusative +120274 accusative +120276 dative +120278 nominative +nominative +genitive +genitive +nominative +nominative +120285 genitive +120287 dative +genitive +genitive +accusative +accusative +genitive +genitive +accusative +accusative +accusative +accusative +genitive +accusative +120301 accusative +120303 dative +dative +120306 accusative +120308 accusative +accusative +genitive +nominative +120313 dative +accusative +accusative +120317 genitive +120319 genitive +genitive +dative +nominative +nominative +120325 accusative +accusative +genitive +genitive +120332 accusative +vocative +120335 genitive +genitive +genitive +genitive +120342 genitive +120344 dative +120346 accusative +accusative +genitive +accusative +accusative +120352 genitive +120354 accusative +120357 accusative +120359 accusative +accusative +accusative +genitive +120364 accusative +accusative +accusative +120368 accusative +nominative +120371 genitive +genitive +nominative +nominative +120376 genitive +genitive +nominative +genitive +120381 genitive +genitive +genitive +nominative +dative +120387 dative +dative +120390 dative +dative +120393 vocative +genitive +accusative +accusative +120399 dative +dative +120402 nominative +120404 nominative +nominative +genitive +genitive +genitive +120410 accusative +120412 nominative +nominative +accusative +accusative +120419 nominative +120421 nominative +120423 dative +nominative +120427 nominative +genitive +120430 genitive +120433 genitive +genitive +dative +120439 genitive +genitive +120443 dative +120447 dative +accusative +nominative +120451 nominative +nominative +120454 dative +genitive +dative +120458 dative +120462 nominative +nominative +nominative +120467 accusative +120469 genitive +genitive +nominative +nominative +nominative +120475 dative +dative +dative +genitive +120481 nominative +nominative +nominative +nominative +120486 dative +dative +genitive +120490 nominative +nominative +120493 dative +dative +genitive +120498 nominative +genitive +120503 nominative +nominative +120506 dative +dative +120510 accusative +accusative +120513 nominative +nominative +genitive +120518 nominative +nominative +genitive +genitive +genitive +120526 nominative +nominative +120529 dative +dative +genitive +120533 nominative +nominative +nominative +120537 accusative +120539 nominative +nominative +120542 accusative +accusative +genitive +genitive +accusative +120548 dative +dative +accusative +nominative +nominative +120556 genitive +120559 nominative +nominative +nominative +120563 genitive +120566 nominative +accusative +120569 nominative +120572 genitive +genitive +genitive +nominative +120577 nominative +120579 nominative +nominative +nominative +120583 accusative +120585 nominative +nominative +nominative +120589 accusative +120592 vocative +genitive +vocative +nominative +nominative +nominative +120599 nominative +nominative +nominative +120604 nominative +120606 genitive +genitive +genitive +genitive +120611 dative +120614 nominative +120616 genitive +nominative +nominative +120620 accusative +dative +genitive +120624 accusative +120626 accusative +accusative +accusative +genitive +genitive +genitive +120633 vocative +genitive +vocative +120638 nominative +nominative +nominative +120642 accusative +120644 nominative +120646 accusative +120648 nominative +120650 accusative +120652 nominative +genitive +accusative +genitive +120659 nominative +accusative +accusative +120663 accusative +genitive +120666 dative +120668 accusative +accusative +accusative +accusative +accusative +120674 accusative +accusative +genitive +120679 nominative +genitive +120683 nominative +nominative +nominative +accusative +120689 nominative +nominative +genitive +120695 nominative +nominative +120698 dative +dative +accusative +accusative +genitive +genitive +genitive +120706 dative +120709 accusative +120715 nominative +120718 nominative +nominative +120721 accusative +accusative +accusative +genitive +genitive +120727 nominative +nominative +120730 nominative +genitive +120733 nominative +genitive +nominative +nominative +120738 dative +dative +genitive +120743 nominative +120745 nominative +120748 nominative +accusative +genitive +120752 nominative +accusative +genitive +genitive +nominative +nominative +nominative +nominative +nominative +120762 nominative +120764 dative +dative +120767 dative +120769 nominative +120771 accusative +120773 accusative +120775 dative +dative +genitive +accusative +accusative +120782 genitive +genitive +vocative +genitive +120788 dative +120790 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +120803 accusative +genitive +nominative +nominative +120808 dative +dative +120813 nominative +120815 dative +dative +120820 accusative +accusative +accusative +accusative +accusative +accusative +120828 nominative +120833 dative +dative +120836 nominative +120842 accusative +accusative +genitive +120848 dative +120851 nominative +genitive +genitive +120855 vocative +genitive +vocative +120859 nominative +nominative +120862 accusative +accusative +dative +dative +accusative +120868 dative +120870 accusative +genitive +genitive +genitive +120875 dative +dative +accusative +120879 nominative +120881 accusative +accusative +120884 nominative +nominative +120887 genitive +120889 nominative +120891 accusative +120893 accusative +120895 nominative +120897 accusative +accusative +accusative +accusative +accusative +120903 accusative +120906 accusative +accusative +120910 accusative +accusative +120913 accusative +120915 genitive +120917 accusative +120923 accusative +120925 nominative +120927 genitive +genitive +120930 nominative +120932 nominative +accusative +accusative +accusative +120940 dative +120942 genitive +nominative +120945 nominative +nominative +120960 nominative +genitive +120969 genitive +genitive +120972 nominative +120974 nominative +nominative +nominative +dative +120979 dative +accusative +120982 nominative +genitive +vocative +genitive +nominative +nominative +nominative +120990 accusative +120993 nominative +120995 accusative +121000 nominative +nominative +121003 accusative +121005 nominative +121007 nominative +nominative +121011 nominative +genitive +genitive +genitive +121017 dative +nominative +121020 genitive +121023 dative +121030 dative +accusative +accusative +genitive +genitive +nominative +nominative +nominative +121040 nominative +nominative +121045 accusative +nominative +121049 accusative +121052 nominative +nominative +accusative +121056 nominative +accusative +121060 dative +accusative +accusative +genitive +121065 genitive +genitive +nominative +dative +121071 genitive +genitive +genitive +accusative +accusative +nominative +121079 nominative +121081 nominative +nominative +121086 nominative +nominative +121093 vocative +vocative +121098 nominative +nominative +121101 genitive +genitive +nominative +121105 nominative +nominative +nominative +genitive +121111 genitive +121113 nominative +accusative +accusative +accusative +genitive +121119 accusative +accusative +121123 nominative +nominative +121126 dative +dative +genitive +121131 genitive +genitive +nominative +nominative +121138 nominative +nominative +nominative +nominative +121144 nominative +dative +dative +121149 dative +121151 accusative +121153 nominative +genitive +121159 genitive +121161 nominative +121165 genitive +accusative +121170 nominative +nominative +nominative +121175 genitive +121177 nominative +accusative +accusative +121181 dative +dative +nominative +121186 nominative +nominative +121189 genitive +nominative +121194 nominative +nominative +121197 genitive +nominative +121200 vocative +genitive +121203 nominative +nominative +121206 nominative +121208 accusative +accusative +121212 accusative +121214 nominative +121216 nominative +121218 dative +121221 nominative +nominative +nominative +nominative +121227 accusative +accusative +accusative +121232 genitive +genitive +accusative +accusative +121237 accusative +accusative +121241 accusative +121243 accusative +dative +121246 accusative +accusative +accusative +genitive +121253 nominative +nominative +nominative +nominative +121259 genitive +genitive +nominative +121264 genitive +genitive +121267 nominative +nominative +genitive +genitive +121274 nominative +nominative +nominative +nominative +121280 accusative +121283 nominative +nominative +accusative +accusative +121289 nominative +nominative +nominative +nominative +nominative +genitive +genitive +nominative +nominative +121300 dative +dative +genitive +nominative +nominative +accusative +accusative +accusative +121309 nominative +accusative +accusative +genitive +genitive +121315 nominative +121317 genitive +genitive +121320 nominative +nominative +121323 genitive +121325 genitive +121327 genitive +121329 genitive +121333 dative +dative +dative +dative +121338 accusative +accusative +121342 nominative +genitive +nominative +nominative +nominative +genitive +genitive +121350 dative +121352 accusative +accusative +121355 accusative +121358 dative +121360 accusative +accusative +accusative +121364 accusative +genitive +accusative +121368 genitive +genitive +genitive +121372 nominative +121374 nominative +vocative +genitive +121379 nominative +121383 nominative +nominative +121386 genitive +genitive +genitive +121390 accusative +accusative +121393 accusative +accusative +vocative +genitive +121399 nominative +accusative +121403 nominative +accusative +121406 accusative +121408 accusative +accusative +nominative +nominative +121413 nominative +121415 dative +121418 genitive +genitive +genitive +accusative +accusative +genitive +121425 dative +genitive +121430 accusative +accusative +121433 accusative +121435 dative +dative +genitive +121443 genitive +genitive +121447 nominative +nominative +nominative +121451 nominative +121453 nominative +nominative +nominative +121458 nominative +121460 nominative +121462 nominative +121464 nominative +nominative +nominative +121468 nominative +121470 nominative +accusative +121473 nominative +121476 nominative +nominative +nominative +nominative +genitive +121482 genitive +genitive +nominative +nominative +121487 nominative +genitive +121490 dative +121492 dative +dative +accusative +121496 nominative +121499 nominative +121501 dative +121505 genitive +genitive +genitive +genitive +genitive +121511 dative +dative +genitive +121531 accusative +121534 accusative +121544 dative +dative +genitive +121548 vocative +121552 nominative +nominative +genitive +genitive +nominative +genitive +genitive +121562 nominative +121565 nominative +genitive +genitive +nominative +genitive +genitive +121576 nominative +nominative +121580 accusative +121582 nominative +nominative +accusative +121587 dative +121589 accusative +accusative +121594 nominative +nominative +dative +121599 dative +121601 accusative +121604 dative +dative +121608 dative +dative +121613 genitive +121615 dative +dative +121619 dative +121621 accusative +vocative +121625 accusative +vocative +121632 nominative +nominative +genitive +121636 accusative +121639 nominative +nominative +121642 accusative +121645 genitive +121648 accusative +121651 genitive +vocative +nominative +nominative +genitive +121657 nominative +accusative +accusative +genitive +121662 genitive +121665 accusative +121668 accusative +121672 nominative +genitive +121675 nominative +nominative +121678 nominative +121680 nominative +nominative +nominative +121687 nominative +nominative +121690 nominative +nominative +accusative +121696 nominative +nominative +121703 accusative +accusative +accusative +121709 accusative +121714 nominative +121717 genitive +121719 nominative +nominative +nominative +genitive +121725 nominative +nominative +121728 accusative +nominative +121732 nominative +121734 genitive +121736 accusative +121738 nominative +nominative +121745 accusative +121747 accusative +121752 dative +dative +genitive +nominative +nominative +nominative +nominative +121761 dative +accusative +121766 dative +nominative +dative +121772 nominative +nominative +121775 nominative +121777 dative +dative +genitive +dative +dative +nominative +nominative +genitive +121787 nominative +nominative +genitive +nominative +121792 nominative +nominative +genitive +121796 nominative +nominative +121800 nominative +nominative +genitive +121804 accusative +dative +121809 accusative +accusative +genitive +121813 accusative +121816 dative +dative +121819 nominative +nominative +genitive +genitive +genitive +genitive +accusative +accusative +genitive +nominative +nominative +121831 genitive +121834 nominative +nominative +genitive +genitive +121839 accusative +accusative +genitive +genitive +121846 genitive +genitive +121851 accusative +accusative +genitive +121855 dative +genitive +121859 accusative +accusative +121863 dative +121865 vocative +121868 genitive +genitive +genitive +genitive +121873 nominative +nominative +121876 accusative +accusative +accusative +genitive +genitive +nominative +121883 dative +121886 accusative +121888 accusative +121891 nominative +121893 accusative +accusative +genitive +121897 nominative +nominative +genitive +genitive +121902 vocative +121906 genitive +121911 nominative +nominative +121914 genitive +genitive +121917 vocative +121919 accusative +genitive +genitive +121923 genitive +genitive +accusative +accusative +nominative +121930 dative +dative +genitive +121935 accusative +accusative +accusative +accusative +genitive +121942 accusative +accusative +genitive +121948 nominative +nominative +nominative +121952 nominative +121954 vocative +genitive +121957 genitive +121961 accusative +accusative +121964 accusative +accusative +121967 accusative +accusative +accusative +121972 genitive +nominative +121977 nominative +121983 accusative +121986 nominative +121988 dative +121991 nominative +121994 nominative +121996 dative +121998 accusative +accusative +genitive +genitive +122005 accusative +nominative +dative +122009 dative +dative +genitive +genitive +122014 nominative +nominative +genitive +genitive +122019 accusative +accusative +122023 accusative +nominative +nominative +122027 accusative +122029 nominative +122031 dative +122034 dative +accusative +accusative +122040 genitive +122043 accusative +122045 nominative +genitive +nominative +nominative +122050 nominative +nominative +dative +122054 dative +122056 genitive +122063 genitive +genitive +accusative +accusative +122068 accusative +122074 nominative +nominative +accusative +122079 nominative +nominative +122082 accusative +accusative +genitive +vocative +genitive +122088 nominative +122090 dative +122093 genitive +genitive +122097 nominative +accusative +122101 nominative +nominative +accusative +122105 genitive +genitive +genitive +122109 accusative +genitive +122112 genitive +122115 accusative +genitive +nominative +nominative +genitive +genitive +dative +dative +genitive +genitive +genitive +genitive +genitive +122129 genitive +122131 accusative +genitive +genitive +122135 dative +genitive +122138 accusative +122140 accusative +genitive +genitive +genitive +nominative +122146 nominative +dative +122149 nominative +nominative +nominative +122153 nominative +genitive +genitive +genitive +genitive +genitive +nominative +122161 accusative +accusative +genitive +accusative +nominative +accusative +122168 accusative +accusative +122171 genitive +genitive +genitive +122175 genitive +122177 accusative +accusative +122180 accusative +122182 accusative +accusative +122185 dative +122187 accusative +accusative +122190 dative +genitive +accusative +122194 genitive +122196 accusative +accusative +122200 dative +dative +122203 dative +122206 accusative +122208 nominative +nominative +122211 dative +dative +122214 nominative +nominative +genitive +genitive +genitive +nominative +genitive +genitive +genitive +122225 genitive +genitive +122229 accusative +122231 accusative +122233 accusative +122235 dative +genitive +genitive +accusative +122240 nominative +122244 accusative +122247 nominative +nominative +122250 dative +dative +122253 dative +nominative +accusative +accusative +genitive +genitive +accusative +genitive +122262 genitive +genitive +122267 nominative +nominative +122270 genitive +122272 accusative +genitive +nominative +nominative +122277 accusative +122279 accusative +accusative +122282 nominative +122284 dative +nominative +genitive +nominative +accusative +122290 accusative +accusative +122293 accusative +122295 accusative +accusative +dative +122301 dative +122303 dative +122305 accusative +accusative +122309 dative +122311 genitive +genitive +accusative +122315 dative +dative +dative +122319 genitive +122321 accusative +122324 nominative +122326 nominative +accusative +accusative +genitive +genitive +genitive +nominative +122336 accusative +accusative +dative +accusative +122341 dative +genitive +genitive +122345 nominative +genitive +122348 nominative +dative +accusative +122352 dative +dative +genitive +dative +122358 accusative +accusative +accusative +accusative +122363 nominative +nominative +122366 dative +dative +122371 nominative +122374 nominative +nominative +122378 accusative +122380 accusative +122382 accusative +122384 accusative +genitive +accusative +122388 dative +accusative +genitive +genitive +genitive +accusative +122395 nominative +122398 dative +dative +122401 dative +122404 genitive +genitive +genitive +genitive +genitive +122410 dative +dative +122413 genitive +genitive +122416 genitive +genitive +122419 genitive +122421 genitive +genitive +122424 genitive +122426 genitive +genitive +genitive +122430 accusative +accusative +122433 genitive +accusative +122436 accusative +accusative +accusative +accusative +122441 genitive +122443 accusative +dative +accusative +122447 accusative +accusative +genitive +122451 accusative +122454 accusative +accusative +accusative +genitive +nominative +122460 dative +dative +genitive +genitive +122465 accusative +accusative +122468 genitive +accusative +122472 nominative +122475 genitive +genitive +122478 genitive +122480 genitive +genitive +genitive +122484 genitive +122486 nominative +nominative +122489 nominative +122491 nominative +nominative +genitive +122495 nominative +genitive +122498 nominative +nominative +122501 nominative +nominative +122505 nominative +nominative +genitive +122510 accusative +accusative +122513 nominative +122515 nominative +nominative +nominative +nominative +122520 accusative +122522 nominative +accusative +accusative +122526 accusative +accusative +122529 accusative +122531 accusative +122533 accusative +accusative +122536 nominative +nominative +accusative +accusative +accusative +accusative +122545 dative +122548 accusative +122552 nominative +nominative +nominative +nominative +122557 accusative +accusative +accusative +122562 genitive +accusative +122566 dative +accusative +accusative +122570 nominative +122572 nominative +nominative +122575 nominative +nominative +122578 accusative +accusative +122581 accusative +accusative +accusative +dative +122586 genitive +genitive +122591 dative +122595 dative +accusative +accusative +accusative +accusative +122601 nominative +nominative +122604 dative +122609 nominative +nominative +dative +dative +dative +122615 dative +nominative +accusative +122619 nominative +nominative +nominative +122624 accusative +genitive +122627 nominative +genitive +122630 nominative +genitive +nominative +122634 dative +dative +nominative +122638 accusative +122642 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +122651 accusative +122654 accusative +accusative +genitive +122658 genitive +accusative +genitive +122662 accusative +accusative +genitive +accusative +nominative +122669 nominative +122672 nominative +genitive +nominative +122676 nominative +122679 nominative +vocative +122683 accusative +122685 accusative +122687 genitive +genitive +genitive +nominative +122693 genitive +genitive +accusative +accusative +genitive +122699 dative +dative +nominative +accusative +122705 dative +122707 genitive +122709 genitive +122711 genitive +genitive +genitive +nominative +122716 accusative +accusative +122719 dative +genitive +122723 accusative +accusative +dative +dative +dative +122729 dative +122731 dative +122733 dative +122736 genitive +dative +122739 accusative +genitive +122742 accusative +genitive +122747 nominative +nominative +genitive +genitive +accusative +122753 accusative +genitive +genitive +genitive +accusative +122759 nominative +122763 nominative +accusative +genitive +genitive +accusative +accusative +122771 genitive +nominative +accusative +122775 accusative +accusative +122778 accusative +accusative +122781 accusative +accusative +122784 nominative +nominative +nominative +122788 dative +dative +dative +dative +122793 accusative +dative +dative +122797 dative +122800 dative +dative +122803 nominative +nominative +122807 accusative +genitive +122810 nominative +accusative +nominative +122815 nominative +nominative +122818 nominative +122820 nominative +122824 nominative +122826 nominative +122828 nominative +nominative +122831 dative +122834 accusative +122838 nominative +122841 genitive +dative +nominative +accusative +122847 dative +dative +genitive +nominative +accusative +122856 nominative +122858 dative +dative +genitive +nominative +nominative +122865 nominative +122870 dative +dative +122873 nominative +nominative +accusative +accusative +genitive +122880 dative +dative +genitive +122884 accusative +accusative +122887 dative +dative +nominative +dative +dative +122893 genitive +dative +dative +122900 nominative +nominative +122906 accusative +accusative +122909 accusative +genitive +genitive +genitive +nominative +122915 nominative +dative +dative +dative +122922 nominative +122924 dative +dative +122927 genitive +genitive +genitive +genitive +122932 genitive +122934 nominative +accusative +122937 dative +accusative +accusative +genitive +genitive +122944 nominative +122946 genitive +genitive +122949 genitive +genitive +122952 genitive +genitive +nominative +122956 nominative +nominative +genitive +genitive +nominative +122962 dative +dative +genitive +genitive +122967 genitive +genitive +nominative +122972 genitive +genitive +nominative +122979 nominative +nominative +nominative +nominative +nominative +122985 accusative +122987 accusative +nominative +dative +dative +dative +122993 nominative +122995 dative +dative +accusative +accusative +nominative +genitive +accusative +123003 nominative +123006 nominative +accusative +accusative +nominative +nominative +123012 nominative +123014 accusative +123016 dative +dative +dative +dative +nominative +accusative +123024 dative +genitive +genitive +123028 accusative +123031 accusative +accusative +genitive +123035 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +123044 nominative +accusative +123047 genitive +123049 accusative +123051 genitive +123053 accusative +nominative +123057 accusative +123060 accusative +123063 nominative +nominative +accusative +123069 accusative +accusative +123072 accusative +accusative +123075 genitive +123077 accusative +genitive +123081 accusative +123085 genitive +123088 accusative +123090 accusative +123093 accusative +123095 nominative +genitive +123098 accusative +123100 nominative +genitive +123103 accusative +genitive +123106 nominative +genitive +123109 accusative +accusative +123112 nominative +nominative +nominative +accusative +123117 genitive +genitive +nominative +123126 accusative +nominative +123129 accusative +accusative +genitive +123137 accusative +accusative +accusative +123142 dative +dative +genitive +nominative +123148 accusative +dative +dative +dative +accusative +accusative +123155 genitive +123157 dative +genitive +123161 genitive +123163 genitive +accusative +accusative +nominative +123169 dative +123172 nominative +nominative +genitive +accusative +accusative +123178 dative +accusative +123181 nominative +accusative +123185 nominative +nominative +genitive +genitive +123191 accusative +123194 nominative +123197 genitive +123199 nominative +123201 genitive +123203 accusative +123205 dative +dative +123208 nominative +dative +123211 nominative +dative +123214 dative +nominative +123218 dative +123220 dative +dative +dative +123226 nominative +genitive +genitive +nominative +123231 dative +genitive +genitive +genitive +123236 accusative +nominative +nominative +123241 nominative +123244 genitive +nominative +123247 accusative +123250 nominative +nominative +123253 genitive +nominative +genitive +123257 genitive +genitive +nominative +123261 accusative +123263 genitive +genitive +genitive +nominative +123269 dative +genitive +nominative +123273 accusative +genitive +dative +genitive +123278 genitive +123280 genitive +123282 genitive +genitive +dative +123286 nominative +accusative +accusative +accusative +123292 accusative +123294 genitive +dative +123297 dative +genitive +accusative +accusative +123302 dative +accusative +123306 nominative +nominative +dative +123310 accusative +123312 nominative +nominative +nominative +nominative +accusative +accusative +genitive +genitive +123321 accusative +123323 dative +dative +dative +dative +dative +123329 dative +dative +123332 dative +123335 genitive +genitive +123338 accusative +accusative +genitive +genitive +accusative +nominative +nominative +123346 accusative +dative +123349 dative +123351 accusative +123353 accusative +123356 accusative +123358 dative +123364 accusative +dative +123369 accusative +dative +123372 genitive +nominative +nominative +123381 accusative +123383 genitive +accusative +123386 accusative +accusative +accusative +nominative +123391 nominative +123393 accusative +genitive +nominative +123397 accusative +123399 genitive +nominative +123403 accusative +123405 accusative +accusative +nominative +123409 nominative +nominative +genitive +genitive +genitive +123415 nominative +123418 accusative +genitive +123421 nominative +123425 genitive +genitive +123428 nominative +nominative +123432 dative +123434 nominative +nominative +123437 genitive +genitive +dative +123441 nominative +nominative +123444 nominative +nominative +123447 accusative +accusative +genitive +genitive +123452 vocative +123455 dative +123457 dative +dative +123460 accusative +dative +dative +123464 genitive +dative +genitive +123470 dative +genitive +genitive +dative +123478 dative +dative +genitive +genitive +genitive +123484 nominative +123488 dative +genitive +nominative +123492 nominative +genitive +genitive +123496 nominative +genitive +genitive +nominative +123501 accusative +123505 nominative +genitive +123509 nominative +123511 nominative +123513 nominative +123516 nominative +123520 nominative +123525 accusative +accusative +123528 dative +dative +dative +123532 nominative +nominative +genitive +123536 accusative +accusative +123539 genitive +genitive +genitive +genitive +123545 accusative +123547 genitive +nominative +nominative +nominative +genitive +genitive +dative +genitive +genitive +dative +123559 nominative +nominative +123563 nominative +nominative +123566 nominative +123571 nominative +nominative +123574 accusative +accusative +genitive +genitive +dative +dative +123581 accusative +accusative +genitive +123585 dative +123587 accusative +123589 dative +123591 nominative +nominative +123594 nominative +genitive +genitive +genitive +genitive +123600 nominative +genitive +genitive +123604 genitive +nominative +123607 accusative +123609 dative +accusative +genitive +genitive +123618 accusative +123625 nominative +genitive +genitive +123629 nominative +nominative +genitive +genitive +123634 genitive +genitive +genitive +123638 accusative +accusative +genitive +genitive +accusative +nominative +123646 dative +123648 nominative +dative +accusative +accusative +123654 nominative +nominative +dative +123659 dative +123661 accusative +123665 accusative +accusative +accusative +genitive +genitive +123671 accusative +123674 dative +accusative +accusative +accusative +genitive +nominative +123681 accusative +123683 dative +123686 genitive +123689 nominative +nominative +genitive +nominative +123694 nominative +nominative +123697 nominative +accusative +123700 dative +123702 nominative +dative +dative +nominative +accusative +accusative +genitive +genitive +dative +123712 dative +dative +genitive +dative +123718 nominative +nominative +genitive +genitive +nominative +nominative +accusative +123726 accusative +accusative +genitive +accusative +123731 dative +accusative +accusative +nominative +123739 dative +nominative +nominative +123743 accusative +accusative +genitive +genitive +123748 dative +123750 genitive +genitive +genitive +genitive +123757 genitive +123759 nominative +123761 nominative +accusative +123764 accusative +accusative +genitive +genitive +123769 accusative +123772 accusative +nominative +123775 dative +nominative +123778 nominative +nominative +nominative +genitive +123783 accusative +123785 dative +genitive +nominative +dative +dative +dative +123792 dative +nominative +nominative +nominative +123797 nominative +genitive +genitive +dative +dative +dative +accusative +accusative +123806 dative +genitive +genitive +genitive +123811 genitive +genitive +genitive +nominative +123816 nominative +dative +123820 dative +genitive +genitive +123824 genitive +genitive +genitive +genitive +123829 dative +genitive +genitive +genitive +genitive +accusative +accusative +accusative +123838 accusative +123840 accusative +genitive +123843 genitive +genitive +genitive +genitive +accusative +dative +dative +123851 dative +123853 genitive +nominative +nominative +123857 nominative +nominative +dative +123863 genitive +123865 nominative +genitive +genitive +nominative +genitive +123871 dative +dative +123874 dative +genitive +123878 accusative +accusative +accusative +accusative +nominative +123885 dative +dative +genitive +accusative +accusative +123892 dative +dative +accusative +accusative +123898 dative +dative +accusative +accusative +123904 dative +dative +accusative +accusative +123910 dative +dative +accusative +accusative +123916 dative +dative +accusative +accusative +123922 dative +dative +accusative +accusative +123927 nominative +dative +nominative +123931 nominative +123933 accusative +123935 accusative +123938 accusative +genitive +genitive +genitive +genitive +genitive +accusative +123946 dative +123949 accusative +nominative +123952 nominative +nominative +accusative +genitive +genitive +genitive +123959 genitive +genitive +123962 vocative +123965 accusative +genitive +accusative +accusative +123970 accusative +123973 accusative +nominative +123983 dative +nominative +nominative +123987 accusative +accusative +accusative +genitive +genitive +genitive +123994 genitive +genitive +genitive +124000 accusative +124003 genitive +124005 accusative +124007 accusative +124009 dative +dative +dative +124013 accusative +124016 accusative +124019 dative +dative +dative +124023 accusative +124025 dative +nominative +124028 nominative +124030 nominative +nominative +genitive +genitive +genitive +124037 nominative +nominative +genitive +nominative +nominative +124043 dative +124049 accusative +124051 accusative +accusative +accusative +accusative +genitive +accusative +124060 dative +dative +nominative +124064 dative +accusative +genitive +genitive +genitive +genitive +genitive +accusative +124073 accusative +124075 nominative +nominative +genitive +genitive +genitive +124081 nominative +124083 genitive +genitive +accusative +124087 accusative +genitive +genitive +genitive +dative +124093 genitive +genitive +genitive +nominative +nominative +genitive +nominative +nominative +genitive +nominative +124105 accusative +nominative +124109 accusative +accusative +accusative +nominative +124115 genitive +accusative +124118 dative +nominative +124121 dative +dative +dative +124126 accusative +accusative +accusative +accusative +124132 dative +nominative +124135 dative +dative +124138 dative +dative +124141 genitive +nominative +124145 nominative +124148 dative +dative +genitive +accusative +accusative +nominative +124155 nominative +nominative +genitive +genitive +genitive +124164 dative +genitive +124167 nominative +124171 genitive +genitive +nominative +124176 genitive +nominative +124181 nominative +124183 dative +dative +124188 dative +124190 nominative +nominative +124193 accusative +genitive +124196 accusative +accusative +accusative +accusative +nominative +nominative +dative +accusative +accusative +124206 nominative +124208 genitive +dative +dative +124212 accusative +nominative +nominative +genitive +genitive +124220 dative +dative +dative +accusative +124225 dative +nominative +nominative +124232 nominative +nominative +genitive +124239 nominative +nominative +genitive +genitive +124246 dative +genitive +nominative +124251 accusative +accusative +124254 genitive +genitive +124259 accusative +accusative +genitive +accusative +124264 accusative +dative +genitive +nominative +124269 accusative +genitive +124272 genitive +nominative +dative +124276 accusative +genitive +124279 nominative +124281 accusative +accusative +accusative +124285 genitive +genitive +genitive +124289 dative +genitive +124293 dative +124295 dative +nominative +nominative +nominative +124300 dative +accusative +124303 genitive +accusative +accusative +dative +dative +124310 nominative +accusative +124313 genitive +124316 accusative +124318 accusative +genitive +accusative +124324 accusative +124326 genitive +124328 dative +genitive +accusative +124332 genitive +accusative +nominative +nominative +accusative +nominative +124341 nominative +dative +124344 dative +nominative +nominative +124350 genitive +124352 dative +accusative +accusative +124356 nominative +124358 nominative +nominative +nominative +nominative +124363 accusative +124365 accusative +124367 dative +124369 nominative +124371 dative +dative +genitive +124376 nominative +accusative +genitive +accusative +nominative +accusative +124383 dative +accusative +nominative +124387 nominative +nominative +124390 dative +dative +genitive +nominative +dative +nominative +accusative +accusative +genitive +124400 accusative +genitive +nominative +accusative +accusative +accusative +accusative +genitive +nominative +genitive +nominative +nominative +accusative +accusative +124415 nominative +dative +dative +genitive +genitive +genitive +genitive +nominative +accusative +genitive +124427 accusative +genitive +genitive +124431 nominative +nominative +124434 genitive +dative +nominative +124438 accusative +genitive +genitive +accusative +nominative +124444 nominative +nominative +124447 nominative +124449 genitive +nominative +dative +nominative +nominative +genitive +genitive +124458 accusative +genitive +nominative +124463 dative +genitive +dative +accusative +124468 accusative +accusative +124471 dative +accusative +accusative +dative +nominative +nominative +nominative +nominative +genitive +genitive +124482 dative +nominative +124485 dative +124489 nominative +accusative +accusative +genitive +genitive +124495 dative +genitive +genitive +124499 genitive +genitive +genitive +124503 dative +124505 nominative +124508 dative +nominative +nominative +nominative +genitive +genitive +124515 nominative +124517 dative +124520 accusative +accusative +genitive +genitive +124525 dative +124528 genitive +genitive +dative +genitive +genitive +124534 dative +nominative +genitive +genitive +genitive +nominative +nominative +124542 accusative +accusative +accusative +124546 nominative +nominative +124549 accusative +genitive +vocative +124553 accusative +accusative +accusative +dative +124559 dative +124562 dative +genitive +accusative +accusative +accusative +124568 genitive +genitive +124571 genitive +genitive +genitive +genitive +124576 genitive +genitive +genitive +genitive +genitive +genitive +genitive +124584 genitive +accusative +accusative +nominative +124591 genitive +genitive +genitive +124595 dative +nominative +124598 accusative +accusative +accusative +genitive +nominative +124604 nominative +124607 nominative +nominative +genitive +genitive +genitive +124614 genitive +nominative +nominative +124618 nominative +124622 genitive +genitive +124626 accusative +nominative +accusative +124630 nominative +124634 nominative +124636 genitive +124639 genitive +nominative +dative +genitive +genitive +dative +124646 genitive +nominative +124649 nominative +dative +nominative +124654 nominative +124656 nominative +124658 nominative +nominative +dative +dative +dative +nominative +124665 dative +nominative +124668 accusative +genitive +124671 genitive +genitive +genitive +genitive +124676 vocative +nominative +nominative +124681 accusative +124683 nominative +nominative +124686 dative +124688 nominative +nominative +124691 nominative +nominative +124694 nominative +nominative +124698 nominative +genitive +genitive +124702 nominative +accusative +124708 accusative +nominative +124711 accusative +124714 accusative +124716 accusative +124720 nominative +genitive +124723 nominative +124725 dative +nominative +nominative +124731 nominative +nominative +124735 nominative +124737 nominative +124739 dative +nominative +124743 genitive +genitive +genitive +124747 accusative +124749 accusative +124751 dative +dative +124754 dative +accusative +124757 accusative +accusative +accusative +genitive +genitive +genitive +genitive +124765 accusative +nominative +nominative +124770 nominative +nominative +124774 accusative +accusative +124777 accusative +accusative +124780 accusative +accusative +genitive +124785 dative +nominative +124789 vocative +accusative +nominative +124793 nominative +124795 nominative +dative +124799 dative +124801 accusative +genitive +genitive +genitive +accusative +accusative +124810 nominative +nominative +genitive +nominative +nominative +124816 accusative +accusative +dative +accusative +124821 dative +124825 dative +dative +nominative +124829 dative +124831 genitive +124833 dative +124835 nominative +nominative +accusative +nominative +nominative +124841 nominative +124845 accusative +accusative +accusative +124849 accusative +accusative +genitive +accusative +124854 vocative +nominative +nominative +124860 dative +genitive +genitive +dative +nominative +124866 genitive +genitive +genitive +124872 dative +124874 dative +genitive +genitive +genitive +124879 genitive +genitive +genitive +dative +nominative +nominative +124889 accusative +genitive +nominative +124894 genitive +accusative +124897 accusative +124899 dative +dative +genitive +accusative +124905 nominative +nominative +genitive +124910 genitive +genitive +genitive +genitive +124915 nominative +nominative +124924 dative +accusative +accusative +accusative +accusative +nominative +124932 accusative +accusative +124936 dative +accusative +124943 dative +124946 nominative +accusative +124950 genitive +124953 nominative +nominative +nominative +nominative +124958 genitive +genitive +124962 genitive +genitive +genitive +genitive +genitive +124968 accusative +124970 nominative +124972 nominative +nominative +genitive +124976 nominative +124979 nominative +nominative +nominative +accusative +124985 genitive +124988 dative +124990 nominative +nominative +nominative +124996 dative +124999 nominative +nominative +125004 accusative +125007 genitive +125010 dative +dative +125017 accusative +accusative +125022 dative +dative +125026 nominative +125029 dative +dative +accusative +125034 genitive +125036 nominative +nominative +genitive +genitive +genitive +genitive +125043 accusative +125045 genitive +genitive +125050 accusative +125053 accusative +125056 nominative +nominative +125061 dative +125064 accusative +accusative +genitive +125068 nominative +125070 nominative +125073 dative +accusative +accusative +125078 accusative +125080 genitive +genitive +125087 accusative +125089 accusative +125091 nominative +nominative +genitive +125097 dative +vocative +genitive +accusative +125102 dative +125108 nominative +125112 accusative +accusative +accusative +accusative +accusative +accusative +125119 nominative +nominative +125123 genitive +genitive +genitive +125129 genitive +genitive +accusative +125135 genitive +genitive +genitive +125140 dative +125144 accusative +125146 accusative +accusative +genitive +125150 nominative +nominative +125154 accusative +125156 accusative +accusative +genitive +125160 nominative +nominative +125165 dative +nominative +nominative +125172 nominative +125174 genitive +accusative +accusative +125179 dative +nominative +nominative +genitive +genitive +125186 dative +125190 dative +125192 nominative +nominative +125195 dative +125198 nominative +125202 nominative +125205 vocative +125207 dative +125209 accusative +accusative +125212 accusative +accusative +accusative +125217 genitive +nominative +nominative +nominative +nominative +125223 nominative +nominative +accusative +125228 accusative +accusative +125231 dative +nominative +125234 nominative +125236 dative +125239 dative +125241 nominative +nominative +125245 nominative +nominative +nominative +nominative +125251 nominative +nominative +125254 dative +dative +125258 accusative +accusative +genitive +nominative +125263 dative +dative +125268 nominative +nominative +accusative +accusative +genitive +125274 dative +dative +125278 nominative +125280 dative +125284 nominative +nominative +accusative +accusative +genitive +125290 dative +dative +125295 dative +dative +125304 nominative +nominative +125307 accusative +accusative +genitive +vocative +125312 dative +125315 dative +nominative +nominative +125319 accusative +accusative +genitive +vocative +125324 dative +125327 accusative +125329 genitive +vocative +125332 dative +125335 accusative +accusative +vocative +125339 dative +125342 accusative +accusative +vocative +125346 dative +125349 accusative +125351 genitive +vocative +125354 dative +125356 nominative +125359 nominative +nominative +genitive +genitive +125364 dative +125368 accusative +accusative +125372 accusative +accusative +125375 accusative +125377 dative +dative +125380 nominative +125382 accusative +accusative +125386 nominative +nominative +genitive +genitive +125391 dative +125394 nominative +nominative +125397 dative +dative +nominative +nominative +genitive +genitive +125404 nominative +nominative +genitive +genitive +125409 nominative +nominative +genitive +genitive +125415 genitive +genitive +125419 genitive +genitive +125424 nominative +nominative +125427 nominative +nominative +genitive +125431 nominative +nominative +accusative +accusative +genitive +genitive +125439 accusative +accusative +vocative +nominative +nominative +125449 nominative +125453 nominative +nominative +125459 nominative +nominative +125463 genitive +125469 genitive +125473 genitive +125478 genitive +125485 nominative +125487 genitive +125489 nominative +accusative +125493 genitive +genitive +125497 nominative +125499 dative +125504 accusative +accusative +125509 accusative +125512 nominative +nominative +125515 genitive +genitive +125519 nominative +125521 nominative +nominative +125525 nominative +nominative +125528 nominative +125531 nominative +nominative +nominative +125535 nominative +nominative +nominative +nominative +accusative +accusative +125542 accusative +accusative +nominative +nominative +nominative +accusative +accusative +125550 accusative +accusative +125553 nominative +nominative +accusative +accusative +125558 accusative +accusative +125561 nominative +accusative +125565 genitive +125567 dative +125571 dative +125573 accusative +125575 genitive +125578 nominative +125580 dative +dative +125584 dative +dative +125588 nominative +125590 nominative +nominative +accusative +nominative +125595 dative +accusative +accusative +accusative +accusative +accusative +125602 dative +125604 genitive +genitive +accusative +125608 nominative +nominative +nominative +accusative +125614 genitive +125617 dative +125620 accusative +125623 nominative +125625 accusative +125628 nominative +genitive +nominative +125632 accusative +125634 genitive +125636 nominative +125641 nominative +125645 accusative +125648 dative +125650 vocative +125654 dative +125659 accusative +125664 genitive +125666 dative +dative +genitive +125672 nominative +125677 nominative +nominative +nominative +accusative +accusative +125683 genitive +125686 accusative +accusative +125689 dative +nominative +nominative +125693 accusative +genitive +125699 accusative +nominative +nominative +125704 accusative +125708 accusative +vocative +125711 nominative +genitive +125717 nominative +125723 nominative +dative +125728 accusative +125732 nominative +nominative +nominative +accusative +accusative +accusative +125739 dative +125741 accusative +125743 nominative +nominative +125746 nominative +nominative +nominative +accusative +accusative +125752 accusative +accusative +125756 nominative +nominative +125759 nominative +nominative +125764 nominative +125767 accusative +accusative +125771 nominative +125773 dative +125776 nominative +nominative +125779 dative +nominative +125783 nominative +nominative +nominative +125788 accusative +125791 accusative +vocative +nominative +125795 accusative +nominative +nominative +accusative +accusative +nominative +125803 nominative +nominative +125806 nominative +nominative +accusative +accusative +125811 genitive +genitive +125816 genitive +nominative +nominative +125821 accusative +125823 nominative +nominative +genitive +genitive +125829 accusative +accusative +genitive +genitive +nominative +nominative +nominative +125837 genitive +genitive +accusative +125843 nominative +genitive +125846 dative +125854 genitive +genitive +125858 dative +nominative +125861 nominative +nominative +genitive +genitive +125866 nominative +nominative +genitive +genitive +nominative +nominative +125873 nominative +accusative +125878 genitive +genitive +125881 nominative +125883 nominative +accusative +accusative +genitive +125888 nominative +125890 nominative +nominative +accusative +125895 genitive +125898 accusative +125901 nominative +125903 genitive +genitive +125908 accusative +accusative +genitive +125913 genitive +125915 accusative +125917 nominative +nominative +genitive +nominative +125923 nominative +genitive +genitive +genitive +nominative +vocative +125933 accusative +nominative +nominative +nominative +125941 genitive +genitive +125944 accusative +accusative +125948 accusative +accusative +nominative +125952 nominative +125955 dative +dative +nominative +nominative +nominative +accusative +accusative +genitive +nominative +125968 nominative +nominative +125972 accusative +accusative +125975 dative +accusative +125978 dative +125980 accusative +accusative +125983 nominative +125985 genitive +accusative +accusative +genitive +125991 nominative +125994 genitive +genitive +accusative +accusative +126001 nominative +126003 accusative +accusative +genitive +genitive +126009 accusative +accusative +genitive +accusative +accusative +126016 accusative +accusative +genitive +126020 genitive +126022 nominative +nominative +genitive +genitive +126028 dative +vocative +126032 dative +126034 dative +dative +126038 dative +126040 dative +126042 dative +126046 genitive +genitive +126051 genitive +126053 accusative +accusative +genitive +126059 genitive +nominative +nominative +126063 nominative +126065 nominative +nominative +genitive +genitive +genitive +126072 accusative +vocative +126075 nominative +nominative +126079 accusative +126082 accusative +accusative +126086 accusative +126090 genitive +126092 accusative +accusative +genitive +126097 accusative +accusative +126100 genitive +126103 nominative +126105 nominative +nominative +genitive +126110 dative +dative +genitive +genitive +genitive +genitive +genitive +126119 accusative +126122 accusative +dative +126125 nominative +nominative +accusative +accusative +genitive +126131 dative +126134 nominative +126136 dative +126139 dative +126144 dative +126146 genitive +genitive +genitive +dative +126151 vocative +126153 dative +dative +126158 accusative +accusative +126162 genitive +genitive +126166 nominative +nominative +126170 accusative +accusative +126173 dative +126175 accusative +accusative +genitive +genitive +nominative +nominative +nominative +126183 accusative +accusative +126186 dative +accusative +126189 genitive +genitive +126193 nominative +nominative +nominative +126198 accusative +accusative +126201 genitive +genitive +126206 nominative +126208 nominative +genitive +genitive +nominative +126218 dative +dative +126222 vocative +nominative +126225 genitive +genitive +126230 accusative +126232 nominative +126234 nominative +126236 dative +126238 nominative +126240 dative +dative +nominative +126244 genitive +genitive +126248 accusative +126250 genitive +genitive +126254 nominative +nominative +genitive +126258 nominative +126260 genitive +genitive +126263 nominative +nominative +accusative +accusative +126268 genitive +nominative +126273 genitive +genitive +126277 genitive +126279 genitive +126281 accusative +accusative +genitive +genitive +126286 accusative +accusative +genitive +genitive +vocative +126292 accusative +126294 nominative +nominative +126297 genitive +genitive +126301 nominative +nominative +nominative +126305 genitive +genitive +126310 accusative +accusative +nominative +126314 nominative +126317 accusative +accusative +126320 nominative +nominative +nominative +126325 dative +126327 nominative +nominative +genitive +genitive +126332 dative +126334 accusative +accusative +genitive +accusative +accusative +126340 nominative +nominative +126343 accusative +accusative +126348 genitive +126350 dative +126352 nominative +nominative +126356 nominative +126358 accusative +accusative +126362 nominative +126364 accusative +126367 accusative +accusative +genitive +accusative +126372 genitive +genitive +genitive +vocative +126378 nominative +nominative +126381 accusative +126383 nominative +126385 accusative +126387 accusative +nominative +126393 accusative +nominative +nominative +126397 dative +126400 nominative +nominative +genitive +126404 dative +nominative +126408 dative +126412 dative +126415 nominative +126417 dative +126420 genitive +genitive +genitive +126424 dative +126426 nominative +126431 nominative +nominative +126434 accusative +accusative +accusative +genitive +genitive +126440 nominative +126443 nominative +126445 nominative +nominative +genitive +genitive +nominative +nominative +126452 dative +126455 nominative +126457 dative +dative +126460 nominative +126464 accusative +accusative +accusative +126468 nominative +nominative +126471 dative +nominative +nominative +nominative +126477 nominative +nominative +126480 dative +dative +126483 dative +dative +126487 nominative +nominative +126490 dative +126493 dative +126495 nominative +nominative +126498 genitive +126500 accusative +126503 dative +dative +genitive +genitive +126509 nominative +126512 nominative +126515 dative +dative +dative +nominative +126522 dative +dative +126525 nominative +nominative +nominative +126530 accusative +accusative +126533 nominative +nominative +accusative +126538 nominative +nominative +126543 dative +dative +nominative +126548 nominative +nominative +126551 accusative +126553 nominative +126557 accusative +accusative +126560 accusative +accusative +genitive +126564 nominative +126567 nominative +126569 nominative +accusative +accusative +genitive +accusative +126577 accusative +accusative +accusative +126584 accusative +accusative +accusative +126589 genitive +126591 nominative +nominative +accusative +accusative +126597 accusative +accusative +genitive +nominative +nominative +nominative +126604 nominative +126606 nominative +nominative +126609 genitive +genitive +126613 nominative +nominative +nominative +accusative +accusative +126619 accusative +accusative +126622 genitive +126624 dative +126628 accusative +accusative +genitive +genitive +126633 accusative +accusative +126637 accusative +accusative +genitive +126642 nominative +126644 nominative +nominative +genitive +genitive +126649 accusative +accusative +genitive +126654 nominative +nominative +genitive +nominative +126661 nominative +nominative +nominative +126665 genitive +genitive +126668 accusative +accusative +126671 nominative +126673 nominative +nominative +nominative +nominative +accusative +accusative +nominative +nominative +genitive +nominative +126684 nominative +nominative +accusative +accusative +126690 nominative +nominative +126693 nominative +126695 nominative +nominative +genitive +genitive +nominative +126701 nominative +nominative +126704 genitive +126706 genitive +nominative +nominative +126711 dative +dative +accusative +126716 dative +dative +126720 dative +dative +126723 nominative +nominative +126726 nominative +nominative +126729 nominative +nominative +126732 nominative +nominative +126735 nominative +126737 nominative +nominative +nominative +nominative +126742 nominative +nominative +126745 nominative +nominative +126748 nominative +nominative +126751 accusative +accusative +126755 accusative +accusative +genitive +genitive +126760 nominative +nominative +genitive +genitive +nominative +126767 nominative +126769 nominative +nominative +genitive +genitive +126776 genitive +genitive +genitive +nominative +nominative +126782 accusative +accusative +genitive +genitive +126787 accusative +accusative +126790 dative +nominative +126793 nominative +dative +dative +accusative +126798 accusative +126803 accusative +accusative +accusative +126807 nominative +nominative +126810 genitive +genitive +genitive +126814 nominative +126816 nominative +nominative +126819 accusative +accusative +126822 nominative +nominative +dative +126826 nominative +nominative +nominative +126830 dative +dative +genitive +126834 nominative +nominative +accusative +accusative +126839 accusative +accusative +nominative +126843 nominative +accusative +accusative +genitive +genitive +accusative +accusative +126852 accusative +126854 dative +dative +dative +126858 accusative +accusative +genitive +genitive +genitive +genitive +126867 accusative +accusative +126871 nominative +126873 nominative +nominative +accusative +126878 accusative +126881 accusative +126884 accusative +accusative +genitive +126888 genitive +126894 genitive +126896 accusative +126901 accusative +accusative +accusative +126906 genitive +126908 nominative +126910 accusative +accusative +genitive +accusative +accusative +126917 accusative +126921 accusative +dative +dative +dative +126927 accusative +126929 nominative +126931 accusative +126934 genitive +126938 nominative +nominative +nominative +126944 nominative +126947 accusative +126950 nominative +nominative +nominative +126954 genitive +genitive +126959 nominative +nominative +126962 genitive +genitive +126965 accusative +126967 nominative +nominative +126971 genitive +126975 genitive +genitive +126979 nominative +nominative +nominative +126983 dative +dative +126989 nominative +nominative +genitive +genitive +126996 dative +accusative +127000 accusative +accusative +127005 dative +dative +127008 dative +dative +genitive +dative +dative +nominative +127015 nominative +nominative +nominative +127019 nominative +nominative +vocative +127023 accusative +127025 genitive +genitive +nominative +nominative +dative +dative +127032 dative +dative +genitive +accusative +127038 dative +nominative +127042 nominative +nominative +127046 nominative +nominative +nominative +accusative +accusative +127052 accusative +accusative +accusative +accusative +127057 dative +127060 genitive +127063 accusative +accusative +127067 genitive +nominative +nominative +nominative +127072 genitive +genitive +127076 genitive +genitive +genitive +genitive +genitive +genitive +127083 dative +127085 dative +127091 genitive +genitive +genitive +accusative +127096 dative +127098 accusative +127101 genitive +genitive +127104 vocative +127107 accusative +nominative +dative +127112 accusative +accusative +127115 accusative +127118 genitive +127121 accusative +127123 nominative +127125 nominative +nominative +127130 accusative +accusative +genitive +nominative +nominative +nominative +127140 genitive +127143 dative +127148 accusative +accusative +nominative +nominative +nominative +127154 nominative +accusative +accusative +accusative +127159 dative +nominative +127162 nominative +nominative +127165 nominative +nominative +127168 accusative +127172 accusative +127175 accusative +accusative +127178 nominative +nominative +nominative +127183 nominative +127185 dative +dative +genitive +genitive +accusative +127192 nominative +nominative +127195 dative +dative +nominative +127199 accusative +accusative +127202 accusative +accusative +127206 nominative +127209 accusative +127211 accusative +accusative +accusative +127218 accusative +127220 accusative +127223 dative +127227 nominative +nominative +dative +127232 dative +dative +genitive +dative +dative +nominative +accusative +dative +127244 genitive +127246 genitive +127251 accusative +127253 accusative +127255 accusative +127258 nominative +nominative +genitive +nominative +127264 accusative +nominative +nominative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +dative +dative +dative +accusative +nominative +127281 dative +vocative +127284 genitive +127286 accusative +127292 genitive +nominative +nominative +127298 genitive +genitive +127301 genitive +genitive +dative +dative +127306 nominative +127308 dative +127310 accusative +accusative +genitive +127317 accusative +accusative +accusative +127321 dative +dative +accusative +vocative +accusative +127328 accusative +127331 accusative +accusative +127334 accusative +accusative +nominative +127338 genitive +dative +dative +127342 genitive +accusative +127346 nominative +127348 genitive +genitive +127352 genitive +genitive +127355 accusative +nominative +127358 genitive +genitive +127361 nominative +127364 accusative +accusative +127367 nominative +127369 dative +dative +127372 accusative +dative +dative +127376 nominative +nominative +genitive +nominative +127382 accusative +127384 accusative +127388 genitive +accusative +accusative +accusative +127393 dative +dative +nominative +accusative +127399 nominative +127401 dative +127403 nominative +127405 accusative +accusative +127408 accusative +accusative +127413 genitive +genitive +127416 vocative +127419 accusative +accusative +127422 accusative +accusative +nominative +nominative +127427 genitive +genitive +127430 nominative +nominative +127434 accusative +accusative +dative +127439 genitive +127442 genitive +genitive +genitive +127447 nominative +127452 nominative +nominative +genitive +nominative +127458 accusative +127460 dative +127465 genitive +127467 genitive +dative +127473 accusative +127476 accusative +127478 accusative +127480 nominative +dative +127483 accusative +nominative +nominative +127487 accusative +accusative +127490 accusative +nominative +genitive +genitive +nominative +127496 nominative +genitive +dative +127500 dative +dative +dative +127504 dative +dative +dative +dative +dative +nominative +127511 nominative +127513 nominative +127515 vocative +accusative +accusative +nominative +127520 dative +127522 genitive +genitive +genitive +genitive +accusative +127529 dative +nominative +127532 dative +127534 dative +dative +dative +dative +127540 nominative +nominative +nominative +127544 nominative +127546 accusative +accusative +accusative +nominative +accusative +genitive +genitive +genitive +accusative +nominative +127557 accusative +127559 accusative +accusative +accusative +127563 accusative +genitive +accusative +accusative +nominative +127570 accusative +127572 accusative +127574 accusative +127576 nominative +accusative +127579 genitive +genitive +nominative +accusative +accusative +accusative +127586 accusative +127589 accusative +accusative +127592 accusative +accusative +genitive +accusative +127597 accusative +accusative +accusative +accusative +127602 accusative +genitive +genitive +dative +dative +127608 accusative +127611 nominative +127613 nominative +127615 nominative +127617 accusative +nominative +accusative +accusative +accusative +dative +nominative +127625 nominative +127627 genitive +genitive +127630 accusative +genitive +genitive +accusative +nominative +127638 nominative +nominative +127641 accusative +127644 accusative +127647 accusative +127651 dative +dative +nominative +127656 genitive +genitive +genitive +127660 nominative +nominative +nominative +nominative +127665 accusative +genitive +127671 dative +nominative +127675 nominative +accusative +127681 accusative +127684 nominative +nominative +nominative +127689 dative +127692 dative +127694 dative +dative +genitive +genitive +127700 dative +dative +genitive +genitive +genitive +127707 dative +dative +genitive +genitive +127712 nominative +127714 nominative +127716 dative +dative +genitive +nominative +nominative +127722 accusative +nominative +nominative +nominative +127727 genitive +nominative +nominative +nominative +nominative +127733 nominative +nominative +nominative +nominative +genitive +nominative +accusative +genitive +accusative +nominative +nominative +dative +nominative +nominative +genitive +genitive +127750 accusative +127755 dative +nominative +127758 genitive +nominative +nominative +127763 nominative +127765 dative +dative +genitive +127769 accusative +127771 genitive +127774 accusative +accusative +accusative +127778 genitive +genitive +genitive +genitive +genitive +genitive +127787 genitive +genitive +genitive +genitive +127793 genitive +nominative +nominative +nominative +127798 nominative +nominative +127801 accusative +accusative +genitive +nominative +127806 nominative +nominative +genitive +127810 accusative +nominative +accusative +genitive +127816 vocative +nominative +127819 genitive +genitive +genitive +genitive +127824 genitive +genitive +genitive +genitive +genitive +genitive +genitive +127833 dative +127835 genitive +genitive +genitive +127839 nominative +nominative +127842 accusative +genitive +accusative +genitive +genitive +nominative +127849 nominative +nominative +nominative +accusative +127854 nominative +127856 vocative +nominative +nominative +accusative +dative +dative +genitive +dative +127865 dative +dative +nominative +accusative +127870 dative +genitive +127873 nominative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +127882 accusative +accusative +127886 accusative +accusative +127891 genitive +nominative +127894 accusative +127897 dative +nominative +127900 accusative +127902 genitive +genitive +accusative +accusative +127907 dative +dative +127910 accusative +accusative +127915 genitive +genitive +genitive +accusative +127920 dative +dative +dative +dative +genitive +127926 genitive +genitive +genitive +genitive +genitive +nominative +nominative +nominative +127935 nominative +127937 genitive +genitive +genitive +127944 accusative +accusative +accusative +127948 nominative +genitive +genitive +accusative +127953 dative +nominative +nominative +127957 dative +dative +genitive +accusative +127963 dative +127967 nominative +127969 genitive +genitive +genitive +dative +dative +genitive +dative +nominative +127978 accusative +accusative +genitive +genitive +127983 accusative +accusative +genitive +genitive +accusative +127989 nominative +nominative +nominative +127993 nominative +nominative +accusative +accusative +genitive +genitive +128000 nominative +accusative +128003 dative +accusative +128006 nominative +nominative +128009 nominative +dative +128012 dative +dative +128015 dative +dative +nominative +128019 nominative +dative +128022 nominative +nominative +128025 nominative +128028 nominative +nominative +128032 genitive +128034 genitive +nominative +128037 genitive +genitive +genitive +128042 genitive +genitive +nominative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +128053 nominative +nominative +genitive +genitive +genitive +genitive +dative +dative +accusative +128063 dative +accusative +128066 genitive +genitive +genitive +128070 dative +dative +genitive +128075 accusative +accusative +accusative +dative +dative +128081 dative +genitive +dative +nominative +nominative +128087 nominative +nominative +128090 accusative +accusative +genitive +genitive +128098 genitive +genitive +128102 accusative +nominative +nominative +128106 nominative +accusative +128112 accusative +nominative +nominative +nominative +genitive +genitive +128120 nominative +128122 nominative +nominative +128125 nominative +nominative +128128 nominative +nominative +nominative +nominative +nominative +128134 nominative +128137 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +genitive +128147 nominative +128149 dative +dative +128152 dative +128154 dative +128156 dative +128159 dative +dative +dative +dative +dative +128165 accusative +accusative +genitive +genitive +128170 accusative +accusative +genitive +128175 dative +128177 dative +dative +dative +128183 genitive +accusative +accusative +128187 genitive +genitive +accusative +128193 accusative +128196 dative +128198 dative +128200 accusative +128203 accusative +128206 accusative +128209 accusative +128212 accusative +128215 accusative +128218 accusative +128222 accusative +accusative +nominative +128227 genitive +128229 nominative +128232 accusative +accusative +128236 dative +genitive +genitive +accusative +accusative +genitive +accusative +accusative +128245 accusative +128247 dative +dative +accusative +accusative +128252 nominative +nominative +genitive +128256 nominative +nominative +nominative +128260 nominative +nominative +128263 nominative +128265 nominative +nominative +genitive +128269 nominative +genitive +128272 nominative +nominative +genitive +nominative +dative +128279 dative +genitive +128282 nominative +nominative +genitive +128286 nominative +genitive +genitive +128290 nominative +128292 dative +dative +dative +genitive +accusative +128300 genitive +genitive +genitive +nominative +nominative +nominative +nominative +128308 nominative +nominative +genitive +128312 nominative +nominative +128316 dative +dative +genitive +128322 accusative +128325 accusative +accusative +genitive +128329 nominative +128332 accusative +accusative +genitive +128336 accusative +nominative +128340 nominative +128342 nominative +nominative +128345 nominative +nominative +128348 nominative +nominative +128352 nominative +128355 nominative +128358 accusative +accusative +genitive +genitive +128364 accusative +accusative +genitive +genitive +128369 genitive +genitive +128373 accusative +128376 nominative +128379 nominative +128383 accusative +nominative +nominative +genitive +128388 genitive +accusative +128392 genitive +genitive +genitive +128396 accusative +128398 accusative +accusative +accusative +nominative +128403 nominative +nominative +genitive +128407 genitive +128410 nominative +nominative +nominative +128415 nominative +128417 dative +dative +genitive +128421 dative +genitive +128424 accusative +128426 nominative +nominative +accusative +128430 accusative +128432 dative +dative +genitive +nominative +nominative +128438 dative +genitive +128441 genitive +genitive +genitive +128445 accusative +accusative +genitive +128449 accusative +accusative +128452 accusative +accusative +genitive +128460 accusative +128463 accusative +accusative +accusative +accusative +128472 accusative +accusative +128475 accusative +128480 accusative +accusative +genitive +128489 genitive +128491 accusative +accusative +genitive +accusative +accusative +128504 accusative +accusative +accusative +128512 dative +128515 accusative +accusative +genitive +128519 genitive +genitive +genitive +128526 accusative +128530 accusative +accusative +genitive +genitive +accusative +nominative +128537 nominative +nominative +accusative +128541 accusative +nominative +nominative +128545 dative +dative +dative +dative +128550 dative +128553 genitive +genitive +genitive +genitive +nominative +128560 dative +dative +genitive +genitive +128565 dative +dative +genitive +128569 dative +genitive +128572 accusative +128574 nominative +nominative +128577 nominative +nominative +nominative +128581 nominative +128585 genitive +accusative +accusative +128589 accusative +accusative +128592 nominative +128595 accusative +accusative +128598 genitive +genitive +accusative +128602 accusative +128607 nominative +genitive +genitive +accusative +128612 accusative +128617 nominative +nominative +128621 genitive +128623 accusative +128628 accusative +genitive +128632 nominative +128634 genitive +128637 dative +accusative +accusative +genitive +genitive +nominative +nominative +accusative +128646 accusative +nominative +nominative +128650 dative +dative +nominative +nominative +128658 genitive +genitive +genitive +genitive +128663 dative +dative +genitive +128667 dative +genitive +128670 accusative +128672 nominative +nominative +accusative +accusative +accusative +accusative +accusative +accusative +128684 nominative +nominative +genitive +genitive +128690 accusative +accusative +genitive +128696 accusative +accusative +genitive +128701 dative +dative +nominative +nominative +nominative +genitive +nominative +nominative +genitive +nominative +128713 dative +128715 nominative +nominative +128721 genitive +accusative +128726 accusative +accusative +accusative +genitive +nominative +128732 dative +dative +128735 accusative +128737 genitive +genitive +genitive +128741 accusative +128747 nominative +accusative +accusative +accusative +genitive +genitive +128760 dative +accusative +128765 genitive +128767 dative +dative +genitive +genitive +genitive +nominative +nominative +accusative +128776 accusative +nominative +nominative +128780 dative +dative +dative +dative +128785 dative +genitive +genitive +genitive +genitive +128792 dative +accusative +accusative +128797 accusative +accusative +nominative +nominative +nominative +accusative +nominative +128807 nominative +nominative +128810 dative +dative +genitive +128814 dative +genitive +128817 accusative +128819 nominative +nominative +genitive +genitive +nominative +nominative +accusative +accusative +genitive +128829 accusative +genitive +128832 nominative +nominative +genitive +nominative +dative +128838 genitive +accusative +accusative +128842 accusative +accusative +128845 accusative +accusative +128848 accusative +accusative +128851 accusative +accusative +genitive +128855 accusative +accusative +genitive +accusative +accusative +accusative +genitive +genitive +128866 genitive +128869 accusative +accusative +accusative +nominative +nominative +accusative +accusative +128880 accusative +accusative +accusative +128886 accusative +128889 dative +accusative +128898 genitive +genitive +genitive +128903 accusative +128905 accusative +128907 accusative +accusative +128910 genitive +128912 accusative +accusative +128918 genitive +genitive +genitive +128922 accusative +accusative +genitive +128927 dative +128930 nominative +nominative +nominative +128934 nominative +128936 nominative +nominative +accusative +128940 accusative +128943 dative +dative +128946 accusative +accusative +genitive +128951 dative +dative +dative +dative +128956 dative +nominative +128960 accusative +accusative +accusative +nominative +128966 accusative +accusative +genitive +genitive +128975 accusative +accusative +accusative +128979 accusative +128984 genitive +128987 nominative +nominative +128990 nominative +nominative +128993 genitive +accusative +accusative +genitive +128998 dative +accusative +129001 genitive +genitive +129005 accusative +129007 dative +dative +129010 nominative +nominative +nominative +nominative +129016 nominative +129019 genitive +genitive +genitive +129024 dative +accusative +accusative +accusative +accusative +nominative +nominative +accusative +129033 accusative +nominative +nominative +129037 dative +dative +129040 dative +dative +genitive +129044 dative +genitive +129047 accusative +129049 nominative +nominative +accusative +129053 accusative +genitive +genitive +129057 accusative +129059 accusative +129061 genitive +accusative +accusative +129065 accusative +129070 nominative +129073 nominative +129076 accusative +accusative +nominative +129084 genitive +accusative +accusative +129088 genitive +genitive +genitive +129107 nominative +129112 accusative +accusative +129116 accusative +129119 accusative +accusative +129122 dative +nominative +129126 accusative +accusative +genitive +129132 genitive +129134 dative +129136 nominative +129138 nominative +nominative +129143 dative +dative +129149 accusative +accusative +genitive +129153 genitive +genitive +genitive +genitive +129159 accusative +accusative +genitive +129163 genitive +genitive +genitive +129168 genitive +genitive +genitive +nominative +nominative +accusative +129175 accusative +nominative +nominative +129179 dative +dative +129182 dative +dative +genitive +129186 dative +genitive +129189 accusative +129191 nominative +nominative +nominative +nominative +nominative +nominative +accusative +accusative +genitive +nominative +nominative +129203 nominative +129206 nominative +129208 nominative +129211 genitive +accusative +accusative +129217 genitive +accusative +accusative +accusative +accusative +129223 nominative +129226 accusative +accusative +129231 genitive +accusative +accusative +129237 accusative +accusative +genitive +129243 genitive +genitive +genitive +genitive +genitive +genitive +accusative +accusative +129259 accusative +129265 genitive +genitive +genitive +129271 nominative +129273 accusative +129276 accusative +accusative +genitive +genitive +genitive +nominative +accusative +129285 genitive +genitive +genitive +genitive +genitive +genitive +129293 genitive +genitive +genitive +129297 accusative +accusative +129300 genitive +genitive +129303 accusative +129305 accusative +129308 nominative +129310 accusative +accusative +genitive +nominative +nominative +129316 accusative +accusative +129319 dative +dative +genitive +genitive +genitive +129333 accusative +accusative +accusative +genitive +genitive +genitive +129340 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +nominative +nominative +129353 genitive +genitive +129356 genitive +genitive +genitive +129360 accusative +accusative +genitive +accusative +accusative +nominative +nominative +accusative +129369 accusative +nominative +nominative +129373 dative +dative +129376 dative +dative +genitive +129380 dative +genitive +129383 accusative +129385 nominative +129387 nominative +nominative +nominative +nominative +129392 nominative +nominative +nominative +genitive +genitive +genitive +genitive +129400 genitive +accusative +accusative +129406 nominative +129408 nominative +129411 nominative +129413 nominative +129416 nominative +129420 nominative +129422 nominative +129424 accusative +129427 genitive +genitive +genitive +129433 nominative +129438 accusative +accusative +129445 nominative +129447 nominative +nominative +129450 nominative +129452 nominative +129454 nominative +129456 nominative +129458 dative +129461 genitive +accusative +accusative +129465 genitive +129469 accusative +accusative +129476 nominative +nominative +genitive +genitive +genitive +129482 accusative +129484 accusative +accusative +genitive +129489 nominative +129491 accusative +129503 accusative +accusative +129508 nominative +129510 genitive +genitive +genitive +129515 accusative +accusative +129519 accusative +129523 genitive +129525 nominative +129527 genitive +nominative +nominative +129531 dative +129534 genitive +129536 dative +dative +genitive +129540 nominative +129545 genitive +genitive +genitive +129549 dative +dative +genitive +nominative +nominative +accusative +129556 accusative +nominative +nominative +129560 dative +dative +129563 accusative +129567 nominative +nominative +129570 dative +dative +129573 nominative +nominative +nominative +nominative +accusative +129580 genitive +genitive +129583 genitive +nominative +129589 dative +accusative +129593 accusative +129598 dative +129601 nominative +129604 dative +dative +129608 accusative +accusative +nominative +129612 nominative +nominative +nominative +dative +dative +dative +129619 dative +129621 nominative +129623 genitive +genitive +nominative +dative +dative +129630 genitive +genitive +accusative +129634 accusative +129637 accusative +accusative +129640 accusative +accusative +accusative +accusative +129645 dative +dative +129649 accusative +accusative +genitive +accusative +accusative +129656 genitive +genitive +129659 nominative +129661 nominative +129663 nominative +129666 nominative +genitive +nominative +129670 genitive +genitive +nominative +129674 nominative +129676 nominative +genitive +genitive +129681 genitive +genitive +129684 nominative +nominative +nominative +dative +129690 dative +genitive +genitive +129694 dative +genitive +genitive +nominative +nominative +nominative +genitive +129705 nominative +nominative +nominative +nominative +nominative +dative +129712 nominative +nominative +nominative +nominative +dative +129718 nominative +nominative +nominative +nominative +accusative +accusative +129725 genitive +129727 nominative +nominative +nominative +nominative +dative +dative +129734 nominative +nominative +nominative +nominative +129739 accusative +genitive +nominative +129743 accusative +129749 genitive +129751 accusative +129754 genitive +129756 genitive +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +129769 nominative +nominative +129772 nominative +nominative +129777 nominative +nominative +accusative +129781 accusative +129783 accusative +dative +dative +129787 dative +dative +dative +dative +129792 accusative +accusative +genitive +genitive +129797 nominative +129799 nominative +nominative +129802 genitive +genitive +129805 genitive +genitive +129809 dative +dative +129812 accusative +accusative +genitive +genitive +129818 accusative +accusative +genitive +129822 genitive +genitive +nominative +nominative +nominative +129828 nominative +nominative +genitive +nominative +129834 accusative +accusative +129837 accusative +accusative +129840 accusative +accusative +129843 nominative +129845 accusative +accusative +129849 accusative +accusative +genitive +129858 accusative +accusative +genitive +genitive +129863 genitive +genitive +accusative +accusative +129870 accusative +dative +129875 accusative +accusative +accusative +129879 dative +dative +nominative +nominative +129884 accusative +accusative +129888 accusative +accusative +genitive +129893 nominative +129895 dative +dative +129899 genitive +genitive +129903 genitive +genitive +129906 accusative +accusative +129910 accusative +129913 accusative +129915 nominative +nominative +129919 accusative +accusative +129923 accusative +129925 nominative +129927 genitive +genitive +129930 dative +129935 nominative +nominative +nominative +129939 genitive +genitive +genitive +nominative +nominative +genitive +129946 accusative +accusative +129949 accusative +129951 accusative +genitive +129956 dative +genitive +genitive +129960 genitive +genitive +genitive +129965 dative +genitive +genitive +accusative +accusative +129971 accusative +nominative +accusative +129976 accusative +129978 nominative +129980 nominative +129982 nominative +genitive +genitive +nominative +129987 accusative +accusative +accusative +129995 genitive +genitive +genitive +genitive +130000 genitive +genitive +130005 accusative +accusative +nominative +nominative +nominative +130011 nominative +130013 nominative +nominative +130017 genitive +genitive +nominative +nominative +accusative +130023 accusative +accusative +accusative +genitive +nominative +130029 nominative +nominative +genitive +genitive +130035 accusative +accusative +nominative +nominative +130041 accusative +accusative +130045 accusative +accusative +genitive +130052 dative +dative +130055 dative +dative +genitive +130059 genitive +genitive +130062 genitive +130064 genitive +130066 genitive +130069 accusative +dative +dative +genitive +accusative +130075 accusative +130079 genitive +genitive +130085 accusative +genitive +genitive +dative +genitive +genitive +130092 genitive +genitive +130095 genitive +genitive +130099 nominative +nominative +genitive +nominative +genitive +130105 nominative +genitive +nominative +dative +dative +nominative +130112 nominative +nominative +nominative +nominative +130117 accusative +accusative +130120 accusative +130122 accusative +130124 accusative +130126 accusative +130128 accusative +130130 accusative +130132 accusative +accusative +nominative +130136 dative +dative +130140 genitive +genitive +130144 genitive +genitive +130148 genitive +genitive +130152 accusative +130154 dative +accusative +accusative +130158 dative +dative +130161 dative +dative +130164 dative +dative +nominative +nominative +130169 nominative +nominative +130172 nominative +nominative +130175 nominative +nominative +130178 accusative +accusative +genitive +genitive +130183 nominative +nominative +nominative +130189 nominative +nominative +130198 nominative +nominative +accusative +130202 genitive +130204 genitive +130207 genitive +130209 genitive +genitive +genitive +genitive +130214 nominative +genitive +130221 nominative +nominative +130224 nominative +nominative +130227 accusative +nominative +accusative +130232 dative +nominative +130236 nominative +130243 accusative +accusative +accusative +accusative +130248 genitive +genitive +genitive +genitive +130255 nominative +nominative +nominative +130259 dative +dative +130262 accusative +130264 dative +130266 accusative +accusative +130269 genitive +genitive +130273 accusative +130277 dative +nominative +nominative +130283 accusative +accusative +accusative +accusative +130288 genitive +genitive +genitive +genitive +130297 nominative +nominative +130300 nominative +nominative +130303 accusative +nominative +accusative +130307 dative +dative +genitive +130313 accusative +130315 dative +genitive +genitive +genitive +accusative +nominative +genitive +genitive +130324 nominative +nominative +genitive +genitive +130329 accusative +accusative +130332 accusative +accusative +130339 accusative +accusative +accusative +accusative +130344 accusative +genitive +genitive +genitive +genitive +130354 nominative +nominative +130357 nominative +nominative +130360 genitive +nominative +dative +nominative +nominative +130366 nominative +nominative +130370 genitive +130373 dative +nominative +130376 accusative +accusative +genitive +genitive +130382 dative +130385 dative +130388 dative +130391 genitive +genitive +genitive +genitive +130398 accusative +accusative +accusative +130403 genitive +genitive +accusative +accusative +genitive +genitive +130410 accusative +accusative +genitive +genitive +130416 accusative +accusative +accusative +130422 dative +dative +nominative +nominative +nominative +nominative +nominative +130430 nominative +130437 accusative +accusative +genitive +130441 genitive +genitive +130444 genitive +genitive +130448 dative +dative +nominative +nominative +130454 dative +130458 accusative +accusative +130463 nominative +nominative +genitive +130467 nominative +nominative +genitive +nominative +nominative +130475 nominative +130480 accusative +accusative +accusative +accusative +130485 nominative +nominative +130489 nominative +nominative +130492 nominative +130494 nominative +nominative +130497 nominative +nominative +nominative +130502 nominative +130504 nominative +nominative +genitive +genitive +130510 accusative +accusative +130513 nominative +130515 accusative +accusative +genitive +130519 genitive +genitive +nominative +130523 nominative +nominative +130527 nominative +nominative +130530 nominative +nominative +130533 nominative +130535 genitive +genitive +genitive +130540 nominative +nominative +genitive +genitive +130545 nominative +nominative +130548 nominative +nominative +130551 nominative +nominative +130554 nominative +nominative +130557 nominative +nominative +130560 nominative +130562 accusative +130564 accusative +accusative +130568 accusative +accusative +genitive +genitive +130574 dative +dative +130577 dative +dative +130581 accusative +130584 accusative +130586 genitive +genitive +genitive +130590 genitive +genitive +130594 genitive +genitive +genitive +genitive +130600 nominative +nominative +nominative +nominative +genitive +genitive +genitive +130608 nominative +130612 accusative +130614 accusative +accusative +accusative +130618 accusative +accusative +accusative +genitive +genitive +accusative +accusative +accusative +accusative +genitive +genitive +130632 nominative +130634 genitive +genitive +130638 genitive +genitive +130642 accusative +accusative +130646 accusative +accusative +accusative +130650 genitive +genitive +accusative +accusative +genitive +genitive +130658 dative +dative +dative +dative +dative +dative +dative +130667 accusative +accusative +130670 accusative +accusative +nominative +130675 accusative +accusative +130678 accusative +accusative +130681 accusative +accusative +130685 accusative +accusative +genitive +genitive +genitive +130691 genitive +genitive +genitive +130696 accusative +accusative +genitive +genitive +130702 nominative +nominative +nominative +130706 genitive +genitive +genitive +genitive +130711 genitive +genitive +130714 nominative +nominative +130717 genitive +genitive +130720 nominative +130722 genitive +genitive +130725 nominative +130727 genitive +genitive +130730 nominative +130732 genitive +genitive +130735 nominative +130737 genitive +genitive +130740 nominative +130742 genitive +genitive +130745 nominative +130747 genitive +genitive +130750 nominative +130752 genitive +genitive +130755 nominative +130757 genitive +genitive +130760 nominative +130762 genitive +genitive +130765 nominative +130767 genitive +genitive +130770 nominative +nominative +130773 accusative +130777 nominative +nominative +accusative +accusative +130782 nominative +130785 genitive +genitive +130788 genitive +130790 genitive +130792 genitive +nominative +130795 genitive +genitive +130799 genitive +genitive +accusative +accusative +accusative +130805 nominative +130807 dative +dative +genitive +130812 dative +dative +nominative +nominative +nominative +dative +dative +genitive +dative +dative +130823 dative +dative +130826 dative +dative +130829 nominative +nominative +nominative +130833 dative +genitive +genitive +130837 genitive +genitive +130840 genitive +genitive +genitive +130846 genitive +genitive +130849 accusative +accusative +genitive +130854 dative +dative +nominative +130858 nominative +nominative +130861 nominative +nominative +130864 nominative +nominative +130867 nominative +nominative +130870 nominative +nominative +130873 nominative +nominative +130876 nominative +nominative +dative +dative +genitive +130882 accusative +accusative +genitive +genitive +130889 nominative +130891 genitive +genitive +nominative +dative +nominative +nominative +nominative +accusative +accusative +accusative +accusative +nominative +130909 dative +vocative +genitive +nominative +130916 dative +nominative +130919 nominative +nominative +130922 genitive +genitive +genitive +genitive +130928 accusative +accusative +genitive +130933 accusative +130935 dative +dative +genitive +genitive +130940 accusative +130943 genitive +genitive +genitive +genitive +130949 dative +genitive +130952 genitive +130954 dative +dative +genitive +130958 nominative +nominative +130961 genitive +genitive +130965 accusative +130976 accusative +nominative +nominative +130980 nominative +nominative +130983 nominative +nominative +nominative +130987 accusative +genitive +genitive +130991 accusative +130994 accusative +130996 genitive +accusative +genitive +131001 nominative +nominative +accusative +accusative +131006 genitive +genitive +genitive +131012 accusative +accusative +accusative +accusative +131017 nominative +131019 dative +dative +131022 accusative +131025 accusative +131027 accusative +nominative +131030 genitive +genitive +131035 dative +131037 nominative +131039 nominative +nominative +131045 genitive +genitive +nominative +accusative +accusative +131052 dative +nominative +nominative +131057 dative +dative +genitive +genitive +genitive +131063 accusative +accusative +accusative +accusative +accusative +131069 genitive +genitive +131073 nominative +nominative +genitive +genitive +dative +dative +genitive +genitive +131082 genitive +genitive +genitive +131086 genitive +genitive +131090 nominative +nominative +accusative +accusative +131096 accusative +131098 genitive +genitive +genitive +genitive +131105 accusative +accusative +131109 nominative +131111 nominative +131113 nominative +131115 nominative +131117 nominative +131119 nominative +nominative +nominative +accusative +131124 accusative +131126 accusative +131130 nominative +nominative +131135 nominative +131137 nominative +nominative +131140 dative +131144 accusative +accusative +131147 nominative +nominative +genitive +genitive +131153 nominative +nominative +genitive +genitive +131159 nominative +nominative +nominative +131164 nominative +nominative +nominative +131170 nominative +nominative +dative +nominative +131176 accusative +accusative +131180 nominative +nominative +genitive +genitive +nominative +131187 nominative +nominative +genitive +genitive +genitive +131193 dative +dative +nominative +nominative +accusative +131199 nominative +nominative +genitive +genitive +131205 nominative +nominative +nominative +131212 genitive +genitive +nominative +nominative +nominative +131218 nominative +131222 accusative +accusative +genitive +genitive +131228 accusative +accusative +genitive +genitive +131233 nominative +nominative +genitive +genitive +131238 nominative +nominative +131242 nominative +nominative +genitive +genitive +131247 accusative +131249 nominative +genitive +genitive +131254 genitive +genitive +131259 nominative +nominative +nominative +131265 nominative +nominative +genitive +genitive +131270 nominative +nominative +genitive +genitive +131275 nominative +nominative +genitive +genitive +131281 nominative +nominative +genitive +131285 nominative +nominative +131289 accusative +accusative +genitive +131293 nominative +nominative +131300 genitive +genitive +genitive +131304 dative +genitive +dative +dative +131311 accusative +accusative +131314 genitive +genitive +131317 genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +131329 nominative +nominative +nominative +131335 accusative +131337 genitive +genitive +accusative +131341 accusative +accusative +131345 dative +nominative +nominative +genitive +genitive +genitive +genitive +131354 accusative +accusative +genitive +genitive +131360 nominative +131362 genitive +genitive +131365 nominative +genitive +genitive +131370 nominative +nominative +131373 nominative +nominative +131376 genitive +genitive +genitive +genitive +131382 genitive +genitive +131385 nominative +131387 accusative +accusative +131391 dative +nominative +131395 accusative +nominative +nominative +genitive +genitive +131402 dative +131406 accusative +accusative +genitive +genitive +131411 accusative +accusative +131414 accusative +accusative +131418 accusative +accusative +nominative +131423 accusative +accusative +genitive +genitive +131428 genitive +genitive +131432 dative +131436 accusative +131440 accusative +131443 nominative +nominative +genitive +131447 nominative +genitive +131451 accusative +131454 dative +dative +dative +131458 nominative +nominative +accusative +accusative +131466 accusative +131472 nominative +nominative +131475 genitive +131477 nominative +nominative +genitive +genitive +nominative +dative +dative +131485 accusative +131488 accusative +accusative +genitive +131492 nominative +nominative +dative +131496 nominative +nominative +genitive +131500 nominative +genitive +131504 accusative +131506 accusative +genitive +131509 nominative +nominative +genitive +131513 genitive +131517 accusative +131519 accusative +accusative +131522 nominative +nominative +genitive +genitive +genitive +131528 nominative +genitive +genitive +genitive +genitive +131534 accusative +131537 accusative +accusative +dative +131541 accusative +131544 dative +dative +genitive +nominative +nominative +genitive +131551 accusative +accusative +accusative +131557 genitive +accusative +accusative +accusative +genitive +genitive +nominative +dative +131566 nominative +131569 dative +dative +accusative +131573 nominative +nominative +131576 nominative +nominative +131585 accusative +131587 nominative +nominative +nominative +131593 accusative +accusative +131596 genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +131605 genitive +genitive +accusative +dative +dative +dative +nominative +nominative +accusative +accusative +131616 accusative +accusative +accusative +accusative +accusative +131622 dative +dative +dative +dative +dative +131629 nominative +nominative +nominative +nominative +nominative +131635 accusative +accusative +131638 accusative +131640 accusative +131642 accusative +131645 accusative +accusative +genitive +genitive +131650 nominative +nominative +genitive +genitive +genitive +genitive +nominative +genitive +131659 accusative +accusative +genitive +131665 accusative +accusative +131668 dative +dative +131671 accusative +accusative +131674 genitive +accusative +accusative +accusative +131679 accusative +131681 accusative +131683 nominative +nominative +genitive +genitive +131688 nominative +genitive +131692 genitive +genitive +genitive +131696 nominative +131698 nominative +131700 nominative +131702 nominative +nominative +genitive +genitive +131707 genitive +genitive +genitive +genitive +131712 genitive +genitive +131715 genitive +genitive +131718 genitive +genitive +genitive +genitive +131723 genitive +genitive +genitive +131727 nominative +nominative +genitive +genitive +131733 dative +dative +genitive +131738 dative +dative +genitive +131742 nominative +nominative +genitive +nominative +dative +nominative +accusative +131751 dative +131754 nominative +nominative +genitive +genitive +nominative +131762 dative +dative +dative +131768 genitive +genitive +genitive +genitive +genitive +131776 accusative +accusative +131779 accusative +accusative +accusative +accusative +131784 accusative +accusative +131787 accusative +accusative +131790 accusative +accusative +131793 accusative +accusative +accusative +131807 genitive +genitive +genitive +131812 genitive +genitive +genitive +131817 genitive +genitive +genitive +131822 genitive +genitive +genitive +131827 accusative +accusative +accusative +accusative +131832 genitive +genitive +accusative +accusative +131837 nominative +nominative +131840 accusative +accusative +genitive +131844 nominative +nominative +genitive +131848 nominative +nominative +131851 nominative +nominative +genitive +131855 nominative +genitive +131858 nominative +131860 dative +dative +genitive +accusative +accusative +131867 accusative +accusative +genitive +accusative +accusative +131873 genitive +genitive +131876 accusative +accusative +131879 genitive +genitive +131883 dative +dative +131886 nominative +131892 nominative +131894 nominative +accusative +genitive +accusative +131901 nominative +131903 nominative +131908 accusative +131910 genitive +genitive +accusative +131914 accusative +131916 nominative +131918 nominative +131921 accusative +131924 nominative +nominative +accusative +accusative +131929 genitive +genitive +131933 genitive +genitive +131937 accusative +accusative +genitive +accusative +accusative +131943 accusative +accusative +131948 dative +dative +131951 accusative +accusative +genitive +genitive +nominative +131957 accusative +accusative +131960 accusative +131962 dative +131964 accusative +accusative +131967 accusative +131969 dative +131971 accusative +accusative +131974 accusative +131976 dative +131978 nominative +131983 dative +dative +genitive +genitive +genitive +genitive +genitive +131995 nominative +nominative +genitive +genitive +132001 accusative +genitive +accusative +accusative +accusative +132007 nominative +nominative +accusative +132012 genitive +genitive +132015 accusative +132017 genitive +132019 accusative +132022 accusative +accusative +accusative +accusative +132027 dative +dative +genitive +genitive +genitive +genitive +132034 genitive +genitive +132038 genitive +genitive +132043 accusative +accusative +nominative +dative +132048 dative +accusative +accusative +132053 dative +132057 accusative +132060 genitive +accusative +accusative +132065 dative +dative +genitive +132069 nominative +132071 nominative +132074 accusative +accusative +132077 genitive +genitive +genitive +genitive +132083 accusative +132087 dative +dative +genitive +132091 nominative +nominative +132096 accusative +132098 nominative +nominative +genitive +132103 dative +132105 accusative +132109 dative +132111 dative +132113 dative +132115 dative +dative +132119 dative +nominative +nominative +dative +nominative +132127 accusative +accusative +genitive +genitive +132132 accusative +accusative +132135 accusative +accusative +132138 dative +132140 accusative +accusative +accusative +132144 genitive +genitive +132150 accusative +132154 dative +dative +132157 accusative +accusative +accusative +accusative +132162 accusative +132167 dative +dative +dative +genitive +132173 accusative +accusative +accusative +132177 nominative +accusative +nominative +132181 nominative +132183 nominative +132185 nominative +132187 nominative +nominative +132190 genitive +genitive +genitive +genitive +nominative +132197 nominative +132199 accusative +132201 nominative +132204 genitive +genitive +genitive +132209 accusative +accusative +genitive +132214 nominative +132216 accusative +132220 accusative +132222 nominative +132224 accusative +accusative +132227 accusative +accusative +132231 nominative +132233 accusative +accusative +genitive +genitive +genitive +132239 accusative +132242 genitive +genitive +132245 accusative +132247 accusative +132250 accusative +accusative +132253 dative +dative +132261 accusative +accusative +genitive +nominative +nominative +nominative +nominative +132269 genitive +genitive +132273 genitive +accusative +132277 accusative +132280 accusative +132282 nominative +nominative +genitive +132286 genitive +genitive +genitive +genitive +genitive +genitive +nominative +132295 nominative +132297 nominative +132300 nominative +nominative +genitive +132307 genitive +genitive +132310 genitive +132312 genitive +132314 genitive +accusative +accusative +genitive +accusative +accusative +132321 accusative +132325 accusative +accusative +genitive +132330 accusative +132332 nominative +nominative +132335 genitive +genitive +132339 dative +132343 accusative +132345 dative +132347 nominative +nominative +132350 nominative +132352 accusative +accusative +132355 genitive +genitive +132359 accusative +accusative +132362 accusative +accusative +nominative +genitive +132367 genitive +genitive +132371 dative +132375 accusative +accusative +genitive +132379 nominative +nominative +132383 accusative +accusative +accusative +132388 genitive +genitive +132391 genitive +genitive +genitive +dative +132400 accusative +accusative +132403 dative +dative +132407 accusative +nominative +nominative +genitive +132413 dative +dative +dative +132417 nominative +nominative +132420 nominative +nominative +genitive +genitive +132428 dative +dative +accusative +genitive +nominative +132435 nominative +nominative +nominative +132441 accusative +dative +dative +genitive +genitive +nominative +132448 nominative +nominative +132452 nominative +132454 nominative +nominative +132457 accusative +132459 nominative +nominative +nominative +132465 nominative +nominative +132468 dative +dative +nominative +132472 nominative +nominative +genitive +genitive +genitive +genitive +genitive +132480 genitive +genitive +genitive +132486 accusative +accusative +genitive +genitive +132491 nominative +132493 nominative +nominative +nominative +132497 genitive +genitive +nominative +132501 accusative +accusative +genitive +132506 accusative +accusative +genitive +132511 dative +dative +nominative +132515 dative +vocative +nominative +nominative +nominative +nominative +nominative +nominative +132524 nominative +132528 accusative +accusative +genitive +accusative +accusative +132536 nominative +nominative +132541 nominative +nominative +genitive +132545 nominative +nominative +genitive +genitive +132552 accusative +accusative +dative +dative +genitive +dative +dative +132560 dative +dative +132563 dative +dative +accusative +accusative +genitive +dative +dative +132571 dative +dative +132575 accusative +accusative +accusative +accusative +132581 nominative +nominative +genitive +genitive +nominative +132587 dative +dative +132591 nominative +nominative +genitive +genitive +genitive +132597 dative +dative +genitive +132602 nominative +132604 nominative +132606 nominative +132608 nominative +132610 nominative +nominative +132613 nominative +nominative +132617 dative +dative +nominative +nominative +accusative +accusative +132624 nominative +nominative +132627 genitive +genitive +genitive +132632 genitive +genitive +genitive +nominative +genitive +132640 dative +nominative +132644 nominative +132646 nominative +132650 nominative +nominative +132653 dative +dative +132657 nominative +nominative +nominative +nominative +accusative +132664 accusative +132668 accusative +accusative +genitive +132672 accusative +132674 nominative +nominative +genitive +132678 accusative +accusative +genitive +genitive +genitive +genitive +132686 accusative +132688 accusative +accusative +132691 nominative +nominative +132695 genitive +genitive +genitive +genitive +132703 accusative +accusative +genitive +132709 accusative +accusative +nominative +132714 accusative +accusative +accusative +132718 dative +dative +132722 nominative +nominative +genitive +132726 accusative +accusative +132730 accusative +accusative +genitive +132734 nominative +nominative +132738 accusative +accusative +132743 accusative +accusative +132746 genitive +genitive +132751 accusative +accusative +accusative +accusative +132758 nominative +132760 dative +dative +nominative +nominative +132765 nominative +nominative +genitive +genitive +132771 genitive +genitive +132775 nominative +nominative +132778 nominative +nominative +genitive +132785 nominative +genitive +132790 dative +dative +132794 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +132806 nominative +nominative +nominative +nominative +accusative +accusative +accusative +132815 accusative +accusative +132818 nominative +nominative +genitive +132822 genitive +132826 accusative +accusative +132829 dative +dative +accusative +132834 nominative +nominative +132837 nominative +nominative +132840 nominative +nominative +genitive +genitive +genitive +132846 nominative +nominative +genitive +genitive +genitive +132853 nominative +nominative +genitive +genitive +genitive +nominative +nominative +accusative +132862 genitive +genitive +genitive +genitive +132867 genitive +132869 nominative +132871 accusative +132873 accusative +accusative +genitive +genitive +132879 accusative +accusative +genitive +genitive +genitive +132887 accusative +accusative +genitive +132891 genitive +132893 accusative +132895 nominative +132897 nominative +132899 dative +nominative +132902 accusative +accusative +132905 accusative +accusative +132909 nominative +nominative +132912 accusative +nominative +accusative +accusative +nominative +132918 accusative +accusative +132924 nominative +nominative +132929 accusative +accusative +132932 accusative +accusative +nominative +132936 accusative +accusative +132940 dative +dative +nominative +132944 nominative +genitive +genitive +genitive +genitive +132952 accusative +accusative +132955 accusative +accusative +genitive +132961 accusative +132963 accusative +132965 accusative +genitive +132968 genitive +genitive +genitive +132973 nominative +nominative +132976 genitive +genitive +genitive +132980 genitive +genitive +accusative +132984 accusative +132986 accusative +accusative +132991 nominative +nominative +dative +dative +132997 nominative +nominative +accusative +accusative +genitive +133004 accusative +accusative +accusative +133008 nominative +nominative +133011 genitive +genitive +genitive +133016 nominative +nominative +133019 dative +dative +133024 accusative +133026 genitive +genitive +genitive +genitive +genitive +genitive +genitive +accusative +accusative +genitive +genitive +133038 genitive +accusative +accusative +genitive +133045 accusative +accusative +genitive +genitive +133052 genitive +genitive +accusative +accusative +accusative +accusative +133060 accusative +133064 genitive +genitive +genitive +133068 accusative +133071 accusative +accusative +genitive +accusative +genitive +133077 nominative +nominative +accusative +133082 nominative +dative +133085 nominative +nominative +genitive +133089 genitive +133091 nominative +nominative +genitive +133095 nominative +genitive +133099 dative +nominative +nominative +accusative +accusative +genitive +133106 accusative +accusative +genitive +133110 accusative +accusative +133113 accusative +133115 genitive +genitive +genitive +133119 accusative +133121 accusative +133123 nominative +nominative +genitive +genitive +genitive +133131 nominative +nominative +nominative +133135 genitive +genitive +133139 dative +dative +133143 accusative +accusative +dative +dative +133149 dative +dative +nominative +nominative +nominative +dative +dative +133157 nominative +133161 genitive +133164 dative +nominative +nominative +accusative +133169 accusative +133172 dative +nominative +133175 accusative +133180 accusative +accusative +genitive +133184 accusative +133186 accusative +accusative +133189 accusative +accusative +genitive +133193 accusative +accusative +genitive +accusative +133198 dative +dative +accusative +133203 dative +133205 accusative +133207 genitive +genitive +133211 accusative +133214 dative +nominative +133217 accusative +accusative +133220 accusative +133222 accusative +133224 accusative +133227 accusative +nominative +nominative +nominative +133232 genitive +genitive +133236 genitive +nominative +nominative +genitive +133241 dative +dative +genitive +genitive +genitive +genitive +genitive +genitive +133250 genitive +genitive +133253 nominative +133255 accusative +133258 nominative +133260 accusative +133262 accusative +133265 nominative +133267 dative +133270 accusative +133272 dative +133276 nominative +nominative +133279 nominative +nominative +genitive +genitive +133285 accusative +accusative +accusative +133289 genitive +genitive +133293 accusative +133295 accusative +dative +133300 nominative +133302 accusative +accusative +genitive +genitive +genitive +accusative +133310 genitive +133313 accusative +accusative +133316 accusative +133318 dative +accusative +133322 accusative +accusative +accusative +accusative +genitive +133328 nominative +nominative +genitive +genitive +genitive +133335 accusative +accusative +133340 accusative +133342 genitive +genitive +133346 accusative +accusative +133349 genitive +genitive +133353 accusative +accusative +133356 genitive +genitive +133359 accusative +accusative +nominative +133363 dative +133366 genitive +genitive +nominative +dative +dative +133372 genitive +genitive +133375 accusative +dative +dative +nominative +133380 accusative +accusative +genitive +genitive +133388 dative +133390 accusative +dative +dative +genitive +genitive +133398 nominative +nominative +genitive +genitive +133406 nominative +133409 dative +dative +genitive +genitive +133416 accusative +accusative +accusative +133420 accusative +accusative +133423 accusative +accusative +133426 accusative +accusative +133429 accusative +accusative +133432 accusative +accusative +133436 dative +accusative +133439 genitive +genitive +genitive +genitive +genitive +133446 accusative +accusative +genitive +133452 nominative +133459 nominative +nominative +accusative +accusative +accusative +accusative +genitive +genitive +133468 accusative +accusative +genitive +genitive +genitive +133474 nominative +nominative +133477 nominative +nominative +accusative +133481 accusative +accusative +genitive +genitive +133486 nominative +genitive +133490 nominative +nominative +genitive +nominative +133500 nominative +nominative +nominative +133504 accusative +accusative +genitive +133509 genitive +133512 nominative +nominative +nominative +accusative +accusative +genitive +133519 accusative +accusative +genitive +genitive +genitive +accusative +133526 genitive +genitive +genitive +133531 accusative +133533 genitive +genitive +133536 accusative +genitive +genitive +133541 accusative +genitive +genitive +133545 nominative +nominative +accusative +133550 genitive +genitive +133553 dative +dative +genitive +133558 accusative +accusative +133561 genitive +genitive +133565 genitive +genitive +genitive +133569 genitive +genitive +133572 nominative +133575 accusative +accusative +133579 nominative +133582 nominative +nominative +nominative +nominative +133587 genitive +genitive +nominative +133591 nominative +133593 genitive +133597 nominative +133599 nominative +nominative +nominative +dative +dative +133607 nominative +133610 genitive +genitive +nominative +dative +dative +133616 dative +dative +133620 dative +dative +genitive +133625 nominative +nominative +133630 accusative +accusative +accusative +133634 dative +accusative +accusative +accusative +133640 accusative +accusative +133643 genitive +genitive +133647 accusative +accusative +133650 accusative +133652 accusative +133654 accusative +nominative +133657 dative +dative +133660 accusative +accusative +133664 dative +accusative +133668 nominative +nominative +genitive +genitive +genitive +133675 dative +dative +accusative +accusative +133680 accusative +accusative +133683 accusative +133685 accusative +genitive +133688 nominative +nominative +nominative +133692 nominative +133695 nominative +nominative +nominative +nominative +133700 genitive +genitive +genitive +genitive +genitive +genitive +genitive +133708 accusative +accusative +accusative +133712 nominative +nominative +nominative +133716 dative +nominative +133719 dative +dative +133722 nominative +133724 accusative +accusative +133727 accusative +accusative +genitive +133732 accusative +133734 genitive +genitive +genitive +133739 accusative +accusative +genitive +133743 nominative +133746 genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +133756 dative +dative +genitive +genitive +genitive +133764 dative +133766 dative +133768 genitive +genitive +133772 genitive +genitive +133775 nominative +nominative +genitive +genitive +genitive +133781 accusative +genitive +133787 accusative +genitive +133790 genitive +nominative +nominative +accusative +accusative +133796 accusative +accusative +genitive +133801 nominative +133803 accusative +accusative +genitive +genitive +genitive +133810 nominative +nominative +genitive +genitive +nominative +nominative +accusative +accusative +genitive +genitive +133821 accusative +accusative +genitive +133826 genitive +133828 genitive +genitive +genitive +133832 nominative +nominative +nominative +nominative +133837 dative +nominative +133842 nominative +nominative +133847 genitive +genitive +genitive +133851 nominative +nominative +genitive +133856 genitive +133861 nominative +nominative +133865 accusative +accusative +accusative +accusative +accusative +genitive +nominative +133873 genitive +genitive +genitive +accusative +accusative +133880 dative +dative +genitive +accusative +accusative +133886 nominative +nominative +133890 genitive +genitive +nominative +133894 dative +dative +dative +dative +133899 genitive +genitive +133902 accusative +accusative +genitive +133909 nominative +nominative +133914 nominative +nominative +genitive +genitive +133920 nominative +nominative +133923 genitive +genitive +accusative +accusative +genitive +133929 accusative +accusative +133933 nominative +nominative +133936 nominative +nominative +133940 genitive +genitive +genitive +133944 dative +dative +nominative +133948 nominative +accusative +accusative +133952 nominative +nominative +nominative +nominative +accusative +133958 genitive +genitive +133962 genitive +genitive +133966 dative +dative +dative +dative +accusative +accusative +accusative +accusative +nominative +133976 genitive +accusative +accusative +accusative +accusative +133983 accusative +accusative +genitive +genitive +genitive +genitive +133991 nominative +nominative +genitive +133996 nominative +nominative +accusative +accusative +genitive +134002 accusative +accusative +134006 accusative +accusative +genitive +genitive +134013 accusative +accusative +genitive +genitive +genitive +genitive +accusative +accusative +134023 nominative +nominative +134026 genitive +genitive +134030 nominative +134032 genitive +genitive +134035 genitive +genitive +genitive +genitive +134040 genitive +genitive +genitive +134045 accusative +accusative +134048 dative +dative +accusative +134052 accusative +accusative +134055 accusative +accusative +134058 accusative +accusative +134062 dative +134064 nominative +nominative +genitive +genitive +134071 accusative +accusative +accusative +dative +134076 accusative +accusative +134079 genitive +genitive +134083 genitive +genitive +genitive +134088 genitive +genitive +genitive +genitive +genitive +accusative +134095 accusative +accusative +accusative +accusative +accusative +accusative +genitive +genitive +134105 accusative +accusative +genitive +genitive +genitive +genitive +genitive +134113 accusative +accusative +genitive +genitive +nominative +nominative +134120 nominative +nominative +nominative +genitive +vocative +nominative +nominative +nominative +nominative +nominative +134131 nominative +nominative +nominative +genitive +nominative +nominative +genitive +genitive +nominative +134143 vocative +134146 accusative +accusative +genitive +134150 nominative +nominative +134153 nominative +nominative +nominative +134160 genitive +134162 nominative +nominative +genitive +134168 accusative +134172 nominative +nominative +genitive +genitive +genitive +genitive +134179 dative +dative +134183 nominative +134185 nominative +nominative +nominative +accusative +134190 accusative +134192 genitive +genitive +nominative +accusative +accusative +accusative +134199 nominative +134201 accusative +accusative +accusative +accusative +134206 nominative +134208 genitive +genitive +genitive +134212 dative +134214 dative +134216 accusative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +134226 accusative +accusative +genitive +genitive +134232 nominative +nominative +genitive +134236 genitive +genitive +genitive +genitive +134242 genitive +genitive +genitive +134246 nominative +134250 accusative +accusative +134254 nominative +134256 nominative +genitive +134259 genitive +134262 genitive +genitive +134265 genitive +genitive +genitive +dative +134270 dative +134274 accusative +134276 accusative +genitive +genitive +genitive +genitive +134282 accusative +accusative +134286 nominative +nominative +134290 accusative +accusative +genitive +134294 accusative +accusative +134298 nominative +nominative +134301 nominative +134303 accusative +accusative +accusative +accusative +accusative +accusative +genitive +genitive +134312 accusative +accusative +dative +dative +genitive +134318 nominative +nominative +134321 accusative +accusative +genitive +134325 accusative +accusative +134329 nominative +134331 genitive +134333 nominative +nominative +genitive +nominative +134338 dative +dative +134342 nominative +nominative +134345 accusative +accusative +genitive +134349 accusative +accusative +134352 accusative +accusative +genitive +genitive +134358 nominative +134361 genitive +genitive +genitive +genitive +genitive +nominative +134368 nominative +nominative +134371 nominative +134373 nominative +nominative +134376 accusative +134379 accusative +genitive +134382 genitive +134385 accusative +dative +134389 nominative +134393 genitive +genitive +genitive +134397 vocative +nominative +nominative +nominative +nominative +nominative +134404 nominative +nominative +nominative +genitive +134409 nominative +nominative +134412 accusative +accusative +genitive +134416 accusative +accusative +134420 dative +134422 accusative +accusative +134425 dative +134428 nominative +nominative +accusative +accusative +134434 accusative +accusative +genitive +genitive +genitive +genitive +accusative +accusative +134443 accusative +accusative +accusative +134450 dative +accusative +134453 nominative +nominative +134456 accusative +accusative +genitive +134460 accusative +accusative +genitive +genitive +134466 nominative +nominative +genitive +nominative +134472 accusative +accusative +genitive +134476 genitive +genitive +134480 accusative +accusative +genitive +genitive +134485 genitive +genitive +genitive +134490 genitive +genitive +genitive +134497 genitive +genitive +genitive +134501 nominative +nominative +134504 accusative +accusative +genitive +134508 accusative +accusative +accusative +accusative +accusative +134515 nominative +nominative +genitive +134520 nominative +nominative +genitive +genitive +genitive +134526 genitive +genitive +134531 genitive +genitive +genitive +genitive +134537 genitive +genitive +genitive +genitive +134543 genitive +genitive +genitive +genitive +accusative +accusative +accusative +134551 nominative +134554 nominative +genitive +nominative +accusative +nominative +134561 accusative +accusative +genitive +genitive +genitive +134567 accusative +134569 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +134582 nominative +nominative +nominative +nominative +134587 nominative +accusative +accusative +genitive +134593 nominative +134597 accusative +accusative +genitive +134602 accusative +134604 accusative +accusative +accusative +accusative +134609 accusative +134611 nominative +nominative +134614 accusative +accusative +genitive +134618 accusative +accusative +134622 nominative +nominative +134625 genitive +genitive +134628 genitive +genitive +nominative +134634 nominative +134636 nominative +134638 nominative +134640 nominative +nominative +134643 nominative +134647 genitive +nominative +134651 genitive +genitive +nominative +nominative +134656 nominative +134659 nominative +nominative +nominative +nominative +134664 accusative +accusative +134667 nominative +nominative +genitive +genitive +134673 nominative +nominative +nominative +134678 genitive +genitive +134681 dative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +134692 nominative +nominative +134696 nominative +134700 nominative +nominative +134703 nominative +134706 genitive +genitive +134709 accusative +accusative +134713 nominative +nominative +accusative +accusative +134718 genitive +genitive +genitive +genitive +134723 nominative +134725 nominative +nominative +genitive +134731 nominative +134733 genitive +134735 genitive +genitive +genitive +accusative +134740 accusative +134744 genitive +nominative +134748 dative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +134758 genitive +genitive +134761 genitive +134763 nominative +nominative +genitive +genitive +134769 nominative +nominative +accusative +accusative +134774 genitive +genitive +genitive +genitive +genitive +134781 accusative +134783 accusative +134785 dative +134788 accusative +accusative +134791 accusative +accusative +accusative +accusative +genitive +nominative +accusative +134800 accusative +134803 nominative +nominative +134806 nominative +accusative +134809 accusative +134811 nominative +dative +134814 dative +dative +134817 dative +nominative +134820 dative +dative +genitive +accusative +accusative +accusative +genitive +134828 accusative +accusative +genitive +genitive +genitive +134835 accusative +accusative +genitive +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +134849 genitive +genitive +genitive +genitive +134855 accusative +accusative +accusative +134859 genitive +genitive +genitive +genitive +134865 genitive +genitive +genitive +genitive +genitive +134872 nominative +accusative +accusative +accusative +134878 dative +nominative +nominative +134882 accusative +134884 nominative +134886 dative +accusative +accusative +genitive +genitive +134892 genitive +genitive +genitive +genitive +accusative +genitive +genitive +accusative +134901 accusative +134903 accusative +134905 accusative +nominative +nominative +accusative +134918 genitive +genitive +134922 accusative +134926 nominative +nominative +134929 genitive +genitive +genitive +nominative +nominative +134937 accusative +accusative +genitive +genitive +134942 genitive +genitive +genitive +nominative +nominative +134955 nominative +nominative +nominative +nominative +accusative +nominative +134962 nominative +134964 nominative +134967 nominative +nominative +134971 genitive +134973 nominative +134976 nominative +134979 nominative +nominative +134982 nominative +nominative +134989 accusative +accusative +134994 nominative +nominative +nominative +135002 nominative +nominative +135007 genitive +135012 accusative +135015 nominative +135017 nominative +accusative +135022 nominative +nominative +accusative +135028 accusative +135030 nominative +accusative +accusative +135035 genitive +genitive +nominative +accusative +accusative +135042 accusative +accusative +135045 accusative +genitive +dative +dative +135050 nominative +135052 genitive +genitive +135056 nominative +nominative +135059 accusative +135062 nominative +genitive +135065 nominative +genitive +135068 nominative +135070 genitive +nominative +135073 nominative +135075 nominative +135078 dative +nominative +nominative +accusative +135084 nominative +nominative +135088 nominative +135090 nominative +135092 nominative +135094 nominative +135096 nominative +135098 nominative +accusative +135102 nominative +nominative +nominative +135106 accusative +accusative +135110 accusative +accusative +135113 accusative +135115 accusative +accusative +genitive +135120 accusative +135123 dative +135125 nominative +nominative +135129 accusative +accusative +genitive +135133 accusative +accusative +genitive +135138 accusative +accusative +135142 accusative +accusative +genitive +dative +dative +135149 nominative +nominative +genitive +genitive +135154 nominative +nominative +accusative +135159 nominative +nominative +nominative +nominative +nominative +nominative +accusative +135167 genitive +genitive +genitive +genitive +135172 accusative +135174 accusative +accusative +accusative +135178 genitive +genitive +accusative +accusative +accusative +135184 nominative +nominative +135188 genitive +genitive +genitive +135194 dative +dative +nominative +135199 nominative +nominative +nominative +135204 nominative +genitive +135207 nominative +genitive +genitive +genitive +135212 nominative +genitive +genitive +genitive +135217 genitive +135220 genitive +genitive +genitive +genitive +genitive +genitive +genitive +135228 nominative +nominative +nominative +135232 nominative +nominative +genitive +genitive +135237 genitive +135240 nominative +nominative +genitive +genitive +135245 genitive +genitive +genitive +genitive +genitive +135253 accusative +accusative +135256 genitive +genitive +accusative +nominative +nominative +genitive +135264 genitive +135268 dative +dative +genitive +135274 genitive +genitive +genitive +135281 genitive +nominative +nominative +135285 genitive +genitive +135289 nominative +nominative +accusative +accusative +genitive +135295 dative +135298 nominative +135302 accusative +accusative +135305 accusative +accusative +genitive +135309 dative +dative +dative +135314 dative +accusative +accusative +135318 accusative +135321 accusative +accusative +135324 accusative +135326 dative +135329 dative +dative +genitive +135335 nominative +135337 nominative +135341 accusative +135346 accusative +135348 dative +dative +135351 nominative +nominative +genitive +nominative +135356 nominative +135358 nominative +135361 dative +135364 nominative +nominative +nominative +nominative +nominative +nominative +accusative +135376 accusative +nominative +nominative +genitive +genitive +nominative +135383 genitive +nominative +135386 nominative +135389 accusative +accusative +genitive +genitive +genitive +135396 nominative +135398 accusative +accusative +genitive +genitive +genitive +nominative +135406 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +135416 dative +dative +135419 nominative +nominative +genitive +135423 nominative +nominative +genitive +genitive +135431 accusative +135433 nominative +135436 accusative +accusative +genitive +accusative +genitive +135442 genitive +135444 genitive +genitive +135447 genitive +135449 genitive +135451 genitive +135453 genitive +135455 genitive +135457 accusative +accusative +accusative +135461 accusative +accusative +accusative +135465 accusative +accusative +135468 genitive +genitive +135471 genitive +135473 genitive +135475 genitive +135477 accusative +135479 accusative +135481 accusative +135483 accusative +135485 accusative +135487 accusative +135489 accusative +135491 accusative +135493 accusative +135495 accusative +135497 accusative +135499 genitive +135501 genitive +135503 genitive +135505 accusative +genitive +135508 nominative +nominative +genitive +genitive +genitive +genitive +genitive +135517 genitive +135519 nominative +nominative +nominative +135523 nominative +nominative +135527 genitive +135532 accusative +135534 nominative +nominative +genitive +nominative +nominative +135540 genitive +135545 accusative +accusative +genitive +genitive +genitive +nominative +135552 nominative +nominative +135556 nominative +nominative +nominative +nominative +nominative +nominative +accusative +135564 accusative +135566 accusative +135568 nominative +135570 dative +135572 dative +dative +135575 dative +135577 dative +dative +135580 nominative +nominative +nominative +135584 nominative +nominative +135587 nominative +nominative +135590 accusative +nominative +135593 nominative +135595 nominative +accusative +accusative +135604 nominative +accusative +accusative +genitive +genitive +genitive +nominative +nominative +nominative +dative +dative +dative +dative +135619 accusative +135621 accusative +accusative +genitive +135626 nominative +135628 nominative +nominative +135632 nominative +nominative +nominative +nominative +135637 dative +135639 nominative +nominative +nominative +accusative +accusative +135645 dative +dative +135648 genitive +genitive +genitive +135652 dative +dative +135657 dative +vocative +135660 nominative +nominative +135663 nominative +nominative +135666 nominative +nominative +135670 nominative +nominative +accusative +accusative +genitive +135676 genitive +135679 nominative +nominative +nominative +accusative +135684 accusative +accusative +135689 accusative +accusative +nominative +135693 dative +135695 nominative +nominative +nominative +nominative +135705 nominative +genitive +135708 genitive +135710 genitive +135712 genitive +135717 dative +135720 nominative +nominative +genitive +genitive +135728 dative +135731 nominative +genitive +135737 dative +135740 nominative +genitive +135746 dative +135749 nominative +genitive +135752 genitive +135757 dative +135760 nominative +nominative +genitive +135764 nominative +nominative +genitive +genitive +135770 dative +dative +genitive +135774 nominative +nominative +nominative +135779 dative +135781 nominative +genitive +135784 genitive +135786 genitive +genitive +genitive +135790 genitive +genitive +135793 accusative +135796 accusative +accusative +genitive +genitive +135801 dative +dative +genitive +135805 nominative +nominative +135808 nominative +nominative +135811 nominative +nominative +genitive +genitive +genitive +135817 nominative +135819 nominative +nominative +nominative +genitive +135825 accusative +accusative +accusative +accusative +nominative +135831 accusative +accusative +135834 dative +dative +genitive +135839 accusative +accusative +genitive +genitive +genitive +135845 genitive +genitive +135848 accusative +135852 nominative +nominative +genitive +135857 accusative +accusative +genitive +genitive +135863 nominative +nominative +nominative +135867 nominative +135869 nominative +nominative +nominative +135874 dative +dative +dative +dative +135879 dative +dative +nominative +135885 nominative +135887 genitive +genitive +135890 nominative +135892 dative +dative +genitive +nominative +nominative +nominative +genitive +nominative +nominative +accusative +nominative +nominative +135905 nominative +nominative +135910 accusative +genitive +genitive +135915 accusative +genitive +genitive +135920 accusative +genitive +genitive +genitive +135927 nominative +nominative +nominative +genitive +nominative +nominative +135938 accusative +accusative +dative +135943 nominative +nominative +genitive +genitive +135948 nominative +nominative +genitive +135952 accusative +135955 dative +135958 accusative +accusative +accusative +135962 nominative +nominative +nominative +nominative +genitive +genitive +135971 dative +135973 nominative +nominative +135976 accusative +accusative +genitive +genitive +genitive +genitive +nominative +135985 dative +nominative +nominative +nominative +nominative +genitive +genitive +135996 genitive +genitive +genitive +136000 dative +136003 dative +136007 nominative +genitive +136010 genitive +genitive +genitive +genitive +genitive +accusative +accusative +genitive +dative +dative +136022 nominative +nominative +genitive +136026 nominative +nominative +genitive +genitive +136032 accusative +accusative +accusative +136037 nominative +nominative +136040 nominative +nominative +136043 accusative +nominative +nominative +136047 nominative +136050 dative +136055 nominative +nominative +genitive +nominative +genitive +136062 accusative +accusative +genitive +nominative +nominative +nominative +accusative +accusative +accusative +nominative +136075 nominative +136077 nominative +accusative +accusative +dative +136083 nominative +nominative +genitive +nominative +nominative +genitive +genitive +136091 nominative +nominative +nominative +136095 dative +dative +136098 dative +136100 dative +dative +nominative +accusative +accusative +accusative +136108 genitive +genitive +genitive +136112 nominative +nominative +136116 dative +136118 accusative +accusative +136121 nominative +136123 accusative +136125 dative +dative +136128 nominative +136130 accusative +accusative +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +genitive +136145 accusative +accusative +136149 accusative +accusative +genitive +accusative +accusative +nominative +genitive +136157 nominative +genitive +136161 accusative +accusative +accusative +136165 dative +dative +136170 dative +dative +nominative +dative +dative +dative +dative +dative +136179 dative +136183 accusative +accusative +accusative +accusative +genitive +genitive +136191 accusative +genitive +136194 accusative +genitive +136197 accusative +genitive +136200 accusative +genitive +136203 genitive +genitive +136206 genitive +136208 accusative +genitive +136211 genitive +136213 genitive +136215 genitive +136217 genitive +136220 accusative +accusative +136223 accusative +accusative +genitive +genitive +136228 accusative +accusative +genitive +accusative +136233 accusative +accusative +136236 genitive +genitive +136239 genitive +genitive +136243 genitive +genitive +genitive +136248 nominative +nominative +136252 genitive +nominative +nominative +nominative +nominative +accusative +accusative +136260 genitive +136262 dative +136264 accusative +accusative +accusative +accusative +genitive +genitive +136271 accusative +accusative +dative +dative +genitive +nominative +136278 nominative +136281 accusative +accusative +genitive +genitive +genitive +genitive +136288 dative +136290 nominative +nominative +136294 dative +dative +genitive +genitive +136299 genitive +genitive +dative +dative +136304 genitive +genitive +genitive +136308 nominative +nominative +nominative +136313 genitive +genitive +genitive +136318 accusative +accusative +136321 genitive +genitive +accusative +accusative +accusative +genitive +genitive +136329 accusative +accusative +136332 accusative +accusative +genitive +136337 accusative +accusative +nominative +nominative +nominative +nominative +nominative +136345 nominative +136347 nominative +nominative +136351 accusative +accusative +accusative +136356 accusative +136358 accusative +accusative +136365 genitive +136370 accusative +accusative +136374 nominative +nominative +nominative +136378 accusative +136381 accusative +accusative +accusative +136386 accusative +136390 accusative +136392 nominative +136394 dative +136396 accusative +accusative +genitive +genitive +136401 accusative +accusative +genitive +136406 accusative +accusative +genitive +genitive +136411 nominative +136414 accusative +accusative +136417 accusative +accusative +genitive +136423 accusative +accusative +136426 accusative +accusative +136430 accusative +accusative +genitive +136438 genitive +genitive +accusative +accusative +nominative +nominative +genitive +genitive +136450 nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +136460 nominative +nominative +nominative +accusative +136465 dative +dative +dative +dative +136470 genitive +nominative +nominative +nominative +136476 accusative +136479 nominative +genitive +genitive +136483 genitive +genitive +136488 genitive +accusative +accusative +accusative +136495 nominative +nominative +nominative +136499 nominative +nominative +136502 genitive +genitive +genitive +136508 accusative +accusative +accusative +136512 dative +dative +dative +genitive +genitive +accusative +accusative +136520 accusative +136522 accusative +136524 accusative +accusative +genitive +nominative +nominative +genitive +136531 nominative +nominative +genitive +genitive +136538 accusative +accusative +genitive +genitive +136544 accusative +accusative +genitive +genitive +136549 accusative +accusative +accusative +accusative +136555 nominative +136557 genitive +genitive +136561 accusative +136563 nominative +nominative +nominative +nominative +accusative +136570 accusative +accusative +genitive +genitive +136575 genitive +136578 nominative +nominative +136581 nominative +nominative +136585 genitive +136587 genitive +136589 accusative +accusative +genitive +genitive +136595 accusative +accusative +accusative +136599 accusative +accusative +136602 accusative +136604 genitive +genitive +genitive +136608 nominative +nominative +136611 nominative +nominative +136614 nominative +136617 dative +136620 accusative +accusative +accusative +accusative +136625 accusative +accusative +accusative +136629 genitive +genitive +136632 nominative +136635 nominative +nominative +136638 nominative +136640 genitive +genitive +136644 nominative +nominative +136647 genitive +genitive +136650 dative +dative +136653 accusative +accusative +genitive +136658 nominative +nominative +accusative +accusative +accusative +136664 dative +136666 nominative +nominative +136669 nominative +nominative +136672 accusative +accusative +accusative +136676 dative +136679 nominative +136681 accusative +accusative +genitive +136685 nominative +nominative +136688 nominative +nominative +136692 accusative +accusative +genitive +genitive +nominative +nominative +nominative +nominative +nominative +nominative +nominative +genitive +genitive +136708 nominative +136712 dative +dative +genitive +genitive +nominative +136719 accusative +accusative +genitive +genitive +136725 accusative +accusative +136728 accusative +accusative +136731 nominative +nominative +nominative +136735 nominative +nominative +nominative +136740 nominative +nominative +136747 accusative +accusative +accusative +accusative +accusative +accusative +accusative +136755 genitive +genitive +136758 genitive +genitive +accusative +136762 accusative +accusative +dative +dative +genitive +136769 genitive +genitive +136772 genitive +genitive +genitive +136776 nominative +nominative +genitive +genitive +136781 genitive +genitive +136786 genitive +136788 nominative +nominative +genitive +136793 nominative +nominative +nominative +136797 genitive +136801 accusative +accusative +136804 genitive +genitive +genitive +136808 nominative +nominative +136814 nominative +136816 nominative +136818 nominative +136823 nominative +nominative +136828 nominative +nominative +136831 dative +dative +136834 accusative +136836 accusative +136841 nominative +nominative +nominative +nominative +136846 nominative +136850 dative +136852 nominative +nominative +nominative +136856 nominative +nominative +nominative +nominative +136861 nominative +nominative +nominative +dative +dative +136868 genitive +genitive +genitive +genitive +genitive +genitive +136875 nominative +nominative +136878 accusative +136881 dative +nominative +136884 nominative +136886 dative +nominative +136889 dative +dative +136892 dative +136894 dative +136896 dative +136898 dative +136900 dative +136902 dative +136904 dative +dative +dative +nominative +nominative +genitive +136911 dative +dative +dative +dative +dative +136917 dative +nominative +136920 nominative +nominative +nominative +nominative +136926 nominative +136928 genitive +136930 genitive +genitive +genitive +accusative +136935 accusative +genitive +genitive +genitive +136940 genitive +genitive +genitive +136946 genitive +nominative +136950 dative +accusative +accusative +accusative +accusative +genitive +genitive +136959 accusative +136961 dative +136963 accusative +accusative +136966 accusative +136969 dative +accusative +accusative +accusative +accusative +accusative +accusative +136977 genitive +genitive +136980 genitive +genitive +accusative +accusative +accusative +genitive +genitive +nominative +nominative +genitive +nominative +dative +dative +136994 dative +dative +dative +nominative +accusative +accusative +137001 accusative +nominative +accusative +137007 dative +dative +accusative +137012 accusative +accusative +nominative +137016 genitive +137018 genitive +genitive +genitive +137022 genitive +nominative +nominative +137027 genitive +nominative +nominative +137032 genitive +nominative +nominative +137037 genitive +nominative +nominative +137041 nominative +nominative +genitive +genitive +nominative +accusative +137050 genitive +137052 accusative +genitive +137055 genitive +genitive +genitive +137059 nominative +nominative +137062 genitive +137064 accusative +accusative +accusative +137069 accusative +accusative +137072 accusative +accusative +genitive +137076 accusative +accusative +genitive +137080 nominative +nominative +nominative +137085 nominative +nominative +genitive +nominative +nominative +nominative +137093 accusative +accusative +dative +dative +137098 genitive +137100 genitive +nominative +nominative +137104 nominative +nominative +137107 nominative +nominative +genitive +nominative +137114 accusative +accusative +genitive +137119 genitive +genitive +accusative +genitive +nominative +137125 genitive +137127 nominative +nominative +genitive +genitive +genitive +nominative +137134 nominative +nominative +nominative +nominative +nominative +dative +dative +nominative +nominative +genitive +genitive +genitive +genitive +dative +dative +dative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +nominative +137190 nominative +137192 nominative +137194 nominative +137196 nominative +nominative +genitive +genitive +137202 genitive +genitive +137205 nominative +nominative +genitive +genitive +nominative +nominative +137212 nominative +nominative +137215 accusative +137219 dative +137221 nominative +nominative +nominative +nominative +nominative +nominative +137228 nominative +nominative +nominative +genitive +137234 nominative +nominative +137238 accusative +genitive +genitive +137242 genitive +genitive +137246 dative +137248 nominative +nominative +genitive +genitive +137253 accusative +137255 nominative +nominative +genitive +nominative +nominative +137262 nominative +nominative +137265 genitive +genitive +genitive +137269 nominative +nominative +genitive +genitive +137274 accusative +accusative +genitive +137278 accusative +137280 nominative +nominative +genitive +137286 genitive +137288 nominative +137294 accusative +accusative +137297 accusative +accusative +genitive +genitive +137302 accusative +137308 accusative +nominative +nominative +137312 nominative +nominative +accusative +137316 accusative +137319 nominative +nominative +137322 dative +dative +genitive +genitive +genitive +genitive +137330 dative +accusative +genitive +genitive +accusative +137336 accusative +accusative +137339 genitive +genitive +genitive +genitive +137344 genitive +genitive +137347 dative +genitive +genitive +genitive +137352 genitive +genitive +137357 nominative +genitive +nominative +accusative +137363 accusative +accusative +nominative +accusative +accusative +genitive +137370 nominative +nominative +genitive +genitive +137375 accusative +genitive +genitive +137379 nominative +nominative +137385 nominative +nominative +genitive +genitive +137390 genitive +genitive +137393 dative +137396 nominative +nominative +genitive +137400 dative +137403 accusative +accusative +genitive +137407 nominative +nominative +genitive +137411 genitive +genitive +genitive +137415 nominative +137422 accusative +genitive +genitive +137426 genitive +genitive +137429 nominative +nominative +nominative +137434 accusative +137438 accusative +accusative +genitive +genitive +137444 dative +nominative +nominative +nominative +nominative +137450 nominative +137452 nominative +nominative +nominative +nominative +genitive +genitive +genitive +genitive +137461 accusative +accusative +genitive +137465 dative +dative +genitive +accusative +137471 dative +137476 accusative +nominative +nominative +nominative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +nominative +nominative +nominative +nominative +137492 nominative +accusative +137502 genitive +genitive +genitive +genitive +genitive +genitive +dative +accusative +137512 dative +137516 nominative +genitive +137519 genitive +genitive +genitive +genitive +genitive +137525 genitive +genitive +accusative +accusative +genitive +genitive +genitive +dative +dative +137537 dative +137540 accusative +accusative +genitive +genitive +genitive +genitive +genitive +137548 nominative +nominative +137552 nominative +nominative +137557 nominative +nominative +137562 nominative +nominative +accusative +137568 nominative +nominative +137574 accusative +137576 nominative +nominative +genitive +137580 genitive +137582 dative +137584 nominative +nominative +genitive +137588 nominative +nominative +nominative +137592 nominative +nominative +nominative +nominative +137597 nominative +nominative +nominative +nominative +137602 nominative +nominative +nominative +nominative +nominative +accusative +accusative +genitive +137612 nominative +nominative +genitive +137616 accusative +accusative +genitive +genitive +137621 dative +dative +137625 accusative +accusative +137628 nominative +nominative +137631 nominative +nominative +137634 nominative +nominative +137637 nominative +nominative +137640 nominative +nominative +137643 nominative +nominative +137646 nominative +accusative +nominative +nominative +137651 accusative +accusative +genitive +137655 dative +accusative +137658 dative +dative +nominative +137662 nominative +nominative +137665 nominative +nominative +genitive +nominative +nominative +nominative +nominative +nominative +nominative +137675 nominative +nominative +137678 nominative +nominative +137683 nominative +nominative +137688 nominative +nominative +137691 nominative +nominative +137694 accusative +genitive +137698 nominative +dative +dative +dative +accusative +accusative +genitive +genitive +genitive +genitive +genitive +137710 nominative +137713 accusative +137715 nominative +nominative +137718 accusative +accusative +accusative +accusative +accusative +137724 dative +dative +dative +137729 nominative +137732 genitive +genitive +genitive +genitive +genitive +genitive +genitive +137740 nominative +nominative +accusative +accusative +genitive +137746 genitive +genitive +genitive +genitive +137752 genitive +genitive +genitive +genitive +genitive +genitive +137759 dative +dative +dative +137763 nominative +nominative +accusative +137768 accusative +137771 vocative +vocative +nominative +nominative +genitive +genitive +genitive +137779 genitive diff --git a/tf/0.1.1/chapter.tf b/tf/0.1.1/chapter.tf new file mode 100644 index 0000000..3aa3968 --- /dev/null +++ b/tf/0.1.1/chapter.tf @@ -0,0 +1,138053 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Number of the chapter +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=int +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +137807 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +1 +2 +3 +4 +1 +2 +3 +4 +5 +1 +2 +3 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +1 +2 +3 +1 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +1 +2 +3 +1 +2 +3 +4 +5 +1 +1 +1 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 diff --git a/tf/0.1.1/class.tf b/tf/0.1.1/class.tf new file mode 100644 index 0000000..2e1f48b --- /dev/null +++ b/tf/0.1.1/class.tf @@ -0,0 +1,210581 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute class +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +noun +noun +noun +noun +noun +noun +noun +noun +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +det +noun +pron +conj +noun +verb +det +noun +conj +det +noun +prep +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +prep +det +noun +conj +noun +verb +det +noun +prep +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +det +noun +conj +noun +verb +det +noun +prep +det +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +det +noun +pron +prep +det +noun +noun +conj +prep +det +noun +noun +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +conj +noun +verb +det +noun +det +noun +noun +prep +pron +verb +noun +det +verb +noun +conj +adj +det +noun +prep +noun +prep +noun +noun +adj +conj +prep +noun +prep +det +noun +noun +noun +adj +conj +prep +det +noun +noun +prep +det +noun +noun +adj +conj +det +noun +noun +det +noun +adv +verb +verb +det +noun +pron +noun +det +noun +adv +conj +verb +pron +verb +prep +noun +verb +prep +noun +adj +conj +noun +det +noun +pron +adj +verb +conj +adv +verb +pron +verb +verb +adv +verb +pron +conj +pron +pron +verb +verb +noun +noun +prep +noun +verb +pron +verb +noun +noun +noun +adv +verb +verb +noun +det +noun +pron +conj +det +prep +pron +verb +prep +noun +adj +verb +conj +verb +noun +conj +verb +det +noun +pron +noun +conj +pron +verb +det +noun +pron +prep +det +noun +pron +conj +pron +adj +verb +conj +verb +det +verb +prep +noun +prep +det +noun +verb +verb +det +noun +prep +noun +verb +conj +verb +noun +conj +verb +det +noun +pron +noun +pron +verb +verb +prep +pron +det +noun +conj +det +noun +verb +prep +det +noun +verb +conj +verb +pron +det +noun +noun +conj +verb +det +noun +pron +conj +adv +verb +pron +prep +pron +verb +noun +conj +verb +det +noun +pron +noun +conj +det +noun +verb +prep +noun +det +noun +prep +noun +noun +det +noun +verb +noun +prep +noun +verb +prep +noun +verb +adv +verb +det +verb +noun +det +adj +conj +verb +pron +det +noun +prep +det +noun +conj +verb +verb +pron +conj +verb +det +noun +noun +verb +conj +adj +noun +prep +pron +conj +verb +adj +det +noun +conj +noun +det +noun +verb +prep +pron +adv +det +noun +verb +conj +det +verb +pron +prep +noun +det +noun +conj +adv +verb +prep +det +noun +conj +noun +noun +noun +pron +adv +adj +verb +prep +det +noun +noun +conj +prep +pron +verb +verb +pron +verb +det +noun +pron +det +noun +adv +noun +adv +verb +det +noun +verb +prep +pron +det +noun +det +verb +noun +conj +verb +pron +prep +noun +verb +verb +verb +adv +prep +det +noun +conj +conj +verb +verb +pron +conj +pron +verb +verb +pron +conj +det +verb +det +noun +verb +conj +verb +det +noun +pron +verb +prep +det +noun +verb +pron +conj +verb +verb +prep +adv +verb +det +noun +conj +verb +det +noun +verb +noun +adj +adv +conj +verb +prep +det +noun +verb +det +noun +prep +noun +det +noun +pron +conj +verb +verb +pron +conj +verb +det +noun +pron +verb +pron +noun +noun +conj +noun +conj +noun +conj +verb +prep +noun +adv +verb +prep +noun +prep +adj +noun +verb +prep +det +noun +pron +conj +verb +pron +verb +noun +noun +verb +prep +noun +det +noun +verb +verb +verb +det +noun +conj +det +noun +pron +conj +verb +prep +noun +conj +verb +adv +conj +ptcl +verb +pron +conj +verb +noun +verb +det +noun +det +verb +pron +conj +det +verb +verb +det +noun +conj +det +noun +pron +noun +conj +verb +prep +noun +conj +verb +adv +prep +det +noun +noun +conj +verb +det +verb +prep +noun +prep +det +noun +verb +prep +noun +verb +det +noun +pron +adv +noun +verb +conj +verb +prep +det +noun +verb +adv +conj +verb +verb +adj +det +noun +det +prep +noun +conj +prep +adj +det +noun +pron +prep +adj +conj +adv +prep +det +noun +pron +verb +prep +det +noun +adv +verb +det +verb +prep +noun +det +noun +verb +prep +noun +verb +noun +noun +conj +noun +adj +noun +verb +det +noun +pron +conj +adv +verb +verb +conj +adv +verb +conj +verb +det +noun +verb +noun +noun +verb +prep +noun +det +noun +prep +noun +verb +verb +verb +det +noun +conj +det +noun +pron +conj +verb +prep +noun +noun +conj +verb +det +verb +det +noun +det +noun +conj +det +verb +verb +det +noun +conj +det +noun +pron +conj +verb +prep +noun +noun +conj +verb +conj +noun +verb +det +noun +prep +det +noun +pron +noun +verb +adv +verb +conj +verb +prep +noun +verb +prep +det +noun +det +noun +conj +verb +verb +prep +noun +verb +noun +conj +verb +det +verb +prep +det +noun +adv +noun +verb +conj +prep +det +noun +pron +verb +noun +det +noun +verb +prep +det +adj +det +noun +verb +verb +conj +verb +det +noun +det +noun +conj +pron +verb +det +verb +prep +noun +det +noun +verb +noun +verb +prep +det +adj +verb +det +noun +noun +adj +verb +det +noun +pron +conj +pron +det +noun +verb +det +noun +pron +prep +noun +noun +conj +noun +adj +prep +det +noun +pron +conj +det +noun +pron +verb +noun +conj +noun +adj +adv +verb +prep +pron +noun +conj +adj +det +noun +conj +adj +det +adj +det +noun +conj +verb +prep +det +noun +noun +prep +pron +verb +det +noun +pron +conj +verb +adj +det +noun +conj +noun +verb +prep +det +noun +verb +pron +noun +noun +pron +verb +pron +verb +prep +det +verb +noun +conj +verb +noun +adj +det +noun +conj +adv +verb +verb +prep +pron +noun +verb +det +noun +conj +verb +pron +conj +verb +det +noun +prep +det +noun +pron +verb +noun +det +noun +conj +adv +det +noun +prep +det +noun +det +noun +verb +conj +adj +noun +adv +verb +noun +adj +verb +conj +prep +noun +verb +conj +pron +pron +verb +prep +noun +prep +noun +conj +det +prep +pron +verb +adj +pron +verb +pron +adv +verb +adj +det +noun +verb +pron +pron +verb +prep +noun +adj +conj +noun +pron +det +noun +prep +det +noun +pron +conj +verb +det +noun +pron +conj +verb +det +noun +pron +prep +det +noun +conj +det +noun +verb +noun +adj +adv +verb +det +noun +prep +det +noun +prep +det +noun +prep +det +noun +det +verb +prep +pron +conj +det +verb +pron +verb +pron +noun +verb +prep +pron +verb +conj +pron +verb +prep +pron +conj +verb +det +noun +verb +pron +verb +adv +conj +adv +verb +verb +pron +verb +adj +noun +adv +verb +pron +conj +verb +det +noun +adj +verb +prep +det +noun +conj +verb +verb +det +noun +conj +verb +noun +noun +verb +conj +noun +verb +prep +pron +conj +verb +noun +prep +det +noun +verb +pron +verb +det +noun +pron +det +adj +prep +pron +verb +adv +det +noun +verb +prep +det +adj +prep +det +noun +verb +prep +det +adj +conj +verb +noun +num +conj +num +noun +adj +verb +conj +verb +det +verb +verb +pron +conj +verb +noun +det +noun +verb +conj +det +noun +pron +noun +verb +conj +det +verb +verb +verb +adv +prep +noun +adj +verb +det +noun +conj +prep +adj +noun +verb +prep +noun +noun +adv +verb +pron +det +adj +prep +det +adj +noun +conj +verb +pron +prep +det +noun +det +noun +conj +verb +pron +conj +verb +noun +det +noun +verb +pron +adv +conj +verb +conj +det +noun +pron +verb +prep +pron +conj +prep +noun +verb +pron +ptcl +adv +verb +prep +noun +det +noun +pron +verb +pron +det +noun +adv +verb +adv +verb +noun +det +noun +pron +adv +verb +pron +det +adj +prep +noun +adj +adv +conj +verb +pron +adj +det +noun +det +noun +conj +det +noun +pron +conj +verb +pron +pron +adj +pron +verb +conj +verb +verb +pron +adv +verb +pron +det +noun +verb +noun +conj +verb +noun +det +noun +pron +verb +conj +pron +adj +verb +adv +verb +pron +det +adj +conj +verb +noun +verb +conj +verb +pron +conj +verb +conj +noun +verb +verb +prep +det +noun +conj +verb +det +noun +verb +verb +prep +noun +det +adj +prep +noun +noun +conj +noun +conj +verb +det +verb +prep +noun +det +noun +verb +noun +noun +conj +noun +noun +noun +noun +prep +det +noun +noun +det +noun +det +noun +det +verb +prep +noun +noun +adj +verb +conj +det +verb +prep +noun +conj +noun +noun +noun +verb +pron +prep +adv +verb +det +noun +verb +conj +verb +verb +conj +verb +det +noun +det +noun +conj +verb +prep +det +noun +det +noun +verb +num +noun +noun +det +verb +noun +conj +noun +det +noun +pron +verb +noun +prep +det +noun +conj +verb +noun +conj +verb +pron +verb +prep +pron +conj +verb +pron +noun +noun +conj +det +adv +verb +det +noun +verb +pron +conj +verb +adv +verb +adj +num +noun +noun +det +det +noun +conj +noun +det +noun +pron +prep +det +noun +prep +noun +det +noun +pron +verb +det +noun +pron +conj +verb +pron +conj +det +adv +verb +det +noun +conj +det +noun +pron +verb +pron +conj +verb +prep +adj +det +noun +verb +prep +det +noun +pron +conj +verb +det +noun +det +noun +conj +verb +adj +noun +conj +adj +noun +prep +det +noun +conj +verb +det +noun +pron +prep +adj +det +noun +conj +verb +pron +adj +det +adv +verb +adj +noun +conj +noun +verb +verb +conj +verb +conj +adj +conj +verb +pron +conj +verb +pron +noun +adj +prep +det +noun +conj +noun +conj +noun +conj +noun +conj +prep +det +noun +conj +verb +det +noun +verb +prep +det +noun +conj +verb +pron +verb +pron +det +noun +pron +conj +verb +det +noun +pron +verb +pron +verb +adj +det +adj +det +noun +conj +pron +verb +det +noun +det +noun +adj +det +verb +conj +pron +verb +adj +det +adj +conj +pron +verb +det +noun +adj +det +verb +conj +verb +det +noun +conj +pron +verb +adj +det +adj +conj +pron +verb +adj +det +adj +det +noun +conj +pron +det +noun +verb +adj +det +adj +conj +pron +noun +noun +verb +adj +det +verb +prep +noun +conj +pron +verb +det +noun +det +noun +adj +verb +conj +verb +pron +conj +verb +conj +verb +adj +adj +prep +pron +verb +prep +pron +verb +conj +verb +conj +det +noun +pron +adj +prep +det +noun +conj +adv +verb +det +noun +det +prep +pron +pron +verb +det +noun +det +noun +conj +conj +det +noun +verb +prep +pron +verb +prep +adj +verb +adv +conj +adv +verb +adv +verb +prep +det +noun +pron +verb +det +noun +det +noun +adv +verb +noun +verb +prep +noun +verb +conj +verb +noun +conj +verb +pron +prep +det +noun +conj +prep +det +noun +conj +verb +adj +det +prep +det +noun +adv +verb +det +noun +pron +prep +det +noun +conj +verb +pron +det +adj +noun +conj +verb +det +noun +pron +det +prep +det +noun +adv +verb +conj +verb +verb +det +noun +conj +det +noun +adv +verb +verb +conj +verb +conj +ptcl +verb +pron +conj +ptcl +verb +det +noun +conj +det +noun +noun +adj +conj +adj +noun +adv +adv +verb +prep +det +noun +conj +ptcl +adj +verb +conj +ptcl +pron +verb +adj +det +noun +pron +det +adj +conj +verb +adv +det +noun +adj +verb +prep +det +noun +det +noun +conj +ptcl +pron +verb +conj +verb +pron +adj +verb +prep +det +noun +det +noun +conj +verb +pron +conj +conj +adv +verb +pron +det +noun +adj +det +noun +conj +noun +adv +adv +verb +prep +det +noun +det +noun +verb +conj +verb +det +adj +adv +verb +conj +ptcl +pron +verb +adj +verb +det +noun +conj +pron +verb +pron +conj +adj +det +verb +det +noun +pron +adj +verb +det +noun +conj +ptcl +pron +verb +det +noun +pron +noun +adj +verb +det +noun +conj +ptcl +pron +verb +adj +adj +verb +prep +det +noun +det +noun +conj +conj +verb +det +noun +pron +prep +det +noun +conj +verb +conj +det +noun +pron +verb +pron +prep +pron +verb +adv +det +noun +pron +prep +det +noun +conj +verb +adj +verb +det +noun +pron +conj +adv +verb +verb +det +noun +pron +verb +verb +det +noun +pron +adj +prep +pron +verb +prep +pron +prep +det +noun +ptcl +adv +pron +verb +det +noun +det +noun +conj +det +noun +det +noun +conj +prep +noun +verb +ptcl +verb +pron +adv +adv +verb +adv +conj +ptcl +verb +det +adj +noun +verb +conj +verb +adv +verb +conj +pron +verb +pron +conj +adj +det +verb +noun +prep +det +verb +pron +adv +verb +pron +prep +det +noun +pron +conj +conj +det +noun +pron +det +adj +verb +pron +verb +pron +conj +verb +prep +pron +conj +verb +pron +conj +verb +adj +det +noun +pron +conj +adv +adj +det +noun +pron +verb +prep +noun +conj +conj +det +adj +pron +noun +verb +pron +verb +pron +conj +verb +prep +pron +conj +verb +pron +conj +verb +adj +det +noun +pron +conj +adv +adj +det +noun +pron +prep +noun +verb +conj +verb +ptcl +pron +verb +det +noun +pron +verb +pron +noun +conj +pron +verb +pron +conj +adj +det +verb +det +noun +pron +prep +noun +noun +verb +pron +verb +conj +ptcl +pron +verb +verb +verb +adv +verb +conj +verb +det +adj +adv +verb +conj +verb +det +noun +det +noun +pron +conj +pron +verb +pron +adv +verb +adv +conj +prep +det +noun +conj +verb +noun +det +noun +conj +prep +det +noun +conj +verb +noun +det +noun +pron +conj +prep +noun +conj +verb +noun +det +adj +noun +conj +prep +det +noun +pron +verb +conj +adv +verb +adj +noun +verb +adj +conj +adj +conj +verb +det +noun +pron +ptcl +ptcl +ptcl +ptcl +conj +det +adj +pron +prep +det +adj +verb +verb +conj +verb +noun +prep +noun +conj +noun +prep +noun +conj +pron +verb +pron +adv +verb +det +adj +conj +pron +pron +verb +prep +det +adj +noun +pron +verb +pron +adv +det +adj +conj +det +verb +pron +verb +conj +det +noun +pron +verb +verb +pron +adv +det +noun +conj +pron +pron +verb +noun +adj +verb +prep +pron +num +det +verb +pron +verb +conj +det +verb +prep +pron +verb +adv +verb +verb +conj +verb +verb +det +adv +pron +conj +verb +det +adj +pron +conj +pron +verb +pron +verb +det +adj +pron +conj +verb +prep +det +verb +pron +conj +verb +noun +det +noun +pron +det +prep +noun +conj +det +noun +pron +verb +prep +adj +conj +adj +conj +verb +prep +adj +conj +adj +conj +conj +verb +det +verb +pron +pron +noun +verb +ptcl +adv +det +noun +det +pron +verb +conj +conj +verb +det +noun +pron +adj +pron +adj +verb +ptcl +adv +det +adj +det +pron +verb +conj +verb +pron +adj +conj +det +noun +pron +det +adj +adj +verb +conj +verb +det +noun +pron +adv +verb +prep +det +noun +prep +det +verb +pron +conj +conj +ptcl +noun +adv +verb +prep +det +noun +pron +det +prep +det +noun +conj +conj +verb +noun +adv +verb +prep +pron +conj +det +noun +verb +prep +det +noun +conj +prep +det +noun +conj +verb +prep +det +noun +ptcl +verb +pron +verb +det +noun +pron +conj +pron +verb +noun +adv +verb +det +adj +pron +pron +verb +det +adj +pron +conj +verb +pron +det +noun +prep +det +adj +conj +det +noun +pron +det +verb +prep +det +adj +verb +pron +conj +conj +verb +adv +verb +conj +det +noun +conj +verb +prep +det +noun +conj +prep +det +noun +det +noun +verb +verb +conj +verb +det +noun +ptcl +verb +pron +verb +det +noun +pron +conj +conj +pron +verb +verb +prep +det +noun +pron +conj +verb +det +noun +pron +verb +det +noun +pron +det +prep +det +adj +conj +det +noun +pron +det +verb +prep +det +adj +verb +pron +conj +verb +adv +verb +conj +det +adj +conj +verb +conj +prep +det +noun +pron +verb +conj +adv +verb +pron +conj +verb +det +noun +pron +pron +noun +verb +prep +det +pron +verb +pron +conj +adv +verb +pron +noun +pron +det +prep +det +noun +verb +det +noun +pron +verb +det +noun +pron +verb +det +noun +pron +conj +prep +noun +adv +prep +noun +det +noun +pron +det +adj +verb +pron +adv +conj +verb +pron +det +noun +pron +conj +adv +pron +verb +det +noun +pron +conj +adv +verb +pron +prep +noun +conj +verb +pron +prep +det +adj +conj +conj +verb +det +noun +det +noun +pron +verb +adv +pron +det +noun +pron +det +adj +conj +conj +adv +verb +det +noun +adv +det +noun +pron +verb +det +noun +pron +conj +conj +verb +adv +verb +conj +det +noun +adj +conj +verb +det +noun +pron +conj +verb +det +noun +verb +ptcl +verb +pron +verb +det +noun +pron +conj +pron +verb +verb +pron +det +noun +conj +det +noun +pron +verb +conj +adv +verb +det +noun +verb +conj +det +noun +pron +det +prep +det +adj +conj +det +noun +pron +det +verb +prep +det +adj +verb +pron +adv +verb +pron +noun +prep +det +noun +adv +noun +conj +noun +verb +conj +adv +noun +verb +conj +verb +conj +verb +pron +noun +prep +noun +adv +conj +noun +conj +noun +verb +conj +adv +noun +adv +verb +conj +verb +conj +conj +verb +det +noun +pron +adv +verb +adv +det +noun +pron +det +noun +det +noun +verb +det +noun +conj +conj +verb +det +noun +pron +adj +adj +det +noun +pron +adj +verb +conj +conj +det +noun +pron +adj +verb +adj +det +noun +pron +adj +verb +conj +conj +det +noun +det +prep +pron +noun +verb +det +noun +pron +adj +verb +adj +noun +verb +conj +conj +det +adj +verb +conj +det +adj +verb +conj +adj +verb +conj +det +adj +verb +adv +verb +noun +verb +conj +noun +prep +pron +verb +pron +adv +verb +det +noun +pron +pron +verb +conj +pron +verb +conj +det +noun +pron +pron +verb +ptcl +det +noun +adj +verb +det +noun +conj +det +noun +det +noun +verb +prep +det +noun +det +noun +conj +adv +verb +conj +verb +conj +verb +prep +noun +conj +det +noun +pron +det +adj +verb +pron +ptcl +pron +adv +verb +pron +conj +pron +prep +pron +verb +verb +verb +prep +det +noun +pron +noun +adj +conj +prep +noun +pron +verb +verb +det +noun +det +noun +adv +verb +adv +verb +conj +verb +conj +verb +pron +conj +adv +noun +prep +adj +det +noun +pron +verb +conj +adj +pron +conj +conj +det +noun +det +noun +adv +verb +conj +adv +prep +noun +verb +det +noun +adv +verb +ptcl +adj +adv +pron +adj +conj +adv +verb +verb +pron +verb +conj +pron +verb +conj +pron +verb +conj +adj +pron +det +noun +verb +conj +verb +det +noun +pron +det +adj +conj +verb +pron +adj +conj +verb +adj +det +noun +conj +det +noun +pron +conj +pron +adj +verb +pron +conj +adv +verb +prep +det +adv +conj +det +adv +verb +pron +adj +det +noun +det +noun +pron +adv +verb +conj +adv +verb +conj +prep +pron +noun +verb +verb +conj +prep +pron +noun +verb +verb +pron +conj +pron +verb +det +noun +det +prep +det +noun +det +noun +pron +conj +det +prep +det +adj +noun +noun +adv +verb +conj +adv +verb +det +noun +pron +verb +verb +det +noun +prep +det +noun +pron +conj +verb +det +noun +prep +det +noun +pron +noun +verb +adj +prep +det +noun +pron +det +noun +conj +adv +verb +verb +det +noun +prep +det +noun +det +noun +pron +adv +verb +det +adj +det +noun +conj +verb +det +noun +pron +prep +det +noun +ptcl +adv +verb +pron +prep +det +noun +pron +conj +verb +verb +pron +verb +conj +verb +pron +verb +conj +verb +verb +conj +verb +pron +conj +adj +det +verb +verb +conj +det +verb +verb +conj +det +verb +verb +conj +verb +prep +pron +pron +noun +pron +verb +det +noun +pron +noun +ptcl +noun +verb +pron +conj +adv +noun +verb +ptcl +noun +verb +pron +conj +conj +pron +adj +verb +verb +noun +adj +verb +det +noun +pron +pron +adv +det +noun +pron +det +prep +det +noun +verb +adj +det +verb +pron +conj +adj +ptcl +pron +verb +conj +verb +pron +det +noun +adv +adv +pron +verb +pron +conj +pron +verb +det +noun +conj +det +noun +verb +prep +det +adj +noun +conj +adj +det +noun +conj +adj +det +noun +det +verb +prep +det +noun +conj +adj +verb +det +verb +prep +pron +conj +adj +det +noun +conj +verb +det +noun +det +verb +prep +det +noun +conj +adj +verb +det +verb +pron +verb +prep +det +noun +pron +verb +prep +pron +prep +noun +noun +conj +adv +verb +noun +adj +prep +det +noun +pron +verb +pron +ptcl +verb +prep +noun +noun +conj +prep +noun +noun +adv +adj +noun +adj +noun +adj +verb +conj +det +adj +noun +noun +adj +verb +adv +verb +noun +adj +noun +adj +verb +conj +noun +adj +noun +adj +verb +adj +noun +adv +verb +noun +adj +verb +conj +prep +noun +verb +ptcl +prep +det +noun +pron +verb +pron +adv +adj +det +verb +pron +noun +noun +verb +prep +det +noun +det +noun +conj +det +verb +det +noun +det +noun +pron +det +prep +det +noun +adj +verb +pron +prep +pron +det +noun +noun +noun +ptcl +det +adj +noun +verb +conj +det +adj +noun +noun +verb +conj +det +adj +noun +noun +adj +verb +conj +adv +verb +pron +conj +adv +verb +pron +verb +prep +pron +det +verb +det +noun +conj +adj +pron +verb +pron +det +noun +pron +conj +verb +pron +verb +noun +adj +pron +verb +pron +det +noun +prep +det +noun +conj +verb +det +noun +conj +verb +det +noun +conj +verb +det +noun +conj +verb +det +noun +pron +conj +adv +verb +conj +verb +prep +det +noun +conj +adj +det +verb +pron +det +noun +pron +conj +adv +verb +pron +verb +noun +adj +pron +verb +pron +det +noun +prep +det +noun +conj +verb +det +noun +conj +verb +det +noun +conj +verb +det +noun +conj +verb +det +noun +pron +conj +verb +conj +verb +det +noun +pron +adj +conj +verb +conj +verb +det +noun +det +noun +pron +verb +det +noun +prep +det +noun +pron +conj +verb +verb +pron +conj +noun +verb +conj +adv +conj +det +noun +pron +conj +verb +pron +prep +det +noun +verb +pron +noun +adj +conj +verb +adj +verb +verb +pron +verb +noun +conj +verb +verb +pron +verb +conj +verb +det +noun +verb +pron +verb +verb +verb +conj +adv +verb +pron +det +noun +conj +verb +pron +det +noun +verb +adj +verb +conj +verb +pron +verb +det +noun +conj +verb +det +noun +pron +verb +noun +prep +noun +pron +conj +verb +pron +prep +noun +verb +pron +noun +verb +pron +conj +verb +noun +det +noun +pron +verb +prep +det +noun +adj +adv +verb +verb +pron +pron +verb +verb +pron +conj +verb +det +noun +verb +noun +adv +verb +adj +conj +prep +pron +det +noun +verb +conj +adj +verb +noun +conj +verb +det +noun +pron +conj +adv +pron +verb +noun +prep +noun +verb +prep +pron +noun +conj +verb +pron +verb +conj +verb +conj +adj +verb +conj +verb +conj +det +noun +pron +verb +pron +conj +verb +conj +verb +det +noun +verb +conj +verb +det +verb +ptcl +verb +pron +prep +adj +pron +noun +prep +det +noun +verb +conj +verb +pron +conj +adj +prep +noun +conj +noun +verb +conj +verb +prep +noun +conj +noun +conj +noun +prep +det +noun +det +noun +conj +det +noun +det +noun +verb +prep +det +noun +det +adj +adv +verb +det +noun +conj +det +noun +det +noun +conj +verb +det +noun +det +noun +verb +conj +verb +verb +pron +conj +verb +det +noun +prep +det +noun +pron +conj +det +noun +verb +prep +det +noun +noun +verb +det +noun +pron +verb +conj +verb +conj +verb +det +noun +pron +conj +verb +pron +det +noun +conj +verb +conj +verb +pron +conj +adj +verb +verb +pron +verb +adj +conj +verb +det +noun +noun +conj +adj +det +adv +verb +verb +conj +verb +det +verb +prep +noun +det +noun +verb +pron +det +noun +pron +verb +conj +det +noun +verb +conj +det +noun +verb +noun +prep +pron +verb +verb +prep +det +adv +conj +verb +adj +noun +verb +pron +noun +verb +pron +ptcl +conj +verb +conj +verb +pron +det +noun +det +noun +noun +verb +conj +det +noun +det +noun +noun +conj +det +noun +det +noun +adv +verb +adv +det +noun +verb +conj +adj +det +noun +verb +pron +noun +verb +pron +adj +verb +conj +verb +det +noun +pron +conj +det +noun +verb +pron +verb +pron +conj +verb +det +adj +verb +det +pron +adj +conj +verb +pron +prep +det +noun +verb +pron +det +noun +pron +conj +verb +noun +adj +verb +prep +det +noun +conj +det +noun +verb +prep +det +noun +conj +pron +verb +conj +verb +verb +pron +verb +noun +verb +verb +conj +verb +pron +pron +adj +verb +adj +adv +verb +verb +det +noun +conj +det +noun +conj +verb +noun +adj +conj +det +noun +verb +verb +adj +verb +pron +conj +adv +det +noun +conj +det +noun +pron +verb +conj +verb +pron +prep +det +adv +prep +det +noun +det +adj +verb +pron +num +verb +prep +det +noun +verb +adj +adv +conj +adv +verb +pron +verb +prep +det +noun +pron +conj +verb +verb +verb +pron +pron +conj +pron +noun +det +noun +verb +adv +prep +noun +verb +pron +conj +verb +adj +prep +pron +noun +noun +adj +verb +conj +det +noun +verb +pron +verb +conj +verb +pron +verb +pron +prep +det +noun +det +noun +conj +verb +pron +verb +conj +det +verb +verb +prep +det +noun +conj +verb +verb +adj +det +noun +prep +det +noun +prep +det +noun +conj +verb +prep +det +noun +conj +det +verb +verb +conj +verb +prep +det +noun +verb +adj +conj +det +det +verb +conj +verb +adj +det +noun +verb +prep +noun +det +noun +conj +verb +pron +verb +conj +verb +prep +det +noun +pron +conj +verb +prep +noun +verb +conj +verb +prep +det +adj +noun +conj +verb +verb +pron +adj +prep +noun +verb +conj +det +noun +verb +det +noun +pron +verb +det +adj +verb +noun +verb +pron +det +noun +conj +verb +pron +det +noun +verb +prep +pron +pron +verb +conj +det +noun +verb +det +noun +pron +verb +conj +pron +verb +adj +prep +det +noun +pron +conj +pron +verb +adj +verb +verb +pron +det +noun +conj +verb +verb +conj +verb +conj +conj +verb +conj +noun +verb +det +noun +det +noun +prep +det +noun +verb +noun +adv +verb +det +adj +verb +verb +pron +det +noun +conj +verb +prep +det +noun +pron +conj +verb +verb +prep +det +noun +pron +conj +verb +det +noun +verb +conj +verb +det +noun +det +verb +noun +pron +det +noun +conj +verb +adv +det +noun +verb +noun +verb +prep +det +noun +noun +verb +conj +verb +pron +verb +pron +conj +verb +verb +pron +conj +verb +pron +verb +prep +det +noun +conj +verb +adj +noun +conj +adj +verb +verb +det +noun +conj +det +noun +pron +conj +verb +det +noun +verb +det +noun +pron +prep +pron +prep +det +noun +conj +adj +verb +det +noun +pron +conj +det +verb +verb +adv +noun +noun +verb +det +verb +conj +det +adv +verb +conj +verb +verb +pron +verb +noun +verb +conj +adv +noun +conj +adv +verb +verb +adj +conj +adj +adv +verb +pron +det +noun +noun +verb +prep +pron +pron +conj +det +noun +verb +conj +det +noun +pron +adv +verb +conj +verb +pron +det +noun +ptcl +verb +det +noun +det +noun +verb +prep +pron +prep +pron +verb +det +noun +conj +verb +noun +adv +verb +prep +pron +det +noun +conj +adv +verb +conj +adj +verb +noun +noun +adj +prep +noun +adj +conj +verb +det +noun +pron +prep +det +noun +conj +adj +noun +verb +conj +verb +noun +adj +prep +noun +adj +conj +conj +ptcl +verb +det +noun +conj +det +noun +verb +conj +det +noun +verb +conj +verb +noun +adj +prep +noun +adj +conj +adj +verb +pron +pron +verb +pron +verb +noun +adj +verb +verb +pron +verb +conj +det +noun +pron +adv +verb +conj +verb +verb +det +noun +pron +prep +pron +conj +verb +conj +verb +det +noun +verb +pron +conj +det +noun +pron +conj +verb +noun +verb +num +noun +verb +adv +verb +det +noun +det +noun +pron +conj +verb +prep +pron +conj +adj +verb +det +noun +pron +verb +conj +det +noun +verb +conj +verb +pron +verb +verb +noun +det +noun +pron +verb +pron +conj +verb +det +noun +prep +det +noun +pron +conj +det +noun +verb +prep +det +noun +det +noun +conj +verb +det +noun +conj +det +noun +verb +verb +verb +conj +adv +verb +det +noun +conj +verb +conj +verb +pron +conj +conj +verb +det +noun +verb +verb +det +noun +pron +conj +verb +det +noun +conj +verb +det +noun +pron +prep +adj +det +noun +pron +conj +verb +adv +det +noun +verb +num +adj +verb +conj +verb +verb +pron +noun +noun +conj +verb +prep +det +noun +verb +pron +det +adj +conj +verb +pron +det +noun +verb +conj +verb +pron +verb +verb +pron +ptcl +noun +adv +verb +det +noun +pron +verb +prep +det +noun +pron +verb +pron +conj +verb +pron +det +noun +conj +verb +pron +det +noun +verb +verb +adj +verb +conj +det +verb +verb +pron +prep +adj +det +noun +pron +conj +pron +verb +verb +verb +pron +adj +verb +conj +verb +det +noun +verb +det +adj +conj +verb +det +noun +verb +adv +verb +adv +prep +det +noun +conj +det +noun +verb +prep +det +noun +det +noun +verb +det +noun +conj +verb +det +noun +det +noun +adj +conj +det +noun +verb +prep +det +noun +pron +conj +verb +det +noun +det +noun +conj +verb +adj +noun +conj +adj +noun +conj +verb +det +noun +verb +prep +pron +conj +verb +verb +conj +verb +conj +noun +adv +verb +noun +adv +verb +det +noun +pron +conj +det +noun +adj +conj +det +noun +adj +conj +verb +det +noun +det +noun +conj +verb +noun +prep +det +noun +pron +conj +verb +det +num +noun +pron +verb +pron +noun +noun +adj +conj +verb +pron +conj +verb +adj +noun +conj +adj +noun +conj +det +num +noun +det +noun +verb +pron +adj +noun +det +verb +noun +conj +noun +det +noun +pron +conj +noun +det +det +noun +conj +noun +det +noun +pron +noun +conj +noun +noun +conj +noun +det +noun +noun +det +det +noun +conj +noun +noun +det +noun +conj +noun +det +noun +det +adv +verb +pron +pron +det +num +verb +det +noun +verb +pron +verb +prep +noun +noun +adv +verb +conj +prep +noun +noun +adv +verb +conj +verb +adv +prep +det +noun +det +verb +noun +noun +conj +verb +verb +verb +conj +verb +det +noun +det +noun +verb +verb +adj +verb +adj +verb +noun +verb +adv +verb +adv +verb +adv +verb +noun +conj +noun +conj +noun +prep +det +noun +pron +adv +noun +prep +noun +conj +num +noun +conj +noun +conj +noun +conj +adj +det +noun +det +noun +pron +conj +ptcl +prep +pron +noun +conj +noun +verb +verb +pron +prep +pron +adj +verb +conj +verb +conj +ptcl +verb +conj +verb +prep +det +noun +verb +pron +conj +conj +conj +verb +det +noun +adj +verb +det +noun +pron +prep +pron +conj +conj +adv +verb +adj +det +noun +pron +prep +pron +verb +conj +ptcl +pron +adv +verb +pron +conj +verb +det +noun +pron +verb +prep +det +noun +conj +det +noun +pron +verb +det +noun +det +noun +pron +ptcl +verb +pron +adj +verb +noun +noun +conj +noun +prep +noun +noun +conj +det +noun +pron +verb +pron +verb +pron +conj +noun +prep +adj +noun +conj +verb +adj +conj +det +noun +conj +adj +conj +det +noun +conj +verb +prep +det +noun +conj +verb +pron +prep +noun +conj +prep +det +noun +pron +verb +pron +conj +adv +prep +noun +conj +noun +verb +prep +pron +prep +noun +pron +conj +det +noun +conj +conj +verb +pron +adv +verb +adv +conj +pron +verb +conj +verb +pron +prep +pron +det +noun +pron +verb +conj +adv +pron +verb +det +verb +conj +det +noun +det +noun +pron +det +verb +prep +pron +conj +verb +noun +noun +prep +noun +conj +noun +noun +conj +verb +noun +prep +noun +conj +verb +pron +conj +verb +verb +prep +adj +prep +det +noun +pron +conj +det +verb +prep +noun +pron +verb +conj +conj +verb +pron +prep +det +noun +pron +verb +prep +det +adj +conj +ptcl +verb +pron +adv +adv +verb +det +noun +det +noun +conj +verb +det +noun +det +noun +adv +verb +noun +prep +det +noun +conj +noun +prep +det +noun +pron +adj +det +noun +conj +verb +conj +det +noun +pron +conj +det +noun +conj +det +noun +pron +conj +det +noun +noun +verb +pron +adv +det +noun +pron +conj +adv +verb +pron +conj +adj +verb +verb +pron +adv +verb +conj +adj +pron +adv +verb +pron +verb +pron +prep +det +noun +verb +prep +det +noun +conj +pron +prep +det +noun +verb +verb +prep +det +noun +conj +adv +verb +prep +det +verb +det +noun +conj +adv +verb +det +noun +verb +conj +verb +adv +det +verb +conj +noun +conj +noun +verb +prep +noun +ptcl +num +noun +noun +verb +conj +adj +prep +pron +adv +verb +prep +det +noun +prep +det +noun +pron +conj +adv +pron +det +noun +det +noun +adj +verb +verb +conj +adv +verb +adj +noun +verb +pron +conj +adj +pron +verb +prep +pron +prep +det +noun +verb +pron +prep +pron +prep +det +noun +pron +det +prep +det +noun +conj +ptcl +pron +verb +pron +prep +det +noun +verb +pron +pron +prep +det +noun +pron +det +prep +det +noun +adv +verb +conj +verb +verb +noun +prep +det +noun +adv +verb +verb +noun +conj +noun +conj +verb +verb +noun +prep +det +noun +pron +conj +noun +prep +det +noun +pron +conj +noun +prep +det +noun +pron +conj +adj +det +noun +det +noun +pron +det +verb +noun +conj +noun +prep +pron +adv +verb +pron +adj +conj +det +verb +noun +conj +noun +prep +pron +adv +verb +pron +adj +conj +pron +adv +verb +det +noun +pron +conj +verb +prep +pron +adv +verb +pron +adj +det +verb +det +noun +pron +verb +pron +conj +det +verb +det +noun +pron +prep +pron +verb +pron +det +verb +pron +pron +verb +conj +det +pron +verb +verb +det +verb +pron +det +verb +noun +prep +noun +noun +noun +noun +verb +conj +det +verb +adj +prep +noun +adj +noun +adj +verb +conj +ptcl +pron +verb +adj +det +adj +pron +noun +adj +adv +prep +noun +noun +ptcl +verb +pron +adv +adv +verb +det +noun +pron +conj +verb +conj +verb +det +noun +verb +det +num +noun +pron +verb +adv +det +verb +conj +verb +prep +det +noun +pron +conj +det +noun +verb +prep +det +noun +det +noun +det +noun +verb +prep +det +noun +pron +verb +pron +pron +verb +det +verb +conj +adj +verb +conj +verb +det +noun +verb +pron +verb +verb +noun +pron +verb +conj +verb +adj +verb +conj +adj +verb +adj +verb +conj +adj +verb +conj +adj +verb +conj +adj +verb +conj +adj +verb +ptcl +pron +adv +verb +prep +pron +conj +pron +verb +verb +det +noun +verb +det +noun +prep +noun +pron +verb +verb +prep +det +adj +noun +prep +noun +verb +conj +pron +verb +verb +noun +prep +adj +verb +verb +det +det +adj +verb +prep +det +noun +det +noun +conj +pron +verb +noun +verb +ptcl +verb +pron +conj +adj +noun +pron +verb +prep +pron +verb +verb +pron +verb +det +noun +pron +prep +noun +pron +pron +verb +det +noun +pron +prep +pron +ptcl +verb +pron +adv +verb +prep +adj +noun +adj +noun +det +noun +conj +det +adj +prep +det +noun +det +noun +adj +pron +verb +conj +prep +det +noun +noun +det +noun +prep +adv +det +noun +det +noun +verb +conj +noun +verb +pron +conj +adj +det +noun +conj +det +noun +prep +noun +verb +conj +conj +verb +verb +pron +verb +noun +det +verb +verb +det +verb +noun +verb +conj +pron +verb +det +noun +pron +adj +verb +noun +verb +prep +det +noun +pron +verb +det +adj +verb +verb +pron +conj +adv +verb +verb +conj +adv +verb +conj +verb +noun +conj +verb +conj +verb +conj +verb +noun +verb +verb +det +noun +det +noun +verb +conj +verb +conj +verb +verb +noun +noun +conj +noun +adj +noun +conj +adj +conj +verb +det +noun +prep +det +noun +pron +adv +verb +verb +det +noun +prep +pron +verb +det +adj +noun +pron +conj +adv +verb +ptcl +pron +noun +intj +pron +noun +conj +conj +prep +noun +conj +noun +verb +det +noun +det +verb +prep +pron +ptcl +adv +prep +noun +conj +noun +verb +conj +verb +pron +noun +conj +noun +adj +verb +prep +noun +noun +conj +pron +adv +noun +ptcl +pron +prep +noun +verb +prep +noun +verb +conj +conj +prep +noun +verb +det +noun +det +verb +prep +pron +ptcl +verb +prep +det +adv +conj +verb +pron +conj +noun +noun +adj +verb +prep +noun +noun +conj +pron +prep +pron +det +noun +verb +det +noun +verb +verb +pron +noun +noun +det +noun +conj +det +noun +conj +verb +pron +prep +adj +conj +adj +conj +verb +pron +adj +ptcl +det +noun +conj +adv +noun +verb +prep +pron +adj +pron +verb +prep +det +noun +pron +conj +adj +verb +det +noun +conj +adv +det +noun +conj +det +noun +pron +verb +conj +adv +det +noun +conj +ptcl +pron +verb +verb +det +noun +verb +prep +pron +adj +det +verb +conj +verb +pron +verb +pron +verb +det +noun +pron +prep +pron +conj +verb +prep +pron +conj +verb +adj +conj +adj +det +noun +conj +verb +noun +det +noun +pron +conj +det +noun +pron +adj +conj +det +noun +pron +adj +verb +prep +pron +det +noun +verb +det +noun +det +noun +prep +det +adj +conj +det +noun +pron +verb +conj +verb +verb +noun +conj +verb +conj +det +noun +verb +verb +pron +verb +det +noun +pron +verb +pron +verb +adv +verb +prep +noun +conj +det +verb +pron +ptcl +verb +pron +verb +noun +conj +verb +conj +det +prep +pron +conj +verb +prep +det +noun +det +noun +conj +det +noun +det +noun +verb +pron +verb +adv +verb +verb +pron +conj +det +prep +pron +conj +adv +det +noun +adj +conj +ptcl +verb +prep +det +noun +conj +det +noun +det +noun +prep +det +noun +det +noun +verb +conj +adj +verb +conj +verb +pron +conj +det +noun +adj +verb +adv +conj +conj +verb +pron +verb +noun +verb +conj +adv +noun +ptcl +adv +verb +det +adj +conj +verb +noun +det +noun +det +noun +det +noun +conj +verb +adv +verb +prep +det +noun +pron +conj +verb +noun +noun +verb +adj +conj +verb +pron +verb +ptcl +verb +det +noun +verb +conj +verb +pron +conj +det +verb +pron +pron +verb +prep +pron +noun +pron +verb +noun +adj +conj +conj +verb +pron +det +noun +prep +noun +ptcl +verb +pron +conj +verb +conj +pron +verb +noun +noun +conj +verb +det +noun +adv +verb +adv +verb +det +noun +verb +pron +det +noun +conj +verb +conj +verb +adj +conj +det +adj +conj +verb +det +noun +noun +verb +prep +pron +conj +pron +verb +conj +det +noun +verb +verb +adv +conj +verb +pron +adj +conj +verb +pron +adj +conj +verb +pron +conj +adv +adj +pron +verb +conj +verb +det +verb +prep +noun +det +noun +verb +verb +det +noun +pron +pron +verb +det +adj +pron +pron +verb +det +noun +pron +verb +det +noun +pron +prep +pron +conj +noun +det +noun +verb +adv +verb +conj +verb +conj +verb +pron +prep +det +noun +det +noun +pron +noun +verb +adv +verb +conj +noun +verb +adv +verb +conj +ptcl +verb +prep +noun +det +noun +conj +det +noun +pron +noun +verb +adv +verb +pron +verb +adj +conj +adj +conj +verb +pron +conj +det +adj +verb +conj +verb +conj +verb +adj +det +noun +conj +verb +ptcl +pron +verb +det +noun +noun +conj +det +noun +verb +verb +pron +adv +verb +det +noun +conj +adv +prep +det +noun +noun +det +noun +conj +verb +det +noun +pron +verb +pron +adj +noun +verb +prep +pron +verb +conj +adj +noun +conj +noun +verb +prep +pron +adv +verb +conj +conj +det +noun +det +noun +verb +prep +pron +verb +conj +adv +verb +det +noun +pron +conj +conj +pron +prep +noun +verb +det +noun +det +noun +pron +prep +pron +verb +prep +pron +pron +noun +pron +verb +conj +conj +prep +noun +noun +pron +verb +det +noun +conj +verb +prep +pron +det +noun +det +noun +conj +adv +verb +pron +verb +prep +det +noun +det +adj +conj +det +noun +pron +verb +conj +adv +adj +verb +det +adj +conj +adv +det +noun +pron +verb +det +adv +verb +prep +pron +prep +pron +verb +conj +det +adv +verb +prep +pron +verb +prep +pron +verb +pron +adj +noun +conj +noun +verb +det +noun +conj +det +det +noun +noun +adv +verb +conj +ptcl +pron +verb +noun +prep +det +noun +det +noun +verb +pron +conj +ptcl +pron +verb +prep +det +noun +det +adj +adv +verb +pron +conj +prep +pron +det +noun +conj +prep +det +verb +conj +verb +det +noun +adj +conj +det +noun +pron +adj +conj +verb +det +noun +adj +conj +det +noun +pron +adj +conj +prep +det +noun +det +noun +verb +noun +noun +adv +verb +adj +verb +adj +verb +conj +prep +det +noun +det +noun +det +noun +verb +det +adj +noun +prep +det +adj +noun +verb +adj +conj +det +adj +noun +prep +det +adj +noun +verb +adj +conj +verb +pron +conj +adj +noun +adj +pron +verb +det +noun +verb +prep +pron +noun +prep +noun +noun +conj +prep +det +noun +pron +verb +conj +prep +det +noun +pron +verb +adv +verb +pron +pron +det +noun +conj +noun +verb +noun +verb +prep +pron +noun +verb +conj +det +verb +verb +pron +noun +adj +conj +noun +noun +verb +conj +noun +adv +verb +pron +conj +adv +det +noun +noun +det +noun +conj +conj +verb +noun +prep +det +noun +det +noun +adj +noun +conj +adj +noun +adv +verb +det +noun +det +noun +prep +det +noun +det +noun +adj +noun +conj +adj +noun +noun +noun +verb +prep +det +noun +prep +det +noun +pron +conj +verb +pron +conj +verb +prep +det +noun +noun +conj +verb +adj +noun +adv +noun +noun +verb +prep +det +noun +prep +det +noun +pron +conj +verb +pron +conj +verb +prep +det +noun +det +noun +verb +det +noun +noun +conj +verb +adj +noun +adv +conj +conj +det +adj +noun +verb +prep +det +noun +verb +prep +adj +noun +verb +noun +conj +adv +verb +adv +verb +prep +det +noun +pron +verb +adv +verb +conj +verb +verb +verb +conj +verb +conj +verb +adv +verb +conj +verb +prep +pron +num +adj +noun +adj +pron +conj +verb +verb +adv +conj +verb +det +adj +det +noun +pron +adj +det +adj +adv +verb +adv +det +noun +pron +det +adj +adv +pron +verb +det +noun +verb +det +noun +conj +det +noun +pron +verb +adv +verb +pron +verb +conj +verb +pron +pron +verb +det +noun +pron +conj +det +noun +pron +adv +verb +verb +pron +verb +conj +det +verb +verb +det +verb +pron +pron +verb +det +noun +pron +conj +pron +verb +det +noun +pron +conj +verb +det +noun +pron +prep +det +noun +pron +verb +verb +det +noun +pron +conj +det +noun +pron +conj +ptcl +pron +verb +det +noun +det +noun +pron +det +prep +noun +pron +pron +noun +conj +noun +conj +noun +verb +prep +det +noun +pron +det +noun +verb +det +noun +verb +prep +det +noun +conj +verb +prep +pron +noun +adj +conj +pron +prep +noun +verb +verb +conj +adj +det +noun +prep +det +noun +verb +conj +verb +pron +adj +prep +noun +verb +verb +verb +det +verb +det +verb +conj +prep +det +verb +pron +conj +pron +verb +prep +det +noun +conj +verb +det +noun +verb +pron +conj +adj +verb +prep +det +adj +adv +adv +verb +noun +adj +conj +adv +verb +prep +det +adv +verb +noun +noun +conj +noun +verb +verb +conj +prep +det +adv +verb +noun +verb +conj +adj +verb +prep +det +noun +conj +verb +det +noun +conj +verb +pron +conj +adj +verb +prep +det +noun +det +adj +conj +verb +noun +conj +pron +num +conj +pron +num +conj +pron +num +det +verb +noun +verb +conj +verb +det +noun +verb +pron +prep +pron +prep +noun +verb +pron +conj +det +verb +verb +conj +pron +verb +verb +det +noun +det +noun +det +noun +conj +pron +adv +verb +conj +pron +verb +verb +pron +conj +verb +conj +pron +adv +verb +adv +pron +verb +verb +prep +pron +prep +pron +prep +noun +pron +verb +conj +verb +adv +verb +conj +verb +adv +verb +conj +verb +conj +verb +pron +det +noun +noun +det +verb +noun +verb +conj +adv +adv +verb +conj +verb +verb +conj +adv +adv +verb +conj +verb +det +noun +det +noun +pron +conj +det +noun +adv +verb +conj +det +noun +pron +verb +ptcl +adv +verb +det +noun +conj +det +noun +verb +conj +det +noun +verb +conj +verb +conj +verb +pron +conj +adj +pron +det +noun +conj +verb +conj +det +noun +pron +conj +verb +conj +ptcl +verb +pron +conj +adj +noun +conj +adj +verb +verb +pron +verb +conj +adv +verb +conj +verb +pron +verb +conj +adv +verb +conj +pron +verb +det +noun +det +verb +adj +verb +det +noun +det +noun +conj +adv +verb +verb +det +adj +conj +verb +det +verb +prep +det +noun +pron +pron +verb +det +prep +det +noun +verb +conj +det +prep +det +adj +verb +pron +verb +det +det +noun +verb +conj +adj +prep +noun +verb +pron +conj +adv +verb +noun +prep +pron +conj +adj +verb +conj +verb +noun +conj +noun +prep +det +noun +adj +verb +conj +det +prep +det +noun +verb +pron +verb +det +det +noun +verb +conj +det +noun +det +noun +conj +det +noun +det +noun +verb +det +noun +conj +adj +verb +conj +det +prep +det +adj +noun +verb +pron +verb +det +det +noun +verb +conj +verb +ptcl +pron +verb +conj +conj +verb +pron +num +conj +pron +num +conj +pron +num +adj +noun +verb +pron +verb +verb +det +noun +det +noun +noun +verb +adj +noun +prep +det +noun +pron +conj +prep +det +verb +det +noun +verb +pron +det +adj +conj +verb +noun +prep +adj +det +noun +conj +verb +conj +conj +verb +det +noun +conj +noun +verb +adv +verb +adv +det +noun +conj +verb +det +noun +det +noun +verb +pron +noun +ptcl +adj +noun +verb +prep +det +adj +noun +conj +adv +verb +noun +conj +det +verb +pron +adj +noun +pron +verb +conj +det +noun +pron +verb +conj +verb +verb +verb +pron +conj +det +verb +ptcl +ptcl +adv +verb +det +noun +verb +prep +pron +det +noun +verb +verb +adj +prep +det +noun +conj +prep +noun +det +noun +verb +det +noun +verb +adj +det +noun +conj +verb +pron +prep +noun +prep +det +verb +pron +conj +det +noun +verb +prep +det +noun +pron +adj +noun +verb +pron +verb +adj +verb +det +noun +det +noun +noun +noun +pron +verb +noun +verb +prep +det +noun +pron +conj +pron +adj +verb +adj +det +noun +conj +conj +verb +adj +det +noun +verb +conj +verb +noun +conj +verb +det +noun +det +noun +conj +verb +prep +det +noun +pron +adj +noun +verb +pron +adj +verb +det +noun +det +noun +noun +pron +verb +noun +verb +prep +noun +noun +adj +prep +pron +verb +adj +pron +adj +verb +det +noun +prep +noun +det +noun +conj +prep +noun +adj +verb +pron +conj +verb +det +verb +prep +det +noun +verb +verb +prep +noun +det +noun +pron +verb +verb +prep +noun +adv +verb +det +noun +verb +prep +det +noun +conj +verb +pron +det +noun +pron +verb +verb +pron +det +noun +det +noun +det +noun +conj +det +verb +verb +det +verb +det +adj +noun +verb +det +noun +det +noun +conj +det +noun +verb +det +noun +conj +det +adj +noun +pron +verb +det +noun +det +noun +conj +det +noun +verb +det +noun +det +adj +conj +det +adj +det +verb +pron +verb +det +adj +conj +det +noun +noun +noun +verb +conj +det +noun +noun +verb +conj +conj +verb +det +noun +conj +noun +verb +adv +verb +prep +det +noun +det +noun +verb +det +noun +det +noun +det +noun +pron +conj +verb +prep +det +noun +pron +adj +det +noun +conj +det +verb +det +noun +conj +verb +pron +prep +det +noun +det +noun +adv +verb +det +noun +conj +det +noun +det +noun +adv +det +adj +verb +prep +det +noun +det +noun +pron +conj +det +noun +det +verb +noun +verb +adj +verb +det +noun +det +noun +noun +verb +prep +det +noun +pron +verb +noun +verb +conj +prep +det +noun +pron +verb +conj +verb +pron +verb +conj +verb +det +noun +pron +adv +adj +verb +det +noun +det +noun +noun +verb +adj +noun +conj +verb +adj +adj +noun +verb +verb +adj +pron +verb +conj +verb +pron +adv +adj +verb +det +noun +det +noun +noun +verb +prep +det +noun +conj +prep +adj +noun +verb +pron +conj +verb +verb +prep +det +noun +conj +verb +verb +det +adj +prep +noun +conj +det +adj +adv +verb +adv +verb +prep +det +noun +det +noun +verb +det +noun +conj +verb +det +adj +prep +adj +det +adj +conj +verb +pron +prep +det +noun +det +noun +adv +verb +det +noun +conj +det +noun +det +noun +verb +pron +adj +verb +pron +ptcl +conj +det +verb +pron +prep +pron +adj +noun +verb +det +noun +det +noun +adj +verb +noun +noun +pron +verb +prep +det +noun +pron +adj +conj +adj +conj +verb +conj +verb +det +noun +det +noun +pron +verb +adv +conj +verb +prep +det +noun +pron +verb +pron +prep +det +noun +pron +conj +verb +pron +conj +verb +adv +pron +det +noun +pron +conj +det +noun +ptcl +pron +verb +det +det +noun +noun +ptcl +det +noun +pron +verb +noun +conj +det +noun +pron +noun +conj +noun +conj +noun +conj +noun +conj +det +noun +pron +ptcl +adj +prep +pron +verb +conj +adv +pron +pron +adj +conj +verb +prep +pron +conj +det +noun +verb +pron +adv +verb +noun +adj +conj +adv +prep +det +noun +conj +prep +det +noun +pron +conj +adv +verb +adv +noun +adj +prep +det +noun +pron +prep +pron +det +noun +verb +noun +det +noun +det +noun +noun +conj +verb +det +noun +pron +pron +verb +noun +det +noun +pron +verb +prep +det +adj +conj +prep +pron +det +noun +verb +prep +pron +conj +det +noun +verb +det +noun +verb +conj +prep +noun +verb +prep +noun +det +noun +noun +det +noun +pron +conj +verb +det +noun +pron +adv +verb +pron +verb +pron +conj +verb +pron +verb +verb +det +noun +conj +conj +noun +pron +verb +conj +noun +det +noun +verb +verb +det +noun +det +noun +prep +det +adj +conj +verb +det +noun +conj +prep +noun +verb +pron +verb +ptcl +pron +verb +conj +det +verb +prep +det +noun +pron +verb +verb +pron +adv +prep +noun +det +noun +noun +det +noun +conj +verb +det +noun +prep +det +noun +conj +det +verb +verb +verb +conj +verb +verb +noun +prep +det +noun +conj +verb +det +noun +pron +prep +noun +conj +verb +det +noun +conj +verb +det +noun +pron +conj +verb +det +noun +pron +verb +det +noun +conj +verb +pron +conj +verb +verb +det +noun +conj +verb +det +noun +verb +adv +prep +noun +prep +adj +noun +prep +adj +conj +verb +det +noun +verb +pron +adv +prep +det +noun +conj +verb +verb +adj +noun +conj +verb +prep +pron +conj +verb +det +adj +pron +conj +adj +verb +verb +pron +det +noun +verb +adj +verb +det +noun +conj +det +noun +adv +verb +conj +verb +det +noun +conj +verb +prep +det +noun +verb +pron +noun +conj +det +noun +verb +pron +adv +noun +verb +verb +verb +pron +pron +verb +conj +det +verb +pron +adv +verb +adv +conj +adv +num +noun +conj +num +noun +conj +det +verb +verb +pron +adv +pron +conj +verb +det +noun +verb +prep +det +noun +verb +det +num +noun +conj +det +num +noun +verb +prep +det +noun +verb +conj +verb +verb +det +noun +det +noun +conj +det +noun +det +noun +conj +verb +adj +conj +verb +conj +verb +det +verb +det +noun +num +noun +adj +conj +det +verb +verb +noun +adv +adj +prep +noun +conj +noun +conj +adv +verb +det +noun +verb +prep +det +noun +conj +verb +pron +prep +det +adv +prep +pron +verb +det +noun +conj +verb +det +noun +verb +prep +det +noun +prep +adj +verb +conj +adj +verb +adj +verb +adv +conj +det +noun +adv +noun +adj +prep +det +noun +verb +verb +prep +det +noun +conj +verb +adj +det +noun +conj +adj +noun +det +noun +verb +prep +pron +verb +prep +det +noun +conj +det +noun +verb +pron +prep +det +noun +verb +verb +verb +conj +noun +verb +conj +prep +det +noun +verb +conj +adj +verb +det +noun +pron +verb +verb +pron +verb +adv +verb +conj +verb +pron +det +noun +verb +noun +conj +pron +verb +verb +pron +verb +prep +pron +prep +det +noun +conj +det +verb +verb +conj +verb +prep +det +noun +noun +verb +prep +det +noun +conj +verb +prep +det +noun +conj +verb +det +noun +verb +conj +verb +verb +verb +verb +noun +verb +pron +conj +adv +det +noun +verb +det +noun +verb +pron +conj +verb +pron +adj +prep +pron +verb +conj +verb +pron +prep +det +noun +verb +det +noun +conj +det +prep +det +noun +verb +pron +verb +adv +noun +noun +verb +conj +verb +verb +prep +det +noun +prep +noun +conj +verb +pron +det +noun +det +noun +pron +verb +prep +adj +det +adj +pron +conj +verb +pron +adj +det +adv +verb +conj +verb +pron +conj +adj +verb +det +noun +det +noun +pron +conj +pron +verb +verb +adv +verb +det +noun +prep +noun +noun +conj +noun +verb +prep +pron +det +noun +pron +verb +det +noun +det +adj +conj +adv +verb +det +noun +conj +noun +verb +conj +det +verb +verb +pron +prep +pron +adv +pron +verb +det +noun +det +noun +prep +det +noun +pron +conj +det +noun +verb +verb +det +noun +conj +det +noun +conj +det +verb +noun +conj +noun +noun +verb +conj +pron +verb +ptcl +pron +verb +det +noun +conj +det +noun +noun +ptcl +pron +prep +pron +verb +adv +adv +verb +det +noun +pron +ptcl +det +noun +pron +conj +verb +det +noun +det +noun +prep +det +noun +pron +noun +adv +verb +prep +pron +noun +verb +det +noun +pron +det +noun +pron +verb +conj +det +noun +pron +adv +verb +prep +pron +conj +adv +verb +pron +verb +noun +noun +noun +conj +verb +det +noun +verb +pron +verb +conj +verb +adv +det +verb +prep +det +noun +verb +det +noun +conj +det +verb +prep +det +noun +pron +verb +det +noun +adv +verb +det +noun +verb +pron +verb +conj +det +noun +verb +det +noun +verb +conj +det +verb +verb +adj +noun +pron +adv +verb +det +noun +pron +det +adj +verb +verb +pron +verb +adj +noun +adj +conj +conj +adj +adj +verb +adj +prep +noun +verb +conj +verb +det +noun +verb +pron +verb +pron +det +noun +conj +det +verb +noun +adv +pron +adj +verb +ptcl +verb +conj +adj +det +verb +prep +det +noun +prep +det +noun +verb +conj +prep +noun +verb +conj +det +verb +prep +det +noun +prep +det +noun +verb +pron +verb +det +noun +conj +prep +det +noun +verb +noun +adj +noun +noun +noun +noun +noun +noun +pron +verb +det +verb +det +noun +conj +det +adj +noun +verb +adv +verb +det +noun +conj +verb +adv +det +noun +verb +prep +det +noun +noun +conj +noun +conj +verb +noun +adj +prep +det +noun +pron +verb +verb +verb +verb +pron +noun +noun +noun +det +noun +pron +adv +verb +conj +det +adv +verb +pron +noun +conj +verb +det +noun +pron +verb +pron +verb +verb +pron +conj +verb +prep +pron +conj +det +verb +verb +adv +verb +conj +adv +prep +det +noun +det +verb +noun +noun +conj +det +verb +verb +pron +verb +noun +verb +pron +conj +det +verb +verb +adv +verb +adj +verb +det +noun +det +noun +conj +verb +det +noun +conj +det +verb +ptcl +noun +conj +adv +det +noun +verb +prep +det +noun +det +verb +prep +det +noun +det +noun +pron +adv +verb +det +noun +verb +pron +ptcl +noun +adj +pron +det +noun +verb +pron +conj +verb +conj +verb +det +noun +pron +prep +det +noun +pron +conj +verb +adv +det +noun +verb +prep +det +noun +det +noun +conj +verb +prep +det +noun +verb +adv +conj +verb +pron +noun +adj +verb +prep +pron +adj +adj +adj +adj +conj +adj +adj +conj +verb +pron +prep +det +noun +pron +conj +verb +pron +conj +det +noun +verb +verb +adj +verb +adj +adj +conj +adj +verb +conj +adj +verb +conj +verb +det +noun +noun +conj +det +noun +verb +det +noun +pron +verb +verb +prep +det +noun +conj +adv +noun +adj +verb +pron +conj +adv +verb +pron +verb +conj +verb +pron +adj +adv +verb +ptcl +adv +verb +prep +det +noun +conj +verb +pron +det +noun +adv +pron +prep +noun +noun +pron +conj +verb +noun +pron +conj +verb +pron +det +noun +pron +noun +verb +conj +det +verb +num +conj +adj +noun +conj +verb +det +noun +verb +prep +det +noun +verb +det +num +noun +conj +det +noun +conj +verb +verb +conj +verb +det +noun +conj +det +noun +det +noun +conj +verb +adj +conj +verb +conj +det +verb +det +noun +num +noun +adj +verb +conj +det +verb +verb +adj +noun +prep +noun +conj +noun +conj +verb +det +noun +verb +prep +det +noun +conj +verb +prep +det +noun +noun +conj +verb +det +noun +conj +noun +verb +verb +pron +noun +prep +det +noun +verb +pron +conj +det +verb +verb +pron +adj +verb +verb +noun +conj +verb +det +noun +conj +adv +adv +noun +conj +verb +verb +det +noun +conj +det +noun +det +noun +verb +verb +conj +det +noun +det +noun +adv +verb +noun +adj +conj +noun +noun +verb +conj +noun +adv +verb +pron +conj +adv +det +noun +noun +conj +verb +pron +verb +conj +det +noun +verb +prep +det +adv +verb +noun +verb +conj +det +noun +verb +pron +verb +conj +verb +prep +det +noun +det +noun +conj +noun +conj +det +verb +prep +pron +verb +conj +noun +adv +verb +conj +verb +det +noun +verb +pron +verb +prep +pron +adj +conj +noun +adv +verb +adv +verb +conj +verb +det +num +noun +det +adj +conj +pron +noun +verb +conj +det +num +noun +det +adj +conj +pron +noun +verb +adv +adv +verb +conj +adv +prep +noun +verb +pron +conj +verb +prep +det +noun +det +noun +conj +noun +adv +verb +conj +adv +verb +verb +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +noun +conj +det +noun +verb +prep +det +noun +noun +det +noun +verb +det +noun +pron +verb +verb +det +noun +pron +verb +det +noun +det +noun +conj +det +verb +conj +det +noun +det +noun +conj +adj +noun +conj +adj +noun +conj +adj +det +noun +verb +pron +conj +pron +pron +pron +verb +verb +conj +verb +noun +noun +verb +pron +verb +det +noun +det +noun +det +noun +det +verb +conj +verb +det +noun +verb +pron +adj +verb +noun +noun +conj +noun +conj +noun +adv +verb +pron +conj +det +noun +pron +det +prep +det +noun +conj +pron +pron +verb +conj +pron +verb +noun +conj +prep +pron +det +noun +verb +pron +det +noun +conj +noun +noun +adv +verb +pron +verb +pron +det +noun +det +noun +det +noun +conj +ptcl +pron +verb +prep +det +noun +verb +verb +prep +det +noun +conj +ptcl +pron +verb +prep +det +noun +verb +verb +prep +det +noun +adv +verb +det +noun +conj +adj +verb +conj +pron +verb +det +noun +prep +adv +verb +noun +noun +verb +det +noun +pron +conj +verb +pron +prep +noun +verb +conj +adj +verb +prep +det +adj +conj +noun +conj +noun +conj +verb +conj +det +adj +noun +verb +conj +verb +pron +det +noun +verb +verb +pron +verb +adj +pron +noun +adv +adv +verb +pron +pron +conj +det +verb +verb +det +noun +verb +prep +pron +noun +noun +pron +verb +conj +adv +verb +det +det +noun +conj +det +det +noun +adv +det +noun +verb +det +noun +pron +conj +pron +verb +prep +pron +verb +verb +pron +conj +verb +det +noun +pron +conj +verb +pron +conj +ptcl +pron +verb +det +noun +pron +verb +verb +pron +conj +ptcl +pron +verb +det +noun +pron +prep +pron +verb +pron +conj +pron +verb +noun +conj +det +noun +adj +verb +conj +det +noun +pron +verb +conj +pron +verb +noun +noun +det +noun +pron +conj +verb +det +noun +det +noun +verb +prep +det +noun +det +noun +pron +prep +det +noun +pron +conj +adv +verb +adj +prep +det +noun +pron +ptcl +verb +pron +conj +verb +pron +det +adv +verb +pron +adv +adv +verb +noun +conj +ptcl +verb +det +noun +det +noun +verb +prep +det +noun +pron +conj +prep +noun +num +verb +det +noun +det +noun +conj +noun +conj +noun +det +noun +pron +conj +verb +pron +prep +noun +adj +prep +adj +conj +verb +prep +pron +conj +verb +det +noun +pron +conj +det +noun +conj +det +noun +pron +verb +adj +conj +det +noun +conj +verb +verb +pron +noun +conj +noun +verb +prep +pron +conj +verb +det +noun +verb +det +noun +noun +adj +verb +pron +adv +verb +conj +verb +verb +adv +adj +noun +pron +adj +conj +noun +adj +conj +noun +adj +adv +pron +verb +verb +noun +adj +verb +pron +conj +verb +noun +prep +det +noun +verb +pron +verb +det +noun +pron +det +adj +prep +pron +verb +verb +pron +conj +verb +det +noun +verb +prep +noun +pron +conj +verb +adv +conj +verb +det +noun +conj +verb +pron +verb +verb +conj +adv +verb +conj +verb +det +noun +pron +adj +verb +conj +adv +pron +noun +adj +conj +verb +pron +prep +det +noun +verb +pron +det +noun +verb +adj +verb +det +noun +prep +pron +det +noun +det +noun +prep +adj +verb +conj +verb +pron +det +noun +verb +conj +pron +det +noun +verb +conj +verb +noun +verb +adj +conj +det +verb +verb +conj +noun +verb +conj +verb +adj +conj +verb +pron +conj +noun +adv +verb +conj +adv +verb +pron +conj +verb +prep +pron +pron +verb +adv +adv +det +noun +det +noun +verb +verb +prep +pron +adv +verb +det +noun +conj +prep +noun +det +noun +verb +pron +conj +verb +prep +det +noun +verb +pron +noun +verb +pron +conj +verb +noun +verb +pron +det +noun +conj +verb +conj +adv +verb +conj +adv +verb +prep +det +noun +conj +adv +prep +det +noun +conj +verb +pron +det +noun +pron +conj +adv +verb +pron +verb +conj +verb +det +noun +verb +ptcl +noun +adj +conj +verb +prep +adv +prep +pron +verb +prep +adv +verb +pron +verb +pron +pron +adv +conj +verb +pron +det +noun +conj +verb +prep +pron +det +noun +conj +verb +det +noun +prep +det +noun +pron +adv +det +noun +verb +det +noun +prep +adj +verb +prep +pron +pron +adv +verb +verb +pron +conj +det +verb +pron +prep +det +noun +pron +conj +ptcl +verb +pron +conj +verb +noun +conj +noun +noun +verb +det +noun +pron +verb +adv +adv +conj +verb +conj +adj +verb +pron +conj +verb +pron +prep +det +noun +verb +pron +det +noun +verb +det +noun +det +noun +verb +prep +noun +noun +conj +verb +pron +conj +det +adj +noun +verb +conj +verb +adv +conj +verb +pron +prep +noun +verb +det +det +noun +verb +det +noun +conj +verb +ptcl +det +noun +pron +verb +noun +verb +ptcl +conj +verb +prep +det +noun +verb +pron +det +noun +verb +pron +pron +verb +noun +det +noun +det +noun +prep +pron +verb +noun +conj +noun +prep +det +noun +pron +conj +prep +det +adj +conj +verb +prep +det +adj +verb +pron +det +noun +ptcl +adj +verb +det +noun +conj +conj +adv +verb +pron +verb +prep +noun +verb +noun +conj +det +verb +adj +noun +verb +conj +verb +det +noun +pron +verb +noun +pron +verb +verb +pron +prep +pron +conj +pron +prep +pron +det +noun +verb +det +noun +det +noun +verb +conj +pron +adj +verb +prep +det +noun +det +noun +conj +verb +noun +verb +pron +prep +adj +pron +conj +verb +ptcl +verb +pron +conj +adv +verb +conj +verb +conj +det +noun +adv +adv +verb +prep +det +noun +det +noun +conj +pron +verb +pron +conj +det +noun +pron +pron +verb +det +adj +prep +det +noun +det +noun +conj +ptcl +pron +verb +adj +noun +pron +prep +det +noun +pron +pron +verb +conj +ptcl +pron +verb +adj +det +adj +pron +det +verb +prep +pron +verb +pron +conj +verb +noun +adj +prep +det +noun +pron +conj +verb +prep +det +noun +det +noun +ptcl +det +noun +prep +det +noun +conj +noun +verb +det +noun +conj +ptcl +det +noun +prep +pron +det +noun +verb +conj +conj +det +noun +pron +conj +det +noun +pron +verb +pron +verb +pron +conj +verb +prep +pron +adj +pron +verb +verb +prep +det +noun +adj +conj +adj +conj +num +noun +conj +num +noun +verb +verb +prep +det +noun +det +adj +conj +conj +det +noun +pron +verb +pron +verb +pron +conj +verb +prep +pron +adj +pron +verb +adj +prep +det +noun +verb +conj +num +noun +verb +verb +prep +det +noun +det +noun +verb +conj +verb +adj +det +adj +pron +conj +verb +pron +conj +det +noun +pron +prep +noun +prep +adj +verb +det +noun +det +noun +pron +det +prep +noun +pron +pron +verb +conj +verb +pron +noun +num +noun +conj +verb +adj +prep +pron +ptcl +verb +det +num +num +prep +det +noun +conj +verb +verb +det +verb +conj +conj +verb +verb +pron +ptcl +verb +pron +conj +verb +prep +pron +adv +conj +prep +det +num +num +det +adv +verb +adv +adv +verb +noun +prep +det +noun +pron +det +prep +noun +conj +verb +adj +det +adj +pron +conj +conj +verb +det +noun +pron +verb +verb +pron +prep +pron +conj +pron +adj +conj +pron +verb +verb +det +noun +pron +conj +conj +adv +verb +verb +prep +pron +adv +adj +conj +num +conj +prep +noun +num +conj +adj +noun +verb +adj +noun +conj +conj +verb +pron +verb +det +noun +conj +conj +adv +det +noun +verb +verb +pron +conj +det +adj +conj +det +noun +ptcl +verb +pron +ptcl +pron +verb +prep +det +noun +verb +verb +prep +noun +conj +ptcl +pron +verb +prep +det +noun +verb +verb +prep +noun +ptcl +adv +verb +pron +conj +conj +num +prep +pron +verb +prep +det +noun +prep +adj +noun +ptcl +pron +verb +verb +pron +prep +det +noun +pron +det +prep +noun +conj +conj +verb +verb +num +conj +adj +prep +det +adj +noun +adv +verb +prep +adj +pron +adv +verb +det +noun +verb +pron +noun +adv +verb +prep +pron +det +noun +pron +conj +verb +pron +prep +adv +verb +pron +det +noun +adv +verb +pron +prep +adv +conj +prep +adv +num +prep +pron +verb +det +noun +det +noun +noun +noun +pron +verb +verb +noun +prep +det +noun +pron +conj +verb +pron +verb +verb +pron +adj +noun +adj +noun +conj +adv +verb +pron +verb +verb +det +noun +verb +pron +conj +det +noun +conj +det +noun +conj +adj +pron +verb +conj +verb +conj +verb +det +noun +verb +pron +verb +verb +prep +pron +conj +adj +verb +pron +conj +verb +det +noun +det +noun +pron +verb +pron +conj +det +noun +verb +pron +conj +verb +det +noun +pron +verb +adj +det +noun +pron +pron +verb +pron +num +noun +conj +verb +pron +verb +verb +verb +conj +pron +verb +conj +verb +det +noun +pron +verb +pron +verb +verb +prep +pron +conj +verb +pron +conj +det +adv +verb +conj +verb +verb +pron +prep +noun +conj +verb +det +verb +conj +det +noun +pron +verb +det +verb +verb +adv +conj +verb +verb +det +noun +pron +adj +det +verb +adv +verb +pron +det +noun +pron +verb +pron +noun +adj +adj +det +noun +pron +verb +pron +conj +verb +pron +ptcl +verb +adv +pron +verb +det +noun +pron +conj +pron +pron +verb +conj +verb +det +noun +pron +verb +pron +det +noun +prep +pron +verb +adj +det +verb +pron +adv +adv +det +noun +pron +det +adj +verb +pron +conj +adv +verb +adj +det +noun +pron +prep +det +noun +pron +conj +verb +conj +verb +det +noun +det +noun +pron +verb +prep +det +noun +conj +verb +prep +det +noun +det +noun +prep +det +noun +conj +verb +pron +noun +adj +conj +verb +pron +adv +conj +verb +pron +noun +verb +pron +conj +verb +ptcl +verb +verb +det +noun +pron +prep +adj +noun +conj +det +verb +verb +ptcl +verb +conj +det +verb +prep +noun +adj +conj +adj +verb +pron +conj +verb +prep +pron +verb +noun +det +noun +conj +det +noun +conj +verb +det +noun +pron +conj +verb +det +num +prep +noun +adj +conj +adv +verb +num +conj +noun +adj +conj +pron +det +noun +verb +noun +adv +verb +verb +pron +conj +pron +noun +verb +verb +noun +noun +conj +verb +verb +pron +conj +noun +prep +det +noun +pron +verb +pron +verb +det +noun +pron +conj +prep +noun +adv +verb +adv +conj +verb +pron +conj +ptcl +pron +verb +det +noun +pron +adv +prep +noun +conj +verb +adj +verb +verb +pron +det +noun +conj +adv +verb +det +noun +det +noun +prep +det +noun +adv +verb +verb +conj +det +verb +pron +adv +adj +verb +det +noun +pron +conj +pron +verb +conj +verb +noun +pron +prep +noun +noun +verb +adv +conj +verb +noun +pron +verb +prep +det +noun +conj +verb +noun +pron +verb +pron +prep +det +noun +det +noun +det +verb +verb +verb +adv +verb +pron +noun +conj +det +noun +verb +pron +conj +verb +conj +det +noun +verb +pron +conj +det +noun +verb +verb +det +noun +conj +adv +verb +pron +verb +prep +pron +conj +det +pron +verb +det +noun +det +noun +conj +verb +det +noun +pron +verb +adv +conj +verb +adj +verb +pron +verb +noun +pron +adj +verb +conj +verb +noun +adj +conj +det +verb +pron +pron +pron +verb +prep +det +adj +adj +verb +det +adj +conj +conj +verb +prep +det +noun +verb +verb +det +noun +verb +pron +pron +conj +det +noun +verb +det +adv +verb +adv +verb +adv +verb +adv +verb +verb +det +noun +conj +det +noun +conj +verb +det +adv +pron +conj +pron +verb +pron +det +noun +pron +adj +verb +pron +adv +verb +verb +pron +det +noun +conj +verb +adj +verb +verb +verb +pron +det +verb +conj +verb +adj +conj +verb +noun +prep +noun +conj +verb +verb +pron +conj +det +noun +verb +det +noun +verb +verb +conj +verb +verb +noun +adj +conj +det +noun +verb +det +noun +pron +ptcl +verb +pron +conj +adj +adv +verb +prep +det +noun +det +noun +conj +adv +verb +pron +adj +verb +noun +prep +noun +noun +verb +conj +adj +prep +det +noun +det +noun +conj +verb +det +noun +verb +adv +verb +conj +pron +verb +verb +conj +verb +det +noun +verb +pron +prep +noun +pron +adj +verb +conj +prep +noun +adj +adj +adv +verb +det +noun +verb +pron +verb +pron +verb +adj +conj +verb +pron +conj +pron +verb +pron +conj +det +noun +verb +pron +ptcl +verb +pron +conj +pron +det +verb +pron +prep +det +noun +conj +verb +det +noun +det +noun +prep +noun +noun +pron +verb +adv +pron +prep +num +noun +verb +det +num +noun +det +noun +conj +adj +pron +verb +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +prep +det +adj +noun +adj +verb +conj +noun +adj +verb +conj +adj +adj +verb +adj +conj +adj +adj +conj +adj +verb +det +noun +det +noun +noun +noun +pron +verb +prep +adv +verb +noun +prep +det +noun +pron +conj +verb +prep +det +noun +prep +noun +det +noun +verb +pron +prep +det +noun +pron +conj +verb +prep +adj +noun +verb +adj +verb +prep +det +noun +adj +conj +pron +verb +verb +adv +pron +prep +det +noun +conj +ptcl +pron +verb +adj +verb +pron +conj +det +verb +conj +adv +verb +prep +adj +conj +adj +noun +verb +adv +conj +prep +det +adj +verb +verb +adj +verb +conj +verb +pron +pron +adv +verb +adj +det +noun +adj +verb +pron +conj +adj +pron +verb +verb +pron +verb +adv +pron +prep +det +noun +conj +adj +verb +verb +det +noun +det +noun +det +noun +pron +verb +det +noun +conj +verb +det +noun +verb +prep +det +adj +prep +det +adj +conj +verb +det +prep +det +adj +noun +verb +prep +noun +conj +verb +det +adj +verb +conj +adj +verb +conj +verb +det +prep +noun +adv +pron +conj +verb +verb +prep +det +noun +verb +pron +det +adj +adj +noun +verb +conj +adj +pron +verb +pron +det +verb +det +noun +det +noun +conj +det +noun +conj +det +verb +adj +pron +verb +noun +adv +verb +pron +ptcl +noun +verb +pron +verb +det +adj +conj +verb +conj +verb +pron +det +adj +verb +conj +adv +pron +ptcl +verb +pron +pron +verb +verb +prep +det +adj +conj +det +noun +pron +adj +verb +conj +pron +adj +verb +adv +verb +det +adj +adj +conj +det +adj +adj +conj +noun +verb +verb +prep +noun +verb +det +num +prep +adj +conj +prep +det +noun +verb +pron +verb +verb +prep +noun +conj +det +noun +det +noun +verb +det +noun +conj +noun +conj +verb +pron +prep +noun +conj +verb +pron +det +noun +prep +det +verb +conj +verb +conj +verb +conj +det +adj +noun +verb +adv +verb +pron +det +noun +det +noun +noun +prep +det +noun +pron +verb +conj +verb +pron +prep +pron +conj +det +verb +pron +pron +verb +verb +pron +verb +conj +verb +pron +det +num +noun +pron +adj +prep +adj +conj +adj +prep +adj +pron +prep +det +noun +pron +conj +verb +det +noun +verb +adv +verb +pron +verb +verb +verb +det +noun +pron +verb +pron +verb +verb +pron +verb +verb +pron +conj +det +noun +pron +verb +conj +det +verb +prep +adj +pron +conj +prep +adj +adv +verb +adj +pron +verb +conj +pron +verb +prep +det +noun +pron +conj +verb +det +num +verb +prep +det +num +noun +conj +det +noun +verb +pron +verb +verb +conj +det +noun +det +noun +verb +pron +conj +det +adj +verb +pron +adv +adv +verb +prep +pron +conj +ptcl +pron +verb +prep +pron +adj +verb +verb +pron +noun +conj +ptcl +pron +verb +prep +pron +verb +adj +verb +pron +noun +conj +det +noun +det +noun +adv +verb +verb +conj +verb +conj +verb +det +noun +pron +noun +prep +adj +conj +verb +pron +prep +noun +verb +pron +noun +adj +conj +verb +num +adj +verb +prep +det +noun +verb +conj +noun +verb +verb +verb +verb +pron +noun +noun +noun +conj +det +noun +verb +pron +conj +verb +conj +det +adj +verb +verb +verb +pron +noun +noun +noun +conj +verb +det +noun +verb +pron +conj +verb +verb +pron +verb +pron +verb +pron +noun +conj +verb +det +noun +pron +conj +verb +det +noun +verb +det +noun +pron +conj +adv +verb +conj +verb +pron +conj +conj +verb +prep +noun +conj +verb +prep +noun +prep +det +noun +det +noun +adv +noun +verb +num +noun +verb +pron +verb +prep +det +noun +det +prep +pron +conj +adv +verb +noun +verb +conj +noun +prep +pron +verb +verb +pron +conj +conj +pron +pron +verb +pron +verb +conj +det +noun +pron +noun +verb +conj +adj +verb +pron +conj +pron +verb +conj +verb +det +verb +prep +det +noun +verb +verb +det +noun +noun +verb +det +noun +pron +verb +pron +adj +conj +verb +prep +noun +conj +prep +noun +noun +noun +conj +det +noun +verb +conj +verb +conj +verb +pron +det +noun +verb +det +noun +conj +det +noun +conj +verb +prep +pron +det +noun +conj +verb +prep +pron +conj +det +adj +noun +verb +pron +det +noun +prep +det +noun +conj +adj +verb +noun +prep +det +noun +conj +verb +prep +det +noun +conj +det +noun +det +verb +pron +conj +det +verb +verb +verb +ptcl +det +noun +noun +verb +det +verb +prep +noun +noun +ptcl +prep +det +adj +conj +verb +pron +prep +noun +verb +adj +det +noun +verb +pron +verb +pron +conj +det +noun +verb +pron +verb +det +noun +noun +det +prep +noun +det +noun +conj +verb +noun +prep +det +noun +conj +verb +adj +det +verb +conj +verb +prep +det +noun +conj +verb +det +noun +det +noun +conj +det +noun +det +verb +det +noun +conj +verb +pron +verb +det +noun +pron +noun +noun +verb +conj +pron +pron +verb +noun +noun +conj +verb +pron +adj +conj +adj +prep +det +noun +conj +verb +pron +conj +det +noun +conj +det +noun +verb +det +adj +pron +verb +conj +det +noun +det +verb +prep +det +noun +conj +verb +ptcl +det +noun +noun +verb +conj +verb +pron +verb +pron +pron +verb +conj +det +noun +verb +pron +ptcl +adv +verb +conj +prep +noun +adj +conj +verb +verb +noun +conj +verb +pron +verb +prep +det +noun +prep +noun +conj +verb +adv +conj +adv +verb +prep +det +noun +verb +conj +verb +noun +adj +prep +det +noun +verb +prep +pron +conj +adj +verb +prep +pron +conj +adv +noun +adj +conj +verb +pron +ptcl +adv +prep +pron +noun +verb +prep +det +noun +conj +verb +adv +det +noun +conj +verb +det +noun +verb +verb +adv +adv +verb +det +noun +conj +verb +det +noun +verb +pron +ptcl +verb +pron +conj +verb +noun +conj +adv +verb +adv +adj +det +det +noun +verb +conj +adv +det +noun +pron +verb +verb +conj +verb +prep +det +noun +verb +conj +adj +ptcl +pron +verb +prep +det +noun +verb +verb +conj +verb +pron +prep +det +noun +verb +pron +verb +det +noun +conj +det +adj +det +noun +verb +prep +pron +noun +pron +verb +conj +pron +pron +verb +det +noun +pron +conj +verb +det +noun +verb +pron +verb +pron +pron +noun +adj +conj +pron +verb +pron +pron +pron +verb +prep +pron +noun +pron +verb +det +noun +det +noun +adv +verb +prep +noun +conj +prep +noun +conj +det +verb +prep +pron +verb +conj +verb +prep +noun +verb +pron +conj +prep +pron +adv +verb +pron +conj +conj +verb +prep +noun +verb +det +noun +conj +adj +conj +noun +verb +det +noun +conj +verb +det +noun +verb +adv +verb +verb +pron +adv +pron +adv +pron +verb +pron +prep +pron +noun +pron +verb +conj +pron +pron +verb +noun +verb +noun +num +verb +det +adj +verb +noun +verb +adv +verb +prep +det +noun +conj +det +verb +verb +pron +noun +conj +adv +verb +conj +verb +det +adj +verb +adv +conj +det +verb +verb +adv +verb +adj +verb +verb +pron +prep +det +num +verb +det +noun +det +noun +verb +det +adj +verb +pron +det +noun +ptcl +verb +pron +conj +det +noun +conj +det +noun +verb +pron +prep +det +noun +det +noun +conj +verb +noun +prep +pron +prep +noun +noun +conj +adv +verb +pron +conj +det +noun +conj +det +noun +verb +pron +conj +pron +verb +adv +verb +adj +det +verb +pron +adj +noun +verb +noun +verb +noun +pron +verb +noun +conj +noun +pron +verb +conj +verb +prep +pron +noun +conj +verb +noun +conj +verb +pron +noun +conj +verb +conj +conj +verb +det +noun +det +noun +verb +det +noun +pron +prep +det +noun +verb +det +noun +pron +conj +verb +det +noun +det +noun +pron +conj +pron +verb +conj +pron +verb +conj +pron +verb +adv +verb +adj +noun +adj +det +adj +conj +verb +pron +adv +conj +adj +verb +prep +pron +det +noun +pron +verb +verb +det +noun +pron +conj +det +noun +verb +det +noun +verb +prep +pron +pron +verb +det +noun +verb +verb +pron +conj +verb +det +noun +pron +conj +verb +pron +verb +prep +det +noun +conj +verb +conj +conj +verb +det +noun +det +noun +pron +verb +det +noun +pron +verb +pron +adj +adv +verb +pron +conj +det +noun +verb +adj +noun +pron +verb +pron +det +noun +prep +det +noun +pron +verb +pron +det +noun +adv +verb +prep +det +noun +noun +pron +verb +det +verb +pron +verb +prep +noun +noun +prep +noun +verb +pron +conj +verb +adj +prep +noun +pron +prep +pron +verb +pron +conj +verb +prep +pron +det +noun +det +noun +conj +verb +noun +verb +det +noun +pron +conj +det +verb +prep +det +noun +pron +verb +conj +prep +ptcl +pron +verb +verb +pron +conj +det +noun +conj +det +noun +verb +det +noun +pron +verb +conj +prep +pron +verb +conj +verb +pron +verb +verb +det +noun +conj +prep +noun +pron +verb +conj +verb +det +noun +adv +verb +prep +noun +pron +verb +verb +det +noun +det +noun +noun +noun +pron +verb +noun +det +noun +pron +conj +verb +det +noun +pron +verb +det +verb +prep +det +noun +conj +adv +verb +verb +adv +verb +adj +noun +verb +verb +det +verb +verb +det +noun +pron +verb +det +noun +pron +conj +det +adj +verb +conj +adj +adj +verb +prep +det +noun +conj +det +verb +verb +conj +pron +prep +det +adj +noun +conj +pron +prep +det +noun +pron +conj +det +adj +verb +det +noun +pron +verb +conj +verb +conj +det +noun +verb +conj +verb +det +noun +pron +verb +det +noun +pron +conj +det +noun +pron +verb +adv +verb +det +noun +pron +conj +det +noun +adj +verb +conj +det +verb +adv +verb +adj +conj +verb +prep +det +noun +det +noun +conj +ptcl +pron +verb +verb +prep +det +noun +conj +det +noun +pron +verb +prep +det +noun +verb +adj +pron +verb +conj +adj +conj +adj +conj +verb +det +noun +verb +conj +det +noun +verb +verb +det +verb +verb +adv +noun +adv +verb +noun +noun +conj +verb +pron +noun +adv +verb +adv +adv +verb +noun +noun +conj +det +verb +adv +det +noun +verb +det +noun +verb +pron +noun +conj +noun +verb +pron +prep +det +noun +det +adj +adv +verb +det +noun +conj +det +noun +det +noun +conj +adj +verb +adj +conj +adj +adj +adv +verb +det +noun +noun +verb +conj +pron +verb +prep +noun +conj +verb +pron +det +noun +pron +prep +det +noun +verb +noun +verb +conj +adj +verb +conj +det +noun +det +noun +prep +noun +verb +conj +adv +verb +pron +prep +adj +conj +adv +verb +prep +noun +noun +conj +verb +pron +pron +pron +verb +verb +verb +noun +noun +conj +adv +conj +det +noun +verb +det +noun +pron +verb +pron +pron +verb +noun +verb +pron +det +noun +det +noun +conj +det +verb +pron +noun +conj +verb +pron +pron +det +noun +pron +conj +det +noun +verb +noun +adv +verb +pron +conj +verb +det +noun +noun +conj +det +det +noun +det +noun +conj +verb +verb +conj +verb +pron +verb +prep +pron +det +noun +verb +pron +noun +verb +adv +verb +noun +conj +verb +pron +verb +noun +noun +verb +conj +pron +verb +adv +verb +noun +verb +det +noun +pron +det +noun +pron +conj +verb +noun +det +noun +pron +conj +verb +prep +pron +num +noun +conj +det +adj +verb +verb +conj +adv +verb +noun +verb +det +noun +pron +det +noun +pron +adv +conj +det +adj +conj +det +adj +prep +det +num +conj +adj +adj +verb +det +noun +conj +prep +det +noun +pron +det +num +noun +verb +conj +adj +verb +pron +conj +verb +det +noun +verb +pron +verb +adv +verb +det +noun +conj +det +noun +det +noun +conj +prep +det +noun +conj +verb +conj +verb +conj +conj +noun +prep +det +noun +verb +conj +prep +det +noun +det +adj +ptcl +verb +det +verb +pron +prep +det +noun +verb +pron +verb +det +noun +noun +conj +det +noun +noun +conj +det +noun +noun +adv +verb +det +noun +adj +conj +verb +conj +verb +det +noun +verb +prep +det +noun +pron +conj +det +noun +verb +conj +verb +det +noun +verb +prep +det +pron +conj +verb +adj +prep +pron +adj +verb +pron +noun +pron +noun +adj +prep +det +noun +conj +det +verb +pron +verb +noun +det +noun +pron +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +pron +verb +det +adj +conj +adj +noun +adj +adj +pron +verb +det +adv +pron +conj +pron +prep +pron +det +adj +noun +adj +det +noun +verb +conj +det +noun +conj +verb +det +noun +verb +pron +det +noun +verb +pron +pron +verb +prep +det +noun +pron +noun +verb +verb +pron +det +noun +verb +pron +conj +adv +noun +prep +noun +verb +pron +noun +verb +verb +noun +det +noun +pron +verb +prep +adj +pron +conj +ptcl +verb +det +adj +pron +prep +det +noun +pron +conj +conj +noun +verb +pron +noun +adv +noun +pron +verb +conj +adj +verb +verb +pron +noun +conj +verb +pron +prep +pron +det +noun +verb +pron +adv +adv +det +noun +verb +det +noun +conj +det +noun +pron +verb +prep +det +noun +noun +verb +det +noun +conj +det +noun +conj +adj +ptcl +pron +verb +pron +verb +conj +verb +conj +prep +det +noun +pron +adv +verb +conj +verb +conj +adv +verb +conj +verb +noun +adj +conj +verb +prep +det +noun +det +noun +conj +pron +det +noun +pron +adv +verb +verb +pron +conj +adj +det +noun +pron +verb +prep +det +verb +det +noun +conj +verb +det +noun +pron +conj +verb +det +noun +conj +verb +det +noun +prep +det +noun +conj +det +noun +prep +det +noun +conj +det +noun +prep +det +noun +conj +verb +prep +det +noun +noun +conj +pron +adv +verb +noun +conj +adj +verb +pron +det +noun +conj +adj +pron +noun +verb +conj +noun +pron +adv +verb +prep +det +noun +conj +adj +verb +pron +det +noun +det +adj +conj +verb +noun +conj +noun +pron +verb +adj +det +noun +conj +det +adj +pron +verb +pron +noun +conj +pron +verb +pron +verb +conj +pron +verb +pron +verb +conj +ptcl +pron +noun +conj +noun +noun +conj +verb +det +noun +det +noun +prep +det +noun +conj +pron +adv +verb +conj +det +verb +verb +verb +ptcl +pron +noun +conj +noun +noun +conj +verb +det +noun +conj +det +adj +verb +adj +noun +conj +conj +verb +verb +pron +noun +noun +adj +pron +ptcl +pron +noun +adj +det +verb +ptcl +pron +verb +prep +det +noun +adj +verb +conj +ptcl +pron +verb +prep +det +noun +det +noun +verb +adj +conj +adj +conj +pron +adj +verb +det +noun +conj +det +noun +det +verb +det +noun +conj +ptcl +pron +verb +prep +det +noun +adj +verb +conj +ptcl +pron +verb +prep +det +noun +det +prep +pron +verb +adj +conj +pron +adj +det +noun +conj +det +noun +det +verb +det +noun +conj +det +verb +prep +det +noun +verb +prep +pron +conj +prep +adj +det +prep +pron +conj +det +verb +prep +det +noun +verb +prep +pron +conj +prep +det +verb +pron +conj +det +verb +prep +det +noun +verb +prep +det +noun +det +noun +conj +prep +det +verb +prep +pron +ptcl +pron +noun +conj +noun +noun +conj +verb +det +noun +conj +det +noun +conj +det +noun +conj +verb +det +adj +det +noun +det +noun +conj +det +noun +conj +det +noun +conj +verb +pron +verb +pron +adv +verb +noun +adj +det +verb +det +noun +conj +det +noun +verb +ptcl +pron +noun +conj +noun +noun +conj +verb +det +adv +det +noun +conj +det +noun +conj +adv +verb +prep +noun +conj +noun +noun +adj +verb +adj +det +adv +det +noun +conj +verb +adv +det +adv +pron +adj +ptcl +pron +noun +conj +noun +noun +conj +verb +noun +verb +conj +pron +adv +verb +adj +conj +adv +verb +noun +adj +conj +adj +noun +adv +adv +pron +conj +adv +verb +det +noun +adj +conj +adv +verb +adj +noun +conj +noun +ptcl +pron +noun +conj +noun +noun +conj +verb +det +noun +det +noun +conj +verb +det +noun +det +adj +conj +verb +conj +verb +prep +det +noun +det +noun +pron +ptcl +adv +verb +pron +noun +prep +det +noun +det +noun +conj +verb +pron +conj +verb +noun +det +verb +det +noun +adv +pron +verb +det +noun +det +noun +pron +noun +noun +noun +adv +verb +prep +det +noun +det +noun +verb +prep +pron +pron +verb +prep +pron +noun +conj +adj +conj +noun +prep +pron +verb +conj +verb +conj +prep +pron +verb +prep +det +noun +pron +conj +verb +prep +noun +prep +noun +conj +verb +prep +pron +adj +noun +adj +verb +prep +det +noun +prep +det +noun +noun +det +adj +prep +det +noun +noun +noun +noun +pron +verb +prep +det +noun +conj +det +noun +ptcl +verb +pron +verb +pron +adj +prep +det +noun +pron +noun +noun +det +verb +det +noun +conj +verb +det +verb +prep +pron +adv +verb +verb +det +noun +pron +pron +noun +noun +verb +det +noun +pron +prep +det +noun +conj +adv +verb +verb +verb +pron +det +noun +pron +conj +verb +pron +adv +adv +pron +verb +prep +adv +conj +ptcl +verb +verb +det +verb +prep +noun +noun +conj +det +noun +verb +prep +det +noun +verb +conj +verb +det +noun +pron +verb +pron +det +noun +det +noun +conj +det +verb +verb +pron +ptcl +verb +pron +adj +ptcl +verb +pron +adv +adv +verb +adv +prep +noun +noun +pron +adv +verb +conj +verb +pron +prep +det +noun +det +noun +verb +pron +det +noun +prep +adj +verb +verb +pron +adv +pron +verb +conj +pron +det +noun +det +adj +noun +conj +noun +det +noun +conj +verb +det +noun +verb +pron +verb +conj +pron +pron +verb +conj +adj +verb +prep +det +noun +pron +verb +pron +verb +det +noun +conj +adj +verb +conj +verb +verb +noun +conj +noun +noun +verb +adv +verb +conj +verb +verb +conj +adv +verb +det +noun +conj +verb +noun +prep +noun +conj +noun +prep +noun +conj +verb +noun +conj +noun +prep +noun +conj +adj +pron +noun +noun +adv +verb +pron +prep +noun +conj +verb +pron +conj +verb +verb +prep +adj +det +noun +prep +det +noun +pron +conj +adv +verb +adj +conj +pron +verb +conj +verb +pron +conj +adj +noun +verb +conj +verb +adj +conj +prep +det +verb +det +noun +verb +det +noun +det +adj +conj +det +verb +prep +noun +pron +verb +conj +verb +pron +det +noun +det +noun +prep +adj +det +noun +prep +noun +adj +det +noun +conj +adv +verb +det +noun +conj +conj +verb +det +noun +det +noun +det +verb +prep +noun +det +noun +verb +prep +noun +adj +det +verb +verb +adv +det +prep +det +noun +verb +prep +det +noun +det +prep +det +noun +adv +verb +verb +det +prep +det +noun +pron +conj +det +prep +det +noun +adv +verb +adv +verb +det +noun +pron +conj +ptcl +det +prep +noun +verb +conj +det +verb +prep +pron +det +noun +conj +verb +conj +adv +verb +det +noun +pron +noun +conj +noun +conj +verb +adv +noun +adj +pron +adv +verb +prep +noun +noun +prep +det +adv +conj +adv +adv +verb +conj +conj +adv +verb +det +noun +pron +ptcl +adv +verb +adj +noun +conj +prep +det +adj +verb +det +noun +pron +conj +adv +pron +pron +verb +verb +adv +det +noun +conj +adv +adv +verb +conj +verb +noun +conj +noun +conj +verb +noun +adj +conj +noun +conj +verb +conj +adj +adv +det +adj +verb +verb +pron +conj +conj +verb +pron +verb +prep +det +adj +verb +adv +verb +verb +prep +det +noun +adv +verb +conj +conj +det +noun +verb +prep +noun +conj +verb +prep +noun +adv +verb +det +noun +det +noun +det +noun +ptcl +conj +verb +det +noun +adv +verb +det +noun +conj +adv +prep +det +noun +det +noun +pron +det +noun +verb +conj +det +noun +adv +verb +det +noun +pron +conj +det +noun +verb +prep +det +noun +conj +det +noun +det +noun +verb +conj +adv +verb +det +noun +det +noun +det +noun +prep +noun +conj +adv +verb +adj +det +noun +det +noun +conj +verb +det +noun +det +noun +verb +prep +det +noun +det +noun +prep +noun +conj +noun +adj +conj +verb +det +noun +pron +prep +noun +adj +conj +verb +det +adj +pron +prep +det +adj +noun +prep +noun +noun +prep +noun +pron +conj +prep +det +noun +verb +det +noun +conj +adv +det +noun +pron +verb +adj +conj +det +noun +verb +verb +conj +adv +det +noun +adv +adv +pron +conj +verb +adj +pron +verb +conj +adv +verb +prep +noun +ptcl +verb +pron +conj +adv +adv +verb +det +noun +pron +conj +ptcl +adj +pron +verb +det +noun +conj +det +noun +verb +conj +det +noun +pron +adv +adv +verb +conj +prep +det +noun +conj +noun +pron +adj +verb +adv +det +noun +det +noun +conj +det +noun +conj +adv +det +noun +adj +conj +conj +det +noun +det +noun +adv +verb +det +noun +det +noun +det +noun +conj +conj +prep +det +noun +pron +det +prep +det +noun +verb +verb +conj +verb +verb +conj +verb +prep +pron +noun +verb +noun +prep +det +noun +conj +adv +verb +conj +verb +det +noun +conj +verb +adj +adv +verb +adv +det +noun +det +noun +det +noun +adv +verb +num +prep +det +noun +adj +verb +conj +adj +verb +num +verb +prep +det +noun +adj +verb +conj +adj +verb +conj +verb +conj +adv +verb +pron +noun +det +noun +pron +verb +conj +pron +verb +adv +conj +verb +det +noun +pron +noun +det +noun +verb +ptcl +verb +conj +ptcl +adv +verb +verb +det +noun +pron +prep +pron +adv +pron +verb +adj +conj +pron +adv +verb +noun +det +noun +det +noun +verb +conj +pron +verb +det +adj +conj +adj +noun +pron +verb +det +noun +prep +det +noun +pron +det +verb +pron +det +noun +prep +noun +adj +det +noun +pron +pron +adv +verb +verb +det +noun +pron +verb +ptcl +verb +pron +conj +prep +adj +det +verb +pron +verb +pron +conj +conj +verb +det +adj +noun +pron +prep +det +noun +pron +verb +pron +det +noun +conj +verb +verb +det +noun +pron +conj +verb +conj +verb +prep +det +verb +verb +det +noun +det +noun +pron +prep +noun +pron +adv +verb +conj +prep +noun +pron +adv +verb +conj +verb +pron +conj +det +noun +pron +prep +det +noun +verb +adv +verb +det +noun +conj +det +noun +det +noun +adv +verb +det +noun +det +noun +num +noun +pron +verb +det +noun +pron +verb +prep +noun +det +noun +conj +num +prep +pron +verb +adj +conj +num +adj +conj +det +adj +verb +det +noun +adv +verb +prep +pron +noun +conj +det +adj +verb +noun +prep +det +noun +prep +det +noun +pron +conj +verb +det +noun +verb +adj +conj +verb +conj +adj +noun +noun +verb +verb +det +noun +verb +prep +noun +adv +verb +adj +det +noun +pron +conj +verb +det +noun +pron +conj +det +adj +det +adj +verb +verb +pron +prep +det +noun +pron +conj +det +noun +pron +verb +conj +verb +det +adj +verb +ptcl +adv +adv +adv +verb +pron +conj +pron +verb +adv +prep +det +verb +conj +verb +pron +conj +verb +pron +verb +verb +det +noun +conj +det +adj +verb +prep +pron +prep +det +noun +conj +verb +det +noun +conj +adj +verb +adv +det +adj +noun +verb +noun +noun +verb +pron +conj +det +verb +verb +ptcl +verb +pron +adv +verb +pron +conj +verb +conj +adv +verb +det +noun +conj +det +noun +conj +conj +noun +verb +verb +det +adj +noun +conj +verb +pron +det +verb +pron +conj +conj +pron +verb +num +noun +conj +pron +num +conj +pron +adj +adj +prep +det +adj +noun +conj +verb +adv +verb +det +det +num +noun +verb +verb +prep +pron +conj +verb +adj +num +adv +det +det +num +verb +adj +num +conj +det +det +adj +verb +verb +verb +noun +conj +verb +det +noun +det +noun +pron +conj +prep +adj +noun +verb +det +noun +det +noun +pron +conj +verb +noun +prep +pron +conj +verb +det +det +num +noun +verb +verb +adj +num +noun +verb +noun +num +noun +pron +verb +verb +adj +num +noun +verb +verb +pron +det +noun +pron +adv +noun +adj +conj +adj +prep +adj +verb +adj +prep +adj +pron +verb +verb +prep +det +noun +det +noun +pron +verb +adv +det +det +num +noun +verb +noun +num +noun +pron +verb +verb +adj +num +noun +verb +verb +pron +det +noun +pron +adv +noun +adj +conj +adj +prep +adj +verb +adj +prep +adj +pron +verb +verb +prep +det +noun +det +noun +pron +conj +verb +adv +det +det +adj +noun +verb +verb +noun +verb +pron +conj +verb +adj +noun +verb +conj +adv +verb +conj +verb +conj +adv +verb +conj +verb +verb +verb +det +noun +pron +prep +det +noun +verb +verb +det +adj +conj +verb +det +noun +pron +verb +pron +noun +adj +conj +adj +verb +conj +verb +conj +adv +verb +conj +verb +conj +adv +verb +conj +verb +pron +verb +det +noun +pron +det +noun +conj +ptcl +verb +pron +verb +det +adj +prep +noun +conj +verb +prep +pron +det +noun +conj +verb +det +verb +det +num +noun +conj +det +verb +adj +verb +conj +verb +conj +det +adv +verb +adv +pron +verb +verb +prep +pron +conj +det +adj +noun +verb +prep +det +noun +det +adj +adv +verb +det +noun +conj +det +noun +det +noun +conj +conj +verb +det +noun +det +noun +prep +det +noun +pron +conj +adj +det +noun +prep +pron +adv +verb +prep +noun +noun +pron +conj +verb +prep +pron +adj +det +noun +conj +verb +pron +prep +pron +conj +det +noun +verb +det +noun +prep +det +noun +conj +conj +verb +det +noun +prep +adj +pron +conj +det +noun +prep +adj +adv +verb +det +noun +det +prep +adj +pron +verb +det +verb +det +noun +pron +verb +det +verb +pron +prep +noun +noun +noun +conj +verb +conj +verb +pron +verb +verb +conj +verb +pron +adj +verb +conj +verb +pron +adj +conj +verb +pron +verb +conj +verb +pron +prep +noun +verb +conj +verb +prep +pron +adv +verb +pron +det +adj +verb +noun +adv +verb +pron +verb +conj +verb +conj +verb +conj +verb +conj +adv +verb +pron +adj +conj +verb +conj +adj +conj +verb +conj +adv +verb +pron +verb +conj +prep +noun +conj +verb +prep +pron +conj +verb +det +noun +verb +pron +ptcl +verb +pron +prep +pron +verb +adj +pron +det +noun +pron +det +adj +pron +verb +adv +verb +adv +det +prep +adj +verb +verb +prep +pron +prep +det +noun +det +adj +det +verb +det +adj +conj +det +noun +pron +conj +verb +conj +adv +verb +pron +verb +verb +conj +adv +verb +pron +adj +verb +conj +adv +verb +pron +adj +conj +adv +verb +pron +adj +conj +prep +noun +conj +adv +verb +pron +adv +verb +adv +pron +verb +noun +adv +verb +pron +verb +conj +verb +conj +adj +conj +adj +conj +adj +conj +prep +noun +conj +adv +verb +pron +adv +verb +pron +verb +ptcl +verb +pron +prep +pron +adv +verb +adj +pron +det +adj +adv +pron +verb +conj +verb +pron +prep +noun +adj +conj +det +adj +prep +noun +adj +conj +verb +conj +verb +det +noun +adj +det +noun +pron +verb +det +noun +pron +verb +conj +prep +num +noun +det +noun +verb +conj +det +noun +det +noun +verb +prep +det +verb +adv +verb +det +noun +conj +det +adj +det +noun +prep +det +noun +det +noun +det +verb +noun +conj +verb +conj +det +noun +noun +verb +conj +verb +conj +verb +adv +prep +det +noun +conj +adv +noun +verb +prep +det +noun +conj +det +noun +verb +prep +noun +prep +noun +noun +det +adj +verb +pron +noun +verb +noun +noun +adj +conj +verb +prep +det +noun +pron +verb +conj +verb +det +noun +verb +verb +prep +pron +det +noun +pron +conj +verb +pron +verb +adj +conj +verb +adj +conj +verb +det +noun +verb +pron +pron +noun +verb +det +noun +conj +noun +adj +verb +prep +pron +conj +adv +det +adj +verb +prep +pron +conj +pron +adv +adv +verb +conj +pron +verb +det +noun +pron +prep +det +noun +pron +prep +det +verb +pron +verb +ptcl +verb +pron +ptcl +conj +verb +det +noun +pron +prep +adj +det +noun +verb +adv +pron +verb +pron +prep +noun +pron +adv +adj +det +num +det +verb +noun +noun +verb +prep +det +noun +verb +verb +pron +pron +verb +pron +pron +verb +pron +conj +det +verb +pron +num +noun +conj +prep +adv +verb +noun +conj +pron +verb +conj +det +adj +det +adj +verb +det +noun +det +noun +verb +verb +adv +verb +pron +verb +det +noun +conj +det +verb +verb +prep +det +noun +prep +det +adj +conj +verb +pron +det +noun +verb +det +noun +pron +adv +verb +prep +pron +verb +det +noun +prep +det +noun +pron +conj +verb +det +noun +conj +verb +pron +det +noun +conj +verb +det +noun +conj +adj +verb +verb +prep +det +num +noun +conj +verb +pron +verb +ptcl +verb +pron +conj +adj +prep +pron +verb +pron +conj +verb +adv +verb +verb +pron +adj +adj +ptcl +pron +verb +noun +conj +det +verb +verb +det +verb +prep +pron +det +noun +prep +det +noun +pron +pron +verb +conj +det +noun +det +noun +verb +conj +verb +prep +pron +conj +ptcl +det +noun +pron +prep +pron +det +noun +det +noun +verb +adj +verb +pron +conj +adv +verb +det +noun +pron +conj +verb +noun +det +verb +pron +verb +ptcl +pron +verb +noun +verb +pron +pron +verb +conj +verb +pron +det +noun +verb +noun +conj +verb +verb +conj +verb +det +noun +verb +verb +verb +pron +verb +det +noun +pron +conj +verb +noun +conj +verb +verb +pron +verb +verb +prep +pron +adj +conj +pron +verb +det +noun +pron +det +noun +det +prep +adj +verb +prep +noun +noun +conj +verb +pron +adv +adv +verb +prep +adv +prep +pron +det +noun +det +noun +prep +det +noun +pron +adv +pron +verb +prep +pron +adj +prep +det +noun +det +noun +pron +conj +verb +verb +prep +det +noun +det +noun +adv +verb +pron +det +noun +adj +pron +verb +prep +pron +prep +det +noun +pron +conj +verb +verb +det +noun +conj +verb +det +noun +det +noun +conj +prep +det +verb +pron +verb +pron +prep +det +noun +conj +verb +det +noun +verb +pron +conj +adj +verb +prep +pron +pron +adv +verb +verb +pron +det +noun +ptcl +verb +pron +conj +prep +pron +det +noun +adv +noun +verb +adv +verb +pron +verb +pron +det +noun +adv +verb +pron +prep +pron +verb +adv +adv +pron +verb +adv +adv +adj +det +noun +verb +adv +verb +prep +pron +det +noun +prep +noun +verb +noun +conj +verb +det +noun +verb +adv +prep +pron +verb +adv +verb +conj +verb +det +noun +conj +det +num +noun +noun +verb +verb +conj +verb +adv +verb +pron +adj +verb +det +noun +pron +prep +noun +verb +adv +conj +verb +prep +pron +conj +verb +adj +verb +prep +noun +pron +verb +conj +verb +noun +pron +conj +adj +verb +verb +prep +pron +det +noun +pron +conj +adv +conj +pron +verb +conj +conj +pron +conj +verb +prep +det +noun +conj +verb +pron +verb +conj +verb +det +noun +adv +adv +verb +adj +noun +verb +prep +pron +verb +conj +verb +conj +adv +verb +prep +noun +conj +det +noun +adj +conj +det +noun +adj +adv +prep +adj +verb +verb +verb +noun +pron +conj +adv +verb +pron +verb +conj +adv +pron +verb +verb +det +noun +pron +conj +verb +adv +verb +pron +verb +conj +verb +verb +pron +det +noun +conj +verb +pron +adv +verb +verb +prep +adj +det +pron +noun +verb +adv +adv +verb +prep +det +noun +conj +verb +pron +verb +adj +conj +verb +verb +verb +det +noun +conj +det +noun +det +noun +verb +prep +noun +adj +verb +verb +verb +verb +det +verb +pron +conj +adv +pron +verb +verb +noun +adj +det +num +verb +conj +prep +pron +noun +adj +prep +noun +conj +noun +prep +det +noun +conj +adj +det +noun +conj +det +verb +pron +verb +pron +noun +verb +ptcl +pron +verb +pron +verb +verb +pron +conj +adv +verb +det +noun +verb +verb +noun +conj +verb +pron +conj +det +noun +verb +pron +noun +prep +pron +verb +adv +verb +verb +det +noun +prep +det +noun +conj +verb +pron +conj +verb +adj +det +prep +noun +verb +det +noun +verb +det +noun +pron +conj +verb +det +noun +det +noun +verb +pron +det +noun +adv +verb +pron +det +noun +verb +det +noun +pron +prep +det +noun +pron +conj +adj +det +verb +noun +prep +noun +verb +conj +verb +conj +adv +verb +verb +det +noun +pron +conj +verb +pron +adv +adj +num +noun +noun +conj +adv +verb +det +noun +adv +adv +verb +verb +prep +pron +det +noun +verb +det +noun +det +noun +conj +prep +noun +verb +prep +noun +conj +noun +verb +pron +prep +noun +prep +det +noun +verb +verb +conj +adv +verb +pron +conj +pron +adj +verb +conj +verb +det +noun +det +noun +adv +det +noun +adj +verb +pron +verb +conj +det +verb +det +noun +verb +prep +noun +det +noun +adv +det +noun +conj +det +adj +verb +conj +det +noun +verb +pron +prep +adv +prep +det +noun +det +noun +conj +verb +adv +verb +prep +det +noun +verb +det +noun +conj +det +noun +conj +det +noun +adj +verb +noun +prep +det +noun +conj +pron +verb +conj +adv +verb +adj +noun +verb +conj +adj +verb +num +verb +pron +verb +verb +verb +det +noun +det +noun +conj +prep +adj +noun +verb +conj +verb +det +noun +verb +pron +adj +verb +pron +pron +pron +verb +conj +det +noun +verb +conj +det +noun +verb +pron +verb +pron +prep +det +noun +det +verb +conj +pron +verb +conj +pron +verb +det +noun +det +noun +det +noun +verb +pron +det +noun +pron +verb +conj +verb +pron +prep +adv +verb +det +noun +det +noun +verb +prep +adj +det +noun +conj +verb +prep +det +noun +det +noun +adv +det +noun +verb +det +noun +pron +verb +verb +pron +adv +noun +noun +verb +verb +adv +verb +det +noun +pron +pron +verb +conj +det +verb +verb +adj +noun +verb +adv +verb +prep +det +noun +pron +conj +verb +pron +conj +det +verb +verb +verb +pron +noun +pron +verb +det +verb +pron +conj +det +noun +verb +adv +prep +det +noun +conj +verb +pron +adj +noun +verb +adv +pron +verb +prep +noun +det +noun +conj +det +verb +prep +adj +verb +adv +verb +pron +verb +conj +verb +prep +det +noun +verb +pron +adj +conj +verb +det +adv +pron +verb +prep +noun +det +noun +conj +adv +verb +prep +noun +conj +adv +verb +det +noun +conj +prep +adj +verb +det +verb +verb +det +noun +adv +adv +pron +prep +pron +verb +conj +adv +det +noun +pron +adj +pron +verb +adv +verb +verb +conj +verb +conj +adv +verb +det +noun +conj +adv +noun +verb +conj +verb +det +noun +det +noun +noun +verb +conj +adv +noun +verb +adv +verb +pron +conj +verb +adv +verb +adv +conj +noun +verb +noun +verb +adj +det +noun +conj +det +adj +det +noun +prep +det +noun +conj +verb +pron +conj +verb +pron +verb +conj +verb +noun +det +noun +adv +noun +det +verb +pron +verb +conj +verb +verb +verb +det +num +noun +det +noun +conj +adj +verb +verb +verb +noun +adj +conj +det +verb +pron +prep +pron +pron +verb +conj +verb +det +noun +prep +det +noun +verb +conj +verb +verb +conj +det +noun +verb +det +noun +verb +adv +verb +verb +pron +prep +det +noun +conj +noun +noun +verb +conj +noun +verb +verb +prep +pron +det +noun +det +noun +prep +noun +det +adj +conj +verb +det +noun +pron +noun +noun +prep +det +adv +adv +verb +det +verb +prep +noun +det +noun +verb +conj +verb +det +num +noun +det +noun +det +verb +pron +verb +prep +noun +noun +conj +verb +pron +prep +det +noun +det +noun +conj +verb +pron +noun +conj +det +noun +verb +prep +det +noun +conj +verb +pron +det +noun +verb +pron +verb +det +noun +det +adj +conj +det +noun +verb +pron +verb +conj +prep +det +verb +pron +prep +det +noun +conj +adj +adj +verb +adv +verb +pron +det +noun +adv +verb +pron +pron +verb +conj +adv +verb +pron +prep +adv +adj +noun +conj +verb +det +noun +adv +conj +prep +noun +verb +det +noun +verb +det +noun +adj +noun +pron +verb +conj +verb +adv +noun +adj +verb +noun +conj +verb +pron +verb +pron +det +noun +verb +pron +verb +pron +noun +conj +noun +det +verb +noun +conj +verb +conj +prep +noun +verb +pron +conj +verb +pron +prep +det +noun +verb +prep +pron +det +noun +pron +verb +adj +pron +conj +det +adj +pron +conj +adj +verb +adv +prep +noun +prep +pron +conj +det +noun +conj +det +adj +verb +det +noun +conj +verb +det +noun +conj +det +noun +verb +conj +verb +det +noun +verb +pron +verb +pron +prep +det +num +verb +pron +conj +det +verb +det +noun +verb +pron +det +noun +conj +pron +verb +noun +det +verb +noun +verb +adj +verb +conj +det +verb +conj +pron +adj +verb +conj +det +adv +verb +verb +verb +conj +det +noun +verb +conj +adj +verb +conj +adv +noun +verb +verb +noun +verb +det +noun +prep +det +noun +verb +adj +verb +prep +det +noun +pron +pron +verb +conj +verb +adj +det +noun +verb +det +noun +pron +prep +pron +conj +prep +det +noun +pron +adv +verb +pron +det +noun +conj +det +noun +verb +verb +conj +verb +adv +det +noun +det +noun +verb +det +noun +prep +det +noun +verb +prep +pron +adj +det +noun +conj +verb +pron +noun +adj +verb +pron +conj +verb +noun +prep +noun +verb +prep +det +noun +pron +conj +noun +prep +det +adj +pron +conj +verb +prep +pron +verb +pron +verb +verb +noun +det +adj +conj +verb +prep +pron +verb +det +noun +conj +verb +prep +det +noun +pron +conj +conj +verb +pron +verb +pron +det +noun +conj +verb +pron +det +noun +pron +conj +verb +pron +prep +det +verb +conj +verb +verb +noun +noun +noun +noun +pron +verb +conj +verb +det +noun +pron +conj +verb +prep +noun +verb +noun +pron +verb +verb +noun +noun +verb +pron +verb +noun +prep +noun +verb +conj +verb +adv +verb +verb +conj +verb +pron +verb +det +noun +pron +verb +noun +conj +verb +verb +pron +adv +conj +verb +prep +det +noun +pron +det +noun +pron +verb +pron +verb +noun +det +noun +det +adj +adv +verb +prep +pron +num +noun +adj +prep +adj +conj +adj +prep +adj +conj +det +verb +verb +pron +verb +det +noun +pron +conj +verb +det +verb +det +noun +conj +prep +adj +noun +verb +verb +pron +conj +verb +noun +det +noun +conj +verb +prep +det +noun +adv +det +noun +verb +prep +det +noun +conj +adj +verb +adj +verb +pron +verb +adv +verb +noun +noun +verb +verb +adv +prep +det +noun +conj +verb +prep +pron +verb +prep +det +noun +verb +adv +conj +verb +pron +conj +verb +conj +noun +noun +verb +conj +det +pron +adv +det +noun +det +verb +prep +pron +verb +pron +conj +prep +adj +noun +noun +verb +prep +adj +det +noun +prep +noun +adj +conj +prep +det +adj +noun +verb +det +noun +noun +adj +verb +noun +noun +adv +verb +pron +verb +noun +pron +noun +pron +conj +pron +pron +verb +conj +pron +det +adv +verb +verb +verb +conj +noun +verb +pron +conj +adv +adj +prep +pron +verb +conj +verb +noun +conj +verb +noun +conj +verb +noun +verb +pron +conj +det +adj +verb +verb +verb +ptcl +verb +noun +verb +pron +conj +det +noun +adv +verb +noun +adj +verb +det +noun +conj +verb +det +noun +det +noun +verb +prep +adv +prep +adv +prep +num +conj +det +noun +verb +conj +det +noun +verb +conj +det +noun +verb +conj +adj +noun +det +verb +adj +verb +conj +verb +prep +det +noun +prep +det +noun +pron +verb +prep +det +adj +noun +conj +verb +adj +conj +det +noun +conj +det +prep +pron +verb +det +noun +verb +det +noun +conj +det +verb +verb +adv +verb +adv +noun +noun +verb +pron +conj +verb +adv +noun +adj +prep +adv +verb +pron +verb +det +noun +prep +det +noun +verb +pron +prep +pron +verb +noun +det +noun +conj +noun +det +det +noun +conj +noun +noun +conj +det +noun +det +noun +noun +conj +adj +verb +verb +noun +adj +prep +noun +det +noun +pron +adv +pron +verb +det +noun +pron +verb +det +noun +verb +det +noun +det +noun +adv +det +noun +verb +verb +conj +verb +det +noun +det +noun +verb +pron +prep +noun +adj +conj +verb +pron +prep +det +adj +pron +noun +pron +verb +prep +det +noun +conj +verb +noun +adj +det +noun +det +noun +verb +conj +adv +noun +det +noun +conj +det +adj +noun +verb +verb +prep +det +noun +conj +det +adv +pron +verb +prep +det +noun +verb +det +noun +conj +det +noun +prep +noun +verb +noun +verb +conj +pron +det +adj +verb +adv +verb +prep +adj +noun +verb +conj +verb +verb +det +noun +prep +det +adj +noun +ptcl +adv +verb +det +noun +verb +pron +conj +verb +det +noun +verb +prep +det +adj +conj +verb +det +adj +noun +adj +det +adj +verb +pron +det +noun +verb +noun +verb +verb +conj +verb +conj +det +verb +verb +det +noun +verb +det +noun +prep +det +noun +conj +prep +noun +det +verb +prep +adj +noun +verb +noun +det +noun +conj +det +adj +noun +verb +det +noun +conj +verb +noun +adj +verb +conj +noun +noun +verb +prep +noun +conj +verb +verb +det +noun +conj +verb +prep +pron +conj +verb +det +noun +pron +conj +noun +conj +det +noun +pron +adj +conj +noun +conj +prep +det +noun +pron +verb +det +verb +conj +verb +conj +adj +conj +verb +det +noun +verb +det +noun +adv +verb +pron +conj +verb +conj +noun +det +verb +verb +adv +verb +adv +conj +verb +conj +verb +verb +verb +det +noun +adv +verb +conj +adj +verb +verb +det +noun +pron +conj +verb +prep +det +adj +conj +verb +verb +pron +prep +det +noun +adv +pron +verb +verb +verb +pron +conj +verb +adj +prep +det +noun +prep +noun +conj +noun +adj +verb +verb +det +noun +pron +conj +verb +noun +verb +pron +verb +verb +conj +det +verb +verb +pron +det +noun +conj +verb +pron +adv +verb +pron +det +noun +adv +verb +verb +verb +det +noun +pron +conj +verb +prep +det +noun +conj +pron +verb +conj +verb +pron +verb +pron +det +noun +verb +prep +det +noun +verb +det +noun +adj +det +verb +conj +verb +prep +det +adj +conj +noun +verb +noun +adj +verb +det +noun +verb +verb +conj +det +noun +pron +noun +verb +verb +pron +pron +verb +conj +conj +verb +pron +prep +det +noun +pron +verb +conj +pron +adj +verb +conj +det +verb +noun +verb +conj +verb +conj +verb +det +noun +pron +prep +adj +prep +det +adv +noun +conj +det +num +noun +verb +prep +det +noun +prep +det +noun +adv +verb +pron +det +noun +conj +verb +pron +verb +conj +det +verb +conj +verb +det +noun +verb +pron +verb +verb +pron +adj +noun +prep +noun +conj +prep +det +noun +conj +verb +verb +adj +det +noun +verb +pron +prep +det +noun +det +noun +conj +det +noun +conj +det +adj +noun +verb +pron +verb +adj +pron +verb +pron +conj +verb +pron +prep +pron +verb +adj +det +noun +prep +det +noun +det +noun +noun +det +noun +noun +noun +noun +noun +conj +verb +prep +det +noun +det +noun +verb +verb +det +noun +pron +prep +noun +pron +pron +verb +det +noun +pron +noun +verb +prep +det +adj +verb +det +noun +noun +adj +verb +det +noun +pron +verb +noun +det +verb +prep +det +adj +verb +noun +noun +prep +noun +noun +conj +verb +prep +pron +adj +det +adj +noun +conj +det +noun +adj +conj +verb +prep +pron +prep +det +noun +noun +verb +det +noun +pron +conj +verb +det +noun +verb +noun +noun +conj +noun +adj +prep +det +noun +pron +conj +verb +noun +conj +noun +adj +conj +verb +verb +verb +det +adj +pron +prep +pron +pron +adv +verb +adj +verb +verb +det +noun +det +noun +pron +pron +verb +pron +noun +conj +pron +verb +pron +noun +adj +conj +verb +prep +pron +det +noun +verb +noun +prep +noun +det +noun +conj +verb +prep +det +noun +prep +noun +conj +adj +verb +prep +det +noun +verb +verb +det +noun +conj +det +noun +conj +noun +verb +prep +pron +conj +noun +verb +prep +det +noun +pron +verb +det +noun +pron +det +adj +prep +pron +verb +conj +adj +det +noun +pron +verb +prep +det +adj +conj +verb +prep +det +adj +num +noun +verb +prep +det +noun +conj +verb +prep +det +noun +conj +det +noun +verb +pron +conj +prep +det +verb +det +noun +verb +det +noun +prep +det +noun +verb +det +noun +det +noun +conj +verb +conj +verb +det +noun +conj +verb +det +noun +det +noun +verb +conj +verb +prep +det +noun +conj +verb +prep +det +noun +det +noun +verb +noun +conj +noun +det +noun +noun +verb +prep +det +noun +conj +verb +noun +conj +verb +pron +det +noun +verb +prep +pron +conj +verb +pron +verb +noun +noun +conj +adj +verb +det +noun +verb +pron +conj +verb +adj +verb +noun +det +det +noun +conj +noun +det +noun +pron +adv +pron +prep +det +noun +verb +det +noun +conj +adj +verb +pron +conj +verb +det +noun +pron +noun +prep +det +noun +prep +det +noun +verb +prep +pron +conj +verb +prep +noun +conj +adj +det +noun +verb +prep +det +noun +verb +conj +verb +prep +det +noun +pron +conj +verb +verb +pron +conj +noun +verb +conj +adv +conj +det +noun +conj +adj +verb +prep +det +noun +pron +noun +prep +noun +adj +conj +verb +verb +pron +pron +conj +pron +noun +adj +verb +verb +pron +verb +pron +pron +verb +det +adj +det +noun +conj +verb +pron +det +noun +verb +conj +verb +prep +pron +conj +det +noun +det +adj +verb +pron +conj +verb +noun +adj +verb +prep +pron +conj +verb +adj +conj +verb +pron +verb +pron +verb +pron +noun +adj +prep +noun +adv +det +noun +det +adj +verb +conj +verb +pron +conj +verb +det +noun +pron +adj +adv +prep +adj +det +adj +det +noun +conj +adj +prep +det +noun +verb +verb +prep +det +noun +noun +conj +noun +prep +noun +conj +noun +conj +det +noun +noun +verb +verb +conj +adj +verb +pron +prep +pron +conj +verb +verb +pron +verb +det +noun +conj +verb +pron +det +noun +conj +verb +pron +conj +adj +verb +adv +verb +det +noun +verb +prep +pron +adj +det +adv +verb +conj +det +verb +conj +verb +verb +adj +det +noun +prep +det +noun +conj +verb +adj +adv +verb +adj +noun +conj +noun +adj +verb +conj +adv +verb +verb +det +noun +conj +verb +pron +conj +adv +adj +adv +verb +verb +conj +verb +prep +adj +noun +conj +verb +conj +verb +pron +noun +conj +det +prep +pron +conj +verb +pron +conj +verb +pron +conj +adj +verb +pron +conj +verb +pron +verb +adv +prep +det +verb +noun +conj +adv +adv +verb +conj +prep +pron +verb +conj +verb +verb +prep +det +noun +pron +prep +adj +det +noun +conj +det +noun +verb +conj +verb +prep +pron +adj +verb +pron +conj +verb +verb +pron +conj +conj +verb +verb +pron +verb +conj +verb +verb +det +noun +pron +verb +conj +verb +pron +verb +verb +conj +adj +verb +prep +pron +det +noun +conj +verb +conj +verb +pron +adj +verb +pron +conj +verb +pron +verb +adj +adj +verb +conj +verb +pron +verb +det +noun +conj +verb +prep +det +noun +pron +pron +verb +noun +prep +noun +pron +conj +det +verb +verb +verb +adj +conj +verb +det +noun +conj +adv +pron +verb +adv +prep +noun +verb +conj +adv +prep +adj +noun +verb +conj +verb +prep +pron +adv +conj +verb +adv +prep +noun +prep +noun +verb +conj +prep +noun +verb +conj +verb +adj +conj +adv +verb +adv +det +prep +det +noun +conj +verb +pron +det +noun +conj +verb +verb +prep +pron +adj +verb +prep +adj +conj +adv +verb +verb +pron +prep +det +noun +verb +det +noun +adv +verb +conj +verb +verb +det +noun +adv +det +adj +verb +conj +det +noun +verb +det +noun +pron +verb +det +adj +noun +verb +pron +det +noun +conj +verb +pron +det +noun +adv +verb +conj +verb +prep +det +noun +pron +pron +pron +adv +verb +verb +pron +verb +verb +noun +conj +adv +adj +det +noun +conj +adj +det +noun +verb +det +noun +pron +conj +adv +verb +prep +pron +verb +pron +pron +pron +verb +prep +det +noun +pron +pron +verb +adj +verb +det +adj +verb +pron +det +noun +conj +verb +verb +conj +verb +det +noun +pron +conj +verb +conj +conj +verb +conj +noun +verb +det +noun +det +noun +verb +noun +prep +det +noun +verb +det +adj +pron +verb +verb +verb +det +noun +pron +conj +verb +prep +det +noun +pron +conj +verb +conj +adj +verb +det +noun +verb +prep +adj +conj +verb +adj +conj +verb +det +noun +verb +conj +adv +adv +verb +conj +verb +adv +prep +det +noun +conj +adj +det +noun +verb +prep +pron +conj +verb +pron +conj +verb +verb +noun +det +det +noun +verb +prep +det +noun +conj +verb +pron +verb +pron +conj +verb +verb +pron +conj +verb +verb +pron +prep +det +noun +pron +conj +adj +noun +conj +adj +verb +det +noun +conj +det +noun +pron +conj +verb +adj +conj +verb +pron +conj +det +noun +det +noun +verb +conj +verb +prep +det +adj +conj +noun +verb +det +noun +pron +adv +prep +det +noun +conj +adj +verb +conj +verb +det +noun +verb +pron +adv +noun +noun +verb +det +verb +conj +det +adv +verb +adv +verb +verb +adj +conj +adj +conj +verb +verb +det +noun +noun +conj +det +noun +conj +verb +conj +verb +pron +prep +pron +det +noun +noun +conj +det +noun +det +noun +verb +conj +det +adj +noun +adv +verb +conj +verb +pron +det +noun +ptcl +verb +det +noun +det +noun +prep +pron +det +noun +prep +pron +verb +verb +pron +noun +verb +det +noun +prep +pron +adv +verb +verb +conj +verb +noun +adv +verb +prep +pron +det +noun +conj +adv +verb +prep +pron +det +noun +adj +noun +noun +adj +verb +prep +noun +adj +conj +conj +adv +verb +det +noun +det +adj +prep +pron +det +adj +conj +adj +noun +verb +conj +adj +verb +noun +adj +prep +noun +adj +conj +conj +adv +verb +det +noun +det +noun +conj +det +noun +verb +conj +det +noun +conj +noun +adj +prep +noun +adj +conj +verb +pron +prep +det +noun +verb +prep +det +adj +conj +det +noun +pron +verb +noun +verb +verb +det +noun +conj +det +noun +verb +pron +verb +pron +verb +det +noun +pron +adv +verb +conj +verb +pron +adv +verb +pron +verb +noun +conj +noun +verb +conj +verb +pron +conj +det +prep +pron +conj +verb +prep +det +noun +det +noun +prep +noun +noun +conj +det +noun +det +noun +verb +pron +verb +adv +verb +conj +adv +det +noun +conj +verb +adv +det +prep +pron +verb +conj +verb +pron +det +noun +prep +det +noun +verb +conj +adv +det +noun +prep +det +noun +conj +verb +det +noun +det +noun +noun +adv +det +noun +conj +verb +adv +prep +noun +conj +verb +adv +noun +verb +verb +det +noun +conj +verb +pron +ptcl +det +noun +verb +pron +conj +verb +pron +conj +verb +det +noun +det +det +adj +noun +verb +verb +prep +det +adj +conj +verb +pron +verb +det +noun +adj +verb +conj +verb +noun +verb +conj +verb +conj +det +verb +conj +verb +pron +prep +noun +verb +prep +det +noun +det +noun +pron +verb +det +noun +verb +det +noun +conj +verb +conj +verb +det +noun +pron +conj +verb +det +noun +adj +prep +det +noun +noun +verb +prep +pron +conj +pron +verb +conj +det +noun +prep +det +noun +pron +verb +prep +det +noun +conj +adj +noun +prep +det +noun +verb +conj +prep +det +noun +conj +prep +noun +conj +prep +det +noun +conj +prep +det +noun +conj +prep +noun +conj +noun +noun +adj +verb +pron +verb +verb +prep +pron +conj +verb +det +noun +pron +conj +noun +verb +pron +prep +det +noun +conj +adv +verb +pron +conj +adj +verb +conj +verb +pron +conj +pron +verb +pron +verb +noun +conj +det +noun +det +adj +conj +pron +verb +verb +pron +conj +verb +verb +conj +pron +verb +det +noun +det +noun +conj +adj +verb +pron +conj +adv +pron +adj +verb +conj +verb +prep +det +noun +conj +verb +pron +verb +pron +conj +verb +prep +pron +conj +verb +num +conj +verb +prep +pron +conj +conj +verb +pron +verb +conj +verb +noun +verb +det +noun +conj +verb +det +num +conj +verb +noun +det +noun +noun +conj +noun +det +det +noun +conj +noun +det +noun +det +noun +conj +verb +pron +noun +noun +pron +verb +noun +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +det +det +noun +conj +noun +conj +noun +det +noun +conj +noun +noun +pron +adv +verb +pron +conj +verb +prep +noun +conj +verb +adv +det +noun +conj +adv +verb +pron +adv +noun +verb +conj +verb +det +prep +pron +verb +verb +pron +conj +verb +conj +verb +conj +det +noun +det +prep +noun +verb +verb +conj +noun +verb +conj +conj +prep +det +noun +det +noun +verb +det +noun +conj +verb +pron +prep +noun +verb +pron +adv +verb +noun +noun +verb +conj +conj +noun +prep +pron +verb +adv +verb +verb +det +noun +pron +conj +conj +noun +prep +pron +verb +adv +verb +det +noun +pron +verb +conj +conj +det +noun +verb +prep +pron +conj +verb +adv +verb +verb +conj +noun +verb +conj +adv +verb +adj +prep +det +noun +det +adj +verb +det +noun +pron +verb +conj +adv +adj +det +adj +verb +conj +adv +det +noun +pron +verb +ptcl +verb +pron +conj +verb +det +noun +det +noun +adj +det +noun +conj +det +noun +ptcl +pron +verb +conj +ptcl +pron +verb +prep +det +noun +det +adj +adv +verb +noun +prep +det +noun +conj +adj +verb +adj +noun +conj +verb +noun +adj +verb +conj +verb +det +noun +pron +conj +det +noun +pron +conj +adv +verb +verb +prep +pron +verb +pron +conj +verb +prep +pron +noun +conj +verb +pron +verb +det +noun +pron +conj +det +noun +pron +conj +det +noun +pron +adv +verb +pron +conj +verb +pron +verb +pron +verb +det +noun +pron +conj +det +noun +conj +verb +det +prep +pron +noun +verb +verb +verb +det +noun +pron +conj +det +noun +pron +ptcl +pron +verb +det +noun +det +noun +pron +noun +pron +conj +noun +conj +noun +verb +conj +adv +verb +verb +prep +det +noun +conj +verb +prep +pron +noun +adj +conj +pron +prep +noun +verb +verb +prep +det +noun +conj +adj +det +noun +prep +det +noun +prep +det +noun +verb +conj +verb +pron +prep +noun +adj +conj +verb +pron +prep +det +noun +pron +verb +verb +verb +det +verb +verb +conj +verb +prep +det +verb +conj +pron +verb +prep +det +noun +conj +verb +det +noun +conj +verb +pron +conj +adj +verb +prep +det +adj +adv +adv +verb +noun +adj +conj +adj +verb +prep +det +adv +verb +noun +noun +conj +conj +verb +det +noun +verb +conj +prep +det +adv +verb +noun +verb +conj +adj +verb +prep +det +noun +conj +verb +det +noun +conj +verb +pron +conj +noun +adv +verb +conj +adj +verb +prep +det +noun +det +adj +conj +verb +noun +verb +conj +verb +conj +verb +prep +num +conj +prep +num +conj +prep +num +conj +verb +pron +verb +noun +verb +verb +conj +conj +verb +prep +adj +verb +pron +det +prep +pron +prep +det +num +det +noun +conj +verb +pron +pron +verb +det +noun +det +noun +det +noun +conj +pron +det +adv +prep +noun +det +adj +verb +conj +verb +verb +conj +adv +verb +conj +verb +verb +conj +adv +verb +ptcl +adv +verb +conj +verb +pron +conj +verb +pron +adv +verb +det +noun +pron +conj +adv +adj +det +noun +verb +det +verb +det +noun +verb +conj +pron +verb +det +prep +det +noun +adv +verb +det +noun +conj +conj +verb +adj +verb +det +noun +conj +verb +det +noun +det +verb +prep +pron +conj +verb +adv +det +prep +det +adj +verb +pron +pron +conj +verb +det +noun +adj +prep +noun +verb +pron +conj +adv +verb +noun +prep +pron +conj +adj +verb +adv +verb +noun +conj +noun +prep +det +noun +adj +verb +conj +adj +verb +det +prep +det +noun +verb +pron +verb +det +det +noun +verb +conj +det +noun +det +noun +conj +det +noun +det +noun +conj +det +prep +det +adj +noun +verb +verb +det +noun +conj +adj +verb +conj +verb +det +prep +det +noun +det +adj +verb +pron +pron +verb +det +noun +conj +verb +conj +verb +prep +num +conj +prep +num +conj +prep +num +conj +verb +pron +conj +ptcl +verb +det +noun +conj +prep +det +noun +verb +conj +prep +det +noun +ptcl +conj +prep +det +noun +verb +conj +adv +verb +pron +adj +conj +adv +conj +verb +conj +verb +adj +conj +conj +verb +prep +adj +conj +pron +verb +noun +verb +verb +conj +verb +pron +verb +pron +verb +prep +pron +noun +verb +verb +pron +conj +verb +pron +conj +pron +verb +verb +pron +conj +pron +adv +verb +adv +pron +verb +verb +prep +pron +conj +verb +adv +verb +det +noun +det +noun +conj +noun +verb +det +noun +prep +det +noun +conj +verb +conj +verb +noun +conj +noun +conj +det +noun +verb +conj +verb +conj +adv +verb +pron +adj +det +noun +verb +adj +noun +adv +noun +adv +adj +noun +prep +det +noun +conj +conj +verb +det +noun +adj +verb +det +noun +conj +verb +det +noun +conj +verb +adv +verb +det +noun +det +noun +conj +prep +pron +noun +pron +verb +conj +noun +noun +pron +conj +verb +prep +det +noun +adj +verb +adj +det +noun +det +prep +det +noun +conj +conj +verb +verb +conj +verb +adj +adj +det +noun +conj +verb +noun +adj +conj +verb +prep +det +noun +pron +verb +det +noun +det +noun +conj +pron +noun +adj +verb +pron +det +noun +conj +verb +verb +conj +prep +noun +adv +verb +pron +conj +prep +adj +det +adj +noun +verb +adj +conj +verb +pron +prep +pron +det +noun +adj +verb +verb +prep +det +adv +conj +verb +det +noun +verb +pron +conj +verb +prep +det +noun +conj +adj +noun +verb +prep +pron +conj +verb +noun +adj +noun +conj +det +noun +verb +prep +det +noun +conj +adv +verb +det +noun +conj +pron +verb +prep +det +noun +prep +det +noun +verb +conj +verb +pron +conj +verb +pron +noun +ptcl +verb +pron +conj +verb +conj +verb +verb +det +noun +conj +verb +det +noun +verb +verb +conj +verb +det +noun +conj +verb +noun +adj +conj +verb +pron +pron +adj +verb +adv +adv +ptcl +verb +noun +conj +verb +noun +adj +conj +verb +prep +pron +conj +pron +pron +verb +conj +adv +det +noun +conj +det +noun +verb +pron +conj +verb +prep +det +adv +det +noun +prep +det +noun +det +noun +conj +verb +pron +prep +det +noun +adj +verb +pron +prep +det +noun +noun +prep +noun +adj +pron +det +noun +verb +prep +det +noun +conj +adv +noun +adv +adj +verb +pron +verb +prep +det +pron +adv +noun +conj +noun +verb +conj +verb +prep +pron +det +noun +conj +det +noun +verb +conj +adj +verb +pron +verb +conj +prep +adj +noun +conj +noun +prep +det +noun +conj +prep +det +noun +verb +verb +conj +verb +pron +noun +conj +verb +det +noun +prep +adv +verb +conj +verb +pron +conj +verb +noun +adj +verb +pron +pron +conj +pron +noun +noun +det +noun +det +adj +verb +pron +det +noun +adv +pron +verb +conj +verb +pron +det +noun +det +adj +verb +prep +det +noun +conj +verb +pron +pron +noun +pron +conj +verb +pron +noun +noun +pron +conj +adj +verb +conj +verb +pron +adj +conj +adv +pron +verb +prep +det +noun +conj +verb +adv +prep +det +noun +noun +noun +adj +verb +conj +verb +pron +verb +verb +pron +prep +det +noun +conj +prep +pron +verb +conj +verb +pron +conj +verb +det +noun +det +adj +verb +prep +det +noun +conj +verb +det +noun +prep +det +noun +prep +det +noun +adv +adj +conj +verb +prep +det +noun +conj +det +verb +pron +verb +conj +verb +prep +det +noun +conj +prep +det +noun +conj +verb +verb +pron +verb +det +verb +conj +verb +prep +det +noun +conj +verb +det +verb +det +verb +det +noun +verb +verb +conj +verb +conj +verb +conj +verb +pron +det +verb +adv +verb +det +verb +conj +prep +det +noun +conj +verb +verb +pron +verb +prep +det +noun +pron +conj +verb +pron +prep +det +noun +verb +pron +det +verb +conj +prep +pron +verb +conj +adv +verb +pron +conj +verb +pron +verb +prep +det +noun +pron +prep +det +adj +conj +verb +pron +pron +det +noun +pron +verb +conj +verb +pron +conj +verb +conj +verb +verb +prep +det +noun +pron +verb +pron +det +noun +conj +adj +verb +conj +verb +det +noun +prep +det +noun +adv +prep +det +adv +verb +noun +adj +prep +pron +conj +verb +prep +det +noun +conj +verb +adj +det +noun +noun +noun +conj +verb +pron +verb +prep +det +noun +pron +conj +verb +pron +adj +verb +conj +det +noun +pron +adv +verb +conj +verb +verb +det +noun +pron +conj +verb +conj +verb +conj +verb +prep +pron +conj +verb +pron +noun +adj +conj +verb +pron +conj +noun +verb +prep +noun +noun +num +noun +conj +adj +verb +prep +adj +noun +conj +verb +det +prep +pron +adj +conj +adj +verb +conj +adv +prep +det +adj +verb +verb +det +prep +det +noun +verb +prep +det +noun +adv +verb +det +noun +pron +conj +verb +conj +conj +verb +adv +det +noun +pron +verb +conj +adj +verb +det +noun +det +noun +pron +conj +verb +det +noun +conj +verb +prep +det +noun +conj +adj +det +noun +verb +prep +pron +det +prep +pron +noun +verb +verb +prep +det +noun +verb +pron +verb +pron +det +noun +conj +verb +pron +det +noun +pron +verb +det +noun +verb +pron +conj +verb +pron +pron +verb +conj +verb +verb +det +pron +verb +conj +det +noun +verb +conj +verb +verb +pron +verb +pron +verb +conj +verb +pron +conj +verb +pron +adj +det +noun +conj +det +verb +pron +noun +det +noun +pron +verb +pron +verb +prep +noun +conj +verb +adj +prep +det +noun +pron +adv +pron +verb +verb +prep +det +noun +verb +conj +det +noun +pron +verb +pron +adv +verb +det +noun +conj +det +noun +verb +det +noun +verb +verb +det +noun +adv +verb +adj +verb +conj +adv +verb +adj +prep +pron +verb +conj +adv +det +noun +conj +noun +conj +noun +det +noun +noun +conj +verb +prep +det +noun +det +noun +conj +verb +noun +conj +verb +conj +verb +adj +conj +verb +verb +pron +pron +verb +conj +verb +det +noun +adv +verb +conj +verb +conj +verb +pron +conj +pron +verb +adj +verb +det +noun +det +noun +conj +det +noun +conj +det +prep +pron +conj +verb +conj +verb +det +noun +conj +verb +det +noun +det +noun +verb +pron +noun +verb +pron +verb +verb +det +noun +pron +verb +verb +conj +adj +verb +det +noun +conj +verb +conj +verb +noun +num +conj +verb +adj +noun +adj +conj +verb +pron +adj +conj +adj +verb +pron +conj +verb +verb +pron +verb +conj +verb +adv +conj +verb +prep +det +noun +pron +conj +verb +pron +det +noun +pron +conj +verb +noun +verb +verb +prep +det +noun +conj +det +adj +verb +verb +verb +adv +pron +pron +conj +pron +det +noun +det +verb +pron +conj +det +noun +pron +prep +det +noun +pron +verb +ptcl +pron +verb +det +noun +det +noun +det +noun +conj +noun +noun +conj +noun +conj +noun +conj +noun +conj +ptcl +verb +det +noun +pron +adv +prep +pron +conj +verb +prep +pron +conj +verb +pron +det +noun +conj +adv +verb +noun +adj +conj +adv +prep +det +noun +pron +conj +prep +det +adj +pron +conj +prep +det +noun +pron +conj +adv +verb +adv +verb +adj +noun +conj +adv +adj +adj +verb +det +noun +verb +conj +verb +prep +det +noun +pron +conj +verb +det +noun +noun +verb +conj +verb +det +num +conj +verb +pron +verb +num +num +conj +verb +pron +noun +det +noun +det +adj +conj +verb +pron +conj +adj +verb +prep +noun +conj +adv +noun +adj +adv +noun +adv +noun +adv +prep +det +noun +noun +conj +verb +noun +conj +adv +verb +num +noun +conj +verb +pron +ptcl +conj +verb +prep +noun +adv +verb +conj +ptcl +verb +adv +conj +ptcl +pron +noun +adv +verb +pron +conj +verb +pron +verb +adv +verb +det +noun +det +prep +det +noun +pron +prep +noun +pron +conj +verb +verb +conj +verb +conj +noun +adj +verb +conj +verb +noun +adj +adj +conj +verb +conj +verb +det +noun +noun +conj +adj +verb +det +noun +pron +conj +verb +conj +noun +det +verb +verb +prep +adj +conj +prep +pron +verb +det +noun +prep +pron +conj +adj +verb +conj +noun +verb +conj +adj +verb +conj +noun +conj +adj +det +noun +conj +verb +det +noun +verb +pron +pron +verb +noun +pron +verb +conj +pron +det +noun +verb +verb +det +noun +conj +verb +pron +prep +noun +prep +noun +det +noun +noun +det +noun +pron +conj +pron +verb +conj +verb +det +noun +det +noun +conj +adv +verb +pron +verb +det +noun +det +noun +pron +conj +det +noun +verb +pron +conj +verb +pron +verb +conj +adv +verb +conj +det +noun +verb +det +noun +verb +pron +noun +adj +conj +adj +conj +verb +pron +conj +verb +pron +adj +verb +conj +adv +pron +verb +conj +verb +noun +adj +adv +noun +det +noun +pron +noun +verb +det +noun +pron +conj +det +noun +conj +det +adj +det +noun +conj +verb +det +noun +pron +det +noun +conj +verb +verb +det +noun +conj +det +verb +conj +det +noun +verb +det +noun +verb +pron +ptcl +pron +verb +conj +verb +pron +conj +verb +pron +conj +conj +pron +verb +verb +pron +prep +adj +det +noun +pron +conj +verb +verb +det +noun +pron +pron +verb +conj +det +verb +det +noun +noun +det +verb +conj +verb +adj +prep +noun +prep +det +noun +verb +verb +verb +conj +adv +verb +pron +prep +noun +det +noun +noun +det +noun +conj +adj +verb +det +noun +prep +det +noun +conj +det +verb +adv +verb +verb +pron +conj +adj +verb +noun +det +noun +verb +verb +det +noun +pron +conj +verb +verb +pron +prep +det +noun +conj +verb +det +noun +pron +prep +noun +conj +verb +pron +det +noun +conj +det +noun +verb +pron +det +noun +pron +conj +verb +det +noun +pron +verb +conj +verb +det +noun +pron +conj +verb +pron +prep +noun +conj +verb +det +noun +prep +det +noun +conj +verb +pron +adj +pron +verb +conj +pron +verb +conj +verb +pron +verb +pron +pron +prep +adj +prep +adj +noun +conj +verb +adj +conj +verb +det +verb +conj +det +verb +adj +conj +adv +verb +verb +conj +verb +prep +det +noun +prep +adj +noun +prep +adj +conj +verb +pron +verb +conj +verb +adj +conj +adv +prep +adj +det +noun +verb +adv +conj +verb +pron +conj +verb +verb +adj +noun +conj +verb +prep +pron +conj +verb +conj +noun +adv +verb +noun +conj +verb +verb +pron +adj +conj +adv +noun +adj +verb +verb +pron +det +noun +pron +verb +conj +adj +verb +det +noun +conj +adv +noun +adj +verb +pron +conj +verb +prep +det +noun +noun +conj +noun +verb +pron +pron +verb +conj +det +verb +verb +pron +verb +pron +pron +verb +conj +verb +pron +verb +verb +noun +adj +noun +conj +verb +pron +verb +conj +det +verb +pron +pron +noun +verb +verb +verb +conj +verb +verb +num +conj +num +noun +conj +verb +pron +verb +adj +noun +noun +prep +det +adj +noun +conj +verb +noun +noun +prep +num +conj +prep +num +conj +verb +det +num +noun +conj +det +num +noun +verb +prep +det +noun +verb +conj +verb +det +noun +conj +verb +det +noun +conj +verb +pron +conj +det +num +noun +verb +adj +conj +verb +adj +conj +verb +conj +verb +noun +num +noun +noun +conj +prep +det +noun +conj +verb +det +verb +det +noun +adj +noun +conj +adj +verb +det +noun +pron +verb +prep +det +noun +conj +verb +prep +det +adv +prep +noun +conj +pron +verb +det +noun +conj +verb +pron +verb +prep +det +noun +verb +conj +adj +verb +verb +det +noun +prep +adj +det +noun +conj +pron +adj +prep +det +noun +conj +verb +pron +verb +prep +det +verb +conj +verb +det +noun +adj +pron +prep +adj +noun +det +noun +verb +prep +pron +verb +prep +det +noun +conj +verb +verb +pron +conj +det +verb +pron +prep +det +noun +verb +verb +conj +noun +verb +conj +verb +conj +adj +pron +verb +conj +verb +conj +det +adj +verb +prep +pron +conj +verb +pron +verb +pron +verb +adv +verb +conj +verb +prep +pron +prep +det +noun +conj +verb +det +noun +conj +adv +prep +adj +prep +pron +verb +conj +adv +verb +prep +det +noun +conj +verb +verb +pron +det +noun +conj +verb +prep +det +noun +verb +prep +noun +conj +verb +conj +verb +pron +prep +det +noun +adj +verb +pron +verb +adj +det +noun +pron +conj +verb +prep +det +noun +det +adv +verb +verb +conj +verb +conj +verb +conj +ptcl +conj +verb +prep +noun +conj +prep +noun +conj +prep +noun +prep +det +noun +verb +det +verb +conj +verb +pron +conj +adv +det +noun +det +noun +pron +verb +conj +ptcl +pron +verb +pron +verb +conj +verb +prep +pron +det +noun +conj +pron +det +noun +verb +prep +noun +conj +verb +pron +det +noun +pron +conj +adj +noun +pron +verb +adj +verb +det +noun +conj +det +noun +conj +adj +det +adj +conj +adv +noun +verb +det +noun +adv +verb +verb +det +noun +det +adj +conj +prep +noun +conj +adv +verb +adv +verb +conj +adj +adj +verb +pron +verb +verb +noun +noun +conj +noun +conj +noun +conj +verb +pron +det +noun +conj +det +noun +prep +pron +adv +verb +det +noun +pron +prep +det +noun +det +adj +conj +adj +noun +verb +det +noun +conj +det +verb +pron +adv +verb +noun +prep +pron +det +noun +conj +verb +conj +pron +det +noun +det +noun +pron +verb +conj +det +noun +pron +adv +verb +prep +pron +conj +adv +verb +pron +verb +noun +noun +noun +verb +det +noun +det +noun +verb +det +noun +det +noun +conj +verb +pron +adv +verb +det +noun +det +noun +conj +det +noun +pron +verb +conj +noun +verb +verb +det +noun +pron +conj +det +noun +pron +conj +det +verb +noun +conj +noun +noun +verb +conj +pron +verb +conj +verb +noun +det +noun +conj +det +noun +noun +pron +verb +noun +ptcl +pron +prep +pron +verb +adv +verb +pron +adj +verb +det +noun +conj +det +noun +verb +det +noun +det +noun +det +noun +pron +pron +verb +conj +adj +pron +adj +verb +conj +verb +adv +det +noun +verb +pron +verb +pron +adj +conj +verb +adj +verb +prep +det +noun +verb +prep +pron +pron +verb +verb +pron +conj +det +prep +det +noun +verb +verb +det +verb +det +noun +conj +conj +verb +prep +noun +prep +det +noun +verb +pron +det +noun +pron +det +noun +conj +verb +pron +adv +adv +pron +adj +verb +adv +verb +conj +adj +det +adv +verb +prep +det +noun +adv +verb +pron +verb +conj +adv +verb +prep +pron +det +noun +conj +prep +det +noun +conj +prep +det +noun +verb +verb +adj +det +noun +conj +verb +conj +det +prep +det +noun +verb +pron +verb +det +noun +conj +adv +prep +det +noun +det +noun +det +noun +det +adj +verb +noun +noun +noun +noun +noun +noun +noun +noun +noun +adj +noun +noun +noun +adj +pron +det +adj +adv +verb +conj +verb +det +noun +conj +adv +verb +verb +prep +det +noun +noun +conj +verb +prep +noun +adj +verb +verb +conj +adv +verb +verb +conj +adj +verb +prep +pron +noun +pron +det +noun +pron +verb +noun +adj +verb +verb +prep +det +noun +pron +conj +det +noun +verb +noun +noun +det +noun +conj +verb +pron +conj +det +noun +verb +prep +det +noun +pron +conj +verb +pron +verb +adj +verb +det +noun +conj +adv +verb +adj +verb +det +noun +det +noun +conj +det +noun +verb +conj +det +verb +conj +verb +pron +ptcl +noun +adv +det +noun +prep +det +noun +verb +prep +det +noun +det +noun +conj +verb +pron +prep +pron +det +noun +verb +verb +prep +det +noun +pron +det +noun +conj +verb +prep +det +noun +pron +verb +det +noun +verb +prep +det +noun +conj +det +noun +verb +conj +adv +verb +prep +det +noun +noun +verb +prep +noun +prep +det +noun +det +noun +prep +adj +det +noun +noun +conj +verb +pron +adj +conj +adj +conj +verb +pron +conj +verb +pron +det +noun +conj +verb +pron +prep +det +noun +prep +adj +verb +det +noun +pron +prep +det +noun +pron +conj +verb +verb +det +noun +pron +conj +verb +prep +det +noun +verb +conj +verb +pron +verb +pron +verb +verb +conj +verb +pron +det +noun +conj +adv +verb +det +noun +det +noun +pron +conj +verb +adv +conj +verb +pron +conj +adj +verb +conj +pron +pron +verb +pron +adv +adj +verb +conj +adv +verb +verb +adv +adj +verb +adv +verb +det +adj +verb +conj +adj +verb +prep +pron +det +noun +adv +adj +noun +verb +conj +adv +verb +pron +verb +verb +det +noun +verb +pron +verb +prep +det +noun +conj +adv +noun +adj +verb +pron +conj +adv +verb +pron +verb +conj +conj +verb +pron +adj +prep +noun +pron +verb +prep +det +noun +conj +pron +pron +prep +adv +verb +conj +verb +pron +det +noun +pron +conj +adv +verb +pron +pron +adv +verb +noun +prep +noun +conj +verb +pron +pron +noun +verb +conj +det +verb +num +conj +verb +det +noun +verb +prep +det +noun +conj +verb +det +num +noun +verb +verb +conj +verb +det +noun +pron +conj +verb +conj +verb +det +noun +conj +verb +noun +adj +conj +verb +pron +verb +adv +pron +verb +conj +verb +conj +verb +conj +verb +noun +noun +num +noun +conj +verb +adv +adj +conj +verb +pron +conj +adj +verb +prep +det +noun +prep +det +noun +pron +verb +prep +det +noun +noun +conj +verb +det +noun +conj +verb +verb +pron +verb +prep +pron +noun +prep +det +noun +verb +pron +conj +verb +det +noun +pron +verb +pron +det +noun +pron +verb +noun +ptcl +verb +pron +conj +verb +det +noun +pron +noun +conj +verb +pron +adv +verb +verb +prep +det +adv +conj +verb +verb +noun +conj +conj +adv +adj +noun +adv +verb +prep +pron +prep +det +noun +conj +verb +pron +verb +verb +verb +prep +det +noun +det +noun +conj +det +noun +noun +conj +verb +prep +pron +conj +noun +adv +verb +conj +verb +verb +pron +pron +verb +conj +noun +adv +verb +adv +verb +conj +verb +verb +verb +det +noun +pron +noun +verb +adv +verb +conj +noun +verb +adv +verb +conj +adv +verb +conj +det +num +noun +verb +prep +det +adj +pron +noun +noun +adj +verb +verb +pron +num +conj +det +num +prep +det +adj +pron +noun +noun +noun +verb +conj +verb +num +conj +verb +pron +adv +verb +conj +verb +prep +noun +conj +verb +pron +adj +conj +verb +pron +conj +pron +verb +conj +verb +det +noun +det +adj +verb +pron +prep +det +noun +conj +verb +prep +det +noun +pron +verb +det +noun +pron +verb +pron +ptcl +pron +verb +conj +verb +verb +verb +det +noun +conj +conj +noun +verb +verb +adv +adv +verb +det +noun +prep +det +noun +pron +conj +verb +conj +verb +conj +verb +adv +adj +conj +verb +pron +prep +noun +pron +verb +adv +prep +det +noun +verb +conj +verb +det +noun +conj +det +noun +pron +prep +det +noun +noun +det +noun +conj +prep +det +noun +verb +det +noun +pron +verb +pron +pron +pron +verb +verb +det +noun +conj +det +verb +pron +verb +conj +noun +det +noun +conj +adj +noun +conj +adj +conj +adj +det +noun +conj +pron +verb +pron +conj +pron +pron +pron +verb +verb +verb +det +noun +verb +pron +pron +verb +det +noun +conj +verb +pron +conj +adj +verb +prep +pron +conj +verb +verb +pron +conj +verb +det +noun +det +noun +adj +verb +conj +verb +prep +det +adj +conj +det +noun +conj +det +noun +conj +verb +conj +prep +adj +noun +verb +conj +noun +det +noun +verb +conj +det +noun +verb +pron +verb +verb +pron +conj +det +verb +conj +verb +det +noun +pron +verb +noun +conj +verb +verb +prep +pron +noun +conj +adv +verb +det +det +noun +conj +det +det +noun +conj +verb +det +noun +prep +det +noun +pron +verb +pron +conj +pron +verb +prep +pron +verb +verb +pron +conj +verb +det +noun +pron +conj +verb +pron +conj +ptcl +pron +verb +det +noun +pron +verb +verb +pron +conj +ptcl +pron +verb +det +noun +pron +prep +pron +conj +det +noun +verb +pron +conj +pron +verb +noun +verb +det +noun +adj +conj +verb +det +noun +pron +conj +pron +verb +noun +noun +det +noun +pron +conj +ptcl +pron +verb +pron +conj +det +adj +noun +prep +det +noun +pron +det +noun +conj +adj +adv +det +noun +det +noun +verb +pron +conj +verb +prep +det +noun +det +noun +pron +prep +det +noun +det +adj +conj +verb +pron +ptcl +verb +pron +conj +verb +pron +det +adv +verb +pron +adv +adv +verb +noun +conj +ptcl +verb +det +noun +det +noun +verb +prep +noun +conj +prep +noun +num +verb +det +noun +det +noun +conj +det +noun +conj +noun +conj +verb +pron +prep +noun +adj +prep +adj +adj +conj +verb +prep +pron +conj +det +noun +pron +verb +verb +adj +adv +pron +noun +prep +det +noun +adv +verb +adv +verb +conj +verb +pron +noun +prep +noun +conj +verb +verb +det +noun +conj +verb +det +noun +verb +det +noun +noun +adj +verb +pron +adv +verb +conj +verb +adj +noun +pron +adj +conj +noun +adj +conj +noun +adj +conj +adv +verb +pron +verb +conj +adj +verb +conj +verb +noun +verb +pron +conj +verb +noun +prep +det +noun +pron +verb +det +noun +pron +det +adj +verb +pron +conj +adv +verb +adv +adj +verb +conj +det +noun +adj +prep +pron +conj +verb +pron +prep +det +noun +verb +pron +conj +adj +pron +verb +verb +conj +adv +conj +det +noun +det +noun +prep +adj +verb +conj +det +noun +verb +prep +pron +verb +pron +verb +det +prep +adj +verb +conj +verb +pron +verb +adv +verb +det +noun +conj +verb +noun +verb +adj +conj +det +verb +pron +ptcl +noun +verb +adj +verb +adj +conj +adv +verb +prep +det +noun +det +noun +conj +adj +verb +conj +verb +conj +verb +pron +conj +adv +noun +verb +conj +verb +pron +pron +verb +conj +verb +prep +pron +conj +verb +prep +det +noun +verb +noun +adj +prep +pron +conj +noun +verb +prep +pron +conj +adj +adj +det +noun +verb +pron +verb +conj +verb +verb +pron +conj +verb +pron +pron +verb +prep +pron +conj +verb +pron +adj +prep +det +noun +noun +verb +det +noun +pron +prep +pron +verb +noun +adj +conj +ptcl +conj +pron +verb +verb +pron +conj +verb +conj +verb +det +noun +conj +verb +conj +verb +det +noun +pron +conj +pron +verb +conj +adv +verb +conj +det +verb +pron +verb +ptcl +noun +adj +prep +adv +prep +pron +verb +prep +adv +verb +pron +verb +pron +prep +pron +conj +verb +pron +prep +pron +conj +verb +pron +det +noun +adj +verb +pron +conj +verb +prep +det +noun +verb +verb +conj +verb +det +noun +pron +pron +noun +verb +adv +pron +verb +pron +conj +det +verb +prep +adv +conj +adv +adv +prep +noun +pron +verb +conj +prep +noun +conj +verb +pron +conj +conj +pron +verb +verb +pron +verb +prep +pron +conj +det +noun +verb +pron +det +conj +verb +adj +adj +det +verb +adj +verb +det +noun +det +noun +verb +verb +verb +pron +det +noun +conj +det +noun +verb +conj +verb +noun +verb +det +noun +det +adj +verb +pron +det +adj +conj +adj +noun +pron +verb +pron +verb +prep +pron +conj +adv +verb +prep +pron +conj +verb +conj +adj +verb +verb +conj +verb +conj +adj +conj +det +adj +verb +conj +verb +conj +det +noun +verb +det +noun +pron +verb +pron +conj +verb +conj +verb +pron +prep +noun +det +noun +pron +prep +adj +verb +pron +adv +pron +adv +verb +verb +pron +conj +verb +pron +pron +det +noun +prep +adj +verb +verb +conj +adv +prep +noun +conj +verb +verb +prep +det +noun +conj +adv +verb +conj +pron +verb +conj +verb +det +noun +pron +conj +verb +pron +conj +det +noun +det +noun +verb +prep +noun +noun +conj +verb +pron +conj +verb +prep +adj +noun +verb +conj +det +verb +det +noun +conj +verb +pron +verb +conj +verb +prep +noun +conj +prep +det +noun +verb +verb +pron +pron +prep +det +noun +verb +conj +det +verb +conj +prep +pron +verb +prep +det +noun +pron +adj +conj +verb +verb +det +num +conj +verb +pron +conj +pron +verb +adj +verb +verb +adj +adj +conj +adj +noun +conj +verb +noun +verb +pron +prep +adj +pron +conj +verb +pron +verb +pron +ptcl +pron +adj +det +pron +noun +verb +prep +det +noun +pron +pron +verb +conj +ptcl +pron +pron +verb +adv +pron +verb +conj +det +verb +pron +verb +pron +det +noun +noun +verb +pron +prep +det +noun +pron +verb +noun +pron +ptcl +verb +pron +conj +verb +pron +conj +adv +verb +pron +conj +det +noun +verb +adv +verb +pron +conj +adj +verb +pron +verb +noun +prep +det +noun +pron +conj +verb +adj +verb +pron +conj +pron +adv +verb +prep +pron +prep +pron +verb +conj +ptcl +pron +verb +pron +noun +noun +prep +noun +conj +noun +verb +ptcl +verb +pron +conj +adv +adv +verb +det +noun +pron +conj +ptcl +pron +verb +adj +det +adj +pron +det +verb +adj +verb +pron +adv +conj +verb +noun +adj +prep +det +noun +pron +conj +verb +prep +det +noun +conj +conj +verb +pron +det +noun +pron +verb +pron +adj +verb +pron +adj +verb +prep +det +noun +conj +det +num +noun +verb +verb +prep +det +noun +prep +det +noun +det +adj +conj +conj +det +noun +pron +verb +pron +verb +pron +adj +verb +pron +verb +prep +det +noun +adj +conj +det +num +noun +verb +verb +prep +det +noun +conj +conj +det +noun +pron +verb +pron +verb +pron +adj +verb +pron +adj +verb +prep +det +noun +det +noun +conj +num +noun +verb +verb +prep +det +noun +adv +det +noun +pron +adv +verb +conj +det +noun +adv +verb +conj +adj +noun +verb +adj +det +noun +conj +conj +det +noun +adj +verb +prep +pron +pron +verb +verb +prep +pron +noun +conj +verb +prep +pron +conj +adv +verb +verb +prep +det +noun +det +noun +conj +prep +det +noun +conj +verb +adv +noun +prep +pron +conj +conj +verb +adv +verb +pron +conj +verb +noun +verb +pron +ptcl +verb +noun +noun +verb +verb +pron +conj +det +verb +verb +pron +pron +pron +verb +noun +conj +det +verb +verb +noun +noun +noun +verb +conj +verb +conj +det +noun +verb +pron +prep +det +noun +pron +verb +pron +det +noun +pron +conj +prep +noun +noun +adj +conj +adj +verb +pron +prep +pron +verb +noun +det +noun +pron +conj +det +noun +conj +verb +det +num +prep +noun +adj +conj +adv +verb +num +conj +adj +noun +conj +pron +det +noun +verb +noun +adv +verb +conj +prep +det +noun +adv +det +noun +prep +pron +verb +pron +conj +verb +pron +ptcl +pron +verb +det +noun +pron +conj +verb +adj +verb +prep +pron +conj +conj +pron +verb +det +noun +pron +verb +adj +verb +conj +verb +pron +noun +conj +pron +verb +conj +det +noun +verb +pron +conj +verb +det +noun +verb +conj +verb +pron +verb +det +noun +verb +prep +pron +adv +verb +pron +conj +det +pron +verb +det +noun +det +noun +ptcl +verb +pron +ptcl +pron +adv +verb +det +noun +det +noun +conj +noun +adv +adv +verb +prep +pron +conj +verb +pron +verb +verb +det +noun +prep +pron +conj +verb +pron +prep +noun +adj +verb +conj +verb +pron +verb +pron +noun +adj +pron +verb +conj +noun +adj +verb +conj +det +noun +verb +pron +pron +pron +verb +adj +adj +adj +conj +adv +adj +det +noun +det +noun +verb +adv +verb +adv +verb +adv +verb +adv +verb +adv +verb +verb +det +noun +pron +conj +det +noun +conj +det +verb +pron +noun +pron +adj +verb +prep +noun +pron +conj +det +noun +verb +pron +verb +pron +conj +verb +pron +adj +pron +verb +verb +pron +verb +verb +conj +verb +det +adj +conj +verb +noun +prep +noun +conj +verb +verb +pron +conj +det +verb +prep +det +noun +verb +verb +conj +verb +verb +noun +adj +conj +verb +det +noun +verb +det +noun +pron +adv +adv +det +det +noun +verb +prep +det +noun +det +noun +verb +conj +det +noun +verb +prep +det +noun +pron +conj +det +noun +adv +verb +verb +pron +noun +adv +adj +verb +prep +det +noun +det +noun +verb +adj +verb +noun +prep +det +noun +det +noun +verb +conj +adj +prep +det +noun +det +noun +verb +conj +det +adv +verb +verb +prep +pron +conj +pron +verb +verb +verb +pron +det +noun +verb +prep +noun +adj +conj +adv +prep +noun +conj +adj +adj +prep +det +noun +verb +det +noun +verb +pron +verb +pron +verb +adj +conj +verb +pron +verb +det +noun +ptcl +verb +pron +adj +verb +pron +verb +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +prep +pron +conj +prep +det +noun +conj +adv +verb +adv +prep +det +noun +pron +adj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +prep +noun +conj +prep +det +noun +det +verb +noun +adj +conj +adj +adj +verb +adj +conj +det +adj +adj +conj +verb +prep +det +noun +verb +prep +noun +conj +verb +verb +pron +det +noun +conj +verb +conj +det +verb +verb +conj +verb +adv +det +num +verb +pron +verb +det +verb +pron +verb +adv +verb +verb +prep +noun +conj +det +noun +det +noun +verb +det +noun +conj +det +noun +conj +verb +pron +noun +conj +verb +pron +det +noun +conj +verb +pron +conj +verb +pron +conj +verb +pron +conj +verb +conj +prep +adj +noun +verb +conj +verb +pron +noun +conj +noun +det +noun +noun +verb +pron +noun +verb +conj +ptcl +pron +verb +pron +verb +pron +conj +det +verb +pron +verb +pron +pron +verb +pron +conj +det +verb +pron +verb +pron +conj +adj +prep +pron +adj +conj +adj +prep +adj +verb +prep +det +noun +pron +conj +det +noun +verb +pron +adv +verb +pron +verb +verb +verb +det +noun +pron +pron +verb +conj +det +noun +pron +pron +verb +verb +conj +det +verb +pron +verb +conj +det +noun +verb +pron +det +noun +pron +pron +verb +verb +conj +det +noun +pron +pron +verb +verb +conj +det +verb +prep +adj +pron +conj +prep +adj +adv +verb +adj +verb +conj +pron +verb +conj +verb +det +num +verb +verb +prep +noun +conj +noun +conj +verb +pron +det +noun +verb +pron +verb +conj +det +verb +verb +det +noun +verb +pron +conj +det +adj +pron +verb +pron +conj +adv +adv +verb +prep +pron +conj +ptcl +pron +verb +adj +verb +prep +pron +verb +pron +noun +conj +ptcl +pron +verb +prep +pron +verb +adj +verb +adj +noun +conj +adv +det +noun +det +noun +adv +verb +verb +conj +verb +conj +verb +det +noun +pron +noun +prep +adj +conj +verb +prep +noun +conj +verb +pron +prep +noun +conj +det +noun +pron +conj +noun +adj +det +noun +noun +noun +adj +noun +verb +prep +det +noun +conj +verb +conj +noun +det +adj +verb +verb +verb +conj +verb +noun +noun +noun +verb +pron +conj +verb +pron +adj +conj +verb +conj +det +adj +adv +verb +noun +noun +verb +pron +conj +verb +det +noun +verb +verb +pron +conj +verb +det +adj +verb +pron +verb +verb +verb +pron +conj +det +verb +det +noun +pron +verb +verb +prep +det +noun +conj +verb +pron +det +noun +verb +pron +pron +verb +verb +conj +det +adj +verb +pron +noun +conj +verb +conj +det +noun +verb +pron +verb +det +noun +pron +verb +pron +conj +adj +verb +conj +verb +pron +prep +det +noun +conj +conj +verb +prep +noun +prep +noun +conj +noun +prep +det +noun +det +noun +verb +num +det +noun +pron +conj +verb +pron +verb +prep +det +noun +det +prep +pron +conj +adj +verb +prep +pron +verb +verb +noun +prep +pron +adj +noun +adv +verb +verb +pron +conj +verb +conj +conj +pron +pron +verb +pron +verb +pron +verb +det +noun +pron +noun +verb +conj +adj +pron +verb +adv +adv +conj +verb +conj +verb +noun +verb +prep +noun +adv +prep +det +noun +conj +verb +pron +conj +pron +det +adv +verb +verb +pron +pron +verb +verb +det +noun +conj +det +verb +pron +conj +verb +det +noun +conj +verb +pron +conj +verb +det +noun +prep +det +noun +conj +verb +pron +det +noun +pron +conj +verb +prep +pron +conj +adj +det +noun +pron +verb +prep +det +noun +conj +adj +noun +verb +prep +det +noun +conj +det +verb +conj +det +verb +verb +ptcl +verb +det +verb +prep +noun +noun +verb +det +verb +noun +det +noun +pron +noun +ptcl +prep +det +adj +conj +verb +prep +noun +prep +det +noun +conj +adj +adv +verb +det +noun +verb +adj +verb +prep +noun +prep +det +num +conj +det +adv +verb +pron +prep +noun +verb +conj +verb +prep +adv +noun +verb +noun +verb +ptcl +ptcl +pron +verb +prep +pron +conj +verb +prep +pron +adj +verb +conj +adv +noun +conj +det +noun +adv +verb +noun +conj +verb +verb +pron +adv +prep +det +noun +prep +pron +adj +noun +verb +conj +verb +det +noun +pron +conj +verb +prep +noun +conj +verb +prep +det +noun +verb +verb +det +verb +conj +det +verb +prep +det +noun +conj +det +noun +det +noun +conj +det +noun +det +verb +det +noun +verb +conj +adv +verb +conj +pron +verb +noun +prep +det +noun +conj +verb +conj +verb +pron +ptcl +verb +conj +det +noun +pron +noun +noun +verb +adj +det +noun +conj +pron +verb +pron +noun +noun +conj +verb +det +noun +conj +det +noun +conj +verb +adv +pron +verb +conj +verb +pron +conj +adj +det +noun +verb +prep +det +noun +pron +conj +conj +adv +verb +verb +prep +det +noun +conj +verb +adv +verb +det +noun +verb +prep +noun +conj +verb +det +noun +verb +pron +noun +verb +det +noun +pron +verb +verb +conj +verb +det +noun +verb +pron +verb +noun +noun +ptcl +verb +pron +conj +ptcl +pron +verb +det +noun +pron +verb +conj +verb +prep +det +noun +conj +adv +verb +prep +det +noun +pron +conj +verb +conj +pron +verb +verb +verb +pron +prep +pron +verb +pron +adj +pron +verb +conj +verb +verb +conj +verb +conj +verb +pron +conj +conj +verb +verb +verb +conj +pron +verb +prep +pron +conj +adv +det +noun +pron +det +prep +det +noun +verb +pron +det +noun +pron +conj +verb +adv +prep +noun +conj +prep +det +noun +verb +pron +verb +prep +pron +det +noun +conj +det +noun +conj +det +adj +conj +verb +pron +prep +pron +noun +pron +verb +conj +pron +pron +verb +det +noun +pron +conj +pron +verb +conj +det +noun +verb +pron +verb +pron +adj +noun +conj +verb +pron +conj +verb +pron +prep +pron +noun +pron +verb +det +noun +det +noun +prep +noun +verb +conj +prep +noun +verb +pron +conj +verb +prep +pron +verb +conj +verb +prep +noun +verb +conj +prep +pron +adv +verb +pron +conj +verb +prep +noun +verb +det +noun +conj +adj +verb +det +noun +conj +adv +noun +verb +conj +verb +det +noun +verb +adv +verb +conj +det +noun +verb +pron +adv +pron +verb +pron +prep +pron +noun +pron +verb +conj +verb +pron +prep +noun +verb +noun +noun +verb +conj +verb +noun +conj +verb +noun +conj +verb +noun +conj +verb +pron +noun +conj +verb +conj +verb +prep +det +noun +det +noun +noun +conj +prep +det +noun +verb +prep +det +noun +det +noun +conj +verb +pron +verb +conj +verb +adj +conj +adv +verb +prep +pron +adj +noun +pron +verb +conj +verb +conj +adj +verb +pron +verb +conj +adj +adj +conj +pron +verb +conj +pron +verb +adv +verb +adj +noun +adj +verb +pron +adj +prep +pron +verb +conj +verb +det +noun +pron +conj +pron +det +noun +prep +pron +verb +conj +pron +verb +det +noun +verb +verb +pron +conj +pron +verb +det +noun +conj +verb +verb +pron +conj +verb +pron +prep +det +noun +pron +verb +det +noun +det +noun +verb +conj +verb +det +noun +conj +verb +det +noun +adj +adv +det +noun +pron +verb +noun +pron +verb +det +verb +pron +verb +prep +noun +noun +prep +noun +verb +pron +conj +verb +adj +prep +noun +pron +conj +verb +pron +verb +conj +verb +det +noun +conj +verb +conj +prep +pron +det +noun +verb +conj +verb +pron +verb +conj +verb +prep +pron +pron +det +noun +conj +det +noun +conj +pron +verb +noun +conj +verb +verb +pron +noun +verb +conj +adj +verb +conj +adv +verb +pron +prep +adj +conj +adv +verb +prep +noun +noun +conj +prep +noun +det +noun +det +noun +verb +verb +verb +noun +noun +conj +adv +verb +conj +adv +verb +conj +det +verb +pron +det +noun +verb +pron +pron +pron +verb +verb +pron +noun +conj +verb +conj +det +verb +conj +verb +pron +pron +det +noun +pron +conj +det +noun +conj +det +verb +pron +noun +conj +det +noun +verb +pron +det +noun +verb +noun +conj +det +det +noun +det +noun +conj +verb +prep +pron +conj +verb +prep +pron +noun +pron +verb +noun +adv +verb +conj +verb +pron +verb +noun +noun +verb +pron +conj +conj +pron +noun +verb +conj +verb +noun +conj +adv +verb +noun +conj +verb +det +noun +pron +det +noun +conj +verb +noun +det +noun +pron +num +noun +verb +conj +det +adj +verb +noun +conj +verb +adv +verb +noun +conj +det +adj +verb +pron +conj +verb +adv +verb +noun +conj +det +adj +adv +conj +det +num +adv +verb +noun +adj +adj +adv +det +noun +verb +prep +det +noun +adv +verb +pron +pron +noun +verb +conj +det +num +verb +pron +noun +verb +pron +det +noun +ptcl +prep +pron +verb +adv +verb +det +noun +conj +det +noun +det +noun +conj +conj +prep +adj +verb +conj +verb +conj +verb +conj +verb +conj +noun +prep +det +noun +conj +prep +det +adj +conj +verb +adv +verb +prep +det +noun +noun +prep +det +noun +conj +verb +pron +det +noun +verb +pron +det +noun +noun +conj +noun +noun +conj +noun +noun +adv +verb +noun +adj +conj +verb +adj +verb +conj +verb +adj +det +noun +verb +pron +verb +verb +conj +adv +verb +pron +verb +pron +pron +verb +noun +adj +adj +verb +det +noun +conj +adj +verb +verb +noun +noun +det +noun +pron +noun +adj +verb +conj +verb +noun +det +noun +pron +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +adj +pron +verb +det +adv +pron +conj +pron +adj +pron +adj +noun +adv +verb +conj +verb +pron +det +noun +adv +noun +prep +noun +verb +conj +adj +verb +conj +adv +verb +adj +prep +pron +conj +det +verb +pron +prep +adj +det +noun +conj +prep +adj +det +noun +conj +prep +adj +det +noun +conj +det +verb +det +adv +conj +pron +adj +verb +adj +det +noun +conj +noun +conj +det +noun +verb +pron +conj +adv +verb +verb +pron +adv +adj +verb +prep +det +noun +det +noun +conj +adj +adv +verb +pron +verb +conj +verb +det +noun +verb +verb +prep +det +noun +adv +verb +det +noun +conj +det +noun +noun +noun +verb +pron +noun +verb +prep +det +noun +det +adj +verb +noun +det +noun +pron +verb +prep +adj +pron +conj +ptcl +verb +det +adj +pron +prep +det +noun +pron +pron +noun +verb +pron +noun +conj +adv +pron +noun +verb +conj +det +adj +noun +verb +pron +adv +conj +prep +det +noun +pron +verb +verb +prep +det +noun +det +verb +prep +noun +verb +conj +noun +prep +det +noun +conj +noun +prep +det +noun +conj +noun +prep +det +noun +det +verb +det +noun +det +noun +conj +noun +adj +verb +pron +verb +adj +noun +conj +verb +prep +det +noun +verb +adv +det +noun +verb +noun +prep +det +noun +conj +adj +adj +verb +adj +conj +verb +adj +noun +adj +verb +noun +num +pron +verb +noun +conj +verb +det +noun +pron +verb +pron +ptcl +verb +pron +conj +det +noun +pron +det +adj +adj +verb +adj +det +verb +prep +det +noun +conj +adj +prep +det +verb +pron +verb +conj +pron +prep +det +noun +pron +verb +adj +pron +verb +adj +det +noun +pron +conj +verb +pron +prep +det +noun +verb +pron +adj +det +noun +pron +noun +verb +adj +noun +conj +adj +noun +conj +det +noun +verb +pron +verb +pron +det +adj +noun +adv +adv +verb +prep +noun +noun +pron +adv +adv +verb +conj +verb +pron +prep +det +noun +det +noun +prep +det +noun +verb +pron +prep +adj +noun +conj +noun +conj +noun +conj +noun +verb +pron +adv +pron +verb +conj +pron +det +noun +conj +verb +pron +adj +verb +conj +det +noun +verb +verb +pron +verb +conj +pron +pron +verb +adj +verb +prep +det +noun +pron +verb +conj +pron +verb +conj +adj +verb +conj +conj +verb +noun +conj +noun +noun +adv +verb +verb +verb +conj +adv +det +noun +conj +verb +noun +prep +noun +conj +noun +prep +noun +verb +noun +prep +noun +verb +noun +noun +noun +pron +conj +verb +pron +pron +verb +pron +prep +noun +conj +prep +noun +verb +conj +prep +noun +conj +noun +verb +prep +pron +prep +noun +pron +conj +prep +adj +det +noun +adj +verb +det +noun +verb +conj +conj +verb +pron +verb +adv +verb +pron +verb +conj +ptcl +pron +verb +pron +prep +pron +det +noun +pron +verb +conj +adv +verb +pron +det +verb +conj +det +noun +det +adj +conj +verb +noun +noun +prep +noun +conj +noun +noun +conj +verb +noun +prep +noun +conj +verb +pron +conj +verb +verb +prep +adj +prep +det +noun +pron +conj +det +verb +prep +noun +pron +verb +conj +conj +verb +det +noun +det +noun +verb +conj +adv +verb +det +verb +verb +adv +det +prep +det +noun +verb +prep +det +noun +det +prep +det +noun +adv +verb +conj +verb +pron +verb +prep +det +noun +pron +conj +det +prep +det +noun +adv +verb +prep +det +adv +verb +det +noun +pron +conj +ptcl +det +prep +noun +verb +conj +det +verb +prep +pron +det +noun +conj +verb +conj +adv +verb +noun +conj +verb +det +noun +pron +noun +pron +adv +verb +pron +prep +noun +noun +pron +verb +det +noun +prep +det +adv +conj +adv +adv +verb +conj +conj +adv +verb +noun +det +noun +ptcl +adv +verb +adj +noun +conj +prep +det +adj +pron +verb +verb +det +noun +conj +conj +adv +pron +pron +verb +verb +adv +det +noun +verb +adv +adv +verb +conj +verb +noun +conj +noun +conj +verb +noun +conj +noun +prep +det +verb +conj +adj +det +adj +conj +pron +verb +verb +pron +adj +conj +prep +pron +det +noun +prep +det +noun +pron +det +noun +verb +conj +det +noun +adv +verb +det +noun +pron +conj +det +noun +verb +verb +prep +det +noun +conj +det +noun +det +prep +det +noun +verb +conj +adv +verb +det +noun +det +noun +verb +prep +noun +prep +noun +adj +conj +noun +conj +adv +verb +det +noun +conj +verb +det +adj +pron +prep +det +adj +noun +prep +noun +noun +prep +noun +noun +conj +prep +det +noun +verb +det +noun +conj +adv +det +noun +pron +adj +verb +conj +verb +det +noun +verb +conj +adv +det +noun +verb +adv +adv +pron +conj +verb +pron +verb +verb +conj +adv +verb +prep +noun +ptcl +verb +pron +conj +adv +adv +verb +det +noun +pron +prep +pron +pron +adj +verb +det +noun +conj +det +noun +verb +conj +det +noun +pron +adv +verb +conj +prep +det +noun +pron +conj +det +noun +adj +verb +adv +det +noun +prep +noun +conj +det +noun +conj +adv +det +noun +verb +verb +conj +adv +verb +adv +det +noun +verb +conj +noun +adj +verb +det +noun +pron +conj +verb +det +noun +pron +det +noun +adj +det +noun +pron +conj +det +noun +verb +conj +verb +conj +verb +conj +adv +verb +adv +det +noun +det +noun +verb +conj +adv +conj +noun +conj +noun +conj +adv +conj +verb +adv +verb +pron +verb +conj +pron +pron +verb +adj +verb +verb +conj +verb +det +noun +conj +det +adj +prep +num +noun +conj +verb +det +noun +conj +det +noun +adv +pron +prep +noun +verb +verb +conj +verb +adv +prep +det +noun +ptcl +adv +verb +noun +det +noun +conj +verb +pron +prep +noun +prep +det +noun +noun +det +adj +verb +pron +verb +noun +verb +noun +noun +noun +adj +adj +verb +det +noun +verb +pron +det +noun +conj +pron +verb +verb +prep +pron +prep +pron +det +noun +pron +det +noun +verb +conj +verb +pron +det +noun +verb +prep +noun +adj +conj +verb +det +adj +conj +verb +pron +conj +det +noun +verb +verb +pron +pron +pron +noun +verb +adj +noun +verb +prep +pron +conj +adv +det +adj +verb +prep +pron +conj +conj +verb +verb +pron +adv +verb +conj +pron +adv +adv +verb +pron +verb +verb +verb +verb +det +noun +pron +prep +det +noun +conj +ptcl +verb +pron +ptcl +conj +verb +det +noun +prep +adj +det +noun +adv +pron +verb +pron +verb +prep +noun +pron +conj +noun +noun +det +adj +det +num +verb +prep +det +noun +conj +pron +verb +pron +conj +det +verb +verb +conj +verb +pron +noun +verb +conj +verb +adv +pron +adv +verb +conj +det +adj +noun +det +adj +adv +det +noun +verb +verb +pron +det +noun +pron +verb +adv +verb +verb +conj +verb +det +noun +conj +verb +num +det +noun +pron +conj +verb +pron +verb +prep +det +noun +conj +verb +pron +noun +noun +noun +verb +verb +pron +conj +ptcl +conj +verb +verb +det +noun +conj +det +noun +verb +adv +verb +det +noun +pron +adv +det +noun +prep +det +noun +pron +verb +conj +pron +pron +verb +noun +adj +verb +adj +conj +adv +verb +pron +conj +verb +det +noun +conj +verb +prep +det +noun +conj +verb +conj +verb +pron +conj +verb +det +noun +conj +adj +verb +verb +prep +det +num +conj +pron +verb +conj +verb +det +noun +verb +ptcl +verb +pron +conj +verb +pron +adj +prep +pron +det +verb +prep +pron +verb +verb +conj +verb +pron +adj +prep +adj +ptcl +pron +conj +det +verb +pron +adj +det +num +det +verb +prep +pron +prep +det +noun +conj +conj +det +noun +det +noun +verb +conj +verb +prep +pron +conj +ptcl +det +noun +pron +prep +pron +det +noun +det +noun +verb +adj +pron +conj +adv +verb +det +noun +pron +conj +verb +pron +verb +noun +verb +verb +conj +verb +pron +conj +verb +verb +pron +verb +det +noun +pron +conj +verb +noun +verb +verb +pron +conj +verb +prep +pron +adj +conj +verb +pron +pron +verb +det +noun +pron +det +noun +det +verb +prep +adj +ptcl +verb +pron +conj +adv +adv +adv +verb +prep +det +noun +det +noun +prep +det +noun +pron +adv +pron +verb +adj +prep +det +noun +det +noun +conj +verb +verb +prep +det +noun +det +noun +conj +verb +pron +det +noun +conj +adj +verb +conj +verb +verb +det +noun +conj +det +noun +verb +conj +prep +det +verb +pron +verb +pron +prep +det +noun +conj +det +noun +verb +pron +conj +adv +adj +verb +conj +adv +pron +conj +verb +pron +det +noun +ptcl +verb +pron +conj +pron +adv +pron +det +noun +conj +conj +adv +noun +verb +adv +pron +verb +conj +det +adv +verb +conj +verb +pron +verb +pron +adv +adv +pron +verb +conj +adv +adv +adj +verb +conj +verb +prep +noun +pron +det +noun +noun +conj +verb +det +noun +pron +verb +adv +conj +verb +conj +verb +det +noun +conj +det +noun +conj +det +noun +prep +pron +conj +verb +verb +conj +verb +conj +verb +pron +adj +verb +det +noun +pron +prep +noun +verb +adv +conj +verb +conj +verb +adj +verb +prep +det +noun +conj +verb +conj +conj +adj +verb +verb +prep +pron +det +noun +conj +verb +noun +det +noun +adj +adj +pron +verb +det +noun +pron +prep +pron +conj +adv +pron +pron +verb +conj +pron +pron +conj +verb +conj +verb +pron +verb +conj +verb +det +noun +noun +verb +adv +verb +adj +noun +verb +verb +conj +verb +conj +adv +verb +prep +noun +conj +det +noun +adj +conj +det +noun +adj +conj +adv +verb +verb +det +pron +noun +verb +conj +adv +verb +verb +pron +verb +conj +verb +verb +pron +det +noun +conj +adv +verb +pron +verb +pron +conj +verb +det +adj +conj +verb +pron +verb +det +adj +conj +verb +verb +verb +det +noun +verb +verb +det +noun +det +noun +prep +det +noun +det +adj +verb +verb +verb +det +verb +pron +verb +conj +adj +adv +pron +verb +verb +det +noun +adj +det +num +conj +prep +pron +noun +prep +noun +conj +noun +prep +det +noun +conj +det +noun +conj +det +adj +conj +verb +det +verb +pron +noun +pron +verb +ptcl +pron +verb +pron +verb +verb +pron +conj +verb +adv +conj +verb +adj +verb +pron +verb +noun +conj +verb +pron +conj +det +verb +det +noun +pron +conj +verb +pron +conj +adj +pron +det +verb +verb +det +noun +verb +det +noun +det +noun +conj +verb +pron +det +noun +conj +verb +det +noun +verb +pron +conj +prep +noun +verb +prep +noun +conj +noun +verb +pron +prep +noun +verb +prep +pron +prep +det +noun +verb +conj +adv +verb +pron +conj +conj +verb +det +noun +conj +verb +pron +verb +adj +conj +noun +pron +verb +pron +verb +noun +prep +adj +conj +verb +pron +conj +det +verb +det +noun +adj +verb +conj +verb +det +noun +prep +det +noun +conj +verb +adj +det +noun +conj +det +adj +conj +det +noun +conj +det +noun +prep +adv +verb +pron +prep +adv +prep +det +noun +det +noun +conj +verb +verb +prep +det +noun +conj +verb +prep +det +noun +conj +det +noun +conj +adj +det +noun +verb +prep +det +noun +noun +prep +det +verb +pron +conj +adv +verb +conj +adj +verb +prep +pron +conj +adj +det +noun +adv +verb +conj +pron +verb +verb +prep +pron +verb +conj +pron +verb +pron +verb +conj +pron +verb +det +noun +pron +det +adj +conj +prep +adj +noun +adj +adj +verb +conj +adv +adv +adj +verb +det +noun +pron +conj +verb +prep +adj +det +noun +verb +det +noun +verb +adv +verb +adj +pron +pron +pron +verb +conj +det +verb +conj +adv +verb +adj +adv +det +noun +verb +pron +conj +verb +pron +pron +verb +det +noun +det +noun +det +adj +conj +det +noun +verb +pron +verb +conj +verb +det +noun +det +noun +prep +adj +det +noun +verb +conj +verb +prep +det +noun +det +noun +conj +det +noun +verb +det +noun +pron +verb +pron +adv +noun +noun +verb +verb +det +noun +pron +pron +verb +conj +det +adj +verb +pron +adj +verb +noun +conj +verb +pron +verb +pron +conj +verb +pron +det +noun +conj +verb +pron +conj +verb +pron +verb +conj +det +noun +noun +pron +verb +conj +verb +det +noun +adv +prep +det +noun +verb +adj +det +noun +det +noun +conj +verb +det +noun +verb +verb +pron +verb +adv +pron +prep +det +adj +det +noun +verb +conj +det +verb +verb +conj +verb +conj +verb +pron +pron +verb +conj +verb +adv +prep +det +noun +conj +det +noun +verb +pron +verb +adv +verb +det +verb +conj +pron +prep +pron +verb +conj +det +adv +verb +conj +prep +adj +adv +det +verb +verb +det +noun +adv +prep +pron +verb +conj +adv +noun +verb +conj +det +verb +verb +conj +verb +conj +adv +verb +det +noun +pron +pron +verb +conj +adj +prep +adj +noun +verb +conj +verb +det +noun +det +noun +conj +verb +pron +det +noun +conj +adv +noun +adv +verb +adv +pron +verb +conj +verb +verb +conj +adj +adv +det +noun +noun +verb +prep +det +adj +conj +noun +conj +adj +det +noun +verb +det +noun +verb +conj +verb +noun +conj +verb +pron +det +noun +pron +verb +det +noun +det +adj +conj +det +verb +pron +verb +pron +verb +conj +verb +pron +det +noun +adj +conj +det +noun +adv +verb +pron +verb +adv +verb +adj +verb +pron +pron +verb +conj +det +noun +adv +adj +verb +conj +verb +det +noun +conj +prep +noun +verb +pron +adj +noun +pron +verb +conj +verb +verb +det +verb +noun +prep +det +noun +pron +prep +det +noun +noun +verb +conj +verb +det +noun +verb +verb +conj +verb +pron +conj +det +noun +verb +pron +verb +verb +verb +pron +det +noun +det +adj +conj +verb +conj +prep +noun +verb +pron +det +noun +conj +det +noun +verb +det +noun +conj +adv +det +noun +verb +pron +conj +det +noun +adv +verb +verb +pron +conj +pron +verb +pron +verb +det +noun +det +adj +conj +det +adv +verb +verb +pron +conj +det +noun +verb +pron +conj +verb +pron +adj +conj +det +adv +verb +verb +pron +conj +det +noun +verb +det +noun +det +adj +verb +verb +pron +det +noun +conj +verb +det +noun +verb +conj +verb +conj +det +noun +verb +pron +prep +det +noun +pron +verb +noun +conj +verb +adj +det +noun +conj +verb +pron +noun +conj +verb +pron +verb +adj +noun +conj +verb +verb +pron +verb +noun +det +adj +conj +verb +pron +det +noun +noun +conj +verb +pron +conj +verb +det +noun +verb +pron +conj +conj +verb +pron +verb +pron +det +noun +conj +verb +pron +det +noun +pron +conj +verb +pron +conj +verb +pron +conj +verb +verb +pron +noun +noun +verb +prep +noun +det +noun +noun +conj +noun +conj +verb +det +noun +pron +conj +verb +pron +prep +det +noun +noun +pron +verb +verb +noun +noun +conj +verb +pron +verb +noun +conj +pron +adv +verb +conj +verb +pron +conj +verb +det +noun +pron +verb +noun +prep +pron +pron +pron +verb +conj +verb +noun +adj +conj +verb +pron +conj +verb +verb +det +noun +det +noun +pron +det +noun +det +adj +conj +prep +pron +verb +num +noun +adj +prep +adj +conj +adj +prep +adj +pron +conj +det +verb +verb +pron +verb +det +noun +pron +conj +verb +ptcl +det +verb +det +noun +conj +verb +prep +adj +noun +verb +pron +verb +prep +det +noun +adv +adv +det +noun +verb +prep +pron +prep +det +noun +verb +adj +verb +pron +verb +adv +verb +det +noun +det +noun +noun +verb +adv +prep +det +noun +conj +verb +conj +verb +conj +det +verb +prep +pron +verb +pron +conj +verb +noun +adj +noun +verb +prep +adj +det +noun +prep +noun +adj +conj +det +adj +noun +verb +det +noun +noun +adj +noun +noun +adv +verb +pron +verb +verb +det +noun +pron +det +noun +pron +prep +pron +verb +pron +conj +pron +det +verb +verb +verb +verb +noun +verb +conj +pron +verb +conj +verb +noun +noun +verb +noun +verb +pron +verb +verb +verb +ptcl +verb +noun +verb +pron +conj +det +noun +verb +noun +adj +verb +conj +det +noun +det +noun +verb +prep +num +prep +adv +prep +adv +conj +det +noun +det +verb +prep +adj +pron +verb +conj +adv +verb +verb +adv +pron +det +noun +noun +noun +verb +conj +verb +adv +noun +prep +adv +verb +prep +pron +conj +noun +det +noun +conj +noun +det +noun +det +adj +conj +noun +noun +conj +noun +pron +conj +verb +prep +det +noun +verb +pron +conj +verb +pron +conj +adj +adj +det +verb +pron +prep +noun +conj +adv +adj +verb +conj +verb +noun +pron +verb +noun +verb +noun +det +prep +noun +adj +noun +pron +adv +pron +verb +verb +det +noun +det +noun +verb +verb +prep +det +noun +conj +verb +det +noun +det +noun +conj +det +noun +verb +ptcl +adv +verb +conj +verb +det +noun +verb +pron +ptcl +adv +verb +conj +verb +prep +det +noun +verb +det +noun +det +noun +conj +verb +noun +verb +pron +verb +det +noun +conj +verb +pron +prep +noun +pron +verb +verb +prep +noun +conj +verb +noun +prep +det +noun +det +noun +conj +det +noun +det +noun +conj +noun +det +noun +verb +adv +verb +conj +verb +det +noun +noun +det +noun +conj +noun +det +det +noun +conj +noun +verb +noun +conj +verb +verb +pron +conj +adv +adv +det +adj +det +noun +verb +prep +det +noun +verb +det +noun +conj +verb +prep +pron +pron +verb +pron +det +noun +prep +det +noun +det +noun +conj +verb +verb +conj +verb +det +noun +conj +verb +adj +adv +conj +verb +prep +det +noun +verb +noun +verb +prep +det +adj +verb +noun +adj +conj +verb +conj +det +verb +pron +adv +verb +verb +noun +det +adj +det +verb +verb +adv +verb +adv +verb +det +noun +adv +verb +pron +conj +verb +verb +det +noun +pron +conj +det +noun +conj +verb +pron +prep +det +noun +adv +pron +verb +conj +verb +pron +conj +verb +verb +prep +det +noun +conj +verb +pron +noun +conj +noun +conj +adj +adj +verb +conj +verb +conj +verb +adv +adj +noun +verb +adj +noun +det +noun +prep +pron +verb +num +noun +pron +verb +verb +det +prep +pron +verb +verb +conj +verb +pron +verb +conj +verb +conj +verb +prep +pron +verb +conj +prep +pron +adj +prep +pron +verb +verb +prep +adj +noun +verb +prep +noun +pron +verb +verb +det +adj +conj +pron +verb +conj +adj +verb +pron +det +num +verb +conj +verb +det +noun +pron +conj +noun +conj +det +verb +pron +verb +adv +verb +conj +verb +pron +verb +prep +det +noun +adj +verb +det +noun +adj +det +noun +det +verb +conj +verb +verb +conj +det +verb +verb +conj +noun +pron +det +verb +verb +prep +det +noun +pron +noun +verb +noun +adj +verb +noun +verb +conj +adj +pron +verb +adv +adv +pron +verb +prep +adj +noun +verb +conj +adv +verb +conj +conj +det +noun +noun +prep +det +verb +pron +verb +prep +det +noun +conj +verb +prep +adj +det +noun +conj +pron +verb +verb +adv +det +noun +verb +conj +det +noun +verb +prep +det +verb +noun +conj +adj +det +verb +det +prep +det +noun +adv +verb +conj +prep +pron +conj +pron +det +noun +prep +noun +conj +adv +noun +verb +prep +pron +det +adj +conj +adj +noun +det +adj +noun +conj +adj +verb +verb +noun +prep +det +verb +prep +pron +noun +conj +verb +pron +det +prep +noun +noun +conj +noun +verb +det +noun +verb +pron +verb +adv +adj +adv +adv +pron +verb +adj +noun +conj +verb +prep +pron +verb +noun +det +noun +verb +prep +det +noun +noun +noun +det +noun +noun +pron +noun +noun +prep +noun +noun +conj +noun +pron +prep +det +noun +noun +conj +det +noun +pron +noun +conj +verb +adj +adj +prep +det +noun +verb +prep +adj +det +noun +conj +noun +det +noun +adj +conj +adv +verb +pron +noun +conj +verb +det +noun +noun +conj +adj +verb +verb +prep +det +noun +pron +conj +verb +prep +det +verb +pron +prep +det +noun +det +noun +pron +prep +det +noun +prep +det +noun +det +noun +verb +det +verb +verb +prep +det +noun +det +noun +conj +adj +det +noun +det +noun +verb +verb +adv +det +noun +det +noun +conj +verb +pron +noun +noun +verb +prep +adj +det +noun +det +noun +conj +verb +noun +verb +conj +noun +verb +prep +pron +conj +verb +prep +pron +det +noun +adv +verb +noun +conj +verb +det +noun +pron +conj +det +noun +pron +noun +verb +noun +pron +conj +verb +det +noun +pron +noun +conj +verb +pron +noun +conj +noun +conj +adj +prep +det +noun +pron +verb +conj +verb +adj +prep +noun +conj +noun +conj +noun +adv +adv +verb +conj +noun +adj +verb +adv +prep +noun +noun +pron +conj +adj +det +noun +noun +verb +prep +noun +det +noun +pron +conj +pron +verb +prep +pron +prep +noun +conj +noun +noun +verb +noun +noun +prep +noun +conj +adj +prep +noun +adj +verb +noun +noun +verb +conj +verb +noun +prep +det +noun +prep +pron +verb +pron +conj +pron +verb +noun +conj +det +noun +pron +verb +prep +det +noun +pron +conj +verb +det +noun +verb +pron +pron +verb +noun +det +verb +prep +det +noun +conj +verb +verb +prep +pron +conj +verb +pron +pron +conj +verb +verb +verb +conj +adv +verb +verb +prep +pron +noun +verb +pron +prep +pron +adv +verb +det +noun +pron +pron +verb +prep +det +noun +pron +conj +verb +verb +det +noun +det +noun +conj +verb +prep +det +verb +prep +det +noun +pron +conj +verb +adv +verb +verb +pron +conj +verb +conj +noun +verb +prep +det +noun +conj +pron +verb +verb +pron +conj +verb +adj +conj +verb +conj +verb +det +noun +det +noun +pron +verb +prep +det +noun +pron +conj +prep +pron +det +noun +verb +noun +det +noun +pron +conj +verb +pron +noun +num +verb +conj +adv +pron +verb +noun +prep +noun +pron +verb +verb +noun +pron +prep +noun +conj +prep +det +noun +det +adj +verb +det +noun +noun +prep +det +noun +prep +noun +det +noun +pron +noun +noun +prep +noun +verb +noun +pron +noun +noun +prep +noun +noun +conj +det +noun +det +noun +noun +conj +verb +prep +pron +verb +verb +verb +det +noun +prep +pron +conj +det +prep +det +noun +verb +conj +verb +adj +verb +det +noun +pron +conj +verb +det +noun +pron +adv +verb +noun +conj +verb +noun +prep +det +noun +conj +verb +verb +prep +noun +conj +verb +noun +conj +verb +det +noun +pron +noun +pron +verb +adj +conj +noun +adj +verb +conj +verb +pron +noun +det +noun +det +noun +noun +det +noun +pron +conj +verb +prep +det +noun +noun +prep +det +noun +conj +det +noun +pron +adv +verb +noun +conj +verb +noun +prep +det +noun +adv +verb +pron +conj +noun +adv +verb +conj +verb +det +noun +verb +pron +noun +adj +verb +prep +pron +conj +noun +adj +verb +pron +conj +adv +det +verb +adj +verb +noun +noun +conj +verb +noun +det +noun +pron +adv +pron +verb +noun +prep +noun +pron +conj +pron +noun +adj +verb +pron +det +verb +noun +conj +adv +verb +prep +det +noun +adj +noun +conj +verb +noun +verb +det +noun +noun +verb +pron +prep +det +noun +pron +conj +verb +prep +pron +det +noun +conj +noun +verb +prep +det +noun +pron +verb +prep +det +adj +prep +noun +prep +noun +noun +conj +verb +prep +det +noun +noun +conj +verb +det +noun +conj +verb +conj +verb +det +noun +det +noun +det +noun +verb +det +noun +prep +det +noun +pron +conj +verb +noun +adj +det +noun +conj +verb +noun +adj +conj +verb +verb +pron +prep +noun +conj +verb +det +noun +det +noun +pron +conj +adv +pron +pron +adv +verb +det +noun +det +noun +pron +prep +pron +conj +verb +conj +verb +det +noun +det +noun +pron +prep +det +noun +pron +verb +prep +noun +det +noun +prep +det +noun +pron +conj +adj +det +verb +conj +verb +noun +det +verb +pron +prep +noun +conj +verb +noun +verb +det +noun +pron +det +noun +conj +verb +det +noun +pron +prep +det +noun +det +noun +pron +conj +verb +prep +det +noun +det +noun +pron +conj +verb +prep +det +adv +verb +pron +adj +det +noun +conj +verb +pron +adj +det +adj +conj +adj +det +noun +pron +conj +det +noun +pron +prep +noun +conj +noun +det +verb +pron +verb +noun +prep +noun +pron +verb +adj +noun +noun +pron +verb +noun +prep +noun +conj +verb +adj +verb +verb +adj +conj +verb +verb +adj +verb +noun +noun +pron +verb +noun +det +noun +conj +det +noun +pron +prep +det +noun +conj +verb +prep +det +noun +pron +conj +verb +noun +prep +pron +adv +noun +adj +conj +verb +prep +det +noun +pron +conj +det +noun +verb +det +noun +det +verb +pron +conj +verb +noun +conj +verb +det +adj +conj +det +adj +pron +conj +verb +noun +det +noun +pron +prep +pron +conj +verb +pron +conj +verb +prep +det +noun +det +adj +verb +verb +det +noun +conj +verb +pron +prep +det +noun +det +noun +pron +noun +conj +verb +det +noun +pron +verb +adv +conj +verb +noun +conj +verb +prep +pron +conj +verb +prep +det +noun +pron +adj +pron +verb +det +noun +pron +conj +verb +det +noun +pron +det +ptcl +verb +pron +verb +pron +conj +verb +noun +verb +verb +noun +verb +noun +pron +conj +verb +adj +conj +verb +det +noun +pron +adv +conj +det +noun +pron +conj +verb +verb +det +noun +conj +verb +noun +prep +adj +det +verb +pron +conj +prep +adj +det +adj +det +noun +verb +adj +det +noun +pron +conj +verb +adj +det +verb +prep +det +noun +pron +verb +conj +pron +det +noun +pron +verb +conj +adv +noun +noun +verb +prep +pron +conj +noun +det +noun +pron +verb +noun +adj +conj +verb +verb +adj +noun +det +noun +det +noun +conj +verb +conj +verb +noun +det +noun +pron +conj +verb +noun +noun +pron +prep +noun +noun +noun +pron +conj +verb +prep +noun +det +adj +prep +noun +noun +pron +noun +prep +adj +pron +conj +prep +noun +adj +det +verb +pron +verb +noun +prep +det +noun +pron +conj +verb +noun +adj +pron +noun +pron +verb +prep +noun +det +noun +pron +det +verb +pron +prep +noun +adj +verb +adv +verb +pron +prep +noun +conj +noun +prep +pron +adj +det +noun +pron +conj +noun +adv +pron +noun +adj +verb +conj +verb +prep +noun +verb +noun +pron +det +verb +noun +noun +det +noun +pron +prep +noun +noun +pron +prep +noun +noun +noun +pron +prep +pron +verb +pron +noun +prep +noun +verb +det +prep +noun +conj +noun +noun +verb +det +verb +det +noun +pron +prep +noun +noun +conj +det +noun +verb +conj +verb +noun +conj +verb +prep +det +adj +prep +noun +noun +pron +prep +det +noun +conj +verb +prep +det +noun +pron +verb +noun +prep +noun +noun +verb +adj +det +noun +pron +noun +adj +verb +verb +det +noun +noun +conj +verb +adj +verb +adj +prep +det +pron +noun +conj +verb +adv +noun +prep +det +noun +prep +noun +noun +prep +det +noun +prep +noun +noun +pron +verb +noun +prep +det +verb +pron +prep +noun +conj +noun +noun +verb +prep +noun +det +verb +pron +verb +noun +conj +verb +prep +det +verb +pron +adv +verb +det +noun +det +verb +pron +conj +verb +det +noun +pron +det +adj +conj +verb +pron +conj +verb +pron +prep +noun +conj +adv +verb +pron +noun +prep +det +noun +conj +noun +verb +prep +det +noun +det +pron +verb +conj +verb +noun +det +noun +prep +det +noun +pron +conj +noun +noun +verb +pron +conj +noun +noun +verb +pron +conj +verb +noun +adj +conj +verb +pron +det +noun +adv +verb +conj +verb +verb +pron +noun +adj +pron +verb +adj +det +noun +conj +verb +pron +adv +noun +pron +verb +noun +noun +prep +noun +noun +conj +pron +pron +noun +verb +noun +verb +conj +verb +prep +noun +conj +adv +verb +prep +det +noun +noun +noun +adj +verb +det +noun +conj +verb +noun +prep +adj +noun +conj +prep +noun +noun +prep +noun +noun +conj +verb +conj +verb +prep +pron +prep +det +noun +det +noun +det +noun +verb +prep +pron +ptcl +verb +prep +noun +conj +verb +det +noun +pron +det +verb +pron +det +noun +verb +pron +conj +verb +verb +conj +verb +conj +det +noun +conj +det +noun +conj +det +noun +verb +prep +det +noun +conj +verb +verb +prep +det +noun +det +verb +pron +prep +det +noun +pron +conj +adj +det +verb +verb +prep +det +verb +prep +det +noun +prep +pron +conj +det +noun +verb +adj +det +noun +pron +verb +prep +det +noun +pron +conj +verb +det +noun +verb +conj +verb +det +noun +prep +adj +pron +verb +conj +verb +conj +verb +prep +pron +conj +conj +verb +noun +num +det +verb +pron +conj +verb +det +noun +pron +noun +det +verb +prep +det +noun +prep +det +verb +pron +prep +det +noun +conj +conj +verb +det +noun +det +noun +pron +prep +det +noun +noun +verb +pron +prep +noun +verb +det +noun +conj +verb +prep +noun +noun +conj +adj +adj +verb +noun +adj +det +noun +verb +conj +det +verb +noun +prep +det +verb +prep +det +noun +noun +noun +noun +conj +num +noun +noun +conj +verb +noun +verb +prep +noun +pron +noun +noun +conj +det +noun +pron +adj +conj +adj +verb +noun +det +noun +conj +noun +adj +verb +prep +pron +conj +verb +verb +pron +prep +det +noun +det +adj +adv +verb +noun +conj +conj +ptcl +verb +det +noun +noun +conj +verb +prep +det +noun +prep +det +noun +conj +prep +det +verb +det +noun +det +noun +noun +det +verb +pron +prep +det +verb +det +noun +prep +pron +conj +pron +verb +pron +prep +det +noun +conj +verb +det +noun +conj +verb +noun +adv +verb +det +noun +pron +prep +det +noun +pron +prep +noun +conj +verb +det +noun +pron +det +adj +pron +pron +verb +prep +noun +adj +det +noun +noun +prep +noun +noun +conj +noun +noun +pron +noun +conj +verb +verb +det +noun +pron +conj +det +noun +prep +det +verb +prep +pron +conj +verb +pron +noun +conj +verb +prep +noun +det +noun +pron +verb +pron +verb +prep +noun +conj +noun +adj +prep +det +noun +conj +prep +noun +verb +conj +conj +pron +pron +det +noun +verb +noun +conj +ptcl +verb +prep +adj +noun +noun +conj +verb +noun +noun +noun +noun +prep +noun +noun +pron +verb +prep +noun +adj +verb +prep +noun +noun +num +prep +det +noun +pron +conj +pron +noun +prep +noun +num +adj +pron +adv +verb +det +noun +noun +conj +noun +verb +noun +conj +noun +conj +pron +det +noun +verb +verb +det +noun +conj +verb +prep +pron +adj +det +verb +noun +noun +conj +conj +verb +adj +det +prep +det +noun +noun +verb +prep +det +noun +prep +noun +pron +noun +conj +det +noun +verb +conj +verb +verb +noun +conj +noun +noun +verb +prep +pron +conj +verb +det +noun +pron +prep +noun +prep +noun +det +noun +det +noun +conj +conj +verb +noun +num +verb +pron +prep +det +noun +det +noun +conj +verb +det +noun +prep +det +verb +pron +verb +noun +det +noun +prep +noun +conj +adv +verb +det +noun +pron +conj +verb +pron +verb +prep +det +noun +verb +noun +noun +conj +verb +pron +prep +det +adj +conj +det +adj +conj +adv +verb +verb +prep +noun +verb +pron +conj +verb +prep +noun +adj +verb +pron +prep +det +noun +verb +prep +adj +det +noun +conj +verb +pron +conj +verb +pron +conj +verb +adj +det +verb +pron +prep +det +noun +conj +det +noun +pron +conj +verb +pron +verb +conj +verb +prep +pron +det +noun +pron +noun +pron +verb +pron +adv +verb +det +noun +pron +pron +verb +verb +pron +conj +verb +prep +pron +pron +conj +verb +pron +adv +verb +conj +prep +det +det +noun +pron +verb +pron +verb +conj +pron +adv +verb +det +noun +pron +verb +pron +conj +verb +prep +pron +conj +verb +prep +noun +conj +verb +verb +pron +conj +det +noun +pron +verb +adj +det +noun +prep +det +noun +pron +conj +noun +verb +prep +det +noun +conj +noun +conj +noun +prep +noun +conj +noun +conj +prep +noun +adj +det +noun +noun +noun +verb +noun +noun +det +noun +conj +verb +det +noun +noun +conj +noun +det +noun +pron +verb +det +adj +conj +noun +noun +conj +noun +det +noun +verb +prep +noun +noun +conj +noun +verb +noun +noun +prep +noun +det +noun +noun +prep +det +adj +conj +verb +prep +adj +det +adj +det +noun +verb +noun +noun +prep +noun +noun +conj +verb +prep +noun +noun +noun +det +noun +noun +verb +prep +det +adj +verb +det +noun +noun +adj +verb +det +noun +pron +adj +noun +verb +conj +adj +noun +conj +noun +verb +conj +verb +det +adj +prep +adj +conj +det +adj +prep +noun +adj +conj +verb +adj +noun +det +adj +det +noun +conj +verb +det +verb +verb +prep +pron +noun +noun +noun +pron +verb +pron +verb +prep +det +verb +noun +conj +verb +noun +adj +det +noun +conj +adv +verb +verb +prep +pron +noun +verb +det +noun +conj +verb +pron +conj +verb +det +noun +prep +det +noun +pron +verb +noun +det +noun +conj +adv +adv +det +noun +prep +det +noun +det +noun +verb +conj +adj +noun +adv +verb +noun +adj +verb +conj +prep +noun +verb +conj +verb +pron +det +noun +verb +conj +pron +verb +conj +verb +verb +pron +det +verb +num +noun +verb +det +adv +verb +conj +det +verb +noun +adv +verb +conj +verb +adv +noun +verb +conj +verb +prep +pron +noun +pron +verb +conj +det +verb +prep +pron +adj +adj +prep +det +verb +pron +verb +conj +verb +pron +adv +verb +verb +pron +verb +adv +pron +conj +verb +pron +adj +verb +conj +verb +conj +verb +det +noun +pron +conj +verb +det +noun +conj +verb +adj +prep +det +noun +pron +prep +det +noun +ptcl +adv +pron +verb +det +noun +verb +verb +adj +det +noun +conj +pron +noun +verb +pron +conj +verb +det +adj +pron +pron +adv +verb +adj +verb +det +noun +det +noun +pron +pron +pron +verb +prep +noun +adj +conj +noun +pron +det +noun +prep +det +noun +pron +verb +det +noun +pron +conj +verb +det +noun +prep +det +noun +pron +conj +det +noun +verb +noun +adj +conj +conj +adj +conj +adj +verb +verb +det +noun +conj +det +noun +det +noun +verb +prep +pron +prep +noun +det +noun +det +noun +pron +conj +prep +adj +pron +adj +verb +det +noun +verb +adv +pron +prep +adj +verb +det +noun +prep +noun +conj +verb +prep +det +verb +adj +det +noun +conj +noun +verb +conj +verb +verb +det +noun +conj +verb +det +noun +det +adj +adj +noun +conj +noun +prep +pron +conj +noun +prep +noun +verb +pron +verb +det +noun +pron +det +adj +prep +pron +verb +conj +pron +noun +verb +verb +adv +noun +num +conj +verb +verb +noun +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +conj +noun +adj +noun +adj +verb +prep +det +noun +conj +verb +prep +det +noun +prep +det +adj +noun +num +verb +prep +det +adj +conj +adv +verb +adj +prep +det +noun +pron +conj +verb +pron +verb +conj +verb +pron +det +adj +conj +verb +noun +det +noun +verb +det +noun +pron +conj +verb +noun +conj +verb +prep +pron +det +noun +verb +conj +adv +prep +noun +adj +verb +det +noun +conj +verb +pron +verb +pron +adj +det +noun +det +noun +prep +noun +noun +conj +verb +pron +det +adj +pron +verb +det +noun +pron +adj +conj +det +noun +pron +conj +pron +verb +conj +ptcl +pron +verb +verb +pron +conj +conj +pron +verb +prep +pron +verb +pron +adj +conj +verb +det +noun +verb +pron +verb +verb +noun +det +noun +pron +conj +pron +adj +verb +conj +verb +pron +prep +noun +conj +verb +prep +det +noun +det +noun +conj +verb +pron +conj +verb +noun +det +noun +verb +pron +adv +adv +conj +verb +conj +det +noun +pron +verb +prep +pron +det +verb +pron +conj +conj +prep +noun +verb +pron +ptcl +adv +verb +prep +noun +det +noun +pron +conj +verb +verb +pron +det +noun +conj +verb +adv +verb +noun +det +noun +pron +conj +verb +adj +noun +det +adj +verb +prep +pron +prep +noun +conj +verb +det +noun +prep +det +noun +det +noun +prep +det +noun +conj +noun +verb +prep +adj +det +adj +prep +pron +conj +pron +verb +prep +det +noun +pron +verb +prep +adj +conj +verb +prep +noun +adv +verb +verb +conj +verb +prep +det +verb +pron +prep +det +noun +det +noun +prep +det +noun +conj +verb +verb +conj +verb +pron +noun +det +noun +noun +conj +verb +det +noun +verb +det +noun +adv +verb +verb +noun +noun +prep +pron +pron +prep +verb +pron +verb +adj +verb +pron +verb +noun +noun +conj +adj +noun +verb +verb +prep +noun +verb +noun +noun +adj +conj +verb +det +noun +verb +det +noun +verb +conj +adj +det +noun +prep +det +noun +verb +verb +pron +conj +verb +verb +prep +pron +conj +adv +verb +det +noun +pron +prep +det +noun +pron +conj +adj +verb +pron +conj +verb +prep +det +noun +det +noun +det +verb +prep +det +noun +pron +conj +verb +ptcl +noun +noun +verb +pron +conj +verb +prep +pron +adv +verb +pron +det +noun +pron +noun +verb +pron +verb +pron +verb +prep +det +noun +verb +adv +adv +prep +det +noun +pron +conj +verb +ptcl +verb +pron +conj +adj +noun +adj +verb +prep +det +noun +pron +conj +prep +noun +verb +pron +adj +noun +verb +prep +det +noun +noun +prep +det +noun +adv +verb +det +noun +prep +noun +adj +conj +noun +num +adv +verb +noun +adj +prep +adj +det +noun +conj +prep +adj +pron +verb +noun +conj +adv +prep +noun +det +noun +prep +noun +noun +conj +adj +adj +verb +prep +det +noun +prep +noun +det +noun +conj +adj +pron +verb +conj +adv +noun +det +noun +conj +verb +noun +adj +prep +det +noun +verb +pron +conj +verb +verb +pron +prep +det +noun +conj +verb +pron +prep +noun +det +noun +prep +pron +det +noun +pron +verb +conj +verb +pron +conj +pron +verb +prep +adj +pron +verb +conj +verb +prep +noun +noun +det +noun +conj +verb +verb +pron +prep +det +noun +conj +verb +prep +det +noun +pron +conj +prep +noun +verb +det +noun +pron +conj +prep +det +noun +verb +noun +verb +noun +noun +adj +conj +verb +noun +adj +ptcl +pron +pron +conj +pron +noun +adj +verb +verb +pron +verb +pron +pron +verb +det +adj +det +noun +conj +verb +pron +det +noun +verb +verb +conj +verb +prep +pron +conj +det +noun +verb +pron +prep +det +adj +verb +prep +pron +adj +verb +pron +conj +verb +noun +prep +adj +conj +verb +prep +pron +verb +pron +det +noun +pron +conj +prep +noun +conj +noun +verb +det +adj +noun +conj +verb +conj +verb +noun +prep +pron +prep +adj +noun +det +adj +conj +verb +prep +det +noun +verb +prep +det +noun +noun +conj +noun +det +noun +verb +verb +noun +adj +conj +verb +pron +prep +pron +conj +verb +prep +pron +verb +det +noun +conj +verb +pron +conj +adv +verb +verb +pron +conj +verb +det +noun +adj +pron +verb +verb +noun +adj +verb +pron +prep +pron +conj +det +adj +adj +pron +det +noun +verb +verb +pron +conj +verb +adv +noun +prep +adj +verb +conj +verb +conj +pron +verb +det +noun +det +noun +conj +verb +adv +verb +pron +verb +conj +verb +det +noun +pron +verb +conj +verb +noun +verb +verb +prep +adj +noun +conj +det +noun +verb +pron +conj +verb +prep +pron +conj +verb +pron +det +adv +verb +prep +pron +conj +det +verb +prep +pron +conj +adv +det +adj +noun +verb +pron +det +noun +det +noun +verb +conj +prep +pron +verb +conj +verb +verb +prep +det +noun +det +noun +conj +verb +prep +det +det +noun +verb +pron +conj +verb +det +noun +det +noun +conj +pron +verb +verb +prep +det +noun +noun +conj +verb +noun +num +verb +prep +det +noun +conj +det +noun +prep +pron +verb +verb +det +noun +conj +verb +prep +adj +det +noun +pron +verb +noun +verb +pron +prep +det +noun +verb +adj +conj +verb +prep +det +noun +verb +det +noun +conj +conj +verb +verb +verb +prep +det +noun +verb +prep +det +noun +conj +verb +det +noun +pron +prep +noun +conj +verb +noun +verb +noun +prep +adj +noun +verb +adj +verb +conj +prep +det +noun +pron +verb +det +noun +conj +pron +verb +verb +noun +noun +adj +conj +verb +det +noun +pron +conj +verb +det +adj +prep +det +adj +noun +det +verb +verb +pron +conj +verb +conj +verb +adj +det +noun +conj +verb +pron +conj +verb +noun +noun +verb +det +noun +noun +verb +verb +prep +pron +conj +noun +adj +verb +noun +conj +noun +verb +pron +conj +adj +det +prep +pron +prep +det +noun +det +noun +pron +verb +conj +adv +adv +noun +conj +noun +noun +noun +pron +verb +noun +det +noun +conj +verb +prep +det +noun +det +noun +adv +verb +prep +det +adv +noun +verb +verb +conj +verb +det +noun +prep +det +noun +verb +adj +verb +pron +conj +verb +prep +det +verb +pron +prep +adj +det +noun +conj +verb +noun +adj +noun +conj +verb +det +noun +verb +prep +noun +verb +pron +verb +noun +conj +verb +verb +pron +verb +conj +verb +det +noun +verb +pron +verb +verb +verb +conj +adv +det +noun +verb +prep +pron +conj +pron +verb +pron +adj +verb +conj +verb +verb +pron +det +noun +conj +verb +prep +det +noun +pron +conj +verb +noun +prep +noun +pron +conj +verb +adv +det +noun +prep +pron +conj +verb +noun +adj +verb +conj +verb +prep +det +noun +pron +conj +pron +verb +verb +prep +det +adj +conj +verb +conj +verb +prep +adj +det +noun +conj +pron +verb +verb +conj +verb +verb +noun +conj +noun +pron +verb +verb +prep +adj +noun +det +noun +conj +noun +conj +noun +conj +noun +noun +verb +prep +det +verb +pron +conj +verb +noun +verb +prep +noun +noun +pron +verb +verb +conj +verb +pron +verb +conj +verb +prep +pron +conj +adv +verb +pron +verb +pron +prep +det +noun +verb +prep +det +noun +prep +det +noun +verb +pron +prep +det +noun +prep +det +adj +prep +det +noun +conj +verb +det +noun +pron +verb +noun +verb +pron +det +noun +pron +conj +verb +verb +det +noun +conj +det +noun +verb +pron +verb +pron +pron +verb +noun +pron +verb +noun +verb +conj +adv +adj +det +noun +conj +det +noun +verb +det +noun +pron +verb +verb +prep +pron +pron +verb +prep +det +noun +pron +pron +verb +adj +verb +verb +pron +det +noun +pron +conj +verb +verb +conj +verb +conj +conj +verb +conj +det +noun +det +noun +noun +verb +prep +det +noun +verb +noun +verb +det +verb +pron +verb +verb +conj +verb +det +noun +pron +verb +prep +det +noun +pron +conj +adv +verb +prep +pron +verb +prep +pron +verb +verb +prep +det +noun +pron +verb +det +noun +conj +noun +verb +adj +conj +verb +det +noun +conj +verb +noun +verb +conj +verb +adj +adv +conj +prep +pron +verb +conj +verb +noun +noun +noun +verb +prep +det +noun +conj +verb +pron +verb +pron +conj +verb +adj +verb +verb +pron +conj +verb +noun +adj +noun +pron +prep +det +noun +pron +conj +verb +noun +adj +noun +conj +adj +pron +verb +verb +prep +pron +conj +verb +det +noun +conj +det +noun +pron +prep +det +noun +pron +verb +prep +pron +prep +det +noun +conj +adj +verb +conj +verb +conj +verb +det +noun +verb +prep +pron +adv +noun +noun +verb +det +verb +conj +det +adv +verb +adv +verb +verb +adj +conj +adj +prep +noun +conj +det +verb +prep +pron +det +noun +noun +verb +adj +conj +noun +verb +adv +adv +det +det +noun +conj +det +adj +verb +conj +verb +conj +det +noun +verb +prep +pron +ptcl +verb +det +noun +det +noun +prep +pron +det +noun +prep +pron +verb +verb +verb +conj +verb +noun +adv +conj +verb +prep +pron +det +noun +adv +verb +prep +pron +det +noun +conj +verb +adv +noun +prep +pron +adv +adj +noun +prep +noun +adj +verb +verb +prep +noun +adj +conj +conj +adv +conj +det +adj +verb +conj +det +adj +adv +verb +det +noun +det +prep +det +adj +conj +adj +verb +noun +adj +prep +noun +adj +conj +conj +adv +verb +det +noun +det +adj +det +noun +conj +pron +verb +conj +det +noun +verb +conj +noun +adj +prep +noun +adj +adj +conj +adj +verb +adj +verb +adj +conj +verb +det +adj +adj +verb +conj +verb +prep +noun +verb +pron +prep +adj +conj +verb +conj +verb +det +noun +pron +det +noun +verb +det +noun +conj +pron +det +noun +verb +pron +verb +pron +adv +verb +det +noun +conj +verb +prep +pron +verb +det +noun +adv +verb +pron +pron +verb +noun +conj +verb +pron +conj +det +prep +pron +verb +conj +verb +prep +det +noun +det +noun +conj +det +noun +det +noun +verb +verb +conj +verb +det +prep +pron +pron +verb +adv +verb +conj +adv +adj +det +noun +conj +verb +pron +verb +noun +det +noun +det +noun +det +noun +conj +verb +prep +adj +noun +verb +pron +prep +det +noun +conj +verb +conj +verb +noun +adv +conj +det +noun +pron +det +adj +verb +adj +conj +verb +pron +det +noun +conj +det +noun +ptcl +prep +det +noun +verb +conj +verb +verb +pron +conj +pron +verb +det +noun +pron +conj +verb +det +noun +det +adj +verb +det +noun +verb +conj +verb +prep +det +adj +conj +verb +verb +conj +verb +det +noun +prep +pron +verb +pron +ptcl +verb +det +noun +verb +conj +verb +noun +verb +conj +verb +conj +verb +adj +pron +verb +pron +verb +det +noun +pron +conj +det +verb +conj +verb +det +noun +pron +conj +pron +verb +noun +conj +verb +prep +pron +ptcl +pron +verb +det +noun +conj +verb +prep +det +noun +pron +verb +pron +prep +det +noun +verb +conj +verb +verb +prep +det +noun +det +noun +conj +conj +verb +noun +verb +det +noun +pron +conj +verb +prep +pron +num +pron +adv +noun +verb +noun +pron +adv +verb +noun +conj +noun +det +noun +pron +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +noun +conj +noun +det +verb +noun +conj +noun +noun +conj +noun +noun +pron +verb +noun +conj +verb +prep +pron +verb +prep +noun +adj +conj +noun +adj +noun +pron +conj +noun +adj +det +noun +prep +adj +det +noun +conj +noun +conj +det +adj +noun +conj +noun +pron +verb +verb +pron +conj +verb +prep +det +noun +pron +conj +det +verb +prep +noun +adj +verb +conj +adj +det +noun +verb +verb +pron +conj +noun +prep +pron +verb +conj +verb +adj +conj +pron +verb +det +noun +pron +prep +det +noun +pron +verb +adj +det +adj +conj +adj +verb +det +noun +det +noun +adj +det +verb +adv +conj +verb +adj +det +verb +adv +conj +verb +adj +verb +conj +verb +pron +det +noun +conj +conj +verb +pron +conj +verb +conj +verb +det +noun +pron +conj +adj +prep +det +noun +det +noun +verb +prep +pron +det +noun +conj +verb +conj +verb +det +noun +pron +adj +prep +det +noun +conj +prep +det +pron +verb +det +noun +det +noun +pron +conj +ptcl +pron +det +adj +conj +verb +det +noun +pron +ptcl +pron +det +verb +adv +conj +verb +intj +det +verb +adv +conj +verb +conj +verb +ptcl +conj +adv +pron +verb +adj +det +noun +conj +prep +det +pron +verb +det +noun +det +noun +pron +conj +verb +pron +det +verb +verb +det +adj +pron +adv +verb +det +verb +pron +verb +det +verb +pron +verb +prep +det +verb +pron +det +verb +pron +prep +det +noun +verb +adv +det +adj +conj +prep +det +verb +pron +det +noun +adv +det +noun +adv +verb +adj +verb +pron +verb +conj +prep +det +verb +det +adj +adv +verb +conj +conj +verb +conj +verb +pron +det +noun +verb +pron +adv +conj +conj +verb +det +verb +pron +pron +noun +pron +verb +conj +adv +det +adj +det +verb +pron +verb +conj +conj +adv +verb +det +verb +pron +pron +noun +pron +verb +adv +det +adj +det +pron +verb +conj +conj +verb +prep +pron +verb +verb +pron +noun +pron +verb +adv +adj +adj +verb +conj +verb +det +adj +conj +verb +det +adj +pron +conj +verb +conj +verb +adj +verb +conj +verb +det +noun +pron +adj +conj +verb +noun +adj +conj +pron +adj +verb +prep +det +adj +conj +adj +verb +adj +conj +det +noun +pron +adj +verb +conj +adv +verb +conj +adv +adv +verb +conj +adv +verb +conj +adv +adv +verb +verb +conj +verb +verb +conj +verb +pron +noun +adj +verb +verb +verb +verb +prep +det +noun +pron +conj +pron +noun +verb +verb +pron +conj +verb +adv +noun +pron +ptcl +verb +adj +adj +verb +ptcl +adj +prep +noun +verb +adv +verb +noun +prep +det +noun +conj +verb +adj +verb +conj +det +noun +pron +conj +pron +verb +det +noun +det +prep +det +noun +det +noun +pron +conj +det +noun +det +prep +det +adj +noun +adv +verb +adv +verb +verb +det +noun +pron +noun +verb +verb +det +noun +det +prep +det +noun +pron +pron +det +prep +det +noun +pron +noun +adv +verb +noun +verb +adj +det +noun +prep +det +noun +pron +conj +adv +verb +det +noun +det +prep +det +noun +det +noun +pron +verb +conj +adv +verb +verb +noun +adj +noun +adj +conj +adv +noun +adj +verb +noun +adj +conj +adj +noun +prep +det +adj +noun +verb +conj +adv +prep +noun +verb +noun +conj +prep +noun +noun +verb +det +adj +noun +prep +det +adj +noun +det +noun +verb +det +adj +conj +det +adj +prep +det +adj +verb +det +adj +conj +prep +noun +noun +verb +det +noun +pron +conj +pron +pron +verb +noun +noun +conj +adv +verb +pron +verb +adj +det +verb +prep +pron +conj +verb +pron +det +noun +conj +verb +pron +verb +pron +pron +verb +adj +adj +verb +noun +verb +noun +pron +verb +conj +verb +conj +verb +noun +prep +det +noun +conj +noun +verb +verb +det +noun +det +noun +pron +conj +adv +verb +verb +pron +prep +det +adv +verb +pron +conj +det +verb +conj +adv +verb +adj +verb +noun +verb +noun +prep +det +noun +prep +noun +pron +verb +det +noun +conj +adj +verb +conj +verb +det +noun +det +noun +pron +adj +conj +verb +adj +det +noun +pron +prep +det +noun +det +noun +verb +prep +noun +conj +noun +pron +noun +adv +verb +verb +verb +pron +verb +pron +adj +conj +verb +prep +det +noun +verb +prep +pron +adj +det +adj +verb +pron +conj +verb +verb +det +noun +pron +conj +det +verb +prep +det +noun +verb +pron +adv +verb +conj +adj +verb +pron +verb +pron +conj +verb +det +noun +pron +conj +det +noun +pron +verb +pron +conj +det +noun +verb +prep +pron +conj +adv +pron +adv +adj +verb +prep +det +noun +verb +adj +det +noun +verb +pron +noun +adv +verb +conj +adv +verb +adj +conj +prep +det +noun +pron +verb +conj +adv +pron +verb +prep +pron +verb +conj +verb +noun +conj +verb +det +noun +pron +conj +adv +pron +verb +noun +prep +noun +verb +verb +prep +pron +noun +conj +verb +pron +verb +conj +verb +conj +adj +verb +conj +verb +conj +det +noun +pron +verb +pron +conj +verb +conj +verb +pron +det +noun +verb +pron +conj +verb +det +verb +pron +noun +verb +verb +pron +adv +prep +det +noun +pron +noun +verb +conj +verb +prep +det +noun +det +verb +verb +det +noun +verb +conj +verb +prep +det +adv +verb +prep +noun +verb +noun +conj +verb +pron +det +noun +pron +conj +noun +adj +conj +conj +verb +det +noun +det +noun +conj +verb +verb +verb +adj +noun +det +noun +pron +conj +pron +verb +noun +conj +noun +det +noun +adj +verb +prep +pron +conj +verb +pron +det +noun +verb +prep +pron +conj +verb +pron +adv +verb +conj +verb +verb +det +noun +conj +det +verb +verb +conj +verb +noun +pron +verb +verb +conj +verb +det +adj +conj +verb +verb +conj +verb +pron +det +noun +pron +conj +verb +noun +adj +conj +verb +det +noun +verb +conj +noun +adj +verb +prep +pron +conj +conj +verb +det +noun +det +noun +pron +conj +verb +det +noun +pron +prep +pron +prep +adj +det +noun +conj +adj +det +adj +conj +verb +noun +det +noun +pron +prep +adj +pron +conj +verb +num +pron +det +noun +pron +det +noun +verb +prep +det +noun +verb +pron +verb +det +verb +conj +adj +verb +conj +verb +prep +pron +det +noun +verb +noun +det +noun +verb +pron +prep +pron +verb +pron +verb +det +verb +conj +adj +verb +prep +pron +det +noun +verb +adj +prep +noun +conj +noun +conj +noun +adj +conj +adj +adj +verb +verb +conj +verb +verb +pron +verb +verb +noun +pron +verb +conj +verb +adj +verb +adj +verb +adj +verb +conj +adj +verb +adj +verb +adj +verb +conj +adj +verb +ptcl +pron +adv +verb +prep +pron +conj +verb +det +noun +noun +verb +verb +prep +det +noun +prep +noun +pron +verb +verb +prep +det +adj +noun +prep +noun +verb +conj +pron +verb +verb +noun +prep +adj +noun +verb +verb +det +prep +noun +adj +conj +noun +verb +prep +det +adj +verb +conj +pron +verb +verb +noun +ptcl +verb +pron +conj +adj +noun +pron +verb +prep +pron +verb +verb +verb +det +noun +pron +prep +noun +pron +pron +verb +det +noun +pron +prep +pron +verb +pron +adj +prep +adj +noun +noun +adj +verb +conj +det +adj +prep +det +noun +det +noun +adj +pron +verb +conj +adj +det +noun +conj +det +noun +verb +verb +det +noun +verb +det +noun +noun +conj +det +noun +conj +det +adj +det +noun +det +noun +verb +prep +pron +adv +verb +prep +pron +conj +pron +verb +det +noun +det +noun +pron +conj +pron +verb +adj +adj +verb +noun +det +prep +noun +verb +conj +verb +pron +pron +verb +verb +pron +conj +adv +verb +verb +conj +adv +verb +conj +verb +noun +det +noun +adv +verb +noun +conj +verb +noun +conj +verb +noun +verb +verb +det +noun +det +noun +verb +conj +verb +conj +verb +verb +noun +noun +conj +noun +adj +noun +conj +adj +conj +verb +det +noun +prep +adj +det +noun +pron +conj +verb +pron +det +noun +pron +conj +verb +prep +pron +conj +verb +prep +det +noun +det +noun +verb +conj +verb +noun +pron +verb +prep +det +noun +adj +conj +verb +conj +verb +prep +det +noun +det +noun +verb +noun +noun +conj +verb +adv +prep +det +noun +pron +verb +verb +det +noun +verb +det +noun +pron +conj +det +noun +det +noun +pron +verb +conj +verb +det +noun +pron +conj +verb +det +noun +conj +verb +det +noun +det +verb +pron +verb +prep +pron +verb +conj +pron +verb +noun +ptcl +verb +pron +conj +adj +det +noun +pron +verb +pron +conj +adj +verb +conj +verb +det +noun +verb +prep +pron +noun +verb +pron +pron +verb +conj +det +noun +verb +verb +num +noun +verb +noun +pron +det +adj +verb +noun +adj +conj +det +adj +num +adv +verb +pron +verb +adj +verb +conj +pron +pron +adj +verb +pron +verb +noun +verb +verb +conj +pron +det +adj +verb +conj +det +verb +pron +adv +verb +conj +verb +prep +det +noun +det +noun +verb +verb +pron +det +noun +verb +prep +pron +det +noun +noun +pron +prep +noun +adv +verb +conj +pron +det +noun +verb +pron +det +noun +conj +det +noun +pron +verb +noun +pron +adv +verb +conj +pron +prep +pron +verb +adv +verb +verb +pron +det +noun +noun +det +noun +pron +adv +verb +conj +pron +noun +verb +det +noun +pron +pron +prep +verb +pron +verb +det +noun +pron +det +adj +conj +verb +adj +conj +pron +adj +verb +adj +verb +conj +verb +pron +verb +pron +det +noun +conj +verb +det +verb +verb +prep +pron +pron +pron +verb +pron +adv +noun +verb +conj +verb +prep +det +noun +det +noun +pron +verb +pron +verb +prep +noun +conj +verb +prep +det +adv +conj +pron +verb +prep +noun +conj +noun +verb +conj +verb +det +noun +det +noun +conj +prep +pron +det +num +conj +noun +pron +pron +verb +verb +prep +noun +adj +conj +noun +noun +det +verb +noun +prep +pron +noun +num +verb +conj +noun +noun +noun +noun +noun +conj +noun +conj +adj +adj +pron +verb +pron +prep +det +verb +pron +conj +verb +noun +adj +conj +det +prep +noun +verb +prep +pron +verb +prep +noun +verb +det +verb +det +verb +det +noun +pron +conj +prep +det +verb +pron +pron +conj +verb +prep +det +noun +conj +verb +conj +det +noun +det +noun +verb +pron +conj +adj +verb +prep +det +noun +conj +verb +verb +prep +det +adv +verb +noun +conj +adj +verb +prep +adj +det +noun +conj +verb +det +noun +verb +pron +conj +adj +verb +prep +det +noun +det +adj +conj +verb +verb +noun +adj +pron +verb +verb +det +verb +noun +verb +verb +conj +verb +pron +det +noun +pron +pron +verb +pron +det +noun +conj +det +verb +pron +verb +verb +det +noun +det +noun +det +noun +conj +det +adj +prep +noun +conj +verb +adv +verb +conj +verb +adv +verb +conj +verb +pron +det +noun +det +noun +verb +det +noun +det +noun +conj +det +prep +det +noun +verb +det +verb +adv +verb +det +adj +conj +verb +det +noun +prep +det +noun +pron +conj +adv +verb +verb +conj +det +prep +det +noun +pron +conj +verb +prep +noun +verb +det +noun +conj +pron +noun +adv +verb +pron +prep +noun +verb +conj +prep +noun +noun +verb +conj +det +prep +det +noun +verb +pron +verb +det +verb +conj +prep +noun +conj +noun +conj +noun +det +noun +verb +verb +conj +adv +verb +conj +det +prep +det +adj +noun +pron +verb +pron +prep +noun +adj +conj +adj +verb +det +noun +verb +conj +verb +prep +noun +conj +adj +noun +verb +verb +pron +noun +conj +prep +noun +verb +conj +prep +noun +verb +conj +det +verb +verb +det +noun +conj +adv +verb +adj +pron +adv +adj +verb +conj +adj +pron +adv +adv +verb +conj +prep +adj +verb +conj +verb +adv +verb +conj +ptcl +pron +verb +verb +pron +conj +ptcl +pron +adv +verb +adv +pron +verb +verb +verb +prep +pron +conj +verb +prep +pron +det +noun +conj +det +noun +pron +conj +adv +verb +verb +pron +prep +det +noun +conj +verb +pron +det +noun +pron +conj +det +noun +pron +verb +adv +verb +pron +verb +conj +det +verb +verb +prep +pron +noun +pron +conj +noun +pron +pron +verb +det +det +noun +det +noun +verb +conj +verb +conj +verb +prep +adj +det +noun +conj +pron +verb +prep +noun +conj +det +noun +pron +conj +verb +prep +pron +verb +prep +det +adv +det +noun +conj +verb +conj +verb +pron +verb +conj +verb +noun +noun +prep +det +noun +conj +verb +conj +verb +conj +verb +verb +pron +verb +noun +noun +verb +conj +det +verb +verb +det +noun +conj +det +noun +det +noun +conj +verb +conj +verb +noun +conj +verb +pron +adv +det +noun +pron +conj +verb +verb +verb +prep +pron +conj +pron +pron +verb +conj +adv +det +noun +conj +det +noun +verb +conj +verb +pron +conj +verb +prep +det +noun +det +noun +pron +verb +prep +det +noun +conj +pron +verb +prep +det +noun +verb +noun +pron +prep +det +noun +verb +noun +conj +noun +adj +adv +verb +noun +conj +prep +noun +adv +verb +conj +prep +det +noun +conj +verb +det +noun +verb +verb +pron +conj +noun +adj +verb +pron +pron +conj +pron +noun +noun +det +noun +det +adj +verb +pron +adv +pron +verb +conj +verb +det +noun +det +adj +verb +prep +det +noun +conj +adj +noun +verb +pron +conj +verb +noun +conj +noun +verb +conj +verb +det +noun +verb +prep +det +noun +prep +det +adj +conj +verb +pron +det +noun +pron +pron +noun +verb +conj +det +verb +noun +conj +verb +noun +adj +prep +pron +conj +verb +pron +conj +adv +verb +pron +prep +det +noun +verb +conj +verb +adv +noun +noun +adj +verb +prep +det +noun +conj +verb +pron +conj +verb +pron +prep +pron +verb +conj +verb +pron +conj +det +noun +verb +prep +det +noun +verb +prep +det +noun +conj +verb +det +noun +prep +det +noun +prep +det +noun +conj +verb +conj +det +verb +verb +det +verb +verb +conj +verb +prep +det +noun +conj +prep +det +noun +conj +verb +verb +det +verb +conj +verb +prep +det +noun +conj +verb +verb +det +noun +prep +pron +det +noun +verb +verb +conj +verb +prep +det +noun +det +noun +conj +verb +conj +verb +pron +det +verb +adv +verb +det +verb +conj +verb +adj +det +noun +det +adj +det +noun +pron +verb +prep +pron +conj +noun +adj +verb +conj +pron +verb +prep +noun +verb +conj +verb +pron +det +noun +prep +pron +verb +det +noun +verb +prep +pron +conj +verb +pron +verb +verb +prep +det +noun +pron +conj +verb +pron +pron +verb +det +noun +conj +verb +prep +adj +det +noun +verb +pron +verb +pron +det +noun +conj +prep +det +verb +det +noun +verb +pron +det +noun +conj +adj +verb +verb +pron +conj +verb +verb +noun +pron +noun +noun +conj +pron +noun +det +noun +verb +conj +verb +prep +det +noun +noun +verb +pron +verb +prep +det +noun +pron +conj +noun +adj +adv +noun +num +verb +pron +conj +pron +verb +conj +prep +det +verb +pron +det +noun +verb +pron +conj +noun +verb +prep +noun +noun +prep +noun +num +pron +adv +verb +prep +adj +verb +verb +adv +verb +det +noun +det +noun +pron +conj +adv +verb +det +noun +det +noun +pron +conj +verb +det +noun +pron +det +verb +pron +conj +verb +adj +verb +det +noun +noun +det +noun +verb +pron +conj +verb +conj +det +noun +verb +verb +pron +pron +conj +pron +verb +noun +verb +prep +pron +conj +det +noun +verb +conj +adv +verb +verb +verb +conj +verb +pron +prep +pron +noun +verb +pron +verb +prep +adj +det +noun +conj +conj +verb +adv +conj +det +verb +pron +noun +det +noun +pron +verb +pron +verb +prep +noun +adv +pron +verb +verb +pron +prep +det +noun +verb +conj +verb +det +noun +pron +adv +verb +det +noun +conj +det +noun +verb +verb +pron +adv +verb +adj +verb +conj +verb +conj +verb +prep +det +noun +adv +verb +verb +pron +prep +pron +conj +adv +noun +conj +noun +conj +noun +conj +det +noun +det +noun +conj +det +noun +conj +adj +verb +conj +verb +pron +conj +det +verb +adv +verb +adv +verb +conj +verb +conj +verb +pron +verb +conj +verb +conj +pron +verb +det +noun +pron +verb +verb +det +noun +verb +conj +verb +det +noun +pron +conj +verb +adv +conj +verb +pron +verb +verb +conj +verb +det +noun +pron +conj +det +verb +pron +adj +verb +det +verb +conj +verb +det +num +verb +pron +noun +conj +noun +prep +adj +det +noun +conj +noun +verb +conj +verb +pron +verb +det +noun +det +noun +conj +verb +conj +verb +prep +pron +adj +verb +prep +det +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +prep +num +noun +verb +conj +ptcl +prep +pron +noun +verb +adv +verb +conj +adv +verb +conj +ptcl +pron +adv +verb +pron +verb +prep +det +noun +pron +det +noun +prep +det +noun +pron +verb +prep +noun +prep +pron +conj +verb +verb +prep +det +noun +verb +conj +verb +adv +conj +verb +noun +det +noun +det +verb +adj +conj +verb +prep +det +verb +prep +pron +conj +noun +verb +prep +adj +conj +prep +pron +conj +noun +verb +conj +adj +conj +noun +pron +det +adj +verb +conj +verb +noun +noun +pron +verb +conj +pron +verb +pron +prep +pron +verb +pron +conj +verb +verb +pron +conj +verb +det +noun +verb +pron +pron +verb +conj +verb +pron +verb +prep +adj +prep +noun +verb +noun +conj +det +noun +verb +verb +pron +conj +verb +pron +verb +pron +prep +det +noun +det +noun +conj +det +noun +noun +verb +verb +conj +det +noun +verb +verb +conj +verb +det +num +verb +pron +verb +det +noun +conj +verb +prep +det +noun +noun +conj +noun +verb +conj +verb +noun +conj +adv +prep +adj +noun +verb +conj +verb +prep +pron +verb +pron +verb +pron +conj +det +verb +adv +verb +pron +adj +conj +noun +num +conj +noun +num +conj +ptcl +verb +pron +verb +prep +adj +det +noun +pron +noun +conj +verb +adv +adj +noun +conj +verb +prep +det +noun +pron +verb +pron +noun +adv +prep +num +conj +verb +adv +conj +verb +adj +conj +verb +det +num +noun +conj +det +num +noun +verb +prep +det +noun +verb +pron +conj +verb +conj +verb +det +noun +verb +det +noun +conj +verb +conj +verb +adj +conj +verb +det +verb +pron +noun +noun +num +conj +verb +prep +det +verb +verb +pron +prep +adj +verb +pron +det +noun +conj +verb +pron +verb +pron +pron +verb +det +noun +verb +conj +det +verb +verb +noun +det +noun +conj +adj +noun +conj +adj +conj +noun +pron +det +adj +verb +conj +verb +pron +conj +pron +pron +pron +verb +verb +conj +noun +verb +verb +det +noun +det +noun +conj +det +verb +pron +verb +adj +verb +pron +verb +conj +verb +det +noun +det +noun +adj +verb +conj +verb +prep +det +adj +conj +noun +conj +noun +conj +verb +conj +det +adj +noun +verb +conj +verb +prep +adj +conj +pron +verb +prep +pron +verb +verb +pron +conj +verb +det +noun +pron +prep +noun +conj +verb +pron +conj +ptcl +pron +verb +det +noun +pron +verb +verb +pron +conj +ptcl +pron +verb +det +noun +pron +prep +pron +pron +verb +pron +conj +pron +verb +noun +verb +det +noun +adj +conj +pron +verb +conj +verb +conj +ptcl +pron +verb +pron +conj +det +adj +noun +pron +det +noun +det +noun +verb +conj +verb +prep +det +noun +pron +conj +det +noun +conj +det +adj +noun +conj +verb +pron +adv +verb +pron +det +adv +verb +pron +adv +adv +verb +noun +conj +ptcl +verb +det +noun +det +noun +conj +verb +prep +det +noun +pron +adv +noun +num +conj +verb +noun +conj +noun +conj +noun +verb +prep +det +noun +verb +conj +verb +prep +det +verb +pron +det +noun +det +noun +pron +adj +conj +det +noun +pron +adj +verb +conj +verb +noun +num +verb +pron +pron +verb +noun +conj +noun +pron +verb +prep +noun +verb +det +noun +pron +pron +verb +prep +noun +verb +conj +det +noun +conj +det +prep +pron +verb +verb +noun +conj +verb +verb +det +noun +pron +conj +det +num +noun +det +verb +pron +conj +verb +prep +det +verb +pron +prep +pron +verb +det +noun +prep +det +noun +noun +adj +verb +pron +adv +verb +conj +verb +noun +adj +adj +pron +conj +adj +noun +conj +adj +noun +adv +verb +pron +verb +conj +pron +pron +verb +verb +noun +conj +verb +pron +conj +verb +prep +det +verb +pron +prep +det +noun +conj +noun +verb +prep +det +noun +verb +pron +verb +det +noun +pron +det +verb +pron +verb +conj +prep +det +verb +det +noun +verb +noun +adj +conj +pron +verb +conj +adj +verb +prep +pron +det +noun +adj +pron +verb +conj +verb +det +adv +noun +verb +pron +prep +det +noun +verb +pron +noun +adj +conj +verb +noun +prep +det +noun +verb +verb +noun +verb +pron +verb +prep +det +noun +pron +conj +adj +pron +verb +conj +verb +noun +verb +pron +conj +adv +verb +conj +verb +pron +prep +noun +conj +adv +verb +prep +pron +verb +pron +conj +verb +det +noun +pron +conj +verb +pron +conj +adv +verb +conj +verb +det +noun +verb +ptcl +noun +adj +conj +verb +prep +adv +verb +prep +pron +conj +verb +pron +verb +adv +det +noun +pron +conj +adv +verb +pron +verb +pron +det +noun +conj +verb +conj +verb +det +noun +det +noun +det +adj +conj +verb +det +noun +conj +verb +pron +det +noun +pron +conj +verb +adj +prep +det +noun +det +noun +conj +adj +verb +prep +adj +pron +verb +verb +prep +det +noun +pron +verb +pron +prep +det +noun +pron +det +noun +pron +conj +det +noun +det +noun +verb +verb +prep +noun +noun +conj +det +verb +det +noun +pron +conj +verb +verb +prep +pron +conj +adv +verb +pron +conj +verb +verb +pron +prep +det +noun +pron +conj +verb +prep +pron +noun +det +ptcl +pron +pron +verb +adj +conj +det +noun +verb +det +noun +det +noun +pron +verb +noun +verb +pron +prep +pron +conj +verb +pron +ptcl +pron +verb +pron +det +noun +prep +det +noun +pron +pron +verb +conj +ptcl +pron +pron +verb +verb +det +verb +pron +conj +det +adj +prep +adj +pron +verb +pron +verb +adj +conj +verb +det +noun +verb +noun +verb +pron +prep +det +noun +pron +verb +noun +conj +verb +pron +conj +adv +verb +prep +pron +conj +verb +prep +pron +noun +adv +verb +conj +pron +adv +verb +prep +pron +prep +pron +verb +conj +verb +prep +det +verb +det +noun +det +noun +pron +conj +pron +det +noun +verb +det +verb +prep +noun +conj +verb +noun +prep +noun +pron +conj +verb +verb +prep +noun +noun +conj +verb +pron +conj +adv +verb +pron +conj +det +noun +pron +verb +verb +prep +noun +conj +verb +det +noun +noun +conj +noun +verb +noun +verb +verb +noun +verb +prep +det +noun +conj +verb +pron +conj +verb +verb +pron +conj +verb +prep +adj +noun +conj +verb +pron +prep +det +noun +verb +pron +prep +pron +verb +pron +ptcl +conj +verb +conj +verb +pron +det +noun +det +noun +noun +verb +conj +det +noun +det +noun +noun +conj +det +noun +det +noun +adv +verb +adv +det +noun +verb +conj +verb +prep +adj +verb +pron +conj +det +verb +verb +pron +adv +verb +verb +det +noun +pron +conj +verb +pron +verb +det +adj +verb +det +pron +adj +conj +pron +verb +verb +det +noun +det +noun +conj +verb +adv +adj +verb +pron +noun +conj +adj +verb +pron +verb +det +prep +det +noun +pron +conj +verb +prep +pron +det +noun +adj +verb +det +noun +prep +noun +conj +verb +prep +det +adv +adj +verb +det +noun +det +noun +conj +prep +pron +verb +det +noun +adj +num +conj +verb +pron +prep +num +prep +noun +pron +prep +adj +noun +conj +noun +adv +verb +pron +verb +conj +verb +prep +pron +conj +det +noun +adj +conj +det +noun +adj +conj +verb +det +noun +det +noun +conj +noun +verb +prep +det +noun +pron +verb +verb +verb +pron +conj +noun +prep +adj +noun +adv +verb +noun +adv +noun +adv +noun +conj +adj +prep +det +noun +verb +conj +ptcl +prep +pron +noun +verb +adj +verb +noun +det +noun +pron +conj +conj +adv +verb +noun +noun +verb +prep +pron +det +noun +pron +conj +conj +adv +prep +pron +verb +conj +prep +pron +det +noun +verb +verb +conj +verb +det +prep +pron +conj +adj +det +noun +det +noun +pron +adv +verb +prep +noun +prep +noun +conj +ptcl +prep +pron +noun +verb +conj +verb +pron +verb +det +verb +pron +conj +verb +det +prep +pron +adj +conj +verb +pron +verb +prep +pron +det +noun +det +noun +conj +ptcl +prep +pron +noun +verb +conj +adv +verb +pron +verb +prep +det +noun +pron +verb +adv +det +noun +det +verb +pron +prep +det +noun +pron +prep +det +noun +verb +pron +conj +pron +verb +adv +verb +det +noun +det +noun +verb +pron +conj +noun +prep +det +noun +pron +adj +verb +conj +det +noun +pron +ptcl +pron +noun +intj +pron +noun +conj +conj +prep +noun +conj +noun +verb +det +noun +det +verb +prep +pron +ptcl +adv +prep +noun +conj +noun +verb +verb +conj +noun +conj +noun +adj +verb +prep +det +noun +conj +pron +conj +noun +ptcl +pron +prep +noun +verb +prep +det +noun +verb +det +verb +pron +pron +verb +conj +det +verb +pron +pron +verb +conj +det +pron +verb +verb +det +verb +pron +conj +verb +det +num +prep +noun +verb +noun +adv +det +noun +verb +pron +prep +det +noun +pron +conj +verb +pron +verb +det +noun +conj +noun +prep +det +noun +verb +verb +verb +pron +det +noun +det +verb +prep +noun +conj +noun +conj +prep +adj +det +noun +det +adj +conj +adj +pron +adv +adv +verb +conj +prep +pron +adv +verb +adv +det +noun +pron +verb +conj +verb +conj +det +noun +pron +verb +prep +det +noun +prep +pron +det +noun +verb +det +noun +det +adj +conj +verb +verb +pron +noun +noun +det +noun +conj +det +noun +conj +verb +pron +prep +adj +conj +adj +conj +verb +pron +adj +ptcl +det +noun +conj +adv +noun +verb +prep +pron +adj +pron +verb +prep +det +noun +pron +conj +adj +verb +pron +verb +det +noun +conj +adv +det +noun +conj +pron +verb +det +noun +conj +adv +det +noun +conj +ptcl +pron +verb +verb +det +noun +conj +verb +prep +det +noun +prep +adj +verb +adj +det +noun +det +verb +pron +verb +conj +verb +pron +conj +adj +noun +conj +noun +verb +verb +pron +pron +verb +conj +adv +verb +conj +verb +pron +verb +conj +adv +verb +conj +verb +adj +pron +verb +verb +pron +verb +noun +pron +verb +noun +adj +verb +conj +det +verb +prep +pron +prep +det +noun +pron +verb +adv +verb +conj +det +verb +verb +verb +noun +det +noun +pron +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +conj +prep +adj +det +noun +pron +conj +det +adv +pron +conj +pron +conj +verb +pron +adv +verb +pron +verb +conj +verb +conj +det +verb +verb +pron +verb +prep +det +noun +conj +pron +verb +pron +adv +verb +det +noun +verb +noun +pron +verb +prep +noun +prep +noun +conj +noun +verb +pron +adv +verb +pron +conj +noun +verb +verb +verb +adj +conj +prep +noun +noun +pron +verb +prep +det +noun +pron +conj +verb +pron +verb +conj +adv +adv +noun +prep +det +noun +verb +conj +verb +verb +conj +noun +pron +verb +verb +prep +pron +conj +verb +verb +conj +verb +verb +det +noun +pron +verb +noun +conj +noun +conj +verb +pron +prep +det +adj +noun +verb +pron +prep +noun +conj +verb +pron +conj +prep +det +adv +verb +num +noun +verb +det +noun +conj +verb +verb +pron +conj +pron +ptcl +pron +verb +pron +prep +det +verb +pron +verb +pron +verb +pron +pron +pron +det +adj +verb +adv +det +verb +prep +det +noun +conj +det +verb +det +verb +det +noun +prep +pron +conj +verb +pron +det +noun +verb +conj +pron +verb +adv +conj +prep +det +verb +pron +pron +verb +prep +noun +pron +conj +noun +pron +noun +noun +verb +pron +prep +det +noun +conj +pron +verb +noun +verb +noun +pron +adv +verb +prep +det +noun +det +noun +verb +det +noun +pron +conj +det +noun +verb +prep +adj +noun +conj +verb +verb +noun +adv +verb +pron +conj +det +noun +pron +adj +pron +verb +verb +conj +verb +pron +conj +pron +verb +conj +verb +verb +pron +det +noun +noun +noun +verb +conj +verb +prep +adj +conj +adj +noun +verb +ptcl +adj +conj +noun +det +adj +noun +verb +pron +adv +verb +pron +conj +verb +prep +det +verb +verb +pron +prep +noun +pron +conj +verb +verb +pron +det +noun +pron +prep +pron +noun +verb +pron +verb +conj +adv +noun +verb +det +noun +pron +conj +verb +pron +conj +verb +verb +noun +verb +det +noun +pron +verb +det +noun +pron +det +noun +pron +det +adj +verb +pron +det +prep +noun +conj +verb +pron +det +noun +pron +conj +adv +pron +verb +adj +verb +pron +conj +adv +verb +pron +prep +noun +conj +verb +prep +pron +pron +prep +pron +verb +adj +conj +verb +prep +pron +noun +conj +verb +pron +noun +verb +pron +adj +noun +conj +adj +pron +verb +prep +noun +prep +pron +conj +adv +verb +pron +verb +pron +pron +adv +verb +verb +adv +pron +noun +verb +adv +det +noun +verb +conj +det +noun +pron +prep +pron +prep +det +noun +verb +adv +verb +verb +verb +pron +verb +pron +conj +adv +adv +verb +pron +verb +prep +det +verb +adj +pron +ptcl +prep +det +noun +pron +verb +verb +pron +pron +verb +pron +pron +verb +verb +conj +verb +pron +verb +conj +verb +verb +conj +verb +pron +conj +adj +det +verb +verb +conj +det +verb +verb +conj +det +verb +verb +conj +pron +prep +pron +det +noun +verb +det +noun +noun +ptcl +prep +noun +noun +pron +verb +conj +adv +verb +noun +verb +pron +noun +conj +conj +pron +adj +verb +verb +noun +adj +verb +det +noun +pron +pron +adv +det +noun +det +prep +noun +verb +noun +adj +det +verb +pron +conj +verb +verb +noun +conj +pron +verb +adj +conj +verb +det +noun +verb +verb +det +adj +conj +verb +det +noun +conj +pron +prep +pron +verb +prep +noun +det +noun +det +noun +verb +det +noun +conj +adj +verb +noun +prep +noun +verb +prep +pron +conj +pron +verb +pron +det +noun +verb +pron +adj +noun +prep +pron +verb +verb +conj +noun +prep +noun +verb +conj +conj +adv +det +noun +prep +pron +verb +adv +verb +det +noun +pron +conj +verb +prep +noun +verb +pron +det +noun +conj +conj +pron +prep +noun +verb +det +noun +det +noun +pron +prep +pron +verb +prep +pron +pron +pron +noun +verb +conj +conj +prep +noun +noun +pron +verb +det +noun +conj +verb +prep +pron +det +noun +det +noun +conj +det +adj +verb +verb +det +pron +noun +prep +noun +verb +det +verb +pron +conj +conj +adj +pron +verb +verb +pron +det +noun +pron +verb +prep +pron +verb +conj +det +noun +pron +verb +det +adv +verb +prep +pron +prep +pron +verb +conj +det +adv +verb +prep +pron +verb +conj +det +adj +noun +verb +prep +det +noun +verb +prep +adj +noun +verb +noun +conj +adv +verb +verb +verb +prep +det +noun +pron +adv +verb +conj +verb +verb +verb +conj +verb +adv +verb +conj +verb +adj +noun +adj +pron +num +conj +verb +verb +adv +conj +verb +det +adj +det +noun +pron +adj +det +adj +conj +verb +prep +det +verb +pron +pron +verb +noun +pron +noun +prep +det +noun +verb +pron +adj +det +noun +det +verb +pron +conj +noun +pron +verb +conj +pron +verb +ptcl +adj +det +verb +det +noun +det +noun +conj +verb +conj +det +noun +verb +verb +verb +det +noun +pron +noun +adj +verb +noun +verb +conj +noun +adv +verb +pron +conj +adv +det +noun +noun +conj +conj +verb +noun +det +noun +noun +adv +verb +adv +det +noun +det +noun +det +noun +pron +noun +noun +verb +prep +det +noun +prep +det +noun +det +noun +pron +conj +verb +pron +conj +verb +prep +det +noun +det +noun +verb +det +noun +noun +conj +verb +adj +noun +adv +noun +noun +verb +prep +det +noun +prep +det +noun +pron +conj +verb +pron +conj +verb +prep +det +noun +noun +conj +verb +adj +noun +adv +adj +noun +verb +prep +noun +verb +conj +prep +det +noun +conj +prep +det +noun +conj +det +verb +det +noun +verb +det +noun +det +noun +verb +det +noun +pron +conj +det +noun +pron +adj +verb +adv +adj +det +noun +pron +adj +verb +conj +conj +adj +verb +adv +det +noun +pron +adj +conj +verb +conj +det +noun +det +prep +pron +noun +verb +conj +conj +det +noun +pron +adj +adj +adv +verb +noun +pron +adj +verb +adj +adj +conj +conj +det +noun +det +noun +verb +pron +conj +prep +det +verb +verb +pron +noun +conj +verb +prep +pron +conj +verb +verb +conj +det +noun +verb +verb +conj +adv +adj +verb +prep +det +noun +conj +verb +det +noun +prep +pron +adv +pron +det +noun +det +adv +det +noun +conj +det +noun +verb +conj +det +adv +pron +verb +noun +conj +noun +adj +ptcl +det +verb +det +adv +adv +det +adv +verb +conj +det +verb +verb +noun +conj +verb +adj +adj +pron +verb +conj +ptcl +pron +det +noun +conj +verb +det +noun +conj +det +noun +conj +adj +noun +conj +verb +det +noun +conj +det +noun +det +noun +conj +verb +pron +verb +pron +adv +verb +ptcl +pron +det +noun +conj +verb +det +noun +prep +det +noun +conj +det +noun +prep +det +noun +ptcl +pron +conj +verb +conj +det +noun +det +adj +conj +det +noun +det +verb +adv +adv +verb +conj +verb +pron +det +adj +verb +pron +noun +pron +verb +adv +pron +verb +conj +det +verb +adv +pron +det +adj +intj +conj +verb +det +noun +noun +adj +conj +pron +adj +det +noun +pron +adv +verb +det +noun +ptcl +pron +conj +verb +det +noun +det +noun +conj +det +noun +pron +verb +pron +conj +noun +verb +conj +verb +det +noun +det +noun +pron +conj +conj +pron +verb +pron +conj +pron +verb +prep +pron +adv +det +noun +det +noun +verb +verb +prep +pron +noun +conj +noun +conj +prep +pron +verb +conj +verb +conj +verb +det +noun +adj +det +noun +det +verb +prep +noun +noun +prep +det +noun +pron +prep +noun +noun +prep +noun +noun +det +verb +prep +det +noun +conj +det +noun +ptcl +verb +pron +verb +prep +det +noun +pron +ptcl +pron +det +adj +conj +verb +det +noun +det +noun +pron +adv +verb +conj +det +verb +verb +conj +verb +pron +verb +det +noun +conj +det +noun +adv +verb +conj +verb +pron +prep +adj +verb +pron +verb +pron +prep +det +noun +pron +prep +pron +verb +det +noun +det +noun +conj +verb +pron +verb +verb +prep +det +noun +pron +adj +verb +pron +prep +det +noun +pron +verb +noun +det +noun +conj +adj +verb +verb +pron +adv +verb +conj +adj +pron +adv +verb +prep +pron +pron +prep +det +noun +verb +prep +det +noun +verb +conj +pron +prep +det +noun +verb +prep +det +noun +verb +prep +det +noun +conj +verb +pron +det +adj +pron +adv +verb +prep +det +verb +det +noun +conj +prep +pron +adv +verb +adj +pron +verb +conj +verb +pron +pron +verb +verb +det +prep +det +verb +verb +noun +verb +prep +det +noun +ptcl +verb +pron +pron +verb +ptcl +num +noun +verb +noun +num +conj +adj +prep +pron +adv +verb +verb +prep +det +noun +conj +adv +det +noun +det +noun +pron +adj +verb +adv +verb +adj +noun +verb +conj +verb +pron +adj +ptcl +pron +verb +prep +pron +prep +det +noun +adv +det +noun +det +noun +verb +prep +pron +prep +det +noun +det +noun +conj +det +verb +pron +prep +det +noun +verb +prep +det +noun +det +noun +conj +adj +pron +verb +noun +prep +det +noun +det +noun +verb +pron +conj +det +prep +det +adj +noun +verb +adv +verb +conj +conj +verb +pron +prep +det +noun +conj +det +noun +conj +det +noun +adv +verb +adv +conj +pron +verb +conj +pron +verb +conj +det +adj +noun +verb +pron +prep +pron +det +noun +pron +verb +verb +conj +verb +pron +prep +det +noun +pron +noun +verb +det +noun +pron +verb +prep +pron +det +noun +conj +det +verb +pron +noun +pron +pron +verb +noun +conj +noun +prep +pron +conj +verb +prep +pron +verb +conj +verb +prep +adj +noun +conj +adv +prep +det +verb +pron +det +noun +pron +verb +prep +det +verb +pron +conj +verb +noun +prep +pron +verb +noun +pron +adj +det +noun +verb +conj +verb +prep +pron +verb +pron +verb +conj +adv +verb +adv +verb +det +noun +pron +conj +verb +pron +verb +verb +pron +det +noun +conj +adj +verb +conj +verb +adv +adj +det +noun +conj +det +adj +pron +conj +verb +det +noun +pron +noun +verb +adj +adj +verb +prep +noun +adj +verb +verb +verb +verb +conj +verb +pron +det +noun +adj +pron +det +noun +det +noun +pron +verb +prep +pron +conj +pron +verb +pron +verb +adv +det +verb +pron +conj +adv +prep +noun +verb +conj +verb +prep +det +noun +pron +prep +pron +verb +pron +adv +verb +det +noun +pron +verb +conj +det +noun +pron +verb +conj +det +noun +adj +verb +det +noun +conj +det +noun +det +noun +verb +det +noun +conj +conj +verb +conj +verb +pron +adv +verb +noun +conj +noun +conj +det +noun +verb +pron +pron +adv +pron +verb +det +noun +conj +pron +prep +pron +verb +verb +prep +det +noun +pron +verb +noun +conj +conj +adv +adj +verb +pron +prep +det +adj +verb +verb +det +noun +adv +conj +verb +conj +verb +conj +verb +pron +adv +noun +prep +adj +det +noun +pron +verb +conj +adj +pron +conj +conj +prep +noun +det +noun +verb +adv +conj +adv +prep +noun +verb +det +noun +adv +verb +pron +adv +pron +adj +adv +pron +adv +verb +pron +verb +conj +pron +verb +conj +adv +verb +conj +pron +adj +det +noun +det +noun +verb +conj +pron +det +noun +verb +conj +verb +pron +conj +verb +det +noun +pron +conj +pron +verb +pron +adv +verb +det +adj +noun +conj +verb +det +noun +pron +verb +pron +det +noun +verb +det +verb +pron +conj +verb +noun +verb +pron +noun +adv +verb +noun +adj +prep +det +noun +adv +noun +adv +verb +conj +noun +verb +conj +conj +verb +det +noun +pron +adv +adv +det +noun +pron +verb +verb +pron +det +noun +verb +conj +det +noun +verb +conj +pron +adj +noun +verb +det +noun +pron +adv +verb +prep +det +noun +conj +verb +conj +verb +adv +verb +pron +adj +det +noun +pron +pron +verb +verb +det +noun +verb +ptcl +verb +pron +conj +verb +conj +verb +pron +conj +verb +verb +pron +conj +prep +det +adj +conj +prep +det +adj +noun +verb +conj +verb +adv +adj +verb +pron +conj +pron +verb +adv +conj +verb +det +noun +pron +noun +det +noun +verb +ptcl +adv +verb +verb +det +noun +pron +adv +pron +verb +adj +conj +pron +noun +adv +verb +det +noun +det +noun +verb +conj +verb +det +noun +noun +prep +pron +det +noun +pron +verb +conj +adv +prep +adj +conj +verb +det +noun +conj +pron +verb +det +adj +noun +det +adj +pron +verb +det +noun +prep +det +noun +pron +det +verb +prep +noun +det +noun +adj +det +noun +pron +pron +verb +adv +verb +det +noun +pron +verb +adv +verb +pron +conj +prep +adj +det +verb +pron +verb +pron +conj +conj +verb +det +noun +pron +prep +det +noun +pron +verb +det +noun +pron +verb +conj +verb +verb +det +noun +conj +det +noun +conj +verb +conj +verb +conj +verb +verb +det +noun +det +noun +pron +prep +noun +pron +adv +verb +conj +prep +noun +pron +adv +verb +conj +verb +pron +conj +det +noun +pron +prep +det +adj +verb +conj +pron +det +noun +det +verb +det +noun +det +noun +pron +conj +adv +verb +conj +verb +prep +det +noun +pron +verb +adj +conj +det +adv +verb +conj +verb +adj +noun +verb +adj +conj +adj +pron +verb +adj +adj +verb +prep +pron +conj +pron +verb +adj +adj +verb +pron +verb +noun +verb +prep +det +noun +conj +pron +verb +conj +adv +verb +conj +noun +verb +verb +conj +adv +verb +prep +pron +verb +verb +conj +verb +noun +verb +prep +det +noun +verb +pron +ptcl +conj +conj +noun +conj +verb +verb +prep +det +adv +num +prep +adj +noun +adj +prep +adj +conj +num +prep +adj +verb +noun +prep +noun +conj +noun +prep +noun +noun +prep +noun +conj +noun +prep +det +noun +noun +prep +det +noun +pron +conj +noun +prep +det +noun +conj +verb +adv +det +noun +conj +verb +noun +verb +prep +noun +adv +verb +conj +noun +verb +conj +verb +adv +conj +conj +noun +verb +verb +conj +noun +verb +conj +verb +noun +det +noun +det +noun +conj +det +noun +verb +verb +conj +det +noun +pron +adv +adv +verb +conj +pron +adv +prep +pron +adv +verb +det +adj +conj +conj +verb +prep +det +noun +pron +prep +noun +prep +det +noun +verb +noun +verb +prep +pron +ptcl +adv +verb +pron +prep +det +noun +conj +det +noun +pron +verb +det +noun +conj +det +noun +pron +verb +prep +noun +verb +pron +adv +adv +verb +adv +conj +adv +det +adj +noun +verb +conj +verb +pron +prep +pron +det +noun +verb +pron +prep +det +noun +pron +det +noun +noun +verb +prep +det +noun +pron +conj +verb +verb +pron +verb +conj +det +noun +pron +adj +prep +adj +det +noun +verb +conj +pron +verb +ptcl +verb +pron +conj +conj +adv +verb +adj +adv +verb +conj +pron +det +num +num +prep +pron +verb +det +noun +prep +det +noun +conj +verb +pron +verb +conj +pron +noun +verb +prep +adj +det +noun +det +verb +noun +ptcl +verb +pron +conj +conj +adv +verb +adj +adv +verb +conj +verb +pron +det +noun +noun +verb +pron +verb +prep +det +noun +pron +conj +verb +verb +noun +prep +pron +conj +adv +verb +conj +verb +prep +det +noun +verb +adj +noun +prep +pron +verb +verb +noun +prep +det +noun +pron +conj +adv +verb +verb +pron +conj +pron +adv +det +noun +verb +conj +det +verb +verb +pron +noun +verb +pron +adv +pron +det +noun +prep +pron +verb +prep +pron +conj +verb +noun +conj +conj +verb +noun +prep +det +verb +conj +conj +adv +verb +pron +conj +verb +verb +prep +adj +det +noun +prep +det +noun +conj +verb +noun +noun +noun +verb +noun +num +num +conj +verb +verb +conj +adv +verb +verb +prep +det +adj +conj +verb +pron +det +noun +verb +conj +verb +pron +noun +verb +det +noun +pron +conj +verb +pron +det +noun +conj +adv +verb +conj +verb +det +noun +conj +verb +det +noun +verb +conj +det +noun +verb +det +noun +verb +det +noun +conj +num +noun +verb +prep +pron +verb +verb +conj +prep +pron +verb +verb +conj +adv +det +noun +det +noun +conj +verb +pron +det +noun +conj +verb +noun +ptcl +adj +pron +det +noun +verb +det +noun +pron +conj +det +noun +prep +det +noun +conj +verb +verb +conj +verb +pron +noun +noun +verb +pron +verb +det +noun +num +conj +num +noun +verb +prep +det +noun +pron +det +noun +det +noun +ptcl +verb +conj +pron +verb +pron +verb +adj +det +verb +pron +conj +adj +det +noun +verb +prep +adj +det +adj +det +verb +prep +pron +conj +verb +pron +adj +verb +det +noun +det +noun +conj +pron +verb +pron +adj +verb +noun +noun +pron +verb +noun +verb +prep +noun +pron +conj +verb +conj +verb +prep +noun +conj +det +noun +det +noun +verb +prep +det +noun +pron +conj +adv +verb +pron +verb +det +noun +det +noun +adj +verb +noun +pron +verb +noun +verb +prep +noun +noun +adj +prep +pron +verb +adj +conj +verb +prep +noun +conj +noun +verb +conj +noun +verb +prep +noun +conj +verb +pron +pron +noun +ptcl +adj +det +verb +conj +det +verb +prep +pron +verb +verb +prep +det +adj +noun +conj +verb +pron +adj +verb +verb +conj +adv +verb +prep +ptcl +pron +verb +det +noun +conj +verb +det +noun +conj +verb +adv +verb +conj +verb +det +noun +verb +noun +verb +pron +conj +verb +verb +pron +adv +verb +pron +adv +verb +adv +verb +verb +verb +prep +pron +conj +verb +conj +prep +det +noun +pron +verb +conj +verb +verb +pron +adv +verb +adv +verb +verb +prep +pron +adj +noun +noun +adv +verb +det +noun +conj +det +noun +det +noun +conj +verb +noun +conj +noun +conj +noun +conj +adj +det +noun +prep +det +noun +det +noun +conj +pron +verb +adv +conj +verb +prep +noun +conj +noun +conj +prep +noun +conj +noun +conj +verb +prep +det +noun +det +noun +conj +verb +verb +adj +pron +verb +adj +conj +verb +adj +pron +verb +adj +prep +pron +det +noun +verb +pron +noun +verb +pron +verb +conj +verb +adv +conj +noun +verb +pron +verb +conj +verb +pron +verb +verb +det +noun +pron +verb +verb +noun +conj +noun +verb +adv +conj +adv +conj +det +adj +verb +conj +verb +pron +adv +conj +adv +conj +det +verb +verb +conj +adv +verb +noun +verb +prep +noun +noun +noun +det +verb +det +noun +conj +verb +det +verb +prep +pron +adv +verb +verb +det +noun +pron +pron +noun +noun +det +pron +noun +prep +det +noun +conj +adv +verb +verb +verb +pron +det +noun +pron +conj +verb +pron +adv +adv +verb +pron +conj +verb +conj +verb +verb +det +verb +prep +noun +noun +conj +verb +prep +det +verb +pron +prep +noun +pron +det +noun +det +noun +noun +verb +noun +conj +pron +verb +verb +pron +conj +verb +noun +pron +adj +verb +prep +pron +conj +verb +det +noun +verb +prep +det +adj +conj +noun +verb +verb +det +noun +verb +conj +adv +conj +det +verb +conj +verb +verb +pron +conj +verb +conj +prep +pron +verb +pron +pron +noun +conj +noun +prep +noun +verb +conj +ptcl +adv +verb +pron +prep +noun +det +noun +conj +adv +verb +verb +prep +pron +conj +verb +prep +det +verb +noun +verb +conj +det +noun +verb +verb +prep +pron +conj +verb +prep +pron +prep +noun +adv +verb +prep +det +noun +ptcl +adv +adj +pron +verb +verb +prep +pron +conj +verb +det +pron +conj +pron +verb +verb +pron +verb +pron +noun +conj +adv +verb +prep +noun +det +adj +noun +verb +conj +conj +verb +verb +verb +prep +det +adj +noun +conj +conj +verb +det +verb +pron +verb +pron +noun +verb +adj +adv +verb +pron +noun +prep +adj +det +verb +pron +conj +adj +det +verb +pron +verb +conj +det +verb +pron +verb +conj +verb +adv +det +verb +pron +conj +verb +noun +conj +noun +adv +verb +det +adj +pron +conj +det +noun +pron +conj +det +adj +pron +conj +noun +adj +ptcl +adv +adv +pron +verb +pron +conj +verb +noun +pron +conj +conj +noun +verb +verb +adj +adj +adj +adj +conj +adj +verb +conj +adv +verb +verb +pron +conj +verb +pron +prep +det +noun +det +adj +conj +pron +det +verb +verb +pron +verb +pron +adj +pron +verb +noun +prep +det +noun +det +noun +conj +det +verb +pron +noun +pron +verb +noun +adj +conj +verb +adj +conj +verb +det +noun +pron +det +noun +det +noun +verb +det +verb +verb +conj +adv +adj +verb +conj +verb +prep +adj +adj +verb +det +adj +verb +pron +noun +verb +conj +verb +noun +verb +verb +pron +verb +pron +verb +pron +verb +conj +adj +verb +noun +noun +num +verb +conj +verb +verb +pron +verb +pron +verb +pron +verb +conj +adj +verb +noun +verb +conj +prep +pron +adv +verb +verb +conj +verb +det +noun +verb +det +noun +pron +pron +adv +verb +det +noun +verb +det +noun +pron +verb +adv +prep +det +noun +conj +noun +det +noun +conj +det +adj +conj +adj +conj +adj +conj +adj +verb +adv +conj +verb +det +noun +noun +verb +pron +verb +conj +adv +noun +verb +conj +verb +det +noun +prep +det +noun +verb +prep +det +noun +conj +noun +conj +verb +verb +conj +verb +pron +det +noun +conj +verb +pron +conj +adj +det +noun +pron +det +verb +verb +pron +det +noun +conj +verb +pron +noun +adj +conj +verb +verb +prep +pron +conj +pron +verb +prep +pron +conj +adv +verb +det +noun +pron +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +adv +adv +det +noun +pron +adv +verb +verb +pron +noun +pron +adv +verb +det +noun +pron +conj +verb +prep +pron +adv +verb +verb +pron +noun +conj +ptcl +pron +prep +pron +verb +noun +verb +adj +verb +verb +det +noun +ptcl +verb +prep +noun +conj +ptcl +adv +verb +pron +noun +conj +adv +verb +verb +adj +det +verb +verb +pron +verb +verb +conj +pron +det +noun +verb +verb +conj +adv +verb +verb +conj +ptcl +pron +noun +verb +adj +noun +verb +prep +noun +verb +adj +verb +ptcl +adj +verb +prep +num +noun +verb +det +prep +num +noun +verb +prep +pron +conj +conj +adv +adv +pron +adv +verb +noun +verb +verb +det +prep +noun +conj +adv +adj +prep +pron +pron +adv +verb +adj +det +pron +verb +adv +verb +verb +pron +noun +conj +adj +det +noun +conj +conj +adv +det +noun +verb +prep +pron +verb +conj +prep +noun +conj +prep +noun +adj +verb +adv +verb +pron +det +verb +noun +verb +verb +conj +verb +verb +pron +adj +det +noun +conj +det +adj +verb +pron +conj +verb +conj +det +noun +conj +det +noun +verb +conj +pron +adj +verb +conj +verb +pron +conj +verb +prep +pron +det +noun +pron +verb +pron +noun +prep +pron +verb +num +noun +conj +verb +prep +pron +adj +ptcl +verb +det +num +num +prep +det +adj +conj +verb +prep +det +verb +conj +verb +pron +conj +verb +verb +prep +det +noun +pron +verb +conj +verb +prep +det +noun +verb +det +adj +conj +det +noun +verb +pron +verb +pron +conj +verb +det +noun +pron +det +verb +verb +pron +conj +adv +noun +prep +det +noun +verb +prep +adj +adj +verb +conj +prep +num +num +adj +pron +adv +noun +noun +verb +conj +pron +noun +noun +num +verb +conj +verb +noun +adj +ptcl +verb +noun +conj +verb +det +noun +conj +verb +adv +prep +pron +verb +conj +verb +verb +det +noun +conj +noun +verb +verb +pron +conj +verb +det +noun +pron +verb +adv +verb +pron +verb +noun +prep +det +noun +det +noun +prep +adj +adj +verb +conj +verb +noun +pron +verb +num +noun +conj +verb +det +adj +pron +det +noun +noun +verb +pron +det +verb +noun +det +noun +conj +det +verb +pron +det +noun +conj +prep +adv +adj +noun +verb +adj +det +adj +noun +verb +prep +noun +adj +conj +adv +verb +det +noun +pron +verb +adv +conj +verb +pron +adj +verb +noun +adj +prep +det +noun +pron +conj +pron +verb +verb +conj +verb +verb +adj +det +noun +det +noun +pron +conj +verb +pron +prep +det +noun +pron +verb +noun +conj +verb +verb +det +noun +pron +prep +det +noun +pron +verb +det +noun +conj +adj +verb +pron +conj +prep +pron +verb +verb +pron +adj +det +noun +pron +verb +noun +conj +pron +noun +adv +verb +verb +verb +prep +det +noun +pron +conj +verb +pron +noun +verb +prep +det +noun +conj +prep +pron +adv +verb +adj +verb +noun +pron +verb +pron +conj +adj +det +adj +pron +conj +verb +verb +prep +det +noun +pron +conj +adv +pron +adj +verb +verb +pron +det +noun +pron +conj +verb +conj +verb +verb +prep +det +noun +pron +conj +verb +pron +conj +verb +det +noun +pron +noun +verb +prep +det +noun +conj +prep +pron +adv +verb +adj +verb +noun +pron +conj +verb +det +noun +prep +det +noun +pron +adj +verb +noun +det +adj +conj +verb +pron +conj +verb +noun +prep +det +noun +pron +conj +noun +prep +det +noun +conj +verb +det +noun +det +adj +verb +conj +verb +verb +conj +pron +det +noun +pron +adj +verb +conj +verb +verb +verb +conj +verb +conj +verb +verb +conj +verb +det +noun +pron +det +adj +prep +noun +conj +conj +verb +verb +det +noun +verb +noun +conj +noun +conj +verb +adj +det +noun +verb +ptcl +pron +verb +pron +conj +det +verb +pron +conj +det +noun +pron +verb +conj +verb +det +noun +pron +det +noun +det +adj +conj +verb +pron +verb +conj +verb +conj +adv +verb +verb +conj +det +noun +pron +verb +verb +pron +conj +det +verb +verb +det +noun +verb +pron +noun +verb +pron +conj +adv +noun +pron +verb +conj +pron +adv +verb +noun +conj +prep +det +adj +pron +verb +conj +conj +det +noun +pron +pron +det +verb +pron +det +noun +prep +noun +verb +verb +pron +det +adj +noun +conj +det +verb +pron +noun +pron +adv +prep +pron +verb +conj +adj +det +adj +adj +verb +conj +verb +conj +verb +verb +conj +det +noun +pron +pron +adj +verb +conj +verb +conj +verb +conj +verb +conj +verb +adv +prep +det +noun +noun +pron +verb +adj +pron +verb +noun +conj +pron +verb +pron +conj +verb +det +verb +pron +conj +verb +pron +verb +pron +pron +pron +verb +prep +pron +verb +det +noun +det +noun +pron +conj +adv +verb +adv +verb +conj +verb +prep +pron +det +noun +pron +verb +conj +det +noun +pron +verb +det +noun +prep +pron +verb +adv +verb +verb +verb +verb +pron +verb +conj +conj +verb +prep +det +noun +verb +pron +prep +det +noun +pron +conj +verb +adj +adj +det +noun +det +noun +pron +verb +det +adj +pron +verb +det +noun +pron +conj +det +verb +num +noun +noun +conj +det +verb +pron +verb +pron +det +noun +conj +verb +adv +verb +num +adv +adj +verb +conj +pron +pron +verb +conj +det +verb +num +noun +noun +verb +pron +verb +pron +det +noun +conj +verb +num +conj +verb +det +noun +det +noun +det +noun +conj +adv +verb +conj +det +noun +det +noun +pron +adj +prep +det +noun +det +noun +prep +det +noun +det +pron +verb +conj +pron +pron +verb +pron +verb +adj +prep +det +noun +det +noun +conj +conj +verb +verb +pron +prep +det +adj +noun +det +adj +prep +adj +adv +prep +adj +adj +verb +conj +det +prep +adj +adj +adv +prep +adj +adj +verb +conj +conj +prep +det +adj +noun +adj +adv +verb +det +adj +pron +pron +verb +conj +conj +prep +det +adj +adj +adv +verb +det +adj +pron +verb +pron +adj +noun +verb +adj +noun +verb +conj +conj +det +adj +verb +conj +det +adj +verb +conj +adj +verb +conj +det +adj +verb +adv +verb +noun +verb +conj +noun +conj +verb +pron +adj +det +noun +adj +verb +conj +verb +pron +conj +verb +pron +pron +verb +det +verb +pron +prep +det +noun +conj +det +noun +verb +det +noun +pron +conj +det +prep +noun +adj +noun +prep +det +noun +det +noun +conj +det +noun +prep +noun +prep +adv +det +noun +det +noun +verb +conj +adj +prep +pron +verb +conj +adj +verb +det +noun +conj +det +noun +verb +conj +det +noun +adj +noun +verb +adj +det +verb +det +noun +pron +conj +verb +adj +verb +conj +det +verb +prep +noun +verb +verb +conj +noun +pron +verb +adj +conj +verb +noun +conj +noun +verb +prep +noun +adv +conj +adj +pron +noun +noun +verb +prep +det +noun +pron +verb +conj +verb +verb +prep +det +verb +prep +det +noun +det +adj +conj +adv +det +noun +verb +verb +det +noun +pron +conj +verb +verb +det +adj +conj +verb +pron +prep +det +noun +prep +det +noun +noun +conj +verb +adv +det +adj +conj +verb +conj +prep +det +noun +verb +det +noun +pron +verb +prep +noun +verb +noun +prep +adv +conj +noun +prep +det +noun +pron +conj +pron +verb +verb +noun +noun +verb +pron +conj +verb +noun +conj +verb +det +noun +det +noun +pron +noun +conj +verb +det +noun +pron +conj +verb +prep +det +noun +pron +conj +verb +noun +noun +verb +conj +verb +det +adj +pron +prep +det +noun +pron +conj +noun +adv +det +adj +conj +adv +adv +verb +conj +pron +verb +conj +prep +adj +pron +prep +pron +conj +pron +noun +adj +verb +conj +det +verb +verb +adv +prep +pron +adv +verb +conj +adv +prep +pron +verb +conj +verb +conj +verb +pron +noun +conj +verb +pron +prep +det +noun +det +noun +pron +conj +verb +num +noun +conj +verb +pron +conj +adv +adv +pron +verb +prep +det +noun +pron +det +noun +conj +verb +noun +verb +noun +conj +det +noun +verb +pron +conj +det +verb +ptcl +noun +noun +conj +conj +pron +prep +adj +verb +prep +pron +verb +conj +verb +pron +conj +noun +conj +det +noun +adv +verb +adv +conj +pron +prep +adj +verb +verb +conj +verb +prep +det +noun +pron +adj +verb +det +det +noun +adv +verb +conj +ptcl +prep +pron +verb +verb +pron +conj +noun +adj +verb +prep +det +noun +pron +conj +verb +prep +det +noun +conj +conj +verb +det +adj +pron +adj +verb +pron +conj +verb +det +noun +pron +verb +pron +conj +conj +verb +verb +pron +conj +conj +adv +det +noun +verb +prep +pron +conj +adv +verb +prep +pron +verb +verb +verb +pron +conj +verb +det +noun +det +noun +verb +pron +noun +conj +verb +det +noun +conj +verb +noun +conj +noun +noun +ptcl +verb +det +noun +pron +verb +conj +verb +prep +det +noun +conj +ptcl +verb +pron +conj +pron +prep +pron +verb +noun +verb +conj +verb +pron +verb +prep +det +noun +verb +pron +adv +verb +verb +conj +ptcl +verb +pron +verb +pron +verb +conj +verb +verb +pron +conj +verb +conj +verb +conj +prep +pron +verb +conj +verb +pron +ptcl +verb +noun +det +noun +conj +verb +det +verb +adv +adv +pron +conj +verb +adj +det +verb +pron +verb +conj +noun +adj +verb +pron +verb +verb +verb +conj +verb +prep +det +verb +prep +noun +conj +pron +verb +prep +adj +noun +conj +noun +conj +verb +pron +prep +pron +noun +verb +num +adj +noun +pron +verb +adv +conj +pron +verb +noun +verb +noun +noun +verb +pron +conj +verb +verb +pron +verb +verb +pron +det +noun +conj +verb +prep +det +verb +pron +verb +conj +adj +prep +pron +verb +conj +verb +verb +prep +noun +adj +verb +det +noun +conj +verb +prep +noun +prep +det +noun +pron +verb +pron +conj +pron +verb +noun +conj +verb +det +noun +verb +ptcl +det +num +verb +conj +det +num +adv +adv +verb +verb +verb +noun +det +noun +conj +adv +det +adj +pron +conj +verb +pron +verb +verb +det +noun +pron +verb +pron +conj +verb +prep +det +noun +adv +verb +det +noun +det +noun +verb +pron +conj +verb +adv +verb +det +noun +det +noun +prep +noun +conj +verb +verb +adv +conj +adv +conj +verb +det +noun +det +noun +prep +pron +verb +conj +verb +prep +det +noun +verb +noun +adv +verb +adj +det +noun +det +noun +det +noun +verb +conj +adv +verb +conj +verb +pron +verb +adv +verb +adv +adv +verb +conj +verb +conj +conj +det +noun +verb +prep +det +prep +det +noun +prep +det +prep +noun +verb +adv +verb +det +noun +det +noun +prep +det +noun +pron +conj +verb +adj +pron +adj +verb +conj +verb +prep +det +noun +pron +conj +conj +verb +prep +det +noun +noun +adv +verb +adv +prep +det +noun +det +noun +det +noun +verb +verb +verb +verb +prep +pron +noun +verb +noun +prep +det +noun +conj +verb +det +noun +conj +verb +adj +conj +adv +verb +prep +det +noun +noun +verb +verb +verb +verb +verb +verb +conj +pron +noun +verb +noun +prep +noun +verb +noun +conj +noun +prep +noun +conj +verb +adj +prep +det +pron +verb +pron +noun +det +noun +det +noun +verb +prep +pron +det +noun +pron +verb +prep +det +noun +conj +det +noun +pron +prep +det +noun +adv +verb +verb +pron +conj +det +prep +noun +adv +adv +verb +prep +det +adv +verb +det +noun +noun +ptcl +pron +verb +det +noun +pron +verb +verb +pron +conj +ptcl +pron +verb +verb +pron +verb +pron +pron +det +noun +verb +num +prep +noun +adj +det +adj +verb +conj +det +adj +verb +verb +verb +num +prep +det +pron +det +adj +verb +conj +det +adj +verb +conj +verb +verb +pron +adv +noun +conj +det +verb +pron +conj +det +noun +adv +adv +det +noun +verb +conj +verb +noun +pron +prep +det +verb +adv +verb +pron +conj +adv +verb +verb +noun +pron +verb +prep +pron +noun +det +noun +adv +verb +conj +noun +adv +verb +conj +noun +verb +prep +det +noun +pron +conj +verb +prep +pron +verb +verb +pron +prep +det +noun +pron +conj +adv +verb +prep +noun +conj +prep +pron +verb +prep +pron +conj +adv +det +noun +adv +verb +conj +noun +verb +ptcl +prep +det +verb +pron +noun +det +noun +pron +verb +pron +conj +adv +prep +noun +verb +verb +pron +conj +verb +det +noun +verb +pron +det +noun +det +noun +verb +conj +ptcl +ptcl +det +noun +verb +det +noun +det +adj +pron +det +verb +pron +noun +conj +noun +conj +verb +prep +pron +verb +pron +conj +verb +det +noun +pron +prep +noun +conj +det +noun +det +noun +verb +ptcl +verb +det +noun +prep +det +noun +conj +verb +adv +prep +pron +det +verb +prep +pron +conj +verb +adj +conj +verb +det +adj +det +noun +pron +noun +num +verb +prep +det +noun +verb +det +adj +noun +conj +det +adj +noun +det +noun +verb +pron +prep +pron +verb +det +noun +verb +pron +conj +adv +verb +conj +det +adj +det +noun +adj +adj +noun +conj +conj +adv +pron +det +noun +verb +adv +det +noun +verb +adj +pron +verb +conj +det +noun +adv +verb +adv +verb +adv +det +noun +verb +prep +det +noun +conj +verb +det +noun +pron +verb +det +noun +verb +pron +det +adj +verb +pron +verb +pron +verb +prep +det +noun +pron +prep +pron +conj +adj +det +verb +pron +verb +conj +det +verb +pron +verb +conj +verb +pron +adv +det +noun +conj +pron +verb +conj +verb +det +noun +verb +pron +conj +det +noun +verb +pron +verb +verb +det +noun +verb +prep +pron +conj +adv +verb +pron +conj +det +pron +verb +det +noun +det +noun +ptcl +verb +pron +ptcl +pron +adv +verb +det +noun +det +noun +conj +noun +adv +adv +verb +prep +pron +conj +verb +pron +noun +pron +verb +noun +adj +pron +verb +noun +adj +verb +conj +verb +pron +det +noun +pron +pron +verb +adj +adj +adj +conj +adv +adj +det +noun +det +noun +verb +adv +verb +adv +verb +adv +verb +adv +verb +verb +det +noun +pron +conj +det +noun +conj +det +verb +pron +adj +verb +prep +noun +conj +verb +det +noun +verb +pron +adv +adj +pron +verb +adj +pron +verb +verb +conj +verb +adj +conj +verb +noun +prep +det +noun +conj +verb +verb +pron +conj +det +verb +pron +adj +verb +conj +verb +adj +adv +conj +verb +pron +det +noun +verb +adv +adv +det +det +noun +verb +prep +det +noun +det +noun +verb +conj +adj +verb +noun +prep +noun +noun +verb +conj +adj +prep +det +noun +det +noun +verb +conj +verb +det +verb +conj +pron +verb +verb +conj +det +verb +det +adj +prep +noun +adj +prep +det +noun +verb +conj +verb +det +noun +verb +pron +verb +det +adj +verb +pron +conj +det +verb +pron +ptcl +verb +pron +conj +adj +verb +pron +verb +noun +conj +noun +conj +noun +conj +noun +conj +noun +prep +det +noun +det +noun +pron +adv +adv +verb +adj +prep +det +noun +pron +conj +prep +det +noun +det +verb +noun +adj +conj +verb +det +num +verb +prep +pron +verb +verb +prep +noun +conj +verb +adj +det +verb +prep +det +noun +det +noun +det +noun +conj +verb +det +noun +conj +verb +conj +verb +conj +verb +conj +verb +verb +pron +conj +det +noun +det +adj +verb +conj +pron +adj +pron +verb +conj +verb +det +noun +pron +verb +prep +pron +conj +adv +verb +det +verb +conj +verb +prep +det +verb +pron +prep +noun +adj +pron +verb +prep +det +noun +verb +conj +verb +noun +verb +verb +pron +verb +pron +conj +verb +pron +conj +noun +det +noun +verb +conj +verb +verb +noun +noun +noun +verb +pron +conj +det +verb +verb +pron +conj +verb +conj +pron +adj +adv +verb +noun +noun +verb +pron +conj +verb +det +noun +verb +pron +verb +prep +pron +conj +verb +pron +verb +pron +pron +pron +verb +verb +conj +det +verb +noun +conj +verb +conj +det +noun +verb +pron +verb +det +noun +pron +verb +pron +conj +adv +verb +conj +verb +pron +verb +det +noun +conj +adj +det +noun +verb +verb +noun +det +noun +conj +verb +verb +det +noun +conj +verb +noun +noun +verb +noun +conj +pron +verb +noun +conj +pron +adj +conj +verb +verb +det +noun +pron +verb +conj +adv +verb +prep +det +noun +conj +det +noun +adj +verb +conj +verb +prep +det +adv +verb +prep +noun +conj +verb +pron +conj +pron +verb +verb +conj +conj +verb +prep +det +noun +verb +det +noun +verb +prep +pron +noun +verb +verb +conj +adv +prep +det +noun +pron +pron +verb +verb +conj +verb +verb +conj +verb +pron +verb +conj +verb +adj +verb +verb +conj +prep +adj +noun +verb +verb +conj +verb +noun +verb +prep +det +noun +noun +verb +det +adj +pron +det +verb +det +adj +verb +conj +conj +pron +pron +verb +verb +adj +conj +verb +prep +pron +det +noun +conj +adv +noun +det +noun +pron +verb +conj +adv +pron +noun +noun +verb +conj +verb +det +noun +det +noun +verb +conj +verb +det +verb +conj +verb +pron +pron +verb +verb +noun +prep +det +verb +prep +noun +pron +conj +verb +pron +conj +adv +verb +det +noun +det +noun +verb +conj +verb +noun +pron +adj +verb +prep +noun +adj +verb +pron +noun +conj +verb +conj +verb +num +noun +pron +verb +pron +num +noun +conj +verb +prep +pron +verb +prep +pron +verb +conj +det +noun +pron +verb +pron +conj +verb +noun +prep +pron +verb +adv +verb +pron +verb +prep +pron +conj +verb +prep +det +verb +pron +verb +det +noun +conj +verb +verb +pron +det +noun +pron +pron +verb +det +noun +conj +verb +pron +pron +verb +conj +verb +det +adj +verb +noun +det +noun +pron +num +noun +verb +conj +verb +pron +ptcl +adj +noun +conj +prep +adj +adj +verb +verb +noun +verb +prep +num +noun +conj +verb +det +adj +verb +noun +det +noun +pron +verb +num +noun +conj +verb +adv +pron +adv +pron +prep +num +noun +verb +conj +det +adj +verb +verb +noun +verb +det +noun +pron +pron +verb +verb +prep +noun +conj +verb +pron +conj +noun +adj +verb +verb +pron +adv +verb +conj +verb +pron +adv +verb +verb +pron +prep +det +noun +pron +verb +pron +adj +noun +verb +conj +pron +verb +noun +adj +verb +pron +adv +verb +conj +verb +pron +adv +verb +conj +prep +pron +adv +verb +pron +det +noun +prep +noun +ptcl +pron +verb +prep +noun +pron +verb +conj +det +verb +verb +verb +prep +pron +det +noun +conj +verb +det +det +num +noun +verb +conj +verb +pron +noun +verb +num +noun +verb +pron +conj +adj +det +verb +verb +conj +prep +det +adv +verb +adv +pron +verb +verb +conj +det +adj +pron +pron +det +adv +verb +pron +verb +prep +pron +verb +adv +conj +verb +pron +prep +pron +conj +verb +pron +verb +adv +verb +prep +noun +conj +verb +conj +verb +prep +noun +conj +noun +prep +det +noun +det +verb +noun +verb +num +det +noun +verb +verb +prep +det +adv +noun +prep +pron +verb +verb +verb +noun +prep +pron +adj +noun +adv +verb +conj +verb +pron +verb +conj +conj +pron +pron +verb +prep +pron +verb +adv +verb +conj +det +noun +pron +noun +verb +conj +verb +det +verb +verb +conj +verb +pron +conj +verb +pron +det +noun +verb +det +noun +pron +prep +pron +pron +verb +det +noun +conj +det +verb +conj +det +noun +pron +noun +verb +conj +verb +pron +prep +det +noun +conj +verb +pron +det +noun +prep +det +noun +verb +det +noun +conj +verb +pron +verb +det +noun +pron +prep +det +noun +conj +verb +pron +adv +prep +det +noun +det +noun +det +noun +verb +adj +det +noun +det +noun +verb +verb +det +noun +noun +adj +prep +adj +pron +verb +noun +verb +verb +det +verb +prep +noun +noun +det +noun +prep +noun +noun +conj +noun +prep +adj +conj +pron +det +noun +prep +det +noun +verb +prep +pron +noun +verb +det +noun +pron +conj +verb +verb +verb +pron +conj +pron +verb +det +noun +verb +conj +conj +verb +verb +det +noun +verb +prep +pron +verb +conj +conj +verb +prep +det +noun +pron +adv +pron +det +prep +noun +conj +adv +verb +prep +noun +pron +conj +verb +noun +prep +pron +conj +verb +det +adj +pron +noun +pron +conj +verb +pron +conj +verb +pron +adv +conj +verb +pron +conj +det +noun +pron +prep +pron +conj +adv +verb +noun +prep +noun +prep +pron +prep +pron +adv +verb +det +noun +det +noun +pron +conj +verb +prep +det +noun +verb +verb +det +verb +verb +pron +verb +conj +verb +det +noun +pron +noun +noun +conj +pron +pron +verb +noun +noun +conj +verb +verb +det +prep +noun +prep +det +noun +conj +det +noun +conj +det +noun +verb +pron +verb +conj +det +adj +det +noun +conj +adv +verb +det +pron +verb +conj +det +noun +adj +verb +pron +verb +conj +verb +prep +adj +det +noun +verb +pron +det +noun +prep +det +noun +conj +verb +verb +det +noun +conj +det +noun +prep +det +adj +conj +verb +verb +prep +pron +verb +pron +prep +pron +noun +pron +verb +conj +pron +verb +det +verb +pron +det +noun +pron +conj +verb +verb +prep +pron +verb +pron +pron +noun +conj +verb +pron +det +noun +noun +prep +noun +verb +conj +prep +noun +conj +det +verb +prep +pron +verb +conj +conj +verb +prep +noun +verb +prep +pron +adv +verb +pron +conj +conj +verb +prep +noun +det +noun +adj +verb +pron +conj +verb +verb +noun +noun +verb +conj +verb +adv +verb +adv +conj +det +noun +verb +pron +adv +pron +verb +pron +prep +pron +noun +pron +verb +conj +verb +prep +det +noun +verb +det +noun +pron +noun +verb +noun +conj +verb +pron +noun +conj +verb +noun +adj +conj +noun +verb +prep +det +noun +noun +conj +prep +det +noun +det +noun +verb +pron +conj +det +noun +verb +pron +verb +adj +conj +verb +adj +noun +verb +conj +det +pron +verb +conj +verb +verb +adj +conj +verb +adj +verb +conj +det +adv +pron +verb +verb +conj +verb +det +noun +det +noun +pron +verb +verb +det +noun +pron +det +adj +adv +pron +verb +conj +verb +pron +det +noun +verb +prep +pron +verb +pron +verb +det +noun +verb +pron +conj +pron +verb +det +noun +conj +verb +pron +prep +det +noun +verb +conj +pron +verb +pron +det +noun +det +noun +verb +conj +verb +det +noun +pron +conj +verb +det +noun +adj +conj +verb +verb +adv +verb +conj +det +verb +pron +verb +conj +pron +verb +det +verb +pron +noun +pron +verb +det +verb +pron +verb +prep +noun +noun +adj +det +verb +prep +pron +det +noun +verb +conj +ptcl +prep +pron +verb +verb +pron +conj +verb +det +noun +conj +det +noun +verb +prep +pron +det +noun +prep +pron +det +noun +conj +verb +det +noun +conj +verb +conj +prep +pron +verb +det +noun +pron +conj +verb +verb +adj +verb +pron +adj +verb +conj +verb +pron +noun +conj +verb +pron +det +noun +conj +det +noun +det +noun +conj +verb +pron +verb +noun +verb +conj +adv +verb +conj +verb +conj +adv +verb +noun +conj +prep +noun +det +noun +det +noun +verb +verb +pron +noun +noun +verb +conj +adv +conj +verb +pron +det +noun +verb +prep +pron +verb +pron +noun +verb +pron +noun +conj +noun +conj +det +verb +noun +conj +det +verb +prep +pron +conj +verb +det +noun +noun +conj +det +det +noun +det +noun +conj +adv +verb +verb +pron +noun +prep +det +noun +conj +verb +prep +det +noun +pron +verb +conj +verb +pron +det +noun +det +verb +noun +adv +verb +verb +pron +verb +noun +noun +verb +pron +conj +pron +noun +verb +verb +noun +conj +pron +adj +verb +conj +verb +det +noun +pron +det +noun +conj +verb +noun +det +noun +pron +conj +num +noun +verb +conj +det +adj +verb +noun +verb +adj +conj +det +adj +conj +det +adj +verb +pron +conj +adv +adv +det +num +adv +verb +noun +conj +verb +adj +adv +det +noun +verb +conj +det +noun +prep +det +noun +pron +pron +noun +verb +conj +det +num +verb +pron +noun +conj +verb +pron +det +noun +det +noun +det +noun +pron +verb +conj +verb +conj +det +verb +det +noun +pron +verb +conj +det +noun +det +prep +adj +conj +verb +conj +verb +conj +adv +verb +adv +verb +conj +adj +verb +conj +noun +noun +verb +det +noun +noun +verb +conj +conj +verb +det +adj +adv +noun +verb +prep +det +noun +conj +verb +noun +det +noun +noun +conj +noun +noun +conj +noun +noun +conj +noun +adv +verb +adj +conj +verb +conj +adj +pron +verb +conj +verb +pron +det +noun +verb +noun +adv +verb +conj +adv +verb +verb +pron +adj +conj +verb +prep +pron +adv +verb +det +noun +verb +noun +noun +conj +pron +noun +verb +prep +noun +noun +verb +noun +det +noun +pron +verb +prep +adj +pron +conj +ptcl +verb +det +adj +pron +noun +det +noun +pron +conj +noun +pron +noun +verb +conj +adv +pron +noun +verb +conj +verb +adj +det +noun +verb +det +noun +verb +prep +det +noun +det +verb +verb +prep +noun +conj +verb +noun +prep +det +noun +conj +noun +prep +det +noun +conj +noun +prep +det +noun +pron +verb +det +noun +det +noun +conj +noun +adj +verb +pron +verb +adj +noun +conj +verb +verb +det +verb +prep +det +noun +det +noun +pron +adj +conj +verb +pron +noun +adj +verb +adv +noun +num +conj +verb +adv +verb +pron +conj +det +noun +pron +det +adj +adj +adj +verb +conj +adj +pron +prep +det +verb +pron +verb +prep +det +noun +conj +pron +prep +det +noun +pron +adj +det +noun +pron +verb +verb +conj +pron +verb +prep +det +noun +conj +noun +adj +conj +noun +verb +verb +pron +pron +verb +verb +noun +prep +pron +adv +verb +prep +noun +noun +pron +adv +verb +conj +verb +pron +verb +noun +conj +adv +pron +verb +conj +pron +det +noun +conj +verb +pron +verb +conj +det +verb +verb +conj +verb +conj +adj +verb +prep +det +noun +pron +verb +pron +verb +conj +det +noun +verb +adv +verb +prep +pron +conj +conj +verb +noun +conj +noun +adv +verb +conj +verb +pron +verb +adj +conj +adv +adv +det +noun +adv +verb +pron +verb +noun +prep +noun +conj +noun +prep +noun +conj +noun +adj +conj +prep +noun +noun +conj +noun +verb +conj +noun +conj +prep +noun +noun +adj +verb +conj +prep +pron +adj +verb +prep +pron +det +noun +pron +conj +verb +verb +prep +det +noun +conj +noun +verb +prep +noun +conj +noun +prep +det +noun +pron +verb +pron +prep +noun +conj +verb +prep +det +noun +pron +adv +verb +verb +conj +pron +verb +pron +noun +conj +noun +pron +adv +verb +verb +conj +verb +adj +det +verb +pron +conj +verb +adv +prep +noun +conj +noun +conj +adj +conj +adj +conj +verb +prep +pron +conj +verb +verb +prep +adj +prep +det +noun +pron +conj +noun +prep +det +noun +pron +adv +adv +verb +prep +det +noun +pron +verb +det +noun +pron +conj +conj +verb +verb +prep +noun +noun +adv +verb +conj +verb +det +noun +pron +adv +det +prep +det +noun +verb +prep +det +noun +conj +det +prep +adj +pron +verb +conj +det +prep +det +noun +adv +verb +prep +pron +conj +noun +noun +pron +verb +det +verb +adj +det +verb +ptcl +det +prep +noun +verb +conj +det +verb +prep +pron +det +noun +conj +verb +noun +adj +prep +det +noun +conj +noun +det +noun +pron +conj +verb +noun +noun +conj +verb +prep +det +noun +adj +conj +noun +verb +verb +prep +noun +prep +pron +verb +noun +noun +conj +verb +noun +prep +noun +conj +noun +conj +noun +conj +prep +det +noun +noun +noun +prep +noun +noun +noun +conj +noun +verb +noun +prep +noun +conj +noun +det +verb +det +noun +conj +det +noun +det +noun +verb +conj +adv +verb +det +noun +det +noun +verb +prep +noun +prep +noun +conj +noun +adj +conj +verb +pron +verb +verb +conj +verb +det +noun +pron +conj +verb +det +noun +pron +conj +verb +noun +pron +verb +det +noun +conj +adj +det +noun +conj +verb +adv +verb +prep +pron +verb +conj +adv +adv +det +noun +verb +adv +adv +pron +conj +verb +pron +verb +verb +conj +adv +verb +det +noun +det +noun +ptcl +verb +pron +conj +adv +adv +verb +det +noun +pron +conj +ptcl +adj +verb +det +noun +conj +det +noun +verb +conj +det +noun +pron +adv +adv +verb +conj +verb +pron +ptcl +adv +verb +pron +det +noun +prep +noun +conj +noun +conj +noun +adj +conj +verb +prep +pron +adj +det +noun +pron +conj +noun +conj +verb +prep +adj +det +verb +prep +noun +adj +det +noun +conj +verb +prep +adj +noun +verb +conj +verb +verb +pron +adj +det +verb +verb +conj +verb +prep +det +noun +det +noun +conj +verb +verb +det +noun +prep +det +noun +conj +det +noun +verb +verb +prep +det +noun +det +verb +noun +conj +adj +det +noun +verb +prep +pron +prep +det +noun +verb +pron +conj +verb +det +noun +det +adj +det +verb +noun +conj +verb +det +noun +conj +det +noun +det +adv +verb +pron +conj +verb +det +noun +conj +verb +noun +prep +noun +det +verb +noun +verb +prep +det +noun +det +num +conj +verb +verb +det +noun +conj +noun +det +adv +pron +verb +pron +conj +verb +conj +verb +pron +noun +verb +conj +verb +conj +verb +noun +det +verb +pron +prep +noun +pron +conj +verb +det +noun +det +adj +pron +verb +verb +det +noun +conj +verb +noun +conj +noun +verb +verb +verb +pron +det +noun +conj +verb +conj +det +verb +pron +verb +adv +verb +conj +det +verb +pron +verb +verb +pron +prep +det +noun +verb +pron +noun +noun +noun +verb +verb +pron +prep +det +noun +prep +pron +verb +conj +verb +det +noun +det +noun +verb +pron +det +noun +adv +verb +det +noun +adv +det +noun +prep +det +noun +pron +verb +pron +pron +verb +noun +adj +verb +adv +verb +conj +verb +verb +conj +verb +pron +conj +verb +det +noun +conj +conj +verb +det +noun +verb +conj +det +noun +prep +pron +conj +verb +prep +pron +noun +verb +pron +det +noun +verb +prep +pron +prep +det +pron +verb +conj +verb +pron +conj +adv +adv +adv +verb +pron +prep +pron +verb +prep +det +noun +det +noun +conj +verb +noun +verb +verb +verb +pron +conj +verb +prep +pron +conj +verb +pron +adv +adv +verb +prep +det +adv +prep +det +noun +det +noun +prep +pron +det +noun +det +noun +verb +conj +verb +noun +verb +verb +conj +verb +pron +verb +pron +verb +det +noun +pron +det +prep +pron +verb +pron +verb +prep +det +adj +noun +conj +det +noun +adv +prep +det +verb +verb +det +adj +noun +prep +det +noun +pron +pron +det +noun +det +prep +pron +verb +conj +verb +det +noun +det +verb +pron +prep +pron +prep +det +noun +conj +conj +det +noun +det +noun +prep +det +verb +verb +conj +ptcl +det +noun +pron +prep +pron +verb +conj +pron +verb +verb +prep +pron +det +conj +pron +verb +prep +pron +det +pron +verb +verb +conj +verb +prep +pron +adv +noun +det +pron +pron +verb +verb +adj +conj +det +verb +pron +det +noun +det +noun +verb +pron +conj +det +verb +pron +noun +verb +conj +pron +adv +adv +conj +det +adj +prep +pron +verb +conj +det +adj +conj +det +verb +conj +det +verb +conj +pron +adj +det +verb +conj +det +verb +ptcl +det +verb +conj +pron +prep +adj +pron +verb +conj +det +verb +conj +pron +verb +det +verb +prep +pron +prep +det +noun +pron +pron +verb +pron +conj +verb +pron +det +noun +pron +noun +conj +verb +conj +verb +prep +det +noun +pron +prep +det +noun +pron +conj +verb +prep +noun +det +num +noun +det +noun +verb +noun +noun +verb +det +noun +verb +pron +det +verb +conj +det +noun +conj +pron +verb +prep +pron +conj +adv +verb +det +noun +pron +conj +pron +adv +verb +verb +det +noun +pron +conj +det +verb +pron +noun +prep +pron +adj +verb +adv +prep +noun +conj +prep +noun +verb +conj +det +verb +verb +pron +noun +adv +verb +adv +noun +conj +adv +pron +ptcl +verb +verb +conj +verb +pron +conj +verb +pron +prep +noun +conj +noun +conj +noun +ptcl +pron +verb +conj +det +verb +adj +conj +verb +pron +conj +adv +det +verb +noun +verb +adv +adv +noun +conj +det +adv +verb +verb +det +noun +pron +conj +verb +noun +conj +verb +pron +conj +verb +pron +det +verb +det +conj +prep +adj +verb +verb +prep +pron +conj +adv +det +prep +pron +noun +verb +conj +det +verb +noun +verb +noun +adv +num +conj +det +verb +pron +adj +verb +conj +verb +verb +prep +det +noun +prep +det +noun +det +noun +conj +verb +pron +adv +det +noun +conj +verb +prep +det +noun +verb +pron +verb +adv +verb +prep +noun +conj +pron +verb +prep +pron +adv +noun +noun +conj +verb +det +noun +verb +verb +noun +conj +verb +verb +pron +det +noun +prep +pron +conj +adv +det +noun +pron +conj +det +adj +verb +conj +verb +pron +noun +prep +noun +verb +pron +conj +verb +prep +noun +adj +verb +conj +verb +det +noun +pron +conj +noun +noun +verb +prep +det +noun +conj +verb +prep +det +noun +verb +prep +det +noun +verb +verb +pron +prep +det +noun +conj +verb +pron +pron +verb +verb +verb +conj +adv +verb +prep +noun +adv +pron +verb +verb +noun +conj +det +verb +noun +adj +det +num +verb +pron +conj +verb +det +noun +verb +pron +conj +noun +verb +pron +noun +noun +det +noun +det +noun +verb +conj +det +prep +pron +verb +det +verb +verb +noun +ptcl +verb +prep +noun +conj +verb +adj +pron +prep +pron +det +noun +det +noun +conj +verb +det +noun +pron +det +adj +conj +verb +det +noun +verb +verb +prep +pron +conj +verb +det +noun +verb +pron +conj +verb +noun +prep +det +verb +prep +pron +noun +conj +noun +det +noun +conj +adj +conj +prep +noun +verb +prep +noun +conj +noun +prep +noun +verb +pron +prep +pron +prep +det +noun +adv +verb +det +noun +prep +pron +conj +pron +verb +pron +det +noun +conj +det +noun +det +noun +conj +verb +pron +verb +conj +verb +prep +det +noun +det +noun +conj +det +noun +verb +adv +conj +verb +noun +prep +adj +det +noun +conj +verb +verb +det +noun +adj +pron +conj +noun +pron +verb +pron +verb +prep +det +noun +conj +verb +pron +verb +adv +pron +prep +pron +verb +conj +det +verb +verb +adv +verb +pron +noun +conj +prep +adj +adj +verb +pron +verb +adv +pron +prep +pron +verb +conj +det +noun +verb +noun +adv +verb +conj +verb +adv +noun +adj +adj +pron +verb +verb +prep +noun +adv +pron +prep +pron +verb +conj +adv +noun +verb +conj +verb +det +noun +noun +adv +verb +pron +verb +conj +adv +adv +verb +pron +verb +noun +conj +verb +det +noun +verb +det +noun +conj +verb +det +noun +det +noun +det +noun +adv +verb +pron +adv +adv +noun +verb +adv +verb +pron +adv +conj +verb +adv +verb +adv +conj +det +noun +det +verb +pron +verb +pron +verb +conj +verb +pron +verb +verb +verb +pron +verb +det +verb +pron +conj +adj +adj +verb +verb +prep +pron +conj +conj +verb +noun +verb +det +noun +det +noun +conj +noun +conj +noun +conj +verb +pron +prep +det +noun +pron +verb +conj +pron +verb +det +noun +verb +pron +conj +verb +pron +conj +pron +verb +adv +adv +verb +conj +conj +verb +adv +adv +verb +conj +prep +det +adv +verb +verb +det +noun +det +noun +prep +adj +det +noun +det +noun +conj +verb +adj +conj +pron +verb +det +noun +det +noun +conj +det +prep +pron +verb +pron +verb +conj +pron +verb +conj +det +verb +pron +adv +verb +noun +noun +conj +pron +verb +prep +det +noun +pron +conj +verb +adj +det +noun +pron +verb +pron +prep +det +noun +conj +verb +verb +pron +verb +verb +pron +verb +det +noun +pron +conj +verb +noun +noun +verb +conj +verb +pron +noun +noun +verb +conj +det +noun +verb +pron +verb +pron +verb +det +noun +det +adj +conj +det +verb +pron +verb +pron +verb +conj +det +noun +verb +prep +det +noun +conj +det +noun +adj +verb +adj +prep +det +noun +pron +conj +det +verb +verb +conj +verb +det +noun +verb +prep +adj +det +noun +adv +verb +prep +det +noun +prep +adv +conj +noun +verb +verb +ptcl +det +noun +noun +verb +conj +verb +conj +prep +det +noun +noun +verb +verb +pron +prep +noun +verb +adv +pron +prep +noun +prep +pron +det +noun +conj +det +noun +verb +det +noun +verb +adv +conj +verb +verb +prep +adj +noun +verb +pron +prep +det +verb +prep +pron +conj +verb +verb +pron +noun +prep +pron +verb +conj +verb +pron +prep +noun +adj +conj +pron +adj +verb +pron +conj +verb +det +noun +conj +det +noun +adv +verb +pron +conj +det +noun +verb +pron +prep +det +noun +pron +conj +verb +verb +noun +adj +verb +pron +det +noun +conj +verb +adj +conj +det +noun +conj +det +noun +prep +pron +det +noun +prep +pron +conj +verb +prep +noun +verb +prep +pron +conj +noun +verb +det +noun +conj +det +noun +conj +det +noun +verb +prep +pron +verb +pron +det +noun +pron +conj +verb +det +noun +conj +verb +pron +prep +pron +verb +adj +verb +prep +det +noun +pron +adj +pron +verb +prep +pron +conj +adv +noun +conj +verb +pron +prep +pron +conj +verb +adj +adj +noun +verb +verb +pron +conj +verb +pron +verb +conj +verb +adv +verb +verb +pron +conj +verb +pron +det +noun +pron +verb +verb +prep +noun +pron +verb +prep +det +noun +conj +noun +prep +det +noun +conj +adv +det +noun +verb +pron +verb +verb +det +noun +conj +det +verb +verb +verb +verb +pron +conj +det +adj +verb +prep +pron +conj +pron +adj +verb +pron +adj +adj +noun +verb +prep +pron +conj +verb +pron +verb +conj +det +verb +noun +adj +verb +pron +verb +conj +verb +det +noun +pron +conj +noun +verb +verb +det +noun +pron +conj +verb +det +prep +noun +conj +noun +verb +prep +noun +pron +verb +conj +det +noun +verb +det +noun +pron +conj +conj +verb +pron +verb +noun +pron +noun +verb +prep +noun +verb +pron +det +noun +verb +prep +det +noun +conj +verb +pron +adj +noun +det +noun +conj +noun +pron +verb +conj +verb +pron +conj +verb +prep +pron +noun +verb +noun +noun +adv +verb +prep +pron +conj +prep +pron +verb +conj +prep +det +noun +pron +conj +verb +verb +noun +prep +pron +verb +adj +det +noun +conj +det +noun +pron +adv +verb +conj +noun +pron +adv +verb +adv +verb +verb +det +noun +verb +prep +pron +conj +det +noun +verb +pron +conj +conj +prep +adj +noun +pron +verb +prep +det +adj +pron +verb +conj +verb +adv +adj +adj +num +prep +pron +verb +conj +conj +verb +prep +det +noun +det +verb +noun +adv +verb +pron +conj +det +adj +conj +pron +prep +adj +conj +pron +prep +adj +conj +det +noun +verb +noun +verb +pron +conj +adv +verb +pron +verb +conj +verb +det +noun +pron +verb +noun +conj +verb +det +noun +verb +conj +verb +adv +det +noun +verb +adj +verb +verb +pron +conj +pron +verb +det +noun +det +noun +det +adj +conj +verb +pron +adv +det +noun +verb +noun +verb +pron +conj +verb +conj +pron +verb +det +noun +det +adj +verb +pron +conj +verb +adv +noun +prep +pron +det +noun +det +adj +pron +conj +adj +det +verb +adj +verb +pron +ptcl +pron +verb +det +noun +verb +pron +conj +pron +conj +verb +det +adj +verb +pron +verb +adv +verb +pron +det +noun +conj +prep +det +pron +noun +verb +conj +conj +pron +adv +conj +adj +pron +verb +verb +conj +pron +adj +adj +verb +conj +verb +noun +verb +pron +conj +verb +prep +det +noun +pron +conj +verb +pron +ptcl +pron +verb +adv +prep +pron +verb +prep +det +noun +conj +verb +adv +adv +noun +adj +conj +noun +verb +prep +adj +det +noun +prep +noun +adj +det +noun +verb +conj +verb +det +noun +det +noun +adj +conj +verb +noun +adj +det +noun +verb +noun +prep +noun +pron +verb +det +noun +pron +conj +pron +verb +verb +conj +det +noun +verb +det +verb +verb +det +noun +verb +adv +det +noun +pron +adj +verb +conj +adj +det +verb +prep +det +noun +pron +noun +verb +det +verb +verb +det +noun +verb +conj +verb +prep +adv +adj +det +adj +pron +conj +noun +det +verb +pron +prep +det +noun +verb +pron +conj +verb +noun +noun +noun +verb +noun +noun +adj +conj +adj +pron +adv +verb +verb +det +noun +conj +det +noun +pron +prep +noun +noun +det +adj +pron +verb +det +noun +det +noun +pron +verb +det +noun +verb +det +noun +det +noun +conj +verb +verb +pron +noun +conj +verb +pron +prep +noun +adj +adv +adv +verb +verb +adj +adv +conj +noun +noun +verb +conj +noun +verb +conj +verb +det +noun +pron +verb +verb +prep +det +noun +pron +verb +det +noun +conj +conj +verb +det +noun +pron +conj +verb +verb +noun +conj +noun +conj +conj +det +noun +verb +prep +det +noun +conj +det +adj +det +noun +noun +adj +prep +det +noun +verb +verb +pron +verb +noun +conj +verb +det +noun +verb +prep +det +noun +conj +verb +adv +verb +det +noun +det +noun +noun +conj +verb +prep +det +verb +pron +prep +pron +conj +verb +noun +num +verb +pron +prep +noun +verb +conj +adj +verb +pron +conj +verb +det +noun +prep +det +noun +verb +prep +pron +pron +verb +det +verb +prep +det +adj +adv +verb +adv +conj +verb +verb +conj +verb +pron +adv +verb +prep +det +noun +verb +conj +verb +det +noun +det +noun +verb +prep +noun +noun +adj +conj +verb +conj +det +adj +noun +verb +conj +verb +det +noun +pron +conj +verb +prep +det +noun +verb +pron +adj +det +num +conj +adj +det +adj +conj +verb +det +noun +noun +conj +noun +conj +noun +det +noun +conj +det +adj +prep +pron +verb +prep +det +noun +pron +conj +verb +prep +pron +conj +noun +det +noun +pron +conj +verb +pron +conj +det +noun +verb +verb +prep +det +noun +conj +verb +verb +det +noun +adj +conj +verb +prep +pron +verb +det +verb +conj +verb +num +prep +pron +prep +pron +det +noun +verb +verb +prep +noun +verb +noun +num +prep +noun +pron +noun +noun +conj +pron +verb +prep +pron +prep +adj +det +verb +pron +conj +verb +prep +det +verb +pron +conj +verb +conj +pron +noun +verb +verb +pron +conj +det +noun +pron +verb +det +adv +verb +pron +conj +verb +prep +pron +pron +det +noun +pron +pron +verb +prep +pron +verb +conj +verb +adj +conj +verb +adj +noun +noun +verb +prep +pron +pron +adj +verb +noun +conj +adv +verb +det +verb +prep +pron +prep +det +noun +pron +conj +verb +pron +pron +conj +det +verb +pron +det +prep +noun +det +adj +pron +verb +noun +noun +adj +prep +noun +conj +noun +prep +det +noun +conj +adj +det +noun +conj +adv +verb +pron +det +noun +conj +det +noun +pron +prep +noun +noun +conj +verb +pron +conj +pron +verb +conj +pron +verb +det +verb +verb +det +noun +conj +ptcl +adv +prep +adj +pron +adj +pron +noun +verb +prep +pron +pron +verb +conj +adv +noun +pron +prep +pron +verb +pron +verb +adj +prep +det +noun +conj +adv +verb +det +noun +pron +verb +verb +adv +noun +noun +verb +pron +verb +pron +verb +conj +verb +pron +det +prep +pron +prep +det +noun +conj +verb +adv +conj +adv +det +noun +verb +conj +pron +adv +verb +conj +pron +verb +prep +pron +ptcl +adj +conj +adj +det +noun +det +verb +prep +adj +pron +verb +det +noun +ptcl +verb +pron +verb +det +noun +conj +verb +prep +det +noun +pron +conj +verb +prep +noun +conj +prep +adj +det +noun +verb +pron +prep +adj +det +noun +det +prep +pron +conj +verb +prep +det +noun +adv +verb +conj +pron +verb +adv +verb +conj +verb +pron +verb +verb +prep +pron +conj +prep +noun +verb +conj +verb +adv +det +noun +conj +verb +det +verb +prep +pron +conj +verb +prep +det +verb +pron +prep +pron +verb +det +noun +verb +conj +verb +verb +pron +conj +pron +det +noun +verb +conj +verb +pron +conj +pron +adj +verb +prep +pron +conj +verb +prep +pron +ptcl +det +noun +pron +verb +verb +prep +pron +conj +verb +pron +prep +det +noun +conj +verb +pron +det +noun +conj +verb +pron +det +noun +verb +prep +noun +conj +verb +verb +det +num +conj +det +prep +pron +verb +conj +adv +verb +det +noun +conj +verb +noun +conj +pron +verb +det +prep +det +noun +conj +conj +verb +pron +prep +det +noun +det +noun +conj +pron +pron +verb +pron +verb +prep +adj +pron +conj +verb +pron +noun +pron +conj +verb +conj +adj +verb +verb +noun +verb +conj +verb +pron +pron +verb +verb +conj +prep +pron +noun +verb +prep +det +noun +pron +verb +det +noun +pron +conj +det +noun +pron +conj +pron +verb +pron +verb +pron +conj +verb +conj +noun +noun +conj +noun +adv +verb +conj +pron +verb +verb +conj +pron +verb +verb +pron +det +noun +conj +det +noun +conj +adv +verb +pron +prep +det +noun +conj +verb +verb +pron +verb +pron +adj +adv +conj +det +verb +pron +noun +adj +noun +conj +verb +prep +pron +verb +conj +verb +prep +pron +pron +det +noun +pron +pron +verb +prep +pron +adv +verb +prep +pron +adv +verb +verb +adj +det +verb +prep +det +noun +noun +conj +det +noun +conj +noun +prep +pron +adv +verb +pron +det +noun +det +verb +det +noun +conj +verb +pron +conj +adv +verb +verb +det +noun +conj +verb +prep +adj +det +adj +noun +conj +verb +prep +det +noun +pron +noun +prep +noun +noun +prep +adj +det +noun +verb +prep +noun +pron +noun +pron +conj +verb +pron +verb +det +noun +det +noun +pron +prep +pron +conj +pron +verb +prep +det +noun +prep +pron +verb +prep +noun +noun +conj +verb +pron +prep +prep +noun +conj +verb +det +noun +pron +verb +pron +conj +verb +prep +det +verb +pron +pron +verb +prep +pron +conj +verb +prep +det +noun +conj +pron +verb +pron +verb +prep +noun +prep +noun +adj +conj +verb +verb +prep +adj +prep +det +noun +det +noun +prep +noun +verb +det +noun +conj +det +noun +verb +prep +det +noun +conj +noun +verb +det +noun +pron +verb +prep +noun +prep +det +noun +adj +prep +pron +verb +conj +prep +pron +verb +adv +adj +pron +verb +prep +pron +noun +verb +conj +det +noun +verb +det +noun +det +noun +conj +det +noun +prep +det +noun +verb +conj +det +noun +pron +adv +verb +verb +noun +verb +prep +noun +noun +pron +noun +pron +verb +prep +noun +conj +verb +prep +det +noun +conj +adj +verb +prep +pron +adv +verb +pron +det +noun +conj +conj +verb +prep +det +noun +det +noun +det +adj +pron +verb +adj +noun +verb +verb +prep +det +noun +prep +det +noun +verb +conj +det +noun +prep +pron +verb +conj +det +noun +pron +adv +verb +prep +det +adj +verb +conj +det +adj +pron +adv +verb +conj +pron +verb +pron +verb +noun +noun +noun +verb +pron +det +verb +prep +det +noun +pron +pron +adv +prep +noun +conj +prep +noun +noun +conj +prep +noun +noun +conj +prep +noun +verb +conj +det +noun +noun +verb +conj +verb +prep +pron +conj +verb +det +noun +pron +noun +conj +adj +prep +noun +adj +noun +conj +noun +noun +verb +prep +pron +conj +verb +verb +pron +verb +pron +verb +det +prep +pron +verb +prep +pron +verb +conj +adj +pron +verb +conj +prep +det +noun +pron +pron +adj +verb +adv +noun +prep +noun +conj +det +noun +prep +noun +verb +det +noun +conj +det +noun +prep +noun +noun +verb +noun +adj +verb +adv +adj +noun +det +verb +prep +det +noun +det +noun +pron +verb +conj +pron +verb +det +noun +det +noun +conj +verb +prep +pron +det +adj +prep +noun +noun +conj +noun +conj +verb +pron +pron +pron +verb +conj +verb +conj +adv +verb +conj +verb +conj +pron +adv +verb +det +noun +conj +verb +pron +conj +pron +pron +noun +verb +conj +verb +adv +verb +det +noun +verb +pron +conj +verb +ptcl +conj +verb +pron +pron +verb +conj +noun +verb +det +verb +pron +pron +verb +prep +pron +verb +pron +noun +verb +prep +det +adj +verb +det +noun +noun +conj +verb +noun +det +noun +conj +verb +verb +prep +det +noun +conj +verb +pron +conj +verb +pron +conj +pron +verb +conj +pron +adv +verb +det +noun +conj +noun +conj +det +noun +verb +pron +det +noun +verb +pron +verb +prep +noun +adj +pron +verb +pron +pron +adv +verb +det +prep +pron +verb +pron +adv +verb +pron +adj +conj +verb +pron +det +noun +det +noun +pron +prep +noun +verb +prep +det +noun +adv +verb +verb +det +noun +det +adv +verb +det +noun +verb +prep +pron +conj +verb +verb +det +noun +det +noun +det +verb +det +noun +det +noun +pron +verb +prep +pron +pron +verb +prep +pron +verb +noun +pron +prep +pron +verb +conj +adj +pron +verb +pron +adv +verb +pron +conj +conj +verb +det +noun +prep +pron +verb +pron +prep +noun +verb +conj +verb +noun +verb +conj +verb +det +noun +verb +conj +noun +prep +noun +conj +verb +prep +pron +pron +adv +verb +pron +conj +det +verb +pron +verb +prep +noun +pron +pron +verb +ptcl +prep +pron +verb +det +noun +verb +conj +verb +prep +pron +pron +verb +det +verb +prep +noun +adj +pron +verb +conj +verb +conj +pron +verb +det +noun +det +noun +det +adv +adv +verb +det +noun +conj +prep +det +noun +pron +num +conj +verb +det +noun +verb +verb +verb +det +noun +det +noun +conj +verb +det +num +noun +pron +verb +conj +verb +det +noun +conj +det +noun +verb +conj +verb +pron +verb +verb +pron +pron +verb +conj +det +verb +pron +noun +pron +verb +verb +noun +adv +verb +verb +pron +verb +conj +verb +conj +verb +conj +verb +adv +verb +conj +prep +pron +verb +det +noun +pron +noun +verb +prep +adj +verb +noun +det +noun +noun +noun +adj +prep +det +num +det +verb +prep +noun +conj +verb +pron +verb +pron +adj +det +noun +det +adj +noun +conj +verb +pron +verb +det +noun +pron +verb +verb +noun +verb +pron +prep +det +noun +verb +pron +det +noun +verb +pron +verb +noun +det +noun +noun +pron +verb +noun +pron +verb +noun +det +adv +verb +verb +prep +det +noun +conj +verb +noun +conj +verb +pron +det +noun +verb +pron +conj +verb +det +noun +prep +noun +prep +det +noun +noun +conj +noun +verb +noun +det +noun +conj +verb +pron +pron +verb +noun +prep +det +noun +conj +det +noun +verb +noun +noun +det +noun +det +prep +noun +conj +verb +pron +noun +prep +noun +verb +verb +pron +adj +verb +pron +det +noun +verb +conj +verb +verb +noun +det +noun +verb +prep +pron +conj +verb +prep +pron +verb +adv +noun +prep +pron +noun +adv +verb +verb +pron +noun +adv +pron +verb +verb +noun +conj +verb +pron +prep +det +pron +noun +verb +verb +prep +det +noun +pron +verb +verb +pron +noun +noun +pron +verb +det +noun +det +noun +pron +noun +det +noun +verb +verb +noun +conj +verb +pron +conj +verb +pron +conj +verb +pron +prep +det +noun +verb +adj +pron +verb +conj +verb +pron +ptcl +ptcl +verb +pron +verb +det +noun +verb +conj +det +noun +det +noun +verb +conj +verb +prep +det +noun +det +noun +conj +det +noun +det +adj +noun +verb +prep +noun +det +noun +conj +verb +det +noun +det +noun +adv +conj +verb +adv +det +noun +conj +det +noun +pron +prep +det +noun +conj +verb +noun +verb +det +noun +det +noun +prep +pron +noun +adv +verb +conj +verb +pron +det +noun +pron +pron +conj +pron +noun +adv +verb +det +noun +pron +verb +det +noun +pron +det +noun +pron +ptcl +pron +verb +pron +verb +conj +verb +verb +adv +adj +noun +num +prep +det +noun +det +adj +verb +prep +noun +num +conj +adj +verb +pron +det +noun +verb +det +noun +noun +conj +verb +pron +prep +adv +conj +verb +pron +verb +adv +conj +verb +det +noun +conj +det +verb +conj +conj +verb +det +noun +det +noun +noun +verb +conj +adv +verb +adv +verb +conj +verb +det +noun +det +verb +det +noun +verb +det +noun +det +noun +conj +verb +pron +adj +noun +adj +det +adj +noun +verb +conj +conj +verb +det +adj +pron +verb +det +adj +noun +prep +adv +pron +noun +det +noun +verb +det +noun +prep +noun +det +noun +conj +verb +det +noun +pron +conj +verb +prep +pron +det +noun +pron +prep +pron +verb +prep +noun +pron +conj +det +noun +pron +conj +det +noun +conj +det +noun +pron +conj +adv +verb +adv +adj +noun +conj +adv +verb +det +noun +det +adj +conj +verb +prep +noun +det +noun +conj +verb +prep +det +noun +det +verb +noun +conj +noun +conj +noun +conj +det +noun +verb +conj +verb +noun +prep +noun +adj +verb +prep +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +det +noun +verb +conj +det +noun +verb +conj +det +det +noun +verb +verb +verb +pron +adv +adv +verb +det +noun +det +noun +pron +noun +noun +verb +det +noun +pron +conj +verb +verb +det +noun +det +noun +pron +verb +pron +conj +verb +det +adj +conj +verb +pron +pron +noun +verb +pron +conj +pron +verb +verb +noun +conj +verb +pron +verb +det +noun +pron +conj +prep +adj +noun +verb +pron +conj +verb +det +adj +num +conj +num +noun +verb +det +noun +pron +conj +pron +prep +adj +noun +verb +pron +conj +pron +verb +prep +det +noun +det +noun +pron +conj +conj +verb +prep +adj +verb +det +noun +pron +conj +pron +verb +conj +verb +det +noun +conj +det +noun +pron +verb +det +noun +conj +conj +verb +prep +det +noun +prep +det +noun +prep +det +noun +adj +verb +prep +det +noun +pron +verb +pron +det +noun +pron +verb +conj +pron +noun +adv +verb +pron +pron +prep +det +pron +verb +adj +conj +conj +adv +noun +verb +conj +pron +verb +prep +det +noun +conj +pron +verb +pron +verb +prep +det +noun +conj +verb +noun +prep +det +noun +noun +det +adj +noun +noun +pron +pron +verb +prep +pron +noun +conj +verb +pron +noun +verb +conj +prep +noun +verb +noun +conj +adj +verb +pron +det +noun +pron +pron +verb +verb +conj +adv +verb +det +noun +prep +pron +verb +noun +conj +verb +pron +ptcl +ptcl +verb +pron +conj +adv +pron +verb +adv +adv +verb +verb +det +noun +det +noun +verb +prep +pron +det +noun +adv +verb +noun +verb +noun +verb +ptcl +verb +prep +det +noun +det +noun +pron +adj +verb +conj +verb +verb +noun +ptcl +ptcl +verb +pron +conj +adv +pron +verb +prep +noun +conj +noun +adv +verb +verb +prep +det +noun +det +noun +det +verb +prep +det +noun +noun +verb +conj +det +verb +prep +det +noun +noun +verb +adv +verb +conj +verb +pron +verb +pron +verb +adv +det +noun +conj +verb +verb +conj +det +noun +pron +verb +conj +adv +verb +adv +verb +conj +adv +verb +adv +verb +adj +det +verb +prep +det +noun +verb +noun +conj +verb +pron +adv +verb +pron +verb +verb +noun +conj +verb +pron +pron +verb +det +noun +det +noun +conj +pron +adv +verb +ptcl +ptcl +verb +pron +conj +pron +verb +verb +conj +pron +verb +verb +conj +det +noun +pron +adv +verb +conj +det +adj +verb +pron +conj +adv +verb +adv +conj +verb +pron +det +adj +verb +conj +adj +verb +prep +det +noun +conj +adv +det +prep +det +noun +verb +det +noun +det +noun +conj +conj +noun +verb +det +noun +prep +det +adj +adv +verb +verb +det +noun +det +noun +conj +adj +det +verb +prep +pron +verb +noun +adj +conj +adv +verb +det +noun +det +noun +conj +det +noun +det +adj +verb +conj +adj +det +verb +prep +pron +adv +verb +conj +verb +noun +adj +conj +adv +verb +det +noun +det +noun +prep +det +noun +conj +verb +det +noun +conj +conj +verb +det +noun +prep +pron +det +verb +prep +pron +adv +verb +det +adv +verb +adv +verb +conj +adv +verb +prep +det +noun +det +adj +noun +det +noun +conj +pron +verb +det +noun +conj +det +noun +verb +prep +det +noun +conj +verb +det +noun +adv +det +noun +conj +det +noun +conj +verb +adj +pron +det +noun +conj +adj +det +adj +verb +verb +det +noun +conj +adv +verb +prep +det +noun +conj +adv +verb +det +noun +pron +conj +det +verb +det +noun +verb +prep +det +noun +conj +verb +pron +det +noun +conj +prep +noun +verb +verb +prep +pron +verb +det +noun +conj +det +noun +pron +prep +det +adj +noun +conj +adv +verb +prep +pron +conj +verb +conj +verb +verb +adv +noun +prep +noun +prep +det +noun +conj +noun +adj +verb +adv +conj +verb +conj +verb +conj +adv +verb +verb +prep +det +noun +noun +conj +verb +noun +prep +det +noun +noun +prep +adj +prep +noun +conj +verb +prep +det +noun +conj +verb +pron +noun +pron +verb +prep +pron +prep +det +noun +pron +pron +verb +verb +pron +verb +conj +adj +verb +prep +pron +verb +noun +conj +verb +adv +verb +noun +verb +adj +conj +adv +verb +verb +pron +prep +det +noun +pron +pron +pron +verb +conj +verb +adv +verb +pron +det +noun +conj +conj +verb +verb +prep +pron +det +verb +det +noun +noun +verb +conj +det +adj +det +noun +det +verb +conj +verb +pron +noun +verb +prep +det +noun +det +noun +conj +pron +det +noun +det +adj +verb +verb +pron +verb +conj +pron +verb +det +adv +verb +prep +adj +verb +det +verb +prep +det +noun +prep +det +noun +verb +conj +prep +det +noun +verb +det +prep +det +noun +verb +prep +adj +verb +pron +verb +conj +verb +pron +verb +conj +det +noun +pron +adj +verb +det +verb +pron +det +noun +verb +conj +det +noun +adj +verb +conj +pron +verb +det +noun +det +noun +det +noun +verb +conj +adv +prep +noun +verb +det +noun +det +noun +verb +det +noun +conj +adj +verb +prep +det +noun +pron +det +verb +prep +det +noun +verb +noun +adj +conj +det +verb +det +noun +adv +verb +noun +conj +det +noun +det +noun +verb +prep +pron +conj +conj +verb +det +noun +conj +verb +det +noun +conj +noun +adj +noun +verb +conj +verb +conj +noun +conj +noun +pron +adv +verb +conj +det +noun +pron +verb +det +noun +conj +verb +adv +prep +det +noun +conj +verb +pron +verb +prep +det +noun +conj +verb +prep +noun +det +noun +verb +noun +prep +det +noun +pron +verb +noun +noun +det +noun +pron +conj +verb +adv +noun +det +noun +conj +det +noun +verb +prep +det +noun +verb +adv +prep +det +noun +noun +verb +prep +adj +verb +noun +prep +det +noun +verb +noun +verb +pron +det +noun +verb +pron +verb +conj +det +noun +pron +verb +prep +det +noun +conj +noun +verb +conj +verb +pron +det +noun +det +noun +adv +pron +adj +verb +prep +pron +noun +noun +verb +verb +verb +conj +adv +verb +adj +noun +verb +noun +conj +verb +pron +conj +verb +det +noun +det +noun +conj +pron +verb +det +verb +pron +verb +pron +verb +ptcl +pron +verb +pron +conj +ptcl +verb +pron +noun +verb +verb +pron +noun +conj +noun +verb +conj +det +noun +verb +adj +conj +adv +verb +det +noun +det +verb +ptcl +pron +adj +verb +det +noun +pron +noun +pron +verb +pron +det +noun +conj +pron +prep +pron +verb +conj +det +noun +pron +conj +det +noun +pron +verb +noun +conj +verb +pron +adj +det +verb +prep +det +noun +pron +verb +adv +conj +ptcl +pron +verb +prep +det +noun +pron +pron +verb +pron +adv +adv +verb +prep +det +noun +conj +det +noun +pron +verb +pron +verb +prep +pron +noun +noun +verb +prep +noun +adj +verb +prep +pron +det +noun +noun +verb +pron +pron +det +noun +conj +adv +verb +conj +verb +adv +verb +verb +pron +verb +verb +det +noun +pron +conj +verb +adv +verb +det +noun +conj +verb +adv +verb +noun +verb +pron +det +noun +adv +verb +conj +noun +adv +verb +conj +num +noun +verb +conj +pron +adv +verb +adv +verb +pron +noun +pron +adj +verb +verb +pron +det +noun +noun +verb +conj +noun +verb +pron +det +noun +pron +prep +det +noun +pron +verb +conj +pron +verb +conj +prep +noun +verb +det +noun +adv +verb +verb +verb +pron +det +noun +verb +pron +noun +conj +verb +noun +adv +conj +prep +det +noun +pron +conj +prep +noun +verb +det +noun +pron +verb +pron +adv +verb +pron +verb +pron +verb +conj +det +noun +prep +det +adj +verb +conj +verb +noun +conj +adv +verb +adv +det +adj +noun +verb +det +noun +prep +noun +conj +noun +conj +adv +det +noun +pron +verb +det +verb +pron +noun +det +noun +conj +det +verb +prep +noun +conj +noun +verb +verb +verb +pron +det +noun +verb +conj +noun +det +verb +noun +verb +conj +verb +pron +verb +pron +adj +verb +pron +det +noun +pron +det +verb +pron +verb +conj +prep +pron +verb +det +noun +pron +conj +verb +conj +prep +noun +verb +conj +adj +verb +pron +verb +conj +pron +verb +prep +pron +conj +verb +det +noun +pron +det +noun +conj +verb +prep +det +noun +conj +verb +det +noun +verb +verb +noun +pron +verb +pron +adj +pron +verb +ptcl +pron +verb +det +noun +verb +prep +det +noun +conj +verb +prep +pron +prep +det +adv +verb +pron +det +noun +verb +noun +verb +conj +det +verb +pron +pron +noun +verb +verb +pron +pron +adv +verb +conj +verb +det +noun +prep +pron +ptcl +pron +verb +pron +verb +verb +pron +det +noun +adj +noun +verb +conj +verb +det +noun +det +verb +pron +conj +verb +pron +det +noun +ptcl +pron +verb +conj +adv +adj +verb +conj +det +noun +verb +verb +verb +pron +verb +det +noun +pron +conj +verb +det +noun +conj +adj +verb +prep +noun +adv +det +verb +noun +verb +conj +verb +noun +prep +noun +adj +conj +adv +verb +det +verb +conj +det +verb +conj +prep +pron +det +noun +verb +adj +adv +adj +verb +det +verb +conj +adj +det +verb +pron +verb +pron +verb +pron +adv +pron +verb +adj +verb +conj +pron +prep +det +noun +pron +verb +conj +prep +det +noun +pron +adj +det +noun +verb +prep +pron +prep +det +noun +det +noun +verb +conj +verb +pron +adj +pron +verb +conj +conj +verb +prep +pron +det +noun +verb +pron +verb +prep +pron +conj +verb +adv +num +noun +conj +adj +adj +verb +prep +det +noun +pron +conj +det +noun +verb +conj +adv +prep +det +adj +noun +verb +conj +pron +verb +conj +verb +conj +pron +verb +adv +det +noun +det +noun +conj +prep +det +num +noun +verb +adv +prep +det +noun +conj +pron +noun +verb +conj +noun +prep +det +adj +noun +noun +adv +verb +conj +conj +verb +prep +det +noun +verb +pron +det +noun +verb +adj +pron +verb +prep +noun +prep +det +noun +conj +adv +pron +verb +prep +det +noun +conj +verb +adv +prep +det +noun +det +noun +adv +verb +det +noun +noun +conj +verb +pron +adj +pron +det +noun +verb +prep +noun +pron +verb +conj +noun +verb +prep +det +noun +prep +det +noun +verb +prep +pron +conj +verb +conj +verb +conj +verb +pron +det +noun +conj +verb +verb +conj +verb +det +noun +prep +pron +conj +adv +noun +conj +noun +verb +adv +adv +verb +verb +prep +pron +det +adj +noun +verb +conj +verb +det +noun +pron +verb +pron +det +noun +verb +det +noun +pron +verb +verb +det +noun +det +noun +pron +verb +pron +det +noun +conj +verb +conj +adv +pron +verb +det +noun +verb +pron +verb +conj +det +noun +pron +verb +conj +verb +det +noun +prep +pron +prep +pron +adj +verb +conj +verb +pron +conj +adv +noun +adj +verb +pron +det +noun +conj +verb +det +noun +conj +pron +det +noun +prep +pron +verb +pron +det +noun +det +noun +pron +verb +conj +verb +pron +conj +det +noun +pron +adj +conj +adv +pron +adj +noun +verb +det +noun +verb +prep +det +noun +prep +det +noun +prep +pron +verb +noun +det +adj +conj +verb +noun +prep +noun +conj +verb +prep +det +noun +prep +det +adj +noun +det +verb +adv +noun +num +noun +verb +prep +pron +verb +noun +det +verb +adj +adj +adj +verb +det +det +noun +noun +conj +noun +prep +noun +verb +prep +det +noun +conj +verb +det +noun +conj +det +adj +verb +prep +det +noun +det +noun +adj +verb +pron +ptcl +verb +noun +conj +verb +pron +noun +adv +num +conj +num +noun +verb +prep +det +noun +pron +det +noun +pron +verb +verb +conj +verb +conj +adj +noun +adv +verb +verb +pron +verb +adj +verb +verb +pron +det +verb +noun +noun +adv +verb +conj +conj +verb +det +noun +verb +pron +prep +det +noun +conj +prep +pron +verb +pron +adj +prep +pron +verb +verb +pron +det +noun +verb +verb +det +noun +pron +conj +verb +conj +adv +verb +adj +det +noun +conj +verb +det +noun +pron +conj +verb +conj +verb +noun +prep +pron +det +noun +conj +verb +det +adj +det +verb +noun +verb +conj +adv +verb +pron +verb +det +noun +conj +pron +verb +pron +det +verb +pron +adj +pron +pron +verb +verb +det +noun +pron +conj +verb +verb +pron +pron +verb +det +noun +det +verb +pron +verb +conj +verb +conj +det +verb +adv +verb +pron +verb +conj +det +noun +verb +noun +verb +prep +det +noun +prep +pron +verb +pron +det +noun +prep +det +noun +conj +verb +pron +verb +adj +verb +adv +verb +conj +adv +adj +pron +pron +verb +verb +det +noun +conj +verb +det +adj +conj +noun +verb +det +verb +pron +adj +conj +prep +pron +verb +det +adj +det +noun +conj +pron +verb +prep +noun +conj +det +verb +pron +det +noun +pron +prep +adv +verb +pron +verb +conj +prep +pron +adv +verb +pron +verb +det +adj +conj +adv +adj +verb +det +noun +conj +adv +noun +adj +verb +det +noun +adj +pron +verb +det +noun +conj +verb +det +noun +conj +verb +pron +ptcl +ptcl +verb +pron +adv +verb +det +noun +verb +prep +pron +adj +conj +adv +verb +pron +det +noun +verb +conj +ptcl +pron +pron +verb +pron +adv +det +noun +adv +verb +conj +det +noun +verb +det +noun +conj +verb +pron +adj +pron +pron +verb +conj +adj +pron +noun +verb +pron +conj +pron +verb +conj +conj +det +noun +verb +det +adj +conj +verb +adv +adv +det +noun +pron +verb +verb +conj +adv +det +noun +verb +adj +conj +det +noun +adj +verb +det +noun +conj +adj +verb +det +noun +conj +verb +det +noun +det +adv +verb +det +noun +adv +verb +det +noun +det +verb +pron +ptcl +ptcl +verb +pron +conj +det +det +noun +pron +verb +conj +verb +det +verb +pron +verb +noun +adj +conj +prep +noun +adv +verb +conj +verb +prep +det +noun +prep +det +noun +ptcl +ptcl +verb +pron +conj +verb +noun +conj +adv +verb +adv +det +adj +verb +det +noun +det +noun +det +noun +conj +det +verb +verb +conj +conj +det +noun +verb +noun +prep +pron +adv +adv +det +noun +verb +noun +verb +prep +pron +conj +noun +verb +pron +noun +verb +conj +noun +noun +verb +adv +verb +pron +conj +verb +noun +prep +pron +adj +det +prep +det +noun +verb +det +noun +pron +conj +verb +det +det +adj +verb +prep +noun +noun +det +det +adj +verb +prep +noun +noun +adv +verb +pron +verb +prep +pron +adj +conj +verb +verb +conj +det +noun +det +adj +adj +verb +conj +adv +verb +det +noun +det +adj +conj +det +noun +det +verb +pron +conj +pron +verb +prep +pron +det +noun +pron +adv +verb +adj +adj +verb +det +verb +prep +pron +conj +verb +conj +adj +verb +det +noun +pron +verb +prep +pron +pron +verb +prep +noun +conj +verb +det +noun +conj +pron +adv +prep +noun +det +noun +verb +conj +pron +verb +conj +pron +verb +pron +verb +det +noun +det +verb +conj +verb +conj +pron +verb +verb +prep +noun +prep +det +noun +pron +conj +pron +verb +det +noun +adj +det +noun +conj +det +noun +pron +verb +pron +det +noun +conj +verb +pron +pron +det +noun +pron +verb +verb +prep +pron +conj +det +noun +pron +verb +conj +det +verb +pron +noun +pron +verb +prep +pron +conj +noun +pron +adv +verb +conj +noun +pron +verb +conj +adv +verb +det +noun +pron +prep +pron +verb +conj +pron +verb +pron +pron +pron +adv +verb +verb +det +noun +conj +pron +verb +prep +pron +noun +adj +verb +conj +pron +verb +det +verb +prep +pron +conj +adv +verb +verb +prep +pron +conj +noun +verb +noun +prep +noun +adv +verb +conj +verb +pron +conj +det +noun +det +noun +adv +verb +prep +pron +pron +verb +prep +det +noun +det +noun +pron +conj +adv +verb +pron +conj +adj +verb +prep +det +noun +det +adj +pron +verb +adv +verb +pron +verb +noun +prep +pron +verb +conj +det +noun +det +prep +det +adj +noun +adv +verb +adv +verb +conj +pron +verb +pron +prep +det +noun +verb +det +verb +pron +noun +prep +pron +pron +verb +conj +conj +verb +noun +ptcl +verb +pron +conj +prep +pron +pron +verb +conj +conj +det +pron +noun +adv +verb +adv +det +adj +noun +verb +prep +pron +verb +det +noun +prep +det +noun +det +noun +det +noun +conj +verb +pron +noun +adj +conj +verb +det +noun +pron +verb +prep +det +verb +conj +verb +prep +det +noun +noun +conj +adv +verb +prep +det +noun +pron +conj +verb +adv +det +noun +det +noun +det +adj +conj +det +noun +verb +det +noun +conj +verb +conj +adj +noun +verb +prep +pron +verb +prep +noun +adv +verb +noun +conj +verb +pron +conj +pron +verb +verb +pron +conj +pron +verb +pron +verb +verb +verb +pron +det +noun +adj +noun +noun +adv +verb +pron +conj +adj +adj +pron +verb +verb +pron +adj +prep +det +noun +pron +noun +det +noun +noun +noun +verb +noun +adv +pron +verb +num +noun +adj +conj +num +noun +conj +pron +pron +verb +prep +pron +verb +det +noun +verb +det +noun +verb +conj +verb +noun +adj +prep +det +noun +conj +verb +det +noun +det +noun +adv +adj +conj +verb +det +noun +det +noun +conj +verb +verb +det +verb +adv +conj +prep +det +noun +pron +verb +conj +conj +verb +verb +det +noun +pron +verb +det +verb +noun +conj +adv +pron +verb +conj +verb +conj +verb +num +noun +noun +prep +det +num +noun +det +adj +pron +verb +det +verb +conj +det +noun +verb +pron +verb +noun +verb +conj +pron +verb +adv +det +noun +det +verb +prep +det +noun +conj +verb +conj +verb +verb +conj +verb +pron +conj +verb +noun +verb +adv +prep +det +noun +noun +pron +adj +conj +conj +adj +verb +verb +det +noun +pron +prep +det +noun +conj +verb +prep +noun +verb +prep +det +noun +prep +noun +conj +noun +adv +verb +conj +adv +verb +prep +pron +det +noun +conj +det +noun +noun +adj +verb +verb +conj +verb +adv +noun +num +num +conj +num +verb +det +noun +verb +prep +det +noun +conj +prep +det +noun +verb +conj +verb +conj +det +verb +pron +pron +verb +adv +verb +conj +verb +verb +pron +prep +det +noun +conj +adv +verb +det +noun +prep +det +noun +prep +pron +verb +det +adv +det +noun +det +verb +prep +det +noun +verb +conj +noun +adj +adv +verb +adv +conj +adv +adj +conj +conj +adv +verb +det +noun +pron +det +noun +prep +det +noun +conj +adj +det +noun +pron +verb +conj +noun +verb +prep +noun +prep +det +noun +adv +verb +det +noun +verb +det +noun +conj +conj +verb +det +noun +conj +noun +adv +verb +adv +conj +det +noun +pron +verb +pron +prep +det +noun +conj +verb +prep +noun +verb +det +noun +conj +verb +pron +prep +det +noun +verb +pron +noun +adv +adv +verb +verb +pron +det +noun +conj +verb +ptcl +ptcl +verb +pron +verb +pron +adv +conj +verb +noun +conj +conj +verb +prep +det +noun +conj +verb +verb +adv +det +noun +det +verb +conj +det +noun +det +verb +prep +noun +adj +pron +det +noun +det +noun +pron +verb +conj +pron +det +noun +det +noun +verb +conj +verb +prep +pron +pron +verb +conj +verb +det +noun +det +noun +verb +noun +conj +verb +pron +pron +verb +det +noun +det +noun +adv +verb +prep +pron +verb +pron +conj +verb +pron +conj +pron +noun +verb +pron +conj +verb +conj +verb +pron +pron +verb +det +noun +pron +det +noun +verb +prep +det +adj +conj +verb +verb +noun +prep +det +noun +verb +pron +verb +conj +verb +pron +det +noun +ptcl +ptcl +verb +pron +adv +noun +verb +pron +det +noun +prep +det +noun +conj +det +noun +pron +verb +pron +det +noun +prep +det +noun +det +adj +conj +det +noun +det +noun +verb +det +verb +prep +det +noun +conj +noun +verb +det +noun +conj +verb +prep +pron +noun +adv +verb +pron +det +noun +pron +verb +pron +det +noun +pron +verb +det +noun +det +noun +det +verb +prep +pron +adv +adv +verb +conj +det +verb +prep +pron +adv +adv +verb +adv +conj +verb +pron +conj +conj +verb +pron +conj +adv +verb +adj +pron +verb +pron +det +noun +prep +pron +verb +conj +det +verb +prep +pron +adv +adv +verb +adv +conj +verb +prep +det +noun +adv +conj +verb +det +noun +det +adj +conj +det +noun +det +verb +pron +conj +pron +verb +det +noun +det +verb +pron +adv +adj +pron +verb +pron +adv +verb +prep +pron +conj +verb +pron +prep +det +adj +noun +conj +pron +verb +det +noun +det +noun +pron +adv +adj +det +verb +det +noun +conj +verb +prep +pron +verb +noun +adj +conj +verb +pron +pron +prep +det +adj +noun +conj +verb +det +adj +prep +pron +conj +verb +pron +verb +det +noun +det +verb +prep +det +noun +conj +verb +ptcl +pron +verb +noun +det +noun +noun +pron +pron +verb +det +noun +conj +det +noun +adv +adv +verb +conj +prep +det +noun +verb +verb +noun +conj +verb +pron +adv +verb +prep +pron +adj +verb +verb +prep +pron +conj +adv +det +noun +det +verb +pron +verb +pron +pron +verb +pron +prep +det +adj +noun +verb +verb +prep +det +noun +conj +verb +adj +adj +noun +adj +det +verb +prep +det +noun +conj +verb +verb +prep +pron +adv +conj +det +noun +verb +pron +conj +adv +det +verb +prep +det +noun +pron +verb +det +noun +ptcl +ptcl +verb +pron +det +verb +verb +noun +adj +pron +verb +det +noun +det +noun +det +noun +pron +verb +prep +det +adj +det +noun +conj +verb +pron +verb +det +noun +det +prep +det +noun +verb +conj +pron +prep +pron +verb +conj +adv +verb +pron +verb +det +noun +det +verb +det +prep +det +noun +verb +conj +pron +verb +prep +pron +det +noun +verb +prep +det +noun +conj +conj +det +noun +pron +pron +verb +det +noun +pron +verb +prep +det +det +noun +noun +conj +verb +prep +pron +det +adj +verb +adv +verb +pron +pron +verb +det +noun +verb +conj +verb +pron +det +noun +ptcl +ptcl +verb +pron +conj +adv +verb +det +noun +det +noun +det +noun +conj +verb +pron +det +noun +adv +verb +noun +prep +pron +det +verb +pron +det +noun +conj +verb +pron +det +noun +verb +noun +adj +pron +verb +pron +det +adj +noun +conj +det +noun +pron +adj +noun +verb +conj +det +noun +pron +adj +noun +verb +det +verb +pron +det +noun +conj +verb +pron +det +noun +prep +pron +verb +pron +prep +pron +conj +verb +pron +det +verb +noun +pron +verb +prep +det +noun +conj +det +verb +pron +pron +verb +prep +pron +pron +verb +det +noun +det +prep +noun +verb +adv +conj +verb +det +noun +conj +verb +det +verb +pron +det +noun +verb +prep +det +noun +pron +verb +prep +noun +verb +prep +noun +conj +adj +prep +det +noun +pron +verb +verb +adj +verb +det +noun +pron +pron +verb +pron +verb +conj +det +noun +verb +prep +pron +conj +verb +prep +pron +det +noun +pron +verb +pron +pron +pron +verb +conj +conj +verb +det +noun +det +noun +verb +conj +verb +det +adj +det +noun +verb +det +verb +det +noun +adv +verb +adj +det +noun +pron +pron +verb +pron +noun +verb +conj +noun +verb +conj +verb +prep +pron +pron +pron +adv +verb +conj +verb +prep +noun +det +noun +pron +verb +det +adv +verb +conj +pron +verb +det +verb +pron +conj +verb +prep +pron +verb +pron +conj +adj +verb +verb +prep +pron +conj +adv +verb +verb +pron +prep +det +noun +prep +pron +adj +det +noun +pron +verb +prep +det +adv +conj +adv +prep +pron +verb +conj +verb +det +noun +det +num +ptcl +adv +pron +verb +verb +verb +pron +noun +noun +noun +prep +pron +verb +noun +noun +adj +verb +conj +pron +verb +conj +verb +conj +pron +verb +det +adj +det +noun +verb +pron +det +noun +ptcl +pron +pron +det +num +verb +conj +prep +pron +adj +adj +verb +conj +verb +det +noun +noun +noun +conj +pron +verb +verb +pron +adj +prep +det +num +conj +prep +pron +verb +det +noun +prep +det +noun +conj +adv +verb +prep +det +noun +verb +conj +verb +pron +verb +det +adj +conj +verb +adv +det +noun +det +adj +det +noun +conj +verb +prep +pron +det +noun +pron +verb +adv +conj +verb +prep +det +noun +conj +adv +det +noun +pron +verb +det +noun +pron +pron +verb +conj +adj +pron +prep +adj +verb +conj +verb +pron +prep +noun +verb +conj +pron +verb +verb +pron +det +noun +conj +adv +det +noun +pron +verb +prep +pron +conj +verb +pron +det +noun +det +noun +det +adj +adv +verb +conj +det +noun +det +adj +adv +verb +adj +adv +verb +det +noun +verb +pron +conj +pron +verb +conj +pron +verb +prep +pron +conj +det +noun +pron +adj +verb +pron +verb +prep +det +noun +pron +adv +verb +prep +det +noun +pron +conj +det +adj +noun +adv +verb +conj +pron +verb +pron +verb +prep +det +noun +conj +conj +verb +det +noun +pron +prep +det +noun +adv +adv +pron +verb +adv +adv +conj +conj +prep +adj +conj +det +adj +verb +pron +prep +det +noun +conj +verb +adv +verb +pron +conj +noun +prep +pron +verb +adj +prep +det +noun +conj +det +verb +conj +adj +verb +conj +adj +verb +ptcl +conj +verb +det +noun +conj +adj +noun +verb +prep +pron +prep +det +noun +det +adj +conj +adv +det +noun +verb +verb +noun +prep +det +noun +conj +verb +conj +verb +det +adj +verb +adv +pron +noun +verb +adv +verb +conj +verb +pron +noun +conj +verb +det +adj +noun +adv +verb +adj +conj +det +verb +pron +conj +pron +verb +det +noun +pron +verb +verb +prep +det +noun +adv +prep +det +noun +verb +conj +pron +prep +pron +verb +det +prep +pron +verb +det +noun +det +adj +verb +conj +det +verb +det +noun +det +verb +pron +pron +adj +verb +conj +noun +prep +pron +adv +verb +ptcl +noun +verb +pron +det +noun +conj +adj +prep +pron +verb +det +noun +pron +pron +verb +verb +verb +det +noun +noun +verb +pron +pron +verb +verb +verb +noun +conj +verb +pron +adj +noun +verb +conj +adj +verb +prep +pron +noun +verb +pron +det +noun +conj +adv +prep +det +noun +verb +conj +prep +det +noun +conj +prep +noun +verb +noun +conj +noun +verb +noun +prep +noun +conj +adv +verb +det +noun +noun +pron +verb +conj +adj +noun +adj +verb +prep +noun +adv +verb +prep +noun +conj +det +adj +noun +verb +conj +verb +pron +prep +det +noun +ptcl +pron +verb +pron +verb +verb +conj +verb +noun +verb +conj +adj +pron +verb +ptcl +adv +adv +verb +det +noun +conj +pron +verb +det +noun +conj +pron +verb +adv +verb +conj +det +noun +conj +verb +adj +verb +adv +verb +conj +verb +prep +det +noun +verb +det +noun +conj +verb +pron +verb +conj +verb +adv +verb +conj +prep +pron +adv +verb +conj +verb +adj +det +verb +pron +pron +pron +adv +verb +pron +verb +pron +conj +prep +pron +verb +pron +pron +verb +conj +verb +pron +verb +conj +adj +verb +prep +pron +det +noun +conj +adv +verb +det +noun +pron +conj +prep +det +noun +adj +verb +prep +pron +conj +verb +det +noun +conj +verb +ptcl +adj +noun +verb +pron +pron +verb +verb +det +noun +det +noun +verb +prep +pron +pron +conj +verb +det +noun +conj +det +noun +noun +conj +verb +pron +conj +verb +det +noun +adv +noun +adj +prep +pron +verb +conj +verb +prep +det +verb +pron +verb +pron +conj +adv +verb +conj +conj +verb +pron +verb +pron +adv +verb +conj +verb +det +adj +prep +pron +adv +verb +pron +verb +conj +pron +adv +verb +pron +ptcl +verb +prep +det +noun +det +noun +verb +conj +verb +det +noun +pron +verb +det +noun +pron +pron +verb +verb +pron +conj +adv +verb +conj +conj +verb +pron +verb +pron +adv +verb +conj +prep +det +adj +noun +det +adj +det +noun +verb +det +noun +conj +verb +verb +conj +pron +verb +verb +prep +pron +conj +verb +det +verb +prep +pron +conj +verb +det +noun +noun +noun +verb +prep +det +noun +pron +verb +conj +pron +verb +prep +det +noun +pron +verb +verb +det +verb +prep +pron +conj +adv +verb +noun +conj +noun +adv +verb +conj +prep +det +noun +verb +det +noun +pron +verb +pron +verb +adv +det +noun +adj +verb +pron +verb +det +noun +conj +det +verb +conj +ptcl +prep +det +noun +det +noun +verb +ptcl +det +noun +verb +conj +prep +det +noun +noun +conj +prep +noun +det +noun +adv +verb +noun +verb +det +noun +conj +noun +verb +prep +det +noun +prep +pron +conj +pron +prep +pron +verb +verb +pron +conj +adj +verb +prep +pron +det +noun +conj +verb +det +noun +prep +det +noun +conj +noun +conj +verb +pron +pron +prep +pron +adv +verb +pron +verb +det +noun +adv +verb +adv +noun +adv +pron +det +noun +verb +conj +verb +pron +det +noun +ptcl +adv +pron +verb +ptcl +pron +prep +det +noun +verb +prep +pron +conj +prep +det +noun +conj +det +noun +pron +det +adv +verb +det +noun +adj +verb +verb +prep +pron +noun +det +verb +prep +pron +adj +verb +adj +prep +pron +ptcl +det +noun +pron +verb +det +noun +conj +adv +verb +adj +prep +pron +conj +verb +pron +verb +verb +conj +verb +pron +ptcl +adv +pron +prep +det +noun +verb +verb +conj +verb +conj +prep +det +noun +noun +adv +verb +conj +verb +adj +prep +det +noun +pron +conj +noun +verb +prep +det +noun +det +noun +conj +noun +adv +verb +prep +det +noun +conj +adj +det +noun +verb +prep +pron +conj +verb +verb +pron +conj +verb +det +noun +conj +det +noun +prep +pron +noun +prep +noun +verb +conj +verb +pron +prep +adj +verb +pron +noun +pron +det +noun +verb +adj +verb +conj +prep +det +noun +noun +pron +verb +det +pron +verb +conj +pron +pron +verb +conj +pron +verb +verb +pron +conj +verb +verb +pron +conj +det +noun +adv +verb +det +noun +verb +prep +det +noun +conj +conj +verb +verb +pron +verb +verb +prep +pron +det +adj +pron +adj +det +noun +prep +pron +verb +conj +adv +adv +verb +verb +prep +det +noun +conj +det +verb +conj +prep +det +noun +verb +verb +adj +adv +verb +prep +det +adj +adv +det +adj +conj +verb +adj +det +noun +conj +det +noun +prep +adj +verb +conj +det +noun +verb +conj +adj +verb +adv +det +noun +verb +pron +det +noun +adv +verb +pron +det +noun +pron +adj +pron +verb +conj +det +verb +adj +noun +conj +verb +pron +det +noun +adv +pron +pron +verb +verb +conj +adv +verb +conj +adv +pron +verb +det +noun +verb +pron +verb +det +noun +det +noun +det +verb +pron +adv +adv +verb +prep +det +noun +conj +verb +det +noun +det +noun +conj +verb +pron +det +noun +pron +prep +pron +verb +det +noun +pron +adv +verb +adj +verb +noun +conj +verb +pron +adv +pron +verb +prep +pron +adj +verb +det +noun +pron +conj +verb +adv +verb +conj +adv +verb +conj +pron +adv +verb +adv +verb +conj +adv +verb +pron +prep +det +noun +verb +pron +adv +verb +adj +conj +conj +adv +verb +pron +det +noun +det +adj +adj +verb +conj +adj +adv +verb +conj +pron +conj +det +verb +pron +conj +adv +prep +det +noun +det +adj +verb +conj +num +noun +det +noun +adj +verb +pron +verb +det +verb +prep +pron +conj +verb +prep +pron +det +verb +pron +noun +conj +verb +pron +adv +verb +det +noun +pron +verb +noun +conj +pron +verb +conj +det +noun +pron +conj +pron +verb +ptcl +adv +det +noun +pron +verb +pron +det +noun +verb +prep +det +noun +verb +prep +det +noun +conj +adj +verb +pron +conj +adv +verb +det +noun +pron +conj +verb +adv +pron +pron +verb +conj +verb +pron +conj +prep +det +noun +pron +verb +conj +pron +verb +verb +pron +adv +verb +conj +verb +det +adj +ptcl +verb +pron +conj +verb +conj +pron +verb +verb +pron +adv +verb +conj +verb +pron +pron +prep +det +adv +verb +pron +prep +det +adv +verb +pron +prep +pron +det +noun +verb +pron +adv +verb +prep +det +noun +pron +conj +verb +pron +conj +verb +prep +det +noun +pron +conj +conj +adv +verb +conj +pron +verb +verb +prep +det +noun +pron +conj +verb +pron +pron +pron +verb +verb +pron +det +noun +pron +pron +det +noun +adv +verb +pron +verb +adj +prep +pron +verb +conj +verb +conj +det +verb +pron +adj +verb +pron +pron +verb +prep +pron +pron +verb +prep +det +noun +adv +verb +conj +det +noun +pron +verb +conj +verb +det +noun +conj +verb +det +noun +det +noun +adv +verb +conj +pron +verb +conj +prep +pron +verb +adj +conj +conj +verb +pron +det +noun +pron +verb +conj +det +verb +pron +prep +pron +verb +adv +verb +pron +adj +conj +pron +det +adj +pron +verb +adv +pron +pron +verb +adj +verb +prep +pron +conj +verb +det +noun +prep +det +verb +pron +adj +conj +pron +verb +prep +det +noun +det +adj +adv +noun +pron +verb +conj +verb +det +noun +conj +det +noun +verb +pron +verb +prep +pron +noun +noun +verb +conj +adj +verb +adv +adv +pron +verb +conj +adj +verb +verb +pron +det +noun +ptcl +ptcl +verb +pron +conj +adj +det +verb +det +noun +verb +noun +det +noun +conj +det +noun +adv +verb +prep +det +noun +prep +det +noun +det +noun +verb +prep +det +noun +conj +conj +det +noun +pron +verb +adv +adj +verb +verb +conj +noun +noun +verb +conj +verb +pron +verb +conj +det +noun +det +adj +adv +verb +prep +pron +pron +pron +verb +prep +det +noun +verb +conj +adv +pron +pron +verb +prep +det +noun +verb +verb +conj +verb +pron +det +noun +pron +noun +verb +verb +pron +det +noun +conj +noun +det +noun +verb +det +noun +det +noun +verb +conj +adv +verb +verb +pron +noun +pron +det +noun +pron +verb +pron +verb +prep +det +noun +pron +noun +adv +verb +pron +verb +det +noun +det +noun +pron +verb +pron +pron +prep +noun +adv +verb +adj +noun +det +noun +verb +verb +pron +det +noun +conj +det +noun +noun +pron +verb +ptcl +verb +pron +conj +pron +prep +det +noun +verb +conj +verb +conj +adv +prep +pron +verb +conj +pron +pron +verb +prep +pron +det +noun +det +adj +adv +verb +conj +adv +verb +verb +det +noun +det +adj +pron +prep +det +noun +det +adj +verb +conj +det +noun +det +noun +pron +verb +verb +pron +adj +verb +prep +noun +conj +prep +det +noun +adv +verb +conj +adv +verb +noun +prep +pron +conj +verb +det +noun +prep +det +adj +verb +conj +noun +verb +conj +det +noun +pron +conj +pron +conj +det +noun +verb +adv +verb +pron +pron +prep +pron +verb +pron +prep +noun +conj +noun +verb +prep +pron +pron +adv +verb +pron +det +verb +prep +det +noun +det +noun +det +noun +verb +prep +pron +pron +adv +verb +conj +prep +det +noun +adv +verb +verb +det +adj +conj +verb +pron +ptcl +adv +verb +pron +conj +noun +verb +pron +conj +noun +verb +verb +noun +pron +noun +adv +verb +conj +verb +det +noun +pron +conj +pron +verb +pron +conj +pron +adv +verb +det +noun +pron +verb +det +verb +conj +verb +ptcl +ptcl +verb +pron +conj +pron +det +adj +noun +verb +noun +adv +adv +verb +prep +det +noun +verb +pron +det +adj +adv +verb +conj +noun +verb +noun +verb +conj +det +noun +conj +pron +verb +conj +pron +det +noun +pron +verb +adv +adv +verb +noun +prep +det +noun +ptcl +pron +adj +verb +det +noun +pron +noun +pron +verb +conj +det +noun +verb +pron +pron +verb +verb +noun +conj +pron +verb +pron +det +noun +pron +adj +verb +verb +det +noun +pron +det +verb +pron +pron +pron +verb +conj +noun +pron +verb +conj +adv +verb +pron +conj +pron +verb +pron +conj +verb +conj +adv +verb +pron +verb +adj +pron +noun +conj +verb +pron +conj +det +noun +pron +verb +noun +det +noun +pron +verb +conj +verb +det +noun +det +adj +conj +verb +conj +verb +conj +verb +det +adj +prep +pron +num +noun +adv +verb +conj +noun +verb +verb +pron +noun +ptcl +ptcl +verb +pron +conj +noun +verb +pron +verb +conj +verb +noun +conj +verb +prep +pron +conj +noun +verb +conj +verb +prep +det +noun +conj +verb +verb +noun +adj +prep +noun +conj +verb +pron +det +noun +pron +verb +noun +pron +verb +pron +conj +det +noun +pron +conj +adj +verb +verb +noun +conj +pron +verb +conj +det +noun +pron +conj +conj +verb +det +noun +det +noun +prep +pron +verb +pron +verb +det +noun +det +verb +pron +conj +noun +verb +verb +noun +adv +adj +verb +verb +conj +prep +det +noun +verb +verb +noun +det +noun +pron +verb +verb +adv +conj +verb +noun +prep +det +noun +conj +verb +pron +det +noun +prep +det +noun +conj +verb +pron +verb +verb +prep +det +noun +det +noun +pron +verb +verb +conj +verb +conj +verb +conj +verb +verb +conj +det +noun +conj +det +verb +pron +det +adj +conj +noun +verb +verb +ptcl +pron +verb +det +verb +conj +verb +adj +verb +conj +pron +verb +adj +verb +adv +conj +adj +pron +verb +pron +verb +conj +pron +verb +conj +verb +pron +conj +adv +verb +pron +det +noun +verb +pron +det +noun +det +verb +noun +noun +verb +conj +verb +pron +det +noun +conj +verb +pron +conj +verb +prep +det +noun +conj +verb +conj +verb +conj +verb +verb +conj +verb +pron +adv +verb +pron +verb +adv +verb +verb +pron +det +adv +adj +prep +det +noun +conj +verb +noun +prep +pron +noun +det +noun +verb +det +noun +conj +verb +pron +det +noun +conj +adv +verb +pron +adv +det +noun +adv +verb +conj +det +verb +pron +noun +verb +prep +pron +det +noun +conj +verb +conj +verb +conj +verb +prep +det +noun +pron +adv +verb +prep +noun +pron +det +noun +conj +det +noun +adv +verb +adj +verb +adv +verb +noun +adj +pron +noun +verb +conj +noun +verb +prep +pron +conj +verb +det +adj +adv +pron +pron +verb +prep +pron +conj +verb +pron +det +noun +conj +det +verb +conj +noun +verb +conj +adv +verb +det +adj +prep +pron +conj +verb +adj +conj +verb +prep +pron +verb +det +noun +pron +det +verb +conj +verb +pron +verb +pron +verb +det +noun +pron +pron +pron +verb +conj +adj +verb +conj +adv +verb +adv +conj +verb +det +noun +pron +conj +verb +verb +conj +pron +verb +det +noun +pron +conj +conj +adj +verb +conj +adv +adv +verb +adv +verb +conj +pron +verb +pron +det +noun +pron +adv +verb +pron +verb +noun +verb +pron +prep +pron +verb +pron +verb +det +noun +pron +conj +verb +det +adj +conj +adv +verb +det +adj +conj +conj +pron +pron +verb +noun +adj +verb +prep +pron +det +noun +pron +verb +conj +noun +verb +pron +verb +conj +verb +det +noun +prep +adj +pron +verb +adj +conj +verb +pron +verb +noun +det +noun +pron +verb +conj +pron +det +noun +adj +verb +conj +verb +pron +ptcl +adj +verb +adv +verb +adj +verb +adv +adj +verb +adv +verb +conj +verb +pron +pron +verb +pron +adv +verb +pron +det +noun +verb +pron +verb +pron +adv +conj +adv +verb +pron +adv +verb +verb +ptcl +adv +pron +verb +pron +noun +verb +conj +verb +pron +conj +verb +pron +noun +pron +verb +conj +pron +det +noun +noun +verb +pron +verb +conj +noun +verb +det +noun +conj +pron +adv +verb +adv +verb +verb +det +noun +conj +verb +pron +conj +prep +pron +det +adj +verb +adv +pron +adv +verb +adv +verb +conj +verb +pron +det +noun +verb +conj +det +noun +adj +adv +verb +conj +conj +pron +adj +verb +conj +det +noun +pron +verb +pron +verb +prep +det +noun +adv +verb +conj +verb +pron +noun +adj +verb +conj +adv +verb +pron +prep +noun +adv +verb +verb +adj +verb +conj +verb +pron +prep +noun +pron +verb +adj +conj +pron +verb +pron +conj +verb +pron +adv +verb +noun +conj +verb +pron +adv +conj +verb +pron +verb +pron +verb +prep +det +noun +det +noun +verb +pron +conj +verb +conj +pron +verb +noun +conj +verb +prep +pron +verb +pron +det +noun +conj +verb +pron +conj +det +verb +prep +pron +pron +verb +conj +det +verb +verb +noun +conj +verb +pron +conj +verb +det +noun +prep +noun +pron +prep +det +noun +pron +verb +conj +det +adv +verb +verb +conj +det +verb +adj +verb +verb +pron +prep +det +noun +det +prep +pron +verb +conj +verb +pron +ptcl +adv +pron +adj +verb +verb +pron +det +noun +conj +adj +verb +ptcl +adv +verb +noun +conj +adv +verb +conj +verb +det +noun +pron +verb +ptcl +ptcl +verb +pron +det +adv +verb +prep +det +noun +prep +det +noun +det +noun +conj +verb +adv +pron +noun +verb +conj +noun +conj +det +verb +prep +det +noun +verb +noun +det +noun +pron +det +noun +verb +conj +det +noun +det +noun +pron +verb +conj +det +adj +noun +verb +prep +noun +conj +verb +pron +conj +det +adj +adj +verb +prep +pron +verb +conj +det +noun +pron +verb +conj +verb +det +noun +pron +conj +adj +adv +adv +verb +conj +verb +prep +pron +conj +adv +verb +det +adj +det +noun +pron +det +noun +verb +pron +det +noun +conj +pron +adv +verb +pron +verb +pron +verb +pron +conj +verb +adv +det +noun +ptcl +ptcl +verb +pron +conj +pron +verb +det +noun +det +noun +adj +pron +verb +prep +pron +noun +verb +conj +noun +conj +adv +verb +pron +det +noun +pron +verb +det +noun +conj +prep +pron +pron +verb +verb +conj +verb +conj +verb +conj +noun +verb +det +noun +adv +verb +conj +adv +conj +verb +conj +verb +conj +verb +pron +verb +conj +noun +verb +conj +adj +verb +pron +verb +det +noun +det +adj +det +noun +det +adj +det +noun +pron +verb +prep +det +noun +det +noun +conj +adv +verb +noun +pron +adv +verb +det +noun +adj +verb +det +noun +verb +conj +verb +det +noun +conj +verb +conj +det +noun +verb +pron +conj +verb +conj +noun +verb +conj +adv +verb +pron +prep +det +noun +pron +verb +det +noun +det +adj +conj +verb +det +adj +conj +verb +pron +det +adj +conj +verb +pron +det +noun +pron +verb +det +noun +conj +det +noun +pron +verb +prep +det +noun +conj +adj +noun +verb +pron +adv +verb +prep +det +noun +pron +pron +pron +verb +verb +conj +det +noun +pron +verb +conj +verb +adj +noun +adj +noun +prep +pron +pron +det +noun +verb +conj +pron +verb +det +noun +pron +conj +adv +verb +pron +adj +verb +pron +prep +pron +conj +pron +verb +pron +prep +pron +noun +verb +verb +pron +conj +noun +verb +adv +verb +pron +pron +det +noun +verb +prep +det +noun +pron +noun +adv +verb +prep +det +adj +prep +det +noun +pron +conj +verb +adj +prep +pron +noun +verb +conj +verb +pron +pron +verb +adj +verb +pron +det +noun +adv +verb +verb +ptcl +noun +verb +adj +noun +verb +verb +adv +det +noun +prep +det +noun +noun +verb +conj +verb +det +noun +prep +det +noun +prep +det +noun +det +noun +conj +verb +pron +det +adj +conj +verb +pron +prep +adv +det +noun +pron +verb +conj +pron +verb +det +noun +verb +pron +noun +verb +pron +det +noun +verb +pron +conj +adv +verb +det +noun +pron +pron +verb +prep +det +noun +det +noun +pron +pron +verb +prep +pron +conj +pron +adv +verb +conj +adv +verb +prep +det +noun +det +adj +det +noun +det +adj +det +noun +pron +verb +pron +verb +pron +conj +verb +pron +pron +verb +pron +noun +adj +conj +adv +adv +verb +prep +det +noun +conj +adv +verb +pron +pron +prep +det +noun +pron +det +noun +pron +pron +verb +pron +adj +adj +verb +conj +adj +verb +verb +prep +det +noun +det +noun +pron +conj +det +noun +adj +verb +verb +adv +noun +det +adj +conj +verb +pron +verb +pron +det +noun +adj +noun +adj +verb +pron +prep +det +noun +prep +pron +pron +noun +pron +verb +verb +pron +det +adj +prep +adj +noun +adv +verb +pron +conj +prep +noun +conj +conj +pron +noun +verb +verb +pron +noun +verb +pron +det +noun +ptcl +verb +verb +prep +det +noun +pron +conj +pron +verb +noun +verb +conj +pron +verb +noun +prep +pron +det +noun +det +noun +verb +conj +adv +verb +verb +det +noun +pron +det +noun +verb +conj +verb +prep +det +noun +pron +verb +conj +verb +conj +verb +noun +det +noun +verb +conj +adv +verb +det +noun +det +noun +pron +adv +verb +pron +conj +conj +verb +adv +pron +adv +verb +det +noun +verb +conj +verb +conj +verb +conj +prep +pron +det +noun +pron +prep +det +noun +conj +verb +pron +verb +adv +conj +verb +prep +det +noun +pron +conj +verb +adv +prep +det +noun +prep +det +noun +adv +verb +verb +noun +det +adj +conj +verb +adv +conj +adj +verb +prep +pron +conj +verb +conj +conj +noun +noun +adj +verb +conj +adj +pron +verb +noun +prep +pron +adj +verb +conj +adj +verb +prep +pron +adv +conj +verb +pron +verb +noun +prep +noun +prep +det +noun +noun +conj +noun +det +noun +pron +conj +verb +noun +det +verb +det +noun +noun +conj +verb +det +noun +pron +det +noun +pron +pron +det +noun +noun +verb +conj +verb +det +noun +prep +pron +verb +noun +verb +pron +verb +verb +conj +verb +det +noun +verb +pron +det +noun +adv +verb +prep +noun +conj +prep +det +noun +det +noun +conj +verb +det +noun +det +noun +prep +pron +conj +verb +det +noun +det +noun +conj +det +noun +pron +conj +det +noun +conj +conj +verb +conj +verb +ptcl +adv +verb +prep +pron +verb +noun +num +noun +adv +prep +pron +verb +det +noun +verb +prep +det +noun +adv +verb +pron +det +noun +noun +adv +verb +pron +verb +det +adj +conj +adv +verb +adv +verb +noun +ptcl +num +noun +verb +det +noun +conj +pron +verb +prep +det +noun +adv +verb +conj +det +noun +det +noun +pron +verb +conj +conj +pron +verb +prep +det +noun +verb +conj +det +noun +adv +verb +prep +pron +pron +verb +conj +prep +pron +verb +pron +noun +det +adj +pron +verb +conj +verb +conj +verb +pron +conj +verb +det +noun +pron +noun +conj +verb +verb +conj +verb +det +noun +prep +det +noun +pron +conj +pron +verb +conj +prep +det +noun +det +noun +verb +conj +adv +verb +pron +det +noun +noun +noun +verb +conj +verb +prep +pron +conj +verb +conj +adv +verb +adv +conj +verb +prep +pron +conj +verb +noun +det +verb +noun +det +noun +verb +adv +pron +conj +verb +prep +pron +conj +verb +det +noun +verb +pron +adj +noun +adv +verb +prep +det +noun +conj +verb +noun +prep +det +noun +adv +prep +noun +num +conj +adj +prep +det +adj +verb +prep +det +noun +conj +noun +conj +verb +pron +prep +det +noun +conj +conj +verb +conj +noun +verb +det +noun +verb +pron +conj +noun +prep +det +noun +verb +conj +verb +det +noun +prep +noun +noun +conj +verb +adv +ptcl +adv +verb +det +noun +pron +adv +adv +verb +conj +ptcl +pron +verb +det +noun +verb +pron +det +noun +verb +pron +det +noun +verb +det +noun +pron +verb +pron +det +noun +verb +conj +verb +prep +det +noun +prep +det +adj +noun +verb +pron +det +noun +pron +verb +det +noun +conj +det +noun +det +verb +prep +pron +adv +verb +verb +conj +adj +det +verb +conj +verb +prep +pron +adv +adv +verb +prep +det +noun +verb +pron +verb +pron +ptcl +noun +pron +verb +conj +pron +verb +det +noun +det +noun +det +noun +det +prep +det +noun +verb +conj +pron +verb +verb +conj +verb +noun +det +noun +pron +adv +verb +det +noun +verb +conj +verb +pron +conj +pron +conj +verb +verb +adj +conj +verb +prep +pron +conj +adv +verb +det +noun +prep +det +noun +conj +verb +adv +prep +det +noun +adv +verb +pron +det +noun +conj +det +adj +det +verb +prep +pron +prep +det +noun +conj +verb +pron +verb +det +noun +conj +adv +verb +conj +verb +verb +pron +verb +conj +verb +prep +det +noun +conj +verb +adv +conj +det +noun +conj +verb +conj +verb +noun +verb +pron +verb +prep +pron +det +noun +verb +pron +noun +conj +verb +adv +ptcl +adv +verb +pron +det +noun +conj +noun +conj +verb +pron +verb +conj +det +verb +pron +adj +verb +verb +det +noun +conj +verb +pron +conj +verb +adv +verb +pron +verb +pron +noun +verb +conj +verb +verb +det +noun +conj +verb +det +adj +verb +adv +verb +pron +conj +pron +prep +pron +verb +ptcl +verb +pron +det +verb +det +noun +det +adj +verb +conj +adv +pron +adv +verb +conj +noun +adv +verb +prep +pron +verb +prep +det +noun +conj +verb +noun +conj +noun +verb +prep +pron +verb +det +noun +verb +det +noun +verb +pron +det +noun +det +verb +noun +noun +adv +verb +conj +adj +verb +verb +pron +det +noun +ptcl +verb +pron +conj +conj +verb +verb +det +noun +det +noun +conj +verb +det +noun +conj +det +noun +verb +det +noun +adv +conj +verb +noun +verb +pron +conj +verb +pron +conj +pron +verb +conj +adv +pron +verb +conj +prep +det +noun +det +verb +verb +conj +verb +conj +pron +pron +verb +conj +pron +verb +noun +adj +verb +noun +verb +adv +verb +det +verb +verb +det +noun +conj +det +noun +noun +conj +det +noun +pron +noun +verb +verb +pron +det +noun +verb +pron +conj +verb +pron +verb +conj +adj +prep +det +adj +det +verb +prep +det +noun +conj +verb +pron +verb +verb +prep +pron +conj +pron +prep +pron +verb +prep +det +noun +conj +verb +pron +pron +verb +noun +conj +verb +det +noun +conj +det +noun +noun +conj +verb +pron +verb +conj +pron +det +noun +adj +noun +verb +conj +verb +pron +adv +adj +verb +prep +pron +conj +verb +det +adj +conj +verb +pron +conj +det +noun +conj +det +noun +conj +adj +pron +prep +pron +noun +noun +verb +det +noun +pron +verb +pron +pron +adv +verb +adj +conj +verb +conj +verb +pron +conj +adj +noun +verb +prep +det +noun +conj +adv +adj +det +noun +verb +conj +pron +prep +pron +adv +verb +conj +noun +verb +det +noun +pron +verb +conj +verb +noun +verb +prep +det +noun +conj +adv +prep +det +noun +adj +conj +conj +adv +det +noun +det +noun +det +verb +verb +prep +adj +conj +prep +pron +det +noun +verb +conj +verb +pron +conj +det +noun +adv +noun +verb +prep +det +adj +conj +verb +adv +prep +det +noun +prep +det +adj +prep +noun +verb +noun +conj +verb +prep +det +noun +conj +verb +adv +det +noun +det +adj +conj +verb +adj +prep +noun +prep +det +noun +prep +det +noun +conj +verb +pron +conj +verb +det +noun +conj +verb +prep +pron +prep +det +noun +verb +pron +verb +pron +conj +adv +adv +verb +prep +det +noun +conj +verb +det +noun +conj +det +noun +noun +adv +conj +pron +verb +adv +verb +verb +conj +verb +pron +conj +det +noun +prep +num +noun +det +noun +verb +prep +noun +adv +verb +noun +pron +verb +prep +adj +noun +conj +verb +pron +noun +adv +conj +det +noun +verb +conj +det +noun +verb +adj +prep +det +verb +prep +pron +conj +det +noun +verb +noun +noun +noun +adj +adj +verb +det +noun +det +noun +conj +verb +det +noun +pron +det +noun +pron +conj +det +noun +verb +prep +det +noun +det +noun +conj +verb +noun +det +noun +adj +det +noun +pron +det +verb +pron +verb +prep +pron +pron +det +noun +adv +verb +adj +noun +conj +verb +adj +conj +verb +pron +adv +conj +prep +det +adj +verb +pron +conj +conj +noun +verb +conj +det +noun +verb +det +verb +verb +conj +verb +det +noun +verb +pron +conj +prep +det +noun +det +noun +pron +verb +pron +conj +det +adj +adv +verb +prep +pron +conj +pron +adv +adv +verb +conj +verb +det +noun +adj +prep +det +adj +conj +adv +verb +conj +verb +adv +prep +det +noun +adj +conj +conj +adv +verb +det +noun +pron +verb +prep +adj +conj +verb +det +noun +conj +adv +det +noun +verb +conj +adj +det +adj +prep +pron +verb +conj +verb +prep +det +noun +det +adv +det +noun +adj +det +verb +prep +det +noun +verb +conj +verb +noun +prep +noun +verb +det +noun +det +noun +conj +verb +prep +noun +pron +conj +verb +ptcl +verb +det +verb +prep +noun +noun +conj +det +noun +det +noun +conj +verb +noun +det +noun +verb +prep +pron +conj +verb +verb +adv +verb +noun +noun +verb +det +noun +pron +verb +verb +prep +noun +noun +pron +adv +verb +pron +det +noun +det +adj +conj +conj +verb +noun +adv +verb +conj +pron +verb +verb +prep +pron +conj +pron +verb +pron +conj +verb +det +noun +det +verb +prep +pron +conj +det +noun +verb +prep +det +noun +conj +verb +pron +prep +adj +prep +pron +adv +verb +pron +det +noun +conj +verb +pron +pron +verb +det +noun +conj +det +noun +verb +prep +pron +verb +conj +adv +verb +adj +verb +det +noun +prep +pron +verb +conj +verb +noun +pron +prep +det +verb +conj +verb +prep +det +noun +conj +pron +verb +noun +det +prep +noun +det +noun +conj +verb +pron +verb +noun +verb +det +noun +verb +verb +det +noun +conj +verb +det +noun +verb +noun +conj +noun +conj +verb +det +noun +conj +det +noun +verb +pron +verb +verb +det +noun +conj +verb +det +noun +det +noun +ptcl +ptcl +verb +pron +conj +adv +det +noun +det +noun +verb +prep +det +noun +verb +pron +adj +verb +conj +conj +verb +adj +noun +verb +det +verb +det +noun +pron +verb +pron +conj +det +verb +det +noun +pron +prep +det +noun +pron +prep +noun +adj +verb +pron +conj +pron +pron +verb +pron +verb +conj +conj +verb +pron +adv +adv +det +noun +det +adj +verb +conj +pron +pron +verb +verb +pron +det +noun +adv +det +noun +pron +verb +conj +pron +verb +noun +verb +pron +prep +det +noun +pron +conj +prep +pron +verb +prep +det +noun +pron +noun +verb +pron +det +noun +conj +verb +noun +prep +det +noun +conj +verb +conj +adv +verb +conj +det +noun +det +verb +conj +verb +verb +noun +verb +adj +verb +noun +pron +verb +verb +noun +conj +verb +adv +prep +pron +det +noun +pron +verb +conj +prep +pron +adv +verb +noun +det +noun +pron +adv +det +noun +det +noun +pron +verb +adv +conj +pron +verb +prep +det +noun +adj +verb +prep +pron +conj +pron +verb +verb +pron +noun +verb +verb +conj +verb +pron +det +noun +pron +verb +prep +det +noun +conj +det +noun +verb +prep +det +noun +conj +adv +verb +pron +conj +verb +verb +det +noun +det +noun +pron +verb +pron +det +noun +det +noun +conj +verb +pron +det +noun +adv +adj +noun +det +noun +prep +pron +verb +verb +conj +det +noun +verb +conj +adv +noun +pron +verb +conj +det +verb +prep +det +noun +adv +verb +adv +verb +conj +det +noun +verb +verb +prep +det +noun +conj +noun +noun +verb +pron +verb +noun +conj +verb +verb +prep +pron +conj +pron +pron +noun +verb +prep +pron +adv +verb +prep +pron +conj +det +noun +noun +det +noun +verb +pron +verb +noun +pron +verb +det +noun +pron +conj +det +noun +noun +pron +verb +prep +pron +adv +verb +verb +conj +adv +verb +noun +verb +pron +det +noun +conj +verb +pron +det +noun +conj +adv +verb +det +noun +conj +verb +det +noun +conj +verb +conj +verb +pron +pron +verb +noun +conj +verb +det +noun +pron +conj +verb +prep +pron +conj +adv +adv +prep +det +noun +adj +verb +prep +pron +conj +prep +det +noun +adv +verb +conj +adv +adj +verb +conj +verb +det +noun +det +noun +adv +conj +det +noun +det +noun +conj +noun +verb +conj +verb +det +verb +prep +pron +adv +verb +prep +pron +conj +prep +det +verb +pron +conj +det +verb +pron +verb +det +verb +pron +pron +noun +prep +det +noun +verb +conj +adj +det +verb +prep +pron +prep +det +noun +adv +verb +conj +conj +pron +verb +pron +det +noun +conj +adv +verb +pron +adv +verb +pron +conj +adv +verb +conj +verb +det +noun +conj +conj +verb +det +noun +det +verb +pron +conj +adv +verb +det +noun +pron +verb +det +verb +pron +det +noun +pron +verb +pron +verb +pron +prep +det +adj +noun +conj +pron +prep +pron +adv +verb +conj +det +verb +pron +noun +pron +pron +noun +verb +pron +verb +conj +pron +verb +conj +verb +conj +det +noun +pron +noun +adj +verb +conj +pron +pron +verb +conj +verb +pron +det +noun +adv +verb +conj +prep +det +noun +det +noun +det +noun +verb +conj +verb +pron +det +noun +conj +verb +prep +det +noun +pron +prep +det +noun +verb +det +adj +det +prep +det +noun +prep +noun +verb +pron +conj +noun +verb +det +adj +adv +verb +prep +det +noun +conj +verb +pron +noun +noun +noun +verb +conj +adj +verb +pron +det +noun +prep +det +noun +conj +conj +prep +noun +verb +conj +prep +det +noun +verb +verb +prep +det +noun +conj +verb +det +noun +conj +verb +noun +verb +pron +adv +verb +noun +prep +det +noun +conj +verb +verb +det +noun +det +noun +conj +verb +det +noun +pron +verb +verb +conj +verb +prep +noun +noun +verb +pron +noun +pron +verb +pron +det +noun +verb +noun +conj +verb +pron +pron +pron +verb +pron +adv +verb +adv +conj +verb +prep +pron +verb +pron +noun +adv +adv +verb +pron +det +noun +prep +det +noun +verb +noun +pron +conj +adv +verb +pron +adv +verb +noun +prep +pron +verb +pron +noun +noun +noun +adv +det +noun +pron +adj +conj +adv +det +noun +conj +det +noun +verb +pron +noun +det +verb +adv +verb +noun +conj +adv +det +noun +verb +conj +verb +adj +adj +conj +pron +adj +verb +conj +adv +adj +conj +verb +det +verb +pron +prep +pron +verb +conj +adv +adj +adj +verb +conj +conj +verb +det +noun +pron +conj +verb +det +noun +pron +conj +verb +adv +verb +pron +verb +pron +verb +pron +pron +verb +pron +det +noun +conj +det +noun +conj +adv +verb +conj +verb +conj +conj +pron +det +noun +conj +det +noun +verb +pron +det +noun +adv +pron +verb +verb +pron +det +noun +conj +noun +verb +pron +conj +conj +pron +verb +pron +adv +pron +verb +ptcl +ptcl +verb +pron +adv +verb +noun +adj +det +noun +pron +conj +noun +adj +det +verb +pron +conj +pron +verb +adj +verb +conj +verb +pron +adv +prep +adj +pron +verb +pron +verb +pron +verb +conj +conj +det +noun +verb +det +verb +pron +det +noun +verb +prep +pron +det +noun +pron +prep +adv +verb +pron +prep +det +verb +conj +verb +conj +verb +conj +pron +verb +ptcl +ptcl +verb +pron +det +verb +ptcl +pron +verb +pron +verb +conj +det +pron +verb +verb +det +verb +pron +pron +verb +noun +verb +det +noun +conj +verb +conj +verb +ptcl +ptcl +verb +pron +conj +adj +prep +pron +verb +pron +verb +prep +pron +det +noun +verb +prep +pron +verb +verb +verb +adj +prep +det +noun +pron +prep +det +noun +det +noun +pron +verb +det +noun +conj +verb +pron +noun +noun +conj +verb +pron +verb +pron +verb +prep +pron +verb +pron +verb +adv +prep +det +noun +det +noun +verb +pron +noun +pron +verb +conj +verb +det +noun +verb +pron +pron +pron +verb +det +noun +conj +verb +pron +conj +verb +det +noun +verb +conj +verb +noun +noun +noun +conj +prep +det +noun +adv +verb +prep +pron +det +noun +conj +verb +pron +noun +pron +verb +verb +adj +conj +verb +adj +det +verb +pron +prep +pron +verb +pron +conj +pron +verb +conj +det +noun +verb +noun +conj +verb +pron +noun +verb +pron +noun +verb +prep +det +noun +conj +conj +det +adj +pron +verb +conj +verb +det +noun +pron +verb +adj +conj +verb +noun +conj +conj +verb +verb +noun +adv +verb +det +noun +det +noun +conj +det +noun +verb +prep +pron +conj +det +noun +verb +prep +pron +adv +det +noun +verb +pron +prep +pron +conj +adj +verb +pron +noun +adv +adj +prep +pron +verb +verb +pron +conj +conj +verb +det +adj +conj +conj +pron +verb +verb +pron +adv +verb +adv +pron +verb +adv +noun +adj +verb +pron +adv +verb +pron +conj +verb +pron +adv +adv +pron +verb +pron +prep +pron +verb +adj +conj +adj +noun +verb +conj +noun +verb +prep +pron +verb +pron +noun +noun +noun +adv +verb +verb +noun +conj +verb +pron +adv +verb +adv +verb +conj +verb +adj +verb +pron +noun +noun +prep +pron +adv +verb +pron +verb +adv +det +noun +pron +prep +pron +verb +verb +noun +det +noun +pron +prep +pron +verb +ptcl +ptcl +verb +pron +adv +adv +noun +verb +prep +pron +verb +pron +adv +adv +verb +pron +det +noun +verb +prep +det +noun +adv +prep +pron +verb +prep +det +noun +det +noun +pron +noun +adj +verb +conj +conj +adv +ptcl +verb +pron +conj +verb +verb +noun +pron +conj +conj +verb +conj +verb +noun +pron +adv +verb +conj +verb +pron +prep +pron +conj +conj +verb +pron +adv +pron +verb +conj +conj +pron +verb +verb +det +noun +verb +pron +noun +noun +adv +verb +adv +verb +adv +verb +det +noun +verb +pron +noun +pron +verb +det +noun +conj +det +noun +conj +det +noun +adj +verb +prep +det +noun +conj +adv +prep +pron +conj +verb +pron +ptcl +adv +det +noun +pron +verb +prep +adv +verb +pron +conj +verb +verb +pron +noun +noun +verb +pron +det +noun +conj +verb +pron +verb +pron +det +noun +pron +noun +prep +pron +verb +conj +adv +verb +pron +noun +det +verb +pron +verb +det +noun +adv +pron +verb +verb +pron +det +noun +adv +verb +conj +pron +prep +det +noun +conj +det +noun +prep +pron +verb +det +noun +pron +pron +verb +pron +prep +pron +adv +verb +conj +det +noun +prep +pron +verb +verb +det +noun +pron +verb +pron +conj +pron +prep +det +noun +conj +det +noun +prep +pron +conj +conj +adv +prep +det +noun +pron +verb +ptcl +ptcl +verb +pron +det +verb +prep +pron +det +noun +pron +pron +verb +pron +verb +conj +adj +pron +verb +conj +pron +prep +det +noun +verb +conj +pron +ptcl +pron +verb +prep +det +noun +pron +pron +verb +conj +verb +det +noun +prep +det +noun +conj +pron +verb +pron +prep +det +noun +pron +pron +verb +conj +verb +pron +det +noun +det +adj +verb +pron +verb +det +noun +conj +adj +noun +verb +pron +conj +verb +prep +pron +prep +det +noun +det +noun +det +noun +pron +verb +det +noun +adv +verb +conj +adv +verb +pron +conj +verb +pron +verb +pron +conj +prep +pron +verb +conj +prep +pron +verb +adv +verb +pron +adj +verb +prep +pron +conj +adv +adj +det +noun +pron +adv +verb +conj +pron +verb +pron +conj +pron +verb +adv +pron +verb +prep +pron +det +noun +verb +pron +conj +pron +prep +det +noun +pron +conj +pron +prep +pron +pron +prep +pron +det +verb +det +noun +pron +conj +verb +pron +pron +verb +det +verb +pron +conj +det +verb +pron +verb +prep +det +noun +pron +pron +verb +pron +conj +verb +pron +pron +verb +pron +noun +adv +det +noun +noun +conj +pron +verb +conj +verb +pron +verb +pron +conj +adv +det +noun +verb +noun +conj +verb +pron +conj +pron +verb +pron +det +noun +pron +verb +conj +det +noun +pron +verb +pron +conj +prep +pron +verb +conj +noun +prep +pron +verb +det +adv +verb +pron +det +noun +pron +adv +verb +conj +det +noun +pron +verb +adv +verb +adj +conj +det +verb +pron +noun +pron +verb +pron +prep +pron +verb +conj +det +noun +det +noun +det +adj +pron +verb +det +noun +prep +det +noun +pron +pron +pron +verb +adj +conj +verb +pron +adj +pron +verb +pron +pron +noun +verb +pron +noun +det +adj +verb +pron +adv +conj +det +noun +verb +pron +verb +pron +adv +verb +pron +det +noun +conj +verb +verb +conj +pron +verb +pron +verb +conj +verb +prep +pron +conj +verb +pron +ptcl +verb +conj +verb +prep +det +noun +conj +det +noun +adj +pron +verb +conj +adv +verb +pron +adv +verb +conj +conj +verb +verb +adv +adj +verb +prep +pron +conj +verb +det +det +noun +noun +conj +prep +pron +adv +verb +adj +conj +conj +verb +det +noun +conj +verb +det +noun +conj +conj +verb +pron +det +noun +adv +verb +verb +verb +adv +pron +verb +det +noun +det +adj +conj +det +noun +pron +det +noun +verb +adj +noun +prep +pron +adv +verb +noun +verb +pron +conj +adj +det +noun +verb +verb +pron +conj +noun +adj +verb +adv +pron +adj +verb +prep +det +noun +pron +verb +pron +verb +prep +pron +pron +prep +pron +conj +det +noun +adv +verb +noun +verb +prep +pron +conj +adv +verb +prep +det +noun +adv +adv +pron +conj +adv +prep +pron +verb +pron +verb +det +noun +pron +det +noun +det +verb +prep +pron +pron +prep +pron +pron +verb +noun +adj +conj +prep +pron +adv +verb +verb +adj +conj +adv +pron +verb +prep +pron +verb +adv +conj +det +noun +conj +verb +conj +verb +pron +conj +prep +det +noun +verb +conj +verb +conj +verb +prep +pron +conj +det +noun +pron +prep +pron +verb +ptcl +pron +verb +verb +conj +verb +pron +prep +pron +verb +det +noun +pron +adv +noun +adj +verb +conj +verb +adj +noun +conj +verb +pron +det +noun +pron +pron +verb +verb +prep +det +noun +det +adj +conj +det +noun +pron +verb +verb +prep +det +noun +pron +conj +pron +det +noun +pron +det +noun +verb +conj +verb +prep +pron +det +noun +pron +verb +pron +conj +det +noun +det +adj +prep +pron +verb +conj +det +noun +pron +verb +pron +verb +det +noun +det +adj +adv +verb +pron +conj +verb +pron +adj +pron +noun +adj +verb +conj +pron +det +noun +pron +verb +prep +det +adj +pron +pron +adj +pron +verb +conj +verb +pron +pron +verb +pron +adv +verb +pron +noun +conj +det +noun +adv +verb +pron +verb +pron +det +noun +conj +pron +verb +adj +conj +adj +pron +verb +prep +det +noun +pron +verb +pron +adv +pron +pron +verb +conj +pron +verb +pron +conj +verb +pron +conj +pron +verb +conj +noun +verb +conj +det +noun +pron +verb +conj +pron +ptcl +pron +verb +det +noun +prep +det +noun +pron +verb +pron +pron +verb +pron +adv +verb +pron +conj +det +noun +pron +verb +verb +conj +pron +adj +pron +verb +conj +prep +det +noun +verb +ptcl +det +noun +det +adj +verb +conj +conj +prep +det +noun +adv +verb +conj +pron +verb +pron +prep +det +noun +prep +pron +verb +pron +det +noun +verb +det +noun +pron +pron +verb +pron +adv +verb +noun +adj +det +noun +pron +conj +pron +verb +adv +pron +verb +conj +det +noun +pron +verb +adv +det +adj +verb +conj +pron +adj +verb +prep +pron +prep +det +noun +pron +conj +adv +verb +det +verb +pron +conj +adv +verb +conj +verb +pron +noun +adv +verb +conj +adv +noun +adv +verb +prep +det +noun +pron +det +pron +verb +adv +det +noun +pron +verb +conj +det +noun +adv +verb +prep +pron +pron +adj +adj +verb +noun +adv +verb +conj +adv +conj +verb +conj +verb +conj +pron +conj +det +noun +pron +conj +conj +verb +det +noun +det +prep +det +noun +pron +verb +adv +verb +pron +adv +conj +verb +det +noun +pron +pron +verb +pron +prep +det +noun +det +noun +det +noun +pron +prep +det +noun +verb +pron +verb +prep +pron +conj +adv +pron +verb +conj +prep +noun +prep +pron +verb +pron +verb +pron +conj +adv +verb +adj +verb +pron +conj +verb +noun +conj +adj +det +verb +pron +verb +noun +verb +det +noun +conj +pron +verb +conj +adv +verb +det +noun +conj +pron +conj +pron +verb +pron +conj +conj +verb +det +noun +pron +verb +pron +conj +pron +verb +pron +conj +pron +pron +prep +noun +adv +verb +conj +prep +pron +verb +conj +adv +verb +prep +det +verb +pron +conj +adj +prep +pron +verb +pron +adv +verb +conj +conj +pron +verb +pron +det +noun +verb +pron +det +noun +conj +pron +det +noun +verb +pron +verb +pron +conj +pron +verb +conj +conj +adv +verb +det +noun +adv +adv +verb +prep +pron +conj +conj +verb +verb +pron +prep +pron +conj +verb +pron +verb +det +noun +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +noun +conj +adv +verb +prep +pron +conj +prep +noun +conj +prep +det +noun +verb +conj +adv +verb +pron +conj +prep +noun +conj +det +noun +det +noun +pron +verb +adv +verb +adj +pron +verb +conj +adv +verb +verb +adv +conj +conj +verb +pron +det +noun +det +noun +verb +pron +prep +det +noun +adj +conj +adv +verb +prep +pron +conj +pron +verb +verb +conj +det +verb +verb +pron +pron +pron +verb +conj +prep +det +adj +verb +conj +verb +pron +adj +pron +verb +det +noun +adj +verb +prep +pron +verb +conj +prep +det +adj +verb +conj +verb +pron +adj +conj +adv +verb +pron +conj +adv +adj +conj +verb +pron +conj +verb +prep +det +noun +pron +prep +pron +pron +verb +pron +pron +verb +pron +adj +conj +adv +verb +pron +conj +adv +adj +conj +verb +pron +conj +conj +verb +prep +det +noun +conj +verb +pron +verb +pron +pron +verb +det +adj +adv +verb +pron +verb +verb +noun +conj +verb +pron +verb +conj +verb +pron +prep +pron +verb +prep +pron +conj +verb +adj +conj +adv +verb +pron +conj +adv +adj +conj +verb +pron +ptcl +ptcl +verb +pron +conj +verb +conj +verb +pron +conj +det +noun +verb +pron +verb +conj +det +noun +pron +prep +noun +verb +conj +det +noun +verb +noun +verb +conj +verb +det +noun +pron +conj +conj +verb +det +noun +adv +verb +det +noun +prep +det +noun +conj +verb +noun +prep +det +noun +conj +conj +adv +pron +adv +noun +verb +conj +adv +verb +pron +conj +verb +pron +det +noun +conj +det +noun +pron +adj +verb +prep +pron +conj +prep +pron +det +noun +pron +adv +verb +adj +ptcl +ptcl +verb +pron +ptcl +pron +verb +det +noun +verb +pron +prep +det +noun +pron +prep +adv +adv +verb +adj +prep +det +noun +pron +verb +conj +verb +conj +det +noun +pron +verb +verb +pron +prep +noun +verb +pron +verb +noun +adv +adv +prep +noun +verb +pron +conj +noun +prep +det +noun +verb +pron +prep +pron +det +noun +prep +det +noun +pron +verb +conj +adv +verb +pron +conj +pron +verb +det +noun +prep +pron +conj +pron +det +noun +verb +pron +conj +pron +pron +verb +conj +verb +conj +pron +prep +det +noun +verb +verb +prep +det +noun +conj +verb +prep +det +noun +adv +verb +det +noun +conj +verb +prep +det +noun +verb +det +noun +pron +verb +adv +prep +noun +verb +conj +noun +adj +verb +adv +verb +conj +verb +adj +conj +adv +noun +verb +conj +pron +pron +verb +prep +pron +verb +conj +prep +noun +verb +verb +pron +noun +adv +verb +verb +verb +noun +conj +verb +conj +verb +adj +prep +det +adj +pron +adj +verb +conj +adv +verb +adj +conj +det +noun +prep +pron +verb +pron +verb +pron +conj +prep +pron +noun +verb +prep +det +noun +noun +verb +conj +verb +pron +verb +det +noun +pron +verb +noun +conj +verb +det +noun +pron +prep +det +noun +verb +noun +verb +det +noun +verb +pron +det +noun +conj +det +noun +verb +pron +conj +verb +pron +noun +adj +noun +conj +adj +pron +verb +pron +verb +pron +noun +adj +conj +pron +verb +det +adj +noun +adv +verb +pron +det +adj +adj +noun +conj +pron +verb +noun +noun +pron +pron +verb +prep +det +noun +verb +det +noun +pron +verb +pron +adv +verb +conj +noun +adv +verb +pron +pron +prep +pron +det +noun +pron +verb +prep +det +det +noun +verb +prep +pron +verb +pron +det +noun +det +noun +pron +verb +pron +prep +det +noun +adj +verb +pron +pron +verb +conj +det +noun +pron +verb +adv +verb +conj +adj +pron +verb +pron +prep +pron +verb +conj +det +noun +pron +verb +pron +verb +pron +conj +pron +verb +conj +verb +adv +conj +prep +pron +verb +conj +verb +conj +pron +pron +verb +pron +prep +pron +verb +adv +prep +det +noun +verb +conj +prep +pron +verb +pron +conj +adj +verb +conj +det +adj +adj +adj +verb +conj +det +adj +adj +conj +verb +prep +pron +conj +adv +verb +prep +det +noun +conj +pron +prep +det +noun +verb +pron +prep +pron +verb +noun +adj +verb +pron +prep +det +noun +pron +pron +verb +pron +conj +verb +adj +conj +pron +conj +verb +prep +pron +pron +verb +pron +prep +det +noun +pron +pron +verb +pron +conj +verb +conj +adj +prep +pron +verb +conj +adv +det +noun +det +noun +conj +det +noun +verb +conj +adv +prep +pron +verb +conj +pron +verb +prep +det +noun +conj +verb +det +noun +det +adj +verb +prep +pron +pron +verb +pron +det +noun +pron +conj +det +noun +verb +pron +conj +adv +verb +prep +det +noun +conj +pron +adv +verb +prep +det +noun +adv +verb +conj +verb +pron +prep +det +noun +conj +conj +verb +pron +prep +det +adj +prep +det +noun +adv +verb +conj +pron +adv +verb +prep +det +noun +verb +pron +prep +det +noun +det +noun +det +adj +noun +verb +conj +pron +verb +prep +det +noun +pron +verb +pron +prep +det +noun +conj +prep +pron +pron +verb +pron +conj +verb +verb +adv +pron +prep +noun +conj +adv +prep +pron +verb +adj +conj +adv +prep +det +verb +prep +det +noun +pron +prep +pron +conj +adj +adj +verb +conj +noun +pron +prep +pron +pron +prep +pron +conj +adv +pron +prep +pron +verb +conj +det +noun +verb +conj +pron +pron +verb +pron +det +noun +pron +verb +pron +verb +pron +conj +verb +adj +conj +pron +adj +pron +prep +pron +conj +pron +prep +pron +conj +verb +verb +prep +adj +conj +verb +det +noun +conj +pron +pron +verb +conj +verb +pron +conj +pron +verb +noun +pron +verb +pron +verb +conj +conj +verb +pron +pron +verb +prep +pron +conj +verb +det +noun +det +adj +pron +verb +pron +conj +verb +pron +prep +noun +noun +noun +adj +adv +det +noun +pron +adv +verb +conj +pron +pron +verb +conj +pron +verb +conj +pron +pron +verb +conj +verb +pron +det +noun +pron +conj +verb +conj +det +noun +pron +verb +pron +prep +pron +verb +pron +prep +pron +pron +verb +noun +verb +prep +det +noun +pron +prep +det +noun +det +noun +adv +verb +noun +prep +pron +verb +pron +conj +det +noun +pron +conj +verb +adv +noun +det +verb +pron +det +noun +conj +adv +verb +noun +adv +prep +det +noun +pron +conj +det +noun +verb +det +noun +conj +prep +det +noun +conj +prep +det +noun +noun +verb +adv +prep +noun +conj +noun +conj +noun +conj +noun +verb +adj +det +verb +prep +pron +verb +conj +verb +pron +pron +verb +verb +pron +noun +det +noun +verb +pron +pron +verb +conj +verb +adv +noun +det +verb +pron +prep +pron +conj +conj +verb +pron +pron +verb +verb +prep +det +adv +conj +verb +adv +conj +adv +verb +pron +pron +verb +conj +det +verb +noun +det +noun +verb +noun +verb +pron +conj +pron +verb +conj +conj +pron +verb +verb +pron +verb +conj +verb +det +noun +pron +verb +adv +pron +verb +pron +adv +verb +prep +pron +adj +conj +noun +noun +verb +noun +verb +pron +conj +verb +det +det +noun +noun +conj +verb +pron +det +noun +det +adj +conj +verb +noun +det +noun +noun +conj +verb +det +noun +det +noun +verb +det +noun +prep +det +noun +det +noun +pron +verb +pron +det +noun +ptcl +ptcl +verb +pron +conj +det +noun +conj +det +noun +conj +det +noun +det +adj +verb +det +noun +conj +verb +pron +conj +verb +prep +noun +adj +conj +verb +noun +det +noun +pron +verb +noun +det +noun +pron +conj +verb +noun +det +verb +det +adj +conj +verb +adj +noun +verb +prep +det +noun +conj +verb +det +noun +noun +noun +conj +adj +noun +conj +det +noun +pron +verb +adj +det +noun +conj +verb +det +noun +prep +det +noun +det +noun +conj +det +noun +verb +prep +det +noun +adv +conj +verb +det +noun +det +adj +det +adj +det +noun +conj +verb +det +noun +conj +verb +det +noun +conj +verb +det +noun +det +noun +det +noun +ptcl +adv +pron +prep +det +noun +det +noun +pron +verb +verb +pron +adv +verb +conj +verb +det +noun +conj +det +noun +noun +verb +conj +noun +verb +conj +verb +conj +adv +det +noun +prep +pron +verb +verb +conj +verb +conj +det +noun +verb +det +noun +prep +det +noun +pron +conj +prep +det +noun +pron +verb +pron +noun +pron +noun +verb +det +noun +pron +adv +verb +prep +noun +conj +prep +det +noun +adv +adj +det +adj +verb +conj +prep +adj +verb +adj +pron +pron +verb +verb +det +verb +pron +verb +pron +verb +pron +verb +pron +verb +pron +conj +pron +pron +verb +adj +verb +det +noun +verb +noun +det +noun +verb +adv +verb +det +noun +verb +pron +noun +conj +adv +verb +verb +prep +det +adj +conj +conj +adv +pron +pron +verb +conj +verb +pron +det +noun +verb +prep +noun +det +noun +conj +noun +noun +verb +verb +conj +verb +conj +verb +pron +ptcl +adv +pron +prep +det +noun +pron +verb +verb +pron +conj +verb +adv +verb +verb +adj +prep +det +noun +det +noun +verb +adj +pron +verb +noun +det +noun +ptcl +pron +verb +pron +prep +det +noun +prep +pron +conj +adv +verb +noun +conj +adv +noun +verb +conj +verb +det +noun +prep +det +noun +prep +det +noun +conj +verb +adv +conj +pron +adv +verb +prep +det +noun +conj +adv +verb +conj +verb +det +noun +conj +verb +det +noun +adv +prep +pron +conj +verb +pron +noun +det +noun +pron +verb +verb +conj +verb +pron +conj +adv +verb +verb +pron +adj +ptcl +adv +pron +verb +pron +conj +verb +pron +det +noun +verb +pron +pron +conj +prep +det +noun +pron +verb +pron +verb +pron +det +adj +pron +adv +verb +verb +adj +conj +det +noun +det +noun +verb +pron +verb +verb +pron +noun +verb +verb +conj +verb +adv +prep +det +noun +det +noun +conj +verb +det +noun +conj +verb +pron +pron +verb +det +noun +det +adj +verb +noun +prep +pron +pron +pron +verb +conj +adj +verb +pron +prep +pron +verb +det +noun +ptcl +pron +adj +verb +det +noun +det +adj +conj +det +noun +verb +pron +pron +pron +verb +verb +noun +det +noun +det +adj +adv +verb +prep +det +noun +pron +conj +prep +det +noun +pron +verb +det +noun +det +adj +ptcl +det +noun +det +adj +verb +conj +adv +verb +det +adj +conj +adv +det +noun +det +adj +adv +verb +adv +conj +verb +pron +det +noun +conj +noun +verb +pron +verb +det +noun +pron +verb +conj +noun +verb +pron +prep +pron +verb +conj +prep +pron +verb +prep +det +noun +conj +verb +det +noun +adj +det +verb +prep +det +noun +verb +pron +det +noun +verb +pron +det +noun +pron +verb +noun +conj +pron +verb +adv +verb +prep +det +adj +conj +verb +pron +pron +adj +verb +prep +pron +noun +conj +verb +noun +pron +adv +adj +verb +pron +prep +det +noun +conj +verb +verb +pron +det +noun +det +adj +conj +verb +adv +verb +adv +pron +conj +det +noun +conj +verb +det +noun +noun +conj +adv +verb +det +noun +det +noun +conj +verb +conj +det +noun +verb +noun +prep +noun +verb +pron +det +noun +conj +noun +adj +verb +pron +conj +verb +prep +pron +conj +verb +verb +det +noun +det +adj +conj +verb +pron +noun +conj +verb +adv +adv +det +noun +conj +verb +pron +verb +verb +pron +pron +adv +conj +verb +conj +adj +noun +verb +prep +pron +conj +verb +det +noun +adv +verb +det +adj +noun +conj +det +adj +noun +conj +verb +pron +verb +det +noun +conj +conj +verb +pron +det +noun +conj +det +noun +verb +verb +verb +verb +verb +pron +det +noun +verb +pron +pron +conj +verb +conj +pron +adv +verb +prep +pron +noun +verb +pron +det +adj +pron +noun +verb +conj +prep +det +noun +verb +verb +conj +noun +noun +pron +verb +conj +conj +verb +det +noun +pron +det +noun +adv +verb +conj +verb +prep +det +noun +adv +conj +verb +det +noun +adv +verb +pron +conj +det +noun +noun +adv +verb +pron +conj +verb +pron +det +noun +ptcl +pron +verb +ptcl +verb +conj +noun +verb +verb +pron +conj +noun +verb +verb +pron +verb +noun +adv +verb +noun +adj +prep +pron +conj +adv +verb +verb +pron +adv +prep +pron +det +verb +pron +pron +adj +noun +verb +prep +pron +det +noun +verb +verb +pron +conj +det +adj +verb +verb +conj +pron +verb +adv +verb +adj +det +noun +adj +det +noun +pron +verb +verb +det +noun +conj +det +noun +verb +det +noun +pron +verb +adv +det +noun +conj +verb +prep +noun +prep +noun +verb +adj +conj +adv +noun +conj +verb +noun +det +noun +noun +verb +prep +adj +conj +verb +det +adj +verb +det +noun +pron +conj +verb +pron +verb +verb +verb +pron +verb +pron +det +noun +det +noun +pron +verb +verb +det +noun +adv +verb +noun +conj +adv +noun +conj +adv +verb +pron +pron +conj +verb +conj +verb +det +noun +conj +verb +pron +det +noun +verb +prep +det +verb +noun +noun +pron +verb +adv +noun +adv +pron +verb +conj +prep +pron +adj +num +adv +conj +adv +conj +adj +det +noun +conj +verb +adv +noun +det +noun +conj +verb +prep +det +noun +conj +verb +verb +noun +det +noun +det +noun +det +adj +conj +pron +det +noun +verb +adj +det +adj +conj +prep +det +noun +verb +det +noun +adv +verb +det +noun +conj +verb +verb +adv +adv +adv +conj +verb +det +noun +det +noun +det +adj +adv +verb +det +noun +det +adj +conj +conj +pron +verb +noun +det +adj +verb +verb +det +noun +pron +verb +verb +conj +conj +det +noun +verb +det +noun +verb +det +noun +pron +conj +verb +adj +noun +adj +noun +noun +conj +det +noun +conj +verb +det +noun +adj +prep +det +adv +adj +prep +adj +conj +verb +prep +pron +adv +verb +pron +conj +verb +prep +pron +pron +verb +conj +det +noun +verb +verb +det +noun +pron +pron +conj +prep +det +noun +pron +verb +noun +conj +conj +det +noun +pron +verb +conj +verb +prep +det +noun +det +noun +det +noun +pron +conj +det +noun +det +noun +pron +noun +det +det +noun +conj +noun +det +noun +conj +noun +verb +det +noun +conj +det +noun +verb +pron +verb +verb +det +noun +noun +verb +det +noun +pron +adv +verb +det +noun +verb +det +noun +pron +conj +prep +pron +det +noun +verb +det +noun +pron +prep +det +adj +prep +pron +det +noun +verb +conj +adv +adj +verb +conj +verb +det +noun +verb +verb +noun +noun +adj +verb +conj +noun +adj +det +noun +noun +verb +verb +pron +det +noun +conj +conj +verb +det +noun +det +noun +verb +verb +conj +verb +det +noun +verb +det +noun +conj +det +adj +conj +noun +verb +conj +adv +verb +prep +det +noun +det +noun +prep +det +noun +conj +verb +adj +det +noun +pron +det +noun +verb +det +noun +conj +verb +pron +det +noun +conj +verb +conj +verb +det +noun +conj +conj +verb +det +noun +det +adj +conj +det +adj +det +verb +pron +conj +prep +det +noun +verb +conj +verb +adv +pron +verb +adv +verb +pron +det +noun +conj +adj +det +noun +noun +pron +det +noun +verb +conj +verb +adj +noun +conj +noun +conj +det +verb +verb +conj +adj +verb +pron +det +noun +conj +pron +verb +conj +adj +verb +conj +adv +pron +verb +conj +verb +pron +conj +det +noun +verb +noun +pron +adv +verb +conj +adv +adj +noun +verb +verb +prep +pron +verb +conj +prep +pron +verb +det +noun +noun +prep +noun +verb +noun +det +noun +conj +verb +prep +det +noun +det +adj +conj +verb +det +noun +det +noun +conj +verb +det +noun +conj +verb +conj +verb +det +noun +pron +conj +verb +adv +noun +det +verb +prep +pron +noun +det +adj +verb +noun +noun +conj +noun +adv +noun +num +conj +verb +det +noun +det +noun +conj +verb +pron +noun +prep +det +noun +conj +noun +verb +det +adj +verb +conj +verb +prep +det +noun +adv +verb +noun +conj +prep +det +noun +noun +adj +prep +pron +adv +adj +verb +verb +conj +adv +prep +det +noun +det +adj +conj +adv +verb +det +noun +verb +det +noun +conj +det +adj +det +noun +noun +det +noun +verb +adv +prep +det +noun +noun +adv +verb +conj +verb +det +noun +verb +prep +det +noun +conj +verb +conj +verb +prep +noun +noun +conj +prep +det +adj +noun +pron +verb +det +noun +conj +verb +pron +verb +det +noun +prep +det +noun +conj +adv +verb +adv +verb +pron +conj +verb +det +noun +conj +det +adj +noun +conj +verb +prep +det +noun +conj +verb +det +num +adv +conj +det +adj +noun +verb +adj +det +noun +conj +verb +adj +prep +det +noun +conj +verb +verb +verb +det +noun +conj +adv +verb +conj +verb +adv +noun +noun +verb +pron +conj +verb +prep +det +noun +conj +verb +det +noun +verb +conj +det +noun +pron +verb +prep +det +noun +pron +adv +prep +det +noun +verb +conj +adv +verb +prep +adj +noun +conj +adv +verb +adv +det +adj +noun +det +verb +adj +prep +det +noun +conj +verb +conj +verb +conj +adv +verb +det +noun +adv +verb +pron +prep +adj +verb +conj +verb +adv +prep +pron +det +noun +conj +noun +verb +prep +det +noun +adv +verb +conj +conj +verb +verb +prep +det +noun +conj +verb +num +noun +prep +adj +verb +adv +verb +det +noun +det +noun +adj +prep +det +noun +conj +adj +prep +det +noun +conj +verb +pron +pron +noun +pron +verb +verb +pron +conj +verb +det +noun +pron +conj +adv +verb +adv +verb +pron +pron +verb +verb +prep +det +adv +conj +verb +det +noun +verb +conj +adv +verb +conj +noun +verb +verb +pron +noun +noun +pron +verb +pron +verb +pron +verb +conj +det +noun +verb +verb +pron +noun +conj +pron +verb +pron +verb +pron +adv +verb +pron +pron +pron +verb +verb +pron +noun +noun +verb +pron +verb +pron +adv +noun +pron +verb +noun +verb +pron +noun +adv +pron +verb +conj +adv +verb +prep +det +noun +conj +verb +prep +det +noun +pron +conj +verb +pron +verb +prep +det +noun +pron +conj +noun +pron +conj +noun +pron +conj +noun +pron +verb +noun +det +noun +verb +det +noun +conj +verb +det +noun +conj +pron +verb +pron +conj +verb +adj +det +noun +pron +det +adj +noun +conj +det +noun +verb +conj +verb +det +noun +prep +det +noun +det +adj +verb +det +noun +conj +verb +prep +det +adj +conj +verb +pron +noun +pron +conj +pron +verb +verb +conj +det +noun +conj +det +noun +pron +conj +verb +det +noun +verb +det +noun +conj +verb +pron +det +noun +adv +noun +pron +conj +verb +pron +det +noun +pron +verb +pron +conj +pron +verb +verb +conj +verb +pron +verb +noun +adj +ptcl +verb +pron +det +noun +verb +pron +ptcl +pron +verb +verb +conj +noun +adj +prep +det +num +det +verb +noun +adv +verb +prep +pron +conj +verb +noun +conj +verb +pron +det +adj +noun +verb +det +noun +conj +det +verb +pron +conj +adv +verb +prep +det +noun +pron +det +noun +det +noun +conj +verb +det +noun +pron +prep +det +noun +det +noun +conj +verb +pron +det +noun +prep +det +noun +pron +adv +adv +verb +conj +prep +noun +num +adv +verb +adv +det +noun +pron +conj +noun +prep +pron +verb +det +noun +det +noun +verb +conj +verb +prep +det +adj +conj +verb +noun +pron +adv +verb +det +noun +verb +det +noun +pron +adv +conj +verb +det +noun +pron +conj +verb +det +noun +pron +conj +verb +prep +det +noun +pron +conj +adv +verb +adj +conj +adj +verb +noun +conj +verb +pron +det +noun +pron +conj +det +noun +pron +verb +pron +det +noun +conj +verb +pron +verb +adj +det +adv +verb +conj +verb +conj +conj +adv +adj +adj +noun +verb +det +noun +prep +det +noun +pron +adv +verb +verb +prep +det +noun +pron +conj +pron +verb +conj +verb +conj +noun +verb +det +noun +det +noun +det +noun +conj +conj +verb +noun +verb +prep +det +noun +pron +prep +pron +verb +pron +adv +noun +det +noun +prep +det +noun +det +noun +conj +verb +adv +verb +adv +noun +noun +conj +noun +det +verb +noun +conj +noun +det +prep +noun +det +noun +conj +det +det +noun +conj +adj +prep +det +noun +pron +num +verb +pron +noun +noun +verb +verb +verb +pron +verb +adv +pron +prep +pron +verb +conj +verb +prep +det +noun +conj +prep +pron +det +noun +verb +adj +conj +noun +adv +verb +verb +noun +prep +det +noun +conj +adv +verb +det +noun +conj +noun +verb +conj +verb +pron +noun +noun +ptcl +pron +noun +verb +verb +pron +ptcl +conj +det +verb +pron +verb +prep +det +adj +noun +det +noun +det +noun +conj +verb +conj +verb +conj +adv +pron +verb +verb +prep +det +noun +det +noun +conj +verb +det +noun +pron +pron +verb +det +noun +det +noun +det +noun +verb +conj +noun +noun +verb +conj +det +noun +verb +det +noun +verb +conj +verb +adj +conj +verb +pron +prep +det +noun +conj +det +adj +noun +det +noun +verb +conj +adv +verb +adj +prep +det +noun +conj +adv +prep +noun +adj +verb +det +noun +det +noun +conj +conj +verb +prep +det +noun +verb +noun +verb +conj +noun +verb +conj +noun +verb +pron +det +noun +verb +prep +det +noun +pron +verb +adv +verb +noun +noun +conj +verb +det +noun +prep +det +noun +adj +noun +adj +num +num +adj +conj +pron +verb +adv +verb +det +noun +verb +pron +det +noun +verb +verb +adj +det +noun +verb +verb +pron +pron +pron +verb +verb +conj +det +noun +verb +verb +noun +conj +verb +det +noun +conj +verb +pron +conj +det +noun +adv +pron +adv +adj +verb +noun +det +noun +verb +prep +adj +conj +conj +verb +verb +det +noun +noun +det +noun +noun +noun +verb +pron +adj +pron +verb +pron +ptcl +noun +pron +verb +conj +verb +pron +verb +pron +verb +det +noun +pron +verb +pron +adv +adv +noun +noun +verb +pron +verb +pron +ptcl +noun +pron +verb +conj +verb +pron +verb +pron +verb +det +noun +pron +verb +pron +det +adj +noun +noun +verb +pron +verb +det +noun +conj +verb +pron +det +adj +verb +pron +conj +verb +pron +noun +adj +pron +verb +pron +verb +conj +verb +pron +verb +pron +noun +verb +det +noun +pron +ptcl +ptcl +verb +pron +conj +verb +adj +verb +pron +conj +verb +conj +verb +conj +conj +verb +verb +det +noun +pron +conj +adj +verb +pron +conj +verb +conj +adv +verb +conj +pron +verb +verb +pron +noun +verb +det +noun +conj +pron +verb +verb +pron +verb +pron +verb +det +noun +verb +det +noun +pron +verb +det +noun +verb +pron +adv +verb +prep +det +noun +prep +det +noun +pron +conj +verb +noun +pron +verb +det +verb +pron +conj +pron +verb +det +noun +verb +det +noun +noun +conj +pron +pron +verb +pron +det +noun +conj +pron +verb +verb +conj +verb +pron +prep +pron +pron +pron +verb +conj +verb +pron +det +noun +prep +det +noun +adv +det +noun +pron +adv +verb +conj +adv +verb +pron +det +noun +conj +adv +verb +conj +conj +pron +verb +verb +conj +verb +pron +prep +pron +pron +verb +det +noun +det +verb +prep +pron +conj +det +verb +pron +conj +verb +conj +adj +pron +det +noun +verb +conj +verb +adv +adj +adj +pron +verb +det +noun +conj +pron +verb +prep +adj +verb +adv +pron +det +noun +verb +det +verb +noun +intj +noun +ptcl +det +adj +noun +verb +prep +adj +pron +conj +verb +conj +verb +verb +det +noun +prep +pron +noun +verb +det +noun +pron +verb +prep +noun +adj +verb +pron +adv +verb +pron +verb +prep +det +verb +pron +prep +adj +noun +prep +noun +num +verb +pron +conj +verb +det +prep +det +noun +det +noun +conj +verb +verb +pron +prep +noun +adv +verb +conj +verb +det +noun +det +noun +pron +verb +pron +conj +conj +noun +verb +noun +conj +pron +prep +noun +adj +verb +adv +prep +adj +pron +noun +conj +conj +det +verb +verb +pron +verb +noun +ptcl +prep +det +noun +pron +verb +det +noun +det +noun +verb +prep +pron +adv +pron +verb +verb +noun +conj +noun +pron +det +noun +verb +prep +det +adj +noun +conj +verb +noun +verb +det +adj +noun +prep +pron +conj +verb +pron +noun +conj +prep +noun +conj +prep +adj +det +noun +conj +noun +conj +prep +adj +det +noun +conj +pron +verb +verb +pron +verb +conj +noun +verb +pron +prep +det +noun +pron +conj +conj +verb +verb +prep +det +noun +verb +pron +adv +verb +noun +num +verb +pron +prep +noun +adj +pron +adv +verb +noun +noun +pron +verb +verb +prep +det +noun +pron +det +noun +det +verb +prep +pron +prep +det +noun +adv +verb +pron +noun +verb +pron +verb +prep +det +noun +adv +verb +prep +noun +prep +noun +det +verb +noun +pron +verb +prep +noun +noun +noun +verb +conj +conj +verb +prep +det +noun +verb +adv +verb +verb +conj +det +noun +conj +noun +conj +noun +conj +noun +noun +conj +noun +noun +conj +noun +noun +noun +conj +noun +det +noun +conj +noun +noun +pron +adj +verb +verb +adv +det +noun +prep +noun +conj +noun +det +noun +det +noun +conj +prep +det +noun +pron +conj +prep +det +noun +pron +verb +prep +adj +det +noun +noun +verb +conj +verb +noun +noun +prep +det +pron +adv +num +num +noun +noun +verb +verb +det +noun +pron +verb +det +noun +det +adj +prep +noun +noun +prep +noun +det +verb +noun +det +verb +noun +conj +verb +verb +prep +pron +conj +verb +det +noun +det +noun +pron +conj +conj +pron +verb +noun +prep +noun +det +noun +conj +adj +verb +verb +adj +conj +verb +adj +det +noun +pron +conj +adj +verb +adj +det +verb +noun +conj +verb +det +noun +pron +det +adj +noun +pron +noun +pron +verb +noun +noun +conj +verb +prep +noun +noun +verb +det +noun +pron +adj +conj +adv +verb +det +verb +prep +pron +conj +det +noun +pron +verb +adj +conj +verb +det +noun +verb +pron +prep +adj +noun +pron +verb +conj +verb +prep +pron +det +noun +noun +verb +prep +det +noun +noun +prep +det +noun +pron +verb +prep +pron +noun +det +noun +pron +prep +pron +verb +adj +pron +conj +verb +num +noun +det +verb +noun +pron +verb +noun +conj +noun +conj +verb +verb +noun +noun +adj +pron +verb +pron +verb +prep +pron +det +num +adj +verb +det +noun +det +noun +pron +conj +noun +prep +pron +verb +noun +verb +prep +det +noun +det +adj +conj +verb +noun +pron +conj +verb +det +noun +prep +noun +conj +verb +prep +det +num +noun +conj +prep +det +verb +det +noun +det +noun +verb +adj +adv +prep +det +pron +conj +verb +adv +prep +det +noun +noun +conj +verb +noun +adj +conj +verb +adj +det +noun +adv +verb +verb +conj +verb +pron +verb +noun +conj +noun +conj +verb +prep +adj +adj +pron +conj +verb +adj +noun +adj +conj +verb +verb +adj +noun +conj +det +noun +verb +verb +pron +conj +verb +verb +prep +noun +adj +noun +adj +prep +adj +noun +det +prep +det +noun +conj +verb +det +noun +pron +verb +det +noun +conj +verb +conj +verb +adj +adj +det +adj +noun +verb +pron +conj +verb +conj +verb +verb +verb +ptcl +adj +pron +det +verb +verb +noun +conj +adv +pron +verb +adj +det +adj +noun +pron +prep +pron +verb +noun +conj +noun +conj +noun +conj +det +verb +det +noun +conj +noun +conj +noun +noun +conj +det +noun +conj +noun +conj +noun +noun +conj +det +noun +det +noun +det +prep +noun +conj +det +verb +adj +conj +adj +conj +noun +noun +conj +noun +verb +verb +pron +det +adj +noun +det +adj +det +noun +conj +verb +adj +conj +verb +adj +prep +adj +verb +verb +pron +pron +verb +conj +adj +verb +verb +conj +noun +verb +verb +conj +verb +prep +det +num +det +noun +verb +det +noun +pron +conj +verb +pron +noun +adj +conj +det +verb +noun +adj +pron +pron +adj +verb +conj +verb +det +noun +pron +conj +adv +conj +pron +verb +pron +verb +conj +verb +noun +adj +det +noun +conj +pron +verb +det +verb +prep +det +noun +noun +conj +verb +prep +det +adj +noun +verb +det +noun +verb +prep +det +noun +pron +prep +adj +noun +conj +verb +det +noun +pron +conj +det +noun +pron +conj +det +noun +pron +noun +verb +conj +det +adj +pron +noun +verb +conj +prep +det +noun +pron +conj +prep +det +noun +pron +prep +det +noun +pron +verb +prep +det +noun +pron +conj +verb +conj +verb +noun +prep +det +noun +adv +conj +noun +prep +det +noun +adv +noun +conj +noun +conj +noun +noun +det +noun +verb +prep +noun +conj +det +noun +prep +noun +adv +verb +noun +noun +det +adj +conj +adj +conj +verb +adj +ptcl +pron +verb +det +noun +noun +verb +noun +noun +verb +det +noun +pron +noun +det +noun +noun +verb +prep +det +noun +prep +pron +noun +conj +noun +conj +noun +pron +verb +prep +pron +det +noun +prep +adj +pron +conj +pron +verb +pron +det +verb +noun +conj +noun +det +noun +adj +prep +noun +adj +verb +verb +pron +det +noun +verb +verb +det +noun +det +noun +conj +adv +verb +adj +verb +pron +prep +pron +conj +noun +verb +prep +pron +verb +det +noun +prep +pron +prep +adj +conj +prep +adj +pron +verb +conj +adv +verb +prep +pron +verb +pron +det +noun +conj +verb +det +noun +pron +conj +adv +adv +det +noun +pron +verb +prep +noun +conj +adv +verb +det +noun +pron +prep +noun +conj +verb +det +adj +pron +verb +noun +verb +pron +noun +noun +verb +pron +noun +prep +det +noun +pron +noun +noun +verb +verb +prep +noun +prep +pron +prep +det +noun +noun +conj +conj +verb +conj +verb +conj +det +noun +pron +verb +prep +pron +prep +det +noun +pron +conj +noun +verb +conj +verb +conj +noun +verb +pron +det +noun +prep +noun +det +noun +pron +verb +prep +det +noun +pron +verb +verb +prep +det +noun +det +noun +conj +conj +verb +prep +noun +conj +det +noun +pron +verb +noun +pron +det +noun +verb +det +noun +pron +adj +pron +verb +noun +conj +det +adj +det +noun +verb +conj +det +noun +det +noun +det +adj +verb +prep +det +noun +verb +pron +pron +pron +conj +verb +conj +verb +conj +adv +noun +verb +prep +det +noun +conj +verb +pron +verb +noun +det +noun +pron +verb +prep +adj +pron +conj +ptcl +verb +det +adj +pron +noun +det +noun +pron +conj +adv +verb +adj +noun +noun +conj +conj +noun +conj +noun +verb +det +noun +pron +pron +det +noun +pron +pron +verb +conj +verb +verb +det +noun +conj +verb +prep +det +noun +conj +det +adj +noun +pron +verb +noun +noun +conj +noun +prep +pron +verb +conj +verb +adj +pron +prep +det +noun +noun +noun +prep +noun +det +noun +pron +conj +verb +det +noun +det +adj +noun +conj +pron +verb +det +noun +conj +det +noun +pron +conj +adj +det +prep +adj +ptcl +pron +verb +noun +det +noun +pron +conj +adj +noun +adj +verb +conj +verb +pron +verb +verb +prep +det +noun +det +adj +pron +conj +conj +det +verb +det +noun +pron +verb +conj +verb +prep +det +noun +pron +noun +adv +adj +conj +verb +verb +det +noun +det +noun +conj +det +noun +det +noun +det +noun +conj +det +noun +conj +verb +adj +noun +noun +conj +adj +noun +conj +noun +prep +det +noun +verb +conj +adj +det +verb +prep +det +pron +verb +adj +adj +conj +det +noun +conj +det +noun +verb +conj +verb +pron +adj +conj +ptcl +pron +noun +verb +conj +prep +noun +verb +adv +prep +det +noun +conj +verb +prep +noun +noun +verb +noun +prep +noun +conj +noun +noun +verb +det +noun +conj +verb +noun +prep +adj +det +noun +conj +det +noun +verb +det +verb +prep +noun +prep +det +pron +conj +noun +conj +noun +verb +prep +det +noun +prep +det +noun +det +noun +det +adj +conj +pron +noun +adj +prep +noun +noun +pron +verb +verb +pron +verb +prep +noun +prep +det +noun +det +noun +det +verb +adj +det +verb +noun +prep +det +verb +prep +det +noun +pron +verb +noun +conj +noun +verb +verb +prep +det +noun +verb +noun +verb +conj +noun +verb +prep +pron +prep +det +noun +verb +verb +prep +pron +conj +det +verb +pron +verb +pron +prep +pron +verb +conj +verb +noun +noun +conj +noun +adv +verb +pron +conj +pron +verb +pron +pron +verb +prep +det +noun +noun +noun +det +noun +verb +conj +verb +pron +det +adj +noun +verb +pron +conj +adv +verb +det +noun +pron +conj +det +noun +conj +verb +verb +conj +verb +conj +verb +prep +pron +prep +det +noun +verb +conj +verb +conj +verb +det +noun +conj +verb +adj +det +noun +pron +verb +conj +verb +det +noun +conj +verb +pron +conj +pron +verb +det +prep +det +noun +verb +prep +det +adj +noun +det +noun +conj +verb +noun +conj +noun +prep +det +verb +pron +conj +verb +pron +det +noun +conj +det +noun +verb +adj +det +noun +prep +pron +prep +det +noun +det +verb +noun +adj +conj +verb +det +noun +verb +prep +det +noun +noun +noun +pron +verb +prep +pron +conj +pron +pron +verb +conj +adj +noun +conj +noun +verb +det +verb +pron +det +noun +noun +conj +noun +conj +noun +det +noun +det +noun +pron +verb +det +noun +pron +noun +ptcl +pron +pron +verb +conj +verb +prep +noun +noun +verb +pron +verb +conj +pron +det +adj +conj +adj +verb +conj +verb +noun +noun +verb +pron +conj +det +noun +det +noun +verb +pron +det +noun +verb +prep +adj +pron +pron +noun +verb +conj +prep +det +noun +det +noun +pron +pron +pron +verb +conj +verb +verb +det +noun +pron +conj +det +noun +det +prep +pron +verb +pron +det +noun +pron +prep +adj +pron +conj +noun +adv +verb +conj +prep +noun +verb +conj +adv +det +noun +pron +conj +det +noun +pron +verb +prep +noun +adj +det +noun +verb +det +noun +pron +verb +adv +conj +verb +conj +verb +prep +det +verb +pron +det +noun +conj +ptcl +verb +noun +noun +prep +noun +det +noun +conj +verb +det +verb +pron +noun +noun +verb +ptcl +pron +noun +verb +prep +noun +noun +adj +pron +verb +det +noun +prep +noun +det +adj +prep +noun +pron +noun +conj +noun +verb +conj +noun +pron +verb +noun +det +noun +prep +det +noun +pron +conj +pron +pron +verb +prep +adj +ptcl +pron +verb +prep +pron +conj +verb +adj +noun +ptcl +pron +adv +verb +det +noun +pron +verb +prep +det +noun +conj +adv +adj +det +noun +prep +noun +conj +det +adv +pron +verb +adv +verb +det +noun +pron +pron +verb +det +noun +det +noun +conj +det +noun +pron +det +noun +verb +prep +det +noun +pron +verb +prep +noun +conj +prep +det +noun +pron +verb +adj +det +noun +det +noun +pron +adj +det +noun +verb +det +noun +pron +verb +pron +verb +pron +prep +det +verb +adj +prep +det +noun +pron +conj +verb +pron +prep +det +noun +verb +pron +det +noun +conj +det +noun +det +noun +conj +det +noun +verb +prep +det +verb +pron +det +noun +conj +verb +prep +det +noun +det +noun +det +prep +adj +conj +verb +pron +det +noun +conj +verb +prep +noun +prep +det +adv +conj +verb +noun +adv +conj +adj +det +verb +det +noun +verb +conj +verb +noun +det +noun +adv +noun +num +conj +verb +prep +det +adv +verb +pron +det +noun +conj +det +adj +conj +det +noun +prep +noun +conj +noun +det +noun +conj +noun +conj +noun +conj +noun +conj +pron +verb +prep +noun +adj +conj +verb +pron +prep +det +adj +verb +prep +pron +noun +conj +prep +pron +noun +verb +pron +pron +adv +noun +verb +noun +adj +verb +prep +pron +noun +det +noun +conj +adj +conj +pron +adv +verb +prep +noun +noun +adj +prep +pron +pron +verb +adj +verb +adj +pron +conj +adj +det +noun +noun +conj +prep +det +noun +noun +noun +det +noun +pron +pron +verb +pron +det +noun +verb +prep +adj +prep +pron +pron +verb +prep +pron +adj +pron +verb +det +noun +det +verb +prep +pron +det +noun +det +verb +prep +noun +noun +conj +adv +verb +prep +adj +adj +det +noun +conj +adv +verb +prep +det +noun +noun +adj +det +verb +prep +noun +prep +pron +verb +verb +pron +conj +verb +det +det +noun +conj +noun +noun +conj +verb +conj +noun +adj +verb +conj +noun +verb +conj +verb +pron +conj +prep +det +noun +verb +conj +verb +det +noun +det +verb +prep +pron +verb +adj +verb +verb +conj +verb +pron +prep +det +noun +verb +verb +prep +pron +verb +pron +verb +det +noun +pron +conj +conj +conj +adj +noun +verb +prep +pron +adj +det +verb +noun +adj +conj +adv +verb +verb +conj +conj +adv +prep +adj +verb +prep +det +noun +verb +pron +adv +verb +prep +det +noun +pron +adj +noun +conj +verb +pron +verb +adv +adv +verb +conj +verb +prep +det +noun +det +noun +conj +det +noun +conj +noun +verb +verb +prep +pron +conj +adj +verb +prep +det +noun +pron +verb +adv +conj +det +noun +verb +conj +adv +verb +pron +pron +verb +conj +verb +adv +verb +conj +det +verb +verb +pron +adj +verb +det +adv +verb +pron +prep +det +noun +conj +adj +verb +det +noun +prep +det +verb +conj +noun +adj +num +verb +det +noun +prep +pron +verb +det +noun +pron +det +noun +conj +verb +verb +prep +det +adj +conj +verb +pron +prep +pron +det +noun +conj +det +adj +verb +conj +det +verb +adv +verb +noun +prep +det +noun +conj +verb +noun +pron +det +verb +det +noun +conj +det +noun +conj +det +noun +conj +adj +det +prep +pron +det +det +noun +pron +prep +noun +adj +noun +noun +noun +pron +verb +conj +pron +verb +noun +conj +noun +verb +adj +verb +det +noun +det +noun +conj +det +noun +verb +prep +det +pron +prep +det +noun +conj +prep +det +noun +pron +conj +verb +prep +noun +prep +det +noun +pron +prep +det +adj +noun +pron +noun +pron +verb +conj +noun +conj +noun +noun +prep +noun +conj +noun +noun +verb +pron +verb +det +noun +pron +conj +det +noun +verb +conj +noun +det +adv +verb +prep +det +noun +pron +conj +verb +det +noun +pron +prep +noun +adj +verb +det +noun +pron +prep +det +det +noun +verb +pron +prep +noun +conj +noun +conj +noun +verb +prep +det +noun +det +adj +noun +pron +noun +conj +verb +pron +verb +det +noun +prep +pron +verb +verb +conj +verb +adj +det +adj +noun +conj +verb +det +noun +det +noun +prep +noun +conj +det +noun +det +verb +noun +conj +noun +verb +adj +conj +adv +adj +pron +det +verb +pron +adj +verb +verb +conj +verb +pron +adj +adj +conj +noun +adj +verb +det +noun +det +noun +noun +det +noun +det +noun +conj +noun +adj +verb +prep +adj +pron +conj +adv +adj +pron +verb +prep +pron +conj +pron +noun +noun +conj +noun +verb +verb +verb +det +noun +det +verb +conj +verb +prep +det +noun +det +noun +conj +verb +adj +conj +ptcl +pron +noun +verb +conj +noun +det +verb +noun +prep +det +noun +pron +verb +verb +noun +noun +noun +noun +det +noun +verb +pron +noun +verb +verb +det +noun +conj +verb +prep +det +noun +det +noun +conj +noun +pron +noun +noun +prep +noun +det +noun +pron +verb +noun +conj +verb +prep +det +noun +verb +adv +det +noun +conj +verb +noun +pron +prep +det +noun +det +noun +verb +conj +verb +det +noun +noun +prep +pron +verb +det +noun +det +noun +pron +verb +pron +det +noun +det +adj +conj +verb +prep +det +noun +det +noun +ptcl +verb +pron +verb +conj +verb +prep +det +adj +noun +verb +pron +conj +verb +prep +det +noun +pron +det +noun +pron +adv +verb +noun +conj +det +noun +conj +det +noun +verb +det +noun +pron +verb +verb +conj +verb +noun +adj +prep +adj +det +verb +conj +verb +det +adj +verb +pron +conj +verb +verb +conj +verb +adv +noun +adj +noun +conj +det +noun +pron +adv +verb +det +verb +verb +conj +verb +prep +pron +noun +verb +pron +ptcl +pron +det +noun +verb +conj +det +verb +ptcl +pron +conj +det +noun +prep +pron +pron +conj +verb +pron +verb +det +noun +noun +verb +det +noun +det +verb +det +noun +pron +prep +det +noun +conj +verb +pron +conj +verb +adv +prep +det +noun +pron +conj +verb +conj +verb +det +noun +verb +pron +adj +conj +verb +verb +prep +det +noun +pron +conj +verb +noun +adj +prep +adj +det +noun +conj +prep +adj +det +verb +pron +conj +prep +det +noun +det +noun +verb +noun +conj +noun +adj +prep +det +noun +conj +verb +adv +adj +prep +det +noun +noun +conj +det +adj +adj +verb +verb +pron +conj +verb +pron +det +noun +conj +adv +verb +verb +det +noun +noun +conj +noun +conj +noun +conj +adv +prep +det +noun +verb +det +adj +conj +verb +prep +noun +conj +noun +conj +verb +noun +conj +det +noun +verb +pron +pron +conj +verb +adv +det +noun +det +adv +noun +noun +verb +adj +conj +verb +prep +noun +adj +pron +adj +verb +conj +verb +det +noun +conj +adj +det +prep +pron +det +verb +noun +det +noun +verb +noun +conj +verb +det +noun +prep +det +noun +conj +verb +pron +prep +noun +adj +conj +noun +noun +prep +noun +verb +det +noun +det +noun +conj +verb +pron +verb +verb +conj +verb +verb +prep +det +noun +det +noun +adj +det +noun +det +noun +pron +conj +verb +verb +prep +det +noun +prep +det +noun +conj +verb +conj +verb +det +noun +conj +det +prep +pron +verb +det +noun +conj +adj +det +noun +det +noun +noun +conj +verb +prep +det +noun +verb +pron +conj +det +verb +noun +adv +verb +pron +prep +det +noun +conj +verb +verb +verb +conj +verb +det +noun +verb +prep +adj +noun +conj +det +noun +verb +prep +det +noun +conj +verb +adv +adj +verb +conj +conj +verb +det +noun +pron +conj +det +noun +det +noun +conj +det +noun +verb +prep +pron +ptcl +pron +verb +pron +conj +verb +pron +verb +pron +conj +verb +det +noun +pron +verb +prep +det +noun +verb +verb +prep +det +noun +conj +verb +det +noun +adv +verb +det +noun +prep +det +noun +verb +pron +adv +prep +noun +conj +verb +det +noun +conj +verb +conj +verb +pron +verb +prep +det +noun +conj +verb +pron +det +noun +verb +noun +verb +pron +adv +verb +prep +det +noun +pron +conj +verb +verb +det +noun +det +noun +pron +conj +verb +verb +prep +pron +det +noun +det +noun +pron +conj +verb +noun +conj +det +noun +verb +verb +verb +noun +adv +conj +noun +det +noun +det +noun +pron +verb +noun +pron +pron +verb +verb +prep +noun +pron +det +noun +noun +conj +noun +verb +det +adj +pron +det +verb +noun +det +noun +conj +noun +noun +conj +pron +verb +noun +det +noun +pron +conj +det +noun +det +adj +pron +verb +det +noun +det +verb +pron +conj +det +verb +verb +conj +verb +verb +pron +conj +verb +pron +prep +det +noun +noun +noun +noun +noun +adj +adj +det +noun +verb +adv +adj +det +noun +verb +conj +verb +prep +pron +noun +noun +verb +pron +prep +det +noun +pron +pron +verb +verb +conj +prep +pron +det +noun +verb +noun +verb +verb +pron +pron +pron +verb +noun +noun +adv +adj +pron +verb +conj +adj +pron +verb +pron +verb +conj +verb +prep +adj +prep +pron +verb +noun +det +noun +prep +det +noun +det +noun +conj +verb +noun +prep +pron +pron +verb +conj +adj +pron +verb +pron +verb +conj +det +adv +verb +pron +verb +prep +det +noun +pron +conj +verb +pron +conj +conj +verb +prep +noun +det +noun +pron +conj +det +noun +pron +verb +conj +conj +prep +noun +verb +adv +verb +verb +pron +ptcl +adv +adv +adj +verb +conj +verb +pron +conj +verb +det +noun +verb +verb +adv +verb +prep +det +noun +det +noun +conj +verb +ptcl +conj +det +verb +verb +prep +noun +det +noun +conj +verb +prep +det +noun +verb +conj +adj +noun +prep +det +noun +conj +prep +noun +adv +verb +verb +conj +verb +det +noun +noun +conj +prep +det +noun +pron +verb +det +noun +verb +noun +det +noun +prep +det +adj +conj +verb +prep +det +noun +det +adj +det +noun +pron +conj +det +num +verb +det +noun +det +noun +verb +adv +adj +verb +pron +verb +det +noun +det +noun +verb +noun +conj +noun +verb +noun +prep +pron +verb +num +adj +noun +conj +noun +pron +verb +prep +det +noun +pron +conj +pron +det +noun +conj +det +noun +det +noun +verb +conj +verb +det +noun +prep +adj +det +noun +conj +verb +noun +noun +adj +noun +conj +noun +adj +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +noun +noun +pron +verb +prep +det +noun +conj +verb +verb +pron +det +noun +conj +det +noun +det +noun +verb +conj +verb +det +noun +det +noun +prep +noun +adv +conj +adj +noun +det +noun +verb +det +noun +conj +noun +adj +noun +conj +noun +verb +noun +conj +noun +adj +prep +det +noun +conj +verb +pron +det +prep +det +noun +det +verb +noun +conj +noun +conj +noun +conj +det +prep +noun +conj +noun +verb +det +noun +conj +adv +verb +verb +det +noun +conj +det +noun +pron +verb +adv +verb +noun +verb +conj +verb +pron +verb +noun +adj +prep +noun +conj +det +noun +conj +verb +det +noun +conj +det +adj +conj +det +noun +conj +verb +verb +pron +conj +verb +prep +det +noun +conj +verb +noun +adj +verb +det +noun +pron +adv +verb +verb +noun +prep +det +noun +det +adj +conj +det +noun +conj +verb +pron +verb +conj +noun +det +noun +pron +verb +det +noun +pron +conj +verb +det +noun +pron +verb +pron +noun +conj +verb +prep +pron +adj +det +verb +prep +det +noun +verb +det +noun +pron +conj +noun +noun +conj +verb +det +noun +ptcl +pron +adv +verb +conj +det +verb +noun +noun +conj +noun +verb +det +noun +det +noun +verb +det +noun +pron +noun +verb +prep +det +noun +conj +conj +verb +pron +prep +noun +conj +verb +prep +pron +verb +prep +det +noun +pron +conj +det +noun +pron +conj +verb +prep +det +noun +ptcl +pron +pron +verb +adv +verb +prep +noun +noun +verb +prep +noun +conj +prep +det +verb +det +noun +pron +verb +pron +prep +det +noun +pron +prep +pron +pron +adv +verb +conj +adv +verb +pron +noun +prep +pron +conj +noun +noun +conj +verb +verb +pron +prep +noun +pron +conj +det +noun +pron +prep +pron +adv +verb +pron +noun +conj +verb +adv +det +noun +conj +verb +det +noun +pron +adj +prep +noun +adj +conj +verb +conj +verb +pron +noun +adj +conj +det +noun +ptcl +pron +verb +verb +pron +det +noun +verb +conj +prep +pron +verb +conj +verb +pron +prep +det +noun +pron +conj +verb +pron +noun +noun +conj +adv +verb +det +noun +conj +verb +pron +det +noun +det +adj +conj +noun +det +noun +conj +noun +det +num +noun +conj +det +noun +verb +det +noun +verb +prep +noun +conj +verb +det +noun +prep +pron +conj +verb +pron +prep +adj +det +noun +pron +conj +verb +pron +noun +conj +noun +prep +noun +noun +noun +conj +verb +pron +verb +prep +noun +conj +adj +det +noun +pron +conj +verb +noun +prep +adj +det +noun +conj +noun +conj +noun +adj +conj +adv +verb +noun +det +noun +pron +conj +noun +verb +verb +noun +prep +noun +verb +det +noun +pron +adj +conj +prep +det +adj +verb +noun +det +noun +pron +conj +adj +verb +det +noun +det +noun +noun +conj +verb +noun +verb +noun +det +noun +pron +conj +adj +det +noun +prep +noun +num +num +conj +verb +noun +prep +noun +conj +verb +pron +conj +det +noun +pron +conj +verb +prep +noun +conj +verb +prep +det +noun +pron +verb +noun +noun +noun +prep +det +noun +noun +prep +noun +conj +conj +verb +det +noun +det +noun +pron +verb +det +noun +det +noun +det +noun +verb +conj +verb +prep +noun +prep +pron +verb +prep +noun +noun +adj +pron +adv +verb +det +noun +pron +verb +det +noun +pron +verb +det +noun +det +verb +det +noun +pron +adj +prep +det +adv +verb +prep +pron +noun +verb +noun +conj +verb +adj +det +noun +pron +verb +noun +adj +prep +det +noun +det +noun +conj +verb +pron +verb +pron +det +noun +noun +conj +verb +pron +pron +prep +noun +conj +verb +noun +adj +noun +adj +conj +verb +adj +prep +noun +conj +noun +pron +conj +conj +verb +pron +adj +noun +verb +prep +det +noun +pron +verb +det +noun +pron +det +noun +noun +conj +verb +pron +verb +verb +conj +verb +noun +det +verb +verb +det +adj +conj +verb +verb +det +noun +conj +det +noun +prep +noun +pron +verb +noun +pron +conj +det +adv +verb +conj +det +verb +noun +verb +pron +verb +conj +verb +pron +prep +noun +verb +noun +noun +verb +conj +pron +verb +pron +conj +det +verb +det +adv +verb +pron +verb +pron +pron +verb +noun +conj +noun +prep +pron +ptcl +verb +pron +pron +verb +pron +noun +verb +adv +det +adj +conj +verb +noun +prep +det +noun +pron +conj +verb +adj +prep +noun +noun +adv +verb +noun +num +conj +verb +noun +num +verb +pron +prep +det +adj +det +noun +noun +noun +prep +noun +noun +noun +conj +det +noun +verb +verb +det +noun +conj +verb +pron +verb +verb +noun +noun +pron +det +noun +det +noun +pron +det +noun +noun +conj +noun +conj +noun +conj +adj +verb +noun +adv +verb +verb +conj +verb +pron +det +noun +verb +det +noun +det +noun +pron +conj +det +noun +prep +pron +verb +noun +adj +verb +verb +verb +det +noun +det +noun +pron +det +prep +noun +conj +det +noun +pron +verb +conj +verb +verb +pron +conj +adv +verb +verb +pron +prep +noun +pron +det +noun +pron +verb +verb +pron +pron +verb +noun +conj +noun +pron +det +noun +conj +noun +conj +noun +verb +prep +noun +noun +det +verb +pron +prep +det +noun +pron +verb +pron +verb +noun +conj +noun +prep +noun +noun +conj +prep +adj +noun +conj +prep +det +adj +noun +num +pron +verb +det +noun +det +verb +det +noun +noun +noun +pron +verb +det +noun +prep +det +noun +pron +conj +pron +pron +verb +det +verb +prep +det +noun +prep +det +adj +prep +det +noun +det +verb +pron +prep +det +noun +noun +conj +det +noun +pron +pron +verb +noun +verb +verb +pron +pron +adv +verb +adj +verb +det +noun +pron +conj +verb +conj +verb +prep +det +noun +pron +prep +noun +verb +det +noun +verb +pron +noun +pron +verb +pron +conj +det +noun +pron +pron +verb +pron +prep +noun +noun +adv +verb +pron +verb +pron +conj +verb +prep +det +noun +pron +conj +verb +noun +det +noun +conj +verb +prep +det +noun +det +noun +pron +conj +verb +det +noun +conj +verb +pron +verb +det +noun +det +noun +conj +verb +prep +noun +det +noun +ptcl +noun +conj +noun +verb +pron +noun +num +prep +det +adj +noun +noun +conj +verb +det +noun +det +noun +conj +det +noun +det +noun +noun +det +noun +pron +verb +verb +pron +conj +verb +pron +prep +noun +det +noun +det +noun +verb +det +noun +pron +prep +det +adj +conj +verb +det +verb +det +noun +verb +pron +prep +det +noun +pron +verb +pron +adv +verb +verb +det +noun +pron +prep +noun +prep +det +noun +det +noun +pron +verb +det +noun +prep +noun +det +noun +pron +prep +det +noun +noun +pron +verb +noun +prep +det +noun +conj +verb +verb +noun +det +noun +noun +conj +noun +verb +pron +noun +conj +adv +det +adj +prep +adj +verb +conj +det +noun +verb +det +noun +pron +noun +conj +det +noun +noun +det +noun +pron +pron +noun +verb +pron +verb +noun +conj +pron +noun +det +noun +pron +ptcl +det +noun +pron +verb +pron +adj +adj +conj +adj +noun +conj +det +noun +pron +adv +det +noun +det +adj +verb +conj +det +noun +pron +adv +pron +pron +det +noun +adv +verb +det +noun +pron +conj +verb +det +verb +prep +det +noun +det +adj +pron +adv +pron +noun +conj +noun +verb +pron +verb +det +noun +prep +noun +noun +conj +adv +verb +conj +verb +pron +verb +det +noun +pron +conj +verb +det +noun +prep +pron +conj +verb +adj +noun +adj +verb +prep +det +noun +verb +noun +noun +conj +noun +verb +prep +adj +det +noun +conj +verb +verb +verb +det +noun +verb +conj +det +noun +det +noun +prep +adj +det +noun +verb +conj +verb +noun +adj +verb +det +noun +pron +conj +verb +adv +prep +pron +conj +verb +prep +det +noun +verb +conj +det +noun +verb +det +noun +pron +prep +det +noun +noun +verb +noun +conj +verb +det +noun +verb +conj +verb +noun +noun +verb +det +noun +pron +conj +verb +det +noun +verb +noun +adj +noun +adv +verb +pron +pron +det +noun +conj +pron +verb +verb +conj +noun +verb +verb +det +noun +pron +conj +verb +prep +pron +det +noun +noun +adj +prep +det +noun +det +prep +noun +conj +adj +verb +prep +det +noun +det +noun +conj +noun +prep +det +noun +conj +verb +det +noun +noun +adj +conj +verb +noun +adj +prep +pron +conj +noun +verb +det +noun +prep +det +noun +verb +verb +conj +noun +conj +noun +verb +prep +noun +conj +ptcl +det +verb +verb +verb +det +noun +conj +noun +verb +prep +det +noun +det +noun +verb +pron +det +noun +conj +verb +det +noun +det +verb +prep +det +noun +adv +prep +det +verb +pron +conj +verb +det +noun +pron +verb +conj +adj +det +verb +noun +adj +verb +noun +adj +verb +conj +adj +verb +conj +adj +verb +conj +verb +adj +noun +prep +det +noun +pron +conj +noun +pron +noun +noun +verb +prep +det +noun +verb +conj +verb +det +noun +det +noun +verb +verb +pron +adj +pron +pron +verb +adj +prep +adj +prep +adj +verb +pron +verb +det +noun +det +noun +det +verb +adj +conj +verb +pron +prep +det +adj +noun +det +noun +verb +pron +conj +conj +verb +det +noun +verb +prep +det +noun +det +noun +conj +det +noun +noun +noun +verb +conj +noun +conj +noun +conj +det +noun +adv +pron +verb +conj +verb +verb +verb +det +noun +verb +conj +noun +conj +noun +adj +verb +verb +conj +det +prep +noun +noun +verb +conj +verb +det +noun +det +noun +det +noun +verb +prep +pron +noun +conj +noun +pron +verb +verb +prep +pron +conj +verb +noun +adj +conj +adv +verb +verb +prep +adj +pron +conj +adj +verb +verb +prep +det +noun +det +noun +noun +adv +verb +det +noun +prep +pron +conj +verb +noun +adj +conj +det +noun +verb +conj +prep +det +noun +det +noun +det +noun +verb +det +noun +verb +pron +noun +verb +verb +pron +det +noun +pron +conj +ptcl +pron +verb +det +noun +verb +noun +adj +conj +noun +verb +prep +pron +det +noun +pron +prep +pron +verb +prep +noun +conj +verb +det +noun +det +noun +prep +noun +verb +adv +verb +pron +noun +conj +noun +prep +det +noun +pron +conj +det +noun +pron +adv +verb +adj +prep +det +noun +conj +verb +prep +det +noun +pron +pron +conj +verb +det +noun +ptcl +ptcl +verb +pron +det +noun +det +noun +pron +conj +prep +noun +noun +conj +noun +noun +pron +verb +verb +conj +verb +det +noun +verb +verb +pron +prep +pron +prep +det +noun +conj +verb +prep +pron +adj +pron +verb +ptcl +conj +det +verb +conj +verb +det +noun +det +noun +verb +prep +noun +conj +adj +noun +det +noun +verb +conj +noun +noun +verb +prep +noun +verb +verb +conj +verb +prep +noun +prep +det +noun +det +verb +prep +noun +prep +noun +pron +verb +adj +conj +verb +verb +conj +verb +noun +noun +noun +noun +noun +noun +noun +pron +verb +prep +adj +det +noun +pron +pron +verb +verb +prep +noun +verb +conj +verb +conj +verb +prep +det +noun +pron +conj +verb +det +noun +noun +conj +verb +det +noun +det +noun +verb +conj +verb +det +noun +pron +conj +verb +det +noun +verb +pron +verb +noun +det +noun +conj +verb +conj +ptcl +verb +pron +verb +conj +det +verb +conj +ptcl +adv +verb +conj +adv +pron +verb +pron +conj +verb +det +noun +verb +verb +prep +pron +conj +det +noun +det +noun +pron +verb +verb +pron +conj +noun +prep +noun +verb +conj +conj +noun +prep +det +verb +pron +adj +adv +adv +verb +det +noun +pron +prep +det +noun +det +noun +pron +verb +det +noun +pron +pron +verb +conj +verb +prep +det +noun +det +noun +pron +conj +verb +det +noun +det +noun +verb +verb +pron +prep +pron +det +noun +verb +pron +prep +pron +conj +prep +adj +pron +conj +det +noun +verb +det +noun +pron +conj +verb +prep +det +noun +pron +verb +pron +det +noun +conj +conj +verb +prep +det +noun +verb +prep +pron +noun +conj +verb +det +noun +verb +noun +pron +verb +pron +verb +conj +verb +verb +det +noun +conj +verb +adj +prep +det +noun +conj +det +noun +conj +det +noun +conj +verb +pron +conj +conj +verb +prep +det +noun +noun +noun +verb +det +noun +conj +adv +verb +pron +adv +det +noun +conj +verb +det +noun +pron +verb +conj +noun +verb +prep +noun +conj +verb +verb +det +noun +adj +prep +det +verb +pron +prep +noun +conj +det +noun +adv +verb +noun +conj +noun +prep +det +noun +det +noun +verb +det +noun +verb +prep +pron +noun +prep +noun +prep +det +noun +conj +conj +verb +pron +det +noun +verb +conj +noun +conj +noun +verb +verb +prep +noun +conj +prep +det +verb +verb +pron +verb +det +noun +conj +adv +pron +verb +noun +prep +det +noun +conj +verb +prep +det +noun +verb +noun +verb +pron +noun +noun +pron +pron +verb +conj +verb +pron +verb +noun +conj +det +pron +verb +noun +pron +pron +verb +conj +verb +conj +verb +prep +det +noun +conj +verb +pron +pron +pron +pron +verb +verb +conj +det +noun +det +verb +pron +verb +adj +conj +verb +det +noun +conj +adj +verb +conj +verb +noun +prep +det +noun +conj +verb +det +noun +pron +adj +verb +conj +verb +pron +verb +prep +noun +conj +verb +verb +noun +adj +adv +conj +adv +verb +conj +verb +conj +verb +pron +noun +noun +noun +prep +noun +conj +verb +prep +pron +prep +noun +det +noun +noun +conj +det +verb +verb +pron +noun +conj +det +noun +prep +pron +verb +verb +prep +det +noun +det +verb +adj +conj +verb +prep +noun +noun +noun +noun +noun +conj +verb +verb +conj +verb +noun +noun +noun +verb +conj +verb +pron +noun +conj +verb +conj +verb +noun +noun +verb +prep +adj +prep +det +noun +pron +pron +adj +det +adj +pron +verb +prep +noun +conj +adv +verb +noun +prep +det +noun +verb +adj +det +verb +det +noun +pron +conj +verb +prep +pron +det +noun +verb +conj +noun +noun +verb +pron +pron +det +verb +det +noun +pron +prep +conj +noun +conj +noun +conj +noun +noun +conj +pron +verb +pron +pron +pron +prep +det +noun +pron +verb +verb +conj +verb +noun +conj +verb +prep +det +noun +conj +verb +prep +pron +det +noun +verb +noun +noun +det +noun +noun +det +verb +pron +prep +det +noun +pron +verb +verb +pron +conj +verb +conj +verb +noun +adj +conj +adv +verb +prep +pron +det +noun +conj +noun +conj +verb +conj +verb +verb +conj +verb +noun +verb +conj +verb +prep +det +prep +noun +noun +noun +pron +conj +adv +prep +det +noun +verb +det +noun +conj +pron +verb +det +noun +det +noun +conj +verb +adj +det +verb +conj +verb +ptcl +pron +verb +det +verb +prep +noun +det +verb +det +noun +pron +conj +adv +prep +pron +verb +conj +verb +pron +verb +prep +det +noun +conj +noun +adv +verb +conj +verb +adj +det +verb +prep +noun +verb +conj +pron +verb +det +noun +conj +conj +verb +noun +adj +verb +det +adj +verb +pron +conj +verb +det +noun +det +noun +pron +conj +verb +adv +det +noun +conj +noun +conj +noun +conj +pron +verb +conj +verb +det +noun +pron +noun +prep +det +noun +verb +pron +verb +prep +noun +conj +verb +prep +noun +verb +verb +det +noun +conj +adj +verb +pron +adv +verb +conj +verb +noun +conj +noun +verb +pron +verb +prep +det +noun +conj +verb +pron +adv +prep +det +noun +verb +det +noun +conj +conj +verb +pron +conj +adv +prep +noun +verb +prep +det +noun +noun +conj +verb +verb +conj +verb +prep +pron +prep +noun +verb +prep +det +noun +det +noun +conj +verb +conj +verb +prep +det +noun +conj +det +verb +verb +pron +conj +verb +det +noun +verb +pron +prep +noun +conj +verb +pron +prep +noun +conj +conj +det +noun +prep +adj +det +noun +conj +noun +conj +noun +verb +noun +verb +conj +verb +det +noun +det +noun +conj +det +noun +det +adj +noun +verb +conj +verb +noun +verb +prep +adj +verb +adv +prep +det +adj +det +verb +noun +conj +verb +adv +noun +pron +noun +noun +prep +noun +num +verb +prep +noun +pron +verb +verb +conj +verb +pron +det +noun +noun +verb +pron +noun +noun +verb +conj +verb +pron +conj +adv +verb +conj +verb +pron +adj +det +verb +noun +conj +det +noun +pron +verb +prep +det +noun +conj +prep +noun +verb +pron +noun +noun +noun +pron +verb +verb +noun +pron +verb +adj +noun +adj +conj +noun +pron +verb +conj +verb +prep +det +noun +pron +verb +pron +verb +conj +verb +verb +prep +noun +conj +verb +noun +prep +det +noun +det +noun +verb +conj +noun +verb +prep +pron +verb +num +noun +prep +pron +verb +adv +verb +verb +prep +pron +conj +verb +noun +verb +pron +pron +verb +verb +prep +det +noun +conj +verb +pron +adj +det +noun +verb +conj +verb +noun +conj +noun +pron +verb +prep +pron +verb +det +noun +conj +det +noun +verb +adv +adj +conj +verb +det +noun +verb +conj +verb +prep +det +noun +verb +noun +verb +conj +det +verb +det +noun +pron +conj +verb +det +noun +verb +conj +verb +pron +noun +verb +pron +conj +verb +det +adj +conj +det +noun +verb +pron +verb +conj +adj +verb +prep +adj +det +noun +conj +verb +adj +prep +det +noun +conj +verb +noun +adj +verb +prep +noun +prep +pron +noun +noun +conj +noun +pron +prep +noun +noun +noun +noun +prep +noun +det +verb +adj +adj +conj +verb +det +noun +prep +adj +det +noun +pron +verb +noun +adj +det +noun +conj +verb +det +noun +prep +adj +verb +prep +noun +adv +adv +prep +noun +adj +det +noun +noun +det +noun +verb +prep +pron +conj +verb +pron +noun +conj +det +verb +pron +conj +adj +verb +verb +pron +verb +noun +conj +verb +pron +det +noun +pron +conj +det +noun +pron +verb +prep +noun +prep +det +noun +conj +adv +verb +noun +prep +noun +conj +verb +noun +pron +pron +verb +noun +pron +verb +prep +pron +noun +noun +pron +verb +noun +prep +noun +conj +conj +verb +det +noun +det +verb +pron +verb +num +det +noun +conj +noun +adj +det +verb +pron +conj +verb +adj +pron +verb +pron +prep +det +noun +conj +det +adv +verb +pron +conj +det +noun +verb +verb +noun +prep +det +noun +verb +prep +noun +adj +conj +verb +adj +conj +verb +verb +conj +verb +pron +verb +prep +pron +noun +conj +verb +det +noun +verb +conj +verb +noun +pron +conj +noun +adj +adj +noun +verb +prep +det +noun +prep +pron +verb +adj +det +adj +conj +noun +det +noun +conj +noun +det +noun +conj +verb +noun +prep +pron +noun +verb +verb +conj +verb +conj +det +noun +verb +adv +noun +conj +adv +verb +adj +adj +conj +adj +conj +noun +adv +prep +adj +prep +pron +pron +det +noun +verb +pron +adv +verb +conj +pron +verb +prep +adv +conj +adj +verb +det +noun +prep +det +noun +conj +conj +prep +pron +verb +det +noun +ptcl +pron +verb +det +noun +pron +verb +verb +det +noun +det +verb +prep +det +noun +verb +det +noun +det +noun +verb +prep +det +noun +conj +verb +verb +ptcl +noun +det +verb +noun +adv +verb +conj +det +noun +verb +prep +det +noun +verb +det +noun +verb +noun +num +verb +pron +conj +verb +verb +conj +verb +prep +pron +adj +verb +conj +pron +verb +pron +conj +verb +noun +prep +det +noun +verb +verb +pron +verb +pron +verb +pron +det +noun +prep +pron +verb +conj +det +verb +noun +noun +noun +adj +conj +verb +det +noun +conj +verb +prep +adj +det +noun +det +adj +verb +prep +noun +adj +verb +pron +prep +det +noun +pron +conj +verb +noun +prep +pron +conj +verb +pron +verb +conj +det +adv +verb +verb +prep +pron +conj +pron +det +noun +det +prep +noun +verb +pron +conj +det +adv +verb +prep +det +noun +conj +det +noun +verb +verb +pron +verb +det +adj +pron +conj +det +adj +adj +conj +conj +verb +det +verb +det +noun +verb +pron +det +noun +verb +prep +det +noun +verb +conj +det +noun +verb +pron +verb +verb +adv +pron +pron +noun +verb +conj +verb +pron +verb +conj +verb +verb +adj +conj +verb +prep +pron +pron +verb +adv +adj +verb +noun +adj +verb +conj +verb +adj +pron +det +noun +verb +adj +noun +adj +conj +adj +verb +conj +adv +adv +verb +verb +conj +verb +pron +noun +verb +pron +conj +det +noun +verb +prep +adj +noun +prep +pron +det +noun +verb +verb +det +adj +prep +det +noun +pron +conj +verb +noun +verb +prep +pron +prep +noun +adj +conj +verb +noun +verb +pron +det +noun +conj +det +noun +pron +verb +prep +det +noun +conj +verb +prep +noun +conj +verb +noun +pron +verb +noun +pron +verb +prep +noun +noun +noun +prep +noun +conj +adv +verb +prep +pron +conj +pron +adv +verb +verb +conj +adv +adj +pron +prep +det +noun +verb +verb +adj +det +verb +pron +prep +det +noun +conj +noun +verb +det +noun +verb +prep +noun +verb +conj +adv +verb +noun +det +noun +conj +prep +adj +noun +det +verb +pron +conj +verb +noun +adj +pron +verb +det +noun +pron +verb +det +noun +noun +verb +noun +prep +noun +noun +pron +verb +adj +noun +pron +verb +det +noun +verb +prep +adj +det +noun +verb +prep +det +noun +prep +det +noun +pron +verb +noun +noun +det +prep +noun +conj +verb +pron +det +noun +noun +adj +conj +noun +pron +verb +verb +conj +verb +adj +det +verb +prep +det +adj +conj +det +noun +verb +prep +pron +conj +pron +noun +adj +pron +verb +conj +prep +det +noun +det +adj +conj +noun +pron +adv +verb +verb +prep +noun +pron +det +noun +verb +prep +det +adj +noun +conj +verb +pron +adj +verb +adv +adj +det +noun +conj +noun +det +verb +prep +det +noun +pron +pron +verb +conj +verb +pron +prep +det +verb +pron +prep +adj +conj +verb +pron +verb +det +noun +conj +verb +conj +pron +verb +det +verb +prep +det +noun +noun +verb +conj +adj +pron +adj +det +noun +verb +noun +noun +verb +prep +det +noun +pron +adj +det +verb +prep +pron +adv +verb +det +noun +det +noun +pron +verb +det +noun +det +adj +prep +adj +det +verb +det +noun +conj +verb +det +prep +noun +adj +pron +verb +det +noun +conj +adv +prep +det +noun +det +noun +det +adj +noun +verb +conj +verb +pron +verb +noun +conj +verb +det +noun +adv +verb +noun +ptcl +det +noun +verb +verb +pron +det +adv +verb +pron +pron +det +noun +det +adj +verb +conj +adv +pron +conj +verb +pron +prep +det +noun +noun +noun +verb +adv +verb +pron +verb +noun +pron +conj +verb +det +noun +conj +det +noun +det +verb +prep +det +noun +conj +adv +det +noun +verb +det +noun +det +noun +conj +conj +verb +noun +prep +noun +verb +prep +pron +det +prep +noun +verb +conj +verb +prep +noun +noun +verb +conj +verb +pron +conj +verb +noun +verb +pron +adv +verb +pron +verb +verb +prep +noun +noun +conj +verb +prep +noun +noun +verb +noun +pron +conj +noun +adj +adj +noun +verb +prep +det +noun +conj +verb +prep +pron +prep +pron +verb +verb +conj +verb +det +adj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +det +noun +conj +verb +adv +noun +verb +pron +noun +verb +verb +conj +verb +conj +verb +adv +noun +conj +adj +conj +adj +adv +verb +prep +det +noun +pron +conj +verb +prep +adj +noun +prep +det +noun +pron +det +noun +verb +pron +adv +verb +conj +pron +verb +prep +adv +conj +verb +adv +adj +prep +det +noun +conj +verb +adv +adj +noun +verb +prep +det +noun +prep +pron +verb +verb +prep +noun +prep +pron +conj +verb +det +noun +pron +verb +pron +adj +verb +conj +verb +prep +pron +adv +det +num +noun +pron +conj +verb +prep +det +noun +det +noun +conj +verb +pron +conj +verb +det +noun +prep +det +noun +pron +verb +conj +verb +verb +prep +noun +conj +verb +noun +det +verb +noun +pron +verb +noun +prep +pron +prep +pron +verb +pron +conj +adj +det +noun +pron +conj +prep +det +verb +pron +verb +verb +det +noun +det +adj +prep +pron +conj +adv +prep +pron +prep +noun +conj +verb +det +noun +det +noun +conj +verb +conj +noun +verb +noun +conj +pron +verb +prep +noun +adj +conj +conj +det +adj +noun +verb +pron +det +noun +adv +adv +pron +verb +prep +det +noun +noun +noun +pron +pron +verb +adj +verb +det +noun +conj +verb +pron +verb +conj +verb +det +noun +verb +conj +adv +det +noun +det +noun +det +noun +prep +noun +verb +ptcl +conj +det +verb +prep +det +noun +det +verb +prep +noun +verb +prep +noun +conj +noun +conj +noun +adj +verb +det +noun +conj +adv +adj +adj +conj +verb +pron +prep +pron +noun +noun +conj +noun +pron +verb +prep +noun +verb +adv +prep +det +noun +verb +det +noun +noun +conj +verb +noun +noun +prep +pron +conj +adj +noun +det +verb +verb +prep +det +noun +conj +verb +det +noun +prep +pron +prep +det +noun +det +noun +det +verb +prep +noun +conj +verb +noun +prep +noun +pron +verb +conj +verb +det +noun +det +det +noun +verb +conj +verb +adj +det +noun +det +noun +verb +det +noun +conj +verb +noun +adj +conj +adj +noun +adj +conj +noun +conj +verb +noun +adj +det +noun +conj +verb +prep +noun +verb +noun +conj +verb +verb +prep +noun +conj +verb +pron +adv +noun +adj +verb +prep +det +noun +conj +verb +noun +adj +conj +verb +adv +prep +noun +det +noun +noun +conj +prep +pron +det +noun +verb +prep +noun +noun +prep +noun +conj +verb +adj +prep +pron +noun +noun +verb +prep +det +noun +noun +adj +verb +verb +prep +adj +det +noun +pron +verb +prep +noun +conj +det +noun +conj +verb +pron +verb +adj +pron +prep +noun +verb +det +verb +prep +det +noun +noun +pron +adv +verb +verb +prep +det +adj +prep +noun +noun +conj +noun +conj +prep +pron +det +noun +verb +noun +det +noun +det +noun +verb +pron +det +prep +det +noun +conj +verb +noun +det +noun +noun +noun +conj +verb +conj +adj +verb +det +adj +verb +verb +adv +noun +conj +verb +noun +det +adj +pron +adv +verb +verb +prep +noun +verb +adj +noun +noun +verb +pron +verb +prep +det +noun +verb +pron +det +noun +conj +conj +det +noun +verb +prep +det +noun +conj +noun +verb +verb +adv +prep +det +noun +prep +det +noun +prep +pron +conj +conj +verb +verb +pron +det +noun +det +noun +pron +det +noun +verb +verb +prep +num +noun +verb +noun +adj +conj +noun +prep +det +noun +verb +det +noun +conj +verb +noun +noun +verb +conj +noun +verb +prep +det +noun +conj +verb +det +noun +det +noun +verb +pron +verb +verb +prep +noun +conj +verb +pron +det +noun +prep +det +noun +conj +verb +det +noun +prep +pron +verb +conj +verb +det +noun +pron +conj +verb +adv +conj +verb +pron +verb +det +noun +pron +conj +verb +pron +conj +verb +verb +conj +adv +verb +conj +adj +verb +det +verb +prep +det +noun +conj +verb +noun +verb +conj +verb +adj +conj +adj +noun +verb +prep +det +noun +det +adj +det +verb +prep +det +noun +pron +adj +verb +pron +conj +verb +verb +noun +adj +conj +adv +verb +det +noun +prep +pron +conj +det +noun +prep +pron +verb +verb +adv +verb +adv +conj +verb +det +noun +det +noun +pron +conj +verb +pron +prep +noun +noun +conj +adj +det +noun +det +noun +det +adj +conj +verb +verb +prep +det +noun +det +noun +det +noun +noun +det +verb +noun +adv +adj +verb +verb +conj +verb +conj +verb +pron +det +noun +det +noun +verb +verb +noun +noun +noun +conj +verb +det +noun +det +noun +prep +det +noun +adv +verb +det +noun +conj +verb +verb +verb +det +noun +prep +det +noun +conj +det +prep +pron +verb +verb +conj +det +verb +adv +verb +conj +det +verb +det +noun +verb +pron +conj +det +noun +verb +verb +conj +verb +verb +pron +conj +verb +conj +verb +pron +det +noun +verb +verb +pron +adv +det +noun +pron +verb +prep +det +noun +conj +verb +verb +noun +conj +det +noun +pron +conj +verb +verb +prep +adj +noun +conj +verb +noun +verb +noun +adv +adj +prep +det +noun +conj +pron +det +noun +verb +conj +noun +verb +pron +conj +adv +verb +verb +det +noun +verb +verb +conj +verb +prep +det +noun +prep +noun +verb +conj +verb +verb +noun +conj +adj +conj +adv +verb +prep +pron +conj +verb +noun +det +prep +det +noun +det +noun +verb +noun +prep +det +verb +pron +det +noun +prep +det +adj +conj +adj +noun +det +noun +verb +noun +adj +verb +prep +det +noun +verb +prep +pron +conj +det +noun +verb +noun +noun +conj +adv +noun +conj +adv +verb +pron +noun +noun +prep +pron +adv +verb +det +noun +det +noun +conj +verb +adj +verb +conj +det +noun +det +noun +verb +conj +verb +conj +noun +conj +noun +verb +prep +noun +verb +det +noun +verb +noun +det +verb +noun +conj +verb +prep +noun +prep +det +verb +noun +noun +conj +noun +conj +det +noun +conj +noun +det +verb +noun +conj +noun +det +noun +conj +noun +noun +det +noun +adj +conj +noun +conj +verb +pron +det +noun +conj +verb +verb +det +noun +det +adj +ptcl +verb +pron +det +noun +conj +noun +prep +det +noun +pron +verb +pron +adv +verb +conj +verb +conj +verb +det +noun +pron +verb +conj +conj +pron +verb +prep +det +adj +noun +verb +prep +noun +conj +adv +verb +prep +noun +conj +verb +prep +noun +verb +det +noun +det +noun +prep +det +noun +det +adj +conj +verb +adv +noun +noun +conj +verb +adj +det +noun +prep +noun +verb +noun +pron +noun +noun +adj +pron +noun +noun +pron +verb +prep +det +noun +noun +noun +noun +adj +pron +verb +noun +conj +noun +verb +verb +det +noun +det +noun +conj +verb +pron +noun +det +noun +conj +adv +verb +det +noun +pron +verb +verb +det +noun +prep +det +noun +conj +noun +det +adv +noun +verb +noun +adj +verb +prep +pron +verb +ptcl +adj +adj +noun +conj +adj +noun +noun +adj +adj +adj +noun +adv +verb +verb +det +noun +det +noun +det +adj +conj +adv +verb +noun +noun +prep +pron +conj +verb +adj +adv +verb +det +noun +prep +noun +conj +adv +verb +prep +pron +noun +conj +noun +conj +verb +verb +noun +adv +det +noun +verb +det +verb +verb +verb +prep +det +noun +det +noun +conj +verb +prep +det +noun +det +prep +noun +verb +prep +noun +det +noun +conj +noun +verb +prep +pron +verb +prep +noun +conj +pron +verb +prep +det +noun +verb +prep +noun +det +adj +conj +verb +prep +det +noun +det +noun +det +noun +verb +conj +prep +det +noun +det +noun +conj +det +noun +verb +det +noun +prep +pron +verb +noun +noun +conj +verb +prep +pron +pron +noun +noun +prep +det +noun +verb +conj +noun +verb +conj +verb +det +noun +verb +noun +noun +conj +det +verb +det +noun +verb +det +noun +det +noun +pron +noun +verb +det +noun +pron +conj +det +noun +verb +prep +det +noun +prep +noun +noun +conj +prep +noun +adj +verb +pron +prep +pron +conj +adv +adj +noun +verb +pron +prep +det +adj +conj +verb +noun +num +prep +noun +noun +verb +det +noun +pron +adv +noun +adj +conj +num +conj +prep +pron +verb +noun +prep +noun +noun +conj +verb +noun +conj +verb +pron +det +noun +det +noun +noun +noun +noun +prep +noun +noun +noun +num +conj +verb +pron +verb +det +noun +pron +prep +noun +pron +adv +verb +verb +verb +noun +det +det +noun +noun +prep +det +noun +pron +pron +verb +adj +det +noun +pron +det +noun +prep +pron +det +noun +prep +noun +verb +det +noun +noun +noun +verb +noun +prep +noun +det +noun +pron +noun +noun +adj +det +noun +noun +conj +conj +verb +noun +det +noun +verb +pron +pron +verb +verb +adv +verb +pron +conj +verb +verb +prep +pron +pron +adv +verb +adj +det +noun +det +noun +verb +noun +noun +noun +noun +noun +conj +det +prep +pron +verb +det +noun +pron +det +noun +det +noun +pron +verb +conj +det +verb +prep +noun +conj +det +noun +pron +pron +verb +conj +det +noun +det +noun +det +prep +adj +noun +verb +verb +verb +conj +adj +noun +noun +verb +verb +noun +verb +pron +conj +conj +verb +adj +det +prep +pron +verb +verb +prep +det +noun +verb +prep +noun +conj +det +noun +verb +pron +prep +adj +pron +verb +prep +noun +adj +det +verb +pron +prep +det +noun +prep +noun +pron +adv +verb +noun +pron +prep +det +noun +conj +pron +pron +verb +det +prep +det +noun +verb +noun +conj +pron +det +noun +verb +det +noun +pron +verb +noun +conj +adv +prep +det +noun +det +adj +verb +noun +pron +verb +pron +pron +adv +verb +pron +conj +conj +verb +pron +prep +adj +adv +verb +verb +prep +noun +adv +verb +conj +verb +pron +det +adj +noun +det +adj +conj +adv +prep +adj +verb +adv +verb +det +adj +pron +verb +noun +conj +conj +noun +adj +noun +verb +det +det +noun +noun +verb +conj +verb +prep +det +noun +pron +conj +verb +noun +conj +pron +det +noun +verb +adv +verb +noun +conj +adj +verb +pron +noun +noun +conj +prep +pron +pron +noun +noun +verb +conj +prep +adj +pron +adv +verb +prep +noun +noun +verb +prep +pron +adj +det +verb +verb +conj +verb +conj +verb +det +verb +prep +det +noun +verb +det +noun +conj +verb +conj +verb +conj +noun +verb +pron +prep +det +noun +pron +noun +pron +adv +adv +verb +conj +pron +verb +pron +conj +verb +pron +verb +prep +det +adv +noun +verb +pron +det +noun +pron +conj +verb +det +noun +verb +adj +det +adj +conj +det +verb +noun +det +noun +conj +det +noun +pron +verb +pron +verb +pron +verb +det +noun +det +noun +conj +det +verb +noun +adv +adj +det +noun +verb +verb +det +noun +det +noun +conj +det +adj +verb +det +noun +verb +noun +conj +verb +det +prep +noun +verb +verb +conj +verb +det +noun +conj +det +noun +verb +verb +adj +pron +adj +verb +det +noun +det +noun +conj +verb +pron +conj +adv +verb +pron +adj +det +adj +noun +verb +verb +prep +det +noun +conj +adv +verb +pron +det +noun +verb +pron +prep +noun +noun +det +verb +pron +prep +noun +prep +adj +det +noun +conj +verb +det +noun +verb +conj +verb +det +noun +det +noun +conj +verb +pron +verb +verb +prep +noun +adj +conj +verb +det +noun +det +noun +prep +adj +det +noun +conj +det +adj +verb +det +verb +noun +det +adj +conj +det +adj +det +noun +conj +verb +noun +prep +det +noun +conj +noun +conj +verb +pron +prep +det +noun +pron +conj +det +verb +det +noun +det +noun +prep +pron +verb +prep +noun +conj +det +noun +verb +noun +conj +noun +adj +conj +verb +prep +noun +prep +det +pron +verb +pron +prep +det +noun +det +adj +conj +verb +adv +conj +verb +conj +adj +conj +noun +adj +noun +conj +det +verb +adj +verb +conj +verb +det +noun +det +noun +prep +det +noun +conj +conj +adj +noun +verb +verb +prep +det +noun +det +verb +prep +det +noun +det +noun +pron +verb +noun +conj +noun +verb +prep +det +noun +pron +conj +verb +det +noun +det +noun +conj +conj +det +verb +prep +det +adj +conj +det +prep +det +noun +conj +conj +verb +noun +det +conj +noun +conj +adj +prep +det +noun +pron +verb +conj +verb +pron +verb +verb +prep +det +noun +det +noun +noun +conj +noun +conj +det +adj +conj +verb +verb +conj +pron +noun +adj +det +noun +prep +noun +verb +adj +prep +noun +noun +pron +pron +adv +verb +pron +verb +det +noun +verb +pron +verb +pron +conj +verb +conj +verb +noun +det +verb +verb +adj +noun +verb +prep +det +noun +pron +adj +conj +verb +conj +verb +conj +det +noun +verb +pron +verb +noun +verb +det +noun +pron +adv +verb +det +noun +verb +noun +verb +prep +pron +conj +verb +det +noun +noun +conj +det +noun +noun +conj +pron +verb +det +verb +det +noun +conj +det +noun +det +noun +det +verb +prep +det +noun +noun +conj +noun +prep +det +noun +verb +prep +det +noun +verb +verb +conj +verb +det +noun +noun +conj +noun +verb +det +noun +pron +verb +prep +det +noun +verb +conj +verb +noun +pron +pron +verb +adv +pron +adj +pron +noun +verb +verb +pron +prep +pron +det +adj +verb +prep +noun +verb +pron +verb +det +noun +conj +det +noun +conj +det +noun +conj +adj +det +prep +pron +pron +prep +det +verb +noun +verb +adj +det +noun +verb +det +noun +pron +conj +adv +adj +pron +verb +verb +adv +pron +noun +verb +conj +noun +adj +verb +noun +conj +noun +det +noun +pron +conj +pron +verb +adv +verb +det +noun +det +adv +verb +pron +conj +verb +prep +noun +conj +noun +adj +conj +verb +det +noun +conj +verb +det +noun +verb +prep +det +noun +verb +pron +verb +conj +verb +det +noun +pron +verb +verb +prep +det +noun +conj +det +adv +verb +prep +det +noun +prep +noun +conj +verb +det +noun +pron +conj +verb +adj +verb +prep +det +noun +conj +prep +noun +conj +prep +noun +verb +det +noun +det +noun +verb +verb +det +noun +conj +conj +verb +prep +adj +noun +pron +verb +prep +det +noun +det +noun +conj +verb +pron +prep +noun +adj +verb +prep +noun +verb +pron +det +noun +prep +pron +verb +conj +verb +det +noun +verb +prep +det +noun +conj +verb +prep +noun +det +noun +verb +prep +noun +conj +verb +prep +noun +adv +verb +verb +det +noun +det +noun +prep +det +noun +pron +verb +conj +verb +conj +verb +det +noun +verb +pron +verb +det +noun +prep +pron +conj +conj +verb +det +noun +noun +noun +conj +verb +noun +adv +adj +prep +det +noun +conj +pron +verb +prep +det +noun +verb +det +noun +conj +conj +adv +verb +det +noun +det +noun +adv +verb +verb +conj +verb +noun +conj +noun +adv +adj +det +noun +conj +det +noun +prep +pron +verb +verb +noun +conj +noun +conj +pron +adj +prep +pron +prep +det +noun +conj +adj +prep +noun +prep +det +noun +pron +ptcl +conj +det +verb +prep +det +noun +verb +det +conj +noun +conj +noun +verb +det +noun +det +noun +conj +verb +noun +adj +adj +det +noun +conj +verb +prep +noun +verb +prep +det +noun +conj +det +noun +conj +det +adj +conj +verb +pron +det +noun +verb +prep +pron +conj +verb +pron +det +prep +det +noun +det +noun +verb +verb +conj +verb +verb +pron +conj +verb +verb +det +noun +noun +conj +verb +det +noun +conj +det +adj +verb +prep +det +noun +pron +conj +adj +noun +verb +verb +noun +verb +prep +pron +noun +noun +pron +verb +conj +prep +noun +adj +prep +pron +verb +det +noun +prep +det +noun +pron +verb +det +noun +det +noun +det +noun +conj +verb +conj +det +noun +noun +verb +pron +verb +det +noun +det +adj +conj +adv +pron +conj +adj +verb +prep +conj +pron +conj +pron +det +noun +verb +det +noun +pron +conj +adv +pron +verb +det +noun +verb +noun +prep +det +noun +det +noun +pron +verb +conj +det +noun +pron +conj +pron +verb +conj +verb +prep +det +noun +det +noun +noun +verb +prep +pron +noun +pron +conj +verb +adj +det +noun +conj +verb +noun +conj +noun +verb +noun +conj +noun +pron +verb +det +noun +prep +det +noun +prep +pron +conj +prep +det +verb +pron +verb +noun +verb +noun +noun +verb +pron +noun +verb +conj +adj +det +noun +verb +verb +prep +noun +noun +det +noun +pron +conj +pron +verb +det +noun +det +noun +conj +verb +prep +pron +verb +conj +verb +det +noun +noun +det +verb +conj +det +verb +pron +verb +conj +verb +pron +conj +ptcl +verb +det +adj +det +noun +det +noun +adv +adj +det +noun +prep +pron +verb +det +noun +pron +prep +pron +verb +noun +verb +pron +adj +prep +noun +conj +pron +verb +adv +verb +det +prep +det +noun +verb +prep +det +noun +conj +verb +pron +det +verb +det +noun +det +noun +conj +det +noun +conj +adj +conj +det +noun +conj +noun +prep +noun +adj +prep +noun +det +verb +pron +verb +prep +det +noun +prep +adj +noun +verb +adv +verb +det +noun +conj +det +adj +prep +adj +det +noun +verb +noun +prep +pron +verb +prep +noun +prep +det +noun +conj +noun +noun +det +verb +noun +conj +noun +noun +verb +prep +det +noun +verb +prep +noun +pron +det +noun +conj +det +adj +noun +det +prep +det +noun +conj +noun +conj +noun +noun +det +prep +noun +verb +conj +verb +conj +pron +prep +pron +verb +pron +noun +verb +det +noun +pron +pron +adv +verb +verb +pron +verb +adv +verb +noun +verb +prep +pron +prep +det +adj +pron +noun +conj +noun +noun +verb +det +noun +pron +prep +det +noun +det +noun +pron +noun +noun +conj +verb +noun +conj +noun +conj +pron +prep +noun +verb +det +pron +conj +verb +det +noun +det +adj +conj +pron +adj +adj +noun +verb +pron +prep +pron +det +adv +verb +adj +conj +noun +conj +adj +conj +noun +prep +pron +verb +pron +adv +verb +verb +ptcl +conj +det +verb +verb +prep +noun +conj +verb +det +noun +verb +det +noun +conj +verb +verb +prep +det +noun +conj +noun +conj +noun +adv +pron +noun +verb +prep +noun +adj +verb +det +noun +conj +verb +conj +verb +noun +verb +prep +noun +prep +det +noun +prep +det +verb +pron +conj +noun +conj +noun +verb +prep +noun +verb +conj +verb +prep +adv +adj +adj +det +noun +det +noun +conj +prep +pron +noun +verb +prep +noun +noun +ptcl +verb +verb +det +noun +prep +noun +adj +prep +pron +verb +det +noun +det +noun +adv +verb +conj +noun +verb +verb +adv +det +noun +det +verb +noun +conj +noun +verb +det +verb +prep +pron +prep +noun +conj +adv +verb +pron +prep +det +noun +adv +verb +pron +conj +verb +noun +conj +verb +pron +prep +pron +conj +det +noun +verb +det +noun +verb +prep +noun +conj +noun +verb +noun +verb +verb +det +noun +det +noun +prep +det +noun +conj +verb +det +noun +conj +noun +verb +det +noun +conj +verb +conj +prep +noun +conj +prep +noun +conj +verb +verb +adv +noun +pron +noun +noun +noun +noun +adj +adj +conj +noun +noun +pron +verb +prep +det +prep +noun +conj +noun +noun +verb +det +noun +pron +prep +pron +verb +conj +verb +verb +pron +prep +det +adj +det +verb +prep +det +noun +pron +conj +verb +adj +conj +noun +det +noun +pron +verb +conj +conj +verb +det +noun +verb +pron +verb +det +noun +det +verb +prep +det +noun +conj +adj +det +prep +noun +conj +conj +det +noun +verb +det +noun +conj +verb +det +noun +prep +noun +conj +verb +det +noun +conj +adj +noun +verb +prep +det +adj +noun +verb +det +noun +prep +det +noun +conj +verb +prep +det +noun +verb +prep +det +noun +verb +conj +adv +verb +pron +det +noun +noun +conj +verb +det +noun +verb +prep +noun +conj +noun +prep +noun +det +noun +verb +noun +noun +pron +verb +verb +conj +verb +pron +conj +verb +verb +prep +noun +verb +pron +conj +conj +det +noun +verb +adv +verb +verb +prep +noun +verb +conj +verb +det +noun +pron +verb +pron +conj +verb +prep +noun +verb +prep +noun +conj +det +verb +prep +adj +noun +conj +prep +noun +pron +verb +adj +det +noun +noun +noun +noun +conj +verb +verb +prep +pron +det +noun +noun +pron +conj +det +noun +det +noun +verb +prep +det +noun +prep +noun +adv +noun +verb +verb +conj +verb +verb +det +verb +noun +conj +pron +noun +noun +noun +noun +noun +noun +verb +det +noun +verb +pron +det +noun +det +noun +verb +verb +det +verb +prep +noun +conj +conj +verb +conj +det +noun +pron +verb +verb +conj +verb +pron +adj +det +noun +verb +verb +prep +det +noun +pron +verb +conj +verb +pron +conj +verb +verb +pron +prep +det +noun +noun +pron +verb +noun +noun +verb +pron +pron +noun +adj +verb +det +noun +pron +verb +pron +verb +det +noun +conj +pron +verb +verb +pron +det +noun +noun +det +noun +det +adj +verb +pron +verb +pron +noun +noun +conj +pron +verb +prep +adj +noun +conj +noun +verb +conj +verb +det +noun +verb +verb +pron +prep +noun +noun +noun +verb +prep +pron +conj +verb +pron +det +noun +conj +det +noun +pron +verb +conj +verb +det +noun +det +noun +pron +verb +det +noun +conj +det +noun +verb +prep +det +noun +prep +det +noun +conj +verb +pron +det +noun +verb +pron +det +noun +verb +pron +det +noun +adj +verb +conj +verb +noun +pron +verb +conj +verb +adv +verb +pron +adj +verb +conj +verb +det +noun +prep +pron +conj +det +noun +verb +pron +det +noun +verb +verb +conj +verb +pron +adj +noun +verb +prep +noun +verb +det +noun +adv +verb +pron +pron +noun +pron +verb +verb +pron +prep +det +adj +noun +conj +det +noun +pron +verb +prep +det +noun +conj +prep +det +noun +noun +conj +noun +verb +verb +det +noun +conj +verb +pron +det +noun +conj +adv +noun +adj +verb +conj +verb +det +noun +det +noun +conj +verb +adv +det +noun +adj +conj +adj +det +noun +verb +conj +det +noun +adj +verb +conj +verb +verb +det +noun +det +noun +verb +det +noun +verb +pron +verb +verb +verb +det +noun +conj +verb +noun +adj +noun +verb +adj +adj +verb +pron +conj +adj +verb +adv +conj +verb +noun +verb +conj +adj +verb +verb +det +noun +conj +noun +conj +verb +pron +adv +verb +noun +pron +pron +verb +verb +conj +verb +conj +det +verb +verb +prep +det +noun +noun +conj +verb +pron +conj +det +noun +pron +conj +verb +pron +det +noun +det +noun +prep +adj +det +prep +det +noun +pron +conj +verb +pron +prep +pron +det +noun +det +noun +verb +prep +det +noun +conj +verb +pron +conj +det +pron +adj +adv +conj +verb +pron +prep +det +noun +verb +noun +conj +verb +adv +verb +det +noun +conj +noun +verb +verb +det +noun +det +noun +verb +verb +det +noun +pron +conj +verb +det +noun +det +noun +pron +prep +det +noun +adv +verb +det +noun +conj +verb +conj +adv +verb +verb +prep +noun +conj +det +noun +verb +prep +pron +verb +pron +adj +adj +noun +adj +verb +verb +prep +noun +conj +adv +adv +pron +verb +conj +ptcl +conj +verb +pron +pron +verb +conj +verb +det +noun +det +noun +det +noun +pron +conj +verb +verb +conj +adj +verb +conj +verb +verb +pron +conj +verb +verb +verb +prep +det +noun +conj +verb +prep +det +noun +verb +prep +det +noun +conj +verb +verb +det +noun +conj +verb +conj +verb +det +noun +conj +det +noun +verb +prep +noun +adv +verb +noun +det +adj +conj +prep +det +verb +det +noun +verb +prep +pron +conj +prep +noun +adj +verb +pron +prep +det +noun +verb +conj +verb +conj +verb +det +noun +verb +conj +verb +prep +adj +conj +conj +pron +verb +det +noun +det +noun +pron +pron +verb +pron +conj +pron +prep +pron +verb +conj +verb +det +noun +conj +det +noun +conj +det +verb +noun +noun +adj +conj +noun +det +adj +adv +adj +conj +det +adj +verb +conj +verb +det +adj +noun +pron +adj +conj +verb +verb +det +noun +conj +verb +det +noun +noun +verb +pron +verb +prep +det +noun +conj +adv +verb +pron +verb +noun +conj +pron +noun +prep +det +noun +verb +conj +det +det +noun +verb +pron +adv +adv +verb +pron +verb +noun +conj +pron +adj +prep +det +noun +noun +verb +noun +adj +verb +noun +verb +conj +verb +det +noun +conj +det +noun +verb +pron +conj +verb +det +adj +prep +det +noun +conj +det +adj +verb +pron +conj +det +noun +adv +prep +noun +verb +conj +det +noun +conj +det +noun +prep +noun +pron +verb +prep +det +noun +det +adj +verb +conj +pron +verb +adj +det +prep +noun +pron +verb +det +noun +prep +adj +noun +det +prep +noun +verb +det +noun +ptcl +verb +pron +adv +conj +conj +adj +prep +pron +verb +conj +det +noun +noun +det +adj +conj +noun +adv +adj +conj +conj +verb +det +prep +det +noun +adj +conj +adv +prep +det +noun +verb +prep +det +noun +det +noun +det +noun +verb +adv +verb +conj +verb +det +noun +conj +adv +adv +det +noun +verb +det +noun +verb +prep +prep +det +noun +conj +verb +conj +det +noun +conj +det +noun +adv +conj +det +verb +det +noun +verb +prep +noun +conj +verb +noun +prep +det +noun +conj +det +noun +adv +adv +adj +verb +prep +pron +verb +conj +prep +det +noun +verb +pron +det +noun +verb +det +noun +pron +prep +pron +verb +adj +verb +det +noun +conj +conj +verb +prep +det +noun +det +adj +conj +det +verb +conj +prep +det +noun +prep +adj +noun +prep +det +verb +conj +pron +conj +det +noun +conj +adj +noun +verb +pron +conj +pron +verb +ptcl +verb +det +adj +pron +pron +verb +conj +det +verb +adj +noun +noun +verb +conj +det +noun +conj +det +noun +verb +conj +verb +pron +prep +det +noun +noun +verb +verb +verb +verb +pron +det +adj +pron +det +prep +pron +verb +noun +conj +verb +pron +verb +prep +det +noun +pron +conj +verb +verb +pron +verb +verb +pron +conj +adj +adj +conj +det +verb +adj +prep +adj +adj +verb +conj +verb +pron +conj +verb +pron +adj +conj +verb +noun +prep +adj +det +noun +noun +verb +noun +adj +prep +adj +adv +adj +pron +verb +conj +verb +conj +verb +det +noun +pron +verb +adv +noun +prep +pron +verb +adj +noun +conj +pron +verb +verb +pron +pron +verb +pron +det +noun +det +verb +det +noun +conj +adj +det +prep +pron +pron +noun +conj +noun +noun +verb +adv +prep +adj +noun +verb +conj +prep +noun +adj +verb +verb +pron +pron +verb +adj +noun +conj +noun +conj +det +adj +conj +verb +prep +adj +adj +noun +noun +verb +prep +adj +noun +det +noun +verb +verb +noun +conj +det +noun +det +noun +pron +verb +det +noun +ptcl +ptcl +ptcl +verb +pron +conj +verb +ptcl +adv +adv +adj +prep +adj +adj +pron +verb +conj +prep +pron +verb +conj +verb +conj +verb +adv +adv +pron +det +prep +pron +noun +verb +conj +det +adv +noun +verb +conj +verb +noun +det +noun +adv +verb +verb +noun +conj +noun +conj +noun +noun +noun +conj +noun +noun +det +adj +verb +adj +ptcl +conj +det +noun +det +noun +verb +det +noun +det +adv +verb +det +noun +adj +adv +verb +conj +verb +noun +prep +pron +verb +verb +det +noun +prep +noun +prep +noun +pron +verb +noun +verb +adj +verb +pron +prep +adj +conj +verb +noun +adj +conj +det +verb +conj +det +verb +verb +pron +prep +pron +adv +adv +adv +det +noun +verb +prep +adj +pron +conj +pron +noun +verb +pron +verb +prep +pron +conj +noun +det +noun +conj +noun +noun +noun +conj +adj +prep +pron +prep +pron +verb +prep +det +noun +verb +prep +noun +conj +verb +pron +adj +noun +noun +adj +det +noun +adv +verb +prep +det +noun +conj +noun +noun +pron +prep +det +verb +noun +verb +adj +det +adj +prep +det +noun +verb +pron +conj +prep +det +adj +verb +verb +prep +pron +conj +verb +conj +verb +noun +det +noun +conj +verb +prep +det +noun +prep +adj +noun +verb +conj +adj +conj +noun +conj +conj +verb +prep +det +noun +conj +det +noun +conj +det +noun +verb +det +noun +det +noun +verb +det +adj +verb +det +noun +noun +conj +verb +pron +conj +verb +verb +det +noun +verb +prep +pron +det +noun +pron +prep +det +noun +pron +adj +pron +prep +det +adv +prep +det +noun +verb +conj +verb +adv +verb +prep +noun +pron +noun +noun +noun +verb +det +noun +pron +det +noun +verb +verb +det +noun +conj +noun +det +noun +verb +det +noun +prep +adj +det +noun +pron +conj +adj +det +adj +verb +verb +conj +verb +conj +verb +det +noun +prep +noun +prep +noun +det +noun +adv +verb +conj +verb +conj +adv +verb +conj +pron +verb +prep +pron +conj +adj +verb +pron +det +verb +pron +conj +noun +adj +verb +pron +prep +det +noun +pron +conj +verb +noun +conj +noun +num +verb +prep +pron +det +noun +det +noun +conj +noun +verb +noun +det +noun +verb +adv +det +adj +det +noun +conj +verb +pron +prep +det +noun +verb +conj +prep +det +noun +verb +pron +det +noun +verb +det +noun +conj +verb +det +noun +verb +det +noun +verb +det +noun +prep +det +adj +conj +conj +verb +noun +pron +conj +noun +adj +intj +adj +ptcl +prep +noun +verb +pron +conj +conj +verb +noun +prep +noun +conj +noun +conj +noun +det +prep +pron +verb +pron +adv +verb +pron +noun +pron +verb +conj +verb +pron +prep +det +noun +conj +adj +verb +noun +det +noun +verb +prep +det +noun +conj +adj +pron +det +noun +verb +conj +det +noun +adv +verb +noun +adj +det +noun +verb +verb +prep +det +noun +conj +prep +pron +noun +conj +noun +verb +prep +noun +det +noun +conj +verb +noun +conj +verb +prep +noun +pron +verb +adv +conj +pron +verb +prep +det +noun +verb +det +adj +conj +verb +pron +prep +adj +noun +verb +adv +verb +conj +verb +conj +verb +adv +verb +prep +pron +det +noun +verb +verb +prep +det +noun +conj +verb +prep +noun +verb +conj +verb +det +noun +verb +prep +noun +conj +verb +noun +pron +verb +verb +adv +det +adj +noun +conj +noun +verb +adj +det +noun +conj +adj +pron +noun +noun +noun +det +noun +noun +adj +adj +verb +prep +det +noun +verb +prep +noun +pron +verb +verb +det +noun +det +noun +conj +verb +det +noun +verb +conj +verb +adv +det +prep +det +noun +verb +adj +det +noun +noun +conj +pron +verb +verb +prep +det +noun +conj +verb +pron +noun +conj +noun +verb +pron +conj +adj +pron +verb +det +noun +det +noun +conj +verb +pron +verb +prep +det +noun +verb +det +noun +verb +det +noun +verb +pron +pron +verb +verb +adj +det +verb +prep +det +noun +conj +adv +det +adj +verb +adj +verb +prep +det +noun +verb +det +noun +noun +conj +verb +prep +det +det +noun +verb +prep +noun +noun +verb +det +adj +noun +verb +prep +noun +conj +verb +pron +noun +conj +verb +prep +pron +ptcl +noun +adj +verb +verb +conj +det +prep +pron +conj +adv +verb +ptcl +noun +adj +verb +conj +verb +conj +prep +pron +verb +conj +det +verb +prep +det +noun +noun +conj +verb +noun +noun +verb +noun +noun +det +noun +verb +conj +verb +prep +det +verb +prep +pron +pron +verb +prep +det +noun +conj +verb +verb +prep +det +noun +det +noun +noun +conj +verb +pron +det +noun +noun +verb +det +noun +det +adj +prep +pron +conj +verb +noun +conj +verb +conj +verb +det +adj +noun +adv +num +conj +verb +prep +det +noun +verb +prep +noun +adj +verb +conj +verb +prep +det +noun +det +noun +conj +conj +pron +verb +conj +verb +verb +det +noun +prep +det +noun +verb +prep +pron +verb +det +noun +prep +noun +verb +prep +det +noun +noun +conj +pron +verb +prep +noun +num +conj +adj +det +verb +det +noun +verb +det +noun +det +noun +conj +adj +conj +noun +conj +noun +adv +det +verb +det +noun +verb +prep +det +noun +noun +conj +adv +prep +det +verb +verb +prep +det +noun +pron +noun +conj +noun +conj +verb +prep +pron +det +noun +conj +det +noun +det +adj +verb +conj +verb +pron +adv +det +verb +adj +noun +verb +prep +det +verb +det +noun +det +adj +det +noun +det +noun +noun +verb +verb +pron +det +noun +pron +noun +verb +conj +pron +noun +adj +noun +num +noun +pron +verb +verb +conj +verb +det +noun +det +adj +verb +pron +det +noun +verb +conj +det +noun +verb +conj +pron +pron +verb +conj +verb +prep +pron +det +noun +prep +pron +verb +det +noun +det +adj +verb +adj +verb +prep +pron +conj +adj +conj +verb +verb +prep +det +noun +pron +conj +pron +verb +adj +adj +conj +adj +conj +noun +det +verb +det +noun +conj +verb +noun +prep +adj +pron +conj +verb +det +noun +det +noun +noun +conj +adj +det +verb +verb +verb +conj +verb +det +noun +pron +conj +adj +det +det +adj +verb +verb +det +noun +verb +prep +adj +conj +verb +det +noun +pron +conj +verb +noun +noun +num +adv +prep +noun +det +noun +det +noun +verb +conj +verb +conj +conj +verb +pron +verb +det +noun +prep +det +noun +verb +det +noun +conj +noun +verb +prep +noun +verb +conj +prep +det +verb +pron +adv +verb +pron +adv +noun +verb +conj +verb +prep +det +noun +num +det +verb +pron +noun +conj +noun +pron +verb +noun +prep +det +noun +conj +verb +prep +det +noun +pron +noun +adv +adj +prep +det +noun +conj +pron +noun +noun +noun +verb +noun +adj +noun +verb +det +noun +adv +adj +noun +pron +conj +det +prep +det +pron +noun +verb +verb +noun +verb +conj +prep +pron +det +noun +det +noun +pron +verb +conj +verb +conj +verb +conj +adv +adj +noun +conj +adv +adj +det +noun +det +noun +pron +verb +verb +adj +noun +verb +conj +adv +verb +noun +det +prep +noun +verb +conj +adv +adj +pron +verb +pron +det +noun +prep +noun +verb +conj +adv +det +det +adj +noun +noun +noun +prep +adj +verb +conj +verb +adv +verb +det +noun +pron +pron +adj +det +noun +conj +det +noun +verb +conj +verb +conj +verb +adj +noun +verb +verb +adj +det +noun +adj +conj +verb +det +noun +det +noun +conj +verb +adv +prep +det +noun +verb +noun +conj +noun +noun +noun +noun +conj +noun +verb +verb +prep +det +noun +adv +verb +pron +det +noun +conj +pron +adv +det +noun +verb +pron +adj +verb +prep +pron +verb +adv +verb +pron +prep +det +noun +conj +conj +adj +adj +pron +verb +conj +det +noun +verb +verb +conj +det +adj +adv +verb +pron +prep +verb +conj +prep +det +noun +verb +noun +verb +pron +det +adj +conj +det +noun +verb +det +noun +verb +verb +det +noun +conj +verb +conj +adj +verb +noun +adj +verb +prep +adj +adv +prep +noun +num +verb +adj +det +noun +adj +conj +det +noun +verb +det +noun +verb +noun +adj +conj +pron +noun +verb +pron +adv +verb +det +adj +noun +verb +noun +det +adj +noun +conj +det +adj +conj +adj +verb +pron +verb +verb +pron +verb +verb +conj +adj +adj +verb +conj +verb +det +noun +pron +conj +adj +conj +verb +det +noun +pron +conj +conj +conj +noun +conj +det +prep +pron +noun +verb +prep +pron +noun +adj +verb +conj +noun +verb +verb +pron +conj +conj +pron +adv +verb +prep +det +adj +noun +verb +conj +adv +verb +verb +noun +prep +det +adv +adj +adj +verb +prep +pron +adv +verb +verb +noun +prep +det +noun +pron +conj +pron +verb +verb +det +noun +conj +prep +det +verb +det +noun +det +noun +verb +det +noun +conj +verb +verb +verb +verb +prep +noun +conj +verb +det +noun +pron +conj +verb +pron +noun +adj +verb +prep +det +noun +conj +verb +noun +adj +verb +noun +pron +prep +det +adj +verb +verb +prep +det +noun +verb +noun +det +verb +prep +noun +conj +verb +pron +noun +noun +adj +conj +noun +noun +conj +noun +conj +noun +adj +conj +noun +conj +noun +noun +conj +noun +conj +pron +verb +verb +pron +prep +noun +conj +pron +verb +prep +det +noun +det +adj +prep +noun +conj +verb +prep +pron +prep +det +noun +prep +noun +num +adv +verb +noun +num +conj +prep +det +adj +det +noun +verb +pron +verb +noun +det +noun +verb +pron +verb +verb +det +adv +conj +verb +det +noun +prep +noun +conj +verb +noun +adj +prep +det +noun +adv +verb +verb +conj +pron +noun +noun +noun +verb +prep +det +noun +verb +noun +adj +verb +det +noun +prep +adj +verb +prep +det +noun +verb +prep +det +noun +adv +conj +verb +adj +conj +verb +det +noun +verb +pron +conj +verb +verb +adv +verb +conj +det +noun +pron +prep +pron +verb +conj +verb +conj +verb +det +noun +conj +verb +conj +prep +adj +verb +prep +noun +adv +verb +conj +verb +det +noun +verb +conj +verb +adv +adv +conj +pron +verb +prep +det +noun +verb +prep +det +noun +adv +verb +verb +det +noun +conj +adv +verb +verb +verb +pron +verb +conj +conj +verb +pron +prep +det +noun +verb +pron +verb +prep +noun +conj +verb +det +verb +verb +prep +noun +conj +det +adj +verb +prep +noun +conj +det +verb +verb +prep +noun +conj +verb +det +noun +verb +det +noun +conj +adv +verb +pron +verb +prep +det +noun +conj +verb +conj +adj +verb +pron +det +noun +det +noun +verb +prep +noun +conj +prep +det +noun +verb +prep +noun +verb +det +adj +det +noun +conj +conj +verb +prep +pron +verb +pron +pron +verb +prep +adj +noun +prep +pron +verb +prep +det +noun +adv +prep +pron +det +adj +noun +verb +verb +det +noun +prep +adj +noun +conj +noun +conj +noun +det +verb +pron +prep +det +noun +det +adj +conj +verb +adj +det +verb +det +adv +verb +pron +conj +verb +pron +adj +conj +prep +noun +verb +conj +adj +conj +noun +det +prep +noun +noun +conj +noun +prep +det +noun +pron +noun +conj +adv +verb +verb +det +noun +pron +verb +prep +noun +det +prep +pron +verb +pron +adv +verb +conj +conj +det +noun +det +adj +prep +noun +verb +pron +verb +conj +noun +conj +noun +pron +verb +conj +adj +noun +verb +det +noun +adj +pron +conj +verb +det +noun +pron +conj +det +noun +pron +verb +prep +det +noun +noun +verb +det +noun +det +noun +det +noun +conj +adv +verb +pron +verb +conj +adv +verb +det +noun +pron +pron +adj +prep +pron +verb +verb +det +noun +conj +verb +pron +prep +det +adv +noun +conj +adj +verb +prep +det +noun +adj +conj +adv +verb +det +adv +verb +adj +det +noun +det +noun +pron +verb +pron +conj +adj +det +noun +prep +pron +pron +det +noun +det +adj +verb +noun +verb +det +noun +det +noun +pron +verb +prep +det +noun +det +adj +pron +verb +conj +verb +prep +det +noun +pron +noun +adj +prep +pron +adv +verb +det +noun +conj +prep +pron +pron +verb +noun +verb +verb +det +verb +det +noun +prep +pron +conj +verb +verb +conj +noun +noun +conj +noun +adv +verb +prep +noun +verb +adj +adj +conj +det +adv +verb +pron +det +noun +conj +det +noun +det +noun +pron +det +verb +verb +conj +verb +det +noun +prep +det +verb +adj +noun +conj +noun +conj +noun +adj +verb +pron +verb +conj +det +noun +pron +conj +det +verb +prep +pron +verb +det +noun +pron +adj +verb +pron +adv +adv +verb +verb +verb +det +verb +conj +verb +det +noun +det +noun +noun +adv +pron +verb +adj +verb +adv +verb +conj +verb +conj +pron +verb +verb +det +noun +pron +prep +adj +pron +verb +conj +adj +verb +noun +adj +conj +verb +prep +det +noun +det +noun +verb +pron +verb +adv +prep +det +noun +pron +verb +adv +adv +verb +det +noun +pron +verb +conj +verb +pron +prep +det +noun +conj +conj +verb +verb +pron +verb +prep +pron +verb +verb +prep +det +noun +conj +det +adv +prep +det +noun +conj +prep +noun +conj +verb +noun +verb +prep +noun +verb +verb +conj +verb +det +noun +conj +verb +pron +adj +verb +prep +noun +conj +verb +prep +noun +conj +adv +det +noun +verb +verb +det +noun +conj +verb +det +noun +verb +adv +noun +num +pron +det +noun +verb +prep +det +noun +adv +verb +prep +noun +conj +conj +verb +verb +pron +det +noun +verb +verb +verb +pron +adj +prep +noun +conj +noun +prep +prep +det +noun +conj +verb +det +noun +prep +det +noun +verb +verb +pron +conj +verb +prep +det +noun +conj +pron +verb +prep +det +adj +conj +pron +det +noun +verb +prep +noun +verb +prep +noun +conj +verb +det +noun +verb +noun +adj +prep +pron +conj +det +adv +verb +verb +prep +noun +conj +verb +prep +det +noun +noun +det +noun +verb +prep +det +num +verb +prep +pron +conj +pron +verb +noun +adj +noun +verb +conj +verb +noun +adj +verb +pron +prep +det +noun +noun +noun +noun +conj +verb +prep +pron +conj +verb +det +noun +det +noun +verb +pron +det +noun +conj +det +noun +verb +pron +verb +det +noun +det +adj +det +noun +pron +verb +det +noun +pron +adv +verb +prep +noun +det +adj +conj +verb +prep +noun +noun +conj +conj +verb +pron +verb +conj +pron +conj +det +adj +det +adv +verb +pron +prep +noun +adv +verb +det +noun +pron +verb +verb +conj +verb +pron +det +noun +conj +pron +adv +adj +verb +conj +adv +verb +prep +noun +adv +verb +prep +det +noun +det +noun +noun +conj +adv +verb +pron +verb +verb +det +noun +det +noun +verb +conj +prep +det +noun +pron +verb +verb +prep +noun +conj +verb +adv +det +noun +prep +noun +prep +pron +verb +prep +pron +verb +noun +pron +noun +adj +noun +conj +verb +pron +prep +noun +adv +verb +pron +det +noun +conj +det +verb +verb +det +noun +prep +pron +prep +noun +conj +verb +adj +det +adj +conj +verb +pron +verb +prep +adj +adj +pron +verb +det +noun +prep +det +noun +prep +det +noun +pron +conj +det +verb +verb +det +noun +conj +verb +pron +verb +noun +pron +noun +det +verb +verb +prep +det +adj +conj +adj +noun +det +noun +verb +conj +verb +prep +pron +conj +verb +noun +prep +noun +det +prep +det +noun +adj +adj +verb +adv +verb +pron +det +noun +conj +det +noun +verb +conj +pron +verb +adv +verb +conj +verb +conj +pron +verb +pron +pron +verb +verb +pron +noun +adj +noun +verb +prep +pron +pron +verb +verb +prep +pron +conj +verb +prep +pron +conj +verb +det +noun +conj +verb +adj +conj +pron +verb +prep +pron +adj +verb +conj +verb +adv +pron +verb +det +noun +conj +prep +det +verb +noun +pron +verb +verb +verb +pron +conj +det +adj +conj +noun +conj +adj +conj +noun +adv +det +noun +verb +det +noun +det +verb +noun +prep +pron +verb +verb +prep +det +noun +verb +det +noun +det +noun +det +noun +prep +pron +verb +prep +adj +adj +pron +det +noun +conj +conj +verb +det +num +noun +verb +det +prep +det +noun +adj +verb +pron +prep +det +noun +verb +adj +det +noun +conj +verb +prep +pron +det +noun +verb +noun +noun +verb +pron +verb +det +noun +det +prep +det +noun +conj +det +noun +conj +det +noun +pron +adj +adv +verb +conj +adv +adv +noun +verb +prep +det +noun +conj +verb +det +adj +noun +pron +conj +verb +verb +noun +det +adj +prep +det +noun +prep +pron +verb +conj +pron +prep +det +noun +verb +det +noun +conj +verb +det +noun +adj +conj +verb +noun +det +noun +conj +verb +det +noun +verb +pron +prep +det +noun +conj +adv +verb +det +noun +conj +verb +pron +verb +verb +noun +det +noun +det +noun +adv +adj +noun +verb +pron +adv +verb +noun +conj +noun +verb +prep +pron +conj +det +verb +det +noun +conj +det +noun +verb +verb +det +noun +adv +verb +det +noun +verb +pron +conj +verb +verb +noun +adj +conj +verb +pron +verb +conj +pron +verb +verb +conj +adj +adj +pron +verb +prep +det +noun +conj +adv +verb +pron +verb +det +adj +prep +det +noun +verb +verb +pron +prep +det +noun +conj +conj +verb +prep +det +noun +verb +verb +pron +prep +det +noun +prep +det +noun +det +noun +conj +verb +det +noun +det +noun +verb +verb +pron +conj +verb +verb +prep +det +noun +det +noun +verb +det +noun +ptcl +verb +pron +verb +pron +prep +pron +conj +det +verb +adv +verb +conj +adv +pron +verb +det +adj +det +prep +pron +det +noun +verb +conj +verb +prep +det +adj +det +adj +noun +det +noun +conj +verb +det +noun +conj +pron +verb +noun +adj +noun +det +noun +adv +adj +noun +noun +conj +verb +pron +verb +pron +verb +prep +det +noun +conj +verb +pron +det +noun +verb +prep +det +noun +verb +det +noun +det +noun +conj +adj +noun +verb +verb +det +noun +noun +verb +noun +noun +conj +noun +verb +pron +det +prep +pron +adv +noun +conj +verb +conj +det +noun +noun +verb +pron +adv +verb +noun +conj +verb +pron +verb +noun +adj +verb +prep +noun +det +noun +conj +verb +prep +det +noun +pron +prep +det +noun +noun +verb +prep +noun +det +adj +noun +verb +noun +det +noun +conj +adj +pron +verb +adv +pron +pron +det +noun +verb +prep +noun +verb +conj +verb +prep +noun +conj +noun +conj +noun +conj +adv +det +noun +verb +pron +conj +adj +det +noun +prep +pron +adv +noun +verb +prep +det +noun +prep +noun +verb +verb +adv +det +adv +verb +verb +prep +noun +conj +verb +conj +verb +pron +verb +conj +verb +det +noun +prep +noun +adv +prep +det +noun +verb +noun +adj +prep +pron +conj +verb +prep +det +noun +conj +verb +noun +verb +pron +noun +noun +pron +pron +verb +conj +pron +verb +pron +verb +noun +conj +verb +prep +pron +pron +verb +noun +det +noun +pron +pron +verb +conj +conj +det +prep +pron +verb +det +noun +verb +conj +adv +verb +det +noun +det +verb +pron +conj +verb +pron +verb +noun +conj +det +noun +verb +prep +pron +verb +verb +prep +noun +conj +pron +verb +prep +adj +pron +verb +verb +pron +conj +conj +adv +verb +prep +det +noun +det +noun +pron +verb +prep +det +verb +pron +verb +prep +noun +conj +noun +pron +noun +adj +prep +det +noun +verb +prep +adj +det +verb +adj +verb +prep +pron +conj +verb +verb +pron +noun +noun +verb +pron +pron +det +noun +verb +prep +pron +conj +det +verb +det +noun +det +noun +pron +verb +pron +verb +det +noun +pron +conj +verb +det +adj +conj +verb +noun +prep +det +noun +pron +conj +verb +pron +prep +adj +noun +noun +pron +verb +conj +verb +conj +adv +pron +verb +verb +verb +conj +verb +det +noun +pron +verb +det +noun +pron +conj +verb +pron +verb +prep +noun +conj +verb +pron +prep +det +noun +verb +pron +prep +noun +conj +verb +pron +verb +pron +verb +conj +verb +prep +noun +prep +noun +conj +adv +verb +pron +noun +prep +pron +pron +verb +noun +pron +verb +conj +pron +verb +verb +conj +verb +prep +det +noun +det +verb +prep +pron +conj +conj +verb +det +noun +noun +det +noun +pron +adv +pron +verb +verb +conj +verb +conj +verb +det +noun +det +verb +pron +conj +verb +prep +pron +verb +conj +pron +prep +noun +adj +verb +pron +conj +verb +pron +prep +pron +det +noun +conj +verb +det +noun +pron +verb +verb +prep +det +noun +det +pron +conj +adv +verb +pron +verb +conj +verb +pron +conj +verb +det +noun +conj +noun +verb +prep +det +noun +verb +det +noun +verb +pron +prep +det +noun +verb +noun +verb +pron +conj +verb +prep +pron +noun +adv +verb +pron +conj +conj +verb +pron +det +noun +verb +prep +det +verb +noun +det +noun +ptcl +noun +adj +conj +adj +verb +verb +pron +conj +verb +det +noun +verb +det +noun +verb +verb +verb +pron +verb +conj +det +noun +pron +adj +verb +conj +verb +det +noun +verb +pron +verb +pron +pron +adj +verb +conj +det +verb +ptcl +conj +verb +det +noun +pron +adj +noun +det +noun +pron +verb +conj +det +noun +verb +conj +pron +adv +verb +conj +adv +verb +prep +pron +det +verb +pron +verb +conj +adv +det +noun +verb +verb +conj +adj +verb +conj +conj +pron +verb +verb +conj +det +adv +verb +verb +det +adj +det +pron +verb +prep +det +adj +verb +pron +conj +verb +verb +det +noun +conj +adj +det +noun +conj +verb +det +noun +verb +prep +pron +conj +det +noun +verb +det +noun +verb +noun +noun +pron +adj +noun +adj +verb +det +noun +prep +pron +det +noun +conj +det +noun +noun +verb +det +verb +pron +verb +pron +det +noun +adv +det +noun +prep +pron +verb +verb +pron +verb +det +noun +noun +verb +adv +pron +verb +verb +pron +prep +det +noun +conj +verb +verb +pron +verb +conj +det +verb +verb +det +noun +det +noun +verb +conj +verb +det +noun +adv +verb +noun +conj +verb +noun +conj +verb +conj +noun +det +noun +pron +adv +verb +adv +conj +det +noun +verb +conj +det +adj +noun +verb +noun +conj +det +adj +noun +verb +prep +det +noun +noun +noun +pron +noun +verb +noun +noun +prep +noun +conj +noun +adj +verb +conj +pron +pron +verb +verb +noun +det +noun +conj +noun +conj +verb +det +noun +conj +noun +verb +adv +verb +noun +conj +noun +conj +noun +conj +noun +verb +det +adj +conj +verb +noun +adj +conj +verb +pron +det +noun +det +noun +det +noun +verb +verb +adj +adj +verb +prep +det +noun +pron +conj +conj +noun +verb +pron +conj +noun +conj +adj +noun +verb +det +noun +verb +conj +verb +det +noun +prep +pron +verb +det +noun +verb +verb +pron +prep +adj +pron +conj +verb +prep +det +noun +conj +det +verb +noun +verb +pron +det +noun +verb +verb +conj +conj +verb +det +prep +pron +prep +noun +adv +verb +pron +adv +prep +noun +verb +conj +verb +noun +verb +noun +det +adj +verb +pron +verb +conj +verb +conj +verb +prep +pron +verb +det +noun +conj +verb +adj +num +det +pron +det +noun +verb +pron +verb +det +noun +conj +det +adj +verb +noun +verb +pron +adj +verb +prep +pron +verb +det +noun +conj +adv +pron +verb +det +noun +prep +det +noun +conj +verb +pron +prep +pron +conj +verb +verb +adj +det +prep +pron +conj +pron +prep +det +verb +pron +adj +verb +det +verb +pron +conj +det +noun +det +noun +noun +verb +det +noun +verb +conj +verb +prep +det +noun +verb +det +noun +conj +det +noun +verb +adj +det +noun +verb +det +noun +pron +verb +prep +det +noun +conj +verb +verb +pron +pron +ptcl +conj +det +verb +pron +verb +prep +det +noun +conj +verb +det +noun +noun +verb +pron +verb +pron +det +noun +verb +prep +pron +verb +pron +verb +pron +conj +det +noun +verb +det +noun +pron +conj +verb +prep +adj +verb +pron +verb +pron +verb +pron +verb +conj +verb +conj +det +adj +verb +det +verb +pron +conj +adv +det +noun +verb +prep +det +noun +conj +verb +pron +adv +verb +prep +pron +conj +pron +adv +verb +pron +conj +verb +pron +prep +pron +noun +adj +num +pron +verb +pron +conj +verb +conj +verb +prep +pron +verb +pron +conj +adv +verb +adj +verb +det +prep +pron +noun +conj +conj +det +noun +verb +det +noun +verb +adj +verb +conj +pron +verb +prep +pron +conj +verb +pron +num +det +noun +verb +verb +noun +adj +conj +noun +num +conj +noun +adj +conj +verb +prep +noun +prep +adj +noun +det +noun +conj +noun +verb +conj +verb +det +noun +verb +prep +noun +det +noun +verb +noun +verb +det +noun +pron +noun +noun +det +adj +noun +noun +verb +det +noun +pron +verb +prep +det +adj +conj +verb +verb +prep +pron +verb +prep +det +noun +verb +verb +conj +adj +verb +conj +verb +verb +det +noun +prep +pron +verb +pron +verb +prep +det +noun +pron +verb +pron +verb +prep +noun +det +noun +pron +conj +adj +adj +noun +conj +noun +noun +verb +conj +verb +pron +noun +prep +det +noun +verb +adv +verb +prep +pron +verb +adv +det +noun +verb +prep +pron +prep +pron +conj +conj +det +noun +prep +det +verb +pron +verb +det +noun +verb +prep +noun +prep +det +noun +conj +det +adv +verb +det +noun +verb +prep +pron +verb +prep +det +noun +pron +verb +prep +det +noun +conj +verb +det +noun +det +noun +verb +adv +det +noun +pron +conj +verb +conj +verb +prep +pron +noun +verb +conj +verb +conj +prep +noun +verb +verb +pron +conj +adv +det +noun +pron +verb +verb +prep +det +noun +det +noun +verb +pron +conj +prep +num +noun +verb +det +noun +noun +prep +adj +pron +conj +noun +noun +pron +pron +verb +det +noun +prep +det +noun +conj +verb +pron +verb +verb +det +noun +verb +adj +noun +verb +prep +pron +conj +noun +verb +det +noun +pron +prep +det +adj +noun +conj +adv +conj +adv +verb +prep +adj +noun +adj +noun +conj +conj +adv +prep +adj +pron +verb +verb +verb +pron +pron +adv +det +adj +noun +conj +verb +det +noun +pron +noun +conj +verb +noun +adj +det +adj +det +prep +det +noun +conj +noun +det +det +noun +noun +pron +adv +det +noun +verb +verb +pron +adv +verb +prep +pron +verb +pron +verb +prep +adj +pron +verb +pron +pron +verb +pron +conj +verb +adv +det +adj +verb +pron +adv +verb +conj +verb +det +noun +verb +pron +det +noun +verb +prep +adj +noun +verb +pron +noun +det +noun +pron +verb +adv +det +prep +pron +verb +verb +pron +verb +conj +adv +adj +verb +pron +noun +num +prep +pron +verb +verb +prep +noun +conj +verb +pron +prep +pron +verb +conj +noun +noun +verb +conj +prep +det +noun +conj +prep +det +noun +conj +prep +det +noun +conj +verb +verb +pron +prep +pron +adv +verb +pron +conj +verb +pron +pron +adv +prep +det +noun +pron +verb +noun +adv +verb +det +adj +noun +verb +adj +det +prep +det +noun +conj +det +prep +det +noun +verb +verb +noun +prep +det +noun +pron +adv +pron +pron +verb +verb +verb +noun +conj +adj +conj +adj +prep +pron +adv +pron +verb +adj +noun +verb +prep +det +noun +conj +det +noun +prep +adj +conj +prep +noun +adj +noun +verb +prep +det +noun +pron +verb +conj +noun +prep +pron +verb +pron +verb +prep +det +noun +adv +prep +noun +conj +prep +noun +conj +pron +prep +det +noun +adj +pron +prep +pron +verb +conj +verb +verb +conj +pron +verb +prep +pron +conj +pron +pron +verb +pron +noun +verb +verb +pron +prep +det +noun +conj +prep +adj +pron +noun +pron +verb +prep +pron +verb +adv +prep +noun +adj +pron +verb +adv +prep +pron +conj +verb +pron +det +noun +adj +verb +det +prep +det +noun +verb +conj +noun +det +noun +verb +verb +det +prep +pron +verb +det +noun +verb +pron +conj +verb +noun +conj +verb +adj +det +adj +pron +verb +pron +conj +prep +noun +pron +det +noun +verb +prep +noun +det +adj +noun +verb +adj +verb +det +noun +conj +verb +pron +prep +det +prep +noun +noun +noun +conj +verb +pron +prep +noun +conj +noun +conj +det +noun +det +verb +adj +verb +det +noun +verb +det +adv +verb +verb +conj +noun +verb +verb +pron +adv +adv +verb +conj +noun +verb +pron +prep +det +noun +conj +adv +adj +pron +verb +verb +pron +conj +noun +verb +verb +det +noun +noun +noun +noun +conj +verb +noun +verb +det +adj +det +noun +verb +det +noun +verb +conj +noun +verb +det +adj +prep +adj +noun +verb +prep +noun +prep +noun +conj +verb +pron +det +noun +conj +det +adj +det +adj +prep +det +noun +conj +verb +pron +verb +noun +prep +pron +adv +verb +pron +prep +noun +noun +verb +verb +pron +prep +det +noun +conj +conj +det +noun +verb +verb +det +noun +prep +noun +conj +pron +verb +prep +noun +verb +conj +verb +det +prep +pron +adj +verb +verb +pron +conj +pron +adj +verb +prep +det +noun +conj +verb +prep +pron +noun +adv +adj +num +conj +num +verb +prep +noun +det +adv +verb +prep +det +noun +verb +det +noun +verb +conj +verb +pron +verb +pron +det +prep +noun +verb +adj +adj +conj +adj +noun +verb +pron +verb +adv +verb +det +noun +verb +conj +conj +prep +det +noun +det +adj +conj +prep +det +noun +conj +prep +noun +pron +verb +conj +det +noun +verb +det +adj +noun +verb +verb +det +noun +verb +verb +prep +noun +verb +adv +prep +pron +verb +prep +pron +conj +verb +det +noun +prep +det +noun +noun +verb +verb +adv +pron +verb +verb +adj +adj +verb +adv +adv +pron +adj +verb +conj +conj +conj +verb +conj +adj +noun +pron +verb +adv +verb +det +verb +conj +conj +adj +verb +pron +pron +verb +pron +adj +verb +pron +pron +verb +noun +verb +adv +det +noun +verb +prep +det +noun +verb +noun +verb +prep +noun +verb +conj +noun +pron +verb +noun +det +noun +conj +noun +verb +prep +noun +verb +det +noun +conj +conj +adj +noun +verb +adv +det +noun +det +noun +verb +det +prep +det +noun +verb +noun +pron +verb +verb +prep +noun +noun +prep +pron +verb +pron +prep +noun +verb +det +noun +conj +det +adj +det +adj +verb +prep +pron +noun +prep +pron +verb +conj +adv +verb +noun +adj +verb +pron +noun +conj +conj +det +verb +prep +noun +verb +det +noun +conj +noun +noun +verb +prep +det +noun +conj +verb +adv +noun +adj +verb +det +adv +verb +prep +det +noun +verb +verb +det +noun +prep +pron +verb +det +noun +verb +adj +noun +pron +pron +verb +adj +conj +noun +pron +prep +det +adj +noun +verb +prep +pron +conj +prep +pron +noun +verb +pron +verb +verb +det +noun +conj +pron +verb +det +prep +pron +noun +verb +ptcl +verb +verb +prep +noun +conj +verb +prep +pron +conj +det +noun +verb +verb +pron +prep +det +det +adj +noun +verb +verb +pron +prep +pron +verb +pron +prep +noun +conj +noun +prep +det +noun +verb +adv +pron +det +noun +verb +verb +adv +verb +pron +conj +det +adv +verb +det +noun +conj +det +noun +prep +adj +noun +conj +verb +prep +det +noun +prep +conj +noun +conj +noun +det +prep +noun +det +noun +conj +verb +det +noun +verb +det +noun +conj +verb +det +noun +noun +noun +conj +adj +det +verb +pron +noun +verb +pron +prep +pron +adj +det +noun +det +adj +verb +pron +prep +conj +noun +conj +adv +verb +adv +verb +pron +verb +adv +conj +pron +verb +adj +adj +noun +pron +verb +conj +pron +pron +verb +det +adj +verb +verb +prep +pron +adj +pron +verb +det +noun +adv +verb +conj +verb +pron +prep +pron +conj +adv +prep +pron +noun +noun +conj +det +noun +verb +verb +pron +verb +conj +adj +pron +verb +verb +noun +adv +adv +det +prep +pron +noun +verb +conj +noun +prep +det +noun +verb +verb +pron +prep +pron +verb +adv +det +noun +verb +det +noun +verb +noun +noun +prep +adj +pron +verb +prep +adj +verb +pron +adj +prep +pron +adv +verb +verb +adv +verb +pron +noun +adj +det +prep +adj +conj +noun +conj +noun +conj +verb +adv +verb +pron +conj +conj +det +noun +pron +prep +noun +det +prep +noun +verb +prep +det +noun +pron +conj +prep +noun +verb +adj +adj +verb +pron +adv +conj +verb +verb +conj +prep +det +adj +noun +det +adj +noun +verb +noun +conj +adv +prep +noun +det +prep +det +noun +pron +verb +prep +det +noun +noun +verb +verb +prep +pron +verb +det +noun +pron +prep +noun +noun +conj +noun +verb +verb +prep +pron +noun +verb +prep +adj +noun +pron +adj +verb +prep +pron +conj +det +noun +adj +verb +conj +conj +pron +verb +pron +verb +prep +det +noun +noun +det +noun +adj +adj +verb +pron +adv +verb +prep +noun +conj +conj +adj +det +adj +pron +prep +noun +verb +det +prep +det +noun +noun +verb +conj +verb +pron +verb +noun +conj +prep +adj +det +noun +adv +verb +pron +verb +verb +conj +adv +verb +pron +verb +prep +adv +prep +det +adv +noun +prep +pron +verb +prep +det +noun +prep +noun +conj +noun +det +det +noun +noun +adj +prep +det +noun +verb +adv +prep +det +noun +det +noun +verb +noun +pron +conj +det +prep +pron +verb +noun +conj +adj +pron +verb +prep +det +noun +verb +noun +verb +prep +pron +det +noun +noun +noun +noun +pron +pron +verb +adj +pron +prep +noun +verb +conj +pron +verb +pron +verb +noun +conj +det +noun +verb +pron +verb +noun +pron +pron +verb +conj +verb +conj +verb +prep +det +noun +pron +conj +prep +pron +verb +pron +verb +pron +noun +conj +noun +conj +pron +verb +pron +conj +pron +verb +pron +verb +pron +prep +det +noun +conj +prep +det +noun +prep +pron +pron +verb +pron +verb +noun +pron +det +verb +prep +noun +prep +noun +conj +det +noun +det +noun +prep +det +noun +det +verb +pron +noun +noun +conj +noun +prep +det +verb +noun +det +prep +pron +conj +noun +noun +adv +verb +adj +det +adj +noun +conj +conj +det +prep +noun +adj +conj +noun +conj +adj +det +noun +det +noun +conj +det +noun +verb +verb +conj +verb +prep +det +noun +adj +det +noun +noun +verb +prep +pron +adj +pron +verb +prep +det +noun +verb +verb +conj +verb +noun +det +prep +det +noun +prep +det +noun +pron +verb +verb +conj +adj +conj +adj +adj +verb +prep +pron +verb +verb +conj +det +noun +conj +noun +verb +adv +adj +det +noun +adv +adj +prep +noun +adj +verb +noun +verb +conj +det +noun +conj +det +noun +conj +pron +pron +verb +det +noun +adj +det +noun +verb +verb +noun +det +adj +noun +pron +prep +noun +verb +conj +det +noun +verb +adj +noun +adv +verb +conj +noun +conj +noun +noun +verb +conj +verb +prep +pron +det +noun +prep +pron +adv +verb +verb +conj +verb +pron +pron +adv +verb +adj +conj +adv +verb +verb +prep +noun +pron +noun +noun +verb +det +noun +verb +conj +verb +conj +det +noun +prep +det +noun +prep +adj +pron +verb +noun +verb +conj +det +noun +ptcl +verb +det +noun +conj +prep +adj +conj +prep +adj +adv +adj +pron +conj +adv +adj +det +verb +pron +adv +verb +pron +adj +adv +pron +verb +prep +det +noun +pron +verb +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +verb +pron +conj +verb +verb +prep +pron +verb +conj +adj +noun +conj +noun +adj +verb +det +noun +pron +conj +noun +det +noun +verb +verb +verb +det +noun +pron +conj +adv +verb +noun +conj +conj +verb +det +verb +pron +prep +det +noun +verb +conj +det +noun +conj +pron +adj +noun +noun +noun +noun +noun +adj +conj +verb +noun +adj +verb +verb +prep +det +prep +det +noun +noun +verb +verb +prep +pron +noun +noun +noun +conj +det +adj +verb +prep +noun +conj +det +noun +adv +det +noun +verb +verb +prep +det +adj +verb +noun +verb +conj +verb +verb +det +noun +prep +det +det +noun +verb +adj +conj +det +noun +det +prep +det +noun +conj +noun +verb +verb +prep +noun +det +noun +det +noun +conj +verb +noun +adj +verb +prep +det +noun +verb +pron +prep +pron +conj +prep +adj +noun +verb +conj +adv +verb +prep +det +noun +adv +verb +pron +det +noun +verb +det +noun +prep +noun +conj +adv +verb +pron +verb +prep +noun +pron +verb +adj +noun +pron +prep +noun +noun +verb +conj +adj +noun +verb +conj +verb +adv +adj +det +noun +prep +det +adv +det +noun +adv +verb +verb +det +noun +verb +pron +noun +verb +conj +prep +noun +conj +adj +noun +adv +adj +det +noun +conj +det +noun +conj +adv +det +noun +pron +verb +verb +det +noun +conj +det +noun +det +noun +conj +det +noun +adv +verb +conj +det +prep +noun +verb +conj +adj +det +noun +verb +prep +noun +det +adj +verb +noun +verb +adv +ptcl +adv +verb +verb +prep +noun +noun +det +noun +verb +prep +noun +conj +prep +noun +verb +conj +verb +noun +verb +det +noun +verb +verb +adv +verb +det +noun +conj +prep +adv +adj +verb +prep +pron +noun +adj +det +verb +noun +conj +verb +det +noun +conj +adv +verb +verb +det +noun +verb +verb +conj +verb +noun +pron +verb +noun +verb +adv +adj +verb +det +noun +pron +verb +noun +verb +verb +det +noun +conj +verb +conj +prep +det +noun +verb +verb +det +noun +adv +verb +conj +adv +verb +pron +det +adv +noun +verb +conj +det +adj +adj +det +noun +det +noun +verb +conj +conj +noun +conj +noun +verb +prep +adj +noun +conj +noun +adv +adj +verb +adj +verb +noun +adj +det +verb +pron +conj +adj +noun +verb +adv +verb +det +noun +prep +adj +pron +verb +intj +noun +conj +verb +verb +pron +adv +verb +prep +det +noun +conj +verb +det +noun +pron +conj +det +noun +conj +det +adv +verb +pron +verb +conj +noun +noun +adj +verb +prep +pron +prep +det +noun +conj +verb +pron +pron +det +noun +det +noun +pron +verb +pron +adv +verb +noun +verb +adv +verb +noun +noun +pron +verb +verb +conj +verb +verb +pron +det +noun +adj +det +verb +prep +pron +conj +verb +noun +conj +verb +det +noun +conj +adv +verb +prep +pron +noun +verb +pron +conj +verb +prep +noun +pron +pron +verb +conj +conj +adj +noun +verb +verb +pron +prep +det +noun +prep +adj +det +noun +verb +det +noun +verb +pron +noun +pron +conj +verb +verb +noun +num +conj +adj +verb +conj +adv +verb +verb +noun +num +conj +verb +conj +adv +prep +adj +noun +verb +prep +noun +verb +noun +adj +verb +noun +verb +conj +det +noun +verb +verb +prep +det +noun +conj +verb +det +noun +prep +det +noun +noun +conj +prep +noun +noun +verb +verb +verb +det +noun +det +noun +conj +det +noun +conj +adv +pron +verb +prep +det +noun +pron +verb +adv +verb +adv +verb +det +noun +det +noun +det +noun +conj +verb +pron +verb +conj +prep +pron +noun +verb +verb +verb +det +noun +adj +verb +noun +verb +adj +noun +adv +verb +adj +verb +adj +verb +conj +verb +pron +verb +noun +conj +pron +prep +det +adj +noun +verb +conj +adj +pron +noun +prep +det +noun +verb +conj +verb +pron +conj +verb +noun +verb +det +noun +prep +adj +conj +verb +verb +verb +conj +adj +verb +adj +adv +pron +verb +noun +conj +verb +det +adj +noun +prep +det +noun +adj +num +num +conj +verb +noun +verb +det +noun +verb +det +noun +prep +det +noun +conj +conj +noun +verb +det +noun +adv +verb +conj +verb +noun +pron +verb +noun +prep +pron +verb +det +noun +verb +ptcl +verb +conj +det +noun +verb +verb +prep +det +noun +adv +verb +det +noun +det +noun +conj +verb +det +noun +det +verb +verb +prep +det +noun +conj +verb +prep +noun +adj +verb +det +noun +conj +conj +det +noun +verb +verb +adj +conj +det +noun +verb +prep +det +noun +conj +det +noun +noun +verb +conj +det +noun +verb +conj +pron +verb +verb +conj +det +noun +verb +verb +det +noun +verb +pron +det +noun +conj +verb +det +verb +verb +verb +adj +prep +det +noun +verb +conj +det +adj +conj +pron +prep +noun +conj +pron +prep +pron +det +prep +det +noun +conj +adv +verb +adj +verb +prep +det +noun +conj +verb +adv +verb +conj +noun +det +noun +verb +conj +det +adj +verb +det +adv +verb +noun +pron +conj +verb +noun +verb +adj +pron +prep +det +noun +det +verb +conj +prep +det +noun +conj +verb +det +noun +noun +pron +noun +conj +verb +prep +det +noun +noun +prep +det +noun +verb +verb +det +noun +pron +conj +conj +verb +det +adj +verb +det +noun +prep +det +noun +pron +prep +pron +verb +adv +noun +verb +det +noun +pron +pron +verb +prep +det +noun +verb +det +noun +adv +verb +conj +conj +det +verb +det +noun +prep +det +noun +verb +adj +adj +conj +det +verb +pron +verb +verb +conj +verb +adv +adj +conj +prep +adj +pron +verb +conj +verb +adj +adj +prep +pron +verb +verb +verb +pron +verb +noun +conj +prep +det +prep +det +noun +pron +verb +noun +det +adj +det +noun +noun +noun +pron +verb +pron +noun +adj +adv +verb +conj +verb +det +noun +det +noun +noun +conj +noun +verb +verb +prep +pron +verb +conj +verb +det +noun +verb +det +noun +pron +verb +pron +conj +pron +verb +adv +det +adj +det +prep +det +noun +verb +noun +verb +conj +verb +pron +adv +adj +noun +verb +pron +conj +verb +verb +det +prep +det +noun +conj +prep +adj +noun +verb +prep +noun +verb +prep +det +noun +adj +noun +noun +conj +verb +prep +noun +verb +noun +adj +adv +verb +verb +prep +noun +conj +prep +adj +noun +verb +noun +adj +verb +prep +noun +adv +verb +noun +verb +prep +pron +verb +noun +num +conj +adv +prep +det +noun +verb +conj +det +noun +verb +det +prep +pron +verb +prep +noun +pron +prep +noun +noun +conj +adj +noun +pron +verb +det +noun +verb +det +noun +verb +noun +conj +conj +verb +prep +noun +verb +det +noun +verb +prep +pron +prep +det +verb +pron +noun +conj +verb +prep +noun +adj +verb +pron +det +verb +det +adj +adj +conj +verb +pron +verb +prep +pron +noun +noun +pron +adj +adj +verb +det +noun +conj +det +noun +det +adj +noun +prep +noun +verb +prep +det +noun +det +adj +pron +verb +pron +verb +verb +prep +det +adj +noun +noun +verb +prep +pron +conj +verb +det +adj +verb +verb +noun +adv +conj +det +noun +pron +pron +verb +verb +conj +prep +pron +det +noun +verb +pron +verb +conj +verb +conj +prep +det +noun +det +noun +det +noun +pron +verb +conj +det +prep +pron +verb +conj +pron +noun +prep +pron +verb +prep +det +noun +conj +verb +pron +det +noun +verb +conj +verb +pron +prep +pron +adj +conj +verb +prep +pron +verb +pron +verb +conj +ptcl +prep +det +noun +pron +adj +pron +verb +conj +adv +verb +conj +verb +pron +noun +verb +prep +pron +prep +det +noun +adj +pron +verb +verb +det +noun +det +noun +conj +verb +pron +prep +det +noun +prep +conj +det +noun +noun +conj +det +noun +prep +adv +prep +noun +conj +conj +det +verb +det +verb +conj +det +verb +conj +adj +verb +prep +pron +verb +verb +det +noun +noun +adj +adv +adv +det +noun +det +adj +verb +prep +noun +det +noun +prep +det +noun +pron +verb +verb +prep +det +noun +pron +conj +verb +noun +verb +conj +adv +adv +verb +conj +verb +verb +conj +adv +adv +verb +conj +verb +det +noun +det +noun +pron +conj +det +noun +adv +verb +conj +det +noun +pron +verb +ptcl +adv +verb +det +noun +conj +det +noun +verb +conj +det +noun +verb +conj +verb +conj +verb +pron +conj +adj +verb +pron +conj +det +noun +verb +pron +det +adj +det +noun +pron +conj +verb +conj +verb +noun +adj +prep +adj +noun +conj +verb +adj +det +verb +prep +pron +verb +det +noun +det +noun +conj +verb +det +prep +det +noun +noun +noun +prep +adj +noun +adv +noun +noun +noun +noun +adj +noun +verb +prep +noun +noun +pron +verb +prep +det +noun +pron +prep +noun +adj +prep +det +noun +pron +det +verb +prep +noun +noun +prep +noun +det +verb +noun +noun +prep +noun +prep +noun +noun +prep +noun +adj +noun +noun +det +noun +pron +prep +pron +verb +noun +conj +noun +prep +noun +noun +prep +adj +det +noun +prep +det +noun +pron +prep +pron +verb +adv +pron +adj +noun +noun +adj +det +verb +prep +noun +adj +noun +adj +adj +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +conj +adj +verb +det +noun +pron +prep +noun +noun +prep +adj +pron +conj +det +noun +pron +verb +prep +adj +det +noun +conj +noun +pron +verb +det +noun +pron +verb +prep +det +noun +pron +prep +det +noun +det +noun +pron +adv +adv +noun +pron +verb +adv +prep +det +noun +pron +verb +conj +adv +adv +adv +verb +prep +det +noun +det +noun +verb +prep +pron +conj +verb +verb +pron +conj +verb +pron +noun +adj +pron +prep +det +verb +pron +conj +pron +verb +verb +prep +pron +prep +det +prep +pron +noun +conj +pron +conj +pron +conj +noun +adv +verb +pron +verb +conj +adv +verb +verb +prep +pron +conj +verb +prep +det +adv +conj +pron +noun +verb +adv +prep +pron +conj +adv +prep +det +adj +noun +conj +noun +conj +adj +conj +adj +conj +adj +noun +verb +adv +det +prep +pron +adj +adv +pron +det +prep +noun +verb +conj +adv +verb +det +noun +conj +noun +noun +verb +prep +noun +adj +det +verb +conj +adj +adj +conj +noun +conj +noun +noun +prep +pron +verb +prep +noun +prep +noun +conj +verb +conj +det +adj +prep +noun +verb +conj +verb +noun +noun +prep +noun +prep +adj +noun +conj +noun +noun +det +det +noun +prep +noun +verb +conj +det +adj +det +noun +adj +verb +prep +pron +conj +det +noun +pron +verb +conj +det +adj +pron +det +conj +adj +pron +noun +conj +noun +prep +noun +noun +det +noun +verb +verb +prep +det +verb +pron +adj +conj +verb +det +noun +adv +conj +noun +verb +conj +verb +conj +verb +prep +det +noun +pron +conj +verb +det +adj +pron +noun +verb +verb +adj +verb +conj +verb +det +noun +det +adj +noun +prep +noun +noun +adj +noun +conj +noun +conj +adj +conj +noun +conj +verb +pron +det +noun +prep +det +noun +det +noun +pron +prep +noun +det +verb +det +noun +pron +prep +pron +pron +verb +det +noun +det +noun +prep +det +noun +conj +verb +conj +verb +det +noun +prep +det +verb +pron +verb +adj +prep +det +noun +ptcl +prep +pron +verb +pron +det +noun +prep +noun +noun +conj +conj +det +adj +pron +verb +det +adj +noun +prep +det +prep +noun +conj +adv +adv +det +adj +verb +det +adj +noun +det +adj +verb +prep +det +noun +pron +prep +pron +adj +prep +adj +det +noun +verb +conj +det +noun +pron +verb +det +noun +pron +prep +pron +verb +conj +conj +adv +verb +det +noun +verb +prep +noun +verb +pron +det +noun +prep +adj +noun +verb +det +adv +verb +verb +adj +noun +noun +noun +noun +adj +noun +noun +noun +noun +noun +noun +adj +adj +noun +adj +noun +noun +adj +noun +adj +adj +adj +adj +adj +pron +det +noun +det +noun +verb +adv +det +det +pron +verb +adj +noun +verb +adv +adj +pron +verb +conj +adv +verb +det +verb +conj +adj +verb +intj +noun +adj +det +verb +conj +prep +pron +verb +det +adj +pron +verb +conj +det +pron +verb +det +verb +conj +verb +conj +det +noun +det +noun +verb +prep +noun +prep +det +det +pron +verb +conj +verb +pron +intj +noun +det +verb +det +det +pron +verb +conj +verb +pron +adv +pron +verb +det +noun +det +noun +conj +det +noun +det +noun +pron +conj +det +noun +conj +det +noun +verb +verb +conj +det +adj +det +noun +prep +noun +pron +verb +conj +prep +det +noun +pron +conj +adj +noun +verb +pron +noun +prep +noun +noun +conj +noun +noun +det +noun +pron +verb +adj +prep +det +noun +pron +conj +det +prep +noun +noun +adj +noun +conj +noun +conj +noun +verb +noun +adj +conj +det +prep +noun +conj +verb +det +noun +conj +verb +det +noun +noun +conj +noun +noun +conj +noun +prep +adj +noun +noun +det +verb +det +adj +conj +adj +adj +conj +noun +conj +noun +conj +noun +conj +noun +adj +det +verb +det +adj +conj +adj +adj +conj +noun +conj +adv +verb +noun +prep +det +noun +conj +pron +adv +verb +adv +adv +verb +conj +pron +prep +noun +verb +prep +noun +verb +conj +adv +det +noun +noun +adj +prep +det +noun +conj +det +noun +noun +verb +conj +conj +noun +det +adv +noun +verb +noun +det +det +noun +verb +pron +noun +adv +verb +pron +verb +noun +pron +verb +det +noun +det +noun +adj +prep +det +noun +pron +verb +pron +det +noun +conj +prep +pron +det +noun +verb +conj +adv +verb +noun +prep +pron +verb +det +noun +det +adj +det +noun +prep +det +noun +pron +prep +noun +noun +conj +conj +pron +adj +verb +conj +verb +noun +conj +verb +prep +noun +conj +verb +det +noun +conj +verb +det +verb +verb +prep +det +noun +conj +verb +pron +verb +noun +adj +noun +det +prep +noun +noun +adj +noun +adj +verb +det +noun +det +noun +conj +det +noun +prep +det +noun +conj +det +verb +adj +pron +adv +verb +det +verb +adv +verb +verb +det +verb +adv +verb +verb +det +verb +det +noun +verb +pron +prep +noun +verb +prep +det +noun +det +noun +det +noun +verb +conj +det +noun +det +noun +prep +pron +verb +prep +det +noun +conj +verb +conj +conj +noun +verb +conj +noun +verb +conj +conj +noun +noun +verb +det +noun +pron +noun +verb +conj +conj +det +noun +det +noun +det +noun +verb +ptcl +det +noun +pron +prep +noun +verb +conj +verb +det +prep +noun +noun +det +noun +verb +pron +det +prep +noun +conj +noun +noun +noun +conj +adv +det +prep +det +adj +adj +verb +conj +det +prep +det +adj +prep +noun +noun +conj +det +prep +det +adj +adj +conj +noun +noun +prep +noun +adv +noun +pron +det +noun +adv +prep +noun +conj +prep +det +noun +conj +pron +det +adj +det +adj +conj +pron +det +noun +det +noun +adj +prep +adj +noun +conj +ptcl +adj +conj +verb +det +noun +det +noun +conj +pron +conj +verb +pron +ptcl +det +noun +pron +det +noun +det +noun +verb +adv +verb +conj +verb +det +noun +adj +conj +adj +noun +noun +conj +verb +conj +ptcl +verb +prep +det +noun +pron +conj +verb +prep +det +verb +pron +conj +conj +det +noun +pron +noun +noun +verb +pron +verb +ptcl +adj +det +noun +det +verb +det +noun +prep +noun +verb +adv +verb +conj +adv +verb +det +noun +det +noun +conj +conj +det +noun +det +noun +prep +det +adj +noun +verb +prep +det +noun +pron +pron +adv +pron +conj +adj +verb +conj +adv +conj +verb +conj +conj +verb +pron +pron +verb +conj +verb +det +adj +conj +verb +det +adj +pron +det +noun +adj +verb +conj +pron +verb +adv +adv +conj +verb +conj +adj +conj +noun +adj +prep +noun +verb +conj +verb +conj +adv +verb +adj +adv +adj +adv +verb +det +verb +adv +verb +det +verb +det +noun +adj +verb +adv +verb +adv +verb +det +verb +noun +adv +verb +prep +adj +noun +verb +det +noun +pron +det +noun +pron +verb +noun +noun +prep +det +noun +pron +pron +det +noun +noun +conj +noun +verb +adj +det +noun +pron +verb +noun +noun +conj +noun +prep +det +noun +pron +conj +noun +noun +adv +verb +adv +verb +noun +noun +prep +det +noun +pron +conj +verb +conj +pron +det +noun +verb +det +prep +det +noun +verb +conj +adj +noun +verb +conj +adj +verb +adj +det +noun +det +noun +conj +prep +noun +noun +adv +verb +adj +noun +prep +pron +conj +prep +noun +noun +noun +conj +adv +prep +noun +noun +noun +verb +verb +prep +det +noun +conj +det +noun +conj +noun +noun +prep +noun +noun +noun +prep +adj +det +verb +conj +adv +verb +noun +conj +adj +verb +conj +verb +det +noun +det +noun +verb +adv +det +pron +noun +prep +det +noun +det +prep +noun +noun +pron +verb +det +noun +noun +prep +noun +prep +det +pron +noun +prep +noun +det +noun +pron +prep +det +noun +det +verb +noun +prep +det +noun +det +noun +prep +det +noun +det +noun +pron +prep +det +adv +noun +prep +det +verb +pron +adj +conj +verb +det +prep +noun +noun +conj +adv +det +noun +verb +prep +pron +noun +det +noun +adv +conj +prep +noun +noun +conj +verb +verb +noun +noun +prep +noun +noun +conj +adj +det +noun +adj +ptcl +adv +noun +ptcl +adv +noun +conj +adj +det +noun +pron +verb +noun +prep +noun +conj +noun +prep +det +noun +conj +noun +verb +prep +det +noun +adv +verb +conj +noun +verb +conj +verb +pron +verb +noun +det +noun +pron +prep +noun +conj +conj +noun +prep +noun +verb +verb +noun +conj +adv +prep +noun +conj +pron +det +noun +verb +conj +verb +noun +det +noun +conj +verb +pron +prep +noun +conj +det +verb +det +noun +verb +adv +prep +noun +conj +prep +noun +conj +det +adv +verb +conj +verb +prep +det +verb +det +adj +verb +det +noun +pron +prep +noun +conj +adv +noun +verb +det +noun +det +noun +pron +det +noun +verb +noun +prep +noun +adj +pron +det +noun +verb +conj +pron +det +noun +verb +adj +noun +pron +adv +adv +verb +noun +noun +conj +det +noun +pron +prep +det +noun +conj +adv +prep +det +noun +conj +verb +verb +det +noun +det +noun +prep +noun +conj +adv +verb +verb +prep +noun +conj +prep +noun +adv +prep +noun +conj +prep +noun +conj +verb +noun +noun +noun +det +noun +det +noun +det +prep +det +noun +prep +det +verb +pron +noun +adj +det +verb +prep +noun +prep +det +verb +pron +det +noun +conj +noun +noun +det +adv +prep +noun +adj +conj +adv +det +verb +det +noun +det +prep +noun +noun +det +noun +pron +noun +conj +adv +prep +noun +det +noun +det +noun +noun +pron +verb +det +noun +conj +det +noun +pron +conj +prep +noun +noun +conj +conj +det +prep +noun +noun +verb +det +noun +conj +verb +det +noun +conj +det +noun +noun +verb +conj +conj +adv +verb +noun +adv +noun +prep +pron +prep +noun +conj +prep +noun +prep +det +verb +adj +det +noun +adj +det +noun +adv +det +prep +det +noun +adj +conj +adv +det +prep +noun +noun +pron +verb +noun +adj +pron +prep +pron +verb +noun +det +verb +det +adj +conj +verb +det +adv +verb +conj +verb +conj +verb +conj +noun +adj +noun +verb +pron +pron +prep +noun +prep +noun +verb +prep +det +verb +pron +noun +adj +noun +prep +det +verb +adv +verb +det +noun +pron +conj +adv +verb +det +noun +verb +det +pron +noun +verb +adj +adv +verb +conj +det +noun +det +noun +noun +conj +prep +det +noun +det +noun +adv +verb +det +noun +conj +verb +det +noun +verb +noun +det +noun +conj +verb +conj +verb +adj +pron +verb +adv +verb +conj +adv +verb +pron +prep +noun +conj +adv +verb +prep +pron +adj +conj +verb +pron +conj +adv +prep +pron +pron +verb +verb +det +verb +prep +det +verb +prep +adj +noun +det +noun +pron +pron +verb +prep +det +noun +pron +conj +verb +prep +det +noun +pron +conj +verb +prep +noun +noun +verb +prep +det +noun +prep +det +noun +pron +noun +noun +prep +pron +adv +det +noun +verb +det +noun +prep +det +noun +pron +prep +pron +verb +conj +verb +prep +noun +det +noun +det +noun +conj +adv +adj +conj +adv +verb +prep +det +noun +verb +conj +det +noun +noun +verb +conj +det +noun +noun +conj +det +noun +noun +conj +det +noun +adv +verb +conj +det +noun +det +noun +verb +prep +det +noun +pron +prep +noun +adj +det +verb +pron +conj +adv +noun +verb +pron +adj +adv +prep +noun +prep +adj +verb +conj +adv +prep +adj +pron +verb +conj +prep +det +adj +adv +pron +adv +verb +verb +conj +verb +det +pron +noun +prep +pron +det +noun +conj +adv +adj +verb +pron +noun +prep +pron +verb +conj +adj +adv +verb +adv +prep +det +noun +pron +verb +prep +pron +prep +det +noun +conj +conj +adj +verb +verb +det +noun +prep +det +noun +det +noun +pron +adj +adv +verb +verb +prep +det +noun +pron +conj +adv +adj +conj +adv +verb +prep +det +noun +prep +det +noun +pron +noun +noun +prep +pron +adv +det +noun +verb +prep +pron +conj +prep +adj +noun +det +noun +prep +det +noun +verb +conj +prep +det +noun +det +noun +adv +adv +prep +adj +noun +det +noun +verb +prep +pron +adj +verb +conj +prep +noun +noun +verb +prep +noun +conj +noun +adv +verb +adv +verb +noun +conj +verb +det +noun +prep +noun +prep +noun +adv +prep +det +adv +verb +prep +det +noun +det +noun +noun +pron +verb +noun +det +verb +conj +adv +conj +det +noun +adv +adv +det +noun +conj +conj +det +det +adj +noun +det +adj +verb +adj +adv +det +noun +det +noun +conj +det +noun +prep +noun +det +det +adj +noun +noun +noun +prep +det +adj +verb +conj +adv +conj +prep +adj +verb +det +noun +conj +conj +det +noun +prep +adj +prep +noun +conj +det +noun +prep +adj +noun +prep +noun +conj +conj +det +det +adj +noun +det +noun +verb +prep +det +adj +adj +adv +det +det +noun +det +noun +conj +det +noun +det +noun +verb +prep +noun +verb +prep +det +adj +noun +noun +conj +conj +conj +prep +adj +noun +prep +adj +noun +prep +noun +adv +adv +prep +adj +noun +prep +adj +noun +prep +noun +noun +conj +conj +prep +det +noun +det +adj +noun +adj +verb +det +adj +adv +adv +prep +det +noun +det +adj +adj +verb +det +adj +conj +noun +verb +conj +verb +det +noun +conj +conj +verb +det +noun +verb +det +noun +conj +conj +verb +det +noun +prep +det +noun +adv +adv +det +noun +verb +prep +noun +prep +noun +adj +prep +noun +noun +det +noun +pron +conj +pron +verb +verb +det +noun +conj +det +noun +verb +adv +verb +pron +verb +det +noun +adv +adv +verb +prep +pron +conj +verb +conj +pron +verb +prep +noun +noun +prep +det +noun +pron +verb +conj +verb +pron +prep +det +noun +prep +det +noun +conj +conj +verb +noun +prep +adj +prep +det +noun +det +noun +adv +adv +pron +prep +noun +noun +verb +conj +conj +adj +verb +det +noun +det +noun +pron +conj +adv +det +noun +verb +pron +verb +adv +det +adj +pron +noun +verb +conj +verb +det +noun +det +noun +det +adv +verb +pron +det +noun +conj +det +verb +verb +prep +det +noun +conj +conj +verb +prep +noun +verb +conj +adv +verb +pron +verb +conj +noun +verb +prep +adj +adv +verb +noun +pron +adv +verb +conj +pron +verb +det +noun +verb +adv +conj +pron +verb +verb +det +noun +adv +adv +pron +verb +pron +verb +conj +adj +det +noun +conj +verb +det +noun +prep +noun +noun +conj +adv +verb +det +noun +prep +det +adj +pron +noun +prep +det +verb +det +noun +pron +conj +verb +det +noun +pron +noun +noun +det +noun +conj +verb +pron +det +noun +conj +prep +adj +verb +conj +det +noun +pron +noun +noun +det +noun +conj +noun +pron +adv +verb +conj +adv +verb +prep +noun +conj +prep +noun +conj +pron +verb +conj +adv +verb +prep +noun +conj +prep +noun +adv +verb +adv +verb +conj +pron +verb +pron +noun +prep +noun +noun +verb +pron +verb +conj +noun +prep +noun +conj +noun +prep +noun +conj +noun +det +noun +conj +verb +noun +det +noun +conj +verb +prep +noun +prep +pron +verb +noun +noun +conj +verb +prep +det +noun +verb +det +noun +adj +verb +prep +det +noun +det +noun +pron +conj +conj +verb +det +noun +pron +adj +det +noun +conj +det +noun +prep +det +noun +adv +adv +verb +det +noun +pron +adj +det +noun +prep +noun +conj +conj +noun +det +noun +verb +adj +verb +det +noun +conj +pron +noun +verb +adv +prep +pron +adv +verb +conj +det +noun +pron +noun +conj +adv +verb +prep +det +noun +conj +verb +det +noun +verb +det +noun +pron +prep +noun +conj +det +noun +noun +adj +conj +det +noun +det +noun +noun +conj +det +noun +det +noun +noun +adj +prep +noun +noun +det +noun +pron +conj +noun +verb +conj +verb +noun +verb +conj +det +noun +verb +det +noun +prep +pron +noun +verb +conj +det +adj +noun +det +verb +noun +verb +noun +conj +conj +verb +det +noun +verb +prep +det +noun +det +noun +conj +conj +verb +det +noun +noun +verb +conj +verb +noun +adj +conj +conj +verb +det +noun +adj +verb +prep +det +noun +det +adv +verb +pron +noun +verb +noun +adj +conj +noun +pron +adv +pron +verb +det +noun +prep +det +noun +det +noun +prep +det +verb +pron +adj +det +prep +adj +verb +conj +verb +det +noun +conj +conj +verb +prep +det +noun +det +noun +det +noun +det +prep +det +noun +verb +prep +det +noun +pron +prep +det +verb +det +noun +conj +adv +verb +prep +det +noun +verb +prep +pron +verb +conj +verb +pron +prep +noun +noun +conj +adv +noun +noun +conj +pron +verb +det +noun +noun +adv +verb +conj +det +noun +adv +verb +conj +adv +prep +noun +conj +conj +det +noun +adv +verb +conj +adv +det +noun +verb +adv +verb +conj +noun +verb +det +noun +prep +det +noun +verb +prep +pron +adj +noun +conj +prep +noun +noun +adj +conj +pron +verb +prep +noun +adv +conj +verb +det +noun +det +noun +verb +conj +pron +verb +conj +verb +pron +det +noun +det +prep +noun +pron +prep +noun +conj +det +noun +noun +verb +prep +det +noun +verb +pron +conj +prep +pron +verb +conj +conj +det +noun +adj +conj +det +noun +adj +conj +adj +conj +adj +conj +det +adj +pron +verb +noun +adv +verb +conj +det +noun +conj +verb +noun +prep +det +adj +pron +verb +noun +conj +verb +prep +noun +adj +det +noun +prep +det +noun +conj +verb +conj +det +noun +adj +verb +conj +pron +adj +verb +verb +prep +det +noun +conj +pron +verb +adv +verb +conj +adv +pron +verb +pron +verb +conj +pron +verb +pron +verb +conj +conj +pron +adv +verb +pron +verb +verb +det +noun +conj +adj +conj +adv +adv +pron +verb +pron +conj +det +verb +prep +pron +noun +conj +verb +conj +adv +verb +prep +pron +pron +verb +prep +det +noun +pron +adj +conj +det +verb +verb +pron +conj +det +verb +det +adj +adv +conj +adv +pron +verb +adj +verb +conj +pron +adv +verb +adj +pron +verb +conj +conj +pron +adv +verb +pron +pron +verb +adv +pron +verb +pron +conj +det +verb +prep +pron +noun +conj +verb +det +noun +pron +det +verb +verb +det +adj +adv +pron +det +adj +verb +conj +verb +det +noun +det +noun +prep +det +adv +noun +conj +verb +adj +noun +prep +det +noun +pron +verb +det +noun +det +noun +pron +conj +verb +pron +prep +det +noun +det +noun +det +verb +prep +det +noun +pron +adj +noun +pron +pron +pron +verb +prep +det +noun +det +noun +pron +noun +det +noun +prep +noun +noun +det +noun +pron +conj +conj +conj +pron +pron +det +noun +verb +noun +noun +conj +det +noun +noun +noun +conj +adj +noun +adv +det +prep +noun +noun +conj +det +noun +det +noun +det +noun +prep +noun +noun +verb +pron +prep +det +noun +det +noun +conj +det +noun +conj +det +adj +det +noun +prep +pron +verb +prep +det +noun +det +noun +det +pron +noun +verb +prep +noun +noun +noun +conj +prep +noun +verb +det +noun +prep +det +noun +conj +det +noun +det +noun +verb +prep +pron +det +verb +adv +prep +noun +conj +prep +noun +conj +det +prep +noun +verb +det +det +noun +verb +conj +det +prep +noun +det +det +noun +conj +det +noun +det +noun +noun +conj +det +noun +det +noun +noun +conj +noun +conj +det +noun +det +noun +noun +prep +noun +conj +det +noun +det +noun +adv +verb +conj +adv +verb +conj +det +prep +noun +verb +noun +verb +adv +verb +conj +pron +verb +adv +prep +noun +conj +prep +noun +conj +noun +noun +verb +prep +pron +conj +conj +pron +noun +noun +adv +verb +pron +adv +verb +pron +conj +conj +noun +prep +pron +conj +det +noun +adj +prep +noun +conj +det +noun +noun +prep +noun +conj +conj +det +noun +det +verb +det +noun +prep +adj +verb +prep +pron +det +verb +prep +adj +noun +noun +verb +adv +det +adj +noun +pron +prep +det +verb +prep +pron +pron +noun +conj +conj +noun +noun +verb +adv +det +noun +det +prep +noun +verb +conj +conj +prep +noun +verb +verb +verb +conj +conj +noun +det +noun +det +noun +verb +verb +conj +pron +noun +noun +verb +pron +noun +noun +verb +conj +adv +verb +noun +noun +adv +prep +noun +conj +verb +noun +noun +prep +pron +verb +noun +det +noun +pron +det +noun +verb +det +noun +pron +conj +verb +noun +noun +conj +conj +noun +adv +noun +conj +noun +noun +conj +adj +noun +conj +verb +conj +adv +verb +conj +verb +conj +adv +adj +det +noun +det +adv +noun +prep +det +verb +verb +prep +pron +noun +conj +det +noun +det +noun +det +noun +det +noun +det +noun +verb +conj +det +noun +det +noun +verb +adv +adj +conj +prep +det +verb +prep +noun +conj +adv +pron +det +noun +verb +prep +det +noun +det +noun +prep +det +noun +det +noun +det +noun +det +noun +conj +verb +conj +adj +det +noun +verb +conj +verb +prep +det +adv +conj +adv +adj +conj +adv +pron +det +noun +det +noun +verb +pron +adv +pron +prep +pron +verb +verb +noun +det +noun +det +noun +pron +conj +det +noun +verb +conj +noun +verb +adv +verb +noun +conj +pron +verb +pron +pron +verb +conj +conj +pron +adv +verb +verb +prep +noun +verb +conj +adv +adv +det +noun +verb +det +noun +pron +conj +det +pron +verb +conj +verb +adv +verb +conj +pron +det +noun +verb +noun +adj +conj +det +verb +det +noun +verb +pron +det +noun +det +noun +conj +prep +noun +verb +prep +adj +conj +verb +conj +det +verb +det +noun +adj +verb +prep +adj +det +prep +noun +adj +verb +conj +pron +verb +adv +verb +adj +det +noun +det +noun +pron +prep +det +verb +pron +adj +prep +adj +noun +conj +pron +verb +pron +adv +verb +conj +pron +verb +pron +adv +verb +conj +pron +verb +pron +adv +verb +conj +pron +verb +prep +pron +conj +det +noun +prep +pron +pron +prep +pron +ptcl +pron +det +adj +noun +adv +verb +conj +prep +pron +adj +verb +pron +adv +adv +adv +prep +pron +det +adj +pron +verb +pron +verb +prep +adj +noun +noun +det +verb +pron +det +verb +noun +noun +det +verb +conj +adv +verb +pron +verb +prep +adj +det +noun +pron +adv +verb +prep +pron +pron +pron +verb +prep +det +noun +det +noun +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +verb +conj +prep +pron +verb +adj +det +noun +verb +conj +noun +noun +conj +prep +pron +adj +verb +prep +det +verb +pron +conj +verb +conj +conj +noun +conj +noun +conj +noun +conj +noun +conj +verb +conj +verb +conj +noun +conj +noun +conj +noun +conj +pron +noun +adj +verb +pron +verb +prep +det +noun +det +noun +det +prep +noun +noun +det +noun +pron +noun +verb +prep +noun +adv +verb +verb +pron +det +noun +pron +prep +noun +adj +adv +noun +pron +verb +adj +conj +adj +noun +det +noun +pron +conj +verb +pron +pron +noun +verb +prep +det +noun +prep +det +noun +pron +det +adj +pron +prep +noun +pron +verb +noun +pron +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +pron +det +noun +conj +prep +pron +det +noun +det +prep +noun +det +verb +prep +adj +noun +adj +prep +det +noun +ptcl +conj +adv +pron +adv +verb +det +noun +det +noun +conj +adv +adj +det +prep +noun +pron +noun +conj +conj +verb +noun +noun +adj +noun +conj +prep +noun +verb +pron +noun +pron +verb +adv +det +noun +det +noun +pron +noun +det +noun +conj +det +noun +det +noun +verb +prep +noun +conj +noun +det +noun +pron +prep +det +noun +pron +verb +conj +verb +det +noun +noun +conj +adv +adj +conj +adv +noun +noun +verb +prep +adj +noun +det +noun +pron +conj +adv +verb +conj +verb +pron +adj +conj +adj +conj +det +prep +noun +noun +det +noun +verb +adv +prep +noun +conj +prep +det +verb +verb +pron +conj +det +adj +verb +det +adj +conj +verb +det +noun +verb +conj +det +noun +verb +conj +pron +verb +ptcl +noun +prep +det +noun +adv +verb +conj +det +noun +verb +verb +ptcl +pron +verb +conj +verb +ptcl +pron +verb +conj +conj +adv +det +verb +conj +det +verb +conj +det +verb +noun +conj +verb +det +noun +det +noun +conj +prep +pron +pron +verb +pron +conj +verb +prep +pron +det +noun +pron +conj +conj +verb +det +noun +pron +prep +adj +det +noun +conj +conj +pron +verb +verb +conj +pron +verb +verb +conj +verb +pron +pron +adv +verb +conj +det +noun +pron +pron +verb +intj +noun +ptcl +pron +verb +pron +det +verb +det +noun +ptcl +verb +det +noun +det +verb +pron +pron +verb +adv +conj +ptcl +verb +det +noun +noun +det +noun +prep +det +pron +noun +verb +noun +conj +pron +prep +noun +conj +pron +prep +noun +conj +conj +det +noun +verb +verb +det +noun +conj +verb +det +adj +pron +verb +prep +adj +noun +noun +noun +verb +prep +noun +conj +conj +verb +det +noun +det +noun +pron +prep +noun +noun +pron +verb +prep +noun +pron +adv +verb +pron +adv +adj +prep +adj +conj +adv +prep +noun +conj +adv +prep +det +noun +verb +verb +det +adv +noun +pron +noun +pron +conj +det +adv +verb +verb +conj +verb +prep +det +noun +adv +verb +pron +adv +noun +pron +pron +adv +verb +noun +noun +verb +conj +noun +verb +prep +det +noun +conj +verb +det +noun +det +noun +noun +conj +det +noun +det +noun +det +noun +verb +conj +noun +verb +conj +verb +verb +noun +prep +det +noun +conj +conj +verb +noun +conj +adv +noun +noun +verb +pron +noun +ptcl +conj +noun +verb +conj +ptcl +conj +noun +verb +conj +pron +verb +conj +noun +det +adv +verb +noun +verb +noun +conj +noun +det +prep +noun +conj +noun +verb +noun +noun +prep +noun +adv +verb +prep +pron +conj +adv +prep +noun +conj +conj +prep +noun +verb +det +noun +det +noun +conj +verb +verb +verb +prep +noun +noun +noun +conj +noun +noun +conj +det +verb +prep +pron +adv +verb +noun +conj +det +noun +det +adj +noun +conj +det +noun +prep +det +noun +prep +pron +prep +noun +conj +verb +pron +conj +noun +noun +verb +conj +adv +prep +noun +conj +verb +det +det +noun +noun +conj +det +adj +verb +verb +det +noun +det +noun +adv +verb +conj +noun +noun +noun +prep +noun +adj +det +verb +conj +noun +verb +conj +det +noun +det +prep +noun +det +verb +noun +verb +prep +pron +conj +det +prep +noun +noun +adv +verb +adv +verb +prep +det +noun +pron +pron +verb +prep +det +noun +pron +verb +noun +verb +conj +pron +verb +prep +det +noun +pron +verb +noun +prep +adj +verb +conj +pron +verb +prep +pron +det +noun +verb +prep +det +noun +pron +conj +prep +det +noun +pron +pron +verb +det +noun +det +noun +pron +verb +conj +conj +verb +prep +det +noun +pron +noun +noun +conj +verb +prep +det +noun +pron +conj +det +noun +pron +verb +prep +adj +verb +conj +noun +verb +prep +noun +conj +noun +verb +prep +noun +conj +verb +det +noun +adj +det +verb +prep +pron +adv +verb +conj +adv +verb +noun +conj +adj +conj +noun +conj +det +pron +noun +adj +verb +prep +adj +det +verb +pron +conj +adj +ptcl +pron +verb +det +noun +noun +verb +conj +adv +verb +prep +pron +adv +verb +conj +adv +verb +pron +adv +verb +conj +adv +verb +prep +verb +conj +adv +verb +conj +adv +verb +conj +verb +adv +adj +det +noun +det +verb +adj +conj +adv +adj +verb +det +noun +conj +noun +verb +noun +pron +verb +det +noun +pron +conj +det +noun +prep +noun +conj +det +noun +prep +noun +noun +conj +verb +ptcl +adv +verb +ptcl +prep +adj +det +noun +verb +det +noun +pron +conj +prep +det +noun +det +noun +det +noun +pron +conj +verb +ptcl +noun +adv +verb +adj +noun +verb +pron +verb +pron +prep +adv +noun +prep +noun +adj +verb +pron +conj +noun +verb +conj +verb +verb +det +pron +adv +verb +adj +verb +det +pron +adv +verb +conj +prep +det +noun +verb +adj +det +noun +verb +det +noun +pron +prep +noun +verb +conj +verb +conj +verb +ptcl +verb +det +noun +det +noun +pron +adv +verb +conj +adv +pron +noun +verb +prep +noun +noun +noun +noun +adv +verb +det +noun +det +noun +pron +pron +verb +conj +adv +verb +prep +noun +pron +verb +det +noun +conj +verb +det +noun +prep +det +noun +noun +det +noun +pron +verb +det +noun +pron +verb +pron +verb +adj +conj +verb +det +noun +pron +conj +pron +verb +pron +det +noun +verb +pron +adj +noun +pron +adv +verb +noun +det +noun +conj +adv +adv +prep +det +adv +noun +noun +prep +noun +noun +verb +conj +conj +noun +adv +prep +noun +conj +det +noun +adv +verb +noun +conj +pron +pron +verb +noun +pron +adv +verb +conj +det +noun +verb +conj +det +adj +verb +conj +verb +verb +pron +det +noun +noun +noun +noun +det +adv +verb +conj +noun +det +adv +verb +prep +det +adv +noun +conj +noun +verb +verb +det +noun +pron +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +noun +pron +verb +det +noun +pron +det +adv +verb +conj +det +noun +pron +prep +adj +verb +conj +verb +ptcl +verb +conj +verb +adv +verb +conj +det +pron +noun +det +noun +det +noun +prep +det +verb +pron +conj +conj +det +noun +pron +noun +noun +conj +det +noun +pron +noun +noun +pron +adv +det +noun +pron +conj +verb +pron +det +noun +ptcl +conj +prep +pron +verb +pron +noun +noun +det +noun +pron +verb +ptcl +adv +verb +pron +det +noun +conj +verb +pron +prep +pron +conj +conj +det +noun +pron +noun +noun +pron +det +noun +conj +adv +noun +prep +adj +conj +conj +det +noun +adj +adv +det +noun +conj +conj +det +noun +adj +adv +det +noun +conj +conj +pron +det +noun +verb +conj +pron +noun +verb +verb +prep +pron +conj +noun +det +noun +det +noun +det +noun +verb +adv +verb +det +noun +conj +conj +verb +adv +pron +det +noun +verb +conj +det +noun +pron +conj +verb +verb +noun +conj +pron +verb +adv +det +noun +verb +conj +pron +det +noun +verb +adv +adj +verb +conj +verb +conj +conj +det +noun +det +prep +noun +noun +adv +verb +adv +pron +verb +conj +verb +noun +conj +noun +noun +conj +prep +det +verb +noun +conj +prep +pron +noun +noun +conj +verb +det +noun +conj +adv +pron +verb +conj +pron +conj +adv +verb +det +noun +verb +conj +adj +verb +det +noun +adv +verb +pron +conj +conj +pron +prep +det +prep +noun +noun +verb +conj +prep +noun +verb +prep +noun +pron +adv +pron +det +prep +noun +verb +det +adj +noun +conj +noun +adv +verb +pron +verb +det +noun +pron +conj +adv +verb +prep +pron +adj +adv +noun +prep +noun +det +noun +verb +prep +pron +det +noun +det +noun +verb +conj +adv +adj +noun +verb +conj +verb +verb +prep +noun +det +verb +verb +noun +prep +noun +conj +pron +pron +det +prep +pron +noun +conj +verb +det +noun +pron +conj +prep +det +noun +adj +prep +pron +conj +prep +det +noun +adj +prep +det +noun +conj +adj +det +noun +conj +det +noun +det +noun +conj +conj +pron +adv +verb +det +noun +conj +adv +verb +det +pron +noun +adv +adv +pron +adv +verb +det +adj +noun +conj +adv +pron +adv +verb +conj +verb +det +noun +det +adj +prep +noun +conj +det +adj +verb +ptcl +noun +noun +conj +noun +conj +noun +noun +adv +adj +det +noun +pron +conj +adj +det +noun +pron +conj +pron +verb +noun +noun +conj +pron +noun +pron +verb +conj +pron +verb +pron +conj +verb +pron +conj +prep +pron +conj +prep +pron +conj +prep +pron +det +adj +pron +det +noun +prep +det +noun +ptcl +conj +noun +verb +prep +det +noun +det +noun +pron +verb +det +noun +pron +noun +verb +adj +det +noun +adj +det +adj +noun +pron +conj +adv +verb +det +noun +pron +conj +verb +det +noun +det +noun +prep +det +verb +pron +pron +det +noun +det +noun +det +adj +conj +adj +conj +adj +conj +verb +prep +det +noun +det +verb +pron +adj +det +verb +prep +pron +adv +verb +prep +pron +verb +verb +conj +verb +prep +det +verb +conj +adj +det +noun +verb +noun +noun +conj +conj +prep +adj +noun +adj +noun +verb +conj +det +noun +adj +adv +det +pron +noun +verb +adv +det +adj +adj +noun +verb +prep +noun +conj +det +prep +adj +pron +noun +conj +verb +noun +adj +prep +det +noun +det +verb +pron +conj +noun +prep +det +noun +det +noun +conj +noun +prep +det +noun +conj +det +verb +prep +det +noun +conj +det +verb +prep +det +noun +det +verb +prep +noun +det +verb +prep +noun +det +verb +prep +noun +det +noun +adj +verb +det +adj +verb +det +adj +det +noun +prep +pron +adj +det +noun +pron +verb +det +noun +adv +adj +det +noun +verb +det +noun +verb +det +noun +verb +det +noun +verb +det +noun +verb +det +noun +det +adj +verb +det +noun +verb +verb +det +verb +verb +conj +adv +verb +verb +prep +verb +verb +prep +verb +det +pron +prep +pron +verb +adv +det +adj +verb +conj +det +adj +verb +adv +verb +adj +prep +pron +adj +adj +prep +adj +verb +verb +adj +prep +adj +noun +conj +adj +det +prep +pron +prep +adj +noun +verb +adj +adv +pron +verb +conj +verb +noun +det +noun +conj +verb +pron +noun +pron +verb +verb +noun +conj +conj +verb +det +adj +pron +verb +pron +conj +verb +verb +pron +conj +pron +verb +noun +noun +verb +prep +det +noun +pron +adv +verb +prep +det +adj +conj +verb +prep +det +adj +det +adj +adj +noun +noun +verb +verb +conj +adv +verb +noun +conj +adv +prep +noun +conj +det +verb +prep +noun +verb +verb +conj +det +verb +det +noun +det +det +noun +noun +verb +conj +det +verb +pron +noun +verb +conj +det +noun +verb +noun +adv +det +adj +noun +conj +det +adj +conj +verb +adv +verb +det +noun +det +adj +verb +conj +verb +noun +prep +pron +conj +noun +noun +verb +pron +prep +det +adj +conj +conj +det +adj +verb +verb +conj +adv +adv +det +noun +verb +conj +noun +noun +verb +adj +prep +noun +det +det +adj +verb +conj +noun +verb +adv +adj +prep +det +noun +conj +adv +prep +det +noun +conj +prep +pron +adv +noun +verb +conj +noun +noun +verb +prep +pron +pron +verb +verb +adj +det +noun +det +det +noun +det +noun +det +det +noun +det +noun +det +det +noun +det +noun +det +det +noun +det +noun +adj +adj +verb +conj +adv +det +pron +verb +conj +det +verb +det +adj +noun +verb +conj +det +adv +verb +adv +verb +adv +verb +adv +verb +conj +conj +pron +adj +noun +prep +det +noun +pron +verb +prep +det +verb +det +adv +pron +conj +pron +det +noun +det +adv +adj +adv +verb +conj +noun +noun +det +noun +conj +verb +pron +det +noun +adv +noun +adv +pron +prep +noun +verb +conj +adv +adv +pron +det +noun +conj +conj +verb +det +noun +verb +conj +det +noun +verb +conj +verb +det +noun +det +noun +conj +verb +det +noun +det +noun +conj +prep +noun +adv +verb +adv +noun +conj +noun +adv +noun +conj +noun +adv +noun +conj +noun +conj +verb +det +noun +noun +noun +conj +det +noun +noun +adv +verb +prep +noun +conj +det +verb +det +noun +verb +adv +prep +noun +noun +conj +pron +verb +verb +adj +conj +det +verb +noun +verb +det +verb +det +adv +verb +adv +verb +conj +det +adv +verb +det +verb +adv +verb +conj +det +noun +pron +verb +pron +pron +verb +det +verb +adj +noun +det +adj +noun +verb +conj +verb +conj +verb +conj +verb +det +noun +verb +pron +conj +conj +pron +verb +noun +prep +noun +conj +pron +verb +adj +noun +adj +prep +det +adj +noun +verb +det +verb +det +noun +noun +verb +conj +det +verb +noun +verb +conj +verb +det +noun +conj +det +adv +verb +noun +adv +verb +conj +verb +det +noun +conj +adj +pron +pron +verb +conj +adj +pron +verb +conj +conj +conj +verb +det +noun +verb +conj +conj +verb +det +noun +verb +conj +conj +conj +verb +conj +conj +verb +det +noun +verb +conj +prep +pron +noun +verb +conj +verb +conj +conj +adj +conj +verb +verb +conj +pron +pron +verb +det +noun +pron +conj +adv +pron +pron +verb +det +noun +pron +conj +adj +verb +det +noun +det +noun +conj +verb +verb +pron +verb +noun +conj +pron +verb +adj +noun +conj +adj +noun +verb +det +noun +conj +conj +adj +pron +prep +pron +noun +verb +det +noun +conj +adv +pron +verb +conj +pron +verb +adv +det +adv +verb +det +noun +noun +conj +noun +verb +conj +verb +prep +noun +noun +conj +adj +adj +prep +pron +conj +adv +det +verb +pron +adj +verb +pron +adj +conj +conj +prep +noun +det +noun +pron +verb +adv +prep +noun +verb +adv +det +noun +pron +pron +verb +prep +pron +noun +verb +conj +adv +verb +pron +det +adj +conj +adv +verb +det +noun +det +noun +noun +conj +noun +conj +noun +conj +noun +conj +noun +prep +noun +adj +conj +det +prep +pron +verb +det +noun +adj +det +noun +conj +adj +det +noun +conj +conj +verb +det +det +noun +conj +det +det +noun +det +prep +pron +adv +prep +noun +verb +det +noun +det +noun +conj +adj +adj +conj +adj +det +noun +det +prep +noun +verb +adj +det +adv +verb +noun +conj +verb +noun +conj +prep +pron +det +noun +pron +verb +pron +noun +pron +verb +prep +pron +verb +prep +det +noun +adj +det +adv +verb +pron +prep +pron +verb +conj +conj +det +verb +verb +verb +conj +adv +prep +noun +conj +adj +pron +adv +prep +noun +noun +verb +conj +verb +pron +det +adj +det +noun +det +adj +verb +conj +adv +pron +verb +adj +pron +det +adv +verb +prep +det +adj +prep +noun +conj +adv +det +noun +adv +pron +verb +conj +conj +verb +det +noun +det +verb +pron +verb +prep +pron +conj +pron +verb +prep +det +adj +noun +verb +conj +prep +det +noun +conj +prep +det +noun +det +noun +det +noun +verb +conj +det +noun +det +noun +conj +det +noun +verb +pron +det +pron +verb +prep +pron +prep +noun +noun +conj +adv +prep +adj +noun +verb +det +noun +conj +noun +det +noun +pron +noun +noun +conj +verb +pron +conj +adv +det +noun +verb +pron +prep +noun +det +noun +conj +verb +noun +noun +noun +verb +prep +noun +noun +prep +det +verb +det +noun +det +noun +conj +det +noun +prep +noun +verb +det +noun +conj +verb +prep +pron +verb +pron +prep +noun +conj +det +noun +pron +verb +conj +adv +verb +noun +verb +prep +det +noun +pron +conj +adv +adj +det +noun +verb +det +noun +conj +verb +pron +adj +det +noun +conj +adv +noun +verb +verb +det +noun +det +noun +conj +det +verb +verb +noun +prep +pron +noun +verb +conj +det +noun +det +noun +verb +pron +adj +noun +conj +noun +prep +det +verb +prep +det +verb +pron +prep +det +noun +prep +noun +noun +adj +conj +noun +pron +verb +adv +pron +pron +prep +pron +conj +adv +pron +adj +verb +noun +verb +adj +det +noun +verb +adv +pron +verb +conj +adv +verb +pron +prep +noun +conj +verb +pron +prep +det +noun +det +verb +pron +prep +det +noun +prep +det +verb +pron +noun +noun +noun +prep +det +noun +verb +det +noun +det +noun +conj +verb +det +noun +det +noun +adj +verb +prep +noun +adj +conj +verb +det +noun +prep +noun +noun +det +prep +det +noun +conj +adv +verb +verb +pron +pron +adv +verb +noun +prep +pron +prep +noun +noun +noun +conj +noun +prep +noun +noun +conj +noun +prep +noun +noun +adj +conj +pron +prep +noun +conj +noun +prep +det +noun +verb +det +noun +det +noun +conj +adv +verb +verb +adv +conj +verb +noun +conj +adv +prep +adj +noun +verb +conj +conj +verb +verb +pron +adv +verb +prep +pron +conj +pron +adv +verb +verb +conj +adv +verb +det +adj +det +verb +prep +pron +conj +adv +adv +noun +verb +prep +det +noun +pron +conj +noun +verb +det +verb +prep +pron +prep +adj +noun +conj +ptcl +verb +prep +det +noun +conj +verb +verb +verb +pron +conj +prep +pron +verb +adv +conj +pron +adj +prep +noun +verb +conj +adv +verb +prep +noun +verb +det +adj +conj +verb +noun +conj +noun +noun +pron +verb +prep +det +adj +det +adj +det +prep +noun +conj +verb +conj +noun +verb +pron +conj +conj +det +adj +pron +verb +det +noun +verb +adv +prep +det +adj +verb +pron +conj +pron +verb +conj +verb +pron +det +noun +pron +verb +prep +pron +prep +noun +conj +verb +conj +verb +prep +pron +prep +noun +noun +noun +verb +conj +noun +verb +prep +det +noun +pron +noun +noun +conj +prep +det +noun +det +noun +pron +verb +pron +prep +det +noun +prep +pron +prep +det +noun +adv +verb +prep +det +verb +prep +det +noun +conj +det +noun +pron +det +prep +noun +adj +det +adj +verb +conj +prep +noun +verb +prep +pron +prep +noun +noun +verb +pron +conj +det +noun +det +noun +prep +adj +pron +ptcl +conj +verb +pron +noun +det +noun +pron +verb +noun +det +noun +det +prep +noun +conj +pron +verb +prep +noun +adv +det +adj +conj +verb +pron +prep +ptcl +pron +pron +verb +noun +conj +adv +pron +verb +noun +adj +conj +pron +pron +verb +noun +conj +noun +det +adj +pron +prep +noun +noun +pron +prep +det +noun +pron +det +pron +noun +verb +pron +verb +adv +pron +adj +conj +adv +adj +det +noun +det +noun +conj +det +prep +noun +pron +noun +verb +noun +det +adj +pron +pron +verb +noun +det +noun +prep +noun +verb +noun +pron +adj +verb +prep +pron +verb +noun +conj +noun +det +adj +pron +conj +adj +pron +pron +verb +adj +prep +det +noun +pron +adv +prep +pron +verb +prep +noun +verb +noun +det +adj +pron +prep +noun +verb +noun +det +adj +pron +prep +noun +conj +noun +det +adj +pron +verb +noun +det +adj +prep +noun +verb +det +prep +det +noun +verb +noun +det +adj +pron +verb +det +prep +det +noun +det +verb +prep +noun +verb +noun +conj +noun +det +verb +prep +noun +verb +noun +det +adj +pron +adj +verb +prep +noun +verb +noun +det +adj +prep +noun +conj +det +noun +pron +conj +pron +verb +noun +noun +noun +noun +noun +conj +det +prep +pron +noun +verb +noun +conj +noun +noun +conj +det +noun +pron +conj +noun +conj +det +prep +pron +adj +adj +verb +pron +prep +noun +adj +verb +pron +det +noun +adj +det +noun +conj +noun +verb +pron +verb +det +det +noun +conj +det +noun +prep +det +noun +pron +pron +verb +verb +conj +verb +prep +pron +conj +det +pron +det +noun +pron +noun +adv +verb +conj +det +pron +noun +conj +prep +det +noun +conj +noun +verb +det +noun +det +adj +conj +det +pron +noun +prep +adj +verb +conj +prep +pron +verb +conj +verb +pron +adj +verb +prep +det +adj +conj +adj +prep +det +adj +conj +det +noun +det +noun +verb +det +noun +prep +det +noun +pron +prep +noun +det +noun +det +noun +pron +noun +prep +pron +verb +pron +noun +det +adj +pron +conj +noun +conj +noun +conj +noun +det +adj +pron +verb +pron +pron +noun +det +verb +det +noun +prep +noun +verb +pron +noun +det +adj +pron +conj +adj +det +noun +verb +pron +noun +det +noun +det +noun +conj +noun +det +noun +conj +det +verb +pron +verb +prep +det +noun +pron +conj +det +noun +noun +noun +prep +noun +noun +noun +adj +verb +conj +verb +adv +conj +prep +noun +adj +prep +noun +det +adj +noun +prep +noun +noun +prep +adj +det +noun +verb +adj +adj +noun +prep +noun +noun +pron +det +noun +prep +det +noun +det +noun +ptcl +noun +adj +noun +noun +noun +prep +noun +noun +conj +noun +det +noun +det +noun +det +noun +det +verb +prep +noun +verb +prep +noun +noun +adj +adj +prep +adj +det +verb +det +noun +det +noun +pron +noun +noun +prep +adj +noun +pron +conj +pron +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +verb +det +noun +adv +prep +pron +prep +det +noun +det +noun +det +verb +pron +prep +noun +noun +conj +prep +adj +verb +prep +pron +prep +adj +noun +conj +adj +noun +conj +det +noun +det +noun +verb +prep +pron +conj +pron +adv +verb +prep +adj +noun +verb +det +noun +det +noun +pron +noun +noun +pron +adv +verb +pron +prep +noun +adj +prep +det +noun +det +noun +pron +noun +noun +adj +det +noun +prep +pron +verb +prep +noun +det +noun +pron +noun +noun +det +noun +pron +conj +noun +verb +pron +prep +det +noun +det +noun +pron +noun +noun +conj +det +pron +verb +adj +conj +adv +verb +prep +pron +noun +conj +verb +verb +prep +det +pron +noun +conj +prep +det +pron +noun +conj +noun +pron +verb +pron +prep +pron +prep +det +noun +conj +noun +prep +pron +verb +conj +verb +pron +adv +adj +pron +verb +conj +pron +verb +noun +conj +pron +noun +conj +pron +noun +conj +pron +noun +verb +det +noun +ptcl +noun +verb +prep +pron +conj +prep +det +noun +noun +verb +verb +conj +adj +pron +verb +conj +adv +noun +conj +noun +conj +adv +pron +verb +conj +prep +det +adj +noun +verb +conj +verb +adv +det +noun +noun +adj +adv +verb +ptcl +pron +adj +verb +conj +verb +pron +noun +adv +verb +conj +verb +adv +prep +noun +noun +conj +adv +verb +det +noun +det +noun +conj +conj +det +noun +det +det +noun +det +verb +noun +verb +conj +det +verb +pron +noun +noun +verb +conj +verb +verb +det +noun +det +adj +conj +det +noun +det +adj +verb +adv +adj +adv +noun +adv +noun +det +noun +pron +ptcl +verb +det +noun +det +noun +det +noun +conj +conj +prep +det +noun +det +noun +adv +verb +det +noun +prep +det +noun +det +noun +verb +det +noun +prep +det +noun +det +noun +verb +det +verb +conj +conj +adj +noun +verb +conj +noun +noun +verb +conj +pron +verb +noun +verb +conj +adj +noun +conj +noun +noun +conj +pron +det +adj +conj +adj +conj +noun +noun +noun +noun +conj +noun +noun +conj +det +adj +det +noun +adj +det +noun +verb +conj +det +adj +det +noun +adj +det +noun +conj +noun +verb +det +noun +pron +adv +adv +adj +adj +prep +noun +adv +adj +adj +adv +adj +adj +conj +det +adj +det +noun +verb +det +noun +conj +verb +det +adj +conj +det +adj +det +noun +verb +det +noun +conj +verb +det +adj +conj +det +adj +det +noun +conj +det +verb +det +adv +verb +verb +det +noun +conj +det +verb +verb +conj +adv +verb +adj +noun +prep +det +noun +conj +prep +pron +pron +verb +prep +noun +noun +pron +verb +pron +prep +noun +noun +conj +noun +conj +noun +conj +noun +conj +conj +verb +det +verb +prep +noun +verb +noun +pron +verb +prep +pron +verb +adv +prep +noun +noun +conj +noun +verb +pron +det +noun +det +noun +conj +adv +verb +pron +verb +prep +pron +conj +adv +noun +noun +conj +pron +verb +pron +prep +noun +conj +prep +noun +conj +prep +noun +adj +verb +prep +pron +conj +det +noun +pron +conj +det +noun +pron +adv +prep +adj +noun +noun +conj +prep +noun +noun +conj +noun +conj +det +noun +pron +verb +adv +prep +noun +noun +conj +prep +noun +noun +conj +noun +verb +prep +det +adj +conj +adv +noun +det +noun +pron +conj +det +noun +det +noun +pron +det +verb +conj +verb +noun +noun +prep +noun +det +verb +pron +verb +det +noun +prep +det +noun +prep +noun +pron +pron +adj +det +noun +det +noun +pron +verb +conj +conj +verb +ptcl +adv +det +noun +det +noun +verb +conj +conj +verb +pron +noun +adv +verb +conj +noun +adv +verb +conj +prep +noun +noun +adv +verb +pron +verb +det +noun +det +verb +pron +conj +pron +verb +det +noun +prep +det +noun +conj +det +noun +adj +verb +adv +det +noun +det +noun +conj +pron +noun +verb +det +det +noun +conj +adv +det +noun +det +noun +det +prep +pron +adv +adv +det +det +noun +adj +verb +conj +adv +det +noun +det +noun +conj +adv +pron +det +noun +det +noun +verb +conj +det +noun +det +prep +det +noun +conj +verb +det +prep +det +noun +verb +pron +pron +adv +verb +adv +prep +adj +adj +noun +noun +conj +prep +adj +noun +adj +adj +verb +conj +adj +noun +adv +verb +det +det +noun +det +noun +conj +noun +pron +verb +conj +adv +verb +verb +conj +adv +verb +conj +det +adj +verb +ptcl +adj +conj +pron +prep +adj +verb +conj +pron +verb +noun +noun +pron +verb +pron +conj +pron +noun +noun +verb +noun +pron +verb +adv +verb +pron +conj +adj +conj +prep +adj +conj +adj +prep +noun +noun +pron +verb +adv +noun +conj +adv +verb +conj +adv +adv +adv +verb +conj +adv +adj +verb +conj +conj +prep +pron +noun +conj +noun +ptcl +adj +verb +conj +prep +noun +verb +conj +conj +conj +verb +pron +pron +verb +noun +conj +adj +pron +noun +ptcl +noun +verb +conj +pron +verb +noun +conj +pron +verb +noun +noun +prep +pron +verb +conj +adv +adj +det +noun +verb +pron +verb +noun +verb +conj +det +noun +verb +conj +conj +det +verb +verb +pron +conj +det +verb +conj +det +verb +noun +conj +det +verb +conj +det +verb +adj +verb +conj +adj +det +adj +noun +verb +prep +det +adj +noun +conj +verb +noun +adj +noun +noun +noun +noun +verb +prep +det +noun +det +noun +det +verb +pron +conj +adj +noun +noun +verb +conj +adj +verb +conj +adj +verb +adv +verb +conj +adj +verb +noun +adj +verb +prep +det +verb +pron +verb +noun +noun +conj +conj +pron +verb +prep +det +noun +noun +noun +noun +adj +noun +noun +noun +adj +det +noun +adj +verb +conj +det +noun +verb +conj +prep +noun +verb +conj +adj +det +noun +adj +verb +det +noun +pron +verb +conj +verb +pron +det +noun +pron +verb +noun +verb +conj +pron +det +noun +verb +verb +conj +pron +verb +conj +conj +adv +prep +noun +adv +verb +conj +noun +noun +verb +conj +det +noun +det +noun +prep +pron +verb +conj +pron +det +noun +det +noun +verb +verb +pron +det +noun +conj +det +noun +det +noun +adj +verb +pron +verb +pron +adj +pron +verb +conj +pron +verb +adj +verb +prep +pron +prep +det +noun +pron +adj +verb +conj +verb +adj +conj +det +noun +det +noun +pron +noun +prep +det +noun +verb +conj +verb +det +verb +det +adj +prep +det +noun +pron +conj +adv +noun +verb +det +noun +det +adj +conj +verb +adj +conj +adj +verb +prep +noun +conj +adj +pron +verb +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +verb +conj +verb +adj +pron +conj +pron +noun +conj +noun +noun +adv +pron +verb +noun +conj +noun +noun +conj +noun +noun +noun +adv +adj +verb +prep +det +noun +conj +adj +pron +verb +conj +pron +prep +adj +verb +conj +verb +prep +pron +conj +prep +adj +noun +conj +adv +pron +verb +conj +adj +pron +verb +conj +adv +prep +pron +verb +conj +det +verb +pron +noun +verb +conj +adv +prep +noun +pron +verb +conj +ptcl +verb +det +noun +pron +conj +verb +det +adj +det +noun +conj +verb +det +noun +det +noun +conj +adv +det +noun +verb +adj +prep +det +noun +conj +noun +pron +verb +prep +pron +conj +noun +prep +pron +conj +prep +pron +verb +det +adv +prep +pron +verb +conj +adv +adj +prep +det +adj +verb +prep +det +adj +conj +pron +pron +verb +conj +verb +pron +pron +adv +verb +conj +conj +adv +verb +pron +verb +conj +adv +verb +adv +verb +verb +adv +verb +prep +pron +verb +conj +verb +ptcl +verb +conj +adv +pron +pron +verb +conj +verb +det +noun +pron +det +noun +adj +verb +conj +adj +conj +noun +verb +det +noun +conj +noun +conj +noun +pron +adj +prep +noun +conj +pron +adj +prep +noun +pron +adj +conj +pron +adj +pron +adj +conj +pron +adj +prep +det +adv +noun +conj +verb +conj +verb +conj +verb +conj +verb +conj +verb +conj +verb +verb +det +adj +noun +verb +verb +verb +verb +verb +verb +conj +noun +det +noun +adj +noun +verb +prep +adv +adv +verb +pron +verb +pron +conj +conj +noun +pron +adj +verb +conj +conj +adj +noun +verb +prep +noun +conj +adv +adj +noun +conj +prep +noun +noun +prep +det +noun +pron +pron +verb +conj +verb +pron +noun +pron +verb +prep +pron +pron +verb +pron +noun +pron +verb +pron +noun +adj +conj +adj +prep +noun +pron +pron +verb +det +noun +pron +det +prep +noun +noun +conj +adv +prep +adj +noun +verb +conj +conj +adv +verb +pron +prep +pron +verb +pron +conj +verb +adv +prep +pron +conj +det +noun +verb +conj +verb +adv +det +noun +det +verb +conj +det +noun +conj +adv +prep +noun +det +noun +det +noun +conj +prep +noun +pron +verb +prep +noun +verb +prep +pron +conj +prep +noun +conj +noun +noun +adv +verb +prep +pron +noun +conj +pron +noun +pron +adv +prep +det +noun +conj +pron +noun +det +noun +verb +conj +pron +verb +verb +conj +adv +adv +verb +conj +verb +prep +adj +pron +det +det +noun +pron +verb +conj +pron +ptcl +verb +det +noun +conj +verb +det +noun +adv +verb +conj +verb +det +adv +pron +verb +prep +det +noun +det +noun +noun +verb +pron +conj +det +adj +noun +prep +det +noun +det +noun +pron +noun +verb +det +pron +det +noun +prep +noun +det +noun +conj +det +noun +verb +prep +det +noun +det +noun +adv +adj +det +noun +pron +adv +verb +conj +adj +noun +adj +det +noun +verb +verb +det +adj +noun +conj +verb +adj +noun +conj +verb +adj +conj +adv +det +noun +pron +noun +verb +conj +verb +adv +prep +noun +adj +conj +prep +noun +noun +conj +noun +conj +prep +adj +noun +conj +noun +verb +pron +prep +det +noun +adv +verb +noun +adv +adv +det +noun +det +noun +pron +conj +det +noun +conj +adj +conj +noun +conj +conj +verb +prep +det +noun +verb +conj +adv +verb +pron +adv +verb +conj +pron +noun +verb +verb +noun +conj +noun +conj +noun +conj +adj +conj +noun +conj +adj +det +pron +conj +verb +conj +pron +pron +det +adv +verb +ptcl +det +adv +pron +verb +conj +det +adv +det +noun +verb +verb +det +adj +prep +pron +pron +verb +pron +pron +noun +verb +prep +det +adj +verb +prep +det +adj +conj +adv +prep +det +adj +conj +adv +verb +conj +det +adj +det +noun +verb +conj +conj +prep +pron +verb +det +noun +adj +verb +noun +adj +adv +verb +conj +noun +verb +ptcl +adj +ptcl +conj +conj +adj +noun +verb +det +verb +prep +det +noun +pron +verb +prep +noun +pron +verb +ptcl +adv +verb +prep +pron +adj +adj +pron +verb +verb +prep +adj +det +noun +pron +conj +noun +prep +noun +verb +conj +pron +prep +adj +conj +conj +adv +adv +noun +pron +verb +conj +noun +verb +prep +pron +prep +pron +adv +adv +verb +prep +pron +adv +adv +verb +conj +pron +verb +conj +verb +conj +pron +noun +conj +adv +verb +conj +adj +noun +noun +adv +verb +adv +verb +conj +noun +conj +noun +conj +noun +conj +adj +conj +noun +conj +noun +conj +noun +adv +noun +adv +adj +adv +adj +noun +noun +verb +conj +pron +pron +verb +conj +verb +conj +verb +conj +verb +prep +det +noun +det +noun +noun +noun +conj +prep +det +noun +det +noun +pron +adj +pron +verb +conj +adv +adj +verb +adj +pron +verb +conj +adv +pron +verb +prep +pron +det +noun +det +noun +conj +det +noun +det +noun +conj +det +noun +conj +pron +conj +pron +verb +conj +det +noun +adv +det +noun +conj +det +noun +conj +det +noun +det +noun +conj +det +noun +conj +det +noun +verb +conj +pron +verb +prep +det +noun +pron +adv +verb +conj +det +noun +pron +noun +noun +verb +conj +verb +det +noun +det +noun +verb +noun +noun +adv +verb +conj +adv +verb +conj +det +verb +det +noun +adj +noun +verb +conj +verb +verb +det +num +prep +noun +adj +conj +det +verb +det +noun +adj +noun +verb +verb +det +noun +adj +noun +ptcl +pron +verb +noun +prep +det +noun +verb +conj +det +verb +prep +det +adj +noun +verb +conj +adv +verb +conj +det +noun +pron +noun +det +prep +pron +adj +noun +verb +pron +verb +prep +noun +conj +adv +verb +pron +conj +verb +noun +ptcl +verb +det +noun +prep +det +noun +pron +conj +prep +pron +verb +adj +noun +noun +adv +verb +conj +prep +det +noun +adj +det +pron +noun +verb +conj +adj +det +adj +noun +verb +det +noun +det +noun +det +noun +verb +conj +adv +adv +det +noun +det +noun +det +noun +det +adj +noun +adv +verb +conj +det +noun +conj +adv +adv +det +noun +det +adj +noun +adv +verb +conj +det +noun +adv +verb +pron +conj +ptcl +ptcl +prep +adj +prep +noun +conj +verb +det +noun +conj +adv +prep +det +pron +verb +conj +adv +verb +pron +det +noun +prep +det +noun +pron +conj +pron +verb +prep +noun +adv +prep +noun +conj +verb +adj +noun +verb +conj +adv +pron +conj +adj +verb +adj +noun +prep +noun +conj +det +adv +conj +det +adv +conj +verb +det +noun +conj +det +noun +adj +pron +conj +verb +conj +pron +conj +conj +adv +verb +verb +conj +adj +verb +verb +conj +verb +conj +det +verb +verb +adv +pron +conj +det +noun +noun +prep +noun +adv +verb +conj +conj +adv +verb +verb +noun +conj +det +noun +verb +conj +noun +noun +adv +verb +conj +det +adj +verb +pron +adv +det +noun +conj +pron +noun +verb +noun +adj +conj +pron +verb +verb +prep +pron +adv +verb +pron +conj +noun +pron +verb +noun +adj +conj +pron +verb +verb +prep +pron +adv +verb +det +noun +conj +verb +det +noun +det +adj +prep +det +noun +conj +verb +det +noun +det +adj +prep +det +noun +conj +conj +det +noun +pron +adj +verb +conj +adv +adj +verb +conj +conj +det +adj +verb +verb +adv +verb +det +noun +conj +det +noun +prep +det +pron +conj +prep +noun +verb +pron +det +noun +conj +noun +pron +verb +ptcl +det +noun +verb +conj +noun +pron +verb +ptcl +det +noun +verb +conj +adv +conj +adj +verb +det +noun +conj +adj +verb +det +noun +adv +verb +conj +adv +prep +det +noun +adj +verb +verb +pron +verb +adv +verb +prep +noun +verb +pron +adv +verb +det +noun +adj +verb +conj +det +noun +adj +verb +conj +noun +noun +noun +adj +prep +det +noun +pron +verb +prep +pron +verb +noun +verb +adv +pron +verb +conj +conj +adv +verb +adj +verb +adv +verb +conj +det +prep +noun +verb +noun +noun +noun +verb +adv +det +adj +verb +verb +noun +noun +noun +verb +adv +verb +noun +noun +noun +adj +prep +pron +verb +prep +pron +verb +prep +noun +conj +prep +det +noun +noun +noun +adv +verb +conj +noun +verb +conj +verb +prep +noun +adj +verb +conj +verb +pron +adj +verb +prep +det +verb +noun +adv +adj +noun +det +adv +verb +verb +noun +adv +verb +noun +verb +prep +noun +adv +verb +noun +conj +conj +adv +verb +adv +verb +conj +conj +verb +det +noun +adv +verb +conj +noun +det +noun +verb +det +pron +conj +pron +pron +verb +conj +noun +pron +verb +det +noun +verb +verb +det +adj +conj +adv +det +verb +noun +conj +adv +verb +verb +conj +det +verb +conj +adv +verb +conj +det +verb +conj +adv +verb +conj +det +verb +conj +adv +verb +conj +det +verb +det +noun +conj +adv +verb +conj +verb +det +noun +det +noun +pron +conj +verb +pron +adj +verb +det +noun +verb +det +det +noun +adv +verb +det +noun +conj +det +verb +verb +det +det +noun +adv +verb +det +noun +conj +verb +conj +det +noun +det +noun +conj +det +noun +verb +det +det +noun +conj +verb +adj +conj +det +noun +conj +det +noun +conj +det +verb +verb +det +det +noun +adv +verb +det +noun +conj +pron +prep +det +pron +pron +adj +verb +adv +conj +noun +pron +verb +conj +prep +det +adj +conj +adj +det +noun +adv +conj +conj +pron +verb +prep +det +noun +pron +verb +conj +verb +adj +conj +adv +verb +verb +pron +verb +verb +adv +verb +verb +conj +pron +verb +prep +det +noun +pron +adj +adv +verb +noun +conj +noun +verb +prep +det +adj +noun +conj +pron +verb +prep +det +adj +noun +verb +det +pron +noun +adv +verb +conj +conj +det +verb +det +pron +noun +adv +verb +conj +det +adv +verb +adj +verb +noun +verb +prep +pron +noun +verb +det +noun +pron +conj +conj +verb +det +noun +adj +verb +pron +verb +verb +adj +prep +noun +conj +adj +verb +conj +adv +verb +prep +det +adj +noun +conj +verb +pron +noun +noun +verb +conj +prep +det +adj +verb +conj +adj +noun +verb +det +noun +verb +conj +det +noun +verb +conj +pron +verb +verb +pron +adv +verb +conj +verb +verb +conj +conj +pron +verb +det +noun +pron +verb +prep +pron +conj +prep +det +noun +det +adj +verb +conj +adj +noun +prep +noun +conj +conj +adj +noun +conj +adv +adj +conj +conj +adv +verb +verb +noun +conj +prep +noun +conj +prep +noun +conj +verb +noun +adj +conj +noun +adj +conj +pron +adj +noun +det +noun +prep +pron +det +adj +conj +pron +prep +pron +conj +adj +noun +noun +noun +prep +pron +det +adj +conj +pron +prep +pron +conj +adv +prep +adj +det +noun +conj +pron +det +noun +prep +adv +det +noun +conj +adj +verb +conj +det +noun +pron +adj +verb +verb +conj +noun +pron +adv +verb +det +noun +conj +conj +adv +verb +verb +conj +conj +verb +verb +conj +verb +conj +adv +det +noun +pron +pron +noun +verb +det +adj +conj +conj +pron +verb +pron +det +verb +noun +prep +noun +verb +ptcl +det +noun +pron +adj +verb +verb +prep +det +det +adj +verb +conj +verb +prep +det +adj +noun +det +verb +det +noun +prep +pron +noun +verb +conj +adv +verb +prep +det +noun +conj +verb +pron +det +noun +verb +prep +noun +verb +conj +conj +noun +verb +det +noun +pron +adv +adv +verb +noun +prep +det +noun +conj +adv +det +noun +pron +verb +ptcl +verb +adj +ptcl +verb +noun +ptcl +noun +det +noun +pron +verb +ptcl +det +noun +pron +pron +verb +prep +noun +conj +adj +adv +verb +noun +conj +ptcl +pron +verb +conj +det +noun +pron +det +noun +pron +verb +prep +noun +det +adj +noun +det +pron +verb +verb +pron +ptcl +adv +verb +noun +verb +conj +verb +ptcl +adv +verb +noun +noun +noun +verb +conj +adv +det +adj +noun +conj +det +noun +det +noun +conj +noun +conj +adj +pron +conj +noun +ptcl +verb +noun +adv +verb +pron +verb +adj +noun +adv +pron +verb +noun +conj +det +noun +pron +adv +verb +conj +pron +verb +noun +conj +prep +det +noun +det +noun +adv +verb +ptcl +prep +noun +pron +verb +conj +adv +det +noun +pron +ptcl +verb +conj +prep +det +noun +noun +verb +adv +verb +noun +verb +ptcl +det +noun +verb +det +noun +conj +prep +pron +adv +verb +conj +prep +pron +verb +conj +verb +prep +noun +verb +det +verb +conj +det +verb +prep +noun +det +verb +conj +pron +pron +det +adj +verb +adj +conj +pron +pron +det +adj +verb +conj +adj +det +pron +noun +verb +ptcl +adv +pron +conj +adv +verb +det +noun +pron +conj +adj +verb +conj +adv +pron +noun +verb +det +noun +det +noun +adv +verb +conj +det +det +adj +verb +det +prep +det +noun +verb +det +det +noun +verb +det +noun +verb +adv +adv +det +noun +verb +det +det +noun +verb +prep +det +noun +verb +conj +pron +adv +verb +adj +pron +conj +adv +verb +pron +conj +adv +verb +prep +pron +conj +adj +pron +adv +verb +conj +det +noun +pron +adj +verb +conj +conj +verb +adv +verb +pron +noun +conj +noun +pron +verb +conj +ptcl +pron +verb +conj +adv +verb +conj +conj +adj +pron +verb +noun +verb +conj +conj +adj +noun +verb +conj +pron +verb +pron +det +noun +conj +verb +adj +verb +det +noun +prep +det +adv +verb +det +noun +pron +prep +det +noun +conj +adj +verb +prep +adj +adj +pron +verb +conj +det +adj +verb +conj +verb +det +adj +conj +adj +conj +adj +verb +det +prep +noun +conj +prep +noun +adv +verb +pron +prep +noun +conj +det +prep +noun +verb +det +adj +conj +adj +adv +verb +adj +noun +conj +adj +noun +conj +verb +det +adj +verb +det +adj +adj +conj +det +adj +verb +det +adj +verb +adj +conj +adv +pron +verb +conj +adj +verb +prep +det +noun +conj +noun +pron +verb +adv +verb +conj +det +prep +noun +verb +conj +adj +verb +conj +adj +verb +det +noun +adv +verb +conj +verb +conj +adj +det +verb +adj +verb +conj +conj +pron +conj +adj +noun +verb +conj +pron +adj +conj +pron +adv +verb +conj +adv +adv +adv +verb +conj +adv +noun +verb +conj +verb +pron +det +noun +conj +verb +conj +adv +adj +verb +pron +adj +verb +conj +noun +adv +verb +pron +verb +conj +det +noun +pron +adj +prep +det +noun +verb +conj +adj +prep +det +noun +verb +conj +adj +prep +det +noun +verb +prep +det +noun +conj +prep +det +noun +conj +adj +det +pron +adj +noun +verb +conj +adj +det +pron +adj +noun +verb +conj +verb +prep +adj +verb +noun +conj +det +noun +verb +det +noun +conj +adv +prep +det +adj +pron +verb +det +noun +conj +verb +prep +det +adj +conj +pron +noun +pron +verb +prep +det +adv +verb +pron +noun +adj +conj +pron +verb +conj +noun +verb +conj +pron +pron +conj +verb +verb +det +noun +verb +conj +verb +conj +verb +verb +conj +verb +conj +pron +pron +verb +conj +verb +adj +noun +adj +noun +conj +verb +det +noun +conj +pron +pron +verb +conj +prep +det +noun +verb +conj +verb +conj +pron +pron +verb +conj +verb +prep +det +noun +conj +pron +adv +verb +pron +conj +verb +prep +noun +pron +prep +pron +det +noun +det +noun +verb +conj +det +verb +verb +verb +conj +verb +noun +pron +adv +verb +conj +adv +adj +conj +adj +det +noun +pron +adv +verb +pron +verb +prep +pron +verb +conj +verb +prep +det +noun +adv +det +noun +det +verb +verb +conj +adj +pron +verb +prep +det +noun +conj +adj +verb +verb +pron +pron +verb +det +noun +det +noun +pron +verb +ptcl +verb +noun +det +noun +det +noun +det +noun +pron +verb +ptcl +noun +det +noun +det +noun +verb +conj +adj +noun +adj +noun +det +adj +verb +conj +det +adj +prep +det +adj +noun +verb +verb +det +noun +prep +noun +ptcl +det +verb +det +noun +noun +det +noun +verb +conj +pron +verb +conj +adj +pron +verb +conj +conj +noun +pron +verb +conj +conj +pron +verb +noun +conj +adv +noun +verb +conj +adv +verb +pron +noun +det +noun +verb +adv +verb +noun +noun +verb +conj +noun +noun +adv +verb +noun +noun +verb +conj +noun +noun +conj +verb +det +noun +ptcl +adj +pron +verb +adj +verb +conj +adv +adj +verb +adj +verb +conj +adv +adj +verb +adj +det +pron +verb +conj +det +det +adj +adj +det +prep +noun +verb +verb +adj +verb +prep +det +noun +conj +det +noun +det +noun +conj +det +noun +pron +conj +pron +det +adj +verb +pron +conj +verb +verb +adj +det +verb +pron +verb +adj +verb +prep +det +noun +conj +conj +pron +pron +verb +pron +adj +verb +adv +verb +prep +pron +det +verb +conj +det +noun +conj +verb +noun +adv +det +pron +conj +det +det +adj +conj +conj +pron +det +noun +pron +verb +prep +adj +noun +conj +pron +noun +verb +pron +verb +prep +pron +pron +verb +conj +conj +verb +conj +verb +conj +pron +verb +adj +prep +noun +noun +verb +adj +verb +conj +adj +conj +noun +conj +det +noun +det +noun +conj +pron +adj +adj +verb +verb +adv +det +pron +adj +conj +det +det +adj +conj +verb +noun +pron +verb +conj +pron +noun +conj +verb +pron +conj +adj +pron +verb +conj +conj +verb +pron +det +noun +verb +conj +verb +pron +verb +conj +adj +noun +det +noun +det +noun +verb +conj +noun +noun +det +noun +conj +noun +det +noun +det +noun +adj +noun +verb +conj +verb +prep +noun +verb +verb +det +noun +pron +conj +adj +noun +verb +conj +verb +adj +det +noun +verb +det +noun +pron +conj +verb +adj +conj +det +pron +det +verb +conj +conj +adv +verb +noun +adv +verb +conj +conj +adj +noun +det +verb +conj +verb +verb +conj +conj +noun +adv +verb +verb +det +noun +noun +conj +noun +noun +verb +conj +det +noun +noun +noun +verb +conj +adv +verb +noun +prep +noun +conj +noun +prep +noun +conj +adv +adv +verb +noun +prep +det +noun +conj +noun +prep +det +noun +prep +pron +verb +det +noun +noun +verb +prep +det +noun +prep +det +noun +conj +conj +noun +prep +noun +conj +noun +prep +noun +prep +noun +conj +conj +det +noun +prep +det +noun +adv +adv +det +noun +prep +det +noun +conj +det +adj +prep +det +noun +prep +pron +pron +verb +verb +verb +noun +adj +det +noun +verb +adv +det +noun +pron +verb +pron +conj +conj +conj +noun +verb +noun +pron +verb +conj +conj +noun +verb +noun +pron +verb +conj +det +noun +prep +noun +verb +pron +conj +conj +pron +verb +adj +verb +pron +pron +noun +adv +verb +conj +det +noun +det +noun +conj +pron +verb +adv +verb +conj +adv +prep +det +adj +conj +prep +det +adj +verb +conj +conj +adj +verb +pron +prep +noun +verb +noun +prep +pron +verb +conj +noun +pron +verb +conj +verb +adv +noun +prep +pron +verb +conj +adv +det +adj +adj +verb +prep +pron +conj +verb +pron +prep +det +pron +adv +verb +adj +noun +verb +conj +adj +det +adj +noun +verb +prep +det +verb +conj +conj +pron +verb +conj +pron +verb +conj +ptcl +noun +adv +verb +prep +det +verb +conj +verb +conj +det +noun +det +noun +verb +conj +verb +det +adv +verb +pron +verb +pron +verb +pron +prep +pron +adv +verb +conj +pron +verb +prep +det +noun +pron +adv +verb +pron +adv +det +noun +noun +prep +det +noun +pron +verb +verb +noun +conj +verb +verb +conj +verb +pron +verb +pron +det +noun +det +prep +pron +pron +verb +prep +det +adj +noun +adv +adv +det +noun +prep +det +verb +verb +pron +det +noun +det +adj +noun +verb +prep +det +adj +noun +pron +verb +conj +ptcl +verb +prep +det +adj +noun +conj +conj +ptcl +verb +det +noun +pron +conj +det +noun +verb +det +noun +det +noun +verb +prep +pron +verb +conj +ptcl +pron +verb +det +noun +conj +verb +det +noun +det +noun +adv +adj +verb +det +noun +conj +det +noun +det +noun +conj +verb +noun +pron +conj +adv +prep +det +noun +verb +conj +prep +det +noun +verb +conj +det +verb +conj +verb +noun +pron +verb +conj +verb +adv +verb +det +noun +prep +pron +prep +pron +adj +adj +conj +adj +conj +verb +adj +conj +conj +pron +verb +ptcl +adv +verb +conj +verb +prep +det +noun +verb +conj +adv +prep +det +noun +verb +conj +noun +pron +verb +prep +det +verb +pron +verb +conj +pron +verb +prep +noun +verb +conj +adv +prep +noun +verb +conj +det +adj +conj +ptcl +verb +verb +conj +noun +prep +det +adj +adv +verb +pron +verb +verb +conj +conj +noun +verb +prep +det +noun +det +adj +conj +ptcl +verb +verb +conj +verb +pron +conj +adj +prep +noun +noun +verb +verb +noun +noun +conj +adj +verb +verb +noun +noun +conj +adv +prep +noun +adj +conj +noun +noun +verb +conj +det +pron +noun +conj +noun +noun +verb +conj +det +pron +noun +conj +noun +noun +verb +conj +det +pron +noun +det +verb +det +adj +prep +adj +conj +adj +verb +det +noun +det +noun +prep +det +verb +conj +conj +pron +prep +det +noun +verb +noun +noun +conj +adj +noun +noun +prep +det +pron +noun +adj +noun +prep +det +pron +noun +conj +adj +noun +noun +prep +det +adj +noun +conj +adj +noun +noun +conj +adj +noun +conj +adj +noun +noun +adj +noun +noun +conj +adj +noun +noun +conj +adj +pron +verb +det +adj +conj +det +pron +noun +verb +adj +adj +conj +verb +conj +conj +det +noun +adj +verb +conj +noun +adj +verb +conj +adj +det +noun +det +noun +adj +verb +adj +noun +verb +adv +adv +det +noun +conj +adv +prep +adj +noun +pron +adj +prep +adj +noun +verb +conj +adj +conj +noun +conj +noun +conj +adj +conj +adj +adj +noun +verb +conj +adv +det +noun +verb +adv +adj +noun +conj +adj +conj +verb +det +noun +conj +adv +verb +noun +adv +verb +prep +det +noun +adv +prep +pron +adv +verb +prep +det +noun +conj +conj +verb +det +noun +conj +adv +verb +noun +adv +verb +prep +det +noun +adv +prep +pron +adv +verb +prep +det +noun +conj +adj +det +noun +noun +adv +det +noun +conj +adj +noun +adv +det +noun +conj +adv +det +noun +verb +det +noun +adj +adj +pron +prep +det +noun +conj +verb +conj +conj +verb +det +adj +adj +noun +adv +det +noun +conj +conj +adv +adj +noun +conj +adj +noun +conj +adv +verb +det +noun +verb +det +noun +noun +pron +adv +verb +conj +adv +det +noun +det +noun +noun +pron +adv +verb +conj +adj +adv +det +verb +adj +verb +noun +det +noun +adj +verb +conj +pron +verb +adj +det +noun +verb +pron +noun +adj +verb +conj +det +adj +pron +noun +adj +verb +conj +det +adj +pron +adv +noun +verb +conj +det +noun +verb +det +noun +det +verb +verb +adj +noun +conj +adv +verb +noun +prep +det +noun +conj +det +pron +prep +pron +verb +det +noun +conj +conj +verb +adj +noun +verb +adj +det +noun +conj +verb +noun +verb +adj +det +noun +conj +pron +verb +noun +noun +conj +noun +prep +noun +conj +ptcl +pron +verb +det +noun +prep +det +noun +adj +noun +adj +noun +adj +noun +adv +noun +adv +noun +noun +noun +noun +noun +noun +ptcl +adj +noun +ptcl +adj +noun +ptcl +adj +noun +ptcl +adj +noun +ptcl +adj +verb +noun +noun +ptcl +adj +noun +verb +ptcl +adj +verb +conj +verb +det +noun +det +adj +conj +adv +prep +noun +noun +pron +verb +conj +det +noun +det +noun +conj +det +noun +verb +conj +noun +adv +verb +verb +noun +verb +conj +noun +verb +conj +conj +verb +noun +conj +verb +det +noun +adj +conj +adj +det +noun +conj +conj +verb +adj +det +noun +conj +noun +verb +conj +noun +adv +verb +adj +verb +conj +conj +verb +adj +det +verb +pron +conj +conj +verb +det +noun +pron +conj +verb +conj +noun +adv +verb +adj +verb +det +noun +verb +verb +det +noun +adv +verb +det +noun +adv +verb +adv +verb +adv +verb +adv +verb +det +pron +adv +verb +adv +verb +det +adj +adv +verb +prep +det +noun +conj +verb +det +noun +adj +verb +adj +verb +adj +verb +adj +verb +det +noun +adv +verb +conj +conj +noun +verb +conj +noun +verb +conj +noun +verb +conj +prep +noun +verb +conj +prep +noun +verb +conj +conj +verb +det +adj +det +prep +noun +verb +conj +verb +adj +verb +conj +adj +verb +conj +adj +verb +conj +adj +conj +verb +noun +verb +det +det +adj +conj +verb +adv +prep +noun +prep +noun +conj +adv +noun +prep +noun +adv +verb +prep +noun +conj +adv +verb +conj +adv +verb +conj +adv +verb +noun +noun +noun +det +adj +pron +conj +adj +pron +det +noun +verb +det +noun +conj +verb +det +adj +conj +conj +adv +verb +conj +det +verb +noun +adv +noun +verb +conj +noun +conj +adj +verb +conj +noun +verb +noun +conj +det +verb +noun +verb +noun +conj +noun +conj +noun +det +verb +noun +pron +verb +conj +det +verb +noun +verb +conj +verb +adj +pron +verb +noun +conj +conj +adv +verb +conj +adj +det +verb +conj +det +verb +noun +conj +adv +adv +verb +conj +det +noun +noun +verb +conj +noun +conj +adv +verb +prep +pron +noun +verb +pron +pron +verb +conj +adv +pron +verb +conj +prep +noun +conj +prep +noun +conj +prep +noun +conj +noun +adv +det +adj +noun +verb +conj +noun +conj +noun +conj +noun +det +noun +adv +verb +adv +verb +det +verb +conj +det +verb +conj +conj +adv +noun +adj +noun +verb +pron +verb +prep +noun +adv +conj +adv +pron +prep +det +noun +adv +adj +noun +verb +adv +verb +det +verb +conj +prep +noun +verb +verb +conj +verb +pron +noun +noun +verb +prep +noun +conj +adj +adj +conj +conj +adv +verb +det +noun +det +noun +verb +det +verb +adj +conj +det +verb +prep +pron +adj +adv +adv +pron +conj +noun +noun +verb +prep +det +noun +det +noun +verb +conj +verb +conj +det +verb +noun +verb +conj +verb +conj +conj +verb +noun +det +noun +pron +verb +conj +det +noun +pron +adj +verb +conj +pron +verb +verb +det +noun +conj +verb +adv +det +noun +verb +det +noun +conj +verb +adv +det +noun +conj +conj +verb +noun +det +verb +det +noun +det +noun +adv +verb +det +ptcl +prep +det +adj +noun +conj +pron +verb +adv +verb +conj +conj +pron +adv +verb +conj +det +adj +adv +verb +verb +det +noun +adj +pron +adv +noun +verb +conj +prep +noun +verb +num +noun +det +noun +pron +verb +conj +adv +adj +verb +conj +adj +noun +prep +noun +noun +adv +noun +verb +det +noun +conj +det +noun +verb +conj +det +noun +adj +verb +prep +det +noun +verb +conj +prep +adj +conj +prep +noun +adj +verb +det +noun +pron +conj +adv +adv +verb +pron +verb +noun +conj +det +noun +prep +noun +verb +adv +det +verb +conj +det +adj +conj +det +noun +adv +det +adj +conj +det +verb +conj +conj +verb +det +noun +adj +prep +det +pron +conj +adj +verb +noun +conj +verb +noun +conj +adj +ptcl +verb +conj +verb +conj +conj +adj +verb +conj +verb +pron +adj +conj +noun +verb +prep +adj +verb +prep +adj +det +adj +det +noun +pron +adj +verb +conj +adv +verb +prep +noun +verb +det +noun +verb +conj +adv +det +noun +prep +pron +verb +conj +pron +verb +noun +conj +verb +adj +noun +verb +noun +verb +noun +verb +noun +verb +noun +verb +adj +prep +noun +verb +conj +noun +pron +verb +prep +num +conj +det +adj +adj +conj +prep +noun +conj +adj +verb +conj +conj +adv +verb +noun +verb +prep +noun +conj +verb +pron +conj +det +noun +conj +noun +num +conj +adj +verb +conj +det +adj +verb +conj +conj +adj +verb +verb +det +adj +verb +conj +verb +prep +adj +adj +verb +conj +adj +verb +conj +adj +verb +conj +noun +noun +noun +verb +conj +adv +verb +noun +det +noun +conj +noun +conj +prep +adj +det +noun +det +adj +det +noun +prep +det +noun +verb +conj +adv +verb +pron +verb +conj +verb +conj +adv +det +noun +verb +conj +conj +pron +verb +verb +prep +noun +det +adj +noun +verb +conj +adj +verb +noun +verb +prep +noun +conj +prep +pron +det +noun +det +noun +verb +conj +prep +pron +adj +verb +conj +pron +verb +verb +noun +conj +adj +verb +pron +verb +pron +conj +noun +noun +verb +conj +conj +pron +verb +verb +conj +noun +pron +verb +det +verb +conj +det +verb +noun +adv +verb +conj +adj +adv +conj +prep +noun +verb +conj +noun +verb +pron +det +noun +pron +verb +pron +pron +adv +verb +prep +pron +adv +verb +prep +pron +adv +verb +pron +noun +verb +pron +conj +verb +adv +conj +adv +adv +verb +conj +verb +pron +prep +adj +pron +adv +verb +adv +noun +verb +prep +det +noun +pron +prep +det +noun +conj +adv +verb +conj +adv +verb +det +noun +det +adj +prep +det +noun +conj +adv +verb +noun +adv +det +num +adv +verb +adv +adj +noun +adv +prep +pron +det +adj +verb +prep +adv +conj +pron +verb +adv +verb +noun +adv +det +noun +adj +conj +adj +adj +verb +pron +conj +det +noun +conj +pron +verb +det +adj +det +noun +pron +adv +verb +adj +verb +noun +conj +verb +det +noun +det +noun +conj +noun +noun +verb +pron +verb +conj +det +noun +pron +det +prep +pron +adv +adj +verb +conj +adj +pron +adj +verb +conj +adv +pron +conj +det +noun +det +noun +prep +pron +conj +conj +pron +conj +pron +adv +verb +conj +adv +verb +conj +conj +noun +verb +conj +prep +adj +verb +adv +verb +prep +pron +pron +conj +noun +adj +adv +verb +conj +conj +noun +adj +adv +verb +adv +noun +verb +conj +conj +noun +adv +verb +conj +adj +det +noun +pron +adj +adv +det +noun +pron +conj +verb +adv +noun +det +noun +conj +verb +prep +det +noun +conj +verb +det +noun +pron +adv +verb +conj +conj +adj +adv +verb +conj +conj +adj +adv +verb +adv +noun +verb +conj +conj +noun +adv +verb +adj +det +noun +pron +adv +verb +prep +det +noun +pron +conj +adv +det +verb +prep +noun +verb +conj +prep +det +noun +pron +prep +noun +verb +verb +adj +adj +adj +noun +verb +conj +adv +verb +prep +adj +noun +noun +det +verb +conj +conj +prep +noun +noun +adv +prep +noun +noun +adj +conj +conj +prep +det +noun +adj +verb +adv +adv +prep +det +noun +adj +verb +conj +adj +prep +det +adj +noun +noun +noun +adv +det +det +noun +prep +det +noun +pron +adv +det +noun +adv +verb +det +noun +det +noun +adv +noun +adv +verb +adj +noun +conj +adj +noun +conj +noun +conj +verb +pron +verb +prep +pron +verb +adj +det +adj +prep +det +noun +pron +adj +adj +det +noun +verb +conj +adj +verb +prep +det +noun +pron +conj +conj +verb +conj +adj +verb +adj +conj +prep +det +verb +pron +det +adj +conj +conj +verb +pron +det +adj +adv +adv +pron +det +noun +verb +det +verb +pron +det +adj +conj +verb +det +noun +adj +prep +adj +conj +pron +verb +det +verb +prep +det +adj +conj +adv +adj +adv +verb +pron +adv +verb +prep +pron +pron +adv +pron +verb +adj +noun +noun +prep +noun +verb +ptcl +det +adj +noun +pron +verb +prep +noun +noun +det +noun +pron +conj +prep +noun +verb +prep +noun +pron +pron +det +noun +conj +adj +adv +verb +verb +conj +verb +conj +adv +verb +adv +verb +verb +noun +adj +noun +adj +verb +adv +conj +adv +verb +conj +noun +noun +pron +verb +prep +noun +pron +verb +conj +verb +pron +adv +verb +det +adj +conj +pron +noun +verb +adj +pron +pron +verb +adv +verb +conj +adv +verb +conj +pron +verb +adv +det +noun +det +verb +verb +conj +adj +noun +conj +verb +noun +conj +pron +det +adj +conj +det +noun +verb +pron +noun +conj +verb +conj +adj +det +noun +adj +noun +adv +adj +noun +det +pron +noun +conj +conj +adj +noun +conj +adj +noun +noun +conj +adj +noun +adj +conj +adj +noun +conj +noun +adj +conj +noun +adj +conj +conj +adj +det +det +adj +noun +conj +adj +det +det +adj +adj +noun +noun +conj +adj +noun +noun +conj +adj +noun +noun +conj +noun +noun +verb +prep +noun +adv +adv +det +noun +det +adj +verb +prep +noun +verb +prep +noun +verb +prep +noun +verb +prep +noun +verb +prep +noun +verb +prep +noun +verb +noun +adj +verb +noun +adj +conj +verb +noun +adj +verb +adv +adj +adv +adv +verb +verb +det +adj +noun +noun +prep +noun +verb +det +adj +noun +prep +noun +verb +conj +adv +adj +det +adj +conj +det +adj +adv +det +adj +det +adj +noun +prep +noun +adj +det +adj +noun +prep +noun +pron +det +adj +pron +adv +det +adj +conj +pron +det +adj +pron +adv +det +adj +conj +conj +verb +det +noun +det +adj +verb +adv +det +noun +det +adj +conj +pron +verb +noun +adv +noun +conj +noun +noun +noun +verb +adv +verb +conj +det +noun +det +noun +verb +verb +noun +pron +verb +adj +adv +verb +conj +adj +verb +prep +adj +prep +noun +noun +prep +det +adj +noun +conj +verb +conj +det +adj +verb +adj +conj +pron +verb +conj +verb +det +adj +pron +verb +noun +conj +det +adj +pron +verb +noun +conj +conj +det +adj +pron +verb +noun +conj +det +adj +pron +verb +noun +adv +verb +det +noun +det +verb +verb +det +noun +prep +noun +noun +adv +pron +det +noun +noun +adv +pron +det +noun +conj +det +noun +det +noun +det +noun +conj +det +noun +det +noun +det +noun +conj +noun +det +noun +det +verb +pron +det +noun +prep +det +noun +pron +noun +noun +conj +noun +pron +adj +verb +adj +adj +verb +prep +det +noun +det +noun +adv +verb +conj +det +noun +pron +adv +verb +adj +prep +noun +conj +prep +det +noun +det +prep +det +adj +conj +verb +det +noun +det +noun +adv +adv +pron +verb +prep +adj +noun +adj +pron +prep +pron +verb +verb +pron +ptcl +pron +verb +conj +adv +conj +verb +adv +noun +verb +conj +conj +verb +ptcl +pron +verb +prep +noun +pron +verb +verb +det +noun +pron +prep +noun +conj +conj +adj +verb +det +pron +verb +prep +pron +verb +conj +verb +prep +pron +conj +noun +verb +conj +noun +verb +conj +prep +pron +verb +verb +conj +adv +verb +conj +pron +pron +verb +ptcl +conj +verb +conj +adv +verb +pron +adv +prep +noun +verb +conj +verb +noun +pron +verb +prep +pron +conj +det +noun +verb +conj +verb +prep +noun +prep +det +noun +conj +pron +verb +noun +adj +conj +adj +conj +verb +adj +conj +conj +verb +noun +verb +conj +adv +verb +prep +pron +conj +det +noun +noun +verb +conj +pron +conj +adv +pron +pron +verb +conj +verb +pron +prep +noun +conj +verb +prep +pron +conj +verb +pron +prep +det +noun +conj +prep +noun +det +noun +adj +verb +pron +conj +verb +prep +pron +prep +det +noun +conj +adv +adv +verb +noun +conj +adv +verb +conj +verb +conj +verb +verb +verb +prep +det +noun +verb +verb +adj +pron +prep +noun +verb +conj +verb +pron +noun +verb +det +noun +noun +conj +verb +noun +det +noun +conj +prep +noun +det +adj +verb +pron +conj +adv +pron +verb +det +pron +conj +adj +det +verb +conj +verb +conj +verb +prep +det +noun +noun +conj +noun +conj +noun +conj +det +adj +noun +pron +verb +conj +verb +det +adj +noun +conj +det +pron +conj +verb +det +pron +verb +pron +det +noun +det +noun +verb +pron +prep +noun +adj +noun +conj +noun +prep +det +prep +noun +pron +noun +verb +pron +det +noun +adj +verb +pron +prep +noun +adj +det +noun +det +adj +noun +noun +conj +pron +adv +verb +det +noun +verb +noun +noun +verb +det +noun +det +noun +noun +prep +pron +det +noun +pron +prep +adj +pron +prep +noun +noun +noun +noun +noun +noun +prep +noun +noun +conj +noun +det +noun +det +noun +det +noun +det +verb +prep +noun +prep +det +adj +adj +det +verb +prep +adj +det +noun +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +adj +det +noun +conj +noun +det +noun +pron +noun +noun +det +noun +det +noun +conj +noun +adj +noun +det +verb +pron +prep +adj +det +noun +pron +prep +det +verb +pron +verb +det +prep +adj +noun +prep +det +noun +pron +verb +pron +prep +det +noun +conj +conj +verb +det +noun +det +noun +prep +pron +adv +prep +det +noun +verb +adv +det +noun +pron +conj +conj +verb +prep +det +pron +noun +conj +noun +conj +verb +prep +det +pron +noun +det +verb +prep +noun +det +pron +noun +pron +adv +pron +verb +conj +det +noun +pron +adj +prep +pron +verb +conj +conj +verb +noun +det +noun +adv +adv +det +noun +conj +noun +adv +verb +pron +verb +prep +det +noun +pron +det +verb +prep +det +noun +conj +prep +noun +prep +noun +verb +conj +verb +pron +adv +det +verb +conj +pron +prep +pron +det +noun +det +noun +verb +conj +adv +verb +verb +prep +pron +conj +prep +det +noun +det +verb +det +adj +pron +prep +pron +noun +verb +pron +conj +verb +prep +pron +verb +conj +adv +adv +verb +verb +adv +pron +prep +pron +det +noun +conj +prep +adj +noun +det +prep +pron +noun +prep +adj +verb +prep +pron +conj +det +noun +pron +pron +verb +det +noun +det +noun +pron +conj +prep +noun +conj +noun +det +noun +adv +prep +noun +adj +conj +prep +noun +noun +verb +prep +det +noun +conj +adv +prep +pron +conj +verb +pron +adv +adj +conj +conj +pron +verb +conj +adv +verb +conj +verb +conj +prep +noun +verb +conj +adv +verb +pron +prep +noun +conj +noun +pron +verb +conj +adv +pron +pron +prep +det +noun +det +noun +pron +noun +conj +pron +det +noun +verb +adj +prep +pron +verb +conj +adj +noun +verb +conj +prep +pron +verb +prep +noun +conj +adv +prep +noun +verb +prep +pron +conj +prep +pron +verb +prep +det +noun +conj +pron +verb +conj +ptcl +det +noun +verb +conj +pron +verb +prep +noun +verb +conj +verb +prep +pron +det +ptcl +ptcl +conj +det +ptcl +ptcl +conj +adj +det +noun +conj +det +noun +pron +det +prep +pron +adv +verb +ptcl +conj +ptcl +conj +det +det +noun +noun +noun +noun +det +prep +pron +prep +pron +verb +prep +pron +conj +noun +conj +noun +adv +verb +ptcl +conj +ptcl +conj +ptcl +prep +pron +verb +conj +pron +noun +noun +prep +pron +det +ptcl +conj +adv +prep +pron +det +ptcl +det +noun +prep +noun +prep +pron +conj +det +verb +pron +prep +pron +prep +noun +conj +verb +pron +noun +det +conj +verb +pron +conj +verb +det +noun +det +noun +prep +det +noun +pron +conj +pron +noun +det +noun +verb +prep +det +adj +noun +conj +verb +pron +adv +verb +prep +noun +conj +adv +verb +pron +det +noun +conj +adj +verb +det +noun +pron +conj +det +noun +verb +conj +verb +pron +pron +det +adv +adv +prep +noun +prep +pron +verb +conj +conj +pron +verb +pron +adv +pron +det +verb +pron +conj +adv +det +verb +prep +pron +conj +verb +pron +pron +conj +adv +verb +noun +verb +prep +pron +pron +verb +verb +verb +prep +adj +pron +conj +det +adj +noun +adj +pron +verb +conj +prep +adj +noun +conj +noun +noun +verb +pron +prep +adj +noun +adv +conj +verb +conj +conj +verb +det +noun +pron +verb +adv +prep +pron +conj +conj +pron +verb +adv +pron +verb +conj +prep +noun +adj +pron +conj +adv +verb +adj +det +pron +det +noun +pron +det +prep +det +adj +conj +adv +adv +pron +verb +conj +verb +conj +adv +det +adj +noun +verb +det +pron +conj +verb +pron +verb +prep +pron +noun +conj +prep +pron +adv +verb +conj +verb +det +noun +pron +conj +prep +adj +adj +verb +conj +pron +pron +verb +pron +conj +adv +pron +pron +verb +conj +pron +verb +prep +pron +prep +noun +noun +conj +adv +verb +prep +det +noun +conj +adv +pron +det +noun +verb +conj +verb +prep +det +noun +prep +det +noun +det +noun +conj +noun +pron +verb +prep +noun +adv +verb +noun +det +noun +pron +det +adv +verb +pron +noun +det +noun +pron +conj +verb +pron +verb +prep +noun +conj +noun +det +noun +det +adv +verb +pron +prep +det +noun +conj +det +noun +det +noun +pron +verb +prep +pron +prep +adj +noun +conj +noun +noun +verb +det +noun +prep +det +verb +conj +prep +det +verb +conj +pron +noun +prep +noun +prep +noun +conj +pron +noun +prep +noun +prep +noun +conj +prep +pron +pron +adj +conj +adv +verb +verb +det +noun +det +noun +conj +det +adj +conj +conj +prep +noun +conj +conj +prep +noun +prep +noun +prep +noun +verb +verb +adv +pron +verb +conj +ptcl +verb +conj +pron +adj +noun +prep +pron +conj +prep +pron +det +noun +pron +pron +verb +verb +prep +det +noun +pron +verb +conj +verb +prep +adj +noun +verb +conj +verb +noun +noun +verb +prep +pron +verb +adv +adj +conj +noun +noun +verb +adv +prep +noun +adj +conj +prep +noun +noun +adj +conj +noun +pron +verb +prep +det +noun +prep +det +noun +adv +conj +prep +pron +adj +verb +verb +pron +conj +prep +pron +conj +det +noun +pron +prep +det +noun +pron +adv +verb +pron +noun +adj +noun +adv +noun +conj +noun +conj +det +noun +verb +conj +det +noun +verb +conj +conj +det +noun +det +noun +prep +noun +verb +noun +verb +prep +noun +conj +adv +verb +det +noun +noun +verb +prep +det +noun +noun +prep +det +noun +det +noun +pron +det +verb +adv +adv +adv +det +noun +det +noun +verb +prep +noun +conj +conj +det +noun +det +noun +noun +adj +adv +verb +det +noun +det +noun +noun +conj +adv +adv +verb +det +verb +prep +pron +det +noun +prep +det +verb +noun +conj +conj +det +verb +prep +noun +adj +adv +det +verb +prep +noun +conj +verb +pron +noun +adj +noun +verb +conj +adv +conj +noun +verb +noun +prep +det +noun +pron +prep +det +adv +verb +det +noun +noun +prep +det +noun +det +verb +conj +verb +det +noun +pron +conj +prep +det +adv +noun +det +pron +noun +prep +det +noun +det +adj +noun +verb +adv +verb +conj +prep +noun +verb +conj +prep +adv +ptcl +conj +verb +noun +noun +prep +det +noun +pron +verb +conj +conj +ptcl +verb +prep +noun +verb +det +noun +conj +det +noun +det +noun +verb +conj +conj +det +noun +noun +noun +conj +pron +adj +verb +noun +det +noun +noun +verb +det +pron +noun +verb +prep +noun +prep +noun +conj +prep +noun +noun +prep +pron +verb +det +noun +pron +conj +verb +adv +verb +conj +verb +det +adj +det +noun +adv +verb +prep +noun +conj +verb +det +noun +det +noun +conj +det +noun +det +noun +verb +pron +prep +adj +noun +noun +prep +det +noun +conj +conj +adv +verb +verb +det +noun +pron +prep +det +verb +verb +verb +prep +pron +det +noun +det +noun +pron +verb +det +noun +det +adj +prep +det +adv +verb +det +noun +det +noun +det +noun +det +noun +pron +verb +noun +det +noun +conj +adv +pron +verb +conj +noun +noun +noun +conj +pron +noun +pron +prep +noun +conj +det +noun +det +verb +prep +noun +noun +verb +pron +verb +prep +det +noun +pron +prep +noun +det +noun +det +noun +det +noun +prep +noun +noun +conj +verb +det +noun +pron +prep +adj +noun +conj +det +noun +det +noun +verb +det +noun +conj +adv +prep +pron +prep +adj +verb +conj +adv +verb +verb +conj +adv +verb +verb +conj +adv +verb +verb +conj +adv +verb +adv +det +noun +det +noun +prep +det +noun +verb +conj +adv +det +noun +det +noun +prep +det +noun +pron +verb +conj +adv +pron +det +verb +prep +noun +verb +prep +noun +conj +adv +det +noun +det +noun +verb +prep +det +adj +noun +pron +conj +det +noun +prep +pron +verb +conj +det +noun +prep +pron +conj +verb +det +pron +noun +det +noun +prep +det +verb +verb +conj +verb +adv +pron +verb +conj +adv +verb +verb +conj +det +verb +det +noun +noun +adv +pron +prep +noun +verb +conj +verb +prep +pron +conj +det +adj +prep +pron +conj +det +noun +verb +prep +det +adj +det +noun +verb +prep +det +noun +det +noun +conj +adv +verb +conj +conj +adv +det +adv +pron +noun +verb +conj +det +adv +pron +verb +noun +conj +noun +conj +det +adv +adj +det +noun +prep +noun +prep +noun +adj +noun +noun +verb +pron +adv +verb +pron +det +verb +conj +det +adv +verb +conj +det +verb +adj +conj +det +adv +verb +adj +conj +verb +conj +conj +det +adj +pron +noun +det +noun +verb +prep +noun +verb +noun +noun +adj +adj +prep +det +noun +conj +adv +prep +pron +verb +det +noun +pron +det +prep +noun +verb +verb +conj +ptcl +adv +verb +adv +adj +verb +conj +adv +det +verb +prep +det +noun +verb +verb +prep +pron +verb +adv +verb +conj +verb +conj +verb +det +adj +prep +det +noun +conj +det +verb +pron +prep +pron +pron +noun +det +verb +pron +det +noun +det +noun +conj +verb +adv +conj +verb +conj +verb +prep +det +noun +verb +prep +det +noun +conj +prep +noun +verb +adv +prep +noun +conj +verb +conj +verb +adv +verb +prep +det +noun +conj +verb +prep +det +noun +conj +adv +verb +conj +verb +conj +verb +adj +pron +verb +conj +det +adj +pron +verb +prep +det +noun +det +noun +verb +conj +verb +adj +det +prep +det +noun +prep +pron +verb +conj +adj +conj +adj +conj +verb +det +noun +det +noun +noun +verb +conj +noun +verb +conj +verb +adv +prep +det +noun +pron +verb +adv +adv +pron +verb +pron +conj +noun +noun +verb +pron +prep +pron +conj +verb +prep +det +prep +noun +verb +conj +adv +prep +noun +conj +conj +verb +noun +conj +verb +pron +conj +det +noun +det +noun +verb +pron +verb +pron +adv +adj +prep +adj +verb +conj +det +adj +verb +conj +prep +adj +verb +conj +det +verb +verb +adv +pron +conj +det +prep +pron +verb +conj +verb +conj +pron +prep +det +adv +adj +verb +prep +noun +conj +adv +verb +prep +noun +noun +conj +adv +adv +verb +conj +conj +pron +prep +noun +adj +noun +det +adj +verb +verb +verb +adj +conj +det +adj +prep +det +noun +det +verb +pron +pron +prep +noun +conj +verb +pron +det +noun +det +noun +adv +conj +noun +verb +verb +prep +noun +noun +pron +adv +verb +pron +det +noun +pron +conj +verb +prep +pron +det +noun +det +noun +conj +prep +noun +verb +conj +det +noun +verb +prep +pron +verb +prep +noun +verb +det +noun +det +adv +verb +noun +prep +pron +noun +verb +conj +pron +verb +noun +noun +prep +pron +conj +verb +adv +verb +adv +prep +adj +det +noun +det +noun +verb +pron +conj +verb +noun +adj +verb +pron +conj +prep +noun +noun +verb +pron +verb +adv +noun +adj +verb +adv +noun +noun +adj +noun +prep +adj +verb +conj +adv +verb +det +noun +conj +prep +adj +verb +pron +conj +noun +noun +prep +noun +adj +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +adj +prep +noun +adj +prep +noun +noun +prep +noun +noun +prep +det +noun +det +noun +det +adj +conj +adj +prep +noun +conj +noun +prep +noun +conj +noun +conj +adj +conj +adj +conj +verb +conj +verb +conj +verb +conj +verb +verb +conj +verb +conj +adv +verb +conj +verb +conj +adv +verb +conj +adj +conj +adj +verb +conj +adj +verb +conj +adj +verb +adj +det +noun +pron +verb +prep +pron +det +noun +pron +verb +adv +verb +prep +pron +conj +verb +prep +det +noun +pron +conj +det +pron +noun +conj +noun +verb +verb +adv +pron +adv +verb +verb +adj +conj +pron +noun +noun +conj +noun +conj +pron +noun +noun +prep +noun +conj +pron +noun +noun +prep +noun +conj +pron +noun +adj +prep +adj +conj +pron +noun +noun +noun +prep +noun +conj +pron +noun +noun +verb +verb +conj +verb +det +noun +conj +verb +prep +pron +conj +verb +conj +verb +pron +noun +conj +pron +verb +pron +noun +conj +verb +prep +adj +pron +conj +verb +conj +adj +adv +verb +verb +noun +pron +verb +pron +conj +verb +pron +prep +noun +conj +pron +verb +pron +prep +noun +conj +noun +verb +noun +noun +conj +adj +verb +pron +det +noun +verb +pron +prep +adj +noun +noun +conj +noun +verb +noun +prep +noun +noun +verb +pron +adj +verb +adj +verb +adj +verb +prep +noun +adv +verb +conj +verb +conj +prep +det +noun +pron +verb +prep +det +verb +conj +verb +adj +pron +noun +prep +pron +adj +pron +noun +prep +pron +verb +det +noun +verb +det +noun +prep +adj +det +noun +pron +conj +adv +verb +pron +prep +noun +adj +verb +noun +det +noun +pron +conj +prep +adj +verb +adv +noun +adv +noun +conj +det +verb +det +adj +det +noun +verb +pron +prep +det +noun +noun +conj +adv +adj +prep +det +noun +pron +conj +adv +prep +det +noun +pron +verb +prep +pron +verb +pron +det +pron +noun +det +pron +noun +det +pron +noun +prep +pron +conj +pron +adv +verb +conj +conj +adv +verb +pron +prep +det +noun +adv +verb +conj +adv +verb +verb +conj +det +noun +pron +conj +adv +prep +noun +verb +pron +adv +verb +adv +conj +verb +conj +conj +verb +prep +noun +conj +verb +prep +noun +conj +prep +adj +verb +prep +pron +conj +det +prep +noun +noun +noun +prep +noun +adj +verb +conj +det +det +noun +noun +noun +verb +conj +verb +pron +pron +det +prep +noun +verb +verb +pron +pron +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +prep +adj +verb +pron +adj +verb +det +noun +conj +conj +adv +verb +pron +adv +prep +det +verb +conj +prep +det +verb +conj +prep +det +verb +det +noun +pron +det +prep +pron +prep +pron +prep +det +noun +prep +pron +verb +conj +prep +det +noun +pron +adv +adv +verb +prep +det +noun +noun +conj +verb +det +noun +pron +prep +adj +pron +conj +conj +pron +pron +prep +pron +verb +adv +verb +conj +conj +adj +prep +noun +verb +pron +adv +adv +det +noun +pron +prep +noun +noun +verb +conj +det +noun +pron +adv +prep +pron +verb +verb +det +adj +pron +noun +conj +prep +noun +conj +noun +verb +pron +verb +conj +prep +adj +verb +prep +pron +conj +noun +verb +pron +det +noun +det +noun +det +verb +prep +det +noun +det +noun +conj +prep +adj +noun +noun +det +noun +det +noun +pron +conj +det +prep +noun +noun +pron +verb +prep +det +noun +det +noun +pron +verb +conj +prep +noun +conj +prep +noun +adj +prep +adj +noun +verb +pron +det +noun +conj +det +noun +det +noun +det +prep +det +adj +conj +adv +conj +verb +conj +pron +verb +adj +det +noun +conj +pron +prep +noun +noun +prep +det +verb +pron +noun +conj +conj +verb +adv +adv +verb +prep +pron +adv +det +noun +pron +conj +conj +prep +adj +verb +noun +conj +noun +conj +noun +conj +adj +noun +conj +det +prep +pron +prep +pron +noun +conj +adv +prep +pron +det +noun +verb +adv +prep +noun +verb +conj +prep +det +adj +noun +adv +det +det +adj +noun +adj +verb +conj +verb +det +noun +det +noun +pron +noun +noun +adv +prep +pron +verb +adj +verb +conj +pron +det +pron +noun +verb +conj +noun +prep +pron +verb +conj +pron +pron +verb +pron +adv +adj +det +verb +conj +adv +det +verb +verb +prep +adv +conj +adv +adv +det +verb +verb +conj +conj +det +noun +det +verb +adv +adv +det +verb +prep +det +verb +conj +conj +det +noun +verb +conj +ptcl +verb +adj +adv +conj +adv +verb +conj +adv +conj +adj +noun +pron +noun +conj +prep +noun +prep +det +adv +noun +det +pron +noun +prep +det +pron +noun +conj +adv +det +pron +noun +verb +prep +det +pron +noun +conj +verb +noun +conj +verb +det +det +adj +adv +verb +conj +det +det +adj +adv +verb +conj +noun +det +noun +det +verb +det +pron +noun +prep +pron +prep +det +noun +noun +conj +conj +det +noun +verb +conj +adj +verb +adj +verb +prep +pron +conj +verb +prep +pron +det +noun +pron +det +noun +prep +det +noun +prep +adj +det +noun +conj +adv +adj +conj +adv +verb +prep +det +noun +noun +pron +prep +det +noun +pron +det +verb +prep +pron +prep +det +pron +det +noun +noun +conj +noun +pron +verb +pron +conj +pron +pron +verb +prep +det +noun +pron +det +verb +prep +pron +conj +verb +adj +adv +adj +prep +noun +conj +adv +prep +noun +conj +verb +pron +det +noun +pron +pron +verb +prep +adj +adv +adj +verb +conj +adv +adj +adj +noun +adj +det +prep +pron +conj +prep +noun +noun +adj +conj +prep +pron +adj +conj +noun +pron +noun +noun +noun +noun +conj +det +noun +det +noun +pron +conj +pron +noun +prep +pron +prep +pron +verb +prep +noun +det +noun +conj +conj +prep +det +noun +det +prep +det +adj +adj +pron +verb +det +verb +pron +conj +verb +det +noun +pron +pron +prep +pron +verb +noun +adv +noun +verb +prep +adv +conj +det +pron +noun +verb +det +adj +conj +verb +det +noun +conj +adv +det +noun +pron +det +prep +pron +verb +prep +det +noun +pron +conj +conj +verb +verb +verb +conj +adv +conj +verb +prep +pron +noun +conj +verb +pron +adj +verb +pron +conj +adv +verb +pron +prep +det +noun +pron +conj +adj +verb +verb +det +noun +conj +verb +prep +pron +conj +verb +det +verb +noun +pron +pron +adj +verb +adv +conj +noun +conj +adv +conj +noun +conj +pron +det +verb +adv +adv +adv +verb +conj +det +verb +prep +noun +prep +noun +adv +verb +adj +conj +verb +det +noun +adv +prep +noun +conj +prep +noun +conj +adj +noun +verb +det +noun +conj +verb +det +noun +adj +noun +verb +prep +pron +conj +prep +adj +adv +adj +noun +verb +verb +prep +adj +noun +adj +conj +verb +verb +verb +det +noun +det +noun +pron +verb +prep +det +noun +conj +det +verb +noun +det +verb +conj +noun +prep +noun +verb +conj +verb +det +noun +pron +conj +verb +det +noun +det +noun +pron +prep +adj +verb +prep +adj +noun +pron +verb +prep +pron +noun +det +noun +conj +det +noun +det +noun +pron +adv +adj +verb +verb +det +noun +det +adj +conj +adv +verb +prep +adj +noun +det +noun +prep +det +noun +det +noun +pron +verb +det +noun +prep +det +noun +det +noun +pron +prep +det +noun +det +noun +conj +noun +det +noun +prep +pron +conj +prep +adj +conj +pron +noun +prep +pron +verb +pron +prep +det +verb +noun +det +noun +prep +pron +noun +det +noun +prep +det +adj +pron +noun +conj +pron +pron +noun +verb +pron +prep +det +noun +conj +noun +det +noun +pron +conj +prep +noun +adj +prep +pron +conj +verb +verb +prep +pron +conj +verb +det +adv +verb +verb +det +noun +pron +verb +verb +prep +pron +det +verb +pron +conj +prep +noun +verb +conj +prep +noun +verb +adv +prep +noun +verb +conj +det +noun +det +noun +pron +adv +adj +conj +adj +det +noun +prep +noun +noun +verb +noun +conj +adj +noun +verb +prep +det +noun +det +noun +conj +verb +adj +noun +prep +det +noun +det +noun +conj +prep +adj +verb +verb +adj +noun +conj +verb +pron +det +noun +det +prep +noun +verb +conj +pron +verb +pron +noun +verb +pron +verb +adv +prep +pron +adv +conj +pron +noun +adv +adv +pron +conj +conj +conj +adj +pron +verb +prep +det +noun +pron +pron +verb +det +noun +prep +noun +conj +adv +prep +noun +pron +adv +verb +conj +adv +verb +conj +ptcl +verb +pron +prep +det +noun +conj +verb +conj +det +noun +adj +conj +adj +conj +det +noun +det +noun +adj +conj +det +noun +verb +pron +verb +det +pron +adv +pron +verb +det +noun +prep +noun +verb +pron +adv +verb +det +noun +conj +adv +verb +verb +conj +verb +pron +pron +det +pron +verb +conj +pron +prep +pron +pron +verb +conj +verb +pron +pron +adv +verb +conj +pron +adv +prep +det +adj +verb +conj +prep +det +noun +det +noun +pron +verb +pron +det +noun +noun +verb +prep +adv +pron +conj +adv +conj +adv +verb +prep +pron +verb +pron +conj +prep +adv +pron +verb +prep +det +noun +det +noun +adv +prep +det +adj +verb +prep +adj +noun +conj +noun +verb +verb +det +noun +pron +prep +pron +verb +prep +det +noun +pron +prep +noun +prep +det +prep +pron +verb +adv +prep +adj +noun +prep +det +adj +verb +conj +det +verb +prep +noun +verb +conj +adv +det +pron +verb +pron +verb +adj +conj +pron +det +noun +verb +verb +verb +pron +adj +pron +noun +conj +adv +verb +pron +conj +verb +pron +noun +noun +conj +verb +pron +adj +noun +noun +adj +verb +det +noun +conj +verb +conj +adv +conj +det +noun +verb +noun +prep +det +noun +pron +verb +det +noun +pron +prep +det +noun +conj +det +noun +det +prep +noun +conj +conj +conj +det +verb +verb +adj +noun +pron +adv +verb +conj +verb +noun +adj +pron +adv +verb +conj +noun +adj +pron +adv +verb +adv +verb +conj +verb +adj +verb +det +adv +noun +conj +conj +adv +noun +det +noun +conj +adv +det +noun +conj +prep +adj +verb +prep +adj +prep +pron +conj +noun +verb +pron +verb +conj +pron +verb +conj +adv +det +det +noun +noun +verb +pron +adj +noun +verb +verb +noun +prep +det +pron +noun +conj +verb +prep +pron +conj +verb +adv +verb +adj +conj +det +noun +pron +verb +det +noun +verb +prep +noun +conj +prep +adj +adj +pron +pron +verb +conj +verb +verb +noun +noun +prep +pron +adv +det +noun +pron +adv +verb +prep +pron +prep +det +noun +det +noun +prep +pron +conj +adv +verb +pron +det +noun +verb +conj +pron +verb +adv +verb +conj +verb +det +noun +det +verb +noun +conj +prep +pron +verb +verb +conj +adv +pron +conj +det +pron +noun +noun +adj +verb +prep +noun +noun +conj +adv +noun +conj +pron +det +noun +verb +prep +noun +noun +conj +adv +adj +conj +adv +det +noun +pron +verb +conj +noun +noun +pron +det +noun +verb +prep +det +noun +pron +adv +verb +adv +pron +verb +pron +adj +verb +conj +conj +ptcl +adv +conj +adj +verb +pron +conj +pron +adj +pron +verb +pron +verb +adv +prep +noun +verb +conj +conj +prep +noun +prep +pron +det +noun +det +noun +conj +adj +verb +prep +det +noun +pron +verb +conj +adv +verb +det +adj +adj +verb +conj +verb +conj +pron +pron +verb +conj +pron +verb +conj +pron +verb +conj +pron +verb +conj +pron +prep +noun +pron +verb +prep +noun +verb +conj +conj +pron +verb +conj +ptcl +prep +pron +pron +verb +prep +noun +verb +verb +pron +adj +verb +pron +noun +verb +pron +noun +noun +verb +pron +noun +noun +verb +verb +verb +prep +pron +prep +noun +adv +prep +noun +adv +prep +noun +adv +prep +noun +adv +prep +adj +adv +num +prep +adj +verb +adv +verb +adv +verb +adv +verb +noun +prep +det +noun +verb +noun +adv +noun +noun +noun +noun +noun +prep +noun +noun +prep +noun +noun +prep +noun +noun +prep +noun +noun +prep +noun +noun +prep +noun +noun +conj +noun +prep +noun +adv +prep +noun +conj +noun +prep +noun +adv +prep +noun +conj +noun +prep +det +adv +det +noun +pron +det +prep +noun +det +noun +adj +det +noun +pron +verb +conj +adv +verb +pron +verb +conj +adv +pron +verb +conj +verb +verb +det +det +noun +pron +verb +det +noun +conj +noun +det +noun +noun +det +verb +adj +prep +det +noun +verb +conj +adv +verb +prep +noun +det +noun +noun +det +noun +verb +det +noun +adj +verb +pron +conj +prep +noun +prep +noun +verb +prep +det +noun +conj +verb +det +noun +pron +verb +verb +conj +adv +verb +conj +verb +prep +noun +conj +noun +noun +verb +noun +prep +noun +conj +prep +noun +adv +verb +conj +prep +det +noun +adv +verb +det +noun +verb +prep +noun +adj +verb +det +pron +prep +adj +noun +conj +verb +det +pron +noun +conj +prep +noun +conj +prep +det +noun +adv +verb +det +noun +verb +conj +verb +prep +det +noun +conj +verb +adj +noun +pron +verb +adv +verb +noun +prep +det +pron +verb +conj +prep +pron +adv +verb +conj +adv +prep +det +noun +conj +conj +verb +verb +adv +verb +adj +conj +noun +verb +conj +verb +conj +pron +prep +pron +verb +prep +pron +verb +pron +conj +verb +prep +pron +conj +det +noun +det +noun +conj +conj +adv +verb +verb +pron +noun +det +noun +noun +noun +conj +pron +verb +conj +adv +verb +prep +pron +adv +det +noun +verb +conj +verb +prep +pron +conj +verb +pron +verb +pron +det +noun +pron +conj +det +noun +prep +noun +verb +conj +adj +adv +verb +prep +det +noun +conj +verb +prep +pron +det +noun +det +noun +conj +verb +prep +noun +prep +noun +prep +noun +prep +noun +conj +noun +prep +noun +conj +conj +verb +adv +adj +verb +verb +adj +pron +pron +verb +conj +pron +verb +prep +pron +verb +conj +adj +verb +det +adv +noun +conj +adv +adj +verb +ptcl +det +noun +det +noun +verb +prep +pron +prep +adj +noun +conj +noun +conj +noun +conj +noun +conj +pron +verb +pron +verb +prep +det +adj +noun +conj +adv +conj +pron +pron +adv +verb +pron +verb +pron +det +noun +pron +verb +adj +pron +adv +verb +verb +prep +pron +conj +adv +verb +conj +adv +verb +det +pron +conj +pron +conj +adv +verb +det +noun +det +noun +verb +conj +det +noun +det +noun +conj +pron +adj +verb +conj +verb +prep +det +noun +pron +conj +adv +pron +verb +adj +verb +conj +verb +pron +adv +verb +pron +conj +verb +noun +noun +pron +verb +ptcl +pron +pron +verb +prep +pron +prep +pron +verb +pron +verb +noun +conj +verb +det +noun +ptcl +verb +pron +noun +ptcl +det +pron +noun +verb +ptcl +det +pron +noun +adv +verb +conj +pron +verb +prep +noun +prep +noun +verb +conj +adj +det +adj +prep +det +pron +noun +conj +verb +conj +adv +verb +adv +pron +verb +verb +pron +pron +verb +pron +pron +adv +verb +conj +adv +noun +noun +noun +noun +noun +noun +noun +noun +conj +adv +verb +pron +verb +pron +det +noun +pron +prep +pron +conj +verb +adj +det +verb +conj +adv +verb +prep +det +noun +conj +noun +conj +noun +pron +verb +adj +pron +verb +prep +pron +prep +noun +num +noun +conj +adj +verb +adj +noun +verb +conj +verb +conj +verb +det +adj +conj +verb +adv +det +verb +conj +det +adj +adj +conj +conj +verb +prep +det +adv +adv +verb +conj +verb +noun +det +prep +pron +verb +noun +pron +prep +pron +adv +verb +conj +verb +prep +pron +conj +adv +verb +prep +noun +conj +verb +prep +noun +noun +conj +adv +pron +verb +prep +pron +conj +verb +prep +pron +prep +noun +noun +prep +pron +pron +verb +ptcl +verb +prep +det +noun +pron +verb +conj +adv +verb +pron +conj +noun +noun +prep +pron +conj +ptcl +adj +verb +conj +verb +conj +verb +conj +pron +adv +verb +adj +conj +verb +prep +det +noun +adv +verb +pron +adj +adj +adv +conj +pron +adj +verb +conj +conj +pron +det +adj +verb +conj +pron +conj +adj +verb +conj +adv +verb +pron +prep +det +noun +conj +prep +det +noun +conj +verb +conj +pron +verb +conj +pron +adj +verb +adv +verb +pron +det +pron +noun +prep +pron +pron +verb +verb +conj +verb +adv +adv +verb +prep +det +noun +pron +det +noun +verb +pron +prep +noun +conj +adv +prep +noun +noun +adj +verb +verb +verb +det +pron +verb +verb +conj +det +noun +det +noun +conj +noun +verb +prep +pron +verb +pron +prep +adj +noun +verb +pron +det +adj +adj +det +noun +det +noun +noun +noun +conj +det +noun +det +noun +conj +det +noun +det +adj +noun +prep +adj +pron +noun +noun +adv +prep +noun +conj +prep +noun +conj +prep +noun +noun +conj +noun +noun +det +verb +pron +prep +adj +conj +det +prep +pron +adj +noun +det +noun +det +noun +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +det +verb +pron +prep +det +noun +pron +conj +verb +pron +prep +det +noun +det +verb +adj +prep +det +noun +det +noun +conj +noun +pron +pron +det +noun +prep +det +noun +det +noun +ptcl +verb +conj +adv +adv +verb +prep +det +verb +pron +prep +noun +noun +prep +adj +noun +pron +adv +verb +adj +conj +adv +pron +verb +det +verb +pron +conj +verb +verb +det +noun +det +noun +conj +adv +conj +pron +conj +noun +prep +noun +verb +pron +prep +pron +verb +pron +noun +verb +conj +verb +adv +adv +adv +verb +conj +pron +pron +verb +prep +pron +verb +noun +verb +conj +adv +verb +noun +conj +det +noun +conj +verb +noun +verb +conj +adv +noun +verb +ptcl +noun +noun +adv +verb +conj +noun +verb +pron +det +noun +det +verb +prep +pron +conj +adv +verb +prep +noun +conj +adv +pron +prep +noun +verb +pron +conj +verb +conj +prep +noun +noun +noun +conj +verb +det +adj +noun +adv +prep +det +noun +adv +prep +noun +verb +det +noun +det +noun +conj +verb +pron +conj +verb +prep +det +noun +prep +adj +noun +prep +det +noun +pron +adv +verb +noun +det +adj +pron +noun +conj +conj +verb +det +verb +pron +prep +noun +noun +pron +conj +verb +prep +det +noun +pron +verb +det +noun +pron +prep +pron +conj +verb +pron +prep +det +noun +adv +adv +verb +noun +conj +noun +conj +verb +prep +noun +prep +det +prep +pron +noun +conj +verb +prep +noun +conj +adv +verb +prep +noun +adv +prep +adj +noun +verb +prep +noun +verb +noun +conj +verb +prep +pron +noun +num +conj +adj +det +noun +adv +verb +conj +adv +noun +det +noun +det +noun +conj +pron +verb +pron +verb +prep +det +noun +conj +adv +verb +adv +verb +prep +det +noun +det +noun +conj +det +noun +conj +verb +verb +det +noun +det +noun +det +noun +det +prep +noun +conj +adj +verb +verb +conj +det +verb +pron +adv +adv +verb +det +noun +pron +adv +verb +conj +verb +prep +pron +det +noun +adv +prep +adj +noun +adv +verb +prep +noun +prep +noun +verb +adv +noun +conj +verb +prep +noun +conj +verb +pron +det +noun +pron +verb +prep +det +noun +conj +prep +adj +det +verb +conj +adv +prep +adj +verb +conj +verb +conj +adv +noun +det +prep +pron +noun +verb +verb +verb +conj +prep +det +adj +noun +pron +verb +verb +det +noun +pron +pron +verb +prep +noun +noun +conj +pron +verb +pron +adv +prep +noun +verb +det +noun +conj +det +noun +det +noun +verb +prep +pron +conj +prep +det +verb +verb +pron +adj +adv +verb +adj +pron +verb +noun +noun +det +noun +adv +verb +conj +pron +det +verb +adj +verb +conj +det +verb +conj +verb +det +noun +det +noun +conj +noun +det +noun +conj +det +verb +noun +prep +noun +det +noun +verb +adv +pron +prep +det +noun +conj +verb +det +noun +det +verb +pron +noun +conj +noun +conj +noun +det +verb +noun +verb +adj +noun +verb +pron +conj +noun +conj +pron +prep +det +noun +conj +pron +prep +det +noun +adj +conj +det +adj +verb +pron +adv +verb +pron +pron +verb +conj +conj +verb +noun +prep +noun +prep +noun +pron +verb +conj +verb +verb +conj +prep +det +verb +pron +prep +noun +prep +det +noun +verb +conj +conj +verb +verb +conj +verb +pron +verb +det +prep +noun +conj +verb +pron +adv +det +adj +adj +conj +adv +noun +verb +pron +det +noun +conj +conj +verb +conj +adv +verb +prep +det +noun +det +noun +verb +det +noun +prep +adj +conj +pron +adj +verb +adv +conj +adv +adv +verb +adv +verb +det +noun +verb +pron +noun +adj +conj +adv +prep +noun +adj +conj +verb +conj +adv +verb +noun +prep +noun +noun +conj +adv +prep +noun +noun +noun +adv +pron +prep +noun +noun +verb +conj +verb +prep +noun +noun +conj +adv +prep +noun +noun +conj +prep +noun +noun +adv +verb +adj +noun +conj +conj +verb +verb +prep +noun +verb +adv +pron +adj +conj +noun +noun +noun +adv +verb +conj +conj +pron +verb +pron +adv +verb +noun +pron +verb +conj +pron +prep +noun +noun +verb +conj +noun +verb +noun +verb +conj +verb +adv +pron +conj +verb +prep +pron +noun +conj +pron +adv +verb +prep +noun +verb +prep +noun +det +det +noun +det +noun +det +verb +pron +conj +verb +pron +prep +pron +adv +verb +det +noun +det +noun +conj +conj +prep +noun +noun +conj +noun +adv +verb +ptcl +adj +noun +pron +pron +verb +pron +prep +noun +noun +noun +verb +verb +verb +pron +adj +verb +prep +pron +det +noun +verb +prep +noun +noun +conj +prep +noun +noun +adv +adj +verb +verb +noun +adv +noun +verb +pron +verb +adv +conj +ptcl +adv +adv +conj +det +verb +pron +det +noun +conj +verb +noun +prep +pron +prep +noun +noun +conj +prep +noun +noun +conj +noun +verb +det +noun +conj +verb +pron +prep +noun +conj +verb +conj +det +prep +noun +pron +noun +noun +verb +conj +det +noun +verb +conj +prep +noun +verb +det +noun +det +noun +verb +det +noun +conj +verb +prep +pron +adj +det +noun +conj +det +prep +noun +verb +prep +det +adj +noun +conj +pron +prep +noun +noun +verb +prep +noun +verb +conj +verb +conj +adj +adj +pron +adv +verb +adj +det +verb +prep +det +noun +det +noun +det +verb +pron +conj +conj +prep +noun +adj +verb +prep +det +noun +adj +conj +det +adj +prep +noun +verb +conj +det +noun +adv +verb +prep +noun +conj +det +verb +pron +verb +prep +pron +noun +pron +verb +prep +det +noun +det +noun +verb +prep +pron +noun +conj +verb +adj +adj +det +verb +prep +noun +conj +prep +det +noun +det +noun +det +noun +verb +prep +noun +noun +conj +det +noun +det +noun +verb +prep +det +noun +noun +prep +noun +verb +adv +noun +verb +noun +adj +verb +conj +verb +conj +verb +det +noun +det +noun +conj +det +noun +pron +adv +verb +conj +det +noun +conj +prep +adj +conj +conj +prep +adj +conj +det +noun +pron +pron +verb +noun +conj +pron +verb +noun +verb +prep +det +noun +det +prep +adj +conj +num +noun +verb +noun +adv +verb +prep +det +verb +det +noun +conj +conj +prep +noun +det +noun +adv +prep +noun +conj +det +noun +prep +noun +verb +det +noun +conj +pron +det +noun +det +noun +prep +verb +prep +ptcl +verb +det +noun +pron +verb +verb +prep +noun +prep +noun +noun +conj +det +noun +adj +adv +verb +conj +det +noun +adj +verb +conj +det +noun +prep +det +noun +det +noun +adv +verb +conj +conj +verb +noun +det +verb +verb +ptcl +adv +prep +noun +verb +det +noun +conj +verb +det +noun +det +adj +prep +noun +conj +det +noun +prep +noun +noun +noun +verb +det +verb +conj +prep +det +verb +det +noun +prep +noun +verb +verb +prep +det +verb +verb +noun +conj +det +noun +noun +pron +verb +prep +noun +conj +prep +noun +verb +conj +verb +det +noun +adv +prep +noun +verb +conj +adj +noun +noun +verb +prep +det +noun +prep +noun +noun +conj +pron +prep +noun +verb +noun +verb +adv +verb +adj +conj +noun +adv +verb +noun +conj +adj +adv +verb +adj +conj +adj +conj +adj +pron +adj +verb +prep +noun +noun +conj +conj +pron +noun +conj +det +noun +noun +verb +prep +noun +noun +conj +verb +prep +pron +noun +det +noun +adj +verb +adj +verb +noun +noun +adj +verb +conj +prep +noun +conj +noun +verb +prep +det +noun +det +noun +adv +adv +pron +conj +verb +adj +prep +det +noun +det +noun +verb +verb +conj +conj +verb +det +noun +det +noun +verb +det +noun +det +noun +pron +verb +prep +noun +verb +prep +noun +conj +det +prep +noun +verb +conj +det +noun +verb +conj +conj +verb +noun +verb +det +noun +det +noun +det +noun +pron +prep +det +noun +pron +verb +noun +det +noun +conj +verb +adv +noun +conj +noun +conj +conj +noun +adv +noun +prep +noun +conj +conj +adv +adv +verb +noun +verb +det +noun +adv +verb +noun +conj +adv +verb +noun +conj +adv +verb +prep +noun +adv +verb +adv +prep +det +adj +conj +adj +noun +pron +adv +adv +verb +verb +verb +noun +conj +noun +conj +noun +conj +noun +verb +pron +conj +adv +adv +verb +prep +pron +verb +conj +pron +conj +pron +conj +pron +noun +verb +pron +adj +pron +verb +conj +verb +conj +prep +noun +det +noun +verb +pron +det +adj +conj +adv +det +noun +pron +prep +det +noun +pron +verb +conj +verb +conj +conj +noun +noun +verb +pron +conj +noun +noun +conj +adv +det +noun +pron +conj +verb +pron +conj +conj +adj +det +noun +pron +verb +verb +pron +conj +adj +pron +verb +verb +pron +verb +pron +adv +adv +conj +verb +pron +verb +conj +pron +verb +conj +adj +verb +prep +adj +adv +conj +adv +adj +prep +det +verb +pron +prep +pron +noun +pron +pron +adv +verb +prep +pron +verb +noun +prep +pron +conj +verb +verb +prep +pron +adv +conj +verb +det +noun +pron +conj +verb +prep +pron +verb +pron +det +prep +noun +verb +verb +det +noun +adv +verb +conj +verb +conj +noun +verb +num +noun +adj +prep +det +noun +conj +adj +prep +det +adj +conj +conj +det +prep +det +noun +prep +noun +verb +conj +det +prep +det +adj +prep +det +noun +pron +verb +verb +conj +pron +verb +num +noun +conj +adj +prep +noun +noun +prep +noun +verb +pron +verb +noun +conj +det +noun +noun +noun +verb +prep +det +noun +conj +verb +det +adv +noun +conj +verb +prep +det +noun +pron +conj +det +adv +noun +adj +verb +pron +verb +noun +pron +conj +verb +verb +noun +det +adv +verb +verb +conj +verb +det +adv +verb +conj +adj +det +noun +det +adj +adv +conj +det +verb +det +noun +conj +noun +pron +prep +noun +noun +noun +verb +conj +conj +adv +det +prep +noun +verb +verb +det +prep +noun +adv +adv +adv +conj +pron +verb +det +noun +verb +det +noun +conj +det +noun +pron +conj +adv +adv +verb +det +noun +det +noun +prep +det +noun +det +adj +conj +noun +verb +adv +noun +noun +conj +det +adj +det +noun +pron +noun +verb +conj +verb +conj +adv +adv +noun +noun +verb +verb +pron +noun +verb +pron +conj +conj +verb +noun +pron +adj +verb +conj +verb +adv +adj +noun +verb +conj +noun +verb +adj +det +noun +verb +verb +prep +noun +pron +prep +noun +verb +det +noun +verb +conj +pron +noun +prep +noun +noun +noun +verb +conj +prep +noun +noun +conj +noun +conj +noun +pron +verb +conj +noun +prep +noun +verb +verb +adv +pron +verb +pron +noun +adv +verb +det +noun +adv +prep +det +verb +pron +adj +noun +adj +det +noun +verb +pron +verb +prep +pron +prep +noun +conj +adj +adj +verb +conj +det +verb +pron +verb +det +noun +ptcl +pron +verb +conj +noun +conj +pron +noun +adv +verb +pron +adv +verb +conj +verb +det +noun +det +noun +verb +adv +verb +det +verb +pron +conj +pron +prep +noun +verb +noun +adj +adv +det +noun +prep +noun +det +noun +conj +prep +det +noun +verb +pron +conj +det +adj +noun +verb +prep +adj +noun +prep +det +verb +det +adv +pron +conj +pron +conj +conj +pron +verb +conj +verb +verb +conj +prep +pron +verb +conj +verb +noun +verb +conj +noun +noun +adv +adv +verb +conj +det +noun +verb +prep +det +noun +conj +det +noun +prep +det +noun +conj +pron +pron +verb +conj +adv +ptcl +pron +verb +pron +verb +conj +conj +noun +verb +adv +verb +prep +noun +conj +adj +verb +det +noun +det +noun +pron +verb +noun +noun +noun +noun +noun +noun +noun +noun +noun +noun +noun +noun +noun +noun +noun +conj +det +adj +pron +pron +verb +pron +conj +verb +conj +det +det +pron +verb +noun +noun +adv +verb +conj +det +noun +det +noun +verb +noun +noun +noun +noun +noun +noun +noun +noun +noun +prep +det +pron +adv +verb +noun +conj +det +det +noun +noun +det +noun +verb +prep +det +noun +conj +det +noun +conj +verb +noun +noun +adv +verb +adv +verb +adj +pron +verb +pron +verb +noun +conj +adv +verb +noun +prep +pron +noun +pron +det +adj +verb +det +pron +prep +noun +noun +verb +pron +conj +adv +pron +verb +pron +det +noun +verb +conj +adv +verb +det +noun +det +noun +conj +conj +verb +pron +verb +pron +adj +verb +verb +pron +conj +det +noun +pron +verb +adj +conj +adv +prep +pron +adj +det +noun +verb +conj +adv +prep +det +adj +conj +adj +det +adj +noun +verb +conj +verb +det +verb +det +noun +det +verb +prep +adj +adj +adv +verb +noun +adv +verb +conj +ptcl +pron +verb +noun +pron +adv +verb +conj +det +verb +prep +det +noun +pron +prep +det +noun +verb +noun +conj +det +verb +prep +det +noun +prep +det +noun +verb +noun +adj +conj +det +adj +verb +adv +verb +conj +noun +adj +verb +adv +verb +conj +conj +conj +noun +verb +verb +det +adj +prep +adj +conj +adv +prep +det +adj +det +noun +verb +adj +noun +pron +verb +det +adj +noun +pron +verb +verb +prep +noun +pron +verb +pron +verb +conj +adj +det +noun +det +noun +adv +verb +conj +adv +det +verb +pron +noun +verb +conj +verb +pron +verb +conj +prep +det +adj +noun +verb +conj +pron +adv +verb +verb +conj +adv +prep +det +noun +det +noun +pron +noun +noun +prep +pron +pron +noun +verb +pron +noun +conj +pron +verb +conj +noun +conj +noun +conj +adj +noun +conj +pron +det +noun +pron +verb +noun +conj +noun +prep +pron +conj +prep +det +noun +det +noun +det +adj +noun +pron +adj +verb +conj +pron +det +noun +det +noun +prep +det +noun +pron +verb +det +noun +det +noun +pron +noun +noun +prep +det +noun +pron +noun +ptcl +noun +noun +noun +noun +prep +noun +noun +det +adj +det +verb +prep +noun +conj +adj +prep +noun +noun +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +adj +det +noun +conj +noun +det +noun +pron +noun +noun +det +verb +pron +prep +adj +noun +adj +prep +det +adj +prep +noun +conj +verb +pron +prep +pron +prep +noun +noun +verb +pron +adj +conj +adj +prep +pron +prep +noun +verb +pron +prep +noun +prep +noun +noun +prep +pron +prep +det +noun +det +noun +pron +prep +noun +noun +det +noun +pron +pron +verb +pron +prep +det +verb +prep +pron +verb +det +noun +prep +det +noun +pron +det +noun +det +noun +prep +det +noun +det +noun +pron +pron +verb +prep +pron +prep +adj +noun +conj +noun +verb +pron +det +noun +det +noun +pron +prep +det +noun +pron +pron +verb +prep +pron +prep +noun +det +noun +det +noun +verb +det +adj +prep +det +noun +det +prep +det +noun +conj +det +prep +det +noun +prep +pron +prep +pron +adv +verb +verb +prep +noun +det +det +adj +verb +prep +det +noun +det +noun +pron +prep +det +verb +prep +noun +noun +pron +pron +det +verb +prep +det +noun +prep +pron +adv +pron +verb +det +noun +det +noun +det +noun +det +noun +pron +prep +pron +adv +verb +verb +det +noun +det +noun +det +adj +pron +verb +noun +det +noun +pron +prep +noun +det +noun +prep +noun +det +noun +pron +prep +pron +pron +verb +det +prep +pron +noun +prep +det +noun +noun +conj +det +noun +det +prep +adj +det +adj +adv +verb +verb +prep +pron +noun +verb +prep +det +noun +pron +conj +det +noun +det +noun +pron +noun +noun +det +noun +det +noun +verb +pron +noun +noun +conj +noun +prep +noun +pron +verb +det +noun +det +noun +pron +prep +det +verb +pron +pron +verb +det +noun +det +noun +pron +pron +det +noun +det +noun +det +noun +pron +prep +det +adj +conj +pron +det +verb +noun +det +noun +pron +prep +pron +det +verb +prep +det +noun +det +noun +det +noun +pron +pron +verb +prep +det +noun +verb +pron +prep +adj +conj +verb +prep +adj +pron +prep +det +adj +prep +adj +noun +conj +noun +conj +noun +conj +noun +conj +adj +noun +verb +adv +adj +prep +det +noun +pron +conj +adv +prep +det +verb +conj +adj +verb +prep +det +noun +pron +conj +pron +verb +noun +prep +adj +det +noun +pron +verb +det +noun +pron +det +noun +det +det +adj +prep +adj +verb +conj +pron +verb +adj +det +noun +conj +det +noun +pron +prep +pron +adv +verb +prep +det +noun +det +noun +pron +prep +det +noun +det +noun +det +noun +det +noun +det +adv +verb +prep +det +noun +det +noun +prep +pron +adv +pron +adj +verb +adv +prep +det +noun +det +noun +pron +verb +det +noun +det +noun +conj +det +noun +conj +verb +noun +noun +noun +conj +adv +det +adj +conj +det +noun +adj +verb +prep +noun +prep +det +adj +noun +pron +pron +verb +pron +adv +verb +pron +adj +det +noun +verb +det +noun +noun +verb +verb +conj +verb +conj +verb +prep +det +adj +prep +noun +noun +conj +verb +prep +det +noun +det +verb +det +verb +noun +det +noun +pron +prep +noun +prep +pron +prep +noun +noun +conj +det +noun +verb +verb +prep +noun +adv +pron +adv +prep +pron +noun +det +noun +adv +prep +noun +conj +adv +pron +verb +conj +verb +pron +noun +verb +prep +noun +noun +prep +noun +adj +pron +verb +det +noun +conj +prep +pron +verb +conj +verb +conj +adv +pron +det +noun +prep +noun +det +verb +noun +prep +det +verb +noun +prep +noun +adj +conj +verb +det +noun +pron +prep +noun +verb +det +noun +det +noun +conj +adj +det +noun +det +noun +noun +adv +verb +conj +adj +prep +det +noun +conj +adv +prep +noun +noun +pron +det +adv +verb +adj +verb +adv +prep +det +noun +det +noun +conj +pron +verb +det +noun +pron +det +verb +det +adj +adj +conj +det +noun +det +noun +det +noun +verb +prep +det +noun +pron +det +noun +det +noun +prep +noun +verb +conj +det +num +verb +prep +pron +prep +adj +adj +noun +verb +noun +conj +verb +det +adj +prep +adj +noun +det +noun +prep +det +noun +verb +det +noun +prep +pron +conj +verb +verb +noun +pron +det +adj +conj +noun +det +adv +conj +prep +pron +verb +det +noun +det +adj +prep +adj +noun +prep +det +noun +conj +conj +adv +verb +adj +conj +adj +conj +verb +noun +det +adj +conj +adj +det +noun +verb +prep +det +noun +det +noun +conj +noun +verb +adj +pron +noun +noun +prep +pron +adj +noun +verb +verb +prep +noun +adj +prep +noun +prep +pron +adv +pron +verb +prep +noun +det +noun +prep +noun +pron +prep +pron +noun +det +noun +det +noun +noun +prep +pron +det +noun +conj +ptcl +verb +det +noun +det +noun +det +noun +det +verb +pron +prep +pron +adv +prep +noun +verb +pron +det +noun +conj +verb +prep +adj +prep +pron +verb +verb +verb +det +noun +pron +prep +det +noun +det +noun +pron +adj +noun +adv +verb +det +noun +det +noun +conj +adv +verb +det +adj +noun +pron +conj +noun +prep +noun +verb +det +noun +adj +conj +adj +conj +adj +det +noun +prep +noun +noun +prep +det +noun +pron +noun +verb +prep +det +noun +det +noun +det +noun +det +verb +pron +prep +det +noun +det +noun +pron +pron +det +adj +adj +adj +verb +det +noun +pron +det +noun +verb +det +adj +noun +det +noun +conj +verb +pron +det +noun +det +noun +det +verb +prep +det +noun +prep +det +noun +det +det +adj +verb +conj +verb +adv +det +noun +conj +det +noun +prep +det +adj +prep +det +noun +det +adj +noun +det +noun +prep +noun +det +noun +pron +verb +prep +det +noun +noun +det +noun +pron +prep +pron +verb +det +noun +conj +noun +prep +noun +prep +det +noun +pron +conj +verb +adv +verb +prep +det +noun +pron +prep +pron +pron +verb +noun +pron +pron +prep +verb +det +noun +pron +prep +det +noun +prep +pron +adj +noun +prep +noun +conj +prep +noun +verb +conj +verb +pron +prep +det +noun +det +noun +pron +noun +verb +prep +det +noun +pron +prep +det +adv +noun +verb +det +noun +prep +det +noun +prep +det +noun +pron +prep +noun +verb +conj +verb +conj +verb +verb +prep +adj +det +adj +pron +det +noun +conj +noun +conj +noun +conj +noun +conj +verb +det +verb +det +noun +noun +det +noun +conj +verb +prep +adj +det +noun +det +noun +conj +det +verb +verb +adv +prep +adj +pron +verb +conj +verb +prep +det +noun +det +verb +prep +pron +pron +det +noun +prep +det +noun +conj +prep +noun +noun +prep +adj +det +noun +det +noun +det +noun +ptcl +conj +verb +pron +pron +det +noun +prep +noun +adv +verb +det +noun +pron +verb +prep +adj +noun +conj +noun +prep +noun +verb +pron +prep +noun +verb +verb +det +noun +det +noun +prep +det +noun +det +noun +adj +noun +conj +adj +noun +conj +adv +verb +prep +adj +noun +det +noun +pron +adj +noun +adj +noun +adj +noun +adj +noun +conj +noun +adj +det +prep +adj +conj +prep +adj +conj +prep +adj +conj +adj +adj +pron +verb +det +noun +prep +det +noun +det +noun +det +noun +conj +verb +verb +prep +noun +verb +noun +verb +noun +det +noun +conj +det +verb +pron +verb +conj +adv +conj +adv +verb +prep +det +adj +noun +det +noun +det +verb +pron +verb +adv +det +verb +prep +adj +det +noun +conj +verb +det +adj +conj +pron +verb +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +noun +prep +det +noun +det +adj +prep +noun +noun +prep +noun +det +noun +det +noun +conj +verb +det +adj +prep +det +noun +det +noun +conj +det +noun +det +noun +det +noun +prep +noun +adj +prep +noun +noun +det +noun +det +noun +conj +adv +verb +adj +verb +conj +verb +adj +noun +det +noun +prep +det +noun +det +noun +prep +noun +prep +det +noun +det +noun +conj +verb +prep +noun +verb +det +adj +prep +pron +pron +verb +det +noun +noun +prep +pron +adj +det +noun +verb +conj +verb +prep +adj +noun +det +noun +prep +noun +prep +noun +adj +adj +noun +det +noun +det +noun +verb +prep +noun +pron +prep +noun +conj +pron +verb +conj +verb +prep +noun +adv +pron +verb +conj +adv +det +noun +verb +prep +noun +det +noun +pron +verb +verb +det +noun +verb +det +noun +det +noun +prep +det +noun +det +verb +prep +pron +prep +det +noun +det +noun +pron +pron +verb +pron +verb +det +noun +prep +noun +noun +adj +prep +noun +conj +pron +adv +adv +verb +det +noun +conj +ptcl +pron +verb +conj +prep +pron +verb +conj +verb +noun +prep +det +noun +verb +pron +prep +det +adj +noun +det +adj +noun +det +verb +prep +det +noun +det +noun +conj +verb +det +noun +det +noun +pron +conj +verb +det +adj +noun +det +prep +noun +verb +prep +noun +conj +noun +det +noun +conj +verb +det +noun +verb +noun +adj +prep +det +adv +pron +conj +verb +pron +noun +verb +conj +adv +verb +det +noun +adv +verb +prep +noun +pron +conj +verb +noun +det +adj +det +verb +adv +verb +conj +adv +verb +verb +det +adj +noun +det +adj +conj +verb +verb +det +noun +verb +adj +noun +adj +prep +det +noun +pron +adv +verb +conj +conj +pron +adj +prep +noun +det +noun +conj +verb +noun +det +verb +conj +adv +verb +det +noun +det +adj +det +noun +prep +pron +verb +prep +noun +noun +adj +noun +conj +noun +conj +noun +conj +noun +conj +noun +verb +prep +pron +prep +adj +noun +conj +verb +prep +pron +adj +adj +verb +pron +conj +adv +det +noun +prep +noun +verb +pron +conj +verb +noun +det +noun +conj +noun +adj +conj +verb +prep +noun +conj +adv +det +noun +verb +pron +conj +verb +pron +prep +pron +noun +conj +noun +det +noun +prep +noun +noun +conj +noun +conj +noun +adj +conj +noun +adv +verb +prep +pron +conj +verb +adj +conj +noun +conj +noun +conj +noun +pron +adv +verb +conj +adv +noun +conj +pron +verb +verb +adv +adj +noun +conj +adj +conj +noun +pron +verb +noun +adv +verb +noun +prep +det +noun +det +noun +conj +noun +adj +pron +verb +adj +noun +conj +prep +pron +verb +det +noun +det +noun +prep +det +noun +det +noun +conj +adv +verb +adj +pron +conj +verb +adv +noun +conj +adv +noun +prep +noun +conj +noun +noun +verb +conj +det +noun +det +noun +prep +adj +noun +conj +noun +conj +noun +verb +pron +verb +adj +det +noun +conj +adv +verb +det +noun +det +adj +det +noun +conj +adv +adv +verb +conj +det +adv +verb +prep +pron +adj +verb +adv +verb +conj +det +adj +verb +prep +det +noun +verb +conj +adj +det +verb +noun +verb +conj +verb +verb +det +verb +conj +verb +prep +det +adj +conj +verb +pron +det +noun +conj +verb +adv +adv +verb +adv +conj +adj +conj +conj +adj +verb +det +noun +conj +det +noun +adj +verb +prep +pron +adv +verb +adj +conj +verb +pron +det +noun +det +noun +conj +adv +verb +noun +prep +pron +verb +noun +conj +verb +prep +noun +verb +pron +noun +conj +noun +conj +noun +adj +verb +conj +verb +det +noun +pron +det +noun +verb +adv +prep +adj +prep +noun +det +noun +pron +noun +noun +det +noun +adv +noun +verb +pron +prep +noun +noun +det +noun +det +adj +noun +conj +det +noun +conj +noun +verb +noun +det +noun +conj +adv +det +noun +noun +det +noun +pron +noun +det +noun +conj +conj +det +noun +verb +det +noun +adv +adv +det +noun +det +noun +prep +adj +det +noun +verb +det +noun +conj +adv +det +noun +verb +det +noun +conj +pron +verb +prep +pron +conj +pron +verb +verb +det +noun +det +noun +prep +noun +conj +verb +pron +pron +det +noun +adj +adv +verb +noun +conj +noun +conj +pron +det +pron +conj +conj +verb +adj +conj +adj +adv +verb +adv +det +noun +verb +det +pron +noun +conj +det +pron +noun +det +verb +det +pron +noun +pron +verb +conj +adj +adv +det +pron +noun +verb +conj +verb +conj +verb +pron +conj +adv +det +noun +det +noun +conj +verb +noun +det +noun +pron +prep +pron +verb +noun +det +noun +conj +det +noun +conj +verb +prep +det +noun +pron +conj +verb +det +num +prep +noun +adj +det +noun +pron +adj +verb +conj +pron +verb +prep +noun +conj +prep +det +noun +conj +adv +pron +det +prep +adj +adj +det +pron +noun +adv +verb +conj +pron +conj +det +noun +conj +verb +det +noun +det +noun +verb +det +noun +pron +prep +noun +conj +pron +verb +adj +verb +det +noun +pron +conj +det +noun +pron +verb +noun +adj +prep +noun +conj +adv +pron +verb +conj +verb +adj +prep +det +noun +conj +det +noun +adv +verb +det +noun +pron +conj +verb +pron +prep +noun +conj +noun +noun +det +noun +verb +det +prep +noun +noun +prep +noun +conj +noun +prep +noun +det +noun +pron +conj +det +noun +adv +prep +noun +conj +adj +conj +conj +noun +noun +verb +det +noun +det +noun +prep +noun +prep +noun +verb +conj +det +noun +conj +adv +noun +verb +conj +conj +adj +pron +adj +verb +pron +verb +prep +noun +conj +noun +conj +adj +conj +det +noun +det +pron +verb +prep +pron +verb +det +noun +verb +conj +conj +pron +conj +pron +det +noun +verb +prep +noun +conj +noun +adv +verb +prep +pron +det +adj +verb +prep +noun +conj +prep +det +noun +det +noun +pron +verb +det +noun +det +noun +prep +det +verb +pron +verb +prep +det +noun +det +adj +conj +verb +pron +det +noun +adv +prep +noun +conj +noun +conj +prep +det +noun +prep +det +noun +prep +det +noun +det +noun +pron +prep +det +adj +det +noun +prep +det +adj +prep +pron +verb +det +noun +det +noun +conj +verb +verb +prep +det +noun +det +adj +conj +adj +verb +verb +conj +verb +verb +det +noun +pron +prep +noun +conj +verb +det +noun +det +noun +conj +verb +det +noun +prep +noun +det +noun +det +noun +prep +adj +verb +det +noun +det +noun +prep +pron +verb +adj +det +noun +det +adj +det +verb +verb +conj +verb +det +noun +det +adj +conj +det +noun +det +noun +pron +verb +noun +noun +prep +adj +noun +conj +noun +verb +prep +adj +noun +prep +noun +conj +prep +pron +verb +prep +adj +noun +conj +noun +prep +adj +det +adj +conj +prep +pron +conj +pron +verb +noun +prep +noun +det +noun +pron +prep +noun +verb +det +noun +det +noun +prep +pron +verb +prep +noun +conj +prep +pron +verb +conj +verb +pron +verb +conj +conj +verb +adv +pron +det +prep +pron +pron +verb +adj +verb +pron +noun +det +adj +noun +conj +adj +noun +prep +noun +pron +verb +prep +pron +prep +pron +pron +conj +verb +det +prep +pron +conj +verb +det +noun +pron +det +noun +noun +conj +noun +prep +noun +prep +noun +noun +conj +noun +noun +noun +det +noun +prep +adj +det +verb +det +noun +pron +noun +noun +prep +noun +noun +conj +noun +noun +noun +noun +adj +det +adj +prep +noun +noun +det +verb +prep +noun +prep +noun +conj +noun +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +verb +det +noun +pron +prep +adj +det +noun +pron +adv +prep +adj +noun +pron +prep +adj +pron +prep +noun +det +noun +verb +prep +det +noun +pron +prep +det +noun +prep +det +adj +noun +prep +det +adv +verb +pron +pron +adv +det +verb +prep +pron +noun +adj +verb +prep +noun +noun +noun +conj +verb +adj +pron +pron +verb +prep +adj +pron +prep +det +verb +pron +prep +det +noun +pron +conj +prep +det +noun +pron +conj +prep +det +noun +conj +noun +det +noun +noun +pron +det +noun +adj +pron +verb +conj +noun +pron +det +noun +adv +verb +adj +pron +prep +noun +noun +noun +conj +pron +verb +adv +det +noun +pron +adv +adv +conj +adv +verb +prep +noun +conj +adj +noun +prep +det +verb +pron +det +verb +conj +verb +adj +conj +adj +prep +noun +noun +verb +noun +noun +det +prep +noun +noun +prep +noun +conj +noun +noun +conj +noun +verb +verb +pron +conj +det +prep +pron +adv +prep +noun +det +noun +verb +conj +det +noun +pron +adj +prep +noun +verb +prep +adj +det +noun +conj +det +adj +adj +conj +det +adj +det +noun +prep +noun +verb +det +noun +pron +adv +verb +adv +det +noun +det +noun +verb +conj +pron +adv +prep +noun +conj +noun +conj +pron +adv +prep +noun +det +noun +verb +conj +det +prep +noun +verb +conj +prep +noun +det +noun +verb +conj +det +prep +noun +det +noun +verb +adv +adv +verb +noun +verb +det +noun +pron +conj +pron +conj +conj +adj +noun +conj +noun +conj +noun +noun +verb +conj +prep +pron +verb +conj +adv +verb +conj +verb +conj +pron +pron +verb +prep +noun +prep +det +pron +noun +conj +noun +det +noun +noun +noun +prep +det +noun +conj +noun +pron +adv +prep +adj +verb +conj +prep +adj +noun +conj +adv +adv +adv +verb +noun +prep +det +noun +pron +conj +prep +noun +conj +prep +noun +conj +pron +det +verb +noun +conj +det +verb +noun +conj +conj +det +verb +prep +noun +pron +pron +noun +noun +conj +pron +verb +adv +verb +conj +verb +prep +det +num +det +noun +verb +prep +det +verb +conj +prep +noun +verb +conj +adj +adv +adj +conj +det +verb +det +noun +adj +prep +pron +conj +pron +verb +verb +conj +verb +conj +verb +adj +pron +prep +det +pron +noun +conj +noun +det +noun +conj +det +noun +pron +verb +prep +noun +noun +prep +pron +prep +det +adj +noun +adv +prep +pron +adj +adv +det +noun +det +noun +verb +conj +conj +verb +conj +verb +pron +conj +verb +verb +det +prep +pron +adv +verb +prep +adj +noun +adj +noun +verb +det +noun +det +noun +conj +adv +verb +prep +adj +prep +det +verb +pron +verb +pron +noun +noun +conj +pron +noun +conj +pron +prep +noun +conj +pron +verb +det +prep +noun +adv +adv +det +prep +pron +verb +conj +adv +det +prep +pron +verb +verb +det +pron +noun +pron +verb +prep +pron +conj +adv +verb +prep +pron +conj +conj +pron +noun +prep +noun +conj +pron +noun +noun +conj +pron +noun +noun +conj +pron +noun +conj +noun +verb +pron +det +noun +conj +det +pron +verb +det +pron +noun +verb +adj +det +adj +verb +adj +prep +noun +conj +prep +noun +conj +det +noun +pron +verb +verb +pron +adv +det +pron +adj +verb +conj +adv +det +adj +adj +pron +verb +prep +pron +pron +adv +prep +noun +noun +pron +prep +noun +noun +verb +adv +noun +verb +det +verb +adj +noun +conj +pron +verb +noun +noun +verb +prep +noun +noun +verb +conj +noun +verb +conj +noun +verb +pron +verb +adj +prep +noun +conj +noun +noun +conj +adv +det +noun +pron +verb +conj +verb +pron +det +noun +det +prep +adj +noun +conj +prep +det +noun +noun +verb +adj +noun +adj +conj +adj +conj +adj +conj +adj +noun +verb +conj +noun +noun +noun +prep +noun +noun +noun +conj +adj +pron +conj +adv +verb +conj +adv +prep +det +noun +pron +adj +conj +adv +adj +adv +prep +det +noun +pron +prep +noun +conj +noun +det +pron +noun +verb +conj +noun +verb +det +verb +prep +pron +conj +det +verb +conj +det +verb +prep +det +noun +adj +verb +prep +noun +conj +noun +conj +verb +adj +conj +adj +noun +noun +adj +adj +noun +adj +conj +verb +prep +pron +verb +conj +noun +prep +noun +noun +noun +verb +prep +noun +pron +prep +noun +noun +adv +adv +prep +adj +verb +conj +prep +adj +verb +conj +conj +adv +verb +prep +det +noun +conj +noun +det +noun +pron +verb +conj +verb +adj +pron +conj +det +pron +adv +pron +verb +conj +verb +pron +conj +verb +prep +noun +noun +noun +adv +verb +pron +conj +pron +verb +verb +det +prep +pron +conj +adj +adj +verb +pron +adv +det +prep +pron +verb +conj +det +adj +det +pron +verb +adv +det +noun +noun +conj +det +noun +pron +verb +adv +conj +noun +noun +prep +pron +verb +prep +det +noun +conj +conj +verb +pron +verb +conj +ptcl +verb +det +prep +pron +adv +conj +verb +prep +noun +conj +adv +pron +adv +verb +conj +verb +adj +noun +det +noun +conj +adj +conj +noun +pron +conj +pron +noun +conj +noun +det +noun +pron +verb +prep +pron +conj +verb +verb +adj +pron +conj +verb +conj +verb +conj +verb +conj +adv +verb +adj +noun +conj +det +noun +verb +pron +conj +adv +pron +adj +conj +adv +pron +conj +adv +noun +prep +noun +verb +conj +adv +verb +pron +conj +verb +pron +adv +verb +pron +adj +verb +conj +verb +pron +prep +noun +prep +adj +noun +conj +det +pron +adj +verb +conj +prep +det +noun +noun +prep +noun +verb +verb +det +noun +conj +verb +det +pron +noun +det +prep +pron +noun +noun +pron +det +adj +verb +prep +noun +det +pron +verb +pron +conj +pron +adv +adj +conj +pron +adj +verb +det +noun +verb +det +adj +noun +verb +det +noun +conj +verb +det +noun +pron +det +noun +noun +verb +conj +verb +prep +noun +noun +conj +adv +prep +noun +verb +conj +pron +verb +noun +adv +prep +noun +conj +pron +adj +verb +verb +prep +noun +pron +adv +noun +adj +prep +noun +noun +noun +noun +adj +prep +adj +prep +noun +noun +prep +noun +verb +det +noun +prep +noun +det +prep +noun +verb +adj +conj +pron +verb +pron +noun +pron +verb +prep +det +noun +noun +conj +ptcl +conj +ptcl +adv +verb +adj +noun +verb +prep +det +verb +det +noun +noun +noun +det +noun +pron +prep +pron +det +adj +verb +conj +verb +noun +conj +noun +verb +conj +verb +prep +pron +verb +adv +adj +noun +det +prep +noun +conj +det +prep +noun +noun +det +prep +noun +noun +prep +det +noun +det +verb +pron +conj +det +noun +det +noun +pron +conj +noun +noun +pron +verb +det +noun +pron +ptcl +adv +verb +prep +det +noun +det +prep +adj +adv +conj +adv +verb +conj +adv +verb +conj +verb +ptcl +adv +verb +prep +pron +adv +verb +prep +noun +noun +noun +pron +adv +verb +pron +verb +conj +adj +conj +det +adv +verb +conj +det +adv +verb +prep +noun +verb +prep +det +noun +det +adv +noun +det +noun +prep +noun +noun +conj +pron +adj +pron +verb +conj +conj +pron +adv +verb +adv +pron +det +noun +pron +verb +conj +prep +pron +verb +det +pron +verb +noun +noun +pron +verb +conj +verb +det +adv +verb +conj +verb +noun +pron +conj +adj +verb +pron +adv +verb +pron +conj +adv +adv +verb +verb +det +adj +det +noun +det +noun +pron +det +noun +noun +pron +det +noun +det +noun +conj +det +noun +prep +det +noun +pron +det +det +adj +verb +conj +pron +det +noun +prep +noun +verb +prep +pron +adv +verb +noun +noun +noun +noun +pron +verb +det +noun +det +noun +pron +adj +det +noun +det +noun +pron +prep +det +noun +det +verb +pron +adv +verb +pron +det +adj +conj +noun +pron +adj +conj +adj +noun +conj +noun +pron +adv +verb +prep +noun +adj +noun +verb +conj +noun +verb +det +pron +verb +prep +noun +ptcl +verb +adv +pron +adj +adj +verb +pron +pron +prep +det +noun +verb +pron +prep +conj +noun +conj +det +adj +adj +pron +pron +det +noun +prep +noun +noun +verb +prep +noun +adv +adv +verb +verb +det +adj +pron +verb +adj +noun +det +noun +adv +adj +verb +conj +prep +adj +det +noun +conj +det +noun +prep +noun +det +noun +pron +verb +prep +det +noun +conj +det +noun +det +noun +det +verb +adj +noun +verb +det +noun +pron +conj +det +noun +pron +prep +noun +noun +noun +det +adj +pron +verb +adj +pron +adj +pron +adj +pron +adj +pron +adj +pron +adj +conj +pron +noun +conj +conj +pron +noun +pron +verb +pron +conj +verb +conj +verb +conj +verb +conj +verb +prep +pron +pron +verb +conj +det +noun +det +noun +verb +prep +pron +conj +verb +prep +noun +adv +conj +adv +adv +verb +det +prep +pron +verb +prep +pron +adv +verb +conj +verb +adv +conj +prep +noun +verb +conj +pron +verb +prep +pron +verb +adj +verb +verb +conj +verb +verb +conj +verb +prep +adj +conj +prep +adj +verb +conj +verb +conj +verb +conj +verb +conj +verb +adj +verb +prep +det +verb +pron +conj +adv +verb +verb +pron +det +noun +conj +noun +verb +adv +pron +conj +adv +verb +prep +noun +prep +noun +det +noun +adj +noun +pron +verb +prep +noun +noun +conj +noun +conj +adv +pron +adj +conj +adv +prep +noun +conj +adv +conj +adv +prep +det +noun +pron +verb +adv +conj +verb +det +noun +conj +verb +det +noun +det +verb +prep +noun +pron +conj +verb +adj +conj +verb +verb +verb +prep +noun +det +prep +pron +noun +noun +noun +adj +adj +det +noun +conj +det +noun +pron +verb +adj +noun +pron +prep +det +noun +pron +prep +noun +prep +noun +noun +conj +det +noun +conj +noun +pron +det +noun +prep +det +noun +det +noun +ptcl +verb +adj +adj +prep +noun +noun +verb +pron +det +prep +pron +noun +verb +pron +adj +det +adj +conj +adv +det +prep +det +noun +noun +det +noun +det +noun +noun +noun +prep +det +noun +pron +noun +noun +noun +noun +prep +noun +noun +conj +noun +det +noun +det +prep +noun +adj +conj +adj +noun +prep +noun +pron +noun +conj +noun +prep +noun +noun +pron +verb +det +noun +noun +det +noun +pron +noun +noun +adv +prep +pron +verb +verb +det +noun +pron +prep +noun +noun +conj +det +noun +pron +verb +prep +adj +det +adj +prep +det +noun +det +verb +pron +prep +det +noun +pron +verb +prep +det +noun +det +noun +det +noun +det +verb +prep +pron +conj +adv +prep +adj +det +noun +verb +verb +conj +verb +conj +adv +prep +pron +prep +pron +noun +verb +conj +verb +det +noun +det +noun +prep +noun +conj +verb +prep +noun +det +adj +noun +pron +pron +verb +adj +prep +pron +noun +det +noun +det +adv +verb +pron +det +pron +noun +prep +noun +prep +pron +adv +pron +prep +pron +noun +verb +adv +verb +prep +pron +verb +conj +verb +conj +verb +det +noun +det +noun +pron +prep +adj +noun +conj +noun +adj +verb +adv +det +noun +prep +adj +noun +prep +adj +noun +adj +verb +conj +verb +det +noun +det +noun +prep +adj +noun +verb +prep +det +noun +det +noun +pron +prep +adj +noun +conj +noun +prep +noun +verb +det +noun +det +verb +pron +prep +det +noun +det +noun +det +adj +prep +det +noun +pron +verb +pron +prep +det +noun +det +noun +conj +verb +prep +det +noun +det +noun +det +noun +pron +prep +pron +verb +det +noun +det +noun +det +noun +pron +verb +noun +det +noun +det +adj +adj +adj +noun +conj +prep +pron +verb +det +adj +prep +det +noun +conj +prep +det +noun +det +adj +conj +det +adj +conj +noun +conj +noun +conj +noun +conj +noun +det +adj +prep +pron +conj +prep +pron +verb +conj +pron +verb +prep +adj +conj +det +adj +prep +pron +verb +conj +pron +verb +det +noun +det +noun +det +noun +pron +verb +noun +adj +prep +det +adj +conj +verb +pron +prep +adj +verb +conj +verb +prep +pron +adj +det +noun +verb +conj +prep +pron +verb +det +adj +prep +pron +verb +prep +det +noun +det +noun +pron +prep +pron +conj +det +prep +det +noun +conj +det +prep +det +noun +conj +pron +adv +verb +verb +conj +adj +det +noun +prep +det +noun +det +adj +conj +adv +verb +prep +det +noun +det +noun +pron +prep +det +noun +verb +pron +adj +conj +adj +conj +adj +prep +pron +conj +ptcl +verb +det +noun +verb +conj +adj +conj +adv +verb +prep +det +noun +det +noun +pron +verb +det +verb +prep +adj +noun +det +prep +det +noun +pron +noun +verb +pron +noun +adv +verb +prep +det +noun +prep +pron +conj +verb +det +noun +det +noun +det +noun +prep +det +noun +pron +prep +det +noun +pron +pron +verb +det +noun +pron +noun +verb +pron +prep +det +noun +det +noun +det +verb +pron +prep +pron +verb +det +noun +det +noun +det +noun +det +verb +prep +det +noun +conj +prep +det +noun +conj +adv +verb +det +adj +pron +pron +verb +det +noun +verb +pron +det +noun +det +noun +det +noun +pron +prep +det +noun +pron +verb +noun +prep +pron +det +noun +det +noun +pron +pron +verb +verb +adj +noun +conj +verb +adj +noun +prep +adj +noun +conj +verb +adj +noun +adj +prep +noun +prep +pron +adv +verb +verb +prep +det +noun +pron +det +verb +prep +pron +prep +noun +conj +verb +pron +verb +adj +noun +verb +prep +pron +conj +det +prep +noun +conj +pron +adv +verb +det +noun +pron +prep +noun +conj +verb +det +noun +pron +verb +prep +noun +conj +prep +adj +noun +det +noun +det +noun +prep +noun +det +noun +det +noun +noun +prep +pron +verb +adj +det +noun +det +noun +conj +noun +adj +pron +verb +conj +adj +pron +verb +prep +noun +conj +conj +adv +det +noun +verb +conj +det +noun +prep +pron +verb +verb +conj +verb +pron +det +noun +conj +det +noun +det +prep +noun +noun +pron +conj +conj +verb +det +noun +noun +det +noun +prep +pron +verb +verb +conj +verb +prep +pron +conj +verb +det +noun +conj +verb +verb +prep +noun +verb +conj +pron +verb +det +verb +pron +prep +det +noun +conj +adj +noun +prep +det +noun +det +noun +prep +det +noun +det +noun +conj +adv +prep +noun +conj +prep +pron +verb +adj +det +noun +det +noun +adv +conj +verb +verb +prep +pron +pron +verb +det +noun +adj +noun +conj +noun +prep +pron +adv +verb +noun +adj +prep +det +noun +det +noun +det +noun +prep +det +noun +det +noun +verb +pron +prep +det +noun +prep +pron +adv +verb +prep +det +noun +det +noun +det +noun +det +verb +pron +prep +adj +conj +pron +adj +verb +det +noun +conj +det +noun +det +noun +pron +verb +pron +prep +pron +verb +pron +adj +det +noun +verb +det +prep +pron +noun +det +noun +pron +verb +adj +pron +conj +pron +verb +prep +det +adj +verb +pron +det +noun +verb +det +noun +conj +det +noun +verb +prep +noun +verb +pron +prep +pron +conj +adv +pron +pron +verb +prep +noun +conj +prep +noun +conj +prep +noun +noun +conj +noun +conj +noun +pron +verb +noun +det +verb +conj +det +noun +det +noun +adj +pron +verb +verb +prep +noun +conj +noun +det +noun +pron +verb +verb +adv +verb +prep +det +noun +det +noun +pron +conj +adv +verb +det +noun +prep +pron +adj +det +noun +prep +det +noun +conj +noun +verb +conj +verb +verb +det +noun +det +noun +conj +verb +prep +noun +prep +det +noun +det +noun +pron +conj +verb +prep +noun +verb +adv +verb +conj +verb +conj +verb +pron +verb +adj +prep +noun +det +noun +prep +det +noun +conj +noun +det +noun +pron +verb +ptcl +verb +noun +noun +prep +noun +conj +noun +conj +noun +noun +adv +prep +noun +pron +prep +noun +det +noun +conj +conj +verb +det +noun +det +adv +verb +adv +det +noun +verb +verb +prep +adj +det +noun +det +adv +verb +adv +det +prep +det +noun +conj +verb +conj +det +noun +pron +verb +prep +det +noun +prep +det +noun +conj +verb +det +noun +det +noun +pron +adv +adv +pron +prep +pron +verb +prep +noun +conj +verb +det +noun +det +prep +det +noun +noun +noun +noun +noun +adj +conj +det +noun +pron +verb +noun +prep +pron +verb +det +noun +det +noun +prep +pron +adv +pron +verb +adv +adv +verb +prep +pron +conj +adv +verb +adv +pron +det +adj +noun +noun +noun +noun +noun +prep +det +noun +pron +adv +verb +prep +pron +verb +det +adj +noun +prep +det +noun +pron +conj +verb +det +adj +det +verb +prep +noun +prep +noun +det +verb +pron +conj +adv +verb +noun +conj +adj +noun +conj +noun +adj +noun +noun +adj +conj +adj +conj +prep +adj +noun +conj +verb +conj +adj +det +noun +adj +conj +verb +noun +noun +noun +noun +noun +noun +verb +pron +conj +verb +pron +conj +pron +prep +pron +verb +noun +conj +adv +det +noun +verb +pron +adv +adv +pron +conj +prep +adj +pron +det +noun +pron +verb +noun +det +noun +conj +det +noun +det +noun +verb +prep +det +noun +pron +prep +pron +adv +verb +prep +adj +noun +conj +adj +verb +det +noun +det +noun +verb +prep +pron +adv +prep +adj +noun +verb +conj +verb +pron +noun +noun +noun +adj +prep +det +noun +verb +prep +det +noun +pron +det +noun +conj +adj +pron +ptcl +pron +verb +prep +noun +conj +prep +noun +adj +prep +noun +noun +noun +verb +det +noun +noun +prep +pron +det +noun +verb +det +noun +conj +verb +prep +noun +det +noun +verb +det +noun +conj +adv +verb +prep +pron +det +noun +verb +det +noun +prep +adj +conj +pron +adj +verb +prep +noun +det +noun +adv +verb +det +noun +pron +conj +adv +verb +det +noun +verb +prep +adj +det +prep +noun +noun +adv +prep +noun +conj +adj +conj +prep +noun +noun +verb +det +noun +ptcl +pron +verb +prep +noun +verb +conj +det +noun +conj +adv +noun +verb +conj +prep +noun +verb +det +noun +det +noun +det +noun +noun +verb +conj +det +verb +verb +pron +verb +conj +adv +verb +noun +det +noun +det +adj +conj +det +noun +det +noun +verb +verb +conj +adv +pron +verb +noun +prep +noun +det +noun +verb +verb +prep +pron +prep +noun +verb +adv +adv +prep +pron +conj +det +noun +verb +pron +noun +det +noun +verb +det +noun +det +noun +prep +pron +adv +verb +conj +verb +pron +conj +verb +pron +verb +prep +noun +verb +prep +det +adv +det +noun +verb +det +noun +pron +adv +prep +noun +noun +verb +verb +adv +verb +pron +adj +adj +verb +det +prep +pron +adj +verb +pron +noun +det +adj +noun +conj +adj +noun +conj +noun +prep +noun +pron +verb +prep +pron +prep +pron +pron +conj +verb +det +prep +pron +conj +verb +det +noun +pron +prep +noun +det +adj +conj +adj +noun +pron +verb +prep +pron +pron +verb +adj +det +adv +verb +pron +noun +det +adj +pron +conj +noun +det +noun +noun +prep +pron +verb +noun +conj +verb +prep +pron +verb +pron +conj +noun +det +verb +noun +det +verb +prep +noun +pron +adj +adj +prep +det +noun +det +noun +pron +verb +pron +noun +verb +pron +noun +det +prep +pron +noun +noun +noun +adv +verb +prep +pron +prep +det +noun +adv +verb +adj +conj +verb +prep +adj +noun +det +noun +conj +verb +pron +conj +verb +adj +noun +prep +pron +conj +det +prep +noun +conj +det +prep +noun +verb +pron +noun +det +noun +det +adj +conj +noun +verb +det +prep +noun +noun +conj +noun +conj +det +prep +noun +pron +noun +conj +conj +verb +prep +pron +det +noun +verb +conj +adv +prep +det +noun +noun +verb +conj +conj +det +prep +noun +adv +pron +verb +conj +verb +noun +verb +det +noun +pron +verb +prep +noun +conj +pron +verb +det +noun +det +adj +noun +noun +verb +pron +det +noun +det +noun +prep +pron +noun +conj +noun +conj +noun +det +noun +noun +prep +noun +noun +conj +noun +noun +noun +pron +noun +conj +noun +verb +det +noun +adv +prep +adj +pron +noun +verb +prep +det +noun +pron +adv +verb +pron +det +noun +det +noun +conj +det +noun +det +noun +conj +det +noun +det +noun +det +noun +pron +noun +noun +prep +det +noun +conj +noun +pron +verb +det +noun +pron +noun +verb +prep +det +noun +conj +det +noun +pron +verb +prep +pron +adv +prep +noun +adj +conj +adv +prep +noun +conj +prep +noun +adj +conj +noun +adj +conj +verb +pron +verb +prep +pron +prep +pron +conj +pron +verb +noun +pron +conj +det +noun +verb +det +noun +prep +noun +adj +prep +noun +noun +adj +conj +verb +pron +noun +adj +det +verb +prep +det +noun +conj +prep +det +noun +conj +prep +pron +verb +det +noun +det +noun +adv +adj +prep +det +noun +conj +noun +conj +prep +adj +noun +det +noun +pron +det +prep +det +noun +verb +conj +adv +noun +verb +pron +verb +pron +conj +pron +prep +pron +verb +adj +noun +verb +prep +pron +conj +conj +verb +prep +det +noun +prep +det +noun +verb +noun +verb +conj +adj +conj +verb +prep +det +noun +det +noun +pron +pron +verb +prep +det +adj +noun +det +verb +pron +prep +det +noun +det +verb +conj +noun +pron +verb +det +noun +pron +det +prep +pron +conj +adv +adj +verb +conj +verb +conj +verb +prep +noun +conj +verb +verb +prep +det +noun +pron +verb +prep +pron +det +noun +det +noun +prep +adj +noun +conj +det +noun +pron +adv +prep +noun +conj +prep +noun +conj +prep +noun +conj +conj +verb +prep +det +noun +verb +det +noun +adv +verb +conj +verb +adv +noun +conj +noun +det +verb +det +noun +pron +conj +conj +adv +prep +noun +noun +verb +conj +verb +conj +prep +noun +noun +noun +noun +conj +verb +prep +noun +noun +conj +prep +pron +conj +prep +adj +verb +prep +noun +verb +conj +noun +noun +conj +verb +adj +prep +adj +pron +conj +conj +noun +verb +det +pron +noun +adv +verb +pron +verb +verb +pron +adv +adj +det +noun +det +noun +conj +adv +det +pron +noun +conj +adj +pron +verb +conj +noun +verb +det +noun +pron +conj +det +noun +noun +conj +noun +verb +prep +det +adv +verb +pron +pron +verb +prep +pron +det +noun +det +noun +noun +pron +conj +det +noun +adv +adv +conj +adv +conj +adv +pron +det +verb +verb +conj +verb +conj +adj +adj +pron +conj +noun +noun +pron +verb +conj +verb +conj +verb +pron +prep +det +verb +pron +adv +det +noun +det +verb +pron +prep +det +pron +noun +conj +noun +conj +prep +pron +adv +pron +verb +det +noun +adv +conj +verb +noun +noun +prep +pron +det +noun +verb +adv +noun +noun +conj +conj +adv +verb +noun +noun +pron +adv +verb +prep +pron +det +verb +conj +noun +pron +verb +noun +det +noun +det +noun +det +verb +prep +det +noun +prep +noun +noun +conj +det +pron +verb +conj +pron +prep +det +adj +noun +conj +adv +pron +prep +det +adj +det +verb +conj +det +noun +noun +conj +det +noun +conj +pron +verb +conj +noun +adv +verb +conj +adj +noun +adj +verb +pron +det +noun +verb +conj +verb +prep +det +verb +pron +det +noun +adv +conj +verb +prep +pron +det +noun +prep +noun +conj +noun +pron +verb +prep +pron +prep +noun +noun +noun +adv +noun +adv +verb +det +noun +pron +verb +prep +adj +noun +conj +verb +verb +prep +pron +ptcl +pron +noun +conj +adv +conj +adv +conj +verb +pron +det +noun +conj +pron +pron +noun +conj +noun +conj +noun +noun +conj +ptcl +adv +pron +prep +det +noun +pron +noun +prep +det +pron +noun +conj +pron +verb +det +noun +pron +conj +det +noun +conj +adv +verb +verb +verb +prep +noun +adj +conj +verb +noun +det +noun +pron +conj +noun +det +noun +prep +det +noun +det +noun +prep +det +verb +conj +verb +pron +prep +det +noun +pron +det +adj +verb +prep +det +noun +pron +conj +pron +verb +conj +prep +pron +verb +conj +adv +conj +prep +pron +verb +verb +pron +conj +verb +verb +conj +adv +verb +conj +verb +prep +pron +pron +adv +verb +verb +prep +det +verb +det +noun +pron +conj +adv +verb +pron +det +verb +conj +prep +adj +verb +det +noun +pron +conj +adv +verb +noun +prep +pron +prep +pron +conj +verb +pron +det +noun +conj +det +noun +pron +conj +conj +verb +noun +pron +adj +adv +verb +pron +verb +conj +adv +pron +pron +noun +prep +pron +verb +prep +pron +prep +adj +det +noun +conj +noun +pron +prep +det +pron +noun +conj +adv +verb +conj +pron +verb +prep +noun +conj +verb +pron +noun +det +noun +verb +prep +pron +prep +adj +det +noun +pron +verb +prep +pron +prep +det +noun +pron +noun +conj +noun +adv +verb +prep +det +verb +pron +det +noun +conj +verb +det +noun +det +noun +pron +conj +pron +det +noun +conj +noun +pron +conj +det +noun +pron +noun +verb +det +noun +pron +prep +pron +conj +pron +det +noun +verb +conj +verb +det +noun +prep +pron +conj +prep +adj +conj +adv +pron +prep +pron +prep +det +verb +pron +det +noun +adj +prep +noun +prep +det +noun +conj +noun +pron +prep +det +noun +det +noun +pron +noun +prep +adj +det +adj +pron +conj +noun +adj +verb +conj +verb +pron +prep +noun +noun +conj +conj +verb +prep +pron +det +adv +verb +pron +verb +conj +verb +noun +conj +adv +verb +conj +verb +adv +conj +verb +pron +noun +verb +pron +prep +det +noun +noun +conj +pron +verb +noun +det +noun +det +noun +pron +verb +pron +prep +det +noun +verb +adj +pron +det +pron +noun +verb +prep +noun +conj +noun +adv +prep +noun +noun +conj +adv +det +noun +det +adv +verb +det +noun +det +adv +verb +conj +verb +prep +det +noun +det +noun +pron +conj +adj +noun +prep +adj +pron +conj +conj +verb +pron +conj +verb +conj +adv +verb +pron +det +noun +prep +noun +conj +prep +noun +conj +det +verb +verb +adv +noun +conj +det +noun +det +adv +verb +det +noun +pron +det +adj +prep +pron +conj +prep +det +noun +adv +noun +verb +verb +pron +conj +pron +pron +adj +verb +prep +det +verb +pron +conj +adv +verb +pron +prep +adj +det +noun +prep +adj +det +noun +conj +noun +verb +pron +verb +adv +conj +verb +verb +conj +verb +det +adj +conj +verb +det +noun +pron +conj +pron +verb +conj +verb +adv +prep +det +adv +conj +adj +noun +verb +conj +noun +adv +verb +pron +verb +prep +det +verb +conj +adv +verb +conj +adv +det +adj +det +adv +verb +noun +conj +conj +verb +conj +noun +verb +conj +verb +adv +adv +det +noun +det +verb +prep +det +noun +verb +prep +pron +conj +pron +pron +verb +prep +noun +noun +adv +pron +det +verb +det +verb +prep +det +noun +det +noun +adv +adv +verb +det +verb +conj +pron +det +noun +prep +noun +prep +noun +noun +conj +prep +noun +noun +verb +prep +noun +conj +det +adj +prep +noun +verb +adj +adv +pron +det +verb +det +verb +adv +prep +pron +verb +prep +noun +prep +noun +det +noun +prep +noun +conj +adv +adv +prep +noun +verb +conj +verb +pron +prep +det +noun +pron +conj +noun +prep +det +noun +conj +det +noun +adv +noun +verb +pron +verb +conj +pron +adv +verb +conj +conj +noun +prep +noun +noun +noun +adv +verb +conj +verb +noun +conj +noun +adv +adj +noun +pron +verb +conj +det +noun +det +prep +noun +verb +conj +adv +adv +verb +conj +noun +pron +adv +verb +prep +noun +conj +det +noun +pron +verb +conj +noun +conj +adj +pron +verb +noun +noun +conj +noun +noun +adv +verb +noun +conj +noun +conj +conj +adv +verb +conj +det +adj +conj +verb +conj +verb +conj +det +verb +noun +verb +conj +det +verb +noun +verb +conj +pron +noun +verb +verb +verb +noun +noun +conj +noun +conj +noun +noun +noun +conj +adv +verb +pron +det +noun +prep +noun +conj +prep +noun +noun +prep +det +noun +pron +noun +noun +det +verb +prep +pron +conj +conj +verb +conj +verb +adv +prep +pron +verb +conj +verb +pron +conj +verb +adj +det +adj +conj +adv +verb +conj +noun +verb +pron +verb +det +verb +prep +pron +conj +verb +pron +prep +noun +conj +verb +pron +conj +verb +pron +adv +prep +noun +prep +det +noun +pron +verb +prep +pron +conj +noun +verb +pron +verb +det +adj +verb +det +adj +verb +det +adj +verb +prep +adj +verb +conj +pron +adj +prep +adj +pron +verb +conj +adv +det +adj +verb +prep +pron +conj +prep +adj +adv +verb +adv +verb +prep +adj +verb +conj +pron +noun +noun +prep +noun +noun +prep +pron +det +noun +adv +verb +noun +adv +verb +conj +adj +verb +det +adj +verb +prep +adj +noun +adj +verb +conj +pron +det +noun +det +noun +verb +pron +adj +conj +adj +pron +det +noun +conj +det +noun +conj +det +noun +adv +prep +det +noun +det +noun +pron +noun +noun +verb +adj +det +verb +pron +pron +adv +verb +noun +verb +prep +pron +verb +det +noun +adj +prep +noun +adj +verb +pron +det +noun +verb +det +noun +adj +det +noun +det +noun +det +noun +pron +noun +noun +prep +pron +noun +conj +noun +conj +noun +det +noun +noun +prep +noun +noun +pron +conj +noun +noun +noun +pron +noun +conj +noun +prep +noun +noun +conj +noun +noun +noun +noun +verb +verb +det +noun +adv +prep +pron +conj +adj +verb +conj +verb +det +noun +pron +conj +verb +det +noun +adj +adj +adj +pron +prep +pron +conj +pron +pron +prep +pron +verb +prep +det +noun +det +noun +prep +det +noun +pron +conj +noun +prep +adj +det +noun +pron +conj +det +noun +pron +verb +noun +det +adj +noun +det +noun +prep +det +verb +pron +det +noun +det +noun +prep +pron +adv +verb +conj +adj +prep +noun +verb +det +verb +pron +noun +conj +pron +det +verb +noun +prep +pron +prep +det +noun +det +noun +noun +prep +noun +prep +noun +noun +pron +prep +noun +noun +verb +noun +det +adv +verb +noun +conj +det +adv +verb +det +noun +det +noun +pron +noun +pron +verb +noun +noun +adj +prep +noun +det +noun +conj +prep +det +noun +det +noun +pron +conj +verb +verb +prep +det +adj +pron +conj +verb +prep +adj +det +verb +prep +det +noun +pron +conj +verb +det +noun +pron +prep +pron +prep +pron +adv +verb +adv +prep +pron +conj +pron +verb +det +noun +det +noun +pron +conj +verb +adj +noun +noun +conj +noun +noun +prep +noun +conj +verb +det +noun +det +noun +pron +noun +prep +pron +conj +pron +prep +pron +prep +det +noun +det +noun +pron +conj +noun +noun +noun +conj +noun +verb +pron +prep +det +noun +det +noun +pron +noun +noun +conj +pron +noun +prep +pron +prep +det +adv +adv +verb +pron +prep +det +noun +conj +verb +conj +prep +noun +conj +prep +noun +conj +prep +noun +adv +prep +pron +conj +conj +verb +det +noun +det +noun +adv +pron +pron +verb +prep +adj +noun +conj +conj +adv +verb +det +noun +adj +conj +verb +det +noun +det +noun +det +noun +det +noun +det +verb +conj +verb +prep +adj +verb +noun +conj +noun +conj +pron +prep +det +noun +det +noun +verb +verb +pron +conj +verb +noun +adv +verb +conj +adv +verb +prep +pron +pron +verb +pron +conj +adv +det +verb +verb +prep +det +verb +pron +prep +det +pron +noun +conj +det +noun +det +noun +adv +verb +adj +det +verb +adv +conj +prep +adj +verb +conj +adv +verb +det +adj +pron +det +noun +noun +verb +det +noun +det +noun +pron +conj +verb +det +noun +det +noun +pron +pron +det +noun +verb +prep +noun +det +noun +prep +adj +noun +conj +noun +conj +noun +noun +conj +prep +adj +noun +noun +det +verb +prep +pron +det +noun +det +noun +adv +verb +prep +det +verb +pron +conj +prep +pron +verb +pron +det +noun +noun +noun +prep +det +verb +pron +det +noun +conj +verb +adj +det +adv +verb +det +noun +conj +verb +det +noun +conj +pron +verb +verb +det +noun +adv +prep +pron +noun +verb +prep +noun +conj +verb +pron +det +noun +prep +noun +prep +noun +prep +noun +noun +conj +noun +noun +prep +pron +adv +verb +pron +prep +det +noun +pron +prep +noun +noun +det +noun +pron +noun +noun +conj +conj +noun +verb +conj +verb +det +noun +pron +verb +conj +prep +noun +conj +prep +noun +pron +conj +pron +det +noun +pron +noun +noun +conj +det +noun +det +noun +pron +det +verb +pron +conj +verb +noun +adj +conj +noun +adj +prep +noun +verb +pron +det +noun +conj +verb +prep +adj +noun +conj +noun +adj +noun +det +adj +verb +prep +pron +conj +det +noun +det +noun +verb +conj +verb +conj +adv +prep +pron +conj +conj +verb +prep +det +adj +conj +adj +noun +conj +adv +adj +det +noun +conj +adj +verb +det +noun +pron +verb +pron +conj +verb +prep +det +adj +conj +verb +prep +noun +prep +pron +conj +pron +verb +conj +verb +conj +verb +conj +det +noun +verb +pron +det +noun +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +noun +verb +pron +prep +noun +det +noun +noun +noun +verb +pron +prep +adj +noun +adv +verb +conj +adv +prep +det +noun +pron +verb +prep +pron +conj +pron +verb +conj +verb +verb +pron +conj +adv +verb +prep +pron +conj +adv +noun +verb +prep +pron +conj +prep +noun +conj +noun +noun +conj +noun +verb +prep +det +adv +verb +pron +pron +adv +conj +adv +verb +noun +conj +conj +pron +noun +verb +pron +prep +det +verb +pron +conj +adv +conj +verb +prep +pron +pron +verb +pron +adv +conj +pron +adv +verb +verb +adv +verb +conj +verb +pron +verb +prep +pron +adv +adj +verb +conj +verb +conj +det +pron +verb +conj +verb +prep +noun +noun +noun +conj +prep +noun +verb +det +pron +noun +verb +conj +noun +pron +adv +verb +verb +conj +conj +pron +adv +verb +det +noun +pron +prep +det +noun +pron +verb +adv +verb +pron +conj +verb +conj +adv +conj +adj +verb +conj +verb +conj +noun +conj +pron +det +noun +det +noun +verb +pron +det +noun +prep +adj +prep +adj +noun +det +noun +prep +adj +pron +det +noun +det +adj +noun +noun +pron +verb +noun +prep +adj +noun +adv +verb +det +noun +det +noun +pron +noun +noun +prep +adj +pron +noun +noun +noun +noun +prep +noun +noun +noun +pron +conj +noun +noun +det +noun +pron +noun +adj +noun +prep +noun +noun +noun +noun +prep +noun +noun +conj +noun +noun +det +noun +pron +conj +verb +pron +verb +prep +noun +verb +prep +noun +conj +verb +pron +adv +verb +conj +verb +noun +conj +noun +adj +pron +noun +verb +adv +conj +noun +noun +det +prep +noun +conj +det +noun +det +noun +verb +noun +prep +adj +noun +conj +noun +adj +conj +noun +adj +pron +verb +pron +verb +prep +noun +verb +verb +noun +adv +verb +conj +pron +verb +conj +prep +pron +verb +conj +verb +conj +adj +det +noun +conj +pron +pron +adv +verb +verb +pron +adv +adv +adj +noun +verb +conj +adj +conj +adj +adj +conj +adj +adj +conj +adj +noun +conj +noun +noun +noun +noun +noun +noun +adj +conj +conj +pron +adj +verb +det +verb +noun +prep +det +noun +det +noun +det +adj +noun +pron +verb +pron +noun +verb +det +verb +pron +noun +noun +det +noun +pron +conj +adj +pron +verb +verb +prep +noun +det +adj +verb +adj +conj +noun +conj +noun +conj +verb +conj +verb +verb +prep +noun +conj +verb +det +noun +det +noun +pron +prep +noun +conj +noun +det +prep +noun +noun +det +noun +adj +conj +adj +noun +adj +adv +noun +noun +verb +prep +det +noun +adj +verb +pron +adj +verb +pron +conj +prep +pron +verb +conj +prep +pron +adj +verb +noun +noun +det +adj +noun +prep +noun +det +verb +verb +prep +pron +prep +noun +adj +conj +det +noun +det +noun +adj +adj +adj +noun +noun +conj +noun +prep +det +noun +det +noun +ptcl +noun +noun +pron +det +noun +verb +pron +prep +det +verb +prep +pron +noun +adv +verb +prep +pron +det +adj +noun +verb +noun +conj +adj +noun +pron +verb +pron +prep +det +noun +verb +pron +verb +noun +conj +noun +pron +verb +det +noun +conj +verb +adv +verb +conj +verb +adj +adj +verb +noun +noun +noun +noun +prep +adj +noun +prep +noun +conj +adj +det +prep +noun +verb +conj +adj +conj +adj +noun +verb +prep +adj +noun +conj +noun +pron +adj +conj +adj +prep +det +noun +pron +noun +pron +verb +adj +noun +verb +conj +prep +noun +noun +verb +conj +adj +noun +adj +adv +noun +noun +conj +noun +noun +noun +noun +det +verb +pron +noun +prep +adj +det +noun +noun +adj +prep +pron +verb +pron +noun +conj +noun +noun +noun +prep +noun +conj +noun +noun +verb +adv +verb +conj +verb +verb +det +noun +prep +adj +noun +verb +adj +noun +prep +noun +conj +noun +adv +noun +prep +noun +adj +prep +noun +conj +noun +verb +pron +adv +prep +noun +conj +noun +conj +noun +conj +noun +adj +conj +prep +pron +verb +noun +verb +noun +noun +adj +noun +prep +noun +verb +prep +adj +noun +conj +verb +adv +verb +noun +conj +verb +noun +conj +verb +prep +noun +conj +noun +adj +verb +adv +noun +conj +noun +adv +verb +conj +det +noun +verb +prep +noun +verb +conj +verb +prep +det +noun +conj +verb +prep +noun +conj +noun +conj +noun +prep +noun +adj +det +noun +conj +pron +noun +verb +adj +noun +verb +conj +verb +det +noun +verb +adj +adj +noun +noun +adj +adj +adj +adj +adj +adv +adj +adv +noun +conj +adj +adj +adj +det +adj +noun +adv +verb +noun +verb +prep +noun +prep +adj +noun +conj +conj +pron +det +adj +noun +verb +adv +verb +adv +noun +noun +verb +adv +adj +conj +adv +verb +prep +noun +det +adj +verb +conj +verb +adv +noun +adj +verb +prep +det +adv +conj +adv +verb +prep +noun +conj +noun +det +adj +adv +noun +adj +adv +adj +adv +noun +adj +verb +adv +adj +verb +det +noun +det +noun +prep +adj +noun +conj +adv +pron +verb +adj +adv +verb +adj +verb +adv +noun +adj +adv +adj +adj +adj +prep +adj +noun +verb +adj +noun +noun +adv +verb +noun +conj +det +adj +noun +conj +det +adv +verb +noun +adj +pron +verb +conj +adj +noun +prep +noun +det +prep +noun +noun +pron +pron +verb +verb +verb +prep +pron +noun +conj +conj +verb +conj +verb +adv +verb +verb +prep +noun +noun +pron +verb +noun +noun +verb +noun +conj +noun +det +noun +conj +adv +adj +verb +det +det +noun +noun +pron +verb +prep +noun +verb +prep +noun +verb +noun +verb +prep +noun +verb +prep +noun +verb +prep +noun +conj +det +noun +adv +verb +conj +prep +adj +noun +verb +pron +det +noun +verb +noun +adj +conj +noun +noun +prep +noun +adj +verb +det +adj +noun +verb +verb +verb +noun +pron +det +noun +verb +prep +noun +prep +noun +det +adj +conj +verb +det +noun +conj +adj +noun +noun +adj +conj +adj +adj +prep +noun +verb +conj +verb +prep +noun +noun +conj +noun +pron +verb +det +noun +verb +adj +noun +noun +noun +verb +det +noun +det +noun +conj +det +adj +noun +pron +verb +conj +det +adj +conj +adj +noun +verb +conj +verb +pron +prep +noun +conj +det +adj +noun +prep +adj +verb +adj +conj +det +noun +prep +adj +adj +verb +verb +noun +noun +det +adv +conj +det +verb +det +noun +adj +conj +adj +noun +adj +conj +prep +pron +verb +conj +verb +conj +verb +prep +noun +verb +pron +verb +noun +adj +noun +adv +adj +pron +verb +conj +verb +adj +pron +det +noun +verb +conj +verb +noun +det +adj +prep +noun +prep +noun +prep +noun +prep +noun +prep +noun +conj +verb +verb +det +noun +det +noun +det +noun +adv +verb +det +prep +pron +noun +pron +verb +pron +prep +noun +prep +noun +det +noun +det +noun +pron +verb +prep +pron +verb +conj +pron +det +noun +adj +verb +adj +verb +pron +conj +det +noun +verb +pron +conj +pron +verb +verb +conj +pron +conj +det +verb +pron +adj +adv +verb +conj +verb +conj +noun +adj +conj +noun +adj +conj +noun +adj +conj +noun +prep +adj +noun +verb +noun +det +adv +noun +conj +conj +pron +noun +noun +conj +adj +verb +verb +adv +det +adj +noun +verb +conj +noun +verb +det +noun +conj +pron +verb +adj +prep +det +noun +conj +det +adv +noun +conj +verb +verb +prep +noun +conj +verb +det +noun +conj +det +noun +noun +conj +noun +conj +det +verb +verb +verb +adv +pron +verb +conj +adj +verb +conj +conj +pron +det +adj +conj +adv +adj +adv +verb +det +noun +verb +conj +verb +adj +adj +noun +verb +adv +adj +noun +num +verb +adj +noun +noun +prep +noun +adj +verb +conj +verb +conj +verb +conj +adj +noun +verb +conj +verb +verb +conj +adj +noun +adj +verb +conj +adj +noun +verb +conj +conj +verb +det +noun +verb +verb +verb +noun +conj +det +adj +noun +verb +conj +adv +adv +adj +verb +verb +det +noun +conj +adv +adj +adj +conj +adv +adj +conj +adj +verb +det +adv +verb +conj +verb +adj +verb +verb +verb +adj +noun +verb +det +verb +noun +prep +conj +adv +pron +verb +prep +det +noun +conj +pron +adj +verb +noun +verb +pron +conj +adv +verb +det +noun +conj +det +adv +noun +verb +det +adv +verb +adj +adj +noun +verb +adv +det +verb +prep +noun +conj +noun +conj +verb +det +noun +noun +verb +adv +verb +conj +adj +det +noun +det +noun +pron +prep +adj +noun +adv +verb +adv +conj +adv +prep +num +conj +adj +noun +det +verb +prep +adj +verb +conj +adv +det +adj +noun +verb +verb +prep +det +noun +conj +noun +noun +conj +det +adj +noun +conj +pron +verb +prep +noun +adj +verb +prep +noun +noun +adv +adj +verb +conj +verb +noun +adj +pron +adj +verb +adv +verb +conj +noun +adj +verb +prep +det +noun +conj +det +adj +pron +noun +pron +noun +det +noun +adj +verb +verb +prep +noun +conj +pron +adv +verb +adv +adv +det +noun +det +adj +adj +conj +det +adv +verb +verb +adv +verb +pron +verb +prep +noun +noun +det +adj +noun +adj +noun +adj +verb +conj +adv +det +noun +det +noun +conj +det +noun +verb +conj +det +verb +adj +noun +adv +verb +conj +noun +verb +conj +adv +verb +conj +verb +adj +conj +adj +det +det +noun +verb +pron +verb +conj +verb +conj +pron +verb +conj +adv +verb +verb +noun +det +det +noun +pron +noun +noun +conj +det +prep +noun +noun +verb +adj +verb +conj +verb +prep +noun +conj +noun +prep +pron +verb +noun +noun +noun +noun +adj +noun +noun +verb +det +noun +conj +verb +det +noun +verb +noun +verb +det +noun +conj +verb +noun +adj +det +noun +prep +noun +conj +adj +verb +prep +det +noun +conj +adv +verb +pron +verb +conj +verb +noun +conj +noun +pron +verb +conj +det +verb +verb +verb +prep +noun +conj +noun +conj +noun +adj +adj +conj +adj +pron +verb +det +noun +prep +noun +conj +noun +conj +noun +adj +det +adj +verb +det +noun +pron +verb +pron +verb +prep +det +noun +conj +pron +verb +noun +adj +conj +intj +noun +noun +pron +pron +verb +conj +verb +noun +noun +noun +noun +noun +noun +verb +det +adj +noun +det +noun +verb +det +adj +noun +prep +pron +verb +conj +verb +det +adj +noun +prep +adj +noun +verb +prep +det +noun +det +verb +det +adj +conj +noun +noun +det +verb +prep +noun +noun +det +adj +noun +verb +pron +det +noun +adj +adj +prep +det +noun +det +noun +pron +noun +noun +pron +noun +adj +verb +det +adj +conj +adj +noun +det +noun +det +verb +conj +noun +det +verb +det +adj +verb +noun +noun +adj +verb +pron +verb +adj +noun +conj +verb +verb +pron +noun +conj +noun +adj +ptcl +det +adj +prep +det +adv +noun +verb +adv +verb +conj +verb +prep +noun +noun +conj +prep +noun +det +verb +pron +adj +adv +prep +noun +verb +verb +prep +noun +adj +adj +verb +adj +verb +pron +noun +adj +prep +det +verb +conj +verb +det +adv +noun +ptcl +noun +det +noun +verb +verb +det +adj +noun +conj +noun +det +adj +noun +pron +verb +pron +prep +det +noun +verb +det +noun +prep +pron +noun +noun +noun +noun +prep +noun +noun +prep +noun +noun +det +prep +noun +noun +noun +adj +noun +noun +noun +noun +prep +noun +noun +conj +noun +noun +det +noun +pron +noun +verb +det +noun +pron +verb +prep +noun +prep +adj +noun +adv +adj +verb +det +prep +pron +noun +prep +det +noun +pron +noun +conj +noun +verb +pron +verb +verb +pron +det +noun +conj +noun +verb +verb +noun +det +prep +pron +adj +noun +pron +verb +adj +prep +det +noun +pron +noun +conj +det +noun +pron +noun +conj +verb +conj +adv +prep +pron +prep +pron +noun +verb +pron +verb +det +noun +det +noun +pron +verb +prep +pron +prep +det +noun +det +noun +pron +conj +adv +verb +pron +det +noun +noun +noun +conj +noun +conj +noun +conj +noun +conj +adv +verb +det +noun +det +noun +pron +conj +pron +det +noun +pron +conj +verb +det +noun +prep +noun +noun +det +verb +pron +conj +verb +noun +adj +adv +prep +det +noun +pron +conj +prep +adj +noun +conj +noun +det +verb +pron +prep +noun +noun +prep +noun +adj +conj +verb +adv +prep +det +noun +det +noun +pron +noun +noun +conj +verb +det +noun +conj +verb +noun +conj +noun +prep +det +noun +prep +pron +verb +pron +noun +conj +noun +conj +noun +prep +pron +noun +adv +pron +verb +conj +adv +verb +conj +verb +pron +verb +conj +verb +conj +verb +adj +det +noun +pron +verb +prep +pron +det +noun +verb +noun +verb +noun +pron +prep +pron +verb +prep +noun +conj +noun +det +prep +noun +noun +det +adj +noun +verb +prep +noun +adj +det +verb +prep +pron +verb +pron +adv +verb +pron +adj +det +prep +det +noun +pron +verb +noun +conj +noun +verb +noun +det +noun +det +noun +noun +conj +adv +pron +verb +conj +adv +det +noun +pron +verb +conj +verb +prep +noun +adv +verb +pron +conj +verb +verb +pron +det +noun +verb +noun +prep +noun +prep +pron +det +noun +conj +pron +prep +noun +verb +adj +pron +verb +conj +noun +pron +pron +verb +prep +det +noun +det +prep +noun +noun +conj +pron +verb +prep +pron +prep +adj +noun +pron +verb +adj +noun +pron +adj +verb +adv +adj +verb +verb +conj +adj +noun +noun +noun +adj +verb +verb +det +det +noun +noun +conj +det +verb +verb +conj +conj +adv +verb +pron +adv +verb +conj +adv +adv +verb +verb +det +verb +noun +adj +det +noun +verb +verb +pron +verb +conj +verb +pron +det +noun +noun +prep +adj +verb +noun +noun +verb +prep +adj +prep +noun +noun +prep +det +noun +pron +prep +pron +verb +prep +noun +conj +adj +conj +det +noun +det +noun +adv +verb +prep +pron +adj +verb +prep +det +adj +conj +adv +pron +verb +noun +det +prep +noun +noun +prep +noun +adj +adj +det +noun +conj +conj +verb +adv +verb +conj +verb +adv +verb +conj +verb +pron +verb +pron +conj +verb +pron +adj +verb +conj +verb +pron +adv +verb +pron +verb +verb +prep +det +noun +adv +verb +prep +adj +adj +prep +noun +det +verb +verb +verb +pron +adj +det +noun +noun +adj +verb +det +noun +det +noun +conj +det +adj +noun +verb +conj +prep +adj +noun +verb +conj +det +noun +pron +conj +noun +noun +verb +pron +verb +noun +conj +noun +pron +prep +det +noun +verb +verb +noun +adv +verb +conj +verb +det +pron +noun +conj +det +adj +noun +det +noun +verb +verb +det +noun +pron +verb +noun +det +verb +pron +conj +verb +prep +noun +adj +det +verb +det +noun +noun +conj +prep +adj +noun +verb +adv +adj +noun +adj +conj +adj +conj +adv +adj +conj +adj +conj +conj +pron +prep +noun +conj +pron +prep +noun +conj +conj +pron +verb +pron +prep +pron +verb +noun +prep +noun +verb +adj +det +noun +prep +adj +noun +adj +verb +conj +det +adj +noun +verb +conj +verb +noun +noun +noun +noun +prep +det +verb +det +noun +prep +adj +noun +conj +det +adj +conj +adj +noun +verb +verb +conj +verb +noun +conj +verb +noun +noun +adv +verb +conj +verb +adj +prep +adj +adj +adj +prep +noun +verb +det +verb +ptcl +adv +verb +pron +det +noun +noun +prep +noun +noun +conj +verb +prep +det +det +adj +noun +verb +prep +pron +prep +det +pron +noun +conj +pron +verb +adv +prep +adj +noun +verb +noun +adj +conj +verb +det +noun +adj +adj +noun +adj +adj +noun +adj +adj +adj +adj +adj +adj +adj +adj +adj +noun +adj +verb +adj +adv +conj +adj +verb +noun +noun +conj +det +noun +pron +verb +conj +pron +verb +conj +prep +pron +verb +det +verb +prep +det +noun +conj +verb +noun +verb +noun +verb +noun +adj +adv +verb +conj +adv +prep +noun +noun +verb +verb +conj +pron +noun +noun +conj +noun +verb +noun +adv +adv +pron +verb +det +noun +noun +verb +det +noun +adj +prep +det +noun +conj +adv +verb +prep +adj +conj +det +noun +pron +adj +verb +adj +conj +adv +det +pron +verb +conj +pron +verb +pron +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +pron +pron +verb +prep +noun +prep +noun +prep +noun +pron +noun +verb +conj +prep +adj +pron +verb +det +noun +conj +adv +adj +det +verb +verb +adv +prep +noun +noun +verb +conj +adj +noun +conj +noun +verb +prep +det +adj +verb +conj +verb +conj +pron +verb +prep +pron +verb +conj +verb +verb +prep +pron +verb +conj +conj +prep +noun +verb +adj +noun +det +verb +pron +verb +prep +noun +prep +noun +det +prep +noun +noun +adj +noun +adj +conj +adj +prep +noun +prep +noun +prep +noun +prep +noun +det +prep +noun +conj +adj +verb +det +det +noun +noun +prep +adj +noun +adj +verb +verb +prep +det +noun +conj +noun +noun +det +verb +verb +verb +conj +adj +conj +det +noun +pron +conj +det +noun +pron +verb +det +noun +verb +adv +adv +verb +verb +verb +prep +adj +noun +conj +noun +conj +verb +noun +adv +adv +det +verb +noun +verb +conj +prep +det +adj +noun +pron +verb +noun +verb +det +noun +conj +conj +prep +det +noun +det +noun +verb +conj +prep +det +noun +verb +conj +pron +verb +prep +adj +verb +verb +noun +noun +det +noun +pron +verb +conj +pron +adv +verb +conj +det +noun +det +noun +pron +verb +det +adj +noun +verb +det +noun +verb +det +noun +verb +adj +verb +pron +det +det +noun +noun +pron +verb +pron +det +noun +det +adj +noun +prep +pron +det +noun +conj +adv +adj +pron +conj +adv +adj +det +verb +det +noun +pron +verb +verb +prep +pron +adv +conj +noun +pron +verb +verb +det +adv +noun +conj +verb +prep +noun +noun +prep +noun +noun +prep +noun +noun +verb +adj +prep +pron +noun +verb +verb +prep +pron +conj +verb +pron +adj +prep +noun +conj +noun +verb +prep +noun +det +noun +pron +verb +prep +noun +prep +noun +verb +verb +conj +det +noun +adv +det +noun +noun +det +noun +adj +adj +pron +verb +verb +pron +det +noun +prep +det +noun +pron +pron +adv +pron +verb +conj +adv +verb +det +adj +noun +prep +det +adj +pron +noun +adj +pron +verb +conj +adj +pron +verb +adv +pron +verb +conj +det +noun +pron +verb +conj +verb +pron +conj +prep +pron +det +noun +verb +conj +verb +adj +det +noun +conj +verb +prep +noun +noun +verb +pron +det +noun +prep +adj +noun +adj +conj +verb +prep +det +noun +pron +det +adj +pron +det +noun +prep +det +noun +det +noun +ptcl +verb +noun +conj +noun +conj +det +noun +noun +noun +verb +prep +noun +conj +noun +verb +prep +noun +verb +verb +prep +noun +verb +verb +pron +noun +conj +noun +conj +noun +conj +noun +conj +det +noun +adj +det +noun +prep +det +noun +pron +det +noun +prep +pron +noun +noun +noun +conj +noun +noun +noun +prep +noun +adj +noun +conj +noun +noun +det +prep +noun +prep +noun +noun +adj +pron +verb +det +adj +noun +prep +noun +adj +conj +verb +noun +adj +det +noun +pron +prep +noun +pron +verb +pron +prep +noun +det +noun +pron +noun +noun +adj +noun +prep +adj +noun +noun +conj +noun +prep +noun +noun +conj +noun +noun +det +noun +pron +pron +prep +verb +pron +prep +noun +conj +det +verb +verb +conj +verb +prep +noun +adj +conj +pron +pron +verb +conj +pron +verb +adj +adj +noun +noun +verb +noun +adj +adv +prep +noun +noun +conj +adj +conj +verb +det +noun +verb +conj +noun +noun +adj +adv +adj +adv +adj +adv +adj +adv +noun +adv +adj +conj +adj +adj +adj +adj +adj +adj +verb +det +prep +det +noun +adj +noun +conj +verb +adj +conj +verb +prep +det +noun +det +verb +conj +det +verb +verb +conj +verb +adj +adj +adj +conj +noun +adv +det +prep +det +noun +pron +verb +verb +pron +adj +noun +verb +verb +pron +adv +verb +adj +noun +prep +verb +pron +prep +pron +adj +pron +noun +noun +adv +noun +adj +noun +noun +adj +det +noun +pron +verb +adj +prep +pron +noun +verb +pron +adv +conj +verb +prep +det +noun +adv +verb +adj +noun +conj +noun +noun +verb +det +noun +adj +adj +det +adj +conj +det +verb +conj +adj +adj +adj +conj +verb +pron +conj +det +noun +conj +det +noun +noun +verb +verb +conj +det +noun +verb +verb +adj +conj +adj +conj +prep +adj +noun +adj +adj +conj +pron +verb +pron +verb +det +verb +noun +noun +verb +adj +adj +adj +verb +det +noun +det +noun +det +noun +noun +adv +prep +noun +adj +adv +adj +adv +noun +adj +verb +adj +conj +verb +det +adj +verb +adj +adj +adj +adj +adj +adj +verb +det +adj +noun +conj +adv +det +noun +det +noun +verb +det +adj +adv +verb +verb +prep +adj +pron +verb +noun +adj +noun +prep +det +noun +noun +noun +noun +adj +adj +conj +det +prep +adj +verb +verb +verb +prep +pron +adj +adj +noun +adj +noun +verb +prep +adj +adj +verb +adv +verb +adv +verb +conj +adj +noun +adj +verb +conj +det +noun +det +det +noun +pron +noun +verb +prep +adj +conj +verb +det +noun +det +noun +adj +adj +noun +verb +pron +conj +verb +det +noun +conj +det +adj +noun +adv +conj +adv +conj +adv +verb +prep +det +adv +noun +verb +det +adj +noun +conj +noun +det +noun +det +adj +noun +conj +noun +pron +noun +noun +pron +verb +pron +prep +pron +conj +verb +pron +prep +adj +noun +conj +verb +pron +noun +adj +noun +adj +noun +pron +verb +conj +verb +conj +verb +prep +adj +noun +adj +pron +verb +verb +pron +noun +noun +verb +verb +prep +adj +noun +adj +adj +verb +adj +verb +adj +verb +adj +adj +noun +verb +prep +adj +noun +conj +verb +adv +adv +pron +adj +adj +verb +verb +noun +conj +noun +adj +prep +noun +conj +noun +verb +adj +verb +pron +conj +conj +det +noun +conj +det +noun +det +noun +pron +noun +verb +adv +prep +noun +det +prep +noun +pron +verb +pron +conj +prep +det +pron +noun +verb +pron +prep +noun +noun +conj +noun +noun +adj +pron +verb +prep +pron +adv +prep +noun +noun +det +noun +pron +conj +verb +det +pron +noun +noun +verb +prep +noun +noun +adj +adj +det +noun +conj +prep +pron +verb +pron +verb +conj +verb +adj +noun +verb +det +verb +noun +pron +verb +adj +conj +adj +det +noun +conj +adj +noun +conj +noun +conj +noun +conj +noun +adj +verb +conj +verb +adj +conj +adj +adj +noun +prep +adj +conj +adj +noun +verb +verb +conj +det +pron +verb +conj +verb +verb +adj +conj +verb +prep +pron +noun +conj +noun +verb +verb +prep +pron +prep +noun +conj +adv +verb +verb +noun +det +adj +conj +noun +adv +verb +conj +adj +pron +verb +conj +verb +adv +det +adj +adj +noun +verb +prep +det +adj +noun +conj +adv +verb +adj +verb +pron +det +prep +pron +adj +verb +det +verb +pron +prep +noun +det +noun +prep +adj +pron +noun +noun +noun +noun +conj +noun +det +noun +noun +det +adj +conj +adj +pron +conj +noun +det +noun +conj +noun +det +noun +pron +conj +det +prep +noun +pron +noun +pron +noun +conj +noun +prep +noun +noun +pron +conj +noun +noun +noun +verb +det +noun +pron +adv +noun +pron +verb +prep +det +noun +pron +verb +pron +det +noun +conj +det +noun +pron +verb +prep +det +noun +noun +conj +prep +adj +det +adj +conj +det +noun +det +noun +pron +adj +verb +prep +noun +adj +adj +det +prep +pron +prep +noun +conj +noun +adj +conj +noun +verb +prep +det +noun +pron +conj +det +noun +det +adj +verb +prep +pron +noun +conj +adj +prep +noun +noun +verb +verb +pron +det +verb +prep +det +noun +adv +verb +pron +verb +conj +noun +noun +conj +adv +adv +noun +noun +noun +verb +pron +prep +det +adj +noun +verb +prep +det +noun +pron +noun +det +adv +pron +adj +conj +adv +conj +pron +conj +pron +adj +verb +pron +pron +pron +pron +verb +det +adj +noun +pron +verb +pron +prep +pron +verb +conj +prep +pron +pron +verb +prep +det +noun +det +noun +conj +prep +det +adj +noun +adj +verb +verb +conj +adv +conj +prep +noun +det +adj +pron +verb +conj +prep +adj +conj +adv +prep +pron +verb +prep +noun +conj +adj +pron +verb +adv +conj +noun +conj +prep +noun +noun +adj +adv +pron +conj +pron +adv +pron +conj +prep +noun +conj +prep +noun +conj +conj +pron +verb +noun +verb +pron +conj +pron +conj +conj +pron +pron +verb +conj +verb +pron +pron +verb +pron +noun +verb +det +adj +noun +pron +verb +conj +adv +verb +pron +conj +adv +pron +pron +verb +ptcl +noun +pron +pron +verb +prep +noun +verb +pron +det +noun +prep +noun +verb +det +noun +pron +verb +pron +verb +conj +adv +prep +pron +verb +verb +conj +adv +adv +verb +pron +noun +conj +verb +conj +prep +det +noun +pron +verb +pron +verb +pron +noun +det +adj +pron +prep +noun +noun +noun +noun +noun +noun +det +adj +pron +det +noun +det +noun +noun +noun +prep +det +noun +pron +adv +conj +adv +adv +verb +det +noun +prep +det +noun +det +noun +prep +adj +det +noun +pron +verb +pron +prep +noun +pron +verb +noun +adj +prep +pron +adv +verb +det +noun +pron +verb +noun +det +noun +conj +noun +det +noun +pron +conj +verb +det +adj +det +noun +det +noun +pron +noun +det +noun +verb +verb +prep +adj +det +noun +prep +adj +pron +adj +verb +det +noun +pron +adj +noun +prep +pron +verb +conj +pron +det +noun +verb +adv +noun +pron +verb +pron +pron +adv +verb +pron +conj +adv +pron +verb +pron +prep +noun +conj +pron +verb +pron +prep +noun +conj +conj +adv +verb +det +adj +prep +det +noun +verb +conj +verb +pron +adj +noun +noun +conj +conj +prep +det +noun +verb +det +verb +det +noun +pron +noun +conj +det +noun +pron +noun +noun +conj +prep +det +noun +det +noun +det +noun +pron +prep +det +noun +det +noun +conj +det +noun +det +noun +noun +det +noun +pron +verb +noun +conj +verb +noun +prep +pron +verb +pron +det +noun +det +noun +pron +noun +noun +prep +det +adj +pron +conj +noun +pron +prep +noun +det +noun +verb +conj +noun +det +noun +pron +verb +det +noun +pron +verb +conj +pron +verb +conj +adj +verb +conj +noun +conj +conj +noun +verb +pron +conj +noun +adv +verb +conj +pron +det +pron +verb +conj +det +noun +pron +adv +verb +conj +prep +pron +det +noun +verb +adv +verb +prep +adj +pron +conj +ptcl +verb +det +adj +pron +noun +det +noun +pron +ptcl +adj +verb +adj +noun +prep +noun +verb +prep +det +verb +verb +noun +prep +pron +verb +adv +verb +pron +det +verb +ptcl +adv +verb +conj +conj +det +prep +noun +verb +noun +verb +adj +conj +adj +noun +conj +noun +verb +adj +noun +adv +pron +verb +verb +pron +noun +pron +noun +verb +verb +prep +det +noun +prep +det +verb +prep +pron +verb +verb +det +noun +conj +noun +conj +noun +conj +adj +noun +conj +noun +adj +noun +prep +det +pron +noun +conj +adv +noun +verb +det +noun +det +verb +prep +pron +verb +conj +verb +adv +pron +verb +pron +verb +noun +conj +verb +pron +conj +noun +noun +conj +verb +pron +verb +pron +adj +pron +prep +noun +noun +conj +noun +verb +pron +adj +verb +prep +det +noun +pron +conj +prep +det +verb +pron +det +adj +adj +verb +pron +adj +conj +adv +adv +verb +pron +det +adj +verb +conj +verb +det +adj +pron +prep +noun +verb +noun +prep +det +noun +det +noun +noun +conj +noun +verb +conj +noun +noun +prep +adj +verb +noun +conj +verb +pron +prep +pron +det +adj +conj +prep +pron +det +adj +adj +noun +prep +noun +verb +det +noun +det +noun +pron +prep +noun +verb +conj +conj +det +verb +conj +det +verb +prep +adj +adj +prep +pron +noun +adv +verb +noun +pron +verb +verb +verb +det +noun +pron +det +noun +pron +prep +adj +noun +verb +pron +conj +adv +pron +verb +verb +prep +pron +conj +adv +verb +pron +conj +det +noun +pron +pron +verb +det +noun +conj +conj +det +noun +verb +noun +conj +noun +adv +pron +adv +verb +det +pron +conj +prep +det +noun +verb +det +det +noun +det +noun +verb +pron +verb +det +adj +conj +verb +pron +pron +noun +noun +prep +adj +det +verb +adj +noun +verb +conj +adv +ptcl +noun +verb +conj +noun +noun +verb +conj +verb +prep +adj +det +noun +verb +conj +verb +adj +conj +adj +noun +det +prep +det +noun +prep +det +verb +det +noun +det +noun +conj +prep +pron +verb +pron +verb +verb +det +verb +verb +conj +noun +adj +noun +adj +adj +verb +det +noun +conj +noun +det +noun +pron +noun +adj +verb +det +verb +pron +conj +adv +noun +prep +adj +det +noun +pron +conj +adj +noun +pron +prep +noun +verb +prep +pron +adj +noun +verb +det +noun +det +verb +pron +conj +adj +noun +verb +prep +pron +conj +det +adj +verb +noun +conj +conj +noun +adj +prep +adj +det +noun +pron +conj +noun +prep +noun +det +verb +conj +noun +conj +noun +prep +det +noun +pron +pron +noun +verb +pron +conj +det +noun +conj +det +noun +det +noun +adv +noun +adj +verb +conj +conj +verb +det +noun +det +adj +conj +adv +det +noun +pron +verb +adv +verb +det +noun +pron +conj +prep +det +noun +prep +det +noun +det +noun +prep +det +adj +adv +verb +det +noun +pron +prep +noun +conj +verb +det +noun +pron +num +noun +conj +verb +det +noun +pron +conj +verb +adv +verb +det +noun +conj +pron +adv +verb +det +noun +pron +conj +verb +prep +det +noun +pron +conj +verb +prep +det +noun +pron +verb +noun +ptcl +adv +verb +prep +pron +pron +noun +adj +noun +prep +det +verb +prep +noun +verb +conj +verb +pron +prep +adj +noun +prep +pron +det +adv +verb +conj +adv +verb +pron +prep +pron +noun +det +noun +conj +adj +det +noun +verb +conj +det +noun +det +noun +prep +noun +adj +verb +prep +det +verb +conj +adv +det +noun +pron +verb +adv +verb +det +noun +pron +conj +prep +det +noun +conj +pron +verb +verb +conj +ptcl +adj +det +verb +prep +noun +prep +noun +conj +pron +verb +num +noun +ptcl +det +verb +pron +det +noun +verb +prep +det +adj +conj +pron +verb +adv +verb +prep +det +noun +pron +conj +adv +det +verb +conj +verb +conj +adv +verb +verb +prep +noun +conj +verb +ptcl +adv +verb +noun +verb +prep +det +noun +pron +verb +pron +prep +pron +verb +conj +adv +verb +verb +conj +pron +conj +adv +verb +det +noun +det +noun +pron +adv +verb +det +noun +det +verb +conj +verb +prep +det +noun +det +verb +conj +verb +conj +verb +prep +det +noun +pron +conj +verb +prep +det +noun +pron +conj +det +noun +prep +noun +noun +verb +conj +verb +adv +prep +det +adj +adv +conj +verb +det +noun +prep +det +noun +det +adj +prep +adj +det +noun +pron +conj +prep +pron +adv +conj +verb +prep +det +noun +pron +conj +conj +verb +pron +verb +prep +pron +conj +det +adj +verb +adv +verb +prep +noun +adv +verb +pron +noun +adv +prep +noun +verb +prep +pron +noun +conj +verb +conj +adv +det +noun +pron +verb +adv +verb +det +noun +pron +conj +conj +pron +noun +verb +ptcl +adv +prep +adj +noun +verb +prep +pron +conj +verb +noun +det +noun +det +noun +conj +det +verb +prep +det +noun +pron +adv +pron +verb +prep +det +noun +pron +conj +prep +det +adj +det +noun +conj +verb +verb +prep +pron +det +noun +conj +adv +prep +det +pron +noun +det +noun +pron +verb +conj +det +noun +det +noun +verb +conj +adj +conj +adj +prep +adj +noun +adj +adv +verb +prep +noun +noun +conj +noun +conj +noun +conj +noun +conj +adj +noun +conj +noun +noun +conj +adv +verb +noun +adj +prep +pron +conj +adj +adj +conj +verb +det +noun +pron +prep +pron +pron +det +noun +conj +verb +noun +adj +verb +det +noun +noun +det +noun +det +noun +verb +det +noun +conj +verb +noun +adv +adv +verb +verb +det +noun +pron +conj +verb +prep +adj +prep +noun +prep +noun +conj +verb +prep +noun +det +noun +det +noun +conj +verb +noun +conj +noun +verb +prep +adj +noun +conj +adj +noun +prep +noun +verb +prep +noun +verb +det +prep +det +noun +conj +verb +conj +noun +conj +noun +prep +noun +verb +verb +det +verb +conj +verb +conj +adv +pron +verb +noun +conj +prep +pron +verb +conj +prep +det +noun +adv +adv +prep +pron +verb +prep +noun +conj +adv +pron +pron +verb +det +noun +conj +verb +prep +det +noun +conj +adv +noun +adv +adv +det +noun +adv +pron +verb +verb +noun +conj +det +verb +prep +pron +noun +pron +verb +pron +pron +adv +verb +pron +conj +adv +prep +adj +verb +pron +noun +prep +det +noun +prep +det +noun +noun +pron +prep +det +noun +det +noun +pron +conj +noun +conj +noun +prep +det +verb +verb +pron +prep +noun +prep +noun +adj +conj +noun +verb +conj +verb +prep +det +noun +conj +verb +noun +verb +prep +pron +verb +det +noun +conj +verb +verb +adj +det +verb +pron +adj +noun +adj +verb +prep +det +noun +noun +prep +det +noun +noun +prep +pron +adj +pron +det +noun +conj +adj +verb +conj +adj +verb +det +noun +conj +adv +verb +verb +noun +prep +det +noun +adv +verb +noun +det +verb +pron +pron +det +noun +det +noun +det +noun +det +noun +conj +verb +verb +noun +noun +adv +adj +noun +conj +adj +det +verb +noun +adj +noun +noun +conj +adj +verb +conj +verb +det +adj +noun +adj +det +prep +det +noun +det +noun +verb +verb +prep +noun +conj +adj +conj +adj +conj +verb +det +det +noun +det +noun +noun +prep +det +noun +verb +adv +adv +verb +noun +noun +prep +adj +noun +conj +noun +prep +noun +noun +noun +conj +noun +noun +noun +adj +conj +noun +adj +conj +pron +verb +conj +verb +det +noun +conj +adj +det +adv +verb +conj +verb +det +noun +det +adj +conj +adj +noun +adj +verb +conj +verb +adj +noun +noun +conj +noun +verb +noun +conj +verb +adv +verb +prep +noun +verb +pron +det +noun +det +noun +conj +verb +conj +noun +det +verb +det +prep +pron +verb +adv +noun +conj +verb +noun +adj +pron +prep +pron +adv +verb +verb +noun +prep +det +noun +conj +verb +noun +conj +noun +adj +conj +noun +prep +pron +det +noun +prep +noun +conj +adj +verb +prep +pron +det +adj +conj +verb +noun +conj +adv +adv +verb +conj +adv +adj +det +noun +verb +det +noun +pron +conj +det +noun +pron +verb +prep +det +noun +pron +verb +conj +verb +det +adj +conj +verb +adj +pron +det +pron +noun +verb +prep +det +noun +det +noun +prep +noun +conj +adv +adj +verb +conj +noun +det +prep +noun +conj +noun +verb +det +noun +conj +det +noun +verb +det +noun +conj +prep +adj +adj +verb +verb +verb +prep +pron +verb +conj +ptcl +verb +verb +pron +conj +verb +verb +pron +conj +adv +verb +verb +det +noun +conj +noun +prep +det +adj +verb +conj +pron +adj +noun +noun +prep +noun +det +noun +prep +pron +adj +verb +verb +det +noun +det +noun +det +adj +det +noun +pron +det +noun +verb +noun +conj +prep +num +noun +adj +prep +pron +adj +verb +noun +adj +noun +verb +det +verb +verb +det +verb +noun +pron +verb +conj +noun +det +noun +conj +adj +conj +adj +conj +verb +prep +det +adj +det +noun +adv +adj +noun +prep +pron +verb +prep +det +noun +noun +noun +verb +prep +det +noun +conj +pron +det +noun +noun +noun +noun +det +noun +det +adj +det +verb +noun +verb +prep +det +noun +det +noun +conj +verb +pron +pron +adv +adj +prep +adj +verb +noun +conj +adj +verb +noun +noun +conj +adv +adv +noun +noun +pron +verb +noun +noun +adj +adj +adj +conj +noun +noun +conj +noun +noun +verb +conj +verb +det +noun +det +noun +verb +noun +prep +det +adj +conj +verb +adj +pron +pron +adj +noun +det +noun +verb +prep +det +noun +conj +conj +det +prep +det +noun +noun +det +noun +verb +noun +verb +verb +prep +det +noun +det +noun +pron +verb +det +noun +pron +conj +verb +prep +det +noun +noun +conj +det +adv +verb +prep +pron +verb +noun +conj +det +verb +det +noun +verb +conj +prep +adj +noun +det +adj +prep +det +adj +verb +conj +conj +adv +adj +verb +noun +verb +conj +adv +verb +conj +verb +conj +conj +noun +verb +prep +noun +adv +noun +det +adj +verb +verb +conj +adv +prep +det +noun +det +noun +verb +conj +verb +pron +noun +conj +conj +conj +noun +prep +det +adj +noun +verb +conj +det +noun +prep +pron +verb +pron +adv +noun +prep +det +noun +noun +verb +adj +noun +conj +adv +prep +det +noun +noun +verb +conj +verb +det +noun +prep +noun +adv +noun +noun +verb +conj +prep +pron +verb +pron +noun +adj +verb +prep +pron +adj +verb +det +noun +conj +adj +conj +prep +noun +verb +det +noun +pron +prep +pron +noun +prep +noun +adj +noun +verb +conj +adj +adv +adj +verb +conj +prep +det +noun +noun +verb +noun +adj +pron +verb +adv +prep +noun +noun +adj +conj +prep +noun +noun +adj +conj +verb +conj +pron +noun +prep +det +noun +prep +det +noun +noun +conj +conj +noun +verb +noun +verb +prep +det +pron +adj +conj +adj +conj +adj +verb +det +noun +conj +noun +adj +noun +prep +pron +verb +det +noun +conj +prep +pron +adv +prep +noun +conj +conj +det +prep +noun +verb +verb +noun +conj +det +prep +noun +prep +det +verb +prep +pron +verb +noun +conj +adv +verb +pron +noun +prep +det +noun +prep +pron +adv +adj +noun +adj +verb +noun +conj +conj +det +adj +verb +verb +noun +prep +det +noun +verb +verb +conj +det +prep +det +verb +pron +prep +det +noun +adj +verb +det +noun +conj +adv +verb +verb +prep +det +adj +det +verb +prep +pron +det +noun +adv +verb +prep +det +verb +prep +pron +conj +pron +adv +verb +pron +noun +adj +adj +adj +verb +prep +det +adj +conj +adj +det +noun +verb +pron +adv +verb +prep +noun +noun +conj +det +noun +adj +prep +det +adj +noun +noun +verb +adv +det +det +noun +conj +pron +verb +adv +pron +verb +conj +det +noun +noun +verb +noun +verb +noun +conj +det +noun +det +noun +det +prep +det +noun +noun +prep +det +noun +verb +conj +noun +prep +det +verb +verb +pron +noun +pron +verb +prep +adj +det +noun +det +noun +prep +det +noun +noun +det +adj +conj +det +noun +det +adj +pron +verb +det +noun +adv +noun +conj +adj +noun +prep +det +verb +conj +noun +conj +noun +verb +conj +adj +verb +adv +pron +pron +pron +verb +conj +conj +conj +verb +prep +noun +ptcl +adv +verb +noun +verb +det +verb +prep +noun +det +noun +pron +noun +conj +noun +det +adj +verb +conj +verb +noun +verb +verb +det +noun +conj +verb +verb +verb +adj +prep +det +noun +det +verb +pron +prep +det +noun +conj +adv +adj +noun +verb +pron +adv +verb +noun +adj +noun +pron +prep +adj +noun +verb +conj +conj +det +adj +pron +verb +adj +ptcl +adv +adj +noun +verb +conj +verb +pron +verb +verb +noun +verb +verb +noun +conj +verb +prep +det +noun +noun +conj +prep +det +noun +noun +noun +adj +adv +prep +det +noun +pron +verb +det +noun +pron +prep +noun +verb +pron +det +noun +pron +verb +pron +prep +noun +noun +conj +pron +adv +verb +prep +det +noun +pron +pron +verb +pron +verb +noun +conj +pron +det +noun +pron +verb +det +noun +noun +prep +det +noun +pron +verb +noun +verb +noun +pron +prep +det +noun +pron +conj +prep +noun +pron +verb +pron +conj +verb +pron +prep +noun +conj +pron +verb +pron +prep +noun +conj +adv +adv +verb +adj +det +noun +pron +conj +adj +det +noun +pron +verb +verb +det +noun +conj +adj +verb +pron +prep +adj +prep +adj +pron +conj +adj +verb +det +noun +pron +conj +det +noun +pron +adv +adv +verb +adv +prep +det +verb +adj +verb +det +adj +conj +det +verb +conj +verb +prep +noun +conj +conj +verb +adv +det +adj +noun +noun +conj +det +adj +adj +conj +verb +noun +det +adj +prep +pron +conj +det +noun +conj +det +noun +conj +det +noun +det +noun +pron +verb +adj +conj +prep +det +adj +noun +noun +det +verb +adj +adj +verb +adj +noun +conj +det +noun +det +noun +verb +adv +noun +prep +pron +noun +adj +verb +det +noun +conj +det +noun +noun +det +verb +conj +det +noun +det +noun +conj +prep +pron +noun +noun +verb +det +noun +prep +pron +adv +verb +adv +verb +prep +noun +conj +pron +adv +verb +conj +prep +det +adj +noun +prep +adj +verb +det +noun +det +noun +verb +conj +prep +det +adj +adv +det +noun +adj +det +noun +adv +prep +noun +pron +verb +prep +pron +conj +det +det +noun +noun +pron +verb +det +noun +det +adj +adv +verb +det +det +adj +noun +adv +det +adj +noun +verb +noun +pron +noun +prep +det +noun +det +verb +prep +pron +conj +noun +conj +noun +verb +adv +verb +prep +noun +verb +det +verb +adj +prep +noun +conj +noun +conj +adj +noun +noun +noun +prep +noun +noun +verb +conj +verb +noun +noun +det +verb +adj +prep +det +adj +conj +adj +noun +adv +adj +pron +verb +adv +pron +det +noun +conj +prep +noun +noun +conj +noun +conj +prep +det +adj +noun +verb +adv +prep +det +adj +adj +noun +verb +conj +conj +det +noun +noun +conj +noun +conj +noun +noun +verb +det +verb +verb +prep +det +det +noun +noun +pron +adv +det +noun +det +noun +pron +prep +noun +adj +pron +verb +adj +det +noun +verb +det +noun +pron +prep +adj +noun +prep +det +verb +noun +verb +conj +prep +pron +noun +adj +noun +verb +conj +noun +verb +prep +noun +det +prep +det +adj +noun +noun +verb +det +verb +det +noun +det +adj +noun +conj +conj +noun +noun +verb +noun +det +verb +conj +noun +prep +adj +adj +conj +ptcl +adv +verb +conj +verb +det +verb +conj +adv +det +adj +prep +noun +verb +conj +verb +adj +noun +prep +det +noun +prep +noun +adj +det +noun +verb +det +noun +det +noun +conj +det +noun +prep +noun +conj +noun +adj +conj +noun +conj +pron +det +noun +conj +adj +det +noun +verb +verb +pron +det +noun +det +noun +pron +verb +prep +pron +det +noun +conj +conj +det +noun +conj +adj +det +noun +det +noun +det +noun +adv +verb +conj +adv +prep +noun +adj +verb +prep +det +noun +conj +prep +noun +adv +verb +noun +conj +noun +conj +det +noun +det +prep +det +noun +pron +verb +conj +pron +det +adj +noun +adj +prep +pron +conj +verb +noun +adv +prep +adj +adj +adj +det +adj +conj +prep +pron +det +noun +adv +verb +det +noun +det +noun +prep +pron +conj +conj +adv +verb +pron +conj +det +noun +verb +prep +det +adj +prep +noun +prep +noun +adj +conj +verb +pron +adv +verb +prep +noun +noun +conj +adv +adv +prep +noun +det +noun +prep +noun +det +noun +prep +det +noun +pron +verb +conj +prep +pron +verb +det +noun +adv +verb +conj +prep +pron +noun +adv +adv +det +noun +adv +verb +prep +det +adj +noun +verb +prep +adj +prep +noun +verb +det +pron +verb +prep +noun +conj +det +noun +verb +noun +det +verb +adj +adv +pron +det +noun +det +noun +prep +noun +det +pron +noun +pron +verb +prep +det +adj +adv +verb +det +verb +verb +conj +ptcl +ptcl +verb +verb +prep +det +adj +verb +adv +noun +noun +det +verb +adv +verb +conj +prep +pron +noun +noun +prep +noun +conj +adj +noun +noun +conj +noun +verb +noun +conj +verb +prep +det +noun +verb +noun +conj +noun +adv +verb +conj +noun +verb +pron +noun +conj +prep +noun +adv +verb +adv +verb +det +noun +verb +prep +noun +noun +verb +prep +pron +verb +det +verb +det +noun +pron +adj +verb +conj +noun +conj +noun +conj +noun +conj +prep +noun +adv +verb +conj +verb +pron +prep +noun +verb +adv +verb +verb +verb +det +verb +det +noun +pron +verb +det +adj +conj +det +adj +verb +prep +pron +noun +verb +verb +prep +det +noun +det +noun +noun +noun +adv +conj +conj +adj +noun +verb +prep +noun +verb +conj +adv +verb +det +pron +noun +pron +adv +verb +verb +noun +conj +pron +adj +noun +prep +noun +verb +prep +det +adj +verb +prep +adj +det +noun +det +adj +verb +conj +verb +det +adj +pron +noun +det +noun +pron +conj +adj +noun +verb +prep +det +adj +det +verb +conj +verb +pron +adv +det +noun +det +adj +conj +prep +det +verb +pron +det +noun +pron +verb +prep +pron +prep +det +noun +pron +verb +noun +verb +noun +pron +prep +noun +pron +adv +prep +det +noun +pron +verb +pron +conj +det +noun +pron +conj +det +noun +pron +adv +adv +verb +adv +conj +conj +noun +pron +adv +noun +prep +noun +conj +noun +verb +noun +prep +det +noun +det +adj +prep +det +noun +noun +pron +verb +pron +noun +adj +conj +verb +prep +det +noun +pron +verb +det +noun +pron +conj +noun +adj +prep +det +noun +det +noun +verb +prep +adj +noun +prep +noun +noun +verb +det +noun +prep +noun +adj +conj +verb +det +noun +noun +adj +verb +det +noun +det +noun +adj +conj +adj +det +verb +conj +verb +pron +prep +noun +noun +conj +adj +noun +adv +verb +det +noun +pron +conj +noun +pron +conj +verb +adv +adv +pron +pron +verb +verb +det +noun +conj +adv +verb +pron +prep +det +verb +det +noun +det +noun +adv +prep +noun +verb +noun +conj +adj +pron +noun +noun +conj +noun +noun +verb +verb +det +adj +pron +verb +noun +noun +prep +noun +prep +adj +conj +adj +noun +verb +pron +verb +adj +noun +verb +det +det +noun +det +noun +verb +conj +adj +verb +det +noun +det +noun +prep +pron +verb +conj +det +noun +det +noun +verb +conj +verb +det +verb +pron +noun +pron +verb +conj +adv +verb +noun +det +noun +pron +adj +det +verb +prep +noun +noun +verb +conj +verb +det +adj +noun +prep +pron +verb +verb +adj +noun +noun +conj +pron +conj +noun +conj +noun +verb +conj +pron +noun +det +adv +verb +verb +conj +adv +det +noun +verb +conj +det +noun +det +verb +pron +prep +noun +verb +verb +verb +pron +noun +adj +conj +verb +conj +adv +verb +det +noun +pron +pron +verb +adj +noun +conj +noun +noun +verb +conj +det +noun +det +noun +verb +verb +det +noun +conj +adv +adj +pron +pron +det +verb +verb +conj +adv +verb +conj +det +adj +pron +prep +noun +verb +conj +conj +verb +adv +verb +det +noun +pron +prep +pron +conj +pron +verb +adv +noun +prep +noun +conj +noun +prep +noun +noun +conj +verb +noun +verb +noun +noun +noun +adv +verb +conj +prep +pron +verb +det +adj +noun +verb +verb +det +noun +noun +noun +prep +det +adv +prep +verb +det +verb +verb +noun +noun +adj +noun +prep +noun +verb +det +noun +prep +pron +verb +verb +adj +verb +prep +det +noun +pron +det +noun +conj +prep +pron +verb +adv +verb +noun +noun +verb +det +adv +verb +noun +conj +adv +verb +conj +verb +pron +det +noun +conj +prep +det +noun +verb +verb +det +noun +conj +prep +noun +adj +verb +conj +verb +verb +det +verb +det +noun +conj +verb +conj +det +verb +pron +noun +verb +noun +noun +verb +prep +det +adv +verb +verb +verb +noun +prep +noun +det +noun +pron +prep +pron +verb +det +noun +conj +det +prep +noun +noun +noun +verb +noun +verb +noun +verb +verb +prep +noun +verb +pron +verb +prep +noun +conj +verb +adv +verb +adv +verb +noun +verb +prep +noun +det +noun +conj +adj +prep +noun +verb +prep +noun +conj +noun +det +adj +det +noun +det +pron +conj +verb +det +det +noun +verb +noun +pron +noun +conj +noun +det +noun +noun +adv +pron +noun +noun +prep +noun +noun +verb +adv +prep +noun +noun +conj +adj +verb +det +verb +conj +adv +prep +adj +verb +verb +conj +pron +conj +det +noun +det +noun +det +noun +conj +conj +det +noun +det +prep +det +noun +det +noun +det +adj +prep +noun +verb +pron +adj +adv +verb +det +noun +conj +adv +pron +verb +conj +verb +conj +verb +conj +adj +conj +adj +verb +prep +det +noun +conj +det +pron +verb +verb +conj +noun +verb +conj +conj +conj +verb +pron +prep +pron +verb +ptcl +verb +noun +verb +conj +adv +verb +adj +pron +verb +adj +conj +adv +verb +pron +det +noun +noun +pron +verb +conj +verb +pron +noun +noun +verb +noun +det +noun +verb +conj +det +adj +verb +det +det +noun +verb +prep +pron +verb +conj +prep +noun +verb +pron +noun +verb +conj +adv +prep +adj +verb +adj +det +noun +adv +pron +adv +prep +noun +verb +noun +adv +prep +verb +verb +noun +det +noun +conj +det +noun +noun +noun +verb +adj +det +noun +noun +verb +conj +verb +prep +det +noun +det +noun +pron +noun +noun +verb +prep +det +noun +det +noun +noun +verb +conj +prep +det +noun +pron +verb +noun +noun +verb +verb +adj +prep +det +noun +pron +conj +verb +adj +det +noun +conj +adv +verb +det +noun +det +noun +noun +noun +adj +verb +verb +verb +noun +noun +noun +verb +adv +verb +det +noun +det +noun +conj +adj +verb +noun +noun +adj +noun +verb +det +noun +noun +det +noun +det +noun +conj +verb +prep +det +noun +noun +verb +noun +adv +verb +det +noun +det +noun +conj +det +adj +conj +verb +verb +noun +verb +det +noun +conj +det +noun +det +noun +conj +adv +det +verb +det +adj +verb +pron +noun +verb +det +adj +noun +conj +prep +adj +noun +pron +noun +verb +det +adj +verb +noun +det +noun +noun +verb +verb +prep +num +noun +noun +noun +det +noun +adv +verb +det +verb +verb +det +noun +prep +noun +conj +pron +adv +verb +conj +verb +det +noun +pron +verb +prep +noun +noun +noun +noun +conj +noun +conj +noun +conj +det +noun +pron +prep +noun +verb +noun +verb +noun +verb +noun +verb +noun +noun +verb +noun +noun +verb +noun +noun +verb +prep +noun +verb +adj +prep +noun +noun +adj +verb +verb +noun +prep +noun +det +adj +pron +conj +adj +verb +adv +verb +det +noun +conj +adj +noun +verb +conj +adj +noun +conj +noun +noun +verb +conj +adv +noun +conj +noun +verb +verb +verb +prep +noun +noun +verb +verb +prep +noun +prep +adj +noun +verb +verb +verb +verb +prep +noun +conj +noun +conj +noun +conj +det +noun +det +noun +pron +adv +verb +adj +det +noun +conj +pron +adj +verb +prep +det +noun +adv +verb +det +noun +det +noun +prep +pron +adj +pron +verb +conj +adv +prep +pron +verb +conj +adv +pron +verb +pron +verb +pron +noun +noun +verb +noun +adj +conj +det +adj +noun +prep +noun +verb +det +verb +pron +noun +verb +prep +det +det +noun +noun +conj +noun +noun +pron +prep +det +verb +pron +noun +verb +noun +noun +verb +conj +prep +adj +det +noun +det +noun +verb +conj +verb +det +verb +pron +prep +det +adj +prep +pron +noun +conj +adv +verb +det +noun +pron +verb +adv +prep +noun +verb +prep +det +noun +verb +conj +verb +det +noun +pron +pron +conj +noun +verb +noun +pron +adv +verb +noun +noun +conj +verb +prep +pron +verb +conj +pron +verb +noun +verb +conj +verb +adj +noun +pron +verb +prep +noun +verb +conj +noun +pron +verb +det +noun +conj +pron +noun +pron +adv +verb +noun +conj +conj +verb +prep +noun +pron +adj +verb +adj +conj +adj +conj +adv +noun +verb +conj +adv +det +det +noun +pron +noun +verb +noun +conj +verb +adv +adj +adv +verb +det +noun +det +noun +conj +verb +conj +conj +det +prep +adj +noun +prep +det +verb +pron +verb +conj +det +prep +det +verb +prep +det +verb +det +noun +pron +conj +adj +noun +conj +prep +det +verb +verb +adv +noun +verb +conj +noun +conj +adj +noun +adj +noun +det +prep +pron +verb +verb +conj +det +verb +noun +conj +det +verb +noun +verb +conj +noun +adj +verb +det +noun +pron +conj +adv +det +adj +verb +conj +verb +adv +verb +prep +adj +noun +conj +det +noun +pron +prep +adj +verb +det +noun +verb +conj +pron +verb +prep +det +noun +det +noun +conj +pron +noun +noun +adv +verb +verb +conj +prep +pron +verb +det +adj +conj +pron +noun +conj +adj +conj +noun +pron +prep +noun +adj +verb +det +noun +pron +conj +verb +conj +adv +adv +verb +verb +det +noun +verb +conj +noun +noun +adv +verb +conj +prep +noun +verb +pron +conj +adv +verb +verb +conj +verb +noun +conj +noun +conj +noun +conj +noun +conj +noun +noun +conj +noun +noun +pron +det +verb +verb +adv +verb +pron +noun +conj +adv +verb +det +verb +adv +noun +verb +det +noun +verb +conj +adv +adj +verb +det +verb +noun +verb +verb +adj +conj +adj +conj +verb +noun +noun +conj +noun +noun +verb +noun +adj +conj +noun +noun +noun +conj +noun +adj +verb +prep +noun +conj +noun +adj +noun +conj +noun +adj +verb +conj +noun +adj +noun +noun +conj +noun +noun +adj +verb +prep +det +noun +verb +conj +verb +det +verb +conj +conj +adv +verb +pron +verb +det +prep +noun +verb +adj +adv +pron +det +det +prep +noun +verb +pron +det +noun +det +noun +verb +adv +conj +adv +verb +verb +adv +adv +pron +verb +adv +adj +det +noun +conj +adv +det +noun +conj +det +adv +adv +verb +det +det +verb +noun +conj +verb +conj +verb +det +adv +verb +conj +noun +adj +verb +verb +noun +prep +pron +verb +adv +det +noun +prep +noun +conj +noun +conj +adv +det +noun +pron +noun +verb +det +noun +verb +det +noun +adv +verb +conj +prep +pron +verb +pron +verb +noun +verb +det +noun +conj +verb +det +verb +conj +adv +pron +verb +prep +noun +adj +det +noun +prep +adj +conj +det +noun +adj +conj +noun +conj +noun +verb +det +noun +adj +det +noun +verb +det +verb +conj +pron +verb +adv +adv +pron +verb +conj +adv +adv +pron +verb +conj +verb +pron +verb +noun +pron +noun +adv +verb +pron +verb +pron +noun +verb +det +verb +pron +pron +verb +pron +det +noun +det +noun +pron +det +noun +det +noun +verb +verb +det +noun +noun +noun +adv +conj +adv +det +pron +conj +prep +det +noun +noun +adj +conj +adj +adv +verb +conj +adj +noun +verb +det +noun +adv +noun +prep +pron +adv +verb +det +verb +verb +noun +prep +pron +verb +adv +verb +noun +det +det +noun +verb +conj +verb +pron +noun +det +noun +prep +noun +prep +det +adj +prep +det +noun +pron +det +noun +verb +prep +det +noun +conj +adv +noun +conj +verb +prep +det +adj +noun +det +noun +prep +det +noun +verb +conj +verb +prep +pron +prep +det +noun +det +noun +pron +verb +conj +adv +verb +adv +verb +noun +conj +det +verb +verb +conj +prep +pron +verb +prep +adj +det +noun +noun +noun +pron +verb +noun +noun +verb +det +noun +pron +conj +det +noun +conj +noun +adv +verb +conj +pron +noun +verb +det +noun +verb +det +verb +pron +conj +verb +conj +pron +verb +prep +det +noun +pron +conj +noun +verb +conj +prep +noun +pron +verb +conj +adv +verb +conj +adj +pron +pron +verb +prep +pron +conj +verb +conj +adj +noun +verb +prep +adj +adv +verb +verb +conj +adv +verb +pron +verb +conj +adj +verb +pron +conj +det +noun +det +noun +det +verb +prep +adj +prep +noun +noun +adj +det +noun +det +noun +det +adj +det +noun +pron +noun +verb +pron +prep +adj +adj +prep +det +verb +det +noun +pron +verb +prep +pron +det +adj +prep +pron +prep +noun +noun +pron +det +noun +prep +det +noun +det +noun +ptcl +conj +verb +pron +noun +verb +det +noun +det +noun +conj +adv +prep +adj +verb +pron +verb +det +noun +pron +noun +verb +prep +pron +conj +adj +verb +verb +pron +verb +adj +det +verb +pron +conj +adj +det +adj +verb +pron +det +prep +det +noun +det +noun +prep +adj +pron +noun +noun +conj +noun +noun +noun +noun +det +num +noun +det +prep +det +noun +verb +noun +pron +adj +noun +verb +conj +noun +adj +verb +verb +conj +det +noun +pron +det +noun +verb +noun +conj +det +noun +noun +adj +verb +conj +verb +adj +conj +adj +prep +adj +verb +conj +conj +pron +pron +verb +noun +verb +prep +det +verb +adj +adv +conj +adv +verb +noun +conj +verb +pron +conj +verb +prep +noun +adj +verb +conj +det +verb +verb +noun +noun +verb +conj +verb +conj +adv +verb +det +noun +pron +conj +verb +pron +prep +det +noun +noun +adj +adj +prep +adj +det +noun +pron +conj +verb +det +noun +det +adj +prep +det +noun +pron +conj +det +adj +prep +det +noun +pron +conj +conj +noun +noun +verb +conj +verb +det +noun +prep +det +noun +conj +verb +det +noun +conj +det +noun +pron +verb +conj +det +noun +det +noun +pron +verb +adv +adv +det +adj +prep +det +noun +pron +verb +adj +noun +pron +verb +noun +conj +adj +verb +verb +det +noun +det +noun +pron +verb +det +verb +pron +adj +verb +verb +conj +prep +noun +verb +conj +det +noun +adj +verb +adj +conj +verb +pron +adj +conj +adj +verb +prep +det +adj +noun +verb +conj +verb +adv +det +noun +verb +verb +noun +conj +det +noun +verb +verb +noun +adv +verb +noun +pron +adj +adj +noun +adj +conj +adj +noun +adj +adv +verb +verb +prep +det +noun +det +noun +prep +pron +adv +verb +noun +conj +noun +noun +verb +verb +pron +noun +noun +prep +det +verb +pron +noun +pron +det +pron +noun +verb +noun +pron +adj +conj +verb +adj +noun +adj +prep +det +verb +adj +prep +det +verb +adj +prep +noun +conj +noun +noun +noun +noun +adv +verb +conj +verb +adj +noun +conj +noun +noun +prep +noun +verb +det +adj +noun +det +verb +verb +det +noun +pron +conj +verb +noun +noun +conj +adv +noun +noun +verb +pron +conj +conj +pron +noun +noun +verb +conj +adv +noun +pron +verb +noun +verb +det +noun +det +noun +pron +prep +noun +conj +verb +pron +conj +verb +conj +adv +verb +adj +verb +conj +det +verb +prep +noun +adj +det +det +noun +conj +verb +verb +adv +noun +noun +conj +noun +noun +pron +adj +prep +det +noun +pron +verb +conj +pron +verb +adj +verb +adv +verb +noun +pron +conj +verb +noun +pron +pron +det +noun +adj +noun +adj +conj +adj +prep +det +noun +conj +noun +verb +pron +verb +adj +conj +noun +prep +det +noun +pron +adj +pron +verb +prep +det +noun +noun +pron +adv +prep +noun +verb +det +noun +det +noun +pron +noun +noun +det +noun +conj +conj +verb +prep +noun +pron +noun +adj +prep +noun +adj +conj +verb +adv +adj +prep +adj +noun +conj +verb +prep +det +verb +det +noun +det +adj +conj +verb +pron +verb +adv +adv +conj +det +adj +verb +pron +verb +adv +conj +verb +prep +det +noun +pron +ptcl +verb +prep +pron +conj +verb +noun +noun +adj +verb +noun +pron +adj +ptcl +det +noun +verb +det +adj +det +noun +adj +prep +noun +conj +noun +det +noun +pron +verb +det +verb +pron +conj +pron +verb +det +adj +ptcl +det +adj +verb +pron +conj +pron +verb +pron +prep +noun +ptcl +pron +verb +det +adj +noun +det +verb +prep +pron +conj +conj +noun +adj +verb +prep +det +noun +verb +det +adv +pron +conj +pron +adv +verb +conj +conj +verb +noun +verb +verb +prep +det +noun +conj +noun +conj +pron +adj +det +noun +verb +conj +verb +prep +adj +verb +adj +adj +conj +det +verb +adv +verb +verb +adv +adv +verb +conj +conj +adv +verb +conj +verb +verb +noun +noun +adv +verb +conj +adv +verb +conj +prep +noun +noun +verb +verb +conj +det +noun +adj +det +adv +verb +noun +verb +noun +noun +noun +pron +pron +det +noun +conj +noun +verb +verb +pron +conj +noun +adv +verb +ptcl +verb +det +noun +verb +pron +conj +noun +conj +noun +adj +verb +conj +verb +det +adj +noun +conj +verb +pron +pron +prep +pron +verb +prep +noun +verb +conj +verb +conj +adv +verb +pron +det +adj +det +noun +pron +det +noun +adv +adv +det +noun +conj +adv +verb +noun +adj +verb +prep +pron +conj +verb +pron +pron +noun +verb +pron +noun +verb +verb +pron +det +noun +pron +prep +det +noun +pron +pron +verb +prep +det +noun +pron +det +noun +pron +verb +conj +adj +verb +det +noun +adv +verb +adv +det +noun +verb +conj +verb +conj +intj +noun +adj +verb +verb +conj +det +noun +prep +det +noun +adj +verb +noun +det +noun +pron +ptcl +prep +noun +verb +verb +noun +det +noun +pron +prep +det +noun +verb +conj +det +noun +verb +det +noun +pron +conj +prep +det +noun +det +noun +verb +conj +verb +det +noun +det +verb +conj +verb +noun +det +noun +conj +verb +pron +prep +noun +conj +adj +noun +verb +verb +conj +prep +noun +verb +noun +conj +adv +prep +noun +adj +conj +adv +adv +noun +det +noun +ptcl +prep +noun +verb +verb +det +noun +conj +adj +noun +verb +conj +conj +det +noun +prep +noun +adj +verb +adv +adv +det +noun +prep +noun +adj +verb +noun +pron +adv +adj +noun +verb +verb +conj +adj +noun +verb +conj +adj +verb +adj +conj +pron +prep +noun +adv +verb +pron +adj +noun +adj +verb +adv +adj +det +noun +conj +conj +det +noun +det +noun +prep +det +noun +verb +prep +det +verb +pron +pron +adv +adj +det +noun +pron +verb +verb +adv +det +noun +pron +verb +conj +prep +noun +adj +verb +verb +prep +adj +noun +conj +det +noun +det +verb +verb +adv +adv +det +noun +adj +noun +verb +conj +adj +verb +verb +adj +noun +adj +noun +verb +conj +det +noun +noun +det +noun +det +noun +det +noun +verb +prep +det +noun +pron +det +verb +adj +det +noun +conj +verb +det +noun +det +noun +conj +verb +prep +det +noun +conj +adj +noun +conj +noun +conj +noun +conj +noun +conj +adj +verb +conj +verb +det +noun +det +adj +conj +det +noun +verb +verb +adj +noun +adj +adj +adj +noun +adj +prep +pron +verb +det +noun +conj +noun +conj +prep +pron +verb +det +noun +det +prep +noun +noun +verb +prep +det +pron +noun +verb +noun +conj +noun +noun +pron +adv +verb +pron +adv +verb +ptcl +det +noun +prep +det +pron +noun +verb +det +adj +conj +det +adj +noun +pron +ptcl +verb +noun +noun +verb +conj +noun +noun +conj +adj +verb +adj +noun +pron +adj +conj +adj +prep +pron +verb +prep +det +adj +noun +det +noun +pron +prep +noun +noun +conj +conj +verb +noun +adj +conj +noun +prep +det +noun +pron +adv +verb +conj +verb +prep +det +noun +adv +verb +pron +det +noun +adv +verb +conj +adj +adj +adj +conj +conj +noun +conj +noun +adv +noun +conj +adj +adj +noun +conj +det +adv +noun +adj +conj +adj +verb +adv +adj +adj +adj +adj +noun +conj +noun +adj +adj +adj +conj +noun +noun +prep +noun +verb +det +verb +noun +adv +noun +conj +adv +noun +prep +pron +ptcl +adv +prep +det +noun +pron +det +verb +prep +det +noun +pron +verb +conj +adv +verb +verb +conj +verb +conj +adv +verb +verb +verb +conj +verb +adv +verb +prep +det +adv +verb +pron +verb +conj +adv +verb +conj +adv +verb +conj +prep +det +noun +pron +verb +noun +ptcl +verb +conj +det +noun +det +noun +noun +det +noun +verb +conj +ptcl +pron +verb +verb +adj +det +noun +adj +det +noun +verb +conj +verb +conj +adv +det +noun +verb +prep +noun +verb +det +noun +pron +verb +prep +pron +conj +adj +noun +verb +conj +verb +det +noun +adj +verb +conj +adj +verb +noun +conj +verb +det +noun +conj +verb +det +adj +conj +verb +prep +pron +verb +det +noun +conj +verb +pron +verb +noun +adj +conj +verb +noun +adj +verb +conj +verb +conj +verb +det +noun +pron +prep +noun +verb +conj +det +noun +prep +noun +verb +prep +noun +conj +verb +pron +adv +verb +pron +noun +det +verb +noun +conj +verb +det +noun +pron +verb +noun +conj +verb +noun +conj +conj +noun +verb +verb +adv +noun +noun +conj +noun +adj +verb +noun +conj +noun +det +verb +verb +conj +verb +conj +pron +pron +verb +det +verb +det +adv +verb +adv +det +verb +adv +conj +adv +verb +prep +pron +det +noun +conj +verb +adv +noun +conj +verb +conj +verb +pron +adv +verb +det +adv +pron +det +noun +pron +conj +verb +noun +det +prep +adj +verb +adv +adv +verb +prep +det +verb +pron +conj +det +noun +verb +conj +verb +conj +verb +pron +conj +pron +conj +adv +verb +prep +det +noun +pron +adj +noun +pron +adj +verb +conj +verb +adj +verb +conj +adv +verb +noun +pron +verb +verb +adv +det +adj +verb +verb +prep +det +noun +pron +det +verb +det +noun +pron +verb +conj +det +noun +pron +adj +verb +det +noun +pron +conj +det +noun +verb +conj +det +noun +pron +prep +noun +pron +verb +conj +verb +det +noun +pron +conj +noun +verb +prep +adj +noun +verb +det +noun +det +noun +det +verb +det +noun +pron +det +verb +prep +pron +verb +conj +det +noun +det +verb +prep +det +noun +noun +noun +verb +verb +prep +det +noun +conj +verb +verb +det +noun +pron +prep +noun +noun +verb +verb +det +adj +adv +verb +pron +conj +noun +verb +prep +det +noun +det +noun +verb +det +noun +verb +det +adj +noun +det +noun +verb +prep +pron +conj +verb +adj +conj +adj +verb +adv +pron +verb +det +noun +pron +conj +det +noun +det +noun +verb +noun +adv +verb +prep +pron +conj +adv +verb +verb +det +noun +prep +det +noun +verb +noun +verb +noun +det +noun +conj +det +noun +det +noun +pron +verb +prep +det +noun +noun +verb +verb +det +verb +det +noun +noun +verb +conj +det +noun +noun +verb +adv +verb +det +noun +adj +conj +adj +conj +noun +pron +prep +adj +adv +verb +conj +det +noun +conj +det +noun +conj +adj +pron +noun +conj +verb +pron +det +ptcl +ptcl +conj +det +ptcl +ptcl +conj +adv +prep +noun +verb +verb +pron +prep +pron +verb +verb +pron +verb +verb +pron +prep +pron +verb +det +adj +det +noun +conj +verb +prep +pron +verb +noun +prep +det +noun +det +noun +conj +det +noun +det +noun +verb +det +verb +conj +verb +pron +det +noun +conj +noun +verb +verb +verb +pron +conj +verb +pron +det +noun +conj +verb +prep +pron +conj +verb +adj +verb +noun +adj +verb +noun +verb +noun +adj +pron +conj +noun +verb +det +adv +verb +conj +adv +verb +prep +det +noun +noun +adj +conj +noun +num +conj +adv +verb +conj +det +noun +noun +verb +conj +det +noun +verb +det +noun +pron +noun +pron +conj +pron +prep +pron +verb +prep +det +noun +conj +verb +pron +pron +verb +conj +det +verb +adj +prep +noun +noun +pron +verb +noun +pron +prep +noun +conj +verb +noun +noun +noun +noun +noun +noun +adj +adj +noun +noun +noun +noun +noun +conj +noun +prep +noun +noun +noun +prep +noun +noun +prep +noun +conj +noun +noun +noun +noun +noun +conj +noun +pron +verb +adj +det +noun +conj +noun +det +noun +pron +noun +noun +det +prep +det +adj +pron +noun +verb +pron +prep +noun +verb +prep +noun +noun +noun +prep +adj +prep +noun +adj +conj +adj +conj +adj +verb +prep +noun +prep +pron +det +prep +noun +noun +verb +prep +noun +prep +noun +adj +verb +prep +noun +adj +prep +pron +verb +conj +adj +adv +verb +verb +prep +adj +noun +conj +det +noun +pron +det +noun +adj +noun +det +verb +conj +prep +noun +verb +verb +prep +noun +conj +noun +conj +noun +prep +noun +noun +noun +pron +adv +verb +verb +conj +prep +pron +adv +adv +verb +verb +verb +noun +adj +conj +verb +verb +det +noun +det +noun +noun +noun +prep +pron +noun +verb +conj +verb +noun +det +prep +det +prep +pron +noun +verb +verb +prep +pron +conj +pron +noun +verb +det +prep +pron +noun +noun +verb +det +prep +noun +noun +conj +det +prep +pron +noun +pron +verb +conj +adv +pron +conj +pron +verb +pron +pron +adv +verb +pron +prep +det +verb +pron +prep +noun +adj +verb +prep +noun +prep +pron +verb +verb +noun +conj +verb +det +noun +det +noun +pron +verb +adv +verb +prep +det +verb +pron +noun +prep +noun +noun +noun +conj +noun +noun +adv +verb +det +adj +prep +det +noun +pron +noun +conj +prep +det +verb +pron +adj +adv +pron +adj +prep +adj +noun +verb +conj +verb +adj +verb +conj +pron +adj +conj +conj +noun +verb +det +adv +verb +prep +det +adj +noun +prep +noun +det +det +noun +pron +noun +verb +verb +conj +adv +adj +noun +conj +noun +verb +prep +det +adj +pron +noun +adj +conj +adj +noun +conj +noun +adj +conj +adj +noun +conj +verb +prep +noun +noun +conj +verb +prep +adj +det +noun +prep +pron +det +prep +pron +adj +prep +noun +det +verb +pron +prep +adj +conj +noun +pron +verb +conj +det +noun +pron +conj +noun +verb +prep +noun +det +noun +pron +verb +prep +det +noun +det +noun +prep +noun +adj +prep +noun +pron +verb +adv +verb +adv +prep +noun +adj +conj +adj +prep +noun +noun +verb +conj +verb +conj +adj +noun +conj +noun +conj +adj +noun +pron +conj +noun +noun +verb +det +noun +conj +det +noun +verb +conj +det +noun +noun +verb +prep +det +noun +conj +pron +verb +det +noun +det +verb +prep +pron +conj +verb +adj +noun +conj +adj +noun +conj +adj +conj +noun +conj +adj +noun +conj +adj +noun +det +adj +adj +noun +verb +conj +prep +pron +verb +prep +noun +conj +verb +conj +adj +det +noun +verb +prep +pron +noun +verb +conj +prep +noun +verb +conj +prep +noun +adj +adj +adv +pron +conj +noun +verb +verb +noun +adj +prep +noun +adj +verb +adj +noun +adj +noun +prep +noun +noun +conj +verb +prep +noun +verb +verb +prep +noun +noun +adj +adj +adj +conj +det +verb +prep +pron +adv +adv +verb +conj +det +noun +pron +det +verb +conj +verb +noun +pron +verb +det +verb +pron +verb +prep +noun +noun +conj +noun +noun +conj +noun +noun +pron +verb +det +noun +verb +prep +pron +adv +verb +conj +pron +noun +adj +adj +noun +noun +adj +noun +prep +noun +conj +verb +det +noun +det +prep +noun +pron +verb +prep +det +adj +pron +noun +pron +adv +adv +noun +conj +adv +noun +noun +det +adv +verb +conj +adv +verb +adj +verb +conj +adj +conj +adj +verb +det +adj +noun +pron +verb +prep +det +noun +det +noun +pron +prep +det +noun +verb +adj +conj +prep +pron +verb +pron +conj +adj +prep +det +adj +noun +verb +verb +det +noun +prep +noun +noun +verb +prep +det +noun +adj +adj +noun +conj +noun +conj +verb +conj +noun +conj +prep +pron +verb +prep +noun +adj +conj +noun +adj +conj +adv +verb +det +noun +det +noun +verb +verb +det +det +adj +noun +noun +conj +adj +conj +adv +conj +verb +noun +det +noun +det +noun +conj +conj +noun +noun +adj +verb +det +noun +verb +det +noun +verb +det +noun +verb +det +noun +verb +prep +adj +noun +det +noun +adv +adj +det +adj +conj +adj +conj +adv +det +adj +conj +pron +noun +adv +prep +noun +noun +verb +pron +noun +verb +adv +conj +pron +noun +adv +verb +conj +verb +verb +conj +conj +verb +conj +verb +verb +pron +noun +prep +noun +conj +prep +pron +verb +conj +adv +noun +verb +prep +pron +pron +verb +noun +conj +verb +det +noun +pron +pron +noun +adv +verb +conj +verb +noun +prep +det +noun +pron +pron +verb +adv +verb +verb +adv +verb +conj +verb +det +verb +adv +pron +pron +det +noun +pron +verb +prep +det +noun +pron +prep +det +noun +conj +det +noun +verb +det +noun +verb +pron +det +noun +verb +conj +verb +conj +noun +verb +conj +verb +adv +prep +det +noun +conj +noun +det +noun +pron +noun +adv +verb +det +adj +noun +conj +conj +adv +pron +verb +det +noun +prep +det +det +noun +noun +prep +noun +verb +verb +det +prep +noun +adj +noun +pron +pron +verb +adv +det +adv +noun +noun +conj +noun +noun +conj +noun +noun +noun +conj +det +adj +det +noun +noun +prep +det +adj +det +adj +conj +adj +noun +pron +verb +prep +det +noun +adj +conj +adv +adv +adv +det +adj +noun +det +verb +prep +noun +verb +pron +verb +det +adj +noun +conj +noun +verb +det +noun +noun +pron +verb +pron +noun +verb +verb +conj +adv +verb +adj +noun +det +noun +adv +verb +prep +noun +conj +adj +noun +det +adj +verb +noun +conj +adv +noun +noun +noun +prep +det +adv +verb +det +noun +pron +conj +det +noun +adj +adj +adj +adj +adj +adj +adv +verb +adj +prep +adj +conj +noun +prep +noun +conj +det +verb +conj +prep +pron +verb +conj +noun +verb +conj +det +verb +noun +verb +conj +verb +noun +adj +verb +det +noun +prep +adj +conj +noun +det +adv +verb +noun +conj +verb +prep +adj +conj +verb +adj +verb +noun +conj +verb +pron +conj +noun +noun +prep +adj +conj +noun +pron +prep +noun +pron +conj +noun +noun +prep +verb +adj +conj +pron +det +verb +pron +conj +det +adj +noun +verb +conj +conj +adv +verb +prep +noun +adj +conj +det +noun +pron +adv +verb +conj +verb +conj +noun +det +noun +verb +prep +det +noun +pron +adj +adv +prep +noun +adj +det +verb +pron +noun +prep +det +prep +pron +noun +conj +prep +noun +conj +noun +noun +adj +verb +conj +prep +pron +verb +verb +det +verb +pron +det +adj +prep +noun +noun +conj +adj +verb +conj +verb +det +noun +det +noun +verb +conj +verb +conj +adv +noun +adv +prep +noun +verb +adj +prep +adj +conj +pron +verb +det +noun +conj +verb +noun +conj +verb +noun +prep +pron +verb +verb +adv +det +prep +noun +noun +verb +adv +conj +verb +det +det +noun +noun +prep +noun +noun +verb +noun +prep +pron +adj +pron +verb +num +noun +verb +prep +noun +pron +adv +pron +adv +verb +adj +noun +adv +noun +noun +noun +conj +noun +adj +noun +prep +noun +prep +noun +noun +noun +pron +verb +prep +adj +noun +verb +prep +noun +verb +pron +noun +conj +noun +conj +noun +conj +noun +verb +noun +adv +pron +det +pron +noun +verb +prep +det +adv +noun +noun +conj +noun +noun +det +adj +prep +noun +noun +verb +conj +det +verb +noun +verb +noun +conj +adj +det +verb +noun +det +noun +det +noun +verb +verb +prep +noun +noun +noun +noun +noun +conj +adj +noun +prep +pron +verb +adv +verb +pron +prep +det +pron +det +noun +noun +verb +pron +verb +noun +det +adv +verb +verb +verb +conj +adj +conj +prep +pron +adv +adj +verb +conj +conj +verb +prep +noun +noun +conj +verb +prep +noun +noun +conj +adj +det +noun +verb +conj +verb +conj +verb +prep +noun +prep +adj +det +prep +pron +noun +adj +verb +conj +noun +verb +noun +noun +adj +prep +pron +prep +noun +adj +conj +verb +noun +prep +pron +pron +verb +conj +adj +noun +adj +noun +noun +conj +pron +verb +conj +noun +noun +conj +pron +verb +conj +prep +noun +pron +verb +det +noun +conj +prep +adj +verb +det +noun +prep +noun +noun +pron +verb +det +noun +conj +det +noun +prep +det +noun +det +noun +ptcl +adj +adv +verb +det +prep +pron +noun +prep +noun +pron +verb +conj +adj +pron +verb +conj +conj +verb +det +det +noun +noun +verb +conj +adv +prep +det +noun +det +noun +pron +verb +verb +conj +verb +prep +noun +noun +adj +conj +det +det +noun +conj +det +det +noun +noun +prep +pron +verb +conj +adv +pron +pron +verb +conj +noun +conj +noun +conj +adj +conj +conj +noun +conj +conj +conj +noun +adv +verb +conj +verb +det +noun +prep +det +noun +pron +conj +det +noun +det +verb +det +noun +prep +det +noun +det +noun +conj +conj +adj +prep +pron +pron +det +noun +det +verb +det +det +noun +noun +conj +conj +det +adj +adv +verb +det +adj +conj +adj +adv +verb +conj +adv +det +verb +prep +det +noun +det +noun +adj +noun +verb +det +noun +pron +prep +noun +conj +adj +prep +pron +verb +det +noun +conj +noun +det +det +noun +noun +adv +det +det +verb +verb +noun +noun +verb +det +prep +pron +noun +det +noun +adv +adv +conj +adv +prep +noun +conj +adv +conj +adv +conj +conj +verb +det +noun +conj +verb +noun +det +noun +conj +verb +det +noun +verb +det +adj +det +noun +noun +adj +adv +verb +adj +conj +adj +pron +det +noun +verb +conj +det +noun +adj +verb +conj +adj +verb +noun +conj +verb +prep +det +adj +noun +det +noun +conj +pron +verb +prep +noun +adj +det +noun +pron +verb +prep +pron +conj +pron +verb +prep +pron +verb +verb +det +noun +pron +adj +conj +noun +verb +verb +verb +pron +verb +pron +verb +adj +det +noun +verb +det +pron +det +noun +det +prep +det +noun +pron +noun +verb +conj +det +noun +adj +noun +det +verb +pron +prep +det +adj +pron +noun +prep +noun +adj +verb +pron +verb +verb +verb +verb +pron +det +noun +prep +det +noun +det +noun +ptcl +pron +prep +noun +det +adj +noun +conj +verb +prep +adj +verb +verb +conj +verb +pron +verb +adj +noun +det +noun +prep +pron +verb +verb +pron +det +prep +noun +adj +conj +noun +det +noun +pron +verb +pron +prep +noun +noun +noun +pron +adj +det +prep +noun +noun +noun +noun +conj +noun +noun +noun +det +pron +verb +adj +noun +prep +noun +det +noun +pron +conj +noun +noun +noun +noun +conj +noun +pron +verb +prep +noun +det +noun +conj +noun +det +noun +pron +conj +pron +det +adj +noun +pron +det +adj +det +prep +noun +conj +noun +verb +prep +det +noun +det +verb +pron +adj +noun +conj +noun +prep +pron +det +adj +conj +adj +noun +pron +verb +conj +prep +pron +verb +noun +adj +noun +verb +det +prep +det +noun +prep +noun +noun +conj +adv +pron +pron +noun +adj +verb +verb +prep +det +noun +pron +det +noun +conj +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +pron +pron +verb +conj +verb +adv +adj +conj +adj +verb +prep +det +det +noun +pron +noun +noun +noun +conj +pron +adv +verb +pron +adj +verb +verb +verb +noun +det +noun +det +adv +pron +noun +conj +noun +adv +verb +adj +pron +det +noun +conj +noun +verb +conj +pron +verb +adv +adv +verb +adv +conj +adv +adv +verb +pron +det +noun +prep +det +adj +noun +det +noun +pron +conj +noun +noun +noun +conj +verb +adv +pron +verb +prep +pron +conj +verb +conj +verb +prep +det +verb +noun +conj +adj +verb +prep +pron +verb +prep +pron +det +noun +verb +pron +prep +noun +verb +conj +adj +verb +det +noun +det +noun +pron +conj +adv +det +noun +pron +noun +noun +verb +pron +conj +verb +adv +adv +verb +pron +prep +det +adj +noun +det +pron +noun +verb +conj +adv +verb +noun +verb +verb +pron +det +det +noun +pron +noun +noun +noun +conj +noun +conj +verb +noun +det +pron +noun +conj +verb +prep +noun +noun +noun +conj +noun +noun +pron +verb +pron +prep +det +adj +noun +det +noun +pron +det +adj +pron +pron +verb +prep +pron +pron +verb +conj +pron +det +noun +pron +verb +prep +noun +verb +prep +pron +verb +prep +det +adj +noun +conj +verb +adj +det +adj +noun +adv +verb +pron +verb +conj +noun +verb +prep +adj +noun +prep +pron +noun +verb +conj +adj +verb +prep +det +noun +pron +pron +adj +verb +adv +adj +noun +noun +adj +noun +adv +verb +conj +adv +noun +noun +verb +noun +adv +conj +prep +noun +adj +verb +verb +prep +noun +noun +conj +verb +adv +noun +prep +det +noun +conj +adv +prep +pron +verb +noun +pron +verb +noun +noun +adv +det +verb +pron +noun +verb +verb +pron +adj +noun +conj +adj +verb +pron +det +noun +prep +pron +det +noun +det +noun +verb +conj +prep +noun +adj +noun +pron +verb +pron +det +noun +adv +adv +verb +conj +det +noun +pron +adv +verb +conj +conj +det +noun +noun +verb +adv +verb +conj +noun +noun +verb +verb +prep +noun +verb +conj +adj +noun +adv +verb +conj +adj +noun +noun +noun +verb +noun +noun +adj +verb +conj +noun +noun +conj +noun +verb +noun +verb +noun +verb +verb +verb +conj +adj +noun +verb +prep +det +det +adj +prep +noun +noun +verb +conj +noun +conj +noun +det +adj +verb +prep +pron +noun +prep +noun +noun +adj +adj +noun +verb +verb +noun +adj +prep +noun +verb +conj +adj +prep +noun +noun +verb +verb +conj +adv +det +prep +noun +prep +noun +noun +verb +conj +noun +verb +noun +adj +noun +verb +adv +verb +conj +noun +noun +conj +noun +adj +verb +adv +verb +prep +pron +prep +noun +adj +noun +conj +pron +conj +adj +noun +verb +adj +prep +noun +conj +noun +prep +pron +verb +verb +prep +det +noun +pron +adv +verb +verb +noun +noun +noun +verb +det +prep +noun +noun +noun +conj +noun +verb +prep +det +noun +pron +verb +pron +verb +noun +adj +noun +conj +adj +noun +verb +noun +adj +noun +verb +noun +verb +noun +noun +verb +adj +noun +verb +verb +det +noun +det +noun +det +noun +pron +noun +noun +verb +conj +noun +adj +noun +verb +noun +adj +prep +noun +noun +verb +verb +det +det +noun +noun +pron +verb +noun +adj +conj +noun +prep +noun +verb +pron +det +noun +det +noun +verb +conj +adj +noun +verb +verb +prep +noun +noun +noun +det +adv +verb +det +prep +noun +verb +noun +pron +verb +pron +verb +noun +det +noun +conj +pron +pron +verb +pron +verb +conj +conj +verb +det +noun +det +noun +prep +noun +det +noun +conj +noun +noun +noun +conj +pron +adv +verb +verb +verb +pron +det +adj +adj +det +adj +conj +adj +verb +pron +adv +verb +det +noun +det +noun +conj +verb +verb +prep +det +verb +pron +adj +noun +verb +pron +det +det +adj +noun +noun +verb +prep +det +adj +noun +conj +noun +verb +prep +noun +noun +adj +adv +pron +adj +noun +pron +verb +prep +pron +verb +prep +noun +pron +det +adj +noun +verb +det +verb +prep +det +adj +noun +noun +conj +det +det +noun +pron +noun +det +noun +conj +noun +pron +adj +verb +adv +verb +prep +adj +det +noun +prep +noun +noun +prep +det +adj +noun +pron +verb +conj +verb +adv +verb +det +noun +det +noun +pron +conj +prep +pron +det +noun +verb +adj +adv +verb +prep +noun +noun +conj +verb +pron +pron +verb +adv +noun +verb +adv +conj +noun +prep +noun +conj +prep +noun +verb +det +det +noun +noun +prep +pron +det +adv +noun +noun +verb +verb +conj +det +adv +noun +conj +det +noun +det +pron +noun +verb +verb +noun +verb +prep +noun +noun +conj +noun +det +adj +noun +conj +adj +adj +pron +adv +verb +pron +adv +adj +noun +prep +noun +conj +adj +noun +conj +adj +noun +conj +noun +adj +adv +verb +noun +det +noun +conj +pron +noun +verb +conj +verb +prep +pron +verb +adv +pron +verb +conj +adj +prep +noun +verb +conj +verb +noun +noun +conj +noun +prep +pron +det +noun +adv +verb +conj +noun +verb +verb +conj +noun +conj +det +prep +pron +noun +verb +adv +pron +adj +verb +verb +adj +verb +pron +prep +adj +noun +conj +noun +verb +conj +verb +det +noun +det +det +noun +noun +prep +pron +noun +verb +verb +conj +noun +verb +verb +conj +adj +noun +conj +noun +adj +prep +det +noun +pron +verb +prep +pron +noun +verb +conj +adj +pron +verb +verb +adj +conj +adj +pron +verb +prep +noun +conj +det +det +noun +pron +noun +noun +verb +conj +adv +det +adj +pron +noun +noun +prep +det +verb +pron +noun +verb +pron +conj +adv +prep +adj +noun +verb +prep +pron +prep +pron +prep +pron +verb +adj +pron +pron +det +adj +conj +adj +verb +conj +adv +det +adj +noun +prep +det +adj +pron +noun +conj +adj +pron +verb +verb +conj +adv +det +det +adj +noun +verb +verb +det +adj +noun +conj +verb +prep +noun +conj +noun +det +noun +pron +conj +noun +noun +noun +pron +det +noun +conj +adv +conj +prep +noun +noun +pron +verb +prep +noun +pron +verb +pron +verb +det +noun +pron +pron +verb +conj +det +noun +pron +verb +prep +det +noun +det +noun +conj +det +noun +verb +conj +verb +conj +verb +conj +verb +pron +det +noun +det +adj +pron +verb +prep +det +noun +conj +verb +pron +pron +verb +conj +verb +verb +adv +pron +conj +adv +pron +noun +verb +prep +pron +conj +adv +det +noun +det +adj +prep +det +noun +conj +prep +det +noun +pron +noun +noun +conj +pron +verb +pron +conj +det +noun +pron +verb +verb +conj +verb +pron +det +noun +pron +verb +prep +pron +conj +verb +pron +adv +det +noun +noun +verb +conj +prep +pron +adv +verb +noun +adj +conj +verb +conj +noun +verb +prep +pron +conj +prep +det +noun +verb +verb +conj +adv +verb +det +noun +conj +conj +prep +det +noun +verb +conj +pron +verb +prep +det +noun +noun +verb +prep +pron +conj +det +noun +noun +det +noun +pron +verb +pron +prep +adj +noun +conj +verb +conj +noun +adv +verb +pron +verb +conj +det +noun +adv +verb +prep +pron +conj +verb +det +noun +pron +verb +adj +conj +adj +conj +verb +pron +det +noun +conj +verb +pron +prep +adj +noun +conj +verb +conj +adv +verb +noun +verb +pron +conj +det +noun +pron +adv +verb +prep +pron +noun +pron +pron +verb +pron +conj +adv +verb +conj +conj +pron +verb +verb +prep +det +noun +noun +noun +noun +adj +conj +pron +noun +verb +prep +det +noun +pron +conj +adv +prep +det +adj +adj +conj +adv +prep +adj +det +noun +conj +prep +pron +verb +conj +verb +pron +conj +det +noun +pron +verb +det +verb +conj +verb +pron +conj +det +noun +pron +adv +verb +noun +verb +conj +prep +pron +det +noun +adv +verb +conj +ptcl +pron +verb +pron +det +noun +adv +prep +pron +det +noun +det +noun +verb +prep +pron +verb +conj +prep +pron +verb +det +verb +prep +pron +verb +conj +pron +verb +verb +adv +pron +adv +verb +adj +verb +pron +adv +noun +adj +conj +noun +adj +pron +verb +prep +noun +det +noun +det +adj +verb +det +noun +pron +verb +adv +noun +adj +verb +pron +pron +verb +adj +prep +pron +conj +prep +pron +conj +det +noun +verb +conj +det +noun +det +adj +adv +verb +det +verb +prep +det +noun +verb +conj +det +noun +pron +verb +prep +det +noun +verb +prep +adv +det +verb +det +noun +pron +prep +det +noun +verb +conj +noun +prep +pron +adv +verb +conj +det +verb +det +noun +pron +prep +det +noun +verb +conj +prep +det +noun +verb +conj +adv +verb +adv +verb +conj +det +noun +verb +det +noun +pron +noun +verb +pron +conj +verb +pron +det +noun +prep +det +noun +pron +noun +verb +pron +conj +verb +det +prep +noun +noun +verb +pron +conj +verb +det +adj +noun +verb +pron +conj +verb +det +noun +noun +verb +pron +conj +verb +det +prep +noun +noun +verb +pron +conj +adj +verb +conj +det +noun +det +noun +prep +pron +verb +conj +verb +det +adj +adv +verb +det +noun +conj +det +prep +det +noun +conj +pron +verb +det +noun +adv +verb +det +noun +det +noun +prep +pron +conj +adv +adj +det +prep +det +noun +det +noun +det +noun +conj +det +noun +det +noun +conj +det +noun +det +noun +verb +prep +det +noun +conj +prep +det +noun +verb +conj +verb +det +noun +conj +det +noun +pron +conj +det +verb +det +noun +det +noun +verb +prep +det +noun +noun +adj +noun +verb +conj +conj +verb +conj +noun +verb +adv +adv +noun +adj +verb +conj +verb +conj +adj +noun +verb +prep +pron +verb +conj +adv +verb +prep +pron +conj +conj +prep +pron +verb +ptcl +verb +prep +pron +conj +conj +verb +conj +adv +verb +adj +prep +pron +conj +pron +noun +verb +prep +det +adj +conj +verb +adj +verb +pron +adv +conj +adv +verb +det +noun +conj +conj +verb +pron +conj +conj +adj +noun +prep +det +noun +adv +verb +pron +verb +det +noun +conj +adv +det +verb +conj +noun +adv +verb +det +noun +pron +verb +det +noun +det +verb +det +noun +conj +det +noun +adj +det +verb +det +noun +adv +det +noun +verb +det +verb +det +noun +adv +det +noun +verb +pron +pron +verb +prep +noun +prep +pron +verb +conj +prep +pron +verb +pron +prep +noun +verb +adv +pron +prep +det +noun +conj +prep +det +noun +verb +conj +pron +verb +det +noun +pron +pron +verb +pron +det +noun +det +adj +pron +verb +pron +prep +det +verb +pron +conj +pron +det +noun +pron +verb +prep +pron +verb +prep +pron +conj +adv +noun +verb +conj +pron +verb +pron +conj +conj +det +pron +noun +verb +pron +prep +adj +conj +adj +verb +conj +adv +verb +noun +conj +conj +verb +pron +verb +prep +pron +conj +noun +adv +verb +prep +pron +conj +conj +verb +verb +noun +conj +adv +verb +prep +pron +prep +det +noun +pron +conj +verb +conj +adj +verb +verb +conj +adv +adj +det +verb +det +noun +prep +pron +verb +verb +adj +noun +verb +pron +det +noun +conj +noun +noun +verb +conj +verb +prep +pron +det +noun +adv +verb +pron +conj +adv +verb +pron +adj +adv +noun +noun +verb +conj +adv +verb +pron +verb +verb +conj +conj +verb +adj +pron +verb +conj +verb +pron +conj +verb +conj +adj +det +verb +det +noun +pron +prep +pron +verb +pron +conj +pron +adj +verb +adj +det +verb +det +noun +adv +det +noun +verb +conj +det +noun +verb +det +noun +conj +verb +conj +pron +verb +conj +det +noun +verb +conj +noun +prep +pron +adv +verb +adj +det +prep +pron +verb +adv +verb +adj +det +verb +adv +verb +pron +conj +verb +pron +noun +adj +verb +pron +det +verb +det +noun +adj +verb +conj +pron +adj +verb +det +verb +det +noun +prep +det +adj +verb +conj +prep +noun +det +adj +verb +prep +pron +verb +det +noun +det +noun +conj +verb +det +noun +det +adj +adj +det +verb +prep +det +noun +noun +adv +verb +conj +noun +pron +prep +pron +verb +conj +adv +verb +verb +conj +prep +det +noun +verb +prep +pron +adj +verb +det +noun +det +noun +conj +det +noun +det +adj +adj +det +adv +verb +noun +adv +verb +prep +det +noun +conj +det +adv +verb +det +noun +pron +conj +pron +verb +det +noun +pron +verb +prep +noun +adv +verb +pron +adv +conj +noun +prep +det +adj +verb +conj +verb +det +noun +pron +conj +prep +pron +verb +pron +conj +det +noun +pron +adj +verb +conj +det +det +noun +pron +adj +noun +adv +verb +conj +verb +pron +det +noun +pron +verb +conj +verb +prep +det +noun +prep +det +noun +conj +verb +det +noun +det +adv +verb +verb +prep +det +noun +adj +det +verb +det +noun +pron +adj +verb +conj +verb +conj +adj +adj +adv +verb +noun +adj +prep +pron +verb +prep +pron +verb +det +noun +conj +pron +prep +pron +det +noun +pron +verb +conj +pron +verb +prep +det +noun +det +noun +verb +conj +ptcl +pron +verb +det +noun +det +noun +conj +verb +det +noun +pron +noun +verb +conj +verb +det +noun +pron +prep +pron +adv +det +noun +det +noun +verb +prep +pron +noun +verb +adv +noun +conj +det +noun +conj +prep +noun +conj +noun +prep +pron +verb +conj +prep +det +noun +verb +conj +prep +pron +verb +det +noun +pron +conj +conj +verb +pron +det +noun +conj +adj +verb +det +noun +det +noun +pron +conj +verb +adj +adj +conj +det +noun +adv +verb +noun +verb +prep +det +noun +conj +ptcl +pron +verb +verb +prep +pron +conj +det +noun +pron +verb +conj +det +adj +prep +pron +verb +conj +pron +verb +det +noun +pron +adv +verb +det +noun +det +noun +pron +noun +noun +conj +verb +pron +conj +verb +noun +pron +conj +det +verb +det +noun +pron +prep +pron +verb +conj +pron +prep +pron +conj +prep +pron +verb +conj +verb +prep +pron +prep +det +noun +pron +pron +verb +adj +adv +adj +noun +verb +conj +verb +det +noun +ptcl +prep +det +noun +verb +conj +adj +noun +verb +prep +det +noun +prep +pron +verb +det +noun +det +noun +adj +noun +pron +verb +noun +noun +prep +noun +verb +prep +det +noun +verb +conj +adj +noun +pron +adv +verb +det +noun +prep +det +noun +adv +verb +conj +pron +verb +det +det +noun +pron +verb +conj +verb +conj +adv +prep +det +noun +verb +adv +noun +pron +prep +det +noun +verb +conj +verb +pron +conj +adj +verb +det +prep +pron +conj +det +prep +det +noun +pron +prep +det +noun +verb +prep +pron +prep +det +noun +verb +conj +det +noun +pron +verb +pron +prep +det +noun +verb +det +verb +det +noun +verb +pron +pron +adv +verb +prep +det +noun +adv +verb +pron +prep +pron +verb +det +noun +det +noun +conj +det +noun +det +noun +adj +verb +pron +conj +det +noun +prep +det +noun +verb +conj +adj +det +verb +prep +det +noun +verb +conj +verb +det +noun +det +adv +verb +adv +verb +det +noun +conj +det +noun +noun +verb +prep +pron +verb +det +noun +det +noun +prep +pron +conj +det +noun +pron +det +adj +verb +det +noun +prep +det +noun +conj +verb +prep +pron +prep +pron +verb +det +noun +adv +adv +pron +verb +det +noun +conj +adv +pron +verb +pron +conj +verb +det +noun +pron +noun +prep +det +noun +pron +adj +conj +adv +det +noun +verb +pron +adv +pron +verb +pron +verb +noun +adj +adv +verb +conj +verb +pron +det +noun +prep +pron +verb +conj +det +noun +pron +prep +pron +verb +verb +prep +pron +verb +conj +prep +pron +verb +conj +pron +prep +pron +conj +prep +det +noun +pron +verb +pron +conj +pron +verb +conj +verb +conj +det +noun +verb +det +noun +noun +det +noun +ptcl +pron +verb +conj +noun +verb +det +noun +det +noun +det +noun +prep +pron +verb +conj +pron +prep +det +noun +conj +pron +verb +conj +verb +det +noun +pron +verb +det +noun +prep +pron +det +noun +noun +verb +conj +det +verb +prep +det +noun +prep +det +noun +verb +conj +det +noun +prep +pron +verb +prep +pron +verb +det +noun +prep +pron +conj +noun +verb +prep +det +noun +det +noun +conj +conj +pron +verb +adv +pron +verb +prep +det +noun +pron +noun +adv +verb +prep +det +noun +conj +det +adj +noun +adv +verb +det +noun +conj +det +noun +noun +verb +conj +det +verb +adv +verb +prep +det +noun +pron +verb +conj +pron +adj +verb +pron +conj +pron +verb +conj +verb +det +noun +conj +det +noun +pron +verb +noun +verb +conj +det +adv +verb +det +noun +pron +pron +verb +adv +verb +det +noun +pron +adv +verb +verb +conj +pron +det +noun +verb +prep +pron +adv +det +verb +det +noun +verb +adv +det +noun +pron +adj +det +verb +conj +noun +verb +det +noun +prep +det +noun +verb +conj +adj +det +verb +det +verb +verb +det +verb +prep +pron +prep +pron +verb +conj +verb +det +noun +det +noun +conj +det +noun +verb +conj +det +noun +pron +verb +conj +pron +verb +det +noun +det +noun +adv +det +noun +pron +verb +conj +det +noun +pron +adj +adv +verb +conj +adj +det +verb +prep +det +noun +verb +det +noun +conj +pron +verb +det +noun +det +verb +det +noun +det +noun +pron +pron +verb +det +verb +det +noun +conj +adv +det +verb +conj +noun +verb +det +noun +det +noun +pron +verb +det +verb +prep +noun +conj +noun +noun +noun +adv +prep +det +noun +adj +conj +prep +det +noun +conj +prep +det +noun +conj +det +noun +verb +det +verb +conj +det +noun +verb +det +noun +conj +adj +verb +det +verb +det +noun +conj +det +noun +conj +det +noun +conj +det +adj +prep +det +adj +verb +conj +det +noun +det +noun +verb +det +noun +det +noun +adj +verb +conj +pron +verb +det +noun +det +noun +conj +verb +prep +det +noun +pron +det +verb +prep +det +noun +det +noun +verb +det +noun +prep +pron +det +adv +verb +det +noun +noun +verb +pron +conj +adv +verb +prep +det +noun +pron +verb +det +noun +prep +det +noun +pron +conj +pron +verb +det +noun +adv +noun +adj +verb +det +noun +pron +conj +pron +det +noun +prep +det +noun +pron +verb +det +verb +det +noun +verb +det +noun +det +adv +verb +det +noun +det +noun +det +noun +adv +verb +pron +verb +pron +det +verb +prep +det +noun +det +noun +det +noun +conj +verb +conj +noun +adj +verb +conj +pron +verb +det +noun +pron +verb +prep +pron +adv +conj +pron +verb +prep +det +noun +pron +verb +pron +conj +conj +verb +conj +verb +pron +ptcl +pron +verb +verb +conj +verb +det +noun +pron +verb +prep +pron +conj +pron +verb +det +noun +pron +verb +noun +adv +prep +noun +verb +conj +verb +noun +pron +det +verb +adv +prep +noun +verb +noun +prep +noun +adv +prep +pron +verb +conj +verb +adj +noun +noun +verb +conj +verb +noun +adv +prep +noun +verb +conj +adj +det +verb +prep +det +noun +adv +verb +conj +det +verb +prep +det +noun +verb +pron +conj +det +adj +adv +verb +pron +verb +conj +prep +det +noun +verb +conj +det +noun +adj +prep +det +adj +verb +conj +verb +conj +det +noun +det +noun +verb +conj +verb +pron +noun +conj +verb +det +adj +conj +verb +prep +det +adj +prep +det +noun +pron +noun +noun +pron +verb +det +adj +noun +conj +noun +adj +noun +verb +pron +prep +det +noun +det +adj +adj +noun +conj +det +noun +pron +pron +verb +prep +noun +pron +conj +adv +pron +adj +conj +adv +adj +det +verb +det +noun +prep +det +noun +det +verb +prep +pron +conj +prep +pron +verb +prep +det +noun +verb +prep +pron +noun +noun +noun +prep +noun +noun +conj +prep +noun +noun +det +noun +det +noun +prep +noun +conj +noun +verb +adv +conj +verb +prep +det +noun +pron +verb +prep +noun +conj +noun +verb +prep +det +noun +conj +noun +adv +verb +pron +verb +pron +adv +conj +noun +adj +conj +pron +verb +prep +noun +conj +verb +pron +conj +pron +verb +det +noun +adv +verb +prep +det +noun +pron +pron +det +noun +verb +conj +verb +prep +noun +adv +prep +pron +verb +conj +verb +prep +det +noun +adj +adj +det +adv +verb +noun +noun +verb +prep +noun +pron +verb +det +adj +conj +det +noun +verb +pron +conj +adv +verb +pron +verb +conj +noun +adj +verb +adj +det +verb +conj +adv +verb +prep +det +noun +det +noun +noun +adv +verb +det +verb +prep +det +noun +pron +conj +det +noun +conj +det +noun +verb +conj +pron +verb +prep +pron +conj +pron +det +noun +adv +verb +adv +verb +pron +prep +noun +conj +verb +pron +adv +verb +conj +det +verb +pron +verb +verb +det +noun +pron +det +adj +verb +adj +pron +verb +adv +verb +prep +noun +conj +adj +conj +verb +verb +prep +pron +conj +noun +prep +noun +verb +conj +det +noun +pron +verb +verb +verb +pron +det +noun +det +noun +pron +det +adj +det +adj +noun +det +adj +pron +pron +verb +prep +noun +adj +prep +adj +verb +pron +verb +conj +verb +conj +verb +pron +det +noun +conj +verb +adv +verb +noun +conj +verb +pron +det +noun +conj +pron +prep +noun +verb +adj +noun +pron +adv +verb +adv +verb +det +adj +noun +prep +det +noun +verb +adj +adj +verb +ptcl +pron +verb +prep +det +noun +conj +pron +adj +pron +verb +pron +det +noun +prep +noun +pron +adv +verb +verb +adv +det +noun +conj +prep +det +noun +verb +adj +verb +prep +det +adj +conj +pron +verb +verb +det +pron +conj +adj +verb +det +noun +verb +pron +det +noun +conj +det +verb +pron +noun +adv +verb +pron +prep +pron +conj +verb +verb +pron +det +noun +pron +verb +noun +adj +verb +pron +conj +adv +verb +prep +pron +conj +pron +verb +det +noun +conj +det +verb +verb +conj +prep +det +noun +verb +adj +adv +verb +det +adj +conj +det +adj +det +verb +prep +det +noun +verb +det +verb +adv +verb +det +noun +noun +verb +prep +adj +conj +prep +pron +det +noun +conj +adv +pron +verb +conj +verb +conj +det +noun +pron +adj +verb +verb +adj +verb +pron +conj +adv +verb +prep +adj +conj +noun +pron +verb +conj +verb +adv +pron +verb +conj +noun +prep +noun +verb +noun +pron +verb +pron +det +adj +verb +det +adj +prep +noun +noun +noun +noun +noun +conj +noun +noun +det +prep +noun +noun +verb +conj +noun +noun +verb +adj +pron +noun +conj +noun +conj +noun +verb +adj +adj +noun +verb +verb +pron +prep +det +adj +pron +noun +noun +verb +verb +pron +verb +verb +det +adv +verb +det +adj +noun +conj +verb +pron +noun +det +adv +verb +prep +pron +det +noun +adj +det +det +noun +pron +noun +verb +prep +noun +conj +det +adj +noun +conj +noun +pron +noun +noun +verb +conj +verb +verb +adv +adj +verb +pron +conj +noun +noun +prep +noun +noun +verb +det +adj +det +adv +verb +verb +conj +noun +det +adv +verb +det +pron +noun +conj +verb +det +adj +noun +prep +noun +adj +noun +noun +adj +prep +noun +verb +conj +noun +conj +noun +conj +det +prep +pron +noun +det +adj +noun +pron +verb +conj +verb +prep +noun +adj +verb +noun +noun +adj +noun +verb +conj +adv +adv +pron +verb +conj +noun +verb +conj +noun +verb +conj +noun +verb +conj +conj +det +adj +verb +verb +prep +det +noun +noun +adv +det +noun +det +noun +verb +noun +noun +verb +conj +verb +verb +pron +noun +conj +conj +pron +pron +adv +verb +verb +conj +pron +adv +conj +det +adj +noun +verb +prep +pron +verb +ptcl +pron +conj +det +noun +det +noun +verb +conj +det +noun +det +noun +noun +verb +conj +det +noun +det +noun +verb +pron +verb +det +prep +det +noun +pron +noun +verb +adv +pron +verb +noun +adj +prep +noun +verb +noun +adj +adj +adv +verb +verb +noun +adj +noun +verb +det +pron +noun +noun +noun +pron +det +noun +det +noun +prep +noun +verb +conj +verb +adv +pron +adj +prep +noun +noun +verb +verb +verb +noun +prep +adj +noun +pron +verb +noun +prep +adj +conj +verb +adj +det +adj +prep +adj +det +noun +noun +pron +pron +verb +conj +prep +adj +det +adj +pron +verb +prep +pron +adj +adj +pron +verb +noun +adj +prep +det +noun +pron +verb +conj +det +noun +pron +verb +adj +verb +noun +noun +prep +conj +adj +pron +verb +det +noun +det +verb +prep +det +noun +det +noun +pron +noun +noun +conj +verb +pron +prep +adj +det +noun +verb +noun +verb +prep +det +pron +noun +det +noun +pron +verb +det +verb +adj +noun +adv +verb +conj +adj +pron +verb +pron +det +adj +pron +noun +prep +noun +adj +verb +pron +prep +noun +noun +verb +verb +det +noun +det +noun +pron +noun +noun +prep +noun +adj +conj +conj +pron +verb +verb +verb +prep +noun +verb +conj +pron +verb +prep +noun +verb +adv +det +prep +det +noun +verb +noun +conj +det +verb +verb +pron +adj +conj +verb +prep +det +noun +pron +adj +prep +noun +adj +noun +noun +pron +prep +noun +noun +det +noun +pron +noun +noun +noun +conj +noun +prep +adj +det +noun +conj +adv +conj +prep +adj +det +noun +ptcl +noun +noun +noun +pron +verb +pron +det +noun +verb +det +noun +pron +pron +verb +prep +noun +verb +conj +verb +verb +prep +det +noun +pron +det +noun +pron +noun +pron +verb +det +noun +det +noun +conj +det +noun +noun +noun +pron +verb +adj +det +verb +conj +det +verb +det +noun +det +noun +conj +verb +det +prep +pron +verb +conj +det +noun +adv +noun +det +num +noun +det +prep +det +noun +noun +conj +noun +pron +prep +det +verb +conj +det +verb +conj +det +verb +conj +prep +det +num +noun +pron +prep +det +noun +pron +conj +prep +noun +noun +det +noun +det +adj +det +adj +det +adj +conj +det +noun +det +noun +det +noun +det +verb +pron +conj +verb +pron +prep +det +noun +pron +prep +det +noun +pron +conj +verb +pron +noun +noun +det +noun +conj +noun +pron +pron +det +noun +conj +det +noun +prep +det +noun +det +noun +ptcl +verb +verb +prep +det +noun +conj +verb +pron +adj +noun +conj +pron +pron +verb +conj +verb +prep +pron +adj +det +noun +det +noun +ptcl +ptcl +pron +verb +det +noun +conj +det +noun +verb +noun +det +noun +det +verb +conj +det +verb +conj +det +verb +det +noun +pron +noun +det +noun +pron +conj +noun +prep +det +noun +conj +noun +conj +noun +prep +noun +verb +prep +det +noun +det +verb +noun +prep +det +noun +det +noun +conj +det +noun +noun +verb +prep +noun +prep +det +adj +noun +conj +verb +prep +pron +noun +adj +conj +noun +verb +pron +verb +verb +prep +noun +conj +verb +det +num +noun +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +noun +conj +verb +verb +det +noun +pron +verb +prep +pron +conj +verb +verb +num +noun +adj +conj +prep +adj +det +noun +adj +noun +noun +verb +adj +conj +verb +prep +det +noun +noun +adj +conj +det +noun +pron +conj +det +noun +adj +conj +noun +adj +conj +noun +conj +det +noun +pron +conj +noun +noun +conj +det +noun +pron +adj +noun +conj +prep +noun +verb +conj +det +noun +pron +conj +noun +noun +adj +conj +verb +prep +det +adj +noun +pron +noun +num +conj +prep +det +noun +pron +noun +adj +adj +verb +conj +det +noun +pron +conj +det +noun +verb +prep +det +noun +pron +conj +conj +verb +pron +verb +prep +det +noun +pron +conj +adj +conj +verb +det +adj +pron +prep +pron +verb +adv +verb +pron +verb +det +adj +conj +det +adj +conj +det +verb +conj +verb +adj +conj +verb +verb +verb +prep +det +noun +det +noun +conj +verb +det +noun +det +noun +conj +det +noun +conj +verb +pron +verb +conj +pron +verb +conj +pron +verb +verb +prep +pron +det +noun +det +num +noun +pron +verb +prep +det +adj +pron +conj +det +num +noun +det +adj +det +num +noun +noun +det +num +noun +verb +conj +det +noun +det +num +num +noun +verb +det +noun +det +prep +noun +noun +verb +pron +verb +det +verb +det +num +noun +prep +det +adj +pron +det +verb +prep +adj +det +num +noun +det +adj +verb +det +noun +pron +conj +det +noun +conj +det +noun +pron +conj +conj +adv +verb +verb +adj +conj +verb +det +verb +pron +noun +conj +adv +verb +conj +verb +pron +adj +conj +noun +verb +conj +verb +prep +det +noun +pron +conj +adv +verb +conj +verb +prep +pron +conj +det +noun +pron +det +adj +verb +conj +verb +adv +verb +conj +verb +conj +det +adj +noun +verb +conj +conj +adv +verb +pron +conj +verb +det +noun +pron +prep +det +noun +pron +conj +adv +verb +conj +pron +verb +adv +verb +det +noun +det +noun +pron +pron +verb +det +verb +noun +verb +pron +det +noun +verb +det +noun +det +verb +verb +pron +verb +prep +det +noun +det +noun +pron +verb +prep +det +noun +det +noun +conj +det +noun +det +prep +noun +noun +verb +pron +verb +det +adj +conj +det +adj +pron +verb +adj +conj +verb +verb +pron +det +noun +conj +det +noun +conj +adj +verb +conj +det +noun +prep +det +verb +adj +verb +pron +conj +adv +verb +conj +noun +det +noun +adj +verb +pron +verb +verb +verb +verb +det +adj +verb +prep +pron +prep +noun +conj +verb +conj +verb +noun +noun +num +verb +adj +prep +noun +conj +verb +pron +det +noun +det +noun +det +verb +noun +verb +pron +det +noun +verb +det +noun +det +verb +adv +adv +verb +prep +det +noun +det +adj +conj +det +noun +det +prep +noun +noun +verb +pron +verb +det +verb +det +noun +det +adj +det +adj +verb +adv +verb +adv +det +noun +det +noun +conj +verb +det +noun +pron +conj +adv +verb +det +noun +pron +adv +prep +det +noun +noun +det +noun +pron +det +adj +pron +pron +verb +prep +pron +adv +det +noun +verb +conj +verb +prep +pron +adj +conj +verb +adv +verb +det +noun +noun +pron +verb +det +noun +verb +noun +prep +det +noun +noun +verb +adj +conj +verb +adv +verb +adv +pron +verb +det +noun +det +noun +adv +conj +verb +conj +conj +adv +verb +pron +adj +conj +verb +prep +pron +prep +det +noun +det +noun +pron +det +verb +noun +verb +pron +det +noun +verb +det +noun +det +verb +verb +pron +det +noun +det +verb +conj +verb +pron +noun +adj +conj +prep +det +noun +verb +noun +adj +pron +adj +verb +conj +adv +det +verb +conj +det +noun +det +prep +noun +noun +verb +pron +verb +det +noun +det +noun +det +verb +det +noun +pron +conj +noun +noun +conj +det +noun +pron +adj +noun +verb +pron +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +pron +conj +det +noun +pron +det +adj +adj +det +adj +conj +verb +prep +pron +conj +verb +det +noun +noun +det +verb +pron +noun +conj +verb +conj +verb +det +adj +noun +verb +conj +verb +adj +conj +verb +pron +noun +conj +verb +conj +adv +verb +verb +prep +det +noun +pron +verb +verb +pron +prep +noun +conj +det +verb +prep +pron +prep +noun +adj +conj +adv +verb +prep +det +noun +pron +conj +det +noun +pron +verb +prep +noun +conj +verb +adj +det +noun +conj +pron +verb +det +verb +noun +conj +noun +conj +verb +pron +adj +prep +det +noun +pron +conj +verb +pron +det +adj +det +prep +noun +pron +adv +verb +det +noun +pron +pron +adv +verb +det +adj +det +noun +conj +verb +adv +verb +prep +pron +adj +noun +conj +pron +verb +verb +prep +ptcl +pron +verb +conj +det +verb +conj +det +verb +prep +noun +det +noun +pron +verb +pron +noun +prep +det +noun +conj +verb +pron +prep +noun +adj +conj +det +noun +det +adj +verb +adv +pron +verb +prep +det +noun +pron +conj +verb +pron +det +noun +det +adj +det +verb +noun +verb +pron +det +noun +verb +det +noun +conj +det +noun +det +prep +noun +noun +verb +pron +verb +det +verb +det +num +noun +det +noun +conj +det +num +noun +verb +pron +det +noun +adv +noun +verb +adv +verb +conj +adj +verb +verb +verb +conj +verb +det +adj +pron +verb +verb +conj +adv +verb +pron +noun +verb +prep +det +noun +pron +conj +verb +adv +verb +conj +verb +conj +verb +conj +verb +conj +conj +adv +verb +verb +conj +noun +conj +adv +adv +verb +pron +noun +verb +prep +pron +conj +verb +adj +noun +prep +noun +pron +adv +verb +det +noun +pron +conj +verb +prep +pron +prep +adj +conj +adj +verb +det +verb +adv +verb +prep +noun +adj +conj +adv +adv +verb +det +noun +pron +prep +det +noun +det +noun +conj +verb +det +noun +pron +prep +det +noun +pron +conj +prep +det +noun +pron +det +verb +noun +verb +pron +det +noun +verb +det +noun +conj +det +noun +det +prep +noun +noun +verb +pron +verb +det +adj +det +adj +det +verb +det +noun +noun +det +verb +conj +adj +verb +conj +verb +conj +adj +verb +verb +pron +det +noun +verb +verb +prep +pron +noun +verb +pron +pron +verb +adj +verb +conj +adj +noun +verb +conj +verb +pron +det +noun +conj +adv +verb +det +noun +pron +verb +verb +prep +det +noun +det +noun +det +verb +pron +adj +verb +conj +adv +verb +conj +verb +verb +verb +pron +conj +verb +conj +verb +prep +det +noun +pron +conj +verb +conj +pron +verb +pron +conj +verb +det +noun +det +noun +pron +pron +pron +verb +prep +det +noun +det +noun +det +verb +verb +prep +det +noun +adj +verb +det +verb +prep +det +noun +verb +adj +verb +pron +verb +conj +adj +verb +det +noun +pron +det +verb +verb +pron +noun +prep +det +noun +det +noun +pron +conj +adv +adv +adv +verb +adv +conj +verb +prep +pron +det +noun +det +noun +pron +conj +det +noun +det +noun +det +noun +pron +det +adj +noun +det +verb +prep +det +noun +prep +det +noun +pron +conj +det +noun +pron +det +adj +det +verb +noun +verb +pron +det +noun +verb +det +noun +conj +det +noun +det +prep +noun +noun +verb +pron +verb +det +ptcl +det +noun +det +adj +conj +adj +det +noun +det +noun +det +noun +verb +pron +det +noun +adv +verb +conj +adj +conj +adj +verb +verb +adj +conj +adj +adv +conj +adj +verb +conj +conj +adj +conj +adj +verb +pron +verb +prep +det +noun +pron +conj +verb +conj +adj +verb +conj +verb +conj +adj +noun +verb +conj +adv +verb +conj +pron +verb +det +adj +conj +adj +conj +adj +conj +adj +conj +adj +verb +pron +verb +prep +pron +noun +verb +prep +noun +conj +verb +conj +noun +adj +conj +verb +conj +adv +verb +det +noun +det +noun +pron +conj +noun +verb +det +noun +pron +conj +verb +pron +ptcl +pron +verb +verb +conj +verb +conj +verb +conj +verb +verb +verb +prep +det +noun +conj +verb +conj +pron +verb +det +noun +pron +conj +verb +det +noun +verb +prep +pron +conj +verb +prep +pron +conj +pron +prep +pron +det +verb +verb +pron +verb +prep +pron +prep +det +noun +pron +conj +pron +verb +conj +verb +prep +det +noun +pron +prep +det +noun +pron +det +verb +noun +verb +pron +det +noun +verb +det +noun +prep +pron +verb +conj +verb +noun +verb +prep +det +noun +conj +det +noun +det +adj +pron +verb +conj +noun +verb +prep +pron +verb +verb +adv +conj +verb +pron +pron +verb +prep +pron +verb +adv +verb +prep +noun +conj +verb +noun +verb +prep +det +noun +conj +prep +det +noun +verb +conj +det +verb +adj +noun +noun +noun +conj +noun +conj +noun +prep +det +noun +adj +noun +adj +conj +prep +det +noun +noun +num +adj +conj +prep +det +noun +num +adj +adj +verb +verb +prep +noun +adj +conj +prep +det +noun +pron +noun +adj +conj +prep +det +noun +verb +noun +conj +noun +conj +noun +conj +num +noun +noun +verb +prep +det +noun +pron +verb +det +num +noun +det +noun +conj +prep +det +noun +conj +noun +adj +adj +noun +conj +prep +adj +det +noun +conj +noun +det +noun +adj +noun +verb +noun +adv +conj +adv +conj +det +noun +det +adj +adj +noun +conj +det +adj +noun +adj +noun +conj +det +adj +noun +verb +det +noun +conj +noun +conj +det +adj +noun +adj +noun +verb +conj +det +adj +noun +adj +prep +adj +pron +verb +prep +noun +num +adv +conj +adv +verb +noun +conj +noun +adv +verb +noun +conj +noun +verb +adj +adj +adj +noun +det +noun +det +noun +det +verb +conj +det +verb +conj +det +verb +conj +conj +verb +det +noun +noun +conj +noun +conj +noun +det +verb +prep +det +noun +det +verb +prep +det +noun +det +noun +verb +det +num +adj +adj +prep +det +verb +prep +det +noun +conj +verb +det +verb +prep +det +noun +det +noun +conj +verb +det +noun +pron +prep +det +noun +verb +det +noun +conj +det +noun +pron +adj +verb +verb +det +noun +conj +det +noun +conj +det +noun +conj +pron +verb +det +adj +conj +prep +det +noun +pron +verb +conj +verb +conj +verb +prep +det +adj +det +verb +prep +det +noun +noun +verb +adv +conj +adv +verb +noun +num +conj +verb +noun +adj +verb +prep +noun +adj +pron +adj +verb +det +noun +conj +verb +det +noun +pron +conj +verb +adj +prep +det +noun +conj +prep +det +noun +conj +prep +det +noun +verb +det +noun +conj +verb +pron +conj +verb +adj +conj +adj +adj +verb +verb +det +noun +conj +verb +pron +conj +adj +prep +det +adj +verb +pron +adv +verb +verb +verb +det +noun +det +prep +det +noun +noun +det +noun +noun +verb +det +noun +conj +det +num +noun +pron +conj +verb +prep +adj +det +noun +conj +det +adj +noun +conj +prep +adj +det +adj +noun +verb +conj +verb +verb +noun +num +conj +noun +num +pron +verb +det +num +noun +det +noun +verb +prep +adj +det +noun +conj +verb +conj +verb +prep +det +adj +det +verb +prep +det +noun +conj +conj +verb +det +noun +det +adj +noun +conj +det +num +adj +adj +verb +prep +det +noun +verb +adj +noun +conj +noun +adj +verb +noun +pron +verb +det +noun +det +adj +conj +verb +noun +adj +verb +adj +verb +verb +det +noun +conj +verb +det +noun +pron +conj +verb +conj +verb +det +noun +prep +det +noun +pron +prep +adj +noun +conj +noun +conj +noun +conj +noun +conj +verb +pron +det +noun +pron +noun +conj +noun +conj +verb +prep +det +noun +conj +verb +conj +verb +noun +noun +adj +noun +det +noun +conj +det +noun +conj +det +adj +conj +verb +det +noun +pron +noun +noun +conj +noun +noun +verb +noun +adj +adj +verb +det +noun +det +verb +verb +det +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +adj +noun +pron +prep +det +noun +conj +prep +det +noun +conj +prep +det +noun +conj +prep +det +noun +verb +conj +det +prep +pron +adj +verb +verb +det +verb +prep +det +noun +conj +det +noun +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +prep +det +noun +det +noun +conj +det +adj +noun +verb +ptcl +conj +det +adj +verb +conj +verb +conj +verb +conj +verb +det +noun +adj +prep +det +num +noun +conj +verb +adj +prep +det +adj +noun +verb +conj +noun +noun +verb +conj +verb +conj +verb +noun +adj +conj +det +verb +prep +pron +verb +noun +conj +verb +pron +noun +conj +verb +verb +conj +conj +verb +conj +conj +verb +det +noun +det +adj +verb +det +adj +noun +verb +verb +conj +verb +adj +noun +adj +conj +det +verb +prep +pron +verb +pron +verb +det +noun +prep +det +noun +conj +conj +pron +verb +conj +verb +pron +noun +adj +conj +conj +verb +det +noun +det +adj +verb +det +adj +noun +verb +verb +conj +verb +conj +verb +noun +adj +conj +det +verb +prep +pron +verb +noun +prep +det +noun +pron +conj +verb +conj +noun +prep +adj +det +adj +noun +verb +noun +noun +noun +conj +adj +noun +noun +noun +conj +det +noun +conj +det +noun +adv +verb +conj +conj +verb +det +noun +det +adj +verb +noun +det +adj +noun +verb +verb +conj +verb +conj +verb +noun +adj +conj +det +verb +prep +pron +noun +pron +det +noun +conj +det +noun +verb +prep +pron +conj +verb +pron +noun +prep +det +adj +det +noun +verb +prep +noun +conj +prep +noun +conj +prep +noun +conj +prep +det +noun +det +noun +conj +conj +verb +det +adj +noun +verb +prep +det +noun +det +noun +det +verb +prep +det +noun +det +noun +conj +prep +det +noun +pron +verb +conj +verb +noun +adj +verb +det +noun +det +adj +conj +adj +prep +adv +adv +verb +conj +verb +det +noun +pron +prep +det +verb +prep +det +noun +conj +verb +pron +adj +noun +adj +conj +verb +pron +conj +verb +adv +noun +adj +conj +verb +adv +det +noun +pron +conj +det +noun +pron +det +verb +verb +conj +adv +pron +conj +verb +conj +verb +det +noun +det +adj +conj +noun +adj +verb +conj +det +noun +verb +adj +conj +noun +adj +conj +det +noun +adj +verb +conj +noun +conj +det +noun +det +noun +verb +prep +det +noun +conj +noun +verb +det +noun +pron +prep +noun +adj +verb +conj +det +noun +verb +conj +noun +verb +conj +adj +noun +conj +noun +prep +det +noun +pron +verb +conj +det +noun +det +noun +conj +det +noun +conj +det +noun +conj +det +adj +conj +det +adj +conj +adj +noun +conj +adj +verb +pron +prep +det +noun +conj +prep +det +noun +det +noun +conj +verb +det +noun +conj +det +noun +verb +prep +pron +conj +verb +pron +prep +noun +det +verb +prep +det +noun +conj +prep +det +noun +det +noun +conj +verb +det +noun +det +adj +det +noun +pron +conj +pron +verb +verb +prep +pron +verb +adj +noun +verb +prep +det +adj +noun +det +noun +verb +det +adj +noun +det +noun +conj +adv +verb +noun +prep +det +noun +conj +prep +det +noun +conj +prep +adj +noun +conj +verb +adj +noun +verb +prep +noun +noun +verb +noun +noun +verb +conj +verb +noun +adj +det +adj +noun +pron +pron +verb +verb +det +noun +conj +det +noun +verb +adv +verb +det +noun +conj +det +noun +conj +det +noun +conj +verb +det +noun +det +noun +pron +prep +det +noun +pron +conj +verb +det +noun +det +verb +num +num +adj +noun +verb +prep +adj +noun +noun +noun +prep +noun +noun +num +noun +verb +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +prep +noun +noun +num +noun +verb +prep +pron +verb +conj +verb +noun +adj +pron +pron +verb +adj +verb +prep +adj +noun +conj +noun +conj +noun +conj +noun +verb +prep +det +noun +conj +prep +det +noun +verb +noun +adj +conj +noun +prep +det +noun +pron +conj +verb +noun +adj +verb +det +noun +det +noun +pron +det +verb +prep +det +noun +conj +det +noun +conj +adj +det +noun +verb +noun +det +noun +conj +det +adj +conj +det +adj +noun +conj +verb +prep +det +noun +prep +det +noun +pron +conj +verb +det +noun +verb +ptcl +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +det +noun +pron +prep +det +noun +det +noun +ptcl +conj +verb +adj +prep +det +adj +verb +pron +pron +det +verb +det +noun +det +adj +pron +verb +conj +adv +verb +conj +verb +pron +noun +pron +pron +verb +conj +verb +pron +pron +verb +det +verb +prep +det +noun +det +adj +conj +verb +det +noun +pron +conj +verb +pron +prep +det +noun +det +noun +prep +pron +verb +prep +det +noun +det +noun +conj +verb +pron +noun +conj +noun +prep +det +noun +pron +conj +det +verb +prep +det +noun +verb +prep +pron +adv +verb +adv +conj +verb +adv +conj +adv +verb +prep +pron +det +noun +conj +adj +noun +conj +det +noun +det +prep +adj +det +noun +verb +pron +conj +verb +pron +prep +noun +noun +noun +conj +verb +det +noun +adj +noun +prep +det +noun +pron +conj +conj +verb +det +noun +det +adj +verb +noun +prep +det +noun +adv +noun +conj +verb +det +num +noun +pron +prep +det +noun +verb +conj +verb +pron +num +noun +conj +adj +noun +verb +conj +verb +prep +det +noun +verb +noun +adj +conj +verb +pron +noun +adj +conj +verb +det +noun +det +adj +adj +prep +det +noun +det +adj +det +prep +det +noun +conj +verb +det +noun +det +noun +det +noun +det +adj +prep +noun +det +noun +prep +det +noun +conj +verb +det +noun +det +noun +conj +verb +pron +prep +det +noun +det +noun +conj +verb +prep +det +noun +conj +verb +noun +conj +noun +conj +noun +conj +noun +conj +det +num +noun +det +verb +det +num +noun +verb +pron +conj +verb +conj +det +adj +verb +conj +verb +noun +conj +noun +verb +prep +noun +conj +verb +prep +det +noun +conj +det +adj +det +noun +verb +conj +det +adj +det +noun +verb +conj +adj +noun +adj +verb +conj +det +adj +noun +verb +conj +conj +noun +adj +noun +verb +verb +prep +det +noun +conj +verb +det +adj +det +noun +noun +conj +verb +det +adj +det +noun +det +prep +det +noun +det +verb +noun +conj +det +adj +det +noun +verb +conj +det +adj +noun +verb +conj +verb +prep +det +noun +noun +adj +verb +conj +noun +conj +verb +prep +det +adj +det +noun +conj +prep +det +noun +det +noun +conj +det +noun +det +noun +verb +det +noun +conj +verb +det +adj +det +noun +prep +noun +conj +adj +det +noun +verb +prep +det +noun +conj +verb +conj +det +adj +noun +verb +conj +verb +det +adj +det +noun +conj +det +adj +det +noun +conj +det +adj +det +noun +conj +verb +det +adj +pron +conj +det +noun +adv +verb +det +adj +pron +conj +det +noun +adv +conj +verb +conj +verb +adj +noun +verb +prep +noun +verb +noun +adj +ptcl +ptcl +ptcl +det +verb +prep +det +noun +prep +det +adj +noun +det +noun +det +adj +noun +det +verb +verb +conj +det +adj +noun +verb +conj +verb +noun +prep +det +noun +verb +prep +det +noun +conj +verb +pron +det +noun +det +noun +det +noun +conj +verb +det +noun +det +noun +conj +verb +noun +prep +det +noun +conj +noun +noun +adj +conj +verb +det +noun +conj +det +noun +prep +det +noun +det +noun +conj +prep +det +noun +verb +noun +prep +det +noun +conj +verb +pron +noun +conj +verb +noun +det +noun +det +noun +conj +verb +pron +conj +adv +verb +det +noun +det +noun +conj +adj +adj +conj +adj +noun +conj +adv +det +noun +pron +adv +verb +det +noun +det +noun +prep +det +noun +conj +verb +pron +conj +adv +verb +pron +conj +conj +verb +noun +num +conj +det +noun +pron +conj +noun +noun +conj +verb +noun +conj +prep +det +noun +pron +verb +det +noun +det +noun +conj +adv +adv +verb +pron +conj +verb +verb +conj +verb +det +noun +prep +pron +conj +det +noun +det +noun +adj +noun +verb +prep +noun +conj +prep +det +noun +pron +conj +noun +adj +noun +conj +det +noun +pron +conj +noun +noun +conj +verb +noun +conj +noun +noun +conj +det +noun +pron +conj +noun +verb +conj +verb +noun +conj +noun +adj +conj +det +noun +det +noun +pron +conj +noun +noun +noun +adj +verb +prep +noun +conj +verb +noun +adj +noun +conj +noun +conj +prep +det +noun +pron +det +noun +pron +verb +det +noun +noun +num +verb +prep +pron +noun +det +noun +det +noun +noun +pron +adv +noun +conj +prep +det +adj +noun +verb +noun +det +noun +det +adj +verb +verb +verb +adv +num +noun +prep +pron +conj +det +adj +noun +verb +conj +verb +noun +adj +prep +det +adj +noun +det +noun +det +adj +det +prep +det +noun +verb +det +adj +noun +det +verb +det +noun +verb +det +adj +noun +det +verb +prep +det +noun +det +adj +noun +conj +verb +det +adj +noun +det +verb +prep +det +noun +conj +noun +conj +noun +conj +noun +conj +verb +det +adj +det +noun +conj +det +noun +det +noun +det +adj +noun +noun +verb +det +noun +pron +conj +adv +verb +det +noun +prep +det +noun +conj +det +verb +prep +pron +verb +noun +adj +conj +adj +conj +adj +conj +det +noun +det +noun +conj +noun +noun +conj +prep +det +noun +pron +verb +noun +conj +noun +conj +noun +verb +det +adj +det +noun +prep +det +adj +noun +pron +prep +det +noun +conj +det +noun +conj +det +noun +det +verb +prep +det +noun +pron +conj +det +noun +det +noun +verb +prep +det +noun +pron +conj +prep +det +noun +pron +conj +det +noun +pron +adj +noun +verb +noun +conj +prep +pron +verb +conj +det +adj +det +noun +pron +adv +verb +prep +det +noun +pron +conj +verb +prep +det +noun +det +noun +pron +conj +adv +verb +det +noun +conj +det +noun +det +adj +conj +det +adj +conj +det +adj +conj +det +adj +conj +det +adj +pron +verb +conj +verb +conj +verb +conj +verb +conj +adv +verb +prep +det +noun +pron +conj +prep +det +noun +pron +conj +prep +det +noun +pron +conj +prep +det +noun +pron +conj +verb +adj +noun +adj +verb +prep +det +noun +verb +noun +conj +det +noun +prep +det +noun +pron +conj +det +noun +pron +conj +det +noun +conj +det +noun +pron +conj +noun +noun +conj +verb +prep +det +noun +pron +noun +verb +conj +verb +det +noun +pron +det +adj +prep +det +noun +conj +det +adj +prep +det +noun +conj +verb +noun +adj +conj +noun +verb +conj +conj +verb +verb +det +num +noun +det +pron +noun +conj +conj +verb +det +num +noun +verb +verb +conj +verb +noun +prep +det +noun +verb +verb +pron +verb +det +num +noun +conj +adv +pron +verb +conj +det +noun +pron +verb +prep +det +noun +conj +prep +det +noun +verb +verb +det +noun +pron +det +adj +prep +det +noun +conj +verb +prep +det +verb +prep +det +noun +det +noun +pron +verb +det +noun +conj +det +prep +pron +conj +det +noun +conj +det +prep +pron +conj +det +noun +conj +det +prep +pron +conj +noun +adv +verb +conj +prep +det +noun +det +noun +det +adj +noun +adv +verb +verb +adv +verb +det +noun +det +noun +conj +verb +det +pron +noun +det +noun +conj +det +noun +pron +verb +prep +det +noun +adv +verb +prep +pron +conj +verb +verb +verb +det +noun +det +verb +prep +det +noun +det +noun +det +verb +prep +det +noun +conj +prep +det +noun +conj +verb +prep +det +noun +verb +pron +verb +pron +det +noun +conj +verb +pron +verb +conj +verb +pron +conj +verb +pron +det +noun +conj +prep +det +noun +pron +verb +adj +conj +noun +conj +verb +det +noun +prep +det +noun +det +noun +conj +verb +pron +conj +verb +prep +det +noun +pron +conj +noun +adj +conj +conj +verb +pron +verb +det +noun +pron +conj +verb +pron +verb +pron +adv +verb +prep +noun +conj +noun +conj +noun +conj +noun +adj +conj +verb +pron +noun +adj +noun +verb +verb +conj +verb +det +noun +det +noun +conj +det +noun +conj +det +verb +prep +pron +conj +det +noun +det +adv +det +noun +verb +adv +conj +adv +pron +verb +conj +verb +det +noun +conj +det +noun +det +adj +verb +noun +num +num +conj +verb +det +adj +noun +pron +conj +verb +noun +adj +adj +num +verb +noun +pron +verb +det +num +noun +conj +det +num +noun +det +prep +det +noun +det +noun +verb +conj +conj +pron +verb +pron +verb +noun +verb +prep +det +noun +pron +conj +verb +det +adj +pron +conj +conj +pron +verb +pron +verb +adv +verb +pron +verb +pron +verb +det +noun +verb +det +noun +conj +adv +noun +verb +det +noun +det +noun +pron +conj +noun +verb +prep +det +noun +verb +pron +prep +noun +conj +verb +det +noun +prep +adj +noun +conj +ptcl +verb +conj +conj +verb +det +noun +pron +det +noun +det +verb +prep +det +noun +verb +prep +pron +noun +conj +verb +pron +conj +verb +pron +conj +det +noun +pron +prep +det +noun +det +noun +det +adj +pron +verb +adv +noun +conj +noun +adv +adv +det +noun +pron +verb +conj +verb +prep +det +noun +conj +noun +conj +noun +conj +noun +det +noun +pron +noun +adj +conj +adj +conj +adv +verb +det +noun +pron +verb +prep +noun +conj +det +verb +prep +det +noun +verb +prep +pron +conj +verb +conj +noun +verb +pron +conj +pron +det +num +noun +verb +det +verb +prep +det +noun +conj +prep +det +adj +conj +adj +noun +noun +noun +prep +det +noun +verb +prep +pron +conj +verb +prep +det +noun +pron +conj +noun +adj +verb +prep +det +verb +pron +conj +verb +noun +adj +prep +det +noun +verb +pron +verb +adv +conj +verb +prep +det +noun +prep +det +noun +conj +verb +pron +det +adj +pron +conj +prep +pron +det +noun +verb +noun +adj +conj +det +adj +det +noun +verb +conj +verb +prep +det +noun +noun +noun +noun +num +conj +det +adj +adj +verb +conj +verb +noun +det +noun +det +noun +det +noun +det +adj +verb +verb +det +noun +det +adj +verb +adj +conj +det +adj +noun +verb +conj +verb +noun +adj +prep +det +noun +verb +verb +det +noun +det +noun +det +noun +pron +conj +det +noun +pron +conj +verb +prep +det +noun +det +noun +conj +det +num +adj +adj +det +prep +det +noun +verb +prep +det +noun +pron +verb +prep +det +noun +pron +conj +verb +det +noun +verb +verb +pron +noun +det +noun +det +noun +det +verb +conj +det +verb +conj +verb +det +noun +pron +det +adj +conj +verb +conj +det +noun +verb +conj +verb +det +noun +pron +conj +det +noun +det +adj +verb +conj +verb +det +noun +det +noun +pron +det +noun +conj +det +adj +conj +det +verb +det +noun +pron +det +adj +conj +det +adj +conj +verb +det +verb +det +noun +conj +verb +det +noun +det +noun +det +prep +det +noun +conj +verb +det +noun +det +noun +pron +prep +det +noun +pron +conj +verb +noun +conj +noun +conj +noun +conj +noun +conj +noun +adj +conj +noun +adj +verb +prep +det +noun +noun +verb +det +noun +conj +det +noun +prep +det +noun +pron +conj +prep +det +noun +pron +noun +noun +num +conj +prep +noun +verb +conj +verb +verb +conj +verb +verb +conj +verb +adj +noun +prep +det +noun +conj +verb +noun +adj +adj +verb +noun +num +conj +noun +num +conj +prep +det +noun +pron +num +noun +conj +det +noun +pron +verb +det +adj +det +noun +det +noun +conj +verb +pron +prep +det +noun +conj +det +noun +verb +prep +det +noun +det +verb +verb +conj +conj +verb +det +noun +pron +verb +conj +verb +noun +adj +pron +verb +verb +adj +det +noun +prep +noun +adj +conj +verb +det +noun +pron +prep +det +noun +conj +prep +det +noun +pron +conj +det +noun +verb +prep +det +adj +adv +verb +adv +noun +verb +prep +det +noun +conj +adv +verb +pron +noun +adj +adj +num +conj +verb +noun +prep +det +noun +det +noun +conj +det +noun +pron +det +verb +prep +det +noun +conj +verb +det +noun +conj +det +noun +pron +conj +adv +verb +conj +noun +pron +verb +adv +prep +det +noun +conj +verb +det +noun +det +adj +det +noun +det +adj +det +verb +adj +conj +det +noun +det +verb +det +noun +adj +verb +prep +det +noun +conj +det +noun +pron +prep +pron +verb +conj +verb +noun +adj +prep +det +noun +verb +adv +verb +det +noun +conj +det +noun +conj +det +noun +det +noun +pron +conj +det +noun +det +noun +pron +conj +verb +det +noun +det +noun +pron +det +verb +pron +prep +det +noun +pron +noun +conj +noun +conj +pron +verb +pron +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +pron +conj +adv +verb +det +noun +pron +prep +noun +prep +pron +verb +noun +conj +det +prep +pron +verb +ptcl +det +noun +conj +det +noun +conj +verb +det +adj +prep +pron +verb +noun +adj +verb +conj +adj +noun +verb +conj +conj +verb +det +noun +conj +verb +prep +det +noun +verb +det +noun +pron +verb +det +adj +conj +verb +det +noun +det +num +noun +det +noun +det +adj +conj +verb +prep +det +adj +prep +det +noun +pron +adv +verb +adv +noun +conj +noun +conj +adj +noun +prep +noun +det +noun +conj +verb +det +noun +prep +det +noun +pron +prep +det +noun +noun +conj +noun +conj +pron +adj +verb +conj +verb +det +noun +det +noun +conj +verb +det +noun +det +noun +pron +conj +verb +det +noun +pron +verb +det +noun +prep +det +noun +pron +conj +verb +det +noun +prep +det +noun +conj +verb +verb +noun +prep +det +adj +det +noun +pron +det +verb +det +noun +det +noun +conj +verb +det +noun +noun +conj +verb +prep +det +noun +det +noun +conj +verb +prep +det +noun +noun +verb +verb +noun +num +conj +noun +num +conj +prep +det +noun +pron +num +noun +conj +prep +det +noun +pron +noun +noun +conj +det +noun +pron +verb +verb +adj +noun +conj +det +noun +pron +conj +noun +conj +det +noun +pron +conj +noun +noun +conj +verb +pron +det +noun +det +noun +pron +conj +det +noun +pron +conj +noun +adj +conj +adj +prep +det +noun +pron +conj +verb +prep +noun +conj +det +noun +det +noun +pron +verb +conj +verb +adj +det +noun +prep +det +noun +conj +verb +det +noun +conj +verb +det +noun +det +noun +conj +verb +det +noun +verb +pron +adj +det +noun +conj +pron +verb +verb +prep +pron +conj +verb +pron +noun +verb +adj +conj +noun +conj +verb +pron +noun +verb +noun +num +num +conj +verb +det +noun +pron +prep +noun +prep +det +noun +verb +det +noun +pron +conj +det +noun +pron +det +prep +det +noun +verb +conj +verb +pron +verb +noun +prep +det +adj +conj +verb +pron +conj +verb +pron +noun +prep +adj +noun +conj +noun +conj +noun +conj +noun +conj +verb +pron +adj +det +verb +prep +det +noun +adv +verb +pron +det +noun +pron +prep +det +noun +det +noun +det +noun +det +verb +prep +noun +noun +conj +pron +verb +noun +verb +conj +pron +prep +noun +prep +noun +verb +conj +pron +prep +noun +verb +verb +pron +prep +noun +verb +adv +verb +det +noun +conj +det +noun +det +adj +conj +verb +adj +noun +verb +prep +det +noun +conj +verb +noun +num +adj +noun +conj +verb +conj +noun +conj +det +noun +det +adj +noun +adj +verb +prep +pron +conj +verb +det +noun +conj +det +prep +pron +verb +conj +verb +det +noun +det +adj +pron +verb +det +noun +det +noun +pron +conj +verb +noun +adj +conj +adv +verb +noun +prep +det +noun +verb +prep +det +noun +prep +det +noun +conj +verb +det +verb +prep +det +noun +prep +det +noun +pron +verb +pron +verb +prep +det +noun +verb +det +verb +prep +det +noun +verb +noun +det +noun +pron +verb +det +noun +det +noun +conj +verb +conj +verb +pron +verb +noun +det +noun +det +noun +conj +conj +verb +det +noun +det +noun +conj +verb +conj +ptcl +pron +adv +verb +det +noun +det +noun +verb +conj +verb +adj +det +adj +conj +det +adj +conj +det +adj +conj +det +adj +conj +det +adj +conj +det +noun +conj +verb +pron +noun +prep +det +noun +pron +det +adj +conj +prep +det +noun +pron +conj +conj +adv +pron +verb +verb +conj +verb +conj +adv +det +verb +det +noun +det +noun +det +noun +conj +det +noun +det +noun +pron +adv +det +noun +verb +det +verb +noun +verb +det +noun +det +noun +conj +noun +noun +verb +conj +det +noun +pron +adj +num +num +conj +verb +conj +verb +det +noun +verb +prep +det +noun +noun +conj +prep +pron +num +num +adj +noun +verb +det +noun +pron +conj +det +noun +det +noun +pron +verb +prep +det +noun +pron +conj +verb +noun +prep +det +noun +conj +noun +noun +adj +conj +conj +noun +noun +adj +conj +det +noun +pron +verb +conj +noun +verb +prep +det +noun +pron +conj +verb +noun +adj +prep +det +noun +conj +prep +det +adj +noun +conj +det +adj +conj +adj +verb +verb +det +noun +conj +adv +det +num +num +adj +noun +det +verb +prep +det +noun +pron +verb +pron +prep +noun +adv +verb +conj +noun +verb +pron +det +verb +det +noun +ptcl +conj +verb +pron +verb +prep +det +noun +noun +det +noun +conj +det +noun +conj +prep +det +noun +pron +adv +verb +noun +adj +verb +conj +verb +adj +noun +verb +prep +noun +verb +noun +adj +verb +prep +det +verb +prep +det +noun +conj +prep +adj +noun +conj +noun +conj +noun +conj +noun +verb +prep +noun +adj +verb +det +noun +conj +verb +pron +noun +conj +verb +det +noun +det +noun +pron +conj +verb +det +verb +det +noun +conj +det +noun +conj +noun +conj +noun +noun +conj +adj +noun +adj +verb +verb +verb +verb +noun +det +adj +pron +prep +det +noun +det +noun +det +noun +pron +verb +adj +det +noun +conj +adj +noun +adj +verb +pron +verb +prep +noun +adj +conj +pron +verb +det +noun +conj +det +noun +pron +conj +verb +noun +prep +det +noun +pron +conj +prep +det +noun +pron +adv +pron +verb +prep +det +noun +det +noun +det +noun +det +verb +adj +prep +det +noun +det +noun +pron +conj +verb +prep +noun +conj +noun +prep +noun +adj +conj +prep +det +noun +conj +det +noun +det +noun +pron +prep +noun +noun +verb +conj +adv +verb +noun +noun +conj +noun +det +verb +det +noun +conj +det +noun +pron +conj +conj +pron +verb +det +noun +det +noun +pron +adv +verb +det +noun +det +adj +det +verb +det +noun +det +noun +conj +det +noun +noun +conj +verb +noun +prep +det +noun +verb +verb +adj +det +adj +det +prep +noun +verb +adv +ptcl +verb +det +noun +conj +verb +prep +det +noun +pron +conj +det +noun +pron +verb +prep +pron +conj +verb +conj +verb +noun +adj +conj +prep +det +noun +verb +adj +noun +noun +verb +prep +det +noun +pron +noun +adj +conj +prep +det +noun +pron +noun +adj +conj +adj +noun +verb +prep +det +noun +verb +prep +noun +adj +det +verb +prep +det +noun +verb +det +noun +pron +conj +verb +conj +verb +det +noun +verb +conj +verb +det +noun +det +noun +conj +verb +det +verb +prep +det +noun +det +noun +pron +prep +det +noun +conj +verb +det +noun +conj +adj +noun +verb +prep +det +noun +det +prep +det +noun +verb +adv +pron +noun +adj +conj +adj +noun +det +verb +noun +prep +det +noun +verb +prep +det +noun +conj +verb +noun +adj +det +verb +det +noun +det +adj +verb +verb +pron +det +noun +det +adj +conj +verb +det +noun +det +noun +det +noun +conj +verb +det +noun +pron +conj +verb +det +noun +det +noun +pron +prep +det +noun +conj +verb +det +noun +det +noun +conj +verb +prep +det +noun +det +noun +det +noun +det +adj +conj +verb +det +noun +prep +det +noun +conj +verb +noun +prep +det +noun +prep +det +noun +det +noun +prep +noun +adj +adj +conj +verb +adj +noun +prep +det +noun +adj +conj +adj +noun +num +verb +noun +num +det +adj +conj +prep +pron +verb +det +noun +det +noun +conj +verb +conj +noun +adj +verb +noun +conj +det +verb +prep +det +noun +conj +prep +det +noun +pron +conj +prep +det +noun +det +noun +pron +verb +prep +det +noun +det +adj +verb +noun +det +noun +conj +verb +det +noun +noun +det +noun +det +noun +conj +det +noun +det +noun +verb +adj +conj +adj +det +noun +pron +noun +det +noun +det +noun +adj +conj +adj +det +noun +pron +det +noun +det +noun +pron +adv +adv +verb +noun +conj +verb +det +noun +pron +conj +adj +adj +conj +adj +det +noun +verb +conj +verb +prep +pron +conj +det +noun +pron +verb +conj +prep +pron +verb +conj +verb +det +noun +det +noun +det +noun +prep +det +noun +conj +verb +det +num +noun +det +verb +det +num +noun +prep +det +noun +verb +noun +adj +adj +conj +verb +prep +det +noun +noun +adj +conj +adj +prep +det +adj +noun +verb +det +num +noun +num +noun +adj +verb +det +noun +det +noun +det +verb +prep +det +noun +det +noun +conj +verb +det +noun +noun +prep +det +noun +det +noun +conj +prep +det +noun +pron +conj +adj +verb +verb +prep +det +noun +conj +verb +det +num +noun +det +num +noun +conj +verb +adj +noun +prep +det +noun +verb +det +num +noun +verb +conj +verb +det +num +noun +det +noun +det +noun +prep +det +noun +conj +verb +det +adj +conj +verb +det +noun +pron +prep +det +noun +conj +verb +noun +adj +conj +adj +prep +det +noun +det +verb +det +noun +det +noun +conj +det +verb +det +noun +pron +conj +det +adj +verb +det +noun +pron +prep +det +noun +conj +verb +noun +conj +adj +conj +adj +noun +noun +det +prep +det +noun +verb +conj +det +adj +verb +det +noun +pron +prep +det +noun +conj +det +noun +det +noun +conj +verb +noun +conj +verb +det +noun +det +noun +verb +adj +verb +det +verb +conj +det +verb +det +adj +conj +pron +verb +conj +noun +adj +conj +noun +verb +conj +noun +pron +verb +verb +adj +verb +conj +verb +det +noun +verb +ptcl +noun +det +noun +det +noun +adj +conj +adj +det +noun +pron +conj +det +adj +verb +det +noun +pron +prep +det +noun +conj +verb +pron +verb +det +noun +prep +noun +conj +verb +det +noun +noun +adj +conj +verb +det +noun +det +noun +det +verb +det +noun +prep +det +noun +pron +conj +adv +verb +verb +pron +noun +conj +det +adj +verb +det +noun +pron +prep +det +noun +det +noun +conj +verb +det +noun +pron +verb +conj +verb +det +noun +pron +prep +det +noun +conj +verb +det +noun +det +noun +prep +det +noun +pron +conj +prep +det +noun +pron +conj +adv +verb +prep +det +noun +pron +conj +det +adj +verb +det +noun +pron +prep +det +noun +det +adj +noun +conj +verb +det +noun +pron +conj +verb +det +noun +det +noun +det +prep +noun +noun +conj +verb +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +conj +prep +det +noun +det +noun +noun +adj +adj +conj +noun +conj +verb +noun +noun +verb +noun +pron +verb +prep +det +noun +det +noun +adj +verb +pron +prep +det +noun +det +noun +det +adj +det +noun +det +noun +verb +verb +conj +noun +adj +det +verb +conj +verb +det +noun +pron +conj +adv +adj +verb +conj +verb +det +noun +pron +conj +verb +pron +prep +det +noun +det +verb +adv +noun +conj +det +adj +verb +det +noun +pron +prep +det +noun +conj +verb +noun +adj +prep +det +noun +prep +det +noun +verb +verb +conj +verb +noun +conj +noun +conj +noun +conj +noun +adj +verb +pron +adv +verb +prep +pron +noun +verb +prep +det +noun +pron +noun +adv +adj +conj +verb +det +noun +det +adj +prep +adj +noun +conj +det +noun +det +noun +verb +conj +noun +det +adj +verb +prep +det +noun +verb +pron +det +noun +det +noun +det +noun +det +noun +pron +conj +adj +noun +verb +conj +noun +adv +verb +conj +noun +adj +adv +adj +verb +prep +det +noun +prep +det +noun +conj +verb +det +noun +det +noun +prep +det +noun +det +noun +conj +adj +verb +det +noun +pron +adv +conj +verb +adj +prep +det +num +noun +det +verb +det +num +noun +conj +verb +prep +pron +verb +verb +verb +pron +det +noun +det +noun +det +adj +det +verb +prep +noun +adj +prep +pron +verb +det +noun +det +noun +conj +verb +det +verb +det +noun +prep +det +noun +det +noun +pron +conj +verb +pron +prep +adj +prep +noun +conj +verb +noun +verb +prep +noun +adj +verb +noun +noun +verb +noun +num +conj +noun +num +conj +det +noun +verb +verb +adj +conj +adj +conj +verb +noun +conj +noun +adj +conj +noun +verb +prep +det +noun +pron +noun +adj +verb +noun +conj +det +adj +det +noun +pron +conj +prep +det +noun +pron +verb +noun +noun +noun +det +adj +det +noun +det +noun +conj +det +noun +det +noun +conj +verb +det +noun +verb +prep +det +noun +det +adj +conj +prep +det +noun +det +noun +noun +conj +verb +verb +pron +noun +adj +conj +verb +pron +det +noun +prep +pron +verb +pron +verb +pron +det +noun +det +noun +conj +det +noun +det +verb +pron +det +verb +det +num +noun +conj +det +num +noun +det +noun +pron +verb +verb +conj +adv +verb +conj +verb +verb +prep +det +noun +conj +prep +noun +verb +conj +verb +det +verb +prep +det +noun +pron +det +noun +adv +verb +prep +det +noun +det +noun +prep +noun +noun +verb +det +noun +conj +verb +conj +adv +verb +conj +verb +adv +det +noun +det +verb +noun +det +num +noun +num +noun +verb +adv +det +noun +verb +prep +pron +conj +noun +num +verb +det +num +verb +det +adj +verb +det +adj +adv +verb +conj +conj +verb +adj +pron +verb +verb +conj +det +noun +pron +verb +conj +adv +verb +adv +pron +adj +verb +conj +prep +det +num +verb +conj +prep +noun +verb +conj +det +num +noun +pron +verb +verb +num +noun +pron +noun +adv +verb +conj +noun +conj +noun +adj +noun +verb +prep +det +noun +pron +adj +noun +verb +conj +det +noun +conj +noun +pron +det +noun +verb +pron +prep +det +noun +verb +conj +det +noun +verb +pron +conj +verb +noun +noun +conj +noun +noun +conj +det +prep +pron +adj +conj +adj +conj +adj +conj +verb +pron +det +noun +pron +verb +adv +det +noun +verb +verb +noun +conj +noun +conj +noun +conj +noun +conj +det +num +noun +pron +verb +conj +det +noun +pron +verb +det +noun +conj +verb +pron +verb +conj +adj +conj +det +noun +pron +verb +conj +pron +verb +prep +noun +conj +det +noun +verb +prep +det +noun +pron +verb +det +noun +pron +conj +verb +adj +noun +conj +verb +det +noun +pron +det +noun +conj +verb +det +noun +det +noun +conj +det +noun +pron +verb +verb +det +noun +det +adj +det +verb +noun +prep +det +noun +det +noun +prep +pron +verb +adj +noun +verb +prep +det +noun +verb +noun +adj +conj +det +noun +verb +prep +det +noun +pron +conj +verb +prep +adj +noun +verb +verb +verb +noun +det +adj +conj +verb +noun +noun +conj +noun +adj +noun +adj +conj +noun +adj +noun +adj +conj +verb +conj +prep +det +noun +det +noun +det +noun +pron +verb +adj +det +noun +conj +det +noun +det +noun +prep +pron +verb +conj +det +noun +det +noun +prep +det +noun +det +noun +pron +verb +conj +verb +adj +noun +prep +det +noun +verb +det +noun +pron +verb +prep +pron +conj +adv +verb +det +noun +pron +conj +conj +prep +det +noun +pron +adv +verb +conj +verb +pron +det +noun +prep +det +noun +conj +verb +det +noun +det +noun +pron +verb +pron +conj +adv +pron +verb +conj +verb +det +adj +prep +det +noun +pron +prep +det +noun +pron +verb +verb +pron +adj +pron +verb +pron +conj +verb +pron +noun +conj +noun +verb +pron +conj +prep +det +noun +pron +verb +conj +verb +noun +conj +noun +adv +verb +conj +noun +adv +adv +verb +prep +pron +prep +adj +noun +verb +det +noun +pron +noun +conj +noun +conj +noun +conj +prep +noun +verb +conj +adj +noun +det +noun +det +verb +pron +conj +verb +conj +verb +prep +pron +det +noun +det +noun +det +prep +pron +verb +conj +verb +conj +verb +det +noun +det +noun +pron +prep +adv +verb +prep +det +noun +det +noun +pron +verb +ptcl +intj +det +noun +det +adj +noun +det +noun +det +adj +conj +adj +noun +verb +det +noun +pron +conj +det +noun +det +noun +verb +conj +verb +prep +pron +conj +adj +verb +adv +det +noun +pron +noun +noun +conj +noun +conj +noun +adj +conj +noun +conj +adj +conj +noun +conj +adj +conj +adj +conj +adj +noun +adj +conj +adj +noun +adj +conj +adj +noun +prep +noun +adj +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +conj +noun +noun +conj +det +noun +pron +det +noun +det +noun +verb +prep +pron +conj +adj +det +adj +conj +det +adj +verb +prep +pron +conj +adv +adv +adv +pron +verb +det +noun +pron +det +verb +prep +pron +prep +adv +verb +prep +det +noun +det +noun +pron +verb +conj +verb +verb +ptcl +intj +det +noun +det +adj +det +verb +adj +conj +adj +conj +adj +conj +verb +prep +noun +conj +noun +adj +conj +noun +conj +adj +noun +verb +det +pron +noun +conj +adj +noun +conj +adj +det +prep +noun +verb +conj +noun +conj +pron +det +noun +verb +prep +adv +verb +conj +verb +verb +det +noun +det +noun +pron +verb +pron +adj +det +noun +det +adj +conj +verb +noun +prep +det +noun +pron +conj +verb +verb +conj +verb +verb +ptcl +intj +det +noun +det +adj +prep +pron +verb +adj +det +verb +det +noun +prep +det +noun +prep +det +noun +pron +conj +adj +noun +verb +verb +prep +pron +noun +conj +det +adj +conj +det +noun +conj +det +noun +conj +verb +det +noun +det +noun +pron +prep +pron +conj +verb +adj +noun +adj +noun +conj +adj +adj +conj +verb +prep +det +noun +verb +adv +noun +verb +noun +det +adj +noun +conj +adv +adv +verb +adv +conj +noun +noun +conj +adj +conj +noun +conj +noun +adv +adv +verb +prep +pron +adv +conj +adj +noun +adj +noun +adv +adv +verb +prep +pron +adv +conj +noun +noun +adv +adv +verb +prep +pron +adv +conj +noun +noun +adv +adv +verb +prep +pron +adv +conj +noun +noun +conj +noun +adv +adv +verb +prep +pron +adv +conj +det +noun +pron +verb +det +noun +det +noun +conj +prep +det +noun +pron +verb +adj +det +noun +conj +prep +pron +verb +noun +noun +conj +adj +conj +adj +det +verb +prep +det +noun +prep +pron +verb +conj +noun +adj +noun +adj +prep +det +noun +verb +ptcl +det +noun +conj +det +noun +conj +det +noun +det +noun +pron +conj +adj +conj +adj +det +noun +pron +conj +verb +det +noun +det +adj +pron +verb +det +noun +prep +det +noun +pron +conj +verb +det +noun +det +noun +pron +prep +noun +pron +conj +adj +verb +ptcl +conj +det +noun +pron +verb +prep +det +noun +det +noun +conj +verb +det +adj +det +num +adj +conj +det +adj +noun +conj +verb +det +noun +det +verb +prep +det +noun +verb +ptcl +ptcl +conj +noun +prep +det +noun +verb +verb +verb +det +noun +pron +adj +det +noun +pron +det +verb +pron +det +adj +conj +det +adj +conj +verb +conj +noun +noun +adj +conj +conj +noun +noun +adj +conj +conj +noun +noun +adj +verb +ptcl +conj +verb +noun +det +noun +pron +det +noun +verb +conj +verb +conj +verb +det +noun +pron +conj +verb +det +noun +det +noun +conj +det +noun +pron +verb +pron +conj +verb +pron +conj +verb +adj +adj +adj +conj +det +adj +det +noun +det +adj +verb +conj +verb +pron +verb +adj +det +prep +det +noun +det +noun +det +noun +verb +conj +verb +pron +pron +det +noun +adj +det +noun +verb +conj +verb +prep +det +noun +pron +verb +pron +conj +verb +pron +verb +adv +verb +noun +pron +conj +det +noun +pron +det +verb +det +noun +noun +det +noun +verb +conj +det +noun +noun +verb +det +noun +det +noun +conj +verb +det +noun +verb +conj +verb +noun +adj +conj +det +verb +prep +pron +verb +adj +conj +adj +conj +prep +noun +verb +conj +verb +conj +det +noun +pron +noun +noun +conj +prep +det +noun +pron +noun +adj +verb +noun +verb +pron +adj +verb +conj +adv +pron +conj +verb +noun +verb +noun +conj +verb +det +noun +pron +det +noun +det +noun +conj +det +noun +det +prep +det +noun +verb +pron +prep +noun +adj +verb +adj +adj +adj +conj +prep +det +noun +pron +verb +noun +adj +conj +prep +pron +verb +det +noun +conj +pron +verb +pron +prep +noun +adj +conj +pron +verb +det +noun +det +noun +det +noun +det +noun +det +noun +det +noun +conj +verb +prep +det +noun +conj +prep +det +noun +pron +noun +verb +noun +noun +conj +noun +noun +conj +verb +adj +noun +verb +prep +det +noun +conj +verb +prep +noun +adj +verb +adj +det +noun +det +verb +prep +noun +verb +verb +prep +det +noun +det +adj +det +noun +conj +verb +noun +noun +conj +noun +noun +conj +noun +adj +conj +noun +noun +conj +det +verb +prep +pron +conj +noun +adj +conj +adj +conj +noun +conj +adj +conj +adj +conj +verb +det +noun +conj +det +noun +det +noun +conj +det +noun +pron +verb +verb +det +noun +prep +det +verb +prep +det +noun +conj +prep +det +noun +pron +conj +verb +det +noun +conj +prep +pron +det +noun +det +verb +det +noun +prep +pron +prep +pron +verb +det +verb +det +noun +det +noun +conj +det +verb +det +noun +pron +verb +verb +det +num +prep +det +noun +det +noun +det +verb +prep +noun +conj +det +adj +verb +prep +det +noun +det +verb +prep +det +noun +det +verb +prep +det +noun +pron +conj +adj +det +noun +verb +prep +det +noun +pron +conj +verb +noun +verb +prep +det +noun +verb +det +noun +det +noun +conj +noun +adj +prep +det +noun +pron +conj +verb +det +noun +det +noun +det +adj +pron +verb +adj +conj +det +noun +conj +verb +pron +adj +noun +conj +verb +pron +prep +det +noun +conj +verb +conj +verb +prep +pron +conj +adv +verb +adv +det +noun +conj +verb +det +adj +noun +prep +pron +verb +verb +pron +adj +noun +conj +verb +noun +conj +verb +prep +pron +conj +noun +verb +pron +conj +det +noun +det +verb +prep +det +noun +noun +conj +prep +det +noun +det +noun +conj +pron +adv +verb +det +noun +conj +det +noun +pron +conj +adv +verb +det +noun +prep +det +noun +conj +prep +det +noun +pron +conj +verb +conj +verb +prep +det +noun +adj +noun +det +adj +det +adj +adv +verb +conj +verb +det +adj +noun +pron +det +noun +det +adj +adj +conj +adj +det +verb +noun +prep +det +noun +det +adj +prep +pron +det +adj +noun +adv +verb +noun +conj +verb +noun +det +noun +conj +det +noun +conj +verb +prep +pron +det +adj +noun +conj +conj +verb +det +adj +noun +verb +det +noun +prep +det +noun +pron +conj +verb +verb +det +noun +det +prep +det +adj +noun +det +noun +det +noun +conj +noun +verb +pron +prep +det +noun +pron +det +noun +pron +conj +det +noun +det +noun +conj +verb +prep +det +noun +det +noun +conj +verb +det +noun +det +adj +conj +det +noun +det +verb +conj +verb +noun +prep +det +noun +conj +verb +pron +conj +det +adj +det +verb +pron +verb +prep +det +noun +det +noun +conj +noun +adv +adv +det +noun +conj +det +noun +conj +verb +noun +conj +noun +prep +det +noun +det +noun +conj +verb +noun +adj +adj +conj +det +verb +prep +pron +prep +pron +det +noun +verb +det +noun +conj +det +noun +conj +noun +adv +verb +pron +conj +verb +det +adj +det +adj +conj +det +adj +verb +prep +det +noun +conj +noun +verb +conj +adj +noun +verb +pron +verb +det +noun +conj +verb +det +adj +prep +det +verb +prep +det +noun +prep +det +noun +pron +conj +verb +det +noun +det +adj +det +prep +pron +conj +det +noun +conj +det +noun +verb +det +adj +det +prep +pron +conj +verb +adj +prep +det +noun +pron +conj +det +noun +conj +det +noun +verb +prep +det +noun +det +noun +pron +det +noun +det +adj +det +noun +det +noun +verb +conj +conj +pron +adv +verb +prep +det +noun +det +noun +verb +verb +prep +det +noun +det +noun +conj +verb +noun +adj +conj +noun +adj +conj +det +adj +noun +conj +det +adj +noun +verb +conj +det +noun +adv +verb +adv +conj +verb +det +noun +det +adj +noun +adj +verb +prep +det +noun +prep +det +noun +verb +conj +noun +verb +det +noun +pron +conj +verb +noun +adj +prep +det +noun +verb +verb +det +noun +det +noun +prep +det +noun +conj +verb +prep +pron +conj +pron +noun +pron +verb +conj +pron +det +noun +prep +pron +verb +conj +verb +adj +noun +prep +det +noun +pron +conj +det +noun +adv +verb +adv +conj +noun +conj +noun +conj +noun +adv +verb +adv +conj +det +adj +verb +conj +verb +det +verb +prep +det +noun +verb +adj +verb +adj +conj +verb +verb +conj +pron +det +noun +adj +conj +adj +verb +conj +verb +pron +verb +pron +det +noun +conj +det +noun +det +noun +conj +det +noun +pron +det +verb +verb +prep +det +noun +det +noun +det +noun +adv +det +verb +verb +pron +conj +verb +pron +noun +conj +pron +verb +pron +noun +conj +det +adj +conj +adj +conj +verb +conj +noun +conj +noun +conj +noun +conj +noun +conj +adj +det +adj +det +noun +pron +prep +det +noun +det +verb +noun +conj +noun +pron +verb +det +noun +det +adj +conj +verb +adj +prep +det +num +noun +det +verb +det +num +noun +det +verb +det +num +noun +det +adj +conj +verb +prep +pron +verb +verb +verb +pron +det +noun +det +noun +det +noun +conj +verb +pron +prep +noun +prep +noun +adj +conj +adj +conj +verb +pron +det +noun +det +adj +noun +verb +prep +det +noun +prep +det +noun +verb +det +noun +det +noun +det +noun +pron +adj +noun +adj +conj +noun +noun +verb +verb +noun +adj +conj +adj +verb +noun +num +conj +prep +det +noun +noun +num +conj +verb +noun +pron +verb +det +num +noun +noun +noun +prep +noun +noun +adj +conj +prep +noun +noun +adj +conj +prep +noun +noun +adj +conj +prep +noun +noun +adj +conj +det +noun +det +noun +verb +noun +num +conj +prep +pron +num +noun +det +num +noun +det +noun +conj +det +verb +prep +pron +verb +noun +noun +adj +conj +verb +det +noun +conj +det +noun +pron +conj +det +noun +pron +conj +det +noun +adj +verb +conj +det +noun +pron +pron +det +noun +conj +verb +det +noun +det +noun +prep +noun +num +noun +det +noun +conj +det +noun +conj +det +noun +pron +adj +verb +conj +verb +det +noun +pron +num +num +adj +noun +noun +noun +pron +verb +noun +conj +det +noun +det +noun +pron +noun +conj +det +noun +noun +adj +adj +noun +adj +det +noun +det +noun +det +noun +adj +noun +adj +verb +det +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +det +adj +noun +conj +det +num +noun +num +noun +prep +adj +adj +det +noun +verb +prep +adj +noun +conj +det +noun +det +noun +noun +adj +conj +noun +adj +conj +noun +adv +verb +prep +pron +conj +det +noun +det +noun +det +noun +conj +det +noun +noun +pron +verb +conj +det +noun +adv +verb +noun +det +noun +conj +det +noun +conj +verb +pron +conj +det +noun +det +noun +verb +pron +conj +det +noun +pron +det +noun +conj +verb +det +noun +prep +det +noun +pron +conj +det +noun +det +noun +verb +det +noun +pron +prep +pron +conj +det +noun +pron +adv +adv +verb +noun +conj +noun +adv +verb +adv +conj +verb +det +noun +conj +det +noun +det +noun +prep +pron +conj +adv +adv +verb +prep +pron +adj +adj +conj +det +verb +noun +conj +noun +conj +adv +det +verb +prep +det +noun +det +noun +det +noun +conj +verb +pron +noun +noun +noun +adj +conj +noun +verb +prep +det +noun +det +noun +conj +det +noun +prep +adj +det +noun +pron +conj +det +noun +adv +conj +adv +noun +noun +verb +noun +num +prep +noun +adj +verb +det +noun +pron +conj +det +noun +det +noun +prep +noun +det +noun +conj +adj +noun +adv +verb +adv +conj +det +noun +det +noun +conj +det +noun +prep +pron +verb +conj +det +noun +pron +verb +pron +conj +verb +det +noun +pron +conj +det +noun +pron +prep +det +noun +pron +conj +noun +adv +verb +adv +conj +adv +verb +noun +noun +noun +conj +noun +noun +conj +noun +det +noun +verb +prep +pron +conj +verb +prep +det +noun +det +noun +conj +verb +pron +pron +det +noun +adj +conj +adj +conj +det +noun +det +noun +det +noun +det +noun +verb +det +noun +pron +verb +det +noun +pron +pron +verb +prep +noun +verb +conj +verb +verb +adj +adj +det +verb +det +noun +det +noun +det +noun +pron +pron +noun +det +verb +conj +verb +pron +conj +conj +verb +conj +verb +verb +verb +prep +det +noun +det +noun +det +verb +pron +pron +conj +verb +pron +verb +adv +verb +noun +pron +conj +det +noun +pron +det +noun +conj +det +verb +det +noun +det +noun +pron +det +noun +verb +conj +verb +pron +adv +verb +det +noun +det +noun +det +noun +pron +conj +det +noun +adv +verb +det +verb +verb +adv +conj +det +adj +verb +adv +conj +det +adj +noun +verb +adv +conj +det +adj +verb +adv +verb +verb +adj +conj +det +noun +pron +prep +pron +verb +adj +conj +det +noun +pron +verb +pron +det +noun +conj +det +noun +det +adj +conj +det +adj +det +noun +conj +det +noun +adj +det +verb +det +noun +pron +conj +verb +det +noun +pron +prep +det +noun +det +noun +conj +det +noun +verb +prep +det +noun +adv +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +det +noun +conj +adj +verb +conj +verb +noun +pron +noun +verb +det +noun +pron +verb +pron +pron +prep +det +noun +pron +verb +det +noun +conj +det +noun +noun +det +noun +det +adj +det +adj +conj +det +noun +conj +det +noun +verb +verb +conj +det +verb +verb +verb +conj +det +verb +verb +det +verb +verb +noun +noun +adv +verb +pron +adj +det +verb +det +noun +det +noun +det +noun +pron +conj +pron +verb +prep +pron +verb +det +noun +prep +pron +det +noun +det +verb +prep +det +noun +pron +conj +conj +pron +verb +prep +det +noun +det +noun +det +noun +pron +verb +det +noun +det +noun +pron +prep +det +noun +det +noun +conj +prep +det +noun +det +adj +det +verb +prep +det +noun +pron +verb +det +verb +pron +ptcl +verb +adj +ptcl +verb +noun +noun +det +noun +det +noun +noun +prep +adj +154024 cl +np +np +154030 np +np +154034 cl +np +154037 cl +np +154040 cl +154042 np +154044 np +np +154047 cl +154049 np +154051 np +pp +np +154055 cl +np +154058 cl +np +154061 cl +np +154064 cl +np +154067 cl +np +154070 cl +np +pp +np +154075 cl +np +pp +np +154080 cl +np +154083 cl +154085 np +np +154090 cl +np +pp +np +np +154096 cl +np +154099 cl +np +154102 cl +np +154105 cl +np +154108 cl +np +154111 cl +np +154114 cl +np +154117 cl +np +154120 cl +np +154123 cl +np +154126 cl +np +154129 cl +np +154132 cl +154134 np +154136 np +np +pp +np +np +154144 cl +pp +np +np +np +154150 cl +np +154153 cl +np +154156 cl +np +154159 cl +np +154162 cl +np +154165 cl +np +154168 cl +np +154171 cl +np +154174 cl +np +154177 cl +np +154180 cl +154182 np +np +np +154186 cl +pp +154190 cl +154194 cl +np +np +np +154199 pp +pp +np +154203 cl +154205 pp +pp +np +np +np +154211 cl +154213 pp +np +np +pp +np +np +154221 cl +np +np +154225 np +154228 cl +154230 np +np +np +cl +154236 cl +cl +pp +pp +np +154243 cl +154245 np +np +154248 cl +154250 cl +cl +cl +154255 cl +cl +np +pp +cl +154262 cl +154265 np +cl +np +np +154270 cl +154272 cl +pp +pp +np +154278 cl +154280 cl +np +np +154284 cl +np +np +pp +np +np +154293 cl +np +154296 cl +154298 cl +pp +pp +np +cl +cl +cl +np +pp +154308 cl +154310 cl +np +np +154314 cl +vp +cl +pp +np +154324 cl +np +cl +pp +np +154330 cl +np +np +154335 cl +np +np +154339 cl +pp +cl +154343 cl +np +np +154349 cl +np +pp +np +np +pp +np +154357 np +cl +pp +pp +cl +154363 cl +np +np +cl +np +np +154371 cl +np +np +pp +np +154377 cl +cl +154383 cl +cl +154386 np +154388 cl +np +pp +154392 cl +cl +np +np +154398 np +np +pp +cl +np +154405 cl +154407 cl +pp +np +np +154412 cl +pp +np +154417 cl +154420 np +pp +np +np +154425 cl +pp +154428 cl +cl +154431 np +np +np +154436 cl +cl +np +pp +np +np +np +np +cl +154446 cl +cl +pp +154450 cl +cl +pp +np +154458 cl +cl +154461 cl +cl +154466 cl +cl +np +154470 cl +cl +np +154474 cl +pp +np +cl +cl +pp +cl +np +154484 cl +cl +np +np +154491 cl +cl +pp +np +np +np +pp +154499 np +np +154502 cl +cl +154505 cl +cl +np +np +154515 cl +cl +pp +cl +pp +pp +np +pp +np +np +154528 cl +cl +np +pp +np +cl +154536 cl +cl +154539 np +154541 np +np +154544 cl +pp +154548 cl +154551 cl +154553 cl +cl +np +154557 cl +154562 cl +cl +154565 np +154567 np +np +154570 cl +pp +154573 cl +pp +np +np +154578 cl +154580 cl +pp +pp +np +cl +cl +pp +np +np +154591 cl +cl +cl +cl +pp +np +154598 cl +cl +np +154602 np +np +154606 pp +154608 pp +np +np +np +154613 pp +154615 pp +np +154618 cl +pp +np +154622 cl +154624 cl +pp +154627 np +cl +cl +pp +154634 np +154636 cl +np +np +154640 cl +cl +154643 cl +154647 cl +np +cl +np +pp +np +pp +cl +154657 cl +cl +154660 np +154662 np +np +154665 cl +pp +np +154669 cl +154671 cl +np +np +np +154678 cl +cl +154681 np +154683 np +np +154686 cl +pp +np +154691 cl +cl +154694 cl +np +pp +154698 np +np +cl +154704 cl +cl +pp +pp +np +np +np +154712 cl +cl +pp +np +cl +154718 cl +154720 cl +pp +np +154724 cl +154727 cl +pp +np +np +154732 np +cl +pp +np +np +np +cl +154740 cl +154742 cl +np +np +np +154748 cl +154750 cl +pp +154753 np +cl +cl +np +cl +pp +np +154761 cl +np +np +cl +np +np +154771 cl +np +np +np +np +pp +np +154779 cl +np +pp +np +np +154785 cl +np +np +154790 np +154793 cl +pp +154797 np +np +154800 np +np +np +np +154805 cl +pp +np +154809 pp +cl +np +np +154815 cl +cl +np +np +np +154822 cl +pp +np +cl +154827 np +cl +pp +np +np +cl +154835 cl +np +adjp +np +154841 cl +cl +pp +cl +np +154847 cl +154849 cl +np +cl +pp +np +np +np +154858 cl +np +pp +np +np +np +154867 cl +np +np +cl +np +154873 cl +pp +154878 cl +pp +pp +154882 cl +154884 cl +pp +cl +cl +np +154890 cl +pp +154893 np +154897 cl +np +np +pp +np +np +154904 cl +np +np +154909 cl +np +np +pp +np +154915 cl +np +np +154919 cl +np +pp +np +pp +np +pp +np +154928 cl +pp +154932 cl +cl +154935 cl +cl +pp +154939 cl +pp +154943 cl +cl +np +154947 cl +154949 cl +cl +cl +np +154954 cl +154957 cl +cl +np +pp +np +154965 cl +np +154968 cl +cl +np +pp +cl +pp +154976 cl +pp +np +cl +cl +154982 np +np +np +cl +pp +154988 cl +np +pp +np +pp +np +cl +pp +np +154999 cl +cl +155002 np +155004 np +155007 cl +cl +155010 cl +155013 cl +np +np +cl +155018 cl +np +np +155023 cl +cl +cl +155027 cl +pp +np +np +cl +pp +np +np +cl +pp +np +155040 cl +np +pp +np +np +155047 cl +pp +np +np +np +155053 cl +155056 cl +np +np +cl +155062 cl +155065 cl +np +np +pp +155071 cl +pp +cl +pp +np +np +155078 cl +np +cl +cl +155083 np +np +155087 cl +np +pp +np +adjp +155094 cl +155096 np +np +np +np +155101 np +np +155104 cl +155106 cl +np +155109 cl +cl +155112 cl +np +cl +155118 cl +155120 cl +155122 np +np +155125 cl +np +155129 cl +np +155132 cl +cl +155135 cl +155138 cl +cl +155141 cl +pp +np +155147 cl +cl +np +cl +pp +155153 np +np +pp +np +155160 cl +155162 cl +pp +155165 np +cl +155170 np +np +155173 np +155175 np +np +pp +np +np +np +cl +155183 np +155185 cl +pp +np +155189 cl +155192 cl +pp +np +155198 cl +pp +np +155202 cl +155204 cl +155206 cl +155208 cl +np +np +np +155214 cl +cl +pp +np +np +np +cl +155222 np +155226 cl +155229 np +np +pp +np +155235 cl +155238 cl +155240 cl +pp +155243 cl +np +155247 cl +cl +np +155252 cl +cl +cl +155256 np +np +155260 np +np +155264 np +np +pp +np +pp +155270 np +np +np +np +155276 cl +155279 cl +cl +155282 np +155284 np +np +155288 cl +pp +np +np +155293 cl +pp +np +np +155298 cl +np +np +np +155303 cl +155305 np +155307 np +pp +np +155312 cl +np +np +pp +np +np +155321 cl +155323 np +155325 cl +155327 cl +np +155331 cl +155333 cl +155336 cl +155339 cl +np +np +155343 pp +np +155350 pp +np +155354 cl +cl +np +pp +np +155362 cl +cl +np +np +155368 cl +cl +np +np +cl +155374 cl +np +np +np +155379 cl +np +np +np +155384 cl +155386 cl +155388 cl +155390 cl +np +155393 cl +np +155396 cl +155398 cl +155401 np +155403 cl +155405 cl +np +155408 cl +155410 cl +np +np +np +155415 cl +np +155419 cl +np +155422 cl +np +155425 cl +155427 cl +pp +155430 cl +np +np +np +155436 cl +155439 cl +155441 cl +155443 cl +np +pp +cl +pp +155450 cl +155452 cl +155454 cl +np +np +pp +np +155461 cl +155463 np +np +pp +155467 cl +np +np +np +155473 cl +155475 cl +np +pp +155479 cl +pp +155482 cl +cl +pp +np +155487 cl +np +np +np +155492 cl +cl +cl +pp +155499 cl +155501 cl +pp +np +155505 cl +pp +np +155509 cl +np +np +pp +np +155515 cl +np +np +pp +np +155522 cl +np +np +np +155527 cl +155529 np +np +np +pp +np +155535 cl +155537 cl +cl +155540 np +155542 np +155545 cl +cl +cl +155552 cl +155556 cl +155558 np +155560 np +cl +155563 np +155565 np +advp +pp +np +155571 cl +155574 cl +155577 cl +np +np +np +np +np +155584 cl +np +pp +np +np +np +155595 cl +155597 cl +cl +pp +np +np +np +155605 cl +155607 cl +155609 cl +np +np +np +155615 advp +pp +np +np +np +155621 cl +155623 cl +np +155626 cl +155628 cl +155630 cl +np +155634 cl +155637 cl +np +155640 cl +np +np +np +155645 cl +155647 cl +np +np +155651 np +155653 cl +155655 cl +155657 pp +np +np +np +155666 cl +np +np +pp +np +cl +155673 cl +np +np +pp +cl +np +np +pp +np +155684 cl +cl +np +np +155689 cl +cl +np +np +155694 cl +vp +np +np +pp +cl +pp +pp +np +155704 cl +np +np +155708 cl +np +np +155712 cl +pp +155717 cl +155719 cl +advp +155723 cl +np +np +155727 cl +155729 cl +cl +155733 cl +155735 cl +np +155738 cl +pp +155741 cl +pp +np +np +155749 cl +np +np +np +np +cl +155756 cl +pp +155760 cl +155763 cl +np +np +np +155768 cl +np +np +np +pp +155777 cl +np +np +np +cl +155783 cl +pp +155787 cl +155790 cl +np +np +np +155795 cl +np +np +np +pp +155802 cl +cl +155805 cl +np +np +155810 cl +155813 cl +np +155816 cl +np +np +pp +np +cl +155823 cl +155825 cl +cl +155828 cl +155830 cl +np +155833 cl +155835 cl +np +np +np +155841 cl +cl +155847 cl +pp +np +155851 cl +np +np +155856 cl +pp +np +155860 cl +np +np +np +155866 cl +pp +155869 cl +np +np +np +155874 cl +pp +np +np +155879 cl +cl +np +155886 cl +np +np +155890 cl +cl +155894 cl +np +adjp +pp +np +155900 cl +155902 cl +155904 cl +pp +155907 cl +pp +155911 cl +cl +np +155916 cl +cl +pp +np +np +np +np +np +155927 cl +155929 cl +155931 cl +155933 cl +np +np +cl +np +np +155941 cl +cl +np +pp +155947 cl +155949 cl +155951 cl +155953 cl +cl +pp +155957 cl +155959 cl +155961 cl +np +np +155965 cl +np +np +155970 cl +155974 cl +np +np +155978 cl +pp +155981 cl +155983 cl +np +155986 np +np +np +pp +155992 cl +np +np +pp +155999 cl +pp +156005 cl +156007 cl +156009 cl +np +156013 cl +np +np +np +156019 cl +156021 cl +np +np +np +156027 cl +np +np +np +156033 cl +156035 cl +np +np +np +np +156042 cl +cl +np +np +pp +np +pp +156050 cl +156053 cl +156055 cl +pp +156058 np +np +np +pp +np +156067 cl +156069 cl +pp +156073 cl +np +156076 pp +np +156079 pp +np +156082 cl +pp +np +156088 cl +cl +np +np +156096 cl +cl +np +np +cl +np +np +156104 cl +np +np +pp +np +156111 cl +156113 np +np +156116 cl +pp +np +156124 cl +cl +pp +np +156129 cl +cl +cl +156133 pp +np +156136 pp +np +np +np +156141 cl +np +156146 cl +cl +np +np +156154 cl +156156 cl +pp +np +np +156161 cl +cl +np +np +156166 np +np +np +pp +np +156173 cl +156175 np +np +156178 cl +pp +np +156184 cl +cl +156187 cl +np +156190 cl +156192 cl +pp +np +np +156199 cl +156201 cl +np +np +cl +np +pp +156208 cl +156211 cl +156216 np +np +pp +np +cl +np +np +cl +np +np +cl +np +np +pp +pp +pp +pp +156234 cl +np +np +np +np +156241 cl +np +np +156245 cl +np +np +np +156252 cl +pp +cl +pp +np +156259 cl +156261 cl +np +np +np +np +np +np +np +np +156272 cl +156274 cl +np +np +np +np +np +156285 cl +cl +156288 cl +np +156292 cl +np +np +156296 cl +np +cl +156302 cl +cl +np +np +156310 cl +cl +np +np +156315 cl +np +np +156320 cl +np +cl +cl +156325 np +np +np +pp +np +156332 cl +156334 np +np +156337 cl +pp +np +156341 cl +pp +np +156345 cl +156349 cl +156354 cl +pp +156357 cl +156362 cl +156368 cl +np +np +cl +np +np +np +156376 cl +np +np +np +np +156383 cl +156385 cl +np +np +np +np +np +156393 cl +156395 cl +np +np +np +np +np +156403 cl +156405 cl +156407 np +np +pp +np +156413 cl +cl +np +156420 cl +np +156423 cl +np +156427 cl +156429 cl +np +156432 cl +156434 cl +156436 cl +156438 cl +pp +156441 cl +np +np +156445 cl +156447 cl +156449 cl +np +np +cl +156456 cl +np +np +156460 cl +np +np +156464 cl +pp +np +np +np +156472 cl +156474 cl +156476 cl +pp +156479 cl +np +np +np +np +156486 cl +156489 cl +np +pp +cl +cl +pp +np +np +np +156500 cl +pp +156503 cl +np +np +np +cl +156510 cl +156512 cl +156515 cl +156517 cl +pp +np +np +np +156523 cl +np +156529 cl +np +np +np +156534 cl +156536 cl +pp +np +156540 cl +adjp +156545 cl +cl +156548 cl +156550 cl +156552 cl +156555 cl +np +np +156560 cl +np +np +np +np +156566 cl +np +156571 cl +156573 np +156575 np +np +156578 cl +np +156583 cl +pp +np +156587 cl +np +156590 cl +np +np +np +156595 cl +156598 cl +156602 cl +cl +pp +np +156607 cl +cl +pp +np +156614 cl +156616 np +np +pp +np +np +np +np +156624 cl +np +np +pp +np +np +156633 cl +np +np +156637 cl +cl +np +pp +np +np +156644 cl +np +pp +np +np +156652 cl +pp +np +np +np +156658 cl +cl +np +pp +np +np +np +np +156669 cl +np +np +156673 cl +np +np +pp +np +156679 cl +pp +np +np +156684 cl +cl +156690 cl +156692 cl +156694 cl +156696 cl +156698 cl +156700 cl +156703 cl +np +156706 cl +156708 cl +156710 cl +156712 cl +156714 cl +156717 cl +pp +np +156722 cl +cl +np +np +cl +cl +np +156730 cl +156735 cl +cl +cl +np +np +np +cl +advp +156744 np +np +np +pp +np +156750 cl +156753 cl +156755 np +156757 cl +cl +cl +np +np +156764 cl +156766 np +156768 np +156771 pp +np +np +156777 cl +np +156780 cl +156782 np +156784 cl +pp +np +156788 cl +156790 cl +pp +156795 cl +np +156798 cl +156800 np +156802 cl +pp +np +156806 cl +156808 cl +156810 cl +pp +np +156815 cl +pp +pp +np +156820 cl +np +156823 cl +pp +np +np +156830 cl +pp +156833 cl +pp +156837 cl +np +np +np +156842 cl +np +np +np +156848 cl +np +cl +np +156853 cl +np +cl +np +156859 cl +np +np +cl +np +156865 cl +pp +156869 cl +pp +np +np +156875 cl +np +156878 cl +156882 pp +np +np +np +cl +156888 cl +np +np +156892 np +np +np +pp +np +156898 cl +pp +np +np +156908 cl +np +np +156912 cl +np +np +156916 cl +np +np +np +156922 cl +156924 cl +cl +pp +156929 cl +np +156933 cl +np +156936 cl +np +np +np +156941 cl +156943 np +cl +np +np +pp +np +156953 cl +np +156956 cl +np +156959 cl +np +156962 cl +np +np +156966 cl +156968 cl +pp +np +156973 cl +np +156977 cl +np +np +np +156982 cl +156984 np +cl +np +np +pp +np +156993 cl +np +156996 cl +np +156999 cl +np +157002 cl +np +np +157006 cl +157008 cl +np +np +157015 cl +157017 cl +np +np +np +cl +np +pp +np +np +157028 cl +vp +157032 cl +157036 cl +np +np +157042 cl +pp +np +cl +np +157049 cl +cl +cl +157055 cl +cl +cl +157060 cl +cl +np +cl +157065 cl +cl +157069 cl +np +np +157074 cl +np +157077 cl +cl +157081 cl +157083 cl +np +157086 cl +np +157089 cl +pp +np +157095 cl +pp +cl +157099 cl +157101 cl +cl +157104 np +np +pp +np +cl +157110 cl +cl +cl +157115 cl +cl +np +157122 cl +pp +np +np +157128 cl +157130 cl +np +np +157136 cl +np +np +np +pp +cl +pp +157146 cl +cl +157149 cl +157153 cl +cl +157156 cl +157160 cl +np +np +cl +157165 cl +157169 cl +cl +np +157173 cl +157175 cl +157178 cl +cl +pp +np +pp +np +157186 cl +157189 cl +pp +157194 cl +pp +157199 pp +np +np +np +157205 cl +np +np +np +pp +np +np +np +157214 cl +157216 np +157218 np +np +np +157223 cl +np +np +157227 cl +157230 cl +cl +157234 cl +np +pp +np +np +157241 cl +np +cl +pp +np +np +cl +np +np +157255 cl +np +np +157259 cl +np +157264 cl +157266 cl +157270 cl +cl +np +cl +157277 cl +np +157280 cl +np +157283 cl +157286 cl +157288 cl +pp +157291 np +cl +157294 cl +np +np +157298 cl +np +157302 cl +np +cl +pp +cl +pp +np +157311 cl +cl +np +cl +157317 cl +157320 cl +np +157324 cl +np +157327 cl +np +np +np +157332 cl +np +np +np +cl +np +157340 cl +np +np +cl +157346 cl +157348 cl +np +np +157353 cl +np +157356 cl +157358 cl +cl +np +np +np +157366 cl +pp +np +cl +np +np +157374 cl +np +pp +np +157379 cl +np +pp +np +157385 cl +157388 cl +cl +cl +157393 cl +cl +157397 cl +cl +157402 cl +cl +157405 np +157407 np +157409 cl +np +157413 cl +np +cl +157417 cl +157419 cl +157422 np +157424 np +157428 cl +pp +np +pp +np +np +np +cl +np +np +np +cl +cl +pp +np +157444 adjp +157446 cl +cl +pp +np +np +157453 cl +cl +157456 cl +157460 np +np +cl +pp +cl +157467 cl +pp +np +np +np +cl +157475 cl +np +cl +157480 cl +cl +pp +np +np +np +157488 cl +cl +157492 cl +cl +pp +np +157498 cl +cl +np +np +pp +np +pp +np +157507 cl +pp +np +157513 cl +157515 cl +157517 cl +cl +pp +np +157523 np +157525 cl +157528 cl +cl +np +np +pp +np +np +157536 cl +cl +157539 cl +pp +np +np +157546 cl +cl +pp +157550 cl +pp +np +np +157556 cl +np +cl +pp +157562 cl +np +cl +np +np +np +157569 cl +157571 cl +np +np +157576 cl +np +np +pp +cl +157583 cl +np +cl +np +np +157589 cl +pp +pp +np +np +157596 cl +157598 cl +cl +np +np +157603 cl +157605 cl +157607 cl +157610 cl +157612 cl +np +np +np +pp +np +cl +157620 cl +np +157623 cl +157625 cl +np +np +157629 cl +pp +np +np +157635 cl +cl +pp +np +np +157643 cl +cl +np +157647 cl +157649 np +157651 cl +np +np +157657 cl +cl +np +np +np +cl +pp +np +cl +157667 cl +cl +157671 cl +cl +157676 cl +157678 cl +pp +np +157682 cl +np +157686 cl +157688 np +157690 np +np +157694 cl +cl +np +np +np +cl +pp +pp +np +157705 np +np +157709 cl +cl +157712 cl +np +157715 cl +cl +157718 cl +157722 cl +cl +cl +157726 cl +157728 cl +157732 cl +cl +cl +157736 cl +np +np +cl +157741 cl +pp +157745 np +157747 cl +np +np +157752 cl +np +157755 cl +np +np +np +cl +pp +cl +pp +np +157767 cl +157769 cl +pp +np +157773 cl +157776 cl +np +np +pp +np +157784 cl +np +np +pp +np +157790 cl +np +157794 cl +np +pp +np +157802 cl +cl +np +157806 cl +np +157809 cl +np +157814 cl +np +pp +np +157819 cl +157821 cl +cl +np +cl +cl +157828 cl +np +np +157833 cl +cl +np +np +pp +157839 cl +157843 cl +cl +np +157847 cl +np +np +157852 cl +np +cl +np +cl +np +np +np +np +157863 cl +pp +157867 cl +np +np +cl +157873 cl +np +157876 cl +157878 cl +157880 cl +157882 cl +np +np +157887 cl +np +pp +np +np +157894 cl +np +157897 cl +pp +np +np +np +157903 cl +157905 cl +np +157908 cl +np +157911 cl +157914 cl +np +cl +157919 cl +157924 cl +np +cl +cl +np +np +157931 cl +np +157935 cl +np +np +pp +np +np +np +157945 cl +np +cl +np +157950 cl +157952 cl +cl +157955 np +157959 cl +pp +np +157963 cl +np +157966 cl +np +cl +157970 cl +cl +157973 cl +157978 cl +np +np +cl +cl +pp +np +np +157988 cl +np +np +157993 cl +np +cl +cl +cl +158000 cl +cl +pp +np +np +np +158009 cl +cl +np +cl +158016 cl +np +cl +np +158022 cl +np +cl +cl +pp +np +158030 cl +np +cl +pp +np +np +np +np +158040 cl +np +158043 np +np +158046 np +158048 cl +pp +np +np +158053 cl +np +np +np +158058 cl +158060 np +158062 np +158065 cl +cl +np +pp +158071 cl +vp +158076 cl +np +cl +158080 cl +np +np +158085 cl +np +158088 cl +np +158092 cl +np +np +np +158097 cl +pp +np +np +158103 cl +cl +np +np +np +np +np +158112 cl +158114 cl +158116 np +158118 np +158121 cl +np +np +np +np +158128 cl +158131 cl +158133 cl +158136 np +np +158142 np +np +158146 np +np +158153 np +158156 np +np +158161 np +158165 np +158167 cl +158169 cl +np +np +np +cl +cl +158176 cl +pp +np +158180 cl +pp +np +158185 cl +pp +np +158189 np +158191 cl +np +158195 cl +cl +cl +158199 cl +np +np +np +158205 cl +cl +cl +cl +cl +158212 cl +cl +158216 cl +158220 pp +np +np +cl +158225 np +pp +158228 np +158233 cl +np +np +np +158241 cl +pp +np +158246 cl +cl +pp +158251 cl +158254 cl +158257 cl +cl +pp +np +158265 cl +158267 cl +np +np +np +pp +158273 cl +158275 cl +np +np +pp +158284 cl +158286 cl +np +np +cl +cl +pp +np +158294 np +158296 np +np +np +np +np +158304 cl +158306 cl +np +158310 pp +np +158313 cl +np +np +158317 cl +158319 cl +pp +np +158325 cl +158327 cl +np +158331 cl +158333 cl +np +158337 cl +pp +np +158343 cl +pp +158346 cl +pp +np +np +158352 cl +pp +pp +158357 pp +pp +np +158362 np +158367 cl +158369 cl +158371 cl +158373 cl +158376 cl +pp +np +np +cl +158384 cl +158386 cl +cl +np +np +np +np +158393 cl +pp +158399 cl +pp +158402 cl +158405 cl +pp +158408 cl +158411 cl +vp +pp +pp +np +np +158419 cl +158422 cl +pp +158426 cl +158428 cl +pp +np +np +pp +np +158438 cl +158440 cl +advp +np +np +np +158446 cl +np +np +np +158452 cl +pp +np +158456 cl +pp +np +np +158462 cl +np +158465 cl +pp +np +np +158470 cl +np +pp +np +np +158478 cl +np +cl +advp +np +np +158486 cl +158489 cl +158492 cl +cl +158496 cl +158498 cl +cl +pp +np +pp +np +158506 cl +cl +pp +np +pp +np +158514 cl +pp +158518 cl +np +158521 cl +cl +np +158526 cl +158528 cl +cl +158533 pp +158536 cl +np +158540 cl +np +pp +pp +np +pp +np +np +158550 cl +np +np +np +np +np +np +vp +158560 cl +158562 cl +np +158566 cl +cl +np +pp +pp +np +pp +pp +158575 np +np +np +pp +np +158584 cl +pp +np +cl +pp +158590 np +np +np +pp +np +158596 cl +158598 cl +cl +pp +np +158604 cl +cl +cl +158610 cl +158612 cl +pp +np +np +158617 cl +pp +np +np +158622 cl +pp +np +np +158627 cl +np +np +np +np +158633 cl +158635 cl +158638 pp +158641 cl +158643 cl +158646 pp +158649 cl +158651 cl +np +np +158655 cl +pp +158659 cl +158661 cl +np +np +158665 cl +158667 cl +np +np +pp +158673 cl +158675 cl +158677 cl +158679 cl +158681 cl +158684 cl +158686 cl +pp +np +np +158691 cl +158693 cl +pp +np +np +158701 cl +np +np +np +np +pp +np +158710 cl +cl +advp +np +np +158718 cl +158721 cl +np +cl +np +np +np +cl +158729 cl +158732 pp +np +np +158737 cl +np +cl +pp +np +np +np +np +cl +pp +np +np +158750 cl +158752 cl +158754 cl +158757 cl +cl +np +cl +cl +cl +158767 cl +158769 cl +cl +158772 cl +158774 cl +158776 cl +158779 cl +158781 cl +pp +158786 cl +cl +np +cl +np +pp +158793 cl +cl +pp +np +cl +np +cl +pp +158803 cl +cl +cl +np +cl +pp +158810 cl +158812 cl +np +pp +np +np +np +158821 cl +cl +158828 cl +adjp +cl +cl +cl +pp +np +np +pp +np +cl +np +np +pp +158845 cl +158847 cl +pp +np +adjp +np +np +158854 cl +np +np +pp +np +np +np +158864 cl +158866 pp +np +np +158870 np +pp +np +np +np +158876 cl +158879 cl +np +158882 np +158884 np +pp +158890 cl +cl +cl +158895 cl +cl +158898 cl +158900 cl +158903 cl +np +np +158907 cl +158909 np +cl +pp +np +cl +cl +cl +np +158918 cl +158920 cl +158922 cl +158924 cl +158928 cl +cl +158934 cl +cl +158938 cl +np +np +np +158943 cl +158945 cl +158947 cl +158949 cl +cl +158955 np +158960 cl +np +pp +np +np +158966 cl +cl +np +158970 cl +pp +np +np +np +158976 cl +158979 cl +158981 cl +158986 cl +pp +158991 np +158993 cl +pp +cl +pp +159001 cl +159003 cl +159006 pp +np +159009 cl +159014 cl +pp +159017 cl +pp +159023 cl +pp +159026 np +159028 cl +pp +cl +pp +np +159035 cl +159038 cl +np +pp +np +159043 cl +159045 cl +pp +np +np +cl +np +159052 cl +159055 np +159057 np +159059 np +159062 cl +pp +159067 cl +159073 np +159075 cl +pp +159079 cl +pp +np +np +159085 cl +np +159088 cl +np +159091 cl +np +159094 cl +159096 np +159099 cl +cl +np +159104 cl +pp +159107 np +159110 cl +159112 cl +cl +159116 cl +np +np +pp +159121 cl +pp +159125 cl +159128 np +159130 cl +np +np +159136 cl +np +np +159140 cl +np +np +159144 cl +pp +np +np +np +np +pp +np +159155 cl +np +np +159159 cl +159161 cl +159163 cl +159166 cl +np +cl +cl +np +np +cl +cl +pp +159177 cl +159181 cl +159184 cl +159186 cl +np +pp +159191 cl +pp +np +np +np +159197 cl +np +np +np +159203 cl +cl +vp +159207 cl +np +pp +cl +np +159215 cl +pp +np +159220 cl +np +np +pp +np +np +159227 cl +159230 cl +159232 cl +adjp +np +159239 cl +cl +159242 cl +159244 cl +159246 cl +np +159250 cl +np +np +np +np +np +159258 cl +cl +pp +np +np +159265 cl +cl +np +cl +159271 cl +cl +159274 cl +cl +np +159278 cl +159281 cl +cl +pp +159286 cl +np +159291 cl +np +pp +159295 cl +159297 cl +159300 cl +159303 cl +cl +np +159307 cl +np +cl +np +np +159315 cl +159317 cl +159319 cl +np +159323 cl +cl +np +pp +159328 cl +159331 cl +np +cl +159337 cl +159340 cl +np +159343 cl +159345 cl +159348 cl +159350 cl +pp +159353 np +cl +cl +cl +159358 np +159360 np +cl +np +159364 np +cl +np +np +159370 cl +np +np +pp +159375 cl +np +159379 cl +159381 cl +159383 cl +pp +np +np +np +159390 cl +np +cl +159394 cl +np +cl +159399 cl +pp +np +159404 cl +np +np +159408 cl +np +cl +159415 cl +159417 cl +np +159424 cl +np +np +159428 cl +159430 cl +np +np +159435 cl +np +cl +159439 cl +np +159442 cl +pp +159445 np +np +np +159450 cl +cl +np +np +159455 cl +np +np +cl +pp +159461 cl +np +np +159466 cl +pp +159470 cl +159472 cl +np +np +pp +159478 cl +np +np +159483 cl +159485 cl +pp +np +np +np +pp +159492 cl +pp +np +159499 cl +pp +np +np +cl +pp +np +np +np +159511 cl +159513 cl +pp +np +np +np +159519 cl +np +np +159523 cl +np +159527 cl +np +np +159532 cl +159534 cl +pp +pp +159538 cl +159540 cl +pp +159543 cl +pp +159546 cl +np +159550 np +159552 cl +np +np +np +159560 cl +pp +np +np +np +cl +159570 cl +pp +np +np +np +cl +159578 pp +np +np +159582 pp +159584 cl +159589 cl +np +159592 cl +np +np +159597 cl +np +159600 cl +np +np +159605 cl +pp +np +np +159610 cl +159612 np +cl +cl +159617 cl +pp +np +np +np +np +159625 cl +np +np +pp +np +np +159632 cl +np +np +pp +np +np +159640 cl +159642 cl +159644 np +159646 np +cl +np +pp +pp +np +159655 cl +pp +np +np +159660 cl +pp +np +np +159665 cl +np +np +159670 cl +cl +159673 cl +pp +159677 cl +cl +159680 cl +159682 np +159685 cl +159687 cl +np +np +159691 np +159694 cl +159696 cl +pp +np +np +np +159702 np +159704 np +np +np +np +pp +np +np +np +159713 np +159715 np +159720 cl +159722 pp +np +pp +np +np +159728 cl +159730 cl +pp +np +np +159735 cl +adjp +159741 cl +np +pp +np +pp +np +np +159749 cl +159751 cl +pp +np +np +np +cl +np +np +159760 cl +adjp +159766 cl +np +np +pp +np +cl +pp +np +cl +159776 cl +159778 cl +159780 cl +pp +np +np +cl +159787 cl +cl +159790 cl +159792 cl +159794 cl +159798 cl +159800 cl +pp +np +np +np +adjp +159807 cl +cl +159810 cl +np +np +np +np +np +159817 cl +np +np +np +np +np +159824 cl +cl +np +159828 np +159830 np +np +cl +cl +159837 cl +cl +159840 np +np +159843 np +np +cl +cl +159848 cl +cl +159851 cl +159853 cl +np +np +159857 cl +np +np +159862 cl +cl +np +np +pp +np +np +159870 cl +cl +159873 np +np +159876 np +np +159880 cl +159882 cl +np +np +159886 np +np +np +pp +np +159895 cl +pp +np +np +np +cl +np +pp +np +159907 cl +pp +np +159911 cl +cl +pp +159915 cl +np +np +pp +np +159922 cl +pp +cl +cl +159927 cl +159929 cl +159933 cl +pp +159936 cl +159939 cl +pp +np +159943 cl +cl +np +159949 cl +pp +np +cl +np +159956 cl +pp +159959 cl +np +159964 cl +cl +159967 cl +pp +159970 cl +159973 cl +pp +np +159978 cl +np +159981 cl +159984 cl +pp +np +np +np +159991 cl +159994 cl +159996 cl +159998 cl +160000 cl +160002 cl +160005 cl +cl +np +cl +pp +pp +160013 cl +cl +160017 cl +cl +np +np +np +np +np +160025 cl +160029 cl +cl +cl +160033 cl +160036 cl +cl +np +cl +pp +160042 cl +pp +pp +160047 cl +cl +160050 cl +cl +160056 cl +160058 np +np +160061 cl +160064 cl +160066 cl +advp +160070 cl +cl +160073 cl +advp +160079 cl +np +np +np +np +160085 cl +np +160088 cl +np +np +160093 cl +np +160096 cl +np +160099 cl +np +160102 cl +160104 cl +160109 cl +np +np +160113 cl +160116 cl +np +np +160120 cl +160123 cl +cl +160128 cl +np +160132 cl +cl +160135 cl +160138 cl +cl +160141 cl +160144 cl +np +np +160148 cl +160152 cl +np +np +np +160157 cl +160159 cl +np +160162 cl +160164 cl +pp +np +np +160169 cl +160171 cl +pp +np +160176 cl +160179 cl +pp +np +160184 cl +np +160187 cl +pp +160193 cl +pp +160196 cl +160198 cl +cl +160202 pp +np +160209 cl +pp +np +cl +160214 cl +np +160217 cl +160219 np +np +np +160223 np +np +np +np +160228 cl +160231 cl +160234 cl +pp +np +np +160241 cl +np +160244 cl +160247 cl +160251 cl +160253 cl +160255 cl +160257 cl +np +cl +cl +np +np +np +np +cl +np +pp +np +np +160273 cl +pp +160276 cl +np +np +np +160281 cl +pp +np +np +160286 cl +160289 cl +160292 cl +np +160295 cl +np +np +160300 cl +cl +np +np +np +160307 cl +np +pp +np +np +160314 cl +160317 cl +cl +np +160322 cl +np +160326 cl +cl +cl +160331 cl +160333 cl +cl +cl +np +pp +np +160340 cl +cl +pp +np +160346 cl +pp +np +np +np +160353 cl +np +160356 cl +pp +pp +160360 cl +160362 cl +np +pp +np +np +160368 cl +np +cl +cl +np +np +np +160376 np +cl +cl +pp +np +np +160385 cl +np +np +160391 cl +cl +np +160395 cl +160398 cl +np +np +np +160403 cl +pp +np +np +160408 cl +np +160411 cl +np +np +np +160416 cl +cl +pp +np +np +pp +cl +160425 cl +np +np +pp +np +160431 cl +pp +160434 cl +160436 cl +pp +np +cl +cl +pp +np +np +cl +cl +pp +160448 cl +cl +np +pp +np +160455 cl +np +np +cl +cl +np +np +np +np +np +160467 cl +cl +cl +160471 cl +np +np +np +np +np +160479 cl +np +np +160484 cl +160486 np +np +np +np +np +160494 cl +np +np +np +np +160500 cl +160502 np +160504 cl +np +160509 cl +np +np +160513 cl +np +160517 cl +160520 cl +np +160523 cl +pp +np +np +np +160530 cl +np +np +np +np +np +160538 cl +pp +np +np +np +160544 np +160547 cl +np +160550 cl +pp +np +np +np +160556 cl +160558 np +160560 np +np +np +160564 cl +np +pp +np +np +np +np +160572 cl +np +160575 cl +160577 cl +160579 cl +np +np +np +160584 np +cl +pp +np +160589 cl +cl +160592 cl +pp +np +np +160597 cl +cl +160600 cl +np +np +160604 cl +np +np +np +np +cl +np +160614 cl +cl +np +np +cl +np +cl +160622 cl +160624 cl +np +np +np +160629 np +160631 cl +pp +np +160635 cl +pp +np +160639 cl +160641 cl +160643 cl +pp +np +160647 cl +np +pp +160651 cl +np +160654 cl +pp +np +np +np +160661 cl +np +160665 cl +np +pp +np +np +160671 cl +pp +np +np +np +160677 cl +160679 np +160681 np +np +np +160685 cl +np +160688 cl +160692 cl +cl +pp +np +np +cl +np +np +np +160703 cl +pp +np +np +160712 cl +160715 cl +np +np +np +cl +160722 cl +cl +pp +np +np +pp +np +np +160732 cl +160734 cl +cl +160737 np +np +160740 np +160743 cl +np +np +np +160750 cl +np +np +160754 cl +np +np +160765 np +np +cl +pp +160771 cl +np +160775 cl +pp +160779 cl +np +160782 cl +160784 cl +160786 pp +np +160789 pp +np +np +160794 cl +np +pp +np +np +160801 cl +pp +np +np +160806 np +np +np +160810 cl +np +np +160814 cl +160816 np +160818 cl +pp +np +160822 cl +pp +np +pp +160829 cl +np +cl +np +160834 cl +pp +pp +160838 np +np +160841 np +np +160845 cl +np +cl +cl +160852 cl +cl +cl +np +160857 cl +pp +160864 cl +np +np +cl +np +np +np +pp +np +160874 cl +np +160877 cl +pp +cl +160881 cl +160884 cl +cl +pp +np +np +cl +pp +np +np +160894 np +160898 cl +cl +np +pp +160903 np +160906 cl +cl +160909 cl +cl +pp +np +160916 cl +np +np +pp +160921 cl +np +160924 cl +np +np +160930 cl +cl +np +np +np +160936 cl +160938 cl +cl +np +160943 cl +cl +np +pp +pp +np +pp +160952 cl +cl +np +pp +np +160960 cl +cl +np +160965 cl +pp +160968 cl +np +np +160974 cl +cl +np +cl +160980 cl +np +160983 cl +np +160986 cl +np +160989 cl +cl +pp +np +160995 cl +np +160998 cl +cl +cl +cl +161004 cl +161006 cl +161008 cl +161010 np +161012 np +161015 cl +cl +161020 cl +cl +cl +np +pp +np +cl +161028 np +np +161031 np +np +cl +pp +np +161038 cl +cl +np +np +161043 cl +np +np +161050 cl +161052 cl +161054 cl +161056 np +np +cl +np +np +np +161064 cl +161066 cl +np +adjp +pp +161074 cl +161076 cl +np +pp +np +161081 cl +pp +np +pp +cl +np +161089 cl +cl +np +pp +np +pp +cl +161099 cl +cl +161104 cl +np +np +pp +np +cl +pp +np +161113 cl +np +161117 cl +np +np +np +pp +cl +pp +np +161128 cl +np +cl +cl +pp +np +cl +161136 cl +161138 cl +pp +np +161143 cl +np +cl +161148 cl +cl +cl +161153 cl +cl +np +161159 cl +cl +cl +pp +pp +np +161167 cl +cl +161172 cl +cl +pp +np +pp +np +161179 cl +pp +np +161185 cl +cl +np +161189 cl +cl +cl +cl +cl +161198 cl +np +cl +np +161203 cl +cl +161206 pp +161210 cl +pp +np +cl +np +161217 cl +np +pp +np +cl +cl +np +161226 cl +cl +pp +np +pp +161235 cl +cl +np +np +np +np +pp +np +np +np +161246 cl +np +161249 cl +161251 cl +161253 cl +np +np +np +np +161260 cl +cl +161263 cl +np +pp +161268 cl +cl +pp +np +np +np +np +np +161278 cl +np +161281 cl +161284 cl +cl +cl +pp +np +np +np +np +pp +np +np +161297 cl +np +161300 cl +161302 np +161304 np +161306 cl +161308 cl +161313 cl +cl +161316 cl +cl +161319 np +161321 np +161323 cl +pp +advp +161327 np +np +161330 np +np +161334 cl +np +np +np +pp +np +np +161342 cl +161344 pp +cl +161347 cl +np +np +np +161352 cl +np +np +pp +161358 cl +cl +np +161363 cl +cl +np +161368 cl +161370 cl +161372 cl +161374 cl +pp +np +np +cl +161381 cl +pp +np +np +161386 cl +cl +np +cl +161391 cl +np +cl +np +161397 cl +cl +cl +np +161402 cl +np +np +np +np +161408 cl +161410 cl +np +np +161415 cl +161417 cl +pp +161421 cl +cl +np +cl +np +161428 cl +cl +np +161433 cl +161436 cl +np +161439 cl +pp +np +pp +np +161445 cl +pp +161450 cl +161452 cl +pp +np +pp +np +cl +np +161461 cl +pp +np +161465 np +161468 cl +161470 cl +np +161473 cl +161475 cl +np +np +161480 cl +cl +np +pp +np +np +161490 cl +np +cl +pp +np +np +cl +161498 cl +161501 np +cl +np +np +161507 cl +161510 cl +cl +np +np +cl +161516 cl +161518 cl +pp +161522 cl +cl +161525 cl +161527 cl +pp +np +161531 np +161533 cl +np +161537 cl +cl +cl +cl +161544 cl +cl +cl +161548 cl +np +np +np +161553 cl +np +161557 cl +161559 cl +161562 cl +np +np +pp +161567 np +161569 cl +pp +np +np +np +np +161576 cl +cl +np +161580 cl +161582 np +np +np +161586 cl +161588 cl +161591 cl +np +np +pp +np +np +161600 cl +cl +np +pp +np +np +np +161608 cl +cl +pp +np +161616 cl +np +cl +pp +161622 np +161624 cl +pp +np +np +161629 cl +161631 cl +np +cl +161635 cl +cl +161638 cl +161640 cl +161643 cl +np +np +161648 cl +np +cl +np +np +161655 cl +pp +np +161660 cl +np +161663 cl +cl +161666 cl +cl +np +cl +pp +np +161674 cl +np +cl +pp +np +161680 cl +np +161684 cl +np +cl +np +161690 cl +cl +161694 np +161698 cl +cl +np +cl +pp +np +161705 np +np +161708 np +161710 cl +cl +161714 cl +np +161717 cl +np +np +161724 cl +161726 cl +161728 cl +161730 np +np +cl +np +np +np +161738 cl +161740 cl +np +pp +161748 cl +cl +np +pp +np +161754 cl +pp +np +np +161760 cl +cl +np +161765 cl +cl +np +pp +np +161772 cl +cl +161775 cl +cl +161778 cl +161780 cl +np +161786 cl +161788 cl +cl +np +161794 cl +cl +np +np +np +161800 cl +np +np +np +161806 cl +161808 np +161811 cl +161813 cl +np +np +161818 cl +cl +161822 cl +np +cl +pp +np +cl +161830 cl +np +cl +161835 pp +np +np +np +161843 cl +pp +cl +161847 cl +161850 cl +cl +np +161854 pp +161857 cl +161859 cl +161863 cl +np +np +np +np +161869 cl +np +161873 cl +np +np +np +np +161879 cl +np +161882 cl +161885 cl +pp +161888 cl +pp +np +np +np +161896 cl +161899 cl +cl +pp +np +np +np +cl +pp +np +np +np +161914 cl +np +cl +pp +np +np +np +np +np +np +cl +cl +np +cl +np +np +np +161933 cl +161936 cl +161938 np +161940 cl +161942 cl +161945 np +np +161948 cl +161950 cl +cl +161954 cl +cl +161957 cl +161959 np +np +np +161963 np +161965 cl +161968 cl +cl +np +161972 cl +161977 cl +161981 cl +161983 np +np +np +pp +np +161990 cl +161993 cl +161995 cl +pp +np +np +np +np +162002 cl +np +162006 cl +np +np +np +np +np +162014 cl +162016 cl +pp +np +vp +pp +np +162023 cl +162025 cl +pp +np +vp +pp +np +162033 cl +np +162036 cl +162038 cl +np +162041 cl +pp +162044 cl +np +np +162048 cl +162050 cl +pp +162053 cl +pp +np +162060 cl +162062 cl +np +np +162067 cl +cl +np +cl +cl +162073 cl +162075 cl +advp +162079 cl +cl +np +162084 cl +pp +162087 cl +np +162091 cl +np +np +cl +np +np +162098 cl +np +np +np +162104 cl +cl +pp +162108 cl +162110 cl +np +np +162114 cl +162118 cl +162120 cl +cl +np +np +162125 cl +162127 cl +np +np +pp +162134 cl +162137 cl +np +np +162141 cl +np +np +162145 cl +np +np +np +162152 cl +np +np +np +cl +pp +np +np +np +np +pp +np +np +162166 cl +pp +np +np +162171 cl +cl +162174 cl +162176 np +162178 cl +cl +cl +advp +162183 cl +cl +np +np +np +pp +np +np +162194 cl +pp +np +np +162199 np +162203 np +np +162206 cl +pp +np +pp +162213 cl +pp +162217 cl +np +np +pp +np +162223 cl +np +np +pp +np +162230 cl +162233 cl +pp +162237 cl +cl +np +np +162242 cl +162244 cl +162247 cl +cl +np +162251 cl +162253 cl +162255 cl +162257 cl +cl +cl +np +162262 cl +pp +np +cl +162267 cl +162269 np +np +np +cl +pp +cl +162278 cl +cl +np +pp +np +162284 cl +162288 cl +np +162291 cl +cl +162294 cl +162296 cl +162299 cl +cl +np +np +162304 cl +np +np +162310 cl +pp +np +cl +np +cl +cl +np +pp +cl +np +np +np +pp +162326 cl +np +cl +162330 cl +np +162333 cl +cl +162337 cl +cl +162342 cl +162344 cl +162346 cl +162350 cl +162353 cl +cl +pp +cl +cl +np +np +np +cl +pp +162364 cl +np +162367 cl +pp +162370 np +162374 cl +pp +np +cl +162379 cl +162381 cl +162383 cl +162385 np +np +162390 cl +162392 cl +162395 cl +pp +np +162399 cl +pp +np +162405 cl +np +np +162409 cl +cl +162413 cl +cl +np +162418 np +np +162422 cl +162424 cl +pp +pp +cl +pp +cl +162433 cl +np +162436 cl +pp +np +162441 cl +np +pp +np +np +162447 cl +np +cl +np +pp +cl +pp +cl +162457 cl +162459 cl +pp +np +np +162466 cl +162470 cl +np +pp +np +162475 cl +np +np +cl +162480 cl +162482 cl +162486 cl +pp +np +cl +np +162492 cl +np +np +np +cl +pp +np +162500 cl +162502 cl +np +np +162507 cl +162511 cl +pp +162514 cl +162516 cl +np +np +162520 cl +162522 cl +np +np +162526 cl +162531 cl +pp +np +cl +np +cl +162538 cl +162541 cl +np +np +np +pp +162548 cl +162550 pp +np +np +162554 pp +np +162559 cl +cl +pp +np +cl +np +162566 cl +np +162572 cl +162574 cl +cl +pp +162578 cl +np +np +cl +np +162584 cl +cl +np +np +cl +cl +pp +162594 cl +pp +np +np +np +np +cl +162602 cl +pp +np +np +np +162610 cl +cl +pp +np +162615 cl +162618 cl +162622 cl +162624 cl +pp +np +cl +advp +pp +np +np +np +162635 cl +cl +pp +np +np +np +pp +np +np +np +162647 cl +162649 cl +np +np +pp +np +np +162659 cl +np +162662 np +np +162665 cl +pp +cl +162670 cl +np +pp +np +np +162676 cl +pp +np +np +np +162682 cl +np +pp +np +162689 cl +cl +np +162693 cl +np +162696 cl +pp +np +162703 cl +162705 np +np +162708 np +np +cl +162712 cl +pp +162716 cl +cl +pp +np +162723 cl +cl +162726 np +162728 np +pp +np +np +np +162737 cl +np +np +cl +162742 cl +pp +162746 cl +cl +pp +np +162751 cl +cl +np +pp +np +np +np +162759 cl +162761 cl +np +np +np +162767 cl +162769 cl +np +np +pp +pp +np +np +162777 np +np +np +pp +162782 cl +162787 cl +np +np +162791 cl +np +pp +162795 cl +np +162798 pp +np +162801 cl +cl +162804 cl +162809 cl +cl +cl +cl +162815 cl +pp +162818 cl +pp +162821 np +162824 cl +162826 cl +pp +162829 np +np +np +pp +162834 cl +np +np +np +162842 cl +np +np +162846 cl +cl +pp +np +162855 cl +cl +np +np +162864 cl +cl +pp +np +162871 cl +pp +np +np +162876 np +162881 cl +cl +np +162886 cl +162888 cl +np +np +pp +162893 np +162895 np +162898 cl +162900 cl +162902 cl +pp +np +vp +pp +162908 cl +162910 cl +pp +np +vp +pp +162916 cl +cl +162921 cl +np +pp +pp +np +pp +np +162930 cl +cl +pp +162934 np +np +np +pp +162940 cl +cl +vp +162945 pp +np +np +pp +np +162951 cl +cl +np +162956 cl +pp +np +np +162961 cl +cl +pp +162965 cl +np +162968 cl +cl +pp +cl +pp +nump +162975 cl +pp +np +np +np +162982 cl +cl +pp +np +np +162990 cl +cl +cl +162994 np +np +162999 cl +cl +cl +np +163004 cl +163007 np +163009 np +163011 np +cl +163014 cl +163017 cl +cl +np +cl +163022 cl +pp +163025 cl +163029 cl +cl +np +np +np +np +163036 cl +np +163041 cl +cl +np +np +163046 np +np +np +cl +np +163052 cl +cl +cl +163056 cl +163058 cl +163061 cl +cl +np +np +cl +163067 cl +pp +163070 cl +163074 cl +163077 cl +cl +pp +163081 cl +163083 cl +163087 cl +np +np +cl +163092 cl +163094 cl +cl +np +np +np +163100 cl +163102 cl +cl +np +np +163108 np +cl +np +np +np +163114 cl +163117 cl +cl +np +np +np +163123 cl +163126 cl +cl +np +np +np +pp +cl +np +163135 cl +163137 cl +np +np +np +np +np +163144 cl +np +np +pp +np +np +163153 cl +163156 cl +np +np +np +163161 cl +pp +np +163165 cl +pp +np +np +np +np +pp +np +163176 cl +np +163179 cl +163182 cl +163184 cl +163186 cl +163188 cl +cl +np +np +pp +np +163196 cl +cl +163199 cl +163201 cl +163203 cl +pp +163209 cl +163212 cl +pp +163215 np +163217 np +163219 cl +np +np +163223 cl +np +pp +np +163230 cl +cl +np +163235 cl +cl +np +163239 cl +163241 cl +163243 cl +np +163246 cl +163248 cl +163251 cl +pp +np +np +cl +np +np +163259 cl +pp +163263 cl +163265 cl +163268 cl +np +np +pp +pp +163274 cl +163276 cl +np +163280 cl +np +np +np +np +pp +np +cl +cl +163291 cl +163293 cl +np +np +cl +163300 cl +163302 cl +pp +np +163306 cl +163308 cl +pp +np +163312 cl +163314 cl +pp +np +np +np +163320 cl +163322 cl +cl +163326 cl +163329 cl +np +163332 cl +163335 cl +np +163339 cl +np +163343 cl +np +163346 cl +cl +pp +163350 cl +np +np +np +np +163357 cl +cl +np +163362 cl +cl +163366 cl +np +163369 cl +np +163373 cl +163375 cl +pp +np +cl +np +163383 cl +cl +pp +np +cl +np +163390 cl +cl +163395 cl +np +cl +163400 cl +cl +cl +cl +163405 cl +163407 np +163409 np +163411 cl +np +np +163415 cl +163417 cl +np +163420 cl +np +cl +163424 cl +np +163428 cl +cl +163433 cl +163435 cl +np +163438 cl +163440 cl +163442 cl +pp +163446 cl +cl +163450 cl +np +cl +np +cl +163456 cl +vp +np +163461 cl +np +np +np +cl +cl +163468 cl +pp +np +np +np +163475 cl +163477 cl +cl +pp +np +163482 cl +pp +np +np +np +163489 cl +cl +np +cl +163494 cl +cl +163498 cl +cl +np +163502 cl +pp +163505 cl +pp +163508 cl +cl +np +163512 cl +cl +163515 cl +163517 cl +163520 cl +np +cl +cl +163525 cl +163529 cl +pp +np +163533 cl +np +np +np +pp +np +np +np +pp +np +cl +np +np +np +np +163551 cl +np +cl +163561 pp +np +np +163565 cl +np +163570 cl +np +163573 cl +163576 cl +np +np +np +163582 cl +pp +cl +pp +np +np +163590 cl +cl +pp +np +pp +np +pp +np +np +163601 cl +cl +pp +np +np +cl +pp +np +163611 cl +163613 cl +np +pp +np +163618 cl +163620 cl +163623 cl +163626 cl +cl +pp +np +163635 cl +cl +pp +np +cl +163641 cl +cl +np +np +163646 cl +163648 cl +163650 cl +cl +np +pp +np +163658 cl +cl +np +np +np +np +np +163666 cl +np +163669 cl +np +cl +pp +np +pp +np +163678 cl +cl +np +pp +np +np +163686 cl +cl +np +163690 cl +163693 cl +np +pp +np +163699 cl +cl +pp +np +cl +163705 cl +np +np +np +163710 cl +163713 cl +163715 np +np +np +163719 np +163722 cl +cl +np +163726 cl +163729 cl +163732 cl +np +163735 cl +163738 cl +cl +np +np +163743 cl +np +163747 cl +cl +cl +pp +np +163754 cl +np +np +163758 cl +163761 cl +np +163764 cl +np +163769 cl +cl +cl +pp +np +pp +163776 cl +pp +np +163780 cl +pp +163785 cl +np +np +np +np +163794 cl +pp +163797 cl +np +pp +163802 cl +163804 cl +163806 cl +163808 cl +np +np +163812 cl +np +np +np +np +pp +np +np +163821 cl +163823 cl +pp +163827 cl +cl +163830 cl +cl +163833 cl +np +np +np +np +163839 cl +pp +163842 cl +pp +np +pp +np +np +163850 cl +cl +np +cl +cl +cl +cl +np +163859 cl +cl +163862 cl +cl +163865 cl +163868 cl +np +np +163873 cl +163875 cl +163877 pp +np +163880 pp +cl +163883 cl +pp +np +np +163889 cl +cl +np +pp +np +np +163897 cl +np +cl +cl +163903 cl +np +np +np +163908 cl +np +163912 cl +pp +163916 cl +163918 cl +cl +pp +np +163923 cl +163925 cl +cl +pp +np +cl +np +np +np +163934 cl +163937 cl +163939 cl +np +np +np +pp +163947 cl +pp +cl +np +163953 cl +np +np +cl +pp +np +cl +163961 cl +cl +cl +163966 np +163969 cl +np +163972 cl +163975 cl +cl +cl +163980 np +163984 cl +cl +np +163988 cl +cl +cl +163992 cl +163995 cl +np +np +164001 cl +cl +np +np +np +164008 cl +164010 cl +164016 cl +pp +164019 cl +pp +pp +np +np +np +cl +np +cl +164030 cl +pp +164033 np +np +pp +164037 cl +164039 cl +164041 cl +pp +cl +cl +164049 cl +cl +164052 cl +np +np +164057 cl +164061 cl +164063 cl +164065 cl +pp +np +cl +cl +np +np +cl +np +np +164077 cl +164079 pp +164081 pp +164083 np +164087 cl +np +164090 cl +164093 cl +164095 cl +np +164098 np +164100 np +164102 cl +pp +np +164106 cl +pp +164111 cl +np +np +np +np +pp +np +164120 cl +pp +np +164124 cl +pp +np +164129 cl +164131 np +164134 cl +164137 cl +cl +164140 cl +np +np +cl +cl +164146 cl +pp +np +cl +pp +np +164155 cl +pp +cl +np +np +cl +cl +164164 cl +np +cl +164168 np +164170 np +pp +np +np +164177 cl +pp +np +164181 cl +np +164184 cl +164187 pp +np +164190 cl +164192 np +np +np +164196 np +np +164199 cl +np +164202 cl +164204 cl +cl +np +np +np +164210 cl +np +164215 cl +164218 pp +np +164221 cl +164225 cl +164227 np +164229 np +cl +164232 np +164234 cl +164237 np +164240 cl +pp +np +164244 cl +cl +np +np +164249 cl +164251 cl +cl +164255 cl +np +164260 cl +pp +np +164265 cl +164269 cl +cl +pp +np +pp +164275 cl +164278 cl +cl +pp +np +164286 cl +cl +np +np +pp +np +pp +164294 cl +pp +164297 cl +164299 cl +cl +pp +pp +np +164306 cl +np +164310 cl +cl +np +cl +cl +np +164318 cl +cl +np +164323 cl +164327 cl +164329 cl +164331 cl +np +np +164336 cl +np +np +164340 cl +164342 cl +pp +np +cl +164348 cl +np +164351 cl +pp +np +cl +164358 cl +pp +np +cl +cl +164364 np +164366 np +np +np +cl +164371 cl +pp +np +164375 cl +np +np +164380 cl +cl +np +cl +np +164387 cl +cl +cl +pp +np +164393 cl +164395 np +np +164398 cl +pp +164401 cl +pp +164405 cl +pp +cl +164411 cl +cl +pp +cl +164416 cl +pp +164422 cl +cl +pp +cl +np +164428 cl +pp +np +164433 cl +cl +np +cl +164438 cl +np +cl +cl +pp +np +164446 cl +164448 cl +np +164451 cl +cl +np +164456 cl +cl +pp +np +164463 cl +cl +cl +164468 cl +164471 cl +cl +np +164477 cl +cl +cl +cl +cl +164483 cl +np +pp +np +np +np +np +164491 cl +cl +np +164495 cl +np +164498 cl +cl +164501 cl +164503 np +164505 np +pp +np +np +np +164514 cl +pp +pp +np +164519 cl +164521 cl +164523 np +164525 np +164527 cl +cl +164530 cl +164532 cl +np +164535 cl +164537 cl +164539 cl +164541 cl +pp +164544 cl +164546 cl +164548 cl +164551 cl +164553 cl +np +np +np +np +np +pp +np +cl +np +np +164567 cl +np +np +np +164573 cl +164575 cl +164577 cl +164580 cl +np +np +adjp +np +164586 cl +164589 cl +pp +np +np +cl +cl +np +np +164599 cl +np +cl +np +pp +164605 cl +np +164608 cl +164610 cl +164612 cl +np +np +164618 cl +cl +pp +np +164623 cl +164626 cl +164628 cl +np +np +np +np +np +164635 cl +164637 cl +164640 cl +np +np +164644 cl +np +pp +np +np +164650 cl +np +cl +pp +np +164656 cl +164659 cl +164661 cl +pp +np +cl +pp +164667 cl +pp +np +164671 cl +pp +164675 cl +pp +np +np +np +164681 cl +np +cl +np +np +164689 cl +164691 cl +pp +np +np +164696 cl +164698 pp +164700 cl +164703 cl +164705 np +164707 np +cl +np +np +164712 cl +pp +164717 cl +cl +cl +np +164722 cl +pp +164726 cl +cl +np +pp +cl +cl +np +np +np +164737 cl +np +np +164743 cl +np +np +cl +164748 cl +pp +np +164752 cl +cl +164755 cl +np +cl +cl +164760 cl +164762 cl +cl +np +np +cl +164768 np +np +164771 np +164773 cl +cl +pp +np +164779 cl +cl +164783 cl +pp +np +np +164788 cl +pp +np +np +164794 cl +np +cl +np +np +164804 cl +np +164807 cl +cl +np +np +np +np +164814 cl +np +np +164818 cl +np +np +164823 cl +np +164826 cl +164828 cl +164832 cl +pp +np +np +np +164838 cl +164840 cl +pp +np +164845 cl +np +np +cl +pp +np +164852 np +cl +164859 cl +np +cl +164864 cl +np +cl +cl +164869 cl +np +cl +np +164875 cl +cl +164878 cl +np +164882 cl +164884 cl +np +np +cl +cl +np +164892 pp +np +np +np +164897 cl +164899 np +164901 np +np +np +164907 cl +164909 cl +164911 cl +cl +np +164915 cl +pp +164919 cl +np +np +pp +np +cl +164927 cl +164930 cl +164932 cl +np +np +np +pp +164938 cl +pp +164941 cl +pp +np +164945 cl +cl +164948 cl +cl +164951 cl +164954 cl +np +cl +np +np +cl +164962 cl +np +np +np +164968 cl +164971 cl +cl +164974 np +np +164977 np +164979 cl +cl +164982 cl +164985 cl +np +164988 cl +np +np +np +164995 cl +cl +164998 cl +cl +165002 cl +pp +np +np +np +cl +cl +165010 cl +cl +165016 cl +cl +165019 cl +np +np +np +np +165025 cl +np +np +165030 cl +pp +np +165036 cl +np +cl +165040 cl +cl +np +np +np +np +165047 cl +165050 np +165052 np +pp +np +165057 cl +np +np +165063 cl +pp +np +np +np +np +165070 cl +165073 cl +cl +np +cl +165078 cl +np +165081 cl +np +np +np +165088 cl +pp +np +165095 cl +pp +np +pp +np +165103 cl +pp +np +np +np +165109 cl +165111 cl +pp +np +cl +cl +165117 np +np +165120 np +np +165123 np +np +165127 cl +np +np +cl +165133 cl +cl +np +pp +np +np +165141 cl +np +cl +cl +cl +np +pp +np +165151 cl +165153 np +pp +cl +cl +165158 np +np +pp +np +165164 cl +cl +165167 np +np +165170 pp +np +np +np +165175 pp +np +np +np +165180 pp +np +np +np +165185 cl +np +np +165191 cl +cl +np +np +165196 cl +165199 cl +pp +np +np +np +np +np +165207 cl +np +165212 cl +np +cl +np +cl +cl +pp +np +cl +np +165223 cl +cl +np +165227 cl +165229 cl +pp +cl +cl +np +np +165236 cl +pp +np +165241 cl +np +np +pp +np +np +165251 cl +cl +np +165257 cl +cl +165260 cl +pp +np +np +cl +165266 cl +np +165269 np +165271 np +np +cl +cl +pp +np +np +165279 np +165281 np +165285 cl +np +165288 cl +165292 cl +pp +np +np +165299 cl +165301 cl +165306 cl +np +165309 cl +pp +np +np +np +165315 cl +np +np +cl +165321 cl +np +np +np +pp +165327 cl +np +165333 cl +np +np +165337 cl +np +165340 cl +165342 np +np +pp +np +165347 np +np +pp +np +165352 np +np +pp +np +165357 cl +pp +np +165362 cl +165365 cl +np +np +165369 cl +np +165373 cl +np +pp +np +165378 cl +np +165381 np +np +165384 cl +165386 cl +np +165389 np +165392 cl +np +np +np +165399 cl +cl +165402 cl +cl +165413 cl +np +np +np +pp +np +165421 cl +165423 cl +cl +165426 cl +165435 cl +165437 np +165439 np +cl +165442 cl +165444 cl +np +np +adjp +165449 cl +165452 np +165454 cl +165456 cl +165458 cl +pp +np +165462 cl +165464 cl +pp +np +np +np +165474 cl +165476 cl +np +165479 cl +165481 np +165483 cl +np +165488 cl +165490 cl +pp +np +165494 cl +165496 cl +pp +165499 np +np +pp +165505 cl +165507 cl +np +165510 cl +165512 np +165514 cl +np +165518 cl +165520 cl +pp +np +165524 pp +165526 pp +np +np +pp +165532 cl +165534 cl +pp +np +165538 pp +165540 pp +165542 cl +165545 cl +165547 cl +pp +np +165551 pp +np +np +np +165556 pp +165558 cl +pp +165562 cl +165569 cl +165571 np +165573 np +165575 np +165577 cl +165579 np +np +np +165583 np +165585 np +165587 np +165590 cl +165592 cl +cl +165597 np +165600 cl +np +165603 cl +np +165613 cl +np +np +165617 np +165619 np +165621 cl +pp +165628 np +cl +np +np +np +165634 cl +np +np +np +165640 cl +165646 cl +165648 np +cl +165652 cl +165654 cl +165656 np +165658 np +165660 cl +np +165664 cl +np +165667 cl +165672 cl +165680 cl +np +np +np +165685 cl +np +np +np +165690 cl +165693 cl +pp +np +np +np +np +165700 cl +np +pp +np +np +np +165708 cl +165710 cl +np +165713 cl +np +165717 cl +np +np +np +np +165723 cl +165726 np +pp +np +np +np +165732 cl +cl +pp +pp +165740 cl +pp +165746 cl +pp +pp +np +np +165752 cl +165754 pp +pp +165757 cl +pp +np +165761 np +cl +pp +np +165766 pp +np +np +165770 np +pp +np +np +165776 np +cl +pp +165780 np +165782 np +165786 cl +cl +np +pp +np +np +165800 cl +np +165803 cl +165805 cl +pp +165808 cl +cl +np +np +cl +np +np +np +pp +np +165819 cl +165821 cl +np +np +165826 cl +165828 cl +advp +pp +165833 cl +cl +cl +165837 cl +pp +np +165843 cl +np +cl +pp +np +165849 cl +np +np +cl +np +np +np +165858 cl +cl +165862 cl +np +165866 cl +cl +advp +pp +165871 cl +165875 cl +pp +np +np +np +cl +np +pp +cl +cl +165886 cl +165888 cl +np +np +165892 np +np +165895 np +np +165899 cl +cl +np +165903 cl +165905 cl +165909 cl +pp +np +np +cl +cl +np +165917 cl +165920 cl +cl +165924 np +165926 cl +165928 cl +165932 cl +cl +165935 cl +np +165941 cl +pp +165944 cl +pp +165947 cl +165950 pp +165953 cl +np +np +165959 cl +pp +165962 cl +165964 cl +vp +pp +np +np +pp +np +np +165975 cl +165977 cl +165979 cl +165983 cl +np +165986 cl +165989 cl +pp +165992 cl +np +np +np +np +165999 cl +166002 cl +pp +166007 cl +np +np +np +np +pp +np +np +pp +np +np +166019 cl +np +166026 cl +cl +166029 np +np +np +166033 cl +pp +166036 np +pp +np +cl +166041 cl +166043 cl +np +pp +np +pp +np +cl +np +pp +np +cl +np +pp +np +np +166059 cl +np +pp +np +cl +np +np +166068 cl +166071 cl +pp +166075 cl +pp +np +np +166081 cl +166083 cl +np +np +166090 cl +166092 np +166094 cl +166096 pp +np +pp +np +166101 cl +advp +166107 cl +np +np +cl +np +166114 cl +pp +np +np +np +166122 cl +cl +cl +np +166127 cl +cl +166132 cl +166136 cl +166138 np +166141 cl +166143 cl +np +np +166147 cl +166154 cl +cl +pp +np +cl +cl +166161 cl +cl +pp +np +166167 cl +166170 cl +np +pp +166174 cl +pp +np +np +np +np +np +cl +166183 cl +np +np +166189 cl +pp +np +np +np +np +np +166197 cl +np +np +np +166202 cl +np +pp +np +166207 cl +np +np +np +166214 cl +np +np +np +np +np +pp +166222 cl +np +np +np +np +166228 cl +cl +np +np +np +pp +np +np +np +pp +np +166244 cl +np +np +pp +np +166250 cl +np +np +pp +np +np +166257 pp +np +pp +np +166263 cl +pp +np +np +166271 cl +np +np +166275 cl +np +cl +166279 cl +np +166282 cl +166284 cl +np +166287 cl +pp +166290 cl +cl +166293 cl +advp +np +np +166299 cl +np +166303 cl +166305 np +166307 np +166309 cl +np +np +advp +166316 cl +pp +np +np +166322 cl +166324 np +np +np +166328 np +166330 cl +np +166334 cl +166336 cl +np +np +np +np +np +np +np +np +166350 cl +pp +166353 np +np +np +pp +np +vp +166364 pp +cl +np +pp +np +166370 cl +166373 cl +np +166376 cl +cl +np +np +np +np +np +np +166385 cl +pp +np +166389 cl +166391 cl +166393 cl +pp +np +166397 cl +166399 cl +166403 cl +166405 cl +cl +np +np +np +166412 cl +166416 cl +np +cl +np +np +166423 cl +166426 cl +cl +np +np +166432 cl +pp +np +166436 cl +166438 cl +np +np +np +166444 cl +166446 np +np +166450 cl +np +pp +np +np +166456 cl +np +pp +166460 cl +166462 np +np +cl +cl +cl +np +np +166470 cl +cl +166473 cl +pp +np +np +166478 cl +166484 cl +np +np +np +pp +np +np +cl +np +np +166496 cl +cl +np +np +166501 cl +166504 pp +166506 cl +166508 cl +np +np +np +np +166514 pp +166516 cl +166518 pp +166520 cl +166523 cl +166525 cl +np +np +pp +np +166531 cl +166533 np +166535 np +np +np +166539 cl +np +np +np +np +166545 cl +cl +np +np +pp +np +np +166555 cl +np +pp +166559 cl +166562 cl +np +cl +np +pp +166569 cl +np +pp +np +pp +np +np +166579 cl +np +166582 cl +166584 cl +166587 cl +np +166590 cl +cl +np +cl +pp +166597 cl +np +np +np +166602 cl +np +np +166607 cl +np +np +166611 cl +pp +np +np +166616 cl +np +np +166621 cl +np +cl +166625 cl +advp +166629 cl +pp +166632 cl +cl +166638 cl +cl +cl +np +166644 cl +np +pp +pp +np +166650 cl +np +166654 cl +np +np +np +cl +166662 cl +166665 cl +cl +166669 cl +cl +166674 cl +166676 cl +166678 np +166680 np +166687 cl +cl +np +np +166692 cl +np +166695 cl +166700 cl +np +166703 cl +166705 cl +cl +pp +np +np +166711 cl +166714 cl +cl +166717 cl +np +np +pp +166722 cl +np +166725 cl +166727 cl +np +np +166733 cl +166735 cl +np +cl +166739 cl +np +np +np +np +166747 cl +pp +np +np +np +np +np +166755 cl +pp +166759 cl +cl +166762 cl +np +np +np +np +cl +166770 cl +np +cl +np +np +166776 cl +np +np +166780 cl +166782 np +166786 cl +pp +cl +pp +cl +pp +np +np +np +np +166797 cl +cl +np +166801 cl +np +np +166806 cl +np +cl +np +np +166812 cl +np +np +166816 cl +166818 np +166822 cl +pp +cl +pp +cl +pp +np +np +np +np +166834 cl +cl +np +166838 cl +np +np +166844 cl +166846 cl +np +np +166850 cl +cl +166853 cl +cl +166856 cl +cl +cl +np +np +pp +np +cl +np +166867 cl +cl +np +np +166874 np +166879 cl +cl +166882 cl +cl +166886 cl +cl +np +np +np +166893 cl +cl +np +pp +166900 cl +pp +np +166904 cl +166906 cl +np +np +166913 cl +np +166916 cl +166918 cl +166920 cl +166923 cl +np +cl +pp +166929 cl +np +np +pp +np +np +np +166937 cl +166939 np +166941 np +np +np +166946 cl +166949 cl +np +np +np +pp +np +np +166957 cl +np +np +pp +pp +np +np +166967 cl +pp +np +np +166972 cl +pp +166976 cl +np +np +pp +np +166984 cl +np +pp +np +166989 cl +np +pp +166993 cl +np +np +pp +np +166999 cl +167001 np +167003 cl +np +np +cl +np +np +cl +pp +np +167016 cl +167018 cl +cl +167021 cl +167023 cl +167025 cl +167027 cl +167029 cl +167031 cl +167033 cl +167035 cl +167037 cl +pp +167040 cl +pp +167043 cl +np +cl +167051 cl +cl +167054 cl +167057 cl +167059 cl +167064 cl +cl +167067 cl +167070 cl +167072 cl +167076 cl +cl +167079 cl +167081 pp +167083 cl +pp +167087 cl +cl +np +cl +cl +cl +pp +cl +np +np +np +np +np +np +167102 cl +np +np +pp +cl +cl +pp +pp +167111 np +np +np +167115 cl +167117 np +167119 np +np +167125 cl +167127 cl +cl +167130 cl +167132 cl +167134 cl +167136 cl +167138 cl +167140 cl +167144 pp +167146 cl +167148 cl +np +cl +167154 cl +cl +167157 cl +167159 cl +167164 pp +167166 cl +167168 cl +cl +cl +cl +cl +pp +cl +np +np +np +167181 cl +pp +np +167185 cl +np +pp +np +167192 cl +167195 cl +np +np +np +np +cl +np +np +cl +167206 cl +pp +np +np +167211 cl +np +np +np +pp +167217 cl +167220 cl +167222 np +167224 np +np +np +pp +np +np +167231 np +167233 cl +167235 cl +167238 cl +np +167241 cl +167244 cl +167246 cl +pp +np +167250 cl +pp +np +167256 cl +np +167259 pp +pp +np +167263 np +167265 cl +cl +np +np +167271 cl +pp +np +cl +167277 cl +cl +np +cl +cl +pp +np +np +167287 cl +167289 cl +167291 cl +167294 cl +cl +np +167298 cl +np +167301 cl +np +pp +167307 cl +np +pp +167311 cl +167314 cl +cl +np +np +pp +np +np +pp +167323 cl +167327 cl +cl +167330 cl +np +np +pp +np +np +np +cl +pp +np +167341 cl +167343 np +np +167346 cl +167348 cl +pp +np +cl +cl +cl +167356 cl +np +167360 cl +pp +167363 cl +167366 cl +np +np +np +np +np +cl +167374 cl +cl +cl +np +167380 cl +167382 cl +pp +np +pp +np +167388 cl +cl +np +167392 cl +np +np +cl +pp +np +pp +np +np +167405 cl +np +167408 cl +np +167411 cl +np +167416 cl +cl +pp +np +np +167424 cl +cl +cl +cl +167429 cl +np +pp +167434 cl +cl +cl +np +167439 cl +167443 cl +cl +cl +167448 cl +pp +np +pp +np +167457 cl +np +np +np +167462 cl +pp +167465 cl +167467 np +np +cl +pp +np +np +np +167475 cl +167477 cl +np +np +167482 cl +cl +167486 cl +167488 cl +167491 cl +cl +167496 cl +167498 cl +np +167501 cl +167503 cl +167505 cl +cl +np +167510 cl +cl +cl +np +np +167517 cl +167519 cl +167521 cl +cl +167524 cl +pp +167527 cl +167529 np +np +np +np +167534 cl +pp +pp +np +167540 cl +cl +advp +pp +pp +np +np +np +np +pp +167551 np +np +167554 cl +pp +pp +np +np +np +np +167563 cl +cl +pp +np +np +np +167570 cl +np +167573 cl +np +pp +pp +np +np +167580 cl +167582 cl +np +167585 cl +np +np +np +167590 cl +pp +167593 cl +pp +np +167598 cl +cl +np +167603 cl +pp +cl +167607 cl +np +cl +cl +167612 cl +pp +np +np +167617 cl +167619 cl +np +167623 cl +cl +pp +cl +advp +167629 cl +np +np +np +167635 cl +pp +np +pp +np +cl +167642 cl +np +cl +pp +cl +cl +167650 cl +cl +167653 np +167655 np +np +np +167659 cl +167661 cl +167663 cl +167665 cl +np +np +pp +167670 cl +167672 cl +pp +167676 cl +cl +pp +np +cl +167685 np +cl +167688 cl +pp +np +np +167695 cl +167697 cl +167702 cl +pp +np +167706 cl +cl +167709 cl +np +cl +cl +np +pp +167718 cl +167720 cl +167722 cl +pp +167727 cl +np +167730 cl +np +167733 cl +cl +pp +cl +167739 np +167741 cl +cl +167744 cl +cl +np +np +167751 cl +cl +cl +167755 cl +vp +np +np +167761 cl +cl +cl +pp +cl +np +np +167770 cl +pp +np +167774 cl +167778 cl +167780 cl +cl +cl +np +167785 cl +np +np +np +pp +np +167793 cl +cl +cl +167797 cl +167800 cl +cl +cl +167804 np +np +167807 cl +pp +np +np +np +pp +167815 pp +np +167819 np +np +167823 cl +167825 cl +cl +cl +cl +167830 cl +167834 cl +cl +np +cl +167840 cl +167843 cl +np +cl +167847 pp +167850 cl +cl +np +pp +np +167856 cl +167859 cl +cl +np +np +pp +cl +np +np +np +167869 cl +cl +np +np +np +np +np +167877 cl +np +167880 cl +np +np +pp +np +np +167887 cl +np +167890 cl +pp +167894 cl +167897 cl +cl +np +np +167902 cl +adjp +np +np +167908 cl +np +167911 cl +cl +167914 cl +pp +np +np +np +np +167924 cl +pp +cl +pp +167930 cl +167932 cl +pp +pp +np +cl +167938 cl +167941 cl +np +167944 cl +np +np +np +167949 cl +np +np +cl +167956 cl +167958 cl +np +pp +167962 np +cl +167965 np +167967 np +167971 cl +np +pp +pp +np +np +np +167979 cl +cl +pp +np +cl +np +167988 cl +167990 np +167992 np +np +pp +np +167997 cl +168000 cl +cl +np +168005 cl +cl +cl +cl +168010 cl +np +np +np +168015 cl +pp +np +168020 cl +cl +np +cl +cl +168027 cl +np +168031 cl +np +cl +pp +168036 np +168038 cl +168040 cl +168042 cl +168044 np +np +np +np +168049 cl +np +168052 cl +168054 cl +cl +pp +168058 cl +np +np +np +pp +np +np +168066 cl +pp +np +np +np +168072 cl +np +np +np +cl +168078 cl +cl +np +cl +cl +np +168086 cl +cl +cl +168092 cl +pp +np +np +168097 cl +168099 cl +cl +168102 cl +168104 cl +168106 cl +168109 cl +np +pp +np +168115 cl +np +cl +cl +np +pp +168122 np +168125 cl +pp +cl +cl +cl +168133 cl +pp +np +168137 cl +168139 cl +np +cl +pp +168144 np +168147 cl +pp +168150 cl +np +168154 cl +pp +cl +168158 cl +np +168161 cl +np +pp +168165 cl +np +np +np +168170 cl +168172 cl +168174 cl +168176 cl +np +168180 cl +168183 cl +np +np +np +np +cl +168190 cl +168192 cl +168195 cl +cl +168200 cl +cl +np +168204 np +168206 np +np +np +pp +np +168212 cl +168216 cl +cl +168219 cl +168221 np +168223 cl +168226 cl +cl +168229 cl +cl +np +np +np +168236 cl +cl +cl +np +168242 cl +168244 cl +pp +cl +168250 cl +cl +np +pp +np +168256 cl +cl +168260 cl +np +cl +np +168265 cl +cl +pp +np +168270 cl +np +168274 cl +cl +pp +np +np +np +pp +np +np +168285 cl +np +np +np +pp +np +168292 cl +168294 cl +pp +168297 np +cl +168301 cl +168303 np +np +np +np +168309 cl +cl +pp +np +168315 cl +pp +np +np +np +168321 cl +168324 cl +np +pp +np +168330 cl +np +cl +cl +np +np +np +168339 cl +np +cl +168344 cl +pp +168347 cl +pp +np +168353 cl +np +cl +cl +168359 cl +pp +np +np +168364 cl +np +168368 cl +pp +np +cl +np +np +168375 cl +168378 cl +np +np +cl +168386 cl +cl +np +cl +168391 cl +cl +168397 cl +168399 cl +168401 cl +pp +168406 cl +pp +np +cl +pp +np +np +cl +168415 cl +168418 np +np +168421 cl +pp +pp +168426 cl +168428 np +168430 np +np +168434 cl +np +168437 cl +np +168441 cl +cl +np +cl +cl +np +pp +np +168451 cl +cl +np +168455 cl +np +168458 cl +168461 cl +168463 cl +cl +168467 cl +168469 cl +np +168473 cl +cl +cl +168478 cl +np +cl +168483 cl +168485 cl +cl +np +pp +np +cl +168492 cl +pp +np +np +cl +168499 cl +cl +np +np +cl +np +np +168507 pp +168509 pp +np +np +168514 cl +np +168517 cl +cl +np +168521 cl +168523 cl +np +np +np +cl +np +pp +np +pp +np +np +168537 cl +cl +np +168541 cl +cl +pp +pp +np +np +168548 cl +pp +np +np +168553 cl +cl +pp +cl +cl +168559 np +np +168562 cl +cl +pp +np +168567 cl +pp +np +np +168576 cl +168578 cl +np +168581 cl +np +np +168585 cl +pp +168588 cl +168591 cl +cl +np +168595 cl +168597 cl +168599 cl +np +np +168604 cl +cl +pp +np +cl +168610 cl +vp +np +cl +np +cl +pp +168619 cl +cl +cl +168625 cl +cl +np +np +cl +168631 cl +cl +168635 cl +pp +np +np +np +np +np +cl +cl +168645 np +np +np +168649 cl +pp +np +168653 cl +pp +168656 cl +pp +168660 cl +168662 cl +168664 cl +np +np +168668 cl +168673 cl +np +168676 cl +pp +np +168680 cl +168682 cl +np +np +168686 cl +pp +np +168690 cl +np +cl +pp +np +168698 cl +cl +cl +168704 cl +np +cl +pp +np +168710 cl +pp +168713 cl +pp +np +168717 cl +168719 cl +168722 cl +168724 cl +np +168728 cl +np +np +168732 np +168734 cl +pp +168738 cl +pp +np +pp +np +np +pp +np +168748 cl +pp +np +np +np +np +cl +168760 cl +cl +168765 np +168767 np +cl +pp +168772 cl +np +168775 cl +cl +168778 cl +168781 cl +np +pp +168785 cl +168787 cl +168789 cl +168791 cl +168794 cl +np +168797 cl +168799 cl +168801 cl +cl +168805 cl +np +cl +np +np +168812 cl +cl +np +np +np +168818 pp +pp +pp +168822 cl +np +168825 cl +np +168828 cl +np +168832 cl +np +np +np +np +cl +168839 cl +cl +pp +np +pp +np +np +pp +np +np +168850 cl +168853 cl +168855 np +168858 cl +pp +np +cl +168863 np +168866 cl +cl +cl +np +168872 cl +168875 np +np +cl +pp +cl +np +pp +np +cl +cl +pp +168888 np +168891 np +np +np +168897 np +np +np +np +168904 cl +cl +168908 np +np +pp +cl +cl +168914 np +np +168917 cl +cl +np +np +np +np +168924 cl +np +cl +168930 cl +cl +np +np +pp +np +168937 cl +pp +168940 np +np +np +cl +pp +np +168947 cl +cl +np +np +np +np +168955 cl +168958 np +168960 np +np +vp +pp +np +168967 cl +168969 np +cl +pp +np +168974 np +168976 np +cl +pp +168981 cl +cl +np +np +cl +cl +pp +np +168991 cl +cl +np +pp +np +np +168999 cl +cl +np +169003 cl +np +cl +pp +np +169009 cl +np +np +np +169014 cl +np +169017 cl +169019 cl +169021 cl +169023 cl +169026 cl +cl +np +cl +np +pp +np +169035 cl +pp +169038 cl +pp +np +169043 np +169045 np +np +cl +np +169051 cl +np +169056 cl +np +169059 cl +pp +169062 cl +np +169065 cl +pp +169070 cl +np +np +pp +169075 cl +np +np +pp +169082 cl +pp +np +np +169087 cl +169089 cl +pp +169093 cl +cl +np +np +169098 cl +169100 cl +169102 cl +169105 cl +169108 cl +169111 cl +169113 cl +169116 cl +cl +np +169120 cl +169123 cl +cl +np +np +169129 cl +pp +np +169133 cl +cl +pp +np +cl +169139 cl +169142 cl +cl +pp +np +pp +169149 np +cl +np +np +169155 cl +cl +cl +169161 cl +cl +np +np +169166 cl +169168 cl +np +169171 cl +169173 cl +169175 cl +np +np +169179 cl +pp +np +cl +169186 cl +cl +np +np +cl +pp +np +np +np +169196 cl +169199 cl +169201 cl +pp +np +169205 cl +np +np +cl +cl +169212 cl +np +np +cl +cl +169221 cl +pp +np +169225 cl +169227 cl +169231 cl +cl +169234 cl +169237 cl +np +np +pp +pp +np +np +169248 cl +np +np +pp +np +pp +np +169256 cl +np +169259 cl +cl +169262 cl +169265 cl +cl +np +cl +cl +np +np +169273 pp +169275 pp +np +169279 cl +cl +np +np +cl +pp +np +np +169288 np +169290 np +169292 np +np +cl +cl +169297 cl +169300 cl +pp +np +np +pp +np +np +np +169309 cl +np +np +np +169315 np +169319 cl +pp +169322 np +np +cl +cl +np +np +pp +np +cl +np +np +cl +np +cl +pp +np +169339 cl +np +np +cl +np +np +cl +169348 cl +pp +np +cl +np +np +pp +np +169359 cl +pp +169362 np +np +np +169366 np +np +169369 cl +pp +pp +np +169374 cl +np +np +169379 cl +np +169383 cl +np +169386 cl +np +pp +np +np +169392 cl +169395 np +169398 cl +cl +cl +np +adjp +pp +cl +cl +cl +np +np +np +np +169413 cl +169415 cl +np +169420 cl +pp +np +np +169425 cl +pp +np +np +169430 cl +pp +np +pp +169436 cl +cl +pp +np +169441 cl +np +169444 cl +np +pp +pp +169450 cl +pp +np +169454 cl +169456 np +np +np +cl +pp +169463 cl +np +pp +np +169470 cl +pp +np +np +cl +pp +np +169479 cl +pp +np +169483 cl +np +169487 cl +pp +169490 cl +np +np +pp +np +169496 cl +np +np +np +169501 cl +169505 cl +np +169508 cl +np +np +np +169513 cl +169515 cl +pp +np +169520 cl +cl +pp +np +np +np +cl +169530 np +np +pp +np +169536 cl +169539 cl +np +169542 cl +pp +169545 cl +cl +np +169550 cl +cl +np +169556 cl +cl +169561 np +np +169565 np +np +169568 cl +pp +np +np +169573 cl +169576 cl +cl +169579 np +np +pp +np +pp +np +pp +169588 cl +pp +169592 cl +np +cl +pp +np +169599 cl +pp +np +np +169604 cl +vp +169608 cl +169612 cl +np +169617 cl +pp +np +np +np +pp +np +169625 cl +cl +169629 cl +169634 cl +cl +cl +169638 cl +cl +np +np +np +169645 cl +np +169648 cl +169650 cl +pp +169654 cl +np +np +np +169659 cl +169661 cl +np +pp +169666 cl +169668 cl +cl +169672 cl +cl +np +np +pp +169678 cl +np +np +np +np +169684 cl +169687 cl +np +np +pp +np +np +np +np +169697 cl +cl +pp +np +pp +np +np +169706 pp +169712 cl +np +np +cl +169717 cl +pp +169721 cl +cl +cl +np +169728 cl +np +169731 cl +169735 cl +169737 cl +np +cl +pp +np +169744 cl +169747 cl +169750 cl +vp +np +np +pp +np +169759 cl +np +cl +np +169765 cl +np +169768 cl +cl +np +169772 cl +169776 cl +adjp +cl +169781 cl +pp +np +cl +169788 cl +169791 np +pp +169795 cl +169797 cl +169799 cl +169802 cl +169805 cl +pp +np +np +cl +169811 cl +advp +169814 cl +pp +169818 cl +169820 cl +pp +np +np +pp +np +np +169828 cl +np +169832 cl +pp +169835 cl +169837 cl +cl +169840 cl +169842 cl +cl +169847 cl +cl +cl +np +np +169853 cl +169855 cl +cl +169860 cl +pp +np +169864 cl +169868 cl +cl +169871 cl +169873 cl +cl +169877 cl +169879 cl +np +169882 cl +pp +np +np +cl +pp +np +169892 cl +cl +169895 cl +169897 cl +np +169900 cl +cl +pp +169904 cl +pp +np +169909 cl +pp +169914 cl +pp +pp +cl +169919 cl +pp +169924 cl +169926 cl +np +np +pp +np +169932 cl +np +169936 cl +cl +pp +np +cl +pp +169945 cl +cl +cl +pp +np +np +169952 cl +169954 cl +cl +np +169958 cl +np +169962 cl +np +cl +np +np +np +cl +169970 np +np +169974 cl +np +np +169978 cl +169980 cl +pp +np +np +169985 cl +cl +169988 cl +cl +169991 cl +169993 np +169996 cl +np +cl +np +np +170002 cl +pp +170005 cl +pp +np +np +170010 cl +170013 cl +np +cl +np +np +170019 cl +170021 cl +170024 cl +np +np +170028 cl +170031 cl +170033 cl +np +np +np +cl +pp +np +170041 cl +np +cl +170045 cl +170047 cl +np +np +170051 cl +pp +np +np +170058 cl +170060 cl +cl +np +pp +170066 cl +170068 cl +np +cl +170072 cl +170075 cl +pp +np +170081 cl +np +np +pp +170086 cl +170090 cl +cl +cl +170094 np +np +pp +np +170099 cl +cl +170103 cl +cl +170108 cl +cl +pp +np +np +170115 cl +np +170120 np +170122 np +np +170126 cl +170128 cl +170131 cl +np +np +np +cl +170137 cl +pp +170140 np +170142 np +np +170145 cl +pp +np +170152 cl +cl +np +170156 cl +np +170159 cl +cl +170162 cl +170165 cl +cl +cl +170170 cl +vp +170173 np +np +170176 np +170180 cl +170182 cl +170184 cl +pp +170187 np +np +170190 np +np +np +170194 cl +np +np +170199 cl +np +170202 cl +np +np +np +pp +cl +np +pp +cl +170212 cl +cl +np +np +pp +cl +170221 cl +170223 cl +pp +np +170227 cl +pp +np +np +170232 cl +np +np +pp +np +170241 cl +cl +np +np +np +pp +170248 np +170250 cl +np +170256 cl +np +pp +np +170263 cl +cl +np +np +170269 cl +np +170272 cl +np +170275 cl +np +pp +np +170282 cl +cl +pp +np +pp +np +170289 cl +np +np +cl +cl +np +170297 cl +np +cl +np +cl +170304 cl +cl +170307 cl +170310 cl +170312 cl +170315 np +pp +170320 cl +pp +np +np +np +pp +170329 cl +np +np +np +cl +cl +cl +cl +np +170339 cl +np +170342 cl +pp +170346 cl +170348 cl +np +pp +np +170353 cl +np +pp +np +170359 cl +np +np +np +np +np +np +170368 cl +pp +170372 cl +np +cl +cl +np +170381 cl +170383 cl +np +170386 cl +170389 cl +170391 np +170393 cl +np +np +cl +pp +np +170401 cl +cl +np +170406 cl +170408 cl +170410 cl +170412 cl +170415 cl +170418 cl +cl +pp +cl +pp +np +np +np +np +np +cl +np +170433 cl +170435 cl +np +np +170440 cl +cl +np +pp +np +pp +170447 cl +170450 cl +np +pp +np +np +pp +np +170459 cl +np +np +pp +np +170466 cl +170468 pp +np +170471 pp +170473 pp +np +170476 pp +np +170479 pp +170482 np +cl +cl +pp +170489 cl +np +np +170493 cl +pp +np +170497 cl +170500 cl +170502 cl +170504 cl +cl +170509 cl +np +np +np +170514 cl +170516 cl +cl +170519 cl +np +np +np +170525 cl +170527 cl +170532 cl +pp +np +170536 cl +cl +170539 cl +pp +170544 cl +170547 cl +pp +170551 cl +170553 cl +170555 cl +cl +np +170561 cl +np +170565 cl +np +170572 np +np +170576 np +np +np +170580 cl +170582 cl +np +170586 cl +170594 np +np +170599 np +170603 cl +170606 cl +pp +170610 cl +np +170613 cl +cl +170617 cl +cl +np +pp +cl +170623 cl +170625 cl +170628 cl +170630 np +170632 cl +pp +170636 cl +170639 cl +pp +np +np +np +np +170647 cl +cl +pp +cl +cl +170654 cl +170656 cl +pp +cl +np +np +170663 cl +170665 cl +pp +np +np +cl +170675 cl +np +pp +170679 cl +cl +cl +cl +170686 cl +cl +cl +pp +np +np +np +np +np +170696 cl +np +170699 cl +np +np +170704 cl +170706 cl +np +np +np +170711 np +np +170714 np +170717 cl +170722 cl +170724 cl +pp +np +np +np +pp +np +170732 cl +np +cl +cl +np +170740 cl +170742 np +np +170745 np +np +170748 cl +cl +pp +cl +170755 cl +pp +170758 cl +cl +170761 np +np +170764 np +np +170767 np +np +170771 cl +cl +cl +170775 np +np +170778 np +170781 cl +cl +170784 cl +pp +170787 cl +cl +170790 np +np +170793 np +np +170798 cl +np +np +np +cl +170804 np +170809 cl +cl +pp +np +170816 cl +pp +np +170820 cl +cl +pp +pp +np +170826 cl +np +np +170830 pp +np +pp +np +170837 cl +pp +170840 cl +pp +np +np +cl +170846 cl +170848 cl +cl +170852 cl +pp +170855 cl +170859 cl +pp +np +170864 cl +np +170867 cl +170872 cl +pp +np +cl +np +170878 cl +pp +170881 cl +np +170885 cl +170887 cl +np +170890 cl +pp +170893 cl +170896 cl +pp +np +170902 cl +np +170905 cl +170907 cl +170910 cl +pp +np +np +np +170917 cl +cl +170922 cl +170924 pp +170926 pp +170928 pp +170931 cl +cl +cl +cl +170939 cl +pp +cl +np +pp +pp +np +np +170949 cl +170951 cl +np +np +np +np +np +170959 cl +np +np +pp +np +170967 cl +cl +170970 cl +170973 cl +cl +170976 cl +170978 cl +170980 cl +170983 cl +170985 cl +np +np +170989 cl +np +np +170993 cl +170995 cl +np +171000 cl +np +pp +np +171005 cl +np +171010 cl +171012 cl +np +171015 cl +171017 np +171019 cl +pp +171023 cl +171025 cl +pp +np +171030 cl +171032 cl +np +pp +171037 cl +pp +171040 cl +171042 cl +cl +171046 pp +np +171050 cl +171052 cl +pp +np +171057 cl +171059 cl +np +171063 cl +171065 np +np +np +171069 np +np +np +171073 np +np +pp +np +cl +np +171080 cl +171083 cl +171085 cl +pp +np +np +np +171092 cl +np +171095 cl +171097 cl +171099 pp +171101 pp +171103 pp +171106 cl +171109 cl +np +171113 cl +pp +np +171117 cl +pp +np +171123 cl +pp +np +171129 cl +np +171133 cl +171135 cl +171137 cl +171139 cl +pp +171144 cl +cl +cl +171149 cl +171151 cl +cl +171155 cl +cl +pp +np +171160 cl +171164 cl +cl +171168 cl +cl +np +cl +pp +171175 cl +171177 cl +np +np +np +171183 cl +np +pp +np +171189 cl +171196 cl +np +171201 cl +171203 cl +np +171206 cl +cl +cl +pp +np +171215 cl +np +np +171219 cl +np +171223 cl +cl +cl +np +np +np +171230 cl +pp +np +cl +pp +171236 np +171238 cl +171240 cl +pp +np +np +171245 np +np +pp +np +171252 cl +cl +171255 cl +np +np +171259 cl +np +171262 cl +cl +pp +np +np +np +np +np +171272 cl +np +np +np +171277 cl +cl +171282 cl +pp +171285 cl +pp +np +np +171292 cl +pp +np +np +cl +cl +pp +np +171303 cl +cl +np +171307 cl +pp +np +171311 cl +np +pp +171317 cl +np +np +171321 cl +np +pp +np +171326 cl +np +171330 cl +pp +np +cl +pp +np +171339 cl +171341 cl +171344 cl +171346 cl +171350 cl +cl +np +171354 cl +np +171357 cl +cl +171362 cl +np +171365 cl +np +171369 cl +171371 cl +cl +171376 cl +np +171379 cl +pp +171382 cl +171384 cl +171387 np +171389 np +171392 cl +pp +np +np +np +pp +np +np +np +171404 cl +pp +np +cl +pp +np +171411 np +pp +np +cl +np +pp +np +171421 cl +np +cl +pp +171427 cl +171432 cl +pp +np +171436 cl +np +171439 cl +cl +171444 cl +pp +171449 pp +np +171452 pp +np +vp +171456 cl +171461 cl +cl +np +pp +171466 cl +171469 cl +cl +np +171473 cl +171478 np +171480 np +np +cl +np +cl +171486 cl +cl +171489 np +np +np +pp +np +171496 cl +cl +np +171501 cl +cl +np +171505 cl +171508 cl +171510 cl +pp +np +171515 cl +pp +np +np +np +np +cl +171524 cl +cl +171527 cl +pp +np +171531 cl +pp +171535 cl +171539 cl +cl +np +np +np +pp +np +171548 cl +np +pp +np +pp +np +np +171556 cl +pp +np +171562 cl +171564 cl +171566 cl +171568 pp +np +171571 pp +np +171575 cl +171577 cl +cl +171580 cl +171584 cl +pp +np +171589 cl +cl +171593 cl +171595 cl +np +171598 cl +171600 cl +171602 cl +171606 cl +171608 cl +cl +171611 cl +171613 cl +pp +np +171618 cl +cl +cl +pp +np +np +171627 cl +pp +np +cl +171632 cl +171634 cl +pp +171639 cl +cl +171642 cl +pp +np +np +pp +np +171649 cl +171651 cl +np +171654 cl +171659 cl +171661 cl +cl +pp +np +cl +np +171668 cl +171673 cl +np +pp +np +pp +np +cl +np +pp +171683 cl +pp +np +171689 cl +np +np +np +cl +171696 cl +cl +pp +np +np +171702 cl +cl +171705 cl +np +np +171709 cl +cl +np +171714 cl +171716 cl +171719 cl +pp +171724 cl +np +171727 cl +171730 cl +np +171733 cl +pp +np +np +171738 cl +pp +np +171742 cl +np +np +pp +171748 cl +171750 cl +pp +np +cl +np +pp +np +cl +pp +np +np +np +171764 cl +171766 cl +171768 cl +np +np +np +171775 cl +np +np +np +np +171781 cl +np +171784 cl +pp +np +171789 cl +np +cl +pp +cl +np +np +pp +cl +pp +np +cl +np +np +171805 cl +np +np +171809 cl +cl +np +171813 cl +cl +171817 cl +cl +171820 cl +171824 cl +np +cl +171829 cl +cl +171832 cl +171834 cl +np +np +171839 cl +cl +171842 np +np +171846 cl +pp +171849 cl +pp +np +np +171854 cl +cl +pp +np +cl +171861 cl +np +np +cl +np +171868 cl +np +cl +cl +np +np +171875 cl +cl +171879 cl +cl +pp +171883 cl +171885 np +171889 np +np +171894 cl +pp +np +np +np +171901 cl +171904 cl +171908 cl +cl +171911 cl +171915 cl +np +171918 cl +171921 cl +171925 cl +cl +171928 np +np +np +171932 np +171934 np +pp +171937 cl +cl +np +171942 cl +cl +np +np +np +cl +cl +171950 vp +171953 np +cl +171959 cl +np +171962 cl +171964 cl +np +171968 cl +np +171973 cl +171975 cl +171977 cl +cl +cl +171984 cl +171986 cl +pp +np +np +171991 cl +np +np +171997 cl +cl +cl +pp +np +172004 cl +np +cl +cl +172009 cl +172011 cl +172013 np +172015 cl +172017 cl +np +np +pp +np +np +172025 cl +172027 np +np +172030 np +np +172033 np +172041 cl +np +np +pp +172047 cl +pp +172051 cl +np +172054 cl +172056 cl +172058 pp +np +np +172062 pp +np +np +172066 pp +np +np +172071 cl +cl +np +172075 cl +cl +np +np +172081 cl +pp +np +np +172087 cl +np +cl +172093 cl +np +172096 cl +cl +172100 cl +np +np +np +np +172107 cl +172110 cl +pp +172113 cl +172116 cl +cl +cl +pp +np +172123 cl +172125 cl +np +172129 cl +172133 cl +pp +cl +172138 cl +172143 cl +np +172146 cl +cl +cl +172150 np +np +pp +np +np +pp +np +172160 cl +cl +172163 cl +172165 cl +np +172169 cl +np +172172 cl +172176 cl +172178 np +172180 cl +np +np +172184 cl +172187 cl +172190 cl +pp +172193 cl +pp +np +pp +172199 cl +172201 cl +172204 cl +172206 cl +172208 cl +np +np +172213 cl +cl +np +cl +172219 cl +172223 cl +np +np +cl +np +172229 cl +pp +pp +172233 np +np +172236 np +np +172239 cl +172242 cl +np +np +172246 cl +cl +np +np +np +np +172256 cl +np +172259 cl +cl +172262 cl +172267 cl +np +np +cl +np +172275 cl +172278 cl +cl +172281 cl +172284 cl +172286 cl +np +172289 cl +np +np +172293 np +np +172296 np +172298 np +np +np +172303 cl +np +np +np +np +172309 cl +172311 np +172314 cl +172317 cl +np +np +172321 cl +172323 cl +172325 cl +172328 cl +172332 cl +cl +pp +np +np +np +172340 cl +cl +np +np +cl +172347 cl +cl +np +np +172353 cl +172356 cl +cl +pp +pp +np +cl +cl +172364 cl +pp +np +np +172369 np +172372 cl +cl +np +pp +172377 np +172380 cl +cl +172384 cl +cl +np +cl +np +np +172393 cl +cl +pp +np +172400 cl +np +np +pp +172405 cl +np +172408 cl +np +np +np +172415 cl +cl +np +np +172420 cl +np +np +172424 cl +pp +172429 cl +np +pp +np +172434 cl +np +172437 cl +172439 cl +172443 cl +172445 cl +np +pp +pp +np +172451 cl +172454 cl +172457 cl +172460 cl +172462 cl +cl +172466 cl +pp +np +pp +np +pp +172476 cl +cl +172479 cl +172482 cl +pp +np +np +172487 cl +172491 cl +cl +np +172496 cl +pp +172499 cl +pp +np +cl +172504 cl +cl +172509 cl +cl +cl +np +np +172516 cl +np +172519 cl +172521 cl +172523 cl +cl +pp +np +np +172530 cl +172533 cl +cl +cl +cl +172539 cl +172541 cl +cl +np +np +172546 cl +cl +172550 cl +172552 cl +np +cl +cl +172558 cl +cl +cl +172563 np +172566 cl +cl +172569 pp +np +np +172574 cl +172577 pp +172579 pp +172584 cl +cl +172587 np +np +172590 np +np +cl +pp +np +172596 cl +np +172600 cl +np +172603 cl +172605 cl +np +np +172611 cl +172613 cl +172617 cl +172619 np +np +172622 cl +pp +np +172627 cl +172629 cl +np +np +172634 cl +172636 cl +np +np +pp +np +172642 cl +pp +np +pp +172647 cl +np +172651 cl +cl +pp +np +cl +172659 cl +172661 cl +np +pp +np +np +172667 cl +pp +np +172672 cl +172674 cl +cl +pp +172678 cl +172680 cl +np +pp +np +np +np +pp +cl +pp +np +172692 cl +cl +172698 cl +cl +cl +pp +np +172704 cl +172706 cl +172709 cl +172711 cl +172715 cl +pp +172718 cl +172721 cl +cl +cl +172727 cl +pp +pp +np +172732 cl +np +172737 cl +pp +pp +172742 cl +pp +np +cl +vp +np +np +172752 cl +cl +pp +np +pp +172758 cl +172762 cl +pp +np +172766 cl +cl +np +np +np +172772 cl +cl +pp +np +172777 cl +172780 cl +172782 cl +172786 cl +172789 cl +172791 pp +172793 pp +172795 pp +pp +np +172799 cl +172801 cl +172803 cl +np +np +np +np +172810 cl +172812 cl +172815 cl +pp +172818 np +172820 np +np +172823 cl +pp +172826 cl +np +np +np +172831 cl +172833 np +cl +np +172839 cl +172841 np +172843 np +np +172846 cl +np +cl +np +np +np +172853 cl +pp +172856 cl +172858 cl +cl +cl +np +172867 cl +172869 np +172871 np +172873 cl +pp +np +np +pp +np +np +np +172882 cl +np +np +172887 cl +cl +pp +172891 np +172893 cl +172897 cl +np +np +np +172902 cl +np +np +pp +172907 cl +cl +np +172911 cl +cl +np +np +np +np +np +np +172921 cl +cl +np +np +np +172927 cl +np +np +172932 cl +172934 cl +172936 np +np +172939 np +np +172942 cl +172944 cl +172949 cl +172952 cl +172954 np +172956 np +cl +172959 cl +172961 cl +pp +cl +cl +172966 np +172968 np +cl +np +np +np +172974 np +np +cl +172979 cl +np +np +172984 cl +cl +np +172988 cl +172990 cl +172992 cl +172994 np +pp +np +cl +pp +cl +cl +173002 cl +173004 cl +pp +np +173008 cl +np +173014 cl +pp +pp +np +cl +np +np +np +173025 cl +173027 cl +np +cl +173032 cl +np +173035 cl +pp +np +cl +173041 cl +pp +np +np +173046 cl +pp +np +173050 cl +pp +np +cl +np +np +173058 cl +173060 cl +173063 cl +pp +np +np +173069 cl +adv +pp +np +np +np +np +np +np +173082 np +cl +np +np +np +173088 cl +np +173092 cl +cl +pp +np +np +173100 cl +cl +pp +cl +173105 cl +cl +173109 cl +cl +pp +173113 cl +np +np +np +np +cl +pp +np +np +173125 cl +np +cl +np +173131 cl +173133 cl +np +pp +np +np +173140 cl +173142 cl +cl +np +173146 cl +173148 cl +np +np +np +173153 cl +np +173158 cl +173160 cl +173162 cl +173164 cl +np +np +pp +np +pp +np +np +np +173175 cl +cl +pp +np +np +cl +pp +np +np +np +173187 cl +cl +pp +np +np +173193 cl +np +pp +np +173198 cl +np +173202 cl +cl +pp +np +np +pp +pp +np +np +np +pp +np +np +np +173219 cl +173223 cl +173225 cl +np +173230 cl +cl +pp +np +pp +np +np +pp +np +np +173241 cl +cl +np +np +173247 cl +cl +pp +np +173252 cl +cl +cl +cl +173259 cl +np +np +173264 cl +np +np +np +np +173270 cl +173273 cl +173275 cl +173278 cl +cl +advp +173283 cl +cl +173286 cl +cl +173289 cl +np +173292 cl +173296 cl +pp +np +np +np +173302 cl +cl +cl +cl +np +173308 cl +pp +np +173313 cl +np +173316 cl +cl +173320 cl +173322 cl +np +pp +np +pp +np +173330 cl +np +pp +173335 cl +np +np +173339 cl +cl +pp +173344 cl +cl +np +173349 cl +cl +173353 cl +np +cl +pp +np +173362 cl +cl +np +np +cl +173369 cl +np +np +173373 cl +173375 cl +np +173379 cl +np +173383 cl +cl +cl +np +173391 cl +173393 cl +173395 cl +173397 np +np +173401 cl +np +173405 cl +173408 cl +cl +pp +np +pp +np +np +pp +np +np +173421 cl +np +173424 cl +cl +cl +pp +pp +np +cl +173433 cl +cl +np +np +cl +np +np +173443 cl +173445 cl +np +np +173450 cl +cl +cl +pp +np +173458 cl +cl +173461 cl +173463 cl +np +pp +pp +np +173470 cl +cl +cl +cl +pp +173476 np +np +np +173480 np +np +173484 cl +pp +173487 cl +173490 cl +cl +cl +173494 cl +173496 cl +173500 cl +cl +np +np +173506 cl +cl +173509 cl +cl +173513 cl +cl +173516 cl +np +np +pp +np +np +np +np +173525 cl +cl +173528 cl +173530 cl +np +pp +np +np +np +np +173539 cl +cl +173543 cl +cl +173547 cl +pp +173552 cl +173554 cl +173556 cl +173560 cl +cl +np +np +np +pp +np +173568 cl +cl +pp +np +np +cl +np +173576 cl +173579 cl +cl +173582 cl +np +173585 cl +cl +pp +173590 cl +np +pp +np +np +173597 cl +173599 cl +173601 cl +173604 cl +pp +np +cl +cl +pp +np +173613 cl +173615 np +173617 np +np +pp +np +np +np +np +173626 cl +pp +np +np +np +cl +cl +cl +np +173637 cl +cl +173641 cl +173643 np +173646 cl +173650 cl +np +np +173655 cl +173657 cl +cl +173660 cl +cl +np +cl +np +173667 cl +173669 cl +pp +173673 cl +cl +173676 cl +173678 cl +np +np +np +173684 cl +pp +173687 np +173689 np +173691 np +173693 cl +173695 cl +pp +np +173700 cl +np +173704 cl +np +cl +cl +173711 cl +173713 cl +173715 cl +np +np +173719 cl +173721 cl +pp +173726 cl +np +np +cl +np +np +173734 cl +cl +np +pp +np +np +173742 cl +cl +pp +173746 cl +173748 cl +np +np +173752 cl +173755 cl +173757 cl +cl +np +np +173763 cl +173765 cl +np +np +pp +173771 np +173774 cl +173776 cl +np +np +173780 cl +np +np +173785 cl +np +np +np +173793 cl +173796 np +np +pp +173800 np +np +173803 np +173806 cl +np +np +np +np +173812 cl +pp +np +np +np +np +pp +np +np +np +173824 cl +cl +cl +173828 cl +173830 np +173832 cl +cl +cl +advp +173837 cl +cl +np +np +np +pp +173846 cl +pp +np +np +173851 np +173853 np +173856 cl +pp +np +pp +173863 cl +pp +173866 cl +np +np +adjp +cl +adjp +cl +np +pp +np +cl +173880 cl +pp +173883 cl +vp +np +173888 cl +cl +np +np +173894 cl +cl +173898 cl +np +173901 cl +173903 cl +173905 cl +173908 cl +cl +173911 cl +173915 cl +cl +173918 cl +pp +np +173922 cl +173924 np +np +np +cl +173931 cl +cl +173934 cl +np +pp +173940 cl +pp +np +cl +173945 cl +cl +173950 cl +np +np +np +pp +173957 cl +np +cl +pp +cl +173963 cl +pp +173967 cl +cl +cl +np +173972 cl +cl +173976 cl +173979 cl +cl +173982 cl +pp +np +np +np +173989 cl +173991 cl +173994 cl +173997 cl +np +174001 cl +cl +174004 cl +pp +174008 cl +cl +pp +np +174013 cl +np +pp +174017 cl +pp +174022 cl +np +np +cl +174027 cl +cl +174031 cl +cl +pp +174036 cl +np +pp +np +cl +174042 np +np +pp +cl +np +174050 cl +174052 cl +174054 cl +174056 cl +np +174059 cl +174063 cl +np +np +174067 cl +174069 cl +174072 cl +cl +174076 np +np +174079 cl +pp +pp +cl +pp +cl +pp +174088 cl +pp +174093 cl +cl +np +174097 cl +cl +pp +np +cl +174104 cl +np +np +174108 cl +np +174111 cl +174114 cl +174116 cl +pp +174121 cl +pp +pp +174125 cl +pp +174128 cl +174130 cl +174132 cl +cl +pp +174137 cl +np +cl +174143 cl +174145 cl +174147 cl +cl +np +np +np +174153 cl +cl +np +np +174159 cl +np +cl +174163 cl +np +np +np +cl +174170 np +np +174175 cl +pp +174178 cl +pp +174182 cl +174184 cl +174186 cl +174189 cl +pp +174192 cl +np +174195 cl +174199 cl +np +cl +np +np +174205 cl +174209 cl +pp +cl +np +np +pp +cl +cl +174219 cl +174221 cl +np +np +pp +cl +174227 cl +pp +174231 cl +cl +pp +np +174236 cl +174238 cl +174242 cl +np +np +174246 cl +174249 cl +np +np +np +pp +np +174256 cl +174258 cl +cl +pp +np +174265 cl +np +174268 cl +cl +174272 cl +pp +174276 cl +cl +pp +np +cl +pp +np +174285 cl +174287 cl +pp +pp +np +cl +174295 cl +cl +np +174299 cl +174302 cl +cl +cl +174306 np +174308 np +174312 cl +cl +pp +np +174317 cl +cl +174320 cl +174322 cl +np +np +np +pp +np +np +174331 cl +174333 cl +174335 cl +174337 cl +174339 cl +np +174343 cl +cl +pp +np +np +cl +174351 cl +174353 cl +174356 cl +np +174359 cl +174361 cl +174363 cl +pp +np +np +174368 cl +cl +174372 cl +cl +pp +pp +174380 cl +cl +np +pp +cl +cl +cl +174388 cl +advp +np +np +174396 cl +np +174399 np +np +174402 cl +174404 cl +174407 cl +np +pp +np +np +174413 cl +pp +np +174418 cl +174420 cl +np +np +174425 cl +cl +pp +np +174430 cl +cl +np +np +174435 pp +np +pp +np +np +np +174443 cl +174445 cl +np +np +174450 cl +cl +pp +np +174455 cl +cl +np +np +pp +np +174463 cl +174465 cl +np +np +174470 cl +cl +pp +np +np +np +174477 cl +cl +np +pp +174482 np +174484 cl +np +np +174488 cl +np +174492 cl +174494 cl +np +174498 cl +174500 cl +np +pp +174505 cl +pp +174508 cl +pp +174513 cl +cl +174516 pp +np +np +np +174521 pp +np +174525 cl +pp +174530 cl +cl +174535 cl +cl +174538 cl +cl +cl +174543 cl +cl +cl +174548 cl +cl +174551 cl +np +174554 cl +174557 cl +np +cl +pp +np +np +np +np +174567 cl +pp +np +174574 cl +pp +174577 np +np +174580 np +174582 cl +np +pp +np +174589 cl +cl +np +174594 cl +cl +np +174599 cl +pp +np +np +pp +174606 cl +174608 cl +174611 cl +np +np +174615 cl +pp +174618 cl +174620 cl +cl +np +np +174626 cl +174628 cl +174631 cl +np +174636 cl +cl +np +174640 cl +174643 cl +cl +np +pp +cl +174649 cl +np +np +np +np +174655 cl +cl +cl +174659 cl +cl +np +np +np +cl +advp +pp +174669 cl +cl +cl +np +pp +174677 cl +pp +cl +174681 cl +174683 cl +174686 np +cl +174689 cl +np +174693 cl +np +174696 cl +174698 cl +174700 cl +174702 np +cl +np +174706 cl +cl +cl +cl +cl +cl +174713 np +np +174716 np +174719 cl +cl +174722 np +pp +np +174728 cl +np +cl +174732 cl +174734 cl +174737 cl +174739 cl +cl +174742 cl +np +174745 cl +pp +174749 cl +cl +174753 cl +cl +pp +np +cl +174759 cl +vp +np +174764 cl +cl +np +np +np +cl +advp +174772 cl +np +pp +np +np +np +174780 cl +np +pp +np +np +174787 cl +np +cl +174792 cl +adjp +cl +pp +np +np +np +174800 cl +cl +pp +np +np +np +174807 cl +pp +np +np +np +174814 cl +cl +pp +174818 cl +cl +174821 cl +cl +np +174826 cl +pp +174829 cl +pp +174832 cl +pp +np +174836 cl +np +cl +cl +cl +174842 cl +174844 cl +np +174848 cl +cl +cl +174859 pp +174861 pp +np +174865 cl +pp +np +np +174876 pp +174878 cl +pp +174881 np +174883 cl +np +174888 cl +np +174891 cl +np +174897 cl +pp +np +cl +pp +174903 cl +vp +np +174908 cl +174910 cl +174912 cl +174915 cl +cl +np +cl +174920 cl +cl +174924 cl +pp +174927 cl +np +np +np +174932 np +174934 np +174937 cl +174939 cl +np +174943 cl +174945 cl +174947 cl +174949 cl +174951 cl +pp +np +174956 cl +174960 np +np +cl +174965 cl +cl +174968 cl +174971 cl +cl +cl +174976 cl +cl +174979 cl +174981 cl +pp +np +174985 cl +pp +pp +np +np +174992 cl +np +cl +cl +174997 cl +174999 cl +np +175002 cl +175004 cl +np +175007 cl +175010 cl +cl +175014 cl +np +175018 cl +np +175021 cl +175023 cl +np +175026 cl +175029 cl +175031 cl +175033 pp +np +175036 pp +cl +175039 cl +175042 cl +cl +np +cl +pp +175051 cl +cl +np +cl +175057 cl +175059 cl +cl +np +175063 cl +np +np +175070 cl +pp +175073 cl +175075 cl +cl +pp +np +175080 cl +175082 cl +cl +pp +np +175088 cl +np +np +np +np +cl +175096 cl +175098 cl +np +np +np +pp +175105 cl +pp +175111 cl +pp +175114 cl +175116 np +np +175119 np +cl +175123 np +np +np +pp +np +175130 cl +cl +175133 cl +175135 np +175137 cl +175139 cl +cl +175143 np +175146 cl +175148 cl +175151 cl +adjp +cl +175155 np +175158 cl +cl +np +cl +175164 cl +np +cl +175168 cl +cl +cl +175173 cl +cl +np +np +cl +pp +np +175182 cl +cl +np +cl +cl +175189 cl +np +175193 cl +175196 cl +np +175199 cl +cl +np +np +175206 cl +175208 cl +pp +np +175215 cl +pp +pp +175220 pp +np +np +np +175225 cl +np +np +np +175230 cl +175233 cl +pp +175236 np +np +pp +175240 cl +cl +pp +cl +175245 cl +pp +np +175249 cl +175251 cl +175256 cl +cl +cl +175260 cl +np +np +175264 cl +175268 cl +175271 cl +cl +pp +pp +np +175277 cl +175280 cl +np +175283 cl +cl +cl +np +175289 cl +175291 cl +np +175295 cl +175299 cl +np +pp +np +175305 cl +np +np +175309 cl +pp +175314 cl +np +np +pp +np +175320 cl +cl +pp +np +175326 cl +175329 cl +175332 cl +175335 cl +cl +175338 cl +pp +np +cl +cl +np +np +cl +np +175348 np +np +cl +pp +np +175355 cl +pp +pp +np +175362 cl +np +cl +cl +pp +pp +np +175372 cl +np +pp +cl +175379 cl +cl +pp +cl +175385 cl +pp +175389 cl +cl +pp +175393 cl +175395 cl +np +175399 cl +cl +cl +pp +np +pp +175407 cl +np +np +175412 cl +pp +175417 cl +cl +pp +np +cl +np +175425 cl +175428 cl +pp +np +175432 cl +175434 np +np +np +175438 np +np +175441 cl +np +175444 cl +175446 cl +pp +np +175452 cl +175454 cl +175457 cl +175459 cl +np +np +np +np +np +175466 cl +np +175471 cl +175473 np +175475 np +175478 cl +cl +175482 cl +175484 cl +np +np +pp +np +np +175492 cl +175494 cl +pp +np +175499 cl +cl +cl +np +pp +175506 cl +cl +np +175511 np +175513 cl +175516 cl +cl +np +cl +np +cl +cl +175527 cl +cl +np +np +cl +175533 cl +pp +np +175538 cl +pp +np +np +cl +175544 cl +cl +cl +175548 cl +pp +175552 np +cl +175556 cl +175558 cl +175560 cl +175566 cl +cl +175569 cl +175571 cl +pp +175574 cl +np +175577 np +np +np +pp +np +np +np +175586 cl +pp +175591 cl +pp +np +175595 cl +pp +175598 np +175600 np +175602 np +175604 cl +175606 cl +pp +np +175610 cl +np +np +175614 cl +175617 cl +np +175621 cl +np +175624 cl +175626 cl +cl +pp +np +175633 cl +175635 np +np +pp +175639 cl +pp +cl +175644 cl +pp +cl +175650 cl +cl +pp +cl +175655 cl +pp +175659 cl +cl +pp +175663 cl +np +175666 cl +np +175669 cl +175672 cl +cl +np +cl +175678 cl +np +cl +cl +pp +np +175686 cl +cl +pp +175690 cl +175692 cl +175694 cl +175696 cl +175698 cl +175700 cl +175703 cl +pp +np +np +175708 cl +pp +np +pp +np +np +np +175718 cl +cl +175721 cl +175724 cl +pp +np +175729 cl +175731 cl +175736 cl +cl +175739 cl +175741 np +175744 cl +175746 cl +175748 cl +np +np +175752 cl +pp +cl +175756 cl +np +np +175761 cl +np +np +pp +175766 cl +np +175770 cl +cl +175773 cl +np +175778 cl +cl +175781 cl +pp +np +175785 cl +np +np +np +175792 cl +175794 cl +np +175797 cl +np +175800 cl +np +np +175804 cl +175807 cl +175809 cl +pp +np +cl +pp +175815 cl +pp +np +175822 cl +cl +175825 cl +np +175828 cl +175830 cl +pp +np +175835 cl +cl +175840 cl +pp +np +175844 np +175846 np +175848 cl +175851 cl +cl +175855 cl +175858 cl +175860 cl +pp +175864 cl +pp +np +cl +pp +np +np +np +175874 cl +cl +175877 cl +175879 cl +175881 cl +175884 cl +cl +np +np +175889 cl +cl +175892 cl +175895 cl +175898 cl +cl +175901 np +np +175904 np +175907 cl +cl +175911 cl +np +175914 cl +np +175917 cl +np +np +np +175923 cl +pp +175928 cl +pp +175931 cl +cl +175934 cl +cl +175942 cl +np +175945 cl +175947 cl +175949 cl +np +np +np +175954 cl +np +np +175958 cl +np +175963 cl +np +175966 cl +cl +175971 cl +np +175974 cl +cl +175978 cl +np +175982 cl +np +175985 cl +np +np +np +175991 cl +pp +np +175995 cl +np +np +175999 cl +np +176002 cl +np +176005 cl +pp +176008 cl +np +176011 cl +np +np +np +176019 cl +pp +176023 cl +176025 cl +176027 cl +pp +np +pp +np +176034 cl +pp +176037 np +176039 cl +pp +np +np +pp +np +176046 cl +np +cl +cl +176051 np +np +176054 np +176056 np +176059 cl +np +cl +176063 cl +176066 cl +cl +np +np +cl +cl +cl +cl +cl +cl +np +adjp +176079 cl +np +176082 cl +176084 cl +176087 cl +176089 np +np +np +176093 cl +176095 np +np +176098 pp +np +np +np +176103 pp +np +np +np +176108 pp +np +np +np +176113 pp +np +np +np +176118 cl +cl +np +np +176123 cl +176125 cl +np +176129 cl +np +176132 cl +176134 cl +pp +176139 cl +176141 cl +pp +176144 cl +176147 cl +176149 pp +np +np +176153 pp +np +np +176157 pp +np +np +176162 cl +np +176165 cl +np +np +176172 cl +np +cl +cl +cl +cl +pp +np +np +np +176184 cl +cl +176188 cl +cl +np +cl +pp +np +cl +np +176197 cl +np +np +176201 cl +np +pp +np +np +np +cl +np +np +176211 cl +pp +np +176216 cl +np +np +pp +np +np +176224 cl +np +176227 cl +np +176231 cl +np +np +176236 cl +pp +np +np +cl +pp +176243 np +176246 cl +cl +pp +176250 cl +176252 np +pp +np +176256 np +pp +np +176260 np +pp +np +cl +176267 cl +np +np +np +176272 cl +np +176277 cl +cl +pp +np +cl +np +pp +np +176287 cl +np +176291 cl +cl +np +np +176296 np +cl +176300 cl +cl +np +np +cl +cl +176307 cl +176309 np +np +np +np +176314 cl +pp +np +176320 cl +pp +176323 cl +176325 cl +pp +np +np +176330 np +cl +np +np +np +176338 cl +pp +np +cl +np +np +np +176347 cl +cl +176350 np +176352 np +176355 cl +np +cl +np +np +np +176362 cl +advp +pp +176366 cl +advp +176371 cl +pp +np +np +np +pp +np +cl +pp +176384 cl +176386 cl +176388 cl +np +176391 cl +np +cl +176396 cl +np +cl +176400 cl +176402 cl +176405 cl +pp +np +np +cl +176411 cl +176413 cl +176418 cl +176421 np +cl +176425 cl +cl +176428 cl +np +176434 cl +pp +176437 cl +pp +176440 cl +pp +cl +176444 cl +np +176448 cl +176451 cl +pp +176454 cl +pp +176457 cl +pp +176461 pp +pp +np +176466 cl +cl +pp +np +np +np +176476 cl +cl +176480 cl +cl +176484 cl +pp +np +np +cl +176491 cl +176493 cl +cl +np +np +np +176502 cl +pp +176505 cl +176508 cl +pp +176511 cl +176514 cl +vp +pp +pp +np +np +176522 cl +176525 cl +pp +176532 cl +cl +np +np +np +cl +cl +176540 cl +176542 cl +np +pp +np +pp +np +176550 cl +np +pp +np +176555 cl +cl +pp +np +np +176561 cl +np +pp +np +pp +np +cl +np +np +176572 cl +176575 cl +pp +176579 cl +pp +np +np +176585 cl +176587 cl +176590 cl +np +np +176595 cl +176597 pp +np +176600 cl +np +pp +np +176605 cl +advp +176611 cl +np +cl +np +176617 cl +pp +np +176621 cl +np +176627 cl +176629 cl +np +176632 cl +cl +cl +176638 cl +176642 cl +176645 pp +176647 cl +176649 cl +np +176653 cl +176655 cl +176659 cl +pp +np +np +pp +np +np +np +176668 cl +np +np +np +176673 cl +np +vp +pp +np +176679 cl +176681 np +np +pp +np +176687 cl +cl +np +np +np +pp +pp +176695 np +176700 cl +np +176703 cl +np +np +pp +np +np +176710 pp +np +pp +np +176716 cl +pp +np +np +176724 cl +np +np +176728 cl +np +cl +176732 cl +np +176735 cl +np +176738 cl +cl +176741 cl +pp +176744 cl +cl +176747 cl +advp +np +np +pp +cl +np +176756 cl +176758 np +176760 np +176762 cl +np +np +176768 cl +pp +176771 np +np +176774 np +cl +176777 np +np +pp +176781 np +176783 cl +np +176788 cl +cl +176791 cl +cl +np +176797 cl +np +176800 cl +np +np +176804 cl +np +np +np +np +np +176811 cl +np +176814 cl +176819 cl +176821 cl +cl +np +np +np +176832 cl +cl +cl +176837 cl +cl +cl +176842 cl +176844 np +176846 np +pp +np +176852 cl +176854 np +176856 np +cl +cl +pp +176862 cl +176864 cl +pp +np +cl +np +np +176873 cl +pp +176876 cl +pp +np +np +176881 np +cl +cl +np +np +np +np +176889 cl +cl +np +np +np +176897 cl +vp +pp +cl +pp +np +np +np +np +176908 cl +np +np +176912 cl +pp +np +176916 cl +np +176920 cl +176923 cl +np +cl +176927 cl +176929 cl +np +pp +176936 cl +np +pp +176940 cl +176942 cl +cl +176945 cl +176947 cl +cl +176950 cl +cl +np +np +pp +np +176960 cl +cl +176963 cl +np +pp +np +np +np +cl +pp +np +176974 cl +176977 np +np +np +pp +np +176983 cl +176987 cl +cl +176990 cl +cl +176994 cl +cl +176998 cl +np +np +np +np +177004 cl +np +np +np +177009 cl +cl +cl +177013 cl +np +177018 cl +np +np +np +177023 cl +177025 cl +pp +np +177029 cl +np +cl +np +177035 cl +177037 cl +177039 cl +np +177042 cl +np +cl +np +177047 np +cl +np +pp +np +np +177055 cl +np +np +np +cl +177062 cl +177067 cl +np +177070 cl +pp +np +177075 cl +177077 cl +177079 cl +np +177084 cl +cl +pp +np +177091 cl +177094 cl +np +cl +cl +177099 cl +177101 np +pp +177104 cl +pp +177107 cl +177109 cl +177111 cl +np +pp +177115 cl +177118 cl +177120 cl +177122 np +np +177125 cl +pp +pp +np +177133 cl +np +np +np +177138 cl +pp +177141 cl +177143 np +np +cl +pp +np +np +np +177151 cl +177153 cl +np +np +177159 cl +177161 cl +cl +cl +177165 cl +177167 cl +177169 cl +cl +np +np +177176 cl +cl +cl +177180 cl +pp +177184 cl +cl +177187 np +np +np +np +177192 cl +pp +177195 cl +cl +177198 cl +advp +pp +np +np +np +pp +177206 np +np +177209 cl +pp +np +np +np +177216 cl +cl +pp +np +np +np +177224 cl +np +177228 cl +177230 cl +177232 cl +np +177235 cl +np +177238 cl +pp +177241 cl +pp +np +177246 cl +np +177250 cl +np +177253 cl +177256 cl +np +cl +cl +177261 cl +np +np +177266 cl +177269 cl +177272 cl +cl +cl +advp +177278 cl +np +177283 cl +pp +177286 cl +np +np +177290 cl +np +np +177294 cl +177296 cl +177300 cl +177302 np +177304 np +177306 np +pp +177309 cl +177311 cl +177313 cl +177315 cl +177317 cl +np +np +pp +177322 cl +177324 cl +177328 cl +cl +pp +np +177334 cl +177336 cl +177338 cl +pp +np +177342 cl +cl +177346 np +177348 cl +np +np +pp +177355 cl +cl +177361 cl +177363 cl +cl +177366 cl +np +cl +177371 cl +cl +np +177377 cl +177379 cl +177381 cl +pp +177386 cl +np +177389 cl +np +177393 cl +cl +cl +np +np +177402 cl +cl +cl +177406 cl +vp +np +np +177411 cl +cl +177416 cl +np +177419 cl +177422 cl +np +177425 cl +cl +177429 cl +np +cl +np +np +np +pp +np +np +np +177441 cl +cl +177444 cl +177446 cl +177450 cl +cl +177453 np +np +np +177457 cl +pp +np +pp +177463 pp +177465 np +177467 np +177469 np +177472 cl +177474 cl +cl +cl +cl +177479 cl +cl +177482 cl +177486 cl +cl +cl +177491 cl +177495 cl +np +177498 cl +177502 cl +177504 np +177506 cl +cl +np +np +np +np +177513 cl +np +np +177518 cl +cl +np +177523 cl +pp +cl +pp +177529 cl +177532 cl +pp +pp +cl +pp +np +177539 cl +177543 cl +np +177547 cl +cl +177552 cl +np +cl +pp +177558 cl +177560 cl +cl +np +177566 cl +np +pp +np +177571 cl +np +177574 np +177576 np +177578 np +177582 cl +np +pp +pp +np +pp +np +np +np +177593 cl +vp +pp +np +177598 cl +pp +np +177604 cl +177606 np +177608 np +np +pp +np +pp +177614 cl +177616 cl +177620 cl +pp +177623 cl +np +177627 cl +cl +pp +cl +177632 cl +cl +177636 cl +177638 np +np +np +177642 cl +pp +np +np +177648 cl +np +np +177653 cl +cl +pp +np +np +cl +cl +cl +177664 cl +177666 cl +177669 cl +np +177672 cl +cl +177675 np +np +np +np +177681 cl +np +177684 cl +177686 cl +177688 cl +np +np +np +pp +np +np +177696 cl +pp +np +np +np +177703 cl +np +cl +np +np +177709 cl +np +cl +np +cl +177716 cl +np +cl +177722 cl +177724 cl +177726 cl +np +np +177730 cl +177732 cl +cl +177735 cl +np +177740 cl +np +pp +np +177745 cl +np +np +np +np +177751 cl +cl +cl +np +cl +cl +np +pp +177760 np +np +177764 cl +cl +177769 cl +177771 cl +cl +177775 cl +pp +np +177780 cl +np +cl +cl +177785 cl +177787 cl +pp +177791 cl +177794 cl +pp +177797 cl +np +177800 cl +pp +177803 cl +np +177807 cl +177809 cl +177811 cl +177813 cl +177815 np +np +cl +177820 cl +pp +177824 cl +np +np +177828 cl +np +177831 cl +cl +177835 cl +cl +177840 cl +np +cl +pp +177845 np +177848 np +np +cl +np +177853 cl +177857 cl +np +cl +np +np +np +177865 cl +cl +cl +177870 cl +np +177874 cl +np +cl +cl +cl +177881 cl +np +177884 cl +np +177888 cl +pp +177891 np +cl +177895 cl +vp +177898 cl +pp +np +177902 cl +pp +np +177907 cl +cl +np +cl +177912 cl +177915 cl +np +cl +cl +cl +np +np +np +177925 cl +177927 cl +pp +np +177932 cl +np +np +177936 cl +np +177940 cl +np +cl +177944 cl +cl +np +np +np +177951 cl +cl +177955 cl +np +177958 cl +np +177962 cl +cl +177967 cl +np +cl +cl +np +np +np +177975 cl +np +cl +177979 cl +177983 cl +np +pp +np +177988 cl +177990 cl +np +np +177996 cl +177998 cl +cl +np +178003 cl +cl +cl +178007 np +np +178012 cl +np +np +178016 cl +178018 cl +cl +np +178026 cl +178028 cl +np +178031 cl +np +np +178036 cl +178038 cl +178041 cl +178043 np +178045 np +cl +178048 cl +pp +np +np +178055 cl +np +np +178060 cl +pp +178063 np +178065 cl +vp +np +178071 cl +np +cl +178075 cl +178079 cl +178082 cl +np +np +cl +pp +cl +178091 cl +np +178094 cl +178097 cl +vp +np +np +np +np +178104 np +np +np +178109 cl +pp +np +178113 cl +pp +178116 cl +pp +np +178121 cl +178123 cl +178125 cl +np +np +178129 cl +178135 cl +np +178138 cl +pp +np +cl +pp +np +178145 cl +np +np +cl +pp +pp +np +178153 cl +cl +cl +178158 cl +178160 np +np +np +pp +np +178167 cl +178169 cl +178172 cl +178174 cl +pp +178179 cl +np +cl +pp +np +np +pp +np +178189 cl +np +np +np +np +178199 cl +cl +vp +178205 np +np +178208 np +np +cl +pp +178214 cl +np +178217 cl +cl +cl +178222 cl +178224 cl +178226 cl +cl +cl +178230 cl +178232 cl +178234 cl +cl +178238 cl +np +cl +np +178244 cl +np +np +np +pp +178250 pp +pp +178254 cl +178256 np +178258 cl +pp +np +cl +178263 cl +cl +np +np +np +178270 cl +np +178273 np +cl +pp +cl +pp +178283 np +178286 np +np +178289 np +np +178294 cl +178296 cl +pp +np +178300 cl +178303 np +178305 cl +pp +178310 cl +178313 cl +178315 cl +178317 cl +cl +178322 np +pp +np +cl +178327 np +vp +np +np +np +cl +pp +np +178336 cl +np +np +np +178344 cl +np +178347 cl +178349 cl +cl +np +178353 cl +178356 cl +cl +pp +np +np +np +178365 cl +cl +cl +np +178370 cl +pp +178373 cl +vp +pp +178377 cl +pp +np +np +np +178384 cl +178387 np +np +178391 np +cl +178395 cl +cl +np +178400 np +178403 np +np +178407 cl +cl +178412 cl +adv +np +np +np +pp +np +cl +np +178423 cl +pp +cl +np +pp +np +np +np +178434 cl +cl +178437 cl +np +178440 cl +adjp +178445 cl +cl +pp +np +cl +pp +np +cl +np +178455 cl +178458 cl +cl +178461 cl +178464 np +178466 cl +178469 cl +cl +178473 cl +cl +np +178477 cl +178481 cl +cl +178484 np +np +178487 np +178491 cl +pp +np +cl +178496 cl +178500 cl +cl +pp +np +178505 cl +178510 cl +178512 cl +178515 cl +cl +np +178520 np +cl +pp +np +178525 cl +cl +178528 cl +pp +178531 cl +178533 cl +178535 cl +cl +178539 cl +178541 cl +pp +178545 cl +pp +cl +np +pp +pp +np +cl +pp +178555 cl +cl +np +cl +178562 cl +cl +np +np +178567 cl +178569 np +np +178573 cl +178575 cl +cl +178579 cl +cl +cl +pp +np +np +np +np +np +178590 cl +178593 cl +178595 cl +178597 cl +178599 cl +178602 cl +np +178605 cl +178608 cl +pp +np +np +cl +np +cl +178617 cl +np +cl +advp +178622 cl +pp +178625 cl +178631 cl +178633 np +pp +178636 cl +pp +np +178640 cl +pp +np +np +178645 cl +cl +178648 cl +np +178651 cl +np +pp +np +np +cl +178659 cl +np +178662 cl +np +pp +np +178668 cl +pp +np +np +np +178674 pp +178676 pp +pp +np +np +178682 np +np +np +178689 cl +cl +pp +np +np +cl +pp +178697 cl +178699 cl +pp +178703 np +cl +cl +cl +178708 np +178710 cl +np +178713 cl +pp +np +178718 cl +pp +np +np +178723 np +np +178726 np +np +cl +cl +pp +np +178734 cl +pp +np +np +178739 cl +np +np +178744 cl +pp +np +cl +pp +np +np +np +178754 np +178757 cl +178760 cl +np +178763 cl +vp +pp +np +np +178771 cl +pp +178774 cl +pp +np +np +np +np +pp +np +cl +pp +np +np +np +178788 cl +cl +pp +np +np +np +178796 cl +np +np +np +np +vp +np +np +np +178807 cl +np +cl +pp +np +np +np +np +178818 cl +cl +178821 cl +pp +178825 cl +pp +np +178829 cl +178833 cl +np +np +178837 cl +178839 np +np +178842 cl +np +np +178847 cl +178852 cl +pp +np +np +178859 cl +pp +178862 cl +178865 advp +178867 cl +np +pp +pp +np +np +178874 cl +np +np +np +pp +178880 np +np +178884 cl +pp +pp +np +178892 cl +np +pp +178896 cl +pp +np +cl +np +cl +178904 cl +pp +np +cl +pp +178912 cl +178914 cl +np +np +pp +np +np +178922 cl +cl +np +178926 cl +178929 cl +pp +np +178933 cl +178935 cl +pp +178938 cl +178941 cl +178943 cl +178945 cl +cl +pp +cl +np +pp +cl +178953 np +np +cl +pp +np +np +178962 cl +vp +np +np +178967 cl +pp +178970 cl +pp +np +178976 cl +cl +cl +178980 cl +178982 cl +pp +np +178988 cl +vp +178991 cl +178996 cl +178998 cl +np +np +np +np +cl +pp +np +np +179009 cl +pp +np +np +179014 np +np +179018 cl +np +cl +179022 cl +pp +179025 cl +cl +np +pp +179032 cl +pp +np +np +np +179038 np +pp +np +pp +179043 np +np +cl +pp +np +cl +np +179051 cl +pp +np +179055 cl +np +np +np +179061 cl +cl +pp +179065 cl +cl +cl +np +pp +179073 cl +pp +np +179077 cl +cl +np +np +179083 cl +np +179086 cl +179089 cl +pp +np +179094 cl +179096 cl +pp +179099 cl +179101 cl +np +np +179106 cl +179108 cl +np +179111 cl +179113 np +np +np +179117 np +np +179120 cl +pp +np +np +pp +np +179127 cl +np +np +179132 cl +pp +np +179136 cl +179138 cl +179141 cl +cl +np +179145 cl +np +pp +179149 cl +np +179153 cl +np +np +np +cl +np +179161 cl +179163 cl +179166 np +np +np +pp +np +179172 cl +np +179176 cl +179178 cl +pp +np +np +179184 cl +179187 cl +cl +np +np +cl +pp +np +np +179197 cl +pp +np +179203 cl +cl +pp +np +np +pp +np +pp +pp +np +179214 cl +pp +np +np +179219 cl +np +179225 cl +179227 cl +np +np +np +np +179233 cl +np +pp +np +np +179239 cl +np +np +179243 cl +np +179246 cl +179248 cl +cl +pp +179252 cl +cl +np +np +np +np +179260 cl +179262 cl +np +np +np +np +pp +179270 cl +179272 cl +np +np +np +np +pp +np +np +cl +pp +np +pp +np +np +179288 cl +179290 cl +179292 cl +179294 cl +pp +179298 cl +179301 cl +np +np +np +179306 cl +np +np +pp +179311 np +np +np +179315 cl +pp +np +np +np +np +179323 cl +pp +np +np +np +179331 cl +np +179334 cl +np +np +179338 cl +np +np +pp +179345 cl +179348 cl +pp +np +cl +np +np +179357 cl +pp +179360 cl +179362 cl +cl +179365 cl +cl +179369 cl +179371 np +cl +179374 np +179376 np +np +pp +np +179381 cl +pp +np +np +179388 cl +pp +np +np +179393 cl +pp +np +np +179400 cl +np +np +np +179405 cl +179407 cl +179411 cl +179413 np +179415 np +np +179418 cl +np +np +pp +179423 cl +179427 cl +pp +np +np +np +179433 cl +cl +np +179437 cl +pp +np +np +np +np +179445 cl +cl +np +np +179450 cl +179452 cl +179455 cl +pp +179458 cl +pp +np +np +179463 cl +np +np +179468 cl +np +np +179473 cl +cl +179477 cl +cl +cl +cl +np +179484 cl +179489 cl +np +np +179493 cl +np +np +179497 cl +cl +np +179503 cl +pp +np +179507 cl +179509 cl +pp +np +np +np +np +np +np +np +179519 cl +np +179522 cl +pp +np +np +cl +179528 cl +np +np +179532 cl +np +np +pp +179539 cl +179541 np +np +np +179545 cl +cl +cl +179549 np +np +np +179556 cl +179558 cl +np +np +179562 cl +np +pp +np +179567 np +179569 cl +pp +np +np +np +np +pp +np +cl +179579 pp +np +179582 pp +np +np +179586 cl +179588 cl +pp +np +np +179593 cl +179595 np +np +179598 cl +pp +179601 np +np +179604 cl +cl +pp +np +cl +pp +179612 pp +np +np +np +179620 np +np +179623 cl +pp +cl +np +179628 cl +np +np +np +pp +np +np +pp +179637 np +np +np +cl +pp +pp +cl +179645 cl +pp +179649 np +179651 cl +np +np +pp +np +179660 cl +np +179663 cl +179665 cl +pp +np +pp +np +np +np +pp +np +179677 cl +pp +np +np +cl +pp +179684 cl +np +np +179688 cl +np +cl +np +179694 cl +cl +cl +pp +np +np +179702 cl +np +179706 pp +np +pp +np +179711 pp +np +pp +179715 np +cl +pp +179719 cl +pp +np +179724 cl +pp +179729 cl +cl +179734 cl +pp +179737 cl +179739 cl +np +np +179743 cl +179745 cl +np +np +np +np +179753 cl +179755 cl +pp +179758 cl +pp +np +179763 cl +pp +179766 np +np +179769 cl +179771 cl +np +np +pp +np +np +179781 cl +np +179784 cl +np +179787 cl +np +179791 cl +np +179794 cl +179796 cl +179798 np +cl +np +np +179803 cl +179805 cl +179807 pp +np +179811 cl +cl +179814 cl +179816 cl +pp +179820 cl +pp +np +np +np +179826 cl +np +179829 cl +179831 cl +pp +179834 cl +pp +pp +np +179842 cl +179844 cl +pp +pp +np +np +cl +np +pp +179854 cl +pp +179857 cl +179860 np +np +179863 cl +cl +np +179869 cl +cl +179872 cl +179876 np +179878 np +179880 cl +np +pp +np +179886 cl +cl +pp +179890 np +179892 cl +pp +np +np +179898 cl +np +179901 cl +pp +179904 cl +pp +np +pp +179910 cl +np +np +np +cl +pp +np +np +179920 cl +np +cl +179925 np +pp +np +cl +cl +179932 cl +pp +179938 cl +np +179941 cl +179943 cl +np +np +cl +179948 cl +pp +np +pp +179953 cl +pp +np +179960 cl +np +np +np +np +pp +np +np +cl +pp +179972 cl +np +179975 cl +pp +np +179979 cl +np +np +cl +np +179987 cl +pp +179990 cl +pp +np +np +cl +179996 np +179998 np +np +180002 cl +cl +cl +pp +180008 cl +np +np +180013 cl +np +np +180017 cl +np +pp +180022 cl +vp +pp +np +np +np +cl +180032 cl +np +np +180037 cl +pp +np +pp +np +180045 cl +pp +180048 cl +np +180051 np +180053 cl +pp +np +180057 cl +np +pp +np +pp +np +180065 cl +np +180068 cl +180071 np +np +pp +np +np +pp +180078 cl +np +np +180083 np +np +cl +pp +np +np +np +180091 np +pp +np +180095 np +180097 np +180100 cl +vp +180103 np +np +180106 np +pp +180109 cl +pp +180114 cl +180116 cl +pp +180119 np +np +cl +180123 cl +180125 pp +np +180129 np +pp +np +180133 pp +np +cl +180137 cl +np +np +np +np +180144 cl +pp +np +180149 cl +180151 cl +np +180155 np +pp +np +180159 cl +cl +pp +np +cl +pp +np +pp +np +np +180170 cl +pp +np +nump +np +cl +180183 cl +np +np +cl +np +180189 cl +pp +np +180193 cl +np +180199 cl +np +np +pp +np +np +cl +180207 pp +np +pp +180211 np +180215 cl +np +180218 cl +cl +180221 cl +np +pp +180226 cl +np +np +pp +pp +np +np +np +180238 cl +np +180242 cl +pp +np +np +np +180248 cl +np +180251 cl +pp +180254 cl +180256 np +pp +180259 cl +np +np +180265 cl +cl +cl +pp +np +np +180272 cl +pp +180275 np +180277 np +180279 cl +cl +pp +cl +180286 cl +pp +np +cl +180291 cl +pp +np +pp +np +np +180298 cl +180300 cl +180303 cl +np +180306 cl +pp +np +180310 np +180312 np +180316 cl +cl +180319 cl +pp +np +np +180324 cl +180326 cl +180328 np +np +cl +180333 cl +pp +180336 cl +180338 cl +cl +180341 cl +cl +pp +np +np +np +180349 cl +np +180352 cl +180356 cl +pp +180359 cl +pp +180362 cl +vp +180366 cl +np +np +np +np +pp +np +np +180376 cl +pp +np +180382 np +pp +180388 cl +pp +np +np +np +np +180396 cl +180398 np +180400 cl +np +180403 cl +180405 np +np +np +np +180412 cl +np +pp +180418 np +pp +180421 np +np +pp +np +180427 cl +pp +np +np +np +np +cl +np +np +pp +np +180439 cl +pp +np +np +180444 np +cl +np +cl +pp +np +180451 cl +np +np +cl +np +np +180460 cl +np +180463 cl +np +180469 cl +np +pp +180473 cl +np +pp +np +180479 cl +np +np +np +np +180486 cl +np +np +cl +cl +pp +cl +180494 np +cl +pp +np +np +cl +180502 cl +np +adjp +np +180508 cl +cl +pp +cl +np +180514 cl +180516 cl +np +cl +pp +np +np +np +180525 cl +np +np +pp +np +np +np +180535 cl +np +np +cl +np +180541 cl +pp +180545 cl +np +cl +180549 cl +180552 cl +cl +180555 cl +180557 cl +np +180560 cl +180562 cl +180564 cl +180568 cl +np +cl +180572 cl +pp +cl +180578 cl +pp +cl +np +pp +180584 cl +180587 cl +np +cl +cl +cl +np +180595 cl +180598 cl +180600 cl +180602 cl +np +np +180609 cl +np +180612 cl +pp +np +np +pp +np +cl +np +cl +cl +np +180625 cl +180627 cl +180629 np +adjp +cl +cl +np +np +np +np +cl +pp +180640 np +180643 cl +np +np +pp +np +np +180650 cl +np +np +180654 cl +np +pp +np +np +180660 cl +np +np +180666 cl +cl +180670 np +180673 cl +180675 np +np +cl +pp +180680 pp +180682 np +np +np +np +180687 pp +180689 cl +180691 np +np +pp +cl +np +pp +180699 cl +pp +180703 cl +np +np +180707 cl +np +180710 cl +180712 cl +np +180715 cl +np +np +np +np +pp +pp +180723 cl +pp +180726 cl +180728 np +np +np +cl +pp +180735 cl +np +vp +np +np +180742 cl +cl +np +180746 np +180748 np +180750 np +180752 np +180754 np +180756 np +180758 np +180760 np +180762 np +180764 np +180766 np +180768 np +180770 np +180772 np +180774 np +180776 np +180778 np +180780 np +180782 np +180784 np +180786 np +180788 np +180790 np +180792 np +180794 np +180796 np +180798 np +180800 np +180802 np +180804 np +180806 np +180808 np +180810 np +180812 np +180814 np +180816 np +180818 np +180820 np +180822 np +180824 np +180826 np +180828 np +180830 np +180832 np +180834 np +180836 np +180838 np +180840 np +180842 np +180844 np +180846 np +180848 np +180850 np +180852 np +180854 np +180856 np +180858 np +180860 np +180862 np +180864 np +180866 np +180868 np +180870 np +180872 np +180874 np +180876 np +180878 np +180880 np +180882 np +180884 np +180886 np +180888 np +180890 np +180892 np +180894 np +180896 np +180900 cl +adjp +np +pp +np +180906 cl +pp +np +pp +np +cl +np +pp +np +180918 cl +pp +np +np +180924 cl +cl +180928 cl +np +180932 cl +np +np +cl +np +np +180939 cl +180942 cl +pp +np +cl +180947 cl +pp +np +np +180953 cl +cl +np +np +np +np +pp +np +180963 cl +np +180966 cl +180968 np +np +np +180972 np +np +180976 cl +180978 cl +180980 cl +180983 cl +180985 cl +pp +180989 cl +cl +np +cl +180994 cl +180996 np +np +180999 cl +np +181005 cl +pp +181008 cl +pp +np +np +np +181014 cl +181017 cl +np +np +cl +181023 cl +181026 cl +np +np +pp +181031 cl +181035 cl +pp +cl +pp +np +np +181043 cl +cl +np +181047 cl +cl +181050 np +np +181054 cl +cl +np +np +pp +pp +181062 cl +np +pp +np +np +np +pp +np +181072 cl +pp +np +np +pp +181079 cl +pp +np +np +cl +pp +181088 cl +pp +181091 cl +vp +181095 cl +pp +181098 cl +pp +np +np +np +pp +np +181106 cl +cl +181111 cl +np +181114 np +181116 cl +cl +np +np +181121 cl +vp +cl +cl +np +pp +cl +pp +cl +181132 cl +181134 cl +cl +cl +pp +cl +np +np +181143 cl +cl +np +cl +np +181150 cl +np +np +np +pp +np +vp +181159 cl +cl +pp +181163 cl +np +np +pp +np +np +181173 cl +181175 cl +pp +181178 np +np +np +181182 cl +pp +np +np +181187 cl +181189 cl +np +181193 cl +pp +cl +np +np +cl +cl +181201 cl +cl +pp +np +advp +pp +np +np +181211 cl +cl +cl +181215 cl +np +pp +np +np +181222 cl +pp +181226 cl +np +pp +np +np +pp +np +181234 cl +np +pp +181238 np +181240 np +cl +np +pp +np +np +181247 cl +pp +np +181251 cl +pp +np +np +pp +181260 cl +np +pp +np +pp +181266 np +181268 cl +np +181271 cl +181273 np +181277 cl +np +pp +np +cl +181284 cl +cl +pp +np +181289 cl +pp +np +np +181294 cl +pp +np +np +181299 cl +181302 cl +cl +pp +np +181308 cl +pp +181311 np +np +181315 cl +vp +pp +np +181321 cl +pp +np +np +181326 cl +pp +np +np +181333 cl +pp +np +np +cl +np +np +181341 cl +np +181351 cl +cl +cl +181355 cl +cl +np +np +np +181362 cl +np +cl +181366 cl +181368 cl +pp +181372 cl +np +cl +pp +np +pp +cl +181382 cl +pp +181385 cl +pp +cl +cl +np +np +181393 cl +pp +181397 np +np +181400 cl +181403 cl +np +pp +pp +np +np +np +181412 cl +cl +pp +np +pp +np +np +181422 cl +np +np +vp +np +181428 cl +pp +181433 cl +cl +pp +np +181438 cl +181441 cl +cl +181445 cl +cl +np +np +cl +cl +np +pp +181455 cl +cl +np +np +np +181462 cl +np +pp +181466 cl +181468 cl +181470 cl +np +np +np +181476 cl +cl +cl +181480 cl +cl +np +181486 cl +cl +cl +pp +np +181495 cl +np +181498 cl +pp +181501 cl +181503 cl +pp +181507 cl +pp +181510 cl +cl +np +np +np +np +np +np +181519 cl +pp +181523 cl +vp +pp +np +np +np +181532 cl +pp +181536 cl +np +181539 cl +np +np +np +181545 cl +vp +pp +np +np +181551 cl +cl +np +pp +np +181558 cl +np +cl +pp +np +181566 cl +cl +pp +181570 np +np +cl +cl +pp +np +181577 cl +cl +pp +np +np +181586 cl +cl +cl +pp +np +181592 cl +pp +np +181596 cl +np +np +pp +181602 cl +cl +181606 cl +cl +pp +np +181611 cl +pp +np +np +np +181619 cl +cl +np +np +181624 cl +np +np +181629 cl +np +np +pp +np +np +181636 cl +cl +181641 cl +181643 cl +np +np +181647 cl +181650 cl +cl +181653 np +np +cl +181657 pp +181659 cl +np +181665 cl +181668 np +np +pp +pp +np +181674 np +np +cl +181678 cl +np +181684 np +cl +np +181689 cl +pp +np +np +181694 cl +cl +pp +np +vp +181701 cl +cl +np +pp +np +cl +181711 cl +pp +181714 cl +pp +np +np +181719 cl +cl +np +adjp +181724 cl +cl +np +cl +pp +cl +181733 cl +cl +cl +181738 cl +cl +np +cl +cl +cl +181746 cl +np +pp +181752 cl +cl +181756 cl +cl +np +181760 cl +pp +np +np +181765 cl +pp +np +181771 cl +np +np +pp +181776 cl +np +181779 cl +181781 cl +pp +np +np +181788 cl +vp +pp +np +181793 cl +181797 cl +pp +np +np +181803 cl +vp +181806 cl +vp +181811 cl +vp +pp +np +np +np +181822 cl +np +pp +181826 cl +181830 cl +pp +181833 cl +vp +181836 cl +181838 cl +181840 cl +pp +181844 cl +cl +cl +pp +np +cl +pp +np +pp +np +pp +np +pp +np +pp +np +181862 cl +cl +np +np +cl +181868 np +np +181872 cl +cl +181875 np +181877 np +cl +cl +181881 cl +181883 cl +cl +181886 cl +np +np +181891 cl +np +cl +np +np +cl +pp +181899 cl +pp +np +np +181904 cl +181906 cl +cl +np +np +181911 cl +181913 cl +181915 cl +181918 cl +cl +cl +np +np +np +pp +np +cl +181928 cl +181930 cl +cl +181933 cl +181935 cl +cl +np +np +pp +np +np +181944 cl +cl +pp +cl +cl +pp +pp +np +np +cl +np +181958 cl +181961 cl +np +181964 cl +cl +181967 cl +181971 cl +pp +181975 cl +cl +np +cl +pp +np +181982 cl +cl +181986 cl +cl +cl +181991 cl +np +pp +np +np +181998 cl +np +np +182004 cl +vp +pp +182009 cl +182011 np +182013 np +np +pp +np +np +cl +cl +pp +pp +np +182029 cl +cl +np +pp +182034 cl +np +182037 cl +cl +182040 cl +182043 cl +cl +cl +pp +182049 cl +pp +182054 cl +np +np +182058 cl +cl +np +np +np +182064 cl +np +182070 cl +np +pp +182074 cl +cl +cl +np +np +np +pp +cl +np +pp +182087 cl +182089 cl +182091 cl +pp +np +pp +np +np +182099 cl +np +pp +182103 cl +cl +pp +np +pp +np +182113 cl +182115 cl +np +182118 cl +np +182121 np +np +pp +np +182127 cl +np +pp +np +182135 cl +cl +np +np +np +np +182143 cl +182145 cl +np +182149 cl +np +pp +np +182156 cl +cl +182159 cl +cl +np +182165 cl +cl +pp +pp +182170 cl +182173 np +np +np +cl +np +182180 cl +np +np +cl +cl +np +182188 cl +cl +pp +np +cl +182194 cl +cl +cl +182200 cl +pp +182204 cl +pp +np +np +np +182210 cl +cl +np +np +np +182216 cl +np +pp +cl +cl +cl +cl +np +np +182227 cl +cl +np +np +np +np +np +182237 cl +182239 cl +pp +np +pp +np +182245 cl +182248 cl +182250 cl +np +np +np +np +182259 cl +182261 np +182263 np +182265 cl +pp +np +182269 cl +cl +182274 cl +np +np +182278 cl +182280 np +182282 cl +np +182285 cl +182287 cl +pp +np +182292 cl +cl +182296 cl +np +pp +cl +182301 cl +np +182305 cl +182307 cl +182309 cl +182311 cl +182314 cl +cl +np +cl +np +np +182323 cl +182325 cl +np +np +182331 cl +182333 cl +pp +182336 cl +np +182341 cl +cl +pp +np +np +pp +np +cl +182350 cl +vp +pp +np +np +np +182360 cl +182362 cl +np +np +182366 cl +pp +182370 cl +np +182374 cl +182377 np +np +182386 np +182390 cl +182392 np +182396 cl +182400 cl +cl +pp +pp +np +182406 cl +182408 np +np +np +182413 np +np +np +np +pp +182419 np +np +182423 np +np +182427 cl +182429 cl +182431 cl +pp +np +np +182437 cl +182439 cl +pp +np +182445 cl +np +np +cl +182451 cl +pp +182454 cl +182457 cl +cl +np +np +pp +np +np +182465 cl +np +182468 cl +np +np +np +182473 cl +182475 cl +182477 cl +182479 cl +182481 cl +182483 cl +182486 cl +182489 cl +np +182494 cl +182496 cl +182498 cl +np +np +182502 cl +pp +np +np +np +182510 cl +pp +np +np +182515 cl +182517 cl +np +np +pp +np +182524 cl +pp +np +np +np +np +182532 cl +182534 np +182536 cl +np +np +182543 cl +182545 cl +182548 cl +182551 cl +182554 cl +182556 cl +182561 cl +np +np +182565 cl +pp +np +np +np +np +182573 cl +182576 cl +182578 cl +np +np +cl +182583 cl +cl +182586 cl +cl +pp +182590 cl +182593 cl +182595 cl +pp +np +np +np +182601 cl +pp +182604 cl +np +np +np +np +182611 cl +np +cl +182615 cl +pp +182618 cl +np +182622 cl +182624 cl +182626 cl +np +182631 cl +182633 cl +182635 cl +np +182638 cl +np +np +182642 cl +182646 cl +182648 cl +182650 cl +np +cl +np +np +np +182661 cl +pp +cl +cl +cl +np +182668 cl +np +182671 cl +np +182677 cl +np +np +182681 cl +182683 cl +cl +182688 cl +np +np +182692 cl +np +182695 cl +pp +np +182701 cl +182703 cl +np +np +182709 cl +182711 cl +advp +182716 cl +182718 cl +advp +182722 cl +182724 cl +182727 cl +182729 cl +182731 cl +np +np +182735 cl +cl +cl +pp +np +np +182743 cl +cl +np +182748 cl +np +182752 cl +cl +182756 cl +pp +182760 cl +pp +np +182764 cl +np +cl +pp +np +np +182773 cl +182775 np +np +pp +np +np +np +np +182783 cl +182785 np +np +pp +np +np +182791 cl +cl +np +np +cl +182797 cl +182799 np +np +pp +np +np +cl +np +np +pp +np +np +182813 cl +np +pp +np +np +182819 cl +cl +182822 np +np +pp +np +np +np +np +182832 cl +vp +np +np +182837 cl +np +np +182842 cl +np +pp +np +np +182850 cl +pp +182853 cl +pp +182858 cl +np +np +pp +np +np +np +np +np +182868 cl +np +pp +np +np +182874 cl +pp +np +np +np +182882 cl +182887 cl +cl +182892 np +182895 cl +pp +182898 cl +np +np +182902 cl +cl +182905 cl +182907 np +cl +182910 cl +182912 cl +182914 cl +pp +np +182921 cl +cl +np +np +np +182927 cl +cl +pp +182931 cl +182934 cl +182937 cl +182939 cl +np +cl +pp +np +pp +182946 cl +np +182949 cl +182951 cl +np +np +np +np +182959 cl +np +np +np +pp +np +np +np +cl +pp +182971 cl +np +np +cl +cl +cl +182979 cl +cl +pp +np +pp +np +np +cl +182988 cl +cl +np +np +182994 cl +cl +pp +np +cl +183001 cl +cl +183005 cl +np +np +183009 cl +np +183013 cl +np +pp +183019 cl +advp +pp +np +cl +np +cl +183028 cl +183030 cl +183032 cl +pp +np +np +183038 cl +cl +pp +183044 cl +183046 cl +np +np +183052 cl +np +np +183056 cl +pp +cl +pp +183063 cl +cl +183066 cl +183070 cl +cl +183073 cl +183077 cl +np +np +cl +183082 cl +183086 cl +cl +np +183090 cl +cl +np +np +cl +cl +cl +pp +np +np +183102 cl +cl +pp +np +183107 cl +cl +np +183113 cl +pp +np +183117 cl +pp +np +cl +183122 cl +183124 np +np +183127 np +183132 cl +np +np +np +183137 cl +183139 cl +np +cl +np +np +np +np +183147 cl +183149 cl +np +np +np +pp +183157 cl +cl +np +pp +183162 cl +cl +183168 cl +cl +np +183172 cl +183174 cl +183176 cl +183179 cl +183184 cl +np +183187 cl +cl +183190 cl +np +np +183196 cl +183198 cl +np +cl +183203 cl +np +pp +183208 cl +np +np +np +183214 cl +np +np +np +pp +pp +183221 np +np +183224 np +np +183228 cl +np +np +pp +np +183235 cl +cl +np +np +np +np +np +pp +np +cl +183246 cl +183248 cl +183250 cl +183253 cl +cl +pp +np +cl +183259 np +pp +cl +183263 cl +183265 cl +183267 cl +183270 cl +pp +np +np +pp +183278 np +183280 cl +np +cl +183285 cl +cl +cl +cl +cl +183295 cl +cl +cl +183300 cl +cl +cl +183305 cl +183307 cl +pp +183311 cl +cl +np +np +cl +pp +np +pp +183320 cl +cl +pp +np +cl +np +cl +pp +183330 cl +cl +cl +np +cl +pp +np +183338 cl +np +183341 pp +np +183344 cl +pp +np +183349 cl +cl +cl +183357 cl +adjp +cl +cl +cl +pp +np +np +pp +np +cl +np +np +pp +183372 cl +cl +pp +np +183378 cl +np +np +pp +np +np +np +183387 cl +183389 np +np +183392 np +cl +np +cl +np +np +183400 cl +183402 np +183404 np +np +np +np +pp +cl +pp +183414 cl +np +np +np +np +183420 cl +183422 cl +183427 cl +pp +183430 cl +cl +cl +183434 cl +183436 cl +183438 cl +183440 cl +183444 cl +183446 np +183448 cl +183450 cl +183452 cl +cl +183456 cl +np +np +np +183461 cl +183463 cl +183465 cl +183467 cl +cl +183473 np +183478 cl +np +pp +np +np +np +183486 cl +np +np +183490 cl +pp +183494 cl +cl +pp +np +np +np +183503 cl +cl +183506 cl +pp +np +183511 cl +cl +183514 cl +pp +np +np +np +183520 cl +np +183523 cl +pp +np +np +cl +cl +np +np +np +183533 cl +np +np +np +np +183539 cl +np +np +183543 cl +np +183547 cl +cl +183550 np +183552 cl +pp +cl +183558 cl +183560 cl +cl +183564 np +183566 cl +183568 cl +183571 cl +cl +np +pp +cl +183577 cl +183581 cl +cl +183585 cl +183588 cl +np +np +183592 cl +np +np +183596 cl +np +183599 cl +cl +cl +183603 cl +np +183606 cl +cl +cl +183610 cl +np +183614 cl +cl +183618 cl +cl +pp +np +np +cl +np +np +183628 cl +pp +np +np +183633 cl +pp +183637 cl +np +np +np +183642 cl +np +np +183647 cl +183649 cl +pp +cl +cl +np +np +183657 cl +np +np +183661 cl +np +np +183665 cl +cl +pp +cl +np +np +np +np +183674 cl +183677 cl +cl +183681 cl +cl +np +np +183687 cl +183689 cl +cl +pp +cl +cl +np +183697 cl +pp +np +cl +np +np +cl +pp +183708 cl +pp +np +183713 cl +pp +183717 cl +183720 np +np +np +183724 cl +pp +183727 np +183731 np +cl +vp +pp +183736 np +183742 cl +cl +pp +np +183748 np +183750 np +183754 np +cl +pp +183758 cl +183763 cl +np +183766 cl +np +pp +pp +cl +pp +cl +183774 cl +183776 cl +np +np +183782 cl +pp +183785 cl +pp +np +183789 cl +183791 cl +np +np +np +183798 cl +pp +np +183802 cl +cl +pp +183806 cl +183810 cl +pp +np +np +183815 cl +cl +np +183821 cl +pp +np +np +np +183827 cl +cl +np +183831 cl +cl +cl +183835 cl +cl +183839 cl +np +np +cl +np +np +183847 cl +183849 cl +cl +np +np +np +np +np +183857 cl +np +pp +183862 cl +cl +183865 cl +cl +183869 cl +np +183872 cl +np +np +np +np +183880 cl +np +pp +np +183885 cl +183888 cl +np +183891 cl +np +pp +np +np +183897 cl +cl +183902 cl +np +pp +np +cl +183908 cl +pp +np +183912 cl +cl +cl +pp +183917 cl +pp +np +183923 cl +183926 cl +pp +np +183930 cl +183932 cl +pp +183937 np +np +cl +183941 cl +183944 cl +183946 np +pp +np +np +183951 cl +cl +pp +np +183957 np +183959 cl +pp +183965 cl +cl +183968 cl +pp +183971 cl +pp +183974 cl +183976 cl +np +183981 cl +183983 cl +183985 cl +183988 cl +advp +183991 cl +pp +183995 cl +cl +184002 cl +cl +184005 cl +184007 cl +np +cl +cl +pp +184015 cl +pp +184018 np +184020 np +np +184023 cl +cl +pp +np +184029 cl +cl +184032 np +np +184035 np +np +cl +cl +184041 cl +cl +pp +cl +184047 np +184049 np +184051 cl +np +np +np +184060 cl +pp +np +np +184067 cl +pp +184070 cl +np +np +184074 cl +pp +cl +pp +np +np +np +184083 cl +184087 cl +cl +184092 cl +np +pp +np +184098 cl +184100 cl +184103 cl +cl +cl +184110 cl +184113 cl +cl +184116 np +184118 np +np +np +184124 cl +184126 cl +184129 cl +cl +np +np +184135 cl +cl +cl +pp +184141 cl +184144 cl +184147 np +184149 np +184151 cl +184154 cl +pp +np +184158 np +np +cl +pp +np +184165 cl +cl +pp +np +np +np +np +pp +np +cl +184178 cl +np +184182 cl +pp +184185 cl +pp +np +184191 cl +cl +np +cl +184196 cl +np +184199 cl +184204 np +184206 np +np +cl +cl +184212 cl +np +np +np +cl +pp +np +184222 cl +np +184225 cl +184228 cl +184230 cl +cl +np +pp +np +pp +np +184239 cl +np +cl +184245 cl +cl +184248 cl +np +pp +184253 cl +184255 cl +cl +pp +np +184261 cl +np +np +np +cl +pp +np +184270 cl +184272 cl +cl +pp +184277 cl +184281 cl +np +cl +pp +np +pp +np +184290 cl +np +pp +np +pp +np +184297 cl +184301 cl +184303 cl +cl +184306 cl +184308 cl +184310 pp +np +184313 pp +np +184319 cl +cl +184322 cl +184324 cl +pp +np +184328 cl +cl +184331 np +cl +pp +np +184336 cl +184338 cl +pp +np +np +np +184344 cl +184347 cl +184349 cl +cl +184352 cl +184355 cl +np +np +np +np +np +np +cl +pp +184365 cl +np +184369 cl +cl +pp +184374 cl +np +184377 cl +pp +np +cl +pp +184384 cl +cl +184387 cl +pp +np +np +184392 cl +cl +np +184397 cl +cl +pp +np +np +cl +np +184407 cl +pp +184410 cl +np +np +184414 cl +vp +184418 cl +cl +184421 cl +184423 cl +np +np +184427 cl +cl +pp +np +np +cl +pp +np +np +184438 cl +np +np +np +np +184444 cl +184447 cl +pp +184450 cl +np +184455 cl +184457 np +cl +pp +np +pp +np +cl +cl +pp +cl +np +np +np +np +184472 cl +np +np +np +np +184479 cl +np +cl +184483 cl +184486 cl +cl +np +184491 cl +np +184494 cl +184497 cl +np +184500 cl +184502 cl +cl +pp +184508 cl +np +cl +cl +cl +cl +184516 cl +cl +cl +pp +np +pp +np +np +184525 cl +184528 cl +184531 np +np +cl +pp +184536 cl +cl +pp +np +cl +184543 cl +np +np +cl +np +184550 cl +np +cl +184554 cl +184556 cl +184558 cl +184561 cl +cl +pp +np +cl +pp +184568 cl +184573 np +np +np +184577 np +184580 cl +184585 cl +184587 cl +184589 cl +cl +184593 cl +cl +184596 cl +184599 cl +cl +np +np +cl +cl +184606 np +184611 cl +np +np +184615 cl +184617 cl +cl +cl +184622 cl +np +np +184627 cl +cl +184630 cl +184634 cl +cl +np +184640 pp +np +np +184644 cl +184646 cl +184648 cl +np +np +np +184653 cl +184656 cl +pp +184660 cl +pp +np +184665 cl +184667 cl +184669 cl +184671 cl +184673 cl +pp +np +184680 cl +pp +np +184684 cl +184686 cl +184690 cl +cl +cl +pp +np +np +np +pp +np +np +pp +np +pp +184705 cl +cl +pp +np +cl +184715 cl +184717 np +np +184720 cl +184722 cl +pp +184726 cl +pp +184729 cl +pp +184733 pp +184735 cl +184739 cl +184741 np +np +184745 cl +184747 cl +184749 cl +184751 cl +pp +184755 cl +cl +184759 cl +cl +np +cl +184765 cl +cl +pp +pp +np +cl +184773 cl +np +cl +184779 cl +cl +pp +np +np +np +184786 cl +184788 cl +np +184792 cl +np +cl +184797 cl +cl +np +184801 cl +np +184805 cl +cl +pp +np +np +184813 cl +184815 cl +pp +np +184820 cl +pp +cl +cl +184826 cl +184829 cl +184831 cl +184833 np +184835 np +184838 cl +cl +pp +np +np +np +184846 cl +adjp +184850 cl +pp +np +np +cl +np +pp +pp +184861 cl +184863 cl +184867 cl +cl +184870 np +np +184873 np +np +cl +pp +np +184879 cl +184881 cl +np +cl +np +184889 cl +184891 cl +184893 cl +184896 cl +np +np +184902 cl +pp +184905 cl +vp +pp +cl +np +184911 cl +cl +cl +cl +np +184918 cl +cl +184921 cl +184923 np +184925 cl +184929 cl +np +np +np +184935 cl +184937 cl +cl +184941 cl +cl +cl +np +np +np +184949 cl +cl +cl +cl +184954 cl +184956 cl +np +np +np +184961 cl +pp +np +184968 cl +184970 cl +np +np +184975 cl +pp +184979 cl +cl +pp +184983 cl +184985 cl +np +np +pp +184990 cl +184993 cl +184995 cl +cl +np +np +185001 cl +185003 cl +np +np +pp +185009 cl +185011 cl +np +np +185015 cl +185022 cl +185025 np +np +185028 cl +np +np +np +185033 cl +pp +np +np +185039 np +185041 np +np +185045 cl +cl +185048 np +185050 cl +cl +cl +advp +185055 cl +np +np +np +185062 cl +pp +np +np +np +np +185069 cl +cl +185074 pp +np +cl +185080 cl +pp +185083 cl +cl +np +np +np +np +185090 cl +np +np +cl +185096 cl +np +cl +185101 cl +cl +pp +185105 np +np +cl +cl +pp +185112 cl +185114 np +185116 np +pp +vp +185121 cl +cl +185124 np +np +185128 np +np +185131 cl +185135 cl +pp +185138 cl +pp +cl +np +pp +np +185146 cl +cl +185150 cl +np +185153 cl +185155 cl +185157 cl +cl +cl +185162 cl +cl +cl +185166 cl +185169 cl +pp +185172 cl +pp +np +185177 cl +pp +np +cl +cl +185183 np +np +185186 cl +cl +185190 cl +pp +185193 cl +np +185198 cl +185200 cl +pp +np +np +np +cl +185209 cl +np +np +185213 cl +pp +np +cl +np +185220 cl +np +pp +np +cl +185227 cl +cl +pp +np +np +185233 cl +185235 cl +cl +185238 cl +185240 cl +pp +185243 cl +pp +cl +185249 cl +np +np +185253 cl +185255 cl +185258 cl +cl +np +185264 np +np +185268 cl +cl +pp +pp +185273 cl +cl +np +np +185280 cl +185282 cl +np +185285 cl +185289 cl +np +np +np +np +185295 cl +np +185298 cl +np +np +185303 cl +pp +np +np +np +185311 cl +pp +np +cl +cl +pp +np +np +cl +pp +np +np +np +np +185326 cl +np +np +np +cl +pp +np +185337 cl +np +np +185341 cl +vp +pp +185345 cl +185347 cl +cl +pp +np +np +185354 cl +pp +185359 cl +np +185364 cl +np +cl +np +np +np +np +cl +pp +185374 cl +185377 cl +185379 cl +np +np +pp +np +np +185386 cl +185388 cl +185390 cl +cl +185394 cl +pp +np +185399 cl +cl +np +185405 cl +cl +pp +np +np +185411 cl +185413 cl +pp +185417 cl +pp +185420 cl +185422 cl +cl +pp +pp +185429 cl +pp +185432 cl +np +np +np +np +185439 cl +np +185442 cl +pp +185445 cl +pp +np +185450 cl +cl +pp +np +185455 cl +185458 cl +185460 cl +np +np +vp +pp +185467 cl +cl +185470 np +185475 cl +cl +185478 cl +pp +np +185482 cl +185485 cl +cl +185489 cl +pp +np +185495 cl +pp +np +cl +pp +cl +185502 cl +185505 cl +np +185509 cl +np +185512 cl +np +np +np +185517 cl +np +np +np +cl +np +185525 cl +pp +cl +185530 cl +cl +cl +cl +np +np +185538 cl +185540 cl +cl +np +np +np +185546 cl +cl +np +np +np +185553 cl +np +185556 cl +185559 cl +cl +np +pp +np +np +185567 cl +pp +np +cl +185572 cl +np +pp +185576 cl +pp +np +np +np +np +185585 cl +pp +np +np +185590 cl +pp +pp +np +pp +185596 np +185599 cl +cl +185603 cl +pp +185607 cl +np +185610 cl +np +185614 cl +np +np +np +185619 cl +pp +np +np +185625 cl +cl +185628 cl +pp +np +185634 cl +cl +cl +185638 cl +pp +np +185645 cl +pp +np +cl +cl +np +np +185654 cl +185656 cl +np +pp +np +np +185664 cl +pp +185669 cl +pp +np +np +cl +185676 np +pp +185679 cl +np +np +np +185684 cl +185686 pp +pp +185693 cl +pp +np +185697 cl +185699 cl +185701 cl +185703 cl +np +np +pp +185708 cl +cl +pp +np +np +np +185719 cl +pp +np +185723 cl +cl +cl +pp +np +np +185730 cl +np +185733 np +185735 cl +pp +np +np +pp +np +185742 cl +185744 cl +np +np +np +185749 cl +185752 cl +pp +np +np +185757 cl +np +np +185762 cl +185764 cl +185769 cl +pp +185774 np +185776 cl +pp +cl +cl +pp +185786 cl +185789 pp +np +185792 cl +185797 cl +pp +185800 cl +pp +np +185805 cl +185807 cl +185809 cl +185811 cl +185814 cl +185816 cl +185818 cl +185821 cl +np +pp +cl +cl +185827 np +np +pp +np +np +185834 cl +cl +cl +np +185839 cl +pp +np +185843 cl +cl +np +185847 cl +185849 pp +185853 pp +np +np +np +np +185859 cl +advp +185865 cl +pp +185868 cl +np +185872 cl +185874 cl +np +np +pp +np +185881 cl +pp +np +np +np +np +np +185889 cl +185893 cl +185896 np +185898 np +185900 np +185903 cl +pp +185908 cl +185910 cl +185912 np +185914 cl +pp +185917 cl +pp +np +np +185922 cl +185925 cl +np +185928 cl +np +185932 cl +np +185935 cl +185937 np +185940 cl +cl +np +185945 cl +cl +pp +np +pp +185951 cl +185953 np +185955 cl +cl +185958 cl +185962 cl +np +185966 cl +cl +185969 cl +185972 cl +cl +185975 cl +185978 cl +np +cl +cl +cl +185984 cl +np +185988 cl +pp +cl +pp +np +cl +185996 cl +cl +185999 cl +186001 np +np +186004 pp +np +np +np +186009 pp +np +np +np +186014 pp +np +np +np +186019 pp +np +np +np +186025 np +np +186028 cl +186031 cl +cl +186034 cl +186036 cl +186039 cl +cl +cl +pp +np +186045 cl +np +186048 cl +cl +np +186052 cl +np +186055 pp +pp +186058 cl +cl +186061 cl +186063 cl +cl +186068 cl +pp +np +pp +np +np +186075 cl +cl +186079 cl +np +186082 cl +pp +np +186086 cl +186090 cl +np +cl +pp +186095 cl +cl +186099 cl +cl +np +np +cl +186108 cl +cl +pp +np +np +pp +186115 cl +186119 cl +pp +np +cl +np +np +186126 cl +186128 cl +186130 cl +186133 cl +pp +186136 cl +186138 cl +cl +np +np +np +np +186145 cl +pp +np +186150 cl +cl +186153 cl +np +pp +186158 cl +np +186161 cl +186163 cl +186166 cl +pp +186169 cl +pp +np +186174 cl +np +np +cl +pp +np +186182 cl +186184 np +cl +cl +cl +pp +np +np +np +np +np +186196 cl +np +pp +np +186202 cl +cl +186208 cl +np +np +cl +np +186214 cl +186216 cl +186219 cl +cl +np +186228 cl +186231 pp +186234 cl +np +186237 cl +186239 cl +np +np +cl +186246 cl +pp +186249 cl +vp +pp +np +186254 cl +cl +np +np +np +pp +186262 cl +186264 cl +np +np +np +186270 cl +186273 cl +cl +186276 cl +186278 np +np +cl +np +np +186284 cl +np +np +np +np +np +pp +186294 cl +np +np +186298 cl +np +np +cl +186304 cl +pp +186308 cl +pp +186311 cl +np +pp +186315 cl +pp +186318 cl +186321 np +186324 cl +np +pp +pp +186329 cl +cl +186332 cl +cl +186335 cl +186337 cl +np +186340 cl +np +np +pp +pp +np +cl +cl +cl +186350 cl +186353 cl +cl +pp +186357 cl +np +186360 cl +pp +np +np +cl +cl +186367 cl +186371 cl +186373 cl +186375 cl +186377 cl +186379 cl +186381 cl +186384 cl +np +186387 cl +186389 cl +186391 cl +186393 cl +186395 cl +186399 cl +186401 np +pp +np +np +186406 cl +pp +186409 cl +cl +186415 cl +cl +cl +np +np +np +cl +advp +186424 np +np +pp +np +186429 cl +186433 cl +vp +186436 cl +186440 cl +186442 cl +np +cl +np +186448 cl +np +186452 cl +np +pp +cl +pp +186458 np +np +np +np +186464 cl +cl +np +pp +pp +186471 cl +cl +np +np +186476 cl +np +np +cl +pp +186482 cl +pp +186489 cl +np +np +pp +cl +np +np +186497 cl +cl +pp +np +186503 cl +186505 cl +pp +np +np +np +pp +186512 cl +pp +np +186519 cl +pp +np +np +cl +pp +np +np +np +186529 cl +186531 cl +np +cl +np +np +pp +np +186539 cl +186544 cl +adjp +cl +186548 cl +cl +np +np +pp +186554 cl +np +np +186559 cl +186561 cl +pp +pp +186565 cl +186567 cl +pp +186572 cl +np +np +pp +np +186578 cl +pp +np +cl +186583 cl +cl +cl +pp +np +186589 np +cl +186593 cl +cl +186596 cl +186598 cl +186602 cl +186604 cl +np +np +np +adjp +186610 cl +cl +186613 cl +np +np +np +np +np +186621 cl +cl +pp +186625 cl +cl +np +np +pp +np +cl +186634 np +186636 cl +186639 cl +186642 cl +186644 cl +np +186647 cl +np +np +np +186652 cl +186656 cl +np +cl +cl +186662 cl +np +np +np +186667 cl +186669 cl +186671 cl +np +np +186677 cl +np +cl +np +np +np +np +np +np +186690 cl +np +pp +np +pp +np +np +np +np +186700 cl +186702 cl +pp +np +np +np +cl +np +np +186711 cl +adjp +186717 cl +186719 pp +np +pp +np +np +186725 cl +186727 cl +pp +np +np +186732 cl +adjp +186737 cl +cl +pp +186741 cl +pp +np +186746 cl +pp +np +186750 cl +186752 cl +np +186755 cl +np +np +np +np +np +186762 cl +186764 cl +np +np +np +np +np +np +186773 cl +186775 cl +np +np +np +186782 cl +186784 cl +186786 np +np +pp +186793 cl +np +np +np +cl +np +np +adjp +186803 cl +np +np +186808 cl +pp +186811 cl +186813 cl +pp +186817 cl +cl +186821 cl +np +cl +186825 cl +pp +np +186830 cl +np +pp +186834 cl +186836 np +np +np +186840 np +186842 np +186844 cl +np +np +186852 cl +186854 cl +np +np +np +186861 cl +186863 cl +186865 cl +186868 cl +186870 np +186873 cl +186875 np +186877 np +186879 np +186881 cl +186883 np +186885 np +np +np +186890 cl +186892 cl +cl +186896 cl +186898 np +186900 cl +186902 np +np +pp +np +186907 np +np +pp +np +186913 cl +186916 cl +pp +np +np +np +186922 cl +186924 np +186926 cl +186929 cl +cl +np +np +cl +186935 cl +np +186939 cl +cl +np +186943 np +186946 cl +np +np +186950 cl +np +np +np +np +186956 cl +186959 cl +np +np +np +186964 cl +np +np +186971 cl +186973 cl +np +np +np +np +186981 cl +186983 cl +186985 cl +pp +np +np +np +np +186992 cl +pp +186998 cl +pp +187003 cl +187005 np +np +np +np +187010 cl +pp +np +pp +np +np +187017 pp +np +pp +np +187023 cl +pp +187026 np +187028 np +187032 cl +pp +np +np +187037 cl +187039 np +187041 cl +np +np +np +187046 cl +187048 cl +187050 cl +187053 cl +cl +187056 np +187058 np +187060 cl +187062 cl +pp +cl +cl +pp +np +np +187070 cl +cl +pp +np +np +np +187077 cl +cl +pp +np +np +cl +pp +np +np +187087 cl +np +187091 cl +187094 cl +cl +187098 cl +cl +pp +187102 cl +cl +pp +np +pp +np +187109 cl +cl +pp +np +pp +np +pp +np +187119 cl +187121 np +np +cl +pp +187127 cl +np +187130 cl +pp +cl +np +187136 cl +cl +187139 cl +187141 cl +pp +187144 cl +cl +pp +np +187151 cl +187154 cl +np +np +187159 cl +np +pp +vp +pp +np +187167 cl +np +np +np +np +np +np +187175 cl +187177 cl +np +187181 cl +cl +187184 np +187186 cl +pp +pp +np +np +np +np +np +pp +pp +np +np +np +187201 cl +187203 cl +pp +np +pp +np +np +np +187212 cl +187214 np +cl +pp +np +np +np +187222 cl +187224 cl +pp +np +np +187232 cl +pp +187235 np +187237 np +187239 np +cl +187242 cl +187244 cl +187246 cl +187249 cl +np +np +pp +np +np +cl +cl +187259 cl +np +pp +np +cl +187265 np +np +cl +pp +np +187272 cl +cl +187275 np +187278 pp +187281 cl +pp +187285 cl +187287 cl +pp +np +187291 cl +pp +187294 cl +np +np +pp +187299 cl +187302 cl +pp +cl +cl +np +np +np +np +187312 cl +pp +cl +187316 cl +187318 cl +cl +np +np +187324 cl +187326 cl +187330 cl +np +np +187334 cl +187336 cl +np +np +187340 np +187342 np +187344 cl +np +np +187349 np +np +cl +pp +np +187355 cl +cl +cl +cl +187361 cl +np +187365 cl +np +np +np +np +pp +187372 cl +cl +187375 cl +187378 cl +187380 cl +pp +187384 cl +pp +np +np +cl +pp +187391 cl +np +cl +187395 cl +np +cl +187401 cl +np +np +187405 cl +np +np +187410 cl +np +187415 cl +187417 cl +cl +187422 cl +np +187425 cl +advp +np +187430 cl +np +pp +cl +cl +pp +np +np +187440 cl +187442 cl +pp +np +187446 cl +np +cl +187454 cl +187456 cl +pp +np +np +np +187462 cl +np +187468 cl +np +pp +np +187473 cl +187475 cl +pp +np +cl +advp +187483 cl +np +187486 cl +187488 cl +187490 cl +187493 cl +np +np +np +np +187500 cl +np +np +187504 cl +187508 cl +np +np +187512 cl +187516 np +np +187519 cl +np +np +cl +np +187526 cl +np +187529 cl +187531 cl +187533 cl +187535 np +cl +np +np +pp +187541 np +187543 cl +187545 cl +187549 cl +np +np +cl +np +np +np +187560 cl +np +np +cl +187565 cl +np +cl +187569 cl +np +cl +np +np +cl +pp +np +187578 cl +187580 cl +187582 cl +187584 cl +187586 np +np +cl +cl +cl +np +187593 cl +cl +187597 cl +187599 cl +187601 cl +cl +187607 cl +187609 pp +np +187612 pp +np +np +187616 cl +cl +187620 cl +187624 cl +np +cl +np +np +187630 cl +cl +np +np +187636 cl +np +187639 cl +cl +np +np +np +np +187647 cl +np +187651 cl +pp +np +np +187656 cl +pp +187660 cl +np +187663 cl +np +187666 np +np +np +cl +np +pp +np +np +187675 cl +pp +np +187679 cl +187681 np +np +cl +cl +cl +np +np +187689 cl +187691 cl +pp +np +np +187696 cl +187702 cl +np +np +pp +np +np +cl +np +np +cl +187713 cl +187715 cl +187717 np +187719 np +cl +187726 cl +np +np +np +np +187732 pp +187734 cl +187736 pp +187738 cl +187741 cl +187743 cl +np +np +pp +np +187750 cl +187752 np +np +187756 cl +np +np +np +np +187762 cl +187765 pp +np +np +187770 cl +187773 cl +187775 cl +adjp +187780 cl +187782 np +cl +pp +187786 cl +cl +187790 cl +cl +pp +np +187795 cl +187797 cl +187801 cl +cl +187804 cl +pp +cl +187808 cl +187810 cl +cl +pp +np +187815 cl +187817 cl +187819 conj +cl +187824 cl +vp +pp +np +np +pp +np +187832 cl +pp +187835 cl +pp +187839 cl +pp +187842 cl +pp +187845 cl +pp +187848 cl +pp +np +187852 cl +pp +np +np +187857 cl +pp +np +187862 cl +np +np +187868 cl +cl +pp +cl +187873 cl +187875 cl +187881 cl +cl +187884 cl +187886 cl +187890 cl +cl +np +np +187895 np +187897 np +187899 cl +np +np +187904 cl +pp +pp +np +187911 cl +187913 cl +pp +np +np +pp +pp +np +cl +pp +187923 cl +pp +np +187927 cl +np +np +187931 cl +np +pp +187935 cl +187937 cl +advp +187940 cl +np +np +np +187946 cl +pp +np +np +cl +pp +np +187954 cl +np +np +pp +np +np +187962 cl +cl +cl +187966 cl +np +np +pp +np +np +187973 cl +187976 cl +cl +187979 cl +187981 cl +187987 np +np +187991 cl +pp +np +np +pp +np +187998 cl +188000 cl +pp +np +188004 np +188006 cl +188011 cl +188013 cl +188016 cl +np +np +188021 cl +cl +pp +np +np +188028 cl +cl +pp +188032 cl +188035 cl +pp +np +188039 cl +188041 cl +np +pp +cl +cl +pp +np +np +188050 cl +188052 cl +188054 cl +pp +np +np +188060 cl +cl +cl +188064 np +np +np +pp +188069 cl +pp +188072 cl +188077 cl +pp +188080 cl +188082 cl +188084 cl +188087 cl +vp +pp +np +np +pp +np +188096 cl +188098 np +cl +np +np +188105 cl +cl +188108 cl +cl +pp +np +188115 cl +cl +np +188119 cl +cl +188122 np +np +188127 cl +np +188131 cl +188133 cl +np +188137 cl +cl +np +cl +188142 cl +np +np +np +188148 cl +np +cl +pp +cl +188155 cl +pp +cl +188159 cl +np +np +np +188166 cl +np +188169 cl +188173 cl +np +np +188177 np +np +188180 np +pp +np +188184 cl +cl +188188 cl +cl +cl +188192 np +cl +np +cl +np +np +188200 pp +np +np +np +np +np +188209 cl +cl +np +188213 cl +188215 cl +np +np +pp +np +188221 np +188223 cl +pp +188227 cl +188229 cl +np +np +np +188234 cl +188236 cl +188238 np +188240 cl +cl +pp +np +188245 cl +188247 cl +pp +188250 cl +np +np +np +pp +np +np +188259 cl +cl +np +np +np +188265 cl +188267 cl +cl +pp +np +np +pp +cl +188276 cl +pp +188281 cl +188283 cl +pp +188287 cl +188290 cl +188292 cl +188295 cl +pp +188298 cl +cl +pp +np +np +188304 cl +188306 cl +cl +188309 cl +188312 cl +pp +188317 cl +np +188320 cl +np +188323 cl +188325 cl +188327 cl +np +cl +cl +188333 cl +cl +cl +cl +188338 cl +cl +188342 cl +pp +188345 cl +188347 cl +pp +np +np +188353 cl +cl +188356 cl +cl +cl +pp +188361 np +np +188364 cl +188366 np +188368 np +np +np +188372 cl +188374 cl +188379 np +np +pp +np +np +np +188386 cl +188390 cl +188392 pp +188396 pp +188400 cl +pp +np +np +np +188407 cl +cl +188410 cl +188412 cl +188414 cl +188416 cl +pp +np +np +np +cl +188423 cl +188427 cl +cl +188431 cl +cl +cl +np +np +cl +cl +188439 cl +188441 cl +188445 cl +np +188449 cl +cl +188455 cl +188457 cl +cl +pp +188468 cl +np +188471 cl +188473 cl +pp +188476 cl +cl +np +np +cl +np +np +np +pp +np +188487 cl +188489 cl +np +np +188494 cl +188496 cl +advp +188500 cl +188502 cl +cl +cl +188506 cl +pp +np +188512 cl +pp +188515 cl +pp +np +np +np +np +np +cl +188524 cl +vp +188528 cl +np +np +pp +188534 cl +cl +np +pp +np +188541 cl +188543 cl +cl +np +188547 cl +188550 cl +188554 cl +cl +188557 cl +188560 cl +pp +188563 cl +np +np +188568 pp +188571 cl +pp +np +np +188577 cl +cl +pp +188582 cl +pp +188585 cl +cl +cl +np +cl +pp +188594 cl +pp +pp +cl +pp +np +188602 cl +adjp +vp +pp +188607 cl +cl +188610 cl +188613 cl +188615 cl +pp +cl +np +np +188625 cl +cl +cl +pp +np +np +188635 cl +188637 cl +cl +cl +188641 cl +pp +np +188645 cl +188649 cl +np +188652 cl +188654 cl +188656 cl +188659 cl +np +188662 cl +188666 cl +188669 cl +188671 np +np +188674 np +np +188677 np +np +188680 np +188682 cl +np +188685 cl +188690 cl +cl +188696 cl +188698 cl +cl +188701 cl +pp +np +np +np +188708 cl +np +188711 cl +cl +cl +cl +pp +np +np +np +188721 cl +188724 cl +np +np +188728 cl +188730 cl +np +np +np +np +np +cl +188738 cl +188740 cl +188742 cl +188745 cl +pp +cl +188749 cl +np +188753 cl +188755 cl +cl +cl +cl +cl +cl +188763 cl +188766 cl +np +np +188770 cl +cl +cl +cl +cl +188777 cl +188779 cl +188781 cl +pp +cl +188786 cl +cl +np +np +np +188792 cl +cl +np +np +np +188798 cl +pp +np +np +188804 np +188806 cl +np +188814 cl +np +188818 cl +cl +188821 cl +188824 cl +np +pp +np +188829 cl +pp +np +188835 cl +cl +188838 cl +np +np +188843 cl +188845 cl +np +188848 np +np +188851 cl +np +np +188857 cl +np +188860 cl +cl +pp +188866 cl +pp +188869 cl +188872 np +np +188875 np +188877 np +188879 np +188881 np +188883 np +188885 np +np +np +np +cl +cl +np +188893 cl +188895 cl +np +np +188899 cl +pp +cl +np +188907 cl +np +pp +cl +cl +cl +np +188915 cl +pp +188920 cl +188922 cl +cl +cl +np +188927 cl +cl +cl +188932 cl +np +np +cl +188937 cl +cl +188942 cl +np +cl +cl +np +pp +cl +188950 cl +cl +pp +np +188955 cl +pp +np +pp +188963 cl +188965 cl +cl +cl +np +pp +188972 cl +188974 np +pp +cl +np +np +np +cl +np +188984 cl +np +188988 cl +188990 cl +np +np +pp +188995 cl +188998 pp +189000 pp +189002 cl +189004 cl +189006 cl +cl +189010 cl +vp +np +189014 np +189016 np +cl +189020 cl +189023 np +189025 np +cl +189029 cl +189031 cl +189034 cl +pp +np +np +cl +189041 np +np +np +pp +189046 cl +np +189049 cl +np +pp +189053 cl +np +189056 pp +np +189059 cl +pp +189062 cl +189064 cl +189068 cl +cl +pp +np +np +cl +189075 cl +cl +pp +np +189080 np +189082 np +cl +189085 cl +189087 cl +189089 np +np +189092 cl +189094 cl +189097 cl +pp +np +pp +np +np +cl +189105 cl +pp +np +189110 cl +np +189116 np +np +cl +np +189121 cl +np +189125 cl +189127 cl +np +189130 cl +pp +cl +189135 cl +cl +np +189140 cl +189142 cl +189144 cl +np +189147 cl +189150 cl +cl +cl +pp +np +np +np +pp +np +np +cl +189163 cl +cl +np +np +189169 cl +np +np +np +cl +189175 np +np +cl +np +np +189182 cl +np +189187 cl +pp +np +adjp +cl +np +np +pp +np +189197 cl +np +np +cl +189205 cl +cl +np +pp +np +np +189212 cl +cl +189217 cl +cl +np +np +np +np +np +189225 cl +pp +np +np +cl +189233 cl +cl +np +np +pp +np +189240 cl +np +189243 cl +189246 cl +cl +pp +189250 cl +np +np +np +np +189256 cl +189259 cl +cl +pp +np +np +189265 cl +189269 cl +189271 pp +np +189274 pp +cl +cl +np +189279 cl +189281 cl +np +np +np +189287 cl +cl +pp +np +np +189296 cl +cl +np +np +189301 cl +189303 cl +cl +pp +np +np +189309 cl +189312 cl +np +189316 cl +189318 pp +np +189321 pp +cl +cl +np +189327 cl +np +pp +np +np +189335 cl +np +np +189339 cl +189342 cl +pp +np +np +189347 cl +pp +np +189353 cl +np +np +np +cl +189359 cl +cl +189364 cl +np +np +np +189369 cl +189371 cl +vp +189374 cl +189377 cl +cl +189381 cl +np +np +np +np +pp +189392 cl +cl +np +cl +189399 cl +cl +np +np +189404 cl +189407 cl +189410 cl +np +np +189414 cl +np +np +np +np +np +189421 cl +cl +189426 cl +189428 cl +cl +189432 cl +np +np +cl +189438 cl +cl +np +cl +189443 cl +np +189446 cl +np +189450 cl +189452 cl +pp +np +np +189458 cl +189460 cl +189462 np +np +np +189466 cl +np +np +pp +np +np +189474 cl +189477 cl +pp +189480 cl +np +np +189485 cl +189487 cl +189489 cl +189493 cl +np +np +np +189498 cl +189501 cl +189503 cl +189506 cl +pp +pp +np +cl +cl +np +cl +189515 cl +189517 cl +np +189520 cl +189523 cl +cl +cl +pp +189528 cl +np +np +np +np +189534 cl +cl +189538 cl +pp +np +189542 cl +189544 cl +np +np +np +pp +189551 cl +cl +cl +cl +189556 cl +cl +189559 cl +189561 cl +pp +np +pp +np +np +189569 cl +cl +np +np +np +np +np +np +np +cl +np +np +189583 cl +cl +np +np +189589 cl +189591 cl +np +np +189595 cl +cl +189598 cl +189600 cl +189603 cl +cl +np +np +189608 cl +189610 cl +np +np +189614 cl +189618 cl +np +np +np +np +189624 cl +189626 cl +np +np +np +np +pp +np +np +np +pp +189637 np +np +189641 cl +189643 cl +pp +np +np +np +189649 cl +189651 cl +pp +np +np +189657 cl +np +adjp +pp +pp +pp +189664 cl +np +adjp +pp +pp +pp +189674 cl +pp +np +np +cl +np +189684 cl +pp +np +cl +np +189691 cl +np +cl +np +189699 cl +np +189702 cl +np +189706 cl +189708 cl +np +189711 cl +189713 cl +189715 cl +189719 cl +np +np +cl +189724 cl +189727 cl +189730 cl +189732 cl +pp +np +189736 cl +np +np +np +189741 cl +np +adjp +pp +pp +np +189748 cl +189750 np +189752 np +pp +189756 cl +pp +np +np +np +189762 cl +pp +189767 cl +cl +189770 np +189772 np +189774 cl +np +np +np +189780 cl +np +189784 cl +np +np +189788 cl +189790 cl +189792 cl +cl +pp +189798 cl +np +189801 cl +189804 cl +pp +189808 cl +np +np +cl +pp +np +np +189816 cl +189818 cl +cl +pp +189822 cl +pp +np +np +np +189829 cl +np +np +cl +np +np +189837 cl +189839 cl +np +189842 cl +pp +np +pp +np +np +189851 cl +np +np +189855 cl +189859 cl +pp +np +cl +np +np +cl +pp +pp +189869 cl +np +pp +np +np +189876 cl +cl +189881 cl +189883 cl +189886 cl +np +np +np +np +189892 cl +np +np +189896 cl +pp +np +np +189902 cl +189907 cl +np +np +pp +np +np +189914 cl +np +189919 cl +189921 cl +189924 cl +pp +np +pp +189930 np +189933 cl +189935 cl +cl +pp +189939 cl +pp +189943 cl +189948 cl +189951 cl +pp +np +np +np +np +189958 cl +np +189961 cl +189963 cl +np +pp +np +np +np +np +189972 cl +189974 cl +189977 np +cl +189981 cl +189986 cl +189988 cl +pp +pp +189993 cl +189996 cl +189999 np +cl +190002 cl +pp +190006 cl +pp +np +np +190011 cl +190013 cl +np +190016 cl +cl +pp +190021 cl +190024 cl +np +pp +np +np +190030 cl +pp +np +190035 cl +np +np +np +190040 cl +190045 cl +np +np +cl +190052 cl +cl +190059 cl +np +pp +190063 cl +pp +cl +cl +cl +190070 cl +np +np +cl +190076 cl +np +190080 cl +np +pp +np +190086 cl +np +np +190090 cl +190092 cl +pp +np +190097 cl +190101 cl +190103 np +np +pp +cl +np +190109 cl +190111 cl +cl +cl +cl +pp +np +cl +190120 cl +190123 cl +cl +190126 cl +cl +190130 cl +190132 cl +190134 cl +pp +190140 cl +np +190143 cl +190145 cl +190147 cl +np +190150 cl +np +190153 cl +190155 cl +np +cl +cl +cl +190163 cl +pp +190166 cl +pp +190169 cl +pp +np +190178 cl +pp +np +cl +np +190184 np +cl +190187 cl +cl +190193 cl +190196 cl +cl +cl +cl +np +190204 cl +pp +190207 cl +cl +190212 cl +np +pp +cl +190217 cl +cl +pp +np +np +190223 cl +pp +pp +np +np +cl +190231 cl +190234 cl +cl +np +190240 cl +np +190243 cl +np +cl +cl +cl +np +190250 cl +np +np +190255 cl +190257 cl +cl +cl +np +np +190265 cl +cl +pp +np +cl +np +np +np +190274 cl +190277 cl +np +np +np +pp +190283 cl +cl +cl +190287 cl +190289 cl +np +np +np +pp +190296 cl +pp +np +190300 cl +190302 cl +cl +np +np +np +np +np +np +190311 cl +190315 cl +190317 cl +cl +cl +cl +190322 cl +190324 cl +190327 cl +190329 cl +np +cl +190333 pp +np +pp +np +pp +np +pp +np +np +np +pp +np +np +190348 cl +190350 cl +190352 cl +pp +np +np +190358 cl +190360 cl +pp +np +np +pp +pp +np +np +np +np +np +190373 cl +190375 cl +cl +cl +cl +pp +cl +np +pp +np +190386 cl +np +190389 cl +190392 cl +pp +np +np +190398 cl +cl +cl +cl +cl +cl +190406 cl +cl +np +pp +cl +190413 pp +190415 cl +190417 cl +pp +np +cl +np +np +np +np +190427 cl +pp +np +np +190432 cl +pp +np +190436 cl +np +np +pp +np +cl +190443 cl +np +pp +pp +np +190449 cl +np +np +190454 cl +190456 cl +cl +np +np +190461 cl +190463 cl +190465 cl +190467 cl +np +np +pp +np +190473 cl +np +190476 cl +np +190479 cl +vp +pp +np +190484 cl +np +190487 cl +np +190491 cl +cl +cl +190497 cl +190499 cl +np +cl +np +np +190506 cl +pp +190509 cl +190511 cl +190513 cl +cl +cl +np +pp +np +190520 cl +np +190523 cl +190527 cl +pp +np +np +190532 cl +pp +cl +cl +pp +np +np +190542 cl +pp +190545 cl +pp +pp +190551 cl +np +np +190555 cl +190557 cl +pp +190560 cl +np +np +190564 cl +pp +cl +190569 cl +np +cl +cl +np +np +np +190581 cl +np +np +np +190586 np +np +190589 cl +190593 cl +pp +190596 cl +190598 cl +np +np +pp +190605 cl +np +np +np +190610 cl +np +pp +np +190616 cl +pp +pp +np +190622 cl +pp +190625 cl +190627 cl +np +np +np +190632 cl +np +pp +np +cl +190638 cl +np +190641 cl +np +190644 cl +np +cl +pp +190650 np +190652 cl +190655 cl +np +np +np +190662 cl +np +np +np +190668 cl +np +cl +np +cl +190676 cl +np +cl +cl +np +pp +np +190684 cl +np +np +cl +cl +190690 np +190692 np +190694 cl +190696 cl +cl +pp +np +np +pp +190704 cl +np +190707 cl +190709 cl +190711 cl +190714 cl +np +np +190718 cl +190721 cl +cl +np +190726 cl +np +cl +190731 cl +cl +np +pp +190736 cl +190738 cl +np +np +np +np +190744 cl +cl +cl +190748 cl +cl +np +np +np +cl +advp +pp +190758 cl +np +cl +cl +190763 np +cl +np +190768 cl +np +190771 cl +190773 cl +190775 cl +190777 np +cl +np +190781 cl +cl +cl +cl +cl +190787 np +np +190790 np +190793 cl +cl +np +pp +190799 cl +cl +np +cl +190806 cl +np +cl +190810 cl +190812 cl +pp +np +190817 cl +cl +190822 cl +cl +190825 cl +190828 cl +cl +np +190832 cl +advp +190835 cl +np +pp +np +np +np +190843 cl +cl +pp +np +190848 cl +pp +np +np +np +190855 cl +190857 cl +190859 cl +cl +190863 cl +cl +np +np +pp +pp +np +190872 cl +np +cl +cl +np +190879 cl +cl +cl +190883 cl +190885 cl +190891 pp +np +np +np +190896 cl +pp +np +np +190901 cl +pp +190904 np +190906 cl +np +190910 cl +cl +np +pp +190915 cl +pp +190918 cl +np +190921 cl +pp +np +np +np +np +190931 cl +np +190934 cl +190936 cl +190938 cl +190940 cl +cl +190943 cl +np +np +np +190950 cl +np +190953 cl +np +np +pp +190958 cl +190960 cl +190964 cl +pp +190967 cl +pp +cl +np +pp +np +cl +190976 cl +cl +cl +cl +190982 cl +190984 cl +190986 np +190989 cl +cl +cl +190994 np +190997 cl +190999 cl +191001 cl +191004 cl +adjp +cl +191008 np +191011 cl +cl +np +cl +pp +191019 cl +cl +cl +cl +191025 cl +191028 cl +191031 cl +np +191034 cl +cl +np +np +191041 cl +191043 cl +cl +np +191048 cl +np +np +cl +np +191055 cl +cl +np +191060 cl +cl +np +cl +191065 cl +191067 cl +191072 cl +cl +np +cl +191077 cl +pp +np +191081 cl +np +191086 cl +pp +np +pp +191091 cl +191093 cl +cl +191099 cl +pp +np +cl +cl +np +pp +191108 cl +cl +191111 cl +cl +pp +np +np +191119 cl +cl +191122 cl +cl +191126 cl +cl +cl +191130 cl +pp +np +cl +191136 cl +cl +pp +np +191142 cl +np +np +np +191147 cl +np +191152 cl +cl +191156 cl +pp +np +191160 cl +np +np +191164 cl +np +np +191169 cl +np +np +np +cl +191177 cl +191181 cl +cl +cl +pp +191187 cl +pp +191190 cl +191192 cl +np +np +np +cl +191199 cl +cl +np +np +pp +np +191206 cl +191208 cl +191212 cl +cl +np +np +np +191218 cl +pp +cl +pp +cl +191226 cl +np +np +191230 cl +pp +cl +cl +cl +pp +191239 cl +pp +191242 cl +cl +np +191246 cl +cl +191249 np +np +cl +np +191254 cl +cl +191258 cl +np +cl +cl +191263 np +np +np +191268 cl +191270 cl +191273 np +191275 cl +pp +cl +cl +pp +np +191283 cl +np +cl +cl +191288 np +np +np +191293 cl +np +cl +np +pp +np +191301 cl +np +cl +191307 cl +191309 np +np +cl +cl +pp +191315 cl +191317 cl +np +191320 cl +cl +191323 cl +cl +191326 cl +191328 cl +pp +np +np +191333 np +191335 cl +191337 cl +np +np +191341 cl +cl +191344 cl +cl +191348 cl +pp +np +np +pp +191354 cl +cl +pp +191359 cl +191361 cl +191363 cl +pp +np +191367 cl +191369 cl +np +np +191374 cl +cl +191377 np +191379 cl +191382 cl +np +191385 cl +191387 cl +pp +191390 cl +np +cl +191396 cl +191398 np +np +np +191402 cl +cl +pp +191406 cl +pp +191410 cl +cl +cl +pp +191418 cl +191420 cl +pp +191424 pp +191426 np +191428 cl +cl +np +np +cl +cl +pp +np +np +191438 cl +cl +pp +cl +191443 cl +pp +np +191447 cl +cl +191453 cl +cl +pp +cl +191458 cl +np +np +191464 cl +cl +191467 cl +191469 cl +191473 cl +np +cl +np +np +pp +cl +np +191483 cl +191485 cl +np +np +191491 cl +pp +np +191495 cl +cl +np +np +pp +np +np +191505 cl +cl +np +np +pp +np +191514 cl +pp +np +np +np +np +np +cl +np +np +np +np +cl +cl +np +np +pp +np +191533 cl +cl +cl +cl +191539 cl +pp +np +np +191544 cl +pp +191547 cl +pp +191551 cl +np +np +np +pp +np +pp +cl +191560 np +np +191564 cl +cl +cl +191569 cl +cl +np +191576 cl +cl +cl +np +pp +cl +191585 cl +pp +np +np +np +np +pp +191593 cl +pp +np +191599 cl +pp +191603 cl +np +np +191607 cl +191609 cl +191611 cl +191614 np +np +np +pp +191619 cl +pp +pp +pp +cl +np +np +np +np +191630 cl +cl +pp +np +cl +191636 cl +cl +191639 cl +191641 cl +np +np +np +191646 cl +np +191650 cl +vp +np +pp +pp +np +191659 cl +191661 np +191663 np +cl +191666 cl +np +np +np +191673 cl +191675 cl +191677 cl +np +np +cl +191684 cl +pp +np +np +191690 cl +np +pp +np +191695 cl +191697 cl +191699 np +191701 np +pp +np +191705 cl +cl +pp +cl +191710 cl +pp +np +191714 cl +191716 cl +np +np +191721 cl +cl +pp +191725 cl +191727 cl +191729 cl +np +np +pp +191734 cl +pp +191738 cl +pp +cl +191745 cl +cl +pp +cl +cl +pp +191755 cl +cl +pp +cl +np +np +191762 cl +vp +cl +191767 cl +cl +cl +191772 cl +np +cl +cl +pp +np +191780 cl +cl +pp +np +np +np +191788 cl +191790 cl +191792 cl +np +191796 cl +pp +np +191800 cl +pp +np +np +np +191807 cl +np +cl +191812 cl +cl +np +191817 cl +cl +191823 cl +cl +191827 cl +cl +np +191832 cl +np +np +np +191837 cl +191839 cl +191841 np +np +np +cl +191847 cl +cl +np +pp +cl +191853 cl +np +cl +191857 cl +np +191861 cl +cl +pp +np +191867 cl +np +np +np +191874 cl +191876 cl +np +np +191880 cl +np +191884 cl +cl +cl +191889 cl +cl +191892 cl +np +191895 cl +191897 cl +191900 cl +191902 cl +pp +np +cl +np +191908 cl +pp +np +np +191913 cl +191915 cl +pp +191921 cl +191923 np +191925 np +cl +pp +np +pp +np +np +191933 cl +np +191936 cl +191938 cl +pp +np +np +191945 cl +cl +np +cl +cl +191951 cl +np +191954 cl +191956 np +191958 np +np +np +191963 cl +cl +191967 cl +191970 cl +191975 cl +cl +pp +np +np +np +191982 cl +cl +191985 cl +191988 cl +cl +np +np +pp +cl +cl +np +192000 cl +cl +192004 cl +pp +192008 cl +np +192011 cl +np +np +np +192018 cl +cl +np +pp +np +192024 cl +cl +pp +np +np +192031 cl +cl +192034 np +np +192037 cl +cl +cl +192045 cl +np +cl +192049 cl +192051 cl +np +np +np +192056 cl +np +np +192061 cl +np +192065 cl +np +cl +192071 cl +192073 np +192075 np +192078 cl +np +np +192082 cl +192084 cl +np +np +192090 cl +np +pp +np +np +np +192097 cl +np +192101 cl +np +192104 cl +np +np +np +np +192112 cl +192114 cl +192116 cl +np +np +192120 cl +192122 np +np +pp +192131 cl +cl +192135 cl +192137 cl +np +cl +np +np +192146 cl +np +np +pp +np +192152 cl +np +192155 np +192157 np +192159 np +192164 cl +192166 cl +192168 cl +192171 cl +cl +np +np +cl +192179 cl +cl +192183 cl +pp +cl +cl +np +np +192191 cl +np +pp +np +cl +np +np +192199 cl +pp +np +192204 cl +np +np +np +np +np +192213 cl +192215 cl +np +192220 cl +np +np +cl +np +cl +pp +192229 np +192232 cl +cl +pp +192236 cl +192238 np +pp +np +192242 np +pp +np +192246 np +pp +np +192250 cl +np +np +np +192255 cl +cl +np +192260 cl +cl +np +np +cl +pp +np +np +np +192272 cl +cl +np +np +np +192278 cl +cl +192281 cl +192283 np +np +np +adjp +192290 cl +np +pp +192294 cl +pp +np +192298 cl +pp +np +np +np +np +192305 cl +192309 cl +pp +np +192313 cl +192315 np +192317 cl +192321 cl +cl +pp +pp +192326 cl +192329 cl +cl +192334 cl +192336 cl +np +192339 cl +cl +192343 cl +192345 cl +cl +192349 cl +pp +np +np +cl +192355 cl +192357 cl +np +192360 cl +pp +192366 cl +192369 cl +192373 cl +cl +192376 cl +np +192379 cl +192382 cl +pp +192385 cl +pp +cl +192390 np +192392 np +pp +192396 cl +192400 np +pp +np +192406 cl +pp +np +pp +np +np +192413 cl +cl +pp +np +192419 cl +pp +192423 pp +np +np +192427 cl +pp +192431 cl +pp +np +np +cl +cl +192438 cl +192442 cl +192444 cl +192446 cl +np +192449 cl +192453 cl +pp +pp +192461 cl +pp +192464 cl +vp +pp +pp +np +np +192472 cl +pp +np +np +advp +192478 cl +pp +np +np +np +np +192488 cl +cl +pp +cl +192493 cl +np +np +192499 cl +np +pp +np +pp +np +192506 cl +np +pp +np +192511 cl +np +pp +np +pp +192517 cl +np +192520 cl +np +192523 cl +192525 cl +192528 cl +pp +192532 cl +pp +np +np +192539 cl +np +pp +np +192544 cl +np +np +192548 cl +np +192551 cl +pp +np +np +192556 cl +vp +pp +pp +cl +np +192567 cl +pp +192573 cl +pp +np +np +pp +np +np +192582 cl +pp +192586 np +192588 cl +np +192591 cl +np +np +np +192597 cl +cl +np +np +np +pp +pp +np +192610 cl +cl +192613 cl +192615 cl +np +np +192619 cl +np +np +192624 cl +192626 cl +192628 np +192630 np +np +192635 cl +cl +cl +pp +192640 cl +np +192643 cl +np +192646 cl +cl +192649 cl +np +np +np +192654 cl +cl +192657 cl +advp +np +np +192663 cl +192666 cl +192668 np +192670 np +192672 cl +np +np +advp +192678 cl +192680 cl +np +np +pp +192687 np +192689 cl +pp +np +np +192694 cl +192697 cl +pp +np +192701 cl +pp +np +np +np +192708 cl +pp +np +cl +192713 cl +192715 cl +192717 np +192719 cl +cl +192722 cl +pp +np +np +np +192730 cl +vp +np +pp +np +192736 cl +np +cl +pp +192741 np +192743 cl +192746 cl +np +np +pp +cl +pp +np +192755 cl +192757 np +np +np +192761 cl +192765 cl +192767 np +192769 np +192771 cl +192773 cl +np +192777 cl +pp +np +192782 cl +cl +pp +np +np +np +192790 cl +cl +np +192796 cl +192800 cl +192802 cl +cl +192807 cl +192809 cl +192811 cl +pp +192815 cl +np +192818 np +np +cl +cl +np +192825 cl +192828 cl +192830 cl +cl +np +192834 cl +192837 cl +192839 cl +cl +192843 cl +cl +cl +pp +np +cl +np +cl +np +192853 cl +pp +np +192857 cl +pp +192861 cl +np +np +np +cl +np +192868 cl +np +cl +np +pp +np +np +192876 cl +np +np +cl +192881 cl +192886 cl +cl +192889 cl +192891 cl +np +192897 cl +np +cl +192901 cl +np +pp +192906 cl +pp +cl +cl +np +np +pp +pp +192915 cl +192918 cl +192920 cl +advp +pp +cl +pp +np +np +np +192930 cl +cl +cl +192934 cl +192936 cl +pp +192940 cl +cl +advp +pp +np +pp +np +np +np +pp +cl +np +np +np +192957 cl +cl +cl +192961 cl +cl +192964 cl +192966 np +np +192969 cl +pp +cl +pp +np +np +192977 cl +np +pp +192981 cl +cl +192985 cl +np +np +np +pp +np +np +192993 np +np +192996 cl +pp +192999 cl +np +np +193003 cl +pp +pp +np +193010 cl +np +np +np +pp +193016 cl +193018 cl +193020 np +np +cl +pp +193026 cl +cl +pp +193031 cl +pp +193034 cl +cl +193038 cl +pp +np +193043 cl +np +cl +193048 cl +193050 cl +np +np +np +193055 cl +193057 cl +193061 cl +193064 cl +np +np +pp +pp +np +193071 cl +193073 cl +pp +193076 cl +193080 cl +193083 cl +193086 cl +193088 cl +193090 cl +193093 cl +pp +np +pp +193098 cl +193101 cl +193103 cl +pp +pp +np +np +193111 cl +193113 cl +np +np +193117 cl +193120 pp +np +np +pp +np +np +193127 cl +pp +cl +np +np +np +np +193139 cl +np +193143 cl +193145 cl +np +193149 cl +pp +193152 cl +np +np +193157 cl +cl +np +np +193163 cl +cl +193166 pp +cl +193169 pp +pp +193172 pp +193175 cl +193177 cl +193180 cl +193182 cl +cl +193186 cl +193189 cl +pp +193195 cl +193198 cl +cl +193202 cl +193205 cl +193207 cl +cl +np +193212 cl +193214 cl +np +np +193218 cl +193221 cl +193223 cl +cl +193226 np +193228 cl +193231 cl +pp +pp +193236 cl +np +np +pp +193242 cl +193247 cl +cl +193251 cl +cl +pp +np +pp +np +np +np +193261 cl +np +np +193266 cl +cl +pp +np +cl +cl +pp +193276 cl +pp +np +np +193281 cl +cl +np +cl +193289 cl +cl +np +np +pp +193296 cl +np +np +cl +np +193303 cl +pp +cl +193308 cl +cl +pp +193314 cl +np +np +pp +np +cl +pp +np +193324 cl +cl +pp +np +cl +pp +np +cl +pp +np +193335 cl +193337 cl +cl +cl +193341 cl +pp +193344 cl +cl +cl +cl +193350 cl +193353 cl +np +np +193357 cl +np +cl +193362 cl +cl +193365 np +np +np +193370 cl +np +pp +cl +193375 cl +193378 cl +pp +193383 cl +193385 np +pp +np +np +np +193391 cl +np +np +np +np +193398 cl +cl +np +cl +pp +193405 cl +cl +np +193410 cl +pp +np +np +cl +pp +193418 np +np +193423 cl +pp +cl +pp +193431 cl +pp +pp +pp +np +cl +np +pp +193441 cl +193443 np +np +193446 np +np +np +193452 cl +cl +193455 cl +pp +np +np +np +193462 cl +np +193466 cl +193468 cl +pp +np +np +193473 cl +np +np +193478 cl +np +193481 cl +cl +pp +np +193486 cl +cl +np +pp +193492 cl +cl +cl +193498 cl +pp +cl +cl +np +pp +193506 cl +np +cl +193513 cl +np +np +cl +np +cl +193520 cl +pp +np +pp +193525 cl +np +193529 cl +np +cl +193533 cl +193536 cl +cl +193541 cl +cl +np +np +193547 cl +np +np +np +np +193553 cl +193555 cl +193557 cl +193560 cl +cl +193565 cl +193567 np +193569 cl +cl +193572 cl +cl +cl +cl +cl +193578 cl +193581 cl +np +cl +pp +193589 cl +193591 cl +193593 np +np +np +193599 cl +pp +np +np +cl +193606 cl +np +cl +193611 cl +193614 cl +cl +advp +193621 cl +cl +advp +193626 cl +pp +np +vp +np +np +np +pp +np +np +np +np +193640 cl +193642 cl +np +np +np +193648 cl +pp +cl +193652 cl +193655 cl +cl +np +193659 cl +pp +np +np +193665 cl +cl +np +np +np +pp +np +193674 cl +cl +cl +cl +193679 cl +np +np +193683 cl +cl +193686 cl +cl +193691 cl +np +cl +cl +np +np +np +193700 cl +cl +cl +193705 cl +np +pp +193709 np +193711 np +cl +pp +np +np +193718 cl +cl +193721 cl +np +cl +pp +np +np +cl +193729 pp +np +pp +193734 cl +cl +193737 cl +np +193741 cl +cl +193744 cl +pp +np +np +pp +np +cl +np +pp +pp +np +np +193759 cl +np +cl +np +193765 cl +vp +pp +np +cl +pp +193772 cl +pp +193775 cl +cl +cl +np +pp +193782 cl +pp +np +193787 cl +193790 cl +193792 np +193794 np +cl +193798 cl +np +193801 cl +pp +np +np +193806 cl +cl +np +np +193813 cl +193816 np +193818 np +pp +np +np +pp +193824 cl +cl +pp +pp +193830 cl +cl +193833 np +193835 np +193837 np +pp +193840 cl +np +np +193844 cl +np +193847 cl +cl +cl +pp +pp +np +np +np +cl +pp +193859 cl +193861 cl +pp +193865 cl +np +adjp +vp +193871 cl +cl +193875 cl +cl +193878 cl +193880 cl +np +cl +vp +pp +193886 np +np +cl +pp +np +193892 pp +np +193896 cl +np +cl +cl +np +193903 cl +cl +193906 cl +cl +193910 cl +pp +193915 cl +np +cl +np +np +pp +193922 cl +cl +193927 cl +np +cl +cl +193932 cl +np +np +193937 cl +cl +np +np +193944 cl +193947 cl +pp +193951 pp +cl +193954 cl +np +np +np +193960 cl +193962 cl +cl +np +193966 np +cl +pp +np +cl +pp +np +193975 cl +np +np +193979 np +193982 cl +193987 cl +cl +pp +cl +193992 np +pp +193998 cl +pp +194001 cl +pp +np +np +194006 cl +194008 cl +cl +pp +194012 np +194014 np +194016 cl +194019 cl +194021 cl +194023 cl +np +cl +pp +194029 cl +np +cl +194034 cl +194036 cl +pp +np +pp +np +194043 cl +np +np +np +pp +cl +194053 cl +pp +194056 np +194058 cl +cl +194063 np +194066 cl +pp +194069 cl +pp +194073 cl +np +194077 cl +194079 cl +cl +194083 cl +cl +np +np +194089 cl +np +cl +194094 cl +np +np +cl +194099 cl +194101 cl +194103 cl +194105 np +np +np +np +194111 cl +np +np +cl +194116 cl +194118 cl +194121 cl +np +np +np +cl +194128 cl +np +pp +cl +np +np +np +194137 cl +np +np +np +cl +194144 cl +np +cl +194151 cl +cl +np +cl +194156 cl +np +194159 cl +pp +np +np +194167 cl +194169 cl +adjp +cl +194173 cl +np +194177 cl +194181 cl +pp +np +np +194187 cl +194190 cl +cl +pp +pp +np +194198 cl +np +np +194204 cl +pp +np +np +pp +np +cl +np +194213 cl +np +np +np +194219 cl +cl +np +np +cl +194225 pp +np +np +np +194231 cl +cl +194235 cl +np +cl +194239 cl +np +cl +cl +np +np +194247 cl +np +np +np +cl +pp +np +np +cl +194257 cl +cl +np +194262 cl +pp +194265 np +np +adjp +194271 cl +pp +np +cl +194277 cl +194280 np +194282 np +np +cl +cl +194287 np +194290 cl +vp +np +194294 np +194296 np +pp +194299 np +np +cl +np +np +np +cl +cl +np +np +np +np +194313 cl +cl +194316 cl +pp +194319 np +cl +vp +194325 cl +np +194328 cl +194332 cl +cl +np +194336 cl +vp +pp +np +194341 np +194344 cl +np +np +194348 cl +cl +194355 cl +np +pp +np +194361 cl +np +np +np +np +pp +np +cl +194370 cl +194374 cl +cl +np +pp +np +194380 cl +cl +np +np +194385 np +194389 cl +pp +194392 cl +pp +194395 cl +np +pp +np +cl +194404 cl +194406 cl +np +pp +np +cl +pp +cl +194414 cl +pp +np +194419 cl +cl +194422 cl +cl +cl +cl +pp +np +cl +194430 cl +194432 cl +np +np +np +pp +np +np +194440 cl +194442 cl +np +np +194448 cl +np +np +194452 cl +cl +pp +np +np +194458 np +194460 np +np +194464 cl +194467 np +194471 np +194473 np +np +pp +194477 cl +pp +np +194483 cl +pp +pp +np +np +194489 cl +194493 cl +np +cl +pp +np +194499 cl +cl +cl +np +194505 cl +cl +pp +194509 cl +194512 cl +cl +np +pp +pp +np +np +vp +pp +194522 np +cl +np +pp +cl +194528 cl +pp +pp +np +np +194534 cl +194538 cl +pp +194542 cl +194544 cl +194547 cl +np +cl +194551 cl +np +np +194555 cl +194558 cl +pp +cl +194562 np +np +cl +pp +cl +194569 cl +194572 cl +cl +np +cl +pp +194578 cl +194580 cl +194582 cl +pp +pp +np +np +194589 cl +cl +194593 cl +194595 np +pp +194599 np +cl +194602 np +adjp +pp +194607 pp +194609 np +194611 np +np +194615 cl +194617 np +194619 np +np +pp +np +194624 cl +194627 cl +194629 cl +194631 cl +cl +np +194637 cl +pp +pp +np +np +np +pp +cl +194647 cl +np +np +np +pp +194653 cl +194655 cl +pp +np +194659 cl +np +np +cl +cl +np +np +cl +cl +194671 cl +np +np +pp +pp +np +194680 cl +194682 cl +np +np +194686 cl +194689 cl +pp +194693 np +194696 np +np +np +194700 cl +pp +np +cl +np +cl +194707 cl +np +194710 cl +pp +np +np +194716 cl +cl +194719 pp +194721 pp +np +np +pp +np +np +np +pp +194732 cl +pp +np +194736 cl +194738 cl +cl +194742 cl +cl +194745 cl +pp +194749 cl +pp +194752 cl +np +194756 cl +194758 cl +pp +194763 cl +pp +194766 cl +pp +194769 cl +cl +np +194773 cl +cl +194778 cl +np +np +194782 cl +194785 cl +pp +194789 cl +pp +194793 cl +np +np +vp +pp +194800 cl +pp +np +194804 cl +np +194809 cl +cl +np +np +pp +194815 cl +cl +194818 np +194820 np +pp +cl +194825 cl +np +194828 cl +194831 cl +194833 np +pp +np +194838 cl +pp +np +np +np +194845 cl +cl +cl +pp +np +194851 cl +cl +194855 cl +194857 cl +194859 cl +cl +194863 cl +194865 cl +vp +194868 cl +pp +pp +np +np +194874 cl +194876 np +np +194879 np +np +194882 cl +194885 cl +194887 cl +194889 cl +194893 cl +cl +194897 cl +cl +194900 np +194902 np +194907 cl +pp +np +194911 cl +cl +cl +np +194917 cl +np +np +194922 cl +cl +pp +194927 cl +pp +cl +np +194932 np +cl +pp +cl +pp +194938 cl +cl +np +194942 cl +pp +194945 np +np +194948 np +194951 pp +194953 cl +np +np +194957 cl +np +194961 cl +194963 cl +194966 cl +np +194969 cl +pp +np +np +194974 cl +pp +np +np +np +pp +np +pp +np +np +194985 cl +cl +pp +np +194991 cl +np +np +np +np +pp +194999 cl +pp +np +pp +cl +pp +195008 cl +pp +pp +195012 cl +cl +np +np +195019 cl +pp +195022 cl +cl +pp +195026 cl +pp +np +195032 cl +cl +pp +pp +np +195038 cl +vp +pp +pp +np +np +195046 cl +pp +np +195050 cl +np +pp +np +195055 cl +np +195058 cl +pp +pp +np +195064 cl +pp +195067 cl +pp +195070 cl +195073 cl +pp +195076 cl +np +np +np +np +195084 cl +np +pp +np +195089 cl +np +195093 cl +np +cl +pp +cl +195100 cl +pp +195103 cl +pp +np +195107 cl +pp +195111 cl +np +195114 cl +pp +np +195118 cl +195120 np +np +np +cl +np +vp +pp +np +195130 cl +pp +np +195134 cl +np +pp +195138 cl +np +195142 cl +pp +np +195146 cl +np +195150 cl +cl +cl +np +195157 cl +pp +np +np +cl +195164 pp +195166 pp +np +195169 pp +np +pp +195176 cl +np +195179 cl +pp +195182 cl +np +195185 np +np +np +pp +np +pp +adjp +195196 cl +pp +195199 cl +cl +cl +cl +cl +cl +195206 cl +pp +pp +195210 cl +195214 cl +pp +np +np +np +np +pp +195222 cl +np +pp +cl +195227 np +195229 np +pp +195233 cl +195235 cl +195237 np +np +195240 cl +pp +np +np +np +195247 cl +np +np +np +195253 cl +pp +np +pp +195260 cl +cl +195265 cl +195267 cl +195269 cl +195271 cl +np +195275 cl +195278 cl +cl +195282 cl +cl +195285 cl +np +195289 cl +cl +195293 cl +195296 cl +195298 cl +195300 cl +cl +pp +195304 cl +cl +np +cl +pp +np +cl +np +np +195314 cl +195316 np +195319 cl +cl +pp +np +195326 cl +195328 cl +195330 cl +195332 cl +195334 np +195337 np +195339 cl +np +cl +195343 cl +pp +cl +np +195348 cl +195351 cl +pp +cl +cl +cl +np +np +np +np +195361 cl +pp +pp +np +195366 cl +vp +np +195371 cl +np +cl +np +pp +195377 cl +195381 cl +cl +195384 np +np +np +195388 cl +np +np +np +cl +cl +cl +pp +pp +195398 cl +cl +pp +cl +195403 cl +195407 cl +np +cl +pp +cl +pp +195415 cl +cl +195419 cl +cl +np +pp +pp +195425 cl +pp +195429 cl +195434 cl +cl +pp +195439 cl +pp +cl +np +195445 pp +cl +195448 cl +pp +np +195453 cl +195455 cl +195457 cl +np +np +np +195463 cl +np +195466 np +195468 np +pp +np +np +195473 cl +cl +cl +np +195478 cl +cl +np +np +np +195486 cl +np +np +cl +195491 cl +np +195495 cl +np +195498 cl +195500 cl +cl +cl +195505 cl +cl +195509 cl +cl +195513 cl +195515 cl +195517 cl +195522 cl +195524 cl +cl +195527 cl +pp +np +np +195532 cl +pp +195535 cl +195537 np +np +195540 np +pp +195543 np +195546 cl +pp +195549 cl +195552 cl +195554 np +np +np +195558 cl +cl +np +195562 cl +vp +195565 cl +pp +np +195569 cl +cl +np +cl +195574 np +np +195577 cl +195579 cl +195582 cl +np +cl +pp +np +195589 cl +195591 cl +np +cl +195596 cl +np +195599 pp +pp +np +np +195607 cl +np +195610 cl +cl +cl +195614 cl +pp +np +195618 cl +np +195622 np +np +np +pp +195628 cl +cl +cl +pp +np +195634 cl +np +195637 cl +195639 cl +195642 cl +cl +np +pp +195647 cl +pp +cl +195651 cl +pp +195654 cl +cl +195658 cl +195660 cl +cl +pp +195664 cl +cl +pp +np +195669 cl +195672 cl +np +np +np +cl +np +np +195681 cl +195683 cl +195686 cl +195688 cl +pp +np +cl +195693 cl +adjp +195697 cl +195700 cl +cl +195703 cl +np +195706 cl +np +np +np +195712 pp +np +np +np +195719 cl +np +np +np +pp +np +np +195727 cl +np +np +np +195733 cl +np +195736 np +195738 np +np +pp +np +195745 cl +cl +np +np +np +pp +cl +195754 cl +np +195757 cl +195761 cl +np +np +195765 cl +np +np +np +cl +195772 cl +195775 cl +vp +np +np +np +np +pp +np +np +np +cl +pp +np +195790 cl +np +cl +np +195796 cl +pp +195800 cl +195802 cl +195804 cl +np +195808 cl +195814 cl +np +195817 np +cl +195821 cl +cl +195824 cl +195826 np +195828 cl +np +195831 cl +np +np +195835 cl +195838 cl +np +np +np +195845 cl +np +cl +np +np +pp +195854 cl +np +np +np +np +pp +np +np +195863 cl +np +np +195867 cl +pp +np +np +195873 cl +pp +pp +195878 np +np +195881 np +195883 np +np +195886 cl +np +adjp +195892 cl +np +np +np +195897 cl +pp +np +195903 cl +pp +np +cl +195909 cl +195914 np +195918 cl +cl +pp +pp +np +cl +195926 np +195928 np +195931 cl +np +np +np +195936 cl +np +195939 cl +195941 cl +np +195944 cl +cl +np +np +np +np +np +195952 cl +cl +np +np +cl +vp +cl +np +np +np +np +195966 cl +np +195969 cl +cl +np +195973 cl +195976 cl +195978 cl +195980 cl +np +np +195984 cl +pp +np +195989 cl +np +195992 cl +np +195996 np +np +195999 cl +pp +np +196004 cl +pp +np +np +np +np +196014 cl +pp +196017 cl +cl +np +np +cl +196023 cl +196025 np +196027 np +196029 cl +np +196035 cl +pp +np +pp +np +pp +np +cl +pp +np +np +cl +np +np +196050 cl +196054 cl +np +pp +196058 cl +196062 cl +cl +cl +pp +np +196068 cl +cl +pp +np +196075 cl +196077 np +pp +np +np +np +cl +196085 cl +pp +196088 cl +196091 cl +196093 cl +pp +196096 cl +cl +196099 np +np +cl +196103 cl +np +pp +196108 cl +196110 cl +196113 cl +196116 cl +cl +cl +np +np +np +196123 cl +pp +np +196127 cl +cl +cl +196131 cl +196133 cl +pp +np +np +np +np +196140 cl +196142 cl +196145 cl +196148 cl +pp +196152 cl +cl +pp +np +np +np +196160 cl +196162 cl +pp +np +196166 cl +196168 cl +pp +np +196173 cl +196175 cl +cl +cl +196180 cl +np +cl +196185 cl +np +np +196189 cl +196191 cl +196193 cl +196195 cl +np +196198 cl +pp +np +196203 cl +196205 cl +cl +cl +196210 cl +196212 cl +196214 cl +np +np +np +196219 cl +196223 cl +196227 cl +cl +196230 cl +cl +196233 cl +np +np +196240 cl +np +196243 cl +cl +196246 cl +np +196250 cl +pp +np +196254 cl +196257 cl +pp +np +np +np +np +196267 cl +np +pp +np +196272 cl +cl +np +np +np +196278 cl +np +196281 cl +pp +np +196287 cl +np +np +196292 cl +np +np +np +196298 cl +np +196301 cl +pp +196304 cl +np +196309 cl +np +np +pp +np +196315 cl +np +196318 cl +np +pp +196322 cl +196324 cl +pp +196327 cl +196329 cl +196331 cl +pp +np +np +np +np +np +np +196341 cl +np +196345 cl +np +pp +np +196352 cl +np +np +196356 cl +np +196359 cl +np +np +196366 cl +np +196369 cl +np +196372 cl +pp +np +196376 cl +np +np +196382 cl +196384 cl +np +pp +np +196389 cl +np +np +196393 cl +pp +vp +196398 cl +pp +196401 np +196403 np +np +pp +np +np +196410 cl +pp +196413 cl +196417 cl +vp +np +pp +pp +np +196424 cl +196427 cl +196429 cl +196432 cl +vp +pp +np +196438 cl +pp +np +np +pp +pp +196447 cl +pp +np +196451 cl +196455 cl +pp +pp +np +cl +cl +196462 cl +pp +196466 cl +196468 cl +196470 cl +cl +196473 cl +vp +pp +np +196478 cl +np +196481 cl +196483 cl +np +196487 cl +vp +pp +196491 cl +196493 cl +np +196497 cl +196499 np +np +np +196504 cl +196506 cl +pp +np +np +np +196513 cl +np +np +np +np +196519 cl +196521 cl +196523 cl +196525 cl +196527 cl +pp +196531 cl +196533 cl +pp +np +pp +np +196539 cl +pp +np +196543 cl +196545 cl +pp +np +pp +196551 cl +cl +196556 cl +np +np +196560 cl +196562 cl +np +np +196566 cl +np +196570 cl +cl +cl +np +np +np +np +cl +pp +np +196582 cl +np +np +196586 cl +pp +np +np +196591 cl +196593 cl +pp +np +np +196600 cl +196602 cl +np +196605 cl +np +np +np +pp +196614 cl +cl +np +cl +np +196621 cl +np +196626 cl +196629 cl +np +196632 cl +np +np +196636 cl +np +196639 cl +pp +np +196644 cl +cl +pp +np +196650 cl +pp +np +np +np +np +cl +pp +np +196660 cl +196662 np +np +196666 cl +np +np +196671 cl +np +cl +pp +np +pp +np +196679 cl +pp +196682 cl +np +pp +np +cl +196688 cl +np +cl +cl +196694 cl +np +np +pp +np +196700 cl +196704 cl +196706 np +np +cl +np +cl +pp +196713 np +cl +cl +196717 cl +196720 cl +196722 cl +196725 cl +196727 np +np +np +196731 cl +196733 cl +cl +cl +196738 cl +196741 cl +np +cl +196745 cl +196749 cl +196751 cl +np +196754 cl +196756 np +196758 cl +196761 cl +196763 np +np +np +196767 cl +np +196771 cl +pp +196774 cl +196776 np +np +196779 np +np +196783 cl +196785 cl +196787 cl +np +196790 cl +pp +np +np +196796 cl +196798 cl +pp +np +196802 cl +advp +pp +np +196807 cl +np +196810 cl +pp +np +np +cl +pp +np +196818 cl +pp +np +196823 np +np +196827 cl +196829 cl +cl +196832 cl +196834 cl +196836 cl +np +np +196840 cl +196843 cl +np +196846 cl +cl +196849 cl +np +196853 cl +196855 cl +196858 cl +np +196861 cl +cl +np +cl +196866 cl +np +196870 cl +196872 cl +196874 cl +np +np +pp +np +np +196881 cl +196883 cl +pp +np +196887 cl +cl +196890 cl +np +196895 cl +196897 cl +196900 pp +np +np +196904 pp +np +196907 cl +cl +196910 cl +cl +196913 cl +np +pp +np +196921 cl +196923 cl +196925 cl +np +np +np +pp +196933 cl +np +196936 cl +196939 cl +np +196942 cl +cl +196945 cl +pp +196950 cl +np +196953 cl +196955 cl +196958 cl +196961 cl +cl +196964 cl +np +cl +196969 cl +196973 cl +pp +np +np +196979 cl +196981 cl +pp +196985 cl +196987 cl +196989 cl +pp +196995 cl +np +np +np +197000 cl +pp +np +197004 cl +np +197008 cl +cl +197011 cl +np +cl +197015 cl +np +197019 cl +pp +np +197023 cl +pp +197026 cl +pp +np +np +cl +cl +197035 cl +cl +cl +cl +197041 cl +np +pp +197045 cl +cl +197048 cl +np +cl +np +197054 cl +np +np +197058 cl +197060 cl +np +np +197065 cl +197068 cl +197070 cl +np +197073 cl +197075 cl +np +np +197079 cl +np +197082 cl +pp +197086 cl +197088 cl +197090 cl +pp +np +197094 cl +197097 cl +197100 cl +197103 cl +pp +np +197108 cl +197110 cl +197112 cl +197114 cl +197116 cl +cl +cl +197121 cl +197123 cl +pp +np +np +197129 cl +pp +np +np +np +np +pp +pp +np +np +197140 np +cl +197143 cl +np +cl +197150 cl +pp +np +cl +cl +pp +197158 cl +np +197163 cl +adjp +pp +np +np +197169 cl +np +197172 cl +pp +np +np +197178 cl +197180 cl +197182 cl +np +np +np +197188 cl +pp +np +np +pp +np +197196 cl +np +197199 cl +pp +np +np +197206 cl +197208 cl +pp +np +np +cl +np +cl +pp +pp +np +197219 cl +np +pp +np +197225 cl +pp +np +197229 np +np +cl +np +197235 cl +np +197238 cl +np +np +pp +197244 cl +cl +197247 cl +197249 pp +np +pp +np +pp +197256 cl +197259 cl +197261 cl +np +np +197265 cl +cl +197269 cl +np +pp +197274 cl +197277 cl +advp +197280 cl +pp +np +cl +197286 cl +np +np +197290 cl +np +197293 cl +cl +np +np +197299 cl +np +np +197303 cl +np +197306 cl +197310 cl +cl +np +cl +197315 cl +np +np +197320 cl +np +pp +cl +pp +197327 cl +197329 cl +np +np +197335 cl +np +197338 cl +np +np +197342 cl +cl +pp +np +np +np +197349 cl +197352 np +np +np +197357 cl +np +np +np +cl +197363 pp +np +pp +np +197369 cl +pp +np +np +197374 cl +pp +197378 cl +pp +np +pp +np +np +197386 cl +cl +np +197392 cl +pp +np +197397 cl +197399 cl +np +np +np +197406 cl +pp +pp +np +197411 cl +np +197415 cl +np +cl +pp +np +np +np +cl +197425 cl +np +cl +np +197431 pp +np +np +197435 cl +np +197438 cl +cl +197441 cl +197443 cl +np +cl +cl +197448 cl +197450 cl +197453 cl +197455 cl +197457 cl +np +pp +np +197462 cl +pp +cl +pp +197467 cl +np +197470 cl +197472 cl +np +np +197476 cl +197480 cl +np +197484 cl +np +np +197488 cl +197491 cl +pp +np +np +197497 cl +np +197500 cl +197502 cl +197504 cl +cl +np +197509 cl +cl +197513 cl +197515 cl +np +np +197519 cl +197521 cl +cl +197524 np +197526 cl +197528 cl +197530 cl +197533 cl +197535 cl +cl +197539 cl +np +cl +pp +np +197546 cl +pp +np +pp +np +197552 cl +cl +cl +197556 cl +np +197560 cl +np +197563 cl +np +197566 cl +197568 cl +197571 cl +pp +np +np +197576 cl +pp +197580 cl +197582 cl +np +np +pp +cl +197590 cl +pp +cl +np +197596 cl +np +cl +np +np +np +cl +np +197607 cl +np +197610 cl +197613 cl +197615 cl +np +cl +pp +197620 cl +cl +np +197625 cl +197627 cl +np +np +197634 cl +np +np +197638 cl +np +cl +197642 cl +np +adjp +197646 cl +197652 cl +np +np +197656 cl +cl +np +np +cl +197664 cl +np +cl +np +np +np +197671 cl +np +197674 cl +np +197677 cl +197679 cl +np +197682 np +197684 cl +197688 cl +197691 cl +197694 cl +np +np +197698 cl +197700 cl +np +197704 cl +pp +197707 cl +pp +np +pp +np +197715 cl +197719 cl +197721 cl +197724 cl +np +np +np +np +np +np +197732 cl +197734 cl +197737 cl +197739 cl +np +pp +np +np +cl +pp +197748 cl +cl +197751 cl +np +197755 cl +197757 cl +197760 cl +pp +np +np +pp +np +np +np +197769 cl +197771 cl +197773 cl +np +pp +np +cl +197779 cl +np +pp +np +197784 cl +cl +pp +197788 cl +197790 cl +197792 cl +np +np +np +197798 cl +np +np +np +cl +np +np +197806 cl +197810 cl +pp +cl +np +np +197817 cl +197819 cl +pp +197822 cl +197824 cl +np +197827 cl +pp +197831 cl +pp +197834 cl +np +197839 cl +pp +np +197843 cl +197845 cl +197848 cl +197850 np +197853 cl +197855 cl +197857 cl +cl +pp +pp +np +np +197865 cl +197867 np +adjp +np +197871 cl +cl +197874 np +197876 cl +cl +np +cl +197881 np +np +cl +pp +cl +np +197889 cl +197891 np +np +cl +pp +197899 cl +np +197902 cl +np +197905 cl +cl +np +np +pp +197911 cl +cl +197914 cl +np +197917 cl +cl +pp +np +197923 cl +197925 cl +pp +197929 cl +cl +pp +197933 cl +197936 cl +pp +197939 cl +197941 cl +np +np +np +pp +197948 cl +pp +np +np +np +np +197955 cl +197959 cl +pp +np +np +np +cl +197967 cl +cl +cl +pp +197972 cl +197974 np +np +pp +np +np +197980 cl +197982 cl +pp +np +197986 cl +197988 cl +197990 cl +pp +197997 cl +197999 cl +198001 cl +pp +198007 cl +np +np +cl +np +np +198014 cl +pp +np +pp +np +np +198021 np +np +198026 cl +np +198029 cl +np +198032 cl +pp +198035 cl +198039 cl +pp +np +198043 cl +pp +np +np +198049 cl +198051 np +np +np +np +198057 cl +np +198060 cl +np +198063 cl +198065 cl +np +pp +pp +198070 cl +198072 cl +198075 cl +cl +198078 cl +cl +cl +198082 cl +np +198085 cl +np +np +198089 cl +np +198092 cl +198094 np +pp +np +np +198099 np +np +198103 cl +cl +198106 np +np +198109 np +198111 cl +pp +198114 cl +np +cl +cl +np +198121 cl +np +pp +np +198128 cl +np +cl +np +np +198137 cl +np +np +198141 cl +cl +198144 cl +cl +pp +pp +np +cl +198154 cl +cl +np +np +198159 cl +np +np +cl +198164 cl +198167 cl +cl +198170 cl +np +pp +198174 np +np +np +cl +198179 cl +198182 cl +np +cl +198186 cl +198188 cl +198190 np +198192 cl +pp +np +198197 cl +cl +198200 cl +198202 cl +198204 cl +198206 cl +pp +np +np +np +198215 cl +cl +np +np +pp +np +198222 cl +cl +pp +pp +np +pp +198232 cl +198234 cl +pp +np +198238 cl +np +cl +np +198245 cl +cl +np +np +198253 cl +np +pp +np +198258 cl +pp +np +198262 cl +198265 cl +198267 cl +cl +198272 cl +cl +pp +np +198277 cl +np +pp +np +198282 cl +pp +198286 cl +np +198289 np +198291 cl +pp +np +198296 cl +np +198299 cl +198303 cl +np +np +np +pp +np +cl +np +np +198314 cl +pp +pp +np +198320 cl +np +cl +np +198328 cl +np +198332 cl +198334 cl +np +np +cl +pp +np +198341 cl +pp +cl +np +198347 cl +cl +pp +np +cl +198355 cl +np +198358 cl +198361 cl +198363 cl +198366 cl +198369 cl +pp +np +198373 cl +198376 cl +198379 np +198381 cl +198384 np +198386 cl +pp +np +cl +np +np +np +198394 cl +198396 np +np +198400 cl +pp +198403 cl +198405 cl +np +np +np +198411 cl +198413 cl +cl +cl +np +np +np +cl +pp +cl +198424 cl +198427 cl +np +198431 cl +198433 cl +cl +198437 cl +np +np +np +pp +np +198444 cl +vp +cl +np +pp +np +cl +198453 cl +np +198457 cl +198459 cl +np +np +pp +np +cl +np +np +np +np +np +pp +np +np +198475 cl +np +np +np +198481 cl +pp +np +198485 cl +np +198489 cl +pp +cl +198493 np +np +198496 cl +np +cl +np +np +np +198504 cl +198506 cl +pp +advp +198510 cl +198512 cl +pp +advp +198517 cl +198521 cl +198523 cl +198527 cl +np +cl +np +pp +198533 cl +198535 cl +pp +advp +198539 cl +pp +np +198544 cl +np +np +np +cl +np +np +198552 cl +198555 cl +np +np +198559 cl +198563 np +cl +cl +pp +198568 cl +pp +np +np +198574 cl +np +np +np +np +198581 cl +np +198585 cl +np +198588 cl +pp +np +198592 cl +pp +np +np +198599 cl +np +pp +198603 cl +cl +198606 np +198608 cl +pp +np +198612 cl +198615 cl +198618 np +np +cl +198622 np +198624 np +cl +198627 cl +pp +np +198632 cl +198634 cl +cl +pp +198639 cl +cl +pp +198643 cl +198645 np +198647 cl +cl +pp +np +np +198653 cl +vp +pp +np +198658 cl +np +198661 cl +np +198665 cl +pp +np +198669 cl +pp +198674 cl +np +198678 cl +198681 cl +pp +np +np +198688 cl +cl +198691 cl +np +198694 cl +np +np +np +198700 cl +np +np +pp +np +np +198707 cl +198709 cl +198711 np +198713 cl +pp +np +198718 cl +pp +198721 cl +198723 cl +198726 np +198728 cl +198730 cl +pp +np +198734 cl +198736 cl +pp +np +np +pp +np +198744 cl +np +np +198748 cl +np +np +pp +np +np +np +198757 cl +pp +np +cl +cl +cl +np +cl +198767 cl +np +198771 cl +198776 cl +np +np +np +np +np +198783 cl +np +np +cl +pp +198790 cl +198793 cl +np +np +198797 cl +np +np +np +cl +np +np +198807 cl +np +np +np +198812 cl +np +np +np +198818 cl +198821 cl +np +np +198825 cl +np +np +pp +cl +pp +198835 cl +np +np +cl +cl +pp +np +198843 np +198845 cl +pp +198848 cl +198850 np +198852 cl +pp +198857 cl +np +198860 cl +198862 cl +198864 cl +np +np +pp +np +198870 cl +cl +pp +pp +198876 cl +np +pp +np +np +cl +cl +np +np +cl +cl +198889 cl +np +cl +pp +198894 cl +pp +np +np +cl +198902 cl +cl +np +np +np +cl +np +198911 cl +np +198914 cl +cl +np +198919 cl +np +198922 cl +198924 cl +198927 cl +198929 np +pp +cl +198933 cl +pp +np +198937 cl +198939 cl +198941 cl +198943 cl +198946 cl +cl +pp +198950 cl +cl +pp +198954 cl +vp +pp +np +198960 cl +pp +np +np +np +pp +np +198968 cl +pp +198972 cl +np +np +198976 cl +np +cl +198980 cl +198984 cl +pp +198987 cl +np +np +198992 cl +198994 cl +198996 cl +np +np +np +199001 cl +np +199005 cl +199007 np +199009 cl +np +pp +199014 cl +np +np +199020 cl +cl +cl +np +pp +np +199029 cl +pp +np +pp +np +199035 cl +cl +pp +np +199040 cl +cl +np +199045 cl +199047 np +np +np +np +199053 cl +pp +np +np +199059 cl +199061 cl +pp +np +199065 cl +np +np +np +np +199071 np +cl +199076 cl +pp +199079 cl +cl +pp +199085 cl +cl +np +199090 cl +np +np +pp +199096 cl +np +199099 cl +np +np +np +199104 cl +np +np +np +199111 cl +np +cl +199115 cl +199117 cl +pp +199120 cl +np +np +199124 cl +pp +np +199128 cl +pp +np +np +199133 cl +np +np +199138 cl +cl +pp +np +199146 cl +np +np +pp +np +cl +np +199154 pp +pp +199159 cl +np +pp +np +199164 cl +cl +199168 cl +np +pp +pp +np +199176 cl +199178 cl +199180 cl +199182 cl +199184 cl +np +199188 cl +pp +pp +np +np +np +199197 cl +np +199200 cl +pp +np +199204 cl +199207 cl +np +cl +cl +cl +199215 cl +199217 cl +199219 cl +np +np +199223 cl +199225 cl +199229 cl +cl +np +np +cl +pp +np +199237 cl +pp +np +199241 cl +pp +199244 cl +199246 cl +pp +np +np +np +199256 cl +np +np +199260 cl +cl +199263 cl +pp +199267 cl +np +199271 cl +np +pp +np +199276 cl +cl +199279 cl +np +199282 cl +cl +cl +199287 cl +199289 cl +199291 cl +np +199294 cl +199297 cl +pp +np +199302 cl +pp +np +cl +pp +np +199309 cl +pp +199315 cl +pp +199318 cl +np +np +199322 cl +199324 cl +np +pp +199329 cl +pp +cl +np +np +199336 cl +np +pp +np +199341 cl +cl +cl +199346 cl +cl +199349 cl +199351 cl +np +199354 cl +np +199359 cl +cl +199364 np +199366 cl +cl +cl +199372 cl +cl +pp +np +np +199378 cl +199380 cl +199382 cl +cl +199387 cl +pp +199390 cl +199393 cl +cl +199397 cl +199399 cl +pp +cl +199405 cl +cl +199408 cl +pp +np +199412 cl +np +np +199418 cl +pp +np +pp +199423 cl +199426 np +199428 cl +199430 cl +np +cl +199436 cl +np +cl +np +pp +199443 cl +199445 np +199447 np +199449 cl +199452 cl +np +199455 cl +np +pp +199459 cl +pp +199462 cl +199466 cl +199468 cl +199470 cl +cl +cl +199475 cl +np +pp +199479 cl +cl +199482 cl +199485 cl +199487 cl +pp +np +np +np +199493 cl +np +199496 cl +199498 np +np +cl +cl +199503 cl +199505 cl +199507 cl +cl +cl +199513 cl +pp +199516 np +np +np +np +np +np +199523 cl +cl +199527 cl +199529 cl +pp +199532 cl +199537 cl +pp +199540 cl +np +cl +np +np +cl +pp +np +np +199551 cl +pp +np +199555 cl +cl +199558 cl +pp +199561 cl +199563 cl +199566 cl +pp +np +cl +np +np +cl +np +199575 cl +cl +np +199580 cl +199583 cl +pp +np +np +199589 cl +np +199592 cl +199594 pp +np +np +199598 pp +199600 np +199602 cl +np +199606 cl +pp +np +pp +199613 cl +np +pp +cl +199618 cl +pp +np +199624 cl +np +pp +199628 np +199631 cl +cl +pp +199635 cl +np +cl +199639 cl +np +np +199644 cl +np +199647 cl +np +199652 cl +np +pp +np +pp +199658 cl +pp +np +199663 cl +199665 np +np +199668 cl +np +199671 cl +pp +199675 cl +pp +cl +np +pp +199681 cl +np +np +np +199687 cl +pp +199690 cl +cl +199694 cl +199696 cl +199698 cl +np +pp +np +199704 cl +199706 cl +199708 cl +pp +np +199713 cl +pp +np +np +199719 cl +pp +np +np +np +199727 cl +pp +np +199731 cl +np +np +pp +199736 cl +cl +199741 cl +199743 np +199745 np +pp +np +cl +pp +199751 cl +cl +pp +cl +199756 np +np +cl +199761 cl +pp +np +cl +np +199768 cl +199771 cl +cl +199774 cl +cl +199778 cl +np +cl +np +pp +np +199788 cl +cl +cl +cl +pp +cl +np +np +np +pp +199800 cl +cl +pp +np +199807 cl +199809 cl +199811 cl +pp +np +np +cl +pp +np +pp +np +199822 cl +np +199825 cl +np +pp +199830 cl +np +199833 cl +199835 cl +pp +np +199840 np +cl +np +np +np +cl +199848 cl +cl +199853 cl +np +199856 cl +199858 cl +199860 cl +199863 cl +np +cl +199867 cl +np +np +np +199872 cl +199874 cl +advp +pp +np +199879 cl +np +np +np +199885 cl +np +cl +pp +cl +np +np +199894 cl +199896 cl +199900 cl +pp +cl +np +np +199906 cl +199908 cl +199910 cl +199913 cl +199915 cl +199917 cl +199919 cl +pp +np +cl +199928 cl +cl +np +np +np +199935 cl +199937 cl +199941 cl +199944 cl +pp +pp +np +np +np +199951 cl +np +np +np +199957 cl +199959 cl +pp +199962 cl +pp +np +np +cl +199969 cl +cl +np +np +199974 cl +199977 cl +199979 cl +np +np +199985 cl +199987 cl +np +np +np +199992 cl +np +np +pp +np +cl +pp +np +200002 cl +200004 cl +np +np +200009 cl +200012 cl +200014 cl +200016 cl +pp +np +np +cl +cl +cl +200025 cl +np +200029 cl +200031 cl +cl +cl +cl +200037 cl +200040 cl +pp +np +cl +pp +np +200047 cl +pp +np +np +cl +pp +np +np +200058 cl +200060 cl +pp +np +np +200067 cl +200069 cl +cl +pp +np +np +200076 cl +cl +200079 cl +np +cl +200083 cl +np +200087 cl +cl +pp +200093 cl +cl +200096 cl +cl +pp +pp +np +200102 cl +200104 cl +np +200108 cl +np +200112 cl +np +np +np +cl +200119 cl +200122 cl +pp +200127 cl +np +cl +200132 cl +200134 cl +pp +cl +200138 cl +np +adjp +200142 cl +cl +pp +200147 cl +np +pp +np +np +cl +200155 cl +pp +np +np +np +200161 cl +np +200165 cl +np +200168 cl +np +200171 cl +pp +200175 cl +np +200178 cl +cl +200181 cl +200183 cl +np +200187 cl +200189 cl +np +200192 cl +np +np +np +200199 cl +np +pp +np +pp +np +cl +np +pp +np +200211 cl +200213 cl +np +200216 cl +200218 cl +np +200223 cl +cl +200226 cl +np +np +np +pp +200232 cl +cl +pp +np +200238 cl +np +cl +pp +np +200245 cl +200247 cl +cl +np +np +200252 cl +np +200256 cl +np +np +cl +np +np +np +200265 cl +cl +200269 cl +cl +np +pp +np +cl +200276 cl +np +np +np +np +200282 cl +200284 cl +pp +cl +200288 np +np +200291 cl +np +200296 cl +np +np +cl +200303 cl +pp +np +200307 cl +200309 cl +pp +cl +200313 cl +pp +np +np +np +200319 cl +cl +np +np +np +200326 cl +pp +200329 np +np +200332 cl +cl +np +np +np +np +200340 cl +pp +200343 cl +pp +np +200347 cl +pp +200353 cl +np +cl +pp +np +200360 cl +200362 cl +np +np +200370 cl +np +cl +200374 cl +np +pp +pp +200381 cl +cl +pp +200385 cl +200387 cl +pp +np +np +np +np +200394 cl +pp +200397 cl +pp +np +200402 cl +np +200405 cl +200407 cl +200410 cl +200412 cl +200414 cl +200417 cl +200419 cl +np +np +200423 cl +200426 cl +np +np +200430 cl +200433 cl +200435 cl +200439 cl +200442 cl +np +np +cl +advp +pp +np +200450 cl +np +cl +200454 cl +200458 cl +200460 cl +np +200463 cl +200466 cl +np +np +cl +advp +pp +np +200475 cl +200478 np +np +cl +200483 cl +np +200486 cl +200488 cl +200491 cl +cl +np +np +200496 cl +cl +np +np +200501 cl +cl +cl +np +200508 cl +200510 cl +200515 cl +200517 cl +cl +np +adjp +200523 cl +200525 cl +np +np +200530 cl +200532 np +np +200535 cl +np +np +np +200541 cl +200543 cl +200546 cl +np +pp +200550 cl +np +200553 cl +200555 cl +200558 cl +cl +200561 cl +200564 cl +200566 cl +pp +200571 cl +200573 cl +pp +np +200578 cl +cl +np +adjp +pp +200585 cl +np +np +cl +200591 cl +cl +200595 np +np +200598 cl +200600 cl +200604 cl +200606 cl +np +np +200611 cl +np +np +np +pp +200617 cl +cl +np +np +200622 cl +200624 cl +200626 cl +200628 cl +cl +200631 cl +200633 cl +pp +np +np +np +200640 cl +cl +200643 cl +pp +np +200647 cl +np +np +pp +np +200653 cl +200655 cl +cl +pp +np +np +np +200662 cl +cl +200668 cl +200670 cl +200672 cl +cl +200676 cl +200678 np +200681 cl +cl +np +cl +200686 cl +200689 cl +200691 cl +200693 cl +200695 cl +200697 cl +200699 cl +200701 cl +200703 cl +200705 cl +200708 cl +200710 cl +np +np +200714 cl +200717 cl +200719 np +200721 cl +200723 cl +np +np +200727 cl +200730 cl +pp +np +200734 cl +200736 cl +200738 cl +200740 cl +200743 cl +cl +200746 cl +cl +200749 cl +np +np +adjp +pp +np +200757 cl +pp +200760 cl +np +np +np +200765 cl +np +np +200770 cl +np +np +cl +200776 cl +200778 cl +pp +np +np +200784 cl +200786 cl +200789 cl +np +pp +np +200794 cl +pp +np +np +200799 cl +np +200802 cl +cl +np +cl +np +200809 cl +pp +200813 cl +np +cl +pp +200818 cl +np +np +200823 cl +200825 cl +200828 cl +np +pp +200833 cl +200835 cl +pp +200838 cl +np +np +200843 cl +200845 cl +cl +cl +200849 np +np +cl +cl +cl +200855 cl +200859 cl +np +np +200863 cl +cl +200867 cl +np +np +200872 cl +200877 cl +cl +200881 cl +np +np +cl +200886 cl +200888 cl +cl +pp +200893 cl +np +np +200897 cl +np +200900 cl +np +200905 cl +cl +200908 cl +pp +np +np +200914 cl +cl +200919 cl +np +pp +cl +200924 cl +cl +np +cl +200929 cl +np +np +200934 cl +200938 cl +cl +cl +200942 cl +cl +200946 cl +200948 cl +cl +np +np +200953 cl +200957 cl +200959 cl +cl +cl +200963 cl +np +cl +np +200970 cl +200972 cl +200974 cl +np +200977 cl +np +np +200982 cl +200984 cl +np +200987 cl +cl +200991 cl +np +200994 cl +200996 cl +cl +pp +np +201001 cl +cl +201004 cl +np +np +201009 cl +201011 cl +np +201017 cl +201019 cl +np +np +cl +201024 cl +pp +np +201028 cl +np +np +cl +201033 cl +201035 cl +pp +cl +201040 cl +201042 cl +201044 cl +pp +201047 cl +201050 cl +201053 cl +201055 cl +201057 cl +cl +cl +pp +np +np +np +201066 cl +201068 cl +201071 cl +201074 cl +pp +201077 cl +np +201081 cl +201083 cl +201085 cl +pp +201089 cl +cl +201094 cl +201097 cl +np +201100 cl +pp +pp +np +np +201107 cl +201109 cl +201111 cl +201113 cl +201116 cl +201118 pp +np +201121 cl +pp +201124 cl +201126 cl +np +201129 cl +np +201133 cl +201135 cl +201139 cl +201141 cl +cl +np +np +201148 cl +201153 cl +pp +np +pp +np +np +np +cl +cl +201163 cl +201166 cl +201168 cl +pp +np +np +np +201175 cl +np +201179 cl +np +np +np +201185 cl +np +np +pp +201190 cl +201195 cl +np +np +cl +pp +201202 cl +np +201205 cl +np +np +201212 cl +advp +201215 cl +pp +201218 cl +np +np +np +201223 cl +np +np +np +201229 cl +cl +cl +201234 cl +np +201238 cl +201240 cl +np +np +np +201247 cl +np +cl +pp +201252 cl +201254 cl +np +201257 cl +np +201261 cl +201263 cl +pp +201268 cl +201270 cl +201272 cl +201274 cl +np +201280 cl +201282 cl +201284 cl +201286 cl +201289 cl +201291 cl +201293 cl +np +np +np +201298 cl +np +np +np +np +np +pp +np +201310 cl +201312 np +201315 cl +cl +np +cl +np +201321 cl +np +201324 cl +201327 cl +np +201330 cl +201332 cl +201334 cl +pp +np +201339 cl +np +np +np +201345 cl +np +201348 cl +np +201352 cl +np +cl +np +201358 cl +np +np +pp +np +201365 cl +np +cl +pp +np +np +201373 cl +cl +201377 cl +np +np +201381 cl +201383 np +np +201386 cl +pp +np +201390 cl +np +np +201394 cl +201397 cl +pp +201400 cl +pp +201404 cl +cl +201407 cl +cl +201410 cl +np +np +pp +np +np +201417 cl +pp +np +pp +np +np +201425 cl +np +pp +201430 cl +201432 cl +cl +201435 cl +cl +np +np +cl +201441 cl +cl +np +201445 cl +np +pp +np +201451 cl +201453 cl +np +pp +np +pp +np +np +np +201464 cl +np +201467 cl +cl +pp +np +np +201474 cl +np +cl +201478 cl +np +201481 cl +201483 cl +201486 cl +201488 np +201490 cl +pp +np +np +np +np +pp +201498 cl +201500 cl +pp +np +np +np +201507 cl +np +np +np +np +np +cl +201516 cl +cl +np +201520 cl +advp +pp +np +201525 cl +pp +np +np +201531 cl +201533 np +np +cl +201537 cl +cl +pp +np +np +np +201544 cl +201547 np +201549 cl +np +201552 cl +201554 cl +np +cl +np +np +pp +np +cl +pp +np +adjp +201566 cl +np +201570 cl +pp +np +201574 cl +pp +201578 cl +cl +201581 cl +np +201584 cl +vp +pp +np +np +201590 cl +cl +201596 cl +cl +pp +np +np +np +201603 cl +cl +np +cl +cl +201609 cl +np +201612 cl +pp +np +cl +cl +cl +np +np +201623 cl +np +np +np +np +cl +201634 cl +201637 cl +cl +np +201642 cl +201644 cl +201647 cl +pp +np +cl +pp +np +201655 cl +cl +201659 cl +pp +np +np +201666 cl +pp +np +pp +np +201672 cl +vp +np +201676 cl +201680 cl +pp +201683 cl +201687 cl +np +201690 cl +np +cl +pp +201696 cl +pp +201700 cl +np +201703 np +cl +201706 pp +pp +np +np +201713 np +np +201717 cl +201720 cl +np +201723 cl +np +np +np +np +cl +201730 np +np +201734 cl +np +pp +cl +201740 cl +201743 cl +cl +np +201748 cl +np +np +pp +201753 cl +pp +np +np +np +201759 cl +np +np +np +pp +201766 cl +np +201769 np +201771 np +np +201774 np +201779 cl +201781 cl +201783 cl +pp +201786 cl +np +201789 cl +pp +np +cl +pp +np +201796 cl +np +201800 cl +cl +np +201804 cl +201806 cl +201808 cl +np +np +201814 cl +pp +np +201818 cl +np +np +np +np +201827 cl +pp +np +201831 cl +np +pp +201836 cl +201838 cl +pp +201841 cl +201843 np +np +201847 cl +201849 cl +201852 cl +np +201857 cl +201860 cl +np +pp +np +np +201867 cl +201869 cl +pp +np +np +np +201876 cl +np +201880 cl +201883 cl +pp +201886 cl +201888 cl +201890 cl +pp +201894 cl +201897 cl +np +201900 cl +np +201903 cl +pp +201907 cl +cl +np +cl +np +pp +np +201916 cl +pp +np +pp +pp +np +201924 cl +np +pp +np +pp +np +201933 cl +pp +np +201940 cl +201942 cl +cl +np +201947 cl +pp +np +201952 cl +np +pp +201959 cl +201961 cl +np +np +cl +201966 cl +201968 cl +np +np +201972 cl +np +cl +np +np +201978 cl +np +cl +201982 cl +pp +np +pp +np +np +201989 cl +np +cl +201993 np +201995 np +201998 cl +202000 cl +pp +202003 cl +202005 cl +np +202009 cl +202011 cl +pp +advp +pp +np +202017 cl +202019 cl +202021 cl +202023 cl +202025 cl +202028 np +np +np +np +202033 cl +pp +np +202039 cl +cl +202042 cl +202044 np +np +cl +202048 cl +np +202051 cl +202055 cl +202057 cl +202059 cl +pp +202064 cl +np +pp +np +cl +pp +np +202072 cl +np +202076 cl +202078 np +202081 cl +pp +pp +np +202086 cl +cl +np +202091 cl +202093 cl +cl +202096 cl +pp +np +202100 cl +202103 cl +np +202106 cl +cl +cl +pp +np +np +cl +202116 cl +cl +np +np +202125 cl +202127 cl +202129 cl +np +np +cl +202135 cl +np +202138 cl +202140 cl +cl +202143 cl +202146 cl +202148 cl +202150 cl +np +202154 cl +np +cl +202159 cl +np +pp +202163 cl +np +202166 cl +np +np +np +202171 cl +202173 cl +np +202177 cl +cl +pp +pp +np +202185 cl +202187 cl +pp +202190 cl +np +cl +np +202195 cl +202197 np +np +202200 cl +202203 cl +202205 cl +202207 cl +np +202210 cl +202214 cl +cl +np +np +np +202221 cl +np +202226 cl +np +np +202230 cl +202234 cl +202236 cl +202238 cl +202240 cl +202242 cl +pp +202245 np +202247 cl +202249 cl +202251 cl +202254 cl +cl +np +cl +202261 cl +202263 cl +cl +202266 np +202268 np +202270 cl +np +np +202274 cl +np +202277 cl +202279 cl +cl +202283 cl +202285 np +pp +np +202290 cl +pp +np +202294 cl +cl +pp +202300 cl +np +pp +pp +np +202306 cl +cl +202311 cl +202313 np +202315 np +202317 cl +202319 cl +202321 cl +np +np +np +202328 cl +202330 cl +pp +202334 cl +np +202337 cl +np +202341 np +202343 np +202346 cl +202348 np +np +pp +cl +np +np +202355 cl +202357 cl +202359 cl +202362 cl +np +pp +np +202367 cl +np +np +202373 cl +pp +202376 cl +cl +np +np +202381 cl +202383 cl +pp +np +202388 cl +pp +np +202392 cl +np +202395 np +np +np +202399 cl +pp +202403 cl +pp +np +np +202408 cl +202412 cl +np +pp +np +202417 cl +pp +np +np +pp +np +pp +np +cl +cl +pp +np +202432 cl +np +np +np +202437 cl +pp +pp +np +pp +np +202444 cl +202448 cl +np +202451 cl +pp +cl +pp +np +cl +202458 cl +advp +pp +np +202464 cl +202466 np +202468 np +202473 cl +cl +cl +202477 cl +202480 cl +np +pp +np +np +np +pp +202488 cl +202490 cl +pp +202496 cl +202498 cl +np +202501 cl +np +np +pp +202506 cl +pp +202511 cl +np +cl +np +np +np +np +np +np +np +202522 cl +np +np +np +np +202529 cl +np +pp +np +np +np +202537 cl +202541 np +np +np +np +202546 cl +cl +202549 cl +pp +np +np +np +202555 cl +202559 cl +202562 cl +pp +np +202566 cl +202568 cl +cl +np +202572 cl +202575 cl +np +202578 cl +202580 cl +pp +np +np +np +np +202588 cl +np +pp +202592 cl +202596 cl +np +np +np +pp +np +202603 cl +202606 cl +pp +np +202611 cl +np +202614 cl +pp +202619 cl +np +202622 cl +np +np +202627 cl +np +np +pp +202632 cl +pp +np +202637 cl +np +202640 np +np +202643 cl +pp +np +cl +202648 cl +pp +np +np +np +202654 cl +pp +np +202658 cl +cl +202661 cl +202664 cl +pp +np +202668 np +np +np +202674 cl +cl +np +pp +202679 cl +vp +202682 cl +202684 np +cl +np +np +cl +pp +np +202693 cl +np +np +np +202700 cl +cl +cl +202704 cl +vp +pp +202708 cl +202711 cl +202713 np +202715 cl +pp +202719 cl +np +pp +np +202724 cl +pp +202728 cl +pp +np +202732 cl +202734 cl +np +202738 cl +np +pp +202742 cl +202744 cl +cl +np +pp +202750 cl +np +pp +202755 cl +202757 cl +pp +np +202763 cl +202765 np +pp +np +np +202770 cl +cl +cl +202774 cl +np +202778 cl +np +202781 cl +np +202785 cl +202789 cl +np +202793 cl +np +cl +202797 cl +np +202800 cl +np +np +np +202807 cl +202809 cl +202811 cl +np +np +np +cl +pp +np +202819 cl +202821 cl +np +202825 cl +202827 cl +np +np +202831 cl +202833 cl +np +np +pp +np +np +pp +np +202843 cl +202845 cl +202848 cl +cl +np +np +np +np +202855 cl +202857 cl +np +202860 cl +np +np +202865 cl +202867 cl +202869 pp +np +np +202874 cl +pp +pp +np +np +202880 cl +202882 np +np +202886 cl +pp +np +202891 cl +202893 cl +202896 cl +202898 np +202901 cl +202903 cl +cl +202906 cl +cl +202910 cl +202912 cl +202914 cl +pp +np +np +cl +pp +202922 cl +np +np +np +cl +np +np +np +np +202932 cl +202934 cl +pp +np +pp +202940 cl +cl +cl +np +cl +202947 cl +np +202951 cl +pp +np +202955 cl +np +pp +np +202960 cl +202962 cl +cl +np +np +np +cl +np +np +np +np +202974 cl +np +cl +np +np +pp +202982 cl +202984 cl +np +202987 cl +202990 cl +202992 cl +pp +np +cl +203000 cl +np +cl +pp +np +203006 cl +np +203010 cl +203012 cl +cl +pp +203018 cl +cl +np +pp +pp +203024 cl +np +np +203028 np +cl +cl +203032 cl +np +np +203036 cl +np +np +203040 cl +pp +cl +203044 cl +203047 cl +np +np +203051 cl +np +np +203058 cl +np +203061 cl +np +203064 cl +203066 cl +203068 cl +203071 cl +np +np +203075 cl +pp +203080 cl +np +np +pp +np +pp +203088 cl +pp +np +203092 cl +203094 cl +np +np +np +203099 cl +np +np +np +203106 cl +203108 cl +203111 cl +203113 cl +pp +pp +203117 cl +pp +203120 cl +203122 cl +203124 cl +203126 cl +203129 cl +pp +np +203133 cl +np +203136 cl +pp +pp +np +203146 cl +np +np +203150 cl +cl +203155 cl +203157 cl +np +203160 cl +np +203163 cl +203166 cl +203168 cl +np +np +203172 cl +203174 cl +203176 np +203178 cl +pp +np +np +203183 cl +pp +203188 np +np +cl +203192 cl +203194 cl +203197 cl +203199 cl +np +np +np +203205 cl +cl +203208 cl +np +cl +203213 cl +pp +np +np +np +np +cl +203221 cl +np +np +203225 cl +pp +np +np +pp +np +cl +203233 np +np +pp +np +pp +203242 cl +203244 cl +np +pp +np +203249 cl +np +203252 cl +cl +203256 cl +np +pp +np +203263 cl +pp +203266 cl +pp +np +pp +np +203272 cl +np +203275 cl +cl +203279 cl +pp +np +203283 cl +203285 cl +np +np +np +203290 cl +np +203293 cl +vp +203297 cl +pp +203301 cl +cl +203304 np +np +203308 cl +203310 cl +203312 cl +cl +203315 cl +pp +203318 cl +cl +advp +np +np +pp +np +203326 cl +203329 cl +cl +pp +203333 cl +203337 cl +np +np +cl +np +203343 np +203345 np +203348 cl +203351 cl +203353 cl +203355 cl +np +203358 cl +203361 cl +203363 cl +203365 cl +203367 cl +cl +pp +203371 cl +203377 cl +np +np +203381 cl +np +np +203385 cl +cl +cl +cl +203391 cl +203394 np +203396 np +203398 cl +203400 cl +203406 cl +203409 np +203411 np +np +np +cl +np +cl +np +np +203420 cl +203422 cl +203424 cl +np +203429 cl +203431 cl +np +np +203435 cl +203437 cl +203441 cl +203443 cl +203445 cl +203447 cl +pp +np +203451 cl +cl +203456 cl +np +cl +203460 cl +np +np +pp +np +np +203467 cl +pp +pp +203471 cl +203474 cl +203476 cl +203478 cl +203482 cl +203484 cl +203486 cl +203488 cl +203490 cl +203492 cl +203494 cl +203497 cl +cl +np +203502 cl +203504 cl +203507 cl +203509 cl +np +pp +203513 cl +pp +np +cl +cl +pp +203520 cl +vp +np +pp +np +np +pp +np +np +np +cl +np +203535 cl +203538 cl +cl +cl +cl +pp +203544 cl +cl +pp +np +np +np +cl +203554 cl +np +cl +203559 cl +np +203562 cl +203566 cl +cl +np +203570 cl +np +203575 cl +pp +np +pp +np +203582 cl +cl +cl +203587 cl +np +203590 cl +cl +pp +203597 cl +np +203600 cl +203602 cl +cl +np +pp +np +203609 cl +np +203613 cl +cl +np +203618 cl +203623 cl +cl +203626 cl +np +np +np +203631 cl +np +pp +203637 cl +np +pp +cl +np +np +pp +203645 cl +203647 cl +203649 pp +203652 cl +203656 cl +np +203659 cl +cl +cl +cl +np +203666 cl +np +203669 cl +203672 cl +cl +np +203677 cl +pp +203680 cl +np +203683 cl +pp +203686 cl +203688 cl +203691 cl +203693 cl +cl +cl +203697 cl +203699 cl +cl +203702 pp +cl +203705 cl +np +np +pp +203710 cl +cl +np +np +pp +203718 cl +cl +advp +pp +cl +203724 cl +np +np +203729 cl +pp +np +cl +pp +pp +203736 cl +pp +np +np +np +np +np +203747 cl +203749 cl +203751 cl +cl +203758 cl +203760 cl +cl +203763 cl +pp +203766 cl +cl +np +203771 cl +cl +np +203775 cl +203778 cl +cl +np +203782 cl +cl +203785 np +203787 np +203789 np +203791 cl +pp +np +203795 cl +pp +203800 cl +cl +np +np +np +203807 cl +pp +203810 cl +203812 cl +203815 cl +np +203818 cl +203820 cl +np +203823 cl +np +pp +203827 cl +203830 cl +203832 cl +np +203835 cl +cl +np +203839 cl +203842 cl +pp +np +203846 cl +np +pp +203850 cl +np +203853 cl +pp +203857 cl +np +cl +pp +np +np +203864 cl +203867 cl +pp +np +203871 cl +np +pp +203878 cl +cl +pp +np +np +203886 cl +203891 cl +pp +cl +np +203896 cl +203898 cl +adjp +203901 cl +pp +np +203907 cl +203911 cl +pp +np +np +cl +np +pp +np +203922 cl +pp +np +np +cl +203930 cl +cl +np +np +np +203937 cl +np +203942 cl +np +203945 cl +pp +pp +np +203950 np +np +np +cl +cl +cl +np +203958 cl +203960 cl +203962 cl +203965 cl +pp +203968 cl +pp +203972 cl +cl +pp +203978 cl +advp +np +203982 cl +203985 cl +cl +np +203989 cl +pp +np +np +203995 cl +pp +np +np +204000 cl +pp +cl +pp +204005 cl +204009 cl +np +np +204013 cl +204015 cl +204019 cl +204021 cl +pp +np +np +204026 cl +204028 cl +204030 cl +np +cl +np +204037 cl +cl +cl +204041 cl +204043 cl +np +204047 cl +204049 cl +204054 cl +cl +np +np +204059 cl +np +np +204064 cl +pp +204067 cl +pp +204070 cl +204072 cl +np +np +204078 cl +np +204081 cl +204083 cl +np +np +cl +204088 cl +cl +pp +204096 np +np +204099 np +np +cl +np +pp +np +np +cl +204108 cl +np +cl +204113 cl +cl +np +np +204118 cl +204121 cl +np +204125 cl +np +np +204129 cl +204131 cl +cl +cl +204135 cl +204137 cl +pp +204142 cl +cl +204145 cl +pp +np +204149 cl +np +204153 cl +204155 cl +204159 cl +cl +204162 cl +pp +204165 cl +np +np +np +204172 cl +pp +204176 cl +np +204180 cl +np +204185 cl +np +cl +204190 cl +cl +204194 cl +np +np +np +204199 cl +np +np +np +204205 cl +204207 np +np +np +pp +cl +204214 cl +204216 np +204218 cl +204220 cl +np +204223 cl +pp +np +204227 cl +204230 cl +pp +cl +pp +204237 cl +np +cl +pp +204242 cl +pp +np +204246 cl +pp +204250 cl +np +cl +np +204259 cl +pp +cl +pp +np +204265 cl +pp +cl +204271 cl +pp +204275 cl +np +204278 cl +204280 cl +204282 cl +pp +np +204286 cl +204291 cl +pp +204294 cl +np +np +pp +cl +204300 cl +204302 cl +204304 cl +pp +np +np +204310 cl +np +204313 cl +np +204318 cl +np +cl +204322 cl +pp +np +np +np +204331 cl +np +np +cl +pp +np +np +204340 cl +np +np +np +np +204346 cl +pp +np +np +204351 cl +204354 cl +np +np +np +pp +204360 cl +np +np +204364 cl +np +np +np +204369 cl +204371 cl +204373 cl +np +adjp +204377 cl +np +np +pp +np +np +204385 cl +np +204388 cl +cl +204391 cl +204393 cl +np +cl +np +np +204400 cl +204402 cl +np +cl +pp +np +np +204410 cl +204412 cl +204415 cl +204420 cl +204422 cl +204424 cl +np +np +204428 cl +204431 cl +np +pp +np +np +204437 cl +204439 cl +204443 cl +np +cl +204447 cl +adjp +204452 cl +pp +np +cl +np +np +204463 cl +pp +np +204467 cl +pp +np +cl +pp +np +204474 cl +np +204477 cl +cl +np +np +204482 cl +204484 cl +np +204489 cl +np +np +cl +np +np +204497 cl +np +pp +pp +np +np +204504 cl +204506 cl +204511 cl +204513 cl +cl +204517 cl +pp +np +np +204522 cl +204524 cl +np +np +np +204529 cl +204531 cl +np +pp +cl +np +204538 cl +204545 np +np +204550 cl +204552 np +204554 cl +pp +np +np +204559 cl +204563 cl +204565 np +204567 cl +pp +np +np +204572 np +np +cl +pp +np +cl +pp +204581 cl +np +204584 cl +pp +pp +204588 cl +204590 cl +204592 cl +204595 cl +cl +cl +np +204600 cl +cl +np +204606 cl +204609 cl +np +204612 cl +204615 cl +204619 cl +np +np +cl +cl +cl +204627 cl +pp +204630 cl +pp +204635 cl +pp +204638 cl +204640 cl +np +pp +cl +204648 cl +cl +np +np +np +204655 cl +np +204658 cl +204660 cl +204663 cl +204665 cl +np +advp +pp +204670 cl +204672 cl +pp +204676 cl +cl +np +204680 pp +204682 pp +204684 pp +204689 cl +pp +204692 cl +pp +204696 cl +pp +204700 cl +pp +np +204704 cl +204707 cl +pp +204710 cl +np +np +np +np +204717 cl +cl +204720 cl +cl +204727 cl +204729 np +np +np +cl +pp +np +np +204739 cl +pp +cl +cl +204744 cl +204746 cl +204749 cl +204752 cl +pp +np +204756 cl +204758 cl +cl +np +cl +np +pp +204766 cl +pp +np +204770 cl +204774 cl +204776 cl +204779 cl +204781 cl +204784 cl +pp +np +np +pp +cl +204791 cl +204794 cl +204796 cl +204799 cl +204801 cl +204804 cl +pp +np +204809 cl +cl +204813 cl +np +cl +cl +204819 cl +204821 cl +cl +204824 cl +cl +cl +pp +pp +cl +204832 cl +204834 cl +204837 cl +204839 cl +204843 cl +204848 cl +204850 cl +204852 cl +np +204855 cl +204857 cl +np +np +pp +204864 cl +np +204867 cl +np +np +204874 cl +np +np +pp +np +204880 cl +pp +np +204887 cl +np +204892 cl +204894 cl +np +np +204898 cl +np +np +pp +204904 cl +pp +np +np +204911 cl +cl +204914 cl +np +pp +np +np +204920 cl +pp +pp +np +np +204928 cl +204930 cl +204932 cl +np +np +vp +204937 cl +pp +204941 cl +204944 cl +pp +cl +pp +np +204951 cl +pp +np +np +pp +np +np +204959 cl +204961 cl +np +pp +204967 cl +np +np +204972 cl +204974 cl +204976 cl +pp +np +204982 cl +pp +np +204986 cl +pp +np +204990 cl +np +204993 cl +pp +np +204997 cl +np +np +cl +cl +pp +205004 cl +205006 cl +205009 cl +205011 cl +cl +cl +205015 cl +pp +205018 cl +pp +205021 cl +cl +205024 cl +cl +205027 cl +205030 cl +pp +np +cl +205036 cl +205038 cl +np +pp +205042 cl +205044 cl +pp +205049 cl +pp +np +205053 cl +cl +np +205058 cl +205060 cl +cl +np +np +pp +np +cl +205068 np +205071 np +np +205074 cl +np +205077 cl +np +205080 cl +205082 np +cl +np +205087 cl +np +np +205091 cl +205094 np +np +np +205099 cl +205102 cl +pp +np +cl +np +205108 cl +cl +cl +205113 cl +205115 pp +np +205118 cl +pp +205121 cl +np +pp +205125 cl +np +np +np +205130 cl +pp +np +205135 cl +205137 cl +205139 cl +np +np +205144 cl +205146 cl +np +cl +pp +205152 cl +np +205155 cl +205158 cl +205160 cl +205162 cl +pp +205165 cl +205167 cl +205169 cl +pp +205174 cl +pp +np +cl +pp +cl +205182 cl +205184 cl +np +np +205188 cl +np +205191 cl +pp +205197 cl +pp +np +205201 cl +pp +np +cl +pp +205209 np +pp +np +205213 np +cl +205216 cl +205218 cl +205223 cl +pp +205226 cl +pp +np +205230 np +cl +205233 cl +205237 cl +np +pp +205241 cl +np +np +np +205246 cl +np +205251 cl +pp +205254 cl +pp +np +205258 cl +cl +np +np +np +pp +205266 cl +np +np +205271 cl +np +205274 cl +pp +np +205278 cl +pp +np +205283 cl +205285 cl +pp +np +205289 cl +pp +np +205293 cl +pp +np +205297 cl +pp +np +205301 cl +pp +np +205305 cl +np +np +np +205312 cl +pp +np +cl +pp +np +205320 cl +pp +205323 cl +vp +np +pp +205332 cl +pp +cl +pp +205337 cl +pp +np +np +pp +205343 cl +205347 cl +pp +cl +pp +205352 cl +np +pp +205356 cl +np +205359 cl +205364 cl +np +205367 cl +205369 cl +205371 cl +205373 cl +pp +205376 cl +pp +205379 cl +vp +pp +205383 cl +np +205387 cl +205389 cl +205391 cl +205396 cl +cl +205399 cl +cl +pp +cl +np +205405 np +np +cl +cl +pp +np +205414 np +205416 cl +np +np +205420 cl +205423 cl +205425 cl +205429 cl +np +np +205433 cl +205435 cl +cl +np +205439 cl +pp +pp +205443 cl +cl +pp +np +np +pp +np +np +np +205453 cl +205455 cl +pp +205459 np +np +205463 cl +np +205467 cl +np +205470 cl +pp +np +np +205476 cl +np +cl +205480 np +205482 np +205484 pp +np +205487 pp +np +pp +205496 cl +cl +np +205500 cl +pp +205503 cl +cl +205506 cl +cl +205509 np +205511 cl +cl +205515 cl +np +205519 cl +pp +205525 cl +cl +205528 cl +pp +np +205532 cl +205535 cl +cl +205539 cl +cl +205542 np +205545 cl +205547 cl +205549 cl +205551 cl +205553 cl +cl +205556 cl +np +205559 cl +cl +cl +cl +np +pp +205568 cl +205570 cl +205573 cl +np +np +np +205578 cl +np +np +np +np +205585 cl +np +205589 cl +np +np +cl +np +pp +np +205598 np +205600 cl +np +205603 cl +205607 cl +205609 np +205611 np +205613 np +np +np +np +205618 cl +205621 cl +pp +205624 cl +np +np +205628 cl +np +np +np +205634 cl +205636 cl +np +205639 cl +cl +np +pp +np +205646 cl +np +205651 np +205656 cl +np +np +np +205661 cl +np +pp +np +np +np +205668 cl +np +pp +np +205676 cl +205678 np +np +np +np +np +np +205685 cl +np +205688 cl +np +205692 cl +np +205695 np +np +205698 cl +np +pp +np +np +np +np +205706 cl +cl +205711 cl +205713 np +205715 np +cl +205718 cl +205720 cl +205723 cl +np +np +pp +vp +205732 cl +np +np +205736 pp +np +np +205740 pp +np +np +205744 cl +cl +np +205749 cl +205751 pp +205753 pp +205755 np +cl +np +np +205760 cl +pp +205763 cl +205765 cl +205767 cl +cl +205770 cl +cl +205774 cl +cl +np +np +cl +np +np +cl +cl +np +205785 cl +205789 cl +cl +pp +np +205796 cl +cl +205800 cl +np +cl +pp +205805 np +205808 cl +205810 vp +205815 cl +205817 cl +np +pp +np +np +205824 cl +205826 cl +cl +205829 cl +np +np +pp +np +np +np +cl +np +cl +np +205841 cl +cl +pp +np +pp +205848 cl +205851 cl +205854 cl +np +pp +np +pp +np +205862 cl +205865 cl +pp +np +205870 cl +205872 cl +np +205877 cl +np +pp +205881 cl +cl +np +np +np +np +205889 cl +205891 cl +205894 cl +vp +205897 cl +205900 cl +np +205903 cl +205905 cl +pp +np +np +205910 cl +np +cl +cl +205916 cl +np +np +np +cl +cl +cl +np +cl +205928 cl +pp +np +np +205934 cl +np +205937 cl +cl +np +np +np +205943 cl +205945 cl +pp +205948 cl +pp +205951 cl +np +205955 cl +205957 cl +205959 np +np +np +205963 np +cl +205966 cl +205968 cl +np +np +np +pp +np +np +205978 cl +pp +np +np +np +np +np +cl +np +np +np +205990 cl +np +205993 cl +np +np +np +205999 cl +np +206002 cl +206004 cl +np +206007 cl +206009 cl +206013 cl +pp +206016 cl +pp +pp +np +206021 cl +np +cl +np +206026 cl +pp +np +np +np +206032 cl +np +cl +206038 cl +cl +pp +np +206043 cl +cl +pp +206048 cl +206050 cl +pp +np +206054 cl +cl +np +np +np +206061 cl +cl +206064 cl +cl +np +206069 cl +np +206074 cl +np +np +206078 cl +206083 cl +np +cl +pp +np +np +206090 cl +np +206094 cl +pp +206097 cl +cl +206100 np +np +np +206105 cl +206109 cl +np +206112 cl +cl +cl +206116 cl +206118 cl +np +pp +206123 cl +np +cl +206127 np +np +206130 np +np +206134 cl +206136 cl +cl +np +206143 cl +206145 np +206147 np +cl +cl +206151 cl +cl +206154 cl +np +206158 cl +206160 cl +206162 cl +pp +206165 cl +np +206168 cl +206170 cl +pp +np +cl +206175 cl +np +206181 cl +np +np +np +206186 cl +206189 cl +pp +np +206193 cl +np +cl +206198 cl +np +206202 cl +np +206206 cl +206208 cl +206211 cl +cl +206214 cl +cl +206217 cl +206219 cl +np +pp +206223 cl +vp +cl +pp +206228 cl +np +206231 cl +pp +np +cl +206237 cl +np +cl +206243 cl +cl +np +np +cl +np +206250 cl +np +206255 cl +np +cl +np +np +np +206262 cl +pp +pp +np +206267 cl +206269 cl +206273 cl +np +np +cl +pp +206280 cl +np +206283 cl +cl +np +np +206289 cl +206292 cl +cl +cl +206296 cl +np +cl +np +np +206302 cl +np +206305 cl +206307 cl +206310 cl +206312 cl +206315 cl +np +206319 cl +cl +np +pp +206324 cl +206327 np +cl +206330 cl +206333 cl +pp +np +206339 cl +np +206344 cl +np +np +206348 cl +pp +np +206353 cl +vp +206358 np +np +np +np +206364 cl +np +np +np +np +206372 cl +pp +np +np +cl +np +206379 cl +vp +206384 cl +np +np +np +np +206390 cl +206392 np +np +np +206396 cl +cl +np +np +206401 cl +np +cl +cl +206409 cl +np +np +206413 cl +np +np +206418 cl +np +cl +np +206423 cl +np +206428 cl +np +cl +pp +advp +pp +206437 cl +pp +206440 cl +cl +pp +cl +206445 cl +np +206448 cl +np +np +206452 cl +pp +np +np +206460 cl +np +206463 cl +pp +np +np +np +206470 np +np +206473 np +np +np +np +206479 np +np +206483 np +206486 cl +cl +cl +206490 np +206492 np +cl +np +206497 cl +cl +np +np +206502 cl +np +206505 cl +cl +np +np +206511 cl +pp +np +np +np +pp +np +206519 cl +pp +np +cl +206524 cl +206526 cl +np +cl +206530 cl +np +adjp +206535 cl +cl +np +adjp +np +np +np +206546 cl +np +cl +np +cl +206553 cl +cl +np +np +206559 cl +np +206562 cl +206565 cl +pp +np +np +pp +np +206572 cl +np +np +np +np +np +206580 cl +np +np +206584 cl +206588 cl +np +206593 cl +np +np +206597 np +206600 np +206602 cl +206604 cl +cl +pp +np +206609 cl +cl +cl +np +np +206615 cl +np +np +np +np +206621 cl +206628 cl +206630 cl +206632 cl +np +np +206636 cl +206638 cl +206640 cl +np +206645 cl +206647 cl +np +cl +np +206653 cl +np +cl +pp +cl +206660 cl +pp +np +np +pp +206666 cl +np +np +206670 cl +pp +np +np +np +206676 cl +np +np +np +206682 cl +np +206687 cl +206689 cl +np +np +206694 cl +np +206698 cl +pp +np +cl +np +206705 np +np +206710 cl +np +np +np +206715 cl +pp +np +206719 cl +np +cl +206725 cl +pp +np +206729 cl +206731 cl +pp +np +206735 np +cl +pp +vp +206741 cl +pp +np +np +np +206747 cl +np +np +206754 cl +np +np +np +206759 np +pp +np +cl +206764 cl +cl +np +pp +np +206773 cl +206775 cl +206777 pp +206780 pp +206782 np +np +cl +np +206787 cl +206789 cl +np +pp +np +206794 cl +cl +206799 cl +206801 np +206803 np +np +206806 cl +pp +np +206811 cl +np +206817 cl +np +np +np +206822 cl +pp +np +206827 cl +cl +cl +np +206832 cl +206836 cl +np +206839 cl +206841 cl +pp +np +206846 cl +206848 cl +np +206853 np +206855 cl +pp +np +np +cl +pp +np +cl +pp +np +206868 cl +np +206871 np +np +206874 cl +pp +np +206879 cl +206881 cl +206884 cl +np +206887 cl +cl +pp +206892 cl +pp +np +206897 cl +pp +np +cl +206905 cl +cl +pp +np +206910 cl +cl +np +np +pp +cl +np +np +np +206920 cl +pp +np +206924 cl +pp +np +206929 cl +cl +206933 cl +206936 cl +np +np +206940 cl +cl +206944 cl +cl +pp +np +206950 cl +cl +np +206954 cl +206956 cl +206958 cl +206961 cl +cl +206964 cl +cl +206967 cl +np +206973 cl +cl +cl +cl +206978 cl +206981 cl +cl +206985 cl +206988 cl +206991 cl +206993 cl +pp +np +206998 cl +pp +np +np +207003 cl +cl +pp +np +207009 np +207011 np +207014 np +207016 np +207018 cl +207020 np +cl +np +207025 cl +np +207028 cl +207033 cl +207035 np +np +np +np +207040 cl +np +cl +np +pp +np +np +np +207049 cl +np +207053 cl +pp +np +207057 cl +cl +207061 cl +cl +207065 np +207067 np +207070 cl +np +cl +np +207076 cl +np +207079 cl +207082 cl +np +cl +207088 cl +cl +207091 cl +cl +np +207096 cl +207098 cl +np +np +cl +207103 cl +207106 cl +207109 np +pp +np +207113 cl +pp +207116 cl +207120 cl +np +np +cl +np +207126 cl +207130 cl +pp +np +np +np +np +np +207138 cl +np +np +pp +np +np +np +207146 cl +np +np +pp +np +np +cl +advp +207157 cl +pp +np +np +np +207163 cl +pp +207168 cl +np +cl +np +207174 cl +pp +np +207178 cl +cl +207181 cl +np +207186 cl +np +np +207190 cl +np +np +207195 cl +np +np +207199 cl +pp +np +np +207205 cl +cl +207209 cl +207211 cl +207214 np +np +207217 np +np +207220 cl +np +207225 cl +cl +cl +207230 cl +207232 cl +207237 cl +np +np +np +np +pp +np +cl +vp +pp +np +np +207250 cl +207253 cl +207255 cl +207257 np +np +np +np +207263 cl +cl +pp +np +np +207269 cl +pp +np +pp +np +np +np +207278 cl +207280 cl +207286 cl +207289 np +pp +np +np +207294 np +np +207297 np +np +pp +np +np +207303 cl +207305 cl +cl +207308 cl +cl +np +pp +207315 cl +207317 cl +pp +np +207321 cl +pp +np +np +207328 cl +cl +pp +np +207334 cl +np +207337 cl +207340 cl +207343 cl +np +207346 cl +cl +207350 cl +207352 cl +pp +np +np +np +np +np +207360 cl +207364 cl +207366 cl +cl +pp +np +np +np +207374 cl +207376 np +np +cl +np +np +cl +np +207386 cl +207388 cl +207390 cl +np +np +207394 cl +207396 cl +pp +np +207401 cl +cl +np +np +np +207408 cl +pp +np +cl +pp +pp +np +cl +np +np +np +207421 cl +207423 cl +pp +np +207427 cl +207429 cl +207431 cl +207433 cl +np +cl +pp +np +207439 cl +207442 cl +207445 cl +np +pp +np +adjp +np +np +207456 cl +cl +np +207460 cl +np +207463 cl +cl +207466 cl +np +np +cl +cl +cl +207473 cl +np +207477 cl +207481 cl +np +207484 cl +207486 cl +np +207489 cl +207491 cl +np +cl +pp +207499 cl +cl +np +207503 np +cl +207506 np +adjp +207509 cl +207514 cl +207516 cl +cl +np +np +207521 cl +cl +207524 np +207526 cl +207531 cl +207533 cl +cl +np +np +207538 cl +np +cl +207542 np +207545 cl +np +207548 cl +np +cl +207553 cl +207556 cl +207558 cl +207560 cl +cl +np +np +207567 cl +207571 cl +cl +207574 cl +cl +207579 cl +cl +np +np +207584 cl +207586 cl +cl +207590 cl +cl +cl +np +np +207597 cl +cl +cl +207601 cl +cl +np +207605 cl +np +207608 cl +np +207611 cl +pp +np +pp +np +np +207618 cl +cl +207622 cl +207625 cl +cl +np +np +207631 cl +207633 cl +np +207636 cl +207638 cl +cl +207641 cl +pp +cl +207646 cl +np +np +pp +np +207652 cl +np +np +207658 cl +np +207661 cl +207664 cl +cl +207667 cl +cl +pp +207672 cl +207674 np +207677 cl +pp +207681 cl +207683 cl +207685 cl +np +np +207691 cl +np +207694 np +cl +np +207699 cl +pp +cl +cl +np +np +np +np +cl +207711 np +cl +np +np +pp +np +cl +cl +207722 np +pp +cl +cl +np +cl +np +207730 cl +pp +np +cl +pp +207736 cl +pp +np +207740 cl +pp +np +207744 cl +np +pp +np +np +np +207752 cl +cl +207755 cl +pp +207758 cl +np +207761 np +np +cl +207767 cl +207769 cl +pp +np +pp +pp +np +np +207779 cl +cl +cl +207784 cl +pp +np +np +np +np +207791 cl +pp +cl +cl +207798 cl +np +pp +np +np +207807 cl +cl +np +np +pp +207813 cl +np +207818 pp +207820 pp +np +np +207826 pp +np +np +207832 cl +cl +cl +207836 cl +pp +np +np +207845 cl +vp +pp +np +cl +207851 cl +cl +np +pp +np +cl +207861 cl +cl +pp +np +cl +207867 np +np +207870 cl +pp +pp +np +cl +np +cl +pp +np +207880 cl +pp +pp +207886 cl +cl +pp +cl +np +207895 cl +cl +pp +np +cl +vp +207904 np +207913 np +207916 np +207918 np +207920 cl +np +vp +np +207925 pp +207929 np +np +np +207933 pp +np +np +207940 cl +pp +np +np +cl +pp +np +np +207949 cl +np +np +pp +np +pp +207960 cl +cl +np +207964 cl +np +np +np +pp +np +pp +207973 cl +207975 cl +207978 cl +vp +pp +207982 cl +np +np +np +np +207991 cl +pp +np +np +207997 cl +cl +208000 cl +np +np +np +208006 cl +np +208009 cl +208011 cl +np +np +np +np +np +208018 cl +np +208022 cl +pp +np +208027 cl +np +np +208031 cl +208033 cl +pp +208036 cl +np +np +208041 cl +cl +208044 np +np +cl +pp +np +208050 cl +208053 pp +208055 np +cl +pp +np +np +pp +np +208063 cl +pp +np +np +np +pp +np +208072 cl +208078 cl +cl +208083 cl +cl +cl +208088 np +208090 cl +pp +np +np +cl +np +np +208098 np +208100 np +208102 cl +pp +cl +pp +np +np +np +208113 cl +208115 cl +np +pp +208119 cl +pp +np +np +208125 cl +pp +208128 cl +np +np +np +pp +np +208137 cl +pp +np +208141 cl +np +208144 cl +208146 np +np +cl +vp +208154 cl +cl +208157 cl +208159 cl +pp +np +np +208165 cl +np +208168 cl +cl +np +208172 cl +np +cl +208177 cl +vp +pp +208181 np +np +pp +np +208186 np +pp +np +208193 cl +np +np +208197 cl +np +208200 cl +208202 cl +np +cl +np +np +208210 cl +208212 cl +cl +cl +cl +np +208219 cl +208222 cl +208224 np +np +np +cl +pp +208230 cl +208237 cl +208239 np +208245 np +208251 np +np +208254 np +np +pp +208260 np +np +cl +208268 cl +np +np +np +np +np +208277 cl +208279 cl +cl +np +pp +cl +cl +208287 cl +cl +208290 cl +vp +208295 cl +cl +pp +np +np +np +np +208303 cl +208307 np +208309 np +208311 cl +cl +208314 cl +np +np +208323 cl +cl +208326 cl +np +np +np +cl +208332 cl +pp +208335 np +208339 cl +pp +np +np +cl +np +208346 cl +pp +np +np +pp +np +208354 cl +208356 np +np +208359 np +np +208362 cl +np +np +208366 cl +np +np +208371 cl +pp +208374 pp +np +np +208378 pp +np +np +pp +np +np +pp +np +np +208388 cl +208393 cl +pp +np +208397 cl +pp +np +cl +208404 np +208407 cl +np +pp +208411 cl +np +pp +208415 cl +np +np +np +208423 cl +cl +np +208427 cl +np +np +208435 cl +np +np +208443 np +np +cl +pp +np +pp +208453 cl +cl +pp +np +pp +np +cl +np +adjp +np +208464 np +cl +208467 np +np +pp +np +cl +cl +cl +np +cl +np +np +np +cl +cl +pp +208484 cl +pp +208487 cl +np +pp +pp +208492 cl +pp +np +208496 cl +208501 cl +pp +np +np +208506 cl +np +np +208510 cl +np +np +np +pp +208517 cl +np +np +pp +208522 cl +cl +np +np +208527 cl +np +cl +pp +np +np +208538 cl +cl +cl +pp +pp +pp +208545 np +208548 cl +208553 cl +np +np +pp +pp +np +np +208562 cl +208564 cl +208566 cl +208568 cl +np +cl +pp +np +np +np +pp +np +np +cl +pp +np +np +np +208586 cl +pp +208589 cl +np +np +208593 cl +cl +np +np +np +np +208601 cl +208603 cl +np +np +np +208608 cl +np +np +np +np +np +pp +np +208617 cl +208624 cl +pp +np +208628 cl +cl +np +np +208633 cl +pp +np +208638 cl +np +np +np +np +np +208646 cl +np +np +208650 cl +208654 np +208656 np +np +208659 cl +208663 cl +cl +np +208667 cl +pp +208670 np +208672 np +np +208675 cl +208682 cl +pp +208686 cl +208688 cl +np +pp +np +np +208694 pp +np +np +np +208699 cl +np +np +np +np +208707 cl +np +208710 cl +208712 np +np +208715 np +208717 np +pp +208720 cl +208722 np +np +208727 cl +np +np +208731 cl +cl +cl +pp +np +np +np +np +208743 cl +208745 cl +np +np +208749 cl +pp +np +np +np +adjp +208757 cl +vp +208761 np +np +np +208765 np +208767 np +np +np +208771 np +208775 cl +np +208778 cl +np +208782 pp +np +208787 cl +np +208790 cl +pp +np +208795 cl +208797 np +208799 np +208801 cl +208804 cl +208807 cl +208809 cl +pp +pp +np +208814 cl +pp +pp +208819 np +208821 cl +np +208824 cl +pp +np +np +208830 cl +np +208833 cl +pp +pp +np +208839 cl +208842 pp +np +pp +208846 np +np +np +np +208852 cl +cl +np +np +cl +pp +np +np +pp +pp +208863 np +np +np +208867 cl +208869 cl +pp +208872 cl +pp +np +cl +cl +cl +208880 cl +pp +np +cl +208886 cl +cl +pp +pp +np +cl +pp +208895 cl +cl +cl +pp +208901 cl +208904 cl +208908 cl +cl +cl +pp +np +np +208916 np +208919 cl +cl +np +np +208926 cl +208928 np +np +208931 np +208935 cl +cl +208938 cl +208940 cl +pp +pp +np +208945 cl +208947 cl +208949 cl +np +208955 cl +np +np +208959 cl +208961 cl +np +208964 cl +208966 cl +208968 cl +pp +np +pp +np +np +np +np +208977 cl +208980 pp +208982 cl +208986 cl +208988 np +208990 np +cl +np +np +pp +pp +208997 np +208999 cl +209002 cl +cl +np +pp +np +209012 cl +pp +209015 cl +209017 cl +np +209022 cl +209024 cl +209026 np +np +209031 np +np +np +np +209037 np +np +209041 cl +209043 cl +pp +np +cl +cl +209052 cl +np +209057 cl +cl +209061 cl +cl +np +np +np +cl +np +pp +209072 cl +pp +np +np +np +np +209079 cl +209082 np +np +209085 cl +209087 np +np +pp +np +np +pp +np +209099 cl +pp +209102 cl +np +np +np +209108 cl +np +209111 cl +pp +np +np +np +cl +np +np +209121 cl +209124 pp +209126 cl +np +np +209132 cl +np +pp +np +np +209138 cl +209141 np +np +cl +cl +209146 cl +pp +209149 np +np +cl +np +pp +np +np +np +np +pp +np +209162 cl +209164 cl +209166 np +pp +np +np +209171 cl +209173 cl +pp +np +209177 cl +pp +209181 cl +cl +np +209186 cl +np +np +pp +np +209193 cl +np +209196 np +np +np +pp +209202 np +cl +np +np +209207 cl +np +np +209211 np +209213 np +209215 cl +np +pp +np +np +cl +pp +209223 cl +pp +np +np +np +np +np +np +209232 cl +np +cl +np +np +cl +pp +209240 cl +pp +np +np +209247 cl +cl +pp +np +209252 np +209254 np +np +np +209258 np +cl +pp +209263 cl +np +209266 cl +pp +np +209270 np +np +pp +209275 cl +np +209279 cl +pp +pp +advp +209284 cl +209288 cl +np +209291 cl +np +209294 cl +np +np +pp +np +209303 cl +pp +np +cl +np +209309 np +209311 np +209313 np +pp +209316 cl +209319 np +209324 cl +pp +np +209328 cl +cl +pp +np +cl +209334 pp +np +209337 pp +np +209340 cl +cl +np +pp +209347 np +np +209352 cl +pp +np +np +cl +pp +cl +209360 np +209362 np +np +np +209366 cl +cl +pp +np +np +209375 np +cl +cl +np +pp +pp +pp +209383 cl +209386 np +209388 cl +pp +209391 np +209393 cl +pp +np +209399 cl +pp +np +np +209404 cl +pp +np +209409 np +209411 cl +pp +cl +pp +cl +209419 cl +209421 cl +np +np +209425 np +209428 cl +209431 cl +np +209434 cl +209436 cl +209438 cl +pp +np +209443 cl +cl +cl +209447 np +209449 cl +pp +cl +209454 cl +cl +cl +pp +np +pp +cl +cl +np +np +209468 cl +209470 cl +np +pp +np +209475 cl +209477 cl +cl +209483 cl +pp +pp +np +cl +cl +pp +np +np +np +209495 cl +cl +cl +209500 pp +np +np +np +209506 cl +np +209510 cl +pp +209515 cl +pp +np +209519 cl +209521 cl +np +cl +209525 cl +cl +cl +209532 cl +cl +cl +209536 cl +pp +np +209540 cl +np +pp +209544 cl +209547 cl +np +adjp +209551 np +cl +pp +np +np +np +np +209561 cl +cl +pp +np +209566 cl +cl +pp +209570 np +209572 np +209576 cl +cl +pp +np +209581 cl +cl +209586 cl +209588 np +209590 np +209592 np +209594 np +np +pp +209598 cl +np +np +pp +np +np +209605 np +209608 cl +pp +209611 cl +209613 cl +np +np +np +209618 cl +np +pp +np +209623 pp +np +209626 pp +np +np +209631 cl +pp +pp +np +np +pp +209639 np +np +np +cl +209647 pp +209650 np +cl +cl +cl +209655 np +np +209658 np +209663 cl +advp +pp +np +np +209669 cl +np +np +cl +pp +np +np +np +pp +209680 cl +np +pp +209684 cl +209687 pp +np +np +209691 np +np +np +209696 cl +cl +cl +209700 np +cl +pp +vp +209706 cl +np +np +209710 cl +np +np +np +pp +209718 cl +np +np +np +209723 cl +209728 cl +cl +np +209732 cl +cl +209737 cl +np +np +np +np +209743 np +np +np +209747 cl +np +pp +np +209753 cl +np +pp +209759 cl +cl +np +209764 cl +np +np +209768 cl +209770 cl +pp +np +np +np +209777 cl +209780 cl +209789 cl +pp +np +cl +vp +np +np +np +209798 cl +cl +cl +np +209803 cl +pp +np +np +np +209812 cl +np +np +cl +pp +209818 np +np +209822 cl +pp +np +cl +np +np +209829 cl +cl +np +pp +np +np +np +209838 cl +np +cl +209842 pp +np +np +np +209847 cl +np +np +np +209852 cl +pp +np +np +np +209860 cl +cl +209863 cl +cl +pp +np +np +209869 cl +209871 cl +pp +np +np +np +np +209879 cl +cl +np +209884 cl +np +cl +np +np +cl +209892 cl +np +pp +np +209897 cl +209901 cl +cl +np +209905 cl +cl +209910 cl +np +np +np +209915 cl +np +np +cl +209920 cl +209923 cl +pp +cl +209927 cl +np +209931 cl +cl +209937 cl +np +pp +209941 cl +209943 cl +cl +np +np +cl +cl +np +np +209952 cl +np +np +pp +np +209958 cl +209962 cl +pp +np +np +209967 cl +209971 cl +cl +np +cl +209976 cl +cl +pp +np +np +209983 cl +np +209986 pp +np +np +209990 pp +np +209993 cl +209996 cl +pp +np +np +np +np +210004 pp +np +210008 cl +pp +np +np +210015 cl +np +np +cl +210020 cl +np +210024 cl +cl +np +np +210033 cl +pp +pp +np +np +210039 cl +pp +210045 cl +210047 cl +np +np +210052 cl +np +np +np +np +np +np +cl +210063 cl +pp +np +cl +np +210071 cl +cl +210074 np +210076 np +210078 np +pp +210081 cl +np +np +210086 cl +np +pp +np +210091 cl +pp +np +210097 cl +np +pp +np +np +np +210104 cl +cl +210107 cl +210109 cl +cl +pp +np +np +np +np +np +np +np +210122 cl +cl +pp +np +pp +np +210129 cl +210133 cl +cl +210136 np +210138 np +pp +210141 np +210143 np +np +np +np +np +210149 cl +pp +np +cl +210155 cl +np +np +cl +pp +np +210163 cl +cl +cl +210168 cl +210170 cl +np +pp +np +210175 cl +np +pp +np +210180 cl +cl +210186 cl +np +np +210191 np +np +np +210195 np +cl +pp +210199 cl +210202 cl +cl +210205 cl +cl +np +210209 cl +pp +np +vp +pp +np +210216 cl +np +210221 cl +cl +np +pp +np +cl +pp +210229 cl +np +210232 cl +210235 cl +cl +pp +np +210241 cl +np +cl +210245 cl +cl +pp +np +np +210251 cl +cl +np +np +np +210257 cl +cl +pp +np +np +np +np +210266 cl +cl +210270 np +210272 cl +cl +210275 cl +210277 cl +np +np +np +np +210283 cl +cl +pp +210287 cl +np +210291 np +np +210295 cl +np +210298 cl +np +210303 cl +np +np +np +210308 cl +210310 np +np +np +cl +np +210316 cl +210320 cl +cl +210323 cl +cl +210328 cl +cl +210332 np +pp +np +np +cl +np +adjp +np +np +cl +np +210344 cl +pp +210350 cl +cl +cl +pp +np +np +210359 pp +np +np +cl +cl +cl +np +np +adjp +210369 cl +210372 cl +np +cl +210376 cl +pp +210381 cl +pp +210384 np +pp +np +np +np +210390 cl +pp +210393 cl +210395 cl +np +cl +210401 cl +advp +210404 cl +pp +np +np +210409 cl +210414 cl +pp +210417 np +np +210420 np +np +cl +210425 cl +210427 cl +pp +cl +cl +np +210435 cl +210438 cl +cl +np +cl +cl +pp +np +np +np +210448 cl +210453 cl +cl +pp +np +np +210459 cl +cl +pp +np +210465 cl +np +210468 pp +np +210471 pp +210473 cl +210475 cl +cl +np +210482 cl +pp +np +np +np +cl +np +np +pp +np +210493 cl +pp +np +np +np +np +np +210502 cl +np +cl +np +np +np +cl +cl +cl +np +np +np +210516 cl +210519 np +np +np +np +pp +cl +adjp +210528 cl +pp +np +np +210534 cl +210536 np +210538 np +np +np +210544 cl +np +pp +np +np +210550 cl +210554 np +adjp +210558 np +210567 cl +pp +np +210571 cl +cl +np +210577 cl +np +np +np +210583 cl +np +np +np +pp +210589 cl +np +np +np +np +210596 cl +adjp +210600 np +210603 pp +np +210608 cl +np +210611 np +pp +210614 np +210616 cl +210620 np +pp +210624 cl +np +210627 cl +cl +210630 np +210632 np +210634 cl +210636 cl +np +cl +210640 cl +cl +np +pp +210646 np +210650 cl +210652 np +210654 np +210656 np +210659 cl +cl +210663 cl +pp +np +210667 cl +np +np +cl +cl +np +np +cl +pp +210677 np +np +np +210681 np +210683 cl +cl +210687 cl +np +210690 np +np +np +210694 cl +np +210697 cl +210700 cl +cl +pp +np +210705 cl +pp +np +np +np +210711 cl +np +210715 cl +np +210718 cl +210721 cl +210728 cl +210731 cl +np +np +np +210736 np +np +cl +pp +np +210743 cl +pp +210746 cl +pp +210749 cl +pp +210752 np +np +210755 np +np +210758 cl +pp +np +210763 cl +210765 cl +cl +pp +np +pp +210772 cl +pp +210775 cl +np +np +pp +210780 np +np +cl +pp +210787 cl +pp +210790 cl +np +210793 cl +210795 cl +pp +210798 cl +np +np +np +pp +cl +210806 cl +np +210810 cl +np +np +pp +np +210816 cl +210819 np +210823 cl +cl +np +210828 cl +np +210832 cl +pp +210835 cl +pp +np +np +210841 cl +np +210848 cl +np +210851 cl +np +np +np +210856 cl +np +210859 cl +np +np +210864 cl +np +cl +np +pp +210873 cl +np +pp +210877 cl +pp +np +np +np +210884 cl +210887 pp +210889 np +210891 cl +cl +pp +210896 np +np +np +210903 cl +pp +np +np +210910 cl +np +210913 cl +np +np +210918 cl +cl +cl +pp +np +np +210927 cl +pp +np +np +np +210933 cl +np +np +np +210940 cl +cl +210944 np +np +210947 np +np +pp +np +210953 cl +pp +210959 cl +210962 np +np +210965 cl +pp +210968 cl +pp +np +210972 cl +np +pp +np +np +pp +210982 cl +np +np +np +210987 cl +np +np +cl +np +210994 pp +pp +cl +pp +210999 np +cl +np +211003 cl +cl +np +np +np +211009 cl +np +np +pp +211014 cl +211018 cl +pp +np +211022 cl +np +cl +np +pp +np +np +np +211033 cl +211035 cl +np +np +211039 cl +pp +211044 cl +np +np +211048 cl +pp +np +211057 cl +np +cl +pp +np +np +cl +211065 np +np +np +np +211072 cl +cl +cl +211076 cl +211078 cl +cl +np +211084 cl +cl +np +211088 cl +np +pp +np +211093 cl +211097 cl +np +np +cl +cl +211103 cl +pp +cl +211108 cl +cl +pp +211113 cl +211115 cl +np +cl +211119 cl +np +211123 pp +211125 cl +cl +cl +np +np +211133 cl +pp +np +np +211138 cl +pp +211141 np +cl +np +211147 cl +np +cl +pp +np +np +211154 np +pp +np +np +211160 cl +np +cl +np +211166 cl +cl +cl +np +cl +211172 np +np +np +np +np +np +211183 cl +cl +cl +211188 cl +np +211191 cl +np +np +np +np +211197 cl +np +211200 cl +pp +np +211206 cl +cl +np +np +211211 np +np +np +pp +211216 cl +np +np +211220 cl +cl +211225 cl +cl +pp +211229 cl +211232 np +np +cl +cl +cl +211239 np +211243 pp +np +211247 cl +pp +np +211251 cl +cl +211256 pp +211259 pp +np +211262 pp +np +np +211266 cl +211268 np +211270 cl +np +np +211274 cl +np +pp +np +np +211280 cl +211282 cl +211286 cl +pp +np +pp +np +pp +211294 np +211296 cl +pp +211299 np +211301 np +np +cl +np +cl +cl +211308 cl +cl +np +np +211314 cl +211316 cl +pp +np +np +pp +cl +np +211324 cl +211326 cl +211328 cl +211331 np +np +cl +pp +np +cl +211341 cl +pp +np +np +211346 cl +np +211349 cl +pp +np +np +np +np +211359 cl +np +211362 cl +cl +np +np +np +211368 cl +pp +np +np +211373 cl +211376 np +np +pp +np +211381 np +211384 cl +211387 np +np +np +211391 np +np +211394 np +np +211397 cl +cl +211401 cl +pp +211404 cl +np +np +np +np +np +pp +np +211413 cl +211415 cl +np +cl +pp +np +211421 cl +cl +cl +np +np +pp +pp +np +np +np +211432 cl +np +pp +np +np +np +pp +np +np +211443 cl +pp +np +211447 cl +cl +np +np +211453 cl +211457 cl +np +pp +211461 cl +np +211464 cl +np +211467 cl +np +np +np +np +211475 cl +np +cl +211479 cl +np +np +np +211485 cl +np +np +np +211494 adjp +211497 np +np +np +np +211503 cl +np +np +np +211508 cl +np +np +np +np +211515 cl +211517 cl +pp +np +np +np +211524 cl +211528 cl +np +pp +np +211533 cl +211537 cl +cl +np +np +211542 cl +np +pp +211548 cl +cl +np +cl +pp +np +211555 np +211557 cl +pp +np +np +211562 cl +cl +211565 cl +np +211568 cl +np +np +np +pp +np +np +211579 cl +cl +np +np +np +211585 cl +pp +211588 cl +cl +pp +np +211594 cl +np +np +np +pp +np +np +np +cl +211605 cl +np +211608 cl +211610 cl +cl +211614 np +np +211618 cl +cl +np +np +cl +211624 np +np +211628 cl +cl +211632 cl +vp +np +np +211638 cl +pp +np +np +np +pp +211645 np +np +pp +211650 cl +pp +np +np +np +211657 pp +np +211662 cl +np +np +211666 cl +np +pp +211672 cl +np +cl +pp +np +cl +cl +211682 pp +211687 cl +211689 cl +cl +np +211693 cl +cl +pp +np +np +np +np +211702 cl +np +211705 cl +pp +np +pp +211711 cl +211713 cl +np +211716 cl +211720 cl +211722 np +211724 cl +np +cl +np +211729 cl +np +211732 cl +211736 cl +np +pp +np +np +211743 cl +np +np +cl +pp +np +211750 cl +211752 cl +np +np +np +cl +cl +np +cl +np +211762 pp +pp +cl +cl +211767 np +np +np +211771 cl +211774 cl +pp +211777 cl +np +np +211784 cl +np +cl +pp +211789 np +np +np +211793 np +np +211796 cl +211804 cl +211806 np +np +211809 cl +cl +vp +np +cl +cl +cl +211819 np +211822 cl +np +np +pp +cl +211828 cl +np +np +np +np +pp +211837 cl +cl +cl +pp +cl +np +211846 cl +vp +pp +np +211851 cl +vp +pp +np +np +211857 np +211860 cl +np +pp +211864 cl +np +211868 cl +np +cl +211872 cl +pp +np +np +np +np +np +np +cl +211882 cl +np +np +211886 cl +211888 cl +np +np +211893 cl +pp +211896 cl +np +np +pp +pp +211902 cl +cl +np +np +np +pp +211910 cl +211913 pp +np +np +211917 cl +np +np +pp +np +211926 cl +pp +np +np +np +211932 cl +np +211936 cl +np +np +np +np +211943 cl +cl +pp +211947 np +211949 np +211952 cl +cl +np +cl +pp +pp +np +211960 cl +pp +np +cl +211968 cl +cl +211972 np +np +np +pp +211977 cl +np +np +np +211983 cl +np +pp +cl +211988 cl +211990 cl +pp +pp +211994 np +211996 cl +211998 pp +pp +cl +212003 cl +cl +212007 cl +cl +212014 np +212016 np +cl +pp +np +np +np +cl +cl +pp +vp +212029 cl +pp +np +np +212034 cl +212036 np +212039 cl +np +np +212043 cl +212045 cl +np +np +212051 cl +cl +np +cl +212056 np +212058 cl +212061 cl +cl +212065 cl +212068 cl +212070 cl +212073 cl +cl +np +cl +pp +212080 cl +cl +np +212084 np +np +cl +212090 cl +cl +pp +212096 cl +pp +212099 cl +cl +np +np +212104 cl +pp +np +np +np +cl +np +np +212113 cl +pp +np +np +np +212120 cl +cl +np +np +cl +cl +pp +np +cl +212130 pp +212132 pp +np +212136 cl +np +212139 cl +np +np +212143 cl +pp +np +np +np +212152 cl +pp +np +212156 cl +pp +np +212160 cl +np +212163 cl +cl +cl +cl +212170 cl +cl +np +212175 cl +pp +np +212180 np +212182 np +212184 cl +212188 cl +212190 cl +pp +np +np +np +212197 cl +np +212200 cl +np +np +cl +212207 cl +pp +212210 cl +cl +np +np +pp +212216 cl +pp +212220 cl +np +cl +212225 pp +np +np +np +cl +np +pp +np +np +pp +pp +np +212238 cl +212240 cl +212242 np +cl +np +212248 cl +pp +212253 cl +pp +212256 cl +cl +np +212261 cl +pp +np +212265 cl +cl +pp +np +cl +212274 cl +212277 cl +cl +212282 cl +cl +212285 cl +212290 cl +212292 cl +pp +np +212296 cl +cl +212299 cl +212302 cl +212304 np +212306 cl +212309 cl +np +212312 cl +212316 cl +pp +np +212321 cl +np +np +cl +212327 cl +cl +pp +212333 cl +vp +np +212337 cl +212343 cl +np +np +cl +pp +212349 cl +pp +pp +np +212356 cl +212358 cl +212363 cl +np +pp +212367 cl +cl +pp +212371 np +212373 cl +212375 cl +pp +np +np +cl +212382 cl +cl +212385 cl +212387 cl +np +cl +212392 cl +212394 cl +212397 cl +212400 pp +pp +np +np +212405 cl +np +np +np +pp +212411 cl +np +pp +np +cl +np +212418 cl +np +np +212423 cl +pp +np +212428 cl +212430 cl +np +212433 cl +np +np +pp +212442 np +212444 cl +cl +cl +pp +np +np +212453 cl +212456 cl +pp +np +212460 cl +cl +pp +np +212467 cl +212469 np +212472 cl +pp +np +212476 cl +212478 cl +212480 cl +np +212487 cl +pp +np +np +212492 cl +212494 cl +212496 cl +cl +212499 cl +cl +212504 cl +pp +np +np +pp +np +212511 cl +pp +np +np +212516 cl +np +np +np +212523 cl +np +212526 cl +212528 cl +212531 cl +212533 cl +pp +212536 cl +np +np +212541 cl +pp +212544 cl +cl +pp +np +212551 cl +212553 cl +212556 cl +pp +cl +212560 cl +np +212566 cl +np +cl +np +cl +212573 cl +np +np +np +212579 cl +np +np +212586 cl +212589 cl +cl +np +np +pp +np +cl +pp +212599 cl +cl +pp +cl +np +212606 cl +cl +212609 cl +212613 cl +cl +pp +np +212618 cl +212621 cl +pp +np +np +212627 cl +212629 cl +pp +pp +np +np +212636 cl +vp +212640 pp +pp +cl +pp +np +np +np +cl +212651 pp +np +212655 cl +cl +212660 cl +cl +np +pp +212665 cl +pp +212671 cl +np +pp +np +np +212679 cl +212681 cl +cl +212684 np +np +np +212688 np +np +np +np +212694 cl +cl +cl +pp +pp +pp +212701 np +212703 cl +212706 cl +212708 np +np +np +cl +cl +pp +np +pp +cl +cl +212720 cl +np +212724 cl +212727 cl +212729 cl +212732 cl +212735 cl +cl +np +212739 cl +212742 np +pp +np +212747 cl +pp +np +np +cl +212753 cl +cl +212756 cl +212759 np +212761 cl +212764 cl +pp +np +np +cl +cl +212772 cl +cl +pp +212778 cl +pp +np +cl +np +cl +212785 cl +pp +np +pp +cl +cl +cl +pp +212795 cl +cl +212798 cl +cl +pp +np +212803 cl +np +np +212807 cl +212809 cl +212813 cl +cl +pp +np +212820 cl +np +212823 cl +212825 cl +np +212828 cl +cl +pp +np +cl +212837 cl +np +np +212841 cl +cl +np +212847 cl +cl +212850 cl +cl +212853 np +212855 np +cl +212860 cl +pp +np +np +212865 cl +pp +np +212870 cl +cl +np +pp +pp +212876 np +212879 cl +np +np +212883 np +np +np +pp +cl +np +pp +212892 cl +212895 cl +np +pp +np +np +np +212902 cl +np +np +212906 cl +np +pp +pp +pp +pp +np +np +np +212916 cl +np +np +pp +212921 cl +212925 cl +212927 cl +212929 cl +cl +212934 cl +cl +212937 np +np +212940 np +np +pp +pp +np +212948 cl +pp +212951 cl +212953 np +cl +212956 cl +pp +212960 np +cl +pp +212967 cl +212969 np +212971 cl +cl +212974 cl +212976 np +np +212979 np +np +212982 cl +212984 cl +pp +np +212989 cl +advp +212992 cl +212994 cl +np +pp +np +cl +pp +np +213004 cl +213006 cl +cl +213011 cl +213013 cl +pp +213016 cl +213018 cl +np +213021 cl +np +213024 cl +np +cl +np +pp +np +cl +pp +np +np +213035 np +213038 np +213040 np +np +213044 cl +pp +cl +213048 cl +213053 cl +np +213056 cl +213059 cl +np +213065 cl +pp +pp +cl +cl +np +213074 cl +pp +213077 cl +np +pp +np +213085 cl +pp +np +213089 cl +np +213092 cl +cl +cl +213096 np +213098 cl +pp +np +cl +np +np +np +pp +np +213108 cl +cl +213111 cl +213114 cl +213117 cl +cl +np +pp +np +np +213124 cl +np +213129 cl +cl +213132 cl +pp +cl +213136 cl +213139 cl +cl +pp +np +cl +cl +cl +cl +np +213149 cl +pp +213153 cl +cl +213157 np +213160 cl +np +213163 cl +pp +np +np +np +np +pp +np +213172 cl +pp +np +np +213177 cl +pp +213181 cl +cl +213186 cl +advp +cl +pp +213191 cl +np +213194 np +np +pp +213199 cl +advp +pp +np +213205 cl +np +vp +cl +213210 np +np +213213 np +np +213217 cl +213219 cl +213221 cl +np +cl +np +cl +pp +np +213230 cl +np +cl +213234 cl +cl +np +np +213242 cl +cl +213245 cl +cl +213248 cl +pp +cl +cl +np +cl +213257 cl +np +cl +np +213265 cl +cl +213269 cl +cl +np +213274 cl +np +213277 cl +213279 pp +np +pp +np +np +vp +np +pp +np +np +213290 cl +cl +pp +pp +np +213296 cl +213299 cl +np +np +213303 cl +np +np +pp +np +213311 cl +pp +213314 cl +213316 cl +213318 cl +pp +np +213322 pp +213326 cl +pp +213329 cl +cl +213333 cl +np +pp +np +cl +np +213340 cl +pp +np +213345 cl +cl +np +cl +pp +213352 cl +np +cl +pp +np +213359 cl +213361 cl +213363 cl +cl +np +213367 cl +np +np +cl +pp +213374 cl +np +213377 np +213379 cl +pp +np +np +cl +pp +np +pp +np +213389 cl +213393 np +pp +213396 cl +np +213399 np +213401 cl +cl +213404 cl +213406 cl +np +213409 cl +pp +np +cl +np +pp +213417 cl +np +213420 cl +213423 pp +np +np +np +213428 cl +cl +pp +213433 cl +np +pp +np +np +213439 cl +cl +213442 np +np +213448 cl +pp +np +cl +213454 pp +213456 cl +pp +213460 cl +213462 cl +np +213465 cl +213467 cl +np +np +cl +pp +np +np +213475 cl +213478 cl +np +np +cl +np +pp +np +np +np +213488 cl +pp +213491 cl +cl +np +np +np +np +np +np +pp +np +213502 cl +np +213506 cl +213508 np +np +pp +cl +np +213514 cl +pp +pp +np +np +np +np +np +213524 cl +213526 cl +213528 cl +np +213531 cl +213533 cl +cl +np +213537 cl +213539 cl +cl +np +np +np +cl +np +213548 cl +cl +pp +np +np +213555 cl +cl +np +213560 cl +213562 np +213565 np +213567 cl +pp +np +213571 cl +np +np +np +np +np +213581 cl +pp +cl +pp +np +pp +cl +213590 cl +pp +np +cl +213595 cl +213598 cl +cl +cl +213602 cl +vp +pp +213608 cl +pp +213611 cl +np +213614 cl +np +np +pp +np +213620 cl +pp +213624 cl +cl +pp +213628 cl +213630 np +np +np +213634 np +213636 np +213638 np +np +np +213643 cl +cl +cl +213647 cl +213652 cl +213654 cl +213657 cl +213660 pp +np +np +213665 cl +pp +pp +np +cl +cl +np +213675 cl +pp +213678 cl +pp +np +213683 cl +np +pp +np +213688 cl +pp +cl +pp +pp +213695 cl +np +cl +cl +213702 cl +pp +np +np +np +np +213709 cl +pp +np +np +np +213716 cl +213718 cl +213720 cl +np +pp +np +np +213726 cl +213728 cl +pp +213731 cl +213735 cl +cl +cl +pp +pp +213742 np +np +np +213747 cl +pp +213750 cl +cl +np +np +np +pp +213757 cl +pp +pp +pp +213763 cl +np +np +np +213768 cl +213771 cl +213773 cl +pp +np +213781 cl +np +np +np +213786 cl +np +cl +pp +213791 np +213794 cl +cl +213797 cl +np +213802 cl +cl +213805 cl +np +cl +213809 cl +np +np +np +np +np +pp +213819 cl +213821 cl +pp +213824 np +213826 cl +pp +pp +213832 cl +np +213835 cl +213838 cl +cl +np +pp +213845 cl +pp +pp +pp +np +cl +213852 np +213856 cl +np +pp +213860 cl +213862 np +213864 cl +pp +np +213870 cl +np +np +pp +pp +np +np +213878 np +213880 cl +pp +213883 cl +cl +pp +213887 cl +213889 cl +213891 cl +213893 np +np +np +213897 cl +cl +np +np +np +np +cl +np +213907 adjp +213909 np +213913 cl +np +np +213919 cl +pp +cl +213923 cl +cl +pp +213928 cl +213931 cl +np +np +pp +np +213937 cl +np +213940 cl +pp +np +213945 cl +pp +np +np +pp +pp +213953 cl +cl +np +np +pp +cl +pp +np +cl +np +cl +pp +np +np +cl +pp +213973 np +213975 cl +cl +np +cl +pp +np +np +cl +pp +np +cl +cl +pp +np +pp +np +213995 cl +pp +np +np +214000 np +np +cl +np +np +pp +np +214009 cl +214011 np +np +214015 cl +214017 cl +cl +214020 cl +np +cl +np +214025 cl +np +np +cl +pp +cl +np +np +cl +cl +cl +pp +np +np +214043 cl +np +pp +np +214048 cl +vp +pp +np +pp +np +pp +214059 cl +cl +np +214063 cl +np +np +np +vp +pp +np +cl +np +214073 cl +pp +np +np +214079 cl +cl +np +214083 cl +pp +np +214088 cl +cl +np +np +np +cl +cl +pp +214098 cl +np +np +pp +np +214105 cl +np +pp +214109 cl +214111 cl +np +np +214116 cl +214119 cl +214121 cl +np +np +214125 cl +214129 cl +cl +214133 cl +214135 cl +214137 cl +pp +np +cl +cl +214146 cl +cl +np +214151 pp +214154 np +np +np +214158 cl +pp +np +cl +214163 cl +cl +np +214167 cl +np +pp +214172 cl +np +cl +pp +cl +214179 cl +np +np +np +214184 cl +pp +214187 np +214189 np +np +np +np +np +np +214197 cl +cl +pp +np +214202 np +214204 np +np +np +214209 cl +cl +vp +214217 cl +np +np +np +cl +cl +np +cl +214228 cl +cl +np +np +np +pp +np +np +214237 cl +cl +cl +np +pp +np +214245 cl +pp +cl +214250 cl +cl +214254 cl +cl +np +214259 cl +np +cl +214265 cl +cl +214268 cl +214272 cl +cl +np +cl +cl +np +pp +np +214281 cl +cl +214285 np +214288 cl +cl +pp +np +214294 cl +cl +np +adjp +pp +np +214301 cl +np +214306 cl +214308 cl +214310 cl +cl +np +cl +214315 cl +cl +214318 pp +np +pp +214323 cl +vp +214330 cl +pp +214333 cl +cl +214336 np +pp +np +np +np +pp +214343 cl +np +np +pp +np +214350 cl +np +np +cl +np +cl +pp +np +pp +214361 cl +np +214364 cl +np +214367 cl +214371 cl +np +pp +cl +np +np +214378 cl +cl +214382 cl +np +np +np +214390 cl +214393 pp +cl +np +cl +214399 cl +214402 cl +pp +pp +np +np +cl +214414 np +214418 cl +214421 np +214425 np +214427 np +214433 cl +np +214436 cl +cl +np +np +np +214442 cl +np +214446 pp +np +214449 cl +214451 cl +214453 cl +214455 cl +214457 cl +np +214464 cl +cl +pp +np +np +pp +214471 cl +pp +214474 cl +cl +pp +np +np +np +pp +np +np +np +214486 cl +np +214490 cl +cl +np +np +pp +214499 np +np +cl +cl +pp +214506 np +214508 np +214510 cl +cl +214514 cl +np +np +np +214520 cl +214523 np +214525 cl +np +np +cl +cl +np +pp +np +214535 cl +214537 np +np +cl +np +cl +pp +214547 np +214549 np +214551 np +214553 np +214555 np +np +cl +cl +214560 np +np +np +np +214567 cl +cl +np +pp +214572 cl +cl +np +pp +214579 cl +pp +214584 cl +cl +214587 cl +np +cl +214591 cl +cl +pp +np +np +np +214599 cl +cl +pp +np +np +pp +pp +np +np +214610 cl +cl +pp +pp +214617 cl +cl +pp +np +pp +np +np +214625 cl +cl +pp +np +np +np +np +214634 cl +pp +np +np +214639 np +214641 np +np +pp +cl +214651 cl +pp +np +np +np +pp +np +cl +214661 cl +214663 cl +214665 cl +np +214676 cl +np +cl +214682 cl +np +np +214686 np +np +np +np +214694 cl +np +pp +np +np +pp +np +214702 cl +pp +np +pp +214707 cl +np +np +pp +np +214713 cl +cl +np +np +pp +np +np +np +cl +np +np +214727 cl +pp +pp +np +214733 cl +214735 cl +np +214739 np +np +np +pp +np +np +214748 cl +cl +np +pp +cl +cl +cl +214758 np +np +np +pp +np +np +cl +np +np +np +214769 cl +np +pp +np +np +pp +np +214777 cl +pp +np +np +np +np +np +np +np +214790 cl +np +cl +cl +cl +214796 cl +cl +pp +cl +cl +np +np +np +214811 np +np +214814 np +np +pp +cl +np +cl +np +np +np +np +214827 cl +214830 cl +pp +214833 np +np +214836 cl +214838 cl +214840 np +np +np +214844 cl +pp +np +cl +214849 cl +cl +np +np +cl +214858 cl +np +214861 cl +pp +cl +cl +pp +np +pp +214870 cl +cl +np +pp +pp +np +214878 cl +214880 pp +np +pp +cl +np +pp +np +214889 cl +np +np +cl +pp +np +214897 cl +np +np +np +cl +214903 cl +pp +pp +np +np +np +214910 cl +np +cl +214917 cl +pp +cl +cl +pp +214923 cl +214925 np +np +np +214930 cl +pp +pp +cl +cl +np +np +214942 cl +cl +np +np +np +np +214949 cl +pp +np +np +214954 cl +214956 cl +cl +np +214962 cl +214968 cl +pp +np +214972 cl +pp +214975 cl +cl +pp +np +pp +np +214982 cl +214986 cl +214988 cl +214990 cl +pp +np +214995 cl +214997 np +214999 cl +215001 cl +215003 cl +cl +pp +np +np +215009 cl +cl +advp +cl +215016 cl +cl +cl +pp +np +np +np +np +215027 cl +np +cl +np +215032 np +215034 np +np +cl +215039 np +215041 np +cl +cl +cl +np +np +np +215050 cl +np +np +cl +np +np +np +cl +np +np +np +215064 cl +np +cl +np +215069 cl +215071 cl +pp +cl +215076 cl +cl +215079 np +215081 np +cl +cl +np +np +np +215091 cl +215093 cl +adjp +np +np +cl +pp +np +215102 cl +np +cl +pp +np +215108 cl +pp +pp +np +np +215117 cl +cl +np +215121 cl +np +np +np +215126 cl +cl +vp +pp +np +215133 cl +np +np +np +pp +np +np +215143 cl +np +215146 np +np +cl +np +np +215152 np +np +np +215157 cl +pp +np +215163 cl +pp +np +np +215170 cl +cl +np +np +np +pp +pp +215178 cl +np +215182 np +215185 cl +pp +215188 cl +pp +np +pp +np +np +np +215196 cl +215198 cl +np +215203 np +215206 cl +np +np +cl +215212 np +np +np +pp +np +215221 cl +np +cl +pp +215226 np +215228 cl +pp +np +np +np +np +cl +cl +215238 pp +np +np +215243 cl +np +np +np +215250 cl +pp +np +215254 cl +pp +np +215261 cl +np +np +np +215268 pp +np +np +cl +215275 cl +cl +pp +215279 np +215281 np +np +215286 np +cl +vp +215291 cl +np +215294 cl +np +pp +cl +pp +np +np +cl +215303 cl +cl +np +cl +cl +215309 cl +215311 cl +cl +cl +215315 cl +np +pp +np +np +215323 cl +215325 cl +215328 cl +np +cl +cl +np +np +cl +cl +np +cl +pp +215343 cl +np +215347 cl +np +215350 cl +np +215353 cl +np +215356 cl +np +np +215360 np +215362 cl +pp +np +cl +215368 pp +np +pp +np +cl +215375 cl +cl +215378 np +215381 cl +np +np +pp +np +215387 cl +215389 cl +cl +215393 cl +np +np +adjp +cl +cl +pp +np +np +pp +215405 np +cl +cl +215409 np +215411 np +215413 np +215415 np +np +pp +cl +pp +np +np +cl +cl +np +np +np +np +215430 cl +215432 cl +215434 cl +215436 cl +np +cl +215441 np +np +215445 cl +cl +np +215449 cl +215453 cl +pp +215458 cl +215460 cl +np +215463 cl +np +pp +np +cl +cl +215472 cl +np +cl +cl +pp +np +215480 cl +advp +pp +np +pp +215487 cl +215489 cl +np +np +215493 cl +215495 pp +np +215498 pp +215500 pp +215502 cl +np +np +np +cl +215508 cl +np +215512 cl +cl +pp +np +pp +np +np +np +215522 cl +cl +pp +cl +pp +np +215529 cl +pp +215534 cl +cl +np +pp +np +215540 cl +cl +pp +np +pp +215546 cl +pp +215549 cl +vp +np +np +np +pp +np +215557 cl +215560 cl +215562 cl +215564 cl +np +215567 cl +np +pp +215572 cl +np +np +215577 cl +np +adjp +pp +np +215584 cl +cl +pp +np +np +215592 cl +215594 np +np +cl +cl +215600 cl +cl +np +215605 adjp +215607 np +215609 np +pp +cl +215615 np +np +pp +pp +np +215622 pp +pp +np +np +215630 cl +cl +pp +np +np +215638 cl +np +np +np +215643 cl +np +np +np +215650 cl +cl +pp +pp +215655 np +215657 np +215659 np +215661 cl +cl +np +pp +215667 cl +215669 np +np +pp +np +np +np +cl +cl +215678 cl +215680 cl +215682 cl +cl +np +np +215688 cl +215690 np +215692 np +cl +pp +np +np +215699 cl +cl +np +cl +pp +215708 cl +215710 cl +pp +np +pp +np +215716 cl +pp +np +np +np +np +np +np +215725 cl +215729 cl +215731 np +cl +np +np +np +215737 cl +np +215740 cl +pp +215745 cl +np +np +np +215751 cl +np +cl +pp +np +np +np +cl +cl +215762 np +np +215767 cl +cl +pp +np +np +215773 np +pp +cl +np +215780 cl +np +np +215784 cl +cl +215791 cl +np +pp +np +pp +215798 cl +pp +215801 cl +cl +215807 cl +215809 cl +215811 cl +np +cl +pp +np +np +215819 cl +np +np +np +215824 cl +215828 cl +pp +215833 cl +215835 np +np +215838 cl +215840 cl +np +215843 cl +215845 cl +215848 cl +cl +np +np +np +np +np +np +np +215858 cl +pp +np +np +pp +cl +np +cl +np +cl +pp +215871 cl +215873 cl +np +np +pp +np +cl +pp +np +cl +215883 cl +215885 np +np +np +215889 np +215892 np +215895 cl +pp +np +pp +215900 cl +cl +pp +np +pp +np +215907 cl +215909 np +215911 np +pp +np +np +215916 cl +cl +pp +pp +pp +np +215924 cl +215929 cl +215931 np +cl +pp +np +cl +pp +np +215939 cl +215942 np +215944 np +215946 np +np +pp +np +215953 np +pp +cl +215959 cl +215961 cl +np +pp +cl +np +np +cl +cl +cl +cl +cl +pp +pp +215976 np +np +215980 np +cl +np +np +pp +np +np +215988 np +np +215994 cl +215997 cl +np +np +cl +pp +np +216005 cl +216007 np +np +np +216011 cl +np +adjp +pp +216016 np +np +cl +216023 cl +cl +pp +216027 cl +216032 cl +cl +pp +216036 cl +cl +np +np +216042 cl +cl +pp +np +216048 cl +216052 cl +np +pp +np +np +216058 cl +216061 cl +cl +pp +pp +np +pp +216068 cl +216071 cl +216074 pp +cl +216078 pp +np +np +np +np +np +216086 cl +pp +np +pp +216091 cl +cl +np +pp +216096 np +cl +pp +np +np +np +cl +216105 cl +cl +np +216109 np +216111 cl +216114 cl +cl +216119 cl +pp +pp +216123 cl +pp +np +216128 cl +216131 cl +pp +216134 cl +np +cl +np +pp +216142 cl +cl +cl +np +np +np +pp +np +216151 cl +216153 np +216155 cl +np +216159 cl +216162 pp +216164 pp +216167 cl +216170 np +np +cl +np +216175 np +np +216179 cl +pp +np +np +pp +216188 cl +np +cl +pp +216193 cl +cl +pp +216197 np +216199 cl +pp +np +np +216204 cl +216206 cl +np +np +216213 cl +np +cl +cl +216218 np +216220 cl +pp +216223 np +216226 np +pp +216232 cl +np +np +216236 cl +np +pp +216241 cl +np +216245 np +cl +pp +np +np +cl +np +pp +np +216257 cl +cl +pp +np +cl +pp +np +216265 cl +np +np +216270 cl +cl +np +pp +216276 cl +pp +np +cl +216281 np +vp +216285 cl +216287 cl +cl +cl +pp +216295 cl +np +cl +cl +pp +cl +216302 cl +np +cl +216308 cl +cl +pp +pp +216314 cl +216316 cl +pp +np +cl +pp +216322 cl +216324 np +np +np +np +216330 cl +vp +pp +np +np +np +216339 cl +np +np +np +pp +np +pp +216347 cl +cl +216350 cl +cl +np +np +cl +216357 cl +216360 np +np +cl +np +np +cl +np +cl +np +np +np +cl +216373 cl +pp +216380 cl +216382 cl +np +np +cl +cl +216389 cl +cl +np +cl +cl +pp +np +np +216399 cl +216402 cl +cl +pp +np +cl +np +np +cl +216411 cl +np +np +np +cl +216417 cl +cl +216420 np +216422 cl +cl +cl +np +np +np +216429 np +np +np +216434 cl +pp +np +216439 cl +216441 cl +216443 cl +np +cl +cl +pp +np +216450 pp +216453 cl +np +np +216459 cl +np +np +cl +216464 cl +np +np +np +np +cl +216471 np +216473 np +pp +np +pp +np +216479 cl +cl +np +216483 cl +np +np +np +np +cl +216490 cl +216492 cl +cl +216496 cl +216500 cl +np +pp +216505 cl +np +cl +np +np +cl +216512 cl +cl +np +pp +cl +np +cl +216520 cl +cl +np +pp +np +np +216527 cl +np +np +pp +np +216535 cl +pp +np +216540 cl +np +216543 cl +np +216548 cl +np +216551 cl +np +np +np +216557 cl +np +np +216561 cl +np +np +216566 cl +np +216569 cl +216571 cl +cl +np +np +np +cl +np +cl +cl +cl +np +216584 cl +np +cl +216588 cl +np +216591 cl +216596 cl +cl +216599 cl +cl +216602 np +216605 cl +cl +216609 cl +216611 cl +216614 cl +216616 cl +pp +216619 np +216621 cl +216624 np +np +216628 cl +np +np +np +pp +np +np +pp +np +np +216641 cl +cl +pp +np +np +np +np +pp +np +216651 cl +216654 np +np +216657 cl +cl +pp +np +216662 cl +cl +np +216668 cl +cl +np +np +cl +cl +np +np +216678 cl +np +np +np +pp +np +216686 cl +np +216689 cl +216691 cl +cl +pp +216696 cl +np +pp +216701 cl +cl +cl +np +pp +216707 cl +216710 cl +216712 cl +cl +216716 cl +np +np +np +np +216725 cl +cl +216728 cl +216730 cl +cl +216733 cl +cl +cl +pp +np +216741 cl +cl +pp +np +pp +np +216749 cl +cl +np +216753 cl +216756 cl +cl +216759 np +216761 np +pp +216764 cl +np +np +216770 cl +pp +216773 cl +np +pp +216777 cl +pp +np +pp +np +cl +216787 cl +216789 cl +np +216792 cl +pp +216796 cl +216799 np +np +cl +216806 cl +np +pp +216810 cl +216812 np +216814 np +cl +216818 np +np +np +cl +np +216824 np +np +np +adjp +216831 cl +np +216834 cl +216837 cl +np +np +np +np +216843 cl +np +216846 cl +cl +np +np +cl +pp +np +216855 cl +cl +216859 np +pp +np +cl +216864 cl +216867 cl +np +cl +216872 cl +np +pp +np +np +cl +cl +np +216883 cl +216885 np +216887 np +cl +216890 cl +cl +np +pp +216895 np +216897 np +216900 cl +np +pp +216905 np +216907 np +pp +cl +cl +pp +np +np +np +216917 cl +cl +np +pp +np +pp +np +cl +np +pp +np +216929 cl +216934 cl +np +pp +216938 cl +np +216941 np +np +np +np +216946 adjp +216951 cl +cl +np +np +pp +np +cl +pp +pp +np +pp +np +np +np +np +cl +cl +216970 np +216973 cl +np +np +cl +pp +pp +np +216982 cl +216985 np +216987 np +216991 cl +216993 cl +np +pp +216997 cl +cl +np +pp +217002 np +217004 np +217006 cl +adjp +pp +217012 cl +pp +np +np +217017 cl +np +np +pp +cl +cl +np +217029 cl +pp +np +217033 np +217036 cl +217038 cl +pp +np +pp +np +pp +217045 cl +217048 cl +np +217052 np +217054 np +217058 cl +217060 cl +np +np +cl +217066 cl +cl +cl +np +np +217072 cl +217074 np +217076 np +217078 cl +cl +pp +np +217083 cl +217085 cl +cl +cl +217089 np +np +np +np +cl +pp +217096 cl +np +cl +pp +np +np +217103 cl +cl +cl +cl +217110 cl +217112 np +217114 np +np +cl +pp +np +217121 cl +217123 cl +np +217127 cl +cl +pp +np +np +np +cl +217135 np +cl +pp +adjp +217141 cl +217143 cl +217145 cl +np +np +np +217150 cl +pp +cl +np +217156 cl +cl +cl +217163 np +217165 cl +217167 np +217169 np +np +pp +cl +cl +np +217177 pp +np +217180 cl +pp +np +cl +cl +217188 np +217191 cl +pp +np +np +cl +pp +np +np +np +cl +217202 np +cl +217205 np +np +np +np +cl +np +217215 cl +217217 cl +217219 cl +advp +pp +np +np +217227 cl +pp +217233 cl +np +np +np +np +pp +217240 cl +np +np +217245 cl +cl +np +np +cl +cl +217255 np +np +217259 np +217263 cl +cl +np +np +np +np +advp +np +cl +np +217274 cl +217276 cl +pp +cl +np +pp +pp +217283 cl +cl +cl +pp +217289 cl +cl +np +217293 cl +217295 cl +cl +pp +advp +217300 cl +np +pp +np +217306 cl +np +cl +cl +pp +217314 np +217316 np +cl +217319 np +pp +217322 cl +pp +cl +pp +np +pp +217332 cl +cl +np +np +np +np +cl +cl +np +cl +pp +np +np +217346 np +pp +217349 cl +cl +np +np +pp +np +217356 cl +pp +217359 cl +pp +217362 cl +217364 cl +np +217368 cl +pp +np +pp +np +cl +217381 cl +pp +np +217386 np +217388 np +cl +np +np +cl +np +cl +np +217400 cl +217402 cl +cl +cl +np +pp +217408 cl +np +np +pp +np +np +cl +cl +pp +np +pp +np +217422 cl +cl +pp +np +217427 np +np +cl +217431 cl +np +cl +np +np +vp +np +217441 cl +217443 np +np +pp +np +np +np +217451 cl +np +np +cl +217456 cl +217459 cl +np +pp +pp +np +217466 cl +cl +217469 cl +217472 cl +pp +217475 cl +217477 cl +217479 cl +np +pp +np +np +217486 cl +217489 np +cl +pp +np +np +np +217498 cl +np +np +217502 cl +np +np +217506 cl +pp +np +cl +217511 cl +pp +np +np +cl +np +217519 cl +cl +np +cl +np +np +pp +np +217531 cl +217533 np +217535 np +217538 np +cl +pp +217545 cl +np +pp +217552 np +pp +cl +cl +cl +np +217560 cl +pp +np +217565 cl +cl +217568 np +pp +np +217573 cl +np +np +217580 cl +np +cl +np +cl +np +pp +np +217589 cl +pp +217594 cl +pp +np +217598 cl +217602 cl +pp +217605 cl +217607 cl +cl +pp +np +np +217614 cl +cl +cl +pp +np +cl +cl +217622 cl +217624 cl +217626 cl +pp +cl +np +pp +np +217635 cl +cl +pp +217639 cl +217641 cl +np +pp +217645 cl +cl +np +cl +np +217651 np +217653 cl +np +np +217658 cl +217661 np +np +np +cl +cl +np +np +cl +pp +np +pp +217674 cl +vp +np +np +np +217680 cl +cl +np +217685 np +pp +np +cl +np +np +217694 cl +cl +pp +np +217700 cl +cl +217705 cl +np +np +np +217713 cl +cl +pp +np +cl +cl +np +np +cl +217723 cl +cl +217726 cl +pp +np +217730 cl +np +cl +pp +np +cl +np +217740 cl +pp +217743 cl +np +pp +217747 cl +cl +np +np +pp +217753 cl +np +217756 cl +pp +217759 cl +np +cl +217765 cl +pp +217768 cl +217770 cl +np +217774 cl +217776 cl +pp +217780 cl +cl +pp +np +np +217787 cl +cl +np +cl +np +217793 cl +pp +217796 cl +pp +cl +cl +pp +np +217804 cl +cl +pp +np +np +217810 np +217814 cl +np +217817 cl +np +np +np +pp +217824 cl +217826 cl +217829 cl +np +np +np +217835 cl +cl +pp +np +pp +np +cl +217844 pp +np +np +np +217852 cl +217855 cl +np +pp +np +cl +cl +pp +np +cl +pp +pp +np +np +217870 cl +pp +np +217874 cl +np +217877 cl +np +np +np +np +cl +217888 cl +217890 np +217892 cl +np +pp +np +np +217899 cl +pp +pp +217903 cl +pp +np +np +217911 cl +pp +np +217915 cl +np +np +np +217921 cl +np +np +np +np +cl +np +cl +pp +217931 cl +np +np +np +np +np +217938 np +cl +cl +np +217943 cl +217946 cl +np +217949 np +np +np +vp +217955 cl +cl +np +np +np +217962 cl +np +217965 cl +np +217968 cl +217971 cl +cl +pp +217975 np +cl +pp +np +np +np +cl +pp +217984 cl +217987 cl +pp +np +np +217994 cl +np +218001 cl +np +218005 cl +pp +np +218009 cl +np +np +218013 np +218016 cl +np +218019 cl +cl +218023 np +np +218027 cl +np +218030 cl +np +cl +np +pp +218038 cl +np +np +218042 cl +np +np +218046 cl +pp +np +np +np +218057 cl +cl +np +pp +np +cl +cl +np +218067 pp +cl +218070 cl +pp +218073 cl +cl +np +218078 cl +cl +pp +np +218083 np +218085 cl +218088 pp +np +218092 cl +pp +np +np +np +np +adjp +pp +np +218103 cl +218105 np +cl +cl +np +np +np +np +adjp +cl +cl +cl +218118 np +np +pp +np +218123 cl +218125 cl +pp +np +np +np +np +218132 cl +218136 cl +218138 np +np +np +np +np +np +cl +np +cl +218148 cl +218150 cl +pp +218155 cl +cl +np +pp +218160 cl +np +np +np +218165 np +np +pp +218169 cl +cl +np +np +cl +218175 np +np +218178 np +218181 cl +218183 cl +218185 cl +cl +cl +np +np +218193 cl +np +np +218197 cl +pp +np +cl +218205 np +218208 cl +cl +cl +pp +np +np +218216 cl +218218 np +np +np +cl +cl +pp +cl +pp +np +218230 cl +np +218234 cl +np +vp +218238 cl +np +cl +pp +218245 cl +pp +np +cl +np +218252 cl +np +cl +np +cl +np +218260 cl +cl +218263 cl +np +pp +pp +pp +np +218270 cl +cl +np +np +218276 cl +np +cl +np +218282 np +cl +np +cl +cl +np +np +np +218291 np +np +218294 np +218297 cl +cl +vp +218301 cl +cl +218304 cl +np +218308 cl +218310 np +np +218315 cl +np +np +218324 cl +218327 np +np +pp +pp +218333 cl +218335 cl +cl +218340 cl +cl +pp +np +np +218347 cl +cl +pp +np +cl +np +cl +pp +cl +pp +np +np +218361 cl +cl +np +218366 cl +pp +218369 cl +np +np +218373 cl +np +218376 cl +cl +cl +pp +218383 cl +218385 cl +np +np +218389 cl +np +pp +np +218395 cl +np +218398 cl +pp +np +cl +cl +pp +np +cl +218408 cl +pp +218412 cl +218415 np +np +218418 np +218424 np +218432 cl +cl +pp +218438 cl +pp +np +np +np +pp +218446 cl +pp +pp +np +pp +np +cl +np +218457 cl +pp +np +np +np +cl +218464 cl +np +cl +cl +advp +218470 cl +np +pp +218475 cl +np +pp +np +218480 cl +vp +218485 cl +np +np +cl +cl +pp +np +218493 cl +np +cl +np +pp +cl +pp +np +pp +np +218504 cl +218508 cl +cl +np +218512 cl +cl +218515 cl +218517 cl +np +np +pp +218523 cl +218525 cl +218527 cl +np +218530 cl +218532 cl +pp +pp +218538 cl +np +cl +218542 cl +advp +218547 cl +cl +pp +np +pp +np +cl +cl +np +218557 cl +vp +cl +cl +218565 cl +pp +np +218569 cl +cl +pp +cl +cl +218575 cl +pp +218578 cl +np +pp +218582 cl +218584 cl +pp +218589 cl +np +cl +np +218594 cl +cl +pp +np +218600 cl +218602 cl +cl +np +np +np +pp +218610 cl +cl +pp +np +pp +np +np +np +218622 cl +pp +cl +cl +cl +pp +218629 np +cl +pp +pp +np +pp +np +np +cl +np +pp +218641 np +218646 cl +pp +np +np +np +218653 cl +np +218656 cl +218660 cl +218662 cl +218665 pp +cl +218670 np +218672 np +pp +218675 np +pp +218678 np +np +218683 cl +cl +cl +np +pp +cl +218690 cl +pp +218694 cl +np +np +np +pp +cl +218701 cl +218706 cl +np +np +adjp +218712 cl +218714 np +np +218717 np +218719 cl +pp +218722 np +cl +np +np +np +np +np +218732 cl +cl +218735 cl +np +np +218739 np +cl +pp +cl +np +218747 cl +pp +np +np +218752 cl +pp +np +np +218757 cl +218759 cl +np +np +np +np +218765 cl +218768 np +np +218771 cl +pp +np +np +np +cl +np +218779 np +np +cl +pp +np +np +np +218787 cl +218790 cl +pp +np +np +np +pp +cl +np +218799 cl +pp +np +cl +cl +218805 cl +np +pp +218810 cl +cl +cl +cl +218816 cl +pp +np +218821 cl +advp +218824 np +218827 np +np +np +np +218832 cl +218834 cl +218836 cl +np +pp +np +218841 cl +218843 cl +np +218849 cl +218851 cl +218853 np +np +218857 cl +pp +np +np +218862 cl +218864 cl +cl +218867 cl +218869 cl +218871 cl +np +np +218875 np +218877 cl +218879 cl +cl +218882 cl +218885 cl +cl +cl +np +np +pp +np +218895 cl +np +218898 cl +cl +pp +np +np +np +cl +pp +np +218908 cl +cl +cl +cl +np +np +218916 cl +pp +np +218923 cl +cl +cl +pp +cl +cl +pp +np +218933 cl +advp +pp +np +cl +pp +218941 cl +cl +np +cl +pp +cl +218950 cl +218952 cl +np +218955 cl +pp +218959 cl +pp +218962 cl +np +vp +np +218968 cl +cl +cl +np +np +np +pp +np +cl +pp +218982 cl +cl +np +218987 cl +cl +cl +pp +218993 pp +pp +np +218997 cl +cl +np +pp +np +cl +219005 cl +pp +np +219009 cl +pp +np +219015 cl +cl +np +pp +pp +219021 cl +cl +np +np +pp +219029 cl +advp +cl +pp +219034 cl +cl +pp +np +np +np +219041 np +cl +pp +np +pp +219048 cl +219051 np +cl +219056 cl +np +219059 cl +219061 np +pp +np +np +cl +219067 cl +219069 cl +pp +219072 cl +cl +np +np +np +np +219079 np +219081 np +cl +np +np +np +219087 cl +np +219090 cl +np +np +pp +np +219096 cl +pp +np +219103 cl +cl +219108 np +219110 cl +pp +219113 cl +np +219116 cl +219118 cl +219120 cl +np +np +219124 cl +219126 cl +cl +pp +pp +np +np +219133 np +219136 cl +cl +cl +cl +np +np +np +219145 cl +pp +np +np +cl +pp +219153 cl +np +np +np +pp +pp +cl +219161 cl +pp +219165 np +np +219170 cl +pp +cl +np +219177 cl +219179 cl +np +pp +pp +219184 cl +np +np +219189 cl +cl +pp +np +cl +np +pp +np +pp +np +np +219203 cl +cl +np +219207 cl +219210 cl +219212 cl +np +np +219216 cl +pp +np +219220 cl +np +np +219225 cl +pp +219228 cl +np +pp +np +np +pp +np +np +cl +219238 cl +np +219241 cl +np +219245 cl +219247 cl +219249 cl +219252 cl +cl +219255 cl +np +np +cl +pp +219263 cl +cl +pp +219267 cl +pp +219270 cl +np +219273 cl +219276 cl +cl +pp +219280 cl +np +cl +np +219286 cl +pp +np +np +cl +cl +cl +219295 np +219300 cl +np +cl +np +np +np +cl +cl +pp +pp +np +cl +np +np +np +np +np +cl +pp +pp +np +np +np +219327 cl +np +np +cl +219332 cl +np +np +pp +np +cl +pp +np +np +np +219343 cl +pp +np +cl +219352 cl +219354 cl +219356 np +219358 cl +pp +219361 np +219363 np +219365 np +np +219369 cl +np +pp +np +219374 cl +np +np +np +219381 cl +vp +cl +219385 np +pp +np +pp +cl +219391 cl +pp +np +np +219399 cl +np +np +219404 cl +np +np +219408 cl +cl +np +pp +np +219414 cl +np +219419 cl +cl +cl +np +np +np +219426 cl +np +cl +cl +219432 pp +219435 cl +cl +219438 np +219440 np +cl +np +219445 cl +cl +np +219449 cl +cl +np +219453 cl +219455 cl +219457 cl +vp +219461 cl +np +pp +np +219467 cl +cl +cl +np +pp +np +cl +pp +np +219480 cl +pp +np +219484 cl +cl +pp +np +pp +np +np +np +219493 cl +np +np +np +cl +cl +219501 cl +cl +cl +pp +np +np +np +219509 cl +cl +pp +219514 cl +cl +219517 cl +219519 np +219522 cl +pp +np +np +219527 cl +pp +np +np +np +np +np +219536 cl +np +219541 cl +219544 np +np +cl +np +np +adjp +219551 cl +cl +cl +pp +np +219559 cl +cl +np +cl +pp +np +np +np +219569 cl +cl +np +219573 np +cl +219582 cl +np +np +np +pp +np +219590 cl +cl +219593 cl +219595 np +219598 cl +cl +np +219602 cl +pp +np +np +219607 cl +pp +np +np +cl +pp +np +np +pp +np +np +np +cl +np +np +219623 cl +np +cl +cl +np +np +pp +cl +219633 pp +219637 cl +cl +np +np +219642 cl +np +np +cl +cl +pp +np +pp +np +pp +cl +np +219655 cl +cl +pp +219659 cl +219663 cl +219665 cl +219667 cl +np +pp +cl +pp +np +np +pp +219677 cl +pp +np +219681 cl +cl +219687 cl +219690 cl +cl +219695 cl +pp +cl +219700 np +cl +219706 cl +219708 cl +pp +np +219712 cl +np +np +219716 cl +219719 cl +cl +219724 cl +np +pp +219728 cl +cl +pp +cl +pp +np +cl +cl +219738 cl +219740 cl +pp +np +np +np +np +cl +pp +219749 cl +pp +219753 cl +219755 np +np +np +adjp +pp +np +cl +pp +np +np +np +cl +219768 cl +pp +219771 cl +219776 cl +219778 cl +np +np +pp +219784 cl +cl +np +np +np +np +219791 cl +np +np +219795 cl +np +219798 cl +np +pp +np +np +219804 cl +pp +np +np +cl +219813 cl +219816 cl +cl +219819 cl +np +np +cl +np +np +219827 cl +219829 cl +pp +219832 cl +pp +np +219836 cl +pp +219839 cl +cl +219843 cl +219845 cl +pp +pp +219849 cl +np +np +pp +219854 cl +219858 cl +vp +219862 pp +np +219865 cl +pp +219871 cl +np +np +219875 np +np +cl +np +vp +219881 cl +219883 cl +219885 cl +np +np +219889 cl +219892 cl +pp +219895 cl +219897 cl +pp +219902 cl +pp +np +np +219907 cl +np +np +cl +219912 cl +pp +np +np +219917 cl +cl +219923 cl +219926 cl +np +219929 cl +pp +np +cl +np +cl +pp +np +cl +cl +219940 cl +cl +pp +np +219948 cl +np +cl +pp +np +np +cl +np +219957 cl +cl +np +219964 cl +cl +np +cl +np +cl +219971 cl +cl +219974 cl +np +np +219979 cl +cl +np +cl +cl +219986 cl +219990 cl +np +cl +np +np +np +219998 cl +np +220001 cl +220004 cl +pp +220007 cl +cl +220011 cl +np +np +220015 cl +220018 cl +220021 cl +vp +220026 cl +advp +cl +cl +220031 np +220033 cl +pp +np +220038 cl +cl +220041 np +220043 np +np +220046 cl +cl +np +pp +220052 cl +np +cl +np +220060 cl +np +np +np +pp +np +np +220069 cl +220071 np +220073 cl +cl +np +np +220078 cl +np +pp +220082 cl +cl +np +220086 np +cl +220089 cl +np +cl +pp +np +220095 cl +cl +cl +220100 cl +220102 cl +cl +np +np +np +220109 cl +np +220115 cl +220117 cl +220119 cl +np +np +np +220125 cl +np +cl +220130 cl +np +np +220134 cl +np +pp +np +220144 cl +cl +np +cl +pp +220151 np +220156 cl +220158 cl +np +np +220164 cl +np +220168 cl +cl +220174 cl +np +220179 cl +np +220182 cl +cl +np +np +np +np +np +np +cl +220192 cl +np +pp +np +np +220200 cl +220202 cl +220205 cl +cl +np +np +220210 cl +220212 cl +np +pp +220216 cl +np +cl +pp +np +220222 cl +pp +np +220227 cl +np +np +cl +cl +np +220234 cl +220238 cl +np +pp +pp +cl +cl +pp +pp +220249 cl +cl +cl +np +cl +cl +220258 pp +cl +np +220263 cl +adjp +220267 cl +np +np +cl +cl +cl +220274 np +220276 np +cl +pp +cl +np +220284 cl +np +pp +np +220289 cl +pp +220292 cl +cl +np +pp +220297 cl +pp +220300 cl +220302 cl +220305 cl +np +np +np +np +cl +np +220313 cl +220315 cl +pp +np +np +220321 cl +np +cl +np +np +220327 cl +np +np +pp +np +220333 cl +cl +220339 cl +cl +pp +np +220344 cl +cl +220347 np +cl +cl +np +np +pp +cl +cl +220357 cl +np +220360 cl +np +np +220364 cl +pp +cl +cl +cl +220371 cl +220373 cl +np +220376 cl +220378 cl +np +pp +np +220383 cl +cl +pp +220388 cl +220391 cl +220393 np +pp +np +adjp +cl +cl +220402 pp +cl +220405 cl +cl +np +np +pp +220413 cl +np +np +cl +cl +220419 cl +pp +220424 cl +cl +np +np +np +220430 cl +220432 np +220434 np +220436 np +220438 cl +pp +pp +np +np +np +220445 cl +220447 cl +cl +np +pp +220452 np +cl +np +cl +np +np +220460 cl +220463 np +np +cl +220467 cl +np +np +220471 cl +pp +np +220475 cl +cl +pp +cl +pp +np +cl +220483 cl +220486 cl +cl +cl +np +220491 cl +pp +pp +np +np +220497 cl +220499 cl +pp +np +np +np +220505 cl +np +np +adjp +220513 cl +cl +cl +pp +np +pp +cl +np +np +cl +pp +pp +220528 cl +np +pp +220532 cl +cl +np +pp +pp +np +220540 cl +advp +cl +cl +np +pp +pp +np +cl +220550 cl +pp +np +220554 cl +np +np +np +np +220562 cl +220564 cl +220566 cl +cl +pp +np +220571 cl +220573 cl +pp +220576 cl +220578 cl +np +np +np +cl +cl +pp +np +np +np +220590 cl +pp +np +220594 np +pp +220597 np +220599 np +220601 cl +np +pp +np +220607 cl +cl +cl +np +cl +220614 cl +np +pp +220618 cl +np +np +pp +np +np +cl +220628 pp +np +220631 np +220636 cl +pp +cl +cl +np +np +220644 cl +cl +cl +np +np +220651 cl +np +220654 np +np +pp +np +220659 np +np +np +np +cl +cl +np +cl +pp +cl +pp +np +cl +cl +220675 cl +np +np +cl +cl +220683 cl +np +cl +np +cl +cl +cl +cl +pp +np +np +np +np +pp +cl +cl +cl +220701 cl +np +pp +cl +cl +pp +220709 cl +220711 cl +pp +220714 cl +np +220718 pp +np +220721 pp +np +220724 pp +np +220727 cl +cl +pp +cl +220733 cl +220735 cl +pp +np +220739 cl +np +np +cl +np +220745 np +pp +np +220750 cl +pp +np +cl +220756 np +pp +np +cl +np +np +cl +cl +np +220769 cl +pp +np +cl +np +pp +220776 np +220778 np +pp +220782 cl +cl +pp +np +cl +pp +np +np +220791 cl +cl +pp +cl +pp +np +220798 pp +pp +220804 np +np +pp +np +cl +cl +pp +220813 cl +pp +220818 cl +np +220821 cl +np +cl +pp +np +220827 cl +pp +220830 np +220832 cl +cl +cl +pp +cl +pp +np +pp +220842 cl +np +cl +np +pp +np +cl +220851 cl +220853 np +cl +np +pp +cl +np +220860 cl +220863 cl +220865 cl +cl +np +np +np +220873 cl +pp +np +np +cl +pp +np +220881 np +np +cl +np +220886 cl +pp +np +np +pp +220894 cl +cl +pp +220901 np +220903 cl +cl +np +220907 cl +220909 cl +220911 cl +cl +cl +220915 cl +pp +np +220920 cl +cl +220926 cl +cl +np +220932 cl +cl +cl +np +np +np +cl +220942 cl +cl +np +pp +np +pp +pp +220951 cl +220953 np +220955 np +np +np +pp +np +220961 cl +cl +pp +220965 cl +pp +cl +cl +pp +np +220974 cl +np +220977 cl +np +pp +220981 cl +cl +pp +220986 cl +cl +np +np +pp +cl +220993 cl +220995 pp +np +220999 cl +cl +pp +np +adjp +adjp +221007 cl +pp +cl +advp +pp +np +cl +np +221019 cl +cl +np +np +cl +pp +cl +np +221029 cl +cl +cl +np +221034 cl +221037 pp +np +np +np +221042 pp +np +221045 pp +221048 cl +np +cl +cl +np +cl +np +cl +cl +cl +pp +pp +pp +221063 cl +np +221066 cl +pp +np +np +vp +cl +cl +221075 cl +221077 cl +np +221086 cl +221088 cl +np +adjp +cl +221093 cl +221097 cl +cl +cl +cl +221102 cl +221104 cl +np +cl +pp +np +221110 cl +cl +pp +221116 cl +np +cl +221121 np +221123 pp +cl +np +221130 cl +np +cl +np +np +np +pp +np +cl +cl +cl +np +np +cl +pp +cl +pp +cl +pp +221150 np +221152 np +np +np +cl +pp +cl +pp +cl +221161 cl +np +221166 cl +221168 cl +pp +np +221172 cl +np +pp +np +221179 cl +cl +cl +np +cl +advp +pp +np +cl +np +221190 cl +pp +cl +np +np +np +221197 cl +221200 cl +np +pp +np +np +pp +221207 cl +pp +221210 np +np +cl +cl +cl +np +221218 cl +cl +np +np +pp +221224 cl +221226 cl +pp +221229 cl +pp +221234 cl +np +cl +pp +np +np +np +cl +cl +pp +cl +pp +221249 cl +pp +np +cl +np +cl +np +221257 cl +cl +221264 cl +advp +221267 np +221269 np +pp +np +221273 cl +pp +np +pp +221281 np +np +pp +np +221286 cl +np +cl +np +221292 cl +np +cl +221299 np +np +np +cl +221304 cl +pp +np +np +np +np +pp +221314 cl +cl +cl +221320 cl +cl +np +adjp +221325 cl +cl +np +np +cl +cl +cl +pp +cl +np +np +221339 cl +221341 pp +221343 pp +pp +221349 cl +np +cl +cl +221355 cl +cl +cl +np +np +np +pp +221364 cl +pp +np +cl +cl +pp +221371 cl +np +cl +np +221379 cl +pp +np +cl +pp +cl +cl +pp +np +np +np +np +pp +221396 cl +cl +221401 cl +221403 np +np +np +pp +221408 cl +pp +221411 pp +np +np +221415 pp +np +cl +221419 cl +cl +221422 cl +pp +np +np +np +np +np +221431 cl +pp +np +np +np +cl +pp +np +np +pp +np +cl +cl +cl +pp +np +np +cl +pp +221453 cl +pp +np +pp +221459 cl +pp +221462 cl +np +221467 cl +cl +cl +pp +np +np +221474 np +np +221478 cl +pp +221483 cl +np +np +pp +cl +np +np +pp +np +221495 cl +cl +221498 cl +cl +pp +np +np +cl +221505 cl +cl +pp +pp +pp +np +np +cl +cl +pp +pp +np +pp +221521 np +np +np +pp +np +cl +pp +np +np +np +221534 cl +pp +221540 cl +np +pp +np +cl +cl +pp +221548 np +221554 cl +cl +cl +pp +221560 cl +cl +221565 cl +np +cl +221569 cl +221573 cl +221575 cl +pp +np +np +221581 cl +pp +cl +221586 np +221589 cl +221591 cl +cl +221594 pp +np +221597 pp +np +cl +pp +cl +np +221604 cl +221607 pp +pp +221610 adv +np +np +np +pp +np +221617 cl +221619 np +221621 np +pp +221624 cl +221626 np +pp +221633 cl +np +np +cl +221640 np +np +pp +221646 np +np +np +np +221651 np +221653 cl +221655 cl +pp +np +cl +np +adjp +np +221663 cl +pp +cl +pp +np +cl +221671 cl +cl +np +np +pp +np +pp +np +np +cl +221684 cl +pp +cl +cl +cl +221691 np +221695 cl +np +221699 cl +pp +np +cl +cl +221706 np +221708 np +221711 cl +cl +np +np +np +221717 cl +221719 cl +np +np +pp +221725 cl +np +221730 np +cl +cl +np +221737 cl +pp +np +221741 cl +pp +cl +221745 cl +cl +221748 cl +vp +pp +221752 cl +221755 np +221757 cl +221759 cl +221763 cl +np +pp +np +cl +pp +cl +221773 np +221775 cl +np +221779 pp +221781 pp +cl +221784 advp +np +np +221788 cl +221790 cl +np +pp +np +np +221797 cl +221801 np +221803 np +221806 np +221809 cl +221811 cl +cl +pp +cl +221816 cl +np +adjp +221821 np +np +221825 cl +np +221828 cl +cl +np +np +221833 cl +221838 cl +221840 cl +pp +np +cl +221846 np +221848 np +np +np +np +cl +np +221857 cl +cl +np +np +cl +cl +pp +np +np +pp +np +cl +pp +221871 np +221875 cl +np +pp +221879 cl +np +cl +np +cl +cl +pp +np +221889 cl +cl +np +pp +221894 cl +np +221897 cl +cl +221900 np +np +pp +np +221906 pp +np +np +221910 cl +np +cl +np +np +cl +pp +np +pp +221923 cl +pp +np +221927 cl +pp +np +221931 cl +np +221934 cl +np +pp +221938 cl +cl +pp +221942 np +np +cl +np +cl +pp +221953 cl +np +221956 cl +np +pp +221960 cl +np +np +cl +np +cl +221969 cl +cl +pp +np +221975 np +221977 advp +221979 np +221981 np +np +np +np +np +221989 cl +np +221992 np +221994 np +221996 cl +221998 cl +pp +222003 cl +np +pp +cl +np +cl +222011 cl +cl +cl +pp +222016 np +np +np +cl +222021 pp +222023 pp +222027 cl +cl +cl +cl +np +cl +np +222036 cl +pp +adjp +pp +222041 np +222043 cl +222046 cl +222048 cl +np +222051 cl +cl +np +cl +222058 cl +cl +np +np +cl +cl +np +cl +cl +cl +np +222070 cl +222072 cl +222074 cl +pp +np +cl +np +222082 cl +222084 cl +advp +222087 cl +np +np +np +np +222094 cl +222096 cl +222100 pp +np +222103 cl +np +adjp +np +np +222109 cl +222113 cl +np +cl +cl +np +pp +np +222122 np +cl +222125 cl +cl +pp +np +222130 cl +222132 np +np +222135 np +222138 cl +advp +cl +222142 cl +np +pp +pp +np +222149 cl +np +np +np +np +222156 cl +cl +cl +222160 cl +222163 cl +cl +222166 cl +np +np +222170 cl +pp +222175 cl +222178 cl +np +222181 cl +pp +cl +np +222187 cl +cl +pp +np +222195 cl +np +222198 cl +pp +np +cl +pp +np +np +np +cl +np +222211 cl +cl +np +222215 cl +222217 cl +222219 cl +np +222223 cl +222225 cl +222227 cl +pp +np +cl +pp +np +cl +222238 cl +np +cl +pp +np +222244 cl +np +pp +np +222249 cl +cl +pp +cl +np +222255 np +222257 np +222260 cl +pp +np +cl +cl +222267 cl +np +np +np +np +222273 cl +cl +222277 cl +pp +cl +cl +np +cl +cl +cl +cl +np +cl +222291 cl +cl +222294 cl +pp +np +np +222299 cl +np +np +pp +np +222307 cl +222309 cl +222311 cl +np +pp +222315 cl +cl +cl +222320 cl +cl +np +222325 cl +np +np +np +pp +np +222334 cl +cl +np +cl +np +pp +np +222345 cl +222347 cl +np +222350 cl +cl +np +np +cl +cl +cl +pp +np +cl +222363 cl +cl +np +pp +np +cl +np +np +np +222373 cl +cl +np +222377 cl +pp +np +222383 cl +cl +pp +np +np +222391 cl +np +cl +222395 cl +np +pp +np +222401 cl +np +np +222405 cl +np +222408 cl +cl +222413 cl +np +cl +cl +np +np +222420 cl +222422 cl +222424 cl +cl +cl +pp +np +222431 cl +np +222434 cl +pp +222437 cl +pp +np +np +pp +np +222445 cl +cl +pp +np +222451 cl +cl +cl +cl +np +222459 cl +np +np +np +cl +222465 cl +cl +np +222469 pp +222471 np +222473 cl +222475 pp +np +222479 cl +222481 cl +np +np +np +222486 cl +pp +np +cl +pp +np +np +np +222498 cl +np +cl +np +pp +np +np +cl +pp +cl +222509 np +np +cl +cl +cl +pp +np +np +222520 cl +cl +np +pp +np +np +222528 cl +222530 cl +cl +222533 cl +222538 cl +pp +222541 cl +cl +np +pp +cl +cl +cl +222550 cl +pp +np +pp +np +np +222557 np +np +np +np +cl +cl +cl +np +222568 cl +cl +np +np +np +cl +222577 cl +pp +222580 cl +np +cl +np +222587 cl +222589 cl +np +222592 np +222594 cl +pp +np +222598 cl +222600 cl +np +222603 cl +cl +np +pp +np +222610 cl +pp +np +pp +np +np +np +cl +pp +np +cl +222624 cl +cl +pp +np +cl +cl +pp +222635 cl +pp +np +cl +pp +cl +cl +cl +pp +np +222647 cl +pp +np +222651 cl +np +cl +np +pp +pp +np +pp +222660 np +222662 np +cl +cl +np +cl +np +222670 cl +222672 cl +pp +np +cl +pp +pp +np +np +cl +222683 cl +pp +np +cl +222688 cl +np +np +222694 cl +cl +pp +222701 cl +cl +cl +np +222706 np +222708 np +np +np +pp +pp +np +np +np +cl +cl +pp +222720 cl +np +np +pp +222726 cl +cl +np +cl +222732 cl +cl +np +np +222738 cl +pp +np +np +222743 cl +222745 cl +222747 cl +pp +np +np +np +np +np +222756 cl +pp +222760 cl +np +pp +pp +np +222766 cl +cl +np +np +222772 np +np +pp +222777 cl +cl +pp +cl +222783 cl +pp +np +np +222788 cl +222791 cl +cl +pp +pp +np +cl +222798 cl +np +np +np +222803 cl +pp +np +pp +222809 np +np +222812 np +222814 pp +pp +222820 cl +222822 cl +222824 cl +222827 cl +cl +pp +cl +np +np +222834 cl +np +np +np +pp +222840 np +pp +np +np +cl +222847 cl +pp +np +np +222852 cl +222855 cl +222857 cl +advp +222861 cl +cl +222864 cl +advp +222870 cl +np +np +np +np +222876 cl +np +222879 cl +np +np +222884 cl +np +222887 cl +np +222890 cl +np +222893 cl +222895 cl +222898 cl +222901 cl +np +np +np +np +np +cl +222911 cl +np +pp +np +222916 cl +np +222919 cl +pp +222922 cl +np +np +np +222927 cl +np +pp +222931 np +222933 pp +np +222936 cl +np +222940 np +222942 np +cl +pp +222946 np +cl +pp +np +np +pp +np +pp +222956 np +222958 np +np +222961 cl +pp +np +pp +222966 cl +np +pp +pp +np +pp +np +222975 np +np +cl +cl +pp +222982 pp +np +pp +np +np +pp +np +np +pp +np +np +222994 np +222997 cl +pp +223000 np +np +223003 cl +223006 pp +223009 np +223015 cl +np +np +pp +223020 pp +np +223023 cl +np +np +pp +np +np +223031 cl +np +np +223035 cl +pp +np +np +pp +np +np +np +np +223045 cl +np +cl +pp +np +np +223052 cl +advp +cl +pp +np +np +np +pp +223063 cl +cl +223066 cl +np +np +pp +223072 cl +223074 cl +cl +pp +pp +np +np +pp +np +223087 cl +223089 cl +223093 cl +cl +pp +223097 cl +pp +np +223101 cl +np +pp +pp +223106 cl +pp +pp +np +np +223112 cl +223121 cl +np +np +pp +cl +np +223128 np +pp +223132 cl +np +223135 cl +np +pp +223139 np +223141 cl +223144 np +223148 cl +np +pp +223152 pp +pp +223155 cl +223157 cl +np +pp +223162 cl +np +pp +pp +np +np +223172 cl +np +pp +223176 cl +np +np +np +pp +223183 cl +np +223187 cl +223189 np +np +np +223194 np +np +223197 pp +np +cl +np +pp +223203 cl +223208 cl +cl +np +pp +223215 cl +pp +np +np +223220 cl +np +np +np +223226 cl +cl +cl +223230 cl +np +np +np +np +pp +np +np +np +223245 cl +np +pp +np +np +np +np +pp +223254 cl +np +np +pp +223260 cl +np +np +np +pp +np +223267 cl +223270 np +pp +223274 cl +cl +pp +np +223280 cl +pp +np +pp +np +223289 cl +np +np +np +np +pp +np +pp +223298 cl +np +np +cl +np +np +np +np +pp +np +np +pp +223311 cl +pp +np +223315 cl +np +np +223319 cl +np +np +pp +223327 cl +cl +np +pp +cl +np +pp +np +cl +223337 cl +223339 cl +np +223342 cl +223344 cl +223346 np +np +223350 cl +cl +np +np +np +223356 cl +223358 cl +np +223361 cl +223363 cl +223366 cl +223368 np +223370 np +223372 cl +223375 cl +cl +pp +cl +np +cl +np +223383 cl +223386 cl +223388 cl +np +np +np +pp +pp +223395 cl +np +223402 np +223405 cl +223407 cl +np +223410 cl +223413 cl +np +np +np +223418 cl +np +np +223422 np +np +223425 np +223427 np +cl +223430 cl +np +np +np +pp +223437 cl +pp +np +223441 np +223443 np +pp +np +223448 np +np +223451 np +cl +pp +np +np +223459 cl +223461 cl +pp +np +np +223468 np +223470 cl +223473 cl +pp +223477 cl +np +223480 cl +np +223486 cl +223489 pp +np +np +223495 cl +np +223499 np +223502 cl +223506 np +223509 cl +np +223513 np +223517 cl +pp +np +223523 cl +cl +223526 cl +cl +pp +pp +223533 cl +np +np +pp +np +cl +np +np +223545 cl +223548 cl +np +np +cl +np +cl +223555 cl +np +np +np +adjp +pp +np +np +223564 cl +np +np +223569 cl +pp +np +223573 cl +223575 cl +pp +np +np +np +np +pp +np +np +pp +223591 cl +223593 cl +223595 cl +pp +223598 cl +np +223601 cl +223603 cl +cl +pp +np +223608 cl +cl +223611 np +np +np +pp +np +np +cl +np +np +223621 np +223623 np +pp +np +223627 cl +223630 cl +223632 cl +223635 cl +cl +223638 cl +223641 cl +cl +223644 cl +223647 cl +np +223650 cl +cl +pp +pp +np +np +np +np +223660 cl +np +np +np +pp +pp +np +223668 cl +223674 cl +223676 cl +223680 cl +np +cl +np +np +223689 cl +np +np +np +np +223695 cl +np +np +pp +223701 cl +np +np +pp +cl +np +223708 np +np +pp +223713 np +223718 cl +np +pp +np +223723 cl +np +223726 pp +np +pp +cl +cl +np +pp +np +223735 cl +pp +223738 np +cl +np +np +223743 pp +pp +np +223749 cl +np +np +np +223754 cl +np +np +np +223759 cl +pp +np +223765 cl +223767 cl +np +np +np +223774 cl +223776 cl +223779 cl +np +np +np +np +np +223786 cl +223791 cl +np +223794 cl +np +223797 cl +223801 cl +pp +np +np +223806 cl +pp +223809 cl +223814 cl +np +np +np +cl +223821 cl +223823 np +223825 cl +np +223828 cl +pp +223831 cl +223834 cl +np +np +223841 cl +np +np +np +pp +np +np +pp +np +np +cl +pp +223858 cl +223861 cl +cl +223864 cl +np +223867 cl +np +cl +np +np +223875 cl +cl +223879 cl +223881 cl +cl +np +223887 pp +223889 cl +223893 cl +cl +cl +223897 cl +cl +223900 cl +np +223903 cl +cl +223907 cl +223909 cl +cl +pp +223915 cl +np +cl +np +np +cl +np +np +cl +np +pp +np +np +cl +np +np +223936 cl +np +np +cl +cl +223943 pp +np +np +223947 cl +np +223950 cl +np +pp +np +np +223957 cl +223959 cl +cl +cl +np +np +pp +np +223967 cl +np +223970 cl +np +np +np +223976 cl +pp +np +np +pp +223982 cl +pp +np +223988 cl +pp +np +cl +pp +223994 np +223996 np +223998 cl +np +np +pp +np +224004 pp +np +224007 cl +224010 cl +224014 cl +224016 cl +np +np +np +cl +np +np +pp +224025 np +np +pp +224030 cl +np +224034 pp +pp +np +np +pp +np +np +np +pp +np +np +np +np +cl +pp +np +np +np +pp +np +np +np +np +pp +np +np +pp +224062 cl +224065 cl +np +pp +np +224072 cl +np +cl +224077 cl +pp +np +cl +np +224084 cl +224086 cl +pp +np +224091 cl +cl +pp +np +224097 cl +np +224101 cl +np +224106 cl +np +224109 cl +224111 np +224113 cl +pp +224116 cl +pp +np +224121 cl +pp +np +224126 cl +224128 cl +224131 cl +cl +224134 np +np +pp +224139 cl +224141 cl +pp +224145 cl +pp +224149 cl +np +224154 cl +np +224157 cl +pp +224161 cl +224163 cl +np +224166 pp +pp +224170 cl +224173 cl +cl +pp +224177 cl +np +np +np +pp +224183 cl +np +np +np +np +224189 cl +np +pp +cl +224194 cl +np +np +224198 cl +np +np +224202 cl +224204 cl +advp +224208 cl +np +np +224212 pp +np +224215 pp +pp +np +224220 cl +cl +np +np +pp +224227 cl +224229 cl +224231 pp +224233 pp +224236 cl +pp +cl +pp +224242 cl +224244 np +np +np +np +224249 np +np +pp +np +pp +224256 cl +np +np +224260 cl +pp +pp +224264 cl +np +224267 cl +np +224271 cl +pp +224274 np +224276 cl +np +np +np +np +np +pp +224284 np +np +224289 cl +pp +224292 np +224294 cl +np +224297 np +224299 np +np +cl +pp +np +224308 cl +np +pp +224312 cl +np +224315 cl +np +224319 cl +np +224323 cl +cl +224326 cl +pp +pp +224330 cl +pp +pp +224334 cl +np +224337 np +np +224340 np +pp +np +np +np +np +pp +np +224349 cl +cl +np +np +pp +224355 cl +224359 cl +np +224362 cl +224364 cl +pp +cl +cl +224369 cl +np +np +224373 cl +pp +pp +pp +224378 cl +np +np +pp +224383 cl +cl +np +np +224391 cl +cl +np +np +np +cl +cl +224399 cl +np +np +np +np +224406 cl +pp +np +np +np +np +224413 cl +np +224416 cl +np +224419 cl +224421 cl +224423 cl +cl +224427 cl +pp +224432 cl +pp +224435 cl +cl +pp +pp +224441 cl +cl +224444 cl +pp +224447 cl +pp +224451 np +np +224454 cl +pp +np +np +224459 cl +pp +np +np +224465 cl +cl +pp +pp +np +pp +224473 np +np +224477 cl +pp +np +np +np +pp +224484 np +np +cl +pp +224489 cl +pp +np +np +np +np +224498 cl +cl +pp +np +cl +224505 cl +np +224508 cl +np +224511 cl +np +224515 cl +np +224518 cl +np +np +np +pp +np +np +pp +224527 np +224529 cl +224533 cl +cl +pp +pp +224539 cl +pp +224543 cl +pp +np +cl +224549 cl +np +np +pp +np +224556 cl +cl +pp +224561 cl +advp +cl +pp +np +np +pp +pp +np +224572 cl +224574 cl +cl +np +pp +np +np +np +np +adv +cl +pp +np +np +224590 cl +cl +pp +np +pp +224597 np +np +224600 cl +pp +np +224605 cl +pp +224611 cl +pp +np +np +pp +np +224618 cl +pp +np +np +cl +advp +pp +np +np +pp +cl +224631 cl +pp +pp +224635 cl +cl +224639 cl +np +224642 pp +pp +pp +pp +224647 cl +pp +np +np +np +np +224654 cl +np +224657 cl +224660 cl +224663 cl +np +np +np +224669 cl +224671 cl +np +np +np +np +adv +224678 np +np +np +224682 np +np +pp +224686 np +224688 np +np +224691 pp +np +224695 cl +pp +pp +np +cl +np +224705 cl +np +pp +pp +224710 cl +np +pp +np +pp +224717 cl +224719 cl +np +np +np +np +pp +np +advp +224728 cl +224730 np +np +np +224734 np +np +np +pp +pp +224740 np +224745 cl +224747 cl +pp +np +pp +np +pp +pp +pp +np +pp +np +pp +np +224762 cl +224764 cl +pp +np +np +np +np +np +pp +pp +np +np +np +np +224779 cl +224781 cl +np +224785 cl +cl +np +np +224790 cl +224792 cl +np +pp +np +np +np +pp +pp +np +pp +224804 np +np +224808 cl +224810 cl +np +224813 cl +np +224816 cl +224818 cl +cl +np +pp +224824 cl +224826 cl +cl +pp +224830 pp +np +np +224835 cl +pp +np +pp +np +224841 cl +224843 cl +pp +pp +np +np +np +np +pp +np +224856 cl +np +np +np +np +cl +np +np +224865 cl +224867 cl +np +np +np +224872 cl +np +np +np +224877 cl +np +224881 cl +224883 cl +pp +np +224890 cl +pp +cl +224894 cl +224896 cl +224899 cl +cl +pp +cl +224906 cl +cl +np +224910 cl +cl +np +224914 cl +np +cl +224919 cl +np +224922 cl +cl +np +pp +224931 cl +np +pp +np +np +np +pp +224939 cl +np +np +224943 cl +np +np +np +np +224950 cl +np +pp +cl +pp +224956 cl +np +np +np +np +224964 cl +224967 cl +pp +cl +pp +224973 cl +224976 cl +224979 cl +pp +cl +pp +224984 cl +224986 cl +224989 cl +cl +pp +cl +224994 cl +pp +224997 cl +pp +225001 cl +np +225005 cl +np +np +225009 cl +pp +225012 cl +pp +np +225016 cl +cl +pp +np +np +225022 cl +pp +np +np +np +np +225030 cl +225032 cl +np +np +225036 np +225038 np +pp +np +np +np +np +pp +225047 cl +225049 cl +np +np +np +225055 cl +np +pp +cl +225061 cl +np +np +225067 cl +225069 cl +pp +np +225073 cl +np +np +np +pp +225079 cl +225081 np +np +225086 cl +np +np +np +225091 cl +np +np +np +np +pp +225099 np +np +225106 cl +cl +225109 cl +np +np +pp +cl +225117 cl +np +np +np +np +cl +225127 cl +np +cl +pp +np +np +np +225138 cl +np +cl +225142 cl +np +225148 cl +np +cl +pp +np +225154 cl +cl +np +225161 np +np +np +pp +np +np +np +pp +225170 cl +225173 cl +pp +225176 cl +np +225182 cl +pp +np +cl +225187 np +np +np +np +pp +np +pp +np +np +pp +225198 cl +np +225202 cl +pp +np +cl +pp +cl +225209 cl +pp +225212 np +225214 np +np +225218 cl +225220 cl +np +225223 cl +225227 cl +np +225230 cl +pp +225234 cl +np +225237 cl +np +cl +225242 cl +cl +np +pp +np +pp +np +225251 cl +pp +225255 cl +pp +225260 cl +cl +np +cl +np +225266 cl +225268 cl +np +225271 np +np +pp +pp +225278 cl +np +cl +pp +np +225284 cl +pp +225290 cl +np +225293 cl +np +225300 cl +np +225303 cl +225308 cl +np +225311 cl +cl +pp +np +225316 cl +pp +np +pp +np +225323 cl +225325 cl +np +225329 cl +cl +pp +np +225335 cl +cl +225340 cl +cl +cl +cl +225348 cl +cl +cl +np +225353 cl +225358 cl +cl +np +np +cl +pp +225366 cl +225368 cl +pp +225371 cl +pp +np +np +225378 cl +225380 cl +225382 cl +225384 cl +np +225389 cl +225391 cl +cl +225395 cl +225400 cl +cl +cl +cl +np +np +cl +pp +225410 cl +np +225414 cl +cl +np +225418 cl +np +225423 cl +np +np +np +pp +np +np +225431 cl +225433 cl +np +pp +np +np +np +np +np +np +225443 cl +pp +225446 np +np +np +225450 cl +pp +np +np +225455 cl +np +225458 cl +pp +np +np +np +np +225465 cl +np +pp +225470 np +np +225477 cl +np +np +np +225482 cl +np +np +225487 cl +np +np +pp +225494 cl +np +np +np +np +np +pp +225502 pp +np +np +225506 np +225508 np +225514 np +np +np +cl +pp +pp +np +cl +np +cl +np +np +225527 pp +np +np +225531 pp +np +pp +np +225536 cl +np +np +np +pp +225543 cl +225545 pp +pp +225550 cl +225552 cl +pp +np +np +225557 cl +225559 cl +pp +np +np +225566 cl +np +np +np +225571 cl +np +np +np +225581 cl +np +np +np +pp +225587 cl +np +np +np +225592 cl +225595 cl +225597 cl +pp +cl +225602 cl +225604 pp +pp +225607 cl +np +pp +225612 cl +225614 cl +np +225620 cl +pp +225623 cl +np +pp +225627 cl +np +pp +225632 cl +225634 cl +np +np +225638 cl +np +pp +pp +225643 cl +pp +225646 np +np +np +np +pp +np +np +cl +pp +np +225661 cl +cl +np +225665 cl +pp +225670 cl +225672 cl +pp +cl +225676 cl +225678 cl +np +np +np +225684 cl +cl +np +np +225691 cl +np +pp +cl +225696 np +cl +pp +225701 np +225703 cl +np +np +np +np +225709 cl +np +225713 cl +225715 cl +np +225720 cl +np +225723 cl +np +225726 cl +225728 cl +225731 cl +225733 cl +np +np +np +np +pp +np +np +cl +cl +pp +225746 cl +np +np +np +np +np +np +np +np +225758 cl +np +np +225762 pp +225764 cl +pp +225767 cl +np +np +np +pp +np +np +np +pp +np +np +np +np +np +np +np +225785 cl +225787 cl +np +np +225792 pp +np +225797 cl +cl +np +np +np +cl +np +np +np +225807 np +pp +cl +225811 np +np +np +np +225817 cl +np +225821 cl +np +cl +225826 cl +cl +225830 cl +225832 cl +cl +pp +225837 cl +np +np +np +np +225845 cl +225847 cl +225849 cl +225851 cl +np +np +np +225857 cl +225859 cl +np +cl +np +np +np +225866 cl +pp +pp +225872 cl +225875 cl +225877 cl +np +pp +cl +225882 cl +pp +225886 cl +cl +np +np +np +np +np +pp +225895 cl +pp +np +225899 cl +cl +225902 cl +cl +225905 cl +cl +225909 cl +pp +225912 cl +225914 cl +np +pp +pp +225920 cl +225922 cl +np +np +225926 cl +pp +np +pp +pp +np +225933 cl +pp +np +225937 cl +225939 cl +225941 cl +225943 cl +225945 cl +225952 cl +225954 cl +cl +pp +np +np +cl +pp +225963 cl +pp +np +np +np +225969 cl +225978 cl +225981 cl +pp +np +np +cl +pp +np +225990 cl +pp +np +pp +225995 cl +225998 cl +226000 cl +226010 cl +226012 cl +226018 np +np +cl +pp +226023 np +np +np +np +pp +226030 np +np +226034 cl +pp +cl +cl +np +np +pp +np +226044 cl +226046 cl +np +np +np +226052 cl +np +cl +pp +np +pp +226060 np +np +np +np +np +pp +cl +226069 cl +226071 np +226073 np +226075 np +226077 np +226079 np +226081 np +cl +np +226085 cl +pp +226088 np +np +pp +226092 cl +np +np +cl +pp +pp +np +226102 cl +cl +cl +np +np +np +226112 cl +226114 np +np +pp +226118 cl +226120 cl +np +cl +pp +226126 cl +226128 cl +226130 np +np +np +np +np +cl +np +np +np +pp +226142 cl +np +np +226146 cl +pp +np +np +226151 cl +np +226156 cl +cl +np +pp +226162 np +np +226169 cl +226171 cl +np +226176 cl +np +np +pp +np +np +226183 pp +pp +226186 cl +cl +226189 cl +np +np +226194 cl +226196 cl +np +226199 cl +np +226203 cl +226206 cl +pp +np +226210 cl +226213 cl +np +226216 cl +226218 cl +226220 cl +226222 cl +226226 cl +226230 cl +226233 cl +np +np +cl +226239 cl +np +np +226244 cl +pp +np +226249 cl +pp +np +np +226255 cl +np +np +pp +np +np +226265 cl +cl +226268 cl +cl +226272 cl +cl +226275 cl +np +np +226281 np +cl +226285 cl +np +226289 cl +np +226292 cl +cl +226297 cl +np +np +np +cl +pp +np +np +226308 cl +pp +226311 cl +pp +226317 cl +np +cl +226321 cl +np +226324 cl +np +np +pp +np +np +np +cl +pp +226335 cl +np +np +np +np +pp +226344 np +cl +pp +cl +226349 pp +pp +pp +pp +226355 cl +pp +pp +np +226360 cl +np +np +np +np +226366 cl +226368 cl +cl +226372 cl +pp +np +226377 cl +cl +np +cl +np +np +cl +226386 cl +pp +np +226391 cl +np +np +np +np +pp +np +np +np +cl +np +226404 cl +cl +226408 pp +np +226413 cl +226416 cl +np +226420 cl +pp +226424 cl +pp +226428 cl +226431 cl +226434 cl +226438 np +pp +226442 cl +cl +np +pp +226448 cl +pp +226452 cl +pp +226455 cl +pp +226459 cl +np +np +np +226464 cl +cl +cl +pp +226469 np +226471 np +226473 cl +226475 cl +pp +226480 cl +226482 np +np +np +np +226487 np +np +np +pp +np +pp +pp +226496 cl +226499 cl +np +226502 cl +pp +226506 cl +226508 cl +np +np +np +226513 cl +cl +np +np +np +np +226521 cl +np +pp +np +226526 cl +226529 cl +226531 cl +226534 np +np +pp +np +np +cl +pp +226543 cl +np +np +pp +cl +pp +np +np +226552 cl +pp +np +cl +cl +226560 cl +pp +np +cl +cl +pp +226568 cl +226571 cl +pp +np +cl +226576 pp +np +np +226580 pp +np +np +cl +np +226586 np +np +cl +226593 cl +pp +np +np +226599 cl +pp +np +np +226604 cl +np +pp +cl +226611 cl +pp +226614 cl +pp +226618 cl +np +cl +np +226623 cl +pp +226628 cl +np +226634 cl +np +np +cl +pp +np +226641 cl +226644 cl +np +226647 cl +np +np +226652 cl +pp +cl +226657 cl +cl +226661 cl +pp +cl +226666 cl +226668 cl +226671 cl +cl +np +np +226676 cl +226679 cl +np +226683 cl +cl +226686 np +np +226691 cl +np +pp +226695 cl +np +pp +np +226701 cl +226703 cl +226707 cl +pp +np +np +np +np +226714 cl +pp +np +np +np +np +np +226723 cl +226725 cl +226727 cl +226729 cl +pp +np +cl +pp +np +226738 cl +226740 cl +226742 cl +226744 cl +cl +226747 cl +226750 cl +pp +np +cl +np +np +np +np +pp +np +226761 cl +226763 cl +226766 cl +226768 cl +np +np +np +226773 cl +226776 cl +np +pp +np +np +np +226783 cl +np +226786 np +np +cl +226791 cl +cl +pp +np +226796 cl +np +pp +np +226802 cl +np +np +cl +np +np +226809 cl +226811 cl +np +np +226816 cl +np +226819 cl +226821 np +cl +np +226826 cl +pp +pp +np +np +pp +np +226837 cl +pp +226840 cl +np +226845 cl +cl +cl +226849 cl +np +226854 cl +np +226857 cl +cl +np +226861 np +226863 np +np +cl +226867 np +np +cl +pp +np +np +226875 cl +226877 cl +np +np +226881 pp +226883 pp +226885 pp +226887 pp +np +cl +np +np +226893 cl +226895 cl +np +np +pp +226901 cl +226904 cl +226906 cl +226908 cl +226911 cl +np +np +np +np +pp +226918 cl +226921 cl +226924 cl +np +np +np +226929 cl +np +np +np +advp +np +np +226938 cl +226940 np +226944 cl +cl +pp +cl +np +np +np +226953 cl +np +np +226957 cl +np +pp +226964 cl +np +np +np +np +226970 cl +pp +226976 cl +np +np +np +226984 cl +np +np +np +226993 cl +np +np +226998 cl +cl +pp +227002 cl +np +np +np +np +np +np +cl +np +227015 cl +227017 cl +np +cl +np +227023 cl +227025 cl +227027 cl +227030 cl +227032 cl +np +227035 cl +np +227039 cl +cl +227043 cl +227045 cl +np +np +np +pp +227052 cl +np +227059 cl +pp +227062 cl +227064 cl +pp +np +227068 cl +np +227071 cl +np +227075 cl +227077 cl +np +227081 cl +np +cl +227086 cl +227089 cl +pp +np +np +pp +227095 cl +pp +pp +advp +np +np +pp +np +np +227108 cl +np +np +227112 cl +pp +227116 cl +pp +np +pp +cl +np +np +np +227125 cl +np +227129 cl +227131 cl +pp +227134 cl +cl +pp +227139 cl +np +np +pp +227144 cl +np +np +227150 cl +pp +np +pp +227155 cl +pp +np +pp +np +227162 cl +227164 np +227166 np +np +np +227174 cl +np +227177 cl +np +np +np +np +np +227184 cl +np +227188 cl +np +np +pp +227193 cl +np +227199 np +np +227206 cl +np +np +227210 cl +np +np +227215 cl +np +227219 cl +np +227224 cl +227226 cl +227229 cl +227231 pp +227233 pp +227235 pp +np +227238 cl +np +pp +np +227245 cl +227247 pp +np +np +np +cl +np +np +np +np +np +cl +adjp +np +cl +np +np +np +227267 cl +np +np +cl +np +np +np +pp +227276 cl +cl +np +np +np +np +np +227288 cl +pp +227291 np +227293 cl +np +227296 cl +pp +227299 cl +pp +cl +cl +cl +pp +227306 cl +227308 cl +np +np +227316 cl +pp +np +np +227321 cl +np +np +np +np +cl +np +np +pp +227331 cl +np +pp +np +227338 cl +np +pp +227342 np +227344 cl +227348 cl +cl +pp +np +np +np +227356 cl +cl +pp +np +227361 cl +227363 cl +pp +np +227367 cl +227369 cl +pp +np +cl +227374 cl +pp +cl +227378 cl +pp +cl +227382 cl +pp +227385 cl +np +227389 cl +np +cl +np +227395 cl +np +pp +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +np +np +cl +np +227419 cl +227421 cl +227423 cl +227425 cl +227428 cl +pp +cl +cl +pp +cl +227435 cl +np +pp +227439 cl +np +cl +np +227444 cl +pp +227447 cl +pp +227450 cl +pp +np +227454 cl +227456 cl +np +pp +pp +np +227465 cl +cl +np +227469 cl +227472 cl +cl +cl +227477 cl +227479 cl +np +np +227483 cl +227485 cl +227488 cl +cl +np +pp +np +np +227496 cl +pp +np +227500 cl +pp +np +np +227505 cl +np +np +cl +227512 cl +227514 cl +pp +227517 cl +227519 cl +pp +vp +227525 cl +227527 cl +np +np +np +np +227533 cl +227535 cl +227538 cl +np +227541 np +np +np +227546 cl +cl +np +227551 cl +np +227554 cl +pp +227558 cl +np +pp +np +227564 cl +227566 cl +np +227570 cl +advp +np +227576 cl +np +cl +pp +227581 cl +np +227585 cl +cl +227588 pp +pp +np +pp +pp +np +227597 cl +pp +np +227601 cl +np +cl +pp +np +227608 cl +np +227611 cl +np +np +np +cl +np +np +np +cl +np +np +np +cl +np +np +np +227628 cl +227630 cl +227632 cl +227635 cl +227637 cl +np +227646 cl +cl +cl +cl +227652 cl +np +np +cl +pp +np +np +pp +227661 cl +np +np +227665 cl +227667 cl +np +np +227672 cl +np +np +227678 cl +np +np +227682 cl +cl +pp +227686 cl +np +np +227691 cl +227694 cl +np +227697 cl +np +227702 cl +np +np +np +227707 cl +np +np +np +227714 cl +pp +cl +227719 cl +227722 cl +227728 cl +227730 np +227733 cl +np +np +pp +227739 cl +227741 cl +np +cl +pp +np +227749 cl +cl +227752 cl +227754 cl +227758 cl +227760 cl +227762 cl +227764 cl +227766 cl +227768 cl +227770 cl +np +227773 cl +227776 cl +np +227779 cl +np +np +227787 cl +227789 cl +np +cl +227796 cl +pp +227799 cl +np +227802 cl +pp +np +np +227807 cl +227809 cl +np +227814 cl +227816 cl +227818 cl +np +227823 cl +227825 cl +227827 cl +np +227832 cl +np +227835 cl +227842 cl +cl +np +227848 cl +cl +np +227853 cl +227857 cl +227860 cl +np +227864 cl +pp +227869 cl +227873 cl +227876 cl +np +np +227881 cl +np +np +np +227887 cl +np +np +np +227893 cl +227895 cl +cl +227899 cl +np +227902 cl +np +np +227908 cl +np +pp +np +227914 cl +227917 cl +227920 cl +np +227925 cl +227928 pp +227932 cl +pp +227936 cl +227939 cl +cl +227943 cl +227945 cl +pp +np +np +pp +227951 cl +np +np +cl +pp +227958 cl +np +np +227964 cl +np +np +np +227970 cl +227974 np +pp +np +227980 cl +227982 cl +pp +np +np +227987 cl +np +227992 cl +227994 np +np +227997 np +227999 np +np +pp +228003 cl +pp +np +np +np +228011 cl +228013 cl +228015 np +228017 cl +pp +228020 cl +228023 cl +228025 cl +228027 cl +pp +np +np +228032 cl +228034 cl +pp +pp +np +228039 cl +228041 cl +pp +cl +228049 cl +228051 cl +cl +228054 cl +pp +228058 cl +np +cl +pp +228064 cl +228066 np +228068 cl +np +np +np +228073 cl +228075 cl +np +np +pp +np +pp +228083 cl +np +np +228089 cl +cl +np +np +228094 cl +pp +228098 cl +cl +cl +pp +np +np +cl +228106 pp +np +228109 pp +np +np +np +np +228117 cl +np +np +228121 np +228123 np +cl +np +pp +pp +228130 cl +pp +np +np +np +228138 np +np +228144 cl +228146 cl +np +np +pp +np +np +228154 cl +cl +np +pp +np +pp +228162 cl +np +np +np +228167 cl +np +pp +np +228172 cl +228174 cl +pp +pp +228178 cl +np +np +228183 cl +cl +228186 pp +np +np +228192 cl +228195 np +np +cl +np +228200 cl +np +np +228205 cl +cl +228208 np +np +np +np +228213 cl +cl +228216 cl +pp +228220 cl +np +np +np +np +228227 pp +228229 cl +pp +228232 cl +pp +np +pp +np +np +228242 np +np +np +pp +228247 cl +np +cl +np +np +cl +cl +np +228257 cl +pp +228260 cl +pp +228263 np +228265 cl +pp +np +pp +228270 cl +np +228273 pp +np +cl +np +np +np +228280 cl +np +np +np +cl +pp +np +228289 cl +228291 np +np +pp +228295 np +pp +np +228301 cl +cl +np +cl +pp +pp +np +228311 pp +np +228315 pp +np +np +228319 cl +228321 pp +228323 pp +pp +np +np +np +np +cl +cl +np +cl +228335 cl +pp +np +228339 cl +228341 cl +cl +pp +228345 cl +cl +228349 cl +np +228352 cl +pp +228358 cl +pp +np +np +228363 cl +228365 cl +pp +pp +np +228371 cl +pp +np +228375 cl +cl +228378 cl +228380 cl +pp +228383 cl +pp +228387 cl +pp +cl +np +228393 cl +228396 cl +np +pp +np +np +228402 np +np +pp +228408 cl +228410 cl +228413 cl +228415 cl +np +np +np +cl +pp +np +228424 cl +228426 cl +228428 cl +np +np +pp +pp +228435 cl +228437 cl +cl +pp +pp +np +np +228447 cl +228449 pp +228451 np +np +228455 pp +np +np +np +cl +pp +np +pp +pp +np +228467 cl +pp +np +228471 cl +pp +np +228475 cl +228477 np +np +np +pp +np +228483 cl +cl +pp +pp +pp +np +228491 cl +np +np +np +pp +np +228501 cl +228503 np +np +cl +np +228508 np +np +pp +228513 cl +pp +np +np +228518 cl +pp +228522 cl +228524 cl +np +np +228529 np +228531 cl +228538 np +np +np +pp +228543 cl +pp +np +np +np +np +cl +228551 np +np +np +np +np +np +228558 np +np +pp +np +228563 cl +228566 np +np +cl +np +np +np +pp +228574 cl +228576 cl +pp +228579 cl +228585 np +228587 np +228589 np +cl +pp +np +cl +pp +pp +pp +228598 cl +228600 np +np +np +pp +228605 cl +228608 np +np +np +pp +228614 np +np +228617 cl +228619 np +np +pp +228623 cl +np +pp +np +228628 cl +228630 np +np +228633 cl +228635 np +pp +np +228639 cl +pp +228642 cl +228647 cl +pp +228650 cl +228653 np +cl +pp +228657 cl +228660 np +np +pp +228664 np +np +228669 cl +228673 np +np +pp +228677 cl +228685 np +np +228689 np +np +pp +np +228694 cl +pp +np +228698 cl +np +np +np +np +228707 cl +cl +228710 cl +228712 np +228714 np +pp +np +228718 cl +228720 cl +pp +228726 cl +np +228729 np +np +228732 cl +np +np +228736 cl +pp +np +228741 np +np +np +228746 cl +np +np +pp +228753 cl +pp +228756 cl +228758 cl +pp +np +228762 cl +pp +np +228767 cl +np +np +np +np +pp +np +np +pp +228777 cl +np +np +228781 np +np +pp +228785 cl +228788 np +np +228794 np +np +228797 cl +228801 cl +np +pp +228805 cl +228807 np +np +228811 np +np +228814 cl +228817 np +np +np +228822 np +228829 cl +cl +pp +228833 np +np +228836 np +np +228839 pp +np +np +228844 cl +np +228847 cl +228849 cl +pp +np +pp +np +np +np +pp +np +pp +np +np +np +np +pp +228865 np +pp +np +np +np +228872 cl +228875 np +np +np +228879 pp +np +228883 np +228887 np +np +np +228891 cl +pp +cl +pp +228896 np +np +pp +np +228901 cl +np +np +228905 np +np +228908 pp +np +cl +228914 cl +228917 pp +228920 np +228925 cl +cl +np +pp +pp +228931 np +np +np +228935 cl +pp +228938 cl +pp +pp +pp +228943 np +228945 np +228947 cl +np +np +np +pp +228953 cl +pp +np +cl +np +np +228960 np +np +np +228964 cl +pp +pp +np +np +228970 np +np +228974 cl +np +228977 cl +pp +pp +np +228982 np +np +228986 np +np +228992 pp +np +np +228996 np +np +229001 cl +np +229005 cl +pp +229008 cl +vp +229011 pp +np +np +229015 pp +np +np +229022 np +pp +pp +np +229027 cl +pp +229031 cl +229033 cl +np +229037 cl +229039 cl +229041 cl +229043 cl +229045 cl +np +229050 cl +pp +229053 cl +pp +np +np +229058 cl +cl +229062 cl +np +229065 cl +229069 cl +229071 cl +pp +np +np +229077 cl +np +np +np +229082 cl +229084 cl +np +229088 cl +229090 cl +cl +cl +pp +np +229096 cl +np +np +np +229104 cl +229106 np +np +np +229110 cl +229112 cl +229115 cl +np +229119 cl +229121 cl +np +np +np +229126 cl +np +np +np +229131 cl +229133 cl +229135 cl +np +np +np +229141 cl +np +np +np +np +229151 cl +pp +np +np +np +np +pp +np +np +cl +np +pp +np +np +np +cl +229168 cl +229172 cl +229174 cl +229178 cl +np +cl +229183 cl +229185 cl +229187 cl +229190 np +229196 np +229198 np +229201 cl +np +np +np +np +229207 cl +np +np +np +np +229216 np +np +229220 cl +pp +cl +cl +229228 cl +np +np +np +np +229234 cl +np +229237 cl +np +np +np +np +229243 cl +np +229246 cl +229249 np +np +np +229254 cl +229256 cl +np +229259 cl +229261 cl +229263 cl +np +pp +np +229269 cl +pp +pp +229274 cl +pp +229282 cl +cl +229285 cl +pp +229288 cl +229290 cl +pp +cl +pp +229295 np +229297 np +np +np +229302 cl +cl +pp +229306 cl +229310 np +cl +229314 cl +229316 pp +229318 pp +229320 pp +np +pp +229324 cl +229326 np +np +229329 np +np +229332 pp +np +np +pp +np +229340 cl +np +np +229344 pp +np +pp +np +229351 cl +pp +np +229355 cl +np +229358 np +np +229362 np +np +np +np +229367 cl +229370 cl +229373 np +229375 np +pp +229378 cl +cl +np +pp +np +pp +np +cl +cl +np +np +np +np +np +229394 cl +229396 cl +np +np +np +229403 cl +cl +229406 cl +229408 cl +229410 cl +pp +np +cl +np +229416 cl +229419 cl +np +pp +np +229426 cl +np +cl +np +np +np +np +229435 cl +np +np +np +229440 cl +229442 np +np +np +np +pp +229448 cl +np +np +np +229453 cl +np +np +np +229461 cl +np +np +np +cl +229467 np +np +pp +np +229472 cl +229475 cl +pp +np +cl +229480 pp +np +adjp +np +pp +np +cl +229490 cl +np +np +np +np +np +229497 cl +229499 cl +cl +229502 cl +229506 cl +np +229509 cl +pp +229513 cl +np +cl +229518 cl +np +229521 cl +229524 cl +pp +cl +229528 pp +pp +np +pp +229535 cl +cl +229538 cl +229542 cl +229544 cl +229549 cl +pp +229555 cl +229557 cl +pp +229565 cl +cl +229569 cl +cl +229572 cl +229575 cl +229578 cl +229580 cl +229582 cl +cl +pp +cl +np +np +229591 cl +cl +229594 cl +np +229601 cl +229603 cl +229605 cl +229607 cl +229609 cl +np +np +cl +229616 cl +229619 cl +229622 cl +229624 cl +np +np +pp +np +np +229633 cl +np +cl +229637 np +np +229641 cl +pp +229644 np +np +np +229648 cl +pp +np +229652 cl +229656 cl +cl +229660 cl +cl +np +pp +229666 cl +cl +229674 cl +pp +np +229678 np +cl +np +np +229683 cl +np +229687 cl +pp +229691 cl +np +np +cl +np +229697 cl +229699 cl +np +np +229703 cl +229706 cl +229708 cl +np +np +229713 cl +229716 cl +pp +229719 cl +229722 cl +np +229725 cl +np +np +np +pp +229731 cl +229733 cl +np +np +np +np +229740 cl +np +np +np +cl +229746 cl +229751 cl +cl +pp +pp +np +np +cl +229759 cl +229762 cl +np +np +np +np +pp +np +229771 cl +cl +229774 cl +np +pp +np +np +229782 cl +cl +np +np +np +229788 cl +229791 cl +pp +229797 cl +cl +229808 cl +229810 cl +229813 cl +229815 cl +229817 cl +229819 cl +229821 np +229823 np +np +229826 cl +pp +np +229830 cl +229833 cl +cl +pp +cl +229838 pp +229840 pp +np +229844 cl +229849 cl +229851 cl +pp +229854 cl +229856 cl +229859 cl +pp +229863 cl +np +229866 cl +229869 cl +np +np +np +229874 cl +np +np +np +229880 cl +np +pp +np +229889 cl +pp +229893 pp +229895 cl +pp +229898 cl +pp +cl +229902 cl +pp +np +pp +np +229909 cl +229912 cl +229914 cl +229919 cl +cl +229922 cl +229924 cl +vp +229927 cl +229929 cl +pp +229935 cl +229937 cl +np +229941 cl +cl +np +229945 np +pp +229948 cl +229950 np +229955 cl +pp +229958 cl +pp +229962 cl +229964 cl +229967 cl +229969 cl +229972 cl +pp +np +np +229983 cl +cl +np +np +229989 cl +cl +cl +cl +cl +cl +229996 cl +pp +229999 np +np +np +pp +230006 cl +cl +230009 cl +pp +np +np +230017 cl +np +pp +230021 cl +np +230024 cl +pp +230027 pp +np +230031 cl +cl +np +230035 cl +pp +np +230040 cl +np +np +np +230046 pp +cl +cl +np +230051 np +np +pp +230055 cl +pp +np +230060 cl +230062 cl +pp +230068 cl +pp +230071 cl +np +230074 cl +230076 np +np +230079 cl +np +230083 cl +pp +np +np +np +cl +pp +230091 cl +230094 cl +pp +pp +230098 cl +pp +230102 np +230104 cl +pp +230110 np +cl +pp +np +230115 cl +np +np +230121 cl +vp +230124 cl +230126 cl +pp +np +230130 cl +np +np +230135 cl +230138 cl +np +230141 cl +np +230144 cl +230146 cl +cl +cl +pp +np +np +np +230156 np +np +pp +np +np +230162 np +np +np +np +pp +np +np +230170 cl +np +pp +np +np +np +230177 cl +np +np +230181 cl +230183 cl +np +np +np +230188 cl +np +np +230192 cl +np +230195 cl +230198 cl +np +230201 np +np +230205 cl +230208 pp +np +230211 pp +np +230215 pp +np +230220 cl +pp +np +230224 cl +cl +advp +230228 np +np +np +np +230233 np +230238 cl +cl +pp +np +230244 cl +230247 cl +230249 cl +np +cl +230258 cl +np +230262 cl +cl +np +230267 cl +np +230271 cl +np +np +230275 cl +np +pp +np +230280 cl +np +cl +pp +np +230286 cl +pp +np +230290 cl +pp +np +230295 cl +230297 cl +np +np +230302 cl +230304 cl +pp +np +np +230309 cl +230311 cl +230313 cl +230319 cl +np +230323 cl +pp +np +230327 cl +pp +230331 cl +pp +np +230335 cl +cl +pp +np +np +np +230344 cl +pp +230347 cl +pp +230352 cl +230354 cl +pp +230357 cl +pp +230360 cl +pp +230365 cl +230369 cl +230372 cl +230374 cl +np +230377 cl +230379 cl +230391 np +230394 cl +230398 cl +230400 cl +230402 cl +230404 pp +np +np +230408 np +230411 pp +np +np +np +np +230418 cl +230420 cl +230423 cl +230425 cl +pp +230429 cl +np +np +230433 cl +np +np +230438 cl +np +230446 cl +np +230449 np +np +230452 cl +np +np +230457 cl +np +230461 cl +np +230464 cl +pp +np +np +230469 cl +230471 cl +np +np +np +230477 cl +cl +np +np +np +np +230484 cl +230487 cl +230489 cl +230491 cl +np +np +230496 cl +cl +np +pp +np +230503 cl +230505 cl +np +np +230509 cl +np +230513 cl +np +230517 cl +pp +np +230521 cl +230523 cl +pp +np +np +230529 cl +230532 cl +np +np +np +np +np +pp +np +cl +pp +230543 cl +230546 cl +230549 cl +np +pp +np +np +230556 cl +cl +pp +cl +cl +230564 cl +pp +np +np +np +230570 cl +np +np +230575 cl +np +np +np +230580 cl +np +np +np +230586 cl +np +np +np +230591 cl +np +230597 cl +np +np +np +np +230603 cl +np +230608 cl +230612 cl +pp +pp +230617 cl +np +230620 cl +pp +np +230624 cl +np +pp +np +np +230631 cl +pp +cl +pp +230637 cl +cl +np +pp +np +230645 cl +np +pp +230650 cl +230652 cl +230655 cl +230657 np +230659 np +230661 cl +230663 cl +pp +230668 cl +230670 cl +230673 cl +cl +230676 cl +230679 cl +230681 cl +230683 np +230686 cl +pp +230691 cl +cl +230694 cl +np +230697 cl +230700 cl +np +230703 np +np +230709 cl +np +np +230713 cl +cl +pp +cl +230719 cl +230723 cl +np +230726 cl +cl +pp +np +230733 cl +np +np +np +pp +np +230740 cl +np +np +np +pp +np +230750 cl +np +np +230754 cl +230757 cl +230759 cl +np +230762 cl +230764 np +230766 np +pp +np +230771 cl +pp +np +230779 cl +np +230786 cl +np +230794 cl +np +230797 cl +np +cl +230802 cl +pp +np +np +230807 cl +cl +230810 cl +230812 cl +pp +230815 cl +230819 cl +np +230822 cl +np +230825 cl +np +np +230829 cl +pp +np +230833 cl +pp +230836 cl +cl +230839 cl +230844 cl +cl +cl +230849 cl +np +np +cl +pp +np +230856 cl +np +np +cl +np +230862 cl +230864 cl +np +230869 pp +cl +pp +pp +230876 cl +pp +np +np +230881 cl +pp +cl +pp +cl +230888 cl +cl +pp +np +np +cl +230895 cl +230897 cl +230899 cl +230901 cl +230903 cl +pp +230906 cl +230909 cl +230911 cl +230914 cl +230916 cl +np +230921 cl +np +np +230925 cl +230930 cl +np +vp +230935 np +230938 cl +np +230941 cl +230943 cl +230945 cl +230947 cl +230949 cl +230951 cl +230953 cl +230955 cl +230957 cl +230959 cl +230961 cl +230963 cl +230965 cl +np +230968 cl +230971 cl +np +np +np +np +230978 cl +cl +230982 cl +np +np +np +cl +np +230992 cl +230994 cl +np +np +cl +np +231000 cl +231002 cl +231006 np +np +231009 np +np +np +231013 cl +231016 np +231018 np +231022 cl +231024 cl +np +np +cl +np +231031 cl +pp +np +np +np +231038 cl +cl +pp +np +231044 np +231047 cl +231051 cl +cl +pp +np +np +231057 cl +231059 cl +cl +cl +231064 cl +cl +231068 cl +231070 cl +pp +np +np +cl +231077 cl +pp +np +np +231082 cl +pp +np +np +cl +np +np +231093 cl +231095 cl +np +np +231099 cl +231101 cl +231103 cl +pp +cl +np +np +np +231111 cl +231113 cl +np +cl +cl +cl +pp +231123 cl +231125 cl +pp +np +np +231130 cl +cl +np +231135 cl +pp +np +231139 cl +231142 cl +np +231145 cl +np +231150 cl +cl +cl +231154 cl +cl +231160 cl +np +cl +pp +231166 cl +pp +np +np +np +231173 cl +pp +231177 cl +231179 cl +231184 cl +np +cl +231189 pp +231191 pp +231194 cl +231196 cl +231199 cl +231202 np +231204 cl +pp +np +231208 cl +pp +231211 cl +231216 cl +pp +np +231220 cl +pp +231224 cl +pp +np +231230 cl +np +pp +np +231235 cl +231237 cl +np +np +cl +231243 cl +np +231248 cl +231250 cl +231252 cl +231254 cl +231258 cl +231261 cl +np +np +np +np +231270 cl +cl +231274 cl +pp +231277 cl +np +np +cl +pp +231283 cl +np +231287 cl +pp +np +np +231293 cl +np +231296 cl +pp +231300 cl +231302 cl +pp +np +231306 cl +np +np +np +cl +pp +231316 cl +np +np +advp +pp +np +231323 cl +np +np +231328 cl +231331 cl +231334 cl +231336 np +np +231340 cl +np +np +pp +231347 cl +231349 cl +231352 cl +np +np +np +np +pp +231359 cl +np +np +231363 cl +231366 cl +cl +231372 cl +cl +231376 cl +np +231379 np +np +231382 np +np +np +231388 cl +231391 cl +231393 cl +np +231397 cl +231399 cl +np +np +231405 cl +231407 cl +pp +np +np +np +231415 cl +pp +231418 cl +np +np +231423 cl +pp +np +np +cl +np +cl +231432 cl +np +np +231437 cl +pp +231441 cl +pp +231445 cl +cl +pp +231449 cl +231451 cl +231453 cl +pp +231456 cl +231460 cl +np +231463 cl +np +np +231469 cl +np +np +231473 cl +231478 cl +np +np +231482 cl +231484 cl +np +np +np +np +231490 cl +231493 cl +231495 cl +np +np +pp +np +cl +231502 cl +np +np +231506 cl +np +np +231510 cl +np +cl +pp +np +231517 cl +np +231522 cl +231524 cl +pp +231528 cl +cl +231531 cl +np +np +231538 cl +cl +231542 cl +231546 cl +231548 cl +231551 cl +231553 cl +231556 cl +231558 cl +231561 cl +np +np +231566 cl +cl +np +pp +231571 cl +np +np +pp +np +231578 cl +cl +pp +231582 cl +np +231588 cl +np +pp +231592 cl +cl +np +pp +pp +pp +cl +pp +231601 cl +np +pp +231605 cl +np +pp +231609 cl +np +cl +np +231614 cl +np +231617 cl +np +231620 cl +np +231623 cl +np +231626 cl +231629 cl +pp +np +231633 cl +np +231636 cl +231641 cl +pp +231644 cl +231646 cl +np +231649 cl +231651 cl +231655 cl +np +231658 cl +231664 cl +np +231668 cl +cl +231672 cl +231674 cl +cl +231677 cl +231682 cl +np +np +231686 cl +231689 cl +cl +231693 cl +231695 cl +231698 cl +np +np +np +pp +np +231705 cl +pp +np +231709 cl +pp +np +231713 pp +np +231716 pp +np +231720 cl +np +np +np +231725 cl +np +np +np +231731 cl +pp +np +np +cl +231738 cl +np +np +231744 cl +pp +np +np +np +231750 cl +pp +np +231755 cl +np +pp +231759 cl +np +231762 cl +231767 cl +231769 cl +np +231772 cl +231774 cl +np +cl +231780 cl +cl +231784 cl +231787 cl +np +231790 cl +np +np +231795 cl +np +231799 cl +np +231802 cl +pp +np +231807 cl +231810 cl +np +231813 cl +pp +np +231819 cl +231821 cl +pp +np +231825 cl +pp +np +np +np +231832 cl +231834 cl +cl +231837 cl +231839 cl +231841 cl +231844 cl +np +231847 cl +231849 cl +cl +pp +cl +cl +pp +np +np +np +231859 cl +cl +231863 cl +231865 np +pp +np +231870 cl +231872 cl +cl +231875 cl +np +231878 np +np +cl +np +np +np +np +231886 cl +np +231889 cl +np +np +np +np +231896 cl +231898 cl +np +np +231902 cl +np +pp +np +np +231908 cl +np +np +pp +231914 cl +231916 cl +np +np +np +231922 cl +231926 cl +231929 cl +231934 cl +cl +231938 np +231940 cl +cl +np +np +231945 cl +231947 cl +np +231950 cl +np +231953 cl +231955 cl +np +231958 cl +np +231962 cl +np +231966 cl +231969 cl +231971 cl +231974 cl +231976 cl +231979 cl +np +231982 cl +np +np +231987 cl +np +231990 cl +pp +cl +pp +np +231996 cl +np +231999 np +232001 np +np +232007 cl +np +np +232011 cl +cl +cl +np +232016 cl +cl +pp +np +232024 cl +cl +232027 cl +pp +232030 np +232032 cl +232034 np +232036 cl +232039 np +np +np +232043 cl +pp +np +np +pp +np +232052 cl +cl +pp +cl +232061 cl +232063 cl +232065 cl +cl +pp +np +232070 cl +232075 np +np +np +232080 cl +cl +232083 np +np +np +np +232088 cl +232090 cl +np +232093 cl +232096 cl +232099 cl +232103 cl +cl +np +232108 cl +cl +232112 cl +np +np +np +np +232118 cl +np +np +232122 cl +np +np +np +232127 cl +np +cl +232132 cl +pp +np +np +232138 cl +np +cl +232143 np +np +np +np +232149 cl +232152 np +232154 cl +232157 cl +232159 cl +232162 cl +232164 cl +232166 cl +232173 cl +cl +np +cl +np +232181 cl +np +np +232187 cl +pp +cl +pp +232194 advp +cl +pp +np +cl +pp +np +232202 cl +pp +np +cl +pp +np +pp +np +232214 cl +pp +232217 cl +pp +pp +232223 cl +232225 cl +np +pp +np +np +np +pp +np +232234 cl +np +pp +np +232239 cl +pp +np +232243 cl +cl +cl +np +np +232250 cl +np +np +232256 cl +232258 cl +232260 cl +232262 cl +232264 cl +np +pp +232271 cl +cl +232274 cl +np +232277 cl +np +np +np +232283 cl +cl +232286 cl +232288 pp +np +pp +np +232297 cl +pp +232300 cl +cl +pp +232304 cl +np +232309 cl +cl +np +pp +232314 cl +np +np +pp +232322 cl +pp +np +cl +cl +np +232330 cl +np +np +pp +232335 cl +232339 cl +232341 cl +232345 cl +pp +232348 cl +232354 cl +np +np +np +232359 cl +232361 cl +232363 cl +232365 cl +232367 cl +pp +232371 cl +pp +np +cl +232377 cl +232379 np +pp +np +232383 cl +232385 cl +cl +232388 cl +232390 cl +232392 np +np +np +pp +cl +pp +np +np +232402 cl +np +np +pp +232407 cl +cl +232410 cl +np +np +np +np +pp +np +np +cl +232421 cl +pp +np +np +232431 cl +np +np +232435 cl +np +cl +np +np +np +pp +cl +232445 cl +232447 cl +232449 cl +np +232452 cl +np +np +np +np +232458 np +232460 np +np +232465 cl +232468 cl +pp +np +232472 cl +pp +np +232477 cl +232479 cl +232484 cl +np +232488 cl +pp +pp +232494 cl +232499 cl +232501 cl +232504 cl +cl +pp +np +232509 cl +pp +np +232514 cl +232516 np +cl +pp +232520 cl +232524 cl +pp +232527 cl +pp +232531 cl +np +232535 cl +232538 cl +232540 pp +np +cl +232544 cl +232548 cl +cl +pp +np +np +np +232556 cl +232559 cl +232562 cl +np +cl +pp +np +cl +232569 cl +cl +cl +232573 cl +pp +np +232579 cl +np +232582 cl +np +np +232588 cl +np +232591 cl +np +np +232597 cl +np +232600 cl +232602 np +np +232605 cl +np +pp +232610 cl +np +np +np +pp +232616 cl +232621 cl +pp +np +np +232626 cl +np +pp +np +np +cl +pp +np +np +232636 cl +np +pp +np +np +232642 cl +np +232645 cl +232647 cl +np +cl +np +232652 cl +np +232657 cl +np +232660 np +232662 np +np +cl +np +232667 cl +232670 cl +232674 cl +np +232677 cl +np +232680 cl +np +np +np +np +cl +np +np +np +232692 cl +pp +pp +np +232697 pp +np +cl +232706 cl +np +232710 cl +np +np +232714 np +232718 cl +np +232722 cl +cl +pp +np +232727 cl +pp +pp +np +232735 cl +np +232739 cl +cl +pp +np +232744 cl +pp +pp +np +232749 cl +232751 cl +np +np +np +232756 cl +232758 cl +np +232762 cl +np +232765 np +np +np +pp +np +232771 cl +232774 cl +232776 cl +np +np +np +232784 cl +232786 cl +232790 cl +np +cl +np +cl +np +232798 cl +np +np +cl +np +232807 cl +advp +np +np +cl +cl +np +np +232816 cl +cl +cl +np +np +np +232823 cl +np +np +np +232828 cl +np +np +232833 cl +np +np +cl +232838 cl +np +232842 cl +pp +np +232846 cl +np +pp +np +232855 cl +np +cl +np +np +232862 cl +cl +np +np +232868 cl +232870 np +232872 np +pp +232877 cl +cl +np +pp +np +232883 cl +cl +cl +cl +cl +232889 np +np +232893 cl +232896 cl +232899 cl +232902 cl +232905 cl +np +232909 cl +232912 cl +232915 cl +np +np +np +232921 cl +pp +pp +232928 cl +np +np +232932 np +232934 np +232936 cl +cl +232939 np +cl +232942 np +cl +232951 cl +232953 cl +232955 np +np +232958 np +np +232962 cl +np +np +232966 cl +232968 cl +cl +232972 cl +232976 cl +np +np +232980 cl +232983 cl +np +np +232987 cl +232989 cl +232992 cl +np +cl +np +cl +cl +np +cl +cl +cl +np +cl +cl +np +233007 cl +pp +np +cl +np +233014 cl +cl +cl +cl +233019 cl +np +233026 cl +cl +233030 cl +cl +233034 cl +cl +233039 cl +pp +233042 cl +pp +233046 cl +233048 cl +np +np +pp +233055 cl +233057 cl +pp +cl +pp +cl +pp +233064 cl +233066 cl +np +np +233072 cl +pp +pp +233076 cl +pp +233080 cl +pp +233083 cl +233085 cl +233089 cl +233092 np +np +233095 cl +np +233100 cl +np +233103 cl +np +233107 cl +233112 cl +233114 cl +233116 cl +233119 cl +233121 cl +233124 cl +233126 cl +233131 cl +233133 cl +233136 cl +233138 cl +233142 cl +cl +np +233147 cl +233152 cl +233154 cl +233156 cl +233158 cl +233160 cl +233162 cl +np +233170 cl +pp +cl +cl +233175 cl +233178 pp +233180 pp +233182 pp +233188 cl +np +np +cl +cl +233198 cl +np +cl +233203 cl +233206 cl +233209 cl +233211 cl +np +np +pp +233219 cl +np +pp +np +np +cl +233226 cl +233229 cl +pp +vp +233236 cl +cl +np +np +pp +233242 cl +233247 cl +np +np +np +233252 cl +233254 cl +233256 cl +233258 cl +pp +233264 np +233266 cl +np +cl +pp +np +np +np +233274 cl +233277 cl +233279 cl +233281 cl +233287 cl +cl +np +np +233292 cl +np +np +233297 cl +233302 cl +np +233305 cl +np +np +233309 cl +np +233312 cl +np +np +233319 cl +cl +233322 cl +np +np +np +np +pp +np +np +233331 cl +cl +233337 cl +233339 cl +np +233342 cl +np +cl +np +233349 cl +pp +cl +np +np +np +233356 cl +np +233359 cl +np +pp +233366 cl +np +cl +np +233371 cl +np +233374 cl +pp +np +233380 cl +233382 pp +233384 pp +np +np +np +233389 cl +cl +233394 cl +np +pp +233399 cl +np +233402 cl +np +233405 np +233407 cl +233414 cl +np +np +pp +np +233420 cl +233422 cl +233426 cl +233428 cl +233434 cl +233436 cl +np +233442 cl +pp +cl +pp +cl +np +np +np +np +233452 cl +cl +pp +np +cl +233458 cl +np +pp +233463 cl +233468 cl +233470 cl +cl +cl +cl +cl +233476 cl +pp +233481 cl +233483 cl +233485 pp +233489 np +233491 pp +233493 cl +233499 cl +cl +pp +233503 cl +233506 np +233510 cl +np +233514 cl +np +233520 cl +np +cl +cl +np +233528 cl +pp +cl +233533 cl +233535 cl +233537 cl +np +233542 cl +np +cl +233549 cl +pp +np +np +np +np +cl +np +pp +np +233560 cl +cl +233565 cl +233567 cl +np +np +233575 cl +cl +cl +pp +np +np +233582 cl +cl +pp +233588 cl +pp +np +np +np +233594 cl +pp +233599 cl +cl +233603 cl +cl +233606 cl +np +233612 cl +cl +233618 np +cl +233621 cl +233623 cl +233625 cl +233628 cl +233631 pp +233636 np +233639 cl +cl +cl +pp +cl +pp +233646 cl +np +233649 cl +233652 cl +233655 cl +pp +cl +233660 cl +pp +np +np +pp +np +233668 cl +233671 cl +np +np +np +pp +np +233680 cl +cl +np +233684 cl +np +np +233688 cl +pp +np +pp +233693 cl +233696 cl +cl +np +np +233702 cl +np +233705 cl +np +233709 cl +np +233712 np +np +cl +cl +cl +cl +np +np +np +233725 cl +np +cl +233729 cl +233731 np +np +np +pp +233737 cl +np +233740 cl +233742 np +np +np +np +pp +233750 cl +233755 cl +233760 cl +233762 cl +pp +cl +np +pp +233768 cl +np +233772 cl +233774 cl +np +233780 cl +233783 cl +np +np +cl +np +np +np +233791 cl +np +np +np +233796 cl +pp +np +233800 cl +233802 np +cl +cl +233806 cl +233809 cl +233811 cl +233816 cl +cl +np +np +cl +pp +np +np +233826 cl +np +233829 cl +pp +233832 cl +233834 cl +pp +np +np +pp +vp +np +233843 cl +pp +233846 np +233848 cl +233851 cl +233853 cl +pp +pp +pp +np +233860 cl +233862 cl +pp +np +pp +pp +np +233870 cl +pp +np +np +233876 cl +cl +np +np +pp +np +np +233885 np +233887 cl +np +np +233893 cl +233895 np +233897 np +233902 cl +cl +pp +cl +np +np +pp +np +np +233912 cl +233914 np +np +233918 cl +pp +np +np +233926 cl +233928 cl +cl +233931 cl +pp +233934 cl +np +233940 cl +np +np +np +np +233946 cl +np +233949 cl +np +pp +233954 cl +233956 cl +pp +np +233960 cl +233962 cl +pp +233965 cl +np +np +233969 cl +233971 pp +np +np +np +233976 cl +pp +233980 np +np +233983 cl +233985 cl +pp +pp +np +233993 cl +cl +233996 cl +233998 cl +234000 cl +234002 cl +np +np +234008 cl +234010 cl +234012 cl +np +234015 cl +pp +234019 cl +234021 cl +np +234024 cl +np +234029 cl +cl +cl +234034 cl +cl +234037 cl +234039 np +234041 cl +cl +np +234046 cl +234049 np +np +234054 cl +np +234057 cl +234059 cl +np +np +np +234065 cl +np +np +np +234071 cl +234073 cl +np +234076 cl +np +234079 cl +234082 cl +234084 np +234086 np +234091 cl +np +np +np +234096 cl +np +np +234101 cl +np +234104 cl +np +234107 cl +np +234111 cl +pp +234114 cl +np +np +np +np +234121 cl +pp +cl +pp +234127 cl +pp +cl +pp +234133 cl +pp +cl +pp +234139 cl +np +cl +np +234144 cl +234146 cl +np +np +234150 cl +234152 cl +234154 np +np +pp +np +cl +cl +np +np +pp +np +cl +234168 cl +np +234171 cl +np +cl +np +234177 cl +np +np +pp +cl +np +np +pp +234187 cl +cl +np +np +np +234193 cl +cl +np +np +np +234200 cl +234202 cl +np +np +np +np +np +np +np +234216 cl +234219 cl +np +234222 cl +np +np +234227 cl +cl +234231 cl +234233 cl +234235 pp +pp +np +pp +np +np +234244 cl +234246 cl +np +234249 cl +234252 cl +234254 cl +np +np +234258 cl +np +np +234266 cl +np +np +234270 cl +np +np +cl +234275 np +234277 cl +234279 cl +np +pp +234283 cl +234285 np +np +cl +234289 np +np +234294 cl +np +np +np +np +234300 cl +np +np +np +np +234307 cl +234309 np +234311 cl +np +pp +234315 np +np +234320 cl +234322 np +np +adjp +cl +pp +np +np +np +cl +234332 cl +np +np +pp +234339 cl +pp +234342 np +np +pp +np +234348 cl +np +np +np +cl +np +234355 cl +pp +np +np +pp +cl +234363 cl +234365 cl +234367 cl +234372 cl +234375 cl +cl +pp +cl +np +np +pp +234384 cl +234386 cl +234388 cl +pp +234393 cl +pp +234396 cl +234398 cl +234402 cl +pp +cl +234406 cl +234408 cl +234410 cl +234414 cl +cl +pp +234418 cl +cl +np +pp +234423 cl +np +234427 cl +pp +pp +np +234434 cl +np +234439 cl +cl +234446 cl +234448 cl +pp +234451 cl +np +np +pp +234457 cl +234462 cl +pp +234465 cl +pp +234468 cl +pp +np +234475 cl +pp +234478 np +234480 cl +pp +pp +np +234485 cl +234487 cl +234490 cl +234492 cl +234495 cl +cl +pp +np +cl +cl +234502 cl +np +pp +234508 cl +234510 cl +234512 np +np +234516 cl +np +np +234520 cl +pp +np +234524 cl +np +234527 np +234529 np +234532 cl +234534 cl +234538 cl +pp +np +np +234546 cl +np +np +234550 cl +234552 np +np +234555 np +234558 cl +np +234561 cl +np +np +np +234566 cl +pp +234570 pp +np +np +pp +np +234576 cl +np +np +234580 cl +pp +np +234584 cl +np +np +np +np +234592 cl +np +cl +234596 cl +234599 cl +np +np +234603 np +pp +234606 cl +np +np +pp +np +pp +234614 cl +234617 np +np +234620 pp +np +234624 np +234626 np +np +np +234630 cl +pp +pp +234634 np +np +234637 cl +pp +np +np +234642 cl +234645 pp +234648 np +234653 cl +np +np +234660 np +np +234664 np +234666 np +np +234669 np +np +234672 cl +pp +np +np +np +pp +234679 cl +cl +np +pp +np +pp +np +234687 cl +pp +np +234691 cl +234693 cl +np +np +np +pp +pp +np +np +np +np +234707 cl +pp +np +np +234716 cl +pp +234719 np +np +234722 cl +pp +np +np +np +234728 cl +np +234732 cl +np +np +pp +cl +234738 cl +234740 cl +np +np +np +np +234749 cl +pp +234752 np +np +234755 cl +pp +np +234759 cl +pp +pp +234763 cl +np +234766 cl +234770 cl +pp +np +np +np +234777 cl +vp +pp +cl +pp +234785 np +234787 cl +np +234790 cl +pp +np +234794 cl +cl +cl +pp +234800 cl +advp +cl +np +pp +np +234807 cl +pp +np +np +np +pp +pp +pp +234817 cl +np +np +np +np +np +np +np +234827 cl +pp +np +234832 np +234834 pp +np +pp +np +pp +np +234841 cl +pp +234846 cl +234850 cl +234852 cl +234854 cl +cl +234857 pp +234859 cl +pp +234862 cl +np +234865 cl +np +pp +np +np +234871 np +np +234875 cl +np +np +234879 cl +pp +234882 cl +np +234886 cl +pp +pp +234890 cl +pp +pp +234894 cl +pp +pp +np +234900 cl +cl +234903 cl +np +234907 cl +cl +cl +pp +cl +pp +234914 np +234917 np +234921 cl +np +234924 cl +234926 np +np +np +pp +234935 cl +234938 np +np +np +234943 cl +pp +pp +pp +234953 cl +pp +234957 cl +np +np +pp +np +234964 cl +pp +pp +np +np +pp +pp +234973 cl +234976 cl +pp +pp +234980 cl +234985 cl +234987 cl +np +np +np +pp +np +np +234996 cl +np +pp +np +np +235002 cl +cl +pp +235009 cl +np +np +cl +np +np +235016 cl +np +235020 cl +235023 cl +advp +pp +pp +235031 cl +np +235034 cl +235036 cl +235038 cl +pp +235042 cl +np +235045 cl +cl +pp +cl +cl +cl +pp +np +235054 cl +np +np +np +235060 cl +pp +np +235065 np +pp +np +235070 cl +235072 cl +np +235075 cl +pp +235081 cl +cl +cl +pp +np +235087 cl +235090 np +235092 np +np +np +pp +np +235098 cl +advp +235104 cl +np +np +np +235110 cl +cl +pp +235115 cl +pp +235118 cl +np +np +235122 cl +pp +235126 cl +cl +235132 cl +np +235135 cl +pp +pp +np +235140 cl +pp +np +235144 cl +np +np +235151 cl +pp +np +pp +np +np +np +235159 cl +pp +235162 cl +np +np +235166 cl +235168 np +np +235171 cl +cl +pp +235176 cl +235178 np +235181 cl +pp +np +235185 cl +np +np +np +np +pp +pp +np +235195 cl +np +np +235199 pp +235201 cl +235203 pp +235205 cl +235208 cl +np +235211 pp +pp +235214 cl +np +235217 pp +pp +235221 cl +pp +235226 cl +vp +np +np +np +235232 cl +np +235237 cl +pp +235241 cl +pp +cl +pp +pp +235247 cl +cl +235252 cl +pp +np +235256 pp +235258 pp +235260 cl +np +np +cl +pp +np +np +cl +235270 pp +np +235273 cl +235275 cl +np +235278 cl +pp +cl +235282 np +np +cl +235286 pp +np +pp +235290 np +235293 cl +np +pp +np +pp +np +235302 cl +pp +cl +pp +pp +cl +np +np +pp +np +235313 cl +np +np +np +235321 cl +np +235324 cl +np +235330 cl +np +np +np +cl +pp +pp +235338 cl +np +np +cl +pp +np +np +pp +235347 np +np +np +np +235352 cl +cl +advp +np +np +np +pp +235361 cl +235363 cl +np +np +np +adjp +np +np +np +235373 cl +235375 cl +pp +np +np +pp +np +np +cl +235385 cl +235387 cl +235389 cl +pp +adjp +235393 cl +pp +235398 cl +cl +np +np +235405 cl +pp +np +np +pp +235411 cl +np +np +pp +np +np +235418 cl +235421 cl +np +np +235426 cl +pp +np +np +np +np +pp +np +np +np +np +cl +235439 cl +pp +235444 cl +pp +235449 cl +cl +pp +np +np +235459 cl +pp +cl +np +235465 cl +np +np +235470 cl +cl +np +np +235476 cl +np +np +cl +cl +np +np +np +np +pp +pp +235488 cl +pp +np +235493 cl +pp +235496 cl +np +np +235501 cl +235503 cl +cl +np +np +np +235510 cl +pp +235513 cl +np +np +np +cl +np +np +np +pp +np +np +pp +np +235530 cl +vp +np +np +cl +pp +235537 cl +vp +cl +pp +np +np +np +np +np +np +np +pp +235550 cl +np +np +np +np +np +np +np +235559 cl +np +np +235566 cl +235568 cl +235571 cl +np +pp +235575 cl +np +235579 cl +cl +pp +cl +pp +np +np +pp +np +np +np +np +np +np +pp +np +235597 cl +np +np +pp +np +235604 cl +np +np +np +np +235610 cl +pp +235616 cl +pp +235619 cl +235621 cl +235623 cl +235625 cl +235627 cl +235629 cl +235631 cl +235633 cl +np +np +np +pp +np +235640 cl +np +np +np +np +pp +np +np +235651 cl +235654 cl +pp +pp +235658 cl +np +np +np +np +pp +np +np +np +235670 cl +np +pp +235674 cl +np +pp +235679 cl +cl +np +np +np +np +pp +235687 cl +cl +235690 cl +np +235693 cl +cl +235697 cl +235699 cl +235701 np +np +pp +235705 cl +pp +235710 cl +np +pp +235714 cl +np +cl +pp +np +np +pp +np +np +np +235727 cl +235731 cl +np +np +np +np +235737 cl +np +np +235745 cl +np +np +np +np +235751 pp +pp +np +np +235756 cl +235758 cl +cl +235761 cl +235765 cl +235767 cl +235769 cl +235771 cl +235774 cl +235776 cl +235778 cl +np +np +np +np +np +pp +235786 np +np +pp +np +235792 cl +pp +pp +cl +cl +235798 np +np +np +pp +235804 cl +cl +235808 cl +np +235811 cl +pp +np +cl +pp +cl +cl +235820 cl +np +pp +np +235826 cl +235828 cl +pp +np +235833 cl +np +np +np +235841 cl +235844 cl +235846 cl +cl +pp +np +pp +np +235853 cl +pp +pp +pp +235859 cl +235861 cl +235863 cl +pp +np +235867 cl +pp +np +235872 cl +cl +235877 cl +235880 cl +cl +235883 np +pp +np +np +np +235889 cl +np +pp +np +pp +cl +235897 cl +235899 cl +235902 cl +cl +np +np +np +235910 cl +235912 cl +cl +pp +pp +np +np +235921 cl +cl +np +pp +235926 cl +pp +235930 cl +pp +235933 cl +pp +235939 cl +cl +235942 cl +cl +235946 cl +np +np +np +cl +235953 cl +pp +235956 cl +np +235959 cl +pp +235962 cl +235964 cl +235967 cl +pp +235973 cl +pp +np +pp +235980 cl +pp +235983 cl +235986 cl +235988 cl +pp +np +235993 cl +np +cl +235999 cl +np +pp +236003 np +236006 cl +pp +236009 cl +np +np +np +236015 cl +vp +pp +236019 cl +np +np +236023 cl +pp +np +np +np +236031 cl +pp +236034 cl +np +pp +236038 cl +pp +cl +np +236043 cl +236045 cl +pp +236048 cl +np +pp +236053 cl +cl +cl +pp +np +np +np +236061 cl +236063 cl +np +236066 cl +pp +np +236070 cl +np +236073 cl +np +236078 cl +np +pp +236082 cl +np +236085 cl +pp +pp +np +236090 pp +np +pp +pp +pp +pp +pp +pp +pp +pp +pp +pp +pp +pp +pp +pp +np +pp +np +pp +np +pp +np +pp +np +np +np +np +np +236121 pp +236124 pp +236131 cl +236133 cl +236136 cl +236138 cl +236141 cl +236143 cl +cl +236147 cl +236149 cl +236152 cl +236154 cl +236157 cl +236159 cl +236162 cl +236164 cl +236168 np +np +pp +cl +np +np +236176 cl +pp +236179 cl +pp +np +np +236186 cl +np +np +236191 cl +cl +np +236195 cl +vp +236200 cl +236204 cl +pp +236209 cl +np +pp +236213 cl +pp +236217 cl +np +pp +236223 cl +np +np +cl +236228 cl +np +236233 cl +pp +236236 cl +236239 cl +np +236242 cl +np +236250 cl +pp +np +236254 cl +236256 cl +cl +236260 cl +236262 cl +pp +236265 cl +pp +236269 cl +236273 cl +236275 cl +np +np +pp +np +np +236283 cl +pp +np +236287 cl +236290 cl +cl +cl +236294 cl +pp +236297 cl +236299 cl +pp +np +np +pp +236305 cl +236310 cl +pp +cl +pp +236316 cl +np +cl +np +pp +np +np +np +236327 cl +pp +236330 cl +np +np +236334 cl +pp +cl +cl +236340 cl +236343 cl +np +np +pp +np +np +236351 cl +cl +236354 pp +pp +np +np +pp +pp +np +236362 cl +pp +cl +236366 np +np +np +np +np +np +np +pp +236375 cl +236379 cl +pp +np +cl +236386 cl +cl +236389 cl +np +np +236393 cl +pp +236396 cl +236399 cl +236401 cl +pp +236405 cl +pp +236408 cl +pp +pp +236413 cl +np +np +pp +np +np +pp +236422 cl +np +np +np +236428 cl +236430 np +236432 cl +pp +np +236443 cl +pp +cl +np +236451 cl +cl +236455 pp +236457 cl +236459 pp +236461 cl +pp +236464 cl +236466 np +np +np +pp +pp +pp +np +236474 cl +pp +236480 cl +pp +np +np +advp +pp +np +np +236489 cl +np +np +pp +np +236496 cl +pp +236499 cl +236502 cl +pp +cl +np +np +np +np +pp +236512 cl +np +np +pp +cl +np +np +np +236521 cl +pp +236527 cl +236529 cl +pp +pp +236537 np +np +np +236541 cl +pp +np +np +np +236547 cl +pp +np +np +236552 np +np +np +np +236557 np +np +pp +np +pp +np +np +np +np +236568 cl +236570 cl +236572 pp +236574 pp +cl +pp +np +236579 np +236581 np +np +236584 np +np +pp +np +236591 cl +236593 cl +236595 cl +236597 np +np +236600 pp +np +pp +236604 cl +236606 cl +236608 cl +pp +np +np +np +236617 cl +pp +236623 np +236625 np +np +236628 pp +pp +cl +pp +pp +np +np +236637 cl +pp +cl +pp +np +np +np +np +np +np +np +236650 cl +np +np +236654 np +np +236658 cl +pp +cl +236662 cl +np +np +236667 cl +pp +236671 cl +cl +236674 np +236676 cl +np +236679 cl +pp +236683 cl +np +236686 cl +236688 cl +236690 cl +np +np +236694 cl +np +236697 cl +pp +236700 cl +236705 cl +np +cl +236710 cl +236713 cl +236720 cl +cl +cl +pp +236725 pp +np +np +np +np +pp +np +np +236734 cl +np +np +np +pp +np +np +236742 cl +236745 cl +236747 cl +236749 cl +np +236752 cl +236754 cl +np +236758 cl +236760 np +236762 cl +np +np +pp +pp +np +np +236772 cl +np +236775 cl +cl +pp +236780 cl +pp +np +236785 cl +np +np +np +pp +np +pp +np +np +236795 cl +236797 cl +cl +pp +np +np +pp +236804 np +np +236807 cl +pp +pp +np +236812 np +np +np +236816 np +236818 cl +236820 cl +pp +236823 np +np +236826 cl +pp +236830 cl +236832 pp +pp +pp +pp +236838 cl +np +236841 np +cl +pp +236845 cl +236847 cl +236849 np +np +pp +236856 cl +pp +cl +236860 np +236862 np +pp +236867 np +cl +236870 np +np +236874 cl +np +np +236878 np +np +236881 np +np +pp +pp +pp +np +np +236891 cl +pp +236894 np +np +pp +np +236899 cl +236902 cl +np +236905 np +cl +cl +pp +cl +pp +236912 cl +np +np +np +236921 cl +np +236924 cl +236926 np +np +np +pp +pp +np +np +236936 cl +cl +vp +236944 cl +pp +236947 cl +cl +cl +236951 cl +cl +pp +np +np +236958 cl +cl +np +236963 cl +pp +236966 cl +np +np +cl +np +cl +236973 pp +236975 pp +pp +236981 cl +236983 cl +236985 cl +236987 cl +pp +pp +236994 cl +236996 cl +np +cl +237000 pp +237002 pp +237004 cl +np +np +237011 cl +np +cl +np +pp +237017 cl +pp +cl +np +pp +np +np +237025 cl +237027 cl +cl +np +cl +np +np +pp +np +237038 cl +237041 cl +237043 cl +237045 cl +pp +237049 np +np +237052 cl +np +np +np +np +237058 cl +pp +pp +np +237063 cl +cl +pp +np +237068 cl +np +np +np +np +vp +np +np +np +237078 cl +pp +np +np +237084 cl +pp +np +np +np +np +np +pp +np +237094 np +np +np +np +pp +np +np +np +237103 np +np +np +237107 pp +237109 pp +237111 cl +np +pp +pp +np +np +cl +np +np +np +pp +237123 cl +np +pp +np +np +np +237131 cl +237133 np +pp +np +np +237139 np +cl +237143 cl +pp +pp +237147 cl +cl +pp +237152 cl +237154 cl +cl +np +237158 cl +cl +pp +np +237163 cl +237165 cl +pp +237171 cl +cl +pp +pp +237177 cl +np +np +np +np +237183 cl +np +pp +np +237188 cl +237191 np +np +cl +pp +np +np +np +237199 cl +np +pp +np +np +np +237207 cl +pp +cl +np +237212 cl +np +np +237216 cl +np +pp +237222 cl +cl +cl +pp +237227 cl +237229 cl +np +237237 cl +adjp +pp +np +237242 np +cl +np +237246 pp +237248 pp +pp +np +cl +237253 cl +237256 cl +pp +np +237261 cl +237264 cl +np +237270 cl +np +np +np +237275 cl +np +cl +237279 cl +np +237282 cl +cl +np +np +pp +cl +cl +np +237292 cl +cl +237296 np +237298 cl +237301 cl +237303 cl +pp +237306 cl +237310 cl +pp +np +237314 cl +pp +np +np +np +237320 cl +np +cl +pp +np +237328 cl +237330 cl +pp +237333 cl +pp +np +pp +np +np +np +237342 cl +pp +np +pp +np +237348 cl +cl +np +np +237353 cl +pp +pp +np +np +pp +cl +pp +np +pp +cl +pp +np +pp +np +237370 cl +237372 cl +pp +237377 cl +237380 cl +cl +np +237385 cl +cl +np +np +237391 cl +237395 cl +np +237398 cl +np +cl +np +np +237406 cl +237411 cl +np +pp +np +np +cl +np +np +pp +237422 np +237424 np +np +pp +237433 cl +237435 cl +np +237438 cl +237440 cl +237443 np +cl +237447 np +cl +cl +237452 cl +cl +np +np +237461 cl +np +np +237465 cl +np +237468 cl +pp +pp +pp +237475 cl +cl +237478 cl +237480 cl +np +np +np +237486 cl +np +cl +pp +np +np +237493 cl +237495 cl +pp +237498 cl +237501 cl +np +np +np +cl +pp +237509 cl +pp +237515 cl +np +pp +237519 cl +np +np +pp +pp +np +np +np +237529 pp +237531 cl +237533 cl +np +237538 cl +cl +cl +cl +np +np +237545 cl +cl +cl +pp +cl +cl +np +237554 cl +np +237557 np +cl +pp +np +237564 cl +237566 cl +np +np +pp +np +237573 cl +237575 cl +np +np +np +pp +np +cl +np +np +pp +np +np +237588 cl +cl +cl +237596 cl +237600 cl +cl +237603 cl +np +237607 cl +cl +pp +237612 cl +pp +pp +np +np +np +np +237622 cl +pp +np +cl +237628 cl +np +cl +237634 cl +237637 cl +237639 cl +237641 cl +237643 cl +237645 cl +pp +237648 cl +pp +237652 cl +237657 cl +pp +cl +pp +cl +237664 cl +cl +237668 cl +cl +237672 cl +np +cl +237676 cl +np +237679 cl +cl +cl +237684 cl +pp +cl +pp +cl +pp +cl +pp +237694 cl +pp +np +pp +cl +cl +cl +cl +pp +np +237706 cl +237708 cl +np +cl +np +cl +pp +cl +pp +cl +pp +cl +pp +cl +pp +cl +pp +237725 cl +237728 cl +pp +cl +pp +237734 cl +pp +cl +pp +237741 cl +pp +np +np +237746 np +pp +np +np +np +np +237754 cl +237756 cl +237759 cl +237761 cl +237765 cl +cl +cl +np +np +np +237772 cl +237774 np +np +237779 np +237781 cl +pp +np +237785 cl +237788 cl +pp +np +np +237793 np +np +np +cl +237799 cl +pp +pp +pp +np +237805 cl +np +np +237809 cl +cl +237814 cl +237816 cl +pp +np +237822 cl +237825 np +pp +237831 cl +pp +cl +237836 cl +pp +np +cl +cl +np +cl +pp +np +np +pp +np +237850 cl +237853 np +np +237859 cl +pp +237862 cl +pp +np +cl +cl +np +237869 cl +pp +np +237873 cl +237875 np +cl +cl +237880 cl +pp +np +237884 cl +pp +237887 cl +pp +np +237895 cl +cl +cl +237899 cl +237903 cl +237905 cl +pp +pp +237909 cl +237911 cl +pp +np +np +np +np +237921 cl +np +237924 np +237926 cl +237928 cl +237930 cl +pp +np +237934 cl +pp +237938 cl +237940 cl +np +np +237944 cl +np +pp +237949 cl +pp +np +237953 cl +pp +np +np +np +237960 cl +237962 pp +pp +pp +pp +237968 pp +237971 cl +237973 cl +237975 cl +237977 cl +237980 cl +cl +pp +237985 cl +np +np +237989 cl +np +237993 cl +np +np +np +pp +pp +np +238006 cl +cl +pp +np +np +238014 cl +np +238017 cl +np +np +238021 cl +cl +np +cl +pp +238027 cl +238032 cl +np +cl +238037 cl +np +cl +np +cl +np +np +238046 cl +238049 pp +np +np +238053 cl +238055 cl +238059 cl +cl +238063 cl +cl +238067 cl +238070 cl +pp +pp +238075 cl +238077 cl +np +238081 cl +238085 cl +np +np +238089 cl +np +np +238093 cl +238095 cl +238097 cl +pp +pp +238102 cl +238104 np +pp +np +np +238112 cl +238116 cl +cl +cl +cl +cl +238123 cl +238128 cl +238130 cl +np +np +pp +238135 cl +np +238139 cl +238141 cl +pp +np +238148 cl +238150 cl +np +pp +238154 cl +pp +np +238158 np +238160 np +238162 cl +238167 cl +np +238170 cl +238173 cl +238175 np +np +238181 cl +pp +advp +cl +238186 cl +np +238189 np +np +cl +pp +238194 cl +pp +238197 cl +pp +238202 cl +pp +238205 cl +pp +np +238211 cl +np +pp +238215 cl +pp +pp +np +pp +238223 cl +238225 cl +pp +np +cl +238231 cl +238233 cl +238235 pp +238239 cl +238242 cl +cl +cl +238246 cl +238250 cl +pp +np +cl +np +238257 cl +238259 cl +np +238262 cl +pp +238267 cl +pp +np +cl +pp +np +238276 cl +238279 cl +238281 cl +238283 cl +238285 np +np +238288 cl +pp +cl +238292 cl +cl +pp +np +238297 cl +np +238300 pp +238302 pp +pp +238307 cl +238310 cl +cl +cl +cl +np +cl +238317 cl +np +np +np +238323 pp +238325 cl +pp +np +238329 cl +np +np +238333 cl +238335 np +np +238338 np +238341 np +np +np +238345 np +np +np +np +pp +np +238352 cl +238355 np +238358 pp +238360 pp +pp +238368 cl +pp +238371 np +np +pp +np +np +np +np +238379 cl +238382 pp +238385 np +238392 cl +pp +np +np +238397 cl +pp +np +238401 np +238403 cl +pp +np +np +238408 np +np +238412 cl +np +pp +np +np +np +238421 cl +238423 cl +pp +238426 cl +pp +np +pp +238431 np +cl +cl +cl +238437 cl +238439 cl +cl +np +np +np +238450 cl +238453 np +pp +pp +cl +cl +238461 cl +238463 cl +238466 cl +pp +cl +cl +238473 cl +238476 np +238478 cl +cl +238483 cl +cl +np +238491 np +238493 cl +pp +238496 cl +pp +238502 cl +pp +238505 cl +cl +pp +np +238512 cl +np +np +np +np +pp +np +238521 cl +pp +np +np +np +238527 cl +238529 cl +pp +np +pp +np +np +pp +np +np +cl +np +np +np +np +238547 cl +238550 cl +pp +np +np +238555 cl +pp +np +np +cl +np +np +pp +238564 cl +pp +np +cl +238569 cl +238572 cl +pp +pp +np +np +pp +238579 cl +pp +238582 cl +pp +238586 cl +pp +np +pp +cl +238592 cl +pp +np +238597 cl +np +np +238601 cl +238603 np +np +np +238609 cl +238611 cl +238613 cl +pp +np +cl +238618 cl +pp +np +np +238623 np +238625 np +238628 cl +vp +np +238632 np +np +np +np +pp +238640 cl +vp +238643 cl +238645 cl +238647 np +cl +238650 cl +pp +np +238654 cl +pp +np +pp +pp +cl +np +238663 cl +pp +238668 cl +np +238671 cl +pp +np +238675 cl +pp +238678 cl +238681 cl +pp +238687 cl +238689 np +pp +cl +cl +238695 cl +pp +np +238700 np +cl +cl +np +238705 np +cl +pp +238710 cl +cl +cl +pp +np +cl +np +np +np +pp +238723 cl +pp +238726 cl +cl +238730 cl +cl +cl +np +np +238736 cl +238738 cl +238741 cl +238744 cl +cl +cl +np +np +np +238751 cl +np +238754 cl +238756 cl +pp +np +np +np +pp +np +238764 cl +238766 np +238768 cl +238774 cl +cl +np +238781 cl +pp +np +238785 cl +pp +np +238792 cl +np +cl +cl +np +238802 cl +pp +cl +pp +238807 cl +vp +238812 cl +pp +238815 cl +pp +pp +np +238820 cl +238822 cl +238825 cl +cl +np +pp +238832 cl +np +np +np +238837 cl +np +np +np +238845 cl +cl +cl +pp +np +np +np +cl +np +pp +238857 cl +cl +238861 advp +cl +cl +np +238868 cl +238870 cl +pp +238874 cl +cl +238877 cl +pp +np +238881 cl +pp +np +238885 np +pp +238890 cl +pp +np +238894 cl +pp +np +238898 cl +pp +np +np +238906 cl +cl +cl +pp +np +cl +np +238914 cl +238919 cl +cl +cl +238924 cl +pp +238927 cl +238929 cl +238933 cl +238935 cl +pp +238939 cl +cl +pp +pp +238944 np +238946 np +np +np +238951 cl +238953 cl +pp +238956 cl +np +np +np +238964 cl +pp +cl +238970 np +np +cl +pp +238975 cl +238978 cl +cl +np +pp +cl +np +238985 pp +np +238988 pp +np +238991 cl +238993 cl +cl +238996 cl +238998 cl +239001 cl +239004 cl +np +239007 cl +pp +239010 pp +np +239013 pp +np +239017 cl +np +239020 cl +pp +239024 cl +239026 cl +239028 np +pp +np +239033 cl +np +cl +239037 cl +pp +np +np +np +239043 cl +pp +np +np +239049 cl +np +pp +pp +np +np +239057 cl +cl +pp +np +pp +239064 cl +239066 cl +np +cl +np +239071 cl +pp +np +np +np +239077 cl +239080 cl +239082 cl +pp +pp +np +239087 cl +np +pp +239093 cl +np +pp +239097 cl +239099 cl +pp +239104 cl +pp +np +np +np +cl +pp +239112 cl +cl +np +239116 cl +pp +239119 cl +pp +np +np +np +np +pp +239128 cl +np +np +np +pp +np +239135 cl +239137 pp +239139 cl +np +np +cl +239147 cl +np +239150 np +239152 np +np +239157 cl +239161 np +239163 cl +pp +cl +239167 cl +pp +239172 np +np +cl +239177 cl +cl +np +cl +pp +np +np +np +cl +pp +np +239189 pp +239191 cl +np +239197 cl +pp +np +cl +pp +239204 cl +np +pp +np +239210 cl +np +239213 cl +pp +np +pp +239218 cl +239220 np +cl +cl +pp +pp +np +239229 cl +np +239232 cl +np +239236 cl +np +pp +np +np +np +239243 cl +239248 cl +239251 cl +cl +239254 cl +pp +np +239259 cl +np +np +pp +239264 cl +np +pp +np +239270 cl +239273 cl +pp +239276 cl +np +pp +cl +pp +np +np +cl +cl +239287 cl +np +np +pp +239292 cl +pp +239296 cl +cl +np +pp +239302 cl +np +pp +np +np +pp +239311 cl +cl +pp +239316 cl +239319 cl +239322 cl +239327 cl +np +pp +239335 cl +239338 cl +np +np +cl +pp +239345 cl +239347 cl +cl +pp +np +np +cl +np +239355 cl +pp +239359 pp +np +np +np +239364 cl +np +239367 cl +pp +np +np +np +vp +239377 cl +np +np +np +239382 cl +np +np +np +cl +pp +cl +pp +239391 cl +np +pp +239395 cl +np +239401 cl +cl +np +np +np +np +np +pp +np +np +cl +239414 np +239417 cl +239421 cl +239423 cl +np +pp +239430 cl +cl +239433 cl +239435 cl +239437 cl +239439 cl +pp +pp +239443 np +np +239447 cl +cl +advp +239451 cl +239457 cl +239460 cl +pp +239466 cl +239468 cl +239471 cl +239473 cl +cl +239477 cl +239480 cl +239483 cl +pp +np +np +np +239490 cl +np +np +np +pp +np +np +239501 cl +np +239504 cl +239508 cl +np +np +239513 cl +239515 cl +239517 cl +cl +np +np +239523 cl +np +cl +239528 cl +239530 cl +cl +239533 cl +239536 cl +cl +pp +239541 cl +pp +239544 cl +pp +239548 np +cl +pp +cl +pp +239556 cl +239558 cl +pp +239561 cl +np +np +239565 cl +pp +239569 cl +239572 cl +cl +pp +cl +np +239579 cl +239581 cl +239583 np +239585 np +pp +np +239589 np +pp +np +239594 cl +239596 cl +np +pp +np +pp +239602 cl +np +pp +np +pp +np +cl +cl +239612 cl +np +239618 cl +pp +np +cl +pp +cl +239627 cl +np +239630 pp +np +239633 cl +np +np +239637 cl +pp +np +np +239642 cl +np +np +cl +np +239649 cl +239652 cl +239656 cl +239658 cl +239660 cl +239663 cl +239666 cl +np +np +np +239671 cl +239673 cl +np +239677 cl +239679 pp +np +239683 cl +239685 cl +239687 cl +pp +np +pp +239693 cl +np +239696 cl +239698 np +239700 np +np +239703 cl +advp +np +np +np +pp +np +np +np +239714 cl +239717 np +np +239720 cl +np +239725 cl +239727 cl +np +239730 cl +239733 cl +239735 cl +239738 cl +np +np +cl +239743 cl +cl +np +np +239748 cl +pp +cl +pp +cl +np +239756 cl +pp +np +239761 cl +pp +239765 cl +239768 cl +np +cl +pp +239773 cl +239775 cl +cl +239778 cl +np +pp +239782 cl +239784 cl +np +np +np +239789 cl +pp +pp +239793 cl +np +239797 cl +239799 cl +np +239802 cl +239808 cl +cl +239812 cl +np +np +np +239818 cl +cl +239821 cl +239824 cl +pp +239829 advp +cl +np +pp +np +np +cl +pp +np +239840 cl +np +np +239844 pp +np +pp +239848 cl +np +np +239852 cl +239857 cl +239860 cl +239862 cl +pp +239866 cl +239868 cl +239870 cl +np +advp +239876 cl +np +pp +np +239881 cl +np +pp +np +239887 cl +239890 cl +239892 cl +239897 cl +cl +pp +239902 cl +239904 np +np +np +cl +239911 np +adjp +cl +cl +cl +239917 cl +239919 cl +np +np +239925 cl +np +np +np +239930 cl +pp +np +239935 cl +np +np +239939 np +pp +239942 np +239944 np +239946 cl +239948 cl +239950 cl +cl +cl +239957 cl +pp +np +cl +239962 np +np +pp +np +cl +239968 cl +np +239972 cl +np +np +239976 cl +np +np +np +239984 cl +cl +cl +cl +239991 cl +np +np +239996 cl +pp +np +240000 cl +pp +np +240005 cl +np +np +240010 cl +240012 cl +np +240015 cl +pp +np +240019 cl +cl +240025 cl +240028 cl +240030 cl +pp +np +np +pp +np +240037 cl +240039 cl +pp +np +pp +np +np +240047 cl +cl +np +240052 cl +np +cl +240060 cl +240062 cl +np +pp +240066 cl +pp +np +np +np +240073 cl +cl +np +np +np +240080 cl +cl +cl +pp +cl +cl +np +np +np +240092 cl +np +240095 cl +240097 cl +cl +240100 cl +pp +np +np +240107 cl +240109 cl +pp +np +np +240114 np +np +240117 cl +cl +pp +240122 cl +240126 np +240129 cl +cl +np +np +240136 pp +240138 pp +np +np +np +240144 cl +np +240147 cl +np +np +np +pp +np +np +240156 np +np +240159 np +np +240162 pp +np +np +240168 cl +240170 np +np +240173 pp +np +np +240179 cl +pp +240182 np +pp +240186 cl +240189 pp +240192 np +240197 cl +240199 np +np +240204 np +np +240209 cl +pp +np +np +pp +np +pp +240217 cl +pp +pp +np +cl +240224 pp +pp +cl +pp +pp +240230 pp +pp +np +np +np +np +pp +np +np +np +240241 np +cl +pp +240245 cl +240247 cl +pp +240250 np +np +pp +np +np +np +np +np +pp +np +np +np +240263 np +cl +pp +pp +np +240270 cl +np +np +np +np +pp +np +240278 np +cl +pp +pp +np +np +np +np +240287 cl +np +pp +np +cl +240293 np +pp +np +240297 np +pp +np +pp +240302 cl +pp +cl +pp +np +240308 cl +np +pp +np +np +np +np +pp +240317 cl +pp +np +np +240323 cl +pp +np +240327 cl +pp +np +cl +240332 np +np +np +np +np +np +np +cl +pp +240342 np +np +np +np +np +cl +np +np +np +pp +np +np +pp +np +np +np +240359 cl +pp +cl +240363 np +np +np +pp +pp +np +240372 np +np +pp +np +np +cl +pp +cl +pp +np +np +240384 cl +240386 np +np +240389 np +np +240392 np +np +np +np +240398 pp +np +cl +np +np +np +np +pp +240407 cl +240409 cl +np +np +np +np +cl +np +np +np +np +np +np +np +pp +np +240425 cl +np +np +np +cl +np +np +np +pp +240436 cl +pp +np +np +np +np +np +np +240445 cl +pp +np +240449 cl +pp +240452 cl +pp +np +pp +np +pp +240459 np +240465 np +np +cl +240469 advp +pp +np +np +pp +pp +240476 cl +240480 cl +pp +np +np +240485 cl +np +pp +240489 np +cl +240492 np +np +np +np +240497 cl +np +pp +240502 cl +cl +np +240506 np +240508 np +pp +pp +np +np +np +np +pp +240517 np +np +np +np +np +240523 np +240525 cl +pp +np +np +np +240532 cl +pp +np +np +pp +np +np +np +np +cl +np +np +240545 np +240547 np +240549 cl +np +240552 cl +np +np +240559 cl +np +cl +pp +pp +np +240566 np +np +cl +cl +np +np +cl +vp +240577 cl +240579 cl +pp +np +pp +240585 cl +pp +240588 np +240590 cl +np +np +np +cl +np +np +np +pp +np +np +pp +pp +240606 cl +np +vp +pp +240613 cl +pp +cl +np +np +240620 cl +pp +240623 cl +240626 cl +np +cl +pp +240631 pp +240633 np +cl +cl +np +cl +pp +240642 cl +240645 cl +240648 np +np +pp +240652 cl +pp +240655 cl +np +np +pp +cl +np +np +pp +adjp +240665 cl +np +np +np +240670 adjp +np +np +np +240675 cl +240677 adjp +pp +np +240682 cl +pp +240687 cl +pp +np +np +np +240694 cl +240696 np +np +240700 cl +np +240703 cl +240705 np +np +np +np +pp +np +np +cl +np +np +np +np +pp +240720 cl +np +pp +pp +np +np +cl +240728 cl +np +pp +np +np +pp +np +cl +np +pp +240742 cl +cl +240745 np +240747 cl +np +240750 cl +pp +np +np +pp +np +pp +np +240761 cl +240763 cl +240766 cl +240768 np +np +240771 np +np +cl +pp +np +np +np +240780 cl +240782 np +240784 cl +pp +np +cl +pp +np +pp +240792 cl +pp +np +pp +np +np +pp +240800 cl +cl +pp +240804 np +np +np +np +240809 pp +240811 np +240815 cl +np +np +240819 np +np +np +240823 cl +pp +240826 cl +pp +np +240830 cl +pp +cl +pp +cl +cl +np +np +np +pp +240841 np +np +np +cl +cl +np +np +np +np +cl +np +240853 np +np +240856 pp +cl +np +240862 np +np +pp +240866 pp +np +cl +np +pp +np +np +240874 np +np +np +240878 cl +pp +np +np +np +np +240885 cl +240887 np +adjp +np +np +np +240893 cl +np +np +np +np +np +240900 cl +cl +np +np +240905 np +240907 cl +pp +np +pp +240912 np +240914 cl +np +240917 cl +np +240920 np +240922 np +pp +np +pp +np +np +np +np +np +pp +240933 np +np +cl +pp +240939 np +240941 np +np +cl +pp +np +240948 pp +pp +np +np +240954 cl +cl +pp +240958 np +np +np +pp +cl +np +240965 cl +pp +np +np +pp +240971 np +cl +pp +np +np +240977 pp +240979 pp +240981 cl +pp +np +np +np +np +cl +pp +np +np +pp +np +np +cl +np +pp +np +pp +np +np +cl +pp +241006 cl +241008 cl +pp +np +np +cl +np +241019 cl +np +np +cl +np +np +np +241027 cl +pp +np +np +np +np +241038 cl +cl +pp +np +cl +241045 pp +241047 np +241049 cl +pp +np +241053 pp +np +241056 pp +241058 pp +np +np +np +np +np +np +241068 cl +241070 np +np +pp +cl +np +241076 cl +cl +pp +np +241082 pp +pp +cl +cl +np +np +np +pp +np +np +np +241095 cl +241097 np +241099 np +241101 cl +pp +np +np +np +np +241108 cl +241110 np +np +np +241114 np +241117 np +np +241120 pp +241122 pp +241124 pp +241127 cl +np +np +np +pp +np +np +np +np +np +241139 cl +241141 cl +cl +pp +cl +np +241148 cl +241150 cl +241154 cl +pp +np +np +np +np +241161 cl +np +241164 cl +np +241167 cl +pp +np +np +241172 cl +np +241176 cl +241179 np +241181 np +241183 np +241185 np +241188 pp +np +np +np +np +np +pp +np +pp +np +np +np +np +241202 cl +np +241205 pp +np +np +241209 np +241211 np +np +np +np +np +pp +np +pp +np +np +np +np +np +241226 cl +adjp +cl +241231 np +np +np +pp +np +np +np +np +pp +np +pp +np +np +np +241246 cl +cl +pp +np +pp +241254 cl +np +cl +pp +np +np +cl +241263 pp +np +241266 np +pp +np +np +pp +241272 np +np +np +np +pp +np +np +pp +241283 cl +241285 cl +pp +241288 cl +241290 cl +np +pp +np +np +np +cl +vp +np +cl +np +np +np +pp +241305 np +241307 cl +pp +pp +np +np +np +np +241315 cl +cl +np +pp +np +np +np +pp +241326 cl +np +241331 cl +241333 cl +pp +241336 cl +pp +np +241340 cl +pp +np +np +241345 np +np +241348 cl +pp +np +np +np +241354 cl +np +np +np +np +241360 cl +241362 np +np +241365 cl +pp +pp +np +241371 np +241374 cl +cl +np +pp +np +np +241381 cl +np +241385 cl +241387 cl +241390 cl +np +pp +np +cl +np +241398 cl +241400 cl +241403 cl +cl +np +np +np +241409 cl +cl +241412 cl +241415 cl +np +np +pp +np +np +241424 cl +pp +np +np +241429 cl +241431 cl +241434 cl +241437 np +np +np +np +cl +pp +pp +np +241446 cl +np +241453 pp +pp +np +241458 cl +pp +adjp +cl +241463 cl +np +np +pp +241470 cl +np +np +241474 cl +np +241477 cl +pp +241481 cl +np +np +241485 cl +pp +np +np +241491 np +pp +np +241498 cl +241501 np +241503 pp +241505 cl +241507 cl +241512 cl +241514 cl +241517 cl +cl +241520 cl +241522 np +241526 cl +pp +np +np +np +241534 cl +np +241537 cl +pp +np +np +np +pp +np +np +np +241548 cl +np +241553 cl +241555 cl +pp +241558 cl +cl +241561 cl +np +241564 cl +np +np +np +pp +np +241573 cl +cl +np +241580 cl +241582 np +np +np +np +241587 cl +241589 cl +241591 cl +pp +cl +241596 cl +np +cl +pp +np +241602 cl +np +241605 cl +241608 cl +241610 cl +241613 cl +241615 cl +pp +np +241619 cl +np +241623 cl +241625 cl +241628 cl +241630 cl +cl +np +241634 cl +np +241638 cl +pp +241641 cl +cl +np +np +np +241649 cl +241651 cl +pp +cl +pp +241656 cl +241660 np +cl +241664 np +np +np +cl +pp +pp +np +241672 np +np +241675 np +241678 cl +pp +np +241684 np +np +np +241688 cl +np +241691 cl +np +np +241696 cl +np +np +np +np +cl +np +np +241706 cl +241708 cl +np +np +np +np +np +pp +241718 np +cl +np +241723 cl +np +np +np +241729 cl +pp +241732 cl +cl +np +np +np +pp +241739 cl +np +adjp +cl +241744 cl +241748 np +np +241751 cl +241755 cl +np +np +cl +np +np +241762 cl +np +np +241767 cl +241769 cl +np +np +241774 cl +np +np +241778 cl +241782 cl +np +np +np +241787 cl +np +np +np +241794 cl +pp +241797 np +241799 np +241801 cl +pp +np +np +241806 cl +np +pp +np +241812 cl +np +np +241816 cl +241818 pp +241820 pp +np +241825 cl +np +241828 np +pp +np +np +241833 cl +241836 np +241838 cl +np +241842 cl +241844 np +np +np +pp +241849 cl +241852 cl +cl +241855 np +np +241858 np +np +np +pp +241864 cl +241866 cl +pp +np +241871 cl +241873 np +241875 cl +np +np +cl +pp +np +241886 np +241888 cl +np +np +pp +pp +241895 pp +np +np +np +241900 cl +np +241904 cl +pp +241907 cl +241910 cl +np +cl +cl +np +np +np +pp +cl +pp +241922 cl +np +241925 cl +cl +241930 cl +np +cl +pp +241936 cl +241938 cl +241941 cl +241943 np +np +pp +cl +np +cl +241951 cl +np +241956 np +pp +241959 cl +pp +241962 cl +np +241965 pp +241967 pp +np +np +np +np +241973 cl +np +np +np +pp +241979 cl +cl +pp +np +np +np +241986 cl +np +np +241990 pp +241994 pp +np +pp +np +pp +np +np +np +np +pp +np +np +np +np +pp +np +242011 cl +pp +np +np +np +242017 cl +242019 cl +pp +np +np +np +242025 cl +cl +242029 cl +242031 cl +np +np +pp +242036 cl +np +np +np +242041 cl +np +pp +np +np +np +np +cl +pp +242051 np +np +np +cl +pp +cl +np +242059 np +np +np +242063 cl +242066 cl +242069 np +np +np +242073 np +np +np +cl +np +242079 cl +pp +np +242084 pp +np +pp +242088 cl +pp +pp +np +242095 pp +np +np +242099 pp +242101 cl +pp +np +np +np +cl +pp +np +np +np +242112 cl +pp +pp +242116 cl +pp +242119 cl +cl +242125 cl +np +242128 np +pp +cl +cl +242134 np +242136 np +242138 np +np +pp +cl +cl +pp +pp +np +242147 cl +np +pp +242151 cl +np +np +242155 cl +np +242159 pp +pp +242167 cl +np +pp +np +242172 cl +np +242175 np +242177 pp +242179 cl +242183 np +242185 np +242187 np +adjp +pp +242192 cl +pp +pp +242198 cl +242201 pp +242204 np +242209 cl +np +np +pp +np +np +np +cl +pp +np +np +np +pp +np +pp +np +pp +np +np +np +np +pp +np +242233 pp +np +np +pp +np +cl +np +242241 cl +np +cl +pp +np +pp +np +242250 cl +cl +pp +np +pp +242256 cl +pp +np +242261 pp +np +np +242265 pp +np +np +242270 np +cl +np +np +np +np +242278 cl +np +np +242282 cl +np +pp +np +242289 cl +242291 cl +np +np +242296 pp +242299 np +pp +242302 cl +242304 cl +242306 cl +242309 pp +np +cl +242313 np +np +pp +242317 pp +np +242323 cl +242325 cl +242327 cl +np +pp +pp +np +np +242335 cl +np +np +pp +pp +242341 np +np +242344 np +np +242347 cl +np +np +np +cl +pp +np +np +cl +np +np +np +242362 cl +pp +pp +242368 cl +pp +pp +np +242375 cl +pp +cl +242379 cl +pp +np +np +242384 cl +pp +np +cl +cl +cl +np +np +242394 cl +242399 cl +np +242405 cl +pp +242410 cl +242412 cl +242414 cl +pp +pp +242418 np +np +242421 np +np +np +242425 pp +242427 np +np +242433 cl +pp +242436 cl +pp +np +advp +pp +np +np +242445 pp +242447 pp +242451 cl +242453 cl +242455 cl +242457 cl +242460 cl +242462 cl +242464 cl +pp +np +242469 cl +cl +242474 cl +pp +np +cl +np +pp +242482 cl +242484 cl +pp +242487 cl +242490 cl +242492 cl +np +pp +242497 cl +cl +242500 cl +242503 np +pp +242506 np +np +242509 np +np +242512 cl +np +np +pp +242517 pp +pp +np +np +np +np +pp +242526 cl +np +np +np +242531 cl +242535 cl +242537 cl +242539 cl +np +pp +242543 cl +pp +np +242547 cl +np +np +np +np +242553 cl +pp +pp +242557 cl +242560 cl +np +242563 cl +np +242566 cl +pp +242569 cl +242571 np +pp +242574 advp +242576 cl +pp +np +242580 cl +pp +cl +242584 np +np +242587 cl +pp +242590 cl +pp +242597 cl +np +pp +242601 cl +np +np +242605 cl +np +np +242609 cl +np +242613 cl +cl +np +np +242618 cl +np +cl +np +np +cl +np +242626 cl +242628 pp +242630 pp +242632 cl +np +cl +242636 cl +np +cl +np +np +242642 cl +cl +pp +cl +pp +242649 cl +cl +pp +np +242654 cl +242656 cl +cl +np +cl +pp +np +242664 cl +cl +242667 cl +cl +pp +242672 np +242677 cl +np +np +242681 cl +242683 np +np +pp +np +242689 cl +pp +np +np +np +np +242699 cl +np +242702 cl +242704 pp +np +242711 np +242713 cl +242716 cl +pp +np +np +cl +advp +pp +np +np +pp +242728 np +np +242732 cl +242734 cl +pp +242739 cl +242742 cl +pp +np +242746 cl +pp +242751 cl +242755 np +np +np +242759 np +242762 cl +cl +cl +pp +242767 cl +pp +cl +np +pp +np +pp +np +242776 cl +pp +cl +pp +242784 cl +pp +np +np +242790 np +np +242793 cl +242795 cl +np +242800 cl +np +np +242804 cl +242807 cl +pp +242810 cl +242812 cl +cl +np +pp +242819 cl +np +cl +np +pp +242826 cl +np +np +cl +np +242834 cl +np +np +242840 cl +cl +pp +pp +np +242849 cl +cl +242853 cl +np +pp +242857 cl +pp +242860 cl +np +242864 cl +cl +242868 np +np +242874 np +242876 np +np +np +pp +242882 cl +vp +np +242887 cl +242889 cl +242891 cl +242894 cl +adjp +242898 cl +np +242903 np +np +242906 cl +pp +242910 cl +242913 cl +cl +cl +242920 cl +pp +pp +np +242925 cl +np +242928 cl +pp +np +np +pp +cl +np +242936 cl +np +np +np +np +np +pp +242944 cl +242946 np +np +pp +242950 cl +cl +np +242955 cl +242957 cl +242960 cl +np +cl +np +np +cl +np +242969 cl +np +242974 cl +np +242977 cl +pp +242981 cl +pp +242984 cl +pp +pp +242990 cl +np +cl +pp +cl +242997 cl +cl +pp +np +cl +np +cl +np +pp +cl +pp +cl +pp +cl +np +cl +pp +243015 np +pp +243019 cl +cl +pp +np +243029 cl +cl +pp +np +243034 cl +np +np +243040 np +np +243043 cl +pp +np +243047 cl +243050 cl +243052 cl +pp +cl +243057 np +np +pp +243061 np +pp +np +np +np +pp +np +pp +np +243071 cl +243074 np +np +np +np +243079 np +np +cl +np +np +243086 cl +pp +243089 np +np +pp +243096 cl +243098 cl +cl +243101 cl +cl +pp +pp +243107 cl +243109 cl +243113 cl +cl +243117 cl +np +243120 cl +np +pp +pp +np +np +np +np +np +np +np +pp +243135 cl +cl +243141 cl +cl +np +np +243147 cl +cl +pp +cl +np +243155 cl +np +243158 cl +243161 cl +243163 cl +243168 cl +cl +243171 cl +cl +cl +np +np +np +np +np +cl +np +np +243183 cl +np +np +np +243188 cl +np +pp +np +np +cl +243195 cl +np +243199 cl +np +np +pp +cl +pp +243209 cl +np +np +np +np +adjp +np +np +np +np +pp +np +np +243223 cl +cl +np +243231 np +np +243235 np +243238 pp +243243 cl +243245 cl +cl +np +pp +243252 cl +np +243255 np +cl +243258 cl +pp +np +pp +243265 np +np +243268 np +cl +np +np +pp +np +243275 cl +pp +243278 cl +cl +243281 cl +np +np +np +243286 cl +np +243290 cl +243292 cl +pp +243295 np +243297 np +pp +np +np +pp +np +243305 cl +243307 np +243309 np +243311 cl +np +243314 np +np +243317 np +np +pp +243324 np +243328 cl +cl +cl +cl +cl +cl +243336 cl +243339 cl +cl +243342 cl +cl +243349 pp +243352 cl +np +np +np +pp +243359 cl +pp +243362 cl +243364 cl +pp +243367 cl +pp +243370 cl +243372 cl +243374 cl +pp +243377 cl +cl +cl +pp +243382 cl +cl +cl +cl +243387 cl +243389 pp +243391 pp +243395 cl +243397 cl +243400 cl +243402 cl +243404 cl +pp +243407 cl +243410 cl +cl +np +np +243418 cl +np +243423 cl +pp +cl +pp +np +np +np +pp +np +243435 cl +np +243438 cl +pp +pp +243444 pp +np +np +243450 cl +np +cl +243454 np +243456 cl +pp +np +243462 cl +243464 cl +243466 cl +cl +pp +243470 np +pp +243473 np +np +np +np +243479 cl +np +np +np +np +pp +np +np +np +pp +np +pp +243494 cl +np +np +243499 np +pp +np +np +np +243506 cl +np +pp +243511 cl +np +np +pp +243517 cl +np +np +243521 cl +np +pp +np +np +243527 cl +np +np +243531 np +243533 pp +np +np +243537 cl +243540 np +np +243543 pp +np +243547 np +np +np +np +pp +np +243555 pp +243557 cl +243560 pp +243562 np +243564 cl +243566 np +np +243569 np +np +243572 cl +pp +cl +243576 np +np +np +pp +243582 np +243584 cl +pp +np +np +pp +243591 np +243593 cl +pp +np +cl +pp +np +np +243601 np +243603 np +243605 cl +pp +243609 cl +pp +pp +np +np +vp +243618 cl +pp +pp +pp +243623 np +cl +243627 cl +np +np +np +pp +243633 cl +pp +243637 np +np +np +cl +243642 np +np +pp +np +np +243648 cl +np +np +np +pp +243654 cl +pp +np +pp +cl +np +cl +pp +243665 cl +np +np +np +np +pp +np +243674 np +cl +np +pp +np +243681 cl +pp +np +np +243686 cl +np +np +np +cl +pp +np +pp +np +np +np +np +pp +np +243702 cl +pp +243706 np +243708 cl +pp +np +np +np +np +np +pp +np +243718 cl +pp +np +np +np +243724 cl +pp +np +np +243730 np +np +np +np +cl +pp +243737 np +np +np +np +cl +cl +243744 np +np +np +np +np +np +cl +pp +243753 np +np +243756 pp +np +243759 pp +np +243763 np +243765 np +243775 cl +np +243778 pp +243780 pp +243782 cl +pp +243785 cl +np +pp +243790 cl +cl +np +np +243795 np +np +cl +cl +243800 np +pp +np +cl +cl +pp +cl +243808 cl +pp +np +np +243814 cl +pp +np +pp +cl +pp +np +np +np +np +cl +pp +243828 np +pp +np +243832 np +pp +np +243838 cl +243840 cl +243842 np +pp +np +np +np +243848 cl +pp +np +np +np +np +pp +np +cl +243860 pp +243863 cl +np +243866 cl +243868 cl +243870 cl +pp +np +np +243876 np +243878 cl +243880 cl +pp +np +243884 np +pp +np +cl +np +243892 cl +pp +np +pp +243897 cl +np +np +np +np +np +pp +np +np +pp +243908 np +np +cl +243912 np +cl +np +pp +243917 np +np +np +243921 cl +pp +cl +243925 np +np +np +243929 np +243931 cl +243933 pp +np +243936 pp +np +243940 cl +243942 np +np +cl +np +cl +cl +np +np +np +np +np +np +pp +np +cl +cl +np +pp +np +np +np +cl +cl +cl +243967 cl +np +243970 cl +np +pp +np +cl +np +pp +cl +pp +cl +pp +243982 np +np +243985 cl +pp +pp +243990 cl +cl +cl +np +pp +243997 np +pp +244000 cl +np +np +pp +244005 cl +np +np +cl +244010 pp +244012 pp +np +np +np +np +np +pp +np +244021 np +np +np +244025 cl +pp +np +np +np +np +244034 cl +244036 cl +pp +244042 cl +np +np +244046 cl +np +pp +244050 cl +244052 cl +244054 np +np +244057 np +np +np +np +pp +np +244067 cl +244069 np +np +cl +pp +244074 cl +244077 pp +244079 cl +np +244082 cl +cl +pp +244088 cl +244090 cl +244092 cl +pp +np +244097 np +244099 pp +np +np +np +pp +np +np +np +244108 pp +pp +244112 cl +pp +np +np +np +np +244119 cl +vp +pp +244124 cl +np +np +np +244130 cl +pp +np +244134 pp +np +np +np +np +np +pp +np +np +np +cl +pp +244147 np +cl +pp +pp +np +np +np +np +244156 np +244158 cl +pp +244163 cl +cl +244166 np +244168 np +np +np +np +pp +cl +np +np +cl +244178 np +np +pp +np +np +cl +np +244186 cl +pp +np +cl +np +244192 cl +cl +244195 np +244197 np +pp +cl +pp +244203 cl +244205 pp +244207 pp +244209 pp +np +244216 cl +np +244219 cl +244221 cl +np +np +244225 cl +244227 cl +pp +244231 np +np +cl +cl +244236 cl +pp +np +np +np +np +244243 cl +244245 np +cl +pp +np +np +cl +pp +np +244257 np +np +np +244264 cl +pp +pp +np +np +np +cl +244272 cl +pp +cl +cl +244279 np +pp +np +np +pp +np +np +244288 np +cl +244291 cl +np +pp +244297 np +pp +np +pp +np +np +244307 cl +np +cl +np +cl +np +vp +pp +np +np +244318 cl +np +cl +np +pp +np +244327 cl +244329 cl +np +np +pp +np +pp +np +244337 cl +244339 cl +244341 np +np +np +np +pp +pp +244349 cl +244352 np +np +pp +np +244358 np +244360 np +244362 cl +cl +pp +np +np +np +pp +cl +cl +np +cl +pp +244376 cl +np +244379 np +244381 pp +np +np +244385 cl +pp +244388 cl +np +np +pp +np +np +244395 cl +244397 np +244399 cl +pp +pp +np +244404 cl +244407 cl +244417 cl +244419 cl +pp +244423 cl +pp +np +np +np +244430 cl +244432 np +244434 cl +244436 cl +244438 cl +pp +244441 cl +244443 cl +np +np +np +244449 cl +pp +np +np +244454 cl +np +np +244459 cl +cl +np +np +np +pp +np +np +pp +pp +np +244472 cl +244474 cl +np +np +np +pp +cl +pp +np +244485 np +cl +pp +np +pp +np +np +np +244495 cl +244497 np +244500 cl +244502 pp +244504 pp +pp +np +244508 cl +244510 np +pp +244515 np +np +244518 cl +pp +244523 np +cl +np +244527 cl +pp +244531 cl +244533 np +np +pp +244537 cl +pp +244542 np +np +np +244546 cl +244550 np +pp +np +np +pp +244557 pp +244559 cl +cl +pp +np +cl +np +244566 cl +244568 cl +pp +pp +244572 np +244574 np +cl +244577 cl +pp +np +np +np +244583 cl +244585 np +244589 cl +244591 cl +cl +244594 cl +244596 cl +244598 np +244600 np +244602 np +np +cl +244606 cl +np +pp +244610 cl +np +cl +pp +pp +244616 cl +pp +pp +244620 cl +np +np +np +cl +244626 np +np +np +cl +pp +244632 cl +244634 cl +cl +244637 cl +pp +pp +np +cl +np +244644 cl +np +np +pp +cl +cl +cl +cl +np +244654 cl +np +np +pp +244660 np +np +244663 np +244665 np +244667 pp +cl +pp +pp +np +244674 cl +np +pp +244678 cl +np +np +pp +244684 np +np +244688 cl +pp +244691 cl +np +np +244695 cl +244699 np +np +244704 np +np +cl +cl +pp +244710 cl +pp +cl +244716 cl +244718 cl +pp +244721 cl +np +pp +np +np +np +cl +244729 cl +244732 np +pp +np +244736 cl +pp +pp +np +244742 cl +244744 cl +pp +np +np +np +244751 cl +244753 cl +np +pp +244758 np +pp +244761 np +pp +244764 cl +244767 np +np +np +244772 cl +244774 np +np +pp +244779 np +np +pp +np +244787 cl +pp +np +244791 cl +244794 cl +pp +pp +np +np +244801 cl +np +pp +np +244807 cl +244809 cl +np +244812 cl +pp +244815 cl +244817 cl +np +np +np +np +244823 cl +np +np +244827 cl +np +pp +244831 cl +244835 np +np +np +pp +244845 cl +244850 cl +np +pp +np +cl +pp +np +np +cl +np +244861 np +np +np +244865 np +np +np +244869 np +np +np +np +244874 np +np +244877 pp +np +np +244882 cl +np +np +244886 np +cl +pp +np +244891 cl +np +np +pp +244896 pp +pp +pp +244900 pp +244902 pp +244904 np +244906 np +244908 cl +cl +pp +pp +244914 cl +np +244918 np +cl +np +pp +np +pp +np +np +244927 cl +np +np +244931 cl +244933 pp +np +244936 pp +np +244941 cl +pp +np +np +np +pp +244948 np +244951 cl +pp +np +244955 np +np +np +pp +np +244961 cl +cl +244965 cl +pp +244968 cl +np +pp +244972 cl +pp +np +pp +np +244978 cl +np +244981 cl +244984 cl +pp +np +244988 np +244990 np +cl +pp +np +244996 cl +pp +244999 np +245001 cl +245007 np +np +np +pp +245013 cl +cl +cl +245018 pp +245020 cl +pp +np +np +cl +pp +np +np +np +pp +np +245034 cl +np +np +245038 pp +245040 pp +245042 pp +245046 cl +pp +np +cl +np +cl +245053 cl +245057 cl +np +np +245064 cl +pp +np +245068 cl +245071 cl +pp +np +cl +245076 cl +pp +245080 pp +245082 pp +cl +cl +pp +245087 cl +np +cl +pp +np +245097 cl +np +np +cl +cl +cl +245104 np +np +np +np +np +np +np +245112 cl +245115 cl +245118 np +np +245121 np +245123 cl +cl +245127 pp +245129 cl +np +pp +np +np +np +245137 cl +245140 np +cl +advp +245148 cl +245150 cl +245152 cl +np +np +245156 cl +np +cl +245162 pp +245164 cl +245166 np +245168 cl +pp +np +np +245176 cl +cl +pp +np +np +cl +cl +np +np +np +pp +np +245189 np +245193 cl +np +cl +pp +245199 cl +245204 cl +np +245207 np +np +np +245211 cl +pp +np +pp +245218 cl +np +np +pp +np +np +245225 cl +np +pp +245229 np +245232 cl +245236 np +245238 np +245240 cl +245242 cl +245245 cl +np +cl +cl +np +245251 cl +pp +245254 cl +np +np +245259 cl +pp +np +pp +245265 cl +245267 cl +pp +pp +np +adv +np +cl +np +np +pp +np +245280 cl +cl +pp +245285 cl +245291 cl +np +245296 cl +np +245301 np +245304 cl +np +pp +245308 np +np +pp +np +np +245315 cl +245317 np +np +245320 np +245324 cl +cl +cl +pp +245329 cl +245332 np +np +245335 np +np +np +pp +np +np +np +pp +245345 cl +245348 pp +np +np +245352 cl +pp +np +np +245358 cl +245360 cl +pp +245367 cl +pp +245370 cl +245372 cl +cl +245377 cl +245379 cl +245381 cl +pp +cl +pp +245386 cl +np +np +245392 cl +245394 cl +245396 cl +pp +np +np +245405 cl +pp +pp +245409 cl +245411 np +245413 np +np +245417 cl +np +np +cl +cl +245423 cl +np +cl +245427 pp +pp +pp +np +np +np +245435 pp +np +np +245439 cl +245441 cl +pp +245445 cl +cl +np +np +pp +pp +np +np +245454 cl +pp +pp +np +np +cl +245462 pp +245465 cl +np +np +245469 cl +np +np +np +np +245476 cl +245478 np +np +np +245485 np +np +np +np +pp +245492 cl +np +245496 np +np +245499 pp +245501 pp +245503 cl +np +pp +pp +245508 cl +np +np +pp +pp +np +np +245517 pp +np +np +np +245522 np +np +pp +np +np +np +245534 pp +245539 cl +pp +245542 cl +245544 cl +245546 cl +245548 cl +cl +245552 cl +cl +np +pp +245557 np +245561 cl +np +np +cl +245566 np +np +245570 cl +pp +np +cl +np +245576 cl +np +np +pp +245583 cl +pp +np +245587 cl +np +245590 np +245592 cl +np +245595 cl +245598 pp +np +np +np +245604 cl +pp +np +245609 cl +245611 cl +245615 cl +np +pp +cl +pp +245622 cl +245624 cl +245627 np +245629 cl +np +np +np +np +pp +245637 cl +pp +np +cl +245642 cl +np +pp +245646 cl +245649 cl +pp +np +np +np +pp +np +np +245661 cl +245663 cl +245665 cl +cl +245668 cl +np +245671 cl +np +np +245675 cl +245678 cl +pp +np +245682 cl +np +245688 cl +pp +245691 cl +245693 cl +245695 cl +np +245698 np +245700 cl +245705 cl +245707 cl +245710 cl +np +245713 cl +pp +np +pp +245720 cl +pp +np +245724 cl +245728 cl +245730 cl +pp +np +np +np +advp +245737 cl +245740 cl +np +np +245744 pp +pp +np +245748 pp +np +pp +245753 cl +np +np +pp +cl +245761 cl +245763 cl +pp +pp +pp +np +np +np +pp +245773 cl +pp +245777 cl +pp +np +np +245785 pp +245787 np +245789 np +cl +245792 cl +245794 cl +245796 cl +pp +np +245802 cl +245806 cl +np +245809 cl +np +245812 cl +pp +245815 cl +advp +245821 cl +pp +245824 cl +np +245827 cl +245829 cl +np +245832 np +245834 np +245836 cl +245844 cl +245846 cl +np +245849 cl +245851 cl +245855 cl +245857 cl +245859 cl +245861 cl +245864 cl +cl +cl +245868 np +245872 np +np +245876 cl +np +pp +cl +pp +np +pp +245885 np +np +245889 cl +pp +245895 cl +245897 cl +cl +pp +245903 cl +245905 cl +np +245908 cl +245911 cl +245914 cl +245917 cl +pp +245920 cl +pp +245923 cl +245925 cl +pp +pp +np +np +245931 cl +pp +245938 cl +np +cl +np +cl +np +cl +pp +245947 cl +245949 cl +pp +cl +np +245954 pp +245956 pp +245959 cl +cl +cl +pp +245965 cl +np +pp +245969 pp +245973 cl +np +cl +245978 cl +cl +np +cl +pp +np +np +245988 cl +np +np +np +np +245994 cl +np +np +245998 np +246000 np +246002 np +pp +np +np +246007 np +np +246011 cl +246014 cl +cl +246017 cl +246019 pp +246021 cl +np +np +pp +np +246027 cl +np +cl +np +np +np +246034 cl +np +np +246038 np +np +246041 pp +246043 cl +246047 np +np +np +pp +246053 np +246058 cl +246061 pp +246070 cl +cl +np +pp +246075 cl +246079 cl +np +np +246083 cl +np +np +np +np +np +np +pp +246092 cl +np +pp +pp +np +np +np +pp +246101 np +np +246104 np +pp +246107 np +246109 np +np +246112 np +cl +246115 cl +np +np +np +np +np +pp +246123 cl +np +246126 np +np +cl +pp +246132 cl +pp +246135 cl +246137 cl +246139 cl +246142 cl +pp +pp +np +np +np +np +np +246151 np +pp +pp +np +np +pp +np +cl +246162 cl +246165 cl +np +np +246169 np +np +cl +246173 np +246175 pp +np +np +246179 pp +np +np +np +np +246185 cl +246187 cl +pp +np +np +246192 cl +pp +np +246196 cl +pp +np +np +246201 cl +np +np +pp +246207 cl +cl +pp +pp +246212 cl +np +np +np +246217 cl +np +246220 np +246222 np +pp +246225 cl +np +np +246229 np +np +pp +246233 cl +pp +pp +np +np +np +246240 np +246246 cl +246248 pp +246250 np +np +246253 np +np +246257 np +np +pp +pp +246262 cl +246264 cl +pp +np +246270 pp +246272 pp +246274 pp +np +pp +pp +246280 cl +np +np +np +246285 cl +pp +np +246292 cl +np +246295 cl +246298 np +np +np +np +np +np +246305 cl +246308 pp +np +cl +246314 cl +pp +np +np +np +cl +246321 cl +246323 cl +cl +cl +cl +pp +246330 cl +246332 cl +pp +246335 cl +pp +np +np +246341 cl +np +np +np +246346 cl +246348 cl +246350 cl +pp +246354 cl +246357 np +246359 cl +246361 np +np +np +np +np +246367 cl +np +np +np +np +cl +np +np +pp +np +np +246379 pp +np +246384 np +246386 pp +np +np +246390 cl +pp +cl +np +np +np +pp +246398 cl +246401 cl +pp +np +np +pp +246407 cl +np +246410 cl +np +246414 cl +np +cl +np +246421 cl +cl +np +pp +246426 np +cl +pp +246430 cl +np +pp +pp +pp +246436 np +246438 np +cl +pp +pp +np +np +pp +np +np +246448 np +np +246456 cl +246458 cl +np +246461 cl +246464 pp +246466 pp +np +246471 cl +246473 np +246475 np +np +246481 np +np +np +246486 cl +246488 cl +246490 np +246492 np +pp +np +np +246497 cl +pp +np +np +246506 np +pp +246512 cl +np +np +np +246517 cl +246519 cl +pp +pp +246524 cl +pp +np +np +246532 cl +np +246536 cl +246538 np +246540 cl +246542 cl +pp +np +246547 cl +pp +pp +246551 cl +cl +246558 cl +np +np +np +246563 pp +np +np +np +246568 pp +np +np +np +246574 cl +246576 pp +np +246579 np +246581 cl +pp +np +np +246586 cl +246588 cl +pp +np +246592 cl +pp +246597 cl +cl +cl +246603 cl +pp +246606 cl +pp +cl +pp +246614 pp +246616 cl +np +246621 cl +246623 cl +pp +246626 cl +246632 cl +pp +cl +246636 cl +246638 cl +cl +246642 cl +cl +pp +246646 cl +cl +246650 cl +np +246654 pp +246658 cl +cl +pp +np +np +246665 cl +246667 cl +246673 cl +np +np +np +pp +np +cl +cl +246682 cl +246688 cl +cl +cl +246692 cl +246695 cl +np +np +np +np +np +pp +pp +np +246705 cl +np +pp +np +246710 cl +np +np +np +np +cl +pp +np +246719 cl +246721 cl +np +np +246725 np +np +246728 pp +np +246731 cl +246733 np +np +246736 pp +np +246740 np +246744 np +np +246747 np +np +pp +246751 cl +246753 pp +246759 np +np +246764 cl +cl +pp +cl +pp +246770 cl +246772 cl +246774 cl +246778 np +246780 cl +246782 cl +246784 np +np +pp +246789 cl +np +np +np +np +pp +246797 np +246799 np +246801 np +cl +cl +pp +cl +cl +cl +246810 cl +246812 cl +pp +246816 cl +246818 cl +np +246821 cl +cl +cl +246825 cl +246827 cl +246839 cl +np +np +np +cl +np +pp +246847 np +np +np +np +np +np +cl +246855 cl +246858 cl +246861 np +np +246864 cl +cl +pp +cl +np +246876 cl +246878 cl +cl +pp +246882 cl +np +np +np +np +pp +246891 np +pp +246895 cl +np +246899 adjp +np +246902 cl +246904 pp +np +cl +cl +np +246911 cl +cl +pp +cl +pp +246918 np +np +pp +np +246923 cl +cl +pp +pp +np +246930 cl +246932 np +np +np +np +246939 pp +np +np +np +246948 np +np +pp +np +np +cl +pp +246956 cl +pp +np +np +cl +246964 np +cl +cl +cl +pp +np +246973 cl +cl +np +cl +cl +246980 cl +cl +np +246985 pp +np +pp +246990 np +246992 cl +pp +246995 cl +np +246999 pp +np +247004 cl +247007 pp +247009 np +247011 np +cl +cl +np +247016 cl +247018 cl +pp +np +247024 cl +cl +np +247028 np +247035 cl +pp +247038 cl +np +np +cl +cl +pp +247047 np +np +pp +247052 cl +247055 cl +cl +np +pp +np +cl +np +pp +247066 cl +pp +np +pp +247073 pp +247078 np +pp +247081 cl +np +cl +np +247086 cl +pp +pp +np +247092 cl +247095 cl +247097 cl +cl +pp +247104 cl +cl +247108 cl +247110 cl +np +cl +pp +247117 cl +pp +np +247121 cl +pp +247126 pp +247128 cl +np +247131 cl +247133 cl +np +247137 cl +cl +np +247142 np +np +247145 np +247148 cl +np +np +cl +pp +pp +np +247159 cl +cl +np +np +cl +np +247166 cl +247168 cl +cl +pp +np +np +247175 cl +cl +np +pp +np +247181 cl +pp +247185 np +np +247188 cl +cl +247191 adjp +cl +np +adjp +cl +np +np +np +pp +np +247204 cl +np +cl +cl +247209 cl +cl +247212 adjp +adjp +pp +247216 cl +np +np +cl +247222 np +np +247227 cl +247229 cl +np +247232 cl +np +pp +247236 np +pp +247240 cl +cl +cl +pp +247248 cl +247250 cl +cl +cl +pp +247255 np +cl +247258 np +np +cl +np +247264 np +247267 cl +np +np +np +247273 cl +pp +cl +pp +cl +cl +pp +cl +pp +cl +pp +247286 cl +np +247289 cl +pp +np +np +cl +247295 np +247297 np +pp +np +np +247302 cl +np +np +cl +cl +cl +247309 cl +cl +np +pp +np +np +pp +np +247319 cl +np +247323 cl +np +np +247327 cl +cl +pp +247331 cl +pp +247334 np +247337 cl +cl +np +np +np +247343 cl +np +np +247347 np +247350 np +np +cl +247355 cl +np +np +247362 cl +pp +247367 cl +np +np +pp +247372 cl +np +pp +cl +np +np +247379 np +247382 cl +247384 cl +np +247388 adjp +np +247392 cl +cl +pp +247397 cl +pp +247400 np +cl +cl +np +247405 np +np +247408 cl +247413 cl +np +np +247417 cl +np +np +247421 pp +pp +pp +pp +pp +247429 cl +cl +247432 np +np +np +247436 cl +247438 np +np +pp +cl +pp +pp +np +np +np +np +247450 cl +cl +pp +247454 cl +np +np +247459 cl +247462 np +cl +247465 cl +cl +247471 cl +247475 cl +247477 cl +pp +247480 cl +pp +cl +pp +cl +pp +pp +np +247489 cl +247491 np +np +247495 cl +247497 cl +np +247502 cl +np +np +247506 cl +np +247510 cl +pp +np +247516 cl +np +np +247521 cl +pp +247524 cl +247526 np +247528 np +247533 cl +247535 cl +cl +247538 cl +np +247541 cl +247546 cl +np +247550 np +247552 cl +np +247555 cl +247557 cl +np +np +np +cl +np +np +cl +pp +np +247569 cl +247571 cl +247573 cl +np +247576 cl +cl +247579 cl +np +np +247584 cl +np +247590 cl +np +cl +cl +247595 cl +247597 cl +np +np +247603 cl +adjp +cl +np +247609 cl +cl +np +247614 cl +247616 cl +247619 cl +cl +247622 cl +cl +cl +cl +np +247628 cl +pp +247632 cl +pp +np +247638 cl +np +cl +247642 cl +np +247645 cl +np +np +247650 cl +np +np +cl +np +cl +247657 cl +pp +247663 cl +np +247666 cl +np +cl +247670 cl +np +np +np +247675 cl +pp +247679 cl +pp +np +247684 cl +247686 cl +pp +247689 cl +np +np +247693 cl +pp +247696 np +247700 np +np +247703 cl +pp +cl +pp +247709 cl +247711 cl +np +247714 cl +247717 cl +cl +np +pp +247722 np +247724 np +np +np +247729 cl +np +np +np +cl +pp +247736 cl +247740 cl +np +np +np +np +247746 cl +247748 cl +cl +247751 cl +cl +cl +pp +np +np +adjp +np +cl +247761 np +np +np +247765 np +247768 cl +247770 cl +np +247773 cl +247777 cl +247779 cl +247783 cl +np +247786 cl +247793 cl +247795 cl +247798 np +cl +np +247802 np +np +247806 np +np +pp +cl +247811 cl +247813 cl +pp +247818 cl +pp +247821 np +np +np +247825 cl +np +247828 cl +np +cl +cl +np +247835 cl +np +np +np +pp +247842 cl +pp +np +247846 cl +cl +247850 cl +cl +247856 cl +247858 cl +cl +pp +247865 np +np +247869 cl +np +pp +247876 cl +np +np +np +247881 np +247883 cl +cl +pp +np +247888 cl +np +247892 cl +247894 np +np +247899 cl +247901 cl +np +np +np +np +cl +247908 np +np +cl +pp +247913 cl +247915 cl +np +np +pp +np +247921 cl +pp +247925 np +247927 cl +np +247933 cl +pp +247936 np +np +cl +np +adjp +pp +247943 np +np +247946 np +np +247949 cl +np +247955 np +np +247959 np +247961 np +247963 cl +247965 np +247967 cl +np +np +247971 cl +cl +np +247975 cl +np +247978 cl +cl +cl +247983 np +247986 cl +np +adjp +pp +np +np +247995 cl +247997 cl +pp +np +cl +pp +248004 cl +pp +cl +cl +pp +np +cl +cl +cl +np +pp +248016 cl +248018 cl +np +np +248022 cl +248024 np +np +cl +np +248029 np +248031 np +np +248034 np +cl +cl +pp +np +248040 cl +np +pp +248044 cl +248046 np +np +np +248050 pp +np +pp +np +248055 np +pp +248059 np +248061 cl +248063 pp +248069 np +np +248072 cl +248074 np +cl +pp +pp +np +248080 cl +np +np +pp +pp +np +np +248090 cl +cl +cl +np +np +248096 cl +cl +np +np +np +pp +248103 np +248105 cl +pp +248109 np +np +248113 np +np +248116 cl +248118 cl +pp +pp +248122 cl +pp +np +cl +248127 np +np +np +cl +pp +pp +np +np +np +np +248140 cl +np +np +cl +248150 cl +248152 np +np +np +np +248158 np +np +cl +np +pp +np +248167 cl +248169 cl +np +248172 pp +np +np +pp +np +248182 cl +pp +248185 pp +np +248188 cl +pp +np +np +248193 np +np +np +248199 cl +np +248202 cl +248205 pp +248207 np +cl +pp +248216 cl +pp +np +np +248221 cl +248223 cl +cl +248226 cl +248228 cl +248230 cl +np +np +pp +np +np +248237 cl +np +248240 np +cl +cl +pp +pp +248248 np +pp +248252 cl +np +np +pp +248257 np +248259 cl +pp +248262 cl +248264 cl +248266 np +np +pp +np +cl +248275 cl +np +np +np +248281 cl +248284 cl +np +np +248288 cl +cl +pp +248292 cl +248294 cl +np +cl +pp +pp +np +np +248303 cl +cl +pp +248310 np +cl +pp +248314 np +np +pp +248319 cl +cl +pp +pp +np +248325 np +cl +cl +np +248330 cl +pp +np +np +248336 cl +cl +np +np +np +248342 cl +248344 cl +248349 cl +248351 cl +248353 cl +cl +np +np +cl +np +248360 cl +cl +248364 cl +np +pp +248368 cl +248370 np +np +np +cl +pp +pp +np +pp +248379 np +np +248382 cl +cl +pp +pp +cl +248388 cl +np +np +np +248393 cl +pp +pp +np +248398 cl +np +248401 np +pp +248404 pp +np +248407 cl +np +248411 cl +248413 cl +248415 cl +248417 cl +248421 cl +cl +248427 cl +cl +248430 cl +cl +248433 cl +cl +pp +np +248438 cl +pp +np +pp +np +248444 cl +248446 cl +cl +248449 adjp +np +np +np +cl +np +np +np +248459 cl +np +np +248464 cl +cl +pp +np +248469 cl +np +np +pp +cl +248478 cl +pp +np +cl +cl +248484 cl +np +np +248489 cl +np +np +np +np +cl +np +np +248498 cl +248500 cl +248502 cl +pp +np +248506 cl +np +np +248512 cl +pp +np +248516 np +np +248520 np +248526 cl +pp +248529 cl +pp +248533 cl +248535 cl +pp +np +np +np +np +pp +cl +adjp +np +cl +pp +np +np +248552 cl +np +np +248556 cl +248558 pp +248560 cl +np +pp +np +248566 cl +np +np +248571 cl +248573 cl +248576 cl +248578 cl +np +248581 cl +248583 adjp +pp +cl +pp +248588 cl +248590 cl +np +pp +np +248595 cl +pp +np +np +np +cl +pp +pp +np +np +248607 cl +248609 cl +pp +np +np +248616 cl +np +248619 adjp +248621 cl +cl +248624 cl +248626 cl +np +248629 cl +np +np +248633 cl +np +248637 cl +pp +248641 cl +pp +np +248645 cl +np +np +248649 cl +cl +np +248653 cl +248655 cl +cl +pp +np +248661 cl +cl +cl +np +248667 np +np +np +cl +np +adjp +pp +np +248677 cl +pp +248681 cl +np +np +248685 cl +np +np +248691 cl +248693 np +248695 np +np +np +np +np +np +np +248705 np +np +cl +248709 pp +pp +pp +cl +np +248715 cl +pp +np +248720 cl +np +np +248724 cl +cl +pp +248730 cl +248732 np +248734 pp +np +cl +248741 cl +pp +cl +248746 cl +248748 cl +pp +248752 cl +pp +248755 np +248757 cl +cl +pp +pp +248762 np +pp +248766 cl +np +248770 adjp +248772 pp +pp +pp +pp +248777 np +pp +248780 cl +np +np +np +cl +pp +np +np +248789 cl +248791 pp +248793 np +248798 cl +cl +248801 cl +248805 np +np +248808 np +np +248812 cl +np +cl +advp +cl +248818 cl +cl +cl +pp +np +248828 cl +248832 cl +np +np +cl +cl +pp +np +np +cl +np +248845 cl +pp +np +np +248850 cl +pp +np +248856 cl +pp +cl +cl +np +cl +np +np +248867 cl +248869 cl +np +np +np +np +248876 cl +np +np +cl +np +cl +np +248884 cl +248886 np +np +np +248890 cl +248892 np +np +np +pp +np +np +248899 cl +248901 np +np +np +248905 cl +np +np +248909 cl +cl +pp +248917 cl +cl +np +np +248922 cl +pp +cl +pp +cl +pp +cl +pp +248932 cl +cl +pp +248936 cl +pp +248940 cl +pp +248944 cl +np +248947 cl +pp +pp +cl +248952 cl +248954 np +np +np +248958 cl +248960 np +np +248963 cl +np +pp +np +np +cl +np +248972 cl +np +np +248977 cl +pp +np +np +np +248983 cl +248985 cl +248991 cl +np +248994 cl +248997 cl +pp +np +249001 cl +np +np +249005 cl +pp +np +249011 cl +np +pp +np +np +249017 cl +pp +np +np +np +np +np +pp +np +np +np +249030 cl +249034 np +np +249038 cl +pp +249041 cl +pp +cl +249045 cl +cl +pp +249049 cl +249055 np +np +249058 cl +np +pp +np +np +249064 cl +np +pp +249068 cl +249071 np +249073 np +249075 pp +249077 np +np +249080 np +249082 np +pp +pp +np +249087 np +249089 cl +np +np +pp +np +249095 cl +np +np +np +pp +249101 cl +pp +np +np +249106 np +249108 np +np +pp +np +249113 cl +249116 pp +249122 np +np +249126 cl +pp +pp +249131 cl +249133 cl +249137 cl +pp +249140 cl +249142 cl +249144 np +np +cl +np +np +249151 pp +np +249156 cl +cl +np +pp +np +adjp +249164 adjp +adjp +adjp +cl +adjp +249171 cl +np +np +pp +np +np +249178 cl +249182 cl +pp +249185 np +249187 cl +249189 cl +249191 cl +249194 cl +249201 np +np +pp +np +cl +cl +cl +np +cl +cl +pp +np +249214 cl +249216 np +pp +np +np +cl +249222 np +np +249225 cl +np +np +249229 cl +cl +pp +np +cl +pp +np +cl +249238 np +249240 np +np +cl +np +249245 cl +np +249250 cl +np +249253 cl +249256 cl +np +249260 np +249262 np +249265 cl +cl +249268 cl +np +cl +249274 adjp +pp +np +np +249280 cl +cl +np +np +cl +249286 cl +249288 cl +249290 np +np +np +249295 cl +pp +249298 adjp +cl +np +249302 cl +cl +np +249306 cl +np +np +249310 cl +np +np +np +249315 cl +np +cl +249321 cl +pp +np +np +cl +pp +np +249329 np +np +249332 cl +np +pp +cl +cl +pp +np +249342 cl +np +pp +cl +249347 cl +cl +249350 cl +np +np +249354 cl +249356 np +np +np +249360 np +pp +249364 cl +np +np +np +adjp +np +cl +249372 cl +cl +249375 np +249377 np +np +249382 pp +np +np +cl +np +249388 np +249390 np +np +np +249395 np +249397 np +249401 cl +cl +pp +249405 cl +pp +np +249409 cl +249411 np +np +np +249416 cl +249418 cl +249421 pp +np +249424 cl +249426 cl +249428 cl +249430 cl +cl +pp +np +np +cl +cl +cl +cl +np +pp +np +249444 cl +np +249447 cl +cl +np +249452 cl +pp +249456 cl +249461 cl +np +249464 np +249466 np +np +249469 np +cl +249472 pp +249475 np +pp +cl +pp +np +np +pp +249483 np +249485 np +249487 np +cl +pp +pp +249493 np +np +cl +cl +np +np +pp +np +np +249503 cl +np +249507 cl +pp +cl +249511 cl +cl +np +249515 cl +249517 cl +249520 np +249523 cl +249525 np +249529 np +249531 cl +249535 cl +np +pp +np +249541 cl +249543 cl +np +249547 cl +249552 cl +pp +249556 cl +cl +pp +pp +249561 cl +cl +249564 cl +249567 np +249570 cl +249573 cl +np +np +cl +np +pp +np +np +249582 cl +249584 cl +np +np +pp +249589 cl +249591 cl +pp +249594 cl +np +pp +np +249599 cl +249602 np +249606 np +249609 np +np +249615 np +249618 np +np +249621 np +np +pp +np +249626 cl +249629 pp +249632 np +249637 cl +np +np +cl +np +pp +np +np +cl +249647 np +249649 np +249651 np +cl +249654 pp +249656 np +249658 pp +np +np +249662 cl +np +np +np +np +pp +np +np +249671 np +249673 pp +pp +249679 np +249681 pp +np +np +249685 cl +np +np +np +pp +249693 cl +cl +np +np +pp +cl +249700 cl +pp +np +249704 cl +pp +249708 cl +np +np +249713 cl +pp +249716 np +np +cl +pp +np +np +249725 np +249727 adjp +adjp +249730 adjp +adjp +249735 cl +np +249738 cl +np +np +249742 cl +cl +pp +249746 cl +pp +pp +np +np +np +249754 cl +pp +np +np +cl +249761 cl +pp +pp +np +np +cl +pp +249770 cl +pp +pp +249774 cl +249776 pp +pp +np +249780 cl +249782 cl +advp +249786 pp +249788 pp +249793 cl +249795 cl +249797 cl +249800 cl +249803 cl +249805 cl +249807 cl +249809 np +np +249812 cl +249814 cl +249816 cl +np +249822 pp +249824 cl +np +np +pp +249829 cl +cl +np +np +cl +249835 cl +pp +pp +cl +249842 cl +advp +249845 cl +cl +cl +pp +np +np +249852 cl +249855 np +np +np +pp +249862 np +np +249865 cl +np +np +249869 np +249871 pp +np +np +249875 cl +cl +249879 np +pp +np +np +pp +np +np +np +pp +249891 cl +np +cl +pp +np +cl +cl +249899 cl +249901 np +np +249904 np +np +np +249908 cl +np +np +np +np +np +cl +np +np +pp +np +np +pp +cl +np +np +pp +249927 cl +np +np +249931 cl +np +cl +249938 cl +pp +249941 cl +pp +249947 cl +np +pp +np +cl +249953 cl +np +np +249960 cl +pp +np +cl +249966 cl +np +np +249970 cl +np +np +np +249976 cl +pp +np +249981 np +cl +np +np +pp +np +np +np +249990 cl +np +np +np +np +np +np +249999 cl +250001 cl +250003 cl +pp +250006 np +np +np +np +pp +np +np +250017 cl +pp +np +250021 cl +np +np +np +np +250028 cl +250030 cl +250034 cl +250036 cl +250039 cl +250041 cl +cl +250044 cl +250048 cl +np +250051 cl +np +np +250056 cl +pp +np +np +250061 cl +pp +np +250066 cl +np +np +np +np +np +250074 cl +np +np +cl +pp +pp +250081 cl +cl +250084 cl +pp +cl +250088 cl +cl +250095 cl +np +np +cl +pp +250101 cl +np +250105 np +cl +cl +250109 np +cl +cl +cl +cl +pp +np +pp +250118 cl +pp +np +250125 np +250127 np +np +pp +np +np +250134 cl +250137 np +250139 cl +cl +pp +250144 cl +cl +250147 cl +250149 cl +250152 np +250154 cl +250157 cl +np +pp +cl +250163 cl +pp +np +np +250169 cl +pp +250172 cl +np +adjp +250177 cl +cl +np +250182 cl +cl +250186 cl +np +pp +pp +np +np +np +250196 cl +np +pp +250201 cl +250204 cl +pp +np +250208 cl +pp +np +cl +cl +np +pp +np +np +np +np +pp +250222 cl +250226 cl +250229 cl +np +pp +250233 cl +pp +np +cl +cl +cl +np +np +np +np +cl +pp +np +250249 cl +cl +vp +pp +250256 cl +cl +250260 np +250262 cl +np +250268 cl +np +250272 np +np +250276 cl +pp +np +250281 cl +np +np +np +cl +np +250288 cl +250290 cl +np +pp +np +250295 cl +adjp +250301 cl +cl +np +250307 cl +cl +pp +np +250312 cl +np +250316 np +pp +np +pp +250321 cl +np +np +np +250327 cl +pp +cl +cl +cl +250333 cl +250336 cl +250339 np +np +np +250343 np +np +250347 np +np +np +cl +250352 cl +250354 cl +np +pp +np +np +np +250362 cl +np +pp +cl +pp +np +np +250370 cl +250374 cl +np +pp +250378 cl +250380 cl +250385 cl +pp +np +np +np +pp +pp +np +250394 cl +250396 cl +pp +pp +np +np +250402 cl +cl +np +cl +250407 np +250409 np +np +np +pp +250416 cl +np +np +np +250422 cl +np +np +250426 cl +np +np +250430 cl +pp +np +pp +np +np +np +pp +250439 np +250441 cl +np +np +pp +250446 cl +np +np +np +250453 cl +np +np +250458 cl +250460 cl +np +250463 cl +np +np +250467 cl +pp +np +np +250472 cl +pp +np +np +250479 cl +250481 cl +pp +np +np +np +pp +250488 cl +pp +np +cl +250493 cl +pp +np +pp +cl +np +250500 cl +np +pp +np +np +250508 cl +np +np +250512 cl +np +np +np +pp +pp +250519 cl +250522 cl +np +np +250526 cl +np +np +250530 cl +pp +np +250535 cl +cl +250540 cl +np +250543 cl +pp +pp +250548 cl +np +250552 cl +250555 cl +cl +np +np +pp +np +250563 cl +cl +pp +np +np +250569 cl +250571 cl +250574 cl +cl +cl +cl +pp +250582 cl +cl +cl +cl +pp +np +np +np +pp +cl +250595 cl +vp +250598 cl +250600 cl +np +np +np +cl +np +250607 cl +250611 cl +pp +np +250615 cl +250617 cl +250619 cl +pp +np +np +250624 cl +pp +np +np +250629 cl +np +pp +np +250635 cl +pp +np +250639 cl +np +pp +np +np +np +pp +np +np +np +250651 cl +pp +250654 cl +pp +np +np +250663 cl +cl +pp +250667 cl +250669 cl +pp +cl +250673 np +cl +pp +pp +np +250679 cl +250682 cl +np +np +cl +np +np +250692 cl +250694 cl +pp +np +pp +250700 cl +np +np +np +250706 cl +250709 cl +pp +np +np +np +pp +np +np +250718 cl +pp +np +np +250725 cl +cl +pp +np +np +250731 cl +pp +np +np +np +np +250739 cl +np +np +np +250744 cl +250747 adjp +pp +np +np +250752 cl +pp +np +250762 adjp +np +250769 cl +pp +250772 cl +250775 cl +np +np +250779 cl +pp +np +250784 cl +cl +250787 np +np +cl +np +250792 np +np +np +np +250798 cl +np +250801 cl +cl +np +np +cl +pp +pp +pp +250811 cl +pp +np +np +np +250818 cl +250820 cl +pp +np +250825 cl +np +np +cl +pp +pp +np +pp +np +250835 cl +250839 pp +cl +cl +250843 cl +250848 cl +np +250851 cl +pp +cl +250855 cl +pp +np +pp +pp +pp +250864 cl +np +cl +pp +np +250870 cl +np +250873 cl +cl +np +np +cl +250880 cl +250882 cl +pp +250885 cl +np +cl +250889 cl +pp +pp +cl +pp +np +pp +np +np +cl +250900 cl +pp +np +np +np +np +250909 pp +250911 cl +cl +pp +pp +250916 np +250919 cl +pp +np +250923 cl +250925 cl +pp +cl +np +250931 cl +cl +np +250935 cl +np +np +cl +pp +np +np +pp +np +np +250947 cl +pp +np +250951 cl +cl +250954 cl +np +250959 cl +cl +cl +pp +np +np +250966 cl +np +np +np +np +np +np +np +250975 cl +cl +np +250979 np +np +250984 cl +np +250987 cl +adjp +np +250991 cl +250993 cl +np +np +250998 cl +pp +np +np +cl +pp +np +251010 cl +cl +np +np +np +np +np +pp +np +cl +251021 np +251023 np +pp +np +251027 np +pp +np +251033 np +251035 np +251037 np +251040 cl +251042 cl +np +251046 cl +cl +251050 cl +251052 cl +np +np +np +251057 cl +np +np +251061 cl +251063 np +np +251066 np +np +cl +251070 cl +pp +251073 cl +np +np +np +251078 cl +251082 cl +251086 cl +np +np +cl +pp +251092 cl +np +251095 cl +pp +pp +np +251100 cl +cl +cl +251106 cl +pp +cl +np +np +pp +251116 pp +np +251120 cl +251122 cl +251125 cl +np +cl +251129 np +np +251132 np +251134 cl +pp +np +np +cl +251141 np +251144 cl +cl +np +np +np +pp +np +np +np +pp +251156 cl +251158 cl +np +251161 cl +pp +251165 np +251168 cl +cl +np +np +251173 cl +cl +pp +np +pp +cl +251182 cl +cl +251185 cl +cl +251189 cl +cl +np +251195 cl +pp +np +251199 cl +np +np +pp +np +251205 cl +cl +cl +pp +cl +np +np +np +np +np +np +np +np +cl +pp +251221 np +np +cl +pp +cl +np +251228 cl +cl +251231 np +np +cl +cl +pp +np +np +np +251244 cl +pp +251247 np +np +np +cl +251252 pp +cl +pp +np +np +pp +np +251261 cl +251264 np +251267 np +np +np +251271 np +np +251275 cl +cl +pp +np +np +np +251282 cl +cl +np +pp +251288 cl +np +251291 cl +np +251294 np +cl +np +adv +251300 cl +251303 np +251305 np +251307 cl +np +np +np +pp +np +251315 cl +cl +251318 cl +251320 np +pp +np +251327 cl +251329 cl +pp +np +np +np +cl +pp +np +251338 np +cl +np +np +251343 cl +pp +np +np +251349 cl +251351 cl +pp +251354 cl +251356 cl +np +251360 cl +pp +np +np +pp +np +251370 cl +np +cl +251374 cl +251376 cl +251382 cl +cl +pp +np +251388 cl +251390 cl +pp +np +np +np +251396 cl +251403 cl +pp +np +np +251408 cl +np +pp +cl +251413 cl +pp +np +np +np +251419 cl +pp +np +np +251426 cl +np +cl +pp +np +np +251434 cl +cl +cl +pp +np +pp +np +251443 cl +251445 cl +pp +np +np +cl +pp +np +pp +251455 cl +adjp +251458 cl +pp +np +np +251463 np +cl +251466 pp +np +np +pp +np +np +251474 cl +251476 cl +pp +np +pp +np +np +251486 cl +np +np +cl +pp +np +np +251496 cl +np +251499 cl +np +251502 np +cl +pp +np +251508 cl +cl +cl +pp +pp +251515 cl +pp +vp +251519 cl +pp +pp +251523 cl +pp +251527 cl +251529 cl +cl +pp +np +pp +np +np +np +251541 cl +np +vp +pp +251546 cl +cl +251549 cl +pp +251552 cl +pp +np +np +251558 cl +cl +pp +np +251563 cl +pp +np +cl +pp +251569 cl +pp +251574 cl +251576 np +np +251580 cl +pp +np +251584 cl +np +cl +pp +pp +np +251591 cl +pp +np +np +cl +np +np +251599 cl +cl +251604 cl +np +cl +251608 cl +np +np +251612 np +np +pp +np +cl +pp +np +251622 cl +np +pp +251626 cl +cl +np +251631 cl +pp +np +np +np +np +pp +np +np +251641 np +251643 np +251645 np +np +cl +251649 np +np +251653 cl +np +pp +251657 cl +251663 cl +cl +np +251667 cl +251674 cl +pp +251678 cl +cl +251681 cl +pp +np +cl +cl +np +251689 np +cl +cl +cl +np +251695 cl +cl +cl +pp +251700 np +251702 cl +pp +np +251706 cl +cl +np +np +251711 np +cl +pp +np +251719 cl +np +np +cl +np +251726 cl +cl +251731 cl +cl +cl +251736 cl +251738 pp +np +np +251742 pp +np +np +np +251747 cl +pp +np +251751 cl +cl +np +np +pp +np +np +cl +pp +np +251763 cl +pp +np +np +cl +cl +251772 cl +np +251775 cl +np +np +pp +np +np +cl +251784 cl +np +pp +np +np +251790 cl +pp +np +251795 cl +pp +251798 cl +pp +251804 cl +advp +np +np +251809 cl +np +np +cl +cl +np +251816 cl +251818 pp +pp +np +251824 cl +np +np +251828 cl +np +np +advp +251833 cl +pp +251836 cl +np +251840 cl +np +251843 cl +251845 cl +pp +251850 cl +np +np +251854 np +251856 np +np +251860 cl +251863 np +np +cl +pp +251869 np +251871 np +251873 np +np +np +cl +251879 cl +pp +np +np +np +251886 cl +np +cl +251890 np +251893 np +np +np +np +cl +251899 cl +pp +251902 np +np +cl +np +251908 np +np +251911 cl +251913 np +np +np +251917 cl +pp +np +np +cl +np +251924 cl +pp +cl +pp +251932 cl +251935 cl +pp +np +np +pp +np +cl +np +251944 cl +pp +np +np +np +np +pp +pp +251953 cl +pp +251957 np +np +np +cl +np +np +np +cl +np +np +np +251969 cl +np +np +pp +251974 np +251976 cl +cl +cl +cl +pp +251984 cl +cl +pp +251988 cl +pp +251993 np +np +np +cl +pp +np +252001 cl +cl +252004 np +np +np +cl +252010 pp +np +252013 np +np +252017 adjp +cl +np +np +252022 pp +np +252027 pp +np +np +pp +np +cl +np +252036 cl +252038 cl +252040 np +np +252045 np +cl +252048 cl +pp +np +np +np +advp +np +np +252057 np +cl +pp +np +np +np +np +pp +np +pp +252068 cl +np +cl +252073 cl +pp +np +np +252079 cl +pp +np +np +np +pp +np +np +cl +252089 cl +np +np +np +np +252096 cl +cl +cl +np +252101 cl +252104 cl +pp +252107 cl +252109 cl +252111 cl +252114 cl +np +pp +252119 cl +cl +np +pp +np +pp +np +np +cl +np +np +252131 np +252133 np +pp +252137 np +252141 np +np +252144 np +np +cl +cl +np +np +np +252152 cl +pp +np +252157 cl +252160 np +252162 np +np +np +np +np +252170 cl +pp +pp +np +252175 cl +pp +252179 cl +252182 cl +np +np +np +pp +np +252189 cl +np +np +np +adjp +pp +252197 cl +252199 pp +252201 np +np +np +pp +np +np +cl +np +np +np +pp +252217 cl +np +pp +np +pp +pp +np +252225 cl +cl +pp +np +252231 cl +pp +np +np +pp +np +np +pp +np +np +252243 cl +252245 cl +pp +np +cl +252250 cl +pp +np +np +cl +pp +252257 cl +np +pp +pp +252262 cl +pp +252266 cl +np +cl +252270 np +np +np +cl +np +np +np +np +np +pp +np +np +252283 cl +pp +np +cl +252288 cl +252292 cl +cl +pp +252296 cl +np +252299 cl +cl +252303 cl +pp +np +pp +252309 cl +cl +np +252316 cl +cl +pp +np +252322 cl +252326 cl +cl +252330 pp +cl +252334 np +cl +pp +np +pp +cl +252341 cl +np +np +252345 cl +cl +cl +252349 cl +cl +252355 pp +252357 pp +252359 cl +np +np +252363 cl +np +252366 cl +np +252369 cl +pp +np +vp +pp +np +np +np +np +252382 cl +np +252385 cl +pp +252388 cl +np +np +252392 cl +cl +252396 cl +cl +np +pp +pp +np +pp +np +np +cl +np +252408 cl +np +np +np +np +np +252416 cl +np +pp +np +252421 cl +252424 cl +np +np +np +np +252432 cl +cl +pp +252436 cl +cl +np +252440 cl +pp +pp +np +np +cl +cl +np +pp +np +pp +pp +np +np +252455 cl +252457 np +np +252460 np +np +advp +252464 cl +cl +np +np +pp +252471 cl +252474 cl +np +pp +np +np +np +pp +np +np +cl +np +252487 cl +pp +252490 np +cl +np +np +252495 cl +np +pp +np +np +np +pp +np +pp +np +252506 cl +np +pp +np +252511 cl +np +np +252515 cl +np +np +np +252520 cl +252522 cl +252525 cl +pp +np +252530 np +252532 cl +np +np +252536 cl +cl +np +252540 cl +cl +np +252545 cl +cl +pp +252549 cl +np +np +np +cl +pp +252556 cl +252558 np +np +np +252562 np +np +cl +cl +np +252568 cl +cl +np +pp +pp +np +252577 cl +cl +np +252582 cl +np +np +np +252587 cl +252589 np +np +np +cl +pp +252595 cl +np +np +np +252601 cl +252604 cl +252606 cl +cl +252610 cl +cl +np +np +252615 cl +252617 cl +pp +np +np +cl +252624 cl +252626 np +np +cl +pp +cl +np +np +252635 cl +252640 cl +np +252643 cl +252647 cl +np +np +252651 cl +np +np +np +np +cl +pp +cl +cl +np +252663 cl +252666 cl +252668 np +np +cl +np +252675 cl +np +252678 cl +cl +np +np +np +np +252687 cl +np +252691 cl +252693 cl +252697 cl +np +np +pp +252704 cl +cl +np +np +pp +252711 cl +252713 np +pp +np +pp +np +252720 cl +252722 np +cl +np +np +cl +252729 cl +pp +np +252733 cl +cl +np +np +pp +252739 cl +pp +cl +252743 cl +252745 cl +np +np +pp +np +252751 cl +cl +pp +cl +pp +np +np +np +252760 cl +pp +cl +252765 cl +252767 cl +252770 cl +252772 cl +np +252777 cl +pp +np +cl +np +252783 cl +pp +cl +252787 cl +cl +252790 cl +np +252794 cl +252796 cl +252798 cl +252800 cl +cl +pp +252804 cl +cl +pp +np +np +np +252811 cl +pp +np +252815 cl +np +np +np +pp +252822 cl +cl +cl +pp +252827 cl +cl +pp +252831 cl +cl +cl +252835 cl +pp +np +np +pp +cl +pp +pp +252846 np +np +np +np +np +252853 cl +252855 np +np +cl +np +cl +np +252863 np +252865 cl +np +np +pp +np +pp +pp +np +252874 cl +252876 cl +252879 cl +pp +pp +252883 cl +np +252887 cl +np +np +np +np +252894 cl +252896 np +np +pp +np +np +np +np +252904 cl +pp +np +252908 cl +np +252911 cl +252915 cl +252917 cl +252920 pp +np +252924 cl +252926 cl +252928 cl +252935 cl +252937 cl +pp +cl +cl +252942 cl +252944 cl +252947 cl +np +cl +np +252953 cl +252956 cl +np +cl +252960 cl +np +252964 cl +np +cl +cl +pp +cl +pp +cl +252973 cl +cl +pp +pp +np +252980 cl +pp +pp +252984 cl +pp +pp +cl +252989 np +252991 np +252994 cl +cl +np +np +np +253000 cl +pp +np +np +np +np +253008 cl +cl +pp +np +np +np +np +253016 cl +pp +np +np +253021 cl +cl +pp +np +np +253028 cl +cl +np +253032 cl +np +np +np +253037 cl +cl +cl +np +np +cl +253044 cl +np +np +np +253049 cl +np +cl +np +np +np +np +np +np +253059 cl +pp +np +253063 cl +cl +np +np +np +253069 cl +np +253072 cl +253074 cl +253076 np +253078 np +np +np +253082 cl +253084 cl +np +253087 cl +np +np +pp +pp +np +cl +cl +np +np +253098 cl +np +np +cl +pp +np +253105 cl +253107 np +253109 cl +cl +np +pp +253115 cl +253118 cl +np +cl +pp +253129 np +253131 cl +pp +cl +cl +cl +np +cl +np +cl +np +cl +pp +cl +pp +cl +np +253148 cl +pp +np +np +253154 cl +cl +np +253158 cl +np +253163 cl +np +253168 cl +np +253173 cl +cl +cl +cl +cl +pp +np +cl +253182 pp +pp +np +253186 cl +cl +cl +cl +pp +253195 np +np +np +cl +np +253203 cl +np +cl +pp +np +np +cl +np +pp +np +253214 cl +pp +253218 cl +np +cl +np +np +cl +np +cl +253227 np +253229 np +np +pp +np +np +cl +cl +pp +253239 np +np +np +253245 cl +pp +np +np +cl +cl +253252 cl +pp +np +np +np +np +253260 cl +253262 cl +np +np +pp +np +np +pp +253270 cl +np +np +cl +253275 cl +pp +cl +pp +np +253282 cl +253284 np +cl +cl +253288 cl +253290 np +cl +np +253294 cl +cl +pp +253300 cl +cl +253303 cl +np +253306 cl +253308 cl +pp +253311 cl +253313 cl +np +253317 cl +253319 cl +253324 cl +pp +253327 cl +np +cl +253332 np +253337 cl +np +np +np +np +253343 cl +253345 cl +advp +np +np +np +253351 cl +253356 cl +pp +np +pp +253361 cl +253363 cl +pp +253366 cl +pp +253369 cl +np +np +253374 cl +np +253378 cl +pp +253381 cl +253383 cl +cl +253386 cl +np +np +253390 cl +pp +253395 cl +253397 np +np +cl +253401 np +np +cl +253405 cl +np +np +np +253411 cl +np +253414 cl +253416 cl +pp +253421 np +cl +pp +np +cl +253428 cl +pp +np +np +np +253435 cl +np +np +cl +253440 cl +pp +np +253444 cl +253447 np +pp +253450 cl +pp +np +np +np +253457 cl +253459 cl +cl +cl +np +253464 cl +np +253467 cl +pp +253471 cl +253473 cl +253475 np +cl +253481 np +253484 np +cl +253487 cl +cl +253491 cl +253493 cl +253496 cl +np +cl +253502 cl +253504 cl +cl +cl +253511 cl +253516 np +np +cl +np +253522 np +253524 np +np +cl +pp +253530 np +253532 np +np +cl +253537 np +np +253540 np +np +cl +pp +np +253547 cl +253549 cl +253551 cl +253556 cl +np +cl +253560 cl +pp +cl +advp +253566 cl +np +pp +253571 cl +np +np +np +253576 cl +cl +cl +advp +253581 np +np +np +np +253587 cl +np +advp +np +np +253593 cl +pp +cl +253597 cl +253599 cl +253602 cl +cl +np +253606 cl +pp +np +pp +253614 cl +np +np +np +np +cl +253621 cl +np +253625 cl +np +253628 cl +pp +cl +253633 cl +np +253636 cl +cl +253639 cl +253641 cl +np +pp +253647 cl +np +pp +253651 cl +np +253654 cl +253657 np +253659 cl +np +253662 cl +253664 cl +253668 cl +253670 cl +advp +253673 cl +advp +253676 cl +cl +253679 cl +cl +cl +253683 cl +253686 np +np +cl +cl +np +np +np +cl +cl +np +np +np +np +np +253702 cl +253706 np +253708 cl +pp +np +253712 cl +np +253718 cl +cl +np +np +253723 cl +pp +253726 cl +253728 cl +253730 cl +cl +pp +253734 cl +np +253739 cl +np +np +np +pp +pp +np +pp +np +cl +np +np +pp +np +253755 cl +np +253758 cl +pp +np +np +np +pp +np +253767 cl +pp +pp +np +cl +np +np +253777 cl +np +cl +cl +253782 cl +253785 cl +pp +pp +np +253790 np +cl +np +np +cl +np +np +253800 cl +np +253805 cl +np +np +253811 cl +np +np +cl +253816 cl +253818 cl +pp +np +np +253823 cl +253826 cl +pp +253830 cl +cl +253833 cl +253835 cl +pp +253838 cl +253840 cl +np +cl +cl +pp +253847 cl +cl +253850 cl +253855 np +np +np +253859 cl +pp +pp +np +np +253865 np +np +np +np +np +253871 np +np +pp +np +pp +253877 cl +np +np +cl +pp +np +pp +pp +253886 cl +np +pp +np +np +np +253897 cl +253899 cl +np +np +np +253904 cl +pp +pp +253908 cl +cl +253911 np +np +cl +pp +253916 cl +253918 cl +253920 np +np +np +cl +253925 np +np +253928 cl +np +pp +np +253933 cl +np +pp +np +253938 cl +253940 np +253945 np +253947 np +np +pp +np +cl +253953 cl +253955 np +np +253958 cl +np +cl +253962 cl +np +np +np +np +253969 cl +np +np +253973 cl +253976 cl +pp +253982 cl +np +253985 cl +pp +np +np +253990 cl +253992 cl +253994 cl +253997 cl +pp +cl +254002 cl +254004 cl +np +np +254008 cl +254010 cl +254014 cl +np +np +254018 cl +pp +np +cl +np +pp +np +np +np +254030 cl +np +np +np +pp +np +np +254039 cl +np +pp +np +np +254045 cl +254047 cl +np +254053 cl +np +pp +np +254058 cl +np +254062 cl +np +np +254066 cl +np +np +np +np +254072 cl +np +np +pp +np +np +254080 cl +254082 cl +254084 cl +cl +254087 np +np +np +cl +254092 cl +254094 cl +cl +254097 cl +pp +254102 cl +np +254105 cl +254108 cl +cl +pp +np +np +254117 cl +np +cl +254121 cl +np +cl +254125 cl +254127 np +np +254130 cl +254132 np +np +254135 np +np +cl +pp +254140 np +np +np +cl +pp +254147 np +254149 cl +cl +np +pp +254154 cl +np +np +np +np +254160 cl +254162 np +np +254167 cl +np +pp +254171 cl +cl +pp +254175 cl +cl +pp +254180 cl +np +np +254185 cl +cl +np +254190 np +pp +254193 np +np +254196 cl +cl +np +np +254204 cl +np +254207 cl +cl +254213 cl +np +254216 cl +cl +np +cl +np +np +np +np +pp +254227 cl +254229 cl +254231 cl +cl +254235 cl +254239 cl +pp +254242 np +np +np +254246 cl +cl +254249 np +np +pp +np +np +254257 cl +cl +254260 cl +np +cl +np +cl +np +np +254268 cl +np +np +254273 pp +np +254279 cl +254282 pp +np +np +cl +pp +np +254289 cl +254291 np +pp +np +np +np +254297 np +np +254300 np +254307 cl +pp +np +np +np +pp +np +254315 cl +np +np +pp +np +254323 cl +pp +254326 cl +np +np +np +254331 cl +cl +254334 cl +np +254337 cl +254339 cl +pp +np +np +254345 cl +pp +254348 cl +np +np +254352 cl +254354 np +np +254358 cl +np +np +np +np +254364 np +pp +254367 np +np +254370 cl +254372 cl +254375 cl +np +254380 cl +np +254383 cl +pp +254387 cl +254389 np +np +254392 cl +pp +254398 cl +np +pp +np +254404 cl +np +np +254408 cl +cl +254414 cl +cl +cl +pp +np +254420 cl +254423 cl +254425 cl +np +np +254429 cl +pp +np +254434 cl +254436 cl +cl +cl +254444 cl +254446 cl +cl +np +254452 cl +254454 cl +254456 cl +cl +pp +np +254463 cl +np +254466 cl +cl +254471 np +cl +np +254476 cl +cl +254479 cl +254482 cl +np +cl +254490 cl +254494 cl +np +np +254499 cl +np +pp +254503 cl +pp +254506 cl +254508 cl +254510 cl +np +np +np +cl +np +254517 cl +np +np +254521 cl +pp +254525 cl +cl +cl +254529 cl +np +np +pp +np +cl +pp +np +np +np +254540 cl +254542 cl +np +254545 cl +254548 cl +np +np +254552 cl +254555 cl +254557 np +np +cl +254561 cl +np +pp +np +254569 np +np +cl +pp +cl +254575 np +np +pp +np +254580 cl +cl +254584 cl +np +np +np +254589 cl +pp +np +np +254595 cl +254597 np +254599 cl +254602 cl +np +254605 cl +pp +254608 cl +np +254611 cl +254614 cl +pp +254617 cl +pp +254621 cl +np +254624 np +pp +pp +254628 cl +np +254631 cl +np +254637 cl +np +pp +cl +np +pp +254644 cl +254646 np +cl +254649 cl +np +254653 cl +254657 cl +pp +cl +np +np +254663 cl +np +np +np +254671 cl +np +np +np +pp +np +pp +254679 cl +cl +np +np +np +np +254686 cl +np +np +254690 cl +254692 cl +pp +np +pp +np +cl +np +np +254701 cl +254704 cl +np +np +np +254709 cl +254711 cl +np +np +254718 cl +np +cl +np +np +np +254725 cl +np +pp +np +np +cl +254733 cl +np +np +254737 cl +np +np +np +254742 cl +pp +np +254748 cl +np +np +254758 np +np +np +254763 cl +cl +np +np +cl +254769 adjp +np +254773 cl +pp +np +254779 cl +pp +254782 np +254784 cl +pp +np +254788 cl +pp +np +np +254795 cl +254797 np +cl +254801 cl +np +pp +np +np +254807 np +254809 np +254813 np +254815 cl +cl +254818 cl +254821 cl +np +254824 cl +254827 pp +254829 cl +pp +np +np +np +np +pp +np +254841 cl +254843 np +254845 pp +np +np +254850 cl +254852 cl +pp +np +254857 cl +np +np +cl +cl +254866 cl +254869 cl +254872 np +np +254876 cl +np +np +cl +254881 adjp +254884 np +254887 cl +np +pp +254891 cl +254894 cl +254896 cl +pp +254900 cl +pp +pp +254904 np +np +254907 cl +pp +np +np +254913 cl +254915 cl +254919 cl +254921 cl +254923 cl +cl +254927 cl +254929 cl +254931 cl +pp +254934 cl +254938 cl +254940 cl +254942 cl +254944 cl +pp +np +np +254951 cl +254953 cl +np +np +np +np +np +254961 cl +254963 cl +cl +np +np +np +np +254971 cl +254973 cl +np +cl +pp +np +254979 cl +pp +254983 cl +np +254987 cl +254989 cl +np +254992 cl +254996 cl +np +255000 cl +np +255003 cl +pp +255007 cl +np +255010 cl +255013 cl +255016 cl +255020 cl +255022 cl +255024 cl +255027 cl +np +np +pp +255032 cl +np +pp +255037 cl +pp +255040 cl +255042 cl +255046 cl +255049 cl +255051 cl +np +np +255055 cl +255060 cl +cl +255063 np +255065 cl +255070 cl +cl +255076 cl +255079 cl +np +255083 cl +255087 cl +255089 cl +255092 pp +np +np +255097 cl +255099 cl +255101 cl +255103 cl +cl +np +np +np +cl +255112 cl +pp +cl +advp +cl +pp +255119 cl +255122 cl +np +255126 cl +255128 cl +255133 cl +pp +np +np +255138 cl +np +np +255145 cl +cl +255148 cl +cl +255153 cl +255155 np +cl +cl +pp +255160 np +np +255163 cl +255166 cl +np +np +255170 cl +np +np +255175 cl +255177 np +np +255180 np +255183 cl +np +np +pp +255188 cl +np +np +pp +255193 cl +pp +np +255197 cl +cl +255200 np +np +255203 np +255205 cl +np +np +255209 cl +pp +255212 cl +np +np +255216 cl +pp +np +np +np +255223 cl +pp +np +255227 cl +255229 cl +np +np +pp +np +255235 cl +255237 np +255239 cl +255242 cl +255244 pp +np +np +np +255249 cl +np +np +np +np +np +cl +pp +255258 cl +255263 cl +np +cl +np +np +255269 cl +np +np +np +255276 pp +255278 cl +255280 cl +np +pp +np +255285 cl +255287 np +255289 np +255291 np +255293 np +cl +pp +np +np +255299 cl +255301 cl +255304 cl +np +np +255308 cl +np +np +255312 cl +np +255318 cl +255320 np +pp +255324 np +255326 np +255328 np +255332 cl +np +np +255336 cl +np +255339 cl +pp +255343 cl +np +pp +cl +255349 cl +cl +255353 cl +np +pp +255357 cl +np +np +np +255362 cl +pp +cl +pp +np +np +np +255372 cl +np +np +np +255377 cl +255379 cl +np +255384 cl +vp +cl +255391 cl +np +255394 cl +pp +255397 cl +255399 cl +np +cl +255404 cl +np +adjp +255409 cl +255411 cl +255413 cl +pp +np +255417 np +255419 np +255423 cl +255426 cl +np +255429 cl +np +np +np +255436 np +255439 cl +np +pp +pp +np +255445 cl +cl +cl +255449 cl +255451 cl +pp +np +np +np +pp +255458 cl +np +255461 cl +255463 np +255465 np +np +np +np +255472 pp +np +255475 pp +np +pp +255480 np +np +255484 cl +255488 cl +255490 np +np +255495 np +np +255499 cl +pp +np +np +np +pp +np +cl +pp +np +np +255511 pp +pp +np +np +255518 cl +pp +pp +255523 cl +pp +np +pp +pp +np +cl +pp +np +255534 cl +cl +pp +cl +cl +pp +np +cl +np +np +np +np +np +adjp +255551 cl +255553 cl +pp +pp +255559 pp +np +255564 cl +cl +255567 cl +cl +pp +cl +np +255574 cl +cl +255577 np +np +np +np +255582 cl +pp +np +255589 cl +pp +np +np +pp +cl +pp +255599 np +cl +np +np +pp +np +cl +255607 np +np +pp +255611 np +np +pp +255615 cl +cl +cl +255621 cl +pp +255624 cl +pp +np +np +cl +pp +cl +cl +pp +255635 cl +255637 cl +np +np +np +np +cl +pp +np +np +cl +pp +np +255654 cl +np +255657 cl +np +np +pp +pp +np +np +cl +pp +np +np +cl +np +pp +np +255673 cl +255675 cl +255677 cl +255682 cl +255684 cl +pp +np +np +cl +pp +np +np +np +np +cl +255697 cl +np +255701 pp +np +np +np +np +255707 cl +np +255710 cl +255712 np +255715 np +255718 cl +pp +np +255722 cl +pp +np +np +pp +255728 np +np +pp +np +pp +255736 cl +pp +255739 cl +255741 cl +np +255744 np +255746 pp +255748 cl +cl +np +np +pp +np +np +np +pp +np +pp +cl +255761 pp +np +pp +np +np +255767 cl +255769 cl +255774 cl +np +pp +255778 cl +np +np +pp +np +255785 cl +np +255788 cl +np +255791 cl +np +np +pp +np +255798 cl +255800 np +255802 cl +pp +255807 cl +cl +255810 np +255812 np +255816 np +pp +np +np +np +np +255823 cl +pp +pp +255827 cl +255829 cl +np +255832 cl +cl +pp +255836 np +np +cl +255841 cl +pp +255844 cl +pp +adjp +np +pp +np +cl +np +pp +np +cl +np +np +pp +255861 cl +pp +cl +cl +pp +np +np +np +255870 cl +255872 cl +pp +advp +255877 cl +np +255881 cl +255884 cl +cl +255887 cl +255890 cl +255892 cl +pp +np +255896 cl +255898 np +255900 np +cl +cl +cl +np +pp +255911 np +np +np +np +pp +255917 cl +np +np +255921 cl +pp +pp +np +np +np +255928 cl +255930 cl +np +255933 cl +cl +255936 cl +cl +255939 cl +255941 cl +pp +255945 np +255947 np +cl +pp +np +255953 cl +np +np +pp +np +255959 cl +pp +cl +cl +cl +cl +pp +np +np +np +pp +np +255972 cl +pp +np +255976 np +np +255980 np +pp +cl +255986 cl +pp +pp +255990 np +255992 np +255995 cl +np +np +np +cl +cl +np +np +np +np +256008 cl +256012 cl +np +np +np +256017 cl +np +256021 cl +cl +np +cl +np +cl +np +256029 cl +256031 np +pp +np +256035 np +256037 np +np +256041 np +np +256046 cl +256048 cl +pp +np +cl +256055 cl +256057 cl +cl +256062 cl +256064 cl +cl +256068 pp +256071 cl +pp +256074 cl +np +pp +cl +256079 cl +np +np +256084 cl +256086 cl +pp +np +np +256092 cl +cl +cl +cl +256097 cl +256099 cl +256101 cl +cl +np +np +np +pp +np +np +pp +np +cl +cl +np +np +256116 cl +np +np +256122 cl +pp +np +cl +256127 cl +pp +np +np +256133 np +np +256138 cl +np +np +256144 cl +np +np +cl +pp +np +np +np +pp +cl +np +np +np +pp +np +256160 cl +256162 np +np +np +256166 np +256168 np +256170 np +np +np +np +np +np +pp +np +np +256180 np +np +256184 cl +pp +np +256190 cl +np +256193 np +np +256196 cl +pp +cl +np +np +256202 cl +np +cl +cl +np +256208 cl +256210 cl +np +256215 np +pp +256219 cl +np +cl +np +256224 cl +np +np +np +pp +256230 cl +np +np +256235 cl +np +256240 cl +pp +256243 cl +pp +cl +256247 cl +pp +256250 cl +256255 cl +256257 cl +256259 cl +256261 cl +np +np +pp +256266 cl +256268 cl +256272 cl +pp +256275 cl +256277 cl +256279 cl +256284 cl +np +pp +256288 cl +np +pp +np +256293 cl +np +pp +cl +256299 cl +256301 cl +256303 cl +np +np +256308 cl +256310 cl +pp +256318 cl +np +np +256322 cl +256324 cl +256326 np +pp +np +np +cl +pp +np +256334 cl +np +pp +np +np +pp +256341 cl +pp +256345 np +256347 cl +pp +cl +256351 cl +np +np +np +np +pp +256361 cl +cl +cl +256365 cl +np +np +np +256370 cl +256373 cl +np +pp +cl +pp +256379 cl +np +256383 cl +256385 cl +256387 cl +pp +cl +256391 np +np +np +pp +cl +256398 cl +np +np +np +pp +np +cl +256406 cl +pp +256409 cl +np +pp +256413 cl +np +256418 np +np +np +np +np +pp +pp +np +256428 cl +cl +pp +np +cl +pp +256441 cl +cl +np +np +np +pp +256448 cl +256450 np +np +np +np +np +pp +256457 cl +256459 cl +256462 cl +np +np +cl +cl +np +np +np +cl +cl +pp +256476 np +pp +cl +pp +np +np +np +np +cl +cl +256487 cl +cl +256490 cl +256494 cl +pp +np +256500 cl +pp +256503 cl +pp +256507 cl +np +np +256512 cl +256515 pp +256517 cl +pp +np +np +pp +np +256524 cl +np +256527 cl +pp +pp +256534 cl +256536 cl +pp +256539 cl +np +np +np +np +256547 cl +256549 cl +np +256553 cl +256555 cl +pp +256558 cl +np +256561 cl +pp +np +pp +256567 cl +256569 np +256571 np +pp +np +np +np +256583 cl +np +np +pp +cl +pp +256590 cl +256593 cl +np +np +np +cl +256599 cl +pp +pp +np +np +np +np +cl +256611 cl +pp +np +cl +256616 cl +256618 np +np +256621 np +np +np +pp +256629 cl +np +256632 pp +256637 pp +256641 cl +pp +256644 cl +cl +np +pp +np +np +256651 cl +np +256654 cl +np +pp +np +np +np +256664 cl +pp +cl +np +np +256670 cl +np +np +np +256676 cl +256678 cl +np +np +256685 cl +np +256688 cl +pp +np +np +np +np +np +np +pp +256699 cl +np +pp +256703 np +256706 np +np +np +np +256711 np +np +np +np +cl +cl +256718 cl +np +np +pp +np +np +256725 pp +256729 cl +np +cl +np +np +256737 cl +np +cl +np +np +np +np +256745 cl +256749 cl +np +256753 cl +np +256756 cl +256759 cl +pp +np +np +np +np +256766 cl +pp +256769 cl +np +np +np +pp +256775 cl +pp +256778 cl +cl +256781 cl +cl +256784 np +np +256787 cl +np +cl +cl +cl +adjp +np +cl +cl +np +np +np +np +np +pp +np +np +256810 np +np +np +256814 cl +pp +np +np +np +pp +cl +cl +cl +cl +cl +cl +np +pp +np +np +np +256833 cl +pp +256836 np +256838 np +256840 cl +pp +256843 cl +256845 cl +cl +np +np +np +cl +pp +256853 cl +256855 np +np +pp +256860 np +np +256863 cl +pp +np +256867 cl +256869 np +np +pp +256873 cl +256876 np +256881 cl +np +pp +np +256886 np +256892 cl +256895 pp +np +256898 np +256901 np +np +256905 cl +np +np +np +256910 np +np +pp +256915 pp +np +np +256919 cl +256921 np +256924 cl +cl +pp +np +np +256931 cl +pp +np +np +cl +np +np +pp +np +np +pp +256945 cl +np +np +cl +np +pp +np +np +np +256955 cl +pp +np +np +256960 cl +pp +np +np +256965 cl +pp +np +np +256970 cl +pp +np +np +256975 cl +pp +np +np +256980 cl +pp +np +np +256986 cl +cl +256991 pp +np +np +256995 np +np +257000 cl +cl +cl +cl +np +np +np +np +np +np +257012 cl +257014 cl +np +np +257021 cl +cl +advp +257026 cl +np +np +pp +np +np +np +257034 np +257036 np +257042 cl +cl +pp +257046 cl +257049 pp +np +np +cl +257055 cl +pp +cl +pp +np +np +cl +pp +cl +257066 cl +np +np +np +np +257072 cl +np +257075 np +np +257080 cl +cl +cl +advp +pp +np +np +np +np +257092 cl +cl +np +cl +np +np +257099 np +np +257104 cl +np +np +np +257112 cl +pp +257117 cl +np +pp +np +np +cl +257124 np +np +np +np +cl +pp +257131 cl +np +np +cl +pp +cl +pp +pp +np +np +257143 cl +np +np +cl +cl +257149 cl +np +cl +pp +np +pp +257156 cl +257158 cl +pp +np +np +cl +257164 cl +np +np +np +257171 cl +np +cl +cl +pp +np +pp +257181 cl +np +pp +np +257186 cl +pp +pp +257190 cl +np +cl +np +np +np +cl +cl +np +257201 cl +cl +np +np +pp +np +np +np +257211 cl +pp +np +257216 cl +np +257219 cl +np +np +257229 cl +np +np +cl +257234 cl +np +cl +cl +pp +257241 cl +np +257244 cl +257247 np +cl +np +257252 cl +cl +np +257257 cl +np +cl +cl +257263 cl +np +257266 cl +pp +np +np +np +np +pp +257274 cl +257277 np +cl +pp +np +pp +np +np +cl +257286 cl +pp +257290 cl +cl +pp +np +257295 cl +257298 cl +pp +pp +np +257303 cl +257305 cl +np +cl +cl +cl +257312 pp +pp +np +257317 cl +pp +np +np +cl +pp +257325 cl +pp +cl +cl +pp +np +np +cl +np +257335 cl +257337 cl +np +np +pp +cl +257344 cl +pp +np +np +cl +cl +np +257352 adjp +257354 adjp +cl +np +cl +np +cl +cl +np +cl +np +cl +np +np +257368 np +257370 np +257372 cl +np +257375 cl +np +np +257379 cl +np +cl +pp +np +np +np +np +257388 cl +257390 np +257392 np +cl +pp +cl +np +np +np +257401 cl +cl +np +pp +257406 np +257408 cl +257410 cl +pp +cl +cl +np +np +257418 cl +cl +257424 cl +257426 cl +np +np +np +pp +np +257433 np +257438 cl +cl +np +np +257445 cl +cl +np +np +np +257451 cl +cl +pp +np +np +cl +np +257459 cl +np +np +np +257464 cl +pp +np +np +257469 cl +cl +pp +np +257476 np +np +cl +pp +pp +np +np +np +cl +257486 np +np +cl +pp +np +np +257493 np +np +np +np +np +np +257502 cl +257504 cl +pp +np +np +pp +257510 cl +pp +np +np +np +257516 cl +cl +np +np +np +np +257523 cl +pp +cl +np +pp +np +257531 cl +cl +257534 cl +cl +257537 cl +257539 pp +257541 pp +np +np +np +cl +pp +np +np +cl +257552 cl +257554 np +np +257557 np +np +np +vp +cl +pp +np +np +257567 np +np +257573 np +257576 cl +np +pp +pp +np +257582 cl +np +pp +np +257588 cl +np +257591 cl +cl +pp +cl +257596 cl +cl +pp +257601 cl +np +pp +257605 cl +pp +np +257610 cl +cl +257613 cl +257616 np +np +pp +257621 cl +np +cl +cl +pp +257627 np +257629 cl +257632 np +np +np +257636 np +np +257639 cl +pp +cl +257643 cl +cl +257647 cl +257649 np +257651 np +pp +np +np +cl +pp +257661 cl +cl +cl +257666 pp +257668 cl +np +np +np +np +257674 cl +np +257677 np +np +np +pp +np +np +cl +257685 cl +pp +pp +np +pp +pp +cl +pp +257694 cl +np +257699 cl +np +np +np +pp +np +np +np +257711 cl +257713 cl +cl +np +np +np +np +np +257722 cl +pp +np +257728 np +257730 np +257734 cl +np +257737 pp +np +257740 cl +257742 cl +pp +cl +cl +np +np +257749 cl +257751 cl +np +np +pp +np +np +np +257761 cl +np +257764 cl +257766 cl +257768 cl +257770 np +np +np +257774 cl +pp +np +257778 cl +257780 cl +cl +cl +257785 np +cl +np +pp +257791 cl +np +np +np +np +257797 pp +np +257800 pp +257802 np +np +257807 cl +257809 cl +np +np +vp +257815 cl +np +257819 cl +pp +257822 cl +257825 cl +np +257828 cl +pp +np +257835 cl +257837 cl +pp +257840 cl +pp +np +257844 cl +257846 cl +np +257852 cl +pp +np +257856 cl +pp +np +cl +pp +257862 cl +np +np +257866 np +np +pp +np +257873 cl +257875 cl +257877 cl +257879 cl +np +pp +257885 cl +np +np +cl +257893 cl +np +257896 cl +pp +np +257902 cl +257904 cl +257906 cl +257908 cl +np +np +pp +257915 np +257917 cl +257920 cl +257922 cl +pp +np +257931 cl +pp +np +np +257936 cl +257938 pp +pp +np +pp +pp +np +np +257947 cl +pp +257950 cl +257952 cl +np +np +257957 cl +257960 cl +257962 cl +257964 cl +np +np +257968 cl +pp +np +257975 cl +np +np +cl +pp +np +np +np +257984 cl +pp +257987 cl +pp +257993 cl +cl +pp +257997 cl +cl +np +cl +258002 cl +258005 np +258007 np +cl +pp +258011 cl +np +np +np +np +258017 cl +258019 cl +np +cl +cl +258024 pp +258026 pp +258028 cl +np +258031 cl +np +np +np +258036 cl +258039 cl +cl +pp +np +258044 cl +np +np +pp +np +pp +258052 cl +258054 cl +np +np +pp +np +258060 cl +pp +258066 cl +258068 cl +np +np +pp +np +258074 cl +pp +np +258078 cl +cl +258081 cl +np +np +np +258089 cl +np +pp +np +np +258098 cl +np +pp +258105 cl +np +258111 cl +np +258117 cl +np +pp +258125 cl +258127 cl +np +np +np +pp +258133 cl +np +258136 cl +258138 np +258140 np +pp +np +258144 cl +258146 cl +np +np +np +np +pp +258155 cl +np +258158 np +pp +np +258162 np +np +np +258166 np +np +np +258170 np +np +np +pp +np +cl +pp +np +258181 cl +258183 np +258185 np +np +258188 cl +258190 cl +np +np +np +pp +np +258199 cl +np +258205 cl +258207 cl +cl +advp +np +258212 cl +258214 cl +np +258218 cl +pp +258221 cl +pp +258227 cl +pp +cl +pp +258234 cl +258236 cl +pp +258241 cl +pp +np +258245 cl +258247 cl +258250 cl +np +258254 cl +258257 cl +np +pp +np +258262 cl +np +258265 cl +258267 cl +258269 cl +np +258272 cl +258274 np +258276 cl +258278 np +258280 np +258282 cl +np +258285 cl +np +np +258289 cl +258291 cl +np +np +np +258296 cl +258298 cl +pp +pp +258302 cl +258304 cl +pp +cl +pp +np +258310 pp +np +258313 pp +np +258317 cl +np +258320 cl +cl +np +np +np +258326 cl +pp +258329 cl +258334 cl +np +258337 cl +pp +pp +258341 cl +cl +cl +258350 cl +np +np +pp +258356 cl +258358 cl +258361 cl +cl +pp +258368 pp +258371 cl +258373 cl +258375 cl +pp +pp +np +np +258383 cl +258385 cl +cl +258388 cl +np +np +258392 cl +np +pp +258397 cl +cl +cl +np +np +cl +np +258406 cl +258408 cl +pp +np +258412 cl +258416 cl +np +258419 cl +cl +258422 cl +258426 cl +258428 cl +258430 cl +258434 cl +np +258437 cl +np +np +pp +258442 cl +258445 cl +np +258448 cl +np +np +np +258453 cl +np +np +258458 cl +258461 cl +258463 cl +np +258466 cl +pp +258469 cl +np +258472 cl +pp +258476 cl +np +258479 cl +258481 cl +258483 cl +258486 cl +258488 cl +np +258491 cl +258493 cl +258495 cl +np +pp +np +258500 cl +pp +np +258504 cl +pp +np +np +np +258510 cl +np +np +np +258516 cl +np +258519 cl +pp +np +258523 cl +np +pp +258528 cl +cl +258531 cl +pp +np +258535 cl +pp +258538 np +np +np +258542 np +np +np +258548 cl +np +258551 cl +pp +np +258555 cl +258557 cl +np +np +258561 cl +np +258564 cl +pp +258567 cl +258572 cl +pp +np +258576 cl +np +np +258581 cl +pp +258586 cl +np +np +258590 cl +np +np +np +258598 cl +np +258601 cl +258603 cl +pp +np +pp +np +258609 cl +np +258612 cl +258614 cl +pp +np +258619 cl +np +258622 cl +np +np +258626 cl +258628 cl +np +np +np +cl +pp +258635 cl +pp +np +258639 cl +pp +np +np +258645 cl +pp +np +cl +np +258655 cl +np +np +np +258660 cl +cl +np +np +258665 cl +np +np +pp +cl +np +np +np +pp +258675 cl +258680 np +pp +258686 cl +pp +258689 cl +pp +np +258694 cl +pp +np +np +258701 cl +np +np +258705 cl +np +np +np +258710 cl +258716 cl +np +cl +pp +np +258722 cl +cl +258725 cl +pp +258728 cl +np +np +258732 cl +np +pp +258737 cl +np +np +258742 cl +np +np +258746 np +np +258751 cl +258753 cl +258757 cl +258759 cl +np +np +pp +258764 cl +pp +258769 pp +258771 cl +pp +cl +pp +np +258777 cl +258782 cl +np +258785 cl +np +258788 cl +pp +np +258792 cl +np +pp +np +258797 cl +pp +np +np +np +258804 cl +np +258807 cl +cl +258810 pp +pp +np +258814 cl +np +258817 cl +np +pp +np +258823 cl +258825 np +np +258828 cl +cl +cl +258832 cl +pp +np +258838 cl +pp +np +258842 cl +258845 cl +np +pp +258849 cl +np +pp +np +258854 cl +pp +np +258859 cl +pp +pp +np +258864 cl +np +258867 cl +pp +np +258871 cl +258873 cl +np +cl +cl +pp +np +258880 cl +pp +258883 np +np +np +258887 np +np +np +258893 cl +258896 cl +np +pp +np +258902 cl +np +258905 cl +pp +np +258909 cl +np +258912 cl +258914 cl +np +258917 cl +np +258920 cl +pp +np +np +np +pp +258927 cl +np +np +np +np +np +pp +np +258936 cl +pp +258939 cl +pp +np +258944 cl +np +258948 cl +258950 cl +np +np +np +pp +np +np +258961 cl +np +np +cl +258966 cl +258970 cl +cl +np +pp +258975 cl +np +np +pp +vp +258982 pp +258985 cl +pp +258988 cl +pp +258991 cl +pp +np +np +258997 cl +259001 cl +np +np +np +np +259009 cl +cl +cl +np +np +np +259016 cl +np +pp +259020 cl +pp +np +259025 cl +259028 np +259030 cl +np +pp +259035 cl +np +259039 cl +259041 cl +pp +np +pp +np +259047 cl +np +pp +259052 cl +pp +np +pp +259057 cl +pp +np +np +np +259063 cl +259065 cl +np +pp +np +np +259072 cl +pp +np +259076 cl +np +np +np +259082 cl +np +259085 cl +259087 cl +pp +np +259091 cl +259093 cl +259098 cl +259100 cl +np +259103 cl +np +np +cl +259109 cl +259111 cl +np +259114 np +cl +cl +np +259119 cl +259122 cl +np +np +pp +259127 cl +259129 cl +np +np +np +np +259136 cl +np +259139 cl +259141 cl +np +pp +np +259146 cl +np +259149 cl +259151 cl +259153 cl +pp +259157 cl +pp +259160 cl +np +np +np +259166 cl +np +259169 cl +np +np +259174 cl +cl +np +np +np +cl +np +np +259184 cl +np +np +259188 cl +np +259191 cl +pp +np +np +259198 cl +259200 np +259202 cl +np +cl +np +np +259209 cl +259211 cl +np +259214 cl +259216 cl +259218 cl +np +np +np +259224 cl +259226 cl +pp +259230 cl +259234 cl +pp +np +cl +259239 pp +np +259242 pp +np +259246 cl +np +259249 cl +259251 cl +np +np +259257 cl +259259 cl +cl +259262 np +259264 np +259266 np +259268 cl +np +pp +np +259276 cl +np +np +np +cl +np +np +np +259285 cl +np +np +np +259290 cl +pp +np +np +259295 cl +259297 cl +pp +np +np +np +np +pp +259305 cl +259307 cl +np +259310 cl +pp +np +259314 cl +np +pp +np +np +259321 cl +np +259325 cl +np +np +259329 cl +np +np +pp +np +np +259336 cl +259338 cl +np +np +259342 cl +259344 cl +np +np +np +np +259350 cl +259353 cl +pp +np +np +np +np +np +259361 cl +259363 cl +np +259367 cl +cl +np +259371 cl +pp +259375 cl +pp +np +np +cl +259384 cl +259386 cl +259388 cl +cl +259391 cl +np +259394 cl +pp +259400 cl +cl +np +np +np +pp +pp +cl +259409 cl +259412 cl +pp +pp +259416 cl +np +pp +259420 cl +pp +259423 cl +259426 cl +np +259429 cl +np +pp +pp +259434 cl +259437 cl +np +259440 cl +pp +np +259445 cl +259447 cl +pp +np +259451 cl +np +259454 cl +259457 cl +pp +np +259461 cl +np +np +pp +np +259468 cl +259471 cl +np +np +np +259476 cl +259478 cl +np +259482 cl +259484 pp +np +pp +259488 np +np +259492 cl +259494 np +np +259497 np +259499 cl +259501 pp +np +259505 cl +np +259509 np +259511 np +np +cl +pp +259518 np +np +np +259522 cl +np +pp +259526 np +259528 cl +pp +259531 cl +pp +pp +np +259536 cl +pp +np +259541 pp +259544 pp +259547 np +np +np +pp +259555 cl +259557 cl +259559 cl +pp +np +np +pp +259565 cl +pp +np +259572 cl +259575 cl +np +cl +pp +259580 cl +259583 cl +cl +np +cl +pp +np +np +259592 np +259594 cl +pp +259597 cl +pp +259601 cl +pp +np +259605 np +259607 cl +cl +259610 pp +259612 cl +259614 np +259616 np +259618 cl +259621 cl +cl +cl +np +259626 cl +np +259630 cl +259632 cl +pp +np +np +np +259638 cl +259641 cl +pp +np +259646 np +259648 np +259653 cl +pp +259656 cl +np +np +259660 cl +pp +259663 cl +cl +259667 cl +259669 cl +cl +np +np +np +np +259677 cl +cl +cl +pp +259684 cl +259686 cl +pp +259689 cl +np +pp +259693 cl +np +np +vp +259698 cl +np +np +np +np +np +np +259706 cl +np +259709 np +np +cl +pp +259716 pp +cl +259721 cl +np +np +259727 cl +259730 cl +259732 cl +np +np +259736 cl +pp +259739 cl +cl +np +cl +cl +np +np +pp +np +259751 cl +259753 cl +pp +np +259757 cl +259760 cl +np +np +pp +cl +cl +np +259769 cl +pp +np +cl +pp +np +259777 cl +cl +np +259781 cl +np +259784 cl +np +259788 cl +259791 cl +259793 cl +pp +259796 cl +259798 np +np +cl +cl +np +259806 cl +pp +259810 cl +np +259813 cl +259815 cl +259817 cl +pp +np +259823 cl +np +cl +np +259828 cl +259830 cl +pp +np +259834 cl +259836 cl +np +259839 cl +259841 pp +259843 pp +np +np +259849 cl +np +259852 cl +259854 cl +np +np +259859 cl +cl +259862 cl +cl +pp +259870 cl +cl +259873 cl +np +pp +259877 cl +259879 cl +np +259882 cl +np +pp +259886 cl +259889 np +259892 np +np +np +259896 cl +pp +259900 cl +259903 cl +259908 cl +259910 cl +np +cl +pp +np +np +np +cl +cl +cl +np +np +cl +np +259926 cl +259929 np +259931 cl +pp +np +np +259936 cl +np +np +np +np +pp +259943 cl +np +259946 np +259949 np +259953 cl +cl +259956 cl +259959 cl +cl +pp +np +np +259965 cl +259967 cl +259971 cl +np +np +259975 cl +np +np +pp +np +np +np +pp +259984 cl +259988 np +np +pp +259992 cl +np +np +259996 cl +pp +np +cl +np +np +260004 cl +np +np +cl +260010 cl +260012 cl +260014 cl +260019 cl +cl +np +pp +np +np +260026 cl +260028 np +np +cl +np +cl +cl +260038 cl +cl +260041 cl +cl +260044 cl +np +np +pp +260050 cl +260053 cl +np +np +np +260058 cl +np +np +np +np +260064 cl +np +np +np +260069 cl +np +np +pp +np +np +260076 cl +cl +cl +260080 np +np +cl +pp +np +np +np +np +cl +cl +np +np +np +cl +np +np +260098 cl +np +np +np +pp +260105 cl +np +260108 np +pp +cl +cl +pp +np +np +260116 cl +pp +260119 cl +np +np +260123 pp +np +np +260127 np +np +cl +260131 pp +np +np +260135 cl +pp +np +260140 cl +np +np +cl +pp +np +np +260148 cl +np +np +cl +pp +260155 cl +260158 np +260160 cl +pp +np +np +260165 np +np +260170 cl +cl +pp +np +np +np +cl +pp +np +np +np +np +260183 cl +260186 cl +cl +260190 cl +260192 cl +np +np +np +cl +pp +np +pp +np +cl +np +np +260205 np +np +260208 pp +np +260214 cl +cl +np +cl +cl +pp +260221 cl +pp +cl +np +np +np +cl +pp +np +260232 cl +260234 np +cl +260237 cl +260239 cl +pp +np +np +pp +260245 np +np +pp +260250 np +np +260255 pp +np +np +260260 pp +np +np +260265 cl +260267 np +260270 cl +np +cl +np +np +cl +cl +pp +260279 cl +cl +pp +np +np +260286 np +np +cl +260291 np +np +np +260295 np +np +260298 cl +260300 cl +260303 cl +260307 cl +np +np +np +260312 cl +260314 cl +pp +260317 cl +np +260320 cl +260322 np +np +np +pp +np +260328 cl +260332 pp +260335 cl +260338 cl +260341 cl +260343 pp +np +260346 np +cl +pp +np +np +260352 pp +260356 np +np +np +260360 np +np +np +260364 np +np +np +np +np +260375 cl +260377 cl +pp +np +np +pp +np +np +260385 cl +260387 np +np +np +260392 cl +260394 np +260396 np +pp +np +np +np +260404 cl +pp +np +260409 cl +260411 np +260413 cl +260415 cl +pp +np +np +np +np +260422 cl +260427 cl +260429 np +260431 np +cl +260434 np +cl +260439 cl +260442 cl +260445 cl +np +260448 cl +260451 np +260453 np +260455 np +pp +np +np +260462 pp +pp +260465 np +260467 cl +pp +260470 np +np +np +260474 np +np +260478 cl +pp +pp +np +np +260484 cl +pp +np +pp +cl +260490 cl +cl +pp +260494 cl +np +np +np +260499 pp +260501 pp +260503 pp +260505 pp +260507 pp +260509 pp +260511 pp +260514 cl +cl +np +260518 cl +pp +260523 cl +cl +np +np +260528 cl +pp +np +np +adjp +np +np +260536 cl +260538 cl +pp +np +np +260546 cl +260548 np +np +260551 np +260553 cl +260555 cl +260557 cl +np +np +pp +np +260563 cl +np +np +np +260568 cl +pp +260572 cl +np +np +260576 cl +np +np +260580 cl +pp +np +np +np +np +260587 cl +pp +np +np +np +np +260595 cl +np +np +260599 cl +np +pp +np +np +260606 cl +260608 cl +pp +np +np +pp +260615 cl +np +np +pp +cl +cl +260623 cl +260625 np +260627 np +260630 cl +260633 cl +260635 cl +cl +vp +pp +np +np +np +260643 cl +np +np +260647 np +260649 np +260652 cl +260654 cl +260656 cl +260658 cl +cl +pp +260665 np +np +np +260669 np +cl +pp +np +np +260675 np +np +np +np +cl +np +np +np +np +np +260686 cl +np +np +np +np +260692 cl +np +np +np +np +pp +260699 cl +260702 cl +np +np +pp +np +np +260709 cl +pp +np +np +np +np +np +260718 cl +260720 np +np +260723 np +260725 np +np +260730 cl +cl +260734 cl +260736 cl +260739 cl +260741 cl +cl +260746 cl +260749 cl +pp +np +np +260754 cl +260757 cl +pp +260760 cl +np +np +np +np +260768 cl +cl +260771 cl +260773 cl +np +np +260779 cl +260781 cl +260783 cl +np +np +pp +np +np +260790 cl +260793 cl +260795 cl +260797 np +np +np +cl +260802 cl +260804 cl +cl +np +np +260809 cl +260812 cl +cl +pp +np +260817 np +np +cl +pp +np +np +np +260826 cl +np +np +np +np +pp +260833 cl +260836 np +260838 np +260840 cl +260842 cl +260846 cl +np +260849 np +260851 np +260853 cl +260856 cl +np +np +pp +260861 cl +cl +260865 cl +cl +np +np +260870 cl +cl +cl +260874 cl +cl +np +cl +pp +pp +260881 cl +260883 cl +np +np +260888 cl +pp +260891 cl +np +np +np +260896 cl +260898 cl +cl +np +np +260903 cl +260905 cl +advp +pp +np +np +np +260913 cl +np +np +np +np +pp +260920 cl +260922 cl +np +np +np +np +np +260930 cl +260932 cl +cl +np +np +np +260938 cl +np +np +260942 cl +np +np +pp +pp +np +np +260952 np +np +np +np +cl +cl +pp +np +260963 cl +pp +260966 cl +cl +np +np +260971 cl +np +cl +pp +np +np +260978 cl +260980 cl +260982 cl +np +cl +np +np +np +260990 cl +260995 cl +cl +260998 cl +pp +pp +np +np +np +np +261006 cl +261008 cl +cl +np +np +261016 cl +cl +261019 np +261021 cl +261023 cl +261025 np +261028 np +cl +pp +np +np +cl +cl +cl +261037 cl +261040 cl +np +np +np +np +pp +261047 cl +261049 np +np +np +261054 cl +np +np +pp +np +261060 cl +np +np +261064 cl +261067 np +np +261071 np +261073 np +261075 np +261077 np +np +261080 cl +np +np +np +np +np +261089 cl +cl +pp +cl +261095 np +261097 cl +261099 cl +261102 cl +np +np +261106 cl +261108 cl +261112 cl +261114 cl +261116 cl +cl +pp +np +np +261122 cl +cl +pp +261126 cl +261128 cl +pp +pp +np +261133 cl +pp +np +np +261139 cl +np +np +pp +261146 cl +np +np +261150 cl +261152 cl +261156 cl +np +pp +np +np +261163 cl +261168 np +np +pp +cl +np +np +cl +cl +np +np +np +cl +cl +pp +np +261185 cl +cl +pp +261189 cl +261196 cl +261199 cl +pp +np +np +261204 cl +np +pp +np +261209 cl +pp +np +261213 cl +np +np +np +261218 cl +pp +np +np +261223 cl +np +np +np +261228 cl +261230 cl +cl +np +np +261236 cl +np +np +np +np +pp +261243 cl +261245 cl +261247 np +np +np +np +261252 np +np +261255 cl +np +np +261260 cl +261262 cl +261264 cl +261268 cl +vp +261271 cl +261273 np +cl +cl +261277 cl +cl +np +pp +np +np +261286 cl +cl +261292 cl +261294 cl +261299 cl +261301 cl +pp +261304 cl +advp +cl +np +pp +261312 cl +np +pp +cl +np +np +261319 cl +pp +pp +261323 cl +261326 cl +261328 cl +pp +np +261332 cl +advp +np +np +pp +np +np +np +261341 cl +np +np +261345 pp +np +np +261349 pp +np +np +261353 cl +261355 cl +cl +np +np +261361 cl +np +np +np +np +pp +261368 cl +261372 np +np +261375 cl +np +np +261381 cl +261383 cl +261386 cl +261388 cl +261390 cl +np +np +cl +cl +pp +261397 np +cl +cl +cl +261404 cl +np +261407 cl +np +np +261411 cl +np +np +261415 cl +cl +261418 pp +np +np +np +261423 cl +cl +261427 cl +cl +261431 cl +261433 cl +261436 cl +261438 cl +pp +np +np +261443 cl +261445 cl +261449 cl +np +np +np +np +cl +pp +261457 np +np +np +261461 cl +cl +pp +np +np +cl +261468 cl +pp +np +261472 cl +261474 cl +cl +261477 cl +np +np +261484 cl +cl +pp +np +np +np +np +261492 cl +advp +261495 cl +pp +261498 np +np +np +np +261503 np +np +261507 np +np +np +np +np +np +261514 cl +pp +np +pp +np +np +261521 np +np +np +np +261526 cl +261528 cl +cl +np +np +261534 cl +np +np +np +np +pp +261541 cl +261544 np +np +np +np +261550 np +np +np +np +np +261556 cl +np +np +261560 cl +261566 cl +cl +261572 cl +261575 cl +261577 cl +261581 cl +pp +np +np +261589 cl +261592 cl +261594 cl +261596 cl +np +261599 cl +261601 cl +np +261608 cl +261610 cl +pp +np +cl +pp +261616 cl +261619 np +261622 cl +261624 cl +np +np +np +np +261630 cl +cl +np +np +261635 cl +261637 cl +261639 cl +261645 cl +261647 cl +261649 cl +cl +pp +np +261654 cl +261659 cl +np +np +261663 cl +np +261666 cl +pp +261670 cl +pp +261673 cl +pp +261679 cl +cl +pp +pp +np +np +261687 cl +261689 cl +pp +np +np +pp +np +np +261697 cl +261699 cl +cl +np +np +261705 cl +pp +261708 cl +cl +pp +np +261713 cl +np +261716 np +np +cl +pp +pp +cl +261723 cl +261725 cl +cl +cl +pp +261730 cl +pp +261734 cl +cl +pp +np +261740 cl +pp +np +261745 cl +261747 cl +261752 cl +np +pp +np +261759 cl +pp +np +np +nump +261765 cl +pp +np +np +nump +cl +pp +np +261774 cl +pp +np +np +np +261781 cl +pp +np +261790 cl +np +np +pp +np +cl +np +np +np +np +261801 cl +pp +np +pp +np +np +cl +261810 cl +261812 pp +np +np +261816 np +np +np +np +cl +261826 cl +np +np +np +261831 cl +np +np +261835 cl +np +np +np +np +pp +261842 cl +np +np +np +cl +261849 cl +np +np +cl +np +pp +np +np +261861 cl +261864 cl +cl +261870 np +np +261874 cl +261877 cl +261880 cl +261885 cl +np +261892 cl +pp +np +261896 cl +pp +np +np +np +261902 cl +np +np +nump +pp +261908 cl +pp +np +261913 cl +261915 cl +pp +np +np +np +261921 cl +np +np +pp +np +cl +261929 np +261931 np +261933 np +cl +cl +261937 np +261939 np +261941 np +261944 cl +np +261947 cl +pp +np +np +261955 cl +pp +np +np +261960 cl +pp +np +np +np +cl +261968 cl +np +261972 cl +cl +np +pp +np +cl +261979 cl +np +261982 cl +np +np +261987 cl +np +261990 pp +np +261993 pp +np +261996 pp +np +261999 cl +np +262002 cl +262005 cl +262007 cl +np +262010 cl +np +262013 cl +262016 cl +np +pp +np +cl +262022 cl +262025 np +np +pp +np +np +np +np +cl +262034 np +262036 np +np +np +262041 cl +cl +262044 pp +np +262047 np +262049 np +np +262052 pp +np +np +262056 cl +cl +262059 np +262062 np +cl +np +np +np +np +np +cl +pp +np +np +262076 cl +262078 cl +pp +np +np +262083 cl +pp +np +262090 cl +np +cl +262094 np +np +262097 np +np +nump +pp +np +cl +262105 np +np +cl +262109 cl +np +np +np +262115 cl +np +cl +262119 cl +262121 cl +np +262124 cl +np +np +262129 cl +262131 cl +np +pp +np +np +pp +np +262143 cl +np +np +262149 cl +pp +np +262155 cl +262159 cl +np +np +np +262164 np +262166 np +262168 np +262170 cl +np +np +262174 np +262176 np +cl +np +cl +262181 np +262183 cl +cl +np +262195 cl +cl +cl +262199 np +262201 cl +262203 pp +np +262206 pp +np +262209 pp +np +262212 pp +np +262215 np +np +pp +262220 cl +pp +np +262224 np +262226 np +262228 np +262230 np +262232 np +pp +np +np +np +262239 cl +np +np +262246 cl +np +262249 cl +262254 cl +262256 cl +np +np +pp +np +np +262263 cl +cl +np +pp +np +np +pp +np +cl +262275 cl +262279 cl +cl +np +262283 cl +262285 cl +pp +262289 cl +262292 cl +cl +262296 cl +262301 cl +np +np +np +cl +cl +np +np +cl +262313 cl +np +np +262320 cl +pp +262323 cl +cl +np +pp +np +262330 cl +262332 cl +np +262338 cl +np +np +np +cl +cl +np +np +cl +262350 cl +262353 cl +cl +np +262357 cl +262359 cl +pp +pp +np +np +262366 cl +262368 cl +pp +np +np +np +262375 cl +np +262378 cl +np +np +262382 cl +262384 np +262386 np +262391 cl +np +np +np +cl +cl +np +np +np +cl +262404 cl +262407 cl +cl +np +262412 cl +262415 cl +pp +np +262419 cl +np +pp +262424 cl +pp +np +np +np +cl +262431 pp +262433 pp +262435 pp +262437 pp +np +np +np +262445 cl +np +np +cl +pp +np +np +np +262454 cl +262456 pp +np +np +np +262461 pp +np +262464 cl +262467 cl +np +cl +262472 np +np +np +262477 cl +pp +262480 cl +np +np +pp +262485 cl +pp +np +262491 cl +np +np +262495 cl +262497 cl +np +262500 cl +np +262504 np +np +262507 np +np +262510 cl +262512 cl +262514 cl +np +262520 cl +262522 cl +np +np +np +262528 cl +np +262531 cl +np +pp +np +262536 cl +np +np +pp +262541 cl +np +np +np +pp +np +262548 cl +np +np +cl +pp +np +262555 cl +np +262558 cl +262560 cl +np +262564 pp +np +np +262569 cl +262571 np +np +np +262575 np +262577 np +262579 np +262581 np +262583 np +262587 pp +np +262590 pp +np +np +np +262596 cl +262598 np +262600 np +262603 cl +pp +262606 cl +262608 pp +np +262611 cl +pp +np +262615 pp +np +np +np +262621 cl +np +np +np +np +np +np +262629 cl +cl +262632 cl +pp +cl +np +pp +np +np +np +np +cl +np +np +np +np +262647 cl +262649 pp +np +262652 pp +np +262655 pp +np +262660 cl +cl +np +pp +np +cl +np +np +cl +262670 cl +np +np +262674 np +cl +262677 cl +262679 np +262681 np +cl +262684 cl +262686 np +262688 np +262690 np +262692 cl +np +np +np +np +pp +np +np +262702 cl +262704 np +np +262707 cl +np +np +262711 cl +pp +np +np +np +262718 cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +cl +pp +np +np +262768 cl +pp +262771 cl +cl +np +262775 np +cl +cl +262779 pp +np +262786 pp +np +262789 pp +np +cl +np +262794 cl +pp +np +np +262800 cl +np +cl +cl +np +262807 np +np +262810 cl +pp +np +262814 np +262818 cl +np +np +np +262823 np +262825 np +262827 np +np +262831 cl +pp +np +pp +np +np +262838 cl +np +cl +262844 np +262846 np +262848 np +262850 np +262852 np +262854 np +262856 np +np +np +pp +np +np +np +262866 cl +np +pp +np +cl +262872 cl +262875 cl +np +np +np +262880 cl +262883 cl +cl +262886 np +262889 cl +262891 cl +262893 cl +pp +np +np +np +262900 cl +np +np +262904 cl +pp +np +np +np +262912 cl +pp +pp +np +np +np +262919 cl +262922 pp +np +np +262926 cl +262928 cl +pp +np +pp +262934 cl +262936 cl +262938 cl +pp +262941 np +262943 np +262947 cl +262949 np +np +pp +np +np +262955 cl +pp +np +np +262960 cl +np +np +pp +np +np +262970 cl +np +np +np +cl +pp +np +np +262981 cl +np +262984 np +cl +pp +np +262989 cl +np +262994 cl +np +262998 cl +pp +np +cl +np +263005 cl +np +263008 cl +np +np +np +np +pp +263015 np +np +np +np +pp +np +263023 cl +np +np +np +np +np +np +pp +np +np +pp +np +263038 cl +np +np +263042 cl +pp +np +np +np +263048 cl +pp +np +263053 cl +263060 cl +263062 np +np +263065 cl +np +np +263069 cl +263072 cl +np +263077 cl +263080 cl +pp +263083 cl +pp +np +263089 cl +np +np +np +263094 cl +np +np +np +263099 cl +np +np +263104 cl +np +np +263109 cl +pp +np +np +cl +pp +np +263119 cl +np +np +np +263124 cl +np +np +263129 np +np +pp +np +263134 cl +263136 cl +np +np +np +263142 cl +np +np +263148 cl +pp +np +np +263153 cl +263155 cl +263157 cl +263159 pp +np +np +np +263164 pp +np +np +np +263170 cl +np +np +np +np +263178 cl +np +np +np +pp +263185 cl +np +np +pp +np +263191 cl +263194 cl +np +np +263200 cl +263202 np +np +np +263206 np +np +np +263210 np +np +np +263214 cl +np +np +263219 cl +np +np +np +263224 cl +np +263229 cl +263231 cl +cl +np +cl +pp +np +cl +263240 cl +pp +np +pp +np +np +np +np +np +263250 np +np +263253 cl +cl +263257 cl +np +np +263263 cl +cl +pp +np +pp +np +263270 cl +np +np +np +np +np +263280 cl +np +np +np +263285 cl +pp +np +263289 cl +np +np +263293 cl +263295 np +263297 np +pp +np +np +np +263305 cl +pp +np +pp +np +263311 cl +263313 cl +np +np +np +263319 cl +263322 cl +263324 np +np +np +263328 np +263330 np +263332 cl +np +263335 cl +np +np +np +pp +np +263343 cl +263346 cl +263348 cl +np +263352 cl +np +np +pp +np +263358 cl +263363 cl +pp +np +np +np +np +263370 cl +advp +263374 cl +cl +263377 cl +np +pp +263383 cl +np +np +np +np +cl +pp +263391 cl +pp +np +np +pp +263397 cl +263399 cl +np +np +pp +np +263405 cl +np +pp +np +263410 cl +np +np +pp +263415 cl +np +pp +np +263420 cl +np +np +np +np +pp +np +np +np +np +cl +pp +263435 cl +263438 cl +263441 cl +pp +np +np +np +263447 np +cl +np +np +263452 cl +pp +263455 np +np +np +263460 cl +np +263463 cl +pp +np +263467 cl +np +np +np +263472 cl +np +pp +263477 cl +np +np +263482 cl +np +pp +np +np +np +263489 np +np +np +np +pp +np +cl +263497 np +np +263500 cl +np +cl +263504 np +np +263507 cl +pp +263510 np +np +np +263515 cl +263517 np +np +263520 cl +pp +np +263528 cl +np +np +np +263534 cl +np +np +np +np +np +np +263542 cl +np +np +263548 cl +np +pp +np +263553 cl +263555 cl +pp +np +263564 cl +np +np +np +pp +np +263571 cl +pp +np +np +263579 cl +np +np +np +263584 pp +np +np +np +pp +263591 np +263593 np +263595 np +263597 cl +pp +np +np +263603 cl +np +np +np +263608 pp +np +np +263612 pp +np +np +263618 cl +np +np +cl +263623 cl +pp +263628 cl +cl +np +263632 np +np +cl +pp +np +np +pp +np +np +np +np +cl +263645 np +263647 np +263649 np +263651 np +263653 np +263655 np +263657 np +263659 np +cl +cl +263667 cl +263669 pp +np +np +263673 pp +np +np +263677 pp +np +np +263681 pp +np +np +263687 cl +cl +np +np +pp +np +cl +263697 cl +np +pp +np +np +263703 cl +np +np +pp +np +263709 cl +np +np +pp +np +263715 cl +pp +np +np +np +cl +263725 cl +np +np +np +np +pp +np +263733 cl +np +pp +np +263738 cl +np +263741 cl +263746 cl +cl +np +np +np +np +263756 cl +np +np +cl +cl +263763 cl +cl +pp +np +263768 cl +cl +np +np +263773 cl +263777 cl +np +263780 cl +cl +263783 pp +np +263786 pp +np +np +np +np +np +pp +np +263795 cl +pp +263799 cl +pp +np +np +np +cl +263807 np +263809 np +pp +263813 np +263815 np +pp +263819 np +263821 np +pp +263825 cl +263827 cl +pp +np +np +np +np +np +np +263836 cl +cl +np +np +np +263842 cl +263844 np +np +np +263850 cl +np +263853 cl +pp +np +pp +263858 cl +263860 cl +cl +263863 np +263865 cl +pp +np +np +263870 np +263872 cl +263874 pp +np +263877 pp +np +263881 cl +pp +np +cl +cl +np +263889 cl +263892 cl +263894 cl +263897 cl +np +np +263901 cl +pp +np +np +263906 cl +263911 cl +np +pp +np +np +np +263918 cl +263920 cl +pp +np +np +pp +263927 cl +263929 cl +np +np +263934 cl +cl +cl +pp +np +263945 cl +263947 cl +cl +263950 cl +263952 cl +263954 np +np +np +263958 np +263961 cl +pp +263966 cl +263968 np +np +advp +np +263973 cl +263976 cl +np +263979 cl +np +np +np +np +263988 cl +np +np +np +263993 cl +np +263996 cl +263998 cl +264001 np +np +264004 np +np +264007 cl +pp +np +np +np +264016 cl +cl +264019 cl +pp +np +np +264024 cl +np +np +264031 cl +cl +cl +cl +264038 cl +np +cl +np +264043 cl +np +np +np +np +264049 cl +pp +np +cl +pp +264056 cl +np +pp +np +264062 cl +264067 cl +np +np +264071 cl +264073 np +264075 cl +pp +np +pp +264081 cl +264083 cl +264086 cl +np +np +pp +np +np +np +264095 np +np +cl +264100 cl +np +np +np +264107 cl +pp +264110 np +264114 np +np +np +264120 cl +cl +np +np +pp +264129 cl +264131 cl +pp +np +pp +264136 cl +264138 cl +264140 cl +np +np +np +264145 cl +pp +np +264152 cl +pp +np +np +264158 np +pp +np +pp +264163 cl +pp +np +np +264168 cl +np +pp +264172 cl +264175 cl +cl +np +pp +np +cl +264184 cl +pp +np +pp +np +264190 cl +np +np +264196 cl +pp +np +np +np +264203 cl +np +np +np +264209 cl +pp +np +264213 np +np +264217 cl +np +264220 cl +np +np +np +264225 cl +np +np +np +264230 cl +np +np +np +264236 cl +np +np +264241 cl +np +pp +np +cl +264247 cl +np +np +np +264252 np +np +264255 np +np +264258 cl +pp +np +np +np +264266 cl +264268 np +np +nump +264272 cl +pp +np +pp +np +np +pp +np +np +264282 cl +np +cl +264286 cl +264291 np +np +264295 cl +264298 cl +264301 cl +np +np +np +np +264307 cl +264311 cl +np +264315 cl +np +np +264319 cl +np +264322 np +np +264325 cl +264327 cl +np +264330 np +np +264333 np +264335 np +264338 cl +np +np +264342 np +264344 np +264346 cl +264348 cl +np +264353 cl +264355 np +np +np +np +pp +np +264362 cl +np +np +np +np +pp +np +np +264372 cl +264378 np +264381 cl +np +pp +np +264388 cl +np +264391 cl +np +pp +np +np +264397 cl +pp +np +np +np +np +264404 cl +pp +264407 cl +264409 cl +264411 cl +cl +264416 cl +np +pp +np +264422 cl +cl +np +np +264427 np +264429 np +264431 cl +pp +np +np +np +264438 cl +np +np +np +np +np +np +np +264447 cl +pp +np +264452 cl +np +pp +264456 np +264458 cl +cl +264461 cl +264463 cl +np +np +264468 cl +264470 np +cl +cl +np +np +pp +np +264479 cl +np +np +264483 pp +np +264486 pp +np +np +264491 cl +np +pp +264495 np +cl +np +cl +pp +np +264502 cl +np +264508 cl +pp +np +cl +264513 np +264515 np +np +264518 cl +pp +np +264524 cl +264526 np +264528 np +np +264532 cl +cl +np +pp +np +264539 cl +264543 np +np +np +np +np +np +264550 cl +264553 np +264555 cl +np +np +264559 cl +pp +np +264563 cl +np +np +pp +264569 cl +cl +np +pp +np +264575 cl +264577 np +264579 np +264581 np +np +np +np +264586 np +np +np +np +264591 cl +264593 np +np +np +np +264598 cl +pp +np +np +264607 cl +264609 pp +np +np +np +264614 pp +np +np +np +np +264620 cl +np +np +pp +264625 cl +pp +264631 cl +pp +264635 cl +264637 np +264639 np +264641 cl +np +pp +cl +np +cl +264648 cl +np +264652 cl +264654 cl +np +264657 cl +pp +np +np +264662 cl +np +264666 cl +np +np +np +np +np +np +np +264675 cl +pp +np +pp +264680 np +np +cl +264686 np +pp +np +np +264693 np +pp +np +np +pp +np +264700 cl +264702 cl +264706 cl +np +np +264711 cl +np +np +np +264716 cl +np +264719 cl +np +pp +np +np +264727 cl +np +pp +np +264732 cl +cl +pp +264736 np +np +np +np +264742 cl +np +np +np +264747 cl +np +np +264752 cl +pp +np +np +np +264760 cl +cl +pp +np +cl +264766 np +264768 np +264771 cl +pp +np +np +np +264777 cl +pp +np +np +np +264785 cl +np +264788 cl +264791 cl +np +np +pp +264796 cl +np +np +pp +np +264803 cl +np +264806 np +np +264809 np +np +264812 np +264816 cl +np +pp +np +np +264822 cl +pp +264825 cl +np +np +np +np +264834 cl +np +np +pp +np +264840 cl +np +264843 cl +np +np +264847 cl +np +cl +264851 cl +np +264854 cl +cl +pp +264860 cl +np +cl +264866 cl +cl +np +264872 cl +np +np +pp +np +pp +np +cl +264881 np +np +264885 np +np +264888 cl +pp +np +264894 cl +264896 cl +pp +np +264900 cl +264902 cl +pp +np +264911 cl +np +264915 cl +pp +np +cl +np +np +np +pp +np +np +np +np +264928 np +264930 cl +pp +np +264936 cl +cl +264939 cl +264941 cl +pp +pp +264945 cl +264947 cl +pp +cl +pp +264952 cl +np +264955 np +264957 np +np +264962 cl +cl +np +pp +np +264969 cl +np +adjp +264973 cl +264975 cl +264978 cl +np +np +np +np +np +pp +264987 cl +264989 np +264992 cl +pp +264995 cl +264997 np +np +np +cl +np +np +np +np +265007 cl +np +265010 cl +cl +pp +np +pp +np +pp +np +265020 cl +265022 cl +pp +np +pp +np +265028 cl +cl +pp +np +cl +265034 cl +pp +np +cl +np +265041 cl +np +np +np +265046 cl +265050 cl +cl +np +np +np +265057 cl +np +np +np +265063 cl +265065 cl +265067 cl +np +np +np +265074 cl +265078 np +265080 np +265083 np +265085 np +265088 np +265090 np +265093 cl +265095 pp +np +np +np +np +265101 pp +np +np +265107 cl +265109 cl +265111 cl +265113 cl +265115 cl +265117 np +265119 np +np +np +265123 np +np +np +np +265128 cl +np +265131 cl +265133 cl +np +np +np +265138 cl +np +265142 cl +np +np +265149 cl +265151 cl +cl +np +pp +np +np +265158 cl +pp +np +np +265163 cl +cl +265166 np +np +265169 np +np +np +np +pp +np +np +265179 cl +pp +np +265184 cl +np +np +265189 cl +np +np +265193 cl +np +265196 cl +pp +cl +pp +np +np +265204 cl +np +265207 pp +np +265210 pp +265212 np +np +265215 np +265218 cl +cl +np +265222 cl +265224 np +np +265228 cl +pp +np +265233 cl +cl +pp +265237 cl +265239 cl +265241 cl +np +265244 cl +265247 cl +pp +np +np +265252 np +265254 np +265256 cl +pp +np +np +265261 cl +265264 cl +cl +np +pp +cl +np +cl +265272 pp +265274 cl +pp +np +265278 pp +np +265284 cl +pp +np +265290 cl +np +265293 cl +265295 cl +np +np +np +np +265301 cl +265303 cl +265305 np +265307 np +265310 np +265313 cl +265315 np +cl +265318 cl +cl +265321 np +np +cl +pp +np +np +np +np +np +np +np +np +265335 cl +265337 np +cl +pp +np +265344 cl +265346 np +265348 np +np +265351 cl +265353 pp +np +np +265357 pp +np +np +265361 cl +np +pp +265365 np +np +np +np +np +265371 cl +pp +np +np +np +np +265378 cl +pp +265383 pp +np +265386 pp +np +265391 cl +np +np +np +np +pp +np +265399 cl +265404 cl +265406 np +265408 np +np +265412 cl +np +np +np +np +265418 cl +np +np +265422 np +265424 cl +265426 np +np +np +265430 np +np +265434 cl +cl +pp +np +cl +cl +265441 np +265443 cl +pp +265448 np +265451 cl +pp +np +np +265456 cl +np +np +pp +265463 cl +265465 cl +cl +np +265469 cl +pp +np +np +np +265475 cl +pp +np +np +np +265481 cl +pp +np +np +np +265488 cl +np +pp +np +cl +pp +np +265496 cl +pp +np +265501 cl +np +np +265505 cl +265507 cl +np +cl +265511 cl +np +np +np +265518 cl +265520 cl +pp +np +np +np +pp +np +265528 cl +np +265532 cl +np +pp +265536 np +np +pp +np +cl +np +np +265546 cl +265548 np +265550 cl +pp +np +pp +np +265556 cl +np +265559 cl +np +np +np +cl +265566 cl +np +np +np +np +265572 cl +np +np +np +np +np +265579 cl +np +np +265585 cl +np +np +np +pp +np +265593 cl +np +np +np +265598 cl +pp +np +np +np +np +np +np +np +265610 cl +np +pp +np +265615 cl +pp +np +pp +np +np +np +pp +np +adjp +265627 cl +265629 np +np +np +pp +np +265636 cl +np +np +np +np +265642 cl +pp +np +np +np +265650 cl +265652 cl +pp +np +265656 cl +265658 cl +265660 pp +np +265663 pp +np +np +265667 pp +np +np +np +np +pp +np +np +np +cl +np +np +265681 cl +265683 np +np +265686 np +np +np +265690 np +np +np +cl +cl +265697 np +np +265702 np +np +265705 cl +265708 np +np +265711 np +np +np +265717 cl +advp +265721 cl +np +np +265725 cl +265728 cl +np +np +265732 cl +pp +265735 cl +np +np +265741 cl +pp +265745 cl +np +np +np +np +np +np +pp +np +265755 cl +265757 np +np +265760 cl +np +np +pp +np +265766 cl +np +np +265770 cl +pp +np +np +265776 cl +np +pp +np +np +np +np +np +np +np +cl +np +np +265790 np +265792 cl +pp +np +np +np +265800 cl +np +265803 pp +np +np +np +265808 pp +np +np +265812 cl +cl +pp +np +265817 cl +np +np +np +np +np +265825 cl +cl +np +pp +np +np +np +265833 cl +265835 cl +np +np +np +np +np +np +pp +np +265847 cl +np +265850 cl +np +np +pp +np +265857 cl +np +265861 pp +265863 np +265866 cl +np +np +np +265872 cl +np +np +265877 cl +np +np +np +pp +np +265886 cl +np +pp +265890 cl +265892 np +np +np +pp +np +265899 cl +np +np +np +pp +265905 np +265907 np +np +np +265912 cl +265915 cl +cl +np +np +np +265921 cl +265926 cl +265929 cl +np +265932 cl +265935 cl +np +265940 cl +cl +265943 cl +265946 cl +cl +np +265954 np +np +265958 np +np +265962 cl +np +np +np +pp +np +265970 cl +cl +np +pp +265977 cl +np +np +265982 cl +np +np +265986 np +265988 cl +np +pp +np +np +265994 cl +cl +265998 cl +np +np +np +pp +np +np +np +266009 cl +np +np +cl +266016 cl +np +np +pp +np +266022 cl +np +np +np +266027 pp +np +np +266031 pp +np +np +266035 cl +pp +np +np +266041 cl +np +np +np +pp +266047 np +np +np +266052 cl +np +np +266056 cl +np +np +266060 np +np +pp +np +266066 cl +cl +266069 pp +np +np +np +266074 pp +np +np +np +266079 pp +np +np +np +np +np +np +pp +266089 cl +266091 np +np +cl +cl +pp +np +np +np +np +cl +pp +np +np +np +np +np +np +266109 np +np +266112 cl +cl +266115 cl +266117 cl +266120 cl +266122 cl +np +np +266127 cl +266129 cl +np +np +266134 cl +pp +266137 np +266139 cl +266142 cl +np +np +np +pp +np +266150 cl +np +pp +np +pp +np +cl +cl +266161 cl +266167 cl +np +cl +pp +cl +pp +np +cl +np +266179 cl +np +np +np +pp +np +266186 cl +np +np +np +266192 cl +np +np +pp +np +cl +np +np +np +np +np +np +np +np +266209 cl +np +266212 cl +266215 cl +np +np +adjp +pp +np +pp +np +266225 cl +np +np +pp +np +np +np +266233 cl +np +np +266239 cl +np +pp +266243 np +np +266246 cl +np +np +266250 cl +pp +cl +266254 cl +cl +np +np +266259 np +np +np +266263 cl +pp +np +266267 cl +pp +np +np +np +266273 cl +266275 cl +np +pp +np +np +np +np +266284 cl +pp +pp +266289 cl +cl +pp +np +np +np +cl +np +cl +266299 np +266301 np +266305 cl +np +266308 cl +266312 cl +266315 np +266318 cl +pp +np +np +np +np +cl +266327 np +np +np +np +266332 cl +pp +np +np +266339 np +np +np +np +266344 np +266346 np +np +np +266351 cl +cl +np +266355 pp +np +np +np +266360 pp +np +np +np +np +266367 cl +cl +np +266372 cl +np +cl +pp +266377 cl +np +np +266381 np +266385 np +266387 cl +266389 cl +266391 np +np +266394 np +np +266399 cl +np +266402 cl +266404 cl +266407 cl +cl +pp +np +266412 cl +pp +266416 cl +266419 cl +pp +np +cl +np +np +pp +np +np +np +pp +np +cl +np +266435 cl +266437 cl +266439 cl +266441 cl +266443 np +266445 cl +266448 cl +np +np +np +cl +np +pp +266457 cl +np +266461 cl +np +cl +np +266466 cl +np +266469 cl +266471 cl +cl +266477 np +266480 cl +266482 cl +266484 cl +np +266487 cl +pp +np +266491 cl +pp +266495 cl +np +266498 np +cl +266501 np +266503 cl +266505 cl +pp +np +pp +np +266512 cl +np +266515 cl +np +np +266520 np +266523 cl +pp +np +266528 cl +np +266532 cl +266534 np +266536 np +266538 cl +np +pp +266546 cl +cl +np +266551 cl +cl +np +266563 np +266565 np +cl +266568 np +cl +np +266573 cl +266575 cl +266579 cl +np +np +266583 cl +pp +266587 cl +np +pp +np +np +266593 cl +np +np +266597 cl +np +266600 cl +np +np +np +266605 cl +np +np +np +266611 cl +np +266614 cl +266616 np +np +np +266620 cl +pp +np +np +np +266627 cl +pp +cl +np +pp +np +cl +np +266636 cl +np +pp +np +np +266643 cl +pp +np +cl +266649 cl +cl +np +np +266654 cl +266656 np +266658 np +np +np +266662 np +np +np +266667 cl +266670 cl +pp +np +np +np +np +np +np +np +np +266681 cl +np +np +np +pp +266687 cl +np +np +np +pp +np +np +np +np +266698 cl +cl +np +pp +np +266705 np +np +pp +266710 cl +np +np +266715 cl +pp +np +np +266721 cl +np +np +pp +np +266727 cl +np +np +np +266733 cl +266735 cl +np +266738 cl +np +pp +np +np +266744 cl +pp +np +266748 cl +266751 cl +266753 cl +266755 cl +np +266759 cl +pp +np +np +266765 cl +266768 cl +266770 cl +advp +266774 cl +pp +pp +np +266779 np +np +266785 cl +pp +266788 cl +266791 np +266793 cl +266797 cl +266800 pp +266802 np +np +np +266806 cl +pp +266811 cl +np +np +np +np +cl +pp +pp +np +np +np +np +cl +266829 np +np +np +266833 np +np +np +266837 cl +np +np +np +266843 cl +np +np +np +266849 pp +266851 cl +266853 np +np +266856 np +266860 np +266868 np +np +266871 np +np +266874 np +np +pp +266878 np +266900 np +266905 cl +np +np +np +np +np +np +pp +266914 cl +np +266917 np +266919 np +pp +266922 cl +advp +266925 cl +266927 np +np +266930 cl +pp +pp +pp +np +np +np +np +266939 cl +266941 cl +cl +266948 np +np +np +266953 cl +266958 cl +pp +266962 np +266965 cl +np +np +np +266972 cl +266974 np +266976 np +266978 cl +pp +266982 cl +np +pp +266986 cl +cl +np +np +np +np +cl +cl +np +np +np +267000 cl +pp +np +np +267005 cl +267007 cl +267009 cl +cl +267016 np +np +np +cl +pp +np +267023 cl +np +pp +np +pp +np +np +267031 cl +np +267035 pp +267040 np +267042 np +267044 np +267046 cl +np +np +np +pp +267054 cl +np +np +np +pp +np +267061 cl +pp +np +cl +267066 cl +267068 np +np +267071 cl +advp +267077 cl +np +267083 advp +pp +267086 cl +np +np +np +advp +pp +267093 cl +np +advp +pp +267098 cl +np +advp +pp +267103 cl +np +267107 advp +pp +267111 cl +np +np +np +np +np +267119 cl +pp +np +np +np +np +267126 cl +pp +np +267132 np +267134 cl +pp +np +267138 cl +pp +cl +pp +np +np +np +pp +np +267149 cl +267151 np +267153 np +267155 np +np +np +267159 cl +267162 np +np +267166 cl +np +267169 np +np +cl +np +pp +np +np +267177 cl +np +np +np +np +pp +np +267186 cl +267190 cl +np +np +pp +np +np +np +267200 cl +267202 np +np +np +np +267207 np +np +267210 cl +267212 np +267214 cl +pp +np +cl +cl +267222 cl +pp +np +cl +cl +np +np +267232 np +np +np +267236 cl +267238 np +267240 np +267243 cl +cl +267246 pp +np +np +267250 pp +np +np +267254 pp +np +np +267259 cl +267262 np +np +np +267269 cl +267271 cl +267273 cl +np +267277 cl +np +np +np +267282 cl +np +np +267288 cl +267290 cl +np +adjp +267294 cl +np +np +np +np +267301 cl +cl +cl +267305 cl +pp +np +np +np +np +np +267314 cl +cl +np +np +np +np +267322 cl +pp +np +np +cl +267329 cl +267333 cl +cl +cl +np +267340 np +np +267343 cl +np +np +cl +np +267349 cl +np +np +np +np +np +267358 cl +cl +np +267363 cl +cl +np +267368 cl +267370 cl +pp +267375 cl +pp +267383 cl +np +np +np +267388 cl +pp +np +np +np +267394 cl +267396 np +cl +cl +cl +cl +267402 cl +np +cl +267406 cl +np +np +np +np +np +267414 cl +267416 np +np +pp +np +pp +np +cl +np +np +267428 cl +pp +np +np +np +267434 cl +pp +np +267438 cl +pp +np +267443 cl +np +np +np +np +np +np +np +np +267453 np +np +267457 cl +267459 pp +np +267462 pp +np +np +267466 np +cl +267469 np +267471 np +267474 cl +267476 cl +np +pp +np +267481 cl +pp +np +cl +np +267487 np +267489 cl +pp +267493 cl +cl +pp +np +np +np +np +np +267502 cl +267504 np +267506 np +267508 np +267510 np +267514 cl +pp +267517 np +np +267528 cl +cl +267531 np +267533 np +np +np +267537 np +np +cl +np +267542 pp +267544 cl +pp +np +267548 pp +np +np +267554 cl +np +267557 cl +pp +267560 np +267562 cl +np +pp +cl +pp +267569 cl +np +np +np +267575 cl +np +np +267579 cl +cl +np +pp +np +np +267586 np +267588 cl +pp +267593 cl +np +pp +267597 np +np +267600 cl +pp +np +267604 cl +pp +np +np +267609 cl +np +np +pp +np +np +267617 cl +cl +pp +np +cl +267623 np +np +np +267627 np +pp +np +np +267637 cl +267640 np +np +np +np +cl +267647 np +267649 cl +np +267653 cl +pp +np +267658 cl +267660 cl +pp +267663 cl +np +267666 cl +np +np +267670 cl +pp +cl +np +267679 cl +267682 cl +pp +267685 cl +267687 cl +np +np +267691 cl +267693 pp +np +np +267697 pp +np +np +np +267703 cl +267705 np +267707 np +np +267710 cl +np +267713 pp +np +267716 pp +np +np +267722 cl +267724 cl +pp +np +np +267729 cl +np +np +np +267734 cl +np +np +267738 cl +np +np +np +267743 cl +267747 cl +pp +np +np +np +267754 cl +pp +np +np +267760 cl +np +267763 np +267765 np +267767 cl +pp +np +np +267775 cl +np +np +267779 cl +np +pp +np +np +267785 cl +cl +267789 np +np +pp +np +np +np +np +np +267799 cl +pp +np +cl +np +np +np +pp +np +np +np +267813 cl +pp +np +np +np +267819 cl +267821 np +np +np +267826 np +267828 cl +267832 cl +pp +np +267836 cl +267840 cl +267842 np +267844 cl +pp +np +267848 np +np +267852 cl +267854 np +np +267857 cl +267860 pp +np +np +np +267866 cl +267868 np +np +267873 cl +pp +267876 cl +pp +np +np +267881 np +267883 np +267885 cl +267889 cl +cl +267892 np +267894 np +267896 np +pp +np +267900 cl +267903 cl +np +cl +np +267909 cl +np +pp +267913 cl +pp +np +pp +np +np +267923 cl +np +267926 np +np +pp +267930 cl +267932 np +267934 np +267936 np +np +pp +267940 cl +pp +np +np +267946 cl +267948 np +267950 np +pp +np +np +np +267956 cl +267958 np +np +np +np +np +np +267968 cl +cl +pp +np +np +np +cl +pp +np +np +np +267982 cl +267984 np +267986 np +267989 cl +267991 np +np +267994 np +np +267997 cl +np +268001 cl +cl +268004 np +np +np +np +pp +np +pp +np +cl +pp +np +cl +np +np +268020 cl +cl +np +pp +np +cl +268028 cl +np +np +np +pp +np +268035 cl +pp +268039 cl +np +268042 cl +np +np +pp +268048 cl +np +pp +np +np +268055 cl +np +268058 cl +268064 cl +np +268068 cl +268070 cl +pp +np +cl +268076 cl +cl +268079 cl +np +np +268086 cl +cl +268089 cl +268092 np +268094 np +268096 np +268098 np +268100 cl +268102 cl +pp +np +np +np +np +np +268111 cl +268113 cl +268116 cl +268118 cl +268124 np +268127 cl +268133 np +np +np +np +pp +268139 np +268141 cl +268144 cl +np +np +np +268151 cl +np +pp +268155 np +np +268158 cl +268160 np +np +268163 cl +np +np +np +np +268169 cl +pp +cl +268173 cl +cl +268176 np +np +np +np +268183 cl +pp +pp +np +268190 cl +cl +268193 np +np +np +pp +np +pp +np +cl +np +np +np +268205 cl +np +np +np +268210 cl +np +268213 cl +268216 cl +np +268221 cl +np +268225 cl +pp +np +np +268230 cl +268232 cl +np +np +np +np +268239 cl +pp +np +268243 cl +pp +np +268247 cl +pp +np +268251 cl +pp +np +268257 cl +np +np +np +np +268263 cl +pp +np +np +np +np +np +np +268273 cl +268275 cl +pp +268278 np +268280 cl +268282 np +268284 np +np +268287 np +np +268292 cl +np +268295 cl +np +np +cl +np +268302 cl +np +np +pp +268307 np +268309 cl +np +268312 np +268314 np +268316 np +268319 cl +np +np +np +268325 np +cl +268330 cl +np +np +np +np +268337 cl +np +np +cl +np +268343 cl +np +np +np +np +np +np +np +268353 cl +np +np +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +cl +np +268382 cl +np +np +np +cl +np +np +np +pp +np +268394 cl +np +np +np +np +pp +np +268404 cl +pp +268407 cl +268410 np +268412 np +np +268415 np +np +268420 cl +np +np +268424 np +268426 np +268428 cl +268431 cl +np +np +np +268436 cl +np +np +np +268442 cl +np +pp +np +np +268449 cl +np +np +np +np +np +pp +268459 cl +np +np +advp +268464 cl +268467 cl +np +268470 np +268472 np +np +pp +268477 cl +advp +pp +np +268484 cl +268488 cl +268490 cl +pp +np +np +np +np +np +268499 cl +cl +np +np +np +adjp +pp +pp +np +np +268510 np +268512 np +268515 cl +pp +np +268519 np +np +268522 np +268525 np +np +np +cl +np +cl +pp +np +np +np +268536 cl +np +np +np +pp +np +np +268545 cl +np +268550 cl +np +np +268554 np +268556 np +pp +268561 cl +np +np +268565 cl +np +np +268569 cl +np +np +pp +np +np +268579 cl +268581 cl +np +268584 np +268586 np +268588 cl +268590 np +pp +268593 cl +pp +np +np +np +268600 cl +268602 cl +np +np +268608 cl +268610 np +np +np +np +np +np +np +np +cl +np +np +cl +cl +pp +268626 cl +268628 cl +268630 cl +np +np +np +np +np +np +268638 cl +268641 cl +268649 cl +268651 cl +cl +cl +pp +np +np +268658 np +268660 cl +268663 cl +268666 cl +cl +cl +np +268673 np +np +np +268678 cl +np +np +np +np +cl +np +268687 cl +cl +np +np +np +np +np +np +268696 cl +np +268701 cl +268703 cl +268705 cl +np +268709 cl +np +268712 cl +np +268716 cl +268718 cl +np +np +pp +cl +268724 cl +np +np +268728 cl +268731 np +268733 np +268735 np +268737 np +268739 np +268741 np +268743 cl +268746 cl +np +np +268751 cl +np +np +pp +np +np +np +268759 cl +np +pp +np +268764 cl +268766 np +268768 np +268770 np +268772 np +268774 np +268776 np +cl +268781 cl +268783 np +np +cl +pp +np +268789 cl +np +np +268793 np +268795 np +np +np +np +np +np +268803 cl +268805 np +268807 np +cl +268811 cl +268813 cl +cl +268818 cl +268820 cl +cl +268823 cl +np +268826 cl +np +268829 cl +np +np +np +np +np +np +268839 cl +pp +cl +np +pp +268845 np +268847 cl +pp +np +np +268855 cl +pp +np +np +np +np +np +np +cl +np +np +np +268869 pp +np +np +np +268874 pp +np +np +np +268879 cl +pp +np +np +268884 cl +268886 cl +cl +268895 cl +np +np +268899 np +pp diff --git a/tf/0.1.1/clauseType.tf b/tf/0.1.1/clauseType.tf new file mode 100644 index 0000000..6a2121a --- /dev/null +++ b/tf/0.1.1/clauseType.tf @@ -0,0 +1,5310 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Type of clause +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +154186 nominalized +154190 nominalized +154272 nominalized +154298 nominalized +154314 nominalized +154341 nominalized +154366 nominalized +154401 nominalized +154428 nominalized +nominalized +154444 nominalized +154471 nominalized +154474 nominalized +154480 nominalized +154557 nominalized +154580 nominalized +154618 nominalized +154624 nominalized +154671 nominalized +154716 nominalized +154720 nominalized +154750 nominalized +154822 nominalized +154832 nominalized +154870 nominalized +154884 nominalized +154886 nominalized +154896 nominalized +nominalized +154928 nominalized +154951 nominalized +154985 nominalized +155010 nominalized +155035 nominalized +155162 nominalized +155185 nominalized +155192 nominalized +155226 nominalized +155325 nominalized +155327 nominalized +155331 nominalized +155333 nominalized +155386 nominalized +155398 nominalized +155427 nominalized +155574 nominalized +nominalized +nominalized +nominalized +155594 nominalized +nominalized +155628 nominalized +nominalized +nominalized +155640 nominalized +155645 nominalized +nominalized +155653 nominalized +nominalized +155699 nominalized +155738 nominalized +155741 nominalized +155803 nominalized +nominalized +nominalized +155816 nominalized +155823 nominalized +nominalized +nominalized +155917 nominalized +155929 nominalized +155942 nominalized +155949 nominalized +155953 nominalized +155981 nominalized +156009 nominalized +156050 nominalized +156116 nominalized +156178 nominalized +156204 nominalized +156208 nominalized +156337 nominalized +156601 nominalized +nominalized +nominalized +156607 nominalized +nominalized +156706 nominalized +156710 nominalized +156714 nominalized +156723 nominalized +156750 nominalized +156754 nominalized +156756 nominalized +156758 nominalized +156784 nominalized +156790 nominalized +156802 nominalized +156808 nominalized +156814 nominalized +nominalized +156862 nominalized +156888 nominalized +156929 nominalized +156933 nominalized +156935 nominalized +nominalized +156944 nominalized +156976 nominalized +156985 nominalized +157089 nominalized +157141 nominalized +157175 nominalized +157273 nominalized +157283 nominalized +157288 nominalized +157316 nominalized +157336 nominalized +157439 nominalized +nominalized +157472 nominalized +157515 nominalized +157525 nominalized +157558 nominalized +157651 nominalized +157662 nominalized +157665 nominalized +157715 nominalized +157718 nominalized +157761 nominalized +157854 nominalized +158012 nominalized +158078 nominalized +158131 nominalized +158167 nominalized +158191 nominalized +158206 nominalized +158241 nominalized +158283 nominalized +nominalized +158380 nominalized +158386 nominalized +158393 nominalized +158422 nominalized +158492 nominalized +nominalized +158496 nominalized +158498 nominalized +nominalized +158506 nominalized +nominalized +158517 nominalized +158528 nominalized +158567 nominalized +158584 nominalized +158635 nominalized +158643 nominalized +158649 nominalized +nominalized +nominalized +158661 nominalized +158667 nominalized +158675 nominalized +158679 nominalized +158681 nominalized +158686 nominalized +158693 nominalized +158701 nominalized +158729 nominalized +158752 nominalized +158762 nominalized +158780 nominalized +nominalized +158799 nominalized +158807 nominalized +158812 nominalized +158832 nominalized +158838 nominalized +158895 nominalized +158900 nominalized +158910 nominalized +158914 nominalized +158970 nominalized +158993 nominalized +159028 nominalized +159098 nominalized +nominalized +nominalized +159109 nominalized +159172 nominalized +nominalized +159202 nominalized +nominalized +nominalized +159268 nominalized +159275 nominalized +159285 nominalized +nominalized +159304 nominalized +159350 nominalized +159361 nominalized +159365 nominalized +159392 nominalized +159396 nominalized +159410 nominalized +159458 nominalized +159466 nominalized +159534 nominalized +159540 nominalized +159560 nominalized +159570 nominalized +159584 nominalized +159643 nominalized +159647 nominalized +159851 nominalized +159882 nominalized +159927 nominalized +159929 nominalized +159936 nominalized +159938 nominalized +nominalized +159959 nominalized +159970 nominalized +159994 nominalized +159996 nominalized +159998 nominalized +160002 nominalized +160018 nominalized +160028 nominalized +160030 nominalized +160035 nominalized +nominalized +nominalized +160039 nominalized +160133 nominalized +160139 nominalized +160148 nominalized +160164 nominalized +160171 nominalized +160179 nominalized +160183 nominalized +160209 nominalized +160214 nominalized +160234 nominalized +160240 nominalized +160245 nominalized +nominalized +nominalized +160253 nominalized +160255 nominalized +160265 nominalized +160276 nominalized +160360 nominalized +160377 nominalized +nominalized +160385 nominalized +160416 nominalized +nominalized +160422 nominalized +160436 nominalized +160445 nominalized +160471 nominalized +160504 nominalized +160547 nominalized +160577 nominalized +160585 nominalized +160588 nominalized +nominalized +nominalized +160598 nominalized +160609 nominalized +160620 nominalized +160630 nominalized +160638 nominalized +nominalized +nominalized +nominalized +160697 nominalized +160703 nominalized +160848 nominalized +160880 nominalized +nominalized +160906 nominalized +161001 nominalized +161058 nominalized +161066 nominalized +161085 nominalized +161249 nominalized +161260 nominalized +nominalized +161308 nominalized +161314 nominalized +nominalized +161317 nominalized +161322 nominalized +nominalized +161374 nominalized +161381 nominalized +161399 nominalized +161402 nominalized +161439 nominalized +161452 nominalized +161470 nominalized +161475 nominalized +161533 nominalized +161547 nominalized +161569 nominalized +161664 nominalized +161732 nominalized +161740 nominalized +161965 nominalized +162013 nominalized +nominalized +nominalized +nominalized +162023 nominalized +nominalized +nominalized +162049 nominalized +162117 nominalized +nominalized +nominalized +nominalized +162125 nominalized +nominalized +nominalized +162178 nominalized +162180 nominalized +162244 nominalized +162272 nominalized +162319 nominalized +162334 nominalized +162356 nominalized +162422 nominalized +162516 nominalized +162581 nominalized +162636 nominalized +162647 nominalized +nominalized +nominalized +162659 nominalized +162665 nominalized +162690 nominalized +162696 nominalized +162717 nominalized +162747 nominalized +162804 nominalized +162810 nominalized +162824 nominalized +162899 nominalized +nominalized +nominalized +nominalized +162908 nominalized +nominalized +nominalized +162929 nominalized +nominalized +162982 nominalized +163012 nominalized +163049 nominalized +163083 nominalized +163092 nominalized +163100 nominalized +163118 nominalized +163132 nominalized +163135 nominalized +163189 nominalized +163203 nominalized +163235 nominalized +nominalized +163265 nominalized +nominalized +nominalized +nominalized +163288 nominalized +163296 nominalized +163302 nominalized +163308 nominalized +163314 nominalized +163322 nominalized +163399 nominalized +163438 nominalized +163478 nominalized +163529 nominalized +163550 nominalized +nominalized +163553 nominalized +163582 nominalized +163606 nominalized +163618 nominalized +nominalized +nominalized +163713 nominalized +163748 nominalized +nominalized +163801 nominalized +163859 nominalized +nominalized +163875 nominalized +163883 nominalized +163915 nominalized +nominalized +nominalized +nominalized +163923 nominalized +nominalized +nominalized +163956 nominalized +164065 nominalized +164077 nominalized +164134 nominalized +164137 nominalized +164146 nominalized +164184 nominalized +164199 nominalized +164234 nominalized +164239 nominalized +164265 nominalized +164348 nominalized +164350 nominalized +nominalized +164387 nominalized +164530 nominalized +164536 nominalized +nominalized +164573 nominalized +164575 nominalized +164577 nominalized +164644 nominalized +164657 nominalized +164659 nominalized +164661 nominalized +164683 nominalized +164691 nominalized +164697 nominalized +164699 nominalized +nominalized +164737 nominalized +164748 nominalized +164760 nominalized +164783 nominalized +164788 nominalized +164828 nominalized +164838 nominalized +nominalized +nominalized +164853 nominalized +164869 nominalized +164871 nominalized +164949 nominalized +165007 nominalized +165111 nominalized +165284 nominalized +nominalized +165287 nominalized +nominalized +165327 nominalized +165357 nominalized +165398 nominalized +nominalized +nominalized +165402 nominalized +nominalized +165426 nominalized +165450 nominalized +165455 nominalized +nominalized +nominalized +nominalized +165462 nominalized +nominalized +nominalized +165483 nominalized +165487 nominalized +nominalized +nominalized +nominalized +165494 nominalized +nominalized +nominalized +165514 nominalized +165520 nominalized +165534 nominalized +165542 nominalized +165547 nominalized +165558 nominalized +165591 nominalized +165599 nominalized +165649 nominalized +nominalized +165652 nominalized +165713 nominalized +165762 nominalized +165777 nominalized +165799 nominalized +165805 nominalized +165812 nominalized +165837 nominalized +165871 nominalized +165933 nominalized +165992 nominalized +166002 nominalized +166033 nominalized +166041 nominalized +166071 nominalized +166075 nominalized +166093 nominalized +nominalized +166365 nominalized +166436 nominalized +166438 nominalized +166450 nominalized +166456 nominalized +166464 nominalized +nominalized +166478 nominalized +166506 nominalized +166516 nominalized +166520 nominalized +166545 nominalized +166632 nominalized +166695 nominalized +166700 nominalized +166703 nominalized +166705 nominalized +166717 nominalized +166727 nominalized +166735 nominalized +166762 nominalized +166801 nominalized +166838 nominalized +166849 nominalized +166851 nominalized +166854 nominalized +166880 nominalized +166883 nominalized +166887 nominalized +166906 nominalized +166916 nominalized +166923 nominalized +166925 nominalized +167003 nominalized +167009 nominalized +167019 nominalized +167092 nominalized +167094 nominalized +167115 nominalized +167128 nominalized +167172 nominalized +167174 nominalized +167217 nominalized +167233 nominalized +167323 nominalized +167329 nominalized +167337 nominalized +167346 nominalized +167448 nominalized +167469 nominalized +167486 nominalized +167534 nominalized +167553 nominalized +167593 nominalized +167624 nominalized +167640 nominalized +167646 nominalized +167797 nominalized +167825 nominalized +167828 nominalized +nominalized +nominalized +167890 nominalized +167912 nominalized +167958 nominalized +168038 nominalized +168106 nominalized +168158 nominalized +168226 nominalized +168266 nominalized +168294 nominalized +168309 nominalized +nominalized +168347 nominalized +168356 nominalized +168375 nominalized +168381 nominalized +168397 nominalized +168461 nominalized +168588 nominalized +168595 nominalized +168604 nominalized +168608 nominalized +168610 nominalized +168615 nominalized +168662 nominalized +168672 nominalized +168734 nominalized +168775 nominalized +168837 nominalized +168858 nominalized +168866 nominalized +168877 nominalized +168879 nominalized +168884 nominalized +168911 nominalized +nominalized +168943 nominalized +168967 nominalized +168970 nominalized +169038 nominalized +169087 nominalized +169105 nominalized +169120 nominalized +169196 nominalized +169256 nominalized +169297 nominalized +169330 nominalized +169348 nominalized +169404 nominalized +169490 nominalized +169568 nominalized +169744 nominalized +169747 nominalized +169761 nominalized +169809 nominalized +169886 nominalized +169940 nominalized +169952 nominalized +169958 nominalized +170109 nominalized +170159 nominalized +170162 nominalized +170207 nominalized +170213 nominalized +170283 nominalized +170301 nominalized +170334 nominalized +nominalized +170342 nominalized +170374 nominalized +170393 nominalized +170404 nominalized +170484 nominalized +170505 nominalized +170537 nominalized +170582 nominalized +170586 nominalized +170603 nominalized +170632 nominalized +170716 nominalized +nominalized +170721 nominalized +nominalized +nominalized +nominalized +170784 nominalized +170798 nominalized +170848 nominalized +170855 nominalized +170858 nominalized +nominalized +170881 nominalized +170893 nominalized +170932 nominalized +nominalized +170995 nominalized +171005 nominalized +171019 nominalized +171025 nominalized +171029 nominalized +nominalized +171052 nominalized +171059 nominalized +171085 nominalized +171091 nominalized +nominalized +171154 nominalized +nominalized +nominalized +171163 nominalized +171165 nominalized +171167 nominalized +nominalized +nominalized +171171 nominalized +171233 nominalized +171237 nominalized +nominalized +171414 nominalized +171426 nominalized +171521 nominalized +171564 nominalized +171580 nominalized +171593 nominalized +171595 nominalized +171608 nominalized +171611 nominalized +171632 nominalized +171650 nominalized +nominalized +171665 nominalized +171693 nominalized +171732 nominalized +171820 nominalized +171830 nominalized +171904 nominalized +171938 nominalized +171979 nominalized +172015 nominalized +172142 nominalized +nominalized +172190 nominalized +172217 nominalized +172219 nominalized +172247 nominalized +172314 nominalized +172322 nominalized +nominalized +172353 nominalized +172380 nominalized +172436 nominalized +nominalized +172439 nominalized +172457 nominalized +172460 nominalized +172502 nominalized +172536 nominalized +172547 nominalized +172629 nominalized +172678 nominalized +172777 nominalized +nominalized +172787 nominalized +172799 nominalized +172810 nominalized +nominalized +nominalized +172834 nominalized +172859 nominalized +172944 nominalized +172957 nominalized +172959 nominalized +nominalized +nominalized +172976 nominalized +172997 nominalized +172999 nominalized +173004 nominalized +173008 nominalized +173035 nominalized +173063 nominalized +173113 nominalized +173147 nominalized +173254 nominalized +173279 nominalized +173303 nominalized +173317 nominalized +173677 nominalized +173755 nominalized +nominalized +nominalized +173763 nominalized +nominalized +nominalized +173775 nominalized +173793 nominalized +173832 nominalized +173834 nominalized +173870 nominalized +173872 nominalized +173895 nominalized +173946 nominalized +173963 nominalized +173973 nominalized +174002 nominalized +174051 nominalized +174142 nominalized +174145 nominalized +174319 nominalized +nominalized +nominalized +nominalized +174330 nominalized +nominalized +nominalized +nominalized +174337 nominalized +174348 nominalized +174362 nominalized +nominalized +174372 nominalized +nominalized +174381 nominalized +174396 nominalized +174402 nominalized +174426 nominalized +174451 nominalized +174471 nominalized +174483 nominalized +174539 nominalized +174594 nominalized +nominalized +174607 nominalized +nominalized +nominalized +nominalized +nominalized +174657 nominalized +nominalized +174660 nominalized +174738 nominalized +nominalized +nominalized +174772 nominalized +174794 nominalized +174801 nominalized +174850 nominalized +174883 nominalized +174912 nominalized +174920 nominalized +174966 nominalized +nominalized +nominalized +175002 nominalized +175004 nominalized +175007 nominalized +175016 nominalized +nominalized +nominalized +175021 nominalized +175023 nominalized +175026 nominalized +175031 nominalized +175039 nominalized +175059 nominalized +175072 nominalized +nominalized +nominalized +nominalized +175080 nominalized +nominalized +nominalized +175245 nominalized +175283 nominalized +175329 nominalized +175332 nominalized +175338 nominalized +175345 nominalized +175425 nominalized +175428 nominalized +175441 nominalized +175513 nominalized +175526 nominalized +175528 nominalized +175544 nominalized +nominalized +175551 nominalized +175553 nominalized +175739 nominalized +175742 nominalized +175744 nominalized +175746 nominalized +175805 nominalized +175807 nominalized +175809 nominalized +175875 nominalized +175931 nominalized +176038 nominalized +176147 nominalized +176245 nominalized +176266 nominalized +176297 nominalized +176314 nominalized +176323 nominalized +176331 nominalized +176366 nominalized +176426 nominalized +176467 nominalized +176484 nominalized +176493 nominalized +176525 nominalized +176537 nominalized +176540 nominalized +176575 nominalized +176579 nominalized +176594 nominalized +nominalized +176600 nominalized +176617 nominalized +176621 nominalized +176647 nominalized +176752 nominalized +176838 nominalized +nominalized +176947 nominalized +nominalized +176962 nominalized +176969 nominalized +177031 nominalized +177038 nominalized +177048 nominalized +177059 nominalized +177104 nominalized +177125 nominalized +177145 nominalized +177192 nominalized +177208 nominalized +177241 nominalized +177273 nominalized +177286 nominalized +177446 nominalized +177474 nominalized +177477 nominalized +nominalized +nominalized +177506 nominalized +177614 nominalized +177785 nominalized +177797 nominalized +177817 nominalized +177892 nominalized +177898 nominalized +177902 nominalized +177945 nominalized +177988 nominalized +178046 nominalized +178048 nominalized +178065 nominalized +178073 nominalized +178075 nominalized +178123 nominalized +178134 nominalized +178174 nominalized +178200 nominalized +178217 nominalized +178258 nominalized +178274 nominalized +178276 nominalized +178293 nominalized +nominalized +178305 nominalized +178315 nominalized +178325 nominalized +178373 nominalized +178392 nominalized +178466 nominalized +178477 nominalized +178521 nominalized +178528 nominalized +178575 nominalized +178592 nominalized +178599 nominalized +178605 nominalized +178636 nominalized +178656 nominalized +178662 nominalized +178694 nominalized +178699 nominalized +178706 nominalized +178713 nominalized +178728 nominalized +nominalized +178774 nominalized +178788 nominalized +178901 nominalized +178929 nominalized +178948 nominalized +178951 nominalized +178955 nominalized +178970 nominalized +179025 nominalized +179045 nominalized +179048 nominalized +179051 nominalized +179157 nominalized +179176 nominalized +179294 nominalized +179345 nominalized +179363 nominalized +179366 nominalized +179405 nominalized +179463 nominalized +179472 nominalized +179507 nominalized +179522 nominalized +179586 nominalized +179598 nominalized +179604 nominalized +179628 nominalized +179640 nominalized +179645 nominalized +179651 nominalized +179716 nominalized +179719 nominalized +179729 nominalized +nominalized +179737 nominalized +179743 nominalized +179799 nominalized +179805 nominalized +179863 nominalized +nominalized +179880 nominalized +179892 nominalized +179901 nominalized +179904 nominalized +179929 nominalized +179941 nominalized +179948 nominalized +179953 nominalized +179982 nominalized +179987 nominalized +180048 nominalized +180053 nominalized +180057 nominalized +180085 nominalized +180109 nominalized +180135 nominalized +180193 nominalized +180254 nominalized +180306 nominalized +180342 nominalized +180352 nominalized +180489 nominalized +180499 nominalized +180538 nominalized +180557 nominalized +180560 nominalized +180564 nominalized +180584 nominalized +180589 nominalized +180631 nominalized +180642 nominalized +nominalized +180689 nominalized +180702 nominalized +180711 nominalized +180978 nominalized +nominalized +nominalized +181031 nominalized +181091 nominalized +181098 nominalized +181127 nominalized +181136 nominalized +181182 nominalized +181201 nominalized +nominalized +181294 nominalized +181337 nominalized +181449 nominalized +nominalized +181503 nominalized +181511 nominalized +181535 nominalized +181565 nominalized +nominalized +181572 nominalized +181636 nominalized +181676 nominalized +181685 nominalized +181714 nominalized +181811 nominalized +181826 nominalized +181833 nominalized +181846 nominalized +181881 nominalized +181930 nominalized +181948 nominalized +181978 nominalized +182004 nominalized +182037 nominalized +182040 nominalized +182075 nominalized +182081 nominalized +182166 nominalized +182184 nominalized +182195 nominalized +182200 nominalized +182220 nominalized +nominalized +182238 nominalized +182282 nominalized +182303 nominalized +182342 nominalized +182370 nominalized +182374 nominalized +182390 nominalized +182396 nominalized +182406 nominalized +182427 nominalized +182439 nominalized +182475 nominalized +182481 nominalized +182543 nominalized +182551 nominalized +182576 nominalized +182583 nominalized +182586 nominalized +182590 nominalized +182595 nominalized +182604 nominalized +182613 nominalized +182618 nominalized +182635 nominalized +182642 nominalized +182650 nominalized +182663 nominalized +182734 nominalized +182743 nominalized +nominalized +182766 nominalized +182883 nominalized +182888 nominalized +182894 nominalized +182908 nominalized +nominalized +nominalized +182931 nominalized +182936 nominalized +182941 nominalized +182945 nominalized +nominalized +182976 nominalized +183002 nominalized +183055 nominalized +183094 nominalized +183107 nominalized +183120 nominalized +183141 nominalized +183174 nominalized +183248 nominalized +183265 nominalized +183289 nominalized +183306 nominalized +nominalized +183326 nominalized +183334 nominalized +183344 nominalized +183361 nominalized +183367 nominalized +183426 nominalized +183432 nominalized +183506 nominalized +183552 nominalized +183566 nominalized +183577 nominalized +183610 nominalized +183651 nominalized +183666 nominalized +183677 nominalized +nominalized +183689 nominalized +183693 nominalized +183732 nominalized +183742 nominalized +nominalized +183755 nominalized +183758 nominalized +183774 nominalized +183776 nominalized +183785 nominalized +183806 nominalized +183835 nominalized +183850 nominalized +183885 nominalized +183906 nominalized +183914 nominalized +183926 nominalized +183930 nominalized +183950 nominalized +nominalized +183976 nominalized +183983 nominalized +183985 nominalized +183987 nominalized +nominalized +184002 nominalized +184007 nominalized +184009 nominalized +nominalized +184051 nominalized +184160 nominalized +184174 nominalized +184265 nominalized +184303 nominalized +184306 nominalized +184322 nominalized +184332 nominalized +184349 nominalized +184352 nominalized +184377 nominalized +184393 nominalized +184402 nominalized +184410 nominalized +184421 nominalized +184450 nominalized +184454 nominalized +nominalized +184458 nominalized +184463 nominalized +184483 nominalized +184518 nominalized +184619 nominalized +184630 nominalized +184680 nominalized +184690 nominalized +184720 nominalized +184725 nominalized +184751 nominalized +184762 nominalized +184770 nominalized +184788 nominalized +184896 nominalized +184905 nominalized +184955 nominalized +184993 nominalized +nominalized +nominalized +185003 nominalized +185022 nominalized +185050 nominalized +185052 nominalized +185083 nominalized +185098 nominalized +185101 nominalized +185107 nominalized +nominalized +185131 nominalized +185138 nominalized +185147 nominalized +185159 nominalized +185172 nominalized +185186 nominalized +185193 nominalized +185205 nominalized +185268 nominalized +185314 nominalized +185358 nominalized +185376 nominalized +nominalized +nominalized +nominalized +185386 nominalized +nominalized +nominalized +185390 nominalized +185394 nominalized +185422 nominalized +nominalized +185432 nominalized +185442 nominalized +185501 nominalized +185521 nominalized +185599 nominalized +185645 nominalized +185692 nominalized +nominalized +185701 nominalized +185718 nominalized +nominalized +185735 nominalized +185776 nominalized +185807 nominalized +185811 nominalized +185816 nominalized +185818 nominalized +185847 nominalized +185939 nominalized +nominalized +nominalized +185955 nominalized +nominalized +185967 nominalized +185973 nominalized +186059 nominalized +186130 nominalized +186132 nominalized +nominalized +186136 nominalized +186139 nominalized +186145 nominalized +186153 nominalized +186169 nominalized +186177 nominalized +186185 nominalized +nominalized +186242 nominalized +186249 nominalized +186301 nominalized +186330 nominalized +186357 nominalized +186365 nominalized +186387 nominalized +186391 nominalized +186395 nominalized +186429 nominalized +186479 nominalized +186539 nominalized +186561 nominalized +186567 nominalized +186590 nominalized +186625 nominalized +186636 nominalized +186639 nominalized +186646 nominalized +186752 nominalized +186811 nominalized +186854 nominalized +186863 nominalized +186891 nominalized +186926 nominalized +187010 nominalized +187023 nominalized +187050 nominalized +187071 nominalized +187087 nominalized +187094 nominalized +nominalized +187098 nominalized +nominalized +187101 nominalized +nominalized +nominalized +187109 nominalized +nominalized +187126 nominalized +187141 nominalized +187144 nominalized +187183 nominalized +187185 nominalized +nominalized +187203 nominalized +187213 nominalized +187215 nominalized +187224 nominalized +187255 nominalized +nominalized +187294 nominalized +187299 nominalized +187319 nominalized +187351 nominalized +187372 nominalized +nominalized +187377 nominalized +187418 nominalized +187529 nominalized +187536 nominalized +187542 nominalized +187571 nominalized +187588 nominalized +nominalized +187639 nominalized +nominalized +187669 nominalized +187675 nominalized +187683 nominalized +nominalized +187696 nominalized +187734 nominalized +187738 nominalized +187755 nominalized +187772 nominalized +187779 nominalized +187781 nominalized +187783 nominalized +187787 nominalized +187806 nominalized +187954 nominalized +187985 nominalized +187990 nominalized +nominalized +188006 nominalized +188044 nominalized +188068 nominalized +nominalized +188080 nominalized +188099 nominalized +188150 nominalized +188152 nominalized +188190 nominalized +188193 nominalized +188195 nominalized +188213 nominalized +188223 nominalized +188239 nominalized +nominalized +nominalized +188267 nominalized +nominalized +188273 nominalized +188292 nominalized +188311 nominalized +nominalized +188314 nominalized +nominalized +nominalized +nominalized +188410 nominalized +188414 nominalized +188450 nominalized +188455 nominalized +188458 nominalized +188467 nominalized +188473 nominalized +188480 nominalized +188506 nominalized +188515 nominalized +188544 nominalized +188585 nominalized +188610 nominalized +188637 nominalized +188645 nominalized +188652 nominalized +188656 nominalized +188662 nominalized +188711 nominalized +188714 nominalized +188738 nominalized +188819 nominalized +188851 nominalized +188893 nominalized +nominalized +nominalized +188927 nominalized +188955 nominalized +188976 nominalized +189006 nominalized +189045 nominalized +189062 nominalized +189092 nominalized +189103 nominalized +189105 nominalized +189110 nominalized +189118 nominalized +189132 nominalized +189147 nominalized +189160 nominalized +189177 nominalized +189240 nominalized +189422 nominalized +189466 nominalized +189486 nominalized +189513 nominalized +189520 nominalized +189732 nominalized +189768 nominalized +189783 nominalized +189792 nominalized +nominalized +189811 nominalized +189822 nominalized +189838 nominalized +189935 nominalized +190013 nominalized +190017 nominalized +190100 nominalized +nominalized +190106 nominalized +190109 nominalized +190111 nominalized +190113 nominalized +190145 nominalized +190153 nominalized +190157 nominalized +nominalized +nominalized +190166 nominalized +190185 nominalized +190207 nominalized +190246 nominalized +190349 nominalized +190380 nominalized +190407 nominalized +190420 nominalized +190431 nominalized +nominalized +190453 nominalized +nominalized +nominalized +nominalized +190461 nominalized +nominalized +nominalized +190509 nominalized +nominalized +190560 nominalized +190589 nominalized +190621 nominalized +190672 nominalized +190707 nominalized +190711 nominalized +190746 nominalized +nominalized +190749 nominalized +190803 nominalized +nominalized +nominalized +nominalized +190808 nominalized +190835 nominalized +190844 nominalized +190857 nominalized +190885 nominalized +190895 nominalized +nominalized +190906 nominalized +190921 nominalized +190960 nominalized +190967 nominalized +190999 nominalized +191063 nominalized +191112 nominalized +191147 nominalized +191177 nominalized +191186 nominalized +191222 nominalized +191242 nominalized +191251 nominalized +191311 nominalized +191321 nominalized +191324 nominalized +191340 nominalized +191342 nominalized +191345 nominalized +191361 nominalized +191369 nominalized +191385 nominalized +191390 nominalized +191392 nominalized +191402 nominalized +191428 nominalized +191437 nominalized +nominalized +nominalized +191443 nominalized +191467 nominalized +191533 nominalized +191539 nominalized +191623 nominalized +191636 nominalized +191675 nominalized +191716 nominalized +191895 nominalized +191898 nominalized +191900 nominalized +191902 nominalized +191908 nominalized +191915 nominalized +191948 nominalized +191983 nominalized +192037 nominalized +192114 nominalized +192231 nominalized +192249 nominalized +nominalized +192264 nominalized +192294 nominalized +192305 nominalized +192319 nominalized +192321 nominalized +nominalized +192326 nominalized +192374 nominalized +192442 nominalized +192449 nominalized +192520 nominalized +192523 nominalized +192528 nominalized +192532 nominalized +192560 nominalized +192588 nominalized +192701 nominalized +192719 nominalized +192743 nominalized +192761 nominalized +192771 nominalized +192782 nominalized +nominalized +192796 nominalized +192811 nominalized +192820 nominalized +nominalized +192850 nominalized +192857 nominalized +192879 nominalized +192915 nominalized +192923 nominalized +192950 nominalized +192969 nominalized +192981 nominalized +192996 nominalized +193003 nominalized +193016 nominalized +193022 nominalized +193030 nominalized +193034 nominalized +193043 nominalized +193057 nominalized +193073 nominalized +193076 nominalized +193083 nominalized +193086 nominalized +193090 nominalized +193098 nominalized +193103 nominalized +193142 nominalized +193207 nominalized +193214 nominalized +193224 nominalized +193228 nominalized +193230 nominalized +193353 nominalized +193375 nominalized +193414 nominalized +193533 nominalized +193569 nominalized +193578 nominalized +193750 nominalized +193772 nominalized +193843 nominalized +193855 nominalized +193882 nominalized +193888 nominalized +193947 nominalized +193952 nominalized +193967 nominalized +193982 nominalized +194009 nominalized +194016 nominalized +194019 nominalized +194058 nominalized +194064 nominalized +194066 nominalized +194069 nominalized +194141 nominalized +194169 nominalized +194171 nominalized +194239 nominalized +194251 nominalized +194257 nominalized +194271 nominalized +194278 nominalized +194284 nominalized +nominalized +194290 nominalized +194301 nominalized +194320 nominalized +194336 nominalized +194343 nominalized +194370 nominalized +194392 nominalized +194399 nominalized +194414 nominalized +194431 nominalized +194509 nominalized +194523 nominalized +194526 nominalized +194534 nominalized +194541 nominalized +194555 nominalized +194564 nominalized +194575 nominalized +194582 nominalized +194600 nominalized +194614 nominalized +194631 nominalized +194644 nominalized +194666 nominalized +194692 nominalized +194700 nominalized +194703 nominalized +194706 nominalized +194736 nominalized +194758 nominalized +194766 nominalized +194837 nominalized +194933 nominalized +194939 nominalized +194942 nominalized +194957 nominalized +194964 nominalized +195003 nominalized +195022 nominalized +195070 nominalized +195095 nominalized +195118 nominalized +195123 nominalized +195151 nominalized +195157 nominalized +195161 nominalized +195203 nominalized +195206 nominalized +195240 nominalized +195300 nominalized +195320 nominalized +195348 nominalized +195351 nominalized +195354 nominalized +195366 nominalized +195388 nominalized +195394 nominalized +195399 nominalized +195434 nominalized +195439 nominalized +195448 nominalized +195507 nominalized +195509 nominalized +195525 nominalized +195545 nominalized +195562 nominalized +195579 nominalized +195612 nominalized +nominalized +nominalized +195651 nominalized +195664 nominalized +195769 nominalized +195771 nominalized +nominalized +195785 nominalized +195818 nominalized +195828 nominalized +195909 nominalized +195941 nominalized +196029 nominalized +196050 nominalized +196058 nominalized +196097 nominalized +196101 nominalized +196162 nominalized +196168 nominalized +196177 nominalized +196182 nominalized +196198 nominalized +196207 nominalized +196225 nominalized +nominalized +nominalized +nominalized +196230 nominalized +nominalized +196257 nominalized +196273 nominalized +196281 nominalized +196301 nominalized +196324 nominalized +196329 nominalized +196369 nominalized +196384 nominalized +196454 nominalized +nominalized +196459 nominalized +196493 nominalized +196503 nominalized +196520 nominalized +196527 nominalized +196533 nominalized +196545 nominalized +196550 nominalized +196552 nominalized +196562 nominalized +196571 nominalized +nominalized +196593 nominalized +196602 nominalized +196645 nominalized +196656 nominalized +196660 nominalized +196691 nominalized +196710 nominalized +196714 nominalized +196731 nominalized +196735 nominalized +196743 nominalized +196758 nominalized +196766 nominalized +nominalized +196790 nominalized +196795 nominalized +nominalized +nominalized +nominalized +196802 nominalized +196807 nominalized +196810 nominalized +196814 nominalized +196861 nominalized +nominalized +196887 nominalized +nominalized +196908 nominalized +196911 nominalized +196936 nominalized +196943 nominalized +196945 nominalized +196958 nominalized +196969 nominalized +197011 nominalized +197013 nominalized +197058 nominalized +197088 nominalized +197097 nominalized +197100 nominalized +197110 nominalized +197114 nominalized +197118 nominalized +197145 nominalized +197214 nominalized +197231 nominalized +197238 nominalized +197303 nominalized +197323 nominalized +197338 nominalized +197343 nominalized +197386 nominalized +nominalized +197397 nominalized +197450 nominalized +197462 nominalized +197464 nominalized +197500 nominalized +197505 nominalized +197513 nominalized +197535 nominalized +197568 nominalized +197627 nominalized +197640 nominalized +197660 nominalized +197679 nominalized +197684 nominalized +197693 nominalized +197700 nominalized +197734 nominalized +197759 nominalized +nominalized +197773 nominalized +197779 nominalized +197806 nominalized +197819 nominalized +197827 nominalized +197852 nominalized +197872 nominalized +197877 nominalized +197883 nominalized +197893 nominalized +197912 nominalized +197925 nominalized +197988 nominalized +197990 nominalized +198032 nominalized +198035 nominalized +198104 nominalized +198144 nominalized +198149 nominalized +198162 nominalized +198177 nominalized +198179 nominalized +198186 nominalized +198192 nominalized +198282 nominalized +198291 nominalized +198319 nominalized +198381 nominalized +198386 nominalized +198389 nominalized +198421 nominalized +198480 nominalized +198506 nominalized +198512 nominalized +198526 nominalized +nominalized +198529 nominalized +198535 nominalized +198552 nominalized +198559 nominalized +198562 nominalized +198564 nominalized +198584 nominalized +198608 nominalized +198620 nominalized +198647 nominalized +198664 nominalized +198681 nominalized +198691 nominalized +198713 nominalized +198728 nominalized +198730 nominalized +198744 nominalized +198748 nominalized +198792 nominalized +198820 nominalized +198838 nominalized +198845 nominalized +198852 nominalized +198864 nominalized +198907 nominalized +198914 nominalized +198918 nominalized +nominalized +198922 nominalized +198931 nominalized +198939 nominalized +198943 nominalized +199072 nominalized +199225 nominalized +199246 nominalized +199256 nominalized +199260 nominalized +199342 nominalized +nominalized +199393 nominalized +nominalized +199432 nominalized +199462 nominalized +199472 nominalized +199501 nominalized +199509 nominalized +199537 nominalized +199545 nominalized +199555 nominalized +nominalized +199558 nominalized +199602 nominalized +199668 nominalized +199675 nominalized +199748 nominalized +199874 nominalized +199941 nominalized +199959 nominalized +199966 nominalized +200022 nominalized +200034 nominalized +200081 nominalized +200083 nominalized +200096 nominalized +nominalized +200134 nominalized +200152 nominalized +200192 nominalized +200232 nominalized +nominalized +200240 nominalized +200270 nominalized +200387 nominalized +200432 nominalized +200480 nominalized +200501 nominalized +nominalized +200618 nominalized +200622 nominalized +200662 nominalized +200688 nominalized +200721 nominalized +200759 nominalized +nominalized +200837 nominalized +nominalized +200843 nominalized +200852 nominalized +200922 nominalized +201031 nominalized +201085 nominalized +201109 nominalized +201113 nominalized +201121 nominalized +201152 nominalized +201168 nominalized +201231 nominalized +201245 nominalized +nominalized +nominalized +201249 nominalized +201308 nominalized +nominalized +nominalized +201315 nominalized +nominalized +201367 nominalized +201374 nominalized +201439 nominalized +201485 nominalized +201487 nominalized +201490 nominalized +201535 nominalized +201597 nominalized +201607 nominalized +nominalized +nominalized +201672 nominalized +201690 nominalized +201692 nominalized +201704 nominalized +201719 nominalized +201728 nominalized +201740 nominalized +201786 nominalized +201897 nominalized +201966 nominalized +nominalized +nominalized +202000 nominalized +202008 nominalized +202033 nominalized +202072 nominalized +202080 nominalized +202107 nominalized +202132 nominalized +202166 nominalized +202200 nominalized +202247 nominalized +202263 nominalized +202283 nominalized +202289 nominalized +202295 nominalized +202307 nominalized +202399 nominalized +202425 nominalized +202474 nominalized +202488 nominalized +202490 nominalized +202506 nominalized +202546 nominalized +202572 nominalized +202614 nominalized +202643 nominalized +202664 nominalized +202715 nominalized +202734 nominalized +202754 nominalized +202827 nominalized +202833 nominalized +202900 nominalized +202963 nominalized +202992 nominalized +203030 nominalized +203113 nominalized +203120 nominalized +203124 nominalized +203126 nominalized +203136 nominalized +203165 nominalized +203172 nominalized +203175 nominalized +203178 nominalized +203190 nominalized +203206 nominalized +203293 nominalized +203311 nominalized +nominalized +nominalized +203353 nominalized +203367 nominalized +203437 nominalized +203460 nominalized +203471 nominalized +203486 nominalized +nominalized +203492 nominalized +203494 nominalized +203530 nominalized +203541 nominalized +203558 nominalized +nominalized +203583 nominalized +nominalized +203590 nominalized +203603 nominalized +203661 nominalized +203695 nominalized +203722 nominalized +203767 nominalized +203772 nominalized +203832 nominalized +203850 nominalized +203853 nominalized +203891 nominalized +203893 nominalized +203896 nominalized +203908 nominalized +203910 nominalized +nominalized +203954 nominalized +nominalized +204008 nominalized +204015 nominalized +204021 nominalized +204032 nominalized +204072 nominalized +204077 nominalized +nominalized +204081 nominalized +204086 nominalized +204094 nominalized +204101 nominalized +204110 nominalized +204211 nominalized +204218 nominalized +204227 nominalized +204258 nominalized +204298 nominalized +nominalized +nominalized +204389 nominalized +204402 nominalized +204404 nominalized +204428 nominalized +204430 nominalized +nominalized +204477 nominalized +204506 nominalized +204524 nominalized +204534 nominalized +204554 nominalized +204567 nominalized +204574 nominalized +204600 nominalized +204638 nominalized +204741 nominalized +nominalized +204746 nominalized +204759 nominalized +204761 nominalized +204791 nominalized +204813 nominalized +204913 nominalized +205081 nominalized +205083 nominalized +205099 nominalized +205109 nominalized +205118 nominalized +205121 nominalized +205130 nominalized +205146 nominalized +205148 nominalized +205151 nominalized +nominalized +205155 nominalized +205177 nominalized +205179 nominalized +205214 nominalized +205231 nominalized +205337 nominalized +205367 nominalized +205397 nominalized +205400 nominalized +205407 nominalized +205436 nominalized +205439 nominalized +205453 nominalized +205455 nominalized +205467 nominalized +205500 nominalized +205519 nominalized +205560 nominalized +205562 nominalized +205597 nominalized +205600 nominalized +205628 nominalized +205640 nominalized +205756 nominalized +205767 nominalized +205771 nominalized +205778 nominalized +205802 nominalized +205836 nominalized +205838 nominalized +205913 nominalized +205920 nominalized +206026 nominalized +206228 nominalized +206250 nominalized +206266 nominalized +206324 nominalized +206328 nominalized +nominalized +206403 nominalized +nominalized +206493 nominalized +206602 nominalized +206630 nominalized +206657 nominalized +206698 nominalized +206721 nominalized +206729 nominalized +206736 nominalized +206784 nominalized +206795 nominalized +206852 nominalized +206855 nominalized +206874 nominalized +206888 nominalized +206915 nominalized +206941 nominalized +206975 nominalized +206983 nominalized +206985 nominalized +207042 nominalized +207113 nominalized +207229 nominalized +207244 nominalized +207286 nominalized +207378 nominalized +207439 nominalized +207491 nominalized +207575 nominalized +207587 nominalized +207604 nominalized +nominalized +207608 nominalized +207610 nominalized +nominalized +207622 nominalized +207677 nominalized +207681 nominalized +207695 nominalized +207699 nominalized +207707 nominalized +207717 nominalized +nominalized +207725 nominalized +207730 nominalized +207733 nominalized +207736 nominalized +207763 nominalized +207794 nominalized +207798 nominalized +207856 nominalized +207870 nominalized +207874 nominalized +207886 nominalized +nominalized +207961 nominalized +207964 nominalized +207973 nominalized +207975 nominalized +208009 nominalized +208018 nominalized +208033 nominalized +208043 nominalized +208046 nominalized +208050 nominalized +208063 nominalized +208078 nominalized +nominalized +208090 nominalized +208102 nominalized +208128 nominalized +208148 nominalized +208219 nominalized +208227 nominalized +208237 nominalized +208262 nominalized +208311 nominalized +208426 nominalized +nominalized +208440 nominalized +208445 nominalized +208454 nominalized +208465 nominalized +208473 nominalized +208480 nominalized +208617 nominalized +208659 nominalized +208710 nominalized +208719 nominalized +nominalized +208745 nominalized +208790 nominalized +208833 nominalized +208856 nominalized +208867 nominalized +208869 nominalized +208872 nominalized +208875 nominalized +208909 nominalized +208968 nominalized +208982 nominalized +208999 nominalized +209022 nominalized +209039 nominalized +nominalized +nominalized +209066 nominalized +209079 nominalized +209111 nominalized +209116 nominalized +209126 nominalized +209143 nominalized +nominalized +nominalized +nominalized +209151 nominalized +209176 nominalized +nominalized +209182 nominalized +209185 nominalized +nominalized +209193 nominalized +209203 nominalized +209215 nominalized +209240 nominalized +209262 nominalized +209291 nominalized +209306 nominalized +209316 nominalized +209324 nominalized +209367 nominalized +209376 nominalized +nominalized +209388 nominalized +209393 nominalized +209411 nominalized +209413 nominalized +209415 nominalized +209449 nominalized +209475 nominalized +209518 nominalized +209526 nominalized +nominalized +209536 nominalized +209544 nominalized +209552 nominalized +209567 nominalized +209586 nominalized +209642 nominalized +209652 nominalized +nominalized +209679 nominalized +209701 nominalized +209723 nominalized +209732 nominalized +209758 nominalized +nominalized +nominalized +209768 nominalized +209784 nominalized +209792 nominalized +209815 nominalized +209897 nominalized +209920 nominalized +209944 nominalized +209952 nominalized +209993 nominalized +210063 nominalized +210066 nominalized +210081 nominalized +210158 nominalized +210206 nominalized +210209 nominalized +210273 nominalized +210283 nominalized +210294 nominalized +210308 nominalized +210313 nominalized +210316 nominalized +210336 nominalized +210364 nominalized +210368 nominalized +nominalized +210371 nominalized +nominalized +210374 nominalized +210395 nominalized +210397 nominalized +210509 nominalized +210524 nominalized +210528 nominalized +210567 nominalized +210616 nominalized +210634 nominalized +210697 nominalized +210705 nominalized +210762 nominalized +nominalized +210775 nominalized +210782 nominalized +210822 nominalized +210824 nominalized +210827 nominalized +nominalized +210892 nominalized +210972 nominalized +210987 nominalized +210996 nominalized +211000 nominalized +211009 nominalized +211014 nominalized +211016 nominalized +nominalized +nominalized +211024 nominalized +211063 nominalized +211078 nominalized +211100 nominalized +211115 nominalized +211127 nominalized +211142 nominalized +211197 nominalized +211200 nominalized +211230 nominalized +211234 nominalized +211247 nominalized +211286 nominalized +211296 nominalized +211303 nominalized +211305 nominalized +211307 nominalized +nominalized +211326 nominalized +211329 nominalized +211333 nominalized +211397 nominalized +211415 nominalized +211421 nominalized +nominalized +211432 nominalized +211442 nominalized +nominalized +211517 nominalized +211523 nominalized +nominalized +211527 nominalized +nominalized +211557 nominalized +211602 nominalized +211689 nominalized +211705 nominalized +211710 nominalized +211716 nominalized +211724 nominalized +211732 nominalized +211746 nominalized +211759 nominalized +211771 nominalized +211777 nominalized +211838 nominalized +211886 nominalized +nominalized +nominalized +211963 nominalized +211996 nominalized +212008 nominalized +212017 nominalized +212022 nominalized +212062 nominalized +212081 nominalized +212086 nominalized +212099 nominalized +212216 nominalized +212243 nominalized +212256 nominalized +nominalized +212285 nominalized +212297 nominalized +212299 nominalized +212306 nominalized +212346 nominalized +212373 nominalized +212379 nominalized +212389 nominalized +212404 nominalized +nominalized +212418 nominalized +212433 nominalized +212445 nominalized +nominalized +212467 nominalized +212472 nominalized +212476 nominalized +212526 nominalized +212533 nominalized +212536 nominalized +212556 nominalized +212695 nominalized +212703 nominalized +212711 nominalized +nominalized +212716 nominalized +212739 nominalized +212751 nominalized +212753 nominalized +212761 nominalized +212768 nominalized +212797 nominalized +nominalized +212813 nominalized +212856 nominalized +212871 nominalized +212887 nominalized +212892 nominalized +212895 nominalized +212902 nominalized +212906 nominalized +212954 nominalized +212961 nominalized +212971 nominalized +212982 nominalized +213030 nominalized +213068 nominalized +nominalized +213092 nominalized +213098 nominalized +213114 nominalized +213145 nominalized +213149 nominalized +213160 nominalized +213163 nominalized +213221 nominalized +213253 nominalized +213316 nominalized +213340 nominalized +213358 nominalized +213364 nominalized +213367 nominalized +213374 nominalized +213379 nominalized +213389 nominalized +213395 nominalized +213402 nominalized +213409 nominalized +213420 nominalized +213428 nominalized +213448 nominalized +213451 nominalized +213456 nominalized +213470 nominalized +213475 nominalized +213488 nominalized +213502 nominalized +213511 nominalized +213537 nominalized +213540 nominalized +213567 nominalized +213593 nominalized +213623 nominalized +nominalized +nominalized +213669 nominalized +nominalized +213688 nominalized +213735 nominalized +213737 nominalized +213750 nominalized +213821 nominalized +213826 nominalized +213864 nominalized +213880 nominalized +213886 nominalized +nominalized +213929 nominalized +213958 nominalized +213967 nominalized +213982 nominalized +213985 nominalized +214028 nominalized +214137 nominalized +214158 nominalized +214161 nominalized +214209 nominalized +nominalized +214224 nominalized +214343 nominalized +214374 nominalized +214399 nominalized +214407 nominalized +214418 nominalized +214449 nominalized +214501 nominalized +nominalized +214524 nominalized +214591 nominalized +214676 nominalized +214753 nominalized +214764 nominalized +214799 nominalized +214817 nominalized +214830 nominalized +214844 nominalized +214861 nominalized +214878 nominalized +214883 nominalized +214892 nominalized +214956 nominalized +nominalized +214972 nominalized +214975 nominalized +214982 nominalized +215010 nominalized +215036 nominalized +215042 nominalized +215053 nominalized +215071 nominalized +215083 nominalized +215108 nominalized +215127 nominalized +215148 nominalized +215187 nominalized +215209 nominalized +215228 nominalized +215294 nominalized +215301 nominalized +215307 nominalized +215315 nominalized +215331 nominalized +215353 nominalized +215362 nominalized +215406 nominalized +nominalized +215418 nominalized +215422 nominalized +215449 nominalized +215513 nominalized +215529 nominalized +215549 nominalized +215557 nominalized +215566 nominalized +nominalized +215662 nominalized +215675 nominalized +215679 nominalized +215758 nominalized +nominalized +215775 nominalized +215791 nominalized +215801 nominalized +215838 nominalized +215843 nominalized +215858 nominalized +215865 nominalized +215867 nominalized +215878 nominalized +215883 nominalized +215900 nominalized +215915 nominalized +215929 nominalized +215932 nominalized +215967 nominalized +215971 nominalized +215981 nominalized +216000 nominalized +216011 nominalized +216018 nominalized +216023 nominalized +nominalized +216068 nominalized +216097 nominalized +216111 nominalized +216118 nominalized +216172 nominalized +216179 nominalized +216199 nominalized +216220 nominalized +216316 nominalized +216322 nominalized +216347 nominalized +216354 nominalized +216362 nominalized +216365 nominalized +216367 nominalized +216373 nominalized +216409 nominalized +216411 nominalized +216492 nominalized +nominalized +216519 nominalized +nominalized +216609 nominalized +216764 nominalized +216773 nominalized +216788 nominalized +216801 nominalized +216821 nominalized +216867 nominalized +216869 nominalized +216909 nominalized +216993 nominalized +217036 nominalized +217045 nominalized +217093 nominalized +217098 nominalized +217116 nominalized +217150 nominalized +217157 nominalized +217165 nominalized +217203 nominalized +217276 nominalized +217283 nominalized +217309 nominalized +217317 nominalized +217338 nominalized +nominalized +217341 nominalized +217349 nominalized +217359 nominalized +217429 nominalized +217431 nominalized +217433 nominalized +217477 nominalized +217664 nominalized +nominalized +217668 nominalized +217723 nominalized +217726 nominalized +217743 nominalized +217746 nominalized +217796 nominalized +217877 nominalized +217892 nominalized +217903 nominalized +217926 nominalized +217931 nominalized +217943 nominalized +217976 nominalized +217987 nominalized +218001 nominalized +218019 nominalized +218030 nominalized +218073 nominalized +nominalized +218085 nominalized +218106 nominalized +218114 nominalized +nominalized +218150 nominalized +218173 nominalized +218221 nominalized +218285 nominalized +218300 nominalized +218302 nominalized +218315 nominalized +218353 nominalized +218369 nominalized +218408 nominalized +218480 nominalized +218488 nominalized +218540 nominalized +218575 nominalized +218584 nominalized +218595 nominalized +218603 nominalized +218626 nominalized +218630 nominalized +218646 nominalized +218656 nominalized +218658 nominalized +218690 nominalized +218719 nominalized +218740 nominalized +218759 nominalized +218771 nominalized +218781 nominalized +218803 nominalized +218805 nominalized +218832 nominalized +218841 nominalized +218857 nominalized +218866 nominalized +218869 nominalized +218880 nominalized +218909 nominalized +218924 nominalized +218944 nominalized +218983 nominalized +219042 nominalized +219052 nominalized +219065 nominalized +219086 nominalized +nominalized +219090 nominalized +219110 nominalized +219161 nominalized +219179 nominalized +219193 nominalized +219216 nominalized +219258 nominalized +219275 nominalized +nominalized +nominalized +219290 nominalized +219306 nominalized +219317 nominalized +219358 nominalized +219391 nominalized +219428 nominalized +219485 nominalized +219510 nominalized +219521 nominalized +219626 nominalized +219645 nominalized +nominalized +219655 nominalized +nominalized +219670 nominalized +219701 nominalized +219708 nominalized +219716 nominalized +219734 nominalized +nominalized +219749 nominalized +219761 nominalized +219766 nominalized +219808 nominalized +219835 nominalized +219865 nominalized +219889 nominalized +219918 nominalized +219941 nominalized +219954 nominalized +219958 nominalized +220007 nominalized +220033 nominalized +220073 nominalized +220087 nominalized +220102 nominalized +220230 nominalized +220243 nominalized +220259 nominalized +220267 nominalized +220271 nominalized +220279 nominalized +220300 nominalized +220302 nominalized +220334 nominalized +220354 nominalized +220367 nominalized +nominalized +220397 nominalized +220403 nominalized +220455 nominalized +220486 nominalized +220491 nominalized +220498 nominalized +nominalized +220515 nominalized +220532 nominalized +220548 nominalized +220601 nominalized +220651 nominalized +220663 nominalized +220666 nominalized +220672 nominalized +220704 nominalized +220730 nominalized +220735 nominalized +220739 nominalized +220750 nominalized +220759 nominalized +220762 nominalized +220792 nominalized +220808 nominalized +nominalized +220827 nominalized +220833 nominalized +220883 nominalized +220903 nominalized +220909 nominalized +220938 nominalized +221023 nominalized +221029 nominalized +nominalized +221072 nominalized +221093 nominalized +221098 nominalized +221143 nominalized +221145 nominalized +221157 nominalized +221160 nominalized +221168 nominalized +221189 nominalized +nominalized +221197 nominalized +221207 nominalized +221212 nominalized +nominalized +nominalized +221244 nominalized +221302 nominalized +221304 nominalized +221316 nominalized +221331 nominalized +221356 nominalized +221368 nominalized +221379 nominalized +221382 nominalized +221408 nominalized +221436 nominalized +221443 nominalized +nominalized +221469 nominalized +221476 nominalized +nominalized +nominalized +221512 nominalized +nominalized +221534 nominalized +221556 nominalized +221569 nominalized +221589 nominalized +221591 nominalized +221599 nominalized +221604 nominalized +221617 nominalized +221624 nominalized +221686 nominalized +nominalized +221741 nominalized +221788 nominalized +221790 nominalized +221809 nominalized +221840 nominalized +221852 nominalized +221861 nominalized +221894 nominalized +221915 nominalized +221944 nominalized +221946 nominalized +221960 nominalized +221998 nominalized +222019 nominalized +222043 nominalized +222062 nominalized +222065 nominalized +nominalized +222109 nominalized +222124 nominalized +222156 nominalized +nominalized +222164 nominalized +222170 nominalized +222183 nominalized +222188 nominalized +222277 nominalized +222279 nominalized +222354 nominalized +nominalized +nominalized +222377 nominalized +222424 nominalized +222434 nominalized +222437 nominalized +222446 nominalized +222463 nominalized +222473 nominalized +222511 nominalized +nominalized +222561 nominalized +nominalized +222569 nominalized +222576 nominalized +nominalized +222594 nominalized +222599 nominalized +nominalized +222617 nominalized +222620 nominalized +222663 nominalized +nominalized +222675 nominalized +222680 nominalized +222686 nominalized +222688 nominalized +222720 nominalized +222733 nominalized +222780 nominalized +222796 nominalized +222822 nominalized +222919 nominalized +222936 nominalized +222943 nominalized +222947 nominalized +222961 nominalized +222966 nominalized +222978 nominalized +222997 nominalized +223035 nominalized +223071 nominalized +223141 nominalized +223172 nominalized +223203 nominalized +223254 nominalized +223259 nominalized +nominalized +223274 nominalized +223315 nominalized +223319 nominalized +223337 nominalized +223349 nominalized +nominalized +223358 nominalized +223363 nominalized +223372 nominalized +223376 nominalized +223378 nominalized +223383 nominalized +223395 nominalized +223404 nominalized +223407 nominalized +223452 nominalized +223461 nominalized +223472 nominalized +223495 nominalized +223509 nominalized +223522 nominalized +nominalized +nominalized +223526 nominalized +nominalized +223548 nominalized +223553 nominalized +223555 nominalized +223575 nominalized +223603 nominalized +223630 nominalized +223635 nominalized +223641 nominalized +223647 nominalized +223650 nominalized +nominalized +223739 nominalized +223809 nominalized +223825 nominalized +223869 nominalized +223897 nominalized +223900 nominalized +223909 nominalized +223917 nominalized +223928 nominalized +223960 nominalized +nominalized +224007 nominalized +224030 nominalized +224047 nominalized +224062 nominalized +224065 nominalized +224112 nominalized +nominalized +224163 nominalized +224172 nominalized +224177 nominalized +224189 nominalized +224194 nominalized +224198 nominalized +224204 nominalized +224255 nominalized +224260 nominalized +224264 nominalized +224271 nominalized +224276 nominalized +224294 nominalized +224324 nominalized +224334 nominalized +224350 nominalized +224355 nominalized +224358 nominalized +224364 nominalized +224366 nominalized +224373 nominalized +224378 nominalized +224423 nominalized +nominalized +224436 nominalized +224441 nominalized +nominalized +224444 nominalized +224447 nominalized +224453 nominalized +nominalized +224476 nominalized +nominalized +224486 nominalized +224529 nominalized +224600 nominalized +224628 nominalized +224647 nominalized +224654 nominalized +224657 nominalized +224699 nominalized +224728 nominalized +224786 nominalized +224818 nominalized +nominalized +224826 nominalized +nominalized +224877 nominalized +224883 nominalized +224905 nominalized +nominalized +nominalized +224910 nominalized +nominalized +224939 nominalized +224953 nominalized +224990 nominalized +224992 nominalized +225012 nominalized +225058 nominalized +225107 nominalized +225113 nominalized +225122 nominalized +225154 nominalized +225170 nominalized +225173 nominalized +225198 nominalized +225207 nominalized +225335 nominalized +nominalized +225341 nominalized +225343 nominalized +225349 nominalized +225362 nominalized +225371 nominalized +225380 nominalized +225384 nominalized +225389 nominalized +225391 nominalized +225393 nominalized +225395 nominalized +225401 nominalized +225406 nominalized +225414 nominalized +225450 nominalized +225512 nominalized +225517 nominalized +225543 nominalized +225552 nominalized +225559 nominalized +225597 nominalized +225638 nominalized +225643 nominalized +225653 nominalized +225665 nominalized +225685 nominalized +225741 nominalized +225764 nominalized +225802 nominalized +225823 nominalized +225826 nominalized +nominalized +225832 nominalized +nominalized +225859 nominalized +225877 nominalized +225882 nominalized +225885 nominalized +nominalized +nominalized +225895 nominalized +225900 nominalized +225903 nominalized +225906 nominalized +225920 nominalized +nominalized +nominalized +225939 nominalized +225943 nominalized +225945 nominalized +225951 nominalized +225955 nominalized +225959 nominalized +225995 nominalized +226010 nominalized +226012 nominalized +226066 nominalized +226068 nominalized +nominalized +226082 nominalized +226085 nominalized +226095 nominalized +226186 nominalized +226217 nominalized +nominalized +226221 nominalized +nominalized +226230 nominalized +226233 nominalized +226236 nominalized +226264 nominalized +nominalized +nominalized +226268 nominalized +nominalized +226285 nominalized +226292 nominalized +226306 nominalized +226308 nominalized +226311 nominalized +226331 nominalized +226345 nominalized +226347 nominalized +226368 nominalized +nominalized +226376 nominalized +226383 nominalized +226434 nominalized +226475 nominalized +226526 nominalized +226539 nominalized +226588 nominalized +226623 nominalized +226641 nominalized +226644 nominalized +226646 nominalized +nominalized +226654 nominalized +226658 nominalized +226663 nominalized +226676 nominalized +226744 nominalized +226747 nominalized +226761 nominalized +226763 nominalized +226788 nominalized +226822 nominalized +226847 nominalized +226865 nominalized +226869 nominalized +226893 nominalized +226918 nominalized +226945 nominalized +226947 nominalized +227062 nominalized +227120 nominalized +227134 nominalized +227257 nominalized +227293 nominalized +227296 nominalized +227301 nominalized +nominalized +227306 nominalized +227344 nominalized +227363 nominalized +227369 nominalized +227374 nominalized +227378 nominalized +227382 nominalized +227421 nominalized +227430 nominalized +227433 nominalized +227508 nominalized +227519 nominalized +227527 nominalized +227535 nominalized +227581 nominalized +227586 nominalized +227632 nominalized +227637 nominalized +227645 nominalized +227683 nominalized +227741 nominalized +227749 nominalized +227754 nominalized +227760 nominalized +227762 nominalized +227766 nominalized +227768 nominalized +227776 nominalized +227796 nominalized +227799 nominalized +227809 nominalized +227816 nominalized +227825 nominalized +227873 nominalized +227920 nominalized +227939 nominalized +227954 nominalized +227982 nominalized +228017 nominalized +228022 nominalized +228027 nominalized +228034 nominalized +228041 nominalized +228043 nominalized +228051 nominalized +228058 nominalized +228060 nominalized +228094 nominalized +228099 nominalized +nominalized +228161 nominalized +228213 nominalized +228229 nominalized +228232 nominalized +228265 nominalized +228270 nominalized +228304 nominalized +228332 nominalized +228342 nominalized +228345 nominalized +nominalized +228352 nominalized +228471 nominalized +228522 nominalized +228543 nominalized +228549 nominalized +228568 nominalized +228576 nominalized +228590 nominalized +228593 nominalized +228639 nominalized +228647 nominalized +228654 nominalized +228710 nominalized +228718 nominalized +228801 nominalized +228829 nominalized +228842 nominalized +228891 nominalized +228893 nominalized +228901 nominalized +228935 nominalized +228964 nominalized +228977 nominalized +229110 nominalized +229115 nominalized +229168 nominalized +229180 nominalized +229254 nominalized +229256 nominalized +229261 nominalized +229274 nominalized +229285 nominalized +229311 nominalized +229367 nominalized +229378 nominalized +nominalized +229386 nominalized +229404 nominalized +nominalized +nominalized +229413 nominalized +229416 nominalized +229475 nominalized +229478 nominalized +229515 nominalized +229580 nominalized +229583 nominalized +229603 nominalized +229607 nominalized +229612 nominalized +229619 nominalized +229622 nominalized +229648 nominalized +229666 nominalized +nominalized +229703 nominalized +229744 nominalized +229774 nominalized +229808 nominalized +229810 nominalized +229856 nominalized +229866 nominalized +229898 nominalized +229900 nominalized +229914 nominalized +230040 nominalized +230048 nominalized +230079 nominalized +230111 nominalized +230114 nominalized +230130 nominalized +230146 nominalized +230251 nominalized +230263 nominalized +230323 nominalized +230335 nominalized +230491 nominalized +230505 nominalized +230512 nominalized +nominalized +230516 nominalized +nominalized +230523 nominalized +230540 nominalized +230557 nominalized +230559 nominalized +nominalized +230674 nominalized +230681 nominalized +230722 nominalized +230833 nominalized +230852 nominalized +230859 nominalized +230883 nominalized +230893 nominalized +230897 nominalized +230941 nominalized +230947 nominalized +230953 nominalized +230959 nominalized +230965 nominalized +230994 nominalized +231024 nominalized +231061 nominalized +231068 nominalized +nominalized +nominalized +231095 nominalized +231101 nominalized +231105 nominalized +231115 nominalized +nominalized +231155 nominalized +231186 nominalized +231203 nominalized +nominalized +231215 nominalized +nominalized +231274 nominalized +231283 nominalized +231293 nominalized +231296 nominalized +231310 nominalized +231363 nominalized +231429 nominalized +231449 nominalized +231453 nominalized +231456 nominalized +231495 nominalized +231502 nominalized +231510 nominalized +231529 nominalized +231571 nominalized +231641 nominalized +231658 nominalized +231735 nominalized +231759 nominalized +231825 nominalized +231834 nominalized +231847 nominalized +231852 nominalized +231859 nominalized +231873 nominalized +231875 nominalized +231880 nominalized +231886 nominalized +231889 nominalized +231916 nominalized +231933 nominalized +nominalized +nominalized +231990 nominalized +232016 nominalized +232032 nominalized +232055 nominalized +232154 nominalized +232166 nominalized +232245 nominalized +232310 nominalized +232326 nominalized +232335 nominalized +232339 nominalized +232341 nominalized +232348 nominalized +232361 nominalized +232374 nominalized +232383 nominalized +232407 nominalized +232442 nominalized +232445 nominalized +nominalized +nominalized +232479 nominalized +232520 nominalized +232564 nominalized +232605 nominalized +232616 nominalized +232621 nominalized +232811 nominalized +232817 nominalized +nominalized +232838 nominalized +232877 nominalized +nominalized +232940 nominalized +232943 nominalized +232980 nominalized +233114 nominalized +233126 nominalized +233133 nominalized +233138 nominalized +233154 nominalized +233158 nominalized +233191 nominalized +233203 nominalized +233206 nominalized +233226 nominalized +233254 nominalized +233258 nominalized +233279 nominalized +233322 nominalized +233399 nominalized +233407 nominalized +233522 nominalized +233561 nominalized +233583 nominalized +233604 nominalized +233621 nominalized +233625 nominalized +233638 nominalized +nominalized +nominalized +nominalized +233643 nominalized +233657 nominalized +233687 nominalized +nominalized +233715 nominalized +233727 nominalized +233804 nominalized +233829 nominalized +233848 nominalized +233903 nominalized +233905 nominalized +233934 nominalized +233946 nominalized +233956 nominalized +233976 nominalized +234029 nominalized +nominalized +234035 nominalized +234041 nominalized +234158 nominalized +234164 nominalized +234186 nominalized +234188 nominalized +234194 nominalized +234253 nominalized +234277 nominalized +234311 nominalized +234362 nominalized +nominalized +234375 nominalized +234388 nominalized +234409 nominalized +234440 nominalized +234514 nominalized +234531 nominalized +234630 nominalized +234637 nominalized +234672 nominalized +234679 nominalized +234687 nominalized +234722 nominalized +234728 nominalized +234755 nominalized +234766 nominalized +234780 nominalized +234787 nominalized +234789 nominalized +nominalized +234796 nominalized +234848 nominalized +234850 nominalized +234908 nominalized +nominalized +234943 nominalized +234957 nominalized +234975 nominalized +234983 nominalized +235023 nominalized +235034 nominalized +235038 nominalized +235048 nominalized +nominalized +235075 nominalized +235127 nominalized +235166 nominalized +235180 nominalized +235201 nominalized +235205 nominalized +235208 nominalized +235214 nominalized +235284 nominalized +235313 nominalized +235352 nominalized +235375 nominalized +235382 nominalized +235389 nominalized +235393 nominalized +235411 nominalized +235418 nominalized +235471 nominalized +235479 nominalized +235537 nominalized +235539 nominalized +235550 nominalized +235559 nominalized +235582 nominalized +235654 nominalized +235699 nominalized +235758 nominalized +235761 nominalized +235767 nominalized +235771 nominalized +235811 nominalized +235816 nominalized +235828 nominalized +235833 nominalized +235881 nominalized +235894 nominalized +235929 nominalized +235964 nominalized +235967 nominalized +236005 nominalized +236045 nominalized +236226 nominalized +236305 nominalized +236343 nominalized +236352 nominalized +236362 nominalized +236432 nominalized +236457 nominalized +236461 nominalized +236464 nominalized +236541 nominalized +236672 nominalized +236676 nominalized +236679 nominalized +236686 nominalized +236694 nominalized +236697 nominalized +236700 nominalized +236749 nominalized +236754 nominalized +236762 nominalized +236784 nominalized +nominalized +236807 nominalized +236826 nominalized +236842 nominalized +236899 nominalized +236907 nominalized +236969 nominalized +236983 nominalized +236987 nominalized +237040 nominalized +237043 nominalized +237064 nominalized +237117 nominalized +237140 nominalized +237154 nominalized +237158 nominalized +237163 nominalized +237193 nominalized +237243 nominalized +237283 nominalized +237298 nominalized +237314 nominalized +237320 nominalized +237372 nominalized +237380 nominalized +nominalized +237435 nominalized +237438 nominalized +237444 nominalized +237448 nominalized +237539 nominalized +nominalized +237545 nominalized +237547 nominalized +237549 nominalized +237581 nominalized +237606 nominalized +nominalized +nominalized +237657 nominalized +237766 nominalized +237781 nominalized +237810 nominalized +237876 nominalized +nominalized +237908 nominalized +nominalized +238007 nominalized +238068 nominalized +238070 nominalized +238118 nominalized +238120 nominalized +238138 nominalized +238148 nominalized +238173 nominalized +238191 nominalized +238193 nominalized +nominalized +238297 nominalized +238368 nominalized +238391 nominalized +238403 nominalized +238426 nominalized +238433 nominalized +238436 nominalized +238456 nominalized +238468 nominalized +238493 nominalized +238549 nominalized +238608 nominalized +nominalized +238645 nominalized +238648 nominalized +238671 nominalized +238678 nominalized +238695 nominalized +238706 nominalized +238712 nominalized +238726 nominalized +238738 nominalized +238756 nominalized +238768 nominalized +238774 nominalized +238794 nominalized +238815 nominalized +238920 nominalized +238939 nominalized +nominalized +238950 nominalized +239003 nominalized +239057 nominalized +nominalized +239068 nominalized +239071 nominalized +239077 nominalized +239099 nominalized +239116 nominalized +239142 nominalized +239174 nominalized +239180 nominalized +239185 nominalized +239191 nominalized +239217 nominalized +239221 nominalized +239251 nominalized +239270 nominalized +239276 nominalized +239283 nominalized +239311 nominalized +nominalized +239346 nominalized +nominalized +nominalized +239433 nominalized +239447 nominalized +nominalized +239537 nominalized +239544 nominalized +239546 nominalized +239549 nominalized +239551 nominalized +239572 nominalized +239608 nominalized +nominalized +239623 nominalized +239645 nominalized +239656 nominalized +239663 nominalized +239673 nominalized +239687 nominalized +239741 nominalized +239750 nominalized +239770 nominalized +239782 nominalized +239799 nominalized +239802 nominalized +239821 nominalized +239892 nominalized +239907 nominalized +239914 nominalized +239919 nominalized +240012 nominalized +240015 nominalized +240025 nominalized +240030 nominalized +240039 nominalized +240081 nominalized +240095 nominalized +240107 nominalized +240118 nominalized +240130 nominalized +240179 nominalized +240208 nominalized +240242 nominalized +240245 nominalized +240247 nominalized +240264 nominalized +240279 nominalized +240302 nominalized +240308 nominalized +240317 nominalized +240323 nominalized +240327 nominalized +240339 nominalized +240347 nominalized +240407 nominalized +240429 nominalized +240436 nominalized +240445 nominalized +240467 nominalized +240476 nominalized +240490 nominalized +240497 nominalized +240525 nominalized +240531 nominalized +nominalized +240568 nominalized +240590 nominalized +240594 nominalized +240635 nominalized +240652 nominalized +240655 nominalized +240665 nominalized +240675 nominalized +240687 nominalized +240699 nominalized +240784 nominalized +240792 nominalized +240823 nominalized +240832 nominalized +240845 nominalized +240857 nominalized +240868 nominalized +240878 nominalized +240907 nominalized +240914 nominalized +240935 nominalized +240943 nominalized +240962 nominalized +240972 nominalized +241022 nominalized +241036 nominalized +241038 nominalized +241042 nominalized +241049 nominalized +241076 nominalized +241150 nominalized +241164 nominalized +241228 nominalized +241254 nominalized +241256 nominalized +241307 nominalized +241315 nominalized +241348 nominalized +241365 nominalized +241400 nominalized +241412 nominalized +241431 nominalized +241441 nominalized +241507 nominalized +241512 nominalized +241520 nominalized +241526 nominalized +241591 nominalized +241605 nominalized +241613 nominalized +241651 nominalized +241742 nominalized +241769 nominalized +241979 nominalized +242054 nominalized +242063 nominalized +242076 nominalized +242112 nominalized +242120 nominalized +242130 nominalized +242142 nominalized +242172 nominalized +242192 nominalized +242243 nominalized +242251 nominalized +242256 nominalized +242302 nominalized +242304 nominalized +242431 nominalized +242453 nominalized +242457 nominalized +242464 nominalized +242481 nominalized +242492 nominalized +242557 nominalized +nominalized +nominalized +nominalized +242576 nominalized +242580 nominalized +242586 nominalized +nominalized +242645 nominalized +242648 nominalized +nominalized +242654 nominalized +242734 nominalized +242739 nominalized +242742 nominalized +242762 nominalized +242764 nominalized +242821 nominalized +242951 nominalized +242973 nominalized +243010 nominalized +243020 nominalized +243034 nominalized +243042 nominalized +nominalized +243071 nominalized +243102 nominalized +243136 nominalized +243148 nominalized +243150 nominalized +243160 nominalized +243169 nominalized +243179 nominalized +243182 nominalized +nominalized +243195 nominalized +243203 nominalized +243209 nominalized +243223 nominalized +243258 nominalized +243269 nominalized +243311 nominalized +243326 nominalized +243328 nominalized +nominalized +nominalized +nominalized +nominalized +nominalized +243343 nominalized +243364 nominalized +243366 nominalized +nominalized +243378 nominalized +nominalized +243407 nominalized +243456 nominalized +243584 nominalized +243593 nominalized +243596 nominalized +243605 nominalized +243624 nominalized +243640 nominalized +243648 nominalized +243658 nominalized +243708 nominalized +243717 nominalized +nominalized +243734 nominalized +243742 nominalized +243798 nominalized +243878 nominalized +243880 nominalized +243887 nominalized +243910 nominalized +243913 nominalized +243921 nominalized +243931 nominalized +243944 nominalized +243956 nominalized +nominalized +243964 nominalized +243977 nominalized +243985 nominalized +244000 nominalized +244025 nominalized +244092 nominalized +244124 nominalized +244130 nominalized +244148 nominalized +244158 nominalized +244183 nominalized +244215 nominalized +nominalized +244219 nominalized +244233 nominalized +nominalized +244246 nominalized +244289 nominalized +244362 nominalized +nominalized +244370 nominalized +244399 nominalized +244404 nominalized +244430 nominalized +244454 nominalized +244496 nominalized +244499 nominalized +nominalized +244566 nominalized +nominalized +nominalized +244591 nominalized +nominalized +244629 nominalized +244635 nominalized +244651 nominalized +244668 nominalized +244688 nominalized +244707 nominalized +244716 nominalized +244718 nominalized +244727 nominalized +244812 nominalized +244887 nominalized +244909 nominalized +244931 nominalized +244981 nominalized +244991 nominalized +244996 nominalized +245001 nominalized +245057 nominalized +245129 nominalized +245148 nominalized +245164 nominalized +245168 nominalized +245195 nominalized +245199 nominalized +245211 nominalized +245231 nominalized +245254 nominalized +245345 nominalized +245352 nominalized +245386 nominalized +245394 nominalized +245416 nominalized +245454 nominalized +245464 nominalized +245508 nominalized +245542 nominalized +nominalized +245568 nominalized +245592 nominalized +245595 nominalized +245624 nominalized +245629 nominalized +245646 nominalized +245691 nominalized +245700 nominalized +245713 nominalized +245728 nominalized +245730 nominalized +245737 nominalized +245761 nominalized +245763 nominalized +245812 nominalized +245857 nominalized +245861 nominalized +245889 nominalized +245916 nominalized +246014 nominalized +nominalized +246113 nominalized +246123 nominalized +246128 nominalized +246134 nominalized +246137 nominalized +246142 nominalized +246162 nominalized +246165 nominalized +246171 nominalized +246196 nominalized +246208 nominalized +246305 nominalized +246310 nominalized +246332 nominalized +246335 nominalized +246348 nominalized +246358 nominalized +nominalized +246372 nominalized +246390 nominalized +246392 nominalized +246398 nominalized +246407 nominalized +246413 nominalized +246427 nominalized +246439 nominalized +246461 nominalized +246485 nominalized +246539 nominalized +nominalized +246551 nominalized +nominalized +246585 nominalized +246592 nominalized +246599 nominalized +246616 nominalized +246626 nominalized +246715 nominalized +246779 nominalized +nominalized +246802 nominalized +nominalized +246810 nominalized +246812 nominalized +246843 nominalized +246853 nominalized +246858 nominalized +246907 nominalized +246923 nominalized +246953 nominalized +246966 nominalized +nominalized +246974 nominalized +246992 nominalized +247012 nominalized +247035 nominalized +247042 nominalized +247081 nominalized +247083 nominalized +247138 nominalized +247176 nominalized +247192 nominalized +247195 nominalized +247229 nominalized +247252 nominalized +247256 nominalized +247260 nominalized +247272 nominalized +nominalized +247301 nominalized +247310 nominalized +247319 nominalized +247352 nominalized +247382 nominalized +247401 nominalized +nominalized +247441 nominalized +247471 nominalized +247521 nominalized +247535 nominalized +247577 nominalized +247616 nominalized +247628 nominalized +247653 nominalized +247657 nominalized +247668 nominalized +247686 nominalized +247748 nominalized +247752 nominalized +nominalized +247770 nominalized +247783 nominalized +247799 nominalized +247818 nominalized +247824 nominalized +247858 nominalized +247869 nominalized +247882 nominalized +nominalized +nominalized +247910 nominalized +247927 nominalized +247933 nominalized +247949 nominalized +247963 nominalized +247967 nominalized +247970 nominalized +247974 nominalized +nominalized +248004 nominalized +248016 nominalized +248035 nominalized +nominalized +248075 nominalized +248104 nominalized +nominalized +248122 nominalized +248130 nominalized +248166 nominalized +248181 nominalized +248197 nominalized +248208 nominalized +248215 nominalized +nominalized +248224 nominalized +248241 nominalized +nominalized +248259 nominalized +248270 nominalized +248303 nominalized +nominalized +248320 nominalized +248326 nominalized +248344 nominalized +248354 nominalized +248357 nominalized +248361 nominalized +248373 nominalized +248381 nominalized +248383 nominalized +248444 nominalized +248453 nominalized +248473 nominalized +248477 nominalized +nominalized +248500 nominalized +248506 nominalized +248526 nominalized +248529 nominalized +248542 nominalized +248545 nominalized +248560 nominalized +248577 nominalized +248588 nominalized +248640 nominalized +248648 nominalized +248652 nominalized +248663 nominalized +248670 nominalized +248707 nominalized +248712 nominalized +248724 nominalized +248743 nominalized +248757 nominalized +248798 nominalized +248801 nominalized +248835 nominalized +248889 nominalized +nominalized +248905 nominalized +248943 nominalized +nominalized +248947 nominalized +248968 nominalized +249088 nominalized +nominalized +249101 nominalized +249133 nominalized +249146 nominalized +249149 nominalized +249157 nominalized +249167 nominalized +249187 nominalized +249191 nominalized +249205 nominalized +nominalized +nominalized +249210 nominalized +249230 nominalized +249242 nominalized +249253 nominalized +249281 nominalized +249284 nominalized +249288 nominalized +249299 nominalized +249306 nominalized +249402 nominalized +249447 nominalized +nominalized +249452 nominalized +249456 nominalized +249470 nominalized +249477 nominalized +249488 nominalized +249515 nominalized +249591 nominalized +249652 nominalized +249700 nominalized +249718 nominalized +249735 nominalized +249738 nominalized +249741 nominalized +249743 nominalized +249835 nominalized +249838 nominalized +249891 nominalized +249893 nominalized +249897 nominalized +249965 nominalized +250077 nominalized +250081 nominalized +250086 nominalized +250088 nominalized +250098 nominalized +250111 nominalized +250118 nominalized +250139 nominalized +nominalized +250172 nominalized +250186 nominalized +250203 nominalized +nominalized +250208 nominalized +250211 nominalized +250226 nominalized +250229 nominalized +250233 nominalized +250262 nominalized +250281 nominalized +250285 nominalized +250290 nominalized +250295 nominalized +250321 nominalized +250327 nominalized +250329 nominalized +250333 nominalized +250352 nominalized +250365 nominalized +250370 nominalized +250380 nominalized +250394 nominalized +250403 nominalized +250440 nominalized +250488 nominalized +250491 nominalized +250497 nominalized +250543 nominalized +250552 nominalized +250555 nominalized +nominalized +250571 nominalized +250607 nominalized +250615 nominalized +250664 nominalized +250669 nominalized +250709 nominalized +250744 nominalized +250752 nominalized +250775 nominalized +250779 nominalized +250789 nominalized +250800 nominalized +250828 nominalized +250843 nominalized +250898 nominalized +250911 nominalized +250927 nominalized +250935 nominalized +250946 nominalized +nominalized +250952 nominalized +250966 nominalized +250976 nominalized +250987 nominalized +250998 nominalized +251047 nominalized +251049 nominalized +251068 nominalized +251081 nominalized +nominalized +251085 nominalized +251089 nominalized +251095 nominalized +251102 nominalized +251108 nominalized +251120 nominalized +251134 nominalized +251161 nominalized +251206 nominalized +nominalized +251218 nominalized +251223 nominalized +251225 nominalized +251228 nominalized +251233 nominalized +nominalized +251244 nominalized +251250 nominalized +251261 nominalized +251274 nominalized +251283 nominalized +251295 nominalized +251318 nominalized +251329 nominalized +251339 nominalized +251351 nominalized +251356 nominalized +251372 nominalized +251388 nominalized +251435 nominalized +nominalized +251449 nominalized +251464 nominalized +251489 nominalized +251499 nominalized +251503 nominalized +251510 nominalized +251546 nominalized +nominalized +251552 nominalized +251563 nominalized +251569 nominalized +251579 nominalized +251586 nominalized +251626 nominalized +251631 nominalized +251647 nominalized +251657 nominalized +251664 nominalized +251667 nominalized +251681 nominalized +251685 nominalized +251702 nominalized +251712 nominalized +251752 nominalized +251775 nominalized +251836 nominalized +251843 nominalized +251845 nominalized +251865 nominalized +251876 nominalized +251886 nominalized +251888 nominalized +251897 nominalized +nominalized +nominalized +251904 nominalized +251911 nominalized +251921 nominalized +251924 nominalized +251926 nominalized +251953 nominalized +251976 nominalized +251979 nominalized +251988 nominalized +251996 nominalized +252007 nominalized +252018 nominalized +252048 nominalized +252058 nominalized +252068 nominalized +252070 nominalized +252089 nominalized +252097 nominalized +nominalized +252101 nominalized +252111 nominalized +252152 nominalized +252180 nominalized +252226 nominalized +252244 nominalized +nominalized +252248 nominalized +252257 nominalized +252262 nominalized +252273 nominalized +252283 nominalized +252288 nominalized +252296 nominalized +252299 nominalized +252310 nominalized +252341 nominalized +252346 nominalized +252359 nominalized +252369 nominalized +252392 nominalized +252421 nominalized +252431 nominalized +252433 nominalized +252440 nominalized +252465 nominalized +252483 nominalized +252487 nominalized +252491 nominalized +252522 nominalized +252540 nominalized +252549 nominalized +252564 nominalized +252581 nominalized +252592 nominalized +252603 nominalized +252617 nominalized +252621 nominalized +252628 nominalized +252643 nominalized +252656 nominalized +252663 nominalized +252670 nominalized +252691 nominalized +252723 nominalized +252726 nominalized +252739 nominalized +252741 nominalized +252743 nominalized +252750 nominalized +252752 nominalized +252754 nominalized +252767 nominalized +252785 nominalized +252790 nominalized +252798 nominalized +252804 nominalized +252810 nominalized +nominalized +252827 nominalized +nominalized +252857 nominalized +252859 nominalized +252876 nominalized +252883 nominalized +252926 nominalized +252937 nominalized +252944 nominalized +252964 nominalized +252967 nominalized +252987 nominalized +253084 nominalized +253093 nominalized +nominalized +253109 nominalized +253130 nominalized +nominalized +253198 nominalized +253223 nominalized +253234 nominalized +253244 nominalized +nominalized +253249 nominalized +253262 nominalized +253286 nominalized +253299 nominalized +nominalized +nominalized +253306 nominalized +253319 nominalized +253327 nominalized +253361 nominalized +253366 nominalized +253369 nominalized +253381 nominalized +253390 nominalized +253399 nominalized +253403 nominalized +253422 nominalized +253450 nominalized +253473 nominalized +253476 nominalized +253485 nominalized +253487 nominalized +253504 nominalized +253518 nominalized +253526 nominalized +253534 nominalized +253542 nominalized +253551 nominalized +253558 nominalized +253560 nominalized +253566 nominalized +253570 nominalized +nominalized +253593 nominalized +253595 nominalized +253599 nominalized +253606 nominalized +253619 nominalized +253639 nominalized +253664 nominalized +253688 nominalized +nominalized +253693 nominalized +nominalized +253719 nominalized +253723 nominalized +253726 nominalized +253730 nominalized +nominalized +253734 nominalized +253779 nominalized +253782 nominalized +253791 nominalized +253794 nominalized +253814 nominalized +253859 nominalized +253877 nominalized +253886 nominalized +253913 nominalized +253923 nominalized +253989 nominalized +254004 nominalized +254008 nominalized +254010 nominalized +254082 nominalized +254090 nominalized +254092 nominalized +254143 nominalized +254154 nominalized +254171 nominalized +254175 nominalized +254196 nominalized +254219 nominalized +254238 nominalized +254278 nominalized +254326 nominalized +254370 nominalized +254372 nominalized +254392 nominalized +254403 nominalized +254423 nominalized +nominalized +nominalized +254466 nominalized +254599 nominalized +254679 nominalized +254697 nominalized +254701 nominalized +254732 nominalized +254784 nominalized +254798 nominalized +254891 nominalized +254907 nominalized +254934 nominalized +254961 nominalized +254963 nominalized +254979 nominalized +255048 nominalized +255070 nominalized +255079 nominalized +255084 nominalized +255104 nominalized +255111 nominalized +255163 nominalized +255205 nominalized +255209 nominalized +255216 nominalized +255294 nominalized +255301 nominalized +255377 nominalized +255411 nominalized +255451 nominalized +255499 nominalized +255506 nominalized +255518 nominalized +255523 nominalized +255535 nominalized +255550 nominalized +255563 nominalized +nominalized +255567 nominalized +nominalized +255574 nominalized +255582 nominalized +255589 nominalized +255600 nominalized +255616 nominalized +255621 nominalized +255624 nominalized +255628 nominalized +255630 nominalized +nominalized +255646 nominalized +255668 nominalized +255684 nominalized +255716 nominalized +255735 nominalized +255767 nominalized +255769 nominalized +255802 nominalized +255832 nominalized +255838 nominalized +nominalized +255850 nominalized +255872 nominalized +255881 nominalized +255885 nominalized +nominalized +255888 nominalized +255890 nominalized +255892 nominalized +255902 nominalized +255921 nominalized +255927 nominalized +nominalized +255934 nominalized +255937 nominalized +255948 nominalized +255959 nominalized +255962 nominalized +255982 nominalized +255985 nominalized +256083 nominalized +nominalized +256091 nominalized +256093 nominalized +256099 nominalized +256102 nominalized +256116 nominalized +256125 nominalized +256160 nominalized +256184 nominalized +256196 nominalized +256205 nominalized +256230 nominalized +256238 nominalized +256257 nominalized +256268 nominalized +256296 nominalized +256301 nominalized +256334 nominalized +256347 nominalized +256349 nominalized +256351 nominalized +256362 nominalized +256387 nominalized +256406 nominalized +256409 nominalized +256413 nominalized +256429 nominalized +256448 nominalized +256459 nominalized +256465 nominalized +256485 nominalized +256487 nominalized +256490 nominalized +256555 nominalized +256558 nominalized +256654 nominalized +256670 nominalized +256688 nominalized +256715 nominalized +256789 nominalized +256814 nominalized +256839 nominalized +256850 nominalized +256881 nominalized +256919 nominalized +256925 nominalized +257000 nominalized +nominalized +257052 nominalized +257057 nominalized +257095 nominalized +257128 nominalized +257147 nominalized +257151 nominalized +257155 nominalized +nominalized +257190 nominalized +257196 nominalized +257215 nominalized +nominalized +257232 nominalized +257259 nominalized +257266 nominalized +257297 nominalized +257308 nominalized +257321 nominalized +257325 nominalized +257327 nominalized +257359 nominalized +257371 nominalized +nominalized +257393 nominalized +257395 nominalized +257408 nominalized +257410 nominalized +257419 nominalized +257446 nominalized +257456 nominalized +257478 nominalized +257488 nominalized +257523 nominalized +257525 nominalized +257545 nominalized +257604 nominalized +nominalized +257624 nominalized +257638 nominalized +nominalized +257655 nominalized +257683 nominalized +257691 nominalized +257694 nominalized +257740 nominalized +257742 nominalized +257744 nominalized +nominalized +257748 nominalized +nominalized +257773 nominalized +nominalized +257781 nominalized +nominalized +257818 nominalized +nominalized +257959 nominalized +257975 nominalized +257993 nominalized +258008 nominalized +258017 nominalized +258022 nominalized +258038 nominalized +258054 nominalized +258068 nominalized +258190 nominalized +258276 nominalized +258285 nominalized +258291 nominalized +258298 nominalized +258306 nominalized +258320 nominalized +258329 nominalized +258334 nominalized +258337 nominalized +258392 nominalized +258420 nominalized +258437 nominalized +258448 nominalized +258472 nominalized +258479 nominalized +258488 nominalized +258495 nominalized +258519 nominalized +258551 nominalized +258557 nominalized +258564 nominalized +258614 nominalized +258622 nominalized +258632 nominalized +258654 nominalized +nominalized +258723 nominalized +nominalized +nominalized +258759 nominalized +258773 nominalized +258777 nominalized +258803 nominalized +nominalized +258807 nominalized +258814 nominalized +258817 nominalized +258827 nominalized +258829 nominalized +258873 nominalized +258875 nominalized +nominalized +258905 nominalized +258914 nominalized +259010 nominalized +259030 nominalized +259041 nominalized +259087 nominalized +259109 nominalized +259111 nominalized +259115 nominalized +nominalized +259119 nominalized +259129 nominalized +259149 nominalized +259151 nominalized +259153 nominalized +259191 nominalized +259202 nominalized +259211 nominalized +259226 nominalized +259249 nominalized +259259 nominalized +259297 nominalized +259307 nominalized +259314 nominalized +259338 nominalized +259344 nominalized +259353 nominalized +259371 nominalized +259387 nominalized +nominalized +259394 nominalized +259412 nominalized +259440 nominalized +259447 nominalized +259513 nominalized +259522 nominalized +259528 nominalized +259577 nominalized +259607 nominalized +259622 nominalized +259629 nominalized +259641 nominalized +259669 nominalized +259711 nominalized +259752 nominalized +nominalized +259760 nominalized +259764 nominalized +259791 nominalized +259800 nominalized +259815 nominalized +259830 nominalized +259836 nominalized +259895 nominalized +259922 nominalized +259931 nominalized +259965 nominalized +259970 nominalized +260007 nominalized +260039 nominalized +260042 nominalized +260078 nominalized +260082 nominalized +260088 nominalized +nominalized +260093 nominalized +260098 nominalized +260129 nominalized +260135 nominalized +260143 nominalized +260160 nominalized +260176 nominalized +260186 nominalized +nominalized +260215 nominalized +260217 nominalized +260221 nominalized +260227 nominalized +260235 nominalized +260265 nominalized +260269 nominalized +nominalized +260275 nominalized +nominalized +260288 nominalized +260298 nominalized +260303 nominalized +260306 nominalized +260314 nominalized +260335 nominalized +260338 nominalized +260341 nominalized +260347 nominalized +260374 nominalized +260413 nominalized +260439 nominalized +260442 nominalized +260445 nominalized +260467 nominalized +260489 nominalized +nominalized +nominalized +260518 nominalized +260535 nominalized +260567 nominalized +260630 nominalized +260654 nominalized +260656 nominalized +260658 nominalized +260663 nominalized +260670 nominalized +260702 nominalized +260709 nominalized +260736 nominalized +260800 nominalized +260804 nominalized +260812 nominalized +260819 nominalized +260839 nominalized +nominalized +260861 nominalized +260871 nominalized +nominalized +260898 nominalized +260905 nominalized +260922 nominalized +260932 nominalized +nominalized +260957 nominalized +260967 nominalized +260971 nominalized +260984 nominalized +261008 nominalized +261016 nominalized +261021 nominalized +261029 nominalized +261034 nominalized +261037 nominalized +261053 nominalized +261080 nominalized +261097 nominalized +261128 nominalized +261152 nominalized +261171 nominalized +261175 nominalized +261185 nominalized +nominalized +261188 nominalized +nominalized +261196 nominalized +261199 nominalized +261230 nominalized +261245 nominalized +261274 nominalized +261315 nominalized +261328 nominalized +261355 nominalized +261375 nominalized +261379 nominalized +261398 nominalized +nominalized +nominalized +261423 nominalized +261461 nominalized +261468 nominalized +261475 nominalized +261484 nominalized +261514 nominalized +261528 nominalized +261613 nominalized +261638 nominalized +nominalized +261679 nominalized +261699 nominalized +261713 nominalized +261718 nominalized +261726 nominalized +nominalized +261747 nominalized +261795 nominalized +261807 nominalized +261820 nominalized +261846 nominalized +261874 nominalized +261877 nominalized +261880 nominalized +261892 nominalized +261896 nominalized +261908 nominalized +261915 nominalized +261960 nominalized +261965 nominalized +261968 nominalized +262063 nominalized +262069 nominalized +262083 nominalized +262107 nominalized +262109 nominalized +262183 nominalized +262196 nominalized +nominalized +262201 nominalized +262220 nominalized +262285 nominalized +262320 nominalized +262324 nominalized +262359 nominalized +262415 nominalized +262454 nominalized +262464 nominalized +262485 nominalized +262510 nominalized +262611 nominalized +262668 nominalized +262675 nominalized +262677 nominalized +262707 nominalized +262711 nominalized +262772 nominalized +262776 nominalized +nominalized +262810 nominalized +262875 nominalized +262893 nominalized +262928 nominalized +262985 nominalized +263065 nominalized +263113 nominalized +263134 nominalized +263240 nominalized +263253 nominalized +263335 nominalized +263388 nominalized +263397 nominalized +263430 nominalized +263438 nominalized +263448 nominalized +263500 nominalized +263507 nominalized +263520 nominalized +263555 nominalized +263597 nominalized +263627 nominalized +263629 nominalized +263634 nominalized +263660 nominalized +263720 nominalized +263769 nominalized +263776 nominalized +nominalized +263780 nominalized +nominalized +263799 nominalized +263804 nominalized +263849 nominalized +nominalized +263853 nominalized +263865 nominalized +263872 nominalized +263936 nominalized +263947 nominalized +263961 nominalized +264007 nominalized +264034 nominalized +264075 nominalized +264097 nominalized +264100 nominalized +264131 nominalized +264145 nominalized +264172 nominalized +264272 nominalized +264295 nominalized +264298 nominalized +264324 nominalized +264338 nominalized +264348 nominalized +264458 nominalized +264471 nominalized +264496 nominalized +264498 nominalized +264518 nominalized +264550 nominalized +264555 nominalized +264598 nominalized +264631 nominalized +264662 nominalized +264682 nominalized +264719 nominalized +264741 nominalized +264784 nominalized +nominalized +264788 nominalized +264821 nominalized +264862 nominalized +264888 nominalized +264895 nominalized +264915 nominalized +264918 nominalized +264930 nominalized +264949 nominalized +264992 nominalized +265000 nominalized +265022 nominalized +265028 nominalized +265034 nominalized +265040 nominalized +nominalized +265051 nominalized +265065 nominalized +nominalized +nominalized +265115 nominalized +265133 nominalized +265163 nominalized +265193 nominalized +265196 nominalized +265198 nominalized +265228 nominalized +265234 nominalized +265241 nominalized +265243 nominalized +265274 nominalized +265303 nominalized +265323 nominalized +265371 nominalized +265404 nominalized +265411 nominalized +265424 nominalized +265443 nominalized +265496 nominalized +265520 nominalized +265550 nominalized +265559 nominalized +265658 nominalized +265760 nominalized +265786 nominalized +265792 nominalized +265866 nominalized +265872 nominalized +265926 nominalized +265929 nominalized +265971 nominalized +265988 nominalized +266012 nominalized +266093 nominalized +nominalized +266119 nominalized +266139 nominalized +266169 nominalized +266171 nominalized +266246 nominalized +266263 nominalized +266266 nominalized +nominalized +266275 nominalized +266295 nominalized +266297 nominalized +266307 nominalized +266324 nominalized +266387 nominalized +266389 nominalized +266397 nominalized +nominalized +nominalized +266402 nominalized +266419 nominalized +266422 nominalized +266445 nominalized +266472 nominalized +266476 nominalized +266479 nominalized +nominalized +266495 nominalized +266499 nominalized +266502 nominalized +nominalized +266547 nominalized +266551 nominalized +nominalized +266561 nominalized +266566 nominalized +266575 nominalized +266611 nominalized +266614 nominalized +266620 nominalized +266667 nominalized +266744 nominalized +266748 nominalized +266752 nominalized +nominalized +266793 nominalized +266806 nominalized +266930 nominalized +266952 nominalized +266971 nominalized +nominalized +266978 nominalized +266982 nominalized +267014 nominalized +267019 nominalized +267023 nominalized +267134 nominalized +267171 nominalized +267214 nominalized +267236 nominalized +267305 nominalized +267343 nominalized +267370 nominalized +267397 nominalized +267399 nominalized +267404 nominalized +267467 nominalized +267489 nominalized +267514 nominalized +267544 nominalized +267562 nominalized +267565 nominalized +267569 nominalized +267575 nominalized +267588 nominalized +267600 nominalized +267604 nominalized +267644 nominalized +267672 nominalized +267691 nominalized +267702 nominalized +nominalized +267747 nominalized +267802 nominalized +267828 nominalized +267844 nominalized +267852 nominalized +267873 nominalized +267875 nominalized +nominalized +267905 nominalized +267913 nominalized +268015 nominalized +268070 nominalized +268102 nominalized +268113 nominalized +268127 nominalized +268141 nominalized +268144 nominalized +268158 nominalized +268163 nominalized +268213 nominalized +268232 nominalized +268275 nominalized +268298 nominalized +268326 nominalized +268484 nominalized +268490 nominalized +268528 nominalized +268530 nominalized +268621 nominalized +nominalized +268630 nominalized +268641 nominalized +268660 nominalized +268678 nominalized +268703 nominalized +268745 nominalized +268777 nominalized +268813 nominalized +268820 nominalized +268823 nominalized +268829 nominalized +268847 nominalized +268879 nominalized +268886 nominalized diff --git a/tf/0.1.1/cltype.tf b/tf/0.1.1/cltype.tf new file mode 100644 index 0000000..0b073cf --- /dev/null +++ b/tf/0.1.1/cltype.tf @@ -0,0 +1,2857 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Type of clause +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +154024 Verbless +154194 Verbless +154203 Verbless +154211 Verbless +154263 Minor +154316 Verbless +154388 VerbElided +154407 VerbElided +154418 Minor +154755 VerbElided +154779 VerbElided +154826 Minor +154897 Verbless +155031 VerbElided +155115 Minor +155168 Minor +155190 Minor +155419 Verbless +155454 Verbless +155505 VerbElided +155650 Minor +155656 Minor +155708 VerbElided +155847 VerbElided +155856 VerbElided +155866 VerbElided +155890 Verbless +Verbless +155904 VerbElided +155907 VerbElided +155927 VerbElided +156055 VerbElided +156187 VerbElided +156214 Minor +156288 VerbElided +156323 VerbElided +156436 VerbElided +156449 VerbElided +156460 VerbElided +156523 VerbElided +156540 VerbElided +156542 Minor +156590 Verbless +156651 Minor +156754 Minor +156777 Verbless +156780 Verbless +156795 Verbless +156798 Verbless +156833 VerbElided +156853 VerbElided +156880 Minor +Minor +156886 VerbElided +156904 Minor +Minor +156927 Minor +157036 VerbElided +157053 Minor +157103 Minor +157120 Minor +157153 VerbElided +157160 VerbElided +157315 Minor +157327 VerbElided +157344 Minor +157392 Minor +157399 Minor +157459 Minor +157570 Minor +157716 VerbElided +157728 VerbElided +157734 VerbElided +157802 VerbElided +157847 VerbElided +157881 Minor +157905 VerbElided +157954 Minor +157975 Minor +Minor +158076 VerbElided +158085 Verbless +158088 Verbless +158128 Verbless +158133 VerbElided +158223 VerbElided +158233 Verbless +158313 VerbElided +158319 VerbElided +158327 VerbElided +158331 Verbless +158333 VerbElided +158371 VerbElided +158387 Verbless +158402 VerbElided +158420 Minor +158456 Verbless +158462 Verbless +158470 Verbless +158480 VerbElided +158606 VerbElided +158617 VerbElided +158622 VerbElided +158627 Verbless +158797 VerbElided +158805 VerbElided +158826 Minor +158828 VerbElided +158950 Verbless +158980 Minor +158982 Minor +159009 VerbElided +159013 Minor +159043 VerbElided +159053 Minor +159071 Minor +Minor +159088 VerbElided +159094 VerbElided +159106 Minor +159136 Verbless +159186 VerbElided +159207 VerbElided +159210 VerbElided +159244 VerbElided +159319 VerbElided +159442 VerbElided +159592 VerbElided +159600 VerbElided +159611 Minor +159643 Minor +159672 Minor +159687 VerbElided +159871 Verbless +159933 VerbElided +159994 VerbElided +159996 VerbElided +159998 VerbElided +160109 Verbless +160116 VerbElided +160177 Minor +160207 Minor +160232 Minor +160253 VerbElided +160255 VerbElided +160306 Minor +160333 VerbElided +160485 Minor +160572 VerbElided +160689 Minor +160735 VerbElided +160754 Verbless +160764 Minor +160771 VerbElided +160784 VerbElided +161008 VerbElided +161043 VerbElided +161157 Minor +161194 Minor +161205 Minor +161343 Minor +161379 Minor +161499 Minor +161527 VerbElided +161541 Minor +161560 Minor +161581 Minor +161636 Verbless +161676 VerbElided +161691 VerbElided +161717 VerbElided +161778 Verbless +161786 Verbless +161813 VerbElided +161855 Minor +161873 VerbElided +161905 VerbElided +161936 VerbElided +161940 VerbElided +161942 VerbElided +161973 Minor +161981 VerbElided +162074 Minor +162086 Minor +162094 VerbElided +162243 Minor +162251 VerbElided +162253 VerbElided +162255 VerbElided +162304 VerbElided +162384 Minor +162399 VerbElided +162417 Minor +162459 VerbElided +162527 Minor +162539 Minor +162548 VerbElided +162560 VerbElided +162682 VerbElided +162689 Verbless +162693 VerbElided +162818 VerbElided +162955 Minor +162962 VerbElided +162969 VerbElided +162971 VerbElided +163107 Minor +163231 Verbless +163365 Minor +163391 VerbElided +163397 VerbElided +163415 VerbElided +163482 VerbElided +163505 Verbless +163526 Minor +163573 Verbless +163727 Minor +163743 VerbElided +163764 Verbless +163839 VerbElided +163842 VerbElided +163964 Minor +163978 Minor +163994 Minor +164041 VerbElided +164143 Verbless +164149 Verbless +164245 Verbless +164258 Minor +164297 VerbElided +164398 Verbless +164401 Verbless +164412 Verbless +164423 Verbless +164455 Minor +164466 Minor +164492 VerbElided +164638 Minor +164657 Minor +164697 Minor +164773 Verbless +164783 VerbElided +164788 VerbElided +164877 Minor +164909 Verbless +164926 Minor +164951 VerbElided +164960 Minor +164972 Verbless +164980 Verbless +164988 VerbElided +165013 Minor +165047 VerbElided +165081 VerbElided +165103 VerbElided +165130 Verbless +165157 Minor +165196 VerbElided +165207 VerbElided +165224 Verbless +165408 Minor +165429 Minor +165450 Minor +165471 Minor +165476 VerbElided +165479 VerbElided +165504 Minor +165507 VerbElided +165510 VerbElided +165563 Minor +165595 Minor +165607 Minor +165627 Minor +165641 Minor +165660 Verbless +165673 Minor +165724 Minor +165795 Minor +Minor +Minor +165834 Verbless +165888 Verbless +165944 VerbElided +165953 Verbless +166000 Minor +166068 VerbElided +166124 Verbless +166127 Verbless +166143 Verbless +166162 Verbless +166279 Verbless +166322 VerbElided +166330 VerbElided +166336 VerbElided +166460 Verbless +166559 Verbless +166660 Minor +Minor +166703 VerbElided +166705 VerbElided +VerbElided +166727 VerbElided +166769 Minor +166781 Minor +166801 VerbElided +166805 Minor +166817 Minor +166842 Minor +166873 Minor +166921 Minor +166957 VerbElided +166989 VerbElided +167000 Minor +167029 Verbless +167047 Minor +167065 Verbless +167070 Verbless +167077 Verbless +167138 Verbless +167152 Minor +167155 Verbless +167185 VerbElided +167246 VerbElided +167281 Verbless +167440 Minor +167446 Minor +167465 VerbElided +167489 Minor +167684 Minor +167697 VerbElided +167727 Verbless +167730 Verbless +167738 Minor +167807 VerbElided +167838 Minor +167846 Minor +167924 VerbElided +168103 Minor +168244 Verbless +168392 VerbElided +168415 Verbless +168452 VerbElided +168503 Verbless +168548 VerbElided +168558 Minor +168595 Verbless +168653 VerbElided +168656 VerbElided +168670 Minor +168758 Minor +Minor +168764 Minor +168766 Minor +168911 Verbless +168980 Minor +169075 Verbless +169309 Verbless +169333 Verbless +169386 VerbElided +169612 VerbElided +169632 Minor +169639 Verbless +169673 Verbless +169969 Minor +169991 VerbElided +170160 VerbElided +170167 VerbElided +170241 VerbElided +170263 VerbElided +170272 VerbElided +170275 VerbElided +170336 VerbElided +170353 VerbElided +170569 Minor +170586 VerbElided +170788 Verbless +171117 VerbElided +171133 VerbElided +171206 VerbElided +VerbElided +Verbless +171233 Verbless +171343 Minor +171476 Minor +171488 Minor +171497 Verbless +171613 VerbElided +171693 Verbless +171841 Minor +171883 VerbElided +171949 Minor +171952 Minor +172009 VerbElided +172011 Verbless +172056 VerbElided +172113 VerbElided +172116 VerbElided +VerbElided +VerbElided +172208 Verbless +172217 Minor +172348 VerbElided +172519 Verbless +172560 VerbElided +172622 VerbElided +172667 Verbless +172957 Verbless +173046 VerbElided +173061 Minor +173080 Minor +173127 Verbless +173163 Minor +173350 VerbElided +173463 VerbElided +173526 VerbElided +173530 VerbElided +173540 VerbElided +173641 VerbElided +173646 VerbElided +173650 Verbless +173723 Minor +173729 VerbElided +173893 Minor +173901 VerbElided +173903 VerbElided +173905 VerbElided +173934 VerbElided +174013 Verbless +174041 Minor +174075 Minor +174116 VerbElided +174125 VerbElided +174140 Minor +174169 Minor +174227 VerbElided +174291 Verbless +174335 VerbElided +174342 Minor +174494 Verbless +174590 Verbless +174664 VerbElided +174685 Minor +174698 Verbless +174700 VerbElided +174721 Minor +174791 Minor +174826 Verbless +174829 VerbElided +174832 Verbless +174878 VerbElided +174891 Verbless +174964 Minor +174981 VerbElided +174985 VerbElided +175114 VerbElided +175141 Minor +175154 Minor +175192 Minor +175320 VerbElided +175334 Minor +Verbless +175341 Verbless +175350 Verbless +175393 VerbElided +175510 Minor +175551 Minor +175639 Verbless +175651 Verbless +175660 Verbless +175739 VerbElided +175805 Minor +175854 Minor +175877 VerbElided +175899 Verbless +175908 Verbless +175917 VerbElided +175937 Minor +175978 Verbless +176011 VerbElided +176049 Verbless +176061 Verbless +176085 Minor +176123 VerbElided +176133 Minor +176165 VerbElided +176250 VerbElided +176264 Minor +176346 Minor +176348 Verbless +176428 VerbElided +176437 VerbElided +176444 Verbless +176494 VerbElided +176505 VerbElided +176523 Minor +176572 VerbElided +176633 Verbless +176649 Verbless +176775 VerbElided +176783 VerbElided +176797 VerbElided +176864 VerbElided +177115 VerbElided +177120 Verbless +177141 VerbElided +177253 VerbElided +177286 Verbless +177344 Minor +177356 VerbElided +177369 Minor +177386 Verbless +177389 Verbless +177457 VerbElided +177489 Minor +177523 VerbElided +178006 Minor +178103 Minor +178113 VerbElided +178116 VerbElided +178131 Minor +Minor +178197 Minor +Minor +178204 Minor +178207 Minor +178276 Verbless +178474 Verbless +178707 Minor +178728 Verbless +Verbless +178734 Verbless +178739 Verbless +178830 Minor +178896 VerbElided +179045 Verbless +179051 Verbless +179055 Verbless +179067 Verbless +179087 Minor +179164 Minor +179188 Verbless +179248 Verbless +179252 Verbless +179288 Verbless +179334 Verbless +179338 Verbless +179450 VerbElided +179493 VerbElided +179577 VerbElided +179619 Minor +179696 VerbElided +179831 Verbless +179834 Verbless +179946 Verbless +179985 Minor +179994 VerbElided +180008 Verbless +180070 Minor +180159 Verbless +180170 Verbless +180325 Minor +180336 Verbless +180445 VerbElided +180473 VerbElided +180493 Minor +180575 Minor +180643 Verbless +181124 Verbless +181134 VerbElided +181200 Minor +181251 VerbElided +181271 VerbElided +181346 Minor +181349 Minor +181356 Verbless +181605 Minor +181661 Minor +181678 VerbElided +181731 Minor +181867 Minor +181886 VerbElided +181978 Verbless +182038 VerbElided +182045 VerbElided +182059 VerbElided +182113 VerbElided +182135 VerbElided +182149 Verbless +182222 VerbElided +182406 VerbElided +182465 Verbless +182502 VerbElided +182541 Minor +182549 Minor +182560 Minor +182796 Minor +182812 Minor +182884 Minor +Minor +182891 Minor +183027 Minor +183070 VerbElided +183077 VerbElided +183178 Minor +183324 VerbElided +183332 VerbElided +183351 VerbElided +183354 Minor +183357 VerbElided +183468 Verbless +183561 Verbless +183576 Minor +183581 VerbElided +183583 Minor +183596 VerbElided +183633 VerbElided +183724 Verbless +183902 Verbless +183924 Minor +183945 Minor +183985 VerbElided +184045 Minor +184070 VerbElided +184108 Minor +Minor +184130 Verbless +184185 VerbElided +184202 Minor +184246 Verbless +184421 Verbless +184481 Verbless +184490 Minor +184530 Minor +184568 VerbElided +184605 Minor +184665 VerbElided +184667 VerbElided +184669 VerbElided +184671 VerbElided +184831 VerbElided +184921 VerbElided +184925 VerbElided +184943 Verbless +185084 Verbless +185090 Verbless +185145 Minor +185153 VerbElided +185155 VerbElided +185157 VerbElided +185226 Minor +185263 Minor +185392 Minor +185403 Minor +185474 Minor +185512 VerbElided +185557 Minor +185607 Verbless +185610 Verbless +185628 VerbElided +185635 VerbElided +VerbElided +185649 VerbElided +185679 Verbless +185757 VerbElided +185763 Minor +185765 Minor +185792 VerbElided +185796 Minor +185826 Minor +185839 VerbElided +185894 Minor +185911 Minor +185928 VerbElided +185935 VerbElided +185951 Verbless +185983 Minor +186028 VerbElided +186151 VerbElided +186177 Verbless +186206 Minor +186225 Minor +Minor +186237 VerbElided +186261 Minor +186277 Minor +186320 Minor +186631 Verbless +186644 Verbless +186671 VerbElided +186741 VerbElided +186746 VerbElided +186793 Verbless +186851 Minor +186896 VerbElided +186913 VerbElided +186934 Minor +187031 Minor +187099 VerbElided +187150 Minor +187183 Minor +187213 Minor +187242 VerbElided +187264 Minor +187274 Minor +187348 Minor +187364 Minor +187375 Verbless +187395 VerbElided +187405 VerbElided +187462 VerbElided +187478 VerbElided +187480 Minor +187515 Minor +187565 Verbless +187569 Verbless +187584 Verbless +187650 Minor +187656 VerbElided +187679 Verbless +187781 Minor +187817 VerbElided +187820 VerbElided +187832 VerbElided +187835 VerbElided +187842 VerbElided +187845 VerbElided +187848 VerbElided +187852 VerbElided +187857 VerbElided +187889 Minor +187976 VerbElided +187985 Minor +188009 Minor +188041 VerbElided +188063 Minor +188084 VerbElided +188097 Minor +188121 Minor +188159 VerbElided +188171 Minor +188289 Minor +Verbless +188312 VerbElided +188331 Minor +188360 Minor +188374 VerbElided +188463 Minor +Minor +Minor +188480 VerbElided +188503 Verbless +188547 VerbElided +188640 Minor +188713 Verbless +188817 Minor +188963 VerbElided +188984 Verbless +189040 Minor +189105 VerbElided +189115 Minor +189150 VerbElided +189174 Minor +189267 Minor +189281 VerbElided +189315 Minor +189347 VerbElided +189476 Minor +189584 VerbElided +189604 VerbElided +189715 VerbElided +189741 Verbless +189748 Verbless +189811 Verbless +189869 VerbElided +189879 Minor +189904 Minor +189914 VerbElided +189949 Minor +189983 Minor +Minor +190016 VerbElided +190101 VerbElided +190191 Minor +Minor +190243 Verbless +190250 VerbElided +190285 VerbElided +190287 VerbElided +190436 Verbless +190494 Minor +190499 Verbless +190638 Verbless +190641 Verbless +190649 Minor +190655 Verbless +190662 VerbElided +190689 Minor +190753 VerbElided +190762 Minor +190773 Verbless +190775 VerbElided +190901 VerbElided +190992 Minor +191007 Minor +191027 Minor +191061 VerbElided +191067 Verbless +191107 Minor +191141 Minor +191262 Minor +191270 VerbElided +191272 Minor +191287 Minor +191306 Minor +191332 Minor +191376 Minor +191544 Verbless +191547 Verbless +191559 Minor +191666 VerbElided +191734 Verbless +191746 Verbless +191756 Verbless +191769 Verbless +191898 Minor +191966 Minor +191985 VerbElided +192001 VerbElided +192011 VerbElided +192041 Minor +192120 VerbElided +192166 Verbless +192176 Minor +192319 Minor +192332 Minor +192376 VerbElided +192385 VerbElided +192525 VerbElided +192544 Verbless +192573 Verbless +192694 VerbElided +192901 VerbElided +192977 VerbElided +192985 Verbless +193018 VerbElided +193061 Verbless +193071 Verbless +193080 VerbElided +193088 VerbElided +193137 Minor +Minor +193145 VerbElided +193165 Minor +193178 Minor +193199 VerbElided +193208 VerbElided +193244 Minor +193286 Minor +193296 VerbElided +193364 Minor +193377 Minor +193423 VerbElided +193495 Minor +193509 Minor +193532 Minor +193859 VerbElided +193991 Minor +194001 VerbElided +194029 VerbElided +194066 VerbElided +194069 VerbElided +194076 Minor +194131 Verbless +194167 VerbElided +194179 Minor +194224 Minor +194278 Minor +194284 Verbless +194501 Verbless +194526 Verbless +194560 Verbless +194575 Verbless +194590 VerbElided +194692 Minor +194852 VerbElided +194985 Verbless +195097 Verbless +195236 Minor +195278 Verbless +195290 VerbElided +195382 Verbless +195432 Minor +195479 Verbless +195507 Minor +195511 Minor +195618 VerbElided +195671 Minor +195760 Minor +195923 VerbElided +196082 Verbless +196090 Minor +196254 VerbElided +196356 VerbElided +196453 Minor +196626 VerbElided +196632 VerbElided +196747 Minor +196774 VerbElided +196822 Minor +196869 Minor +196893 Minor +196939 Verbless +197032 Minor +197112 Verbless +197284 Minor +197338 VerbElided +197452 Minor +197511 Minor +197771 VerbElided +197777 VerbElided +197802 VerbElided +197890 Minor +198130 Verbless +198299 VerbElided +198334 VerbElided +198352 Minor +198492 Minor +198548 VerbElided +198562 Minor +198679 Minor +198829 VerbElided +198842 Minor +198983 Minor +199022 Verbless +199182 VerbElided +199223 Verbless +199254 Minor +199305 Verbless +199363 Minor +199425 Minor +199535 Minor +199658 VerbElided +199755 Minor +199839 Minor +199850 Minor +199937 VerbElided +199979 VerbElided +200081 Verbless +200362 Verbless +200368 Minor +200460 VerbElided +200590 Minor +200592 VerbElided +200606 VerbElided +200699 VerbElided +201072 Minor +201091 Minor +201150 Minor +201163 Verbless +201252 Verbless +201487 Minor +201532 Minor +201574 VerbElided +201647 Verbless +201650 Verbless +201739 Minor +201753 Verbless +201799 Minor +201855 Minor +201956 Minor +202022 Minor +202114 Minor +202123 Minor +202145 Minor +202202 Minor +202232 Minor +202258 Minor +202388 VerbElided +202660 Minor +202683 Minor +202773 Minor +202868 Minor +202881 Minor +202918 VerbElided +203031 Minor +203099 VerbElided +203117 VerbElided +203175 Minor +203187 Minor +203303 Minor +203336 Minor +VerbElided +203340 VerbElided +203363 VerbElided +203392 Minor +203435 Verbless +203551 Minor +203648 Minor +203689 Minor +203701 Minor +203747 VerbElided +203777 Minor +203795 VerbElided +203814 Minor +203828 Minor +203842 Verbless +203867 Verbless +203871 Verbless +203878 VerbElided +203889 Minor +203908 Minor +203995 Verbless +204000 Verbless +204002 Verbless +204006 Minor +204032 Verbless +204035 Minor +204043 VerbElided +204083 Verbless +204094 Minor +204206 Minor +204215 Minor +204232 VerbElided +204252 Verbless +204256 Minor +204261 VerbElided +204275 VerbElided +204612 VerbElided +204689 VerbElided +204696 VerbElided +204707 VerbElided +204774 VerbElided +204779 VerbElided +204794 VerbElided +204799 VerbElided +204832 VerbElided +204837 VerbElided +205067 Minor +205081 Minor +205114 Minor +205177 VerbElided +205188 Verbless +205208 Minor +205218 VerbElided +205241 VerbElided +205334 VerbElided +205346 Minor +Verbless +205349 Verbless +205373 Verbless +205376 Verbless +205394 Minor +205413 Minor +205507 VerbElided +205540 VerbElided +205597 Minor +205796 VerbElided +205842 Verbless +206064 VerbElided +VerbElided +206099 Minor +206137 Verbless +206269 Verbless +206284 Verbless +206307 VerbElided +206333 VerbElided +206339 VerbElided +206355 Minor +206391 Minor +206420 VerbElided +206423 VerbElided +206430 Verbless +206496 Minor +206498 Verbless +206506 Verbless +206731 Verbless +206852 Minor +206920 VerbElided +206924 VerbElided +206931 Minor +206960 Minor +206971 Minor +206979 Minor +206983 Minor +206986 Minor +207058 VerbElided +207079 VerbElided +207163 Verbless +207179 VerbElided +207206 Verbless +207212 Minor +207227 Verbless +207342 Minor +207347 VerbElided +207411 Verbless +207431 VerbElided +207486 VerbElided +207489 Verbless +207505 Minor +207511 Minor +Minor +207523 Minor +207528 Minor +Minor +207541 Minor +207555 Minor +207620 Minor +207630 Minor +Verbless +207668 Verbless +207710 Minor +207783 Minor +207859 Minor +Minor +207958 Minor +Minor +208043 Minor +208086 Minor +208157 VerbElided +208305 Minor +208397 VerbElided +208400 VerbElided +208411 VerbElided +208433 Minor +Minor +208440 Minor +208536 Minor +Minor +Verbless +208677 Minor +Minor +208682 VerbElided +208710 Verbless +209009 Minor +Minor +209097 Minor +209102 VerbElided +209171 VerbElided +209316 VerbElided +209345 Minor +209367 VerbElided +209434 Verbless +209468 Verbless +209521 VerbElided +209583 Minor +209662 Minor +209784 Minor +209815 Verbless +209841 Minor +209869 Verbless +209880 VerbElided +209933 Minor +209937 VerbElided +209941 Verbless +209948 Verbless +209974 Verbless +210226 VerbElided +210275 VerbElided +210298 VerbElided +210308 VerbElided +210336 Verbless +210348 Minor +Minor +210476 Verbless +210517 Minor +210711 VerbElided +210724 Minor +Minor +210790 VerbElided +210798 VerbElided +210856 VerbElided +210859 VerbElided +210910 VerbElided +211107 Minor +211170 Verbless +211230 Minor +211280 VerbElided +211329 Minor +211380 Minor +211464 Verbless +211467 Verbless +211479 Verbless +211491 Minor +211503 VerbElided +211612 Minor +211623 Minor +211721 Minor +211746 Verbless +211805 Minor +212090 VerbElided +212096 Verbless +212128 VerbElided +212272 Minor +Minor +212279 Minor +212346 Verbless +212353 Minor +212359 Minor +212363 VerbElided +212379 Verbless +212389 Verbless +212399 Minor +212465 Minor +212492 VerbElided +212711 Verbless +212723 Minor +212751 Verbless +212833 Minor +212887 Verbless +212922 Minor +212931 Minor +213024 VerbElided +213047 Minor +213057 Minor +213146 Verbless +213298 Minor +213544 VerbElided +213646 Minor +213655 Minor +213757 VerbElided +213786 VerbElided +213795 Verbless +213835 VerbElided +213958 Verbless +213972 Minor +214224 Verbless +214364 Verbless +214367 Verbless +214501 Verbless +214545 Minor +Minor +214552 Minor +214554 Minor +214567 VerbElided +214647 Minor +Minor +214671 Minor +Minor +214674 Minor +214721 VerbElided +214807 Minor +Minor +Minor +214838 VerbElided +214964 Minor +Minor +214996 Minor +215254 Verbless +215294 Verbless +215297 Verbless +215347 VerbElided +215391 Minor +215436 VerbElided +215706 Minor +Minor +215737 VerbElided +215775 VerbElided +215805 Minor +Minor +215867 Verbless +215924 VerbElided +215939 VerbElided +215997 VerbElided +216116 Minor +216172 Verbless +216314 VerbElided +216319 VerbElided +216362 Verbless +216382 VerbElided +216608 Minor +216710 VerbElided +216815 VerbElided +216865 Minor +216938 VerbElided +217038 VerbElided +217066 VerbElided +217087 Verbless +217134 Minor +217136 Verbless +217152 VerbElided +217161 Minor +217309 Verbless +217317 Verbless +217338 Verbless +Verbless +217408 Verbless +217414 Verbless +217429 Verbless +217537 Minor +217589 Verbless +217664 Verbless +Verbless +217765 VerbElided +217781 VerbElided +217799 VerbElided +217882 VerbElided +218106 Verbless +218122 Minor +218187 Verbless +218271 Verbless +218281 Minor +218488 Verbless +218683 VerbElided +218732 VerbElided +218933 VerbElided +218937 VerbElided +219065 Verbless +219211 Minor +219349 Minor +Minor +219383 Verbless +219546 Verbless +219578 Minor +Minor +219642 VerbElided +219685 Minor +Minor +219692 Minor +219721 Minor +219774 Minor +Minor +219856 Minor +219987 Minor +220058 Minor +Minor +220085 Minor +220113 Minor +220134 Verbless +220140 Minor +Minor +220145 Verbless +220202 VerbElided +220460 VerbElided +220573 Verbless +220630 Minor +220791 VerbElided +220803 Minor +220827 VerbElided +221207 VerbElided +221249 VerbElided +221295 Minor +221345 Minor +221377 Minor +221457 Minor +221536 Minor +221551 Minor +Minor +221555 Verbless +221562 Minor +221631 Minor +221695 Verbless +221699 Verbless +221718 Minor +221729 Minor +221753 Minor +221763 VerbElided +221852 Verbless +221967 Minor +221996 VerbElided +222121 Minor +222161 Minor +222176 Minor +222431 VerbElided +222434 VerbElided +222437 VerbElided +222561 Verbless +222620 Verbless +222699 Minor +Minor +222936 VerbElided +223003 VerbElided +223088 Minor +223106 VerbElided +223121 Verbless +223278 Minor +223342 Verbless +223344 Verbless +223367 Minor +223400 Minor +223459 VerbElided +223470 VerbElided +223473 VerbElided +223486 VerbElided +223502 VerbElided +223533 Verbless +223628 Minor +223633 Minor +223639 Minor +223645 Minor +223723 Verbless +223730 Verbless +223735 Verbless +223739 Verbless +223749 Verbless +223754 Verbless +223759 Verbless +223765 Verbless +223774 VerbElided +223794 Verbless +223821 Verbless +223875 VerbElided +223879 VerbElided +223894 VerbElided +223915 Verbless +223936 Verbless +223940 Verbless +223982 Verbless +223998 VerbElided +224072 Verbless +224077 VerbElided +224080 VerbElided +224084 VerbElided +224086 VerbElided +224097 Verbless +224101 Verbless +224106 Verbless +224109 Verbless +224116 VerbElided +224145 VerbElided +224192 Verbless +224202 Verbless +224208 Verbless +224236 Verbless +224238 Verbless +224267 Verbless +224271 Verbless +224289 VerbElided +224301 VerbElided +224308 Verbless +224323 VerbElided +224330 VerbElided +224399 VerbElided +224436 VerbElided +224498 VerbElided +224508 VerbElided +224511 VerbElided +224590 VerbElided +224605 VerbElided +224618 VerbElided +224663 VerbElided +224695 Verbless +224705 Verbless +224710 Verbless +224747 VerbElided +224919 Verbless +224922 Verbless +224956 VerbElided +224969 Verbless +224973 VerbElided +224981 Verbless +224994 Verbless +224997 Verbless +225061 Verbless +225079 VerbElided +225086 Verbless +225091 Verbless +225104 Minor +225160 Minor +225220 Verbless +225230 VerbElided +225251 Verbless +225290 Verbless +225293 Verbless +225308 VerbElided +225353 Verbless +225359 VerbElided +225382 VerbElided +225393 Minor +225403 VerbElided +225455 Verbless +225465 VerbElided +225482 VerbElided +225487 Verbless +225512 Minor +225557 VerbElided +225559 Verbless +225566 Verbless +225571 Verbless +225581 Verbless +225620 Verbless +225623 Verbless +225627 Verbless +225660 Minor +225662 VerbElided +225699 Minor +225715 Verbless +225720 Verbless +225723 Verbless +225733 Verbless +225797 VerbElided +225861 Verbless +225880 VerbElided +225914 Verbless +225937 Verbless +225941 Verbless +225945 Verbless +225969 VerbElided +226046 Verbless +226069 Verbless +226082 Verbless +226085 Verbless +226099 Minor +226103 VerbElided +226113 Minor +226129 Minor +226156 VerbElided +226206 Verbless +226226 Verbless +226280 Minor +226308 VerbElided +226311 VerbElided +226366 VerbElided +226378 Verbless +226448 VerbElided +226452 VerbElided +226455 VerbElided +226479 Minor +Verbless +226502 VerbElided +226521 Verbless +226532 Minor +226574 Verbless +226634 Verbless +226672 Verbless +226685 Minor +226691 VerbElided +226695 VerbElided +226714 VerbElided +226801 Minor +226837 VerbElided +226845 VerbElided +226911 Verbless +226924 Verbless +226929 Verbless +226964 Verbless +226970 Verbless +226976 Verbless +226984 Verbless +227019 VerbElided +227030 VerbElided +227059 Verbless +227107 Minor +227150 Verbless +227155 Verbless +227162 Verbless +227198 Minor +227206 Verbless +227210 Verbless +227229 Verbless +227242 Minor +227246 Minor +227260 VerbElided +227277 Verbless +227331 Verbless +227348 VerbElided +VerbElided +227356 VerbElided +VerbElided +227361 VerbElided +227367 VerbElided +227372 VerbElided +227376 VerbElided +227380 VerbElided +227385 Verbless +227395 Verbless +227400 Verbless +227456 Verbless +227463 Minor +227472 Verbless +227514 VerbElided +227578 Verbless +227585 Verbless +227611 VerbElided +227615 VerbElided +227619 VerbElided +227623 VerbElided +227630 VerbElided +227643 Minor +227652 VerbElided +227665 VerbElided +227672 Verbless +227682 Verbless +227686 Verbless +227716 VerbElided +227719 VerbElided +227722 VerbElided +227743 VerbElided +227774 Minor +227918 Minor +227932 Verbless +227937 Minor +227970 Verbless +227980 Verbless +227987 Verbless +228011 Verbless +228013 Verbless +228020 Verbless +228039 Verbless +228054 Verbless +228060 Verbless +228185 Minor +228192 VerbElided +228194 Minor +228241 Minor +228446 Minor +228491 Verbless +228497 Minor +228706 Minor +228732 VerbElided +228762 Verbless +228777 Verbless +228826 Minor +228870 Minor +228910 Verbless +228914 VerbElided +228974 Verbless +228991 Minor +229021 Minor +229039 Verbless +229041 Verbless +229043 Verbless +229065 VerbElided +229131 Verbless +229133 Verbless +229135 Verbless +229183 VerbElided +229185 VerbElided +229187 VerbElided +229207 Verbless +229215 Minor +229220 Verbless +229222 Verbless +Verbless +229289 Minor +229306 VerbElided +229355 VerbElided +229404 Verbless +229428 VerbElided +229440 VerbElided +229453 VerbElided +229465 VerbElided +229522 Minor +229526 VerbElided +229536 VerbElided +229549 Verbless +229569 VerbElided +Verbless +229580 Verbless +229605 VerbElided +229609 VerbElided +229716 VerbElided +229772 Verbless +229782 VerbElided +229798 Verbless +229813 Verbless +229815 Verbless +229819 VerbElided +229887 Minor +229898 VerbElided +229955 Verbless +229958 Verbless +229962 Verbless +229964 Verbless +229967 Verbless +229969 Verbless +230021 VerbElided +230083 Verbless +230088 Verbless +230098 VerbElided +230111 Verbless +230177 Verbless +230225 VerbElided +230262 Verbless +230290 VerbElided +230313 VerbElided +230321 Minor +230347 VerbElided +230369 VerbElided +230429 Verbless +230433 Verbless +230446 Verbless +230452 Verbless +230557 VerbElided +230580 VerbElided +230591 VerbElided +230603 VerbElided +230633 VerbElided +230650 VerbElided +230652 VerbElided +230661 Verbless +230720 Minor +230777 Minor +230784 Minor +230825 VerbElided +230837 Verbless +230868 Minor +230895 Verbless +230929 Minor +230945 Verbless +230951 Verbless +230957 Verbless +230963 Verbless +231039 VerbElided +231117 VerbElided +231173 Verbless +231179 Verbless +231196 Verbless +231199 Verbless +231204 Verbless +231208 Verbless +231211 Verbless +231216 Verbless +231220 Verbless +231224 Verbless +231376 VerbElided +231451 VerbElided +231473 VerbElided +231528 Verbless +231558 VerbElided +231611 Verbless +231639 Minor +231668 VerbElided +VerbElided +231674 VerbElided +231694 Minor +231769 VerbElided +231841 VerbElided +231844 Verbless +231864 Minor +231898 Verbless +231950 VerbElided +231958 VerbElided +231982 VerbElided +231996 Verbless +232093 Verbless +232118 Verbless +232122 Verbless +232164 Verbless +232189 Verbless +232198 VerbElided +232214 Verbless +232217 Verbless +232225 Verbless +232234 Verbless +232277 VerbElided +232402 VerbElided +232488 Verbless +232515 Minor +232539 Minor +232567 Verbless +232571 Verbless +232573 VerbElided +232582 VerbElided +232591 VerbElided +232600 VerbElided +232631 VerbElided +232636 VerbElided +232642 VerbElided +232645 VerbElided +232649 VerbElided +232652 VerbElided +232699 VerbElided +232751 Verbless +232758 Verbless +232784 Verbless +232786 Verbless +232798 VerbElided +232877 Verbless +232883 VerbElided +VerbElided +VerbElided +VerbElided +VerbElided +232893 Verbless +232896 Verbless +232899 Verbless +232902 Verbless +233026 VerbElided +233030 VerbElided +233034 VerbElided +233076 VerbElided +233095 Verbless +233116 VerbElided +233152 Verbless +233156 VerbElided +233167 Minor +233192 VerbElided +233242 Verbless +233256 Verbless +233263 Minor +233359 VerbElided +233364 Minor +233402 VerbElided +233464 Minor +233483 VerbElided +233544 Verbless +233549 VerbElided +233617 Minor +233635 Minor +233681 VerbElided +233697 VerbElided +233705 VerbElided +233740 VerbElided +233786 Verbless +233853 Verbless +233870 VerbElided +233876 Verbless +VerbElided +233929 Verbless +233931 VerbElided +233970 Minor +234028 Minor +234042 VerbElided +234059 VerbElided +234065 Verbless +234071 Verbless +234073 Verbless +234076 Verbless +234079 Verbless +234082 VerbElided +234091 Verbless +234096 Verbless +234101 Verbless +234104 Verbless +234107 Verbless +234114 VerbElided +234159 VerbElided +234168 VerbElided +234171 VerbElided +234173 VerbElided +234177 Verbless +234181 Verbless +234188 Verbless +234194 Verbless +234213 Minor +234284 Minor +234288 Minor +234294 Verbless +234300 Verbless +234307 VerbElided +234321 Minor +234339 VerbElided +234439 Verbless +234509 Minor +234584 VerbElided +234597 Minor +234599 Verbless +234606 Verbless +234614 VerbElided +234642 VerbElided +234732 Verbless +234748 Minor +234780 VerbElided +234841 VerbElided +234865 Verbless +234957 Verbless +234964 VerbElided +234973 Verbless +235036 Verbless +235208 Verbless +235214 Verbless +235221 Verbless +235232 VerbElided +235237 VerbElided +235241 VerbElided +235307 Verbless +235363 Verbless +235387 VerbElided +235444 VerbElided +235470 VerbElided +VerbElided +235488 VerbElided +235493 VerbElided +235568 VerbElided +235571 VerbElided +235575 Verbless +235610 Verbless +235674 VerbElided +235710 Verbless +235759 VerbElided +235765 Verbless +235769 Verbless +235826 Verbless +235897 VerbElided +235899 VerbElided +235933 VerbElided +235988 Verbless +235999 Verbless +236131 Verbless +236133 Verbless +236157 Verbless +236167 Minor +236186 VerbElided +236200 Verbless +236204 Verbless +236209 Verbless +236213 Verbless +236217 Verbless +236274 Minor +236310 Verbless +236312 Verbless +236336 Verbless +Verbless +236352 VerbElided +236393 VerbElided +236452 VerbElided +236535 Minor +236570 VerbElided +236591 VerbElided +236690 VerbElided +236720 VerbElided +VerbElided +Verbless +236749 VerbElided +236754 VerbElided +236785 Verbless +236795 Verbless +236797 VerbElided +236847 Verbless +236856 VerbElided +236858 Verbless +236866 Minor +236868 Verbless +236948 Verbless +236952 VerbElided +236994 VerbElided +236998 VerbElided +237045 VerbElided +237123 VerbElided +237140 Verbless +237143 Verbless +237177 Verbless +237183 Verbless +237229 Verbless +237264 Verbless +237270 Verbless +237275 Verbless +237314 VerbElided +237378 Minor +237461 Verbless +237465 VerbElided +237550 VerbElided +237554 Verbless +237564 Verbless +237596 VerbElided +237600 VerbElided +237612 VerbElided +237665 VerbElided +237669 VerbElided +237674 VerbElided +237681 VerbElided +237684 VerbElided +237686 VerbElided +237688 VerbElided +237690 VerbElided +237708 Verbless +237710 Verbless +237712 Verbless +237714 Verbless +237716 Verbless +237718 Verbless +237720 Verbless +237722 Verbless +237725 Verbless +237728 Verbless +237730 Verbless +237734 Verbless +237736 Verbless +237741 Verbless +237824 Minor +237831 VerbElided +237836 VerbElided +237852 Minor +237859 VerbElided +237862 VerbElided +237887 VerbElided +238034 VerbElided +238041 VerbElided +238068 Minor +238089 VerbElided +238103 Minor +238123 VerbElided +238233 Verbless +238270 VerbElided +238306 Minor +VerbElided +238333 Verbless +238352 VerbElided +238379 VerbElided +238418 Minor +238489 Minor +238506 VerbElided +238601 VerbElided +238613 VerbElided +238695 VerbElided +238723 VerbElided +238751 VerbElided +238781 VerbElided +238785 VerbElided +238868 Verbless +238870 Verbless +238881 VerbElided +238894 VerbElided +238911 Verbless +238964 Verbless +238969 Minor +238998 Verbless +239027 Minor +239066 Verbless +239113 Verbless +239136 Minor +239158 Minor +239163 VerbElided +239167 VerbElided +239169 Minor +239197 Verbless +239200 Verbless +239210 VerbElided +239236 Verbless +239335 Verbless +239341 Verbless +239412 Minor +239423 Verbless +239468 VerbElided +239471 VerbElided +239473 VerbElided +239475 Minor +239501 VerbElided +239504 VerbElided +239508 Verbless +239517 Verbless +239541 VerbElided +239546 Minor +239570 Minor +239602 VerbElided +239653 Minor +239661 Minor +239666 Verbless +239671 VerbElided +239678 Minor +239715 Minor +239768 VerbElided +239778 Verbless +239806 Minor +239826 Minor +239830 VerbElided +239852 VerbElided +239881 VerbElided +239955 Minor +240000 VerbElided +240066 VerbElided +240109 VerbElided +240165 Minor +Minor +240168 VerbElided +240186 VerbElided +240197 Verbless +240291 VerbElided +240414 Verbless +240425 Verbless +240552 VerbElided +240613 Verbless +240615 Verbless +240620 Verbless +240645 VerbElided +240747 VerbElided +240801 Verbless +240901 Verbless +241012 Verbless +241036 Minor +241065 Minor +241095 Verbless +241108 Verbless +241424 Verbless +241474 VerbElided +241507 VerbElided +241514 VerbElided +241555 Verbless +241561 VerbElided +241564 Verbless +241611 Minor +241628 VerbElided +241630 VerbElided +241642 Verbless +241683 Minor +241688 VerbElided +241696 Verbless +241701 Verbless +241717 Minor +241762 VerbElided +241833 VerbElided +241843 Minor +241872 Minor +241885 Minor +241900 VerbElided +241904 VerbElided +241907 VerbElided +241910 VerbElided +241912 VerbElided +241922 VerbElided +241925 VerbElided +241936 Verbless +241938 Verbless +241942 Minor +242155 VerbElided +242167 Verbless +242179 VerbElided +242198 VerbElided +242324 Minor +242362 VerbElided +242375 VerbElided +242387 VerbElided +242394 VerbElided +242451 Verbless +242455 Verbless +242462 VerbElided +242487 Verbless +242490 Verbless +242563 Verbless +242566 Verbless +242597 Verbless +242601 VerbElided +242605 VerbElided +242609 VerbElided +242626 VerbElided +242638 VerbElided +242645 Verbless +242667 VerbElided +242702 Verbless +242710 Minor +242716 Verbless +242720 Verbless +242767 VerbElided +242829 VerbElided +242840 VerbElided +242945 Minor +242950 Verbless +242955 Verbless +242957 Verbless +242994 VerbElided +242997 Verbless +Verbless +243001 Verbless +243003 Verbless +243006 Verbless +243008 Verbless +243108 Minor +243113 VerbElided +243136 Verbless +243148 VerbElided +243154 Minor +243173 Verbless +243179 Verbless +243183 Verbless +243188 Verbless +243193 Verbless +243229 Minor +243239 Minor +243251 Minor +243254 Minor +243269 Verbless +243286 Verbless +243323 Minor +243326 Minor +243329 Verbless +Verbless +Verbless +Verbless +Verbless +243336 Verbless +243339 Verbless +243417 Minor +243435 VerbElided +243504 Minor +243521 VerbElided +243527 Verbless +243537 VerbElided +243557 VerbElided +243824 VerbElided +243868 Verbless +243957 Verbless +244221 Verbless +244320 VerbElided +244417 Verbless +244419 Verbless +244449 VerbElided +244496 Minor +244514 Minor +244522 Minor +244532 Minor +244541 Minor +244549 Minor +244559 VerbElided +VerbElided +244597 Minor +244817 VerbElided +244827 Verbless +244831 VerbElided +244845 VerbElided +244885 Minor +245005 Minor +245034 Verbless +245071 Verbless +245074 Verbless +245087 VerbElided +245116 Minor +245152 VerbElided +245156 VerbElided +245203 Minor +245225 VerbElided +245245 Verbless +245266 Minor +245285 VerbElided +245296 Verbless +245304 Verbless +245423 VerbElided +245426 Minor +245503 VerbElided +245531 Minor +245564 Verbless +245583 Verbless +245587 VerbElided +245604 Verbless +245618 VerbElided +245660 Minor +245687 Minor +245695 VerbElided +245784 Minor +245796 VerbElided +245809 VerbElided +245820 Minor +245827 VerbElided +245846 VerbElided +245879 VerbElided +245912 Minor +245936 Minor +245965 Verbless +246011 Verbless +246018 Minor +246034 Verbless +246043 VerbElided +246058 VerbElided +246069 Minor +246139 VerbElided +246233 VerbElided +246247 Minor +246346 VerbElided +246425 Minor +246455 Minor +246505 Minor +246519 VerbElided +246532 Verbless +246575 Minor +246588 VerbElided +246666 Minor +246688 VerbElided +246692 VerbElided +246705 Verbless +246721 Verbless +246731 VerbElided +246751 VerbElided +246782 VerbElided +246827 VerbElided +246943 Minor +246946 Minor +247004 Verbless +247024 Verbless +Verbless +247105 VerbElided +247128 Verbless +247188 VerbElided +Verbless +247209 VerbElided +Verbless +247232 VerbElided +247323 Verbless +247327 Verbless +247384 Verbless +247480 VerbElided +247482 VerbElided +247484 VerbElided +247609 Verbless +Verbless +247655 VerbElided +247670 Verbless +247679 VerbElided +247740 Verbless +247893 Minor +247984 Minor +248000 VerbElided +248011 Verbless +248023 Minor +248040 Verbless +248044 VerbElided +248061 VerbElided +248118 VerbElided +248143 VerbElided +248309 Minor +248386 VerbElided +248407 Verbless +248526 Verbless +248529 Verbless +248621 Verbless +248624 Verbless +248899 VerbElided +248924 VerbElided +248926 VerbElided +248952 VerbElided +249028 Minor +249058 Verbless +249064 Verbless +249068 VerbElided +249113 VerbElided +249167 Verbless +249220 Verbless +249245 Verbless +249250 Verbless +249325 VerbElided +249437 Verbless +249503 Verbless +249594 Verbless +249599 VerbElided +249626 VerbElided +249690 Minor +249708 Verbless +249766 Verbless +249780 VerbElided +249782 VerbElided +249797 VerbElided +249820 Minor +Minor +249865 Verbless +249963 Verbless +249970 VerbElided +249976 VerbElided +249980 Minor +249982 Verbless +249990 Verbless +250016 Minor +250036 VerbElided +250041 VerbElided +250044 VerbElided +250204 VerbElided +250208 VerbElided +250222 Verbless +250249 VerbElided +250337 Minor +250354 VerbElided +250378 Verbless +250396 VerbElided +250430 VerbElided +250480 Minor +250530 VerbElided +250540 VerbElided +250552 VerbElided +250569 VerbElided +250598 VerbElided +250718 VerbElided +250739 Verbless +250772 Verbless +250779 Verbless +250855 VerbElided +250870 VerbElided +250880 VerbElided +250892 Verbless +250898 VerbElided +250947 Verbless +251046 Verbless +251101 Verbless +251106 Verbless +251108 Verbless +251115 Minor +251125 Verbless +251158 Verbless +251199 Verbless +251223 Verbless +251291 Verbless +251316 Verbless +251411 Verbless +251476 Verbless +251499 VerbElided +251510 VerbElided +251519 VerbElided +251530 Verbless +251595 VerbElided +251608 VerbElided +251622 VerbElided +251663 Verbless +251747 VerbElided +251772 Verbless +251809 VerbElided +251840 Verbless +251865 Verbless +251879 Verbless +251899 Verbless +251917 Verbless +251944 VerbElided +252096 Verbless +Verbless +252147 Verbless +252179 Verbless +252189 VerbElided +252250 VerbElided +252303 Verbless +252309 Verbless +252333 Minor +252437 Verbless +252464 VerbElided +Verbless +252472 Minor +252495 VerbElided +252520 Verbless +252536 Verbless +252556 VerbElided +252606 VerbElided +252610 VerbElided +252615 Verbless +252859 Verbless +252887 VerbElided +252894 Verbless +252973 Verbless +253029 Verbless +253168 VerbElided +253288 VerbElided +Minor +253313 VerbElided +253317 Verbless +253363 VerbElided +253374 Verbless +253384 Verbless +253444 Verbless +253562 VerbElided +253614 Verbless +253637 VerbElided +253647 Verbless +253651 Verbless +253659 Verbless +253679 Verbless +253702 Verbless +253708 VerbElided +253718 Verbless +253830 VerbElided +253833 Verbless +253886 VerbElided +253892 Minor +253898 Minor +253933 VerbElided +253938 VerbElided +253954 Minor +254021 Verbless +254039 VerbElided +254047 VerbElided +254080 Verbless +254126 Minor +254161 Minor +254172 Verbless +254176 Verbless +254207 Verbless +254216 Verbless +254236 Minor +254264 Verbless +254290 Minor +254353 Minor +254408 VerbElided +254420 VerbElided +254463 Verbless +254470 Minor +254472 Verbless +254514 Verbless +254556 Minor +254567 Minor +254617 VerbElided +254645 Minor +254659 Verbless +254718 Verbless +254720 Verbless +254730 Verbless +254767 Verbless +254796 Minor +254812 Minor +254818 VerbElided +254824 Verbless +254861 Verbless +254866 Verbless +254869 Verbless +254879 Verbless +254894 Verbless +254896 Verbless +254900 Verbless +254950 Minor +255014 Minor +255017 Minor +255032 VerbElided +255043 Minor +255077 Minor +255084 Minor +255116 VerbElided +255154 Minor +255243 Minor +255275 Minor +255286 Minor +255319 Minor +255336 Verbless +255435 Minor +255461 VerbElided +255488 Verbless +255654 Verbless +255677 Verbless +255707 VerbElided +255710 VerbElided +255774 Verbless +255778 Verbless +255829 Verbless +255844 Verbless +255877 VerbElided +255888 Minor +255896 Verbless +255928 Verbless +255930 Verbless +255933 Verbless +255936 Verbless +255940 Minor +255963 VerbElided +256008 Verbless +256017 Verbless +256030 Minor +256046 Verbless +256137 Minor +256214 Minor +256219 VerbElided +256224 VerbElided +256235 Verbless +256243 VerbElided +256266 VerbElided +256284 Verbless +256288 Verbless +256293 Verbless +256330 Verbless +256361 Verbless +256376 VerbElided +256462 Verbless +256527 Verbless +256539 VerbElided +256549 VerbElided +256555 VerbElided +256576 Minor +256579 Minor +256614 Verbless +256641 VerbElided +256651 VerbElided +256664 Verbless +256666 Verbless +256746 Minor +256787 VerbElided +256808 Minor +256831 Minor +256867 VerbElided +256873 VerbElided +256955 VerbElided +256960 VerbElided +256965 VerbElided +256970 VerbElided +256975 VerbElided +256980 VerbElided +257013 Minor +257149 VerbElided +257295 VerbElided +257341 Verbless +257360 Verbless +257469 VerbElided +257475 Minor +257572 Minor +257576 Verbless +257582 Verbless +257660 Minor +257699 VerbElided +257710 Minor +257734 VerbElided +257740 Verbless +257791 Verbless +257914 Minor +257936 VerbElided +257991 Minor +258003 Minor +258087 Minor +258096 Minor +258103 Minor +258109 Minor +258115 Minor +258122 Minor +258198 Minor +258265 Verbless +258297 Minor +258321 Verbless +258333 Minor +258367 Minor +258415 Minor +258484 Minor +258555 VerbElided +258590 Verbless +258596 Minor +258676 Minor +258713 Minor +258764 VerbElided +258773 VerbElided +258780 Minor +258837 Minor +258849 VerbElided +258892 Minor +258959 Minor +258988 VerbElided +259020 VerbElided +259204 Verbless +259214 Verbless +259230 Verbless +259234 VerbElided +259237 VerbElided +259260 Verbless +259500 Minor +259505 VerbElided +259571 Minor +259575 VerbElided +259639 Minor +259706 VerbElided +259715 Minor +259750 Minor +259757 VerbElided +259822 Minor +259825 VerbElided +259877 VerbElided +259886 VerbElided +259909 Minor +260044 VerbElided +260050 VerbElided +260078 Verbless +260156 Minor +260191 Minor +260263 Minor +260265 Verbless +260317 Verbless +260320 VerbElided +260328 VerbElided +260347 Verbless +260372 Minor +260401 Minor +260423 Minor +260435 Verbless +260528 VerbElided +260553 Verbless +260555 VerbElided +260557 Verbless +260563 Verbless +260572 VerbElided +260576 VerbElided +260595 VerbElided +260663 Minor +260742 Verbless +260781 VerbElided +260810 Minor +260856 VerbElided +260866 Verbless +260933 Verbless +260995 VerbElided +261014 Minor +261035 VerbElided +261060 Verbless +261080 Verbless +261193 Minor +261482 Minor +261572 VerbElided +261577 Verbless +261673 VerbElided +261677 Minor +261745 Verbless +261752 Verbless +261759 Verbless +261774 Verbless +261801 Verbless +261807 Verbless +261810 Verbless +261826 Verbless +261831 Verbless +261842 Verbless +261865 Verbless +261928 Minor +261977 Verbless +262242 Minor +262318 Minor +262375 Verbless +262378 Verbless +262413 Minor +262471 Minor +262514 VerbElided +262722 VerbElided +262726 VerbElided +262730 VerbElided +262734 VerbElided +262738 VerbElided +262742 VerbElided +262746 VerbElided +262750 VerbElided +262754 VerbElided +262758 VerbElided +262794 Verbless +262803 VerbElided +262842 Minor +262863 Minor +262885 Minor +263155 VerbElided +263224 VerbElided +263237 VerbElided +263289 VerbElided +263332 VerbElided +263383 Verbless +263391 Verbless +263397 Verbless +263399 Verbless +263420 Verbless +263438 Verbless +263441 Verbless +263460 Verbless +263534 Verbless +263564 Verbless +263618 Verbless +263697 Verbless +263703 Verbless +263709 Verbless +263733 VerbElided +263906 VerbElided +263947 Verbless +264086 Verbless +264287 Minor +264319 VerbElided +264391 Verbless +264397 Verbless +264431 Verbless +264511 VerbElided +264627 Minor +264635 VerbElided +264700 VerbElided +264771 Verbless +264777 Verbless +264791 Verbless +264796 Verbless +264816 VerbElided +264851 Verbless +264941 VerbElided +264975 VerbElided +265113 VerbElided +265142 Verbless +265158 Verbless +265184 VerbElided +265189 VerbElided +265193 Verbless +265222 VerbElided +265239 Verbless +265439 Verbless +265447 Minor +265466 VerbElided +265481 VerbElided +265699 Minor +265710 Minor +265719 Minor +265922 Minor +265950 Minor +Minor +266067 VerbElided +266115 VerbElided +266174 Verbless +266441 Verbless +266476 Minor +266538 Verbless +266561 Minor +266704 Minor +266788 Verbless +266826 Minor +Minor +266945 Minor +Minor +266993 Verbless +267013 Minor +Minor +267036 Minor +267149 Verbless +267188 Minor +267219 Minor +267229 Minor +267258 Minor +267303 Verbless +267334 VerbElided +267383 Verbless +267388 Verbless +267400 VerbElided +267687 VerbElided +267738 Verbless +267743 Verbless +267802 Verbless +267852 Verbless +268028 Verbless +268089 Verbless +268122 Minor +268210 VerbElided +268225 Verbless +268239 Verbless +268243 Verbless +268247 Verbless +268251 Verbless +268263 Verbless +268298 Verbless +268330 Verbless +268337 Verbless +268340 Verbless +268353 Verbless +268357 Verbless +268359 Verbless +268361 Verbless +268363 Verbless +268365 Verbless +268367 Verbless +268369 Verbless +268371 Verbless +268373 Verbless +268375 Verbless +268377 Verbless +268382 Verbless +268394 Verbless +268436 Verbless +268488 VerbElided +268515 Verbless +268536 Verbless +268569 Verbless +268602 Verbless +268628 Verbless +268638 Verbless +268667 VerbElided +268718 Verbless +268728 Verbless +268743 Verbless +268764 Verbless +268888 Minor +268891 Minor +Minor +268895 Verbless diff --git a/tf/0.1.1/degree.tf b/tf/0.1.1/degree.tf new file mode 100644 index 0000000..e668b15 --- /dev/null +++ b/tf/0.1.1/degree.tf @@ -0,0 +1,527 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Degree +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +524 superlative +1084 comparative +1242 comparative +1914 superlative +1920 superlative +1951 comparative +2101 superlative +2960 comparative +3837 comparative +4285 comparative +4894 superlative +5098 comparative +5719 comparative +5750 comparative +5756 comparative +5762 comparative +5881 superlative +5919 comparative +5958 comparative +6188 comparative +6794 comparative +6823 comparative +6870 comparative +6879 superlative +6885 superlative +7559 comparative +7567 comparative +8635 comparative +9585 comparative +10260 comparative +10307 comparative +11311 comparative +11436 superlative +11438 superlative +11440 superlative +superlative +11570 superlative +11573 superlative +11587 superlative +11590 comparative +11608 superlative +11649 superlative +11676 superlative +superlative +11680 superlative +superlative +11880 superlative +11939 comparative +12098 superlative +12143 superlative +12400 comparative +12513 superlative +12603 comparative +12672 comparative +12674 superlative +12680 comparative +13051 comparative +13227 superlative +13252 comparative +13403 superlative +13655 comparative +13718 comparative +13749 comparative +13783 comparative +13859 comparative +15118 comparative +15440 comparative +15617 superlative +15713 superlative +15766 comparative +15945 superlative +16490 comparative +16596 comparative +16671 comparative +16717 comparative +16978 comparative +17012 comparative +17148 comparative +17250 comparative +17568 comparative +17946 superlative +17948 comparative +17950 superlative +18167 comparative +18403 comparative +19126 comparative +20093 superlative +20590 comparative +20605 comparative +20878 superlative +21849 superlative +22496 comparative +22537 comparative +23035 comparative +23521 comparative +24261 comparative +24273 superlative +24277 superlative +24909 comparative +25028 superlative +25030 superlative +25033 superlative +superlative +25275 superlative +25584 superlative +25880 comparative +26065 superlative +26319 superlative +26347 superlative +26458 superlative +26464 superlative +26512 comparative +26562 comparative +26698 comparative +26746 comparative +27569 superlative +28113 comparative +28241 comparative +28583 comparative +29380 superlative +29434 comparative +29609 superlative +30088 superlative +30144 superlative +30695 superlative +30779 superlative +30849 superlative +30955 superlative +31842 comparative +31903 comparative +33408 comparative +34332 superlative +34676 comparative +35109 comparative +35133 comparative +35142 comparative +35148 comparative +35397 comparative +35407 comparative +36099 superlative +36840 comparative +36997 comparative +37481 comparative +37523 comparative +37963 comparative +38000 comparative +38916 comparative +38985 comparative +38995 superlative +39001 superlative +39110 comparative +39134 comparative +39517 comparative +39607 comparative +39845 comparative +39927 comparative +39976 superlative +40380 comparative +40564 superlative +41111 superlative +41114 superlative +41117 superlative +41120 superlative +41339 comparative +41363 superlative +41373 superlative +41385 comparative +41521 superlative +42020 comparative +42046 comparative +42217 superlative +42265 comparative +42494 superlative +42558 comparative +42594 superlative +42603 superlative +42723 comparative +43989 comparative +44495 superlative +44512 superlative +44840 superlative +44985 superlative +45024 comparative +45467 superlative +45490 comparative +45698 comparative +45732 comparative +46629 comparative +46652 comparative +46658 comparative +46667 comparative +46943 comparative +47073 comparative +49240 superlative +49478 superlative +49834 comparative +50015 comparative +50955 comparative +51125 comparative +51622 comparative +51820 comparative +51929 superlative +52231 comparative +52507 comparative +53375 superlative +53404 superlative +53476 superlative +53657 superlative +53785 comparative +54440 comparative +54545 superlative +54745 comparative +54894 superlative +54922 comparative +54925 superlative +55761 comparative +55997 comparative +57061 comparative +57236 superlative +57621 superlative +58472 superlative +59058 superlative +59381 comparative +59387 comparative +59570 comparative +59721 comparative +59977 comparative +60286 comparative +60367 comparative +60554 comparative +60700 comparative +62902 comparative +63332 superlative +63456 superlative +63597 comparative +63602 superlative +63661 superlative +64421 comparative +64504 comparative +64680 superlative +64824 superlative +65431 superlative +65461 comparative +65884 comparative +66585 comparative +66636 comparative +66796 comparative +66881 comparative +66909 comparative +67296 comparative +68171 comparative +69154 superlative +72191 comparative +72382 superlative +73243 comparative +73538 superlative +73581 superlative +74021 comparative +74141 comparative +74186 comparative +74222 comparative +74484 comparative +74520 comparative +74601 comparative +74861 comparative +74978 superlative +75099 superlative +75223 comparative +75578 superlative +75693 comparative +75799 superlative +75930 comparative +75945 comparative +76534 comparative +76640 comparative +76697 comparative +77284 comparative +77593 comparative +77739 comparative +77752 superlative +78278 comparative +78437 comparative +79730 comparative +79743 comparative +79772 comparative +79905 comparative +79988 superlative +80149 comparative +80193 superlative +80199 comparative +80292 comparative +80398 comparative +80476 comparative +80572 comparative +80618 superlative +80681 comparative +80778 comparative +80838 comparative +80870 comparative +81209 superlative +81551 superlative +81587 superlative +81926 comparative +82038 comparative +82443 superlative +82605 superlative +82773 superlative +82905 comparative +86641 superlative +87001 comparative +87622 superlative +90557 comparative +90566 comparative +91317 superlative +91451 superlative +91895 superlative +92333 comparative +92840 comparative +92865 comparative +93425 comparative +93619 comparative +93869 comparative +94260 comparative +94264 comparative +94875 comparative +94885 comparative +94891 comparative +94898 comparative +94916 comparative +95011 comparative +95212 comparative +95274 comparative +95662 superlative +95700 superlative +95857 superlative +95900 comparative +95915 superlative +95926 superlative +95958 comparative +96087 comparative +96174 superlative +96456 superlative +96463 superlative +96480 superlative +96554 superlative +97299 comparative +97578 comparative +97589 comparative +98316 comparative +99587 comparative +99678 comparative +99754 comparative +100127 comparative +100968 superlative +101095 superlative +101107 comparative +102835 comparative +104557 comparative +104880 comparative +105102 comparative +105733 superlative +106168 superlative +106314 comparative +106481 comparative +106487 comparative +107003 comparative +107978 superlative +108038 superlative +111775 comparative +111821 superlative +111831 superlative +112066 superlative +112523 comparative +112530 comparative +112533 comparative +112536 comparative +112619 comparative +112651 comparative +112665 superlative +112691 comparative +112729 comparative +112756 comparative +113507 comparative +113695 comparative +113798 comparative +113873 superlative +113967 comparative +114323 superlative +114509 comparative +114735 comparative +115436 superlative +115485 comparative +115490 comparative +115527 superlative +116022 comparative +116030 comparative +116384 comparative +116480 comparative +116927 comparative +116996 comparative +117022 comparative +117035 comparative +117084 comparative +117112 superlative +117231 comparative +117343 comparative +117398 comparative +117441 comparative +117449 comparative +117505 comparative +117518 comparative +117656 comparative +117663 comparative +117667 comparative +117673 superlative +117823 superlative +117836 superlative +117847 superlative +117926 superlative +117972 superlative +118020 comparative +118022 comparative +118112 superlative +118147 superlative +118244 comparative +118442 comparative +118472 superlative +118787 comparative +118828 comparative +118908 comparative +118926 comparative +119166 comparative +119306 comparative +119350 superlative +119455 comparative +119519 comparative +119722 comparative +119891 superlative +119911 comparative +120274 comparative +120354 comparative +121208 comparative +121264 superlative +121589 comparative +121816 superlative +121999 comparative +122201 superlative +122219 comparative +122350 comparative +122426 superlative +123016 comparative +123181 comparative +123587 comparative +123643 comparative +123646 comparative +123857 superlative +124126 comparative +124345 comparative +124510 superlative +124513 superlative +124515 comparative +124591 superlative +125442 superlative +125459 superlative +126063 comparative +126232 comparative +126549 superlative +126764 comparative +127028 comparative +127273 comparative +127310 comparative +127835 superlative +127861 superlative +128049 superlative +128343 superlative +128346 superlative +128495 superlative +128505 superlative +128575 superlative +128578 superlative +128859 superlative +comparative +128862 superlative +129576 superlative +129641 comparative +129708 superlative +129800 comparative +129928 comparative +129967 comparative +130014 comparative +130096 comparative +130190 comparative +130838 comparative +130892 comparative +131131 superlative +132494 comparative +133305 superlative +133325 superlative +133570 comparative +134059 superlative +134287 superlative +135469 superlative +135864 comparative +136457 superlative +136468 superlative +136732 superlative +136736 superlative +136824 superlative +136942 superlative +136992 superlative +137154 superlative +137595 superlative +137598 superlative diff --git a/tf/0.1.1/discontinuous.tf b/tf/0.1.1/discontinuous.tf new file mode 100644 index 0000000..3ea3221 --- /dev/null +++ b/tf/0.1.1/discontinuous.tf @@ -0,0 +1,6048 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Discontinuous +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +13 true +18 true +27 true +38 true +43 true +48 true +53 true +58 true +63 true +71 true +79 true +84 true +91 true +100 true +105 true +110 true +115 true +120 true +125 true +130 true +135 true +140 true +145 true +150 true +155 true +160 true +173 true +182 true +187 true +192 true +197 true +202 true +207 true +212 true +217 true +222 true +227 true +232 true +247 true +276 true +302 true +318 true +340 true +347 true +349 true +358 true +368 true +406 true +437 true +465 true +477 true +504 true +512 true +521 true +530 true +568 true +578 true +603 true +657 true +688 true +697 true +783 true +801 true +829 true +837 true +852 true +867 true +894 true +911 true +917 true +941 true +959 true +962 true +995 true +1018 true +1034 true +1049 true +1059 true +1071 true +1079 true +1122 true +1145 true +1161 true +1169 true +1180 true +1251 true +1262 true +1303 true +1310 true +1369 true +1383 true +1406 true +1459 true +1481 true +1487 true +1511 true +1525 true +1564 true +1650 true +1773 true +1787 true +1878 true +1905 true +true +1928 true +1941 true +1972 true +1979 true +1995 true +2007 true +2018 true +2108 true +2128 true +2143 true +2175 true +2193 true +2195 true +2204 true +2222 true +2235 true +2242 true +2254 true +2263 true +2272 true +2288 true +2292 true +2301 true +2319 true +2390 true +2428 true +2461 true +2473 true +2487 true +2501 true +2532 true +2598 true +2630 true +2637 true +2645 true +2649 true +2662 true +2723 true +2739 true +2753 true +2762 true +2779 true +2834 true +2853 true +2872 true +2885 true +2898 true +2915 true +2997 true +3026 true +3041 true +3063 true +3075 true +3081 true +3092 true +3106 true +3112 true +3128 true +3141 true +3153 true +3242 true +3258 true +3279 true +3305 true +3307 true +3320 true +3383 true +3410 true +3515 true +3557 true +3626 true +3639 true +3701 true +3730 true +3740 true +3754 true +3757 true +3784 true +3804 true +3827 true +3868 true +3896 true +3934 true +3953 true +3971 true +3982 true +3998 true +4039 true +4069 true +4133 true +4142 true +4162 true +4186 true +4242 true +4268 true +4282 true +4296 true +4333 true +4350 true +4410 true +4416 true +4424 true +4434 true +4455 true +4480 true +4492 true +4501 true +4520 true +4595 true +4606 true +4631 true +4648 true +4658 true +4697 true +4746 true +4756 true +4782 true +4822 true +4844 true +4848 true +4852 true +4886 true +4959 true +4969 true +5013 true +5021 true +5039 true +5047 true +5059 true +5071 true +5120 true +5131 true +5136 true +5148 true +5163 true +5173 true +5182 true +5198 true +5224 true +5231 true +5243 true +5298 true +5302 true +5344 true +5348 true +5379 true +5388 true +5395 true +5417 true +5450 true +5565 true +5608 true +5665 true +5671 true +5683 true +5694 true +5754 true +5765 true +5783 true +5807 true +5834 true +5860 true +5906 true +5928 true +5947 true +6028 true +6030 true +6056 true +6068 true +6091 true +6102 true +6114 true +6119 true +6148 true +6182 true +6191 true +6201 true +6207 true +6241 true +6267 true +6294 true +6305 true +6425 true +6443 true +6476 true +6500 true +6502 true +6572 true +6580 true +6592 true +6632 true +6647 true +6675 true +6693 true +6720 true +6743 true +6826 true +6911 true +6928 true +6965 true +6989 true +7035 true +7047 true +7067 true +7078 true +7091 true +7102 true +7105 true +7108 true +7127 true +7141 true +7145 true +7152 true +7199 true +7235 true +7247 true +7270 true +7304 true +7322 true +7331 true +7341 true +7369 true +7384 true +7388 true +7392 true +7395 true +7416 true +7435 true +7448 true +7465 true +7469 true +7477 true +7482 true +7487 true +7528 true +7557 true +7564 true +7665 true +7679 true +7685 true +7695 true +7703 true +7712 true +7718 true +7723 true +7786 true +7835 true +7879 true +7925 true +8020 true +8029 true +8092 true +8111 true +8133 true +8136 true +8156 true +8159 true +8166 true +8228 true +8265 true +8282 true +8294 true +8307 true +8321 true +8356 true +8375 true +8417 true +8423 true +8437 true +8442 true +8454 true +8473 true +8485 true +8503 true +8522 true +8535 true +8560 true +8636 true +8644 true +8662 true +8680 true +8683 true +8692 true +8731 true +8739 true +8789 true +8806 true +8811 true +8819 true +8829 true +8854 true +8868 true +8887 true +8929 true +8949 true +8964 true +8973 true +8989 true +8994 true +9098 true +9156 true +9185 true +9202 true +9204 true +9243 true +9252 true +9260 true +9265 true +9270 true +9272 true +9301 true +9309 true +9324 true +9334 true +9380 true +9410 true +9425 true +9432 true +9435 true +9440 true +9443 true +9452 true +9456 true +9458 true +9473 true +9498 true +9530 true +9542 true +9614 true +9625 true +9661 true +9671 true +9681 true +9690 true +9703 true +9790 true +9809 true +9886 true +9928 true +9934 true +9938 true +9942 true +9948 true +10008 true +10030 true +10074 true +10088 true +10096 true +10119 true +10149 true +10163 true +10203 true +10217 true +10258 true +10296 true +10314 true +10327 true +10361 true +10375 true +10453 true +10538 true +10559 true +10575 true +10580 true +10587 true +10604 true +10615 true +10625 true +10633 true +10641 true +10653 true +10656 true +10718 true +10723 true +10728 true +10736 true +10750 true +10764 true +10778 true +10802 true +10816 true +10833 true +10964 true +11010 true +11020 true +11043 true +11049 true +11053 true +11083 true +11096 true +11139 true +11144 true +11158 true +11187 true +11201 true +11214 true +11277 true +11283 true +11288 true +11307 true +11325 true +11332 true +11336 true +11347 true +11365 true +11369 true +11434 true +11436 true +11442 true +11461 true +11498 true +11504 true +11507 true +11517 true +11549 true +11574 true +11599 true +11615 true +11626 true +11645 true +11683 true +11753 true +11781 true +11795 true +11803 true +11808 true +11838 true +11863 true +11874 true +11926 true +11930 true +11937 true +11943 true +11955 true +11967 true +12034 true +12038 true +12071 true +12096 true +12107 true +12119 true +12157 true +12188 true +12210 true +12233 true +12261 true +12289 true +12343 true +12379 true +12416 true +12427 true +12450 true +12462 true +12468 true +12476 true +12503 true +12522 true +12531 true +12537 true +12578 true +12590 true +12598 true +12634 true +12659 true +12662 true +12665 true +12679 true +12692 true +12722 true +12811 true +12813 true +12823 true +12910 true +12914 true +12920 true +12926 true +12936 true +12959 true +12964 true +12970 true +12978 true +12988 true +12997 true +13008 true +13031 true +13061 true +13065 true +13108 true +13114 true +13128 true +13144 true +13164 true +13219 true +13251 true +13257 true +13264 true +13266 true +13270 true +13286 true +13301 true +13345 true +13372 true +13426 true +13450 true +13478 true +13525 true +13527 true +13534 true +13541 true +13546 true +13557 true +13566 true +13577 true +13586 true +13611 true +13616 true +13622 true +13629 true +13635 true +13653 true +13660 true +13670 true +13686 true +13693 true +13726 true +13735 true +13747 true +13761 true +13770 true +13781 true +13793 true +13871 true +13883 true +13902 true +13934 true +13939 true +13950 true +13956 true +13991 true +14005 true +14029 true +14138 true +14158 true +14175 true +14192 true +14197 true +14239 true +14254 true +14264 true +14272 true +14288 true +14340 true +14368 true +14421 true +14434 true +14445 true +14470 true +14475 true +14483 true +14496 true +14517 true +14534 true +14553 true +14562 true +14653 true +14710 true +14717 true +14722 true +14739 true +14753 true +14762 true +14818 true +14829 true +14842 true +14845 true +14868 true +14874 true +14897 true +14914 true +14935 true +14997 true +15006 true +15017 true +15029 true +15037 true +15059 true +15076 true +15097 true +15117 true +15129 true +15139 true +15149 true +15164 true +15169 true +15172 true +15203 true +15218 true +15322 true +15335 true +15361 true +15368 true +15383 true +15393 true +15401 true +15414 true +15421 true +15450 true +15495 true +15502 true +15527 true +15529 true +15567 true +15576 true +15578 true +15587 true +15589 true +15626 true +15643 true +15681 true +15723 true +15786 true +15799 true +15824 true +15835 true +15843 true +15854 true +15860 true +15867 true +15873 true +15890 true +15915 true +15921 true +15929 true +15943 true +15954 true +15961 true +16004 true +16037 true +16053 true +16063 true +16084 true +16099 true +16103 true +16133 true +16148 true +16200 true +16211 true +16221 true +16381 true +16385 true +16416 true +16418 true +16493 true +16501 true +16519 true +16575 true +16600 true +16639 true +16656 true +16673 true +16695 true +16714 true +16716 true +16746 true +16814 true +16824 true +16840 true +16852 true +16873 true +16883 true +16911 true +16926 true +16968 true +17000 true +17018 true +17037 true +17055 true +17114 true +17133 true +17174 true +17182 true +17187 true +17194 true +17201 true +17211 true +17218 true +17237 true +17245 true +17258 true +17262 true +17268 true +17275 true +17284 true +17294 true +17297 true +17301 true +17309 true +17356 true +17447 true +17469 true +17484 true +17528 true +17551 true +17573 true +17597 true +17601 true +17603 true +17615 true +17628 true +17653 true +17668 true +17673 true +17681 true +17692 true +17751 true +17775 true +17812 true +17883 true +17889 true +17919 true +17961 true +17973 true +17995 true +17997 true +18012 true +18026 true +18038 true +18048 true +18058 true +18116 true +18146 true +18168 true +18201 true +18219 true +18239 true +18259 true +18422 true +18564 true +18647 true +18704 true +18767 true +18794 true +18813 true +18884 true +18972 true +19062 true +19075 true +19105 true +19144 true +19253 true +19291 true +19307 true +19330 true +19365 true +19389 true +19396 true +19413 true +19502 true +19537 true +19572 true +19593 true +19698 true +19853 true +19963 true +19970 true +19974 true +20066 true +20138 true +20251 true +20258 true +20304 true +20337 true +20413 true +20454 true +20492 true +20554 true +20578 true +20619 true +20635 true +20641 true +20756 true +20886 true +20892 true +20923 true +21009 true +21206 true +21251 true +21277 true +21297 true +21335 true +21399 true +21446 true +21650 true +21662 true +21705 true +21728 true +21734 true +21743 true +21754 true +21778 true +21794 true +21806 true +21867 true +21875 true +21903 true +21951 true +22032 true +22127 true +22148 true +22153 true +22291 true +22313 true +22327 true +22333 true +22365 true +22373 true +22415 true +22444 true +22477 true +22544 true +22565 true +22573 true +22605 true +22624 true +22639 true +22744 true +22761 true +22773 true +22808 true +22821 true +22831 true +22836 true +22846 true +22873 true +22886 true +23029 true +23045 true +23112 true +23123 true +23125 true +23176 true +23399 true +23456 true +23460 true +23472 true +23482 true +23486 true +23542 true +23548 true +23601 true +23611 true +23624 true +23637 true +23646 true +23691 true +23789 true +23794 true +23874 true +23878 true +23882 true +23969 true +23994 true +24047 true +24074 true +24100 true +24144 true +24199 true +24225 true +24250 true +24253 true +24294 true +24308 true +24343 true +24350 true +24365 true +24375 true +24397 true +24490 true +24518 true +24525 true +24580 true +24589 true +24599 true +24613 true +24646 true +24668 true +24697 true +24702 true +24719 true +24730 true +24759 true +24774 true +24810 true +24821 true +24851 true +24859 true +24884 true +24892 true +24926 true +24949 true +24957 true +25003 true +25026 true +25028 true +25035 true +25051 true +25122 true +25128 true +25132 true +25137 true +25145 true +25157 true +25180 true +25185 true +25203 true +25251 true +25258 true +25269 true +25279 true +25346 true +25372 true +25391 true +25393 true +25456 true +25461 true +25515 true +25552 true +25597 true +25617 true +25622 true +25637 true +25720 true +25738 true +25741 true +25793 true +25899 true +25941 true +25954 true +25959 true +26052 true +26055 true +26059 true +26074 true +26153 true +26194 true +26218 true +26234 true +26247 true +26252 true +26274 true +26360 true +26362 true +26385 true +26401 true +26647 true +26747 true +26754 true +26761 true +26767 true +26808 true +26848 true +26850 true +26874 true +26889 true +26907 true +26938 true +26950 true +26960 true +26997 true +27004 true +27055 true +27068 true +27074 true +27105 true +27120 true +27133 true +27150 true +27180 true +27227 true +27285 true +27291 true +27315 true +27346 true +27348 true +27371 true +27378 true +27401 true +27442 true +27455 true +27471 true +27486 true +27500 true +27516 true +27520 true +27552 true +27582 true +27613 true +27674 true +27686 true +27704 true +27719 true +27729 true +27853 true +27887 true +27900 true +28018 true +28022 true +28040 true +28042 true +28114 true +28122 true +28142 true +28151 true +28220 true +28270 true +28289 true +28338 true +28352 true +28375 true +28390 true +28399 true +28410 true +28418 true +28477 true +28479 true +28511 true +28528 true +28532 true +28578 true +28608 true +28621 true +28635 true +28645 true +28654 true +28656 true +28678 true +28691 true +28700 true +28712 true +28719 true +28728 true +28734 true +28740 true +28743 true +28749 true +28769 true +28862 true +28874 true +28893 true +28902 true +28967 true +29040 true +29058 true +29084 true +29097 true +29177 true +29229 true +29296 true +29316 true +29322 true +29365 true +29375 true +29377 true +29411 true +29433 true +29473 true +29477 true +29479 true +29490 true +29510 true +29528 true +29544 true +29554 true +29646 true +29676 true +29681 true +29715 true +29723 true +29744 true +29774 true +29785 true +29851 true +29915 true +29929 true +29965 true +29995 true +30042 true +30063 true +30118 true +30185 true +30205 true +30283 true +30345 true +30415 true +30422 true +30436 true +30507 true +30514 true +30521 true +30537 true +30554 true +30582 true +30588 true +30676 true +30691 true +30697 true +30743 true +30762 true +30794 true +30830 true +30905 true +30980 true +31001 true +31014 true +31040 true +31043 true +31170 true +31176 true +31233 true +31271 true +31309 true +31400 true +31459 true +31507 true +31561 true +31610 true +31628 true +31725 true +31731 true +31743 true +31759 true +31774 true +31785 true +31803 true +31806 true +31824 true +31836 true +31848 true +31870 true +31895 true +31900 true +31942 true +31949 true +31957 true +31976 true +31990 true +32035 true +32042 true +32198 true +32233 true +32239 true +32297 true +32303 true +32327 true +32343 true +32351 true +32518 true +32554 true +32570 true +32583 true +32597 true +32667 true +32692 true +32697 true +32776 true +32823 true +32833 true +32856 true +32861 true +32875 true +32885 true +32913 true +32938 true +32953 true +32967 true +32997 true +33006 true +33022 true +33030 true +33060 true +33075 true +33102 true +33119 true +33135 true +33189 true +33245 true +33263 true +33391 true +33420 true +33527 true +33562 true +33578 true +33596 true +33602 true +33621 true +33623 true +33639 true +33656 true +33682 true +33712 true +33718 true +33729 true +33738 true +33758 true +33791 true +33802 true +33810 true +33834 true +33851 true +33857 true +33875 true +33904 true +33912 true +33920 true +33925 true +34128 true +34137 true +34180 true +34191 true +34265 true +34268 true +34277 true +34284 true +34301 true +34381 true +34387 true +34408 true +34416 true +34428 true +34485 true +34488 true +34500 true +34508 true +34540 true +34548 true +34592 true +34611 true +34656 true +34668 true +34687 true +34703 true +34714 true +34720 true +34738 true +34740 true +34763 true +34766 true +34794 true +34847 true +34893 true +34916 true +34945 true +34984 true +35051 true +35057 true +35070 true +35081 true +35102 true +35140 true +35157 true +35166 true +35183 true +35216 true +35259 true +35263 true +35306 true +35329 true +35340 true +35344 true +35369 true +35384 true +35394 true +35409 true +35428 true +35438 true +35455 true +35472 true +35492 true +35498 true +35519 true +35553 true +35594 true +35684 true +35691 true +35695 true +35707 true +35720 true +35732 true +35756 true +35783 true +35807 true +35829 true +35850 true +35868 true +35872 true +true +35879 true +35885 true +35890 true +35908 true +35921 true +35923 true +35944 true +35971 true +35986 true +35994 true +36010 true +36017 true +36023 true +36033 true +36051 true +36079 true +36105 true +36115 true +36137 true +36146 true +36167 true +36191 true +36214 true +36228 true +36258 true +36275 true +36284 true +36290 true +36303 true +36331 true +36342 true +36377 true +36383 true +36431 true +36444 true +36451 true +36460 true +36484 true +36515 true +36527 true +36554 true +36559 true +36574 true +36603 true +36611 true +36660 true +36671 true +36692 true +36702 true +36722 true +36728 true +36736 true +36742 true +36772 true +36791 true +36794 true +36799 true +36826 true +36834 true +36858 true +36861 true +36863 true +36881 true +36923 true +36937 true +36941 true +36948 true +36951 true +36959 true +36962 true +36966 true +36968 true +36976 true +37009 true +37032 true +37042 true +37053 true +37061 true +37067 true +37094 true +37115 true +37176 true +37178 true +37188 true +37237 true +37246 true +37293 true +37358 true +37381 true +37391 true +37409 true +37417 true +37438 true +37448 true +37471 true +37474 true +37477 true +37479 true +37482 true +37500 true +37513 true +37521 true +37531 true +37553 true +37560 true +37569 true +37615 true +37634 true +37655 true +37673 true +37684 true +37690 true +37701 true +37711 true +37719 true +37726 true +37736 true +37759 true +37784 true +37788 true +37792 true +37796 true +37832 true +37835 true +37855 true +37861 true +37873 true +37887 true +37916 true +37988 true +38009 true +38029 true +38037 true +38054 true +38100 true +38178 true +38180 true +38199 true +38236 true +38248 true +38286 true +38295 true +38333 true +38347 true +38358 true +38378 true +38408 true +38419 true +38424 true +38431 true +38440 true +38450 true +38460 true +38488 true +38495 true +38508 true +38510 true +38516 true +38529 true +38531 true +38535 true +38550 true +38575 true +38606 true +38695 true +38719 true +38732 true +38755 true +38788 true +38800 true +38814 true +38823 true +38842 true +38863 true +38883 true +38914 true +39002 true +39010 true +39028 true +39041 true +39065 true +39178 true +39187 true +39197 true +39220 true +39231 true +39234 true +39246 true +39264 true +39318 true +39358 true +39371 true +39403 true +39420 true +39424 true +39553 true +39555 true +39589 true +39610 true +39661 true +39665 true +39686 true +39711 true +39720 true +39742 true +39753 true +39755 true +39772 true +39785 true +39809 true +39819 true +39874 true +39889 true +39903 true +39924 true +39961 true +39973 true +39991 true +40005 true +40038 true +40046 true +40101 true +40147 true +40180 true +40193 true +40214 true +40233 true +40261 true +40278 true +40301 true +40335 true +40357 true +40361 true +40367 true +40383 true +40395 true +40407 true +40414 true +40419 true +40421 true +40462 true +40499 true +40501 true +40508 true +40517 true +40567 true +40654 true +40676 true +40704 true +40724 true +40731 true +40736 true +40750 true +40765 true +40791 true +40813 true +40824 true +40832 true +40851 true +40872 true +40897 true +40973 true +40982 true +40995 true +41003 true +41086 true +41213 true +41255 true +41276 true +41312 true +41406 true +41460 true +41471 true +41485 true +41542 true +41634 true +41648 true +41684 true +41711 true +41755 true +41781 true +41794 true +41811 true +41815 true +41840 true +41842 true +41854 true +41868 true +41955 true +41961 true +42010 true +42032 true +42060 true +42110 true +42122 true +42164 true +42186 true +42205 true +42259 true +42284 true +42288 true +42310 true +42316 true +42323 true +42350 true +42369 true +42385 true +42403 true +42441 true +42446 true +42500 true +42506 true +42522 true +42526 true +42610 true +42643 true +42665 true +42687 true +42722 true +42754 true +42768 true +42799 true +42814 true +42872 true +42891 true +42895 true +42923 true +42925 true +42938 true +42956 true +42966 true +42981 true +42998 true +43011 true +43078 true +43088 true +43100 true +43103 true +43107 true +43168 true +43224 true +43252 true +43261 true +43287 true +43316 true +43325 true +43356 true +43382 true +43429 true +43442 true +43503 true +43513 true +43536 true +43544 true +43554 true +43566 true +43594 true +43617 true +43632 true +43650 true +43663 true +43704 true +43760 true +43773 true +43816 true +43821 true +43830 true +43836 true +43852 true +43863 true +43881 true +43891 true +43925 true +43933 true +43960 true +43966 true +43970 true +43988 true +44004 true +44012 true +44024 true +44035 true +44078 true +44101 true +44139 true +44154 true +44162 true +44185 true +44194 true +44203 true +44210 true +44212 true +44296 true +44313 true +44320 true +44340 true +44347 true +44364 true +44383 true +44394 true +44403 true +44418 true +44432 true +44449 true +44492 true +44502 true +44526 true +44533 true +44541 true +44558 true +44587 true +44609 true +44646 true +44710 true +44715 true +44738 true +44746 true +44761 true +44787 true +44797 true +44831 true +44889 true +44959 true +44974 true +44994 true +45046 true +45067 true +45084 true +45094 true +45119 true +45154 true +45164 true +45166 true +45178 true +45184 true +45201 true +45228 true +45247 true +45252 true +45257 true +45282 true +45308 true +45369 true +45380 true +45385 true +45389 true +45421 true +45461 true +45480 true +45495 true +45503 true +45505 true +45524 true +45541 true +45546 true +45551 true +45557 true +45580 true +45587 true +45591 true +45600 true +45606 true +45617 true +45643 true +45653 true +45700 true +45712 true +45735 true +45746 true +45781 true +45786 true +45791 true +45803 true +45809 true +45827 true +45835 true +45856 true +45866 true +45874 true +45905 true +45914 true +45931 true +45972 true +46032 true +46096 true +46117 true +46191 true +46198 true +46224 true +46235 true +46256 true +46258 true +46264 true +46287 true +46307 true +46311 true +46355 true +46379 true +46383 true +46386 true +46440 true +46477 true +46505 true +46564 true +46585 true +46609 true +46616 true +46618 true +46621 true +46630 true +46646 true +46665 true +46676 true +46685 true +46726 true +46740 true +46759 true +46775 true +46789 true +46806 true +46810 true +46833 true +46837 true +46845 true +46849 true +46856 true +46864 true +46881 true +46887 true +46931 true +47004 true +47018 true +47045 true +47059 true +47108 true +47119 true +47124 true +47140 true +47156 true +47176 true +47199 true +47203 true +47273 true +47286 true +47305 true +47314 true +47320 true +47325 true +47336 true +47339 true +47346 true +47356 true +47364 true +47382 true +47387 true +47404 true +47416 true +47423 true +47440 true +47460 true +47490 true +47498 true +47500 true +47513 true +47519 true +47525 true +47530 true +47542 true +47558 true +47561 true +47573 true +47580 true +47623 true +47636 true +47640 true +47646 true +47653 true +47666 true +47676 true +47683 true +47689 true +47700 true +47704 true +47724 true +47736 true +47762 true +47776 true +47843 true +47867 true +47871 true +47875 true +47882 true +47887 true +47899 true +47918 true +47939 true +47950 true +47966 true +47985 true +47988 true +47993 true +48041 true +48063 true +48069 true +48090 true +48099 true +48102 true +48122 true +48172 true +48177 true +48182 true +48202 true +48209 true +48216 true +48231 true +48239 true +48265 true +48302 true +48338 true +48371 true +48437 true +48446 true +48462 true +48489 true +48514 true +48530 true +48601 true +48625 true +48704 true +48707 true +48783 true +48797 true +48845 true +48857 true +48872 true +48884 true +48973 true +48985 true +49025 true +49134 true +49166 true +49174 true +49325 true +49341 true +49384 true +49439 true +49528 true +49593 true +49603 true +49619 true +49710 true +49752 true +49802 true +49817 true +49879 true +49926 true +49931 true +49933 true +49971 true +49974 true +49989 true +50026 true +50108 true +50118 true +50156 true +50185 true +50204 true +50213 true +50236 true +50260 true +50283 true +50291 true +50299 true +50318 true +50326 true +50535 true +50550 true +50575 true +50618 true +50640 true +50642 true +50646 true +50666 true +50705 true +50707 true +50724 true +50732 true +50810 true +50827 true +50834 true +50837 true +50891 true +50901 true +50928 true +50944 true +50980 true +50987 true +51005 true +51011 true +51041 true +51052 true +51067 true +51070 true +51095 true +51100 true +51116 true +51164 true +51241 true +51246 true +51341 true +51360 true +51371 true +51386 true +51401 true +51411 true +51459 true +51471 true +51541 true +51547 true +51580 true +51587 true +51603 true +51628 true +51639 true +51652 true +51662 true +51675 true +51685 true +51694 true +51701 true +51747 true +51750 true +51798 true +51812 true +51822 true +51833 true +51860 true +51885 true +51915 true +51927 true +51942 true +51957 true +51959 true +51965 true +51991 true +52024 true +52031 true +52046 true +52075 true +52082 true +52111 true +52141 true +52153 true +52159 true +52180 true +52201 true +52207 true +52217 true +52225 true +52233 true +52239 true +52255 true +52344 true +52470 true +52492 true +52502 true +52510 true +52554 true +52671 true +52675 true +52678 true +52683 true +52707 true +52721 true +52734 true +52745 true +52766 true +52771 true +52775 true +52828 true +52835 true +52843 true +52861 true +52876 true +52893 true +52927 true +52931 true +52963 true +52970 true +52992 true +53000 true +53056 true +53070 true +53153 true +53158 true +53160 true +53189 true +53192 true +53194 true +53223 true +53254 true +53270 true +53353 true +53377 true +53406 true +53581 true +53597 true +53612 true +53659 true +53664 true +53671 true +53739 true +53744 true +53758 true +53774 true +53815 true +53867 true +53918 true +53924 true +53942 true +53952 true +53955 true +53964 true +53989 true +54008 true +54016 true +54027 true +54041 true +54073 true +54081 true +54100 true +54122 true +54128 true +54136 true +54147 true +54159 true +54170 true +54216 true +54248 true +54257 true +54277 true +54322 true +54332 true +54358 true +54367 true +54408 true +54425 true +54466 true +54491 true +54495 true +54502 true +54511 true +54538 true +54542 true +54575 true +54581 true +54588 true +54594 true +54602 true +54622 true +54625 true +54653 true +54661 true +54664 true +54675 true +54703 true +54705 true +54739 true +54746 true +54795 true +54803 true +54821 true +54848 true +54858 true +54862 true +54871 true +54882 true +54908 true +54939 true +54960 true +54965 true +54978 true +55006 true +55043 true +55061 true +true +55082 true +55111 true +55131 true +55158 true +55176 true +55180 true +55192 true +55222 true +55231 true +55243 true +55253 true +true +55260 true +55273 true +55290 true +55343 true +55403 true +55407 true +55424 true +55458 true +55490 true +55493 true +55527 true +55539 true +55542 true +55550 true +55588 true +55622 true +55700 true +55805 true +55842 true +55867 true +55874 true +55925 true +55947 true +55982 true +55989 true +56026 true +56029 true +56059 true +56077 true +56081 true +56097 true +56106 true +56112 true +56120 true +56129 true +56152 true +56167 true +56173 true +56208 true +56212 true +56230 true +56262 true +56286 true +56310 true +56325 true +56362 true +56364 true +56368 true +56377 true +56389 true +56506 true +56537 true +56560 true +56564 true +56596 true +56602 true +56645 true +56668 true +56677 true +56712 true +56846 true +56914 true +56961 true +57092 true +57188 true +57211 true +57214 true +57233 true +57248 true +57251 true +57253 true +57268 true +57284 true +57305 true +57317 true +57343 true +57356 true +57361 true +57419 true +57451 true +57460 true +57468 true +57478 true +57501 true +57516 true +57523 true +57529 true +57539 true +57561 true +57566 true +57572 true +57582 true +57592 true +57695 true +57705 true +57724 true +57756 true +57767 true +57777 true +57779 true +57783 true +57815 true +57823 true +57843 true +57853 true +57877 true +57895 true +57899 true +57914 true +57969 true +57986 true +58000 true +58017 true +58040 true +58075 true +58113 true +58122 true +58149 true +58170 true +58192 true +58210 true +58229 true +58238 true +58241 true +58248 true +58270 true +58279 true +58304 true +58325 true +58340 true +58347 true +58352 true +58373 true +58380 true +58392 true +58441 true +58443 true +58482 true +58489 true +58523 true +58540 true +58552 true +58585 true +58618 true +58699 true +58710 true +58740 true +58753 true +58763 true +58771 true +58806 true +58860 true +58935 true +58955 true +58967 true +59013 true +59024 true +59089 true +59100 true +59107 true +59203 true +59212 true +59228 true +59297 true +59310 true +59341 true +59343 true +59350 true +59358 true +59362 true +59449 true +59502 true +59516 true +59529 true +59533 true +59543 true +59563 true +59572 true +59575 true +59581 true +59601 true +59606 true +59613 true +59616 true +59667 true +59716 true +59719 true +59782 true +59785 true +59858 true +59931 true +59953 true +59988 true +60043 true +60072 true +60080 true +60122 true +60149 true +60213 true +60276 true +60304 true +60467 true +60522 true +60593 true +60631 true +60664 true +60670 true +60744 true +60775 true +60826 true +60884 true +60895 true +60932 true +60943 true +60964 true +60972 true +60984 true +60995 true +61004 true +61018 true +61072 true +61103 true +61106 true +61152 true +61165 true +61176 true +61195 true +61201 true +61300 true +61457 true +61481 true +61490 true +61658 true +61760 true +61765 true +61787 true +61884 true +61939 true +61957 true +61980 true +62003 true +62012 true +62025 true +62031 true +62044 true +62066 true +62086 true +62092 true +62115 true +62137 true +62148 true +62163 true +62172 true +62189 true +62197 true +62215 true +62231 true +62237 true +62256 true +62261 true +62318 true +62345 true +62351 true +62363 true +62368 true +62392 true +62401 true +62408 true +62416 true +62426 true +62443 true +62456 true +62465 true +62468 true +62473 true +62510 true +62585 true +62596 true +62605 true +62671 true +62682 true +62690 true +62699 true +62704 true +62766 true +62785 true +62807 true +62832 true +62855 true +62862 true +62867 true +62887 true +62912 true +62933 true +62952 true +62955 true +62972 true +62996 true +63003 true +63033 true +63037 true +63048 true +63058 true +63062 true +63069 true +63083 true +63103 true +63112 true +63132 true +63143 true +63172 true +true +63178 true +63202 true +63244 true +63258 true +63260 true +63271 true +63287 true +63304 true +63322 true +63330 true +63339 true +63375 true +63389 true +63397 true +63409 true +63422 true +63439 true +63446 true +63465 true +63484 true +63504 true +63519 true +63531 true +63543 true +63574 true +63587 true +63612 true +63615 true +63652 true +63669 true +63680 true +63687 true +63695 true +63714 true +63809 true +63815 true +63853 true +63899 true +63906 true +63933 true +63943 true +63959 true +63968 true +64091 true +64093 true +64111 true +64147 true +64203 true +64212 true +64220 true +64232 true +64247 true +64259 true +64273 true +64284 true +64293 true +64300 true +64317 true +64373 true +64408 true +64511 true +64527 true +64572 true +64581 true +64590 true +64600 true +64614 true +64626 true +64653 true +64662 true +64667 true +64677 true +true +64686 true +64689 true +64700 true +64748 true +64752 true +64756 true +64764 true +64812 true +64904 true +64916 true +64969 true +64972 true +65018 true +65058 true +65081 true +65084 true +65137 true +65243 true +65245 true +65258 true +65277 true +65282 true +65287 true +65312 true +65320 true +65337 true +65354 true +65364 true +65367 true +65375 true +65379 true +65405 true +65412 true +65526 true +65597 true +65628 true +65691 true +65741 true +65747 true +65766 true +65773 true +65795 true +65808 true +65816 true +65821 true +65834 true +65860 true +65874 true +65881 true +65898 true +65914 true +65931 true +65936 true +65945 true +65971 true +65979 true +66001 true +66012 true +66072 true +66083 true +66092 true +66101 true +66123 true +66162 true +66188 true +66209 true +66253 true +66265 true +66278 true +66325 true +66337 true +66353 true +66380 true +66400 true +66420 true +66425 true +66429 true +66440 true +66491 true +66508 true +66555 true +66559 true +66574 true +66705 true +66710 true +66722 true +66728 true +66739 true +66748 true +66752 true +66757 true +66759 true +66775 true +true +66825 true +66847 true +66857 true +66879 true +66882 true +66894 true +66911 true +66979 true +66995 true +67007 true +67016 true +67081 true +67088 true +67099 true +67116 true +67119 true +67126 true +67133 true +67153 true +67161 true +67192 true +67223 true +67278 true +67293 true +67302 true +67317 true +67329 true +67334 true +67361 true +67370 true +67398 true +67420 true +67432 true +67439 true +67466 true +67473 true +67483 true +67485 true +67514 true +67524 true +67543 true +67554 true +67579 true +67589 true +67594 true +67608 true +67613 true +67619 true +67630 true +67634 true +67649 true +67669 true +67675 true +67715 true +67722 true +67778 true +67786 true +67806 true +67819 true +67821 true +67900 true +67914 true +67933 true +67947 true +67964 true +67991 true +68010 true +68027 true +68094 true +68102 true +68116 true +68165 true +68184 true +68204 true +68242 true +68250 true +68295 true +68352 true +68369 true +68376 true +68465 true +68485 true +68513 true +68561 true +68575 true +68585 true +68605 true +68630 true +68650 true +68658 true +68689 true +68703 true +68707 true +68727 true +68754 true +68788 true +68795 true +68815 true +68822 true +68833 true +68994 true +69028 true +69146 true +69166 true +69246 true +69259 true +69293 true +69295 true +69340 true +69358 true +69365 true +69379 true +69392 true +69404 true +69421 true +true +69429 true +69441 true +69461 true +69471 true +69477 true +69485 true +69504 true +69523 true +69534 true +69551 true +69555 true +69579 true +69604 true +69607 true +69611 true +69633 true +69656 true +69664 true +69678 true +69696 true +69706 true +69717 true +69726 true +69734 true +69736 true +69751 true +69756 true +69768 true +69774 true +69836 true +69848 true +69865 true +69869 true +69877 true +69885 true +69933 true +69956 true +69971 true +70002 true +70011 true +70029 true +70035 true +70052 true +70079 true +70084 true +70092 true +70101 true +70123 true +70128 true +70149 true +70151 true +70159 true +70163 true +70166 true +70172 true +70179 true +70187 true +70196 true +70201 true +70213 true +70219 true +70240 true +70255 true +70288 true +70307 true +70311 true +70314 true +70324 true +70326 true +70353 true +70365 true +70371 true +70380 true +70404 true +70435 true +70452 true +70462 true +70469 true +70474 true +70481 true +70495 true +70512 true +70547 true +70558 true +70565 true +70570 true +70584 true +70611 true +70625 true +70673 true +70676 true +70694 true +70703 true +70710 true +70733 true +70765 true +70782 true +70793 true +70799 true +70809 true +70822 true +70833 true +70887 true +70898 true +70938 true +70965 true +70983 true +70989 true +71033 true +71038 true +71065 true +71078 true +71085 true +71119 true +71147 true +71165 true +71176 true +71199 true +71203 true +71219 true +71226 true +71240 true +71256 true +71276 true +71296 true +71306 true +71324 true +71355 true +71373 true +71378 true +71383 true +71400 true +71446 true +71498 true +71624 true +71639 true +71655 true +71670 true +71691 true +71713 true +71722 true +71768 true +71774 true +71779 true +71793 true +71808 true +71837 true +71846 true +71862 true +71899 true +71918 true +71926 true +71930 true +71936 true +71961 true +71982 true +72007 true +72035 true +72044 true +72049 true +72100 true +72111 true +72125 true +72133 true +72144 true +72167 true +72197 true +72214 true +72221 true +72232 true +72257 true +true +72265 true +72268 true +72278 true +72289 true +72298 true +72317 true +72337 true +72349 true +72376 true +72380 true +72384 true +72444 true +72459 true +72464 true +72472 true +72489 true +72498 true +72504 true +72509 true +72516 true +72521 true +72527 true +72543 true +72557 true +72567 true +72572 true +72592 true +72598 true +72623 true +72638 true +72647 true +72665 true +72673 true +72688 true +72699 true +72711 true +72719 true +72731 true +72755 true +72765 true +72784 true +72789 true +72825 true +72831 true +72844 true +72893 true +72907 true +72918 true +72931 true +72939 true +72960 true +72980 true +72989 true +73114 true +73138 true +73147 true +73185 true +73217 true +73232 true +73268 true +73286 true +73296 true +73329 true +true +73349 true +73357 true +73386 true +73419 true +73432 true +73459 true +73475 true +73488 true +73497 true +73511 true +73521 true +73541 true +73560 true +73570 true +73599 true +73611 true +73619 true +73638 true +73644 true +73658 true +true +73684 true +73691 true +73697 true +73702 true +73707 true +73740 true +73780 true +73800 true +73805 true +73816 true +73838 true +73864 true +73935 true +73957 true +73976 true +74005 true +74016 true +74065 true +74085 true +74113 true +74149 true +74173 true +74187 true +74195 true +74210 true +74216 true +74228 true +74281 true +74291 true +74305 true +74314 true +74326 true +74339 true +74349 true +74460 true +74580 true +74592 true +74602 true +74625 true +74638 true +74644 true +74660 true +74673 true +74691 true +74699 true +74716 true +74726 true +74745 true +74753 true +74762 true +74775 true +74784 true +74795 true +74804 true +74818 true +74836 true +74845 true +74866 true +74878 true +74896 true +74913 true +74942 true +74956 true +74960 true +74967 true +74984 true +74986 true +74993 true +75006 true +75028 true +75037 true +75062 true +75106 true +75113 true +75137 true +75180 true +75203 true +75228 true +75233 true +75244 true +75249 true +75252 true +75260 true +75273 true +75293 true +75300 true +75303 true +75307 true +75327 true +75331 true +75381 true +75395 true +75408 true +75424 true +75430 true +75451 true +75458 true +75467 true +75484 true +75500 true +75515 true +75537 true +75569 true +75575 true +75583 true +75608 true +75644 true +75646 true +75667 true +75674 true +75690 true +75715 true +75730 true +75758 true +75771 true +75773 true +75780 true +75804 true +75823 true +true +75844 true +75861 true +75864 true +75866 true +75878 true +75898 true +75906 true +75910 true +75913 true +75931 true +75948 true +75963 true +75986 true +76009 true +76041 true +76050 true +76066 true +76072 true +76094 true +76132 true +76136 true +76139 true +76155 true +76225 true +76230 true +76243 true +76249 true +76267 true +76314 true +76334 true +76365 true +76372 true +76385 true +76387 true +76415 true +76428 true +76438 true +76443 true +76445 true +76459 true +true +76471 true +76486 true +76511 true +76514 true +76521 true +76530 true +76582 true +76596 true +76624 true +76631 true +76647 true +76671 true +76685 true +76706 true +76715 true +76721 true +76726 true +76728 true +76732 true +76739 true +76750 true +76761 true +76783 true +76788 true +76795 true +76812 true +76837 true +76854 true +76858 true +76889 true +76895 true +76931 true +76934 true +76949 true +76956 true +76980 true +76985 true +77006 true +77017 true +77049 true +77079 true +77097 true +77110 true +77130 true +77173 true +77195 true +77210 true +77228 true +77241 true +77253 true +77272 true +77279 true +77290 true +77300 true +77310 true +77316 true +77331 true +77338 true +77340 true +77348 true +77356 true +77369 true +77381 true +true +77401 true +77411 true +77438 true +77445 true +77456 true +77470 true +77491 true +77497 true +77507 true +77512 true +77519 true +77543 true +77561 true +77567 true +77581 true +77606 true +77617 true +77624 true +77632 true +77640 true +77649 true +77664 true +77671 true +77690 true +77696 true +77702 true +77717 true +77730 true +77742 true +77786 true +77802 true +77822 true +77913 true +78053 true +78080 true +78082 true +78108 true +78114 true +78127 true +78144 true +78159 true +78167 true +78186 true +78221 true +78227 true +78246 true +78268 true +78275 true +78329 true +78334 true +78357 true +78375 true +78386 true +78395 true +78413 true +78423 true +78434 true +78456 true +78462 true +78470 true +78481 true +78486 true +78506 true +78513 true +78557 true +78567 true +78608 true +78657 true +78671 true +78683 true +78691 true +78715 true +78727 true +78738 true +78769 true +78777 true +78793 true +78810 true +78819 true +78837 true +78842 true +78864 true +78868 true +78870 true +78880 true +78889 true +78903 true +78923 true +78945 true +78961 true +78982 true +79017 true +79036 true +79051 true +79057 true +79070 true +79080 true +79086 true +79091 true +79107 true +79110 true +79128 true +79159 true +79189 true +79210 true +79297 true +79316 true +79321 true +79354 true +79372 true +79375 true +79384 true +79387 true +79393 true +79404 true +79408 true +79419 true +79423 true +79427 true +79436 true +79450 true +79483 true +79501 true +79539 true +79548 true +79558 true +79570 true +79578 true +79599 true +79613 true +79623 true +79628 true +79650 true +79657 true +79659 true +79662 true +79679 true +79684 true +79694 true +79703 true +79709 true +79728 true +79755 true +79776 true +79792 true +79807 true +79820 true +79826 true +79854 true +79868 true +79870 true +79894 true +79899 true +79928 true +79957 true +79967 true +80013 true +80027 true +80035 true +80041 true +80043 true +80065 true +80081 true +80110 true +80123 true +80140 true +80162 true +80185 true +80192 true +80195 true +80210 true +80226 true +80236 true +80254 true +80263 true +80311 true +true +80326 true +80334 true +80362 true +80373 true +80375 true +80395 true +80422 true +80433 true +80445 true +80471 true +80497 true +80501 true +80508 true +80513 true +80534 true +80555 true +80577 true +80582 true +80586 true +80598 true +80611 true +80644 true +80653 true +80660 true +80667 true +80670 true +80675 true +80698 true +80714 true +80736 true +80758 true +80765 true +80770 true +80780 true +true +80787 true +80793 true +80802 true +80821 true +80823 true +80836 true +80897 true +80904 true +80925 true +80932 true +80948 true +80953 true +80969 true +80989 true +81000 true +81004 true +81072 true +81077 true +81080 true +81115 true +81128 true +81147 true +81160 true +81164 true +81170 true +81180 true +81194 true +81228 true +81234 true +81263 true +81267 true +81283 true +81297 true +81312 true +81349 true +81355 true +81357 true +81359 true +81382 true +81388 true +81406 true +81416 true +81420 true +81479 true +81486 true +81509 true +81518 true +81530 true +81535 true +81539 true +81544 true +81555 true +81558 true +81564 true +81578 true +81583 true +81588 true +81597 true +81608 true +81615 true +81618 true +81623 true +81630 true +81642 true +81645 true +81682 true +81705 true +81719 true +81729 true +81741 true +81760 true +81768 true +81791 true +81807 true +81820 true +81841 true +81855 true +81857 true +81899 true +81903 true +81918 true +81945 true +81947 true +81959 true +81971 true +81984 true +82002 true +82014 true +82031 true +82040 true +82052 true +82065 true +true +82075 true +82089 true +82099 true +82119 true +82135 true +82148 true +82154 true +82173 true +82180 true +82189 true +82205 true +82225 true +82258 true +82272 true +82284 true +82291 true +82299 true +82314 true +82322 true +82333 true +82345 true +82354 true +82363 true +82391 true +82400 true +82406 true +82413 true +82426 true +82437 true +82451 true +82455 true +82480 true +82484 true +82489 true +82504 true +82525 true +82551 true +82557 true +82568 true +82578 true +82595 true +82617 true +82632 true +82641 true +82669 true +82746 true +82762 true +82774 true +82781 true +82815 true +82828 true +82830 true +82840 true +82850 true +82855 true +82876 true +82883 true +true +82895 true +82913 true +82932 true +82937 true +82940 true +82987 true +83022 true +83038 true +83150 true +83162 true +83183 true +83225 true +83230 true +83233 true +83239 true +83250 true +83255 true +83284 true +83288 true +83305 true +83310 true +83319 true +83324 true +83336 true +83342 true +83369 true +83374 true +83384 true +83495 true +true +83508 true +83620 true +83628 true +83634 true +83649 true +83693 true +83719 true +83733 true +83741 true +83759 true +83764 true +83775 true +83780 true +83787 true +83802 true +83816 true +83859 true +83876 true +83900 true +83903 true +83925 true +83959 true +83972 true +true +83979 true +83989 true +84022 true +84061 true +84077 true +true +84086 true +84102 true +84107 true +84126 true +84156 true +84200 true +84205 true +84207 true +84294 true +84328 true +84333 true +84347 true +84358 true +84362 true +84431 true +84446 true +84479 true +84491 true +84500 true +84512 true +84517 true +84527 true +84532 true +84539 true +84543 true +84574 true +84579 true +84589 true +84601 true +84610 true +84613 true +84626 true +84676 true +84684 true +84686 true +84697 true +84710 true +84715 true +84769 true +84818 true +84839 true +true +84851 true +84865 true +84873 true +84890 true +84928 true +84943 true +84947 true +84951 true +84972 true +84984 true +84990 true +84999 true +85017 true +85032 true +85053 true +85104 true +85111 true +85151 true +85189 true +true +85197 true +85205 true +85260 true +85283 true +85290 true +85322 true +85356 true +85383 true +85417 true +85424 true +85446 true +85453 true +85465 true +85469 true +85476 true +85518 true +85523 true +85531 true +85565 true +85574 true +85583 true +85599 true +85625 true +85629 true +85635 true +85644 true +85649 true +85655 true +85665 true +85670 true +85676 true +85690 true +85692 true +85706 true +85715 true +85737 true +85781 true +85805 true +85825 true +85842 true +true +85855 true +85868 true +85873 true +85879 true +85886 true +85900 true +85915 true +85927 true +85957 true +85964 true +85972 true +85977 true +85988 true +86000 true +86012 true +86026 true +86031 true +86037 true +86041 true +86050 true +86055 true +86068 true +86072 true +86083 true +86093 true +86122 true +86144 true +86152 true +86157 true +86159 true +86165 true +86185 true +86224 true +86231 true +86240 true +86247 true +86253 true +86269 true +86276 true +86279 true +86288 true +86290 true +86303 true +86314 true +86319 true +86325 true +86331 true +86360 true +86375 true +86382 true +86391 true +86398 true +86400 true +86429 true +86434 true +86437 true +86445 true +86460 true +86462 true +86474 true +86508 true +86520 true +86537 true +86544 true +86548 true +86554 true +86560 true +86569 true +86578 true +86593 true +86610 true +86645 true +86657 true +86663 true +86676 true +86713 true +86770 true +86835 true +86838 true +86895 true +86904 true +86944 true +86959 true +86966 true +86973 true +87010 true +87014 true +87024 true +87029 true +87034 true +87049 true +87083 true +87087 true +87093 true +87103 true +87123 true +87132 true +true +87137 true +87141 true +87144 true +87225 true +87246 true +87267 true +87272 true +87276 true +87287 true +87292 true +87335 true +87351 true +87362 true +87371 true +87379 true +87388 true +87403 true +87485 true +87490 true +87495 true +87506 true +87510 true +87514 true +87525 true +87527 true +87534 true +87541 true +87547 true +87552 true +87573 true +87587 true +87636 true +87652 true +87669 true +87680 true +87748 true +87760 true +87772 true +87780 true +87784 true +87842 true +87862 true +87881 true +87886 true +87908 true +87923 true +87939 true +87945 true +87965 true +87977 true +87988 true +87998 true +88011 true +88017 true +88022 true +88035 true +88043 true +88051 true +88058 true +88077 true +88133 true +88140 true +88148 true +88157 true +88164 true +88183 true +88213 true +88249 true +88255 true +88298 true +88315 true +88322 true +88329 true +88337 true +88344 true +88354 true +88360 true +88363 true +88501 true +88510 true +88530 true +88557 true +88565 true +88582 true +88588 true +88592 true +88600 true +88614 true +88622 true +88628 true +88634 true +88658 true +88664 true +88704 true +88711 true +88746 true +88752 true +88763 true +88775 true +88779 true +88785 true +88822 true +88832 true +88837 true +88849 true +88857 true +88875 true +88877 true +88883 true +true +88890 true +88912 true +88927 true +88936 true +true +88943 true +88949 true +true +88953 true +88959 true +88972 true +88987 true +88994 true +89021 true +89033 true +89057 true +89079 true +89085 true +89104 true +89120 true +89139 true +89184 true +89193 true +89201 true +89225 true +89243 true +89264 true +89310 true +89314 true +89326 true +89350 true +89360 true +89388 true +89415 true +89436 true +89480 true +89491 true +89494 true +89531 true +89568 true +89577 true +89593 true +89609 true +89617 true +89633 true +89639 true +89654 true +89668 true +89680 true +89693 true +89735 true +89744 true +89770 true +89775 true +89778 true +89804 true +89977 true +89998 true +90022 true +90029 true +90033 true +90041 true +90046 true +90114 true +90134 true +90137 true +90212 true +90308 true +90330 true +90344 true +90357 true +90364 true +90368 true +90371 true +90374 true +90411 true +90427 true +90444 true +90454 true +90461 true +90491 true +90527 true +90532 true +90535 true +90538 true +90542 true +90570 true +90621 true +90637 true +90649 true +90651 true +90665 true +90683 true +90733 true +90742 true +90749 true +90788 true +90791 true +90822 true +90830 true +90840 true +90842 true +90870 true +90908 true +90918 true +90929 true +90935 true +90940 true +90948 true +90953 true +90955 true +90973 true +90981 true +90985 true +90999 true +91001 true +91007 true +91014 true +91018 true +91026 true +91053 true +91061 true +91072 true +91093 true +91096 true +91103 true +91114 true +91133 true +91152 true +91166 true +91170 true +91199 true +91228 true +91239 true +91265 true +91287 true +91290 true +91314 true +91320 true +91331 true +91340 true +91380 true +91408 true +91413 true +91418 true +91444 true +91468 true +91475 true +91480 true +91514 true +91529 true +91540 true +91550 true +91587 true +91596 true +91615 true +91636 true +91653 true +91676 true +91682 true +91756 true +91761 true +91804 true +91810 true +91836 true +91847 true +91905 true +91920 true +91945 true +92057 true +92065 true +92079 true +92102 true +92125 true +92132 true +92145 true +92153 true +92183 true +92186 true +92194 true +92203 true +92225 true +92242 true +92285 true +92293 true +92303 true +92308 true +92311 true +92314 true +92327 true +92332 true +92338 true +92352 true +92367 true +92378 true +92406 true +92424 true +92431 true +92435 true +92451 true +92459 true +92467 true +92476 true +92481 true +92541 true +92554 true +92563 true +92573 true +92581 true +92590 true +92616 true +92629 true +92636 true +92641 true +92685 true +92692 true +92707 true +92741 true +92752 true +92774 true +92796 true +92807 true +92851 true +92864 true +92874 true +92880 true +92892 true +92906 true +92916 true +92936 true +92987 true +93005 true +93021 true +93033 true +93056 true +93061 true +93070 true +93134 true +93226 true +93247 true +93255 true +93337 true +93343 true +93352 true +93363 true +93370 true +93374 true +93381 true +93388 true +93393 true +93395 true +93415 true +93483 true +93500 true +93503 true +93512 true +93518 true +true +93525 true +93528 true +93556 true +93601 true +93603 true +93609 true +93624 true +93629 true +93697 true +93702 true +93728 true +93772 true +93797 true +93819 true +93840 true +93903 true +93915 true +93931 true +93949 true +93958 true +93978 true +93992 true +94007 true +94024 true +94038 true +94050 true +94055 true +94073 true +94087 true +94094 true +94101 true +94110 true +true +94123 true +94129 true +94139 true +94176 true +94190 true +94215 true +94222 true +94235 true +94251 true +94266 true +true +94282 true +94297 true +94308 true +94318 true +94321 true +94324 true +94354 true +94381 true +94422 true +94442 true +94463 true +94478 true +94503 true +94507 true +94510 true +94542 true +94550 true +94595 true +94599 true +94615 true +94625 true +94635 true +true +94644 true +94658 true +94666 true +94670 true +94673 true +94680 true +94684 true +94699 true +94709 true +94718 true +94724 true +94748 true +94752 true +94815 true +94830 true +94841 true +94845 true +94848 true +94876 true +94884 true +94887 true +94900 true +94915 true +94949 true +94959 true +94996 true +95006 true +95026 true +95028 true +95060 true +95081 true +95118 true +95134 true +95144 true +95152 true +95180 true +95187 true +95196 true +95202 true +95211 true +95219 true +95224 true +95227 true +95236 true +95239 true +95243 true +95258 true +95263 true +95270 true +95273 true +95281 true +95292 true +95340 true +95342 true +95351 true +95367 true +95371 true +95381 true +95404 true +95421 true +95429 true +95435 true +95441 true +95449 true +95477 true +true +95524 true +95563 true +95572 true +95585 true +95594 true +95598 true +95633 true +95670 true +95679 true +95684 true +95694 true +95697 true +95702 true +95719 true +95740 true +95752 true +95763 true +95786 true +95796 true +95798 true +95812 true +95815 true +95823 true +95853 true +95904 true +95914 true +95918 true +95922 true +95941 true +95962 true +95972 true +95982 true +96000 true +96009 true +96014 true +96024 true +96047 true +96055 true +96091 true +96095 true +96100 true +96110 true +96124 true +96160 true +96177 true +96179 true +96186 true +96200 true +96248 true +96281 true +96296 true +96312 true +96317 true +96344 true +96365 true +96368 true +96372 true +96376 true +96386 true +96392 true +96408 true +96518 true +96544 true +96556 true +96566 true +96579 true +96603 true +96608 true +96613 true +96620 true +96628 true +96646 true +96666 true +96694 true +96704 true +96707 true +96720 true +96730 true +96737 true +96740 true +96752 true +96755 true +96763 true +96774 true +96783 true +96791 true +96801 true +96808 true +96813 true +96822 true +96828 true +96851 true +96867 true +96899 true +96915 true +96923 true +97018 true +97092 true +97128 true +97137 true +97221 true +97251 true +97257 true +97267 true +97327 true +97330 true +97352 true +97368 true +97397 true +97417 true +97443 true +97460 true +97472 true +97476 true +97488 true +97516 true +97529 true +97546 true +97554 true +97565 true +97601 true +97616 true +97621 true +97640 true +97646 true +97683 true +97718 true +97725 true +97737 true +97744 true +97817 true +97856 true +97860 true +97864 true +97882 true +97906 true +97921 true +97935 true +97947 true +97981 true +98005 true +98015 true +98024 true +98030 true +98036 true +98097 true +98139 true +98147 true +98179 true +98237 true +98265 true +98270 true +98305 true +98344 true +98368 true +98372 true +98377 true +98390 true +98398 true +98418 true +98429 true +98441 true +98456 true +98470 true +98477 true +98501 true +98510 true +98526 true +98534 true +98537 true +98552 true +98568 true +98575 true +98600 true +98642 true +98665 true +98684 true +98715 true +98728 true +98749 true +98844 true +98849 true +98858 true +98873 true +98879 true +98893 true +98905 true +98917 true +98924 true +98928 true +98959 true +98982 true +true +99012 true +99046 true +99072 true +99079 true +99146 true +99156 true +99166 true +99173 true +99182 true +99236 true +99309 true +99346 true +99445 true +99471 true +99487 true +99506 true +99519 true +99566 true +99582 true +99586 true +99593 true +99609 true +99651 true +99662 true +99675 true +99700 true +99718 true +true +99733 true +99755 true +99798 true +99824 true +99852 true +99858 true +99892 true +100002 true +100016 true +100022 true +100027 true +100047 true +100055 true +100070 true +100124 true +100158 true +true +100165 true +100192 true +100215 true +100238 true +100247 true +100265 true +100294 true +100300 true +100323 true +100328 true +100338 true +100364 true +true +100369 true +100376 true +100390 true +100397 true +100449 true +100495 true +100515 true +100528 true +100536 true +100560 true +100564 true +100601 true +100608 true +100637 true +100780 true +100814 true +100817 true +100841 true +100878 true +100886 true +100896 true +100903 true +100906 true +100961 true +100967 true +100996 true +101007 true +101013 true +101023 true +101034 true +101040 true +101073 true +101080 true +101093 true +101109 true +101161 true +101168 true +101261 true +101277 true +101287 true +101324 true +101333 true +101354 true +101359 true +101370 true +101375 true +101380 true +101409 true +101488 true +101597 true +101599 true +101612 true +101618 true +101632 true +101646 true +101679 true +101685 true +101752 true +101765 true +101786 true +101798 true +101833 true +101847 true +101869 true +101903 true +101916 true +101921 true +101940 true +101971 true +101981 true +101987 true +101997 true +102010 true +102021 true +102072 true +102084 true +102123 true +102139 true +102149 true +102160 true +102164 true +102169 true +102175 true +102197 true +102219 true +102227 true +102250 true +102278 true +102286 true +102290 true +102319 true +102328 true +102347 true +102363 true +102433 true +102459 true +102482 true +102491 true +102499 true +102520 true +102526 true +102531 true +102541 true +102548 true +102573 true +102586 true +102600 true +102608 true +102619 true +102641 true +102649 true +102661 true +102680 true +102700 true +102728 true +102749 true +102754 true +102762 true +102773 true +102777 true +102796 true +102825 true +102837 true +102857 true +102862 true +102891 true +102917 true +102937 true +102943 true +102947 true +102960 true +102968 true +102979 true +102984 true +102995 true +103004 true +103009 true +103015 true +103025 true +103051 true +103084 true +103099 true +103111 true +103131 true +103154 true +103162 true +103169 true +103180 true +103208 true +103215 true +103220 true +103240 true +103260 true +103264 true +103276 true +103287 true +103297 true +103304 true +103310 true +103316 true +103321 true +103329 true +103371 true +103392 true +103453 true +103463 true +103482 true +103488 true +103505 true +103524 true +103536 true +103542 true +103558 true +103567 true +103582 true +103590 true +103607 true +103631 true +103647 true +103662 true +103704 true +103871 true +104148 true +104154 true +104211 true +104234 true +104297 true +104314 true +104331 true +104537 true +104719 true +104736 true +104740 true +104773 true +104843 true +104868 true +104902 true +104905 true +104908 true +104911 true +104979 true +104985 true +105023 true +105044 true +105077 true +105114 true +105171 true +105239 true +105255 true +105286 true +105312 true +105341 true +105354 true +105359 true +105363 true +105372 true +105399 true +105403 true +105413 true +105421 true +105442 true +105593 true +105630 true +105649 true +105681 true +105704 true +105719 true +105808 true +105811 true +105880 true +105926 true +105969 true +106039 true +106079 true +106125 true +106205 true +106225 true +106282 true +true +106331 true +106338 true +106346 true +106357 true +106372 true +106391 true +106439 true +106448 true +106463 true +106478 true +106482 true +106569 true +106594 true +106607 true +106707 true +106730 true +106756 true +106779 true +106856 true +106865 true +106881 true +106883 true +106891 true +106901 true +106916 true +106918 true +106928 true +106938 true +106948 true +106970 true +106980 true +106993 true +107005 true +107039 true +107049 true +107053 true +107069 true +107094 true +107171 true +107223 true +107238 true +107241 true +107243 true +107247 true +107265 true +107288 true +107301 true +107308 true +107339 true +107349 true +107486 true +107532 true +107549 true +107556 true +107598 true +107606 true +107612 true +107651 true +107670 true +107687 true +107718 true +107755 true +108044 true +108049 true +108097 true +108146 true +108178 true +108207 true +108273 true +108337 true +108363 true +108393 true +108427 true +108532 true +108555 true +108642 true +108660 true +108672 true +108685 true +108699 true +108713 true +108749 true +108809 true +108844 true +108907 true +108952 true +108989 true +109014 true +109149 true +109221 true +109276 true +109325 true +109373 true +109385 true +109411 true +109441 true +109475 true +109503 true +109522 true +109540 true +109558 true +109583 true +109593 true +109661 true +109686 true +109715 true +109768 true +109770 true +109801 true +109834 true +109843 true +109868 true +109880 true +109902 true +109938 true +109951 true +109958 true +109999 true +110030 true +110056 true +110094 true +110112 true +110159 true +110163 true +110187 true +110197 true +110258 true +110272 true +110288 true +110297 true +110306 true +110319 true +110350 true +110369 true +110389 true +110467 true +110479 true +110487 true +110499 true +110514 true +110524 true +110527 true +110530 true +110552 true +110562 true +110619 true +110649 true +110689 true +110705 true +110716 true +110799 true +110810 true +true +110929 true +110960 true +111018 true +111134 true +111138 true +111173 true +111233 true +111295 true +111332 true +111359 true +111364 true +111377 true +111390 true +111409 true +111434 true +111482 true +111499 true +111510 true +111529 true +111534 true +111561 true +111667 true +111684 true +111701 true +111715 true +111719 true +111742 true +111789 true +111805 true +111848 true +111867 true +111892 true +111911 true +111952 true +111961 true +111995 true +112000 true +112037 true +112053 true +true +112064 true +112074 true +112081 true +112106 true +112110 true +112140 true +112161 true +112163 true +112174 true +112181 true +112200 true +112209 true +112224 true +112230 true +112235 true +112255 true +112262 true +112302 true +112357 true +112368 true +112384 true +112391 true +112396 true +112404 true +112411 true +112420 true +112426 true +112444 true +112454 true +112513 true +112516 true +112542 true +112547 true +112566 true +112573 true +112592 true +112603 true +112650 true +112654 true +112668 true +112676 true +112689 true +112702 true +112740 true +112833 true +112873 true +112875 true +112887 true +112936 true +112949 true +112957 true +112968 true +112975 true +112998 true +113007 true +113021 true +113025 true +113109 true +113183 true +113257 true +113277 true +113303 true +113317 true +113364 true +113375 true +113379 true +113405 true +113412 true +113422 true +113476 true +113512 true +113557 true +113568 true +113579 true +113624 true +113636 true +113655 true +113676 true +113688 true +113693 true +113696 true +113725 true +113751 true +113755 true +113768 true +113772 true +113776 true +113796 true +113801 true +113815 true +113827 true +113833 true +113868 true +113878 true +113907 true +113915 true +113941 true +113968 true +113980 true +114021 true +114032 true +114044 true +114060 true +114138 true +114142 true +114159 true +114166 true +114171 true +114177 true +114184 true +114219 true +114224 true +114241 true +114269 true +114275 true +114300 true +114315 true +114336 true +114397 true +114433 true +114459 true +114521 true +114530 true +114537 true +114564 true +114577 true +114590 true +114647 true +114664 true +114666 true +114670 true +114680 true +114689 true +114716 true +114762 true +114780 true +114793 true +114887 true +114892 true +114913 true +114923 true +114994 true +115005 true +115021 true +115030 true +115040 true +115042 true +115055 true +115117 true +115176 true +115180 true +115215 true +115230 true +115237 true +115245 true +115254 true +115269 true +115275 true +115289 true +115310 true +115320 true +115329 true +115332 true +115382 true +115388 true +115432 true +115464 true +115491 true +115495 true +115498 true +115522 true +115539 true +115556 true +115561 true +115600 true +115617 true +115622 true +115634 true +115645 true +115690 true +115710 true +115729 true +115744 true +115755 true +115789 true +115800 true +115809 true +115833 true +115858 true +true +115908 true +115931 true +115948 true +115950 true +115967 true +115983 true +116021 true +116023 true +116038 true +116044 true +116050 true +116064 true +116095 true +116143 true +116199 true +116216 true +116231 true +116244 true +116259 true +116280 true +116296 true +116316 true +116344 true +116375 true +116391 true +116403 true +116414 true +116419 true +116423 true +116434 true +116454 true +116468 true +116475 true +116492 true +116509 true +116522 true +116539 true +116547 true +116555 true +116572 true +116587 true +116593 true +116677 true +116741 true +116750 true +116766 true +116772 true +116780 true +116787 true +116799 true +116817 true +116827 true +116829 true +116844 true +116849 true +116858 true +116861 true +116865 true +116883 true +116907 true +116922 true +116935 true +116955 true +116958 true +116964 true +116977 true +116987 true +116997 true +117018 true +117025 true +117046 true +117071 true +117076 true +117089 true +117102 true +117132 true +117137 true +117156 true +117167 true +117175 true +117181 true +117195 true +117209 true +117223 true +117234 true +117240 true +117257 true +117270 true +117278 true +117291 true +117301 true +117311 true +117325 true +117356 true +117367 true +117379 true +true +117383 true +117391 true +117396 true +117411 true +true +117417 true +117419 true +117443 true +117447 true +117458 true +117473 true +117494 true +117529 true +117535 true +117543 true +117557 true +117562 true +117576 true +117590 true +117596 true +117605 true +117609 true +true +117615 true +117631 true +117641 true +117654 true +117657 true +117662 true +117670 true +117677 true +117680 true +117682 true +117824 true +117832 true +117839 true +117844 true +117850 true +117864 true +117874 true +117903 true +117919 true +117923 true +117936 true +117985 true +118012 true +118038 true +118051 true +118117 true +118123 true +118127 true +118131 true +118151 true +118178 true +118199 true +118228 true +118230 true +118239 true +118243 true +118249 true +118295 true +118319 true +118332 true +118346 true +true +118396 true +118415 true +118428 true +118435 true +118491 true +118500 true +118509 true +118512 true +118536 true +118545 true +118553 true +118595 true +118604 true +118664 true +118687 true +118695 true +118711 true +118717 true +118719 true +118723 true +118738 true +118748 true +118762 true +118784 true +118792 true +118796 true +118798 true +118803 true +118810 true +118827 true +118831 true +118841 true +118843 true +118854 true +118865 true +118882 true +118884 true +118894 true +118899 true +118903 true +118925 true +118966 true +118974 true +118980 true +118995 true +119019 true +119028 true +119060 true +119095 true +119143 true +119152 true +119154 true +119159 true +119163 true +119165 true +119177 true +119179 true +119294 true +119316 true +119330 true +119394 true +119397 true +119405 true +119438 true +119447 true +119458 true +119465 true +119486 true +119497 true +119530 true +119536 true +119569 true +119577 true +119580 true +119623 true +119628 true +119643 true +119650 true +119652 true +119665 true +119686 true +true +119697 true +119708 true +119711 true +119715 true +119721 true +119725 true +119752 true +119757 true +119805 true +119815 true +119825 true +119852 true +119871 true +119897 true +119921 true +119924 true +119927 true +119946 true +119962 true +119994 true +120008 true +120037 true +120050 true +120090 true +120112 true +120139 true +120185 true +120195 true +120202 true +120213 true +120220 true +120232 true +120250 true +120257 true +120266 true +120268 true +120277 true +120289 true +120330 true +120339 true +120394 true +120400 true +120411 true +120425 true +120439 true +120444 true +120450 true +120459 true +120479 true +120489 true +120501 true +120558 true +120564 true +120568 true +120584 true +120636 true +120651 true +120677 true +120707 true +120717 true +120728 true +120757 true +120768 true +120799 true +120810 true +120817 true +120878 true +120907 true +120920 true +120931 true +120937 true +120944 true +120953 true +120957 true +120971 true +120973 true +120985 true +120991 true +120994 true +121015 true +121017 true +121027 true +121094 true +121142 true +121167 true +121184 true +121201 true +121211 true +121230 true +121319 true +121322 true +121326 true +121337 true +121341 true +121376 true +121396 true +121407 true +121427 true +121429 true +121456 true +121467 true +121486 true +121560 true +true +121564 true +121588 true +121590 true +121598 true +121602 true +121606 true +121666 true +121670 true +121686 true +121724 true +121748 true +121760 true +121865 true +121902 true +121917 true +true +121949 true +121955 true +121970 true +122032 true +122049 true +122146 true +122205 true +122223 true +122242 true +122302 true +122322 true +122418 true +122423 true +122481 true +122504 true +122512 true +122521 true +122555 true +122560 true +122564 true +122610 true +122614 true +122641 true +122653 true +122670 true +122677 true +122724 true +122741 true +122763 true +122802 true +122814 true +122832 true +122868 true +122874 true +122897 true +122913 true +122920 true +122975 true +123001 true +123034 true +123052 true +123062 true +123082 true +123105 true +123128 true +123136 true +123165 true +123180 true +123207 true +123210 true +123216 true +123249 true +123281 true +123303 true +true +123311 true +123354 true +123361 true +123366 true +123371 true +123376 true +123503 true +123517 true +123523 true +123543 true +123586 true +123599 true +123629 true +123643 true +123647 true +123658 true +123662 true +123717 true +123748 true +123802 true +123816 true +123833 true +123858 true +123865 true +123876 true +123890 true +123896 true +123902 true +123908 true +123914 true +123920 true +123926 true +123945 true +123953 true +123962 true +123972 true +123979 true +124012 true +124044 true +124058 true +124075 true +124080 true +124089 true +124131 true +124162 true +124178 true +124237 true +124292 true +124315 true +124322 true +124337 true +124355 true +124395 true +124426 true +124429 true +124457 true +124477 true +124481 true +124487 true +124502 true +124514 true +124551 true +true +124555 true +124562 true +124573 true +124612 true +124624 true +124653 true +124676 true +124709 true +124718 true +124730 true +124742 true +124746 true +124773 true +124854 true +124869 true +124951 true +124998 true +125019 true +125067 true +125113 true +125126 true +125171 true +125199 true +125207 true +125283 true +125310 true +125322 true +125330 true +125337 true +125344 true +125352 true +125393 true +125423 true +125430 true +125470 true +125475 true +125499 true +125650 true +125922 true +125928 true +126000 true +126030 true +126085 true +126222 true +126404 true +126439 true +126537 true +126566 true +126576 true +126641 true +126863 true +126868 true +126895 true +126921 true +126986 true +127038 true +127104 true +127109 true +127149 true +127226 true +127237 true +127295 true +127311 true +127327 true +127350 true +127360 true +127445 true +127457 true +127470 true +127495 true +127508 true +127538 true +127572 true +127588 true +127635 true +127640 true +127643 true +127646 true +127659 true +127666 true +127674 true +127680 true +127752 true +127816 true +127840 true +127856 true +127885 true +127887 true +127893 true +127906 true +127963 true +128005 true +128019 true +128251 true +128371 true +128497 true +128508 true +128613 true +128618 true +128754 true +128756 true +128799 true +128950 true +128983 true +129081 true +129091 true +129101 true +129221 true +true +129227 true +129404 true +129410 true +129490 true +129496 true +129593 true +129830 true +129892 true +130156 true +130430 true +130664 true +130780 true +131705 true +131726 true +131731 true +131741 true +131796 true +131875 true +131934 true +132198 true +132324 true +132362 true +132774 true +132786 true +133235 true +133339 true +133405 true +133485 true +133596 true +133604 true +133809 true +133850 true +133959 true +134339 true +134552 true +134641 true +134822 true +134838 true +134933 true +134991 true +135020 true +135061 true +135087 true +135110 true +135124 true +135261 true +135272 true +135324 true +135435 true +135780 true +135961 true +136006 true +136021 true +136054 true +136210 true +136603 true +136704 true +136730 true +136746 true +136888 true +137012 true +137220 true +137229 true +137237 true +137247 true +137287 true +137471 true +137515 true +137547 true +137586 true diff --git a/tf/0.1.1/domain.tf b/tf/0.1.1/domain.tf new file mode 100644 index 0000000..0a5d889 --- /dev/null +++ b/tf/0.1.1/domain.tf @@ -0,0 +1,126893 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=domain +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +033005 +010002 033003 +093001 +093001 +010002 +093001 +010002 +093001 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089017 +092004 +010003 +092004 +089015 +093001 +023003 +092004 +093001 +089017 +092004 +093001 +089003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +092004 +037004 +089015 +093001 +023003 +092004 +093001 +089003 +092004 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089017 +092004 +010003 +092004 +067002 +092004 +085005 +093002 +089015 +067002 +092004 +085005 +093002 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +089015 +093001 +023003 +092004 +093001 +092004 +010004 +093001 +089003 +092006 +023003 +093001 +092004 +033009 +093001 +089008 +059003 +092004 +010002 +067006 +093001 +067006 +093001 +010002 +060002 +089015 +067006 +093001 +067006 +092004 +085005 +093002 +010002 +060002 +089015 +067006 +092004 +085005 +093002 +067006 +092004 +053009 +010002 +060002 +277 092004 +093001 +093001 +092004 +023003 +061 +013001 +034010 +092004 +010002 +092004 +093001 +092004 +093001 +067002 +293 023004 +092004 +027001 +023003 +023003 +023003 +090003 +012001 +088003 +089015 +093001 +092004 +010004 +092004 +088002 +013001 +089017 +069002 +025001 +092004 +025018 +030004 +028005 +034010 +092004 +089023 +092007 +092004 +030001 +091003 +012001 +012001 +326 033056 +024001 +092004 +033006 +093001 +010002 +093001 +069002 +025022 +034007 +093001 +092004 +010004 +092003 +089007 +092004 +083003 +092004 +023003 +090003 +012001 +088003 +013001 +089017 +023003 +010002 +089015 +033009 +092004 +033009 +092004 +093001 +089007 +092004 +021006 +092004 +011002 +092004 +089021 +092004 +088038 +092004 +369 092007 +063001 +013004 +089009 +013004 +092004 +033006 +090001 +012001 +090001 +092004 +053009 +033006 +091003 +092004 +009003 +023003 +023003 +023003 +089015 +023003 +010002 +089015 +033009 +092004 +033009 +092004 +093001 +089019 +089019 +033010 +089020 +092002 +092004 +012001 +405 092004 +093001 +023005 +090003 +092004 +023005 +042002 +064 +033032 +092004 +092004 +012001 +012001 +419 034007 +092004 +010004 +092004 +089015 +069002 +023004 +092004 +067006 +429 023003 +010002 +089015 +033009 +092004 +033009 +092004 +093001 +438 092004 +093001 +023003 +083003 +093002 +092004 +093002 +067007 +067008 +093001 +092004 +037004 +091003 +032004 +084001 +082001 +015006 +084002 +093002 +033006 +083002 +085001 +092004 +023003 +037004 +092004 +093001 +089007 +024001 +092004 +092004 +001004 +083003 +092004 +015010 082001 +089015 +015006 +053007 +092004 +478 033015 +092004 +037004 +093001 +025021 +089017 +059003 +093002 +089020 +092004 +089015 +015013 +059003 +092004 +053009 +089017 +053009 +092004 +011002 +033014 +090003 +092004 +083002 +092004 +053009 +023003 +089015 +092004 +033006 +092004 +083003 +093002 +092004 +093002 +089007 +061 +033005 +090001 +092004 +053009 +089017 +093002 +001011 +093002 +092003 +069002 +087004 +013001 +083003 +092004 +037004 +093002 +089007 +089003 +092003 +015004 +037004 +092004 +036001 +092004 +011002 +092001 +092004 +093001 +067002 +093001 +028005 +033029 +092004 +032004 +027001 +090003 +092004 +092004 +067005 +092004 +024001 +001004 +089015 +015004 +092004 +084002 +093002 +033006 +015004 +027004 +072002 +090006 +092004 +009004 +089015 +067002 +027002 +033015 +092001 +089009 +089017 092001 +015006 +053007 +092004 +579 092004 +024002 +092004 +037004 +015004 +089015 +091003 +092004 +001004 +092006 +024001 +083003 +092004 +082001 +015016 +092004 +084002 +015006 +085001 +083009 +083002 +085001 +092004 +009004 +089015 +024001 +092004 +001004 +025011 +025011 +078001 +078001 +089015 +015006 +084002 +092004 +007002 +024001 +092004 +009004 +089020 +093001 +092004 +010002 +092004 +089015 +017005 +053007 +092004 +089015 +079024 +092004 +006016 065001 +092004 +057008 +092004 +057008 +002007 +089017 +006021 +089017 +006021 +089015 +028003 +644 033056 +069002 +015007 +084002 +093001 +084003 +058006 +001016 +015007 +084002 +092004 +001011 +092004 +658 015007 +092004 +091003 +012001 +012001 +024001 +665 033056 +092004 +093001 +033006 +023005 +015023 +092004 +009004 +089017 +092004 +010002 +092004 +089015 +015004 +084002 +093002 +089015 +085001 +083001 +067006 +071001 +033006 +092003 +089007 +067002 +093001 +027004 +092004 +009004 +092004 +020003 +092004 +698 092004 +017001 +015023 +092004 +009004 +089017 +092004 +010002 +092004 +067009 +089015 +015004 +084002 +093002 +089015 +085001 +083001 +067006 +092004 +023007 +093001 +089009 +013004 +092004 +033006 +090001 +012001 +090001 +092004 +053009 +033006 +084001 +093002 +033029 +092004 +012001 +092001 +067002 +093001 +027001 +090006 +088021 +090001 +092004 +032004 +088024 +078001 +089015 +015004 +020004 +059003 +092004 +009004 +092004 +083003 +093002 +089017 +083003 +059003 +092004 +001011 +092004 +067006 +067009 +089017 +059002 +089005 +092004 +067005 +092006 +027001 +090003 +092004 +032004 +067002 +013004 +092004 +033006 +090001 +093001 +092004 +053009 +033006 +083003 +093002 +024002 +033006 +025012 033007 +089017 +052 +078001 +093001 +025012 +092004 +010002 +092004 +089017 +069002 +030004 +025013 +089007 +069002 +013003 +802 023007 +092004 +093001 +091003 +012001 +012001 +024001 +810 033056 +092004 +093001 +083003 +093002 +033006 +023005 +015023 +092004 +009004 +089017 +092004 +010002 +092004 +089015 +015002 +084002 +001011 +093001 +089007 +023007 +092004 +020004 +092004 +023007 +092004 +009004 +838 092004 +023005 +015023 +092004 +009004 +089017 +092004 +010002 +092004 +089015 +015008 +084002 +001011 +093001 +089023 +033015 +090006 +093001 +037004 +092004 +093002 +057010 +092004 +010002 +092004 +093001 +025022 +083001 +015004 +868 028003 +870 033056 +015004 +084002 +092004 +001011 +092004 +093002 +089015 +015006 +085005 +083003 +001014 +033009 +093002 +089009 +013004 +092004 +033006 +090001 +092004 +053009 +090006 +093002 +033009 +895 067007 +092004 +067008 +092007 +085001 +093001 +092004 +053005 +033019 +083003 +092004 +001013 +092004 +093002 +033006 +041005 +089007 +067002 +092004 +037004 +092004 +012001 +089007 +092007 +013001 +092004 +033006 +090001 +093001 +092004 +053009 +033006 +033006 +033006 +083003 +092004 +001013 +077 +092004 +001016 +012001 +079017 +013001 +092004 +001016 +092004 +942 092008 +092004 +093001 +049 +092004 +006017 +092004 +089025 +008002 +004001 +089017 +006017 +006017 +083004 +092004 +008002 +092004 +089017 +092004 +005001 +092004 +013001 +004003 +089017 +005001 + +067002 +015004 +084002 +092004 +093002 +089017 +059003 +092004 +093002 +089017 +059003 +092004 +001011 +092004 +093002 +089015 +053005 +083003 +092004 +093002 +001010 +090001 +092004 +033022 +092004 +088038 +092004 +089015 +024001 +059001 +092004 +011002 +089017 +011002 +015006 +089009 +092004 +053005 +033006 +092004 +023003 058004 +088015 +092004 +028003 +092003 +021004 +084001 +092004 +067006 +038001 +089008 091002 +013003 +013003 +065002 +092004 +041005 +089017 +069002 +031005 +031001 +1030 010002 +1032 092004 +093001 +089007 +033006 +092003 +090006 +074 +092004 +012001 +090003 +092004 +002005 +092007 +013003 +010002 +092004 +093001 +089017 +067002 +092004 +006023 +083005 +092004 +003005 +092004 +003002 +085001 +089008 091002 +059003 +003002 +069002 +023012 +003004 023012 +065003 +019002 +089015 +084002 +002003 +015026 +089023 +092001 +092003 +053005 +083003 +002004 +013002 +041005 +089023 +092004 +1082 092001 +015006 +087003 +092001 +013001 +092006 +069002 +013001 +075 +092004 +006017 +015024 +092004 +092003 +053006 +090001 090002 +012001 +088003 +089017 +002003 +092006 +092004 +006002 +083003 +092004 +008002 +092004 +089015 +079010 +092004 +003004 007007 +092004 +089015 +015013 +092004 +003004 +092004 +084002 +092004 +007002 +089023 +092004 +003005 +014008 +002003 +014008 +067002 +015006 +092004 +093001 +084001 +092004 +093002 +084002 +092004 +093002 +084002 +092004 +093001 +092004 +053005 +090001 +092004 +089023 +092004 +013004 +092004 +033006 +092001 +071004 +1153 090001 +092003 +053005 +091002 +092003 +015006 +084002 +092001 +1162 033014 +092004 +093001 +033006 +1167 013004 +067002 +089007 +061 +066 +013001 +092002 +013004 +059003 +088002 +067002 +013004 +092004 +1181 053005 +092004 +093001 +067002 +015010 +084001 +092004 +002004 +089015 +091003 +079024 +092004 +001002 +089015 +024001 +012001 +012001 +015011 +064 +004002 +015006 +083008 +092004 +089015 +091003 +033006 +089003 +092004 +001002 +033006 +092007 +013001 +092004 +012001 +092001 +092004 +058007 +089004 +092006 +025008 +067002 +092004 +093001 +015023 +084002 +092004 +001013 +090001 +092004 +012001 +088038 +090001 +092004 +012001 +089015 +053008 +067005 +067005 +1240 067005 +067005 +067002 +023001 +089015 +015005 +092004 +012001 +033006 +092004 +089010 +013001 +012001 +092004 +012001 +033006 +090006 +092004 +002005 +092007 +005001 +013002 +089023 +092004 +033004 +033006 +033005 +069002 +090002 +005001 +058007 +023007 +092004 +009001 +089023 +090002 +059003 +033006 +015004 +084003 +033006 +012001 +067002 +015023 +092004 +092004 +012001 +084002 +092004 +053006 +001014 +089015 +085002 +092004 +083008 +092004 +007003 +092004 +007002 +089015 +033006 +092004 +089010 +013001 +012001 +092004 +012001 +015026 +092003 +084002 +089007 +033005 +090006 +092004 +012001 +092004 +033032 +1318 092003 +089017 +083008 +008002 +015024 +092003 +1326 019001 +084002 +002005 +092004 +008002 +092003 +033006 +092004 +092004 +093001 +089023 +033005 +069002 +088038 +012001 +092004 +012001 +092003 +067002 +015023 +092004 +092004 +012001 +084002 +001007 +081002 +078001 +089015 +028003 +092004 +059003 +092004 +001012 +092004 +001006 +089017 +092004 +087003 +092004 +089015 +033006 +092004 +092007 +059003 +092003 +057008 +089010 +017005 +053007 +092001 +067002 +033006 +092004 +092004 +093001 +015004 +012001 093001 +089007 +033005 +012001 +092004 +012001 +092003 +053007 +089017 +092004 +058007 +053001 +067002 +015004 +092004 +092004 +012001 +089015 +091003 +012001 +015005 +089015 +035004 +092004 +1407 033015 +090006 +093001 +037007 +015007 +084002 +092004 +093002 +089015 +015004 +092004 +093002 +015006 +085005 +083003 +093002 +092004 +001010 +083003 +001011 +093002 +089017 +093002 +089009 +013004 +092004 +033006 +090001 +093001 +092004 +053009 +033006 +001011 +093002 +089017 +001011 +093002 +001016 +001010 +083007 +092004 +093002 +093002 +092004 +011002 +092004 +011003 +092004 +085003 +083003 +1458 014006 +078001 +090013 +089017 +092004 +085003 +083003 +001011 +089017 +014007 +023007 +014006 +014006 +092004 +067006 +067002 +068001 +092004 +093001 +033019 +089017 +033006 +041005 +089007 +067002 +092004 +037004 +092004 +012001 +1488 015029 +083005 +092004 +001010 +092004 +093002 +024001 +060002 +010003 +093001 +092004 +033009 +093001 +089017 +093001 +092004 +010003 +092004 +015026 +006003 +084002 +092004 +001010 +089007 +013001 +044 +089015 +033006 +092004 +084002 +036004 +092001 +089015 +013001 +092003 +044 +009001 +089015 +092004 +067002 +085002 +092004 +006003 +036004 +092004 +089015 +015001 +084001 +024001 +058006 +060002 +010003 +093001 +092004 +092004 +093001 +089017 +093001 +092004 +010003 +092004 +083003 +092004 +006008 +089020 +093001 +092004 +010002 +092004 +075 +092004 +006003 +092004 +089015 +033029 +092004 +089015 +092004 +067002 +085002 +092004 +006008 +089017 +092004 +010002 +092004 +036004 +092004 +091001 +015002 +083003 +063001 +092004 +093002 +033017 +083003 +092004 +007002 +092004 +089017 +033019 +092004 +033015 +092004 +037004 +089017 +023008 +058004 059003 +023009 +089017 +058004 059003 +023009 +083003 +092004 +011001 +089015 +015004 +092004 +033015 +092004 +084002 +063001 +092004 +093002 +089015 +015023 +092004 +059003 +092004 +023009 +023009 +058006 +023009 +089017 +024006 +090013 +012001 +089017 +023009 +089017 +023009 +089015 +023008 +092004 +089015 +015017 015020 +092004 +011001 +078001 +084001 +092004 +093002 +089017 +093002 +089017 +093002 +089017 +093002 +089017 +083007 +092004 +093002 +1651 024001 +092004 +011001 +015010 +084002 +092004 +001007 +089015 +017002 +092004 +015005 +092004 +092004 +036004 +092004 +089015 +033004 +092004 +033006 +092004 +033017 +092004 +033006 +025011 +092004 +088007 +092004 +088007 +089007 +092004 +013001 +092004 +037004 +092004 +012001 +025011 +092004 +025012 +089007 +092004 +025013 +025011 +092004 +088008 +089007 +092004 +057009 +092004 +001006 +025011 +092004 +025002 +089017 +025002 +092004 +088002 +089007 +092004 +025007 +025011 +092004 +088010 +089007 +092004 +088010 +025011 +092004 +053003 +092004 +026 +089007 +092004 +092004 +012001 +024001 +025011 +092004 +040001 +089007 +092004 +009001 +012001 +033009 +025011 +092004 +039009 +089007 +088002 +089007 +092004 +013001 +092004 +037004 +092004 +012001 +025011 +013001 +067002 +033042 +092003 +089017 +039009 +089017 +033006 +059003 +088015 +090008 +092003 +033018 +090010 +092001 +025011 +089017 +025011 +089007 +092004 +038002 +092003 +059002 +083003 +092004 +001002 +089007 +1775 039009 +092004 +053009 +092004 +067002 +092003 +092003 +013001 +092004 +005002 +092004 +009001 +089023 +089010 +092004 +005002 +079008 +089012 +092004 +005002 +090006 +092004 +079013 +067006 +089023 +1801 015026 +084002 +019005 +090001 +092004 +009001 +092003 +013001 +092004 +014006 +092004 +009001 +069002 +074 +001014 +024001 +083009 +001007 +085001 +069003 +014008 +006014 +089015 +085002 +092004 +083009 +092004 +006016 +089023 +083008 +092004 +006014 +1834 014006 +059003 +092004 +083003 +092004 +007002 +061 +014006 +092004 +014006 +092003 +083006 +092004 +009001 +089009 +024001 +092003 +092004 +088001 +042002 +089015 +087003 +092004 +012001 +092003 +092004 +083003 +092004 +001002 +069002 +031005 +090006 +015006 +076 +092004 +033005 +089024 +092004 +033005 053009 +069002 +015006 +076 +089023 +033010 +089007 +072001 +033006 +092003 +067006 +071001 +013003 +092004 +001001 +1888 092004 +001001 +033005 +060002 +089024 +060002 +033005 +069002 +069002 +013003 +089021 +092004 +033005 +067006 +071001 +059003 +013004 +089008 +071001 +092006 +036003 +060002 +092004 +033032 +092007 +092004 +065006 +089017 +033017 +061 +092004 +009001 +065006 +033009 +083003 +092004 +037004 +092004 +012001 +089023 +071001 +092006 +042002 +089017 +033017 +092007 +087003 +033009 +083003 +092004 +037004 +092004 +012001 +089007 +033006 +092003 +090006 +1947 078002 +092003 +092004 +088002 +078002 +092004 +053009 +089017 +011002 +069002 +069002 +090013 +013002 +092004 +037004 +092004 +012001 +033015 +090006 +033006 +092004 +067005 +069002 +020004 +089017 +071001 +092006 +020004 +088038 +013001 +092004 +056001 +089023 +092001 +033006 +092003 +090006 +059003 +092004 +088024 +092004 +011002 011003 +092004 +088038 +013001 +092004 +056001 +089017 +071001 +092006 +033006 +092004 +011002 011003 +092004 +032005 +088038 +013001 +092004 +011003 +089017 +071001 +092006 +033006 +032005 +088038 +013001 +084002 +092004 +001003 +092004 +002003 +089008 +089010 +057008 +092004 +057008 +092003 +084002 +092004 +006015 + +029002 +090006 +092004 +011002 +092003 +090013 +092004 +090008 +092003 +085003 +083001 +092004 +057008 +092003 +083006 +092004 +006015 +089015 +015004 +067002 +040001 +092004 +011002 +092003 +089015 +067002 +015001 +057008 +092004 +057008 +092003 +2060 030001 031003 056002 +092004 +056003 +092003 +067005 +067007 +092004 +085001 +089020 +092004 +067007 +092004 +015002 +2075 092003 +037007 +092004 +056003 +092004 +056005 +089015 +092004 +056005 +092004 +035002 +089015 +084002 +007002 +015026 +072001 +033006 +092003 +069002 +069002 +015004 +084001 +067006 +071001 +057012 +092004 +061 +006011 +033015 +090006 +033006 +069002 +088036 +089023 +092001 +033006 +092003 +090006 +059003 +092004 +024001 +009003 +089009 +092004 +025002 +092004 +067002 +088036 +092004 +083003 +092004 +026 +092004 +089017 +089010 +092004 +008002 +092003 +092004 +082002 +088038 +092003 +085002 +092004 +089015 +015026 +084001 +092003 +089007 +065005 +092003 +091005 +057007 +060002 +092004 +008002 +092003 +089017 +069002 +063001 +092004 +008001 +092003 +015026 +013002 +001003 +089017 +089010 +092004 +082002 +092003 +008002 +088038 +092003 +019002 +092004 +089015 +015026 +084001 +092003 +089007 +065005 +092003 +090006 +057007 +060002 +092004 +008002 +092003 +089017 +069002 +063001 +092004 +008001 +092003 +084002 +001003 +015004 +2194 033006 +071001 +092006 +034010 +092004 +010004 +092004 +057008 +092004 +033005 +089023 +092001 +033006 +092003 +090006 +059003 +092004 +034010 +092004 +010004 +092004 +058006 +089007 +088036 +013001 +092004 +088036 +089017 +071001 +092006 +034010 +034010 +088036 +089017 +033015 +090006 +033006 +092004 +067005 +069002 +033054 +089023 +013004 +092004 +012001 +092004 +033054 +092003 +089023 +092001 +033006 +092003 +069002 +033054 +070 078004 +069003 +090007 +092004 +001002 +089007 +013001 +006015 +092004 +012001 +069003 +090007 +092004 +001006 +089007 +013001 +006015 +092004 +008002 037001 +092004 +069003 +090007 +093002 +089007 +013001 +001014 +092004 +078001 +037004 +069003 +090007 +092004 +008002 +092003 +033054 +089007 +069002 +074 +060002 +008002 +013001 +079007 +089024 +079007 +089023 +013001 +092004 +033006 +092003 +069001 +069001 +069002 +069002 +2302 092004 +059006 +092007 +090003 +092004 +088015 +013001 +033015 +090006 +033006 +008002 +057010 +008002 +089017 +008002 +057010 +008002 +089023 +092001 +033006 +092003 +069002 +039003 +092004 +088015 +089023 +092004 +092003 +019001 +083008 +092004 +082002 +008002 +092003 +016 +092004 +089017 +092004 +058006 +089017 +092004 +025001 +092003 +056005 +089015 +092004 +006017 +092003 +057007 +013004 +092004 +089017 +092004 +006017 +089017 +092004 +092003 +037002 +081006 +060002 +015001 +089020 +092004 +060002 +092004 +033012 +092003 +057008 +089017 +092004 +025001 +090003 +092003 +057017 +069002 +035001 068004 +033015 +090006 +033006 +025003 +092004 +011003 +092003 +089017 +088026 +092004 +039001 +092003 +089023 +092001 +033006 +092003 +025003 +092004 +039001 +092003 +089017 +033013 +090009 +092004 +039009 +092003 +089009 +013002 +009001 +092004 +012001 +092003 +092004 +083003 +001002 +089007 +092004 +001004 +092004 +015010 +084002 +088015 +089017 +088001 +089017 +014003 +084002 +088002 +089017 +088002 +089007 +089010 +025003 +092004 +025003 +092003 +092004 +038002 +057001 +069004 +2439 092004 +057014 +092004 +058005 +042002 +089017 +089010 +034007 +092004 +011002 +092003 +2451 092004 +058008 +042002 +069004 +2456 092004 +011002 +092004 +058005 +042002 +089008 +013001 +092003 +088004 +064 +092004 +012001 +092003 +092004 +001002 +088004 +013001 +2474 027006 +092004 +053001 057008 +092003 +069002 +041001 +083006 +092004 +009001 +089009 +092004 +024001 +092004 +2490 038002 +069002 +057001 +089020 +092004 +012001 +092003 +092004 +083003 +092004 +001002 +089008 +067002 +090011 +057008 +069002 +006012 +083006 +092003 +064 +092004 +088029 +042002 +083003 +092004 +007002 +089017 +083003 +092004 +001016 +089009 +033037 087002 +090001 +092004 +009001 +072001 +033006 +092003 +057009 +092004 +038002 +092004 +089023 +092003 +090011 +057008 +028005 +027001 +092004 +008002 082002 +2542 090011 +092004 +008002 +2546 089009 +013001 +092003 +092004 +057008 +028005 +092004 +028005 +089015 +092004 +012001 +092003 +092004 +024001 +028005 +092004 +028005 +038002 +092003 +089017 +067002 +033013 +069002 +013001 +064 +092004 +088029 +089007 +025010 +083003 +092004 +007002 +089017 +083008 +092004 +079023 +092004 +001016 +017001 +033013 +089009 +024001 +092004 +009001 +072001 +033006 +092003 +057009 +092004 +038002 +092004 +089023 +067002 +092003 +033013 +015008 +084002 +092004 +007003 +092003 +089015 +079024 +092004 +007003 +092003 +033013 +092004 +012001 +092003 +092004 +028005 +092004 +028005 +089015 +092004 +012001 +092003 +092004 +024001 +028005 +092004 +028005 +038002 +092003 +2631 033013 +069002 +033006 +064 +092004 +011002 +089007 +031005 +090006 +089007 +092004 +033006 +092004 +024002 +089008 +069002 +064 +092004 +089007 +028001 +092004 +012001 +092003 +092006 +057005 +2657 067002 +092004 +092003 +033012 +092004 +089008 +061 +033013 +092003 +012001 +092002 +092004 +083003 +092004 +001002 +088003 +092004 +033009 +092003 +013004 +092004 +037004 +092003 +013002 +092004 +030004 +092003 +064 +083003 +001002 +089017 +083008 +001006 +092004 +005001 +092002 +092004 +067009 067010 +057008 +092002 +067010 +089017 +040002 +092002 +092004 +088038 +092002 +064 +089017 +092002 +040002 +092004 +088038 +092002 +089017 +069002 +090014 +092002 +013002 +088038 +089023 +021005 +092002 +089021 +092004 +012001 +089007 +089010 +040002 +092004 +009001 +092004 +088038 +092004 +040002 +089017 +092003 +092004 +012001 +092003 +092004 +001002 +089023 +2742 040002 +092004 +009001 +069003 +092004 +012001 +092003 +040002 +092004 +088038 +092003 +089017 +067002 +053008 +069002 +041001 +064 +092004 +088029 +025023 +089007 +079004 +092004 +008002 +092004 +089009 +028003 +092004 +009001 +053008 +072001 +033006 +092003 +057009 +092004 +038002 +092004 +089023 +092003 +053008 +047003 +092003 +092004 +008002 +089017 +092004 +008002 +092003 +047002 +089009 +069002 +028003 +092004 +009001 +053008 +089023 +092004 +012001 +092003 +092004 +013001 +092004 +028005 +089015 +092004 +012001 +092003 +092004 +024001 +013001 +092004 +028005 +038002 +092003 +069002 +065001 +092003 +065001 +083008 +092004 +001006 +083002 +004003 +089017 +002007 +020003 +089017 +083002 +057021 +019004 +089015 +057021 +089023 +065001 +092003 +065001 +083003 +001002 +083002 +069003 +004003 +069003 +002007 +020003 +089017 +083002 +057021 +069002 +019004 +069003 +057021 +089007 +083002 +085001 +092004 +065001 +092003 +083001 +085001 +089017 +092004 +026 +092003 +092004 +006014 +092004 +008001 +013001 +092004 +008002 +089008 +089010 +013001 +092004 +008002 +092003 +023008 057008 +063001 +092004 +008001 +092003 +014006 +013001 +089023 +089010 +092004 +057008 +092003 +023009 057008 088015 +013001 +063001 +092004 +008001 +092003 +014007 +013001 +089008 +089010 +092004 +014006 +092004 +013001 +092003 +088015 +013001 +092004 +088015 +078001 +092004 +074 +060002 +037004 057001 +035002 +089007 +089024 +092004 +2919 088026 +2921 092004 +058006 +025003 +089024 +2926 034002 +2928 092004 +058006 +088025 +069002 +074 +012001 +035002 +089017 +057003 +2939 033006 +092003 +069002 +025021 +092004 +023007 +092003 +092004 +023001 +089024 +092004 +023001 +069003 +092004 +008001 +092003 +092004 +049 +069004 +092004 +023007 +078002 +013001 +092004 +005001 +089017 +092004 +008001 +092004 +006017 +024001 030001 +090006 +092004 +004002 +092004 +004002 +090006 +069002 +043 +069003 +043 +069003 +015013 +084002 +007002 +091002 +092004 +012001 +092003 +092004 +001002 +023001 +092004 +069002 +092003 +078002 +065001 +092004 +089017 +092004 +063004 +092003 +025021 +074 +059008 +084002 +092004 +067008 081002 +092004 +081006 +060002 +089017 +089004 +006017 +092004 +025021 +030001 +092004 +003003 +092004 +001015 +092004 +023011 048 +069002 +042004 +069003 +048 +089023 +033006 +092003 +090006 +069003 +093001 +013001 +059003 +092004 +079005 087003 +092004 +049 +064 +092004 +092007 +089023 +089007 +092004 +003003 +092004 +001015 +067010 +013003 +089015 +067010 +084002 +007007 +015026 +092004 +012001 +061 +049 +069004 +059002 +078002 +092003 +031009 +089008 +069002 +025021 +033006 +092004 +023001 +089024 +092004 +023001 +089024 +092004 +049 +089007 +059003 +092007 +092004 +011002 +025001 +089007 +028001 +092004 +012001 +092003 +092004 +001002 +090006 +057005 +092007 +059003 +089023 +025001 +067002 +092004 +037004 +089017 +092004 +088002 +092004 +3102 092007 +059003 +057008 +092003 +089008 +069002 +025021 +090006 +092004 +067010 +089007 +092004 +067010 +025021 +092004 +059005 +092004 +067009 +092004 +022001 +092004 +069002 +056005 +089009 +069002 +056005 +089007 +090002 +092006 +056005 +056005 +056005 +089017 +090002 +092006 +081001 +057008 +057008 +092003 +3142 092004 +024001 +092004 +003006 +092004 +083003 +092004 +008002 +092004 +011003 +092003 +089023 +092004 +083003 +092004 +092003 +008002 +007008 +069002 +030002 +089024 +092004 +033006 +092004 +011003 +092003 +013004 +015004 +092004 +003006 +084001 +092004 +008002 +092003 +089017 +091003 +092004 +007008 +083003 +092004 +008002 +092003 +088029 +015004 +067002 +084001 +092004 +008002 +092003 +092004 +007008 +3194 067002 +024001 +015004 +092004 +003006 +084001 +092004 +008002 +092004 +011003 +092003 +069002 +057008 +092004 +053006 +092004 +004001 +069003 +015026 +092004 +002006 +092003 +083006 +092004 +004001 +3221 019005 +092004 +090002 +092004 +008002 +092004 +089015 +016 +019003 +092003 +033012 +3233 057008 +092003 +027004 +3237 027002 +019001 +3240 079024 +092003 +089007 +059003 +092004 +033012 +057009 +089017 +092004 +027004 +027002 +089017 +092004 +019001 +079024 +089024 +013001 +063004 +092003 +092004 +009002 +092006 +033012 +092004 +010002 +092004 +005001 +069002 +002005 +057008 +092004 +089024 +089017 +004005 +033012 +069002 +004004 +057008 +092004 +089008 +089010 +092003 +088015 +013001 +028001 +057008 +065003 +057008 +092004 +010002 +092003 +059002 +078002 +092004 +012001 +092003 +092004 +083003 +092004 +001002 +057008 +065003 +092004 +033012 +092004 +089008 +059003 +071001 +059002 +025001 +090006 +041001 +092003 +092004 +009001 +061 +089017 +092003 +041001 +092004 +089007 +092007 +013001 +092004 +033005 +3326 092004 +033005 053009 +090013 +084003 +092004 +081004 +007003 +089007 +081004 +092004 +007003 +089017 +081004 +092004 +001016 +092004 +084003 +089008 +092004 +020003 +089017 +059001 +013001 +092004 +090013 +084003 +092004 +3354 081004 +092004 +007003 +089017 +022003 +092004 +041001 +092004 +084003 +089008 +092004 +023007 +089017 +059001 +013001 +092004 +027002 +092004 +027006 +3374 092004 +053009 +3377 088029 +084002 +092003 +3381 006017 +004001 +089023 +026 +013001 +088015 +020001 057021 +090002 +092004 +042002 +092004 +027007 +092004 +069005 +018001 +084001 +003003 +003004 +089024 +084001 +003003 +003004 +061 +059003 +003002 +065003 +003004 023012 +065003 +023012 +089023 +092004 +065003 +003002 +003004 023012 +065003 +023012 +069002 +074 +003002 +065003 +003004 023012 +065003 +023012 +069003 +003002 +065003 +003004 023012 +065003 +023012 +059003 +003002 +069002 +023012 +003004 023012 +065003 +019002 +089015 +084002 +002003 +015026 +3442 090002 +092004 +042002 +092004 +027007 +092004 +069002 +059003 +092004 +033009 +092001 +012001 +012001 +090013 +013002 +092004 +037004 +092004 +012001 +089023 +092004 +042002 +092004 +025001 +092004 +012001 +092001 +092004 +083003 +092004 +001002 +059001 +033006 +092001 +067002 +092007 +092004 + +012001 +012001 +069004 +092004 +092003 +033009 +033053 +089017 +092004 +092003 +033009 +012001 +053011 +089017 +092004 +092003 +033009 +076 +059001 +090011 +089015 +067002 +033016 +092004 +090006 +067001 +031004 +092003 +015004 +089021 +092001 +092004 +013001 090011 +092004 +088018 +089008 +059003 +092004 +031007 +092001 +092004 +033006 +092007 +089015 +042002 +092004 +064 +009002 +032004 +092004 +045 +092004 +092004 +007002 +083008 +092004 +002005 +089015 +015011 +092004 +014003 +089015 +015006 +092004 +001010 +089017 +014002 +092004 +014002 +089015 +019001 +092004 +007002 +092007 +3555 069002 +015012 +089007 +007003 +083008 +092004 +002005 +089017 +059003 +092004 +033015 +092001 +092004 +033006 +092007 +3571 069002 +042002 +092004 +064 +009002 +032005 +092004 +045 +092004 +092004 +007002 +083008 +092004 +002005 +089015 +015011 +092004 +014003 +089015 +015006 +092004 +001010 +089017 +014002 +092004 +014002 +089017 +019001 +092004 +007002 +092007 +089015 +015012 +3605 013001 +092004 +020003 +092004 +078001 +091001 +013004 +067002 +068003 +092004 +093001 +092004 +033006 +092007 +025020 +092004 +011001 +089007 +092004 +033017 +092004 +089007 +3628 033017 +092004 +064 +037003 +3633 089017 +069002 +064 +092004 +053009 +092004 +3640 015011 +092004 +084001 +092004 +001007 +015017 +092004 +011001 +078001 +089015 +091003 +023009 +015005 +017005 +092004 +033006 +012001 087003 +089010 +030004 +074 +092001 +023008 +089015 +016 +092004 +008002 +024005 +092004 +033006 +030004 +023008 053003 +089015 +067002 +023008 053003 +092004 +092004 +023009 +089015 +033006 +092004 +092004 +093001 +030002 +092004 +033006 +089023 +015004 +092003 +028003 +092004 +053009 +089015 +057008 +092004 +057008 +092006 +033032 +093001 +089009 +033020 +092004 +3702 015008 +092004 +084002 +093002 +015005 +092004 +055004 +033012 +092004 +089017 +033006 +012001 087003 +092004 +087005 +092001 +085002 +083003 +092004 +007002 +023009 +078001 +038001 +033006 +092004 +092001 +015006 +023008 +092004 +3731 033004 +092004 +055004 +033006 +012001 087003 +069002 +013001 +075 +090006 +083009 +092001 +092004 +007003 +015008 +089023 +3747 033006 +033006 +3750 023008 +092004 +087005 +092001 +089007 +089017 +092001 +013001 +009002 +037001 +037003 +3763 092001 +055004 +089017 +033006 +092007 +015004 +3770 015004 +089017 +058006 +015006 +3775 015006 +089017 +092004 +087005 +092001 +042002 +092007 +3783 042002 +089015 +024002 +092004 +093001 +025020 +089015 +033006 +092004 +015017 +072001 +033006 +092003 +090003 +092004 +059002 +031009 +083003 +092004 +093001 +027002 +089017 +033006 +092003 +090006 +059001 +084001 +082001 +089017 +082001 +015006 +089015 +017006 +089020 +093001 +089017 +093001 +089017 +093001 +083003 +092004 +037004 +092004 +012001 +089023 +092004 +011002 +092004 +037004 +015004 +084002 +092004 +001003 +092004 +001003 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +089015 +033006 +092004 +093001 +092004 +055004 +015004 +064 +031009 +013004 +092003 +089015 +023008 +092004 +087005 +067002 +092004 +067009 +092007 +091001 +092004 +093001 +015006 +084002 +092004 +007002 +093001 +024001 +092004 +010004 +092004 +085002 +089017 +023009 +089015 +024005 +092004 +008002 +092004 +089015 +013001 +092004 +092004 +023009 +089015 +017001 +089015 +046 +092004 +089015 +067009 +013004 +015023 +092004 +012001 +059001 +089015 +015004 053011 +092004 +012001 +033006 +089017 +059003 +092004 +023009 +013001 023009 +023008 +089009 +013004 +092004 +033006 +090001 +093001 +092004 +053009 +033006 +092004 +092004 +023009 +092002 +057007 +089017 +092004 +023009 +015024 +3933 092004 +093001 +024001 +011001 +083004 +092004 +033032 +015004 +084002 +092004 +083007 +089015 +015005 +092004 +053009 +033006 +092004 +033017 +015020 +092003 +071001 +083002 +015004 +3957 033006 +092004 +092004 +093001 +092004 +004001 +001008 +057001 +089017 +092004 +004002 +092004 +004002 +006016 +089023 +092004 +009001 +092004 +009001 +069002 +057001 +083002 +092004 +023006 +023006 +089017 +058006 +092004 +036004 +033006 +092004 +012001 087003 +013004 +092001 +067002 +015004 +089015 +035004 +092004 +010002 +092001 +089023 +092004 +093001 +033006 +092004 +015020 +092001 +089017 +033010 +092004 +023007 +052 +092004 +4012 023007 +091001 +015008 +092004 +084002 +092004 +006008 +015020 +092004 +092004 +036004 +092004 +089015 +091003 +014005 +078001 +013004 +083008 +092004 +001010 +089008 +092004 +006008 +079025 +090001 +092004 +014005 +089023 +092004 +023005 +089015 +015005 +023005 +092004 +033006 +012001 087003 +021005 +023007 +089015 +033006 +092004 +092004 +025022 +013001 +031009 +067002 +017001 +033032 +092004 +014002 +089017 +092004 +001010 +4066 013002 +014005 +078001 +089015 +092004 +009002 +025020 +033006 +058004 +013001 +092007 +089007 090006 +4079 092004 +014002 +089017 +092004 +001010 +092004 +036003 +091001 +015006 +092004 +084002 +092004 +083007 +084002 +092004 +001011 +092004 +093002 +015005 +092004 +060002 +012001 +084001 +092004 +007007 +015004 +020001 +078001 +089008 +069002 +074 +092004 +015003 +084003 +092004 +001016 +092007 +089015 +091003 +033006 +033006 +4121 092002 +4124 012001 +092004 +012001 +015006 +083001 +067002 +067001 +038001 +092002 +4134 085001 +083005 +084001 +092004 +004001 +004001 +059001 +023001 +4143 092004 +012001 +033012 +092004 +033006 +089010 +053011 +092002 +015004 +092002 +084002 +092004 +004001 +092004 +004001 +089015 +033006 +092004 +015004 +089015 +092004 +015004 +015004 +084002 +092004 +004001 +089015 +091003 +015027 +059003 +092004 +004001 +084002 +092004 +001007 +084002 +092004 +001010 +089015 +023007 +083003 +092004 +002004 +089015 +092004 +044 +015004 +089015 +015004 +084002 +092004 +001014 +033015 +059003 +089017 +092004 +092004 +012001 +089015 +091003 +059003 +092004 +011003 +015004 +089009 +015005 +092004 +093001 +089015 +024001 +092004 +033012 +089009 +015001 +084001 +092004 +001011 +092004 +091001 +015008 +084002 +006008 +015003 +089015 +015006 +084002 +092004 +057001 +001014 +091001 +091003 +015023 +092004 +023009 +083008 +006015 +085002 +089015 +092004 +093001 +024001 +092004 +031009 +092004 +033006 +092004 +023009 +025014 +009005 +040002 +092003 +092004 +088038 +089015 +091003 +092004 +092004 +053009 +031001 +4264 092007 +033042 +089015 +092004 +093001 +4270 092004 +030001 +092004 +033006 +4276 030001 +088015 +083003 +092004 +026 +092003 +089007 +092004 +013001 +022006 +033006 +040002 +092003 +092004 +088038 +089024 +033006 +017001 +089015 +015029 +089023 +089009 +028001 +090006 +037003 +4302 092004 +009001 +092004 +009001 +083008 +092004 +001006 +040002 +088038 +067002 +033006 +092004 +023009 +4316 015024 +092003 +092004 +006015 +089015 +015001 +084002 +092004 +007002 +092003 +089015 +017001 +015004 +084002 +092004 +007002 +092004 +089023 +024001 +092004 +011001 +087002 +089017 +033037 +092004 +012001 +092004 +037005 +037003 +092007 +092004 +009001 +091001 +015001 +084001 +092004 +093001 +024001 +009002 +017002 +083005 +092004 +057014 +093001 +033009 +089015 +033006 +092004 +015020 +092001 +089015 +015004 +015020 +092004 +089015 +013004 +092004 +023001 +083003 +092004 +007002 +4378 091003 +059001 +057014 +089017 +088038 +015006 +034001 +092004 +093001 +089017 +092004 +036004 +092004 +089015 +024001 +092004 +011002 +033006 +092004 +036004 +092004 +089007 +4401 089020 +092004 +057014 +089017 +088038 +023001 +092004 +033017 +092003 +4411 092004 +024002 +033006 +069002 +057005 +023008 +4418 092004 +023008 +089023 +092004 +023009 +023009 +089023 +015001 +027001 +092004 +013001 +088010 +025010 +089017 +069002 +053002 +089007 +069002 +015006 +033029 +088002 +089023 +088038 +067002 +015005 +092004 +092004 +036004 +093001 +033006 +4450 092002 +089017 +092004 +011002 +053008 +089023 +092004 +036004 +092003 +069002 +053008 +089015 +033006 +092004 +092004 +093001 +069002 +074 +092004 +011001 +092004 +007003 +025012 +067007 +067007 +089020 +092004 +085001 +092004 +010004 +089023 +013004 +067008 +4484 015023 +089021 +092004 +092004 +010004 +089015 +067002 +053008 +4493 092004 +085002 +006017 +006017 +048 +084002 +006017 +058011 +089007 +020003 +092004 +059004 +092004 +090003 +092004 +006017 +089015 +065003 +019003 +013002 +069003 +047001 085002 +006019 +067005 +084002 +006016 +058011 +4523 019003 +092004 +006016 +089015 +092004 +006019 +014005 +089017 +092004 +006016 +020003 +089023 +047001 085002 +006019 +067005 +084002 +006016 +058011 +089015 +059003 +013001 +092007 +092004 +033006 +092004 +091003 +037004 +092004 +4552 017005 +092004 +033006 +090006 +092004 +010002 +092001 +067002 +023007 +089023 +015006 +085002 +092004 +008002 +092003 +083008 +092004 +089015 +023007 +089015 +017001 +092004 +093001 +4576 092004 +089017 +092004 +036004 +092004 +089015 +091003 +009003 +023009 +060002 +067009 +015005 +084001 +024005 +092004 +006017 +092004 +006017 +092004 +089007 +031001 +4599 089010 +4601 024005 +092004 +006017 +092004 +023008 +089015 +092004 +093001 +016 +089015 +024001 +092004 +033006 +025014 +009005 +092004 +031009 +092003 +023008 +092003 +089015 +023008 +092004 +009003 +067006 +092004 +067001 +092007 +089015 +092004 +093001 +015006 +084002 +092004 +007002 +092004 +037004 +089015 +024001 +092004 +006012 +089017 +092004 +011001 +025021 +033006 +015004 +089007 +069002 +023007 +092004 +009003 +089023 +023005 +089015 +033044 +092004 +089023 +4660 015004 +092004 +011001 +015008 +018001 +092004 +008002 +092004 +089015 +023007 +092004 +009003 +089015 +015004 +092004 +033015 +092007 +084002 +063001 +092004 +001011 +092007 +091001 +015001 +084001 +092004 +093001 +015017 +060002 +024001 +033006 +089017 +033006 +088010 +092002 +010002 +093001 +089015 +015006 +084002 +092004 +007002 +015005 +092004 +092004 +024001 +089015 +033006 +092004 +092004 +093001 +031009 +090006 +074 +092007 +042002 +033006 +092004 +069001 +012001 087003 +067002 +024005 +092004 +008002 +092004 +033006 +089005 +092004 +031009 +092003 +013004 +092003 +089015 +024001 +092004 +092004 +008002 +089015 +033031 +092004 +092004 +093001 +033006 +030002 +092004 +027001 +089023 +092004 +015004 +033015 +092004 +083003 +063001 +092004 +001011 +092007 +089015 +092004 +015004 +091003 +015023 +092004 +033006 +012001 +089015 +053011 +092004 +012001 +033006 +092004 +033006 +089015 +025020 +092004 +011001 +033006 +067001 +024001 +061 +083003 +092004 +093001 +089023 +092004 +011002 +033006 +090001 +092004 +037004 +092004 +012001 +053011 +092004 +012001 +091001 +015002 +092004 +093001 +092004 +001014 +059003 +089017 +092004 +001014 +033017 +083003 +092004 +007002 +092004 +089017 +033019 +092004 +033015 +092004 +037004 +089017 +023008 +059003 +023009 +089017 +059003 +023009 +089015 +024001 +092004 +011001 +025003 +4828 092004 +089007 +4831 022003 +089017 +025024 +064 +004001 +069002 +057001 +044 +067002 +033006 +092004 +036004 +092004 +091002 +092004 +043 +059002 +089023 +092004 +042004 +059001 +089008 +033012 +092004 +057001 +092004 +043 +089009 +015004 +042004 +084002 +092004 +043 +092004 +091001 +033029 +092004 +060002 +036004 +092004 +037005 +092004 +037003 +012001 +053004 +089009 +053011 +092004 +089017 +023008 +059003 +023009 +089017 +059003 +023009 +4887 092004 +060002 +053009 +092004 +033009 +013001 +092007 +060003 +093001 +092004 +033009 +093001 +089017 +093001 +092004 +010003 +092004 +089017 +093001 +092004 +092004 +093001 +089017 +093001 +092004 +010003 +092004 +093001 +089017 +093001 +093001 +089017 +093001 +092004 +057014 +093001 +092004 +092004 +093001 +089017 +093001 +093001 +092004 +011003 +089017 +093001 +092004 +093001 +092004 +089017 +037007 +092004 +092007 +092004 + +015004 +092004 +093001 +033032 +092004 +033006 +084002 +001016 +011002 +069002 +015004 +089017 +084002 +001014 +093002 +069002 +015008 +089023 +015004 +089023 +084002 +092004 +004001 +092004 +027002 +011003 +093001 +089017 +015001 +033019 +033006 +090006 +067002 +092004 +037004 +092004 +012001 +023009 +023008 +023007 +023007 +023009 +023008 +012001 +053011 +057008 +057009 +057008 +057008 +069002 +057007 +006011 +069003 +006011 +069003 +006011 +084002 +092004 +006017 +092003 +069002 +006016 +084002 +015002 +069003 +060002 +006017 +069003 +006017 +069003 +006023 +089007 +065002 +092004 +042004 +092004 +005001 +092004 +089017 +071001 +084002 +092006 +001014 +089024 +001014 +015008 +027004 +092004 +083003 +092004 +065002 +013001 + +085003 +067006 +071001 +015004 +089015 +015008 +084002 +092004 +007002 +033003 +092004 +089017 +089023 +089010 +013001 +092004 +007002 +065002 +013004 +092004 +022007 +092003 +090013 +092004 +089023 +089010 +069002 +013001 +065002 +092004 +022007 +092003 +084002 +092003 +015007 +089017 +071001 +092006 +069002 +034007 +092003 +069003 +031007 +092004 +033006 +092003 +015004 +084002 +092004 +007002 +089024 +092004 +001014 +092007 +016 +092004 +002005 +092004 +008002 +092003 +072001 +033006 +092003 +025015 +013001 +009001 +093002 +089017 +093002 +067002 + +056005 +064 +092004 +001014 +092007 +091003 +092001 +015004 +092003 +064 +004001 +083003 +083003 +004001 +089008 +013001 +032004 +064 +092004 +004004 +089017 +088003 +064 +092004 +004002 +089017 +027006 +5134 092004 +009001 +089007 +037007 +092003 +084002 +011003 +089017 +083003 +092004 +007002 +092004 +019001 +092003 +089017 +089017 +083006 +037004 +089017 +037004 +015023 +090010 +092001 +089009 +033020 +092004 +089017 +092004 +011002 +089023 +067002 +037007 +092003 +069002 +025021 +092004 +089024 +092004 +033006 +089007 +013004 +092003 +067002 +092007 +092004 +067001 +092004 +033006 +089007 +069002 +092003 +013001 +092004 +033006 +089023 +092004 +012001 +092004 +012001 +092003 +092004 +033006 +090001 +092003 +089017 +037007 +010003 +010003 +089009 +023007 +089017 +010002 +010002 +089017 +039007 +010002 +090008 +010002 +089017 +020004 +092004 +089017 +5217 088026 +090001 +059003 +090010 +092004 +033009 +092001 +089023 +092004 +025015 +067006 +067003 +092007 +021005 021006 +089023 +067002 +039009 +092003 +083003 +092004 +001014 +092007 +015004 +084002 +092004 +058006 +089007 +072001 +033006 +092003 +069002 +069002 +068003 +092004 +001014 +092004 +093001 +067006 +015006 +092004 +009001 +092004 +009001 +069002 +013001 +036004 +087003 +092004 +033017 +069003 +087005 +087003 +092004 +057001 +092004 +059005 +092004 +036004 +090006 +041001 +064 +092004 +033017 +092004 +089017 +092004 +087005 +064 +092004 +057001 +092004 +089010 +092004 +057001 +093001 +033009 +059002 +078002 +092004 +010001 +092004 +089008 +069002 +025022 +092004 +089007 +092004 +5305 028005 +092006 +069002 +028003 +089017 +028005 +092006 +069002 +028001 +092006 +033006 +092003 +028005 +092004 +014007 028005 +033006 +028004 +092004 +028004 +089017 +092006 +028005 +092004 +028005 +024002 +033015 +028004 +092004 +007003 028004 +089017 +069002 +025022 +089007 +092004 +020004 +092004 +008001 +089023 +069002 +074 +092004 +026 +020004 +089023 +025022 +089023 +092004 +074 +089017 +026 +089017 +008001 +020003 +083003 +001003 +069004 +060002 +004002 +006011 +057015 +091002 +060002 +063004 +092004 +069002 +015012 +084002 +092004 +001006 +089021 +092004 +012001 +092003 +089023 +5380 092003 +092004 +008002 +092004 +008002 +059003 +060001 +5388 089008 +069002 +025022 +059001 +004002 +065001 +092003 +089008 +059003 +092004 +033021 +090013 +092001 +083006 +092004 +009001 +033021 +089017 092001 +089004 +092004 +083006 +092004 +012001 +092001 +092004 +083003 +092004 +001002 +089023 +071001 +092004 +033022 +092001 +083006 +092004 +009001 +033022 +089017 092001 +092004 +083006 +092004 +012001 +092001 +092004 +083003 +092004 +001002 +069002 +031005 +090006 +015006 +013001 +022007 +083008 +092004 +009001 +069002 +015006 +013001 +022007 +089023 +039005 055002 +089007 +015006 +039007 +009002 +090008 +092004 +010002 +092004 +089017 +010002 +090008 +092004 +010002 +092004 +089017 +010004 +090008 +092004 +010004 +092004 +089017 +039001 +092004 +009001 +092004 +010001 +092004 +092004 +025003 +010002 +089024 +010002 +078002 +092001 +069002 +013001 +092001 +065002 +089017 +092004 +025003 +010002 +089024 +010002 +078002 +092001 +069002 +013001 +092001 +065002 +089017 +092006 +069002 +024006 +092004 +006006 +092004 +089015 +015020 +036004 +092001 +069002 +013001 +092001 +065002 +092004 +013001 +092004 +023007 +092004 +057007 +092004 +089017 +092004 +023007 +092004 +023007 +092004 +090010 +092001 +013001 +092004 +092004 +034007 +092003 +092001 +034007 +089017 +092004 +092001 +034007 +034007 +092004 +015004 +092001 +092004 +034007 +053009 +090006 +058004 +053009 +038002 +053009 +057009 +089017 +092004 +034007 +088002 +090006 +058004 +088002 +038002 +088002 +057009 +089017 +5566 092006 +023001 +092004 +092004 +087004 +092007 +006016 +079014 +5575 090006 +033009 +036004 +072001 +033006 +092003 +069002 +069002 +057007 +092004 +038002 +092004 +091001 +013004 +5590 068003 +092004 +093001 +033032 +092004 +060002 +036004 +092004 +015001 +084001 +092004 +033017 +089017 +033019 +083003 +092004 +001014 +092004 +5609 092004 +093001 +033015 +083003 +092004 +007002 +092004 +042002 +092004 +053009 +015024 +090001 +092004 +036004 +092004 +033006 +092004 +092003 +013001 +092004 +015006 +089024 +058006 +030003 +089015 +033014 +092004 +093001 +033006 +092004 +015004 +033015 +093001 +092006 +024002 +089017 +024001 +024001 +024001 +089017 +023009 +015029 +023009 +023008 +089017 +024002 +024002 +089017 +023007 +023007 +089017 +057006 +033015 +089017 +025011 +013001 +071001 +092006 +069002 +025016 +089007 +092001 +089015 +092007 +015004 +068001 +092004 +093001 +033006 +092004 +011001 +090006 +093001 +092004 +024001 +015004 +084002 +092004 +001013 +003003 +089007 +014002 +016 +089023 +092004 +024001 +015004 +009002 +013001 +079021 +049 +091003 +092004 +092004 +079021 +049 +083003 +092004 +007002 +092004 +037004 +089023 +092004 +015004 +053009 +024001 +069001 +033006 +092003 +089017 +078002 +053009 +092007 +013001 +090006 +092006 +033005 +091003 +092001 +015004 +092004 +033015 +092001 +067002 +067002 +092003 +092006 +077 +092004 +077 +092003 +083006 +092003 +072001 +033006 +092003 +069002 +013003 +083003 +023003 +009003 +087003 +093001 +092004 +053005 +089023 +092004 +087004 +083003 +092004 +037004 +092004 +012001 +087003 +092004 +013001 +089017 +067006 +092004 +067008 +093001 +092004 +053005 +067006 +067002 +092004 +037004 +092004 +012001 +020001 +089017 +020001 +039010 +092004 +089007 +059003 +092004 +033005 053009 +5788 092004 +033005 +067006 +093001 +033053 +089017 +089010 +030004 +031007 +092004 +013001 +093001 +092004 +067002 +015006 +092004 +024002 +008002 +031007 +089017 +092004 +064 +092004 +011001 +092007 +064 +013001 +009004 +017002 +083003 +092004 +057016 +092006 +033006 +092004 +034001 058006 +033006 +006012 +092003 +5828 069002 +015032 +033007 +5832 069002 +052 +089007 +015006 +093001 +069003 +023001 +069003 +023001 +089015 +033006 +012001 +5845 015006 +092004 +009001 +092004 +009001 +023001 +089017 +023001 +089015 +033006 +091003 +009002 +023001 +089017 +088037 +034001 +057014 +089017 +088038 +089017 +088002 +092004 +032004 +090002 +092004 +042002 +092004 +067002 +068001 +033046 +092004 +001014 +083003 +092006 +013004 +092004 +059001 +076 +092004 +089007 +069002 +041005 +022001 +092003 +093002 +022001 +092003 +093002 +089007 +089010 +083003 +093002 +089017 +093002 +013004 +092004 +076 +092004 +013004 +083003 +092003 +071003 +067002 +013001 +006017 +089017 +014008 +041005 +089023 +033006 +092003 +093002 +089017 +093002 +025015 +013001 +067002 + +056005 +064 +092003 +089017 +093002 +069002 +092003 +084002 +001002 +087003 +084002 +001003 +015011 +089007 +089010 +083003 +093002 +013004 +092004 +076 +092004 +013004 +083003 +092003 +071003 +013003 +067006 +092004 +067010 +089023 +033006 +092003 +090006 +009001 +093002 +025015 +013001 +067002 + +056005 +064 +092003 +067002 +092007 +092004 +067001 +033004 +092004 +093001 +033006 +033036 +092003 +012001 +012001 +092004 +001001 +5980 092004 +001001 +089007 +028005 +092007 +089021 +032004 +089017 +032004 +089017 +028003 +092004 +009004 +069001 +092004 +012001 +089007 +061 +025008 +013004 +090005 +092003 +063001 +092001 +057008 +090001 +092004 +012001 +092001 +089017 +092004 +028001 +092004 +012001 +089023 +6016 092004 +012001 +069003 +092004 +012001 +092004 +028001 +089023 +6025 092004 +012001 +089017 +071001 +092006 +028003 +030004 +092004 +012001 +084002 +084002 +092001 +059003 +092004 +023006 +089017 +015024 +092001 +023006 +092003 +015024 +092004 +006002 +092001 +084002 +092003 +089017 +027001 +090001 +092001 +089007 +013001 +088008 +089017 +088007 +092004 +026 +089015 +090013 +022005 023006 +092004 +026 +092003 +089007 +092004 +006002 +092001 +022006 +089017 +092004 +015024 +092001 +022006 086001 +013001 +067002 +092007 +092004 +067001 +015001 +092004 +093001 +092004 +067009 +084003 +092004 +043 +089015 +092004 +036004 +092004 +023001 +089015 +068001 +018001 +003004 +089015 +023001 +089015 +092004 +011002 +024001 +033006 +092004 +091003 +092004 +036004 +092003 +042002 +092006 +042002 +069002 +071004 +067002 +067009 +089015 +092004 +033006 +092004 +069004 +033005 +092004 +042002 +093001 +6129 023001 +089017 +092004 +089020 +092004 +092004 +015008 +084002 +092004 +007002 +092004 +012001 +089015 +092004 +053002 +092004 +053002 +023001 +092006 +023001 +069002 +071004 +013001 +092004 +069003 +092004 +089020 +092004 +089023 +6159 092004 +053009 +6162 089024 +069004 +033005 +083003 +092004 +033005 +090006 +092004 +067009 +092004 +053009 +083003 +092004 +007002 +092004 +067009 +053004 +089017 +088038 +013001 +089017 +033006 +092003 +090006 +092004 +007002 +087003 +085001 +083001 +089023 +089010 +032002 +092004 +013001 +088010 +025010 +089017 +069002 +053002 +071003 +069002 +056005 +092004 +088038 +089007 +013001 +037004 +092004 +067009 +092004 +009001 +092004 +009001 +091001 +015001 +084001 +015006 +084002 +092004 +007002 +092004 +089015 +091003 +009002 +008002 +090013 +023009 +089015 +033014 +092004 +033006 +090006 +071004 +092004 +067009 +023008 +089009 +033048 +092004 +089015 +092004 +033006 +092004 +092004 +013003 +063004 +092003 +009002 +092006 +057001 +004001 +092004 +089017 +089010 +015012 +092007 +092004 +067009 +084002 +001008 +069004 +018001 +092004 +089015 +017001 +091002 +059002 +065001 +009001 +004001 +089008 +071004 +092004 +067009 +088001 +090011 +067002 +033006 +092004 +009002 +016 +092003 +092004 +008002 +089015 +016 +089015 +013002 +023008 +064 +092004 +058006 +089015 +015004 +092004 +011002 +030004 +090011 +090008 +092004 +089009 +092004 +020003 +089023 +092004 +093001 +028001 +015004 +084001 +089015 +015017 +092004 +059002 +089015 +023008 +092004 +059003 +089015 +033032 +092004 +090006 +069002 +028003 +092004 +013001 +089009 +013004 +092004 +033006 +090001 +093001 +092004 +053009 +033006 +091003 +092004 +087005 +092001 +092006 +030006 +092004 +025003 058007 +092001 +092006 +025008 +092004 +026 +092001 +085002 +092004 +012001 +092001 +084002 +092004 +089017 +056005 +092004 +011002 +033015 +069002 +033051 +069003 +033006 +069003 +024002 +092004 +083008 +092004 +001016 +092004 +033006 +092004 +003005 +019005 +069002 +019004 +089017 +006017 +014008 +069002 +014008 +067006 +071001 +013002 +013002 +039012 +092004 +056005 +089017 +092004 +033009 +092004 +011002 +025004 +067002 +015023 +092004 +012001 +024001 +089017 +033006 +089015 +023008 +092004 +089008 +092004 +033006 +033006 +089017 +024001 +089015 +025020 +059003 +092004 +011001 +089017 +033006 +069005 +092007 +013001 +092004 +010002 +093001 +089023 +092004 +011002 +033015 +033006 +092007 +069002 +053011 +092004 +012001 +089023 +6437 090001 +092004 +093001 +037004 +092004 +012001 +089023 +032001 +092004 +030001 +092004 +033006 +092004 +059003 +001012 +063006 +090008 +092004 +020003 +089017 +059003 +011003 +089024 +010001 +063006 +090008 +092004 +069002 +013003 +089017 +089010 +092004 +012001 093001 +092004 +012001 093001 +053011 +090008 +092004 +063006 +091002 +092004 +013003 +092004 +037004 +092004 +089017 +089010 +092001 +090001 +093001 +053011 +092004 +012001 +092004 +009001 036004 +092003 +090001 +092004 +053011 +6498 092004 +056005 +092003 +013004 +089023 +089010 +6505 012001 +012001 +092001 +053011 +092004 +012001 +089008 +013004 +090013 +092003 +092004 +037004 +092004 +012001 +089024 +092004 +074 +092004 +015008 +084002 +092004 +007002 +092004 +079013 +089015 +092004 +006001 +092004 +057021 +6536 067002 +037008 +092004 +079013 +089015 +067002 +092004 +007002 +092004 +057021 +092004 +069002 +013001 +090009 +092001 +090008 +092001 +013001 +089017 +092004 +069002 +015013 +089020 +092001 +015014 +6563 033006 +092003 +059003 +088038 +089017 +033042 +040002 +092004 +009001 +089023 +092004 +092004 +012001 +033042 +069002 +040002 +089017 +071001 +092006 +033006 +033006 +090008 +092004 +009001 +092004 +009001 +040002 +092004 +089023 +071001 +092006 +033006 +090008 +092004 +012001 +092004 +088003 +069002 +040002 +092004 +069003 +067007 +092007 +092004 +067008 +069003 +067007 +092004 +067006 +089024 +013001 +092004 +003002 +065003 +089017 +092004 +003004 +092004 +065003 +089024 +013001 +092004 +003002 +065003 +089017 +092004 +003004 +092004 +065003 +089007 +090003 +092004 +003004 +092004 +003002 +028001 +023003 058004 +004004 088015 +092004 +074 +088001 +033006 +088015 +013001 +089007 +090003 +092004 +059006 +092004 +026 +092004 +033006 +033006 +092004 +088001 +009001 +090003 +092004 +088001 +065001 +015004 +088001 +089017 +092004 +088015 +009001 +090003 +092004 +088015 +065001 +015004 +088015 +089023 +033006 +092003 +090006 +059003 +033002 +030002 072002 +092006 +033006 +092004 +009001 +090011 +089004 +092004 +057020 +067002 + +056005 +089007 +089012 +092004 +033006 +092003 +056005 +089017 +089012 +092004 +033006 +092003 +056005 +067002 +033004 +092004 +092004 +092004 +053009 +089017 +011002 +033006 +033017 +025001 +090003 +092003 +033056 +024001 +089023 +092004 +033004 +033006 +092004 +011001 +088015 +089017 +031009 +033056 +025001 +6732 033056 +069002 +6735 092004 +089023 +6738 092004 +033056 +093001 +092004 +053009 +089007 +064 +085001 +093001 +083003 +092004 +008002 +092004 +004005 +060002 +067009 +089017 +060002 +067009 +061 +013001 +092004 +009001 +092004 +009001 +083003 +092004 +083003 +092004 +001006 +060002 +067009 +089017 +060002 +067009 +009001 +093002 +017001 +067002 +092004 +030007 +089020 +092004 +011001 +092007 +089015 +056005 +092004 +089007 +041005 +6789 092004 +033019 +093001 +089017 +091003 +078002 +093001 +083001 +037004 +082001 +013002 +067002 +092004 +030007 +089020 +092004 +011001 +092007 +089015 +056005 +092004 +089007 +015006 +089003 +092004 +080002 +092004 +001006 +024002 +092004 +032004 +093001 +089017 +091003 +078002 +093001 +083001 +6828 092004 +053004 +012001 +015004 +084001 +092004 +009001 +015002 +084003 +002004 +080001 +027004 +023006 +6842 069002 +027002 +067002 +033006 +084002 +092004 +007002 +092001 +015007 +084001 +015004 +089015 +015006 +027001 +059004 +6858 046 +089017 +079004 +067002 +015004 +089015 +015023 +089020 +092004 +060002 +058006 +012001 +088015 +092004 +089015 +015008 +085005 +083001 +6877 013002 +092004 +061 +092004 +009001 +092007 +065003 +092004 +060003 +061 +013001 +089017 +092004 +011001 +092007 +092004 +088015 +067006 +092004 +033006 +092004 +011001 +091003 +092004 +010002 +089017 +092004 +010003 +092004 +017001 +083004 +068005 +092004 +033006 +089015 +033006 +092004 +092004 +091003 +092004 +010002 +092003 +089017 +092004 +010003 +092003 +083004 +017001 +068005 +092003 +033006 +089015 +092004 +033004 +033006 +092004 +033006 +092004 +092004 +013001 +092004 +010002 +092001 +089017 +092004 +013001 +092004 +010003 +092001 +089015 +016 +092004 +008002 +092004 +084002 +092004 +036004 +092004 +033006 +091003 +092004 +010002 +092001 +089017 +092004 +010003 +092001 +089007 +071001 +092004 +042002 +092004 +025001 +092004 +012001 +092001 +092004 +083003 +001002 +092004 +092001 +010003 +089017 +010003 +089017 +010002 +013001 +067002 +092004 +067009 +092007 +092004 +093001 +015004 +092004 +007002 +017002 +083005 +092004 +001010 +089015 +015013 +084002 +092004 +011001 +078001 +089008 +092004 +084002 +006008 +015008 +017002 +089017 +059003 +092004 +011001 +083008 +092004 +001009 +017001 +089015 +033006 +092004 +059001 +089012 +033003 +033006 +091003 +015004 +092004 +043 +092004 +043 +089015 +067007 +092004 +043 +092004 +089017 +7037 015012 +083005 +092004 +001016 +089015 +015006 +092004 +004002 +023001 +092004 +089017 +058006 +015012 +084002 +092004 +002005 +083002 +069002 +057001 +002005 +059002 +089015 +067002 +023011 +089007 +092004 +069002 +057001 +081002 +002005 +089023 +001004 +015010 +014008 +089015 +089007 +092004 +069002 +057001 +003005 +079015 +089017 +058006 +015012 +084002 +092004 +003003 +089015 +023011 +092004 +003003 +089015 +7090 092004 +089017 +058006 +015012 +084002 +092004 +002005 +092004 +065003 +7100 023012 +003004 023012 +089017 +7104 060002 +089017 +7107 060002 +089017 +7110 060002 +092004 +024002 +008002 +031007 +089015 +015005 +092004 +036004 +033006 +092004 +7123 089012 +033003 +033006 +092004 +089015 +092004 +033014 +033006 +089007 +092003 +013004 +032002 +092004 +028005 +092004 +037004 +092004 +012001 +089023 +092007 +069002 +7145 089007 +092004 +057001 +057008 +092004 +089015 +059006 +089023 +092004 +069002 +057001 +7157 092006 +057001 +090014 +089021 +092004 +7164 089012 +033003 +092004 +033006 +089007 +024001 +069002 +032002 +089017 +024002 +069002 +032001 +069003 +032001 +089017 +013004 +092004 +092004 +033053 +093001 +092004 +033006 +024002 +024002 +7189 069002 +069002 +032001 +089017 +024001 +024001 +7196 069002 +069002 +024001 +089007 +032005 +092004 +026 +092004 +011003 +092007 +089017 +092004 +032005 +032005 +032005 +089017 +092004 +027005 +092004 +027005 +7218 024001 +092004 +008002 +089017 +092004 +008002 +024002 +089017 +092004 +026 +032001 +089015 +041005 +089015 +013002 +092004 +089023 +025011 +092003 +092004 +008002 +089007 +024001 +089017 +092004 +008002 +092003 +089007 +031007 +089007 +072001 +033006 +092003 +090006 +059001 +053009 +089017 +088002 +025002 +024001 +092006 +024001 +091002 +069002 +024001 +089017 +024002 +092006 +024002 +091002 +069002 +024002 +089008 +092003 +024002 +092004 +033003 +092004 +043 +059003 +024002 +092004 +033019 +092004 +037004 +089015 +069002 +032001 +015006 +092004 +088015 +089015 +018001 +092004 +043 +084002 +092004 +026 +092004 +092007 +7299 092004 +083005 +092004 +001016 +043 +089017 +092004 +084002 +092004 +002005 +043 +092007 +013001 +092004 +092004 +033019 +024002 +089015 +067002 +089013 +025011 +031007 +092004 +089023 +069002 +057001 +003005 +083003 +092004 +089023 +067005 +013001 +089015 +013004 +022001 +089024 +039009 +090010 +092004 +033019 +067002 +031008 +089017 +092004 +083003 +092004 +003003 +043 +092007 +013001 +092004 +092004 +033019 +024002 +089017 +092004 +025021 +092004 +067008 +089017 +092004 +031002 +092004 +057003 +023007 +092004 +033019 +089015 +023012 +013001 +089017 +092004 +084002 +092004 +065003 +002005 +043 +092007 +013001 +092004 +092004 +033019 +024002 +089015 +032001 +091002 +092006 +023012 +7388 089017 +013001 +7391 060002 +089017 +7394 060002 +089017 +7397 060002 +058006 +033003 +033003 +092004 +033006 +064 +092004 +037004 +092004 +012001 +009002 +043 +065003 +003004 +084002 +092004 +001015 +092004 +089023 +067007 +092004 +023005 +092004 +009001 +015006 +092004 +092004 +039001 +089015 +043 +003003 +083003 +083003 +092004 +003003 +089015 +015004 +089015 +7437 023011 +092004 +003003 +089015 +003004 023012 +023012 +067002 +024001 +089017 +092004 +003003 +7449 015005 +092004 +087005 +092004 +057001 +033006 +092004 +087003 +069004 +065003 +003004 +043 +084002 +092004 +092003 +001015 +091002 +084001 +090012 +003003 +089015 +092004 +033006 +092004 +039001 +009002 +092007 +042002 +089015 +092004 +087005 +092004 +033006 +089008 +025001 +015004 +018001 +092004 +089023 +092004 +033006 +069002 +7493 018001 +092004 +003003 +043 +089020 +092004 +092004 +003003 +013004 +023011 +059003 +067006 +092004 +043 +089015 +067002 +067001 +092004 +043 +033006 +092004 +043 +018001 +067002 +092004 +003003 +089015 +018002 +092004 +013002 +018002 +089009 +092004 +014008 +092004 +089023 +092004 +003004 +015013 +084002 +092004 +007002 +092001 +058006 +033003 +033003 +092004 +033006 +064 +013001 +092004 +037004 +092004 +012001 +003004 +003003 +092006 +018001 +009002 +043 +084002 +092004 +001015 +092004 +089023 +092006 +079028 +013001 +059003 +092004 +003004 +089023 +067002 +023011 +079028 +092004 +003003 +013001 +089017 +013002 +003002 +089008 +015006 +092004 +004002 +092004 +004002 +089015 +006016 +083008 +092004 +003005 +092004 +058006 +033003 +033006 +092004 +064 +013001 +092004 +037004 +092004 +012001 +005001 +092006 +018001 +009003 +085002 +084002 +005001 +081005 +060002 +067006 +7607 005001 +059003 +092007 +059003 +033006 +092004 +093001 +089012 +033003 +092004 +011001 +089017 +089021 +033003 +092004 +033006 +092004 +089009 +013004 +092004 +033006 +090001 +092004 +053009 +033006 +033004 +089012 +033003 +092004 +033006 +092001 +033015 +028005 +067006 +042003 +067002 +015004 +092004 +011001 +015006 +084002 +092004 +007002 +089015 +015005 +092004 +092004 +036004 +092004 +033006 +033010 +092002 +092004 +033003 +092004 +003003 +092004 +001015 +089015 +092004 +033014 +033006 +092004 +043 +092004 +065003 +003004 +013001 +092004 +009001 +092004 +009001 +089017 +092004 +001015 +058010 +092004 +001006 +089017 +092004 +065003 +003004 +092007 +013001 +092004 +011002 +092004 +037004 +089017 +092004 +003003 +058010 +092004 +009001 +092004 +012001 +089017 +092004 +039001 +092004 +043 +092004 +013001 +092004 +012001 +089017 +092004 +043 +067003 +067008 +058010 +089017 +092004 +043 +012001 +058010 +089008 +064 +018001 +092004 +003003 +089015 +002003 +7731 061 +013001 +067002 +092004 +067003 +092004 +067008 +015004 +092004 +009001 +092004 +009001 +092004 +012001 +092004 +089015 +018001 +084001 +092004 +037004 +092004 +059003 +092004 +088038 +089017 +092004 +090011 +092004 +088018 +089015 +015026 +092004 +084002 +092004 +007007 +092004 +002003 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +067002 +092004 +088002 +014006 +083003 +092004 +037004 +092004 +012001 +092004 +064 +092004 +001004 +092004 +024002 +008002 +031007 +064 +013001 +092004 +037004 +092004 +012001 +065001 +021003 024001 +083003 +092004 +001015 +092006 +027002 +009002 +024001 +089015 +089007 +092004 +025011 +092004 +015001 +089015 +057015 +059002 +057001 +089015 +057015 +092004 +001015 +092007 +089017 +064 +013001 +092004 +037004 +092004 +012001 +057016 +027004 +065003 +002006 +089015 +027002 +092004 +065001 +002006 +015004 +057015 +059003 +059002 +057001 +089015 +057015 +092004 +089017 +064 +013001 +092004 +037004 +092004 +012001 +006003 +015026 +084002 +092004 +001010 +089015 +084001 +059003 +058004 +015013 +092006 +7867 059004 +015025 +084002 +092004 +001009 +089015 +017002 +018001 +092004 +065003 +084002 +006016 +089023 +092004 +065003 +084002 +015026 +061 +013001 +067002 +092004 +067003 +092004 +067008 +015004 +092004 +012001 +089015 +063007 +092004 +088015 +084001 +083003 +092004 +088002 +089015 +015026 +092004 +084002 +092004 +007007 +092004 +002003 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +032001 +092007 +059003 +033006 +092004 +069001 +089015 +092004 +033006 +092004 +7931 059003 +027001 +036004 +092004 +037004 +092004 +012001 +064 +013001 +009002 +057001 +092004 +015023 +090003 +092004 +007003 +092004 +067005 +089017 +067005 +089015 +013004 +7954 068003 +092004 +093001 +092004 +033003 +092007 +015004 +084001 +091001 +015006 +084002 +092004 +001011 +092004 +033017 +092004 +083003 +092004 +007002 +092004 +089008 +025020 +092004 +089017 +033006 +084001 +092007 +092004 +032004 +092007 +089017 +092004 +076 +069004 +092007 +013001 +092004 +092004 +045 +010002 +069004 +092004 +010002 +092004 +033009 +093001 +089017 +092004 +010003 +092004 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +092004 +010003 +092004 +069004 +059003 +083003 089020 +092002 +085001 +089008 +084001 +092007 +092007 +059003 +089015 +025016 +089007 +092004 +089023 +092004 +093001 +033006 +092004 +069002 +013001 +053009 +087004 +089023 +8040 083003 +092004 +001011 +089017 +090001 +092004 +010001 +092004 +089017 +069002 +090011 +083001 +076 +059001 +089007 +092004 +031010 +092004 +067007 +092007 +092004 +067005 +033015 +093001 +092004 +037004 +092004 +033015 +093001 +089015 +033006 +092004 +087005 +092004 +092007 +013001 +093001 +092004 +053005 +092004 +023007 +084001 +092004 +023007 +089017 +8087 092004 +076 +042001 +090001 +092004 +089007 +092004 +093001 +037006 +092004 +093001 +037008 +089015 +084002 +007002 +085002 +090010 +093001 +092004 +010004 +093001 +092004 +010003 +092004 +089007 +033006 +092004 +093001 +092004 +069002 +071004 +092003 +8120 092004 +089017 +025001 +092004 +020004 +025022 +092004 +087004 +089007 +064 +053009 +092004 +031001 +8134 051 +092004 +093001 +013004 +015032 +092004 +010002 +092004 +093001 +083003 +092004 +083003 +089015 +025008 +092004 +093001 +089007 +089012 +033054 +033016 +092004 +057008 +071001 +092006 +033012 +089015 +092004 +033028 +090001 +092004 +010002 +092004 +033006 +057008 +092001 +083001 +083008 +006016 +092004 +008002 +093001 +092004 +053005 +089015 +025023 +092004 +037004 +089007 +092004 +033054 +089017 +092004 +034001 +033032 +057008 +089015 +015004 +020004 +093001 +083003 +092004 +007002 +089015 +015023 +092004 +008002 +092004 +083008 +006016 +089015 +057008 +092004 +009003 +089015 +015024 +092004 +010002 +092004 +089015 +015005 +092004 +036004 +092004 +015024 +092004 +008001 +089015 +052 +092004 +089015 +015006 +033015 +092004 +093001 +8229 033015 +092004 +093001 +015004 +084001 +083003 +006008 +084002 +001013 +080001 +028004 +028004 +089015 +033015 +092004 +011001 +015017 +092004 +008002 +084001 +092004 +001014 +089015 +015004 +024001 +059002 +011001 +089015 +025003 +090009 +092004 +089015 +023008 +092004 +023009 +092004 +8266 067009 +013004 +015005 +092004 +092004 +036004 +033006 +001013 +013001 +092004 +080001 +089017 +092004 +067009 +067002 +067005 +8283 015004 +092004 +011001 +089009 +015004 +084002 +092004 +001014 +057015 +092004 +005001 +089023 +092004 +093001 +033006 +092004 +069002 +071004 +8302 015004 +057008 +092004 +092003 +023001 +089023 +092004 +033006 +092004 +069002 +057001 +083001 +089023 +8316 060002 +005001 +089017 +060002 +004005 +089015 +092004 +033006 +015024 +092001 +083001 +092004 +089015 +033032 +092004 +011001 +017006 +084002 +092004 +003003 +018001 +092004 +060002 +005001 +089017 +092004 +060002 +004005 +024001 +084002 +092004 +001002 +033037 +089015 +019004 +057008 +092004 +036004 +092004 +005001 +089015 +092004 +036004 +092004 +011001 +089015 +023001 +059003 +089015 +023001 +089015 +015024 +092004 +057002 +092004 +019004 +060002 +006016 +059004 +089017 +092004 +023001 +013001 +009002 +078003 +060002 +089021 +009003 +089017 +009004 +091001 +067002 +037002 +092004 +036004 +015008 +084002 +092004 +006008 +089015 +015015 +092004 +084002 +092004 +083007 +067007 +8403 015004 +092004 +011001 +089015 +015004 +092004 +011001 +015010 +084002 +092004 +001007 +028004 +028004 +033013 +089015 +067009 +013004 +058007 +085001 +083001 +089017 +092004 +006008 +067002 +081006 +059001 +084001 +092004 +001009 +085001 +038001 +090001 +092004 +014005 +089007 +013001 +082002 +092004 +014002 +089015 +060003 +067009 +092004 +067009 +015006 +084002 +092004 +015029 +083008 +092004 +001010 +089015 +092004 +036004 +024001 +092004 +083008 +092004 +001010 +015029 +025021 +033006 +090006 +012001 +013001 +089015 +089007 +092004 +025022 +033006 +089023 +067002 +033006 +092004 +093001 +092004 +033006 +025014 +092001 +013001 +069002 +025022 +089015 +033004 +092004 +092004 +093001 +033006 +012001 087003 +089010 +092003 +013001 +033032 +092001 +015006 +084002 +092003 +083008 +092004 +002004 +089015 +092004 +033006 +015006 +089015 +015011 +084001 +092004 +006008 +093001 +015029 +083008 +092004 +002004 +089015 +015006 +084002 +092004 +093001 +089015 +024001 +092004 +014002 +025022 +089015 +068001 +015011 +033006 +033006 +012001 087003 +021005 +092001 +089015 +067002 +092004 +093001 +016 +092004 +008002 +018001 +092004 +089015 +033006 +092004 +031009 +8550 031006 +089015 +015009 +092004 +084002 +092004 +006008 +068004 +092004 +014002 +089015 +092004 +083003 +092004 +006008 +053007 +092004 +033006 +070 +012001 +012001 +013001 +091001 +015003 +015006 +084002 +092004 +001009 +084002 +093002 +089015 +027007 +092004 +092004 +009001 +092004 +080001 +092007 +015004 +084002 +063001 +092004 +001011 +092007 +089015 +015023 +092004 +059003 +092004 +023009 +023009 +089017 +033012 +092004 +090006 +8606 024005 +092004 +006017 +092004 +006017 +092004 +089015 +059001 +024005 +023008 +067002 +015005 +092004 +093001 +084001 +093002 +011002 +089017 +053009 +033006 +8628 092004 +036004 +092003 +036003 +092004 +033017 +092004 +053009 +089007 +069002 +047002 +092004 +008002 +067002 +005001 +023001 +089015 +092004 +033014 +033006 +092004 +8651 089017 +092003 +036003 +092004 +033032 +092004 +012001 +089007 +092004 +033017 +092003 +089007 +092004 +012001 +033006 +087002 +092004 +010002 +089017 +092004 +010002 +089017 +092004 +033042 +010002 +089024 +010002 +023007 +023007 +089023 +092003 +033006 +071001 +092006 +033006 +092004 +010002 +089024 +092004 +010002 +057008 +071001 +092006 +089007 +092001 +035001 +069002 +069002 +087002 +092004 +010002 +092004 +8707 089017 +076 +092004 +033006 +092004 +012001 +089007 +092004 +033017 +092003 +088029 +072002 +033053 +090006 +092003 +093001 +033006 +092004 +011002 +092007 +092004 +033006 +092001 +087002 +089023 +092004 +026 +092004 +083005 +085001 +089021 +092001 +089017 +089008 +053007 +092001 +033017 +033017 +033032 +009001 +089015 +033029 +092004 +011001 +033006 +092004 +024002 +089017 +032001 +069002 +092004 +015008 +084002 +092004 +008002 +053004 +092004 +009001 +089023 +092004 +015004 +090003 +092004 +008002 +092007 +053004 +092004 +009001 +067002 +015005 +092004 +036004 +033006 +092004 +028001 +090006 +092004 +011002 +033015 +092004 +033006 +025016 +089015 +092004 +033014 +033006 +059003 +003001 +092006 +069002 +043 +092004 +012001 +092001 +092004 +001002 +043 +013004 +092004 +013001 +032005 +036001 +032005 +8811 089010 +024001 +024001 +015023 +059003 +084002 +001008 +015012 +089015 +033004 +092004 +093001 +033006 +092004 +033010 +092002 +092004 +033003 +089015 +092004 +033006 +067006 +089017 +092003 +032005 +013001 +069004 +032001 +090006 +059003 +092004 +015008 +084002 +092004 +008002 +084002 +092004 +008002 +015001 +089015 +084002 +007007 +015004 +089023 +092004 +015004 +090003 +092004 +008002 +090003 +092004 +026 +015004 +089017 092007 +053004 +092004 +009001 +089007 +090003 +092004 +026 +015004 +030001 +088015 +020004 +088036 +088036 +057021 +033020 +033042 +092007 +013001 +092004 +053004 +092004 +009001 +089023 +092004 +047002 +008002 +023001 +069002 +053004 +092004 +009001 +091001 +015004 +084001 +092004 +093001 +015004 +084002 +092004 +001011 +093002 +089017 +093002 +089015 +091003 +009003 +093002 +084001 +092004 +001011 +092007 +015004 +033006 +033006 +088010 +092001 +012001 087003 +010002 +093001 +092004 +010002 +092001 +078001 +012001 +089023 +092004 +069002 +033004 +092004 +033006 +089015 +015005 +092004 +036004 +092004 +033012 +092004 +033006 +015004 +092004 +089007 +033006 +084001 +092002 +089023 +092004 +033004 +033006 +069002 +015004 +089023 +8957 084002 +092004 +004001 +092004 +027002 +011003 +093001 +089023 +092004 +015006 +017005 +092004 +033006 +012001 087003 +035001 +092001 +089023 +092004 +033004 +033006 +069002 +013001 +088001 +018001 +092004 +005001 +092004 +010002 +089015 +015026 +092004 +004001 +089023 +092004 +033006 +069001 +012001 087003 +8996 092004 +004001 +023001 +063004 +092004 +005001 +092004 +015012 +084001 +092004 +006015 +092004 +057001 +092004 +067002 +033004 +092004 +093001 +033006 +092004 +091004 +009003 +078001 +092003 +092004 +031009 +013004 +092003 +064 +025001 +089015 +023008 +092004 +010002 +092004 +067006 +092004 +067001 +092007 +091001 +015001 +084001 +092004 +093001 +015006 +083005 +092004 +001010 +092004 +093002 +089015 +015010 +084002 +092004 +001007 +017002 +083001 +089015 +015005 +092004 +011001 +078001 +057001 +089020 +092004 +023009 +023009 +024001 +033006 +089017 +058006 +059001 +089015 +085002 +092004 +083005 +092004 +008002 +092004 +089015 +023008 +092004 +089008 +092004 +011001 +025020 +024001 +033006 +033006 +023009 +023008 +089017 +023009 +015029 +089017 +024001 +024001 +089015 +033037 +092004 +012001 +093001 +9099 092004 +093001 +033029 +092004 +036004 +092004 +033006 +025003 +090013 +092004 +011001 +089007 +067002 +067009 +060002 +085003 +092001 +089017 +069002 +057001 +092004 +023001 +089017 +015004 +092004 +023001 +069002 +030004 +9129 023006 +083008 +092004 +015002 +089015 +033006 +092004 +092004 +036004 +084001 +092002 +083003 +001013 +005001 +059001 +089008 +023001 +011001 +059002 +089015 +033006 +092004 +092004 +093001 +059001 +005001 +057001 +089015 +092004 +033006 +060002 +089017 +059001 +004005 +089015 +033032 +092004 +011001 +017006 +083008 +092004 +001006 +018001 +092004 +060002 +005001 +089017 +092004 +004005 +089015 +033036 +019004 +089015 +057008 +092004 +036004 +089015 +092004 +036004 +092004 +011001 +089015 +023001 +059003 +089015 +023001 +089015 +092004 +057002 +092004 +019004 +060002 +006016 +059004 +015024 +089017 +092004 +023001 +013001 +060002 +009002 +089021 +009003 +089017 +009004 +089015 +015004 +092004 +011001 +015008 +084002 +092004 +006008 +089015 +015006 +084002 +092004 +001011 +093002 +091001 +015005 +092004 +011002 +089017 +011002 +027003 027004 +033012 +092004 +033056 +084001 +092004 +012001 +072001 +092004 +089023 +092004 +033004 +033006 +092004 +067009 +013004 +033006 +014001 +089007 +079007 +092004 +001002 +089017 +067009 +067010 +014001 +089007 +079007 +014007 +092004 +001002 +089023 +092004 +024001 +092004 +001002 +030007 +028001 +089023 +092004 +033056 +092004 +067008 +069002 +074 +011001 +088015 +089017 +031009 +033056 +025001 +9286 033056 +069002 +9289 092004 +089023 +9292 092004 +033056 +093001 +089015 +085004 +092004 +015004 +089015 +092004 +036004 +015006 +084002 +092004 +083007 +029004 +005001 +018001 +089015 +092004 +093001 +033006 +092004 +030002 +089017 +027006 +9318 092004 +088029 +092004 +011002 +089017 +011002 +9325 092004 +033011 +083003 +092004 +033006 +090006 +005001 +069002 +018001 +089023 +027001 +092004 +093001 +033006 +092004 +033011 +083003 +092004 +031009 +089007 +005001 +069002 +057001 +067006 +032001 +069003 +029002 +092004 +060002 +005001 +092004 +060002 +089017 +059001 +006016 +057007 +069003 +092004 +060002 +005001 +092004 +060002 +089017 +059001 +006016 +057007 +092004 +069004 +032001 +090006 +069002 +089004 +005001 +033006 +092003 +089023 +027006 +9383 092004 +088029 +092004 +011002 +089017 +011002 +067002 +032001 +090006 +069002 +033006 +027006 +9396 092004 +005001 +092004 +005001 +089023 +9402 092004 +033017 +092004 +011002 +089017 +011002 +9409 092004 +093001 +015006 +084002 +092004 +001011 +093002 +092004 +093002 +033014 +092004 +036004 +092004 +033006 +033006 +092004 +009001 +092004 +013001 +092004 +009001 +092004 +009001 +089015 +092004 +033006 +089017 +092004 +093001 +092004 +053005 +089017 +058006 +093001 +089017 +058006 +093001 +089024 +092004 +092004 +053009 +033006 +092004 +089023 +092003 +092004 +092001 +013001 +033006 +089015 +033014 +093001 +093001 +033006 +092003 +013001 +092004 +053009 +092004 +012001 +092004 +012001 +092004 +023007 +089015 +033004 +092004 +093001 +033006 +092004 +025011 +013001 +093001 +093001 +089007 +009001 +9486 009001 +069002 +028003 +092003 +089023 +092004 +012001 +092001 +092004 +083003 +092004 +012001 +089017 +089017 092001 +092003 +033006 +090006 +092003 +013001 +093001 +089017 +083008 +092007 +092004 +002005 +045 +092001 +092004 +011002 +089015 +012002 +012002 +069002 +039012 +092004 +9522 092003 +092004 +006023 +092004 +037004 +092004 +012001 +089015 +071001 +092006 +037003 +083008 +092004 +001006 +9537 037003 +083003 +092004 +012001 +089017 +071001 +092006 +037003 +083008 +092004 +001006 +9549 018002 +083003 +092004 +012001 +067002 +9555 092004 +036004 +090006 +092004 +033006 +090006 +092004 +013001 +092004 +053009 +067006 +067002 +067003 +093001 +9570 033010 +092004 +036004 +092004 +090006 +071005 +092004 +084002 +093002 +015004 +089015 +059001 +024006 +090001 +092004 +053009 +089017 +053009 +089017 +053009 +089015 +020004 +089015 +092004 +060003 +067009 +023007 +089015 +015023 +092004 +092004 +093001 +068001 +033046 +092004 +033006 +088010 +9608 012001 087003 +069002 +069002 +013004 +092003 +092007 +089023 +092004 +016 +033006 +092004 +093001 +015004 +083006 +092001 +012001 093001 +025016 +092001 +013001 +089007 +069002 +030001 +092004 +092004 +012001 +089023 +092004 +092004 +009001 +067002 +092004 +093001 +033006 +092004 +036004 +092004 +089010 +092004 +025001 +036004 +092001 +015006 +030002 +092004 +089015 +024006 +092004 +006006 +092004 +089015 +036004 +092001 +089007 +071001 +092006 +025001 +092004 +023007 +092004 +021005 +057007 +092004 +089023 +071001 +092006 +023007 +092004 +023007 +092004 +090010 +092001 +013001 +092004 +089007 +092004 +068003 +009001 +089010 +092004 +001006 +063001 +057016 +089023 +092004 +023007 +092004 +057007 +089024 +092004 +057012 +009001 +057010 +092004 +023007 +092004 +089007 +067002 +092004 +009001 +092004 +009001 +015006 +013001 +092004 +014006 +092004 +012001 +092004 +089020 +092004 +012001 +092004 +089015 +067002 +038002 +059003 +089005 +092004 +042002 +092004 +072001 +033006 +092003 +090006 +9733 092004 +092004 +083001 +085001 +092004 +069002 +069002 +090013 +023007 +067006 +071001 +024001 +092004 +009001 +092004 +009001 +015006 +089013 +092004 +037004 +092004 +091001 +067002 +067009 +060002 +015023 +092004 +093001 +092004 +093001 +089017 +093001 +089017 +093001 +092004 +010003 +092004 +089015 +015023 +092004 +084002 +001007 +081002 +028004 +028004 +089015 +058002 +083006 +092004 +089017 +014006 +092004 +008002 +092004 +064 +092004 +001004 +089017 +092004 +006017 +092004 +013002 +014006 +064 +092004 +014006 +089015 +091003 +024001 +092004 +093001 +089017 +093001 +033011 +090013 +092004 +089015 +033004 +092004 +093001 +033006 +092004 +093001 +012001 +065003 066 +013001 +092002 +083001 +085001 +089010 +025001 +042003 +083001 +060002 +007002 +092003 +9830 089017 +093001 +9833 089017 +093001 +9836 067006 +092004 +033006 +091003 +001005 +014006 +014007 +092004 +089015 +091003 +033006 +084001 +092004 +001005 +033006 +092007 +013001 +092004 +012001 +092001 +092004 +058007 +089004 +092006 +025008 +031007 036003 +092004 +089015 +024002 +092004 +036004 +017005 +9869 008002 +092004 +089017 +025022 +078001 +089015 +015005 +092004 +093001 +089015 +024005 +092004 +033006 +017001 +089017 +069002 +025022 +089015 +024001 +092004 +008002 +092004 +092004 +024001 +089023 +9895 092008 +093001 +058007 +089015 +015011 +092004 +084001 +092004 +001007 +033032 +092004 +092004 +093001 +033006 +092004 +033006 +092004 +033056 +067006 +9915 092004 +009001 +092004 +009001 +089021 +023007 +023007 +089015 +033014 +092004 +092004 +036004 +033006 +089008 +092004 +092004 +053009 +033006 +090006 +071005 +093001 +015006 +060003 +089015 +092004 +033014 +033006 +091002 +093001 +015006 +089015 +013002 +059003 +089023 +033006 +092003 +090006 +093001 +067002 +015006 +089017 +069002 +031004 +092004 +089023 +041001 +090013 +092004 +059002 +025001 +061 +089017 +092004 +009001 +092004 +009001 +071005 +024006 +090001 +092004 +067002 +032001 +092004 +036004 +090006 +089004 +093001 +092004 +053005 +033006 +092004 +091001 +015006 +084002 +092004 +011001 +015005 +092004 +009002 +017003 +092004 +089017 +033006 +087003 +088010 +092001 +092004 +010002 +089007 +023009 +089017 +020002 +10008 089007 +067001 +015012 +084002 +092004 +002003 +089017 +067001 +084002 +092004 +002004 +089017 +015023 +092004 +092004 +036004 +092003 +10026 069002 +074 +092004 +023008 +089015 +033004 +092004 +093001 +033006 +091004 +011001 +031009 +089017 +088035 +067006 +067002 +089020 +092003 +085001 +067006 +067002 +025015 +092003 +015023 +092001 +092004 +083001 +089015 +033046 +092004 +092004 +093001 +089015 +015004 +084001 +092004 +092004 +012001 +089015 +023008 +092004 +010002 +067006 +092004 +067009 +092007 +067002 +092004 +036004 +015005 +092004 +093001 +028004 +028004 +033006 +10083 092002 +069002 +074 +053011 +092004 +089015 +092004 +033006 +092004 +089007 +092004 +031009 +092003 +089007 +072001 +033006 +092003 +089010 +10102 031009 +064 +003004 +003003 +033006 +092004 +001007 +092007 +015001 +084001 +083001 +089015 +015001 +089017 +092004 +071001 +092003 +10120 015013 +092004 +083003 +092004 +093002 +033006 +092004 +092004 +093001 +071005 +092004 +009001 +092004 +009001 +037001 +10136 037001 +009001 +089015 +020004 +092004 +089015 +092004 +060003 +067008 067009 +023007 +089015 +025023 +078001 +10150 015006 +092004 +084002 +093002 +015005 +092004 +092004 +057014 +057007 +092004 +093001 +089015 +033006 +069004 +092004 +033017 +092003 +057014 +057014 +033006 +069001 +089015 +015006 +084002 +092004 +007002 +067002 +092004 +092004 +093001 +033006 +092004 +092003 +031005 +093001 +092004 +037004 +092004 +009001 +090003 +092004 +057007 +057014 +089024 +057014 +090001 +092004 +011003 +092004 +089024 +090001 +092004 +011003 +089015 +033006 +090001 +092004 +011003 +033006 +092004 +092004 +093001 +10213 037010 +013001 +092004 +011003 +089023 +089009 +069002 +025016 +092004 +015004 +084002 +001010 +015026 +006003 +089015 +092004 +015010 +060003 +004005 +015024 +089015 +079024 +092004 +008002 +092004 +027002 +006011 +092007 +018001 +057012 +092004 +090009 +092001 +089017 +092003 +067002 +092007 +092004 +067009 +015005 +092004 +036004 +092004 +093001 +033006 +089008 +092004 +087003 +013001 +083003 +092004 +037004 +092004 +012001 +089015 +033029 +009004 +085002 +092004 +084002 +083003 +092004 +089015 +033006 +072001 +033006 +092003 +10282 031008 041005 +089017 +013001 +064 +092004 +009004 +069002 +069002 +090013 +013002 +092004 +037004 +092004 +012001 +089008 +092004 +088007 +092004 +064 +092004 +009004 +092007 +092007 +013001 +092004 +087003 +083003 +092004 +037004 +092004 +012001 +089017 +071001 +092006 +034007 +092004 +009004 +064 +090006 +092004 +033009 +092001 +092001 +034007 +089017 +071001 +092006 +088038 +092004 +092004 +087004 +092007 +092004 +031009 +090006 +092001 +065005 +092004 +090006 +018002 +007007 +004001 +083004 +092004 +008002 +092004 +089015 +015011 +083003 +092004 +001010 +092004 +001010 +022001 +092004 +009001 +089007 +092004 +088038 +089007 +071005 +013004 +092004 +088038 +089023 +022001 +092004 +009001 +090001 +092006 +092004 +088038 +013004 +10376 089010 +092004 +008002 +092003 +089024 +092004 +008002 +092003 +088038 +092003 +019002 +092004 +089015 +085002 +084001 +092003 +065005 +092003 +013001 +090013 +013002 +092004 +023007 +023009 +089024 +023009 +064 +060002 +008002 +089024 +060002 +008002 +057001 +015026 +013002 +092004 +002003 +092004 +067005 +089017 +089010 +092004 +008002 +092003 +088038 +092003 +085002 +092004 +089015 +015026 +084001 +092003 +065005 +092003 +013001 +024001 +013002 +092004 +023007 +090013 +064 +060002 +008002 +057001 +015026 +013002 +092004 +001003 +092004 +002003 +030002 +069002 +088025 +092004 +092004 +087004 +092007 +089007 +033006 +092003 +090006 +092004 +012001 +092004 +083003 +001002 +067005 +067005 +024001 +092004 +008002 +092004 +012001 +092001 +092004 +083003 +001002 +092004 +092003 +031005 +089010 +057001 +092004 +009002 +060002 +004001 +089015 +015002 +060002 +063004 +092004 +069004 +015004 085003 +092004 +060002 +060002 +083008 +092004 +001007 +089015 +015004 +027004 +092004 +015002 +089015 +089010 +013004 +027002 +092004 +072001 +033006 +092003 +090006 +025011 +089007 +092004 +078002 +064 +089007 +092004 +060002 +060002 +092004 +069002 +015002 +061 +069002 +013001 +030004 +090005 +092004 +012001 +092003 +092004 +083003 +001002 +090006 +021006 +060002 +092004 +087004 +092007 +10539 089010 +088038 +092004 +011003 +092003 +015001 +033046 +092004 +089020 +092003 +089017 +092004 +058007 +089010 +092003 +031007 +057016 +092004 +011003 +092003 +089023 +089010 +069002 +031007 +015023 +089020 +092003 +059008 +060002 +089024 +060002 +089009 +089006 +033006 +060002 +089024 +060002 +033020 +076 +059003 +013004 +089023 +089010 +036003 +092004 +10585 092004 +011002 +089023 +089010 +10590 092004 +011002 +036003 +013001 +092003 +064 +092004 +011002 +089017 +092004 +057014 +072001 +033006 +092003 +071001 +059002 +037003 +083008 +092004 +001006 +10611 037003 +083003 +001002 +089017 +071001 +059002 +037003 +083008 +092004 +001006 +10622 037003 +083003 +001002 +072001 +089017 +033006 +092003 +10630 089010 +060002 +063004 +092003 +031003 +083008 +092004 +001006 +089004 +059003 +013004 +071001 +092006 +033012 +013004 +092004 +090003 +092004 +012001 +092001 +092004 +083003 +001002 +089007 +083002 +10656 015013 +060002 +089024 +060002 +090006 +092004 +092001 +033009 +083001 +085001 +083003 +083003 +092004 +067002 +015005 +092004 +093001 +033006 +092004 +012001 +067001 +088038 +090013 +092001 +092004 +011003 +092001 +089017 +040002 +092004 +059002 +060005 +033006 +092004 +092004 +093001 +069002 +033006 +092003 +059002 +060005 +089023 +059002 +060005 060006 +060002 +10703 064 +092004 +037004 +092004 +012001 +009002 +037004 +092006 +025001 +057020 +057020 +090013 +092004 +087005 +092004 +089015 +068001 +092004 +057020 +10723 092004 +092004 +057018 +060002 +006011 +089015 +069002 +057001 +092004 +057012 +033032 +092004 +057001 +057015 +092004 +089017 +092004 +010004 +089017 +092004 +010002 +089017 +059003 +059002 +057001 +089015 +057012 +089008 +017005 +092004 +087005 +017005 +092004 +033006 +025015 +090013 +092001 +089017 +063001 +057012 +092003 +089015 +025003 +092004 +057001 +092004 +087005 +092007 +040002 +092004 +089017 +092004 +057017 +057018 +092004 +089023 +015004 +092004 +087005 +092007 +027002 +092004 +092004 +087005 +092004 +092006 +057018 +092004 +060002 +006011 +089015 +018001 +092004 +019005 +033006 +057012 +089010 +092004 +057018 +089008 +017005 +092004 +087005 +092004 +033012 +092004 +033006 +025015 +090013 +092001 +089017 +057012 +092003 +089023 +092004 +069002 +030004 +089023 +015004 +085002 +092004 +084002 +007002 +067006 +057012 +092004 +057018 +089008 +092004 +087005 +092004 +024001 +092004 +013004 +025023 +078001 +089015 +015006 +033015 +092004 +057001 +092004 +059003 +092004 +013004 +067002 +033029 +092004 +092004 +057001 +092004 +033006 +092004 +087005 +088015 +063001 +092004 +057018 +092007 +057018 +092003 +089007 +033012 +092001 +069004 +071004 +089017 +092003 +088010 +092004 +087005 +092003 +064 +089017 092001 +092003 +088010 +089015 +088024 +092004 +057001 +092004 +037007 +092004 +092004 +037009 +067006 +10890 057012 +059003 +092004 +057018 +10895 061 +089017 +092004 +012001 +092001 +092004 +001002 +042002 +092003 +10906 040002 +059003 +092004 +011003 +092004 +090003 +092004 +026 +092003 +091001 +013004 +10918 068003 +092004 +093001 +092004 +033006 +092007 +015004 +084001 +092004 +093002 +089015 +015006 +084002 +092004 +001011 +092004 +093002 +083007 +092004 +093002 +089015 +015020 +092004 +011001 +078001 +089015 +023008 +092004 +083001 +091001 +015005 +092004 +011002 +027003 +092004 +089017 +033006 +089010 +071004 +034010 +092004 +010004 +092004 +10962 059003 +089007 +089015 +092004 +033014 +033006 +069004 +033005 +090006 +092004 +042003 +067006 +067003 +079022 +089017 +079022 +042003 +092004 +089015 +033006 +089007 +092007 +085004 +010004 +092004 +010002 +089017 +092004 +010002 +089015 +034002 +092004 +010004 +092004 +089015 +013001 +092004 +060002 +013002 +008001 +063001 +089008 +067006 +013001 +060002 +089023 +008001 +063001 +089008 +092006 +092004 +012001 +034010 +009001 +069002 +034010 +033006 +092004 +089008 +092004 +093001 +033032 +057008 +006010 +033005 +089015 +034010 +033006 +092004 +090006 +093001 +11034 092004 +088028 +092003 +013004 +092003 +034010 +092004 +010004 +092003 +089023 +067006 +067003 +069002 +013001 +061 +089023 +033006 +092003 +090006 +071001 +092006 +034010 +092004 +010004 +092004 +069002 +089007 +088036 +089015 +034010 +058006 +088036 +033006 +092004 +092004 +036004 +089010 +061 +013001 +092004 +089001 +092004 +009002 010004 +089020 +092004 +010004 +069002 +065005 +034010 +089015 +092004 +033006 +092004 +069002 +059003 +031007 +092004 +033006 +092007 +089023 +092006 +11096 089007 +013003 +009002 +092004 +067006 +008002 +010002 +023003 +061 +089017 +013003 +009002 +092004 +009002 +090001 +092004 +009001 +089017 +013003 +009002 +092004 +009002 +092004 +089007 +092004 +037004 +092004 +012001 +092004 +074 +031007 +031007 +067002 +015023 +092004 +009004 +089009 +092004 +008002 +085002 +092004 +089017 +033013 +089023 +092004 +036004 +033046 +092004 +089015 +092004 +093001 +033006 +013004 +092004 +009004 +089017 +069002 +013004 +092004 +015006 +084002 +092001 +089007 +092004 +092007 +013001 +092004 +037004 +092004 +012001 +089015 +085002 +092004 +008002 +092004 +015004 +084001 +091001 +091003 +092004 +015005 +092004 +033006 +033017 +092004 +088001 +042002 +089009 +090013 +023007 +067005 +089015 +092004 +033006 +092004 +092004 +092001 +033014 +089004 +092004 +088001 +063001 +013001 +092004 +088001 +089023 +089010 +025001 +013002 +092004 +023007 +090013 +11209 092004 +033032 +033006 +092004 +092007 +089015 +092004 +093001 +11218 092004 +069002 +020004 +069002 +088036 +069002 +057021 +069002 +033020 +087002 +092004 +010002 +089017 +092004 +010002 +089017 +025003 +092004 +011003 +092003 +064 +092003 +033006 +092004 +092004 +009002 +092007 +059003 +036003 +092004 +059008 +013001 +033006 +092004 +092004 +093001 +089010 +025001 +088004 +013001 +015004 +057015 +092003 +092004 +057001 +089015 +057008 +057006 +11267 057001 +065001 +083003 +001002 +089015 +084002 +036004 +092001 +089023 +092004 +009002 +024002 +092004 +033006 +015004 +025023 +089007 +11285 057001 +057001 +078001 +089015 +092004 +093001 +033006 +092004 +036004 +092004 +072001 +033006 +092003 +090006 +057003 +022004 +090013 +013002 +092004 +037004 +092004 +012001 +089017 +067002 +033006 +092003 +022006 +013001 +004001 +084003 +11316 006023 +11318 064 +057003 +013002 +092004 +037004 +092004 +012001 +089015 +024002 +092004 +036004 +025020 +078001 +033006 +089008 +092004 +074 +021006 +089015 +024001 +092004 +093001 +033006 +092004 +090001 +009001 +092007 +071001 +013001 +089023 +090001 +012001 +059003 +071001 +067002 +033004 +092004 +093001 +033006 +092004 +091003 +092002 +085002 +059003 +089015 +036004 +092003 +089008 +092004 +013001 +092002 +11370 092004 +093001 +033006 +092004 +072001 +033006 +092003 +090006 +092003 +092004 +036004 +092001 +067002 +092004 +067008 +11386 017002 +092004 +009001 +092004 +009001 +083008 +006015 +014006 +092004 +017002 +089017 +11398 083008 +060002 +006015 +037004 +092004 +060002 +010001 +092004 +093001 +089017 +059003 +092004 +085002 +007002 +089024 +010003 +089024 +010003 +089024 +010002 +089024 +010002 +089024 +010002 +089024 +001015 +089007 +092004 +11427 033009 +11429 057009 +089017 +023007 +067005 +057009 +089023 +059001 +087003 +013001 +087004 +089017 +087004 +087003 +089007 +064 +013001 +092004 +037004 +092004 +012001 +009002 +057001 +092004 +015004 +089020 +067009 +057013 +042004 +084002 +092004 +003003 +092004 +089015 +031003 +089020 +092004 +042004 +057012 +006011 +092004 +067009 +015004 +092004 +084002 +092004 +003003 +092004 +089015 +015004 +067002 +060003 +067009 +024001 +058006 +085001 +083003 +092004 +057016 +042004 +089015 +092007 +033006 +015001 +089017 +092003 +084002 +092004 +003003 +089017 +071001 +092006 +013001 +066 +057012 +092003 +089015 +092004 +015004 +089015 +067002 +015004 +067002 +060003 +089015 +060003 +067009 +042002 +064 +089015 +067002 +092004 +060003 +015004 +027002 +058006 +085001 +089015 +033006 +092004 +092004 +083001 +085001 +063001 +092004 +067009 +042004 +033006 +092004 +089007 +092004 +092002 +057013 +033006 +092004 +015001 +089017 +092003 +084002 +092004 +003003 +089015 +067009 +013002 +033006 +092004 +057001 +092004 +003003 +092004 +037004 +092004 +033029 +092004 +042004 +089015 +057012 +092004 +057013 +068001 +11569 092004 +061 +067006 +092004 +060003 +11575 015006 +092004 +067002 +092004 +060003 +067009 +057009 +089016 +006011 +089015 +015006 +092004 +060003 +031005 +090006 +059001 +057009 +11593 057009 +092004 +089016 +006011 +089017 +092004 +089015 +057009 +033041 +090008 +092004 +057001 +033006 +092007 +092004 +061 +060002 +067009 +042004 +089017 +058005 +092004 +013001 +092002 +092004 +025015 +092004 +022001 +092004 +067009 +089017 +092004 +014008 +089023 +092004 +033004 +092004 +092004 +033006 +034001 +069002 +088002 088016 +092003 +069004 +006011 +031003 +092001 +015024 +092004 +092003 +089015 +015004 +11646 030004 +092007 +092004 +061 +057012 +064 +089017 +092003 +069004 +071001 +092001 +092006 +025001 +042002 +089004 +092004 +092001 +089024 +092004 +057008 088022 +092003 +057008 088022 +013001 +089007 +092001 +057008 +013001 +061 +013001 +092004 +087004 +087003 +089017 +092004 +087003 +087004 +11683 093001 +11686 084002 +093002 +015023 +092004 +060002 +028004 +028004 +089015 +083008 +092004 +015002 +033006 +092004 +091003 +015010 +084002 +093002 +089015 +092004 +009001 +092004 +009001 +037007 +092004 +053009 +089017 +053009 +089015 +056005 +092004 +11718 089015 +037007 +092004 +092004 +011002 +089009 +092004 +033044 +089017 +019001 +089017 +020004 +089015 +092004 +060003 +067009 +023007 +067002 +015005 +092004 +092004 +010002 +092004 +010002 +093001 +089020 +092004 +010002 +092004 +017005 +089015 +033012 +092004 +090003 +092004 +089015 +092004 +033006 +092004 +092004 +025001 +033006 +092004 +033006 +090006 +017002 +092007 +092004 +060002 +010002 +092001 +11770 087003 +082002 +089017 +11775 082002 +092003 +067007 +092004 +037004 +092003 +089023 +033004 +092004 +093001 +033006 +069002 +032001 +092004 +033012 +074 +024006 +092004 +024006 +092006 +024006 +092001 +067002 +033006 +092004 +074 +033006 +092004 +091002 +092004 +024006 +092001 +024006 +089023 +092004 +017002 +087003 +082002 +092001 +089017 +087003 +082002 +069002 +013001 +092001 +092007 +013004 +089023 +092006 +077 +090001 +092004 +012001 +092001 +089015 +024002 +092004 +060002 +088024 +090006 +092004 +060002 +010003 +089015 +092004 +093001 +033029 +092004 +033006 +028001 +090006 +092004 +037004 +092004 +011002 +037004 +092004 +089017 +092004 +11855 037004 +092004 +069002 +061 +11860 089004 +092003 +089023 +071001 +092006 +025001 +083003 +092003 +087003 +013002 +013001 +092003 +035002 +089017 +071001 +092006 +025001 +083003 +092003 +013001 +087003 +013001 +092003 +087005 +064 +092004 +009001 +092004 +009001 +069002 +015006 +035002 +089023 +035002 +089017 +023007 +092004 +023007 +092004 +037010 +090009 +059001 +091001 +015004 +092004 +084001 +093002 +015020 +092004 +011001 +059001 +089015 +091003 +060002 +024001 +017002 +083005 +092004 +001016 +033015 +090006 +093001 +015003 +033006 +033006 +088010 +092002 +087003 +010002 +093001 +089015 +092004 +011001 +033046 +092004 +090006 +033008 +089023 +092004 +078001 078002 +033006 +033006 +088010 +092002 +087003 +010002 +093001 +089015 +068004 +092004 +093001 +033029 +092004 +089015 +033006 +025001 +092004 +042002 +092003 +033006 +092004 +087003 +090006 +024001 +092004 +008002 +092002 +089015 +025003 +092004 +093001 +024005 +092004 +008002 +092004 +089015 +067002 +024001 +089015 +015020 +092004 +091001 +11983 015005 +084002 +093002 +089015 +015006 +084002 +093002 +084002 +092004 +001007 +092004 +003002 093002 +067002 +093001 +015004 +060002 +036004 +033006 +092004 +015004 +084002 +092004 +001014 +092004 +083007 +092003 +089015 +12011 027002 +004001 +018002 +089017 +004001 +089020 +092004 +018002 +015023 +092001 +089015 +089010 +092004 +092003 +033006 +092004 +033006 +090006 +092004 +012001 +092004 +057005 +12034 089015 +067002 +015004 +092004 +12039 092007 +013004 +089009 +013004 +092004 +033006 +090001 +092004 +053009 +033006 +033006 +092004 +011003 +093002 +091003 +092004 +037004 +092003 +015006 +092003 +088008 +089017 +015009 +083008 +004001 +12065 083008 +004001 +004001 +004001 +12070 092004 +036004 +015001 +089017 +042002 +064 +033032 +092004 +092004 +093001 +015023 +092004 +004001 +089017 +092004 +004001 +089015 +085002 +084002 +092004 +092004 +006017 +089015 +017002 +083009 +092004 +089015 +092004 +059002 +011001 +016 +092004 +092004 +006017 +083008 +092004 +001016 +089017 +058006 +019002 +003005 +090003 +092004 +003002 +089015 +016 +083008 +092004 +001016 +089017 +092004 +011001 +092004 +015016 +092004 +089017 +092004 +015017 +033006 +033006 +033037 +092004 +010002 +093001 +033055 +092004 +015006 +089004 +033009 +012001 +033037 +083003 +092004 +001002 +089015 +015008 +092004 +084002 +093002 +025021 +059003 +092004 +011003 +033006 +092004 +013001 +092007 +089015 +092004 +011001 +033006 +092007 +013001 +092004 +053009 +093001 +092004 +084001 +093002 +092004 +093002 +091001 +015008 +093001 +084002 +092004 +007002 +089015 +015004 +059003 +092004 +057015 +089017 +057015 +083003 +092004 +007002 +089017 +016 +092004 +006015 +092004 +057016 +089017 +092004 +006015 +092004 +057015 +092004 +004002 +089017 +033006 +092004 +033005 +092004 +007002 +092001 +007002 +033013 +033009 +089023 +092003 +092004 +013001 +001008 +057021 +089015 +015005 +092004 +024001 +089017 +023009 +083003 +092004 +007002 +089015 +023008 +092004 +089023 +092004 +053009 +089017 +092004 +053009 +024001 +092004 +025020 +092006 +090011 +089017 +092004 +009004 +092004 +033006 +083003 +092004 +007002 +089017 +033006 +033037 +092004 +010002 +093001 +088024 +089015 +033006 +092004 +024002 +092004 +092007 +033006 +089015 +092004 +093001 +033006 +092004 +069001 +067001 +033005 +090006 +090003 +033006 +009004 +089017 +023001 +013004 +033037 +089015 +034004 +092004 +015004 +083004 +092004 +001014 +084002 +093002 +089015 +067009 +083001 +12290 067009 +12292 084002 +092004 +001014 +023001 +089015 +024001 +003002 +092004 +083005 +092004 +001016 +015001 +084002 +092004 +12307 092004 +027002 +083008 +092004 +089023 +12313 003005 +12315 089015 +033006 +092004 +12319 067006 +090003 +092003 +003004 +013003 +067005 +092004 +067005 +089015 +079015 +067005 +092004 +003002 +089015 +024001 +092004 +036004 +025020 +033006 +12339 067005 +079015 +092004 +003002 +089015 +033004 +092004 +093001 +033006 +092004 +072001 +033006 +092003 +089010 +12354 031009 +089017 +069002 +031006 +069002 +12360 092004 +092004 +003002 +042002 +089023 +089011 +092004 +001007 +092007 +033006 +015024 +089015 +015026 +084002 +092004 +001010 +013004 +089017 +059003 +071001 +059001 +033012 +067007 +092004 +033013 +031009 +057009 +091001 +015006 +092004 +084002 +092004 +007002 +015005 +092004 +033017 +092004 +053009 +089017 +092004 +053009 +092004 +011002 +033006 +089004 +058004 +037003 +092007 +042002 +089017 +092004 +092003 +037005 +092004 +037003 +092007 +089015 +033014 +092004 +093001 +033006 +092004 +033014 +092003 +089017 092001 +033006 +060002 +089010 +092006 +033006 +092001 +089017 092001 +092003 +033006 +089004 +058004 +037003 +092007 +042002 +092004 +053005 +092004 +093001 +084001 +013001 +090003 +012001 +089024 +090003 +009001 +089015 +092004 +033011 +083003 +092004 +033006 +089010 +033006 +090003 +012001 +033006 +092002 +089008 +12465 069002 +031009 +092004 +089023 +089010 +033006 +090003 +009001 +025022 +092004 +087004 +089007 +059003 +064 +053009 +031001 +092004 +093001 +089015 +033004 +092004 +093001 +033006 +069002 +028001 +033006 +092004 +089017 +092004 +069003 +092001 +033006 +092003 +089004 +058004 +037003 +092007 +042002 +12504 092004 +092003 +031005 +009002 +057001 +010002 +060002 +015005 +092004 +060003 +033006 +010002 +015004 +067010 +042004 +083003 +092004 +003003 +089023 +092004 +033004 +033006 +092001 +087003 +12529 069002 +015004 +089015 +015005 +092004 +12535 033006 +064 +089015 +092004 +033004 +033006 +069002 +030004 +067002 +025023 031008 +015004 +092004 +063004 +092004 +060002 +042002 +092004 +030004 +092004 +010002 +033006 +092004 +12558 033006 +092004 +092004 +093001 +072001 +033006 +092003 +090006 +092004 +057014 +089017 +092004 +088036 +015015 +092003 +013002 +092004 +037004 +092004 +012001 +089007 +015006 +093001 +084002 +092003 +090006 +041001 +088002 +12587 069002 +031009 +092004 +089023 +092004 +057014 +089017 +092004 +088036 +031009 +092004 +089023 +092003 +024001 +069003 +025023 031008 +067002 +092004 +031009 +092004 +058006 +033003 +024002 +009002 +013003 +057001 +092004 +043 +003003 +089017 +007006 +092004 +085002 +089017 +019006 +083003 +092004 +007007 +089017 +045 +007002 +089015 +057013 +092004 +043 +089015 +015004 +089015 +12636 067002 +092004 +067001 +092004 +043 +015004 +092004 +087005 +092004 +084002 +092004 +043 +057007 +092004 +043 +092004 +089015 +018001 +092004 +043 +092004 +087005 +092004 +089017 +12661 019001 +089017 +12664 020004 +089017 +12667 020004 +067002 +015004 +058006 +087005 +059001 +092004 +060003 +089015 +042002 +092004 +064 +089015 +061 +015004 +084002 +092004 +092004 +010002 +092004 +033006 +087002 +092004 +010002 +092001 +089023 +092004 +043 +024001 +092004 +010002 +031001 +12701 092007 +013001 +092004 +057009 +084002 +020004 +092004 +089015 +057001 +092004 +057009 +092004 +089015 +018001 +092004 +015026 +084002 +092004 +003003 +089015 +020004 +089008 +12724 015006 +092004 +057001 +092004 +003003 +092004 +041001 +092004 +043 +092007 +033006 +092004 +088015 +078001 +020003 +092004 +089015 +092004 +003003 +057013 +058006 +043 +092004 +057012 +092004 +092004 +043 +067002 +092004 +067001 +092004 +033006 +092004 +092004 +093001 +067001 +033005 +083003 +092004 +033005 + +092006 +030007 +092004 +045 +092007 +013002 +013002 +007003 +079023 +090003 +012001 +013002 +092007 +089017 +013001 +025020 +12782 024001 +092002 +12786 033006 +092003 +090006 +090014 +12791 092003 +092004 +037004 +092004 +012001 +089015 +057008 +011003 +013003 +092004 +023012 042002 +092004 +089017 +092004 +015012 +084002 +092004 +002005 +092007 +019004 +089023 +084002 +071001 +092006 +015012 +019005 +092004 +089017 +092004 +053009 +089017 +092004 +011002 +024002 +092004 +033003 +092004 +032002 +090006 +090006 +092004 +033006 +089015 +068005 +092004 +037006 +025022 +092004 +087004 +089007 +12842 053009 +092004 +031001 +091001 +033004 +092004 +093001 +067002 +033006 +089012 +033003 +092004 +033006 +064 +092004 +037004 +092004 +012001 +009002 +037004 +092004 +090011 +034010 +092004 +010002 +092004 +089015 +015004 +092004 +087005 +092004 +033029 +092004 +033030 +084002 +092004 +034010 +12880 069002 +030004 +015006 +067002 +015004 +058006 +087005 +033006 +033006 +092004 +033030 +091003 +092004 +023001 +092001 +077 +092004 +004001 +092001 +089017 +092004 +044 +020004 +089017 +059003 +077 +084002 +084002 +092004 +034010 +089023 +092004 +030002 +015004 +089017 +12916 084002 +092004 +057001 +001015 +089017 +12922 089009 +092004 +057016 +092004 +089017 +092004 +063005 +018001 +092004 +087005 +092004 +088016 +089015 +020004 +089015 +092004 +037004 +088024 +089015 +015004 +092004 +055003 +092004 +020003 +092004 +020004 +092007 +089015 +092004 +001014 +092004 +014008 +067002 +033006 +092004 +087005 +092004 +091002 +092004 +034010 +077 +013001 +089023 +092004 +033030 +069002 +013001 +065002 +089008 +015001 +084002 +092004 +001016 +092004 +001016 +089015 +071001 +059001 +027002 +033030 +084002 +092004 +034010 +089015 +092004 +087005 +092007 +015004 +084002 +092004 +001016 +015013 +059003 +092006 +027002 +089017 +088015 +089017 +088001 +089015 +059004 +092004 +13005 017006 +089015 +092004 +037004 +015008 +034006 +092004 +017006 +024001 +083001 +009002 +069002 +049 +006017 +034010 +089015 +033006 +092004 +034001 +092004 +015008 +083001 +069002 +049 +006017 +034010 +089023 +092004 +033008 +067002 +092004 +037004 +033006 +092004 +035002 +037008 +092004 +008002 +089017 +008002 +015004 +092004 +084002 +092004 +001003 +092004 +001003 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +089007 +059001 +013001 +033030 +089023 +059001 +030006 +067002 +015001 +092004 +011002 +030004 +090011 +089009 +092004 +027003 +089012 +033006 +089015 +015004 +092004 +092004 +036004 +092004 +089020 +092004 +011003 +13089 033017 +028001 +090006 +088005 +013001 +089017 +092004 +041001 +092004 +012001 +070 +070 +033017 +089017 +069002 +030002 +092003 +090006 +092004 +089007 +069002 +030007 +13112 030007 +009001 +089008 +13116 092002 +092004 +092003 +031005 +071004 +057012 +057014 +037004 093001 +089024 +069002 +089023 +092004 +093001 +028001 +092004 +088015 +092004 +033006 +092004 +092001 +027003 +088029 +024001 +092001 +092004 +006011 +092004 +057014 +089015 +092004 +015024 +092004 +006011 +089015 +033006 +092004 +092004 +092004 +006013 +092007 +089017 +092004 +033005 +033006 +037004 093001 +067002 +033006 +092004 +089008 +057012 +092004 +037004 093001 +037004 093001 +089017 +092004 +092004 +012001 +092004 +012001 +089015 +024002 +025020 +089015 +015004 +092004 +015004 +067007 +092007 +092004 +067009 +015005 +092004 +011002 +033006 +069002 +013003 +023007 +089015 +033014 +092004 +033006 +033017 +093001 +033006 +089010 +092004 +023007 +069002 +057001 +010002 +034010 +092004 +010003 +092004 +092004 +010004 +092004 +089015 +023003 +023003 +092004 +010003 +092004 +13220 013003 +089020 +092002 +060002 +010003 +089015 +092004 +060003 +034010 +023007 +089017 +069002 +057001 +010002 +015004 +092004 +010004 +092004 +092004 +010003 +092004 +064 +089015 +092004 +060003 +089015 +092004 +060003 +067006 +092004 +060002 +089015 +061 +059003 +023007 +092004 +010004 +089008 +067002 +092004 +023007 +092004 +092004 +060002 +010004 +013001 +089007 +059003 +13269 092004 +089023 +033014 +092004 +093001 +033006 +092004 +031008 +069002 +032001 +092004 +033005 +069003 +092004 +076 +092004 +012001 +089007 +067002 +092004 +023007 +069003 +034010 +069003 +034010 +089023 +064 +012001 +083003 +092004 +001002 +013001 +089023 +089004 +092004 +023007 +092004 +023007 +069002 +033005 +092004 +033006 +092003 +090001 +092004 +012001 +033006 +092001 +013001 +092004 +012001 +093001 +089017 +092004 +012001 +093001 +089017 +092004 +012001 +093001 +069002 +013001 +092004 +012001 +023007 +089023 +023007 +089015 +024002 +092004 +011001 +025020 +089007 +092004 +033017 +092004 +13346 092004 +011002 +024002 +090006 +033008 +092004 +011002 +015013 +13355 092004 +058005 +089015 +033014 +092004 +063004 +092004 +033033 +027003 +092004 +033017 +092007 +033032 +087003 +083003 +092004 +033005 +089015 +092004 +033006 +092004 +025003 +012001 +092004 +012001 +092003 +090002 +063001 +092004 +026 +092003 +089017 +090002 +063001 +092004 +026 +092003 +089017 +090002 +063001 +092004 +026 +092003 +092007 +013001 +092004 +087003 +089017 +065006 +033032 +060003 +064 +092004 +025003 +092004 +011003 +092003 +064 +092003 +089020 +092007 +092004 +060002 +033032 +063001 +092004 +033005 +018002 089002 +13424 092004 +033005 053009 +13427 015013 +092004 +011002 +033014 +092004 +092004 +093001 +033006 +092004 +092003 +031005 +090006 +092004 +053009 +092004 +010002 +013001 +033006 +092004 +092004 +093001 +033006 +092004 +089008 +092004 +093001 +090001 +012001 +033009 +092004 +012001 +033006 +033006 +012001 +092004 +012001 +092001 +017002 +087003 +082002 +092001 +067006 +071001 +013001 +092004 +039001 +092003 +037001 +092004 +037001 +092003 +089008 +089010 +093001 +033009 +092004 +012001 +092004 +010002 +092004 +013001 +089015 +092004 +074 +033014 +092004 +033006 +069003 +025014 +092004 +067006 +092007 +092004 +067009 +033014 +092004 +067006 +067002 +092004 +093001 +033006 +092004 +011001 +089017 +092004 +036004 +092004 +033006 +037003 +092004 +033005 093001 +006015 +017002 +092004 +053009 +089017 +092004 +011002 +089008 +059003 +071001 +059001 +033006 +092003 +042002 +089017 +036003 +089023 +089005 +092004 +042002 +092004 +069002 +042002 +089007 +033006 +13544 069002 +042002 +089017 +018002 +015024 +086001 +089015 +085002 +13553 092004 +008002 +092004 +009001 +089023 +092004 +092004 +008002 +092004 +069002 +025001 +015001 +092004 +089023 +059003 +092004 +042002 +092004 +042002 +089009 +092004 +024001 +092004 +009001 +089007 +081004 +092004 +006018 +092004 +089017 +079028 +092004 +006018 +089017 +025010 +092004 +087002 +083005 +092004 +023001 +089017 +092004 +087002 +083003 +092004 +007002 +089017 +092004 +033003 +083003 +092004 +057016 +089017 +033009 +090001 +092004 +009001 +033017 +089023 +092003 +069002 +033009 +033017 +089007 +060002 +013001 +092003 +092004 +033017 +089017 +059003 +092003 +011003 +013001 +089017 +087003 +092003 +069002 +033009 +083008 +092004 +001006 +089007 +060002 +013001 +092003 +092004 +012001 +092004 +001002 +069003 +033009 +033017 +089007 +033017 +092003 +013001 +060002 +092004 +053009 +089017 +092004 +087003 +092003 +013001 +092003 +035002 +089017 +092004 +087003 +092004 +025018 087004 +089017 +092004 +025018 088007 +092004 +087003 +089023 +022001 +092003 +053009 +089017 +011002 +088029 +089007 +079024 +092004 +037004 +092004 +012001 +083006 +092004 +009001 +089007 +092003 +069002 +090013 +069003 +092004 +090013 +090013 +013004 +022001 +092003 +053009 +089017 +011002 +088029 +089007 +015002 +092004 +001010 +089017 +092004 +001009 +013001 +060002 +011002 +089015 +067002 +013002 +013001 +092004 +009001 +001003 +060006 +092003 +022001 +092003 +036001 +032005 +092004 +033006 +071001 +092006 +033054 +090007 +092004 +007002 +092004 +013001 +089023 +071001 +092006 +033054 +090007 +092004 +002007 +092004 +007002 +071004 +032005 +089017 +032005 +091001 +092004 +087003 +013001 +092004 +002007 +089024 +092004 +007002 +092004 +053006 +092004 +002007 +089017 +071001 +092006 +033054 +090007 +092004 +006015 +092004 +013001 +089023 +071001 +092006 +033054 +090007 +092004 +057008 +092004 +083009 +092004 +071004 +032005 +091001 +092004 +087003 +092004 +057008 +089024 +092004 +006015 +092004 +053006 +092004 +057008 +089008 +092004 +033054 +090007 +092004 +006015 +033054 +090007 +092004 +089017 +090007 +059003 +092004 +083009 +092004 +089017 +092004 +033054 +090007 +092004 +007002 +033054 +090007 +092004 +089017 +090007 +092004 +085005 +092004 +089017 +092004 +033054 +090007 +092004 +012001 +033054 +090007 +092004 +006015 +092004 +012001 +089017 +090007 +092004 +017002 +083009 +092004 +022001 +092003 +053009 +089017 +011002 +088029 +089007 +057008 +092004 +003003 +089017 +092004 +003003 +089017 +092004 +003003 +13857 031008 +092004 +065006 +092004 +033005 +092004 +056005 +089017 +092004 +088010 +089017 +092004 +031009 +089023 +071004 +092007 +042002 +089017 092007 +069002 +13877 036001 +032005 +092004 +046 +092004 +004003 +089023 +092004 +004001 +023002 +022001 +092003 +053009 +089017 +011002 +088029 +089007 +079010 +092004 +083004 +092004 +006016 +089017 +092004 +006016 +089023 +083003 +059004 +090003 +057021 +089017 +088011 +011002 +032005 +053003 079010 +067002 +092004 +083003 +092004 +006016 +089009 +013002 +089017 +092004 +083004 +092004 +079010 +022001 +092003 +053009 +089017 +011002 +088029 +089007 +064 +007007 +045 +091002 +092004 +083004 +028003 +079004 +089023 +083003 +059004 +008002 +023007 +089017 +059003 +079010 +061 +089017 +092003 +091002 +083004 +028003 +092004 +009001 +088002 +089023 +083003 +013001 +078004 +088029 +089017 +088018 +022001 +092003 +053009 +089017 +011002 +088029 +089007 +045 +092004 +007007 +092004 +053009 +089017 +079004 +092004 +007007 +092004 +088002 +089017 +033006 +089010 +013003 +067002 +092004 +067008 +092004 +010002 +092002 +071003 +069002 +013001 +092004 +034001 +089004 +092004 +020004 +092004 +053009 +089008 +033020 +092004 +090006 +013001 +009001 +092004 +020004 +092004 +053009 +14012 092003 +059004 +092004 +081001 +092004 +010002 +092003 +088015 +023003 058004 +088015 +092004 +021004 +084001 +092004 +038001 056005 +092004 +001003 +091003 +14032 092001 +015004 +084002 +092003 +053009 +089017 +032004 +089017 +027001 +063004 +092004 +020004 +089017 +020004 +089017 +063004 +092004 +019001 +083003 +092004 +007002 +092003 +089017 +015021 +084001 +001014 +084002 +001014 +089009 +013004 +090004 +092003 +059003 +020004 +088002 +014005 020004 +084002 +092004 +001006 +14072 092004 +023007 +093001 +092004 +088002 +067006 +092004 +023007 +093001 +010002 +093001 +092006 +020004 +083003 +092004 +007002 +089017 +092004 +006015 +072001 +033006 +092003 +013004 +092007 +059003 +090013 +092004 +010001 011001 +092007 +093002 +093002 +092004 +020004 +092004 +053009 +089017 +020004 +092004 +015004 +084002 +092004 +067001 +030004 +015013 +092004 +011003 +092003 +092006 +089014 +004002 +015013 +092004 +004002 +092004 +083009 +092004 +008002 +14130 069002 +030004 +091003 +085002 +092003 +092004 +007002 +092003 +089007 +033006 +092003 +069002 +069002 +092001 +024001 +067006 +067002 +067006 +071001 +033006 +033055 +092004 +015006 +089004 +033009 +012001 +091001 +092004 +093001 +015004 +084001 +092004 +007002 +015004 +089015 +015005 +092004 +036004 +092004 +024001 +092004 +092004 +007001 +092004 +007002 +089015 +092004 +033004 +033006 +092004 +069004 +024001 +092007 +059003 +072001 +033006 +092003 +069002 +069002 +085003 +083001 +083008 + + +092006 +069002 +020003 +089015 +017002 +092004 +083008 +092004 +001007 +092004 +003002 093002 +015005 +092004 +092004 +036004 +028004 +028004 +033006 +033006 +092002 +067002 +092007 +013004 +089017 +092004 +092004 +033056 +092004 +092003 +015006 +089017 +067003 +092004 +067008 +089015 +033014 +092004 +093001 +033006 +092004 +027006 +069002 +092004 +092003 +031002 +089007 +059001 +015006 +090006 +092004 +033009 +092001 +033006 +092001 +013001 +092004 +053009 +089015 +059001 +031002 +089017 +067002 +033015 +055002 +089017 +033015 +055002 +030002 +069002 +025022 +089007 +071005 +013004 +089023 +067006 +013004 +092004 +067003 +089007 +055002 +011003 +090008 +011003 +089017 +001012 +090008 +001012 +089017 +013004 +023001 +089017 +014010 +089016 +080001 +089023 +059003 +092007 +068001 +024006 +067002 +037007 +092003 +013002 +022001 +089017 +020004 +092003 +089017 +14303 088026 +090001 +059003 +092004 +011003 +090010 +092004 +033009 +092001 +089015 +067002 +031008 +059001 +089017 +092005 +037007 +089017 +088026 +092005 +089017 +059001 +053009 +013003 +089015 +031002 +059001 +089017 +089007 +092004 +059007 +092004 +088018 +078002 +092004 +025003 +092004 +059001 +089023 +092004 +025015 +067006 +067003 +092007 +021005 021006 +089017 +033019 +092007 +092004 +033015 +092004 +037004 +084002 +063001 +092004 +001006 009001 +089009 +033020 +059003 +092004 +011003 +089015 +067002 +013004 +092004 +067003 +089008 +067002 +024001 +092004 +053004 +092004 +053004 +092004 +033006 +090001 +093001 +092004 +053009 +085001 +083003 +080001 +007002 053006 +092004 +033005 +030001 +067002 +092004 +083003 +092004 +093002 +015004 +084002 +092004 +001007 +092004 +083008 +092004 +007003 +069002 +015011 +015024 +092004 +084001 +092004 +007002 +092004 +089017 +092004 +083003 +092004 +001015 +069002 +015007 +083006 +015024 +092004 +006017 +092004 +089017 +022001 +092004 +023003 +023003 +14427 089017 +092004 +023001 +067007 +092007 +092004 +067008 +089017 +033013 +090006 +069002 +013004 +092004 +015004 +092003 +067009 +069003 +067009 +089007 +013004 +067002 +022001 +078001 +064 +069002 +013004 +067006 +067003 +001001 +067006 +092004 +067002 +069003 +069002 +069002 +013004 +089017 +089023 +14466 059007 +092004 +067008 +092007 +071001 +069002 +021005 +059003 +009001 +089023 +090010 +092004 +030006 +059007 +092004 +067008 +092007 +089010 +067002 +092004 +092003 +033006 +091003 +083001 +092004 +053009 +089024 +083001 +069002 +031006 +089007 +013003 +053009 +089017 +053009 +089015 +013004 +033056 +078001 +089017 +033056 +089008 +031002 +089010 +071001 +14512 092004 +030006 +091003 +033024 033047 +092003 +089008 +089010 +033006 +092003 +091003 +083003 +092004 +001013 +085001 +069002 +015004 +091003 +083003 +092004 +007003 +069002 +031006 +089007 +064 +092004 +014004 +015004 +084001 +082001 +089015 +024001 +084002 +082001 +061 +013001 +092004 +015006 +092004 +009001 +092004 +009001 +071001 +083002 +085001 +092004 +008001 +083001 +015013 +092004 +004002 +089015 +067002 +067002 +092004 +022001 +092004 +067008 +092007 +092004 +001004 +014007 +089017 +092004 +001004 +069002 +013004 +092004 +014006 +092004 +089017 +092004 +001004 +015012 +084001 +092004 +001002 +089017 +092004 +012002 +092004 +001002 +016 +089015 +067002 +024001 +092004 +033056 +092004 +009001 +092004 +009001 +083003 +001002 +089015 +067002 +052 +059003 +092004 +011003 +092004 +009001 +089015 +024001 +092004 +009001 +092004 +009001 +015006 +083008 +092004 +001005 +092004 +001002 +089013 +076 +089017 +076 +078001 +089015 +015004 +092004 +012001 +092004 +089013 +006012 +078001 +089015 +015013 +092004 +030006 +092004 +084001 +092004 +060002 +014002 +084001 +080002 +001002 +084002 +080002 +092004 +14654 090002 +092004 +003002 +027001 +092004 +033003 +14661 067002 +092004 +003005 +092004 +013002 +079021 +089017 +092004 +003005 +023011 +032002 +090006 +067002 +092004 +067009 +061 +089017 +092003 +14680 024001 +059003 +092007 +028001 +090006 +067002 +013001 +067002 +007003 067002 +072001 +033006 +092003 +090006 +069002 +069002 +067005 +092004 +010001 011001 067008 +092007 +067006 +071001 +059003 +092007 +013004 +092004 +001001 +14707 092004 +001001 +013003 +089023 +092004 +033006 +092001 +069002 +069002 +013003 +14718 089004 +092004 + +089017 +067009 +092007 +092004 +028001 +069003 +092004 +012001 +092004 +001002 +069003 +092004 +012001 +089023 +14736 092004 +012001 +058007 +089007 +064 +092004 +067008 +092004 +093001 +061 +013001 +092004 +015006 +092004 +009001 +092004 +009001 +089007 +064 +067007 +092004 +067008 +092007 +092004 +067002 +092004 +014005 +14764 023001 +089017 +023001 +034010 +089017 +034010 +067006 +092006 +067009 +015008 +093001 +084002 +092004 +006008 +089017 +069002 +032002 +067006 +013004 +092004 +014005 +089015 +015024 +059003 +061 +013001 +089017 +092004 +015006 +092004 +009001 +092004 +009001 +067002 +085001 +060002 +083003 +092004 +001015 +14804 015023 +089017 +14807 015004 +060002 +046 +083005 +092004 +007007 +14814 015023 +089017 +14817 015004 +089008 +027006 +089007 +069002 +028001 +092007 + +092004 +012001 +092003 +015006 +089017 +092007 +028001 +090006 +089010 +028001 +092004 +057001 +092007 +067009 +092004 +057021 +015006 +071001 +023005 +089017 +071003 +069002 +013004 +019004 +092004 +007002 +092004 +14854 089017 +092003 +013001 +077 +089007 +092006 +069002 +031005 +067009 +092004 +009001 +092004 +009001 +015006 +071001 +092004 +013001 +092004 +031009 +089017 +032004 +087005 +092006 +037005 +092004 +057001 +037001 +092004 +046 +092004 +092004 +057008 +092004 +092004 +005001 +067002 +067001 +025011 +092004 +087005 +092007 +092006 +061 +042002 +015006 +092004 +057001 +092004 +027002 +072001 +033006 +092003 +090006 +037001 +059003 +092004 +057001 +092004 +037005 +092004 +089023 +089010 +033006 +092004 +088015 +087005 +092007 +083003 +092004 +026 +092004 +067006 +092001 +092004 +057001 +089015 +068001 +019001 +092004 +087005 +092004 +089017 +023001 +14938 023001 +089020 +092004 +088037 +085001 +092004 +057001 +092004 +087005 +092007 +067002 +067009 +092006 +069002 +030003 +089017 +067002 +067009 +092006 +069002 +028001 +089015 +019002 038001 +092004 +089015 +092004 +063004 +092004 +083003 +092004 +088029 +085002 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +067002 +064 +092004 +037004 +092004 +012001 +060002 +009003 +092004 +018001 +092004 +006014 +092004 +015004 +089009 +015005 +092004 +010004 +14998 060002 +063004 +092004 +013001 +032005 +089017 +060002 +032004 +089007 +092004 +032005 +018001 +092004 +006014 +069002 +018001 +089020 +092004 +006019 +089023 +092004 +032004 +018001 +006019 +083003 +092004 +006016 +089020 +092004 +006014 +092004 +089015 +067006 +092004 +010004 +023005 +059003 +089015 +023005 +089015 +083003 +067009 +033006 +013004 +091003 +092004 +010004 +015004 +089009 +015005 +067002 +017001 +059003 +092004 +009003 +092007 +089015 +079004 +092004 +006014 +092004 +089015 +092004 +032005 +092004 +032004 +033006 +057008 +092002 +090003 +092004 +006019 +092003 +089007 +092004 +006014 +092002 +014008 +089023 +033004 +092004 +032004 +033006 +15083 069002 +069002 +059005 +092002 +089017 +092003 +015004 +089023 +084002 +092004 +057015 +089015 +057015 +092004 +089015 +015004 +092004 +057015 +015006 +092004 +010004 +089015 +092004 +077 +015008 +089020 +092004 +084002 +092004 +034010 +089015 +079024 +092004 +007003 +089015 +067002 +015006 +089017 +092004 +063005 +009003 +033006 +087003 +087003 +079024 +092002 +089023 +092004 +033004 +033006 +072001 +033006 +092003 +069002 +028001 +092003 +089008 +027006 +089007 +069002 +028001 +092004 + +069003 +092004 +067009 +089007 +064 +009002 +015004 +033029 +092004 +057001 +087005 +089015 +057008 +092004 +092004 +057001 +092004 +15164 089017 +15167 060002 +006011 +089017 +15171 060002 +089017 +15174 060002 +059003 +089005 +092004 +057001 +074 +089015 +015004 +067002 +015001 +092004 +092004 +060002 +006011 +057009 +057016 +090002 +092004 +089015 +057016 +058006 +060002 +064 +092004 +092004 +060002 +057016 +058006 +060002 +089023 +092004 +092004 +060002 +057009 +015004 +019006 +002005 +089015 +021003 +092004 +006011 +092004 +057001 +092004 +089015 +067002 +059002 +067005 +015006 +092004 +057001 +092004 +087005 +092007 +089015 +057020 +057020 +090013 +092004 +089015 +015005 +092004 +092004 +060002 +006011 +057009 +015024 +058006 +060002 +006011 +033006 +057001 +060002 +006011 +092001 +057008 +091003 +058006 +060002 +006011 +057016 +033006 +092004 +092004 +057001 +092004 +065003 +087005 +065003 +089017 +031009 +037001 +059001 +013001 +031009 +037001 +059001 +092003 +037005 +090013 +013002 +092004 +025011 +092004 +057001 +092003 +015005 +089017 +092004 +092004 +060002 +006011 +033006 +057001 +060002 +006011 +092001 +057008 +091003 +058006 +060002 +006011 +057016 +033006 +092004 +092004 +057001 +092004 +065003 +087005 +065003 +089017 +031009 +037001 +059001 +013001 +031009 +037001 +059001 +092003 +037005 +090013 +013002 +092004 +025011 +092004 +057001 +092003 +089015 +015005 +089017 +092004 +092004 +060002 +006011 +057009 +033006 +057001 +028001 +092003 +090006 +013001 +088017 +009002 +043 +083002 +069002 +043 +089017 +015013 +084001 +069002 +015014 +089017 +025022 +015004 +021003 +092004 +006011 +092003 +083003 +092004 +002005 +091003 +057001 +092004 +092003 +089015 +033004 +092004 +057001 +092004 +033006 +092004 +087005 +088015 +089017 +088032 +028001 +090006 +043 +083002 +069002 +043 +089017 +015013 +084001 +069002 +015014 +089008 +071005 +092003 +057017 +092004 +006011 +092001 +092004 +057017 +089015 +071003 +015006 +092001 +057009 +092004 +092001 +089018 +057017 +089008 +090014 +15404 092004 +092004 +006011 +089015 +057008 +092004 +057001 +092004 +060002 +006011 +089007 +092004 +057001 +059003 +057008 +089015 +059006 +089023 +092004 +069002 +057001 +15426 092006 +057001 +090014 +15430 092004 +089015 +092004 +065004 +087005 +015004 +013002 +092004 +001003 +092004 +001003 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +15452 015006 +092004 +009001 +092004 +009001 +013001 +092004 +014006 +092004 +089017 +059003 +092004 +012001 +089020 +092004 +067002 +017002 +083008 +006015 +014006 +092004 +089015 +015013 +083006 +092004 +059003 +092004 +011003 +089015 +063007 +092004 +089021 +092005 +064 +092004 +044 +063007 +092004 +004001 +089021 +092004 +004001 +089015 +089023 +085002 +092004 +004001 +15500 082002 +092004 +089023 +092004 +004001 +15506 082002 +067002 +033006 +092004 +037004 +092004 +15513 082002 +092004 +084002 +092004 +088009 +092004 +012001 +092001 +057009 +092004 +077 +092003 +067006 +042003 +001001 +037004 +089007 +023001 +089015 +057008 +092001 +023001 +023001 +089015 +023001 +092001 +011003 +013001 +089015 +015013 +092001 +049 +089015 +049 +092001 +023009 +089015 +034006 035004 +092001 +083003 +007002 +085001 +089015 +015006 +084002 +092001 +067002 +033004 +092004 +092004 +088002 +033006 +012001 +067002 +024001 +092003 +023001 +089015 +023001 +089024 +023001 +089015 +023001 +089017 +067002 +024001 +092003 +011003 +089015 +015013 +089024 +049 +089015 +049 +089017 +067002 +024001 +092003 +023009 +089024 +083003 +007002 +089015 +015006 +084002 +092003 +089015 +033014 +092004 +037004 +033006 +092004 +072001 +033006 +092003 +078005 +059002 +041001 +092004 +092007 +092004 +011002 +092001 +092004 +087004 +092001 +041001 +067002 +033006 +089017 +092004 +15625 082002 +033055 +015004 +089021 +092001 +013002 +092004 +002003 +092004 +067005 +092004 +077 +092004 +012001 +089017 +092004 +012001 +092004 +089007 +023001 +15646 069002 +057008 +092001 +023001 +023001 +15652 069002 +023001 +092001 +011003 +013001 +15658 069002 +015013 +092001 +049 +15663 069002 +049 +092001 +023009 +089017 +083003 +007002 +15671 069002 +034006 035004 +092001 +067002 +033004 +089017 +092004 +033006 +012001 +067002 +024001 +092003 +023001 +089024 +023001 +089024 +011003 +089024 +049 +089024 +023009 +089024 +083003 +007002 +15696 069002 +035004 +092003 +067002 +033014 +092004 +033006 +072001 +033006 +092003 +078005 +059002 +069002 +041001 +092004 +092007 +092004 +087004 +069003 +092001 +041001 +089015 +015004 +092007 +013002 +038001 +067005 +089023 +092004 +088002 +013002 +023007 +067005 +091001 +013004 +15732 068003 +092004 +093001 +059003 +092004 +033006 +092007 +033006 +092004 +036004 +092004 +028001 +090006 +067002 +060002 +067009 +092004 +051 +013004 +089015 +092004 +009001 +092004 +009001 +037007 +089009 +092004 +020004 +067002 +015013 +092004 +053009 +089017 +092004 +053009 +092004 +011002 +084002 +092004 +007002 +092004 +053009 +092004 +033009 +093001 +089015 +030004 +089009 +092004 +093001 +088021 +037006 +089015 +020004 +089023 +033006 +069002 +067007 +092004 +051 +089009 +069002 +039008 +013004 +083003 +092004 +011003 087004 +15800 092004 +093001 +085001 +083003 083005 +093002 +083003 +007002 +093001 +092004 +023009 +015005 +092004 +009003 +057001 +006016 +006021 +065001 +089015 +047001 +084002 +092004 +008002 +092004 +017006 +089023 +024001 +092004 +036004 +088024 +033006 +15832 092004 +065001 +092007 +089007 +074 +092007 +057015 +059002 +089015 +057008 +057006 +089023 +027001 +092004 +093001 +033006 +092004 +092004 +022001 +013004 +092004 +009003 +089007 +042002 +088001 +090011 +090013 +092001 +089007 +067005 +092004 +057006 +15865 089020 +092004 +089023 +092001 +069002 +067005 +15872 089007 +092007 +047001 +092004 +006021 +092007 +084002 +092004 +008001 +092001 +089009 +092004 +052 +092001 +042002 +072001 +033006 +092003 +071001 +083002 +033019 +092004 +033015 +092007 +083003 +063001 +092004 +001006 +033006 +089017 +092006 +042002 +092007 +089009 +029002 +092004 +067002 +092004 +092004 + +092004 +033009 +093001 +093001 +015004 +084002 +092004 +053009 +033006 +030004 +092004 +092001 +057012 +092001 +092003 +037007 +092004 +089015 +092004 +057012 +092004 +060002 +006011 +089015 +067006 +067002 +013001 +067001 +089009 +092004 +037007 +15944 092004 +060003 +092004 +005001 +015005 +092004 +036004 +092004 +093001 +033006 +025001 +083002 +077 +092003 +023001 +092004 +004001 +15962 092004 +033006 +015001 +084002 +092004 +001014 +084002 +092004 +092004 +089015 +033006 +092004 +092004 +033017 +033006 +092004 +067001 +092001 +067002 +013001 +089020 +092003 +090011 +092004 +051 +089020 +092004 +036004 +092001 +089015 +042002 +092004 +036004 +064 +033032 +092004 +092004 +093001 +089015 +077 +092004 +051 +089015 +067009 +013004 +017006 +089020 +092004 + +16012 089015 +023001 +092004 +033006 +072001 +033006 +092003 +090006 +060002 +063004 +092003 +037007 +092001 +089015 +025023 +078001 +068001 +033006 +092004 +060002 +059003 +069005 +092001 +013001 +012001 +089015 +092004 +033014 +033006 +092004 +047002 +089020 +092001 +092004 +008002 +084002 +092004 +006016 +092007 +092001 +037007 +091002 +092004 +009001 +092004 +009001 +023007 +064 +033005 +090006 +092004 +089023 +022001 +092004 +009002 +092007 +090001 +092006 +092004 +009001 +092004 +009001 +037007 +065005 +013001 +092004 +089010 +069002 +023003 +092004 +009002 +092007 +089015 +033004 +093001 +092004 +037007 +092004 +033006 +069005 +092001 +013001 +033017 +033006 +092004 +092003 +033006 +089015 +023001 +092004 +092004 +093001 +018001 +005001 +089015 +033037 +019004 +089015 +057008 +092004 +036004 +033006 +018001 +023001 +092007 +013001 +092004 +008001 +092001 +089015 +018001 +006016 +089015 +033036 +057008 +092004 +033006 +023001 +084001 +092004 +059003 +089007 +092007 +013001 +092004 +023007 +092001 +092004 +034005 +092004 +16143 059001 +014005 023007 +089009 +040002 +088038 +089017 +033006 +092003 +069002 +069002 +023001 +067006 +067002 +090003 +092007 +092004 +013002 +092004 +003003 +067006 +092004 + +092007 +16167 092004 +023001 +089020 +092003 +058011 +083003 +092004 +037004 +092004 +012001 +092001 +091001 +033007 +015004 +084002 +092004 +001007 +092004 +003002 093002 +067002 +033006 +092004 +092004 +093001 +059003 +092003 +031008 +089007 +092001 +067007 +092004 +067009 +092007 +089007 +033005 +020004 +092004 +044 +089015 +015014 +092004 +004001 +092004 +004001 +089023 +067002 +092004 +023007 +092001 +015015 +092003 +084002 +092004 +093002 +089023 +033004 +092004 +093001 +033006 +092004 +089010 +059003 +031008 +089007 +092003 +092001 +067001 +031008 +033006 +092004 +092004 +093001 +072001 +033006 +092003 +090006 +067007 +092007 +092004 +067009 +067002 +004002 +014009 +060005 +033022 +092001 +033006 +092004 +092004 +093001 +089011 +071005 +092001 +089020 +092003 +023007 +069002 +069002 +092003 +033022 +064 +089017 +059003 +092004 +036004 +033006 +067002 +015006 +089020 +092004 +092004 +093001 +084002 +001015 +033009 +093002 +089015 +033006 +092004 +036004 +017002 +083001 +067007 +16291 015004 +083001 +033013 +089015 +015023 +092004 +093001 +089017 +092004 +060002 +010002 +093001 +068001 +025023 +089017 +025021 +067002 +033006 +092004 +025023 +013001 +092004 +026 +092001 +078005 +023007 +085003 +083001 +089017 +023005 +089020 +092001 +089015 +015001 +081003 +017005 +16328 008002 +092004 +033013 +16332 033006 +012001 +092001 +089010 +071001 +013001 +013003 +16340 092001 +092004 +090014 +092007 +089023 +069002 +064 +092001 +025001 +089023 +064 +092003 +089015 +015006 +084002 +092004 +036004 +089015 +027002 +092004 +023005 +089015 +033006 +092004 +093001 +061 +069004 +074 +060002 +067009 +023005 +089020 +092001 +023005 +089017 +033013 +090006 +069002 +090013 +013002 +088038 +089023 +092004 +026 +025006 +089023 +092004 +026 +074 +067002 +067002 +060003 +015004 +033013 +033006 +012001 +092001 +089010 +069002 +074 +092007 +013003 +16404 092004 +024006 +013004 +092004 +030004 +092003 +089015 +015006 +067002 +027002 +092004 +023005 +089007 +16418 023005 +092004 +092004 +023005 +089015 +015004 +092004 +067002 +015004 +033013 +067002 +060003 +092004 +058005 +033006 +033006 +067002 +067002 +015006 +084002 +092004 +036004 +089015 +033006 +092004 +023005 +063005 067006 +089017 +023006 +091003 +067002 +092004 +067001 +16452 092004 +009001 +092004 +009001 +037001 +16458 037001 +088038 +017001 +015004 +091003 +015005 +092004 +037007 +092001 +091001 +067006 +092004 +033006 +091003 +093001 +060002 +092004 + +015006 +089017 +089020 +092004 +011001 +059002 +089020 +006007 +089017 +006007 +090003 +092004 +053009 +089017 +053009 +092004 +011002 +16494 092004 +037007 +092004 +090012 +092004 +033056 +033006 +071001 +092006 +034009 +092004 +013001 +037006 +092004 +089015 +067002 +015005 +092004 +093001 +033006 +033003 +033017 +089015 +034009 +092004 +089023 +092004 +093001 +033006 +092004 +034001 +089009 +092006 +085001 +067002 +015005 +037006 +092004 +037006 +16534 092004 +093001 +089017 +037006 +092004 +089015 +091003 +092004 +092004 +089020 +093001 +016 +092004 +008002 +015025 +092004 +006007 +092004 +089015 +019001 +092004 +087005 +092004 +053009 +085002 +092004 +092004 +008002 +067002 +033006 +092004 +092004 +093001 +085002 +092004 +006007 +092003 +084002 +092004 +080001 +092004 +089007 +059003 +092004 +018001 +006007 +090002 +006007 +023007 +089024 +031005 +090006 +069002 +074 +033012 +092004 +012001 +092001 +089015 +057008 +092001 +067005 +059001 +060002 +055003 +012001 +089008 +092004 +013004 +092004 +033005 +090006 +061 +071004 071005 +013004 +067007 +092007 +092004 +067001 +033006 +092004 +093001 +092004 +011001 +064 +090008 +039007 +015004 +089020 +006007 +089017 +006007 +037006 +092001 +089016 +067005 +083003 +092004 +007002 +017002 +033017 +089017 +069002 +037006 +092001 +089023 +092007 +063001 +013004 +089009 +013004 +092004 +033005 +092004 +053009 +067002 +092004 +036004 +059003 +015004 +092004 +015004 +16657 092004 +037006 +092004 +093001 +015023 +084002 +093001 +092004 +053009 +083002 +092004 +053009 +089017 +092004 +053009 +015013 +089015 +092004 +093001 +015017 +092004 +16679 083005 +084002 +092004 +007002 +092004 +053009 +089015 +015008 +083003 +017002 +089020 +092004 +035002 +027001 +092004 +089008 +089015 +092004 +053009 +089017 +092004 +011003 +063001 +013001 +033020 +090008 +092004 +093001 +089009 +092004 +020004 +16711 069002 +027002 +059001 +033020 +015005 +089023 +061 +015005 +060002 +033006 +092007 +033006 +074 +020003 +092004 +007002 +092004 +012001 +089015 +067007 +060002 +067009 +045 +089015 +017001 +092004 +053009 +033006 +092004 +092004 +033014 +092004 +092007 +092003 +033020 +089023 +092004 +093001 +033008 +089015 +092004 +053009 +033006 +092004 +033054 +092003 +090007 +092004 +012001 +092004 +023007 +090006 +092002 +033006 +090006 +092003 +013001 +092004 +053009 +092004 +012001 +092004 +012001 +033006 +092004 +092004 +093001 +092003 +033006 +089023 +033006 +092003 +067006 +067002 +024001 +092004 +009001 +092004 +009001 +017002 +087003 +082002 +092004 +012002 +089017 +015006 +083008 +092004 +001005 +092004 +001002 +067002 +092004 +053009 +019003 +092004 +006017 +092004 +033006 +033042 +092004 +067006 +057005 +033020 +16816 091003 +067002 +024002 +092004 +033042 +092004 +092003 +031005 +089015 +092004 +033014 +033006 +088038 +023007 +013001 +067002 +023002 +084002 +092004 +008002 +092004 +089017 +019001 +092004 +089017 +092004 +019001 +033006 +033053 +092002 +053009 +092004 +013001 +092004 +019001 +092003 +16853 092004 +093001 +017002 +083004 +083003 +092004 +007002 +089015 +015005 +092004 +092004 +087005 +033006 +089017 +092003 +085001 +089020 +093001 +092004 +093002 +089023 +092004 +033022 +083006 +059003 +033006 +069002 +032001 +092004 +033006 +089015 +015004 +084002 +092004 +007003 +024001 +092004 +058006 +089015 +033006 +092004 +083001 +092007 +085001 +089020 +093001 +092004 +093002 +089015 +067002 +033022 +089012 +033054 +090006 +069002 +028001 +092004 +009002 +089015 +067002 +067005 +015005 +092004 +085001 +033006 +092004 +093001 +070 +089017 +092003 +063004 +092004 +013001 +089007 +089017 +092004 +033006 +092003 +028004 +092003 +013001 +067002 +068001 +033055 +089017 +033054 +090006 +069002 +028001 +092004 +009002 +089015 +16946 004002 +014009 +089015 +029002 +092004 +093001 +092004 +033006 +093001 +033006 +090006 +067002 +004002 +014009 +060005 +033022 +092001 +089015 +015004 +084002 +025012 +025023 +16969 067009 +013004 +030004 +090011 +059003 +092004 +053009 +089017 +092004 +053009 +092004 +011002 +090008 +092004 +093001 +089009 +020004 +092004 +089015 +037008 +092004 +015023 +089015 +037007 +093001 +092004 +037004 +067002 +093001 +092004 +17000 092004 +027001 +090006 +056005 +025023 +015024 057012 +092004 +060002 +006011 +092004 +053009 +089017 +053009 +033006 +088038 +037007 +023007 +088038 +089023 +092004 +033006 +092004 +089004 +092002 +092003 +013004 +089015 +015026 +092004 +006011 +084002 +092004 +007002 +015004 +089015 +015004 +020004 +089023 +092004 +053009 +018001 +092004 +006011 +033006 +069002 +071004 +085002 +092004 +084002 +092004 +007003 +089007 +057012 +020004 +013001 +17056 030004 +090011 +057015 +057012 +092004 +092004 +001015 +092004 +006016 +089009 +052 +092004 +028003 +089008 +033009 +092004 +001015 +092007 +001015 +020004 +067006 +092004 +067010 +067002 +013004 +092004 +033006 +090001 +093001 +092004 +053009 +033006 +089015 +057009 +092004 +060002 +006011 +092004 +057012 +092004 +057012 +092006 +057012 +090001 +011003 +093001 +089015 +057012 +092004 +17106 092004 +001015 +092004 +006016 +064 +033032 +092001 +012001 +089015 +092004 +093001 +085002 +083006 +092004 +037004 +089015 +056004 +092004 +092004 +037004 +033006 +092003 +013001 +092004 +037004 +092004 +093001 +089015 +092004 +093001 +033006 +092003 +033006 +089015 +067007 +092004 +033048 +092004 +090001 +092004 +053009 +089017 +053009 +092004 +033004 +067002 +033006 +092004 +092004 +093001 +069004 +024002 +059001 +092003 +033020 +089015 +069002 +033014 +092004 +090006 +069003 +060002 +033002 +089008 +025020 +092004 +037004 +078001 +17175 089016 +051 +041002 +092004 +037004 +037010 +092004 +011001 +060002 +037008 +092006 +025001 +089017 +17189 067002 +037008 +028003 +033009 +093001 +089008 +015013 +092004 +033006 +092004 +092004 +093001 +025001 +092004 +037010 +092003 +093001 +089024 +093001 +092004 +033009 +053009 +089007 +028001 +090006 +089007 +088022 +037007 +092004 +089015 +017002 +092004 +083008 +092004 +007007 +015004 +084002 +092004 +092004 +010004 +092004 +033006 +092004 +092003 +089017 +092004 +088002 +092007 +089007 +059001 +090013 +067010 +089004 +033056 +090010 +092004 +089023 +092004 +053009 +089017 +092004 +053009 +033028 +092004 +011001 +090006 +033012 +092004 +093001 +089017 +092004 +093001 +020003 +089015 +033004 +092004 +037004 +033006 +092004 +025001 +092004 +063004 +092004 +060002 +037010 +092003 +089015 +092004 +033006 +092004 +093001 +033006 +092004 +092004 +093001 +089008 +092004 +042002 +093001 +092004 +033009 +053009 +033006 +059003 +020004 +089023 +092004 +033006 +091001 +092004 +088015 +090011 +089023 +092004 +078002 +033006 +033006 +020004 +089015 +092004 +093001 +024001 +090006 +092004 +068003 +089023 +089023 +039008 +013004 +057007 +002004 +047002 +092004 +008002 +17324 092004 +011001 +033006 +088038 +013001 +089021 +092004 +020004 +092007 +092003 +013004 +089015 +033004 +059003 +092004 +011001 +033006 +092004 +023007 +092004 +090004 +092002 +089017 +090004 +092004 +010002 +092002 +067002 +037010 +092004 +092004 +093001 +089023 +092004 +093001 +019001 +037007 +089009 +020004 +067002 +092004 +055004 +092004 +037004 +015023 +092004 +093001 +084002 +092004 +007002 +015013 +084002 +092004 +063001 +092004 +055003 +089015 +049 +092004 +006017 +079007 +085002 +092004 +089015 +049 +006018 +089025 +003003 +085002 +084002 +092004 +008002 +092004 +089017 +003005 +084002 +092004 +008002 082002 +092004 +089015 +017003 +083006 +092004 +033044 +092004 +033006 +033003 +037004 +092004 +093001 +089015 +023002 +090013 +092004 +018001 +092004 +003005 +089015 +019001 +083008 +092004 +008002 +092004 +089015 +17429 033044 +092004 +049 +092004 +092004 +006017 +089015 +049 +092004 +092004 +006017 +092004 +089015 +015023 +092004 +089009 +092004 +020004 +089015 +015004 +027002 +009002 +093002 +033009 +093001 +092007 +037002 +090006 +015024 +092004 +006006 +092004 +089015 +015006 +084002 +080001 +033009 +093002 +089019 +089019 +033009 +008002 +080001 +057008 +092004 +023001 +006019 +089022 +008003 +063003 +089015 +024004 +069002 +025001 +023001 +089015 +020004 +092004 +057008 +092004 +006017 +092004 +015026 +006023 +089015 +017002 +037009 +092004 +083001 +089017 +085002 +083009 +092004 +008002 +092004 +092004 +056003 +092004 +033005 +092007 +013001 +093001 +092004 +037004 +092004 +093001 +067002 +020004 +089020 +092004 +060002 +057021 +17523 082002 +089017 +17527 082002 +089017 +092004 +015003 +033042 +092004 +016 +092004 +008002 +092004 +089017 +033006 +092004 +020003 +092004 +007002 +089015 +067007 +060002 +067009 +045 +021005 +092003 +089010 +013001 +012001 +092004 +012001 +089017 +015011 +084001 +092004 +006006 +064 +092004 +053009 +033044 +089020 +092004 +053009 +089017 +053009 +033006 +058006 +021005 +092004 +021005 +069002 +074 +037004 +093001 +013001 +015011 +067002 +084001 +092004 +006006 +089015 +031009 +17587 092004 +031009 +090006 +092004 +012001 +021005 +067002 +089010 +025010 +092004 +089007 +033006 +090006 +012001 +012001 +013001 +089017 +092004 +058005 +089017 +092004 +057021 +092004 +020004 +089020 +092004 +033042 +092004 +17616 067006 +060003 +067009 +014007 +013004 +090013 +059003 +092004 +001011 +067006 +067009 +060003 +089015 +067002 +092004 +060003 +067009 +033006 +092004 +093001 +033006 +078001 +033006 +012001 +012001 +089007 +035008 +089019 +089019 +012001 +092001 +012001 +092001 +17651 092001 +035008 +089015 +092004 +092004 +083001 +017001 +024002 +033006 +090006 +093001 +033029 +092007 +089015 +067002 +092004 +063004 +092004 +015030 +089015 +018001 +006016 +089017 +059004 +006019 +089017 +085002 +003005 +023001 +092004 +089023 +092004 +063005 +17685 068004 +024001 +090006 +015006 +093001 +021005 +092004 +089015 +092004 +093001 +067002 +033006 +033006 +078001 +023007 +092004 +023007 +089015 +091003 +092004 +006017 +092004 +007002 +063006 +084001 +084001 +084002 +084002 +089008 +060002 +089017 +092004 +001006 +016 +089017 +092004 +002005 +063006 +089017 +092004 +007007 +079024 +089015 +059001 +008001 +092004 +023007 +011002 +023007 +089015 +015004 +084001 +092004 +007007 +067002 +092004 +023007 +092004 +015008 +084002 +092004 +053006 +001014 +089015 +024001 +059001 +089015 +092004 +055004 +089017 +092004 +089020 +092004 +037009 +092004 +093001 +090013 +092004 +014010 +089017 +092004 +17767 025022 +078001 +033006 +070 +012001 +012001 +013001 +092007 +089017 +085001 +083001 +009003 +059001 +17781 083005 +024001 +092004 +015020 +092004 +093001 +084001 +092004 +093002 +035004 046 +092004 +089020 +092006 +013001 +093001 +092004 +093001 +089017 +093001 +092004 +092004 +093001 +089017 +093001 +010002 +089017 +092004 +010002 +092004 +010002 +093001 +17813 067009 +013004 +015006 +009002 +057003 +084001 +093002 +033009 092004 +093001 +092006 +089017 +092004 +036004 +092004 +093001 +092007 +015005 +092004 +093001 +033012 +092004 +008001 +092004 +093001 +067002 +092004 +093001 +033032 +057012 +089015 +018001 +092004 +008001 +092004 +093001 +079026 +092004 +090002 +006017 +079010 +089015 +085002 +092004 +084002 +092004 +067005 +092004 +007007 +092006 +019002 +083003 +092004 +002005 +089015 +015035 + +079028 +092004 +007003 +092004 +007007 +015004 +089017 +083001 +093001 +092004 +093001 +089017 +092004 +058006 +093001 +085001 +017002 +083007 +092004 +007007 +089015 +092004 +067010 +17893 013001 +067002 +092004 +067010 +015013 +092004 +053009 +089017 +092004 +011002 +084002 +093001 +033006 +087003 +029002 +090006 +092007 +092004 +031002 +033006 +067006 +023007 +067002 +060002 +067009 +023007 +089008 +033032 +021003 +092004 +007007 +067006 +092004 +060003 +067009 +17930 015006 +092004 +036004 +057021 +092004 +089015 +033006 +092004 +011001 +023007 +084001 +092004 +023007 +089015 +013004 +092004 +061 +031002 +065003 +092004 +067002 +033006 +092004 +092004 +093001 +057001 +055003 +015004 +021003 +064 +028001 +089015 +092004 +015004 +021003 +092004 +007007 +006010 +092004 + +089013 +092004 +055003 +17974 067002 +067009 +092004 +014006 +067008 +17980 067009 +015006 +093001 +092004 +093001 +089017 +092004 +058006 +093001 +024001 +092004 +007007 +089015 +091003 +014010 +078001 +013004 +089007 +012001 +012001 +015011 +089003 +001002 +089015 +015005 +015035 +092004 + +089015 +017002 +083009 +092004 +18013 013001 +092004 +058002 +092004 +064 +014004 +089017 +092004 +006017 +092004 +079007 +064 +002004 +089015 +089007 +092004 +025022 +092004 +016 +092004 +037009 +089017 +013001 +064 +023007 +089015 +033004 +092004 +012001 +033006 +092004 +009003 +069002 +025022 +092003 +089007 +028001 +090006 +093001 +092004 +020004 +027004 +069002 +085001 +083001 +089007 +023007 +064 +033006 +084002 +024001 +092004 +080001 +083002 +017007 +089015 +067005 +015004 +033006 +092004 +036004 +092004 +090006 +023007 +084001 +092004 +023007 +089017 +091003 +015015 +092003 +084002 +092004 +093002 +083001 +092004 +024001 +091003 +033006 +092003 +089015 +015004 +067005 +084001 +092004 +007007 +089013 +025022 +089017 +025011 +078001 +015030 +033015 +092004 +036004 +092004 +089015 +091003 +093001 +015005 +092004 +033006 +033003 +089015 +092004 +015005 +018001 +092004 +092004 +008002 +089015 +053007 +092004 +067002 +033006 +092004 +092004 +093001 +069002 +025022 +015004 +033015 +092004 +011002 +092001 +090006 +015004 +084002 +092004 +093002 + +092001 +024001 +18147 015004 +092004 +091003 +092004 +092004 +055003 +015006 +084002 +092004 +001014 +033015 +092004 +053009 +059003 +092004 +013004 +089015 +015013 +090013 +092004 +053009 +089015 +030004 +090011 +006011 +059002 +057012 +092004 +055004 +033006 +033006 +090006 +092004 +036004 +092004 +067009 +015006 +057021 +092004 +092002 +023005 +089015 +089010 +033015 +092007 +090013 +092004 +037004 +092002 +033028 +089017 +092003 +025021 +013001 +089015 +092004 +057009 +006011 +042002 +064 +033017 +089015 +033015 +092004 +033006 +092007 +083003 +093001 +067006 +092004 +067010 +067008 +18220 092004 +060002 +036004 +015002 +084002 +092004 +093002 +084002 +092004 +001007 +083002 +033032 +092004 +092004 +093001 +089015 +024001 +092004 +053007 +089023 +092004 +031006 +089015 +015005 +092004 +093001 +033006 +092004 +033006 +037005 +092001 +059003 +037003 +083003 +001002 +089017 +083008 +092004 +001006 +089008 +015001 +036004 +059003 +092004 +011003 +053005 +092004 +090006 +092004 +033009 +092004 +012001 +089017 +092004 +012001 +089017 +092004 +088003 +012001 +033017 +092004 +036003 +059003 +059002 +033032 +092003 +089017 +091003 +092001 +089020 +092003 +085001 +059003 +092004 +067008 +067006 +092004 +067003 +092004 +067008 +068001 +092004 +033015 +093001 +093001 +012001 +012001 +064 +033005 +090001 +092004 +093001 +092004 +053009 +091003 +015004 +092004 +033015 +092001 +083006 +083006 +092003 +092006 +077 +092004 +001016 +092003 +033006 +033006 +083003 +092004 +001013 +077 +092004 +001016 +012001 +079017 +013001 +092004 +001016 +092004 +085001 +093001 +092004 +053005 +083003 +092004 +001013 +033019 +053005 +041005 +089009 +040002 +088038 +089015 +015004 +084002 +092004 +059003 +092004 +093002 +011003 +089017 +092004 +093002 +059003 +089015 +053005 +090001 +092004 +083003 +092004 +093002 +001010 +033022 +092004 +088038 +092004 +089017 +013001 +092004 +093001 +049 +008002 +004001 +089017 +006017 +006017 +083004 +092004 +008002 +092004 +089017 +023001 +004003 +089017 +005001 + +089017 +033019 +033006 +015006 +092004 +087003 +092001 +18406 092001 +092006 +069002 +013001 +075 +017008 +018002 +092004 +006004 +092004 +006017 +092004 +092001 +053005 +092003 +002004 +089023 +092004 +053006 +092003 +012001 +088003 +091001 +091001 +067007 +092007 +092004 +067008 +015006 +093001 +084001 +093002 +092004 +093002 +089015 +053005 +083003 +092004 +093002 +090001 +093001 +089015 +067002 +015010 +084001 +092004 +002004 +024001 +019003 +092004 +001002 +089017 +092004 +012001 +064 +004002 +015011 +084002 +092004 +089015 +033006 +013004 +084001 +092004 +001002 +092003 +013001 +092004 +012001 +092001 +092004 +058007 +089004 +092003 +025008 +091001 +067002 +092004 +012001 +092004 +015023 +084002 +092004 +001013 +089015 +085001 +083003 +092004 +001013 +067005 +067005 +088038 +090001 +092004 +012001 093001 +089017 +085001 +083003 +092004 +004001 +089015 089017 +092004 +012001 +035004 +092004 +18512 067002 +092004 +037007 +092004 +093001 +015001 +092004 +093001 +084002 +092004 +093002 +033019 +092004 +033015 +092004 +012001 +089017 +033006 +090006 +059003 +092004 +067001 +089017 +067002 +092004 +037004 +092004 +012001 +041005 +089017 +031009 +090006 +092004 +033015 +091001 +015003 +083005 +092004 +001010 +092004 +093002 +024001 +093001 +089017 +093001 +092004 +010003 +093001 +044 +084002 +092004 +001010 +089007 +013001 +044 +089015 +033006 +092004 +092004 +093001 +084002 +036004 +092001 +089015 +013001 +092003 +013002 +044 +009001 +089015 +067002 +085002 +092004 +006003 +036004 +092004 +089015 +015001 +059002 +024001 +093001 +092004 +092004 +093001 +089017 +093001 +092004 +010003 +092004 +089017 +092004 +083003 +092004 +006008 +075 +092004 +006003 +089015 +067002 +033029 +092004 +089015 +015004 +092004 +010002 +092004 +093001 +083003 +092004 +006008 +089020 +092004 +057013 +015004 +036004 +092004 +089015 +015008 +084002 +093002 +089015 +067002 +092004 +067009 +015008 +084002 +092004 +007002 +033017 +089015 +025020 +089007 +092004 +033017 +092004 +089007 +18649 033017 +092004 +064 +037003 +18654 089017 +069002 +064 +092004 +053009 +089015 +067002 +085001 +083003 +092004 +007002 +092004 +009002 +18668 012001 +053004 +089015 +033006 +033006 +18674 092002 +18677 093001 +093002 +015006 +020003 +092002 +028001 +092003 +092004 +013001 +092004 +088003 +092004 +012001 +089015 +033046 +092004 +092004 +093001 +014009 +089015 +015004 +084001 +092004 +089015 +092004 +012001 +092004 +053004 +023009 +092004 +089017 +033006 +033006 +078001 +015004 +084001 +092004 +089015 +025020 +059003 +089008 +033011 +18720 033006 +092004 +013001 +092007 +033017 +028003 +089004 +037003 +18729 092004 +012001 +092004 +053004 +033032 +089017 +036003 +092004 +089015 +015004 +092004 +033015 +092004 +067002 +083002 +084002 +063001 +092004 +001011 +092004 +093002 +091001 +067002 +084001 +092004 +007002 +015004 +015006 +084002 +092004 +007002 +093001 +089017 +093001 +089020 +093001 +089017 +093001 +089015 +092004 +010004 +093001 +017007 +023009 +089015 +067002 +033006 +092004 +090006 +092004 +089015 +015005 +017001 +092004 +018001 +092004 +008002 +089015 +015004 +092004 +092004 +023009 +089015 +046 +092004 +089015 +067009 +013004 +18799 092004 +001004 +015023 +084002 +092004 +059003 +092004 +023009 +023009 +089017 +092004 +012001 +089017 +18813 015013 +063001 +092004 +011003 +083005 +092004 +007003 +089015 +023008 +059001 +023009 +023009 +058006 +023009 +089017 +012001 +059001 +053011 +089017 +069002 +013004 +033006 +092004 +012001 +089007 +028001 +092004 +089015 +067009 +067009 +078001 +015004 +015004 +089015 +015004 +084002 +001013 +080001 + +033013 +089015 +027004 +092004 +093001 +089017 +092004 +089020 +092004 +089015 +027002 +092004 +089015 +033006 +092004 +090006 +059003 +027004 +092003 +089015 +033006 +092004 +015004 +083001 +084002 +092004 +083005 +001014 +089009 +089017 +083001 +033019 +089007 +089009 +092007 +015004 +089015 +015001 +033019 +083003 +092004 +007002 +092004 +083003 +063001 +092004 +093002 +089017 +092004 +012001 +053011 +089015 +015006 +084002 +092004 +023009 +033012 +092004 +089017 +017003 +033006 +092004 +090006 +089010 +025001 +074 +092001 +023008 +089015 +025003 +016 +092004 +008002 +092004 +024005 +089017 +033006 +092004 +025001 +023008 +089015 +067002 +013003 +084001 +092004 +092004 +023009 +089017 +023008 +089015 +033031 +092004 +067002 +015004 +092004 +089015 +033006 +092004 +030002 +092004 +092004 +033006 +089023 +015004 +092003 +028003 +092004 +053009 +089015 +057008 +089004 +092004 +053003 +092003 +092006 +033032 +093001 +089009 +033020 +092004 +089023 +092004 +015004 +068001 +033015 +078001 +089017 +033015 +092004 +033006 +089008 +067006 +092004 +074 +028004 +084002 +001014 +015008 +089023 +083004 +083005 +001013 +080001 +085001 +089017 +015006 +084002 +092004 +084001 +091001 +015008 +067002 +084002 +093002 +067002 +067002 067008 +033015 +090006 +083003 +007002 +085001 +089015 +015013 +059001 +089008 +067006 +080001 +069003 +092004 +083005 +092004 +007003 +089015 +033006 +092004 +092004 +033019 +089015 +015006 +015024 +084002 +092004 +023009 +015024 +090001 +060002 +089015 +069002 +074 +015023 +092004 +090010 +092004 +011001 +045 +092004 +007003 +083002 +085001 +089015 +019004 +015011 +092004 +006015 +083002 +092004 +023009 +017007 +089015 +092004 +093001 +024001 +092004 +031009 +092004 +033006 +092004 +023009 +009005 +040002 +092003 +092004 +088038 +089015 +085001 +092004 +092004 +053009 +083001 +017002 +089017 +030001 +083003 +092004 +026 +092004 +092004 +092007 +061 +033006 +033042 +092004 +074 +040002 +088038 +089023 +19099 060002 +092004 +012001 +089015 +067002 +092004 +093001 +032002 +092004 +026 +092004 +090006 +061 +030001 +083003 +092004 +033006 +092004 +092004 +092007 +030001 +083003 +092004 +026 +092003 +092004 +013001 +022006 +033006 +092004 +023009 +040002 +092003 +092004 +088038 +089024 +033006 +017001 +089015 +015024 +092004 +006015 +092003 +089015 +015029 +089023 +089009 +028001 +090006 +037003 +19150 092004 +009001 +092004 +009001 +040002 +088038 +083008 +092004 +001006 +033006 +092004 +023009 +092003 +033006 +017001 +015024 +092004 +006015 +092003 +089015 +015001 +084002 +092004 +007002 +092003 +089015 +017001 +089015 +067002 +015024 +092004 +006015 +015004 +083006 +059003 +089008 +025020 +059003 +089017 +033037 +092004 +012001 +033006 +090006 +061 +067001 +024001 +089015 +015004 +067002 +083005 +092004 +001010 +089015 +059003 +092004 +011001 +015006 +084002 +092004 +089015 +033017 +092004 +091001 +015001 +024001 +093001 +092004 +092004 +093001 +017002 +083005 +092004 +057014 +089015 +033006 +092004 +015020 +092001 +089015 +015004 +015020 +092004 +089015 +013004 +017006 +092004 +083003 +092004 +007002 +092004 +19242 059001 +057014 +089017 +088038 +034001 +092004 +093001 +089017 +092004 +036004 +092004 +089007 +013001 +059001 +089017 +015020 +092004 +089015 +092004 +053009 +092004 +011002 +024001 +090006 +023001 +089020 +092004 +088038 +089017 +057014 +033006 +092004 +036004 +092004 +19277 089020 +092004 +057014 +089017 +088038 +023001 +089015 +033015 +092004 +093001 +033006 +092004 +069002 +057005 +023008 +19293 092004 +023008 +089023 +092004 +023009 +023009 +069002 +015006 +033029 +088002 +089023 +088038 +091001 +013001 +053008 +092004 +036004 +093001 +089017 +092004 +011002 +089015 +015006 +089015 +033006 +092004 +19321 092004 +036004 +093001 +089017 +092004 +036004 +092004 +011002 +053008 +089023 +092004 +092003 +036004 +069002 +053008 +089015 +033006 +092004 +092004 +093001 +069002 +074 +092004 +011001 +092004 +007003 +067007 +19349 092004 +010004 +089020 +092004 +085001 +053008 +067007 +067005 +090013 +092004 +010004 +089020 +092004 +069002 +074 +053008 +089023 +013004 +067008 +19369 015023 +089021 +092004 +092004 +010004 +089015 +067002 +053008 +067007 +092007 +092004 +067008 +092004 +006017 +006017 +048 +048 +084002 +006017 +058011 +19392 020003 +092004 +059004 +092004 +058011 +089021 +092004 +092004 +058011 +089015 +065003 +019003 +013002 +089017 +092004 +047001 +006019 +067005 +084002 +006016 +058011 067005 +19416 019003 +092004 +006019 +092004 +006016 +089015 +092004 +006019 +020003 +089017 +092004 +006016 +089023 +006019 +067005 +084002 +006016 +058011 067005 +091001 +091001 +092004 +067002 +092004 +067009 +015003 +084003 +092004 +043 +089015 +092004 +036004 +092004 +068001 +015002 +090011 +018001 +092004 +003004 +089015 +092004 +011002 +033006 +092004 +091003 +092004 +042002 +092004 +067009 +092006 +069002 +071004 +089015 +033006 +092004 +067001 +033005 +092004 +042002 +093001 +19476 057005 +19478 089017 +023001 +092004 +089017 +092004 +089020 +092004 +092004 +015008 +084002 +092004 +007002 +092004 +012001 +067002 +093001 +053009 +089015 +092004 +053002 +092004 +053002 +023001 +092006 +023001 +069002 +071004 +089023 +19507 092004 +053009 +089017 +057008 +089017 +092004 +089020 +092004 +085001 +089017 +033006 +092004 +092004 +067009 +090009 +092004 +009001 +013003 +089017 +069002 +092004 +009001 +089007 +092004 +067009 +089008 +013001 +092004 +009001 +092004 +009001 +037004 +19540 092004 +067009 +091001 +015008 +067002 +084002 +007002 +089017 +085001 +083001 +009002 +023009 +090013 +092004 +008002 +089015 +024001 +092004 +090006 +092004 +067009 +023008 +092004 +089009 +033048 +092004 +089015 +033006 +092004 +009002 +092004 +092004 +023009 +008002 +090013 +017001 +084002 +092004 +083003 +089015 +033006 +092004 +071004 +092004 +067009 +088001 +090011 +089024 +020002 088015 +023007 +021005 +089024 +020004 +089023 +092004 +033008 +089015 +024001 +092004 +089013 +088024 +025023 +089007 +092004 +027005 +092004 +026 +092004 +033006 +092004 +009002 +016 +092004 +008002 +089015 +016 +089015 +013002 +092004 +008002 +092004 +089015 +015004 +092004 +011002 +067002 +089020 +092004 +011003 +030004 +090012 +090008 +092004 +089009 +092004 +020003 +089015 +092004 +093001 +089020 +092004 +036004 +092004 +015004 +084002 +092004 +001010 +089015 +059002 +011001 +084001 +092004 +093002 +015020 +089017 +084001 +092004 +093002 +089017 +084001 +093002 +089017 +084001 +092004 +093002 +089017 +083007 +092004 +093002 +089017 +083004 +093002 +089017 +093002 +011001 +059002 +033015 +059001 +19679 015006 +084002 +092004 +089015 +033006 +092004 +036004 +092004 +090006 +006008 +035002 +092004 +090010 +092004 +011001 +089009 +069002 +019005 +092004 +089007 +059001 +023008 +089008 +019005 +092004 +089009 +092004 +024005 +059001 +090013 +023009 +089017 +092004 +012001 +092004 +053004 +067002 +092004 +024001 +017005 +092004 +089017 +033006 +19723 090006 +092003 +013001 +092004 +012001 +092004 +012001 +089015 +078001 +033032 +092004 +090006 +069002 +092004 +028003 +013001 +089015 +015010 +084002 +092004 +001007 +089015 +033029 +092006 +025001 +092004 +089015 +015004 +084002 +092004 +089015 +037005 +060002 +089009 +085001 +089020 +092004 +089017 +089009 +015004 +092004 +033019 +089017 +19767 037003 076 +053011 +092004 +012001 +089017 +037005 +092004 + +089017 +033009 +033009 +092004 +093001 +093001 +089017 +093001 +092004 +092004 +093001 +089017 +093001 +092004 +010003 +092004 +093001 +089017 +033009 +092004 +19796 093001 +089019 +089019 +009001 +014004 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +092004 +092004 +093001 +089017 +093001 +089017 +093001 +092004 +011003 +089017 +093001 +093001 +092006 +089017 +037007 +092004 +091001 +015006 +084002 +007002 +089015 +015013 +067002 +092004 +011001 +089008 +069002 +074 +092004 +069003 +005001 +023001 +089015 +033015 +092004 +010001 +092004 +015004 +037001 +092004 +089007 +033006 +090006 +030001 +089015 +092004 +053009 +092004 +084001 +093002 +015011 +033006 +090006 +093001 +19868 089017 +090006 +090001 +092004 +037004 +092004 +012001 +053011 +092004 +012001 +089015 +033029 +092004 +089012 +033003 +033006 +092004 +092004 +074 +012001 093001 +012001 093001 +053011 +089017 +089010 +001012 +090008 +092004 +063006 +069002 +074 +013003 +092004 +001012 +092007 +089017 +089010 +010001 +090008 +092004 +063006 +069002 +074 +092004 +010001 +092007 +19914 089017 +089010 +092004 +012001 093001 +039007 +090008 +092004 +089017 +063006 +069002 +074 +013003 +089023 +067003 +090013 +089023 +069002 +074 +092004 +084002 +092004 +007002 +092004 +079013 +015008 +092004 +057001 +092004 +057021 +19945 067002 +092004 +079013 +037008 +089015 +067002 +092004 +007002 +092004 +057021 +072001 +033006 +092003 +090006 +040002 +092004 +009001 +092004 +009001 +059003 +092004 +088038 +089017 +092004 +033042 +071001 +059002 +033042 +089023 +071001 +092006 +033042 +090013 +092004 +012001 +092004 +088003 +069002 +090013 +040002 +067005 +092004 +067005 +089023 +088038 +013001 +067005 +088038 +089007 +033006 +012001 +053004 +19998 089015 +20000 092004 +010002 +092004 +089017 +092004 +010003 +092004 +089015 +083004 +017001 +015004 +084002 +092004 +033029 +092004 +089017 +017002 +083004 +092004 +011001 +089017 +033006 +092004 +091003 +092004 +010002 +092003 +089017 +092004 +010003 +092003 +089017 +092004 +010003 +092003 +083004 +033012 +092003 +089015 +033004 +092004 +033006 +092004 +013001 +092004 +010002 +092001 +089017 +092004 +010003 +089015 +024001 +092004 +083004 +092004 +083004 +017002 +033006 +091003 +092004 +010002 +092001 +089017 +092004 +010003 +092001 +071001 +092006 +042002 +092004 +030004 +092004 +012001 +092007 +010003 +092001 +089017 +010003 +089017 +010002 +013001 +089015 +067002 +068001 +033017 +083005 +092004 +001010 +089015 +015013 +084002 +092004 +011001 +059002 +089008 +092004 +084002 +006008 +015008 +017002 +083008 +092004 +001010 +089017 +059003 +092004 +011001 +083005 +092004 +001010 +083008 +092004 +001009 +085001 +089017 +033017 +092004 +089012 +033003 +059001 +089017 +033006 +092004 +067007 +092004 +033017 +092004 +024002 +091003 +015004 +092004 +043 +043 +089015 +013004 +067007 +092004 +043 +20140 015012 +083005 +092004 +001016 +089015 +015006 +092004 +004002 +089015 +023001 +092004 +089017 +058006 +015012 +084002 +092004 +002005 +083002 +069002 +057001 +002005 +059002 +089015 +067002 +023011 +089007 +092004 +069002 +057001 +081002 +002005 +089015 +20173 015010 +092004 +001004 +014008 +089015 +089007 +092004 +069002 +057001 +003005 +079015 +089017 +058006 +015012 +083003 +092004 +003003 +089015 +023011 +092004 +003003 +089015 +023007 +092004 +089015 +003004 023012 +069002 +023012 +089017 +058006 +015012 +084002 +092004 +002005 +092004 +065003 +089015 +023012 +003004 023012 +023011 +089015 +023011 +089015 +023012 +20218 060002 +089017 +20221 060002 +089017 +20224 060002 +089015 +033006 +092006 +024002 +008002 +032001 +031007 +089015 +20234 085001 +058007 +058007 +033014 +092004 +092004 +083004 +092004 +089020 +092004 + +092004 +033003 +089015 +033006 +092004 +092003 +20252 092004 +028005 +092004 +037004 +092004 +012001 +089023 +092007 +092004 +011001 +089012 +033003 +092004 +059003 +013004 +089008 089009 090006 +024001 +024001 +20271 069002 +024001 +089017 +024002 +024002 +20277 069002 +032001 +20281 041005 +089015 +040002 +092004 +089015 +033006 +092004 +069004 +032001 +092004 +033003 +092007 +089017 +092004 +059003 +092004 +033003 +032002 +092004 +043 +092004 +033019 +043 +089017 +092007 +013001 +092004 +083005 +092004 +001016 +083002 +043 +092004 +033019 +089015 +20317 024002 +067002 +015006 +092004 +012001 093001 +089015 +020003 +092004 +033019 +092004 +043 +084002 +092004 +089017 +013001 +20333 092004 +084002 +092004 +002005 +043 +092007 +092006 +20341 024002 +092004 +033019 +067002 +089013 +025011 +031007 +092004 +089017 +069002 +057001 +003005 +083003 +092004 +089023 +067005 +013001 +067002 +013004 +022001 +089024 +039009 +089007 +092004 +033019 +067002 +031008 +089017 +058006 +013001 +092004 +083003 +092004 +003003 +043 +092007 +013001 +092004 +092004 +033019 +024002 +20383 092004 +025021 +092004 +041003 +089017 +092004 +031002 +092004 +057003 +089017 +092004 +090006 +092004 +063005 +025002 +015008 +022003 +092004 +033019 +089015 +065004 +013002 +089017 +013001 +092004 +084002 +092004 +002005 +092004 +065003 +043 +092007 +092004 +024002 +092004 +033019 +089015 +031007 +089015 +023012 +20424 060002 +089017 +20427 060002 +089017 +20430 060002 +089015 +033006 +092004 +20435 069005 +015001 +092004 +006014 +089009 +083009 +092004 +006016 +085002 +089024 +083009 +092004 +006015 +069004 +089009 +083008 +092004 +006014 +085002 +089007 +069002 +013001 +20458 028005 +20461 089009 +028003 +069003 +013002 +028005 +089023 +089009 +013002 +089009 +028003 +089010 +092004 +024002 +008002 +032001 +031007 +089017 +033006 +092004 +027006 +092004 +031007 +090002 +092006 +081001 +057008 +057008 +092003 +089017 +059008 +092003 +089007 +092006 +057001 +057008 +092004 +089017 +092006 +069002 +057001 +20502 092006 +057001 +090014 +20506 092004 +089015 +033006 +061 +013001 +092004 +037004 +092004 +012001 +064 +009002 +015026 +092004 +003004 +084002 +092004 +002005 +089015 +023005 +089015 +023005 +067009 +089017 +067009 +089017 +092004 +003004 +023011 +089015 +023011 +089014 +069002 +032001 +092004 +089007 +092004 +002005 +023012 +060003 +003005 +067002 +003004 +067002 +059003 +20551 083003 +092004 +003004 +089015 +20556 013004 +092004 +023012 +067002 +043 +092004 +006002 043 +089007 +067002 +092004 +043 +089015 +033006 +092004 +064 +092004 +037004 +092004 +012001 +089024 +089012 +092004 +033003 +092004 +033010 +064 +003004 +003003 +092006 +067002 +043 +084002 +092004 +002005 +079028 +013001 +059003 +092004 +003004 +092004 +084002 +092004 +001006 +089015 +20601 043 +023011 +089015 +013002 +087003 +059003 +092004 +003003 +089017 +042003 +003005 +079028 +089008 +074 +083009 +092004 +014007 +092004 +006016 +092004 +004002 +092004 +004002 +089017 +092007 +033003 +059001 +033006 +092004 +092004 +033019 +078005 +074 +032001 +089017 +089021 +033003 +069002 +033006 +092004 +089023 +028004 +028004 +092004 +057001 +036004 +033010 +063001 +091001 +033006 +092004 +067002 +092007 +092004 +067009 +067009 +013002 +015003 +084002 +092004 +083007 +20663 015004 +092004 +011001 +015023 +092004 +064 +013001 +083003 +092004 +006008 +089017 +058006 +006008 +085001 +089020 +092004 +089015 +013004 +014002 +078001 +014002 +089015 +092004 +014005 +014005 +084002 +092004 +006008 +089008 +067002 +059004 +092004 +006008 +089017 +092004 +085001 +083003 +092004 +006008 +083008 +092004 +006015 +023005 +089015 +023005 +092004 +089015 +033006 +092004 +033017 +069004 +025021 +092003 +090006 +023007 +089015 +023005 +033032 +092004 +014002 +089017 +033006 +092004 +001010 +014005 +014009 +20730 068004 +092004 +014002 +20734 013002 +014005 +078001 +089015 +033006 +092004 +092004 +025022 +013001 +20747 031009 +089015 +025022 +025022 +078001 +089017 +033006 +090013 +092005 +071001 +092004 +092007 +013001 +089007 090006 +20762 092004 +014002 +089017 +092004 +001010 +036003 +092004 +091001 +015006 +084002 +092004 +083007 +092004 +001010 +084002 +092004 +001011 +092004 +093002 +089015 +015004 +092004 +084001 +092004 +006008 +067002 +015005 +092004 +084001 +092004 +007007 +009002 +20795 012001 +053004 +092006 +092004 +085005 +013001 +083003 +092004 +007007 +089017 +069003 +006004 +067006 +092004 +074 +092004 +037008 +089007 +092004 +092004 +067001 +006004 +089017 +006004 +037008 +089017 +019003 +090001 +092004 +092004 +006004 +089017 +092004 +006004 +019004 +089017 +092004 +074 +092004 +037001 +089017 +067005 +067005 +067005 +089017 +067005 +083003 +092004 +007007 +089017 +083008 +092004 +001007 +085001 +033006 +089017 +019002 +092004 +002005 +089015 +024001 +092004 +093001 +20859 083005 +015030 +089015 +017005 +20864 089017 +033006 +033006 +078001 +033006 +20870 092001 +20873 093001 +012001 +092004 +012001 +092004 +012001 +033054 +092003 +092004 +012001 +069002 +092001 +038001 +089007 +033006 +092004 +092004 +012001 +092004 +053004 +015004 +084001 +092004 +009002 +089015 +033014 +092004 +092004 +033009 +092003 +089015 +033006 +092004 +093001 +033009 +092001 +089007 +059001 +013001 +089015 +033012 +092004 +067001 078001 +090006 +069002 +092004 +015004 +084002 +092004 +001011 +20924 085001 +083001 +083005 +092004 +001007 +004001 +004001 +079028 +023001 +20934 033012 +092004 +033006 +015004 +092002 +084002 +092004 +004001 +089009 +084002 +092004 +015008 +089015 +013004 +092004 +089015 +015004 +092004 +012001 +092004 +053004 +015008 +084002 +092004 +004001 +089015 +015027 +092004 +004001 +084002 +092004 +001007 +084002 +092004 +001010 +078003 +060002 +089015 +023007 +083003 +092004 +001010 +089015 +092004 +044 +092004 +015004 +089015 +033015 +090013 +092004 +011003 +089017 +090013 +092004 +001013 001014 +089015 +015006 +027001 +092004 +013001 +092004 +013004 +089015 +015006 +084002 +092004 +093001 +089015 +024001 +092004 +012001 +092004 +21008 092004 +093001 +017002 +049 +089017 +030001 +089015 +025022 +089015 +033015 +092004 +092004 +024001 +092004 +013004 +092004 +012001 +089017 +090006 +092004 +004001 +089015 +068001 +033012 +092004 +015004 +084001 +092004 +001011 +092004 +089015 +015008 +092004 +084002 +092004 +006008 +033012 +092004 +092004 +012001 +090006 +089020 +092004 +085001 +089015 +069002 +013004 +092004 +089023 +033006 +092004 +015004 +084002 +092004 +007002 +092003 +084002 +092004 +092003 +089015 +033015 +092004 +059001 +092004 +012001 +092003 +041001 +089017 +088010 +092003 +089015 +015004 +089015 +068001 +033015 +083003 +092004 +093002 +059001 +041001 +092004 +092004 +093001 +21092 059003 +025020 +091001 +015003 +092004 +093001 +083003 +092004 +006008 +067002 +084002 +092004 +083007 +015013 +011001 +059002 +084002 +092004 +089017 +085001 +083005 +092004 +001010 +089015 +015006 +092004 +092004 +053009 +033009 +093001 +089015 +024001 +092004 +017005 +083005 +092004 +008002 +092004 +089015 +033012 +092004 +078001 +033006 +090006 +092004 +010002 +092001 +023009 +023009 +089009 +015006 +085002 +092004 +008002 +092004 +089009 +023008 +089017 +023007 +089015 +015004 +089020 +092004 +089017 +015017 +092004 +011001 +059002 +089017 +019005 +092004 +089015 +009003 +013001 +013001 +014005 023009 +008002 023009 +060002 +067009 +089017 +059001 +024006 +090001 +059001 +023008 +089017 +057011 +092004 +090003 +092004 +059003 +089017 +092004 +035001 +089023 +089023 +023009 +092004 +065003 +013002 +033015 +21194 089004 +092004 +093001 +015006 +083003 +092004 +011001 +084001 +024005 +092004 +006017 +092004 +089007 +033006 +090006 +089010 +024005 +089011 +092004 +006017 +092004 +023008 +089015 +067002 +079015 +092004 +023009 +092004 +023009 +092004 +089015 +028001 +092004 +008001 +090006 +023008 +089021 +092004 +023009 +089015 +067002 +092004 +093001 +028001 +083003 +092004 +092004 +084001 +092004 +076 +015004 +015007 016 +083003 +092004 +011001 +033006 +092004 +024005 +092001 +092004 +006017 +089015 +033006 +092004 +092004 +036004 +092004 +024001 +092004 +011001 +019005 +092003 +089017 +033006 +092004 +092001 +024005 +089015 +024001 +024001 +092004 +092007 +042002 +089015 +092004 +009003 +025022 +089017 +016 +028001 +092006 +013004 +092004 +015006 +089015 +017005 +092004 +089015 +033006 +092004 +059003 +092004 +072001 +089015 +092004 +033006 +092004 +009005 +092004 +031009 +092003 +023008 +092003 +015004 +013002 +022007 +089017 +013001 +023008 +089021 +092004 +023009 +092003 +067006 +092004 +033006 +015006 +090003 +092004 +053009 +033006 +090006 +092004 +010002 +092003 +023007 +092004 +067006 +022003 +092004 +033017 +089023 +092004 +093001 +024002 030001 +092004 +013004 +033006 +033006 +092004 +053009 +069002 +025022 +21348 031009 +089015 +069002 +013004 +092004 +089020 +092004 +015020 +089023 +21358 092004 +093001 +089017 +093001 +089017 +093001 +092004 +010003 +093001 +089015 +015006 +084002 +092004 +007002 +092004 +053009 +089015 +024001 +014009 +089017 +025012 +089017 +025012 +078001 +089015 +015008 +033006 +092004 +092004 +025021 +089017 +025012 +092004 +009004 +069002 +023007 +089023 +023005 +089015 +033044 +092004 +089023 +092004 +015004 +059003 +015023 +092004 +010002 +092004 +009004 +089017 +092004 +010002 +089017 +092004 +089020 +092004 +089015 +015008 +083002 +085001 +092004 +009004 +089015 +018001 +092004 +008002 +092004 +009004 +033006 +092004 +009005 +017001 +089019 +089019 +033010 +092004 +009003 +092003 +033006 +017001 +089015 +067002 +023007 +092004 +009003 +089015 +015029 +089007 +013001 +067009 +060002 +089015 +025020 +067002 +025020 +078001 +089015 +033032 +092004 +078001 +090006 +092004 +028001 +092007 +089015 +033006 +057008 +092004 +023001 +089015 +015004 +084001 +089015 +015006 +084002 +092004 +001011 +092004 +089017 +015020 +092004 +092004 +036004 +092004 +089015 +013004 +067009 +068001 +033017 +083003 +092004 +007002 +089015 +21493 059001 +024002 +025020 +033006 +084001 +092007 +092007 +089017 +092004 +092004 +032004 +092004 +037005 +092007 +089017 +092004 +076 +092007 +090002 +092004 +008002 +092004 +013004 +069004 +092007 +013001 +092004 +045 +092004 +010002 +092004 +093001 +089017 +010003 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +069004 +085001 +092004 +010003 +092004 +083001 +089020 +092002 +089017 +025016 +089007 +092004 +089015 +033006 +092004 +092004 +093001 +090006 +069002 +013001 +053009 +087004 +089023 +21559 083003 +092004 +001011 +092004 +089017 +083003 +092004 +010001 +092004 +089017 +090001 +092004 +010001 +092004 +089017 +069002 +074 +083001 +090011 +092004 +076 +089023 +21582 059001 +023009 +085002 +092004 +008002 +023008 +089017 +21590 089007 +092004 +031009 +092004 +089015 +015002 +092004 +001014 +083004 +033017 +089015 +033029 +092004 + +089015 +068001 +092004 +015004 +060002 +060002 +089017 +037005 +092004 +076 +092004 +012001 +092004 +053004 +089017 +033032 +092004 +090006 +092004 +015024 +084002 089009 +015002 +089023 +21628 006023 +21630 069002 +005001 +069002 +006016 +069002 +083003 +092004 +006017 +006011 +089023 +049 +006017 +089017 +069002 +049 +060002 +006017 +089015 +033006 +092004 +071001 +083002 +015008 +084002 +007002 +083001 +085003 +067006 +071001 +015004 +084001 +089017 +071001 +092006 +011003 +069002 +034007 +092003 +069003 +031007 +092003 +015004 +084001 +016 +092004 +002005 +092004 +083009 +092004 +008002 +092003 +089009 +033020 +092004 +089015 +015004 +033019 +090006 +041005 +089017 +012001 +059001 +053011 +089017 +047003 +006019 +059001 +023009 +089017 +023008 +089015 +033015 +092004 +037004 +093001 +089007 +028003 +013002 +092004 +033020 +092004 +21712 033006 +090006 +093001 +092004 +053005 +023007 +089021 +023007 +089017 +21723 042001 +092004 +076 +090001 +092004 +089023 +058006 +033006 +090006 +093001 +013001 +089023 +058006 +033006 +090006 +053009 +064 +092004 +092004 +053009 +089023 +033015 +092004 +093001 +033006 +092006 +092001 +020004 +093001 +092007 +023007 +089007 +092004 +092004 +093001 +015004 +037006 +092004 +093001 +089015 +037008 +092004 +084002 +007002 +090010 +093001 +092004 +010004 +093001 +092004 +010003 +092004 +089007 +092004 +034010 +089007 +033006 +092004 +093001 +092004 +093001 +090006 +069002 +071004 +092003 +21789 092004 +010004 +092004 +010003 +092003 +21795 092004 +093001 +088023 +092004 +089017 +025001 +092004 +020004 +089017 +069002 +074 +089007 +092004 +093001 +087002 +092004 +093001 +028001 +092004 +009002 +088002 +089017 +053006 +089017 +013001 +092004 +089017 +031007 +092004 +059001 078001 +032001 +089017 +025011 +092004 +031007 +21831 013004 +067009 +067001 +21835 093001 +092004 +051 +092004 +023001 +090011 +092004 +087003 +092004 +089017 +092004 +055004 +089017 +092004 +087003 +092004 +093002 +089015 +015008 +092004 +010002 +21858 093001 +089015 +015032 +025008 +092004 +093001 +089017 +092004 +034001 +21868 092004 +037004 +033006 +092004 +009003 +033012 +092001 +071001 +092006 +025001 +21879 057008 +092003 +089015 +033054 +092004 +21885 071001 +092001 +033012 +057008 +092003 +059002 +060004 +092004 +001012 +092001 +089015 +015004 +033006 +092004 +010002 +092004 +092004 +033012 +089015 +092004 +033006 +092004 +008002 +093001 +092004 +053005 +089015 +015008 +067002 +089013 +068007 +084002 +092004 +037004 +033012 +033006 +025001 +090006 +067005 +057008 +092001 +083008 +006016 +092004 +008002 +093001 +092004 +053005 +089015 +025023 +013002 +092004 +037004 +089007 +092004 +033054 +089017 +092004 +023001 +069002 +025001 +031009 +092004 +089015 +067002 +015004 +020004 033015 +092004 +037004 +033032 +015023 +092004 +008002 +092004 +089015 +015004 +020004 +092004 +083003 +092004 +007002 +089015 +015023 +092004 +008002 +092004 +083008 +006016 +089015 +057008 +092004 +092004 +009003 +089015 +092004 +009003 +057008 +092004 +092004 +010002 +092004 +089015 +033015 +092004 +036004 +092004 +015006 +089015 +015024 +092004 +008001 +092004 +089015 +085002 +092004 +084002 +007007 +089015 +015013 +092004 +053009 +084002 +092004 +093001 +089015 +033015 +092004 +059003 +059001 +042002 +089017 +059001 +033017 +089015 +033006 +092004 +084002 +092003 +092008 +028004 +028004 +084002 +001013 +080001 +089015 +023006 +059002 +089007 +013001 +092004 +015006 +089017 +092004 +015004 +059001 +089017 +069003 +023001 +067001 +089015 +015004 +083003 +092004 +006008 +084002 +001013 +080001 +028004 +028004 +089015 +024001 +092004 +015004 +089017 +027007 +059001 +089015 +008002 +084001 +059003 +092004 +001014 +015013 +083001 +089017 +015015 +092004 +089015 +015004 +024001 +059002 +011001 +089015 +025003 +090013 +092004 +089007 +013001 +064 +004001 +069002 +090013 +044 +089015 +068001 +033017 +092004 +059001 +089015 +067002 +067004 +22097 013002 +015005 +092004 +092004 +036004 +092004 +033006 +090006 +001013 +013001 +092004 +080001 +089017 +067002 +067004 +22113 015004 +092004 +089009 +015004 +084002 +092004 +083004 +001014 +089017 +001014 +057015 +092004 +092004 +023001 +089023 +092004 +033014 +033006 +092004 +057008 +092004 +092003 +023001 +089015 +033006 +092004 +015004 +057015 +006011 +060002 +005001 +089015 +057008 +092004 +023001 +089015 +092004 +033006 +092004 +059001 +005001 +057001 +015004 +027001 +089015 +027001 +033006 +060002 +089017 +060002 +004005 +089015 +033032 +092004 +22168 059003 +011001 +011001 +083008 +092004 +079007 +003003 +089015 +017006 +011001 +011001 +089016 +060002 +089017 +089016 +060002 +089015 +018001 +092004 +060002 +005001 +089017 +092004 +060002 +004005 +024001 +084002 +092004 +001002 +033037 +089015 +019004 +092004 +005001 +089015 +057008 +092004 +036004 +089009 +057008 +092004 +089015 +092004 +060002 +004005 +057008 +059003 +089015 +023001 +059003 +089015 +023001 +089015 +015024 +019004 +060002 +006016 +059004 +089017 +063004 +092004 +004005 +089017 +013001 +092004 +023001 +092004 +005001 +060002 +009002 +089015 +067002 +037002 +092004 +036004 +092004 +015008 +084002 +092004 +006008 +089015 +015015 +084002 +092004 +083007 +084002 +093002 +067007 +092004 +015004 +092004 +011001 +089015 +033003 +092004 +015004 +084002 +092004 +001007 +033013 +089015 +067009 +013004 +085001 +092004 +006008 +083003 +083003 +092004 +001010 +089017 +092004 +058007 +083008 +092004 +001009 +089015 +024001 +092004 +038001 +089007 +092004 +015022 +089007 +013001 +092004 +014002 +082002 +092004 +067002 +060003 +067009 +092004 +067009 +015006 +084002 +092004 +015029 +083008 +092004 +001010 +089017 +030004 +015003 +092004 +089023 +092004 +024001 +092004 +083008 +092004 +001010 +015029 +031005 +090006 +012001 +013001 +089015 +033006 +089007 +059003 +092004 +024001 +089017 +025021 +089023 +092004 +067002 +033006 +090013 +092004 +089017 +033006 +092004 +025014 +092001 +013001 +069002 +025022 +089015 +015009 +084002 +092004 +084002 +092004 +006008 +089015 +068004 +092004 +014002 +089015 +078001 +078001 +059006 078001 +090013 +092004 +025020 +089007 +069002 +032001 +090006 +092004 +005001 +089023 +013001 +027005 +092004 +092004 +026 +089015 +015003 +084002 +092004 +001009 +015001 +084002 +093002 +089015 +054 +089015 +015004 +092004 +084001 +092004 +006008 +067002 +027007 +092004 +015030 +063001 +092004 +001011 +092007 +089015 +068001 +083008 +092004 +006015 +092004 +023009 +023009 +015024 +083002 +024002 +090006 +085001 +089015 +071001 +083002 +015008 +084002 +001014 +089024 +084002 +001014 +089024 +084002 +001014 +083003 +092004 +057016 +085002 +092004 +023009 +089017 +033012 +092004 +090006 +089011 +092004 +006017 +092004 +006017 +092004 +024005 +089015 +071001 +059001 +024005 +092004 +023008 +089015 +015013 +084002 +092004 +092004 +011002 +089017 +092004 +092004 +053009 +015006 +084001 +093002 +089015 +024001 +092004 +092004 +036004 +092004 +090006 +053004 +008002 +089019 +089019 +047002 +023001 +092004 +005001 +089007 +092004 +011002 +089017 +059003 +092004 +093001 +22486 008002 +047002 +092004 +008002 +069002 +023001 +013001 +092004 +033017 +092004 +053009 +089017 +084001 +057016 +22503 069002 +023001 +089017 +058006 +059001 +013001 +092006 +027001 +013001 +053003 +006016 +089017 +006016 +089017 +006016 +089015 +033014 +092004 +092004 +011002 +089017 +092004 +053009 +22528 069002 +041001 +092004 +036004 +092003 +089005 +092004 +033017 +092004 +053009 +089023 +053004 +008002 +023001 +092004 +005001 +089015 +092004 +033006 +092004 +072002 +033053 +093001 +090006 +092003 +092004 +088029 +064 +033005 +090006 +092007 +092004 +011002 +092004 +033006 +092001 +087002 +089023 +092004 +026 +092004 +083005 +085001 +089021 +092001 +089017 +089008 +053007 +092001 +033017 +033017 +033032 +009001 +031008 +092004 +033032 +092004 +012001 +013001 +092004 +033017 +092004 +009001 +089015 +033006 +092004 +078001 +076 +092004 +033032 +092004 +012001 +089009 +092004 +033017 +092003 +22605 089007 +093001 +033006 +087002 +092004 +010002 +092003 +089017 +092004 +010002 +092003 +089017 +092004 +033042 +010002 +089024 +010002 +023007 +023007 +089023 +092003 +033006 +089010 +033006 +009001 +092004 +010002 +089024 +092004 +010002 +053002 +089019 +089019 +057008 +071001 +092006 +090003 +092001 +035001 +067006 +013004 +092004 +092004 +041001 +092004 +010002 +089024 +092004 +010002 +076 +092004 +033006 +092004 +012001 +092004 +033017 +092003 +092006 +033017 +089017 +064 +092007 +059001 +042002 +089015 +033029 +067002 +092004 +011001 +033006 +092004 +024002 +092001 +059003 +089017 +032001 +092004 +013001 +084001 +092004 +009001 +015008 +084002 +092004 +092006 +074 +053004 +092004 +089023 +092004 +084001 +092004 +009001 +015004 +013001 +092004 +053004 +092004 +009001 +089015 +22706 015008 +084002 +007002 +089021 +092004 +011001 +033014 +092004 +092004 +036004 +092004 +092004 +033003 +089015 +033006 +092004 +061 +089017 +092003 +032005 +013001 +069004 +032001 +090006 +059003 +092004 +084001 +015008 +084002 +092004 +009001 +069002 +074 +092004 +053004 +089007 +069002 +015008 +084002 +092004 +092004 +026 +089023 +084002 +092004 +008002 +089015 +084002 +092004 +007007 +015004 +079010 +059003 +092004 +005001 +089015 +033006 +090006 +092004 +084001 +092004 +009001 +015004 +092007 +053004 +092004 +009001 +089007 +084001 +084001 +092004 +026 +092004 +009001 +092004 +030001 +092004 +088015 +015004 +088036 +057021 +020004 +088036 +088019 +088015 +088021 +088036 +057008 088022 +057008 088022 +033042 +088027 +032005 +059003 +092007 +092004 +088015 +026 +015004 +089017 +053004 +092004 +009001 +089015 +084001 +015004 +015004 +084002 +092004 +001011 +093002 +089015 +015008 +084002 +007002 +092004 +027001 +025001 +091002 +069002 +074 +028005 +089023 +067002 +033015 +090006 +092004 +009003 +092006 +092004 +010002 +092004 +22838 012001 +053004 +015006 +017005 +083005 +092004 +008002 +092004 +22847 092004 +009003 +013001 +011004 +093002 +092004 +010001 +089015 +033012 +092004 +090006 +092004 +012001 +053011 +084001 +092004 +010002 +092004 +089015 +033006 +092004 +013004 +060003 +023001 +092004 +010002 +089007 +069002 +013001 +066 +018001 +092004 +005001 +092004 +010002 +089015 +092004 +004001 +015026 +089023 +092004 +033004 +22890 033006 +092004 +22893 012001 087003 +22895 092004 +004001 +083009 +092004 +006015 +023001 +063004 +092004 +005001 +092004 +009004 +089015 +033006 +092004 +089007 +092007 +092004 +033006 +015004 +015004 +084001 +092004 +010002 +092003 +092004 +012001 +089015 +015004 +084002 +092004 +007002 +092004 +027001 +092004 +010002 +085002 +083008 +092004 +006015 +089017 +092004 +012001 +015004 +089015 +067002 +015004 +084001 +092004 +001011 +093002 +015006 +084003 +093002 +084002 +092004 +001010 +092004 +093002 +083003 +083003 +092004 +001011 +093002 +089015 +015023 +092004 +024002 +089017 +033006 +089015 +033012 +092004 +090006 +085002 +092004 +092004 +008002 +089015 +015023 +092004 +084001 +092004 +011001 +028004 +028004 +085002 +092004 +008002 +092004 +084002 +092004 +008002 +092004 +089015 +023002 +024005 +092004 +008002 +092004 +089015 +024001 +084002 +092004 +001002 +025012 +089015 +033006 +092004 +079024 +089019 +089019 +079024 +089015 +024002 +092004 +092004 +024002 +089017 +23014 018002 +092004 +023009 +092004 +008002 +092004 +089015 +033006 +072002 +089015 +033032 +092004 +090006 +092004 +033006 +089023 +078005 +092004 +033032 +092004 +089023 +078002 +033015 +089017 +078002 +025020 +033006 +065003 +059003 +042002 +089017 +013001 +092004 +024002 +024002 +089017 +033006 +033006 +067007 +092007 +092004 +067008 +067002 +078001 +011001 +085001 +089017 +069002 +057001 +092004 +023001 +033029 +092004 +036004 +033006 +092004 +025003 +090013 +092004 +011001 +089007 +067002 +067009 +060002 +085003 +092001 +089017 +069002 +057001 +092004 +023001 +089017 +089010 +015004 +092004 +023001 +084002 +007002 +092004 +023006 +083008 +092004 +015002 +089017 +092004 +092004 +23101 083005 +23103 089015 +033014 +092004 +092004 +036004 +092004 +090006 +084001 +074 +092004 +092007 +083001 +023001 +005001 +083008 +001013 +089015 +033014 +092004 +059001 +005001 +057001 +089015 +092004 +033006 +060002 +089015 +033032 +092004 +011001 +017006 +083008 +092004 +001006 +089015 +018001 +092004 +060002 +005001 +033036 +019004 +089015 +057008 +092004 +036004 +092004 +089009 +057008 +089015 +057008 +092004 +011001 +089017 +057001 +004005 +059001 +089017 +033037 +092004 +033006 +089017 +092007 +057008 +089015 +023001 +089015 +023001 +089015 +015024 +059006 +019004 +060002 +006016 +23177 013001 +078003 +060002 +089015 +015004 +092004 +089015 +067002 +015008 +084002 +092004 +006008 +089020 +092004 +036004 +092004 +015006 +084002 +092004 +001011 +093002 +089015 +015004 +092004 +011002 +089015 +068001 +033050 +092004 +033012 057007 +090003 +092004 +033056 +084001 +092004 +001002 +027003 +092004 +089015 +025012 +092004 +026 +092004 +033006 +092004 +092004 +011001 +092007 +033012 057007 +033056 +072001 +033006 +092003 +23232 092004 +011001 +092007 +033056 +089015 +015004 +092004 +067002 +015008 +015004 +084002 +092004 +083007 +089017 +029004 +057007 +005001 +089017 +089023 +23252 060002 +005001 +069002 +057001 +089020 +092004 +083003 +092004 +006008 +089015 +033032 +092004 +033006 +030002 +027006 +23268 092004 +088029 +092004 +011002 +089017 +092004 +088029 +093001 +089015 +033011 +089020 +092005 +089007 +005001 +069002 +057001 +089015 +027001 +033006 +092004 +092004 +030001 +089007 +005001 +069002 +057001 +067006 +032001 +069003 +032001 +027005 +090013 +092004 +026 +092003 +008002 +057001 +069004 +024001 +089017 +008002 +057001 +069004 +024002 +089017 +069004 +029002 +23316 092004 +060002 +005001 +019004 +090009 +092004 +060002 +059001 +006016 +019004 +059004 +015024 +033006 +092004 +060002 +23332 092004 +060002 +090009 +092004 +060002 +059001 +006016 +059004 +019004 +015024 +089015 +033006 +060002 +089015 +033006 +092004 +067006 +032001 +089015 +015001 +084002 +093002 +089015 +015023 +092004 +024001 +089015 +033012 +092004 +090006 +092004 +024005 +089015 +018001 +092004 +008002 +092004 +024001 +015023 +092004 +084002 +092004 +001014 +089015 +023002 +084002 +092004 +008002 +092004 +085002 +092004 +008002 +092004 +033014 +092004 +089010 +092004 +024001 +089015 +024001 +033006 +024001 +092004 +009001 +090006 +064 +003002 +015029 +024001 +067002 +067002 +085002 +092004 +008002 +084002 +092004 +008002 +092004 +089015 +024001 +089017 +013002 +089015 +024001 +024001 +059003 +089015 +015004 +092004 +084002 +007002 +092004 +033006 +069003 +084002 +092004 +001014 +015008 +089015 +015004 +092004 +093001 +089017 +092004 +036004 +092004 +084002 +092004 +001014 +093002 +092004 +093002 +089015 +083008 +092004 +015002 +033014 +092004 +036004 +092004 +033006 +092004 +092004 +092001 +013001 +033006 +092004 +009001 +089015 +092004 +033006 +092004 +033006 +090006 +093001 +092004 +053005 +089017 +058006 +093001 +089017 +058006 +090006 +092004 +092004 +053009 +089015 +092004 +033014 +092004 +089023 +092003 +092004 +092001 +013001 +033006 +033014 +092004 +093001 +033006 +092004 +092003 +013001 +092004 +053009 +089015 +033032 +092004 +090006 +092004 +033006 +090006 +092004 +089015 +068001 +033017 +092004 +090006 +071005 +092004 +009001 +092004 +009001 +059001 +024006 +089017 +030007 +090001 +092004 +053009 +089017 +092004 +053009 +089017 +092004 +053009 +089015 +020004 +089015 +067002 +060002 +067009 +023007 +089017 +23537 092004 +033006 +033006 +089015 +092004 +093001 +015023 +092004 +068001 +033046 +092004 +089023 +092004 +015007 016 +089015 +024001 +092004 +036004 +092004 +033046 +093001 +089017 +033006 +015004 +083006 +092001 +012001 093001 +089007 +069002 +031001 +092004 +092004 +012001 +089023 +092004 +092004 +009001 +089015 +033029 +092004 +011001 +089020 +092004 +036004 +092004 +033006 +092004 +089010 +092004 +025001 +036004 +092001 +23590 030002 +092004 +089015 +024006 +092004 +006006 +092004 +089015 +036004 +092001 +089007 +071001 +092006 +025001 +092004 +023007 +092004 +021005 021006 +057007 +092004 +089023 +071001 +092006 +023007 +092004 +023007 +092004 +089007 +092001 +089017 +092004 +033015 +021005 021006 +092004 +089007 +092004 +035001 +009001 +057016 +092004 +001006 +063001 +091002 +057007 +092004 +023007 +092004 +089007 +092004 +057008 +009001 +057010 +092004 +023007 +092004 +089007 +071001 +092006 +025018 +092001 +089017 +092004 +092001 +033006 +083003 +092004 +011001 +092007 +092004 +031009 +089017 +088038 +089017 +092004 +009001 +092004 +009001 +025018 +092004 +23670 015006 +013001 +092004 +014006 +092004 +012001 +092004 +089020 +092004 +012001 +092004 +088003 +089015 +033006 +092004 +072001 +033006 +092003 +090006 +085001 +092004 +092004 +083001 +085001 +092004 +069002 +069002 +090013 +023007 +067006 +071001 +024001 +092004 +037004 +092004 +012001 +015006 +089014 +076 +089015 +067002 +067009 +060002 +015023 +092004 +093001 +092004 +093001 +089017 +092004 +093001 +089017 +093001 +089015 +015023 +092004 +084002 +001007 +081002 +028004 +028004 +058007 +089015 +058002 +083006 +092004 +089017 +092004 +006017 +092004 +013002 +014006 +014006 +078001 +064 +048 +083008 +092004 +001006 +069002 +074 +078001 +079007 +089015 +024001 +092004 +093001 +089020 +093001 +089017 +23761 033011 +092004 +093001 +089015 +033004 +092004 +093001 +033006 +092004 +093001 +033017 +066 +013001 +092002 +083001 +085001 +23778 042003 +060002 +007002 +092003 +23783 089017 +093001 +23786 089017 +093001 +23789 089007 +069002 +028001 +092004 +033004 +089007 +025022 +013002 +089015 +085001 +001005 +014007 +092004 +089017 +013004 +033006 +090003 +092004 +001005 +092007 +013001 +092004 +012001 +092001 +092004 +058007 +036003 +092004 +089015 +067005 +024001 +067006 +092004 +024001 +089023 +092004 +093001 +058007 +089020 +092004 +089015 +015011 +092004 +084001 +092004 +001007 +033032 +092004 +090006 +092004 +092006 +024001 +033015 +089023 +23845 092004 +009001 +092004 +009001 +089021 +023007 +023007 +089015 +092004 +013004 +013001 +090013 +092004 +033011 +092004 +013001 +092004 +089021 +023007 +023007 +089015 +033014 +092004 +033006 +23870 033006 +092004 +053009 +090006 +071005 +093001 +015006 +067002 +089015 +092004 +033006 +092004 +091002 +093001 +015006 +067002 +013002 +059003 +091002 +092004 +033005 +090006 +092004 +009001 +092004 +009001 +090006 +059001 +024006 +089017 +088016 +089023 +033006 +092003 +090006 +089017 +093001 +015006 +089017 +041001 +092004 +059002 +025001 +064 +033005 +090006 +092004 +089015 +015006 +084002 +092004 +036004 +024001 +011001 +078001 +083004 +092004 +089017 +053009 +033050 +089004 +092004 +089015 +067002 +059003 +092004 +011001 +024001 +092004 +025020 +089015 +015030 +033003 +092004 +089015 +033014 +092004 +092004 +033050 +089004 +092004 +089015 +033014 +092004 +092004 +090003 +092004 +011001 +033017 +015023 +092004 +010002 +092001 +084002 +092003 +23966 012001 +033006 +089017 +071001 +083002 +092004 +039010 +023009 +092004 +089017 +014005 +089017 +023002 +092004 +008002 +089017 +023009 +089017 +033006 +092004 +036004 +092003 +090006 +092004 +053011 +23992 069002 +074 +089015 +092004 +033004 +092004 +033006 +091004 +011001 +031009 031010 +067006 +067002 +089020 +092003 +085001 +067006 +067002 +025015 +092003 +015023 +092004 +084002 +092001 +089015 +015023 +092004 +084002 +092004 +089015 +024001 +092004 +092004 +012001 +067002 +023009 +092004 +089015 +015012 +084002 +092004 +001006 +016 +014005 +089015 +033014 +092004 +010002 +092004 +059002 +067005 +013001 +067007 +092007 +013004 +092004 +089015 +092004 +033006 +067006 +067008 +089017 +067001 +089017 +084002 +002003 +092004 +015026 +089017 +084002 +002004 +089009 +020003 +092004 +089023 +089010 +092004 +074 +035001 +092002 +025003 +090013 +092002 +089015 +092004 +093001 +033006 +092004 +092004 +089010 +074 +059003 +071001 +092004 +031009 +067002 +033006 +092004 +010002 +092004 +010002 +033006 +031009 +035001 +092001 +092004 +031009 +089015 +092004 +093001 +024001 +090006 +015013 +011001 +033046 +092004 +012001 +092004 +053004 +033006 +092004 +092004 +033006 +089017 +024002 +012001 +092001 +033032 +092003 +015004 +084001 +092004 +089017 +067006 +015008 +084002 +092004 +089015 +033006 +089017 +078001 +023009 +015004 +089015 +013002 +064 +023007 +089008 +092004 +059001 +033006 +090006 +023007 +089023 +092004 +093001 +018001 +092004 +008002 +092004 +017001 +092004 +089017 +015004 +089015 +015008 +092004 +084002 +007002 +092004 +036004 +092004 +028004 +028004 +033014 +092004 +24168 092002 +069002 +074 +053011 +092004 +089015 +033006 +092004 +092007 +092004 +058004 +089012 +092004 +074 +015004 +089023 +24185 089012 +033013 +084001 +015004 +015003 +084003 +092004 +093002 +089017 +069002 +025001 +090006 +092004 +027001 +089007 +033017 +092004 +036004 +092004 +089017 +033006 +092004 +090006 +092004 +009001 +092004 +009001 +037001 037007 +24214 037001 +009001 +089015 +020004 +092004 +089015 +020004 +067002 +060002 +067009 +023007 +089023 +092004 +032001 +092004 +033002 +089017 +025022 +092004 +033014 +089015 +015001 +084002 +093002 +089015 +083003 +092004 +007002 +085001 +033014 +092004 +092004 +083008 +092004 +015002 +033011 +089023 +092004 +033008 +089007 +089020 +092005 +033051 +083008 +092004 +015002 +092004 +087003 +089015 +017002 +033029 +092004 + +089015 +033006 +092004 +089010 +092004 +025001 +065006 +013001 +013001 +059003 +087004 +089017 +059003 +035002 +089015 +018001 +009004 +085002 +092004 +084002 +083003 +092004 +089015 +034009 +092004 +033006 +092004 +071001 +092006 +092004 +092004 +092007 +009004 +034007 +090006 +092004 +033009 +092001 +092001 +034007 +089017 +071001 +092006 +092001 +034007 +069002 +092001 +034007 +089023 +092004 +015004 +092001 +033006 +092004 +092004 +093001 +033017 +024001 +092004 +089012 +092004 +033009 +092003 +053011 +012001 +24336 089015 +013004 +092004 +089007 +069002 +015020 +092002 +089023 +092004 +093001 +033006 +069002 +013004 +092004 +089007 +092004 +013003 +092006 +090011 +076 +089007 +092004 +033009 +092001 +089015 +074 +067002 +033042 +092001 +089007 +092006 +069002 +013001 +090008 +092002 +090009 +092002 +013001 +089007 +071001 +092006 +023001 +092003 +006016 +002004 +089007 +058004 +089007 +093001 +058010 +072001 +033006 +092003 +090006 +069002 +069002 +057007 +092004 +038002 +092004 +089017 +071001 +092006 +088038 +092004 +092004 +087004 +092007 +092004 +031010 +065005 +013001 +092004 +089023 +089010 +085002 +007007 +004001 +083004 +092004 +008002 +092004 +089015 +015026 +084002 +092004 +001010 +089017 +089010 +24426 092003 +092004 +008002 +092003 +019002 +092004 +065005 +013001 +092003 +023009 +090013 +089008 +092004 +023007 +064 +092004 +060002 +008002 +057001 +015004 +084002 +092004 +001003 +084002 +092004 +002003 +092004 +014008 +089017 +089010 +092004 +008002 +092003 +088038 +092003 +019002 +092004 +065005 +013001 +092003 +090013 +013002 +092004 +023007 +023009 +064 +092004 +060002 +008002 +057001 +015026 +013002 +092004 +001003 +089017 +089010 +092004 +008002 +092003 +088038 +092003 +015026 +092004 +065005 +013001 +092003 +024001 +090013 +013002 +092004 +037004 +092004 +012001 +064 +060002 +008002 +057001 +015026 +013002 +092004 +001003 +083002 +092004 +004004 +092004 +069002 +023007 +089017 +092004 +002003 +069002 +014008 +089007 +059003 +002003 +005002 +065003 +092004 +005002 +089023 +089010 +092004 +005002 +005002 +013002 +089012 +092004 +092004 +046 +057001 +083003 +092004 +005002 +089017 +088014 +089020 +092005 +089015 +084001 +015004 +015006 +084002 +092004 +001011 +092004 +093002 +089017 +083007 +092004 +093002 +089015 +015013 +067002 +011001 +084002 +092004 +089015 +064 +041002 +067002 +033017 +092004 +089015 +015005 +011002 +033014 +092004 +089010 +071004 +010004 +010004 +034010 +027003 +092004 +089015 +092004 +033014 +033006 +092004 +092004 +092003 +033032 +093001 +089015 +092004 +033006 +013004 +093001 +033005 +033005 +033005 +089015 +034010 +089015 +092004 +093001 +033006 +092004 +24605 092004 +088028 +092003 +033005 +092003 +092004 +033032 +092007 +089023 +067006 +067003 +042003 +079022 +089017 +079022 +042003 +092004 +089007 +092007 +034004 +009002 +092004 +010002 +092004 +089017 +092004 +010002 +089017 +013001 +092004 +060002 +013002 +008001 +063001 +089008 +067006 +013001 +060002 +089023 +060002 +008001 +089008 +092006 +092004 +012001 +034010 +009001 +069002 +034010 +089015 +083003 +092004 +007002 +067002 +092004 +036004 +090006 +092007 +033014 +092004 +089015 +033006 +092004 +071001 +092006 +034010 +092004 +010004 +092004 +089015 +034010 +058006 +088036 +090008 +092004 +089017 +089010 +092004 +034010 +092004 +010004 +092004 +034010 +058006 +088036 +089015 +015023 +092004 +009004 +089009 +092004 +024005 +089023 +092004 +036004 +033046 +092004 +089023 +024001 +092004 +093001 +088024 +089015 +033006 +092004 +013004 +092004 +009004 +015006 +084002 +092001 +069002 +013004 +092004 +089007 +092004 +092007 +013001 +092004 +037004 +092004 +012001 +072001 +033006 +092003 +071001 +092006 +069002 +031007 +092004 +037004 +092004 +012001 +064 +009004 +069002 +069002 +090013 +013002 +092004 +089015 +034009 +092004 +033055 +085002 +092004 +008002 +084002 +092004 +091001 +015004 +092004 +084002 +015002 +092004 +015030 +089015 +017003 +092004 +033014 +092004 +033017 +088001 +092004 +042002 +089009 +023007 +067005 +057009 +089015 +092004 +093001 +033006 +092004 +092004 +092001 +033009 +088001 +092004 +088001 +089023 +24787 063001 +092004 +012001 +092004 +033032 +028001 +069002 +020004 +069002 +088036 +069002 +057021 +069002 +033020 +069002 +057021 +087002 +092004 +010002 +092003 +089017 +092004 +010002 +089015 +092004 +033006 +092004 +033017 +092007 +059003 +036003 +067006 +067008 +092001 +089015 +092004 +093001 +024001 +092004 +025003 +092004 +089015 +033006 +092004 +060002 +092003 +013001 +015004 +059001 +057001 +057015 +089015 +057008 +092004 +057006 +24843 057001 +065001 +083003 +001002 +089015 +084002 +036004 +092001 +089023 +092004 +025020 025023 +089007 +092004 +033006 +015004 +025023 +089007 +24861 057001 +057001 +078001 +089015 +024001 +092004 +093001 +033006 +092004 +036004 +092004 +092004 +022004 +092004 +092004 +057003 +057001 +013002 +092004 +037004 +092004 +012001 +090013 +089015 +092004 +036004 +025020 +089007 +092004 +033006 +092004 +089015 +092004 +093001 +067002 +033004 +033006 +092004 +009005 +092004 +022004 +013001 +013002 +092004 +037004 +092004 +012001 +090013 +022006 +013001 +004001 +084003 +092004 +006023 +092004 +006023 +015003 +064 +057003 +013002 +092004 +037004 +092004 +012001 +090013 +089015 +092004 +078002 +025020 +033006 +090013 +092005 +091002 +092004 +074 +021006 +024001 +092004 +092004 +093001 +033006 +090001 +009001 +071001 +089023 +069002 +090001 +012001 +089007 +059003 +071001 +090001 +092004 +012001 +068001 +092004 +093001 +033006 +092004 +091003 +092002 +085002 +059003 +089017 +036004 +092003 +033006 +092004 +093001 +072001 +033006 +092003 +092004 +013003 +092006 +085002 +007002 +089024 +010003 +089024 +010003 +089024 +010002 +089024 +010002 +089024 +010002 +089024 +001015 +090010 +092001 +089017 +090010 +092004 +033015 +24998 057009 +067002 +067007 +092004 +067008 +092007 +060006 +007002 +089017 +010003 +089017 +010003 +089017 +010002 +089017 +010002 +089017 +001015 +089013 +039009 +089015 +067007 +092004 +067008 +092004 +013002 +023007 +067005 +089023 +059001 +087003 +013001 +087004 +089017 +092004 +087004 +087003 +25036 085001 +083008 +092004 +015002 +015010 +084002 +093002 +089017 +25045 015016 +092004 +092004 +093001 +089017 +025020 +089017 +092004 +015017 +025022 +089015 +015023 +067002 +092004 + +068001 +092004 +033006 +092004 +071005 +092004 +013004 +090006 +091003 +015010 +084002 +093002 +089015 +092004 +009001 +092004 +009001 +037007 +092004 +053009 +089017 +092004 +053009 +089015 +056005 +092004 +023007 +089015 +037007 +092004 +092004 +011002 +089015 +033044 +092004 +089017 +023002 +092004 +089017 +019001 +092004 +089017 +020004 +089015 +067002 +060002 +067009 +023007 +089015 +015005 +092004 +093001 +089017 +093001 +092004 +010002 +093001 +033006 +092004 +033017 +025001 +090006 +071001 +092006 +033012 +092003 +041001 +092002 +089015 +092004 +033006 +092004 +025001 +092004 +092001 +041001 +092003 +089015 +092004 +033006 +092004 +013004 +092002 +090006 +25145 087003 +092003 +082002 +089017 +25150 087003 +082002 +017002 +013001 +092004 +014006 +092003 +089023 +092004 +093001 +033006 +092004 +069002 +032001 +092004 +033012 +074 +024006 +092004 +024006 +092006 +092001 +024006 +089024 +092004 +053005 +092006 +092001 +024006 +024006 +089015 +092004 +033006 +092004 +074 +089015 +092004 +093001 +033006 +092004 +092004 +024006 +092006 +092001 +024006 +024006 +089017 +092004 +053005 +092006 +092001 +024006 +024006 +089023 +092004 +017002 +087003 +082002 +092001 +089024 +087003 +082002 +069002 +013001 +092001 +013004 +089023 +092006 +077 +089015 +033015 +092004 +060002 +068001 +088024 +090006 +093001 +089017 +093001 +089015 +033029 +092004 +092004 +093001 +033006 +092004 +028001 +090006 +092004 +031005 +037004 +092004 +011002 +037004 +092004 +089017 +092004 +087 +092004 +037004 +092004 +089023 +069002 +061 +013001 +083003 +092003 +089023 +071001 +092006 +025001 +087003 +013002 +083003 +092003 +013001 +092003 +035002 +089017 +071001 +092006 +025001 +083003 +092003 +013001 +087003 +013001 +059003 +087005 +089007 +25281 092004 +009001 +092004 +009001 +069002 +015006 +035002 +089023 +035002 +089017 +023007 +092004 +023007 +092004 +037010 +090009 +059001 +089015 +015001 +084002 +093002 +089015 +015004 +092004 +084001 +093002 +089017 +092004 +036004 +092004 +089017 +011001 +059002 +092004 +010002 +093001 +093001 +024001 +033012 +017002 +083005 +092004 +001016 033012 +089015 +033015 +090006 +093001 +092004 +093002 +085001 +068001 +033006 +089017 +033006 +010002 +093001 +093001 +088010 +092001 +089015 +033032 +092004 +059001 +090006 +033008 +089023 +092004 +059002 +078002 +033006 +010002 +093001 +088010 +092001 +089015 +068004 +092004 +093001 +033006 +033029 +092004 +089015 +033029 +092004 +024001 +033006 +092004 +025014 +017001 +033029 +092003 +089015 +092004 +049 +092004 +006017 +092004 +015031 +015006 +084002 +092004 +093001 +089015 +033004 +092004 +092004 +093001 +033006 +092004 +092003 +041001 +025001 +089015 +092004 +024001 +033006 +092004 +033017 +090006 +024001 +089015 +092004 +093001 +033006 +092004 +015004 +092004 +031009 +092003 +023008 +092003 +089015 +067002 +024001 +089015 +015017 +092004 +083008 +092004 +015002 +089015 +25423 015005 +084002 +093002 +084002 +093002 +089017 +093002 +083005 +092004 +001007 +092004 +003002 093002 +015004 +060002 +092004 +036004 +092004 +089017 +033006 +092004 +015001 +084002 +092004 +001014 +092004 +083007 +092003 +089015 +067002 +015008 +084002 +092004 +027002 +018002 +004001 +083008 +092006 +092004 +009001 +067006 +017002 +018002 +092004 +089015 +015023 +089017 +089010 +092004 +092003 +033006 +092004 +042002 +092007 +033006 +092004 +012001 +092004 +057005 +25482 089015 +067002 +092004 +015004 +067002 +083001 +089015 +015004 +089015 +027002 +004001 +018002 +083005 +007003 +083004 +083008 +092004 +001016 +089015 +018002 +092004 +089015 +092004 +092004 +083001 +085001 +033006 +092004 +092004 +042002 +018002 +092004 +004001 +089015 +092004 +033006 +092004 +064 +033006 +092004 +093001 +089015 +013004 +092004 +089015 +015023 +092004 +004001 +084002 +092004 +093001 +089015 +015026 +092004 +092004 +006017 +092004 +089015 +017002 +083008 +092004 +089015 +059001 +092004 +006017 +092004 +016 +083008 +092004 +001016 +089017 +058006 +003005 +019002 +090003 +092004 +001015 +089017 +092004 +015016 +089017 +092004 +015017 +033006 +033037 +033055 +092004 +015006 +089004 +033009 +012001 +033055 +092004 +013002 +037004 +092004 +010002 +092002 +093001 +033037 +083003 +092004 +001002 +089015 +015008 +084002 +093002 +084002 +092004 +007002 +089015 +25594 067002 +013001 +092004 +067009 +024001 +059003 +015004 +084002 +093002 +089020 +092004 + +089015 +092004 +067010 +015004 +092004 +084001 +093002 +023001 +089015 +024001 +25617 083005 +003002 +057001 +003005 +015006 +071003 +089010 +092004 +027001 +083008 +092004 +089015 +015006 +084002 +092004 +092004 +027001 +089023 +25636 003005 +089007 +092004 +067001 +069002 +013001 +003004 +089015 +033004 +033006 +092004 +067006 +067005 +092004 +067005 +090003 +092003 +092004 +003004 +023001 +089017 +024002 +092004 +036004 +092004 +089015 +015001 +084002 +093002 +089015 +015008 +084002 +092004 +007002 +068001 +015004 +092004 +057015 +089017 +092004 +057015 +083003 +092004 +007002 +089017 +092004 +006015 +092004 +057016 +089017 +092004 +006015 +092004 +057015 +092004 +004002 +016 +089017 +069002 +013004 +090006 +092004 +015024 +006001 +084003 +092004 +007002 +089015 +033017 +089017 +033006 +092004 +069004 +033005 +090006 +092004 +007002 +092001 +007002 +033013 +033009 +059003 +092004 +011003 +089023 +092003 +013001 +092004 +001008 +057021 +089015 +033015 +092004 +053009 +089017 +092004 +053009 +089015 +027004 +092004 +092004 +020003 +089007 +025022 +092004 +089007 +059003 +092004 +011001 +025020 +090006 +092004 +033017 +092004 +089015 +25752 067004 +013002 +015004 +084002 +092004 +001014 +089015 +015003 +067009 +024001 +092004 +003002 +079015 +090003 +003005 +089015 +029002 +092004 +093001 +033006 +092004 +033017 +091003 +092004 +003002 +092006 +033055 +079015 +089015 +033004 +092004 +093001 +033006 +092004 +25787 031009 +012001 +072001 +033006 +092003 +090006 +071001 +092006 +033006 +092004 +001007 +092007 +015024 +089017 +015026 +084002 +092004 +001010 +089017 +069002 +031006 +083003 +092004 +026 +092004 +089023 +031009 +090006 +092006 +033006 +013004 +013004 +092004 +25822 033006 +092003 +059003 +059001 +033013 +089017 +033012 +031009 +090006 +057009 +089015 +013004 +092003 +089017 +067002 +017001 +033013 +040002 +089010 +092004 +090013 +090008 +092004 +089009 +089017 +092004 +012001 +092003 +092004 +083003 +092004 +001002 +040002 +092003 +092004 +088038 +092003 +089015 +015006 +067002 +084002 +093002 +089015 +083003 +092004 +007002 +015029 +092004 +015006 +084002 +092004 +092004 +053009 +089017 +092004 +053009 +089017 +092004 +053009 +089015 +033006 +092004 +089004 +058004 +037003 +092007 +042002 +089024 +092004 +092003 +037005 +092004 +037003 +092007 +089009 +092007 +042002 +089015 +092004 +093001 +033006 +092004 +033014 +092003 +060002 +033006 +089015 +033014 +092001 +089015 +033006 +092003 +089004 +058004 +037003 +092007 +042002 +092004 +053005 +092004 +093001 +090003 +001002 +013001 +089024 +090003 +009001 +033014 +092001 +089015 +033011 +089020 +092004 +033006 +089010 +033006 +090003 +001002 +033006 +089008 +25944 069002 +031006 +092004 +089023 +033006 +090003 +009001 +025022 +092004 +011001 +089007 +059003 +031001 +092004 +093001 +090006 +070 +053009 +013001 +089015 +033014 +092004 +093001 +033006 +069002 +028001 +089015 +092004 +093001 +033006 +092004 +069003 +092001 +033006 +092003 +089004 +058004 +037003 +092007 +042002 +089015 +068001 +092004 +089012 +033003 +033006 +003003 +009002 +043 +089017 +085002 +007006 +089017 +019006 +007007 +089017 +045 +007002 +089015 +057013 +092004 +043 +089015 +015004 +089015 +015004 +084002 +092004 +043 +092004 +067001 +087005 +089009 +090003 +092004 +043 +057009 +063004 +092004 +043 +092004 +003003 +089015 +018001 +092004 +019001 +089015 +015004 +057005 +089015 +067002 +015004 +084002 +092004 +058006 +087005 +092007 +019001 +089017 +088016 +089015 +058006 +015004 +092007 +020004 +089017 +059001 +058006 +089017 +092006 +019001 +089017 +092006 +020004 +059008 +057001 +060002 +010002 +025003 +015004 +092004 +061 +084002 +092004 +033006 +090006 +087002 +092004 +010002 +092001 +089023 +092007 +092004 +043 +090013 +092004 +033006 +090006 +092007 +013001 +092004 +057009 +084002 +020004 +092004 +089015 +092002 +013001 +092004 +057009 +089015 +018001 +020004 +092004 +089015 +015026 +092004 +084002 +092004 +003003 +092004 +042002 +092004 +057001 +092004 +003003 +015001 +089015 +020003 +092004 +043 +089015 +057008 +092004 +003003 +058006 +069003 +092004 +033005 +092007 +033005 + +092006 +030007 +092004 +045 +092007 +013002 +013002 +007003 +079023 +090003 +012001 +013004 +092007 +089017 +013001 +025020 +26143 024001 +092002 +089015 +068005 +092004 +037006 +26150 025022 +092004 +011001 +089007 +032002 +090006 +090006 090008 +092004 +092004 +033003 +033006 +089015 +015004 +092004 +015004 +26166 015004 +084002 +092004 +092004 +092004 +011002 +089017 +092004 +011003 +089009 +092004 +027003 +033006 +089015 +015006 +033006 +092004 +033017 +028001 +090006 +088005 +013001 +089017 +069002 +030002 +092003 +090006 +092004 +089007 +069002 +030007 +26198 030007 +009001 +089023 +26202 070 +092004 +041001 +092004 +012001 +033017 +071004 +057012 +057014 +037004 093001 +089024 +069002 +057012 +089024 +069002 +057012 +089023 +092004 +028001 +092004 +092004 +088029 +033006 +092004 +092004 +092001 +027003 +015023 +092001 +006011 +089009 +024001 +089015 +092004 +015023 +089015 +033006 +092004 +092004 +092004 +058005 +092007 +089017 +092004 +033005 +089015 +092004 +033006 +092004 +037004 093001 +089015 +092004 +093001 +033006 +092004 +092004 +037004 093001 +057012 +037004 093001 +089017 +092004 +092004 +012001 +092004 +012001 +089015 +025020 +089007 +092004 +089015 +015006 +084002 +092004 +011002 +26277 033006 +023007 +069002 +013003 +089015 +033014 +092004 +033006 +033017 +093001 +033005 +092002 +090006 +089010 +092004 +010003 +023007 +089017 +085004 +010004 +26298 069002 +015004 +010002 +089009 090006 +057007 +092004 +010003 +092004 +092004 +010004 +089015 +023003 +010002 +092004 +010003 +092004 +060002 +010003 +013003 +091001 +092004 +060003 +057007 +010004 +089015 +023007 +069002 +015004 +010002 +089015 +092004 +060003 +057007 +092004 +089015 +023007 +069002 +085004 +010002 +089015 +092004 +060003 +064 +089015 +092004 +060002 +069002 +015004 +010002 +061 +059003 +089017 +092004 +010004 +023007 +067002 +092004 +023007 +26357 023007 +092004 +092004 +010004 +013001 +089007 +092004 +060002 +057001 +092004 +010004 +033006 +092004 +092004 +093001 +069004 +26375 031008 +069002 +032001 +092004 +033005 +069003 +092004 +076 +092004 +012001 +089007 +26387 089021 +023007 +023007 +069003 +034010 +069003 +034010 +089023 +013001 +064 +012001 +083003 +092004 +001002 +26402 089004 +092004 +023007 +090006 +023007 +069004 +033005 +083003 +092004 +033005 +093001 +083005 +092004 +003003 +092004 +033006 +092004 +092004 +012001 +033006 +092001 +092004 +012001 +093001 +089017 +012001 +093001 +089017 +012001 +093001 +069002 +013001 +012001 +023007 +089023 +023007 +059002 +031008 +089015 +015005 +092004 +092004 +053009 +024002 +092004 +033050 +26449 090006 +072002 +033014 +092004 +033014 +092004 +092007 +013001 +033032 +065006 +059003 +033014 +092004 +093001 +090006 +065006 +013001 +024002 031007 +093001 +012001 +092004 +012001 +092002 +012001 +063001 +013001 +089017 +025003 +012001 +092004 +012001 +092003 +090003 +063001 +092004 +026 +092003 +089017 +090003 +063001 +092004 +026 +092003 +089017 +090003 +063001 +092004 +026 +092003 +089017 +090003 +063001 +092004 +074 +092003 +060003 +092007 +025003 +092004 +011003 +092003 +064 +092003 +087003 +092007 +058006 +033032 +069002 +013001 +089015 +033006 +092004 +092004 +053009 +065003 072002 +033017 +26526 070 +033006 +090006 +063001 +013003 +089017 +069002 +013003 +058006 +089023 +092004 +089017 +092004 +025003 +092004 +090003 +063001 +092004 +026 +089017 +090003 +063001 +092004 +032004 +089017 +090003 +063001 +092004 +074 +089017 +092004 +025003 +092004 +011003 +064 +092004 +078002 +013001 +059003 +092004 +053002 +089017 +053002 +089015 +092004 +093001 +024001 +092004 +090006 +032004 +033004 +033006 +092004 +069002 +083005 +013001 +084001 +092004 +037004 +092004 +012001 +089015 +092004 +067006 +025014 +092004 +033014 +089015 +033004 +092004 +093001 +033006 +033017 +083003 +092004 +007002 +092004 +033006 +092004 +053009 +090006 +092004 +053009 +010002 +093001 +013001 +092008 +093001 +033006 +090001 +092004 +012001 +092004 +088003 +033006 +012001 +092004 +012001 +092001 +017002 +087003 +082002 +092001 +067006 +071001 +085002 +092004 +039001 +092003 +037001 +092004 +037001 +092003 +092008 +093001 +033009 +092004 +012001 +089017 +089014 +092004 +010002 +013001 +089017 +092004 +078001 +011001 +024002 +092004 +025011 +089017 +067007 +092004 +033017 +092004 +033006 +027006 +26664 092004 +053009 +092004 +025010 +013001 +006017 +015029 +089017 +033003 +083003 +092004 +057016 +089017 +087002 +083003 +092004 +007002 +089017 +087002 +083005 +092004 +023001 +092004 +057021 +092004 +057001 +092004 +010004 +089017 +088029 +067005 +033013 +092007 +090013 +078002 +056005 +089015 +017002 +083007 +092004 +006016 +024001 +092004 +092004 +011001 +085002 +006011 +084002 +092004 +006016 +089017 +059001 +057003 +085002 +059002 +089015 +015006 +092004 +010004 +057006 +085002 +006011 +060002 +089019 +089019 +006011 +089015 +033029 +092004 +036004 +092004 +033006 +092004 +072001 +033006 +092003 +090006 +092004 +010004 +092007 +092004 +057006 +078002 +085002 +059003 +092004 +085002 +084002 +092004 +006016 +089007 +059003 +090003 +092004 +059006 +092004 +085002 +089023 +092007 +090003 +092004 +057005 +092004 +085002 +059003 +059001 +057001 +063001 +092004 +057001 +092004 +089015 +015004 +092004 +084001 +092004 +007002 +033006 +092004 +092004 +092004 +036004 +092004 +033017 +091003 +058004 + +089017 +058004 +007001 +089015 +092004 +093001 +033006 +092004 +024001 +092007 +092004 +079028 +007001 +069002 +069002 +085003 +083008 + + +092006 +069002 +069002 +020003 +089015 +017002 +092004 +083008 +092004 +001007 +092004 +003002 093002 +083007 +092004 +007002 +033014 +092004 +028004 +028004 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +033006 +092002 +067002 +092007 +013004 +089017 +092004 +092004 +033056 +26846 067002 +092007 +059003 +068003 +089015 +092004 +093001 +068001 +033006 +092004 +027006 +089009 +092004 +092003 +031002 +059001 +015006 +090006 +092004 +033009 +092001 +033006 +090006 +092001 +013001 +089017 +059001 +031002 +089017 +26876 033015 +055002 +089017 +033015 +055002 +069002 +025022 +071005 +013004 +089023 +067006 +092004 +067003 +089007 +055002 +011003 +090008 +011003 +089017 +001012 +090008 +001012 +013004 +014010 +089016 +080001 +013004 +023001 039008 +068001 +024006 +092007 +089023 +027006 +092003 +092004 +037007 +092003 +084002 +011003 +089017 +083003 +007002 +019001 +089017 +083006 +037004 +089017 +037004 +017001 +090010 +092001 +089009 +033020 +092004 +089017 +084002 +059003 +092004 +011003 +060003 +033019 +092004 +033015 +071005 +089017 +067002 +015023 +092003 +037007 +069002 +025021 +092004 +033006 +089023 +071001 +092006 +013004 +092003 +067002 +092007 +092004 +067001 +092007 +033006 +089007 +069002 +013001 +092003 +092004 +033006 +089023 +092004 +012001 +092004 +088003 +089017 +037007 +010003 +010003 +089009 +023007 +089017 +010002 +010002 +089017 +039007 +010002 +090008 +010002 +089017 +020004 +092004 +089017 +26990 088026 +090001 +059003 +090010 +092004 +033009 +092001 +089023 +092004 +025015 +067006 +067003 +092007 +021005 021006 +089023 +27006 027001 +092004 +053004 +092004 +053004 +085001 +083002 +069002 +071004 +092004 +033005 +030001 032001 +067002 +092004 +083003 +092004 +093002 +015004 +084002 +092004 +001007 +092004 +083008 +092004 +007003 +069002 +015011 +069003 +015008 +092004 +015024 +084001 +092004 +007002 +092004 +089017 +092004 +083003 +092004 +001015 +069002 +015007 +084002 +092004 +083006 +015024 +092004 +006017 +092004 +089023 +022001 +092004 +023003 +023003 +023003 +089017 +092004 +023001 +067007 +092007 +092004 +067008 +089023 +033013 +090006 +069002 +013004 +067009 +089007 +013004 +092004 +067008 +092007 +022001 +064 +069002 +013004 +064 +067006 +067003 +042003 +092006 +042003 +092004 +012001 +067006 +092004 +067002 +089017 +069002 +069002 +013004 +089017 +089023 +27101 059007 +012001 +092004 +067008 +071003 +069002 +021005 +059003 +009001 +089023 +090010 +092004 +030006 +092006 +030006 +059007 +092004 +067008 +089015 +089010 +067002 +092004 +092003 +033006 +091003 +083001 +092004 +053009 +091003 +083001 +069002 +031006 +27134 013003 +053009 +089017 +053009 +089015 +27140 033056 +089017 +033056 +089009 +092004 +031002 +089010 +071001 +092004 +030006 +089023 +092003 +027006 +033024 +092003 +059003 +089023 +067007 +092007 +092004 +067008 +067002 +092004 +022001 +092007 +092004 +001004 +014007 +089017 +092004 +001004 +069002 +013004 +092004 +014006 +092004 +089017 +092004 +001004 +27180 015012 +084001 +092004 +001002 +089017 +092004 +012002 +092004 +083003 +092004 +001002 +016 +089015 +067002 +024001 +092004 +009001 +092004 +009001 +015006 +089013 +001005 +089013 +076 +059002 +089017 +076 +089015 +067002 +015004 +092004 +012001 +089015 +015013 +092004 +030006 +092004 +090003 +092004 +060002 +014002 +084001 +080002 +001006 +084002 +080002 +001002 +27228 090002 +092004 +003002 +027001 +092004 +033003 +067002 +067002 +092004 +003005 +092004 +079021 +013002 +089015 +023011 +092004 +003005 +028001 032002 +090006 +067002 +092004 +067009 +013001 +061 +089017 +092003 +27255 024001 +092007 +013004 +028001 032002 +090006 +067002 +013001 +067002 +007003 067002 +072001 +033006 +092003 +090006 +069002 +069002 +013003 067005 +092004 +010001 011001 +092007 +067006 +27276 092007 +059003 +013004 +092004 +001001 +27282 092004 +001001 +013003 +089023 +092004 +033006 +092001 +069002 +013003 +089023 +089004 +092004 + +092007 +089024 +092004 +067009 +092004 +028001 +069003 +092004 +012001 +083003 +001002 +069003 +092004 +012001 +089023 +27311 092004 +012001 +027006 +027006 +089007 +069002 +028001 +067002 +092004 +067001 +013004 +064 +009002 +085001 +085002 +092004 +007002 +092004 +089017 +037005 +092004 +087005 +092004 +092004 +037003 +059003 +092004 +042004 +092004 +089017 +092004 +046 +033032 +090006 +027006 +089008 +027006 +089007 +069002 +028001 +067002 +092004 +057001 +092004 +007002 +015006 +089024 +067009 +089024 +067004 +089024 +067009 +089024 +067009 +089009 +015006 +067005 +027002 +092003 +023005 +089017 +092006 +092003 +033006 +059003 +033006 +027006 +27379 013004 +092004 +051 +089017 +092004 +005001 +067002 +060002 +067009 +089017 +013001 +092004 +053009 +089017 +092004 +053009 +092004 +092004 +089014 +088021 +037006 +020004 +089007 +033006 +069002 +067007 +092004 +051 +27409 013004 +039008 +092004 +087004 +089015 +085001 +092004 +083003 +093002 +083003 +092004 +007002 +093001 +092004 +023009 +017006 +092004 +015006 +009003 +057001 +006016 +006021 +006021 +079020 +065001 +019004 +092004 +006016 +047001 +092004 +092004 +008002 +27442 092004 +27444 088024 +089020 +092004 +27449 092004 +065001 +092007 +092004 +006021 +013004 +089007 +074 +092007 +092004 +006021 +057015 +078002 +006011 +060002 +089015 +057008 +092004 +057006 +089017 +033046 +092004 +089023 +092004 +093001 +033006 +013004 +092004 +092004 +092004 +022001 +090014 +088001 +042002 +090011 +090013 +092001 +089007 +067005 +092004 +057006 +27491 089020 +092004 +089017 +067002 +025001 +074 +092004 +088001 +042002 +089023 +092001 +069002 +067005 +27505 092006 +057001 +042002 +090011 +006021 +092004 +008001 +092001 +089009 +092004 +052 +089017 +072001 +033006 +092003 +071001 +083002 +033019 +092004 +033015 +083003 +063001 +092004 +009001 +089017 +092006 +042002 +092007 +033006 +089009 +029002 +092004 +089015 +093001 +093001 +092004 +060002 +092004 + +015004 +084002 +092004 +053009 +089009 +092004 +037007 +092004 +089015 +092004 +033015 +025011 +089015 +033025 +092004 +006011 +057012 +089015 +013001 +092004 +092004 +067001 +037007 +089015 +092004 +060003 +067009 +092004 +005001 +27574 092004 +004001 +053002 +033006 +092004 +092004 +036004 +092004 +025001 +083002 +015004 +077 +089009 +023001 +092004 +051 +089015 +015004 +060002 +092004 +036004 +092004 +089017 +033006 +092004 +015001 +084002 +092004 +001014 +089015 +015005 +092003 +009002 +006016 +002004 +015024 +015017 +092004 +089015 +071001 +083002 +015008 +033006 +092004 +057001 +090006 +092004 +033017 +033006 +083002 +085001 +092004 +007003 +092001 +083002 +092004 +051 +089020 +092004 +036004 +092001 +023001 +089015 +092004 +092003 +028003 +007003 +079028 +046 +077 +089015 +083001 +077 +092002 +089015 +015004 +092004 +036004 +089015 +015001 +084002 +092004 +001014 +089015 +027002 +064 +033006 +092004 +089015 +077 +092004 +051 +089015 +067009 +013004 +015001 +089020 +092004 + +089017 +092004 +017006 +089017 +023001 +092004 +093001 +033006 +072001 +033006 +092003 +090006 +037007 +092001 +060002 +063004 +092003 +092004 +023001 +089020 +092001 +068001 +025023 +089015 +033006 +092004 +060002 +089016 +060002 +069005 +092001 +089015 +092004 +033006 +092004 +060002 +092004 + +092004 +047002 +089020 +092001 +084002 +092004 +006016 +089007 +089023 +092004 +009001 +092004 +009001 +023007 +064 +033005 +090006 +092004 +089023 +022001 +092004 +009002 +092007 +090001 +092006 +092004 +009001 +092004 +009001 +037007 +065005 +092004 +089010 +069002 +023003 +092004 +009002 +092007 +089015 +023001 +092004 +018001 +005001 +033037 +019004 +089015 +057008 +092004 +089015 +033006 +018001 +092007 +013001 +092004 +008001 +092001 +089015 +018001 +006016 +033036 +057008 +092004 +089015 +023001 +084001 +092004 +059003 +089015 +033006 +092004 +092007 +013001 +092004 +023007 +092001 +092004 +034005 +092004 +014005 023007 +090009 +059001 +072001 +033006 +092003 +090006 +067006 +069002 +069002 +023001 +090003 +092004 +013002 +092004 +003003 +067006 +092004 + +092007 +27810 092004 +023001 +067005 +083003 +092004 +037004 +092004 +012001 +089015 +033007 +015004 +084002 +092004 +001007 +092004 +003002 093002 +089015 +033006 +092004 +092004 +093001 +090006 +059003 +031008 +089007 +033005 +020004 +092004 +044 +089015 +092004 +004001 +015014 +089023 +067002 +092004 +023007 +092001 +015015 +092003 +084002 +092004 +093002 +089023 +092004 +093001 +033006 +092004 +089010 +27860 059003 +031008 +091002 +069002 +092001 +089015 +033006 +092004 +092004 +093001 +072001 +033006 +092003 +090006 +092003 +067010 +092007 +092004 +067009 +067002 +27881 060005 +004002 +014009 +060005 +092001 +033022 +089023 +092004 +078002 +033006 +089010 +071005 +092001 +023007 +092003 +069002 +069002 +092003 +033022 +089015 +064 +089017 +059003 +033006 +089015 +015006 +084002 +001015 +092006 +092004 +033009 +093002 +089015 +033006 +092004 +036004 +092004 +017002 +083001 +067007 +033013 +089015 +015023 +092004 +093001 +089017 +092004 +093001 +089017 +092004 +093001 +089020 +092004 +089015 +068001 +025020 +089017 +025021 +089015 +033006 +092004 +025023 +013001 +092004 +026 +092001 +078005 +023007 +085003 +083001 +089017 +027006 +089015 +015001 +081003 +017005 +083008 +092004 +001006 +089017 +033013 +090006 +089010 +071001 +013001 +013003 +084001 +092004 +092004 +067001 +089017 +033006 +012001 +092004 +012001 +059003 +071001 +092003 +090014 +092004 +090014 +092007 +27984 092001 +089023 +069002 +092004 +092001 +025001 +089023 +092004 +092003 +089015 +015006 +089015 +027002 +092004 +023005 +089015 +033006 +092004 +093001 +093001 +023005 +069004 +074 +060002 +067009 +023005 +023005 +089017 +033013 +089009 090006 +069002 +013004 +013002 +088038 +089023 +092004 +026 +025006 +089023 +092004 +026 +074 +089015 +067002 +015004 +033013 +092004 +058005 +033006 +033006 +089015 +067002 +015006 +027002 +092004 +023005 +089007 +28042 023005 +092004 +092004 +023005 +089017 +069002 +028001 +092004 +033004 +092004 +089015 +015006 +092004 +060003 +089015 +033006 +092004 +023005 +092004 +067006 +089017 +023006 +059005 085001 +013004 +092004 +067001 +091003 +037001 +092004 +009001 +092004 +009001 +28075 092004 +037001 +092004 +088038 +017001 +015004 +091003 +092004 +037007 +092001 +015005 +089015 +067002 +067006 +092004 +033006 +015006 +28093 093001 +092004 +092004 + +089017 +089020 +092004 +011001 +089020 +006007 +089017 +006007 +090003 +092004 +053009 +089017 +092004 +053009 +089017 +092004 +053009 +28115 090012 +092004 +037007 +092004 +033056 +092004 +033006 +071001 +092006 +034009 +092004 +013001 +037006 +092004 +089015 +015023 +021003 +089015 +015006 +067002 +015005 +092004 +033006 +033017 +089015 +034009 +092004 +089015 +092004 +037006 +092004 +037006 +092004 +089017 +037006 +092004 +089023 +092004 +092004 +092004 +085001 +015025 +092004 +006007 +019001 +092004 +087005 +092004 +053009 +089017 +085002 +092004 +092004 +008002 +089015 +033004 +092004 +093001 +033006 +092004 +064 +090008 +057021 +015004 +089020 +006007 +089017 +006007 +037006 +092001 +28186 067005 +085001 +089020 +092003 +083003 +092004 +007002 +033017 +089017 +069002 +037006 +092001 +089023 +089009 +013004 +092004 +033005 +089015 +015004 +092004 +015004 +059003 +089015 +009002 +092004 +015020 +092004 +049 +006017 +083008 +049 +089015 +037006 +092004 +089023 +092004 +085004 +092004 +006017 +049 +015004 +089015 +015023 +092004 +093001 +084002 +092004 +053009 +089015 +015013 +059003 +092004 +053009 +089017 +092004 +053009 +089017 +092004 +053009 +089015 +092004 +093001 +28249 083005 +015017 +092004 +084002 +083003 +084002 +092004 +007002 +092004 +053009 +089015 +28261 017002 +089020 +092004 +035002 +089017 +079014 +083005 +092004 +002003 +28271 092004 +053009 +089017 +063001 +092004 +011003 +013001 +090008 +092004 +093001 +033020 +089009 +092004 +020004 +092004 +28287 069002 +027002 +089007 +059001 +033020 +090008 +092004 +28295 058005 +092004 +033020 +069002 +013001 +089015 +092004 +017001 +033020 +090008 +092004 +033006 +090006 +092002 +024002 +092004 +033006 +090006 +092001 +020003 +092004 +007002 +092007 +092004 +042003 +089015 +067007 +060002 +067009 +058006 +042003 +045 +28328 069003 +061 +058005 +013001 +092004 +033020 +092004 +089015 +017001 +083003 +083003 +092004 +053009 +056004 +092004 +093001 +033006 +069004 +033004 +092004 +092004 +092007 +092003 +033020 +089023 +092004 +033008 +089017 +069002 +033014 +092004 +067002 +092004 +053009 +056004 +092004 +089017 +033006 +092004 +092003 +013001 +092004 +053009 +092004 +012001 +092004 +033037 +089015 +092004 +093001 +033006 +092001 +013001 +089017 +024001 +092004 +009001 +092004 +009001 +087003 +082002 +092004 +012002 +017002 +089017 +015006 +089020 +092004 +001005 +092004 +001002 +089015 +092004 +053009 +019003 +092004 +006017 +092004 +033006 +092004 +067006 +057005 +033020 +28412 024002 +092004 +033042 +092004 +092003 +028003 +089015 +092004 +059003 +056005 +092004 +088038 +013001 +023007 +089015 +068001 +092004 +023002 +092004 +089017 +079025 +092004 +092004 +008002 +089017 +019001 +092004 +089017 +033006 +092004 +033053 +089017 +092004 +035002 +019001 +092004 +090014 +089017 +085001 +092004 +093001 +083009 +083003 +092004 +007002 +015006 +092004 +092004 +087005 +092004 +053009 +089015 +024001 +092004 +093001 +079014 +024001 +092004 +033006 +089017 +092003 +089020 +092004 +093002 +092004 +093001 +085001 +089023 +092004 +033022 +033006 +069003 +028001 +069003 +032001 +092003 +092004 +033006 +089015 +015004 +084002 +084002 +092004 +007003 +089015 +092004 +087005 +024001 +092004 +068001 +067002 +033006 +092004 +017001 +090006 +092007 +090003 +092004 +013001 +089023 +092004 +067002 +033022 +089015 +067002 +067005 +067002 +092004 +085001 +033006 +092004 +093001 +070 +090003 +092004 +013001 +089007 +089017 +093002 +013001 +089015 +092004 +068001 +033055 +089017 +033054 +090006 +069002 +028001 +092004 +009002 +092007 +092006 +033006 +089015 +067002 +067002 +060003 +004002 +014009 +089015 +029002 +092004 +093001 +092004 +033006 +089014 +033006 +092004 +092004 +093001 +090006 +067002 +004002 +060005 +014009 +060005 +092001 +033022 +089015 +030001 068001 +025012 +089015 +067002 +067009 +092004 +053009 +030004 +28581 089020 +092004 +053009 +089017 +053009 +089017 +063001 +092004 +011003 +037008 +092004 +093001 +015023 +089015 +037007 +093001 +089015 +056004 +092004 +092004 +093001 +092003 +013001 +092004 +037004 +092004 +093001 +089015 +092004 +033014 +092004 +033006 +092003 +033006 +089015 +033048 +092004 +092004 +053009 +059001 +089015 +092004 +093001 +067002 +056004 +092004 +033006 +069004 +033004 +092004 +091003 +059001 +092003 +033048 +089023 +092004 +093001 +067006 +092004 +033014 +089008 +025020 +092004 +093001 +28646 067002 +051 +037010 +092004 +092004 +037008 +092006 +033012 +28656 037008 +092004 +033009 +093001 +089020 +092004 +039007 +28664 067007 +092004 +039007 +020004 +090011 +089015 +015010 +092004 +011001 +068001 +033012 +064 +042002 +092004 +089015 +092004 +093001 +033004 +092004 +033006 +025001 +037010 +092003 +092004 +037004 +092004 +093001 +089007 +028001 +090006 +089007 +088022 +037007 +092004 +092004 +053009 +089023 +092004 +053009 +039008 +092004 +011001 +089009 +089023 +092004 +093001 +037010 +092004 +089015 +092004 +093001 +067002 +033004 +033006 +092004 +089008 +092004 +042002 +092006 +033009 +092004 +037004 +092004 +093001 +089015 +092004 +089017 +033006 +020004 +092004 +089023 +092004 +093001 +033006 +092004 +091001 +090011 +092004 +088015 +089023 +092004 +078002 +033006 +020004 +092004 +089015 +092004 +093001 +025001 +092004 +011001 +092004 +025008 +025008 +037010 +092004 +092004 +093001 +089015 +037007 +092004 +093001 +019001 +089009 +020004 +089015 +092004 +055004 +056008 +092004 +083003 +092004 +007002 +089019 +089019 +007002 +089015 +033029 +063001 +092004 +055003 +089015 +049 +092004 +006017 +089015 +085002 +092004 +049 +003003 +006018 +089015 +068001 +033003 +092004 +033003 +037004 +092004 +093001 +089015 +019001 +092004 +092004 +008002 +003005 +089017 +023002 +092004 +089017 +017003 +092004 +017003 +017005 +092004 +089015 +28820 033044 +092004 +049 +092004 +092004 +006017 +089015 +049 +092004 +092004 +006017 +092004 +089015 +015023 +092004 +089009 +020004 +092004 +089015 +037002 +015003 +092004 +093001 +093002 +015006 +084001 +001013 +092004 +010002 +093001 +089017 +093001 +090006 +015024 +092004 +006006 +092004 +089015 +015023 +092004 +084002 +092004 +080001 +093002 +089019 +089019 +28867 008002 +080001 +089015 +057008 +092004 +006020 +006020 +089023 +092006 +069002 +057009 +089015 +020004 +092004 +089015 +057008 +092004 +006017 +092004 +015026 +006023 +090006 +092004 +092004 +092004 +015024 +28894 013001 +067009 +060003 +28898 020004 +092004 +089017 +28902 033005 +092004 +033005 +092004 +056003 +092004 +092004 +037004 +092004 +093001 +089017 +089020 +092004 +020004 +060002 +057021 +28920 082002 +089017 +28924 082002 +092004 +089015 +092004 +015003 +033042 +092004 +016 +092004 +008002 +092004 +089017 +033006 +033044 +092004 +020003 +092004 +007002 +089015 +045 +067007 +060002 +067009 +021005 +092003 +015011 +084001 +092004 +006006 +064 +089017 +092004 +053009 +033044 +090013 +092005 +089020 +092004 +053009 +033006 +058006 +021005 +092004 +021005 +069002 +074 +092004 +053009 +092004 +037004 +093001 +015011 +067002 +084001 +092004 +006006 +089009 +024001 +089015 +031006 +089017 +092004 +020004 +089020 +092004 +033042 +092004 +089015 +013004 +067009 +060003 +014007 +013002 +083008 +063001 +092004 +001011 +067006 +067009 +060003 +089015 +092004 +060003 +067009 +033006 +092004 +093001 +033006 +078001 +012001 +012001 +089007 +035008 +089019 +089019 +033010 +092004 +012001 +092001 +092004 +012001 +092001 +29028 035008 +092001 +089015 +092004 +092004 +017001 +024002 +033006 +091003 +093001 +033029 +089015 +092004 +015030 +089015 +059004 +006016 +006019 +085002 +003005 +023001 +092004 +033006 +013004 +027001 +090006 +015006 +093001 +015011 015024 +092004 +089015 +092004 +093001 +090011 +033006 +078001 +023007 +089015 +092004 +006017 +092004 +007002 +019003 +013002 +060002 +084001 +084001 +084002 +083009 +089015 +092004 +055004 +092004 +017001 +083007 +083007 +092004 +024001 +090006 +061 +023007 +033006 +070 +092007 +092004 +009002 +012001 +012001 +085001 +29099 089017 +009003 +29102 083005 +024001 +083003 +092006 +089017 +093001 +092004 +093001 +089017 +093001 +092004 +093001 +092004 +067005 081003 +089017 +093001 +010002 +089017 +093001 +092006 +067007 +085001 +083003 +092004 +093002 +036004 +092004 +089017 +035004 +092004 +089017 +058006 +059001 +092004 +015019 +092004 +084002 +093002 +089015 +067002 +067009 +013004 +089007 +013001 +067010 +089019 +089019 +067010 +015006 +093001 +092004 +090003 +093002 +087003 +011003 +092006 +089017 +092008 +29161 085003 +092004 +037004 +092004 +012001 +025014 +015008 +084002 +092004 +093001 +089015 +033012 +092004 +008001 +092004 +093001 +089015 +092004 +093001 +025020 +090006 +067002 +023007 +089015 +033029 +092004 +055004 +033014 +092004 +090006 +067002 +023007 +089015 +027001 +090003 +092004 +055004 +057008 +092004 +008001 +092004 +093001 +089015 +057015 +006017 +015024 +092004 +079026 +092004 +006017 +089015 +29213 092004 +084002 +29216 092006 +29218 019002 +090003 +002005 +089015 +015035 + +084002 +092004 +007003 +092004 +007007 +089017 +092004 +093001 +092004 +093001 +089017 +093001 +092004 +093001 +024001 +083002 +085002 +089015 +067005 +092004 +067009 +093001 +092004 +093001 +089017 +093001 +092004 +092004 +093001 +089017 +093001 +057015 +006021 +089009 +015006 +047003 +092004 +089015 +078001 +067009 +092004 +29266 092004 +067009 +015006 +084002 +092004 +29272 015010 +092004 +001004 +089017 +033006 +090013 +092004 +092004 +015035 +092002 +092004 + +084001 +092004 +007003 +092004 +007007 +089015 +024001 +024001 +090006 +29294 092004 + +089007 +013001 +079028 +078001 +089015 +015008 +084002 +092004 +007007 +024001 +009002 +017002 +083005 +092004 +082002 +049 +006017 +079007 +089015 +025020 +089015 +092004 +033006 +092004 +069002 +025020 +027004 +093001 +092004 +093002 +092004 +020004 +023007 +069002 +085001 +083001 +091003 +092004 +080001 +083002 +085002 +092004 +089023 +015004 +033006 +092004 +036004 +092004 +089017 +092004 +093001 +090006 +015015 +092003 +084002 +092004 +093002 +083001 +092004 +024001 +064 +033006 +092003 +089015 +015004 +015004 +084001 +092004 +007007 +089007 +090013 +092004 +016 +089017 +025020 +089015 +092004 +092004 +033006 +089007 +025022 +29378 023007 +067009 +060003 +067009 +024001 +060003 +093001 +092004 +093001 +084001 +092006 +053011 +060002 +012001 +092007 +015004 +033015 +092004 +089020 +092004 +085001 +025012 +089017 +025012 +091002 092007 +033015 +090006 +023007 +089017 +024001 +090001 +092004 +031006 +089015 +067002 +092007 +060002 +090003 +092004 +015029 +024001 +013001 +058006 +058002 +015002 +084002 +001013 +092007 +015004 +033015 +092004 +063005 +069003 +092007 +031006 +089015 +067002 +023001 +092004 +092004 +060002 +024001 +089015 +033046 +092004 +031010 +092004 +089017 +088028 +089007 +092004 +024001 +092004 +023007 +069002 +031006 +089015 +033006 +033014 092004 +015001 +084002 +092004 +001006 +059003 +033019 +092004 +033015 +063001 +092004 +042003 +092004 +031010 +089017 +053005 +021006 +089023 +092004 +031009 +056005 +089017 +033056 +092007 +092004 +031010 +013004 +089012 +092004 +033009 +092001 +012001 +053011 +033001 +028003 +033006 +004004 +015024 +089011 +023007 +092004 +023001 +069002 +069002 +092004 +020002 +083008 +023009 +008002 +085002 +089015 +023008 065003 +023008 +089023 +089008 +092004 +012001 +093001 +067002 +092004 +033006 +092004 +015024 +084002 +092004 +001002 +089015 +017002 087003 +087003 +082002 +092004 +012001 +089023 +092007 +015004 +033019 +083002 +092004 +012001 +042002 +089017 +092004 +033019 +028003 031009 +089012 +092004 +013004 +033056 +089023 +059003 +092004 +033032 +092004 +089020 +092004 +093001 +067005 +033015 +089015 +067002 +092007 +089017 +092008 +092004 +093001 +084001 +082001 +29564 084002 +082001 +015004 +090001 +092004 +092004 +053001 +089017 +023007 +033019 +092004 +067005 +021006 +089007 +059001 +068005 +062002 +033003 +090006 +092004 +013004 +083003 +092002 +013004 +064 +033017 +092002 +092004 +067006 +058003 +024001 +089017 +035002 +013001 +092004 +033019 +030006 +089017 092001 +027004 +067005 +063001 +072002 +061 +092003 +033005 +087003 +093001 +089009 +032002 +090006 +092006 +033015 033017 +033019 +092004 +031006 +091001 +067007 +092004 +067008 +093001 +037004 +092004 +093002 +053009 +092004 +033009 +093001 +063004 +011002 +093001 +089017 +010004 +092004 +063004 +092004 +010002 +093001 +089017 +092004 +033009 +092004 +093001 +089017 +013001 +088002 +059003 +090005 +092004 +012001 +041001 +089004 +059003 +092004 +033032 +089017 +033033 +092004 +012001 +088038 +089017 +069002 +013003 +092004 +010002 +089007 +013001 +092004 +093001 +023003 +089017 +059003 +067005 +29678 092004 +067005 +092004 +089017 +013004 +067007 +092004 +053009 +092004 +067007 +092004 +061 +092004 +011002 +092004 +083006 +092004 +012001 +089005 +092004 +041002 +092004 +053009 +030006 +092004 +053002 +015008 +084002 +092004 +007002 +092004 +012001 +089017 +059003 +092004 +011001 +092004 +011001 +085001 +033013 +083004 +092004 +067001 +092004 +053002 +089017 +024001 +092004 +012001 +012001 +085001 +29730 082002 +092004 +006015 +092004 +053002 +089015 +025021 +093001 +024001 +089017 +025022 +013004 +090013 +092004 +089015 +033006 +090013 +092004 +092004 +012001 +069002 +025022 +093001 +089007 +024002 +092004 +033012 +092003 +089017 +092004 +010004 +092003 +093001 +023003 +010002 +092003 +089015 +033009 +092004 +033009 +092004 +093001 +089017 +013004 +092003 +025011 +089017 +025011 +089017 +059001 +089007 +092004 +023003 +092004 +025011 +089007 +013001 +087003 +090005 +012001 +089017 +006019 +29793 006019 +069002 +069002 +023001 +089017 +012001 +088003 +059004 +067006 +067002 +008002 +010002 +092004 +089017 +059001 +092004 +011003 +093001 +031008 +090009 +012001 +092004 +012001 +092004 +089017 +092004 +015015 +083006 +092004 +089013 +012001 +089017 +076 +093001 +025008 +026 +010002 +29831 010002 +089017 +036003 +089008 +026 +088002 +077 +012001 +011002 +077 +089015 +033006 +093001 +090013 +092004 +012001 +29849 028001 +092007 +089007 +092001 +013001 +009002 +089017 +092004 +010004 +092001 +067005 +29861 092004 +067005 +092004 +089015 +033004 +092004 +012001 +033006 +092004 +092001 +013001 +093001 +092004 +017001 +083006 +092004 +012001 +089017 +015004 +033006 +090013 +092003 +089017 +033015 +092003 +092007 +089017 +091003 +29890 033008 +089017 +069002 +074 +033006 +067006 +092006 +067008 +013004 +092007 +089007 +29902 069002 +031006 +092004 +033006 +092001 +29908 013004 +067008 +092004 +067001 +092004 +091001 +29915 025021 +092004 +011001 +092004 +093001 +089017 +025020 +067007 +092004 +067005 +083003 +092004 +007002 +092004 +089015 +015004 +069002 +074 +033006 +092004 +089015 +032002 +090006 +033056 +024001 +083003 +092004 +007002 +29944 092004 +29946 033056 +092004 +089017 +068002 +033006 +089015 +013004 +067002 +067003 +092004 +067008 +092004 +053001 +092004 +015004 +084002 +092004 +007002 +092004 +089015 +067002 +092007 +092004 +067008 +023003 +093001 +092004 +010004 +092004 +089015 +028005 +092004 +067009 +060002 +033006 +090006 +061 +092001 +042002 +012001 +067007 +067008 +092006 +030002 +068004 +087004 +092001 +083003 +009001 +29996 067002 +092004 +067009 +092004 +060003 +015004 +092004 +012001 +093001 +090003 +092004 +012001 +084002 +001014 +092004 +093002 +092006 +033009 +093002 +084002 +009003 +034010 +009002 +092006 +033009 +093001 +089003 +010002 +093001 +089017 +092004 +033009 +092004 +009003 +093001 +089015 +015008 +084002 +092004 +033006 +033003 +088009 +092004 +012001 +089020 +092003 +089023 +092004 +089007 +092004 +033006 +025021 +089017 +030001 +058004 +013001 +092004 +033003 +092007 +089015 +033006 +092004 +012001 +092004 +069002 +025022 +093001 +089007 +013001 +025008 088009 +090005 +092004 +012001 +089017 +091003 +023003 +083003 +008002 +089015 +023003 +010002 +089015 +033009 +092004 +033009 +092004 +093001 +092007 +013001 +087003 +089017 +012001 +012001 +033009 +089017 +037005 +092004 +012001 +092004 +012001 +092004 +037004 +093001 +092004 +010002 +092004 +089017 +037004 +037001 +092004 +010002 +093001 +067005 +092004 +067005 +089017 +092004 +037004 +092004 +069002 +013004 +067003 +089015 +033006 +093001 +090013 +092004 +012001 +092004 +013004 +092007 +089007 +009002 +069002 +023004 +089015 +033014 +092004 +012001 +033006 +092004 +012001 +088003 +015006 +090013 +092003 +089017 +076 +012001 +014007 +092003 +089008 +089017 +092004 +023003 +088003 +033009 +012001 +012001 +089017 +091003 +093001 +092004 +010001 +092003 +089017 +092004 +023003 +010002 +067007 +067008 +092004 +089017 +092007 +067009 +060003 +013001 +092004 +092004 +033009 +023003 +089007 +069002 +071001 +090001 +092004 +012001 +059003 +013004 +089015 +033006 +093001 +091003 +092004 +087005 +012001 +013004 +092001 +089005 +092004 +033006 +092003 +089015 +015004 +089021 +092004 +092004 +012001 +30205 093001 +015004 +067007 +092004 +067008 +092007 +015002 +084002 +092004 +001007 +089013 +068007 +084002 +001014 +093002 +089015 +015008 +084002 +092004 +007002 +093001 +089015 +033003 +092004 +093001 +089015 +013004 +067002 +024002 +092004 +033003 +092004 +093001 +092004 +093001 +015031 +092004 +009004 +083003 +092004 +008002 +092004 +089017 +059004 +012001 +088003 +092004 +093001 +089015 +033006 +033006 +078001 +089017 +033006 +088009 +092003 +083003 +009003 +089017 +088009 +092004 +010002 +092004 +008002 +092003 +089017 +089007 +092001 +092007 +091005 +015006 +092004 +010002 +092004 +012001 +092001 +084002 +092001 +089007 +091003 +067002 +015001 +092004 +014009 +092004 +033003 +092003 +084002 +092004 +024002 +092001 +015031 +089013 +025011 +092004 +009004 +083003 +092004 +008002 +092001 +089017 +025011 +092004 +031006 +089007 090006 +013004 +013004 +092004 +033006 +092004 +090003 +012001 +091001 +033006 +093001 +033037 +092004 +026 +092001 +092004 +012001 +089017 +025011 +092004 +026 +092001 +089007 +092004 +012001 +092004 +021005 +092001 +089007 +030002 +090006 +092004 +087004 +092004 +087005 +092004 +089007 +091003 +067006 +092004 +067002 +025011 +092001 +059003 +092004 +010002 +089007 +041001 +092001 +087003 +092004 +074 +089017 +053006 +092004 +033009 +092004 +089017 +092004 +088010 +092004 +067005 +067008 +089017 +067008 +092004 +053007 +092004 +042002 +076 +090002 +076 +092004 +015014 +088027 +030001 +026 +092004 +015024 +037004 +084001 +037004 +089017 +087003 +087004 +023001 +023001 +065003 +089017 +057003 +015004 +057005 +035001 +093001 +010002 087005 +092004 +029002 +088010 +092004 +093001 +089017 +092004 +010002 +092004 +067005 +092004 +067005 +064 +033006 +090013 +092004 +010002 +092002 +30423 085003 +093001 +089020 +092004 +078003 +067009 +060002 +089015 +015007 +084002 +092004 +007002 +092004 +30437 092004 +093001 +067003 +092004 +067005 +092004 +023003 +092004 +089015 +023003 +010002 +089015 +033015 +092004 +011003 +089017 +092004 +010001 +092004 +090006 +079028 +012001 +092004 +088010 +092004 +090013 +092004 +089015 +025011 +092004 +089015 +013004 +067002 +092004 +067009 +092004 +060003 +015006 +053006 +092004 +009004 +089017 +033009 +092004 +090006 +092004 +033009 +092004 +010002 +092004 +093001 +089015 +033004 +092004 +010002 +092004 +033006 +069002 +089023 +033009 +093001 +089015 +033006 +090013 +092004 +090006 +013003 +063004 +092004 +010001 +092003 +092004 +092006 +033009 +092004 +033009 +092007 +30515 033056 +092004 +010002 +092004 +092004 +071001 +025001 +092004 +033009 +092004 +089015 +033012 +006010 +033005 +033006 +093001 +013001 +033009 +092004 +089015 +025020 +059003 +089015 +033004 +092004 +033006 +092004 +067005 +089017 +092004 +033006 +092004 +089015 +033006 +033037 +092004 +012001 +089015 +013004 +025022 +090013 +059003 +092004 +085005 +092004 +089017 +083003 +063001 +092004 +001007 +092004 +093002 +033011 +059003 +092004 +013004 +092007 +089015 +029001 +059003 +092004 +033015 +30578 092004 +030005 +092004 +033006 +089008 +092004 +092004 +009004 +092007 +013004 +089007 +091002 +076 +012001 +085001 +089020 +092004 +091001 +093001 +092004 +010002 +092004 +059004 +012001 +088003 +089015 +033053 +033006 +033037 +012001 +092004 +012001 +092004 +093001 +089007 +034006 +089017 +090011 +037010 +092004 +011002 +092004 +089017 +013003 +076 +021005 +092002 +089004 +010002 +093001 +010002 087005 +092004 +064 +033006 +089012 +033006 +092004 +053006 +30637 067002 +053009 +092004 +021005 +084001 +039001 +092002 +089017 +084001 +076 +059003 +092004 +088026 +092002 +041001 +088010 +090013 +092004 +010002 +092002 +089017 +029002 +034005 +053006 +092004 +033054 +092006 +033054 +090013 +093001 +092004 +010002 +092002 +092004 +013004 +092002 +084001 +076 +039001 +021005 +025022 +053001 +092004 +013001 +053006 088003 +089017 +088002 +090005 +092004 +059003 +092004 +067008 +092002 +089017 +009004 +089017 +092003 +053009 +012001 +033009 +089007 +015016 +083006 +012001 +077 +001016 +092004 +092004 +090012 +028001 032002 +021006 +092004 +011002 +092004 +089004 +040002 +088038 +092004 +089007 +025003 +088010 +012001 +092002 +089014 +092006 +034006 +092002 +014006 +30726 014006 +014006 +092004 +083003 +014007 +089017 +014007 +023007 +085003 +092004 +041001 +092004 +008002 +092002 +089008 +041001 +022007 +30744 092004 +009004 +023011 +089017 +076 +012001 026 +089017 +085001 +083003 +092004 +001013 +067006 +067008 +028003 +092004 +090013 +092004 +093001 +30763 013004 +067007 +092004 +067008 +092007 +015004 +033032 +084001 +037004 093001 +093001 +033005 +063001 +092004 +001012 +092007 +033005 +060003 +013001 +037004 +092004 +093002 +093001 +089015 +015002 +063001 +033005 +059003 +084002 +092004 +092004 +001014 +30795 015010 +089017 +093001 +084001 +092004 +093002 +084001 +001014 +093002 +084002 +092004 +093002 +084002 +001014 +002005 093001 +30811 033009 +093002 +089007 +092004 +058010 +092004 +090003 +010002 +089017 +010002 +093001 +033005 +089020 +093001 +092004 +034010 +092004 +013001 +023003 +089015 +013004 +067002 +092004 +085001 +092004 +083001 +067003 +092004 +067008 +092004 +023003 +092004 +089015 +023003 +092004 +010002 +092004 +092004 +010002 +089015 +049 +092004 +089015 +017007 +092004 +084002 +006016 +089007 +069002 +013003 +092004 +080001 +083003 +092004 +007002 +091001 +044 +085001 +083003 +092004 +001011 +092004 +058005 +085003 +089017 +037009 +037009 067009 +092004 +067009 +037001 +092004 +004001 +092004 +089015 +012001 +012001 +085001 +092004 +089017 +014006 +012001 +014006 +092004 +089015 +025022 +025022 +078001 +089015 +033006 +092004 +092004 +012001 +069002 +025022 +089007 +091003 +033015 +092003 +025011 +078001 +30912 013004 +059003 +092004 +011002 +089007 +023003 +092003 +067010 +021006 +089019 +089019 +053009 +012001 +083003 +001014 +093001 +089017 +092007 +092003 +033056 +027002 +009004 +049 +089017 +017007 +083003 +006016 +089015 +067005 +085001 +089020 +092004 +012001 +011001 +012001 +012001 +033037 +092004 +012001 +089017 +033006 +087002 +083003 +001002 +012001 +089017 +083008 +001006 +025021 +083003 +009001 +025008 +091001 +013004 +067002 +015004 +084001 +092004 +084002 +092004 +001002 +092004 +012001 +092004 +044 +033006 +090013 +092005 +091002 +015001 +084002 +093002 +089015 +024001 +092004 +013004 +092007 +092004 +013004 +092006 +092004 +012001 +028002 +092002 +089015 +015006 +068007 +089015 +027002 +089017 +092004 +093001 +089017 +092004 +093001 +089017 +092004 +009004 +017007 +083003 +092004 +006016 +089015 +024001 +028002 +090006 +092004 +033006 +092004 +033006 +092004 +090006 +092004 +009004 +092007 +089015 +059003 +092004 +033015 +025020 +090006 +092004 +033006 +090001 +092004 +044 +090013 +092004 +089023 +092004 +31043 029001 +059003 +092004 +013004 +092007 +030001 +083003 +092004 +026 +092004 +089015 +015007 +092004 +044 +033037 +089017 +033037 +092004 +012001 +090013 +059003 +092006 +024002 +089017 +024001 +064 +033006 +090013 +092004 +091001 +31074 067003 +067009 +060002 +092004 +053006 +092004 +31081 033009 +092004 +033009 +092004 +093001 +092004 +033009 +090001 +092004 +012001 +067002 +092004 +023003 +092004 +083003 +092004 +008002 +091001 +31100 067003 +092004 +067008 +092004 +053003 +092004 +089005 +092004 +033005 +093001 +015023 +092004 +084002 +093002 +057008 +092004 +012001 +064 +033005 +083003 +033005 +012001 +090006 +059003 +010002 + +008002 +053006 +092004 +012001 +033009 +089017 +092004 +057008 +053002 +089005 +092004 +033006 +083003 +092004 +033005 +012001 +060007 +004002 +089024 +060002 +004002 +004002 +091001 +091003 +009002 +085001 +083003 +093002 +092006 +033009 +093001 +089017 +092004 +009002 +092007 +088002 +089017 +053001 +085003 +025013 +092004 +093001 +089017 +012001 +088003 +085001 +090013 +092004 +089017 +31176 028003 +092004 +090001 +092004 +012001 +092004 +088003 +069002 +090013 +023007 +067002 +31188 071001 +024001 +092004 +053009 +012001 +089015 +015006 +090001 +092004 +012001 +084002 +092004 +007002 +089015 +067002 +092004 +015024 +092004 +010002 +092004 +009004 +093001 +092004 +042002 +092004 +089005 +092004 +041002 +092004 +033005 +089004 +092004 +089015 +092004 +034007 +092004 +084002 +092004 +008002 +089015 +033037 +092004 +012001 +089017 +033006 +037004 +067002 +015004 +092004 +087005 +092003 +089005 +092004 +033006 +092003 +013001 +025021 +089007 +024001 +092004 +008002 +092001 +092004 +021006 +092003 +092006 +077 +083006 +085001 +059003 +092004 +011003 +014006 +089009 +028003 +011002 +089017 +087002 +011002 +092003 +093001 +089015 +31271 025020 +092004 +010002 +092004 +089017 +092004 +010002 +089007 +092004 +033006 +090006 +092004 +089015 +033055 +092004 +093001 +089015 +033006 +090013 +093001 +092004 +010002 +092004 +091003 +092007 +013003 +089009 +013002 020003 087004 +089015 +013002 087003 +059001 +083003 +092004 +093001 +089017 +089009 +033056 +033052 +089017 +089017 +092003 +092008 +092004 +025023 +015003 025023 +006007 025023 +089009 +071003 +028003 +090003 +059001 +026 +030001 +091001 +013003 +093001 +053009 +010002 +093001 +089003 +010001 +093001 +092007 +067005 +31336 067005 +059001 +023007 +089020 +010004 +067009 +060002 +067006 +092004 +023004 +092004 +089017 +092004 +010004 +067006 +067009 +060002 +060002 +092006 +069002 +015004 +092004 +007002 +053008 +089017 +033012 +053001 +067005 +089017 +067005 +089017 +058005 +092004 +067001 +085001 +033036 +092004 +012001 +089017 +033006 +090006 +092004 +059003 +092004 +085003 +037010 +093002 +091001 +067002 +068003 +059003 +092004 +089005 +092004 +033005 +012001 +015007 +084002 +092004 +093002 +084002 +001014 +092004 +093002 +089015 +092004 +009004 +023011 +089017 +023008 +059004 +032004 +089017 +088009 +012001 +085001 +090013 +092004 +091001 +015002 +092004 +010002 +092004 +089016 +067009 +084002 +093002 +092004 +051 +092004 +051 +089015 +31429 013004 +067009 +060002 +015010 +092004 +089005 +092004 +041002 +092004 +051 +089015 +068003 +092004 +067009 +067002 +092004 +015007 +092004 +085003 +093001 +092004 +010002 +083003 +093002 +31454 069002 +028001 +092004 +010002 +092004 +089023 +031005 +092004 +085001 +083003 +092004 +015019 +015001 +067009 +015002 +089015 +027004 +092004 +083003 +092004 +010001 +089017 +092004 +028003 034001 +089015 +069002 +027002 +015007 +084002 +093002 +027004 +092004 +089015 +013004 +067002 +067009 +060002 +027002 +092004 +083003 +092004 +007002 +017002 +31498 083003 +092004 +033017 +089017 +024002 +092004 +089017 +033014 +092004 +089017 +025020 +059003 +092004 +024002 +092004 +089007 +092004 +032004 +089017 +092004 +033014 +092004 +089015 +024001 +092004 +025020 +089015 +033006 +090013 +092004 +092004 +010002 +092004 +010002 +092004 +041001 +092002 +061 +091003 +092004 +010002 +092003 +089017 092001 +025021 +31543 092003 +089015 +033006 +090013 +092004 +092004 +090006 +027004 +092001 +069002 +028001 +090006 +083003 +092004 +092004 +012001 +092001 +085001 +092001 +071004 +31564 092004 +069002 +032001 +092004 +033006 +092006 +033006 +092004 +089015 +015011 +089020 +092004 +089015 +015006 +084002 +093002 +089017 +31582 037001 +092004 +089017 +092004 +010002 +092004 +31589 059003 +092004 +013004 +083003 +092004 +026 +092004 +089017 +093001 +059007 +089004 +092004 +032004 +089017 +081002 +089017 +025008 +090005 +012001 +089017 +009001 +31611 067007 +067009 +060003 +092004 +037004 +093001 +037004 093001 +037004 +093001 +093001 +092004 +093002 +089017 +037004 +092004 +093002 +093001 +089017 +093001 +092004 +010003 +092004 +037004 +092004 +093002 +089017 +093002 +001011 +089017 +093001 +092004 +093002 +037004 +067007 +053009 +093001 +089017 +093001 +013004 +033006 +012001 +090013 +093001 +092004 +093001 +010002 +083003 +092004 +001013 +089015 +015001 +084002 +059003 +092004 +001011 +092004 +093002 +033019 +053005 +041005 +089009 +040002 +088038 +064 +033005 +083003 +006010 +033005 +093001 +092004 +053009 +033006 +033006 +083003 +092004 +001013 +077 +092004 +001016 +012001 +079017 +013001 +092004 +001016 +092004 +059003 +001008 +059004 +089017 +059003 +001007 +089017 +001007 +079016 081002 087004 +089017 +013002 013004 +092004 +079017 +013002 +31711 089017 +092004 +079016 +013002 +001016 +079016 +089017 +090013 +059003 +009001 +092004 +021006 +092004 +012001 +31726 033006 +092004 +015004 +053005 +090001 +092004 +011001 +023003 058004 +088015 +092004 +028003 +092003 +021004 +084001 +092004 +067002 +038001 +089008 +013003 +013003 +065002 +092004 +041005 +089017 +069002 +068001 +031001 +31755 010002 +31757 092004 +093001 +089007 +033006 +092003 +090006 +074 +092004 +012001 +090003 +092004 +002005 +092007 +013003 +010002 +092004 +093001 +089017 +067002 +091002 +092004 +006023 +083005 +092004 +003005 +092004 +003002 +085001 +089008 +059003 +003002 +069002 +023012 +003004 023012 +065003 +019002 +089015 +084002 +002003 +015026 +089015 +033014 +092004 +092004 +011001 +033006 +089008 +092004 +042002 +089015 +033014 +033006 +092004 +092004 +057001 +060002 +006017 +057008 +092004 +069002 +057001 +089017 +092004 +057001 +005001 +064 +042002 +089015 +015006 +089017 +057014 +053005 +089015 +033006 +090013 +092004 +033017 +092004 +042002 +089015 +092004 +033006 +090013 +092004 +092004 +078002 +078002 +092004 +033032 +092003 +057007 +089017 +033014 +092004 +089017 +055004 +033006 +092004 +042002 +089017 +092002 +089015 +033006 +092004 +092004 +057021 +069003 +033048 +089017 +025007 +092004 +057012 +092003 +31871 030003 +092004 +011001 +089017 +030001 +059003 +083003 +092004 +026 +092004 +089004 +092004 +093001 +31886 092004 +013001 +092004 +053009 +033004 +033006 +059003 +092004 +093001 +089023 +092001 +002004 +053005 +092003 +089023 +015006 +092004 +087003 +092001 +092006 +069002 +013001 +075 +018002 +092004 +006004 +092004 +006017 +092004 +092004 +092003 +053006 +090001 090002 +012001 +088003 +089017 +002003 +092006 +092004 +006002 +083003 +092004 +008002 +092004 +079010 +092004 +003004 007007 +092004 +089015 +015013 +092004 +003004 +084002 +092004 +007002 +092004 +089023 +092004 +003005 +014008 +002003 +014008 +091001 +089008 +059001 +089017 +058006 +025013 +033015 +092004 +011001 +089023 +092004 +093001 +092004 +037004 +033046 +090001 +092004 +089007 +093001 +092004 +010004 +092004 +010003 +092004 +089017 +089007 +059003 +092006 +088015 +090011 +092004 +093001 +059008 +31982 092007 +089017 +059003 +037009 +092004 +093001 +084002 +007002 +31991 091001 +067002 +092004 +053005 +059003 +092004 +011001 +089015 +093001 +053005 +089017 +033013 +079024 +092004 +001002 +089015 +015011 +092004 +012001 +092004 +088003 +008001 +058002 +064 +004002 +084002 +092004 +089015 +033006 +089003 +001002 +015001 +092003 +013001 +092004 +012001 +092001 +092004 +058007 +089004 +092003 +025008 +091001 +092008 +093001 +32037 068001 +078003 +067009 +060002 +064 +031005 +013001 +010002 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +093001 +092004 +012001 +32199 093001 +059004 +012001 +088003 +015007 +084001 +092004 +093002 +089015 +036001 +090001 +092004 +012001 +083003 +092004 +001013 +067005 +067005 +088038 +090001 +092004 +012001 +089017 +069002 +023001 +092004 +067007 +092004 +067008 +092007 +089015 +068003 +092004 +023001 +089015 +033006 +092004 +092004 +012001 +089010 +013001 +012001 +092004 +012001 +033006 +092004 +002005 +092007 +090006 +013002 +005001 +089015 +033004 +090013 +092004 +092004 +093001 +033005 +090006 +069002 +090002 +005001 +058007 +023007 +092004 +009001 +089015 +015023 +092004 +028003 +092004 +059003 +092004 +001012 +092004 +001006 +067007 +067008 +067005 +089015 +033006 +092004 +092004 +012001 +092003 +037005 +092004 +037003 076 +092007 +059003 +089017 +092004 +079005 +092004 +089007 +092001 +057008 +089015 +071001 +092006 +025001 +057008 +092004 +089008 +089010 +092003 +053007 +083006 +092001 +013004 +092003 +063001 +089015 +033004 +092004 +093001 +033006 +092004 +033005 +053007 +012001 +092004 +012001 +092003 +089017 +092004 +058007 +053001 +089015 +015023 +092004 +084002 +093002 +089015 +085002 +083008 +092004 +007003 +092004 +007002 +089015 +033006 +092004 +089010 +013001 +012001 +092004 +012001 +015026 +092003 +084001 +084002 +089007 +033005 +090006 +092004 +012001 +092004 +033032 +089004 +092003 +092004 +021005 +092003 +089017 +090006 +083008 +008002 +015024 +092003 +32371 019001 +084002 +002005 +092004 +008002 +092003 +089015 +033004 +033006 +092004 +092004 +093001 +090006 +033006 +069002 +027004 +012001 +092004 +012001 +092003 +089015 +068003 +059003 +088038 +092004 +012001 +015004 +089021 +092004 +067006 +067001 +091001 +015007 +092004 +093001 +089012 +092004 +076 +092004 +012001 +084002 +092004 +093002 +089015 +033015 +015004 +084003 +063001 +092004 +001011 +089004 +092004 +089015 +092004 +033017 +083003 +092004 +007002 +092004 +033037 +090001 +059003 +091001 +015006 +084002 +093002 +083002 +32439 035006 +089015 +015008 +089005 +092004 +041002 +092004 +067002 +092004 +067009 +092004 +067009 +084002 +092004 +007002 +089015 +017001 +033005 +089015 +057008 +092004 +006010 +092004 +053009 +093001 +089015 +32466 092004 +006010 +027002 +092004 +033002 +083002 +32473 033005 +012001 +012001 +090013 +092001 +092006 +089009 +037005 +092001 +033015 +057006 +015004 +092001 +033019 +055005 +037010 +089017 +024001 +024001 +015004 +022003 +013001 +037010 +033019 +067008 +012001 +034007 +089015 +079027 +092004 +006010 +057 +092004 +035002 +017002 +089015 +059003 +092004 +008002 +083003 +092004 +007002 +32516 024001 +092004 +089015 +068001 +033006 +090013 +092004 +090006 +067010 +013004 +092004 +033002 033005 +092007 +067007 +092004 +024002 +092003 +089015 +059003 +033020 +092004 +089017 +025020 +089007 +092004 +033019 +092004 +088009 +092004 +015004 +084001 +092004 +033006 +092004 +089015 +033006 +069004 +010002 +093001 +013001 +092007 +089015 +033006 +090013 +092004 +071003 091002 +033006 +092001 +092004 +033003 +092007 +023008 +023008 +092003 +033015 +059001 +013004 +083003 +092004 +093002 +042002 +089017 +083001 +083003 +092004 +001011 +092003 +089015 +033006 +072001 +033006 +092003 +090006 +092004 +053009 +034007 +013001 +083003 +092004 +001011 +092004 +089017 +32599 070 +033006 +092003 +059001 +010004 +013003 +067007 +092004 +067008 +093001 +083003 +092004 +093001 +32613 079024 +092004 +001002 +067007 +067009 +060002 +089017 +067009 +060002 +067002 +013004 +023001 +078001 +083008 +063001 +092004 +001006 +32631 084002 +092004 +092004 +015004 +093001 +089023 +32638 084002 +093002 +092004 +093002 +084002 +010004 +010004 +089017 +059001 +023009 +013003 +083003 +092004 +093001 +067007 +093001 +092004 +053009 +32657 092004 +092004 +023008 +089023 +32662 093001 +092004 +093002 +089015 +078004 +088024 +059003 +083003 +092004 +007002 +024002 +092007 +089015 +015004 +015026 +092004 +084002 +092004 +001014 +089015 +015023 +092004 +084002 +001007 +092004 +001007 +083008 +092006 +092004 +001014 +092004 +045 +089009 +015026 +092004 +089023 +092004 +015002 +084003 +083003 +092004 +015004 +091001 +015011 +084002 +093002 +001014 +092004 +093002 +089017 +32713 033017 +092004 +067002 +092004 +067009 +089015 +025020 +089007 +092004 +033017 +092004 +089007 +32726 037003 +013001 +092004 +033006 +092004 +32732 083003 +092004 +007002 +085001 +009002 +090013 +012001 +012001 +053004 +091001 +033006 +033006 +078001 +088024 +32747 092002 +32750 093001 +093002 +015006 +020003 +092002 +028001 +092003 +092004 +013001 +092004 +088003 +092004 +012001 +089015 +033046 +092004 +092004 +093001 +033006 +033008 +089017 +015004 +089021 +092004 +089015 +092004 +012001 +085002 +092004 +083003 +092004 +083003 +015004 +084001 +092004 +092004 +020002 +092004 +089015 +013004 +025020 +090013 +059003 +089015 +033011 +090013 +092005 +033006 +092004 +092004 +033006 +092007 +089007 +089013 +037003 +089017 +076 +033032 +092004 +053004 +012001 +089015 +015004 +089017 +015004 +033015 +089004 +092004 +084002 +059003 +080001 +092004 +001011 +32824 015004 +084001 +092004 +007002 +015008 +084002 +092004 +007002 +093001 +089017 +010004 +092004 +093001 +32838 090013 +023009 +078001 +089015 +033012 +092004 +32845 092004 +089015 +017001 +083009 +092004 +033046 +092004 +023009 +089015 +013001 +092004 +089015 +067005 +017001 +046 +092004 +089017 +015011 +092004 +001004 +059003 +059001 +090013 +023009 +023009 +058006 +015024 +092004 +084002 +092004 +089015 +092004 +092004 +059003 +092004 +092004 +008002 +085002 +023008 +092004 +089017 +015004 +089017 +012001 +084001 +059001 +32892 089017 +033006 +090006 +092003 +013001 +092004 +012001 +092004 +012001 +089017 +033046 +069002 +013004 +092004 +033006 +089007 +028001 +092004 +053009 +092004 +013001 +32914 013004 +014006 +015004 +015002 +084002 +001013 +080001 +089015 +092004 +011001 +027004 +092004 +089015 +015006 +084002 +092004 +089015 +037001 +092004 +092004 +069002 +015004 +084001 +092004 +089023 +092004 +033006 +090013 +092004 +090006 +089017 +092004 +058006 +011003 +033015 +092001 +092004 +037004 +092004 +012001 +071005 +089007 +089009 +092007 +015004 +089015 +32961 033019 +083003 +092004 +007002 +092004 +093002 +32968 013004 +067007 +092004 +092004 +011001 +019005 +092004 +089017 +024002 +092004 +033019 +092004 +012001 +089017 +092004 +32984 085001 +083005 +092004 +001010 +093002 +32990 024001 +006008 +060002 +085001 +083005 +092004 +001010 +089015 +092004 +044 +084001 +092004 +015004 +047002 +092004 +006003 +089015 +015008 +084002 +092004 +092004 +006008 +092006 +013001 +093001 +033012 +092004 +084001 +092004 +001009 +054 +059002 +089015 +017002 +084001 +092004 +006008 +033017 +092004 +011001 +089015 +067002 +068004 +033006 +033006 +090013 +092004 +093001 +054 +084002 +092004 +081002 +089015 +015011 +092004 +006003 +092003 +089009 +018001 +089015 +033004 +093001 +033006 +087003 +067007 +063001 +067009 +042004 +092004 +018001 +089015 +089006 +092004 +033006 +092003 +015011 +092004 +006003 +089015 +092007 +042002 +044 +059001 +004005 +059002 +089015 +019003 +092004 +006003 +092004 +089015 +033056 +092004 +034001 +083003 +092004 +058006 +006008 +092004 +015006 +035001 +092004 +089015 +015006 +089015 +059004 +059003 +092004 +006008 +089008 +015011 +092004 +33103 024001 +093001 +093001 +017005 +092004 +008002 +093001 +033006 +015004 +084001 +092001 +089007 +009002 +088038 +013001 +012001 +089007 +025020 +090013 +092004 +089017 +059003 +092004 +089020 +092004 +089007 +092004 +018001 +092004 +004005 +33134 037006 +089017 +064 +089017 +093001 +089017 +093001 +010002 +093001 +092006 +013001 +034001 +092004 +093001 +089015 +033006 +090013 +092004 +093001 +092004 +093001 +069002 +025022 +067006 +092004 +067002 +009001 +33162 037001 +089015 +054 +092004 +006008 +084002 +092004 +001009 +085002 +063001 +036004 +092004 +091001 +013004 +067007 +092004 +085001 +092004 +067007 +092004 +092004 +001014 +33185 091003 +009002 +059004 +023009 +089015 +024001 +092004 +093001 +017005 +33195 008002 +033012 +092004 +033006 +012001 087003 +089010 +030004 +074 +092001 +023008 +089015 +016 +092004 +008002 +024005 +092004 +033006 +030004 +023008 +089015 +067002 +092004 +023009 +013003 +089021 +092004 +089015 +092004 +033032 +092004 +092004 +033006 +089023 +015004 +028003 +092003 +092004 +053009 +089015 +057008 +089004 +092004 +053003 +092003 +064 +033032 +093001 +089009 +033020 +092004 +089023 +015002 +078002 +092004 +033006 +089004 +092004 +089015 +015013 +011001 +078001 +024002 +089017 +023008 +089021 +092004 +023009 +092004 +089023 +092004 +33266 015004 +083003 +092004 +001013 +089017 +033013 +091001 +013004 +067002 +092004 +092004 +067009 +089017 +092004 +33281 033017 +33284 017002 +011002 +089017 +033017 +092006 +33290 015006 +084001 +059003 +001014 +092004 +093002 +089017 +093002 +089017 +093002 +089017 +076 +012001 +013003 +089008 +092004 +023008 +092004 +089015 +091003 +009002 +015024 +083008 +006015 +009002 +092006 +33317 023009 +089017 +068005 +092004 +015024 +089017 +085002 +083006 +092004 +089015 +069002 +027001 +092007 +015024 +092004 +090010 +092004 +011001 +015010 +084002 +092004 +007003 +084003 +092004 +006023 +015011 +092004 +089018 +092004 +006015 +084002 +092004 +083003 +083006 +092004 +093001 +089015 +024001 +092004 +031009 +092004 +033006 +009002 +040002 +092003 +092004 +088038 +092003 +089015 +068001 +030001 033011 +092004 +053009 +089017 +092004 +011002 +033006 +092004 +013001 +092007 +092006 +033006 +033042 +092004 +074 +088038 +040002 +089023 +33386 058007 +092004 +012001 +089023 +092004 +093001 +032002 +092004 +030001 +092004 +033004 +033006 +090013 +092004 +092004 +030001 +083003 +092004 +026 +092003 +092004 +013001 +022006 +033006 +040002 +092003 +092004 +088038 +092003 +089024 +033006 +017001 +089015 +015029 +089023 +089009 +028001 +090006 +092004 +009001 +092004 +009001 +037003 +33430 083008 +092004 +001006 +040002 +088038 +033006 +092004 +023009 +092003 +033006 +017001 +089015 +015024 +092004 +006015 +092003 +015001 +084002 +092004 +007002 +092003 +089015 +067005 +017001 +083006 +092004 +015024 +083008 +092006 +017007 +015004 +084002 +092004 +007002 +092004 +033037 +092004 +012001 +089015 +025020 +090013 +059003 +089017 +033037 +092004 +012001 +089017 +078004 +025022 +033006 +090006 +024001 +031006 058008 +067010 +091001 +067002 +092007 +015004 +089015 +024001 +057014 +033009 +093001 +017002 +083005 +092004 +057014 +089015 +033006 +092004 +036004 +092001 +089015 +085004 +063001 +015004 +036004 +092004 +089015 +013001 +023001 +079028 +093001 +092004 +083003 +092004 +007002 +092004 +089017 +013003 +011001 +078001 +057014 +089017 +058006 +092006 +085001 +023001 +089020 +092004 +089015 +033041 +092004 +011002 +089017 +092004 +053009 +092004 +090008 +092004 +036004 +092004 +033006 +33545 089020 +092004 +057014 +089017 +088038 +023001 +089017 +023001 +089015 +033014 +092004 +093001 +033006 +090013 +092004 +069002 +057005 +023008 +33564 092004 +023008 +089023 +092004 +023009 +023009 +069002 +015006 +033029 +088002 +089023 +088038 +089009 +041005 +33579 092004 +033006 +090013 +092004 +092004 +036004 +093001 +053008 +067001 +089017 +033012 +090011 +064 +089017 +092004 +092004 +011002 +089023 +092004 +092003 +023001 +089017 +023001 +089015 +092004 +093001 +033006 +090013 +092004 +069002 +074 +092004 +011001 +092004 +007003 +067007 +33616 092004 +010004 +089020 +092004 +085001 +053008 +090011 +089023 +013004 +067008 +089015 +33628 015023 +089021 +092004 +092004 +010004 +067002 +053008 +067007 +092007 +092004 +067008 +089015 +033006 +089017 +033003 +090013 +092004 +090006 +092004 +006017 +090003 +006017 +058011 +019003 +085002 +084002 +006017 +058011 +33659 089017 +092004 +058011 +019003 +089017 +092004 +058011 +069002 +064 +092004 +006017 +092004 +090003 +092004 +058011 +089017 +092004 +047001 085002 +006019 +067005 +084002 +006016 +058011 +33685 019003 +092004 +006019 +092004 +067005 +092004 +006016 +089015 +092004 +014005 +089017 +092004 +006016 +020003 +089023 +006019 +067005 +084002 +006016 +058011 +085002 +089017 +092004 +023001 +058011 +025001 +067005 +089007 +033006 +092004 +058011 +065003 +013001 +33719 091001 +067002 +061 067009 +015002 +092004 +084003 +043 +089015 +018001 +089017 +023001 +092004 +036004 +092004 +092004 +003004 +019005 +092004 +008002 +089015 +33740 092004 +011002 +033006 +092004 +042002 +092006 +069002 +071004 +092004 +067009 +089015 +033014 +090013 +092004 +033006 +092004 +093001 +069003 +033005 +092007 +092006 +042002 +093001 +33764 023001 +092004 +089017 +092004 +089020 +092004 +085001 +090006 +015008 +084002 +092004 +007002 +092004 +012001 +089015 +092004 +053002 +092004 +053002 +018001 +023001 +089017 +057008 +092004 +089020 +092004 +092006 +023001 +069002 +071004 +089023 +33796 058007 +092004 +053009 +089017 +033006 +092004 +013001 +037004 +092004 +067009 +092004 +009001 +092004 +009001 +33811 091001 +067002 +058006 +067009 +015008 +092004 +084002 +092004 +007002 +089015 +033017 +33823 085001 +009002 +083001 +089017 +092004 +008002 +092004 +092004 +082002 +013001 +023009 +089017 +024001 +092004 +092004 +053009 +089017 +092004 +011002 +090006 +067002 +092004 +067009 +023008 +089009 +027001 +033048 +092004 +089023 +092004 +028001 +092004 +030001 +092004 +089015 +033006 +092004 +009002 +092004 +023009 +090013 +092004 +008002 +017001 +089015 +017001 +084002 +092004 +083003 +089015 +015004 +017001 +089015 +033006 +092004 +093001 +090013 +092004 +033014 +092003 +090006 +071004 +092004 +067009 +088001 +089024 +088015 +009001 +021005 +089024 +020003 +089015 +024001 +059003 +092004 +033006 +092004 +016 +092004 +008002 +092003 +089015 +092004 +042002 +089015 +013002 +092004 +008002 +092004 +089023 +092004 +078004 +088024 +089015 +033011 +090013 +092005 +071001 +092004 +042002 +092004 +093001 +33926 013004 +067007 +092004 +067008 +092007 +015004 +092004 +084002 +092004 +001007 +033013 +33939 067009 +067007 +092004 +033013 +092004 +012001 +089015 +33947 013004 +014006 +033029 +092004 +036004 +092004 +089015 +030006 +090003 +092004 +060002 +092006 +089017 +053009 +033009 +093001 +092006 +089017 +033009 +093001 +089017 +093001 +092004 +010003 +092004 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +093001 +089017 +093001 +092004 +033009 +011003 +089017 +093001 +093001 +089017 +093001 +093001 +092006 +013002 +037007 +091001 +015011 +089020 +092004 +017001 +083008 +080001 +079016 +089017 +011001 +059002 +036004 +092004 +089017 +011001 +059002 +092004 +011001 +084001 +059003 +092004 +093002 +089017 +093002 +089017 +092004 +001009 +093002 +089017 +093002 +092006 +015006 +024002 +092004 +089017 +023008 +089021 +092004 +023009 +092004 +089017 +092004 +022002 +090001 +012001 +053004 +023008 +089017 +059003 +092004 +011001 +068005 +024005 +092004 +089007 +076 +084001 +092004 +015004 +089017 +023008 +059003 +091001 +092004 +015010 +092004 +008002 +092004 +084002 +092004 +036004 +092004 +033006 +025011 +092004 +057006 +089007 +092003 +013001 +092004 +037004 +092004 +012001 +025011 +092004 +023001 +067002 +089007 +025007 +025011 +092004 +025012 +067002 +089007 +025012 +025011 +013001 +067002 +088026 +092003 +092004 +009001 +089017 +067002 +034003 +092003 +089017 +033046 +089017 +033042 +092004 +033009 033042 +092003 +064 +088015 +090010 +092004 +009001 +092004 +009001 +025011 +067002 +092007 +092004 +067008 +089017 +015031 025011 +089007 +091003 +092004 +038002 +092003 +059002 +083003 +092004 +001002 +089007 +34139 092004 +058005 +041001 +092004 +053009 +092004 +010002 +092004 +089023 +022001 +092003 +092004 +057003 +089007 +090013 +092004 +025013 +092003 +022001 +092003 +092004 +023001 +067002 +089007 +023001 +022001 +092004 +025012 +067002 +089007 +025012 +089017 +025012 +022001 +067002 +065003 +092003 +033006 +059003 +092004 +009001 +089007 +34182 092004 +058005 +041001 +092004 +053009 +092004 +010002 +092004 +089023 +033006 +092003 +092004 +024002 +025003 +092004 +039001 +092003 +088001 +042002 +092004 +088026 +092003 +033055 +092004 +033055 +092003 +033013 +34210 092004 +088016 +092003 +092004 +019001 +092003 +083008 +092004 +008002 +013004 +089017 +092004 +058006 +089017 +089021 +092004 +015024 +092003 +092004 +006017 +089017 +092004 +006017 +069002 +013004 +059003 +033012 +092003 +057008 +089017 +089021 +092004 +015024 +092004 +092003 +069002 +033012 +089017 +064 +025001 +090006 +041001 +092003 +092004 +009001 +041001 +092004 +064 +089017 +089010 +025003 +092004 +025003 +092003 +058004 +025008 +092003 +013003 +089007 +34270 092004 +088038 +092004 +025003 +092004 +025003 +089007 +089010 +34279 088001 +092004 +088001 +092003 +058004 +025008 +092003 +013003 +34288 092004 +088038 +092004 +058005 +042002 +089017 +089010 +057017 +090003 +092006 +030003 +057009 +058004 +025008 +092003 +013003 +34305 088038 +088038 +057017 +089009 +057009 +092004 +058005 +089023 +025003 +092004 +039001 +092003 +089017 +088001 +089017 +057017 +092004 +030003 +34324 013001 +092004 +038002 +092003 +059002 +089017 +013001 +009001 +012001 +089007 +092004 +088009 +013001 +090013 +092004 +025009 033036 +089017 +088015 +013001 +088010 +064 +092004 +012001 +092003 +088010 +013001 +091001 +069002 +056005 +34354 069002 +069002 +056005 +089017 +069002 +056005 +34361 069002 +069002 +056005 +040002 +34366 040002 +057008 +34369 057008 +092003 +081001 +066 +019005 +016 +014005 +057012 +084002 +092004 +006017 +092003 +089007 +092006 +081001 +057008 +057008 +092003 +089015 +033006 +089017 +033003 +092004 +069005 +074 +024001 +024001 +015023 +069004 +059003 +084002 +001008 +015012 +069002 +013001 +027001 +087003 +092004 +033017 +089023 +075 +059003 +013001 +064 +092004 +033017 +092004 +089017 +092004 +024001 +092004 +003006 +092004 +083003 +092004 +008002 +092004 +011003 +092003 +089023 +092004 +007008 +092004 +083003 +092004 +057001 +008002 +069002 +030002 +092004 +074 +033006 +092004 +011003 +092003 +011003 +013004 +015004 +092004 +003006 +092004 +083003 +092004 +008002 +092003 +092008 +092004 +083003 +092004 +008002 +092003 +007008 +069002 +024001 +088029 +015004 +067002 +092004 +007008 +084001 +092004 +008002 +092003 +34473 067002 +024001 +092004 +003006 +092004 +083003 +092004 +008002 +092004 +011003 +092003 +015004 +091001 +069002 +013003 +023012 +003002 +065003 +003004 023012 +065003 +069003 +089023 +003002 +065003 +023012 +003004 023012 +065003 +089007 +059003 +003002 +090003 +092004 +058007 +003004 +028001 +089007 +069002 +090003 +003003 +018001 +003004 +069003 +090003 +003003 +003004 +043 +092004 +088001 +009001 +090003 +092004 +088001 +007003 +092004 +026 +013003 +092004 +088001 +089017 +092004 +088015 +090003 +092004 +088015 +013003 +092004 +088015 +089007 +090003 +059006 +026 +033006 +092004 +008002 +092004 +34549 092004 +092001 +033009 +012001 +012001 +34555 069002 +042002 +092006 +033006 +059003 +092004 +015006 +084002 +092001 +089015 +031007 +092001 +092004 +033006 +089015 +042002 +092004 +033010 +092003 +092004 +013001 +064 +064 +013001 +009002 +045 +007002 +092006 +019006 +34585 081002 +089015 +085002 +007003 +083008 +092004 +002005 +089015 +014005 +013004 +019001 +092004 +001010 +092004 +007002 +092007 +34602 069002 +074 +016 +092004 +089007 +092004 +065003 +045 +092004 +089023 +092004 +033015 +34615 069002 +042002 +064 +013001 +009002 +045 +007002 +083008 +092004 +002005 +089021 +007003 +092006 +019001 +092004 +001010 +089015 +067002 +020003 +34635 013004 +092004 +020003 +092004 +007002 +092007 +078001 +067002 +068003 +059003 +092004 +033006 +092004 +084002 +092004 +024002 +092004 +011001 +015008 +084002 +093002 +089015 +055004 +092004 +087005 +023009 +023009 +067002 +023007 +092006 +013001 +092004 +087002 +34669 033015 +090006 +092004 +093001 +015004 +084002 +092004 +053009 +092004 +093001 +033012 +092004 +089009 +015006 +023008 +092004 +087005 +092004 +089015 +092004 +015006 +084002 +092004 +093001 +033012 +092004 +025006 +033006 +090006 +065002 +013001 +092006 +013004 +092007 +089007 +025003 +092004 +011003 +092002 +34709 092004 +007002 +092008 +045 +092002 +089015 +092004 +093001 +015001 +089020 +092004 +089023 +067002 +092004 +069002 +083005 +085001 +084001 +092004 +007002 +015004 +034001 +092004 +055004 +033006 +092004 +012001 087003 +069002 +022002 +089007 +069002 +013001 +075 +090006 +083009 +092004 +007003 +092001 +015008 +089008 +069003 +092001 +065002 +084002 +092003 +015006 +089023 +033006 +033006 +34759 023008 +092004 +087005 +092001 +089007 +089017 +092001 +013001 +009002 +037001 +037003 +013001 +34773 092001 +055004 +089017 +033006 +092007 +015004 +34780 015004 +089017 +058006 +015006 +34785 015006 +089017 +092004 +087005 +092001 +042002 +092007 +34793 042002 +089015 +024002 +092007 +092004 +093001 +025020 +092004 +089015 +016 +092004 +015020 +092004 +011001 +033006 +033006 +092003 +069003 +083003 +092004 +093001 +059002 +031009 +027002 +089015 +015007 +084002 +092004 +007002 +092004 +015004 +027002 +092004 +087005 +023008 +091001 +013004 +067002 +092004 +067010 +015002 +084002 +001014 +033009 +093002 +089017 +015019 +092004 +092004 +036004 +092004 +089017 +011001 +078001 +089015 +067002 +015005 +092004 +007003 +092004 +001014 +34855 091003 +015024 +023007 +058007 +010002 +092004 +010002 +092004 +089017 +092004 +013001 +010004 +089017 +011001 +092004 +001014 +059002 +085001 +089020 +092004 +089015 +024001 +092004 +092004 +012001 +025003 +090013 +092004 +089015 +033006 +092004 +069002 +025012 +089015 +015005 +024005 +092004 +006015 +089015 +092004 +015024 +017001 +089015 +033006 +009002 +092003 +033006 +023007 +089015 +017002 +092004 +023007 +089015 +068001 +033006 +089015 +057008 +092004 +092004 +010002 +092004 +34917 090013 +025022 +059003 +089017 +033037 +092004 +012001 +033006 +090006 +053009 +087003 +013003 +083003 +092002 +089017 +090006 +034006 085001 +092004 +012001 +092004 +011002 +092004 +34940 015004 +092004 +033006 +092007 +089004 +092004 +084002 +063001 +092004 +093002 +089017 +059003 +092004 +001011 +091001 +033015 +093001 +092004 +036004 +092004 +090006 +059003 +092007 +089015 +033029 +060002 +092004 +092004 +036004 +092004 +092004 +093001 +015004 +084002 +092004 +012001 +033006 +092003 +013001 +092004 +015006 +089024 +058006 +030003 +089015 +015006 +084002 +092004 +092004 +009002 +033006 +093001 +092004 +053005 +015004 +092002 +084002 +092003 +033006 +092003 +013001 +092004 +015006 +089024 +058006 +030003 +067002 +092007 +092004 +067001 +023008 +059001 +089021 +023009 +089017 +023009 +089017 +012001 +088015 +089017 +024001 +059001 +057008 +024001 +089015 +033014 +033006 +092004 +015004 +033015 +093001 +092006 +024001 +089017 +024002 +024001 +024001 +023009 +015029 +023009 +023008 +089017 +024002 +024002 +023007 +023007 +057006 +033015 +089017 +025011 +013001 +071001 +092006 +069002 +025016 +089007 +092001 +089015 +015004 +092004 +033015 +093001 +068001 +033006 +090013 +092004 +011001 +090006 +093001 +092004 +024001 +015004 +084002 +092004 +001013 +003003 +090001 +014002 +016 +089023 +092004 +024001 +015004 +009002 +013001 +079021 +006017 +049 +091003 +092004 +013001 +006017 +079005 +089017 +088033 +013001 +083003 +092004 +007002 +085001 +089023 +092004 +024001 +015004 +053009 +069001 +033006 +092003 +35109 078002 +053009 +092007 +013001 +090006 +092006 +033005 +091003 +015004 +092004 +033015 +092001 +067002 +067002 +092003 +092006 +077 +092004 +077 +092003 +083006 +092003 +033006 +092003 +087003 +083003 +023003 +009003 +093001 +092004 +013001 +089023 +092004 +079028 +083003 +092004 +037004 +092004 +012001 +087003 +092004 +013001 +089017 +059003 +092004 +087004 +35156 092004 +057014 +031007 +036003 +092004 +012001 +053005 +092004 +053005 +093001 +089023 +092004 +011002 +089017 +092004 +033033 +092004 +030004 +092004 +012001 +076 +090006 +092004 +069002 +053005 +090001 +092004 +091002 +092004 +064 +092004 +009001 +092004 +011001 +092007 +35192 092004 +013001 +064 +064 +013001 +009004 +092004 +083003 +057016 +017002 +089017 +033006 +092005 +092006 +033006 +006012 +092003 +35210 069002 +015032 +033007 +35214 069002 +025012 +089007 +015006 +093001 +092004 +053005 +069002 +023001 +005001 +069003 +023001 +006019 +35228 033006 +012001 +35231 015006 +092004 +009001 +092004 +009001 +023001 +089017 +023001 +35240 033006 +091003 +009002 +023001 +089017 +088037 +034001 +057014 +089017 +088038 +091002 +088002 +092004 +032004 +090001 +059003 +092004 +058004 +092004 +35260 033012 +092004 +092004 +011002 +092004 +090006 +023001 +089020 +092004 +089015 +015008 +084002 +092004 +007002 +092004 +011002 +017006 +089015 +091003 +009003 +092004 +085001 +083003 +092004 +001014 +088038 +089017 +027001 +090006 +023001 +083003 +092004 +007002 +092004 +011002 +015024 +006016 +006021 +089017 +017001 +083006 +083005 +092004 +008002 +092004 +025012 +068001 +092004 +008003 +079015 +092004 +008002 +092004 +089015 +092004 +008002 +092004 +008002 +092004 +079015 +089017 +034009 +092004 +008002 +092004 +089015 +047003 +092004 +006021 +089023 +024001 +092004 +011002 +092004 +033030 +092004 +031001 +35339 033006 +089010 +092007 +013001 +053009 +071003 +028001 +092004 +35348 058004 +092004 +009003 +35352 024005 +092004 +089007 +088038 +013001 +089015 +033004 +092004 +093001 +033006 +090013 +092004 +093001 +35366 092003 +35368 033006 +089015 +092004 +033017 +033006 +033006 +060002 +057018 +013001 +057017 +092004 +092004 +35381 057018 +006011 +060002 +089017 +092004 +058006 +060002 +069002 +057001 +092004 +057012 +059003 +057018 +089008 +092004 +092004 +078002 +025003 +092004 +033014 +093001 +033006 +031005 +090006 +092006 +092004 +078002 +057018 +089015 +092004 +033006 +092004 +072002 +030007 +089015 +016 +084002 +092004 +009003 +092004 +093001 +033006 +024001 +092007 +092004 +009003 +015008 +084002 +092003 +092004 +007002 +002004 +092001 +090013 +008002 +069002 +057008 +089023 +092007 +092004 +008003 +079015 +092001 +092004 +008002 +089015 +092004 +008002 +092004 +079015 +034009 +092001 +069002 +090014 +089023 +092007 +067006 +092006 +015008 +069002 +35462 034009 +092001 +092004 +008002 +006019 +092004 +008002 +092001 +069002 +047003 +089023 +092007 +006021 +047003 +092004 +008002 +092001 +35480 089007 +033006 +092003 +040002 +092004 +088038 +092004 +092004 +059001 +089007 +025003 +078001 +089023 +092006 +059002 +040002 +078001 +025003 +089015 +033006 +092004 +040002 +092003 +092004 +088038 +089015 +068001 +092004 +034001 +031001 +35512 092004 +092007 +013001 +092006 +35517 088038 +040002 +089015 +033006 +090013 +092004 +009003 +092004 +031009 +092003 +021006 +092003 +015004 +013002 +022007 +091001 +013004 +067002 +092004 +061 +35538 092004 +015002 +089016 +001014 +089017 +001014 +033019 +089017 +033015 +092004 +037004 +092004 +012001 +089017 +089020 +092004 +092004 + +089017 +009003 +092004 +092006 +35561 023008 +089021 +012001 +088015 +089017 +023009 +093001 +092004 +033009 +093001 +084001 +092006 +012001 +060002 +015004 +089017 +093001 +010004 +093001 +037004 +093001 +089017 +093001 +089017 +058006 +059001 +092004 +035004 +092004 +089012 +092004 +057001 +092004 +35595 015013 +011001 +059002 +089017 +092004 +089016 +001014 +015006 +084002 +092004 +033006 +089012 +033003 +015004 +092004 +043 +092004 +043 +092004 +003004 +092004 +089015 +067007 +092004 +043 +092004 +35623 015012 +083005 +092004 +001016 +089015 +019005 +089017 +092004 +004002 +092004 +004002 +023001 +092004 +089017 +058006 +015012 +084002 +092004 +002005 +089015 +023011 +079015 +089007 +092004 +069002 +057001 +002004 +089017 +058006 +015012 +35654 083003 +092004 +003003 +089015 +023011 +092004 +003003 +023007 +092004 +089017 +058006 +015012 +084002 +092004 +002005 +092004 +065003 +089015 +023011 +023012 +003004 023012 +060006 +092007 +033006 +033006 +092004 +057001 +008002 +024002 +031007 +35685 033014 +092004 +092004 +036004 +092004 +092004 +013001 +092007 +092004 +033003 +089015 +092004 +033006 +092003 +013004 +028001 032002 +092004 +028005 +092004 +037004 +092004 +012001 +089023 +092004 +063005 +089012 +033003 +089008 089009 +024001 +069002 +032002 +089017 +024002 +069002 +032001 +35721 013001 +092007 +092004 +033003 +092004 +003004 +013001 +092004 +033019 +092004 +012001 +089017 +092004 +083005 +092004 +001016 +013001 +092004 +024002 +067002 +015006 +092004 +012001 +089015 +015024 +092004 +033019 +084001 +092004 +026 +092004 +089009 +069002 +031010 +021006 +089017 +092004 +084002 +092004 +002005 +092006 +35763 024002 +089013 +025011 +031007 +092004 +033019 +35770 092007 +003005 +069002 +057001 +092006 +067005 +067005 +031006 +089015 +067002 +067001 +088038 +034002 +089017 +092004 +083003 +092004 +003003 +015012 +092007 +013001 +092004 +024002 +35794 089007 +025021 +089017 +057003 +089017 +025010 +092004 +041001 +015001 +022003 +35805 069002 +023012 +089017 +092004 +084002 +092004 +065003 +002005 +092007 +013001 +092004 +089013 +026 +088001 +089017 +088001 +024002 +092004 +033019 +031006 +089015 +023012 +089013 +025015 +35830 092004 +006014 +024005 +079025 +092004 +006016 +089024 +083009 +006015 +085002 +089023 +084002 +006014 +085002 +089009 +092004 +015008 +024001 +092004 +014006 +089007 +069002 +013001 +028005 +092006 +069002 +028003 +013002 +069003 +028005 +092006 +069002 +069002 +027001 +089017 +089008 +028003 +013002 +089008 +027006 +092004 +031007 +089007 +071001 +092006 +057001 +057008 +092004 +089017 +071001 +092006 +069002 +057001 +35884 092006 +057001 +031005 +015024 +089021 +092004 +35891 015006 +084002 +092004 +092004 +010002 +089017 +092004 +010003 +092004 +35901 069002 +074 +015005 +092004 +090010 +092004 +011001 +089015 +033015 +092004 +092004 +010002 +092003 +089017 +092004 +010003 +092003 +085001 +083004 +034006 +092003 +025001 +089015 +092004 +033004 +033006 +090013 +092004 +010002 +092001 +089017 +011002 +092001 +092007 +013001 +092004 +092004 +033019 +092004 +012001 +036003 +089017 +042002 +35945 013004 +067002 +092004 +092004 +067009 +35951 092004 +015008 +084002 +006008 +089017 +092004 +036004 +092004 +089015 +033006 +090013 +092004 +015003 +084002 +092004 +083007 +092004 +001010 +089015 +054 +089023 +054 +092004 +023005 +091001 +015011 +014002 +014002 +083008 +092004 +001010 +35983 054 +089017 +021001 +35987 015005 +023005 +092004 +033006 +087003 +087003 +023007 +089015 +092004 +023005 +033032 +092004 +014002 +089017 +092004 +014005 +092004 +002004 +36006 068004 +36008 013002 +014005 +089015 +033006 +092004 +083002 +092004 +031009 +092003 +089015 +025022 +025020 +033006 +090013 +092005 +071001 +092004 +092007 +013001 +089007 090006 +36029 092004 +014002 +089017 +092004 +002004 +033032 +36036 036003 +092004 +091001 +054 +084002 +092004 +001011 +092004 +093002 +36046 085001 +083007 +092004 +093002 +089015 +092004 +015004 +084002 +092004 +001009 +015005 +009002 +092004 +084001 +092004 +001014 +090013 +012001 +089017 +067005 +059002 +069002 +049 +006017 +089017 +083003 +007002 +069002 +085003 +089023 +083003 +092004 +007007 +089015 +024001 +092004 +093001 +033006 +017005 +092004 +089015 +033006 +078001 +033006 +36091 092001 +36094 093001 +012001 +092004 +012001 +092004 +012001 +033012 +092003 +069002 +092001 +038001 +089007 +36107 092004 +012001 +092004 +053004 +015004 +090001 +092004 +009002 +089007 +078001 +067005 +018001 +092004 +089017 +018002 +006004 +089017 +006004 +037009 +089015 +019003 +092004 +006004 +015022 +36132 092004 +012001 +084002 +092004 +001013 +089015 +033014 +092004 +092004 +093001 +092004 +092003 +033009 +013001 +089015 +092004 +033006 +093001 +089007 +015008 +012001 +059001 +084002 +092004 +089015 +033012 +092004 +090006 +069002 +033032 +092004 +084002 +092004 +001003 +015004 +36168 085001 +083001 +004001 +004001 +059001 +023001 +083008 +092004 +001007 +36178 033012 +092004 +090006 +013004 +092004 +084002 +092007 +015008 +089015 +013004 +092004 +089015 +092004 +012001 +015004 +089021 +092004 +009002 +015008 +084002 +092004 +004001 +089015 +015027 +092004 +004001 +084002 +092004 +001007 +084002 +092004 +001010 +089015 +023007 +089015 +092004 +044 +024001 +092004 +013004 +015004 +089015 +033015 +090013 +092004 +011003 +089017 +090013 +092004 +001014 +089015 +015004 +027001 +092004 +013004 +089015 +015006 +084002 +092004 +093001 +089015 +027002 +017002 +092004 +009002 +089021 +092006 +092004 +012001 +015004 +049 +089017 +030001 +083005 +092004 +008002 +092004 +093001 +089015 +025022 +089015 +033015 +092004 +092004 +024001 +092004 +023008 +092004 +012001 +089015 +033012 +059003 +092004 +011001 +092004 +001011 +092004 +093002 +092004 +015004 +084001 +092004 +089007 +025022 +078001 +090013 +36285 092004 +015008 +084002 +006008 +015007 +089015 +033012 +092004 +092004 +009002 +089021 +092006 +015004 +092004 +012001 +085001 +089020 +092004 +089023 +015004 +092004 +033006 +015007 +084002 +092004 +007002 +092003 +089015 +033015 +059001 +092003 +041001 +092004 +012001 +089015 +015004 +084003 +063001 +092004 +001014 +033015 +059001 +041001 +092004 +092004 +093001 +36332 067002 +092004 +015007 +092004 +093001 +034007 +092004 +092004 +011001 +089007 +059003 +36344 030003 +092004 +36347 091003 +015006 +009002 +092006 +033009 +093001 +089017 +092007 +037004 +092004 +007002 +013001 +089015 +017005 +083005 +092004 +008002 +093001 +033030 +092004 +015008 +084002 +092004 +007002 +092004 +089007 +010002 +058007 +078003 +067009 +060002 +013001 +092004 +089017 +092004 +023007 +36384 067007 +092004 +015001 +092004 +092004 +011001 +019005 +092004 +089015 +009003 +013001 +013001 +014005 023009 +023009 +067006 +067009 +060002 +092004 +069002 +074 +090001 +092004 +023008 +015005 +084001 +024005 +092004 +006017 +092004 +006017 +092004 +089015 +067005 +068004 +092004 +014005 023009 +092004 +023009 +092004 +089015 +033006 +092004 +093001 +092004 +092004 +024005 +092001 +089015 +033022 +059003 +033006 +092004 +093001 +087003 +092004 +011001 +019005 +092003 +089017 +019005 +089023 +092004 +093001 +033006 +024005 +092001 +092004 +089007 +092001 +028001 +076 +015004 +090003 +092001 +36459 092004 +009003 +024001 +090006 +069002 +028005 +016 +015006 +089015 +017005 +092004 +089007 +092006 +089007 +024005 +092004 +033015 +083006 +059003 +092004 +011001 +089017 +089014 +023008 +067005 +089015 +092004 +033006 +092004 +009005 +092004 +031009 +092003 +023008 +092003 +015004 +013002 +022007 +067006 +092004 +033006 +015006 +092004 +084001 +092004 +053009 +033006 +090006 +023007 +092004 +010002 +092003 +067006 +022003 +092004 +033017 +089023 +092004 +093001 +024002 +033004 +092004 +069002 +025022 +36524 031009 +36526 023008 +089015 +015006 +084002 +092004 +007002 +069002 +013004 +015008 +092004 +089020 +092004 +089023 +36540 093001 +089017 +093001 +089017 +093001 +089017 +092004 +010002 +092004 +010002 +089017 +092004 +010002 +089017 +059003 +025012 +089017 +052 +092004 +089023 +092004 +033006 +069002 +025012 +069002 +023007 +089023 +023005 +089015 +033044 +092004 +028001 +090006 +023007 +089023 +092004 +018001 +092004 +008002 +092004 +033006 +033006 +092004 +009004 +023007 +089015 +015007 +092004 +026 +092004 +089015 +017001 +067005 +089015 +033032 +092004 +057008 +023001 +089015 +025020 +092004 +010002 +092004 +089023 +092004 +033032 +092004 +092004 +033006 +092004 +013004 +36612 033029 +092004 +060002 +037005 +092004 +076 +089017 +037003 +037001 +059003 +092004 +012001 +089017 +023009 +023008 +089015 +015004 +092004 +033019 +092004 +037004 +092004 +012001 +089017 +023008 +089015 +033006 +090013 +092004 +092004 +015024 +089009 +092004 +015002 +069003 +006023 +069003 +006016 +069003 +005001 +069003 +006011 +069003 +089016 +060002 +006017 +057001 +089017 +071001 +084002 +092006 +007002 +015008 +083001 +085003 +089015 +084001 +015004 +089017 +071001 +059001 +069002 +034007 +092003 +015004 +084001 +092004 +001014 +092007 +092004 +002005 +089021 +092004 +008002 +092003 +016 +089009 +033020 +090008 +092004 +089015 +015004 +015002 +083003 084003 +092004 +001014 +033015 +089017 +023008 +083002 +36703 033015 +093001 +092004 +037004 +092004 +013004 +059003 +089015 +032001 +089007 +092004 +033006 +090001 +092004 +090006 +093001 +023007 +089021 +023007 +089017 +090001 +092004 +090006 +093001 +024001 +089017 +058006 +090006 +053009 +092004 +092004 +067005 +023007 +089015 +033006 +093001 +093001 +092001 +020004 +089023 +092004 +013001 +092007 +089004 +092006 +033015 +092007 +089015 +068005 +024001 +092004 +091001 +015007 +092004 +053009 +033015 +092004 +059001 +042002 +089015 +015023 +092004 +015004 +028004 +028004 +084002 +001014 +033009 +093002 +089015 +092004 +011001 +027001 +015020 +092004 +089015 +034007 +092004 +033006 +092004 +089004 +092004 +037004 +092004 +012001 +089017 +092004 +057005 +023008 +36793 023008 +36795 092004 +067009 +068001 +067006 068004 +089015 +015005 +092004 + +033006 +092004 +015004 +092004 +011001 +089009 +015001 +084002 +092004 +083004 +001014 +089017 +001014 +034008 +089017 +027002 +005001 +089007 +083001 +083003 +001013 +080001 +085001 +089015 +033006 +090013 +092004 +057008 +092004 +023001 +092003 +089023 +092004 +033006 +069002 +013003 +092002 +059001 +064 +005001 +060002 +089017 +004005 +060002 +36848 069005 +015004 +092002 +057015 +090009 +059003 +092004 +011001 +092007 +005001 +089007 +013003 +078003 +060002 +009002 +089015 +033006 +090013 +092004 +036004 +092004 +017006 +092004 +011001 +078003 +089016 +060002 +089015 +042002 +061 +36879 017006 +059003 +089015 +018001 +092004 +060002 +005001 +089017 +092004 +060002 +004005 +024001 +084002 +092004 +001002 +033037 +092004 +089015 +019004 +089015 +057008 +092004 +036004 +057008 +092004 +011001 +089015 +023001 +36908 023001 +063001 +089015 +015024 +092004 +057002 +092004 +019004 +006016 +060002 +091001 +013004 +067007 +092004 +36923 033013 +092004 +058007 +058007 +085001 +092004 +092004 +036004 +36932 033014 +092004 +033006 +092004 +092001 +013001 +092004 +011001 +033006 +089015 +092004 +033014 +033006 +093001 +092004 +053005 +089017 +058006 +093001 +089017 +058006 +090006 +053009 +092004 +092004 +067005 +023007 +089015 +033006 +092004 +089023 +092003 +092004 +092001 +013001 +033006 +089015 +093001 +033014 +033006 +092004 +053009 +092004 +012001 +36977 092004 +033032 +092004 +033032 +092004 +033006 +092007 +033006 +090006 +071005 +092004 +009001 +092004 +009001 +059001 +024006 +089017 +030007 +090001 +092004 +053009 +089017 +053009 +089017 +053009 +089015 +020004 +089015 +092004 +060003 +067009 +023007 +089015 +033006 +090013 +059003 +089010 +092004 +025001 +036004 +092001 +015006 +030002 +092004 +089015 +024006 +092004 +006006 +092004 +37027 067005 +089015 +036004 +092001 +089007 +37033 092006 +025001 +092004 +023007 +092004 +021005 021006 +027002 +092004 +089017 +071001 +092006 +023007 +092004 +023007 +092004 +090010 +092001 +092007 +021005 021006 +092004 +089007 +092004 +035001 +009001 +057016 +092004 +001006 +063001 +089023 +092004 +057007 +089024 +057007 +089007 +071001 +092006 +025018 +092001 +089017 +092004 +092001 +033006 +092007 +092004 +009001 +092004 +009001 +025018 +37082 015006 +089013 +092004 +014006 079005 +092004 +089017 +092004 +012001 +089017 +092004 +088003 +012001 +089023 +033006 +092003 +070 +085001 +092004 +092004 +083001 +085001 +092006 +069002 +069002 +090013 +023007 +067006 +071001 +090013 +092004 +037004 +092004 +012001 +37116 013004 +067002 +092004 +033006 +092007 +078003 +067009 +060002 +37125 015023 +093001 +089017 +093001 +089017 +093001 +015010 +083008 +092004 +001007 +033013 +089015 +013004 +067007 +092004 +033013 +092004 +092004 +024001 058002 +092004 +008002 +092004 +058006 +089017 +092004 +006017 +092004 +014006 +014006 +089015 +091003 +009002 +060002 +033011 +092004 +37161 013001 +093001 +089017 +093001 +092006 +024001 +089013 +014006 079005 +033006 +092004 +023007 +092004 +092006 +013004 +083005 +093002 +071005 +37179 092004 +093001 +089017 +092004 +089020 +092004 +37186 023005 +023005 +089015 +023005 +024001 +092004 +014006 079005 +092004 +089017 +092004 +060002 +009002 +092004 +017001 +092004 +089015 +013004 +067007 +092004 +015004 +092004 +084001 +092004 +033006 +092004 +093001 +090013 +092004 +093001 +087003 +065005 066 +013001 +092002 +083001 +085001 +37222 042003 +007002 +060002 +37226 092003 +089017 +37229 093001 +089017 +37232 093001 +069002 +032001 +092006 +033006 +089015 +092007 +092004 +033006 +013004 +001005 +089015 +014007 +092004 +37247 025022 +067002 +092004 +015008 +092004 +084002 +092004 +001005 +089015 +033006 +015001 +084001 +092004 +001005 +033006 +092007 +013001 +092004 +012001 +092001 +092004 +030006 +092004 +036003 +089015 +067002 +092004 +015001 +092004 +033006 +027002 +093001 +058007 +089015 +092004 +033008 +37284 092004 +033015 +067007 +092007 +092004 +067008 +092004 +092006 +024001 +37294 013004 091001 +092004 +067010 +067009 +015011 +092004 +084001 +092004 +001007 +013004 +092004 +011001 +078001 +37308 091003 +009002 +063004 084001 +092004 +011001 +033006 +033006 +033017 +033012 +092003 +030002 035001 +090013 +092004 +010002 +092001 +089007 +058007 +092001 +013001 +089017 +091003 +012001 +088019 +092004 +089015 +067005 +033006 +089017 +023009 +092004 +089013 +014005 +089017 +37342 015004 +089021 +092004 +019005 +092004 +089017 +033012 +092004 +036004 +092003 +090006 +053011 +092004 +37356 069002 +074 +089015 +033004 +092004 +093001 +033006 +091004 +011001 +031009 +089017 +088035 +067006 +067002 +085001 +089020 +092003 +089017 +025015 +092003 +015023 +083001 +092004 +010002 +092003 +089015 +067006 +015005 +092004 +023009 +092004 +092004 +012001 +089017 +023009 +089023 +033046 +092004 +093001 +092004 +012001 +092004 +053004 +089017 +023008 +092004 +009004 +089015 +057 +092004 +092004 +010002 +092004 +37410 025020 +059003 +089007 +092004 +076 +092004 +012001 +37418 059003 +025020 +089007 +059003 +092006 +042002 +033006 +090013 +092004 +036004 +092004 +024002 029001 +092003 +37432 092004 +024002 029001 +092003 +092004 +033006 +092007 +089007 +092004 +009001 +092004 +009001 +067002 +037001 +37446 037001 +009001 +089023 +092004 +032001 +092004 +033006 +092007 +089017 +37456 028005 +084001 +092004 +089008 +069002 +032004 +092004 +089017 +025022 +033014 +092004 +089004 +092004 +033006 +092007 +37472 068001 +083003 +092004 +033051 +092004 +071001 +092004 +092004 +013001 +087003 +089023 +092004 +093001 +028001 +092004 +030001 +092004 +026 +092004 +018001 +009004 +085002 +092004 +083005 +092004 +089015 +033006 +092004 +071001 +092006 +034007 +092007 +092004 +009004 +090006 +092004 +033009 +092001 +092001 +034007 +089017 +071001 +092006 +092001 +034007 +034007 +092004 +015004 +092001 +089007 +092004 +087004 +083003 +059003 +092003 +013001 +092007 +013001 +087003 +37532 033004 +37534 093001 +033006 +087003 +024001 +092004 +089012 +092004 +033009 +092003 +053011 +012001 +089015 +013004 +092004 +089007 +069002 +015020 +089020 +092002 +089023 +033006 +090013 +092004 +093001 +069002 +013004 +089007 +092006 +069002 +085001 +090008 +092003 +090009 +092003 +013001 +37570 013004 +067002 +092004 +067003 +092004 +067008 +092004 +015010 +092004 +37580 092004 +092004 +030005 +030005 +092004 +015002 +084002 +093002 +089015 +015004 +033015 +067002 +067002 +092004 +089015 +015004 +015008 +084002 +001014 +093002 +37601 077 +092004 +37604 069002 +034007 +092004 +089007 +092004 +009001 +092004 +37612 015002 +084002 +093002 +089015 +027001 +092004 +036004 +093001 +089017 +093001 +033006 +012001 +025001 +033006 +002003 +015011 +090003 +092004 +001002 +37632 020003 +092004 +089023 +016 +033046 +092004 +089015 +015001 +084002 +058006 +001014 +091001 +015001 +092004 +083008 +092004 +015002 +033006 +092004 +090013 +092004 +036004 +092003 +071001 +083002 +015004 +37659 033006 +092004 +092004 +093001 +092004 +004001 +001008 +057001 +089017 +092004 +004002 +092004 +004002 +006016 +089023 +092004 +009001 +092004 +009001 +069002 +057001 +083002 +092004 +023006 +023006 +089017 +033006 +090013 +058006 +036004 +092001 +089023 +092004 +033006 +013004 +092001 +067002 +015004 +035004 +092004 +010002 +092001 +089023 +033006 +092004 +033010 +092004 +023007 +052 +092004 +37710 023007 +089023 +092003 +015004 +033015 +092004 +037004 +092004 +012001 +089017 +033006 +089017 +058006 +036004 +092003 +012001 +089023 +067002 +013004 +092001 +033003 +092004 +083003 +092004 +007002 +092001 +089015 +033006 +090013 +092004 +092004 +093001 +092004 +068001 +092004 +068001 +37747 006002 +37749 024001 +37751 092004 +083006 +066 +013001 +092004 +037004 +092004 +012001 +37760 067002 +092007 +037005 +092004 +012001 +058006 +060002 +089015 +015004 +092004 +089016 +060002 +083006 +083006 +092004 +084002 +059003 +001014 +089017 +080001 +083002 +067002 +092008 +015006 +089015 +033006 +090013 +092004 +091002 +092004 +043 +059002 +089023 +092004 +042004 +059001 +089008 +033012 +092004 +057001 +092004 +043 +089009 +042004 +015004 +089009 +092004 +043 +092004 +015004 +091003 +015004 +092003 +064 +004001 +37816 083003 +004001 +069002 +015024 +006016 +069002 +006016 +069002 +006017 +089017 +092004 +084003 +092004 +015002 +033003 +089017 +071001 +084002 +092006 +007002 +015008 +067002 +033006 +022007 +092004 +010001 +092007 +089015 +089010 +083001 +085001 +009001 +022007 +013001 +090013 +092004 +092004 +022007 +092003 +37858 090013 +092003 +015007 +089015 +083003 +092004 +092004 +007002 +085003 +023001 +089017 +023001 +092004 +090003 +092004 +089007 +065002 +092004 +042004 +092004 +057013 +092004 +069002 +015001 +084001 +007002 +084002 +007002 +089017 +071001 +084002 +092006 +001014 +015008 +089015 +034007 +092003 +023001 +092004 +057008 +092003 +089017 +023008 +092004 +013001 +092004 +023009 +089017 +033006 +092004 +067002 +090013 +092003 +092004 +037004 +092004 +012001 +089017 +071001 +084002 +092006 +001014 +015008 +37922 069002 +034007 +092003 +015004 +084002 +092004 +001016 +092004 +033006 +37932 092004 +002005 +092004 +018002 +092002 +090003 +092004 +001014 +092003 +083008 +092004 +008002 +016 +092003 +089023 +092007 +028001 +090006 +067002 +092004 +037004 +092004 +012001 +033006 +092003 +090006 +093002 +067002 +092004 + +092007 +025015 +013001 +064 +092004 +001014 +092007 +022001 +092003 +093002 +022001 +092003 +093002 +089007 +089010 +083003 +093002 +089017 +093002 +013004 +092004 +076 +092004 +013004 +083003 +092003 +071003 +067002 +013001 +006017 +089017 +014008 +017002 +041005 +089023 +093002 +089017 +093002 +025015 +013001 +067002 +092004 +030007 +064 +092003 +089017 +093002 +069002 +092003 +084002 +001002 +087003 +084002 +092004 +001003 +015011 +092004 +031007 +092003 +092001 +031007 +089017 +092004 +031009 +092003 +092001 +031009 +089017 +092004 +092001 +031009 +031009 +092004 +015004 +092001 +38038 015007 +092004 +060002 +089013 +025011 +033006 +012001 +38046 092004 +012001 +036003 +092002 +089012 +092004 +033009 +092003 +089015 +033006 +092004 +024001 +092004 +012001 093001 +064 +014004 +084001 +092004 +001002 +015012 +091003 +037005 +092003 +092004 +037003 +092004 +015029 020002 +083009 +004004 +089017 +004004 +089017 +037001 +059003 +092004 +076 +092004 +039001 +089017 +092004 +092003 +069002 +069002 +020002 +089023 +089007 +092007 +069002 +025011 +089007 090006 +092004 +012001 +092003 +036003 +089023 +025011 +089007 090006 +092004 +033009 +092003 +033005 +083003 +092004 +001002 +067002 +092004 +092004 +067001 +025011 +092004 +012001 +092004 +088003 +089015 +033006 +033036 +092003 +012001 +012001 +092004 +001001 +38128 092004 +001001 +089007 +028005 +092007 +089021 +032004 +089017 +032004 +089017 +028003 +092004 +009004 +069001 +092004 +012001 +089007 +061 +025008 +013001 +090005 +092003 +063001 +092001 +057008 +090001 +092004 +012001 +092001 +089017 +092004 +028001 +092004 +013001 +092004 +012001 +089023 +38166 092004 +012001 +089017 +092004 +013001 +092004 +012001 +089023 +38175 092004 +012001 +089017 +071001 +092006 +028003 +030004 +092004 +012001 +089015 +016 +084002 +092004 +036004 +028004 +028004 +033006 +025011 +092004 +008002 +092004 +024001 +092006 +024001 +089007 +033006 +092003 +090006 +059001 +053009 +089017 +037004 +025001 +024001 +092006 +092003 +024001 +38213 069002 +024001 +089017 +024002 +092006 +024002 +38220 069002 +024002 +091001 +091003 +033033 +092004 +017001 +027003 027004 088038 +092004 +033006 +033017 +092004 +042002 +023007 +067005 +057009 +089015 +092004 +033006 +090013 +092004 +083003 +092004 +033005 +092004 +033005 +092004 +033005 +089015 +092004 +033014 +033006 +025003 +012001 +092004 +012001 +092003 +090003 +063001 +092004 +026 +092003 +089017 +089012 +063001 +092004 +026 +092003 +089017 +089012 +063001 +092004 +074 +092003 +089017 +089012 +063001 +092004 +026 +092003 +089017 +092004 +011003 +092003 +064 +092003 +089015 +033006 +092004 +072002 +033014 +092007 +042002 +38294 023007 +089023 +092004 +030004 +088002 +092004 +033006 +090013 +092004 +093001 +091002 +092004 +013001 +092001 +011003 +033014 +092004 +093001 +033006 +009002 +092004 +015011 +084001 +093002 +084002 +093002 +089015 +057021 +037001 +092006 +089017 +049 +092004 +089017 +019001 +090014 +015004 +015004 +023007 +089015 +089005 +013004 +053009 +092004 +015011 +083008 +092004 +001016 +092007 +089015 +024001 +092004 +015003 +089015 +064 +089017 +053009 +084002 +092004 +080001 +015006 +089015 +024001 +015003 +089023 +093002 +092004 +015002 +015006 +084002 +092004 +089015 +024001 +025003 +089015 +015005 +079026 +092004 +020002 +092004 +047001 +006019 +089017 +006019 +089015 +015009 +092004 +083008 +092004 +057001 +004001 +015024 +092004 +084002 +007002 +089015 +035004 +092004 +089015 +067002 +092004 +067010 +015004 +060002 +006011 +057008 +092004 +007002 +089015 +033006 +035004 +092004 +089017 +092004 +071001 +092006 +057011 +092001 +067002 +092004 +015007 +092001 +057012 +092003 +031005 +092003 +092004 +092007 +092004 +060002 +013002 +011003 +092004 +090013 +083003 +092004 +057021 +089015 +092004 +033006 +092004 +090011 +092004 +088010 +090013 +092004 +089015 +033006 +092004 +092004 +093001 +015004 +089015 +092003 +042002 +064 +38451 067007 +092004 +015002 +092004 +092004 +015008 +084002 +001014 +092004 +089015 +009003 +092004 +033009 +093001 +034007 +092004 +38470 089017 +092007 +013003 +010003 +033009 +093001 +092006 +089017 +017002 +083005 +092004 +008002 +092004 +012001 +036003 +092004 +033006 +092004 +089023 +092004 +093001 +025021 +089004 +078001 +046 +089015 +017001 +033006 +012001 +069002 +025021 +092003 +090006 +092004 +010003 +092001 +058007 +092001 +035002 +38510 089008 +033006 +092004 +090006 +092001 +035001 +089023 +033004 +033006 +092004 +092004 +012001 +093001 +093001 +025021 +089017 +025021 +089004 +059001 +089023 +38531 057005 +013001 +38535 089007 +093001 +092004 +088001 +063004 +030006 +38542 069002 +068004 +092004 +091001 +013004 +067007 +092004 +085001 +033013 +092004 +083003 +080001 +092004 +067002 +068004 +033006 +092004 +092004 +036004 +092004 +090013 +092004 +012001 +033017 +092002 +033013 +064 +089017 +093001 +033017 +092004 +036004 +092004 +38576 033006 +092004 +067002 +033013 +033006 +012001 +088003 +092004 +033009 +092003 +013004 +092004 +037004 +092003 +092004 +005001 +092002 +092004 +067009 067010 +057008 +092002 +092004 +38599 067005 +089017 +040002 +092002 +092004 +088038 +092002 +089007 +089017 +092008 +040002 +059003 +088038 +092002 +089017 +069002 +090014 +092002 +013002 +088038 +091001 +033006 +090013 +092004 +092004 +063004 +092003 +057001 +034001 +089015 +015001 +084002 +092004 +067004 +089015 +033006 +092004 +034001 +057017 +092001 +060002 +005001 +089007 +034001 +092001 +015006 +084001 +015002 +084002 +092001 +089017 +069002 +057001 +092006 +057008 +092004 +089017 092007 +084001 +033004 +033006 +069002 +092001 +022001 +013004 +067002 +092004 +007003 +079024 +089017 +092004 +010002 +092001 +089020 +092001 +083003 +092004 +006015 +085001 +069002 +074 +017001 +057008 +092003 +033006 +092003 +089010 +38686 069002 +057008 +092004 +017001 +089007 +092004 +013001 +034001 +092004 +091002 +089007 +092004 +066 +092004 +017001 +057008 +092004 +059001 +057005 +089017 092001 +092003 +033006 +033012 +38710 057008 +092003 +027004 +38714 027002 +019001 +38717 079024 +092003 +089007 +059003 +092004 +033012 +057009 +089017 +092004 +027004 +027002 +089017 +092004 +019001 +079024 +089017 +092004 +063004 +092003 +092004 +010002 +033012 +092004 +010002 +004005 +38743 089023 +004005 +004004 +092004 +057008 +089024 +38750 033012 +005001 +057008 +092004 +004004 +089008 +089010 +092003 +088015 +013001 +028001 +057008 +065003 +057008 +092004 +010002 +092003 +059002 +078002 +092004 +012001 +092004 +090003 +001002 +057008 +012001 +088003 +092004 +033012 +092004 +091001 +38782 053011 +012001 +089017 +092004 +013001 +033006 +089015 +013004 +092004 +012001 +015004 +033006 +092004 +033006 +089015 +025020 +092004 +011001 +089023 +092004 +063004 +092004 +033006 +090001 +093001 +092004 +037004 +092004 +012001 +053011 +092004 +012001 +089017 +058006 +027003 +033056 +089003 +001002 +068005 +090003 +092004 +089023 +092004 +032001 +092004 +092004 +030001 +033006 +092004 +059003 +001012 +090008 +092004 +039002 +020003 +089017 +007002 010001 +090008 +007002 010001 +015012 +089017 +089010 +089017 +092004 +012001 093001 +090008 +092004 +039002 +092004 +013001 +092004 +037004 +092004 +089007 +033006 +090001 +093001 +053011 +092001 +092004 +012001 +089017 +089010 +092001 +090001 +093001 +053011 +092004 +012001 +092004 +036004 +092003 +090001 +092004 +053011 +38879 092004 +092003 +056005 +013004 +089023 +089010 +089012 +076 +012001 +092001 +053011 +092004 +012001 +089008 +013004 +090013 +092003 +092004 +037004 +092004 +012001 +38901 092004 +079013 +055001 +037009 +092004 +092004 +007002 +013001 +022007 +013001 +092004 +057001 +092004 +089023 +067002 +079013 +092004 +039010 +039012 +092004 +092004 +006007 +092004 +015024 +090002 +092006 +031009 +089015 +092004 +057021 +092004 +057008 +092004 +069002 +013001 +090009 +092001 +090008 +092001 +013001 +089017 +092004 +069002 +015013 +089020 +092001 +015014 +38949 092004 +053004 +012001 +015004 +084001 +092004 +009001 +015002 +084003 +002004 +080001 +027004 +023006 +38963 069002 +027002 +033006 +015007 +084002 +092004 +007002 +092001 +084001 +015004 +089015 +015006 +027001 +046 +089017 +079004 +067002 +015004 +089017 +015023 +058006 +012001 +088015 +092004 +060002 +089015 +015008 +085005 +083001 +38993 013002 +092004 +061 +092004 +009001 +092007 +065003 +092004 +060003 +39003 013004 +067007 +092004 +033006 +092004 +092007 +033006 +033006 +092004 +009003 +063004 +092004 +011001 +033006 +092004 +025011 +092004 +023003 +092004 +023003 +092003 +089017 +008002 +092006 +023001 +089023 +092004 +033006 +089008 089023 091002 +025011 +092004 +036003 +092004 +033019 +092004 +012001 +089015 +036003 +39042 092004 +011001 +015013 +068001 +033006 +092004 +011001 +092007 +011001 +088015 +013001 +033056 +068005 +39056 033056 +069002 +090014 +092004 +089023 +39062 092004 +033056 +093001 +089007 +064 +013002 +093001 +092004 +093002 +033056 +061 +013001 +089017 +092004 +009001 +092004 +009001 +092004 +011001 +092007 +037004 +082001 +017001 +067002 +092004 +030007 +089020 +092004 +009001 +092004 +011001 +092007 +089015 +056005 +092004 +089007 +015006 +089003 +092004 +080002 +092004 +001006 +024002 +092004 +032004 +093001 +089017 +091003 +078002 +093001 +083001 +009001 +093002 +017001 +067002 +092004 +030007 +089020 +092004 +011001 +092007 +089015 +056005 +092004 +089007 +041005 +39129 092004 +033019 +093001 +089017 +091003 +078002 +093001 +083001 +092004 +006014 +014008 +084002 +028005 +085002 +069003 +083009 +092004 +006016 +089023 +084002 +092004 +006014 +089009 +092004 +015008 +092004 +39156 024001 +092004 +006014 +092004 +008001 +013001 +092004 +008002 +092003 +39166 092004 +008002 +092003 +023008 057008 +013001 +089017 +063001 +092004 +008001 +092003 +014006 +013001 +089023 +067002 +023009 057008 088015 +013001 +089017 +092004 +008001 +092003 +014007 +089008 +027006 +069005 +092004 +014006 +092004 +013001 +092003 +014007 +013001 +089008 +089010 +092004 +008001 +092003 +063001 +014006 +069002 +090013 +063004 +092004 +014007 +013001 +014006 +063001 +064 +39214 092004 +006014 +092004 +014006 +014006 +092003 +39221 067007 +092004 +033006 +033012 +092004 +011002 +089009 +023001 +089020 +092004 +089015 +015008 +017006 +089023 +092004 +011002 +024001 +025020 +090006 +069002 +067002 +053003 +067002 +092004 +023001 +089023 +033006 +092004 +012001 +090013 +092004 +067002 +092003 +092004 +011002 +092004 +083004 +092004 +006016 +089017 +092004 +006016 +079010 +089023 +092004 +026 +092003 +059004 +025002 +089017 +088015 +032005 +069004 +092004 +042003 +092004 +083004 +089017 +092004 +083003 +042003 +089023 +092004 +085001 +057008 +057008 +39288 091003 +059003 +053003 079010 +092003 +013001 +089023 +022001 +092003 +092004 +011002 +089007 +057008 +092004 +003003 +089017 +092004 +003003 +089017 +059003 +003003 +39309 036003 +092004 +056005 +089017 +092004 +025003 +092004 +012001 +089023 +071004 +092007 +042002 +089017 092007 +069002 +013004 +022001 +092003 +092004 +011002 +089007 +025010 +092004 +087002 +083003 +092004 +007002 +089017 +092004 +033003 +083003 +092004 +057016 +022001 +092003 +089007 +013001 +064 +092004 +007007 +092004 +024007 +089015 +092004 +009001 +092004 +015029 +083009 +069002 +028001 +089023 +033004 +092004 +092004 +033033 +033006 +092004 +033017 +092007 +033006 +089017 +092002 +033042 +39372 092004 +033006 +089017 +092003 +092004 +033033 +022001 +089007 +015024 +092004 +009001 +015024 +022004 +39386 092008 +060002 +092004 +008002 +092003 +069002 +018001 024005 +092004 +015024 +022001 +092003 +089007 +045 +092004 +007007 +092004 +053009 +089023 +092004 +010002 +092003 +020004 +092004 +089008 +033020 +013001 +39413 031003 +092004 +042002 +092004 +010002 +092003 +089007 +089023 +092008 +020004 +092004 +089023 +092003 +045 +39429 089017 +092004 +032004 +092004 +012001 +033006 +015004 +084002 +092004 +053009 +089017 +033015 +089015 +063004 +092004 +020004 +089017 +039009 +089008 089009 +056003 +092004 +023007 +063001 +092004 +053009 +092004 +014005 023007 +067006 +042003 +001001 +090003 +092004 +011001 +092007 +39464 008002 +093001 +067006 +008002 +093001 +092004 +020003 +083003 +092004 +006015 +089017 +092004 +007002 +069001 +033006 +092003 +056003 +090003 +092004 +011001 +092007 +022001 +092003 +092004 +033033 +089007 +015024 +092004 +057007 +092004 +032002 +092008 +069002 +090013 +089017 +092004 +090013 +013004 +084001 +015004 +092004 +068001 +092004 +053009 +089017 +092004 +011002 +078001 +039001 +089015 +033014 +092004 +089004 +059001 +030004 +092004 +027003 +092004 +090003 +092004 +033006 +092004 +067007 +092006 +015013 +092004 +060001 +092004 +011001 +089008 +019005 +092005 +068001 +033006 +090013 +092004 +036004 +092004 +060003 +027006 +092004 +39546 092004 +088029 +39549 013001 +088029 +092004 +011002 +089023 +092004 +013003 +028005 +092006 +069002 +028003 +39561 028005 +092006 +069002 +027001 +089008 +39567 059001 +028005 +092004 +014007 028005 +033006 +028004 +092004 +028004 +024002 +089017 +092006 +028005 033006 +092004 +028005 033006 +033006 +083003 +092004 +007003 +033015 +028004 +092004 +007003 028004 +39590 033006 +092003 +092004 +034001 +092001 +069002 +025022 +089007 +092004 +020004 +092004 +008001 +39603 067002 +092007 +069002 +074 +078002 +092004 +042002 +089023 +028003 +092003 +092004 +025022 +025022 +092004 +067002 +092004 +020004 +39621 037003 +085002 +084002 +092004 +001003 +069001 +033006 +092003 +092007 +025022 +069004 +060002 +004002 +057015 +006011 +060002 +091002 +060002 +063004 +092004 +069002 +39643 029004 +090005 +092004 +012001 +089023 +39649 092004 +008002 +092004 +008002 +092003 +063001 +060001 +069002 +025022 +059001 +004002 +065001 +39662 033006 +092003 +059003 +071001 +092006 +033021 +089004 +092001 +083006 +092004 +009001 +39674 092004 +009001 +092004 +009001 +033021 +089004 +092004 +083006 +092004 +012001 +092004 +012001 +089023 +092004 +034005 +092001 +083006 +092004 +009001 +034005 +083006 +092004 +012001 +092004 +012001 +089017 +059003 +092006 +033006 +033006 +090013 +092004 +009001 +092004 +009001 +040002 +092004 +089023 +092004 +090013 +092004 +088003 +012001 +033042 +069002 +040002 +089017 +067002 +015024 +092003 +037001 +092004 +007002 +089017 +092004 +037004 +089017 +092004 +037003 +069002 +025021 +092004 +089024 +092004 +033049 +089024 +092004 +033006 +089007 +092004 +088003 +012001 +033017 +092003 +067002 +058005 +092004 +067001 +092006 +033006 +071004 +39756 033006 +092004 +063004 +092004 +011001 +092004 +033017 +033006 +092004 +010003 +092001 +063006 +089020 +092001 +092004 +057009 +089023 +092004 +033006 +092004 +009002 +092004 +092001 +037005 +056005 +089024 +063006 +037001 +092003 +089015 +033006 +090013 +092004 +030002 +089017 +013004 037009 +089021 +059003 +025002 +089007 +069002 +089012 +092004 +059006 +092004 +092004 +023007 +092004 +013001 +090003 +092004 +057001 +092004 +089015 +033006 +033003 +090013 +092004 +033006 +009002 +092004 +057003 +092004 +001015 +023012 +39822 030001 +090013 +092004 +033006 +092004 +042002 +089007 +069002 +057001 +083002 +085002 +092004 +043 +092001 +089015 +033006 +092007 +042002 +020003 +092001 +092004 +007002 +089015 +079028 +045 +089015 +085002 +083001 +063001 +092004 +003004 +089017 +092004 +057003 +092001 +089015 +033006 +092004 +026 +092001 +026 +057001 +059002 +057003 +085001 +067005 +067009 +059001 +023006 +023001 +023001 +051 +089023 +033006 +092004 +092004 +012001 +032005 +092007 +092004 +067009 +092004 +023007 +092003 +033012 +090003 +092003 +089017 +092006 +077 +092004 +013004 +061 +092004 +065001 +092004 +39899 069002 +090006 +012001 +057003 +39904 033006 +090013 +092004 +036004 +092004 +39911 033006 +092003 +069002 +025021 +092004 +023007 +092004 +023001 +069003 +092004 +008001 +092004 +049 +089007 +092004 +023007 +078002 +013001 +092004 +005001 +089017 +092004 +008001 +092004 +006017 +030001 +092004 +004002 +090006 +39941 043 +39943 043 +092006 +069002 +013003 +007003 +069003 +007002 +089017 +092004 +012001 +023001 +092004 +059002 +078002 +092003 +065001 +092004 +004002 +089017 +092004 +063004 +092003 +025021 +074 +089017 +092004 +067008 081002 +092004 +059008 +081006 +089008 +089007 +069003 +065006 +074 +092004 +089004 +092004 +063005 +025021 +030001 +092004 +003003 +092004 +39988 048 +39991 089023 +033006 +092003 +069003 +093001 +013001 +059003 +092004 +087003 +092004 +049 +064 +092004 +092007 +089023 +089007 +083003 +001015 +092004 +003003 +013003 +067010 +089015 +067010 +084002 +007007 +015026 +092004 +012001 +061 +049 +059002 +078002 +092003 +031009 +089017 +092003 +069002 +025001 +092004 +023001 +089017 +092004 +023001 +089017 +069002 +025021 +089007 +092007 +059003 +092004 +011003 +092004 +001006 +025001 +089017 +092003 +092004 +012001 +028001 +090006 +057005 +092007 +089023 +025001 +092004 +037004 +092004 +40060 092007 +057008 +092003 +069002 +025022 +092004 +059002 +011002 +089007 +025008 +092004 +012001 +092003 +090014 +092003 +092004 +037004 +057015 +092004 +057001 +092003 +089015 +057008 +057008 +042003 +092004 +006016 +069002 +067005 +065001 +013003 +083003 +092004 +001002 +083002 +057021 +069002 +015005 +069003 +004003 +020003 +089007 +083002 +085001 +092004 +065001 +092003 +083001 +089017 +092004 +026 +092003 +085001 +40114 092003 +092004 +077 +077 +089017 +092004 +006014 +014008 +089017 +092003 +064 +009001 +085003 +092004 +057001 +092004 +067002 +015007 +084001 +092004 +034010 +089009 +015006 +089015 +019001 +067002 +079024 +092004 +025011 +092004 +087005 +092007 +092006 +027006 +015006 +092004 +057001 +027002 +072001 +033006 +092003 +090006 +049 +089015 +017006 +092004 +089015 +015006 +035002 +092004 +089011 +067007 +092004 +060003 +089011 +067007 +092004 +060003 +067009 +015006 +089015 +027002 +061 +025011 +013001 +092007 +089017 +092007 +028001 +090006 +089010 +028001 +092004 +057001 +092007 +067009 +092004 +057021 +015006 +071003 +069002 +013004 +019004 +092004 +007002 +092004 +089017 +092003 +013001 +077 +089007 +092006 +067009 +069002 +031005 +092004 +009001 +092004 +009001 +015006 +089015 +033006 +092004 +093001 +012001 +089004 +092002 +092004 +033003 +092007 +033006 +089024 +089017 +089004 +059003 +089015 +033006 +092004 +012001 +071001 +092004 +013001 +092004 +031009 +046 +092004 +032004 +092006 +037005 +092004 +057001 +037001 +092004 +046 +092004 +092004 +057008 +067002 +067001 +092004 +005001 +025011 +092004 +087005 +092007 +092006 +042002 +061 +015006 +092004 +057001 +092004 +027002 +070 +033006 +092003 +090006 +037001 +059003 +092004 +057001 +092004 +037005 +092004 +089023 +089010 +033006 +092004 +087005 +092007 +40285 092004 +026 +092004 +067005 +092004 +057001 +092001 +015006 +089015 +068001 +019001 +092004 +087005 +089017 +092004 +087005 +089017 +023001 +089017 +023001 +089017 +088037 +085001 +092004 +057001 +092004 +087005 +092007 +067002 +067009 +092006 +069002 +030003 +089017 +067002 +067009 +092006 +069002 +028001 +089015 +019002 038001 +092004 +089017 +092004 +063004 +092004 +083003 +092004 +031009 +085002 +089023 +092007 +092004 +087005 +092004 +028001 +092004 +025001 +092004 +057001 +092004 +40347 069002 +077 +089024 +042002 +089005 +092004 +025001 +092004 +019001 +059001 +089023 +092004 +069002 +028001 +089017 +042002 +065002 +019001 +019001 +059001 +089017 +059003 +092006 +057008 +059002 +059002 +033012 +090003 +092004 +089017 +092006 +035005 +059002 +078002 +033012 +092004 +015006 +039002 +039002 +090013 +092004 +001006 +089017 +40391 025001 +089010 +067002 +014008 +089023 +053005 +40398 024006 +089017 +092004 +025021 090013 +067006 +40404 013004 +031005 +090006 +085001 +022007 +090012 +083008 +092004 +009001 +033006 +092003 +069002 +089023 +40418 039002 +089007 +085001 +039002 +067006 +092004 +067002 +060002 +083003 +063001 +010001 +060002 +090008 +060002 +089017 +060002 +090008 +060002 +039002 +010002 +090008 +010002 +089017 +010002 +090008 +010002 +010002 +090008 +010002 +089017 +010002 +090008 +092004 +010002 +010004 +090008 +092004 +010004 +092004 +089017 +010004 +090008 +092004 +010004 +40463 033006 +089017 +092004 +011001 +067002 +024001 +001005 +015010 +083005 +082001 +067002 +033006 +090006 +014003 +015006 +089017 +013002 +061 +089017 +067002 +014002 +014002 +033006 +090006 +014008 +013003 +089017 +013002 +088029 +092004 +024001 +092004 +001006 +089017 +092004 +001002 +027004 +028001 +089023 +092004 +067008 +092007 +092004 +069002 +40509 092004 +40511 090004 +092004 +069002 +056005 +092004 +066 +091001 +067007 +015004 +089020 +092004 +056003 +092003 +083006 +056005 +067007 +092004 +015002 +068005 +041001 +040001 +089021 +092004 +40536 015023 +092003 +084002 +092004 +056005 +089015 +092004 +056005 +092003 +037007 +092004 +037004 +089015 +092004 +037004 +092003 +015026 +084002 +007002 +033006 +092003 +069002 +069002 +015004 +084001 +067006 +40563 092004 +061 +006011 +057012 +40568 085001 +092004 +067002 +092004 +092004 +067001 +033015 +092004 +089004 +092004 +093002 +092006 +092004 +008002 +093001 +063003 +089022 +092004 +053002 +092004 +089015 +033014 +033006 +092004 +031005 +090006 +092004 +093002 +092007 +088038 +078002 +059003 +092004 +093002 +013001 +089007 +092007 +090013 +069002 +033006 +092003 +089023 +089010 +069002 +041005 +059003 +064 +020003 +089024 +092007 +092004 +40621 084002 +092006 +015012 +092004 +007002 +083003 +092004 +093002 +089017 +020004 +092004 +031005 +090006 +092004 +088038 +013001 +078002 +059003 +092004 +009001 +092004 +085005 +093002 +069002 +033006 +092003 +089023 +089010 +069002 +40651 059003 +064 +021006 +40655 033006 +092007 +092004 +033003 +003002 +057001 +092004 +043 +083003 +092004 +003003 +092004 +089015 +015001 +027004 +003004 +083008 +092004 +40674 069002 +027002 +40677 033006 +090013 +092004 +043 +091002 +060002 +067009 +090003 +092006 +015006 +027004 +003004 +083008 +092004 +003002 +092007 +091002 +069002 +027002 +019002 +092004 +40700 091002 +092004 +002005 +076 +089015 +092004 +033004 +033006 +092004 +057001 +085003 +092004 +089017 +092007 +092004 +067009 +067006 +40718 043 +083004 +092004 +089015 +085002 +008003 +091002 +089011 +023012 +003004 023012 +067005 +092004 +067006 +40734 019002 +092004 +40738 033017 +083003 +092004 +092004 +007002 +067002 +092004 +067009 +089015 +091003 +009003 +012001 +023009 +090013 +067009 +40757 017008 +40759 069002 +074 +017008 +40763 092004 +067005 078004 +089015 +024001 +092004 +092004 +093001 +033029 +089015 +033006 +092004 +009003 +037010 +092004 +023009 +092003 +089015 +085002 +092004 +092004 +008002 +40785 067005 +017008 +089015 +033037 +092004 +012001 +089023 +033004 +092004 +053009 +088024 +089007 +092004 +067009 +023008 +092004 +093001 +033006 +092004 +087004 +090006 +060002 +067009 +013003 +067007 +092006 +071004 +042004 +089008 +067007 +092004 +015006 +023008 +40819 069002 +092004 +067009 +092004 +067009 +089023 +033004 +092004 +092004 +012001 +40830 033006 +088029 +069004 +059003 +092003 +092004 +067009 +018002 +092004 +004001 +092004 +089024 +092004 +004001 +084001 +092004 +007007 +089015 +015023 +023001 +089017 +091002 +092007 +010002 +093001 +013001 +092006 +023009 +092004 +012001 093001 +060002 +089017 +060002 +067009 +037010 +084001 +092004 +023009 +092007 +092004 +067009 +092004 +067009 +069002 +071004 +40876 092007 +033006 +092004 +025018 +059003 +092004 +039001 +092004 +089017 +059003 +092004 +011001 +025011 +089007 +059003 +092004 +079005 +092004 +013004 +090001 +092004 +089008 +033006 +092004 +064 +013001 +092004 +037004 +092004 +012001 +40907 092004 +064 +092004 +064 +013001 +003004 +003003 +092006 +018001 +009002 +015026 +084002 +001015 +092004 +089015 +023011 +089015 +013002 +013002 +003002 +089015 +092004 +004002 +092004 +004002 +006016 +083008 +092004 +003005 +092004 +089015 +067002 +033006 +092004 +064 +092004 +037004 +092004 +012001 +064 +013001 +005001 +092006 +018001 +009003 +40953 084002 +005001 +081005 +060002 +067006 +40959 005001 +059003 +091001 +015002 +089016 +001014 +089017 +001014 +033017 +089017 +015002 +090011 +084002 +093002 +40974 033006 +092004 +092004 +012001 +090006 +059001 +092004 +021006 +089015 +092004 +033006 +090013 +092004 +068006 +090013 +084003 +092004 +081004 +007003 +089007 +033006 +092003 +059001 +068005 +090013 +41000 069002 +074 +067006 +071001 +092006 +017001 +092004 +057001 +089015 +079024 +092004 +007003 +089015 +068001 +083004 +085001 +089015 +019001 +092004 +007003 +033006 +087003 +079024 +092002 +41025 033004 +033006 +092003 +069002 +028001 +092003 +084001 +085001 +067002 +068001 +033006 +023001 +083006 +092003 +089017 +023001 +089017 +083008 +092004 +001016 +092002 +033017 +41048 033006 +033006 +092003 +069002 +028001 +084001 +085001 +015004 +089021 +092001 +059003 +041001 +088002 +083001 +085001 +092004 +025012 +089017 +092004 +023002 +092004 +008002 +41071 024001 +093001 +089017 +093001 +089017 +093001 +089017 +059003 +092004 +053009 +083003 +092004 +037004 +092004 +012001 +089023 +092003 +015026 +084002 +089017 +015006 +084001 +082001 +089017 +082001 +089017 +084001 +082001 +089017 +082001 +089015 +017006 +083003 +092004 +037004 +092004 +012001 +089017 +091003 +013001 +087004 +092006 +013001 +087003 +089017 +013001 +087003 +092006 +013001 +087004 +067002 +058005 +092004 +067001 +015005 +092004 +011002 +033006 +092004 +015004 +41132 015004 +084001 +089007 +093001 +030004 +092003 +020004 +41140 033006 +092004 +015004 +033006 +092004 +088015 +092007 +091003 +053011 +012001 +089017 +023008 +068003 +067010 +089015 +067010 +089015 +092004 +060003 +068003 +089023 +071005 +092001 +067010 +089015 +067010 +089015 +092004 +067010 +015001 +089007 +069002 +071001 +053009 +020003 +083004 +093002 +093002 +093002 +092004 +020004 +092004 +053009 +089017 +020004 +092004 +015004 +084002 +092004 +067001 +030004 +015013 +092004 +011003 +092003 +092006 +089014 +004002 +092004 +092004 +004002 +083009 +092004 +008002 +41205 069002 +030004 +091003 +085002 +092003 +092004 +007002 +092003 +089017 +033006 +092003 +069002 +069002 +024001 +092001 +067006 +013004 +41223 033006 +033055 +092004 +015006 +089004 +033009 +012001 +091001 +013004 +067002 +092004 +015006 +092004 +084002 +007002 +092004 +092004 +037004 +092004 +011002 +067009 +023001 +005001 +41247 092004 +41249 024001 +092004 +089015 +091003 +009002 +092004 +023009 +085001 +083006 +092004 +089015 +033004 +092004 +093001 +033006 +090013 +092004 +033033 +089017 +011002 +033006 +071004 +092004 +067009 +023008 +089024 +069002 +089023 +092004 +033008 +089015 +018001 +023008 +092004 +089015 +015004 +089015 +090013 +092004 +033006 +092004 +092003 +010002 +089024 +004001 +084002 +007005 +015012 +089015 +069004 +067002 +015025 +092004 +067002 +067009 +092004 +067009 +089015 +069002 +074 +033014 +090008 +092007 +41313 033006 +090013 +092004 +033030 +033003 +024001 +092004 +092004 +087002 +030006 +033006 +090013 +092004 +067002 +033030 +090001 +092004 +084002 +034010 +069002 +017006 +083008 +092004 +087002 +41339 087002 +092003 +41342 033030 +090001 +092004 +089015 +015006 +092004 +092003 +089015 +092004 +033030 +033006 +092003 +013004 +092007 +080001 +089015 +067002 +068001 +089013 +025018 +092004 +087004 +080001 +085001 +089023 +41368 033030 +015001 +017006 +083008 +092004 +087004 +080001 +089009 +41377 015006 +092004 +033030 +092003 +033006 +092003 +034001 +015010 +087003 +067002 +013004 +092003 +087002 +083006 +059003 +092004 +034001 +092003 +089007 +059003 +092004 +087003 +092004 +087004 +089017 +092004 +087004 +092004 +087003 +089017 +033006 +089017 +092004 +033030 +092004 +067002 +042003 +023001 +089024 +023001 +069002 +033030 +092004 +034001 +092003 +069003 +092004 +010003 +092003 +069003 +092004 +010001 +092003 +069003 +011003 +057003 +41435 089017 +092004 +033030 +092003 +089015 +013004 +057012 +092003 +089023 +067002 +023001 +042003 +033030 +057006 +023009 +023009 +024001 +41453 025011 +013001 +089007 +069002 +074 +038002 057012 +092003 +089007 +038002 057012 +092003 +067002 +092004 +023007 +092004 +088002 +089015 +092004 +092004 +034001 +024002 +092007 +033006 +092004 +025011 +092004 +023001 +005001 +083003 +092004 +037004 +092004 +012001 +089015 +092004 +033006 +092004 +009002 +092004 +090011 +023001 +079028 +089017 +033030 +059001 +089015 +015004 +092004 +087005 +092004 +092004 +067009 +092004 +023001 +033006 +092004 +033030 +015006 +090006 +067002 +077 +013001 +41515 068001 +061 +41518 059003 +033012 +092004 +060003 +033006 +092004 +001015 +057015 +41527 090013 +071004 +015004 +024001 +092004 +033012 +092003 +031001 +092001 +033012 +089017 +058006 +033006 +060007 +004001 +060002 +057015 +41545 015004 +027004 +092004 +033012 +092003 +031001 +092001 +033012 +089017 +058006 +033006 +010004 +034010 +41561 069002 +074 +015006 +089015 +015006 +092004 +087005 +033015 +092004 +057001 +092004 +092007 +067002 +088024 +092004 +057001 +033006 +092004 +087005 +092004 +015004 +067005 +084002 +092004 +001016 +089017 +001016 +092004 +001014 +089015 +092004 +057006 +089017 +023009 +089017 +024001 +089017 +023009 +015023 +083001 +089015 +033006 +092004 +087005 +057001 +013004 +092006 +033032 +089017 +059008 +080001 +013003 +089015 +033006 +092004 +057001 +090013 +092004 +087005 +015004 +084002 +092004 +001016 +089017 +001016 +089015 +037002 +015008 +089009 +059004 +092001 +092004 +007002 +089007 +033006 +092003 +090006 +092004 +092004 +009001 009002 +092007 +092004 +033030 +023001 +092001 +092004 +023001 +41649 015019 +092004 +011001 +078001 +089015 +016 +033006 +090013 +092004 +089010 +092004 +015006 +084002 +092001 +089017 +069002 +088026 +092004 +010002 +41669 089017 +092004 +010002 +089017 +092004 +010004 +089017 +092004 +010002 +089017 +092004 +010003 +089017 +092004 +010003 +089017 +059008 +41687 092004 +023007 +092004 +069002 +074 +013001 +092001 +036004 +092004 +069002 +024006 +092004 +006006 +092004 +089015 +015006 +036004 +092001 +069002 +074 +013001 +092001 +036004 +089007 +069004 +092004 +063004 +092003 +030004 +007002 +045 +067002 +017002 +060001 +092004 +057012 +090006 +057001 +089008 +068003 +089009 +41730 085002 +092004 +007003 +41734 069002 +074 +068003 +059003 +092004 +024001 +068001 +092004 +033044 +033006 +090006 +092007 +092004 +009002 +068001 +045 +41751 069002 +074 +068003 +089024 +069004 +092004 +037004 +015004 +058006 +037004 +015005 +084002 +055002 +017002 +067002 +030001 +090006 +074 +013001 +090002 +060002 +060007 +055002 +092004 +089020 +060002 +060007 +015006 +090008 +092004 +41784 067006 +092004 +083005 +085001 +037004 +015004 +033012 +092004 +089004 +022007 +089008 +061 +059003 +063004 +092003 +092006 +069002 +057007 +059003 +092004 +092004 +057001 +069002 +074 +013001 +092001 +036004 +091002 +065003 +092004 +005002 +089023 +089010 +41818 092004 +005002 +079008 +089012 +092004 +046 +069003 +090006 +002005 +069003 +090006 +008003 +065004 +013001 +084002 +015026 +092004 +092004 +057001 +008002 +024002 +031007 +41841 085001 +015005 +092004 +059003 +092004 +057014 +089017 +092004 +088038 +024002 +092004 +089015 +033041 +089017 +092004 +011002 +089017 +092004 +053009 +033006 +090006 +092007 +088038 +034007 +089017 +023001 +092004 +41869 033006 +090013 +092004 +092004 +033003 +092007 +033006 +092004 +009002 +063004 +092003 +057001 +060002 +004001 +089015 +057007 +063004 +092004 +060002 +069004 +015004 +092004 +060002 +060002 +083003 +092004 +001013 +089015 +015004 +084002 +092004 +027002 +067006 +027002 +092004 +089015 +027002 +085002 +084002 +092004 +008002 +092004 +025011 +089015 +015006 +084002 +092004 +007002 +033029 +092004 +034001 +089017 +092004 +011003 +033006 +092004 +025011 +092001 +089007 +027002 +092004 +004001 +092001 +092004 +027002 +033006 +092003 +090006 +061 +025011 +083003 +092004 +001002 +085001 +089007 +060002 +088038 +041005 +064 +089007 +060002 +060002 +088002 +092004 +069002 +057005 +041005 +41957 089024 +092004 +009003 +006011 +060002 +057001 +089010 +027002 057007 +006011 +060002 +069004 +014008 +006014 +089015 +046 +092004 +007002 +089017 +027004 +030002 +067006 +41979 027002 +089015 +027002 +033029 +092004 +034001 +089017 +011003 +033006 +025011 +092001 +089007 +027002 +092004 +006011 +092006 +057007 +061 +033006 +092003 +013004 +025011 +083006 +092004 +012001 +092004 +012001 +089007 +060002 +088038 +041005 +42011 033006 +009002 +092004 +057001 +060002 +010002 +089015 +033006 +092004 +067005 +092004 +092004 +010002 +010002 +057008 +092001 +092004 +057001 +063004 +092004 +057001 +42033 092004 +057008 +092004 +092004 +057001 +089015 +067002 +069002 +059001 +067009 +057010 +063001 +092004 +067005 +010002 +015004 +084002 +001011 +081003 +089015 +083001 +057011 +092004 +057001 +092004 +041001 +088012 +089015 +057011 +092004 +063001 +013004 +023001 +078001 +089016 +092004 +001011 +092007 +089015 +092004 +068001 +057005 +089015 +015001 +034002 +092004 +092004 +011003 +092004 +001011 +092007 +089015 +015004 +092004 +084002 +092004 +001015 +092004 +044 +004001 +089017 +025002 +42099 089012 +092004 +003004 +092006 +023001 +092004 +004001 +42107 092004 +057008 +092004 +089023 +090013 +092004 +013002 +033006 +059001 +057013 +092004 +010002 +092001 +057002 +005001 +089023 +092001 +023001 +083001 +023007 +015004 +015001 +084002 +092004 +010002 +092001 +089015 +033006 +092004 +010002 +088038 +090013 +092004 +012001 +089017 +090005 +092003 +067006 +013001 +065002 +033009 +010002 +092003 +013001 +092001 +064 +092004 +092004 +057013 +092003 +089015 +015004 +015006 +084002 +092004 +010002 +092004 +089023 +067006 +092004 +083005 +085001 +024001 +092004 +092004 +010002 +092004 +089015 +025003 +089015 +015030 +034009 +42180 092004 +008002 +092004 +089015 +034009 +092004 +089015 +033006 +092004 +010002 +092004 +010002 +088038 +090013 +092004 +012001 +089017 +090005 +092003 +067006 +013001 +065002 +033009 +010002 +092003 +089023 +033006 +092004 +010002 +090013 +092004 +087005 +092004 +067005 +015024 +006017 +092004 +065003 +089015 +049 +092004 +089017 +085002 +006018 +083008 +092004 +008002 +092004 +089017 +006017 +083008 +092004 +008002 +089017 +015023 +092004 +004001 +092004 +044 065001 +020004 +089015 +023001 +051 +089007 +092007 +092004 +010002 +092001 +065004 +013001 +42251 023007 +013001 +057007 +42255 027002 +089015 +068001 +051 +42260 085001 +092004 +010002 +092004 +092004 +067005 +083003 +001015 +089015 +067002 +015006 +015005 +092004 +007002 +024002 +014009 +089017 +015032 +089015 +033029 +092004 +092004 +087005 +033014 +071003 +092004 +013001 +092007 +089015 +092004 +033006 +092004 +090006 +092004 +010003 +092003 +085001 +089015 +020004 +092004 +010002 +092003 +092004 +004001 +092004 +044 065001 +089007 +023008 +092004 +034007 057009 +089023 +088024 +089017 +069002 +030004 +015008 +089015 +092004 +010002 +092004 +015004 +033030 +092004 +089023 +092004 +033014 +033006 +092004 +010002 +091003 +059001 +067009 +035002 +092003 +089017 +067001 +033032 +092003 +036003 +42340 092001 +067001 +057008 +004001 +089009 +089020 +092004 +034001 +092001 +051 +089023 +42352 092004 +010002 +092003 +092007 +092004 +057011 +092003 +092004 +057001 +089020 +088036 +015006 +020004 +092004 +092004 +044 065001 +004001 +089015 +092004 +033006 +092004 +010002 +092003 +067005 +089020 +092001 +085001 +089017 +063001 +092004 +092001 +092003 +013001 +089023 +051 +089017 +025011 +071004 +089007 +092004 +010003 +092003 +092007 +065004 +013001 +42398 023007 +089017 +057007 +42402 027002 +42404 033006 +089017 +090013 +092004 +036004 +009002 +092004 +013001 +057003 +092006 +057001 +046 +089017 +092007 +033048 +092004 +090006 +057011 +092004 +057001 +092004 +42426 033029 +092004 +033006 +092004 +092004 +092007 +033015 +089004 +092003 +090011 +092004 +057020 +092004 +046 +092003 +089007 +069002 +074 +067006 +046 +42447 031001 +42450 092004 +046 +092004 +042002 +089007 +092004 +057001 +092001 +068004 +092004 +046 +089021 +092001 +019006 043 +069002 +079013 +033012 +025018 +028001 +092004 +042002 +089009 +42473 013002 068004 +089021 +092004 +046 +034007 +092001 +084002 +092004 +007002 +42484 033029 +092004 +059003 +092004 +057018 +092004 +057001 +092004 +033006 +092004 +060003 +059002 +057018 +092004 +057001 +092001 +089015 +092004 +033006 +060002 +081005 +006019 +089015 +092004 +033006 +092004 +018001 +092003 +092004 +033005 +089015 +017002 +067005 +033005 +060002 +067002 +058006 +033006 +089015 +092003 +059002 +057018 +089015 +092004 +033006 +060002 +081005 +003004 +033006 +092004 +018001 +092003 +092004 +033005 +089015 +033005 +060002 +42542 033037 +092004 +057001 +092004 +046 +092004 +088002 +089007 +032004 +042002 +089007 +092004 +009001 011002 058004 +092004 +011002 +42558 032004 +078002 +092004 +011002 +092004 +011002 +090006 +092004 +010001 +092004 +092004 +013001 +089017 +092001 +092003 +033006 +092004 +013001 +034001 +089012 +092004 +057003 +092004 +088002 +089009 +42584 057005 +034007 +092003 +084002 +092004 +067005 +007002 +092004 +031009 +089004 +087004 +089017 +089004 +059002 +031009 +013001 +089017 +092004 +089004 +087004 +088002 +089017 +089004 +059002 +088002 +013001 +089008 +089010 +089004 +092004 +088002 +057003 +031009 +069002 +013001 +092004 +072001 +092004 +092003 +035005 +089017 +089010 +089004 +092004 +092004 +031009 +069002 +013001 +092004 +42634 092004 +057008 +092003 +092004 +046 +074 +060002 +057001 +035002 +089007 +089024 +092004 +42647 088026 +42649 092004 +058006 +025003 +089024 +42654 034002 +42656 092004 +058006 +088025 +069002 +074 +012001 +035002 +089017 +057003 +42666 024002 +092007 +059003 +092004 +011002 +025010 +013001 +42674 033044 +092004 +089015 +033006 +092004 +092003 +013001 +092004 +088002 +092004 +090005 +092004 +009001 +089023 +092004 +012001 +028001 +092004 +026 +092003 +089007 +092004 +083003 +009001 +065001 088027 +025017 +090005 +092004 +012001 +092004 +033005 +089017 +092004 +053009 +067006 +093001 +067006 +067002 +092004 +037004 +092004 +012001 +033015 +089017 +059003 +090006 +092004 +020001 +089023 +022006 +013001 +092004 +001001 +42728 092004 +001001 +013003 +064 +092004 +033005 +060002 +033005 +068004 +059003 +092004 +034010 +092004 +010004 +092004 +089015 +034010 +058006 +088036 +089017 +092004 +034010 +089021 +010004 +034010 +088036 +42755 009002 +092004 +013001 +057003 +089017 +049 +006017 +089017 +006017 +051 +42766 067005 +088033 +089017 +057006 +092004 +033009 +093001 +015026 +083005 +092004 +007003 +092004 +023009 +089017 +025002 +023001 +063004 +092004 +005001 015012 +084001 +092004 +006015 +092004 +057003 +089023 +089017 +092004 +004001 +015006 +023002 +092004 +023009 +092004 +42800 013004 +023007 +092004 +057006 +089015 +015024 +092004 +090001 +092004 +012001 +084002 +092004 +001002 008002 +001002 093001 +089015 +023007 +089017 +092004 +057003 +089015 +052 +089015 +083003 +092004 +001003 +024001 +092004 +008002 +092004 +013001 +013001 +024006 +024001 +093001 +42835 083005 +089017 +093001 +083003 +092004 +001002 008002 +092004 +089015 +092004 +033006 +033006 +010002 +093001 +088010 +092001 +089015 +015004 +093001 +089009 +047002 +092004 +079023 +092004 +008002 +092004 +002004 +089015 +079014 +092004 +008002 +092001 +089007 +024006 +083003 +092004 +002003 +092007 +089023 +033006 +093001 +010002 +029002 +090006 +057009 +092004 +065003 +092003 +067007 +092004 +023007 +092003 +42887 093001 +064 +092004 +065003 +089023 +067002 +083001 +025013 +089017 +092003 +024006 +089017 +089004 +059003 +092007 +083003 +092002 +089017 +092003 +001008 +079028 +085002 +089009 +092004 +025001 +015003 +084001 +084002 +092003 +069002 +074 +069003 +084001 +084002 +092002 +015003 +089015 +033006 +089008 +033012 +092003 +010002 +090006 +015004 +092004 +084002 +092004 +010001 +092004 +010002 +092001 +089007 +057001 +060002 +010003 +089009 +033047 +092004 +089009 +069002 +089017 +092004 +015006 +084002 +092004 +080001 +092007 +092004 +024006 +089023 +033006 +093001 +057001 +093001 +089017 +092004 +053009 +036003 +092004 +089023 +092004 +033006 +069002 +010002 +093001 +089023 +089010 +092004 +090003 +023007 +015001 +084002 +092004 +041005 +089023 +033006 +092004 +089010 +093001 +089017 +092004 +053009 +069002 +036003 +069003 +089010 +092004 +089021 +023007 +023007 +033028 +42999 033006 +090013 +092004 +036004 +092004 +071001 +013001 +092004 +092004 +088038 +069002 +013004 +43012 022001 +090001 +092006 +013004 +065005 +092004 +089010 +002005 +007007 +085002 +083004 +092004 +008002 +092004 +089015 +015026 +084002 +092004 +001010 +064 +090006 +088038 +092004 +087004 +092007 +092004 +027006 +092004 +089010 +088038 +092004 +011003 +092003 +033046 +092004 +089015 +089010 +041005 +040002 +092004 +089017 +089010 +060005 +092004 +067009 +088038 +090013 +092003 +089015 +060005 +015007 +084002 +092003 +033006 +041005 +040002 +092004 +091001 +033006 +092004 +053009 +092004 +012001 +059008 +092002 +031010 +089015 +033006 +092004 +012001 +089010 +031001 +031010 +064 +003004 +003003 +071003 +033006 +092004 +003002 +092007 +043 +089015 +043 +084002 +092004 +001010 +089015 +071003 +036003 +092003 +43104 092004 +063004 +092003 +057001 +087005 +043 +089024 +044 +092006 +015008 +084001 +092004 +001015 +033006 +092004 +067002 +015006 +017006 +089023 +069004 +033006 +092004 +077 +092004 +023001 +089015 +049 +035002 +092001 +067006 +023001 +089017 +023001 +089015 +067002 +092007 +023001 +089017 +023001 +092003 +069005 +090013 +033036 +092004 +087005 +089007 +042002 +092004 +033032 +061 +089017 +092003 +43157 042002 +059003 +092004 +033032 +092003 +033006 +090006 +087005 +033037 +013001 +092006 +042002 +071004 +042002 +091001 +013004 +067007 +092004 +015002 +084002 +093002 +43179 092004 +015002 +084003 +083003 +093002 +089017 +093002 +089015 +015008 +092004 +084002 +092004 +001014 +015005 +060002 +023009 +009002 +092006 +017001 +083005 +089015 +092004 + +033006 +033006 +093001 +087003 +088010 +092002 +089015 +024001 +033006 +092004 +015004 +024001 +092004 +092004 +053009 +089015 +013004 +067007 +092004 +015004 +092004 +023008 +089015 +060002 +063004 +092004 +024001 +090006 +023008 +015007 +089013 +033006 +078001 +033037 +092004 +012001 +089015 +017005 +43241 008002 +083005 +092004 +008002 +092004 +033036 +092004 +089017 +092008 +013001 +093002 +089015 +033004 +092004 +093001 +033006 +43258 092004 +060002 +023008 +089023 +092004 +060002 +083002 +069002 +027002 +015007 +090012 +033037 +092004 +012001 +089023 +43274 092004 +011003 +092007 +089015 +033006 +092004 +015004 +015004 +092004 +031009 +092003 +023008 +092003 +43288 033014 +090001 +092004 +011002 +067002 +013004 +092004 +037004 +092004 +012001 +033014 +092004 +43301 033006 +069002 +013004 +092004 +037004 +092004 +012001 +089013 +024001 +069003 +033006 +091003 +083001 +089024 +083001 +089007 +091003 +092004 +037004 +092004 +012001 +083003 +092003 +085001 +089015 +033006 +090013 +092004 +036004 +013004 +067008 +43333 025002 +092004 +092004 + +092004 +009001 +092004 +009001 +090013 +43343 069002 +090013 +089015 +033006 +092003 +091003 +083001 +091003 +083001 +069002 +015004 +069003 +015021 +089007 +064 +092004 +014004 +014006 +078004 +092004 +083009 +092004 +001002 +43367 092004 +083009 +001002 +014006 +061 +013001 +092004 +009001 +092004 +009001 +067002 +092004 + +092004 +089023 +071005 +067002 +092004 +059001 +024006 +089017 +030007 +090001 +092004 +011001 +092007 +089017 +064 +013001 +067007 +092004 +067008 +093001 +061 +013001 +089017 +067007 +092004 +067008 +092004 +009001 +092004 +009001 +023001 +023001 +034010 +034010 +067006 +092006 +067009 +015008 +093001 +084002 +092004 +006008 +089015 +013004 +092004 +014005 +089015 +020003 +063001 +064 +064 +013001 +067007 +092004 +067008 +093001 +023001 +023001 +057015 +057015 +043 +045 +089023 +092006 +067009 +015004 +093001 +084001 +093002 +014003 +002003 +089017 +002005 +084001 +001002 +089015 +020003 +063001 +43459 092004 +058005 +013001 +092006 + +092004 +009001 +092004 +009001 +028003 +067002 +092007 +092004 + +092006 +085001 +083008 +092004 +007003 +089017 +092004 +057001 +092004 +083003 +092004 +007002 +069002 +015011 +015024 +092004 +089017 +092004 +083003 +001015 +064 +069002 +015007 +084002 +092004 +083006 +029002 +092004 +010004 +093001 +071001 +092006 +068005 +092004 +021005 +092004 +021005 +057007 +092004 +43513 071001 +092006 +057007 +023007 +092004 +033006 +092003 +092007 +092004 +067009 +085001 +060002 +083008 +006015 +43528 092004 +060002 +015023 +43532 092004 +058006 +015004 +085001 +046 +060002 +43539 092004 + +092004 +43543 015023 +089023 +092004 +058006 +015004 +089015 +033004 +033006 +092004 +083002 +012001 +089015 +092004 +033006 +092004 +083002 +092004 +008001 +083001 +089017 +092004 +004002 +015013 +43567 033006 +033003 +092004 +090006 +092004 +071004 +067005 +033013 +092004 +089017 +069002 +025024 +033006 +056005 +092004 +085001 +083003 +092004 +001014 +092004 +012001 +069002 +087002 +089017 +009001 +069002 +087002 +089017 +010004 +085001 +083003 +092004 +001014 +092007 +089015 +015006 +084002 +092004 +033006 +056006 +092001 +089007 +092004 +039001 +092001 +43613 069002 +030004 +067007 +067005 +089023 +067002 +092007 +031001 +43625 092004 +012001 +069002 +087002 +069003 +009001 +087002 +091002 +089007 +092004 +013004 +092001 +022001 +092004 +010004 +092007 +056006 +092004 +089009 +069002 +43646 078004 +015006 +025021 +092001 +089015 +033006 +092004 +012001 +031007 +092004 +092004 +056005 +092004 +088002 +033006 +089017 +069002 +069002 +092004 +012001 +090011 +092004 +056006 +092004 +030006 +092004 +092004 +033006 +092004 +067005 +089017 +067005 +089017 +025015 067006 +090013 +092004 +033006 +092003 +090006 +090011 +092004 +056006 +092004 +067005 +067005 +089023 +092004 +009001 +092004 +009001 +015006 +069005 +027002 +092004 +031010 +083008 +092004 +009001 +43705 033006 +089017 +090013 +092004 +092004 +031009 +090006 +092004 +090006 +013001 +088002 +089017 +088025 +092004 +063005 +092004 +033003 +092007 +009002 +060002 +015010 +084002 +092004 +007002 +033013 +092004 +43732 011002 +089017 +092004 +058006 +057014 +092004 +011002 +017001 +092007 +083005 090013 +092004 +033013 +092004 +012001 +033036 +092003 +090006 +069002 +013001 +064 +092004 +063005 +092004 +009001 +025002 057021 +088002 +088036 +089024 +064 +43762 092007 +092004 +057014 +053008 +060005 +092004 +067009 +43770 059003 +059002 +057007 +089023 +092004 +057014 +083005 +085001 +069002 +025001 +069003 +092004 +008002 +024001 +084002 +092004 +001002 +089023 +019001 +092004 +008002 +092004 +033006 +092004 +012001 +088010 +092001 +092004 +088038 +033006 +092003 +015011 +092007 +088002 +084002 +092004 +007002 +092004 +089023 +092007 +089007 +059003 +092004 +087003 +092004 +087004 +089023 +092004 +087004 +092004 +087003 +43822 015023 +092004 +089017 +092004 +009004 +089009 +092004 +024005 +089023 +024001 +092004 +036004 +033046 +092004 +089023 +092004 +093001 +033029 +092004 +033006 +013004 +092004 +009004 +015006 +084002 +092001 +089017 +069002 +013004 +092004 +089007 +092004 +092007 +013001 +092004 +037004 +092004 +012001 +072001 +033006 +092003 +071001 +092006 +069002 +031007 +092004 +037004 +092004 +012001 +064 +009004 +069002 +069002 +090013 +013002 +092004 +091001 +033014 +092004 +037004 +092004 +033006 +033017 +088001 +092004 +042002 +023007 +067005 +057009 +089015 +033006 +092004 +092004 +093001 +092004 +092001 +033009 +088001 +092004 +088001 +089023 +43904 063001 +092004 +012001 +092004 +033032 +028001 +069002 +088036 +069002 +020004 +069002 +057021 +069002 +033020 +087002 +092004 +010002 +092003 +089017 +092004 +010002 +089015 +092004 +033006 +092007 +059003 +036003 +067006 +067008 +089015 +024002 +092004 +093001 +033006 +092004 +059008 +060002 +092003 +057005 071004 +059003 +059001 +057001 +057015 +089015 +057008 +057006 +43951 057001 +065001 +083003 +092004 +001002 +089015 +084002 +036004 +092001 +089023 +092004 +024002 +092007 +025023 +013002 +089007 +013001 +057003 +078001 +089015 +024001 +092004 +092004 +093001 +033006 +092004 +022004 +092004 +092004 +057003 +057001 +013002 +092004 +037004 +092004 +012001 +015008 +089007 +022006 +013001 +004001 +084003 +006023 +006023 +090013 +064 +057003 +013002 +092004 +037004 +092004 +012001 +090013 +089015 +033006 +092004 +024002 +091002 +092004 +074 +021006 +089015 +092004 +033006 +092004 +071001 +090001 +009001 +071001 +090001 +092004 +012001 +013001 +089015 +033006 +092004 +093001 +091003 +092002 +085002 +092004 +057001 +036004 +092003 +44036 092004 +033006 +092004 +072001 +033006 +092003 +090006 +092004 +013003 +092006 +085002 +007002 +089024 +010004 +089024 +010003 +089024 +010002 +089024 +010002 +089007 +092004 +037004 +092004 +012001 +092006 +069002 +069002 +44065 059002 +067007 +092004 +067008 +092007 +089015 +067007 +092004 +067008 +092004 +013002 +023007 +067005 +44079 015023 +092004 +060002 +033006 +090013 +092004 +091003 +015010 +084002 +093002 +089015 +013004 +059003 +092004 +033005 +090001 +092004 +053009 +092004 +009001 +092004 +009001 +089007 +037007 +092004 +011002 +089015 +033044 +089017 +033042 +089017 +023002 +089015 +019001 +020004 +092004 +089015 +092004 +067009 +092004 +060003 +023007 +44122 092004 +092004 +092007 +032001 +44128 092004 +033006 +092007 +028005 +084001 +092004 +089017 +069002 +032002 +092004 +033006 +44140 013004 +067007 +092004 +015005 +092004 +084002 +093002 +024001 +092004 +017002 +083005 +092004 +001016 +033012 +089015 +024002 +011001 +015002 +033014 +092004 +013001 +092007 +089015 +033015 +092004 +090006 +093001 +092004 +093002 +015003 +089015 +033006 +033006 +093001 +010002 +093001 +088010 +092001 +44179 092004 +015016 +033046 +092004 +090006 +033008 +089023 +092004 +059002 +078002 +033006 +010002 +093001 +088010 +092001 +089015 +017001 +092004 +093001 +033032 +092004 +015023 +084002 +092004 +089015 +015005 +092004 +033014 +092004 +092004 +092003 +041001 +025001 +089015 +092004 +033006 +012001 +090006 +024001 +089015 +092004 +093001 +033006 +092004 +024001 +092004 +031009 +092003 +023008 +092003 +44230 067005 +024001 +089015 +015020 +092004 +033037 +092004 +012001 +089015 +059003 +092004 +011001 +024001 +013004 +033037 +092004 +012001 +091001 +015008 +015002 +092004 +093002 +089015 +091003 +009002 +033009 +033009 +093001 +089017 +092004 +058010 +057014 +089017 +092004 +057003 +089017 +068005 +024001 +092004 +093001 +092004 +013001 +44273 069002 +074 +089007 +092004 +011001 +089007 +092004 +081002 +079028 081003 +013001 +089015 +015030 +084002 +092004 +083006 +015010 +084002 +003002 +089009 +024001 +092004 +089007 +083001 092007 +015002 +067002 +089015 +067002 +015006 +084002 +092004 +080001 +024001 +092004 +093001 +033006 +090013 +092004 +093001 +068007 +015011 +089007 +067010 +083003 +092004 +007002 +092003 +092001 +085003 +071004 +089015 +068007 +015011 +089015 +034007 +092004 +025011 +089015 +024001 +059003 +033041 +033006 +090006 +089020 +088038 +009002 +015008 +034008 +089015 +017001 +093001 +033006 +090013 +092004 +012001 +012001 +091003 +092004 +060004 +092001 +092004 +057001 +092004 +057006 +057008 +089017 +089010 +092004 +092004 +033048 +057012 +060006 +089015 +033006 +090013 +092004 +092004 +093001 +090006 +067010 +021006 +092004 +010001 +092007 +013004 +089007 +089017 +092004 +010002 +093001 +013001 +089007 +015006 +092004 +009001 +092004 +009001 +027004 +089017 +021006 +092004 +021006 +44395 024002 +092004 +092007 +059008 068002 +033006 +033003 +089007 +092004 +085001 +083005 +093002 +092004 +089017 +031005 +092004 +089007 +067005 +067002 +092004 +037004 +092004 +012001 +024001 +089008 +033006 +009002 +092004 +087003 +015002 +084002 +001011 +081003 +037004 +092004 +001012 +089015 +015007 +44433 033029 +060002 +087005 +092004 +057008 +092004 +060002 +006011 +089015 +033006 +090013 +092004 +057016 +067007 +092006 +015006 +089023 +092004 +011003 +092004 +088026 +092004 +44456 015004 +037004 +036004 +092004 +033006 +069002 +025001 +092007 +037004 +037001 +092002 +089015 +013004 +067002 +092004 +015007 +092004 +037004 +092004 +037004 +089015 +033006 +033029 +092004 +092004 +087005 +092007 +092006 +057008 +092004 +006011 +089009 +027001 +44490 092004 +44492 089015 +015006 +092004 +060003 +033006 +057001 +092004 +006011 +092003 +060002 +006011 +057016 +089015 +033006 +092004 +065003 +065003 +087005 +089007 +089004 +087004 +031009 +013001 +44516 037003 +44518 083009 +060002 +001014 +089015 +015006 +092004 +060003 +033006 +057001 +092004 +006011 +092003 +057016 +060002 +006011 +44534 033006 +089017 +092007 +089017 +092003 +083009 +060002 +001014 +013001 +089015 +092004 +058006 +015006 +033006 +057001 +091003 +092004 +006011 +092003 +092006 +057001 +085002 +083003 +006017 +089007 +025022 +092003 +090006 +009002 +088017 +013001 +057017 +092006 +069002 +057017 +089017 +043 +092006 +069002 +043 +033006 +092004 +089012 +092004 +033006 +092003 +056005 +092003 +088015 +087005 +028001 +090006 +092001 +013001 +009002 +088017 +057017 +092006 +069002 +057017 +089017 +043 +092006 +069002 +043 +091002 +44602 069002 +057017 +092001 +092004 +006011 +084002 +057017 +071003 +092001 +015006 +089018 +057017 +092004 +057007 +089015 +092004 +017001 +033006 +015024 +084001 +092004 +092004 +006011 +089015 +057008 +092004 +092004 +060002 +006011 +057001 +089015 +033006 +092004 +057001 +057001 +060002 +006011 +033006 +092003 +090006 +059003 +092004 +057001 +057008 +089023 +084001 +092004 +069002 +057001 +44652 092006 +057001 +015024 +089023 +092004 +039001 +092001 +092007 +092004 +069002 +025001 +092001 +037004 +037001 +092004 +015023 +083001 +089015 +020004 +092004 +083006 +092001 +091001 +033006 +092007 +015002 +083006 +015010 +084002 +093002 +089015 +013004 +067002 +015005 +084002 +093002 +089017 +093002 +084002 +092004 +001007 +092004 +033009 +003002 093002 +015004 +060002 +092004 +036004 +033006 +015001 +084002 +092004 +083007 +001014 +084002 +092006 +015008 +027002 +018002 +004001 +083008 +092006 +092004 +009001 +067001 +017002 +089015 +018002 +092004 +015023 +089015 +089010 +092004 +092003 +033014 +44729 018002 +061 +033006 +090006 +092004 +012001 +092004 +057005 +44739 015004 +092004 +015004 +027002 +064 +033006 +092004 +089015 +018002 +092004 +092004 +004001 +033006 +092004 +057001 +092004 +090013 +092004 +092004 +018002 +092004 +004001 +089015 +092004 +033006 +090006 +092004 +012001 +092004 +057005 +44770 089015 +015023 +092004 +084002 +092004 +093001 +089015 +015026 +092004 +092004 +006017 +084002 +092004 +004001 +015009 +092004 +093001 +089015 +015001 +092004 +016 +092004 +006017 +44794 083008 +092004 +001016 +44798 015005 +092004 +067002 +083005 +092004 +015011 +092004 +001007 +092004 +003002 093002 +068001 +059003 +092004 +011001 +092004 +036004 +025011 +033037 +092004 +012001 +033006 +078001 +089007 +059003 +092006 +024001 +076 +033006 +033055 +092004 +015006 +090006 +033009 +012001 +092004 +037004 +083003 +001002 +025021 +089017 +087002 +083003 +001002 +089015 +092004 +092004 +011002 +063004 +092004 +011001 +033006 +090013 +092004 +033017 +033046 +092004 +036004 +092003 +089015 +033014 +033006 +033006 +092003 +089010 +092007 +033008 +092004 +002005 +033006 +091001 +067002 +015005 +024001 +092004 +001014 +025012 +089007 +092004 +033006 +090006 +089010 +032002 +067002 +092004 +067009 +092007 +44885 092003 +092004 +089004 +022007 +089023 +067002 +028005 +084001 +032004 +092003 +089007 +013004 +067008 +090013 +092003 +44901 085002 +092004 +039001 +092003 +007006 +092003 +089017 +015018 +092003 +089017 +019005 +092003 +084001 +089015 +020003 020004 +092003 +089017 +092004 +011003 +092003 +083003 +092003 +089017 +069002 +085003 + +083008 + +083003 +092003 +089007 +44933 069002 +032002 +092004 +067001 +092004 +034006 +092003 +091001 +015008 +084002 +092004 +007002 +068001 +015004 +092004 +057015 +033006 +092004 +033005 +091002 +013001 +092004 +007002 +092001 +007002 +033013 +089023 +092003 +092004 +013001 +001008 +057021 +091001 +44967 033017 +092004 +44970 067005 +083003 +092004 +007002 +089023 +092004 +053009 +089017 +092004 +053009 +027004 +092004 +020003 +089017 +092004 +087003 +092004 +011002 +44989 069002 +027001 +092004 +092004 +042002 +089007 +092004 +011001 087004 +059003 +030001 068002 +092004 +024002 +091001 +013004 +067002 +092004 +092004 +067009 +033017 +092004 +092004 +011001 +083003 +092004 +007002 +089017 +033015 +017001 +092004 +053009 +089017 +092004 +053009 +089020 +092004 +053009 +089015 +033006 +033006 +090013 +092004 +033006 +092002 +089012 +092007 +037003 +092007 +042002 +089024 +092004 +013001 +092004 +037005 +092003 +092004 +037003 +092007 +089015 +033014 +033006 +090013 +092004 +033014 +092003 +089017 092001 +033006 +089015 +033006 +092001 +092004 +053005 +093001 +090003 +001002 +013001 +089024 +090003 +009001 +089015 +092004 +033011 +090013 +092004 +033006 +090006 +089010 +033006 +090003 +001002 +033006 +45081 069002 +031006 +092004 +089023 +089010 +033006 +090003 +009001 +092004 +087004 +059003 +020004 +092002 +089007 +033028 +45097 093001 +053009 +013001 +089015 +033014 +069002 +028001 +084001 +089015 +092004 +093001 +033006 +092004 +069003 +092001 +033006 +092003 +089012 +092007 +037003 +092007 +042002 +45120 068001 +090013 +092004 +087004 +033006 +092004 +033003 +092007 +009002 +043 +003003 +089015 +057013 +092004 +043 +089015 +015004 +067005 +059005 +089015 +067001 +015004 +084002 +092004 +043 +087005 +089009 +063004 +092004 +043 +092004 +003003 +057012 +092004 +089023 +092004 +043 +015004 +092004 +019001 +057005 +089015 +059008 +058006 +087005 +015004 +089015 +092004 +089017 092007 +019001 +089017 +088016 +015004 +057005 +089015 +059008 +060003 +015004 +089023 +092004 +089017 +092007 +020002 +015026 +089015 +033006 +092004 +057001 +092004 +003003 +092004 +042002 +015004 +092004 +010002 +092001 +092004 +025003 058007 +071002 +092007 +087002 +089015 +024001 +092004 +092004 +043 +033011 +090013 +092005 +033006 +092007 +013001 +092004 +057009 +020004 +092004 +089009 +092002 +013002 +092004 +057009 +089015 +015026 +092004 +084002 +092004 +003003 +020004 +089008 +092004 +041001 +092004 +092004 +057001 +092004 +003003 +015006 +089015 +020003 +092004 +043 +092007 +089015 +057008 +092004 +003003 +058006 +089015 +024002 +033006 +069002 +013004 +089015 +092004 +024001 +092004 +033006 +089008 +092004 +013001 +092004 +033005 +092007 +002005 +092006 +030007 +092004 +045 +092007 +013002 +013002 +007003 +079023 +059003 +092004 +015012 +084002 +092007 +092004 +002005 +019004 +089023 +071001 +084002 +092006 +015012 +019005 +092004 +089015 +068005 +092004 +053009 +089017 +092004 +053009 +037006 +45297 092004 +092004 +037006 +067002 +092004 +092004 +067001 +45305 025022 +092004 +087004 +089007 +032002 +089007 +090006 +092004 +033006 +092004 +033003 +092007 +091001 +024001 +015004 +027004 +088029 +092004 +088002 +013001 +089009 +027003 +092004 +033006 +089009 +037007 +092004 +092004 +037004 +089017 +092004 +037003 +092004 +037004 +089015 +033014 +092004 +033006 +033017 +028001 +090006 +072002 +033006 +089017 +033017 +089017 +069002 +088030 +088030 +089023 +45356 070 +092004 +041001 +092004 +012001 +033017 +071004 +092002 +093001 +057014 +057012 +089024 +069002 +089023 +032002 +092004 +092004 +088035 +033006 +090013 +092004 +028003 +092001 +006011 +013001 +092004 +006013 +089017 +033005 +089015 +092004 +033006 +093001 +089015 +092004 +033006 +090013 +092004 +089008 +057012 +092004 +093001 +093001 +089017 +092004 +092004 +012001 +092004 +012001 +089015 +069002 +074 +027003 +092004 +033006 +083006 +092004 +087004 +089015 +025020 +089007 +092004 +033014 +092004 +033008 +45422 015005 +092004 +092004 +011002 +092004 +033052 +023007 +069002 +013003 +033014 +092004 +033006 +033017 +093001 +033005 +092002 +089010 +092004 +010003 +023007 +057001 +010004 +089017 +092007 +010002 +013001 +090006 +057007 +092004 +010003 +092004 +092004 +010004 +089015 +023003 +023003 +092004 +010003 +092004 +089008 +060002 +010003 +013003 +089015 +092004 +060003 +057007 +010004 +023007 +010002 +089015 +092004 +060003 +089015 +092004 +060003 +057007 +092004 +089017 +064 +089017 +092004 +060002 +069002 +085004 +010002 +089015 +023007 +061 +089017 +092004 +010004 +023007 +089008 +092004 +009003 +067002 +092004 +023007 +092004 +092004 +010004 +013002 +089007 +092004 +060002 +057001 +092004 +010004 +089015 +033006 +092004 +092004 +093001 +092004 +011002 +092004 +011002 +45521 034010 +089017 +034010 +089023 +092004 +065002 +092004 +067008 +092007 +090013 +089017 +092004 +023007 +092004 +089021 +023007 +069003 +034010 +069003 +034010 +089007 +069003 +023007 +059008 +074 +089007 +012001 +013001 +089017 +009001 +012001 +013001 +092004 +023007 +009001 +013001 +089023 +090006 +023007 +092004 +023007 +45563 093001 +033015 +083005 +092004 +003003 +067002 +033006 +012001 +092004 +012001 +093001 +089017 +012001 +093001 +089017 +012001 +093001 +45581 012001 +069002 +013001 +023007 +089023 +023007 +089007 +063001 +092004 +023007 +089015 +033014 +092004 +092004 +053009 +033006 +033017 +072002 +033006 +089007 +067006 +025014 +033014 +092004 +092004 +45607 033006 +090013 +092004 +092004 +033006 +092004 +053009 +013001 +093001 +010002 +089007 +092004 +093001 +033006 +083003 +033005 +033007 +033006 +012001 +092004 +012001 +092001 +017002 +087003 +082002 +092001 +067006 +071001 +085002 +092004 +039001 +092003 +006015 037001 +092004 +037001 +092003 +089008 +093001 +092004 +012001 +033009 +091002 +092004 +092004 +010002 +013001 +45654 024002 +059003 +092004 +011001 +033006 +092004 +036004 +027006 +089007 +092004 +053009 +092004 +025010 +015029 +089013 +006017 +089017 +025010 +033003 +083003 +092004 +057016 +089017 +087002 +083003 +092004 +007002 +089017 +087002 +083005 +092004 +023001 +092006 +088019 +092004 +007002 +092004 +010004 +089017 +088029 +067005 +033013 +092007 +090013 +078002 +056005 +45701 024001 +024001 +092004 +085002 +084002 +092004 +006016 +092004 +057008 +092004 +057003 +089015 +024001 +092004 +010004 +057006 +015026 +083001 +006011 +060002 +089015 +033006 +070 +033006 +092003 +090006 +092004 +010004 +092007 +092004 +057006 +078002 +059003 +085002 +089007 +059003 +092007 +090003 +092004 +059006 +092004 +085002 +084002 +092004 +006016 057008 +089023 +092007 +090003 +092004 +057005 +092004 +063001 +092004 +057001 +092006 +057001 +085002 +091001 +092004 +033006 +089004 +092004 +007002 +090006 + +079004 +089017 +053002 +079004 +033006 +092007 +092006 +024001 +013004 +067008 +067007 +092006 +069002 +085003 +083008 + + +092006 +069002 +020003 +45787 033014 +092004 +033006 +033017 +089008 +067002 +092007 +013004 +089015 +092004 +092004 +033056 +45800 067002 +092007 +013004 +089015 +092004 +033006 +027006 +089009 +031008 +089007 +059001 +015006 +090006 +092004 +033009 +092001 +033006 +092001 +013001 +089017 +092004 +067008 +015005 +069002 +015001 +036004 +092004 +089017 +45829 033015 +055002 +089017 +039007 +069002 +025022 +089007 +071005 +092007 +013004 +067002 +089023 +069002 +067002 +092004 +067003 +067002 +033006 +092004 +055002 +011003 +090008 +011003 +089017 +001012 +090008 +001012 +089017 +014010 +078001 +089017 +089016 +080001 +023009 +089017 +023001 +013004 +089017 +025022 +089017 +090003 +001002 +033056 +078001 +013004 +089017 +067002 +092007 +059003 +037006 +45880 092003 +092004 +037006 +092004 +089017 +039009 +037007 +084002 +092004 +007002 +089017 +007002 +015023 +083006 +037004 +089017 +037004 +089007 +092004 +033009 +092001 +089008 +092003 +45904 033020 +089008 +030005 +45908 092004 +030005 +092003 +069002 +030004 +033049 +089007 +092001 +033006 +092003 +033006 +089017 +032004 +092006 +069002 +074 +039003 +089024 +033052 +059003 +092004 +039001 +092003 +089017 +037007 +45934 090001 +010002 +089017 +010003 +089017 +010001 +089017 +034001 +089017 +020004 +063004 +092003 +089017 +45948 088026 +090001 +059003 +089007 +092004 +033009 +092001 +45956 008002 +084001 +092004 +008002 +092003 +069002 +069002 +027002 +090002 +092004 +025015 +092003 +45969 092004 +021005 +092003 +45974 024001 +015018 +090001 +055003 +093002 +067002 +032002 +090006 +067002 +092004 +020003 +092004 +067002 +092004 +083003 +092004 +093002 +015004 +084002 +092004 +001007 +089017 +092004 +45998 083003 +092004 +015004 +089017 +092004 +083003 +092004 +001013 +069002 +015008 +084002 +092004 +089007 +067008 +039006 +092007 +013001 +092004 +013004 +059003 +092004 +033005 +022001 +092004 +023003 +023003 +023003 +089017 +092004 +023001 +067007 +092007 +092004 +067008 +089007 +013004 +022001 +078001 +083008 +092004 +001006 +089017 +038001 +092004 +011002 +092007 +089017 +023007 +079023 +006007 +089017 +055005 +083003 +092004 +011003 +059003 +089017 +093002 +46057 020002 039012 +090001 +011002 +067006 +46062 067003 +067001 +011002 +091001 +013004 +033056 +083003 +001004 +089017 +001004 +089017 +001004 +089017 +083008 +092004 +001006 +025021 +011003 +013001 +032001 +014009 +001010 +089017 +014005 +023009 025024 +009001 +089007 +025022 +089017 +030003 +092004 +015006 +092004 +001006 +089007 +092004 +012002 +092004 +001002 +016 +089015 +067002 +024001 +092004 +009001 +092004 +009001 +015006 +083003 +001005 +089013 +076 +089017 +076 +078001 +089015 +068001 +092007 +013004 +017008 +089017 +025014 +092004 +008002 +092003 +089007 +067002 +092004 +037010 +092003 +091001 +033006 +033003 +092004 +024001 +092004 +003002 +089017 +059003 +092004 +003002 +067002 +023011 +067002 +032002 +090004 +092004 +032002 +090006 +067002 +067002 +092004 +067009 +085001 +061 +089017 +092003 +46160 024001 +092007 +013004 +032002 +090006 +067002 +013001 +092004 +037004 +092004 +012001 +072001 +033006 +092003 +090006 +069002 +069002 +013003 067005 +092004 +010001 011001 067008 +092007 +067006 +071001 +059003 +013004 +092004 +001001 +46188 092004 +001001 +013003 +089023 +092004 +033006 +092001 +069002 +069002 +013003 +46199 027006 +092004 +46203 022002 +092003 +092004 +026 +089012 +088037 +089017 +088037 +089017 +025021 +041001 +46215 013004 +090013 +092003 +067005 +092004 + +092007 +064 +006005 +089007 +013004 +090013 +063001 +092004 +085003 +083008 +079018 +063001 +092004 +001006 +089023 +027006 +067002 +059003 +067001 +033012 +090006 +074 079013 +021004 +092007 +059003 +092004 +067002 +013004 +089015 +017001 +083006 +092004 +009001 +092004 +009001 +46258 033017 +092004 +067009 +083003 +092004 +007002 +089023 +092004 +067009 +015004 +067009 +083008 +092004 +001007 +092004 +033009 +003002 093002 +089015 +059003 +092004 +011001 +067009 +084002 +092004 +084002 +092004 +007002 +024002 +092004 +46288 067002 +092004 +051 +092004 +005001 +092004 +033009 +051 +089017 +027004 +092004 +053009 +089017 +092004 +053009 +092004 +092004 +020004 +092004 +089007 +025022 +092004 +087004 +089015 +015008 +012001 093001 +084002 +093001 +092004 +033009 +093001 +013001 +063004 +092004 +060001 +092004 +060002 +46326 015004 +033011 +092004 +053009 +089017 +037004 +092004 +092004 +092004 +037007 +092004 +46338 025011 +089015 +031003 +092004 +006011 +057012 +089015 +033023 033037 +089015 +013001 +067001 +092004 +037007 +092004 +089021 +011001 +092004 +46356 013004 +092004 +067009 +092004 +005001 +092006 +071004 +020004 +092004 +004001 +46367 015004 +093001 +089017 +093001 +033006 +015004 +077 +092002 +092004 +051 +089009 +023001 +089015 +092004 +033006 +092004 +025001 +083002 +077 +46387 092004 +033006 +092004 +091003 +015008 +092003 +084002 +092004 +001014 +013004 +092003 +009002 +006016 +002004 +015024 +015017 +092004 +084002 +092004 +007002 +084002 +092006 +015008 +089015 +033006 +092004 +057001 +092004 +007002 +033006 +092003 +092004 +033017 +083002 +085001 +092004 +007003 +083002 +092004 +004001 +089020 +092004 +036004 +092001 +023001 +089017 092007 +092003 +028003 +007003 +079028 +046 +083001 +077 +46441 015004 +027002 +064 +033006 +092004 +089015 +077 +092004 +051 +091001 +46452 013004 +092004 +067001 +017006 +089017 +092004 +053009 +089020 +092004 +089015 +033006 +090013 +092004 +025002 +025002 +092007 +092004 +004001 +023001 +089020 +092003 +067002 +092004 +092001 +024006 +089007 +033006 +092003 +090006 +46482 069002 +069002 +023001 +092004 +067006 +46488 013004 +083003 +092004 +037004 +092004 +012001 +089015 +018001 +006016 +033036 +033006 +018001 +092007 +089017 +057008 +083003 +092004 +089007 +033006 +092003 +069002 +069002 +023001 +067006 +092004 +067002 +089025 +092004 +013002 +092004 +003003 +067006 +46521 092004 +037004 +092004 +012001 +013004 +089015 +018001 +005001 +033036 +019004 +089015 +057008 +092004 +033006 +092007 +058010 +092004 +008001 +092001 +092004 +090009 +092003 +057008 +092007 +042002 +089009 +092004 +092001 +029002 +089017 +092004 +006016 +064 +067002 +092004 +023001 +033006 +092004 +067005 +034005 +089013 +092004 +023007 +092001 +092007 +092004 +006016 +092004 +090009 +092003 +014005 023007 +089023 +091003 +092004 +008002 +092004 +037007 +092001 +089020 +092001 +083008 +092004 +006015 +089007 +089023 +092004 +009001 +092004 +009001 +089005 +092004 +037005 +023007 +089023 +022001 +092004 +009002 +092007 +090001 +092006 +037007 +089015 +092004 +068001 +033011 +083003 +092004 +092004 +071001 +092004 +013001 +063004 +092004 +092004 +092007 +042002 +067002 +46619 013004 +083003 +092004 +089017 +033051 +092004 +092004 +092004 +031005 +013001 +087003 +089015 +092004 +033006 +092004 +092004 +037004 +092004 +011002 +037004 +092004 +089017 +092004 +037004 +092004 +035001 +033009 +089023 +092003 +069002 +061 +089023 +092004 +087003 +083003 +092003 +013001 +064 +092004 +067005 +089017 +092004 +036001 +064 +092004 +035002 +089007 +092004 +087003 +092004 +017006 +089024 +092004 +035002 +069004 +092004 +017006 +089023 +092001 +46679 083003 +092003 +013001 +064 +092004 +035002 +46686 092003 +013001 +092004 +034001 +089020 +092001 +089013 +092004 +088038 +092001 +092001 +037005 +092003 +064 +037005 +092001 +092004 +012001 +092001 +037004 +091005 +023001 +089017 +023001 +083005 +092004 +006015 +092001 +083003 +092004 +037004 +092001 +089017 +017002 +083008 +037004 +092004 +060002 +010001 +092004 +093001 +037004 +093001 +093001 +091003 +092004 +012001 093001 +033012 +092003 +092004 +046 +064 +092004 +003004 +089023 +092001 +033012 +46744 092003 +090006 +069002 +068004 +092004 +031010 +092003 +089015 +092003 +067002 +041005 +074 +092004 +011002 +092003 +089023 +092004 +033006 +092004 +012001 +089020 +092003 +077 +013001 +089017 +084002 +007002 +089017 +013002 +023007 +015001 +089023 +092004 +033006 +033006 +092003 +093001 +069002 +014009 +067010 +004002 +067006 +060005 +092001 +46789 028001 +033022 +091001 +033006 +092004 +46795 015004 +092003 +089021 +006016 +089017 +006016 +089017 +006017 +069005 +092004 +057005 +089015 +092004 +033006 +092004 +089015 +033006 +092004 +089023 +067002 +092004 +057001 +006016 +015024 +064 +089017 +006016 +089017 +092004 +069002 +057001 +057015 +092004 +006017 +092004 +089015 +057015 +006007 +089007 +033006 +092003 +090006 +071005 +092007 +092004 +033005 +092004 +46843 083003 +088018 +031001 +013004 +090013 +092001 +089007 +091002 +092004 +089004 +092001 +067003 +46856 089015 +092004 +033006 +012001 +091003 +006007 +083001 +060002 +089015 +092004 +033006 +092004 +059005 +013001 +091001 +015004 +015004 +089005 +092004 +041002 +084002 +092004 +001007 +092004 +003002 093002 +089015 +015020 +092004 +089017 +092004 +036004 +089015 +085001 +084002 +092004 +080001 +033006 +092004 +033013 +069002 +090013 +013002 +088038 +089015 +092004 092008 +015004 +084001 +092004 +078003 +002005 +015026 +089015 +017003 +092004 +017003 +033013 +033006 +012001 +089010 +030004 +090014 +092007 +092004 +090014 +46921 092001 +089023 +069002 +092004 +025001 +092001 +089023 +092004 +092003 +013004 +089015 +024001 +092004 +012001 +090003 +001002 +079013 +092004 +089015 +013001 +013001 +025023 +025006 +033013 +089017 +013004 +092004 +008003 +092004 +064 +008002 +008002 +015011 +084002 +092004 +002005 +089015 +015004 +084001 +092004 +033013 +015006 +084002 +092004 +036004 +027002 +023005 +092004 +089007 +092004 +025023 +089015 +033006 +092004 +092004 +023005 +017001 +033013 +090006 +069002 +090013 +013002 +088038 +067006 +092004 +033006 +091003 +011001 +089017 +092004 +033009 +093001 +092004 +092004 +060002 +015023 +092004 +089015 +015005 +092004 +093001 +034009 +092004 +089023 +093001 +033006 +092004 +093001 +034009 +092004 +009001 +092004 +009001 +037007 +089015 +092004 +083004 +092004 +024001 +092004 +013004 +033006 +012001 +090006 +019001 +090002 +006007 +089015 +019001 +092004 +092004 +063004 +092004 +092004 +053009 +092004 +087005 +47039 085002 +092004 +008002 +092004 +092004 +082002 +089023 +033004 +092004 +093001 +033006 +068004 +078005 +092007 +089015 +024005 +092004 +008002 +023008 +092004 +089015 +033006 +093001 +090013 +092004 +015006 +090008 +092004 +053009 +089017 +037004 +092004 +007002 +089017 +053009 +064 +090008 +039007 +015004 +089020 +006007 +089017 +006007 +47083 067005 +085001 +092001 +089020 +092003 +083003 +092004 +007002 +069002 +037006 +092004 +037006 +47096 092001 +089023 +092007 +013001 +092003 +092004 +067001 +089017 +092004 +076 +092004 +014007 +089015 +037006 +092004 +015023 +089015 +015023 +084002 +092004 +007002 +092004 +053009 +089015 +092004 +093001 +015017 +083005 +089015 +014008 +002003 +083003 +083003 +092004 +007002 +089015 +017002 +017002 +092004 +093001 +083003 +092004 +089015 +087005 +092004 +024001 +092004 +017002 +083005 +092004 +014006 +089015 +024001 +092004 +033006 +089017 +092007 +089020 +092004 +085001 +089023 +092004 +033022 +033006 +069002 +028001 +092004 +009003 +089015 +067002 +059002 +058006 +024001 +092004 +033006 +089017 +092003 +063004 +092004 +013001 +089023 +092004 +093001 +033006 +009002 +069002 +013001 +089015 +067005 +078003 +067009 +060002 +058006 +092004 +033031 +033006 +47193 070 +089017 +092007 +089020 +092004 +085001 +089007 +091002 +093002 +013001 +089023 +033006 +092004 +093001 +009002 +069002 +028001 +092006 +033006 +089015 +067005 +067006 +033006 +092004 +014009 +004002 +089015 +016 +092004 +012001 +024001 +092004 +093001 +089015 +029002 +092004 +093001 +092004 +47232 092004 +012001 +090006 +033006 +092004 +090006 +067002 +004002 +014009 +067010 +033022 +092001 +060005 +089015 +015004 +084002 +025012 +025023 +091001 +092004 +009002 +092004 +037009 +092004 +033044 +092004 +019001 +089015 +079025 +092004 +033014 +033006 +033053 +092004 +013001 +092004 +019001 +092003 +089017 +058006 +059001 +033006 +033042 +090013 +092004 +091001 +067002 +013004 +067009 +015013 +092004 +011003 +092004 +011002 +089017 +053009 +089017 +053009 +089015 +015023 +092004 +084002 +092004 +011003 +092004 +033006 +090006 +092003 +013001 +092004 +053009 +033006 +092002 +089023 +033006 +092004 +089010 +092003 +033006 +069002 +069002 +031006 +089017 +089010 +033014 +069002 +069002 +033014 +089023 +067006 +092004 +067002 +47325 017002 +092004 +009001 +092004 +009001 +087003 +082002 +092004 +076 +092004 +012001 +089015 +033006 +059003 +091002 +092003 +013001 +092004 +012001 +092004 +012001 +47347 092004 +090013 +092004 +033006 +092003 +033006 +090006 +092001 +013001 +089015 +092004 +033006 +092004 +059008 +47362 033020 +057005 +089007 +092004 +024002 +090003 +092004 +033006 +092004 +091001 +015004 +059003 +092004 +011001 +092004 +015023 +092004 +084002 +092004 +093001 +089015 +068001 +033048 +092004 +033006 +027002 +092007 +031008 088035 +092004 +011003 +092002 +089017 +013004 +057014 +037004 093001 +057012 +089017 +033006 +092004 +053009 +037004 +013001 +089015 +092004 +093001 +033014 +092004 +033006 +092003 +013001 +092004 +037004 +092004 +093001 +089015 +092004 +033004 +092004 +033006 +092003 +033006 +089015 +092004 +093001 +033006 +090013 +092004 +053009 +089017 +092004 +087004 +092004 +027001 +088038 +090013 +092004 +009002 +092007 +089023 +092004 +068006 +033006 +090006 +039008 +092004 +087004 +033017 +084003 +063001 +092004 +093002 +47454 068001 +084001 +092004 +093002 +084002 +083001 +47461 093001 +024002 +033014 +090006 +092004 +009002 +093002 +013001 +089015 +027001 +090006 +089003 +092004 +037003 +093001 +013001 +015004 +092004 +084002 +093001 +085001 +089017 +092004 +083003 +093002 +067007 +092007 +092004 +067008 +089015 +092004 +093001 +024001 +092004 +093001 +025011 +078001 +089007 +47500 025001 +067006 +059005 +067005 +024001 +092004 +089007 +092004 +033015 +090006 +092004 +089017 +025004 +024001 +092004 +033056 +090001 +092004 +013004 +47520 056004 +092004 +090002 +033006 +059001 +089023 +092004 +092004 +033014 +092004 +089017 +017001 +092004 +053009 +089017 +092004 +053009 +078001 +033048 +092004 +089015 +092004 +093001 +088025 +092004 +089018 +092004 +055003 +092004 +089017 +033044 +049 +006017 +079005 +015004 +092004 +092004 +093001 +47559 013002 +034001 +089017 +092004 +093001 +089017 +092004 +093001 +067002 +092004 +092004 +067009 +090013 +092005 +089007 +013003 +013001 +039001 +013001 +090008 +092004 +47581 093001 +033029 +092004 +053009 +089017 +092004 +037004 +089017 +092004 +087004 +033006 +090013 +092004 +015023 +092001 +092004 +009002 +092007 +064 +031008 088035 +092004 +087004 +089017 +091003 +092001 +083006 +092003 +056004 +092004 +027002 +090013 +092004 +009002 +092007 +089007 +092006 +033048 +090008 +092004 +089023 +069003 +093001 +089007 +015004 +092004 +084002 +092002 +089017 +091003 +092004 +065002 +023007 +47634 042002 +092004 +089008 +038001 +092004 +037010 +089023 +033006 +059003 +033006 +020004 +092007 +089017 +037010 +092002 +092004 +093001 +47653 015026 +089007 +039007 +092004 +013004 +083003 +092004 +001014 +089017 +020004 +084002 +092004 +007002 +089015 +067002 +092004 +093001 +033006 +092004 +030004 +037010 +092004 +093001 +089023 +092004 +033006 +033006 +020004 +020004 +092004 +089015 +092004 +060003 +033006 +090013 +092004 +091001 +092004 +088015 +090011 +092007 +092004 +089007 +023007 +027001 +090013 +092004 +089008 +038001 +092004 +037010 +089023 +092004 +068002 +033006 +078001 +033012 +092004 +020004 +47713 079013 +092004 +033006 +092004 +47718 093001 +030005 +013004 +092004 +033012 +092004 +47725 037010 +092004 +089007 +039007 +089017 +020004 +015026 +084002 +007002 +092006 +033012 +089023 +092004 +093001 +037007 +092004 +025001 +092004 +091001 +067002 +056008 +092004 +018001 +093001 +092004 +093002 +015006 +084001 +001013 +085002 +092004 +092004 +006006 +015024 +084001 +092004 +093001 +089015 +015020 +092004 +059002 +011001 +092004 +011001 +089017 +009003 +092006 +052 +089017 +025012 052 +092004 +089023 +016 +084002 +092004 +093001 +033006 +011003 +093002 +069002 +025012 +090009 +092001 +089023 +090009 +092004 +025012 +089017 +090006 +092004 +010002 +092003 +090006 +091003 +013004 +067008 +067007 +092006 +033006 +025011 +092004 +023003 +089017 +092004 +008002 +092006 +069002 +023003 +089017 +008002 +092006 +069002 +023001 +067002 +068001 +033006 +092004 +001007 +015012 +084002 +092002 +089017 +092004 +001007 +079025 +092002 +090006 +089010 +090013 +079015 +003002 003006 +092007 +042002 +090013 +092004 +079015 +092004 +013004 +47844 015023 +089017 +058006 +088015 +060002 +089020 +092004 +020004 +091001 +47854 015006 +084002 +092004 +080001 +092004 +033009 +008002 +083001 +020004 +092004 +089017 +092004 +088015 +089017 +092006 +47870 082002 +089017 +092006 +47874 082002 +089023 +092004 +093001 +033006 +012001 +040002 +092004 +089007 +069002 +032001 +092004 +042002 +089015 +057008 +092004 +006017 +092004 +015026 +006023 +089017 +017001 +092004 +011001 +024001 +089023 +033044 +089017 +092004 +037004 +033006 +058006 +021005 +021005 +092004 +089010 +092007 +013001 +092004 +053009 +092004 +012001 +092004 +030006 +089017 +033044 +092004 +089017 +092004 +055004 +015005 +006019 +015024 +092004 +089017 +033006 +089010 +092003 +013001 +092004 +037004 +092004 +093001 +021005 +092003 +089017 +013003 +089017 +033005 +47944 092004 +092004 +037004 +092004 +093001 +092007 +47952 092004 +018002 +088015 +033042 +092004 +069004 +092003 +013001 +092004 +053009 +021005 +092003 +089017 +092002 +089023 +033004 +092004 +058006 +033046 +092004 +033006 +069003 +087002 +092003 +092004 +012001 +089007 +089013 +092004 +058005 +056005 +013001 +089017 +091002 +092002 +088002 +089007 +065002 +092006 +042002 +090013 +089023 +092007 +092004 +088015 +042002 +089015 +033006 +093001 +029002 +092001 +48004 015006 +084002 +092004 +037004 +092003 +089015 +033006 +092004 +072001 +092003 +033006 +067010 +089020 +092001 +085001 +083003 +092004 +001002 +091001 +013004 +067002 +078003 +067009 +060003 +48029 014007 +013004 +090013 +063001 +092004 +001011 +067006 +067009 +060003 +092004 +001004 +068004 +089017 +063006 +092004 +006017 +092004 +007002 +083003 +089015 +033006 +033006 +078001 +092004 +093001 +033006 +012001 +084002 +037001 +092003 +035005 +092004 +026 +092001 +089015 +092007 +033006 +023007 +089015 +092004 +055004 +024001 +092004 +013004 +033037 +092004 +012001 +033006 +070 +092004 +009002 +092007 +088002 +013001 +089015 +059003 +092004 +015013 +089009 +092004 +024001 +092007 +011001 +024001 +092004 +013004 +019001 +092004 +008002 +015007 +089017 +085001 +48102 083005 +059003 +092004 +034001 +092004 +089017 +009003 +092004 +015020 +092004 +084001 +092004 +093002 +024001 +092007 +091001 +091003 +009002 +033009 +093001 +013001 +011003 +009002 +065003 +089017 +088002 +092007 +069002 +48131 031003 +092004 +030004 +089017 +092004 +042002 +092004 +084001 +093002 +001014 +092004 +093001 +092006 +085003 +092004 +037004 +092004 +012001 +092007 +015005 +092004 +093001 +033012 +092004 +008001 +092004 +093001 +089015 +015024 +079026 +092004 +006017 +089015 +085002 +092004 +084002 +007007 +019002 +083002 +069002 +48172 017007 +092004 +067006 +48176 067009 +067010 +013001 +089017 +067009 +014006 +089017 +015017 +092004 +009003 +48188 015019 +084001 +092004 +093002 +092004 +024001 +092004 +007007 +089017 +089014 +085002 +092004 +008001 +092004 +089015 +015007 +077 +006021 +089017 +006021 +091001 +089023 +092004 +067009 +023006 +089005 +092004 +033032 +089023 +092004 +48219 092004 +067009 +067004 +078001 +084002 +092004 +007007 +015006 +015024 +092006 +077 +006021 +089015 +027001 +092004 + +015035 +084001 +092004 +007007 +089023 +015008 +069002 +027002 +092004 +008001 +092004 +012001 +093001 +089015 +013004 +067007 +092004 +032001 +092004 +089007 +092007 +48257 091003 +009002 +060002 +017001 085001 +092004 +089013 +006017 +014006 +089015 +025022 +013002 +092004 +089015 +017005 +092004 +008002 +48274 092004 +002005 +033006 +090013 +092004 +092004 +027004 +092004 +023007 +083003 +092004 +023007 +069002 +085001 +083001 +089023 +023007 +029002 +090006 +033006 +092003 +067006 +085001 +083003 +092004 +093002 +033006 +090006 +071005 +092004 +009001 +092004 +009001 +037001 +48309 037001 +009001 +088038 +089015 +020004 +089015 +092004 +060003 +067009 +023007 +089015 +029002 +092004 +033006 +092004 +089015 +015007 +084001 +092004 +007007 +033015 +092007 +059003 +092004 +060002 +089017 +059003 +092004 +063005 +089017 +085001 +092004 +093001 +093001 +089017 +093001 +089017 +093001 +092004 +093001 +089017 +092004 +063005 +089020 +092004 +033006 +090013 +092004 +053009 +092007 +48360 024001 +090005 +092004 +064 +033040 +092004 +033006 +092007 +48369 031006 +092004 +48372 092004 +093001 +015004 +015030 +084002 +092004 +007007 +089015 +017008 024001 +024001 +092004 +006017 +058007 +089015 +015007 +48389 025020 +092004 +013004 +091001 +091003 +060002 +063004 +092004 +067002 +092004 +092004 +067009 +48402 015002 +084002 +001014 +085001 +081006 +060002 +084001 +093002 +092006 +033009 +093002 +089017 +092004 +033011 +090013 +092005 +090006 +059003 +092004 +013004 +092007 +089015 +013004 +067007 +092004 +033011 +092004 +089017 +033011 +48432 092008 +093001 +015005 +015019 +092004 +089023 +092004 +008002 +092004 +037001 +092004 +069002 +027007 +092004 +089015 +033006 +090013 +092004 +092004 +092004 +033006 +092007 +092006 +033011 +089020 +092005 +015029 +48460 017001 +025023 +089015 +033014 +092004 +033009 +093001 +033006 +090013 +092004 +092003 +058007 +085005 +093002 +089017 +069002 +027001 +092004 +013004 +083003 +092004 +067007 +092004 +067008 +092007 +089015 +033006 +092004 +092007 +089015 +092004 +033006 +092004 +092004 +089004 +093001 +092004 +093002 +092006 +013001 +009002 +053009 +074 +089012 +042002 +089017 +033006 +090005 +092004 +012001 +089017 +059003 +092004 +011001 +089017 +089014 092004 +037007 +092004 +092004 +053009 +089017 +092004 +037004 +092002 +013002 +056005 +023007 +089015 +020004 +092004 +089023 +092002 +025004 +090006 +092004 +013001 +092004 +067002 +037010 +092004 +093001 +089023 +091002 +089017 +089018 +059003 +092007 +060003 +092007 +067009 +067002 067005 +067006 +092006 +092007 +013004 +089023 +089017 +009003 +092004 +063004 +092002 +025020 +092002 +085001 +067009 +084002 +092004 +007007 +48569 069002 +027002 +092004 +008001 +092004 +015006 +033006 +48577 033056 +012001 +024001 +092006 +033006 +092004 +023007 +089015 +015004 +092004 +092004 +089020 +092002 +084002 +092004 +007007 +089015 +027001 +061 +064 +091002 +092004 +009003 +033006 +089023 +092004 +069002 +024001 +089015 +092004 +033006 +090013 +092004 +091004 +032005 +089017 +067006 +092004 +026 +092004 +031006 +48619 059003 +092006 +033006 +092004 +053009 +069004 +071004 +092007 +024006 +092004 +053009 +089015 +090013 +013002 +092004 +014006 +092004 +089015 +068001 +090003 +093001 +089017 +090003 +059003 +092004 +053009 +033010 +092004 +083003 +059003 +092004 +033005 +092004 +089004 +092004 +091001 +015005 +084002 +092004 +001014 +083002 +015002 +089015 +092004 +041004 +083005 +015004 +48667 033028 +092004 +033006 +085003 +089020 +092002 +089007 +067008 +067009 +013004 +48678 067006 068004 +067002 +092004 +067009 +089015 +015008 +092004 +085003 +089020 +092004 +091001 +013004 +067007 +092004 +017006 +092004 +089020 +092004 +018001 +092004 +005001 +033037 +089015 +019004 +057008 +092004 +089015 +092004 +092004 +008002 +079024 +48710 027007 +092004 +089015 +092004 +024001 +013002 +084001 +092004 +089015 +033006 +090013 +092005 +069004 +092004 +026 +092002 +014008 +48728 083003 +092002 +067007 +033006 +092002 +083008 +092004 +015002 +067007 +033010 +092002 +092004 +033005 +089015 +015004 +092004 +092004 +067001 +015007 +084002 +093002 +089015 +027002 +015013 +092004 +060002 +089017 +092004 +089020 +092004 +033006 +090006 +070 +023007 +092004 +012001 +089015 +024001 +093001 +089015 +092004 +033015 +092004 +083008 +092004 +015002 +089015 +089014 +031004 +092004 +089012 +092004 +019004 +092004 +005001 +48784 092007 +092004 +033006 +092008 +017001 +48790 083003 +092004 +089015 +033006 +092004 +022007 +092003 +089023 +025022 +089017 +025022 +013002 +031005 +012001 +024001 +089015 +033006 +092004 +092004 +025021 +48811 089017 +48814 031006 +030001 +48817 092004 +026 +092003 +024001 +092004 +008002 +092001 +089017 +092004 +008002 +092001 +090006 +092001 +013001 +092008 +024005 +092001 +089017 +024001 +090006 +012001 +008002 +089017 +008002 +069002 +057001 +064 +092001 +057001 +024001 +089015 +092007 +033006 +028003 +092004 +092004 +008002 +089017 +092004 +008002 +089015 +067006 +031006 +092004 +089007 +092004 +025011 +089017 +025020 +033006 +092004 +057001 +48870 023001 +083001 +089015 +092004 +057008 +092004 +004005 +046 +004003 005001 063004 +089015 +018001 +083006 +092004 +023001 +48885 033006 +090013 +092004 +092007 +092004 +033019 +092001 +092006 +033006 +090013 +092003 +067006 +085001 +089020 +092003 +090006 +071005 +013004 +063001 +092004 +033005 +083003 +092004 +033005 +093001 +089017 +092004 +053009 +089017 +033007 +089004 +092001 +067002 +027005 +092004 +092004 +026 +092004 +032001 +092004 +033005 +089015 +033006 +092004 +090006 +061 +033005 +024006 +092004 +053009 +089015 +023007 +089021 +023007 +092004 +060003 +067009 +089015 +033019 +090006 +092004 +033009 +092004 +041005 +089008 +040002 +088038 +090013 +063001 +092004 +011003 +068001 +084001 +093002 +092003 +033020 +092007 +089017 +091003 +092001 +48966 092004 +033025 +092004 +012001 +092001 +090013 +092003 +089023 +092003 +085003 +083003 +092004 +001014 +067006 +48981 049 +090003 +001002 +076 +48986 015023 +092004 +084002 +084002 +093002 +089015 +015010 +092004 +008002 +092004 +033055 +092004 +089017 +013004 +067007 +092004 +033055 +092004 +092004 +015004 +084001 +092004 +49009 015024 +084002 +092004 +001002 +089015 +092004 +053007 +092004 +015007 +084002 +093002 +089013 +025011 +078001 +089015 +085001 +033037 +067005 +067001 067005 +083003 +092004 +007002 +092004 +012001 +067002 +067003 +013003 +092004 +033006 +089017 +092004 +033006 +085001 +089020 +092004 +012001 +089017 +012001 +058010 +092004 +033006 +092007 +013003 +067002 +067003 +089020 +092004 +012001 +059003 +090001 +092004 +013003 +089017 +089021 +092004 +013003 +069003 +092004 +092006 +013003 +090001 +092004 +023007 +013001 +089017 +092004 +023007 +013001 +092004 +014006 +092004 +009001 +089017 +092004 +014006 +083003 +092004 +088015 +014006 +091002 +092004 +088015 +092004 +069002 +032002 037001 +091001 +009002 +015004 +090003 +012001 +033009 +092004 +093001 +092007 +015006 +089009 +033020 +089009 +033020 +090006 +092004 +014006 +089009 +059003 +031010 +090001 +092004 +069002 +013001 +092007 +092004 +014006 +089023 +089009 +033020 +090006 +092004 +014006 +092004 +014006 +092004 +073 +092006 +028003 +059003 +009001 +013001 +015006 +084002 +092004 +001006 +083003 +092004 +001006 +085001 +089017 +092004 +001001 +090001 +092004 +013003 +091002 +092004 +009001 +092004 +069002 +031004 +084002 +092004 +057001 +015006 +091002 +092004 +010001 +092004 +069002 +034007 +089023 +059001 +031007 +092004 +013004 +030007 +058004 +012001 +013002 +092004 +092004 +031010 +090006 +092004 +009001 +092004 +092006 +069002 +090002 +008002 +069003 +090003 +025002 +025002 +069003 +090003 +025001 +010004 +089023 +089003 +012001 +023003 +091001 +092004 +033006 +009001 +013002 +089017 +085005 +083003 +092002 +089017 +024001 +092004 +079005 +092004 +079005 +064 +058007 +084001 +012001 +059004 +088009 +089017 +072001 +093001 +033020 +090006 +092004 +089017 +033006 +033006 +092007 +013001 +092006 +033006 +092004 +49234 092001 +015006 +083006 +092001 +013001 +089007 +067002 +092001 +013001 +089007 +090003 +092004 +059003 +092004 +092002 +059003 +057009 +49252 057008 088009 +057010 +057008 088009 +089007 +092004 +033005 +090001 +093001 +49261 092004 +057008 +089017 +092004 +072001 +090001 +093001 +093001 +013004 +012001 +092004 +024001 +067001 +058007 +012001 +092004 +034001 +034001 +034001 092004 +008002 034001 +092004 +012001 +092007 +028003 033015 +091001 +092007 +013001 +092004 +033020 +092004 +093001 +49293 015004 +084002 +092004 +092004 +093001 +084001 +093002 +053009 +089017 +053009 +089009 +033014 +092004 +092003 +092004 +013001 +49310 033016 +089017 +069002 +033022 +089017 +033016 033022 +090006 +092001 +069002 +013001 +092004 +053009 +49323 033014 +092004 +089008 +092004 +092003 +093001 +013001 +49331 033006 +069002 +013001 +092004 +053009 +013001 +092003 +49339 033014 +069002 +49342 033006 +092004 +092004 +013001 +089009 +033014 +49349 092004 +015004 +092002 +092004 +033010 +090006 +092003 +033006 +092001 +033006 +033006 +083003 +092004 +001013 +079017 +092004 +041003 +012001 +064 +033006 +093001 +092004 +053009 +49373 015004 +058010 +063004 +092004 +011002 +091001 +033014 +092004 +089017 +033006 +092004 +089008 +092004 +053005 +089010 +092003 +069002 +013001 +092004 +053009 +069003 +093001 +069003 +092004 +053009 +033014 +092004 +092004 +093001 +033006 +092001 +053005 +083003 090002 +002004 +083003 +092003 +49410 092006 +092003 +069002 +028001 +092004 +49416 092001 +015001 +092006 +069002 +013001 +092001 +065002 +090006 +018002 +092004 +092004 +006004 +092004 +006017 +092007 +083003 +093002 +013004 +083007 +092004 +093002 +083002 +49439 053005 +092004 +093001 +092004 +067010 +024001 +092004 +093001 +015006 +084002 +092004 +49451 033006 +091003 +092004 +004001 +092004 +012001 +092004 +015024 +092004 +088038 +092004 +009001 +092007 +013001 +090006 +092006 +092001 +033006 +49470 092001 +015006 +009002 +092006 +083006 +092001 +013001 +089007 +067002 +092001 +013001 +092001 +069002 +028001 +092004 +091001 +089009 +028003 +092004 +093001 +49492 015006 +092001 +083003 090002 +002004 +053005 +091001 +033020 +093001 +033006 +090006 +024001 +092004 +012001 +015011 +064 +004002 +084001 +001002 +089015 +085003 +083008 +092004 +092001 +069002 +028001 +092004 +091001 +092004 +015004 +092001 +053005 +083003 090002 +002004 +092007 +092001 +033006 +071001 +083008 +092006 +024001 +092004 +012001 +015011 +089015 +085003 +083008 +092004 +092007 +013001 +092004 +053005 +083003 090002 +012001 +088003 +092001 +024001 +089017 +033020 +090006 +092007 +013001 +092004 +012001 +092004 +012001 +092004 +067010 +067002 +017001 +092004 +093001 +089017 +063004 +092004 +036004 +092004 +060002 +089015 +024001 +092004 +093001 +015029 +033006 +091003 +092004 +004001 +092004 +012001 +091001 +024002 +092004 +060002 +036004 +092004 +033006 +089015 +015017 +092004 +093001 +49592 092004 +093001 +016 +089015 +024001 +092004 +015017 +033006 +092004 +092004 +025001 +49604 092004 +033006 +092004 +033017 +092006 +033010 +033010 +033017 +083002 +085003 +033006 +092004 +015006 +089015 +024001 +089008 +015006 +089015 +024001 +083002 +085003 +089015 +089020 +092004 +085003 +092004 +067009 +092007 +067009 +013001 +078003 +060003 +013001 +093001 +092004 +010003 +093001 +093001 +060002 +063004 +092004 +060002 +092004 +024002 +090003 +093001 +089015 +015017 +092004 +027002 +092007 +060003 +092004 +010003 +092004 +057001 +093001 +089015 +033006 +092004 +027002 +092004 +053009 +092006 +013001 +033010 +053009 +015023 +092004 +084002 +092004 +093001 +024001 +092004 +092004 +093001 +033006 +092003 +013001 +093001 +092004 +010002 +093001 +092003 +033009 +093001 +092006 +033010 +093001 +092004 +067010 +025001 +015004 +084002 +092004 +093002 +089015 +027002 +093001 +089015 +033006 +092004 +092004 +093001 +015020 +092001 +49711 085001 +092004 +093001 +084001 +093002 +084001 +092004 +001014 +093001 +089017 +093001 +027002 +093001 +092004 +093001 +089015 +033006 +092004 +092006 +033005 +093001 +083003 +092004 +033005 +089017 +092004 +053009 +027002 +093001 +010002 +092004 +093001 +092004 +084001 +093002 +091001 +033006 +092004 +093001 +084001 +093002 +071001 +074 +092004 +088001 +033006 +092004 +092004 +093001 +015006 +089015 +090013 +024001 +093001 +092004 +093001 +015006 +084002 +092004 +089015 +033006 +090006 +092004 +091003 +070 +093001 +089004 +092006 +088021 +069002 +013003 +033006 +092004 +093001 +089014 +092001 +028001 +033014 +093001 +089017 +033006 +092004 +067002 +092004 +092003 +093001 +033029 +085001 +083009 +092004 +003002 +092003 +024001 +033004 +092004 +093001 +033017 +092003 +013001 +092004 +012001 +092004 +012001 +092003 +037004 +092004 +093001 +013001 +033004 +093001 +089017 +033006 +092004 +089007 +033006 +092003 +090006 +024001 +092003 +083009 +092004 +003002 +031010 +078001 +092007 +024001 +091001 +033006 +092004 +072001 +072001 +033006 +092003 +024001 +092004 +001002 +079024 +089015 +092004 +012001 +092004 +012001 +015010 +089017 +015011 +49857 092004 +009001 +092004 +009001 +091001 +092004 +067009 +092004 +060003 +034010 +091001 +083003 +093002 +092004 +093002 +089017 +085001 +092004 +010002 +092004 +093001 +083001 +089017 +033030 +089017 +092004 +093001 +089017 +092004 +036004 +092004 +084002 +092004 +034010 +091001 +057005 +006019 +033006 +092004 +010002 +092004 +093001 +090013 +092004 +006019 +069002 +057001 +091001 +033006 +092004 +092004 +093001 +092004 +092001 +089017 +092003 +009003 +067006 +015006 +092004 +067001 +092001 +033006 +092004 +010002 +092004 +092004 +035002 +092004 +071001 +092006 +033006 +092003 +042002 +49932 013003 +085001 +083001 +002005 +006016 +060002 +089005 +092004 +053003 +092004 +093001 +080001 +089016 +081005 +060002 +089024 +060002 +033006 +092004 +092004 +093001 +059004 +092004 +006016 +002004 +49958 059004 +092004 +084002 +083009 +091001 +033006 +092004 +047001 +067002 +089015 +015024 +092004 +046 +49972 092004 +015024 +49975 067002 +024004 +092004 +046 +092004 +002004 +006019 +013002 +089017 +069002 +028001 +084001 +085001 +089023 +028001 +092004 +035002 +092004 +047001 +092004 +002004 +033029 +092004 +010004 +092004 +046 +089015 +033006 +092004 +059003 +009001 +060003 +092004 +065003 +006019 +085002 +089015 +50013 023001 088037 +092004 +087004 +092003 +013001 +092004 +065003 +006019 +067006 +067002 +092007 +068001 +092004 +033056 +090011 +092004 +093001 +083003 +093002 +092004 +093002 +089017 +028003 +092004 +087003 +092004 +50040 031010 +090006 +092004 +092004 +036004 +092004 +067002 +092007 +015011 +084002 +093002 +092004 +089017 +092004 +010002 +092004 +089017 +092004 +010003 +089017 +092004 +036004 +092004 +089015 +083001 +085003 +069002 +059001 +067009 +091001 +067002 +013001 +092004 +051 +092004 +093001 +50077 015010 +084002 +093002 +092004 +093001 +091001 +027002 +083003 +092004 +007002 +092004 +057015 +004001 +089017 +004001 +089017 +004002 +089017 +092004 +057016 +017002 +50099 042003 +006006 +089025 +006004 +059003 +015004 +084001 +092004 +007002 +089017 +092004 +004001 +089017 +092004 +004001 +089017 +092004 +057016 +50119 015014 +089017 +092004 +006015 +016 +091001 +092004 +092004 +004002 +057015 +033006 +015024 +092007 +084001 +069002 +013001 +092004 +007002 +092004 +012001 +092001 +007002 +057016 +029002 +092004 +036004 +092004 +090006 +033005 +50149 092004 +025003 +092004 +007002 +092003 +020003 +092001 +089008 +033004 +092004 +093001 +089017 +033006 +092004 +092004 +033056 +028003 +092002 +090006 +092007 +042002 +033014 +093001 +089017 +033006 +092004 +020003 +092004 +007002 +092007 +091002 +067007 +060002 +067009 +013002 +092004 +089008 +033006 +092004 +093001 +060002 +089017 +060002 +067009 +045 +092004 +007002 +092007 +091002 +092003 +067007 +060002 +067009 +013002 +092004 +089023 +092007 +033006 +090006 +092004 +007002 +092004 +008001 +092004 +089008 +50215 023007 +089021 +023007 +029002 +092004 +036004 +092004 +090006 +092007 +033006 +50226 031006 +092004 +033005 +089017 +092004 +033006 +092006 +033006 +092004 +093001 +50237 067007 +085001 +083003 +092004 +093002 +067007 +092004 +051 +067007 083005 +092004 +051 +059001 +031009 +090006 +092004 +033020 +092004 +024001 +092004 +092004 +033056 +092006 +090011 +089023 +092008 +093001 +069002 +035005 +092008 +092004 +090010 +092004 +092004 +032002 +059003 +089017 +089007 +069002 +057005 +50277 090006 +092004 +033020 +090006 +092004 +009001 +089007 +092004 +032002 +092004 +085001 +013001 +092004 +009001 +50292 013003 +009002 +063004 089003 +092004 +011002 +037004 +092004 +093001 +093001 +033009 +092004 +092007 +015006 +084002 +092004 +067009 +089015 +033006 +092004 +033017 +028001 +090006 +50315 012001 +015006 +033017 +089007 +092004 +074 +092007 +092004 +033056 +092006 +092003 +090011 +090011 +50330 085001 +092004 +012001 +089020 +092004 +033004 +093001 +089017 +033006 +092004 +072001 +072001 +033006 +092003 +50346 092004 +041005 +041005 067002 084001 +069002 +074 +090013 +092004 +037004 +092004 +012001 +033006 +090013 +092004 +092004 +093001 +092004 +074 +009002 +023003 +009002 +013001 +069002 +074 +084002 +092004 +008002 +092004 +010002 +092004 +060003 +015008 +089015 +023003 +033014 +093001 +072001 +072001 +033006 +092003 +50387 092004 +013002 023003 +089012 +002004 +089017 +012001 +069002 +074 +090013 +013002 +092004 +037004 +092004 +012001 +092004 +023003 +090003 +092004 +058001 +058001 +013001 +089017 +092004 +013002 +090003 +092004 +012001 +012001 +013001 +069002 +025020 +089007 +033006 +092003 +071005 +092003 +041005 +041005 067002 084001 +092004 +014002 +083002 +025001 +014002 +089017 +092004 +014009 +092004 +024002 +089023 +069002 +028001 +084001 +015006 +089017 +083002 +015001 +50444 013001 +059003 +092004 +013002 +090003 +092004 +012001 +033004 +093001 +089017 +033006 +092004 +092004 +074 +092007 +013004 +033014 +093001 +089017 +033006 +092004 +092003 +013001 +092004 +033017 +092004 +093001 +091002 +092007 +069004 +032002 +072001 +072001 +033006 +092003 +090006 +092006 +028001 +033006 +089017 +092006 +024001 +033020 +091002 +092004 +033020 +092002 +069002 +031007 +089010 +092004 +009001 +033006 +092003 +091002 +069002 +031006 +092004 +089010 +033006 +092003 +092004 +012001 +031006 +091001 +092004 +015010 +084002 +092004 +001002 +089023 +50516 092004 +084001 +092004 +001002 +015011 +092004 +009001 +092004 +009001 +091001 +064 +093001 +081002 +092004 +004004 +083003 +092004 +001013 +50535 071005 +081002 +092004 +009001 +092004 +009001 +089009 +059003 +092004 +031010 +090006 +092004 +090013 +023007 +067005 +089007 +061 +025003 +092004 +012001 +092004 +009001 +089008 +092004 +012001 +092004 +058007 +037005 +089009 +059003 +092004 +031010 +090006 +092004 +069002 +021006 +089023 +090013 +023007 +067005 +089007 +069002 +015004 +092004 +012001 +092004 +012001 +084002 +092004 +009001 +089009 +056005 +092004 +009001 +089023 +089009 +021006 +092004 +009001 +090001 +092004 +092004 +031010 +090006 +092004 +069002 +056005 +092004 +069002 +031010 +067002 +056005 +089007 +069002 +031010 +090006 +092004 +033009 +092004 +058007 +012001 +092004 +012001 +089017 +092007 +013001 +092004 +030007 +091005 +092004 +014006 +015006 +084002 +092004 +009001 +50631 025010 +092004 +009001 +089023 +092004 +088015 +064 +092004 +014006 +089007 +013001 +088015 +092004 +092004 +042002 +089007 +059003 +092004 +088015 +042002 +088026 +092004 +014006 +50655 069002 +015006 +084002 +092004 +014006 +089009 +069002 +033046 +092004 +042002 +092004 +089023 +092004 +041001 +092004 +072001 +015006 +084002 +092004 +014006 +089009 090006 +028003 +092004 +092004 +042002 +090006 +50682 012001 +50684 090011 +067002 +092007 +015006 +092004 +093001 +089017 +092004 +036004 +092004 +084002 +092004 +093002 +001011 +089015 +083001 +085003 +089020 +092004 +089017 +053005 +089017 +013001 +053005 +089017 +093001 +083003 +093002 +083005 +092004 +093002 +089007 +002004 +059002 +085001 +083001 +089017 +015006 +089015 +053005 +089007 +067006 +50727 085002 +084002 +092004 +007002 +093001 +50733 091001 +033050 +090003 +092004 +036004 +093001 +090008 +093001 +089004 +053003 +50744 015006 +084002 +092004 +093001 +089015 +033006 +092004 +033017 +092006 +085001 +089020 +092003 +083007 +092004 +093002 +092006 +092003 +033020 +091003 +092007 +053005 +089017 +059003 +015006 +084002 +092004 +033004 +093001 +089017 +033006 +069002 +074 +009001 +057009 +50783 092004 +090003 +092004 +012001 +092008 +092003 +092001 +033020 +090006 +033006 +069002 +013001 +092001 +092004 +053009 +089023 +090006 +015004 +013001 +083006 +092007 +092004 +50806 092004 +010004 +010004 +013001 +089017 +092004 +034001 +092004 +010004 +092004 +085001 +089017 +024002 +092004 +025011 +025011 +090010 +092004 +033006 +092004 +010004 +089008 +092007 +092004 +025011 +092004 +092001 +059004 +071005 +092007 +087003 +089023 +092001 +087004 +092004 +084001 +015006 +087003 +059003 +013001 +092004 +058010 +089003 +092004 +001006 +089003 +092004 +001006 +013001 +50856 089003 +092004 +001006 +033006 +092004 +089003 +092004 +001002 +015006 +087003 +059003 +013001 +092006 +024001 +089017 +024002 +092007 +033020 +091002 +092004 +033020 +092004 +092004 +057009 +092004 +057009 +092004 +092004 +033020 +028003 +090006 +092004 +012001 +088005 +013001 +089007 +092006 +015004 +092004 +012001 +092004 +033006 +092004 +012001 +033006 +089007 +069002 +078001 +078001 081001 +50906 092004 +012001 +092004 +012001 +025003 +092004 +012001 +089017 +059003 +50917 092004 +076 +092004 +092004 +031010 +090006 +092004 +012001 +090013 +023007 +067005 +089023 +092004 +036003 +092004 +012001 +069002 +090013 +023007 +089023 +092004 +038001 +092004 +012001 +068002 +090008 +092004 +50945 067002 +027001 +092004 +50949 090006 +033015 +092004 +011002 +090006 +093001 +059001 +036004 +013001 +089017 +053005 +064 +093001 +089011 +093001 +092008 +069002 +053005 +089023 +092004 +036004 +092004 +015004 +092004 +093002 +089015 +015004 +067002 +084002 +092004 +093002 +50981 071004 +092004 +015003 +084003 +092004 +093002 +089008 +015006 +084002 +001014 +092004 +093002 +033009 +093002 +083005 +092004 +001015 +092006 +057008 +093001 +093001 +092004 +010002 +092004 +51006 085001 +083001 +007005 +092004 +093001 +51012 092004 +093001 +023006 +089007 +092004 +015002 +017002 +061 +083005 +092004 +007005 +067009 +013001 +078003 +060003 +015006 +009003 +089003 +092004 +093002 +047001 +002004 +033006 +092004 +092004 +093001 +057008 +092001 +023001 +089007 +092004 +036004 +092004 +015004 +084002 +092004 +001014 +089009 +005001 +057015 +089008 +033006 +092004 +092004 +009003 +092004 +093002 +092004 +092003 +093001 +013001 +090003 +092001 +009003 +093002 +013001 +023001 +033012 +089007 +069002 +034001 +093001 +093002 +033014 +093001 +089017 +033006 +092004 +089010 +028001 +092004 +057008 +092004 +012001 +089017 +092004 +013001 +092004 +033006 +092003 +057008 +092001 +023001 +071003 +092003 +033012 +092004 +089015 +071003 +51102 092003 +002004 +023007 +033006 +092004 +087003 +069003 +006016 +057001 +089017 +092004 +007005 +013001 +081002 +089008 +084001 +057001 +092004 +002004 +092004 +023007 +069005 +092003 +087003 +013001 +092004 +010002 +092002 +093001 +092006 +057008 +092002 +092004 +007005 +089017 +092008 +089012 +092004 +023001 +089017 +092004 +010002 +092004 +089017 +092004 +004001 +092004 +033014 +093001 +089017 +033006 +092004 +059003 +092004 +023001 +089012 +092004 +002004 +092007 +023001 +067002 +089023 +071001 +092006 +023001 +089012 +092004 +002004 +092006 +092001 +51173 092004 +069002 +069002 +023001 +067005 +092004 +067005 +089023 +092004 +002004 +092006 +51185 092004 +013002 +083003 +092004 +001010 +002004 +014005 +078005 +023007 +067005 +033006 +090013 +092004 +092004 +009003 +087003 +057008 +092001 +092007 +092004 +002004 +089009 +069002 +023001 +069003 +015001 +083001 +047001 +033006 +092004 +015004 +033029 +092004 +010004 +092003 +089015 +015006 +083001 +033004 +092004 +009003 +089017 +033006 +069002 +51230 010004 +033006 +092004 +092004 +093001 +072002 +033006 +090006 +010004 +069002 +51241 089007 +060002 +010004 +51245 089017 +092006 +067002 +51249 069002 +013001 +092003 +010004 +092007 +072001 +033006 +033006 +092004 +092004 +009003 +087003 +032002 +090006 +053009 +058010 +092003 +092004 +010002 +092002 +083008 +092004 +001007 +092007 +053007 +51275 092003 +033006 +090006 +083003 +093002 +085001 +092004 +080001 +083002 +053007 +071005 +033006 +092004 +092004 +093001 +031006 +092001 +009003 +090006 +015006 +067001 +51297 069003 +083008 +092004 +001007 +092007 +069003 +083003 +093002 +053007 +092004 +012001 +092003 +053007 +092006 +069002 +028001 032001 +092002 +053007 +092006 +028001 032001 +089007 +092004 +021006 +090003 +092004 +093001 +013001 +091001 +015006 +067001 +089017 +067002 +013003 +51331 092004 +070 +053007 +053007 +092004 +012001 +013001 +026 +089017 +072001 +089007 +091002 +092004 +012001 +064 +025001 +092004 +053007 +092004 +012001 +092004 +012001 +51354 092004 +053007 +013001 +026 +089017 +072001 +053007 +071005 +033006 +092004 +092004 +009003 +028001 +090006 +053009 +092004 +033009 +053009 +015006 +51374 015006 +092007 +033015 +092002 +059003 +033006 +092004 +092004 +093001 +092001 +092004 +033006 +092003 +013001 +091001 +067002 +092007 +015006 +092004 +036004 +092004 +089015 +025020 +089007 090006 +090013 +009003 +033006 +089023 +092004 +033006 +092004 +033012 +089024 +092004 +033006 +089020 +092004 +089008 +085002 +092004 +006016 +092004 +092004 +009003 +089015 +015004 +084002 +092004 +001014 +089015 +033006 +092004 +009001 +084002 +024001 +009002 +092006 +033006 +092001 +059003 +51435 042002 +069005 +092007 +013001 +092004 +053009 +015004 +084001 +092004 +001014 +089015 +015006 +084002 +092004 +067007 +092004 +067002 +033012 +092004 +092004 +036004 +033006 +033017 +023001 +089023 +092004 +033006 +092004 +092001 +005001 +057001 +023001 +092006 +092003 +069002 +028001 +089008 +033006 +092004 +036004 +090013 +092005 +069005 +092004 +015024 +092004 +023001 +033006 +092004 +092004 +093001 +092001 +005001 +013001 +090006 +51491 092004 +030004 +092004 +015004 +092001 +089017 +068003 +092004 +092004 +042004 +069004 +092003 +033006 +090006 +067006 +067009 +013004 +089015 +092004 +043 +51512 091003 +033006 +092003 +024001 +092004 +008002 +092003 +089015 +024001 +092004 +001015 +091005 +079007 +013001 +078005 +043 +067002 +092004 +043 +057013 +057009 +089017 +015013 +043 +089008 +023007 +067005 +089009 +089020 +025011 +092004 +043 +089017 +092004 +043 +089007 +090006 +092007 +092004 +033006 +013001 +072001 +091005 +058006 +013001 +092004 +043 +089017 +058006 +092004 +043 +092001 +015004 +092003 +043 +092006 +069002 +092003 +042004 +058006 +042004 +51574 092003 +089012 +092004 +042004 +092004 +090013 +51581 089003 +092004 +001014 +092007 +059001 +092004 +093002 +031010 +090006 +092004 +089007 +092004 +033006 +092004 +009003 +033020 +091005 +033006 +092001 +059003 +092006 +042002 +089008 +067002 +015006 +084002 +092004 +092004 +093002 +033012 +092004 +085003 +089020 +092004 +51616 085003 +083001 +060002 +067009 +51621 059001 +059001 +031010 +089007 +092004 +033006 +092004 +089015 +092004 +009003 +033006 +090006 +067006 +089007 +092004 +092003 +033006 +031010 +089007 +092008 +024002 +51643 032001 +090006 +092007 +013001 +070 +092004 +021006 +092004 +009001 +51653 067002 +092004 +060002 +067009 +015004 +084001 +084002 +092004 +093002 +089007 +092008 +093001 +033020 +090006 +053009 +083003 +092004 +057001 +001011 +087002 +069002 +090013 +51677 015006 +084002 +092004 +093002 +034007 +092004 +092004 +093002 +024001 +059003 +059001 +042002 +083003 +093002 +067007 +092004 +051 +089007 +089017 +092004 +015006 +084002 +092004 +051 +51702 015006 +067002 +084002 +092004 +093002 +092004 +093002 +083002 +042003 +092004 +002004 +006019 +091001 +013003 +092004 +037004 +092006 +092004 +010002 +023009 +083003 +093002 +092007 +033015 +090006 +093001 +015006 +084001 +092004 +093002 +084002 +092004 +093002 +015004 +084002 +092004 +089015 +033012 +090006 +015011 +089015 +023008 +092004 +092004 +010002 +089007 +067002 +023007 +089008 +033006 +092004 +093001 +090013 +092004 +51758 033056 +089017 +033056 +024001 +069002 +069002 +031010 +033006 +090013 +092004 +092004 +037004 +087003 +015011 +067002 +023007 +092004 +010002 +092001 +033006 +092004 +092004 +093001 +015004 +092004 +010002 +092003 +023007 +031006 +092004 +009002 +092004 +033006 +092006 +033006 +092004 +092004 +093001 +51797 015004 +51799 067002 +092004 +015011 +092004 +087005 +055002 +092004 +033006 +090006 +092004 +010002 +092004 +023007 +089008 +033014 +092004 +067009 +090003 +092004 +067002 +092006 +023008 +013001 +089008 +033006 +092004 +090006 +067010 +067009 +060003 +013001 +092004 +092004 +023009 +089008 +032002 +092004 +010002 +090006 +092007 +092004 +067009 +067002 +092006 +033006 +092004 +092004 +093001 +092004 +010002 +092003 +023007 +51852 031010 +092004 +089017 +092004 +010001 +092004 +059003 +51860 089017 +092007 +060003 +033056 +090011 +092004 +093001 +015006 +084001 +092004 +093002 +084002 +092004 +093002 +067002 +092007 +013004 +051 +092004 +093001 +089017 +015010 +093001 +084002 +093002 +51886 013003 +083003 +092004 +093002 +083005 +092004 +004001 +007005 +092004 +033009 +033001 +093002 +060002 +007003 +057001 +083003 +092007 +017007 +059001 +092004 +023009 +024001 +023009 +015029 016 023009 058004 084002 085003 +51943 085001 +092004 +009002 +083001 +060002 +089017 +060002 +067009 +013001 +013001 +092004 +023009 +092004 +092004 +093001 +092007 +017007 +024001 +089017 +028001 +090006 +059002 +067005 +067002 +013001 +033006 +092004 +025001 +023008 +013002 +033014 +092004 +092004 +023009 +087003 +009001 +069002 +51981 090006 +51983 016 +092004 +002004 +085002 +092001 +084002 +092004 +007005 +089023 +067007 +51994 015001 +092001 +058006 +067002 +092001 +015011 +033006 +092004 +092004 +093001 +017001 +015024 +092004 +006015 +092003 +089015 +015029 +089015 +067002 +013002 +023008 +092004 +009002 +089015 +015024 +092004 +006015 +092004 +089015 +015029 +52025 013001 +067009 +067007 +092007 +092004 +067009 +089008 +033006 +092004 +093001 +092004 +023008 +067009 +013001 +52040 069002 +071004 +092003 +015024 +092004 +006015 +089023 +52048 033004 +092004 +092004 +013001 +092001 +023008 +092007 +092001 +033006 +015024 +092004 +006015 +092003 +089015 +015029 +033014 +092004 +092004 +013001 +092004 +009002 +092004 +033006 +092003 +015024 +089015 +015029 +089023 +092004 +023008 +069002 +028001 +092004 +013001 +089007 +092004 +093001 +015004 +011001 +085001 +083003 +092004 +080001 +067002 +092007 +027002 +092004 +092004 +093001 +083003 083005 +092004 +007002 +089015 +033006 +092004 +091003 +023008 +013002 +067006 +088038 +089009 +089009 +065003 +092004 +092003 +013004 +015004 +092004 +009002 +089015 +52119 092004 +093001 +090006 +093001 +013001 +092004 +013001 +092004 +023008 +089015 +089007 +092007 +039009 +092004 +093001 +092004 +093001 +089007 +092007 +042002 +067007 +067009 +089015 089023 +092004 +033004 +092004 +092004 +012001 +092001 +067006 +067002 +042004 +089017 092001 +042004 +089008 +089007 +092007 +078002 +025001 +092004 +020004 +092004 +093001 +089007 +069002 +52165 036003 +092004 +067009 +089023 +089017 +012001 +058007 +033006 +092004 +012001 +058005 +092004 +013001 +092004 +012001 +52181 033004 +092004 +093001 +089017 +033006 +092004 +072001 +072001 +033006 +092003 +069002 +074 +092004 +012001 +042002 +090001 +092004 +092004 +52201 024001 +092004 +092004 +012001 +042002 +089007 +071001 +092006 +092007 +042002 +092007 +089017 +092004 +012001 +064 +042002 +089007 +092004 +012001 +025003 +092004 +012001 +089017 +028003 +092004 +059003 +092006 +092008 +042002 +089017 +078001 +092007 +042002 +028003 +092004 +089008 +092003 +025020 +089007 +064 +092004 +012001 +023007 +092004 +023007 +089017 +023007 +061 +089017 +092004 +012001 +092006 +030004 +023007 +089007 +069003 +092004 +012001 +056005 +092004 +089023 +092004 +056005 +059003 +090012 +092004 +012001 +089009 +059003 +087002 +092004 +012001 +064 +087002 +092004 +012001 +092004 +069002 +087002 +092004 +012001 +069002 +087002 +092004 +012001 +092004 +015004 +092004 +072001 +072001 +033006 +092003 +090006 +092004 +092004 +033006 +092001 +024002 036003 +089017 +031009 +092004 +015004 +092001 +090013 +023007 +067005 +089017 +52309 056005 +069002 +52312 089023 +013002 +089021 +092004 +023007 +084002 +092004 +023007 +072001 +072001 +033006 +092003 +090006 +013002 +067001 +089017 +067002 +013001 +52331 092004 +023007 +024002 +092004 +033006 +092004 +012001 +092004 +012001 +089015 +092004 +036003 +023007 +089007 +064 +092004 +012001 +090013 +023007 +083003 +092004 +061 +089017 +092004 +012001 +013004 +023007 +090013 +083003 +092004 +089017 +076 +090012 +092004 +056005 +090011 +089007 +009001 +009001 +013001 +069002 +025020 +092007 +089007 +013004 +067001 +067002 +092006 +059003 +092004 +083003 +092004 +007007 +024002 036003 +092004 +033006 +092004 +089015 +015004 +092004 +092004 +088001 +042002 +013002 +023007 +023007 +092004 +092004 +088015 +042002 +013002 +023007 +056005 +069002 +074 +092001 +042002 +090001 +092001 +092004 +064 +024002 +056005 +089017 +092004 +056005 +092004 +092001 +088002 +013001 +089007 +069002 +025001 +092004 +025001 +092004 +092001 +089023 +092004 +025001 +092004 +015004 +092001 +089010 +092001 +033020 +090006 +092001 +092004 +033020 +092001 +069002 +013001 +072001 +058006 +013003 +092004 +033020 +090006 +092001 +089017 +028001 +090006 +072001 +013001 +092004 +033020 +092006 +033020 +090006 +092001 +092003 +015004 +084002 +093001 +089015 +033020 +092004 +072001 +089023 +092001 +069002 +090003 +009001 +092004 +033020 +057009 +091001 +092007 +033006 +089009 +092003 +021006 +092007 +013001 +092004 +006014 +092004 +014008 +089017 +014006 +089017 +092003 +030004 +025011 +52497 067008 +083003 +092004 +014006 +092004 +52503 092001 +090013 +092004 +033020 +087003 +092004 +093001 +089007 +092004 +042002 +092006 +52515 092001 +092004 +012001 +089009 +068003 +092004 +092008 +092004 +042002 +092006 +090011 +033020 +090006 +092001 +090006 +092004 +012001 +092001 +015004 +089017 +092004 +015004 +092001 +012001 +092007 +033020 +090006 +092001 +069003 +033006 +092004 +067001 +024002 +069003 +058002 +092004 +024001 +089017 +069002 +090013 +092004 +033006 +092004 +089020 +092003 +085003 +089007 +092006 +015004 +092007 +092007 +092003 +069002 +031010 +027004 +092004 +033005 +089007 +092003 +031005 +089012 +092004 +023007 +067005 +090013 +091002 +092007 +013001 +092004 +033020 +090006 +092001 +091002 +069002 +025001 +52592 092001 +089009 +023007 +090013 +087002 +090003 +009001 +069002 +057009 +091001 +028001 +092003 +091005 +092004 +025003 +092004 +012001 +069002 +090013 +089020 +092004 +092001 +015006 +090006 +092004 +058004 +092004 +012001 +092001 +091002 +069002 +031007 +092001 +089010 +058006 +015006 +090006 +092004 +058004 +092004 +057001 +092007 +031007 +092004 +074 +092003 +031010 +087002 +090003 +092005 +057009 +091002 +092004 +087002 +092004 +090003 +092004 +058007 +012001 +069002 +057007 +069002 +031005 +090006 +092001 +033048 +092003 +090005 +092004 +012001 +013003 +092004 +033048 +092003 +093001 +090006 +092006 +092003 +025004 +089007 +089010 +031006 +093001 +071003 +031010 +092001 +089007 +090006 +092001 +092007 +033005 +089023 +089010 +092004 +092007 +033005 +069002 +031006 +092004 +092004 +092001 +033006 +031006 +067002 +092007 +015004 +092004 +093001 +083007 +092004 +001010 +092004 +093002 +092004 +093002 +089017 +015020 +092004 +011001 +059002 +089007 +52714 092004 +033056 +092006 +042002 +090013 +092004 +023009 +089015 +015010 +084002 +092004 +001007 +093001 +089017 +083001 +017002 +089020 +092004 +036004 +092004 +52735 013001 +067002 +092004 +051 +092004 +051 +092004 +093001 +52744 092004 +093001 +024001 +092004 +008002 +089015 +024001 +090006 +059002 +011001 +015006 +084002 +092004 +033006 +090013 +093001 +084001 +057015 +005001 +089009 +023001 +092007 +089023 +092007 +033006 +027004 +092004 +089007 +092008 +028001 +092004 +042002 +067002 +033014 +092004 +092004 +093001 +060002 +006011 +005001 +069002 +059005 +092004 +089009 +059003 +059002 +092004 +057009 +033006 +092004 +092004 +063004 +092004 +036004 +092004 +093001 +092004 +010003 +093001 +093001 +085001 +009004 +083001 +092006 +057001 +060002 +005001 +003004 +089017 +060002 +005001 +089023 +092007 +092004 +013001 +090006 +059001 +033006 +092004 +093001 +013001 +092004 +009001 +017006 +52829 085001 +003003 +059002 +083003 +092004 +080001 +089008 +017006 +092004 +009001 +092004 +060001 +078003 +060002 +52844 018001 +092004 +005001 +092004 +093001 +089015 +033036 +057008 +092004 +017006 +064 +089017 +063004 +092004 +005001 +059002 +025001 +52862 067002 +023001 +033006 +092004 +036004 +092004 +085002 +092004 +059006 +019004 +089009 +069002 +092004 +057007 +089008 +085002 +089015 +059004 +060002 +006016 +019004 +063004 +092004 +060002 +005001 +092004 +003004 +092006 +059006 +092004 +023001 +089008 +092004 +009001 +024001 +092006 +090011 +033056 +033006 +090006 +092007 +013001 +070 +092004 +053009 +092004 +015006 +084002 +092004 +001006 +089008 +028001 +090006 +067002 +015006 +089015 +018001 +092004 +089009 +013001 +037004 +015004 +067002 +084002 +092004 +001007 +093001 +092008 +058007 +52932 067002 +067009 +013004 +015011 +092004 +036004 +092004 +084002 +092004 +001010 +089015 +015008 +084002 +006008 +015006 +083007 +092004 +001010 +084002 +093002 +091001 +014007 +067002 +013004 +089017 +067006 +015006 +084002 +092004 +092004 +093001 +089017 +092004 +001010 +014002 +078001 +014002 +014005 +52971 015022 +078003 +081006 +060002 +060002 +089024 +060002 +024001 +092004 +093001 +015029 +083008 +092004 +001010 +089017 +083005 +092004 +006008 +015001 +52991 025022 +089023 +092004 +033006 +092004 +092001 +013003 +069002 +025022 +089008 +025001 +057009 +092004 +084002 +092004 +006008 +089015 +067002 +015001 +092004 +006008 +083005 +092004 +001009 +084002 +092006 +015001 +092004 +067010 +092004 +011001 +092004 +085001 +083007 +092004 +001010 +024001 +090006 +006008 +058006 +069002 +085001 +083001 +089023 +53036 092004 +089017 +090006 +069002 +015019 +092004 +036004 +092004 +092004 +093001 +083003 +092004 +006008 +089023 +058007 +092004 +036004 +092004 +015004 +53056 006008 +015006 +084001 +093002 +083005 +092004 +080001 +083002 +023001 +092004 +005001 +033036 +092004 +012001 +089008 +53072 024001 +092004 +011001 +090006 +093001 +069002 +085001 +083001 +069003 +092004 +036004 +092004 +015008 +092004 +084002 +092004 +006008 +089015 +015006 +084002 +093002 +027004 +092004 +093001 +091001 +027002 +092004 +083007 +092004 +001010 +033006 +092004 +033017 +067002 +083001 +015001 +033014 +092004 +092004 +093001 +089017 +033006 +072001 +072001 +033006 +092003 +027004 +092001 +069002 +089007 +024001 +033056 +089023 +089007 +023001 +063004 +092004 +005001 +53131 023001 +042004 +069002 +092004 +005001 +092004 +020003 +089023 +092004 +005001 +092004 +013003 +067006 089008 +023007 +067005 +092006 +092004 +009001 +092004 +009001 +092003 +53153 089007 +092007 +092004 +012001 +092004 +012001 +028003 +089008 +033006 +090013 +092004 +092004 +042002 +089009 +090011 +092004 +042002 +092004 +012001 +033014 +093001 +089017 +033006 +092004 +092007 +013001 +092004 +042002 +092004 +012001 +091005 +031010 +090006 +092006 +015004 +092007 +089008 +033006 +092004 +089008 +092004 +033056 +090011 +092003 +089009 +024001 +53200 031006 +092003 +092004 +090011 +092004 +010002 +092002 +092004 +005001 +023001 +083003 +092004 +001013 +064 +53215 033005 +005001 +084001 +092004 +001002 +057008 +092004 +023001 +089008 +033006 +092004 +092004 +093001 +072001 +072001 +033006 +092003 +069002 +093001 +057008 +092003 +092004 +005001 +084001 +092004 +001002 +089023 +092004 +012001 +092001 +057008 +092003 +092004 +005001 +084001 +092004 +001002 +092004 +070 +089007 +092004 +005001 +092004 +012001 +013001 +092004 +015011 +084001 +092004 +001002 +089015 +023007 +090012 +092004 +009001 +089008 +033006 +090013 +092004 +087003 +067005 +057008 +092002 +092004 +005001 +092007 +033006 +092004 +092004 +093001 +092001 +013001 +092004 +005001 +092004 +023007 +092004 +53294 092001 +069002 +069002 +023001 +089017 +092004 +031010 +090006 +092001 +069002 +069002 +023001 +067001 +089023 +033006 +092003 +090006 +089017 +024001 +092001 +089017 +069002 +031010 +059003 +092006 +53320 092001 +092004 +012001 +084002 +092001 +015006 +089015 +092004 +53331 069002 +069002 +015004 +084002 +089007 +015011 +084001 +092004 +001002 +069002 +089009 +042002 +092004 +030004 +092004 +092001 +089023 +092004 +030004 +092004 +015004 +092001 +53354 092007 +013001 +092004 +030004 +092004 +015004 +092001 +091005 +059003 +092006 +53365 092001 +069002 +057007 +063004 +092004 +089023 +023007 +092004 +067002 +092004 +061 + +089007 +092007 +013001 +092004 +030004 +092004 +012001 +092001 +091005 +059003 +092004 +024001 +092004 +012001 +089015 +031010 +090006 +092004 +090013 +023007 +067005 +089017 +023007 +092004 +092001 +067002 +092004 +061 + +089008 +033041 +092004 +093001 +090006 +092004 +089007 +033006 +092001 +013001 +092004 +005001 +092004 +015011 +084001 +092004 +001002 +089015 +033006 +069004 +092007 +013001 +093001 +092004 +010002 +093001 +092006 +092002 +028001 +092004 +010002 +089017 +092004 +010002 +092004 +067002 +033006 +090006 +084001 +092004 +001002 +015011 +033004 +093001 +089017 +033006 +092004 +069002 +033041 +089020 +092005 +092004 +074 +53461 092001 +53464 092004 +012001 +092004 +015004 +092001 +015025 +092004 +092001 +023007 +092004 +067002 +092004 +061 + +53479 033005 +090001 +092004 +033005 053009 +091001 +013001 +059003 +033017 +012001 +059003 +092004 +033015 +090003 +092004 +012001 +089015 +027001 +53498 092001 +069002 +090006 +092004 +012001 +024001 +092004 +089023 +53507 092004 +058010 +084001 +092004 +012001 +092007 +024001 +092004 +012001 +072001 +072001 +033006 +092003 +092004 +031010 +090013 +023007 +067005 +092001 +013001 +092004 +005001 +092004 +023007 +092004 +010002 +092003 +023001 +083003 +092004 +001013 +092004 +005001 +089015 +023007 +092007 +013001 +092004 +005001 +092004 +090003 +092004 +001002 +015011 +089009 +092004 +090003 +092004 +023001 +53557 069002 +023007 +092001 +013001 +092004 +005001 +092004 +023007 +092004 +090003 +092004 +001002 +015011 +089010 +092004 +023001 +090003 +092007 +092004 +005001 +023007 +067005 +092004 +067005 +089017 +091002 +092004 +005001 +092006 +092001 +057008 +092004 +008001 008002 +092001 +013001 +090009 +092004 +092004 +009001 +023007 +089008 +039005 +090008 +092005 +092004 +093001 +033006 +092004 +074 +092007 +092002 +057008 +092004 +008002 +023001 +089008 +033006 +092004 +092004 +093001 +072001 +072001 +033006 +092003 +53623 023001 +092004 +008002 +092004 +009001 +092004 +009001 +089017 +023001 +092004 +092004 +008002 +069002 +090013 +023007 +083003 +092004 +092004 +023001 +092001 +092004 +008002 +089017 +023001 +092001 +092004 +008002 +090013 +023007 +067005 +089017 092001 +023007 +092004 +092004 +061 + +089007 +092004 +008002 +092001 +070 +005001 +013001 +089017 +092004 +008002 +092001 +070 +005001 +013001 +092004 +023001 +092001 +092004 +008002 +089017 +023001 +092001 +092004 +008002 +089020 +092001 +068002 +089017 092001 +089020 +092004 +064 +015004 +092001 +092004 +023007 +012001 +089017 092001 +023007 +090010 +092004 +012001 +089017 +092004 +023001 +092001 +089017 092007 +023007 +090010 +092001 +092007 +013001 +092004 +005001 +092004 +090003 +001002 +015011 +069002 +064 +023001 +092004 +010002 +089015 +023007 +092004 +023001 +092007 +092004 +005001 +023007 +067005 +092004 +067005 +092007 +033006 +083003 +007002 +033017 +083003 +093002 +089008 +059001 +063004 +092004 +036004 +092004 +024002 +033006 +088017 +013001 +092004 +033006 +092007 +092004 +074 +092004 +031007 032001 +089023 +092004 +093001 +028001 +090013 +092004 +090006 +033041 +090006 +092007 +092004 +036004 +092004 +033006 +092004 +092007 +092003 +025016 031008 +53775 089010 +024001 +092004 +009001 +092004 +009001 +015010 +083002 +085001 +092004 +067002 +092004 +012001 +013001 +092004 +023007 +092004 +026 +069002 +035001 +092004 +092004 +033006 +092006 +092001 +033006 +092003 +012001 +013001 +089017 +023007 +013001 +089023 +013003 +063004 +092003 +092004 +092006 +069002 +031010 +089007 +028001 +067006 +067003 +092004 +093001 +092004 +013001 +092004 +069002 +031010 +089017 +092004 +013001 +092004 +037007 +092004 +089015 +033006 +53836 033006 +092003 +090006 +092004 +074 +53843 092001 +53847 013004 +092004 +090003 +092004 +012001 +067006 089007 +092007 +059001 +092004 +036004 +092004 +036004 +53860 092004 +083006 +089015 +067006 +089020 +092004 +015029 +089008 +033006 +092004 +093001 +092004 +060002 +069005 +089017 +092003 +025001 +015004 +033014 +092004 +093001 +093001 +012001 +084002 +092004 +015004 +033006 +023007 +067005 +057001 +089017 +092002 +031010 +089017 +028001 +090006 +092003 +013001 +092004 +088003 +092004 +012001 +033004 +092004 +092004 +093001 +069004 +092001 +092003 +092004 +060002 +030006 +091002 +063004 +092003 +060002 +012001 088015 +013001 +53919 033006 +092004 +093001 +093001 +093001 +089007 +092007 +067002 +037007 +092004 +092004 +063004 +092004 +060002 +091001 +067002 +092007 +015029 +092004 +093001 +083003 +092004 +093002 +089007 +069002 +025001 +083003 +092004 +093002 +015029 +089007 +068005 +092004 +020004 +092004 +093001 +53956 013001 +067002 +092004 +051 +092004 +093001 +092004 +051 +53965 033006 +090013 +092004 +092004 +010003 +092004 +015001 +084001 +089015 +015001 +084002 +092004 +093002 +089009 +089017 +092004 +036004 +092003 +024001 +092004 +042002 +092003 +092006 +090011 +089007 +092004 +092004 +028005 +028005 +042002 +53996 025001 +092008 +028003 +54000 013001 +089010 +092007 +042002 +028003 +092003 +092004 +009001 +089007 +069003 +092004 +010003 +092004 +031009 +090006 +092004 +089008 +033006 +092004 +092004 +093001 +092004 +022007 +092004 +092001 +067006 +085001 +089023 +092004 +022007 +092004 +092003 +067005 +013001 +077 +069002 +074 +092004 +009001 +088026 +092003 +089023 +092001 +088026 +089007 +092001 +033020 +089004 090006 +092004 +090006 +092004 +042002 +092004 +088015 +013001 +092003 +015010 +084002 +092004 +051 +092001 +54062 015010 +084002 +092004 +051 +092007 +089007 +092004 +092001 +022007 +067006 +013004 +089015 +092007 +033006 +54077 085003 +083003 +092004 +093002 +089023 +067002 +015010 +092004 +010003 +092004 +084002 +092004 +051 +067002 +089017 +092004 +015010 +069002 +028004 +089023 +064 +028005 +028005 +54101 092004 +093001 +027004 +092004 +067007 +092004 +051 +089017 +033006 +083002 +085001 +092007 +089017 +033041 +090006 +092004 +013004 +059002 +083003 +092004 +011001 +089023 +092004 +033006 +090006 +088001 +013001 +089023 +058006 +033006 +069002 +089023 +031002 +092004 +011001 +089023 +092004 +54139 033006 +090006 +092004 +089007 +092004 +025022 +092004 +093001 +54148 067002 +092004 +051 +067007 +015010 +093001 +084002 +092004 +007002 +089015 +033017 +089008 +025020 +092004 +093001 +033006 +092004 +092007 +027001 +028001 +069002 +027001 +089008 +033014 +092004 +093001 +089017 +033006 +092004 +092001 +033017 +069002 +013001 +092001 +089023 +092004 +015004 +092001 +089010 +092004 +030004 +092004 +025001 +092004 +090011 +028001 +090006 +092004 +033017 +089010 +090003 +092004 +012001 +013001 +089024 +092001 +090003 +092001 +033006 +092004 +090003 +092004 +033006 +092004 +087002 +092004 +057001 +013001 +089023 +092004 +013001 +092004 +087002 +092004 +015004 +092004 +092007 +088005 +013001 +089017 +088002 +013001 +092004 +069002 +013003 +069004 +093001 +54236 092003 +092004 +033005 +091002 +092004 +063004 +092003 +090011 +092004 +033005 +092004 +092001 +020004 +068005 +033014 +092004 +011001 +012001 +090013 +092004 +092003 +020004 +025001 +033014 +093001 +089017 +033006 +092004 +060002 +042002 +090011 +54268 059003 +025020 +54272 093001 +54274 092003 +092004 +053006 +090006 +069002 +090003 +092004 +093001 +058010 +089023 +090003 +092004 +010002 +54288 067007 +067009 +053006 +009002 +089007 +053006 +090013 +009002 +067007 +067009 +089009 +069002 +036003 +092004 +033005 +093001 +092001 +088024 +089007 +059003 +009002 +023008 +013001 +067007 +067009 +069002 +056005 +089005 +030001 +089023 +092004 +088002 +030007 +54322 089008 +033006 +092004 +063004 +092004 +093002 +069004 +092007 +013001 +092006 +020004 +068005 +091002 +091003 +54337 033006 +091002 +092004 +092004 +033006 +54344 070 +028001 +092004 +037004 +090006 +092007 +013001 +092004 +053009 +089023 +092007 +028001 +084001 +085001 +089023 +092004 +053009 +067002 +015006 +092004 +028001 +084001 +085001 +089008 +033006 +083003 +092004 +007002 +033017 +092004 +093001 +089017 +033006 +089017 092001 +028001 +089017 +028001 +084001 +085001 +089017 +090004 +092001 +069002 +015006 +089023 +013001 +072001 +092004 +015004 +092001 +092006 +092003 +069002 +028001 +092001 +028001 +092004 +089007 +090003 +092004 +058010 +089017 092007 +092001 +015004 +089008 +068005 +092004 +037006 +54413 092004 +037006 +083008 +092004 +092004 +037006 +089007 +067006 +54422 092004 +067001 +092004 +089023 +063004 +092004 +011001 +059001 +031010 +090006 +092004 +089017 +033006 +092004 +053009 +067002 +015006 +069002 +059001 +033056 +090011 +092006 +092007 +090011 +024002 +092004 +011002 +092004 +011001 +033041 +090006 +092004 +092007 +089015 +015004 +092004 +053009 +089017 +092004 +011002 +035002 +089009 +037006 +092004 +54467 033006 +092004 +093001 +067006 +067005 +067005 +089020 +092003 +085001 +089015 +023007 +084002 +092004 +015004 +092001 +027004 +092001 +091002 +069002 +027002 +089017 +083002 +085001 +092001 +015006 +092003 +069002 +074 +089008 +033006 +092004 +093001 +090013 +092005 +083002 +015002 +092007 +067002 +54506 092002 +069002 +027002 +092004 +069005 +067002 +084002 +092004 +015014 +092004 +011002 +015002 +089015 +033017 +092004 +011002 +092004 +013001 +092004 +033006 +092007 +092006 +033006 +027004 +092001 +54532 069002 +027002 +089017 +083002 +085001 +092001 +015006 +092003 +069002 +074 +54543 067007 +092004 +061 +067009 +092004 +087003 +092004 +051 +017001 +092004 +093001 +089015 +033006 +033006 +089010 +092004 +025002 +54562 092001 +089017 +023001 +092004 +031010 +090006 +092001 +064 +033006 +092004 +033005 +001010 +002004 +023007 +090003 +092004 +026 +092004 +014005 +089023 +092007 +033006 +090006 +092004 +012001 +54588 057009 +067002 +092004 +031010 +090006 +092004 +089007 +067006 +085001 +012001 +089007 +093001 +067006 +087003 +089008 +063004 +092004 +011001 +024002 +092004 +033006 +092007 +033006 +092007 +013001 +070 +092004 +053009 +058006 +033006 +092007 +013001 +092004 +053009 +089023 +092004 +033006 +091001 +069005 +084001 +092004 +093002 +092004 +053009 +015006 +069004 +092004 +033005 +033006 +090006 +089003 +092004 +010002 +093001 +089017 +54644 093002 +092004 +001014 +083002 +085001 +093001 +015006 +092004 +053009 +089008 +039002 +013004 +083003 +092004 +011001 +090010 +092004 +089017 +092004 +063004 +092004 +025001 +037006 +092004 +089023 +092004 +037006 +54672 092004 +092004 +037006 +089008 +015006 +092004 +035002 +084002 +092004 +053009 +089017 +011002 +089015 +033006 +092004 +092007 +54690 069002 +015023 +092004 +033014 +092004 +035002 +067001 +033006 +061 +009002 +54705 089008 +033004 +092004 +092004 +011002 +069005 +089017 +092003 +031008 +069005 +092004 +063004 +092004 +037004 +031009 +090006 +092004 +089024 +063004 +092004 +011002 +089023 +092004 +087004 +092007 +092004 +069002 +032002 +092004 +033005 +033055 +013001 +033006 +090013 +092004 +093001 +092004 +015006 +084002 +092004 +067002 +013001 +092004 +063004 +092004 +069005 +092004 +033005 +092002 +056005 +092004 +009001 +54759 056004 +060003 +090003 +092004 +089017 +028001 +092004 +042002 +033014 +089017 +033006 +092004 +069005 +089017 +092003 +089003 +092004 +093002 +085001 +027004 +089017 +027001 +090006 +089003 +092004 +093002 +053009 +069002 +013003 +091001 +54790 059003 +084002 +092004 +007002 +092004 +089023 +093001 +015004 +084002 +092004 +001007 +092004 +003002 093002 +089015 + +067002 +015006 +084002 +092004 +007002 +089015 +059003 +092004 +011001 +015006 +084002 +092004 +089015 +017002 +033017 +092004 +54822 015023 +092004 +053009 +089017 +092004 +011002 +54830 009003 +54832 088036 +037006 +089015 +085002 +092004 +54838 083003 +033006 +092004 +033017 +092007 +092004 +009003 +54847 088036 +54849 083003 +092004 +033005 +093001 +092002 +033032 +092004 +092007 +54858 089023 +092003 +092004 +033006 +089023 +092007 +033006 +027003 +092004 +089009 +074 +033048 +092004 +089023 +092004 +093001 +084002 +017008 +092004 +008002 +54879 083008 +092004 +002005 +089023 +067007 +068002 +033014 +092004 +54888 033006 +54891 092004 +088038 +092003 +060003 +54896 002005 +090013 +092004 +015026 +089015 +067002 +54904 033005 +083008 +092004 +002005 +089015 +092004 +024002 +54916 015004 +54919 068001 +54921 092004 +067005 +54926 089015 +085004 +058007 +54931 089017 +092004 +009003 +54935 083003 +54937 089015 +092004 +093001 +017008 +54947 033006 +092004 +54951 083002 +085001 +54957 092004 +092003 +056005 +089015 +092004 +033006 +092004 +012001 087003 +089015 +033006 +54968 092004 +093001 +069003 +092001 +092003 +056005 +015004 +54976 067006 +088038 +54979 067002 +092004 +033006 +092004 +093001 +033006 +092001 +013001 +092004 +014006 +092004 +009001 +092004 +036004 +54994 069002 +069002 +041001 +013001 +092004 +088015 +089023 +090013 +092004 +014006 +092004 +023007 +55007 033006 +092004 +092004 +011002 +092003 +090006 +092003 +033020 +092004 +033020 +092003 +069002 +013001 +072001 +033014 +093001 +089017 +033006 +092004 +089011 +092001 +033020 +090006 +092001 +072001 +013001 +092004 +033020 +092001 +089007 +028001 +084001 +015006 +089017 +083002 +015004 +089023 +092003 +069002 +028001 +084001 +015006 +089024 +083002 +015004 +092003 +089005 +092004 +026 +030005 +092001 +069002 +030005 +092004 +089023 +089010 +55064 030005 +092001 +092004 +030007 +092004 +092001 +072001 +013001 +089007 +058007 +069002 +013001 +089023 +092001 +089017 +092004 +015004 +092001 +089017 +55084 083003 +092004 +033005 +092004 +092003 +033005 +090006 +060002 +009001 +092004 +033020 +072001 +013001 +092001 +013001 +092004 +033020 +090006 +092001 +089017 +033020 +090006 +092001 +092004 +015004 +092001 +012001 +089008 +033006 +092004 +083002 +085001 +092004 +010002 +092003 +033014 +093001 +069003 +092001 +028001 +069003 +092004 +012001 +092001 +089010 +092001 +028001 +071003 +55133 092004 +012001 +092001 +028001 +092007 +092004 +033006 +033006 +083003 +092004 +006016 007003 +033017 +083003 +092004 +007002 +091002 +092004 +037006 +092004 +089007 +067006 +55155 092004 +067001 +092004 +55159 033006 +067002 +092004 +092001 +023007 +089015 +027004 +092001 +55168 013001 +092004 +088038 +092003 +023007 +083002 +092001 +015004 +015006 +092003 +069002 +074 +089008 +033006 +092004 +093001 +069005 +020004 +092004 +089007 +033006 +083002 +092001 +023007 +015001 +092003 +069002 +074 +089015 +033006 +092004 +092003 +089003 +092004 +083009 +058010 +092001 +089003 +092004 +083009 +058010 +092003 +089003 +092007 +092004 +041003 +058010 +092001 +069002 +058010 +089003 +092004 +041003 +092007 +089008 +033006 +092003 +090006 +023007 +013001 +092004 +088038 +092003 +089007 +089010 +069002 +031006 +090006 +092001 +013001 +023007 +013001 +092004 +088038 +092003 +089008 +033006 +092004 +092003 +092004 +013001 +033006 +092004 +092004 +093001 +55254 092006 +092004 +068001 +55258 033006 +092003 +031001 +059001 +089007 +092003 +033006 +089017 +056005 +089023 +092004 +015004 +092001 +088005 +013001 +092006 +089017 092001 +024002 +090003 +092004 +092007 +033006 +090013 +092004 +009001 +069002 +032002 +090006 +092004 +012001 +092004 +033006 +089008 +033006 +092004 +093001 +55295 081002 +092004 +009001 +092004 +009001 +067002 +032002 +090006 +092001 +013001 +089017 +090004 +092001 +042002 +092004 +089023 +064 +033017 +092001 +092004 +012001 +092007 +033006 +089017 +092004 +015004 +092001 +089020 +092001 +085001 +069002 +015004 +092001 +058007 +089007 +092001 +092004 +025008 +092004 +042002 +067005 +092007 +092004 +033006 +059001 +031009 +090006 +092004 +089008 +033006 +092004 +093001 +090013 +092004 +031009 +092004 +093001 +089010 +092003 +068002 +090006 +092004 +033006 +092004 +092001 +070 +036004 +092001 +058010 +55365 028001 +092004 +072001 +089015 +092004 +072001 +037010 +092003 +033014 +090013 +092004 +010002 +093001 +058010 +089017 +092004 +087005 +067001 +092004 +092003 +033006 +090006 +087005 +013002 +033014 +092004 +092004 +093001 +072001 +072001 +033006 +092003 +090006 +059003 +092004 +090011 +092004 +088038 +013001 +087005 +092004 +088038 +089023 +092004 +087005 +069002 +085003 +083003 +092004 +010001 +067005 +092004 +067005 +092004 +010002 +085003 +067005 +092004 +067005 +089008 +089010 +092004 +012001 +092003 +037010 +070 +037010 +013001 +028001 +090006 +010002 +093001 +058010 +089023 +068005 +092001 +020004 +089007 +092004 +033006 +092004 +092001 +069002 +015001 +089020 +092003 +092006 +092001 +024001 032002 090013 +089020 +092004 +012001 +033006 +089023 +089017 +092003 +092006 +024002 +090003 +092004 +036001 +042002 +033014 +089017 +033006 +092004 +092004 +010002 +092002 +093001 +013001 +033006 +092004 +092004 +093001 +089010 +010002 +092004 +093001 +058010 +092004 +042002 +092004 +093001 +55490 089023 +067002 +025001 +020004 +092001 +009002 +092006 +092004 +072001 +092003 +033006 +092006 +024002 +090003 +092004 +012001 +092007 +093001 +069002 +090011 +092003 +042002 +092004 +042002 +092004 +036001 +092003 +033006 +092004 +092002 +090003 +088036 +069002 +55524 092004 +012001 +092004 +012001 +057001 +033006 +092004 +092004 +093001 +089010 +092004 +012001 +012001 +092003 +013001 +071003 +025003 +092001 +089007 +092001 +089003 +092004 +012001 +015004 +089017 +015006 085001 +089007 +069003 +090004 +092001 +015006 +089023 +092007 +092001 +015004 +55561 092004 +033006 +092004 +092001 +069002 +032002 +089007 +069002 +074 +032001 +092004 +033006 +092004 +092001 +092003 +089003 +092004 +036001 +092004 +012001 +013001 +55583 092004 +025002 +092004 +036001 +092003 +042002 +025001 +092007 +020004 +013001 +067006 +067003 +089017 +013001 +092004 +072001 +069002 +013001 +089007 +069002 +013001 +072001 +083003 +092004 +067002 +033006 +092004 +033018 +090003 +092004 +057001 +033006 +089007 +033018 +013001 +089017 +092004 +058010 +092004 +089023 +092001 +089007 +092004 +072001 +033006 +069002 +031009 +092001 +092004 +063004 +092003 +033046 +092001 +089004 +088038 +089010 +072001 +033006 +55643 092003 +069002 +031009 +092001 +092004 +058010 +089003 +092004 +012001 +092004 +033006 +092004 +012001 +024002 +55659 092003 +069002 +024002 +089007 +089003 +092004 +012001 +069002 +058010 +033014 +092004 +093001 +089017 +033006 +092004 +069002 +072002 +033006 +092002 +090006 +093002 +058010 +092003 +089017 +012001 +090013 +033014 +093001 +092001 +012001 +069002 +090013 +089023 +087002 +092004 +012001 +092001 +55697 092003 +088016 +092001 +089023 +092001 +069002 +013001 +092004 +087002 +092001 +013003 +092004 +025001 +089017 +056005 +072001 +072001 +033006 +092003 +089010 +092004 +092004 +092001 +033006 +036003 +023007 +069002 +069002 +090013 +067005 +092004 +067005 +033006 +092004 +092004 +093001 +067002 +028001 +090006 +012001 +090013 +093001 +023007 +089015 +092004 +053009 +55744 092003 +033006 +089010 +092004 +092004 +033006 +092001 +036003 +069002 +069002 +090013 +023007 +067005 +092004 +067005 +069005 +092003 +087003 +013001 +092004 +010002 +092002 +093001 +55768 023007 +089017 +092004 +053009 +023007 +092004 +092003 +013001 +033014 +093001 +089010 +092001 +087002 +092001 +092004 +087002 +092001 +092004 +013001 +013001 +092004 +012001 +092001 +092004 +087002 +092001 +092006 +092003 +033006 +090006 +012001 +092002 +013001 +091002 +069002 +027001 +092004 +089023 +092001 +028001 +092004 +089011 +033006 +090006 +069002 +028001 +092004 +013001 +064 +092003 +033018 +089023 +028001 +092004 +089017 +092004 +033006 +092004 +036003 +093001 +092004 +010002 +092003 +025011 +090006 +090013 +092004 +067008 +092004 +092001 +089017 +027001 +089017 +025011 +55843 033006 +092004 +093001 +090013 +092004 +060002 +067009 +067006 +090013 +091002 +093001 +024001 +033006 +092004 +093001 +072001 +072001 +033006 +092003 +067002 +093001 +013003 +092001 +013003 +089008 +015024 +002005 +089009 +015026 +084002 +092004 +089023 +093001 +021003 +089015 +015004 +084001 +092004 +007002 +091001 +015001 +024001 +009002 +024001 +067006 +023003 +089015 +033014 +092004 +092004 +036004 +092004 +033006 +033017 +092004 +088038 +092007 +089024 +092004 +010002 +092004 +089008 +024001 +023003 +033014 +093001 +069003 +092007 +088038 +069003 +092004 +010002 +092004 +089023 +089009 +028003 +092004 +042002 +092004 +012001 +090013 +092004 +071005 +092002 +090011 +092004 +042002 +092004 +015004 +092001 +067007 +067009 +013004 +55937 014007 +55939 092004 +074 +042004 +067007 +083003 +092004 +009001 +085001 +013001 +014006 +092004 +009001 +092007 +033006 +023002 +001006 +089015 +042003 +002005 +089025 +092004 +008003 +089015 +55963 092004 +092004 +002005 +083008 +092004 +008002 +089015 +033006 +092004 +015004 +047002 +083003 +092004 +007005 +092004 +093002 +092006 +033010 +015004 +089008 +015004 +089015 +047002 +089015 +015006 +024001 +089008 +092004 +011003 +089017 +092004 +024001 +092004 +092004 +067002 +090006 +033012 +013001 +033006 +069004 +092007 +013001 +092004 +017002 +089017 +033012 +058006 +033006 +090006 +092007 +013001 +058006 +033006 +069002 +089023 +064 +092004 +013001 +092007 +033006 +090006 +092001 +013001 +089008 +033006 +092004 +089008 +092004 +024001 +092003 +092004 +008002 +033014 +092007 +092004 +009002 +092004 +033009 +093001 +002005 +042003 +089015 +047003 +092001 +092004 +008002 +089015 +033006 +092001 +090006 +015004 +084002 +092004 +093002 +089015 +047002 +089008 +015004 +089015 +047002 +024001 +089015 +033006 +092004 +083002 +085001 +092007 +033006 +069002 +028001 +015023 +092004 +092004 +067001 +024001 +084002 +092004 +011002 +56082 013001 +067009 +067002 +092006 +067009 +092004 +002005 +042003 +092004 +093001 +089017 +024001 +092004 +092004 +008002 +089008 +067002 +033014 +092004 +089017 +092004 +011002 +092004 +024001 +089015 +092004 +033006 +092004 +002005 +085002 +083008 +092001 +092004 +008002 +089015 +047002 +56119 024001 +56121 033006 +063004 +092004 +011002 +092004 +069002 +058010 +090003 +012001 +092007 +092004 +009002 +089007 +092004 +067009 +069002 +036003 +058006 +033006 +092004 +074 +009002 +088038 +064 +033056 +090011 +56148 039002 +013003 +083003 +092004 +089008 +033006 +092004 +024001 +067002 +092004 +092003 +033006 +090006 +092004 +089007 +024001 +092003 +092004 +008002 +56168 092004 +033006 +090006 +053009 +013001 +089023 +069002 +031006 +092004 +093001 +090006 +092004 +090006 +013001 +024001 +089015 +024001 +067006 +56187 033029 +092004 +010002 +092004 +092004 +024001 +089015 +033014 +092004 +033006 +092007 +013001 +092004 +010002 +092003 +092006 +092003 +033006 +090006 +024001 +023003 +089008 +092004 +024001 +067002 +089008 +033014 +092004 +010002 +092004 +089017 +033006 +028001 +090006 +092007 +013001 +092004 +010002 +092002 +089017 +090006 +024001 +023003 +089023 +092004 +067002 +024001 +069002 +028001 +089024 +092004 +024001 +092004 +092004 +008002 +092002 +069002 +028001 +092004 +033014 +067008 +090013 +092004 +090006 +092004 +033006 +092007 +033006 +092004 +010002 +092004 +089007 +025022 +092004 +093001 +089007 +067002 +031003 +092004 +093001 +090006 +089010 +092004 +092004 +033021 +053009 +011002 +013002 +56277 092004 +010002 +092004 +033006 +090006 +067008 +090013 +092004 +056004 +089008 +033029 +092004 +009002 +067002 +060003 +092006 +013001 +024001 +089015 +033006 +092004 +033054 +033037 +092004 +012001 +092002 +028001 +090006 +092007 +092004 +009002 +088038 +013001 +089008 +033004 +092007 +090006 +088038 +013001 +069002 +028001 +060002 +028001 +090006 +024001 +013001 +067002 +024001 +089008 +033006 +092004 +092004 +042002 +092003 +092004 +024001 +092003 +092004 +008002 +033014 +092004 +033006 +092003 +067002 +091002 +069002 +031007 +092004 +067002 +025001 +024002 +069005 +089017 +092003 +025001 +092004 +036004 +013002 +56356 033042 +092004 +56359 033006 +092003 +036004 +092007 +013001 +089023 +092002 +092004 +093001 +036004 +013001 +092002 +028001 +090006 +093001 +033006 +092004 +012001 +089023 +092007 +069002 +028001 +084001 +085001 +033004 +092004 +009002 +089017 +033006 +092004 +091001 +090006 +092007 +092004 +025020 +013001 +090006 +092003 +069002 +028001 +084001 +085001 +091002 +024001 +092001 +092004 +008002 +028001 +090006 +092004 +012001 +088038 +069002 +031007 +089023 +089010 +092004 +053001 +013001 +089017 +092004 +025001 +092004 +042002 +092007 +031007 +067006 +092004 +067006 +069002 +033015 +090006 +024001 +092004 +008002 +024001 +023003 +089010 +069002 +013001 +092007 +090003 +012001 +069002 +074 +042002 +092004 +033004 +089017 +033006 +092004 +013001 +088015 +092003 +023003 +078004 +091002 +092003 +033017 +092002 +56460 015004 +092004 +084002 +033015 +093001 +090006 +015004 +092004 +084002 +56470 027002 +092004 +033006 +092003 +031010 +090006 +092004 +009001 +092004 +009001 +033014 +092007 +089017 +033006 +091001 +092004 +013001 +087003 +089009 +031010 +090006 +092004 +033006 +092004 +092004 +093001 +089017 +024001 +092004 +089017 +092004 +033006 +089020 +092003 +092007 +013001 +56507 092004 +033006 +031010 +012001 +089015 +017005 +092004 +091001 +033006 +092004 +093001 +089009 +056005 +092001 +084002 +092004 +041003 +092007 +015006 +089009 +092004 +069002 +032002 +032002 +089017 +092004 +032002 +032005 +013002 +024002 +092007 +063004 +092004 +011002 +092004 +089020 +092004 +085001 +56546 033006 +092004 +069005 +089017 +092002 +032005 +013001 +033006 +092004 +092004 +093001 +089010 +024001 +013001 +071003 +069002 +090013 +088038 +089023 +067002 +033006 +090006 +032002 +092004 +088038 +092003 +013003 +072001 +072001 +033006 +092003 +092004 +069002 +015008 +084003 +092004 +007003 +084002 +092004 +007004 +092004 +004001 +089023 +015010 +084001 +092007 +057021 +058010 +089017 +057021 +089023 +092004 +015008 +084003 +092004 +007003 +013001 +044 +092004 +004001 +092007 +092004 +046 +079024 +089015 +092004 +004001 +092004 +033006 +092004 +024002 +089015 +092004 +010001 +004001 +033029 +089005 +033009 +089015 +015023 +092004 +067002 +092004 +010001 +059003 +015023 +083006 +092004 +015001 +56636 092004 +004001 +092004 +015017 +089007 +028001 +092004 +033006 +092004 +089023 +011003 +069002 +069002 +015020 +089023 +015004 +089021 +092004 +089007 +069002 +028001 +092004 +011003 +092004 +033006 +092007 +092004 +033003 +033006 +092004 +092004 +093001 +089023 +092007 +069002 +032002 +092004 +058010 +092006 +033006 +092004 +56678 033006 +089017 +092004 +093001 +072001 +072001 +033006 +092003 +090006 +092001 +013001 +092004 +007003 +092004 +011002 +059003 +059001 +015006 +067002 +092001 +057021 +058010 +089017 +057021 +089023 +069002 +031007 +092004 +092004 +011002 +092001 +013001 +092004 +007003 +089010 +090001 +092001 +092004 +015008 +021006 +089015 +015008 +089017 +015004 +089017 +001015 +027002 +092004 +057021 +069002 +015006 +089023 +56731 089009 +057021 +089017 +020004 +089017 +020003 +092001 +015006 +089009 +023007 +090013 +089017 +059006 +090013 +092001 +013001 +092004 +053009 +092004 +088001 +092004 +053009 +092004 +088001 +092004 +023007 +092004 +023007 +090009 +092004 +011002 +092004 +057013 +089017 +069002 +058010 +053009 +092006 +069002 +058010 +092004 +011002 +057001 +024001 +092004 +004001 +015006 +56779 085002 +092004 +011002 +089017 +015004 +56785 092004 +004001 +039010 +092004 +089015 +015014 +089007 +057013 +058010 +56795 069002 +025021 +092004 +090006 +092004 +011002 +092001 +013001 +092004 +053009 +092004 +088001 +089017 +027001 +092004 +092001 +089017 +027001 +092001 +092004 +092001 +064 +027001 +092001 +092004 +012001 +089017 092001 +027001 +092004 +012001 +089017 +092004 +023007 +092001 +023007 +090009 +092004 +011002 +089017 +058006 +011002 +057001 +092006 +069002 +058010 +089003 +092004 +007004 +092007 +089017 092007 +092001 +015023 +071005 +089017 +092004 +033006 +092001 +036003 +56855 063001 +011002 +060002 +053009 +56861 092001 +092004 +012001 +025003 +089007 +092001 +023007 +092004 +023007 +092001 +089009 +067002 +057007 +092004 +092004 +56877 092004 +56879 092001 +089023 +092001 +023007 +092004 +090004 +092001 +030007 +56888 023007 +092004 +089017 +030007 +56893 067002 +057007 +092004 +092007 +092004 +033032 +057009 +090003 +092004 +012001 +092001 +039002 +067002 +091001 +083003 +092004 +093001 +089007 +092004 +033006 +092007 +56915 033006 +059001 +063004 +092004 +012001 +56921 089017 +030001 +092004 +092004 +031007 +058006 +033006 +092007 +092004 +033006 +069002 +013001 +012001 +069005 +012001 +074 +024001 +008002 +024001 +013004 +067002 +092004 +051 +083003 +092004 +093002 +067009 +013004 +089017 +015029 +092004 +093001 +083003 +092004 +007002 +083003 +092004 +007003 +092004 +093001 +089008 +015018 +092004 +092004 +093001 +089015 +033006 +092004 +067006 +067002 +092004 +009001 +092002 +030001 +089010 +092003 +013001 +092004 +053009 +033006 +092002 +56983 033014 +092004 +092004 +093001 +033006 +092003 +56990 069002 +031006 +092004 +042002 +092006 +092001 +042002 +090006 +092004 +033009 +092004 +012001 +092001 +092007 +033020 +090006 +092001 +089023 +092003 +069002 +031006 031010 +089007 +069002 +058010 +063004 +092004 +011002 +092004 +092001 +092004 +011002 +092004 +092001 +092004 +033006 +092001 +036003 +089017 092001 +027001 +092004 +089017 +036004 +092001 +089017 092001 +57035 092004 +023007 +067005 +57039 069002 +069002 +021006 +067005 +092004 +067005 +089017 +069002 +037001 +092004 +092004 +084001 +092004 +037001 +092001 +092004 +012001 +092001 +092006 +057008 +092001 +059003 +087003 +013001 +57064 092004 +074 +037001 +084001 +092004 +037001 +092004 +012001 +092001 +089017 +092004 +012001 +063001 +013001 +015024 +067002 +002005 +092004 +093001 +089009 +020004 +092004 +033014 +092004 +092004 +093001 +059001 +042002 +088001 +028003 +092003 +090003 +092004 +012001 +089007 +092007 +092004 +042002 +092001 +020004 +033014 +092004 +092004 +093001 +089007 +088001 +042002 +069002 +020004 +092003 +089023 +089007 +033042 +57118 089007 +092003 +009001 +013001 +013001 +092003 +012001 +033004 +092004 +092004 +093001 +069004 +57131 033005 +090006 +092004 +033005 +092003 +090006 +092001 +033006 +012001 +013001 +089010 +092007 +033009 +012001 +084002 +092006 +092004 +033019 +092004 +012001 +015001 +089017 +069002 +074 +013003 +092004 +033005 +092006 +092004 +012001 +053006 088003 +089015 089017 +015004 +084002 +092004 +009001 +092003 +033006 +090006 +033042 +089007 +033006 +012001 +092004 +012001 +013001 +089010 +069002 +042002 +092004 +042002 +092004 +012001 +092001 +069002 +031009 +092001 +089023 +089010 +042002 +089011 +092001 +069002 +031009 +092004 +042002 +031009 +089009 +028001 +089015 +028001 +090006 +089020 +092001 +092004 +012001 +089017 092001 +089020 +092004 +012001 +089008 +027004 +092004 +037006 +067002 +57217 015004 +084001 +092004 +037001 +092004 +089015 +015004 +067002 +083007 +092004 +093002 +084002 +092004 +080001 +083002 +085001 +053005 +093001 +092004 +060003 +089015 +57239 083001 +089017 +059001 +015006 +084002 +092004 +089017 +033006 +090006 +089023 +093001 +033056 +092004 +090011 +089023 +059003 +059001 +033006 +093001 +089004 +092007 +072001 +013001 +57263 059001 +031010 +090006 +092004 +083001 +57269 013003 +092004 +023009 +093001 +090003 +093002 +090003 +092004 +001014 +093001 +089017 +093001 +092004 +010003 +092004 +57285 013001 +093001 +092004 +047003 +092004 +012001 +006021 +089017 +079015 +092004 +008002 +092004 +092004 +008002 +092004 +092006 +092004 +010003 +093001 +023009 +089008 +015004 +092004 +010003 +084002 +092004 +033006 +012001 +091003 +092006 +025003 +023009 +089015 +033015 +092004 +093001 +033006 +092007 +092004 +023009 +069002 +013001 +089008 +023007 +089023 +090009 +092004 +087002 +092004 +012001 +089009 +087003 +092004 +012001 +092004 +012001 +089012 +092004 +57344 025003 +092004 +093001 +092004 +093001 +089017 +092004 +010003 +092004 +089017 +092004 +093001 +089008 +067002 +033015 +090006 +023009 +091002 +067002 +085003 +083003 +092006 +085001 +080001 +060002 +067009 +067002 +067002 +092007 +033006 +092004 +036004 +015004 +084002 +092004 +093002 +067002 +033006 +092004 +092004 +036004 +033017 +067002 +068005 +092003 +020004 +092004 +093001 +091002 +067002 +015001 +083001 +033014 +093001 +069004 +060002 +067009 +013003 +092004 +067009 +089010 +092004 +015029 +067007 +092004 +014006 +069002 +015029 +089007 +092004 +014006 +092004 +001006 +092007 +024001 +089023 +089010 +092004 +015029 +067007 +092004 +067009 +015029 +089007 +092004 +014006 +069002 +013001 +089020 +092004 +092007 +033006 +089015 +067002 +092007 +033006 +092004 +093001 +092004 +034001 +092002 +023007 +089023 +015002 +089009 +023005 +092004 +089008 +033006 +092004 +036004 +092004 +012001 +089010 +023005 +023008 +089023 +033006 +092004 +093001 +090006 +092004 +023007 +092004 +089023 +092007 +031005 +090006 +090006 +092004 +023005 +092004 +023005 +033006 +089008 +067002 +033006 +092004 +092004 +093001 +57485 093001 +023007 +089017 +025011 +090009 +092003 +089009 +031010 +090006 +069002 +085001 +083001 +089023 +015004 +084002 +092004 +089008 +033006 +093001 +092004 +033009 +093001 +092004 +036004 +015004 +089017 +092002 +089009 +023007 +089020 +092004 +089008 +015006 +092004 +093001 +027001 +092004 +060002 +067009 +067002 +090013 +083003 +092004 +007007 +57530 085001 +093002 +083005 +092004 +093002 +078003 +084001 +081006 +060002 +089017 +059001 +063004 +092004 +093001 +015006 +084002 +092004 +093001 +089017 +093001 +089009 +025013 +092004 +090006 +092004 +010003 +089008 +067002 +033015 +090006 +093001 +015006 +092004 +093001 +015005 +092004 +089023 +093001 +083003 +092004 +007002 +017002 +089008 +033006 +092004 +093001 +090013 +093001 +012001 +089010 +085001 +083001 +071003 +069002 +023007 +092004 +010003 +092001 +57589 067002 +028001 +090006 +071001 +059001 059002 +033012 +092004 +012001 +057008 +092003 +092004 +012001 +033006 +092004 +092004 +093001 +023007 +092004 +010003 +092003 +033006 +092004 +092004 +093001 +032001 +090006 +023007 +067007 +092004 +023007 +067002 +092004 +061 + +033006 +092004 +092004 +093001 +092001 +013001 +092004 +023007 +089017 +092004 +023007 +092004 +031009 +090006 +092001 +089011 +023007 +023007 +089017 +059003 +092004 +023007 +089017 +031010 +090006 +092001 +069002 +069002 +023007 +067005 +092004 +067005 +031010 +092007 +033006 +092004 +069001 +012001 +092001 +031010 +090006 +092003 +013001 +092004 +053009 +092004 +012001 +092004 +012001 +092004 +084002 +092004 +001006 +015006 +089015 +092007 +033006 +015004 +089015 +033029 +093001 +092004 +010003 +092004 +028005 +033006 +092004 +033017 +085001 +089017 +033029 +092003 +089015 +092007 +067002 +033015 +57700 067005 +089015 +015006 +084002 +092004 +57706 067006 +015006 +092004 +093001 +084002 +092004 +001014 +089023 +085001 +067006 +083003 +092004 +080001 +083002 +015005 +092004 +092004 +093001 +089008 +092004 +093001 +092004 +085001 +089020 +092004 +083003 +092004 +007002 +089017 +025013 +092004 +024001 +092004 +093001 +090006 +067005 +017001 +089015 +015004 +015020 +092004 +031005 +090006 +015004 +084002 +092004 +007007 +089009 +025012 +083001 +57757 092004 +093001 +067002 +015006 +083002 +085001 +093001 +024001 +092004 +017005 +083005 +083001 092004 +092004 +008002 +033006 +092004 +012001 +089010 +085001 +083001 +071003 +069002 +023007 +092001 +092004 +010003 +089008 +093001 +067002 +024001 +092004 +025012 +089017 +092004 +015019 +092004 +093001 +025012 +025003 +092004 +026 +089017 +025021 +092004 +089015 +033006 +083002 +085002 +092004 +033006 +092004 +012001 087003 +015006 +089017 +024001 +025012 +092004 +093001 +089008 +033006 +092004 +093001 +091003 +092004 +025003 +092004 +089023 +092004 +063004 +092004 +033006 +069004 +074 +092007 +092004 +024001 +092004 +008002 +092004 +024001 +013001 +090006 +089017 +092007 +069002 +023007 +089008 +093001 +067002 +025003 +090013 +092004 +015006 +084002 +092004 +007007 +57854 013001 +001008 +089017 + +085001 +083008 +092004 +033006 +092004 +093001 +015024 +092004 + +033006 +092004 +092004 +010003 +092004 +023007 +093001 +012001 +067002 +079009 +089007 +067009 +013004 +033006 +092004 +092004 +093001 +069004 +033006 +092003 +090006 +089010 +031010 +024001 +092004 +079005 +092004 +012001 +089008 +015024 +092004 + +089015 +092004 +093001 +015024 +092004 +008002 +084002 +089015 +033006 +012001 +033036 +092003 +089007 +031007 +092001 +089017 +092001 +028001 +090006 +067005 +092001 +031007 +089023 +090009 +092004 +011001 +092004 +017001 +033006 +089009 +031006 +090006 +092003 +092001 +015004 +089015 +092007 +033006 +033006 +078001 +033006 +093001 +084002 +083004 +015004 +092004 +023007 +018002 +092004 +008002 +089017 +092004 +008002 +006017 +089017 +092004 +008002 +092004 +006017 +018002 +033006 +092004 +092004 +093001 +018002 +092004 +089017 +013004 +092004 +015004 +089008 +059001 +063004 +092004 +093001 +092004 +015006 +084002 +092004 +093001 +089015 +024001 +092006 +042002 +031009 +090006 +092004 +089023 +092004 +063004 +092004 +015004 +084002 +092004 +011002 +089015 +033006 +092004 +092006 +042002 +093001 +089008 +015013 +092004 +053009 +089017 +092004 +011002 +011003 +089015 +033006 +092004 +042002 +089007 +092007 +092004 +009002 +059001 +033056 +090011 +089010 +013004 +092004 +061 +059003 +031009 +090006 +092004 +089015 +015006 +092004 +093002 +089015 +020003 +092002 +089017 +092004 +080001 +089017 +092004 +011003 +089023 +092004 +092004 +063004 +092004 +093001 +053009 +013001 +092004 +067009 +092007 +033006 +092004 +092003 +069002 +032001 +092004 +069003 +030001 +090006 +065005 +092003 +091005 +060002 +009001 +023007 +090009 +092004 +011003 +58070 069002 +063001 +092004 +011003 +020003 +58076 092007 +090003 +092004 +069002 +033006 +089023 +053009 +013001 +092004 +067009 +092007 +033053 +090006 +067002 +093001 +023007 +090009 +092004 +011003 +089017 +069002 +090009 +092004 +011003 +58101 089023 +089009 +089017 +092004 +058004 +092004 +012001 +092004 +015014 +015013 +013002 +063001 +089008 +067006 +092007 +092004 +067009 +030004 +090006 +020004 +092004 +089008 +092004 +093001 +067006 +58127 015029 +083003 +092004 +093001 +089023 +015004 +084001 +084002 +092004 +001013 +083005 +092004 +001013 +084002 +093002 +033009 +001014 + +085003 +089020 +092004 +036004 +58150 013004 +067002 +092004 +051 +092004 +093001 +58157 015010 +059001 +084002 +093002 +084001 +092004 +001011 +067002 +092004 +051 +089009 +053003 +092004 +089008 +027004 +092004 +093001 +089017 +033006 +089020 +092005 +083003 +092004 +007002 +085001 +092004 +031005 +092003 +090006 +069004 +58188 015006 +084002 +092004 +051 +58193 090012 +092004 +053009 +089017 +092004 +011002 +033032 +090006 +089010 +092004 +028001 +083002 +085001 +033015 +089009 +037006 +092004 +089008 +092004 +093001 +067002 +060002 +067009 +092004 +051 +015001 +084002 +093002 +083002 +085001 +093001 +092006 +023007 +089021 +023007 +093001 +089008 +042003 +092004 +023001 +083001 +089017 +092004 +093001 +046 +089017 +092004 +093001 +013001 +092004 +063004 +092004 +017006 +089020 +092004 +089008 +092004 +093001 +018001 +086002 +006021 +006021 +079020 +065001 +047003 +092004 +008002 +092004 +093001 +089015 +079015 +092004 +008002 +092004 +092004 +008002 +092004 +089015 +092004 +007002 +059004 +089025 +092004 +079009 +092004 +006021 +089023 +033006 +093001 +092004 +093001 +092004 +092004 +036004 +092004 +092004 +067002 +092004 +037007 +58294 092007 +092004 +006021 +069002 +057015 +060002 +006011 +089015 +057008 +057006 +089023 +033006 +092007 +069002 +089007 +090009 +092004 +057006 +030002 +092004 +089023 +089007 +057021 +058010 +089017 +092004 +006016 +057001 +092004 +085002 +015024 +089008 +033006 +092004 +093001 +013004 +092004 +089009 +067005 +092004 +067009 +092004 +052 +092001 +013001 +092004 +089007 +092004 +057006 +067005 +58345 083003 +092004 +089023 +092001 +069002 +067005 +58353 027001 +092004 +011001 +059002 +089003 +092004 +093001 +090006 +083001 +085001 +58364 015006 +069002 +090010 +092004 +093001 +058007 +089023 +089009 +089017 +024001 +092004 +093001 +092006 +023007 +089021 +023007 +089023 +030004 +092004 +053009 +090006 +089017 +092004 +093001 +020004 +089007 +059001 +092004 +093001 +090010 +092004 +015004 +089017 +031009 +090006 +092004 +093001 +092004 +067010 +092004 +011001 +078001 +092004 +015006 +084002 +092004 +051 +033015 +090006 +015006 +093001 +084002 +093002 +018001 +092004 +003005 +092004 +003002 +089015 +015004 +089009 +015005 +092004 +089017 +033006 +033037 +033055 +092004 +015006 +090006 +033009 +012001 +089017 +092004 +037004 +092004 +093001 +089017 +027002 +004001 +092004 +093001 +017002 +083008 +092004 +064 +58451 033005 +069002 +025022 +011003 +093002 +091003 +092004 +037004 +092003 +015006 +017002 +083008 +004001 +004001 +092007 +069002 +032002 +092004 +092004 +036004 +092004 +060003 +089023 +58475 087003 +093001 +067002 +029002 +090006 +092007 +58482 033005 +090006 +092004 +089017 +092007 +041001 +092004 +58490 033020 +092004 +011001 +092004 +085001 +089020 +092004 +58498 092004 +093001 +033029 +084001 +092004 +007007 +58505 023007 +092004 +089021 +023007 +58511 089017 +015005 +092004 +092004 +011001 +089007 +033015 +092007 +092004 +090011 +092004 +033056 +089008 +092004 +011002 +033006 +090013 +092005 +032002 +090006 +069002 +068003 +092004 +091003 +092004 +009001 +036004 +092004 +015004 +58541 085001 +011002 +092004 +063004 +092004 +015010 +089009 +053007 +067007 083005 +092004 +051 +089008 +092007 +015005 +093001 +092004 +084001 +093002 +092004 +093002 +089017 +033012 +092004 +033006 +087003 +025001 +092004 +093001 +034006 +015001 +092004 +093001 +089015 +033006 +092004 +093001 +015001 +093001 +089017 +093001 +089015 +033006 +092004 +093001 +58586 092004 +093001 +033004 +092004 +033006 +015006 +092004 +067001 +090006 +087003 +092004 +009001 +092004 +009001 +072001 +072001 +033006 +092003 +58606 092004 +003004 +092004 +003003 +015012 +084002 +092004 +002005 +023007 +092004 +058007 +085003 +089023 +089010 +023007 +059002 +003004 023012 +023012 +092004 +025003 +092004 +023007 +092004 +057007 +092004 +58632 092004 +088026 +092004 +023007 +092004 +013001 083003 +092004 +001006 +092007 +013002 +023007 +067005 +037009 +092004 +089010 +092001 +092004 +035002 +092001 +036004 +089017 +083002 +085001 +092001 +083001 +089017 +092004 +035002 +092004 +092001 +085001 +089010 +092004 +092001 +035002 +087002 +092004 +092004 +012001 +067002 +092004 +026 +092001 +025021 +58677 092004 +033006 +012001 +021005 +092001 +068004 +092004 +067001 +092007 +089023 +090010 +092007 +015006 +067008 +092004 +067001 +092007 +012001 +087003 +092003 +092004 +033009 +089008 +015006 +033006 +090003 +092004 +001002 +089017 +087003 +089017 +067002 +087003 +089008 +092004 +011001 +092004 +085001 +089017 +024002 +033006 +014004 +013004 +058006 +033006 +012001 +092004 +033006 +033004 +093001 +089017 +033006 +069002 +090009 +092001 +092004 +033006 +092007 +013004 +089023 +090009 +092003 +067002 +013004 +056005 +092004 +041003 +092007 +067002 +092004 +037004 +092004 +041003 +092007 +015004 +084002 +067002 +092001 +081002 +084001 +092004 +001006 +059003 +015025 +084002 +092001 +58764 092007 +033006 +033010 +058004 +023007 +067002 +023007 +58772 033004 +092004 +092004 +011001 +092002 +032001 +090003 +092004 +033005 +090006 +092004 +053009 +013003 +067005 +092004 +067005 +58789 092004 +033006 +092003 +090006 +071005 +081002 +092004 +009001 +092004 +009001 +092004 +013001 +092007 +092004 +009001 +092004 +009001 +089008 +033006 +092004 +092004 +093001 +067006 +059002 +067005 +092004 +014006 +083003 +092003 +085001 +041001 +067007 +092004 +014006 +090013 +089009 +069002 +088015 +092003 +037001 +58830 092004 +015029 +013001 +092004 +014007 +069002 +028001 +083002 +015001 +067007 +092004 +014006 +090013 +031009 +090006 +092004 +014006 +089009 +011002 +011002 +013002 +092007 +033006 +093001 +089015 +015004 +021003 +089021 +092004 +089023 +092004 +059001 +033056 +090011 +083006 +092004 +069002 +031009 +090006 +092004 +089009 +092004 +033006 +093001 +092004 +053009 +013004 +092006 +033006 +012001 +092004 +031006 +092004 +024002 +092002 +089017 +092004 +076 +012001 +092004 +028003 +58893 069002 +074 +031009 +089007 +089017 +033006 +093001 +032004 +092004 +092004 +032004 +089017 +027005 +092004 +092004 +58909 089008 089009 +069002 +024001 +092004 +032004 +089017 +032001 +092004 +026 +089015 +031008 +089015 +013002 +092004 +092007 +033006 +093001 +089007 +024001 +092004 +079005 +092004 +089015 +033006 +089004 090006 +092004 +089023 +089011 +58938 063004 +092004 +037004 +059001 +031009 +090006 +092004 +089023 +090010 +092004 +011002 +069002 +033021 +089009 +069002 +011002 +013002 +089007 +025010 +092004 +033037 +092004 +009001 +078002 +064 +092004 +033037 +092004 +012001 +089023 +093001 +033006 +089017 +033006 +092004 +031009 +090006 +092001 +069002 +031009 +090006 +092001 +089023 +090006 +092004 +015004 +092001 +089017 +092004 +024001 +092001 +024001 +092004 +015004 +092001 +092001 +014006 +084002 +092004 +001006 +015006 +089009 +059003 +092004 +031009 +090006 +092001 +013001 +092004 +088015 +069002 +068002 +59011 089010 +092004 +024002 +092001 +092004 +033006 +59018 069002 +036003 +092001 +069002 +056005 +092004 +089007 +069002 +015006 +089009 +056005 +092004 +009001 +089023 +089009 +021006 +092004 +009001 +092004 +031009 +092001 +59040 069002 +031007 +092004 +033006 +092001 +090013 +092004 +056005 +092004 +092004 +033019 +092006 +033006 +092007 +056005 +092004 +067002 +092004 +061 + +089007 +092001 +090003 +092001 +069002 +033006 +089023 +092004 +015004 +092001 +012001 +092008 +092001 +033032 +090012 +092004 +033006 +089017 +092004 +033006 +089017 +028001 +090006 +092004 +033032 +092004 +023007 +067005 +013001 +089008 +092006 +092001 +033006 +064 +033006 +092001 +092004 +012001 +061 +033006 +59101 067002 +092004 +051 +092004 +051 +092004 +093001 +028001 +090006 +59111 092004 +092004 +067001 +090006 +015001 +084001 +092004 +001006 +092007 +084002 +092004 +012001 +025003 +092004 +010001 +092004 +083003 +092004 +001006 +067006 +078004 +025003 +092004 +089017 +023001 +013004 +092004 +012001 +067002 +030001 +59142 092004 +030001 +089009 +037007 +092004 +093001 +093001 +093001 +028001 +090006 +059003 +59154 092004 +092004 +012001 +59158 092004 +076 +089017 +090006 +090003 +012001 +015004 +089017 +084002 +092004 +012001 +023007 +017001 +084001 +092004 +023001 +089015 +049 +092004 +006017 +089015 +018001 +006017 +049 +092004 +067002 +047001 +002004 +084002 +092004 +006016 +089015 +068001 +047002 +092004 +008002 +092004 +036004 +089015 +079015 +092004 +006017 +092006 +59202 049 +089008 +015006 +084002 +093001 +093001 +033006 +092004 +012001 +092003 +047002 +092001 +092004 +008002 +033014 +093001 +089017 +033006 +092004 +092006 +092001 +042002 +092003 +069002 +032001 +067002 +089023 +032002 +067002 +092007 +033006 +092004 +093001 +069002 +069002 +047002 +092001 +092004 +008002 +067005 +092004 +067005 +033014 +093001 +092004 +59249 047002 +092003 +069002 +59253 063004 +59255 092001 +033006 +092004 +093001 +093001 +012001 +069002 +092004 +008002 +092001 +59266 089023 +089017 +092004 +008002 +089017 +092004 +008002 +033006 +092004 +093001 +092004 +047002 +069002 +090013 +057005 +089023 +59283 092004 +008002 +047002 +089023 +013001 +079010 +078004 +089017 +092003 +079010 +013001 +089023 +069002 +059003 +089007 +028001 +092004 +037007 +092004 +59304 033006 +090006 +069002 +059003 +079010 +013001 +089008 +59312 047002 +092004 +008002 +092004 +089015 +049 +092004 +006017 +092004 +089015 +017006 +067002 +033006 +092004 +032002 +092004 +041001 +092003 +092003 +033009 +092001 +092004 +033017 +089017 +092004 +012001 +089017 +072002 +033006 +089007 +013001 +089008 +089007 +092001 +092004 +012001 +089017 +092004 +033017 +047002 088007 +092003 +092004 +008002 088007 +089017 +092003 +071004 +047002 088007 +092005 +092004 +008002 088007 +089007 +058009 +090014 +092003 +089009 +064 +092001 +041001 +092003 +089017 +092003 +042002 +072001 +072001 +033006 +092003 +069002 +013001 +087005 +087003 +092004 +057001 +092004 +069003 +033015 +087003 +092004 +015004 +092004 +089010 +092007 +028001 032001 +025011 +013001 +089010 +042002 +092004 +069002 +090006 +059003 +092003 +033006 +092001 +028001 +092004 +030006 +089023 +089009 +092004 +033005 +013004 +092004 +023001 +092001 +092004 +005001 +039001 +090008 +092001 +092004 +008002 039001 +092004 +067006 +067002 +033006 +092003 +067002 +092004 +013004 +089009 +59434 013004 +090006 +092001 +013001 +072001 +072001 +033006 +092003 +092004 +057009 +071001 +092004 +015004 +092001 +057009 +089017 +092004 +092001 +057009 +057009 +092004 +015004 +092001 +092007 +033006 +093001 +025021 +092004 +026 +089015 +033020 +089017 +033006 +072001 +072001 +033006 +092003 +090006 +060002 +063004 +092003 +037007 +092001 +024001 +090013 +092005 +092004 +036004 +032001 +090006 +092004 +033006 +085001 +017006 +092004 +063004 +092004 +036004 +092004 +59494 092004 +008002 +092004 +093001 +092006 +025003 +092004 +093001 +089008 +033056 +092007 +093001 +093001 +59511 092004 +59513 090006 +092006 +033006 +092007 +017006 +061 +59520 092004 +008002 +092004 +093001 +033006 +092004 +012001 +092004 +013001 +59530 033014 +092004 +093001 +013001 +092007 +092006 +092001 +047002 +092004 +005001 +089015 +057008 +092004 +089008 +047002 +092004 +005001 +018001 +089015 +057008 +093001 +093001 +093001 +089015 +067002 +092004 +005001 +067002 +015008 +084002 +092007 +092004 +012001 093001 +089008 +033006 +092004 +093001 +092006 +042002 +042002 +067005 +089023 +032002 +092004 +092004 +017006 +092007 +089009 +092004 +033006 +092004 +089007 +092004 +031005 +089007 +092004 +006016 +057001 +093001 +090006 +033006 +092004 +093001 +057015 +092006 +057005 +090013 +090006 +092004 +051 +089024 +089009 090006 +092004 +057006 +092004 +057008 +089008 +057009 +092004 +005001 +092007 +015004 +067002 +089017 +013001 +014007 067009 +089008 +59618 015004 +033006 +093001 +067002 +087003 +092004 +009001 +092004 +009001 +089017 +092004 +012001 +087003 +089020 090001 +092004 +089007 +092004 +012001 +087003 +089020 090001 +092004 +089017 +092004 +012001 +087003 +092004 +089020 090001 +092008 +089017 +067002 +087003 +092004 +009005 +067006 +067005 +089020 +092003 +085001 +025001 027004 +092001 +089017 +064 +033006 +092004 +093001 +090006 +083002 +092001 +015004 +015006 +092003 +069002 +074 +089017 +092003 +033006 +067002 +033032 +028003 +59678 092003 +090006 +025003 +092005 +064 +025003 +092003 +090006 +089017 +092003 +025003 +092005 +089012 +092007 +028001 +059003 +090006 +092001 +036004 +058010 +089010 +025003 +59701 090013 +092005 +033006 +092004 +093001 +093001 +012001 +083002 +015004 +033014 +093001 +083002 +015004 +092001 +067002 +015017 +069002 +074 +089023 +015017 036004 +067002 +033006 +092004 +093001 +012001 +59728 069002 +074 +092003 +015017 +067002 +092004 +023007 +092001 +090009 +092003 +023007 +033014 +093001 +092004 +023007 +092003 +090009 +092001 +023007 +072001 +072001 +033006 +092003 +069002 +069002 +004002 +014009 +067006 +59757 033022 +092001 +060005 +069002 +025021 +092003 +092004 +026 +031009 +090006 +092004 +012001 +089017 +090006 +092001 +031009 +083003 +092004 +007002 +092004 +012001 +092001 +085005 +059001 +085001 +59785 071003 +033006 +092003 +089007 +015004 +077 +080001 +092003 +089017 +089010 +015004 +089015 +077 +080001 +092003 +067002 +015006 +089015 +034007 +092003 +090013 +092001 +089009 +083002 +085001 +092001 +089017 +092003 +085001 +091001 +083002 +092001 +023007 +028001 +092004 +041001 +033006 +092004 +093001 +012001 +069002 +028001 +083002 +015004 +092004 +59831 092004 +001016 +033006 +092004 +093001 +092001 +013001 +092004 +041001 +089017 +092004 +072001 +089017 +092004 +023007 +092004 +015006 +084002 +092004 +012001 +089023 +59853 090001 +092001 +089010 +59857 092001 +59859 089017 +092004 +012001 +092001 +59864 067006 +067002 +027001 +092004 +089017 +090013 +033006 +092004 +093001 +012001 +028003 +092002 +092004 +012001 +089015 +059005 +092002 +033006 +092004 +092004 +093001 +59887 089020 +092003 +085001 +091002 +069002 +027001 +092001 +093001 +092004 +090013 +092001 +090013 +092004 +012001 +092004 +092003 +033006 +028003 +092002 +092004 +012001 +069002 +031006 +090006 +092001 +089020 +092004 +012001 +089017 +092004 +012001 +089020 +092001 +013001 +092004 +033006 +092006 +092001 +033006 +092003 +090004 +092001 +069002 +033006 +089023 +092004 +012001 +089020 +092001 +068002 +090011 +092004 +042002 +092004 +031006 +092001 +090006 +092001 +089020 +092004 +012001 +089017 +092004 +012001 +089020 +092001 +59956 089007 +092004 +042002 +092008 +031006 +072001 +072001 +033006 +092003 +092004 +031009 +090006 +092001 +092004 +042002 +092006 +092001 +090011 +089017 092007 +090011 +59977 078001 +092007 +090011 +089007 +092001 +084002 +092004 +012001 +015004 +59987 092004 +071001 +092006 +033012 +090006 +092004 +033009 +092001 +092007 +042002 +089009 +087003 +092004 +012001 +090001 +092004 +012001 +089010 +092004 +033012 +092001 +090006 +092004 +033009 +092001 +092001 +042002 +089010 +025003 +092001 +092004 +033032 +092004 +092001 +036003 +092001 +033012 +092004 +012001 +60027 058006 +012001 +037005 +092003 +089009 +013001 +089020 +092003 +067005 +092004 +067005 +092004 +012001 +092004 +072001 +092006 +057009 +092004 +009001 +069002 +074 +089007 +069002 +032002 +092004 +069003 +027001 +092003 +027001 +092004 +089007 +089020 +092003 +085003 +089017 +089020 +092003 +085001 +069002 +015004 +092003 +034001 +015006 +084002 +092003 +089015 +067006 +067005 +092004 +009001 +092001 +067006 +024001 +089023 +092003 +024001 +092001 +089007 +092001 +023007 +089017 +092003 +023007 +067002 +092007 +092004 +067009 +028001 +092003 +090006 +092001 +089020 +092004 +012001 +092001 +089017 +092003 +089020 +092001 +089017 092001 +089020 +092003 +092004 +090013 +092004 +033032 +092001 +089017 +036003 +092004 +092007 +013001 +092004 +025003 +092001 +089017 +092004 +025003 +092001 +025003 +090001 +092004 +012001 +092001 +089017 092001 +025003 +092004 +089017 +028003 +092004 +092001 +033006 +092004 +093001 +069002 +092004 +093001 +012001 +091002 +092004 +013004 +090006 +067002 +092002 +028003 +092003 +60154 069002 +092004 +009001 +033014 +093001 +089017 +033006 +092004 +089010 +092004 +025003 +092001 +092004 +033006 +092001 +036003 +089017 +092004 +012001 +092001 +025003 +092004 +089017 +084002 +092004 +015006 +089015 +085005 +089020 +092004 +090011 +092004 +069002 +025003 +092001 +092004 +033006 +092001 +069002 +036003 +089017 +092004 +033019 +092006 +024002 036003 +069002 +013001 +092001 +089023 +092004 +015004 +092001 +012001 +092007 +033006 +092003 +089020 +092003 +085003 +089023 +092004 +012001 +092004 +012001 +092004 +088003 +092006 +015004 +092004 +012001 +090006 +092004 +033009 +092001 +092007 +092003 +033017 +059003 +089017 +029002 +092003 +059003 +092006 +033006 +092003 +092001 +025021 +085003 +092003 +025021 +092004 +092001 +60247 092003 +069002 +064 +092004 +041003 +60253 092001 +60255 092003 +069002 +025021 +092003 +092004 +026 +069003 +025022 +024002 +090006 +092001 +033006 +092003 +015004 +089015 +015006 +084002 +092003 +089010 +025003 +092001 +071003 +025011 +089007 +015004 +084002 +092004 +012001 +089007 +092004 +012001 +087003 +092001 +013001 +089017 +067002 +033006 +092003 +067002 +013004 +089009 +60297 013004 +031006 +067006 +059001 +033006 +089020 090013 +092003 +089007 +015006 +092004 +092004 +041003 +037004 +60311 090006 +092001 +069002 +057001 +092004 +089023 +089009 +028001 +092004 +009001 +090006 +025003 +092004 +012001 +089017 +064 +033032 +092001 +092004 +012001 +60332 042002 +017001 +015004 +084001 +092001 +013001 +092004 +003003 +092004 +070 +089017 +092004 +012001 +092001 +092004 +043 +013001 +059003 +003005 +089020 +092001 +069002 +023012 +003004 023012 +015024 +092004 +60359 059003 +092004 +003004 023012 +023012 +043 079010 +092004 +089009 +003004 023012 +059001 +023012 +067002 +092003 +053003 +013001 +089012 090010 +092004 +033019 +092006 +033006 +092003 +068002 +089020 +092001 +089017 092001 +089020 +092003 +064 +092004 +003005 +069002 +074 +003004 023012 +023012 +090004 +092004 +60396 085003 +083008 +092004 +003003 +60401 069003 +092003 +60405 089020 +092001 +068002 +092001 +013001 +092004 +003003 +092003 +092004 +003005 +092004 +068002 +089020 +092001 +089017 092001 +089020 +092004 +092007 +023012 +023012 042002 +059002 +089007 +089021 +092001 +069002 +074 +042002 +092004 +60435 092004 +068002 +089020 +092001 +015026 +084002 +064 +092004 +003005 +089015 +079015 +089015 +015013 +092004 +089015 +084002 +092004 +002003 +015026 +089015 +014008 +089010 +068002 +089020 +092001 +089017 +092004 +033006 +092001 +089020 +092003 +068002 +071001 +092006 +025001 +033012 +60472 013004 +092003 +089012 +092007 +087003 +092004 +012001 +092001 +091005 +023012 042002 +059002 +023012 +089017 +60486 092001 +036004 +064 +025003 +092001 +092004 +012001 +089017 092001 +092003 +025003 +068002 +089020 +092004 +025003 +092004 +092001 +089010 +092004 +033032 +092001 +036003 +068002 +089020 +092004 +025003 +092001 +064 +092001 +092004 +012001 +092001 +092004 +033032 +036003 +60521 068002 +089020 +092004 +092004 +025003 +092007 +033006 +092003 +089009 +092004 +025011 +092004 +092001 +089020 +092003 +013001 +089017 +092004 +025011 +092003 +059003 +092007 +013001 +092004 +033032 +092004 +092001 +091005 +025003 +092005 +064 +025003 +092003 +078002 +092007 +025003 +092004 +090013 +091005 +092004 +092004 +023007 +092004 +023007 +090009 +092004 +034001 +092004 +092003 +034001 +092001 +058010 +089010 +042002 +60576 092001 +033032 +092003 +067006 +033009 +092003 +087005 +089007 +092004 +087005 +069002 +028001 +092004 +042002 +092004 +092004 +057001 +089023 +092003 +033009 +034001 +089007 +059003 +092006 +024002 +090003 +092004 +012001 +092001 +028002 +092003 +069002 +092003 +092001 +030006 +089023 +092001 +030006 +092003 +089017 +037005 +092003 +089009 +092003 +015001 +089017 +023012 042002 +023012 +089017 +092004 +042002 +092003 +013003 +089008 +092004 +071001 +092006 +033012 +092004 +012001 +090006 +092004 +033009 +092001 +057008 +092003 +092007 +033032 +092003 +090006 +025003 +092005 +089010 +092004 +009001 +092003 +088026 +028001 +090006 +092001 +067002 +092003 +088026 +089010 +089003 +092004 +041003 +058010 +071003 +092004 +009001 +092004 +057001 +025003 +089023 +089007 +089003 +092004 +041003 +069002 +058010 +089023 +092001 +030006 +092003 +089003 +092004 +041003 +60686 088026 +092003 +092004 +009001 +029002 +092004 +033006 +092006 +092001 +033006 +092003 +069002 +013001 +087005 +087003 +092004 +057001 +092004 +089010 +092001 +039009 +089017 +092003 +039009 +089010 +092004 +033006 +092001 +036003 +089017 +092004 +092003 +036003 +089023 +092007 +059003 +041001 +090013 +092003 +090010 +092004 +033009 +092001 +089007 +069002 +028001 +092004 +015004 +092001 +089010 +069002 +015006 +089015 +033006 +092004 +088038 +069002 +090013 +60745 067002 +033049 +069002 +090013 +089004 +092004 +088038 +092004 +092004 +092001 +088026 +089017 +092004 +012001 +092001 +088026 +089010 +092004 +042002 +069002 +090011 +083003 +092004 +092006 +092004 +058006 +090011 +088038 +069002 +090013 +089023 +067002 +089017 +024001 +089017 +088026 +089017 +092001 +089017 +092004 +012001 +092001 +089023 +089009 +013004 +092004 +033006 +092004 +083003 +092004 +033005 +092004 +033005 +091005 +088026 +092001 +089007 +60803 015006 +092004 +012001 +092006 +092001 +015004 +092003 +090003 +092004 +012001 +092004 +012001 +092004 +072001 +092006 +084001 +092004 +012001 +015004 +092007 +033020 +090006 +092001 +089017 +089017 +092003 +033020 +089007 +067006 +067003 +089020 +092001 +085001 +092007 +033006 +092003 +089009 +069002 +031008 +011002 +013001 +092003 +091001 +013004 +067001 +090006 +059003 +092004 +020004 +092003 +031005 +053001 +015024 +092004 +012001 +089017 +092007 +042002 +089007 +069002 +028001 +092004 +012001 +069003 +092001 +089023 +092007 +033006 +092003 +089009 +60874 013004 +092004 +067001 +092004 +029002 +092004 +090006 +092001 +033006 +092003 +60885 092007 +092003 +067006 +067003 +069002 +033006 +089007 +089020 +092003 +085001 +089023 +067002 +015004 +084002 +092004 +015004 +092001 +091002 +092004 +063004 +092003 +033014 +092001 +083002 +015004 +091001 +089007 +092007 +033006 +092003 +092004 +025023 +030001 +60919 092004 +030001 +091001 +092001 +092004 +072001 +033006 +092003 +065005 +092003 +090006 +092001 +015004 +089007 +60935 015004 +092004 +012001 +069002 +60941 084002 +092003 +089023 +089010 +015004 +015004 +092004 +084002 +092003 +089015 +015006 +092007 +033046 +092004 +009001 +089004 +088038 +089017 +089004 +088002 +089017 +089004 +030007 +089023 +089004 +088038 +089007 +069002 +031010 +090006 +092001 +089023 +089004 +088002 +089007 +084002 +092004 +012001 +015004 +60981 067006 +024001 +092001 +089023 +089004 +030007 +089007 +092004 +037004 +092004 +041003 +092007 +056005 +059008 +60996 059001 +092003 +033006 +089023 +069002 +074 +031007 +067002 +089023 +067002 +015006 +092007 +092004 +012001 +092004 +072001 +027001 +092003 +61018 089007 +069002 +033006 +090003 +092004 +089023 +059002 +61026 033006 +089017 +092004 +013004 +033015 +092003 +092007 +092001 +087003 +089007 +089003 +092004 +092001 +057009 +089015 +033015 +092003 +059003 +059002 +057001 +092004 +012001 +092001 +013001 +61052 033006 +090006 +090003 +092004 +092001 +057009 +089015 +033015 +092003 +067005 +089015 +067006 +024001 +092001 +089015 +067002 +067005 +089015 +024001 +092001 +089008 +033006 +063004 +092004 +036004 +092004 +090013 +092005 +092004 +013001 +092007 +092006 +033006 +092002 +067005 +089015 +069002 +024001 +092001 +089015 +067002 +067005 +089015 +024001 +092001 +089017 +089007 +015004 +084002 +092004 +012001 +089008 +033006 +092004 +013001 +092007 +092006 +033006 +092004 +067005 +069002 +032001 +092004 +033006 +028001 +093001 +090006 +025001 +092004 +033014 +61123 033006 +092004 +090006 +092007 +027004 +089020 +092005 +090006 +033006 +067005 +089015 +069002 +024001 +092001 +089015 +067002 +067005 +089015 +024001 +092001 +072001 +072001 +033006 +092003 +090006 +025012 +089017 +025012 +092003 +089023 +092004 +009001 +025011 +092003 +025023 +089023 +092004 +025023 +092003 +013002 +025011 +013002 +61166 092004 +009003 +023003 +025023 +090013 +089007 +013004 +092004 +067001 +092004 +089023 +61178 023003 +092004 +010002 +067006 +029002 +092004 +022001 +089007 +092004 +025011 +090006 +023003 +009001 +084002 +092004 +009001 +61195 089023 +089017 +092003 +067002 +025023 +090013 +089023 +067002 +024001 +092003 +61206 025011 +092003 +092004 +026 +089017 +092004 +025011 +092003 +092004 +090014 +61217 092003 +089017 +067007 +092007 +092004 +067009 +092001 +069002 +033012 +092004 +072001 +072001 +033006 +092003 +071001 +092004 +033012 +092004 +012001 +057008 +092003 +090006 +092004 +033009 +092001 +067006 +067002 +069002 +033012 +092004 +090006 +092004 +033009 +092001 +033012 +089015 +057009 +089009 +092004 +025011 +092003 +61259 059003 +092007 +089012 +033003 +033006 +092003 +013004 +067001 +61268 067006 +089012 +033003 +033006 +092003 +089023 +61275 090006 +092004 +012001 +033015 +092003 +067002 +092007 +092004 +067008 +090006 +092004 +033009 +092001 +033012 +089017 +069002 +033006 +092003 +090006 +092001 +033012 +092004 +012001 +090009 +092003 +089007 +092008 +092004 +012001 +025003 +092003 +089007 +092003 +092001 +025003 +089017 +031010 +090006 +092001 +084001 +092004 +012001 +015004 +015004 +61320 092004 +012001 +089017 +015006 +084002 +092004 +001006 +089023 +015004 +092004 +001006 +089017 +015004 +084002 +092004 +012001 +033006 +092004 +036004 +092004 +091003 +067002 +61344 033006 +089017 +033003 +092004 +033006 +067002 +028001 +090006 +028001 +059003 +089017 +069002 +071004 +090013 +090006 +092004 +092003 +033014 +089007 +092007 +031006 +090006 +090003 +012001 +015004 +033004 +092004 +093001 +067002 +031006 +091003 +013004 +067001 +089017 +013004 +090006 +015014 +059003 +084002 +092004 +057001 +089017 092001 +058007 +015004 +091002 +069002 +013001 +058007 +089007 +092004 +012001 +089020 +092001 +085001 +092007 +033006 +092003 +089009 +089020 +092001 +025021 +090013 +083003 +092004 +001006 +022001 +090013 +089023 +025014 +092001 +039012 +092004 +041003 +092007 +033006 +093001 +089015 +024001 +092004 +008002 +092004 +084002 +092004 +001002 +033006 +012001 +013004 +092004 +067001 +087003 +092003 +092004 +012001 +089009 +092004 +012001 +087003 +092003 +089007 +090012 +092004 +037003 +059003 +009001 +089009 +059003 +092006 +61452 092004 +090012 +092004 +023007 +067005 +089017 +092007 +013001 +092004 +067005 +023007 +091005 +027001 +092003 +092004 +058007 +070 +012001 +089017 +092006 +015004 +093001 +093001 +092001 +092003 +087003 +083008 +092004 +001006 +068003 +092004 +042004 +092006 +090012 +092001 +089009 +042002 +61490 012001 +067002 +087003 +092001 +092003 +089020 +092003 +092004 +087003 +092006 +090013 +067002 +092004 +092004 +001001 +013003 +089020 +092003 +028003 +092003 +092004 +033020 +092004 +009001 +092006 +61516 092001 +089021 +092004 +009001 +092003 +013001 +092001 +092004 +61525 089015 +092004 +033006 +092003 +036003 +067002 +028001 +090006 +059003 +059001 +61536 092001 +090003 +092003 +013001 +089007 +092004 +033006 +092006 +61545 092001 +61547 092004 +089015 +092004 +031007 +089017 +028001 +070 +090006 +090003 +092003 +015004 +089017 +031006 +090006 +092003 +092001 +015004 +092001 +090009 +092004 +033012 +069002 +090009 +092004 +009001 +033012 +089023 +090009 +092006 +61577 092001 +089007 +092003 +013001 +089017 +092004 +092001 +059003 +092003 +013001 +089017 +092004 +092003 +092001 +089017 +087003 +090001 +092004 +091001 +067006 +085001 +083003 +092004 +001006 +61602 092004 +083003 +092004 +001006 +085001 +089017 092001 +084002 +092003 +015006 +012001 +088003 +037009 +092004 +089020 +092004 +033009 +092003 +092006 +61621 092001 +089009 +013001 +063001 +064 +092002 +067007 +085001 +089020 +092004 +092001 +037009 +092004 +089020 +092004 +033009 +092003 +092006 +61640 092001 +089017 +037009 +61644 092004 +063004 +092004 +020003 +089023 +61650 092004 +009001 058004 +092004 +020003 +089009 +092004 +033005 +013004 +61659 067002 +084002 +092003 +015006 +089017 +092007 +033006 +083003 +092004 +001006 +089009 +090013 +092004 +025011 +092004 +092001 +059003 +090013 +092004 +092001 +61680 092004 +092004 +033006 +092003 +61685 092004 +009001 +088026 +092004 +089007 +069002 +058010 +089003 +092004 +041003 +064 +092001 +069002 +058010 +089003 +092004 +041003 +069002 +033012 +090006 +015024 +092004 +084001 +092004 +001006 +089023 +090006 +037009 +092004 +089021 +092004 +012001 +089003 +092004 +041003 +069002 +058010 +064 +092001 +069002 +058010 +089003 +092004 +041003 +088003 +092004 +089012 +092004 +072001 +092004 +033006 +092004 +092003 +072001 +013001 +064 +092001 +015004 +084002 +092004 +009001 +089017 092001 +015004 +092004 +084002 +092004 +009001 +089017 +090009 +092004 +092001 +088003 +092001 +089009 +61760 088003 +089017 +092004 +070 +070 +089023 +069002 +61768 092007 +033012 +61771 089023 +089017 +61774 092004 +031010 +089007 +092004 +033019 +092004 +090006 +092001 +089009 +059003 +063001 +013001 +064 +61788 092003 +089020 +092001 +089017 092001 +089020 +092003 +089009 +089017 +092004 +089020 +092002 +013001 +089009 +092004 +009001 +031006 +090006 +092003 +092001 +015004 +089017 092001 +092004 +087002 +092006 +61813 092001 +61815 092004 +089009 +013001 +063001 +064 +092002 +063001 +092001 +089020 +092004 +089017 +092003 +089020 +092001 +089009 +61831 013001 +013002 +063001 +089009 +032002 +092004 +009001 +090006 +092003 +092001 +015004 +089017 +025003 +092004 +064 +092001 +025003 +61849 092006 +61851 092001 +025001 +090006 +083002 +085001 +092001 +089017 092007 +085001 +089020 +092001 +089009 +024001 +092004 +014006 079005 +092004 +092001 +092006 +61869 092001 +089007 +025003 +092001 +067002 +042003 +001001 +61877 088002 +091002 +092004 +009001 +092003 +069002 +027001 +089023 +092001 +092003 +027001 +089017 +092007 +032002 +090006 +092003 +092001 +015004 +089017 +028002 +092004 +092004 +033020 +092003 +089015 +028002 +089009 +092004 +025003 +092006 +025003 +092001 +089020 +092004 +085001 +089017 092001 +089020 +092004 +092007 +033006 +093001 +015004 +089020 +092004 +036004 +092004 +083007 +092004 +001008 001010 +61927 093002 +083002 +085001 +001015 +084002 +092006 +015008 +092004 +089017 +092004 +036004 +092004 +61940 028001 +089017 +093001 +092004 +037007 +092004 +092004 +080001 +089007 +067001 +015013 +093001 +083001 +089020 +092004 +036004 +092004 +61958 092004 +093001 +057007 +092004 +055003 +089017 +089025 +092004 +053009 +089017 +089025 +092004 +011002 +035002 +015006 +083001 +089020 +006014 +089017 +006014 +089017 +006007 +089008 +093001 +028001 +059003 +092004 +015006 +090013 +092004 +015004 +089015 +033006 +092004 +092004 +027004 +033014 +092004 +093001 +092004 +093002 +033006 +092004 +092001 +013001 +62004 085001 +089017 +093001 +092004 +037007 +092004 +089020 +092004 +089008 +067002 +033006 +092004 +092001 +013001 +015004 +084002 +092004 +083006 +089015 +015012 +001006 +089008 +067002 +033014 +092004 +092004 +027004 +089015 +092004 +033006 +093001 +092004 +093002 +033004 +093001 +033006 +092003 +090006 +092001 +013001 +089008 +089010 +092001 +027004 +013004 +092007 +015004 +089009 +013004 +092004 +033006 +092006 +033006 +090006 +092006 +62060 092001 +069002 +057007 +063004 +092004 +092004 +62067 093001 +093001 +057001 +006007 +015025 +092004 +089015 +019001 +092004 +092004 +053009 +087005 +62080 019002 +092004 +092004 +008002 +092004 +082002 +089017 +013001 +033009 +092004 +087005 +093001 +089023 +033006 +092004 +093001 +092004 +093001 +085002 +092004 +006007 +084002 +092004 +006016 +092004 +024006 +092006 +037005 +092001 +092004 +012001 +069004 +62113 024006 +092004 +62116 092004 +055003 +089017 +092004 +055004 +089017 +092004 +035002 +092004 +093001 +037006 +092004 +093001 +089015 +037008 +092004 +089015 +015023 +084002 +093001 +060003 +089007 +013001 +010004 +092004 +093001 +092006 +013001 +053009 +092004 +067009 +092007 +089017 +013001 +093001 +092004 +033027 +092004 +093001 +090006 +065005 +060002 +009001 +023007 +090009 +092004 +011003 +62164 015017 +092004 +093001 +093001 +093001 +089017 +058006 +036004 +089017 +092004 +036004 +092007 +013001 +034001 +092004 +053009 +62181 015019 +092004 +093001 +084002 +092004 +007002 +092004 +053009 +089023 +092004 +093001 +017001 +083005 +092004 +007003 +083004 +089008 +015004 +092004 +036004 +092004 +058006 +092004 +034001 +092004 +053009 +089015 +033006 +092004 +046 +62212 015023 +092004 +093001 +089023 +033006 +092004 +093001 +092004 +087005 +092004 +046 +069005 +089017 +092003 +063004 +092004 +036004 +092004 +009002 +092007 +058010 +033006 +092007 +069002 +058010 +62238 017001 +092004 +087005 +089017 +092004 +035002 +002003 +042003 +089007 +079014 +013001 +62250 079014 +089017 +089017 +092004 +093001 +089020 +092004 +62258 017001 +089017 +079014 +089023 +092004 +053009 +033014 +092004 +093001 +090006 +092004 +036004 +092004 +089017 +090006 +092004 +033017 +092004 +033014 +092004 +093001 +092001 +62281 033006 +092004 +009001 +092001 +067005 +033017 +083003 +007002 +089017 +083003 +092004 +007002 +083002 +059003 +092004 +093001 +015013 +089017 +028005 +028005 +033006 +092004 +092004 +092001 +033014 +033014 +092004 +024002 +092004 +033006 +092004 +091003 +092007 +028001 +092006 +033006 +092001 +089015 +092007 +092004 +033006 +092004 +017001 +092004 +035002 +090012 +019001 +092004 +093001 +033006 +061 +033004 +092004 +053009 +033004 +092004 +093001 +089010 +072002 +033006 +033020 +090006 +092004 +072002 +089023 +089010 +072002 +092004 +092001 +019001 +089023 +015004 +092004 +092004 +093001 +037008 +084002 +093001 +092004 +053009 +62362 093001 +093001 +62365 017001 +089017 +079014 +089008 +033006 +092004 +069005 +089017 +092003 +063004 +092004 +036004 +092004 +058010 +033022 +092007 +089017 +033006 +069002 +058010 +033006 +092004 +063004 +092004 +087005 +092004 +053009 +058010 +010001 +092006 +019002 +093001 +092004 +008002 +069004 +092001 +024001 +092003 +083003 +092004 +001015 +089020 +092004 +089023 +067002 +033022 +093001 +089015 +067002 +004002 +014009 +62417 015023 +092004 +093001 +084001 +092004 +093001 +084002 +092004 +007002 +62427 013001 +067009 +62430 092004 +069002 +015008 +084002 +092004 +007002 +089009 +069002 +053004 +089023 +023001 +092004 +051 +089008 +015004 +092004 +093001 +083004 +084002 +092004 +089015 +033006 +092004 +033048 +092004 +009002 +092007 +013004 +033014 +089015 +033006 +092004 +089023 +62465 090011 +092007 +088015 +071003 +069002 +092003 +037007 +092004 +089008 +033006 +092004 +092004 +093001 +018001 +092004 +092003 +089015 +089005 +092004 +033033 +092003 +056005 +092004 +033006 +092004 +092004 +093001 +092002 +069002 +071004 +020004 +092004 +089009 +092004 +033006 +092004 +093001 +013004 +092006 +033006 +033010 +058004 +023007 +067002 +023007 +62511 015008 +067002 +084002 +092004 +007002 +092004 +093001 +089015 +033029 +092004 +093001 +089015 +033006 +092004 +092003 +013001 +092004 +037004 +092004 +093001 +033014 +093001 +090003 +62535 092003 +092007 +033006 +089024 +058006 +033006 +092003 +090006 +092001 +033014 +092004 +093001 +069005 +092001 +093001 +058010 +092004 +011003 +092004 +092003 +089017 +092004 +053009 +037007 +092003 +092001 +092004 +042002 +033014 +093001 +092004 +037004 +092004 +092001 +069002 +013001 +089003 090003 +092004 +041003 +092007 +089010 +089003 +092004 +041003 +092007 +013001 +092004 +037004 +092004 +092001 +071003 +092004 +035002 +092004 +092001 +039005 +089009 +069002 +037007 +092004 +093001 +089023 +067002 +092004 +037004 +092004 +092001 +069002 +013001 +084001 +089008 +033006 +092004 +092004 +093001 +069004 +037004 +013001 +092003 +033014 +092004 +093001 +092003 +033006 +090006 +037004 +013001 +092001 +089009 +092007 +023003 +089017 +089009 +092007 +015006 +084002 +092004 +001006 +089009 +033020 +092004 +072001 +059003 +092004 +013001 +089003 +092004 +072001 +031007 +092001 +092004 +033006 +033006 +092004 +092004 +093001 +092004 +013001 +072001 +091001 +092007 +033006 +067002 +015004 +084002 +092004 +093001 +089015 +033006 +092004 +092001 +092004 +027002 +089004 +092004 +056003 088038 +62672 013003 +041002 +092003 +091005 +060002 092004 +037010 +092003 +067007 +092004 +051 +089008 +025001 +037010 +092003 +092004 +037004 +092004 +093001 +089008 +033006 +067002 +033006 +069002 +092007 +089023 +092004 +093001 +62700 058010 +092004 +093001 +039007 +089008 +067002 +018001 +092004 +093001 +092004 +093001 +089015 +019001 +091001 +092004 +055004 +049 +006018 +089025 +003003 +085002 +092004 +092004 +008002 +089015 +006017 +079007 +049 +092004 +091001 +015006 +084002 +092004 +089015 +033006 +033003 +092004 +037004 +092004 +093001 +089017 +090014 +092004 +019001 +091001 +015004 +067002 +083004 +092004 +093001 +089015 +033006 +092004 +091003 +015023 +092003 +092004 +084002 +089009 +028001 +090006 +092004 +056003 +027001 +089004 +092004 +62767 015004 +092004 +093001 +083004 +049 +092004 +003003 +006018 +089017 +092004 +079007 +006017 +091001 +033006 +092004 +091003 +092004 +009002 +089008 +62787 024001 +092004 +092004 +053009 +089017 +092004 +035002 +033006 +033006 +020004 +020004 +033006 +092004 +092004 +093001 +018001 +092004 +092003 +089015 +020004 +089007 +092001 +069002 +027001 +089004 +092004 +056003 088038 +033004 +092004 +092004 +093001 +092002 +033033 +62821 089017 +089005 +092004 +033033 +071004 +023007 +089007 +012001 +012001 +092004 +013001 +089008 +62834 033015 +092004 +093001 +092007 +092004 +033006 +078002 +025022 +089015 +015008 +084002 +092004 +007002 +067002 +089015 +033006 +092004 +093001 +084001 +085001 +092003 +089023 +092004 +093001 +033014 +069002 +090012 +092004 +089008 +033006 +092004 +092004 +093001 +069004 +092001 +033006 +069004 +028001 +090006 +037003 +074 +037010 +092003 +089017 +037003 +074 +020004 +092003 +033014 +093001 +069002 +074 +037003 +092004 +090008 +092001 +089023 +62894 092003 +084001 +62898 092004 +037007 +092001 +092003 +078001 +088038 +090013 +067006 089007 +092007 +092004 +093001 +068005 +037010 +092004 +089023 +092004 +093001 +033006 +033006 +089010 +092007 +037010 +069002 +058010 +034001 +092004 +037004 093001 +059003 +092004 +037004 +092004 +013001 +033052 +092004 +037004 093001 +089008 +092004 +093001 +024002 +092004 +033006 +092007 +015023 +084002 +092004 +093001 +089015 +017002 +084002 +007007 +083003 +080001 +033009 +007007 +089017 +033001 +093002 +62956 013001 +067010 +092004 +051 +067009 +013001 +078003 +060003 +091001 +033006 +092004 +093001 +091003 +092004 +037004 +092003 +089023 +033006 +092007 +020004 +020004 +020004 +092004 +033006 +092004 +092004 +093001 +092004 +037004 +092003 +020004 +033014 +092004 +053009 +069002 +62992 037004 +089023 +62995 037004 093001 +089008 +067002 +037007 +092004 +092004 +089009 +020004 +089008 +015023 +092004 +093001 +089015 +015024 +092004 +092004 +006006 +015004 +084002 +092004 +033009 +008002 +080001 +092006 +033009 +033001 +093002 +083002 +092004 +020004 +089017 +089020 +092004 +058006 +060002 +084001 +089017 +084001 +089017 +083003 +092004 +093001 +63038 033005 +089017 +033005 +092004 +093001 +089015 +085002 +083008 +092004 +006006 +089017 +63050 033005 +093001 +092004 +093002 +092004 +037004 +092004 +093001 +089008 +092007 +092004 +033005 +033005 +059001 +092004 +093001 +089007 +083005 +092004 +001014 +085001 +092004 +080001 +083002 +020004 +092004 +093001 +089017 +63079 033005 +033001 +033001 +033001 +089008 +033006 +092004 +093001 +092004 +053009 +092004 +093001 +069002 +033005 +092004 +037004 +092004 +093001 +089023 +090006 +092007 +033006 +037004 +092004 +093001 +013001 +033004 +092004 +093001 +092006 +033005 +033005 +63113 092004 +055004 +020004 +092004 +093001 +057007 +092004 +006017 +092004 +089015 +090011 +060002 +063004 +059003 +055004 +063004 +089017 +092004 +006017 +63133 013001 +092004 +006017 +048 +090003 +092004 +084001 +048 +084003 +063001 +089008 +033006 +090013 +092005 +069002 +019003 +092004 +089023 +030006 +089004 +092004 +092004 +013004 +089009 +092004 +033005 +013004 +057008 +092004 +006017 +092001 +092004 +089017 +63167 092004 +006017 +092001 +015026 +006023 +089008 +089023 +092004 +055004 +092007 +042002 +089023 +017001 +083005 +092004 +006006 +092004 +093001 +092004 +010002 +092004 +089017 +092004 +010003 +092004 +010002 +092004 +093001 +092004 +092004 +093001 +089017 +093001 +092004 +093001 +089008 +093001 +024001 +092004 +010002 +089017 +092004 +036004 +017001 +092006 +025003 +033006 +092004 +010002 +009003 +091003 +092004 +009005 +092003 +067002 +033006 +092004 +036004 +091003 +092004 +010002 +092003 +63230 067006 +092007 +092004 +067001 +018001 +092004 +036004 +092004 +084002 +092004 +057001 +067002 +092007 +092004 +093001 +032001 +090006 +067002 +059003 +068003 +089009 +013004 +092004 +033005 +033006 +023001 +006016 +006019 +059004 +085001 +089008 +006016 +059004 +092004 +006019 +003003 006007 +085002 +015024 +092004 +092004 +008002 +089008 +63273 057009 +092004 +006019 +092004 +093001 +033006 +068003 +089015 +016 +092004 +008002 +023007 +092004 +023007 +089008 +092004 +093001 +089007 +067010 +013004 +089009 +069002 +085003 +083008 +092004 +006006 +092004 +008001 +067007 +092004 +067009 +089007 +013001 +078001 +092004 +067009 +092007 +092004 +067009 +033012 +092004 +093001 +090006 +019004 +092004 +092004 +008002 +089015 +015024 +089008 +015006 +092004 +055004 +089015 +089023 +019004 +092004 +008002 +092004 +060003 +089015 +092004 +058006 +092004 +020004 +092004 +089023 +084002 +092004 +093001 +015006 +067002 +024001 +067002 +092004 +023007 +069002 +019004 +092004 +092004 +008002 +089023 +092004 +092004 +055004 +006007 +092004 +092004 +008002 +019002 +63364 015004 +067002 +008002 +089017 +002004 +091001 +092004 +024001 +033020 +089017 +072001 +013001 +092004 +092004 +033020 +089017 +092007 +028001 +090006 +072001 +033006 +089009 +089017 +092003 +63389 089007 +013004 +092007 +089009 +092004 +033005 +013004 +008002 +092004 +069002 +019004 +089017 +089017 +058006 +033005 +033006 +024001 +084002 +092006 +019002 +63410 067002 +092007 +033012 +092004 +093001 +093001 +084001 +093002 +058010 +036004 +092004 +093001 +089023 +028005 +089007 +092004 +025022 +092004 +093001 +090006 +015024 +092004 +008001 +092004 +093001 +63436 013004 +092004 +093001 +089008 +015006 +089015 +015024 +092004 +008001 +092004 +089017 +015006 +089017 +093001 +092004 +015006 +084002 +092004 +014007 +092004 +060003 +015024 +006021 063003 079027 +006021 +089017 +006021 +078003 +086002 +060002 +63466 018001 +092004 +008001 +092004 +093001 +089015 +018002 +092004 +006017 +089022 +092004 +006021 +064 +041002 +013001 +092004 +093001 +052 +63485 013003 +083003 +092004 +080001 +083002 +020004 +001015 +089017 +083003 +092004 +001015 +007007 +067005 +084002 +092006 +067006 +092004 +63503 085002 +089008 +083001 +089007 +092004 +067010 +092004 +093001 +089007 +083005 +085001 +092004 +007007 +085002 +092004 +093001 +63520 092004 +63522 092004 +067009 +093001 +092004 +093001 +015006 +067009 +084002 +092004 +007007 +014007 +067006 +013001 +089015 +024001 +092004 + +015024 +084001 +092004 +007007 +089008 +015030 +089015 +015006 +084002 +093001 +093001 +089017 +084002 +092004 +058006 +036004 +092006 +025003 +092004 +093001 +089015 +033006 +092004 +015024 +092004 +012001 +084001 +092004 +007007 +089017 +069002 +028001 +083002 +085002 +092004 +089008 +015004 +092004 +093001 +089017 +092004 +058006 +036004 +089015 +015006 +084002 +092004 +007007 +63588 015030 +092004 +060002 +089020 +63593 092004 +058006 +036004 +015030 +067005 +092004 +093001 +63601 015006 +060003 +084002 +092004 +007007 +089015 +017008 +024001 +085001 +092004 +006017 +089023 +069002 +015008 +089023 +015006 +089017 +093001 +093001 +015017 +092004 +089015 +015008 +084002 +092004 +007007 +089015 +024001 +092004 +006017 +085001 +089017 +092004 +006017 +092006 +085001 +083008 +092004 +008002 +092004 +069002 +089020 +092004 +006017 +085001 +089023 +063007 +079027 +083008 +060002 +080001 +089023 +067002 +015008 +089017 +092004 +058006 +036004 +092004 +015006 +060003 +084002 +092004 +007007 +089015 +024001 +089015 +031010 +089007 +067006 +032001 +092004 +033005 +090006 +071005 +092004 +089021 +023007 +023007 +63681 015004 +067002 +084002 +092004 +092004 +036004 +63688 093001 +085001 +083005 +092004 +007007 +083004 +025012 +63696 067007 +025012 +017008 024001 +084002 +092004 +007007 +089015 +024001 +060002 +012001 +013001 +079007 +017002 +083002 +017007 +092004 +008001 +092004 +093001 +060002 +083005 +092004 +008002 +089017 +060002 +083005 +092004 +008002 +091001 +033006 +092004 +092007 +009003 +092004 +025012 +033006 +092004 +089007 090006 +015024 +092004 +012001 +092001 +089017 +069002 +028001 +083002 +085002 +092004 +092007 +033006 +016 +084002 +092004 +083006 +089015 +024001 +092004 +093001 +085001 +63756 069002 +028001 +090006 +093001 +013001 +033006 +092004 +093001 +009003 +092004 +025012 +092004 +027004 +092007 +031005 +090006 +092004 +043 +013001 +033006 +092004 +087003 +089010 +092003 +015024 +092004 +033006 +092001 +083002 +085002 +092004 +092001 +092004 +015024 +033006 +092004 +093001 +093001 +016 +092007 +033006 +092004 +033001 +033017 +092006 +033010 +033017 +033006 +092004 +093001 +069002 +092001 +018001 +089007 +067006 +015010 +084002 +092004 +012001 +089023 +015001 +084002 +092004 +011002 +092001 +089015 +033006 +092004 +015010 +084002 +092004 +012001 +092001 +089017 +012001 +092003 +089017 +012001 +092001 +089017 +012001 +092003 +015006 +093001 +092004 +093001 +033015 +092004 +036004 +090006 +024001 +092004 +012001 +089017 +092007 +033006 +092004 +63854 013004 +067004 +092004 +067009 +092007 +092004 +63861 067009 +089017 +092004 +007003 +079024 +083002 +085001 +092004 +036004 +089007 +092004 +025022 +092004 +093001 +015006 +092004 +093001 +089015 +085001 +083003 +092004 +083003 +089015 +033006 +092004 +025021 +092003 +089015 +092007 +033006 +028003 +63893 092004 +008002 +089017 +092004 +008002 +092004 +089008 +025011 +092004 +036004 +024001 +092004 +012001 +63907 033006 +092004 +092004 +093001 +067002 +025021 +092003 +064 +015004 +092001 +092004 +012001 +089017 092001 +015004 +092003 +091001 +092007 +033006 +023010 +089015 +033006 +092004 +057009 +012001 +088003 +071001 +040002 +092004 +092004 +088038 +040002 +092004 +071001 +092004 +013001 +013001 +63944 093001 +092004 +063004 +092004 +060002 +092004 +033009 +093001 +069002 +085001 +089020 +092004 +63957 015006 +093001 +089008 +033006 +092004 +092004 +058006 +036004 +024001 +092004 +012001 +089023 +092004 +033006 +092004 +63974 024001 +083003 +092004 +008002 +092004 +092004 +008002 +092004 +006004 +089017 +085002 +092004 +008002 +092001 +084002 +092004 +63991 092004 +006004 +089017 +085002 +092001 +092004 +008002 +084002 +092004 +008002 +092004 +069002 +069002 +031006 +091001 +067002 +067009 +060002 +067002 +085001 +083003 +092004 +036004 +092004 +089017 +093001 +089020 +092004 +015006 +092004 +093001 +092004 +007003 +079024 +089015 +085001 +083003 +092004 +083003 +089015 +033006 +025021 +092003 +067002 +033006 +092004 +093001 +085002 +092004 +008002 +092003 +083001 +089017 +024001 +092004 +008002 +092001 +089017 +085002 +092004 +008002 +092003 +089017 +085002 +084002 +092004 +008002 +092001 +64060 069002 +013001 +031009 +089023 +031009 +033004 +093001 +089017 +033006 +092004 +092004 +012001 +092001 +089017 +092004 +012001 +092001 +033006 +092004 +092004 +093001 +089007 +024001 +092001 +031006 +025011 +092004 +069002 +024001 +64090 031006 +64092 091002 +089017 +059001 +058006 +033056 +090011 +092004 +093001 +083006 +092004 +036004 +092006 +069002 +64106 033005 +083003 +092004 +033005 +092007 +089023 +092007 +033005 +089009 +64116 090006 +093001 +013001 +092004 +053009 +092004 +012001 +092004 +012001 +64126 089009 +031006 +023007 +090013 +089012 +092004 +033009 +092004 +067002 +092007 +024001 +092004 +067002 +093001 +092004 +036004 +083005 +092004 +001010 +092004 +093002 +089017 +024001 +061 +085001 +089020 +093001 +093001 +089017 +093001 +092004 +033009 +093001 +089017 +093001 +092004 +084001 +093002 +092004 +093002 +089017 +092004 +092004 +093001 +089017 +058006 +063004 +092004 +036004 +092004 +060002 +033006 +092004 +093001 +093001 +015004 +044 +033006 +092004 +015001 +089017 +092002 +089020 +092003 +015004 +089015 +015008 +084002 +092004 +006008 +091002 +067007 +092007 +092004 +067009 +018001 +092004 +64204 067009 +067002 +64207 085001 +093001 +083008 +092004 +001009 +089023 +069002 +028001 +092004 +036004 +090006 +093001 +013001 +089008 +033006 +092004 +093001 +009005 +069005 +092004 +005001 +057001 +033014 +092004 +069002 +089015 +092004 +033006 +092004 +015026 +084002 +092004 +082002 +079023 +092004 +006008 +092004 +006003 +64246 027002 +089008 +015026 +64250 067006 +092004 +015025 +079013 +089007 +092004 +059001 +092004 +004005 +089008 +033006 +092004 +036004 +092007 +092006 +025003 +092004 +093001 +092004 +093001 +092004 +012001 +013001 +089008 +093001 +093001 +033015 +090006 +092004 +012001 +013001 +092004 +006017 +049 +089007 +013001 +049 +089015 +015026 +092004 +084002 +092004 +001010 +089023 +092004 +058006 +036004 +092004 +006008 +015006 +089007 +069002 +085001 +083005 +084001 +092004 +001009 +089023 +078003 +084001 +081006 +060002 +015025 +092004 +006003 +092004 +004005 +64318 067002 +015004 +64321 092004 +001009 +024001 +002003 +085001 +089017 +005001 +085001 +089017 +005001 +033006 +092004 +092004 +093001 +015023 +063004 +092004 +005001 +092006 +018001 +067002 +015009 +093001 +093001 +089015 +015023 +092004 +006003 +64350 092004 +001009 +059004 +004005 +079028 +060002 +060002 +060002 +091002 +059001 +085001 +069002 +019003 +092004 +006003 +033006 +092004 +092004 +093001 +084002 +023001 +092004 +092004 +036004 +025014 +033014 +092004 +092003 +092004 +013001 +028001 +090006 +092004 +012001 +013001 +015006 +093001 +089015 +018001 +092004 +005001 +089015 +057008 +092004 +089017 +092004 +005001 +064 +092007 +067002 +060003 +024001 +093001 +092004 +036004 +023007 +089021 +023007 +64410 023001 +033006 +092004 +093001 +093001 +092004 +093001 +093001 +093001 +025003 +092001 +078002 +092007 +033006 +092004 +069001 +012001 +092003 +028001 +090006 +025003 +092003 +033006 +092004 +023001 044 +092004 +011002 +092001 +033006 +092004 +067002 +060003 +093001 +093001 +025003 +092001 +033006 +092004 +069001 +012001 +092003 +028001 +090006 +025003 +092003 +033006 +092004 +044 +092004 +64460 092001 +033006 +092004 +092004 +060003 +093001 +093001 +025003 +092001 +025023 +092004 +093001 +089007 +033006 +092004 +092004 +060003 +025003 +092001 +64481 092004 +012001 +059003 +092003 +028001 +092003 +028001 +090006 +025003 +092003 +033006 +092004 +093001 +023001 044 +092004 +64497 092001 +072001 +072001 +033006 +092003 +64503 013001 +067005 +049 +092003 +089015 +015029 +083002 +025001 +089023 +64513 067005 +016 +092004 +008002 +092003 +089015 +058006 +049 +092003 +089015 +015023 +083002 +069002 +025001 +64528 092007 +033006 +033010 +058004 +023007 +087002 +092004 +012001 +091001 +092007 +033006 +033006 +092004 +036004 +092001 +015007 016 +092004 +093001 +024001 +092004 +036004 +092006 +025003 +092004 +093001 +015017 +092006 +089017 +017006 +067007 +092004 +023001 +083008 +092004 +008002 +092004 +089015 +033006 +012001 +092004 +013001 +092004 +037007 +092003 +089008 +092007 +024001 +092004 +093001 +033006 +092004 +093001 +012001 +64582 092007 +092004 +033006 +092004 +092004 +093001 +089010 +092004 +013003 +025001 +067006 +015006 +092004 +089004 +092003 +092003 +092001 +036004 +089008 +015004 +092007 +092004 +033006 +090013 +092004 +011002 +091005 +092004 +036004 +092007 +069002 +023007 +089023 +069002 +033006 +092004 +092004 +093001 +090006 +069002 +023007 +089023 +089010 +092004 +013003 +025001 +067006 +015006 +092004 +089004 +092003 +092007 +013001 +092004 +036004 +092004 +033020 +090006 +092007 +089017 +092004 +033005 +092007 +089017 +028001 +090006 +072001 +092004 +092004 +033020 +013001 +089017 +013003 +089017 +058006 +059001 +092006 +042002 +092004 +093001 +089010 +092004 +033005 +64667 031005 +069003 +092008 +092004 +001006 +64673 092004 +033005 +006010 +091004 +093001 +091002 +092004 +060003 +033005 +090011 +090006 +059003 +092006 +089017 +090011 +089017 +033017 +068001 +092004 +093001 +067006 +092006 +067009 +033032 +092004 +053009 +092006 +030006 +090001 +012001 +088003 +015024 +092006 +089017 +085001 +092004 +023007 +067002 +092004 +024006 +092004 +089012 +059001 +028003 +067007 +067005 +067005 +024001 +092004 +089017 +033006 +092004 +090006 +092004 +037004 +092004 +012001 +089015 +023001 041003 +033032 +092004 +084001 +093002 +069002 +015004 +089023 +085003 +092004 +033025 +092004 +012001 +092006 +024002 +092001 +089007 +089023 +093001 +053005 +002004 +089023 +092003 +090002 +012001 +088003 +053005 +069002 +067002 +059001 +092007 +067009 +091001 +64765 092004 +015013 +033014 +092004 +033006 +012001 +089010 +067007 +092004 +067005 +092007 +013002 +092004 +037004 +092004 +093001 +033006 +090013 +092004 +069002 +092003 +071001 +028001 +067001 +089024 +067001 +092006 +092004 +012001 +013001 +089004 +092004 +057001 +037003 +089023 +090013 +076 +013004 +092004 +088003 +012001 +090013 +092003 +64809 013001 +092001 +033020 +089017 +083003 +093002 +089017 +083003 +059003 +092004 +093002 +089017 +093002 +089017 +084002 +061 +092004 +001006 +089015 +092007 +033006 +024001 +092004 +015010 +089015 +001005 +015010 +092004 +089021 +092004 +024001 +092004 +089015 +067007 +024001 +64845 084002 +092004 +001002 +015004 +092004 +64851 091003 +009002 +060002 +017001 +092004 +089013 +006017 +079007 +092006 +089017 +033006 +009001 +093002 +092004 +017001 +64867 084002 +092004 +001002 +092007 +092004 +093001 +092004 +015024 +089021 +092003 +084002 +092004 +001002 +061 +015006 +092006 +089014 +024001 +092004 +015004 +084002 +092004 +001002 +067002 +015007 +084002 +093002 +084001 +001007 +092004 +033009 +003002 +092006 +085001 +083005 +093002 +081006 +081006 +013001 +089015 +64908 015008 +084002 +092004 +007003 +015010 +083002 +085001 +085003 +089017 +092004 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +093001 +089017 +093001 +093001 +089017 +093001 +093001 +093001 +089017 +093001 +092004 +011003 +089017 +093001 +093001 +092007 +059003 +64943 068006 +031003 +092004 +033013 +089020 +009003 +089017 +093001 +092004 +010002 +092004 +093001 +089017 +64957 092004 +010003 +092004 +091001 +067007 +092004 +067009 +092007 +017001 +083003 +083003 +092004 +011002 +093001 +033006 +089017 +085001 +011001 +009001 +64977 092004 + +078003 +060002 +060002 +009002 +011002 +071005 +013004 +092004 +033005 +092006 +033024 +092004 +012001 +092004 +088003 +089012 +033006 +093001 +090006 +093001 +092004 +013002 +015023 +092004 +037006 +093001 +089007 +034003 +65008 089020 +092002 +089017 +057009 +092004 +037005 063004 +092004 +035002 +092007 +091001 +65019 092007 +057007 +001015 +057012 089012 +038002 +092004 +088002 +089015 +017004 +015001 +019003 +083003 +089015 +014005 +059003 +092004 +008002 +092004 +089015 +028002 +013002 +059003 +092004 +085005 +093002 +089008 +033009 +092004 +001015 +092007 +092004 +057001 +033001 +092004 +093002 +089019 +089019 +001015 +008002 +089007 +033005 +083003 +033005 +033007 +013002 +092004 +007002 +092004 +085005 +089017 +069002 +085001 +092004 +085005 +083003 +092004 +089017 +092004 +035004 053009 +092004 +057009 +058006 +089008 +071005 +092004 +009002 +015019 +092002 +067007 +063001 +067005 +092006 +041001 +65093 041001 +083003 +092002 +092004 +012001 +093001 +067003 +067006 +092004 +053005 +093001 +067006 +092004 +067009 +092006 +015024 +084001 +092002 +033020 +092004 +023007 +092004 +089020 +092002 +013002 +060002 +092007 +65121 030006 033034 +060002 +093001 +092004 +033009 +093001 +092006 +033009 +093001 +089017 +093001 +089015 +033013 +033006 +012001 +028001 +059003 +092003 +028003 +092006 +030006 +063004 +092007 +092004 +060002 +060002 +057009 +092004 +042002 087001 +092004 +035002 +092007 +089017 +053009 +089021 +092006 +068004 +093001 +015004 +084002 +092004 +080001 +092004 +058007 +089015 +057008 +006023 +092004 +089015 +030006 +092004 +030006 +65174 093001 +65176 060001 +089020 +092004 +060002 +053009 +091001 +067002 +092004 +067003 +092004 +067009 +092004 +051 +085001 +059003 +089020 +65193 092004 + +65196 013004 +067005 +084001 +092004 +001002 +014009 +064 +015001 +014002 +020001 +089017 +059004 +063001 +092004 +007002 +083002 +65213 017002 +089017 +024001 +092004 +015014 063006 +008002 +064 +002003 +089017 +085003 +083008 +060002 +059003 +092004 +089017 +059004 +059003 +012001 +088003 +089015 +068001 +033006 +058006 +033001 +078005 +092004 +012001 +013004 +033006 +092004 +65245 085005 +083003 +093002 +093001 +009001 +053001 +090003 +059003 +011003 +092004 +001006 +092004 +001002 001006 +089017 +013004 +092004 +014009 +092007 +015013 +092004 +011001 +089017 +025020 +089007 +024002 +060002 +059003 +092004 +058007 +033001 +033006 +092004 +089017 +025020 +089017 +025020 +033006 +091003 +65285 092007 +092004 +033006 +013001 +093002 +091002 +092004 +092002 +024002 +059003 +092004 +058007 +033001 +092002 +013001 +092006 +023003 +093002 +089017 +093002 +089017 +093002 +089017 +092004 +085005 +092004 +093002 +089017 +093002 +089017 +093002 +093002 +089017 +092004 +093002 +089017 +093002 +089017 +093002 +093002 +089017 +092004 +001011 +092004 +093002 +092004 +084002 +093002 +089017 +092004 +085005 +093002 +089017 +093001 +089017 +011002 +093002 +089017 +093002 +024002 +033006 +092004 +092004 +092002 +033001 +092004 +076 +092004 +012001 +65355 025020 +059003 +089017 +65359 058006 +090013 +058006 +033006 +033010 +089019 +092004 +089019 +089023 +058006 +033044 +033006 +090006 +006019 +059004 +013001 +089023 +085002 +089020 +092004 +060002 +092004 +093001 +033006 +092004 +033006 +092004 +089017 +033006 +092004 +009001 +093002 +089017 +092004 +085005 +093002 +059003 +092007 +092003 +028002 +013001 +089017 +024002 +092004 +033006 +092001 +089007 +069002 +064 +092003 +031005 +092007 +088037 +089007 +013001 +067009 +060003 +092004 +067009 +089023 +092007 +013001 +092004 +033006 +090001 +092004 +053009 +093001 +089015 +013004 +067007 +092004 +061 +067008 +033006 +092004 +012001 +047001 +063004 +092004 +012001 +092001 +083008 +059003 +009001 +089015 +033053 +092004 +010002 +092003 +089017 +092004 +010002 +092003 +089017 +092004 +009002 +092003 +033056 +024001 +089017 +092004 +009002 +092003 +033056 +033056 +65466 083008 +092004 +087005 +092001 +089017 +083008 +092004 +087005 +092001 +067007 +092004 +067008 +092007 +047001 +089025 +092004 +012001 +092001 +089015 +033053 +089017 +013004 +033056 +083003 +092004 +001002 +083009 +089017 +033056 +083008 +092004 +001006 +083009 +008002 +089017 +002003 +089017 +001005 +001005 +092004 +001004 +013002 +013002 +014007 +089017 +092004 +001004 +013002 +008002 +067002 +015006 + +012001 +092004 +078001 +089017 +079005 +089015 +013004 +059003 +65527 092006 +033012 +092004 +033009 +012001 +021006 +009001 +093001 +031007 +092004 +033006 +092007 +093001 +092004 +093002 +009002 +028003 +090001 +092004 +012001 +090013 +092003 +076 +089017 +033056 +089017 +033056 +092006 +090011 +090001 +092004 +092004 +012001 +083003 +083003 +092003 +064 +092008 +028001 +092007 +092004 +030005 +030004 +089017 +028001 +092004 +012001 +037007 +089012 +009001 +088018 +020004 +020004 +092006 +092004 +012001 +023007 +013001 018002 +092004 +024006 +092004 +023007 +089007 +069002 +013001 +071001 +037001 +092004 +090001 +092004 +089007 +093001 +033006 +090006 +092004 +024001 +092004 +012001 +083006 +092001 +067005 +067005 +089007 +65611 082002 +092001 +085001 +089009 +069002 +025021 +65619 025011 +092001 +092004 +026 +089017 +025011 +092004 +033006 +092001 +089017 +059008 +089017 +092004 +008002 +092001 +006016 +089007 +025004 +089007 +069002 +013003 +092004 +026 +092001 +083003 +001003 +069003 +013004 +092004 +053006 +092003 +090013 +023013 +028002 +092001 +041001 +023007 +059004 +092001 +025011 +089012 +092004 +085001 +092003 +009001 +011003 +071001 +033006 +089013 +65669 090013 +092003 +090006 +092004 +010002 +093001 +090006 +089017 +023007 +089017 +052 +089017 +092004 +007007 +092004 +085001 +083003 +092002 +067006 +092004 +067008 +092007 +089023 +053009 +013001 +089017 +028001 +090006 +033054 +033054 +092004 +092004 +012001 +089003 +010002 +092004 +008002 +092004 +017002 +083008 +092004 +006015 +092004 +028001 +033006 +090006 +092004 +023007 +092004 +053009 +090006 +069003 +035008 +083003 +001003 +069003 +092004 +008002 +092004 +090013 +023013 +092007 +092004 +093001 +023007 +092004 +012001 +092006 +059003 +092002 +013001 +033020 +089008 +092004 +076 +092004 +012001 +087003 +089017 +092004 +033025 +092004 +012001 +092004 +088003 +057009 +090003 +092004 +012001 +059006 +092007 +092006 +092003 +089017 +024001 +089017 +024002 +089007 +069002 +093001 +015010 +084002 +092004 +001002 +089023 +033006 +092008 +033006 +012001 +092004 +012001 +092001 +017002 +087003 +082002 +092001 +067006 +071001 +013001 +092004 +039001 +092003 +006015 037001 +092004 +037001 +092003 +089008 +031006 +032002 +059003 +011003 +093001 +090006 +089017 +012001 +089017 +053009 +037005 +092004 +012001 +092004 +092007 +092004 +093001 +092006 +092003 +020004 +089015 +024002 +025023 +092004 +025023 +089015 +033006 +090013 +092004 +093001 +089017 +092004 +063005 +053009 +092004 +042002 +009002 +011002 +65835 093001 +090013 +092004 +041005 +089017 +053005 +059003 +092003 +090006 +092004 +033009 +093001 +093001 +013002 +040002 +092004 +088038 +092003 +089015 +057009 +092004 +057008 +092004 +088003 +012001 +089007 +092003 +013003 +092004 +033025 +089017 +092004 +010002 +092003 +089017 +059003 +092004 +067006 084002 +083005 +071001 +059001 +033029 +012001 +092004 +012001 +092002 +089017 +058006 +033006 +059001 +033031 +089017 +033012 +092004 +033006 +021006 +089021 +092004 +010001 +092004 +088035 +092007 +091001 +65899 092004 +031007 +092004 +033006 +092004 +053005 +65906 059008 +067007 +092004 +067009 +092007 +009001 +078003 +060002 +089017 +65916 068006 +092004 +033017 +092004 +053009 +089017 +092004 +034001 +092004 +019004 +092004 +005001 +089017 +092004 +033013 +089017 +013004 +059003 +009001 +053007 +65937 059001 +033056 +089017 +033056 +090001 +092004 +053009 +013004 +089017 +059003 +092004 +65950 092004 + +057008 +059003 +057001 +089017 +092004 +057001 +089017 +092004 +057001 +057015 +089017 +057008 +092004 +059003 +078005 +071001 +092004 +057005 +090013 +089017 +089016 +067005 +068006 +031003 +083003 +092004 +007002 +089017 +023001 +089016 +007002 +023001 +057009 +005001 +089014 +025011 +089017 +088007 +026 +033037 +092004 +012001 +089017 +090013 +025008 +090005 +063001 +092004 +087004 +089017 +092004 +012001 +059008 +092004 +021006 +089016 +067005 +66010 092004 + +66013 093001 +089017 +093001 +015010 +084002 +092004 +007002 +067002 +092004 +067009 +092004 +033013 +092004 +060003 +089015 +66029 009002 +023009 +067006 +008002 +010002 +092004 +013001 +015024 +092006 +085002 +66040 067005 +083005 +092004 +007003 +092004 +007002 +092004 +033009 +079004 +092004 +033012 +057008 +090003 +092004 +015008 +084002 +092004 +007002 +092006 +024001 +093001 +089017 +093001 +067002 +015008 +084002 +092004 +007002 +033012 +057008 +057009 +089015 +093001 +024001 +084002 +092004 +089020 +092004 +093001 +033006 +024001 +084002 +092002 +089015 +092004 +024001 +092004 +030003 +092004 +090003 +092004 +057009 +089015 +033006 +093001 +006011 +66097 006011 +069002 +057001 +092001 +089023 +092006 +057001 +092007 +092003 +057008 +089012 +092004 +033009 +093001 +093001 +092004 +093002 +015029 +089015 +018001 +092004 +092004 +082002 +008002 +017001 +092004 +089015 +067005 +079013 +092004 +008002 +092004 +089017 +092004 +008002 +089015 +015031 +017001 +089017 +015029 +089015 +015008 +089020 +092004 +084002 +092004 +007002 +015029 +089017 +015031 +089017 +033037 +092004 +012001 +089015 +024001 +059003 +092004 +011001 +092004 +015029 +089017 +033037 +092004 +012001 +089015 +027007 +092004 +090006 +66167 013001 +092004 +089009 +092004 +057008 +017002 +083005 +092004 +079004 +007003 +092004 +007002 +66180 078004 +025020 +089017 +025020 +089007 +092004 +013004 +092004 +089015 +018001 +092004 +092004 +093001 +089017 +092004 +093001 +015013 +059003 +092004 +011001 +084002 +092004 +083005 +092004 +007003 +092004 +033009 +093001 +025020 +089015 +024001 +092004 +093001 +033004 +084002 +092004 +011001 +009002 +093001 +092004 +025020 +089007 +092007 +089024 +092002 +092004 +024001 +064 +057001 +076 +089024 +053001 +090011 +092004 +015029 +092004 +092004 +012001 +093001 +089017 +093001 +089017 +093001 +092004 +012001 +092004 +010002 +092002 +087003 +092004 +087005 +092004 +093001 +089023 +092006 +092003 +037007 +089017 +033022 +083007 +085001 +093001 +030005 +092007 +037010 +089023 +092003 +092004 +088003 +089017 +088002 +033022 +089017 +033012 +009002 +020004 +037001 +092003 +089023 +092004 +068001 +092004 +023007 +020004 +092006 +092004 +012001 +023007 +084001 +023007 +092006 +092002 +033020 +013001 +089017 +089007 +092004 +031009 +092004 +033009 +092004 +092007 +092006 +024001 +089017 +028001 +079013 +092004 +033009 +092004 +089017 +092004 +031009 +092004 +090001 +092004 +090012 +092004 +092004 +023008 +092007 +083007 +059003 +092003 +091001 +011003 +067002 +028001 +090006 +66330 028001 +042002 +064 +089017 +092004 +037004 +092003 +089023 +092004 +012001 +092006 +033024 +089012 +033006 +059003 +092004 +053009 +024006 +092004 +053009 +092004 +013004 +061 +089008 +041005 +089017 +031008 +66358 092004 +013003 +092003 +092004 +088038 +089009 +071003 +013004 +067008 +022005 025013 +090003 +085001 +092004 +012001 +089017 +015004 +092004 +030006 +092003 +093001 +093001 +071005 +091002 +092006 +001002 +057009 +067006 +067005 +013002 +059003 +092006 +033006 +092004 +012001 +089012 +033006 +092004 +088003 +66397 067002 +092004 +053009 +091002 +093001 +033006 +090006 +053009 +092003 +013003 +012001 +092004 +012001 +090003 +092004 +011003 +092003 +064 +092001 +092004 +031007 +089005 +059003 +071001 +059002 +033006 +090013 +092003 +089015 +013004 +059003 +009001 +071001 +092004 +069002 +036003 +092004 +053009 +092007 +020003 +089021 +092004 +011002 +089023 +089017 +059003 +092004 +053009 +067006 +093001 +089017 +092004 +061 +059001 +033006 +089017 +033015 +092004 +067008 +092007 +092003 +013001 +092004 +036004 +092004 +053009 +089017 +092004 +034005 +092006 +092004 +012001 +034005 +090013 +092004 +010002 +092003 +033006 +090013 +093001 +66478 090001 +092004 +010002 +092003 +088009 +059003 +092004 +011003 +092004 +009001 +092003 +060003 +092004 +012001 +023007 +092004 +087005 +092004 +015004 +092004 +088009 +092003 +089012 +092004 +031008 068004 +059003 +089021 +092004 +088015 +092003 +66509 033006 +092004 +084002 +092004 +011001 +017001 +092004 +092004 +053009 +089017 +092004 +037004 +092004 +007002 +089017 +092004 +011002 +088024 +090010 +092004 +033017 +092004 +092004 +011001 +089017 +033015 +090001 +092004 +093001 +092004 +023007 +092004 +089021 +023007 +66544 037006 +092004 +092004 +037006 +089015 +085002 +084002 +037009 +067006 +092004 +067010 +089007 +013004 +067009 +067002 +089023 +059001 +092004 +024002 +092004 +033006 +031006 031010 +089017 +013002 +060001 +092004 +009002 +078003 +060007 +060002 +089015 +013004 +067007 +092004 +067010 +015013 +092004 +092004 +037004 +089017 +092004 +053009 +089017 +092004 +053009 +083003 +093002 +089017 +093001 +092004 +053009 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +059001 +058010 +089003 +010002 058004 +053009 +089015 +085002 +092004 +083003 +092004 +083003 +033014 +089012 +058004 +076 +089024 +089012 +058004 +033009 +090011 +092007 +092003 +067002 +093001 +059004 +012001 +088003 +033006 +090013 +092004 +037004 +092004 +011003 +089017 +053009 +089010 +092002 +067010 +056004 +089007 +088001 +009002 +023009 +089012 +092004 +092007 +023008 +028002 +013001 +059003 +092003 +089017 +059003 +092004 +011002 +093001 +090006 +089012 +092004 +033009 +093001 +093001 +092004 +093002 +092006 +092003 +020004 +092006 +092004 +012001 +023007 +089021 +023007 +089012 +092007 +092007 +085001 +083006 +092003 +023008 +092007 +013001 +092004 + +092004 +088025 +090001 +092003 +092004 +045 +092004 +013002 +078005 +007003 +079023 +089017 +069002 +071001 +089012 090006 +058006 +092004 +092004 +021006 +089007 +069003 +013003 +001006 +092004 +001006 +033009 +058006 +092004 +66715 083003 +009001 +089012 +092006 +071005 +021006 +092002 +66723 032002 +092004 +092004 +093001 +089017 +093001 +025014 +089017 +032002 +090006 +009002 +027001 +013001 +089017 +027001 +025020 +089017 +027007 +092004 +090006 +089020 +092004 +093001 +085001 +089015 +024001 +092004 +009002 +092004 +023008 +089020 +092004 +085001 +092004 +033052 +074 +089015 +033032 +092004 +083004 +092004 +011003 +015004 +033011 +089020 +092005 +033006 +092004 +090011 +092004 +009002 +092007 +089007 +091002 +089007 +028003 058008 +033056 +013004 +090001 +092004 +059003 +092004 +085005 +093002 +028003 +089017 +069002 +074 +033022 +089023 +089009 +089009 +078005 +078002 +028002 084001 +083003 +092004 +011001 +033026 +092004 +067006 +033006 +090006 +092004 +033009 +092007 +092004 +009002 +089015 +033029 +092004 +033032 +078004 +069002 +033006 +069003 +033017 +090006 +092004 +033009 +092004 +093001 +089023 +092004 +093001 +089017 +093001 +033004 +033006 +090013 +092004 +089010 +066 +013001 +090005 +092004 +012001 +092003 +036003 +089023 +064 +092004 +012001 +030007 +089007 +069002 +074 +092002 +092006 +024001 +089017 +024002 +069002 +033006 +089015 +092004 +033026 +037010 +092004 +092004 +027002 +092004 +092004 +038001 +092004 +090010 +092004 +011001 +089007 +059003 +087003 +092004 +012001 +089007 +092004 +013004 +089007 +067009 +059001 +060002 +013001 +092004 +009002 +090009 +092006 +013004 +092004 +033056 +092007 +092004 +023008 +66895 037010 +015001 +084002 +092004 +057001 +089015 +033015 +059001 +090008 +092004 +092004 +053009 +089017 +092004 +053009 +033006 +089015 +092004 +033015 +031003 + +033006 +090013 +092004 +012001 +66921 033006 +037004 +092003 +092004 +042003 +092004 +001001 +66929 092004 +001001 +089017 +092004 +001010 +089017 +059003 +092004 +083003 +092004 +092004 +092004 +010002 +092002 +090001 +012001 +088003 +033006 +093001 +087005 +092003 +033006 +66953 088024 +011002 +089017 +011002 +030004 +032005 +017001 +092004 +037004 +092004 +009001 +089017 +092004 +037004 +015013 +66969 092004 + +090008 +092004 +012001 +089017 +090008 +092004 +053009 +092004 +089007 +015013 +66982 070 +083003 +092004 +001014 +092007 +090008 +092004 +088003 +087005 +092003 +093001 +092006 +037005 +089017 +093001 +089017 +093001 +093001 +089018 +011002 +089017 +011002 +093001 +042002 +059002 +013004 +092004 +076 +092003 +089017 +092004 +030004 +030005 +67016 012001 +092004 +067002 +030002 +090006 +092004 +033026 +092004 +089015 +090012 +092004 +087005 +092003 +089013 +025014 +078004 +033006 +092004 +033019 +092003 +067007 089012 +092004 +092004 +076 +016 +092003 +089009 +023008 +089017 +033056 +089017 +033056 +013004 +089012 +092004 +033009 +092004 +088003 +087005 +092003 +093001 +089015 +033012 +092004 +016 +092004 +080001 +083008 +092006 +67066 015013 +089017 +059004 +059003 +092004 +088003 +012001 +67074 033006 +092004 +033019 +092004 +012001 +089013 +025014 +67082 092004 +059001 +092004 +031010 +026 +089017 +026 +013001 +063001 +089017 +069003 +060002 +092004 +092004 +057001 +092004 +057001 +013001 +033006 +089023 +013001 +092004 +67105 089020 +089015 +076 +078001 +090011 +092004 +033020 +092004 +012001 +093001 +092004 +023007 +092004 +053009 +089017 +025008 +078001 +013001 +090013 +059003 +092004 +089007 +069003 +057006 +092004 +013001 +083003 +092004 +089007 +059001 +057001 +001015 +089024 +007002 +013003 +057015 +015024 +092004 +057012 +092004 +057015 +089015 +057008 +67149 092004 +057008 +092004 +053009 +089015 +057008 +059003 +078005 +071001 +092004 +057005 +090013 +67162 093001 +092004 +033009 +093001 +090001 +092004 +053009 +089019 +089019 +033010 +009001 +025013 +053009 +093002 +092004 +010001 +057001 +092004 +001015 +057015 +015023 +092004 +006011 +089015 +057008 +67188 092004 +057008 +092004 +053009 +089023 +009002 +67195 093001 +033009 +089020 +093001 +092004 +010004 +092004 +057015 +057001 +089015 +057021 +063004 +092004 +057012 +028001 +089017 +092004 +010004 +089015 +015023 +063004 +67217 083005 +092004 +057008 +092004 +053009 +057008 +089023 +033006 +092004 +093001 +093001 +67230 030001 +092004 +012001 093001 +092004 +030001 +092003 +033018 +092003 +092004 +012001 +092004 +088003 +089017 +057021 +063004 +092004 +057012 +092004 +001015 +069004 +013003 +092003 +013003 +089015 +057015 +013001 +092004 +092003 +037001 +013001 +092004 +090006 +030005 +67264 092004 +030005 +092003 +092004 +013004 +092007 +069002 +033018 +009001 +089023 +092004 +012001 +089015 +092004 +093001 +024002 +092004 +033006 +092007 +015012 +023007 +67286 013004 +025022 +078001 +090013 +059003 +092004 +024002 +089015 +017001 +092004 +067005 +015024 079026 +092004 +089015 +015024 +052 +089015 +091001 +078003 +067009 +060002 +067008 +089015 +092004 +010004 +092004 +069002 +028001 +092004 +013004 +015008 +089015 +033004 +090013 +092004 +093001 +033006 +092001 +090006 +059002 +092004 +001015 +057015 +089015 +092004 +033006 +069001 +059002 +089015 +092004 +093001 +090013 +092004 +092004 +090006 +031003 +092003 +027004 +092004 +012001 +012001 +091003 +092004 +008002 +092004 +052 +092004 +010004 +092003 +083005 +092004 +007003 +089015 +015024 +092003 +089015 +015012 +067005 +083005 +092004 +008002 +092004 +089017 +023007 +089015 +015008 +092004 +009002 +027002 +092004 +023007 +089015 +015024 +052 +083005 +092004 +010004 +092004 +089015 +013004 +025022 +078001 +090013 +063001 +092004 +011002 +089017 +090013 +059003 +092004 +033015 +092007 +67399 090002 +092004 +008002 076 +092004 +053009 +013004 +033056 +089017 +033056 +059001 +083003 +092004 +011001 +089017 +013001 +031003 +67416 083003 +092004 +007003 +093001 +089023 +092004 +063005 +092004 +025014 +034002 +092004 +089023 +087002 +092004 +092004 +011001 +67433 078002 +059008 +031010 +092004 +012001 +059001 +089017 +009002 +089017 +009003 +089008 +67445 084002 +092004 +001016 +015024 +092004 +023009 +089017 +085002 +083008 +006015 +089017 +006015 +089009 +015006 +093001 +089011 +092004 +014007 +014007 +092004 +092004 +089015 +015013 +089017 +092004 +011001 +092004 +083004 +093002 +001014 +015023 +023009 +089017 +022003 +090001 +012001 +053004 +092004 +059003 +023008 +089023 +017001 +092004 +053009 +089017 +059003 +092004 +089020 +092004 +092004 +058010 +011002 +092004 +011002 +059004 +088022 +67502 037006 +092004 +037006 +090013 +092004 +053009 +089015 +085002 +092004 +084002 +007002 037009 +028004 +089023 +012001 +012001 +067007 +067009 +67520 092004 +007003 +092004 +007002 +089015 +015023 +092004 +033006 +015004 +089015 +017001 085001 +033006 +083003 +092004 +007002 +092004 +011001 +059003 +092004 +033002 +092004 +023007 +092007 +089015 +036003 +015008 +067008 +092004 +067004 +084002 +092004 +007002 +089015 +033017 +089017 +015006 +092004 +053009 +089017 +092004 +089020 +092004 +033029 +092004 +011003 +089017 +059003 +092004 +011003 +092004 +011003 +093001 +089015 +015004 +084002 +092004 +007002 +015023 +092004 +089023 +092004 +015006 +035002 +069002 +027002 +092004 +083003 +092004 +007002 +089015 +015007 +033015 +033006 +090006 +027002 +092004 +007002 +079024 +089013 +078004 +021003 +089017 +092004 +037009 +085001 +083005 +092004 +007003 +089023 +079024 +083003 +092004 +027002 +089015 +067002 +024002 +092004 +033006 +092007 +089017 +092004 +037004 +092004 +007002 +089017 +092004 +053009 +032001 +089004 +092004 +071003 +092004 +013002 +092007 +089015 +015006 +092004 +033015 +092004 +090006 +091003 +092004 +009002 +092006 +085002 +084002 +092004 +007002 +085001 +017001 +083003 +092004 +007002 +089017 +033017 +092004 +011001 +067002 +015004 +092004 +037004 +089020 +092004 +035002 +015023 +092004 +069002 +089012 +020001 +089007 +025022 +092004 +011001 +089009 +020004 +089015 +015023 +092004 +085002 +083003 +092004 +011003 +089015 +056004 +092004 +092004 +053009 +033006 +033032 +033032 +092003 +069002 +033017 +090006 +092004 +033009 +092007 +67698 091003 +059004 +092004 +093002 +092004 +033017 +092003 +089017 +030004 +013001 +090004 +092002 +092004 +023007 +092004 +009002 +092007 +089023 +033014 +093001 +089017 +092004 +053009 +033006 +071004 +036003 +012001 +089023 +064 +009001 +092004 +012001 +092004 +010002 +092002 +023007 +093001 +092006 +092003 +020004 +020004 +083008 +006006 +092007 +092004 +012001 +036001 +089017 +021006 +087003 +092004 +082002 +092004 +092004 +67753 041005 +092004 +093001 +089017 +040002 +088038 +089017 +092002 +013001 +033020 +092004 +013004 +092007 +089017 +092004 +012001 +092004 +088003 +092006 +037005 +092004 +012001 +092004 +036003 +092004 +089023 +092004 +024002 +088024 +67783 030004 +020004 +092004 +089023 +017001 +67789 083003 +092004 +011003 +011002 +033009 +093001 +033017 +087002 +059003 +092004 +011001 +033032 +083004 +059002 +092004 +009002 +013001 +089015 +033006 +090013 +092004 +009002 +093001 +030001 +092004 +090013 +092004 +009002 +092007 +092004 +042002 +067002 +089007 +067002 +092007 +092004 +067008 +039007 +093001 +033006 +087003 +087003 092004 +092004 +092006 +034002 +009002 +060001 +078003 +060002 +092006 +020004 +089015 +059003 +059001 +031009 036004 +092004 +015014 +67847 013002 +089008 +092004 +067002 +092007 +013003 +093001 +092004 +093002 +067007 +092004 +067008 +092004 +033005 +089015 +039007 +011001 +036004 +092004 +092007 +020003 +089015 +059003 +059001 +033028 +092004 +015014 +67875 092004 +067002 +033006 +092003 +034004 +089021 +092004 +009002 +092007 +089017 +013004 +092004 +089007 +089010 +013001 +090003 +009001 +092004 +030004 +092007 +089024 +092004 +042002 +092007 +013003 +089023 +089010 +090003 +012001 +013001 +069002 +074 +013003 +092004 +67911 089017 +039005 +013001 +67915 031009 +092004 +089015 +033029 +092004 +053009 +019001 +033032 +089009 +033006 +090006 +092004 +033009 +092004 +093001 +089015 +037010 +091002 +67934 092004 +015004 +025011 +084001 +085001 +092004 +011003 +089007 090006 +065002 +089007 +092004 +033009 +087004 +089015 +059003 +067009 +083003 +092004 +007002 +089017 +089016 +007002 +069002 +068004 +033017 +089017 +033015 +092004 +093001 +093001 +67965 067007 +092004 +067008 +092007 +059007 +092004 +036004 +013004 +033041 +092004 +011004 +090008 +092004 +093001 +090006 +030002 +089004 +092004 +035004 057008 +092004 +067009 +092004 +010004 +092004 +67990 092004 + +033029 +092004 +011001 +092004 +036004 +033006 +069002 +066 +013001 +092002 +030002 +092004 +033019 +092004 +012001 +057020 +057020 +68010 011002 +030006 +009002 +063004 +092003 +033020 +060002 +059004 +012001 +089017 +032004 +092006 +037005 +037001 +092004 +042002 +092007 +089023 +092002 +092004 +033013 +089017 +092004 +035002 +092004 +033019 +068006 +091001 +025008 +092004 +033006 +090005 +059003 +092004 +011001 +089015 +030006 +093001 +009002 +059004 +031010 +089017 +012001 +088003 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +089017 +093001 +011002 +093002 +092006 +085002 +083006 +092004 +053009 +089015 +033013 +085002 +092004 +092004 +008002 +091001 +092004 +033019 +092004 +012001 +059007 +089017 +059007 +092004 +060001 +092004 +036004 +083003 +093002 +078001 +089017 +078001 +011001 +092004 +053009 +036003 +092004 +031010 +68103 093001 +059004 +088009 +089017 +076 +090011 +033056 +089017 +033056 +078001 +083003 +092004 +011001 +089023 +013003 +092004 +092004 +089003 +092004 +011002 +092004 +033009 +087005 +089017 +093002 +089017 +093002 +089017 +092004 +084001 +093002 +089017 +093002 +033050 +092004 +093001 +68140 069002 +074 +039003 +092004 +032004 +089017 +092004 +012001 +092006 +033006 +067002 +057013 +009002 +033006 +090006 +024002 +092004 +033006 +033006 +033042 +090013 +093001 +089017 +092004 +012001 +089017 +039001 +092004 +087004 +089017 +092004 +053009 +089017 +092004 +053009 +68176 039010 +018001 +092004 +089015 +015023 +084002 +092004 +011003 +089015 +085002 +033020 +033018 +033006 +092004 +009002 +092007 +069002 +068004 +033006 +033006 +090008 +092004 +080001 +092004 +007002 053006 +089017 +092004 +033005 +089007 +024002 +092004 +033006 +090006 +093001 +092004 +093002 +092007 +020003 +092004 +080001 +092007 +089017 +058006 +092004 +041002 +092006 +033017 +092002 +093001 +089015 +024001 +090013 +092004 +059003 +092004 +017002 +083003 +092004 +011003 +024001 +092004 +008002 +092004 +064 +008002 +012001 +089015 +033006 +092004 +053009 +090006 +092007 +061 +013001 +089015 +092004 +033006 +009002 +011002 +089017 +011002 +024002 +092004 +012001 +092004 +079005 +024001 +092004 +010002 +092002 +093001 +085001 +083003 +092004 +093002 +067002 +68273 085005 +092004 +083003 +093002 +089015 +033006 +090013 +092004 +015004 +084001 +092004 +001011 +092003 +089017 +092004 +010001 +092003 +089015 +084002 +084002 +092004 +001011 +071001 +092006 +092003 +028003 +067002 +015004 +084001 +001011 +093002 +085005 +083003 +093002 +084001 +067002 +092004 +023007 +092004 +010002 +092004 +085005 +092004 +084002 +092004 +001011 +092007 +083003 +092006 +092003 +067002 +085005 +091002 +069002 +057008 +092004 +057009 +083003 +092004 +069003 +080001 +008002 +68336 033025 +057008 +092004 +68340 057001 +092004 +089017 +092004 +010002 +092004 +067002 +092004 +069002 +013003 +092004 +010002 +089015 +033006 +061 +092004 +012001 +090006 +085001 +092004 +010002 +092004 +011003 +083003 +001011 +092004 +089015 +087005 +089017 +020002 +092004 +067009 +060002 +089015 +092004 +011003 +071001 +092006 +087005 +056005 +092001 +092004 +012001 +033006 +089015 +067002 +092007 +015004 +089015 +053001 +092001 +083003 +092004 +080001 +092007 +089017 +057008 +092004 +034005 +053006 +68401 061 +023003 +092004 +093001 +089015 +053006 +092004 +092004 +067009 +092004 +060003 +089015 +093001 +092004 +093001 +089015 +093001 +092004 +060002 +010002 +089015 +092004 +010002 +088022 +092004 +093001 +057015 +084002 +093002 +68431 085001 +092004 +012001 +089020 +092004 +089015 +021005 +092004 +068004 +059003 +092004 +022001 +092004 +089017 +057008 +092004 +025008 +089017 +032004 +090005 +093001 +037004 +093002 +089015 +037005 +092004 +037004 +037001 +093002 +089017 +063001 +092004 +010001 057001 +092004 +68466 013004 +023001 +090013 +063001 +092004 +093002 +089017 +093002 +089017 +022001 +078001 +68478 069002 +027002 +005001 +092004 +010002 +092002 +089023 +093001 +033015 +085001 +003004 005001 +083003 +093002 +015004 +092004 +010002 +092002 +060003 +089015 +067007 +092004 +060003 +68501 093001 +092004 +010003 +092004 +089015 +028003 +013002 +092004 +093001 +092004 +010001 +093001 +089015 +015004 +093001 +033029 +093001 +092004 +010002 +092004 +089017 +059003 +092004 +010001 +089025 +009001 +060002 +060002 +089015 +015011 +093001 +084002 +093002 +089015 +023007 +092004 +089017 +092004 +010002 +092002 +089015 +015001 +084002 +093002 +089015 +085002 +084002 +092004 +007007 +092006 +057015 +093001 +057012 +006011 +090003 +092004 +010002 +093001 +083003 +093001 093002 +68562 067002 +067002 +092004 +067001 +092004 +033025 +092006 +033016 +092004 +012001 +092004 +093001 +092004 +011002 +059007 +089017 +059007 +083003 +093002 +067006 +092006 +013003 +037001 +093002 +037004 +058006 +092006 +069002 +028001 +092004 +093001 +092007 +088019 +092004 +010001 +092002 +020002 +092004 +010002 +092004 +013001 +092004 +009004 +092004 +085002 +089009 +092004 +069002 +023007 +067007 +092006 +067001 +023003 +093001 +089017 +013001 +079004 +092004 +012001 +092006 +035006 +067009 +060002 +083003 +092004 +010001 +092004 +010002 +089015 +085002 +092004 +035007 +092004 +092004 +010002 +093001 +089015 +035006 +092004 +092004 +68643 010002 +68645 033017 +093001 +059003 +032004 +093002 +089017 +013001 +074 +089004 +033006 +089017 +042002 +092004 +089023 +067002 +067003 +092004 +067009 +067005 +030001 +68666 092004 +026 +092004 +034006 +092004 +011003 +092004 +092004 +011003 +093001 +089015 +024001 +092004 +088016 +035001 +68682 090011 +039006 056006 +092004 +088016 +020004 +092004 +093002 +68690 031005 +032001 +092004 +011002 +090006 +092004 +012001 +090002 +009001 +092004 +057008 +021005 +092004 +089023 +092004 +069002 +032001 +089015 +092004 +067010 +067009 +024001 +092004 +039005 +089015 +040001 +092004 +013002 +022007 +033006 +009002 +011002 +013001 +68725 020002 +092005 +089023 +092004 +020002 +092004 +011003 +015004 +092004 +033006 +092004 +092003 +037005 +037004 +089017 +056005 +037001 +092002 +069005 +020004 +092001 +092003 +025001 030004 +092006 +089014 +020004 +067010 +092004 +093002 +68755 015004 +093001 +089007 +092004 +033006 +092007 +68762 013002 +011003 +083003 +001011 +093002 +083002 +023003 +010002 +060002 +089015 +067003 +067005 067009 +060002 067005 +024001 +092004 +083003 +092004 +001013 +092004 +001007 +093002 +012001 +089013 +002003 +002003 +003003 +68789 092004 +093001 +024001 +025020 +092004 +024001 +089015 +015005 +092004 +030001 032002 +085001 +033006 +012001 +092001 +092004 +012001 +092004 +010002 +092003 +092004 +012001 +093001 +089017 +093001 +089017 +093001 +089023 +016 +013002 +093001 +069002 +025014 +024001 +089015 +033006 +092004 +092004 +012001 +018002 +092004 +006017 +092004 +008002 +092003 +089007 +092004 +080001 +083008 +092006 +017001 +001009 +088003 +085001 +024001 +024001 +092004 +020002 +092004 +011002 +092001 +092004 +083003 +093002 +089017 +092004 +025012 +68856 024002 +68858 015011 +021005 +092004 +68862 067002 +084002 +015004 +092003 +084002 +093002 +092007 +092004 +093001 +092006 +036004 +033006 +092004 +092003 +037005 +037004 +089017 +056005 +092007 +092004 +012001 +089017 +037004 +089017 +037010 +015004 +090001 +090001 +012001 +092004 +024001 +092004 +083003 +092004 +003003 +092007 +015023 +092004 +090011 +033056 +089017 +033056 +083003 +001011 +093002 +089015 +083005 +079007 +001010 +089015 +083003 +092004 +001013 +067005 067009 +067005 +092007 +013001 +092004 +093001 +092004 +033006 +092004 +011003 +093001 +053009 +092003 +017001 +092004 +012001 +089003 +092004 +011002 +092003 +064 +092001 +092007 +013001 +092004 +085001 +083003 +092004 +011003 +083003 +092004 +001013 +089020 +092004 +012001 +092004 +033006 +092004 +083005 +092004 +001007 +093002 +089017 +092004 +010002 +092002 +092006 +057009 +033006 +023007 +057008 +68967 092006 +069002 +025001 +036003 +013002 +092004 +010002 +092002 +089023 +031008 +089017 +031008 +089004 +092004 +026 +092004 +084002 +093002 +033006 +092004 +093001 +042003 +092002 +012001 +092006 +015023 +092002 +089007 +092004 +093001 +092007 +092006 +015023 +092002 +084001 +001011 +093002 +069002 +028001 +092004 +013004 +092004 +69010 006013 +067007 +092004 +067008 +092007 +089015 +015024 +053002 +092004 +006013 +089015 +025011 051 +089004 +092004 +042002 +092004 +008002 +092004 +69029 034002 +092004 +012001 +69033 037007 +092004 +053001 +092004 +012002 +092004 +001002 012002 +064 +033005 +090006 +033005 +092004 +053009 +069005 +053002 +089017 +053002 +057008 +092001 +067005 067009 +060002 067005 +083003 +092004 +001013 +011003 +093001 +69060 015024 +092004 +007002 +092004 +093001 +089017 +092004 +001004 +092004 +012001 +093001 +092004 +006013 +092006 +042003 +053007 +092004 +69078 085005 +092003 +083010 +093002 +092004 +007002 +092004 +033020 +085001 +092004 +010002 +092002 +083003 +092004 +001013 +064 +033032 +092004 +033006 +092004 +093001 +042003 +092004 +089005 +092004 +058009 +092006 +024001 +092006 +089017 +015024 +057009 +092004 +010002 +092002 +089020 +093001 +067002 +092004 +057007 +092004 +011003 +092006 +015004 +092004 +012001 +084001 089021 +083006 +092004 +010002 +092002 +067006 +092004 +067008 +093001 +092006 +090013 +025008 +083006 +092004 +012001 +089017 +033012 +013001 +007002 085005 +092004 +007002 +093001 +089023 +093001 +045 +092004 +007002 +089023 +069002 +092004 +012001 +083003 +042003 +085005 +064 +092004 +053009 +033006 +092004 +001002 +092001 +006015 +089017 +092004 +001006 +006015 +092004 +008002 037001 +092001 +058004 +007002 +045 +092001 +033006 +012001 +089024 +092004 +080001 +092004 +023006 +092001 +069004 +092004 +009001 +092001 +042003 +092007 +059003 +088028 +089017 +088028 +026 +69197 092004 +008002 +092003 +067005 +092004 +012001 +092004 +088003 +039003 +064 +092004 +010002 +092003 +089017 +092003 +092004 +092004 +053009 +069002 +039009 +092004 +010002 +092003 +089017 +020004 +092004 +033024 +089004 +092004 +015006 +092004 +088002 +092006 +067002 +092003 +037007 +089017 +020004 +013002 +092004 +057009 +092004 +033005 +089012 +033032 +012001 +091002 +069002 +036003 +69247 024002 +092007 +088024 +092004 +026 +092004 +089017 +023002 088024 +092004 +008002 +090008 +092004 +089023 +013001 +059004 +012001 +088003 +024001 +084002 +092004 +001002 +024001 +079005 +012001 +089017 +093001 +085001 +69275 082002 +092004 +012001 +089015 +033006 +091003 +024001 +092004 +001002 +079024 +089017 +092004 +009001 +092004 +009001 +69291 082002 +092004 +012001 +085001 +089023 +033006 +033006 +078001 +024002 +092004 +024002 +092004 +089015 +015027 +031003 +090008 +092004 +089015 +015004 +083004 +092004 +001014 +020004 +089017 +092004 +033020 +085002 +092004 +006017 +092004 +083005 +092004 +008002 +009002 +033009 +093001 +089015 +020004 +092004 +093001 +033009 +69333 033006 +012001 +093001 +057009 +092004 +026 +092001 +089015 +017003 +092004 +017003 +033006 +033006 +078001 +012001 +069002 +076 +092004 +092007 +092004 +088038 +089015 +092007 +033006 +023007 +69359 093001 +69361 031003 +092004 +020004 +092004 +69366 091001 +067007 +092007 +092004 +067009 +039009 +078001 +090008 +092004 +011002 +092004 +083003 +093002 +69380 059003 +015014 +084003 +092004 +001011 +092004 +093002 +089017 +093002 +089023 +092004 +053009 +69393 052 +092004 +093001 +009001 +053001 +089017 +090011 +052 +078001 +090013 +092004 +089023 +093001 +020002 020003 +092004 +011002 +089016 +092004 +007002 +015008 +015023 +089017 +009002 +089017 +009003 +037007 +084002 +007002 +69422 091001 +092004 +015014 +015002 +033015 +092004 +033019 +089017 +093001 +015011 +084002 +092004 +001014 +092004 +093002 +033019 +092004 +092004 +053009 +089015 +030001 +092004 +011001 +092004 +033006 +090001 +092004 +093001 +031003 +089007 +092004 +033015 +092004 +089017 +024001 +092004 +033056 +092006 +090011 +089007 +059001 +092004 +090013 +012001 +053004 +033006 +033006 +078001 +015004 +089017 +059001 +023009 +089017 +023009 +023008 +69478 085001 +078001 +025011 +083003 +092004 +001014 +092007 +69486 009002 +69488 033009 +093001 +013003 +083003 +092004 +001014 +053010 +089017 +025020 +092004 +011003 +092004 +093002 +033006 +058010 +092004 +087003 +092004 +092006 +030001 +059003 +69510 087004 +059002 +087003 +033006 +092007 +013001 +092004 +012002 +092004 +012001 +092004 +033009 +087003 +69524 030001 +092004 +090010 +092004 +059002 +067005 +092004 +053010 +025020 +092004 +089023 +69536 031009 +092004 +093001 +033015 +090006 +092004 +037004 +092004 +012001 +089017 +092004 +033009 +093001 +093001 +053005 +089017 +009002 +089017 +009003 +089015 +092004 +093001 +089017 +092008 +031010 +089015 +053005 +69564 034001 +092004 +093001 +024001 +089017 +033056 +089017 +076 +078001 +013004 +025020 +69576 092004 +083003 +093002 +053009 +033015 +090006 +031007 +092004 +093002 +092004 +033019 +092004 +012001 +015004 +084002 +092004 +093001 +089017 +093001 +69596 015011 +033013 +090009 +092004 +089009 +057009 +012001 +088003 +089007 +067006 +69607 013004 +090013 +092004 +092004 +089023 +69613 053005 +013001 +090006 +092004 +033009 +092004 +012001 +093001 +067002 +085002 +092004 +008002 +084002 +092004 +089015 +057009 +012001 +088003 +69632 092004 +093001 +024001 +090006 +089012 +092004 +085002 +092004 +008002 +092004 +053009 +057008 +092004 +012001 +015024 +092004 +006011 +033006 +057008 +089017 092001 +092004 +076 +092007 +089008 089009 090006 +071001 +092006 +085002 +092004 +008002 +057009 +012001 +088003 +089023 +093001 +033006 +090013 +092004 +092004 +006011 +092003 +089020 +092003 +013002 +69676 020003 +089007 +031005 +092004 +057008 +092004 +012001 +090002 +006011 +057007 +069002 +013003 +092003 +063004 +069003 +063004 +089004 +092004 +013004 +092007 +089007 +092004 +026 +092003 +069002 +013001 +088002 +090005 +092004 +012001 +089008 +041005 +089021 +092004 +088015 +092003 +092007 +089017 +033012 +092004 +012001 +071003 +089010 +040002 +092003 +092004 +030004 +092004 +026 +092003 +089007 +088022 +008003 088022 +079008 +089017 +018002 +088002 +092003 +69735 032002 +69737 033014 +092004 +093001 +033006 +033012 +092003 +090009 +092001 +090013 +092004 +012001 +089009 +013004 +090013 +092001 +092004 +092006 +033006 +091001 +69757 092004 +033016 +089017 +033006 +092004 +033019 +092004 +012001 +015007 +084002 +093002 +089017 +059001 +011003 +092004 +093002 +033015 +69775 012001 +012001 +033006 +090013 +093001 +033006 +015004 +089015 +015002 +083007 +067004 082001 +083008 +092004 +001016 +092004 +015011 +084001 +093002 +084002 +093002 +092007 +013001 +001013 +69799 015004 +015002 +089015 +091003 +009002 +093002 +009002 037004 +037004 +037004 093001 +037004 +093002 +092006 +013001 +037001 +063001 +092004 +057004 +092004 +092006 +015006 +053007 +084002 +093002 +69824 015007 +089017 +017002 +083008 +092004 +006009 +092004 +089017 +033005 +092004 +053009 +093001 +089015 +033006 +092004 +012001 +092004 +093001 +015005 +089015 +034002 +092004 +006009 +092007 +69849 015030 +092004 +093001 +024002 +092004 +033005 +093001 +092004 +053009 +089015 +033006 +069005 +091002 +032002 +092006 +033005 +089015 +092004 +033006 +091001 +071003 +092004 +074 +69874 092004 +027001 +092001 +089015 +033030 +092004 +093001 +015009 +017002 +089020 +092004 +69886 092004 +033002 +092004 +033005 +092006 +033005 +013001 +092007 +064 +004001 +084002 +020004 +015023 +089017 +064 +004001 +083006 +092004 +69905 092004 +033006 +061 +069002 +033004 +092004 +033006 +092004 +013001 +092004 +087004 +092004 +056005 +092004 +020003 020004 +092004 +010002 +092004 +092004 +033015 +089007 +020003 +084001 +092004 +001006 +092004 +023007 +092004 +089015 +033004 +092004 +009002 037004 +092004 +093001 +033006 +033012 +092003 +090006 +092004 +092004 +053009 +033006 +092007 +090006 +092004 +089024 +090006 +058006 +092004 +089015 +092004 +093001 +033004 +092004 +033006 +092004 +089015 +068001 +69964 092004 +033005 +092007 +033015 +092004 +092004 +093001 +69972 067007 +015001 +084003 +092004 +001016 +015006 +084002 +092004 +002004 +089015 +033006 +092004 +009002 037004 +091003 +002004 +092004 +013004 +092001 +053005 +69992 033032 +068004 +092004 +006009 +089015 +015011 +059003 +084002 +092004 +002004 +089017 +092004 +093001 +089017 +092004 +009002 037004 +089015 +053005 +092004 +089015 +70013 015010 +084001 +092004 +002004 +012001 +012001 +018001 +092004 +093001 +089015 +069002 +024001 +092004 +067006 +092004 +009002 037004 +70030 015001 +092004 +015002 +092004 +025011 +089023 +093001 +027002 +083003 +093002 +089015 +015002 +033015 +092004 +001014 +059003 +067006 +092004 +015006 +092004 +084002 +093002 +089023 +092004 +093001 +067006 +033026 +033026 +70059 020004 +090013 +092004 +036004 +092004 +012001 +015005 +092004 +053009 +033012 +090003 +092004 +006010 033005 +084002 +093002 +084002 +092004 +011002 +089009 +067002 +027002 +092004 +092004 +041003 +013001 +089017 +009002 +089017 +009003 +037008 +015023 +084002 +093002 +70093 067007 +092004 +015002 +013004 +092004 +015005 +092004 +093002 +089015 +067005 +092004 +014006 +014006 +084001 090003 +092004 +001002 +70110 015012 +084002 +092004 +002005 +024002 +033006 +033006 +092004 +093001 +093001 +092004 +092001 +039009 +089015 +033006 +092004 +013001 +012001 087003 +089015 +092004 +092001 +013001 +093001 +092006 +092003 +039009 +089023 091001 +017001 +089015 +015008 +084002 +092004 +001014 +089015 +033006 +092003 +092004 +092004 +092003 +042002 +071004 +70152 092004 +009002 +092004 +015019 +092004 +017001 +033006 +089023 +024002 +092004 +033006 +089023 +092004 +024001 +089015 +017001 +093001 +084001 +092004 +002005 +089023 +079024 +092004 +008002 +092004 +092004 +024001 +70180 015023 +092004 +015023 +084002 +093002 +089015 +085001 +024001 +067009 +060002 +069002 +089017 +069002 +023001 +069003 +023001 +70197 085001 +70199 036004 +033009 +093001 +083003 +093002 +089017 +033006 +090013 +092004 +013001 +033056 +092004 +012001 +093001 +70214 092004 +033006 +091003 +092001 +012001 +089015 +092004 +012001 +090013 +092004 +017001 +015001 +084002 +092004 +001016 +092004 +033009 +079017 +089015 +027004 +083003 +007002 +093001 +093001 +033009 +093002 +089007 +091003 +033013 +089017 +024001 +009002 +093001 +033009 +015008 +089015 +085002 +092004 +008002 +089009 +024001 +089023 +033014 +093001 +012001 +033015 +090003 +059001 +090006 +092004 +009002 +092007 +059001 +088015 +092004 +011002 +092003 +090011 +083003 +093002 +089017 +083001 +057001 +037003 +090003 +092004 +053009 +037008 +059003 +092004 +011002 +092004 +009001 +092003 +089023 +033006 +090013 +092004 +092004 +012001 +015001 +089007 +009001 +030006 +013001 +092001 +092007 +092004 +033015 +092004 +033009 +092001 +083006 +089017 +011002 +089017 +037004 +089017 +011003 +093001 +089007 +092001 +028003 033010 +092004 +059002 +092004 +090009 +092004 +033009 +092001 +090013 +071005 +70327 015004 +093001 +089015 +015008 +084002 +092004 +007002 +089015 +085002 +083008 +092004 +092004 +008002 +033006 +093001 +011002 +092004 +012001 +093001 +092004 +024001 +092003 +083008 +092004 +001016 +092006 +015006 +015004 +092001 +089009 +024001 +089017 +059004 +012001 +088003 +089015 +067002 +015012 +084001 +092004 +092004 +008002 +064 +008002 +089017 +024001 +089017 +017001 +053005 +089015 +057009 +005001 +079013 +70381 085001 +089020 +092004 +083003 +093002 +036004 +067009 +092004 +089017 +067002 +083003 +092004 +007002 +033019 +092004 +093001 +090006 +092007 +013001 +092004 +012001 +092004 +012001 +70405 025020 +059003 +092004 +024002 +089015 +033006 +069004 +092007 +013001 +092004 +020003 +083003 +093002 +092004 +033009 +092004 +033009 +092007 +089017 +083001 +089009 +092007 +015006 +089009 +037008 +092004 +015023 +083006 +092004 +053009 +089023 +093001 +078002 +074 +089017 +025020 +093001 +092004 +085005 +083003 +093002 +028003 +090006 +092007 +013001 +092004 +053009 +089023 +067002 +067003 +067009 +059001 +030004 +092004 +093001 +020004 +092004 +089023 +027001 +092004 +093001 +092004 +030004 +092004 +089017 +024001 +089017 +092004 +007003 +089017 +067005 +089017 +067005 +089009 +092004 +020004 +089023 +018001 +092004 +036004 +092004 +067009 +084003 +092004 +007006 +015011 +092004 +015011 +083003 +006016 +089015 +015006 +083003 +093002 +068005 +034002 +092004 +036004 +70504 059003 +025022 +092004 +069002 +031006 +090006 +058010 +036004 +089023 +093001 +018001 +092004 +015023 +084002 +092004 +053009 +089015 +033015 +092004 +092004 +083008 +092004 +001016 +024001 +092004 +012001 +089017 +090006 +033006 +092004 +089015 +092004 +083003 +093002 +033006 +090006 +092004 +033009 +093001 +70544 085001 +041001 +70547 041001 +089020 +092004 +083003 +093002 +033006 +090006 +092004 +033009 +092004 +012001 +089017 +033006 +089017 +033050 +090008 +092004 +011004 +089023 +092004 +068005 +020004 +092004 +089023 +027001 +092004 +011002 +015023 +092004 +084002 +093002 +089015 +015004 +092004 +084002 +093002 +091001 +70585 092004 +011002 +083003 +063001 +092004 +093002 +089017 +093002 +089017 +093002 +090013 +022007 +074 +089017 +041001 +092004 +053007 +092004 +012001 +089017 +092004 +025013 +092004 +088003 +012001 +059007 +70612 013004 +093001 +015002 +084003 +059003 +015011 +089017 +084002 +092004 +011002 +092004 +085005 +093002 +089015 +027002 +083001 +009002 +70630 033009 +093001 +067006 +067009 +060002 +017007 +083008 +006015 +092006 +70640 023009 +089015 +033006 +092004 +092004 +093001 +093001 +023008 +092003 +093001 +093001 +017001 +089015 +046 +092003 +089015 +067002 +017001 +089015 +024001 +092004 +059003 +092004 +085005 +093002 +089017 +092004 +093002 +092004 +031008 +084002 +092004 +012001 +70674 083003 +093002 +085001 +70678 036004 +033009 +093001 +092006 +033010 +033010 +093001 +092007 +013001 +059001 +042002 +088001 +089017 +057008 +092006 +090011 +70695 013004 +067007 +092004 +067008 +092007 +023009 +092004 +023007 +089015 +047002 +085002 +083003 +007003 +70709 085001 +093002 +083005 +092004 +093002 +092004 +036004 +033015 +090006 +093001 +085001 +083003 +092004 +015004 +060002 +009002 +084002 +092004 +033012 +089009 +067006 +015001 +084002 +092002 +089015 +017001 +093001 +015019 +092004 +092006 +015006 +015023 +084002 +092004 +007003 +089015 +085001 +092004 +059003 +092004 +010004 +025012 +089017 +024001 +006017 +089017 +006017 +059001 +090011 +089020 +092004 +085001 +092004 +093001 +089015 +092004 +093001 +015004 +084002 +059003 +089015 +017003 +092004 +017003 +033013 +089015 +015007 +084002 +092004 +008001 +033006 +093001 +017001 +089015 +092004 +079024 +092004 +008002 +092004 +089015 +024001 +092004 +093001 +017002 +089015 +085002 +092004 +008002 +017001 +092004 +089015 +033029 +092004 +011002 +089017 +092004 +010004 +085001 +092004 +023007 +70810 028002 028003 +013002 +084003 +063001 +092004 +093002 +70817 031009 +059001 +70820 092004 +012001 +089015 +013004 +067009 +059001 +085003 +083003 +093002 +089020 +70831 093001 +006017 +70834 009002 +70836 083003 +093002 +033009 +093001 +055004 +089003 +055003 +092004 +033009 +093002 +053001 +089017 +053007 +092004 +012001 +089020 +059003 +092004 +010001 +092004 +090011 +057008 +059001 +092004 +087004 +089017 +033012 +092004 +012001 +067001 +067001 +024001 +013001 +033056 +024001 +078003 +067002 +067009 +060003 +092004 +067009 +012001 +092004 +012001 +015008 +084002 +092004 +089015 +033006 +092004 +093001 +089015 +092004 +024001 +092004 +089015 +025022 +013002 +033006 +092004 +013004 +012001 087003 +089015 +033006 +092004 +092004 +033013 +092003 +089017 +092004 +057008 +092003 +015010 +70910 029002 +083006 +092004 +012001 +70915 067002 +015004 +009002 +084002 +093002 +089017 +015004 +093001 +70924 092006 +033009 +093001 +092007 +034008 +089020 +70931 093001 +006017 +092006 +085001 +007002 +083005 +001010 +089015 +067002 +015004 +092004 +012001 +092004 +033006 +092004 +033029 +060002 +092004 +046 +089017 +055004 +053001 +092004 +035002 +092004 +089015 +033015 +059003 +092004 +015004 +092004 +084002 +092004 +093002 +70966 092004 +067010 +015002 +092007 +089017 +092004 +001014 +015005 +015010 +093001 +084002 +092004 +007003 +033013 +067002 +067009 +060003 +089015 +013002 +023001 +089017 +025001 +023001 +089023 +046 +092004 +013004 +090013 +092004 +033056 +089015 +024001 +092004 +001002 +079024 +089015 +015011 +006001 006016 +71005 064 +006017 +079028 +060002 +079023 +015011 +084002 +092004 +001006 +083003 +092006 +013001 +058004 +092004 +004001 +089017 +004004 +092004 +001006 +089017 +004002 +092004 +004002 +089015 +013004 +033006 +084002 +092004 +093001 +017001 +020004 +089015 +023001 +089023 +092004 +093001 +033006 +069002 +012001 +089007 +067001 +023001 +059003 +053004 +089017 +053004 +089015 +033006 +067002 +067002 +060003 +090013 +092004 +092006 +092004 +012001 +053003 +092003 +069002 +053004 +089015 +092007 +013004 +078005 +060005 +089015 +067002 +015024 +092004 +006001 006016 +084002 +092004 +001002 +71079 067007 +090013 +092004 +032001 +092004 +093001 +071001 +092004 +058010 +092004 +033056 +092006 +024001 +091003 +092004 +009002 +092004 +015004 +090001 +092004 +093001 +027001 +092004 +007002 +092004 +093001 +017001 +083005 +092004 +007003 +089015 +033006 +033014 +090006 +093001 +092004 +033009 +093001 +083001 +034008 +71120 092004 +093001 +030001 +090006 +092004 +033056 +033006 +092004 +012001 +091003 +009002 +71132 027004 +092003 +091001 091002 +017001 +015011 +089015 +015001 +089020 +092004 +092004 +031006 +089007 +092001 +015004 +092004 +089015 +015011 +093001 +090013 +092004 +009002 +033006 +091003 +092001 +013001 +092006 +027004 +092004 +092004 +089007 +089007 +092006 +085001 +089015 +092004 +033006 +093001 +055004 +009002 +088002 +089017 +053007 +092004 +012001 +089017 +033020 +090001 +063001 +092004 +011003 +092004 +093001 +028003 +090001 +012001 +088003 +015004 +092003 +084002 +092004 +007002 +092004 +089015 +024002 +033006 +090003 +092003 +089008 +033030 +092004 +034008 +089015 +092004 +067010 +017001 +015004 +089020 +092004 +089017 +092004 +092004 +011002 +092004 +084001 +093002 +015019 +092004 +089015 +092004 +067010 +015008 +084002 +092004 +093002 +089015 +092004 +093001 +71230 030003 +092004 +033029 +092004 +010001 +092004 +089017 +092004 +034001 +034001 +089015 +067002 +013004 +092004 +015008 +092004 +093001 +013004 +092004 +092004 +093001 +017005 +083005 +092004 +008002 +017005 +089023 +092004 +093001 +017001 +092004 +033006 +017001 +089017 +092001 +092008 +009001 +058010 +089015 +033011 +092004 +015008 +089015 +027002 +015013 +059001 +089015 +033006 +090013 +092004 +092003 +028001 +090006 +013004 +013001 +009001 +093002 +034002 +089024 +034002 +011002 +092001 +092004 +012001 +028003 +092004 +009001 +053004 +089024 +053004 +033009 +089008 +71303 033052 +015006 +015004 +089008 +033014 +092004 +089007 +015004 +092001 +089015 +092004 +093001 +033006 +71317 060003 +067009 +067006 +092007 +092004 +067009 +71324 033013 +092004 +060003 +083003 +092004 +007002 +092001 +089015 +091003 +009002 +085001 +083006 +092001 +013001 +006017 +014006 +089015 +033006 +093001 +024002 +092003 +092004 +033013 +089017 +092004 +057008 +092003 +029002 +090005 +092004 +012001 +089008 +015004 +084002 +093002 +089017 +033029 +093001 +092006 +033009 +093001 +092007 +034008 +083003 +007002 +093001 +006017 +083005 +001010 +089008 +067005 +015004 +084002 +092003 +089015 +092003 +088001 +041001 +015006 +089008 +067002 +059003 +092002 +090005 +092004 +012001 +085001 +024002 +059003 +092004 +033032 +092003 +090001 +092004 +012001 +089015 +093001 +033004 +092004 +033006 +033006 +71406 070 +032002 +090006 +069002 +058010 +088030 +092004 +012001 +089023 +083003 +059003 +011003 +092004 +053007 087002 +092004 +089017 +090011 +088002 +025008 +092004 +013001 +092004 +033006 +092006 +015004 +092004 +011003 +093001 +033015 +022007 025021 +090001 +093001 +093001 +092007 +013001 +059003 +012001 +092003 +028001 +092004 +013004 +013004 +084003 +063001 +092004 +093002 +067003 +084001 +092004 +093002 +067002 +092004 +053005 +092006 +033019 +093001 +093001 +092004 +084001 +093002 +090006 +037005 +092004 +092004 +012001 +012001 +088003 +089017 +076 +092006 +015002 +088001 +089017 +023008 +059003 +092004 +022003 +090001 +092004 +012001 +089007 +092004 +012001 +013001 +090009 +092004 +089017 +092002 +033020 +059003 +092006 +042002 +089017 +083003 +092004 +001011 +092004 +093001 +089017 +093002 +092006 +089017 +020004 +020004 +71511 006006 +092007 +092004 +012001 +023007 +067002 +092004 +060003 +067009 +089015 +013004 +092004 +024001 +013002 +069002 +059003 +092004 +011002 +089023 +033020 +092004 +030006 +090001 +092004 +012001 +092002 +71538 023001 +089017 +023001 +092004 +067002 +092004 +023007 +092004 +084001 +023007 +089017 +033032 +092002 +033019 +092004 +011003 +089017 +033016 +090006 +092007 +013001 +092004 +037005 +090001 +092004 +012001 +056005 +023007 +089017 +023007 +092007 +059003 +092004 +033005 053009 +033020 +040002 +088038 +057009 090013 +089012 +092004 +009001 033009 +092004 +059003 +092004 +031010 +090006 +092004 +067006 +033006 +092004 +093001 +092004 +033002 +092007 +013004 +092004 +012001 +092004 +088003 +090013 +059003 +092004 +031007 +092004 +033006 033019 +089015 +025020 +092004 +71607 011002 +031009 +059001 +015019 +092004 +093001 +089007 +089017 +090013 +092004 +011002 +092004 +057008 +092004 +088003 +012001 +059006 +089007 +024002 +092004 +033006 +033001 +089017 +033037 +092004 +012001 +067002 +033004 +093001 +069005 +092004 +002004 +013004 +074 +092004 +092004 +069002 +053005 +092007 +092004 +092004 +012001 +092004 +088003 +057009 090013 +064 +089017 +092002 +089015 +033032 062002 +092004 +090006 +092004 +033009 +093001 +093001 +053005 +067002 +033012 +092004 +085003 +067009 +092004 +71671 033015 +092004 +053009 +089017 +092004 +011002 +092004 +085001 +084003 +092004 +093002 +090006 +089017 +092004 +011002 +031007 +092004 +033019 +092004 +012001 +089023 +71693 015010 +093001 +084002 +093002 +033045 +090008 +092004 +092004 +71702 011002 +033006 +090006 +015008 +084002 +009002 +011002 +090013 +71711 023001 +092004 +71714 068001 +093001 +033010 +092004 +061 +033006 +092001 +085001 +033013 +083003 +001014 +093002 +089015 +024001 +013001 +033056 +033056 +015011 +006016 +71734 064 +006017 +079028 +060002 +079023 +015011 +084001 +092004 +001002 +089015 +015006 +084002 +092001 +084002 +092006 +024001 +030001 +089015 +024001 +092004 +004001 +092004 +001006 +089017 +092004 +004001 +089017 +092004 +004004 +089017 +092004 +004002 +092004 +004002 +089015 +024002 +089017 +033006 +033006 +092001 +093001 +017001 +020004 +089015 +023001 +089023 +033006 +069002 +012001 +089007 +053004 +089024 +053004 +067001 +015008 +084002 +092004 +008002 +092001 +089023 +033004 +067002 +060003 +033006 +084001 +092004 +001002 +092006 +092004 +012001 +053003 +092003 +069002 +053004 +71809 092007 +013004 +067002 +060005 +089015 +015025 +067002 +059003 +084002 +092004 +001002 +089015 +091003 +067005 +060002 +009002 +017001 +083005 +092004 +007002 +083003 +092006 +085001 +015004 +084001 +093002 +084002 +092001 +089015 +033006 +092004 +012001 +092001 +015019 +092004 +092004 +030007 +089017 +015006 +089020 +092001 +089017 +092004 +060002 +011002 +092007 +089015 +015008 +084002 +092004 +007002 +092004 +009002 +089015 +033015 +092002 +092004 +024001 +092004 +012001 +083003 +092004 +007002 +092004 +017001 +089017 +033006 +015004 +084002 +093002 +089017 +015004 +093001 +092004 +033009 +093001 +092006 +033006 +033006 +090013 +092003 +089012 +092006 +021006 +092003 +089017 +059003 +092004 +010001 +092003 +71900 067002 067007 +092004 +068001 +092001 +033006 +013004 +092004 +012001 +092004 +088003 +090013 +092004 +064 +089017 +090013 +092002 +067002 +067003 +089015 +029002 +092004 +033006 +092004 +012001 +090006 +033006 +089023 +093001 +053005 +002004 +089023 +092003 +053006 +090001 +012001 +088003 +089008 +089010 +092004 +058005 +057008 +71942 092004 +092004 +012001 +064 +089017 +092002 +031010 +71950 092004 +012001 +093001 +093001 +092001 +092004 +013001 +074 +013004 +092004 +012001 +71962 032001 +092007 +033008 +089017 +033037 +092004 +012001 +033006 +089008 +089017 +092004 +011002 +092004 +012001 +092004 +041005 +013002 +023007 +71981 091001 +71983 092004 +015014 +089007 +092004 +022001 +092004 +013004 +090013 +093001 +015001 +084002 +093002 +089017 +093002 +089017 +093002 +092004 +033006 +092004 +033019 +089023 +72005 058007 +093001 +089023 +013003 +092004 +063004 +092004 +009002 +093002 +089017 +093002 +092004 +015006 +084002 +093002 +033006 +089017 +090013 +092004 +72025 033015 +092004 +012001 +093001 +089017 +013001 +076 +012001 +090009 +092004 +089017 +059002 +060001 +092004 +031010 +041005 +090013 +092004 +012001 +72045 024002 +092004 +033006 +090006 +092004 +084002 +092004 +024002 +092004 +011002 +092004 +085001 +083003 +093002 +72060 015004 +093001 +084002 +093002 +092006 +015006 +089015 +027001 090013 +092004 +025008 088009 +092004 +092004 +012001 +025011 +089015 +025013 +059003 +092004 +030004 +092004 +026 +068002 +092004 +012001 +089007 +013001 +009002 +088001 +089017 +059004 +012001 +088003 +089017 +031010 +089015 +059008 +011001 +059002 +092004 +012001 +72101 015004 +084002 +093002 +027004 +093001 +089015 +027002 +015023 +084002 +093002 +72112 013004 +092004 +72115 067009 +063001 +015013 +089020 +092004 +011002 +089017 +033017 +011001 +059002 +089017 +033009 +060003 +083003 +093002 +092004 +036004 +011002 +72134 067007 +092007 +092004 +067008 +015011 +084001 +093002 +053009 +084002 +093002 +089015 +017001 +060002 +063004 +092004 +033009 +093001 +72152 090001 +092004 +012001 +023001 +078001 +067002 +013004 +090013 +063001 +092004 +001006 009001 +72164 013004 +067002 +093001 +72168 092004 +036004 +078005 +057003 +092004 +030005 +059003 +092004 +089009 +057008 +015024 +092004 +085005 +083003 +092004 +093002 +011002 +092006 +089017 +042002 +015004 +084002 +092004 +053009 +090002 +009001 +093001 +089017 +093001 +72198 067002 +092007 +092004 +067005 +037006 +093001 +092004 +037004 +092004 +037006 +020002 +092004 +092004 +063004 +092004 +011002 +089017 +020004 +093001 +092004 +010003 +093001 +006007 +72222 024001 +090006 +025008 +013001 +092004 +093001 +059008 089015 +037006 +089017 +093001 +72233 013004 +067009 +092004 +005001 +092006 +089017 +037006 +085002 +084002 +007002 +037007 +060002 +055003 +055004 +037009 +092004 +030004 +067002 +092004 +051 +015023 +092004 +092004 +011003 +089008 +089023 +092004 +093001 +037009 +083003 +092004 +007002 +089023 +033013 +72268 013004 +025006 068002 +090001 +092004 +011002 +090013 +092004 +012001 +72277 092004 +72280 067002 +015023 +092004 +092004 +093001 +092004 +067009 +092007 +092004 +093001 +72291 023005 +083003 +060002 +055004 +037008 +006004 +060002 +089017 +037009 +083006 +092004 +007003 +037009 +092004 +007002 +089015 +091003 +012001 +012001 +017001 +089017 +014006 +014006 +083003 +092004 +007003 +089015 +019001 +092004 +008002 +092004 +093001 +023005 +092004 +033006 +017001 +067005 +067005 +089015 +015012 +092004 +092004 +006004 +084001 +092004 +008002 +089015 +033006 +092004 +012001 +090013 +092004 +049 +089017 +049 +092004 +006017 +092003 +72350 042002 +061 +089015 +033006 +092004 +049 +092004 +006017 +092003 +089015 +015017 +092001 +72363 015004 +015017 +72366 069002 +028001 032001 +090006 +070 +013001 +092004 +013004 +090001 +092004 +012001 +089023 +031005 +033056 +024001 +089015 +015003 +060003 +089015 +060003 +037009 +015006 +084002 +092004 +007003 +092004 +002007 +092004 +082002 +084002 +092004 +001014 +72398 089007 +079024 +092004 +089015 +015004 +015003 +001016 +092004 +089015 +067002 +015004 +092004 +012001 +084001 +092004 +091001 +092004 +093001 +089020 +092004 +013002 +033006 +067002 +028001 032001 +070 +090006 +015004 +092004 +012001 +092004 +012001 +092004 +089015 +021005 +092001 +084001 +037001 +093001 +089017 +059003 +092004 +030003 +092004 +011003 +092004 +093001 +089015 +032002 +015006 +084002 +092004 +007002 +092004 +093001 +092004 +010002 +093001 +092004 +033009 +093001 +083002 +059001 +085001 +015013 +089017 +033013 +089015 +019001 +092004 +092004 +007003 +092004 +007003 +015005 +046 +087005 +033009 +093001 +72477 027007 +092004 +033006 +092004 +093001 +089007 +092004 +025011 +069002 +079024 +092004 +007003 +089023 +015030 +033015 +085001 +092004 +093001 +083006 +092004 +007003 +089023 +092004 +090013 +092004 +033006 +030001 +089023 +092004 +033031 +061 +013001 +089023 +092004 +033006 +092004 +012001 +013001 +092004 +72517 092004 +093001 +068002 +019001 +089017 +079024 +024001 +092004 +72526 025020 +089015 +033056 +092004 +092004 +008002 +033008 +033015 +092004 +092004 +092004 +012001 +092004 +015023 +084001 +092004 +007002 +089015 +033006 +033015 +093001 +089017 +092004 +011002 +092007 +089015 +015004 +015004 +084002 +058006 +080001 +72558 013002 +014006 +013004 +025021 +069002 +078001 +083003 +092004 +055004 +071003 +092004 +092004 +093001 +013004 +72573 093001 +027004 +092004 +72577 069002 +027002 +056004 +092004 +037009 +033032 +020004 056008 +091001 +015011 +084001 +092004 +093002 +084002 +093002 +085003 +72594 033051 088024 +093002 +089017 +093002 +72599 031003 +015006 +084002 +092004 +089015 +033028 +093001 +092004 +037001 +092004 +007003 +092004 +037004 +033012 +022007 +089007 +092004 +023001 +092004 +092004 +001011 +090001 +092004 +037004 +72624 030005 +067009 +092004 +093001 +049 +006017 +037004 +017002 +083008 +092004 +007007 +033004 +090013 +092004 +72639 092004 +011003 +033006 +012001 +033006 +089017 +069002 +009001 +72648 067005 +020004 +092004 +012001 +012001 +089007 +092006 +069002 +72657 092004 +033037 087002 +092004 +012001 +089015 +013002 +023009 +023007 +089023 +092004 +033019 +092004 +72670 059007 +089017 +059007 +72674 093001 +089017 +093001 +015007 +72679 093002 +068003 +092004 +057008 +015023 +093001 +092004 +033009 +093001 +72689 085001 +083003 +093002 +083003 084003 +092004 +085001 +011002 +053009 +089017 +033017 +089017 +092004 +093001 +089017 +093001 +092004 +033009 +093001 +089017 +093001 +092004 +093002 +089017 +093001 +093001 +092004 +037004 +010003 034001 +089017 +093001 +089015 089017 +035002 +092004 +092004 +012001 +089017 +053008 +033006 +092004 +012001 +092004 +088003 +091002 +037005 +092001 +092004 +093001 +089017 +093001 +089009 +092004 +042004 +092006 +033029 +092004 +067002 +053008 +089017 +033013 +089017 +085002 +092004 +008002 +092004 +015004 +091001 +72756 092004 +015004 +090001 +092004 +088003 +012001 +015011 +084002 +093002 +089015 +084001 +054 +084002 +093002 +089015 +085001 +083003 +093002 +033015 +092004 +033019 +092004 +012001 +083003 +092004 +007002 +092004 +093001 +089017 +72786 089017 +093001 +035002 +72790 015002 +063001 +092004 +001009 +084002 +093002 +027002 +009002 +72799 053010 +053009 +093001 +092006 +033009 +093001 +092006 +085001 +089020 +092004 +037004 +093001 +093001 +009002 +032004 +092007 +033029 +093001 +089017 +093001 +025001 +033015 +092004 +033019 +092004 +012001 +089023 +039001 +092004 +093001 +092004 +053010 +089007 +061 +033010 +092004 +033009 +092004 +068005 +013001 +092004 +037004 +089021 +092004 +031010 +089023 +093001 +092004 +089017 +093001 +059004 +012001 +088003 +024001 +084002 +092004 +033006 +091004 +059004 +058004 +088021 +089017 +058004 +088038 +009001 +012001 +039001 +059003 +088002 +069004 +068004 +088035 +092004 +088002 +092004 +012001 +092004 +079017 088002 +72878 067002 +091003 +076 +012001 +090013 +092003 +72885 013001 +024001 +069002 +024001 +092004 +001004 +067002 067006 +067005 +72894 067005 +013004 +090013 +092004 +024001 +72900 014007 +089015 +015002 +057007 +015023 +067002 +092004 +037004 +024001 +092004 +013004 +031010 +025020 +089007 090006 +092004 +033017 +092004 +012001 +72919 054 +084001 +092004 +093002 +092004 +089020 +093001 +015001 +084002 +093002 +092004 +093002 +089023 +093001 +015004 +084001 089021 +092004 +015007 +084002 +093002 +089023 +092004 +015002 +084001 +092004 +093002 +015006 +084002 +093002 +092004 +093002 +089015 +72952 084002 +092004 +007002 +092004 +067009 +092004 +067009 +017002 +089015 +067002 +092004 +033005 +092004 +033005 +089017 +092004 +033005 053009 +015004 +092004 +053009 +084002 +092004 +033006 +009002 +011002 +089010 +085001 +083003 +092003 +092004 +033006 +025013 +090013 +092004 +011002 +033006 +72989 093001 +017001 +089015 +033056 +092004 +008002 +033006 +009001 +093001 +089017 +092004 +053007 +092004 +012001 +031007 +092004 +012001 +092004 +011002 011003 +092007 +093001 +030006 +092004 +010002 +092002 +089015 +092004 +011002 011003 +087003 +067007 +092004 +085005 +083003 +001011 +093002 +089015 +089012 +076 +081002 +015023 +092004 +084001 +092004 +089015 +078003 +067009 +067005 +025015 035004 +092004 +083003 +092004 +001013 +089015 +020003 +011003 +060002 +083003 +001011 +093002 +057009 +092004 +001011 +092004 +078003 +067009 +060002 +089017 +060002 +089015 +067002 +092007 +037005 +056005 +067006 +093001 +053009 +067002 +033012 +037004 +73069 037005 +092004 +092004 +012001 +092004 +093001 +010002 +093001 +009002 +089003 +010001 +093001 +067005 067009 +067005 +089015 +015001 +092004 +013003 +092004 +093001 +092004 +73091 037004 +092006 +089017 +033006 +033020 +090013 +093001 +092004 +092004 +093001 +009002 +089005 +092004 +026 +092001 +092006 +042002 +059003 +092004 +030004 +092001 +092004 +012001 +090003 +092007 +092004 +010002 +089005 +033025 +015023 +092004 +093001 +021006 +093001 +033019 +093001 +067002 +067002 +092004 +015006 +092004 +053005 +041005 +059003 +092004 +011002 +093001 +73139 067007 +068003 +093001 +092004 +042002 +033006 +092004 +092001 +013001 +031005 +069002 +013001 +092001 +089023 +091003 +015006 +067002 +092001 +092006 +069002 +013001 +065002 +092004 +006017 +092004 +008002 +018002 +009002 +011002 +010002 +010001 +093001 +089017 +092004 +083003 +092003 +053007 +092004 +012001 +092002 +092004 +033019 +092004 +021006 +092007 +015004 +089007 +092004 +085005 +083003 +093002 +089017 +092004 +037004 +092004 +092007 +030001 +73197 092004 +033006 +092004 +053009 +092004 +089016 +059003 +067009 +033005 +056005 +013004 +089015 +092004 +056003 088038 +023007 +027001 +033012 +093001 +020004 +092004 +089015 +067002 +013004 +059003 +092004 +090006 +092004 +033005 +015024 +084001 +092004 +006006 +085002 +084002 +007007 +089023 +092004 +012001 +023007 +092004 +084001 +023007 +092006 +024001 +067007 +067009 +059001 +092004 +015019 +092004 +084001 +092004 +093002 +084002 +093002 +092004 +067002 +058010 +033020 +092004 +090013 +092004 +011002 +73261 092002 +092003 +033015 +092004 +090013 +092004 +010002 +015001 +033025 +090006 +092007 +092004 +012001 +013004 +092004 +010002 +73278 023007 +093001 +064 +089017 +083003 +092004 +033007 +092004 +060003 +033005 +012001 +092001 +013001 +092003 +092001 +067010 +023003 +092003 +089017 +090006 +023007 +092004 +084001 +023007 +067006 +067002 +013001 +013002 +023013 +061 +033006 +090006 +057008 +092003 +092004 +033025 +093001 +092004 +071003 +089007 +089017 +083003 +058006 +033006 +069002 +013004 +092004 +088003 +092003 +090013 +023013 +73330 089023 +093001 +057001 +011001 +035002 +092004 +092004 +012001 +030004 +023007 +089015 +052 +73343 092004 +052 +092004 +089015 +090013 +023013 +089023 +092006 +092004 +012001 +023007 +069002 +090013 +023013 +089008 +028002 +013001 +092003 +009001 +011002 +090006 +090001 +092007 +092003 +040002 +088038 +033015 +089017 +089021 +059003 +092006 +069002 +074 +089012 +033005 +093001 +056005 +090001 +092007 +059003 +092004 +031010 +056005 +089008 +027006 +089009 +013004 +092004 +033006 +090001 +092004 +053009 +024001 +092004 +088025 +089017 +025020 +089017 +013003 +089007 +042002 +090011 +092001 +067007 +092004 +067008 +092003 +042002 +092006 +069002 +069002 +031006 +089010 +092004 +033015 +092003 +73420 015004 +092004 +033012 +067008 +092004 +067002 +067009 +033006 +092004 +092004 +033006 +092007 +089015 +015014 +092004 +011002 +036004 +059001 +092004 +093001 +089017 +092004 +053007 +011002 +092004 +093001 +089017 +092004 +093001 +73450 033006 +092004 +033028 +092004 +068002 +092004 +088009 +092004 +012001 +73460 092004 +73462 067009 +078003 +063001 +092004 +011003 +015013 +024002 033015 +092004 +033019 +092004 +73473 089023 +092004 +093001 +024001 +092004 +011001 +059004 +088022 +73482 033052 +092004 +090001 +093001 +033006 039001 +033042 +089017 +033006 +092004 +093001 +089017 +092004 +093001 +033006 +013001 +071005 +092003 +060003 +033006 +092004 +033019 +092004 +012001 +089007 +031008 +092004 +089017 +069002 +030007 +092004 +065002 +092004 +067005 +023007 +091003 +034002 +090013 +092004 +011002 +089007 +061 +033032 +092002 +092004 +012001 +037005 +092003 +73530 014006 +011002 +092004 +013001 +092003 +73536 021006 +084002 +061 +092004 +001006 +73542 033015 +092004 +011002 +025011 +089017 +033037 +092004 +033019 +092004 +012001 +089015 +031010 +059001 +013001 +037005 +013002 +023007 +067005 +089015 +015024 +092004 +033019 +092004 +012001 +084003 +063001 +092004 +001011 +089023 +092004 +093001 +039001 +092004 +053007 +009003 +092004 +087003 +089017 +092004 +087003 +092004 +001014 +73585 068001 +039009 +090008 +092004 +093001 +089017 +093001 +089015 +015004 +092004 +084001 +092004 +001011 +092004 +73600 092004 +016 +092004 +002005 +092004 +008002 +090008 +092004 +015006 +084002 +093002 +089015 +092004 +036004 +078004 +025011 +089017 +012001 +088003 +73620 013004 +083003 +093002 +73624 092004 + +015008 +092004 +084002 +092004 +007002 +092004 +093001 +089015 +033006 +061 +089008 +031010 +089017 +093001 +089017 +011002 +078001 +011001 +089023 +092004 +031010 +093001 +068001 +089017 +088026 +092004 +088026 +092004 +011002 +73656 092004 +011002 +73659 091001 +059002 +067005 +085003 +033006 +090006 +092004 +012001 +092004 +033020 +090009 +092004 +033019 +092004 +088009 +092004 +090012 +033056 +089017 +033056 +013004 +089012 +092004 +009001 +092004 +73685 063006 +092004 +011001 +092004 +011003 +73691 089023 +092004 +085001 +089020 +092004 +093001 +089023 +092004 +089020 +092004 +053009 +089015 +067002 +091001 +030005 +092004 +089017 +011002 +089017 +093001 +089020 +092004 +037004 +092004 +088016 +089017 +020004 +092004 +027001 +015004 +084002 +092004 +001014 +092004 +093002 +093002 +089017 +093002 +089017 +092004 +001011 + +033015 +73737 009002 +074 +092004 +008002 +083003 +093002 +085003 +023009 +067006 +008002 +010002 +092004 +092006 +067001 +015029 +092007 +73754 092004 +093001 +033006 +092006 +024001 +092004 +089015 +024001 +090006 +057001 +031009 +092004 +023008 +033006 +078001 +033006 +017001 +083008 +092004 +008002 +092003 +079017 +089015 +015031 +089017 +015029 +089015 +092004 +011001 +024001 +092006 +090011 +093001 +033006 +092004 +033006 +092004 +033001 +033006 +092004 +012001 +064 +009001 +015011 +084002 +092002 +089015 +033009 +092004 +093001 +093001 +089017 +092004 +093001 +093001 +089007 +092004 +013001 +092004 +036001 +092004 +033006 +089015 +092004 +053009 +092004 +093001 +092004 +085001 +083006 +092004 +001014 +004001 +089017 +006018 +083005 +092004 +007003 +015023 +089020 +092004 +011001 +030004 +053002 +089023 +032001 +092004 +053009 +093001 +089017 +093001 +019003 +092004 +006017 +73849 015030 +084002 +092004 +011001 +033006 +089017 +033006 +009002 +092004 +092007 +042002 +089017 +092002 +025002 +092003 +009001 +058010 +033015 +092003 +089021 +092007 +092004 +065004 +031008 +084002 +012001 +023007 +092006 +013001 +092004 +001002 +089017 +092004 +001006 +089017 +092004 +001010 +089017 +059003 +092004 +083003 +092004 +092006 +067007 +092004 +067005 +067008 +013004 +059003 +092004 +011003 +041001 +092004 +041001 +092004 +089011 +069002 +033020 +092004 +013004 +088001 +001002 +092003 +002004 014003 +013004 +089017 +067001 +023012 +023001 +005001 +73920 025011 +092004 +026 +092003 +73925 092007 +033006 +022004 078003 +068004 +092004 +011001 +092004 +089009 +053002 +092004 +089015 089023 +015006 +084001 +093002 +089017 +093002 +093001 +089015 +033028 039008 +092004 +011001 +73947 020004 +092004 +093001 +015025 +083004 +092004 +001014 +031005 +092004 +023007 +089023 +015018 +092004 +036004 +092004 +017001 +015008 +084002 +092004 +001014 +089015 +092004 +067010 +015004 +089020 +092004 +093001 +084002 +093002 +089015 +73978 092004 +001014 +092007 +089017 +036004 +059001 +015007 +084002 +092004 +093002 +089015 +084002 +093002 +089015 +084002 +093002 +074 +092004 +026 +092004 +036004 +025013 +068002 +092004 +031010 +089017 +090006 +071005 +084003 +059001 +022001 +092002 +090013 +084002 +092004 +037004 +092004 +012001 +089015 +037005 +092004 +089016 +011002 +053009 +033013 +089022 +053008 +035005 +092004 +092004 +012001 +090006 +092006 +031010 +091001 +015002 +092004 +093002 +015006 +084002 +092004 +093002 +089015 +033006 +083003 +093002 +092004 +033019 +015011 +084002 +093002 +084001 +054 +084002 +093002 +084001 +74055 057008 +092004 +088009 +092004 +012001 +089009 +092004 +042004 +092006 +068003 +089015 +015006 +089015 +015013 +092004 +011002 +033015 +059001 +090011 +092004 +012001 +089020 +092004 +089017 +090006 +071001 +092004 +011002 +007003 +031010 +089015 +085003 +067005 +069002 +059002 +089020 +092004 +036004 +091001 +092004 +015011 +084001 +092004 +093002 +033017 +092004 +011002 +090006 +74105 053006 +092004 +041002 +092004 +033005 093001 +069002 +074 +021006 +74114 013004 +033051 +089017 +033050 +069002 +078001 +092004 +093001 +089017 +092004 +093001 +090008 +092004 +037005 +015010 +093001 +089017 +093001 +089017 +092004 +058006 +063004 +092004 +084002 +092004 +053009 +089017 +053009 +084002 +093002 +089004 +092004 +033050 +092007 +091001 +74150 092004 +015004 +090001 +092004 +011002 +015002 +092004 +089017 +093002 +089017 +093002 +033015 +092004 +031008 041005 +092004 +011002 +74167 013001 +025011 +078001 +059003 +092004 +011002 +089015 +015006 +084002 +74177 034007 +090001 +092004 +011002 +089017 +092004 +053009 +089017 +092004 +053009 +089015 +033015 +059001 +092004 +012001 +090011 +089012 +092004 +089023 +017001 +092004 +092004 +063004 +092004 +011002 +092004 +011002 +031010 +033006 +090006 +071004 +053006 +092004 +089015 +033032 +036003 +092004 +033005 +093001 +089017 +015013 +092004 +053009 +089017 +092004 +053009 +027001 +090006 +092004 +033006 +092007 +089015 +059002 +033050 +013004 +017001 +093001 +033006 +090013 +092004 +009002 +011002 +092003 +028001 +090006 +067002 +067008 +067005 +083003 +092003 +030006 +092004 +012001 +089012 +092004 +033006 +092001 +033015 +092004 +011002 +092004 +033006 +092004 +033015 +089015 +031010 +089015 +092004 +028001 +012001 +033020 +092004 +057008 +092004 +012001 +092004 +088003 +064 +089017 +092002 +089017 +092004 +030007 +089020 +089017 +092002 +089017 +092004 +092004 +031010 +053003 +092004 +026 +092004 +089008 +067002 +092004 +088038 +092004 +012001 +022003 +006002 +74300 092004 +008002 +092004 +036004 +092006 +025015 +069003 +092004 +010002 +092002 +069003 +092002 +074 +089023 +031009 031010 +089012 +092004 +088009 +092004 +012001 +093001 +021006 +089005 +092006 +089014 +089017 092007 +74327 033008 +063001 +092004 +011001 +089015 +024002 +093001 +089017 +093001 +033015 +033056 +089017 +033056 +059001 +090011 +092004 +012001 +083003 +092004 +011002 +090001 +092004 +089015 +067002 +092004 +033008 +092004 +033004 +093001 +033006 +009002 +011002 +031007 +092001 +093001 +028003 +089014 +060003 +092004 +012001 +035004 +030006 +089003 +011002 +011002 +092004 +033009 +092004 +089017 +092007 +031003 +092004 +033006 +092004 +033005 053009 +064 +033005 +067002 +092007 +015007 +089015 +045 +092004 +007002 +093001 +092004 +015012 +089017 +092004 +74397 092004 +045 +089017 +045 +092004 +089009 +071003 +027004 +092004 +063005 +092004 +009001 +092004 +012001 +74412 059003 +092004 +011002 +090013 +092006 +011002 +092004 +033009 +092001 +74422 092004 +033006 +012001 +090011 +092007 +028002 +74429 067002 +089008 +092001 +031001 +069002 +022003 +092004 +063004 +092004 +011002 +031008 +090013 +092004 +012001 +089023 +033005 +092004 +092004 +013004 +092004 +053004 +092004 +012001 +089017 +092004 +088036 +089017 +019005 +089017 +092004 +008002 +089007 +033005 093001 +067006 +067008 +067005 +089016 +001014 +092004 +033019 +092004 +74471 083003 +092004 +007002 011002 +089016 +059003 +067009 +033005 +067002 +030006 +092004 +053009 +089017 +092004 +053009 +089020 +063001 +092004 +011002 +030006 +009002 +089003 +092004 +015004 +084002 +093002 +089020 +092004 +093001 +089017 +093001 +093001 +092004 +033009 +093001 +089017 +093001 +009002 +036001 037004 +083003 +092004 +011002 +033005 +090002 +008002 +090006 092004 +092004 +053009 +089017 +092004 +053009 +011002 +092004 +084003 +092004 +093002 +089017 +093002 +089017 +093002 +011002 +092004 +089003 +011002 +033003 +089007 +033015 +090006 +092004 +089003 +092002 +025021 +092003 +033006 +025021 +092004 +026 +092003 +092006 +069002 +033032 +030006 +092002 +013002 +031003 +74556 009002 +015004 +084002 +092003 +089020 +092004 +025003 +092002 +093001 +089017 +093001 +009002 +021002 +092004 +021002 +092004 +090009 +092004 +033009 +092004 +012001 +092002 +093001 +093001 +089008 +015004 +093001 +089017 +093001 +089017 +092004 +089012 +033006 +033015 +092004 +058005 +089007 +030006 +092004 +012001 +092004 +088003 +089017 +092002 +092004 +078002 +022001 +090014 +092003 +089023 +092007 +092004 +071005 +013004 +005001 +089017 +008002 +089017 +019005 +089017 +088036 +089021 +092006 +013004 +092004 +088001 +042002 +023008 033003 +091001 +74626 092004 +015004 +015011 +084002 +093002 +089015 +015013 +092004 +011001 +057008 +092004 +006010 +74639 033005 +025011 +089007 090006 +092004 +025013 +089017 +093001 +089017 +093001 +089017 +092008 +053009 +058010 +089012 +033006 +059001 +025013 +092004 +011002 +089017 +074 +089015 +090011 +067005 +015004 +089013 +022007 +089021 +092004 +011002 +084002 +092004 +015004 +092004 +089023 +093001 +089017 +093001 +085003 +083003 +093002 +033017 +089017 +033015 +089020 +089017 +058006 +059001 +092004 +033019 +092004 +012001 +089015 +067002 +092004 +067008 +033006 +090013 +093001 +093001 +091002 +015007 +034006 +092004 +011002 +083003 +001014 +059003 +083003 +092006 +033015 +092004 +033019 +092004 +012001 +092004 +013001 +74717 093001 +030004 +015023 +089017 +092004 +093001 +092004 +033009 +093001 +089023 +093001 +030006 +092004 +015004 +089021 +092004 +084001 +093002 +089017 +069002 +015019 +092004 +089009 +092004 +042004 +069002 +015023 +092007 +74746 013004 +033051 +089008 +063007 +092004 +089021 +092005 +089015 +092004 +093001 +015023 +092004 +093001 +054 +084002 +093002 +089023 +093001 +030006 +093001 +015004 +057008 +092004 +088009 +092004 +012001 +090001 +092004 +011002 +089015 +015002 +092004 +093002 +089017 +093002 +074 +092004 +011002 +089015 +015006 +089017 +084002 +093002 +089017 +084002 +093002 +091001 +091003 +085001 +083001 +036004 +74798 033009 +093001 +010002 +009003 +093001 +011002 031010 +089023 +010002 +011002 +092006 +033020 +090001 +092004 +083003 +093002 +089017 +093002 +011002 +025001 +092004 +093001 +092007 +089020 +092004 +015004 +089015 +030006 +053006 +092004 +090010 +092004 +093001 +092004 +085001 +083003 +092004 +080001 +092007 +089007 +028001 +059003 +090006 +011002 +092004 +010002 +092004 +013001 +74846 067007 +015002 +092004 +001014 +033017 +092004 +036003 +092004 +033033 +092004 +030005 +090001 +092004 +053009 +089017 +053009 +092004 +083003 +093002 +091001 +74867 092004 +011002 +074 +092004 +031010 +089017 +059006 +092004 +060001 +74877 067005 +089015 +015002 +092004 +093002 +089017 +093002 +001011 +013004 +090001 +092004 +088003 +012001 +033006 +092004 +033019 +083003 +092004 +093002 +089015 +015006 +084002 +092004 +093002 +068005 +084002 +092004 +093002 +015001 015002 +74907 069002 +013004 +092004 +092004 +012001 +093001 +74914 015003 +092004 +093002 +015011 +084002 +093002 +74921 033056 +067007 +067009 +092004 +093001 +024001 +009002 +093002 +74931 017001 +089017 +033012 +092004 +089017 +033006 +015003 +084002 +093002 +035001 +092002 +089015 +067002 +092004 +033056 +024001 +067002 +025001 +015004 +084002 +093002 +030005 +090006 +033029 +092004 +012001 +092002 +033015 +092004 +74961 054 +084001 +093002 +054 +084002 +093002 +089015 +092004 +067010 +084002 +093002 +093002 +084001 +084002 +093002 +74977 013001 +74980 001012 +093002 +001014 +001014 +089015 +085001 +085003 +083003 +092007 +092004 +001014 +067008 +092004 +089015 +092004 +067009 +092004 +067009 +015004 +083004 +092004 +007003 +083005 +001010 +083002 +033013 +085001 +031005 041002 +089015 +017002 +033006 +092004 +015013 +009003 +089015 +75016 009003 +033009 +093001 +057016 +001014 +093002 +053007 +092004 +012001 +031007 +092006 +092004 +026 +092004 +012001 +027005 +030001 +092004 +033006 +090001 +093001 +089015 +067002 +053005 +089017 +092004 +010001 +092004 +033030 +033006 +089010 +030007 +092001 +031009 +092004 +012001 +013001 +015008 +084002 +092004 +007002 +092001 +085003 +089015 +033028 +092002 +75063 013004 +015001 +092002 +084002 +092004 +033013 +087005 +75071 033024 +012001 +012002 +015005 +092002 +092004 +057016 +059002 +013004 +092004 +057001 +092004 +033024 +092007 +015017 +092004 +093001 +089017 +092002 +033006 +033006 +092007 +092004 +009002 +087005 +092004 +012001 +092004 +012001 +013001 +092004 +033015 +092003 +041001 +021006 +089015 +092007 +041001 +067007 +059001 +067008 +089023 +093001 +088024 +089015 +015007 +092004 +012001 +033006 +033032 +092003 +089012 +033009 +093001 +093001 +015004 +089021 +092004 +75130 015004 +058005 +092004 +067009 +75135 092004 +057001 +092004 +027001 +090006 +013003 +092004 +025004 +092004 +057016 +092004 +037006 +092004 +093001 +089017 +092004 +093001 +015023 +084002 +092004 +057016 +083006 +092004 +056005 +089015 +015023 +092004 +092004 +037004 +033006 +092007 +092004 +009002 +039008 +092002 +092004 +001014 +093001 +013001 +089017 +033015 +041002 +092006 +031007 +069003 +042002 +069002 +071004 +092002 +093002 +058010 +089015 +039010 +092004 +011001 +090008 +092004 +089015 +092004 +037004 +019003 +092004 +092004 +006017 +033032 +019001 +75202 090014 +092004 +059001 +019001 +085002 +084002 +007002 +033032 +092004 +037009 +021003 +037009 +092004 +092006 +033032 +092007 +057009 +085002 +092004 +084002 +092004 +083003 +007002 +089015 +092004 +008002 +092004 +018002 +083003 +092004 +006004 +75234 067002 +092004 +067004 +093001 +089017 +093001 +033013 +033007 +092004 +012001 +089017 +024002 +092004 +092004 +037008 +089015 +067005 +014010 +078001 +013004 +089008 +016 +092004 +007003 +092004 +007002 +089015 +079024 +067005 +092004 +007003 +059003 +089017 +059003 +092004 +006004 +018002 +089015 +092004 +037009 +023005 +013002 +089015 +024001 +079024 +092004 +007003 +092004 +007002 +015025 +092004 +006007 +067002 +092004 +020004 +031005 +015004 +092004 +037008 +089023 +033006 +093001 +078001 +033006 +033006 +092004 +020002 +042002 +092003 +089007 +059003 +085001 +083001 +75308 033012 +006014 +015030 +089017 +025022 +013002 +017005 +092004 +093001 +089017 +093001 +089015 +015023 +092004 +083004 +033006 +087003 +092004 +092001 +042002 +071004 +089009 +021006 +089015 +092004 +033006 +031009 +75336 092004 +012001 +093001 +75340 021006 +092003 +089017 +092004 +010001 +092003 +089015 +033006 +092004 +092004 +033019 +092004 +75353 089020 +059003 +092004 +083003 +092004 +010001 +092004 +089015 +015023 +092004 +067002 +092007 +092004 +067009 +092004 +067009 +047002 +089007 +092004 +020002 +089015 +053005 +092004 +089017 +092004 +092004 +75380 067005 +089015 +015023 +092004 +084002 +092004 +007002 +057008 +023001 +75390 025011 +010001 +031009 +092004 +012001 +089015 +014006 +013004 +015004 +092004 +037004 +092004 +037004 +033006 +037010 +092004 +009002 +092007 +089015 +033015 +092004 +037009 +092004 +033006 +092007 +090013 +092004 +093001 +090006 +015004 +092004 +037004 +090006 +037010 +089008 +067002 +015004 +015004 +013001 +022007 +089023 +092004 +093001 +033006 +090013 +092004 +019001 +092002 +028004 +056004 +009001 +093002 +013001 +085002 +084002 +007002 +091002 +067002 +028005 +092002 +015004 +75453 089023 +015006 +092008 +092002 +015023 +75459 033015 +092004 +037004 +092004 +037004 +092004 +033006 +092007 +089015 +025022 +033015 +090006 +093002 +058010 +75474 015006 +033012 +092004 +089015 +015023 +033012 +015004 +084001 +092004 +001014 +089015 +015004 +084001 +092004 +007002 +015008 +084002 +092004 +093001 +089015 +034006 +025013 +092004 +011002 +089015 +015004 +75501 015002 +092004 +093002 +089017 +092004 +093002 +015001 +084002 +093002 +083002 +085001 +007002 +092004 +093001 +75516 089005 +092004 +041002 +092004 +093001 +015008 +084002 +092004 +089015 +067007 +067009 +060002 +033051 +092004 +090003 +092004 +033005 +033010 +089017 +072001 +090006 +071005 +092004 +053009 +024006 +089015 +023007 +084001 +023007 +089017 +090006 +092007 +013001 +092004 +053009 +092004 +093001 +092006 +092001 +033015 +092003 +75558 092004 +063004 +092004 +033028 +089017 +034002 +092004 +093001 +089017 +092004 +093001 +089017 +092004 +053007 +011002 +059001 +059002 +089017 +009003 +092004 +087003 +069002 +059001 +089023 +092004 +093001 +088022 +75586 015013 015023 +092004 +088032 +009002 +092004 +088015 +089015 +011001 +039008 +092004 +011003 +089015 +039010 +092004 +007002 +093001 +068005 +092004 +015023 +084002 +092004 +011003 +089023 +069002 +027002 +092004 +015023 +093001 +089017 +092004 +011002 +084002 +092004 +037004 +033006 +090006 +092004 +092004 +009001 +039007 +092007 +089017 +083001 +015006 +092006 +034007 +093001 +089017 +092007 +059003 +090008 +092004 +033032 +093001 +042002 +037004 +058006 +013001 +093001 +033006 +75647 039008 +092004 +011001 +089017 +092004 +037004 +033015 +092007 +089015 +057007 +092004 +057012 +090003 +092004 +093001 +089017 +092004 +063005 +037010 +092004 +75668 092004 +011002 +067002 +067007 +067009 +015004 +089017 +092004 +093001 +089017 +092004 +093001 +084002 +093002 +75683 015006 +084002 +092004 +007002 +092004 +093001 +015001 +089023 +092007 +013001 +027005 +092004 +083003 +093002 +75698 031007 +092004 +033019 +089013 +078004 +025006 +75706 067005 +027004 +092004 +033005 +090006 +013001 +092007 +061 +091002 +75716 059001 +063004 +092004 +031010 +089017 +092004 +011002 +009003 +092004 +087003 +089017 +009002 +069002 +059001 +089023 +067002 +027001 +092004 +084001 +092004 +093002 +093001 +090006 +089017 +083003 +092004 +093002 +033015 +090001 +092004 +093001 +092004 +033019 +092004 +012001 +015006 +089017 +039008 +089017 +039008 +092004 +011001 +089015 +067002 +067002 +092004 +093001 +015004 +092004 +011002 +015002 +084002 +084002 +092004 +001010 +089017 +085003 +089017 +092004 +093001 +089017 +092004 +093001 +083001 +089015 +092004 +015023 +092004 +093001 +015023 +084002 +093002 +089015 +057009 +033032 +090013 +092004 +093001 +089017 +092004 +093001 +090006 +067002 +067002 +015006 +084002 +092004 +015004 +75805 083003 +092004 +093002 +085003 +092004 +092004 +093001 +088024 +092004 +026 +092004 +089020 +092004 +024001 +006013 +013001 +092004 +001014 +089008 +091001 +033051 +083003 +092004 +007002 +092004 +093001 +089017 +092004 +053007 +089017 +083003 +092004 +057016 +75839 059003 +067009 +090013 +092004 +085001 +089015 +092004 +089017 +092004 +011005 +089017 +011005 +032004 +033050 +092004 +089017 +092004 +033006 +071001 +025001 +092004 +027001 033040 +092007 +092004 +033010 +089017 +092004 +031005 +028003 +012001 +033015 +013001 +089007 +092004 +093001 +089017 +092004 +023007 +033015 +75879 018001 +092004 +084002 +092004 +011003 093002 +011003 093002 +015023 +033006 +074 +027001 +092004 +092004 +028003 +092007 +092004 +090001 +092003 +033006 +033017 +089007 +025020 +092004 +024002 033006 +75903 092004 +024002 +092002 +089008 +025001 +027001 +092004 +75911 033010 +092007 +75914 093002 +059003 +089017 +092004 +085005 +011003 +089009 +092004 +058006 +067005 +064 +033006 +092004 +089024 +033015 +092004 +028003 067002 +75932 017001 +093001 +083003 +083003 +092004 +011003 093002 +011003 093002 +033006 +009002 +093002 +089004 +059003 +078001 +053001 +092003 +032002 +089007 +015002 +089017 +024001 +092004 +053007 +092003 +027002 +089017 +006015 +083008 +092006 +033005 +028002 +012001 +089008 +092006 +028001 +053007 +092007 +092001 +033015 +092003 +092004 +012001 +092004 +042003 +092004 +001001 +089017 +059003 +092004 +083003 +092004 +092007 +001002 +089017 +001006 +012001 +013001 +069002 +083003 +042003 +007002 +085005 +069003 +090001 +009001 +009001 +035002 +057005 +092004 +092004 +057008 +059003 +023007 +089017 +023010 +089017 +092004 +059003 +089017 +013001 +090003 +060002 +059003 +011003 +009001 +085005 +083008 +059003 +079018 +092004 +001006 +030005 +062002 +067008 +089017 +092004 +080002 +092004 +085005 +092004 +027004 +092004 +012001 +090006 +071003 +091002 +027004 +092004 +76040 027001 +091002 +091002 +069002 +083005 +084001 +060002 +059003 +092002 +013001 +089007 +089020 +092004 +023007 +089017 +015001 +089017 +013003 +064 +76060 092004 +092004 +089020 +092003 +033003 +033006 +089007 +092004 +089017 +010002 +013001 +089008 +013001 +010002 +092004 +012001 +069002 +071004 +031005 +002007 +089024 +002007 +089024 +002005 +006013 +042005 +089017 +030001 +009001 +092004 +012001 +013001 +064 +091001 +76095 092004 +067005 +092004 +028001 +030002 +092004 +012001 +092004 +067002 +76105 092004 +009001 +059003 +083002 +041005 +089007 +076 + +067002 +092006 +067002 +056005 +092004 +009001 +089014 +088002 +090001 +009002 +092006 +037005 +031006 +090014 +059003 +023007 +092004 +084001 +023007 +76133 033015 +023007 +023007 +089023 +092004 +033044 +089023 +092004 +033006 +024002 +092003 +090006 +092007 +089017 +067002 +061 +092004 +093001 +015004 +084001 +083003 +092004 +089015 +092004 +009001 +034002 +092004 +031010 +083003 +092006 +089017 +093001 +092004 +011003 +089017 +009003 +033009 +093001 +089017 +058006 +089020 +092004 +067002 +092007 +015004 +084001 +092004 +093002 +015006 +084002 +093002 +089015 +027002 +76187 093001 +033009 +093001 +093002 +092004 +010001 +067002 +015006 +084001 +092004 +093002 +089017 +093001 +010004 +092004 +090010 +092004 +033032 +093001 +015004 +059003 +092004 +093001 +089021 +092004 +093002 +015005 +092004 +76216 090010 +092004 +042005 +058010 +085003 +089020 +092004 +089017 +76225 089007 +058010 +007002 +092004 +042005 +089017 +033051 +083003 +092004 +007002 +089016 +059003 +067009 +033028 +089017 +093001 +089017 +011002 +76244 067002 +015011 +084001 +092004 +093002 +089017 +092004 +093001 +089017 +092004 +093001 +068002 +092004 +033019 +092004 +093001 +033016 +092004 +093001 +013001 +092004 +053009 +093001 +089023 +039001 +092004 +089017 +033042 +016 +092004 +006017 +033006 +090013 +092004 +092004 +023007 +092003 +037005 +092004 +008002 +092003 +053003 +092001 +067006 +092004 +067002 +084002 +092004 +011002 +015004 +091001 +015001 +084001 +76298 084002 +007002 +76301 033009 +093001 +093001 +053007 +092004 +012001 +092006 +092004 +007002 +085001 +085001 +092004 +007002 +089015 +093001 +092004 +053009 +031010 +092004 +012001 +089020 +059003 +092004 +010001 +092004 +089017 +059001 +092004 +093002 +033015 +031010 +089015 +053005 +76335 033006 +092004 +012001 +067007 +067009 +089012 +033056 +092004 +093001 +069002 +025022 +089023 +033006 +089017 +069002 +033008 +089007 +092001 +085001 +089020 +092003 +089017 +092004 +039010 090014 +092003 +092004 +020002 +092003 +089007 +011002 +059001 +76367 092001 +083003 +092004 +001014 +092007 +76373 085003 +067009 +089017 +067009 +060002 +033017 +083003 +092004 +092004 +033019 +092004 +012001 +76386 093001 +013001 +037004 +092004 +093002 +039010 +031003 +092004 +093001 +092004 +093001 +089015 +015023 +092004 +083006 +092004 +007007 +033006 +090006 +089023 +092004 +033005 +033028 +092007 +092004 +009001 +053007 +092004 +012001 +089023 +067002 +092004 +093001 +033004 +092004 +033006 +033006 +092004 +093001 +090013 +092004 +093001 +089023 +089010 +013001 +088002 +092004 +089024 +088038 +088015 +091004 +093001 +071003 +056003 +089007 +025015 +092003 +089023 +089010 +013001 +033050 +090006 +033006 +089017 +033009 +089017 +033005 +092004 +089005 +092003 +030002 +092008 +069002 +030004 +092001 +056005 +092007 +058010 +76465 015004 +092004 +089021 +092004 +007007 +76471 059003 +018001 +093001 +092004 +053009 +019001 +083006 +092004 +007007 +76481 092004 +092007 +092004 +093001 +025021 +76487 092004 +093001 +059008 +085003 +067008 +059001 +092004 +011002 +015004 +054 +084002 +092004 +093002 +089017 +089020 +092004 +093001 +089017 +093001 +019002 +083003 +093002 +092004 +008002 +089007 +090012 +033054 +089015 +015006 +084002 +093002 +092007 +085004 +083001 +089015 +015004 092004 +015008 +084002 +092004 +007002 +033051 +092004 +093001 +76531 033012 +092004 +067007 +059001 +067005 +085003 +069002 +033023 +089023 +015004 +089017 +033006 +067002 +015007 +084002 +092003 +092004 +012001 +030004 +054 +084001 +092004 +093002 +091001 +054 +084002 +093002 +015010 +089017 +033003 +092004 +011002 +015011 +084002 +093002 +089015 +090011 +067005 +092004 +015004 +015002 +061 +092004 +093002 +001011 +089017 +093002 +76579 059003 +092004 +036004 +76583 093001 +76585 093001 +033009 +093002 +092004 +010001 +009002 +027001 033004 +074 +013001 +089004 +092004 +033005 +015006 +084002 +093002 +092007 +76602 033017 +092004 +041003 +092004 +012001 +089017 +025006 +092004 +025006 +033006 +089017 +033017 +072002 +092004 +090006 +092004 +093001 +028001 +058007 +092004 +053005 +093001 +089015 +092007 +068001 +033006 +083003 +092004 +007002 +76632 024002 +092004 +093001 +089017 +093001 +015023 +092004 +089015 +072002 +092004 +033010 +092004 +041003 +092004 +012001 +76648 025001 +092004 +015001 +084002 +092004 +093002 +033028 +092004 +011002 +033005 +092004 +036004 +034007 +092004 +092006 +015006 +035001 +078001 +092004 +031010 +089012 +092004 +057008 088009 +089007 +078001 +092004 +093001 +033050 +028004 +072001 +089012 +092004 +033005 +013001 +092004 +053009 +093001 +76686 013004 +76688 092004 +092004 +093001 +085001 +083003 +093002 +093001 +015001 +092004 +001009 +001011 +76700 084002 +093002 +089015 +027002 +092004 +036004 +089015 +033006 +090013 +092004 +089010 +012001 +088003 +057009 +031010 +089015 +092004 +090013 +092004 +089023 +069003 +033015 +090006 +012001 +088003 +013003 +089015 +033006 +089008 +090006 +092004 +053005 +089015 +092004 +033006 +090006 +092004 +093001 +053005 +089015 +033006 +093001 +093001 +053005 +053005 +041005 +092004 +011001 +033006 +090006 +031010 +090006 +092004 +015006 +067002 +092004 +089019 +089019 +090006 +092004 +093001 +76762 033015 +053005 +090006 +092004 +033009 +092004 +012001 +093001 +089015 +085002 +092004 +092004 +093001 +008002 +013004 +092004 +012001 +092004 +088003 +037001 090013 +092004 +089017 +033006 +033001 +089017 +033053 +76789 013001 +092004 +059003 +009002 +078003 +060002 +76796 015008 +084002 +092004 +007002 +033006 +067007 +067009 +060002 +033051 +089017 +033028 +089004 +092004 +037004 +092004 +012001 +089023 +067002 +092004 +088028 +089017 +031010 +033042 +092004 +041003 +083006 +092004 +011001 +015004 +089021 +092004 +063007 +092004 +036004 +76831 067005 +033051 +083003 +092004 +007002 +093001 +089017 +092007 +013004 +067007 +067009 +060002 +089008 +059003 +092004 +085005 +092004 +093002 +033015 +092004 +033019 +092004 +012001 +089017 +093001 +089017 +011002 +089017 +076 +069002 +092004 +090013 +092004 +012001 +042002 +089012 +092004 +009001 +093001 +089008 +76872 084002 +092004 +023009 +015024 +084001 +092004 +008002 +092004 +006017 +089024 +006017 +76884 013001 +089021 +092004 +092004 +023009 +089015 +092004 +012001 +092004 +088015 +015004 +76896 068005 +092004 +089017 +092004 +015002 +093001 +053011 +033009 +090013 +092004 +76907 092004 +012001 +092004 +088015 +092004 +033009 +092004 +012001 +093001 +033006 +033054 +092003 +092004 +093001 +092006 +093001 +033019 +089017 +76926 093001 +093001 +053009 +060002 +010002 +092007 +085001 +042002 +089023 +033004 +092004 +012001 +092004 +088015 +033006 +092004 +092004 +093001 +028001 +089017 +092004 +093001 +028001 +089023 +092003 +092004 +013001 +089015 +015031 +083008 +092004 +092004 +009002 +083003 +092006 +085001 +092004 +012001 +092004 +088015 +039012 +059003 +079013 +090008 +092004 +089008 +049 +089017 +020002 +015004 +084001 +092004 +007002 +092007 +089015 +092007 +013002 +028002 +059003 +089017 +093001 +089017 +011002 +092004 +085005 +092004 +093002 +76994 013004 +025022 +090013 +059003 +092004 +089017 +033037 +092004 +033009 +092004 +012001 +093001 +089017 +059001 +092004 +031010 +015006 +033022 +77013 033015 +092004 +042002 +092004 +089017 +059001 +092004 +092004 +053010 +042002 +015013 +092004 +006010 +014008 +083006 +059003 +089017 +060001 +092004 +057012 +092004 +77035 027001 +006011 +060002 +060002 +078001 +089004 +076 +092004 +012001 +092004 +033019 +059007 +089017 +079013 +77050 067002 +068003 +092007 +030005 +092004 +093001 +77057 092004 +030005 +015002 +092004 +093002 +089017 +093002 +015002 +084002 +093002 +033006 +090006 +067002 +092004 +085001 +092001 +083001 +071005 +092001 +089017 +093002 +034006 +089015 +015004 +084002 +092004 +093002 +060002 +092004 +035002 +092004 +093001 +089017 +093001 +092004 +085003 +067005 +083003 +092004 +093002 +77098 091001 +067002 +092004 +067005 +092007 +039001 +069002 +078001 +089004 +092004 +041003 +089007 +77111 093001 +033009 +002007 +042003 +006013 +002007 +093001 +013004 +092004 +042005 +069002 +059002 +057016 +092006 +089017 +092004 +089004 +092004 +092007 +042004 +015013 +033006 +009002 +028001 +090006 +089007 089012 090003 +092007 +092004 +057016 +092004 +057003 057016 +092002 +013004 +089017 +024001 +089017 +033015 +090006 +069002 +77151 093002 +089023 +078003 +063001 +092004 +093002 +092004 +093001 +092007 +033028 +031008 +059002 +011001 +033006 +090006 +069002 +013001 +012001 +092004 +090001 +008002 +013003 +089017 +069002 +77176 092007 +021001 +092002 +092004 +057016 +77182 033045 +089008 +089023 +089017 +092004 +092004 +087003 +012001 +093001 +007002 +77193 092004 +031001 +089017 +067002 +089017 +013001 +092004 +087003 +092004 +092006 +059003 +092004 +093002 +089017 +092004 +009001 +053007 +089015 +033015 +77213 013002 +059004 +088024 +033006 +033006 +087003 +092004 +093001 +093002 +089017 +059004 +092004 +001014 +092004 +039008 +089015 +015027 +031003 +084002 +092004 +007004 +018001 +093001 +089017 +093001 +093002 +015019 +093001 +089015 +093001 +030004 +015008 +084002 +092004 +011003 +069002 +013004 +092004 +092004 +036004 +089017 +092004 +089017 +092004 +037004 +013001 +092004 +034001 +015004 +084002 +092004 +033012 +069002 +77267 092004 +084002 +092004 +007004 +77273 058006 +058006 +092004 +033006 +089007 +092004 +011003 +77281 025020 +089017 +092004 +059001 +069002 +032001 +092004 +089009 +015013 +089015 +090003 +092004 +011001 +015011 033027 033028 +093001 +023011 +092004 +092004 +093001 +089015 +092004 +093001 +033056 +092004 +008002 +025001 +033049 +092004 +011003 +089023 +028001 +090006 +093001 +058010 +033006 +060002 +013004 +090003 +059003 +078003 +067007 +067009 +060002 +77325 087003 +092004 +093001 +093002 +089015 +092004 +037004 +037001 +092004 +011001 +033006 +009002 +093002 +091001 +092004 +009001 +013003 +092006 +069002 +028001 +092004 +093002 +001014 +013001 +053009 +092004 +087003 +093001 +089017 +092004 +002006 +089008 +033052 +013001 +092007 +071005 +77362 092003 +037001 +013001 +089017 +092004 +088012 +042002 +089007 +015023 +092004 +009002 +092007 +069003 +053012 057021 +069003 +033042 +092004 +012001 +092002 +089008 +089023 +089010 +093001 +089017 +092004 +089020 +092004 +042005 +090013 +090008 +092004 +056003 +056001 +042001 +089017 +037004 +013003 +033048 +092005 +089023 +089010 +092004 +089017 +025001 +083003 +092004 +033033 +011003 +030005 +089007 +091002 +021002 +033048 +039007 +089004 +092004 +067010 +092004 +089007 +013001 +090006 +092006 +069002 +074 +057012 +089007 +089004 +092004 +039008 +092007 +089015 +092007 +033006 +015004 +092004 +011003 +77439 067002 +092004 +068004 +092004 +014009 +092004 +093001 +015004 +092004 +036004 +089015 +025013 +033003 +015004 +015002 +084002 +093002 +089015 +015002 +092004 +001011 +092007 +089017 +025013 +092004 +033006 +059002 +015006 +084002 +092004 +093002 +089015 +090011 +067009 +060002 +013003 +030004 +092004 +090001 +092004 +093001 +067002 +054 +084002 +092004 +093002 +030005 +030004 +092004 +015007 +084003 +093002 +089017 +015020 +092004 +093001 +093001 +093001 093002 +089017 +093002 +093001 +089017 +093001 +089017 +093001 +093002 +089017 +093001 +089017 +093002 +093001 +089017 +093001 +77513 092007 +015015 +085003 +092002 +083003 +093002 +77520 092002 +054 +067002 +092004 +067009 +092004 +005001 +084001 +093002 +089015 +015006 +084002 +092004 +083003 +092004 +093002 +067002 +067009 +060002 +083002 +085003 +067009 +060002 +77544 067002 +092004 +77547 092004 +067009 +015013 +092002 +023001 +023001 +092004 +093001 +033004 +092004 +067002 +015004 +092004 +067010 +089015 +067006 068002 +092004 +033006 +067006 +067004 +77568 085001 +006014 +059001 +083003 +092004 +007003 +083002 +77576 015013 +089015 +77579 009002 +033009 +093001 +017002 +083008 +092004 +007003 +023005 +023005 +078001 +033004 +092004 +093001 +067005 +067005 +023005 +77596 092004 +023005 +015012 +084001 +092004 +007003 +084002 +089015 +015024 +023007 +089015 +015011 +092004 +093001 +019005 +092004 +089015 +034009 +033006 +069002 +025021 +089007 +092004 +023007 +092004 +083003 +092004 +085001 +77625 015010 +089015 +023001 +092004 +023001 +089015 +023001 +089017 +067005 +059002 067005 +033011 +067006 +067004 +061 +015004 +089015 +015023 +092004 +009004 +023007 +77646 025013 +069002 +078001 +77650 092002 +015015 +084002 +092004 +006008 +054 +084002 +092004 +093002 +084001 +067002 +015009 +092004 +093001 +089007 +061 +062002 +77668 067002 +092008 +015029 +77672 067002 +015005 +092002 +083003 +092004 +093002 +015009 +092004 +015006 +084002 +093002 +084001 +054 +092004 +067010 +015006 +083007 +093002 +089015 +092004 +058006 067010 +054 +084002 +093002 +089015 +092004 +067010 +015006 +084002 +093002 +089007 +030005 +092004 +093001 +054 +092004 +093002 +089009 +069002 +013004 +092004 +067005 +083003 +092004 +093002 +089007 +025006 068007 +089010 +071001 +013001 +092004 +092004 +067009 +092004 +051 +015001 +084002 +093002 +77731 084001 +092004 +093002 +015004 +084002 +093002 +033029 +092004 +053009 +092004 +011002 +089015 +067002 +015006 +084002 +092004 +033006 +092004 +092003 +028001 +067006 +060003 +067009 +067006 +092006 +015006 +084002 +092004 +093002 +092004 +089020 +092003 +092004 +063001 +067005 +085001 +035002 +092004 +012001 +089013 +078004 +088007 +089017 +008003 +089017 +027004 +092004 +013004 +092001 +089012 +092004 +030004 +092004 +093001 +089014 +013004 +092004 +092004 +065005 +092004 +069002 +033015 +092003 +089017 +033017 +092003 +028004 +089017 +089016 +007002 +033016 +089017 +093001 +089017 +011002 +092004 +090006 +012001 +041005 +089017 +031010 +090006 +092004 +012001 +092002 +093001 +091001 +067002 +091003 +037002 +092004 +012001 026 +092001 +015002 +084002 +093002 +092004 +083003 +092004 +013004 +77832 069002 +028001 +089023 +090006 +092004 +012001 +092004 +088003 +089016 +001014 +033016 033047 +092001 +033006 +090006 +037008 +089017 +022001 +092001 +085003 +089023 +092004 +031001 +090011 +092004 +023007 +065001 +092001 +089009 +77861 092004 +042002 +092001 +77865 092004 +035002 +092006 +057009 +090003 +092004 +012001 +093001 +033016 +092004 +033015 +092004 +088009 +092004 +012001 +091001 +067002 +091003 +092001 +028001 +090006 +067006 +024001 +092004 +008002 009001 +092001 +092003 +059003 +083003 +092006 +015002 +033019 +092004 +037004 +089007 +033016 +092003 +067002 +092004 +067010 +067009 +090006 +053003 +013001 +77910 092004 +023007 +059003 +089007 +069002 +013004 068004 +092004 +069002 +033015 +059003 063001 +092004 +030004 +092004 +012001 +092003 +027006 +092004 +089017 +059003 +092004 +011002 +083003 +092006 +092003 +092004 +012001 +092004 +088003 +037005 +053009 +036001 +092004 +011002 +092004 +012001 +092006 +057007 +089012 +092004 +023007 +092004 +057001 +092001 +028001 +090006 +015008 +067002 +092004 +015004 +092001 +088015 +020001 +083003 +092003 +069002 +022003 +092004 +011002 +089017 +090003 +092003 +092008 +013003 +009002 +033006 +088035 +092004 +031008 +092004 +036004 +036004 +77982 089008 +027006 +029002 +090006 +067009 +067005 +089017 +067005 +069002 +068004 +089013 +008003 +033047 +092004 +059003 +091001 +092004 +067002 +035005 +092003 +092004 +78004 089017 +092004 +033019 +092004 +088009 +092004 +092004 +074 +074 +089017 +78015 092004 +057009 +089020 +092004 +053006 +059003 +006011 +78023 006011 +089024 +006017 +092004 +025002 +092008 +028001 +090006 +092004 +057005 +092001 +089017 +092004 +085001 +089020 +092001 +035003 +092004 +008002 +092007 +059003 +028003 +092003 +090006 +061 +042004 +071004 +035001 +092004 +074 +089017 +029004 +092004 +033006 +092004 +012001 +093001 +090006 +092008 +033006 +025011 +013001 +078002 +057008 +064 +057009 +091001 +092007 +033006 +017003 +092004 +017003 +092004 +089020 +059003 +092004 +033013 +089015 +078001 +091001 +025012 +059003 +089015 +034009 +78088 092004 +008002 +092004 +093001 +034009 +092004 +025021 +078001 +089007 +092004 +033006 +092006 +033006 +090006 +067006 +067002 +092004 +008002 +092004 +024001 +089015 +015019 +092004 +084002 +092004 +006008 +78115 067002 +013004 +054 +092002 +015004 +089021 +092004 +054 +015001 +084002 +092004 +093002 +089015 +092004 +067010 +084002 +092004 +093002 +084001 +084002 +093002 +089015 +027002 +006008 +015003 +084002 +093002 +015009 +054 +78145 024001 +092004 +093002 +089015 +085004 +092004 +082002 +054 +084002 +093002 +78156 054 +084002 +093002 +089007 +083001 +092004 +006008 +78164 015024 +092004 +015024 +78168 027002 +092004 +036004 +085003 +083001 +067009 +060002 +092004 +092004 +093001 +033006 +090001 +092004 +012001 +069002 +015009 +084002 +093002 +089023 +78188 013004 +067003 +092002 +092004 +067008 +015004 +015001 +015019 +092002 +059003 +089020 +010004 +089017 +010002 +084002 +083004 +092004 +001014 +089015 +017003 +092004 +017003 +083008 +092004 +001009 +033013 +033003 +092005 +089015 +78218 084002 +092004 +006008 +089017 +092007 +015007 +084002 +092004 +057001 +78228 092002 +092004 +054 +068002 068003 +084001 +093002 +015006 +083008 +093002 +089015 +033003 +092004 +011002 +085003 +067009 +060002 +089020 +092004 +089015 +092004 +067010 +015004 +015006 +084002 +093002 +089015 +015008 +084002 +092004 +007002 +093001 +092004 +053009 +058010 +063004 +092004 +060002 +085003 +089020 +092004 +089017 +092007 +085001 +010002 +060002 +009003 +033053 +78276 085003 +067008 +059001 +015011 +78281 084001 +092004 +093002 +053009 +033009 +093001 +089015 +015006 +084002 +092002 +089015 +015024 +092004 +006017 +092004 +093001 +037008 +092004 +092004 +008002 +089017 +092004 +008002 +033006 +092007 +033006 +092004 +012001 +092004 +088003 +092004 +009002 +092006 +058010 +092004 +006017 +092007 +061 +037008 +083003 +093002 +092004 +093001 +089015 +037001 +78327 037001 +011002 +78330 067002 +024002 +092007 +033012 +089017 +092002 +089017 +092004 +011003 +092004 +069002 +015010 +092004 +084002 +093002 +067002 +033014 +092004 +093001 +092004 +090011 +025012 +089017 +025023 +092001 +092004 +025023 +089007 +092001 +069002 +78361 037008 +089023 +78364 023007 +083003 +093002 +077 +013001 +089007 +092004 +033009 +092004 +012001 +093001 +78376 069002 +033028 +092004 +033008 +033006 +092004 +012001 +092004 +030004 +013004 +78387 067002 +092004 +067008 +092007 +077 +015010 +084002 +093002 +78396 015019 +089017 +092004 +036004 +090003 +093002 +089020 +092002 +015023 +089020 +092006 +034008 +093001 +78410 093002 +067005 +036004 +78414 015001 +092002 +084002 +093002 +025011 +034007 +092002 +092004 +011002 +78424 092004 +067010 +015008 +092004 +093001 +089020 +092002 +084002 +093001 +089017 +015006 +059003 +092004 +053009 +089015 +033003 +092004 +033015 +78444 059003 +092006 +042002 +092004 +012001 +083003 +092004 +011002 +089012 +092004 +035002 +092004 +78457 092004 +033015 +033037 +092004 +012001 +089015 +033006 +092004 +032002 +011002 +059001 +060001 +092004 +031010 +013003 +083003 +092004 +093001 +089017 +059003 +025006 +092004 +033005 +013001 +089017 +033015 +089004 +092003 +090006 +033017 +039007 +089021 +033005 093001 +092004 +083003 +092004 +011002 +059003 +093001 +033006 +069002 +053006 +092004 +092004 +010002 +069003 +092004 +041002 +041001 +089008 +092004 +013004 +071003 +033015 +090006 +015006 +089008 +092007 +042002 +092006 +092003 +033006 +085001 +092002 +009002 +060002 +033054 +090013 +090006 +092004 +092007 +015023 +053003 +089020 +092004 +089017 +057011 +090009 +092004 +089009 +019002 +092004 +008002 +78541 032002 +059003 +090006 +092006 +033015 +089004 +092003 +092004 +013003 +089023 +041001 +089017 +092008 +036003 +092004 +033005 +089017 +089004 +092004 +031010 +011002 +092002 +033005 +030005 +013004 037009 +092004 +089017 +092004 +005001 +089017 +008002 +089017 +019005 +089017 +088036 +067002 +092004 +093001 +015023 +092004 +009002 +092004 +067010 +067009 +089020 +092004 +053003 +015008 +084002 +092004 +007002 +033015 +092004 +067003 +092004 +067009 +092004 +053003 +067006 +78601 057008 +090009 +060002 +059003 +092004 +092004 +053002 +78609 067002 +067002 +092004 +060002 +067009 +067003 +092004 +090003 +092004 +093002 +093001 +024001 +092004 +083003 +092004 +007002 +025020 +059003 +092004 +011001 +78630 037006 +78632 092004 +092004 +037006 +033006 +009001 +093001 +035001 +092007 +013001 +092004 +009002 +092004 +090008 +092004 +011003 +089017 +092004 +033005 +089017 +092004 +080001 +092007 +059003 +083002 +033017 +089017 +059008 +78660 011002 +015023 +083003 +092004 +007002 +78666 053004 +092004 +007002 088003 +080001 +092007 +089007 +78673 024001 +093001 +092004 +093002 +083003 +092004 +001014 +089020 +092004 +031005 +090006 +092006 +083003 +092004 +007002 +015023 +092004 +093001 +089017 +039008 +092004 +011003 +063001 +78697 091001 +015013 +092004 +011001 +089015 +018001 +092004 +093001 +015023 +092004 +083004 +092004 +007002 +089015 +067002 +079024 +092004 +007003 +089017 +068005 +092004 +020004 +015010 +033015 +092004 +055004 +092004 +055003 +090006 +063001 +093002 +025020 +092006 +067005 +015023 +055004 +089017 +055004 +015030 +083003 +092004 +78739 092004 +024001 +092004 +055004 +089017 +092004 +055004 +068004 +019001 +092004 +093001 +067002 +015005 +092004 +055004 +037006 +092004 +089015 +033032 +037008 +006004 +060002 +089015 +033014 +092004 +013001 +089017 +092004 +78768 042002 +089015 +058006 +058006 +092004 +033006 +083003 +092004 +011001 +78778 069002 +074 +092004 +027001 +092004 +031006 +089007 +092004 +014009 +033032 +015023 +092004 +084002 +092004 +007002 +089015 +78795 085001 +083008 +092004 +007003 +013004 +015024 +092004 +090001 +092004 +055004 +090010 +092004 +020001 +092004 +011001 +089007 +015017 +092004 +059001 +092004 +011001 +033006 +020004 +092004 +089015 +067002 +015024 +084002 +092004 +007002 +092004 +093001 +033006 +092004 +055004 +089010 +071001 +092001 +033006 +092004 +090013 +092003 +089015 +092004 +033006 +033001 +032002 +071003 +069004 +092003 +013001 +092004 +093002 +092004 +067002 +092007 +092004 +067008 +039007 +089017 +015023 +084002 +092004 +001013 +092004 +060002 +009002 +092004 +020004 +089015 +033006 +092004 +093001 +091002 +092001 +013001 +009002 +093001 +093002 +092004 +093002 +069002 +087004 +001014 +011003 +089017 +033012 +092003 +013004 +092001 +033006 +090013 +092004 +011001 +78890 013004 +092004 +092004 +093001 +085001 +083008 +092004 +007003 +033056 +092004 +008002 +092004 +011001 +089015 +078001 +033008 +013004 +033004 +092004 +093001 +033001 +033006 +009001 +011002 +089017 +011002 +031007 +092001 +092004 +090013 +092003 +067002 +033049 +78924 032001 +090006 +092004 +093001 +033001 +033004 +092004 +078002 +013001 +033008 +78935 033006 +092001 +058010 +009002 +093002 +023003 +083003 +093002 +092004 +093002 +089023 +033017 +083003 +092004 +001014 +092007 +78952 092004 +008002 +093001 +033017 +089005 +072002 +092004 +010002 +033005 +013001 +025006 +092004 +012001 +064 +059003 +092003 +058010 +067010 +092006 +092007 +092004 +041003 +039009 +084002 +023007 +018002 +089015 +037007 +084002 +007002 +089017 +009002 +089017 +009003 +064 +089017 +092004 +053009 +033020 +092001 +089017 +063001 +092004 +011003 +090003 +092006 +089017 +006010 +057009 +084002 +092004 +011002 +083003 +093002 +015002 +015023 +089017 +092004 +083001 +085001 +037008 +084002 +093002 +089009 +038001 +79018 013004 +092001 +015002 +089017 +015005 +092004 +093002 +067002 +067004 +067005 +090003 +092004 +001002 +014006 +014006 +078001 +083004 +092001 +089015 +015012 +79039 092004 +001006 +089015 +024002 +033006 +033006 +092001 +093001 +093001 +092004 +092001 +039009 +79052 092001 +033014 +092004 +013001 +012001 087003 +089015 +033006 +090013 +79061 092001 +013001 +093001 +092004 +093002 +092006 +092003 +039009 +79070 089023 +092004 +089020 +092001 +085001 +092004 +014006 +024001 +089023 +069002 +032001 +092004 +033006 +092004 +033006 +092001 +089015 +033006 +092004 +042002 +012001 +79092 092004 +012001 +033006 +090013 +092001 +017001 +015002 +084002 +093002 + +092003 +033006 +090006 +059003 +092006 +042002 +037005 +092003 +79111 089007 +069002 +024001 +089007 +092004 +014006 +092004 +014006 +092007 +015023 +090001 +092004 +085001 +092001 +015006 +084002 +093002 +79129 093001 +79131 009002 +053001 +089005 +092004 +033005 +033020 +090001 +059003 +092004 +085005 +093001 +015006 +084002 +79145 089017 +017001 +033006 +092001 +093001 +011002 +024001 +092001 +058005 +092004 +067001 +024001 +083008 +092004 +089015 +092004 +033006 +092004 +012001 +092004 +010002 +092002 +030006 +092003 +032002 +092004 +030004 +092004 +089017 +024001 +092004 +088002 +089017 +024002 +033006 +090003 +092004 +033006 +092004 +089007 +058010 +092004 +090013 +059003 +009001 +033020 +092006 +024001 +089017 +024002 +79196 067002 +092004 +067006 +017001 +053005 +089017 +088003 +092004 +088038 +092003 +033012 +092004 +033009 +092004 +79211 013004 +092001 +015007 +084002 +093002 +089017 +033013 +092001 +083003 +092004 +007002 +013002 +092001 +013001 +033056 +089017 +024001 +092004 +033006 +092001 +068007 +089017 +015004 +067005 +067005 +084001 +093002 +089007 +069002 +031007 +092003 +033020 +089004 +092001 +092001 +033006 +012001 +092008 +028001 +090006 +092001 +79253 037008 +089017 +019001 +089016 +092004 +007002 +092004 +031009 +79262 092003 +089017 +79265 014005 023007 +092004 +023007 +093001 +092004 +020004 +092003 +089017 +092008 +79275 085001 +089017 +031003 +089017 +037009 +092004 +006017 +092004 +020004 +092004 +089015 +033006 +090013 +092001 +015004 +089007 +092001 +084002 +011002 +083005 +015004 +092003 +79298 033015 +092004 +067006 +092007 +092004 +033006 +089015 +033006 +092004 +033006 +092004 +033006 +015024 +089021 +092004 +001006 +092004 +064 +089007 +069002 +066 +092004 +023007 +089015 +033006 +092004 +089017 +016 +092004 +006017 +089017 +002005 +015026 +084002 +092004 +001002 +033032 +092004 +055004 +015023 +092004 +084002 +092004 +007002 +033006 +019001 +056004 +092004 +089009 +027001 +089007 +092006 +089007 +061 +033006 +092004 +089023 +067002 +016 +092004 +092004 +006004 019001 +033006 +090013 +092004 +085001 +055004 +092004 +093001 +090006 +009001 +093002 +089017 +056004 +019001 +071004 +092003 +79376 033015 +092004 +055004 +015005 +092004 +055004 +033015 +033006 +067002 +092004 +042002 +089007 +092004 +009002 +092007 +093002 +058010 +79394 015005 +092004 +055004 +033006 +092004 +033006 +092001 +092003 +093002 +058010 +79405 092004 +033006 +069001 +79409 033014 +092004 +055004 +092001 +059002 +057012 +092004 +011003 +092007 +057007 +79420 092004 +093001 +033006 +089023 +092001 +79426 023003 +089008 +067002 +015004 +084001 089021 +092004 +092004 +067002 +092004 +056004 +089017 +089017 +092004 +055004 +025022 +027001 +090006 +093002 +058010 +089017 +089007 +092004 +79449 037008 +79451 092004 +067010 +025001 +027001 +092004 +031006 +092004 +092004 +033048 +090001 +092004 +093001 +018002 +092004 +089015 +033032 +015013 +092004 +053009 +089017 +063001 +092004 +011003 +089015 +015023 +092004 +093001 +085002 +083003 +092004 +79482 092004 +093001 +024001 +092004 +011003 +033006 +009002 +011002 +092001 +078004 +026 +088001 +041003 +092004 +012001 +067006 +092007 +092004 +067009 +79502 092004 +053009 +093001 +033032 +092004 +017001 +092004 +019001 +092004 +092004 +008002 +067002 +092004 +093001 +090013 +092004 +033006 +019001 +092003 +067002 +092004 +012001 +007003 088029 +088029 +79527 092003 +017002 +056005 +092001 +089005 +092004 +033005 +79535 036003 +033032 +092001 +019001 +79540 092004 +017001 +033006 +092004 +053009 +092004 +012001 +033042 +089015 +033006 +092004 +093001 +069002 +028001 +011002 +090006 +013001 +053009 +089007 +033005 +090006 +037004 +092004 +011002 +092003 +069002 +033006 +088015 +79569 092004 +093001 +028001 +090006 +092004 +060002 +011001 +058010 +011002 +089023 +092004 +058006 +011002 +033006 +083003 +092004 +011003 +009002 +011002 +092001 +011002 +058010 +010002 +011002 +089004 +025004 +79596 023007 +023007 +056005 +79600 092007 +092004 +79603 013004 +033051 +092004 +011002 +089017 +011002 +79610 063006 +092004 +011001 +089007 +011002 +033006 +069002 +013003 +023007 +069003 +012001 +069003 +012001 +089023 +011002 +033021 +092004 +059003 +79629 013004 +033006 +078001 +089015 +017001 +092004 +092004 +053009 +092004 +011001 +092004 +011002 +039005 +033006 +092004 +088015 +027001 +089020 +092004 +009002 +092007 +089023 +089010 +012001 +033006 +092004 +089024 +012001 +79658 078001 +033051 +013004 +092004 +055004 +025022 +089009 +019003 +092004 +093001 +090001 +092004 +033032 +092004 +055003 +015011 +018001 +092004 +084001 +083003 +092004 +089015 +015023 +084002 +092004 +007002 +089015 +092004 +067010 +067009 +017001 +092004 +092004 +012001 +033006 +025014 +089007 +064 +033016 +092004 +089004 +092001 +083003 +093002 +061 +071005 +092003 +089017 +083003 +093002 +033020 +79710 013004 +014006 +090011 +030004 +092004 +093001 +033055 +092004 +033006 +069003 +023001 +069003 +023001 +067006 +092006 +020004 +092004 +093001 +089017 +013001 +059001 +060002 +092004 +092007 +092004 +030004 +090011 +092004 +015005 +092004 +053009 +089017 +092004 +053009 +033006 +033055 +033055 +092004 +092004 +023001 +067006 +79752 020004 +092004 +093001 +089008 +067002 +092003 +033015 +092004 +055004 +089020 +092004 +011003 +089009 +015023 +092004 +084002 +092003 +064 +067002 +027001 +072002 +092004 +089004 +092004 +089015 +092002 +067002 +092004 +015005 +092004 +077 +013001 +092004 +020004 +092004 +79788 092004 +010002 +092004 +010003 +093001 +033015 +092004 +039011 +015006 +79798 015008 +084002 +092004 +007002 +033015 +092004 +093001 +79806 092004 +093001 +033029 +092004 +092004 +055004 +033006 +092004 +009002 +092007 +79817 084002 +092004 +055004 +089007 +057001 +033015 +092004 +092004 +091001 +79827 092004 +015023 +092004 +015023 +084002 +092004 +055004 +089015 +033006 +092004 +037008 +093001 +033029 +092001 +033012 +092007 +092004 +009002 +015023 +084002 +092003 +057001 +092004 +033006 +092003 +79853 092004 +055004 +018001 +092004 +008002 +092004 +089015 +015004 +028004 +028004 +033014 +092004 +013001 +092006 +033015 +092001 +057001 +79871 033006 +090006 +092004 +093001 +031003 +092004 +033012 +092003 +089009 +067010 +092004 +093001 +015023 +084002 +092004 +011003 +064 +79889 092004 +072002 +027001 +089004 +092004 +089023 +092003 +069002 +033028 +092004 +089007 +039011 +092004 +063004 +092004 +009002 +059001 +060002 +092004 +033055 +092004 +069003 +023001 +069003 +023001 +067006 +79916 020004 +092004 +089017 +067002 +013001 +077 +085003 +092004 +090001 +092003 +033023 +091001 +79929 092004 +055004 +015004 +092004 +009002 +033032 +092004 +033006 +090006 +092007 +028003 033015 +090013 +79943 033029 +79945 060002 +092004 +055004 +033006 +077 +055004 +060002 +089017 +055004 +060002 +089017 +055004 +060002 +089009 +015002 +084002 +093002 +067006 +060003 +067009 +092004 +067009 +089017 +004001 +057008 +089009 +015009 +092004 +093001 +021005 +084002 +093001 +092004 +037004 +033005 +006010 033005 +090006 +092004 +058004 090006 +092007 +093001 +093001 +092004 +087003 +037004 +093001 +033003 +092004 +009002 +092007 +037006 +090001 +092004 +093001 +089015 +067002 +020004 +090001 +092004 +017001 +089020 +092004 +055003 +021005 +027001 +090006 +093002 +058010 +089015 +025001 +027001 +092004 +056003 +089007 +092006 +033048 +092004 +015023 +084002 +092004 +011003 +092004 +027001 +092006 +033048 +089004 +033050 +092004 +033005 +092004 +089023 +092004 +065002 +023007 +089024 +037008 +056003 +090013 +089015 +033015 +092001 +030004 +090013 +092004 +009002 +013004 +067005 +015004 +084002 +092003 +033032 +089017 +092004 +033048 +033006 +090008 +092004 +090013 +092003 +091001 +80066 092004 +055004 +089005 +092004 +033032 +092004 +015023 +092004 +093001 +015023 +067007 +067009 +084002 +092004 +093002 +089015 +092004 +067010 +013004 +092004 +055004 +015004 +089020 +092004 +015007 +084002 +092004 +007002 +80095 015008 +084002 +092004 +093002 +089015 +057008 +092004 +006010 +092004 +037004 +037007 +089017 +092004 +093001 +092004 +80111 033005 +089015 +033014 +089003 +092007 +001012 +058010 +089015 +027001 +090006 +090003 +093002 +033006 +056004 +092003 +80127 089017 +092004 +033048 +092003 +015006 +033032 +083003 +092004 +007002 +092004 +093001 +037009 +092004 +80141 067002 +060002 +067009 +015011 +092004 +053009 +093001 +089020 +053009 +092004 +089017 +056007 +093001 +80155 092004 +056003 +092004 +037004 +090008 +092004 +093001 +089015 +033029 +092004 +068001 +033048 +092004 +093001 +033006 +078001 +022007 +090013 +090001 +092003 +089017 +072002 +013004 +092004 +011003 +092007 +089012 +092004 +092003 +030002 +089017 +083002 +089017 +083002 +031004 +089013 +078004 +033036 +087003 +093001 +089023 +089009 +069002 +80200 092003 +025016 +033012 +056004 +092003 +092002 +067005 +092004 +092003 +088008 +089007 +027001 +092004 +009002 +092007 +022001 +089017 +090012 +039007 +059003 +092004 +093001 +092004 +084003 +092004 +001012 +089017 +087003 +092004 +092004 +093002 +011002 +092006 +80234 092004 +007002 +053004 +068005 +092006 +089017 +037006 092002 +090003 +092006 +074 +092008 +056004 +090006 +059003 +092007 +027001 +092006 +092002 +033048 +092004 +089015 +039010 +089017 +092004 +093001 +033016 +092007 +061 +013001 +089015 +033004 +092004 +093001 +033056 +092004 +092004 +037004 +033006 +067006 +059001 +067009 +058010 +092003 +056005 +092004 +011003 +092007 +028001 +025013 +092004 +089004 +092001 +033049 +074 +092003 +027001 +090006 +069002 +059001 +013004 +092001 +067009 +060002 +067006 +092006 +015010 +053007 +084002 +093002 +089017 +027001 +092001 +089020 +092004 +033051 +089024 +039007 +011001 +013001 +069003 +083003 +092004 +007002 +069003 +083003 +092004 +007002 +069003 +084003 +092004 +001014 +069003 +074 +072001 +092003 +090006 +092006 +067002 +033048 +092001 +089023 +033022 +092007 +092003 +090006 +089005 +092004 +041003 +092006 +033009 +011002 +061 +053001 +092004 +010002 +012001 +031006 +059003 +092004 +089005 +092004 +033005 +089017 +092004 +083003 +092004 +033005 053009 +033005 +090013 +025004 +090013 +092004 +012001 +092006 +089017 +092008 +092007 +031007 +067002 +013004 +023007 +089017 +088002 +089017 +088002 +089007 +092007 +089017 +092008 +068006 +088038 +026 +090013 +090005 +092004 +012001 +089017 +092004 +009001 +067005 +067005 +80396 067002 +067002 067009 +059001 +057008 +042002 +090009 +092004 +011003 +092001 +015006 +089015 +053002 +067007 +092006 +027002 +092001 +053003 +083003 +092004 +007002 +069002 +089013 +011001 +069003 +089013 +039008 +089023 +092004 +084001 +092004 +093002 +093001 +092006 +083006 +092003 +085001 +089017 +033048 +071004 +089010 +092004 +031001 +090008 +092001 +089024 +092008 +092007 +033006 +092004 +088002 +027001 +085001 +092001 +083006 +092004 +011003 +80453 089004 +060002 +092007 +033006 +092006 +033006 +083003 +092004 +085001 +090006 +089004 +023007 +023007 +092001 +056005 +067010 +083006 +092003 +80472 056004 +092004 +092004 +093001 +072002 +032001 +092004 +089004 +092004 +041003 +033006 +067002 +093001 +092004 +055004 +015011 +056005 +092004 +089004 +092003 +033032 +092004 +055004 +037009 +092004 +089017 +090013 +037010 +089017 +013004 +092004 +092004 +010001 +092004 +035003 +092004 +80509 067002 +067008 +092004 +092004 +093001 +015006 +089020 +093001 +092004 +057001 +010004 +058010 +093001 +015004 +092004 +093001 +089015 +024002 +092004 +089004 +092004 +090006 +093001 +093001 +031009 +80535 033004 +092004 +089004 +088002 +089017 +088011 +089017 +092004 +056005 +092004 +067002 +025022 +013002 +092004 +093001 +033004 +092004 +067002 +013001 +015004 +089015 +022007 067001 +090013 +033029 +092003 +067002 +089017 +030003 +090006 +006011 +057012 +092004 +090001 +092004 +093001 +089008 +089017 +067001 +092004 +015004 +033011 +092004 +80578 067009 +067003 +057009 +092004 +093001 +061 +093001 +093001 +089015 +025001 +057008 +090013 +092004 +093001 +092004 +093001 +034004 +092004 +093001 +037008 +80599 093001 +015006 +092004 +80603 067002 +060002 +067009 +015010 +084002 +093002 +084001 +093002 +089015 +056003 +092004 +092004 +053009 +089017 +092004 +087003 +092004 +093001 +090008 +092004 +093001 +089017 +033012 +092004 +033012 +057008 +090008 +092004 +089009 +015004 +092004 +084002 +093002 +039011 +090011 +020004 +092004 +084003 +092004 +001016 +091001 +089023 +092004 +093001 +033014 +037009 +092004 +093001 +083003 +093002 +089017 +092004 +067002 +067005 +067005 +015004 +089008 +033006 +092004 +083003 +092003 +087003 +015019 +033048 +092004 +089010 +092004 +088015 +013001 +089004 +092004 +009002 +80676 085003 +083003 +092004 +067009 +069002 +059001 +060002 +089024 +060002 +015011 +084002 +093002 +092004 +067010 +017002 +083008 +092004 +007007 +033032 +092004 +093001 +015023 +089015 +015006 +092004 +017001 +092004 +092004 +084001 +093002 +015011 +093001 +059001 +089017 +065006 +056003 +013004 +092006 +072001 +069002 +074 +092004 +093001 +033049 +090006 +069003 +090006 +092004 +033005 +092004 +093001 +069003 +090006 +092004 +007002 +069003 +090006 +093001 +092004 +088038 +089023 +092004 +093001 +025001 +092004 +093001 +057008 +090013 +033004 +092004 +093001 +033006 +025001 +084002 +093002 +015010 +083001 +089004 +092007 +056005 +083006 +092001 +80759 033006 +092004 +093001 +083006 +092004 +007007 +093001 +085001 +80768 083002 +092001 +056005 +071004 +093001 +092004 +80775 064 +089017 +092003 +065003 +028001 +089008 +089023 +089010 +088002 +089017 +065002 +023007 +092004 +042002 +069002 +034004 +092004 +023007 +089023 +089010 +092004 +013003 +092006 +092007 +033048 +092001 +092004 +074 +092001 +092004 +037001 +093001 +056004 +067002 +092004 +093001 +033011 +089020 +092004 +011003 +033014 +093001 +056004 +083006 +093001 +015001 +80822 067008 +092004 +067005 +093001 +092004 +037004 +089017 +093001 +015006 +084002 +093002 +033003 +092004 +093001 +089015 +067007 +059001 +067008 +085003 +083001 +092004 +093001 +092004 +037004 +033010 +092004 +089004 +092004 +093001 +033006 +009002 +80855 085004 +090001 +093001 +037008 +089004 +092006 +015001 +092001 +084002 +093002 +056003 +092004 +053009 +089017 +092004 +053009 +092004 +093001 +033012 +090008 +092004 +056005 +090013 +092006 +033014 +090006 +069002 +013001 +041002 +093002 +037001 +092004 +009001 +067002 +80890 092004 +033048 +083006 +085001 +80895 092004 +033048 +089017 +071001 +033049 +057009 +089004 +092004 +056003 +089008 +015013 +083001 +067006 +092004 +090011 +092004 +067010 +017002 +083008 +092004 +007007 +033032 +015023 +092004 +009002 +089004 +092006 +017001 +092004 +033048 +013004 +092004 +056003 +092006 +092001 +031005 +088015 +089023 +033050 +80935 089004 +092004 +057001 +053001 +090013 +090008 +092004 +089017 +089004 +80945 093001 +023007 +092006 +023007 +033016 +092004 +093001 +089023 +092001 +032001 +092004 +089004 +092007 +027004 +033006 +090006 +025001 +015001 +084002 +093002 + +056005 +089004 +092007 +089023 +092004 +093001 +056004 +013001 +092004 +089009 +092004 +092004 +037004 +056005 +033032 +037009 +092004 +067006 +80985 015004 +092004 +084002 +093001 +80990 093001 +090013 +092004 +093001 +025001 +089017 +092008 +092004 +009002 +056004 +033006 +067010 +056004 +092004 +81005 092004 +067010 +015001 +092004 +093001 +089017 +092004 +093001 +089013 +078001 +087003 +089015 +015008 +084002 +092004 +007002 +089020 +089017 +055004 +089017 +009002 +092004 +089004 +087003 +092004 +001014 +089015 +033032 +092004 +093001 +015023 +092004 +093001 +089015 +033006 +092004 +093001 +093001 +037004 +089017 +059003 +092004 +085001 +092002 +009001 +024001 +092007 +089004 +092006 +059003 +092004 +011001 +092004 +093001 +033012 +092001 +083003 +089017 +093002 +089017 +083001 +033006 +069002 +071004 +092004 +023007 +067006 +089023 +092001 +027001 +092004 +065002 +023007 +092004 +042002 +089023 +092008 +092007 +056004 +092004 +037004 +030005 +015004 +089004 +092006 +031006 +092004 +033005 +092004 +037004 +069002 +057001 +089008 +015023 +092004 +083006 +092003 +089017 +078001 +083006 +092003 +037004 +093001 +089009 +092004 +056004 +013004 +057001 +092004 +033005 +089007 +089007 +092001 +031005 +015004 +037008 +069002 +089017 +092004 +090008 +092004 +056003 +033010 +81129 093001 +090013 +092004 +093001 +033006 +013004 +092003 +81137 092003 +033006 +067002 +092004 +093001 +016 +092004 +008002 +033049 +037004 +093001 +089004 090006 +059003 +092006 +033048 +090001 +093001 +031001 +092001 +025011 +083006 +092003 +067010 +033049 +067002 +078001 +013001 +092003 +028001 +059003 +092004 +089020 +093001 +089017 +041002 +089017 +033050 +089008 +033012 +025015 +024002 +092001 +091001 +81181 092004 +041001 +092001 +067006 +067008 +092004 +067006 +067003 +013001 +083003 +092004 +011003 +092001 +089017 +083003 +093002 +028001 +059003 +093001 +028001 +092001 +067005 +089010 +025001 +033020 +090006 +089005 +092004 +072002 +011002 +092004 +092002 +053001 +041001 +011002 +091001 +067002 +089007 +025004 +092004 +090013 +092004 +010002 +092002 +013004 +090001 +092004 +012001 +033025 +085001 +056005 +090006 +092006 +013001 +092004 +010001 +092002 +089014 +025006 +067005 +089017 +067005 +053001 +025004 +089004 090006 +092006 +025004 +033048 +090001 +093001 +037004 +092004 +031006 +031001 +090005 +092003 +090006 +092004 +012001 +023007 +023007 +091002 +81264 092001 +031005 +092001 +071004 +090008 +092004 +033009 +093001 +092004 +093002 +059001 +039001 +042002 +092006 +089017 +042002 +083003 +093002 +81283 089017 +059001 +092004 +011002 +092001 +083003 +007002 +037009 +092004 +090003 +092004 +053009 +037003 +057009 +089017 +020004 +092004 +030006 +002005 +089017 +089016 +059003 +092004 +007002 +067001 +038001 +092004 +037002 +033042 +089017 +078002 +088024 +092004 +039009 +084002 +81319 084002 +092004 +083004 +001014 +067007 +092006 +015002 +084002 +092004 +093002 +089013 +037003 +089017 +037003 +092004 +092004 +053009 +067009 +083003 +084003 +092004 +015002 +024001 +001002 +078002 +092004 +014006 +092004 +001004 +014006 +014006 +092001 +089017 +092004 +089020 +092001 +015002 +037004 +089015 +059003 +092002 +015012 +81362 092004 +001006 +032001 +033006 +033006 +090013 +092001 +092004 +093001 +033001 +093001 +093001 +092004 +092001 +039009 +088017 +092003 +039003 084002 +006002 +039003 +089015 +092001 +033006 +092004 +013001 +012001 087003 +089015 +092004 +012001 +033006 +092001 +013001 +093001 +092006 +092003 +039009 +091001 +017001 +089017 +017001 +084002 +092004 +008002 +092003 +089007 +089009 +092007 +024001 +092003 +030006 +092003 +035002 +089017 +033020 +089017 +092006 +024001 +092001 +089017 +092006 +024001 +092003 +021005 030006 +092003 +089021 +092004 +011002 +089017 +089021 +092004 +011002 +084002 +092006 +092001 +015004 +092003 +024001 +032004 +092004 +092004 +031008 +089021 +088015 +013002 +014006 +089017 +092004 +037001 +092004 +012001 093001 +084002 +092004 +012001 +092004 +057009 090013 +092004 +040002 +088038 +089017 +063004 +089020 +092004 +088003 +031009 +092004 +090006 +092001 +089007 +037004 +093001 +069002 +013001 +036003 +092004 +001002 +033056 +089023 +089017 +092004 +083003 +093002 +060003 +089017 +093002 +089017 +063001 +092004 +001011 +092004 +093002 +089017 +092004 +011002 +033015 +041005 +089017 +041005 +084002 +092004 +012001 +066 +092004 +041005 +042002 +042002 +090010 +092007 +093001 +092001 +037006 +083003 +092004 +007002 +068005 +020004 +089023 +090013 +035001 +092004 +090003 +092004 +012001 +067006 +092004 +067009 +092007 +013001 +033016 +089017 +087004 +089017 +087003 +092004 +033006 +089023 +092006 +071005 +013004 +089017 +092004 +033005 053009 +089017 +033005 093001 +033006 +090006 +024006 +092004 +053009 +090006 +060003 +089012 +023007 +023007 +067002 +014006 +033015 +089017 +092004 +011002 +089017 +092004 +011002 +81565 092007 +092004 +033049 +092004 +093001 +078001 +092004 +033006 +033006 +030001 +093001 +092004 +078001 +027001 +092003 +013002 +030001 +013002 +089023 +092004 +093001 +033006 +087003 +093001 +069002 +030001 +089023 +072001 +089017 +032004 +033006 +033006 +089007 +028001 +090006 +092007 +092004 +037004 +090013 +092006 +089017 +033006 +033006 +089007 +028005 +092004 +092007 +069002 +033028 +092004 +089007 +069002 +81618 042002 +083003 +079023 +092007 +037004 +093001 +031006 +092004 +033005 053009 +028001 +090006 +031006 +089015 +092004 +093001 +090013 +092004 +093001 +022006 067005 +067005 +092001 +033028 +011002 +013001 +089015 +092004 +093001 +071003 +025001 033013 +092004 +012001 +089017 +022006 067005 +067005 +089017 +067005 +067005 +069002 +058007 +092003 +089023 +089017 +059003 +092004 +024002 +092001 +067010 +013002 +064 +058004 +81669 092001 +058010 +058006 +092004 +006004 +092007 +017001 +089017 +092004 +037004 +089017 +092004 +037004 +089017 +092004 +093001 +089017 +092004 +017002 +092004 +089015 +015004 +033006 +090013 +092005 +033006 +090006 +092004 +023007 +089024 +037008 +065002 +042002 +092004 +009002 +092007 +089015 +093001 +092004 +093001 +033006 +037010 +074 +092004 +009002 +092007 +089023 +81717 056004 +037004 093001 +81720 067002 +030005 +092004 +054 +092002 +084002 +092004 +093002 +037007 +089017 +092004 +093001 +089017 +092004 +058006 +037008 +055004 +033009 +093001 +055003 +037004 +089015 +015009 +006008 +093002 +067002 +054 +084002 +092004 +084003 +092004 +093002 +080001 +054 +085001 +089020 +092002 +093001 +093002 +093002 +089015 +092004 +058006 +054 +083003 +093002 +089015 +092004 +093001 +088009 +092004 +093001 +041001 +013004 +084002 +092004 +034001 +015004 +035004 +090013 +084001 +054 +054 +092004 +093002 +089007 +092004 +092004 +014002 +013001 +082002 +089015 +092004 +001010 +092004 +083007 +092004 +093002 +089017 +093002 +054 +054 +084002 +093002 +092004 +093002 +092004 +055004 + +027002 +006008 +093002 +054 +084002 +092004 +093002 +015008 +092002 +084002 +092004 +81821 067007 +059001 +067008 +054 +089017 +022004 +015001 +083007 +092004 +093002 +069002 +013004 +092002 +092004 +014002 +054 +092004 +093002 +083007 +093002 +089015 +022004 +054 +092004 +015006 +084002 +080001 +81849 033009 +093002 +093002 +092006 +083005 +001014 +093002 +085001 +81858 059002 +067005 +067005 +81862 013001 +067002 +021001 +092004 +054 +089007 +092004 +089017 +092004 +051 +067002 +067005 +033027 +092004 +093001 +033006 +092004 +009002 +032002 +090006 +089013 +020002 +089017 +059002 +057007 +069002 +81889 092004 +015024 +089017 +092004 +006008 +089023 +089017 +092004 +023007 +092002 +013001 +067002 +092004 +054 +089023 +092004 +055004 +092004 +054 +089017 +092004 +054 +089023 +033028 +064 +092004 +090001 +093001 +033006 +089017 +065004 +092004 +001010 +013001 +089009 +067009 +092004 +059001 +033027 +033027 +054 +084001 +090006 +089009 +074 +015006 +084002 +093002 +001010 +092004 +093002 +082002 +083007 +082001 +089017 +083007 +082001 +067009 +81948 014002 +014002 +031005 +092004 +030004 +068003 +015024 +083005 +054 +092004 +093002 +089023 +067002 +069002 +059002 +015011 +090008 +092004 +014002 +014002 +092004 +033009 +014002 +089015 +015001 018001 +092004 +006008 +81976 069002 +074 +082002 +092004 +014002 +039004 +015022 +089015 +054 +001009 +81987 033009 +093002 +074 +022004 +037001 +013002 +092004 +006008 +092006 +015024 +035001 +090002 +054 +092004 +006008 +089015 +025022 +089009 +82006 092004 +093002 +054 +015011 +092004 +006001 +061 +015022 +089015 +078001 +014001 +092002 +092004 +067010 +015026 +090011 +089015 +092004 +060003 +008002 +092004 +006001 +092004 +006008 +015026 +089015 +069003 +001004 +069003 +001004 +014006 024001 +067007 +059001 +067008 +089017 +014001 +069002 +078001 +019005 +061 +068004 +025004 +059003 +092004 +021005 +092002 +089015 +059002 +023001 +013001 +067002 +017001 +092004 +093001 +82061 083003 +092004 +033006 +091004 +009002 +091002 +071004 +036003 +092001 +069002 +054 +084001 +092004 +093002 +089017 +013004 +092004 +020002 +092007 +089017 +092004 +057007 +82084 092004 +067002 +033027 +092003 +025013 +089007 +013003 +023007 +092004 +013004 +063004 +092003 +089023 +092004 +006008 +089007 +015006 +092001 +092007 +092004 +067009 +092004 +012001 +092006 +013001 +092006 +089017 +053001 +012001 +033006 +069002 +025022 +093001 +037004 093001 +092003 +085001 +071005 +089017 +091003 +057008 +092003 +092004 +012001 +059003 +092004 +054 +089020 +092003 +089008 +025013 +009002 +089007 +031009 +092004 +012001 +090006 +061 +013004 +089005 +092006 +089014 +033006 +092001 +089023 +071005 +82150 001009 +82152 092002 +054 +82155 067002 +060003 +067009 +013004 +015022 +092002 +083003 +092004 +093002 +067002 +083003 +092004 +067009 +031005 +092004 +054 +014009 015005 +092004 +001009 +092004 +82176 054 +027001 +081006 +060002 +089015 +059002 +015001 015004 +089015 +067002 +054 +027001 +081006 +060002 +089015 +025022 +089009 +083002 +084002 +079016 +080001 +054 +084001 +006008 +015026 +006008 +060002 +025001 +014006 +013004 +089015 +092004 +054 +068005 +015004 +089021 +092004 +006008 +089017 +015011 +092004 +006008 +084002 +092004 +001010 +088029 +064 +084001 +006008 +006008 +016 +067002 +033006 +092004 +093001 +092004 +055004 +089017 +092004 +055004 +82237 092007 +085003 +083003 +092004 +006008 +092003 +021005 +069002 +074 +067002 +019002 +092004 +055004 +092004 +006004 +092004 +006008 +089017 +013004 +092004 +015012 +82259 067002 +82261 014006 +067002 +013004 +033012 +092004 +093001 +059003 +057009 +005001 +033006 +060003 +067009 +067010 +025021 +023001 +013001 +092004 +018001 +089008 +033012 +092003 +057009 +005001 +089007 +092007 +089009 +092004 +092003 +021005 +013001 +089007 +092004 +092003 +008002 +089021 +092004 +008002 +057007 +089015 +033006 +092007 +089015 +018001 +005001 +033036 +092004 +012001 +083006 +059003 +089015 +019004 +068001 +023001 +82315 025013 +013002 +059003 +089017 +092004 +018001 +005001 +82323 013003 +092004 +059003 +009001 +083003 +092004 +006008 +060002 +060002 +060002 +089015 +057002 +005001 +086001 +092004 +006008 +015026 +092004 +003004 +084002 +092004 +001010 +82347 014006 +013004 +092004 +001011 +069002 +028001 +089023 +024001 030002 +001010 +82357 090006 +001009 +82360 092006 +054 +092004 +006008 +030004 +089010 +074 +82368 092004 +006008 +015024 +013004 +083003 +092004 +001010 +067002 +018002 +092004 +006004 +092004 +006008 +089017 +015010 +092004 +006008 +092004 +014002 +054 +084002 +092004 +001009 +089023 +015006 +084002 +001009 +001009 014005 +054 +092004 +006008 +089015 +089023 +092004 +006008 +015001 +068002 085003 +015001 +089023 +092004 +006008 +020003 +090001 +092004 +020001 +82414 092004 +055004 +030004 +091001 +090006 +092004 +037008 +020004 +089009 +092004 +015034 +015004 +089023 +092004 +055004 +030004 +021005 +092004 +093001 +013004 +092004 +092004 +030004 +089015 +033032 +092004 +074 +015034 +015031 +060003 +084002 +092004 +001009 +015004 +089015 +092004 +063005 +089017 +82453 083008 +007008 +089017 +82457 083008 +092004 +092004 +084001 +092004 +006008 +82464 061 +013004 +059003 +021005 +084002 +092004 +001009 +091001 +021005 +067002 +027001 +090006 +093002 +092004 +001009 +033009 +089015 +092004 +011004 +090014 +092004 +069002 +090013 +088009 +092002 +089007 +014008 +002003 +034007 +059003 +092002 +089007 +092004 +014003 +092004 +068001 +089017 +089007 +092004 +079014 +089015 +015013 +092004 +093001 +003006 +82510 059001 +089015 +085002 +084002 +092004 +002003 +004004 +089007 +092004 +079014 +015004 +018001 +092004 +008002 +092004 +089015 +067002 +024001 +092004 +011004 +018002 +092004 +004001 +084001 +092004 +008002 +092004 +090013 +092005 +033006 +071003 +020004 +058010 +092004 +009002 +092007 +092006 +021005 +084001 +092004 +001010 +023007 +092004 +012001 +069002 +013004 +091002 +82558 092004 +016 +092004 +004001 +084002 +092004 +002003 +090013 +092004 +020002 +089023 +092004 +030003 +092004 +067002 +023009 +089024 +015012 +067005 +023007 +089023 +067005 +067005 +092004 +030003 +089017 +024001 +092004 +058008 +090013 +092004 +013004 +031008 +033006 +092004 +058010 +012001 +82596 083003 +092004 +083004 +092004 +080001 +092007 +013003 057001 +001015 +092004 +087003 +092004 +001009 +033009 +093001 +092006 +034007 +092002 +067009 +060002 +088009 +034008 +82618 013004 +092004 +010002 +092004 +093001 +023009 +089017 +023009 +090013 +017007 +084002 +092006 +015008 +089015 +033013 +092004 +093001 +085002 +092004 +008002 +092004 +023008 +092004 +82642 092007 +013004 +089017 +092004 +063005 +092004 +083008 +092004 +001009 +090013 +023009 +015005 +089015 +023008 +092006 +82658 059001 +057012 +057008 +092002 +089017 +054 +057008 085002 +092004 +089004 +092004 +057005 +82670 067002 +060002 +067009 +054 +083003 +006008 +067009 +083008 +092004 +001009 +093002 +006008 033056 +093001 +089015 +054 +083003 +093002 +085003 +067009 +060002 +084001 +82692 015006 +084002 +093002 +089015 +067002 +060002 +067009 +013004 +014002 +067009 +015006 +084002 +093002 +083002 +027002 +011002 +033030 +089020 +092004 +085003 +067009 +060002 +089015 +061 +084002 +092004 +093002 +015006 +084001 +092004 +011002 +033015 +092004 +089004 +092002 +015006 +084002 +015005 +092002 +084002 +093002 +093002 +089017 +060002 +007002 +092006 +024001 +092004 +093001 +033036 +092004 +012001 +025014 +025014 +82748 015008 +084002 +093002 +013004 +092004 +055004 093001 +085003 +089020 +092004 +089020 +092004 +037009 +092004 +055004 +82763 091001 +067002 +067009 +060002 +033029 +092004 +092004 +058010 +092004 +093001 +087003 +089015 +015013 +092004 +033006 +090013 +092004 +009002 +011002 +092001 +092004 +039001 +090011 +092004 +011002 +089024 +092004 +041002 +092004 +010002 +037008 +084001 +093002 +037001 +82798 092004 +037001 +092004 +093002 +82803 056004 +092001 +030004 +037010 +089007 +092004 +092004 +056003 +023007 +013001 +089004 +092001 +089023 +033052 +092004 +093001 +037002 +056004 +037004 093001 +069002 +089007 +092004 +011003 +092001 +092004 +033048 +074 +089008 +089007 +092007 +092004 +089007 +033012 033029 +092003 +034006 +089017 +033006 +089007 +090010 +092004 +025004 +092004 +093001 +092004 +006004 +092007 +049 +089015 +092004 +090013 +092004 +033006 +069003 +092002 +006010 033005 +089004 +092003 +057009 +084001 +092004 +093002 +069003 +015006 +092004 +092004 +011002 +033015 +089024 +033006 +092004 +089004 +092003 +088015 +089023 +025001 +090003 +092003 +033015 +092006 +031001 +089007 +091002 +089004 +092004 +011002 +092007 +028002 +092002 +013001 +090006 +083002 +033052 +089015 +033034 +092004 +067009 +015006 +084002 +092004 +083003 +092004 +007003 +059001 +092006 +033010 +033016 +092004 +037004 +092004 +012001 +089017 +033028 +092004 +089004 +092004 +093001 +090002 +089017 +092004 +033005 +093001 +82925 092004 +033005 053009 +067006 +067009 +067006 +067009 +82932 089023 +092004 +033028 +092004 +033006 +089023 +092004 +031010 +82941 031003 +013001 +090008 +092005 +015004 +033006 +092004 +093001 +033006 +060002 +091005 +072002 +092004 +012001 +092004 +088003 +033006 +090001 +093001 +092004 +053009 +090013 +092004 +010002 +092003 +033006 +015001 +084002 +092004 +011002 +092007 +089015 +033006 +024002 +024002 +82977 069002 +069002 +032001 +089017 +024001 +024001 +82984 069002 +069002 +027001 034006 +089007 +032005 +092004 +026 +092004 +011002 +092007 +089017 +092004 +032005 +032005 +032005 +089017 +092004 +027005 +092004 +027005 +83006 024001 +092004 +032004 +089017 +092004 +024002 +032001 +089017 +092004 +026 +032001 +83018 041005 +83020 013002 +092004 +089008 +028002 +013001 +092003 +090006 +092004 +011002 +015004 +092007 +092004 +021006 +092004 +012001 +092004 +089017 +031007 +83039 085003 +067009 +063001 +083003 +057001 +057013 +089017 +034007 +059003 +092004 +015008 +084002 +092004 +033019 +092004 +037004 +092004 +012001 +089017 +033017 +092004 +089004 +092004 +012001 +093001 +093001 +089013 +078004 +83068 013004 +093001 +087005 +093001 +093001 +033029 +053009 +037005 +089009 +033015 +012001 +092006 +033025 +090001 +092004 +033005 053009 +092004 +083003 +033005 +088003 +090006 +092004 +012001 +092004 +092004 +013003 +089003 +010002 +093001 +089004 +058001 +092004 +037005 +012001 +012001 +089014 +076 +089004 +026 +088003 +089012 +023007 +023007 +093001 +093001 +092004 +012001 +092002 +090001 +092006 +057009 +057008 088009 +089017 +053009 +089009 +036003 +031010 +083003 +059003 +092004 +011002 +090009 +092004 +033020 +092004 +083003 +092006 +058010 +089017 +092003 +033029 +093001 +093001 +059003 +092004 +085001 +083003 +093002 +025003 +012001 +033029 +053006 +092003 +025008 088009 +089017 +025021 +090003 +012001 +012001 +092002 +089017 +012001 +093001 +093001 +091001 +060003 +033036 +092004 +012001 +092001 +090001 +093001 +093001 +089004 +059003 +092003 +089007 090006 +092004 +031010 +092003 +033015 +083003 +063001 +092004 +001006 +089007 +033020 +092001 +013001 +092004 +012001 +092006 +053001 +089014 +092004 +026 +092001 +089012 +092004 +033015 +092004 +012001 +092004 +090006 +068004 +029004 +092003 +090011 +067005 +067007 +092004 +033013 +092001 +033012 +83213 089009 +067002 +067001 +068003 +089012 +092004 +030004 +092004 +012001 +015006 +084002 +092003 +089007 +025002 +034006 +092003 +089009 +057008 +092004 +057008 +012001 +092003 +089009 +092004 +074 +092003 +83240 089019 +089019 +025013 +083003 +092003 +089012 +092004 +083003 +092005 +031010 +089017 +092003 +089017 +092001 +83255 011002 +069002 +025001 +092003 +028001 +090006 +067001 +030004 +015006 +084002 +092003 +83267 013004 +067006 +092004 +067002 +089009 +092004 +042002 +090013 +089017 +083003 +092003 +064 +089017 +083003 +092004 +063005 +011002 +089017 +011004 +089017 +011004 +089017 +032004 +089017 +032005 +071004 +058010 +061 +092004 +089020 +092001 +025006 +089017 +092003 +092004 +083003 +093002 +033015 +089007 +069002 +025018 +092004 +033015 +089007 +076 +012001 +013001 +089008 +021006 +059003 +092004 +031010 +089017 +093001 +060003 +089017 +011002 +089007 +034005 +012001 +089012 +092004 +028003 +078004 +031009 +83333 031009 +064 +033005 +089023 +092004 +034005 +089012 +031009 +023007 +83343 028003 +088024 +012001 +090003 +001002 +090008 +059003 +053001 +089017 +088002 +009001 +092004 +092004 +072001 +089012 +088002 +013004 +089007 +092004 +028004 +092004 +012001 +028004 +013001 +090013 +092004 +089007 +092004 +012001 +092004 +028003 +089007 +092004 +024001 +092004 +092004 +089017 +067005 +092004 +076 +089017 +012001 +067006 +042003 +001001 +092004 +042003 +032001 +027001 +089008 089009 +092004 +013001 +092004 +033049 +089007 +028001 +092004 +012001 +069002 +064 +012001 +033037 +089024 +033036 +089023 +065004 +090006 +092004 +030001 +092004 +089017 +032005 +092004 +032005 +092004 +026 +033016 +013001 +032004 +032005 +089017 +057010 +092004 +079005 087003 +092004 +023007 +012001 +089008 +064 +006013 +023007 +009001 +089017 +004002 +089017 +004001 +089017 +004004 +089008 +037007 +092004 +092004 +012001 +089007 +092004 +025002 +092004 +026 +092004 +013002 089008 +088034 +092004 +087004 +092004 +008001 +092004 +083003 +092008 +092004 +057010 +092004 +072001 +092004 +012001 +089008 +092004 +033018 +089017 +053007 +089017 +053001 +092004 +042003 +089023 +092004 +042003 +092006 +013001 +033037 +067005 +092004 +067005 +072001 +83488 037007 +092004 +092004 +012001 +013002 089008 +025002 +087004 +089007 +83497 092004 +079022 +092004 +068004 +092004 +058001 +023004 +013002 +092004 +089023 +058001 +089017 +064 +83511 092004 +079022 +068004 +092004 +058001 +023004 +092004 +079022 +025002 +83521 092004 +025002 +092004 +090013 +092005 +079022 +089020 +079022 +092004 +088020 +090011 +83533 092004 +038002 +092006 +071004 +092004 +088035 +092004 +089020 +092004 +090013 +089017 +089007 +069002 +030006 030007 +092004 +012001 +031004 +83551 028001 +037007 +092004 +092004 +012001 +013002 +088015 +030001 +042002 +092004 +069002 +066 +059004 +059003 +088002 +088015 +025002 +088015 +068006 +088022 +020004 +033051 039005 +088021 +088015 +033043 +033042 +088026 +088016 +088027 +088027 +030004 +088015 +010002 +036003 +032005 +034005 +025003 +088010 +092004 +092004 +033033 +092004 +012001 +028001 +090006 +092004 +092004 +092007 +042002 +065002 +023007 +013001 +069002 +83605 092004 +090011 +089023 +089017 +031003 +092004 +042002 +089008 +033049 +013001 +091004 +009001 +059003 +092004 +056005 +089007 +089004 +092006 +056005 +092004 +058006 +092003 +056005 +089007 +092004 +058005 +042002 +092004 +056005 +089023 +028001 +090006 +092004 +056005 +092004 +012001 +013001 +070 089005 +070 +090013 +092004 +092004 +064 +042002 +089017 +031001 +092007 +091004 +009001 +092004 +056005 +092004 +092004 +064 +042002 +83661 042002 +092004 +090006 +092003 +021004 +092004 +056005 +092004 +012001 +089024 +092004 +078001 +092004 +088009 +092004 +089017 +092004 +025015 +089017 +092004 +025015 +088025 +028001 +090006 +092004 +088009 +092004 +012001 +089008 +041005 +092003 +036001 +089023 +089005 +092004 +088028 +092003 +089017 +041005 +026 +013004 +092003 +038001 +067007 + +038001 +089017 +028003 +056005 +092004 +012001 +092006 +038002 +059003 +089005 +092004 +042002 +092004 +089023 +092004 +83722 025015 +042002 +088001 +014006 +089017 +087002 +089017 +023007 +057007 +023007 +067005 +089023 +092004 +089007 +088023 +089017 +036003 +092004 +072001 +089023 +031009 036003 +092004 +088002 +088024 +089017 +088024 +022001 +089017 +022001 +090013 +059003 +009001 +009001 +092004 +090011 +092004 +088015 +089017 +093001 +060003 +089017 +011002 +089023 +033037 +089017 +087002 +089017 +025021 +059003 +092004 +090011 +092004 +088001 +089017 +093001 +060003 +089017 +011002 +089007 +069002 +013003 +088030 +090005 +092004 +012001 +089007 +059001 +033005 +088038 +033005 +089017 +021006 +089017 +059001 +83797 033005 +088038 +090002 +033005 +056005 +089007 +069002 +092004 +024002 +033005 +034005 +090005 +092004 +012001 +089023 +092004 +042002 +033005 +034005 +089007 +067002 +011002 +092004 +069002 +033005 +83823 058001 +092004 +092004 +033005 +042002 +092007 +033005 +069002 +83832 092004 +013001 +033033 +092004 +028003 +092004 +042002 +092004 +033005 +033005 +083003 +092004 +026 +092004 +033020 +092004 +092004 +026 +089017 +089020 +092005 +092004 +030001 +033048 +089024 +83858 033049 + +067007 +83862 056005 +092004 +012001 +092004 +028005 +092004 +009001 +089005 +092004 +033015 +092001 +090001 +093001 +093001 +089023 +089010 +092003 +093001 +033009 +089017 +031009 +033005 +089017 +033039 +090006 +012001 +089017 +028001 +092004 +030004 +089017 +030007 +092004 +065001 +033017 +089012 +092004 +033005 +089017 +031009 +092003 +058010 +036001 +032005 +014006 +092004 +013001 +088015 +033017 +032005 +033017 +009004 +090013 +092004 +058001 +092004 +028002 +089017 +092004 +072001 +090006 +092004 +033005 +83926 092004 +033017 +058006 +092003 +069004 +033017 +092004 +033019 +069002 +057021 +057021 +092004 +033006 +069002 +088036 +088036 +092004 +025017 +092004 +006013 +053012 057021 +092006 +090006 +033005 +033039 +089012 +092004 +036003 +092004 +033005 +092004 +012001 +087004 +089007 +092004 +033009 +092004 +012001 +090010 +092003 +033042 +083003 +092004 +011002 +064 +033005 +089007 +089023 +053006 +035001 +089010 +033005 +042002 +089023 +089010 +036003 +033005 +058010 +092004 +053006 +092003 +011002 +013002 +089008 +089010 +092004 +011002 +092004 +033033 +092004 +033005 +036003 +069004 +092004 +011002 +092004 +84003 053006 +057020 +089017 +056005 +092004 +090003 +058001 +011002 +092004 +033005 +036003 +092003 +092004 +089007 +033005 +089017 +053006 +036003 +033005 +089007 +069002 +092004 +089004 +092004 +024001 +093001 +058010 +069003 +092004 +089004 +092004 +024001 +089004 +008002 +053006 +089023 +092004 +84041 092004 +026 +093001 +84045 053006 +026 +089004 +012001 +069002 +033005 +092006 +092004 +033037 +069002 +090003 +009001 +089023 +090003 +092004 +012001 +089008 +092004 +092004 +065005 +092004 +093001 +089024 +092004 +092004 +065005 +092004 +053006 +059002 +089004 +059003 +089014 +089007 +091002 +065006 +089007 +035005 +092004 +033006 +092004 +012001 +091001 +092004 +089010 +031010 +092004 +069002 +092004 +031009 +092004 +092004 +031009 +092004 +012001 +076 +069002 +013004 +089023 +013001 +092004 +012001 +088005 +089017 +059003 +009001 +033018 +84112 033005 +089009 +071003 +088002 +090006 +092004 +033006 +092003 +089017 +039012 +067002 +092004 +030007 +092003 +089023 +089010 +092004 +088002 +092002 +012001 +088002 +028003 +092004 +033006 +069002 +088002 +092004 +012001 +092004 +090014 +092004 +038001 +089005 +009001 +033006 +069002 +013004 +089007 +092004 +056005 +092004 +012001 +092004 +009001 +089023 +089010 +092004 +072001 +092004 +012001 +089012 +092004 +092001 +033018 +059006 +089008 +092004 +087002 +092004 +092004 +089023 +089017 092001 +064 +088038 +056005 +089017 +069002 +064 +033042 +089017 +064 +033006 +092004 +092002 +033006 +090006 +042002 +092004 +088015 +089009 +013004 +092004 +088001 +092006 +092004 +056005 +088002 +013001 +089008 +092004 +065005 +069002 +091002 +089007 +033048 +089017 +093001 +089017 +011002 +059003 +037001 +088038 +013001 +064 +033005 +090006 +069002 +013003 +088002 +069003 +060002 +069002 +013003 +092004 +032004 +069002 +013003 +092004 +027004 +092004 +012001 +059003 +031009 +089020 +088035 +069002 +013003 +092004 +042002 +088001 +069002 +013003 +059002 +060002 +007007 +079024 +092004 +008002 +092004 +092004 +033006 +092004 +088021 +008003 +004004 +083009 +092004 +033006 +092004 +092006 +092004 +033006 +033055 +089017 +088026 +059004 +067005 +092004 +008002 +092004 +020004 047001 +020004 +020003 +089017 +022001 +083003 +092004 +041001 +092004 +089017 +041001 +025021 +069002 +028001 +069002 +013003 +053007 +012001 +083007 +092004 +032004 +092004 +089023 +028001 +090006 +059001 +092004 +033005 +033006 +092004 +84303 092004 +033005 +033006 +089009 +059003 +033008 +033008 +089017 +056004 +013002 +059003 +092004 +009001 +092004 +012001 +089007 +089007 +042002 +033005 +069002 +034005 +059003 +009001 +090005 +092004 +089007 +089012 +033005 +028002 +088038 +089023 +067002 +089021 +033033 +088002 +012001 +028003 +033020 +090001 +092004 +033005 +84345 092004 +033005 053009 +089017 +034005 +012001 +089012 +031009 +093001 +093001 +090013 +059003 +092004 +031010 +089007 +069002 +013001 +058006 +089007 +059003 +088038 +089017 +013001 +092004 +087003 +092004 +012001 +034005 +057008 +092004 +092004 +088009 +089012 +092004 +037010 +092004 +090001 +093001 +093001 +092006 +013001 +092004 +012001 +040002 +089012 +031009 +090006 +092004 +092004 +023007 +089009 +028003 +092004 +088002 +092004 +090010 +092004 +030002 +092004 +013004 +088038 +089012 +092004 +025015 +092004 +012001 +089009 +092004 +028003 +092004 +088002 +092004 +067007 +092004 +067002 +067005 +089009 +092004 +013001 +092004 +088002 +089017 +034005 +092004 +063004 +031010 +093001 +089008 +092006 +092004 +033039 +013004 +090001 +058004 +033033 +092004 +042002 +069002 +089023 +090001 +033033 +031010 +089007 +031001 +034005 +031010 +009001 +089021 +042002 +033033 +089024 +093001 +092004 +012001 +84459 069002 +089017 +011002 +069001 +089017 +011002 +089010 +060002 +092004 +012001 +092006 +034005 +053006 +089012 +031010 +089017 +011002 +089012 +092004 +031010 +089008 +033033 +076 +089012 +092004 +031010 +069002 +013004 +089023 +033033 +076 +84491 033010 +092004 +013001 090013 +093001 +092004 +010002 +092002 +089004 +058001 +089007 +089010 +093001 +089007 +042002 +034005 +090013 +025019 033039 +089023 +069002 +090005 +012001 +089007 +092004 +092004 +033005 +033006 +84518 031009 +093001 +092004 +012001 +84523 057020 +092004 +84526 034005 +84528 092004 +042004 +092004 +057013 +057020 +069002 +089005 +088009 +089023 +089005 +057018 071004 +089023 +092004 +069002 +042004 +089023 +031009 +84546 092004 +034005 +092004 +053001 +057020 +092004 +031009 +092004 +013002 +034005 +064 +089017 +093001 +033006 +092004 +025011 +092004 +009001 +092006 +092004 +012001 +057020 +034005 +089021 +042002 +025011 +092006 +092004 +088018 +040002 +089017 +092006 +092004 +088038 +040002 +025011 +009001 +092006 +069002 +069002 +057020 +012001 +088038 +84590 092004 +025011 +092007 +090013 +092004 +053006 +089024 +089017 +090013 +092004 +011002 +089007 +033006 +057020 +092004 +093001 +092004 +031009 +013002 +034005 +089008 +092004 +057020 +058010 +013001 +053006 +089024 +013001 +011002 +069002 +013001 +053006 +089023 +013001 +011002 +089015 +057009 +033056 +053006 +073 +092004 +034005 +092004 +031009 +092004 +013001 +092004 +011002 +089009 +092004 +013001 +092004 +058010 +059003 +092004 +031009 +84647 011002 +089009 +092004 +057020 +092004 +092004 +034005 +089017 +058010 +053006 +092004 +069002 +84660 011002 053006 +84662 089023 +089017 +092004 +041004 +092004 +041004 +092004 +013001 +011002 +031009 +092004 +058010 +092002 +093001 +089007 +069002 +089012 +033005 +092004 +033025 +092004 +057009 +001006 +092004 +013001 +092004 +093001 +089024 +092004 +010002 +092004 +089023 +089012 +034005 +031009 +089007 +089010 +092004 +089003 +033005 +057009 +076 +092004 +031009 +089017 +076 +092004 +033025 +089007 +092004 +033005 +038001 +013001 +089023 +092006 +069002 +013003 +033005 +069003 +036003 +84724 089012 +031009 +089009 +089005 +088009 +089009 +092004 +013001 +071003 +092004 +033025 +059003 +092004 +010002 +069002 +092004 +089003 +092004 +033005 +84744 089023 +089017 +092004 +089003 +031009 +093001 +092006 +013001 +058010 +059003 +092002 +090005 +092006 +031009 +012001 +092004 +023007 +092004 +023007 +089017 +033029 +092004 +069002 +013003 +064 +013003 +064 +033005 +090006 +058010 +059001 +011003 +013001 +092003 +092006 +089023 +025004 +089006 +025004 +031009 +089008 089009 +092004 +013002 +092004 +010002 +059001 +011003 +089005 +092004 +033006 +061 +013001 +092004 +010002 +092003 +84800 069002 +074 +092004 +031009 +030001 032002 +092004 +092004 +008001 +068004 +067009 +078003 +013001 +089017 +092004 +023003 +092004 +008002 +093001 +089023 +84820 092004 +033025 +092004 +012001 +069002 +031006 +092004 +031009 +089023 +074 +092004 +031009 +057008 +033037 +092004 +012001 +089017 +031006 +090006 +013001 +074 +092006 +033025 +089017 +042002 +089008 +089017 +057020 +092004 +013002 +034005 +84852 069002 +033005 +090009 +092004 +84857 090006 +057020 +092004 +089023 +089017 +090009 +092002 +092006 +057020 +067002 +092004 +031009 +84870 092004 +023007 +089021 +023007 +093001 +092004 +012001 +092002 +092006 +037007 +089007 +092004 +088038 +092002 +089017 +023007 +089007 +092004 +034005 +092002 +089008 +034005 +089012 +031010 +025021 +84896 089020 +092004 +012001 +090001 +092004 +012001 +092002 +093001 +093001 +090001 +092006 +089017 +092004 +033006 +074 090013 +092004 +031010 +013002 +092004 +088009 +092007 +013001 +092006 +013001 +089017 +033039 +089007 +025004 +092004 +079005 +092004 +012001 +089017 +069002 +84931 089023 +089017 +033039 +013001 +092004 +022001 +028001 +090006 +092004 +022001 +025015 +013001 +089015 +092004 +025015 +065001 +089015 +092004 +065001 +025004 +089015 +092004 +025004 +069002 +025018 +089007 +092004 +025003 +092004 +012001 +090014 +084002 +092004 +026 +092002 +090001 +012001 +088003 +092004 +84971 092002 +089007 +067006 +093001 +013001 +092002 +022001 088015 +067006 +067002 +022007 067001 +090009 +053001 +023007 +091001 +078003 +090009 +088002 +092004 +023007 +84991 090009 +092004 +088001 +071002 +092004 +84997 025014 +023007 +089023 +028003 +092004 +092004 +025003 +090013 +092002 +092004 +012001 +090006 091005 +067006 +088038 +013001 +092002 +093001 +090009 +092002 +023007 +089008 +059002 +078002 +034005 +067002 +090002 +092004 +023007 +092004 +021006 +090001 +092004 +089021 +092004 +038001 +089007 +089010 +039001 +013001 +040001 +092004 +012001 +089012 090002 +092004 +023007 +092004 +012001 +092004 +059002 +078002 +040001 +021006 +089012 +092004 +023007 +092004 +089017 +069002 +85056 089023 +089017 +033039 +089004 +092004 +012001 +090001 +092004 +012001 +092002 +093001 +093001 +090001 +092006 +067002 +092004 +040001 +090013 +85076 064 +090001 +060002 +009001 +092004 +088015 +084002 +092004 +009001 +013004 +089015 +089007 +092004 +088038 +092004 +023007 +85094 090013 +059003 +009001 +092004 +023007 +015001 015003 +089007 +092006 +059003 +088038 +089007 +067006 +033005 +088038 +085001 +083003 +009001 +089023 +088038 +069002 +033005 +069002 +013003 +033005 +089023 +037001 +092004 +023007 +85123 093001 +067006 +093001 +85127 037001 +092004 +069002 +088038 +090002 090006 +092004 +064 +092004 +036003 +093001 +092006 +013001 +058010 +092004 +067002 +089023 +069002 +064 +092004 +088038 +061 +089017 +092004 +057008 +089007 +089010 +092004 +092004 +060002 +088038 +092004 +059001 +023007 +059002 +078002 +092004 +088009 +092004 +012001 +089017 +092004 +057008 +089025 +088009 +092004 +092004 +060002 +009001 +093001 +093001 +090009 090013 +092004 +059001 +059006 +089017 +069002 +064 +090001 +060002 +088038 +092004 +057008 +089007 +089023 +092004 +056005 +089007 +060002 +013002 089008 +056005 +089023 +092004 +057008 +067006 +059001 +088038 +013002 089008 +056005 +089007 +089010 +092004 +092004 +060002 +088038 +092004 +023007 +037001 +090001 +092004 +060002 +059002 078001 +078002 +092004 +092004 +059006 +092004 +088009 +089017 +092004 +057008 +092004 +034005 +057009 +013001 089004 +023007 +037001 +090001 +092004 +060002 +093001 +093001 +089008 +85240 064 +089007 +060002 +088038 +090013 +059003 +009001 +013002 089008 +056005 +061 +089017 +089007 +060002 +088002 +090013 +059003 +009001 +013002 089008 +056005 +023007 +089007 +064 +089007 +092004 +036003 +092004 +060002 +009001 +088038 +013001 +092004 +059001 +061 +089017 +089007 +092004 +036003 +092004 +060002 +088002 +013001 +092004 +059001 +85284 033005 +034002 +089008 +059007 +092004 +088038 +089023 +092006 +059007 +092004 +088038 +059006 078002 +092004 +088009 +089009 +064 +037001 +092004 +088038 +089008 +092004 +023007 +061 +089017 +092004 +088009 +037001 +090001 +034005 +013002 089008 +023007 +067005 +090001 +093001 +093001 +092004 +012001 +092002 +089008 +092004 +033006 033010 +068002 +092004 +088038 +089009 +092004 +088009 +059007 +069002 +013004 +092004 +074 +092004 +088015 +092004 +067006 +041001 +013001 +092004 +089024 +028001 +090006 +059001 +053005 +090006 +093001 +093001 +090006 +092004 +023007 +092004 +053005 +089008 +052 +092004 +089012 +092004 +053005 +013002 +092004 +023007 +089009 +064 +023007 +093001 +089021 +023007 +089012 +092004 +076 +092004 +012001 +061 +089017 +092002 +013001 +058011 +023007 +041001 +089007 +089007 +089020 +013001 +092004 +064 +092004 +023007 +092004 +091002 +089017 +092004 +023007 +013001 +092007 +028001 032002 +090006 +092004 +041003 058011 +092002 +041003 +020004 +089009 +013004 +092004 +009001 +092004 +088015 +092004 +067006 +037001 +092002 +092004 +088015 +089007 +092004 +074 +037010 +089021 +092004 +088038 +85425 089007 +074 +089020 +093001 +031006 +090006 +089017 +023007 +092004 +028001 +090006 +093001 +023007 +089021 +023007 +067006 +023007 +023007 +092004 +067006 +037004 +089007 +092006 +023007 +092004 +088015 +074 +060005 +089023 +092006 +041001 +041001 +092004 +012001 +85460 089017 +092003 +031001 +092004 +013001 +089023 +074 +092004 +088015 +089023 +041001 +092004 +012001 +089020 +093001 +093001 +089008 +069002 +037001 +092004 +088015 +083003 +092004 +023007 +092003 +009001 +089008 +092004 +036003 +092004 +025002 +092004 +069003 +013001 +092004 +008002 +092003 +006001 +088002 +092004 +088015 +089023 +013001 +092004 +092004 +012001 +064 +089021 +023007 +023007 +089017 +092004 +008002 +092003 +006001 +088002 +092004 +012001 +089007 +088015 +092003 +069002 +037004 +089007 +069002 +013001 +037001 +033005 033033 +089023 +037001 +088009 +85532 092004 +088038 +089007 +069002 +013001 +037001 +033005 033033 +089023 +037001 +088009 +069002 +013004 +069004 +028001 +090006 +092006 +013001 +092004 +087005 +089009 +036003 +087005 +058010 +092006 +036003 +089024 +088038 +089008 +023007 +089024 +036003 +089008 +088002 +089023 +033036 +092004 +012001 +090006 +058010 +087005 +092004 +088038 +089023 +036003 +090003 +026 +090006 +092006 +033017 +058004 +033017 +089017 +037010 +089021 +092004 +088015 +037001 +092004 +088002 +009001 +033006 +089007 +092004 +074 +092004 +026 +092003 +089007 +064 +013001 +092004 +008002 +092003 +037001 +092004 +088034 +089017 +092004 +088018 +089008 +092004 +088018 +85615 067002 +013001 +092004 +008002 +092003 +037001 +092004 +088002 +089008 +053006 +089007 +067007 +087005 +092004 +088015 +058010 +037010 +058010 +092004 +088002 +089008 +092004 +042002 +090012 +067002 +089007 +092006 +067002 +025018 +089007 +092004 +089008 +092007 +023007 +089023 +067002 +037010 +089021 +092004 +088015 +089017 +037001 +092004 +012001 +090012 +092004 +042002 +092003 +089008 +053006 +089015 +092004 +089008 +023007 +067005 +089007 +092004 +089008 +092004 +088038 +023007 +089023 +092004 +057008 +092004 +012001 +023007 +067005 +089020 +093001 +093001 +092004 +012001 +092002 +089024 +011002 +028001 +089007 +032002 +033005 +033006 +090006 +092004 +033005 +037004 +092004 +009001 +067007 +059002 +067005 +023007 +089007 +092004 +034010 +009003 +092004 +023007 +010004 +037003 +033005 +089023 +067002 +023007 +092004 +010004 +037010 +089021 +092004 +033033 +092004 +010004 +089008 +089008 +023007 +092004 +010004 +088036 +033009 +067002 +034010 +009002 +058006 +089023 +067002 +023007 +092004 +010004 +037010 +013001 +089021 +092004 +033033 +092004 +069002 +058010 +092004 +088036 +034010 +009002 +058006 +089008 +011002 +092001 +089017 +092003 +068004 +092004 +033005 +089012 +092004 +008001 +092004 +093001 +089009 +092004 +034010 +092003 +058006 +092004 +089021 +023007 +023007 +089009 +013003 +092004 +012001 +089007 +067007 +013001 +013001 +092004 +026 +092004 +025002 +092004 +088038 +092004 +089012 +092004 +033005 +042001 +089020 +092004 +008002 +092002 +089009 +092004 +013003 +092004 +023007 +85806 091001 +037010 +089021 +092004 +033005 +074 +089004 +092006 +037001 +089008 +035002 +092002 +013001 +067005 +012001 +089017 +069002 +058011 067005 +033005 +089008 +092004 +033006 +092004 +033005 +088038 +069002 +013004 +089023 +092004 +088038 +069002 +032002 +089023 +85840 089012 +033005 +089007 +089017 +092004 +025002 +069002 +028001 +089023 +85850 092004 +033005 +033006 +069002 +025002 +089023 +022007 +018001 +092004 +088015 +090002 +092004 +033032 +013001 +083003 +092001 +058004 +025002 +089007 +089021 +033005 +088015 +065004 +089017 +092001 +023007 +089021 +033005 +067001 +089023 +015001 +092004 +033032 +092004 +088015 +042001 +85887 092001 +023007 +85890 013001 +092001 +092004 +033032 +092004 +089009 +023007 +092007 +089008 +023007 +089007 +092004 +088015 +022007 +018001 +089012 +092004 +033032 +031002 +092001 +089015 +089012 +092004 +020004 +089008 +091001 +092004 +033005 +088003 +089017 +092004 +033032 +088003 +089017 +088002 +089017 +088001 +089008 +092004 +088001 +092001 +013002 +023007 +069002 +013004 +089023 +092004 +088015 +089009 +028003 +088038 +089012 +092004 +088001 +092001 +013001 +023007 +089009 +013002 +089004 +078002 +088038 +092004 +088015 +089012 +092004 +033032 +089007 +028001 +090006 +092004 +033005 +079002 +013001 +089023 +092001 +079002 +013001 +057015 +037001 +092004 +088015 +089007 +092006 +090011 +069002 +032002 +089007 +069002 +092006 +025001 +092007 +042002 +089023 +092006 +088026 +092007 +042002 +85989 089010 +092006 +069002 +025001 +092007 +042002 +031003 +092004 +033005 +090006 +088001 +86001 091001 +067006 +092001 +090011 +092004 +089023 +092004 +86009 089020 +092001 +088015 +089007 +028001 +090006 +069002 +085005 +089020 +092001 +089019 +089019 +089020 +092004 +026 +092001 +088001 +089007 +092004 +025001 +085001 +092001 +089023 +092004 +090011 +092004 +088001 +069002 +089007 +069002 +092006 +025001 +088001 +042002 +089023 +092006 +069002 +025001 +088015 +092007 +042002 +089023 +089010 +092006 +069002 +025001 +092007 +092001 +042002 +067006 +092001 +090011 +092004 +089023 +092004 +085005 +089020 +092001 +088015 +089008 +027001 +092004 +033033 +092001 +092004 +025001 +042002 +092004 +088001 +090006 +092001 +092004 +088015 +085001 +089007 +025011 +092004 +033005 +092004 +012001 +089004 +092004 +026 +026 +089023 +032002 +058006 +033033 +089020 +092004 +008002 +092001 +039001 +092004 +033033 +092004 +026 +092001 +089017 +037001 +092001 +089012 +092004 +033033 +092004 +088015 +092004 +085001 +089020 +092004 +008002 +092001 +022001 +009001 +092001 +092004 +092001 +021005 +089021 +092004 +009001 +092004 +023007 +092007 +033036 +092004 +012001 +089012 +093001 +093001 +092004 +012001 +092001 +089008 +089008 +089023 +092008 +092001 +092004 +026 +035002 +033005 +012001 +089023 +092004 +026 +033033 +088015 +089008 +092004 +056005 +067002 +092004 +089020 +093001 +093001 +089007 +092004 +033033 +092004 +012001 +092004 +023007 +089020 +093001 +093001 +037010 +092003 +089021 +092004 +033005 +092004 +088015 +089017 +092004 +023007 +089007 +092004 +071001 +092004 +033005 +089007 +092006 +074 +089007 +092004 +026 +092004 +012001 +092004 +092004 +012001 +015004 +013001 +064 +026 +088015 +089017 +090009 +088038 +056005 +092004 +088015 +013001 +092004 +058001 +089009 +092004 +033033 +092004 +033005 +059003 +090001 090013 +092002 +092004 +041001 +069002 +089005 +026 +089023 +089005 +012001 +089007 +092004 +089005 +026 +013001 +092004 +092004 +026 +030001 087002 +089023 +092004 +089005 +012001 +092004 +092004 +012001 +089007 +092004 +026 +092004 +026 +023007 +089023 +092004 +026 +092004 +012001 +023007 +089017 +025021 +089007 +092004 +026 +092004 +026 +039001 +090013 +012001 +089007 +092004 +033005 +092004 +012001 +069002 +036003 +089007 +069003 +074 +86280 092004 +013001 +026 +013001 +012001 +025008 +069002 +074 +089023 +092003 +013001 +069002 +013001 +026 +089023 +013001 +012001 +089010 +012001 +012001 +085005 +089020 +092003 +089023 +089010 +092004 +012001 +093001 +069002 +090013 +092007 +069002 +013001 +092004 +089023 +089010 +093001 +089020 +092003 +089023 +092004 +009001 +065004 +089007 +088038 +089023 +092004 +026 +023007 +089007 +034005 +86332 089010 +092004 +012001 +092004 +023007 +092004 +093001 +089021 +023007 +085005 +089020 +092003 +092004 +023007 +089021 +023007 +093001 +86350 023007 +089017 +092004 +023007 +008001 +092003 +089012 +092004 +085005 +089020 +092003 +092004 +012001 +089008 +86365 011002 +071004 +013001 +069002 +092004 +026 +092004 +089005 +026 +041001 +089007 +089010 +089005 +026 +041001 +071005 +023007 +089023 +089010 +012001 +092004 +042002 +092004 +009001 +068004 +023007 +089007 +059001 +012001 +012001 +036001 +092007 +009001 +012001 +058010 +089007 +069002 +090013 +030001 +037001 +067002 +089008 +025022 +089023 +090013 +012001 +035007 +089012 +092006 +033006 +012001 +092004 +012001 +092008 +092004 +012001 +033020 +092004 +026 +092002 +090006 +058010 +058004 +012001 +089017 +089010 +058004 +089017 +057009 +089023 +057009 +012001 +089023 +057009 +093001 +089010 +024006 +089009 +089017 +087002 +089007 +031001 +090006 +069002 +065002 +092004 +024006 +092004 +067002 +067008 +064 +092004 +067002 +028003 +083003 090013 +092002 +079005 +089007 +092004 +025004 +092004 +001001 +092004 +028003 +092004 +009001 +092004 +012001 +025004 +089007 +090006 092004 +065004 +092004 +001001 +037001 +069002 +025005 +089023 +090010 +092004 +037001 +089006 +025004 +86490 092008 +092004 +001001 +037010 +013002 +092004 +037001 +092004 +023013 +013002 +092004 +037010 +092004 +079005 +092004 +058004 +092004 +012001 +089007 +028001 +090006 +063001 +092004 +001001 +025012 +089017 +024006 +067006 +092004 +067002 +089017 +069002 +86523 089023 +089017 +092008 +092004 +057012 +092004 +012001 +090013 +092002 +089017 +092008 +083003 +092004 +025012 +025004 +035007 +092004 +037010 +092004 +008001 +092002 +089007 +092004 +025004 +021006 +089023 +025004 +024001 +069002 +013001 +025004 +089007 +092006 +024001 +092004 +86559 025004 +089023 +089010 +092006 +069002 +024001 +025004 +089007 +025015 +025004 +86570 064 +089017 +092004 +012001 +035001 +092004 +074 +092002 +089007 +092004 +092004 +033013 +064 +071004 +069002 +028001 +089023 +092008 +092004 +012001 +033035 +025012 +033006 +089017 +092004 +027004 +092004 +026 +028001 +092004 +092004 +026 +092004 +012001 +089007 +089005 +012001 +033012 +090009 +011002 +86611 028001 +090006 +092004 +025003 +092004 +012001 +059003 +042002 +090006 +065003 088001 +092004 +089005 +030004 +033029 +058010 +089007 +092006 +028001 030006 +089017 +030005 +058001 +092004 +058005 +092004 +012001 +092004 +089009 +092004 +013001 +092004 +013003 087003 +083003 +059001 +011002 +089017 +092006 +030005 +092007 +089017 +033029 +089015 +092006 +033029 +092007 +089017 +034005 +089017 +092006 +034005 +092007 +089017 +087003 +089008 +092004 +033006 +090006 +092007 +089007 +092004 +012001 +090009 +092002 +092004 +090008 +092002 +091002 +092006 +092004 +057001 +012001 +069002 +022003 +089023 +090009 +092002 +059003 +037007 +092004 +092004 +069002 +089017 +089018 +092004 +092004 +059003 +092002 +057008 +092004 +033048 +090008 +030006 +012001 +012001 +092004 +034005 +092004 +092004 +056005 +093001 +093001 +092004 +023007 +089023 +089023 +023007 +092006 +085001 +083005 +082002 +092004 +012001 +092006 +089017 +033035 +090009 +092002 +092004 +092002 +063007 +089021 +092004 +025003 +092004 +093001 +022001 +089024 +022001 +089024 +039009 +089024 +023001 +089024 +049 +089024 +021001 +089024 +020004 +064 +033005 +091005 +090010 +092003 +020004 +063001 +092004 +067008 +031001 +064 +004001 +020004 +089023 +013001 089004 +092007 +059003 +039012 +089012 +092004 +025003 +092002 +089007 +031006 031009 +090006 +069003 +023007 +069003 +023007 +069003 +012001 +069003 +012002 037004 +069003 +067002 +069003 +067002 +069003 +012002 037004 +069003 +001002 012002 +069003 +001003 012002 +069003 +092004 +042003 +058006 +074 +092002 +063007 +089021 +092004 +025003 +092004 +012001 +092004 +089020 +093001 +093001 +092004 +012001 +092002 +072001 +033006 +089020 +093001 +069002 +033018 +033020 +092001 +092004 +026 +092001 +089020 +012001 +088003 +090006 +025023 +092001 +013001 +078001 +089017 +068004 +025021 +092004 +026 +092001 +089007 +025001 +092008 +092001 +033055 +013001 +089021 +092004 +093001 +090009 +092004 +011002 +092001 +092004 +011003 +092001 +089004 +058001 +092004 +058010 +093001 +092006 +092004 +035007 +089017 +092004 +087002 +089017 +092004 +034005 +089017 +092004 +033033 +089017 +092004 +053001 +089017 +092004 +033025 +092006 +092004 +010002 +089017 +089003 +092006 +092004 +053009 +092004 +089004 +058001 +092004 +013001 +037001 +059003 +012001 +033037 +067005 +092004 +067005 +072001 +089023 +069002 +064 +090006 +075 +092004 +033006 +092004 +012001 +089007 +069002 +059003 +092004 +089003 +093001 +092007 +093001 +069003 +089007 +058010 +010002 +093001 +059003 +036004 +089023 +089004 +093001 +033009 +092003 +010002 +089019 +089019 +069002 +092004 +010002 +092004 +058001 +092007 +058004 +092004 +012001 +089023 +092004 +058004 +092004 +033025 +031001 +86943 010002 +089007 +033025 +092004 +033006 +092007 +067002 +092004 +067001 +092007 +015006 +089017 +013004 +092004 +093001 +010002 +089017 +069002 +86962 089023 +089017 +093001 +023003 +023003 +090003 +092004 +093001 +092004 +010002 +092002 +089007 +067006 +023003 +069003 +042002 +092004 +088001 +089024 +088015 +089009 +092004 +089005 +030006 +030004 +092004 +012001 +013003 +069002 +089007 +042002 +089023 +089007 +092004 +033029 +033006 +092004 +090006 +092004 +067005 +037001 +092004 +067005 +87006 033005 +092004 +093001 +025003 +089023 +092004 +093001 +088026 +091002 +092004 +033006 +069005 +088002 +089020 +092004 +012001 +069002 +013004 +089007 +092004 +093001 +033006 +088010 +071001 +092006 +088010 +089017 +088010 +071001 +092006 +088010 +089008 +089008 +069002 +092004 +025001 030004 +069003 +092004 +068005 +089023 +092004 +088010 +012001 +089007 +033006 +092004 +033005 +092004 +093001 +090006 +089009 +092008 +092007 +013003 087003 +092003 +089009 +028003 +090001 +092003 +092004 +076 +092001 +089017 +089009 +033015 +092004 +033009 +092001 +083003 +063001 +092004 +009001 +089008 +089008 +092006 +025001 030004 +088010 +089017 +092006 +025001 030004 +088028 +089008 +033006 +092001 +092004 +089023 +033048 +089007 +092004 +030004 +092004 +092004 +039003 +091004 +009001 +089023 +092004 +013001 +092003 +092004 +033045 +092004 +012001 +069005 +033006 +092004 +058001 +092004 +058001 +092004 +092001 +042003 +061 +089024 +069004 +87122 092004 +006016 +030007 +092004 +002005 +089025 +092004 +058005 +079018 +042003 +006016 +089023 +87135 089009 +065001 +089023 +87139 089009 +087004 +089017 +090006 +092004 +012001 +025001 030004 +028003 +092004 +088024 +089017 +028002 +092004 +074 +092004 +025015 +089014 +078001 +025015 +009001 +088024 +042003 +089009 +020003 +089017 +089009 +028002 +092004 +057003 +092004 +014006 +092004 +090013 +009001 +088010 +092006 +077 +089009 +014006 +092006 +089017 +033029 +092002 +069002 +87184 084001 +093001 +089023 +089017 +084001 +011002 +064 +089017 +083003 +092004 +093001 +033006 +033009 +092004 +069002 +011002 +092001 +011002 +092001 +089017 +092004 +069002 +025003 +025003 +089015 +013004 +083003 +092004 +080001 +083002 +033006 +092004 +069002 +011002 +092001 +092003 +083001 +033009 +009001 +012001 +023007 +089017 +093001 +033006 +090006 +092004 +093001 +089010 +013001 +092004 +060001 +092004 +011003 +093001 +064 +092004 +002005 +092004 +001010 +092004 +063005 +021006 +089007 +033006 +068003 +089017 +067003 +090011 +012001 +037001 +092004 +001006 009001 +089017 +064 +033024 +093001 +089023 +87262 012001 +012001 +013003 +092002 +010002 +071003 +064 +093002 +013002 +089017 +071003 +064 +093002 +064 +089008 +092004 +033006 +090006 +011002 +092004 +069002 +068006 +088002 +057007 +034005 +089017 +034005 +092004 +089007 090003 +031009 +089023 +093001 +068006 +033033 +034005 +078005 +033033 +069002 +013001 +87303 089007 +069002 +089012 +031009 +089023 +064 +089012 +042002 +015029 025016 +092004 +002005 +092004 +015029 025016 +064 +033005 +091003 +085002 +083003 +093002 +002005 +015029 +089017 +002005 +088038 +87328 092004 +031009 +090013 +092004 +069002 +025018 +011002 +091002 +092004 +025001 +092004 +092001 +026 +089017 +092004 +033012 +090013 +092004 +012001 +090009 +092004 +089009 +021006 +089007 +033020 +092004 +090006 +025003 +012001 +090013 +089023 +069002 +089005 +028002 +089007 +028001 +092004 +092004 +012001 +034005 +089017 +092004 +057001 +076 +068005 +092004 +034005 +092004 +012001 +069002 +036003 +089007 +067003 089009 +033005 +093001 +089008 089009 +034005 +059003 +092004 +031010 +089007 +093001 +033005 +090006 +092004 +034005 +092004 +089012 +033005 +092004 +042002 +009001 +023007 +089012 +87403 089023 +092004 +089012 +031010 +034005 +061 +033006 +069002 +033006 +083003 +092004 +026 +092003 +092004 +015010 +084002 +092004 +001002 +089019 +089019 +093001 +015023 +089024 +092004 +015011 +084002 +092004 +001003 +089019 +089019 +093001 +089021 +023007 +015023 +089023 +092004 +033006 +083005 +092003 +092004 +033006 +085001 +083003 +092004 +033006 +092003 +089017 +083003 +092004 +026 +092003 +089019 +089019 +092004 +033006 +092004 +031010 +092006 +033019 +090006 +089010 +033021 +090002 +092004 +033006 +092003 +012001 +093001 +089017 +031006 +083003 +092004 +026 +092003 +090006 +092004 +012001 +092004 +023007 +089021 +023007 +021006 +089007 +026 +031010 +089008 +034005 +089015 +033006 +033021 +089008 +021006 +089007 +033006 +092004 +033005 +059003 +092004 +031010 +090006 +092004 +069002 +025018 +089007 +069002 +013003 +058006 +87511 093001 +87513 011002 +089007 +092004 +058005 +012001 +059003 +057008 +090009 +059003 +092004 +033012 +092004 +089007 +059003 +071001 +092006 +033012 +092004 +033009 +012001 +021006 +089023 +092004 +033012 +090006 +092006 +069002 +031010 +089017 +092004 +031010 +092006 +069002 +033015 +089017 +092004 +033015 +089021 +033019 +089017 +092004 +033019 +089010 +069002 +015004 +87559 033005 +078001 +067001 079004 +092004 +008002 +092004 +033015 +088001 +089023 +069002 +059003 +036003 +092004 +033015 +089007 +093001 +033006 +012001 +092004 +031006 +092004 +024002 +092002 +089008 +092004 +031010 +089012 +024002 +089017 +092004 +024002 +089012 +033006 +093001 +089023 +033006 +069002 +069002 +033015 +089023 +084002 +063001 +092004 +009001 +015004 +092004 +033006 +092004 +089017 +084002 +092004 +080002 +092004 +001006 +092004 +033002 033006 +092004 +089023 +033006 +069002 +093001 +069004 +028001 +060003 +033005 093001 +033006 +092001 +088022 +092003 +090002 +069002 +011003 +090002 +011003 +032005 +088024 +092003 +089017 +093001 +025014 +87640 033006 +027001 +092004 +092001 +069002 +027004 +028003 +013002 +092004 +092001 +069002 +033014 +089023 +090013 +092004 +093001 +033006 +063001 +092004 +067009 +016 +092004 +008002 +092001 +090013 +011003 +036003 +089017 +033052 +089008 +033006 +069005 +031008 +092004 +012001 +092004 +011002 +092004 +069002 +013004 +089007 +089017 +092001 +093001 +058010 +089003 +010002 +093001 +010001 +093001 +069002 +031008 +092004 +012001 +092004 +011002 +092004 +092006 +028001 030006 +089024 +069004 +028001 +090006 +093001 +092004 +033006 +092004 +033005 +089014 +033012 +092004 +012001 +090008 +092004 +093001 +012001 +092004 +053009 +092003 +020004 +092004 +006015 +092003 +020003 +089017 092001 +085004 +058007 +089017 +020004 +092004 +023007 +092001 +089023 +092004 +033006 +092004 +092004 +028003 +013003 +092001 +060002 +009001 +092004 +069002 +053007 +053007 +092004 +093001 +089008 +061 +089017 +067007 +092004 +067002 +067001 +063005 +089005 +030006 +088009 +091001 +089017 089023 +089010 +088009 +067006 +089007 089012 +042002 +089007 +092004 +088009 +067006 +013001 +088009 +089008 +092004 +092006 +025001 +093001 +092007 +069002 +057007 090013 +089023 +092004 +030006 +057007 090013 +089017 +092004 +063005 +027005 +87789 033005 +090014 +092004 +092004 +012001 +012001 +030001 +008002 +092004 +069002 +024001 +089017 +008002 +092004 +069002 +032001 +067006 +092004 +067010 +067009 +089017 +093001 +033006 +013002 +092004 +006015 +092004 +089009 +006005 037001 +089017 +089009 +006005 037001 +089017 +089009 +006005 +089017 +089009 +038002 +092004 +032005 +092004 +008002 +092004 +092004 +069002 +024001 +089017 +092004 +008002 +092004 +067005 +067005 +024006 +089008 +033006 +069005 +088038 +089008 089009 +013002 +069002 +013004 +089023 +092004 +092004 +088038 +092004 +021006 +092004 +011002 +089009 +092004 +088022 +092004 +87863 089010 +092004 +088038 +092004 +057003 +001006 +089017 +092004 +013001 +092004 +057003 +011002 +059002 +078002 +092004 +059003 +092004 +87881 033006 +092003 +092004 +011002 +091002 +87887 078005 +078005 +058010 +092001 +011002 +053009 +092004 +035002 +092001 +033037 +089010 090006 +089009 +088022 +092001 +092004 +010001 +87904 021006 +092004 +063004 +092004 +089007 +089010 +092004 +034003 +092004 +040001 +001006 +092004 +092004 +034003 +089023 +87920 023007 +068004 +074 +87924 089010 +092004 +053002 +088003 +089017 +092004 +063003 +089017 +089010 +092004 +003005 +088003 +089017 +092004 +003005 +089023 +089010 +092004 +092004 +003005 +019004 +089017 +092003 +003002 +058010 +043 +083003 +092004 +87953 057001 +092004 +003005 +092004 +003005 065001 +092004 +003002 +013002 +069002 +033039 088025 +092004 +003005 +089023 +089010 +033039 088025 +069002 +092003 +092004 +003005 +035003 +089023 +092004 +003005 +092003 +089008 +033006 +019004 +003005 +089009 +092001 +043 +072002 +092004 +031009 +019004 +089023 +092003 +092004 +031010 +013001 +069002 +088027 +088027 +089023 +025022 +089007 +089010 +092004 +012001 +092004 +089005 +058001 +003005 +069002 +022003 +069003 +092003 +022003 +089008 +027001 +088009 +089017 +088009 +012001 +089023 +090013 +092004 +013002 +088009 +089023 +090013 +092003 +088009 +012001 +089010 +068002 +092004 +088009 +089007 +089017 +092003 +019002 +089017 +089017 092007 +089010 +069002 +068002 +092004 +031009 031010 +043 +089007 +074 +013001 +092004 +012001 +067002 +043 +092004 +089007 +089010 +092003 +089021 +092004 +089005 +058001 +003002 +019002 +089015 +089023 +058001 +043 +084002 +003002 +059002 +078002 +092007 +092004 +089005 +058001 +043 +092004 +057001 +003002 +089007 +011002 +069002 +025001 +092003 +028001 +092004 +028005 +092007 +089009 +069002 +013001 +88089 092004 +032004 +090006 +027005 +063004 067005 +063004 +092004 +093001 +013004 +067006 +88100 092004 +059003 +092004 +011002 +013004 +88106 061 +059003 +093001 +021006 +064 +033005 +015006 +089003 +093002 +092004 +021005 +013002 +053001 +089021 +093001 +089017 +092007 +092004 +092004 +090003 +092001 +034005 +88129 013001 +092004 +088038 +092004 +089023 +089004 +092004 +033015 +039001 +090010 +092003 +089023 +089004 +092004 +030006 +025003 +090010 +092004 +010002 +089007 +025023 +092004 +057008 +089017 +092004 +033029 +092004 +012001 +089007 +064 +092003 +067001 +036003 +092004 +012001 +089023 +067002 +088010 +092004 +092007 +036003 +88171 089017 +092007 +067002 +036003 +092004 +092003 +088010 +089009 +089017 +092004 +067002 +088010 +089007 +013004 +092004 +012001 +092004 +059003 +013002 +036003 +089009 +092004 +059003 +088010 +091004 +078001 +057003 +089017 +032004 +089017 +028002 +012001 +078001 +032003 +092004 +030007 +092004 +089017 +032003 +092004 +041001 +092004 +089007 +092004 +028001 +026 030001 +012001 +089024 +092004 +033027 +092004 +013002 +089024 +092004 +057008 +092004 +88228 057012 +092004 +089007 +090003 +092004 +089017 +090001 +092004 +089017 +090009 +092004 +092004 +059003 +092004 +092004 +033037 +067005 +092004 +067005 +072001 +089008 +011002 +033012 +089012 +092004 +088010 +092004 +012001 +092003 +057008 +092004 +009001 +092003 +053002 +023007 +088003 +092004 +012001 +025008 +092004 +073 +053001 +092003 +091001 +069002 +041003 +092004 +041003 +092007 +089023 +013002 +092004 +058011 +092004 +030001 +089009 +092004 +030007 +092003 +092004 +092004 +025001 +092004 +012001 +092004 +088001 +089017 +025008 +089017 +088004 +089007 +033006 +089012 +092004 +057008 +092004 +88305 092001 +059003 +092004 +058010 +083003 +092003 +069002 +088027 +078002 +092006 +031001 +071004 +089023 +031001 +089008 089009 +092004 +032004 +064 +059003 +092004 +012001 +057008 +081001 +031009 +089007 +064 +083003 +060002 +008001 +059001 +008002 +057001 +089017 +092004 +008002 +059003 +069002 +092004 +058005 +042001 +074 +061 +092004 +059001 +060002 +011002 +013001 +089020 +093001 +089017 +092004 +88358 092005 +063004 +089017 +090013 +057008 +058006 +089005 +092004 +057008 +092004 +88369 092002 +089010 +033053 +089005 +092004 +089005 +092004 +031009 +089010 +035002 +089012 +092004 +035002 +089010 +092004 +033017 +089012 +092004 +033017 +089010 +092004 +025013 +089012 +092004 +025013 +092004 +057008 +089014 +057008 +092004 +035001 036001 +089014 +068006 +092004 +088010 +089014 +025011 +092004 +025003 +073 +088026 +092004 +088015 +018002 +092004 +088001 +092004 +025003 +090013 +092005 +025003 +092004 +087002 +092005 +068006 078002 +092004 +025006 +069002 +088032 +092004 +025006 +025006 +092004 +012001 +035002 +092004 +025004 +025011 +092004 +022001 +025015 +092004 +033013 +068006 +092004 +057005 +092004 +011002 +057008 +092004 +034008 +068006 +033055 +092004 +039009 +033055 +089017 +069002 +033055 +025011 +089020 +025011 +025012 +089020 +025012 +092004 +058005 +090013 +092005 +026 +069002 +092004 +088027 +088027 +089023 +092004 +087004 +034001 041001 +069002 +013002 +032004 +090005 +092004 +092004 +020002 088015 +057010 +020002 088015 +038002 +030002 +088001 +090005 +059003 +009001 +089010 +071001 +092004 +090003 +092003 +090013 +059003 +009001 +088014 +025003 +069002 +092004 +039006 +089023 +013004 +071001 +092004 +038001 +089007 +033005 +092001 +039006 +092001 +038002 +033006 +012001 +089023 +089010 +023001 +092004 +039001 +092003 +023001 +092004 +089010 +023001 +023001 +092004 +089007 +092007 +042002 +003006 +002003 +025018 +88537 092004 +008002 +092004 +069002 +039012 +090001 +092004 +088015 +089023 +039012 +089012 +092004 +088001 +092004 +088015 +059003 +009001 +037003 +037001 +036003 +089007 +069002 +013003 +037003 +089023 +88563 090001 +012001 +089017 +092004 +013003 +090001 +012001 +037005 +88572 089008 +092004 +039001 +092004 +037003 +092004 +092004 +012001 +033032 +039003 +88583 092004 +039003 +092004 +056005 +057009 090013 +089007 +092004 +037004 +013001 +025022 +069002 +092004 +088001 +042002 +089023 +092004 +088015 +88601 025001 +069002 +025022 +092004 +037003 +092004 +088001 +090011 +88610 090013 +033037 +090003 +092004 +089007 +012001 +035002 +058010 +092003 +089009 +092004 +088001 +089023 +089010 +092004 +088015 +090011 +025022 +089007 +069002 +089009 +092004 +038001 +038001 +089007 +012001 +035002 +058010 +038001 +089009 +038001 +092004 +092004 +088015 +042002 +089008 +071005 +036003 +069002 +88650 089007 +092004 +038001 +089023 +089017 +089007 +092004 +026 +089007 +88661 089017 +057014 +057014 +089007 +035002 +012001 +058010 +089009 +058005 +092007 +068006 +057012 +059003 +092004 +057018 +092004 +092004 +057014 +092004 +057014 +092004 +092004 +057014 +092004 +057014 +092004 +092004 +025022 +092004 +025022 +092004 +092004 +087002 +092004 +087002 +092004 +092004 +071004 +089023 +88701 092004 +092005 +025003 +089007 +092004 +025003 +092004 +058006 +033005 +059003 +089007 +092004 +069002 +088036 +069002 +020004 +069002 +057021 +069002 +025002 +089017 +089010 +092004 +058006 +033032 +089012 +092004 +033006 +092007 +063002 +089012 +092004 +025003 +092004 +011003 +092003 +064 +092003 +092004 +025003 +092004 +011003 +088015 +069002 +090011 +089008 +059003 +033005 +092004 +025003 +089017 +028001 +092007 +092004 +067001 +090006 +067001 +067002 +092003 +068004 +023005 +023005 +089007 +067002 +067002 +092002 +092004 +021006 +064 +88771 031010 +092004 +067009 +067006 +089017 +092004 +067009 +067002 +089008 +085002 +092004 +042002 +092004 +088015 +089017 +049 +092004 +006007 +092004 +014006 +064 +013001 +014006 +088006 +041001 +069002 +088037 +089017 +088037 +069002 +088036 +089017 +088036 +069002 +039005 +089017 +088022 +089023 +049 +092004 +012001 +093001 +093001 +88815 092004 +026 +030002 +069002 +090011 +089009 +025002 +88823 092004 +074 +092004 +031010 +034007 +069002 +089009 +033050 +030001 +089023 +88834 031009 +023001 +058004 +089023 +092004 +074 +003003 +023001 +092004 +023001 +092004 +069002 +023001 +069002 +088025 +089017 +092004 +069002 +023001 +092004 +023001 +069002 +056005 +089007 +092004 +012001 +092004 +034007 +092003 +092004 +013001 +092004 +056005 +092004 +046 +092004 +057001 +087003 +013001 087003 +88874 087003 +089017 +013001 +089007 +074 +092004 +012001 +076 +092004 +091001 +089023 +88886 030006 +067009 +078002 +067009 +089023 +88892 030006 +059003 +067009 +059003 +083003 +092004 +057001 +026 +031006 +092004 +087002 +092004 +067009 +012001 +087002 +089017 +092004 +023001 +012001 +023001 +089007 +033036 +092004 +012001 +089017 +092004 +069002 +023001 +012001 +069002 +023001 +089017 +033036 +092004 +012001 +089007 +092004 +092002 +092004 +023007 +089017 +092004 +092004 +023007 +089007 +089017 +089010 +023007 +092004 +012001 +023007 +089017 +089010 +023007 +092004 +012001 +023007 +089008 +089017 +089010 +023007 +089017 +089010 +023007 +092004 +012001 +058010 +089007 +089009 +092007 +093001 +023007 +089015 +023007 +089009 +089017 +023007 +089017 +023007 +037004 +089017 +092003 +092004 +056005 +092004 +011002 +092003 +089024 +091002 +092003 +092004 +088025 +092004 +011002 +092003 +089007 +059003 +085001 +092004 +007007 +092004 +012001 +089007 +033005 +023007 +092001 +033006 +012001 +090006 +092001 +053007 +059003 +009001 053007 +089017 +059003 +009001 +033021 033037 +092004 +012001 +089008 +089008 +059003 +092002 +089004 090006 +092004 +057020 +090012 +092004 +012001 +089008 +067006 +092005 +056005 +089023 +092007 +030005 +089023 +092004 +069002 +085002 +092004 +011002 +025016 088038 +089024 +088038 +032001 +089017 +031006 031009 +089020 +012001 +093001 +090006 +092004 +053004 +089007 +092004 +089023 +89050 092004 +031001 +092004 +053004 +013001 +092007 +053004 +089007 +089010 +089007 +005001 +092004 +011002 +092003 +025023 +067006 +089005 +025003 +041001 +069002 +092004 +005001 +092003 +092007 +020003 +090009 +092006 +093001 +023007 +089008 +069002 +033042 +092003 +092004 +065003 +089007 +069002 +013001 +092004 +037004 +092004 +012001 +005001 023001 +089017 +023001 +089023 +088002 +089017 +025021 +089017 +025011 +089020 +012001 +088003 +089007 +092004 +089004 +092007 +035002 +092004 +093001 +025008 +092004 +012001 +089017 +087002 +092004 +009001 +089008 +089008 +89121 092004 +092004 +022007 025021 +089017 +092004 +092004 +074 +092004 +090009 +092005 +069002 +089007 +005001 +020003 +092004 +042002 +092004 +012001 +089023 +059003 +053003 +089023 091001 +088015 +092004 +009001 +092004 +089012 +025016 088038 +023001 +088001 +092004 +069002 +023001 +005001 +069003 +023001 +006019 +069003 +089012 +092006 +092004 +011002 +092003 +025016 +092003 +031009 +092006 +89169 089020 +092003 +031001 +083006 +092004 +012001 +025011 +092004 +069002 +056005 +092004 +089004 +092006 +030007 +089023 +089010 +092004 +031006 +023001 +056005 +089007 +069002 +089003 090003 +031009 +089017 +059003 +092006 +069002 +089003 090003 +031009 +088038 +058010 +89202 071004 +092002 +092004 +074 +092004 +074 +092004 +074 +025015 +089017 +069002 +092004 +025008 +059003 +092002 +092004 +011003 +025008 +089009 +092004 +065003 +089009 +074 +089007 +89227 092004 +093001 +069002 +092004 +025008 +089023 +064 +033005 +092004 +033042 +092004 +033042 +092003 +013004 +090013 +092001 +089007 +059001 +033005 +089009 +092004 +092002 +033017 +033005 +089009 +089012 +092004 +025015 +089017 +089012 +092004 +025013 +092004 +033005 +092004 +025004 +090013 +89265 092004 +012001 +092004 +025015 +089017 +092004 +025013 +090012 +092003 +092004 +058005 +026 +083003 +092005 +089005 +093001 +093001 +089009 +031003 +089014 +063001 +033006 +033037 +092004 +012001 +089017 +012001 +092004 +012001 +092002 +093001 +093001 +089008 +034007 +092005 +064 +089017 +092004 +093001 +034007 +89306 089009 +033037 +092004 +012001 +089007 +033006 +093001 +035002 +053006 +013002 +090009 +072001 +012001 +089009 +092004 +028003 +092004 +033025 +092004 +010002 +089017 +092004 +011002 +089007 +088010 +033037 +092004 +012001 +064 +033005 +89338 033021 033037 +092003 +083003 +011002 +089017 +092004 +033009 +092003 +033007 +089017 +089017 +033006 +011002 +025011 +089020 +092004 +011002 +092004 +089017 +089017 +059003 +092004 +011002 +033037 +092004 +012001 +089017 +033037 +092004 +059003 +092004 +011003 +089017 +089017 +093001 +033006 +085001 +092004 +010002 +092004 +093001 +89380 092004 +013003 +037004 +011002 +090006 +092004 +011002 +025004 +89389 092004 +012001 +092004 +025004 +059004 +092003 +078004 +025011 +089017 +025021 +089012 +092004 +031010 +089009 +092004 +057002 +092003 +089004 +092004 +025004 +089012 +076 +012001 +088003 +89414 011002 +092001 +031006 031009 +089017 +092008 +092001 +089004 +092003 +090006 +089017 +092008 +068006 +013001 +088001 +059004 +059003 078004 +092004 +028002 +074 +089017 +092005 +033017 +089023 +89438 033005 +092003 +063004 +063004 +089009 +029002 +092003 +089007 +092004 +057008 +092004 +89450 092001 +89452 092004 +012001 +089009 +092004 +058010 +092001 +035002 +093001 +093001 +090009 +092004 +011002 +053009 +092004 +033015 +092004 +012001 +089009 +013001 +092004 +053002 +092004 +011002 +025008 +088003 +090001 +012001 +088003 +089008 +090013 +092004 +033039 +089020 +093001 +093001 +092004 +089004 +092004 +012001 +089007 +069002 +025014 +033006 +092004 +092006 +069002 +042002 090011 +093001 +090001 +092001 +089009 +036003 +011002 +033006 +089017 +042002 +089012 +076 +033056 +089017 +033056 +089012 +076 +012001 +89517 089008 +092001 +084001 +093002 +089017 +083004 +084002 +092004 +093002 +033015 +092004 +033015 +092004 +093001 +089017 +061 +025006 +033015 +069002 +083002 +028002 033006 +093001 +089009 +069002 +083008 +092004 +007003 +045 +091001 +064 +033005 +090013 +092006 +069002 +033015 +089004 +092004 +089017 +092006 +069002 +033015 +032001 +089008 +089017 +013004 +092004 +067001 078001 +092004 +015006 +084002 +092003 +089023 +067002 +067006 +071001 +090013 +083003 +092004 +001011 +092007 +089017 +025002 +090013 +092004 +015006 +084002 +092003 +067006 +89586 067009 +067002 +071001 +015002 +084002 +092004 +093002 +089007 +025004 +015002 +034006 +092003 +089015 +090001 +092003 +015004 +083001 +067002 +092003 +067002 +067005 +067005 +025010 +089023 +067002 +015002 +084002 +093002 +035002 +092004 +011002 +089007 +030006 +093002 +089017 +093002 +057008 +092004 +090011 +090009 +092004 +057006 +092004 +011002 +092004 +083003 +093002 +091001 +030006 +089017 +071004 +013001 +092004 +089007 +089007 +092004 +012001 026 +092004 +057008 +092004 +011002 +071004 +089017 +089004 090002 +092004 +079001 +035002 +092004 +089008 +092007 +068003 +089017 +015024 057008 +092004 +092004 +042002 +092007 +015004 +084003 +092003 +084002 +093002 +089017 +028001 +090006 +015006 +084002 +092003 +089013 +059003 +088009 +093001 +015006 +89680 011002 +033012 +090001 +092004 +012001 +092002 +093001 +093001 +089017 +089012 +092004 +025003 +092004 +012001 +092003 +034001 +092001 +089012 +092004 +033013 +090009 +092001 +090013 +092004 +012001 +090006 +021005 +089021 +092004 +031010 +083003 +092004 +093002 +089017 +092004 +035002 057008 +092001 +092004 +090009 +093002 +025008 +092004 +011002 +013001 +089009 +089014 +025011 +015006 +084002 +092003 +089012 +030004 +012001 +023006 +092003 +89736 092004 +012001 +092004 +025021 +090013 +059003 +092003 +072001 +89745 033034 +092003 +093001 +092004 +011002 +092002 +058010 +053009 +092004 +011002 +092004 +083003 +093002 +089009 +092004 +034007 +089020 +012001 +066 +092004 +011002 +089017 +035001 +092004 +089004 +071001 +092006 +092003 +057005 +042002 +089007 +089017 +092004 +013001 +035001 +059001 +089017 +092001 +092008 +033003 +093001 +089017 +093001 +092004 +042004 +092001 +089020 +093001 +093001 +092004 +090009 +092004 +023007 +092001 +092004 +092004 +021002 +021002 +092006 +025009 +069002 +092001 +058007 +089023 +089017 +059003 +092004 +011002 +092004 +011002 +089017 +092004 +089004 +007002 +092004 +011002 +033003 +093001 +092004 +025003 +092001 +092006 +013001 +061 +092004 +093002 +090013 +093001 +033003 +093001 +092004 +078001 +042004 +090009 +092003 +033003 +093001 +089017 +093001 +092004 +011003 +092001 +089017 +037008 +092001 +092004 +013001 +028003 +083003 +092004 +053009 +092006 +089017 +067002 +092001 +013001 +089020 +093001 +033003 +093001 +092004 +025003 +092001 +089020 +012001 +033003 +093001 +092004 +042004 +092002 +089020 +093001 +089017 +093001 +092004 +025003 +092001 +033003 +093001 +092004 +073 +089020 +093001 +033003 +092004 +089003 +092004 +093001 +033003 +093001 +092004 +011003 +092001 +033003 +092004 +089003 +092004 +093001 +092004 +013001 +089020 +012001 +033003 +093001 +089017 +093001 +092004 +042004 +089020 +012001 +033003 +093001 +092004 +025003 +092004 +078001 +042004 +089020 +012001 +033003 +093001 +092004 +030006 +089020 +012001 +089017 +092004 +010002 +092004 +089017 +092001 +033003 +093001 +093001 +093001 +093001 +093001 +089017 +092004 +089020 +092004 +011002 +033003 +093001 +089017 +093001 +093001 +089017 +092004 +010003 +092004 +089017 +093001 +089017 +092004 +089020 +092004 +059003 +011002 +033003 +092005 +089014 +034009 +088003 +033003 +092003 +092004 +011002 +059003 +092004 +093001 +89977 011002 +033012 +092003 +024001 027006 +092004 +092004 +039002 +089017 +092004 +025016 +089023 +092004 +033017 +092006 +092003 +027001 +013001 +089015 +034004 +089021 +092004 +089007 +092004 +064 +092004 +012001 +092002 +093001 +069002 +037001 +089023 +092004 +092004 +025002 +089017 +089012 +092004 +033004 +089017 +033038 +031002 +092004 +026 +092004 +031005 +091001 +092004 +092003 +036003 +090013 +059003 +028002 +089008 +089007 090006 +092003 +025011 +089023 +025001 +092003 +032004 +013001 +090006 +092004 +088001 +089017 +088003 +090006 +092004 +088015 +089015 +092004 +012001 +092004 +025021 +039012 +092004 +012001 093001 +037001 +092004 +037001 +092003 +067005 +067005 +092004 +025008 088009 +092004 +012001 +092002 +093001 +090013 +092003 +033003 +092003 +093001 +092004 +042004 +092001 +089017 +093001 +089017 +093001 +089017 +093001 +092004 +011003 +092001 +033003 +092003 +092001 +093001 +092004 +033005 +092004 +006010 033005 +089020 +012001 +033003 +092003 +093001 +092004 +034008 +092001 +089017 +059003 063001 +092004 +011002 +033003 +092003 +093001 +092004 +057020 +092004 +001014 +089017 +093001 +092004 +011002 +90115 092004 +074 +092003 +074 +089005 +092004 +033015 +092001 +089017 +092004 +033019 +093001 +093001 +089005 +028003 +028005 +067006 +067006 +033008 +089023 +028003 +067002 +089017 +089012 +033005 +033053 +089005 +033032 +092004 +067005 +012001 +089009 +036003 +031010 +090013 +059003 +092004 +011002 +028002 +058007 +032004 +012001 +090001 +093001 +093001 +092006 +092004 +087002 +067005 +092004 +067005 +90168 072001 +093001 +033029 +053009 +093001 +093001 +089012 +030004 +012001 +089017 +093001 +092004 +011002 +092004 +011002 +092004 +012001 +092004 +085001 +083003 +093002 +053006 088003 +089020 +093001 +093001 +033029 +011002 053006 +089020 +059003 +092004 +033012 +092004 +009001 +092004 +012001 +092002 +093001 +093001 +083003 +059003 +080001 +092004 +089017 +092002 +092003 +057008 088009 +089017 +022007 025021 +090003 +012001 +012001 +092002 +089017 +012001 +093001 +093001 +025009 033036 +092004 +012001 +067005 +089004 089007 +092003 +089007 090006 +092004 +057008 +092004 +012001 +092004 +057008 +092003 +089020 090001 +093001 +093001 +089007 090006 091005 +089004 +059003 +059006 +089020 +092004 +089004 +058004 +033006 +089017 +058004 +028002 032002 +078005 089007 +092004 +033020 +092004 +093001 +028003 +083003 +092003 +089008 +092003 +069002 +013001 057005 065005 +089004 +092004 +057008 +025004 +092004 +028003 +092004 +012001 +092002 +093001 +093001 +092006 +089017 +031009 +092003 +067006 +067003 +033048 +067002 +092004 + +092004 +012001 +092002 +093001 +093001 +031009 +092004 +012001 +090001 +092006 +033029 033030 +089009 +034001 +092004 +012001 +092004 +093001 +093001 +092004 +012001 +092002 +90308 011002 +033012 +092003 +089012 +092004 +009001 033009 +092004 +012001 +092002 +093001 +093001 +089009 090006 +092004 +058005 +033006 +059003 +089017 +069002 +013003 +083003 +092003 +039002 +089023 +013001 +075 +089004 +092004 +058005 +030001 +089017 +089004 +092004 +058005 +030004 031001 +089007 +011002 +092001 +028003 +092001 +089004 +092003 +090001 +092004 +093001 +090006 +033051 +083003 +092003 +013003 +90358 033010 +092007 +089007 +059003 +092003 +033006 +089017 +092001 +058010 +093001 +089017 +092001 +093001 +089017 +092001 +093001 +089017 +092001 +093001 +063006 +092004 +093001 +069005 +093001 +020004 +089007 090009 +092003 +089024 +090006 +092004 +033009 +093001 +053005 +025009 +090006 +092004 +092003 +053005 +089023 +90398 093001 +089017 +093001 +90403 092004 +033006 +090006 +090006 +092004 +092001 +033009 +053005 +90412 053005 +089017 +092004 +093001 +010001 +061 +069002 +029002 +089010 +092004 +058006 +053005 +089007 +015004 +092001 +093001 +069002 +053005 +089023 +033015 +069002 +089012 090002 +028001 +033006 +90438 076 +092004 +006006 +092004 +093001 +089007 +089023 +092004 +033006 033019 +092004 +092004 +006006 +092004 +021006 +032005 +013001 +089023 +092004 +021005 021006 +092002 +076 +012001 +013001 +089007 +033005 +020003 +092004 +028001 +092004 +032004 +089017 +092004 +032004 +092004 +032004 +031009 +083002 +032004 +083002 +027001 +083002 +033050 +092004 +041003 067008 +092007 +069004 +032005 +092004 +012001 +092004 +028001 +092004 +041003 +089007 +089007 +089007 +092004 +032004 +092004 +012001 +069002 +027001 028001 +092004 +041003 +089012 090002 +092004 +032004 +092004 +012001 +030006 +092004 +012001 +089012 +092004 +032005 +092004 +033019 +021006 +092004 +031009 031010 +089007 +089017 +093001 +033056 +033012 +089017 +011002 011004 +032004 +027004 +089023 +092002 +033019 +093001 +020004 +089017 +093001 +025016 +089017 +011002 +032005 +089023 +092004 +092004 +033029 +089017 +093001 +089017 +011002 011004 +093001 +012001 +076 +089017 +012001 +032004 +089007 +092004 +032005 +092004 +012001 +032004 +092004 +009001 +013001 +089017 +092004 +079013 +092004 +012001 +076 +092004 +009001 +089007 +011002 +030001 +092004 +033029 +092003 +090006 +069002 +059001 +032004 +089004 +026 +069002 +059001 +074 +069002 +059001 +087003 +089023 +092004 +032005 +092004 +041003 +030006 +092004 +012001 +089009 +025018 +092004 +032004 +089017 +092004 +079013 +092004 +041003 +030006 +092004 +012001 +089009 +025018 +092004 +076 +089017 +092004 +087004 +092004 +001006 +089017 +092004 +088025 +092004 +069002 +013003 +030006 +092004 +012001 +089009 +092004 +013003 +076 +089009 +90631 033039 +059003 +009001 +083006 +092004 +012001 +089023 +089003 089007 +092004 +092003 +058010 +089020 +093001 +093001 +092006 +013002 +092002 +090001 090003 +012001 +032004 +089017 +034005 088002 +089017 +053006 +089017 +037010 +089009 +064 +033005 +092004 +033039 +089004 +012001 +033039 +011002 +089017 092001 +015006 +084002 +092003 +015006 +069002 +90673 087003 +033006 +089024 +028001 +033015 +092003 +092004 +90681 092004 +012001 +089007 +069002 +030005 +092004 +028001 +083003 +092003 +089023 +90692 093001 +093001 +089017 +092007 +020004 +089017 092001 +013001 +025022 +089017 +013001 +025022 +089017 +013001 +016 +078001 +085001 +089020 +092003 +089017 +092004 +033006 +092001 +089017 +092004 +033019 +092001 +069002 +089014 +033028 +028001 +033006 +089023 +089014 +028003 +012001 +089017 +076 +089009 +092004 +031010 +092003 +013001 +069002 +089007 +032004 +009001 +089023 +089007 +076 +012001 +089023 +032004 +033006 +083003 +092004 +088013 +089023 +069002 +032004 +092004 +067008 +092007 +069003 +092004 +037004 +092004 +067008 +092007 +092004 +013003 +089023 +033006 +012001 +032004 +090006 +028005 +092004 +028005 +092006 +030005 +092004 +012001 +067002 +092004 +067008 +090009 +087002 +092002 +092006 +092004 +092004 +037004 +092004 +067008 +092007 +028001 032002 +089007 +089010 +028001 032002 +071003 +069002 +092004 +012001 +092004 +079005 +020004 +089023 +064 +033005 +092006 +008002 +069002 +024001 +089017 +008002 +069002 +024002 +089017 +90811 026 +009001 +069002 +030001 +90816 077 +092004 +012001 +092004 +025003 +092004 +90823 092002 +028003 +092004 +012001 +090001 +092004 +012001 +089007 +092004 +012001 +059003 +027004 +089017 +092004 +028005 +092004 +012001 +089007 +092004 +009001 +028001 032001 +092004 +092004 +009001 +089023 +90849 092004 +026 +092004 +009001 +092004 +083003 +092004 +061 +089017 +092004 +092004 +012001 +092004 +028001 032002 +089023 +90865 092004 +012001 +092004 +012001 +90870 069002 +092002 +092004 +030001 +092004 +041003 +057009 +089023 +092004 +012001 +092004 +090003 +092004 +012001 +089009 +028001 032001 +092004 +090001 +092004 +012001 +057008 +092002 +092006 +089017 +033006 +069002 +089012 +033017 +009001 +032004 +033006 +089023 +089012 +033017 +012001 +012001 +012001 +033010 +90909 041003 079002 +009001 +069002 +031007 057009 +092004 +092004 +012001 +092004 +012001 +089007 +032005 +092004 +013001 +90923 069002 +074 +032002 +089007 +012001 026 +027004 030007 +089023 +092004 +012001 +030007 +90934 059003 +089023 +092008 +090001 +092004 +030007 +089007 +092004 +028001 032002 +026 +012001 +092006 +033027 +092004 +089023 +092002 +026 +093001 +057001 +011002 +092001 +074 +069002 +033006 +092003 +064 +041003 +089023 +064 +041003 079002 +064 +009004 +089020 +093001 +005001 +092003 +023001 +069002 +005001 +089007 +067006 +074 +091002 +069003 +067006 +067002 +074 +089007 +067006 +079002 +013001 +089007 +089007 +083003 +092003 +088022 +089017 +033051 039005 +069004 +079002 +013001 +089017 +089005 +009001 +041001 +91000 067002 +089023 +033006 +092004 +092001 +058010 +093001 +089023 +058006 +092001 +093001 +069004 +009001 +013001 +091002 +092004 +013001 +093001 +089017 +092004 +013001 +093001 +035002 +090001 +092006 +031010 +064 +089017 +059003 +092004 +012001 +91032 092001 +043 +093001 +043 +089023 +092004 +012001 +059007 +089008 +069003 +092004 +043 +013001 +092004 +069003 +092004 +043 +089023 +092004 +059007 +012001 +089017 +092004 +043 +089017 +092004 +043 +063001 +013001 +089017 +059003 +092004 +057001 +038002 +057009 +089005 +092004 +057001 +042004 +089007 +058010 +012001 +042004 +012001 +001015 +012001 +042003 +013001 +089005 +092004 +057008 +092004 +012001 +092004 +91087 092001 +064 +028001 +045 +007003 089006 +085002 +089017 +058006 +045 +089023 +059003 +027006 +092004 +045 +089007 +092004 +074 +089006 +058006 +085002 +089023 +092004 +085001 +092006 +013001 +093001 +093001 +089023 +089010 +092004 +045 +083008 +092004 +007003 089006 +91123 002006 +065001 +003006 +003003 +003005 +059003 +092004 +042002 +028003 +013002 +089007 +092004 + +028003 +089007 +089012 +002003 +028003 +089017 +059003 +092004 +042002 +058004 +058010 +092004 +002003 +092008 +027004 +089010 +013003 +092004 +092004 +042002 +092006 +045 +038002 +057009 +089010 +092004 +092004 +042002 +014008 +038001 057007 +089023 +092008 +021006 +089023 +064 +061 +084003 +002003 +069004 +028001 +090006 +007002 +012001 +013001 +089017 +092004 +012001 +092004 +012001 +089020 +092003 +085005 +089010 +092004 +092004 +007002 +092004 +012001 +020003 +020003 +092007 +092004 +012001 +089007 +092004 +007002 +092004 +012001 +053006 +013001 +91207 013001 +092003 +092004 +092004 +031002 +089010 +092004 +031005 +032004 +013001 +083003 +092003 +089004 +092004 +041003 +092007 +032005 +013002 +089009 +013002 +032004 +089007 +092004 +032004 +092004 +041003 +092007 +032005 +090005 +092004 +012001 +013001 +91240 033005 +092004 +027003 +092004 +032004 +013001 +092004 +088035 +092004 +089017 +089017 +012001 +028001 +092004 +030001 +092004 +032004 +090006 +013001 +065004 +089008 +092004 +033039 +090006 +009001 +089007 +059003 +092003 +013001 +089010 +093001 +089010 +093001 +089010 +093001 +089010 +001001 +089010 +023007 +089010 +023007 +089010 +067002 +089010 +067002 +059003 +092003 +089017 +092003 +093001 +089017 +093001 +012001 +061 +092002 +031001 +009001 +064 +035002 +093001 +089017 +037003 +028005 +012001 +092007 +089017 +033012 +089004 +092004 +037003 +090006 +031009 +092004 +013001 +089023 +092001 +078005 +079028 +013001 +090006 +033045 056004 +090001 +092003 +089024 +090001 +009001 +056001 +089023 091002 +069003 +092001 +030007 +089007 091001 +092004 +092001 +028001 +089023 +069002 +089004 +092007 +056005 +089023 +092004 +033045 056004 +092001 +012001 +013001 +089008 +069002 +067002 +067001 +092004 +056005 +067006 +071003 +015006 +092004 +012001 +092006 +089017 +014006 028003 +092004 +028005 +092004 +014007 088015 +089017 +028003 +092004 +030004 +092004 +026 +089015 +067002 +092004 +033037 +013004 +059003 +090001 +092004 +012001 +91380 011002 +092007 +089005 +090006 +092001 +089017 +093001 +090009 +092003 +089009 +090001 +092002 +027001 032002 +092004 +088012 +078002 +91397 033005 +91400 092004 +090009 +092004 +092004 +088027 +090008 +092004 +058006 +089007 +092004 +092003 +030006 030007 +089017 +057001 +092004 +092006 +069002 +057009 +089023 +089010 +091002 +057009 +092004 +033039 +064 +069002 +057009 +067002 +025007 057002 +91430 067002 +057003 +089021 +092002 +037004 +091002 +071004 +091002 +037004 +089008 089009 +089017 +092002 +092003 +037004 +089007 +031005 +092004 +012001 +092002 +092004 +053009 +061 +028004 +064 +023007 +089007 +024001 +013002 +092004 +009001 +089017 +012001 +089017 +009001 +092002 +032005 +090009 +093001 +089023 +092003 +032004 +089020 +093001 +092002 +074 +089023 +092003 +079013 +092003 +087002 +089023 +092002 +087004 +067006 +092004 +067002 +067002 +089017 +023001 +089017 +023001 +089017 +049 +089017 +019001 020002 +089017 +015002 085005 +089017 +042004 +042004 +092004 +057001 +008002 +033042 +033055 +039009 +025015 +033042 +033012 +064 +079010 +092004 +001006 +059003 +079010 +013002 +067006 +067002 +069002 +025018 +092003 +033005 +092007 +089023 +064 +009005 +092001 +025003 +033017 033046 +089007 +089010 +060001 +036001 +090013 +089004 +093001 +091002 +069002 +059001 +036001 +089007 +089020 +093001 +093001 +089012 +092004 +033015 +092001 +092003 +023003 +089008 +033012 +092003 +041004 +092001 +013002 +089007 +092007 +91559 015004 +092003 +093001 +092006 +013001 +092001 +009005 +025003 +089017 +031009 +089020 +012001 +092006 +092003 +029002 +092004 +041001 +092001 +092004 +089020 +093001 +093001 +064 +083002 +083003 +059003 +011002 +033017 +91588 064 +069002 +015006 +092001 +084002 +092003 +088027 +092004 +089023 +015006 +067002 067005 +084002 +092003 +089010 +092004 +012001 +030004 +089015 +027001 +069002 +092004 +033006 +092004 +088027 +089023 +092004 +074 +089007 +069002 +089025 +033006 +092004 +037004 +092004 +012001 +089023 +089025 +076 +092004 +025001 +090002 +006023 +015006 +084002 +092003 +089024 +089014 +025003 +089017 +030001 +088008 +070 +033015 +083003 +092003 +088036 +089017 +092007 +088036 +91648 069003 +083003 +092004 +011002 +089008 +092004 +010004 +092004 +010002 +91658 091002 +092003 +088027 +91662 089017 +069002 +089023 +025012 +089008 +015024 +084001 +083003 +092003 +092004 +092004 +042002 +092007 +042002 +089007 +092001 +089023 +085001 +092004 +008001 +089023 +085001 +092004 +026 +067002 +030005 +064 +085001 +092004 +061 +092007 +090011 +089020 +092004 +033009 +092004 +012001 +093001 +015013 +092003 +089017 +092004 +092001 +026 +089018 +092004 +076 +092004 +012001 +092002 +093001 +037007 +092004 +092007 +092004 +012001 093001 +089009 +020003 +092004 +008002 +089009 +092004 +026 +021006 +067002 +092004 + +092004 +012001 +069002 +088001 +092004 +033039 +092003 +069004 +028001 +090006 +059002 +005001 +063001 +092004 +063003 +005001 +079010 +092004 +058011 +088029 +089009 +013001 +058011 +063003 +064 +013001 +005001 +089007 +091002 +092004 +004001 +092002 +093001 +053002 +089008 +051 +069002 +090002 +088029 +058011 +069003 +090002 +088029 +088015 +089017 +088015 +089023 +090002 +005001 +088005 +089017 +072001 +033005 +092003 +083003 +092004 +033005 +069002 +034001 +088036 +069002 +091002 +092004 +088036 +092004 +041003 +092007 +089024 +092004 +025002 +089017 +025002 057021 +089024 +053007 +089007 +089008 +071005 +084001 +092004 +041003 +015004 +089023 +067002 +033005 +092003 +089009 +034001 +089010 +092004 +011002 +033009 +013001 +088036 +089024 +025002 +089024 +053007 +089024 +033042 +089024 +088037 +089024 +025002 057021 +092004 +092007 +069003 +023001 +089007 +092004 +092001 +092004 +011001 +056005 +069004 +092004 +011001 +092003 +056005 +089023 +092004 +011001 +092004 +012001 +056005 +034003 +092004 +088015 +089021 +092003 +092008 +025014 +91861 092003 +056002 +090013 +090008 +092004 +058006 +056005 +083006 +092004 +011002 +089017 +069002 +083006 +092004 +011002 +089024 +069002 +028001 +090006 +092004 +011002 +092004 +009001 +037004 056005 +91886 089010 +090001 +092003 +037004 056005 +092004 +009001 +065002 +013001 +056002 +065006 +069004 +028001 +090006 +012001 +056005 +91902 041001 +091001 +91905 089010 +041001 +056002 +090013 +092004 +088025 +090001 +092004 +011002 +092007 +037005 +089009 +025018 +092003 +033006 +069004 +061 +013003 +083003 +092003 +092004 +028001 032004 +092006 +074 +030007 +089026 +083003 +092004 +011002 +092004 +089023 +011002 +090008 +011002 +056005 +091002 +092007 +083006 +031010 +091002 +91946 067002 +078004 +013001 +092003 +013001 +090006 +056002 +090013 +090008 +092005 +91958 069002 +089023 +088002 +91963 069002 +089023 +057005 057021 +089023 +092003 +088002 +91970 057005 057021 +091002 +092007 +011002 +089024 +069004 +028001 +090006 +011002 +012001 +037004 +069002 +057009 +069002 +031008 +069003 +088036 +069003 +053007 +069003 +088036 +069003 +088036 +069003 +088036 +069003 +057021 +069003 +025002 +069002 +088037 +069002 +033042 +069002 +057021 +037004 +012001 +057009 +091002 +092007 +092004 +058010 +089023 +088003 +089023 +088003 +089023 +056005 +089020 +092004 +033009 +092004 +012001 +093001 +093001 +089017 +089020 +092004 +012001 +092004 +012001 +092002 +059003 +092001 +071001 +089023 +069002 +059003 +065005 +059003 +092001 +071001 +089023 +069002 +092001 +037004 +090001 +092004 +092004 +005001 +092004 +008002 +089017 +092004 +008002 +092004 +005001 +089023 +092004 +012001 +089017 +092007 +089017 +092007 +013003 +089023 +092004 +008001 +069002 +092004 +088036 +089023 +092004 +012001 +089017 +092004 +012001 +092004 +008001 +089023 +092004 +012001 +089017 +092004 +012001 +023007 +089017 +092002 +023007 +089012 +092004 +076 +092004 +069004 +028001 +090006 +092004 +008001 +092003 +063004 +093001 +013001 +089008 +015024 +092004 +063004 +092004 +093001 +013001 +088036 +063004 +069002 +013004 +089024 +069004 +028001 +090006 +092004 +034002 +092004 +088036 +063001 +008001 009001 +013001 +089007 +033006 +013002 +092004 +060002 +92130 008001 +063001 +089023 +092004 +034002 +092004 +012001 +063001 +026 +013001 +013004 +092004 +088036 +058004 +088038 +071001 +092006 +042002 090011 +009001 +089021 +092004 +008001 +085001 +089023 +092004 +088036 +090006 +092004 +057001 +008001 +088038 +089024 +069004 +028001 +090006 +092004 +008001 +092003 +007002 +092004 +089020 +092003 +088003 +012001 +013001 +092006 +090013 +090003 +012001 +089017 +069002 +013001 +092004 +089007 +037010 +057012 +091002 +087002 087003 +092004 +012001 +089012 +092004 +008001 +092003 +92195 089004 +092006 +033005 +088001 +009002 +034010 +069002 +024005 +089023 +089007 +092004 +088036 +059003 +092004 +092004 +010004 +92212 089017 +059003 +092004 +057001 +010004 +92218 092004 +010004 +092004 +010004 +092004 +071004 +013004 +089017 +064 +089017 +092004 +010004 +092004 +010004 +092004 +010004 +092004 +057001 +008001 +069002 +037004 +089023 +092004 +010004 +089017 +064 +089017 +092004 +010004 +092004 +057001 +008001 +069002 +037004 +089023 +092004 +010004 +069002 +057005 +092005 +92259 069005 +071001 +089007 +031003 +067005 +067005 +089009 +067005 +092004 +033013 +089015 +067002 +92272 092004 + +92277 088038 +092003 +092004 +012001 093001 +089007 +092004 +088011 +092003 +089023 +092007 +033006 +089005 +013004 +069002 +089005 +033032 +089023 +025001 +059003 +009001 +013001 +064 +089017 +092001 +089023 +059003 +090013 +057001 +057008 +090003 +012001 +089017 +092004 +061 +089017 +092004 +061 +089023 +033006 +092004 +034010 +089017 +092004 +010004 +088001 +092004 +089010 +068002 +064 +089017 092001 +089023 +089010 +069002 +088011 +034010 +089007 +065003 +013001 +92336 064 +025002 +089023 +092004 +034010 +033032 +069002 +092001 +089023 +092004 +012001 +010004 +089021 +010004 +069002 +034010 +089023 +089010 +92355 034010 +068002 +034010 +089024 +092004 +010004 +040001 +089017 +010004 +010004 +069002 +034010 +089023 +092004 +063005 +033006 +092001 +069002 +092004 +012001 +089010 +092004 +011002 +92379 010004 +011002 +089017 +092007 +031003 +085005 +089020 +092004 +069002 +034010 +092004 +089017 +010004 +92394 010004 +011002 +089017 +092007 +031003 +085005 +089020 +092004 +069002 +034010 +092004 +010004 +089007 +053006 +092004 +010004 +092004 +011002 +090001 +092004 +010004 +089017 +053006 +092004 +010004 +092004 +011002 +090001 +092004 +011002 +089008 +089007 +092004 +010002 +092003 +053004 +013001 +089023 +067002 +053006 +013001 +089023 +089010 +092004 +011002 +034010 +034010 +069002 +037001 +092004 +011002 +089024 +092004 +011002 +089004 +092004 +092007 +089023 +013001 +022007 +033029 +092003 +092004 +012001 +089007 +010004 +092004 +028001 +090006 +092004 +010004 +021006 +089024 +010004 +092004 +028001 +090006 +092004 +010004 +021006 +089023 +92476 064 +059003 +92479 092004 +012001 +064 +059003 +033029 +092004 +012001 +061 +041001 +091001 +061 +090013 +092004 +011002 +059003 +033032 +053006 +092004 +033029 +069002 +053006 +089013 +011002 +033029 +092004 +069002 +053006 +092004 +053006 +092004 +013001 +089017 +092004 +011002 +092004 +013001 +089023 +036003 +033032 +012001 +059003 +013001 +092004 +087001 +092006 +033029 +013001 +092007 +068002 +087005 +033029 +069002 +092003 +025021 +089023 +089010 +091002 +074 +087005 +013002 +089023 +042002 +089007 +092004 +089020 +012001 +033029 +087005 +087005 +012001 +013001 +064 +092004 +087005 +033029 +013001 +087005 +093001 +057012 +037010 +069002 +013002 +087005 +009001 +011002 +059003 +013001 +092006 +033029 +013001 +092007 +068002 +089020 +012001 +92574 089004 +092004 +034010 +033032 +012001 +069002 +031001 +089023 +031001 +057008 +064 +088010 +090001 +012001 +031009 +013001 +089008 +031005 +092007 +088001 +013001 +089007 +092004 +067002 +022001 +091005 +088001 +009001 +092004 +92604 013001 +037003 +010004 +069002 +025001 +034010 +037010 +089021 +010004 +069002 +025001 +010004 +089023 +089010 +091001 +034010 +069002 +088038 +089017 +089010 +034010 +092004 +034010 +069002 +088038 +089023 +022001 +092004 +058001 +090013 +092004 +092007 +089017 +092001 +092003 +022003 +089023 +011002 +092007 +033010 +092004 +067008 +067006 +013001 +092004 +067006 +089008 +089017 +092004 +057001 +010004 +064 +069002 +057001 +013001 +089017 +092004 +025012 +064 +069002 +025012 +089017 +092004 +025011 +064 +069002 +025011 +089017 +092004 +057015 +064 +069002 +057001 +089017 +092004 +041001 +092004 +041003 +064 +069002 +041001 +089007 +013003 +092004 +058001 +092004 +041003 +092007 +92693 025001 +092003 +025021 +013001 +092004 +034010 +025021 +092004 +092004 +012001 +092004 +025008 +092004 +012001 +089023 +092004 +034010 +025021 +092004 +092004 +041003 +092004 +025008 +092004 +010004 +92719 063006 +089017 +092004 +009003 +092004 +034010 +089017 +092004 +009003 +025021 +092004 +092004 +012001 +089009 +013001 +088003 +089017 +092004 +009001 +089017 +092004 +026 +089023 +092004 +034010 +025021 +092004 +092004 +001006 +092004 +025008 +092004 +010004 +92753 092007 +089009 +092004 +092003 +092008 +065005 +033006 +069002 +089009 +037001 +092003 +085002 +089023 +089009 +092004 +079004 +089017 +053009 +092004 +012001 +030001 +089023 +089010 +092004 +088020 +090013 +092004 +009003 +092004 +031005 +089010 +013001 +067008 +089017 +061 +071005 +013004 +092006 +025001 +042002 +069002 +088038 +034010 +089023 +092006 +031001 +92800 092004 +026 +092004 +031009 +069002 +090013 +071004 +089023 +037001 +92810 089004 +092004 +057001 +025001 +089017 +092007 +030005 +083003 +092004 +057001 +026 +013001 +092004 +092004 +009003 +088001 +042002 +089008 +089017 +092004 +034010 +092004 +092004 +009003 +088001 +042002 +089017 +092004 +069002 +034010 +065003 +042002 +010004 +037003 +067007 +067007 +067005 +023007 +092004 +010004 +092004 +089023 +089010 +023007 +092004 +010004 +037010 +013001 +092006 +025001 +034010 +92862 089020 +012001 +089023 +025011 +013001 +089010 +92869 068002 +089005 +092004 +092001 +031001 +089017 +031005 +089017 092001 +012001 +012001 +090013 +92881 089004 +092004 +005001 +028001 +090006 +059003 +028002 +057001 +092004 +028002 +088027 +089023 +092004 +025003 +074 +089010 +092004 +031005 +028001 +092004 +067006 +028001 +064 +071004 071005 +027001 +089023 +089010 +092004 +025003 +092004 +012001 +092007 +028001 031004 +090001 +092004 +92917 090006 +092004 +023001 +092004 +005001 +028001 +090006 +092004 +006013 +083003 +001001 +089017 +090006 +092004 +012001 +089023 +92934 060002 +089007 +089010 +92938 013003 +033009 +012001 +089010 +083003 +001002 +089010 +083008 +001006 +064 +013003 +012001 +059001 +089017 +037004 +059001 +091002 +092002 +060002 +012001 +092004 +012001 +090003 +092006 +092004 +059003 +089017 +092002 +090006 +092004 +089017 +060002 +012001 +093001 +093001 +090001 +092006 +092004 +059003 +089017 +092002 +090001 +092004 +089023 +069002 +083003 +059003 +092004 +028002 +92988 092004 +092004 +041002 +067006 +067002 +092004 +006013 +064 +005001 +023001 +92999 092004 +026 +092004 +088015 +013001 +053004 +089023 +005001 +092002 +069002 +085001 +092004 +012001 +069003 +089010 +069002 +023001 +065005 +069003 +089010 +023001 +065005 +089023 +027006 +089009 +089009 +092004 +030007 +092003 +092007 +088038 +013002 +092004 +088015 +089007 +089010 +092004 +024001 +092003 +092004 +057001 +028002 +083003 +007002 +023001 +069004 +092004 +026 +092004 +088015 +013001 +074 +089008 +092004 +092004 +005001 +023001 +93057 020003 021006 +089007 089012 +092004 +092003 +028002 +092004 +074 +092004 +011002 +090009 +092006 +093001 +023007 +089017 +061 +088038 +090013 +092004 +011002 +089017 +020002 +092004 +092004 +026 +074 +090013 +093001 +088038 +089008 +089010 +005001 +088038 +092004 +011002 +092001 +069002 +069002 +023001 +005001 +067005 +092004 +067005 +089009 +069002 +092004 +011002 +092001 +088038 +069004 +013001 +037010 +069004 +013001 +053009 +069004 +093001 +092004 +012001 +092002 +024001 +069004 +092004 +042002 +092001 +092003 +013001 +089020 +012001 +089010 +058006 +069002 +013001 +053009 +091001 +091002 +092003 +013001 +089007 +092004 +073 +092001 +092004 +053009 +092003 +013001 +089020 +012001 +092004 +092001 +033049 +092004 +092001 +033045 056004 +013001 +092007 +069005 +069004 +057001 +030007 +023001 +089017 +023001 +069005 +069004 +057001 +030007 +011002 +010004 +015023 +064 +089017 +092004 +063005 +053009 +089017 +092004 +010003 +092004 +012001 +089017 +093001 +089024 +058007 +092001 +089017 +093001 +069004 +057001 +030007 +93187 042004 +092004 +055004 +057001 +057012 +067001 +092004 +043 +003003 +089015 091002 +092004 +003004 +092004 +069002 +023001 +089024 +092004 +044 +004001 +089015 091002 +063004 +092004 +005001 +092004 +004001 +069002 +023001 +069005 +089005 +009001 +092007 +033006 +089024 +089017 +092004 +033005 +092007 +069004 +033006 +089007 +083003 +092004 +093001 +033005 +033005 +069002 +044 +004001 +043 +069005 +092004 +004001 +030002 +092004 +012001 +93243 090009 +092002 +091002 +033006 +93248 090009 +092002 +033005 +090006 +071004 +089006 +025004 +043 +092004 +043 +089017 +092004 +043 +089006 +025004 +092004 +057001 +089010 +092002 +092003 +092004 +026 +043 +025020 +089010 +092002 +092003 +092004 +079001 +043 +089010 +058006 +092004 +092003 +030007 +057001 +069004 +078002 +092002 +089023 +069002 +042002 +092004 +030007 +092007 +089023 +059003 +025015 +93298 092004 +013004 +090012 +092004 +033015 +092004 +093001 +069004 +028001 +090006 +092004 +092004 +053001 +090011 +092004 +090003 +092004 +007002 +023001 +092004 +092004 +006015 +035002 +092004 +006015 +057001 +93325 089017 +092004 +012001 +033032 +092004 +092004 +033015 +033015 +089012 +092004 +033015 +023007 +089023 +092001 +069002 +042002 +092004 +092007 +089017 +069002 +033005 +092007 +089009 +93349 013001 +090013 +092001 +089007 +065005 +092001 +089023 +023007 +064 +092004 +033039 +092001 +092004 +076 +089007 +089010 +033015 +069002 +013003 +092001 +033039 +089007 +071004 +092001 +076 +089007 +022001 +092001 +013003 +089010 +069002 +033015 +089007 +089010 +025005 +092007 +042002 +038002 +090013 +089023 +089010 +025005 +042002 +035005 +091002 +092004 +013001 +092001 +092004 +038002 +090006 +033015 +057012 +033010 +092004 +033015 +089009 +092004 +069002 +090002 +092004 +030007 +092001 +089004 +092004 +033015 +93416 037010 087005 +013001 +089021 +059003 +059003 +092001 +037001 +089009 +092004 +059001 +057016 +93428 013002 041001 +092004 +093001 +064 +093001 +089009 +093001 +057016 +092004 +037001 +033005 +064 +037001 +033005 +069002 +013001 +092008 +037001 +033005 +089009 +092004 +037001 +033005 +057016 +092004 +011002 033005 +064 +011002 033005 +069002 +013001 +011002 033005 +012001 +089023 +033033 +093001 +089009 +057016 +092004 +011002 033005 +013002 +092004 +074 +074 +089009 +092004 +074 +057016 +092004 +059003 +013002 +059003 +089009 +091002 +092004 +021006 +089017 +059003 +042002 +089007 090009 +092004 +033015 +089009 +057001 +092004 +013002 +069004 +028001 +090006 +092004 +083003 +007004 +015030 +089023 +059003 +015030 +089023 +060002 +057009 +092004 +057008 +061 +015030 +089009 +057007 +93513 059003 +092004 +050 +059003 +088011 +091002 +089023 +092007 +089009 +023007 +006018 +057009 +089023 +092002 +023007 +089008 +092001 +061 +015030 +089014 +069002 +030004 +061 +050 +089014 +069002 +002002 +019001 +089023 +088011 +092001 +092004 +008001 +089017 +035002 +089009 +089009 +058006 +033019 +092008 +065001 +013002 +091001 +011002 +069002 +025001 +092003 +028001 032001 +090006 +092004 +010002 +092002 +059003 +083009 +092004 +001005 +085001 +089017 +059003 +084003 +092004 +001010 +015003 +089017 +059003 +090006 +092004 +093001 +93582 083003 +092004 +001005 +089017 +083003 +092004 +001010 +089017 +059003 +092004 +058005 +079002 +005001 +023001 +089017 +059003 +092004 +058005 +079002 +005001 +023001 +089007 +023001 +090003 +079002 +015017 +002005 +089017 +092004 +002005 +058010 +092004 +093001 +089023 +069002 +089004 +092004 +059001 +092004 +025008 +092004 +012001 +089007 +020004 +083008 +092004 +001013 +93630 092007 +058009 +092002 +013004 +089009 +092004 +069002 +058010 +092002 +025002 +088015 +064 +089017 092007 +025002 +069003 +053007 +013002 +064 +092004 +092004 +064 +033005 +017002 +092004 +011001 +023001 +089017 +023001 +089015 +017001 +050 +069003 +088036 +064 +092004 +092004 +088036 +089015 +023007 +060002 +067009 +93672 060007 +069003 +027004 +092004 +93677 064 +092004 +092004 +027004 +089015 +090001 +092004 +004004 +023007 +069003 +033041 +064 +092004 +092004 +033041 +089015 +023007 +090001 +092004 +020003 +93698 092007 +058009 +013004 +092007 +089017 +033005 +089009 +033017 033047 +092002 +090006 +092006 +092004 +067003 +092004 +067008 +013004 +089008 +092004 +031005 +013001 +027006 +089009 +013002 +027004 088038 +092003 +069002 +018001 +089023 +93727 009001 +089023 +031009 +092004 +012001 +092006 +069002 +013004 +092003 +027004 088038 +078002 +092006 +074 +089023 +013001 +089018 089020 +092004 +027004 088038 +089017 +092004 +021004 +092004 +074 +025015 +089008 +025003 +092001 +015004 +089021 +092004 +053007 +064 +032004 +033006 +030007 +092003 +092006 +033006 033010 +092004 +006016 +092004 +033055 +092006 +033037 +069004 +058010 +034001 +092004 +008002 +092004 +093001 +092004 +005001 +092006 +019004 +069004 +034001 +092004 +008001 +092004 +093001 +058010 +089007 +063001 +005001 +063001 +011002 +092004 +059001 +013001 058010 +089007 +092004 +059003 +090003 +092004 +063001 +005001 +023001 057001 +030001 +092004 +093001 +089004 +008002 058001 +069004 +092004 +023001 +092004 +053002 +034001 +092004 +006015 +013001 +089008 +092004 +033010 +090006 +005001 +092004 +013001 +089024 +090006 +006013 +092004 +013001 +089023 +090006 +092006 +053002 +012001 +089017 +069002 +012001 +053002 +089017 +069002 +025001 +092003 +034001 +092004 +012001 +013002 +069002 +074 +006016 +012001 +023001 +089017 +006016 +012001 +069002 +074 +006015 023001 034003 +012001 +034003 057001 +089017 +006015 023001 034003 +012001 +089024 +088022 +092004 +012001 +069005 +076 +092004 +013001 +059003 +071001 +089023 +069002 +059003 +065005 +059003 +071001 +089023 +069002 +059003 +074 +092004 +092004 +092004 +025001 057007 +089023 +092004 +092004 +058006 +059003 +092004 +083003 +057016 +057015 +023001 +092004 +027004 030007 +089007 +092004 +026 +089007 +092004 +012001 +092004 +001006 +089017 +092004 +059004 +092004 +089010 +092004 +092004 +011002 031010 +033030 +092003 +089017 +025001 +015001 +059003 +092004 +057008 +092003 +023001 +092004 +027004 030007 +089007 +092004 +026 +089023 +089010 +092004 +092003 +033006 +092007 +053002 +013001 +069002 +023001 +089007 090009 +092007 +092004 +033015 +089017 +092004 +026 +93949 033010 +026 +069002 +092004 +092004 +089023 +092004 +092004 +058006 +089007 +93961 092004 +037010 +092001 +056005 +090001 +058006 +026 +089010 +092001 +033036 +023001 +092004 +033042 +089007 090006 +092006 +092001 +025009 033036 +089008 +089010 +023001 +089010 +023001 +089010 +092004 +042002 +059003 +089009 +033037 087002 +012001 +042002 +025016 088038 +013001 +089017 +093001 +089017 +011002 +089017 +092004 +011002 +092004 +012001 +064 +089017 092001 +059003 +059003 +025008 +025001 057007 +069002 +092004 +092001 +065005 +089023 +092004 +092004 +059001 +089009 +021006 +041004 +092001 +013001 +064 +089017 092001 +093001 +94025 033037 +092003 +089007 +059003 +092001 +029002 029004 +089017 +064 +033017 +092003 +092004 +033017 +031006 +94039 025001 +092003 +028001 032001 +090006 +059003 +009002 010004 +092004 +087003 +092004 +093001 +013001 +089017 +087003 +010004 +092004 +009002 010004 +089017 +087003 +092004 +093001 +092004 +012001 +059003 +009002 +033013 +089024 +033053 +049 +008002 049 +94069 025018 +092004 +008002 +092004 +089023 +059003 +009003 +033013 +089024 +033053 +079025 +092004 +008002 +025018 +092004 +008002 +092004 +089007 +013001 +063001 +089017 +092004 +058005 +092004 +019002 +089007 +089010 +069002 +049 +009003 +089017 +019002 +089023 +089007 +088020 +009003 +092004 +019002 +089024 +019002 +049 +089007 +089023 +009002 +069002 +071004 071005 +049 +092004 +008002 +058005 +089017 +079005 +012001 +013001 +089023 +092004 +009003 +079005 +009002 +013001 +089007 +069002 +013003 +009002 +089003 +009003 +089023 +009003 +089003 +009002 +089007 +089017 +069002 +042003 +009002 +090009 +092004 +009003 +089023 +009003 +090009 +092004 +009002 +089007 +092007 +071004 071005 +092004 +009003 +037003 +049 +037001 083008 +092004 +008002 +089007 090009 +092004 +012001 +089023 +069003 +009003 +089021 +009002 +069003 +009002 +089021 +009003 +089020 +012001 +089007 +064 +092004 +009003 +089003 +092004 +009002 +94184 089017 +092004 +009002 +090001 +092004 +009003 +089023 +092004 +059003 +089003 +092004 +012001 +083003 +092003 +092008 +030007 +066 +013001 +009003 +079025 +092004 +012001 +033013 +069003 +092004 +058001 +092008 +033017 +092003 +090006 +089023 +089010 +009002 +049 +087004 +092004 +013001 +089023 +089010 +009003 +049 +025019 +092004 +013001 +089007 +092004 +008002 +057010 +006017 +057008 +092004 +089023 +089010 +092004 +025001 030006 031005 +033051 +013001 +092002 +092007 +041002 +069002 +057001 +069003 +092004 +011002 +092004 +012001 +94252 092007 +033032 +069002 +033037 +089007 +069002 +089008 +092004 +065003 +089023 +089008 +092004 +065003 +015013 +089007 +091002 +060003 +015013 +092003 +083003 +011003 +033015 +039002 +083003 +092003 +013001 +089017 +078004 +092004 +031006 +089007 +071005 +089017 091002 +063006 +083003 +092003 +013003 +089008 089009 +089017 +092004 +073 +028003 +013002 +083003 +092003 +091002 +015013 +092003 +94301 092004 + +069002 +013001 +012001 +023001 +023001 +089007 +059003 +092004 +057001 +023001 +090011 +067002 +092004 +023001 +089015 +089017 +94320 023001 +089017 +94323 088037 +091001 +069005 +007002 +069004 +057001 +089009 +092004 +023001 +089017 +023001 +089024 +092004 +011002 +092004 +012001 +088025 +089017 +025018 +092004 +069002 +057001 +092004 +033006 +092003 +033037 +092003 +089004 +092007 +069002 +033037 +089007 +092001 +033017 +090003 +092004 +012001 +092006 +089017 +033017 +092003 +091005 +092004 +012001 +093001 +067007 +092004 +067009 +092006 +037007 +018001 +005001 +089015 +033036 +019004 +089015 +033006 +092007 +013001 +092001 +092004 +008001 +092004 +090009 +019004 092003 +092007 +090011 +089009 090006 +092004 +092001 +029002 +064 +089017 +092004 +006016 +067002 +092004 +023001 +033006 +092007 +092004 +006016 +092004 +058011 +034005 +013001 +090007 +092004 +092001 +008002 +092007 +090011 +067002 +94417 023001 +089009 090006 +092004 +092001 +029002 +089007 +067002 +94425 023001 +092004 +005001 +092007 +089017 +092004 +006016 +023001 +092004 +023007 +092004 +012001 +033015 +067006 +092006 +015006 +089008 +071001 +092006 +023001 +092004 +005001 +089024 +023001 +092004 +006016 +092004 +012001 +065002 066 +088038 +013001 +092004 +008001 +089017 +092004 +008002 +092004 +012001 +94464 027004 +009001 +092004 +089015 +061 +063004 +092004 +005001 +023001 +089017 +063004 +092004 +006016 +023001 +089007 +092004 +023001 +089017 +023001 +056005 +092004 +023001 +089017 +023001 +069002 +030007 +092004 +008001 +94494 083003 +092003 +059001 +023009 079013 +089017 +023009 +089017 +023007 +059001 +089023 +089010 +092004 +030007 +071003 +069002 +056005 +089023 +056005 +090001 +092004 +012001 +036002 +089009 +069002 +089020 +092004 +009001 +056005 +089008 +011002 +092001 +015013 +089009 +092004 +023001 +092005 +085003 +089010 +092004 +023001 +083003 +007002 +023001 +94539 089008 +056005 +015013 +089017 +092004 +063005 +067002 +071001 +015006 +033032 062002 +94550 011002 +089004 +092004 +012001 +069002 +025001 +092003 +028001 +028001 +090006 +94561 011002 +058010 +084002 +092004 +006013 +092004 +033006 +089014 +071001 +015023 +088021 +089008 +028002 +092003 +090006 +092004 +089020 +012001 +012001 +033006 +033006 +033055 +093001 +089017 +092004 +074 +033006 +012001 +093001 +089023 +94592 089020 +012001 +088003 +94596 057008 058006 +057008 +013003 +089023 +092004 +058005 +012001 +089017 +057008 058006 +035002 +013003 +94608 092004 +058005 +012001 +089017 +057008 058006 +042002 +013003 +089023 +092004 +058005 +012001 +092004 +042001 +092004 +059003 +089020 +059003 +94626 059003 +94628 092004 +028003 +092004 +012001 +089009 +092004 +065005 +94636 089017 +94638 090001 +092004 +012001 +94642 033006 +032004 +089017 +058006 +033006 +028002 +089005 +092004 +058005 +012001 +058006 +031009 +090001 +092004 +058005 +012001 +94659 058006 +057008 +023008 +090001 +092004 +060002 +012001 +94667 058006 +042002 +076 +94671 058006 +033053 +94674 058006 +030007 +012001 +058006 +058004 +033001 +94681 058006 +033010 +033001 +94685 059003 +092007 +042001 +092004 +060002 +089017 +092004 +058005 +012001 +057008 +092004 +059003 +078005 +030004 +089007 +064 +092004 +008001 +060002 +013001 +089017 +008002 +059001 +090006 +94710 059003 +092004 +008002 +092004 +008001 +059001 +013001 +060002 +008001 +013001 +061 +089017 +092004 +093001 +089007 +091001 +089020 +060002 +012001 +092002 +059003 +084002 +060002 +011002 +053005 +089010 +093001 +089010 +011002 +089010 +087005 +089010 +087005 +089017 +059003 +060002 +012001 +023001 +94749 091002 +092004 +008001 +013001 +069002 +060002 +008002 +089023 +059001 +089010 +033006 +092004 +008002 +089007 +069002 +013001 +008002 +069002 +013001 +063004 +092004 +008001 +069002 +089007 +092007 +069002 +013001 +063004 +092004 +008001 +089017 +089010 +033006 +092004 +008002 +089007 +069002 +013001 +024001 +069002 +013001 +063004 +092004 +008001 +069002 +089007 +092007 +069002 +013001 +063004 +092004 +008001 +089010 +063001 +092004 +008001 +024001 +083002 +092004 +024002 +089010 +063001 +024002 +083002 +092004 +024003 +94817 092004 +012001 +013001 +092004 +008002 +060002 +059003 +092004 +083003 +092004 +008001 +078005 +025001 +089017 +089010 +013001 +092004 +059003 +060002 +008002 +083002 +092004 +008001 +94841 089023 +067002 +059001 +008002 +089023 +060002 +008001 +089017 +069002 +074 +092004 +024001 +033006 +092004 +008002 +057005 +092003 +069002 +94860 089024 +089023 +092004 +008002 +092004 +008002 +057005 +092003 +069002 +94870 089023 +059002 +078002 +092004 +031005 +079013 +013001 +008002 +092004 +008001 +071005 +013001 +089017 +092006 +013001 +087004 +092004 +008001 +031005 +092007 +065001 087002 +058008 +013001 +089017 +092004 +079004 +092002 +079004 +078002 +090013 +089023 +092004 +079004 +092002 +069002 +057005 +94907 089023 +092004 +012001 +062001 +092004 +008001 +092004 +087004 +94916 078002 +087002 +94920 013004 +039002 +083003 +092004 +011002 +089023 +092004 +058005 +090009 +092005 +025021 +092004 +063004 +089017 +089010 +024006 +092004 +063004 +024006 +059003 +092004 +063004 +089010 +033037 087002 +063004 +025011 +059003 +092004 +063004 +94950 092003 +058010 +011002 +093001 +089017 +063004 +063004 +063004 +089017 +091001 +092006 +037005 +092004 +012001 +083003 +092004 +011002 +060003 +053009 +060003 +053009 +060003 +033017 +067002 +076 +067002 +057008 +023008 +035001 +036001 +058004 +033001 +069005 +059003 +053009 +069005 +059003 +053009 +069005 +059003 +033017 +069005 +059003 +076 +069005 +059003 +057001 +057008 +023008 +069005 +059003 +033001 +033006 +069005 +059003 +033010 +95007 025006 +092004 +057008 +092004 +087003 +95013 089023 +089005 +078002 +041001 +092003 +028003 033010 +089010 +092004 +033001 +092004 +009001 +089017 +092004 +012001 +033006 +089023 +025003 +069002 +95032 013002 +006012 +006012 014009 +089024 +006012 +014009 +089017 +089010 +074 +033053 +089017 +028001 +092004 +028005 +059003 +089017 +063001 +092004 +028002 +089017 +089010 +95054 063001 +092004 +031009 +089008 +001007 +015001 +089023 +025003 +069002 +95064 092004 +013001 +95068 057008 +059003 +092004 +057001 +092001 +089017 +089010 +057008 +092004 +008001 +092001 +089009 +95081 089023 +025003 +069002 +95085 092004 +035001 +092004 +025003 +025015 +088009 +092004 +025003 +069002 +088022 +092004 +025003 +069002 +033039 +069002 +088027 +069002 +088020 +069002 +025001 +092004 +092004 +069002 +088024 +069002 +029001 +092004 +065003 088015 +069002 +025011 +090006 +092004 +088002 +089023 +025011 +092004 +072001 +059003 +025015 +059003 +031006 +059003 +030003 +059003 +025015 +092004 +025003 +067001 +068004 075 +089023 +089010 +033053 +013003 +089010 +033001 +068004 +089010 +028002 +013004 +95145 063004 +063004 +028001 +089017 +063004 +063004 +033053 +089023 +95155 092004 +068003 088013 +092004 +063004 +063004 078004 +013004 +95162 013001 +009004 +033006 +064 +009004 +026 +064 +009004 +030001 +064 +009004 +95174 013002 +009002 +013004 +092004 +092004 +009004 +95181 024001 +067002 +089012 +006023 +089008 +024001 032003 +089023 +067002 +083006 +95191 083006 +067002 +028001 +063004 +063004 +089023 +067002 +032002 +064 +089017 +032002 +95203 091001 +013003 +031010 +025004 +025003 +092004 +060002 +092007 +089023 +087003 +092007 +092004 +025003 +068006 +092004 +025003 +089017 +025003 025006 +092004 +012001 +089023 +090006 +078002 +033053 +089007 +092004 +033006 +033001 +069002 +009001 +033006 +089023 +012001 +089007 +092004 +032001 +95240 012001 026 +033006 +028005 +089023 +092004 +033053 +009001 +033006 +074 +089017 +025013 +089017 +025013 +092004 +033006 +033001 +092004 +074 +089023 +092004 +033053 +011002 +074 +95264 025001 +059003 +092003 +033006 +033001 +089023 +090006 +078002 +033053 +95274 087003 +092004 +033053 +064 +092004 +033006 +033001 +089023 +089023 +95284 033010 +089009 +092004 +011002 +074 +057009 +95291 011002 +089010 +067002 +015006 +084002 +092003 +033001 +033006 +95300 092003 +035001 +95304 092003 +033006 +089024 +089004 +028003 +089024 +089004 +028002 +089024 +089004 +033053 +089024 +033017 +064 089011 +092004 +023007 +014009 +013004 +089010 +006012 +089010 +006012 +089010 +058006 +092004 +014009 +069002 +013004 +092004 +032002 +092004 +006012 +089024 +092004 +006012 +089007 +089010 +091002 +006012 +024007 +014009 +013004 +092004 +077 +089009 +055002 +95352 089017 +092003 +090002 +092004 +033006 +95358 032003 +033006 +013004 +092004 +032002 +092004 +033006 +089007 +084002 +001002 +95369 033006 +071002 +071001 +059001 +058004 +033001 +013003 +083003 +001006 +089017 +092004 +033010 +089008 089023 +95384 032001 +092004 +033010 +092004 +033001 +058010 +092004 +033006 +011004 +089017 +092004 +033006 +090013 +092001 +011004 +061 +089017 +092003 +089007 +025006 +030001 +013001 +089009 +092004 +074 +092004 +011002 +025001 +090006 +057002 059006 +089008 +092004 +033006 +033001 +033013 +090006 +033010 +089007 +089010 +033013 +033001 +092004 +026 +092001 +033013 +089023 +092004 +026 +092001 +065004 +013001 +089008 +092004 +013001 +033013 +092004 +012001 026 +089017 +033013 +089017 +092004 +026 +033007 +092004 +012001 026 +089017 +033007 +089017 +092004 +026 +089007 +089010 +033037 +012001 026 +092004 +085001 +092004 +087001 +092004 +027001 +092004 +033006 +092004 +072001 +089006 +092004 +092003 +033036 +089007 +092004 +033006 +069002 +032001 +089007 +089023 +092003 +078001 +025009 033036 +089023 091001 +092004 +058006 +069002 +074 +033036 +092004 +012001 +059003 +092003 +078002 +033001 +033006 +089023 +083003 +011002 +025001 +060002 +033006 +092004 +026 +092001 +033006 +089009 +089017 +058006 +033017 +064 +060002 +033006 +089014 +033001 +011002 +069002 +009004 +013001 +092004 +026 +089023 +092004 +088015 +009004 +089023 +092004 +026 +009001 088013 +013002 +083003 +092004 +033005 +033005 +090006 +089014 +033001 +089017 +090002 +033006 +058006 +033006 +092004 +011003 +092007 +95545 069003 +061 +024002 036003 +092001 +033006 +012001 +089008 +092004 +033001 +089009 +033056 +013001 +069002 +092004 +031010 +089023 +092004 +011002 031010 +089023 +092004 +033053 +069002 +092004 +011002 031010 +089023 +092004 +031010 +089008 +089010 +015013 +092004 +011002 +063001 +95579 092004 + +089015 +059003 +033006 +033001 +089015 +015008 +027001 +089024 +011002 +069004 +033006 +090006 +030001 +089023 +089010 +059003 +033053 +089015 +015008 +092004 +011002 +089024 +027001 +033046 +090001 +059003 +030007 +090001 +059003 +092004 +028005 +092004 +026 +092004 +028003 +013002 +089015 +061 +017005 +95621 008002 +053007 +092004 +012001 +033015 +090006 +070 +092004 +012001 +083003 +092003 +085001 +089008 +092004 +013001 +011002 +067002 +015013 +059003 +033007 +090012 +033017 +090012 +028003 +090012 +033001 +090012 +033010 +090012 +059003 +089009 +074 +013004 +089010 +033001 +092004 +033006 +089016 +060002 +089024 +092004 +059001 +060002 +089015 +061 +078004 +089017 +060002 +033010 +089023 +95673 085001 +033010 +033008 +083003 +011002 +089023 +033006 +092004 +089017 +092004 +012001 +089023 +053009 +060002 +089024 +060002 +033006 +089015 +092004 +058006 +030007 +089023 +089010 +058006 +017002 +028003 +092004 +060003 +033008 +089007 +074 +95706 059003 +033053 +089009 +059003 +027001 +089017 +059003 +025013 +089017 091002 +026 +053009 +053009 +037001 +089007 +069002 +013001 +039007 +092004 +012001 +089023 +022007 +064 +083003 +059003 +092004 +011002 +092004 +011002 +092004 +010004 +083003 +092004 +011002 +033008 +089007 +069002 +013004 +092004 +033006 +089023 +036003 +064 +089017 +092004 +033005 +033006 +089023 +089010 +092004 +027001 +025001 +083003 +007002 +092004 +057001 +010004 +033014 +089007 +088020 +013001 +009003 +033006 +083003 +011002 +089024 +090003 +092003 +092004 +033006 +092004 +012001 +015004 +089024 +090013 +092003 +058007 +015006 +089010 +092004 +031005 +013001 +053009 +089024 +012001 +027007 +092006 +033005 +092003 +090006 +012001 +033032 +013001 +089023 +089010 +092004 +030001 +030001 +089008 +011002 +092001 +025003 +092004 +033053 +089017 +092004 +033006 +033001 +069002 +013004 +089023 +059003 +066 +089017 +089005 +062002 +041001 +95823 011002 +028002 +092003 +092004 +033015 +092006 +033015 +092003 +092006 +089017 +033017 +089004 +092006 +089017 +013001 +089012 +092006 +089017 +021006 +95843 033006 +033015 +092003 +089010 +031006 +089023 +089023 +95851 089008 089009 +031010 +089007 +033017 +092003 +083003 089004 +065006 +092006 +089017 +027001 +090006 +093001 +023007 +090009 +092004 +088038 +092002 +089005 +092004 +033005 +089017 +090006 +052 +089017 +090006 +023007 +092004 +067009 +092004 +060003 +089005 +092004 +033005 +089015 +090006 +024001 +093001 +067002 +092004 +060002 +067002 +024001 +078002 +060002 +011002 +060005 067002 +063004 +092006 +092004 +059001 +013003 +067006 +067002 +089023 +092004 +023007 +067002 +024001 +093001 +067002 +092004 +053009 +059003 +089015 +061 +059003 +024001 +089017 092001 +064 +092004 +023003 +089007 +092001 +013001 +092004 +087004 +092004 +053009 +092006 +069002 +013001 +075 +033009 +053009 +089007 +039009 +092004 +011002 +092004 +012001 +089023 +025008 088009 +012001 +013001 +092006 +013001 +089017 +092004 +025008 088009 +092004 +092004 +090013 +092001 +069002 +089008 089009 +013001 +089023 +078002 +092004 +059003 +042004 +089023 +069002 +092001 +089023 +092004 +025008 088009 +092004 +012001 +089020 +092001 +089023 +089010 +092001 +089010 +092007 +061 +033015 033019 +089017 +061 +031010 +95983 089010 +093001 +033019 +090006 +089021 +023007 +023007 +092004 +033006 +083003 +092003 +092004 +090006 +023007 +023007 +069002 +013003 +089023 +089010 +023007 +023007 +069002 +013003 +069003 +093001 +023007 +089017 +089010 +093001 +069002 +023007 +089008 +072001 089008 089009 +092004 +033019 +092002 +072001 089008 089009 +089017 +092004 +031010 +092003 +089017 +013001 +089017 +033020 +092004 +012001 +089007 +033020 +089004 090008 +092004 +012001 +090006 +023007 +092004 +093001 +092006 +069002 +023007 +089010 +089008 +023007 +069002 +023007 +089007 +089010 +023007 +069002 +023007 +069003 +093001 +023007 +089017 +089010 +093001 +069002 +023007 +065004 +092004 +031010 +092003 +067006 +013001 +013001 +092004 +088038 +092003 +089008 +089017 +092004 +023007 +089020 +093001 +021006 +089010 +067007 +092004 +023007 +092007 +090006 +093001 +025004 +96087 088010 +059003 +009001 +013001 +089023 +091001 +023007 +089021 +023007 +093001 +061 +092004 +023007 +96101 089007 +090001 +009001 +023007 +96106 090001 +009001 +023007 +023007 +089007 +064 +089020 +092004 +093001 +059003 +023007 +96118 089017 +089020 +092004 +093001 +059003 +023007 +089023 +059003 +067002 +092004 +057001 +062002 +061 +093001 +067002 +092004 +092004 +093001 +067002 +092004 +015006 +092004 +067002 +092004 +061 +96145 092004 +037004 +092004 +012001 +96150 012001 +96152 076 +059003 +037004 +089017 +059003 +012002 037003 076 +089017 +012002 037004 076 +089007 +071005 +092004 +037004 +067006 +96166 085002 +059003 +092004 +039001 +037001 +092004 +037001 +092004 +061 +039001 +092004 +023007 +013004 +089007 +059003 +037001 +037001 +092004 +037001 +092004 +089023 +96188 033006 +090006 +059003 +037001 +028004 +090006 +089023 +092004 +037001 +092004 +092004 +059003 +089015 +96202 037001 +092004 +092004 +059003 +067002 +089017 +092008 +092004 +012001 +037001 +092004 +037001 +092004 +092004 +059003 +089009 +013001 +092004 +012001 +059003 +089004 +059003 +089007 +092004 +041001 +092004 +053005 +090009 +092004 +023007 +089010 +070 +023007 +069002 +023007 +092004 +091002 +053005 +090009 +092004 +092004 +091002 +092002 +021001 021002 +059003 +067009 +011002 +96250 067005 +023007 +089006 +092004 +092003 +025019 033039 +092006 +090013 +089020 +093001 +093001 +092004 +012001 +092002 +089010 +089005 +009001 +039005 +083003 +093002 +092004 +092001 +092004 +065005 +089010 +023007 +069002 +023007 +023001 +96280 023001 +089007 +067002 067010 +023007 +069002 +031008 +020002 020003 088035 +041002 +088001 +034001 +088015 +030001 +088002 +089017 +069002 +088038 +089007 +028001 032001 +012001 +092004 +090013 +089009 090006 +025018 +092003 +033006 +089023 +033006 +092004 +092004 +023007 +092004 +023007 +089017 +058004 +008001 +013002 015006 +032005 +092006 +092003 +043 +069002 +023007 +96324 023007 +089017 +092006 +043 +069002 +092004 +008001 +092004 +013002 +043 +089023 +049 +003004 +071002 +071001 +003004 +089024 +092004 +092004 +063005 +089023 +092004 +012001 +057008 +092004 +008001 +064 +025001 030004 +089017 +059003 +092004 +003004 +057001 058007 +008001 +069002 +059003 +008002 +092004 +058005 +008002 +089023 +089023 +058006 +009001 +089023 +058006 +008002 +004001 +089023 +058006 +008002 +004002 +089023 +058006 +004005 +96380 001004 +001002 001004 +089017 +008001 +001006 +089023 +089023 +058006 +092004 +092004 +001002 001004 +014006 079005 +089023 +058006 +092004 +092004 +001006 +058006 +014006 079005 +001004 +089017 +058006 +014006 079005 +001004 +089017 +058006 +014006 079005 +001004 +089007 +001004 +001004 +058006 +089004 +014006 079005 +061 +089017 +092004 +023007 +092004 +023007 +043 +013001 +020003 023013 +023007 +013001 +023007 +043 +013001 +087004 +023007 +013001 +014006 079005 +043 +013001 +074 +023007 +013001 +076 +043 +008001 +079001 +023007 +008001 +079001 +089010 +013003 +008001 +079001 +013003 +089017 +079001 +061 +089017 +033005 +013002 +092004 +060003 +009001 +093001 +013002 +009001 +023007 +092004 +061 +093001 +013002 +012001 +023007 +091001 +069002 +060003 +092004 +079001 +089023 +092004 +079001 +067002 +092004 +079001 +092004 +060003 +009001 +089003 +002005 +001006 002005 +092004 +060003 +009001 +089003 +001002 +064 +092004 +001006 002005 +092007 +089017 +092004 +001006 002005 +089017 +064 +092004 +001002 +092007 +089017 +092004 +001002 +089017 +064 +013001 +092004 +058005 +092004 +001006 002005 +96513 089017 +092004 +058005 +092004 +001002 +96519 092007 +033006 +011002 +090006 +009001 +96525 009001 +037004 +012001 +057009 +069002 +074 +069003 +092004 +020003 023013 +092004 +023007 +057009 +091002 091003 +028005 +092003 +033006 +059003 +069002 +023007 +089023 +059003 +058006 +067002 +067008 +067005 +016 +008002 +067002 +092004 +061 +006012 +089007 +006012 +089015 +092004 +023007 +023007 +023007 +089017 +092002 +058006 +96567 071005 +092004 +023007 +092007 +049 +023007 +089017 +092004 +023007 +092007 +049 +023007 +089017 +96581 092004 +023007 +092007 +049 +023007 +089017 +092004 +023007 +092007 +049 +023007 +067002 +013004 +092004 +033006 +092004 +033005 +013001 +092004 +023007 +013002 +039012 +023007 +092006 +092003 +092004 +039012 +023007 +092006 +092003 +092004 +020004 024006 +96614 092004 +020004 024006 +092004 +023007 +092004 +088038 +089017 +092004 +076 +092004 +088038 +092004 +033005 +089023 +033036 +092004 +012001 +092004 +96633 092002 +092004 +039012 +090001 +092004 +012001 +092002 +093001 +093001 +089008 +011002 +092001 +025003 +013001 +031009 +031008 +059006 +089004 +092004 +042004 +092004 +012001 +067005 +032001 +090006 +092004 +042004 +092003 +069002 +013001 +089008 +089020 +012001 +96667 089004 090006 +092004 +057007 +092004 +090009 +092004 +011002 +064 +033032 062002 +092004 +011002 +092004 +093002 +96681 089017 +092003 +090011 +067002 +96686 067009 +059003 +092003 +083005 +092004 +085002 +065001 +092004 +071001 +092006 +057007 +96700 015006 +067002 +057007 +013004 +089015 +96706 015006 +071001 +092006 +030007 +090002 +006010 033005 +092007 +015004 +015024 +092004 +057008 +092003 +084002 +093002 +089017 +089010 +066 +013001 +092004 +089017 092001 +015001 +089020 +092001 +015001 +089017 +015006 +084002 +092003 +96735 093002 +015002 +089007 +093002 +015002 +089017 +089020 +092003 +071001 +96745 089024 +96747 067009 +089009 +092003 +092001 +015004 +071001 +083002 +015001 +089007 +069002 +025001 +092003 +067002 +013001 +015003 +034006 +089007 +025004 +067005 +092004 +085003 +089020 +092003 +089010 +092004 +012001 +013004 +089023 +085003 +083003 +093002 +067006 +092004 +051 +089007 +092001 +071001 +007003 +087003 +089017 091002 +013004 +091002 +039001 +059001 +96792 089010 +015006 +093001 +013004 +090006 +025022 +013001 +089020 +092003 +089007 +092004 +042004 +012001 +042004 +064 +089017 092001 +089008 +069002 +092004 +092004 +088025 +089023 +015004 +092004 +013001 +022007 +089008 +015006 +084002 +092001 +089007 +030003 085003 +092004 +089020 +092004 +011002 +96829 089004 +093001 +092004 +011002 +078001 +033012 +092004 +089008 +015001 +084002 +092003 +089020 +092004 +011002 +091002 +071003 +069002 +013001 +025001 +090006 +067002 +015001 +089023 +015001 +067002 +067001 +027006 +013001 +089004 +092004 +031010 +025014 +076 +059003 +092003 +089014 +025003 +013004 +96868 033012 +092003 +011002 +028001 +092004 +010001 +093001 +090006 +013001 +061 +092004 +093002 +089017 +089009 +035002 +092004 +011002 +068006 +092004 +089008 +089017 +092003 +036003 +092004 +092007 +089017 +059003 +092004 +042002 +089017 +042004 +96900 025011 +089007 +092004 +015006 +093001 +089017 +093001 +089017 +093001 +089007 +092004 +092003 +085001 +092007 +057008 +089007 +023006 +092004 +092001 +026 +089017 +092004 +092003 +089008 +031004 +092004 +092007 +033003 +092003 +092004 +011002 +092004 +093002 +033003 +092003 +089020 +012001 +059001 +093001 +089017 +093001 +089020 +092004 +089004 +007002 +092004 +011002 +033003 +092003 +092004 +011002 +059003 +033003 +092005 +089014 +034009 +088003 +092004 +033003 +092004 +092001 +008002 +093001 +089010 +092004 +069002 +025003 +092004 +012001 +013001 +033055 +96973 092004 +088009 +092004 +012001 +093001 +090013 +092003 +092004 +025003 +092001 +090013 +059003 +092003 +089020 +093001 +093001 +093001 +053009 +093001 +093001 +089012 +030004 +012001 +089017 +093001 +092004 +011002 +092004 +011002 +092004 +012001 +092004 +085001 +083003 +093002 +089020 +092004 +011002 +059003 +092004 +085001 +083003 +063001 +092004 +093002 +092003 +088009 +089017 +022007 025021 +090003 +012001 +012001 +092002 +089017 +012001 +093001 +093001 +033037 +092004 +012001 +089017 +010002 012001 +092004 +012001 +092002 +093001 +093001 +092004 +012001 +092004 +088010 +089017 +012001 +059003 +025013 +092004 +025013 +092002 +067007 +059003 +092004 +022001 +092002 +089009 +092004 +074 +092002 +025013 +092004 +013001 +059003 +022001 +089012 +092004 +025013 +092006 +025013 +092008 +090001 +092004 +012001 +089007 +064 +059006 +092004 +024006 +092004 +093001 +090013 +092002 +061 +090001 +092004 +093001 +059006 +089017 +092004 +025013 +092002 +97093 089010 +022002 +090009 +092004 +092003 +025013 +089017 +021006 +089010 +025013 +090009 +092004 +092003 +025013 +092004 +013001 042001 +083003 +025015 +092004 +058005 +024006 +092006 +089017 +092002 +024006 +091001 +092004 +025004 +092002 +031009 +090006 +092003 +028001 +090006 +064 +013001 +034001 +092004 +024006 +97133 089017 +092004 +025013 +091001 +011002 +069002 +025001 +092003 +028001 +090006 +092004 +022001 +092002 +092004 +013004 +083003 +092004 +093002 +090006 +089004 +078002 +078002 +074 +022002 +089008 +025021 +092002 +97161 092004 +023007 +091001 +092008 +090013 +092004 +092004 +056005 +092004 +023007 +090013 +089009 +069002 +031009 +97176 090006 +092004 +089023 +090006 +092004 +012001 +092004 +023007 +092004 +023007 +092006 +089021 +078002 +023007 +021005 +092002 +089017 +021005 +090006 +092006 +025004 +090006 +089017 +067006 +021005 +035001 +089017 +092003 +090009 +092002 +092004 +033012 +089008 089009 +090003 +059001 +009001 +092004 +090009 +092002 +057008 +090001 090002 +059001 +033036 +090009 +092002 +091001 +092004 +033039 +092002 +092007 +013001 +092004 +033020 +092004 +026 +092002 +090006 091005 +089014 +97235 089017 +088005 +092004 +012001 +069002 +089014 +032004 +026 +089023 +089014 +088009 +012001 +041001 +089004 +092004 +009001 +97252 078002 +089020 +092003 +97256 033005 +092003 +069002 +058006 +97261 064 +092006 +033005 +089024 +089017 +032002 +089017 +025004 +090006 +078005 +078004 +032002 +064 +089017 +032002 +092002 +063004 +063004 +090006 +025019 033039 +092003 +013001 +064 +089017 +092003 +092002 +067002 +092004 + +092004 +012001 +092002 +093001 +091001 +092007 +092004 +031009 +030004 +060003 067002 +084002 +092003 +015006 +089009 +060003 +057008 +090013 +089015 +084003 +092003 +015001 +084002 +093002 +089015 +067002 +084001 +093002 +015006 +084002 +092003 +089015 +090001 +092003 +015004 +084002 +092004 +093002 +089008 +092007 +030004 +089008 +069005 +092004 +088012 +041001 +089024 +092006 +030004 +089005 +026 +030004 +089008 +97343 089020 +092001 +092004 +069001 +069001 +089017 +092004 +069002 +069002 +089023 +031009 +092004 +012001 +090006 +092004 +033006 +092002 +092004 +090013 +092003 +069002 +013001 +069001 +089017 +069002 +089007 +092004 +092004 +012001 +012001 +093001 +093001 +092004 +083003 +092003 +090001 +092002 +033019 +090001 +092001 +089017 +093001 +089017 +093001 +069002 +013002 +069001 +089017 +069002 +089023 +069001 +089020 +092004 +013002 +089007 +059001 +033025 +012001 +013001 +092004 +092004 +069001 +089008 +089017 +090001 +092004 +092004 +072001 +092004 +012001 +089009 +033037 +090001 +092002 +089017 +092004 +031009 +092002 +089020 +092003 +090006 +093001 +089017 +037005 +092002 +012001 +092004 +089017 +033056 +092002 +089017 +97435 092004 +057012 +092004 +012001 +089020 +092004 +026 +092002 +97444 092001 +033020 +092004 +012001 +033012 +090008 +092004 +092001 +023007 +090006 +022003 +092003 +067006 +015006 +084002 +093002 +090006 +069002 +037004 +092003 +092004 +031010 +089023 +042004 +013001 +092004 +025011 +092003 +089007 +092004 +031010 +013001 +97477 030005 +092001 +092007 +092004 +069002 +067002 +013001 +025023 +084002 +092003 +015006 +089007 +089010 +092001 +025023 +092003 +97494 092004 +092004 +025011 +092001 +089023 +97500 092004 +025023 +089007 +092001 +089017 +033005 +092007 +058005 +97510 015006 +025023 +090013 +090003 +092006 +092001 +025011 +071004 +031009 +97520 059003 +092003 +090006 +092004 +092001 +025011 +059003 +092003 +013001 +97530 089014 +078001 +022001 +089017 +025021 +026 +033005 +092003 +97539 059001 +008003 +069002 +089009 +025023 +089023 +089009 +028001 +092004 +025003 +092006 +090013 +078002 +090009 +092003 +089023 +089010 +092004 +025023 +069002 +092001 +025023 +089023 +063004 +063004 +059003 +092003 +97568 057019 +078001 078004 +092004 +092007 +092004 +038001 +092007 +092004 +090001 +092004 +059001 +089008 +089023 +089023 +092003 +040002 +089017 +025013 +089009 +089009 +092004 +078002 +025023 +025023 +092004 +092007 +089008 +033012 +092003 +070 +090013 +092004 +025003 +089007 +089009 +092007 +089017 +033005 +089009 +028001 +092004 +072001 +092003 +090006 +090006 +059003 +036003 +013001 +97617 092006 +092004 +040002 +089017 092001 +089007 +091002 +092001 +092006 +040002 +089010 +092004 +040002 +090009 090010 +092003 +089020 +085001 +093001 +97636 088019 +090001 +092004 +012001 093001 +089007 +069002 +092004 +092004 +030001 +028001 +97647 015006 +084002 +092004 +093002 +089009 +092004 +033015 +092004 +093001 +089017 +007003 +092001 +071001 +090001 +012001 +069002 +090013 +022005 +092004 +026 +092001 +092004 +069002 +027002 +092001 +093001 +092004 +011002 +092001 +091001 +015004 +092004 +015004 +084002 +093002 +97683 033036 +092004 +012001 +092004 +067005 +039012 +092002 +089020 +092004 +093001 +089017 +092004 +079009 +092004 +028002 +092004 +028003 +090001 +092002 +083003 +059003 +080001 +089007 +093001 +079009 +013001 +092004 +012001 +083003 +092004 +021006 +089017 +083003 +092004 +021006 +089023 +092006 +079009 +089003 +023007 +089008 +023007 +089023 +092006 +079009 +078004 089003 +023007 +089008 +023007 +97733 089004 +092007 +092004 +075 +97738 069002 +013001 +057016 +092004 +033019 +092004 +012001 +064 +092004 +059001 +089023 +064 +089014 +088005 +091002 +064 +090003 +012001 +083007 +012001 +089020 +093001 +033006 +068001 +067002 +092004 +033034 +089024 +069005 +057005 +064 +092004 +033034 +006010 +090013 +092003 +089024 +090003 +092003 +092004 +033005 +092002 +092003 +013001 +033005 +083008 +092004 +026 +092002 +028001 +089017 +033005 +090001 +059003 +009001 +028003 +090006 +013001 +033005 +093001 +035004 +090001 +092002 +033005 +069002 +006010 +089023 +012001 +012001 +023007 +069002 +083008 +006010 +002005 +089023 +083008 +006010 +026 +079002 +089017 +031009 +092007 +090013 +090001 +092004 +093001 +089020 +092004 +012001 +069002 +090006 +090003 +092004 +075 +013001 +031001 +092004 +064 +090003 +092004 +089023 +092004 +075 +092002 +090003 +092004 +012001 +092006 +089017 +075 +092002 +035002 +058011 +034005 +069002 +033005 +089023 +012001 +089007 +092004 +033005 +020004 +089023 +092004 +012001 +023007 +97865 089010 +092004 +035002 +092004 +023007 +013001 +033005 +033005 +002005 +013001 013003 +013001 +014006 079005 +089008 +069002 +074 +092004 +011003 +093001 +024001 +083008 +092004 +008002 +093001 +089007 +092004 +014006 079005 +092004 +008002 +092004 +092004 +013004 +092004 +069004 +078002 +092004 +035002 +092004 +012001 +013001 +013001 +079005 +089007 +089010 +97910 092004 +056005 +014006 079005 +078001 +078002 +059006 +092004 +035002 +092004 +034005 +079005 +089007 +97923 069002 +087003 +092004 +087003 +089004 +092007 +092004 +063004 +089007 +092004 +078002 +079005 +089007 +089010 +092004 +013003 +97940 014006 079005 +078001 +078002 +092004 +013003 +013001 +079005 +089008 +090013 +092007 +025004 +078001 +025014 +041001 +089017 +069002 +064 +093001 +085002 +006017 +083008 +092004 +008002 +092004 +089009 +092004 +069002 +024001 +092004 +011003 +093001 +078005 +092004 +067003 +092004 +013004 +089023 +027005 +092004 +026 +092004 +089007 +067006 +092004 +067010 +067009 +092004 +058005 +006017 +067007 +092004 +033005 +092004 +058011 067002 +034005 +013003 +069002 +079025 +089007 +090001 +093001 +013003 +089023 +067006 +067010 +071001 +067002 +033005 +033005 093001 +006017 +083008 +092004 +026 +092004 +013003 +089023 +067002 +98018 031008 +090013 +012001 +015024 +092004 +006017 +98025 092004 +012001 +092004 +012001 +013001 +089017 +092006 +092004 +012001 +012001 +037010 +98037 092002 +059003 +079025 +008002 +092004 +079005 +012001 +014006 024001 +092004 +058005 +058005 +013002 +013002 +079005 +013002 +079005 +064 +090003 +012001 +012001 +98059 090013 +092004 +035002 +092007 +089007 +088010 +069002 +025024 +089023 +013004 033016 +092004 +028005 +092004 +025018 +069002 +041001 +089014 +088035 +069003 +072001 +092004 +033019 +092004 +012001 +089023 +092004 +028003 +092004 +072001 +033034 +092004 +090013 +059003 +026 +009001 +090005 +092004 +012001 +089017 +089010 +98101 028005 +092004 +033015 +092002 +090013 +092004 +020003 +98109 028005 +090013 +092006 +092004 +012001 +092004 +012001 041003 067008 +092007 +032005 +092004 +026 +092004 +031010 +089009 +092004 +069002 +028003 +092004 +072001 +092004 +033015 +092004 +014006 +092004 +093001 +092006 +013001 +058005 +092004 +012001 +089007 +069002 +092004 +033019 +089023 +093001 +093001 +012001 +089017 +092004 +087005 +092003 +090010 +093001 +089007 +092004 +012001 +092004 +033006 +084001 +014007 +014006 +014006 +092006 +014006 +083003 +092004 +026 +092002 +089009 +028003 +092004 +028002 +092004 +079005 +092004 +012001 +083008 +008002 +093001 +98180 057001 +092004 +065001 +092007 +083003 +002005 +006016 +089009 +092004 +078002 +092004 +076 +013001 +092004 +012001 +089017 +069002 +090003 +092002 +083008 +059003 +022002 +089023 +069002 +022002 +032001 +089023 +069002 +025021 +039009 +089023 +069002 +035008 +019001 020002 +089023 +069002 +020003 +067005 +092004 +023007 +092004 +093001 +089004 +092004 +008001 +015024 +089009 +089017 +092004 +023007 +092004 +093001 +089004 +092004 +008001 +092002 +028003 +089007 +067005 +092002 +092004 +023007 +013002 +023007 +057008 +090009 090010 +093001 +089009 +089017 +092004 +023007 +092004 +093001 +028003 +083003 +092004 +023007 +008001 +092002 +089008 +092004 +023007 +083003 +092002 +042001 +089023 +092004 +023007 +083003 +092003 +98271 090013 +092004 +058005 +030001 +092004 +031009 +089005 +092004 +033005 +031006 +089008 +033006 +089017 +092002 +031006 +089008 +089017 +033006 +028001 +090006 +092004 +023007 +092004 +012001 +093001 +089017 +092002 +089020 +093001 +023007 +089017 +085001 +089020 +092003 +98306 092004 +059003 +090009 +092003 +089009 +092004 +025008 +059007 +090009 +092004 +059001 +092004 +033036 +059006 +089008 +092004 +087002 +092004 +012001 +089008 +069002 +025024 +091001 +98331 092004 +008001 +092002 +008001 +023009 +091001 +092004 +026 +092002 +013002 058011 +067005 +98343 067005 +089007 +092004 +067005 +078001 086001 +092004 +022001 +98351 078002 +98353 078002 +067005 +078001 +079005 +013001 +092002 +069002 +030001 +092002 +092004 +024001 +089023 +092004 +069002 +024001 +089007 +092004 +024001 +067005 +089023 +092004 +069002 +024001 +067005 +089007 +028001 +090006 +089010 +092004 +001006 +092002 +007002 +092004 +008001 +020003 +090003 +012001 +057001 +042003 +007002 +042003 +067005 +083003 +092004 +001002 +089007 +091002 +013001 +092007 +025012 +092004 +085005 +092002 +092004 +090003 +012001 +049 +025002 +089007 +091002 +091002 +98415 069002 +049 +090013 +089007 +091002 +092004 +085001 +083003 +092004 +008001 +025012 +022002 +089007 +092006 +025001 +069002 +049 +089023 +049 +089009 +013001 +092004 +023007 +090001 +092004 +023007 +98442 092004 +077 +092002 +089009 +058005 +092007 +012001 +092004 +98451 092002 +092004 +057012 +092004 +012001 +089008 +025014 +067005 +089017 +028001 +090006 +023007 +98464 092004 +009001 +085001 +084001 +092004 +012001 +089007 +090002 +031009 +041001 +069002 +090002 +024001 +98478 025014 +089017 +030006 +089023 +023007 +98484 092004 +009001 023007 +089017 +085001 +089020 +092004 +012001 +089008 +98493 025006 +089010 +085001 +089010 +085001 +025008 +092004 +013001 +089007 +092004 +059003 +092002 +028003 +083006 +092004 +007007 +092004 +093001 +071005 +089009 +090014 +059003 +092004 +090002 +092004 +009001 +089005 +092006 +042002 +089010 +088001 +089010 +088015 +089008 +028001 +092004 +053007 +092004 +012001 +009001 +033028 +98535 012001 +028003 +089017 +025004 +089017 +090013 +092004 +026 +092003 +028003 +069002 +067002 +092004 +033034 +092003 +089023 +022007 +033039 +98554 092003 +090006 +092002 +089009 +074 +090008 +092004 +089004 +024001 +033039 +98565 069002 +089004 +026 +089007 +089010 +030001 +012001 +089010 +030001 +092003 +089007 +092004 +025003 +092004 +093001 +037001 +092002 +030005 +092007 +091005 +060002 +090009 +059003 +023007 +089008 +092004 +059003 +023007 +089017 +090009 +059003 +023007 +089009 +092004 +023007 +023007 +067006 +092004 +089023 +092004 +090009 +092004 +023007 +089015 +023007 +089008 +092002 +98613 092004 +067002 +092004 +028001 +089004 +026 +98621 028001 +089004 +026 +093001 +089023 +067002 +067006 +028001 +089008 +089010 +092004 +089020 +093001 +058011 +042003 +092004 +067005 +013003 +091003 +013002 +058011 +98643 092004 +059003 +090003 +092004 +012001 +092004 +040001 +092002 +092004 +090001 +093001 +089017 +98656 092002 +092004 +035002 +092004 +040001 +090006 +091005 +012001 +98665 040001 +090001 +093001 +009001 +092004 +069002 +029001 +092004 +092004 +088038 +092004 +089017 +037005 +090013 +092002 +092004 +033006 +092004 +040001 +089008 +090009 +093001 +037004 +064 +092004 +012001 +033012 +090001 +092002 +033012 +090009 +093001 +040001 +092004 +012001 +092004 +069002 +027001 +088038 +090009 +092002 +088038 +013001 +089009 +092002 +013002 +088002 +012001 +089020 +092004 +089017 +042002 +089017 +033012 +069002 +089008 +089008 089009 +092004 +088009 +092004 +012001 +057009 +092003 +089007 +033006 +067001 +066 +024002 +092003 +089017 +067007 +067008 +021006 +035001 +092003 +091003 +067002 +067001 +022007 +091003 +067002 +067008 +021006 +092004 +022001 025016 088038 +089004 +092004 +090012 +98755 033045 +092004 +035002 +089023 +089013 +059003 +028003 +092004 +064 +012001 +035002 +089013 +025015 +078001 +089013 +022001 +089013 +022001 +089013 +022001 +089013 +019001 +089013 +007002 +089013 +039007 +089013 +042004 +089013 +023005 +089013 +023001 +089014 +088003 +089014 +028002 032002 +089014 +025015 +089014 +088009 +089020 +012001 +088003 +089014 +025003 +073 +090002 +033006 +072001 +090002 +076 +012001 +089012 +092004 +006007 +092004 +088002 +092004 +008002 +089017 +008002 082002 +067007 +087002 +089017 +087004 +067007 +033042 +089017 +033037 +064 +031002 +091002 +088005 +064 +028001 +091002 +028001 +064 +023007 +091002 +091003 +023007 +064 +038001 +091002 +069002 +020004 +064 +025023 +089023 +067005 +025011 +064 +057006 +089023 +059001 +057003 +064 +092004 +057001 +091002 +059003 +057001 +093002 +092004 +033018 +092002 +033018 +98864 092003 +092004 +025003 +092002 +025003 +069002 +025003 037001 +090001 +092002 +089023 +025003 +98876 092004 +025003 +092003 +98880 092004 +058005 +038002 +064 +009005 +033006 +025003 +089017 +092003 +069002 +013002 +034001 +011002 +089007 +092004 +034001 +088002 +089017 +088018 +089024 +092004 +034001 +014006 +089004 +088015 +089017 +092004 +031003 +093001 +089004 +093001 +089024 +092004 +063004 +031009 +089020 +031010 +089017 +092004 +031003 +007002 +012001 +089020 +006013 +089007 +092002 +007002 +012001 +023007 +013001 +064 +033006 +092004 +012001 +090006 +085005 +083003 +092004 +089017 +085005 +089017 +013001 +092004 +012001 +089017 +092004 +013001 +092001 +011002 +089008 +015004 +089021 +083003 +092004 +089017 +063007 +089017 +053004 +069002 +024005 +033006 +012001 +092001 +034007 +092003 +089017 +013001 +092003 +98969 010002 +089017 +092003 +013001 +092001 +98975 010002 +089017 +010002 +033006 +012001 +012001 +089008 +025003 +057001 +092007 +092004 +033025 +053003 +092004 +089021 +059003 +053004 +008001 +089017 +026 +068003 +088003 +089007 089014 +053007 +012001 +034001 +092002 +092004 +088002 +092004 +020002 +092004 +088019 +089009 +056005 +069002 +033006 +089007 +033006 +090006 +99016 092004 +026 +092002 +013001 +078005 +092004 +023007 +089017 +023007 +078001 +092001 +025014 +089004 +092003 +078001 +092001 +025019 +090006 +092003 +059004 +092004 +025013 +078002 +092004 +025011 +067007 +059003 +092004 +022001 +092002 +089007 +99048 015006 +092002 +084002 +093002 +092004 +090013 +022005 +092004 +008001 +092002 +089023 +089004 +059003 +022002 +083004 +039005 +083003 +025022 +089023 +092004 +025013 +092004 +025024 +092004 +012001 +025013 +092002 +089012 +092004 +015006 +093001 +089017 +069002 +99082 089012 +092004 +015006 +092004 +089023 +089017 +089012 +092004 +025013 +092006 +025013 +089007 +092003 +033015 +092002 +092004 +092003 +025002 +092004 +092003 +052 +092004 +092003 +025003 +090006 +092001 +089008 +092001 +078002 +025011 +089007 +99115 025023 +092003 +089012 +092004 +033005 +069002 +025023 +99124 025023 +032002 +090006 +092004 +033005 +092007 +99133 067008 +025023 +092003 +067002 +025011 +069002 +089007 +025023 +089023 +089007 +025023 +089008 +041005 +089007 +025023 +089005 +012001 +089008 +089004 +092004 +057007 +090003 +092002 +089007 +092004 +089005 +012001 +025023 +041005 +089008 +021006 +025023 +013001 +089023 +092004 +092004 +041003 +025023 +023007 +013001 +089007 +091003 +092008 +092007 +092004 +089005 +012001 +025023 +013001 +092003 +078001 +025006 +089017 +033049 +089017 +088024 +089017 +025022 +089017 +025002 +089017 +025003 +089017 +038001 039006 +089004 +059003 +028003 +092004 +088003 +013001 +092004 +013004 +089008 +99208 033005 +092003 +069002 +090010 +092004 +088002 +069003 +090010 +092004 +088002 +089023 +089009 +092004 +028003 +092004 +025006 +092003 +092004 +090009 +092002 +090013 +092003 +083006 +092004 +012001 +99235 025013 +089017 +089017 +092004 +025013 +092002 +078002 +078002 +025011 +089007 +092004 +025011 +093001 +089007 090006 +023006 +092004 +026 +092004 +090001 +059003 +092003 +089007 +089010 +092004 +092004 +090006 +092003 +033039 +069002 +025018 +089023 +064 +059003 +070 +070 +033006 +092003 +061 +089017 +092004 +033039 +092002 +090013 +093001 +072001 +013002 +089017 +092004 +025003 026 +092004 +078002 +090013 +092003 +013001 +029002 +092004 +059003 +092003 +036003 +089014 +089013 +025022 +089017 +016 +034007 +092004 +025011 +089007 +089004 +059003 +025014 +089004 +092003 +99309 011002 +028002 +092003 +092004 +088009 +092004 +012001 +092004 +99318 090013 +092004 +011002 +092004 +093002 +091005 +067007 +078001 +027004 +022001 +092004 +059006 078002 +092004 +025011 +092004 +089017 +092004 +078001 +078001 +057006 +092004 +078002 +089008 +092004 +078001 +092004 +057008 +092004 +033020 +091005 +089005 +074 +99351 078002 +074 +025005 +089013 +059002 +033012 +033012 +092002 +092004 +088009 +99362 092004 +057008 +092004 +035002 +092004 +090009 +092004 +011002 +091002 +069002 +064 +025004 +089023 +99376 053006 +060003 +092004 +012001 +089015 +092002 +089012 +030004 +012001 +089008 +092004 +033012 +092002 +093001 +090006 +064 +068001 +061 +089017 +068003 +090006 +092003 +089017 +092004 +057008 +092007 +091001 +064 +089004 +059003 +078002 +031010 +089017 +033006 +089017 +028002 +089017 +078004 +025006 +089017 +092004 +090003 +092002 +090013 +092003 +025003 +090006 +089017 +089004 +092007 +092004 +057008 +078002 +069002 +089005 +033032 +033006 +089023 +089012 +092004 +058006 +025006 +089017 +092004 +092004 +092003 +025003 +073 +027004 +089007 +028001 +092004 +088009 +092004 +012001 +092002 +093001 +093001 +091005 +090009 +092003 +057006 +057003 +013001 +089009 +092003 +092004 +092007 +057006 +057003 +99467 031001 +089004 +092007 +99471 089007 +092007 +092003 +065005 +99476 069002 +058007 +092004 +042002 +089023 +089017 +092004 +025001 +068001 +067006 +067010 +99488 091001 +089017 +092004 +042002 +068003 +089009 +064 +092004 +025006 +092004 +025001 +061 +089017 +092004 +068003 +090003 +092004 +057001 +99507 089010 +092004 +025006 +013003 +078005 +071001 +057001 +025008 +069002 +078005 +069002 +057001 +99520 069002 +090006 +058006 +022005 +092003 +022001 +089023 +089007 +058005 +067007 +092004 +067002 +067005 +092004 +092003 +059006 +090009 +092004 +092007 +057005 +089009 +089017 +092004 +092007 +059006 +013002 +090009 +092004 +092003 +057005 +089009 +013003 +058005 +064 +033005 +092004 +092004 +059002 +069002 +057002 +089017 +092004 +092004 +059002 +069002 +057005 +99567 033036 +092004 +012001 +092004 +99572 092004 +058005 +025006 +090009 +092003 +083003 +092004 +026 +093001 +089007 +091001 +092004 +025013 +057009 +089017 +025006 +013001 +025005 +015004 +084002 +092003 +089017 +015004 +089020 +092004 +092004 +011002 +092006 +092004 +033037 +089004 +092004 +033015 +084003 +059003 +092004 +011002 +089017 +069002 +99612 089023 +089017 +030006 +090001 +092004 +011002 +015019 +092002 +99621 092004 +057008 +092007 +092004 +035004 +090001 +092002 +089009 +092004 +092008 +092004 +012001 +033037 +089017 +025006 +092002 +013004 +092007 +089009 +092004 +092002 +033045 +089004 +092004 +059006 +092007 +092004 +035004 +090001 +092002 +089007 +035004 +088001 +069002 +99656 090005 +012001 +089023 +089017 +090005 +009001 +089017 +015004 +092004 +092004 +011002 +092002 +092006 +030007 +089004 +059001 +067001 +025006 +013001 +089017 +091001 +078001 +025006 +031009 +078001 +092004 +090006 +092003 +089010 +090006 +093001 +034001 +092001 +089017 +090009 +092003 +042004 +089010 +011002 +092002 +033015 +011002 +033037 +093001 +089008 +092004 +028003 +092004 +025003 +092003 +089017 +092002 +033039 +090006 +092003 +090013 +092004 +028003 +083003 +085001 +092004 +011002 +091001 +089023 +089004 +092004 +057008 +092004 +090009 +092004 +011002 +059006 071005 +092001 +013001 +092004 +033005 +092003 +089007 +028001 +092004 +025006 +092003 +092006 +090006 +092003 +033039 +093002 +090006 +093002 +077 +067006 +067010 +089017 +092004 +092003 +025003 +090012 +092004 +059001 +089023 +015004 +092004 +011002 +089009 +069002 +092004 +033039 +092002 +092004 +090006 +092003 +076 +089004 +092004 +063004 +092007 +089009 +064 +033006 +077 +99777 089009 +089009 +089010 +015001 +089020 +092001 +093002 +089015 +027001 +092003 +077 +025018 +092002 +090006 +069002 +99793 092003 +089004 +092004 +031009 +092007 +089008 +071005 +031001 +033012 +092004 +011002 +090006 +015015 +084002 +092003 +089015 +077 +092004 +033025 +057008 +092003 +092007 +077 +013001 +061 +089009 +057008 +089017 +069002 +064 +088019 +99825 092007 +092004 +043 +059006 +059006 +089017 +043 +089017 +092004 +043 +99836 059006 +99838 059006 +089017 +043 +059003 +064 +030005 +092004 +026 +069002 +089014 +025023 +089024 +089014 +071004 +089007 +025011 +057008 +025003 +092004 +012001 +089017 +074 +092004 +012001 +059003 +057008 +059006 +090013 +092003 +089009 +089004 +059003 +067005 +078004 +075 +057001 +059006 +090006 +059003 +042002 +088001 +064 +033005 +057008 +057008 +092004 +057006 +092004 +088002 +092004 +068002 +067005 +092004 +067005 +99893 092004 +035003 +99896 092004 +043 +089017 +005001 +089009 +005001 +035003 +089017 +059007 +092004 +003004 +092003 +089017 +059007 +092004 +013002 +092004 +088002 +092003 +089004 +058004 +057003 +089009 +078004 +057008 +99922 013001 +090001 +092002 +033036 +092004 +012001 +089007 +092004 +035004 +092004 +035002 +092007 +069002 +99937 035003 +092004 +057005 +092004 +011002 +089023 +089017 +059006 +089012 +059001 +033036 +092004 +012001 +089012 +092004 +072001 +092004 +057008 +092007 +033037 +092004 +012001 +089006 +092004 +036003 +092004 +033021 +092003 +090006 +092004 +033015 +092004 +093001 +089017 +057008 +092004 +057008 +090013 +092004 +089017 +090013 +059003 +089017 +092004 +033012 +090009 +092003 +025003 +092003 +089007 +092004 +078002 +088009 +092004 +012001 +090009 +092003 +033036 +092004 +012001 +089007 +092004 +033015 +092004 +057008 +100003 092008 +092001 +093001 +033012 +092003 +100009 092004 +088008 +089017 +088008 +092004 +093001 +092006 +089023 +083006 +085001 +088008 +083003 +092003 +089023 +085001 +025014 +090013 +092003 +089017 +033012 +092004 +069002 +085001 +025014 +092004 +031009 +092006 +031001 +025014 +090008 +092004 +092004 +031001 +092002 +064 +089005 +026 +041001 +089007 +013001 +008001 +041001 +069002 +089005 +026 +055002 +089007 +092004 +006007 +092004 +055002 +092002 +069002 +079001 +089023 +074 +092004 +012001 +089009 +020003 +007002 +020003 +030001 +089017 +059003 +088027 +039007 +090008 +092004 +028002 +092004 +012001 +089017 +037001 +059003 +030001 +089009 +092004 +036003 +092004 +093001 +089017 +013001 +077 +090013 +038001 +059003 +036003 +067002 +059003 +092003 +092004 +036003 +092004 +031005 +031005 +024001 +089010 +092004 +031009 +092004 +093001 +058010 +092007 +030001 +067002 089023 +090006 +092004 +090006 +064 +092004 +093001 +100122 089017 +092002 +089007 +089010 +100127 058008 +092004 +033039 +089004 +092004 +037003 +092002 +092006 +100136 092004 +012001 +089009 +074 +089017 +069002 +089009 +074 +092003 +069002 +025018 +089009 +069002 +025001 +064 +071003 +025022 +092003 +089012 +092004 +033005 +089007 +033006 +089023 +092004 +033005 +065006 +089017 +076 +089023 +092004 +085001 +092004 +009001 +079013 +089017 +092004 +033006 +088025 +092007 +030001 +092004 +064 +090006 +058004 +013001 +092004 +033006 +090002 +033005 +085001 +092007 +089017 +085001 +092004 +042002 +100193 069002 +025014 +058004 +089024 +064 +092004 +092004 +092004 +092004 +033034 +089023 +092004 +089004 +092005 +092004 +081001 +089017 +064 +092004 +092005 +069002 +032001 +089023 +092002 +069002 +078001 +092004 +078001 +033039 +089023 +089005 +092004 +081001 +092004 +080001 +092006 +037005 +092002 +092004 +012001 +081001 +015006 +084002 +100237 092003 +089007 +069002 +064 +069002 +015006 +084002 +092003 +068006 +092004 +089007 +084002 +100250 092003 +015006 +089004 089013 +092004 +033015 +092004 +093001 +069002 +078001 +092004 +078001 +033039 +089004 +092004 +042004 +089023 +025004 +090013 +059007 078001 +092004 +031010 +092003 +090001 +092003 +079028 +089005 +092004 +080001 +092002 +078005 +059006 +083003 +092004 +083010 +092003 +033015 +069002 +083003 +092004 +080001 +090006 +092004 +077 +033039 +089023 +092004 +033039 +089004 +012001 +033039 +089007 +069002 +092004 +092004 +033034 +092007 +013001 +030007 +089023 +092006 +092004 +012001 +033034 +071004 +025015 +092001 +079028 +092004 +032005 +091002 +091002 +025015 +092001 +089007 +025003 088022 +092003 +012001 +025003 +089007 +034010 +092003 +060002 +010004 +009003 +088003 +057008 +092004 +093001 +089023 +025022 +089009 +089009 +064 +092004 +004004 +031002 +093001 +089012 +092004 +088035 +092004 +088035 +092004 +026 +092003 +089021 +092004 +088005 +089017 +092004 +088003 +092004 +090006 +093001 +089007 +100366 089010 +092004 +015006 +033019 +058006 +093001 +092006 +069002 +033019 +089024 +057009 +012001 +058006 +092006 +069002 +057009 +089024 +033015 +058006 +092006 +069002 +031007 +088001 +025015 +089007 +031001 +092004 +087004 +092004 +078002 +053009 +089023 +100400 027001 +092004 +033006 +091001 +069002 +092004 +028002 +091002 +089004 +058004 +028003 +089004 +059003 +090013 +092003 +089024 +088038 +090011 +092001 +087004 +089008 +092003 +087003 +089007 +057008 +092004 +092004 +012001 +033015 +033015 +092003 +058006 +011002 +057021 +057009 +057008 +089009 +092004 +092003 +035002 +100441 085001 +083003 +092003 +089017 +057005 +069002 +057019 +092004 +089007 +092004 +057005 +092001 +035003 +092004 +011002 +015006 +084001 +093002 +089017 +089004 +058004 +057019 +092001 +092003 +013001 +089017 +013001 +013003 +072001 +093001 +089020 +092001 +090006 +092004 +033039 +092007 +069002 +068004 +083003 +092001 +083003 +092004 +001011 +092004 +093002 +100488 089007 +069002 +025003 +092003 +092004 +012001 +028001 +089023 +092006 +042002 +089017 +042002 +089009 +013003 +092004 +089007 +092004 +025001 +089007 +089009 +090006 +092006 +033039 +013001 +064 +089017 +092002 +089007 +092004 +092007 +053009 +041001 +088021 +058002 +013002 +053009 +093001 +089017 +069002 +025020 +089007 +092008 +092004 +012001 093001 +058002 +013002 +012001 +014006 +089008 +069002 +025020 +089010 +089017 +092004 +035002 +092004 +058002 +064 +035002 +088002 +092006 +092004 +067003 +013001 +089005 +092004 +042002 +092004 +067002 +033006 +069002 +092004 +031005 +092001 +032005 +013001 +100567 089011 +064 +032005 +034007 +092001 +089008 +089017 092001 +079028 +092004 +033039 +092006 +033006 +069002 +089005 +012001 +033006 +089023 +064 +089014 +032005 +089004 +092007 +092004 +031009 +092004 +033039 +089007 +059001 +033039 +089005 +100598 026 +089017 092001 +033039 +089007 +025011 +025015 +092004 +032005 +032004 +013001 +100609 025015 +089010 +092004 +092003 +037001 +089010 +092004 +088019 +089010 +092004 +088019 +089010 +092004 +088027 +089010 +092004 +083008 +008002 +092003 +019001 +089004 +087004 +033006 +090006 +090006 +092002 +074 +089023 +071001 +089014 +092006 +092004 +025014 +089014 +032005 +033006 +025014 +089017 092001 +093001 +013001 +089017 092001 +093001 +013001 +089017 092001 +010002 +093001 +013001 +089017 092001 +035002 +093001 +013001 +030001 +033006 +078002 +092001 +089004 +042004 +078002 +089004 +007002 +078002 +089004 +019001 +078002 +100674 023007 +067001 +090001 +093001 +060005 +060002 +059008 +060002 +090013 +060005 +019001 +060005 +020004 +060005 +054 +067009 +083003 +092004 +001010 +042002 +015002 +067001 +021001 +001010 +021001 +057021 +021001 +090003 +010001 +021001 +090003 +011002 +021001 +083003 +001014 +021001 +083003 +001013 +021001 +083008 +001010 +021001 +083003 +011002 +042004 +089017 +042004 +013001 +023005 +067001 +013001 +023001 +089017 +023001 +013001 +023001 +067001 +013001 +079014 +089017 +049 +089021 +092004 +058006 +092004 +025021 035004 +092001 +092004 +100743 067005 +092004 +025021 +059003 +092004 +011002 +092004 +074 +089017 +069002 +074 +092004 +088038 +089017 +069002 +092001 +025021 +089010 +033039 +071005 +092004 +092004 +074 +092001 +033039 +092004 +012001 +089017 +012001 +092004 +012001 +093001 +092004 +013001 +033037 +067005 +092004 +067005 +028001 +090006 +069002 +033018 +083003 +093002 +092004 +037004 +093001 +092004 +037004 +037009 +092004 +001014 +093002 +037006 +092001 +089015 +084003 +007003 +083003 +006016 +015011 +084003 +092004 +007006 +089015 +021004 +092004 +037001 +092004 +033039 +071004 +091002 +069002 +065005 +089023 +100820 033056 +089017 +028003 +012001 +028001 +009002 +089020 +093001 +089010 +013001 +008001 +069002 +028001 +089010 +083004 +092004 +008001 +069002 +028001 +092004 +012001 +028001 +067002 +067009 +060002 +018001 +092004 +064 +084002 +060003 +001002 +089017 +028001 +092004 +064 092007 +009002 +089010 +013001 +008001 +089010 +089021 +092004 +008001 +069002 +028001 +092004 +012001 +028001 +090006 +018001 +084002 +092004 +001002 +089015 +024002 +033006 +033002 +092006 +033006 +069002 +071004 +009001 +090009 +092004 +064 +033039 +089023 +090009 +092001 +069002 +033039 +089023 +100893 089004 +092004 +074 +091001 +089010 +025001 +033039 +069002 +013001 +032005 +089007 +072001 +033006 +089023 +013004 +089009 +092004 +090013 +092001 +031001 +078002 +092006 +024001 +092001 +089024 +024002 +090003 +092001 +100922 092004 +078002 +092004 +028003 +089008 +100929 088027 +090014 +092001 +003005 022002 +092004 +022002 +012001 +012001 093001 +089009 +092001 +020002 +100942 088027 +090006 +092007 +060005 +092004 +012001 +033012 +089009 +015004 +089021 +092001 +089015 +033006 +092001 +059005 +092003 +092004 +088009 +092001 +089007 +092004 +076 +013001 +074 +068003 +089008 +025011 +078002 +033039 +089004 +092004 +074 +089009 +085005 +090013 +092001 +092004 +076 +092004 +093001 +089008 +025008 +090006 +074 +090006 +020002 033042 088016 +090006 +022001 +090006 +039009 +089017 +022001 +090009 +093001 +089007 +067002 +074 +067002 +074 +013001 +013002 +032005 +092003 +092001 +037002 +101008 092001 +071004 +090001 +092003 +033034 +089007 +092004 +087004 +092004 +078002 +053009 +101021 092004 +013001 +091001 +092004 +033056 +092004 +053009 +090011 +083003 +092003 +089013 +078004 +025015 +089017 +033056 +089017 +033056 +089017 +076 +091001 +092004 +013001 +092006 +088016 +078002 +092004 +063005 +011002 +089023 +101051 090006 +092008 +092001 +069002 +057019 +092003 +040002 +092001 +092004 +088002 +092007 +091003 +060003 +092007 +077 +013001 +015006 +084002 +092003 +101071 069002 +057019 +089007 +069002 +057007 +092004 +092003 +089023 +092003 +089007 +069002 +071004 +092004 +010002 +092004 +010002 +065001 +089023 +092004 +010002 +092004 +010002 +089017 +092001 +025011 +042002 057011 +101098 042002 +090009 +092004 +026 +092003 +089010 +078002 +092003 +101107 078002 +025003 +089023 +013003 +092001 +069002 +022003 +092003 +089023 +013001 +088035 +088021 +092003 +088019 +069005 +092004 +092006 +015004 +084002 +092003 +090001 +092004 +088019 +092003 +033012 +093001 +089017 +015004 +092004 +011002 +069005 +088019 +092003 +093001 +069004 +092004 +058005 +030001 +041004 +069004 +092004 +058005 +041004 +067007 +031005 +090006 +092003 +033049 +090005 +012001 +089020 +093001 +033006 +089017 +025003 +092004 +059003 +090009 +092004 +092003 +074 +089007 +025022 +089009 +089009 +015006 +069002 +064 +025001 +027001 +092003 +089017 092001 +027001 +092003 +064 +069002 +025001 +089009 +089009 +039005 +088022 +088024 +088023 +033042 +033043 +088027 +039007 +089009 +067002 +015006 +092001 +025018 +092001 +092004 +012001 +092001 +090005 +092003 +089015 +025012 +059001 +092004 +088038 +089015 +069002 +041005 +089006 +092004 +088034 +089017 +088036 +089017 +088036 +092006 +042002 +060003 +092007 +015006 +084002 +092003 +089006 +033006 +060002 +033020 +101232 060002 +076 +059003 +013004 +033006 +089017 +033047 +064 +085001 +092004 +060003 +091002 +085001 +067002 +092004 +088038 +089017 +092004 +063005 +059003 +090006 +089010 +015006 +101256 092004 +067002 +069002 +022003 +089007 +033012 +072001 +092004 +090001 +092001 +033006 +093001 +092006 +090013 +092003 +069002 +074 +089023 +074 +089020 +092003 +089007 +091002 +020004 +089014 +074 +089023 +023007 +089012 +076 +012001 +091001 +091002 +092002 +074 +089020 +092004 +089023 +023007 +089020 +092004 +089012 +076 +012001 +090013 +092003 +092004 +027004 +090006 +068002 +101307 092004 +031010 +092004 +027004 +089024 +069004 +032002 +092004 +090006 +093001 +093001 +089020 +092003 +101321 069005 +065001 +013001 +101325 025004 +090006 +031004 +090006 +092002 +069002 +013001 +065001 +101334 033013 +090013 +092004 +012001 +069002 +042002 +092003 +088015 +092004 +069002 +089008 +092002 +030007 +028003 +089023 +089008 +092003 +092004 +088001 +042002 +101355 092002 +089008 +088015 +013001 +089007 +069002 +074 +092004 +090008 +092004 +072001 +089023 +090009 +092004 +072001 +101371 025011 +067002 +092002 +074 +089023 +092003 +074 +013001 +089017 +033013 +092007 +092004 +092003 +075 +101387 092007 +085001 +033005 +089009 +085001 +069002 +088009 +041001 +089005 +092004 +037003 +092006 +092004 +012001 +037005 +092001 +089009 +074 +089017 +069002 +089009 +074 +011002 +061 +025011 +075 +025013 +092004 +058005 +031001 +088014 +101419 092004 +012001 +092004 +025003 +089017 +022007 +085001 +089020 +092003 +033003 +092005 +089013 +088003 +034009 +033003 +092003 +092004 +011002 +059003 +092004 +025008 +092004 +012001 +093001 +093001 +089017 +092004 +025003 +092004 +012001 +089017 +092004 +034001 +092004 +088003 +012001 +089020 +059003 +092003 +093001 +053009 +069002 +090003 +009001 +069003 +090001 +009001 +089023 +090001 +093001 +093001 +089017 +012001 +012001 +092004 +023007 +092004 +089021 +023007 +089017 +092004 +089020 +092001 +059003 +011002 +092004 +011002 +092004 +093002 +092003 +088009 +089017 +025021 +090003 +012001 +012001 +092002 +089017 +012001 +093001 +093001 +092004 +053006 +101503 090009 +092004 +088038 +092002 +089009 +021005 +092002 +089021 +092004 +067008 +092004 +067002 +088015 +089005 +092004 +030004 +092004 +012001 +101522 012001 +092002 +092006 +092004 +033037 087002 +067005 +092004 +067005 +092004 +067005 +072001 +025020 +090006 +078001 +067005 +034002 +013002 +092004 +033029 +092003 +089012 +088009 +093001 +013002 +058006 +033015 +092006 +069002 +013001 +058006 +089023 +101554 092004 +013003 +092004 +025021 +092003 +089017 +025001 +013002 +092004 +033015 +092004 +093001 +089023 +101568 089010 +092002 +089024 +012001 +084001 +001002 +101575 092003 +089023 +092006 +033015 +092003 +033055 +013001 +064 +033006 +101585 067002 +067002 +033006 +089010 +092004 +092003 +033015 +089023 +092006 +027001 +033055 +013001 +091001 +067002 +033028 +009001 +089024 +092004 +012001 +089024 +025001 +009001 +025008 +089010 +067006 +009001 +025008 +071003 +093001 +087005 +069002 +013001 +101618 011002 +028002 +092003 +092004 +033015 +092004 +033015 +090001 +092001 +090006 +069002 +013001 +089005 +009001 +089007 +069003 +092001 +090003 +009001 +027001 +092004 +069003 +033017 +089023 +089012 +028003 +093001 +093001 +089007 +033015 +092004 +092001 +041001 +067001 +089020 +092004 +041003 +091005 +089005 +078002 +039009 +092004 +011002 +092004 +012001 +089017 +020003 +092004 +089017 +013002 +089004 +092004 +041003 +078002 +059001 +067008 +083003 +092004 +010001 +092001 +078002 +013001 +025006 +092004 +010002 +092001 +033017 +089023 +101687 025008 +092004 +037005 +092001 +067006 +008002 +010002 +092001 +089015 +033029 +089012 +092004 +088009 +092004 +028003 +092004 +012001 +092004 +090013 +092001 +089009 +033015 +092004 +083003 +092004 +011002 +067002 +069002 +033012 +009001 +101718 009001 +069003 +015010 +084002 +093002 +084002 +092004 +067002 +092001 +053009 +089023 +015004 +084002 +093002 +089015 +067002 +015007 +084002 +093002 +067002 +067002 +060002 +067009 +015010 +084002 +093002 +034006 +093001 +089015 +085003 +089020 +092004 +067009 +060002 +089023 +058006 +092004 +053009 +069002 +034006 +089023 +101760 093001 +092004 +010003 +092004 +012001 +101766 092006 +033005 +092003 +091002 +083006 +092004 +012001 +090006 +069002 +033018 +067002 +015001 +084002 +092004 +001011 +092004 +093002 +089017 +092004 +093002 +089023 +101788 028001 +092004 +009001 +092004 +011002 +092004 +093002 +092004 +089020 +093001 +101800 033015 +101802 090006 +092004 +039009 +092002 +067001 +067002 +033015 +092004 +031010 +092006 +067001 +020003 +101815 033037 +089004 +092001 +092004 +012001 +067002 +067002 +060002 +067002 067009 +067002 +015010 +084002 +093002 +089020 +093001 +015023 +089017 +093001 +101834 015010 +089005 +028003 +089015 +033010 +092004 +092004 +033015 +092006 +033019 +083003 +092004 +011002 +089023 +028004 +028004 +092004 +087003 +089009 +089009 +089008 +089008 +015030 +089024 +015030 +089023 +069003 +093001 +092004 +089020 +092001 +011002 +013001 +037002 +053006 +101870 090010 +092004 +034002 +011002 +101875 034002 +024001 +092004 +037010 +092002 +092006 +090013 +089020 +093001 +093001 +089009 +092002 +037001 +092006 +069003 +101891 067008 +039004 +092004 +036003 +089009 +092004 +072001 +092004 +033015 +068002 +090013 +092003 +089023 +090003 +092004 +087003 +087003 +087003 +058004 +067001 +013001 +092004 +092001 +065001 +088030 +009001 +092004 +012001 +069002 +088030 +101922 092001 +092004 +087003 +092004 +059008 +089023 +089023 +024001 +090006 +035005 +092004 +033015 +092004 +011002 +064 +093001 +092004 +053006 +089007 +092004 +042001 +093001 +089009 +053009 +092004 +053006 +042001 +089017 +092001 +089009 +092004 +011002 +089015 +031004 032002 +092004 +088009 +092004 +101960 092001 +093001 +089017 +093001 +089017 +093001 +092004 +031005 +036001 +013001 +008002 034005 +034001 +034005 +092001 +089017 +093001 +089009 +092002 +090009 +092004 +011002 +089023 +092004 +090009 +092004 +053006 +101987 090006 +092004 +057006 +029004 +092006 +089017 +025006 +058005 +092007 +090011 +089023 +101999 015006 +093001 +084002 +093002 +083006 +085001 +092004 +039001 +089007 +030007 +102011 067002 +092004 +015006 +102015 084001 +093001 +089020 +092004 +011002 +023001 +089023 +102023 015006 +068004 +089017 +063007 +092004 +025022 +092004 +102031 011002 +089015 +088029 +092004 +089017 +092004 +063005 +093001 +089008 +102041 093001 +031008 +092004 +092004 +088029 +089023 +102048 024001 +090006 +069002 +041003 +089005 +092004 +072001 +092004 +033015 +033006 +092004 +093001 +083006 +059003 +089010 +092003 +093001 +013001 +011002 +089017 +102069 093001 +041001 +092004 +037002 +092004 +011002 +041003 +092002 +058001 +093001 +089017 +069002 +063004 +011002 +088038 +102085 028001 +090006 +069002 +034005 +009001 +089012 +042002 +033005 +102095 089012 +031009 +093001 +093001 +102100 092002 +090006 +093001 +093001 +031009 +089009 +034005 +089012 +031009 +093001 +102111 069002 +089012 +042002 +033005 +089007 +089012 +042002 +033005 +069002 +034005 +059003 +009001 +089023 +089010 +025001 +034005 +089020 +093001 +013001 +102131 092008 +088038 +069005 +093001 +088038 +035002 +069002 +013003 013004 +089007 +089010 +092006 +020003 +092007 +067002 +045 +036003 +092001 +028003 +102150 092001 +089012 +033005 +033005 +074 +089009 +012001 +041001 +093001 +020004 +089023 +041001 +067006 +092001 +089023 +041001 +089020 +092001 +093001 +089017 +092006 +067002 +041001 +013001 +008001 +041001 +089012 +031009 +092004 +092004 +012001 +092004 +012001 +092004 +025003 +092001 +089017 +057008 +092004 +090009 +092001 +069002 +076 +092004 +088009 +092004 +012001 +089007 +089010 +089012 +033005 +034005 +089008 +093001 +089009 +023007 +091004 +032005 +093002 +092004 +092003 +053010 088021 +092006 +083006 +024001 +093001 +093001 +033015 +020004 +025001 +092007 +102222 027001 +090003 +092003 +092004 +012001 +057009 +089012 +042002 +033005 +089024 +089012 +024002 +031010 +078001 +032005 +013001 +068001 +012001 +067002 +026 +068003 +059001 +090013 +089008 +089010 +091002 +102249 089008 +089008 +092004 +035003 +092003 +092004 +012001 +102257 013001 +076 +090013 +092003 +089012 +042002 +033005 +089024 +089012 +024002 +031010 +064 +093001 +031009 +092004 +012001 +102274 057020 +092004 +013002 +034005 +089008 +032002 +090006 +092004 +089003 +031010 +092007 +009001 +093001 +013001 +089017 +092004 +033005 +028001 +090006 +089012 +031010 +034005 +092004 +011002 +092004 +012001 +033015 +092004 +093001 +090006 +088009 +090001 +092003 +059003 +092004 +011002 +089008 +092004 +089003 +031010 +088009 +089020 +092004 +031009 +093001 +102320 059001 +089003 +042002 +033005 +013001 +037001 +033055 +013001 +089007 +033005 +090006 +033055 +059003 +092006 +069002 +068002 +059003 +092004 +033005 +083003 +092004 +033005 +092004 +033005 +092004 +042002 +092004 +102348 090006 +089012 +033005 +092004 +034005 +090005 +092004 +012001 +028004 +089007 +092004 +034005 +089012 +031010 +023007 +089023 +092004 +033005 +069002 +013001 +089003 +031010 +089023 +092004 +042002 +092004 +023007 +089012 +092004 +093001 +092002 +037010 +089021 +092004 +033055 +092004 +033005 +013002 +090009 +092002 +033055 +089007 +033005 +033055 +059003 +092004 +020004 +102396 003002 +089009 +090009 +092004 +011002 +092004 +088009 +092004 +093001 +015001 +090001 +093001 +093001 +089009 +092004 +033025 +092004 +012001 +057009 +089012 +092004 +031010 +011002 +089005 +009001 +033006 +064 089011 +009001 +076 +034005 +092004 +076 +089024 +059008 +102431 033006 +092004 +033025 +092004 +093001 +089017 +092004 +010002 +092004 +069002 +033006 +089017 +092004 +010002 +064 +090006 +059001 +089023 +064 +090006 +060002 +089017 +092004 +010002 +092003 +092006 +013001 +093001 +102460 092007 +033010 +034005 +076 +090001 +092004 +012001 +092004 +067002 +060002 +089017 +060002 +067009 +013003 +033005 +069002 +076 +089008 +092004 +076 +092004 +033025 +089007 +089010 +089012 +033005 +092004 +057009 +067006 +089012 +033025 +089023 +092004 +093001 +090002 +033025 +057008 +092004 +012001 +089008 +092004 +092004 +033005 +092004 +036003 +089009 +059008 +067006 +102510 092004 +010002 +092006 +033025 +033032 +090001 +012001 +090001 +009001 +031003 +102521 092004 +031003 +063001 +069002 +013001 +089023 +092004 +012001 +063001 +013001 +089008 +092004 +033005 +090008 +092004 +033025 +092004 +012001 +069002 +013004 +089007 +089010 +102544 033033 +092004 +074 +023007 +071003 +070 +089012 +033033 +013001 +092004 +034005 +089023 +013004 +092004 +033005 +092004 +059003 +037001 +088015 +089009 +092004 +033025 +089012 +031010 +093001 +093001 +102571 092004 +031010 +089023 +067002 +092004 +102577 092004 +031010 +037001 +033005 +037009 +013004 +067006 +092004 +067002 +028003 +031010 +089008 +092004 +033005 +036001 +092002 +013001 +067006 089009 +093001 +089009 +089012 +031010 +034005 +089023 +102602 092004 +031010 +067006 +037001 +036001 +013001 +089007 +059003 +009001 +012001 +013001 +089012 +092004 +031010 +089004 +093001 +093001 +089007 +059001 +090006 +093001 +053005 +093001 +049 +069002 +013003 +093001 +069003 +011002 +069002 +013003 +087005 +069003 +087005 +069002 +013003 +079022 +102640 079022 +089007 +059003 +092003 +063001 +013001 +089020 +093001 +093001 +102650 089007 +092003 +093001 +089008 +092004 +093001 +010002 +013001 +089005 +033025 +057009 +102662 033010 +067007 +067007 +067005 +092004 +057009 +009004 +013001 +092004 +058006 +087005 +057001 +059003 +013001 +089023 +037001 +036001 +089017 +046 +013001 +067006 +092004 +067001 +092004 +010002 +102688 089017 +092002 +067007 +013001 +009004 +037001 +092004 +058003 +092004 +041003 +102699 037001 +089023 +102703 092004 +067003 +092004 +067001 +015004 +092004 +012001 +092004 +012001 +092004 +013003 +089003 +009003 +013003 +037001 +033005 +089009 +092004 +037001 +033005 +037010 +089009 +092004 +035007 +057009 +089017 +089007 +013001 +058004 +015004 +092004 +012001 +092004 +012001 +092004 +012001 +092004 +084002 +092004 +026 +092002 +033006 +012001 +092004 +012001 +089008 +013001 +067006 +087005 +089023 +010002 +102755 089007 +010002 +089017 +057009 +090001 +012001 +089023 +089023 +067002 +069002 +028001 +012001 +037001 +092004 +058001 +069002 +013001 +012001 +089023 +067002 +027001 +012001 +102778 089023 +031004 +090001 +012001 +092004 +031008 +067002 +084002 +092004 +074 +089017 +065001 +058003 +092006 +067002 +067002 +102795 025001 +041002 +067009 +089017 +067009 +089017 +067005 +089017 +067009 +025022 +092003 +089009 +089009 +089008 +042004 +090009 +092003 +013002 +064 +092001 +089007 +089017 092001 +064 +092003 +011002 +033012 +092003 +092004 +092001 +088016 +089017 +028001 +090006 +102829 074 +092004 +008001 +033015 +092003 +092004 +060003 +091002 +069002 +092004 +027004 +092003 +089004 +092004 +008001 +092001 +088025 +069003 +034003 +089023 +064 +012001 +012001 +034007 +092001 +064 +093001 +093001 +089008 +092006 +092004 +025011 +092003 +102863 033020 +092003 +090006 +089010 +071001 +092004 +008002 +092003 +019004 +057008 +092001 +089008 +039001 +092003 +013002 +033018 +092003 +025003 +092003 +069002 +088001 +089023 +034003 +092003 +025001 +089009 +092004 +025003 +102892 088001 +025003 +089004 +088001 +067005 +102898 069002 +102900 067007 +092004 +085001 +092001 +083003 +092003 +009005 +092001 +092006 +067002 +024006 +067006 +102913 058001 +093001 +089020 +092003 +102918 025001 +085001 +083003 +092003 +067002 +102924 058006 +092004 +014009 +092001 +089007 +032001 +089004 +092003 +033006 +092001 +092004 +037001 +033005 +013001 +025001 +092004 +033005 +069004 +032001 +102944 033005 +090006 +093001 +057001 +060002 +010002 +060002 +089003 +092004 +087005 +089017 +060002 +089003 +092004 +087005 +091001 +089023 +092004 +089003 +092004 +087005 +089005 +058001 +023003 +089023 +092004 +089003 +092004 +087005 +089012 +102975 033025 +102978 033003 +102980 092007 +013001 +060002 +034005 +089023 +060002 +090003 +001007 +093002 +089009 +037001 +013004 +102994 093001 +102996 092004 +093001 +093002 +001007 +058010 +083003 +092004 +093002 +089017 +058010 +092004 +067002 +093002 +103010 037001 +089020 +092004 +058004 +092004 +089023 +092004 +083009 +093002 +037010 +013001 +103022 013001 +058010 +092002 +103026 033005 +025011 +023003 +092004 +069002 +023003 +033006 068007 +089017 +033006 +092004 +069002 +023003 +089007 +059001 +092004 +010002 +092004 +035008 +078002 +064 +092004 +103048 092004 +010004 +103051 011002 +092003 +089005 +093001 +033025 +058004 +013001 +091002 +064 +067002 +092004 +089005 +058001 +023003 +039009 +092004 +089005 +012001 +061 +089017 +067002 +091001 +092004 +033006 +092004 +033005 +015004 +092004 +087005 +089017 +092004 +010002 +092004 +089007 +069002 +069002 +057009 +092004 +010002 +092004 +087005 +089020 +092004 +010002 +092004 +087005 +089008 +011002 +013001 +069002 +087005 +058004 +089023 +092004 +087005 +092004 +037010 +092002 +093001 +037010 +089008 +013001 +089017 +069002 +067002 +006002 +037001 +037001 +091003 +092001 +093001 +033006 +092003 +090006 +089010 +053006 +093001 +092003 +092004 +035001 +089017 +033016 +067002 +059003 +009002 +053006 +090006 +071004 +013001 +063001 +092004 +033005 +042002 +037010 +089021 +093001 +092004 +089012 +033005 +034005 +092004 +088009 +034002 090013 +103155 092002 +012001 +089012 +031010 +025004 +034005 +025004 +103163 089020 +093001 +093001 +069003 +053006 +069003 +011002 +092004 +074 +089023 +031010 +089012 +025003 +042001 +041001 +072002 +092004 +013004 +092003 +072001 +069002 +033028 +092004 +033028 +069002 +090003 +092004 +033029 +092003 +059002 +005001 +063001 +092004 +063003 +005001 +092001 +031009 +090006 +092003 +089020 +012001 +090006 +092004 +058006 +031001 +103209 092004 +025021 +092003 +090013 +092004 +056005 +071001 +092004 +013001 +103219 011002 +089010 +092001 +053006 +067006 +033019 +092004 +067006 +039009 +089008 +076 +092004 +025016 +092004 +006006 +071004 +103236 019002 +092004 +039007 +092003 +089007 +092003 +089009 +037010 +033029 +011002 +103247 069002 +092004 +037010 +089009 +022007 +092004 +026 +089023 +089012 +092004 +025003 +035002 +092005 +089007 +092004 +059003 +033005 +033010 +090002 +060002 +033006 +090002 +092004 +025003 +092004 +011003 +092003 +064 +092003 +089023 +089010 +092005 +020002 +089017 +020003 +027006 +089009 +090001 +092005 +020003 +089023 +033006 +012001 +041001 +103292 025002 +026 +069002 +069002 +013004 +089007 +092004 +026 +025002 +090008 +092004 +012001 +089017 +092004 +012001 +090008 +092004 +026 +103311 092007 +092005 +039001 +089008 +069002 +071001 +092006 +025001 +092007 +090011 +089023 +089010 +012001 +036001 +069002 +013001 +037001 +033005 +103330 028004 +013001 +092004 +042002 +092004 +026 +103337 013001 +088036 +088034 +088036 +053007 +053010 +039001 +039005 +088022 +088024 +088023 +039002 +063006 +088022 +088037 +088037 +089017 +092004 +064 +092007 +092006 +033047 +092003 +064 +033047 +090006 +092004 +092004 +092007 +042002 +037004 +012001 +069002 +057009 +089023 +092004 +042002 +092004 +012001 +013001 +025003 +025011 +025021 +025015 +088009 +057008 088001 +031009 +088008 +088011 +090008 +092004 +092007 +069002 +013003 +033033 +103393 092004 +092004 +093001 +093001 +092004 +026 +020004 +089018 +092004 +025002 +089017 +092004 +025002 +089010 +023007 +012001 +012001 +089017 +041001 +069002 +013002 +088027 +092005 +088024 +092005 +088022 +011002 +089010 +103422 027003 +009001 +013001 +092004 +088038 +092003 +092004 +012001 +075 +092004 +092007 +089014 +030001 +088008 +027006 +092003 +089009 +089017 +092003 +088038 +092005 +092004 +022001 +025015 +103447 061 +036003 +092004 +033033 +092004 +093001 +089007 +089010 +031005 +092004 +013001 +092004 +092004 +013001 +031002 +092004 +089023 +092004 +042002 +092004 +027004 +059003 +103470 067002 +090006 +092004 +058007 +092004 +025019 +090013 +089017 +069002 +090006 +092004 +058006 +089007 +059003 +092004 +057001 +015024 +025015 +103489 057008 +092004 +033017 +092004 +033019 +092004 +033017 +089004 +059003 +088001 +069002 +031008 +012001 +069002 +033044 +089007 +071001 +092006 +043 +009001 +092007 +089017 +043 +091005 +092004 +043 +090009 +092004 +026 +092004 +090003 +092004 +026 +043 +088035 +089023 +092004 +043 +090006 +092004 +012001 +090003 +092004 +012001 +043 +023007 +067005 +103537 092004 +088001 +042002 +069002 +025024 +089007 +067001 +057001 +043 +069002 +025024 +089008 +089008 +067007 +022007 +103553 013001 +092004 +088001 +090013 +059003 +089017 +078001 +090013 +092004 +010001 +092004 +031010 +024001 +079028 +033005 +092003 +033005 +092004 +092001 +008002 +059001 +025001 +088029 +089004 +026 +092007 +037002 +092003 +053006 +103584 092004 +006006 +092004 +093001 +103589 039009 +103591 069003 +092004 +053006 +092008 +033005 +036003 +091001 +025001 +092003 +053006 +089009 +089004 +092004 +092003 +008002 +033039 +089023 +092001 +069002 +041001 +033039 +089023 +103614 089004 +092004 +006006 +092004 +012001 +092002 +093001 +093001 +090001 +092006 +092001 +041003 +020004 +089017 092001 +041003 +089007 +092004 +013001 +069003 +053006 +069003 +011002 +089023 +058011 +042003 +089017 +059001 +092004 +033033 +092007 +041001 +022007 025021 +089017 +088010 +090013 +092004 +103651 090013 +092004 +093001 +092004 +012001 +092004 +063005 +022001 +092001 +092004 +090014 +089007 +092001 +092004 +008002 033056 +092004 +093001 +083008 +092004 +008001 +092001 +090013 +092004 +088009 +092004 +012001 +092002 +093001 +093001 +090013 +092004 +026 +092003 +011002 +072001 +093001 +053009 +093001 +093001 +089012 +030004 +012001 +092004 +011002 +092004 +085001 +083003 +093002 +089017 +031009 +089020 +093001 +093001 +092003 +025008 +089017 +022007 +090003 +012001 +012001 +092002 +089017 +012001 +093001 +093001 +033037 +092004 +012001 +089017 +012001 +092004 +012001 +092002 +093001 +093001 +092004 +088009 +092002 +089004 +058004 +088009 +012001 026 +083003 +092004 +001002 +089020 +093001 +089007 +030006 +092002 +089020 +092004 +067002 +042003 +001001 +013001 +092002 +053006 088003 +089017 +088003 +090005 +092004 +089014 +025003 +030005 +092002 +013002 +035007 +090001 +093001 +093001 +090013 +092008 +089005 +092004 +025008 +092004 +030004 +092004 +089009 +033037 +087003 +092004 +088009 +092004 +092006 +088009 +092002 +089020 +092004 +025003 +089020 +092006 +090013 +092004 +037010 +089012 +092004 +023007 +092004 +092004 +040002 +092004 +088038 +089005 +092004 +078001 +092004 +088009 +092004 +092006 +059006 +090013 +092002 +089014 +059003 +032004 +089017 +032004 +028002 +092002 +092004 +028005 +092004 +030004 +092004 +089005 +092004 +025008 +092004 +092006 +030004 +089012 +092004 +089009 +030004 +092004 +067003 +092004 +067008 +063002 +092004 +059003 +103835 092004 +093001 +092004 +083005 +092004 +001002 +089017 +092004 +083008 +092004 +001006 +103847 092004 +089020 +092006 +089017 +030006 +030005 +089005 +030004 +092004 +092004 +059003 +042001 +089005 +092004 +030004 +092004 +030004 +092004 +089009 +092004 +013002 +103869 033037 +087003 +092004 +092002 +092004 +025004 +090006 +092004 +093001 +089020 +092006 +089017 +092003 +031007 +092004 +033006 033019 +092004 +072001 +092004 +033015 +092004 +021006 +092003 +089020 +092006 +089017 +031010 +033056 +092004 +012001 +092004 +033025 +092004 +088003 +103904 013001 +057012 +092004 +057009 +092002 +067006 +037010 +092004 +057007 +089009 +033037 +092004 +087003 +092004 +103920 089017 092001 +033015 +092004 +103925 031010 +090006 +092004 +012001 +093001 +089017 +092004 +025003 +092004 +090009 +059003 +092004 +011002 +069002 +068004 +033036 +090006 +092003 +029004 +090011 +067007 +092004 +033013 +092001 +090006 +092004 +012001 +092004 +012001 +092002 +093001 +093001 +092004 +012001 +092004 +087003 +057008 +092003 +012001 030001 +032004 +089017 +028003 +089008 +028001 +092004 +014006 +092004 +032004 +092004 +026 +092003 +089008 +092004 +032001 +092003 +092004 +013001 +092004 +025004 +092004 +033029 +092004 +092004 +092004 +078001 +092004 +087003 +092004 +057009 +092004 +083003 089004 +092004 +011002 +089017 +092004 +092004 +078002 +078001 +092004 +076 +092004 +090009 +092002 +092004 +031010 +089005 +092004 +042001 +092004 +076 +092004 +079013 +092004 +092006 +104020 090013 +092004 +093001 +023007 +092004 +089021 +023007 +089015 +017002 087003 +083005 +082002 +092004 +083003 +092004 +001002 +087003 +059003 +012002 037004 +089017 +012002 037003 +089017 +012002 076 +089017 +012002 037004 +089017 +059003 +033009 +033009 +069002 +104050 067007 +092004 +067008 +092007 +089023 +089017 +067007 +092004 +067002 +089017 +059003 +037001 +037001 +092004 +037001 +092004 +089017 +092004 +037005 +087003 +087003 +059003 +092004 +011002 +104075 013001 +092004 +011002 +092004 +092004 +059003 +092004 +092004 +059003 +089004 +059003 +059003 +104088 092003 +013001 +074 +092004 +088038 +089017 +092004 +088038 +092003 +089004 +092006 +067002 +041001 +089005 +092004 +012002 +092004 +012002 +104107 089005 +092004 +012002 +092004 +012002 +092004 +001002 012002 +092004 +012001 +092004 +067002 +042001 +090013 +092004 +058004 +092004 +031010 036003 +083003 +092006 +089017 +092002 +059003 +041001 +067002 +089004 +092004 +025002 +092004 +026 +092002 +042002 +092004 +025001 +092004 +026 +089017 +092004 +026 +089017 +013001 +058004 +038001 +058001 +064 +089017 +092004 +063005 +089023 +092004 +012001 +059006 +013001 +089004 +088010 +089007 +092004 +078001 +025003 +092004 +092006 +025003 +092002 +104170 013001 +092002 +074 +092004 +088038 +023007 +092004 +093001 +088009 +104180 021006 +104182 023007 +089015 +017002 +083003 +092004 +001002 +089020 +093001 +093001 +089009 +028003 +067007 +092004 +067008 +092004 +015006 +092004 +078002 +078001 +092004 +088009 +092004 +089004 +088009 +090013 +092002 +089020 +093001 +093001 +089007 +092004 +088009 +104215 021006 +089012 +031010 +104219 092007 +069002 +090003 +092003 +012001 +092004 +057008 +069002 +089007 +042002 +104231 092004 +033039 +089007 +013001 +092004 +042003 +042003 +090001 +093001 +093001 +089009 +042002 +088001 +092006 +077 +092004 +012001 +089009 +089014 +092004 +041001 +089008 +029002 +090006 +067002 +092003 +092004 +011002 +089004 +010001 +092004 +033009 +011002 +090001 +092004 +033009 +053006 +089004 +008002 +042003 +090006 +013001 +092004 +067005 +092007 +089021 +093001 +011003 +092004 +011003 +092004 +093001 +089017 +011003 +092004 +034005 +092004 +033025 +025004 +069002 +090013 +089017 +012001 +083003 +092004 +041003 +089023 +091001 +089020 +093001 +093001 +092003 +092004 +067002 +013001 +083005 +085001 +083005 +089012 +092004 +023007 +092004 +093001 +104315 092004 +013001 +092004 +022007 +092002 +092004 +013001 +092004 +059003 +063001 +104326 092004 +007006 +092004 +034003 +092004 +039001 +020003 +089012 +092004 +008001 +092004 +092004 +033005 +092004 +033032 +089025 +033032 +076 +089009 +092004 +060002 +042003 +089020 +092008 +013002 +063001 +058011 +009001 +013001 +022007 +089017 +040001 +092004 +059003 +089020 +063001 +011002 +092004 +012001 +089012 +092004 +006006 +013001 +092004 +039001 +089012 +092004 +089017 +015006 +033015 +022007 +092003 +092004 +083005 +089017 +022007 +092004 +083005 +091005 +089012 +092004 +074 +092004 +033006 +092004 +059003 +089020 +060002 +012001 +084002 +092004 +012001 +089008 +089008 +067006 +013001 +011003 +089017 +011003 +089023 +013001 +011003 +092004 +011002 +089017 +010001 +092004 +012001 +045 +083008 +092004 +007003 +092004 +053009 +089017 +053009 +013001 +007003 +092008 +093001 +093001 +089020 +092006 +059003 +007001 +062001 +059007 +013002 +007002 +053006 +089020 +012001 +089020 +092006 +089017 +092003 +045 +013002 +085005 +092004 +012001 +089012 +012001 +092007 +089009 +092001 +093001 +092004 +037008 +092004 +093001 +093001 +090009 +092003 +092004 +011002 +089010 +091002 +033015 +092004 +030004 +092004 +057008 +092004 +012001 +092004 +104473 092001 +090009 +092003 +091005 +104478 028003 +028002 +092001 +092004 +028005 +064 +033005 +067005 +067005 +090006 +092006 +074 +033005 +032001 +092004 +032001 +092001 +089004 +092004 +028005 +092004 +093001 +092006 +058006 +067008 +069002 +028002 +092004 +009001 +092004 +009001 +064 +067002 +028003 +092004 +053006 +053009 +092004 +089017 +053009 +090001 +012001 +013001 +092004 +011002 +057009 +089017 +011001 +089017 +057001 +092004 +033025 +089020 +093001 +093001 +089012 +092004 +033015 +092006 +035002 +013002 +089005 +092004 +057008 +092004 +088009 +092004 +012001 +092004 +104548 092001 +104550 092004 +042001 +092004 +076 +092004 +092001 +092004 +087004 +059003 +011002 +104561 092004 +057008 +092007 +092004 +011002 +033015 +092004 +032003 +078001 +092004 +093001 +104573 028003 +092004 +092004 +030004 +092004 +028005 +092004 +028005 +067006 +092004 +067006 +083003 +092004 +012001 +092004 +092004 +059003 +042003 +089009 +028002 +067002 +092004 +012002 +089017 +092004 +012002 +083003 +092004 +001002 +090001 +092004 +011002 +092004 +058006 +032004 +092004 +012001 +089005 +030004 +092004 +067008 +092006 +090011 +090001 +092004 +093001 +093001 +092004 +012001 +092002 +089020 +092006 +090013 +092004 +025014 +089017 +033006 +089014 +031009 +089012 +092004 +031009 +092004 +089008 +033012 +069002 +025024 +089007 +092004 +022001 +092001 +090009 +092003 +104647 013001 +025019 +092003 +092007 +089009 +053007 +092004 +053007 +092001 +084002 +092004 +012001 +089003 +092006 +059003 +011003 +083003 +001002 +089017 +083008 +001006 +033009 +089009 090006 +090012 +092003 +089005 +092004 +078001 +092004 +087003 +092004 +076 +076 +090001 +092004 +012001 +092004 +083003 +092004 +026 +026 +085005 +092004 +093001 +089012 +092004 +031009 +083003 +092004 +026 +092003 +089004 +025003 +074 +089017 +031009 +089009 090006 +074 +032002 +089020 +059003 +092004 +011002 +092004 +092004 +081004 +089017 +081003 +089017 +081002 +089017 +081002 +089017 +027001 +092004 +078002 +092004 +028002 +025003 +092004 +093001 +089009 090006 +059004 +078005 +063001 +092004 +059003 +092004 +012001 +104737 092004 +074 +042002 +078002 +078002 +059003 +092006 +033012 +089024 +031001 +089005 +092004 +076 +092004 +042001 +083003 +092002 +092004 +092004 +033037 +089012 +092004 +011002 +089017 +089012 +093001 +093001 +067005 +059003 +092004 +067008 +092004 +067005 +092004 +067005 +072001 +089008 +033012 +092003 +092001 +092004 +037008 +089020 +012001 +066 +041001 +092004 +033029 +092006 +033029 +089013 +078004 +088007 +089017 +088008 +089022 +025015 +025015 +092005 +089014 +025003 +068006 +013001 +092004 +063001 +092004 +012001 026 +089012 +092004 +063002 +092004 +025021 +063001 +011002 +089017 +060002 +012001 +064 +104816 033029 +089008 +060002 +025004 +092004 +033029 +092003 +060002 +012001 +060002 +031010 +060002 +053005 +060002 +012001 +089017 +012001 +059003 +092004 +037001 +059003 +089017 +084003 +059003 +089017 +089020 +059003 +104844 092004 +059003 +092002 +104848 092004 +088009 +089005 +092004 +081001 +092004 +057008 +092004 +093001 +089008 +033006 +015010 +084002 +001002 +055005 +055005 +104865 057008 +092004 +009001 +104869 092004 +015010 +092004 +013001 +089023 +104875 090006 +089017 +015011 +084002 +092004 +083009 +001011 +092004 +001006 +092004 +015011 +092008 +013001 +089017 +092004 +015010 +083009 087003 +059003 +092004 +001002 +089009 +059004 +092004 +059003 +104900 092004 +037005 +089017 +092004 +053009 +089017 +092004 +053009 +089017 +092004 +053009 +089017 +092004 +053009 +089017 +033017 +089009 +092004 +075 +092004 +011002 +089009 +042004 +035002 +089009 +042003 +092004 +011002 +092004 +093001 +067006 +013001 +092004 +059003 +078005 +092004 +063001 +092004 +031010 +089017 +092004 +028001 +092004 +012001 +092004 +012001 +078005 +009001 +088013 +078005 +081001 +067008 +092004 +059003 +092004 +093001 +089009 +067006 +013001 +009004 +016 +089017 +015024 +059003 +014002 +092004 +033017 +089012 +092004 +088021 +092004 +009001 +089012 +088035 +089009 +092004 +088021 +092004 +031002 +089023 +033018 +089014 +025003 +059007 +092004 +059003 +090006 +092004 +092006 +013001 +092004 +087003 +093001 +090003 +092006 +063001 +092004 +011002 +062001 +089017 +063002 +089012 +059003 +008002 +092004 +035003 +089005 +042001 +089014 +081001 +092004 +059003 +063004 +092004 +023011 +092004 +011002 +042003 +089009 +042003 +092004 +089004 +025003 +089008 +092007 +033006 +105027 033031 +089020 +012001 +067006 +092003 +041001 +064 +089017 +092004 +011002 +041001 +013001 +065004 +092004 +030001 +092004 +032005 +105045 092004 +026 +011003 +092004 +023007 +092004 +012001 +089007 +092004 +028001 +092004 +013003 +083003 +092004 +089007 +092004 +027005 +092004 +026 +092004 +105066 025018 +092004 +057008 +092004 +088036 +089008 +041001 +088034 +058004 +089013 +025002 +089023 +092003 +069002 +061 +027001 +092004 +093001 +089010 +091002 +092004 +031007 +089017 +089020 +092004 +033017 +064 +085001 +072001 +089020 +092004 +093001 +068004 +092003 +089004 +092004 +067002 +041001 +092004 +041003 +041003 +092004 +088035 +105110 092004 +025002 +092004 +031002 +089017 +058011 +092004 +030001 +092004 +026 +092003 +089017 +049 +092004 +058011 +009001 +092004 +089005 +012001 +042003 +013001 +088002 +089017 +088003 +092004 +072001 +089008 +068004 +092004 +033018 +033006 +072001 +059003 +090013 +092004 +011003 +092004 +089007 +013001 +092005 +063004 +088024 +091002 +069002 +088038 +092004 +001004 +069002 +015011 +067002 +088024 +092003 +069003 +013004 +071001 +092004 +012001 +092004 +057021 +067006 +057021 +089023 +089023 +042004 +042004 +092004 +057001 +008002 +092004 +088001 +089009 +074 +057008 +092004 +057005 +105186 059003 +033006 +020002 +090003 +092004 +033006 +092003 +069002 +015004 +089023 +089010 +092004 +065003 +089009 +042003 +092004 +057005 +089009 +105205 088009 +092004 +024002 +089017 +069002 +025023 +092004 +012001 +092004 +088003 +092004 +012001 +090001 +092006 +033056 +067006 + +037010 +059003 +088026 +089017 +088024 +089017 +088024 +089017 +033006 +089017 +033042 +090014 +105235 092003 +089018 +059003 +088026 +089017 +013001 +090013 +092005 +088009 +025003 +040002 +092005 +064 +089017 +092004 +012001 +089020 +093001 +040002 +092003 +089008 +013001 +041004 +092004 +012001 +064 +009005 +025003 +105264 041001 +089014 +025003 +064 +089017 +092004 +093001 +025003 +105274 037007 +092004 +090009 +092002 +053002 +105280 053002 +092004 +012001 +105284 079009 +079009 +105287 088036 +089017 +088034 +059003 +089024 +025002 +069003 +033006 +083003 +092003 +064 +066 +011002 +089017 +088020 +089017 +033040 +089024 +033004 +092006 +069002 +066 +089023 +089023 +033036 +105313 092007 +028001 +032002 +090006 +059003 +088036 +089024 +053004 +089024 +025002 +089019 +089019 +053007 +069002 +057001 +057009 +089004 +092004 +037004 +092004 +093001 +089017 +012001 +092004 +092003 +031002 +072001 +033006 +089007 +089007 +092007 +015006 +092004 +038001 +092004 +012001 +090013 +092004 +058004 +092004 +036003 +089008 +069002 +013001 +057001 +092004 +089007 +013001 +067001 +088015 +089023 +067002 +014006 +089020 +012001 +064 +011002 +011002 +041001 +089007 +092004 +042002 +092004 +014006 +089025 +059003 +088001 +089017 +088002 +089017 +072001 +027004 +092004 +013001 +025008 +092004 +012001 +105391 069002 +034001 +092004 +042002 +092004 +065004 +092004 +088015 +089023 +089023 +105402 033046 +089007 +092004 +028005 +013004 +090001 +092004 +088020 +013001 +105412 033006 +089023 +092004 +059003 +033046 +090001 +092004 +014006 +028003 +089007 +059003 +092004 +028003 +014006 +013001 +089008 +033006 +023007 +092004 +023007 +105433 023007 +089021 +092004 +023007 +105438 014006 +092003 +092004 +093001 +089008 +027006 +072002 +092004 +041001 +069002 +064 +032005 +089023 +064 +032004 +065005 068006 +092004 +022007 +089007 +092004 +067008 +088015 +013001 +105463 069002 +013001 +032005 +089023 +032001 +092004 +092004 +030004 +092004 +012001 +105474 069002 +088037 +006019 +089012 +092006 +013004 +088012 +089023 +059004 +089004 +012001 +033006 +092004 +033007 +089017 +033007 +089017 +033007 +012001 026 +033007 +089017 +033007 +092004 +026 +092003 +092004 +012001 +033036 +067005 +089007 +059003 +090006 +033009 +092004 +012001 +092002 +093001 +093001 +092004 +012001 +105515 012001 +036003 +092005 +089007 089014 +053007 +093001 +092004 +010004 +092004 +057001 +010004 +064 +092004 +012001 +089007 +010004 +013001 +087003 +092004 +010004 +064 +089017 +092004 +093001 +087003 +092004 +011002 +092008 +021005 +092004 +011002 +091001 +064 +092004 +011002 +037001 +092004 +093001 +105554 089017 +092004 +010004 +092004 +010004 +089004 +059003 +092004 +010004 +025003 +092004 +010004 +064 +089017 +092004 +093001 +025003 +092004 +011002 +105574 092004 +037007 +090009 +092004 +089009 +092004 +053006 088003 +079010 +092004 +053005 +092004 +002004 +089012 +033006 +089009 +013003 +092004 +092004 +092004 +011002 +079005 +069002 +090013 +079011 +089024 +008002 +089024 +092004 +092004 +092007 +089023 +089009 +013001 +088003 +089017 +088003 +105611 071004 +089017 +092004 +010004 +025003 +092004 +092004 +010004 +064 +092004 +092004 +008001 +092004 +025003 +092004 +092004 +010004 +092004 +025003 +089007 +092004 +067001 +092004 +092004 +008001 +088026 +089023 +023001 +089017 +035004 +092004 +064 +089017 +092004 +093001 +092004 +011002 +089007 +058010 +063004 +092004 +011002 +092004 +089007 +092007 +034004 +009002 +092004 +010002 +089017 +092004 +010002 +089015 +034002 +090013 +092004 +010004 +092004 +089015 +013002 +092004 +060002 +105674 008001 +063001 +092004 +028005 +092007 +078001 +013001 +105682 092001 +033010 +090006 +093001 +089017 +090006 +092004 +011002 +089023 +089017 +092003 +092004 +105696 059003 +092004 +092004 +010004 +105701 025003 +064 +092004 +089017 +092004 +010004 +090006 +087002 +092004 +010004 +092004 +010002 +036003 +092004 +010002 +092003 +089020 +012001 +089007 +092007 +013001 +088002 +087002 +092004 +010002 +092003 +089017 +092004 +010002 +105731 013001 +033032 +060003 +089013 +033025 +089009 +065003 +092003 +013001 +089017 +085001 +067005 +083008 +092004 +001006 +089017 +092004 +010002 +069002 +088024 +092004 +010002 +092003 +089023 +035006 +092004 +089012 +036002 +089017 +033017 +012001 +092004 +087005 +036003 +092004 +089004 +009001 +057001 +089022 +025022 +089017 +016 +089014 +088005 +092004 +026 +092003 +064 +092004 +093001 +069002 +089005 +035002 +064 +025008 +089023 +064 +087005 +093001 +090011 +092004 +025001 +092004 +012001 +090003 +026 +089022 +025006 +035002 +064 +092004 +012001 +105804 069002 +009001 +028001 +090006 +071001 +059003 +105811 088001 +042002 +092007 +057009 +090003 +012001 +089010 +087005 +089010 +087005 +089017 +092004 +057001 +092004 +058005 +042002 +090013 +092004 +068004 +092004 +033026 +028001 +090006 +089017 +092004 +089017 +092003 +092004 +012001 +085001 +083003 +001002 +089017 +088030 +069002 +013003 +090003 +092004 +092004 +061 +074 +089012 089020 +012001 +089017 +089012 +092004 +076 +092004 +079013 +092004 +049 +092004 +006007 +092004 +012001 +089009 +092004 +074 +092003 +013001 +090008 +092004 +088021 +092004 +012001 +089007 +013003 +092002 +092004 +039005 +069002 +090008 +009001 +105885 009001 +089023 +090008 +092004 +012002 +090008 +092004 +012002 +090008 +092004 +012002 037004 +092004 +088015 +092007 +090008 +092004 +012002 +092004 +088015 +105905 092004 +001002 +105909 015024 +092004 +006007 +092004 +012001 +089009 +074 +039003 +067007 +092004 +067008 +092004 +088015 +089017 +059003 +042002 +013001 +105927 013001 +077 +092004 +077 +092003 +090002 +072001 +089017 +049 +092004 +006007 +092004 +088002 +089017 +049 +092004 +008002 +089025 +077 +092004 +033015 +092004 +025021 +089013 +059003 +015024 +092004 +006007 +092004 +031010 +090002 +092006 +074 +059003 +092004 +006007 +092004 +012001 +092004 +014008 +014008 +089017 +018001 +092004 +006007 +092004 +021006 +089017 +092004 +006007 +092004 +012001 +092006 +013001 +033006 +012001 +089012 +059003 +033013 +089017 +033012 +033013 +067002 +059003 +067001 +089020 +012001 +089017 +090006 +058005 +027006 +089014 +078004 +068006 +089017 +033012 +106004 059003 +092004 +011002 +089017 +090009 +092001 +090006 +092001 +106013 033006 +089012 +033004 +092004 +033006 +092001 +089004 +025014 +028002 +092004 +028005 +092004 +033015 +089007 +092006 +037004 +013001 +006004 037008 +089009 +067002 +092004 +033006 +064 +071004 +092001 +033006 +106040 089009 +028001 +089017 +092003 +092004 +089004 +092001 +092004 +090013 +059003 +028002 +092003 +093001 +092004 +025003 +011002 +089017 +031009 +035002 +089020 +012001 +092006 +015004 +084002 +092003 +089009 +058005 +092007 +089009 091005 +027001 +092004 +090006 +092002 +089017 +025013 +092004 +026 +092003 +092004 +011002 +022007 +089017 +025003 +089022 +031010 +090003 +012001 +012001 +089017 +012001 +093001 +093001 +092004 +088009 +090013 +059003 +092004 +025003 +092004 +012001 +092002 +093001 +093001 +089014 +068004 +093001 +089017 +093001 +087005 +093001 +093001 +059003 +092004 +011002 +089020 +093001 +093001 +092004 +085001 +083003 +093002 +089018 +053009 +089017 +053009 +092003 +088009 +089017 +022007 +090003 +012001 +012001 +092002 +089017 +012001 +093001 +093001 +033036 +092004 +012001 +092001 +067002 +059003 +092004 +029002 +092003 +067005 +089004 +059003 +033012 +092001 +090009 +059003 +092003 +089013 +025011 +092004 +033012 +090011 +089007 +092004 +034001 +092003 +090006 +092004 +033015 +067006 +092004 +060003 +067009 +067006 +092004 +067002 +033028 +058005 +092007 +091005 +092004 +068001 +083003 +092003 +042002 +088001 +068003 +067006 + +093001 +093001 +064 +013001 +066 +092001 +092007 +026 +090006 +059003 +092003 +089007 +092004 +106200 092001 +106202 092004 +026 +092003 +089017 +089004 +092004 +037008 +092001 +089017 +089004 +092004 +033049 +089017 +028003 +092004 +033015 +034001 +092001 +092004 +088009 +059003 +092003 +013001 +089007 +033020 +092001 +092004 +012001 +090006 +025002 +059003 +092003 +089014 +025003 +093001 +093001 +089017 +092007 +033013 +090006 +092004 +025003 +092003 +067006 +078002 +089017 +078002 +078002 +089013 +028002 +089017 +058004 +032004 +089009 +092004 +030007 +092003 +092004 +065001 +089009 +013001 +088005 +089017 +088038 +067008 + +093001 +059004 +042002 +088002 +092004 +090001 +093001 +093001 +089008 +033037 +089017 +033037 +012001 +106282 011002 +025001 +028001 +092003 +090006 +092004 +089004 +092001 +089023 +106292 013002 +092004 +033015 +013004 +089008 +092004 +037008 +092001 +028003 +089007 +093001 +013002 +083003 +063001 +092004 +055003 +089017 +092004 +063005 +059003 +089017 +092004 +059001 +092004 +011002 +089020 +012001 +031009 +092004 +037008 +092001 +078002 +025014 +025022 +092004 +033019 +106330 033006 +089023 +092004 +106334 090010 +088022 +089017 +039005 +089023 +092004 +106341 090010 +025001 +092004 +093001 +033019 +089023 +092004 +089007 +025003 +028001 +090006 +089009 +033049 +092004 +033015 +013003 +089023 +092004 +089007 +039001 088023 +092004 +093001 +033015 +069002 +088005 +031005 +022001 +013003 +092004 +037008 +092001 +091001 +092004 +089023 +090006 +059003 +089014 +089010 +088029 +089010 +072001 +093001 +033015 +106385 089004 +092007 +025011 +091001 +089017 +025011 +089007 +028001 +090006 +092007 +092001 +089008 +106398 021005 +089012 +092004 +092003 +033012 +089017 +035003 +092004 +012001 +093001 +093001 +089005 +092004 +025004 +089017 +025004 +092001 +090006 +089004 +092004 +025018 +089023 +089014 +059003 +025014 +064 +067005 +106426 067002 +087002 +093001 +089012 +092004 +008001 +092001 +089010 +089012 +023007 +089010 +089012 +023007 +089007 +092001 +092004 +023007 +093001 +089017 +092004 +023007 +057016 +089023 +089010 +092004 +023007 +013001 +008001 +092007 +092001 +042002 +042004 +106459 092004 +030006 +069002 +028001 +106464 019005 030001 +090003 +092004 +060002 +092004 +025002 +090013 +013002 +092004 +023007 +089017 +089020 +093001 +085001 +089007 +059002 +078002 +065003 +089023 +092004 +068002 +092004 +008001 +071005 +090009 +092003 +106491 092007 +033028 +028001 +090006 +085003 +089017 +085003 +059003 +092003 +089009 +092004 +092003 +013002 +089017 +025011 +092004 +031010 +089009 +092004 +025019 +092003 +059006 +089020 +093001 +093001 +089020 +092001 +089012 +092004 +092001 +085001 +067002 +089020 +092003 +106526 065002 +092004 +033015 +092004 +093001 +041003 +089008 +089010 +015006 +089015 +034006 +092003 +089010 +085001 +033015 +092004 +090006 +092003 +090006 +013001 +013001 +063001 +030001 +063001 +026 +042004 +092004 +031010 +092004 +033015 +089017 +069002 +025022 +089004 +092004 +090001 +092004 +039001 +106565 013001 +092004 +028003 +020003 +089023 +092003 +021006 +106573 092007 +090003 +012001 +089007 +092003 +057008 +092004 +090009 +093001 +069002 +106584 092004 +090006 +092004 +031010 +089023 +089017 +092004 +090009 +092004 +024006 +090013 +092004 +058005 +039005 +064 +024001 +089004 +092001 +089017 +067002 +033015 +089004 +092001 +106608 089010 +092004 +025013 +089020 +093001 +089010 +092004 +025013 +025003 +089010 +092004 +034001 +012001 +089010 +092004 +025003 +089017 +088010 +059003 +092001 +092004 +025011 +090006 +092004 +058005 +026 +092004 +058005 +025003 +090013 +026 +092004 +063001 +026 +092004 +089005 +088023 +069003 +089005 +088027 +089023 +092004 +088007 +092005 +031001 +065001 +092004 +069002 +092004 +092004 +106659 027004 +089023 +089017 +092004 +058006 +059003 +092007 +026 +083003 +092003 +092006 +089017 +083003 +093001 +093001 +092006 +013001 +058001 +012001 +013003 +069002 +057021 +031001 +092004 +013001 +058005 +012001 +089023 +092004 +087004 +058001 +087005 +057007 +013001 +064 +009001 +013002 +089017 +058002 +013001 +064 +009001 +087004 +092004 +013002 +036003 +078005 +023007 +106708 023007 +006006 +089008 +089017 +092004 +012001 +092004 +087002 +089017 +057008 +092004 +092004 +033009 +092004 +087003 +059003 +033009 +089009 +089004 +092004 +033009 +093001 +053007 +059003 +009001 +001002 +089017 +001006 +089017 +001003 +089017 +059003 +009001 +033022 +090006 +012001 +093001 +093001 +089009 +087002 +012001 +012001 +089008 +025003 +092001 +064 +067005 +036003 +067007 +069002 +083003 +092004 +085001 +092001 +106763 089023 +067002 +059002 +078002 +083003 +092004 +085001 +092001 +089013 +025022 +089017 +016 +092004 +092004 +021006 +013001 +089007 +012001 +013001 +092004 +013001 +089020 +092003 +089017 +092004 +025001 +089017 +092004 +042001 +090006 +092004 +025008 +059003 +042002 +089021 +033041 +106800 033051 +089009 +041001 +088038 +089017 +088003 +058004 +012001 +088003 +083003 +011001 +088035 +089017 +088035 +083003 +092006 +014006 +064 +001004 +083003 +009001 +033019 +023007 +031006 +089008 +025019 +092001 +067008 + +093001 +090006 +069002 +089008 +089008 +015030 +069003 +089008 +089008 +042004 +091001 +089010 +106842 053002 +084002 +092004 +053002 +089017 +053001 +092004 +031010 +092003 +025011 +089017 +025011 +059003 +092003 +089017 +092004 +058005 +089017 +092003 +025011 +089017 +025011 +092001 +106866 030003 +089020 +012001 +093001 +093001 +067002 +015004 +092003 +089009 +089017 092001 +025013 +027001 +092004 +090006 +092003 +089007 +092004 +026 +090013 +106886 073 +092004 +090006 +092003 +025021 +106892 092004 +059003 +092004 +092004 +025001 +069002 +092004 +093001 +093001 +089023 +092004 +065001 +092004 +028001 +089007 +064 +010002 +010002 +089020 +092001 +035002 +090006 +092004 +033015 +089008 +089023 +030003 +092007 +015004 +067002 +071001 +027001 +092004 +089004 +092001 +067005 +089023 +031009 +089020 +012001 +090006 +106934 092008 +067002 +015006 +089023 +031001 +071005 +093001 +092004 +011002 +089017 +042004 +089017 +034001 +092001 +089023 +092003 +033015 +089017 +035002 +092004 +057005 +092001 +015004 +084002 +092003 +089007 +025002 +106962 059003 +092003 +089017 +025021 +089007 +033015 +090006 +023009 +106972 023009 +064 +023007 +089023 +092004 +012001 +088010 +092004 +089017 +069002 +092004 +058007 +089023 +089017 +092001 +106989 025023 +089017 +025023 +090013 +089008 +025006 +015004 +092004 +089009 +024001 +092004 +067002 +025011 +089017 092001 +025023 +013001 +089008 +034007 +092004 +089020 +012001 +089013 +078004 +025011 +089017 +092004 +092007 +087002 +031001 +089007 +089007 +092004 +042004 +093001 +078005 +023007 +015005 +021002 +092004 +023007 +089009 +057008 +092004 +092003 +057005 +092004 +090013 +092001 +035002 +011002 +092001 +092004 +061 +025011 +089004 +012001 +092004 +058005 +033005 +092003 +089023 +092001 +069002 +022001 +089023 +092003 +021003 +027006 +092004 +088015 088036 +027006 +092004 +088015 +041001 +027006 +092004 +019002 +107067 058010 +092004 +053006 +092002 +092004 +012001 +012001 +053001 +089017 +033039 +090006 +093001 +093001 +089017 +069002 +090006 +009001 +031009 +089011 +092001 +090013 +031009 +089017 +090006 +009001 +089010 +092004 +058006 +031005 +031009 +090006 +009001 +092001 +078002 +053006 +067009 +089003 +010001 +093001 +010001 +093001 +093001 +089003 +093001 +089004 +033005 +011002 +089004 +025003 +039009 +092004 +011002 +089004 +088002 +092004 +089004 +033005 +013002 +088038 +091001 +092004 +013001 +092001 +057016 +092007 +031001 +090010 +092004 +093001 +057007 +091002 +107142 031001 +059003 +057007 +013001 +089007 +092004 +065001 +092004 +028001 +093001 +093001 +092004 +012001 +092001 +090010 +092006 +092004 +059003 +057007 +107162 031001 +006023 +089009 +093001 +057016 +089017 +013001 +089020 +092004 +090013 +069002 +092001 +034005 +092004 +089012 +033005 +089023 +092004 +089012 +031010 +093001 +092004 +090003 +012001 +034005 +089006 090002 +092004 +031010 +092004 +027001 +092004 +089017 +092004 +076 +092004 +023007 +092004 +089017 +034001 +024006 +092004 +058001 +092004 +023007 +092004 +107208 089009 +013001 +013002 +092004 +023007 +092004 +089021 +023007 +069002 +090006 +067002 +057009 +089024 +067002 +053006 068003 +089023 +015028 +090006 +089017 +057007 +089007 +092006 +089017 +057007 +090001 +093001 +093001 +011002 +092001 +107238 031001 +092001 +057007 +089023 +060002 +091002 +092004 +083006 +029003 +107248 092004 +083006 +013001 016 +083007 089009 +084002 +015028 068006 089009 +084002 +092004 +057008 +092004 +084002 +033029 +092004 +012001 +089020 +093001 +093001 +089008 +059001 +011002 +092007 +026 +089017 +089010 +092004 +058006 +026 +089017 +092007 +092004 +012001 +092003 +028003 +089023 +090006 +092006 +013001 +092004 +058005 +041001 +011002 +041004 +092001 +013002 +089017 +024001 +092004 +061 +041001 +064 +031001 +058009 +092001 +089007 +059001 +041001 +092006 +067001 +033006 +092003 +089017 +067002 +089017 +025012 +033006 +092004 +039001 +092004 +006006 +092004 +093001 +092006 +092004 +089008 +020003 +092006 +092004 +012001 +092004 +025002 +089017 +092004 +025019 +089004 +092004 +025018 +092004 +092004 +092004 +009001 +030001 +107340 092001 +092004 +011003 +089004 +001002 +013003 +090003 +092006 +089017 +025004 +021006 +012001 +093001 +093001 +092006 +058002 +092004 +008001 +092004 +087004 +092002 +058001 +092004 +008001 +092004 +079005 +092004 +089005 +092004 +042001 +092004 +074 +092004 +107374 037001 +092008 +092004 +059003 +089008 +011002 +092001 +025003 +089017 +025003 +025011 +089017 +042002 +092001 +061 +013001 +089020 +012001 +025003 +093001 +033012 +089017 +093001 +033012 +092004 +058005 +026 +089020 +012001 +069001 +033012 +089017 +092003 +073 +042004 +035001 +092004 +107412 089004 +092004 +033015 +042004 +092001 +089020 +089017 +093001 +089017 +092004 +063005 +042004 +092001 +092006 +092004 +033009 +083003 +006010 +023007 +025011 +089020 +012001 +067005 +067002 +033006 +025011 +092004 +088008 +092003 +028001 +059003 +009001 +092004 +012001 +067002 +092004 +025021 +089023 +089004 +059003 +092004 +033013 +089017 +092004 +033012 +089022 +033036 +092004 +033012 +092003 +028002 +090013 +092004 +012001 +107467 092004 +025021 +092004 +012001 +092004 +065001 +078004 +026 +037009 +092004 +026 +092003 +089017 +092004 +026 +092003 +089020 +093001 +093001 +011002 +092004 +061 +059001 +013001 +072001 +059001 +088006 +059001 +088002 +059001 +088003 +059001 +025008 +059001 +033037 +089010 +092004 +088001 +089017 +089010 +092004 +033037 +092007 +030001 +092006 +089017 +027001 +089017 +027001 +089017 +024002 +089017 +024001 +083003 +092001 +092007 +042002 +107525 092004 +012001 +092004 +025021 +085001 +090013 +092003 +107533 025011 +089020 +012001 +078001 +089007 +067002 +067001 +013001 +092004 +090009 +092001 +026 +090009 +092006 +107548 026 +089023 +067001 +069002 +090006 +089004 +057005 +033006 +089007 +092001 +027001 +013001 +092006 +013001 +025007 +013001 +028001 +089017 +087004 +028001 +089017 +057002 +013001 +059003 +089017 +013001 +059003 +027001 +089017 +023001 +089017 +023001 +089017 +057002 +089017 +057005 +059003 +074 +089020 +092004 +074 +092001 +089023 +088001 +042002 +034001 +092001 +092004 +022001 +089017 +093002 +028001 +089017 +092003 +090006 +107604 015004 +084001 +093002 +067007 +067003 +092004 +033015 +092004 +011002 +092001 +057008 +090006 +057020 +057008 +089017 +057009 +089023 +107622 092003 +058007 +089007 +107626 083003 +093002 +089017 +060005 +107631 060005 +090009 +092004 +057005 +092001 +015024 +069002 +090006 +025001 +092004 +057008 +089023 +025001 +092004 +042002 +092004 +059007 +090009 +057020 +092003 +089017 +057009 +059003 +089017 +057002 +035003 +057009 +090003 +093001 +092004 +090003 +092003 +079009 +079009 +053002 +025008 +025008 +092004 +012001 +089017 +092004 +012001 +092001 +035003 +059003 +057005 +092003 +089005 +092004 +057003 +092004 +089014 +087003 +089020 +093001 +093001 +107688 092004 +012001 +089017 +012001 +092002 +092004 +087002 +067005 +092004 +067005 +092004 +067005 +072001 +033003 +059003 +011002 +089020 +093001 +093001 +033003 +092003 +092004 +089020 +092001 +011002 +033003 +092003 +059003 +092004 +011002 +107719 078001 +092004 +063004 +092004 +093001 +010001 +092004 +088009 +092004 +012001 +093001 +093001 +090013 +092004 +026 +092003 +093001 +053009 +093001 +093001 +089012 +030004 +012001 +089017 +093001 +092004 +011002 +092004 +083003 +093002 +011002 +089017 +031009 +011002 +089020 +093001 +092003 +088009 +089017 +025021 +090001 +012001 +012001 +092002 +033036 +092004 +012001 +012001 +092004 +012001 +092002 +093001 +093001 +067005 +107774 092003 +033013 +033015 +092004 +031009 +092003 +089004 +093001 +093001 +089017 +092004 +025003 +092006 +090013 +090013 +059003 +092004 +011002 +089007 +092004 +025004 +092004 +013003 +092003 +083003 +092004 +001002 +092006 +024002 +089012 +092004 +033006 +092004 +072001 +092004 +033015 +092004 +015006 +084002 +092003 +064 +089017 +083003 +063001 +092004 +001006 +107821 013003 +107823 059007 +064 +089017 +083003 +092003 +067006 +092006 +067009 +033015 +089017 +032002 +092004 +088009 +092004 +012001 +070 +070 +064 +027001 +090001 +093001 +092004 +025003 +087005 +092002 +092006 +013001 +031009 +090009 +092003 +035002 +092004 +093001 +092004 +089017 +028003 +092002 +092004 +092003 +025003 +089020 +012001 +107867 089017 +092002 +067006 +092006 +067009 +033015 +069002 +068004 +090009 +092003 +033013 +089017 +033012 +090006 +059004 +092004 +028001 +092004 +030004 +092004 +089012 +059003 +032004 +089017 +032004 +012001 +041001 +065002 +092004 +012001 +090006 +078004 +025008 +089025 +059003 +042002 +088001 +013003 +107906 059007 +092004 +028001 +092004 +012001 +090002 +059003 +076 +074 +089005 +092004 +076 +092004 +087003 +092004 +089009 +059003 +025015 +107925 025015 +089013 +025011 +033036 +092004 +012001 +092004 +075 +092003 +089009 +092004 +063004 +092004 +057008 +092004 +011002 +013001 +092004 +014006 +092006 +021005 +092002 +089021 +092004 +037003 +092004 +088015 +089015 +013002 +084002 +092004 +037004 +092004 +012001 +092004 +025003 +092004 +089020 +092006 +090013 +092004 +037010 +092004 +040002 +092004 +088038 +092006 +013001 +058005 +092004 +012001 +092004 +024001 +010002 013003 087003 +059003 +042003 +089007 +090001 +092004 +042003 +092004 +059003 +083003 +092004 +001002 +089017 +083008 +092004 +001006 +092004 +024001 +089017 +092004 +024001 +089010 +012002 037004 +089010 +012002 037004 +089010 +012002 +089010 +012002 +092004 +059003 +090001 +092004 +089017 +090009 +092004 +042003 +089017 +092004 +013003 +065006 +059003 +089017 +092004 +059003 +090001 +092004 +063002 +089017 +092004 +013001 +092004 +087003 +092004 +011002 +092004 +011002 +092006 +013001 +068001 +010002 087003 +084001 +092004 +023007 +089008 +013001 +092004 +089004 +059003 +087003 +089007 +030006 +089020 +092004 +078004 +092004 +059003 +085005 +089017 +090001 +092004 +040001 +092004 +059003 +090013 +092008 +040001 +089012 +092004 +023007 +092004 +006006 +092004 +090001 +092004 +089010 +092004 +083008 +092004 +001006 +089010 +092004 +083003 +092004 +001002 +089017 +092003 +067001 +108087 011003 +089017 +039001 +092004 +030001 +089007 +092004 +042002 +092004 +088015 +108098 091001 +040001 +089012 +092004 +008001 +092004 +008002 +092004 +089012 +092004 +023007 +013001 +092003 +088003 +089017 +088003 +089017 +033048 +083006 +092004 +089010 +091002 +068002 +092004 +031010 +031009 +108125 031009 +089017 +069002 +013001 +089021 +092004 +025004 +092004 +033015 +092006 +033015 +092004 +033019 +090013 +059003 +042003 +092004 +001006 +092004 +001006 +092006 +035002 +013002 +092001 +093001 +067002 +025011 +090006 +092004 +024006 +090009 +092003 +089017 +059003 +092004 +057005 +092004 +022001 +092004 +093001 +083003 +092004 +008001 +092001 +090009 +092004 +011002 +092004 +092006 +013001 +092004 +011002 +092006 +035002 +013002 +092001 +089005 +092004 +042002 +092004 +012001 +092004 +108188 092001 +090009 +092003 +033015 +092004 +033019 +092004 +012001 +092004 +028005 +092004 +028005 +067006 +092004 +067006 +089017 +089021 +092004 +067008 +108208 067002 +028003 +092004 +011002 +092004 +092006 +030004 +092004 +012001 +028002 +092004 +092004 +078001 +092004 +087003 +092004 +028005 +092007 +090013 +092004 +011002 +108230 013001 +093001 +089020 +092003 +092004 +025004 +092004 +001002 +092006 +092002 +033015 +033046 +059003 +009001 +089017 +033017 +059003 +009001 +089014 +059003 +032004 +089009 +013001 +059003 +009001 +011002 088013 +089020 +093001 +089009 +092006 +089017 +042004 +068006 +089005 +092004 +042001 +092004 +092004 +042001 +083003 +092001 +089014 +076 +108274 025001 +092003 +028001 +078001 +039005 +090013 +090009 +092003 +089017 +092004 +083003 +093002 +089017 +059001 +069002 +024001 +092004 +009001 +092001 +013001 +008001 +089009 +025013 +092004 +026 +092004 +063002 +089012 +025003 +089017 +089009 +059003 +078001 +092004 +031006 +092004 +032004 +089008 +028001 +092004 +028005 +092004 +012001 +093001 +089020 +092006 +013003 +059003 +092004 +065001 +092004 +032004 +089017 +028002 +028005 +092007 +033006 +089009 +092004 +092003 +088021 +089012 +033004 +089007 +089010 +108340 092004 +008001 +085001 +091001 +092004 +026 +089020 +092003 +085001 +025011 +108351 032002 +092003 +092004 +062002 +089017 +092004 +074 +092004 +090006 +093001 +031010 +092003 +089008 +064 089007 +027001 034007 +092004 +093001 +093001 +092004 +012001 +089020 +092004 +041001 +074 +089017 +074 +089020 +092004 +089017 +074 +092004 +031010 +064 +033017 +059006 +089004 +033036 +027006 +089009 +092004 +108392 092004 +037001 +092003 +089012 +092004 +032004 +089017 +089008 +031002 +089005 +092004 +033017 +092004 +009001 +089005 +092004 +058003 +092004 +041003 +089017 +069002 +089005 +093001 +089007 +089020 +092004 +085005 +059003 +092004 +059003 +092004 +012001 +008001 070 +089017 +108427 059003 +089020 +092004 +092006 +013001 +092004 +087003 +059003 +012002 +089017 +012002 +089020 +092006 +089017 +053006 +053006 +042003 +089025 +092004 +049 +092004 +009001 +092004 +026 +089012 +092004 +053006 +092004 +093001 +052 +092004 +089012 +092004 +108461 089020 +092006 +089017 +023007 +089012 +092004 +031009 +092004 +042001 +092004 +012001 +092004 +023007 +092004 +089021 +023007 +089017 +092003 +074 +013001 +092004 +088038 +089017 +092004 +011002 +092004 +026 +092003 +023007 +092003 +089018 +092004 +040002 +092002 +059003 +092004 +088038 +013003 +092004 +090008 +092002 +033005 +092004 +033033 +092006 +013001 +039001 +092002 +089017 +092004 +015024 +084001 +092004 +083003 +018002 +092004 +092004 +006006 +049 +092004 +012002 +089017 +092004 +012002 +025018 +028003 +108528 039012 +092004 +089012 +092004 +089008 +069002 +092004 +092003 +056005 +089004 +005001 +089017 +089004 +023001 +089024 +089004 +063004 +051 +089024 +051 +089024 +067009 +092006 +013001 +058010 +092004 +067006 +089023 +092004 +058010 +092004 +093001 +092004 +092003 +030007 +025010 +089004 +088007 +089017 +053001 +092004 +012001 +092006 +024001 +053001 +089007 +088027 +090001 +092004 +030001 +092004 +026 +092004 +089017 +069002 +013001 +092004 +087003 +090003 +092006 +059003 +092004 +011002 +090002 +092004 +008002 +089017 +018002 +035003 +089017 +063002 +023011 +092004 +023011 +092004 +012001 +089007 +074 +089020 +093001 +089021 +092004 +012002 058003 +092004 +041003 +092004 +064 +041001 +083003 +041003 +036003 +069002 +018001 +069003 +024004 +069003 +024005 +092006 +013002 +059003 +108629 020003 +092004 +042002 +089005 +092004 +033032 +089017 +033017 +092004 +009001 +108641 091002 +090012 +030001 +032004 +089004 +053001 +089017 +088007 +089017 +088011 +008001 +069002 +089008 +065001 +092004 +090008 +025002 +092004 +026 +089008 +089007 +023007 +092004 +093001 +092004 +083009 +025001 +083002 +092004 +093001 +085001 +017002 +108674 082002 +092004 +012001 +092004 +083009 +030001 +069002 +092004 +083008 +092004 +001006 +089007 +074 +089017 +092004 +023007 +092003 +021003 024001 +089020 +092004 +093001 +089020 +092004 +012001 +108699 024001 +092004 +093001 +092004 +023007 +108705 067002 +089017 +092003 +089020 +092004 +024001 +013001 +079005 +089008 +068004 +092004 +008002 +092004 +083008 +092004 +001006 +088036 +088034 +025002 +025002 +088015 +089017 +092004 +025002 +108730 013001 +053007 +089007 +092006 +013004 +092004 +038001 +092004 +012001 +013001 +092006 +089017 +092003 +041001 +067001 +108746 041001 +013001 +092007 +108750 091001 +068004 +089017 +092003 +092004 +059003 +088024 +088024 +088026 +033042 +033004 +084001 +092004 +033006 +092003 +069002 +033018 +090013 +092005 +049 +092004 +041003 +041003 +089018 +092004 +042002 +092004 +089017 +049 +092004 +058011 +092004 +058011 +090006 +028001 +089005 +058005 +092004 +042003 +092004 +092006 +069002 +013003 +011002 +089017 +093001 +053006 +089017 +011002 +041003 +093002 +087005 +087005 +089023 +063001 +089017 +089020 +063001 +093001 +089008 +049 +064 +030006 +092004 +012001 +053006 +089017 +025003 +026 +088010 +088009 +088007 +088008 +025015 +025015 +092005 +089017 +040002 +092005 +089010 +092004 +090006 090008 +092004 +031001 +033041 +064 +089017 +092004 +012001 +040002 +092003 +108842 089017 +092003 +089017 +089017 +059003 +092007 +092004 +025003 +089019 +089019 +063002 +092004 +088004 +089017 +092004 +025021 +092004 +093001 +037001 +083003 +092004 +026 +092003 +089009 +092006 +089017 +033029 +089020 +063001 +011002 +089017 +025009 033036 +013001 +092004 +033019 +092004 +093001 +085005 +089020 +092003 +078001 +089014 +059003 +032004 +033017 +089017 +033046 +092005 +033007 +033007 +033007 +026 +089014 +092004 +033036 +033007 +083003 +092004 +026 +092003 +092004 +012001 +089017 +059003 +092004 +071001 +092006 +042002 +089004 +033006 +089024 +089004 +042002 +059003 +089020 +033009 +012001 +093001 +033036 +092004 +012001 +012001 +090001 +092004 +092004 +010004 +036003 +092004 +010004 +064 +066 +089020 +012001 +092004 +010004 +025003 +092004 +010004 +089017 +069002 +088026 +090008 +092004 +092004 +010002 +036003 +092004 +010002 +089004 +059003 +089007 +092007 +025008 +013001 +090013 +012001 +092004 +010002 +069002 +088023 +092004 +010002 +092003 +108967 025024 +092004 +087005 +036003 +089004 +059003 +092004 +089004 +058001 +057001 +069002 +089014 +108980 064 +025008 +089023 +089014 +088005 +026 +087002 +092004 +012001 +071001 +092006 +041001 +089014 +026 +042004 +064 +092004 +012001 +089017 +069002 +009001 +028001 +090006 +090003 +012001 +057009 +092004 +038002 +092004 +057009 +092004 +012001 +093001 +035002 +089007 +092004 +088002 +090014 +092006 +088002 +089017 +069002 +013003 +088030 +092004 +057001 +092004 +088002 +089017 +092004 +058005 +092004 +087005 +090014 +028001 +090006 +089017 +092003 +109039 057001 +083003 +001002 +092004 +033013 +068006 +027006 +067007 +092004 +089013 +033036 +033013 +067002 +089017 +109054 092002 +090006 +092004 +012001 +071001 +092002 +007003 +092004 +033019 +033006 +092004 +028005 +092004 +093001 +089007 +092006 +089017 +037008 +089009 +028003 +092004 +064 +071004 +092001 +033006 +089014 +032004 +041001 +090013 +092004 +011001 +092004 +022007 +065005 +092004 +033006 +092003 +067005 +089014 +088009 +005002 +046 +028001 +092004 +071004 +092003 +092004 +059003 +033014 +092004 +089004 +092001 +059003 +028002 +092003 +093001 +092004 +025003 +011002 +089017 +031009 +053009 +089017 +087005 +089020 +012001 +092006 +015004 +084002 +092003 +089009 +058005 +092007 +091005 +028001 +092004 +090006 +092002 +089017 +025013 +092004 +026 +092003 +089020 +093001 +092004 +031009 +089017 +025003 +011002 +092006 +013001 +063004 +092003 +092003 +028002 +059003 +092004 +083001 +033003 +092003 +093001 +092004 +037008 +092001 +089017 +093001 +092004 +010003 +093001 +090006 +092006 +057009 +033032 +089010 +015006 +084002 +092003 +034007 +092004 +089017 +093001 +092004 +033009 +093001 +092004 +013001 +089003 +053006 +092007 +058007 +042004 +089009 +092004 +037004 +092004 +012001 +109192 013002 +092001 +025013 035001 +033003 +092003 +093001 +092004 +063004 +092003 +087005 +093001 +093001 +067005 +068006 +090009 +092003 +089012 +092004 +033013 +089009 +013001 +088013 +109215 031006 +089004 +059003 +030004 +092004 +012001 +109222 033020 +092004 +090006 +090012 +059002 +042004 +090009 +092003 +089017 +092004 +083003 +093002 +089017 +092004 +083003 +093002 +033003 +092003 +093001 +092004 +023008 +092004 +025003 +089017 +093001 +033003 +092004 +083003 +093002 +011002 +089017 +093001 +089017 +092004 +089020 +007002 +092004 +011002 +109261 067002 +033005 +083003 +092003 +092004 +033005 +042002 +090006 +089017 +083003 +092004 +093002 +011002 +033005 +089017 +090006 +092004 +084001 +093002 +089017 +092003 +033005 +109284 033006 +093001 +013004 +092004 +035002 +092006 +037005 +089004 +012001 +089009 +092004 +013004 +092004 +033003 +092004 +092001 +008002 +093001 +029002 +092001 +092004 +006004 +092004 +088009 +090013 +092003 +093001 +109312 093001 +109314 093001 +092004 +011002 +093002 +089020 +012001 +012001 +109322 012001 +093001 +093001 +109326 088009 +109328 022007 025021 +025009 033036 +092004 +012001 +067005 +089004 090006 +059003 +109336 029004 +090011 +067002 090002 +092004 +033013 +092002 +068004 +029004 +109345 092004 +042002 +092004 +031009 031010 +109350 092004 +042004 +092004 +025003 +109355 092004 +025015 +092004 +025004 +092004 +012001 +092002 +093001 +093001 +083006 090005 +092004 +012001 +109368 012001 +092002 +028001 +092004 +030006 +109374 011002 +025003 +109377 092004 +012001 +089007 090006 091005 +092004 +033015 +092002 +015001 +109388 033006 +109390 089023 +109392 089013 090002 +076 +109396 012001 +088003 +109399 031006 +059002 078001 +064 +028001 +058004 +013001 +109407 090009 +109409 089015 089017 +109411 013002 +041004 +092002 +109415 092004 +012001 +031007 057009 +092004 +033019 +109421 022001 +059002 078001 +109424 025011 +012001 +088003 +089008 +013002 +109430 058009 +059003 +092004 +031010 +109435 092004 +093002 +109439 092004 +093002 +089007 +109444 033016 +092004 +033019 +092004 +012001 +109452 092004 +093002 +109455 093002 +089023 +109458 059003 +080001 +092004 +031009 +109463 092004 +109465 092004 +012001 +015004 +089008 +109470 071004 +109472 092002 +033006 +109475 089007 +092008 +109478 092002 +033015 +058004 +034007 +109486 092004 +031008 +109489 092004 +012001 +109492 092004 +006013 012001 +035002 087005 +012001 +023007 +109498 070 073 +109500 085003 +109502 092004 +001002 +092004 +012001 +092004 +109508 023007 +109510 092004 +023007 +093001 +092004 +021005 +092002 +109517 092004 +038001 088024 +092004 +015006 +089007 091001 +011002 +092008 +032001 +092004 +015006 +092002 +092004 +109533 057005 089008 089009 +013001 +089023 +024006 +109538 033042 088016 +109540 093002 +089007 +032001 +025014 033006 +089020 090001 +092004 +012001 +092002 +033006 +109551 092004 +033015 +092004 +012001 +067002 067007 089013 +059002 078001 +039005 050 +089007 091001 +092004 +025013 033012 +092002 +109563 089007 090002 090003 +031002 +069003 +109567 088034 +069003 +089007 089013 +088021 +089023 +064 078005 +027004 030007 +109575 092004 +012001 +035005 +092004 +033015 +078001 +033006 +064 089009 +025008 +109585 009001 +089023 +012001 +092004 +027004 030007 +092004 +026 +092002 +089007 091001 +069003 +067001 +089013 +033006 +033038 +013001 041001 +089007 +032001 +069003 +109604 088029 +025002 088019 +012001 +033020 +069003 +025001 057007 +090003 +009001 +033037 087002 +069003 +090001 +109616 069003 +090001 +058006 +074 +109621 022001 065006 +109623 064 089007 +093001 +053009 +089023 +013002 +109630 083003 +109632 064 +109634 035006 +035004 +092004 +109638 010002 +061 078001 +025003 +109642 025010 030006 +057008 +109647 092004 +033015 +092004 +012001 +089023 +109653 092004 +109655 009001 +089007 +025003 +092002 +013001 013002 +089007 091001 +011002 +029002 +092004 +042004 +092002 +109667 092004 +042004 +067005 +109671 067005 +042004 +089009 +092004 +109676 057019 +109679 033015 033019 +109682 092004 +033015 +092004 +012001 +033020 +109689 092004 +012001 +078001 089014 090006 +088003 +109694 088002 +109696 088038 +109698 092004 +031010 +013001 041001 +064 +032001 +089014 090006 +109705 059003 +109707 064 +010002 +010002 +109711 025013 +109713 025013 +109715 033031 +109717 089009 090006 +092004 +041001 +109721 065002 +092004 +012001 +092004 +033029 +109728 092004 +109730 037004 +109732 087003 +089017 +089007 +109736 089017 +092002 +025009 033036 +092004 +012001 +068004 +089007 090006 +027001 033017 +033006 033019 +024002 +109747 092002 +092004 +012001 +031007 057009 +109752 033006 +009001 +089023 +064 +070 +109758 033006 +012001 +109761 089017 +042001 +083003 +109765 092004 +031010 +089007 +011002 +109770 013002 +041004 +092004 +011002 +092004 +012001 +092004 +109778 089020 +092004 +093002 +109782 093001 +093001 +089007 091005 +092004 +058005 +024006 +089017 +109790 089007 090001 +092004 +057001 +011003 +064 +089017 +058005 +109798 092004 +093001 +092004 +020004 +089017 +092004 +012001 +093001 +109807 092004 +053009 +109810 092002 +015021 039009 +109813 012001 +109815 025008 +109817 059003 +009001 +039001 +013004 +092002 +092004 +011002 +033006 +109826 021006 +089008 089009 +092004 +059003 068003 +092004 +092004 +088038 +067005 +089017 089023 +013004 +090013 +092004 +092004 +038001 088024 +067005 +067003 078004 +089017 089023 +011002 +092002 +085001 +109848 067005 +067005 +067008 +008002 009001 085001 +109853 026 +078002 +025006 068006 +092004 +085001 +109859 024001 034006 +089013 089014 +059002 +025002 +089007 +025001 030004 +109868 091002 +092001 +093001 +089017 091002 +060005 +109874 060005 +109876 013004 +092002 +092004 +012001 093001 +089007 +092004 +092002 +025004 +109885 025011 +109887 006018 042002 057008 +025019 033039 +089024 +069004 +089017 +109893 083006 +092004 +012001 +092002 +093001 +067002 +092004 +092004 +015006 085001 +109904 013001 +092004 +025019 +092002 +109909 092004 +025011 +089008 +067006 +025015 +030006 +085004 +109917 093002 +058007 +109920 015004 +093001 +092004 +011002 +092002 +109927 092004 +012001 +109930 092004 +033015 +092004 +093001 +089009 +092004 +074 +109938 025013 +109940 090006 090009 +092004 +031009 +109944 092004 +092004 +031008 +089007 089012 +092004 +022001 +109951 089007 091001 +058005 +032001 +109955 090006 +109957 013003 +089007 091001 +089017 091002 +109964 033024 +109967 067002 +022002 +089007 +109971 013004 +109973 032001 +109976 092001 +067006 +025015 +015004 +109981 092004 +027001 028001 +092004 +031009 +109986 089009 +089009 +012001 088038 +109990 092004 +088038 +109994 089008 +013001 +092004 +042004 +092002 +089023 +067002 +110002 093001 +110004 092002 +110008 033015 +092002 +092004 +031010 +110013 092004 +025003 +110019 029002 +092002 +088001 +067005 +025002 +092002 +024001 +064 +089017 +092002 +110030 011002 +110033 025013 +089007 090006 +110036 067007 090006 +059003 +092004 +022001 +110041 022001 +092002 +089007 089012 +092004 +110046 031009 +089007 +067002 +023007 +089010 +110052 013001 +089012 089020 +012001 +089007 091001 +074 +110058 033036 +092004 +012001 +057012 +089004 089007 090006 +110064 089007 090006 +059003 +092004 +025011 +110069 025011 +090010 +110072 083006 +092004 +012001 +092002 +067009 +110078 067005 +078002 +033012 +110082 092004 +024001 +110085 092004 +085001 +110088 075 +092004 +057005 085001 +092004 +031010 +110094 089017 089023 +092004 092008 +092004 +012001 +110099 012001 +092002 +110102 092004 +012001 +092002 +093001 +036001 +092004 +015002 +092002 +110112 089017 089023 +110114 092004 +012001 +078002 +110118 078002 +092004 +025003 +110122 092005 +110125 059003 +064 +089017 +092002 +110131 089008 089009 +092004 +074 +110135 092004 +026 +088038 +089004 +053006 088003 +083006 090005 +092004 +012001 +110144 012001 +092002 +067002 089004 +092004 +015006 085001 +092004 +012001 +092002 +093001 +089020 +059003 +092004 +011002 +092004 +089008 091002 +011002 +061 089017 +033012 +110163 033012 +110165 089004 089020 +012001 +093001 +110169 064 +027001 +110172 092002 +092004 +092004 +071004 071005 +110177 041001 +089015 089017 +025008 +012001 +064 +089017 091002 +041001 +090006 +078002 +078002 +089007 +028001 +110190 033032 +110193 090001 +092004 +012001 +093001 +089007 091001 +110200 025001 +092004 +012001 +092004 +053006 +110206 013004 +110209 092004 +088036 +028001 +059003 +110214 092004 +110216 008001 010004 023004 +023004 057007 +089013 089014 +053006 +110221 087002 +110224 025002 +025002 +064 +089017 +092004 +011002 +092004 +110232 028001 087002 +092004 +012001 +092004 +110237 088038 +110239 088019 +110241 092004 +042002 056002 +092004 +011002 +092004 +089007 +038001 +012001 +110250 059003 +110252 064 +089017 091002 +033006 033047 +110257 033016 033047 +089007 +110260 033029 +092002 +092004 +012001 +089006 089007 089009 090006 +088034 +089023 +089008 089013 090006 +053006 +089008 +092004 +031009 +031009 +110274 009001 +089023 +092004 +012001 +092004 +089017 091002 +057008 +092004 +012001 +092004 +092004 +088003 +084002 090013 +110288 089017 089023 +110290 092004 +025003 +110293 071004 +110295 033005 +110297 089007 +092008 +110300 033017 +110302 089008 090006 +092004 +025003 +092005 +089007 091001 +089017 091002 +041001 +058005 +090009 090013 +059003 +092004 +011002 +083003 +063001 +092004 +093002 +089023 +011002 +033012 +110322 059006 078002 +078002 +089017 +025006 +088014 +110328 042002 +092004 +057001 +110332 042004 +092004 +008002 +110336 064 +110338 033032 +089009 090006 +041001 +066 088006 +089004 090005 +092004 +011001 +110346 092004 +057005 +110349 089017 089023 +011002 +110352 025001 +110354 028001 +110356 092004 +023007 +110360 025023 +064 +091002 +092004 +063005 +092004 +110368 025004 +089007 +089007 089010 +031006 +110373 093001 +023007 +110376 023007 +061 +110379 092004 +012001 +092004 +023007 +090001 +092004 +093001 +015023 +089020 +092004 +089007 +110392 033006 +089012 +033006 +012001 +110397 092002 +092004 +023007 +092004 +085004 +067006 +092004 +015006 +092004 +012001 +069002 +069002 +015015 +092004 +023007 +089007 090006 +092008 +092004 +012001 +089013 +033032 +110419 033006 +012001 +110423 006012 +012001 +015011 +110427 001002 +110429 092004 +023007 +089020 +093001 +023007 +060003 +067002 +092002 +092004 +023007 +092004 +085004 +067002 089020 +089020 +092004 +018001 +083003 089012 +001005 +110448 015005 +092004 +012001 +110452 001002 +110454 061 +067005 +089020 +012001 +110459 089008 +025013 +092005 +089012 +092004 +033006 +110466 089017 089023 +011002 +089004 +092004 +067001 +110472 092004 +067001 067008 +110475 071004 +110478 033005 +089007 +092008 +072002 +032001 +110484 064 +057021 +067007 +014007 + +012001 +061 +015006 +110493 033006 +022007 025021 +110496 021003 +067002 +067005 +020003 +092004 +013004 +064 +092004 +023003 +092004 +023003 +023003 +023003 +110512 021004 +089023 +011002 +110518 013001 +014007 088015 +089008 +092004 + +110524 013004 037001 037006 039010 +064 +057021 +089007 +059003 +110531 011002 +011002 014006 +110534 011002 +014006 +110538 014007 +069003 +014007 +089008 +110544 023005 +064 +092004 +063005 +089023 +023005 027006 +110551 030001 088011 +089007 +092004 +023005 +067009 +023005 +110558 092004 +088037 +067009 +023001 +089023 +092002 +014006 +058010 +030001 088011 +049 +006007 +031009 +110571 025003 +110573 006007 +025004 +021006 +089007 +110578 037005 090014 +092002 +092004 +012001 +089009 +038001 088024 +089023 +110586 057007 090013 +021006 +089012 +092004 +012001 +092002 +093001 +093001 +092004 +023007 +110597 092002 +089009 +089010 +023005 023007 +089010 +023005 023007 +089020 +089020 +092004 +023007 +089008 +025013 +092005 +110611 074 +110613 092004 +110615 064 +110617 041001 +089017 089023 +011002 +033012 +110622 087002 +092004 +042004 +083003 +110628 036001 +110630 089004 089012 089020 +012001 +110633 033017 033046 033047 +110636 031001 +092004 +110639 089007 089013 089014 +025003 +089007 +092004 +042004 +092004 +088014 +083003 +110648 089017 089023 +011002 +033012 +110652 033046 033047 +092004 +088032 +025013 +092004 +025024 +035001 +092004 +088015 +025015 +110663 059003 +013004 +110667 088015 +057010 +088015 +110671 038002 +089023 +067005 +092004 +088001 +068006 +110678 092005 +110681 059003 +067005 +025011 +068004 +033013 +089004 +059003 +025009 033036 +089007 +110691 025001 030004 +012001 +089020 +093001 +093001 +090006 090013 +110698 092004 +012001 +110701 068004 +033053 +110704 088025 +089023 +059003 +027004 +092004 +065003 088001 +031006 +110712 059003 +058002 +088015 +085001 +089017 089023 +092008 +092004 +012001 +092004 +025021 +088003 +110724 078004 +089015 089017 +059003 +110728 092004 +026 +110731 092004 +023007 026 +110734 092004 +008001 009001 +088038 +067002 +092004 +015006 +092004 +012001 +092002 +093001 +093001 +013001 037009 +031009 +092004 +033029 +110751 089017 091002 +110753 011002 +033013 +089004 090006 090009 +092002 +033003 +092004 +011002 +059003 +110762 034009 +088003 +033054 +110766 092004 +012001 +033005 +092004 +006010 033005 +059003 +092004 +011002 +092004 +088009 +092004 +012001 +092002 +093001 +093001 +090013 +110783 093001 +110785 093001 +110787 093001 +092004 +011002 +093002 +110792 012001 +012001 +092002 +110796 012001 +093001 +093001 +110800 088009 +110802 025021 +090003 +012001 +012001 +110807 012001 +093001 +093001 +011002 +071004 +033036 +092004 +012001 +067005 +089004 +110818 078005 +066 +110821 089007 090006 +078001 +092004 +031010 +110827 078002 +092004 +025003 +110831 059003 +059003 +110835 092005 +089008 +092008 +092002 +089004 +110841 033039 +110843 092004 +011002 +092004 +012001 +089007 090006 +092004 +025015 +110852 031009 +067007 089013 +059003 +092004 +039009 +110859 092004 +022001 +110862 025015 +028003 +092004 +088002 +056005 +092004 +012001 +089008 089009 +092004 +065002 +110873 092004 +037004 +092004 +012001 +089007 090009 +110879 089017 091002 +024006 +089010 +066 088002 +090001 090005 +012001 +038002 +092004 +022003 +110889 022001 +089017 +110892 092004 +022002 +022005 +089020 +092002 +067002 +092004 +028003 +092004 +012001 +093001 +110904 001002 +089020 +012001 +076 +092004 +089013 +002003 +002003 +090012 090014 +038001 039006 +092004 +110916 028001 087002 +012001 +110919 092004 +110921 036003 +092004 +033015 +092004 +012001 +092002 +093001 +110929 090013 +038001 +020003 +067005 +089021 +085001 +092004 +012001 +110939 092004 +014006 079005 +092004 +079013 +092004 +110945 015006 +087002 +083003 089007 090001 +092004 +011002 +092004 +110952 025020 +089007 090001 +059003 +092004 +031009 +067002 +092004 + +092007 +089007 +031006 +092004 +033020 +092002 +090001 090013 +110968 089009 090006 +092006 +089017 +033013 +067005 +089004 090006 +110975 090006 +110977 065002 +092004 +033029 +092004 +012001 +092002 +110984 013004 068003 +059003 +025001 +088001 +110989 042002 +031009 +089012 089014 +076 +089009 +087002 +092004 +009001 +092004 +012001 +092002 +093001 +089007 089020 090001 +111006 092004 +089005 +092004 +088009 +092004 +012001 +092002 +111014 012001 +093001 +093001 +089017 089023 +011002 +033012 +111021 090006 +092004 +015006 +092004 +012001 +092002 +093001 +093001 +111030 092002 +015013 +084002 +092004 +089009 090006 +092004 +111037 067002 067005 +025021 +111040 089021 +092004 +030001 +069003 +025022 +069003 +089007 +012001 +069003 +111050 033006 +069003 +111053 006010 033005 +064 +090001 +092002 +064 090006 +111059 067002 +092004 + +092004 +012001 +111067 031002 +111069 092004 +041001 089014 +089007 +111074 013004 +092004 +039007 +067002 +111079 028003 +092004 +009001 +092004 +088018 +092004 +009001 +092004 +020003 +092004 +039001 +111091 039007 +037001 090008 +059003 +033009 +012001 +111097 053007 +089008 +092008 +111101 092004 +007002 +092004 +012001 +017002 +028004 +111110 012001 +111112 029002 +111114 067006 +111119 033006 +111122 067002 +092004 +013004 +032001 +067006 089008 089009 +092004 +028003 +092004 +067002 +092004 +111133 067001 +089007 +092004 +028005 +092004 +088018 +067002 +042001 +058007 +092004 +013004 +067002 +067006 +111147 083003 +015001 +111150 067002 +028003 +092004 +088018 +111155 092004 +012001 +093001 +020004 +092004 +023010 +092004 +008002 +092004 +111165 013003 +092004 +024001 +092004 +015006 085001 +092004 +111172 092004 +015006 085001 +111175 089005 +042001 +092004 +012001 093001 +083003 089008 089013 089014 +058004 059003 +076 +111183 033056 +111185 033056 +033018 +111188 089013 089014 +058004 059003 +031002 +088002 +092004 +020003 +089007 +111196 092004 +025003 +092004 +072001 +111201 031007 +089008 089009 +092004 +021006 +092008 +111207 089007 +111209 090014 +092004 +092004 +012001 +042001 +031002 +089008 089009 +092004 +031006 +092004 +092004 +033018 +089008 089009 +056005 +059003 +092004 +111226 031006 +092004 +072001 +089023 +025008 025010 030006 +092004 +088002 +089017 089023 +092002 +071004 +033036 +092004 +012001 +067005 +111242 011002 +025003 +111245 012001 +089007 090006 +030006 +111249 092004 +012001 +111253 089009 +021006 +089012 089013 +053006 +012001 026 030001 +111259 031009 +072001 +089009 +111263 089017 +033029 +111266 089012 +092004 +033015 +092002 +089009 +057007 090013 +079005 +092004 +012001 +092002 +093001 +093001 +089008 +111280 011002 +013001 +089017 +013001 +092004 +033017 +111287 033017 +089010 +089012 +033006 +089010 +111293 006010 033005 +092002 +089017 089023 +092008 +092004 +012001 +092002 +093001 +093001 +111303 092004 +012001 +092004 +012001 +092002 +092004 +025003 +092002 +111312 090014 +025013 +067005 +111316 025004 +065003 088001 +089007 089012 089014 +088009 +025013 +111322 092004 +026 +111325 074 +089004 +058004 059003 +042002 +111330 033006 +065003 088001 +011002 +092004 +089017 +033013 +089004 090009 +092002 +090006 +092004 +028002 033019 +092004 +012001 +015030 +111345 033037 +064 +089017 091002 +111352 021005 +111354 092004 +088015 +111357 088015 +009001 +089007 +111361 059003 +092004 +031010 +089023 +031009 +111367 092004 +012001 +111370 074 +111373 037009 +111375 092004 +012001 088015 +089017 +031009 +089007 089020 +012001 +090006 +111385 033032 +091002 +090011 +111389 041001 +111391 092004 +012001 +036001 +111395 092004 +026 +090006 +092004 +025003 +092004 +012001 +111404 092004 +025015 +092004 +093001 +089017 +011002 +033032 +111413 033009 +092004 +012001 +093001 +093001 +034004 +111421 059003 +011002 +088032 +041001 +111427 089005 +092004 +033017 +111433 092002 +089007 +092008 +028001 +092004 +071004 +041004 +092002 +089007 091005 +111443 088032 +083003 +111446 069003 +057008 +005001 +023001 +111452 089023 +111454 042004 +111456 042004 +067005 +111459 067005 +042004 +089009 +092004 +111464 057019 +111468 089007 090006 +111471 037003 +089023 +089009 +111475 058009 +111479 092004 +041004 +092002 +089007 091001 +089017 091002 +111489 033032 +111495 025001 +042004 +069003 +023001 +089007 +033015 +111502 041001 +083003 +111505 088032 +092004 +042004 +091001 +088031 +089017 +092004 +064 +033032 +111515 025013 033012 +089020 +012001 +093001 +093001 +090006 +111522 022007 088014 +042004 +092004 +111526 005001 057016 +023001 057016 +089017 089023 +011002 +111532 025024 +088001 +089017 089023 +111538 036003 +092004 +033006 +092002 +089012 090002 +092004 +006010 +111546 029001 +111548 034001 +092004 +089009 +025018 +089017 091002 +111554 064 +039001 +031001 +089023 +033046 033047 +064 +011002 +089017 089023 +092004 092008 +092004 +012001 +092004 +022007 025021 +090014 +111569 092004 +022007 025021 +111572 067001 +111574 059003 +089014 +092004 +012001 +089020 +059003 +111581 092004 +033003 +092004 +092001 +008002 +093001 +111589 033056 +111591 059003 +033005 +061 +033005 +092004 +088009 +092004 +012001 +092002 +093001 +093001 +090013 +059003 +111605 093001 +053009 +093001 +093001 +111610 033032 +012001 +021006 +092002 +111615 093001 +093001 +092004 +025004 +092002 +093001 +073 +036004 +111624 031010 +088009 +088010 +025021 +111629 012001 +012001 +111632 093001 +093001 +092004 +012001 +092002 +064 +033012 +111640 085003 +111642 093002 +015002 +111645 093002 +111647 033032 +111650 033017 +069003 +031006 +033003 +111655 010002 +061 +111658 031005 033050 +013004 +089023 +111662 030004 +012001 +092004 +111666 031009 +111668 092004 +089009 +092004 +033032 +111673 025003 +111675 053003 +026 +111678 026 +088001 +111681 031010 +073 +111684 031008 +111686 031008 +111688 033040 +025001 +111691 033017 +111693 032001 +069003 +111696 033006 +069003 +111700 033031 +111702 032001 +111704 088001 +092004 +033005 +111709 092004 +072002 +042002 +029002 +111716 088002 +033033 +013003 +111720 088018 +111722 036003 +053001 +111725 088038 +053006 +111728 088015 +020004 +111731 020004 +020004 +088036 +088036 +057015 +033018 +033054 +111741 058006 +039001 +092004 +072002 +033017 +111747 092004 +033015 +092004 +087003 +092004 +025011 +012001 +111755 035005 +092001 +033036 +111759 092004 +074 +092001 +093001 +093001 +092004 +012001 +092002 +111768 031009 +092001 +031001 +037005 +111773 035002 +092004 +067002 +111777 033042 +111779 039009 +111781 033042 +089023 +088010 +111785 028001 +041001 +111788 031010 +111790 059006 +092004 +088009 +092004 +012001 +092002 +111797 031010 +111799 025003 +092004 +111802 093001 +093001 +092004 +033006 +071003 +111808 078004 +031007 +065002 +111812 093001 +093001 +111816 092004 +001006 +088038 +021006 +111821 087003 +111823 092001 +089023 +111827 088010 +111830 092001 +087003 +028003 +093001 +093001 +092004 +059003 +025015 +111839 058009 +092004 +067002 +031009 +111844 092004 +111846 023007 +067005 +111849 092004 +037004 +092004 +067008 +023007 +024001 +111856 012001 +087002 +111859 087003 +111861 092004 +067005 +092004 +067005 +072001 +009005 +093001 +111869 092004 +033032 +035005 +111874 092004 +013004 +111878 033053 +111880 055002 +111882 092004 +092004 +088001 +055002 +111887 031010 +111889 088001 +026 +111892 031008 +111895 092004 +031010 +054 +111900 093001 +111902 093001 +111904 037007 +092004 +012001 093001 +111908 038001 +111910 033042 +111912 033012 +060003 +059003 +090011 +033012 +033013 +033035 +033036 +090009 +059003 +009001 +090009 +037004 +111926 059003 +092004 +111929 087003 +111932 088014 +111934 088014 +041001 +041001 +111938 059003 +053001 +111941 088006 +111943 088001 +111945 025008 +090005 +092004 +021006 +092002 +012001 +111952 025001 +059003 +009001 +021006 +111957 027001 +027001 +072001 +111963 012001 +111966 040001 +012001 +111969 009001 +009001 +093001 +093001 +092004 +111976 037010 +090009 +059003 +092004 +033020 +067001 +058007 +111985 037005 +092001 +033019 +111989 053009 +033017 +011002 +111993 031010 +111995 072001 +072001 +033006 +111999 033018 +112001 025001 +033013 +092004 +009002 +112006 059003 +080001 +015010 +053006 +008002 +089021 +088024 +112014 033051 +064 +009003 +112018 049 +066 088006 +112021 088006 +112023 032004 +079004 +112028 049 +112030 006018 +112032 002006 +112034 006017 +065001 +089023 +112039 066 +009003 +033016 +053001 +042002 +088001 +009003 +112047 033008 +027001 +112050 078004 +036003 +112053 013004 +112055 033017 +009003 +069003 +037001 +009002 +089023 +112063 033008 +112065 093001 +060003 +042003 +067002 +093001 +112071 093001 +112073 031002 +112075 092004 +009003 +031002 +112079 036003 +013002 +112082 021006 +112084 092004 +023003 +112087 068002 +112089 031010 +112091 025003 +112093 053006 +089022 +088012 +071003 +092004 +033006 +112101 053009 +025002 +088001 +042004 +025002 +112107 071004 +092004 +053009 +112111 033045 +112113 010004 +010004 +088011 +088012 +088006 +034008 +033017 +112121 088037 +112123 088017 +089023 +088008 +039005 +025010 +092004 +057001 +010001 +065003 +036001 +010002 +112136 036003 +112138 078004 +088006 +112143 092004 +057001 +010001 +036001 +112148 028001 +092004 +011002 +012001 +030002 +112154 011002 +112157 088027 +112159 056005 +092004 +012001 +090013 +112164 071004 +112166 033020 +087003 +112170 092004 +011001 +112174 090013 +112176 033042 +112178 021001 +092004 +012001 +064 +053009 +088006 +112185 088029 +112187 006019 +112189 068002 +112191 025002 +112193 092004 +028005 +092004 +031010 +112198 053003 +026 +112203 027004 +060003 +067002 +053009 +033048 +112209 064 +010004 +088006 +112213 033042 +088011 +031009 +112217 059003 +053009 +112221 010004 +010004 +065003 +036001 +010002 +112227 092004 +057001 +010001 +112231 092004 +065003 +053009 +087001 +087003 +112237 057007 +112242 031010 +092004 +112245 093001 +093001 +112249 033005 +030003 +112257 067006 +112259 028001 +092004 +071004 +041001 +112264 010001 +012001 +112268 011002 +012001 +023007 +007003 +112273 031009 +092004 +072001 +112277 033022 +112280 092004 +092004 +053001 +028005 +112285 024001 +112287 008001 +088002 +112290 012001 +024001 +012001 +033019 +112295 011002 +031009 +112298 001006 +015024 +112301 001002 +112303 092004 +012001 +033006 +033006 +112309 061 +067008 +034002 +112313 092004 +031010 +031006 +012001 +031002 +112319 033017 +012001 +112322 088029 +033018 +027005 +092004 +057001 +026 027005 +013004 +034010 +013004 +005001 +112333 092004 +012001 +042003 +112337 057009 +112339 033036 +092004 +031009 +112343 028001 +092004 +072001 +112347 059003 +042003 +012001 +066 +112352 092004 +057009 +112355 033036 +057009 +112358 053006 +112360 033006 +012001 +112363 033035 +112365 033017 +092004 +011002 +112369 088001 +035002 +093001 +093001 +033017 +092004 +033006 +092004 +031010 +112379 092004 +088001 +033017 +112383 036004 +112385 092004 +088015 +112388 009003 +033003 +027006 +112392 088011 +092003 +112395 053001 +112397 092004 +008001 +050 +112401 078001 +112403 065005 +112405 092004 +053001 +112408 059003 +065005 +112412 033025 +023007 +092004 +067002 +112417 092004 +067006 +092004 +033006 +071003 +112423 078004 +031007 +065002 +112429 042004 +112431 039005 +112433 025004 +112435 012001 +023007 +112439 021006 +059003 +009001 +078001 +031009 +112445 033032 +112447 033017 +092004 +112450 092004 +067008 +088025 +089023 +013001 +058009 +092004 +031009 +112459 033006 +112461 041001 +112463 025003 +112465 031010 +112467 088003 +067006 +112470 030001 +092004 +033005 +092004 +025013 +092004 +033017 +112478 030002 +092004 +112482 057008 +112487 033053 +112489 085002 +092004 +008002 +092004 +011003 +112495 030001 068002 +112498 068002 +112501 092004 +013002 +028004 +112505 059003 +027006 +092003 +112509 092004 +033017 +068002 +092004 +112515 090011 +021005 +112518 092003 +112520 092004 +024002 +112523 009002 +112525 033046 +089023 +033012 +064 +010002 +067005 +064 +010003 +009002 +064 +010002 +067005 +064 +010003 +112540 078004 +088003 +057008 +010004 +092004 +070 +010004 +112550 010004 +010002 +112553 010002 +112555 027001 +060003 +092004 +057001 +010001 +071004 +112562 057012 +057012 +092004 +010002 +112569 025008 +090005 +092004 +012001 +112574 092004 +070 +010004 +112578 010001 +025004 +112581 012001 +112583 068002 +092004 +033012 +112587 092004 +033013 +067005 +112591 067005 +112593 092004 +088033 +023007 +023007 +112599 033032 +112601 033045 +112606 092004 +057001 +112609 078001 +010001 +112612 035004 +092004 +031010 +034005 +112618 031010 +088015 +010004 +033005 +112623 059001 +067009 +060002 +013001 +112628 010004 +010004 +112631 042002 +087003 +033020 +112635 035006 +112637 034008 +112639 011002 +034008 088007 +034008 088007 +112643 022002 +035001 +112646 059003 +042002 +088001 +025006 +112651 067005 +010004 +034003 +112656 025002 +092004 +093001 +034010 +025001 +112662 056005 +112664 092004 +060003 +033025 +076 +112669 089020 +112671 088032 +027001 +015002 +092004 +007002 +112679 088032 +089023 +112682 033040 +112684 088031 +033006 +092004 +112688 071004 +112690 025001 +067005 +034010 +023003 +046 +092004 +022007 +112698 092004 +039001 +033042 +089009 +112703 067002 +112705 031008 +036004 +092004 +012001 093001 +112711 011002 031010 +112713 010004 +035003 +092004 +112718 022002 +092004 +011002 +112722 092004 +070 +010004 +035003 +092004 +088001 +068006 +053009 +060006 +057012 +065002 +078001 +092004 +042004 +112737 033006 +112739 033017 +112741 033006 +092004 +033005 +004001 +043 +112747 044 +112749 066 +092004 +042004 +092004 +057013 +092004 +112756 053009 +033048 +112759 031007 +089023 +112764 060002 +112766 060002 +033020 +092004 +088038 +090005 +059003 +033046 +112775 092004 +063005 +025022 +112779 033031 +090005 +092004 +012001 +112784 093001 +093001 +112787 092004 +030006 +012001 +112792 036003 +089021 +030005 +092004 +090011 +112798 088030 +008002 +067005 +092004 +085002 +069003 +042002 +088038 +092004 +092003 +088003 +013001 +067006 +023001 +089023 +006019 +059002 +042002 +112817 092004 +008002 +112820 092004 +067001 +112823 023009 +112825 009001 +092004 +088038 +028004 +112830 015016 +112832 056005 +112836 013004 +064 +112839 092004 +042002 +092004 +088001 +028004 +112845 092004 +058006 +112848 024001 +112850 074 +067007 +087005 +087005 +006002 087005 +087005 +092004 +057001 +037004 +078004 +087002 +066 +031001 +112865 092004 +033009 +092004 +012001 +112870 092004 +033017 +033042 +112874 092004 +112876 031009 +057001 +112879 088025 +112881 011002 +112883 089023 +078002 +035002 +112888 031009 +112890 025003 +092004 +092004 +088001 +025006 065005 +112896 033017 +112898 033012 +112901 033017 +112904 031003 +072002 +033006 +092004 +092004 +012001 +092002 +093001 +093001 +112914 092004 +112916 053001 +033017 +088027 +092004 +032001 +089023 +025001 +112924 033050 +112926 033051 +112929 013004 +088022 +033051 +033042 +031005 +088015 +033051 +009001 +088035 +092004 +030001 +112941 057005 +092004 +072001 +031005 +057016 +112947 092004 +053001 +112951 057016 +059002 +092004 +053001 +112956 025007 +112958 092004 +015024 +112961 092004 +001006 +112964 069003 +015024 +112967 074 +112970 005001 +112972 006017 +112974 025007 +112976 092004 +025001 +057003 +090013 +112981 088038 +112983 021001 +112985 025002 +112987 032005 +112989 020002 +112991 090014 +092004 +009001 +112995 020003 +112997 020003 +112999 089007 +058004 +092004 +088015 +113004 092004 +025010 +113007 025002 +113009 031008 +113011 092004 +031010 +113015 090013 +025021 +113019 091004 +009001 +012001 +113024 013004 +113026 068006 +088002 +053001 +031010 +025003 +025015 +088008 +050 +092004 +088001 +050 +092004 +031010 +090013 +092004 +067005 +023007 +113045 033029 +113047 033021 +092004 +088001 +033021 +090005 +113053 033020 +033032 +090005 +092004 +012001 +092004 +023007 +092004 +059003 +113063 093001 +093001 +092004 +033020 +113068 093001 +093001 +092004 +088001 +033021 +036003 +113075 092004 +033032 +088003 +033045 +067006 +092004 +024001 +092004 +012001 +092002 +093001 +093001 +113088 067001 +058007 +028003 +092004 +025011 +113095 037004 +092004 +037004 +092004 +037004 +113101 012001 +092004 +037004 +092004 +113107 023007 +014006 +015005 +085005 +113112 024001 +092004 +009001 +069003 +024001 +074 +113119 087002 +113121 076 +067005 +072001 +092004 +057003 +113127 092004 +067002 +041003 +033032 +113132 088027 +069003 +025004 +113136 057003 +071003 +089023 +113140 012001 +092004 +090014 +092002 +059003 +059006 +113147 025010 +088001 +059006 +113151 042002 +088001 +057008 +113155 057008 +065001 +113158 089006 +088001 +113161 092004 +067006 +113164 090013 +092004 +070 +023007 +091004 +093001 +092004 +035005 +037009 +013004 +092004 +088015 +033040 +113178 033052 +092004 +033009 +028002 +113183 033016 +113186 092004 +031010 +031008 +092004 +088009 +113193 093001 +053009 +093001 +093001 +090001 090010 +025001 030004 +012001 +089005 +033025 +023007 +092004 +089020 +093001 +093001 +093001 +025003 +009005 +088009 +088010 +022007 +090003 +012001 +012001 +113217 093001 +093001 +092004 +012001 +092002 +033036 +113224 092004 +012001 +113227 053001 +067006 +010002 +113231 053003 +026 +064 067002 +068004 +113236 092004 +089004 090006 +113239 029004 +113241 092004 +033012 +092001 +067005 +113246 067005 +025002 +113249 034006 +029002 +113252 092004 +008003 +089009 +025011 +059004 +057007 +029002 +092004 +113262 073 +031010 +113265 085005 +067002 +113268 092004 +010002 +113271 093001 +113273 092004 +010002 +113276 093001 +113278 033028 +113283 089007 +113285 089007 +029002 +113288 068001 +092004 +057008 +092004 +012001 +113297 090001 +092004 +085002 +092004 +008002 +092001 +089007 +113305 090012 +092002 +092004 +012001 +012001 026 +025022 +089023 +076 +113314 025003 +113316 032004 088012 +089008 +113319 025018 +092004 +033020 +092004 +012001 +092002 +069003 +092001 +092004 +037008 +092004 +089023 +024006 +092004 +033015 +089005 +076 +012001 +092004 +021006 +092002 +113341 033029 +033029 +088003 +113345 089005 +092004 +042002 +092002 +089023 +089005 +057001 +030004 +113354 088009 +092004 +057008 +092002 +089020 +093001 +093001 +067006 +067006 +067006 +113365 028003 +067002 +089012 +092004 +024001 +092004 +021006 +092002 +093001 +093001 +089023 +013004 +092004 +023007 +089023 +028003 +023007 +113383 023007 +089012 +092004 +033015 +089009 +113389 037005 +092001 +033019 +113393 053009 +113395 033017 +090010 +113398 089007 +089017 +113401 024006 +089023 +113404 025018 +089007 +028001 +113408 031009 +089017 +033028 +113413 074 +092004 +035005 +092001 +037009 +067006 +092007 +092004 + +018001 +058009 +072002 +033006 +113428 092001 +024002 +089013 089014 +031009 +113433 025003 +092004 +089020 +093001 +093001 +092004 +065003 088001 +035005 +037009 +089012 +012001 +088003 +092004 +085005 +089020 +092002 +028001 +113451 090006 +034002 035001 +092001 +059003 +092004 +113457 092004 +093002 +113461 093001 +113463 093001 +057008 +088010 +092004 +012001 +092004 +093001 +010001 +089007 +067001 +092001 +025013 +113477 092004 +006004 037008 +092001 +025018 +089023 +085001 +113484 093002 +025006 068006 +027004 +092001 +113489 027002 +013004 +092004 +092004 +012001 +013001 090013 +088010 +090003 +012001 +113499 092007 +092004 + +113503 059002 +113505 093002 +035002 +065003 +113509 028001 +089008 +009005 +092001 +113514 074 +089012 090002 +092004 +025008 088009 +092004 +089020 +093001 +093001 +113524 024002 +090003 +092001 +090001 +113529 033020 +113531 057008 +031009 +009001 +113535 075 +113537 089017 +058006 +033017 +024006 +064 +065003 088001 +055004 +093001 +093001 +092004 +055004 +090013 +092004 +092004 +041001 +041001 +089009 +092004 +055004 +025008 +113558 067002 +089017 +050 +113563 057008 +089010 +113566 072002 +050 +071005 +092004 +042004 +043 +060003 +092004 +043 +057009 +030001 +113578 033006 +089007 +013004 +113582 092004 +012001 +032004 +113586 059003 +029002 029004 +093001 +093001 +023007 +084001 +023007 +089003 +010002 +093001 +089005 +092004 +033015 +092001 +089004 089007 +113602 024006 +078005 +006004 037008 +064 +088015 +089023 +092004 +033019 +092004 +012001 +113613 037008 +089007 +113616 059003 +025015 +090009 +092004 +030006 +089009 +113623 092004 +090013 +021006 +092004 +089020 090001 +093001 +093001 +089022 +079005 +067005 +031009 +092004 +033006 +089007 091001 +113638 023007 +113640 023007 +113642 025015 +113644 037004 +113646 033022 034005 +092007 +034005 +092002 +113651 031009 031010 +092007 +031009 +068002 +089007 +088029 +113659 074 +113661 029002 +033016 +083006 090005 +092004 +012001 +113667 033051 +113669 092004 +065004 +089009 +020002 +092004 +024002 033015 +068006 +072001 +092003 +030007 +092004 +012001 +042004 +025018 +033017 +092004 +033019 +092004 +072001 +113689 092004 +088015 +033040 +013004 +089007 +078005 +078002 +053001 +059007 +113699 092004 +033006 +092004 +064 +023009 +084001 +113706 092006 +113708 093001 +113710 093001 +113712 089004 +092004 +072001 +031008 +033006 +023007 +067002 +013004 +113721 031008 +092004 +113724 031009 +089023 +092004 +079003 +089006 +092004 +012001 +113732 057001 +092004 +033005 033056 +113736 028001 +012001 +092004 +113740 092004 +113742 015004 +113744 088002 +059003 +092004 +053007 +092004 +053007 +012001 +089017 089023 +113753 079028 +007002 +113758 006016 +002007 +113761 002007 +089023 +113764 003006 +113766 002005 +113768 089023 +113770 089009 +065001 +089023 +113775 087004 +089008 +113779 079010 +113784 006016 +113786 065001 +053006 088003 +065004 +092004 +057001 +089009 +059003 +042002 +088001 +077 +089015 089023 +092004 +067008 +025002 +013004 +089015 089023 +068006 +088002 +031009 +025003 +022007 +089020 +092004 +033012 +092004 +012001 +090003 +053003 +026 +089015 089023 +092004 +032005 +113819 027001 +033050 +027006 +028001 032001 +113824 013004 +039005 +089015 089023 +071004 071005 +087005 +012001 +113831 039005 +089023 +013001 +088008 +090013 +059003 +033017 +025015 +089014 +088008 +036002 +092004 +039001 +113846 013004 +092004 +092004 +012001 +041005 +089008 089009 +028001 028002 +072001 +113855 030001 +084001 +092004 +092004 +012001 +021001 +037001 +090001 +092004 +089009 +092004 +092007 +025001 030004 +089015 089023 +113870 032002 +113873 061 +067008 +013004 +067005 +022004 +089007 +113880 092004 +009001 +025003 +025010 +088027 +088027 +033042 +010002 +036003 +025009 033036 +053006 +025003 +040001 +033042 +088011 +020001 +025010 +037007 +088012 +088027 +025010 +089023 +113903 025003 +057001 +058001 +053001 +113908 092004 +076 +092004 +034005 +113914 034004 +089007 +089003 +113919 092004 +015008 +113922 092004 +007002 010001 +113925 037001 +009003 +068006 +088038 +015024 +025002 +058006 +067005 +027001 +113935 067001 +032002 +032002 +072001 +113940 074 +113943 089014 +093001 +113946 093001 +039001 +093001 +061 +113952 039001 +092004 +072001 +009001 +088035 +092004 +026 030001 +065001 +089004 +092004 +031010 +089023 +113965 042002 +113967 059001 078002 +089007 +092004 +032005 +092004 +028004 +113974 059003 +064 +113977 092004 +092007 +013004 +089015 089023 +113982 027004 036004 +092001 +092004 +033017 +092004 +041001 +092004 +030004 +092004 +031009 +092004 +025015 +092004 +025003 +092004 +025015 +092004 +039009 +092004 +024006 +058004 +092001 +013004 +114006 093002 +114008 093002 +114010 093002 +058004 +039009 +025015 +089017 091002 +084001 +059003 +092001 +021005 +092004 +012001 +089015 089023 +089017 091002 +059003 +092004 +025001 030004 +041001 +053001 +089020 +093001 +093001 +039009 +089015 089023 +088015 +009001 +114036 088029 +059007 +114039 092004 +088015 +031002 +114043 031008 +089023 +114046 068002 +114048 092006 +027001 +114051 031006 +028001 029002 +090003 +114055 027001 +114058 067006 +067008 +028001 032001 +053001 +033005 +092004 +074 +114066 032004 +089008 +021006 +089012 +031010 +092004 +114073 093001 +093001 +059003 +033005 +033019 +114079 065005 +089009 +033017 +114083 033046 +114085 072002 +114087 033017 +092004 +114090 088002 +089009 +075 +114094 092004 +092004 +012001 +009001 +089008 +058004 059003 +042002 +088001 +075 +033031 +083006 +092004 +012001 +114108 093001 +093001 +092004 +067002 +056005 +023007 +114115 023007 +114117 092004 +024001 +092004 +114121 092004 +037004 +092004 +033015 033019 +092004 +033019 +068002 +067001 +067001 +033046 +033046 +025013 +089014 +059003 +025015 +114137 033017 +089007 091001 +114140 067001 +114143 092004 +072002 +033017 +031007 +089023 +089005 +092004 +057001 +025002 +114153 059007 +033017 +025001 +092004 +025001 +114159 089017 +089021 +092004 +072001 +092004 +031007 +068004 +089017 +084002 +092004 +033003 +031008 +114173 088011 +114175 059003 +024006 +090011 +042004 +053009 +092004 +035002 +114183 068003 +089007 091001 +092001 +067002 +053002 +114189 092004 +067001 +092004 +023007 +092001 +067002 +092004 +088001 +039005 050 +039005 050 +092004 +050 +068003 +092004 +031010 +036003 +067006 +013003 085002 +092001 +092004 +092004 +088002 +057008 +114213 038002 +092001 +092004 +012001 +092004 +088002 +056005 +114221 092007 +092004 + +114226 058007 +092001 +089023 +114230 059003 +092004 +025010 +092004 +024001 +092004 +068006 068007 +114239 092001 +067002 +089007 +093001 +092001 +035008 +025010 +092004 +067002 +041003 067008 +114250 015002 015004 +114252 093002 +093001 +114255 093002 +093001 +114258 093002 +093001 +114261 058007 +114263 092001 +093001 +015023 +015023 +114268 092003 +114271 092001 +065004 +090006 +035002 +089015 089023 +093001 +015004 +114279 093002 +092004 +006017 +114283 085004 +114285 093002 +114287 093001 +015006 +015023 +114291 092004 +006010 +078001 +092004 +006010 +093001 +092004 +002007 +078001 +020002 065003 088015 +092001 +013004 +038002 +092004 +092004 +012001 +089005 +092004 +042002 +092004 +114314 037009 +114316 078001 +039001 +092004 +092002 +033006 +114322 092004 +060003 +092001 +033049 +092004 +092001 +035001 +091001 +059003 +092001 +035008 +114334 092004 +029001 +089023 +092004 +012001 +092001 +085001 +114342 074 +092001 +089009 +090001 +092001 +092004 +033019 +033015 +114351 024002 +059003 +092004 +011002 +114356 021005 +084001 +008002 +004001 +021005 +092001 +092004 +012001 +089021 +059003 +042002 +088015 +114369 021006 +114371 092004 +037004 +092004 +092004 +001002 +114377 092004 +033037 +114380 092004 +067005 +092004 +067005 +072001 +033003 +093001 +114388 093001 +114390 092004 +093001 +010001 +093001 +085003 +114396 093002 +114398 093001 +085004 +114401 093002 +023009 +068006 068007 +067002 +067009 +015001 015006 +033003 +114409 093001 +114411 093001 +114413 093001 +114415 093001 +114417 092004 +011002 +059003 +092004 +012001 +090013 +092004 +026 +114426 092004 +088009 +114430 093001 +087005 +012001 +089017 +053009 +093001 +093001 +089005 +031009 031010 +030006 +012001 +114442 028001 +072001 +092004 +089005 +053001 +089006 089007 089009 +025004 +023007 +067005 +114452 033025 +092004 +088005 +012001 +067002 +067005 +067006 +114460 028003 +067001 +057001 +092004 +033006 +092004 +089012 090002 +033019 +114469 035005 +092001 +089005 +033032 +092004 +021006 +092002 +012001 +093001 +073 +009005 036004 +089004 089005 +057001 +031010 +088009 +114485 022007 +114487 012001 +012001 +114490 093001 +093001 +092004 +021006 +092002 +114496 089009 +085004 +114500 093002 +089009 +092004 +057005 +062002 +114506 037005 +089016 +001014 +053009 +064 +092001 +114513 033032 +089010 +092004 +114517 033048 +060002 +010004 +010004 +057001 +010002 +031009 +114526 033048 +088012 +114529 036003 +089007 +071004 +092004 +053009 +114535 089007 +012001 +037003 +033048 +114540 088027 +114542 088024 +114544 088037 +114546 088017 +114548 025002 +089023 +034008 +025010 +088012 +088002 +088003 +088011 +031006 +092004 +089005 +092004 +033017 +031009 071003 +033006 033019 +089008 089009 +114565 074 +114567 025013 +089012 089014 089025 +092004 +033017 +092004 +023008 +114574 092004 +033052 +033046 +089007 +114580 036003 +033040 +114583 031002 +078001 +092004 +063004 +092004 +011002 +114590 033008 +071005 +114593 059003 063001 +010001 +031008 +033017 +114599 071004 +088020 +057016 +089007 089009 +033006 +114605 063004 +092008 +057001 +092004 +053009 +093002 +067005 +033018 +088015 +088015 +023001 +088032 +092004 +033020 +114621 072001 +089007 +114624 089007 +033046 +092004 +088009 +089009 +072002 +089004 +092004 +031010 +114634 030001 +093001 +033003 +114638 033032 +009001 +031008 068004 +092004 +072001 +059003 +053003 +092004 +053003 +114648 092004 +088034 +114651 031009 +092004 +053003 +089023 +088034 +092004 +114658 092004 +026 +114661 092004 +026 +012001 +028001 +033016 033021 +114667 092004 +042002 +034005 036004 +114671 025017 +114673 036003 +114675 089004 089009 +059003 +042002 +088001 +065001 +089023 +114682 033006 +114684 066 +092004 +023008 +033017 +009002 +114690 088011 +088006 +088012 +023008 +092004 +031010 +092004 +025003 +092004 +025015 +009003 +064 +090006 +041001 +053001 +114706 033042 +114708 006019 +114710 087005 +033017 +089009 +033017 +092004 +067005 +114717 025003 +025003 +088012 +088003 +046 +088001 +036003 +092004 +092004 +010004 +089009 +114729 092004 +033006 +092004 +012001 +033042 +092004 +067005 +064 +025013 +032004 +089004 +059003 +092003 +013001 +058009 +088001 +042002 +089004 +092004 +033017 +088005 +088006 +033006 +072002 +033045 +089009 +092004 +039001 090003 +039001 +025018 +114760 033006 +090006 +092002 +092004 +088015 +087005 +057001 +057001 +036003 +089004 +059003 +025008 +114774 033052 +114776 057021 +089023 +058004 059003 +031009 +065003 088001 +028003 +089009 +092004 +033017 +092004 +092004 +021006 +092002 +012001 +079004 +089004 +059003 +089007 091001 +024001 +092004 +088009 +092004 +012001 +021006 +059003 +009001 +033017 +092002 +090006 +030002 +092004 +053001 +114809 092004 +041003 +025002 +088012 +114814 088002 +114816 053001 +041001 +067007 +092004 +067002 +067008 +085003 +092004 +025011 +025004 +089017 +024001 +092004 +079005 +092004 +087003 +012001 +114834 021006 +092002 +093001 +093001 +114839 023007 +114841 090009 +092002 +089009 +037010 +092002 +089021 +059003 +088018 +114850 053003 +114852 011002 +057001 058007 +025006 +065003 088001 +042002 +114858 033006 +114860 025013 +114862 033046 +089013 +078004 +037003 +092004 +114868 076 +029002 +092004 +037004 +037003 +036003 +036003 +089004 +059003 +042002 +065003 +077 +114881 092004 +033042 +039005 +114885 088008 +078004 +088008 +028003 +090013 +059003 +009001 +089007 +114894 067001 +114896 092002 +032005 +036003 +031008 +037001 +025002 +114903 025002 +058006 +013001 +088015 +114908 088022 +041001 +088026 +088026 +092005 +089023 +114915 092004 +088009 +114918 092004 +025003 +092004 +021006 +092002 +012001 +024001 +114926 089007 +042002 +092004 +089004 +088002 +114932 042002 +092002 +089023 +089005 +092004 +092004 +088010 +021006 +092002 +089012 +053005 +041005 +114945 058011 +012001 +088003 +114949 059006 +090013 +092002 +059006 078001 +090001 +093001 +093001 +092004 +021006 +092002 +089009 +034005 +092004 +092007 +088009 +057009 +013002 +089005 +025004 +023007 +067005 +031009 +092004 +033006 +089017 +089004 +114976 025001 +114978 033031 +089009 +030001 +088001 +042002 +035001 +092004 +031010 +012001 +114989 088001 +114991 065005 +092004 +009001 +089023 +032005 +033050 +114998 010002 +115002 039005 +033033 +013004 +089007 +115007 065005 +115009 065004 +039002 +009001 +067002 +115015 060003 +033047 +034004 +028001 +115020 092004 +064 092007 +088035 +115024 088038 +115026 030007 +115028 015004 +084002 +115031 093001 +115033 093001 +068006 068007 +115036 084002 +092001 +084002 +093002 +089007 +083001 +067009 +030005 +093001 +092004 +056007 +115048 093001 +068006 +015004 +089009 090006 +092004 +092004 +057005 +089015 089023 +027001 +089017 +092004 +092002 +088001 +042002 +068006 +089008 089009 +092004 +071005 +057005 +089009 +115070 065004 +033003 +115073 092004 +089020 +092001 +059003 +033003 +092004 +025003 +092002 +013001 089014 +031010 +092004 +088009 +089020 +059003 +115088 093001 +037008 +093001 +093001 +115093 093001 +092004 +011002 +093001 +092004 +025003 +115100 042004 +092002 +115103 093001 +092004 +011002 +115107 093001 +092004 +034001 +092002 +115112 092004 +089004 +007002 +115116 011002 +115118 088009 +115120 022007 +115122 012001 +012001 +092002 +115126 012001 +093001 +093001 +025009 033036 +092004 +012001 +092001 +067005 +029004 +115136 090011 +067007 +092004 +033013 +092001 +033015 +115143 092004 +025003 +115146 092004 +031009 +115150 090013 +092004 +012001 +093001 +115155 090013 +059003 +092004 +011002 +089009 +092004 +034001 +092004 +031009 031010 +115165 013004 +013002 +089004 089008 090006 +028001 +059003 +088001 +092004 +083003 +092002 +089009 090006 +093001 +089007 +025011 +115180 025013 +090013 +089006 089007 090002 +092004 +025003 +115186 089007 090006 +092004 +026 +092004 +011002 +023006 +090001 +115194 011002 +089008 +115197 089020 +093001 +025014 +090013 +033032 +115203 092004 +066 +089007 +092004 +025003 +089023 +033012 +064 +115212 064 +093001 +009002 +115216 067002 +115218 037008 +093001 +093001 +033012 +115223 089004 090009 +092004 +092001 +036004 +023003 +013001 083003 +092004 +037008 +115232 093001 +092004 +067001 +115236 065004 +115238 067002 +115242 092001 +065004 +015004 +115247 092004 +115250 092004 +092001 +025003 +092001 +025001 +115257 092001 +013004 +089009 +090009 +115262 092001 +035002 +115265 092004 +037008 +092004 +033015 +089023 +089021 +092004 +092003 +031001 031003 +092004 +090011 +025001 +089009 +115279 089007 +089004 089005 +071004 +092004 +065003 +115286 089023 +115288 025005 +089007 +071002 +090010 +115293 085002 +115295 067008 +089009 +067005 +092004 +057009 +067006 +064 +087005 +089023 +087003 +087005 +011002 +025003 +078001 +092001 +089017 089023 +059002 +078002 +115315 013001 089020 +026 +115319 012001 +089008 +115322 092001 +031001 +034001 +034007 +092004 +064 +092001 +089017 089023 +115331 092004 +115333 088002 +115335 057018 +115337 092001 +057020 +092001 +093001 +033005 +092004 +092001 +008002 +092001 +057012 +115349 033006 +115353 092003 +092001 +057018 +069001 +011002 +092001 +115360 035001 +089020 +012001 +023006 +092001 +092004 +026 +013001 089020 +093001 +031009 033028 +092004 +036003 +115373 033005 +115375 028001 +115377 089017 091002 +078002 +115380 033006 +090011 +089017 +067002 +089017 +077 +092001 +007003 034008 +089007 +025004 +115391 089012 +092004 +033013 +115395 057008 +115397 033003 +115399 093001 +092004 +037008 +092001 +089020 +093001 +093001 +093001 +093001 +093001 +093001 +092004 +042004 +092001 +092004 +088009 +092004 +012001 +093001 +093001 +089020 +092004 +026 +115423 063004 067001 089014 +115425 058004 089014 +067002 +033006 +092004 +010002 +083003 090001 +092004 +053009 +092004 +012001 +067002 +061 +092004 +067008 +115440 033006 +092002 +115443 012001 +115445 037005 +057009 +059003 +090001 +115451 042003 +092004 +001001 +115455 013001 +014006 +092004 +014006 079005 +115460 058009 +092004 +058001 +092004 +115465 013001 +092004 +059003 063001 +092004 +033002 033006 +092004 +076 +092004 +053003 +092004 +088038 +090011 +017002 +083005 +082002 +092004 +012001 +083003 +001002 +078005 +087003 +013002 +092004 +012001 +078005 +058006 +033009 +115493 092004 +057009 +089007 +115497 092004 +012001 +033006 +067001 +012001 +092001 +115505 092001 +067010 +023003 +115510 067002 +092001 +115513 092004 +115515 012001 +115517 092004 +115519 092001 +115521 012001 +115524 089017 +015023 015024 +092004 +010002 +084002 +092004 +001006 +033006 +115533 053007 +092004 +059003 +012001 +012001 +115539 089023 +089004 090013 +092004 +012001 +033006 +092004 +013001 +092004 +012001 +092004 +014002 +115551 092004 +035002 +092004 +002003 +002003 +089023 +089004 090013 +092004 +012001 +092004 +012001 +092004 +006015 037004 +115565 067005 084002 +092004 +067008 +092004 +067005 +115571 092004 +006023 037004 +092004 +088002 +006023 037004 +092004 +037004 +115579 025003 025010 +088002 +115582 088026 +088018 +089007 +115586 037005 +115588 092004 +012001 +092004 +012001 +115593 006019 +025011 +078002 +092004 +034001 +115600 012001 +115602 067002 +067003 +092004 +001006 +007003 +115608 042002 +092004 +009001 +115613 092004 +001002 +092004 +013003 020003 +115619 013003 +115621 059003 +067005 +064 +006017 +115626 064 +006017 +079027 +092004 +064 +006017 +115633 057010 058006 +115636 092004 +058005 +115640 092004 +067009 +115644 013001 +115646 089004 090013 +115648 092004 +012001 +033006 +067001 +017002 +087003 +082002 +092001 +067006 +071001 +085002 +092004 +039001 +115662 006015 037001 +092004 +037001 +115666 069004 +059003 +115669 035002 +012001 +089009 +035002 +015004 +090009 +092004 +067002 +057009 +021006 +089007 +115681 071004 +078002 +031006 +092002 +092004 +024002 +115689 031008 +089007 +115692 092004 +090001 +012001 +033006 +033006 +013002 +028003 031009 +115700 059003 +036003 +115703 036003 +057009 +088002 +038002 +092004 +092002 +021004 +030002 +078002 +021006 +115714 067003 +090011 +033006 +090001 +092004 +012001 +090001 +092004 +024002 +090013 +092002 +028003 031009 +033020 +092004 +012001 +089017 +033056 +089017 +033056 +115734 058006 +076 +115737 012001 +088003 +057008 +089005 +092004 +092004 +025001 +089007 +115746 012001 +037001 +092004 +001006 +092004 +067002 +089004 090006 +115754 033006 +115756 033016 +083002 +115759 033006 +115762 009001 +115764 029002 029004 +092004 +115767 010002 +009001 +115770 035004 +092004 +087004 +092004 +059002 078003 +115776 078002 +012001 +079005 087002 +115780 087002 +087002 +092004 +059003 +037001 +037001 083009 +092004 +037001 +092004 +115790 067002 089012 +092004 +037001 +092004 +092004 +059003 +092004 +085003 +092004 +037001 +115801 067002 +067006 +024001 +092004 +092004 +059003 +037001 +115809 024001 +092004 +059002 +115813 078002 +012001 +087004 +093001 +089007 +092004 +024006 +092004 +023007 +079005 087002 +115824 087002 +087002 +089009 +025008 088009 +012001 +090009 +059003 +090013 +023007 +089007 +066 +092004 +090010 +115838 092004 +059003 +115841 090001 +115843 092004 +059003 +115846 009005 036004 +084002 +001002 +015023 +092004 +036001 068001 +092004 +021006 +092004 +089012 +024006 +088004 +089007 +115860 092004 +053006 088003 +115863 092004 +053006 088003 +089003 090003 +060002 063001 +059003 +089007 +115870 089007 +115872 025018 +010003 +092004 +033009 +033006 +033015 +092004 +033009 +115881 092004 +010003 +092001 +083003 +083003 +011003 +033007 +115890 067002 089017 +092001 +115893 031009 +083008 +092004 +115897 089017 +091003 +092001 +115901 092004 +009005 +115904 092001 +057008 +092004 +012001 +089008 +089007 +092004 +009005 +009001 057008 +008002 009001 +115915 008002 +115917 092008 +064 +057001 +092004 +058005 +089009 +089012 +092004 +023007 +013003 +092004 +092004 +076 +092004 +023007 +115935 092004 +012001 +115938 037010 +115940 059001 +025022 +023007 +067007 +067005 +092004 +023007 +037001 +037001 +115950 089007 +115952 091002 +012001 +030002 035001 +089023 +010002 +093001 +030002 035001 +084001 +071004 071005 +089004 +058004 +092004 +011002 +064 +089009 +013002 +088010 +115970 031009 +053009 +092004 +089004 +092004 +012001 +089009 +092004 +040002 +092004 +088038 +092004 +011002 +089007 +089007 089012 +092006 +024006 +092008 +088038 +074 +092004 +088038 +035001 +084001 +011002 +011002 053006 +033029 +001002 012001 +034001 +030001 +092004 +053009 +116003 053009 +092004 +033021 +092002 +093001 +031009 +116010 092004 +037005 +092008 +064 +116015 093001 +083003 +059003 +092004 +007002 010001 +092004 +089007 +116023 033037 087002 +116025 078002 +093001 +065002 +089005 +059002 078005 +116031 087002 +116033 092004 +007002 +092004 +045 +092004 +089007 +059003 +007002 +045 +090001 +116044 089017 089023 +092004 +059003 +045 +012001 +089017 +091001 +093001 +031009 +083003 +059003 +092004 +007002 +092004 +064 +035002 +089009 +033020 +092004 +033006 +116065 093001 +064 +012001 +037001 +092004 +010001 +092004 +116073 010001 +116075 092002 +116077 092004 +025014 +116080 092004 +033039 +092004 +025004 +116087 057001 +089008 +089007 +033006 +092004 +012001 +092004 +088003 +116096 067010 +092004 +033006 +092004 +024002 031007 +116102 088028 +092004 +026 +116106 064 +067002 067007 083003 +092004 +039007 +067002 +092004 +067008 +092004 +027004 +083003 +092004 +001013 +083002 092006 +027004 +092004 +010002 +116123 089012 +027004 +116126 024001 +092004 +042002 +092001 +067005 +067009 +089008 +088024 +092004 +010001 011001 +116138 033006 +067005 +031008 +092004 +026 +089017 089023 +092004 +116146 027001 028001 032002 +092004 +041001 +092001 +064 089008 +033054 +013001 089014 +092004 +088024 +092001 +089010 +015008 +084002 +092004 +023006 +092001 +027006 +011002 +116167 083003 +116170 026 +088015 +031010 +089004 089008 090006 +092004 +034002 +089021 +012001 +023007 +089023 +025013 +092004 +067002 +059003 +067005 +067006 067007 +116187 092004 +067010 +033009 +089009 +116192 088028 +116194 063004 +116196 031002 +092004 +088015 +089007 +034001 +092004 +093001 +013002 +089010 +092004 +067003 068001 +092004 +031009 +067006 +067003 +031009 071003 +057001 +067002 089004 +092004 +033006 +116217 067010 +092004 +033006 +092004 +024002 031007 +116223 088028 +092004 +026 +116227 064 +067002 067007 083003 +092004 +039007 +089007 091001 +116233 024002 +039007 +091001 091002 +116237 059003 +092004 +015004 +084001 +093002 +090001 +093001 +089017 +116246 088024 +067005 +067009 +069004 +092004 +088038 +116253 092004 +008001 +015012 +083003 +092004 +001013 +089017 +116261 033054 +116263 015008 +084002 +092004 +023006 +092004 +089010 089023 +116270 092004 +031010 036003 +089015 +024001 032002 +116276 074 +015008 +089007 +031009 +089008 +025022 +116284 013003 +033025 +015008 +084002 +092004 +023006 +092004 +031005 +116293 063004 +116295 013001 065005 +089007 +116299 033015 +064 +092007 +089023 +116304 035001 +092004 +033006 +092004 +024002 +092007 +116312 092004 +031009 +092004 +024002 +089007 091001 +015008 +084002 +092004 +023006 +092004 +031009 031010 +064 089007 +033006 +064 +033054 +013001 089014 +092004 +088024 +092001 +089010 +015008 +084002 +092004 +023006 +092001 +089011 +092004 +042002 +067006 +042003 +001001 001006 +013003 +089007 +033006 +083002 +090006 +092004 +060003 +061 +116352 023006 +092004 +012001 +116356 092004 +067009 +092004 +060003 +089021 +059003 +092004 +042002 +092004 +116366 083003 +116368 067002 +089010 +015008 +084002 +092004 +023006 +092001 +089008 +089007 +013004 +116379 015008 +084002 +092004 +116383 092004 +067002 +033015 +116387 015008 +089007 +031010 036003 +067002 +030005 +116393 067009 +067010 +083003 090001 +093001 +033006 +067002 +059002 +067005 +064 +033006 +116404 067010 +092004 +033006 +092004 +024002 031007 +116410 088028 +092004 +026 +116414 089007 +116416 092004 +093001 +023006 +071003 +116421 089004 090006 +058006 +067009 +033006 +067002 +116427 089008 +085004 +067009 +092004 +011002 +092004 +012001 +089007 +092004 +015008 +084002 +092004 +023006 +092004 +116442 092004 +023006 +089021 +092004 +042002 +092004 +064 +116450 092004 +057001 +092004 +012001 +089008 +068006 +015008 +084002 +092007 +092004 +023006 +089009 +116463 013001 083003 089007 089012 +092004 +058005 +058009 +092004 +031010 036003 +116470 015012 020003 +089007 +092004 +033006 +092004 +012001 +023007 +116478 013004 +116480 079019 +078002 +059003 +006007 +079018 +116486 015003 +084002 +063006 +023007 026 +116491 026 +116493 008002 +116495 008002 +116497 056005 +030001 +116500 030004 +026 +116505 042003 +028005 +083006 +092004 +116510 059003 +028004 +116513 028004 +092004 +024001 +092004 +089004 +116519 092002 +092004 +089007 +089008 +116524 053009 +087003 +015001 015003 +092004 +001002 +093001 +092004 +012001 +092004 +012001 +018001 +092004 +033021 +089007 +116539 053009 +116542 074 +025003 +092004 +074 +092002 +089023 +088038 +089004 +058004 +089005 +064 +089021 +088038 +089008 +015005 +089013 +025014 +092004 +006015 037004 +092004 +025008 088009 +089009 +057009 +088010 +116567 025008 088009 +013001 +089009 +067001 +035001 +089007 +059003 +053009 +089003 090003 +009001 +030006 +090009 +009001 +037005 +092004 +089004 +092004 +012001 +089009 +057008 +089017 +057008 +116590 053002 +090006 +088038 +074 +088008 +092004 +028001 +116598 031008 +089007 +116601 092008 +013001 085002 +074 +116605 089007 090010 +092008 +071005 +064 +090009 +092004 +011002 +116615 092004 +057008 +089004 +088038 +116623 057007 +092004 +087002 +089023 +033029 +116629 092004 +012001 +064 +116633 093001 +061 +089017 +092004 +093001 +116640 087002 +013002 +053009 +089023 +092004 +033006 +116647 092004 +012001 +092001 +116652 092001 +067010 +023003 +116656 064 +116658 083003 +058006 +033006 +116662 053009 +067005 084002 +092004 +067005 +089005 +092004 +058004 +093001 +116671 067007 +092004 +067008 +092004 +023007 +092004 +089017 +033012 +116680 033012 +116682 092004 +074 +021005 +092004 +084001 +023007 +089013 089022 +025012 +078001 +116692 008003 +015024 057008 +116695 024002 +089007 +092004 +053001 +089011 +116701 012001 +027001 +089007 +116705 024006 090013 +092004 +036003 +116709 088004 +013002 +059003 +092004 +036003 +092004 +089007 +021006 +067005 +033009 +090001 +092004 +012001 +053009 +089005 +092004 +058004 +093001 +089004 090006 +116730 092002 +092004 +033006 +116734 033010 +033006 +089007 +032005 088032 +013001 +092004 +024002 +116743 071004 +116745 033017 +089007 +092004 +067005 +067002 +116751 071004 +092004 +033017 +116756 092004 +058003 +092004 +058003 +092004 +033006 +092004 +012001 +116765 013002 +116767 071004 +005001 +116770 079003 +005001 +089007 +059003 +092004 +023001 +005001 +028001 +033006 +088002 +089007 +009004 +116785 092004 +079003 +005001 +009001 088013 +092004 +089007 089012 +092004 +042002 +092004 +032004 +036002 +116797 089008 089009 090006 +030007 +116800 088001 +116802 088015 +089008 +015004 068004 +092004 +092004 +058003 068001 +092004 +093001 +033005 033006 +084002 +092004 +088004 088013 +013002 +116816 067002 +085002 +089006 +041005 +089021 +023007 065004 +042002 +116824 031009 +084002 +012001 +116828 053003 053005 +116830 085002 +008002 +023007 +023007 +116835 056005 +067005 +116839 090011 +089010 +013004 +092004 +012001 +116845 071001 +092004 +060005 +014006 +116850 090013 +092004 +057008 +092004 +012001 +116856 034001 +012001 +088003 +013002 +116861 090013 +088001 +012001 +033006 +116866 076 +067002 +067008 +116870 034002 +067002 +013002 +084002 +041005 +020004 +116877 092004 +012001 +092004 +012001 +116882 025018 +089007 +002005 +092004 +014005 +092004 +083008 +092004 +116891 067001 +002004 +116894 023011 +003003 +065004 066 +092007 +090009 +116901 043 +090013 +033037 033055 +090001 090003 +092004 +012001 +116908 023011 +003003 +116911 003003 +065001 +116914 033055 +067002 083005 +116917 092004 +067003 089008 +078005 089008 +014008 +116922 025003 +033028 +089004 +116926 092004 +065003 +116929 018001 090012 +021006 +116934 033006 +116937 088002 +092004 +012001 +029003 029004 +092004 +042004 +116945 092004 +025003 +116948 028003 +090006 +092004 +009001 033009 +092004 +035002 035004 +116955 035002 035004 +092004 +011002 +116959 025002 +059003 +116962 092004 +058005 +025006 +028003 +078005 089004 089009 +092004 +031006 +092004 +025004 +067006 +067003 +116975 088032 +013002 +116978 041004 +092004 +089012 +031009 +116983 025015 +057009 +092004 +033025 +116988 092004 +093001 +033025 +092004 +012001 +089007 +090007 +092004 +116997 033054 +116999 033054 +117002 033006 +091002 +067009 +088009 +088009 +117009 059007 +059007 +117013 061 +025015 +057007 +092004 +033025 +117019 009001 +090007 +092004 +087003 +033054 +117025 092004 +059003 +033050 033052 +061 +089009 +028003 +092004 +033054 +089004 +117035 078002 +025001 030004 +024001 072001 +092004 +057009 +092004 +033025 +092004 +013002 +092004 +030004 +092004 +092004 +012001 +031003 +033054 +089009 +089012 +060002 +013004 +013002 +089004 +117058 071001 +033018 +012001 +078001 +025013 +117064 092004 +021004 +018001 +092004 +013003 +025004 +117072 064 +006008 +092004 +023007 +117077 021003 +117079 031009 +117081 015008 +117083 092004 +083003 +092004 +006017 +083002 +036001 +093001 +090009 +092002 +015008 +089005 +092004 +058004 +093001 +053009 +013002 +067005 084002 +092004 +067005 +117104 092004 +093001 +037004 +093001 093002 +053009 +092004 +012001 +092004 +012001 +092004 +013004 +093001 +015007 +084001 +092004 +020004 +092004 +037004 +117123 033055 +092004 +117127 060004 +063004 +059003 +057008 +093001 +089017 +060003 +033010 +037004 +088002 +089017 +067002 +117140 037004 +093001 093002 +117144 037004 +022007 +010002 +010002 +010002 +069003 +067003 +067008 +069003 +023007 +067003 +117157 064 +092004 +012001 +092004 +012001 +068002 +053009 +117165 092004 +067005 +089017 +032002 +087003 +117172 060004 +093001 +092004 +010002 +117177 063004 +092004 +057021 +089017 +091001 +092004 +089003 +092004 +010002 +093001 +092004 +053009 +057009 +033032 +117192 057008 +089005 +092004 +033005 +092004 +011002 +117200 092004 +011002 +092004 +089011 +015004 023003 +084001 090003 +092004 +008002 +093001 +117210 092004 +117212 010002 +089003 +092004 +057008 +093001 +117218 092004 +117220 092004 +033025 +033055 +117224 089021 +059003 +033050 033052 +092004 +087004 +090001 +092004 +087003 +033055 +117234 089023 +092007 +060004 +023007 +009001 +057007 +089023 +083001 +033020 +117244 023007 +117246 033010 +033010 +033006 +090001 +093001 +089017 +093001 +092004 +060004 +057007 +057008 +117258 067006 +083003 +092004 +008002 +092004 +010002 +117266 013004 +092004 +093001 +091001 +089008 +117272 088004 +089012 090001 +092004 +053009 +053009 +117278 089007 +092004 +011002 +090006 +092004 +033033 +117285 059008 +057005 071004 +117288 092004 +058004 +093001 +013003 +058006 +053009 +117296 089005 +092004 +058004 +093001 +033009 +117302 013002 +092004 +053009 +117306 071005 +117308 033033 +013002 +013004 +117312 090006 +117314 033006 +117316 010001 +058006 +034003 +090003 +117321 092004 +068002 +092004 +006015 +117326 028004 +117328 090003 +093001 +010002 +092004 +012001 +092002 +090006 +117336 010001 +089004 090006 +053009 +092004 +033005 093001 +033006 +117343 078002 +059008 +032003 +117347 089007 089010 090006 +089005 +092004 +064 +093001 +013003 +053009 +058006 +117356 013002 085001 +117358 089004 089005 +033033 +033032 +009001 026 +089023 +089004 089005 +076 +023007 +013001 +117368 033020 +117371 053009 +067005 084002 +092004 +067005 +089005 +092004 +058004 +093001 +117380 089023 +013001 076 +013004 +033032 +013004 +089007 +092004 +092004 +079013 +117390 065005 +117392 092004 +088004 +092004 +033005 +089023 +068001 +065003 +025004 +089012 +117402 015005 +092004 +012001 +117406 089005 +078005 +117409 089021 +033054 +117412 089023 +092004 +089021 +033054 +117417 013002 +053009 +089023 +092004 +089012 +033054 +090001 +092004 +033006 +090013 +092004 +033054 +012001 +117432 031008 +117434 053009 +067005 084002 +092004 +067005 +089005 +078005 +117441 065003 +034005 057008 +070 +013002 +093001 +117447 089023 +092004 +059001 +117451 013002 +053009 +089007 +092004 +023007 +013004 +068002 +089023 +092004 +089007 +092004 +013003 +092004 +067005 084002 +092004 +067005 +013002 +117469 092004 +053009 +089007 +117473 074 +021006 +067005 084002 +092004 +067005 078004 +092004 +015005 +090001 +092004 +092004 +012001 +067005 +023007 +089009 +092004 +033012 033035 +090009 +092004 +117492 092002 +117494 066 +064 092007 +053009 +088003 +088001 +053004 +063007 +089021 +092004 +088038 +117505 081002 083009 +092004 +001002 +013001 +117512 089016 +067005 +071004 +064 +092004 +053009 +060003 +090009 +092004 +057001 +088038 +053002 +053002 +067002 +092004 +092004 +011002 +117531 042002 +060005 +117534 053002 +117536 092004 +033005 +009001 +037005 +053009 +117542 074 +117544 092004 +033006 +092004 +033054 +092004 +067002 +092004 +033005 +012001 +067005 084002 +092004 +067005 +088004 +117558 033003 +090006 +092004 +033006 +117563 064 092007 +053009 +117566 017002 +083005 +082002 +092004 +006015 +092004 +012001 +083003 +092004 +001002 +035002 +092004 +007002 088003 +117580 092004 +007002 +092004 +070 +117585 045 +092004 +012001 +117589 009001 +117591 059003 +053009 +117594 092004 +057008 +117597 057008 +089015 +053002 +037005 +089007 +071005 +117608 057008 +117610 091001 +117613 083008 +001006 +071003 +069003 +117618 053009 +117620 092004 +057008 +089005 +033005 +092004 +057008 +117627 058009 +117629 058010 +092004 +001002 +053001 +064 +028003 +093001 +067002 +045 +092004 +007002 +117641 033006 +030002 +042003 +059003 +089005 +092004 +058009 +092004 +033010 +117651 083008 +092004 +001007 +117656 058006 +035002 +090013 +078005 +117662 031003 +065003 +034005 +117666 089006 +065003 +033025 +033033 +117672 092004 +060003 +092007 +117676 088038 +071003 +117679 060003 +080001 +025001 057007 +117683 033048 +092004 +033006 +091002 +067008 +117689 033006 +012001 +117692 013003 068003 +037001 +092004 +011003 +093001 +117699 092004 +011003 +093001 +034005 +028003 058011 +117705 089005 +092004 +034005 +117709 013001 +092004 +010002 +092004 +083008 +067008 +018001 +092001 +092004 +008002 +092004 +015023 +092004 +084001 +001011 +093002 +117726 092004 +117728 068002 085003 +083003 +092004 +034005 +092001 +092001 +030002 +092004 +033006 +012001 +117740 092004 +034005 +117743 034005 +092004 +011003 +093001 +067002 +092004 +067008 +092007 +033006 +012001 +085002 +033033 +092001 +084002 +092004 +026 +092004 +117761 083008 +026 +092004 +033005 +092004 +117768 092004 +117770 012001 +117772 092004 +117774 092001 +117776 011002 +117778 069002 +117780 033017 +059003 +092004 +011003 +092004 +117786 059003 +092004 +011003 +092004 +033006 +028001 +092004 +012001 +117795 059003 +028001 +092001 +084001 +078001 079028 +084002 +078001 079028 087003 +092004 +117804 088010 +117806 092004 +088002 +092004 +117810 092004 +088038 +092004 +069002 +117815 029002 029004 +067006 +067002 089012 +092004 +033006 +058011 +067005 +092004 +060003 +089017 +092004 +067005 +117828 067005 +067002 +013003 +091001 +089023 091002 +117835 092004 +060003 +033033 +053001 +117840 092004 +007002 +001006 +117844 077 +007002 +092004 +060003 +083003 +117851 092004 +006014 +117854 092004 +006015 +117857 092004 +053002 +092004 +053002 +117862 033006 +007003 088003 +117865 083010 +092004 +060003 +006017 +007002 +092004 +033006 +007003 +007003 +090006 +002007 +006015 +117878 092004 +006016 +092004 +034005 +079025 +083002 +002007 +083003 +117887 006016 +002007 +090006 +092004 +005001 +117893 092004 +006023 +093001 +092004 +023011 +117899 092004 +006010 +092004 +034005 +117904 083009 +092004 +006013 +014006 079005 +014007 +092004 +040002 +090006 +117914 071001 +067002 +033006 +063004 089004 +063004 +117922 077 +089023 +084002 +092004 +060003 +007002 +067001 067007 +067001 +015008 +092004 +053009 +092004 +053001 +068003 +089023 +084002 +092004 +060003 +060005 +092004 +067009 +117944 092004 +053009 +117947 089021 +008002 +117950 015024 057008 +090009 +117954 092004 +092004 +011002 +088038 +117959 028003 +092004 +012001 +092004 +088003 +067006 +028003 +092004 +092004 +007003 088003 +001016 +067006 +092004 +060003 +007002 +117975 013003 +117977 033003 058010 +067005 067006 090006 +092004 +067001 067005 067008 +092004 +067002 +089005 +117986 057008 +117988 053002 +015024 057008 +117991 074 +089004 +026 +088004 +092004 +053001 +117998 037001 090006 +005001 +118001 005001 +118003 058006 +053003 053005 +033033 +008001 +067006 +067005 +062002 +013003 076 +118012 015006 085001 +093001 +053009 +092004 +013002 +088001 +084003 089012 090002 +092004 +118022 079029 +007002 +118025 042003 +118030 092004 +042003 +069003 +089012 090002 +008002 +004001 +118037 004001 +118039 089012 090002 +092004 +057001 +008002 +015008 +060005 +084002 +092004 +007003 088003 +067005 +037010 +090013 +118053 092004 +008002 +004001 +118057 004001 +118059 014008 +004001 +053003 +092004 +053004 +053006 +089009 +092004 +092004 +008002 +053003 +078001 +078002 +092004 +008002 +092004 +093001 +118077 089012 090001 +012001 026 +067005 +118081 057008 +088003 +092004 +012001 +053003 +092004 +026 +092002 +089021 +065004 +042002 +089009 +092004 +053001 +012001 +023007 +118098 089007 +118100 034005 +058011 +031003 +118104 089009 +023007 +013004 +089009 +037010 +092004 +067007 089006 +092004 +060003 +034005 +036003 +057007 057009 +092004 +033029 +092004 +033025 +092004 +067005 +057009 +118124 083002 089004 +057008 +071004 +070 +023007 +092004 +057008 +118132 057008 +089006 090006 +023007 +071003 +089007 +118139 074 +118141 023007 +092004 +057008 +084001 089007 +069003 +092004 +060003 +089021 +008002 +013003 +118152 033006 +059003 +033032 +089005 +092004 +033005 +090001 +093001 +059003 +092004 +011002 +018001 +092004 +008002 +092004 +004001 +118169 092004 +004001 +089020 +002004 +118174 006017 008002 +079007 +118177 003003 +118179 092004 +092004 +033005 +118183 059003 +092004 +011002 +047003 053003 +033006 +118189 092004 +008002 +092004 +057008 +118194 033032 +090013 +118197 092004 +012001 +118201 092004 +007002 +118204 059003 +092004 +006001 006016 +092004 +053001 +092004 +008002 +064 +053003 +118214 078003 +089012 +008002 +059003 +053003 +089005 +092004 +033005 +118223 089021 +023009 +118226 013004 +040002 +089008 +071004 +089023 +092004 +058009 +092004 +083003 +092004 +001002 +118238 053003 +089023 +092008 +092004 +001002 +053002 +065003 087003 +078002 +118248 015008 +093001 +118251 084002 +042003 +007002 007003 +058010 +092004 +073 +089023 +084002 +092008 +092004 +001002 +067002 +024001 +092004 +008002 085001 +092004 +012001 +090009 +092002 +069003 +118272 067001 +057008 +118275 064 +092004 +053009 +015008 +084002 +092004 +007003 +089016 +067009 +089012 090002 +008002 +092004 +089007 +071005 +092004 +067001 +024006 +067006 +042003 +001001 001006 +118296 091001 +060005 +067002 +067003 +092004 +067008 +089009 +013001 +092004 +088038 +089012 +092004 +053002 +092008 +024001 +118312 089004 089005 +078005 +071005 +092004 +009001 +060005 +023007 +118320 067002 +118322 030007 +118325 092004 +093001 +060005 +057008 +089009 +092004 +118332 088038 +053002 +067002 +060003 +089021 +088038 +034006 +092004 +092004 +025004 +089009 +021006 +118345 092004 +033005 +118348 014007 +092004 +067002 +088001 +118353 092008 +092004 +058009 +092004 +013004 +089016 +067009 +092004 +058005 +053002 +118364 057008 +118366 092004 +067005 +067001 +074 +092004 +015005 +088004 +089007 +118375 071003 +068004 +057008 +089007 +092004 +092004 +118382 067006 +028001 +088038 +092004 +053001 +060005 +053003 +089023 +083003 089012 +092004 +029002 +088038 +089016 +067009 +118397 071001 +008002 +004001 +118401 004001 +013001 +088038 +089008 +013004 +084002 +092004 +001006 +033006 +053002 +118412 053002 +118414 025001 +118416 009001 +042003 +092001 +053002 +118421 089004 +088038 +118424 025008 +067002 +033006 +092004 +012001 +091003 +083003 +006010 +006010 033005 +033005 +090006 +092001 +015006 085001 +092004 +042002 +092004 +025001 030004 +118442 061 +033006 +118445 053002 +118447 053002 +118449 053002 +118451 089004 +088038 +118454 025001 +069003 +025008 +118458 089005 +033005 033033 +057008 +067002 +033006 +091003 +015006 085001 +092004 +042002 +092004 +025001 030004 +118470 076 +092004 +060003 +118474 092004 +060003 +076 +089012 +118479 025001 +088003 +118482 089012 +092004 +053002 +092004 +009001 +093001 +093001 +060005 +118491 089023 +059003 +053009 +118496 067005 +053001 +118499 067001 +057008 +092004 +058005 +053002 +118505 067001 +074 +013001 +088038 +089023 +118512 053002 +090009 +088038 +057008 +067005 084002 +092004 +067005 +017002 087003 +083005 +082002 +092004 +012001 +092004 +063005 067006 +013001 +067006 +085002 +092004 +039001 +092004 +006015 037001 +092004 +037001 +092004 +118538 053002 +088004 +067005 084002 +092004 +067005 +092004 +088003 +118546 033020 +092002 +118549 092004 +012001 +092004 +088003 +118554 067002 +092004 +033006 +118558 092004 +034005 +118561 034005 +089020 +092004 +067002 +092004 +067008 +092007 +033006 +012001 +085002 +033033 +092001 +083008 +026 +092004 +118578 092004 +026 +092004 +033005 +092004 +118584 092004 +088038 +092004 +118588 092004 +088018 +092004 +118593 029004 +067006 +118596 092006 +040002 +118599 067006 +053002 +089004 +088038 +118604 011002 +118606 025014 +089008 089009 090006 +092004 +015006 +092004 +007003 088003 +089012 +092004 +008002 023007 +093001 +118617 013003 +092002 +001016 041001 +058011 +118622 023007 +084003 +092004 +006017 +118628 092004 +008001 008002 +092004 +118632 053009 +087003 +037001 +092004 +007002 +092004 +012001 +015005 +089012 089013 089020 +073 +026 +013001 089012 089013 089020 090002 +031006 +031009 +053003 088003 +092004 +088003 +089021 +026 +088038 +118653 047002 +092004 +008001 +002004 +079010 +031006 +092004 +033021 +092004 +025004 +031008 +118665 031009 +092004 +033025 +118669 030002 +092005 +089009 +090012 +025003 +118675 088001 +042002 +118678 068004 +092004 +015013 +118682 064 +041002 +118685 089023 +025013 +078002 +118689 078005 +078005 +024001 +067002 +092004 + +118696 030004 +088038 +092002 +067002 +092004 +031007 +092004 +028001 028002 +092004 +072001 +067006 +090009 +088038 +013003 +053002 +118712 025022 +092004 +030003 +030007 038001 056005 +118717 078001 +002003 +067002 +020003 +092004 +039001 +092004 +076 +033005 +033005 093001 +089021 +088010 +089006 +060002 +118732 060002 +033020 +023007 +078001 +031005 +065003 +038001 +065002 +092004 +092004 +012001 +092004 +012001 +019005 088025 +118747 065001 +031001 +092004 +008002 +092004 +034005 +089012 +118755 053006 088003 +118757 092004 +012001 +092004 +025008 088009 +033042 +118763 032001 +092004 +033006 +092001 +038001 039006 +092001 +038002 +118771 089017 +056005 +012001 +092004 +011002 +092004 +025022 +092004 +090013 +084002 +008002 037001 +012001 +023007 +118785 029002 +092004 +067002 +067008 +067007 +118791 014006 +025015 +118794 050 074 +024006 +089017 +092007 +118799 033042 +118801 022001 +025018 +089017 +092007 +034001 +092004 +061 +041001 +013002 +118811 089017 +092004 +037008 +024006 025003 +118816 092004 +057021 +092004 +057001 +118821 089013 +025011 +031007 +032002 +118827 057001 +065003 +118830 013003 +118833 013001 +092004 +025014 +118840 038002 +118842 025015 +057005 071004 +118846 092004 +030004 +092004 +012001 +042002 +057009 +092004 +033025 +118855 067006 +067005 +067007 +067007 +092004 +118861 015006 085001 +118864 067006 +118866 092004 +088002 +092001 +089012 +031010 +023007 +118874 068004 +118876 025008 +092004 +009001 +092001 +083003 089004 090001 +092004 +118883 092002 +118886 068004 +084002 089008 +020003 +089023 +031009 031010 +084002 089008 +057007 +026 +118896 031009 +025004 +031009 058001 +072001 +013004 +118902 024001 +118904 089007 089012 +118906 033020 +092004 +067002 +031009 +032001 +042003 +092004 +001001 +033002 +012001 +089008 +092004 +118919 090003 +024001 +092004 +024001 +013003 +031009 +093001 +066 +053002 +078002 +093001 +057008 +092004 +012001 +089007 089012 +118935 033020 +118937 034005 088002 +033020 +090006 +092004 +057008 +092004 +092004 +012001 +118946 089007 089012 +092004 +023007 +067006 +033006 +031009 +093001 +015001 +092004 +118956 024001 090013 +023007 +118960 027002 +089007 +015001 +092004 +092004 +012001 +118967 067002 +092004 +015001 +033020 +025008 +092004 +012001 +118975 089021 +031009 +071001 +025008 +118980 071005 +031006 +092004 +015005 034002 +092004 +012001 +118987 013003 +118989 092004 +027004 +092004 +038002 +013002 +031009 +093001 +028003 +089004 090006 +092004 +067006 +024001 +036003 053001 +045 077 +006008 +089009 +021005 +092004 +010001 +092004 +089012 +119011 056005 +092004 +009001 041003 +119015 092004 +089005 +031009 +088002 +057009 +013002 +031009 +033029 +093001 +036003 +015004 +084002 +080001 +067002 +119030 057007 +089009 +057009 +119034 015004 +119036 028001 +083002 +119039 031009 +085005 +083003 084002 +001011 +092004 +033023 033025 +064 +011003 +083003 +007002 +085005 +089020 +093001 +119053 093001 +092004 +057009 +092004 +033023 033025 +092004 +058005 +119061 030003 085003 +092004 +092004 +007003 +119066 001014 +119068 042005 +119070 045 +092004 +012001 +031009 +119075 092008 +093001 +074 +089009 090006 +023003 +010002 +057009 +119083 078002 +067005 +067008 +089007 +031009 +031001 +092004 +033025 +089008 +119093 090003 +060002 +068004 +023003 +119098 092007 +064 +092004 +001004 +092004 +001002 +092004 +059001 +119107 064 +092004 +002005 +092004 +083005 +092004 +001009 +092004 +001010 +092004 +060001 +089005 +031009 +023007 +119122 059003 +119125 092004 +033025 +089023 +067002 083005 +092004 +024001 +119132 025011 033003 034007 +119134 033022 +119136 011003 +119138 011003 +119140 083008 +092004 +001006 +119144 092004 +064 +033006 +028003 +119149 001011 +025001 027004 +119152 091001 +119154 029002 +083001 +090003 +119158 015004 +071003 +119161 022007 067005 +015007 +119164 067002 +025002 +065003 +119169 001002 +089008 +119172 025018 +092004 +092004 +012001 +012001 +092004 +033009 +119180 077 +092004 +001014 +031009 +057008 +093001 +092004 +093001 +027004 +119190 092004 +058007 +057008 +092004 +092004 +033025 +090013 +089004 090006 090013 +119199 033006 +119201 090013 +093001 +033009 +119205 010002 +031001 +119209 084001 +023007 +023007 +074 +092004 +012001 +084001 +092004 +119218 033003 +033003 058010 +057009 +031009 +119223 089004 +067002 +033055 +093001 +092004 +093001 +119230 092004 +093001 +031009 +093001 +023007 +059003 +092004 +010002 +093001 +033055 +119241 053007 +083008 +092004 +079023 +092004 +006023 +092004 +031009 +093001 +023007 +090006 +092004 +015004 +092004 +010002 011003 +093001 +029004 +119259 090006 +092004 +008002 +092004 +033032 +031009 +093001 +023003 +021003 +067009 +090001 +092004 +010002 +092004 +089007 +024001 +079004 +092004 +009004 +119280 025022 +092004 +033032 +092004 +037004 +031009 +093001 +079028 +013002 +031003 +033009 +010002 +010002 +093001 +030006 +089023 +024006 +092004 +011002 +092004 +012001 +119302 067005 +119304 088015 +025010 +119307 057003 +031001 +092004 +093002 +065001 +092004 +033042 +092004 +053009 +119317 030001 +084002 +092004 +038002 +031009 +015004 +093002 +119325 025022 +092004 +088024 +092004 +037004 +119331 092004 +024001 +064 +024001 +025015 +031009 +042002 090011 +092004 +051 +119341 092004 +047001 +092004 +008002 +119347 092004 +020003 +092004 +010002 +020004 024005 +092004 +031009 +015003 +092004 +079007 +001010 +064 +084003 +001009 079015 +001009 +092006 +068005 +068005 +092004 +093002 +020003 +031009 +092004 +007006 +093002 +015012 +015018 +067007 +060002 +067009 +031009 +093001 +092004 +088036 +119382 020003 +092004 +031010 036003 +034007 +092004 +027004 +089013 +022007 +119392 059008 +033006 +119395 013001 +092004 +067005 +092001 +033015 +090006 +093001 +093001 +093001 +093001 +119406 093001 +119408 093001 +119410 092004 +053009 +119413 090002 +031009 +039012 +001012 +013001 042004 +088002 +057007 +033025 +020002 +008002 020002 +004001 +014008 +076 +002003 +021004 +079023 +006007 +074 +089021 +023009 +013002 +076 079013 +083003 +039005 055002 +001014 007002 +039001 +015004 +057009 +009003 +089012 +023007 +092004 +023007 +092004 +119448 058006 +038001 +119451 031007 +092004 +037010 +119455 065003 +023007 +090013 +119459 058006 +033044 +119462 019001 +068005 +090013 +119466 059008 +006004 037008 +119469 007002 +020004 +119472 019002 +119474 020004 +006007 +023007 +015002 +013001 +006017 +119481 004001 +006017 +057005 +022002 +088016 +015002 +083008 +001013 +119490 001007 +119492 001008 +119494 092004 +001008 +092004 +001006 +119501 065002 +092004 +009001 +119506 059003 +033020 +089007 089012 +092004 +031009 +119512 090014 +092004 +033025 +092004 +012001 +090009 +092002 +065003 087003 +119521 030006 035003 +119524 089021 +092002 +088004 +089008 +119529 092002 +119531 059002 +085001 +092002 +011001 +033020 +085002 +013004 +059003 +119540 092004 +030001 037001 +088015 +089012 +025015 +015030 +092004 +013003 +092002 +050 +030001 +084002 +092004 +092004 +031010 +036001 068001 +119557 068003 +093001 +119560 089007 +092004 +013003 +092004 +025011 +025015 +006006 +025018 +088025 +119570 083008 +082002 +092004 +006015 +092004 +012001 +017002 +119578 030001 +092004 +025015 +092007 +090001 +092004 +088038 +090013 +119587 039007 +119590 025024 +092004 +025024 026 +119594 023006 025024 +067006 +078005 +008002 023007 +039003 +090008 +092004 +088015 +039005 +119604 029003 +092004 +025013 +119609 064 +009005 010002 +033004 +009005 010002 +092001 +119615 088025 +033017 036002 038001 +012001 +069003 +025024 +090001 +092004 +033046 +119625 025003 +012001 +036002 038001 +119629 019001 038001 +059003 +010002 +119633 031007 +089009 +036002 038001 +025015 +064 +010002 +119640 015024 041001 +092004 +012001 +119645 010002 +119648 036002 038001 +010002 +119653 089021 +036002 038001 +119656 034001 +013002 +059003 +089008 +010002 +119663 010002 +119665 089023 +067002 089017 +092004 +092004 +008001 009001 +092002 +010002 +119673 033017 038001 +119675 087002 +119678 078002 089023 +036003 037001 +092004 +010002 058010 +092004 +026 +119685 023007 +119687 089023 +092004 +067005 +067005 +067008 +089005 +092004 +025001 +092004 +036002 038001 +089023 +092004 +089006 089009 +092004 +065005 +089009 +092004 +057009 090013 +092004 +088003 +092004 +119709 059003 +033017 036002 038001 +089023 +067001 +092004 +067002 085001 +031005 +119717 025011 +119719 091001 +025023 +089023 +067002 +042002 +025021 +088002 +092004 +089012 +092004 +036002 +038002 +089008 +092004 +023009 +008002 +119736 092004 +023009 025013 +008002 025013 +025013 +119741 041003 +041003 079017 +090011 +092004 +008002 041003 +119749 092004 +023009 +023009 031008 +119753 023008 +089023 +015021 068006 +083003 090009 090013 +059003 +022007 +119760 092004 +053006 +119763 089021 +092004 +032002 +092004 +012001 +030002 035004 +119771 013001 +089021 +092004 +088009 +092004 +012001 +119779 003005 089007 +079008 088026 +084002 +023011 +022003 +119785 089012 090002 090010 +119787 088034 +119789 059001 +119792 088036 +119794 088015 +064 +093001 +119798 057010 +023001 +119801 057015 +092004 +010002 +119806 032001 +119808 089017 +067002 +025001 +057009 +092004 +088009 +030007 +119816 041005 +071001 080001 +119819 013001 +089011 +089020 +008003 +027004 +092004 +119827 015005 +024005 +119830 014008 +002003 +119833 014007 +119835 014007 +119837 014002 +119839 006012 +014009 +119842 014009 033006 +033006 +119845 092004 +024002 +033012 +119849 059008 +092004 +033006 +119854 031007 +092004 +033032 +089011 +004001 +024005 +092004 +001007 +020004 +119864 078001 +025022 +119867 092004 +024001 +093001 +033006 +119872 025022 +119874 025022 +089023 +015005 +093002 +001007 +119880 001014 +012001 +023007 +093002 +001002 +119886 060001 +012001 +051 +119890 011002 011003 +010002 +033005 +083003 +001002 +119896 056005 +059003 +012001 +119900 026 +088002 +088004 +119904 034005 +058011 +031003 +093001 +119909 008002 +047003 +065003 087003 +033006 +078002 +092004 +093001 +027006 +119918 036003 +092004 +033006 +119924 021004 +092007 +036003 +092004 +083008 +001006 +028003 +119932 078002 +092002 +092004 +092004 +089021 +001002 +034002 068004 +119940 092004 +033006 +092004 +001006 +016 +067002 +119947 067002 +033025 +033006 +059008 +060005 +092001 +016 +119956 092004 +001006 +091001 +119960 092004 +001002 +119963 092004 +059008 +060005 +028003 033010 +092004 +092004 +016 +015001 +064 +042003 +119974 013003 +092004 +119977 016 +089008 +037004 +013001 +033017 +057001 +033036 088009 +089012 +119986 053001 +025008 +092004 +012001 +089013 +053001 +119993 053007 +119996 092004 +012001 +092002 +002003 +020003 +092004 +025003 +068002 +092004 +034008 +120007 029004 +120009 089012 +120011 028001 +120013 034008 +012001 +029004 +092004 +037008 +064 +037008 +092004 +088016 +064 +120024 092004 +120027 008001 +087002 +092004 +034010 +083003 090001 +059003 +120034 092004 +023004 +053004 +120038 088036 +120040 088036 +056005 +092004 +012001 +025010 +092004 +041001 +025007 +092004 +057001 +120051 092004 +033006 +069002 +120056 035008 +069003 +069002 +120061 035008 +089008 +025014 +092002 +033006 +012001 +092001 +035001 +120070 025022 +120072 042002 +092001 +009001 +029002 +092004 +036001 +120080 033006 +120082 092004 +033006 +092004 +012001 +120087 092004 +067003 089008 +092004 +041001 +030001 +041004 +092004 +031009 +093001 +093001 +067005 +120099 067010 +092004 +058005 +120104 092004 +067005 +033017 +058006 +120109 028003 +120111 031008 +120113 066 +088009 +028003 031009 +092004 +026 +120119 005001 +013001 089004 +120123 035001 +092004 +041001 +120127 006015 +090003 +120130 023001 +120133 076 +092004 +092004 +007002 +053001 +120139 015024 +120141 004001 +092004 +008002 +089004 +088038 +084002 +092004 +007003 088003 +090001 +092004 +053009 +120153 092004 +008001 +014008 +083004 +092004 +001014 +089008 +120161 093001 +120163 088003 +089012 +092004 +057001 +008002 +092004 +011002 +083004 +092004 +007003 +024006 +089008 +015004 +084002 +092004 +083004 +092004 +001014 +092004 +033042 +092004 +015024 090013 +120188 083001 +013003 +001014 +091001 +092004 +067002 +025001 027004 +120196 090001 +092004 +053002 +067005 067007 +067005 +092004 +012001 +053002 +033037 +120207 042002 +033006 +033016 +092004 +033009 +092004 +120214 092004 +088001 +120217 034001 +120219 029003 029004 +120221 064 092007 +053002 +025008 +092004 +012001 +036003 +092004 +036001 037004 +120231 036003 +120233 092004 +035004 +090006 090009 +092004 +023007 +120239 064 +057020 +090011 +120243 089013 +025011 +120246 042002 +120249 025012 +120251 065005 +120254 033013 +090009 +092002 +120258 031006 033028 +120260 088001 +026 +120263 089004 +059003 +088001 +041001 +025001 +120269 078002 +033012 +120272 042002 +120274 067005 +015004 +120278 092004 +012001 +092004 +025021 +092004 +015023 +084001 +023007 +089012 +008002 +034005 +067005 +092004 +044 +092004 +004001 +092004 +120296 092004 +012001 +092002 +093001 +075 +120302 013001 089004 090002 +059003 +088001 +089009 +092004 +042002 090011 +092004 +030004 +092004 +042002 090011 +083003 +092002 +092004 +025008 +090005 +092004 +090001 +093001 +093001 +120322 092004 +033037 087002 087003 +067005 084002 +092004 +067005 +092004 +067005 +072001 +120331 033012 +120333 011002 +031007 +092004 +033005 033006 +092004 +025013 +120341 067005 084003 +059001 067005 +033005 +120345 028001 +092004 +011002 +092002 +093001 +037010 +089020 +120354 067005 +015006 +034006 +120358 033003 +059003 +092004 +036001 037004 +120364 059003 +092004 +011002 +033003 +120369 092004 +090003 +092004 +093002 +092004 +025008 088009 +090013 +059003 +120378 093001 +012001 +120381 012001 +093001 +093001 +087005 +092004 +060002 +010001 011002 +092004 +120390 092004 +015014 +033003 +011002 +092001 +059003 078004 +025011 +031001 +120399 027004 088038 +058006 +090013 +028001 +120404 092004 +027004 +120407 092004 +031009 +013001 +025015 +089015 089017 089023 +092004 +025015 +042002 +068003 +090012 +089009 091005 +120419 088004 088013 +120421 059003 +089004 +092004 +057005 +089017 089023 +120429 057005 +032004 +033012 +120433 092004 +057008 +059003 +057008 +120439 033046 +012001 +120443 092004 +089023 +033012 +089014 +031009 +092004 +031006 +089007 +092004 +031006 +064 +014005 +001010 +015022 +120458 016 +089007 +120461 031005 +092004 +009001 +092007 +120466 057009 +120469 092004 +012001 +009001 009002 +031006 +037001 +120475 059003 +092004 +041001 +092004 +089017 089023 +033039 +092004 +011002 +092004 +087004 +120486 092004 +087003 +092004 +089017 089023 +092004 +057003 +120493 092004 +087004 088007 +092004 +089007 +064 +003005 +003003 +013003 +089007 +015010 +092004 +001004 +089020 +092004 +014008 +120509 079015 +092004 +003003 +120513 092004 +003005 +092004 +015012 +120518 092004 +079004 +092004 +024001 +092004 +020003 +120526 092004 +057003 +083003 +092004 +057016 +092004 +013003 +025011 +009001 +120536 025015 039003 068002 +027004 088038 +089007 +030007 +013002 +057009 +092004 +006018 057008 +092004 +023007 +120547 033025 +092004 +025003 +092004 +092004 +088038 +033006 +120555 090001 +012001 +088038 +089007 +092004 +012001 +088038 +120563 088015 +120565 088038 +092008 +092004 +089023 +059003 +088038 +089007 +092004 +057001 +025002 +031008 +120577 088038 +067002 +092004 +025002 +023003 +023003 +088038 +120585 092004 +088038 +068003 +013001 +023007 +120591 031008 +011002 +092001 +025003 +059003 +057008 +065003 088001 +120599 059003 +057008 +079029 088004 +084001 +120604 015011 +120606 092004 +012001 +092004 +014006 +120613 013003 +058006 +120616 016 +014007 +030004 +013003 +092002 +033006 033019 +072001 +120624 092004 +120626 092002 +053002 +092004 +092004 +092004 +042003 +032001 +011002 +092001 +025003 +120638 059003 +009001 +067005 +090006 +092004 +024002 +067006 +090006 +092004 +033006 +067006 +120650 088024 +120652 088024 +009001 +088002 +012001 +120658 089008 +068004 085002 +059003 +088034 +120663 059006 +088015 +089014 +088008 +034007 057009 +092004 +085001 +033006 +092004 +074 +021006 +092004 +023007 +120677 089017 089023 +013001 013002 +042002 +033006 +120683 024002 +058007 +088021 +120687 089007 +120690 024002 +033006 +120695 042002 +120697 064 +009001 +030001 +092004 +008002 +092004 +013003 023003 +092004 +083003 +006023 +120708 030001 +120711 015004 +120713 067002 +029003 +058004 +120718 092004 +024001 027004 +084002 +033033 +088004 +092004 +092004 +037010 +120727 068002 +013001 +120730 024002 +029003 +089023 +042002 +042002 +120736 025011 +013001 067002 067007 089004 +092004 +042002 +092004 +120744 031005 +053001 +120748 088011 +033006 +120751 089023 +031002 +026 +120756 092004 +053001 +065004 +053001 +053003 +120762 053004 +090005 +092004 +012001 +120767 012001 +120770 034006 +010002 +120773 010004 +013001 067007 +092004 +022001 +092004 +088003 +120780 013001 +089007 089021 090001 090003 +092004 +041003 +011002 +092001 +120787 089014 +088030 +090013 +092004 +031010 +092004 +012001 +092002 +093001 +093001 +092004 +012002 079005 +089007 +120801 015008 +084002 +007002 011002 +120805 009002 +006018 +013001 +006017 +014006 079005 +120811 015008 +120813 057006 +013001 +079010 +006017 +120818 024001 087002 +090013 +092004 +049 +092004 +006017 +092004 +014006 079005 +120827 033006 +120829 017002 +083001 +033012 087003 +120833 092004 +057006 +033006 +120837 017001 +083001 +120840 017002 +083009 +092004 +006015 +092001 +120846 030007 +120850 013002 +056005 +030001 +088015 +031007 032001 +011002 +092001 +025003 +120859 092004 +012001 +030006 +092004 +057006 +092004 +001006 009001 +059006 +089004 +031009 031010 +120870 057009 +092004 +037004 +120874 033025 +092004 +025003 +092004 +120880 087004 088016 +092004 +057006 +120884 092004 +057003 +022003 +120889 092004 +015023 +120892 084002 +056001 +120895 092004 +033042 +092004 +088001 +033009 +092004 +033009 +083003 083008 090013 +120905 089023 +033033 +037004 +036003 +089005 +092004 +033005 +025003 +092004 +011003 +120916 064 +092003 +088001 +041001 +120922 088030 +088038 +090011 +033046 +090001 +092004 +033005 +064 +036003 +089007 +120933 059003 +092004 +033005 +036003 +120938 088038 +089004 +120941 013002 +059003 +088038 +089007 +092004 +033006 +120948 088036 +033006 +120952 020004 +089017 +120956 088036 +089023 +020004 +013002 +036003 +033005 +061 +033006 +120966 042002 +064 +090002 +033033 +037010 +056005 +067002 +089007 +092004 +056005 +088010 +092004 +120979 042002 090011 +088010 +074 +088010 +056005 +011002 +092001 +120987 092004 +065005 +120990 031009 031010 +120992 033006 +120995 042002 +120999 074 +092004 +031009 031010 +021006 +092004 +089010 +011002 +121007 011002 +049 +013001 +121011 057005 +092004 +067009 +005001 +121016 033006 +092004 +121019 063004 +121021 015004 +013001 +022007 025021 +079014 +121026 023001 +121030 092004 +092004 +057005 +092004 +009001 +121036 092004 +065005 +061 +121040 092004 +031009 031010 +121044 090012 +042002 +065004 +121048 089004 +121050 089023 +033006 +121054 031009 031010 +121056 092001 +042002 +121059 028003 +092001 +092004 +031009 031010 +121064 089021 +092004 +042002 +092001 +121069 028003 +089003 089012 +092004 +042002 +092001 +092004 +031009 031010 +121077 031006 +121079 060002 063001 +121081 092004 +012001 +088001 +090011 +121086 092004 +012001 +031006 +121090 025022 +121092 091004 +009002 +032005 +025001 +028001 +121098 092004 +031009 031010 +089021 +092004 +042002 +042004 065004 +121105 093001 +092004 +010002 +092002 +121110 089007 089012 +042002 +088002 +053002 +093001 +092004 +010002 +092004 +083008 +092004 +006015 +024001 032002 +121123 092004 +031009 031010 +042002 +092004 +042002 +092004 +121130 089007 089012 +092004 +042002 +092004 +031009 031010 +068003 +121137 013004 +092004 +033005 +092004 +033006 +121143 031009 +093001 +092004 +012001 +121148 057020 +092004 +013002 +088002 +121153 034001 +012001 +033009 +032002 +121158 089007 089012 +042002 +088002 +009001 +121164 089007 089012 +031009 031010 +121168 064 +089017 +093001 +092004 +088036 +121174 089007 089012 +042002 +088002 +034007 +092004 +033015 +121181 058006 +001016 +015004 +089007 +064 +092004 +009001 +089021 +023010 026 +023007 +121192 061 +089017 +092004 +031009 031010 +089021 +042002 +023007 +121200 011002 +092001 +121204 033017 +013002 +028001 +121209 030007 056005 +057009 +089007 +059001 059002 +088038 +059003 +121217 089004 089012 090002 +033006 +121220 088038 +121222 088004 088013 +009001 +074 +088011 +089017 +059003 +092004 +008001 009001 +089017 +089007 089010 +092004 +004001 +092004 +006002 +084002 +092004 +008002 +085002 +089009 +092004 +033028 +092004 +092002 +089017 +059003 +092004 +008001 +092004 +015023 +091003 +121253 092004 +006008 +079028 +121258 090001 +014002 +020001 076 +015022 +015023 +090001 +079028 +006008 +083002 +092004 +026 +092004 +054 +025001 +121274 092004 +008002 +079028 +008002 +121281 033039 +091003 +079028 +002003 +079028 +003002 003006 +014008 +121289 092004 +008002 +002003 +092004 +059006 +092004 +088002 +092004 +008002 +013001 037005 +083003 +092004 +008002 +092002 +092004 +079011 +059003 +092004 +009001 +121309 014008 +092004 +061 067005 +092004 +013003 +121315 014008 +090001 +092004 +001003 +121320 059003 +058004 +121323 004001 +121325 004002 +121327 004004 +121329 004005 +037001 +121332 037001 +092004 +058001 058004 +092004 +009001 +121338 092004 +008002 +037001 +074 +092004 +009001 +037001 +088015 +059004 +008003 +023007 +090002 +092004 +033037 +092004 +012001 +121355 012001 +121357 090002 +092004 +033055 +092004 +009001 +092004 +089005 +064 +012001 +013001 013003 +084001 090003 +092004 +058005 +008002 +015004 +033037 033055 +121374 033055 +011002 +092001 +121378 071004 +121380 061 +013001 013004 +069005 +092004 +001010 +084001 090003 +092004 +058005 +001008 +014005 +092004 +079008 +121393 092004 +079008 +011002 +092001 +069005 +074 +003002 +003004 +013001 +121403 003003 +003004 +069003 +005002 +013001 +079008 +002004 +121411 032004 +121413 032004 +083003 +121416 028003 +089012 +092004 +088001 +041001 +092004 +042002 +092004 +013001 089013 089014 +088008 +032004 +089017 089023 +121430 088022 +088023 +121433 039001 088023 +083003 +092004 +026 +121439 033039 088025 +121441 033018 +090008 +092004 +072001 +121448 092004 +032004 +084001 +015011 +089023 +009001 +041003 +012001 +089007 +092006 +088022 +121460 039001 088023 +083001 +039007 +121464 059003 +088015 +013004 +121468 092004 +084001 +032004 +060003 +091002 +088003 +121475 067002 +025021 +088008 +033028 +078004 +088010 +121482 042002 +088001 +088030 +073 +089015 089017 +042002 +088002 +013001 089014 +022007 +043 +092004 +090011 +022007 +084001 +039005 +121498 084001 +039005 +083003 +121503 092007 +121505 092004 +025002 +121508 092004 +055002 +083003 +092004 +008002 063004 +121514 025002 +121517 057001 +020004 +121520 025002 088022 +121523 074 +057007 +039005 +121527 039005 +121530 089007 090010 +092004 +121533 033012 +121535 033012 +121538 057007 +089007 +072002 +033012 +089009 +083003 +092004 +025010 +121547 057011 +031009 +121550 028001 032001 +121552 092004 +025003 +092004 +041003 +039001 +092004 +012001 +121560 089008 +121563 025001 030004 +121565 034001 +092004 +041003 +039001 +092004 +012001 +013001 037005 +089024 +031005 +121575 089009 +092004 +033005 +033006 +078005 +088022 +025002 +092004 +012001 +121585 085005 +083003 +092002 +121590 025008 057008 088009 +121592 089008 +033006 +092004 +012001 +088027 +039001 +121599 088007 +121601 025008 057008 088009 +121603 036003 +092004 +012001 +121607 039003 +092004 +012001 +121611 015004 +089021 +121614 015005 +092004 +012001 +121620 053003 079010 +008002 +088038 +121624 088003 +026 +031006 +025012 +121629 025012 +121631 025012 +092004 +025012 +121635 013002 +025012 +013002 +121639 092004 +025011 +121642 025024 +087004 088007 +083006 090005 +012001 +121647 087003 +121650 033042 +092005 +011002 +092004 +033042 +011002 +121657 056005 +092004 +011002 +092004 +033042 +033005 +121664 056005 +033005 +089015 089023 +121668 033005 +056005 +121672 042002 +033005 +089023 +056005 +060002 +121678 033033 +121680 056005 +092004 +074 +021006 +121685 020003 +121690 092004 +056005 +092004 +011003 +091003 +067002 +092004 +033006 +067010 +121700 067010 +015002 +084002 +092007 +092004 +001014 +121707 042004 090011 +083001 +067009 +121711 057016 +121713 057016 +121716 028001 032001 +092004 +067010 +058004 +092004 +023007 +121723 089007 +121725 001005 +092004 +067005 +059002 067005 +024001 +067002 +121732 024001 +089023 +092004 +033006 +121738 092004 +012001 +025001 030004 +121742 023007 +121744 042002 +121747 092007 +121749 067002 +033039 +013001 083003 089004 089020 +092004 +088027 +121755 059003 +033039 +064 +088015 +121761 028001 +088001 +042002 +121766 042002 +088038 +092004 +121770 091003 +067002 +092004 +057003 +025012 +025012 +089007 090006 +092004 +022001 +121780 092004 +013004 +092004 +057003 +121785 023013 +121787 092004 +006017 +121790 020002 +013001 013002 +092004 +002007 +121796 092004 +002007 +002007 +121800 092004 +002007 +092004 +089009 +033020 +121808 020003 +092004 +008002 +121812 064 +002003 +013004 +083003 +061 +067008 +091003 +092004 +057013 +092004 +042004 +092004 +043 +092004 +001015 +121828 092004 +121830 090001 +121832 033006 +121834 092004 +033006 +092004 +043 +084002 +092004 +024002 +012001 +012001 +015008 +088033 +083008 +092004 +001006 +121849 088033 +023001 035004 +092004 +026 +121854 067002 067007 +056005 +020004 056005 +056005 +020004 +092004 +088002 +121862 039001 +121865 011002 +025015 +067006 +092004 +015006 +092004 +012001 +091003 +092004 +043 +085003 +092004 +065001 +043 +092004 +002005 +025015 +090006 +092004 +067006 +057009 +014003 +121888 014003 +025015 +121892 074 +092004 +026 +121897 092004 +015006 +092004 +012001 +067002 +011002 +121904 033041 +090008 +092005 +089009 +121909 056005 +091003 +092004 +056005 +067002 +092004 +007003 067002 +121917 011002 +031007 +058009 +092004 +024006 +121923 092004 +025015 +092004 +053009 +121928 033006 +090007 +092004 +033009 +012001 +091003 +025011 +092004 +025015 +092004 +025015 +093001 +024002 +121942 092004 +089008 +012001 +024001 027001 +089007 090006 +121948 092004 +012001 +025003 +121952 088010 +121954 011002 +092001 +065006 +059003 +121959 033054 +069003 +092004 +001002 +069003 +092004 +001006 +069003 +058006 +121969 033054 +121973 092004 +069001 +069001 +121977 092004 +069002 +069002 +089009 +121982 037001 056005 +056005 +056005 090013 +024006 +121987 083003 +121989 033013 +025013 +121992 033007 +023009 074 +121995 083003 +121997 033029 +092004 +053009 +092004 +011002 +122003 033013 +090009 +092004 +047003 +006019 +090006 +092004 +033009 +092004 +012001 +122014 092004 +033013 +092004 +031009 +021006 023008 +092004 +023009 025024 +122022 023008 +092004 +092004 +012001 +089011 +088038 +122029 090011 +040002 +092004 +122033 033022 +092005 +092004 +088038 +122039 090009 +092005 +089009 +023008 +122044 074 +033012 +088002 +042001 +093001 +122050 009001 +025002 +092002 +122054 033013 +033013 +092004 +122058 014003 +122061 014003 +083008 +092004 +001006 001009 002005 +067009 +060002 +122068 067009 +060002 +122071 067002 +033013 +122074 092004 +001002 +002004 014003 +013004 +122079 092004 +001006 001009 002005 +023012 +092004 +023012 043 +092004 +011002 +092001 +122089 083003 +122091 031008 +089021 +092004 +072001 +122096 016 031008 +122098 092004 +122101 092004 +016 031008 +088038 +084001 +031002 +041001 +092004 +021005 021006 +009001 +092004 +084001 +023007 +122114 079025 +059001 +088038 +093001 +053009 +093001 +093001 +030006 +011003 +015014 +093002 +093002 +093002 +093002 +122129 093002 +089005 +028002 +012001 +012001 +089012 090001 +053006 +012001 +089008 089009 +036003 +122140 047003 +008002 +093001 +093001 +025008 088009 +122146 022007 +122148 059007 +033037 +092004 +012001 +122153 012001 +092004 +012001 +092002 +093001 +093001 +092004 +122161 092004 +078001 +092004 +088010 +013002 +092002 +089008 089009 +025004 +023007 +089007 089012 +023007 +093001 +093001 +084001 +023007 +089008 089009 090006 +057009 +023007 +122180 053004 +122182 079005 +013001 037009 +122185 001002 +122188 092004 +089012 +076 +012001 +037009 +089007 089012 +031009 +067006 089009 +021005 +077 +028003 +122200 067008 +061 +122204 025011 +122206 067005 +067002 +071005 +122211 058006 +027004 +089009 +092004 +073 +122217 092004 +031009 +065001 +002007 +092004 +013003 +089023 +122225 002003 +027004 +027001 +089008 +033037 +122231 033037 +122233 087002 +067002 +028003 +093001 +093001 +092006 +122240 024001 +025003 +089023 +122245 067002 +122247 024001 +031009 +025011 +025011 +033006 +122253 065001 +057009 +092004 +089008 089009 +092004 +031010 +021006 +009001 +090006 +122263 021006 +027004 +122266 027004 +033005 053009 +092004 +090006 +092004 +090009 090013 +122273 025008 057008 +033053 +027004 +122277 092004 +122279 058004 092007 +067001 +033010 +092004 +122284 092004 +012001 +093001 +033024 +092004 +090009 090013 +093001 +024006 +122293 092004 +067002 +122296 087002 087003 +122298 028003 +122304 035002 +092004 +122307 067002 +033015 +122310 089012 +092004 +033015 +122314 089012 090001 +012001 +088003 +015004 +122319 001002 +122322 027004 +025002 +012001 +089008 +027006 +092004 +077 +092004 +026 +122332 030001 +078004 +025004 +122336 092004 +015023 +122339 088009 +067002 +028003 +093001 +093001 +064 +058004 +036003 +122348 041003 +092004 +067002 +122352 092004 +028001 +122355 025002 +089023 +089005 +092004 +033029 +122361 088003 +089017 +092008 +088003 +122366 059003 +041001 +013001 +089007 +033005 +088003 +122373 013001 +092001 +088003 +122377 089007 +012001 +033009 033012 +092004 +088030 +056005 +089005 +092004 +059003 +042002 +089014 +053007 +092004 +092004 +085005 +122393 067005 +041001 +028001 +122398 023007 +002007 006011 +122401 006011 +037010 +089021 +092004 +065004 +122407 041001 +033017 +089023 +065001 +008002 023007 +064 +004001 +079012 +122416 079011 +093001 +089023 +028001 030006 +067002 +042003 +001006 +089023 +024001 +067002 +061 +092004 +067005 +090009 +122431 092004 +090001 +092004 +031009 +122436 012001 +092004 +023007 +092004 +122441 023007 +122443 087002 087003 +092004 +057008 +089008 +092004 +031009 +122451 025004 +013001 +122454 012001 +092004 +009001 +122458 088003 +090002 +092004 +036003 +092004 +072001 +089008 089009 +025003 +073 +089014 090003 +026 +092005 +025003 +025006 +013002 +122474 090003 +010002 +023007 +089023 +023007 +090002 +033006 +012001 +023007 +122484 013003 +089007 +059003 +009001 +064 +003003 +122491 059003 +079005 +092004 +064 +003005 +003003 +079015 +092004 +003003 +122501 092004 +003005 +015012 +089023 +092004 +033006 +012001 +013003 +122510 092004 +067005 +089017 +122515 092004 +033006 +092004 +033015 +122521 089008 +085002 +059003 +088015 088026 +122526 059003 +088021 +122529 088029 +122531 088022 +122533 059003 +033042 +064 +023003 +009004 +092004 +073 +079020 +005001 +025002 +089009 +090002 +092004 +059007 +090006 +021006 +089007 089010 +090013 +090006 +088009 +092004 +012001 +015005 +122558 +023007 +089023 +090001 +009001 +030007 +089023 +090005 +012001 +030006 +065001 +089017 +092008 +064 + +023007 +045 +007002 +079001 +089009 +053009 +088003 +053002 +079001 +053002 +025008 +012001 +122586 090001 093001 +093001 +089007 +090006 +122591 033005 +091003 +085002 +122595 093002 + +030006 +007003 +065001 +122601 092004 +031009 +122604 092004 +069002 +069002 +025018 +089008 +092004 +065001 +122612 092004 +031010 +089023 +031010 + +122618 030007 +092004 +045 +122622 013002 +122624 007003 +079023 +122627 002005 +015029 +122630 002005 +088038 +122633 015029 025016 +092004 +033006 +031010 036003 +122640 037005 +089023 +122643 010001 +030006 +037004 +053009 +011003 +088003 +011003 +089009 +057007 +089009 +033015 +092004 +076 088001 +092004 +084001 +088015 +122660 033029 +013002 +092004 +025020 +092004 +014006 +122667 067001 +122669 011003 +122671 067002 +011002 +012001 +092004 +122676 088010 +122678 067002 +088010 +025003 +033012 +064 +011003 +122685 011003 +013004 +092004 +041003 +025002 +122691 055002 +090008 +092004 +026 +092004 +041001 +122699 092004 +011002 +090013 +088001 +089009 +067007 +122706 033042 +122708 064 +088015 +089007 +092004 +088001 +042002 +024001 +087003 +092004 +012001 +122719 +034006 +036003 +090009 +092004 +012001 +059003 +009001 +037003 042003 +089010 +037004 +089007 +037001 +089010 +037004 +089007 +090001 +092004 +015004 +089009 +038001 +088015 +089017 +033037 +088001 +089007 +061 +122747 092004 +025001 +092004 +012001 +088001 +033008 +092004 +092004 +032005 +009001 +028001 032001 +064 +087005 +122762 064 +057001 +028003 +092004 +088015 +092004 +037010 +089023 +064 +012001 +087005 +059003 +087002 +092004 +011002 +025003 +092004 +012001 +087002 +092004 +037004 +087002 +092004 +046 +036003 +122788 078004 +053007 +092004 +057001 +122794 092004 +088001 +122797 088008 +089023 +122800 092004 +088035 +089007 +122804 025008 +089010 +089007 +028001 +012001 +025015 +092004 +025023 +024006 +088002 +122815 058004 +087002 +122818 088038 +122820 019001 +025015 +089023 +122824 088001 +122826 024006 +025015 +122829 025008 +090005 +012001 +089007 +122835 033029 +089007 +122838 093001 +024006 +090009 +122843 013003 +058009 +089009 +041004 +092004 +041004 +092004 +122851 088038 +122853 042002 +069003 +027002 +088021 +122858 092004 +033006 +092004 +122862 033042 +122864 033042 +024006 +122867 033026 +089023 +057008 +092004 +056005 +088002 +122874 092008 +092004 +088038 +092002 +015024 +122880 092004 +009001 +092004 +083008 084002 +092004 +006006 +089009 +092004 +088015 +068004 074 +092004 +088002 +041001 +122894 092004 +020002 +013002 023008 +122899 064 +004001 +015002 +091001 +031008 +067002 +122906 092004 +044 +122909 035004 +092004 +026 +122913 010004 +064 +036003 +092004 +057001 +010004 +089009 +122922 092004 +031010 036003 +092004 +033019 +089012 +092004 +092004 +010004 +041001 +089021 +033006 +057016 +024001 +092004 +122937 053007 +088003 +041001 +122942 013001 +122944 092004 +083004 +049 +008002 +122949 049 +006018 +122952 049 +006017 +006018 079004 +089023 +092004 +026 +092004 +026 +026 +122962 092004 +023007 +092004 +088008 +122967 088014 +030001 +122971 090005 +092004 +012001 +065001 +122976 061 +067002 +122979 092004 +053006 +009003 +092004 +025004 +122985 012001 +079004 +122988 036003 +092004 +092004 +010004 +064 +093001 +036003 +092004 +093001 +057001 +122999 033009 +123001 010002 +013002 +088001 +123006 025022 +092004 +025022 +092004 +010004 +064 +041001 +123014 032002 +064 +079013 +008001 +092004 +009003 +090012 +087002 +089007 +123024 057009 +057008 +023007 +123028 092004 +123030 013004 +092004 +033013 +123035 092004 +061 +059003 +030001 +025003 +025003 +025003 +088007 +123044 038002 +088015 +057010 +088015 +123049 033042 +057010 +033042 +089023 +089023 +033055 +123058 033029 +089009 +033055 +057009 +089007 +092004 +025001 +023007 +025010 +123068 090013 +067008 +065003 +068004 +092004 +033006 +123075 088015 +123077 033006 +092004 +123080 033006 +088021 +123083 068004 +123085 088015 +123087 042002 +088001 +013001 +022007 +123092 015021 +123094 089007 +024001 +012001 +090013 +088002 +123100 024002 +123103 033012 +123105 089023 +009001 +012001 +090008 +042002 +088015 +123113 092004 +020002 +123116 089010 +092004 +088001 +025006 +013002 +089023 +123124 024006 +089007 +088002 +025011 +123129 092004 +025022 +123133 025022 +069003 +025021 +123137 012001 +092004 +093001 +088003 +123142 092004 +026 +123145 077 +067005 +123148 033049 +059003 +092004 +033012 +123153 089007 +123155 092004 +123158 025004 +089023 +123161 088008 +123163 053007 +026 +088001 +123168 067007 +123170 033042 +025018 +092004 +088016 +123175 092004 +088001 +123178 093001 +041001 +123181 065003 +088001 +123184 025001 +092004 +030004 +092004 +012001 +024006 +123191 088015 +089007 +123194 093001 +060005 +090009 +088038 +123199 088002 +090009 +088002 +089009 +123204 015023 +092004 +012001 +089023 +020004 +008001 058001 +089023 +023007 +026 +123215 015001 +033019 +123218 092004 +123220 007002 +026 +031010 036003 +067002 +123225 013001 +092004 +092004 +012001 +025015 +123231 067008 +093001 +045 077 +006008 +083003 084002 +123237 059001 +123240 060002 +009001 +021005 +084003 090002 +002004 +123248 067002 +021006 +058010 +053005 +123253 008001 +023007 +079010 +089023 +026 +088001 +033012 +090013 +012001 +089007 089012 +023007 +093001 +093001 +123269 082002 +012001 +015001 +123273 001002 +036003 +123276 012001 +123278 012002 +123280 012002 +089008 +093001 +024006 +008001 +123287 092004 +123289 030001 +077 +089008 +092004 +067006 +009001 +025002 +089023 +025001 +012001 +092004 +063005 +123302 023007 +067005 +041001 +089007 090006 +092004 +024006 +008001 +068004 +088038 +123312 059005 +092004 +067005 +067005 +092004 +025001 +092004 +011002 +090011 +041001 +123323 088036 +025002 +088037 +088037 +088037 +123329 013004 088018 +053007 +123333 025020 +123335 015013 041001 +123338 092004 +123340 092004 +088012 +078001 +033042 +123345 090011 +057020 +092004 +077 +123350 056005 +023007 +123353 023007 +123355 089009 +123357 089017 +023007 +033015 +089008 +089023 +056005 +089004 +009001 +008001 +089023 +023007 +089004 +012001 +026 +089023 +059003 +092004 +067003 +067002 +123377 030001 032004 +123379 030001 088011 +089009 090006 +033013 +065006 +059003 +092004 +123387 025003 +025006 068002 +090013 +123391 025003 +079025 +059001 +088038 +034008 +123397 092005 +089021 +033041 +059003 +078005 089007 +057009 +057008 +123407 035002 +064 +088001 +037003 +058006 +057008 +012001 +123416 033006 +064 +033006 +012001 +123422 035002 +064 +090003 +079013 +123427 035003 +092004 +012001 +089009 +123432 059003 +087003 +092004 +012001 +123437 093001 +093001 +123441 092004 +087003 +123444 092004 +076 +067005 +092004 +067005 +092004 +067005 +072001 +025003 +123454 025020 +092004 +123458 024006 078002 +089009 +027004 +123462 013004 +064 +028003 +123466 013004 +089023 +078005 +057008 +092004 +092004 +093001 +024006 +025011 +089008 +123477 067002 +092004 +028003 +092004 +087003 +123483 025011 +025011 +089010 +033042 +089007 +033009 +093001 +025011 +123492 092004 +092004 +087003 +123496 092004 +092004 +012001 +012001 +123502 013001 023006 +123507 024006 +089007 +020004 +123511 057021 +123513 088015 +123515 089007 +088031 +123519 089007 +011002 +123522 025018 +123524 033037 +092004 +012001 +089007 +092004 +123531 089007 +092004 +067001 +092004 +068001 +092004 +030007 +084001 +092004 +010001 +092004 +012001 +123545 067002 +084001 +092002 +123549 092004 +089008 +092004 +031010 036003 +092004 +092004 +012001 +033015 +089017 +123559 092004 +088002 +022004 +021006 +092004 +053001 +123566 088038 +013004 092006 +024001 +089008 +123571 092004 +024006 +089005 +092004 +030004 +092004 +012001 +031009 +042003 +035005 +092004 +009001 +123585 088001 +123587 053009 +123590 033012 +092004 +053009 +123594 033020 +092004 +092004 +093001 +024006 +123600 092004 +092004 +067002 +028003 +087003 +034001 +044 +092004 +083003 +123610 011002 +092004 +012001 +123614 071004 +089023 +025005 +123618 012001 +069003 +025002 +089023 +025006 +069003 +064 +037004 +092004 +035005 +089023 +013001 +058009 +092004 +011002 +123634 024001 +092004 +044 +057009 +092004 +079005 +092004 +079005 +006018 +067005 +064 +036003 +053009 067005 +123648 059003 +092005 +092004 +088007 +049 +089007 +092004 +012001 +088027 +039001 +123659 088007 +057008 +025008 +089008 +088007 +123665 092004 +076 +008002 076 +092004 +012001 +123672 087003 +123674 067001 +059003 +092004 +025021 +123679 025021 090004 +123684 030002 +123687 030001 +027006 +092004 +039001 +123692 012001 +064 +004001 +014009 +015029 +027004 +123699 020003 +123701 039003 +074 +092004 +031010 +032001 +092004 +123708 092004 +024006 +092004 +123713 001006 +123715 011002 +013004 +089017 +092004 +012001 +059003 +088009 +092004 +033029 +123726 092004 +067005 +123729 087003 +089020 090001 +093001 +067005 +024006 +123735 075 +074 +074 +031009 +123740 092004 +076 +123743 092004 +067005 +123747 072001 +123749 090001 +093001 +092004 +031009 +011002 +064 +031001 +067005 +067005 +033005 +025013 +123761 033020 +123764 070 +088009 +092004 +012001 +123770 085002 +033003 +123773 092004 +123775 093002 +030006 +123778 093001 +092004 +009005 010002 036004 +092001 +033003 +092005 +123785 034009 +025003 +025021 +123789 059003 +092004 +089020 +093001 +093001 +093001 +087005 +123797 053009 +093001 +093001 +092004 +092002 +057009 +058005 +031010 +123806 088002 +092004 +012001 +092002 +123811 021006 +093001 +093001 +088009 +123816 025021 +123818 059007 +123820 028001 +092004 +012001 +123824 093001 +092004 +012001 +092002 +089007 +092002 +092004 +012001 +076 +123835 059003 +092004 +123838 023007 +123840 053001 +057008 +123843 092004 +028001 +092004 +033029 +092002 +057001 +087003 +123851 088001 +123854 092004 +065001 +123857 065006 +033025 +092002 +057008 +123864 013002 +034001 +012001 +058001 +021004 +092004 +123871 092004 +001006 +123874 025002 +088035 +123880 068006 +059003 +068006 +059008 +123885 092004 +031010 +123888 092004 +088001 +123892 092004 +088001 +092004 +028002 +123898 092004 +028002 +092004 +088011 +123904 092004 +088011 +092004 +025015 +123910 092004 +025015 +092004 +053001 +123916 092004 +053001 +092004 +025003 +123922 092004 +025003 +092004 +025003 +123929 057001 +123931 059006 +123933 065004 +069003 +065004 +013001 +123938 092004 +092004 +012001 +092002 +093001 +093001 +028001 +123948 057001 +123950 032005 +123952 032005 +090013 +029003 +092004 +053003 +092004 +067002 +123960 088038 +089008 +011002 +078002 +068006 +071003 +123967 092004 +033029 +123970 030006 +090011 +123974 090011 +123977 088038 +067001 +123981 078001 +035003 +123984 092004 +034007 +123987 092004 +067005 +037004 +092004 +012001 +092002 +123994 021006 +093001 +093001 +089008 +067002 +067005 +124001 029002 +124004 089011 +028001 +124007 074 +124009 092004 +057001 +072001 +124013 066 +031001 +124016 067007 +023007 +124020 092004 +008001 023007 +090012 +124025 029002 +032001 +124028 067002 +124030 092004 +023007 +092004 +008001 085005 +092001 +089007 +124037 092004 +012001 +092002 +093001 +093001 +028003 +092001 +124045 068006 +124047 067005 +074 +124051 092004 +092001 +023007 +092004 +124056 029002 +090011 +124060 028001 +033003 +036004 +028002 +124065 092004 +092004 +012001 +092002 +093001 +093001 +076 +124073 015006 +089023 +013001 +024001 +092004 +092007 +087003 +124081 057009 +124083 012001 +012001 +065001 087002 +124087 087003 +033006 +058007 +013001 +124093 092004 +012001 079004 +087003 +092004 +012001 +092001 +092004 +058007 +092001 +124106 092001 +025008 +124110 092004 +033006 +092002 +024002 +124115 001002 +013001 +089020 +124121 092004 +088003 +001007 +124126 031009 +092004 +033053 +033006 +072002 +090011 +124133 030001 +064 +006014 +014006 +124138 014007 +080001 +067006 +124142 067009 +014006 +124145 001004 +014006 +124148 092004 +026 +124152 060003 +032002 +124155 059003 +033053 +033005 +057001 +033010 +124161 013001 +124164 025001 +009001 +013001 +033053 +067001 +089023 +124171 012001 +088003 +036001 +033006 +124176 012001 +009001 +124179 085001 +124181 053009 +124183 092004 +011002 +064 +124190 033017 +124192 013004 +033017 +020003 +124196 092004 +037010 +124199 037004 +034005 +013001 +124203 067005 +020003 +124207 041004 +124209 092004 +088036 +124213 092004 +041003 +092004 +072001 +033042 +124220 025002 +072001 +033006 +124224 088019 +124226 092004 +056005 +067006 +124230 042001 +124232 092004 +020003 +124236 023005 +124239 092004 +012001 +012001 +088038 +124244 022003 +089023 +124247 014007 +001003 +037007 +124251 056005 +037009 +124254 067005 +001006 +124257 022003 +089023 +060003 +093001 +088002 +033019 +037009 +014005 +041003 +053001 +013001 +124269 011003 +093002 +124272 093002 +014008 +020003 +014008 056005 +058009 +067002 +053001 +013001 +124281 088002 +093001 +025021 +124285 092004 +092004 +088018 +124289 088036 +041001 +021005 +124293 024001 +124295 024002 +092004 +088002 +085005 +124301 067005 +124303 067005 +025023 +088002 +088018 +042002 +038001 +028001 +012001 +053001 +124313 027004 +021005 +124316 088002 +124318 +056005 +038001 +037009 +124323 078001 +092004 +036004 +008001 +124328 025002 +088034 +041001 +124332 037004 +088025 +025014 +088027 +012002 +033042 +124339 025022 087002 +089007 +012001 +079013 +124344 076 +124348 013001 +124352 012001 +033042 +056005 +124357 064 +030001 +004001 +023003 +058001 +124363 044 +124365 020003 +124368 032001 +033042 +124371 092004 +020003 +124375 020003 +020002 +038002 +088002 +025010 +031001 +092004 +124383 014006 +088033 +079011 +124387 079012 +088033 +124390 092004 +031002 +124393 023001 +124396 008002 +068006 +088036 +124400 068004 +088038 +088038 +009001 +031008 +026 +036002 +025002 +124409 033055 +058004 +124412 079017 088002 +088002 +031008 +041004 +092004 +041001 +092004 +093001 +092004 +124423 038002 +088002 +025010 +124427 033046 +057001 +088018 +124431 004001 +033006 +124434 009001 +033001 +033006 +013004 +092004 +092004 +053009 +030001 +124444 001010 +002004 +124447 001005 +124449 014002 +015022 +124452 092004 +001003 +092004 +088015 +013001 +124458 033039 +065004 +033006 +088038 +124463 025002 +008001 +088036 +092004 +124468 021004 +092004 +124471 031002 +041001 +037010 +124475 033025 +124477 013001 +087005 +092004 +088035 +124484 039012 +124486 037001 +124489 021004 +092004 +088034 +092004 +041003 +124495 028001 +092004 +012001 +124499 021006 +093001 +093001 +124504 067002 +090013 +039012 +013002 +124509 092004 +061 +065003 +092004 +067002 +124515 065003 +124519 027001 +092004 +041003 +092004 +088002 +124525 027001 +031008 +124528 092004 +033017 +124531 088003 +033032 +013004 +124535 092004 +092004 +070 +033003 +004001 +015007 +124542 092004 +057001 +008003 +124546 004001 +047002 +124549 016 +002005 +025003 +067002 +124554 060003 +033005 +124557 033005 +124560 090012 +124562 029002 +124564 092004 +088005 +030001 +029002 +092004 +033024 +124571 092004 +088003 +053009 +033006 +124576 092004 +092004 +053009 +124580 033032 +092004 +012001 +124584 021006 +124586 060003 +032002 +124591 061 +092004 +067008 +124595 033044 +033044 +124598 092004 +057001 +025002 +124602 041001 +124604 033006 +083002 +124607 092004 +033025 +092004 +015006 +124615 092004 +010002 +023007 +059003 +124620 068002 +124622 067003 +042003 +124625 029003 +124628 031001 +124630 001002 +124632 067002 +124634 001006 +124636 002004 +124639 002004 +013003 +092004 +092004 +012001 +033006 +124647 092004 +067002 +001006 +002004 +014005 +013003 +124654 092004 +067002 +001002 +124658 092004 +001001 +092004 +124662 033006 +065001 +124665 002003 +013001 +124668 067008 +056005 +124671 020003 +092004 +053001 +009001 +124676 025003 +124680 029003 +124684 067009 +124686 012001 +064 +060002 +067009 +124691 060002 +067009 +064 +067009 +124697 067006 +012001 +092004 +033025 +064 +124703 067006 +031001 +089023 +025015 +124709 025001 +124712 021006 +089023 +059003 +124716 041005 +015001 +124719 013004 + +012001 +064 +057021 +124726 092004 +001002 +014009 +013003 +124731 002001 +014008 +020003 +124735 001006 +124737 092004 +124740 042002 +027002 +124744 059003 +020003 +071004 +058004 +013001 +124751 088003 +041001 +124754 053001 +030003 +124757 068007 +092004 +015006 +092004 +092004 +012001 + +124766 001002 +014008 +020003 +124770 002001 +014008 +079003 +124774 058011 +001002 +124777 001006 +058011 +124780 092004 +033025 +124783 030003 +124786 088002 +085005 +089008 +025003 +124791 030003 +068006 +088003 +124795 088003 +124797 013001 +124799 025021 +124801 092004 +092004 +012001 +092002 +025015 +021006 +031001 +064 +124810 092004 +025003 +092002 +011002 +093001 +124816 092004 +124819 032004 +033005 +124822 064 +124825 059003 +033005 +033006 +124835 032003 +124838 092004 +027001 +124841 031008 +124843 064 +124845 092004 +063005 +033005 +124849 092004 +057001 +124852 020003 +124854 025003 +124856 028001 +037009 +124860 092004 +092004 +088018 +031002 +031008 +013002 +092004 +057001 +021003 074 +124870 059007 +124872 088009 +124874 028001 +092004 +012001 +092002 +124879 021006 +093001 +093001 +124883 092004 +087003 +124886 067002 +124888 067005 +067008 +067005 +092006 +013003 +067006 +067003 +124896 024002 +124898 024001 +092004 +008002 +092002 +124903 024001 +124905 092004 +008002 +092002 +024005 +089004 +092004 +033006 033019 +092004 +023007 +124915 092004 +023007 +024001 +124919 024001 +124921 033020 +124923 033015 +124925 092004 +023007 +092004 +067005 +124930 013003 +089020 +092004 +012001 +124935 024001 +092002 +092006 +024001 +124940 024002 +033015 +089017 +124944 089009 +089017 +124947 034001 +124949 089020 +092002 +124952 091002 +092004 +034001 +092004 +092002 +089020 +092004 +012001 +124962 092004 +012001 +124965 093001 +093001 +089017 +124969 033005 +092002 +089009 +092004 +025011 +092002 +013001 +059003 +089017 +124980 092004 +033015 +124983 024002 +124987 033015 +124989 090006 +092004 +012001 +014006 +124995 089020 +124999 014007 088015 +092004 +089010 +033006 +090006 +034001 +125006 089020 +125008 091002 +125010 092004 +014007 088015 +041001 +033018 +125016 041001 +092004 +072001 +125020 089010 +125022 092004 +014006 +041001 +064 +125029 092004 +014006 +034001 +125034 092005 +125036 092004 +023007 +093001 +092004 +012001 +125042 053003 +092002 +125045 059003 +088038 +089010 +033006 +090006 +088038 +125054 031002 +125056 092004 +072001 +125059 013001 +125061 092002 +089010 +033022 +092004 +088038 +092002 +125068 031009 +125070 088002 +091005 +040002 +092002 +092004 +088038 +125077 053003 +092002 +089021 +058004 059003 +088002 +089010 +033006 +090006 +125086 088038 +033018 +013001 +125091 092004 +033019 +125096 089020 +092002 +009005 +092001 +125101 033005 +125103 089009 +125105 088038 +091002 +089010 +125109 088038 +090013 +089004 +092004 +012001 +035001 +093001 +093001 +088002 +089017 +125120 040002 +013001 +090009 +092004 +088038 +092002 +125129 092004 +092002 +058007 +089023 +089017 +125135 063001 +092004 +009001 +089017 +089007 089012 +125141 028001 +125143 027001 +125145 089010 +092004 +033032 +125149 036003 +092004 +033006 +090006 +027001 +125155 091002 +092004 +033032 +125160 036003 +033018 +125166 092004 +072001 +125170 089023 +071001 +125173 036003 +125175 092004 +033006 +070 +125180 092004 +025003 +092004 +012001 +073 088004 +089007 089012 +125187 028001 +125189 089020 +125191 013001 +092004 +033006 +089020 +125196 068002 +078005 +092007 +041001 +071004 +089017 +125204 041001 +025003 +033005 +125209 033032 +028003 +089023 +033032 +067005 +125215 090013 +067006 +067003 +092004 +033032 +092004 +067002 067005 +125223 092004 +033019 +125226 024002 +089023 +033032 +028003 +033005 +125234 072001 +089004 090013 +125240 089007 +092004 +088015 +013003 +125245 092004 +014006 +092004 +070 +067002 +014006 +092004 +033006 +125254 092004 +014006 +125257 091002 +092004 +011002 +125261 088026 +125263 092004 +088015 +125266 067006 +067002 +092004 +025003 +092004 +011002 +125274 092004 +014006 +068002 +089017 +088038 +089020 +125283 089023 +092004 +088026 +092004 +011002 +125290 092004 +088015 +125295 092004 +088015 +041001 +125300 028001 +083002 +015001 +089007 +092004 +088015 +032004 +092004 +008002 032004 +125310 009005 +033005 +125313 089007 090006 +040002 +125316 092004 +088038 +090010 +092004 +009001 +125322 011002 +033005 +125325 089007 090006 +027001 +092004 +067006 +067003 +009002 +033005 +125333 089007 090006 +039012 +092004 +012001 +009005 +033005 +125341 027001 +092004 +012001 +011002 +033005 +125348 028001 +092004 +125351 067003 +009002 +033005 +125356 079013 +125359 092004 +033019 +092004 +012001 +089020 +125365 068002 +125367 039012 +092004 +012001 +125371 025010 +092004 +001006 041003 +069003 +092004 +089004 +092004 +041003 +089010 +125381 025010 +092004 +041003 +125386 092004 +025003 +092004 +012001 +089020 +125392 089007 +125394 059003 +092004 +089004 +092004 +001006 041003 +092004 +025002 +092004 +026 +125404 092004 +025002 +092004 +024001 +125409 092004 +088027 +092004 +057001 +013001 +089003 +092004 +012001 +089023 +125419 092004 +041003 +125423 013003 +092004 +001006 041003 +125427 092004 +025002 +125430 089023 +092004 +090011 +092004 +025001 030004 +092004 +012001 +013003 +125439 092004 +067005 +009005 +061 +067001 +125446 064 +033015 +125449 053009 +015006 +125452 067002 +053009 +125455 085001 +089007 +028001 +125459 061 +067001 +125462 089021 +092002 +015004 +089023 +125467 058010 +063004 089003 +092002 +089007 +089010 +125473 092002 +125475 071003 +068002 +089020 +092002 +089023 +089009 +028003 +125485 059003 +063004 089003 +092002 +091002 +125490 037005 +057001 +090003 +092004 +088003 +125496 028001 +059003 +033005 +125501 089007 090006 +125503 028001 032001 +092004 +072001 +089023 +125508 028001 +125511 089007 090006 +059003 +033018 +063004 089025 +092004 +072001 +125518 013001 058010 +125520 013001 +092004 +033018 +089023 +125525 092004 +033022 +125528 093001 +125530 013001 +092004 +053009 +125534 013001 +092004 +053009 +092004 +033022 034005 036004 +092004 +012001 +125542 092004 +012001 +059003 +092004 +033022 034005 036004 +092004 +012001 +069003 +092004 +012001 +090013 +092004 +033021 +092004 +012001 +089017 +092004 +012001 +125563 024002 033015 +067006 +068001 +125568 068002 +125570 089020 +125572 068002 +125575 067003 +024002 +089015 089017 +125579 089020 +092004 +012001 +125584 092004 +012001 +068002 +125589 013001 +092004 +033025 +125594 033025 +092002 +092004 +023007 +092004 +067005 +125601 033005 +125603 089007 090006 +092004 +031002 +125607 091002 +125609 092004 +037005 +125612 057009 +090003 +125615 068002 +089020 +125620 057005 +090013 +090006 +125624 033017 +125626 089023 +064 089007 +092004 +125630 037005 +033017 +125633 090006 +059003 +125636 072001 +125641 033018 +125643 064 +033017 +125646 068002 +089020 +125650 009005 +067002 +068002 +089020 +125655 089009 +067002 +024001 +125659 025014 +125662 025018 +089021 +125665 067002 +092004 +015006 +125669 089010 +028001 +125672 088002 +125674 028001 032002 +125676 089017 +059003 +092004 +042002 +092004 +088002 +090003 +125684 013002 023003 +024001 +058004 +025003 +057008 +092002 +092004 +012001 +089008 091005 +010002 +012001 +033009 +125697 013001 +089007 +125700 092004 +009001 +125703 031004 +092002 +089007 +125707 031004 +125709 025003 +067002 +010002 +012001 +125714 091002 +067006 +024001 +125719 028001 +125721 067002 +024001 +064 +125725 013001 +089007 +024001 +125729 064 +125732 059003 +092004 +125735 092004 +025004 +125738 089007 090006 +125740 088003 +125742 064 078005 +092007 +088003 +125746 059003 +092004 +090011 +092004 +088038 +089017 +092004 +088018 +090011 +089017 +092004 +088038 +125759 092004 +088018 +089017 +028001 +125764 092007 +024001 +089009 +092004 +088038 +020003 +089017 +088038 +089020 +125776 059003 +092004 +089020 +125780 068002 +125782 088038 +059003 +092004 +088038 +125787 024001 090013 +125789 069003 +031004 +125793 092004 +031002 +125796 092004 +042002 +092004 +088002 +088002 +125802 064 +092007 +088002 +125806 092004 +090011 +092004 +088038 +090003 +092004 +012001 +125814 089007 +067006 +067003 +092004 +012001 +088038 +089009 +125822 024001 +092004 +012001 +092004 +012001 +089009 +013003 +092004 +042002 +092004 +012001 +059003 +092004 +013002 023003 +090003 +092004 +012001 +088038 +125842 089007 +058001 +125845 089020 +125847 068002 +089017 +125850 074 +088038 +089007 +125854 092004 +012001 +023003 +089007 089012 +125859 024001 +125861 092004 +058004 +092004 +012001 +125866 092004 +058004 +092004 +012001 +059003 +092004 +125874 088002 +125877 090003 +092004 +012001 +089017 +092004 +125883 025003 +092004 +011002 +125887 090006 +125890 092004 +033015 +125893 024002 +067006 +067003 +125897 025003 +092005 +125900 064 +093001 +090003 +092004 +012001 +125907 020004 +092004 +010003 +125911 089017 +089007 +125914 020004 +125916 089007 +092004 +042002 +125920 088015 +125922 089023 +092004 +092004 +010003 +125927 088002 +011002 +125930 025020 +089010 090006 +088026 +125934 092004 +009001 +092002 +028001 +125939 015001 +089021 +092004 +023007 +084002 +092004 +023007 +089007 +025003 +092004 +011002 +092004 +125952 025003 +068002 +013001 +092004 +023007 +059003 +092004 +088026 +092004 +011003 +125963 020004 +125966 028001 +125968 059003 +020004 +125971 090013 +023007 +067005 +125976 013003 +089007 089012 +125979 028001 +092004 +025003 +089007 091005 +092007 +090009 +092002 +092004 +023007 +125989 023007 +125991 092002 +071004 +090009 +092004 +011002 +092004 +023007 +023007 +089023 +071001 +126002 057001 +092004 +057001 +092004 +041003 +126008 032002 +092004 +011002 +126012 057005 +126015 025003 +092004 +025003 +126021 092004 +092004 +025003 +092004 +012001 +013003 +126029 009005 +025003 +126032 033006 +069003 +092004 +033006 +089023 +090002 +042002 +126040 072001 +089007 089012 +126043 028001 +126045 089025 +092004 +072001 +126049 089015 +083006 +126052 025014 031009 +092004 +025014 +092002 +126058 030007 +092002 +092004 +026 +089007 +078001 +126065 092004 +012001 +092004 +026 +092002 +126071 028001 +059003 +025003 +089010 +092004 +026 +126078 030007 +025014 +126081 089020 +092004 +012001 +126087 033012 +057009 +126091 089007 +092004 +033032 +126095 036003 +126097 092004 +025008 +090005 +126101 090011 +089017 +126105 092004 +033032 +126109 031009 +092004 +009001 +092004 +012001 +126115 093001 +093001 +126118 025003 +092005 +064 +057008 +033032 +092002 +126125 092004 +036003 +092004 +033032 +126130 089020 +126132 068002 +126138 089012 +126140 028001 +126142 068002 +126144 092002 +089012 +092004 +012001 +126149 092002 +057008 +025003 +126153 059003 +012001 +031006 +089023 +027004 +092004 +012001 +090006 +089003 +092004 +012001 +126165 089007 +126167 053009 +015004 +084002 +092004 +009001 +089007 089012 +126174 028001 +092004 +012001 +092004 +012001 +059003 +012001 +126182 033021 +093001 +093001 +013001 +008001 058001 +015006 +089003 +092004 +012001 +126192 089017 +059003 +026 +126197 033021 +092004 +093001 +126201 092004 +012001 +126208 092004 +092004 +053009 +126212 033015 +126214 015006 +126216 067002 +083003 +092004 +009001 +126221 067002 +009005 +126224 089003 +092004 +012001 +126229 039012 +126231 089007 +078001 +126234 092004 +089020 +126238 092004 +126240 092004 +041003 +126243 089003 +092004 +041003 +126247 089007 +126249 090003 +092004 +041003 +033006 +126254 092004 +041003 +126257 031007 +092002 +089003 +092004 +012001 +126263 092004 +028001 +092004 +012001 +031007 +092002 +126273 092004 +012001 +126276 031007 +092002 +089012 +126280 028001 +092004 +012001 +092004 +072001 +126286 092004 +012001 +092004 +031002 +025003 +025003 +092005 +089007 +092004 +025003 +090003 +092004 +012001 +126301 059003 +092004 +025003 +090003 +092004 +012001 +013002 023003 +126309 028001 +092004 +012001 +092004 +126314 025003 +126316 028001 +092004 +012001 +089007 +092004 +012001 +025003 +126324 089007 089012 +126326 028003 +092004 +025003 +092004 +012001 +083003 090013 +092002 +126334 092004 +012001 +126337 092004 +058007 +015004 +092004 +012001 +084002 +092004 +001006 +089009 +023007 +090001 +126349 089025 +126352 092004 +025003 +126356 092002 +025003 +092004 +012001 +089023 +126363 025003 +092002 +089017 +015004 +092004 +012001 +126370 040002 +090009 +092004 +088038 +092002 +025003 +089007 +078001 +092004 +012001 +025003 +092002 +089017 +092002 +071004 +092005 +025003 +012001 +092004 +067001 +024001 +089010 +025003 +092005 +092004 +012001 +089020 +092002 +068002 +126400 092004 +025003 +126403 083003 +092002 +088004 +126407 089007 089012 +126409 028001 +126413 068002 +126417 092002 +089007 +063004 +092004 +012001 +126423 057008 +092002 +089017 +092002 +024001 +126429 033020 +126431 092004 +012001 +015004 +092004 +012001 +021006 +092004 +009001 +126441 033021 +126443 093001 +126445 092004 +012001 +092004 +012001 +092004 +012001 +089020 +126453 068002 +126457 092004 +012001 +089017 +092002 +027001 +126463 031006 +092004 +025003 +126467 090013 +092004 +012001 +090013 +092002 +092004 +012001 +025003 +126477 092004 +068002 +089020 +092004 +025003 +126483 092004 +012001 +068002 +126487 092004 +012001 +126491 068002 +089012 +126494 088004 +092004 +025003 +083003 090013 +092002 +090006 +025014 +126502 067002 +092004 + +092004 +030007 +089007 +064 +092007 +126511 089017 +092002 +126514 083003 +092004 +041003 +126518 025022 +126521 089013 +092004 +025003 +089023 +092004 +073 +025003 +084002 +013001 +092004 +025022 +089007 +092004 +025022 +038001 +090012 +126538 092004 +025022 +126541 088004 +089004 +092004 +025003 +092002 +025003 +089007 +126549 060003 +025003 +092002 +089010 +126554 033006 +126556 025003 +092004 +012001 +126560 092004 +011002 +126563 088026 +033018 +126566 089007 +092004 +126569 025003 +092004 +011002 +126574 024001 +126576 074 +092004 +012001 +126581 024001 +025003 +089017 +126585 092004 +033032 +126588 090003 +126590 090006 +092004 +025003 +092004 +012001 +025003 +089017 +092004 +011002 +126600 059003 +092004 +031006 +126604 093001 +126606 092004 +053009 +090003 +092004 +012001 +013002 023003 +089017 +059003 +092004 +025003 +092004 +013002 023003 +025003 +092004 +013002 023003 +126623 089007 089012 +126625 028001 +126627 025003 +092004 +058004 +092004 +012001 +067002 +092004 +012001 +025003 +126637 092004 +033032 +126640 042002 +091001 +126644 092004 +025003 +092004 +012001 +090006 +092004 +033032 +126652 036003 +089017 +092004 +033032 +126657 022004 +126660 089007 +059003 +092004 +013002 023003 +126665 092004 +012001 +039012 +092004 +041003 +126673 092004 +039012 +092004 +039012 +092004 +041003 +092004 +031009 031010 +092002 +126684 092004 +039012 +092004 +041003 +089023 +126690 092004 +031006 +126693 093001 +126695 092004 +012001 +092004 +012001 +126701 092004 +015006 +090002 +002004 +126706 023007 +093001 +093001 +126710 089012 +092004 +002004 +058007 +089023 +126716 092004 +002004 +126720 092004 +008002 +089015 +092004 +012001 +126726 092004 +033020 +089007 +092004 +012001 +126732 092004 +072001 +089007 +060002 +126737 092004 +033020 +092004 +012001 +126742 092004 +002004 +126745 092004 +008002 +126748 092004 +060002 +126751 092004 +126754 089007 +092004 +033020 +092004 +009001 +031007 +092004 +033020 +092004 +012001 +078001 +126766 089007 +126769 092004 +033020 +092004 +012001 +126774 033020 +090006 +092004 +012001 +126779 092004 +031010 +090006 +092004 +012001 +092004 +012001 +126787 092004 +033020 +126791 092004 +126793 031006 +092004 +012001 +033018 +013001 +126799 089007 +126801 031006 +090006 +092004 +033020 +126806 033020 +092004 +012001 +090006 +092004 +012001 +126813 089015 +126816 092004 +033020 +091005 +023007 +067005 +090014 +092004 +012001 +092002 +089015 +126827 092004 +023007 +090001 +092004 +012001 +126834 092004 +090013 +092004 +012001 +090013 +092004 +023007 +092004 +126844 092004 +012001 +092004 +012001 +092004 +023007 +126853 033005 +126855 092004 +031009 +090006 +092004 +009001 +092004 +012001 +092004 +012001 +089009 +028001 +126867 023007 +067005 +090013 +089017 +126873 092004 +025014 +126877 089004 +126879 091005 +067002 +126882 033012 +089005 +092004 +030004 +126887 031007 +092002 +089017 +067002 +028001 +126893 031007 +092002 +126897 033012 +032001 +126900 090013 +092004 +033012 +126904 033012 +090003 +126907 067002 +126909 024001 +092004 +011002 +126913 088038 +088038 +126916 089008 +023007 +033012 +126920 090014 +023007 +126923 092004 +088038 +126927 023007 +126929 088038 +126931 023007 +126933 090006 +092007 +033006 +090006 +033012 +059003 +088002 +088038 +126942 091002 +126944 088038 +126946 089008 +023007 +028001 +126950 059003 +092004 +013002 023003 +126954 092004 +012001 +126957 088038 +089023 +092004 +013002 +126962 092004 +012001 +013001 +126967 092004 +012001 +126970 020002 +126972 028001 +126974 089003 +092004 +012001 +126979 092004 +041003 +063001 +126983 092004 +012001 +013003 +089017 089023 +028001 +126989 092004 +012001 +092004 +012001 +085001 +089017 +090012 +092002 +030001 +089009 +028001 +092004 +073 +089017 +127004 089020 +092004 +070 +127008 092004 +012001 +127011 093001 +093001 +127015 092004 +073 +012001 +127019 023007 +067005 +009005 +013004 037009 +127024 089021 +092004 +012001 +092004 +053009 +030006 +087003 +127032 092004 +010002 +127036 025003 +070 +070 +092001 +127042 092001 +058007 +089023 +127046 059003 +092004 +032002 +092004 +072001 +089007 +092004 +072001 +092004 +068002 +089020 +092002 +127059 089020 +092002 +127063 092004 +067005 +013001 +090013 +092002 +088009 +088010 +022007 +090003 +012001 +012001 +127076 093001 +093001 +092004 +012001 +092004 +012001 +089007 089013 +072001 +127085 025003 +025011 +078001 +089007 +027001 +127091 092004 +010002 +127094 041001 +070 +070 +064 +033032 +057009 +090003 +092004 +012001 +089015 +087003 +067002 +033012 +127108 033005 +127111 064 +033032 +028003 +089023 +127116 090013 +067006 +067003 +090006 +025003 +092005 +089015 +127125 092004 +025003 +090006 +041001 +089005 +092004 +033032 +127134 092004 +033032 +127137 064 +024002 +127140 067003 +090006 +089012 +127144 041001 +089007 +015004 +084002 +092004 +041003 +059001 +031002 +092004 +127154 033021 +093001 +093001 +015006 +013001 +009001 +127162 092004 +031002 +089017 +092004 +053009 +027006 +127169 089008 +127171 057007 +127173 042004 +089023 +038002 +059003 +057009 +059003 +092004 +036003 +127183 068002 +127185 092004 +033017 +092004 +093001 +012001 +127191 090013 +092004 +068002 +127195 092004 +033017 +127198 089017 +092004 +012001 +127202 092004 +012001 +127205 089010 +127207 015001 +084002 +127212 092004 +033017 +127215 015023 +127217 057009 +127220 007002 +127222 033003 +127225 033006 +089007 +092004 +033006 +127230 033003 +057008 +092004 +042002 +127235 092004 +088015 +127240 033005 +127242 025001 +090002 +006010 +127246 006010 +089023 +030003 +085001 +127253 083006 +127255 083006 +033006 +089008 +092004 +025011 +092002 +078004 +127263 033003 +127265 092004 +010002 +092004 +010003 +127270 092004 +030006 +092004 +053009 +093001 +092004 +025003 +127278 092001 +025003 +070 +070 +025003 +089004 +059003 +025001 033013 +127287 022007 +127289 023008 +078005 +022007 +127293 092004 +026 +089007 +025011 +078001 +015006 +011002 +127301 033020 +127303 092004 +072001 +089014 +127308 072001 +041001 +078001 +025011 +127316 033015 +092004 +092001 +036004 +127322 072001 +041001 +025003 +031009 +127329 090011 +090009 +092004 +011002 +091002 +127335 011003 +127337 033020 +127339 092004 +025003 +083006 +011002 +127344 088001 +127346 015004 +066 +092004 +012001 +089007 +090009 +092004 +009001 033020 +015004 +092004 +057007 +090003 +092004 +011002 +089008 +092002 +071004 +035001 +092004 +064 +089008 089009 +042004 +013001 +092004 +072001 +033005 +127373 092004 +011002 +089023 +092004 +025010 +127379 093001 +127381 036003 +092002 +089007 +127385 067002 089010 +015006 +029002 +127389 092004 +042002 +127393 033006 +088015 +033040 +092002 +127399 025007 +127402 069003 +127404 034007 +092004 +011002 +127408 092004 +030004 +013004 +127413 092004 +011002 +015004 +025003 +127418 041004 +092004 +088015 +089023 +092004 +088001 +092004 +088001 +089003 +092004 +012001 +127430 092004 +088015 +127433 024001 +092004 +012001 +093001 +033020 +090001 +059003 +127443 092004 +072001 +127446 089017 +092002 +033020 +127450 028001 +127452 092004 +033020 +092002 +072001 +127459 033005 +127461 089023 +127463 025001 +127465 006010 +127467 006010 +127469 033005 +089023 +030003 +067002 +127474 034006 +127476 083006 +127478 083006 +033006 +022007 +127482 033003 +127484 092004 +034001 +033003 +092004 +034001 +089016 +033009 +093001 +093001 +093001 +087005 +127496 010003 +093001 +092004 +127500 012001 +012001 +025003 +127504 093001 +093001 +037009 +033029 +127509 088010 +127511 025021 +127513 025003 +059007 +025003 +078004 +068006 +127519 033005 +127522 092004 +089020 +092002 +021006 +071004 +127528 033005 +127530 025013 +039005 +092004 +060005 +057008 +092004 +011002 +031010 +127539 034002 +127541 009001 +092004 +067002 +033015 +127547 092004 +056005 +053001 +092004 +092004 +012001 +092002 +088009 +013002 +127557 088036 +127559 092004 +127561 037004 +127563 012001 +092002 +093001 +093001 +034005 +127569 025001 +032001 +060005 +059003 +029002 +127577 011002 +127579 001011 +093002 +021005 +092004 +067002 +092004 +127586 031009 +020003 +127589 012001 +092004 +127592 013001 +092004 +127595 037004 +089023 +015004 +092004 +057001 +085005 +127602 056005 +127604 +006004 +067005 +127608 014007 +037009 +064 +093002 +127613 093002 +127615 092004 +083004 +127618 011003 +092004 +064 +041001 +127623 088036 +127625 088036 +036004 +008001 +058006 +013003 +028003 +002003 +067005 +038001 +090013 +089023 +064 +127639 033056 +089017 +008001 +088034 +089017 +037004 +076 +089017 +012002 +033042 +127651 092004 +012001 +033050 +033051 +127656 092004 +093001 +008001 +127660 092004 +093001 +092004 +012001 +025014 +056005 +033042 +090014 +089023 +033006 +033046 +127672 012001 +127674 089017 +127676 059001 +127678 032001 +033042 +089017 +059001 +058001 +064 +092004 +030001 +004001 +032001 +127690 020003 +022001 +127694 092004 +041001 +092004 +093001 +041001 +127700 092004 +031002 +092004 +093001 +038002 +041001 068006 090013 +127707 092004 +039007 +092004 +093001 +021006 +127714 092004 +127716 092004 +023001 +127719 021001 079011 +023001 +053007 088020 +127723 036001 +001005 +002004 +127727 014002 +015022 +003002 +067009 +023012 +023007 +023007 +043 +014005 +020001 +001010 +014005 +092004 +127741 088020 +001004 +015002 +127745 092004 +001003 +092004 +001003 +067005 +067005 +013001 +127753 033053 +127756 060003 +127758 093001 +093001 +033006 +091003 +127763 012001 +127765 088003 +060001 +127769 056005 +127771 059003 +127773 033046 +127778 059003 +092004 +042002 +053001 +127784 053001 +127787 059003 +092004 +088017 +127791 033006 +127794 088038 +053001 +127798 033041 +033048 +127801 092004 +025002 +127804 041001 +127806 092004 +033006 +127809 033006 +033039 +033038 +033038 +065005 +089009 +127816 025003 +127818 029002 +092004 +033006 +092004 +033024 +127824 092004 +053009 +092004 +012001 +092002 +093001 +093001 +127832 033006 +127835 061 +127837 067001 +127839 033044 +041001 +127842 092004 +127844 025002 +092004 +053001 +127849 092004 +030007 039002 +041003 +012001 +127856 025003 +127858 074 +127860 092004 +088003 +127863 031010 +127865 012001 +088003 +033013 +127870 025003 +012001 +013001 +034007 +092004 +088010 +092004 +012001 +092002 +093001 +093001 +127882 023007 +067005 +127885 089017 +127887 031006 +088010 +021005 +127891 002003 +018001 +089017 +127895 088010 +127897 025022 +088026 +127900 092004 +127902 092004 +008001 +079011 +006017 +127907 092004 +074 +037009 +127911 088038 +127913 085002 +083006 +092004 +087003 +127918 088003 +127920 025011 +127922 012001 +021006 +092002 +127926 093001 +093001 +092004 +012001 +092002 +087003 +087003 +076 +127935 037003 +067006 +059003 +092004 +067006 +127941 067002 +127943 067005 +059003 +092004 +067005 +072001 +028003 +093001 +093001 +127954 092004 +012001 +028003 +092004 +087005 +127961 013004 +067005 +067005 +071005 +127966 033010 +015004 +127969 092004 +012001 +127972 092004 +087005 +127975 093001 +127977 033020 +092004 +033006 +092004 +012001 +127983 092004 +033020 +093001 +093001 +059001 +024001 +025011 +092004 +033005 +127993 092004 +031007 +092004 +033006 +092004 +033053 +128000 036003 +092004 +128004 033005 +128006 092004 +067008 +067002 +093001 +092004 +060002 +011002 +092004 +128015 092004 +093002 +088009 +128019 025021 +128022 092004 +128025 092004 +128028 092004 +128032 092004 +060002 +012001 +128036 083006 +092004 +006015 +128042 093001 +093001 +092004 +033020 +092004 +031009 +092004 +010002 +092004 +023007 +128053 092004 +012002 +092004 +037004 +092004 +001006 +092004 +025003 +092002 +128063 037010 +092002 +128066 092004 +088038 +092002 +128070 092004 +023007 +128075 092002 +037004 +053009 +092004 +012001 +128081 012001 +128084 092004 +087003 +128087 092004 +076 +128090 092004 +067005 +092004 +067005 +072001 +091003 +128098 092004 +001005 +128101 024001 +128103 059003 +024001 +128108 019002 +128110 052 +128113 059003 +092004 +011003 +092004 +001006 +069001 +072001 +092001 +128122 092004 +061 +128125 092004 +061 +033006 +012001 +092004 +012001 +092004 +128134 092004 +128137 092004 +128139 092004 +012001 +092001 +093001 +092004 +011002 +128147 057001 +128149 092004 +022001 +128152 037004 +128154 025015 +128156 093001 +085001 +128159 092004 +001009 +092004 +033009 +093002 +128165 092004 +033006 +092004 +012001 +128170 092004 +033020 +093001 +013001 +128175 012001 +128177 092004 +012001 +067009 +128181 024002 +083006 +092001 +033006 +128186 064 +006012 +033006 +128190 024001 +033005 +128193 006010 +128195 015024 +092004 +060002 +011002 +128200 093002 +128203 093002 +128206 093002 +128209 093002 +128212 093002 +128215 093002 +128218 093002 +128220 015007 +024001 +092004 +033006 +128225 033006 +128227 092001 +128229 015007 +024001 +060002 +006014 +002007 +128236 083003 +092004 +006014 +064 +009001 +009001 +049 +006017 +128245 049 +128247 092004 +008002 +006017 +002007 +128252 092004 +008002 +128256 092004 +008002 +079007 +064 +008002 +079007 +064 +002004 +128265 092004 +008002 +128268 064 +002003 +002003 +128272 092004 +008002 +128275 064 +002007 +064 +128279 007007 +079014 +128282 092004 +033006 +128285 064 +014009 +002004 +128292 092004 +082002 +008002 +128296 001004 +060002 +128300 092004 +008002 +128303 006007 +079018 +079019 +015004 +128308 092004 +008002 +128311 064 +092004 +001004 +014006 +128316 092004 +076 +128321 024001 +128323 015012 +128325 092004 +008002 +128328 064 +023007 +128331 085002 +092004 +008002 +128336 092001 +033006 +128339 025022 +092001 +128342 092004 +060003 +128345 092004 +061 +128348 092004 +023007 +128351 013001 +023007 +128354 091003 +023007 +128358 092004 +067005 +092004 +067005 +128364 092004 +057007 +092004 +023007 +128369 092004 +001003 +128372 033005 +128374 024001 +128380 067006 +013004 +128384 092004 +028005 +092004 +060002 +001004 +128390 024001 +128392 092004 +008002 +092001 +128396 092004 +060002 +006014 +092004 +002007 +092004 +060002 +001004 +012001 +092004 +060002 +011002 +128410 092004 +006014 +092004 +060002 +060002 +011002 +128417 092004 +012001 +092004 +128421 093002 +011002 +033005 +092007 +033006 +092004 +018001 +092004 +060002 +001004 +128432 092004 +008002 +128435 092004 +015029 +128438 083003 +092004 +060002 +006014 +092004 +002007 +032001 +092004 +042002 +128449 092004 +042004 +128452 092004 +025015 +128458 074 +025015 +088015 +128462 027004 +092004 +033006 +128466 053009 +128471 027001 +128473 033018 +128475 025015 +128478 090013 +128480 092004 +033009 +092001 +128485 025024 +091001 +128490 090006 +092004 +025003 +128494 092004 +060003 +068004 +128498 029004 +084001 +013002 +128502 041005 +128504 092004 +060003 +042002 +128514 015001 +092004 +006014 +128519 092004 +080001 +128524 041005 +091001 +128529 088026 +092004 +042002 +092004 +093001 +128535 092001 +088026 +092004 +024002 +008002 +031007 +128542 092004 +012001 +033006 +092004 +011002 +092004 +039012 +128551 023001 +128553 092004 +003002 +092004 +023007 +128560 092004 +001002 +092004 +012001 +128565 092004 +012001 +092004 +128569 093002 +011002 +033005 +092007 +033006 +092004 +060003 +128577 092004 +061 +128580 013001 +023007 +128583 023007 +028001 +128586 092004 +022001 +128589 092004 +057006 +089023 +059006 +128595 092004 +033042 +128598 092004 +033006 +093001 +128606 089023 +011002 +092004 +012001 093001 +128611 025022 +128613 090013 +067002 +091003 +067002 +092004 +012001 +015026 +128623 007002 +128625 027004 +128628 022001 +067009 +060002 +013001 +031009 +067006 +023007 +128638 092004 +057008 +092004 +023007 +092004 +128644 008002 +031007 +128647 092004 +012001 +033006 +092004 +011002 +092004 +039012 +128656 020002 +128658 092004 +023007 +092004 +060003 +128663 092004 +012001 +092004 +128667 093002 +011002 +033005 +092007 +033006 +092004 +128674 092004 +006007 +092004 +079018 +092004 +079019 +028001 +083002 +085005 +083002 +092004 +037004 +092004 +012001 093001 +128689 018001 +092004 +033009 +092001 +128695 034005 +092004 +031009 +092001 +128701 092004 +067008 +093001 +092004 +033020 +092001 +092004 +031009 +092001 +128711 020004 +128714 083002 +092004 +012001 093001 +085005 +091001 +128722 059001 +128725 083001 +018001 +092004 +033017 +093001 +128731 033017 +092004 +093001 +085002 +088038 +083006 +092004 +011003 +093001 +023001 +005001 +128743 088036 +128748 018001 +092004 +033017 +092004 +093001 +064 +128755 041005 +128761 067002 +128763 055002 +090008 +128767 092004 +006007 +092004 +008002 +092001 +092004 +128774 008002 +031007 +128777 092004 +012001 +033006 +092004 +011002 +092004 +039012 +128786 092004 +005001 +092004 +028005 +128793 002005 +079007 +128797 092004 +002005 +033005 +033009 +058011 +128803 092004 +028001 +128807 092004 +057009 +128810 092004 +012001 +092004 +128814 093002 +011002 +033005 +092007 +033006 +092004 +012001 +092004 +012001 +092004 +128825 092004 +008002 +128828 064 +002003 +002003 +128832 092004 +008002 +128835 064 +002007 +028001 +128839 092004 +042002 +128842 092004 +025003 +128845 092004 +031009 +128848 092004 +035002 +128851 092004 +025015 +128855 092004 +042002 +128858 092004 +061 +128861 092004 +060003 +091001 +128868 013004 +092004 +009003 +093001 +092004 +033006 +128875 053009 +128877 033017 +128879 031002 +092004 +092001 +087005 +088036 +128885 023001 +005001 +128890 067005 +128892 041005 +128895 025001 +041005 +128898 092004 +088036 +128901 091003 +023009 +128905 006015 +128907 092004 +088036 +128912 022001 +128918 092004 +042002 +128922 092004 +036004 +128925 020004 +128927 023007 +128929 032002 +059003 +092004 +011002 +128934 092001 +128936 092004 +027004 +026 +128940 026 +128944 059003 +128946 092004 +042002 +128950 033006 +128952 092004 +063005 +092004 +128956 093002 +078005 +128960 092004 +033017 +128965 027001 +092004 +028005 +092004 +012001 093001 +089008 +033006 +128973 085002 +128976 058006 +022001 +089023 +128981 018001 +067006 +071001 +128985 015006 +128987 092004 +039012 +128990 092004 +036003 +067006 +067003 +092004 +042002 +092001 +128999 037003 +129001 092004 +011003 +129004 037004 +129007 037004 +002007 +064 +092004 +006016 +092004 +002005 +019004 +064 +092001 +057009 +129019 092004 +012001 +092001 +129025 092004 +001004 +092004 +001004 067009 +092004 +129031 008002 +031007 +129034 092004 +012001 +033006 +092004 +011002 +129040 092004 +012001 +092004 +129044 093002 +011002 +033005 +092007 +033006 +092004 +129051 092004 +060002 +012001 +092004 +012001 +129057 092004 +060002 +001004 +028001 +129062 092004 +042002 +129065 033020 +129068 023007 +129070 023007 +129072 013001 +023005 +129075 074 +092004 +063005 +129079 067002 +023007 +129083 027001 +129085 042002 +067003 +090005 +092004 +012001 +092001 +129092 029004 +092004 +057009 +129096 031007 +129098 036003 +129100 041005 +129104 023005 +015006 +064 +057021 +129111 032002 +092007 +067001 +015006 +129117 091001 +129119 059001 +009001 +129122 093002 +129125 079010 +092004 +006017 +129130 015029 +129132 092001 +129134 079007 +129136 065002 +129138 092004 +039012 +129141 049 +129143 006017 +079007 +129148 013003 +092004 +033009 +129153 092004 +006010 +092004 +023007 +129158 033021 +092004 +033009 +129162 090005 +092004 +012001 +092001 +129167 090005 +092004 +012001 +129171 092004 +129173 008002 +031007 +129176 092004 +012001 +033006 +092004 +011002 +129182 092004 +012001 +092004 +129186 093002 +011002 +033005 +092007 +033006 +092004 +088003 +092004 +070 +092004 +129197 092004 +057007 +093001 +092004 +079024 +129203 092004 +079024 +129206 079024 +129208 092004 +079024 +028001 +129212 092004 +042002 +091003 +129216 083006 +129218 007003 +071001 +129222 079024 +092004 +074 +129226 078001 +076 +129230 036003 +092001 +092004 +033006 +129236 034005 +092004 +033009 +092001 +091003 +129243 092004 +011002 +092004 +012001 093001 +092004 +033006 +129250 093001 +129255 089023 +033018 +091002 +129261 015006 +129263 017005 +083006 +092004 +008002 +129269 032002 +129271 092001 +025003 +129275 036003 +092004 +033006 +092004 +025015 +092001 +092001 +129283 037009 +129285 092004 +067001 +092004 +027004 +092004 +067002 +129293 092004 +001006 +063001 +027004 +092004 +085005 +129300 092004 +001006 +129303 067002 +018001 +129308 092004 +018001 +092004 +057008 +129313 092004 +039012 +129317 007003 +129319 092004 +007002 +092004 +012001 +092001 +129325 084002 +129328 015004 +067006 +129331 033005 +129334 092004 +033009 +092004 +012001 +092001 +129340 092004 +033009 +092004 +001014 +092004 +012001 +092001 +092004 +058011 +093002 +092004 +015011 +129353 092004 +001002 +129356 092004 +012001 +092001 +129360 092004 +033009 +092001 +092004 +058011 +092004 +129367 008002 +031007 +129370 092004 +012001 +033006 +092004 +011002 +129376 092004 +012001 +092004 +129380 093002 +011002 +033005 +092007 +033006 +092004 +072001 +092004 +033020 +092004 +031009 +129392 070 +092004 +089007 +092004 +001001 +092004 +012001 +028001 +129401 092004 +042002 +129405 069003 +079014 +069003 +079014 +071004 +129411 079014 +129413 079014 +129416 079014 +129419 069003 +079014 +069003 +079014 +067002 +129425 023002 +129427 092004 +008002 +092001 +129431 033006 +129433 057003 +129436 057003 +129438 092004 +057005 +129443 032001 +129447 092004 +022001 +129450 088010 +129452 057006 +129454 032005 +129456 049 +033027 +129459 057015 +129461 092001 +002007 +014008 +090002 +002003 +129467 057003 +129469 006017 +079007 +129472 049 +129475 024001 +092004 +025018 +092004 +049 +129482 006020 +047003 +092004 +008002 +129488 024001 +092001 +129491 059001 +025003 +033046 +129495 038001 +129497 025006 +129499 041005 +091003 +017001 +083005 +092004 +007003 +129506 019001 +129509 031007 +092004 +033006 +092001 +129514 079024 +092004 +007003 +015008 +129521 023001 +129527 092001 +092004 +039012 +129532 017002 +129534 092001 +129536 092004 +006015 +092001 +064 +092001 +039012 +129543 017002 +129545 092004 +012001 +092001 +129549 092004 +006015 +129552 092004 +129554 008002 +031007 +129557 092004 +012001 +033006 +092004 +011002 +129564 024001 +129566 091003 +007003 +079024 +129570 092004 +001002 +129573 092004 +033006 +092004 +060003 +129578 024002 +064 +006012 +033006 +129583 092001 +033006 +015010 +083001 +129588 028003 +129591 013004 +129594 071005 +067002 +013001 +129598 012001 +129600 091003 +006015 +085001 +129604 092004 +001002 +129608 092004 +006015 +017002 +129612 092004 +017002 +064 +024001 +002006 +002006 +129619 002006 +129621 001005 +083004 +092004 +006015 +064 +024001 +002006 +129629 083004 +092004 +006015 +006015 +060002 +129636 083008 +092004 +006015 +060002 +060002 +053009 +017002 +049 +129645 006017 +079007 +129649 092004 +008002 +129652 006018 +002007 +129656 092004 +006015 +015004 +014004 +129661 014009 +129663 014004 +129665 060002 +006014 +002003 +014008 +083006 +092004 +006015 +129674 092004 +060002 +012001 +092004 +012001 +129680 083006 +092004 +006015 +064 +001010 +006023 +064 +002004 002006 +129690 083003 +092004 +006015 +129694 083004 +092004 +006015 +060002 +012001 +059004 +008002 +083006 +129703 083006 +129705 092004 +012001 +092004 +060003 +064 +004001 +129712 092004 +060003 +012001 +064 +004001 +129718 092004 +060003 +012001 +129722 092004 +008002 +064 +009001 +129727 092004 +060003 +012001 +064 +004002 +015033 +129734 092004 +060002 +012001 +129742 089016 +008002 +060002 +083004 +129747 083003 +059004 +008002 +129751 068004 +129754 067005 +129756 067005 +033006 +088003 +088003 +088003 +012001 +092004 +012001 +092004 +012001 +092004 +129769 092004 +129772 092004 +129777 092004 +012001 +087003 +129781 087002 +129783 033036 +092004 +017002 +129787 092004 +006015 +092004 +023007 +129792 092004 +067005 +092004 +067005 +017005 +092004 +060002 +060002 +053009 +083006 +092004 +017002 +129805 092004 +006015 +129808 053007 +092004 +023007 +129812 092004 +067005 +092004 +067005 +129817 015026 +092004 +006018 +129821 083006 +092004 +006015 +033006 +092004 +012001 +129828 092004 +012001 +092002 +065002 +129833 057009 +092004 +087003 +129837 092004 +087002 +129840 092004 +076 +129844 042003 +092004 +059003 +129849 092004 +030004 +129854 042003 +129856 024001 +129858 092004 +008002 +092004 +017002 +129863 092004 +006015 +006010 +033005 +083003 +129869 083004 +006010 +006010 +060002 +129874 024001 +012001 +076 +033015 +129879 033006 +129882 065002 +079024 +092004 +006010 +129887 013001 +092004 +006010 +129892 074 +092004 +129895 092004 +001002 +069003 +129899 092004 +001006 +069003 +083009 +092004 +001006 +079024 +092004 +006010 +069003 +024001 +129912 025012 +129915 092004 +065002 +013001 +079024 +092004 +006010 +069003 +024001 +129927 092004 +053009 +033006 +092001 +129932 025012 +091003 +039012 +092004 +004001 +092004 +129939 092004 +010001 +093001 +092004 +010002 +093001 +079024 +092004 +006010 +129949 092004 +060002 +006010 +129954 024001 +129956 083003 +092004 +006015 +129960 092004 +060002 +012001 +129965 083003 +092004 +053009 +004001 +017001 +064 +020004 +129973 008002 +060002 +129976 008002 +060002 +129980 092004 +060002 +012001 +092004 +012001 +015004 +129987 059003 +092004 +001006 +129993 057007 +129995 092004 +008002 +092004 +017002 +130000 092004 +006015 +130004 057007 +092004 +006010 +092004 +060002 +012001 +130011 092004 +060002 +060002 +053009 +017005 +083006 +092004 +004001 +130020 059003 +006012 +130023 006016 +002007 +059004 +006021 +130029 092004 +033013 +092004 +011002 +130034 033007 +033007 +058011 +033006 +065002 +130040 057007 +092004 +006010 +130044 079024 +092004 +006010 +130049 020004 +130051 037010 +092004 +012001 +130055 092004 +023007 +130059 059003 +010001 +130062 033001 +130064 011003 +130066 011003 +130070 092004 +012001 +092002 +037004 +130075 053009 +130077 037004 +130079 092004 +001006 +130082 024001 +130084 024002 +033006 +012001 +130088 083004 +092004 +006015 +130092 092004 +012001 +130095 092004 +053009 +130099 092004 +060001 +130102 060001 +060001 +130105 060007 +060007 +033006 +033006 +130112 092004 +004001 +092004 +020004 +057009 +092004 +076 +130120 057003 +130122 032004 +130124 079013 +130126 087002 +130128 087003 +130130 033037 +130132 059003 +042003 +130136 092004 +001002 +130140 092004 +001006 +130143 083009 +092004 +001006 +130148 092004 +001010 +130152 092004 +130155 059003 +033006 +024002 +092004 +017002 +130161 092004 +006015 +130164 092004 +004001 +092004 +033037 +130169 092004 +087002 +130172 092004 +087003 +130175 092004 +076 +130178 092004 +067005 +092004 +067005 +130183 092004 +060002 +012001 +033006 +072001 +130189 092004 +053009 +017005 +130193 053007 +130195 024001 +130197 079024 +092004 +004001 +130202 092004 +060002 +006010 +130206 024002 +130209 092004 +060002 +012001 +033006 +064 +033006 +014004 +130218 024001 +130220 091003 +004001 +079007 +130224 092004 +017002 +130229 006007 +130233 006018 +130235 015004 +039012 +130239 039012 +130242 079024 +092004 +006010 +092004 +060003 +024002 +092004 +060003 +012001 +033006 +130254 015004 +058006 +004001 +079007 +130259 092004 +017002 +130265 018001 +092004 +022007 +130269 092004 +001006 +130273 092005 +020004 +130278 006007 +130282 079024 +092004 +006010 +092004 +060003 +024002 +092004 +060003 +012001 +033006 +130294 024001 +130296 091003 +004001 +079007 +130300 092004 +017002 +130304 018001 +006022 +130307 092004 +008002 +130311 024002 +064 +033006 +130315 083003 +092004 +060002 +012001 +033006 +081005 +003004 +006011 +130324 060002 +081005 +003004 +006011 +130329 092004 +006019 +130332 092004 +006019 +130335 020002 +130338 079024 +092004 +006010 +092004 +060003 +024002 +033006 +092004 +060003 +012001 +033006 +130351 024001 +130353 091003 +004001 +079007 +130357 092004 +017002 +083009 +130361 033009 +130363 092004 +023007 +130366 092004 +023007 +015017 +130374 037003 +130376 092004 +060004 +092004 +001006 +020004 +130382 006007 055002 +130385 023001 +130388 023009 +130391 092004 +004001 +092004 +001006 +130397 079024 +092004 +060003 +006010 +024001 +083009 +092004 +006015 +092004 +026 +092004 +020004 +130410 092004 +033006 +092004 +012001 +130416 092004 +033020 +130421 033006 +033006 +130424 033006 +092004 +037004 +092004 +088003 +130430 070 +067006 +067002 +130434 056005 +130436 038001 +092004 +020004 +092002 +130441 092004 +085005 +130444 092004 +001006 +130449 059003 +006017 +079007 +130453 033006 +130457 067006 +067005 +078001 +067006 +059003 +130463 092004 +087005 +130467 092004 +011002 +130470 092004 +067002 +020004 +064 +130477 024001 +130479 079024 +092004 +006010 +092004 +060003 +130485 014010 +130487 013004 +130489 092004 +001004 +013002 +079007 +064 +006017 +008002 +130497 092004 +001004 +078004 +013002 +064 +008002 +130504 092004 +001004 +092004 +001002 +015012 +130510 092004 +001006 +064 +003002 +015012 +092004 +003004 +130519 014002 +130521 016 +130523 092004 +001002 +015001 063007 +064 +006010 +079027 +130530 059003 +001007 +130533 001009 +130535 092004 +080001 +130538 015001 +130540 092004 +037004 +092004 +001006 +130545 092004 +087003 +130548 092004 +055004 +130551 092004 +057003 +130554 092004 +087003 +130557 059003 +087005 +130560 087005 +021003 +130564 092004 +001008 +130568 092004 +002005 +092004 +001007 +130573 033006 +092004 +001007 +130577 092004 +002005 +015012 +130581 092002 +130583 021003 +092002 +130586 008002 +092004 +017002 +130590 092004 +006015 +130594 092004 +088024 +092004 +004001 +130600 092004 +067008 +092004 +130604 092004 +088024 +130609 074 +013003 +130613 024001 +060002 +012001 +017001 +130618 092004 +060002 +079023 +092004 +001006 +037001 +092004 +060002 +014002 +092004 +001006 +130631 014002 +014002 +130634 092004 +001009 +069003 +130638 092004 +001010 +069003 +130642 059003 +003002 +130645 024001 +058006 +012001 +015010 +130650 082001 +001004 +130653 006010 +012001 +023007 +130657 033006 +033006 +130660 092004 +060002 +012001 +130666 020002 +092004 +001009 +130670 092004 +001010 +033006 +130674 020002 +092004 +001009 +069003 +092004 +001010 +069003 +092004 +003002 +067006 +033056 +092004 +087005 +092004 +012001 +092002 +130691 092004 +008002 +130695 033015 +092004 +060001 +092004 +033056 +060002 +060002 +060002 +060007 +033056 +130706 059003 +010001 +011003 +093001 +130711 010001 +093001 +060002 +060007 +033056 +130717 010001 +093001 +060002 +060007 +130722 010001 +093001 +060002 +060007 +130727 010001 +093001 +060002 +060007 +130732 010001 +093001 +060002 +060007 +130737 010001 +093001 +060002 +060007 +130742 010001 +093001 +060002 +060007 +130747 010001 +093001 +060002 +060007 +130752 010001 +093001 +060002 +060007 +130757 010001 +093001 +060002 +060007 +130762 010001 +093001 +060002 +060007 +130767 010001 +093001 +060002 +060007 +033056 +130774 024001 +130776 091003 +011001 +130781 060001 +092004 +074 +130785 059003 +011003 +130788 010001 +130790 011003 +130792 033001 +017001 +083006 +092004 +006015 +130798 083006 +092004 +004001 +049 +006017 +079007 +130805 003002 003005 +130807 092004 +008002 +130811 033006 +033006 +130814 033006 +092004 +021006 +092004 +012001 +092002 +092004 +017002 +130823 092004 +006015 +130826 092004 +004001 +130829 059003 +092004 +012001 +017001 +083004 +092004 +006015 +130837 092004 +053009 +130840 092004 +060002 +012001 +130844 017005 +083006 +092004 +006015 +130849 092004 +008002 +130853 053007 +092004 +012001 +033006 +072001 +092004 +033037 +130861 092004 +087003 +130864 092004 +032004 +130867 092004 +033036 +130870 092004 +087002 +130873 092004 +076 +130876 092004 +079013 +092004 +012001 +092002 +130882 092004 +067005 +092004 +067005 +072001 +130888 033004 +130891 092004 +053009 +033006 +092001 +130896 092004 +049 +092004 +006017 +092004 +079007 +130905 084001 +130908 033006 +130910 087003 +092001 +130913 028001 +130915 033006 +092001 +130919 092004 +130922 092004 +022001 +092004 +130927 047002 +092004 +006017 +130932 079007 +130935 092004 +008002 +092004 +004001 +130942 083006 +092004 +006015 +092004 +012001 +130948 053001 +130950 067005 +130952 067005 +130954 092004 +007002 +130958 092004 +017002 +130961 092004 +006015 +085005 +130967 025002 +067006 +069003 +023001 +067006 +069003 +130974 024006 +130977 092004 +001004 +069003 +059003 +014008 +130983 092004 +004001 +092004 +083003 +083003 +092004 +006015 +036001 +130993 015023 +130996 023007 +001010 +002004 +131000 047003 +092004 +012001 +059003 +008003 +131006 092004 +008002 +131010 067002 +079024 +092004 +006010 +092004 +060003 +091001 +033008 +131019 092004 +001002 +078003 +067009 +131024 024001 +092004 +060002 +012001 +131029 083006 +092004 +012001 +017001 +131036 060002 +006012 +131039 058006 +012001 +131043 017001 +131045 092004 +006015 +131048 006016 +002007 +131053 006021 +131057 092004 +033013 +092004 +011002 +059003 +131063 092004 +006015 +092004 +002007 +092004 +083006 +092004 +006015 +131072 015010 +092004 +001005 +092004 +006021 +092004 +033013 +092004 +011002 +131082 008002 +092004 +012001 +083006 +092004 +012001 +131089 057007 +092004 +012001 +092004 +006016 +131095 059004 +131098 092004 +002003 +092004 +006015 +131103 015026 +131105 092004 +001006 +131108 091001 +014004 +131111 014009 +131113 014004 +131115 014010 +131117 092004 +060002 +012001 +092004 +131122 092004 +060002 +006012 +077 +131128 006012 +131130 092004 +060003 +006012 +131134 091001 +002004 +131137 002003 +063003 +131140 008002 +131142 015026 +131144 092004 +001006 +131147 092004 +060004 +092004 +001006 +014008 +131153 092004 +060004 +092004 +003002 +014008 +131159 059003 +003003 +079007 +014008 +131164 092004 +060003 +012001 +006012 +131169 064 +001007 +131172 002003 +014008 +015026 +131176 092004 +001010 +131179 013002 +092004 +060004 +092004 +001010 +008002 +131186 023007 +092004 +060004 +092004 +042003 +092004 +131193 092004 +001010 +092004 +131197 023007 +131199 092004 +060004 +092004 +006008 +020003 +131205 092004 +060003 +012001 +006012 +131210 015012 +131212 092004 +001002 +001004 +131216 014008 +064 +006014 +131220 015012 +131222 092004 +060004 +092004 +001010 +131228 092004 +001010 +092004 +002004 +131233 092004 +033009 +092004 +001004 +033006 +092004 +003003 +131241 013002 +092004 +060004 +092004 +002004 +131247 079008 +131250 092004 +009001 +023007 +090002 +092004 +002004 +131257 079008 +131259 092004 +060003 +012001 +006012 +131264 019001 +092004 +060004 +092004 +001004 +131270 092004 +060004 +092004 +001004 +131275 092004 +060004 +092004 +001004 +131280 014007 +092004 +060004 +131285 092004 +067009 +131288 014006 +092004 +060004 +131293 092004 +067009 +064 +131297 024001 +131299 024002 +131301 004002 +015033 +131304 001002 +033006 +033006 +131308 022001 +022001 +022001 +092004 +085005 +131314 092004 +001006 +131317 092004 +063005 +033006 +092004 +006012 +092004 +060002 +012001 +092004 +067002 +006012 +131329 092004 +060003 +012001 +006012 +131334 024001 +001004 +131337 092004 +001002 +015012 +131341 092004 +001006 +131346 092004 +006023 +092004 +001008 +092004 +001003 +131353 079024 +092004 +001008 +092004 +001003 +131359 015010 +001005 +131362 092004 +001008 +064 +001005 +007007 +131369 014007 +092004 +001004 +131373 092004 +001002 +131376 092004 +001005 +092004 +001008 +131382 092004 +001005 +015004 +004003 +131387 092004 +001006 +131392 076 +064 +131395 076 +092004 +004004 +092004 +001006 +131401 033006 +131405 020002 +092004 +003003 +092004 +001006 +069003 +059003 +003003 +069003 +059003 +003002 +131418 092004 +009001 +131423 092004 +033056 +092004 +012001 +131428 092004 +008002 +131435 020004 +131437 089023 +131439 038001 +067009 +060002 +131443 092004 +024006 +131446 064 +024006 +004004 +131450 019002 +009001 +131454 092004 +067008 +092007 +025001 +092004 +009001 +092004 +023007 +131465 013001 +131468 025002 +023007 +131471 015004 +092004 +023007 +131477 092004 +064 +092004 +004003 +131482 004001 +077 +131485 055002 +131488 092004 +008002 +131491 064 +006018 +064 +002007 +131496 092004 +008002 +131499 064 +008002 +009001 +131504 008002 +064 +008002 +009003 +131509 092004 +008002 +131512 064 +004001 +131517 006007 008002 +064 +006007 +002007 +131522 092004 +014009 +092004 +008002 +131527 064 +014009 +006009 +004001 +131532 015030 +131534 055002 +131537 008002 +064 +004004 +131541 008002 +131544 092004 +008002 +131547 092004 +076 +131550 020002 +092004 +009001 +067009 +060002 +131558 037004 +092004 +012001 +092004 +001003 +033009 +131565 033001 +093001 +131569 092004 +011004 +033009 +131573 093001 +092004 +022001 +092004 +131578 013003 +091003 +131581 059008 +060002 +022001 +131587 092004 +060003 +012001 +006012 +131592 024002 +033006 +131596 092004 +060002 +079023 +092004 +006015 +092004 +002007 +092004 +083006 +092004 +012001 +033006 +092004 +060003 +012001 +092004 +131613 092004 +006012 +037010 +092004 +060002 +012001 +092004 +037008 +131622 092004 +001010 +092004 +131626 093002 +131628 037010 +092004 +060002 +012001 +092004 +077 +131635 092004 +067009 +131638 067009 +131640 067009 +131642 067009 +131644 020004 +092004 +060004 +092004 +009001 +131650 092004 +060001 +092004 +055003 +092004 +055004 +060001 +060002 +033015 +092004 +060001 +131664 024001 +092004 +004001 +131668 092004 +033056 +131671 092004 +017002 +131676 006007 +079007 +131679 079007 +131681 079007 +131683 092004 +008002 +092004 +004001 +064 +008002 +004001 +131692 092004 +008002 +131695 015004 +002003 +131698 001005 +131700 002005 +020004 +092004 +060004 +092004 +009001 +131707 092004 +060002 +022001 023009 +131712 092004 +002003 +131715 092004 +001005 +131718 092004 +002005 +092004 +015004 +131723 092004 +008002 +131727 092004 +076 +092004 +004001 +131733 092004 +008002 +131738 092004 +008002 +131742 092004 +008002 +131745 064 +004004 +131748 008002 +131752 020002 +131754 092004 +063005 +092004 +009001 +131760 020004 +131762 092004 +022001 023009 +131765 069003 +041005 +131768 092004 +042002 +092004 +009001 +131775 053007 +092004 +012001 +131779 092004 +006013 +092004 +002007 +131784 092004 +002007 +131787 092004 +002007 +131790 092004 +002005 +131793 092004 +003006 +131796 074 +069003 +024001 +069003 +024002 +069003 +015029 +131805 041005 +131807 092004 +020004 +131810 069003 +131812 092004 +131815 069003 +131817 092004 +088036 +131820 069003 +131822 092004 +057021 +131826 024001 +058006 +012001 +076 +015011 +131832 092004 +001002 +049 +001005 +131837 092004 +001005 +131844 092004 +008002 +131847 064 +092004 +001004 +131851 092004 +008002 +131854 064 +007003 +002003 +131860 092004 +008002 +131863 006010 +079024 +131866 085002 +092004 +008002 +131870 092004 +082002 +131873 092004 +001010 +131876 092004 +082002 +131879 092004 +001009 +131882 033006 +033006 +131885 064 +004001 +014009 +131890 033006 +033006 +092004 +060002 +014004 +092004 +131897 033006 +131900 033006 +092004 +060002 +014004 +067002 +033005 +131907 024002 +033006 +131910 092004 +001002 +033006 +006010 +131915 033006 +092004 +060002 +014004 +131922 033005 +131924 092004 +012001 +131927 017001 +131929 092004 +001010 +131933 092004 +001009 +024001 +015024 +092004 +008002 +131940 092004 +082002 +131943 092004 +001002 +131946 033054 +131948 092004 +023007 +131951 092004 +067005 +092004 +067005 +131956 042003 +092004 +001002 +131960 092004 +131964 092004 +001009 +131967 092004 +131971 092004 +001010 +131974 092004 +131978 067005 +067006 +131981 089023 +131983 092004 +067008 +092004 +014009 +092004 +060003 +012001 +131991 067002 +006012 +131994 068003 +092004 +028005 +092004 +012001 +064 +033015 +092004 +132003 087005 +092004 +053009 +132007 092004 +033006 +132010 024002 +132012 092004 +001002 +067002 +033006 +132017 092001 +132019 033006 +015004 +057007 +092004 +006010 +092004 +079024 +132027 092004 +008002 +092004 +012001 +092004 +017001 +132034 092004 +001010 +132038 092004 +001009 +132041 015004 +132043 092004 +012001 +033006 +132048 092001 +092004 +006010 +132052 033006 +092001 +057007 +132056 023001 +132059 079008 +132061 092004 +008002 +089023 +132065 092004 +008002 +132069 079008 +064 +005001 +132073 057007 +092004 +006010 +132077 092004 +008002 +092004 +012001 +132082 023001 +132087 092004 +008002 +092001 +064 +005001 +079008 +132095 023001 +132097 079008 +092004 +008002 +092001 +132102 033006 +092001 +071004 +132106 067002 +033053 +132109 011003 +132111 011003 +132113 033001 +132115 037004 +132119 092001 +006022 +064 +006023 +033006 +017001 +132126 081001 +092004 +007002 +092004 +012001 +132132 092004 +006015 +132135 092004 +053007 +132140 092004 +007002 007004 +092004 +083004 +092004 +007002 +132147 083004 +132151 081001 +132154 092004 +011003 +132157 092004 +001014 +092004 +053006 +020002 +067009 +060002 +060002 +132167 092004 +060002 +033020 +092001 +132172 033053 +067009 +060002 +060002 +060002 +049 +006017 +132181 092004 +060002 +003002 +132185 092004 +060002 +006014 +092004 +083006 +092004 +012001 +092004 +001006 +017001 +132198 030004 +132200 020002 +002003 +015004 +132204 092004 +008002 +132208 020003 +092004 +039001 +132215 030004 +132217 020002 +132219 071005 +132221 020004 +132224 092004 +037003 +079024 +092004 +001002 +132231 002004 +014003 +092004 +067008 +092004 +033053 +132239 037003 +132242 092004 +002004 +013002 +132247 008002 +132249 019001 +092004 +001006 +132253 059003 +022001 023009 +067002 +132257 025001 +132260 068003 +092004 +033020 +132264 092004 +004001 +092004 +015010 +132269 092004 +001003 +132274 055002 +132276 039012 +132279 020004 +132282 092004 +008001 +132286 092004 +001016 +092004 +001014 +092004 +132293 033009 +033003 +093002 +132297 093002 +083002 +132300 092004 +012001 +132303 020004 +132305 024001 +132307 092004 +011003 +132310 010001 +132312 033001 +132314 011003 +092004 +008001 +132318 067009 +060002 +132321 060004 +132324 013004 +092004 +008001 +132328 085002 +132330 007007 +132332 092004 +085005 +132335 092004 +001006 +025011 +132341 051 +132343 057008 +015024 +092005 +132348 092004 +060002 +053009 +038001 +092004 +085005 +132355 092004 +001006 +132359 092004 +060002 +132362 060004 +067009 +023010 +023007 +132367 092004 +012001 +015008 +132373 017001 +132375 092004 +008002 +132379 025022 +132381 013004 +132383 092004 +024001 +132387 024002 +033006 +132391 092004 +001002 +033006 +132395 015010 +083001 +132398 015010 +132400 092004 +001002 +132403 092004 +001005 +132406 024001 +132408 092004 +039001 +132413 092007 +092004 +067009 +013004 +014010 +132420 092004 +060004 +092004 +001014 +020003 +132426 020004 +132428 092004 +014010 +009001 +009001 +060007 +060002 +132435 092004 +063005 +025022 +013002 +132441 087003 +092004 +012001 +092004 +001002 +092004 +022001 +092004 +060003 +013003 +091003 +092004 +022001 +092004 +060003 +132457 067002 +132459 092004 +060003 +012001 +006012 +132464 091001 +033006 +132468 092004 +001002 +033006 +013002 +092004 +037004 +092004 +001006 +092004 +012001 +092002 +132480 092004 +053009 +132484 037004 +132486 092004 +067005 +092004 +067005 +132491 092004 +060002 +060002 +053009 +092004 +083006 +092004 +012001 +017002 +132501 092004 +006015 +132504 017005 +132506 092004 +008002 +132510 053007 +092004 +012001 +033006 +033036 +132516 012001 +092004 +012001 +092004 +012001 +092004 +132524 092004 +132527 057007 +092004 +076 +132531 092004 +132534 037004 +132536 092004 +011003 +088024 +132541 092004 +088024 +132545 092004 +067008 +092004 +023007 +056005 +132552 092004 +038002 +092004 +087005 +132557 092004 +053009 +132560 092004 +011002 +132563 092004 +053007 +092004 +033009 +132574 020003 088035 +092004 +020003 088035 +092004 +001006 +132580 079024 +092004 +007002 +092004 +012001 +092004 +132587 092004 +001002 +132590 024001 +092004 +006016 +092004 +034005 +132597 092004 +007002 +132601 091001 +014004 +132604 014009 +132606 014004 +132608 014010 +132610 002004 +132613 033056 +132615 024001 +132617 092004 +001002 +009003 +049 +092004 +001004 +132624 092004 +001004 +083009 +092004 +008002 +132632 092004 +008002 +132635 006018 +001004 +060002 +132639 023003 +023003 +023003 +132643 033006 +023003 +132646 038001 +023003 +132649 024001 +058006 +033056 +132653 092004 +001002 +132656 091003 +004004 +079007 +132661 008002 +060002 +132664 008002 +060002 +132668 092004 +008002 +132671 060002 +006018 +132674 092004 +008002 +132677 015025 +092004 +060004 +092004 +001004 +092004 +001002 +132685 015026 +132688 092004 +001006 +132691 092004 +004004 +132694 083006 +092004 +009003 +092004 +067002 +023003 +132702 023003 +092004 +010002 +132706 023001 +132708 023003 +010002 +079022 +132712 067002 +037004 +059003 +092004 +011003 +132718 037004 +002007 +132721 018001 +092004 +010002 +132726 092004 +012001 +132730 092004 +006015 +132734 092004 +009003 +021004 +132738 092004 +001013 +083002 +132742 083001 +080001 +077 +132746 092004 +012001 +132749 083001 +035004 +132752 067009 +060002 +060002 +060002 +132757 013004 +055002 +132760 092004 +001002 +092004 +093001 +132765 092004 +012001 +132768 092004 +055002 +132771 092004 +004004 +132774 055002 +092004 +004004 +132778 092004 +012001 +132784 069003 +080001 +132787 027002 +067006 +132790 092004 +001002 +132793 015026 +092004 +004004 +092004 +132798 092004 +004004 +092004 +067005 +092004 +033009 +012001 +132806 092004 +012001 093001 +092004 +031002 +092004 +001006 +063001 +015026 +132815 092004 +001006 +132818 092004 +012001 +132823 015026 +132825 024002 +033006 +132829 092004 +001002 +033006 +067002 +085001 +092004 +021006 +132837 092004 +076 +132840 092004 +037004 +092004 +012001 +092002 +132846 092004 +037003 +092004 +053009 +132852 015026 +092004 +033048 +092004 +011002 +092002 +092004 +033048 +132861 083006 +092004 +012001 +092002 +067005 +132867 067005 +132870 039012 +132873 092004 +008002 +092004 +004001 +132879 092004 +033006 +092004 +033020 +132886 025010 +092004 +023007 +132890 067006 +023007 +132894 025011 +001002 +132897 092004 +132900 085005 +022001 +092004 +001009 +132905 092004 +001010 +132908 015011 +092004 +012001 +132914 088024 +132916 032001 +132918 059002 +067005 +132923 024001 +092004 +004004 +132927 015026 +132929 092004 +001006 +015021 +092004 +009003 +132935 023003 +092004 +079022 +132940 092004 +009003 +092004 +060002 +008002 +092004 +004002 +092004 +132950 015033 +132952 092004 +001013 +132955 092004 +080001 +132958 083002 +035004 +083001 +067005 +132963 067005 +132965 060004 +067005 +132968 085001 +092004 +004004 +132972 047001 +092004 +004004 +132976 092004 +008002 +132979 083006 +092004 +009003 +002004 +064 +001010 +132987 015024 +132990 035001 +092004 +001006 +092004 +009003 +132996 079024 +092004 +001006 +092004 +008002 +133003 013001 +092004 +001010 +133007 047001 +092004 +004004 +133011 092004 +008002 +133015 088024 +092004 +004004 +133019 092004 +009003 +133022 015004 +133024 055002 +133026 092004 +063005 +092004 +010002 +133031 092004 +036003 +092004 +033032 +092004 +012001 +133039 092004 +033020 +093001 +133043 017001 +133045 092004 +001009 +092004 +001010 +133050 024001 +133052 092004 +001010 +004001 +015010 +133057 008002 +060002 +133060 008002 +060002 +133064 092004 +008002 +133067 060002 +006018 +133071 092004 +008002 +133074 033009 +033042 +133077 092004 +004001 +133080 024001 +133082 064 +004001 +133085 092004 +008002 +133088 064 +004001 +133091 092004 +008002 +133094 064 +008002 +004001 +133100 092004 +004004 +092004 +076 +133106 092004 +037004 +133110 037003 +133115 092004 +008002 +133118 064 +020004 +133121 023007 +133123 092004 +020002 +092004 +023007 +133128 023008 +133130 025020 +063001 +092004 +009001 +036004 +092004 +004001 +133138 053007 +092004 +004004 +133143 092004 +037003 +092004 +004001 +133148 053007 +092004 +004001 +033006 +133153 064 +092004 +004001 +133158 074 +055002 +133165 033006 +033006 +133169 033042 +133173 037003 +133175 067009 +060002 +060002 +133179 033004 +092004 +033006 +133184 033042 +133186 092004 +012001 +033042 +092004 +033009 +133193 092004 +007002 +133196 092004 +133198 092004 +001002 +085005 +133205 055002 +133207 092004 +011002 +133210 039012 +133215 037003 +133217 059003 +010001 +133220 011003 +133222 033001 +133224 011003 +133226 053007 +133228 059003 +092004 +085005 +133232 092004 +001006 +133235 033005 +133237 092004 +033009 +133241 092004 +006010 +092004 +023007 +092004 +004001 +092004 +020004 +133250 042003 +001001 +133255 008002 +031007 +133260 055005 +133262 055005 +015001 +133267 006007 +133272 006007 +020004 +092007 +133276 092004 +025015 +133279 092004 +031010 +092004 +011002 +133284 024001 +058006 +004001 +015010 +133289 092004 +001006 +133293 008002 +060002 +064 +004001 +133298 033006 +064 +004004 +133302 092004 +037003 +092004 +060003 +004001 +063001 +133309 090005 +133313 092004 +001006 +133316 092004 +133319 085005 +133321 053007 +092004 +004001 +092004 +060003 +133327 023008 +092004 +020002 +092004 +023007 +133335 033056 +133340 002003 +133342 092004 +001002 +015011 +133346 092004 +001006 +090005 +092004 +009001 +133352 031002 +092004 +085005 +133356 092004 +001006 +133359 092004 +033056 +133364 042003 +090005 +092004 +004001 +033006 +092004 +085005 +133372 092004 +001006 +133375 006013 +092004 +004001 +133380 092004 +020002 +092004 +006007 +133385 023007 +133390 023010 +092004 +006013 +092004 +004001 +133397 033006 +092004 +006013 +092004 +004001 +133406 059001 +133408 053007 +092004 +006013 +092004 +004001 +020004 +133416 059003 +092004 +087004 +133420 092004 +133423 092004 +057003 +133426 092004 +057006 +133429 092004 +087005 +133432 092004 +087005 +133437 033056 +133439 092004 +008002 +133442 092004 +082002 +133446 092004 +008002 +133453 074 +057015 +133456 057015 +133459 092004 +133461 092004 +033056 +092004 +033009 +092004 +004001 +133468 092004 +060001 +092004 +033009 +133473 092007 +092004 +032004 +133477 092004 +133479 026 +032002 060001 +092004 +060001 +092004 +004001 +133486 060001 +009001 +133490 092004 +060001 +133493 060002 +060002 +060002 +133497 024001 +133499 091003 +092004 +004001 +017001 +133504 092004 +001007 +093002 +133510 060002 +060002 +060002 +060007 +133515 092004 +033009 +133519 092004 +033009 +092004 +012001 +133524 033005 +133526 092004 +008002 +133530 024002 +033006 +133533 092004 +001002 +064 +014009 +002004 +133540 064 +014009 +014004 +133545 092004 +033006 +133548 024002 +064 +006012 +006012 +133553 092004 +006012 +133557 033007 +033007 +058011 +083006 +092004 +006015 +133564 083006 +092004 +060002 +012001 +133569 092004 +053009 +133572 092004 +074 +027001 +092004 +033007 +133579 092004 +060002 +060002 +060002 +060007 +092004 +037010 +133587 092004 +001006 +133593 009003 +133595 053004 +133597 009002 +133600 092004 +015020 +092004 +004001 +071001 +083002 +015001 +133608 037010 +133610 092004 +009001 +061 +092004 +012001 +133616 092004 +004001 +133620 092004 +033006 +133624 027001 +033018 +088003 +133629 024001 +058006 +012001 +015033 +133634 001002 +133636 033015 +067005 +033015 +133640 092004 +017002 +133643 092004 +001006 +133647 059003 +011003 +133650 010001 +133652 033001 +133654 011003 +033006 +133657 033006 +133659 053007 +092004 +012001 +133665 033037 +133668 092004 +067001 +092004 +056005 +133674 053007 +092004 +133677 092004 +001001 +133680 092004 +001001 +133683 001010 +133685 001010 +002004 +133688 058006 +012001 +060003 +015017 +033006 +020003 +020003 +093002 +092004 +133700 092004 +006019 +092004 +025002 +092004 +088036 +133707 023001 +059003 +092004 +011003 +133712 058006 +012001 +060003 +015017 +133717 033006 +133719 033006 +133723 053007 +092004 +004001 +133727 092004 +006013 +133731 057009 +033056 +133734 092004 +008002 +133739 092004 +008002 +133744 023001 +133746 092004 +006019 +092004 +088024 +092004 +012001 +092004 +047001 063003 +079020 +133756 092004 +024006 +092004 +088024 +133762 038001 +133764 002003 +133766 002005 +090005 +012001 +088003 +133771 090005 +092004 +004001 +133775 092004 +001005 +092004 +024006 +133781 067005 +067005 +015010 +133787 022005 +067005 +133790 067005 +092004 +053007 +092004 +004001 +133796 092004 +006013 +133802 057009 +092004 +033056 +092004 +033009 +133808 092007 +133810 092004 +025015 +092004 +011002 +092004 +036003 +092004 +033032 +092004 +012001 +133821 092004 +031010 +093001 +133825 024002 +033006 +133828 092004 +001002 +033006 +033005 +025011 +092004 +023007 +092004 +133837 012001 +023007 +133840 069001 +033006 +092004 +012001 +133845 023006 +068004 +092004 +042004 +133851 092004 +042002 +133854 015020 +133858 024001 +133860 091003 +001005 +079007 +133865 092004 +001005 +017002 +064 +009001 +009001 +133873 092004 +008002 +133876 006018 +002007 +133880 092004 +008002 +133883 006002 +079019 +133886 058006 +012001 +015004 +133890 092004 +007002 +033006 +133894 033006 +133896 092004 +017002 +133899 092004 +001005 +043 +092004 +006002 043 +133906 043 +133909 092004 +067001 +043 +133913 023012 +092004 +043 +092004 +002005 +133919 043 +092004 +017002 +133923 092004 +001005 +092004 +006002 043 +133929 092004 +002005 +133932 043 +092004 +002005 +133936 058006 +012001 +015004 +133940 092004 +007002 +092004 +133944 092004 +001002 +133949 006002 +079019 +133952 058006 +012001 +092004 +133956 037001 +133958 092004 +002003 +015004 +133962 092004 +006015 +133965 033006 +033006 +133968 092004 +133970 092004 +006002 +092004 +079019 +033006 +043 +133977 092004 +006002 043 +092004 +079019 +133982 043 +092004 +003004 +092004 +003003 +092004 +002005 +133990 023012 +092004 +003004 +133995 043 +092004 +012001 +092004 +006002 043 +134002 092004 +002005 +134005 043 +092004 +003003 +092004 +002005 +134011 015026 +134013 092004 +007007 +092004 +088024 +092004 +012001 +092004 +134022 019005 +092004 +007007 +083004 +092004 +001014 +134029 015004 +008002 +134032 092004 +007007 +084002 +092004 +006002 +092004 +004001 +134040 081006 +060002 +060002 +134044 024001 +058006 +033056 +134048 092004 +001002 +134052 025020 +012001 +060002 +134056 022001 +060002 +092004 +061 +134063 067003 +092004 +088024 +092004 +012001 +134069 024001 +064 +001010 +006023 +063003 +002003 +134076 092004 +039012 +134079 092004 +004001 +134083 092004 +006013 +134088 092004 +060001 +092004 +033009 +134093 017001 +134095 092004 +001010 +092004 +006023 +134100 006012 +092004 +012001 +134104 033007 +092004 +033007 +093001 +092004 +087005 +092004 +012001 +134113 092004 +033007 +092004 +004001 +033006 +134120 025020 +092004 +042002 +134124 012001 +092004 +012001 +092004 +012001 +088002 +134131 070 +092004 +041001 +134135 092004 +037004 +092004 +011003 +134142 053007 +012001 +134145 033037 +092004 +033009 +134151 088003 +134153 059003 +092004 +011003 +015006 +134158 053007 +083006 +134162 092004 +088002 +134165 024001 +134169 024001 +134171 079024 +092004 +007002 +092004 +007002 +092004 +033020 +134179 092004 +001002 +134182 015004 +092004 +060002 +012001 +092004 +134188 092004 +060002 +022001 +134192 092004 +007002 +049 +006017 +079010 +014006 +134199 049 +134201 092004 +008002 +006017 +002007 +134208 092004 +060002 +012001 +134212 092004 +060002 +012001 +060002 +006016 +002007 +059004 +092004 +088024 +092004 +012001 +092004 +023007 +134226 092004 +067005 +092004 +067005 +134231 059004 +092004 +007002 +001005 +134236 092004 +014006 +092004 +012001 +134242 092004 +076 +134246 092004 +074 +015008 +134250 092004 +007002 +067006 +068003 +092004 +060002 +022001 +092004 +060002 +012001 +134261 024002 +134263 033006 +134265 092004 +007002 +033006 +092004 +060002 +012001 +015004 +134273 047001 +092004 +060002 +006016 +092004 +088024 +092004 +012001 +134282 092004 +002005 +134285 015004 +092004 +060003 +134289 047001 +092004 +006016 +134294 092004 +002005 +134297 085001 +023009 +065003 +134301 023009 +134303 092004 +009001 +092004 +134307 092004 +033056 +092004 +004001 +134312 092004 +053007 +092004 +006013 +134318 092004 +060003 +047001 +092004 +006016 +134325 092004 +001010 +134328 013002 +008002 +064 +023007 +134333 059003 +004001 +023007 +092004 +134338 092004 +001010 +023007 +134342 092004 +060003 +047001 +092004 +006016 +134349 092004 +001010 +134352 092004 +001010 +092004 +002004 +134357 013002 +008002 +134360 024002 +092004 +012001 +092004 +002004 +033006 +088002 +134368 092004 +134371 092004 +134373 092004 +088003 +134377 056005 +134379 008002 +011002 +134382 053009 +047001 +134385 008002 +134388 023001 +066 +134392 024002 +092004 +006015 +033006 +069001 +012001 +092004 +012001 +092004 +012001 +070 +134404 088002 +092004 +030007 +134409 092004 +060003 +047001 +092004 +006016 +134416 092004 +001004 +134421 014008 +092004 +009001 +134425 002003 +134427 014008 +092004 +009001 +014008 +078001 +134433 033042 +092004 +033009 +092004 +012001 +092004 +134440 092004 +037001 +134443 092004 +022001 +134448 041005 +134451 033037 +134453 092004 +060003 +047001 +092004 +006016 +134460 092004 +006015 +092004 +004001 +134465 013002 +092004 +001012 +134469 014007 +134471 023002 +092004 +008002 +134476 092004 +024006 +134479 033042 +092004 +012001 +092004 +001002 +134485 092004 +024006 +134490 092004 +023009 +134495 041005 +134497 092004 +042002 +134501 092004 +060003 +047001 +092004 +006016 +134508 092004 +001010 +092004 +134512 093002 +134514 079015 +092004 +002004 +134519 077 +092004 +001016 +092004 +037004 +092004 +134526 082001 +001004 +134529 024001 +134531 092004 +008002 +092004 +004004 +134537 092004 +008002 +092004 +004001 +134543 092004 +008002 +092004 +053009 +012001 +060002 +053004 +064 +004004 +134554 012001 +012001 +134557 033056 +134559 015004 +134561 092004 +037004 +092004 +001006 +063001 +015013 +134569 092004 +055002 +092004 + +092004 +134575 092004 +012001 +092004 +012001 +091003 +134581 064 +057021 +025011 +092004 +023005 +134587 013001 +092004 +006017 +134593 049 +015029 +134596 024001 +092004 +025018 +134601 015013 +134604 092004 +080001 +092004 +033009 +033001 +093002 +134611 092004 +060003 +047001 +092004 +006016 +134618 092004 +001002 +134621 015004 +033006 +134625 092004 +007002 +134628 092004 +006015 +033006 +013004 +134633 091001 +014004 +134636 014009 +134638 014004 +134640 014010 +134642 013004 +064 +134645 013004 +134648 009001 +085001 +134651 092004 +001006 +078002 +014010 +134658 013002 +092004 +001014 +092004 +134664 060002 +063004 +134667 092004 +001014 +092004 +011003 +020003 +134673 093002 +092004 +134676 029004 +090005 +092004 +012001 +134682 092004 +024006 +092004 +006019 +092004 +088024 +092004 +088024 +134692 059003 +001009 +013003 024001 +134696 001007 +134698 027002 +134700 002004 +134702 064 +086002 +015011 +134706 092004 +001002 +134709 092004 +009001 +134712 033042 +092004 +009001 +092004 +012001 +134718 092004 +022001 +092004 +002004 +134725 092004 +022001 +134728 078001 +134733 092004 +060002 +012001 +092004 +134738 092004 +060002 +006016 +134742 033006 +134744 092001 +033006 +084002 +028003 +134749 092004 +056005 +092004 +088036 +092004 +134755 092004 +017002 +134758 002004 +134762 088036 +092004 +037004 +092004 +001006 +134768 088037 +092004 +085005 +092004 +001006 +134774 092004 +006019 +092004 +088036 +134780 015024 +092001 +134783 001013 +134785 012001 +134787 024001 +009003 +017002 +134791 004001 +079007 +059004 +033009 +033042 +134797 008002 +060002 +134800 008002 +060002 +134803 092004 +009003 +134806 049 +006017 +134809 006017 079007 +134811 049 +006018 +134814 002006 +065001 +134817 002006 +134820 092004 +008002 +134823 006016 +002007 +059004 +025017 +134828 092004 +053004 +092004 +088036 +134835 092004 +008002 +134838 033005 +033009 +028005 +093002 +092004 +134844 092004 +058010 +092004 +088036 +134849 092004 +025017 +092004 +001006 +134854 024001 +092004 +009003 +023001 +134859 092004 +008002 +092004 +011002 +134865 092004 +008002 +092004 +020004 +093001 +134871 025020 +024001 +134874 025020 +134877 033006 +092001 +092004 +012001 +134883 025020 +092001 +033006 +134887 092004 +028005 +092004 +009003 +134892 092004 +004001 +092004 +015024 +134897 092004 +134899 092004 +060002 +008002 +134903 092004 +060002 +008002 +092004 +004001 +134909 024001 +134915 067002 +015010 +134918 092004 +001003 +134921 089008 +020003 +013002 +134925 025020 +092004 +085005 +134929 092004 +001006 +134932 092004 +033009 +134935 033005 +134937 092004 +006010 +092004 +023007 +134942 042003 +001001 +024001 +092004 +004001 +134953 015006 +092007 +092004 +026 +092004 +134959 032004 +092004 +060002 +008002 +060002 +001007 +134966 083002 +092004 +009003 +017002 +134973 037004 +060002 +134976 092004 +060002 +013003 +092004 +134982 092004 +058006 +067006 +134989 067005 +134991 085003 +071005 +134994 092004 +004001 +135003 060003 +135007 092004 +060002 +135012 020003 +015001 +135015 092004 +060002 +008002 +135019 024001 +135021 060002 +037004 +135024 037004 +067006 +037004 +089023 +037003 +064 +037004 +135032 067009 +037004 +135035 092004 +004001 +135039 030004 +135042 092004 +076 +135045 037003 +135047 092004 +004001 +135052 092004 +004001 +055002 +135056 092004 +004001 +039012 +135062 012001 +037004 +135065 037004 +037004 +135068 092004 +135071 033029 +135073 030006 +135075 031009 +135077 033006 +092001 +092004 +002004 +135082 024001 +092006 +092004 +088036 +017002 +135088 011003 +135090 011001 +135092 011003 +135094 033001 +135096 092004 +060002 +008002 +135100 024001 +135102 092004 +004001 +135105 088026 +092004 +088036 +135111 020003 +135113 049 +135115 092004 +008002 +135118 023001 +135121 014008 +135123 002003 +135125 092004 +012001 +135129 092004 +030005 +135133 092004 +030004 +135139 030004 +135142 092004 +037004 +135145 092004 +004001 +067006 +013004 +092004 +033006 +092004 +012001 +135154 092004 +009003 +135157 024001 +135159 092004 +001014 +092004 +135163 092004 +135165 037004 +135167 092004 +037004 +092004 +001006 +135173 024001 +058006 +012001 +015011 +135178 092004 +001002 +135181 037003 +135184 092004 +001006 +014006 +135188 092004 +079005 +135192 033006 +135194 078001 +033006 +033006 +020003 +020003 +093002 +092004 +135203 013002 +085005 +012001 +135207 085005 +058004 +012001 +053004 +135212 085005 +058004 +004002 +053004 +135217 088026 +135220 092004 +006019 +092004 +025002 +092004 +088036 +135227 023001 +059003 +092004 +011003 +135232 092004 +037004 +092004 +001006 +135238 088036 +135240 092004 +057016 +092004 +001006 +135245 092004 +076 +092004 +088033 +135250 057003 +135252 024002 +058006 +033006 +135256 092004 +001002 +033006 +092004 +011002 +092001 +015004 +135267 034001 +092004 +088038 +135274 092004 +022001 +135278 090013 +135280 059007 +135282 092004 +088038 +084002 +092004 +001002 +135288 029004 +092004 +012001 +092004 +088002 +135294 038002 +135296 064 +135299 038002 +135301 059007 +092004 +060006 +135305 092004 +042002 +135309 092004 +006016 +135312 063003 +063003 +135315 060006 +078005 +033037 +135320 088033 +078005 +024006 +135324 025012 +135329 092004 +026 +135332 033006 +135334 017002 +037004 +135337 010004 +135341 025012 +135344 090013 +135349 067009 +013004 +092004 +022001 +135354 023009 +135356 025012 +135358 023001 +135361 002003 +014008 +135364 087003 +012001 +092004 +012001 +092004 +056005 +135372 025012 +135374 052 +135377 092004 +037004 +092004 +001006 +092004 +135384 088036 +135386 088033 +135388 024001 +092004 +001005 +092004 +014008 +135395 083005 +017001 +135398 092004 +025022 +092004 +024006 +135403 033006 +022001 +022001 +092004 +001014 +092004 +135410 093002 +092004 +001014 +092004 +076 +135417 067009 +135419 092004 +038001 +135423 092004 +057016 +092004 +001006 +025012 +135429 025012 +135433 092004 +057015 +067006 +092004 +015024 +135439 015024 +002007 +135442 002007 +135444 002006 +065001 +135447 002006 +135449 006017 +135451 006017 +135453 006017 +135455 079007 +135457 058004 +003006 +003006 +135461 058004 +006016 +002006 +135465 058004 +006016 +135468 003006 +065001 +135471 002007 +135473 002007 +135475 002006 +135477 005002 +135479 005002 +135481 006021 +135483 006021 +135485 006021 +135487 006019 +135489 006019 +135491 005001 +135493 003004 +135495 004001 +135497 004001 +135499 004001 +135501 006009 +135503 087005 +135505 009001 +009001 +135508 092004 +003004 +135511 092004 +025002 +092004 +026 +013003 +135519 059003 +092004 +079005 +135523 092004 +079005 +013003 +135529 067006 +135533 027002 +092004 +057016 +135537 092004 +057003 +089007 +135542 083005 +017001 +135545 092004 +025022 +092004 +024006 +135550 025012 +135552 025012 +033006 +022001 +022001 +092004 +001014 +092004 +135560 092004 +049 +006017 +135564 006017 +135566 079007 +135568 049 +135570 006018 +135572 002006 +065001 +135575 002006 +135578 067009 +020003 +092004 +059002 +057003 +135584 059003 +054 +135587 059003 +092004 +135590 042002 +001010 011001 054 +135593 054 +135595 059001 +092004 +001010 +057016 +135600 083005 +017001 +135603 033006 +024001 +092004 +001005 +092004 +014008 +135610 033006 +135612 064 +092004 +001014 +092004 +135618 015026 +002005 +135621 092004 +008002 +135625 033006 +025012 +135628 025012 +033006 +022001 +022001 +092004 +001014 +092004 +135638 057003 +059003 +092004 +135642 092004 +006008 +135645 092004 +001010 +135648 092004 +057003 +135653 067009 +020003 +025011 +135658 001002 +135660 092004 +011002 +135663 092004 +053009 +135666 092004 +053009 +135669 056005 +092004 +012001 +092004 +056005 +135675 090003 +135678 015024 +135680 012001 +076 +002005 +064 +007007 +135687 015026 +135689 092004 +001010 +033006 +135693 068007 +015026 +093002 +092004 +135698 001014 +135702 027002 +067006 +135705 014009 +006012 +135708 014009 +135710 006012 +135712 006012 +135715 024002 +135718 067006 +135720 059003 +042005 +059003 +042005 +135726 027002 +135729 067006 +135731 014009 +007007 +135735 024002 +135738 067006 +135740 014006 +006014 +135744 014006 +135747 067006 +135749 033006 +010004 +135752 010004 +135755 024002 +135758 067006 +135760 092004 +057016 +135764 092004 +087003 +092004 +001006 +135770 092004 +053010 +135773 031008 +059003 +092004 +011003 +135780 027001 +008002 +053009 +135784 011002 +135786 059003 +092004 +020004 +135790 092004 +001006 +135794 024002 +064 +033006 +135798 011001 +135801 092004 +001002 +033006 +033037 +092004 +021006 +135808 092004 +087003 +135811 092004 +076 +092004 +012001 +092002 +135817 070 +135819 088002 +092004 +030007 +135824 056005 +092004 +088036 +092004 +135830 088035 +092004 +001006 +135834 092004 +088036 +135838 038001 +092004 +020004 +092004 +087005 +135845 009001 +135848 060003 +033006 +033037 +135852 092004 +001005 +135855 015010 +135857 092004 +067005 +092004 +067005 +135862 017005 +092004 +053009 +092004 +060002 +060002 +135869 092004 +060002 +012001 +135873 053007 +092004 +012001 +092004 +017002 +135879 092004 +006015 +033006 +072001 +033037 +135885 033006 +135887 092004 +006015 +015004 +033006 +033037 +092004 +012001 +092002 +059003 +092004 +087005 +135899 092004 +053007 +135902 092004 +087004 +135905 092004 +135908 024002 +064 +033006 +011001 +135914 064 +014009 +002004 +135919 064 +014009 +014004 +078001 +033006 +033037 +135926 037004 +012001 +092004 +012001 +092002 +092004 +012001 +025011 +135935 025011 +135938 092004 +033037 +135943 092004 +034010 +092004 +004001 +135948 092004 +010004 +135951 077 +135957 049 +006017 +014006 +079010 +135962 092004 +006017 +092004 +088002 +092004 +011002 +135970 033006 +092001 +033005 +025011 +092004 +135976 092004 + +092004 +034010 +092004 +004001 +033030 +135984 033006 +092001 +135987 092004 +033006 +070 +092004 +012001 +135994 017005 +083006 +092004 +008002 +135999 053007 +136002 033006 +092001 +013004 +136007 087005 +136010 092004 +011002 +136013 092004 +136015 092004 +033020 +093001 +092004 +012001 +053007 +136022 092004 +033020 +093001 +136026 092004 +026 +092004 +033053 +136031 024001 +092004 +001002 +079024 +136036 091003 +004001 +079007 +136040 092004 +017002 +136044 033009 +031009 +136047 070 +136050 088002 +056005 +136053 055002 +136055 092004 +008002 +136058 002003 +002003 +136062 092004 +008002 +136065 006018 +136068 033009 +033005 +136071 092004 +029002 +136077 049 +006017 +047002 047003 +008002 +136082 033009 +092004 +033009 +136086 092004 +033006 +092004 +012001 +136091 092004 +055003 +092004 +136095 092004 +001002 +015020 +136100 004001 +079007 +049 +006017 +079007 +079010 +136108 092004 +008002 +136111 015004 +006007 +079019 +136117 019001 +092004 +011003 +136122 037004 +136125 037004 +002007 +136129 019005 +092004 +007007 +092004 +006019 +092004 +088024 +092004 +088024 +092004 +012001 +092004 +012001 +136145 092004 +006017 +136149 092004 +008002 +136152 033009 +033005 +037004 +037004 +136157 012001 +037004 +136160 024001 +136162 012001 +017001 +136165 092004 +001004 +136168 033006 +136170 033006 +136172 033006 +059003 +092004 +004002 +092004 +015033 +136179 001002 +084002 +015013 +136183 092004 + +092004 +136187 092004 +012001 +136190 023001 +008002 +037004 +136194 008002 +055004 +136197 008002 +076 +136200 008002 +004001 +136203 092004 +017002 +136208 008002 +059003 +136211 087005 +136213 087005 +136215 087004 +136219 024001 +092004 +004001 +136223 092004 +037004 +092004 +001006 +136228 092004 +055003 +136231 015013 +136233 092004 +055002 +136236 092004 +017002 +136239 092004 +004001 +136243 092004 +055003 +136247 018001 +092004 +004001 +136253 092004 +053009 +092004 +136257 092004 +033056 +083006 +136263 031002 +092004 +057009 +092004 +033056 +092004 +004001 +136271 092004 +053007 +092004 +006013 +136276 023007 +015026 +092004 +060002 +136281 092004 +001003 +092004 +002003 +092004 +014008 +136288 002005 +136290 092004 +063005 +020004 +136294 092004 +006007 +092004 +017002 +136299 092004 +004001 +092004 +015004 +136304 092004 +008002 +136308 059003 +092004 +004002 +023001 +136313 092004 +008002 +136317 024001 +012001 +015011 +136321 092004 +001002 +136324 092004 +006023 +092004 +001003 +136329 006004 +079028 +136332 092004 +008002 +136336 037006 +092004 +004004 +092004 +004004 +092004 +067005 +136345 012001 +136347 092004 +012001 093001 +136350 037008 +136352 060002 +067009 +136355 015026 +136358 092004 +001003 +136361 079024 +136363 006010 +083009 +136368 031002 +067006 +092004 +011003 +067006 +067003 +092004 +060002 +067009 +136379 071005 +037010 +136382 078001 +067005 +136385 024001 +006015 +136388 017002 +136392 056005 +136396 092004 +026 +092004 +020004 +136401 092004 +033020 +093001 +136406 092004 +033006 +092004 +012001 +136413 053007 +092004 +004001 +069003 +092004 +006013 +136422 057009 +092004 +033056 +136426 092004 +008002 +136430 092004 +008002 +136434 023007 +136436 037004 +136438 092004 +053009 +060002 +067009 +092004 +063005 +092004 +023007 +136447 023007 +067006 +067003 +092004 +060002 +067009 +136454 092004 +023007 +092004 +060003 +025011 +136460 088003 +092004 +090013 +063004 +136465 092004 +023007 +092004 +060003 +136471 092004 +060003 +023007 +136476 076 +091001 +136479 053009 +092004 +012001 +136483 092004 +053009 +136486 037004 +136489 092004 +060002 +067009 +136494 067003 +092004 +060002 +067009 +037010 +092004 +012001 093001 +136502 092004 +007002 +136506 015004 +031002 +092004 +011003 +092004 +136512 092004 +060002 +079023 +092004 +001006 +092004 +093001 +136520 093001 +015013 +136524 092004 +055002 +136527 092004 +060001 +136530 064 +092004 +002005 +092004 +001010 +136536 015010 +136538 092004 +081004 +092004 +001006 +136543 015018 +092004 +001014 +092004 +011002 +136549 092004 +001014 +092004 +025010 +136554 015011 +002003 +136557 092004 +001002 +136560 020003 +136563 092004 +012001 +092004 +031002 +136568 015026 +136570 092004 +001003 +092004 +002003 +136575 002005 +083002 +136578 092004 +004001 +136581 092004 +053009 +136584 038001 +067005 +136587 067005 +136589 092004 +067005 +092004 +067005 +136594 024001 +006015 +136597 079007 +136599 092004 +017002 +136605 092004 +085001 +013003 +092004 +001001 +136611 092004 +001001 +136614 080001 +136616 027002 +136619 024001 +092004 +023007 +092004 +136625 092004 +087004 +017001 +083006 +092004 +006015 +136632 006010 +079024 +136635 058006 +006010 +079024 +136640 092004 +023007 +136643 056005 +092004 +023007 +136647 092004 +033005 +136650 092004 +006010 +136653 092004 +042002 +136658 092004 +001010 +092004 +023007 +092004 +136666 092004 +023007 +136669 092004 +001003 +136672 092004 +023007 +092004 +136678 056005 +059003 +136681 092004 +042002 +136685 092004 +023007 +136688 092004 +001003 +015026 +136692 092004 +001003 +092004 +002003 +136697 092004 +023007 +092004 +060003 +092004 +001003 +092004 +002003 +136710 027001 +136712 092004 +006010 +092004 +023007 +033005 +015026 +136719 092004 +001003 +092004 +002003 +136724 024001 +001002 +058011 +136728 001006 +058011 +136731 092004 +060003 +001002 +136735 092004 +060003 +001006 +013003 +136740 092004 +001010 +136744 067006 +136746 024001 +092004 +001014 +092004 +053006 +093002 +058011 +015011 +136755 092004 +001002 +136758 092004 +012001 +077 +064 +010004 +079004 +092004 +010004 +136768 024002 +033006 +136772 092004 +006015 +033006 +091003 +092004 +007002 +092004 +012001 +136781 092004 +009001 +136784 085005 +136789 011002 +136794 092004 +012001 +136800 047003 +059003 +008003 +136804 092004 +008002 +136808 092004 +023007 +136812 067006 +069003 +025012 +069003 +025012 +069003 +024006 +136821 067006 +136823 092004 +067002 +013003 +136827 033006 +092004 +017002 +136831 092004 +006015 +091003 +058011 +136836 059003 +136838 033006 +033005 +136842 092004 +033006 +031009 +136846 073 +136849 033006 +092001 +013004 +092001 +092004 +061 +136856 092004 +061 +092004 +067003 +136861 092004 +067003 +092001 +092004 +023001 +136868 092004 +001010 +092004 +002004 +092004 +023007 +057008 +092004 +039012 +057009 +136882 012001 +136886 092001 +036004 +136889 092004 +025022 +136892 031010 +136894 025017 +136896 020004 +136898 088036 +136900 053010 +136902 053007 +136904 059003 +092004 +033018 +092004 +063004 +136911 092004 +001003 +092004 +014008 +002003 +136917 002005 +136920 092004 +023007 +092004 +060003 +136928 092004 +060002 +012001 +092004 +136933 092004 +060002 +006016 +092004 +059004 +092004 +060002 +022001 +092004 +061 +136944 033006 +136946 092001 +033006 +084002 +028003 +136951 092004 +010004 +092004 +010004 +092004 +004001 +136958 015024 +092001 +136961 012001 +136963 001007 +136966 081002 +136968 028003 +092001 +092004 +001014 +092004 +053006 +093002 +015011 +136977 092004 +001002 +136980 092004 +012001 +136983 092004 +014006 +092004 +012001 +092004 +014006 +136990 064 +002006 +065001 +064 +002006 +002006 +002006 +136998 007006 +137001 081002 +137003 007003 +060002 +137007 092004 +007003 +012001 +060002 +137012 033005 +033009 +137016 092004 +060002 +010001 011002 +011003 +093001 +137022 082001 +007003 +060002 +137027 082001 +007003 +060002 +137032 082001 +007003 +060002 +137037 082001 +007003 +060002 +137041 092004 +007006 +092004 +001014 +137046 007003 +060002 +137051 060002 +033009 +092004 +060002 +053009 +092004 +004001 +137059 092004 +033006 +137062 092001 +137064 081001 +006022 +002007 +137068 081001 +092004 +001014 +137072 092004 +007003 +137076 092004 +007006 +137080 092004 +001014 +079018 +085001 +137085 092004 +081003 +137088 059002 +092004 +081004 +137092 081001 +092004 +001014 +092004 +006022 +078005 +081006 +060002 +060007 +092004 +081003 +137104 092004 +081004 +137107 092004 +081002 +137110 058005 +137113 081001 +092004 +007006 +137117 060002 +060002 +060002 +081006 +081001 +009001 +137125 012001 +137127 092004 +007003 007008 +092004 +007006 +137132 002006 +137134 092004 +001014 +002007 +079010 +064 +006023 +079010 +092004 +007003 +092004 +007006 +092004 +001014 +058004 +002006 +065001 +079004 +092004 +007003 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +092004 +060003 +002006 +137190 092004 +060002 +007003 +060002 +002006 +089016 +137197 059003 +092004 +007003 +137203 002006 +137205 092004 +001016 +092004 +001014 +002007 +079010 +064 +002006 006023 +079006 +137215 007002 +137217 024001 +137221 092004 +012001 +092004 +012001 +092004 +012001 +137228 092004 +004001 +007002 +137234 092004 +001014 +137238 057005 +092004 +001004 +069003 +092004 +001004 +137245 014006 +137248 092004 +079005 +092004 +012001 +014006 +137255 092004 +006014 +137258 092004 +004001 +137261 041001 +092004 +011003 +137265 092004 +014006 +137269 092004 +037004 +092004 +001006 +015024 +092004 +087003 +137280 092004 +007003 +137285 079024 +067009 +137288 014007 +137291 083001 +137293 015024 +092004 +087003 +137297 092004 +065001 +092004 +011003 +137306 015008 +137309 059003 +053004 +137312 092004 +137314 025017 +137316 033018 +137319 092004 +033005 +137322 092004 +006010 +092004 +023007 +092004 +004001 +137329 028003 +092001 +001010 +002004 +023007 +079006 +064 +002004 +015004 +137339 092004 +006015 +092004 +012001 +137344 092004 +004001 +137347 083003 +092004 +001016 +137352 092004 +001010 +084001 +137356 084001 +003002 +023007 +137360 003004 023012 +060002 +137363 067009 +059003 +090011 +092004 +003004 023012 +137370 092004 +003005 +092004 +003002 +137375 023008 +092004 +011003 +137379 059003 +033055 +137383 067006 +137385 092004 +006015 +092004 +012001 +137390 092004 +004001 +137396 092004 +087005 +137399 053001 +137402 024001 +092004 +008002 +137407 092004 +033009 +137411 092004 +008002 +137415 014007 +137418 067006 +137422 057005 +014006 +006014 +137426 014006 +001004 +137429 012001 +092004 +012001 +014006 +137436 037004 +137438 092004 +067005 +092004 +067005 +137443 033006 +092001 +137446 092004 +033006 +031009 +137450 073 +137452 092004 +012001 +092004 +012001 +092004 +026 +092004 +053009 +015004 +092004 +012001 +137464 028003 +092004 +087005 +137469 013004 +067005 +067005 +071005 +137474 091003 +137476 067002 +025011 +092004 +036003 +092004 +033006 +092004 +033053 +092004 +006010 +137487 092001 +093001 +092004 +024002 +137492 024001 +137496 024002 +137498 024001 +017005 +053007 +083006 +092004 +008002 +092004 +012001 +092004 +028003 +092001 +137511 033006 +092001 +013004 +137516 087005 +137519 092004 +011002 +137522 092004 +053009 +137525 092004 +036003 +092004 +033006 +092004 +006010 +137532 092004 +012001 +053007 +137536 033006 +092001 +137539 006010 +092004 +033006 +092004 +033053 +092004 +006010 +137548 092004 +067008 +067002 +137552 092004 +088002 +088002 +067006 +137557 092004 +088034 +088034 +067006 +137562 092004 +088002 +088002 +137566 067006 +137568 092004 +088003 +088003 +067006 +091003 +137574 067002 +137576 092004 +038002 +092001 +137580 092001 +038002 +059003 +089014 +092004 +042002 +137588 092001 +092004 +061 +137592 092004 +061 +092004 +060003 +137597 092004 +061 +092004 +067003 +137602 092004 +067003 +025011 +092004 +047002 +092004 +006017 +137612 092004 +030007 +137616 092004 +003002 +092004 +023007 +137621 092004 +007003 +015008 +137625 092004 +001014 +083004 +092004 +088015 088036 +137631 092004 +053010 +137634 092004 +088036 +137637 092004 +020004 +137640 092004 +053007 +137643 059003 +025010 +137647 033018 +092001 +093001 +015004 +092004 +012001 +092001 +033020 +137658 092004 +011002 +092001 +137662 092004 +010002 +137665 092004 +010002 +093001 +092004 +001004 +092004 +014006 +092004 +001004 067009 +137675 092004 +012001 +137678 092004 +010004 +033006 +137683 092004 +024002 +033006 +137688 092004 +023001 +137691 092004 +025001 +057009 +002004 +023007 +057008 +033020 +092001 +059003 +092004 +024002 +092004 +033006 +092004 +033053 +092004 +006010 +137711 059008 090014 +137714 090014 +092004 +012001 +137719 092004 +022001 +092004 +033005 +137724 092004 +006010 +137730 068004 +137732 092004 +033006 +092004 +006010 +092004 +033053 +137739 085002 +092004 +012001 +092004 +063004 +137746 092004 +003002 +092004 +023007 +137752 092004 +001014 +092004 +053006 +092004 +033005 +137759 092004 +006010 +137762 033006 +092004 +033020 +137766 069001 +137768 067002 +072001 +137771 012001 +093001 +092004 +088009 +092004 +012001 +093001 +137779 059003 diff --git a/tf/0.1.1/frame.tf b/tf/0.1.1/frame.tf new file mode 100644 index 0000000..26ad878 --- /dev/null +++ b/tf/0.1.1/frame.tf @@ -0,0 +1,25507 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=frame +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +10 A0:n40001002001 A1:n40001002004 +15 A0:n40001002005 A1:n40001002009 +20 A0:n40001002010 A1:n40001002014;n40001002017 +29 A0:n40001003001 A1:n40001003005;n40001003008 +40 A0:n40001003012 A1:n40001003016 +45 A0:n40001003017 A1:n40001003021 +50 A0:n40001004001 A1:n40001004005 +55 A0:n40001004006 A1:n40001004010 +60 A0:n40001004011 A1:n40001004015 +65 A0:n40001005001 A1:n40001005005 +73 A0:n40001005009 A1:n40001005013 +81 A0:n40001005017 A1:n40001005021 +86 A0:n40001006001 A1:n40001006005 +93 A0:n40001006008 A1:n40001006012 +102 A0:n40001007001 A1:n40001007005 +107 A0:n40001007006 A1:n40001007010 +112 A0:n40001007011 A1:n40001007015 +117 A0:n40001008001 A1:n40001008005 +122 A0:n40001008006 A1:n40001008010 +127 A0:n40001008011 A1:n40001008015 +132 A0:n40001009001 A1:n40001009005 +137 A0:n40001009006 A1:n40001009010 +142 A0:n40001009011 A1:n40001009015 +147 A0:n40001010001 A1:n40001010005 +152 A0:n40001010006 A1:n40001010010 +157 A0:n40001010011 A1:n40001010015 +162 A0:n40001011001 A1:n40001011005;n40001011008 +179 A0:n40001012006 A1:n40001012009 +184 A0:n40001012010 A1:n40001012014 +189 A0:n40001013001 A1:n40001013005 +194 A0:n40001013006 A1:n40001013010 +199 A0:n40001013011 A1:n40001013015 +204 A0:n40001014001 A1:n40001014005 +209 A0:n40001014006 A1:n40001014010 +214 A0:n40001014011 A1:n40001014015 +219 A0:n40001015001 A1:n40001015005 +224 A0:n40001015006 A1:n40001015010 +229 A0:n40001015011 A1:n40001015015 +234 A0:n40001016001 A1:n40001016005 +242 A1:n40001016012 +284 A1:n40001018011 A2:n40001018015 +293 A0:n40001018019 +298 A0:n40001018011 +311 A0:n40001019001 A1:n40001019012 +313 A0:n40001019001 A1:n40001019011 +A1:n40001019001 A1:n40001019015 +316 A0:n40001019001 A1:n40001019016 +321 A1:n40001020001 A0:n40001020003 +327 A0:n40001020006 A2:n40001020011 +329 A0:n40001020006 +334 A1:n40001020013 A1:n40001020018 +A0:n40001020013 A1:n40001020019 +344 A1:n00000000000 +350 A0:n40001018013 A1:n40001021003 +353 A0:n40001020013 A1:n40001021007 +360 A0:n40001021010 A1:n40001021014 +371 A0:n40001022001 +373 A1:n40001022008 +375 A1:n00000000000 +381 A0:n40001022010 +387 A0:n40001023003 +389 A0:n40001023003 A1:n40001023009 +392 A0:n00000000000 A1:n40001023013 +407 A1:n40001024004 +411 A0:n40001024004 +413 A1:n40001024011 A0:n40001024013 +419 A0:n40001024004 A1:n40001024018 +425 A0:n40001024004 A1:n40001025004 +429 A0:n40001024018 A1:n40001025008 +432 A0:n40001024004 A1:n40001025012 +440 A1:n40002001003 +454 A0:n40002001015 +457 A0:n40002001015 +461 A1:n40002002006 +466 A0:n40002001015 A1:n40002002013 +474 A0:n40002001015 +A0:n40002001015 A1:n40002002020 +478 A0:n40002003004 +482 A1:n40002003004 +489 A0:n40002003004 A1:n40002004005;n40002004007 +497 A0:n40002003004 A1:n40002004016 +503 A1:n40002004015 +506 A0:n40002005001 A2:n40002005004 +514 A1:n40002006007;n40002006016 +533 A0:n40002006017 +A0:n00000000000 +536 A0:n40002006018 A1:n40002006021 +545 A0:n40002007002 A1:n40002007006 +548 A0:n40002007002 A1:n40002007011 +554 A0:n40002007014 +557 A0:n40002007002 A1:n40002008003 +561 A0:n40002007002 +A1:n40002007006 +A0:n40002007006 +570 A0:n40002007006 +A0:n40002007006 A1:n00000000000 A2:n40002008017 +575 A0:n40002007002 +A0:n40002008019 A1:n40002008022 +580 A0:n40002007006 A1:n40002009005 +583 A0:n40002009001 +589 A0:n40002007006 A1:n40002009011 +593 A0:n40002009010 A1:n40002009017 +596 A0:n40002009010 +A1:n40002009010 +604 A0:n40002007006 A1:n40002010004 +607 A1:n40002007006 +612 A0:n40002007006 +616 A0:n40002007006 A1:n40002011008 +625 A0:n40002007006 +A0:n40002007006 A1:n40002011017 +629 A0:n40002007006 A1:n40002011021 +633 A0:n40002007006 A2:n40002011024 A1:n40002011025 +642 A1:n40002007006 A1:n40002012006 +646 A0:n40002007006 +652 A0:n40002007006 +658 A0:n40002013003 +663 A0:n40002013005 A2:n40002013011 +668 A0:n40002013005 +A1:n40002013011 +A0:n40002013011 A1:n40002013016;n40002013019 +678 A0:n40002013011 +682 A0:n40002013011 +686 A0:n40002013005 A2:n40002013031 +689 A0:n40002013034 A1:n40002013035 +691 A0:n40002013034 A1:n40002013037 +695 A0:n40002013034 A1:n40002013040 +699 A1:n40002013011 +A0:n40002014001 A1:n40002014006;n40002014009 +709 A0:n40002013011 +720 A1:n40002015011 +722 A1:n00000000000 +728 A0:n40002015013 +731 A0:n40002015013 A1:n40002015022 +737 A0:n40002016002 +739 A1:n40002016002 +743 A1:n40002016002 +746 A0:n40002016002 +A0:n40002016002 A1:n40002016016 +768 A0:n40002016002 A1:n40002016033 +773 A1:n40002017004 +775 A1:n00000000000 +780 A0:n40002017006 +783 A1:n40002018001 +790 A0:n40002018009 +796 A0:n40002018009 A1:n40002018017 +A1:n40002018009 +800 A0:n40002018012 +802 A0:n40002019004 +808 A0:n40002019006 A2:n40002019012 +815 A0:n40002019006 +A1:n40002019012 +A0:n40002019012 A1:n40002020005;n40002020008 +825 A0:n40002019012 +830 A0:n40002020018 +832 A0:n00000000000 A1:n40002020020 +839 A1:n40002019012 +A0:n40002021001 A1:n40002021006;n40002021009 +848 A0:n40002019012 +853 A0:n40002019012 +856 A0:n40002022004 +864 A1:n40002019012 +866 A0:n40002019012 +868 A1:n40002019012 +871 A0:n40002019012 +878 A0:n40002019012 +A0:n40002019012 +885 A1:n40002023011 +887 A1:n40002023016 +899 A0:n40003001007 +903 A0:n40003001007 +909 A0:n40003001007 +A0:n00000000000 +912 A0:n40003002007 +921 A1:n00000000000 +926 A0:n40003003007 +928 A0:n00000000000 +932 A0:n00000000000 A1:n40003003018 +937 A0:n00000000000 A1:n40003003023 +945 A0:n40003004004 A1:n40003004007 +969 A0:n40003005005;n40003005009;n40003005013 +984 A1:n40003005005;n40003005009;n40003005013 +991 A0:n40003005005;n40003005009;n40003005013 A1:n40003006011 +996 A0:n40003004004 A1:n40003007003 +1002 A0:n40003007003 +1006 A0:n40003004004 A2:n40003007014 +1011 A0:n40003007016 A2:n40003007018 A1:n40003007019 +1013 A0:n40003007014 +1016 A0:n40003007023 +1019 A0:n40003007014 A1:n40003008003 +1026 A0:n40003007014 A1:n40003009004 +A0:n40003007014 +1031 A0:n40003007014 A1:n40003009010 +1035 A0:n40003004004 A2:n40003009013 +1038 A0:n40003009017 A1:n40003009022 +1045 A0:n40003009017 A1:n40003009023 A2:n40003009025 +1058 A0:n40003010004 +1063 A0:n40003010013 A1:n40003010016 +1066 A1:n40003010013 +1070 A1:n40003010013 +1074 A0:n40003011001 A1:n40003011003 +1083 A0:n00000000000 +1093 A0:n40003004004 A1:n40003011022 +1096 A0:n40003011024 A1:n40003011025 +1110 A0:n40003011013 A1:n40003012011 +1115 A0:n40003011013 A1:n40003012016 +1125 A0:n40003011013 A1:n40003012023 +1129 A0:n40003013004 +1142 A1:n40003013004 +1147 A0:n40003014001 A1:n40003014004 +1149 A0:n40003014001 +1152 A0:n40003014007 A1:n40003014008 +1155 A1:n40003013013 +1158 A0:n40003014014 +1162 A1:n40003015004 +1165 A0:n40003015004 A2:n40003015006 +1167 A0:n40003013013 +1171 A0:n00000000000 +1174 A0:n40003013013;n40003015004 A1:n40003015016 +1178 A0:n40003013013 A1:n40003015019 +1181 A1:n40003016004 +1185 A0:n40003016004 +1191 A1:n40003016014 +1195 A0:n40003016004 A1:n40003016022;n40003016026 +1198 A0:n40003016017 +1201 A0:n40003016017 +1210 A0:n40003017003 +1220 A0:n40003017003 +1224 A1:n40004001003 +1231 A1:n40004001003 +1236 A0:n40004001003 +1243 A0:n40004001003 +1245 A0:n40004003004 +1247 A0:n40004001014 +A0:n40004003004 A2:n40004003006 +1255 A0:n40004001003 +1264 A1:n40004001003 +A0:n40004004001 +A1:n40004004010;n40004004016 +1271 A0:n40004004012 +1278 A0:n40004004016 +1283 A1:n40004005003 A0:n40004005005 +1292 A0:n40004005005 A1:n40004005012 +1300 A0:n40004005005 A2:n40004006003 +1307 A0:n40004001003 A1:n40004006010 +1311 A1:n40004006018;n40004006024;n40004006027 +1316 A0:n40004006008 A1:n00000000000 A2:n40004006016 +1322 A0:n40004006016 A1:n40004006025 +1326 A0:n40004001003 A1:n40004006031 +1332 A2:n40004007002 A0:n40004007004 +1337 A1:n40004007008 +1339 A0:n00000000000 A1:n40004007009 +1345 A1:n40004008003 A0:n40004008005 +1354 A0:n40004008005 A2:n40004008012 A1:n40004008015;n40004008020 +1366 A0:n40004008005 A2:n40004009003 +1371 A0:n40004008005 A1:n40004009004 A2:n40004009005 +1373 A0:n40004007004 +A0:n40004007004 A1:n40004009011 +1377 A2:n40004010003 A0:n40004010005 +1381 A0:n40004010007 +1384 A1:n40004010014;n40004010018 +1389 A0:n00000000000 A1:n40004010010 +1393 A0:n00000000000 A1:n40004010016 +1395 A1:n40004011003 A0:n40004011005 +1402 A0:n40004011008 +1404 A0:n40004011008 A1:n40004011012 +1407 A0:n40004010005 +1410 A1:n40004012004 +A0:n40004010005 +1416 A0:n40004010005 A1:n40004013004 +1419 A0:n40004010005 +A0:n40004010005 +1431 A1:n40004014004 +1433 A1:n00000000000 +1438 A0:n40004014006 +1455 A0:n40004016002 +1460 A0:n40004016002 A1:n40004016007 +1463 A0:n00000000000 +1470 A0:n40004016018 +1474 A0:n40004017005 A1:n40004017006;n40004017008 +1477 A0:n40004017005 +1479 A0:n40004017005 +A0:n00000000000 +1482 A0:n40004017013 +1488 A0:n40004017005 +1494 A0:n40004017005 A1:n40004018020 +1506 A0:n40004018010 A1:n40004018021 +1515 A0:n40004017005 A2:n40004019003 +1517 A0:n40004018010 +1521 A0:n40004017005 A1:n40004019009 +1528 A0:n40004018010 A1:n40004020006 +1531 A0:n40004020001 A1:n40004020008 +1534 A0:n40004017005 +1536 A0:n40004017005 A1:n40004021025 +1557 A0:n40004021007 A1:n40004021027 +1562 A0:n40004017005 A1:n40004021031 +1567 A0:n40004018010 A1:n40004022006;n40004022009 +1574 A0:n40004022001 A1:n40004022012 +1577 A0:n40004017005 +1582 A0:n40004017005 +1588 A0:n40004017005 A1:n40004023015 +1594 A0:n40004017005 A1:n40004023021;n40004023024 +1604 A0:n40004024004 +1613 A0:n40004024009 A2:n40004024012 A1:n40004024016 +1618 A0:n00000000000 +1623 A1:n00000000000 +A0:n00000000000 +1626 A0:n00000000000 +1630 A0:n40004017005 A1:n40004024030 +1633 A1:n40004025003 A0:n40004025004 +1651 A0:n40004017005 A1:n40005001004 +1654 A0:n40004017005 +1659 A0:n40005001011 +1661 A0:n40005001015 +1667 A0:n40004017005 A1:n40005002004 +1671 A0:n40004017005 A1:n40005002007 +1673 A0:n40004017005 +1688 A0:n00000000000 +1691 A1:n40005004005 +1697 A0:n40005005005 A1:n40005005008 +1702 A0:n00000000000 A1:n40005006007 +1704 A0:n00000000000 A1:n40005006007 +1709 A1:n40005006009 +1715 A1:n40005007005 +1725 A0:n40005008007 A1:n40005008009 +1736 A1:n00000000000 +1749 A0:n00000000000 A1:n40005011005 +1752 A0:n00000000000 +1754 A0:n00000000000 A1:n40005011011 +1759 A0:n00000000000 +1762 A0:n40005001015 +1764 A0:n40005001015 +1775 A0:n00000000000 A1:n40005012016 +1791 A1:n40005013010 +1794 A1:n40005013010 +1797 A0:n40005013010 +1801 A1:n40005013010 +1803 A1:n40005013010 +1814 A0:n40005014009 A1:n40005014010 +1816 A1:n40005014009 +1819 A0:n40005014009 +1821 A0:n40005013026 A1:n40005015003 +1824 A0:n40005013026 A1:n40005015006 +1834 A0:n40005015003 +1841 A0:n40005016004 +1849 A0:n40005016008 A1:n40005016014 +1855 A0:n40005016008 A1:n40005016018 +1864 A0:n40005001015 +1866 A0:n40004017005 +A0:n40004017005 A1:n40005017007;n40005017010 +1874 A0:n40004017005 +A0:n40004017005 +1877 A0:n40004017005 +1880 A0:n40004017005 A2:n40005018004 +1884 A0:n40005018009;n40005018012 +1897 A0:n40005018013;n40005018017 +1904 A0:n40005018026 +1908 A0:n40005019001 A1:n40005019005 +1916 A0:n40005019001 A1:n40005019015 +1930 A0:n40005019023 +1932 A0:n40005019023 +1942 A0:n40004017005 A2:n40005020003 +1947 A0:n40005020010 +1958 A0:n40005001015 +1964 A0:n40005001015 +1966 A1:n40005021007;n40005021012 A2:n40005021005 +1970 A0:n40005021005 +1974 A0:n40005021008 +1981 A0:n40005022001 A2:n40005022004 +1986 A0:n00000000000 A1:n40005022010 +1997 A0:n40005022016 A2:n40005022021 +2009 A0:n40005022028 +2020 A0:n40005001015 A1:n40005023005 +2028 A1:n40005001015 +2033 A0:n40005023014 A1:n40005023017 +2037 A0:n40005001015 A1:n40005024004 +2046 A0:n40005001015 +2048 A1:n40005001015 +2054 A0:n40005001015 +A0:n40005001015 A1:n40005024021 +2060 A0:n40005001015 +2076 A1:n40005025017 A0:n40005025020 A2:n40005025022 +2091 A0:n40004017005 A2:n40005026003 +2095 A0:n40005001015 +2099 A0:n40005001015 A1:n40005026013 +2103 A0:n40005001015 +2105 A1:n40005027005 +2107 A0:n00000000000 +2110 A0:n40005028001 A2:n40005028004 +2115 A0:n00000000000 A1:n40005028009 +2119 A0:n40005028008 A1:n40005028013 +2122 A0:n40005028008 A1:n40005028016 +2135 A0:n40005029004 A1:n40005029009 +2137 A0:n40005001015 A1:n40005029011 +2140 A0:n40005001015 +2144 A0:n40005029020;n40005029031 +2147 A0:n40005029021 +2158 A1:n40005029029 +2167 A0:n40005030006 A1:n40005030008 +2169 A0:n40005001015 A1:n40005030010 +2172 A0:n40005001015 +2176 A0:n40005030019;n40005030032 +2179 A0:n40005030020 +2192 A0:n40005030028 +2194 A1:n40005031009 +2197 A0:n40005031003 A1:n40005031007 +2201 A0:n40005031005 A2:n40005031010 A1:n40005031011 +2206 A0:n40005032001 A2:n40005032004 +2211 A0:n00000000000 A1:n40005032010 +2218 A0:n40005032008 A1:n40005032017 +2220 A1:n40005032016 +2224 A1:n00000000000 +A0:n40005032019 A1:n40005032021 +A0:n40005032022 +2228 A0:n40005001015 +2230 A1:n40005033008;n40005033009 A2:n40005033006 +2234 A0:n40005033006 +2236 A0:n40005033006 A2:n40005033012 A1:n40005033014 +2244 A0:n40005034001 A2:n40005034004 +2247 A0:n40005001015 +2282 A0:n40005001015 +2285 A0:n40005001015 A1:n40005036013 +2288 A0:n40005001015 A1:n40005036011 +2309 A0:n40005001015 +2311 A1:n40005038004;n40005038008 +2321 A0:n40005039001 A2:n40005039004 A1:n40005039006 +2324 A0:n40005001015 A1:n40005039008 +2330 A0:n40005039010 A1:n40005039011 +2336 A0:n40005001015 A2:n40005039019 A1:n40005039022 +2343 A0:n00000000000 A1:n40005040005;n40005040010 +2345 A1:n40005040003 +2350 A0:n40005040003 A1:n40005040008 +A0:n40005001015 A2:n40005040012 A1:n40005040015 +2359 A0:n40005041002 A1:n40005041003 +2362 A0:n40005001015 +2367 A0:n00000000000 A1:n40005042003 +2369 A0:n40005001015 A1:n00000000000 A2:n40005042002 +2372 A0:n00000000000 A1:n40005042010 +2375 A0:n40005042007 +2377 A1:n40005001015 A1:n40005042007 +A0:n40005001015 +2380 A1:n40005043004;n40005043009 +A0:n00000000000 A1:n40005043006 +2386 A0:n00000000000 A1:n40005043011 +2392 A0:n40005044001 A2:n40005044004 +2394 A0:n40005001015 A1:n40005044007 +2399 A0:n40005001015 +2402 A0:n00000000000 A1:n40005044014 +2417 A0:n40005045005 A1:n40005045012 +2423 A0:n40005045005 +2430 A0:n40005001015 A1:n40005046005 +2432 A0:n00000000000 A1:n40005046006 +2436 A0:n40005001015 A1:n40005046008 +2443 A0:n40005046013 A1:n40005046015 +2446 A0:n40005001015 A1:n40005047005 +2453 A0:n40005001015 A1:n40005047009 +2460 A0:n40005047014 A1:n40005047016 +2474 A0:n40005001015 A1:n40006001007 +2479 A0:n40005001015 A1:n40006001004 +2485 A1:n40005001015 +2492 A0:n40005001015 A1:n40006001018 +2503 A0:n40005001015 A1:n40006002004 +2506 A0:n40005001015 +2512 A0:n40006002011 +2521 A1:n40006002011 +2526 A0:n40004017005 A2:n40006002027 +2528 A0:n40006002011 A1:n40006002030 +2534 A0:n40006003001 A1:n40006003004 +2537 A0:n40006003008 +2542 A1:n40006003010 A0:n40006003013 +2559 A0:n40006004011 +2563 A0:n40006004011 A1:n00000000000 A2:n40006004019 +2567 A0:n40005001015 +2574 A0:n40006005008 A1:n40006005021 +2584 A0:n40006005008 +A0:n40006005008 +2587 A1:n40006005008 +2591 A0:n40004017005 A2:n40006005028 +2593 A0:n40006005008 A1:n40006005031 +2600 A0:n40006006001 +A0:n40005001015 +2607 A0:n40005001015 A1:n40006006013 +2611 A0:n40005001015 A1:n00000000000 A2:n40006006017 +2624 A0:n40006006025 +2628 A0:n40006006025 A1:n00000000000 A2:n40006006033 +2631 A0:n40005001015 +2633 A0:n40005001015 +2638 A0:n40006007007 +2644 A1:n40006007007 +2647 A1:n40005001015 +2650 A0:n40006008008 A1:n40006008012 +2656 A0:n40005001015 A1:n40006008011 +2660 A0:n40006008015 A1:n40006008017 +2664 A0:n40006009004 +2672 A1:n40006009013 +2676 A0:n40006010003 +2680 A1:n40006010007 +2695 A0:n40006009005 A1:n40006011002 A2:n40006011007 +2699 A0:n40006009005 A2:n40006012003 A1:n40006012005 +2707 A0:n40006012009 A1:n00000000000 A2:n40006012012 +2713 A0:n40006009005 A1:n40006013004 +2718 A0:n40006009005 A1:n40006013009 +2725 A0:n40005001015 A2:n40006014005 A1:n40006014007 +2731 A2:n40006014011 A1:n40006015013 A0:n40006014013 +2742 A0:n40005001015 A1:n40006014007 A2:n40006015006 +2749 A0:n40006015009 A1:n40006015013 +2755 A0:n40005001015 +2763 A0:n40006016008 A1:n40006016013 +2768 A1:n40006016008 A2:n40006016018 A1:n40006016019 +2771 A0:n40006016008 +2773 A0:n40004017005 A2:n40006016022 +2775 A0:n40006016008 A1:n40006016025 +2781 A0:n40005001015 +A0:n40006017001 A1:n40006017007 +2790 A0:n40005001015 A1:n40006017010 +2793 A1:n40005001015 A2:n40006018005 A1:n40006018006 +2796 A0:n40005001015 +2810 A0:n40006018017 +2814 A0:n40006018017 A1:n00000000000 A2:n40006018025 +2817 A0:n40005001015 A2:n40006019003 A1:n40006019004 +2827 A0:n40006019009;n40006019011 +2831 A0:n40006019015 +2833 A0:n40006019015 +2835 A0:n40005001015 A2:n40006020003 A1:n40006020004 +2845 A0:n40006020009;n40006020011 +2850 A0:n40006020015 +2852 A0:n40006020015 +2911 A0:n40006024001 A1:n40006024005 +2914 A0:n40006024001 A1:n40006024004 +2919 A0:n40006024001 A1:n40006024009 +2923 A0:n40006024001 A1:n40006024013 +2926 A0:n40006024001 A1:n40006024016 +2930 A0:n40006024001 A1:n40006024020 +2932 A0:n40005001015 A1:n40006024025;n40006024027 +2934 A0:n40005001015 A1:n40006024024 +2939 A0:n40004017005 A2:n40006025004 +2942 A0:n40005001015 A1:n40006025011;n40006025014 +2947 A0:n40005001015 A1:n40006025010 +2950 A0:n40005001015 A1:n40006025013 +2956 A0:n40005001015 A1:n40006025019 +2969 A0:n40005001015 +2977 A0:n40006026004 +2979 A0:n40006026004 +2981 A0:n40006026004 +2990 A0:n40006026018 A1:n40006026023 +2995 A0:n40006026025 +3001 A0:n40006027001 +A0:n40006027001 A1:n40006027007 +A0:n40006027001 A1:n40006027012 +3014 A0:n40005001015 +A0:n40005001015 A1:n40006028008 +3021 A0:n40006028008 +3023 A0:n40006028008 +3025 A0:n40006028008 +3027 A0:n40004017005 A2:n40006029003 +3037 A0:n40006029006 +3048 A0:n40006030004 +3053 A1:n40006030004 +3057 A1:n40006030004 A0:n40006030015 +3065 A0:n40006030022 +A0:n40006030022 +3068 A0:n40006030022 A1:n40006031005 +3071 A0:n40006030022 A1:n40006031008 +3074 A0:n40006030022 A1:n40006031011 +3080 A1:n40006032003 A0:n40006032005 +3082 A0:n40006032010 +3089 A0:n40006030022 A1:n40006032016 +3093 A0:n40006030022 A1:n40006033005;n40006033008 +3104 A1:n40006033011 A2:n40006033014 +3108 A0:n40006030022 +3115 A0:n40006034009 A1:n40006034011 +3124 A0:n40006030022 +3127 A1:n40006030022 +3132 A0:n40006030022 +A1:n40006030022 +3138 A0:n40006030022 +A1:n40007002011 A2:n40007002013 +3143 A0:n40006030022 A1:n40007003005 +3161 A0:n40006030022 A1:n40007003019 +3164 A0:n40006030022 A2:n40007004005 +3168 A0:n40007004005 +A0:n40006030022 A1:n40007004010 +3177 A0:n40006030022 +3185 A0:n40007005001 A1:n40007005009 +3195 A0:n40007005001 +A0:n40007005001 A1:n40007005015 +3206 A0:n40006030022 A1:n40007006004 A2:n40007006006 +3212 A0:n40006030022 A1:n40007006010 +3221 A0:n40007006006;n40007006014 A1:n40007006018 +3228 A1:n40007006006;n40007006014 +A0:n40007006006;n40007006014 A1:n40007006026 +3231 A0:n40006030022 +3233 A1:n00000000000 A2:n40007007004 +3235 A0:n40006030022 +3237 A0:n40006030022 +A0:n40006030022 +3240 A1:n00000000000 A2:n40007007011 +3245 A0:n00000000000 +A0:n40007008004 +3249 A0:n00000000000 +A0:n40007008008 +3253 A0:n00000000000 +A1:n00000000000 A2:n40007008012 +3262 A2:n40007009007 A0:n40007009010 A1:n40007009012 +3269 A0:n40007009006 A1:n40007009014 A2:n40007009016 +3274 A0:n40007009010 A1:n40007010003 +3277 A0:n40007009006 A1:n40007010006 A2:n40007010008 +3284 A0:n40007011003 A1:n40007011009 +3287 A0:n40006030022 A1:n40007011007 A2:n40007011011 +3300 A0:n40007011016 A1:n40007011023 A2:n40007011025 +3303 A0:n00000000000 A1:n40007011026 +3309 A0:n40006030022 +3311 A2:n40007012008 A1:n40007012003 A0:n40007012010 +3318 A0:n40007012013 A1:n00000000000 A2:n40007012015 +3328 A0:n40006030022 +3342 A0:n40007013013 +3350 A0:n00000000000 +3362 A0:n40007014008 +3370 A0:n00000000000 A1:n40007014019 +3372 A0:n40006030022 +3377 A0:n40007015005 +3392 A0:n40006030022 A1:n40007016006 +3395 A0:n00000000000 A1:n40007016011 +3409 A0:n40007017003 A1:n40007017005 +3416 A0:n40007017011 A1:n40007017012 +3418 A0:n40007018003 A1:n40007018007 +3423 A0:n40007018003 A1:n40007018005 +3429 A0:n40007018009 A1:n40007018011 +3433 A0:n40007019002 A1:n40007019005 +3436 A1:n40007019002 +3440 A1:n40007019002 +3446 A0:n40006030022 A1:n40007020007 +3451 A0:n00000000000 A2:n40007021005 +3455 A0:n40007021004 +3463 A0:n00000000000 A1:n40007021018 +3474 A0:n40007022001 A2:n40007022003 +3486 A0:n40007022001 +3492 A0:n40007022001 A1:n40007022019 +3499 A0:n40007022001 A1:n40007022025 +3502 A0:n40004017005 A2:n40007023004 +3506 A0:n40004017005 A1:n40007023008 +3508 A0:n40007023013 +3512 A0:n40007022001 A1:n40007023015 +3518 A0:n40007024003 A1:n40007024007 +3524 A0:n40007024003 A1:n40007024011 +3526 A1:n40007024004;n40007024010 +3530 A0:n40007024015 A1:n40007024019 +3538 A0:n40007025004 +3542 A0:n40007025008 +3546 A0:n40007025012 +3550 A0:n40007025004;n40007025008;n40007025012 A1:n40007025016 +3556 A0:n40007025016 +3558 A1:n40007025016 +3565 A0:n00000000000 A1:n40007026007 +3572 A0:n00000000000 A1:n40007026012 +3574 A1:n40007026004;n40007026011 +3578 A0:n40007026016 A1:n40007026020 +3586 A0:n40007027004 +3590 A0:n40007027008 +3594 A0:n40007027012 +3598 A0:n40007027004;n40007027008;n40007027012 A1:n40007027016 +3603 A0:n40007027016 +3611 A0:n00000000000 +3613 A0:n40007028006 A1:n40007028008 +3619 A1:n40007028012 +3628 A0:n40007028006 A1:n40007029004 +3632 A0:n00000000000 A1:n40007029006 +3640 A0:n40008001003 +3645 A1:n40008001008 A0:n40008001009 +3652 A0:n40008002003 +A0:n40008002003 A1:n40008002006 +3655 A0:n40008002003 +3658 A0:n40008002008 +A0:n40008002008 A1:n40008002013 +3661 A0:n40008002008 A1:n40008002012 +3663 A0:n40007028006 A1:n40008003004 +3666 A0:n40007028006 A1:n40008003006 +3668 A0:n40007028006 +A0:n40007028006 +A1:n40008002003 +3673 A1:n40008003015 +3678 A2:n40008004003 A0:n40008004005 +3682 A0:n40008002003 +3684 A0:n40008002003 A2:n40008004007 +3686 A0:n40008002003 +3688 A0:n40008002003 A1:n40008004011 A2:n40008004014 +3692 A0:n40008002003 A1:n40008004018 +3696 A1:n40008004019 A0:n40008004021 +3702 A0:n40008005003 +3706 A0:n40008005008 +3709 A0:n40008005008 A1:n40008005010 +3712 A0:n40008005008 +3717 A1:n40008006005 +3723 A1:n40008006005 +A0:n40008004005 A2:n40008007002 +3727 A0:n40008004005 +A0:n40008007003 A1:n40008007006 +3731 A1:n40008008004 +3734 A0:n40008008004 +3744 A0:n40008008006 +3747 A0:n40008008006 +3750 A1:n40008008023 +3761 A0:n40008009004 A1:n40008009011 +3766 A0:n40008008004 A2:n40008009014 +3768 A1:n40008009014 +3770 A0:n40008009014 +3773 A0:n40008009019 +3775 A0:n40008009019 +3780 A0:n40008009025 A1:n40008009028 +3783 A0:n40008009025 +3785 A0:n40008010004 +3788 A0:n40008010004 +3790 A0:n40008010004 A2:n40008010009 +3792 A0:n00000000000 +3794 A0:n40008010004 A2:n40008010012 +3803 A0:n40008010004 A1:n40008010016 +3805 A0:n40008010004 A2:n40008011003 +3813 A0:n40008011005 +3815 A1:n40008011005 +3832 A1:n40008012003 +3848 A0:n40008013004 A2:n40008013006 +3853 A0:n40008013006 +3855 A0:n40008013006 +A1:n00000000000 +3859 A1:n40008013015 +3869 A0:n40008014004 +3874 A0:n40008014004 A1:n40008014013;n40008014015 +3878 A1:n40008014011 +3880 A0:n40008014011 +3882 A0:n40008014004 A1:n40008015004 +3887 A1:n40008015008 A0:n40008015010 +3892 A1:n40008014011 +3894 A0:n40008014011 A1:n40008015015 +3898 A0:n40008016001 +A0:n00000000000 A2:n40008016005 A1:n40008016006 +3901 A0:n00000000000 +3904 A0:n40008014004 A1:n40008016011 +3912 A0:n00000000000 +A0:n40008014004 A1:n40008016017 +3915 A1:n40008017004 +3917 A1:n00000000000 +3922 A0:n40008017006 +3927 A0:n40008017010 A1:n40008017012 +3931 A0:n40008014004 A1:n40008017017 +3935 A0:n40008018004 A1:n40008018005 +3939 A0:n40008018004 A1:n40008018009 +A0:n40005001015 +3945 A0:n40008019004 +3948 A0:n40008019004 A2:n40008019006 +3951 A0:n40008019004 A1:n40008019009 +3955 A0:n40008019007 +3957 A2:n40008020003 A0:n40008020005 +3964 A0:n40008020007 A1:n40008020008 +3977 A0:n40008020018 A1:n40008020026 +3981 A0:n40008020018 A1:n40008020025 +3986 A0:n40008021001 A2:n40008021006 +3989 A0:n40008021007 A2:n40008021009 A1:n40008021011;n40008021013 +3992 A0:n40008021001 +3994 A0:n40008021001 A1:n40008021015 +4001 A0:n40008022003 A2:n40008022005 +4003 A0:n40008021001 A1:n40008022007 +4006 A0:n40008021001 A1:n40008022012 +4009 A0:n40008022011 A1:n40008022015 +4014 A0:n40008023003 +4019 A1:n40008023008 A0:n40008023010 +4028 A0:n40008024003 +4035 A1:n40008024011 +4041 A0:n40008024016 +4043 A0:n40008023010 +A0:n40008023010 A1:n40008025004 +4046 A0:n40008023010 +4048 A0:n40008025006 +A0:n40008023010;n40008025006 +4051 A0:n40008022003 A2:n40008026003 +4058 A1:n40008022003 +A0:n40008022003 A1:n40008026012;n40008026015 +4066 A0:n40008026018 +4072 A0:n40008027003 +A0:n40008027003 +4085 A0:n40008027012;n40008027015 A1:n40008027016 +4087 A0:n40008028003 +4097 A1:n40008028013 A0:n40008028015 +4100 A0:n00000000000 +4104 A0:n40008028015 +4109 A0:n40008028025 A1:n40008028026 +4111 A0:n40008028025 +4118 A0:n40008028015 +A0:n40008028015 +4127 A0:n40008029009 +4131 A0:n40008029009 A1:n40008029017 +4141 A1:n40008030006 +4145 A0:n40008031003 A1:n40008031005 +4147 A0:n40008031003 +4149 A0:n40008022003 A1:n40008031009 +4151 A0:n40008022003 A1:n40008031011 +4159 A0:n40008022003 A2:n40008032003 +4161 A0:n40008031003 +4164 A0:n40008031003 +A0:n40008032005 +4171 A0:n40008032017 +4182 A0:n40008032017 +4188 A0:n00000000000 +A0:n40008033003 +4191 A0:n40008033003 +4195 A0:n40008033003 A1:n40008033011;n40008033013 +4200 A0:n00000000000 +4206 A0:n40008034005 +4212 A0:n40008034005 +4214 A0:n40008034005 A1:n40008034013 +4216 A0:n40008034010 +4222 A0:n40008034010 +4225 A0:n40008034010 +4227 A0:n40008034010 +4234 A0:n00000000000 A2:n40009002004 A1:n40009002005 +4239 A1:n40009002005 +4243 A0:n40009002012 A1:n40009002014 +4247 A0:n40009002012 A2:n40009002018 +4250 A0:n40009002020 +4252 A1:n40009002024 +4261 A0:n40009003003 +4265 A0:n40009003009 +4269 A0:n40009004004 A1:n40009004006 +4273 A0:n40009004004 +4276 A0:n40009003003 A1:n40009004012 +4286 A0:n00000000000 +A1:n40009005009 +4292 A0:n00000000000 +A0:n40009002018 +4295 A0:n40009002018 +4298 A0:n40009003003 +4301 A1:n40009006005 A0:n40009006008 +4309 A0:n40009006008 A1:n40009006015 +4312 A0:n40009004004 A2:n40009006019 +4315 A1:n40009006019 +A0:n40009006019 A1:n40009006024 +4321 A0:n40009006019 +4327 A1:n40009006019 +A0:n40009006019 +4334 A0:n40009008004 +4337 A0:n40009008004 +4339 A0:n40009008004 A1:n40009008009 +4343 A0:n40009008009 A1:n40009008012 A2:n40009008015 +4349 A0:n40009009004 +4353 A0:n40009009004 A1:n40009009007 +4355 A0:n40009009007 +4362 A0:n40009009004 A1:n40009009016 +4364 A0:n40009009007 A1:n40009009018 +4367 A0:n40009009007 +A0:n40009009007 A1:n40009009022 +4371 A0:n00000000000 +4373 A0:n40009010003 +4383 A0:n40009010011;n40009010013 +A0:n40009010011;n40009010013 +4392 A0:n40009011004 +4395 A0:n40009011004 A2:n40009011007 +4406 A0:n40009011018 +4412 A0:n40009010017 +A0:n40009012001 +4417 A1:n40009012006 A0:n40009012009 +4419 A0:n00000000000 +4423 A0:n00000000000 +4425 A1:n40009011004 +A0:n40009011004 +4430 A0:n40009008009 A1:n40009013006 +4436 A0:n40009010017 +A0:n40009010017 A1:n40009013015 +4442 A0:n40009014005 +4447 A0:n40009014005 +4454 A0:n40009014010;n40009014013 +4460 A0:n40009014017 +4462 A2:n40009015003 A0:n40009015005 +4467 A0:n40009015009 A1:n40009015012 +4472 A0:n40009015009 +4481 A0:n40009015022 +4484 A1:n40009015028 +4491 A0:n40009015009 +4494 A0:n40009016001 A1:n40009016004 +4502 A0:n40009016013 +4512 A0:n40009016020 +4514 A0:n00000000000 A1:n40009017003 +4523 A1:n40009017013 +4529 A1:n40009017016 +4533 A1:n40009017020 +4535 A0:n00000000000 A1:n40009017024 +4543 A1:n40009017030 +4546 A1:n40009018001 A0:n40009018002 A2:n40009018004 +4551 A0:n40009018006 +A0:n40009018006 A1:n40009018010 +4554 A0:n40009018006 +4560 A0:n40009018014 +4562 A0:n40009015005 +A0:n40009015005 A1:n40009018022 +4570 A0:n40009018014 +4572 A1:n40009019004 +4575 A0:n40009019004 A1:n40009019006 +4584 A0:n40009020003 +4587 A0:n40009020003 +4589 A0:n40009020003 A1:n40009020011 +4596 A0:n40009020003 +4601 A0:n40009020003 A1:n40009021009 +4605 A1:n40009020003 +4609 A1:n40009022003 +4611 A0:n40009022003 A1:n40009022007 +4613 A0:n40009022003 +A0:n40009022010 +4619 A0:n40009022012 A1:n40009022015 +4622 A1:n40009022019 +4632 A0:n40009023004 +4639 A0:n40009023004 A1:n40009023017 +4645 A1:n40009023013;n40009023016 +A0:n40009023004 +A0:n40009023013;n40009023016 +4650 A0:n40009024007 +4654 A0:n40009024007 +4656 A0:n40009023013;n40009023016 A1:n40009024012 +4660 A1:n40009025005 +4663 A0:n40009023004 +A0:n40009023004 A1:n40009025009 +4669 A1:n40009025014 +4673 A0:n40009026004 +4683 A0:n40009027005 +4687 A1:n40009027005 A0:n40009027008 +4690 A0:n40009027008 +4692 A0:n40009027008 +A0:n40009027014 A1:n40009027013 +4698 A0:n40009027005 +4702 A0:n40009028009 +4707 A2:n40009028012 A0:n40009028014 +4711 A0:n40009028009 +4713 A0:n40009028014 A1:n40009028019 +4715 A0:n40009028014 A1:n40009028018 +A0:n40009028009 A2:n40009028021 +4721 A0:n40009028014 A1:n40009029004 +4725 A0:n40009028014 +4730 A1:n00000000000 A2:n40009029012 +4733 A1:n40009030005 +4738 A2:n40009030008 A1:n40009030010 +4742 A0:n40009030010 +A0:n40009028009 +4745 A0:n40009030013 +4748 A0:n40009028009 +A0:n40009031001 A1:n40009031005 +4758 A0:n40009032001 +4760 A0:n00000000000 A2:n40009032006 A1:n40009032007 +4763 A0:n40009032007 +4765 A1:n40009033004 +4768 A0:n40009033007 +4772 A0:n40009033011 +4775 A0:n40009033011 +4777 A1:n00000000000 +4785 A0:n40009034003 +4791 A0:n40009030010 A1:n40009034012 +4795 A0:n40009035004 A1:n40009035006;n40009035010 +4804 A0:n40009035004 +4810 A0:n40009035004 A1:n40009035019 +4816 A0:n40009035004 A1:n40009035025;n40009035028 +4823 A0:n40009035004 A1:n40009036004 +4826 A1:n40009035004 +4831 A1:n40009036004 +4833 A1:n40009036004 +4837 A0:n40009036014 A1:n40009036017 +4840 A0:n40009035004 A2:n40009037004 +4853 A1:n40009037004 A1:n40009038004 +4859 A0:n40009038004 A1:n40009038009 +4866 A0:n40009035004 A1:n40010001005 +4871 A0:n40009035004 A2:n40010001008 A1:n40010001009 +4877 A0:n40010001005 A1:n40010001014 +4880 A0:n40010001005 A1:n40010001018;n40010001021 +4937 A0:n40010004005 A1:n40010004011 +4942 A1:n40010005003 A0:n40010005006 +4945 A0:n40010005006 A1:n40010005008 +4947 A0:n40010005006 +4952 A0:n40010005003 +4958 A0:n40010005003 +4960 A0:n40010005003 +4966 A0:n40010006006 +4970 A0:n40010005003 +A0:n40010005003 +A0:n40010005003 +4974 A0:n40010007008 +4979 A0:n00000000000 +A0:n40010005003 A1:n40010008001 +4982 A0:n40010005003 A1:n40010008003 +4984 A0:n40010005003 A1:n40010008005 +4986 A0:n40010005003 A1:n40010008007 +4988 A0:n40010005003 +4990 A0:n40010005003 +4992 A0:n40010005003 A1:n40010009003;n40010009005;n40010009007 +5027 A0:n40010005003 +A0:n40010005003 +5035 A0:n40010005003 +5038 A0:n40010005003 +5040 A0:n40010005003 +5044 A0:n40010005003 A1:n40010012007 +5053 A0:n40010013010 +5069 A1:n40010013020 +5074 A0:n40010014002 A1:n40010014006 +5077 A0:n40010014002 A1:n40010014010 +5081 A0:n40010005003 +5089 A0:n40010005003 A1:n40010014022 +5096 A0:n40010005006 A2:n40010015003 +5099 A0:n00000000000 +5111 A0:n40010005003 +5113 A0:n40010016002 A1:n40010016004 +5132 A0:n40010005003 +5137 A0:n40010017005 A1:n40010017008 +5146 A0:n40010017005 A1:n40010017017 +5154 A1:n40010005003 +5165 A0:n40010017005 A1:n40010019004 +5168 A0:n40010005003 +5172 A0:n40010005003 A1:n40010019009 +5174 A2:n40010019013 A1:n40010019019 +5181 A0:n40010005003 A1:n40010019018 +5187 A0:n00000000000 +5195 A0:n00000000000 +5199 A0:n40010021003 A1:n40010021004 +5208 A0:n40010021012 +5213 A0:n40010021012 A1:n40010021017 +5217 A1:n40010005003 +5226 A0:n00000000000 +5230 A1:n40010022015 +5233 A0:n00000000000 A1:n40010023004 +5239 A0:n40010005003 +5245 A0:n40010005006 A2:n40010023016 +5249 A0:n40010005003 A1:n40010023021 +5255 A0:n40010023027 +5292 A0:n00000000000 A1:n40010025019 +5300 A1:n40010005003 A1:n40010026004 +5305 A1:n00000000000 +5308 A1:n40010026009 +5313 A1:n40010026014 +5315 A0:n40010005006 A1:n40010027001 A2:n40010027003 +5320 A0:n40010005003 A1:n40010027002 +5329 A0:n40010005003 A1:n40010027012 +A0:n40010005003 A1:n40010027016 +5336 A0:n40010005003 +5339 A0:n00000000000 A1:n40010028008 +5344 A0:n00000000000 A1:n40010028014 +5347 A0:n40010028013 A1:n40010028011 +5349 A0:n40010005003 A1:n40010028019 +5352 A0:n40010020011 A1:n40010028024 +5357 A0:n40010028019 A1:n40010028021;n40010028023 +5364 A1:n40010029003 +5370 A0:n40010029007 +5386 A1:n40010030005 +5390 A0:n40010005003 +5393 A0:n40010031007 +5398 A0:n40010032003 +5404 A0:n40010032011 +5419 A0:n40010033001 A1:n40010033005 +5424 A0:n40010033010 A1:n40010033011 +5436 A0:n40010005003 +5438 A0:n40010005006 +A0:n40010005006 A1:n40010034006 +5445 A0:n40010005006 +A0:n40010005006 A1:n40010034013 +5451 A0:n40010005006 +A0:n40010005006 A1:n40010035004 +5478 A0:n00000000000 A1:n40010037003;n40010037005 +5490 A0:n00000000000 A1:n40010037015;n40010037017 +5503 A0:n40010038002 A1:n40010038006 +5508 A0:n40010038002 +5516 A0:n00000000000 A1:n40010039004 +5520 A0:n40010039002 A1:n40010039007 +5524 A0:n00000000000 A1:n40010039012 +5530 A0:n40010039010 A1:n40010039017 +5533 A0:n00000000000 A1:n40010040003 +5536 A0:n40010040002 A1:n40010040004 +5540 A0:n00000000000 A1:n40010040008 +A0:n40010040009 A1:n40010040012 +5543 A0:n40010033014 A1:n40010040013 +5546 A0:n00000000000 A1:n40010041003 +5553 A0:n40010041002 A1:n40010041007 +5556 A0:n00000000000 A1:n40010041013 +5563 A0:n40010041012 A1:n40010041017 +5567 A0:n40010042002 A2:n40010042005 A1:n40010042009 +5579 A0:n40010005006 A2:n40010042017 +5583 A0:n40010042004 A1:n40010042022 +5588 A0:n00000000000 +5590 A0:n40011001006 A1:n40011001007 +5593 A0:n40011001006 A1:n00000000000 A2:n40011001010 +5598 A0:n40011001006 +5601 A0:n40011001006 +5603 A0:n40011001006 +5611 A0:n40011002003 A1:n40011002009 +5619 A0:n40011002003 +5624 A0:n40011002003 A2:n40011003002 +5629 A0:n00000000000 +5632 A0:n40011002003;n40011002015 A1:n40011003008 +5634 A1:n40011004004 +5637 A0:n40011004004 A2:n40011004006 +5639 A1:n40011002015 +A0:n40011002015 A2:n40011004009 A1:n40011004011;n40011004013 +5643 A0:n40011002015 A1:n40011004010 +5645 A0:n40011002015 A1:n40011004010 +5647 A0:n40011005001 +5650 A0:n40011005004 +5652 A1:n40011005006 +5655 A0:n40011005009 +5658 A1:n40011005012 +5661 A1:n40011005015 +5668 A1:n40011006004 +5673 A0:n40011007001 +A0:n40011007006 A1:n40011007007 +5677 A0:n40011007006 A2:n40011007009 +5683 A0:n40011007009 A1:n40011007012 +A0:n40011007009 +5691 A1:n40011007018 +5694 A0:n40011007009 A1:n40011008002 +A0:n40011007009 +5699 A1:n40011008005 +A0:n40011007009 +5704 A0:n00000000000 A1:n40011008012 +5712 A0:n40011007009 +5714 A0:n40011007009 A1:n40011009004 +5716 A0:n40011007006 A2:n40011009008 +5725 A1:n40011010008;n40011010016 +5728 A0:n40011010007 A1:n40011010010 +5736 A0:n40011010015 A1:n40011010018 +5743 A0:n40011007006 A2:n40011011003 +5746 A1:n40011011009 +5778 A0:n40011012011 +5781 A0:n40011012016 A1:n40011012018 +5792 A0:n40011013004;n40011013007 +5795 A0:n40011007009 A1:n40011014004 +A0:n40011007009 +5801 A0:n40011014007 A1:n40011014010 +A0:n40011014007 +5804 A0:n00000000000 A1:n40011015003 +5806 A0:n40011015002 +5809 A0:n40011007006 A1:n40011016005 +5816 A0:n40011016009 +5821 A0:n40011016014 A1:n40011016017 +5824 A0:n40011016009 +A0:n40011016009 A1:n00000000000 A2:n40011017003 +5829 A0:n40011016017 +A0:n40011016009 +5833 A0:n40011016017 +5835 A0:n40011018003 +5838 A0:n40011018003 +5840 A0:n40011018003 +5842 A0:n00000000000 +5844 A0:n40011018003 A1:n40011018010 +A0:n40011019003 +5850 A0:n40011019003 +5852 A0:n40011019003 +5854 A0:n00000000000 +5865 A1:n40011019023 +5873 A0:n40011007006 A1:n40011020003 +A0:n40011007006 A1:n40011020005 +5879 A0:n40011020011 +5886 A0:n40011020005 +5899 A0:n40011021015 +5903 A0:n40011021015 +5912 A0:n40011021010;n40011021012 +5914 A0:n40011007006 A2:n40011022003 +5920 A0:n00000000000 +5932 A1:n40011023002 +5935 A0:n40011023003 +5940 A1:n40011023017 +5944 A0:n40011023017 +5948 A0:n40011023014 +5953 A0:n40011007006 A2:n40011024003 +5959 A0:n00000000000 +5969 A1:n40011025007 +5972 A0:n40011025007 +A0:n40011025007 A1:n40011025010 +5983 A0:n40011025011 A1:n40011025020 +5990 A0:n40011025011 A1:n40011025027 A2:n40011025028 +6004 A1:n40011027001 A2:n40011027002 +6011 A0:n40011027009 A1:n40011027012 +6022 A1:n40011027019 A0:n40011027020 +6030 A0:n40011027031 A1:n40011027019 A2:n40011027027 +A1:n40011027032 A0:n40011027031 +6034 A0:n40011028006;n40011028008 +6039 A0:n00000000000 +6041 A1:n00000000000 +6043 A0:n40011028009 A1:n40011028011 +6045 A0:n40011028006;n40011028008 A1:n40011029003 +6052 A0:n40011028006;n40011028008 +6063 A0:n40011028006;n40011028008 A1:n40011029020 A2:n40011029022 +6083 A0:n40012001007 +6095 A0:n40012001015 +6097 A0:n40012001015 A1:n40012001020;n40012001023 +A0:n40012001015 A1:n40012001021 +6101 A0:n40012001015 +6105 A0:n40012002003 +A0:n40012002003 A2:n40012002006 +6108 A0:n40012001007 +6112 A0:n40012002009 A1:n40012002014 +6114 A0:n00000000000 A1:n40012002012 +6116 A0:n40012002015 +6121 A0:n40012003001 A2:n40012003004 +6124 A0:n40012002003 +6126 A1:n40012003007 A0:n40012003009 +6129 A0:n40012003009 +6135 A0:n40012003009 +6146 A0:n40012003009;n40012003013 A1:n40012004010 +6148 A0:n00000000000 A1:n40012004014 +6150 A0:n40012004019 +6164 A0:n40012002003 +6178 A0:n40012005011 A1:n40012005016 +6183 A0:n40012001007 A2:n40012006003 +6193 A0:n40012002003 A1:n40012007004 +6197 A0:n40011027019 A1:n40012007006 +6203 A0:n40012002003 A1:n40012007015 +6216 A0:n40012001007 +6218 A0:n40012001007 +6227 A0:n40012010003 A1:n40012010004 +6230 A0:n40012002003 A1:n40012010009 +6232 A0:n40012002003 +6234 A0:n40012010015 +6237 A0:n00000000000 +6239 A0:n40012002003 A1:n40012010018 +6243 A0:n40012011001 A2:n40012011004 +6251 A0:n40012011010 A1:n40012011012 +6256 A0:n40012011017 +6263 A0:n40012011009 A1:n40012011024 +6266 A0:n40012011009 +6269 A0:n40012012004 +6273 A0:n40012012011 +6277 A0:n00000000000 +6279 A0:n40012001007 A2:n40012013004 +6282 A0:n40012013004 A1:n40012013008 +6287 A0:n40012013004 +6289 A1:n40012013008 +6295 A0:n40012014004 +6299 A0:n40012014004 A1:n40012014005 +6304 A0:n40012014004 A1:n40012014010 +6308 A0:n40012015003 +A0:n40012015003 +6312 A1:n40012015009 A0:n40012015010 +6316 A0:n40012015003 A1:n40012015013 +6320 A0:n40012015003 A2:n40012016003 +6326 A0:n40012015010 A1:n40012016007 +6328 A1:n40012017004 +6330 A1:n00000000000 +6335 A0:n40012017006 +6341 A0:n40011027019 A1:n40012018005 +6346 A0:n40012018013 A1:n40012018010 +6350 A0:n40011027019 A1:n40012018017 +6360 A0:n40012018003 A1:n40012018022 A2:n40012018024 +6362 A0:n40012018003 +6364 A0:n40012018003 +6366 A0:n40012019007 A1:n40012019012 +6375 A1:n40012020001 +6377 A0:n40012018003 A1:n40012020001 +6380 A1:n40012020006 +6382 A0:n40012018003 A1:n40012020006 +6385 A0:n40012018003 A1:n40012020016 +6395 A1:n40012021003 A0:n40012021005 +6397 A2:n40012022003 A1:n40012022004 +6399 A0:n00000000000 +6404 A0:n40012015003 A1:n40012022010 +6409 A0:n40012022013 +6411 A0:n40012022013 +6413 A0:n40012023005 +6418 A0:n40012023005 +6428 A0:n40012024003 +A0:n40012024003 +6432 A0:n40012024006 A1:n40012024010 +6444 A0:n40012015003 A1:n40012025004 +6448 A0:n40012015003 A2:n40012025007 +6452 A1:n40012025009 +6455 A1:n40012025009 +6461 A1:n40012025016;n40012025018 +6465 A1:n40012025016;n40012025018 +6472 A0:n40012026004 A1:n40012026006 +6475 A1:n40012026004 +6478 A1:n40012026015 +6487 A0:n40012027003 A1:n40012027008 +6495 A0:n40012027010 +6508 A0:n40012028006 A1:n40012028009 +6512 A0:n40012028015 +6521 A0:n40012029004 A1:n40012029005;n40012029015 +6523 A0:n40012029004 +6533 A0:n40012029004 A1:n40012029013 +6537 A0:n40012029004 A1:n40012029021 +6545 A0:n40012029004 A1:n40012029025 +6548 A0:n00000000000 +6557 A0:n00000000000 +6560 A0:n40012030012 +6563 A0:n40012015003 A2:n40012031004 +6569 A1:n40012031006;n40012031008 A2:n40012031011 +6578 A1:n40012031016 +6582 A0:n40012032002 A1:n40012032005 +6589 A1:n00000000000 A2:n40012032012 +6594 A0:n40012032013 +6601 A1:n00000000000 A2:n40012032024 +6611 A0:n40012032029 +6613 A0:n40012024003 A1:n40012033004 +6623 A0:n40012024003 A1:n40012033014 +6638 A1:n40012033026 +6642 A0:n40012034001 A1:n40012034006 +6644 A0:n40012034001 A1:n40012034005 +6655 A0:n40012034016 +6663 A0:n40012035003 A1:n40012035009 +6673 A0:n40012035013 A1:n40012035019 +6676 A0:n40012015003 A2:n40012036003 +6683 A1:n40012036008 A0:n40012036011 +6686 A0:n40012036011 A1:n40012036015 +6698 A1:n40012034001 +6704 A1:n40012034001 +6706 A2:n40012038003 A0:n40012038004 +6713 A0:n40012038004 +6715 A0:n40012038004 A1:n40012038015 +6719 A0:n40012038004 A1:n40012038014 +6722 A1:n40012015003 +A0:n40012039001 A2:n40012039005 +6730 A0:n40012039006 A1:n40012039010 +6734 A1:n40012039013 A2:n40012039016 +6775 A0:n40012041001 +6784 A0:n40012041001 A1:n40012041013 +6787 A0:n40012041001 +6799 A1:n40012042001 +6808 A0:n40012042001 A1:n40012042013 +6811 A0:n40012042001 +6817 A0:n40012042001 A1:n40012042023 +6822 A0:n40012038004 +6831 A0:n40012043005 +6835 A0:n40012043005 +6839 A0:n40012043005 A1:n40012043015 +6843 A0:n40012043005 +6845 A0:n40012043005 +6850 A0:n40012043005 +6852 A0:n40012043005 +6854 A0:n40012043005 +A0:n40012043005 A1:n40012044013;n40012044015;n40012044017 +A0:n40012044005 +6858 A1:n40012044005 +6862 A0:n40012043005 +6864 A0:n40012043005 A1:n40012045009 +6873 A0:n40012043005;n40012045009 +A0:n40012043005;n40012045009 +6887 A0:n00000000000 +6896 A0:n40012046002 A2:n40012046005 +6906 A0:n40012046008;n40012046011 +6908 A0:n40012046008;n40012046011 A1:n40012046017 +6910 A0:n40012046008;n40012046011 A2:n40012046016 +6912 A0:n40012047003 A2:n40012047004 +6915 A0:n40012015003 +6924 A0:n40012047007;n40012047011 +A0:n40012047007;n40012047011 A1:n40012047017 +6927 A0:n40012047007;n40012047011 A2:n40012047016 +6930 A1:n40012015003 +A0:n40012048001 A2:n40012048006 +6933 A0:n40012047003 A2:n40012048007 +6947 A0:n40012015003 A1:n40012049004 +6955 A0:n40012015003 +A0:n40012048006 +6967 A0:n40012050001 A1:n40012050006 +6990 A0:n40013001007 +6993 A0:n40013001007 +6998 A1:n40013002005 +7007 A0:n40013001007 +A0:n40013002008 +7016 A0:n40013002016 +7018 A0:n40013001007 A2:n40013003003 A1:n40013003004 +7023 A0:n40013001007 +A0:n40013002016 +A0:n40013003011 +7027 A0:n00000000000 +7029 A0:n40013003011 +7033 A0:n40013004005 +7037 A0:n40013004006 +7042 A0:n40013004015 +7045 A0:n40013004015 A1:n40013004017 +7049 A0:n40013005001 +7055 A0:n40013005001 A1:n40013005010 +7060 A0:n40013005001 +7064 A0:n40013005001 A1:n40013005019 +7069 A0:n40013006001 +A1:n40013005001 +7075 A0:n40013005001 A1:n40013006010 +7077 A1:n40013005001 +7080 A0:n40013007001 +7085 A0:n40013007010 +7089 A0:n40013007010 A1:n40013007013 +7093 A0:n40013008001 +7100 A0:n40013008001 A1:n40013008011 +7112 A0:n00000000000 A1:n40013009003 +7114 A0:n40013009002 +7116 A0:n40013010004 +7119 A0:n40013010004 A2:n40013010006 +7125 A0:n40013001007 A2:n40013010012 +7129 A1:n40013011001 +A0:n40013011001 +7133 A2:n40013011006 A1:n40013011008 +A0:n00000000000 A1:n40013011010 +7144 A1:n40013011008 A2:n40013011015 +7147 A0:n40013012001 +A1:n00000000000 A2:n40013012005 +7151 A1:n40013012003 +7155 A0:n40013012008 +7158 A0:n40013012011 A1:n40013012013 +A1:n40013012014 +7167 A0:n40013001007 A2:n40013013005 +7169 A0:n40013002016 +7171 A0:n40013002016 +7173 A0:n40013002016 +7175 A0:n40013002016 +7177 A0:n40013002016 +7179 A2:n40013014003 A1:n40013014005 +7185 A0:n40013014005 +7187 A0:n00000000000 +7191 A0:n00000000000 +7193 A0:n00000000000 +A0:n00000000000 +7198 A0:n00000000000 +7200 A0:n40013015004 +7210 A0:n40013015006 +7215 A0:n40013015006 A1:n40013015015 +7218 A0:n40013015006 +7224 A0:n40013015006 +7228 A0:n40013015006 +7230 A0:n40013015006 +7232 A0:n40011027019 A1:n40013015035 +7240 A0:n40013016005 +7246 A0:n40013016010 +7249 A0:n40013001007 A2:n40013017004 +7256 A0:n40013017007;n40013017009 A1:n40013017011 +A0:n40013017007;n40013017009 A1:n40013017013 +7259 A0:n40013010004 A1:n40013017012 +7262 A0:n40013017007;n40013017009 +7264 A0:n40013017007;n40013017009 A1:n40013017020 +7266 A0:n40013010004 A1:n40013017019 +7269 A0:n40013017007;n40013017009 +7272 A0:n40013018001 A1:n40013018005 +7276 A0:n00000000000 +7278 A0:n00000000000 A1:n40013019004 +7285 A0:n40013019001 +A0:n40013019012 +7290 A0:n40013019012 A1:n40013019016 +7292 A1:n00000000000 +7303 A1:n00000000000 +7309 A1:n00000000000 +7315 A0:n00000000000 A1:n40013020011 +7320 A0:n00000000000 A1:n40013020018 +7324 A0:n40013020006 A1:n40013021004 +7332 A0:n40013021012;n40013021014 +7340 A1:n40013020006 +7346 A1:n00000000000 +7352 A0:n00000000000 A1:n40013022011 +7363 A0:n40013022015;n40013022020 A1:n40013022025 +7375 A1:n00000000000 +7381 A0:n00000000000 A1:n40013023012 +7383 A0:n00000000000 +7386 A0:n40013023016 +7389 A0:n40013023021 A1:n40013023023 +7400 A0:n40013001007 A1:n40013024002 A2:n40013024004 +7402 A0:n40013001007 +A1:n40013024008 +7409 A0:n40013024011 A1:n40013024014 +7419 A0:n40013025006 +7422 A0:n40013025010 +7427 A0:n40013025010 A1:n40013025013 +7434 A0:n40013025010 +7437 A0:n40013026005 +7442 A0:n40013026005 A1:n40013026007 +7444 A0:n40013026013 +7449 A0:n40013027004 +7454 A0:n40013027004 A2:n40013027008 +7460 A0:n40013027009 A1:n40013027012 +7467 A0:n40013027017 A1:n40013027021 +7471 A0:n40013028001 A2:n40013028004 +7476 A0:n40013028006 A1:n40013028007 +7481 A0:n40013028011 A2:n40013028012 +7483 A0:n40013027006 +A0:n40013028011 +A0:n40013028011 A1:n40013028018 +7489 A0:n40013029001 +7493 A0:n40013028011 A1:n40013029009 +7496 A0:n40013028011 A1:n40013029014 +7501 A0:n40013028011 A1:n40013030002 +A1:n40013030003 +7512 A0:n40013027006 A2:n40013030014 +7515 A0:n40013030014 A1:n40013030018 +7520 A0:n40013030014 A1:n40013030021 +7526 A0:n40013030014 A1:n40013030027 +7531 A0:n40013030014 A1:n40013030030 +7538 A0:n40013001007 A1:n40013031002 A2:n40013031004 +7540 A0:n40013001007 +7550 A0:n40013031016 A1:n40013031014 +7552 A0:n40013031016 +7566 A1:n40013031012 +7575 A0:n40013032021 +7581 A0:n40013032021 +7588 A0:n40013001007 A1:n40013033002 A2:n40013033004 +7598 A0:n40013033014 A1:n40013033012 +7600 A0:n40013033014 +7607 A1:n40013033023 +7611 A1:n40013034001 A0:n40013034005 A2:n40013034009 +7622 A0:n40013034005 A1:n40013034013 A2:n40013034015 +7625 A1:n40013035004 +7627 A1:n00000000000 +7631 A0:n40013035007 +A0:n00000000000 A1:n40013035013 +7638 A0:n00000000000 A1:n40013035016 +A1:n00000000000 +7643 A0:n40013034005 A1:n40013036004 +7646 A0:n40013034005 +7651 A0:n40013036013 +7656 A0:n40013036013 +A0:n40013034005 A2:n40013036017 A1:n40013036019 +7667 A1:n40013034005 +A0:n40013037001 +7670 A0:n00000000000 A1:n40013037009 +7707 A0:n40013039003 A1:n40013039006 +7725 A1:n40013040005 +7730 A1:n40013040005 +7732 A0:n00000000000 +7738 A0:n40013041003 A1:n40013041007 +7747 A0:n40013041007 A1:n40013041017;n40013041020 +7757 A0:n00000000000 A1:n40013041022 +7761 A0:n40013041007 A1:n40013042003 +7780 A0:n40013043003 +7791 A0:n00000000000 A1:n40013043016 +7793 A0:n40013043015 +7801 A1:n40013044007 +7806 A0:n40013044014 A1:n40013044012 +7808 A0:n40013044014 A1:n40013044012 +7814 A0:n40013044014 +7816 A0:n40013044014 A1:n40013044025 +7818 A0:n40013044014 A1:n40013044024 +7820 A0:n40013044014 A1:n40013044029 +7832 A0:n40013045008 A1:n40013045011 +7836 A0:n40013045008 A1:n40013046005 +7840 A0:n40013045008 +A0:n40013045008 A1:n40013046010 +7844 A0:n40013045008 A1:n40013046009 +7846 A0:n40013045008 A1:n40013046013 +7856 A1:n40013047008 +7864 A0:n40013047008 +7867 A1:n40013047008 +A0:n00000000000 A1:n40013048001 +7873 A0:n00000000000 +A0:n00000000000 A1:n40013048012 +7883 A0:n00000000000 A1:n40013048017 +7885 A0:n00000000000 +7891 A0:n40013049010 +7895 A0:n40013049010 A1:n40013049014 +7903 A0:n40013049010 A1:n40013050003 +7919 A0:n40013036013 A1:n40013051002 +7922 A0:n40013036013 A2:n40013051005 +7927 A0:n40013052001 A2:n40013052004 +7933 A1:n40013052008 +7943 A0:n40013052018 A1:n40013052024;n40013052026 +7952 A0:n00000000000 +7954 A0:n40013053006 A1:n40013053008 +7960 A0:n40013053006 +7963 A0:n40013053006 +7968 A0:n40013053006 A1:n40013054008 +7975 A1:n40013054015 +7978 A0:n40013054005 +8026 A1:n40013054005 +8032 A0:n40013057007 A2:n40013057009 +8050 A0:n40013057007 A1:n40013058005 +8062 A0:n40014001006 A1:n40014001010 +8070 A0:n40014001006 A2:n40014002004 +8080 A1:n40014002011 +8089 A0:n40014002020 +8095 A0:n40014003003 A1:n40014003006 +8098 A0:n40014003003 A1:n40014003006 +8102 A0:n40014003003 A1:n40014003006 +8112 A0:n40014004004 A2:n40014004005 +8117 A0:n40014004009 +8119 A0:n00000000000 A1:n40014004010 +8122 A0:n40014003003 A1:n40014005004 +8124 A0:n40014003003 A1:n40014005003 +A1:n40014003003 A1:n40014005007 +8132 A0:n40014005007 A1:n40014005011 +8137 A0:n40014006001 +A0:n40014006008 +8147 A0:n40014006008 A1:n40014006017 +8153 A0:n40014006017 A1:n40014007006 +8155 A0:n40014006017 A2:n40014007005 A1:n40014007009 +8158 A0:n40014006008 A1:n40014007007 +8161 A1:n40014006008 +8166 A0:n40014008001 +A0:n40014006017 A2:n40014008009 A1:n40014008015 +8178 A1:n40014009004 +8186 A0:n00000000000 +A0:n40014009004 A1:n40014009012 +A1:n40014008015 +8190 A0:n40014009004 +A0:n40014009004 A1:n40014010004 +8197 A1:n40014011004 +8204 A1:n40014011004 A2:n40014011011 +8208 A0:n40014011011 A1:n40014011004 A2:n40014011015 +8213 A0:n40014012004 +8217 A0:n40014012004 A1:n40014012008 +8221 A0:n40014012004 A1:n40014012011 +8224 A0:n40014012004 +A0:n40014012004 A1:n00000000000 A2:n40014012016 +8229 A0:n40014013004 +8232 A0:n40014013004 +8242 A0:n40014013017 +8245 A0:n40014013017 A1:n40014013019 +8252 A0:n40014013004 +A0:n40014013004 A1:n40014014005 +8257 A1:n40014013004 +8261 A0:n40014013004 A1:n40014014013 +8267 A0:n40014015001 +A0:n40014015007 +8272 A0:n40014015007 +8281 A0:n40014015015 +8283 A0:n40014013004 A1:n40014015021 +8287 A0:n40014015021 +8291 A0:n40014015021 A2:n40014015027 A1:n40014015029 +8297 A0:n40014016003 A2:n40014016005 +8301 A0:n40014015021 A1:n40014016007 +A0:n40014015021 +A2:n40014016011 A0:n40014016012 A1:n40014016013 +8306 A0:n40014015021 +8309 A0:n40014017001 A2:n40014017004 +8312 A0:n40014015007 +8323 A0:n40014018001 +A0:n40014015007 A2:n40014018005 A1:n40014018007 +8329 A0:n40014016003 A1:n40014019005 +8332 A0:n40014019004 +8336 A0:n40014016003 A1:n40014019012;n40014019016 +8344 A0:n40014016003 +8348 A0:n40014016003 +8350 A0:n40014016003 +A0:n40014016003 A2:n40014019026 A1:n40014019028 +8362 A0:n40014020003 +8365 A1:n40014020003 +8367 A0:n40014019031 A1:n40014020009 +8369 A0:n00000000000 +8377 A0:n00000000000 +8388 A0:n40014016003 A1:n40014022006;n40014022011 +8391 A0:n40014022005 +8396 A0:n40014022005 A1:n40014022012 +8403 A0:n40014016003 A1:n40014022020 +8407 A0:n40014016003 A1:n40014023004 +8410 A0:n40014016003 +8416 A0:n40014016003 +8419 A0:n40014023012 +8432 A0:n40014024003 +A1:n40014024003 +8447 A0:n40014016003 +8450 A0:n40014016003 +8457 A0:n40014026003 A1:n40014026009 +8462 A0:n40014026005 +A1:n40014026003 +A0:n40014026003 +8472 A0:n40014026003 +8475 A0:n40014027005 A2:n40014027006 +8479 A0:n40014027005 +A0:n40014026003 +8484 A0:n40014026003 +8486 A1:n40014028005 A2:n40014028003 +8490 A0:n40014028005 +8495 A0:n40014028007 A1:n40014028013 +8497 A0:n40014028012 +8505 A0:n40014029001 +A0:n40014028005 +8508 A0:n40014029010 +8513 A0:n40014029010 +8518 A0:n40014029010 +8523 A0:n40014029010 A1:n40014030004 +8526 A1:n40014029010 +8528 A0:n40014029010 A1:n40014030008 +A1:n40014029010 +A0:n40014029010 +A0:n40014029010 +8533 A0:n40014030011 A1:n40014030013 +8539 A0:n40014031004 A1:n40014031007 +8542 A0:n40014031004 A1:n40014031009 +8545 A0:n40014031004 A2:n40014031012 +8550 A0:n40014031013 +8552 A0:n40014032003 +8557 A0:n40014032009 +8565 A0:n40014033001 A1:n40014033007 +8567 A0:n40014033001 +8573 A0:n40014031004;n40014033001 +A0:n40014031004;n40014033001 +8581 A0:n40014035005 A1:n40014035003 +8588 A0:n40014035005 +8595 A0:n40014035005 A2:n40014035017 A1:n40014035021 +8600 A0:n00000000000 +8602 A0:n40014035021 A1:n40014036003 +8606 A0:n40014035021 +8614 A0:n40014036013 +A1:n40014036014 +8617 A0:n40015001007;n40015001009 +8625 A0:n40015001007;n40015001009 +8631 A0:n40015002004 A1:n40015002008 +8638 A0:n40015002004 A1:n40015002015 +8643 A0:n40015002004 A1:n40015002017 +8646 A1:n40015001004 +A0:n40015003001 A2:n40015003005 +8653 A0:n40015003009 A1:n40015003012 +8665 A0:n40015004003 +A0:n00000000000 A1:n40015004007;n40015004010 +8674 A0:n00000000000 A1:n40015004014;n40015004016 +8679 A0:n40015004013 +8682 A0:n40015005001 +8685 A0:n40015005004 A2:n40015005008;n40015005011 +8696 A1:n40015005008;n40015005011 A1:n40015005013 +8699 A0:n40015005006 A1:n40015006005;n40015006009 +8708 A0:n40015001007;n40015001009 A1:n40015006014 +8719 A0:n40015007006 +8723 A0:n40015007006 +8730 A0:n40015008002 A1:n40015008006 +8736 A0:n40015008010 +8741 A0:n40015008002 A1:n40015009004 +8743 A0:n40015008002 A1:n40015009007 +8748 A0:n40015001004 A1:n40015010004 +8751 A0:n40015001004 A2:n40015010006 +8753 A0:n40015010004 +8755 A0:n40015010004 +8758 A0:n00000000000 +8762 A0:n40015011003 A1:n40015011009 +8767 A0:n00000000000 +8772 A0:n40015011016 A1:n40015011019 +8776 A0:n40015012004 +8779 A0:n40015012004 A2:n40015012006 +8781 A0:n40015001004 +8785 A0:n40015012010 A1:n40015012013 +8788 A1:n40015012010 +8791 A1:n40015001004 +A0:n40015013001 +8797 A1:n40015013007 A0:n40015013011 +8803 A1:n40015013006 +A0:n40015012004 A1:n40015014002 +8814 A0:n40015014007 A1:n40015014009 +8818 A0:n40015014012 +8820 A1:n40015015004 +8823 A0:n40015015004 A2:n40015015006 +8825 A0:n40015001004 A2:n40015015008 A1:n40015015010 +8831 A0:n40015016001 +8838 A0:n40015012004 +8842 A0:n00000000000 +8849 A0:n40015017006 +8853 A1:n40015017006 +8856 A0:n00000000000 +8863 A0:n40015018003 +8865 A0:n40015018011 A1:n40015018014 +8872 A0:n40015019006;n40015019008;n40015019009;n40015019010;n40015019011;n40015019012;n40015019013 +8884 A0:n00000000000 A1:n40015020006 +8891 A0:n00000000000 +8893 A0:n40015020011 A1:n40015020015 +8897 A0:n40015021005 +8901 A0:n40015021005 +8916 A0:n40015022003 +A0:n40015022003 +A0:n40015022003 +A0:n40015022014 A1:n40015022013 +8928 A0:n40015022018 +8932 A0:n40015023001 A2:n40015023005 A1:n40015023006 +8936 A0:n40015023010 +8940 A0:n40015023010 A1:n40015023013 +8942 A0:n40015023010 +A0:n40015021005 A1:n40015023016 +8946 A0:n40015022003 +8951 A1:n40015021005 +A0:n40015024001 +8954 A1:n40015021005 +8961 A0:n40015024011 +8966 A0:n40015022003 +A0:n40015025001 A1:n40015025005 +8969 A0:n40015022003 +8971 A0:n40015025007 A1:n40015025009 +8975 A1:n40015021005 +A0:n40015026001 +8980 A0:n00000000000 A1:n40015026010 +8986 A0:n00000000000 A1:n40015026010 A2:n40015026016 +8991 A0:n40015027001 +8998 A0:n40015027009 +9003 A0:n40015027013 +9011 A1:n40015028004 +9014 A0:n40015028004 A2:n40015028006 +9022 A1:n00000000000 A2:n40015028014 +9025 A0:n40015028008 +9027 A1:n40015028020 +9036 A0:n40015029005 +9040 A0:n40015029005 +9047 A0:n40015029005 +9051 A0:n40015029005 +9054 A0:n40015030004 +9058 A0:n40015030004 A1:n40015030009;n40015030010;n40015030011;n40015030012;n40015030014 +9069 A0:n40015030004 A1:n40015030018 +9076 A0:n40015029005 A1:n40015030025 +9081 A0:n40015031003 +A0:n40015031003 A1:n40015031007;n40015031009;n40015031012;n40015031015 +9084 A0:n40015031006 +9089 A0:n40015031011 +9092 A0:n40015031014 +9094 A0:n40015031003 A1:n40015031019 +9101 A0:n40015032003 A1:n40015032006 +9105 A0:n40015032003 +A0:n40015032003 +9114 A0:n40015032012 +9118 A0:n40015032012 A1:n40015032023 +9120 A0:n40015032012 A1:n40015032022 +9122 A0:n40015032003 A1:n40015032026 +9126 A0:n40015032003 A1:n40015032025 +9129 A1:n40015032012 +9134 A2:n40015033003 A0:n40015033005 +9145 A0:n40015033005;n40015032003 A1:n40015033014 +9149 A2:n40015034003 A0:n40015034005 +9155 A0:n40015033005 A1:n40015034007 +9158 A0:n40015034009 +9164 A0:n40015034005 A2:n40015035004 A1:n40015035005 +9167 A0:n40015035004 +9171 A0:n40015034005 A1:n40015036004;n40015036007 +9179 A0:n40015034005 +A0:n40015034005 A1:n40015036004;n40015036007 +9182 A0:n40015034005 A1:n40015036004;n40015036007 A2:n40015036014 +9191 A0:n40015037003 +9194 A1:n40015037003 +9197 A0:n00000000000 +9203 A0:n40015036017 A1:n40015037008 +9206 A0:n00000000000 +9215 A0:n40015034005 A1:n40015039004 +9218 A0:n40015034005 +9223 A0:n40015034005 +9229 A0:n40016001004;n40016001006 +9234 A0:n40016001004;n40016001006 +A0:n40016001004;n40016001006 A1:n40016001014 +9241 A0:n40016001009 A1:n40016001010 A2:n40016001015 +9245 A1:n40015034005 +A0:n40016002001 A2:n40016002005 +9249 A0:n40016002006 +A0:n40016001004;n40016001006 +9253 A0:n40016002013 +9261 A0:n40016003009 +A0:n40016003009 +9270 A0:n40016001004;n40016001006 A1:n40016003012 +A0:n40016001004;n40016001006 A1:n40016003016 +9278 A0:n40016001004;n40016001006 A1:n40016003019 +9284 A0:n40016004001 A1:n40016004005 +9288 A1:n40016004008 A2:n40016004011 +9296 A0:n40015034005 A1:n40016004019 +9298 A0:n40015034005 +9302 A0:n40016005004 +9306 A0:n40016005004 A1:n40016005010 +9308 A0:n40016005004 A1:n40016005009 +9312 A0:n40016006003 A2:n40016006005 +9314 A0:n40016005004 +9316 A0:n40016005004 +9326 A0:n40016007001 +9329 A0:n40016005004 +9333 A0:n40016005004 A1:n40016007008 +9335 A0:n40016008004 +9338 A0:n40016008004 +9340 A0:n40016008010 +9347 A0:n40016008010 A1:n40016008012 +9349 A0:n40016008010 +9351 A0:n40016008010 A1:n40016009007 +9360 A0:n40016008010 A1:n40016009012 +9370 A0:n40016008010 A1:n40016010009 +9373 A0:n40016008010 +9378 A0:n40016008004 A2:n40016011009 +9381 A0:n40016008010 +9390 A0:n40016005004 +9393 A0:n40016008004 A1:n40016012006 +A0:n40016005004 +9411 A0:n40016013004 +9418 A0:n40016013004 A1:n40016013013 +9422 A0:n40016013004 +A0:n40016013019 A1:n40016013016 +9434 A0:n40016014001 +9450 A0:n40016013004 A2:n40016015002 +9457 A0:n40016015003 A1:n40016015005 +9459 A1:n40016016003 +9462 A0:n40016016003 +9472 A0:n40016016013 +9474 A1:n40016017004 +9477 A0:n40016017004 A2:n40016017006 +9488 A0:n40016017012;n40016017014 A1:n00000000000 A2:n40016017017 +9501 A0:n40016018001 A2:n40016018003 +9511 A0:n40016017004 A1:n40016018017 +9519 A0:n40016018019 A1:n40016018023 +9521 A0:n40016017004 A2:n40016019002 A1:n40016019004 +9532 A0:n40016017009 A1:n40016019010 +9537 A1:n40016019012 +9544 A0:n40016017009 A1:n40016019022 +9549 A1:n40016019024 +9554 A0:n40016017004 A2:n40016020004 +9559 A0:n40016020004 A2:n40016020006 +9567 A0:n40016021004 A1:n40016021006 +9570 A0:n40016021004 A2:n40016021008 +9575 A0:n40016021015;n40016021018;n40016021027;n40016021032 +9579 A0:n40016021012 +9582 A0:n40016021004 A1:n40016021017 +9591 A1:n40016021004 +9596 A1:n40016021004 +9598 A0:n40016022005 A1:n40016022003 +9602 A0:n40016022005 A1:n40016022007 +A0:n40016022005 A1:n40016022008 +9605 A0:n40016022005 +9616 A1:n40016021004 +A0:n40016023001 A2:n40016023006 +9620 A0:n40016023010 +9629 A0:n40016023010 A1:n40016023017 +9640 A0:n40016024003 A2:n40016024006 +9646 A0:n40016024009 A1:n40016024013 +9649 A0:n40016024009 +A0:n40016024009 A1:n40016024015 +9653 A0:n40016024009 A1:n40016024019 +9658 A0:n40016024009 A1:n40016024023 +9663 A0:n40016025001 A1:n40016025008 +9667 A0:n40016025001 A1:n40016025006 +A0:n40016025004 A1:n40016025010 +9673 A0:n40016025011 A1:n40016025016 +9679 A0:n40016025014 A1:n40016025021 +9683 A1:n40016026001 A1:n40016026004 +9689 A0:n40016026004 A1:n40016026007 +9694 A1:n40016026004 A1:n40016026012 +9697 A1:n40016026016 A0:n40016026018 +9704 A0:n40016027004 A1:n40016027007 +9709 A0:n40016027004 +9722 A0:n40016027004 A1:n00000000000 A2:n40016027021 +9729 A0:n40016024003 A2:n40016028003 +9732 A0:n40016028006 +9736 A0:n00000000000 +9740 A0:n40016028010 A1:n40016028014 +9744 A0:n40016028006 A1:n40016028022 +9749 A0:n40016028019 +9758 A0:n40017001007 A1:n40017001009;n40017001011;n40017001013 +9771 A0:n40017001007 A1:n40017001019 +9779 A1:n40017001007 +9783 A0:n40017002008 +9801 A2:n40017003004 A1:n40017003005;n40017003007 +9806 A0:n40017003005;n40017003007 +9810 A1:n40017004004 +9813 A0:n40017004004 A2:n40017004007 +9823 A0:n40017004008 +A0:n40017004004 A1:n40017004019 +9838 A0:n40017005002 +9842 A0:n40017005005 A1:n40017005008 +9850 A0:n40017005011 +9860 A0:n40017005011 +A0:n40017004004;n40017001011;n40017001013 A1:n40017005027 +9864 A0:n40017006004 +9867 A0:n40017006004 +9872 A1:n40017006004 +9875 A0:n40017007004 +9879 A0:n40017007004 A1:n40017007007 +9881 A0:n40017007004 +A1:n40017006004 +9885 A0:n40017006004 +9887 A0:n40017006004 A1:n40017008004 +9892 A0:n40017006004 A1:n40017008006 +9899 A0:n40017009003 +9904 A2:n40017009008 A0:n40017009010 +9908 A0:n40017009010 +9910 A0:n40017006004 A2:n40017009012 A1:n40017009015 +9921 A1:n40017009019 +9923 A1:n40017010003 A0:n40017010005 +9927 A0:n40017010005 +9932 A0:n40017010010 +9934 A0:n40017010015 +9936 A0:n40017010013 +9940 A1:n40017009010 +A0:n40017011001 +9944 A0:n40017011005 +9946 A0:n40017011005 A1:n40017011010 +9949 A0:n40017009010 A2:n40017012003 +9954 A0:n40017012005 +9957 A0:n00000000000 A1:n40017012011 +9960 A0:n00000000000 A1:n40017012017 +9964 A0:n00000000000 A1:n40017012016 +9971 A0:n40017012021 A1:n40017012025 +A0:n40017012021 +9976 A0:n40017013004 +9984 A0:n40017009010 A2:n40017013011 +9987 A0:n40017013004;n40017009010 +9991 A0:n40017014008 +9994 A0:n40017014008 A1:n40017014010 +9997 A0:n40017014008 +9999 A0:n40017015003 A1:n40017015007 +10004 A0:n40017015007 +10007 A0:n40017015007 +10010 A0:n40017015007 +10020 A0:n40017014008 A1:n40017016003 A2:n40017016005 +10027 A1:n40017016005 A1:n40017016011 +10029 A0:n40017016005 A1:n40017016010 +10031 A1:n40017017004 +10034 A0:n40017017004 +10039 A1:n40017017007 +10047 A0:n40017017004 A1:n40017017019 +10049 A0:n40017017007 A2:n40017017021 A1:n40017017022 +10054 A2:n40017018003 A1:n00000000000 A0:n40017018005 +10059 A0:n40017018011 +10065 A1:n40017018015 +10075 A0:n40017019004 +10080 A0:n40017019004 +10085 A0:n40017019012 A1:n40017019015 +A0:n40017019004 A1:n40017019016 +10090 A0:n40017020001 A2:n40017020004 +10098 A0:n40017019006 A2:n40017020012 +10101 A0:n40017019004 A1:n40017020015 +10106 A0:n40017019004 A2:n40017020021 +10110 A0:n40017020021 +10114 A0:n40017020021 +10117 A0:n40017020029 AA2:n40017020031 +10120 A1:n40017022003 +10125 A2:n40017022008 A0:n40017022010 +10129 A0:n40017022013 A1:n40017022016 +10134 A1:n40017022013 +10139 A0:n40017022019 A1:n40017023003 +10145 A1:n40017022013 +10147 A1:n40017019004 +10150 A0:n40017024003 +10154 A0:n40017024010 +10158 A0:n00000000000 A1:n40017024009 +10162 A0:n40017024010 +10167 A0:n40017024016 A1:n40017024020 +10169 A0:n40017024012 +10172 A0:n40017024012 +10176 A1:n40017025009 A0:n40017025011 +10180 A0:n40017025011 +10183 A0:n40017025013 AA2:n40017025014 +10191 A0:n40017025018 A1:n40017025024;n40017025026 +10204 A0:n40017024012 +10208 A2:n40017026007 A0:n40017026009 +10220 A0:n40017026009;n40017024012 A1:n40017027005 +10222 A1:n40017024012 +10225 A0:n40017024012 A1:n40017027010 +10229 A0:n40017027015 +10232 A0:n40017024012 A1:n40017027015 +10234 A0:n40017024012 A1:n40017027020 +10238 A0:n40017024012 A1:n40017027023 +10241 A0:n40017024012 A1:n40017027024 +A0:n40017024012 A1:n40017027024 A2:n40017027027 +10252 A0:n40018001007 +10257 A0:n40018001007 +10268 A0:n40018001009 A1:n40018002003 +10270 A0:n40018001009 A1:n40018002005 +10276 A0:n40018001009 +10278 A0:n40018001009 A2:n40018003005 +10282 A1:n40018001007 +10290 A0:n40018001007 +10298 A0:n40018004001 A1:n40018004004 +10316 A0:n40018005002 A1:n40018005006 +10325 A0:n40018005004 A1:n40018005012 +10329 A0:n40018006001 A1:n40018006005 +10335 A0:n40018006007 +10338 A0:n40018006016;n40018006024 +10341 A1:n40018006017 +10349 A1:n40018006004 +10363 A0:n40018007011 +10374 A0:n40018007019 +10384 A0:n40018008004;n40018008008 A1:n40018008011 +10386 A0:n40018001007 A1:n40018008013 +10389 A0:n40018001007 +10395 A0:n00000000000 +10408 A0:n40018001007 A1:n40018008030;n40018008033 +A1:n40018001007 +10420 A0:n40018009004 A1:n40018009007 +10422 A0:n40018001007 A1:n40018009009 +10425 A0:n40018001007 +10435 A0:n00000000000 +10439 A0:n40018001007 A1:n40018009024 +A1:n40018001007 +10446 A0:n40018001007 +10448 A0:n40018001007 A1:n40018010004 +10454 A0:n40018001009 A2:n40018010010 +10464 A0:n40018010013 A1:n40018010021 +10475 A0:n40018012001 AA2:n40018012002 +10483 A1:n40018012012 +10488 A0:n40018012007 A1:n40018012018 +10496 A1:n40018012007 +A0:n40018012007 A1:n40018012027 +10499 A1:n40018012012 +10502 A0:n40018013004 +A0:n40018012007 A1:n40018013005 +10506 A0:n40018001009 A2:n40018013008 +10509 A0:n40018012007 +10520 A1:n40018013017 +10533 A0:n40018014014 +10540 A0:n40018015005 +10544 A0:n40018001007 +A0:n40018001007 A1:n40018015011 +10554 A0:n40018015005 A1:n40018015018 +A0:n40018001007 A1:n40018015020 +10562 A0:n40018015020 +A0:n40018001007 A1:n40018016009;n40018016011 +10577 A1:n40018016021 +10582 A0:n40018015020 A1:n40018017004 +10584 A0:n40018001007 A2:n40018017007 +10592 A0:n40018015020 A1:n40018017012 +10602 A0:n40018001009 A2:n40018018003 +10606 A0:n40018001007 A1:n40018018004 +10611 A1:n40018018006 +10617 A0:n40018001007 A1:n40018018015 +10622 A1:n40018018017 +10627 A0:n40018001009 A2:n40018019004 +10634 A0:n40018019007 +10643 A0:n40018019007 A1:n40018019017 +A0:n40018019016 +10656 A1:n40018020004;n40018020006 +10670 A0:n40018021004 +10673 A0:n40018021004 A2:n40018021006 +10677 A0:n40018021013 +10684 A0:n40018021004 A1:n00000000000 A2:n40018021017 +10688 A2:n40018022002 A0:n40018022004 +10693 A0:n40018022004 A2:n40018022007 +10703 A1:n40018023005 +10711 A0:n40018023010 A1:n40018023012 +A0:n40018023009 A1:n40018023013 +10719 A0:n40018024003 A1:n40018024004 +10721 A0:n40018023008 +A2:n40018024006 A1:n40018024008 +10730 A0:n40018025004 A1:n40018025005 +10732 A0:n40018024008 +A0:n40018025009 A1:n40018025010;n40018025022 +10736 A1:n40018025007;n40018025013;n40018025016;n40018025020 +10747 A0:n40018024008 A1:n40018025019 +10749 A1:n00000000000 +10751 A0:n40018026004 +10754 A0:n40018026004 A1:n40018026006 +10756 A0:n40018026004 +A0:n40018025009 +10762 A0:n40018026004 A1:n40018026012 A2:n40018026014 +10765 A1:n40018027004 +10771 A0:n40018027004 A1:n40018027009 +10776 A0:n40018027004 A1:n40018027012 A2:n40018027014 +10779 A0:n40018028004 +10783 A0:n40018028004 A1:n40018028007 +10789 A0:n40018028011 A2:n40018028013 A1:n40018028015 +10794 A0:n40018028004 A1:n40018028018 +10796 A0:n40018028004 +A0:n40018028004 +A0:n40018028007 +10801 A0:n40018028007 A1:n40018028023 +10803 A0:n40018029004 +10807 A0:n40018029004 A1:n40018029007 +10809 A0:n40018029004 +A0:n40018028004 +10814 A0:n40018029004 A1:n00000000000 A2:n40018029014 +10819 A0:n40018030001 +10821 A0:n40018028004 +A0:n40018028004 A1:n40018030008 +10827 A0:n40018029004 A1:n40018030014 +10829 A1:n40018028015 +10834 A0:n40018031004 A1:n40018031007 +10836 A0:n00000000000 +A1:n40018031004 +10840 A0:n40018031004 +A0:n40018031004 A2:n40018031014 A1:n40018031018 +10847 A0:n00000000000 +10849 A0:n40018032005 A1:n40018032003 +10854 A0:n40018032005 A2:n40018032008 +10862 A0:n40018032005 A1:n40018032013 A2:n40018032016 +10865 A0:n40018032009 A1:n40018032019 +10868 A0:n40018033005 +10871 A0:n40018033004 A1:n40018033007 +10878 A0:n40018033010 A1:n40018033011 +10880 A1:n40018034004 +10884 A0:n40018034004 A1:n40018034007 A2:n40018034009 +10890 A0:n40018028004 A1:n40018034015 +10893 A1:n40018024010 A2:n40018034016 +10902 A0:n40018035004 A1:n00000000000 A2:n40018035009 +10906 A0:n40018035013 A1:n00000000000 A2:n40018035015 +10916 A0:n00000000000 +10918 A0:n40019001006 A1:n40019001008 +10924 A0:n40019001006 +10929 A0:n40019001006 +10939 A1:n40019002003 A0:n40019002004 +10944 A0:n40019001006 A1:n40019002008 +10948 A0:n40019003004 +10951 A0:n40019003004 A1:n40019003006 +10954 A0:n40019003004 +10956 A0:n40019003011 +A0:n00000000000 A1:n40019003013 +10966 A1:n40019001006 +A0:n40019004001 +10969 A0:n40019003004 +10972 A0:n40018035004 +10978 A0:n40019004009 A1:n40019004016 +10981 A0:n40019004009 +10984 A0:n40019005006 A1:n40019005008;n40019005011 +10992 A1:n40019005006 A2:n40019005015 +11014 A1:n40019006008 A0:n40019006011 +11017 A1:n40019006012 A0:n40019006013 +A0:n40019003004 A2:n40019007002 +11023 A0:n40019007005 A1:n40019007007;n40019007011 +A0:n00000000000 A1:n40019007008 +11028 A0:n00000000000 A1:n40019003013 +A0:n40019001006 A2:n40019008002 +11037 A0:n40019008004 A2:n40019008010 A1:n40019008011 +11039 A0:n40019003004 A1:n40019008013 +11047 A0:n00000000000 +11050 A0:n40019001006 A2:n40019009003 +11055 A0:n40019009005 A1:n40019009009 +11063 A0:n40019009005 A1:n40019009016 +11065 A0:n40019009007;n40019009015 +A2:n40019010002 A0:n40019010004 +11081 A0:n40019010017 +A0:n40019010011;n40019010014 +11085 A0:n40019011001 A2:n40019011004 +11089 A0:n40019011006 A1:n40019011009 +11095 A1:n40019011009 A2:n40019011012 +11097 A0:n40019012003 +11103 A1:n40019012004 +11106 A0:n40019012012 +11109 A1:n40019012013 +11114 A0:n40019012020 +11117 A0:n40019012021 A1:n40019012023 +11125 A0:n00000000000 A1:n40019012031 +A0:n40019012030 +A0:n40019012030 +11129 A2:n40019013003 A1:n40019013004 +11135 A0:n40019001006 A1:n40019013007 A2:n40019013009 +11138 A0:n40019001006 +11142 A0:n40019013014 A1:n40019013016 +11147 A0:n40019014003 +A0:n40019013014 A1:n40019014007 +11153 A0:n40019013014 A1:n40019014012 +11155 A0:n40019014011 +11167 A0:n40019014003 A1:n40019015004 A2:n40019015005 +11171 A1:n40019014003 +11176 A0:n40019016003 +11178 A0:n40019016003 A2:n40019016005 +11182 A0:n40019016003 A1:n40019016009 +11184 A0:n40019016003 A1:n40019016013 +11189 A0:n40019017001 A2:n40019017004 +11193 A0:n40019016003 A1:n40019017006 +11203 A0:n40019016003 A1:n40019017021 +11207 A0:n40019016003 +A0:n40019016003 A1:n40019017024 +11211 A0:n40019016003 A2:n40019018002 +11217 A0:n40019018006 +11220 A0:n00000000000 +11222 A0:n00000000000 +11224 A0:n00000000000 +11226 A0:n00000000000 +A0:n00000000000 A1:n40019019003;n40019019006 +11234 A0:n00000000000 A1:n40019019010 +11240 A2:n40019020002 A0:n40019020004 +11246 A0:n40019020004 A1:n40019020005 +11249 A0:n40019020004 A1:n40019020008 +A2:n40019021002 A0:n40019021004 +11255 A0:n40019020004 A1:n40019021007 +11258 A0:n40019020004 +A0:n40019020004 A1:n40019021013 +11262 A0:n00000000000 +11264 A0:n40019020004 A1:n00000000000 A2:n40019021016 +11267 A0:n40019020004 A1:n40019021019 +11272 A0:n40019020004 +A0:n40019020004 A1:n40019021025 +11278 A0:n40019022004 A1:n40019022006 +11281 A0:n40019022004 +A1:n40019022004 +11285 A0:n40019022004 A1:n40019022012 +11291 A0:n40019023003 A2:n40019023006 +11296 A0:n40019023003 A2:n40019023010 +11301 A0:n40019023012 +11309 A0:n40019023003 A2:n40019024004 +11317 A0:n40019024007 +11326 A0:n40019025004 +11329 A1:n40019025004 +11331 A0:n40019025004 +11334 A0:n40019025008 A1:n40019025011 +A1:n40019025008 +11337 A0:n40019026004 +11340 A0:n40019026004 A2:n40019026006 +11353 A1:n40019027004 +11356 A0:n40019027004 A2:n40019027006 +11358 A0:n40019026004 +11360 A0:n40019027008 A1:n40019027010 +11363 A0:n40019025004 A1:n40019027013 +11372 A0:n40019028003 A2:n40019028005 +11375 A0:n40019028003 A2:n40019028008 +11380 A0:n40019025004 A1:n40019028013 +11386 A0:n40019028020 +11395 A0:n40019028029 +11401 A0:n40019028012 A1:n40019028036 +11410 A0:n40019029003 A1:n40019029005;n40019029007;n40019029009;n40019029011;n40019029013;n40019029015;n40019029017 +11429 A0:n40019029004 A1:n40019029022 +11433 A0:n40019029004 A1:n40019029025 +11452 A0:n40020001010 +11455 A0:n40020001008 A1:n40020001015 +11462 A0:n40020001008 +11470 A0:n40020001008 A1:n40020002011 +11477 A0:n40020001008 +11481 A0:n40020001008 A1:n40020003007 +11483 A0:n40020003007 +11490 A0:n40020001008 A2:n40020004002 +A0:n40020004006 +11502 A0:n40020001008 A1:n40020004014 A2:n40020004016 +11506 A0:n40020005001 +11509 A0:n40020001008 +11515 A0:n40020001008 +11521 A0:n40020001008 +A0:n40020001008 A1:n40020006008 +11524 A0:n40020006007 +11526 A0:n40020001008 A2:n40020006011 +11530 A0:n40020006007 +11535 A0:n40020006007 A2:n40020007002 +11540 A0:n40020007004 A1:n40020007005 +A0:n40020001008 A2:n40020007008 +11543 A0:n40020007011 +11551 A0:n40020008001 +A0:n40020008006 A2:n40020008010 +11560 A0:n40020008010 A1:n40020008014 +11564 A0:n40020008010 A2:n40020008014 A1:n40020008018 +11567 A0:n40020008010 +11575 A0:n40020009003 +11581 A0:n40020009003 A1:n40020009010 +11585 A0:n40020010004 +11588 A0:n40020010004 +11591 A0:n40020010004 A1:n40020010007 +11593 A1:n40020010013 A0:n40020010015 +11600 A0:n40020010004 +A0:n40020010004 +11605 A0:n40020010004 +11611 A0:n40020012004 +11615 A0:n40020011006 A1:n40020012010 +11618 A0:n40020010004 A1:n40020012016;n40020012021 +11628 A1:n40020011006 +11631 A0:n40020013001 A2:n40020013004 +11634 A0:n40020011006 A1:n40020013010 +11638 A0:n40020013007 +11640 A0:n40020013007 A1:n40020014003 +11644 A0:n40020013007 +11646 A0:n40020011006 A1:n40020014011 +11650 A0:n40020011006 A1:n00000000000 A2:n40020014010 +11655 A0:n40020015006 +11658 A0:n40020011006 A1:n40020015004 +A0:n40020011006 A1:n40020015005 +11684 A0:n40020017004 A1:n40020017003 +A0:n40020017004 +11688 A0:n40020017004 A1:n40020017009 +11697 A0:n40020017004 A2:n40020017017 +11699 A0:n40020017009 +A0:n40020017004;n40020017009 +11708 A1:n40020018007 A2:n40020018012;n40020018014 +11714 A0:n40020018012;n40020018014 A1:n40020018017 +11719 A0:n40020018012;n40020018014 A1:n40020019003 A2:n40020019005 +11725 A0:n40020019005 A1:n40020018007 +11727 A0:n40020019005 A1:n40020018007 +11729 A0:n40020019005 A1:n40020018007 +11734 A1:n40020018007 +11736 A0:n40020020005 +11747 A0:n40020020005 +11749 A0:n40020020005 A1:n40020020016 +11755 A0:n40020021001 A2:n40020021004 +11758 A0:n40020020005 A1:n40020021005 +A0:n40020020005 A2:n40020021008 +11761 A0:n40020017004 +11763 A0:n40020021015 +11782 A1:n40020022004 +11785 A0:n40020022004 +11787 A0:n40020021015 A1:n40020022009 +11789 A0:n40020021015 A1:n40020022008 +A0:n40020021015 A1:n40020022011 +A0:n40020021015 A1:n40020022013 +11795 A0:n40020022004 A1:n40020022014 +11797 A1:n40020022017 A0:n40020022015 +A0:n40020021015 A2:n40020022019 +11800 A0:n40020021015 +A0:n40020022004 A2:n40020023002 +11807 A0:n40020021015 A1:n40020023005 +11810 A0:n00000000000 +11821 A0:n40020023019 A1:n40020023020 +11824 A1:n40020023010 A2:n40020023023 +11830 A0:n40020024004 +11833 A0:n40020024004 +11841 A0:n40020025003 A1:n40020025005 +11843 A0:n40020025003 +A0:n40020017009 +11850 A0:n40020025010 A1:n40020025014 +11855 A0:n40020025017 +11859 A0:n00000000000 +11865 A0:n40020026007 A1:n40020026012 +11876 A0:n40020027002 A1:n40020027008 +11890 A0:n40020028003 +A1:n40020028003 +11893 A0:n40020028003 +11895 A0:n40020028003 A1:n40020028014 +11903 A0:n40020029003 +11907 A1:n40020029007 A0:n40020029008 +11915 A0:n40020030004 +11919 A0:n40020030004 +11922 A0:n40020030011 +A0:n40020030004 +A0:n40020030004 +A0:n40020030015 A1:n40020030017 +11933 A0:n40020031003 A1:n40020031005 +11936 A0:n40020030004 +11940 A0:n40020031008 +A0:n40020030004 +A0:n40020031013 A1:n40020031015 +11948 A0:n40020032004 +11951 A0:n40020032004 A1:n40020032006 +11954 A0:n40020032004 +A0:n40020030004 A1:n40020032011 +11957 A0:n40020032004 A1:n40020032009 A2:n40020032012 +11959 A0:n40020030004 A2:n40020033002 +11963 A1:n40020033007 +11968 A1:n40020034004 +11971 A0:n40020034004 A1:n40020034007 +11977 A0:n40020030004 +11979 A0:n40020030004 A1:n40020034014 +11983 A0:n40021001016;n40020017009 +11987 A0:n40021001016;n40020017009 +11997 A0:n40021001016 A1:n40021001019 +12000 A0:n40021001016 A2:n40021002002 +12002 A0:n40021001019 +12011 A0:n40021001019 A1:n40021002014;n40021002016 +12013 A1:n40021002013 +12018 A0:n40021001019 A1:n40021002013;n40021002016 +A0:n40021001019 A1:n40021002013;n40021002016 A2:n40021002021 +12025 A0:n40021003003 A2:n40021003004 A1:n40021003006 +12027 A0:n40021001019 +12033 A0:n40021003010 A1:n40021003012 +12036 A0:n40021003003 A1:n40021003017 +12040 A0:n40021004001 +12042 A1:n40021004007 +12044 A1:n00000000000 +12048 A0:n40021004010 +A0:n40020023027 A2:n40021005003 +12053 A0:n40021005003 +12057 A0:n40021005007 +12061 A0:n40021005007 +12072 A1:n40021006004 +12074 A0:n40021006004 +12076 A2:n40021006009 A1:n00000000000 A0:n40021006011 +12080 A0:n40021006004 A1:n40021007003;n40021007006 +12087 A0:n40021006004 A1:n40021007012 +12093 A0:n40021006011 +12100 A0:n40021008004 A1:n40021008008 +12109 A0:n40021008012 A1:n40021008015 +12115 A0:n40021008012 +12123 A0:n40021009003 +12127 A0:n40021009003 +A0:n40021009003 +A0:n40021009003 +12134 A1:n00000000000 +12136 A0:n40021006011 +12145 A0:n40021010003 +12149 A1:n40021010009 +12153 A0:n40021010009 +12160 A0:n40021011003 +12172 A0:n40021012003 +12178 A0:n40021012003 A1:n40021012011;n40021012013 +12181 A0:n00000000000 +12183 A0:n00000000000 +12188 A0:n40021012003 A1:n40021012019;n40021012025 +12197 A0:n00000000000 A1:n40021012029 +12201 A0:n40021012003 A2:n40021013003 +12203 A1:n40021013008;n40021013014 +12213 A0:n40021013011 A1:n40021013013 +12217 A0:n40021014004;n40021014006 +12226 A0:n40021012003 A1:n40021014012 +12234 A0:n40021015004;n40021015007 A1:n40021015009;n40021015014 +12238 A0:n40021012003 A1:n40021015010 +12243 A0:n40021015014 +12248 A0:n40021015014 +12253 A0:n40021015004;n40021015007 +12255 A0:n40021015004;n40021015007 A2:n40021016003 +12257 A0:n40021012003 +12260 A1:n40021016005 A0:n40021016006 +12264 A0:n40021016010 A2:n40021016012 +12268 A0:n40021015004;n40021015007 +12274 A0:n00000000000 +A0:n40021009021 A1:n40021016023 +12278 A0:n40021016010 A1:n40021017003 +12280 A0:n40021016010 +12287 A1:n40021016010 +12291 A0:n40021016010 +12295 A0:n40021016010 +12297 A0:n40021016010 A1:n40021019003 +12303 A0:n40021016010 +12308 A0:n40021016010 A1:n40021019012 +12316 A0:n40021016010 A2:n40021019022 +12323 A0:n40021019027 +12328 A1:n40021019036 +12333 A0:n40021020004 +12336 A0:n40021020004 +A0:n40021020004 +12340 A1:n40021020011 +12344 A1:n40021021004 +12347 A0:n40021021004 A2:n40021021006 +12350 A0:n40021021004 A2:n40021021009 +12353 A0:n40021020004 A1:n40021021012 +12357 A1:n40021020004 +12363 A0:n40021020004 A1:n40021021018 +12369 A0:n40021020004 A2:n40021021025 +A1:n40021021025 +12372 A1:n40021021025 +12376 A0:n00000000000 +12381 A0:n40021020004 A1:n40021022003 +12385 A0:n40021020004 +A0:n40021020004 A1:n40021022005 +12388 A0:n40021023003 +12393 A0:n40021023011;n40021023014 +12395 A0:n40021021004 +12403 A0:n40021023011;n40021023014 +12408 A0:n40021021004 A1:n40021023021 +12412 A0:n40021023024 A2:n40021023025 A1:n40021023028 +12417 A1:n40021024004 +12420 A0:n40021024004 A2:n40021024006 +12422 A2:n40021024008 A0:n40021024009 A1:n40021024010 +12429 A0:n40021023011;n40021023014 A1:n40021024012 A2:n40021024015 +12433 A0:n40021024016 A2:n40021024017 +12438 A0:n40021024004 A1:n40021024022 +12452 A0:n40021025012 +12455 A0:n40021023011;n40021023014 +12457 A0:n40021023011;n40021023014 +12460 A0:n40021024004 A2:n40021025023 +12466 A0:n40021023011;n40021023014 A1:n40021025029 +12470 A0:n40021023011;n40021023014 +12473 A0:n40021023011;n40021023014 A1:n40021026008 +12480 A0:n40021026009 A1:n40021026015 +12484 A1:n40021023011;n40021023014 A2:n40021027004 +12487 A0:n40021023011;n40021023014 +12489 A0:n40021023011;n40021023014 +A2:n40021027009 A0:n40021027011 +12496 A0:n40021027013 A2:n40021027015 +12502 A0:n40021027004 A1:n40021027019 +12506 A0:n40021028001 AA2:n40021028003 +12508 A0:n40021028005 A1:n40021028007 +12511 A0:n40021028005 +12514 A0:n40021028005 A1:n40021028011 +12516 A0:n40021028013 +12518 A0:n40021028013 +12524 A1:n40021028011 +A0:n40021029001 +12530 A0:n40021028011 +12532 A0:n40021028005 +12535 A0:n40021028005 A1:n40021030004 +12539 A1:n40021030004 +A0:n40021030007 +12542 A0:n40021030004 +12544 A0:n40021030004 +A0:n40021030004 +12550 A0:n40021031001 A1:n40021031007 +12555 A0:n40021023011;n40021023014 +12558 A2:n40021031014 A0:n40021031016 +12563 A0:n40021031016 A2:n40021031019 +12571 A0:n40021031022;n40021031025 +12579 A0:n40021032003 +12588 A0:n40021023011;n40021023014 A1:n40021032012 +12596 A0:n40021032015;n40021032018 A1:n40021032020 +12600 A0:n40021023011;n40021023014 +12602 A0:n40021032021 +12605 A0:n40021023011;n40021023014 A1:n40021032029 +12609 A0:n40021023011;n40021023014 A1:n40021033002 +12614 A0:n40021033007 A1:n40021033009 +12619 A0:n40021033004 A1:n40021033011 A2:n40021033012 +12621 A0:n40021033004 A1:n40021033018 +12626 A0:n40021033004 A1:n40021033021 +12629 A0:n40021033004 A1:n40021033024 A2:n40021033025 +12633 A0:n40021033004 +12636 A0:n40021034005 +12641 A0:n40021033004 A1:n40021034010 +12648 A0:n40021034010 A1:n40021034017 +12653 A0:n40021035004 A1:n40021035006 +12661 A0:n40021035004 A1:n40021035008 +12664 A0:n40021035004 A1:n40021035011 +12667 A0:n40021035004 A1:n40021035014 +12669 A0:n40021033004 A1:n40021036004 +12676 A0:n40021035004 A1:n00000000000 A2:n40021036010 +12681 A0:n40021033004 A1:n40021037007 +12687 A0:n40021033004 +A1:n40021035004 A1:n40021037012 +12695 A0:n40021038003 A1:n40021038006 +12698 A0:n40021038003 +12705 A0:n40021038003 +A0:n40021038003 A1:n40021038016 +12709 A0:n40021038003 A1:n40021038020 +12714 A0:n40021038003 A1:n40021039003 +12716 A0:n40021038003 +12721 A0:n40021038003 +12724 A0:n40021040005 +12730 A0:n40021040005 A1:n40021040008 A2:n40021040011 +12734 A0:n40021023011;n40021023014 A2:n40021041002 +12738 A0:n40021040005 A1:n40021041006 +12743 A0:n40021040005 A1:n40021041009 A2:n40021041012 +12747 A0:n40021041013 A2:n40021041015 A1:n40021041017 +12755 A2:n40021042002 A0:n40021042004 +12760 A0:n40021023011;n40021023014 +12766 A1:n40021042011 A0:n40021042014 +12768 A0:n00000000000 +12770 A1:n40021042015 +12776 A0:n40021042023 +12786 A0:n40021042004 A2:n40021043004 +12789 A1:n40021043010 +12797 A1:n40021043010 A2:n40021043015 +12799 A0:n40021043015 A1:n40021043018 +12805 A0:n00000000000 +12810 A1:n40021044003 +12815 A0:n40021044006 A1:n40021044010 +A0:n40021044006 A1:n40021044015 +12824 A0:n40021045004;n40021045007 A1:n40021045009 +12828 A0:n40021045004;n40021045007 +12832 A0:n40021042004 +12834 A0:n40021045004;n40021045007 A1:n40021046004 +12836 A0:n40021045004;n40021045007 A1:n40021046003 +A1:n40021045004;n40021045007 A1:n40021046007 +12844 A0:n40021046007 A1:n40021046011 +12846 A1:n40022001004 +12850 A0:n40022001004 A2:n40022001009 +12854 A0:n40022001004 +A1:n40022002003 +12863 A0:n40022002008 A1:n40022002010 A2:n40022002012 +12869 A0:n40022002006 A1:n40022003004 +12873 A0:n40022003004 A1:n40022003008 +12875 A1:n00000000000 +12881 A0:n40022003008 A1:n40022003015 +A0:n40022003008 +12884 A0:n40022002006 A1:n40022004004 +12887 A0:n40022002006 +A0:n40022004004 A2:n40022004008 +12890 A1:n00000000000 +A0:n40022004008 +12895 A0:n40022002006 A1:n40022004011 +12902 A1:n40022004015;n40022004019 +12906 A0:n40022004008 +12912 A0:n40022004008 +A0:n40022005001 +12929 A0:n40022006003 A1:n40022006006 +12933 A0:n40022006003 +12935 A0:n40022006003 +12939 A0:n40022007003 +12941 A0:n40022007003 A1:n40022007008 +12945 A0:n40022007003 A1:n40022007012 +12953 A0:n40022007003 A1:n40022007016 +12955 A0:n40022007003 A2:n40022008004 +12966 A1:n00000000000 +12971 A0:n40022008004 +12980 A0:n40022008004 A1:n40022009009 +A0:n40022008004 A1:n40022009011 +12989 A0:n40022010004 +12993 A0:n40022010004 A1:n40022010012 +12996 A0:n40022010004 A1:n40022010011 +13002 A1:n40022010020 A2:n40022010021 +13005 A0:n00000000000 +13009 A0:n40022011004 +A0:n40022011004 A1:n40022011007 +13012 A0:n00000000000 +A0:n40022011004 A1:n40022011010 +13017 A0:n40022011010 A1:n40022011013 +13021 A0:n40022011004 A2:n40022012003 +13025 A0:n40022012004 +13028 A0:n40022012004 A1:n40022012010 +13033 A1:n40022012012 +13037 A0:n40022013003 A2:n40022013006 +13040 A0:n40022013006 A1:n40022013009;n40022013011 +13045 A0:n40022013006 A1:n40022013013 +13069 A1:n40022015004 +13073 A0:n40022015004 A1:n40022015005 +13076 A0:n40022015004 A1:n40022015008 +13080 A0:n40022015004 A2:n40022016003 A1:n40022016005 +13088 A0:n40022016005 +13090 A0:n40022015004;n40022016005;n40022016009 +13101 A0:n40022016011 A1:n40022016018 +13104 A0:n00000000000 AA2:n40022016027 +13110 A0:n40022016011 +13115 A0:n40022016011 A2:n40022017003 +13119 A0:n40022017004 AA2:n40022017005 +A0:n40022017008 +A0:n00000000000 A1:n40022017009 A2:n40022017010 +13129 A0:n40022018004 A1:n40022018006 +13133 A0:n40022018004 +13136 A0:n40022018012 A1:n40022018010 +13138 A0:n40022018012 A2:n40022019002 A1:n40022019004 +13146 A0:n40022019007 A2:n40022019010 A1:n40022019011 +13150 A0:n40022018004 A2:n40022020003 +13159 A0:n40022015004;n40022016005;n40022016009 +13162 A0:n40022018004 A2:n40022021005 +13165 A0:n40022015004;n40022016005;n40022016009 A1:n40022021008 A2:n40022021010 +13176 A0:n40022015004;n40022016005;n40022016009 +A0:n40022015004;n40022016005;n40022016009 +13179 A0:n40022015004;n40022016005;n40022016009 A1:n40022022006 +13181 A0:n40022015004;n40022016005;n40022016009 +13186 A0:n40022023007 +13189 A0:n40022023007 A1:n40022023010 +13191 A0:n40022023011 +13194 A0:n40022023007 A1:n40022023014 +13196 A0:n40022023007 +13199 A0:n40022024003 +13202 A0:n40022024006 +13204 A0:n40022024006 A1:n40022024010 +13206 A0:n40022024013 A1:n40022024016 +13214 A0:n40022024013 A1:n40022024020 A2:n40022024022 +13228 A0:n40022025009 +A0:n40022025009 +13232 A0:n40022025009 A1:n40022025015 +13234 A0:n40022025009 A1:n40022025018 A2:n40022025021 +13254 A0:n40022027006 +13268 A0:n40022028010 A1:n40022028013 +13271 A1:n40022029004 +13274 A0:n40022029004 A2:n40022029006 +13276 A1:n40022023007 +13278 A0:n40022023007 A1:n40022029011 +13291 A0:n00000000000 +13293 A1:n00000000000 +13300 A0:n00000000000 +13308 A0:n40022023007 A1:n40022031010 +13310 A1:n00000000000 A2:n40022031011 +13315 A0:n40022031014 +13335 A0:n00000000000 +13337 A0:n40022033004 +13340 A1:n40022033004 +13348 A0:n40022034003 +13350 A0:n40022029004 A1:n40022034008 +13353 A1:n40022034003 +13358 A0:n40022035003 +13363 A0:n40022035003 A1:n40022035008 +13374 A0:n40022037001 A2:n40022037004 +13376 A0:n00000000000 A1:n40022037006 +13408 A0:n00000000000 A1:n40022039006 +13422 A1:n40022040008 +13427 A1:n40022041004 +13430 A1:n40022041006 A0:n40022041008 +13434 A0:n40022041008 +13437 A0:n40022042002 AA2:n40022042003 +13444 A0:n40022041004 A2:n40022042012 +13448 A0:n40022041008 A2:n40022043002 +13455 A0:n40022043005 A1:n40022043009 +13458 A0:n40022043005 +A0:n40022044002 A2:n40022044004 +13464 A0:n40022044004 +13470 A0:n40022044002 A1:n40022044014 +13481 A0:n40022045003 A1:n40022045005 +13490 A0:n40022046002 A1:n40022046004 +A1:n40022046002 A2:n40022046005 A1:n40022046006 +13495 A0:n40022046009 A1:n40022046014 +13501 A0:n40022046009 A1:n40022046015 +13507 A0:n40023001003 A2:n40023001006;n40023001009 +13514 A0:n40023001003 +13519 A0:n40023002008;n40023002011 +13529 A0:n40023002008;n40023002011 A1:n40023003003 A2:n40023003006 +13531 A0:n40023001006;n40023001009 A1:n40023003005 +13533 A0:n40023001006;n40023001009 A1:n40023003005 +13540 A0:n40023001006;n40023001009 +13542 A0:n40023002008;n40023002011 +13545 A0:n40023002008;n40023002011 +13547 A0:n40023002008;n40023002011 A1:n40023004003 +13551 A0:n40023002008;n40023002011 A1:n40023004003 +13563 A0:n40023004012 A1:n40023004019 +A0:n40023002008;n40023002011 A1:n40023004020 +13571 A0:n40023002008;n40023002011 A1:n40023005004 +13574 A1:n40023002008;n40023002011 +13578 A0:n40023002008;n40023002011 A1:n40023005015 +13583 A0:n40023002008;n40023002011 A1:n40023005020 +13587 A0:n40023002008;n40023002011 A1:n40023006004;n40023006010;n40023007003;n40023007012 +13631 A0:n40023001006;n40023001009 +13662 A0:n40023012001 A1:n40023012004 +13664 A1:n40023012003 +13667 A0:n40023012007 A1:n40023012009 +13669 A1:n40023012008 +13678 A0:n40023013004;n40023013006 A1:n40023013011 +13689 A0:n40023013017 +13692 A0:n00000000000 +A0:n40023013023 +A0:n40023013004;n40023013006 A1:n40023013025 +13702 A0:n40023015003;n40023015005 A1:n40023015010;n40023015013 +13708 A0:n40023015003;n40023015005 A2:n40023015015 A1:n40023015016 +13713 A0:n40023015015 +A0:n40023015003;n40023015005 A2:n40023015021 A1:n40023015022 +13725 A0:n40023016003 +13728 A0:n40023016007 +13737 A0:n40023016015 +13743 A0:n40023016018 +13757 A0:n40023017012 A1:n40023017016 +13763 A0:n40023018002 +13772 A0:n40023018010 +13779 A0:n40023018013 +13790 A0:n40023019009 A1:n40023019013 +13795 A0:n00000000000 +13799 A0:n40023020003 +13810 A0:n00000000000 +13814 A0:n40023021003 +13820 A0:n00000000000 +13824 A0:n00000000000 +13828 A0:n40023022003 +13837 A0:n40023022012 +13847 A0:n40023023003;n40023023005 A1:n40023023010;n40023023013;n40023023016 +13857 A0:n40023023003;n40023023005 A1:n40023023020 +13871 A0:n40023023034 +13873 A0:n00000000000 A1:n40023023031 +13876 A0:n00000000000 A1:n40023023035 +13880 A0:n40023024001 A1:n40023024006 +13886 A0:n40023024001 A1:n40023024009 +13894 A0:n40023025003;n40023025005 A1:n40023025010 +13904 A0:n40023025012;n40023025015 +13911 A0:n40023026001 A1:n40023026006 +13931 A0:n40023027003;n40023027005 +13933 A1:n40023027009 +13941 A0:n40023027009 A1:n40023027019;n40023027023 +13970 A0:n40023029003;n40023029005 A1:n40023029010 +13976 A0:n40023029003;n40023029005 A1:n40023029016 +13982 A0:n40023029003;n40023029005 +14002 A0:n40023029003;n40023029005 A2:n40023031003 +14008 A0:n40023030009 A1:n40023031010 +14013 A0:n40023032002 A1:n40023032005 +14023 A0:n40023033001 +14029 A0:n40023033001 +14033 A0:n40023034004 A1:n40023034008;n40023034010;n40023034012 +14043 A0:n40023033001 +14045 A0:n40023033001 +14049 A0:n40023033001 +14055 A0:n40023033001 +14061 A0:n40023035006 +14067 A1:n40023035006 +14084 A0:n40023033001 A1:n40023035024 +14092 A0:n40023001003 A2:n40023036003 +14094 A0:n40023036005 +14104 A0:n40023037001 A1:n40023037006 +14108 A0:n40023037001 A1:n40023037010 +14110 A1:n00000000000 +14114 A0:n40023001003 A1:n40023037015 +A0:n40023001003 A1:n40023037017 +14122 A0:n40023037021 A1:n40023037024 +14131 A0:n40023037001 +A0:n40023037001 +A2:n40023038003 A1:n40023038005 +14139 A0:n40023001003 A2:n40023039003 +14144 A0:n40023037001 A1:n40023039006 +14149 A0:n40023037001 +A1:n00000000000 +14152 A0:n40023001003 +14159 A0:n40024001004 +14163 A0:n40024001004 +14165 A0:n40024001012 +14169 A0:n40024001012 A2:n40024001015 A1:n40024001017 +14177 A1:n40024001004 +A0:n40024002001 A2:n40024002005 +14181 A0:n40024001012 A1:n40024002008 +14185 A0:n40024001004 A2:n40024002012 +14189 A1:n40024002017 +14196 A1:n40024002020 +14198 A0:n40024003003 +14205 A0:n40024003012 +14211 A0:n40024003012 +A0:n40024001004 A2:n40024003017 +14216 A0:n40024003019 +14229 A1:n40024004004 +14232 A0:n40024004004 A2:n40024004006 +14234 A0:n40024003012 +14238 A0:n40024004009 A1:n40024004010 +14241 A0:n40024005001 +14246 A0:n40024005001 +14253 A0:n40024005001 A1:n40024005014 +14255 A0:n40024003012 A1:n40024006003 +A0:n40024003012 A1:n40024006004;n40024006006 +14261 A0:n40024003012 +14263 A1:n40024003012 +14265 A0:n40024006013 +A0:n40024006004;n40024006006 +14269 A0:n40024006018 +14273 A1:n40024007003 +14282 A0:n40024007012;n40024007014 +14294 A0:n00000000000 A1:n40024009003 +14299 A0:n00000000000 A1:n40024009008 +14303 A1:n40024003012 +14314 A1:n40024010004 +14318 A0:n40024010004 A1:n40024010006 +14320 A0:n40024010004 A1:n40024010010 +14325 A1:n40024011003 +14327 A0:n40024011003 A1:n40024011007 +14332 A1:n40024012006 +14335 A1:n40024012009 +14342 A0:n00000000000 +14346 A1:n40024013006 +14348 A1:n40024014005 A2:n40024014016 +14365 A0:n40024014021 +14370 A0:n40024003012 A1:n40024015014 +14376 A1:n40024015005 +14381 A0:n40024015005 +14386 A0:n00000000000 +A0:n40024015019 +14393 A0:n40024016002 +14402 A0:n40024017001 +A0:n40024017001 A1:n40024017008 +14415 A0:n40024018002 +14417 A0:n40024018002 A1:n40024018011 +14426 A0:n00000000000 +14429 A0:n00000000000 +14435 A0:n40024003012 +14438 A0:n40024020007 +14446 A0:n40024021004 +14452 A0:n40024021006 +14462 A0:n40024021004 +14466 A1:n40024022006 +14472 A1:n40024022012 +14479 A1:n40024022019 +14487 A0:n40024023003 A2:n40024023004 +A0:n40024003012 +14495 A0:n40024003012 +14497 A1:n40024024003;n40024024005 +14502 A0:n40024024003;n40024024005 A1:n40024024008;n40024024011 +14508 A0:n40024024003;n40024024005 A1:n40024024018 +14514 A0:n40024003012 +A0:n40024004004 A2:n40024025003 +14519 A0:n00000000000 A2:n40024026004 +14521 A0:n40024003012 +14527 A0:n40024003012 +A0:n40024003012 +14533 A0:n40024003012 +14538 A0:n40024027004 +14542 A0:n40024027004 +14559 A1:n40024028009 +14572 A1:n40024029010 +14577 A0:n40024029014 A1:n40024029018 +14584 A0:n40024029022 +14593 A1:n40024029029 +14596 A0:n40024030005 +14607 A0:n40024030017 +14614 A0:n40024030017 A1:n40024030026 +14619 A0:n40024030023 +14631 A0:n40024030023 A1:n40024031004 +14639 A0:n40024031004 A1:n40024031012 +14657 A0:n40024003012 A1:n40024032007 +14670 A0:n40024032011 A1:n40024032017 +A0:n40024003012 +14680 A0:n40024003012 A1:n40024033007 +14683 A0:n40024033003 +14690 A0:n40024004004 A2:n40024034003 +14695 A0:n40024034009 +14703 A0:n40024034014 +14709 A0:n40024035002;n40024035005 +14716 A0:n40024035009 +14725 A0:n40024036008 +14763 A0:n00000000000 +A0:n00000000000 +14766 A0:n00000000000 +A0:n00000000000 +14769 A0:n00000000000 +14773 A0:n40024038022 +14780 A0:n00000000000 +14782 A0:n40024039007 +14786 A0:n40024039007 A1:n40024039010 +14804 A1:n40024040007 +14807 A1:n40024040010 +14809 A0:n40024041001 +14814 A1:n40024041006 +14817 A1:n40024041009 +14819 A0:n40024003012 +14822 A0:n40024003012 +14828 A0:n40024042009 +14831 A0:n40024003012 A1:n40024043001 +14834 A0:n40024043008 +14841 A0:n40024043012 +14843 A0:n40024043008 +14847 A0:n40024043008 A1:n40024043020 +A1:n40024043022 +14861 A0:n40024003012 +14867 A0:n40024044013 +14877 A1:n40024045009 A0:n40024045012 +14885 A0:n40024045006 A2:n40024045019 A1:n40024045021 +14897 A0:n40024046003 A0:n40024046005 +A0:n40024046008 +14902 A1:n40024046012 A0:n40024046008 +14904 A0:n40024004004 A2:n40024047003 +14910 A0:n00000000000 +14912 A0:n40024046008 A1:n40024047011 +14916 A0:n40024048006 +14925 A0:n40024048015 +14930 A0:n40024048006 A1:n40024049003 +A0:n40024048006 A1:n40024049005 +14936 A0:n40024048006 +14938 A0:n40024048006 +14941 A0:n00000000000 +A0:n40024050003 +14952 A0:n40024050005 +14958 A0:n40024050005 +14960 A0:n40024050003 A1:n40024051003 +14969 A0:n40024050003 A1:n40024051006 +14980 A1:n40025001004 +14988 A0:n40025001008 A1:n40025001012 +14992 A0:n40025001009 +15009 A0:n40025003003 A1:n40025003006 +15013 A0:n40025003003 A1:n40025003011 +15020 A0:n40025004003 A1:n40025004005 +15030 A0:n40025005004 +15033 A0:n40025005006 +15036 A0:n40025005006 +15041 A0:n40025006004 +A0:n40025001008 +15045 A0:n40025001008 +15049 A1:n40025007005 +15055 A0:n40025007005 A1:n40025007010 +15064 A0:n40025008003 A2:n40025008005 +A0:n40025008005 A1:n00000000000 A2:n40025008008 +15075 A1:n40025008015 +15077 A0:n40025009004 +15080 A0:n40025009004 +15085 A0:n40025008011 +15089 A0:n40025008003 +15093 A0:n00000000000 +15095 A0:n40025008003 A1:n00000000000 A2:n40025009021 +15098 A0:n40025010003 +15100 A0:n40025008003 +A0:n40025010007 +15107 A0:n40025010010 +15114 A1:n40025010020 +15119 A0:n40025011007 +15124 A0:n40025011007 +15127 A0:n40025011009 A1:n00000000000 A2:n40025011012 +15131 A1:n40025010007 +A0:n40025012001 +15134 A0:n40025010007 A2:n40025012007 +15137 A0:n40025010007 A1:n40025012010 +15140 A0:n40024003012 +15143 A0:n40024003012 A1:n40025013007;n40025013010 +15152 A0:n40025014003 +A0:n40025014003 A1:n40025014008 +15158 A0:n40025014003 A2:n40025014011 A1:n40025014013 +15161 A0:n00000000000 +15166 A0:n40025014003 A2:n40025015002 A1:n40025015006 +15181 A0:n40025014003 +15183 A1:n40025016006 +15188 A0:n00000000000 A1:n40025016005 +A0:n40025016006 +15193 A0:n40025016006 A1:n40025016013 +15200 A0:n40025017004 A1:n40025017007 +15207 A0:n00000000000 A1:n40025018004 +A0:n40025018005 +A0:n40025018005 A1:n40025018008 +15212 A0:n40025018005 A1:n40025018012 +15222 A0:n40025019007 +15229 A0:n40025019007 A1:n40025019013 +15234 A0:n40025020007 +15239 A0:n00000000000 A1:n40025020006 +A0:n40025020007 A1:n40025020011 +15244 A0:n40025020007 +15249 A0:n40025020013 A1:n40025020015 A2:n40025020016 +A0:n40025020013 +15254 A0:n40025020007 A1:n40025020021 +A2:n40025021002 A0:n40025021004 +15272 A0:n40025021004 A1:n40025021017 +A0:n40025021007 +15280 A0:n40025022006 +15286 A0:n40025022006 +15291 A0:n40025022008 A1:n40025022011 A2:n40025022010 +A0:n40025022008 +15296 A0:n40025022006 A1:n40025022017 +A2:n40025023002 A0:n40025023004 +15314 A0:n40025023004 A1:n40025023017 +A0:n40025023007 +15323 A0:n40025024008 +15329 A0:n00000000000 A1:n40025024007 +A0:n40025024008 +15332 A0:n40025024008 A1:n40025024012 +15338 A0:n40025024016 +15341 A0:n40025024010 +15343 A0:n40025024016 +15346 A0:n40025024010 +15348 A1:n40025024008 +A0:n40025024008 +A0:n40025024008 A1:n40025025006 +15357 A0:n40025024010 +A0:n40025024010 A1:n40025025014 +15362 A1:n40025026004 +15366 A0:n40025026004 A2:n40025026007 +15372 A0:n40025026009 +15374 A0:n40025026004 +15377 A0:n40025026004 +15379 A0:n40025026004 +15382 A0:n40025026004 +15384 A0:n40025027004 +15386 A0:n40025027002 A1:n40025027006 A2:n40025027009 +15394 A0:n40025026004 +15396 A0:n40025027012 A1:n40025027016 +15402 A0:n00000000000 A1:n40025028006 +15408 A0:n00000000000 A1:n40025028006 A2:n40025028010 +15410 A0:n00000000000 A1:n40025028013 +15416 A0:n00000000000 +15418 A1:n00000000000 A2:n40025029003 +15420 A1:n40025029003 +15424 A0:n00000000000 +15427 A0:n40025029011 A1:n40025029013 +A1:n40025029014 +15435 A0:n00000000000 A1:n40025030004 +15452 A0:n40025031005 +15468 A0:n40025031005 +15474 A1:n40025032007 +15481 A0:n40025031005 A1:n40025032010 +15488 A0:n40025032015 A1:n40025032018 +15496 A0:n40025032015 A1:n40025033005 +15508 A0:n40025034004 A2:n40025034005 +15515 A0:n40025034011 +15517 A1:n40025034005 +15521 A0:n40025034011 A1:n40025034019 +15523 A1:n40025034019 A2:n40025034018 +15530 A0:n40025034004 +15532 A0:n40025034011 A2:n40025035005 A1:n40025035006 +15534 A0:n40025034004 +A0:n40025034004 +15537 A0:n40025034011 A1:n40025035010 +15542 A0:n40025034011 A1:n40025035015 +15546 A0:n40025034011 A1:n40025036004 +15548 A0:n40025034004 +15550 A0:n40025034011 A1:n40025036008 +15556 A0:n40025034011 +15560 A2:n40025037003 A0:n40025037005 +15564 A0:n40025037005 +15567 A0:n40025037005 A1:n40025037011 +15569 A0:n40025037009 +15571 A0:n40025037005 +15573 A0:n40025037007 +15575 A0:n40025037005 +15578 A0:n40025037005 A1:n40025038005 +15582 A0:n40025037005 +15586 A0:n40025037005 +15589 A0:n40025037005 A1:n40025039005;n40025039008 +15591 A0:n00000000000 +15596 A0:n40025037005 +15600 A1:n40025040004 +15603 A0:n40025040004 A2:n40025040006 +15606 A0:n40025040004 A2:n40025040009 +15610 A0:n40025037005 A1:n40025040011 A2:n40025040013 +15619 A0:n40025037005 A1:n00000000000 A2:n40025040020 +15621 A0:n40025040004 A2:n40025041004 +15626 A1:n40025041004 +A0:n40025041010 +15636 A1:n40025041013 A2:n40025041019;n40025041022 +15644 A0:n40025040004 +15647 A0:n40025041010 A2:n40025042006 A1:n40025042007 +15649 A0:n40025040004 +A0:n40025040004 +15653 A0:n40025041010 A1:n40025042012 +15659 A0:n40025041010 A1:n40025043006 +15664 A0:n40025041010 A1:n40025043011 +15672 A0:n40025041010 A1:n40025043019 +15675 A0:n40025044004 +15678 A0:n40025041004 +15681 A0:n40025041004 A1:n40025044010;n40025044012;n40025044014;n40025044016;n40025044018;n40025044021 +15683 A0:n00000000000 +15685 A0:n00000000000 +15697 A0:n40025041004 A1:n40025044025 +15700 A1:n40025040004 A2:n40025045003 +15702 A0:n40025040004 +15704 A0:n40025040004 A2:n40025045007 +15709 A0:n40025041004 A1:n00000000000 A2:n40025045012 +15716 A0:n40025041004 A1:n00000000000 A2:n40025045017 +15718 A0:n40025046003 +15730 A0:n00000000000 +15732 A0:n40026001006 A1:n40026001009 +15739 A0:n40026001006 A2:n40026001013 +15743 A0:n40026001013 +15756 A1:n40026002011 +15759 A1:n40026002011 +15761 A1:n40026003004;n40026003007 +15778 A0:n40026003004;n40026003007;n40026003014 +15783 A0:n40026003004;n40026003007;n40026003014 A1:n40026004005 +15785 A0:n40026003004;n40026003007;n40026003014 +15787 A0:n40026003004;n40026003007;n40026003014 +15795 A0:n40026005009 +15810 A0:n40026007003 +15813 A0:n40026007003 A1:n40026007005 +15818 A0:n40026007003 +15823 A0:n40026007013 +15825 A0:n40026008004 +15828 A0:n40026008004 +A0:n40026008004 +15836 A0:n40026009003 A1:n40026009004;n40026009007 +15838 A1:n40026007006 +15841 A1:n40026007006 A2:n40026009008 +15844 A0:n40026010004 +15847 A0:n40026010004 A2:n40026010006 +15851 A0:n40026008004 A1:n40026010008 A2:n40026010011 +15857 A0:n40026010011 A1:n40026010012 +15864 A0:n40026008004 A1:n40026011004 +15871 A0:n40026008004 A1:n40026011008 +15874 A0:n40026010011 A0:n40026012003 A1:n40026012005 +15884 A0:n40026010011 A1:n40026012014 +15886 A0:n00000000000 +15888 A0:n40026010004 A2:n40026013003 +15892 A1:n40026013008 +15900 A1:n40026013017 +15903 A1:n40026013016 A0:n40026013018 +15916 A1:n40026014003 +15920 A0:n40026014003 +A0:n40026014012 A1:n40026015005 +15924 A0:n40026014012 A1:n40026015002 A2:n40026015004 +15927 A0:n40026015006 A2:n40026015007 A1:n40026015009 +15931 A0:n40026015010 A2:n40026015013 A1:n40026015015 +15938 A0:n40026014003 A1:n40026016005 +15942 A0:n40026014003 A1:n40026016007 +15948 A0:n40026017008 +15953 A0:n40026017008 +A0:n40026017010 +15956 A0:n40026017008 A1:n00000000000 A2:n40026017015 +15958 A0:n40026017010 A1:n40026017018 +15963 A0:n40026018001 +A0:n40026017008 +15972 A0:n40026017008 A2:n40026018013 +15976 A0:n40026018015 +15984 A0:n40026018015 A1:n40026018026 +15992 A0:n40026019004 +15996 A2:n40026019007 A1:n00000000000 A0:n40026019009 +16001 A0:n40026019004 A1:n40026019013 +16006 A0:n40026020001 +A0:n40026019009 +16013 A0:n40026021003 +16015 A0:n40026019009 +16017 A0:n40026019009 A2:n40026021007 +16023 A0:n40026021009 A1:n40026021013 +16026 A1:n40026022007 +16028 A1:n40026022005 A0:n40026022007 +A0:n40026022007 A2:n40026022006 +16039 A1:n40026019009 +A0:n40026023001 +16042 A0:n00000000000 A1:n40026023010 +16052 A0:n40026023014 A1:n40026023015 +16058 A0:n40026024003 +16060 A1:n00000000000 +16074 A1:n40026024019 +16076 A0:n00000000000 +16080 A1:n40026024030 +16085 A1:n40026025003 +16088 A0:n40026025003 A1:n40026025006 +16090 A0:n40026025003 +16095 A0:n40026019009 A2:n40026025013 +16098 A0:n40026025014 +16100 A0:n40026026003 +16104 A0:n40026026006 A1:n40026026007 +16107 A0:n40026026006 +A0:n40026026006 A1:n40026026007 +16110 A0:n40026026006 A1:n40026026007 A2:n40026026014 +16113 A0:n40026026006 +A0:n40026026014 A1:n40026026007 +A0:n40026026014 A1:n40026026007 +16122 A0:n40026026006 A1:n40026027003 +16125 A0:n40026026006 +A0:n40026026006 A1:n40026027003 A2:n40026027007 +16128 A0:n40026026006 +A0:n40026027012 +16144 A1:n40026028005 +16149 A0:n40026026006 A2:n40026029003 +16153 A0:n40026026006 +16168 A0:n40026026006 A1:n40026029020 +16179 A0:n40026026006;n40026026014 +A0:n40026026006;n40026026014 +16187 A2:n40026031003 A0:n40026031005 +16193 A1:n40026031007 +16201 A1:n40026031017;n40026031021 +A0:n40025034013 A1:n40026031019 +16206 A1:n40026031023 +16214 A1:n40026032005 +16216 A0:n40026031005 +16222 A1:n40026033004 +16225 A0:n40026033004 A2:n40026033006 +16229 A1:n40026033008 +16234 A1:n40026033012 +A2:n40026034002 A0:n40026034004 +16240 A0:n40026034004 A2:n40026034007 +16249 A0:n40026034014 +16251 A0:n40026033004 A1:n40026034018 +16253 A2:n40026035002 A0:n40026035004 +16258 A0:n40026035010 +16262 A0:n40026035007 +16266 A0:n40026035004 A1:n40026035013 +16272 A0:n40026035019 +16274 A0:n40026036006 +16284 A0:n40026036006 A2:n40026036014 +16287 A0:n40026036014 +16291 A0:n40026036006 +16293 A0:n40026036006 +16295 A0:n40026036006 A1:n40026037004;n40026037008 +16303 A0:n40026036006 A1:n40026037011;n40026037013 +A1:n40026036006 +16306 A0:n40026036006 +16308 A0:n40026036006 A2:n40026038003 +16317 A0:n40026037004;n40026037008 +16320 A0:n40026037004;n40026037008 +16324 A0:n40026036006 +16326 A0:n40026036006 +16330 A0:n40026036006 +16332 A0:n40026036006 +16337 A0:n00000000000 +A0:n40026039020 +16348 A0:n40026039025 +16353 A0:n40026036006 +16358 A0:n40026036006 A1:n40026040009 +16360 A0:n40026040008 +16362 A0:n40026036006 A2:n40026040013 +16367 A0:n40026040005 A1:n40026040019 +16370 A0:n40026040005 +16373 A0:n40026040005 +16375 A0:n40026040005 +16378 A0:n40026040005 +16392 A0:n40026036006 +A0:n40026036006 +A0:n40026036006 +16399 A0:n40026042012 A1:n40026042013 +16401 A0:n40026039020 +16405 A0:n40026036006 A1:n40026042016 +A1:n40026042020 +16411 A0:n40026036006 +16413 A0:n40026036006 A1:n40026043006 +16415 A0:n40026043005 +16418 A1:n40026043011 +16423 A0:n40026036006 A1:n40026044003 +16426 A0:n40026036006 +A0:n40026036006 +16433 A0:n40026036006 A1:n40026044011 +16436 A0:n40026036006 +16441 A0:n40026036006 A2:n40026045008 +16443 A0:n40026045005 +16446 A0:n40026045005 +A0:n40026045005 +A0:n40026045016 +16456 A1:n40026045019 +16460 A1:n40026045005 +A0:n40026045005;n40026036006 +A0:n40026045005 +A0:n40026046006 +16465 A0:n00000000000 A1:n40026046007 +16470 A0:n40026047003 +16476 A0:n40026047006 +16495 A0:n40026047006 A1:n40026048004 +16497 A0:n40026048003 A2:n40026048006 A1:n40026048007 +16500 A0:n40026048003 +16503 A0:n40026048003 A1:n40026048009 +16506 A0:n40026047014 A1:n40026048015 +16510 A0:n40026048003 +16513 A0:n40026048003 +A0:n40026049008 +16517 A0:n40026048003 A1:n40026049011 +16522 A0:n40026050003 A2:n40026050005 +16527 A0:n40026050006 +16529 A0:n40026047014 +A0:n40026047014 A1:n40026050014 +16537 A0:n40026047014 A1:n40026050020 +16545 A0:n40026051003 A1:n40026051009 +16548 A0:n40026051003 A1:n40026051012 +16553 A0:n40026051003 A1:n40026051017 +16558 A0:n40026051003 A1:n40026051023 +16563 A2:n40026052003 A0:n40026052005 +16567 A0:n40026051003 A1:n40026052008 +16578 A0:n00000000000 A1:n40026052018 +16582 A0:n40026052017 +16584 A0:n40026051003 +16587 A0:n40026052005 A1:n40026053006 +A0:n40026052005 A1:n40026053008 +16593 A0:n40026053008 A2:n40026053012 A1:n40026053014 +16602 A1:n40026054005 +16607 A0:n40026054009 +A0:n00000000000 +16613 A0:n40026055007 A2:n40026055009 +16621 A0:n40026055009 +16626 A0:n40026055009 A1:n40026055019 +16633 A0:n40026055007 +A0:n40026055007 +16637 A0:n40026055009 A1:n40026055030 +16642 A0:n40026056001 +16644 A1:n40026056008 +16653 A0:n40026056013 A1:n40026056016 +16655 A0:n40026056013 +16658 A0:n40026055009 A1:n40026057005 +16661 A0:n40026057003 +16672 A1:n40026057013;n40026057016 +16676 A0:n40026058003 A1:n40026058005 +16686 A0:n40026058003 +16688 A0:n40026058003 +16692 A0:n40026058003 A1:n40026058022 +16702 A0:n40026059003;n40026059006 A1:n40026059009 +16709 A0:n40026059003;n40026059006 A1:n40026059014 +16712 A0:n40026059003;n40026059006 +16715 A0:n40026060006 +16718 A0:n40026060010 +16720 A0:n40026060010 +16722 A0:n40026061002 +A0:n40026059012 A1:n40026061005;n40026061014 +A0:n40026059012 A1:n40026061007 +16733 A0:n40026059012 +16735 A0:n40026062004 +16738 A0:n40026062004 A2:n40026062006 +16741 A0:n40026059012 +16745 A1:n40026062009 A0:n40026062010 +16749 A0:n40026063003 +16753 A0:n40026063007 A2:n40026063009 +16755 A0:n40026063007 A1:n40026063011 +16761 A0:n40026063014 +16764 A0:n40026063003 A2:n40026063018 +16774 A2:n40026064002 A0:n40026064004 +16779 A0:n40026064005 +16781 A0:n40026064004 A2:n40026064009 +16785 A0:n40026063007;n40026059003;n40026059006 A1:n40026064017;n40026064023 +16790 A0:n40026064014 +16796 A0:n40026064014 +16805 A0:n40026065003 A1:n40026065006 +16809 A0:n40026065003 +A0:n40026064004 +16815 A0:n40026065003;n40026059003;n40026059006 A1:n40026065012 +A0:n40026059003;n40026059006 +16818 A0:n40026059003;n40026059006 A1:n40026065019 +16823 A0:n40026066001 AA2:n40026066002 +16826 A1:n40026059003;n40026059006 +A0:n40026066004 +16832 A0:n40026059003;n40026059006 +16838 A0:n40026059003;n40026059006 A1:n40026067009 +16842 A0:n40026067010 +A0:n40026067010 +A0:n40026068004 A1:n00000000000 A2:n40026068003 +16850 A0:n00000000000 A1:n40026068009 +16855 A0:n40026069003 +16861 A0:n40026069013 +16865 A0:n40026069013 +16875 A0:n40026070001 +16878 A0:n40026069003 +16880 A0:n40026069003 A1:n40026070010 +16882 A0:n40026069013 A1:n40026070009 +16884 A0:n40026069003 +16888 A1:n40026071007 A0:n40026071008 +16892 A0:n40026071008 A2:n40026071012 +16903 A0:n40026069003 +16908 A0:n40026069003 A1:n40026072010 +16914 A0:n40026073006 +16916 A0:n00000000000 +A0:n40026073006 A2:n40026073009 +16933 A0:n40026073019 A1:n40026073022 +16935 A0:n40026073009 A1:n40026074003;n40026074005 +A0:n40026073009 +16938 A0:n40026073009 +16941 A0:n40026073009 A1:n40026074010 +16947 A0:n40026074013 +16949 A1:n40026075004 A1:n40026075006 +16955 A0:n40026075007 +16959 A0:n40026075011 +16961 A0:n40026075004 A1:n40026075015 +16964 A0:n40026075004 +16966 A0:n40026075004 +16970 A0:n40027001001 +16972 A1:n40027001004 A0:n40027001008;n40027001011 +16985 A0:n40027001008;n40027001011 A1:n40027001019 +16988 A0:n40027001008;n40027001011 A1:n40027002003 +16990 A0:n40027001008;n40027001011 A1:n40027002003 +16992 A0:n40027001008;n40027001011 A1:n40027002003 A2:n40027002007 +16999 A0:n40027003003 A1:n40027003006 +17001 A0:n40027003003 +17003 A1:n40027001016 +A1:n40027003003 +A0:n40027003003 A1:n40027003013 A2:n40027003015;n40027003017 +17013 A0:n40027003003 +A0:n40027003003 +A0:n40027003003 A1:n40027004004 +17020 A0:n40027004006 +17025 A0:n40027004012 +17027 A0:n40027003003 A1:n40027005004 +17033 A0:n40027003003 +17035 A0:n40027003003 +A0:n40027003003 +17040 A0:n40027006003 A1:n40027006006 +17043 A0:n40027006003 +17045 A0:n40027006010 +A0:n00000000000 A1:n40027006011 +17057 A0:n40027006003;n40027003017 A1:n40027007001 +A0:n40027006003;n40027003017 A1:n40027007008 +17080 A1:n40027009004 +17082 A1:n00000000000 +17087 A0:n40027009006 +17089 A0:n00000000000 A1:n40027009014 +17096 A1:n00000000000 +17098 A0:n00000000000 A1:n40027009019 +17103 A0:n00000000000 A1:n40027010003 +17111 A2:n40027010011 A1:n00000000000 A0:n40027010012 +17117 A1:n40027011003 +17122 A1:n40027011010 A0:n40027011012 +17126 A0:n40027011012 +17136 A0:n40027011022 +17138 A0:n40027011024 +17142 A1:n40027012005 +17150 A0:n40027011022 A1:n40027012011 +17152 A2:n40027013003 A0:n40027013005 +17157 A0:n40027011022 A1:n40027013010 +17160 A0:n40027012008;n40027012010 A1:n40027013008 A2:n40027013009 +17163 A1:n40027011022 A2:n40027014004 +17170 A0:n40027014012 +17177 A0:n40027015006 A1:n40027015007 +17180 A0:n40027015006 A2:n40027015010 A1:n40027015011 +17186 A0:n40027015010 A1:n40027015012 +17188 A0:n00000000000 A1:n40027016004 +17195 A1:n40027017003 +17197 A2:n40027017005 A0:n40027017007 +17201 A0:n40027015010 A1:n40027017010 +17203 A0:n40027017007 A1:n40027017008 A2:n40027017011 +17212 A0:n40027017007 +17216 A0:n40027012008;n40027012010 A1:n40027018007 +17219 A0:n40027019003 +17224 A0:n40027019011 +17230 A0:n40027019011 +17239 A0:n40027019011 A1:n40027019020 +17251 A0:n40027020003;n40027020006 A1:n40027020009 +17255 A0:n40027020009 A1:n40027020013 +17261 A0:n40027020009 A1:n40027020016 +17263 A1:n40027021004 +17266 A0:n40027021004 A2:n40027021006 +17268 A0:n40027020009 A1:n40027021012 +17273 A0:n40027021004 A1:n40027021007 A2:n40027021013 +17277 A0:n40027021014 +17280 A2:n40027022002 A0:n40027022004 +17286 A0:n40027022004 A1:n40027022005 +17291 A0:n40027022013 +17293 A1:n40027022008 +17296 A0:n40027023001 +17300 A0:n40027022008 A1:n40027023004 +17304 A0:n40027023008 +A0:n40027020009 +A1:n40027022008 +17310 A0:n40027024004 +17313 A0:n40027024004 A1:n40027024006 +17317 A0:n40027024010 +A0:n40027024004 A1:n40027024013 +17320 A0:n40027024004 A1:n40027024016 +17326 A0:n40027024004 +17334 A0:n40027024027 +17336 A1:n40027025005 +17340 A0:n40027025005 +17352 A0:n40027024004 A2:n40027026003 A1:n40027026005 +17359 A0:n40027024004 A1:n40027026008 +A0:n40027024004 +17362 A1:n40027026008 +17368 A0:n40027027003 A1:n40027027008 +17374 A0:n40027027003 A1:n40027027017 +17381 A0:n40027027003 A1:n40027028003 +17385 A0:n40027027003 A1:n40027028004 A2:n40027028007 +17388 A0:n40027027003 A1:n40027029003 +17392 A0:n40027027003 +17404 A0:n40027027003 +17407 A0:n40027027003 A1:n40027029022 +17409 A0:n40027027003 +A0:n40027029025 +17415 A0:n40027027003 +17418 A0:n40027027003 A1:n40027030007 +17422 A0:n40027027003 +17429 A0:n40027027003 A1:n40027031004 +17431 A0:n40027027003 A2:n40027031006 A1:n40027031008 +17436 A0:n40027027003 A2:n40027031011 A1:n40027031013 +17442 A0:n40027027003 A1:n40027031017 +17446 A0:n40027027008 +17448 A0:n40027027003 +A0:n40027027003 A1:n40027032004 +17455 A0:n40027027003 A1:n40027032008 +17457 A0:n40027032004 A1:n40027032013 +17462 A0:n40027027003 +17472 A0:n40027027003 A2:n40027034002 A1:n40027034003 +17474 A0:n40027027008 A1:n40027034004 +17478 A1:n40027034004 +17480 A0:n40027027008 +17482 A0:n40027027008 A1:n40027034012 +A0:n40027027008 +17485 A0:n40027027003 A1:n40027035003 +17487 A0:n40027027003 A1:n40027035006 +17491 A0:n40027027003 A1:n40027035009 +17494 A0:n40027027003 +A0:n40027027003 A1:n40027036004 +17499 A0:n40027027003 A1:n40027037008 +17507 A1:n40027037008 +17516 A1:n40027038006 +17530 A0:n00000000000 +A0:n40027039003 A1:n40027039005 +17533 A0:n40027039003 A1:n40027039008 +17538 A0:n40027039003 +17540 A0:n40027027008 A1:n40027040006 +17547 A0:n40027027008 +A0:n40027040004 A1:n40027040013 +17556 A0:n40027040004 +17563 A0:n40027041003 +17569 A0:n40027041003 +17571 A0:n40027027008 A1:n40027042001 +17573 A0:n40027027008 A1:n40027042003 +17575 A0:n40027027008 A1:n40027042006 +17579 A0:n40027027008 +17585 A0:n40027041003;n40027041008;n40027041010 +17588 A0:n40027027008 +17592 A0:n40027043004 +17595 A0:n40027043004 A1:n40027043009 +17598 A0:n40027027008 +17610 A1:n40027044006 +17613 A0:n40027044006 A1:n40027044012 +17620 A0:n40027045005 +17633 A0:n40027046008 +17638 A0:n40027046008 +17642 A0:n40027046012 +17657 A0:n00000000000 +A0:n40027047001 +A0:n40027047001 +17662 A1:n40027047009 A0:n40027047011 +17669 A0:n40027048004 +17671 A0:n40027048004 A1:n40027048009 +17674 A0:n40027048004 A1:n40027048009 +17677 A0:n40027048004 A1:n40027048009 A2:n40027048015 +17679 A0:n40027048004 A1:n40027048017 +17684 A0:n40027049003 +A0:n40027048004 +A0:n40027049003;n40027048004 +17688 A0:n40027049009 +17690 A0:n40027049009 A1:n40027049011 +17696 A0:n40027050003 +17699 A0:n40027050003 A1:n40027050010 +17708 A1:n40027051004 +17718 A1:n40027051016 +17722 A1:n40027051020 +17726 A1:n40027052003 +17731 A0:n40027052010 +17733 A1:n40027052007 +17735 A0:n40027052010 +17743 A0:n40027052010 +17749 A1:n40027052010 A2:n40027053017 +17758 A0:n00000000000 A1:n40027054010 +17761 A0:n40027054003;n40027054008 A1:n40027054013;n40027054016 +17766 A0:n00000000000 +A0:n40027054003;n40027054008 +17769 A0:n40027054003;n40027054008 +17782 A0:n40027055004 +17784 A0:n40027055009 A1:n40027055012 +17790 A0:n40027055004 A1:n40027055017 +17814 A0:n40027057001 +A0:n40027057005 +17825 A1:n40027057011 A2:n40027057016 +17829 A0:n40027057005 +17832 A0:n40027058001 A2:n40027058004 A1:n40027058007 +17840 A0:n40027058012 A1:n40027058014 +A1:n40027058007 +17843 A0:n40027059006 A1:n40027059004 +17848 A0:n40027059006 A1:n40027059008 +17854 A0:n40027059006 A1:n40027060003 +17862 A0:n40027059006 A1:n40027060009 +17867 A0:n40027059006 A1:n40027060016 +17874 A0:n40027059006 +17885 A0:n40027061004;n40027061010 +17897 A1:n40027062011;n40027062014 +17905 A0:n40027062011;n40027062014 +17907 A1:n40027062011;n40027062014 +17912 A0:n40027063007 +17914 A0:n40027063007 +17918 A1:n40027063007 +17920 A0:n40027062016 A1:n40027064003 +A1:n40027064005 +17930 A0:n40027064014 +17933 A0:n40027064014 A1:n40027064016 +17936 A0:n40027064014 A2:n40027064020 +17939 A1:n40027063007 +17951 A2:n40027065002 A0:n40027065004 +17955 A0:n40027062011;n40027062014 A1:n40027065006 +17957 A0:n40027062011;n40027062014 +A0:n40027062011;n40027062014 +17960 A0:n40027062011;n40027062014 +17963 A1:n40027062011;n40027062014 +A0:n40027066001 A1:n40027066006 +17967 A0:n40027062011;n40027062014 A1:n40027066009 +17977 A0:n00000000000 +17981 A0:n40028001010;n40028001016 +17989 A0:n40028001010;n40028001016 A1:n40028001019 +17996 A0:n40028002003 +18000 A0:n40028002006 +18004 A0:n40028002006 +A0:n40028002006 A1:n40028002016 +18009 A0:n40028002006 +18031 A1:n40028004008 +18033 A0:n00000000000 +18039 A1:n40028005004 +18042 A0:n40028005004 A2:n40028005007 +18046 A0:n40028005010 +18049 A0:n40028005004 +18053 A1:n40028005014 +A0:n40028005007 A1:n40028005014 +18059 A1:n40028005014 +18061 A0:n40028005014 +A0:n40028005007 +A0:n40028005007 A1:n40028006011 +18067 A0:n40028005014 +18070 A1:n40028005007 +A0:n40028005007 A2:n40028007006 +18076 A1:n40028005014 +18081 A0:n40028007006 +A0:n40028005014 +18089 A0:n40028007006 A1:n40028007021 +A0:n40028005007 +A0:n40028005004 A2:n40028007025 +18094 A0:n40028005007 +18104 A0:n40028005007 +A0:n40028005007 A1:n00000000000 A2:n40028008015 +18112 A0:n40028009003 A1:n40028009005 +18114 A0:n40028009003 +A0:n40028005007 +18118 A0:n40028005007 +A0:n40028009008 A1:n40028009014 +18124 A0:n40028005007 A1:n40028009017 +18127 A2:n40028010003 A0:n40028010005 +18132 A0:n40028005007 +A0:n40028005007 +A0:n40028005007 A2:n40028010011 +18139 A0:n40028010011 +18145 A0:n40028010011 A1:n40028010019 +18147 A0:n40028011003 +18153 A0:n40028011005 +18157 A0:n40028011005 A2:n40028011014 A1:n40028011017 +18162 A0:n00000000000 +18164 A1:n40028011014 +18170 A0:n40028011014 A1:n40028012006 +18173 A0:n40028011014 A1:n40028012009 A2:n40028012013 +18176 A0:n40028011014 +A0:n40028012013 +18183 A0:n40028013005 +A0:n40028013005 A1:n40028013010 +18187 A0:n40028013011 +18190 A1:n40028014004 +18196 A0:n40028014008 A1:n40028014007 +18200 A0:n40028011014;n40028012005 A1:n40028014011 +18203 A0:n40028012013 A1:n40028015004 +18205 A0:n40028015001 +18207 A1:n40028012013 +18209 A1:n40028015012 +18223 A0:n40028016004 +18231 A2:n40028016014 A1:n00000000000 A0:n40028016016 +18236 A0:n40028016004 A1:n40028017003 +18238 A0:n40028016004 A1:n40028017003 +18241 A0:n40028017005 +18243 A0:n40028018004 +18246 A0:n40028018004 A2:n40028018006 +18248 A0:n40028018004 +A2:n40028018009 A1:n40028018011 +18260 A1:n40028016004 +A0:n40028016004 A1:n40028019006 +18265 A0:n40028016004 A1:n40028019008 +18279 A0:n40028016004 A1:n40028020003 +18281 A0:n40028020002 A1:n40028020004 +18284 A0:n40028018004 A1:n40028020005 A2:n40028020007 +18287 A0:n40028016004 +18308 A1:n41001002009;n41001002017;n41001003001 +18315 A0:n00000000000 A1:n41001002011 +18323 A0:n41001002016 A1:n41001002019 +18328 A0:n00000000000 +18332 A0:n00000000000 A1:n41001003008 +18337 A0:n00000000000 A1:n41001003013 +18341 A0:n41001004002 +18344 A0:n41001004002 +18348 A0:n41001004002 A1:n41001004009 +18355 A0:n41001005008;n41001005011 +18367 A1:n41001005008;n41001005011 +18374 A0:n41001005008;n41001005011 A1:n41001005023 +18382 A0:n41001006004 A1:n41001006006 +18393 A0:n41001006004 A1:n41001006017;n41001006019 +18399 A0:n41001006004 +A0:n41001006004 +A0:n41001007006 +18411 A0:n41001006004 +A0:n41001006004 A1:n41001007017 +18419 A0:n41001008001 A1:n41001008003 +18424 A0:n41001008005 A1:n41001008008 +18429 A0:n00000000000 +18434 A0:n41001009008 +18441 A1:n41001009008 +18449 A0:n41001009008 +18453 A0:n41001009008 A1:n41001010008;n41001010016 +A1:n41001010010 +18462 A0:n41001010013 +18467 A0:n41001011002 +18480 A0:n41001011002 +18486 A0:n41001012004 A1:n41001012005 +18497 A1:n41001009008 +18509 A0:n41001013019 A1:n41001013021 +18514 A1:n41001014006 +18517 A0:n41001014009 +18523 A0:n41001014009 A1:n41001014015 +18529 A0:n41001014009 +18531 A1:n41001015006 +18535 A0:n41001015010 +18540 A0:n00000000000 +18542 A0:n00000000000 +18547 A0:n41001014009 +18553 A0:n41001014009 A1:n41001016015 +18560 A0:n41001016009;n41001016011 +18568 A2:n41001017003 A0:n41001017005 +18572 A0:n41001016009;n41001016011 +18576 A0:n41001017005 A1:n41001017013 +18583 A0:n41001016009;n41001016011 A1:n41001018005 +18586 A0:n41001016009;n41001016011 A1:n41001018007 +18589 A0:n41001017005 +18591 A0:n41001017005 A1:n41001019005;n41001019010;n41001019019 +18606 A0:n41001019015 A1:n41001019021 +18611 A0:n41001017005 A1:n41001020004 +18614 A0:n41001019005;n41001019010 A1:n41001020008 +18625 A0:n41001019005;n41001019010 +18629 A0:n41001017005;n41001016009;n41001016011;n41001019005;n41001019010 +18636 A0:n41001017005 +18640 A0:n41001017005 +18642 A1:n00000000000 +18649 A0:n41001017005 A1:n41001022010 +18653 A0:n00000000000 A1:n41001022012 +18671 A0:n41001023010 +A0:n41001023010 +18679 A0:n41001024006 +A0:n41001024006 A1:n41001024010 +18682 A0:n41001023010 A1:n41001024012 +18691 A1:n41001025003 A0:n41001025005 +18695 A1:n41001023010 +18697 A0:n41001023010 +18705 A0:n41001026005 A1:n41001026003 +18708 A0:n41001026005 +18711 A0:n41001026005 +18715 A0:n41001027003 +18718 A0:n41001027006 +18720 A0:n41001027003 +18733 A0:n41001025005 A1:n00000000000 A2:n41001027017 +18735 A0:n41001027017 A1:n41001027023 +18738 A0:n41001028004 +18755 A0:n41001025005;n41001016009;n41001016011;n41001019005;n41001019010 +A0:n41001025005;n41001016009;n41001016011;n41001019005;n41001019010 +18771 A0:n41001030003 +A0:n41001030003 +18775 A0:n41001016009;n41001016011;n41001019005;n41001019010 A2:n41001030010 +18780 A0:n41001025005 +A0:n41001025005 A1:n41001031004 +18783 A0:n41001025005 A1:n41001031007 +18787 A1:n41001031010 A0:n41001031012 +18792 A0:n41001030003 A1:n41001031015 +18796 A0:n41001032001 +18798 A0:n41001032007 +18801 A0:n00000000000 A1:n41001032014;n41001032017 +18807 A0:n00000000000 +18810 A0:n00000000000 +18813 A1:n41001033005 +18821 A0:n41001025005 A1:n41001034003 +18824 A0:n41001034003 +18830 A0:n41001025005 A1:n41001034009 +18833 A0:n41001025005 A1:n41001034015 +A0:n41001034017 +18838 A0:n41001034017 A1:n41001034020 +18844 A0:n41001025005 +A0:n41001025005 +18847 A0:n41001025005 +18852 A0:n41001025005 +18854 A1:n41001036003 A0:n41001036004;n41001036006 +18862 A0:n41001036004;n41001036006 A1:n41001037003 +18865 A0:n41001036004;n41001036006 A2:n41001037006 +18869 A0:n41001037008 A1:n41001037010 +18872 A0:n41001025005 A2:n41001038003 +18874 A0:n41001025005;n41001036004;n41001036006 +18878 A0:n41001038009 +18883 A0:n41001025005 +18887 A0:n41001025005 +18889 A0:n41001025005 +A0:n41001025005 +18902 A0:n41001025005 A1:n41001039014 +18904 A0:n41001040005 +18908 A0:n41001040005 A1:n41001040007 +18911 A0:n41001040005 +A0:n41001040005 A2:n41001040011 +18916 A0:n41001025005 +A0:n41001025005 A1:n41001040017 +18919 A0:n41001025005 A1:n41001040016 +18921 A1:n41001025005 +A0:n41001025005 A1:n41001041005 +18926 A0:n41001025005 +18928 A0:n41001025005 A2:n41001041010 +18930 A0:n41001025005 +A1:n41001040005 +18934 A0:n41001042007 +18940 A1:n41001040005 +18942 A0:n41001025005 A1:n41001043003 +18945 A0:n41001025005 A1:n41001043006 +18948 A0:n41001025005 A2:n41001044003 +18950 A0:n41001040005 +18953 A0:n41001040005 A2:n41001044005 A1:n41001044006 +18955 A0:n41001040005 +18957 A0:n41001040005 A1:n41001044010 A2:n41001044013 +18961 A0:n41001040005 A1:n41001044021 +18967 A1:n41001044020 A0:n41001044022 +18974 A0:n41001040005 +A0:n41001045001 A1:n41001045005;n41001045008 +A0:n41001040005 A1:n41001045006 +18979 A0:n41001040005 A1:n41001045010 +18985 A0:n41001045013 A1:n41001045018 +18989 A0:n41001025005 +18997 A0:n00000000000 +19002 A0:n41001025005 +19008 A1:n41002001011 +19014 A1:n41002002003 +19018 A0:n41002002008 +19025 A0:n41001025005 A2:n41002002014 A1:n41002002016 +19030 A0:n00000000000 +A0:n00000000000 A1:n41002003006 +19035 A1:n41002003006 +19040 A0:n00000000000 A1:n41002004004 +A0:n00000000000 A1:n41002003006 A2:n41002004005 +19046 A0:n00000000000 A1:n41002004011 +19052 A0:n00000000000 +A0:n00000000000 A1:n41002004018 +19059 A0:n41002004021 +19063 A0:n41002005004 A1:n41002005006 +19067 A0:n41002005004 A2:n41002005010 +19071 A1:n41002005015 +19081 A0:n41002006003 +19083 A0:n41002006003 +19091 A0:n41002007002 +A0:n41002005004 +19094 A0:n41002007006 A1:n41002007008 +A0:n41002007006 A1:n41002007009 +19106 A0:n41002008005 +19112 A0:n41002006003 +19115 A0:n41002008005 A2:n41002008015 +19119 A0:n41002006003 A1:n41002008017 +19127 A0:n00000000000 A2:n41002009006 +19130 A1:n41002009010 +19135 A0:n00000000000 +A0:n41002009006 +19138 A0:n41002009006 A1:n41002009017 +19143 A0:n41002009006 +19146 A0:n41002006003 +19149 A1:n41002010005 A0:n41002010008 +19154 A0:n41002010008 A1:n41002010012 +19159 A0:n41002008005 A2:n41002010018 +19163 A0:n41002008005 A2:n41002011001 +A0:n41002010018 +A0:n41002010018 A1:n41002011006 +19170 A0:n41002010018 +19176 A1:n41002010018 +19179 A0:n41002010018 A1:n41002012007 +19182 A0:n41002010018 +19186 A0:n41002012013 +19189 A0:n41002012013 A1:n41002012017 +19192 A0:n41002012013 +19196 A0:n41002012013 +19198 A0:n41002008005 +19207 A0:n41002013010 +19211 A0:n41002008005 A1:n41002013016 +19214 A0:n41002008005 +A0:n41002008005 A1:n41002014008 +19220 A0:n41002014004 +19225 A0:n41002008005 A2:n41002014014 +19227 A0:n41002014004 A1:n41002014016 +19230 A0:n41002014004 +A0:n41002014004 A1:n41002014020 +19234 A0:n41002015003 +A0:n41002015004 +19246 A0:n41002015011;n41002015013 +19257 A0:n41002015011;n41002015013 A1:n41002015026 +19264 A0:n41002016003 +19266 A0:n41002015016 +19272 A0:n41002016003 A2:n41002016016 +19282 A0:n41002015016 +19284 A0:n41002017004 +19287 A0:n41002017004 A2:n41002017006 +19292 A1:n41002017008 A0:n41002017011 +19294 A0:n00000000000 +19298 A0:n00000000000 +19300 A0:n41002017004 +A0:n41002017004 A1:n41002017020 +19307 A0:n41002018004;n41002018008 +19315 A0:n00000000000 +19317 A0:n00000000000 A2:n41002018014 +19329 A0:n41002018018;n41002018022 +19335 A0:n41002018029 +19337 A2:n41002019003 A0:n41002019005 +19342 A0:n41002019009 A1:n41002019019 +19354 A0:n41002019009 +19357 A0:n41002019009 A1:n41002019024 +19363 A0:n41002019009 A1:n41002019029 +A0:n41002019009 +19366 A0:n41002020003 +19369 A1:n41002020009 +19376 A0:n41002019009 +19385 A0:n41002021001 A1:n41002021002 +19392 A0:n41002021014 +19404 A0:n41002021023 +19407 A0:n41002022002 A1:n41002022004 +19416 A0:n41002022014 A1:n41002022016 +19424 A1:n41002022019 +19435 A0:n41002023007 +19440 A0:n41002023003 +19448 A0:n41002023013 A1:n41002023017 +19450 A0:n41002023013 A1:n41002023016 +A0:n41002023013 A1:n41002023020 +19457 A0:n41002024003 A2:n41002024005 +19459 A0:n41002017004 +19461 A0:n41002023013 A1:n41002024013 +19466 A0:n41002024011 +19468 A0:n41002017004 A2:n41002025003 +19471 A0:n41002024003 +19473 A1:n41002025006 A0:n41002025008 +19477 A0:n41002025008 A1:n41002025010 +19479 A0:n41002025014;n41002025016 +19486 A0:n41002025008 +19500 A0:n41002025008 A1:n41002026013 +19502 A0:n00000000000 A1:n41002026017 +19504 A0:n41002026020 +19510 A0:n41002025008 A1:n41002026013 A2:n41002026030 +19515 A0:n00000000000 +19517 A0:n41002017004 A2:n41002027003 +19524 A0:n41002027005 +19543 A0:n41002017004 +19551 A1:n41003001013 +A0:n41003001009 A1:n41003001013 +19556 A0:n41002024003 A1:n41003002003 +19561 A0:n41002017004 A1:n41003002008 +19564 A0:n41002024003 A1:n41003002011 +19567 A0:n41002017004 A2:n41003003004 +19574 A0:n41003003004 A1:n41003003007 +A0:n41003003004 +19580 A0:n41002017004 A2:n41003004003 +19582 A0:n41003004008;n41003004010 +19586 A0:n00000000000 A1:n41003004007 +19588 A0:n00000000000 +19590 A0:n00000000000 A1:n41003004011 +19592 A0:n00000000000 +19595 A0:n41003004015 +19597 A0:n41002017004 A1:n41003005003 +19601 A0:n41002017004 +19608 A0:n41002017004 A2:n41003005015 +19611 A0:n41003005015 A1:n41003005018 +19615 A0:n41003005015 +19617 A1:n41003005024 +19622 A0:n41003006004 +19630 A0:n41003006004 A1:n41003006009 +19635 A0:n41003006004;n41003006008 A1:n41003006014 +19643 A0:n41003007003 +19653 A0:n41003007014 +19676 A0:n41003008017 A1:n41003008021 +19678 A0:n41003007003 A1:n41003008020 +A0:n41003008017 +19683 A0:n41003007003 A2:n41003009004 +19689 A0:n41003009007 A1:n41003009009 +19696 A0:n41003009012 A1:n41003009016 +19700 A0:n41003007003 A1:n41003010001 +19702 A0:n41003010011 +19706 A1:n41003010008 A0:n41003010011 +19708 A0:n41003010010 A1:n41003010012 +19717 A0:n41003011003 A1:n41003011007 +A0:n41003011003 +19721 A0:n41003011003 +A0:n41003011003 +19732 A0:n41003007003 A1:n41003012004 +19738 A0:n41003011003 A1:n41003012007 +19740 A0:n41003007003 +19745 A0:n41003007003 A1:n41003013009 +19747 A1:n41003013008 A0:n41003013010 +19750 A0:n41003013009 +19754 A0:n41003007003 A1:n41003014003 +19762 A0:n41003007003 A1:n41003014011 +19764 A0:n41003014003 +19766 A0:n41003014003 A1:n41003015003 +19768 A0:n41003014003 A1:n41003015006 +19772 A0:n41003007003 A1:n41003016004 +19776 A0:n41003007003 A1:n41003016007 A2:n41003016009 +19793 A0:n41003007003 A2:n41003017014 A1:n41003017015 +19827 A0:n41003019004 A1:n41003019007 +19830 A0:n41003007003 +19834 A0:n41003020009 +19840 A0:n41003020013 A1:n41003020016 +19844 A0:n41003007003;n41003016004 A1:n41003020015 +19846 A0:n41003021003 +19850 A0:n41003021003 +A0:n41003021003 A1:n41003021008 +19854 A0:n41003021003 +19856 A0:n41003007003 +19863 A0:n41003022003 +A0:n41003022003 +19867 A0:n41003007003 A1:n41003022010 +19875 A0:n41003007003 A1:n41003022021 +19879 A0:n41003007003 A1:n41003023003 +19883 A0:n41003007003 A2:n41003023007 +19886 A0:n41003023010 A1:n41003023012 +19889 A0:n41003023010 A1:n41003023011 +19895 A1:n41003024003 +19897 A1:n41003024009 A0:n41003024011 +A1:n41003024011 +19907 A1:n41003025003 +19909 A0:n41003025010 A1:n41003025012 +19913 A1:n41003025010 +19918 A0:n41003026004 +19922 A1:n41003026004 +19924 A0:n41003026004 A1:n41003026012 +A0:n41003026004 +19928 A0:n41003026004 A1:n41003026014 +19931 A0:n41003027004 A1:n41003027014 +19938 A0:n41003027004 +19942 A0:n41003027004 A1:n41003027012 +19948 A0:n41003027004 A1:n41003027019 +19954 A0:n41003027004 A1:n41003027024 +19956 A0:n41003007003 A2:n41003028003 +19959 A2:n41003028008 A1:n41003028012;n41003028015 +19972 A0:n41003028008 A1:n41003028016 +19976 A0:n41003029001 +19983 A0:n41003029004 A1:n41003029012 +19994 A0:n41003022003 +19997 A0:n41003007003 A1:n41003030003 +19999 A0:n41003031004;n41003031008 +20009 A0:n41003031004;n41003031008 +A0:n41003031004;n41003031008 +20013 A0:n41003031004;n41003031008 A1:n41003031017 +20016 A0:n41003032005 +20021 A0:n00000000000 A2:n41003032008 +20023 A0:n41003007003 +20036 A0:n41003032011;n41003032015;n41003032019 A1:n41003032023 +20039 A1:n41003007003 A2:n41003033003 +20041 A0:n41003007003 +20051 A0:n41003007003 A1:n41003034007 +20056 A0:n00000000000 +A0:n41003007003 +A0:n41003033003 +20068 A0:n41003035001 A1:n41003035005 +20083 A0:n41003007003 A1:n41004001004 +A0:n41003007003 +20089 A1:n41004001012 +20098 A0:n41003007003 +A0:n41004001015 +20115 A0:n41003007003 A2:n41004002003 A1:n41004002006 +20121 A0:n41003007003 A2:n41004002009 +20127 A0:n41004001026 +A0:n41004001026 +A0:n41004003005 +20131 A0:n00000000000 +A0:n41004003005 +20134 A0:n00000000000 +20137 A0:n41004003005 +20140 A0:n41004004006 +20145 A0:n41004004015 +20149 A0:n41004004015 A1:n41004004018 +20153 A0:n41004005002 +20159 A0:n41004005002 A1:n41004005010 +20164 A0:n41004005002 +20168 A0:n41004005002 A1:n41004005019 +20173 A0:n41004006005 +20176 A1:n41004005002 +20181 A0:n41004005002 A1:n41004006012 +20183 A1:n41004005002 +20186 A0:n41004007002 +20191 A0:n41004007010 +20195 A0:n41004007010 A1:n41004007013 +20200 A0:n41004007002 A1:n41004007015 +20203 A0:n41004008002 +20210 A0:n41004008002 A1:n41004008011 +20212 A0:n41004008002 +20214 A1:n41004008002 +20216 A0:n41004008002 +20226 A0:n41003007003 +20228 A0:n41004009003 A1:n41004009005 +20230 A0:n41004009003 +A0:n41004009004 +20234 A0:n41003007003 +20237 A2:n41004010007 A0:n41004010008 A1:n41004010015 +20248 A0:n41003007003 A2:n41004011003 +20251 A2:n41004011004 A1:n41004011006 +20266 A0:n41004011019 +20268 A0:n41004011015 +A0:n41004011015 +20272 A0:n41004011015 +20274 A0:n41004011015 +A0:n41004011015 +20278 A0:n41004011015 +20281 A0:n41004011015 +20283 A1:n00000000000 A2:n41004012018 +20286 A0:n41003007003 A2:n41004013003 +20289 A0:n41004010008;n41004010013 A1:n41004013007 +20298 A0:n41004010008;n41004010013 A1:n41004013013 +20300 A0:n00000000000 +20303 A0:n41004014002 A1:n41004014004 +20312 A1:n41004015011 +20317 A0:n41004015001 +20319 A0:n41004015018 +20323 A0:n41004015018 A1:n41004015022 +20327 A1:n41004015022 +20337 A1:n00000000000 +20341 A0:n41004016002 A1:n41004016014 +20347 A0:n41004016010 A1:n41004016019 +20351 A0:n41004016002 A1:n41004017004 +20359 A0:n41004017012;n41004017014 +20367 A1:n41004016002 +20375 A1:n00000000000 +20381 A0:n00000000000 A1:n41004018013 +20398 A0:n41004019003;n41004019008;n41004019016 +A0:n41004019003;n41004019008;n41004019016 A1:n41004019020 +20413 A1:n00000000000 +20416 A0:n41004020011 A1:n41004020014 +20420 A0:n41004020002 +20422 A0:n41004020002 +20432 A0:n41003007003 A2:n41004021003 +20436 A0:n41004021008 +20443 A1:n41004021008 +20456 A0:n41004022005 +20462 A1:n41004022005 +20464 A0:n41004022012 +20468 A0:n41004022012 +20473 A0:n41004023002 A1:n41004023004 +20475 A0:n41004023002 +A0:n41004023002 +20478 A0:n41003007003 A2:n41004024003 +20480 A0:n41004010008;n41004010013 +20482 A0:n41004010008;n41004010013 A1:n41004024005 +20486 A0:n41004010008;n41004010013 +A1:n41004024010 A2:n41004024012 +20490 A1:n00000000000 A2:n41004024015 +20494 A0:n41004025001 +A1:n00000000000 A2:n41004025005 +20500 A0:n41004025007 +20503 A0:n41004025009 A1:n41004025011 +A1:n41004025012 +20508 A0:n41003007003 +20517 A0:n41004026010 A1:n41004026013 +20524 A0:n41004026010 +20526 A1:n41004026010 +20533 A0:n41004027010 +20535 A0:n41004027010 +20538 A0:n41004027017 +20543 A0:n41004028003 +20556 A0:n41004029005 +20560 A0:n41004026010 A1:n41004029009 +20564 A0:n41004029013 +20568 A0:n41003007003 +20570 A0:n41003007003;n41004010008;n41004010013 A1:n41004030006 +20580 A0:n41003007003;n41004010008;n41004010013 A1:n41004030012 +20586 A1:n41004031002 +20601 A1:n41004031002 +A0:n41004031002 +20610 A0:n41004031002 A1:n41004032013 +20614 A1:n41004032025 A0:n41004032022 +20619 A0:n41004032022 +20628 A0:n41003007003 A2:n41004033006 A1:n41004033008 +20633 A0:n41004001026 A1:n41004033011 +A0:n41004001026 +20639 A0:n41003007003 A2:n41004034006 +20647 A0:n41003007003 A2:n41004034012 A1:n41004034014 +20650 A0:n41003007003 A2:n41004035003 +20657 A0:n41004035008 +A0:n41003007003;n41004034012 +20663 A0:n41004034012 A1:n41004036004 +20666 A0:n41004034012 A1:n41004036006 +20680 A0:n41004037003 +20687 A0:n41004037008 +20693 A1:n41004037017 +20705 A0:n41003007003 +20707 A0:n41004034012 A1:n41004038013 +20710 A0:n41004034012 A2:n41004038016 +20714 AA2:n41004038020 A0:n41004038022 +20717 A0:n41004038017;n41004034012 +20719 A1:n41003007003 +A0:n41003007003 A1:n41004039005 +20724 A0:n41003007003 A2:n41004039009 +20727 A0:n41004039009 +A1:n41004039009 +20730 A0:n41004039015 +20734 A0:n41004039018 +20738 A0:n41003007003 A2:n41004040003 +20749 A1:n41004034012 A1:n41004041003 +20753 A0:n41004034012 +20767 A0:n41004041016;n41004041019 A1:n41004041021 +20770 A0:n41003007003;n41004034012 +20782 A0:n41005002003 +20788 A1:n41005002009 A0:n41005002013 +20800 A0:n41005003001 A1:n41005003003 +20809 A0:n41005003012 A1:n41005003015 +20811 A0:n41005003012 A1:n41005003014 +20819 A1:n41005004003 +20821 A1:n41005004014 +20829 A1:n41005004017 +20832 A0:n41005004020 A1:n41005004023 +20834 A0:n41005004020 A1:n41005004022 +20849 A0:n41005002013 +20851 A0:n41005002013 A1:n41005005018 +20855 A0:n41005002013 A1:n41005006004 +20860 A0:n41005002013 +20862 A0:n41005002013 A1:n41005006010 +20865 A0:n41005002015 +20868 A0:n41005002015 +20879 A0:n41005002015 A1:n41005007017 +20885 A0:n41005007010 A1:n41005007021 +20887 A0:n41005006004 A2:n41005008003 +20893 A0:n41005008006 +20898 A0:n41005006004 A1:n41005009003 +20904 A0:n41005002015 A2:n41005009009 +20913 A0:n41005002015 A1:n41005010003 +20919 A0:n41005006004 A1:n41005010007 +20932 A1:n41005011007 +20934 A0:n41005013007 A1:n41005012003 +20936 A0:n41005013007 +A0:n41005006004 A1:n41005012006 +20945 A0:n41005013007 +20947 A0:n41005006004 A1:n00000000000 A2:n41005013003 +20950 A0:n41005013007 +20955 A0:n41005013007 +20960 A0:n41005013017 +20972 A1:n41005013017 +20978 A0:n00000000000 A1:n41005014004 +20980 A0:n41005014003 +20982 A0:n41005014003 +20991 A0:n00000000000 +A0:n00000000000 +20996 A0:n00000000000 +20998 A0:n00000000000 +21003 A0:n00000000000 A1:n41005015010 +21005 A0:n41005002013 +21007 A0:n41005015009 A1:n41005015017 +21010 A0:n41005015009 +A1:n00000000000 +21013 A0:n00000000000 +21015 A1:n00000000000 +21017 A2:n41005016003 A0:n41005016005 +21020 A0:n00000000000 +21022 A0:n00000000000 +21024 A0:n41005015009 +21030 A0:n00000000000 A1:n41005017003 +A0:n00000000000 A1:n41005017005 +21033 A0:n41005017004 +21039 A0:n41005018003 +21044 A1:n41005018008 A0:n41005018010 +21047 A1:n41005015009 +21054 A0:n41005015005 A1:n41005019004 +21057 A0:n41005015005 A2:n41005019007 +21059 A0:n41005018010 +21068 A0:n41005018010 A2:n41005019018 A1:n41005019023;n41005019025 +21074 A1:n41005019019 A0:n41005019021 A2:n41005019022 +21076 A0:n41005019021 A1:n41005019026 +21079 A0:n41005018010 +21081 A0:n41005018010 A1:n41005020005 +A0:n41005018010 A1:n41005020010 +21087 A1:n41005020009 A2:n41005020011 A0:n41005020013 +21093 A0:n41005020015 +21095 A0:n41005021004 +21105 A1:n41005021013 +21116 A0:n41005022003 +21123 A0:n41005022003 A1:n41005022010 +21125 A0:n41005022003 +21131 A0:n41005022003 A1:n41005023003 +21134 A0:n41005022003 +21142 A0:n41005021004 +A0:n41005021004 A1:n41005023016 A2:n41005023017 +21148 A1:n41005023008 +21150 A0:n41005023008 +21152 A0:n41005021004 +21156 A1:n41005024007 A0:n41005024008 +21161 A0:n41005024008 A1:n41005024012 +21173 A0:n41005025002 A1:n41005026002 +21178 A0:n41005025002 A1:n41005026012 +21185 A1:n41005025002 A1:n41005026014 +21191 A0:n41005025002 +A0:n41005025002 A1:n41005027002 +21197 A0:n41005025002 +21202 A0:n41005025002 A1:n41005027013 +21207 A0:n41005025002 +21210 A0:n41005025002 A1:n41005028008 +21215 A1:n41005025002 +21218 A1:n41005029005 +21225 A0:n41005025002 +21229 A1:n41005025002 +21237 A0:n41005030004 A1:n41005030012 +21244 A0:n41005030011 +A1:n41005030004 +21249 A0:n41005030004 +21251 A0:n41005030018 A1:n41005030022 +21256 A2:n41005031003 A0:n41005031005 +21261 A0:n41005030004 A1:n41005031010 +21264 A0:n41005031009 A1:n41005031011 +21267 A0:n41005030004 +21270 A0:n41005031014 A1:n41005031015 +21272 A0:n41005030004 +A0:n41005030004 A1:n41005032006 +21276 A0:n00000000000 A1:n41005032005 +21280 A1:n41005033003 +21282 A0:n41005033003 +A0:n41005033003 A1:n41005033009 +21285 A0:n41005033008 +21287 A0:n41005033003 +21289 A0:n41005033003 +21292 A0:n41005033003 A2:n41005033017 A1:n41005033020 +21299 A0:n41005034001 A2:n41005034004 +21305 A0:n41005034007 A1:n41005034010 +21307 A0:n41005034005 +21319 A0:n41005035002 +A0:n00000000000 +21324 A0:n00000000000 +21329 A0:n41005035011 +21332 A0:n41005035007 A1:n41005035018 +21338 A0:n41005036003 A1:n41005036007 +21341 A1:n41005036006 +A0:n41005036003 A2:n41005036010 +21346 A0:n41005036010 +21348 A0:n41005036010 +21351 A0:n41005036003 A1:n41005037007 +21355 A0:n41005037004 +21368 A0:n41005036003;n41005037011;n41005037013;n41005037015;n41005036010 +21375 A0:n41005036003 A1:n41005038010;n41005038012;n41005038014 +21378 A0:n00000000000 +21380 A0:n00000000000 +21383 A0:n41005036003 +A0:n41005036003 A2:n41005039004 +21387 A1:n00000000000 +21389 A0:n00000000000 +21393 A0:n41005039010 +21395 A0:n41005039010 +21397 A0:n00000000000 A1:n41005040003 +21401 A0:n41005036003 A1:n41005040007 +21403 A0:n41005040004 A1:n41005040010;n41005040015;n41005040017 +21416 A0:n41005036003 +21422 A0:n41005036003 A1:n41005041004 +21427 A0:n41005036003 A2:n41005041008 +21430 A0:n41005041009 +21437 A0:n41005036003 A2:n41005041016 +A0:n41005041015 +21441 A0:n41005042005 +21445 A0:n41005042005 +21451 A0:n41005040010;n41005040015;n41005040017 +21456 A0:n41005036003 A2:n41005043003 +21461 A0:n41005043006 A1:n41005043008 +21464 A0:n41005036003 +A2:n41005043012 A1:n41005043013 +21467 A0:n00000000000 +21469 A0:n41005036003 +21472 A0:n41005036003 +21478 A1:n41006001012 A0:n41006001014 +21484 A0:n41006002003 +21486 A0:n41005036003 A1:n41006002005 +A0:n41005036003 +21494 A0:n41006002011 +A1:n41006002011 +A0:n41006002011 +21505 A1:n41006002021 A2:n41006002024 +21544 A1:n41006002011 +21548 A2:n41006004003 A0:n41006004005 +21575 A0:n41006004005 A1:n41006005005 +21577 A0:n41006004005 A1:n41006005007 +21584 A0:n41006004005 A2:n41006005011 A1:n41006005014 +21587 A0:n41006004005 +21589 A0:n41006004005 +21595 A0:n41006004005 A1:n41006006010 +21599 A0:n41006004005 +21601 A0:n41006004005 A1:n41006007004 +21605 A0:n41006004005 A1:n41006007008 +21607 A0:n41006004005 A1:n41006007007 +21611 A0:n41006004005 A2:n41006007013 A1:n41006007014 +21619 A0:n41006004005 A2:n41006008003 +21623 A0:n41006007004 A1:n41006008005 +21640 A0:n41006007004 A1:n41006009003 +21644 A0:n41006007004 A1:n41006009008 +21648 A0:n41006004005 A2:n41006010003 +21652 A0:n41006007004 +21656 A0:n41006007004 +21659 A0:n41006007004 +21666 A0:n41006011004 A1:n41006011007 +21669 A0:n41006011004 A1:n41006011010 +21671 A0:n41006007004 +21673 A0:n41006007004 A1:n41006011015 +21685 A0:n41006007004 +A0:n41006007004 +21688 A0:n00000000000 +21692 A0:n41006007004 A1:n41006013002 +21694 A0:n41006007004 A1:n41006013009 +21699 A0:n41006007004 +21701 A0:n41006014004 +21712 A0:n00000000000 +21716 A0:n41006014015 +A1:n41006014015 +21723 A0:n41006014026 +21730 A0:n41006015001 +21736 A0:n41006015007 +21744 A0:n41006016004 +21747 A0:n41006016004 +21750 A1:n41006016006 A0:n41006016007 +21753 A1:n41006016010 +21758 A0:n41006017004 +A0:n41006017004 A1:n41006017008 +21763 A0:n41006017004 A1:n41006017011 +21777 A0:n41006017004 A1:n41006017023 +21779 A0:n41006018004 A2:n41006018006 +21786 A0:n41006018011 +21788 A0:n41006018006 A1:n41006018013 +21797 A0:n41006019003 A1:n41006019005 +21800 A0:n41006019003 A1:n41006019009 +21802 A0:n41006019003 A1:n41006019008 +21805 A0:n41006019003 +21809 A0:n41006020003 A1:n41006020006 +21812 A0:n41006020003 A1:n41006020008 +21819 A0:n41006020003 A1:n41006020015 +21822 A0:n41006020003 A1:n41006020018 +21825 A0:n41006020003 +21829 A0:n41006020003 A1:n41006020023 +21831 A0:n41006021003 +21840 A0:n41006021006 A1:n41006021010 A2:n41006021013;n41006021017;n41006021020 +21853 A0:n41006022004 +21860 A0:n41006022004 +A0:n41006022004 A1:n41006022012;n41006022015 +21866 A0:n41006021013;n41006021017;n41006021020 +21870 A0:n41006022018 A1:n41006022021 +21873 A0:n41006022021 A2:n41006022023 A1:n41006022026 +21877 A0:n41006022021 A1:n41006022024 +21882 A0:n41006022018 A2:n41006023003 +21887 A0:n41006022021 A1:n41006022026 A2:n41006023006 +A0:n41006022018 A1:n41006022026 A2:n41006023009 +21896 A0:n41006022021 +A0:n41006022021 A2:n41006024005 +21902 A0:n41006022021 A1:n41006024007 +21905 A0:n41006024009 +21910 A0:n41006024014 +21912 A0:n41006022021 +21919 A0:n41006022021 +A0:n41006022021 +A0:n41006022021 +21924 A0:n41006025008 A2:n41006025015 A1:n41006025019 +21943 A0:n41006021013;n41006021017;n41006021020 +21945 A0:n41006026005 A1:n41006026014 +A0:n41006026005 A1:n41006026015 +21950 A0:n41006027005 A1:n41006027006 +21954 A0:n41006027005 A1:n41006027008 +A0:n41006027006 A1:n41006027010 +21960 A0:n41006027006 +A0:n41006027006 A1:n41006028004 +21967 A0:n41006027006 A1:n41006028011 +21974 A0:n41006027006 A1:n41006028017 A2:n41006028019 +21987 A0:n41006029004 +21991 A0:n41006029004 +21993 A0:n41006029004 A1:n41006029010 +21998 A0:n41006029004 A1:n41006029014 +22003 A1:n41006030004 +22010 A0:n41006030004 A2:n41006030010 A1:n41006030013;n41006030016 +22014 A0:n41006030004 A1:n41006030012 +22017 A0:n41006030004 A1:n41006030015 +22019 A0:n41006030007 A2:n41006031003 +22021 A0:n41006031005 +22030 A0:n41006030004 +22035 A0:n00000000000 +22038 A0:n00000000000 +22042 A0:n41006030007;n41006030004 +A0:n41006030007;n41006030004 A1:n41006031025 +22045 A0:n41006030007;n41006030004 +22055 A0:n00000000000 A1:n41006033004 +22057 A0:n41006033003 +22059 A0:n41006033007 +22067 A0:n41006033007 +22070 A0:n41006033007 +22073 A0:n41006030007 +A0:n41006030007 A1:n41006034005 +22078 A1:n41006030007 +22086 A0:n41006034013 A1:n41006034016 +22089 A0:n41006030007 A1:n41006034019 +A0:n41006030007 A2:n41006034020 A1:n41006034021 +22098 A0:n41006035009 +22113 A0:n41006030007 A1:n41006036002 +22116 A0:n41006034005 +22123 A0:n41006034005 A2:n41006036012 A1:n41006036014 +22126 A0:n41006034005 +22129 A1:n41006030007 +A0:n41006037001 A2:n41006037005 +22132 A2:n41006037007 A0:n41006037008 A1:n41006037009 +22135 A0:n41006034005 +22137 A0:n41006035009 A2:n41006037012 +22139 A0:n41006035009 +A0:n41006035009 A1:n41006037017 +22145 A0:n41006035009 A2:n41006037020 A1:n41006037021 +22147 A0:n41006034005 +22150 A0:n41006038001 A2:n41006038004 +22154 A0:n41006035009 A1:n41006038007 +A0:n41006035009 +A0:n41006035009 +22158 A0:n41006035009 +A0:n41006035009 +22165 A0:n41006030007 A2:n41006039003 A1:n41006039004 +22167 A0:n41006039005 +22176 A0:n41006034005 +22185 A0:n41006030007 A1:n41006041005;n41006041009 +22193 A0:n41006030007 +22197 A0:n41006030007 +22199 A0:n41006030007 A1:n41006041018 +22203 A0:n41006030007 A1:n41006041018 A2:n41006041022 +22207 A0:n41006041022 A1:n41006041018 A2:n41006041025 +22213 A0:n41006030007 A1:n41006041029 A2:n41006041031 +22216 A0:n41006042003 +22219 A1:n41006042003 +22221 A0:n41006041022 A1:n41006043003 +22233 A0:n00000000000 A1:n41006044006 +22240 A0:n41006030007 A1:n41006045007;n41006045012 +22244 A0:n41006045005 +22249 A0:n41006045005 +22257 A0:n41006045019 A1:n41006045022 +22261 A0:n41006030007 A1:n41006046003 +22263 A0:n41006030007 +22267 A0:n41006030007 +22270 A0:n41006047002 +22285 A0:n41006030007 A1:n41006048004 +22287 A1:n41006048003 +22290 A0:n41006045005 +22302 A0:n41006030007 +22305 A0:n41006030007 +22310 A0:n41006030007 A1:n41006048028 +A0:n41006030007 +22315 A0:n41006045005 A1:n41006049008 +22320 A0:n41006049004 +A0:n41006049001 +22326 A0:n41006045005 +22330 A0:n41006050001 A1:n41006050003 +22332 A1:n41006050001 +22336 A0:n41006050007 +22340 A0:n41006030007 A2:n41006050015 +22342 A0:n41006045005 +22346 A0:n41006045005 +22348 A0:n41006030007 +22355 A0:n41006051011 +22364 A0:n41006045005 +22367 A0:n41006045005 +22373 A1:n41006052011 +22378 A0:n41006030007;n41006045005 +22382 A0:n41006030007;n41006045005 +22386 A1:n41006030007;n41006045005 +22388 A0:n41006054003 +22394 A0:n00000000000 A1:n41006054009 +22396 A0:n00000000000 +22402 A0:n00000000000 A1:n41006055014 +22408 A0:n00000000000 +A0:n00000000000 A1:n41006055013 +22411 A0:n00000000000 +22413 A0:n41006030007 +22417 A0:n41006030007 +22429 A0:n00000000000 A1:n41006056018 +22431 A0:n00000000000 +22433 A0:n00000000000 A1:n41006056021 +22442 A0:n41006056018 A1:n41006056025 +22446 A0:n41006056031 A1:n41006056034 +22448 A1:n41006056033 +22450 A1:n41007001006;n41007001008 +22459 A0:n41007001006;n41007001008 +22463 A0:n41007001006;n41007001008 A1:n41007002003 +22474 A0:n41007002003 A1:n41007002015 +22487 A0:n41007003003;n41007003007 A1:n41007003013 +22491 A0:n41007003003;n41007003007 +A0:n41007003003;n41007003007 A1:n41007003018 +22502 A0:n41007003003;n41007003007 +22504 A0:n41007003003;n41007003007 +22510 A0:n41007003003;n41007003007 A1:n41007004013 +A0:n41007003003;n41007003007 A1:n41007004016 +22519 A1:n41007005003 A0:n41007005005;n41007005008 +22529 A0:n41007005014 +22541 A0:n41007005014 A1:n41007005026 +22546 A0:n41007006001 A2:n41007006004 +22549 A0:n41007006007 +22556 A1:n41007006021;n41007006027;n41007007003 +22564 A0:n41007006017 A1:n41007006020 +22570 A0:n41007006024 +22575 A0:n41007006017 A1:n41007007004 +22577 A0:n41007006017 A1:n41007007007 +22581 A0:n41007006011 A1:n41007008003 +22586 A0:n41007006011 A1:n41007008008 +22592 A0:n41006030007 A2:n41007009003 +22595 A0:n41007005005;n41007005008 A1:n41007009007 +22604 A0:n41007005005;n41007005008 A1:n41007009012 +22607 A0:n41007010001 +A0:n00000000000 A1:n41007010006;n41007010010 +22618 A0:n00000000000 A1:n41007010015;n41007010017 +22623 A0:n41007010014 +22626 A0:n41007011001 +22628 A0:n41007011006 A2:n41007011008;n41007011011 +22643 A1:n41007011008;n41007011011 A1:n41007011016 +22645 A0:n41007005005;n41007005008 A1:n41007012005 +22648 A0:n41007012003 A1:n41007012004 A2:n41007012007;n41007012010 +22654 A0:n41007005005;n41007005008 A1:n41007013003 +22663 A0:n41007005005;n41007005008 A1:n41007013009 +22668 A0:n41007005005;n41007005008 A1:n41007013013 +22670 A0:n41006030007 A1:n41007014005 +22674 A0:n41006030007 A2:n41007014007 +22676 A1:n41007014009 A0:n41007014010 +22680 A0:n41007014005 +22686 A0:n41007015005 +22690 A0:n41007015009 A1:n41007015011 +A0:n41007015005 A1:n41007015012 +22698 A0:n00000000000 +22701 A0:n00000000000 A1:n41007015023 +22706 A0:n41006030007 +22712 A2:n41007017010 A0:n41007017012 A1:n41007017015 +22720 A0:n41006030007 A2:n41007018003 +22728 A0:n41007017012 +22733 A0:n00000000000 +22738 A0:n41007018015 A1:n41007018022 +22740 A0:n41007018015 A1:n41007018021 +22743 A0:n41007018015 +22756 A0:n41007018015 +A0:n41006030007 A1:n41007019020 +22762 A0:n41006030007 +22768 A0:n00000000000 +22770 A0:n41007020009 A1:n41007020012 +22784 A0:n41007021009 +22803 A0:n41007023004 +22805 A0:n41007023004 A1:n41007023010 +22810 A0:n41006030007 +A0:n41006030007 +22817 A0:n41006030007 +22821 A0:n41007024013 +A0:n41006030007 A1:n41007024015 +22825 A1:n41006030007 A1:n41007024019 +A0:n41006030007 +22829 A0:n41007025004 +22837 A0:n41007025010 A1:n41007025012 +22840 A0:n41007025004 +A0:n41007025004 +22855 A0:n41007026003 A1:n41007026011 +22860 A0:n41006030007 A1:n41007026014 +22866 A0:n41006030007 A2:n41007027003 +22868 A0:n41007026003 A1:n41007027006 +22870 A1:n41007027008 +22877 A0:n00000000000 A1:n41007027015 +22885 A0:n00000000000 A1:n41007027015 A2:n41007027020 +22888 A0:n41007028001 +22890 A0:n41007026003 A2:n41007028006 +22900 A0:n41007028011 +22907 A0:n41006030007 A2:n41007029003 +22913 A0:n41007026003 +A0:n41007029015 +22922 A0:n41007026003 +22927 A0:n41007026003 A1:n41007030010;n41007030017 +22930 A1:n41007030009 +22937 A0:n41007030016 +22940 A0:n41006030007 +22945 A0:n41006030007 +22959 A0:n00000000000 A2:n41007032003 A1:n41007032004;n41007032006 +22965 A0:n00000000000 A1:n41007032009 +22968 A0:n41006030007 A2:n41007032012 A1:n41007032014 +22973 A0:n41006030007 A1:n41007033003 +22980 A0:n41006030007 A1:n41007033011 +22989 A0:n41006030007 +A0:n41006030007 A1:n41007033021 +22995 A0:n41006030007 +22999 A0:n41006030007 +23001 A0:n41006030007 A2:n41007034009 +23003 A1:n00000000000 +23006 A1:n00000000000 +23008 A1:n41007035005 +23014 A1:n41007035010 +23021 A0:n41007032004 +23024 A0:n41006030007 A2:n41007036003 +23028 A0:n00000000000 A2:n41007036005 +23032 A0:n41006030007 A1:n41007036007 A2:n41007036009 +23036 A0:n41007036011 +23039 A1:n41007033006 +A0:n41007033006 +23043 A0:n41006030007 A1:n41007037006 +23045 A0:n41006030007 A1:n41007037012;n41007037015 +23048 A0:n41007037010 +23051 A0:n41007037014 +23059 A0:n41008001007 +23062 A0:n41008001007 A1:n41008001013 +23064 A0:n41008001007 A1:n41008001012 +A0:n41006030007 A1:n41008001016 +23068 A0:n41006030007 A2:n41008001018 +23070 A0:n41006030007 +23078 A0:n41008002004 +23082 A0:n41008002004 A1:n41008002015 +23084 A0:n41008002004 A1:n41008002014 +23087 A0:n41006030007 A1:n41008003004 +23093 A1:n41008002004 +23104 A2:n41008004003 A0:n41008004005 +23111 A0:n41008004011 A1:n41008004013 +23115 A0:n41008004011 A1:n41008004009 +23120 A0:n41006030007 A1:n41008005003 +23124 A0:n41008004005 A1:n41008005006 +23127 A0:n41008005007 +23130 A0:n41006030007 A2:n41008006004 A1:n41008006005 +23133 A0:n41008006004 +23138 A0:n41006030007 A1:n41008006013 +23142 A0:n41006030007 +A0:n41006030007 A1:n41008006013 +23145 A0:n41006030007 A1:n41008006013 A2:n41008006019 +23150 A0:n41008006019 A1:n41008006013 +23152 A0:n41008006019 A1:n41008006013 A2:n41008006026 +23156 A0:n41008006019 A1:n41008007003 +23160 A0:n41006030007 A1:n41008007007 +23162 A0:n41006030007 A1:n41008007011 +23165 A0:n41008006019 A1:n41008007010 +23167 A0:n41008006026 +23169 A1:n41008006026 +23171 A0:n41008006019 A1:n41008008007 +23181 A0:n41006030007 A1:n41008009007 +23185 A0:n41006030007 +23193 A0:n41006030007 +23199 A0:n41008011004 +23203 A0:n41008011004 A1:n41008011007 +A0:n41008011004 +23206 A0:n41008011004 A1:n41008011012 +23213 A0:n41008011004 A1:n41008011017 +23216 A0:n41006030007 +23220 A0:n41006030007 +23225 A0:n41008012009 A1:n41008012012 +23228 A0:n41006030007 A2:n41008012015 +23231 A2:n41008012019 A1:n41008012021 +23237 A0:n41006030007 A1:n41008013003 +23240 A0:n41006030007 +A0:n41006030007 +23246 A0:n41008010009 A1:n41008014003 +A0:n41008010009 A1:n41008014004 +23255 A0:n41008010009 +23262 A0:n41006030007 A2:n41008015003 +23264 A0:n41006030007 +A0:n41008010009 +A0:n41008010009 +23277 A0:n41008010009 +23283 A0:n41008010009 A1:n41008016006 +23285 A0:n41006030007 +A0:n41006030007 A2:n41008017004 +23289 A0:n41008010009 +23293 A0:n41008010009 A1:n41008017008 +23295 A0:n41008010009 +23297 A0:n41008010009 +A1:n41008017018 +A0:n41008010009 A1:n41008017018 +23304 A0:n41008010009 A1:n41008018001 +23306 A0:n41008010009 +23309 A0:n41008010009 A1:n41008018006 +23311 A0:n41008010009 +23314 A0:n41008010009 +23319 A0:n41006030007 A1:n41008019004 +23327 A0:n41008010009 A1:n41008019010 +A0:n41008010009 A2:n41008019015 +23341 A0:n41008010009 A1:n41008020009 +23343 A0:n41008010009 +23346 A0:n41006030007 A2:n41008021003 +23349 A0:n41008010009 +23351 A0:n41006030007;n41008010009 +23355 A0:n00000000000 A2:n41008022007 A1:n41008022008 +23359 A0:n00000000000 A1:n41008022011 +23363 A0:n41006030007 A1:n41008022013 +23365 A0:n41006030007 A1:n41008023004 +23370 A0:n41006030007 A1:n41008023008 +23376 A0:n41006030007 +23381 A0:n41006030007 A1:n41008023020 A2:n41008023021 +23385 A0:n41006030007 A1:n41008023023 +23389 A0:n41008023006 A1:n41008023025 +23391 A0:n41008023006 +A0:n41008023006 +A0:n41008023006 A1:n41008024006 +23399 A0:n41008024009 +A0:n41008023006 A1:n41008024011 +23403 A0:n41006030007 A1:n41008025005 +23411 A0:n41008023006 +23413 A0:n41008023006 +23415 A0:n41008023006 A1:n41008025017 +23419 A0:n41006030007 A1:n41008026003 +23424 A0:n41006030007 +23429 A0:n41008023006 +23431 A0:n41008027004;n41008027007 +23448 A0:n41008027004 A1:n41008027021 +23452 A0:n41008027004 A2:n41008027024 +23457 A1:n41008027025 A0:n41008027029 +23462 A0:n41008028001 A2:n41008028004 +23464 A0:n41008027021 +23480 A0:n41008029002 A1:n41008029004 +23487 A0:n41008029005 A1:n41008029007 +A1:n41008029013 +23491 A0:n41008029013 A2:n41008029015 +23498 A0:n41008027004 A2:n41008030003 +23502 A0:n41008027021 A2:n41008030005 +23506 A0:n41008027004 A1:n41008031003 +A0:n41008027004 A1:n41008031004 +23510 A0:n41008031012;n41008031014;n41008031025;n41008031030 +23516 A0:n41008031008 A1:n41008031011 +23518 A1:n41008031008 +23529 A1:n41008031008 +23534 A0:n41008031008 +23539 A0:n41008027004 A1:n41008032004 +23543 A0:n41008032009 A1:n41008032010 +23545 A0:n41008032009 A1:n41008032012 +A0:n41008032009 A1:n41008032013 +23550 A1:n41008027004 +23552 A0:n41008027004 A1:n41008033007 +23556 A0:n41008033001 A1:n41008033010 +23559 A0:n41008027004 +A0:n41008033016 +23566 A0:n41008033016 A1:n41008033020 +23575 A0:n41008027004 A1:n41008034004 +23582 A0:n41008027004 A2:n41008034010 +23586 A0:n41008034012 A1:n41008034016 +23589 A0:n41008034012 +A0:n41008034012 A1:n41008034018 +23593 A0:n41008034012 A1:n41008034022 +23598 A0:n41008034012 A1:n41008034026 +23603 A0:n41008035001 A1:n41008035008 +23607 A0:n41008035001 A1:n41008035006 +A0:n41008035004 A1:n41008035010 +23613 A0:n41008035011 A1:n41008035016 +23622 A0:n41008035014 A1:n41008035024 +23626 A1:n41008036004 A0:n41008036005;n41008036010 +23628 A0:n41008036004 A1:n41008036007 +23633 A1:n41008036004 A1:n41008036012 +23639 A1:n41008037001 A0:n41008037004 +23648 A1:n41008038001 A1:n41008038005;n41008038009 +23667 A1:n41008038020 A1:n41008038024 +23670 A0:n41008038020 +23683 A0:n41008027004 A2:n41009001003 +23686 A0:n41008027004 A2:n41009001006 +23689 A0:n41009001009 +23693 A0:n00000000000 +23697 A0:n41009001013 A1:n41009001017 +23701 A0:n41009001009 A1:n41009001025 +23706 A0:n41009001022 +23713 A0:n41009002007 A1:n41009002009;n41009002012;n41009002014 +23724 A0:n41009002007 A1:n41009002017 +23733 A1:n41009002007 +23741 A0:n41009003003 +23750 A0:n41009003010 A1:n41009003017 +23752 A0:n41009003010 +23754 A2:n41009004003 A1:n41009004004 +23761 A0:n41009004004;n41009004006 +23765 A1:n41009005004 +23768 A0:n41009005004 A2:n41009005007 +23778 A0:n41009005004;n41009002012;n41009002014 A1:n41009005017 +23791 A0:n41009005004 A1:n41009006005 +23793 A1:n41009005004 A1:n41009006004 +23798 A0:n41009007003 +23800 A0:n41009007003 A1:n41009007005 +23803 A0:n41009007008 +23815 A0:n41009005004;n41009002012;n41009002014 A1:n41009007020 +23819 A0:n41009005004;n41009002012;n41009002014 +23822 A0:n41009005004;n41009002012;n41009002014 A1:n41009008005 +23830 A0:n41009009003 +23835 A0:n41009008009 A2:n41009009008 +23840 A0:n41009005004;n41009002012;n41009002014 A1:n41009009011 +A0:n41009005004;n41009002012;n41009002014 A2:n41009009010 A1:n41009009012 +23851 A0:n41009009018 +23855 A0:n41009005004;n41009002012;n41009002014 A1:n41009010003 +23858 A0:n41009005004;n41009002012;n41009002014 +23864 A0:n00000000000 +23866 A0:n41009005004;n41009002012;n41009002014 A1:n41009011003 +23868 A0:n41009005004;n41009002012;n41009002014 +23870 A0:n41009011008 +23874 A0:n41009011012 +23876 A0:n41009011010 +23880 A0:n41009012001 A2:n41009012004 +23884 A0:n41009012005 +23886 A0:n41009012005 A1:n41009012010 +23890 A1:n41009012021;n41009012023 +23898 A0:n41009012016 A1:n41009012020 +23900 A1:n41009012016 +23902 A0:n41009008009 A2:n41009013003 +23907 A0:n41009013006 +23909 A0:n00000000000 A2:n41009013010 A1:n41009013012 +23912 A0:n00000000000 A1:n41009013011 +23914 A1:n00000000000 +23918 A0:n41009005004;n41009002012;n41009002014;n41009008009 +23922 A0:n41009008009;n41009005004;n41009002012;n41009002014 A1:n41009014010;n41009014013 +23929 A0:n41009014012 +23937 A0:n41009015005 A1:n41009015007 +23939 A0:n41009015005 +23941 A0:n41009015005 +A0:n41009015005 A1:n41009015012 +23945 A0:n41009008009 A1:n41009016003 +23948 A0:n41009015005 A1:n41009016004 +23952 A2:n41009017003 A0:n41009017004 +23959 A0:n41009017004 A1:n41009017011 +23965 A0:n41009017011 A1:n41009017016 +23972 A0:n41009017016 A1:n41009018004 +A0:n41009017016 A1:n41009018007 +23976 A0:n41009017011 +23978 A0:n41009017011 A1:n41009018013 +23982 A1:n41009017011 +23984 A0:n41009017004 A2:n41009018019 +23990 A0:n41009018019 A1:n41009018022 +23993 A0:n41009018019 +23996 A1:n41009008009 A2:n41009019004 +23998 A0:n41009008009 A0:n41009019001 +24009 A0:n41009008009 A1:n41009019017 +24011 A0:n41009019007 A1:n41009019019 +24016 A0:n41009017007 A1:n41009020003 +24021 A0:n41009020010 A1:n41009020008 +24026 A0:n41009020010 A1:n41009020013 +24029 A0:n41009017011 +24033 A0:n41009017011 +A0:n41009017011 +24036 A0:n41009008009 A1:n41009021004 +24042 A0:n41009021007 +24045 A0:n41009021010 +24049 A0:n41009021013 +24058 A0:n41009020010 A1:n41009022006 +24063 A0:n41009020010 A1:n41009022013 +24068 A0:n41009008009 A1:n41009022016 +A0:n41009008009 A1:n41009022019 +24071 A1:n41009008009 +24077 A0:n41009023003 A2:n41009023005 +24081 A0:n41009023003 +24085 A0:n00000000000 +24087 A0:n41009024004 +24092 A0:n41009024004 +A0:n41009024004 +A0:n41009023003 A1:n41009024012 +24101 A0:n41009025004 +24103 A0:n41009025007 +24105 A0:n41009025004 A1:n41009025010 +24110 A0:n41009025004 A2:n41009025014 +24118 A0:n41009025020 A2:n41009025022 +24120 A0:n41009025019 +24125 A0:n41009025019 +24129 A0:n41009025010 +24132 A0:n41009025010 +A0:n41009025010 +24141 A0:n41009026013 +24143 A0:n41009024006 +24147 A0:n41009027003 A1:n41009027006 +24151 A0:n41009027003 A1:n41009027009 +24154 A0:n41009024006 +24156 A0:n41009028003 +24165 A0:n41009028007 A1:n41009028012 +24170 A0:n41009028014 A1:n41009028017 +A0:n41009028007 A1:n41009028018 +24174 A0:n41009027003 A2:n41009029003 +24181 A0:n41009029006 A1:n41009029010 +A0:n41009029006 +24188 A0:n41009027003;n41009028007 +A0:n41009027003;n41009028007 +24195 A0:n41009027003 +24198 A0:n41009030011 +24200 A0:n41009027003 A1:n41009031004 +24205 A0:n41009027003 A2:n41009031008 +24212 A1:n41009031011 +24217 A0:n41009031017 A1:n41009031020 +24220 A1:n41009031011 +24224 A0:n41009031011 +24227 A0:n41009032001 A1:n41009032005 +24231 A0:n41009031004 A1:n41009032009 +24233 A0:n41009031004 A1:n41009032008 +24235 A0:n41009027003;n41009031004 +24243 A0:n41009027003 A1:n41009033011 +24249 A0:n41009031004 A1:n41009033012 +24252 A0:n41009034001 +24256 A1:n41009031004 +24263 A0:n41009027003 +A0:n41009027003 A1:n41009035005 +24268 A0:n41009027003 A2:n41009035008 +24272 A0:n41009035010 A1:n41009035012 +24282 A0:n41009027003 A1:n41009036003 +24284 A0:n41009027003 A1:n41009036005 +24290 A0:n41009027003 A1:n41009036011 +24292 A0:n41009027003 A2:n41009036013 +24300 A0:n41009037001 A1:n41009037003 +24306 A0:n41009037007 A1:n41009037012 +24311 A0:n41009037015 A1:n41009037017 +24314 A0:n41009037018 A1:n41009037020 +24317 A0:n41009007008 A1:n41009037025 +24319 A2:n41009038002 A0:n41009038004 +24324 A0:n41009035005 A1:n41009038012 +24330 A0:n41009038007 A1:n41009038013 +24334 A0:n41009038014 A1:n41009038017 +24337 A0:n41009035005 A1:n41009038020 +24346 A0:n41009039003 +24348 A0:n41009035005 A1:n41009039007 +24354 A0:n41009039011 A1:n41009039013 +24361 A0:n41009039011 A1:n41009039021 +24363 A0:n41009039011 A1:n41009039022 +24377 A0:n41009041001 A2:n41009041005 A1:n41009041006 +24387 A0:n41009039003 A2:n41009041015 +24392 A0:n41009041011 A1:n41009041021 +24399 A0:n41009042002 A1:n41009042005 +24405 A0:n41009042007 +24407 A0:n00000000000 +24411 A0:n41009042017 +24419 A1:n41009042004 +24425 A1:n41009043004 A0:n41009043006 +24430 A0:n41009035005 A1:n41009043009 +24436 A0:n41009043012 +24444 A0:n41009035005 A1:n41009043021 +A0:n41009035005 +24459 A0:n41009045004 A1:n41009045007 +24461 A0:n41009035005 A1:n41009045009 +24466 A0:n41009045012 +24475 A0:n41009035005 A1:n41009045021 +A1:n41009035005 +24485 A0:n41009047004 A1:n41009047007 +24487 A0:n41009035005 A1:n41009047009 +24493 A0:n41009047011 +24502 A0:n41009047004 A1:n41009047022 +A1:n41009047004 +24512 A0:n41009048003 +24517 A1:n41009048009 +24521 A1:n41009049001 +24534 A0:n41009035005 A1:n41009050012 +A0:n41009035005 A1:n41009050017 +24540 A0:n41009035005 +24545 A0:n41009039003 +A0:n41009039003 +24557 A0:n41010001017 +24564 A0:n41009039003 +24566 A0:n41009039003 A1:n41010001025 +24569 A0:n00000000000 +24571 A0:n41010002003 A1:n41010002005 +24574 A0:n41010002010 +24577 A0:n41010002008 A1:n41010002009 +A0:n00000000000 A1:n41010002012 +24582 A1:n41009039003 +A0:n41010003001 A2:n41010003005 +24587 A1:n41010003006 A2:n41010003007 A0:n41010003009 +24591 A0:n41010004001 +A0:n41010004005 A1:n41010004008;n41010004010 +24596 A0:n41010002008 A1:n41010004006 +24598 A0:n41010002008 +24602 A0:n41010005003 A2:n41010005005 +24608 A0:n41010004005 A2:n41010005011 A1:n41010005013 +24620 A0:n41009047019 A1:n41010006009 +24624 A0:n41010007004 A1:n41010007006;n41010007010 +24650 A1:n41010009001 A0:n41010009004 +24653 A1:n41010009005 A0:n41010009006 +24663 A0:n41010010007 A1:n41010010011 +24666 A0:n41010005003 A2:n41010011003 +24670 A0:n41010011004 A1:n41010011008 +24675 A0:n41010011004 A1:n41010011012 +24677 A0:n41010011006;n41010011011 +24683 A0:n41010011008 A1:n41010012006 +24687 A0:n41010012003 A1:n41010012009 +24689 A0:n41010011008 +24691 A0:n00000000000 A2:n41010013003 A1:n41010013004 +24696 A0:n41010005003 A1:n41010013006 +24700 A0:n41010013010 A1:n41010013012 +24703 A0:n41010014004 +24706 A0:n41010014004 +24708 A0:n41010014004 A2:n41010014008 +24710 A0:n41010013010 A1:n41010014012 +24713 A0:n41010014011 +24717 A0:n41010013010 A1:n41010014017 +24728 A0:n41010014004 A2:n41010015003 +24733 A0:n41010015004 A1:n41010015009 +24742 A0:n41010015007 +24746 A0:n41010014004 A1:n41010016003 +24748 A0:n41010014004 +A0:n41010014004 A1:n41010016007 +24755 A0:n41010017003 +24760 A0:n41010017007 +24762 A0:n41010017007 A1:n41010017010 +24764 A0:n41010017007 A1:n41010017012 +24769 A0:n41010017007 A1:n41010017015 +24773 A0:n41010017007 A1:n41010017018 +24777 A0:n41010018003 A2:n41010018005 +24781 A0:n41010017007 A1:n41010018007 +24792 A0:n41010017007 A1:n41010019002 +24794 A0:n00000000000 +24796 A0:n00000000000 +24798 A0:n00000000000 +24800 A0:n00000000000 +24802 A0:n00000000000 +A0:n00000000000 A1:n41010019016;n41010019020 +24812 A0:n41010020001 A2:n41010020004 +24817 A0:n41010017007 A1:n41010020006 +24824 A0:n41010021003 A1:n41010021005 +24826 A0:n41010021003 A1:n41010021007 +24829 A0:n41010021003 A2:n41010021010 +24833 A0:n41010021011 A1:n41010021012 +A0:n41010017007 +24836 A0:n41010017007 A1:n41010021015 +A0:n41010017007 A1:n41010021016 +24839 A0:n41010017007 A1:n00000000000 A2:n41010021021 +24843 A0:n41010017007 A1:n41010021024 +24848 A0:n41010017007 +A0:n41010017007 A1:n41010021030 +24853 A0:n41010017007 +24857 A0:n41010022001 +A1:n41010017007 +24861 A0:n41010017007 A1:n41010022012 +24865 A0:n41010023004 +24868 A0:n41010023004 A2:n41010023007 +24877 A0:n00000000000 A1:n41010023013 +24883 A0:n41010023014 +24887 A0:n41010024003 +24896 A1:n41010024011 +A0:n41010024011 A2:n41010024015 +24908 A0:n00000000000 +24917 A0:n41010025003 +24925 A0:n41010025011 +24929 A1:n41010026001 +A0:n41010024003 +24935 A0:n41010026009 A1:n41010026011 +A1:n41010026009 +A0:n41010027004 A1:n41010027002 +24941 A0:n41010027004 +24955 A1:n41010028002 A0:n41010028004 +24958 A0:n41010028004 A2:n41010028005 +24960 A0:n41010027004 +24962 A0:n41010028007 A1:n41010028009 +24965 A0:n41010024003 A1:n41010028012 +24967 A0:n41010029003 +24971 A0:n41010029003 A2:n41010029006 +24976 A0:n41010029009 A1:n41010029011;n41010029013;n41010029015;n41010029017;n41010029019;n41010029021;n41010029023 +24998 A0:n41010029009 A1:n41010030004 +25023 A0:n41010030026 +25040 A0:n41010032014;n41010024003 +25045 A1:n41010032012 A0:n41010032014 +25050 A1:n41010024003 +25053 A0:n00000000000 +A0:n41010032019 +25056 A0:n41010032014 A1:n41010032025 +25060 A0:n41010032014 A1:n41010032028 +25062 A0:n41010032014 A2:n41010032027 A1:n41010032030 +25064 A0:n00000000000 A1:n41010032032 +25066 A0:n41010032030 AA2:n41010032031 +25068 A0:n41010032025 +A0:n41010032014;n41010032025 +25077 A1:n41010033008 A2:n41010033013;n41010033016 +25084 A0:n41010033013;n41010033016 A1:n41010033019 +25088 A0:n41010033013;n41010033016 A1:n41010033023 A2:n41010033025 +25093 A0:n41010033025 A1:n41010034003 +25096 A0:n41010033025 A1:n41010034006 +25099 A0:n41010033025 A1:n41010034009 +25102 A0:n41010033025 +25107 A0:n41010033008 +25109 A0:n41010035004;n41010035006 +25117 A0:n41010035004;n41010035006 A2:n41010035011 +25120 A0:n41010035004;n41010035006 +25124 A0:n41010035004;n41010035006 A1:n41010035015 A2:n41010035018 +25126 A0:n41010035012 A1:n41010035017 A2:n41010035020 +25130 A0:n41010036001 A2:n41010036004 +25132 A0:n41010035004;n41010035006 A1:n41010036008 +25135 A1:n41010036005 A0:n41010036007 A2:n41010036009 +25139 A0:n41010037001 A2:n41010037004 +25141 A0:n41010032014 A1:n00000000000 A2:n41010037006 +25152 A0:n41010035004;n41010035006 +25160 A0:n41010038003 A2:n41010038005 +25163 A0:n41010035004;n41010035006 A1:n41010038009 +25165 A0:n41010035004;n41010035006 A1:n41010038008 +A0:n41010035004;n41010035006 A1:n41010038011;n41010038023 +A0:n41010035004;n41010035006 A1:n41010038013 +25172 A1:n41010038014 A0:n41010038015 +25178 A1:n41010038021 +A1:n41010035004;n41010035006 +25182 A0:n41010039001 A2:n41010039004 +25184 A0:n41010035004;n41010035006 +25188 A0:n41010039008 A2:n41010039010 +25194 A1:n41010039013 A0:n41010039014 +A0:n41010035004;n41010035006 A1:n41010039012 +25201 A1:n41010039021 +A1:n41010035004;n41010035006 +25205 A0:n00000000000 +25215 A0:n41010040012 +25218 A1:n41010040003 A2:n41010040015 +25220 A0:n41010041004 +25223 A0:n41010041004 A1:n41010041006 +A0:n41010041004 +25230 A0:n41010042005 A1:n41010042003 +25234 A0:n41010042005 A2:n41010042007 +25236 A0:n41010032025 +25239 A0:n00000000000 A1:n41010042012 +A0:n41010042011 +25243 A0:n41010042011 +25249 A0:n41010042019 +25254 A0:n00000000000 +25260 A0:n41010043008 A1:n41010043011 +25271 A0:n41010044002 A1:n41010044008 +25286 A0:n41010045004 +A1:n41010045004 +25289 A0:n41010045004 +25291 A0:n41010045004 A1:n41010045015 +25299 A0:n41010042005;n41010032025 +25303 A0:n41010046007 +25320 A0:n41010046018 +25325 A0:n41010046018 +25331 A0:n41010046018 A1:n41010047009;n41010047011 +A0:n41010046018 +25334 A0:n41010046018 +25338 A0:n41010047012 A1:n41010047016 +25341 A2:n41010048003 A0:n41010048004 +25345 A0:n41010046018 +25350 A0:n41010048007 +25353 A0:n41010048012 A1:n41010048015 +25356 A0:n41010049004 +25359 A0:n41010049004 +A0:n41010046012 A1:n41010049007 +25363 A0:n41010046012 A1:n41010049011 +25366 A0:n41010046012 A2:n41010049013 +25368 A0:n41010049011 +A0:n41010049011 +A0:n41010049004 A1:n41010049017 +25374 A0:n41010049011 A1:n41010050005 +25378 A0:n41010049011 +A0:n41010050001 +25384 A1:n41010051005 A2:n41010051003 +25388 A0:n41010051005 +25391 A0:n41010051005 A1:n41010051007 A2:n41010051008 +A0:n41010049011 A1:n41010051010 +25396 A0:n41010051013 A2:n41010051015 +25400 A0:n41010051013 +25404 A0:n41010052003 A2:n41010052005 +25406 A0:n41010051013 +25410 A0:n41010052008 A1:n41010052011 +25414 A0:n41010051013 +25416 A0:n41010051013 A1:n41010052017 +25423 A0:n41010052003;n41010046012 +25435 A0:n41010052003 A1:n41011001016 +25441 A0:n41010052003 A2:n41011002003 +25443 A0:n41011001016 +25452 A0:n41011001016 +25455 A0:n41011001016 A1:n41011002018 +A1:n41011002017 +25463 A0:n41011002021 +A0:n41011001016 A1:n41011002026 +25467 A0:n41011001016 +25472 A0:n41011003003 A2:n41011003004 +25474 A0:n41011001016 A1:n41011003008 +25476 A0:n41011001016 +25481 A0:n41011003011 A1:n41011003013 +25485 A0:n41011003011 A1:n41011003017 +25489 A0:n41011001016 +25491 A0:n41011001016 A1:n41011004006 +25493 A1:n41011004005 +25501 A0:n41011001016 A1:n41011004015 +25507 A0:n00000000000 +A0:n41011005002 A2:n41011005007 +25511 A0:n41011001016 A1:n41011005008 +A0:n41011001016 A1:n41011005012 +25517 A0:n41011006001 A2:n41011006004 +25520 A0:n41011006008 +25524 A0:n41011005002 A1:n41011006011 +25527 A0:n41011001016 A1:n41011007004 +25534 A0:n41011001016 A2:n41011007010 A1:n41011007012 +25540 A0:n41011007007 +25548 A0:n41011008002 A1:n41011008004 +25555 A0:n41011008010 +25561 A0:n00000000000 +25564 A0:n00000000000 +A0:n41011009003;n41011009006 +25567 A1:n00000000000 +25569 A0:n41011007007 +25573 A1:n00000000000 +25575 A0:n41011010004 +25586 A0:n41011007007 +25598 A0:n41011007007 A1:n41011011010 +25600 A0:n41011007007 +25609 A0:n41011012005 +25613 A0:n41011007007 +25615 A0:n41011007007 A1:n41011013006 +25619 A0:n41011013003 A1:n41011013007 +25621 A0:n41011007007 +25625 A0:n41011007007 A1:n41011013011 +25629 A0:n41011007007 +25633 A0:n41011007007 A1:n41011013019 +25644 A1:n41011007007 +A0:n41011007007 A2:n41011014004 +25655 A0:n41011014011 A1:n41011014012 +25657 A0:n41011014017 +25662 A0:n41011007007;n41011014017 +25666 A0:n41011007007 +25670 A0:n41011007007 A1:n41011015011 +A0:n41011007007 A1:n41011015013;n41011015016 +25673 A0:n00000000000 +25676 A0:n00000000000 +25689 A0:n00000000000 A1:n41011015031 +25692 A0:n41011007007 A1:n41011015022;n41011015027 +25695 A0:n41011007007 +25698 A0:n41011016005 A1:n41011016007 +25704 A0:n41011007007 +25706 A0:n41011007007 A2:n41011017005 +25709 A1:n41011017012;n41011017020 +25722 A0:n41011017018 A1:n41011017021 +25727 A0:n41011018004;n41011018007 +25734 A0:n41011018004;n41011018007 A1:n41011018012 +25737 A0:n41011018004;n41011018007 A1:n41011018011 +25739 A0:n41011018004;n41011018007 A1:n41011018015 +25745 A1:n41011018019 +25753 A0:n00000000000 +A0:n41011007007;n41011014017 +25759 A0:n41011007007;n41011014017 +25761 A0:n41011007007;n41011014017 A1:n41011020007 +25764 A1:n41011020006 +25768 A1:n41011021004 +25771 A0:n41011021004 A2:n41011021006 +25774 A0:n41011021007 +25778 A0:n41011021007 A1:n41011021011 +A1:n41011021010 +25781 A1:n41011022004 +25784 A0:n41011022004 A2:n41011022006 +25786 A0:n41011014017 A1:n41011022008 +25790 A0:n41011022004 A2:n41011023003 +25795 A0:n41011023005 A2:n41011023009 +25799 A1:n41011023009 +25801 A1:n41011023009 +25807 A1:n41011023005 +25813 A0:n41011023005 +25816 A0:n41011023005 A1:n41011023027 +A0:n41011023028 +A0:n41011023028 +25822 A0:n41011022004 A2:n41011024004 +25826 A0:n41011014017 A1:n41011024006 +25828 A0:n41011014017 A1:n41011024006 +A0:n41011014017 +25831 A0:n41011014017 +25833 A0:n41011024007 AA2:n41011024015 +25837 A0:n41011014017 +A0:n41011014017 +A0:n41011014017 +25842 A0:n41011014017 A1:n41011025007 +25854 A0:n41011025014 A2:n41011025021 A1:n41011025023 +25860 A0:n41011022004;n41011014017 +25868 A0:n41011027011 +25870 A0:n41011027016;n41011027019;n41011027022 +25882 A0:n41011027016;n41011027019;n41011027022 A2:n41011028003 +25888 A0:n41011022004 A1:n41011028007 +25892 A0:n41011028010 A2:n41011028011 A1:n41011028014 +25898 A0:n41011022004 A1:n41011028017 +25902 A0:n41011029003 A2:n41011029005 +25904 A0:n41011029003 A2:n41011029007 A1:n41011029009 +25909 A1:n41011027016;n41011027019;n41011027022 A2:n41011029012 +25912 A0:n41011029003 A2:n41011029015 +25918 A0:n41011029003 A1:n41011029019 +25929 A1:n41011027016;n41011027019;n41011027022 A2:n41011030012 +25932 A0:n41011027016;n41011027019;n41011027022 +25935 A0:n41011027016;n41011027019;n41011027022 +25937 A0:n41011027016;n41011027019;n41011027022 +25940 A0:n41011029003 +25945 A0:n41011027016;n41011027019;n41011027022 A1:n41011031016 +25948 A0:n41011027016;n41011027019;n41011027022 +25951 A0:n41011027016;n41011027019;n41011027022 A1:n41011032007 +25956 A0:n41011032008 A1:n41011032012 +25964 A1:n41011027016;n41011027019;n41011027022 A2:n41011033004 +25967 A0:n41011027016;n41011027019;n41011027022 +25969 A0:n41011027016;n41011027019;n41011027022 +25973 A0:n41011033010 A2:n41011033012 +25977 A0:n41011033014 A2:n41011033016 +25983 A0:n41011033010 A1:n41011033020 +25985 A0:n41011033010 A1:n41012001006 +25989 A0:n41011033010 A2:n41012001003 +25992 A1:n41012001007 A0:n41012001008 +25994 A0:n41012001008 A1:n41012001012 +25997 A0:n41012001008 A1:n41012001015 +26000 A0:n41012001008 A1:n41012001018 +26003 A0:n41012001008 A1:n41012001021 A2:n41012001022 +26007 A0:n41012001008 +26009 A0:n41012001008 A1:n41012002008 +26020 A0:n41012002008 +26027 A0:n41012002012 A1:n41012003003 +26029 A0:n41012002012 +26031 A0:n41012002012 +26035 A0:n41012001008 A1:n41012004007 +26041 A0:n41012002012 A1:n41012004008 +26043 A0:n41012002012 A1:n41012004007 +26046 A0:n41012001008 A1:n41012005002 +26048 A0:n41012002012 A1:n41012005004 +26054 A0:n41012002012 A1:n41012005009 +26057 A0:n41012002012 A1:n41012005012 +26059 A0:n41012001008 A1:n41012006004 +26063 A0:n41012001008 A1:n41012006007 +26068 A0:n41012001008 +26070 A1:n41012002012 A1:n41012006015 +26080 A0:n41012007004 +26086 A0:n41012007004 +A0:n41012007004 A1:n41012007015 +26095 A0:n41012007004 +A0:n41012007004 A1:n41012008004 +26099 A0:n41012007004 A1:n41012008007 +26105 A1:n41012009001 A0:n41012009004 +26110 A0:n41012009004 +26112 A0:n41012009004 A1:n41012009011 +26116 A0:n41012009004 A1:n41012009015 A2:n41012009016 +26124 A0:n41011027016;n41011027019;n41011027022 A1:n41012010003 +26127 A1:n41012010007 A0:n41012010010 +26129 A0:n00000000000 +26131 A1:n41012010011 +26137 A0:n41012011004 +26146 A0:n41011027016;n41011027019;n41011027022 A1:n41012012004 +26148 A0:n41011027016;n41011027019;n41011027022 A1:n41012012003 +26150 A1:n41011027016;n41011027019;n41011027022 A1:n41012012008 +26154 A0:n41011027016;n41011027019;n41011027022 +26160 A0:n41011033010 A1:n41012012015 +26162 A0:n41011027016;n41011027019;n41011027022 A1:n41012012019 +26164 A0:n41011027016;n41011027019;n41011027022 +26166 A0:n41011027016;n41011027019;n41011027022 A1:n41012013005 +26177 A0:n41012013005 A1:n41012013012 +26180 A0:n41012013005 +A0:n41012013005 A2:n41012014004 +26184 A0:n41012013005 +26190 A0:n00000000000 AA2:n41012014013 +26196 A0:n41012014005 +26207 A0:n41012014005 A1:n41012014026 +A0:n41012014031 +A0:n00000000000 A1:n41012014032 A2:n41012014033 +26214 A0:n41012013005 +26217 A0:n41012013005 +26220 A0:n41011033010 A1:n41012015006 +26224 A0:n41012015001 A2:n41012015008 +26228 A0:n41012013005 A1:n41012015010 +A0:n41012013005 A2:n41012015013 A1:n41012015014 +26233 A0:n41011033010 +26236 A0:n41012016001 +26238 A0:n41011033010 A2:n41012016006 +26249 A0:n41012016014 A2:n41012016017 +26255 A0:n41012017003 A2:n41012017005 +26259 A0:n41012013005 A1:n41012017006 A2:n41012017009 +26268 A0:n41012013005 +26272 A0:n41012018003 +26277 A0:n41012018006 A1:n41012018010 +26280 A0:n41012018008 +26282 A0:n41012018003 A1:n41012018013 +26284 A0:n41012018003 +26287 A0:n41012019002 A2:n41012019004 +26293 A0:n41012019008 +26295 A0:n41012019008 A1:n41012019012 +26299 A0:n41012019008 A1:n41012019016 +26302 A0:n41012019020 A1:n41012019023 +26309 A0:n41012019020 A1:n41012019026 A2:n41012019028 +26316 A0:n41012020002 +26320 A0:n41012020006 A1:n41012020008 +26323 A0:n41012020006 +26325 A0:n41012020006 A1:n41012020013 +26330 A0:n41012021003 A1:n41012021005 +26333 A0:n41012021003 +26335 A0:n41012021003 A1:n41012021010 +26345 A0:n41012022003 A1:n41012022006 +26352 A0:n41012022011 +26357 A0:n41012023012;n41012022011 +26365 A0:n41012023012 A1:n41012023014 +26368 A2:n41012024002 A0:n41012024004 +26375 A1:n41012018003 +26377 A0:n41012018003 A1:n41012024012 +26389 A0:n00000000000 +26391 A0:n00000000000 +26393 A1:n00000000000 +26395 A0:n00000000000 +26406 A1:n41012026004 +26408 A0:n41012018003 +26417 A2:n41012026018 A0:n41012026020 +26421 A0:n41012026020 +26437 A0:n00000000000 +26439 A1:n41012018003 +26441 A0:n41012028003 +26445 A0:n41012028003 A1:n41012028008 +26447 A0:n41012028007 +A0:n41012028003 +26451 A1:n41012024004 A2:n41012028013 +26453 A0:n41012028003 A1:n41012028015 +26460 A0:n41012029003 +26466 A0:n41012029008 +26476 A0:n41012029008 A1:n41012030003 +26506 A0:n00000000000 A1:n41012031005 +26519 A2:n41012032003 A0:n41012032005 +26527 A0:n41012032007 +26539 A0:n00000000000 A1:n41012033004 +26557 A0:n00000000000 A1:n41012033023 +26572 A0:n41012034003 A1:n41012034005 +26576 A1:n41012032005 +A0:n41012034003 A2:n41012034010 +26590 A0:n41012034020 A1:n41012034024 +26592 A0:n41012034020 A1:n41012034023 +26594 A1:n41012035004 +26597 A0:n41012035004 +A0:n41012035004 +26603 A0:n41012035013 +26614 A0:n41012036002 +26620 A0:n41012036010 A2:n41012036012 +26625 A0:n41012036012 +26631 A0:n41012036010 A1:n41012036022 +26641 A0:n41012037002 A1:n41012037004 +26653 A0:n41012037014 A1:n41012037016 +26661 A0:n41012035004 +A0:n41012037014 +26667 A0:n41012038010 A1:n41012038015 +26670 A0:n41012038010 +26687 A0:n41012038010 A1:n41012040004 +26695 A0:n41012038010 A1:n41012040009 +26697 A0:n41012040011 A1:n41012040014 +26701 A0:n41012035004 +26705 A0:n41012035004 +26709 A0:n41012041009 A1:n41012041011 +26717 A0:n41012041017 A1:n41012041019 +26720 A0:n41012042004 +26724 A0:n41012042004 A1:n41012042007 +26731 A0:n41012035004 A1:n41012043004 +26735 A0:n41012035004 A2:n41012043007 +26738 A0:n41012035004 A2:n41012043010 +26747 A0:n41012043013 A1:n41012043017 +26750 A0:n00000000000 +26758 A0:n00000000000 +26760 A0:n41012044001 +26767 A0:n41012044008 A1:n41012044016 +26770 A0:n41012043013 A1:n41012044015 +26776 A0:n41013001003 +26781 A2:n41013001008 A0:n41013001009 +26788 A0:n41013001013 +26797 A0:n41013002003 A2:n41013002005 +26799 A0:n41013001009 A1:n41013002010 +26806 A1:n41013002014 +26813 A1:n41013002017 +26815 A0:n41013003003 +26825 A1:n41013003013 A0:n41013003016;n41013003018;n41013003020;n41013003022 +26836 A0:n41013002003 A2:n41013004002 +26840 A0:n41013004004 +26846 A0:n41013004012 A1:n41013004013 +26849 A1:n41013004012 +26853 A0:n41013005003 A1:n41013005005 +A0:n41013005003 A2:n41013005006 +26856 A0:n41013003016;n41013003018;n41013003020;n41013003022 +26860 A0:n41013005009 A1:n41013005010 +26862 A0:n41013006001 +26867 A0:n41013006001 +26873 A0:n41013006001 A1:n41013006012 +26876 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013007004;n41013007006 +26882 A1:n41013003016;n41013003018;n41013003020;n41013003022 +A0:n41013007011 +A0:n41013007004;n41013007006 +26890 A1:n41013008003 +26898 A0:n41013008011 +26902 A0:n41013008015 +26908 A0:n41013009003 A1:n41013009004 +26911 A0:n00000000000 A1:n41013009006 +26918 A1:n41013003016;n41013003018;n41013003020;n41013003022 +26924 A1:n41013003016;n41013003018;n41013003020;n41013003022 +26936 A1:n41013010010 +26939 A0:n41013010008 +26942 A0:n00000000000 A1:n41013011004 +26944 A0:n00000000000 +26946 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013011009 +26948 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013011008 +26952 A1:n41013011011 A2:n41013011014 +26959 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013011019 +26965 A0:n00000000000 +26972 A0:n41013012003 A1:n41013012004 +26981 A0:n41013012012 +26986 A0:n41013012012 A1:n41013012017 +26990 A1:n41013003016;n41013003018;n41013003020;n41013003022 +26999 A0:n00000000000 +27003 A1:n41013013015 +27006 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013014008 +27011 A0:n41013014005 +27014 A0:n41013014005 +27016 A0:n00000000000 +A0:n41013014013 +27023 A0:n41013014016 +27032 A0:n41013015001 +27034 A0:n41013015001 +27036 A0:n41013015001 A1:n41013015009 +27047 A0:n41013016002 +27051 A0:n41013016002 A1:n41013016013 +27060 A0:n00000000000 +27063 A0:n00000000000 +27069 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27072 A0:n41013014005 +27088 A1:n41013019014 A0:n41013019017 +27101 A0:n41013020005 A1:n41013020007 +27107 A1:n41013020012 +27115 A0:n41013020005 A1:n41013020017 +A0:n41013020005 A1:n41013020021 +27124 A0:n41013021004 A2:n41013021005 +A0:n41013003016;n41013003018;n41013003020;n41013003022 +27129 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27132 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27134 A1:n41013022003;n41013022005 +27139 A0:n41013022003;n41013022005 A1:n41013022008;n41013022010 +27145 A0:n41013022003;n41013022005 A1:n41013022017 +27152 A0:n41013023001 +A0:n41013005003 A2:n41013023005 A1:n41013023006 +27167 A1:n41013024011 +27172 A0:n41013024015 A1:n41013024019 +27180 A0:n41013025003 +27191 A1:n41013025011 +27194 A0:n00000000000 A1:n41013026008 +27199 A0:n41013026005 +27209 A0:n41013026005 A1:n41013027005 +27213 A0:n41013026005 A1:n41013027009 +27231 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013028007 +27242 A0:n41013028011 A1:n41013028018 +27245 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27255 A0:n41013003016;n41013003018;n41013003020;n41013003022 A1:n41013029007 +27257 A0:n41013029006 +A0:n41013029003 +27265 A0:n41013005003 A2:n41013030003 +27270 A0:n41013030009 +27278 A0:n41013030013 +27284 A0:n41013031002;n41013031005 +27290 A0:n41013031009 +27300 A0:n41013032009 +27313 A0:n41013003016;n41013003018;n41013003020;n41013003022 +A0:n41013003016;n41013003018;n41013003020;n41013003022 +27317 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27325 A0:n41013034002 A1:n41013034006 +27330 A0:n41013034002 A2:n41013034011 A1:n41013034014 +27343 A0:n41013034002 A2:n41013034021 +27345 A0:n41013034021 +27347 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27350 A0:n41013003016;n41013003018;n41013003020;n41013003022 +27356 A0:n41013035008 +27366 A0:n41013035008 +27368 A0:n41013035008 A1:n41013036006 +27370 A0:n41013036005 +27374 A0:n41013005003 A1:n41013037001 A2:n41013037003 +27376 A0:n41013005003 A1:n41013037004 A2:n41013037005 +A0:n41013003016;n41013003018;n41013003020;n41013003022;n41013037005 +27389 A0:n41014001014;n41014001017 +27399 A0:n41014001014;n41014001017 +A0:n41014001014;n41014001017 A1:n41014001019 +27402 A0:n41014001014;n41014001017 +27409 A0:n41014002009 +27424 A0:n41014003013 +27426 A0:n41014003015 +27428 A0:n41014003015 A1:n41014003017 +27434 A0:n41014003015 A1:n41014003024 +27437 A0:n41014003015 +27444 A0:n41014004003 +27454 A0:n41014004010 +27456 A0:n41014005005 A1:n41014005006;n41014005011 +27460 A1:n41014005005 +27465 A1:n41014005008 A2:n41014005013 +27469 A0:n41014004003 A1:n41014005016 +27474 A0:n41014006003 +A0:n41014004003 A1:n41014006006 +27480 A0:n41014004003 A2:n41014006008 A1:n41014006009 +27483 A0:n41014003015 A1:n41014006012 +27490 A0:n41014004003 A1:n41014007004 +27495 A0:n41014004003 +A0:n41014004003 A1:n41014007014 +27499 A0:n41014004003 A1:n00000000000 A2:n41014007012 +27504 A0:n41014004003 A1:n41014007015 +27506 A0:n41014003015 A1:n41014008001 +A0:n41014003015 A1:n41014008002 +A0:n41014003015 A1:n41014008005 +A0:n41014003015 A1:n41014008007 +27518 A0:n41014006003 A2:n41014009004 +27522 A1:n41014009009 +27531 A1:n41014009015 A0:n41014009017 +27533 A1:n41014009016 +27544 A0:n41014010002 +27550 A0:n41014010002 A1:n41014010013 A2:n41014010015 +27554 A0:n41014010011 +A1:n41014011001 +27557 A0:n41014010011 A1:n41014011009 +27560 A0:n41014010011 A2:n41014011007 A1:n41014011008 +27562 A0:n41014010002 A1:n41014011015 +27566 A0:n41014010002 A1:n41014011013 +27576 A0:n00000000000 A1:n41014012009 +A2:n41014012012 A0:n41014012014 +27582 A0:n41014006003 +27584 A0:n41014012014 +A0:n41014012014 +27587 A0:n41014006003 A1:n41014012023 +27591 A0:n41014006003 A1:n41014013003 +27597 A0:n41014006003 A2:n41014013009 +27599 A0:n41014013003 +27604 A1:n41014013016 A0:n41014013017 +27609 A0:n41014013017 A1:n41014013018 +A0:n41014013003 A1:n41014013022 +27615 A0:n41014013017 +A0:n41014013003 A2:n41014014007 +27622 A0:n41014014010 +27635 A0:n41014014010 A1:n41014014019 +27639 A0:n41014015002 A2:n41014015003 A1:n41014015005 +27642 A1:n41014015005 +27646 A0:n41014013003 A1:n41014016018 A2:n41014015012 +27649 A0:n41014016004 +27653 A0:n41014016004 +27658 A0:n41014016004 +27660 A0:n41014006003 A2:n41014016014 +27663 A0:n41014016004 A1:n41014016018 +27668 A0:n41014017002 +A0:n41014006003 +27675 A0:n41014018003 +27677 A0:n41014018003 +27680 A0:n41014018007 +27682 A0:n41014018007 A2:n41014018011 +27685 A1:n41014018017 A0:n41014018013 +27691 A0:n41014018013 +27694 A0:n41014017007 A1:n41014019002;n41014019004 +A1:n41014017007 +27697 A0:n41014017007 A2:n41014019005 +27706 A0:n41014020001 A2:n41014020004 +27712 A0:n41014020005 +27724 A0:n41014021004 +27726 A1:n00000000000 +27740 A1:n41014021020 +27745 A1:n41014021030 +27750 A0:n41014022003 +27752 A0:n41014018007 A1:n41014022005 +27754 A0:n41014018007 +A0:n41014018007 A1:n41014022005 +27757 A0:n41014018007 A1:n41014022005 A2:n41014022010 +27760 A0:n41014018007 +A0:n41014020007 A1:n41014022005 +27768 A0:n41014018007 A1:n41014023003 +27770 A0:n41014018007 +A0:n41014018007 A1:n41014023003 A2:n41014023006 +27774 A0:n41014023011 +27779 A0:n41014018007 A2:n41014024003 +27789 A1:n41014024007 +27793 A0:n41014018007 A2:n41014025003 +27799 A0:n41014018007 +27811 A0:n41014018007 A1:n41014025019 +27819 A0:n41014018007;n41014020007 +A0:n41014018007;n41014020007 +27827 A2:n41014027003 A0:n41014027005 +27833 A1:n41014027007 +27835 A1:n41014027011;n41014027017 +A0:n41014025026 A1:n41014027013 +27842 A1:n41014027016 +27846 A1:n41014028005 +27848 A0:n41014027005 +27856 A0:n41014029003 A2:n41014029005 +27861 A1:n41014029008 +27866 A2:n41014030003 A0:n41014030005 +27871 A0:n41014030005 A2:n41014030008 +27883 A0:n41014030018 +27886 A0:n41014030010 A1:n41014030021 +27890 A0:n41014031001 +27892 A0:n41014031008 +27894 A0:n41014031007 +27899 A0:n41014029003 A1:n41014031012 +27904 A0:n41014031017 +27906 A0:n41014030005;n41014020007 +27914 A0:n41014030005 A2:n41014032012 +27918 A0:n41014032012 +27921 A0:n41014030005 +27923 A0:n41014030005 A1:n41014033004;n41014033007;n41014033010 +27935 A0:n41014030005 A1:n41014033015;n41014033017 +A1:n41014030005 +27938 A0:n41014030005 +27940 A0:n41014030005 A2:n41014034003 +27949 A0:n41014033004;n41014033007;n41014033010 +27952 A0:n41014033004;n41014033007;n41014033010 +27954 A0:n41014030005 +27956 A0:n41014030005 +27961 A0:n41014030005 +27965 A0:n00000000000 +A0:n41014035018 +27972 A0:n41014030005 +27979 A0:n41014036003 A1:n41014036011 +27989 A1:n41014036017 A0:n41014036018 +27994 A0:n41014030005 +27996 A0:n41014030005 A1:n41014037006 +27998 A0:n41014037005 +28000 A0:n41014030005 A2:n41014037010 +28004 A0:n41014037011 +28006 A0:n41014037011 A1:n41014037017 +28009 A0:n41014037011 +A0:n41014037010;n41014033007;n41014033010 +28012 A0:n41014037010;n41014033007;n41014033010 +28015 A0:n41014037010;n41014033007;n41014033010 +28028 A0:n41014030005 +A0:n41014030005 +28033 A0:n41014030005 A1:n41014039007 +28036 A0:n41014030005 +A0:n41014030005 A1:n41014040006 +28039 A0:n41014040005 +28042 A1:n41014040011 +28048 A0:n41014037010;n41014033007;n41014033010 A1:n41014040017 +28050 A1:n41014037010;n41014033007;n41014033010 A1:n41014040016 A2:n41014040018 +28053 A0:n41014030005 +28057 A0:n41014030005 A2:n41014041007 +28059 A0:n41014037010;n41014033007;n41014033010 +28063 A0:n41014037010;n41014033007;n41014033010 +A0:n00000000000 +A0:n41014041016 +28068 A0:n41014037010;n41014033007;n41014033010 +A1:n41014041020 +28079 A1:n41014037010;n41014033007;n41014033010 +A0:n41014037010;n41014033007;n41014033010;n41014030005 +A0:n41014037010;n41014033007;n41014033010 +28083 A0:n00000000000 A1:n41014042006 +28085 A0:n41014042005 +28090 A0:n41014043004 +A0:n41014043008 +28115 A0:n41014044004 A1:n41014044006 A2:n41014044007 +28117 A0:n41014043008 A1:n41014044005 +28121 A0:n41014044004 A1:n41014044012 +28124 A0:n41014044004 A1:n41014044009 +28127 A0:n41014043014 A1:n41014044015 +28130 A0:n41014043014 +28133 A0:n41014044004 +28135 A0:n41014044004 +28137 A0:n41014044004 +28140 A0:n41014044004 A1:n41014045010 +28144 A0:n41014046001 A1:n41014046005 A2:n41014046006 +28149 A0:n41014043014 A1:n41014046009 +28155 A0:n00000000000 +A0:n41014047001 A1:n41014047008 +28159 A0:n41014047001 A1:n41014047011 +28165 A0:n41014047001 A1:n41014047018 +28170 A1:n41014048004 +28173 A0:n41014048004 A2:n41014048006 +28178 A0:n41014043014 +28183 A0:n41014043014 A1:n41014048016 +28193 A0:n41014048004 +28196 A0:n41014043014 A1:n41014049013 +28200 A1:n41014049018 +28204 A0:n41014050005 A1:n41014050003 +28206 A0:n41014050005 +28211 A0:n41014051002 A1:n41014051005 +28213 A0:n41014051002 A1:n41014051007 +28218 A0:n41014043014 A1:n41014051012 +28222 A0:n41014051002 A1:n41014052005 +28226 A0:n41014052001 +28228 A0:n41014043014 A1:n41014053004 +28235 A0:n41014053012;n41014053015;n41014053018 +28250 A0:n41014054003 A1:n41014054007 +28261 A0:n41014054003 +28266 A0:n41014054003 +28277 A0:n41014055003;n41014055007 A1:n41014055012 +28284 A0:n41014055003;n41014055007 A1:n41014055016 +28288 A0:n41014055003;n41014055007 +28291 A0:n41014056001 +28302 A0:n41014057002 +A0:n41014057002 +28306 A0:n41014057002 +28309 A0:n41014058002 A1:n41014058005 +28311 A0:n41014058004 +28314 A0:n41014058007 A1:n41014058010 +28326 A0:n41014055011 A1:n41014058018 +28336 A0:n41014060004 +28341 A0:n41014060004 A1:n41014060009 +28344 A0:n41014060004 +28346 A0:n41014060009 A1:n41014060013 +28351 A1:n41014060014 A0:n41014060015 +28354 A0:n41014061001 +28357 A0:n41014060009 A1:n41014061007 +28362 A0:n41014061010 A1:n41014061012 +28365 A0:n41014061010 A2:n41014061015 +28378 A0:n41014062003 +28382 A0:n41014055003;n41014055007;n41014061010 A1:n41014062015;n41014062019 +28391 A0:n41014062010 +28393 A0:n41014062010 +28402 A0:n41014063003 A1:n41014063006 +28406 A0:n41014063003 +28411 A0:n41014055003;n41014055007;n41014063003 A1:n41014063011 +A0:n41014055003;n41014055007 A1:n41014064003 +28417 A0:n41014064004 A2:n41014064005 +28421 A0:n41014064009 A1:n41014064012 +28427 A0:n41014065003 A1:n41014065004;n41014065007;n41014065012;n41014065015 +28429 A0:n41014065003 A1:n41014065005 +28432 A0:n41014065003 A1:n41014065010 +28437 A0:n41014065003 A1:n41014065013 +28440 A0:n41014065003 A2:n41014065016 +28442 A0:n41014062003 +28448 A0:n41014065020 A1:n41014065022 +28457 A0:n41014066010 +28464 A0:n41014066010 A1:n41014067005 +28467 A0:n41014067004 +A0:n41014066010 A1:n41014067007 +28470 A0:n41014066010 +28481 A0:n41014068001 +A0:n41014067004 +28484 A0:n41014067004 +28486 A0:n41014067004 +28489 A0:n41014068009 A1:n41014068010 +28491 A0:n41014067004 +28499 A0:n41014069003 A1:n41014069005 +28501 A0:n41014069003 A1:n41014069008 +28503 A0:n41014069003 A2:n41014069010 +28505 A0:n00000000000 +28514 A0:n41014070001 +28520 A0:n00000000000 +A0:n41014070010 A2:n41014070013 +28534 A0:n41014071001 A1:n41014071004;n41014071006 +A0:n41014070013 +28537 A0:n41014070013 +28540 A0:n41014070013 A1:n41014071011 +28545 A0:n41014070010 A1:n41014071013 +28551 A0:n41014072005 +28553 A1:n41014072010 A1:n41014072012 +28559 A2:n41014072015 A0:n41014072017 +28567 A0:n41014072020 +28570 A0:n41014072010 A1:n41014072024 +28572 A0:n41014072010 +A0:n41014072010 +28580 A0:n41015001007 A1:n41015001004 +28590 A0:n41015001007 A1:n41015001019 +28593 A0:n41015001007 +28595 A0:n41015001007 A1:n41015001019 A2:n41015001023 +28598 A1:n41015002003 A0:n41015002005 +28610 A1:n41015001019 A2:n41015002015 +28612 A0:n41015002012 +28614 A0:n41015002017 +28616 A2:n41015003003 A0:n41015003005 A1:n41015003006 +28625 A0:n41015004003 A1:n41015004006 +28627 A0:n41015004003 +28629 A0:n41015001019 A1:n41015004010 +28631 A0:n41015001019 +28634 A0:n41015003005 A1:n41015004012 A2:n41015004013 +28640 A0:n41015005003 A1:n41015005005 +28642 A0:n41015005010 +28648 A0:n41015005010 A2:n41015006005 A1:n41015006007 +28653 A0:n00000000000 A1:n41015006008 +28656 A1:n41015007005 +28658 A0:n00000000000 +28668 A0:n41015007010 A1:n41015007014 +28670 A0:n41015008004 +28673 A0:n41015008004 A1:n41015008006 +A0:n41015008004 +28676 A0:n41015005010 A1:n00000000000 A2:n41015008009 +28681 A0:n41015009003 A2:n41015009005 +28683 A0:n41015009003 +A0:n41015008004 A1:n41015009008 +A0:n41015009003 A2:n41015009009 A1:n41015009011 +28692 A0:n41015009003 +28696 A1:n41015010007 A0:n41015010009 +28703 A0:n41015011003 A1:n41015011006 +28710 A0:n41015009003 A1:n41015011010 A2:n41015011012 +28716 A1:n41015012003 +A0:n41015012003 A2:n41015012007 +28721 A0:n41015012003 A1:n41015012008 +28723 A0:n41015011006 A1:n41015012011 +28731 A0:n41015013001 +A0:n41015012003 A1:n41015013006 +28737 A0:n41015014003 A2:n41015014005 +28740 A0:n41015012013 A1:n41015014006 +28746 A0:n41015014010 +A0:n41015014003 A1:n41015014015 +28752 A0:n41015015003 A1:n41015015009 +28757 A0:n41015015003 A2:n41015015006 A1:n41015015008 +A0:n41015015003 A2:n41015015011 A1:n41015015013 +28763 A0:n41015015003 A1:n41015015017 +28766 A0:n41015015003 +28768 A1:n41015015017 +28772 A0:n41015016003 A1:n41015016005 +28781 A0:n41015016003 A1:n41015016016 +28786 A0:n41015016003 A2:n41015017003 A1:n41015017004 +28790 A0:n41015016003 A1:n41015017010 A2:n41015017007 +28792 A0:n41015016003 A1:n41015017010 +28796 A0:n41015016003 A1:n41015018003 +A0:n41015016003 A1:n41015018004 +28799 A0:n41015018006 +28804 A0:n41015016003 A1:n41015019005 +28810 A0:n41015016003 A1:n41015019009 +28813 A0:n41015016003 A1:n41015019013 +28816 A0:n41015016003 A1:n41015019015 +28820 A0:n41015016003 A1:n41015020004 +28822 A0:n41015016003 A2:n41015020006 A1:n41015020008 +28827 A0:n41015016003 A2:n41015020011 A1:n41015020013 +28833 A0:n41015016003 A1:n41015020017 +28836 A0:n41015016003 A1:n41015020020 +28839 A0:n41015016003 A1:n41015021003 +A0:n00000000000 +28844 A0:n41015021003 +28853 A0:n41015021003 A1:n41015021018 +28858 A0:n41015016003 A1:n41015022003 +28870 A0:n41015016003 A2:n41015023003 A1:n41015023005 +28872 A1:n41015023005 +28877 A0:n41015023006 +28879 A0:n41015016003 A1:n41015024003 +28882 A0:n41015016003 A1:n41015024007 +28886 A0:n41015016003 A1:n41015024010 +28892 A0:n41015024013 A1:n41015024014 +28894 A0:n00000000000 +28898 A0:n41015016003 A1:n41015025007 +28902 A1:n41015026004 +28915 A0:n41015016003 A1:n41015027006 +28928 A0:n00000000000 +A0:n41015029003 A1:n41015029005 +28931 A0:n41015029003 A1:n41015029008 +28936 A0:n41015029003 +28939 A0:n41015015017 A1:n41015029016 +28943 A0:n41015015017 +28947 A0:n41015029014 A1:n41015030002 +28949 A0:n41015029014 +28957 A0:n41015031004 +28963 A0:n41015031004 +28965 A0:n41015015017 A1:n41015031012 +28967 A0:n41015015017 A1:n41015031014 +28969 A0:n41015015017 A1:n41015031017 +28975 A0:n41015032002 +28981 A0:n41015031004;n41015031010 +28983 A0:n41015031004;n41015031010 +28986 A1:n41015027006 +28989 A0:n41015032017 A1:n41015032021 +28992 A0:n41015033003 +28996 A0:n41015033005 +29008 A0:n41015034007 +29016 A0:n41015034010 +29028 A0:n41015034018 A1:n41015034026 +29033 A0:n00000000000 +A0:n41015035002 +A0:n41015035002 +A0:n41015035004 +29038 A0:n41015034007 A1:n41015035008 +29041 A0:n41015036003 +29043 A0:n41015036003 A1:n41015036006 +29046 A0:n41015036003 +29048 A0:n41015036003 A1:n41015036011 +29050 A0:n41015036003 +A0:n41015035002 +A0:n41015035002;n41015036003 +29054 A0:n41015036017 +29056 A0:n41015036017 A1:n41015036019 +29061 A0:n41015037003 A1:n41015037005 +29064 A0:n41015037003 +29070 A1:n41015038003 +29081 A0:n41015039004 +29085 A0:n41015039004 +29088 A0:n41015037003 +A0:n41015039004 +29098 A0:n41015040004 +29103 A0:n41015040004 +29127 A0:n41015041001 A1:n41015041008 +29130 A0:n41015040011;n41015040015;n41015040024 A1:n41015041011 +29136 A0:n41015041013 +29143 A0:n41015042003 +29145 A0:n00000000000 +29150 A0:n41015043002 +29161 A0:n41015043008 A1:n41015043014 +29166 A0:n41015043002 +A0:n41015043002 +29172 A0:n41015043002 A1:n41015043025 +29180 A0:n41015044003 +29183 A0:n41015043027 +29185 A0:n41015044003 A1:n41015044011 +29188 A0:n41015044003 A1:n41015044013 +29192 A0:n41015043027 +29194 A0:n41015044003 +29198 A0:n41015044003 A1:n41015045008 A2:n41015045010 +29204 A0:n41015045010 A1:n41015046003 +29206 A0:n41015045010 A1:n41015046005 +29208 A0:n41015045010 +29212 A0:n41015045010 A1:n41015046011 +29218 A1:n41015046014 +29222 A0:n41015045010 A1:n41015046021 +29238 A0:n41015047003;n41015047007 A1:n41015047012 +29240 A1:n41015046013 +29242 A0:n41016001004 +29255 A0:n41016001005;n41016001009;n41016001014 A1:n41016001016 +29258 A0:n41016001005;n41016001009;n41016001014 +A0:n41016001005;n41016001009;n41016001014 A1:n41016001020 +29268 A0:n41016001005;n41016001009;n41016001014 +29272 A0:n41016002014 +29276 A0:n41016001005;n41016001009;n41016001014 +29280 A0:n41016003005 A2:n41016003007 A1:n41016003009 +29290 A0:n41016001005;n41016001009;n41016001014 +A0:n41016001005;n41016001009;n41016001014 +29293 A1:n41016004007 +29301 A0:n41016001005;n41016001009;n41016001014 +29305 A0:n41016001005;n41016001009;n41016001014 A1:n41016005008 +29307 A0:n41016005007 +29311 A0:n41016005007 A1:n41016005013 +29315 A1:n41016001005;n41016001009;n41016001014 +29318 A0:n41016006001 A2:n41016006004 +29321 A1:n41016001005;n41016001009;n41016001014 +A0:n41016001005;n41016001009;n41016001014 A1:n41016006007 +29327 A1:n41016006007 +A1:n41016006007 +29332 A0:n41016001005;n41016001009;n41016001014 +29336 A0:n00000000000 A1:n41016006022 +29339 A0:n41016001005;n41016001009;n41016001014 +A0:n41016001005;n41016001009;n41016001014 A2:n41016007005;n41016007009 +29348 A0:n41015043027 +29355 A0:n41016007005;n41016007009 A1:n41016007017 +29357 A0:n41015043027 A2:n41016007021 +29360 A0:n41016001005;n41016001009;n41016001014 +A0:n41016001005;n41016001009;n41016001014 +29366 A1:n41016008009 A0:n41016008010;n41016008012 +29374 A0:n41016001005;n41016001009;n41016001014 A2:n41016008014 A1:n41016008015 +29376 A0:n41016001005;n41016001009;n41016001014 +29378 A0:n41015043027 +29382 A1:n41015043027 A2:n41016009008 +29389 A0:n41015043027 A1:n41016009015 +29393 A1:n41016009008 +A0:n41016010001 A2:n41016010006 +29399 A0:n41016010006 +29401 A0:n41016010006 +29403 A0:n41016010006 +29405 A0:n41015043027 +29407 A1:n41015043027 +29410 A0:n41016011001 +29417 A0:n41016012004 +A1:n41015043027 +29422 A0:n41016012004 +29426 A0:n41016012004 +A0:n41016013001 A1:n00000000000 A2:n41016013005 +29432 A0:n41016013005 A1:n41016013007 +29435 A0:n41016014006 +29439 A1:n41015043027 +29441 A0:n41015043027 A1:n41016014011;n41016014014 +29449 A0:n41016009008;n41016012004 A1:n41016014019 +29451 A1:n41016014018 +29453 A0:n41016014006 A1:n41016014017 +29455 A0:n41015043027 A2:n41016015003 +29457 A1:n41016014006 +29462 A0:n41016014006 A1:n41016015011 A2:n41016015014 +29469 A0:n00000000000 +29471 A1:n00000000000 +A1:n41016016002;n41016016004 +29475 A0:n00000000000 +A1:n41016016008 +29481 A0:n00000000000 +A0:n41016017001 A1:n41016017004 +29488 A0:n41016017004 A1:n41016017011 +29491 A0:n41016017004 +29493 A0:n41016017004 A1:n41016018001 +29497 A0:n41016017004 A1:n41016018005 +29501 A0:n41016018005 A1:n41016018009 +29505 A0:n41016017004 A1:n41016018013 +29508 A0:n41016018012 +29516 A0:n41016019004 A2:n41016019009 +29518 A1:n41016019004 +29523 A0:n41016019004 +29530 A0:n41016014006 +A0:n41016020001 +29535 A0:n41016020007 +29539 A0:n41016020007 A1:n41016020011 +29542 A0:n41016020016 +29579 A0:n42001001002 A1:n42001001004 +A0:n42001001002 A1:n42001001005 +29584 A1:n42001001011 +29589 A2:n42001002003 A1:n42001001011 A0:n42001002007;n42001002009 +29600 AA2:n42001003002 A0:n42001003009 +29602 A0:n42001003002 A1:n42001003005 +29608 A0:n42001003002 A2:n42001003008 +29612 A0:n42001003011 A1:n42001004008 +29615 A1:n42001003011 +29619 A0:n42001005009 +29653 A0:n42001005009;n42001005017 +29675 A0:n42001007012 +29682 A0:n00000000000 +29685 A0:n42001008006 +29701 A0:n42001005009 +29703 A0:n42001005009 +A0:n42001005009 +29717 A0:n42001010004 +29724 A2:n42001011003 A1:n42001011004 +29728 A0:n42001011004 +29736 A1:n42001012003 +29738 A0:n42001012003 +29741 A0:n42001012006 +29745 A0:n42001013006 +29751 A0:n42001013009 +29754 A1:n42001013013 +29763 A0:n42001013017 A1:n42001013021 A2:n42001013022 +29767 A0:n42001013009 A1:n42001013026 +29784 A1:n42001014008 +29796 A0:n42001013021 A1:n42001015007;n42001015009 +29800 A1:n42001013021 +29811 A0:n42001013021 A1:n42001016002 +29819 A0:n42001017002 +29827 A0:n42001013021 A1:n42001017012 +29837 A0:n42001013021 A2:n42001017022 A1:n42001017023 +29840 A1:n42001017023 +29842 A0:n42001018003 +29849 A0:n42001018003 A1:n42001018010 +29859 A0:n42001018017 +29865 A1:n42001019004 +29868 A0:n42001019004 A2:n42001019006 +29874 A0:n42001019009 +29879 A1:n42001019004 +A0:n42001019004 +29884 A0:n42001019004 A2:n42001019022 A1:n42001019023 +29888 A0:n42001018003 +29890 A0:n42001018003 +29893 A0:n42001018003 A1:n42001020008 +A0:n42001018003 +29898 A0:n42001020013 +29903 A0:n42001018003 A1:n42001020019 +29908 A1:n42001020021 +29915 A0:n42001021004 A1:n42001021007 +29921 A0:n42001021004 +29924 A0:n42001021016 +29930 A0:n42001021007 +29932 A0:n42001021007 A1:n42001022005 +A0:n42001021007 A2:n42001022006 +29936 A0:n42001021004 +29939 A0:n42001021007 A1:n42001022010 +29946 A0:n42001022016 A1:n00000000000 A2:n42001022019 +29952 A0:n00000000000 +29954 A1:n42001023006 +29960 A0:n42001021007 +29970 A0:n42001024007 +29976 A0:n42001024007 A1:n42001024013 +29980 A0:n42001024007 +29984 A2:n42001025003 A1:n00000000000 A0:n42001025005 +29989 A0:n42001025005 +A0:n42001025005 A1:n42001025011 +30001 A1:n42001026009 +30017 A1:n42001027002 A2:n42001027004 +30032 A0:n42001026009 +30035 A0:n42001026009 +A0:n42001028007 +A1:n00000000000 +30047 A1:n42001029001 +30049 A0:n42001027015 +30056 A0:n42001030004 A2:n42001030005 +30061 A0:n42001030008 +30064 A0:n42001030008 A1:n42001030011 +30070 A0:n42001030008 +A0:n42001030008 +30075 A0:n42001030008 A1:n42001031008 +30078 A0:n42001030008 A1:n42001031012 +30091 A2:n42001032010 A0:n42001032011 A1:n42001032015 +30103 A0:n42001031008 +30119 A0:n42001034003 +30125 A0:n42001034009 +30130 A0:n42001034003 A1:n42001034011 +30132 A1:n42001035004 +30135 A0:n42001035004 A2:n42001035006 +30139 A0:n42001035007 +30145 A0:n42001035013 A1:n42001035016 +30150 A1:n42001035021 +30156 A0:n42001034003 +30163 A0:n42001036008 A1:n42001036010 +30179 A0:n42001037008 +30186 A0:n42001038003 +30188 A0:n42001034006 +30192 A0:n00000000000 +30199 A0:n42001038019 +30206 A0:n42001039003 +30211 A0:n42001039003 +30221 A0:n42001039003 +30227 A0:n42001039003 A1:n42001040010 +30231 A0:n00000000000 +30233 A1:n42001041006 A0:n42001041010 +30240 A0:n42001041013 +30248 A1:n42001041023 +30254 A0:n42001041023 +30258 A0:n42001041023 +A1:n00000000000 +30264 A1:n00000000000 +30275 A0:n42001043008 +30284 A0:n42001041008 +30286 A0:n42001044006 +30296 A0:n42001044018 +30308 A0:n42001041008 +30310 A0:n42001045007 +30313 A1:n00000000000 A2:n42001045010 +30318 A0:n42001046003 +30320 A0:n42001046006 A1:n42001046009 +30327 A0:n42001047004 +30338 A0:n42001047008 +30350 A1:n42001048015 A0:n42001048018 +30356 A2:n42001049003 A1:n42001049004 A0:n42001049006 +30375 A0:n00000000000 A1:n42001050011 +30377 A0:n42001049006 A1:n42001051002 +30382 A0:n42001049006 A1:n42001051007 +30387 A0:n42001049006 A1:n42001052002 +30392 A0:n42001049006 A1:n42001052007 +30394 A0:n00000000000 +A0:n42001049006 A1:n42001053001 +30398 A0:n00000000000 +A0:n42001049006 A1:n42001053005 +30401 A0:n42001049006 A1:n42001054002 +30405 A0:n42001049006 A1:n42001054006 A2:n42001054008;n42001054011 +30417 A0:n42001049006 +30423 A0:n42001056003 +30431 A0:n42001056003 +30439 A2:n42001057003 A1:n42001057006 +30443 A0:n42001057009 +30446 A0:n42001057003 A1:n42001057012 +30449 A0:n42001058004;n42001058007 +30457 A0:n42001058011 A1:n42001058013 +30465 A0:n42001058004;n42001058007 +30468 A0:n00000000000 +30474 A0:n42001058004;n42001058007 +A0:n42001058004;n42001058007 A1:n42001059011 +30479 A0:n42001058004;n42001058007 A1:n42001059014 +30489 A1:n42001060004 +30493 A0:n42001060004 +30499 A0:n42001058004;n42001058007 +30510 A1:n42001061012 +30515 A0:n42001058004;n42001058007 A1:n00000000000 A2:n42001062004 +30521 A0:n42001062004 A1:n42001062007 +30526 A0:n42001062004 A1:n42001063003 +30528 A0:n42001062004 +A0:n42001062004 +30535 A0:n42001063012 +30538 A1:n42001064004 +30548 A0:n42001062004 +A0:n42001062004 A1:n42001064015 +30553 A0:n42001065005 +30558 A0:n42001058004;n42001058007 A1:n42001065008 +30567 A1:n42001065019 +30573 A0:n42001066005 +30576 A0:n00000000000 +30581 A0:n42001066005 +30600 A1:n42001067002 +30604 A0:n42001067002 +A0:n42001067002 +30613 A0:n42001068002 +30615 A0:n42001068002 A1:n42001068011 A2:n42001068013 +30621 A0:n42001068002 A1:n42001069003 A2:n42001069005 +30631 A0:n42001068002 +30649 A0:n00000000000 A1:n42001071011 +30651 A0:n42001068002 A1:n42001072002 +30658 A1:n42001068002 A1:n42001072009 +30664 A0:n42001068002 A1:n42001073002 +30671 A0:n42001068002 A2:n42001073011 A1:n42001074006 +30676 A1:n42001067002;n42001060004;n42001059011;n42001068013 +30678 A0:n42001067002;n42001060004;n42001059011;n42001068013 A1:n42001074007 +30698 A0:n42001076004 +30701 A0:n42001076004 A1:n42001076013 +30705 A0:n42001076004 A1:n42001077003 A2:n42001077006 +30722 A1:n42001078009 A0:n42001078010 +30727 A0:n42001078010 A1:n00000000000 A2:n42001079008 +30734 A0:n00000000000 +30736 A0:n42001078010 A1:n42001079012 +30746 A0:n42001080003 +30748 A1:n42001080003 +30763 A0:n00000000000 +30768 A0:n42002001008 +30773 A0:n42002001015 +30781 A0:n42002002008 +30786 A0:n42002003003 +30788 A0:n42002003003 +30795 A0:n42002004004 +30822 A0:n42002004004 +30826 A1:n42002005003 A2:n42002005006 +30831 A0:n00000000000 +30837 A1:n42002006010 +30841 A0:n42002006013 +30844 A0:n42002005003 A1:n42002007004 +30851 A0:n42002005003 A1:n42002007010 +30854 A0:n42002005003 A1:n42002007013 +30874 A0:n42002008002 +30876 A0:n42002008002 A1:n42002008012 +30887 A0:n42002009002 A1:n00000000000 A2:n42002009005 +30892 A0:n42002009007 A1:n42002009010 +30895 A1:n42002008002 A1:n42002009013 +30899 A2:n42002010003 A0:n42002010005 +30904 A0:n42002008002 +30906 A0:n42002008002 +A0:n42002010005 A2:n42002010011 A1:n42002010012 +30917 A2:n42002011003 A1:n42002011005 +30932 A0:n42002008002 A1:n42002012007;n42002012009 +30934 A1:n42002012006 +30936 A0:n42002012006 +30941 A0:n42002013007 +30948 A0:n42002013007 A1:n42002013012 +30952 A0:n42002013007 +30965 A0:n00000000000 +30967 A0:n42002015011 +30977 A0:n42002015013 +30981 A0:n42002015013 +30985 A0:n42002015013 A1:n42002015024 +30990 A0:n42002015024 +30994 A1:n42002015028 A0:n42002015030 A2:n42002015032 +30997 A0:n42002015013 +A0:n42002015013 +31000 A0:n42002015013 A1:n42002016008;n42002016011;n42002016015 +31010 A0:n42002016014 +31015 A0:n42002015013 +A0:n42002015013 +31021 A1:n42002017006 A2:n42002017009 +31030 A0:n00000000000 +A0:n42002018004 +31034 A1:n00000000000 +31043 A0:n42002019003 A1:n42002019007 +31048 A0:n42002019003 A1:n42002019008 +31054 A0:n42002020004 +31057 A0:n42002020004 A1:n42002020009 +31059 A0:n42002020004 A1:n42002020009 +31065 A0:n42002020004 A1:n42002020012 +31067 A0:n42002020004 A1:n42002020012 +31069 A1:n42002020013 +31074 A1:n42002021004 +31078 A0:n42002016011;n42002019003 A1:n42002021008 +31087 A1:n42002021012 +31093 A1:n42002021023 +31100 A1:n42002022005 +31110 A0:n42002016011;n42002019003 A1:n42002022014 +31114 A0:n42002016011;n42002019003 A1:n42002022014 A2:n42002022019 +31118 A1:n42002023011 +31125 A0:n42002023008 A1:n42002023010 +31133 A0:n42002016011;n42002019003 A1:n42002024004 +31137 A1:n42002024012 +31164 A0:n42002025012 A1:n42002025018 +31176 A2:n42002026003 A1:n42002026011 +31184 A0:n42002025012 A1:n42002026012 +31189 A0:n42002025012 A1:n42002026018 +31194 A0:n42002025012 +31204 A0:n42002027014 A1:n42002027016 +31211 A0:n42002027020 +31215 A1:n00000000000 +31222 A0:n42002028002 A1:n42002028004 +31228 A0:n42002025012 A1:n42002028011 +31232 A0:n42002025012 +31235 A0:n42002029006 A1:n42002029004 +31246 A0:n42002030004 A1:n42002030007 +31254 A0:n42002029006 A1:n42002031001 +31271 A0:n42002033004;n42002033008 +31280 A1:n00000000000 +31284 A1:n42002034003 A0:n42002034004 +31288 A0:n42002034004 +31294 A0:n42002034008 +31296 A0:n42002034013 +31308 A1:n42002034025 +31315 A0:n42002035008 +31319 A1:n42002035015 +31325 A0:n42002036003 +31334 A0:n42002036003 +31338 A0:n42002036003 +31356 A0:n42002037008 A1:n42002037012 +31362 A0:n42002036003 +31370 A0:n42002036003 +A0:n42002036003 A1:n42002038008 +31375 A0:n42002036003 A2:n42002038015 +31380 A0:n00000000000 A1:n42002038016 +31385 A0:n42002033004;n42002034008 A1:n42002039005 +31392 A0:n42002033004;n42002034008 +31403 A0:n42002040003 +31405 A1:n42002040003 +A1:n42002040003 +31415 A0:n42002041004 +31432 A0:n42002042007 +31440 A0:n42002041004;n42002040003 A1:n42002043004 +31445 A0:n42002043008 +31447 A0:n42002043010 +31455 A0:n42002043019 +31460 A0:n42002043019 A1:n42002044007 +31466 A0:n42002043019 A1:n42002044010 +31470 A0:n42002043019 A1:n42002044013 +31480 A0:n42002043019 +A0:n42002043019 +31484 A0:n42002043019 A1:n42002045008 +31487 A0:n00000000000 +31491 A0:n42002043019 A1:n42002046011;n42002046017;n42002046020 +31496 A0:n42002046007 +31502 A0:n42002043010 A1:n42002046018 +31505 A0:n42002043010 A1:n42002046021 +31508 A0:n42002047005 +31511 A0:n00000000000 A1:n42002047006 +31521 A0:n42002043019 A1:n42002048003 +31523 A1:n42002043019 +31525 A0:n42002048010 +31533 A0:n42002048012 A1:n00000000000 A2:n42002048015 +31536 A0:n42002048012 +31541 A0:n42002048019;n42002048010 +A0:n42002048019;n42002048021 A1:n42002048024 +31545 A0:n42002043010 +31550 A0:n42002048019;n42002048010 A1:n42002049008 +31553 A0:n42002048019;n42002048010 +31562 A0:n42002049013 +31566 A0:n42002050002 A1:n42002050006 +31570 A0:n42002043010 A1:n42002050007 A2:n42002050009 +31573 A0:n42002043010 +31577 A0:n42002043010 +31582 A1:n42002043010 A2:n42002051012 +31588 A0:n42002051015 A1:n42002051020 +31598 A0:n42002052002 +31618 A0:n42003001010 +31624 A0:n42003001018 +31633 A0:n42003001019 +31643 A0:n42003001031 +31649 A0:n42003002007 +31661 A0:n42003002010 +31668 A0:n42003002010 A1:n42003003010 +31675 A1:n42003004009 +31683 A0:n00000000000 +31687 A0:n00000000000 A1:n42003004016 +31692 A0:n00000000000 A1:n42003004021 +31698 A1:n42003005002 +31704 A1:n42003005006;n42003005008 +31706 A0:n42003005013 +31718 A0:n42003006004 A1:n42003006006 +31726 A0:n42003002010 A2:n42003007005 +31728 A0:n42003007005 +A1:n42003007005 +31736 A0:n42003007011 A2:n42003007013 A1:n42003007014 +31738 A0:n42003007009 +31741 A0:n42003007018 +31744 A0:n42003007009 A1:n42003008003 +31751 A0:n42003007009 A1:n42003008010 +A0:n42003007009 +31756 A0:n42003007009 A1:n42003008016 +31760 A0:n42003002010 A2:n42003008019 +31763 A0:n42003008023 A1:n42003008028 +31770 A0:n42003008023 A1:n42003008029 A2:n42003008031 +31784 A0:n42003009005 +31789 A0:n42003009014 A1:n42003009017 +31792 A1:n42003009014 +31796 A1:n42003009014 +31798 A1:n42003010003 A0:n42003010005 +31802 A0:n42003010005 +31805 A0:n42003010005 A1:n42003010007 +31807 A1:n42003002010 +A0:n42003002010 A2:n42003011004 +31811 A0:n00000000000 A1:n42003011008 +31814 A0:n42003011006 A1:n00000000000 A2:n42003011012 +31817 A0:n00000000000 +31820 A0:n00000000000 A1:n42003011016 +31823 A0:n42003011015 +31825 A0:n42003012004 +31828 A1:n42003012004 +31830 A0:n42003012004 +31835 A0:n42003012004 A1:n42003012011 +31838 A0:n42003013001 +31845 A1:n00000000000 A2:n42003013011 +31847 A0:n42003012004 A1:n42003013007 +31849 A1:n42003014003 A0:n42003014005 +31852 A0:n00000000000 +A0:n42003014005 +31855 A1:n42003014007 A0:n42003014010 +31859 A0:n42003002010 A2:n42003014013 +31862 A0:n42003014005 A1:n42003014014 +31864 A0:n42003014005 +31866 A1:n42003014005 +31871 A0:n42003015004 +31875 A0:n42003015007 +31890 A0:n42003016005 +A0:n42003016005 A2:n42003016003 +31898 A0:n42003016006 A1:n42003016010 +31901 A0:n42003016014 +31909 A0:n42003016005 A1:n42003016022 +31917 A0:n42003016026 A1:n42003016027 +31930 A0:n42003016014 A1:n42003017010 +31935 A0:n42003016014 A1:n42003017015 +31945 A0:n42003016014 A1:n42003017022 +31953 A0:n42003016005 A1:n42003018001;n42003018005 +A0:n42003016005 A1:n42003018009 +31962 A1:n42003019003 +31977 A0:n42003019023 +31980 A0:n42003019003 A1:n42003020003 +31985 A0:n42003019023 A1:n42003020008 +31991 A0:n00000000000 +31994 A1:n42003021008 +32000 A1:n42003021010 +32002 A0:n42003021010 +A1:n42003021016 +32007 A0:n42003022004 +32022 A0:n42003022014 +32032 A0:n42003022014 +32037 A0:n42003023004 +32042 A1:n42003023004 +32203 A0:n42004001001 +32208 A1:n42004001001 +32217 A1:n42004001001 +32223 A0:n42004001001 A1:n42004002010 +32230 A1:n42004002017 +32232 A0:n42004001001 +32234 A2:n42004003003 A0:n42004003005 +32243 A0:n42004001001 A2:n42004003013 +32251 A0:n42004004006 +32256 A1:n42004004013 +32262 A0:n42004004015 +32266 A0:n42004003005 A1:n42004005003 +32268 A0:n42004003005 A2:n42004005005 A1:n42004005008 +32279 A2:n42004006003 A0:n42004006005 +32284 A0:n42004006005 A2:n42004006006 A1:n42004006009;n42004006014 +32295 A1:n42004006009;n42004006014 A2:n42004006017 +32299 A0:n42004006005 A1:n42004006020 +A0:n42004006005 A2:n42004006022 A1:n42004006024 +32305 A0:n42004007001 +32312 A1:n42004008004 +32315 A0:n42004008004 A2:n42004008006 +32317 A1:n42004008008;n42004008016 +A0:n00000000000 A1:n42004008009 +32326 A0:n00000000000 A1:n42004008014 +32328 A0:n42004006005 A1:n42004009003 +32333 A0:n42004006005 +32340 A0:n42004006005 A2:n42004009015 +32347 A0:n42004008004 A1:n42004009022 +32352 A1:n42004010007;n42004011005;n42004011008 +32357 A0:n42004009020 A2:n42004010005 +32361 A0:n42004010005 A1:n42004010012 +32367 A0:n42004010005 A1:n42004011006 +32371 A0:n00000000000 A1:n42004011013 +32378 A1:n42004012006 +A2:n42004012004 A0:n42004012006 +32384 A1:n42004012010 +32386 A0:n00000000000 A1:n42004012011 +32392 A0:n42004013006 A1:n42004013004 +32397 A0:n42004013006 +32403 A0:n42004014004 +32416 A0:n42004014014 +32425 A0:n42004015002 +32430 A1:n42004014004 +32434 A0:n42004014004 +32439 A1:n42004014004 +32441 A0:n42004014004 +32444 A0:n00000000000 AA2:n42004016013 +32455 A0:n42004014004 +A0:n42004014004 +32458 A2:n42004017003 A1:n42004017004 +32465 A0:n42004014004 A1:n42004017011 +32468 A0:n42004014004 A1:n42004017014 +32473 A1:n42004018004;n42004018007;n42004018011 +32480 A0:n42004018002 A1:n42004018008 +32482 A0:n00000000000 A1:n00000000000 A2:n42004018010 +32484 A0:n42004018002 A1:n42004018012 +32486 A0:n00000000000 A2:n42004018014 A1:n42004018015 +32492 A0:n00000000000 A1:n42004018020 +A1:n00000000000 +32496 A0:n00000000000 A1:n42004019002 +32501 A0:n42004014004 A1:n42004020004 +32504 A0:n42004014004 A1:n42004020004 A2:n42004020007 +32507 A0:n42004014004 +32516 A0:n42004020012 A1:n42004020018 +32519 A0:n42004014004 A1:n42004021003 +A0:n42004014004 +32525 A1:n42004021010 +32535 A0:n42004022002 A2:n42004022004 +32538 A0:n42004022002 +32545 A0:n42004022009 +32551 A0:n42004022002 +32558 A0:n42004014004 +32562 A0:n42004022002 A2:n42004023007 A1:n42004023009 +32568 A0:n42004023011 A1:n42004023013 +32570 A0:n42004022002 A1:n42004023016 +32572 A0:n42004023014 +32576 A0:n42004023011 A1:n42004023015 +32584 A0:n42004014004 +32586 A0:n42004014004 A2:n42004024005 +32600 A0:n42004014004 A2:n42004025005 +32613 A1:n42004025019 +32634 A1:n42004026006 +32659 A1:n42004027013 +32666 A1:n42004028003 +32672 A0:n42004028003 A1:n42004028009 +32675 A0:n42004028003 +A0:n42004028003 A1:n42004029004 +32682 A0:n42004028003 A1:n42004029010 +32693 A1:n42004029018 +32695 A0:n42004028003 A1:n42004029023 +32699 A0:n42004014004 +32703 A0:n42004030001 +32705 A0:n42004014004 +32713 A0:n42004014004 A1:n42004031011 +32719 A1:n00000000000 +32737 A0:n42004033006 A1:n42004033008 +32742 A0:n42004033009 +32752 A0:n42004034006 +A0:n42004034006 A1:n42004034010 +32755 A0:n42004033009 A1:n42004034012 +32764 A1:n42004035003 A0:n42004035005 +32768 A0:n42004035005 +A1:n42004033009 +32771 A0:n42004033009 +32777 A0:n42004035016 A1:n42004035014 +32782 A0:n42004035016 +32786 A0:n42004035016 A1:n42004035025 +32789 A0:n42004036003 +32794 A0:n42004036005 +32797 A0:n42004036005 +32807 A0:n42004035005 A2:n42004036023 +32812 A0:n42004036023 +32814 A0:n42004037003 +32824 A0:n42004035005 +32828 A0:n42004035005 +32838 A1:n42004038011 +32842 A0:n00000000000 A1:n42004038021 +32847 A0:n42004035005 +32850 A0:n42004035005 A1:n42004039007 +32854 A0:n42004039007 A1:n42004039010 +32858 A0:n42004038011 +A0:n42004038011 A1:n42004039015 +32862 A0:n42004040004 +32867 A0:n42004040006 A1:n42004040008 +A0:n00000000000 +32871 A0:n42004040007 A1:n42004040012 +32882 A0:n42004035005 A2:n42004040017 A1:n42004040021 +A0:n42004040015 A1:n42004040024 +32886 A0:n42004041004 +32891 A0:n42004041004 +32893 A0:n42004041004 +32902 A0:n42004035005 +32904 A0:n42004035005 A1:n42004041022 +32906 A0:n42004041021 +32908 A0:n42004041004 A1:n42004041026 +32914 A0:n42004042003 +32916 A0:n42004035005 +A1:n42004035005 +32924 A0:n42004042011 A1:n42004042013 +32927 A0:n42004042011 +32931 A0:n42004042011 A1:n42004042020 +32935 A0:n42004035005 +32940 A0:n42004043001 +32948 A2:n42004043010 A0:n42004043012 A1:n42004043015 +32954 A0:n42004043011 +32958 A1:n42004035005 +32961 A0:n42004035005 +32968 A0:n00000000000 +32973 A0:n42005001006 A1:n42005001008 +32976 A0:n42005001006 A1:n42005001012 +32984 A0:n42005001016 +32990 A0:n42004035005 A1:n42005002005 +32993 A0:n42005002003 +33002 A0:n42005002011 +A0:n42005002011 A1:n42005002017 +33007 A0:n42004035005 +33015 A0:n42004035005 A1:n42005003015 +33020 A0:n42005003011 +33023 A0:n42004035005 +33027 A0:n42004035005 A1:n42005003024 +33032 A0:n42004035005 A1:n42005004004 +A0:n42004035005 +A0:n42004035005 +33038 A0:n42005004008 +33043 A0:n42005004008 A1:n42005004016 +33050 A1:n42005005003 +33052 A0:n42005005003 +33057 A0:n42005005003 +33059 A0:n42005005003 A1:n42005005010 +33065 A0:n42005005003 A1:n42005005019 +33070 A0:n42005005003 A1:n42005006002 +A0:n42005005003 A1:n42005006005 +33076 A1:n42005006011 +33081 A0:n42005005003 A1:n00000000000 A2:n42005007004 +33089 A0:n42005007004 +A0:n42005007004 A1:n42005007012 +33093 A0:n42005007004 +33095 A0:n42005007004;n42005005003 A1:n42005007019 +33100 A1:n42005007022 +33103 A0:n42005008003 +33106 A0:n42005008003 AA2:n42005008007 +33110 A0:n42005008003 +A0:n42005008017 +33121 A0:n42005009001 A1:n42005009004;n42005009007 +33134 A0:n42005008003;n42005009007 A1:n42005009015 +33149 A0:n42005010020 +33156 A0:n42005010018 +33162 A0:n42005010018 A1:n42005010026 +33164 A0:n42005010018;n42005010004;n42005010006 A1:n42005011004 +33170 A0:n42005010004;n42005010006;n42005010018 A1:n42005011009 +33172 A0:n42005010004;n42005010006;n42005010018 A1:n42005011011 +33175 A0:n00000000000 +33190 A0:n42005012013 A1:n42005012019 +33193 A0:n42005012013 +33196 A1:n42005012013 A1:n42005012024 +33198 A0:n42005012013 +33201 A0:n42005012026 +A0:n42005012026 A1:n42005012031 +33204 A0:n42005012026 A1:n42005012030 +33206 A0:n42005012019 A1:n42005013004 +33209 A0:n42005012019 A1:n42005013006 +33211 A0:n42005012019 +A0:n42005012019 +A1:n42005012013 +33218 A0:n42005013013 +33223 A0:n42005014002 A2:n42005014004 A1:n42005014006 +33226 A0:n42005012013 A2:n42005014005 +33228 A0:n42005012013 +A0:n42005012013 A1:n42005014010 A2:n42005014012 +33234 A0:n42005012013 +33240 A0:n42005014021 +33246 A0:n42005015005 +33253 A0:n42005015010 +33256 A0:n42005015010 +33258 A1:n42005015010 +33266 A0:n42005016001 +33271 A0:n42005012019 +33273 A0:n00000000000 +33281 A0:n42005017008 +33284 A0:n42005017014;n42005017016 +33290 A0:n42005017017 +33303 A0:n42005017030 +33306 A0:n42005017036 +33311 A0:n42005018003 A1:n42005018007 +33317 A1:n42005018007 +33319 A0:n42005018003 A1:n42005018014;n42005018016 +33321 A0:n42005018003 A1:n42005018013 +33323 A0:n42005018003 A1:n42005018007 +33328 A0:n42005018003 A1:n42005019005 +33330 A0:n42005018003 A1:n42005019006 +33335 A0:n42005018003 +33342 A0:n42005018003 A1:n42005019018 +33354 A0:n42005019027 A1:n42005020004 +33358 A0:n42005019027 +33360 A2:n42005020009 A1:n42005020011 +33366 A1:n42005021003 A0:n42005021005;n42005021008 +A0:n42005021005;n42005021008 +33373 A0:n42005021005;n42005021008 +33378 A0:n42005021013 A1:n42005021015 +33381 A0:n42005021016 A1:n42005021019 +33383 A0:n42005021016 A1:n42005021018 +33392 A0:n42005022004 A1:n42005022006 +33396 A1:n42005022004 +A0:n42005022004 +33401 A0:n42005021005;n42005021008 +33409 A0:n00000000000 +A2:n42005023006 A1:n42005023008 +33416 A0:n00000000000 +A0:n42005018007 +33419 A0:n42005018007 +33422 A0:n42005021005;n42005021008 +33429 A0:n42005024006 A1:n42005024009 +33433 A0:n42005024006 A1:n42005024015 +33435 A0:n42005022004 A2:n42005024018 +33437 A1:n42005018007 +33439 A0:n42005022004 A2:n42005024019 +A0:n42005024018 +33442 A0:n42005024018 A1:n42005024025 +33446 A0:n42005024018 +33453 A0:n42005024018 +33456 A0:n42005024018 A1:n42005025009 +33459 A0:n42005024018 +A0:n42005024018 +33465 A0:n42005024018 A1:n42005025017 +33470 A0:n42005026002 A1:n42005026004 +33473 A0:n42005026004 A1:n42005026008 +33477 A1:n42005026004 +33479 A0:n42005026004 +33481 A0:n42005026004 A1:n42005026015 +33487 A0:n42005022004 +33489 A0:n42005022004 A1:n42005027010 +33493 A0:n42005027007 +33498 A0:n42005022004 A2:n42005027016 +33500 A0:n42005027007 A1:n42005027018 +33503 A0:n42005027007 A1:n42005028003 +33505 A0:n42005027007 +A0:n42005027007 A1:n42005028006 +33509 A1:n42005029003 A0:n42005029005 A2:n42005029006 +33519 A0:n42005029013 +33527 A0:n42005029018 +33531 A0:n42005030004;n42005030007 +33542 A0:n42005030004;n42005030007 +33550 A0:n42005030011 +33552 A0:n42005030011 +33554 A1:n42005031004 +33557 A0:n42005031004 +33563 A1:n42005031009 A0:n42005031012 +33565 A0:n00000000000 +33569 A0:n00000000000 +33571 A0:n42005031004 +A0:n42005031004 A1:n42005032004 +33580 A0:n42005033001 +33586 A0:n42005033007 +33590 A0:n42005033007 A1:n42005033012 +33599 A0:n42005033021 +33601 A0:n42005033021 +33605 A0:n42005034003 +33609 A0:n42005030004;n42005030007 A1:n42005034020 +33621 A0:n42005034010 +A0:n42005030004;n42005030007 A1:n42005034021 +33624 A0:n42005035003 +33628 A1:n42005035010 +33634 A0:n42005034010 +33640 A0:n42005031004 A1:n42005036004 +33651 A0:n42005036008 A1:n42005036009 +A0:n42005036008 +33662 A0:n42005036008 A1:n42005036023 +33667 A0:n42005036031 +33676 A0:n42005037002 A1:n42005037004 +33685 A0:n42005037014 A1:n42005037018 +33694 A1:n42005037020 +33698 A0:n42005037024 +33708 A0:n42005039002 A1:n42005039004 +33710 A0:n42005039002 A1:n42005039006 +33713 A0:n42005039002 +33719 A0:n42006001005 +33722 A0:n42006001006 +33727 A0:n42006001012 A1:n42006001017 +33729 A0:n42006001012 A1:n42006001017 +33735 A0:n42006001012 +33742 A0:n42006002001 +33744 A0:n42006001012 A1:n42006002010 +33747 A0:n42006002008 +33751 A1:n42006003007 +33754 A0:n42006003007 +33758 A0:n42006002001 A1:n42006003009 +33761 A1:n42006003011 A0:n42006003013 +33764 A0:n42006003016;n42006003020 +33770 A0:n00000000000 +33772 A0:n42006003013 +33783 A0:n42006003013 A1:n42006004010 +A0:n42006003013 A1:n42006004010 +33786 A0:n42006003013 A1:n42006004010 A2:n42006004019 +33791 A0:n00000000000 A1:n42006004020 +33793 A0:n42006004023 +33800 A0:n42006003007 A2:n42006005003 +33811 A0:n42006006006;n42006006012 +33815 A0:n42006006007 +33821 A0:n42006003007 +33835 A1:n42006007003 A0:n42006007005;n42006007008 +33846 A0:n42006003007 +33848 A0:n42006007005;n42006007008 A1:n42006007016 +A0:n42006007005;n42006007008 A1:n42006007017 +33853 A0:n42006008001 A1:n42006008005 +33858 A0:n42006003007 A2:n42006008010 +33863 A0:n42006008010 A1:n42006008015 +33866 A0:n42006008010 +33868 A0:n42006008010 +33873 A0:n42006008010 +A0:n42006008010 +33876 A0:n42006009004 +33881 A0:n42006009004 A1:n42006009008 +33884 A0:n42006009013;n42006009015 +33887 A0:n00000000000 +33889 A0:n00000000000 +33891 A0:n00000000000 A1:n42006009016 +33893 A0:n00000000000 +33895 A0:n42006009004 A1:n42006010004 +33898 A0:n42006009004 A2:n42006010006 +33900 A0:n42006008010 A1:n42006010009 +33906 A0:n42006010011 +33908 A1:n42006010017 +33914 A1:n42006011001 +33917 A0:n42006007005;n42006007008 +33922 A0:n42006007005;n42006007008 A1:n42006011009 A2:n42006011013 +33926 A0:n42006012007 +33931 A0:n42006012008 +33936 A0:n42006011013 +33939 A0:n42006011013 +33947 A0:n42006013004 +33949 A0:n42006011013 A1:n42006013007 +33954 A0:n42006011013 A1:n42006013013 +33961 A0:n42006011013 A1:n42006013014 +33965 A0:n42006011013 A1:n42006014002 +34002 A0:n42006011013 +34005 A0:n42006011013 +34032 A0:n42006018001 +A0:n42006017015 A1:n42006018004 +34036 A1:n42006017015 +34043 A1:n00000000000 +34047 A1:n42006018013 +34052 A0:n42006019004 A1:n42006019006 +A0:n42006019004 A1:n42006019007 +34059 A0:n42006019009 +34061 A0:n42006011013 A1:n42006019015 +34065 A0:n42006011013 A1:n42006020005 +34073 A0:n42006020002 +34086 A0:n42006020009 +34089 A1:n42006021003 +34092 A0:n42006020009 +34095 A0:n42006021009 +34099 A1:n42006022005 A0:n42006022007 +34105 A0:n42006022007 A1:n42006022011 +34108 A0:n42006022007 +34110 A0:n42006022007 A1:n42006022017 +34121 A1:n42006020009 +34127 A0:n42006020009 +34129 A0:n42006020009 +34141 A2:n42006023023 A1:n00000000000 A0:n42006023025 +34153 A0:n42006024005 A1:n42006024009 +34160 A1:n00000000000 +34163 A0:n42006025004 +34166 A0:n00000000000 +34169 A0:n42006025010 +34171 A0:n42006025010 +34176 A1:n42006026004 A0:n42006026008 +34184 A2:n42006026015 A1:n00000000000 A0:n42006026017 +34191 A0:n42006011013 A2:n42006027002 +34194 A0:n42006020009 +A0:n42006027005 A1:n42006027008 +34200 A0:n42006027005 A1:n00000000000 A2:n42006027013 +34202 A0:n00000000000 A1:n42006027014 +34204 A0:n42006027005 A1:n42006028003 +34206 A0:n00000000000 A1:n42006028004 +34208 A0:n42006027005 +34211 A0:n00000000000 A1:n42006028009 +34214 A0:n00000000000 A1:n42006029003 +34219 A0:n42006027005 A2:n42006029002 A1:n42006029010 +34226 A0:n00000000000 A1:n42006029017 +34234 A0:n42006027005 A1:n42006029020 +34236 A0:n00000000000 A1:n42006030003 +34238 A0:n42006027005 A1:n00000000000 A2:n42006030002 +34242 A0:n00000000000 A1:n42006030010 +34246 A0:n42006027005 A1:n00000000000 +34249 A0:n42006027005 +34251 A2:n42006031006 A1:n00000000000 A0:n42006031008 +34255 A0:n42006027005 A1:n00000000000 A2:n42006031010 +34260 A0:n42006027005 A1:n42006032005 +34262 A0:n00000000000 A1:n42006032006 +34273 A0:n00000000000 A1:n42006032017 +34275 A0:n42006032014 A1:n42006032016 +34279 A0:n42006027005 A1:n42006033006 +34281 A0:n00000000000 A1:n42006033007 +34292 A0:n42006033014 A1:n42006033016 +34295 A0:n42006027005 +34298 A0:n42006027005 A1:n42006034007 +A0:n42006027005 +34307 A0:n42006034013 A1:n00000000000 A2:n42006034014 +34309 A0:n42006034013 A1:n42006034019 +34313 A0:n42006027005 A1:n42006035004 +34318 A0:n42006027005 +34320 A0:n42006027005 +34322 A0:n42006027005 A1:n42006035010 +34352 A0:n42006027005 +34356 A1:n42006027005 +34359 A0:n42006027005 +34363 A1:n42006027005 +A0:n42006027005 +34366 A1:n42006027005 +A0:n42006027005 +34369 A1:n00000000000 A2:n42006038004 +34373 A1:n42006038005 +A1:n42006038005 +A1:n42006038005 +A0:n00000000000 A1:n42006038005 +34384 A0:n42006027005 +A1:n42006038018 A2:n42006038020 +34388 A0:n42006011013 A1:n42006039004 A2:n42006039005 +34393 A0:n42006039008 A1:n42006039010 +34396 A0:n42006039008 A1:n42006039009 +34401 A0:n42006039012 +34409 A1:n00000000000 +34418 A0:n42006020009 A1:n42006041005 +34437 A0:n42006020009 A1:n42006041015 +34439 A0:n42006020009 A1:n42006042003 +A0:n42006020009 A2:n42006042005 +34445 A0:n42006042007 A1:n42006042009 +A0:n42006020009 A1:n42006042011 +34462 A0:n42006042017 A1:n42006042023 +34464 A0:n42006042026 A1:n42006042030 +34474 A0:n42006042026 +34484 A0:n42006042026 A1:n42006042039 +34488 A0:n42006043004 A1:n42006043007 +34497 A0:n42006043011 A1:n42006043014 +34507 A1:n42006044003 +34512 A0:n00000000000 A1:n42006044014 +34518 A0:n00000000000 A1:n42006044018 +34528 A0:n42006045003 A1:n42006045012 +34537 A0:n42006045015 A1:n42006045021 +34544 A0:n42006045028 +34551 A0:n42006042026 A2:n42006046003 A1:n42006046005 +34556 A0:n42006042026 A1:n42006046011 +34558 A0:n42006011013 A1:n42006046010 +34561 A0:n00000000000 +34565 A0:n00000000000 A1:n42006047010 +34570 A0:n00000000000 A1:n42006047013 +34572 A0:n42006011013 A2:n42006047015 +34580 A0:n42006048003 A1:n42006048005 +34583 A0:n42006048006 +34585 A0:n42006048003 +34587 A0:n42006048003 A1:n42006048012 +34594 A0:n42006048016 +A0:n42006048021 A1:n42006048023 +34603 A0:n42006048021 A1:n42006048028 +A0:n42006048021 A1:n42006048029 +34609 A1:n42006048034 +34613 A0:n00000000000 +34616 A0:n00000000000 +34620 A0:n42006049009 A1:n42006049011 +34628 A1:n42006049017 A0:n42006049020 +34633 A0:n42006049011 +34643 A0:n42006011013 A1:n42007001005 +34653 A0:n42006011013 +34661 A0:n42007002004 +A0:n42007002004 A1:n42007002008 +A0:n42007002004 +34669 A0:n42007002001 +34673 A0:n42007002001 A1:n42007003009 +34679 A0:n42007002001 A1:n42007003013 +34682 A0:n42007003005 +A0:n42007003005 A1:n42007003018 +34689 A0:n42007003009 +34693 A0:n42007004001 A1:n42007004008 +34696 A0:n42007003009 +34701 A0:n42007004006 A2:n42007004014 A1:n42007004016 +34704 A0:n42007002001 A1:n42007005004 +34712 A1:n42007005008 A0:n42007005009 A2:n42007005011 +34717 A0:n42007006003 +34725 A0:n42007006009 +34729 A1:n42007006017 A0:n42007006019 +34733 A0:n42007006019 A2:n42007006021 +34737 A1:n42007006022 +34747 A0:n42007006022 +34751 A0:n42007006019 A1:n42007007003 +34754 A0:n42007006019 +34756 A0:n42007006022 +34759 A1:n42007007014 +34770 A1:n42007008004 +A0:n42007008004 A1:n42007008012 +34776 A0:n42007006019 A2:n42007008015 +34778 A1:n42007008015 +34780 A0:n42007008015 +34783 A0:n42007008020 +34785 A0:n42007008020 +34790 A0:n42007008026 A1:n42007008029 +34793 A0:n42007008026 +34795 A0:n42007009005 A1:n42007009003 +34799 A0:n42007009005 A1:n42007009007 +34802 A1:n42007009005 +34804 A0:n42007009013 A1:n42007009012 +34807 A0:n42007009005 A2:n42007009013 +A0:n42007009005 A2:n42007009016 +34816 A0:n42007009005 A1:n42007009022 +34818 A0:n42007010007 +34823 A1:n42007006017;n42007003009 +A0:n42007010007 A1:n42007010011 +34827 A0:n42007010010 +34829 A0:n00000000000 +34833 A1:n42007009005 +34839 A0:n42007011015;n42007011018 +34849 A0:n42007009005 AA2:n42007012005 +34856 A1:n42007012013 +A0:n42007012013 +34876 A0:n42007013005 A1:n42007013003 +34880 A1:n42007013005 +34884 A0:n42007013005 A2:n42007013011 +34887 A0:n42007012015 +34889 A0:n42007013005 +A0:n42007013005 A1:n42007014005 +34895 A0:n00000000000 +A0:n42007014008 +34898 A0:n42007013005 +34901 A0:n42007013005 A2:n42007014013 +A1:n42007014012 +34904 A0:n42007015004 +34908 A0:n42007015004 A1:n42007015007 +A0:n42007015004 +34911 A0:n42007013005 A1:n42007015010 A2:n42007015012 +34917 A0:n42007016003 A1:n42007016004 +34921 A0:n42007016004 A1:n42007016008 +34924 A0:n42007016004 +34928 A1:n42007016011 +34933 A0:n42007016020 A1:n42007016022 +34940 A0:n42007017004 +34955 A2:n42007018003 A0:n42007018005 +34964 A0:n42007018018 A1:n42007018013 +34972 A0:n42007018018 +34976 A0:n42007018018 +34980 A0:n00000000000 +34983 A0:n42007018018;n42007018015 A1:n42007019011 +34985 A0:n42007020006 +34990 A0:n42007020006 +34994 A0:n42007020008 A1:n42007020012 +34998 A0:n42007020008 +35002 A0:n00000000000 +35005 A0:n42007020008;n42007018015 A1:n42007020021 +35010 A0:n42007019004 A1:n42007021006 +35022 A0:n42007019004 A2:n42007021015 A1:n42007021018 +A0:n42007021015 +35025 A1:n42007019004 +A0:n42007019004 A2:n42007022004 +35028 A1:n42007020006 +A0:n42007020006 A2:n42007022007 A1:n42007022009;n42007022011 +35032 A0:n42007020006 A1:n42007022008 +35034 A0:n42007020006 A1:n42007022008 +35036 A0:n42007022012 +35038 A0:n42007022014 +35040 A1:n42007022016 +35043 A0:n42007022019 +35045 A1:n42007022021 +35047 A1:n42007022023 +35054 A1:n42007023004 +35058 A0:n42007024004 +35062 A0:n42007019004 A1:n42007024007 +A0:n42007019004 +35070 A0:n42007024010 A1:n42007024013 +A0:n42007024010 +35078 A1:n42007024019 +35081 A0:n42007024010 A1:n42007025002 +A0:n42007024010 +35087 A1:n42007025005 +A0:n42007024010 +35095 A0:n00000000000 +35102 A0:n42007024010 A1:n42007026002 +A0:n42007024010 +35106 A0:n42007019004 A2:n42007026008 +35115 A1:n42007027007;n42007027015 +35117 A0:n42007016020 A1:n42007027009 +35125 A0:n42007027014 A1:n42007027017 +35131 A0:n42007019004 A2:n42007028002 +35158 A0:n42007029004;n42007029008 +A0:n42007029004;n42007029008 A1:n42007029011 +35162 A1:n42007029004;n42007029008 +35176 A0:n42007030003;n42007030006 A1:n42007030008 +35180 A1:n42007030003;n42007030006 +35185 A0:n42007019004 A1:n42007031005 +35201 A0:n42007032003 +35203 A0:n42007032003 A1:n00000000000 A2:n42007032010 +35206 A0:n42007032011 +A0:n42007032003 A1:n00000000000 A2:n42007032014 +35211 A0:n42007032003 +A0:n42007032003 +35215 A0:n42007032003 +35217 A0:n42007033003 +35222 A0:n42007033003 A1:n42007033008 +35225 A0:n42007033003 A1:n42007033011 +35228 A0:n42007031005 +35230 A0:n42007033003 A1:n42007033014 +A0:n42007034003 +35236 A0:n42007034003 +35238 A0:n42007034003 +35240 A0:n42007031005 +A0:n42007031005 +35251 A1:n42007035004 +35260 A0:n42007036003 A1:n42007036004 +35266 A0:n42007019004 +35270 A0:n42007019004 +35276 A1:n42007019004 +35287 A0:n42007037003 +35289 A0:n42007019004 +35295 A0:n42007037003 A1:n42007037020 +35299 A0:n42007037003 +35305 A0:n42007037003 +A0:n42007037003 A1:n42007038012 +35309 A0:n42007037003 A1:n42007038014 +35319 A0:n42007037003 +35321 A0:n42007037003 A1:n42007038026 +35326 A0:n42007037003 +35330 A0:n42007039004 +35334 A0:n42007039004 A1:n42007039007 +35336 A0:n42007039004 +35339 A0:n42007039004 +35345 A0:n42007019004 +35352 A0:n42007039023 A1:n42007039025 +35358 A1:n42007040004 +35361 A0:n42007040004 +35365 A0:n42007040004 A1:n42007040012 +35368 A0:n42007040004 A2:n42007040010 A1:n42007040011 +35372 A0:n42007040015 +A0:n42007040004 +35381 A0:n42007041007 A1:n42007041009 +35389 A0:n42007042003 A1:n42007042004 +35391 A0:n42007041002 A1:n00000000000 +35393 A0:n42007041004 A1:n00000000000 A2:n42007042005 +35398 A0:n42007042007 A1:n42007042012 +35400 A1:n42007043002 +35402 A0:n42007043002 +A0:n42007043002 +35408 A0:n42007041004 A2:n42007043006 A1:n42007043008 +35411 A0:n42007043010 A2:n42007043013 +35414 A0:n42007043002 +35416 A1:n42007040004 +35422 A0:n42007040004 A2:n42007044007 +A0:n42007044007 A1:n42007044012 +35427 A0:n42007040004 +35437 A0:n42007044007 A1:n42007044018 A2:n42007044019 +35442 A0:n42007044024 A1:n42007044031 +35450 A0:n42007044012 +35454 A0:n42007044007 A1:n42007045001 A2:n42007045002 +35459 A0:n42007040004 +35461 A0:n42007045005 A1:n42007045012 +A0:n42007044012 A1:n42007045015 +35471 A0:n42007044007 A1:n42007046003 +35475 A0:n42007046007 A1:n42007046012 +35481 A0:n42007040004 A2:n42007047004 +35483 A1:n42007047007 +35490 A0:n42007044012 +35495 A2:n42007047014 A1:n42007047016 +35497 A0:n42007047017 +35499 A0:n42007040004 A2:n42007048003 +35501 A1:n42007048007 +35506 A0:n42007049004 A1:n42007049005 +35508 A0:n00000000000 +A0:n42007049004 +35518 A0:n42007049011 A1:n42007049013 +35520 A0:n42007040004 +35527 A0:n42007050007 A1:n42007050010 +35529 A0:n42007050005 +35533 A0:n00000000000 +35539 A0:n42008001007 +35544 A0:n42007040004 A1:n42008001017 +35546 A0:n42007040004 A1:n42008001017 +35561 A1:n42008002004 +35575 A0:n42008002018 +35588 A0:n42008003012 A1:n42008003014 +35592 A0:n00000000000 +35595 A0:n42008004003 +35602 A0:n42008004006 +35605 A0:n42007040004 +35608 A0:n42008005003 +35610 A0:n00000000000 +35612 A0:n42008005003 A1:n42008005007 +35619 A0:n42008005013 +35623 A0:n42008005014 +35628 A1:n42008005014 +35634 A0:n42008005024 A1:n42008005028 +35638 A0:n42008006002 +35643 A1:n42008006002 +A1:n42008006002 +35648 A0:n42008006002 A1:n42008006014 +35652 A0:n42008007002 +35658 A1:n42008007011 +35661 A0:n42008007011 A1:n42008007013 +35665 A0:n42008008002 +35672 A1:n42008008002 +A0:n42008008002 A1:n42008008012 +35677 A0:n42007040004 A1:n42008008014 +A0:n42007040004 +35680 A0:n00000000000 A1:n42008008019 +35682 A0:n42008008018 +A0:n42008008018 +35685 A1:n42008009003 A0:n42008009005 +35697 A0:n42008010001 +35699 A2:n42008010004 A1:n42008010006 +A0:n00000000000 A1:n42008010008 +35713 A0:n42008010015 +35715 A0:n42008010015 +35717 A0:n42008010015 +35719 A0:n42008010015 +35739 A0:n00000000000 +35741 A0:n42008012012 +35745 A0:n42008012012 A1:n42008012016 +35754 A0:n42008012001 +A1:n42008012001 +35763 A0:n42008013006 +35766 A0:n42008013006 A1:n42008013013 +35773 A0:n42008013015 A1:n42008013016 +35777 A0:n42008013019 +35782 A0:n42008013001 +35788 A0:n00000000000 +35792 A0:n00000000000 +35802 A0:n42008014006 +A1:n42008014006 +35806 A0:n42008014006 +35821 A0:n42008015009 A1:n42008015017 +35824 A0:n42008015009 +35826 A0:n42008015009 +35832 A0:n42008016001 A1:n42008016003 +A0:n42008016001 A1:n42008016006 +35839 A0:n42008016001 +35843 A0:n00000000000 +35846 A0:n00000000000 +A0:n42008016018 A1:n42008016021 +35863 A1:n42008017011 +35867 A0:n42008017010 +35869 A0:n42008009005 A1:n42008018004 +35871 A0:n42008009005 +35875 A0:n42008018005 +A1:n00000000000 A2:n42008018010 +35882 A0:n42008018012 +35885 A0:n42008018015 A1:n42008018017 +A0:n42008018015 A1:n42008018019 +A1:n42008018018 +35891 A0:n42008019006;n42008019009 +35902 A0:n42008019006;n42008019009 A1:n42008019014 +A0:n42008019006;n42008019009 A1:n42008019015 +35909 A1:n42008020011 A2:n42008020003 +35918 A0:n42008020005;n42008020009 +35920 A0:n42008020005;n42008020009 A1:n42008020015 +35922 A0:n42008020005;n42008020009 A1:n42008020013 +35925 A1:n42007040004 +A0:n42008021001 +35941 A0:n00000000000 A1:n42008021016 +35943 A0:n00000000000 A1:n42008021016 +35945 A0:n00000000000 +35952 A0:n42008022008 +35960 A0:n42007040004 +35963 A0:n42008022014;n42007040004 +35970 A1:n42007040004;n42008022014 +35972 A0:n42008023003 +35974 A0:n42007040004 +35976 A0:n42008023007 +35983 A1:n42007040004;n42008022014 +35985 A0:n42007040004;n42008022014 +35987 A0:n42008022014 +A0:n42008022014 A1:n42008024004 +35990 A0:n42008022014 +35993 A0:n42008024006;n42008022014 +35996 A1:n42007040004 +A0:n42008024009 A1:n42008024014;n42008024017 +36006 A0:n42008024014;n42008024017 +36008 A0:n42008024024 +36011 A0:n42007040004 A2:n42008025003 +36018 A1:n42008022014 +A0:n42008022014 +A0:n42008022014 +36034 A0:n42007040004 A1:n00000000000 A2:n42008025021;n42008025025 +36036 A0:n42008025021;n42008025025 A1:n42008025028 +36039 A0:n42007040004;n42008022014 +36052 A0:n42007040004 +36056 A1:n42008027003 A0:n42008027008 +36062 A0:n42008027008 A1:n42008027014 +36068 A0:n42008027008 A1:n42008027020 +36074 A0:n42008027008 +36080 A0:n42008027008 A1:n42008028004 +36083 A0:n42008027008 +A0:n42008027008 +36089 A0:n42008029004 +36100 A0:n42008029004 A1:n42008028023 +36104 A0:n42008028016 A1:n42008028025 +36106 A0:n42008028004 A2:n42008029004 A1:n42008029007 +36111 A0:n42008029004 +36118 A0:n42008029004 A1:n42008029015 +36121 A1:n42008029010 +36125 A1:n42008029010 +36127 A0:n42008029010 A1:n42008029025 +36130 A1:n42008029010 +36138 A1:n42008030003 A0:n42008030005 +36148 A0:n42008030010 +36151 A0:n42008030016 +36157 A0:n42008030016 A1:n42008031003 +36161 A0:n42008030005 A2:n42008031007 A1:n42008031011 +36166 A0:n42008030016 +36173 A1:n42008032004 +36178 A0:n42008030016 A1:n42008032013 +36181 A0:n42008030005 A2:n42008032016 A1:n42008032019 +36185 A0:n42008030016 +36187 A0:n42008030005 A1:n42008032019 A2:n42008032022 +36192 A0:n42008033004 +36196 A0:n42008033004 +36201 A0:n42008033015 +36211 A1:n42008033015 +36214 A0:n00000000000 +A0:n42008034004 A1:n42008034006 +36217 A0:n00000000000 +A0:n42008034004 +36220 A0:n42008034004 +36229 A0:n00000000000 +A0:n00000000000 A1:n42008035005 +36232 A0:n00000000000 +36234 A0:n00000000000 +36239 A0:n00000000000 A1:n42008035013 +A0:n42008035015 +36247 A0:n42008035019 +A1:n42008035015 +36250 A0:n42008035015 +36257 A1:n00000000000 +36259 A2:n42008036003 A0:n42008036005 +36262 A0:n00000000000 +36264 A1:n42008036009 +36266 A1:n42008035015 +36268 A0:n42008037006 A1:n42008037011 +36277 A0:n42008037003 +36283 A1:n42008037006 +36286 A0:n42008035028 +36289 A0:n42008037018 +36291 A2:n42008038003 A0:n42008038005 A1:n42008038013 +36297 A0:n42008038010 +36304 A0:n42008035028 A1:n42008038016 +36306 A0:n42008035028 +A0:n42008038005 +36313 A0:n42008038005 A1:n42008039010 +36316 A1:n42008039008 A2:n42008039009 A0:n42008039012 +36320 A0:n42008038005 +36325 A0:n42008038005 A1:n42008039021 +36327 A1:n42008039020 A2:n42008039022 A0:n42008039024 +36334 A0:n42008040006 +36337 A1:n42008040008 A0:n42008040010 +36344 A0:n42008040013 A1:n42008040015 +36348 A0:n42008041004 +36360 A0:n42008041004 +36365 A0:n42008041004 A1:n42008041022 +36367 A0:n42008041021 +36382 A0:n42008042010 +36386 A0:n42008042016 +36390 A0:n42008042018 A1:n42008042020 +36403 A0:n42008043010 A1:n42008043015 +36406 A1:n42008043002 +A0:n42008043002 +36409 A0:n42008043002 A1:n42008044005 +36417 A0:n42008044013 +36424 A0:n42008045004 +36429 A0:n00000000000 A1:n42008045008 +36432 A0:n42008045011 +36434 A0:n42008045014 +36440 A0:n42008045017 A1:n42008045019 +36443 A0:n42008045017 +36447 A0:n42008046003 +A1:n42008046006 A0:n42008046007 +36453 A0:n42008046008 A1:n42008046012 +36455 A0:n42008046011 +36461 A0:n42008047004 +36464 A0:n42008047004 +A0:n42008047004 +A0:n42008047004 +36468 A0:n42008047004 +36473 A0:n42008047004 A1:n42008047017 +36475 A0:n42008047004 A1:n42008047016 +36482 A1:n42008047004 +36486 A0:n42008048001 A2:n42008048004 +36492 A0:n42008048007 A1:n42008048010 +36494 A0:n42008048005 +36499 A0:n42008049002 +A0:n42008049005 +36505 A0:n42008049005 +36507 A0:n42008049013 +36512 A0:n42008049008 A1:n42008049018 +36518 A0:n42008050003 +A0:n42008050003 A2:n42008050006 +36522 A0:n42008049008 +36524 A0:n42008049008 +36526 A1:n42008049013 +36528 A0:n42008050003 +36533 A0:n42008050003 A1:n42008051008 +A0:n42008051009 +36555 A0:n42008052003 A1:n42008052006 +36557 A0:n42008052003 A1:n42008052006 +36561 A0:n42008052007 +36563 A0:n42008052003 +36565 A0:n42008051023 +36567 A0:n42008051023 +36569 A0:n42008052003 A1:n42008053003 +36571 A0:n42008052003 +36573 A0:n42008051023 +36576 A0:n42008050003 A1:n42008054005 +36580 A0:n42008054001 +A0:n42008050003 +36584 A0:n42008054010 +36586 A0:n42008055004 +36591 A0:n42008051023 +36594 A0:n42008050003 A1:n42008055012 +36596 A2:n42008055011 A1:n42008055013 +A0:n00000000000 +36599 A0:n42008056004 +36605 A0:n42008056006 A2:n42008056009 A1:n42008056011 +36608 A0:n42008051014;n42008051016;n42008051018;n42008056004;n42008051023 A2:n42008056010 A1:n42008056013 +36610 A0:n00000000000 +36612 A0:n42008050003 A1:n42009001004 +36615 A0:n42008050003 A2:n42009001006 A1:n42009001007;n42009001009 +36626 A0:n42009001004 A1:n42009001015 +36628 A0:n42008050003 A1:n42009002003 +36630 A0:n42009001004 A1:n42009002006 +36636 A0:n42009001004 +36638 A0:n42008050003 +36642 A0:n42009001004 A1:n42009003005 +36658 A0:n42009001004 A1:n42009003021 +36664 A0:n42009001004 +36666 A0:n42009001004 +36669 A0:n42009001004 +36674 A0:n42009005002 A1:n42009005006 +36676 A0:n42009001004 +36687 A0:n42009001004 A1:n42009005013 +36693 A0:n42009001004 +A0:n42009001004 +36698 A0:n42009001004 +36700 A0:n42009001004 +36703 A0:n42009007003 A1:n42009007007 +36708 A0:n00000000000 +36711 A0:n42009007003 +36714 A1:n42009007018 +36719 A1:n42009007017 +36727 A0:n42009008005 +36735 A0:n42009008010 +36737 A0:n42009009003 +36741 A1:n42009009004 A0:n42009009005 +36748 A0:n42009009003 A1:n42009009014 +36751 A0:n42009009003 A1:n42009009017 +A0:n42009009003 A1:n42009009018 +36755 A0:n42009010004 +36758 A0:n42009010004 A2:n42009010006 A1:n42009010008 +36761 A0:n42009010004 A1:n42009010007 +36763 A0:n42008050003 A1:n42009010011 +36765 A0:n42008050003 +36775 A0:n42009011003 +A0:n42009011003 A1:n42009011006 +36779 A0:n42008050003 A1:n42009011009 +36781 A0:n42008050003 A2:n42009011011 +36792 A0:n00000000000 A1:n42009011019 +A0:n42008050003 A1:n42009011020 +36797 A0:n42009012003 A1:n42009012005 +A0:n42009012003 +36800 A0:n42009012009 +36803 A0:n42009012009 A2:n42009012011 +36805 A0:n42008050003 A1:n42009012014 +36809 A1:n42009012014 +36816 A0:n42009012014 +36818 A0:n42009012014 A1:n42009012026 +36827 A0:n42008050003 +36830 A2:n42009013006 A0:n42009013008 A1:n42009013007 +36832 A0:n42009012014 +36836 A0:n42009013009 +36849 A1:n42009012009 +36851 A0:n42009013025 A1:n42009013032 +36864 A0:n42008050003 +36869 A0:n42009014010 A1:n42009014013 +36876 A0:n42009014010 +36879 A0:n42009014010 A1:n42009015006 +36882 A0:n42008050003 A1:n42009016005;n42009016009 +36890 A0:n42008050003 +36894 A0:n42008050003 A1:n42009016015 +36897 A0:n42008050003 A1:n42009016015 +36899 A0:n42008050003 A2:n42009016021 A1:n42009016015 +36902 A0:n42009016021 A1:n42009016015 A2:n42009016024 +36906 A0:n42009017005 +36908 A1:n42009017005 +36911 A1:n42009017009 +36913 A0:n42009017012 +36919 A0:n00000000000 +36923 A0:n42009018006 +36927 A0:n42009018013 +36932 A0:n42008050003 A1:n42009018016 +36934 A0:n42008050003 +36940 A1:n42009018018 A0:n42009018021 +36943 A1:n42009018013 +A0:n42009019001 +36958 A0:n42009019014 +36960 A0:n42008050003 A2:n42009020003 +36967 A0:n42009020004 A1:n42009020006 +36970 A1:n42009020010 +A0:n42009020010 +36978 A0:n42008050003 A1:n42009021004 +36980 A0:n42009021001 A1:n42009021007 +36982 A0:n42009018013 A2:n42009021006 A1:n42009021008 +36984 A0:n42008050003 +36986 A0:n42009022009;n42009022011;n42009022020;n42009022025 +36992 A0:n42009022005 A1:n42009022008 +36994 A1:n42009022005 +37003 A1:n42009022005 +37008 A1:n42009022005 +37010 A0:n42008050003 +37015 A0:n42009023006 A1:n42009023010 +37018 A0:n42009023006 +A0:n42009023006 A1:n42009023012 +37022 A0:n42009023006 A1:n42009023016 +37029 A0:n42009023006 A1:n42009023022 +37034 A0:n42009024001 A1:n42009024008 +37038 A0:n42009024001 A1:n42009024006 +A0:n42009024004 A1:n42009024010 +37044 A0:n42009024011 A1:n42009024016 +37051 A0:n42009024020 A1:n42009024022 +37055 A1:n42009025001 A1:n42009025004 +37057 A0:n42009025004 A1:n42009025007 +37063 A0:n42009025004 A1:n42009025009 +37065 A1:n42009025004 A1:n42009025009 +37069 A1:n42009026001 A1:n42009026005;n42009026009 +37080 A1:n42009026010 A1:n42009026012 +37082 A0:n42009026012 +37095 A0:n42008050003 A2:n42009027003 +37098 A0:n42009027006 +37102 A0:n00000000000 +37106 A0:n42009027010 A1:n42009027014 +37110 A0:n42009027006 A1:n42009027019 +37116 A0:n00000000000 +37125 A0:n42008050003 A1:n42009028012;n42009028014;n42009028016 +37131 A0:n42008050003 +37135 A0:n42008050003 +37137 A0:n00000000000 +37140 A0:n42009029006 +37153 A0:n42009029015 +37158 A0:n42009030003 +37166 A1:n42009030003 +37169 A0:n42009031001 A1:n42009031007 +37174 A0:n42008050003 A1:n42009031009 +37177 A0:n42008050003 A1:n42009031011 +37186 A1:n42009032003;n42009032005 +37189 A0:n42009032003;n42009032005 +A0:n42009032003;n42009032005 A1:n42009032015;n42009032020 +37199 A0:n42009032020 +37202 A0:n00000000000 +37205 A1:n42009033006 +37209 A0:n42009033011 A1:n42009033016;n42009033022 +37222 A0:n42009033011;n42009032005 A1:n42009033023 +37234 A0:n42009033011 A1:n42009033036 +37236 A0:n42009033011 A1:n42009033035 +37240 A1:n42009034001 A0:n42009034003 +A0:n42009034006 +37244 A0:n42009034006 A1:n42009034009 +37247 A1:n42009033011;n42009032005 +37250 A0:n42009034015 +37257 A0:n42009035002 +37261 A0:n42009035002 +37268 A1:n42009035011 +37270 A0:n42009033011;n42009032005 A1:n42009035015 +37274 A0:n42009036006 +37277 A1:n42009036008 +37282 A0:n42009036011 +37285 A0:n42009033011;n42009032005 A2:n42009036014 A1:n42009036020 +37292 A0:n42009033011;n42009032005 A1:n42009036021 +37294 A0:n00000000000 +37298 A0:n42009037007 +37303 A1:n42009037012 A0:n42009037013 +37313 A0:n42009038003 +A0:n42009038003 +37316 A0:n42009038003 A2:n42009038011 A1:n42009038012 +37318 A0:n42009038009 +37330 A0:n42009039003 A1:n42009039005 +37334 A0:n42009039003 +37336 A0:n42009039003 A1:n42009039011 +37342 A0:n42009039003 +37345 A0:n42009039003 A1:n42009039020 +37348 A1:n42009038003 A1:n42009040004 +37353 A0:n42009040004 A1:n42009040008 +37357 A1:n42009040004 +37359 A1:n42009041004 +37362 A0:n42009041004 +37367 A1:n42009041007 +37374 A0:n42009041004 A1:n42009041018 +37376 A0:n42009038003 A1:n42009041022 +37383 A0:n42009042004 +37385 A1:n42009042006 A0:n42009042008 +37390 A0:n42009042008 +37392 A0:n42009042014 A1:n42009042016 +37400 A0:n42009042014 A1:n42009042022 +37404 A0:n42009042014 A1:n42009042025 A2:n42009042027 +37410 A1:n42009043003 +37419 A0:n42009043009 +37423 A0:n42009042014 A1:n42009043014 +A0:n42009042014 +37429 A0:n42009044002 A1:n42009044008 +37443 A0:n42009044012 A1:n42009044016 +A1:n42009044012 +37450 A0:n42009045001 A1:n42009045005 +37456 A1:n42009045005 +37461 A0:n42009043019 A1:n42009045015 +37464 A0:n42009043019 A1:n42009045018 +A0:n42009043019 A1:n42009045019 +37472 A0:n42009046003 +37485 A0:n42009047003 A1:n42009047006 +37491 A0:n42009047003 A1:n42009047011 +37493 A0:n42009047003 A1:n42009047013 +37498 A0:n42009047003 A2:n42009048003 +37502 A0:n42009048004 A1:n42009048009 +37511 A0:n42009048006 A1:n42009048014 +37516 A0:n42009048017 A1:n42009048019 +A0:n42009048020 A1:n42009048023 +37519 A0:n42009043008 A1:n42009048024 +37527 A0:n00000000000 +37532 A1:n42009049004 +37535 A0:n42009049004 +37537 A0:n42009043019 A1:n42009049013 +37543 A0:n42009049007 A1:n42009049014 +37546 A0:n42009043019 A1:n42009049017 +37550 A0:n42009049008 +37554 A0:n42009050005 +37559 A0:n42009043019 +37570 A0:n00000000000 +37573 A0:n42009051007 +37583 A0:n42009051012 A1:n42009051014 +37585 A0:n42009050005 +37589 A0:n42009050005 A1:n42009052003 +37595 A1:n42009052003 +A0:n42009052003 +37601 A0:n42009052003 A1:n00000000000 A2:n42009052015 +37605 A0:n42009052011 A1:n42009053004 +37612 A0:n42009053007 +37616 A0:n42009054004 +37622 A0:n42009054004 +37624 A0:n42009054009 +A0:n42009054004 A1:n42009054013;n42009054018 +37627 A0:n42009054012 +37632 A0:n42009054012 A1:n42009054019 +37635 A1:n42009050005 +A0:n42009050005 A1:n42009055004 +37639 A1:n42009050005;n42009043019 +37644 A0:n42009057003 +37649 A0:n42009057008 +37653 A0:n42009057008 A1:n42009057012 +37657 A0:n42009050005 +37659 A2:n42009058003 A0:n42009058005 +37666 A0:n42009058007 A1:n42009058008 +37679 A0:n42009058018 A1:n42009058026 +37683 A0:n42009058018 A1:n42009058025 +37685 A0:n42009058005 +37688 A0:n42009059004 A1:n42009059006 +37692 A0:n42009059007 +A0:n42009058005 A2:n42009059011 A1:n42009059014 +37696 A0:n42009059004 +A0:n42009059004 A1:n42009059016 +37702 A0:n42009058005 A2:n42009060003 +37704 A0:n42009059004 A1:n42009060007 +37707 A0:n42009060006 A1:n42009060010 +37713 A0:n42009059004 +A0:n42009060011 A1:n42009060016 +37720 A0:n42009061004 +37723 A0:n42009061004 A1:n42009061006 +37728 A0:n42009061007 A2:n42009061011 A1:n42009061012 +37730 A0:n42009061004 A1:n42009061013 +37737 A0:n42009062006 +37743 A0:n42009062007 A1:n42009062010 +37749 A0:n42009062007 +37762 A0:n42010001006 A1:n42010001007 +37768 A0:n42010001006 A1:n42010001011 +37781 A0:n42010001024 A1:n42010001025 +37783 A0:n42010001006 +37785 A0:n42010001006 +37797 A1:n42010001007 A1:n42010002016 +37804 A0:n42010002016 A1:n42010002020 +37809 A0:n42010001007 +A0:n42010001007 +A0:n42010001006 A1:n42010003004 +37819 A0:n42010001007 A1:n42010004003 +37830 A0:n42010001007 A1:n42010004009 +37836 A0:n42010001007 +37838 A0:n42010001007 +37849 A0:n42010006011 +37860 A0:n42010006011 +37866 A0:n42010001007 +A0:n42010001007 A1:n42010007010 +37869 A0:n42010001007 A1:n42010007010 +37881 A0:n42010001007 +37891 A0:n42010001007 +37893 A0:n00000000000 A1:n42010008009 +37895 A0:n42010001007 A1:n42010008012 +37897 A1:n00000000000 A2:n42010008013 +37900 A0:n42010001007 A1:n42010009006 +37906 A0:n42010001007 A2:n42010009009 +37908 A0:n42010009014 +37920 A0:n42010001007 +37923 A0:n00000000000 A1:n42010010010 +37925 A0:n42010001007 +37930 A0:n42010001007 +37935 A1:n42010011003 A2:n42010011006 +37944 A0:n42010001007 A1:n42010011003 A2:n42010011015 +37948 A0:n00000000000 A1:n42010011017 +37950 A0:n42010011022 +37955 A0:n42010001006 A2:n42010012002 +37964 A0:n00000000000 +37981 A1:n42010013015 +37985 A0:n42010013015 +37994 A0:n42010013010;n42010013012 +A0:n42010013010;n42010013012 +38001 A0:n00000000000 +38013 A1:n42010015002 +38017 A0:n42010015003 +38019 A0:n00000000000 A1:n42010016003 +38022 A0:n42010016002 A1:n42010016004 +38025 A0:n00000000000 A1:n42010016009 +38028 A0:n42010016008 A1:n42010016010 +38032 A0:n00000000000 A1:n42010016014 +A0:n42010016015 A1:n42010016018 +38035 A0:n42009062023 A1:n42010016019 +38038 A0:n42010017004 +38043 A0:n42010017004 +38048 A1:n42010017011 A2:n42010017013 +38055 A0:n42010001006 A2:n42010018003 +38057 A0:n42010001006 A1:n42010018012 +38065 A0:n42010018006 +A0:n42010017004 +A0:n42010001006 A2:n42010019003 A1:n42010019005 +38072 A0:n42010017004 +38089 A0:n42010019020 A1:n42010019021 +38094 A0:n42010017004 +38099 A1:n42010020008 +38101 A0:n42010017004 +38106 A1:n42010020015 +38114 A0:n42010001006 +38120 A0:n42010001006 +A0:n42010001006 A1:n42010021013 +38131 A0:n42010021014 A1:n42010021023 +38138 A0:n42010021014 A1:n42010021030 A2:n42010021031 +38147 A0:n42010021037 +38152 A1:n42010022001 A2:n42010022002 +38159 A0:n42010022009 A1:n42010022011;n42010022020 +38180 A0:n42010022033 A1:n42010022023 A2:n42010022029 +A1:n42010022034 A0:n42010022033 +38185 A1:n42010001006 +38191 A0:n42010001006 +38196 A0:n42010023011 A1:n42010023015 +38198 A0:n42010023005 A1:n42010023014 +38200 A0:n42010001006 A2:n42010024003 +38207 A0:n42010024006;n42010024008 A1:n42010024010 +A0:n42010024006;n42010024008 A1:n42010024013 +38211 A1:n42010024011 A0:n42010024012 +38214 A0:n42010024006;n42010024008 +38216 A0:n42010024006;n42010024008 A1:n42010024020 +38218 A0:n42010023005 A1:n42010024019 +38221 A0:n42010024006;n42010024008 +38226 A0:n42010025003 +A0:n42010025003 A1:n42010025007 +38229 A0:n42010025003 +38232 A0:n42010025003 A1:n42010025010 +38235 A0:n42010025003 A1:n42010025012 +38238 A0:n42010026001 +38245 A1:n42010026009 +38247 A0:n42010025003 +38250 A1:n42010025003 +A0:n42010027001 +A0:n00000000000 A1:n42010027006 +38287 A0:n42010001006 A2:n42010028003 +38290 A1:n42010025003 +38292 A0:n42010025003 A1:n42010028006 +38294 A0:n42010025003 +38297 A0:n42010025003 A1:n42010029004 +A0:n42010025003 A1:n42010029005 +38300 A0:n42010029001 +38309 A0:n42010030003 +38312 A0:n42010030003 +38315 A0:n42010030005 +38322 A0:n42010030005 AA2:n42010030013 +38325 A0:n42010030013 A1:n42010030018 +38329 A0:n42010030013 A1:n42010030020 +A0:n42010030015 +A0:n42010030013 A1:n42010030024 +38338 A0:n42010031004 +38344 A0:n42010031004 A1:n42010031013 +38346 A0:n42010031004 +38354 A0:n42010032004 +38356 A0:n42010032004 +A0:n42010032004 +38361 A0:n42010033001 +A0:n42010033001 +38366 A0:n42010033001 +A1:n42010033001 +38369 A0:n42010033001 +A0:n42010033001 A1:n42010034005 +38374 A0:n42010033001 A1:n42010034008;n42010034010 +38379 A0:n42010033001 A1:n42010034013 +38385 A0:n42010033001 A1:n42010034019 +38390 A1:n42010033001 A1:n42010034024 +38396 A0:n42010033001 A1:n42010035007 +38399 A0:n42010033001 A1:n42010035007 A2:n42010035010 +38403 A0:n42010033001 +A1:n42010035010 A1:n42010035014 +38410 A0:n42010035010 A1:n42010035016 +38414 A0:n42010035024 +38416 A1:n42010035017 A0:n42010035020 A2:n42010035026 +38418 A0:n42010036005 +38427 A0:n42010030005 +38433 A0:n42010037001 +38435 A0:n42010033001 A1:n42010037007 +38441 A2:n42010037012 A0:n42010037014 +38445 A0:n42010025003 +38448 A0:n42010037017 +38453 A0:n42010038005 +38456 A0:n42010038006 +38465 A0:n42010038011 A1:n42010038017 +38478 A1:n42010039004 +38484 A0:n42010039007 A1:n42010039017 +38491 A0:n42010040003 +38496 A0:n42010040003 +A0:n42010040003 +38500 A0:n42010040021 +38508 A0:n42010040020 +A0:n42010040017 A1:n42010040022 +38511 A0:n42010040011 A2:n42010040025 +38515 A0:n42010040017 A1:n42010040027 +38517 A1:n42010041006 +A2:n42010041004 A0:n42010041006 +38524 A0:n42010041007 +38526 A1:n42010041007 +38532 A0:n42010042004 +38540 A0:n42010042007 A1:n42010042011 +38546 A0:n00000000000 +38550 A0:n42011001006 +38556 A0:n42010041006 +A0:n42011001014 +38565 A0:n42011001020 A1:n42011001023 +38567 A0:n42011001022 +38571 A0:n42011001026 A1:n42011001029 +38576 A0:n42010041006 A2:n42011002003 +38579 A0:n42011001016 +A0:n42011001016 +38582 A1:n42011002010 +38586 A0:n42011002014 +38595 A0:n42011002007 A1:n42011003002 A2:n42011003007 +38601 A0:n42011002007 A2:n42011004003 A1:n42011004005 +38609 A0:n42011004009 A1:n00000000000 A2:n42011004012 +38611 A0:n00000000000 A1:n00000000000 A2:n42011004013 +38615 A0:n42011002007 A1:n42011004017 +38620 A0:n42010041006 +38626 A0:n42011005005 A1:n42011005009 +38629 A0:n42011005005 +38634 A0:n42011005005 A2:n42011005017 +38637 A0:n42011005018 A2:n42011005020 A1:n42011005022 +38644 A0:n42011006002 +38651 A0:n42011005005 A1:n42011006013 +38653 A0:n42011005005 A1:n42011006012 A2:n42011006014 +38657 A1:n42011005009 +A0:n42011007001 +38662 A0:n42011005005 A2:n42011007006 A1:n42011007007 +38666 A1:n42011007011 +38678 A0:n42011005009 A1:n42011007026 +A0:n42011005009 +A0:n42011005009 A1:n00000000000 A2:n42011007027 +38682 A0:n42010041006 A2:n42011008002 +38687 A0:n42011005009 A1:n00000000000 A2:n42011008007 +38689 A0:n42011005009 +38700 A1:n42011005009 +A0:n42011005009 A2:n42011008021 A1:n42011008023 +38704 A0:n42011005005 A1:n42011008022 +38707 A0:n42011009001 A2:n42011009002 +A0:n42011001016 +38710 A1:n00000000000 A2:n42011009007 +38712 A0:n42011001016 +38714 A0:n42011001016 +A0:n42011001016 +38717 A1:n00000000000 A2:n42011009014 +38722 A0:n00000000000 +A0:n42011010004 +38726 A0:n00000000000 +A0:n42011010008 +38730 A0:n00000000000 +A1:n00000000000 A2:n42011010012 +38738 A2:n42011011001 A0:n42011011009 A1:n42011011010 +38747 A0:n42011011001 A1:n42011011014 A2:n42011011015 +38750 A0:n42011011009 A1:n42011012004 +38752 A0:n42011011001 A2:n42011012006 A1:n42011012007 +38760 A0:n42011013003 A1:n42011013009 +38763 A0:n42011001016 A1:n42011013007 A2:n42011013011 +38774 A0:n42011013016 A1:n42011013021 A2:n42011013024 +38778 A0:n00000000000 A1:n42011013025 +38782 A0:n42010041006 A1:n42011014004 +38789 A0:n00000000000 +38792 A0:n42011014012 +A0:n42011014016 +38797 A0:n42011014020 +38804 A0:n42011015001 +38811 A0:n42010041006 A1:n42011015014 +38816 A0:n42011016001 +38820 A0:n42011016001 A1:n42011016004 +38825 A0:n42010041006 A1:n42011017006 +38829 A0:n42011017001 A2:n42011017008 +38835 A1:n42011017010 +A1:n42011017010 +38841 A0:n42011017016 +38849 A1:n42011018005 +38851 A1:n42011018012 +38856 A0:n42011015001;n42011016001 A1:n42011018018 +38859 A0:n42011018019 A1:n42011018021 +38868 A0:n42011019003 A1:n42011019008 +38876 A0:n42011019010 +38889 A0:n42011020006 A1:n42011020009 +38893 A0:n42011020015 +38903 A0:n42011021003 +A0:n42011021003 A1:n42011021008 +38912 A0:n00000000000 +38918 A0:n42011022003 +A0:n42011022003 A1:n42011022007 +38924 A0:n42011022003 A1:n42011022009 +38927 A0:n42011021003 +38932 A0:n42011022003 A1:n42011022017 +38935 A0:n00000000000 +38944 A0:n00000000000 +38947 A0:n42011023012 +38952 A0:n42011024004 +38956 A0:n42011024004 +38960 A0:n42011024004 A1:n42011024014 +38964 A0:n42011024004 +A0:n42011024004 +A0:n42011024004 +38972 A0:n42011024004 +38974 A0:n42011024004 +A0:n42011024004 A1:n42011025004;n42011025006 +A1:n42011024023 +38978 A1:n42011024023 +38980 A0:n42011024004 +38982 A0:n42011024004 A1:n42011026006 +38989 A0:n42011024004;n42011026006 +A0:n42011024004;n42011026006 +39003 A0:n00000000000 +39006 A0:n42011027006 A1:n42011027007 +39009 A0:n42011027011 A1:n42011027010 +39016 A0:n42011027011 A2:n42011027016 +39022 A0:n42011027019 A1:n42011027022 +39027 A0:n42010041006 A1:n42011027025 +39030 A0:n42011028001 +39034 A0:n00000000000 A1:n42011028009 +39040 A0:n00000000000 +39044 A1:n42011029003 +A0:n42010041006 A1:n42011029006 +A0:n42010041006 +39054 A0:n42011029008 A1:n42011029013 +39058 A1:n42011029016 A2:n42011029019 +39084 A1:n42011031001 +39095 A0:n42011031001 A1:n42011031015 +39098 A0:n42011031001 +39104 A0:n42011031001 A1:n42011031025 +39109 A0:n42011031009 +39115 A0:n42011032001 +39124 A0:n42011032001 A1:n42011032013 +39127 A0:n42011032001 +39133 A0:n42011032009 +39139 A0:n42011033001 A1:n42011033002 +39142 A0:n42011033001 +39153 A0:n00000000000 +39156 A0:n42011033017 A1:n42011033019 +39188 A0:n42011029003 +39205 A0:n42011036004 A1:n42011036010 +39218 A0:n42011036019 A1:n42011036023 +39223 A0:n42010041006 +A1:n42011037006 A0:n42011037007 +39228 A0:n42010041006 +39232 A0:n42010041006 +A0:n42010041006 +39237 A0:n42011038003 +A0:n42011038003 +39242 A1:n42010041006 +39247 A0:n42011039004 +39263 A0:n42011039008 A1:n42011039012 +39268 A0:n42011039021 A1:n42011039024;n42011039026 +39275 A0:n00000000000 A1:n42011040006 +39281 A0:n42011040004 A1:n42011040009 +39284 A0:n00000000000 +A0:n42011040001 A1:n42011041003 +39288 A0:n42011040001 +39299 A0:n42011042005 A1:n42011042009;n42011042012;n42011042015 +39309 A0:n42011042005 +39318 A0:n42011042028 +39320 A0:n00000000000 A1:n42011042025 +39323 A0:n00000000000 A1:n42011042029 +39329 A0:n42011043004 A1:n42011043008;n42011043014 +39354 A0:n42011044012 +39357 A0:n42011044012 +39359 A1:n42011045003 +39363 A0:n42011045003 A2:n42011045007 +39367 A0:n42011045008 A1:n42011045009 +39370 A0:n42011045008 A1:n42011045012 +39373 A0:n42011046001 +39380 A0:n42011046007 A1:n42011046012 +39392 A0:n42011046016 A1:n42011046024 +39398 A0:n42011046007 A1:n42011047006 +39407 A0:n42011047011 A1:n42011047014 +39413 A0:n42011046007 +39422 A0:n42011048012 A1:n42011048015 +39426 A0:n42011048016 +39434 A0:n42011049005 +A0:n42011049007 A1:n42011049012;n42011049014 +39444 A0:n42011048009 +39446 A0:n42011048009 +39448 A1:n42011050004 +39455 A1:n42011050004 +39470 A0:n42011051006 +39478 A0:n42011039004 A2:n42011051017 +39480 A1:n42011050004 +39490 A0:n42011052004 A1:n42011052008 +39497 A0:n42011052011 +39500 A0:n00000000000 +A0:n42011052004 A1:n42011052016 +39503 A0:n42011053003 +39505 A0:n42011053006;n42011053009 A1:n42011053011;n42011053013 +39512 A0:n42011053006;n42011053009 +39514 A0:n42011053006;n42011053009 A1:n42011053014 +39518 A0:n42011053006;n42011053009 A1:n42011054002 +39520 A0:n42011053006;n42011053009 A1:n42011054004 +39528 A1:n42012001005 +39534 A0:n42012001005 A1:n42012001010 +39536 A0:n42011039004 A1:n42012001012 +A0:n42011039004 +39543 A0:n42012001015 A1:n42012001019 +39556 A1:n00000000000 +39559 A1:n42012002005 +39564 A1:n42012002010 +39571 A0:n42012001015 A1:n42012003003 +39575 A1:n42012003007 +39581 A0:n42012001015 A1:n42012003013 +39585 A1:n42012003017 +39590 A0:n42011039004 A2:n42012004003 +39596 A1:n42012004005 +39599 A0:n00000000000 A1:n42012004013 +39606 A0:n00000000000 A1:n42012004021 +39609 A0:n42012004018 A1:n42012004020 +39611 A0:n42011039004 A2:n42012005003 +39614 A1:n42012004005 A1:n42012005004 +A1:n42012004005 A1:n42012005011 +39619 A0:n42012005011 +A0:n00000000000 A1:n42012005012 +39622 A0:n42012005011 +39627 A0:n42011039004 A2:n42012005019 +39630 A1:n42012004005 A1:n42012005020 +39634 A1:n42012006003 +39643 A1:n42012006008 +39655 A1:n42012007004 +39657 A0:n42012004005 +39660 A0:n42012004005 +39662 A0:n42011039004 A2:n42012008003 +39667 A0:n42012008005 +39678 A0:n42012008015 +39688 A0:n00000000000 A1:n42012009004 +39693 A1:n42012009003 +39702 A0:n42012010003 A1:n42012010005 +39709 A1:n00000000000 A2:n42012010012 +39717 A0:n00000000000 +39719 A1:n00000000000 A2:n42012010019 +39722 A0:n00000000000 A1:n42012011004 +39734 A0:n42012004005 A1:n42012011016;n42012011019;n42012011022 +39738 A0:n42012004005 A1:n42012011018 +39741 A0:n42012004005 A1:n42012011021 +39746 A0:n42012012004 A2:n42012012006 A1:n42012012012 +39753 A0:n42012004005 A1:n42012012011 +A0:n42012012013 +39756 A0:n42012013003 A2:n42012013007 +39763 A0:n42012013008 A2:n42012013011 A1:n42012013013 +39767 A0:n42012013011 A1:n42012013017 +39774 A0:n42012014001 A2:n42012014004 +39779 A0:n42012014006 A1:n42012014007 +39786 A0:n42011039004 +39789 A0:n42012013006 +39791 A0:n42012013006 +39799 A0:n00000000000 AA2:n42012015016 +39807 A0:n00000000000 +39810 A0:n42011039004 A1:n42012016003 +39814 A0:n42011039004 +39820 A0:n42012016012 +39822 A0:n42012016007 +39825 A0:n42012016007 +39827 A0:n42012016007 A1:n42012017006 +39830 A0:n42012016007 A1:n42012017012 +39832 A0:n42012016007 A1:n42012017014 +39837 A0:n42012016007 +39839 A0:n42012016007 A1:n42012018003 +A0:n42012016007 A1:n42012018008 +39846 A0:n42012016007 A1:n42012018010 +39848 A0:n42012016007 A1:n42012018017;n42012018020 +39858 A0:n42012016007 A2:n42012019004 +39863 A0:n42012019006 A1:n42012019009 +39866 A0:n42012019009 +39870 A0:n42012019006 +A0:n42012019006 +A0:n42012019006 +A1:n42012019006 +39875 A2:n42012020003 A0:n42012020005 +39886 A0:n00000000000 A1:n42012020011 +39891 A0:n42012020006 A1:n42012020016 +39896 A0:n00000000000 A1:n00000000000 A2:n42012021004 +39902 A0:n00000000000 +39904 A0:n42011039004 +39911 A0:n42011039004 A2:n42012022010 +39914 A0:n42012022005 A1:n42012022016 +39918 A0:n42012022005 A1:n42012022015 +39923 A0:n42012022005 A1:n42012022020 +39936 A0:n42012022005 A1:n42012024003 +39941 A0:n42012024003 +39943 A0:n42012024003 +39953 A0:n42012024017 A1:n42012024019 +39958 A0:n42012024022 +39965 A0:n42012025001 +A0:n42012025001 A1:n42012025011 +39971 A0:n42012025001 A1:n42012025012 +39977 A0:n42012022005 A1:n42012026004 +39982 A0:n42012022005 +A0:n42012022005 A1:n42012027003 +39988 A0:n42012027003 +39990 A0:n42012027003 +39992 A0:n42011039004 A2:n42012027011 +40001 A0:n42012027013 +40011 A0:n42012028006 +40017 A1:n42012028006 +40021 A1:n42012028006 A0:n42012028015 +40029 A0:n42012029002 A1:n42012029006;n42012029009 +40031 A0:n42012028021 A1:n42012029005 +40034 A0:n42012028021 A1:n42012029008 +40037 A0:n42012028021 +40045 A1:n42012030001 A0:n42012030005 +40050 A0:n42012030012 +40052 A0:n42012028021 A1:n42012030016 +40055 A0:n42012028021 A1:n42012031004 +40061 A1:n42012031007 A2:n42012031009 +40064 A0:n42012032005 +40069 A0:n42012032009 A1:n42012032011 +40073 A0:n42012032009 A2:n42012032012 A1:n42012032014 +40077 A0:n42012032005 A1:n42012033003 +40079 A0:n00000000000 +40082 A0:n42012032005 A1:n42012033007 +40084 A0:n42012032005 A2:n42012033009 A1:n42012033010;n42012033013 +40088 A1:n42012033010 +40097 A0:n42012033019 +40100 A0:n42012033023 +40117 A1:n42012035004 +40121 A1:n42012035008 +40126 A0:n42012036004 A1:n42012036007 +40131 A0:n42012036007 +40136 A0:n42012036007 +40138 A0:n42012036007 +40140 A0:n42012036004 A1:n00000000000 A2:n42012036020 +40147 A0:n42012037005 +A0:n42012037008 +40151 A1:n42012037010 A0:n42012037008 +40153 A0:n42011039004 A2:n42012037013 +40156 A0:n42012037008 +40158 A0:n42012037008 A1:n42012037018 +40161 A0:n42012037008 +A0:n42012037008 A1:n42012037022 +40173 A0:n42012037008 +40175 A0:n42012037008 +40182 A0:n42012032005 A1:n42012039001 +40185 A0:n42012039008 A1:n42012039013 +40192 A0:n42012039012 +40195 A0:n42012039008 A1:n42012039017 +A1:n42012039019 +40208 A0:n42012032005 +40213 A0:n42012040011 +40215 A0:n42012041004 +40224 A0:n42012041005 A1:n42012041009 +40230 A0:n42012042004 +40242 A1:n42012042013 A0:n42012042016 +40250 A0:n42012042010 A1:n42012042026 +40260 A0:n42012043005 +40262 A0:n42012043008 +40266 A1:n42012043011 A0:n42012043008 +40268 A0:n42012042004 A2:n42012044003 +40274 A0:n00000000000 +40276 A0:n42012043008 A1:n42012044011 +40280 A0:n42012045005 +40288 A0:n42012045013 A1:n42012045015 +40292 A0:n42012045013 +40294 A0:n42012045005 A1:n42012045018 +A0:n42012045005 A1:n42012045020;n42012045023 +40302 A0:n42012045005 +40304 A0:n42012045005 +40306 A1:n42012045005 +A0:n42012046003 +40317 A0:n42012046005 +40323 A0:n42012046005 +40325 A0:n42012046003 A1:n42012046020 +40334 A0:n42012046003 A1:n42012046023 +40340 A0:n42012047004 A1:n42012047008 +40348 A0:n42012047004 +40350 A0:n42012047004 +40355 A1:n42012047004 +40360 A0:n00000000000 +40362 A0:n00000000000 A1:n42012048007 +40365 A1:n42012048004;n42012048005 +40370 A2:n42012048013 A1:n42012048015 +40373 A1:n42012048016 +40378 A0:n00000000000 A2:n42012048021 A1:n42012048023 +40381 A0:n00000000000 A1:n42012048024 A2:n42012048026 +40383 A0:n42012042004 +40385 A0:n42012042004 A1:n42012049001 +40391 A0:n42012042004 A1:n42012049008 +40394 A1:n42012049001 +40397 A0:n42012042004 A1:n42012050001 +A1:n42012042004 +40401 A1:n42012042004 +40404 A1:n42012050001 +A0:n42012022005 +40407 A0:n42012042004 +40409 A0:n42012042004 A1:n42012051003 +40413 A0:n42012042004 A2:n42012051011 +40421 A1:n42012052006 +40436 A1:n42012053002 +40463 A0:n42012042004 A2:n42012054005 +40468 A0:n42012054005 A1:n42012054009 +40470 A0:n42012054008 +40474 A0:n42012054005 +40477 A0:n42012054015 +40479 A0:n00000000000 +40484 A0:n42012055003 +A0:n42012054005 +40488 A0:n00000000000 +40490 A0:n00000000000 +40499 A0:n42012056001 A1:n42012056003 +A0:n42012056001 A1:n42012056010 +40507 A0:n42012056001 A1:n42012056012 +40514 A0:n42012056001 A1:n42012057009 +40519 A0:n42012056001 +40529 A0:n42012056001 A1:n42012058014 +40531 A1:n42012056001 +40536 A0:n42012058006 A1:n42012058021 +40545 A0:n42012058027 A1:n42012058028 A2:n42012058031 +40552 A0:n42012058034 A1:n42012058035 +40555 A0:n42012042004 A2:n42012059002 +40559 A0:n42012056001 +40566 A0:n42012056001 A1:n42012059011 +40568 A0:n42013001003 +40574 A0:n42013001003 A2:n42013001009 +40583 A1:n42013001015 A0:n42013001016 +40589 A1:n42012042004 +A0:n42012042004 A2:n42013002004 +40592 A0:n42013001003 +40605 A0:n42013002008 A1:n42013002017 +40607 A0:n42012042004 A2:n42013003003 +40612 A0:n42013001003 +40615 A0:n42013003008 +40623 A0:n42013004010 +40630 A0:n42013004010 A1:n42013004016 +40632 A0:n42013001003 +40642 A0:n42013004025 +40645 A0:n42012042004 A2:n42013005003 +40650 A0:n42013001003 +40653 A0:n42013005008 +40655 A0:n42012042004 A1:n42013006005 +40660 A1:n42013006006 A0:n42013006008 +40662 A1:n42013006006 +40668 A0:n42013006008 +A0:n42013006008 A1:n42013006017 +40675 A0:n42013006008 +40677 A0:n42013006008 +40681 A0:n42013007005 +40686 A0:n42013006008 +A0:n42013006008 A1:n42013007013 +40695 A0:n42013006008 A1:n42013007013 +A0:n42013007005 A1:n42013007022 +40703 A0:n42013007016 A1:n42013007027 +40706 A1:n42013007005 +A0:n42013008001 A2:n42013008005 +40710 A0:n42013008006 A1:n42013008008 +40718 A0:n42013007005 +40722 A0:n42013007005 A1:n42013008020 +40726 A0:n42013007016 A1:n42013009004 +40730 A0:n00000000000 +40734 A0:n42013008006 A1:n42013009012 +40738 A0:n42012042004 +40751 A0:n42013011003 A1:n42013011004 +40757 A0:n42013011003 +40760 A0:n42013011003 A1:n42013011016 +A0:n42013011003 +40766 A0:n42013012005 A1:n42013012003 +40770 A0:n42013012005 +40772 A0:n42013012005 A2:n42013012009 +40775 A1:n42013012010 +40780 A0:n42013012005 A2:n42013013003 A1:n42013013005 +40786 A1:n42013011003 +40788 A0:n42013011003 A1:n42013013012 +40792 A1:n42013014004 +40795 A0:n42013014004 +40799 A0:n42013014011 +40802 A0:n42013014004 A2:n42013014014 +40808 A0:n42013014017 +40811 A0:n42013014022 +A0:n00000000000 +40816 A0:n42013014014 +A1:n42013014014 +40825 A2:n42013015003 A0:n42013015005 +40830 A0:n42013015005 +40837 A0:n42013015009 A1:n42013015016;n42013015020 +40848 A0:n42013015009 +A0:n42013015009 +40851 A0:n42013015008 +40857 A1:n42013016006 A0:n42013016009 +40864 A1:n42013016001 +40874 A0:n42013016017 +40877 A1:n42013017002 A0:n42013017004 +40879 A1:n42013017008 +40882 A0:n00000000000 A1:n42013017009 +40888 A0:n42013017013 +40894 A0:n42013017018 +40898 A0:n42013015005 +40908 A0:n42013015005 A1:n42013018013 +40915 A0:n42013019007 A1:n42013019005 +40917 A0:n42013019007 +40922 A0:n42013019003 +40924 A0:n42013019003 +40932 A0:n42013019020 +40939 A0:n42013015005 +40941 A0:n42013015005 A1:n42013020007 +40950 A0:n42013021006 A1:n42013021004 +40952 A0:n42013021006 +40959 A1:n42013021015 +40962 A0:n42013015005 +40967 A0:n42013015005 +40970 A0:n42013015005 A1:n42013022009 +40974 A0:n42013023003 A2:n42013023004 +40981 A1:n00000000000 +40984 A0:n42013023010 +40987 A0:n42013023014 +A0:n42013023014 +40994 A0:n42013015005 A2:n42013024010 +40997 A0:n42013024008 A1:n42013024012 +A0:n42013024008 +41001 A0:n42013024008 +41005 A1:n42013025006 +41009 A0:n42013025006 A1:n42013025010 +41013 A0:n42013023014 A1:n42013025014;n42013025016 +41015 A0:n42013023014 +41017 A0:n42013023014 A1:n42013025018 +41020 A0:n42013023014 +41022 A0:n42013025020 A1:n42013025018 A2:n42013025022 +41025 A1:n42013025006 +A0:n42013025006 A2:n42013025026 +41029 A0:n42013025006 A1:n42013025029 +41034 A0:n42013023014 A1:n42013026003 +A0:n42013023014 +A0:n42013023014 +41040 A0:n42013023014 +41046 A0:n42013025006 +41048 A0:n42013025006 +A0:n42013025006 A2:n42013027004 +41052 A0:n42013025006 A1:n42013027007 +41055 A0:n42013027013 +41071 A0:n42013023014 A1:n42013028012;n42013028014;n42013028016;n42013028020;n42013028028 +41088 A1:n42013028026 +41091 A0:n00000000000 +41102 A1:n00000000000 +41109 A0:n42013023014 +41125 A0:n42013031007 +41128 A0:n42013031007 A2:n42013031009 +41130 A0:n42013015005 +41132 A0:n42013015005 +41136 A0:n42013031015 A1:n42013031018 +41138 A0:n42013031015 A1:n42013031017 +41140 A0:n42013015005 A2:n42013032003 +41142 A1:n42013031007 +A0:n42013031007 A2:n42013032007 +41147 A0:n42013032007 +A0:n42013015005 A1:n42013032011 +41152 A0:n42013015005 A1:n42013032013 +41159 A1:n42013015005 +41161 A0:n42013033010 +41168 A0:n00000000000 +A0:n42013033003 +41172 A0:n42013033015 +41174 A0:n42013033014 +41180 A0:n42013034001 A1:n42013034006 +41184 A0:n42013034001 A1:n42013034010 +41186 A1:n00000000000 +41190 A0:n42013015005 A1:n42013034015 +A0:n42013015005 A1:n42013034017 +41206 A0:n42013034001 +A0:n42013034001 +A2:n42013035003 A1:n42013035005 +41214 A0:n42013015005 A2:n42013035009 +41218 A0:n42013034001 A1:n42013035013 +41221 A0:n00000000000 +41223 A0:n42013034001 +A1:n00000000000 +41226 A0:n42013015005 +41231 A0:n00000000000 +41234 A0:n42014001006 +41244 A0:n42013015005 A1:n42014001016 +41249 A0:n42014001018 A1:n42014001021 +41260 A1:n42014003004 +41263 A0:n42014003004 +41269 A0:n42014003004 +A0:n42014003015 +41273 A0:n00000000000 +41278 A0:n42014004001 +41280 A0:n42014003004 +A0:n42014003004 A1:n42014004007 +41284 A0:n42014003004 +41288 A0:n42014003004 +41296 A0:n42014005007;n42014005009 +41300 A0:n42014005005 A1:n42014005017 +41308 A0:n42014003008;n42014003010 A1:n42014006004 +A1:n42014003008;n42014003010 +41313 A0:n42014003004 A1:n42014007006 +41316 A1:n00000000000 +41318 A0:n42014003004 A1:n42014007011 +41322 A0:n42014007005 A1:n42014007010 +A0:n42014003004 +41327 A1:n42014007005 +41333 A1:n42014007005 +41342 A1:n42014008014 +41346 A0:n42014009007 +41351 A0:n42014008004 A1:n42014009004;n42014009006 +A0:n42014009007 A2:n42014009009 +41354 A0:n42014007005 A2:n42014009011 A1:n42014009012 +41359 A0:n42014007005 A1:n42014009021 +41365 A0:n42014007005 A1:n42014009020 +41368 A1:n42014007005 +A1:n42014007005 +A0:n42014007005 +41377 A0:n42014010014 +41379 A0:n42014009007 A1:n42014010015 +41381 A0:n42014010014 A2:n42014010017 +41384 A0:n42014010018 +41393 A0:n00000000000 +41398 A0:n00000000000 A1:n42014011005 +41400 A1:n42014011004 +41403 A0:n00000000000 A1:n42014011010 +41405 A1:n42014011009 +41407 A0:n42014003004 A2:n42014012005 +41410 A0:n42014001009 A1:n42014012006 +41413 A0:n42014012005 A1:n42014012009;n42014012011 +41418 A0:n42014012005 A1:n42014012015;n42014012019;n42014012023;n42014012026 +41437 A0:n42014012031 A1:n42014012033 +41446 A0:n42014012005 A1:n42014013003 +A0:n42014012005 A1:n42014013006;n42014013007;n42014013008;n42014013009 +41457 A0:n42014013006;n42014013007;n42014013008;n42014013009 A1:n42014014007 +A0:n42014013006;n42014013007;n42014013008;n42014013009 A1:n00000000000 A2:n42014014008 +41461 A1:n00000000000 A2:n42014014011 +41471 A0:n00000000000 +A0:n42014015003 A1:n42014015006 +41474 A0:n42014015003 A2:n42014015008 +41478 A0:n42014015010 A1:n42014015012 +41487 A0:n42014016001 A2:n42014016004 +41491 A0:n42014016005 A1:n42014016008 +41495 A0:n42014016005 A1:n42014016012 +41498 A0:n42014016005 A1:n42014017004 +41506 A0:n42014016005 A2:n42014017012 +41508 A1:n00000000000 +A0:n42014017012 +41513 A0:n42014017009 +41515 A0:n42014018005 A1:n42014018006 +41519 A0:n42014017012 +41522 A0:n42014018008 A2:n42014018010 +41525 A0:n42014018008 A1:n42014018011 +41527 A0:n42014018008 A1:n42014018015 +41529 A0:n42014018008 +A0:n42014018008 A1:n42014018018 +41532 A0:n42014018008 A1:n42014018020 +41534 A0:n42014017004 A1:n42014018023 +41536 A1:n42014018022 +41539 A0:n42014019002 +41543 A0:n42014019002 A1:n42014019004 +41545 A0:n42014019002 +A0:n42014019002 A1:n42014019011 +41548 A0:n42014019002 A1:n42014019013 +41550 A0:n42014017004 A1:n42014019016 +41552 A1:n42014019015 +41555 A0:n42014020002 +41557 A0:n42014020002 A1:n42014020004 +41562 A0:n42014020002 A1:n42014020011 +A0:n42014020002 +41565 A0:n42014021004 +41568 A0:n42014021004 A2:n42014021007 A1:n42014021009 +41574 A1:n42014021013 +41577 A0:n42014021013 A2:n42014021016 +41581 A0:n42014021016 +41599 A0:n42014021016 A1:n42014021029;n42014021031;n42014021033;n42014021035 +41602 A0:n42014022004 +41606 A0:n42014022008 +41608 A0:n42014022005 A1:n42014022007 +41614 A0:n42014023004 +41620 A0:n42014023007 +41627 A0:n42014023007 A1:n42014023016 +A0:n00000000000 +41630 A1:n42014023021 +41635 A0:n42014023004 A2:n42014024003 +41643 A1:n42014024007 +A0:n42014024005 A1:n42014024014 +41649 A0:n42014025004 +41654 A1:n42014003004 +A0:n42014003004 +41660 A0:n42014026002 +41665 A0:n42014026002 A1:n42014026010;n42014026014;n42014026017;n42014026020;n42014026023;n42014026026;n42014026031 +41691 A0:n42014026002 A1:n42014026037 +41697 A0:n42014027001 A1:n42014027005 +41702 A0:n42014027001 +41706 A0:n42014027003;n42014027008 A1:n42014027015 +41715 A0:n42014028001 A1:n42014028007 +41717 A0:n42014028001 A1:n42014028006 +41719 A0:n42014028001 +A0:n42014028001 A1:n42014028013 +41724 A0:n42014028001 +41730 A0:n42014029005 A1:n42014029006 +41735 A0:n42014028001 A1:n42014029010 +A0:n42014028001 +41739 A0:n00000000000 +A0:n42014029013 A1:n42014029016 +41743 A0:n42014029013 +41748 A0:n42014030005 A1:n42014030007 +A0:n42014030005 +41752 A0:n42014030005 A1:n42014030011 +A0:n42014030005 +41758 A0:n00000000000 +41761 A0:n42014031003 +41764 A0:n42014031003 +41766 A0:n42014031003 A0:n42014031003 +41773 A0:n42014031003 A1:n42014031025 +41778 A0:n42014031006 +41789 A0:n42014031003 A1:n42014032009 +A0:n42014031003 A1:n42014032011 +41801 A0:n42014033006 A1:n42014033012 +41807 A0:n42014033003 A1:n42014033017 +41820 A1:n42014034009 +41823 A1:n42014034009 +41833 A0:n00000000000 A1:n42014035011 +41836 A0:n00000000000 A1:n42014035014 +41838 A0:n42014035013 +A0:n42014035013 +41842 A0:n42015001007;n42015001010 AA2:n42015001003 +41850 A0:n42015001007;n42015001010 A1:n42015001012 +41853 A0:n42015002005;n42015002008 +41860 A0:n42015002005;n42015002008 +41864 A0:n42015002011 A1:n42015002012 +41866 A0:n42014003004 +41869 A0:n42014003004 A1:n42015003006 +41875 A0:n42014003004 +41880 A0:n42015004002 A1:n42015004007 +41884 A0:n42015004002 A1:n42015004012 +41889 A0:n42015004002 A1:n42015004016 +41897 A0:n42015004002 +41900 A0:n42015004012 +41902 A0:n42015004002 A1:n42015004028 +41905 A0:n42015004002 +A0:n42015004002 +41911 A0:n42015004002 +41913 A0:n42015004002 +41917 A0:n42015004002 A1:n42015006008;n42015006011 +41923 A0:n42015004002 A2:n42015006013 +41925 A1:n42015006008;n42015006011 +41928 A0:n42015004002 A1:n42015006019 +41933 A0:n42015006019 +A0:n42014003004 A2:n42015007002 +41946 A0:n42015007012 +41956 A0:n42015007019 A1:n42015007021 +41962 A0:n42015008003 A1:n42015008004 +41964 A0:n42015008003 A1:n42015008009 +41968 A0:n42015008003 A1:n42015008013 +41971 A0:n42015008003 A1:n42015008017 +41975 A0:n42015008003 +41979 A0:n42015008003 +41981 A0:n42015008003 +A0:n42015008003 A1:n42015009005;n42015009007 +41987 A0:n42015008003 +A1:n42015009005;n42015009007 +41991 A0:n42015008003 A1:n42015009014 +41995 A0:n42015008003 A1:n42015009015 +41997 A0:n42014003004 A2:n42015010003 +41999 A0:n42015010005 +42009 A0:n42015010013 +42011 A0:n42014003004 +42014 A0:n42015011003 A1:n42015011007 +42018 A0:n42015012004 A2:n42015012007 +42025 A0:n42015012008 A2:n42015012010 A1:n42015012013 +42028 A0:n42015012013 +42034 A0:n42015012016 A2:n42015012019 A1:n42015012021 +42043 A0:n42015013010 A1:n42015013007 +42048 A0:n42015013010 +42054 A0:n42015013010 A1:n42015013019 +42058 A0:n42015013010 +42061 A0:n42015014003 A1:n42015014004 +42064 A0:n42015014006 +42073 A0:n42015014013 A1:n42015014015 +A1:n42015013010 +42076 A1:n42015013010 +A1:n42015013010 A2:n42015015004 +42085 A0:n42015015004 A1:n42015015012 +42091 A0:n42015013010 A1:n42015015018 +42094 A0:n42015013010 A1:n42015016003 +A0:n42015013010 A1:n42015016005 +42103 A1:n42015016010 A0:n42015016013 +42113 A0:n42015013010 +A0:n42015013010 +42120 A0:n42015017007 +42126 A0:n42015017013 +A0:n42015013010 +A0:n42015013010 +42134 A0:n42015013010 A2:n42015018009 +42137 A0:n42015013010 +42150 A0:n42015018010 A1:n42015019008 +42158 A0:n42015013010 +A0:n42015013010 +42168 A0:n42015020010 +A1:n42015020014 A0:n42015020016 +42175 A1:n42015020016 +42177 A0:n42015020016 +A0:n42015020016 +42184 A0:n42015020016 A1:n42015020029 +42187 A0:n42015021004 A2:n42015021005 +42192 A0:n42015021004 +42206 A0:n42015022004 +42214 A0:n42015022007 A1:n42015022011 +42219 A0:n42015022007 A1:n42015022016 +42222 A0:n42015022007 A1:n42015022019 +42234 A0:n42015022007 A1:n42015023004 +42239 A0:n42015022007 +42241 A0:n42015021004;n42015022004;n42015022007 +A1:n42015021004;n42015022004;n42015022007 +42251 A0:n42015024004 +42253 A0:n42015024004 +42255 A1:n42015024004 +42257 A0:n42015021004;n42015022004;n42015022007 A1:n42015024016 +A1:n42015021004;n42015022004;n42015022007 +42270 A0:n42015025004 +A0:n42015025004 AA2:n42015025015 +42274 A0:n42015025004 A1:n42015025017;n42015025019 +42279 A0:n42015025004 A1:n42015026003 +42283 A0:n42015025004 A1:n42015026007 +42290 A0:n42015027001 A2:n42015027004 +42296 A0:n42015027007 +42298 A0:n42015027013 A1:n42015027016 +42307 A0:n42015027007 +42309 A0:n42015027013 A1:n42015027021 +42311 A1:n42015025004 +42314 A0:n42015025004 A1:n42015028006 +A0:n42015025004 +42320 A0:n42015028009 +A0:n42015028009 A1:n42015028013 +42325 A1:n42015025004 +A0:n42015029001 A2:n42015029006 +42329 A0:n42015029006 +42332 A0:n42015025004 A1:n42015029011 +42338 A0:n42015025004 +42342 A0:n42015029006 A2:n42015029018 A1:n42015029021 +42349 A1:n42015025004 +42357 A0:n42015030004 A1:n42015030011 +42363 A0:n42015030004 +A0:n42015029006 A2:n42015030016 A1:n42015030019 +42371 A0:n42015031001 A2:n42015031004 +42386 A1:n42015022004;n42015022007 +42388 A1:n42015022004;n42015022007 +A0:n42015032001;n42015032004 +42398 A0:n42015032008 +42400 A0:n42015032008 +42402 A1:n42015032008 +42404 A0:n42014003004 +42414 A0:n42016001011 A1:n42016001013 +42418 A1:n42016001015 A2:n42016001017 +42421 A0:n42016001013 A1:n42016001021 +42423 A0:n00000000000 +42426 A0:n42016001007 A1:n42016002003 +42428 A0:n42016001007 A2:n42016002005 +42432 A0:n42016001007 A1:n42016002007 +42435 A0:n42016001013 A1:n42016002013 +42443 A0:n42016001013 A1:n42016002021 +42445 A0:n42016001013 +42447 A0:n42016003006 +42453 A0:n42016003006 A1:n42016003007 +42458 A0:n42016003011 A1:n42016003015 +42463 A0:n42016003006 +42465 A0:n42016003006 A1:n42016003018 +A0:n42016003006 +A0:n42016003006 A1:n42016003021 +A0:n42016003006 A1:n42016004003 +42470 A0:n42016003006 A1:n42016004002 +42473 A1:n42016003006 +42477 A0:n00000000000 A1:n42016004011 +42484 A0:n42016003006 A1:n42016005003 +42492 A0:n42016003006 A2:n42016005012 +42496 A0:n42016005012 A1:n42016005013 A2:n42016005016 +42502 A0:n42016006001 +42508 A0:n42016006007 A2:n42016006010 +42510 A0:n42016005012 A1:n42016006014 +42515 A0:n42016005012 +42517 A0:n42016005012 A1:n42016006019 +42521 A0:n42016003006 A2:n42016007002 +42525 A0:n42016007004 A1:n42016007006 +42528 A0:n42016007008 +42532 A0:n42016003006 A2:n42016007015 +42534 A0:n42016007002 A1:n42016007019 +42539 A0:n42016007002 A1:n42016007022 +42542 A0:n42016008004 A1:n42016008006 +42551 A0:n42016008006 +42573 A0:n42016009002 A2:n42016009003 +42575 A0:n42016001006 A2:n42016009005 A1:n42016009007 +42584 A0:n42016009010 +A0:n42016009007 A1:n42016009017 +42623 A1:n42016011011 A0:n42016011012 A2:n42016011013 +42635 A1:n42016012010 A0:n42016012011 A2:n42016012013 +42639 A0:n42016013002 A1:n42016013006 +42642 A0:n42016013002 A1:n42016013005 +42647 A0:n42016013002 A1:n42016013010 +42651 A0:n42016013002 A1:n42016013014 +42654 A0:n42016013002 A1:n42016013017 +42658 A0:n42016013002 A1:n42016013021 +42660 A0:n42016001006 A1:n42016013026;n42016013028 +42662 A0:n42016001006 A1:n42016013025 +42666 A1:n42016014003 A0:n42016014006 +42674 A0:n42016014006 A1:n42016014011 +42677 A0:n42014003004 A2:n42016015003 +42682 A0:n00000000000 A1:n42016015008 +42690 A0:n42016015014 A1:n42016015017 +42716 A1:n42016016011 +42721 A0:n42016016016 +42730 A0:n42016017005;n42016017008 +42736 A0:n42016017014 +42739 A0:n00000000000 A1:n42016018005 +42744 A0:n00000000000 A1:n42016018009 +42746 A0:n42016018003;n42016018008 +42749 A1:n00000000000 +42752 A0:n00000000000 A1:n42016018013 +A0:n42016018016 +42760 A0:n42016019001 A1:n42016019008;n42016019010 +42764 A1:n42016019001 +42773 A1:n42016020001 +42778 A1:n42016020001 +42780 A0:n42016020001 A1:n42016021003 +A1:n42016020001 +42784 A0:n00000000000 +42794 A0:n42016021015 +A0:n42016021015 A1:n42016021019 +42800 A0:n42016022003;n42016022007 +A0:n42016022005 +42805 A1:n42016022008 +42815 A0:n42016022020 +42820 A1:n42016022020 +42825 A0:n42016022020 A1:n42016023007 +42829 A0:n42016022020 +42832 A0:n42016022020 A1:n42016023013 +42844 A0:n42016022020 +A0:n42016024002 +42848 A0:n42016024005 A1:n42016024008 +42851 A0:n42016024005 A1:n42016024011 +42854 A0:n42016024011 A1:n42016024015 +42862 A0:n42016024011 A1:n42016024023 +42867 A0:n42016022020 +42873 A0:n42016025003 +42876 A1:n42016025004 +42878 A0:n42016025004 A1:n42016025009 +42894 A1:n42016025016 +42897 A0:n42016025024 +42908 A1:n42016026009 +42911 A0:n00000000000 +A0:n42016026014 +42917 A0:n42016026014 A1:n42016026015 +42922 A0:n42016026014 +42924 A0:n42016022020 +42926 A0:n42016022020 A1:n42016027004 +42930 A0:n42016027006 A1:n42016027009 +42939 A0:n42016022020 A1:n42016028004 +42943 A0:n42016025016 A2:n42016028007 +42949 A0:n42016028011 +42957 A0:n42016029003 +42959 A0:n42016028004 A1:n42016029005;n42016029008 +42964 A0:n42016028004 A1:n42016029010 +42968 A0:n42016030001 +42977 A0:n42016030009 +42980 A0:n42016028004 +42982 A0:n42016029003 A2:n42016031003 +42990 A0:n42016028004 A1:n42016031005;n42016031008 +42996 A0:n42016031013 +A1:n42016028004 +42999 A0:n42014003004 +43010 A0:n42017001011 +43015 A0:n42017001011 +A0:n00000000000 +43021 A0:n42017002004 +43027 A1:n42017001018 +43033 A0:n42017001018 A1:n42017002022 +43038 A0:n42017001005 A1:n42017003002 +43041 A0:n42017003006 +43045 A0:n42017001005 A1:n42017003009 +43049 A0:n42017003006 +A0:n42017001005 A1:n00000000000 A2:n42017003014 +43057 A0:n42017003006 +43062 A0:n42017003006 +43065 A0:n42017003006 +A0:n42017003006 +A0:n42017001005 A1:n00000000000 A2:n42017004017 +43070 A0:n42017005004 A2:n42017005006 +43075 A0:n42017005006 A2:n42017005008 A1:n42017005009 +43079 A0:n42017006004 +43083 A0:n42017005004 A1:n42017006007 +43089 A0:n42017005004 A2:n42017006014 +43093 A1:n42017006014 +43095 A1:n42017006014 +43101 A0:n42017006014 A1:n42017006025 +43107 A0:n42017007001 A1:n42017007005 +43109 A0:n42017007005 +43111 A0:n42017007005 +43113 A0:n42017007010 +43117 A0:n42017007001 A2:n42017007016 +43120 A0:n42017007005 +A0:n42017007005 +43124 A0:n42017007001 A2:n42017008004 +43126 A0:n42017007005 A1:n42017008006 +43128 A0:n42017007001 +43130 A0:n42017007005 +A0:n42017007005 A1:n42017008011 +43134 A0:n42017007001 +43136 A0:n42017007001 +43140 A0:n42017008022 +43142 A0:n42017008022 +43145 A0:n42017007001 A1:n42017009003 A2:n42017009005 +43150 A0:n42017009005 A1:n42017009009 +43152 A1:n42017008005;n42017008010;n42017008019 +43157 A0:n42017005004 A1:n42017010008 +43160 A1:n00000000000 A2:n42017010009 +43162 A0:n42017010003 +43168 A0:n42017005004 A1:n42017010015 +A0:n42017005004 A1:n42017010017 +A0:n42017005004 A1:n42017010016 +43172 A0:n00000000000 +43175 A0:n42017006004 +43180 A0:n42017011009 +43187 A0:n42017012003 +43192 A1:n42017006004 A0:n42017012010 +43197 A0:n42017012011 +43201 A0:n42017013002 A1:n42017013004 +43203 A0:n42017012010 +43206 A0:n42017013006 A1:n42017013009 +43209 A0:n42017006004 +A0:n42017006004 A2:n42017014004 +43212 A1:n42017012010 +A0:n42017012010 A1:n42017014007 A2:n42017014009 +43218 A0:n00000000000 +43221 A0:n42017014015 +43223 A1:n42017012010 +43228 A0:n42017015001 +43230 A1:n42017015001 +A0:n42017015001 +43235 A0:n42017015001 A1:n42017015014 +43239 A0:n42017015001 +43246 A0:n42017015001 A1:n42017016010 +43253 A1:n42017017004 +43256 A0:n42017017004 +43260 A1:n42017017008 +43266 A1:n42017018003 +A0:n00000000000 +A0:n42017018003 A1:n42017018005 A2:n42017018007 +43278 A0:n42017017004 A2:n42017019003 +43280 A0:n42017015001 +A0:n42017015001 +43285 A0:n42017019007 A1:n42017019010 +43288 A1:n42017017004 +43293 A0:n42017020009 +43298 A1:n42017017004 A2:n42017020013 +43301 A0:n42017017004 +43303 A0:n42017020019 +43311 A0:n00000000000 +A0:n42017020005 +43317 A0:n42017020005 +43326 A0:n42017017004 +43330 A0:n42017022007 +43333 A0:n42017022005 A1:n42017022017 +43341 A0:n42017022005 A1:n42017022010 +43344 A0:n42017022005 +43346 A0:n00000000000 A2:n42017023003 +43348 A0:n42017022005 +43350 A0:n42017022005 +43353 A0:n42017022005 +43355 A0:n42017022005 +43360 A0:n42017024004 +43370 A0:n42017024004 +43382 A0:n42017025006;n42017025008 +43386 A0:n42017025004 A1:n42017025005 +43388 A1:n42017024019 +43395 A0:n00000000000 +43401 A0:n00000000000 +43410 A0:n00000000000 +A0:n00000000000 +A0:n00000000000 +A1:n00000000000 +43417 A0:n42017027009 +43423 A0:n42017027016 +43427 A0:n42017027016 A1:n42017027019 +43431 A0:n00000000000 +43436 A0:n00000000000 +A0:n00000000000 +A0:n00000000000 +A0:n00000000000 +A0:n00000000000 +A0:n00000000000 +43445 A0:n42017029005 +43449 A0:n42017021012 A1:n42017029009;n42017029011 +43456 A0:n42017021012 A1:n42017029016 +43468 A1:n42017030008 +43486 A0:n42017031009;n42017031016 +A0:n42017031005 A1:n42017031020 +43495 A0:n42017031022 +43499 A0:n42017022005 A1:n42017032003 +43505 A0:n42017033001 A1:n42017033007 +43509 A0:n42017033001 A1:n42017033005 +A0:n42017033003 A1:n42017033009 +43515 A0:n42017033011 +A0:n42017033013 A1:n42017033015 +43518 A0:n42017017004 A2:n42017034002 +43530 A1:n42017034012 +43534 A1:n42017034016 +43536 A0:n42017035002 +43543 A1:n42017035008 +43547 A1:n42017035012 +43549 A1:n42017022005 +A0:n42017022005 A2:n42017037004 +43556 A0:n42017037007 A2:n42017037010 +43565 A1:n42017037017 +43567 A0:n42017017004 A1:n42018001003 A2:n42018001004 +43572 A0:n42018001009 +43574 A0:n42018001010 +43578 A0:n42017022005 +A0:n42017017004 +43589 A0:n42018002002 A1:n42018002009 +43593 A1:n42018002002 A1:n42018002013 +43602 A0:n42018003001 +43605 A0:n42018003001 +A0:n42018002002 A1:n42018003014 +43614 A0:n42018002002 +43620 A0:n42018002002 +43628 A0:n42018002002 A1:n42018004015 +43631 A1:n42018002002 A1:n42018004019 +43635 A2:n42018005005 A1:n42018005006 A0:n42018005008 +43641 A0:n42018002002 A1:n42018005011 +43647 A0:n42018005008 +A0:n42018005008 A1:n42018005018 +43651 A0:n42018006004 +43654 A0:n42017022005 +43660 A1:n42018006006 A0:n42018006008 +43666 A0:n42018007003 A1:n42018007008 +43673 A0:n42018007010 A1:n00000000000 A2:n42018007014 +43679 A0:n42018007003 +43682 A0:n42018006004 A2:n42018008002 +43685 A0:n42018007003 A1:n42018008006 +43696 A0:n42018008012 +43698 A0:n42018008012 A1:n42018008019 +43705 A0:n42018006004 A1:n42018009018 +43710 A0:n42017020005 +43717 A0:n42017020005 A1:n42018009016 +43725 A0:n42018010001 +43729 A0:n42018010001 +43739 A1:n42018011002 +43743 A0:n42018011002 A1:n42018011004 +43746 A0:n42018011002 A2:n42018011011 +43765 A0:n42018011002 +43769 A0:n42018011002 A1:n42018012008 +43772 A0:n42018011002 A1:n42018012007 +43777 A0:n42018013003 +43779 A0:n42018013003 A1:n42018013011 +43783 A0:n42018013003 A1:n42018013010 +43788 A0:n42018013003 A1:n42018013018 +43792 A0:n42018013003 +43795 A1:n42018013022 A2:n42018013024 +43799 A0:n42018006004 A2:n42018014002 +43801 A0:n42018014004 +43803 A1:n42018013003 +43813 A0:n00000000000 A1:n42018014016 +43815 A1:n42018014015 +43818 A0:n00000000000 A1:n42018014021 +43820 A1:n42018014020 +43822 A0:n00000000000 A2:n42018015003 A1:n42018015006 +43829 A0:n42018006004 A1:n42018015008 +43831 A0:n42018015013 +43834 A0:n42018015013 A1:n42018015015 +43839 A0:n42018016003 A1:n42018016005 +43841 A0:n42018016003 +A0:n42018015013 A1:n42018016010 +43845 A0:n42018016009 +43850 A0:n42018015013 A1:n42018016016 +43861 A0:n42018016003 A2:n42018017003 +43866 A0:n42018017004 A1:n42018017009 +43875 A0:n42018017007 +43879 A0:n42018018005 A1:n42018018004 +43883 A0:n42018018005 +43887 A0:n42018018005 A1:n42018018009 +43890 A0:n42018018005 A1:n42018018011 +43892 A2:n42018019003 A0:n42018019005 +43898 A0:n42018018005 A1:n42018019007 +43909 A0:n42018018005 A1:n42018020002 +43911 A0:n00000000000 +43913 A0:n00000000000 +43915 A0:n00000000000 +43917 A0:n00000000000 +A0:n00000000000 A1:n42018020014;n42018020018 +43927 A0:n42018021001 +43930 A0:n42018018005 A1:n42018021004 +43934 A0:n42018022004 +43937 A0:n42018022004 A2:n42018022006 +43942 A0:n42018022008 +43945 A0:n42018018005 A1:n42018022012 +A0:n42018018005 A1:n42018022013 +43948 A0:n42018018005 A1:n00000000000 A2:n42018022017 +43951 A0:n42018018005 A1:n42018022020 +43957 A0:n42018018005 +A0:n42018018005 A1:n42018022027 +43962 A0:n42018018005 A1:n42018023004 +43971 A0:n42018024005 A1:n42018024003 +43975 A0:n42018024005 +43981 A0:n00000000000 A1:n42018024011 +43987 A0:n42018024012 +43995 A0:n42018025004 +44003 A0:n42018025010 +44005 A0:n42018026004 +44007 A0:n00000000000 +44010 A0:n42018026006 A1:n42018026008 +A1:n42018026006 +44014 A0:n42018027001 +44025 A0:n42018028004 +44028 A0:n42018015013 +44030 A0:n42018015013 A1:n42018028009 +44033 A0:n42018028006 A1:n42018028011 +44037 A0:n42018029001 A2:n42018029004 +44040 A0:n42018024005 A2:n42018029007 +44046 A0:n42018029011 A1:n42018029013;n42018029015;n42018029017;n42018029019;n42018029021 +44064 A0:n42018030001 A1:n42018030005 +44075 A0:n42018030013 +44079 A0:n42018024005 A1:n42018031004 +44082 A0:n42018024005 +44085 A0:n42018031004 +A0:n42018031004;n42018024005 +44090 A1:n42018031016 +44093 A1:n00000000000 +44102 A1:n42018031021 A2:n42018032004 +44106 A1:n42018031021 +44108 A1:n42018031021 +44110 A1:n42018031021 +44112 A0:n42018032004 +A0:n42018032004 A1:n42018033004 +44120 A0:n42018031021 +44125 A0:n42018034002 A1:n42018034003 +44136 A0:n42018031004 A1:n42018034018 +44138 A1:n42018034009 +44140 A0:n00000000000 +44143 A0:n42018035006 +44149 A0:n42018035009 +44153 A0:n42018035009 +44155 A0:n42018035009 A1:n42018036004 +44157 A0:n42018036003 +A0:n42018035009 A1:n42018036006 +44163 A0:n00000000000 A2:n42018037003 +44169 A0:n42018037005 +44171 A0:n42018035009 +A0:n42018035009 +44176 A0:n42018038004 A1:n42018038008 +44180 A0:n00000000000 +A0:n42018039003 A2:n42018039005 +44184 A0:n42018035009 +44189 A0:n42018039008 +44192 A0:n42018039013 A1:n42018039016 +44195 A1:n42018040004 +44198 A0:n42018040004 A1:n42018040007 +44200 A1:n42018040006 +44204 A0:n42018040012 +44206 A0:n42018040004 A1:n42018040014 +44210 A0:n42018040004 A1:n42018041001 A2:n42018041002 +A0:n42018035009 A1:n42018041004 +44214 A0:n42018041005 +44217 A0:n42018035009 +44221 A0:n42018042003 A2:n42018042005 +44223 A0:n42018035009 +44227 A0:n42018042008 A1:n42018042011 +44231 A0:n42018035009 +44233 A0:n42018035009 A1:n42018043006 +44235 A0:n42018035009 A1:n42018043009 +44242 A0:n42018043013 +A0:n42018043013 A1:n42018043016 A2:n42018043018 +44248 A0:n42018042003 +A0:n42018042003 +44266 A0:n42019002003 A1:n42019003003 +A0:n42019002003 A1:n42019003005 +44274 A0:n42019002003 +44284 A0:n42019002003 +44288 A0:n42019002003 +44292 A0:n42019002003 A1:n42019004011 +44296 A0:n42019003005 +A0:n42019003005 A1:n42019004015 +44300 A0:n42019005009 +44304 A0:n42019005009 +44307 A0:n42019005009 +44311 A0:n42019005013 +A0:n42019005013 +44320 A0:n42019005023 +A0:n42019005024 +44323 A0:n42019002003 +A0:n42019002003 +44326 A0:n42019002003 A1:n42019006006 +44328 A0:n42019002003 +44330 A0:n42019007003 +44332 A0:n42019007003 +A0:n42019007003 +44338 A0:n42019005009 +A0:n42019005009 +44341 A1:n42019008003 +44343 A0:n42019008003 +44348 A0:n42019008007 +44353 A0:n00000000000 +44356 A0:n42019008003 A1:n42019008010 A2:n42019008016 +44361 A0:n42019008003 A1:n42019008021 +A0:n42019008003 A1:n42019008024 +44365 A0:n42019009006 +44384 A0:n42019010004 +44389 A0:n42019010004 A1:n42019010011 +44391 A0:n42019010004 A1:n42019010011 +44393 A0:n00000000000 +44395 A0:n42019011003 A1:n42019011004 +44398 A0:n42019009006 +A0:n42019009006 A1:n42019011007 +44408 A0:n42019011016 +44412 A0:n42019011021 A1:n42019011024 +44417 A1:n42019011021 +44419 A0:n42019009006 +44423 A0:n42019012003 +44427 A0:n42019012003 A2:n42019012011 A1:n42019012012 +44431 A0:n42019012003 +44433 A0:n42019012003 A1:n42019013004 +44437 A0:n42019012003 A2:n42019013007 A1:n42019013009 +44442 A0:n42019012003 +44445 A0:n42019013004 +44448 A0:n42019012003 +44453 A0:n42019014003 A1:n42019014006 +44456 A0:n42019014003 A1:n42019014009 +44460 A0:n42019014003 +44462 A0:n42019014003 A1:n42019014016 +44464 A0:n42019014015 +44468 A0:n00000000000 +44471 A0:n42019015006 +44473 A0:n42019012003 A1:n42019015009 +44477 A0:n42019012003 A1:n42019015012 +A2:n42019015013 A1:n42019015015 +44484 A0:n42019012003 A2:n42019015017 A1:n42019015020 +44488 A0:n42019015023 A1:n42019015025 +44493 A0:n42019016004 +44496 A0:n42019016004 +44503 A0:n42019016008 A1:n42019016012 +44505 A0:n42019012003 A2:n42019017003 +44517 A0:n42019017006 A1:n42019017013 +44522 A0:n42019018004 +44525 A0:n42019018004 +44530 A0:n42019018007 A1:n42019018012 +44534 A0:n42019012003 A2:n42019019004 +44546 A0:n42019020003 +A0:n42019020003 +44549 A0:n42019020006 +44554 A0:n42019020003 A1:n42019020011 +A0:n42019020009 +44559 A0:n42019020003 A1:n42019021003 +44565 A0:n42019020006 A1:n42019021011 +44568 A0:n42019020006 A1:n42019021009 +44570 A0:n42019020006 A1:n42019021016 +44573 A0:n42019020006 A1:n42019021014 +A0:n42019012003 A2:n42019022002 +44580 A0:n42019012003 A1:n42019022008 +44584 A0:n42019022010 +44590 A0:n42019022014 A1:n42019022020 +44593 A0:n42019022014 A1:n42019022018 +44595 A0:n42019022014 A1:n42019022025 +44598 A0:n42019022014 A1:n42019022023 +44603 A0:n42019022010 A1:n42019023008 +44611 A0:n42019012003 +44615 A0:n42019023011 A1:n42019023016 +44618 A0:n00000000000 +A0:n42019012003 A2:n42019024003 +A0:n42019024003 A1:n42019024009 +44626 A0:n42019024003 A1:n42019024009 A2:n42019024016 +44631 A0:n42019016004 A1:n42019024015 +44633 A0:n42019024003 A2:n42019025003 +44636 A0:n42019024016 A1:n42019025007 +44639 A0:n42019012003 A2:n42019026002 +44644 A0:n00000000000 +A1:n00000000000 A2:n42019026006 +44650 A0:n00000000000 +44653 A0:n42019026012 A1:n42019026014 +A1:n42019026015 +44662 A0:n42019027003 A1:n42019027010 +44664 A0:n42019027009 +44667 A0:n42019024003 A1:n42019027003 +44670 A0:n42019024003 A1:n42019027017 +44675 A0:n42019009006 A1:n42019028003 +44677 A0:n42019009006 +44679 A0:n42019009006 +44683 A0:n00000000000 +44685 A0:n42019009006 +44696 A0:n42019009006 A1:n42019029016 +44700 A0:n42019009006 +A0:n42019029016 +44708 A0:n42019029016 +A0:n42019029016 A1:n42019030012 +A1:n42019030011 +44717 A0:n42019030015 +44719 A0:n42019029016 A1:n42019030021 +44721 A0:n42019029016 +44726 A0:n42019031003 A1:n42019031004 +44729 A0:n42019029016 +44731 A0:n42019029016 +44737 A0:n42019031013 A1:n42019031015 +44739 A0:n42019032004 +44741 A1:n42019029016 +A0:n42019032004 +44744 A0:n42019009006 A2:n42019032008 +44747 A0:n42019033003 A1:n42019033005 +44751 A0:n42019033008 +44758 A0:n42019032004 A1:n42019033015 +44763 A0:n42019034001 +44769 A0:n42019034006 A1:n42019034008 +44771 A0:n42019032004 A1:n42019035003 +44777 A0:n42019032004 A1:n42019035011 +44784 A0:n42019032004 A1:n42019035017 +44788 A0:n42019036003 +44790 A0:n00000000000 A1:n42019036006 +44798 A0:n42019037003 +44808 A0:n42019037015 A1:n42019037019 +44814 A0:n42019037015 +A0:n42019037015 A1:n42019037021 +44823 A0:n42019037015 +44825 A0:n42019037015 +A1:n00000000000 +44828 A0:n42019038006 +44848 A0:n42019039002 +44852 A0:n42019039011 A1:n42019039014 +44857 A1:n42019035017 +A0:n42019035017 +A0:n42019035017 A2:n42019040005 +44863 A0:n42019040007 +44866 A0:n42019040010 +44869 A0:n42019035017 +A0:n42019035017 A1:n42019041006 +44873 A0:n42019035017 +44876 A0:n42019035017 +44879 A0:n42019042010 A1:n42019042011 +44891 A1:n42019042011 +44896 A0:n42019043003 +44901 A0:n42019043009 A1:n42019043011 A2:n42019043012 +44908 A0:n42019043009 A1:n42019043015 +44911 A0:n42019043009 A1:n42019043018 +44915 A0:n42019043009 A1:n42019044003;n42019044006 +44925 A0:n42019043009 A1:n42019044013 +44934 A0:n42019041006 A1:n42019044023 +44941 A0:n42019035017 +44945 A0:n42019035017 A1:n42019045007 +A0:n42019035017 A1:n42019045009 +44948 A0:n00000000000 +A0:n42019035017 A2:n42019046002 +44951 A1:n42019046009;n42019046014 +44962 A0:n42019046011 A1:n42019046013 +44967 A0:n42019035017 +44980 A0:n42019047012;n42019047015 A1:n42019047018 +44982 A0:n42019047012;n42019047015 A1:n42019047017 +44990 A0:n42019047012;n42019047015;n42019047021 A1:n42019048006 +44993 A0:n42019047012;n42019047015;n42019047021 A1:n42019048005 +44998 A0:n42019048008 A1:n42019048012 +45000 A0:n42019048008 +45002 A0:n00000000000 +45007 A0:n42020001008 A1:n42020001010 +45015 A0:n42019035017 +A0:n42020001018;n42020001021 +45026 A0:n42020001018;n42020001021;n42020001024 +A0:n42020001018;n42020001021;n42020001024 +45030 A0:n42019035017 A2:n42020002007 +45036 A0:n42019035017 A1:n42020002011 +45041 A0:n00000000000 A2:n42020002018 A1:n42020002020 +45047 A1:n42019035017 +A0:n42019035017 +45051 A2:n42020003007 A0:n42020003008 A1:n42020003009 +45056 A0:n42020001018;n42020001021;n42020001024 A2:n42020003012 +45069 A0:n42020005001 +45072 A0:n42020001018;n42020001021;n42020001024 +45075 A0:n42020001018;n42020001021;n42020001024 +45078 A0:n42019035017 +45082 A0:n42020001018;n42020001021;n42020001024 A1:n42020005017 +45086 A0:n42020001018;n42020001021;n42020001024 +45092 A0:n42020006007 A1:n42020006010 +45095 A1:n42020006007 A1:n42020006015 +45101 A1:n42020001018;n42020001021;n42020001024 A1:n42020007004 +45103 A0:n42020001018;n42020001021;n42020001024 A1:n42020007005 +45108 A0:n42020008003 A2:n42020008005 +45112 A0:n42020008007 A2:n42020008009 +45118 A0:n42020008003 A1:n42020008013 +45120 A0:n42020008003 A1:n42020009006 +45124 A0:n42020008003 A1:n42020009008 +45129 A0:n42020009010 A1:n42020009012 +45132 A0:n42020009010 A1:n42020009015 A2:n42020009016 +45136 A0:n42020009010 +45141 A0:n42020009010 A1:n42020010007 +45152 A0:n42020010006 A1:n00000000000 A2:n42020010015 +45157 A0:n42020010018 A1:n42020010020 +45159 A0:n42020010018 +45162 A0:n42020009010 A1:n42020011004 +45165 A0:n42020009010 A1:n42020011005 +45169 A0:n42020010018 A1:n42020011008 +45171 A0:n42020010018 A1:n42020011008 +A0:n42020011006 A1:n42020011005 +45175 A0:n42020009010 A1:n42020012004 +45177 A0:n42020009010 A1:n42020012003 +45182 A0:n42020010018 A1:n42020012008 +A0:n42020012005 +45185 A0:n42020013004 +45191 A0:n42020013004 A1:n42020013007 +A0:n42020013004 A1:n42020013011 +45200 A1:n42020010018 A1:n42020013016 +45202 A0:n42020014005 A1:n42020014003 +45206 A0:n42020014005 +45209 A0:n42020014005 +45214 A0:n42020014005 A1:n42020014015 +45222 A0:n42020014005 A1:n42020015003 +45227 A0:n42020014005 +45230 A1:n42020015008 A2:n42020015011 A0:n42020015013 +45236 A0:n42020015013 +45238 A0:n42020015013 A1:n42020016005 +45243 A0:n42020015013 A1:n42020016010 A2:n42020016011 +45248 A0:n42020009005 +A0:n42020009005 +45251 A0:n00000000000 +45254 A0:n42020008003 A1:n42020017004 +45256 A0:n42020017001 +45261 A1:n42020017020;n42020018008;n42020018014 +45265 A1:n42020017013 A0:n42020017016 +45267 A0:n00000000000 +45275 A0:n00000000000 +45280 A1:n42020018003 +45285 A0:n42020018007 +A0:n42020018007 A1:n42020018015 +45289 A0:n42020019004;n42020019007 A1:n42020019008 +45295 A0:n42020019004;n42020019007 A1:n42020019012 +45305 A1:n42020019004;n42020019007 A1:n42020019020 +45309 A0:n42020019004;n42020019007 +45313 A0:n42020008003 A1:n42020019028 +45318 A0:n42020019004;n42020019007 +A0:n42020019004;n42020019007 A1:n42020020004 +45321 A0:n42020020004 A1:n42020020007 +45326 A0:n42020020004 A1:n42020020012 +45330 A0:n42020020004 A1:n42020020015 A2:n42020020017;n42020020020 +45340 A0:n42020020004 A1:n42020021003 +45342 A0:n42020020004 +45344 A0:n42020020004 +45347 A0:n42020021005 +45349 A0:n42020021005 +45352 A0:n42020021005 A1:n42020021015 +45361 A0:n42020021005 A1:n42020021020 +A0:n42020022005 +45366 A0:n42020022002 A2:n42020022003 A1:n42020022004 +45370 A0:n42020008003 A1:n42020023005 +45374 A0:n42020008003 +45377 A0:n42020020004 A2:n42020024002 A1:n42020024003 +45380 A0:n42020024003 A1:n42020024006;n42020024008 +45387 A0:n42020024009 +45391 A0:n42020025001 +45395 A0:n42020020004 A1:n42020025008 A2:n42020025010 +45407 A0:n42020020004 A1:n42020026004 +A0:n42020020004 A1:n42020026006 +45415 A0:n42020020004 +45420 A0:n42020020004 +45422 A0:n42020027003 +45427 A0:n42020027003 A1:n42020027009 +45431 A0:n42020027003 A1:n42020027012 +45433 A0:n42020027003 +45436 A0:n42020028003 A2:n42020028005 +45441 A0:n42020028008 +A0:n42020028008 A1:n42020028011 +45449 A0:n42020028019 A1:n42020028022 +45456 A0:n42020028019 A1:n42020028025 A2:n42020028027 +45464 A0:n42020029003 +45468 A0:n42020029007 A1:n42020029009 +45470 A0:n42020029007 +45478 A0:n42020030003;n42020031003 A1:n42020031005 +45486 A0:n42020031010 A1:n42020031013 +45489 A0:n42020031010 +45494 A0:n42020032004 +45508 A0:n42020033013 A1:n42020033015 +45512 A2:n42020034003 A0:n42020034005 +45521 A0:n42020034007 +45523 A1:n42020034007 +45526 A1:n00000000000 A1:n42020035007;n42020035010 +45530 A0:n42020035003 A1:n42020035005 +45538 A0:n42020035003 +45540 A1:n42020035003 +45543 A0:n42020035003 +45545 A0:n42020035003 A1:n42020036003 +45559 A1:n42020037005 +45564 A0:n42020037007 +45569 A0:n42020037007 A1:n42020037014 +45586 A0:n00000000000 +45590 A0:n42020038008 +45592 A1:n42020039003 +45596 A0:n42020039003 +45599 A0:n42020039007 +45602 A0:n42020039003 A1:n42020040004 +A0:n42020039003 A2:n42020040005 A1:n42020040006 +45607 A0:n42020034005 +45611 A0:n00000000000 A1:n42020041011 +45620 A0:n42020042003 +45624 A0:n42020042009 A2:n42020042011 +45629 A0:n42020042011 +45635 A0:n42020042009 A1:n42020043005 +45647 A0:n42020044001 A1:n42020044003 +45654 A0:n42020045005 +45658 A0:n42020034005 A2:n42020045008 +45661 A0:n42020045008 +45666 A0:n42020046004 A1:n42020046007 +A0:n42020046004 +45671 A0:n42020046004 A1:n42020046012;n42020046017;n42020046022 +45687 A0:n42020047001 A1:n42020047004 +45695 A0:n42020046004 A1:n42020047009 +45697 A0:n42020047011 A1:n42020047014 +45701 A0:n42020034005 +A0:n42020034005 A1:n42021001012 +45704 A0:n42021001012 A1:n42021001010 +45713 A0:n42020034005 A1:n42021002006 +45717 A0:n42021002004 A1:n42021002008 +45722 A0:n42020034005 +45724 A0:n42020034005 A2:n42021003005 +45734 A0:n42021003008 A1:n42021003012 +45740 A0:n00000000000 +45742 A0:n42021004003 +45756 A0:n42021003008 A1:n42021004021 +A0:n42021004012 A1:n42021004020 +45760 A0:n42021005002 +45769 A1:n42021005006 +A0:n42020034005 +45773 A0:n42021005002 A1:n42021006002 +A0:n42021006005 +45779 A1:n42021006010 +45785 A1:n42021006013 +45787 A0:n42021005002 A1:n42021007003 +45789 A0:n42021005002 +45800 A0:n42021007016 A1:n42021007017 +45802 A0:n42021007016 +45805 A0:n42021008001 +A0:n42021005002 +45808 A1:n42021005002 +45811 A0:n42021008007 +45816 A0:n42021008007 +45822 A0:n42021008019 +45824 A1:n42021005002 +45829 A0:n42021005002 A1:n42021009004;n42021009006 +45834 A1:n42021005002 +45836 A0:n42021009012 +45838 A0:n42021009011 +45846 A0:n42020034005 A2:n42021010003 +45848 A1:n42021010005 +45865 A0:n42021011001;n42021011007;n42021011009 +45873 A0:n42021011011;n42021011016 +45878 A0:n00000000000 A1:n42021012009 +45885 A0:n00000000000 +A0:n00000000000 +45892 A1:n42021005002 +45901 A0:n42021012012;n42021012005 AA2:n42021013002 +45906 A0:n42021005002 A1:n42021014008 +45912 A0:n42021005002 A1:n42021014009 +A1:n42021005002 +45916 A0:n42021015001 A2:n42021015004 A1:n42021015005;n42021015007 +45923 A1:n42021015011;n42021015013 A0:n42021015016 +A0:n42021015016 +45926 A0:n42021015016 +45929 A0:n00000000000 A1:n42021015017 +45932 A1:n42021005002 +45943 A0:n42021016005;n42021016007;n42021016009;n42021016011 +45948 A1:n42021005002 +45963 A0:n42021018002 +45968 A0:n42021005002 A1:n42021019007 +45974 A0:n42021005002 A1:n42021020004 +A1:n42021020007 +45980 A0:n42021005002 +45982 A0:n42021020013 +45991 A0:n42021021002 +46000 A0:n42021021011 +46007 A0:n42021021017 +46016 A1:n42021022010 +46019 A1:n00000000000 +46024 A0:n00000000000 +46027 A0:n00000000000 +46045 A0:n42021023023 +46049 A1:n42021023023 +46057 A1:n42021024012 +46062 A1:n42021024020 +46086 A0:n42021026002 +46093 A0:n00000000000 AA2:n42021026010 +46101 A1:n42021026013 +46104 A0:n42021026002 A1:n42021027008 +46109 A0:n42021027005 +46118 A0:n42021028003 A1:n42021028004 +46120 A0:n42021028003 +A0:n42021005002 +46123 A0:n42021005002 A1:n42021028009 +46128 A0:n42021028014 +46133 A0:n42020034005 A1:n42021029003 A2:n42021029004 +46136 A0:n42021005002 A1:n42021029007;n42021029011 +46144 A0:n42021029007;n42021029011 +46146 A0:n42021005002 +46149 A0:n42021005002 +46160 A0:n42021005002 A1:n42021031007 +46162 A0:n42021031006 +A0:n42021031003 +46172 A0:n42020034005 A2:n42021032003 +46177 A0:n42021032009 +46184 A0:n42021032013 +46190 A0:n42021033002;n42021033005 +46197 A0:n42021033009 +46199 A0:n42021005002 A1:n42021034003 +46203 A1:n42021034009 +46215 A0:n42021034023 +46225 A0:n42021034022 +46229 A0:n00000000000 +46236 A0:n42021005002 +46240 A0:n42021005002 +46242 A0:n42021005002 A1:n42021036009;n42021036016 +A0:n42021005002 A1:n42021036010 +46247 A0:n42021036010 A1:n42021036014 +A0:n42021036010 +46250 A1:n42021005002 +46258 A0:n42020034005 +46267 A0:n42020034005 +A0:n42020034005 +46279 A0:n42021038004 +46285 A0:n42021038004 A1:n42021038012 +46288 A0:n42022001004 +46297 A0:n42022002004;n42022002007 A1:n42022002010 +46305 A0:n42022002004;n42022002007 A1:n42022002011 +46308 A0:n42022002004;n42022002007 A1:n42022002015 +46312 A0:n42022003003 +46326 A0:n42022003005 +A0:n42022003005 A2:n42022004005;n42022004007 A1:n42022004011 +46335 A0:n42022003005 A2:n42022004010 A1:n42022004012 +46338 A1:n42022004005;n42022004007 +46340 A0:n42022004005;n42022004007 A1:n42022005007 +46343 A0:n42022004005;n42022004007 A2:n42022005005 A1:n42022005006 +46345 A0:n42022003005 +46347 A0:n42022003005 A1:n42022006005 +46350 A0:n42022003005 A1:n42022006008 A2:n42022006011 +46356 A0:n42022007004 +46362 A0:n42022007009 +A1:n42022007011 +46367 A0:n42020034005 A1:n42022008003;n42022008005 +46371 A0:n42020034005 +A1:n42022008003;n42022008005 +A0:n42022008003;n42022008005 A2:n42022008009 A1:n42022008011 +46378 A0:n42020034005;n42022003014 +46381 A0:n42022009001 A2:n42022009004 +46383 A0:n42020034005 +46385 A0:n42022008003;n42022008005 +46388 A0:n42022010001 A2:n42022010004 +46390 A0:n42022008003;n42022008005 +A0:n42022010007 +46396 A1:n42022010012 A0:n42022010013 +46401 A0:n42022010013 A1:n42022010014 +A0:n42022008003;n42022008005 A1:n42022010018 +46409 A0:n42022010013 +46411 A0:n42022008003;n42022008005 A2:n42022011004 +46416 A2:n42022011008 A0:n42022011010 +46431 A0:n42022011010 A1:n42022011017 +46434 A0:n42022012001 A2:n42022012002 A1:n42022012004 +46437 A1:n42022012004 +46439 A0:n42022008003;n42022008005 +46441 A0:n42022008003;n42022008005 +A0:n42022008003;n42022008005 +46444 A0:n42020034005 A2:n42022013006 +46447 A0:n42022008003;n42022008005 A1:n42022013010 +46452 A0:n42022014005 +46455 A0:n42020034005 +46462 A0:n42020034005 +46466 A0:n42020034005 A1:n42022015010 +46470 A0:n42020034005 A1:n42022015009 +46476 A0:n42022015015 +46478 A0:n42020034005 A2:n42022016003 +46484 A0:n42020034005 A1:n42022016009 +46488 A1:n42022015009 +46495 A0:n42020034005 A1:n42022017003 +46497 A0:n42020034005 +A0:n42020034005 +A0:n42022014009 A1:n42022017007 +46502 A0:n42022014009 +46506 A0:n42020034005 A2:n42022018003 +46510 A0:n42020034005 +46525 A0:n42022018018 +46527 A0:n42020034005 A1:n42022019003 +46529 A0:n42020034005 +A0:n42020034005 A1:n42022019003 +46532 A0:n42020034005 A1:n42022019003 A2:n42022019008 +46534 A0:n42020034005 +46543 A1:n42022019013 +46545 A0:n42022014009 A1:n42022019019 +46556 A0:n42020034005;n42022014009 +A0:n42020034005 +46571 A1:n42022020011 +46573 A0:n42022014009 +46577 A0:n00000000000 A1:n42022021007 +46592 A1:n00000000000 +A0:n42022022003 +46601 A1:n42022022003 +46604 A0:n42022023002 A1:n42022023004 +A0:n42022014009 A1:n42022023008 +46616 A0:n42022023015 A1:n42022023014 +A0:n00000000000 A1:n42022023016 +46619 A0:n42022024004 +46627 A0:n42022024008 A1:n42022024012 +46632 A0:n42022025001 A2:n42022025004 +46638 A0:n42022025006 +46642 A0:n00000000000 A1:n42022025014 +46661 A0:n00000000000 +46664 A0:n00000000000 +46669 A0:n00000000000 +46672 A0:n00000000000 +46675 A0:n00000000000 +46684 A0:n00000000000 +46689 A0:n00000000000 +46697 A0:n42022029001 A2:n42022029003 A1:n42022029010 +46700 A2:n42022029006 A1:n42022029010 A0:n42022029008 +46707 A0:n42022014009 +46709 A0:n42022014009 +46719 A0:n42022014009 +46727 A0:n42022014009 A1:n42022030019 +46730 A0:n42022031001 +46733 A0:n42022031005 A1:n42022031007 +46736 A0:n42022031005 +46742 A0:n42022032001 +46747 A0:n42022032010 +46754 A0:n42022031001 +A0:n42022032013 A1:n42022032018 +46761 A0:n42022033001 A2:n42022033004 +46774 A0:n42022008003 +46777 A0:n42022034001 +A0:n42020034005 A2:n42022034005 +46782 A0:n42022034010 +46790 A0:n42022034006 A1:n42022034016 +46792 A0:n42020034005 A2:n42022035003 +46795 A0:n42020034005 A1:n42022035006 +46805 A0:n42022014009 +46808 A0:n42022035016 +46811 A0:n42020034005 A2:n42022036003 +46816 A0:n00000000000 A1:n42022036008 +46818 A0:n42022036007 +46825 A0:n00000000000 +A0:n42022036016 A1:n42022036019 +46831 A0:n42022036016 A1:n42022036023 +46834 A0:n42020034005 A2:n42022037003 +46837 A0:n42022037009 +46840 A1:n42022037016 +46845 A1:n42022022003 +A1:n42022037007 +46855 A0:n42022037019 A1:n42022037022 +46858 A0:n42022038001 +46860 A0:n42022038004 +46866 A0:n42022038009 A2:n42022038012 +46869 A0:n00000000000 +46871 A0:n42020034005 +A1:n42020034005 +46882 A1:n42022039014 A0:n42022039017 +46888 A0:n42020034005 +46892 A0:n42020034005 A2:n42022040007 +46894 A0:n42022039017 +46896 A0:n42022039017 +46901 A1:n42022041002 A1:n42022041008 +46908 A0:n42020034005 A1:n42022041012 +46911 A0:n42020034005 +A0:n42020034005 +46915 A0:n42022042002 +A0:n42022042002 A1:n42022042008 +46930 A0:n42022042018 +46932 A2:n42022043003 A1:n42022043004 +46937 A0:n42022043004 A1:n42022043008 +46944 A0:n42020034005 +46953 A0:n42022044010 +46958 A0:n42020034005 +46962 A0:n42020034005 +46966 A0:n42020034005 A1:n42022045011 +A0:n42022045012 +46973 A0:n42020034005 A2:n42022046003 +46976 A0:n42022045009 +A0:n42022045009 +A0:n42022045009 +46981 A0:n42022045009 +46986 A0:n42022047002 +46996 A0:n42022047009 +46999 A0:n42022047009 AA2:n42022047018 +47002 A0:n42022047009 A1:n42022047020 +47006 A0:n42022048001 A2:n42022048004 +47014 A0:n42022048005 A1:n42022048008 +47019 A0:n42022049003 A1:n42022049007 +47021 A0:n00000000000 +A0:n42022049003 +47025 A0:n42022049003 +47029 A0:n42022050003 A1:n42022050010 +47039 A0:n42022050003 A1:n42022050014 +47046 A1:n42022051004 +47049 A0:n42022051004 +A0:n42022049003 +47054 A0:n42022051004 A1:n42022051012 +47057 A0:n42022051004 A1:n42022051014 +47060 A0:n42022052003 +47064 A0:n42022052009;n42022052011;n42022052015 +47077 A0:n42022052009;n42022052011;n42022052015 +47092 A0:n42022052009;n42022052011;n42022052015 A1:n42022053013 +47109 A0:n42022052009;n42022052011;n42022052015 A1:n42022054003 +47111 A0:n42022052009;n42022052011;n42022052015 +47113 A0:n42022052009;n42022052011;n42022052015 +47122 A0:n42022054014 +47125 A0:n42022052009;n42022052011;n42022052015 A1:n42022055003 +47132 A0:n42022052009;n42022052011;n42022052015 +A0:n42022055012 +47141 A0:n42022056004 A1:n42022056006 +47143 A0:n42022056003 +47148 A0:n42022056004 A1:n42022056012 +47150 A0:n42022056004 +47158 A0:n42022057001 +A0:n42022055012 +47161 A0:n42022055012 A1:n42022057007 +47168 A0:n42022058004 A1:n42022058006 +47170 A0:n42022058004 +47179 A0:n42022058015 +47184 A0:n42022059004 +47190 A0:n42022059007 +A0:n42022059007 +47204 A0:n42022060004 +47209 A0:n42022060004 A1:n42022060009 +47211 A0:n42022060005 A1:n42022060008 +47215 A0:n42022060014 +47217 A0:n42022060016 +47220 A1:n42022061004 +47223 A0:n42022061004 A1:n42022061007 +47227 A1:n42022061011 A1:n42022061013 +47235 A0:n42022061015 A2:n42022061018 +47240 A0:n42022061021 +47242 A0:n42022061011 A1:n42022061025 +47246 A0:n42022061011 +47248 A0:n42022061011 +47254 A0:n42022063003 A1:n42022063006 +47256 A0:n42022063003 A1:n42022063008 +47258 A0:n42022063003 A1:n42022063008 +47260 A0:n42022063003 A1:n42022064003 +47262 A0:n42022063003 +A0:n42022063003 +A0:n42022061015 +47268 A0:n00000000000 A1:n42022064011 +47273 A0:n42022063003 A1:n42022065002 +A0:n42022063003 +47279 A0:n42022066004 +47281 A1:n42022066007;n42022066010;n42022066013 +47291 A0:n42022066007;n42022066010;n42022066013 A1:n42022066016 +47297 A0:n42022066007;n42022066010;n42022066013 +47303 A0:n42022061015 A2:n42022067008 +47306 A0:n42022061015 A2:n42022067011 +47310 A0:n42022061015 A2:n42022067013 +47313 A0:n42022066007;n42022066010;n42022066013 +47316 A0:n42022061015 +47319 A1:n42022066007;n42022066010;n42022066013 +47325 A0:n42022069007 +47337 A0:n42022070003 +47350 A0:n42022070011 +47352 A0:n42022070016 +47358 A0:n42022071001 +47361 A0:n42022066007;n42022066010;n42022066013 A1:n42022071008 +47366 A0:n42022071009 +47372 A0:n42023001005 +47377 A0:n42023001005 A1:n42023001008 +47383 A0:n42023001005 A1:n42023002003 +A0:n42023001005 A1:n42023002004 +47386 A0:n42023001005 +A0:n42023001005 A1:n42023002008;n42023002013;n42023002018 +47389 A0:n42023002006 A1:n42023002010 +47394 A0:n42022061015 A1:n42023002016 +47397 A0:n42023002010 A1:n42023002014 A2:n42023002015 +47399 A0:n42022061015 A1:n42023002020 +47407 A0:n42023003003 A1:n42023003005 +47409 A0:n42023003003 +47418 A1:n42022061015 A2:n42023003016 +47420 A0:n42023003013 +47422 A0:n42023003018 +47426 A0:n42023004003 +47434 A0:n42023004003 A1:n42023004013 +47442 A0:n42023005001 +A0:n42023004007;n42023004010 +47445 A0:n42022061015 A1:n42023005008 +47448 A0:n42022061015 +47454 A0:n42022061015 +47462 A0:n42023006001 +A0:n42023006001 +47470 A0:n42023006001 +47477 A0:n42023006001 A1:n42023007010 +47493 A0:n42023008003 A1:n42023008006 +47496 A1:n42023008003 +47500 A0:n42023008003 A1:n42023008015 +47504 A0:n42023008003 A1:n42023008016 +47508 A0:n42023008003 +47512 A0:n42023008003 A1:n42023008026 +A0:n42023008003 A1:n42023008029 +47518 A0:n42023008025 +47520 A0:n42023008003 A1:n42023009003 +47528 A0:n42023009007 A1:n42023009009 A2:n42023009011 +47531 A0:n42023010004;n42023010007 +47538 A0:n42023010004;n42023010007 A1:n42023010010 +47543 A0:n42023011005 A1:n42023011003 +47550 A0:n42023011005 A1:n42023008006 +A0:n42023011005 A1:n42023011013 +47554 A0:n42023011005 A1:n42023011016 A2:n42023011018 +47582 A0:n42023013001 A1:n42023013005;n42023013008;n42023013011 +47591 A0:n42023013001 +47594 A0:n42023013005;n42023013008;n42023013011 A2:n42023014005 A1:n42023014007 +47600 A0:n42023014007 A1:n42023014012 +47604 A0:n42023013005;n42023013008;n42023013011 +47608 A0:n42023013001 +47610 A0:n42023014015 A1:n42023014025 +47617 A0:n42023013005;n42023013008;n42023013011 A1:n42023014026 +47624 A0:n42023015003 A1:n42023015006 +47629 A0:n42023013005;n42023013008;n42023013011 +47634 A1:n42023015011 +47637 A0:n42023013001 A1:n42023016003 +47639 A0:n42023013001 +47641 A0:n42023013005;n42023013008;n42023013011 +47643 A0:n42023013005;n42023013008;n42023013011 +A0:n42023013001 A1:n42023018006 +47647 A0:n42023013001 A2:n42023018009 A1:n42023018011 +47653 A1:n42023019001 +47657 A0:n42023019004 +47670 A0:n42023020004 A1:n42023020006 +47672 A0:n42023020004 A1:n42023020008 +A0:n42023020004 A1:n42023020010 +47678 A0:n42023021001 +A0:n42023013005;n42023013008;n42023013011 +A0:n42023020004 +A0:n42023020004 A1:n42023021007 +47686 A0:n42023022001 +47692 A1:n42023022009 A0:n42023022011 +47697 A0:n42023020004 A1:n42023022013 +47701 A0:n42023020004 A1:n42023022020 +47703 A0:n42023020004 +47706 A0:n42023023001 +47709 A0:n42023013005;n42023013008;n42023013011 A1:n42023023008 +47711 A1:n42023023007 +47713 A0:n42023023012 +47719 A0:n42023024002 A1:n42023024004 +A0:n42023024006 +47725 A0:n42023024002 A1:n42023025008 +47731 A1:n42023018011 +47735 A0:n42023013005;n42023013008;n42023013011 A1:n42023025011 +47739 A0:n42023024002 A1:n42023025015 +47745 A0:n00000000000 A1:n42023026004 +47747 A0:n00000000000 A1:n42023026006 +47751 A0:n42023026006 +47754 A0:n00000000000 A2:n42023026013 A1:n42023026015 +47758 A0:n42023026006 +47763 A1:n42023027003 A0:n42023027005 +47772 A0:n42023027010 A1:n42023027014 +47774 A0:n42023027010 A1:n42023027014 +47777 A1:n42023028005 +47781 A0:n42023028005 +47785 A0:n42023028007 +47791 A0:n42023028007 +47798 A0:n42023028007 +A0:n42023029004 +47803 A0:n00000000000 +47812 A0:n42023029014 +47817 A0:n42023029019 +47819 A0:n00000000000 A1:n42023030003;n42023030011 +A0:n00000000000 A2:n42023030005 +47823 A0:n42023030005 +47829 A0:n42023030011 A1:n42023030013 +47837 A0:n00000000000 A1:n42023031006 +47842 A0:n42023031011 +47844 A1:n42023032005 +47851 A1:n42023032005 +47854 A0:n42023013005;n42023013008;n42023013011 +47862 A0:n42023013005;n42023013008;n42023013011 A1:n42023033012;n42023033015 +47878 A0:n42023034003 +47880 A0:n42023034005 A1:n00000000000 A2:n42023034007 +47884 A0:n42023013005;n42023013008;n42023013011 A1:n42023034012 +47886 A0:n42023013005;n42023013008;n42023013011 A1:n42023034011 +47888 A0:n42023036006 A1:n42023034016 +47892 A0:n42023036006 A1:n42023034019 +47895 A0:n42023035004 +47898 A0:n42023035004 +47900 A0:n42023035010 +47904 A0:n42023035010 +47906 A0:n42023034003 A1:n42023035012 +A0:n42023034003 A1:n42023035015 +47919 A1:n42023036003 A0:n42023036006 +47924 A0:n42023036006 +47926 A0:n42023036006 A1:n42023036008 A2:n42023036010 +47929 A0:n42023036006 +47937 A0:n42023034003 A1:n42023037011 +47953 A1:n42023039005 +47955 A0:n42023039001 A1:n42023039007 +47962 A0:n42023034003 A1:n42023039014;n42023039016 +47967 A1:n42023040004 +47970 A0:n42023040004 A1:n42023040006 +47972 A0:n42023040004 +47974 A0:n42023040010 A1:n42023040012 +47991 A0:n42023039005 A1:n42023041007 +A0:n42023039005 A1:n42023041005 +47997 A0:n42023041010 A1:n42023041013 +47999 A0:n42023040004 +48001 A1:n42023042003 A1:n42023042005 +48004 A0:n42023042003 +48010 A0:n42023034003 A2:n42023043003 +48014 A0:n42023034003 A2:n42023043005 +48023 A0:n00000000000 +48030 A0:n42023044008 +48040 A0:n42023045002 +48042 A1:n42023045007 +48049 A0:n42023046006 +48054 A0:n42023046006 +48059 A0:n42023046006 A1:n42023046014 +48065 A0:n42023046006 A1:n42023046016 +A0:n42023046006 +48070 A0:n42023047004 A1:n42023047006 +48072 A0:n00000000000 +A0:n42023047004 A1:n42023047009 +48076 A0:n42023047004 +48086 A0:n42023048005 +48092 A0:n42023048005 A1:n42023048012 +48094 A0:n00000000000 +A0:n42023048005 A1:n42023048015 +48098 A0:n42023048005 +48100 A0:n42023049005;n42023049010 +48110 A0:n42023049010 A1:n42023049013 +48115 A0:n42023049005;n42023049010 A1:n42023049018 +48131 A0:n42023051001 +48144 A0:n42023051016 A1:n42023051019 +48150 A0:n42023050003 +48153 A0:n42023052001 A2:n42023052004 A1:n42023052007 +48159 A0:n42023050003 A1:n42023052007 +A0:n42023050003 A1:n42023053004 +48164 A0:n42023050003 A1:n42023053008 +48172 A0:n42023053015 +48178 A0:n00000000000 +48181 A0:n42023054006 +48183 A0:n42023055004 +48188 A0:n42023055005 +48193 A0:n42023055004 A1:n42023055014;n42023055017 +48198 A1:n42023055019 +48203 A0:n42023055004 +A0:n42023055004 A1:n42023056004;n42023056006 +48212 A0:n42023055004 +48226 A0:n42023055004 +A0:n42023055004 A1:n42024001015 +48229 A0:n42023055004 A1:n42024001013 +48232 A0:n42023055004 A1:n42024002005 +48235 A1:n42024002004 +48240 A0:n42023055004 +48242 A0:n42023055004 A1:n42024003006 +48249 A0:n00000000000 +48252 A0:n42024004006 +48260 A0:n42024004011 AA2:n42024004014 +48264 A0:n42024004016 +48270 A0:n42023055004 A1:n42024005008 +48276 A0:n42024004011 +48280 A0:n42023055004 A1:n42024005018 +48282 A0:n00000000000 +48290 A1:n42020034005 +A1:n42023055004 +48293 A0:n42020034005 A2:n42024006009 +48300 A0:n42020034005 +48302 A0:n42024007008;n42024007014;n42024007019 +48307 A1:n42024007003 +48313 A1:n42024007003 +48318 A0:n42024007003 +48320 A1:n42023055004 A1:n42024008004 +48325 A0:n42023055004 +48329 A0:n42023055004 A1:n42024009007 A2:n42024009010;n42024009014 +48354 A0:n42024010004;n42024010007;n42024010009;n42024010014 A1:n42024010021 +48360 A0:n42024011008 +48369 A0:n42024010020 A1:n42024011012 +48374 A0:n42024012003 +A0:n42024012003 +48380 A0:n42024012003 +A0:n42024012003 A1:n42024012014 +48386 A0:n42024012003 +48389 A0:n42024012003 A1:n42024012021 +48391 A0:n00000000000 +48402 A0:n42024013003 +48405 A0:n42024013013 +48415 A0:n42024014002 +48421 A0:n00000000000 +48424 A0:n00000000000 +48427 A0:n42024015006 +48430 A0:n42024013003 +48434 A0:n42024015011 +A0:n42024015011 +48441 A1:n42024016003 +48444 A0:n42024016003 A1:n42024016009 +48447 A0:n42024015011 +48455 A0:n42024013003 A1:n42024017009 +48458 A0:n42024013003 +48460 A1:n42024013003 +48463 A1:n42024018003 +48467 A0:n42024018003 +48472 A0:n42024018009 A1:n42024018012 +48476 A0:n42024015011 A1:n42024018017 +48478 A0:n00000000000 +48486 A0:n42024015011 A2:n42024019003 +48491 A0:n42024019005 A2:n42024019008 A1:n42024019009;n42024020003;n42024020015 +48516 A1:n42024020004 A0:n42024020006;n42024020009 +48528 A0:n42024020006;n42024020009 A1:n42024020016 +48532 A0:n42024021001 +48537 A0:n00000000000 A1:n42024021009 +A0:n42024021008 A1:n42024021011 +48550 A0:n42024019011 A1:n42024021020 +48554 A0:n42024021024 +48561 A0:n42024022003 A1:n42024022008 +48563 A0:n42024022003 +48570 A0:n42024022003 A1:n42024023005 +48574 A0:n42024022003 +A0:n42024022003 A1:n42024023012 +48579 A0:n42024022003 A1:n42024023010 +48581 A0:n42024023013 A1:n42024023016 +48583 A0:n42024023015 +48585 A0:n42024024003 +48594 A0:n42024024003 +48600 A0:n42024024016 +48604 A0:n42024024003 A1:n42024024018 +48607 A0:n42024025002 +48617 A0:n42024013003 +48621 A0:n42024025019 +48625 A0:n42024026004;n42024026008 +48627 A1:n42024026002 A0:n42024026006 +48631 A0:n42024026006 +48637 A0:n42024015011 +48645 A0:n42024015011 A2:n42024027011 A1:n42024027016 +48655 A0:n42024013003 +48660 A0:n42024013003 +48663 A0:n42024028009 A1:n42024028012 +48665 A0:n42024015011 +48667 A0:n42024013003 A1:n42024029003 +48669 A0:n42024013003 +A0:n42024015011 +48676 A0:n00000000000 +48678 A0:n42024029016 +48683 A0:n42024015011 +48685 A0:n42024015011 +48689 A0:n00000000000 +48692 A1:n42024030006 +48696 A0:n42024015011 A1:n42024030011 +48699 A0:n42024015011 +48701 A0:n42024015011 A1:n42024030011 +A0:n42024015011 A1:n42024030011 A2:n42024030016 +48708 A1:n42024031005 +48710 A0:n42024013003 A1:n42024031008 +48719 A0:n42024013003 +48726 A1:n42024032007 +48731 A0:n42024015011 A2:n42024032015 +48737 A0:n42024015011 A2:n42024032021 A1:n42024032023 +48742 A0:n42024013003 +48746 A0:n42024013003 +48750 A0:n42024013003 A1:n42024033011 +A1:n42024033013;n42024033015 +48758 A0:n42024033013;n42024033015 +48761 A1:n42024034006 +48765 A1:n42024034006 A2:n42024034009 +48769 A0:n42024035002 A1:n42024035004;n42024035010 +48776 A1:n42024015011 +48786 A1:n42024036001 A0:n42024036003 +48788 A0:n42024036005 +48793 A0:n42024015011 A2:n42024036012 +48798 A1:n42024033013;n42024033015;n42024013003 +48802 A0:n42024033013;n42024033015;n42024013003 A1:n42024037008 +48804 A0:n42024033013;n42024033015;n42024013003 A1:n42024037007 +48806 A0:n42024015011 A2:n42024038003 +48809 A1:n42024033013;n42024033015;n42024013003 +48815 A0:n42024038010 +48820 A0:n42024033013;n42024033015;n42024013003 A1:n42024039003;n42024039007 +48832 A0:n42024033013;n42024033015;n42024013003 A1:n42024039014 +48835 A0:n42024033013;n42024033015;n42024013003 +48842 A0:n42024039018 A1:n42024039019;n42024039021 +48845 A0:n42024039025 +A0:n42024033013;n42024033015;n42024013003 A1:n42024039027 +48849 A0:n42024015011 A1:n42024040002 +A0:n42024015011 A2:n42024040005 A1:n42024040007;n42024040010 +48859 A0:n42024041004 +48865 A0:n42024033013;n42024033015;n42024013003 +A0:n42024015011 A2:n42024041011 +48868 A0:n42024033013;n42024033015;n42024013003 A1:n42024041014 +48874 A0:n42024042001 A2:n42024042004 A1:n42024042007 +48880 A0:n42024015011 +48883 A0:n42024015011 +48885 A0:n42024015011 +48893 A0:n42024015011 A1:n42024044009 +48901 A0:n42024044019 +A1:n42024044022 +48905 A1:n00000000000 +48918 A0:n42024015011 A1:n42024045005 +48923 A0:n42024033013;n42024033015;n42024013003 A1:n42024045009 +48931 A1:n42024046007;n42024046011;n42024047002 +A0:n42024046009 +48936 A0:n42024046009 +48943 A1:n42024047007 +48956 A0:n42024033013;n42024033015;n42024013003 +48963 A0:n42024033013;n42024033015;n42024013003 +48965 A0:n42024049003 A1:n42024049006 +48975 A0:n42024049012 +48981 A0:n42024033013;n42024033015;n42024013003 A1:n42024049023 +48986 A0:n42024015011 A1:n42024050003 +48992 A0:n42024015011 A1:n42024050010 +48996 A0:n42024015011 A1:n42024050013 +48999 A0:n00000000000 +49002 A0:n42024051006 A1:n42024051007 +49005 A0:n42024015011 +49009 A1:n42024015011 +49015 A0:n42024033013;n42024033015;n42024013003 A1:n42024052004 +49017 A0:n42024052002 +49025 A0:n42024033013;n42024033015;n42024013003 A1:n42024053010 +49060 A0:n43001003001 +49064 A0:n43001003010 +49068 A0:n43001003011 +49087 A0:n43001005003 +49093 A0:n43001005010 A1:n43001005011 +A0:n43001006002 +49096 A1:n43001006002 +49103 A0:n43001007001 +49107 A0:n43001006002 +49113 A0:n43001007011 +49123 A0:n43001006002 +49132 A0:n43001009006 A1:n43001009009 +49136 A0:n43001009003 +49149 A0:n43001010007 +49155 A0:n43001010013 A1:n43001010014 +49159 A0:n43001009003 +49165 A0:n43001011007 A1:n43001011008 +49168 A0:n43001012001 A1:n43001012004 +49170 A0:n43001009003 A1:n43001012007 A2:n43001012006 +49174 A0:n43001012003 +49177 A0:n43001012003 +49197 A1:n43001013001 +49204 A0:n43001014003 +49208 A0:n00000000000 A1:n43001014013 +49222 A0:n43001015001 +49226 A0:n43001015001 +A0:n43001015001 +49231 A0:n43001015001 +49235 A0:n00000000000 +49250 A0:n43001016006 A1:n43001016010 +49260 A1:n43001017003 +49269 A0:n43001017008;n43001017011 +49272 A1:n43001018001 A0:n43001018002 +49284 A0:n43001018014 +49293 A0:n43001019013 A1:n43001019016;n43001019018 +49304 A0:n43001019016;n43001019018 A1:n43001019021 +49310 A0:n43001019007 +49313 A0:n43001019007 +49315 A0:n43001019007 +49323 A0:n43001019016;n43001019018 A1:n43001021003 +49331 A0:n43001019007 +49339 A1:n43001019007 +49342 A0:n43001019016;n43001019018 A2:n43001022003 +49348 A0:n43001019016;n43001019018 A1:n43001022007 A2:n43001022010 +49350 A0:n43001019013 A1:n43001022011 +49353 A0:n43001019007 A1:n43001022012 +49356 A0:n43001019007 +49359 A0:n00000000000 +49363 A0:n00000000000 A1:n43001023010 +49368 A0:n43001023014 +49373 A1:n43001019016;n43001019018 +49379 A0:n43001024002 A1:n43001025003 +49382 A0:n43001024002 A2:n43001025006 +49386 A0:n43001019007 +49398 A2:n43001026002 A0:n43001026004 +49402 A0:n43001026004 +49404 A0:n43001026006 +49409 A0:n43001026016 +49413 A1:n43001026013 A0:n43001026014 +49417 A0:n43001026016 +49424 A0:n43001026004 A1:n43001027014 +49433 A0:n43001028001 +49439 A0:n43001028011 +49444 A0:n43001028011 A1:n43001029006 +49447 A0:n43001029005 +49451 A0:n43001028011 +49458 A0:n43001029013 A1:n43001029019 +49468 A0:n43001030005 +49471 A0:n43001030010 +49483 A0:n43001031001 A1:n43001031004 +49487 A1:n43001029005 A2:n43001031009 +49492 A0:n43001031013 +49496 A0:n43001028011 +49498 A0:n43001032003 +49500 A0:n43001032003 +49502 A0:n43001032003 A1:n43001032009 +49505 A0:n43001032008 +49511 A0:n43001032008 +49516 A0:n43001033001 A1:n43001033004 +49520 A0:n43001029015 A1:n43001033008 +49522 A0:n43001032003 +49527 A0:n43001033012 A2:n43001033013 +49531 A0:n43001032003 A1:n43001033021;n43001033023 +49534 A0:n43001033020 +49536 A0:n43001033020 +49542 A0:n00000000000 +49547 A0:n43001034001 +49549 A0:n43001032003 +49560 A0:n43001035006;n43001035012 +49570 A0:n43001035006 A1:n43001036005 +49573 A0:n43001036004 +A0:n43001035006 +A0:n43001035012 +49581 A0:n43001037005 A1:n43001037007 +49586 A0:n43001037006 +49588 A0:n43001037005 A1:n43001037011 +49594 A1:n43001038004 +49596 A0:n43001038004 A1:n43001038008 +49598 A0:n43001038007 +A0:n43001038004 A2:n43001038010 +49602 A0:n43001037005 A1:n43001038011 +49605 A0:n43001038013 A2:n43001038016 +49610 A1:n43001038017 +49613 A0:n43001038017 +A0:n43001038004 A2:n43001039002 +49616 A0:n43001037005 +49618 A0:n43001037005 +49620 A0:n43001037005 +49622 A0:n43001037005 A1:n43001039011 +49624 A0:n43001038004 +49628 A0:n43001037005 +49647 A0:n43001040010 +49651 A0:n43001040010 A1:n43001040017 +49653 A0:n43001041002 A1:n43001041005 +49662 A0:n43001040002 A2:n43001041011 +49664 A0:n43001040010 A1:n43001041014 +49671 A0:n43001040002 A1:n43001042002 +49676 A0:n43001042009 A1:n43001042007 +49680 A0:n43001042009 +49695 A0:n43001043015 A1:n43001043004 +A0:n43001043015 +49701 A0:n43001043015 A1:n43001043010 +49704 A2:n43001043013 A0:n43001043015 +49708 A0:n43001043010 A1:n43001043017 +49722 A0:n43001045002 A1:n43001045004 +49727 A0:n43001045002 A2:n43001045007 +49730 A1:n43001045008 A0:n43001045010 +49738 A0:n43001044010;n43001044012;n43001045002 A1:n43001045009;n43001045016 +49747 A2:n43001046003 A0:n43001046004 +49753 A1:n43001046006 A0:n43001046009 +49756 A2:n43001046012 A0:n43001046014 +49760 A0:n43001046004 +49762 A0:n43001046004 +A0:n43001047002 A1:n43001047005 +49767 A0:n43001047004 +49771 A0:n43001047002 +49782 A2:n43001048002 A0:n43001048003 +49787 A0:n43001047002 A1:n43001048005 +A0:n43001048008 +49791 A0:n43001048008 A2:n43001048011 +49797 A1:n43001048014 A0:n43001048015 +49803 A0:n43001048008 A1:n43001048022 +A2:n43001049002 A0:n43001049003 +49819 A0:n43001050002 +49822 A0:n43001050002 A2:n43001050005 +49825 A0:n43001050002 A2:n43001050008 +49828 A0:n43001050002 A1:n43001050011 +49833 A0:n43001049003 +49836 A0:n43001049003 A1:n43001050016 +49838 A0:n43001050002 A2:n43001051003 +49842 A0:n43001050002 A2:n43001051007 +49844 A0:n43001044010;n43001044012;n43001046014;n43001049003 A1:n43001051011;n43001051017;n43001051019 +49847 A0:n43001051010 +49853 A0:n43001051014 +49855 A0:n43001051014 +49867 A0:n43002001006 +49880 A1:n43002002005;n43002002008 +49892 A0:n43002003003 +49894 A0:n43002003006 +49903 A0:n00000000000 A1:n43002003011 +49905 A2:n43002004003 A0:n43002004005 +49915 A0:n43002004014 +49919 A0:n43002005003 A2:n43002005006 +49928 A0:n43002004005 A1:n43002005007 A2:n43002005011 +49930 A0:n43002005006 A1:n43002005008 +49933 A0:n43002006005 +49943 A0:n43002006005 +49949 A2:n43002007002 A0:n43002007004 +49953 A0:n43002005006 A1:n43002007007 +49958 A0:n43002005006 A1:n43002007011 +49963 A0:n43002007004 A2:n43002008003 +49965 A0:n43002005006 A1:n00000000000 +49968 A0:n43002005006 A1:n00000000000 A2:n43002008009 +49973 A0:n43002008010 A1:n00000000000 +49976 A0:n43002009005 A1:n43002009007 +49985 A0:n43002009005 +49989 A0:n43002009017 +49993 A0:n43002009017 A1:n43002009022 +49996 A1:n43002009025 A0:n43002009027 +50002 A0:n43002009027 A2:n43002010003 +50010 A0:n43002010005 A1:n43002010009 +50013 A1:n00000000000 +50017 A0:n43002010016 A1:n43002010020 +50027 A1:n43002011003 A0:n43002011007 +50035 A0:n43002011007 A1:n43002011015 +50040 A0:n43002011022 +50048 A0:n43002012006;n43002012009;n43002012013;n43002012016 +50065 A0:n43002011007;n43002012009;n43002012013;n43002012016 +50077 A0:n43002013013 +50083 A0:n43002013013 A1:n43002014016 +50088 A0:n00000000000 A1:n43002014008;n43002014010;n43002014012 +50097 A0:n43002014007;n43002014015 +50099 A0:n43002013013 A1:n43002015003 +50104 A0:n43002013013 A1:n43002015006 +50119 A0:n43002013013 A1:n43002015022 +50123 A0:n43002013013 A1:n43002015025 +50128 A0:n00000000000 A1:n43002016004 +A0:n43002013013 A2:n43002016005 +A0:n43002016005 A1:n43002016008 +50134 A0:n43002016005 A1:n43002016013 +50142 A1:n43002017003 +50147 A1:n43002017013 +50154 A0:n43002017009 A1:n43002017014 +50157 A0:n43002018004 +50161 A0:n43002018004 A2:n43002018007 +50165 A0:n43002013013 A1:n43002018009 A2:n43002018011 +50169 A0:n43002013013 A1:n43002018013 +A0:n43002019002 +50173 A0:n43002019002 A2:n43002019005 +50175 A0:n43002018004 A1:n43002019008 +50183 A0:n43002019002 A1:n43002019015 +50186 A0:n43002020004 +50193 A1:n43002020011 +50202 A0:n43002020014 A1:n43002020019 +50206 A0:n43002021001 +50215 A1:n43002019002 +50218 A1:n43002022008 +50224 A0:n43002019002 A1:n43002022011 +50226 A0:n43002022008 A1:n43002022016;n43002022019 +50233 A1:n43002022020 A0:n43002022023 +50249 A0:n43002023013 +50254 A0:n43002023013 A1:n43002023022 +50259 A0:n43002022023 A1:n43002023023 +50264 A0:n43002024003 A1:n43002024006 A2:n43002024007 +50270 A0:n43002024010 A1:n43002024012 +50276 A0:n43002024003 A1:n43002025004 +50279 A0:n43002025007 +50285 A0:n43002025012 A1:n43002025019 +50292 A0:n43003001003 +50304 A0:n43003002001 +50309 A0:n43003001003 A2:n43003002008 +50312 A0:n43003001012;n43003001003 +50316 A0:n43003002009 +50320 A0:n43003002016 A1:n43003002022 +50326 A1:n43003002023 A0:n43003002024 +A0:n43003002016 A1:n43003002021 +50335 A0:n43003003002 +50338 A0:n43003003002 A2:n43003003005 +50342 A0:n43003003002 A2:n43003003009 +50347 A1:n43003003012 +50350 A0:n43003003012 A1:n43003003017 +A0:n43003003012 A1:n43003003019 +50356 A0:n43003004005 +50362 A0:n43003004008 A1:n43003004009 +50364 A1:n43003004008 +50368 A0:n43003004008 A1:n43003004021;n43003004023 +50376 A0:n43003004008 +50378 A1:n43003004008 +A0:n43003005002 +50383 A0:n43003005002 A2:n43003005006 +50388 A1:n43003005009 +50394 A0:n43003005009 A1:n43003005017 +A0:n43003005009 +50402 A1:n00000000000 +50410 A1:n00000000000 +50417 A0:n43003004005 +50419 A0:n43003005002 A2:n43003007005 +50421 A0:n43003007008 +50423 A1:n43003007007 +50428 A0:n43003008002 +A0:n43003008002 +50434 A0:n43003004005 A1:n43003008008 +50437 A0:n43003004005 +50439 A0:n43003008002 +50442 A0:n43003008002 +50447 A1:n00000000000 +50451 A0:n43003009002 +50454 A0:n43003009002 A2:n43003009005 +50457 A0:n43003009009 +50459 A0:n43003009008 +A0:n43003010002 +50463 A0:n43003010002 A2:n43003010005 +50474 A0:n43003009002 A1:n43003010013 +50477 A0:n43003010002 A2:n43003011004 +50481 A0:n43003010002;n43002012016 A1:n43003011006 +A0:n43003010002;n43002012016 A1:n43003011007 +50485 A0:n43003010002;n43002012016 A1:n43003011010 +A0:n43003010002;n43002012016 A1:n43003011011 +50492 A0:n43003010011;n43003009002 A1:n43003011015 +50496 A0:n43003010002 A1:n43003012003 A2:n43003012005 +50500 A0:n43003010011;n43003009002 +50503 A0:n43003010002 A2:n43003012012 A1:n43003012014 +50507 A0:n43003010011;n43003009002 +50510 A0:n43003013002 +50520 A0:n43003013015 +50528 A0:n43003014003 A1:n43003014006 +50535 A0:n43003014011 +A1:n43003014014 +50544 A0:n00000000000 +50547 A0:n43003015004 A1:n43003015008 +50552 A0:n43003016005 A1:n43003016007 +50562 A0:n43003016005 A1:n43003016010 +50566 A0:n00000000000 +50570 A0:n43003016017 +50572 A0:n43003016017 A1:n43003016024 +50577 A0:n43003017005 A1:n43003017007 +50586 A0:n43003017007 A1:n43003017014 +50591 A1:n43003017019 +50597 A0:n00000000000 +50601 A1:n43003018002 +50604 A0:n00000000000 +50606 A1:n43003018010 +50609 A0:n43003018010 +50626 A0:n43003019008 +50631 A0:n43003019016 A1:n43003019019 +50650 A0:n00000000000 A1:n43003020004 +A0:n43003020005 A1:n43003020008 +50656 A0:n43003020005 +50662 A1:n43003020019 +50668 A0:n00000000000 A1:n43003021005 +50671 A0:n43003021003 +50676 A1:n43003021014 +50684 A1:n43003021014 +50687 A0:n43003022005;n43003022008 +50700 A0:n43003022005 +50704 A0:n43003022005 +50707 A0:n43003023004 +50721 A0:n00000000000 +50723 A1:n00000000000 +50727 A1:n43003024008 +50733 A0:n43003025003 +50744 A0:n43003025006 +50749 A0:n43003025006 A2:n43003026008 +50761 A2:n43003026017 A0:n43003026018 +A0:n43003026009 +50764 A0:n43003026021 +50767 A0:n43003026024 +50770 A0:n43003027002 +50773 A0:n43003027002 +50775 A0:n43003027007 A1:n43003027008 +50777 A0:n43003027007 A1:n43003027009 +50782 A1:n00000000000 A2:n43003027014 +50790 A0:n43003028002 A2:n43003028003 +50792 A0:n43003027002 +50800 A1:n43003027002 +50805 A0:n00000000000 A1:n43003029004 +50816 A0:n43003029009 +50818 A0:n43003029009 A1:n43003029016 +50821 A0:n43003029009 +50833 A1:n43003029027 +A0:n43003030003;n43003030006 +50836 A0:n43003030001 +50839 A0:n43003030004 +50842 A0:n00000000000 +50847 A0:n00000000000 +50859 A0:n43003031011 +50864 A0:n00000000000 +50869 A0:n43003031025 A1:n43003032001 +50871 A0:n43003031025 A1:n43003032001 +50873 A0:n43003031025 A1:n43003032005 +50879 A1:n43003032009 A0:n43003032011 +50881 A0:n00000000000 A1:n43003033005 +50885 A0:n43003033002 +50893 A1:n43003034001 A0:n43003034005 +50900 A0:n43003034003 A1:n43003034007 +50905 A0:n43003034009 A1:n43003034017 +50910 A0:n43003035002 A1:n43003035005 +50915 A0:n43003035002 A1:n43003035007 +50921 A0:n00000000000 +50925 A0:n43003036002 A1:n43003036007 +50930 A0:n00000000000 A1:n43003036013 +50934 A0:n43003036011 A1:n43003036016 +50941 A0:n43003036019 +50946 A0:n43004001005 +50950 A0:n43004001009 +50957 A0:n43004001011 A1:n43004001013 +50959 A0:n43004001011 A1:n43004001013 +50966 A0:n43004002002 +50971 A0:n43004002002 A1:n43004003003 +50975 A0:n43004002002 +50981 A0:n43004004004 +50983 A0:n43004004003 +50988 A0:n43004002002 +50999 A1:n43004005012 A0:n43004005014 A2:n43004005015 +51014 A0:n43004006009 +51018 A0:n43004006009 +51027 A0:n43004007002 +51032 A0:n43004007002 A1:n43004007007 +51034 A2:n43004007009 A0:n43004007011 +51038 A0:n43004007002 A2:n43004007013 A1:n43004007014 +51040 A0:n43004007011 +51045 A0:n43004008003 +51051 A0:n43004008003 A1:n43004008010 +51053 A2:n43004009003 A0:n43004009005 +51068 A0:n43004007011 +A0:n43004009009 A1:n43004009014 +51072 A0:n43004009022 +51075 A0:n43004010002 +51078 A0:n43004010002 A2:n43004010005 +51081 A0:n43004009005 A1:n43004010009;n43004010013 +51090 A0:n43004010002 A2:n43004010017 +51092 A0:n43004009005 A2:n43004010019 A1:n43004010020 +51094 A0:n43004010002 +51097 A0:n43004010021 A1:n43004010024 +51101 A0:n43004010016 A2:n43004010028 A1:n43004010029 +51104 A0:n43004010029 +A2:n43004011002 A0:n43004009005 +51110 A0:n43004011003 A1:n43004011005 +51118 A0:n43004011003 A1:n43004011016 +51122 A0:n43004011016 +51132 A0:n43004012009 A2:n43004012011 A1:n43004012013 +51140 A0:n43004012015 +51149 A0:n43004013002 +51152 A0:n43004013002 A2:n43004013005 +51156 A0:n00000000000 +51161 A0:n43004013008 +51166 A0:n43004014001 +51172 A1:n43004014008 A0:n43004014009 A2:n43004014011 +51176 A0:n43004014004 +51184 A0:n43004013002 A1:n43004014021 A2:n43004014023 +51191 A0:n43004014028 +51195 A0:n43004015005 +51201 A0:n43004015006 A2:n43004015008 A1:n43004015011 +51208 A0:n43004015005 +51210 A0:n43004015005 +51212 A0:n43004015005 +A0:n43004013002 A2:n43004016002 +51215 A0:n43004015005 +A0:n43004015005 A1:n43004016006 +51221 A0:n43004015005 +51223 A0:n43004017003 +51227 A0:n43004017003 +51229 A0:n43004017003 A1:n43004017008 +51231 A2:n43004017010 A0:n43004017012 +51236 A0:n43004017003 +51240 A0:n43004017003 A1:n43004017016 +51244 A0:n43004017003 A1:n43004018003 +51248 A0:n43004017003 A1:n43004018007 +51255 A0:n43004017003 A1:n43004018013 +A2:n43004019002 A0:n43004019004 +51261 A0:n43004019004 +51273 A0:n43004020002 +51276 A0:n43004020010 +51284 A0:n00000000000 +A0:n43004020019 +A2:n43004021002 A0:n43004021004 +51290 A0:n43004021007 A1:n43004021006 +51294 A0:n43004021010 +51305 A0:n43004021007;n43004009023 A1:n43004021022 +51309 A0:n43004022001 A1:n43004022005 +51312 A0:n43004009023;n43004021007 A1:n43004022003 +51314 A0:n43004022006 A1:n43004022009 +51316 A0:n43004021004;n43004009022 A1:n43004022008 +51325 A0:n43004023003 +51334 A0:n43004023010 A1:n43004023013 +51346 A0:n43004023021 A1:n43004023022 +51348 A0:n00000000000 +51355 A0:n00000000000 A1:n43004024003 +51360 A0:n43004024006 A1:n43004024003 +A0:n43004024012 +A2:n43004025002 A0:n43004025004 +51366 A0:n43004025004 +51372 A0:n43004025007 +51374 A0:n43004025014 +51376 A0:n43004025007 A2:n43004025016 A1:n43004025017 +51379 A2:n43004026002 A0:n43004026004 +51385 A0:n43004026004 A2:n43004026009 +51391 A0:n43004027006 +51396 A0:n43004027006 +51400 A0:n43004026004 +51403 A0:n43004027014 +51405 A0:n43004027012 A1:n43004027017 +51408 A0:n43004026004 +51412 A1:n43004028004 A0:n43004028007 +51419 A0:n43004028007 +51424 A0:n43004028007 A2:n43004028016 +51427 A0:n43004028016 +A0:n43004028016 A1:n43004029003 +51431 A0:n43004029004 A2:n43004029006 A1:n43004029009 +51435 A0:n43004028007 A1:n43004029008 +51441 A0:n43004028016 +51446 A0:n43004028016 +51452 A1:n43004031005 A0:n43004031007 +51456 A0:n43004031007 +51458 A0:n43004031009 +51461 A0:n43004032001 A2:n43004032004 +51465 A0:n43004032005 A1:n43004032006 +A0:n43004026004 +51470 A1:n43004032009 A0:n43004032010 +51472 A0:n43004033004 +51479 A0:n43004033008 A1:n00000000000 A2:n43004033010 +51481 A0:n43004026004 A1:n00000000000 +A2:n43004034002 A0:n43004034004 +51490 A0:n43004034004 A1:n43004034011 +51494 A0:n43004024003 A1:n43004034014 +51497 A0:n43004034004 A1:n43004034019 +51503 A0:n43004035002 +51511 A0:n43004035010 +A0:n43004033004 +A0:n43004034004 A2:n43004035014 +51515 A0:n43004033004 A1:n43004035017 +51520 A0:n43004033004 A1:n43004035022 +51530 A0:n00000000000 +51532 A0:n43004036002 A1:n43004036003 +51534 A0:n43004036002 A1:n43004036007 +51541 A0:n43004036013;n43004036018 +51543 A0:n00000000000 +51546 A0:n00000000000 +51558 A0:n00000000000 +51562 A0:n00000000000 +51564 A0:n43004038001 A1:n43004038003 +51566 A0:n43004033004 A1:n43004038008 +51570 A1:n43004038005 A0:n43004038007 +51572 A0:n43004038009 +51579 A0:n43004038012 +51588 A0:n43004039006 +51596 A0:n43004039016 +51598 A0:n43004034004 A2:n43004039020 A1:n43004039023 +51602 A0:n43004039016 A1:n43004039022 +51605 A0:n43004040007 +51610 A0:n43004040007 A1:n43004040010 +51612 A0:n43004034004 A0:n43004040009 +51616 A0:n43004034004 +51623 A0:n43004041003 +51631 A0:n43004041003 A2:n43004042003 +51638 A0:n43004041003 +51641 A0:n43004042012 +51643 A0:n43004041003 +51657 A0:n43004034004 +51665 A0:n43004044003 +51674 A0:n43004044006 A1:n43004044011 +51677 A0:n43004044003 +51681 A1:n43004045008 A0:n43004045010 +51685 A0:n43004045010 A1:n43004045014 +51688 A0:n43004044003 A1:n43004045013 +51697 A0:n43004045021 +51702 A0:n43004044003 +51710 A0:n43004044003 A1:n43004046012 +51715 A0:n43004046017 +51721 A0:n43004046020 +51725 A0:n43004046017 +51728 A0:n43004047004 +51735 A0:n43004047001 +51739 A0:n43004046017 +51741 A0:n43004047004 +51743 A0:n43004047004 A1:n43004047023 +51748 A0:n43004047023 A1:n43004047026 +A0:n43004047023 +51751 A0:n43004048004 +51761 A0:n43004046017;n43004045010 A1:n43004048009;n43004048011 +51764 A0:n43004046017;n43004045010 +A0:n43004049005 +51771 A0:n43004049006 +51773 A0:n43004049011 +51777 A2:n43004050002 A0:n43004050004 +51781 A0:n43004049005 +51785 A0:n43004050007 +A0:n43004050012 A1:n43004050014 +51792 A1:n43004050015 A2:n43004050017 A0:n43004050019 +51797 A0:n43004050012 +51801 A0:n43004051003 +51804 A0:n43004051006 A1:n43004051008 +51806 A0:n43004051006 +51811 A0:n43004051012 +51813 A0:n43004050012 A1:n43004052004 +51823 A0:n43004051006 A2:n43004052013 +51829 A1:n43004052019 A0:n43004052021 +51834 A0:n43004053004 +51843 A2:n43004053012 A0:n43004053014 +51850 A0:n43004053016 +51852 A0:n43004053021;n43004053024 +51864 A1:n43004054005 A0:n43004054008 +51867 A0:n43004054008 +51876 A0:n43005001004 +51881 A0:n43005001009 +51900 A0:n43005002009 A1:n43005002015 +51903 A0:n43005003004 +51906 A0:n00000000000 +51951 A0:n43005005004 +51959 A0:n43005006001 +A0:n43005006004 A1:n43005006005 +51962 A0:n43005006004 +51967 A0:n43005005004 +A0:n43005006004 A2:n43005006014 +51970 A0:n43005005004 A1:n43005006016 +51973 A2:n43005007002 A0:n43005007004 +51976 A0:n43005005004 +51980 A0:n43005007004 A1:n43005007006 +51983 A1:n43005007013 +51986 A0:n43005007006 A1:n43005007015 +51994 A0:n43005007023 +51999 A0:n43005007024 +A2:n43005008002 A0:n43005008004 +52004 A0:n43005007004 +A0:n43005007004 A1:n43005008008 +52010 A0:n43005007004 +52018 A0:n43005009006 A1:n43005009010 +52023 A0:n43005009006 +52025 A0:n00000000000 +52032 A0:n43005010004 A2:n43005010006 +52036 A1:n43005009006 +52038 A0:n00000000000 +52041 A0:n43005010013 +52043 A0:n43005010006 A1:n43005010015 +52048 A0:n43005011001 A2:n43005011004 +52051 A0:n43005008004 A1:n43005011007 +52056 A0:n43005011009 A2:n43005011010 +A0:n43005010006 A1:n43005011014 +52062 A0:n43005010006 +A0:n43005010004 A1:n43005012002 +52070 A0:n43005012006 A2:n43005012009 +52072 A0:n43005010006 +52074 A0:n43005010006 +52077 A1:n43005010006 +52079 A0:n43005013003 A1:n43005013006 +52085 A0:n43005013010 +52093 A1:n43005014004 A0:n43005014006 +52101 A0:n43005014006 A2:n43005014012 +52103 A0:n43005013003 +52107 A0:n43005013003 +52113 A0:n43005014022 AA2:n43005014021 +A0:n43005015003 +52118 A0:n43005015003 A2:n43005015007 +52125 A0:n43005014006 A1:n43005015013 +52131 A0:n43005016006 A1:n43005016008 +52138 A0:n43005016008 A1:n43005016010 +52143 A0:n43005017001 A2:n43005017004 +52150 A0:n43005017006 +52152 A0:n43005017011 +52157 A1:n43005018009 A0:n43005018008 +52159 A0:n43005018008 A1:n43005018006 +52165 A0:n43005016008 A1:n43005018015 +52172 A0:n43005016008 A1:n43005018022 +52177 A0:n43005016008 A1:n43005018024 +52181 A0:n43005019004 +52185 A0:n43005019004 A2:n43005019007 +52189 A0:n43005019004 A2:n43005019011 +52192 A0:n43005019015 A1:n43005019016 +52195 A0:n43005019015 A1:n43005019019 +52201 A0:n43005019015 A1:n43005019026 +52205 A1:n43005019022 A0:n43005019025 +52210 A1:n43005019027 A0:n43005019030 +52216 A1:n43005019032 A0:n43005019035 +52220 A0:n43005020003 A1:n43005020006 +52224 A0:n43005020003 A2:n43005020010 A1:n43005020013 +52229 A1:n43005020011 A0:n43005020012 +52234 A0:n43005020003 A1:n43005020019 A2:n43005020018 +52238 A0:n43005020021 +52243 A0:n43005021004 A1:n43005021007 +52247 A0:n43005021004 +52253 A0:n43005021013 A1:n43005021014 +A0:n43005021013 A1:n43005021015 +52259 A0:n43005022004 A1:n43005022006 +52265 A0:n43005022004 A1:n43005022009 A2:n43005022013 +52270 A0:n43005023002 A1:n43005023005 +52274 A0:n43005023002 A1:n43005023009 +52279 A0:n00000000000 A1:n43005023014 +52283 A0:n43005023012 A1:n43005023018 +52287 A0:n43005023018 A1:n43005023021 +52291 A0:n43005019004 A2:n43005024004 +52298 A0:n00000000000 A1:n43005024008 +52300 A0:n00000000000 A1:n43005024014 +52302 A0:n43005023018 A1:n43005024015 +52304 A0:n43005024010;n43005024012 A1:n43005024017 +52311 A0:n43005024010 +52313 A0:n43005024010 +52322 A0:n43005019004 A2:n43005025004 +52325 A0:n43005025007 +52333 A0:n43005025013 A1:n43005025016 +52342 A0:n00000000000 +A0:n43005025023 +52348 A0:n43005026004 A1:n43005026006 +52356 A0:n43005026004 A2:n43005026012 A1:n43005026015 +52358 A0:n43005026012 A1:n43005026014 +52363 A0:n43005026004 A1:n43005027002 A2:n43005027004 +52366 A0:n43005026012 A1:n43005027005 +52372 A0:n43005018008 A1:n43005028003 +52375 A0:n43005028006 +52384 A0:n43005028010 A1:n43005028016 +52389 A0:n43005028010 +52393 A0:n00000000000 A1:n43005029005 +52400 A0:n00000000000 A1:n43005029012 +52405 A0:n43005030003 A1:n43005030004 +52407 A0:n43005019004 A1:n43005030007 +52412 A0:n43005019004 +A0:n43005019004 +52423 A0:n43005019004 A1:n43005030022 +52432 A0:n43005026004 A1:n43005030030 +52436 A0:n43005031002 +52448 A0:n00000000000 +52452 A0:n43005019004 +52459 A0:n43005032004 A1:n43005032014 +52463 A0:n43005033001 +52467 A0:n43005033004 A2:n43005033008 +52477 A0:n43005034001 A1:n43005034007 +52480 A0:n43005019004 A1:n43005034010 +52483 A1:n43005034013 +52489 A1:n43005035004 +52491 A0:n43005035004 +52494 A0:n43005035009 A1:n43005035012 +A1:n43005018008 +52504 A0:n43005036001 A1:n43005036005 +52514 A1:n43005036012 A2:n43005036014 A0:n43005036016 +52519 A0:n43005019004 A1:n43005036019 +52525 A0:n43005019004 A1:n43005036023 +A0:n43005036011 +52533 A0:n43005036030 A1:n43005036031 +52536 A0:n43005037005 A1:n43005037004 +52540 A0:n43005037006 +52547 A0:n43005018008 A1:n43005037011 +52551 A0:n43005018008 A1:n43005037016 +52554 A0:n43005018008 A1:n43005038009 +52560 A0:n43005038003 +52563 A1:n43005038011 A0:n43005038013 +52568 A1:n43005038014 A0:n43005038015 +A0:n43005018008 A1:n43005039003 +52574 A0:n43005039005 A1:n43005039011 +52579 A0:n43005018008 A1:n43005039009 +52584 A0:n00000000000 +52589 A0:n43005018008 A1:n43005040004 +A0:n43005018008 +52595 A0:n43005018008 A1:n43005040008 +52600 A0:n43005019004 A1:n43005041001 +52602 A0:n43005019004 A1:n43005042003 +52610 A0:n43005018008 A1:n43005042006 +52614 A0:n43005043001 +52623 A0:n43005018008 A1:n43005043012 +52627 A0:n43005043014 +52634 A0:n43005018008 A1:n43005043021 +52636 A0:n43005044003 A1:n43005044004 +52638 A0:n43005018008 +52642 A0:n43005018008 A1:n43005044005 +52652 A0:n43005018008 A1:n43005044011 +52654 A0:n43005018008 +52657 A0:n43005045004 A1:n43005045006 +52664 A0:n00000000000 A1:n43005045013 +52670 A0:n43005045017 +52673 A0:n43005018008 A1:n43005046004 +52676 A0:n43005018008 A1:n43005046007 +52682 A0:n43005046011 +52689 A0:n43005018008 A1:n43005047005 +52694 A0:n43005018008 A1:n43005047011 +52697 A0:n43006001005 +52708 A1:n43006002003 A0:n43006002004 +52713 A0:n43006002004 A1:n43006002009 +52717 A0:n43006001005 A1:n43006002010 +52720 A0:n00000000000 +52722 A0:n43006003006 +52729 A0:n43006003006 +52746 A0:n43006005006 A1:n43006005004 +52750 A0:n43006005006 +52754 A0:n43006005011 +52757 A0:n43006005006 +52761 A0:n43006005006;n43006003012 A1:n43006005020 +52764 A0:n43006005023 +52768 A0:n43006005006 A1:n43006006001 +A0:n43006005006 A1:n43006006005 +52773 A0:n43006006006 A1:n43006006010 +52775 A0:n43006005006 A1:n43006006009 +A0:n43006005006 A1:n43006006011 +A2:n43006007002 A0:n43006007004 +52785 A0:n43006007007 A1:n43006007010 +52791 A0:n43006007012 A1:n43006007014 +A2:n43006008002 A0:n43006008003 +52808 A0:n43006009004 A1:n43006009007;n43006009011 +52821 A0:n43006010003 +52824 A0:n43006008006 A1:n43006010007 +52827 A0:n43006010006 +52836 A0:n43006010018 +52844 A1:n43006011004 A0:n43006011006 +52850 A0:n43006011006 +A0:n43006011006 A1:n43006011004 A2:n43006011011 +52853 A0:n43006010018 +52860 A0:n43006011011 A1:n43006011017 +52863 A1:n43006011011 +A0:n43006011006 A2:n43006012006 +52868 A0:n43006012006 A1:n43006012011 +52870 A0:n43006012011 +52875 A0:n43006012014 +52877 A0:n43006012006 +52879 A0:n43006012006 A1:n43006013006 +52890 A0:n43006013014 +52892 A0:n43006011011 +52896 A0:n43006014003 A1:n43006014007 +52898 A0:n43006011006 A1:n43006014005 +52900 A0:n43006014003 +52908 A0:n43006014014 +52913 A0:n43006015001 +52915 A0:n43006014003 A1:n43006015006;n43006015008 +A0:n43006014003 +52918 A0:n43006014003 A1:n43006015009 +52921 A0:n43006014003 A1:n43006015012 +52923 A0:n43006015001 +52934 A0:n43006016003 +A0:n43006016007 +52943 A0:n43006016007 +52946 A0:n43006016007 +52955 A0:n43006017012 +52958 A0:n43006017021 +52968 A0:n43006018004 +A1:n43006018003 +52971 A0:n43006016007 A1:n43006019004 +52978 A0:n43006016007 A1:n43006019012;n43006019020 +52981 A0:n43006019011 +52989 A0:n43006019011 +52991 A1:n43006016007 +52994 A0:n43006020001 A2:n43006020004 +52999 A0:n43006016007 +53001 A0:n43006016007 A1:n43006021003 +A0:n43006016007 A1:n43006021004 +53017 A0:n43006016007 +53023 A0:n43006022004 +53027 A0:n43006022004 +53040 A0:n43006022028 +53054 A0:n43006022035 +53057 A0:n43006023003 +53064 A0:n43006022004 A1:n43006023012 +53067 A0:n43006023015 +53072 A0:n43006024005 +53084 A0:n43006024016 +53090 A0:n43006024005 +53093 A0:n43006024005 A1:n43006024026 +53097 A0:n43006024005 A1:n43006025003 +53102 A0:n43006024005 A2:n43006025008 +53107 A0:n43006025009 +A2:n43006026002 A0:n43006026004 +53113 A0:n43006026004 +53116 A0:n43006026004 A2:n43006026010 +53118 A0:n43006024005 A1:n43006026012 +53122 A0:n43006024005 A1:n43006026016 +53126 A0:n43006024005 +53131 A1:n43006024005 +A0:n43006024005 A1:n43006027002;n43006027004;n43006027009 +53137 A0:n43006027004 +53142 A0:n43006027009 +53152 A1:n43006027015 A0:n43006027017 A2:n43006027020 +53159 A1:n43006027022 A0:n43006027025 +53161 A0:n43006024005 +53165 A0:n43006024005 A1:n43006028005 +53167 A0:n43006024005 A1:n43006028010 +53172 A0:n43006029002 +53175 A0:n43006029002 A2:n43006029005 +53184 A0:n43006024005 +53187 A1:n43006029015 A0:n43006029017 +53190 A0:n43006024005 A2:n43006030003 +53195 A1:n43006030008 A0:n43006030007 +53198 A0:n43006024005 +53200 A0:n43006024005 A1:n43006030013 +53203 A0:n43006029002 A1:n43006030014 +53209 A0:n43006031002 A1:n43006031005 +53215 A1:n43006031017 +53220 A0:n43006029012 A1:n43006031013 A2:n43006031018 +53222 A0:n43006031018 +53224 A2:n43006032003 A0:n43006032005 +53230 A0:n43006032005 A2:n43006032009 +53234 A0:n43006032011 A2:n43006032013 A1:n43006032015 +53245 A0:n43006032021 A2:n43006032024 A1:n43006032026 +53261 A0:n00000000000 +53267 A0:n00000000000 A1:n43006033013 A2:n43006033016 +53271 A0:n43006024005 +53276 A0:n43006034005 A2:n43006034008 A1:n43006034010 +53281 A2:n43006035002 A0:n43006035004 +53292 A0:n00000000000 +53297 A0:n43006035012 +53300 A0:n00000000000 +53305 A0:n43006035020 +53308 A0:n43006035004 A2:n43006036003 +53312 A0:n43006024005 A1:n43006036007 +53316 A0:n43006024005 +53319 A1:n43006037002 A2:n43006037004 A0:n43006037006 +53325 A0:n43006037003 +53328 A0:n00000000000 +53333 A0:n43006035004 A1:n43006037012 +53336 A0:n43006035004 +53342 A0:n43006035004 A1:n43006038010 +53351 A0:n43006037006 A1:n43006038018 +53359 A0:n43006037006 A1:n43006039008 +53364 A0:n43006039007 A1:n43006039011 A2:n43006039013 +53367 A0:n43006035004 +53371 A0:n43006035004 A1:n43006039020 +53388 A0:n00000000000 A1:n43006040014 +53392 A0:n00000000000 +53395 A0:n43006040012;n43006040016 A1:n43006040020 +53399 A1:n43006040024 A0:n43006040025 +53407 A0:n43006041004 +53413 A0:n43006035004 +53419 A0:n43006041012 +53424 A0:n43006041004 +53434 A0:n43006042011 A1:n43006042014;n43006042017 +53442 A0:n43006035004 +53447 A0:n43006035004 +A0:n43006043002 +53451 A0:n43006043002 A2:n43006043005 +53454 A0:n43006041004 +53458 A0:n43006044001 A1:n43006044003 +A0:n43006044001 +53467 A0:n43006044009 A1:n43006044012 +53469 A0:n43006044009 A1:n43006044014 +53472 A0:n43006044015 A1:n43006044017 +53479 A1:n43006045009 +53490 A0:n00000000000 +53495 A0:n00000000000 +A0:n43006045013;n43006045018 +53503 A1:n43006046004 A0:n43006046006 +53513 A0:n43006046014 A1:n43006046017 +53518 A0:n43006043002 A2:n43006047004 +53521 A0:n00000000000 +A0:n43006047006 A1:n43006047008 +53534 A0:n43006049002 A1:n43006049009 +53541 A0:n43006049002 +53550 A0:n43006050004 +53555 A0:n43006050011 +53558 A0:n43006050011 +53564 A0:n43006051004 +53569 A0:n43006051004 +53572 A0:n43006051013 +53577 A0:n43006051013 +53587 A1:n43006051027 A0:n43006051028 +53598 A0:n43006052006 +53603 A0:n43006052006 +53605 A0:n43006052010 A1:n43006052012 +53608 A0:n43006043002 A2:n43006052011 A1:n43006052014 +53611 A0:n43006052006 +53613 A2:n43006053003 A0:n43006053005 +53619 A0:n43006053005 A2:n43006053009 +53623 A0:n43006052006 A1:n43006053014 +53631 A0:n43006052006 A1:n43006053023 +53636 A0:n43006052006 A1:n43006053026 +53641 A0:n00000000000 A1:n43006054005 +53646 A0:n00000000000 A1:n43006054010 +53650 A0:n43006054002;n43006054007 A1:n43006054012 +53654 A0:n43006054014 A1:n43006054016 +53674 A0:n00000000000 A1:n43006056005 +53679 A0:n00000000000 A1:n43006056010 +53685 A0:n43006056002;n43006056007 +53690 A1:n43006057003 A0:n43006057006 +53693 A0:n43006057006 +53696 A0:n43006057007 +53702 A0:n00000000000 A1:n43006057015 +53705 A0:n43006057016 +53715 A0:n43006058004 +53718 A0:n43006058013 +53722 A0:n43006058013 +53724 A0:n00000000000 A1:n43006058020 +53728 A0:n43006058017 +53733 A0:n43006053005 A1:n43006059001 +53736 A0:n43006053005 +53745 A0:n43006060001 +A0:n43006060001 +53753 A0:n43006060014 A1:n43006060017 +53755 A0:n43006060014 A1:n43006060016 +53759 A0:n43006061004 +53763 A0:n43006061012 +53769 A0:n43006061004 A2:n43006061015 +53773 A0:n43006061016 A1:n43006061017 +53776 A0:n43006061012 A1:n43006062008 +53781 A0:n43006062005 +53790 A0:n00000000000 +53794 A0:n43006063007 A1:n43006063010 +53800 A1:n43006063013 A0:n43006063014 A2:n43006063016 +53808 A0:n43006064005 +53814 A0:n43006064006 +53816 A0:n43006064014 +53825 A0:n00000000000 +53830 A0:n00000000000 A1:n43006064025 +53833 A0:n43006064014 +53836 A0:n43006064014 A2:n43006065006 +53840 A0:n43006065008 A1:n43006065010 +A0:n43006065008 +53847 A1:n43006065010 A2:n43006065017 +53858 A0:n43006066003 +53866 A0:n43006066003 +53868 A0:n43006067004 A2:n43006067006 +53876 A0:n43006067009 A1:n43006067011 +A0:n43006067006 +A2:n43006068002 A0:n43006068003 +53885 A0:n43006067006 +53889 A0:n43006068005 A1:n43006068009 +53892 A0:n43006069002 +53894 A0:n43006067006 +53902 A2:n43006070002 A0:n43006070004 +53911 A0:n43006070006 A1:n43006070007 +53919 A0:n43006070004 A1:n43006071004 +53926 A0:n43006071007 A1:n43006071010 +A0:n43006071004 A1:n43006071011 +53936 A0:n43007001006 +53944 A0:n43007001006 A1:n43007001016 +53948 A0:n43007001006 +53950 A1:n43007001022 A0:n43007001021 +53952 A0:n43007001021 A1:n43007001019 +53965 A0:n43007003006 +53971 A0:n43007001006 +53974 A0:n43007001006 +53983 A0:n43007003018 A1:n43007003022 +53988 A0:n43007001006 A1:n43007003024 +53994 A0:n43007004001 A1:n43007004003 +53996 A0:n43007004009 A1:n43007004011 +54003 A0:n43007001006 A1:n43007004014 +A0:n43007001006 A1:n43007004017 A2:n43007004019 +54013 A0:n43007005004 +54017 A2:n43007006003 A0:n43007006005 +54026 A0:n43007006007 +54036 A0:n43007007004 A1:n43007007005 +54039 A0:n43007007004 A1:n43007007006 +54043 A0:n43007007004 A1:n43007007007 +54046 A0:n43007007011 +54056 A0:n43007008001 +54062 A0:n43007008006 +54072 A1:n43007008016 +54075 A0:n43007006005 A1:n43007009001 A2:n43007009004 +54077 A0:n43007006005 +54083 A0:n43007010005 +54093 A0:n43007010012 +54103 A0:n43007011003 A1:n43007011005 +54109 A0:n43007011003 +54124 A0:n43007012010 +54130 A0:n43007012016 +54133 A0:n43007006005 A1:n43007012023 +54139 A0:n43007013001 +54151 A0:n43007014004 +A0:n43007014007 +54158 A0:n43007014007 +54160 A0:n43007015004 +54163 A0:n43007015004 +54167 A0:n43007015007 A1:n43007015008 +54169 A0:n43007014007 +54171 A2:n43007016003 A0:n43007016004 +54175 A0:n43007016004 +54184 A0:n43006069012 A1:n43007016016 +54188 A0:n43007017002 A1:n43007017007 +54192 A0:n43007017002 A1:n43007017005 +A0:n43007017002 +54206 A0:n43007017018 +54210 A0:n00000000000 +54215 A0:n43007018004 A1:n43007018006 +54218 A0:n43007016004 A1:n43007018014 +54222 A0:n43007017015 A1:n43007018017 +54235 A0:n43007019002 A2:n43007019004 A1:n43007019006 +54243 A0:n43007019008 A1:n43007019013 +54248 A0:n43007015004 A1:n43007019015 +A0:n43007015004 A1:n43007019017 +A0:n43007020003 +54254 A0:n43007016004 A1:n43007020004 +54257 A0:n43007020006 A1:n43007020007 +A0:n43007020006 A1:n43007020009 +A0:n43007021002 +54262 A0:n43007021002 A2:n43007021005 +54266 A0:n43007021002 A1:n43007021007 +54269 A0:n43007021010 +54273 A0:n43007022003 A2:n43007022005 A1:n43007022007 +54290 A0:n43007020003 A1:n43007022022 +54294 A1:n43007023002 A0:n43007023004 +54300 A1:n43007023011 +54305 A0:n43007020003 A1:n43007023013 +54310 A0:n43007021002 A1:n43007023017 +54314 A0:n43007020003 +54321 A0:n43007020003 A1:n43007024008 +54323 A0:n43007025003 +54332 A0:n43007015004 A1:n43007025010 +A0:n43007015004 A1:n43007025012 +54335 A0:n43007025003 +54337 A0:n43007021002 +54341 A0:n43007015004 A1:n43007026006 A2:n43007026007 +54345 A0:n43007026014 +54355 A0:n43007025003 A1:n43007027002 +54362 A0:n43007027008 +54364 A0:n43007027011 +54368 A0:n43007028008 +54372 A0:n43007028008 +54376 A0:n43007028008 +54378 A0:n43007025003;n43007020003 A1:n43007028011 +54380 A0:n43007025003;n43007020003 +54387 A0:n43007028008 +54392 A0:n43007017015 A1:n43007028027 +54397 A1:n43007028028 A0:n43007028029 +54399 A0:n43007029001 A1:n43007029003 +54407 A0:n43007029008 A1:n43007029009 +54409 A0:n43007015004 A1:n43007030004 +54411 A0:n43007015004 A1:n43007030003 +54414 A0:n43007030006 A1:n43007030011 +54421 A0:n43007030016 +54430 A0:n43007031005 +54434 A0:n43007031005 +54438 A0:n43007031012 +54442 A0:n43007031012 A1:n43007031017 +54445 A1:n43007031019 A0:n43007031020 +A0:n43007032003 +54451 A0:n43007032005 A1:n43007032009 +54456 A0:n43007032013;n43007032016 A1:n43007032017 +54464 A0:n43007032017 A1:n43007032020 +54467 A0:n43007033004 +54477 A0:n43007033004 +54480 A0:n43007017015 A1:n43007033016 +54482 A0:n43007032005 A1:n43007034002 +54486 A0:n43007032005 A1:n43007033004 +54491 A0:n43007032005 +54494 A1:n43007034013 A0:n43007034010 +54496 A0:n43007035004 +54502 A0:n43007033004 +54504 A1:n43007035010 A0:n43007035008 +54508 A0:n43007035012 A1:n43007035015 +54511 A0:n43007033004 A1:n43007035023;n43007035025 +54517 A0:n43007033004 +54519 A0:n43007033004 A1:n43007035027 +54528 A0:n43007033004 A1:n43007036006 +A0:n43007035004 A1:n43007036009 +54533 A0:n43007035004 A1:n43007033004 +54538 A0:n43007035004 +54541 A1:n43007036020 A0:n43007036017 +54551 A0:n43007037012 +54555 A0:n43007037012 +A0:n43007037012 +54559 A0:n43007037017 +A0:n43007037017 +54564 A0:n43007037017 +54566 A0:n00000000000 +54570 A0:n43007038008 +54575 A0:n43007038015 +54580 A0:n43007038009 +54583 A0:n43007037012 A1:n43007039001 +54588 A0:n43007039011 A1:n43007039007 +A1:n43007039009 A0:n43007039011 +54591 A0:n00000000000 +54596 A0:n43007039017 +54601 A1:n43007039019 +54606 A0:n43007040003 A1:n43007040007 +54610 A0:n43007040003 +54617 A0:n43007041001 +54624 A0:n43007041007 +54632 A0:n43007041016 +54636 A0:n43007042003 +54650 A0:n43007042020 +54655 A0:n43007043001 +54665 A0:n43007044001 A1:n43007044006 +A0:n43007044001 A1:n43007044007 +54670 A0:n43007044009 A1:n43007044014 +54676 A0:n43007045004 +54685 A2:n43007045012 A0:n43007045013 +54691 A0:n43007045004 A1:n43007045018 +54693 A0:n43007046003 +54697 A0:n43007046007 +54706 A2:n43007047003 A0:n43007047005 +54713 A1:n43007047008 +54719 A0:n43007048002 +54732 A0:n43007049003 A1:n43007049009 +54737 A0:n43007050002 +54742 A0:n43007050002 +54754 A0:n43007051003 A1:n43007051007 +54759 A0:n43007051003 +54764 A0:n43007051003 A1:n43007051017 +54766 A0:n43007051007 A1:n43007051016 +A1:n43007047005 +54769 A0:n43007047005 A2:n43007052004 +54778 A0:n43007050002 +54780 A0:n43007050002 +54787 A1:n43007052019 +54789 A0:n43007053003 +54797 A0:n43008001001 +54806 A0:n43008001001 +54814 A0:n43008002011 +54818 A0:n43008001001 +A0:n43008001001 A1:n43008002018 +54822 A0:n43008003004;n43008003007 A1:n43008003010 +54833 A1:n43008003010 +54835 A0:n43008003004;n43008003007 A1:n43008003016 +54839 A0:n43008003004;n43008003007 A2:n43008004002 +54845 A1:n43008004006 +54847 A1:n43008004006 +54854 A2:n43008005006 A0:n43008005005 A1:n43008005010 +54857 A0:n43008003004;n43008003007 A1:n43008005009 +54861 A0:n43008005011 A1:n43008005013 +54864 A0:n43008003004;n43008003007 A1:n43008006001 +A0:n43008003004;n43008003007 A1:n43008006005 +54868 A0:n43008003004;n43008003007 A1:n43008006008 +A0:n43008003004;n43008003007 A1:n43008006009 +54875 A0:n43008006012 +54878 A0:n43008006012 +54884 A0:n43008003004;n43008003007 A1:n43008007004 +A0:n43008003004;n43008003007 A1:n43008007005 +54887 A0:n43008006012 +A0:n43008006012 +54903 A0:n43008006012 +A0:n43008006012 +54910 A0:n43008003004;n43008003007 +54915 A0:n43008003004;n43008003007 +A0:n43008009001 +54919 A0:n43008003004;n43008003007 +54927 A1:n43008009023 +54940 A0:n43008010004 +54943 A0:n43008010004 A1:n43008010006 +54947 A0:n43008010004 A2:n43008010012 +54962 A0:n43008011001 +54966 A0:n43008011010 A1:n43008011008 +54973 A0:n43008011012 A1:n43008011013 +A0:n43008009026 +54977 A0:n43008009026 +54981 A2:n43008012003 A0:n43008012006 +54984 A0:n43008012006 +54992 A0:n00000000000 A1:n43008012016 +54996 A0:n43008012015 +55001 A0:n43008012015 A1:n43008012026 +55007 A2:n43008013003 A0:n43008013005 +55014 A0:n43008013006 +55021 A0:n43008014002 +55024 A0:n43008014002 A2:n43008014005 +55028 A0:n43008014007 +55037 A0:n43008014002 +55039 A0:n43008014002 +55042 A0:n43008014002 +55046 A0:n43008014023 +55048 A0:n43008014002 +55051 A0:n43008014002 +55056 A0:n43008015001 +55059 A0:n43008015006 A1:n43008015009 +55064 A0:n43008016005 +55080 A0:n00000000000 A1:n43008016021 +55089 A1:n43008017014 +55100 A0:n00000000000 +55104 A0:n43008018014 +55108 A0:n43008018014 A1:n43008018013 +55112 A0:n43008013005 A2:n43008019003 +55119 A0:n43008019010 +55123 A0:n43008013005 A1:n43008019012 +55130 A0:n43008013005 A1:n43008019019 +55136 A0:n43008013005 A1:n43008019023 +55140 A0:n43008019010 A1:n43008020003 +55144 A0:n43008019010 +55150 A0:n43008020013 A1:n43008020015 +55154 A0:n43008020020 +55159 A0:n43008019010 A2:n43008021004 +55163 A0:n43008021005 +55165 A0:n43008013005 A1:n43008021009 +55172 A0:n43008013005 +55175 A0:n43008021017 +A0:n43008013005 +55179 A1:n43008021022 A0:n43008021019 +55181 A0:n43008022004 +55185 A0:n43008019010 A1:n43008022007 +55188 A0:n43008019010 +55191 A0:n43008022011 +A0:n43008022004 +55195 A1:n43008022016 A0:n43008022013 +55197 A0:n43008019010 A2:n43008023003 +55223 A0:n43008019010 A2:n43008024003 +55226 A0:n43008022004 +55234 A0:n43008022004 +55238 A0:n43008022004 +55244 A0:n43008022004 A2:n43008025003 +55249 A2:n43008025008 A0:n43008025010 +55258 A0:n43008025010 A1:n43008025013 A2:n43008025017 +55260 A0:n43008025010 A1:n43008026005;n43008026007 +55264 A0:n43008025010 A1:n43008026001 +55266 A0:n43008025010 A1:n43008026001 +55269 A0:n43008019023 A1:n43008026011 +55275 A1:n43008026015 A0:n43008026014 +55279 A0:n43008025010 A1:n43008026019 +55284 A0:n43008022004 +55289 A0:n43008025010 A1:n43008027005 A2:n43008027006 +55291 A0:n43008028004 +55295 A0:n43008022004 A1:n43008028009 +55301 A0:n43008022004 +55308 A0:n43008028005 A1:n43008028021 +55312 A1:n43008028025 A0:n43008028027 +55317 A0:n43008028005 A1:n43008028028 +55320 A0:n43008028027 A1:n43008029004 +55326 A0:n43008029003 A1:n43008029010 +55334 A0:n43008029013 A1:n43008029015 +55338 A1:n43008030001 A0:n43008030002 +55340 A0:n43008030004 +55344 A0:n43008031004 +55349 A0:n43008031009 A1:n43008031008 +55354 A0:n43008031011 +55365 A0:n43008031009 A1:n43008032004 +55371 A0:n43008032007 A1:n43008032009 +55373 A1:n43008031009 +55381 A0:n43008031009 A1:n43008033008 +55385 A0:n43008033012 +55389 A2:n43008034002 A0:n43008034004 +55395 A0:n43008034004 A2:n43008034008 +55400 A0:n00000000000 A1:n43008034014 +55411 A0:n43008035003 +55420 A0:n43008035013 +55429 A0:n43008036004 A1:n43008036005 +55433 A0:n43008034004 +55439 A0:n43008031009 A1:n43008037009 +55441 A0:n43008031009 A1:n43008037008 +55448 A0:n43008037012 +55453 A1:n43008038001 A0:n43008038002 +55457 A0:n43008034004 A1:n43008038003 +55462 A0:n43008031009 A1:n43008038011 +55466 A0:n43008038009 A1:n43008038012 +A1:n43008031009 +55469 A0:n43008031009 A2:n43008039004 +55476 A2:n43008039011 A0:n43008039013 +55489 A0:n43008031009 A1:n43008039020 +55492 A0:n43008031009 A1:n43008040005 +A0:n43008031009 A1:n43008040004 +55500 A0:n43008040007 A1:n43008040009 A2:n43008040010 +55502 A0:n43008039013 A1:n43008040012 +55509 A1:n43008040017 A0:n43008040018 +55511 A0:n43008041001 A1:n43008041004 +55517 A0:n43008031009 A2:n43008041009 +55523 A1:n43008041010 +55528 A0:n43008031009 A1:n43008041016 +A2:n43008042002 A0:n43008042004 +55540 A0:n43008031009 A1:n43008042013 +55547 A0:n43008042014 +55549 A0:n43008042004 +55554 A0:n43008042004 +55558 A0:n43008042028 A1:n43008042029 +55566 A0:n43008031009 A1:n43008043004 +55569 A0:n43008031009 A1:n43008043012 +A0:n43008031009 A1:n43008043014 +55588 A0:n43008031009 A1:n43008044010 +A0:n43008031009 A1:n43008044015 +55600 A0:n43008044012 +55608 A0:n43008044012 A1:n43008044036 +55614 A0:n43008044012 +55627 A0:n43008042004 A1:n43008045005 +55629 A0:n43008031009 A1:n43008045009 +55634 A0:n43008046001 A1:n43008046005 +55640 A0:n43008042004 A1:n43008046009 +55645 A0:n43008046013 A1:n43008046016 +55648 A0:n00000000000 +55656 A0:n43008047005 A1:n43008047007 +55661 A0:n43008047013 +55668 A0:n43008048003 +55672 A0:n43008048003 A2:n43008048006 +55676 A0:n43008048010 +55684 A0:n43008042004 A1:n43008048016 +A0:n43008049002 +55690 A0:n43008049003 A1:n43008049004 +55692 A0:n43008049002 A1:n43008049010 +55698 A0:n43008049013 A1:n43008049015 +55703 A0:n43008050001 A1:n43008050006 +55707 A0:n43008050010;n43008050012 +55709 A0:n43008049010 +55711 A0:n43008049010 +55714 A0:n43008049002 A2:n43008051004 +55721 A0:n43008051006 A1:n43008051009 +55725 A0:n43008051006 A1:n43008051011 +55729 A2:n43008052002 A0:n43008052004 +55734 A0:n43008052004 +55737 A0:n43008049002 A1:n43008052008 +55739 A0:n43008052010 +55745 A0:n43008052016 +55751 A0:n43008052019 A1:n43008052021 +55754 A0:n43008052019 A1:n43008052027 +55768 A0:n43008053009 +55772 A0:n43008053013 +55775 A0:n43008049002 A1:n43008053016 +A0:n43008054002 +55780 A0:n43008054004 A1:n43008054006 +55792 A0:n00000000000 A1:n43008054018 +55796 A0:n43008054020 +55803 A0:n43008052004 A1:n43008055004 +55807 A0:n43008055005 A1:n43008055008 +55810 A0:n43008054002 +55813 A0:n43008054002 A1:n43008055014 +55820 A0:n43008054002 A1:n43008055021 +55826 A0:n43008054002 A1:n43008055024 +55831 A0:n43008056001 +55833 A0:n43008056001 A1:n43008056009 +55839 A0:n43008056001 +55841 A1:n43008056001 +55843 A0:n43008057004 +55851 A0:n43008054002 A1:n43008057008 +55854 A0:n43008054002 A1:n43008057012 +A2:n43008058002 A0:n43008058003 +55860 A0:n43008058003 A2:n43008058007 +55864 A0:n43008058009 +55866 A0:n43008058011 +55868 A0:n43008057004 A1:n43008059003 +55871 A0:n43008057004 +55876 A1:n43008059008 +55878 A0:n43008059008 +55883 A0:n43008059008 +A0:n43008059008 A1:n43009001004 +55890 A1:n43009002003 A0:n43009002005 +55895 A0:n43009002005 +55898 A0:n43009002009 +55906 A1:n43009001004 +A0:n43009003002 +55911 A0:n43009003004 +55918 A1:n43009003014 +55925 A0:n43009004003 +55927 A0:n43009004001 A1:n43009004005 +55931 A0:n43009003016 A1:n43009004008 +55935 A0:n43009004010 +A0:n43009004013 +55940 A0:n43009004015 A1:n43009004017 +A0:n43009004015 +55952 A0:n43009003002 A1:n43009006001 +A0:n43009003002 +55956 A0:n43009003002 A1:n43009006007 +55962 A0:n43009003002 A1:n43009006015 +55970 A0:n43009003002 A2:n43009007003 +55972 A0:n43009001004 +A0:n43009001004 +55981 A1:n00000000000 +55983 A0:n43009001004 +55985 A0:n43009001004 +55987 A0:n43009001004 +A0:n43009001004 +55994 A0:n00000000000 A1:n43009008007 +56001 A0:n43009008003;n43009008006 +56006 A0:n00000000000 +56008 A0:n00000000000 +56010 A0:n43009009001 +56015 A0:n43009009006 +56022 A0:n43009009013 +56027 A0:n43009008003;n43009008006 A2:n43009010003 +56031 A1:n43009010009 +56035 A0:n43009011002 +56043 A0:n43009011004 A1:n43009011008 +56045 A0:n43009011004 A1:n43009011014 +56050 A0:n43009011004 A2:n43009011017 +56053 A0:n43009001004 +56058 A0:n43009001004 +56060 A0:n43009001004 +56062 A0:n43009001004 +A0:n43009001004 +56065 A0:n43009008003;n43009008006 A2:n43009012003 +56070 A0:n43009001004 +56072 A0:n43009001004 +A0:n43009008003;n43009008006 A1:n43009013002 +56082 A0:n00000000000 +56089 A1:n43009014008 A0:n43009014011 +56093 A0:n43009014011 A1:n43009014016 +56099 A1:n43009015004 A0:n43009015007 +56105 A0:n43009013008 +56108 A0:n43009015010 A2:n43009015013 +56111 A0:n43009014011 A1:n43009015014 +56117 A0:n43009013008 +56119 A0:n43009013008 +56121 A0:n43009016006 +56137 A0:n43009016013 A1:n43009016016 +56139 A0:n43009016019 +56141 A0:n43009016023 A1:n43009016027 +56146 A0:n43009016023 A1:n43009016026 +56153 A0:n43009016005 A2:n43009017004 +56159 A1:n43009017006 A0:n43009017007 +56163 A0:n43009014011 A1:n43009017015 +56169 A0:n43009017016 +56175 A0:n43009018005 A1:n43009018010;n43009018012 +56184 A0:n43009017004 +56187 A0:n43009018005 A1:n43009018017 +56192 A0:n43009017004 +56194 A0:n43009018005 A1:n43009019003 +56196 A0:n43009018005 +56204 A0:n43009019011 +56207 A1:n43009019008 +56210 A0:n43009018020 +56213 A0:n43009020004 +56218 A0:n43009020004 +A0:n43009020004 +56229 A1:n43009018020 +56233 A0:n43009018020 +56235 A0:n43009020004 +56238 A0:n43009021008 A1:n43009021012 +56244 A0:n43009021013 +56246 A0:n43009018005 A1:n43009021016 +56248 A0:n43009018020 A1:n43009021018 +56252 A0:n43009021020 +56254 A1:n43009022001 A0:n43009022004 +56259 A0:n43009022004 A1:n43009022009 +56264 A0:n43009022014 +56271 A0:n43009022017 A1:n43009022018 +56280 A0:n43009023004 +56285 A0:n43009022014 A1:n43009023010 +56287 A0:n43009022014 A1:n43009024004 +56296 A0:n43009022014 A2:n43009024012 +56298 A0:n43009024004 A1:n43009024014 A2:n43009024016 +56303 A0:n43009024017 +56311 A0:n43009025003 +56317 A0:n43009024004 +56319 A0:n43009024004 A1:n43009025009 +56324 A0:n43009024004 +56326 A0:n43009022014 A2:n43009026003 +56329 A0:n43009014011 A1:n43009026004 A2:n43009026006 +56332 A0:n43009014011 A1:n43009026011 +56336 A1:n43009024004 A2:n43009027002 +56338 A0:n43009024004 A2:n43009027004 +56343 A0:n43009022014 +56346 A0:n43009022014 A1:n43009027012 +A0:n43009022014 +56351 A0:n43009027015 A1:n43009027018 +56356 A0:n43009022014 A1:n43009028003 +56359 A0:n43009022014 +56371 A0:n43009029001 +56374 A2:n43009029004 A0:n43009029007 +56380 A0:n43009022014 A1:n43009029008 +56383 A0:n43009030003 +56387 A0:n43009030003 A2:n43009030006 +56398 A0:n43009030014 +56402 A0:n43009014011 A1:n43009030023 +56406 A0:n43009030003;n43009022014 +56412 A1:n43009031005 A0:n43009031004 +56422 A0:n43009031010 A1:n43009031015 +56424 A0:n43009031004 A1:n43009031018 +56429 A1:n43009032007 +56431 A0:n43009032008 A1:n43009032009 +56435 A1:n43009032010 +56443 A0:n43009014011 A1:n43009033009 +A0:n43009014011 A1:n43009033010 +56446 A1:n43009022014 +56448 A0:n43009022014 A2:n43009034004 +56453 A1:n43009034007 +56457 A0:n43009034011 A1:n43009034013 +56460 A0:n43009022014 A1:n43009034016 +56463 A0:n43009035002 +56466 A0:n43009022014 A1:n43009035005 +56470 A0:n43009035002 A1:n43009035009 +56472 A0:n43009035002 +56474 A0:n43009035011 +56480 A0:n43009036002 +56483 A0:n43009030003 +56489 A0:n43009030003 +56492 A2:n43009037002 A0:n43009037004 +56497 A0:n43009030003 A1:n43009037007 +56501 A0:n43009035002 +56508 A0:n43009038001 +A0:n43009030003 +56512 A0:n43009030003 A1:n43009038008 +56515 A0:n43009039004 +56525 A0:n43009039007 +56529 A0:n00000000000 +A0:n43009039016 +56533 A0:n00000000000 +56536 A1:n43009040005 A0:n43009040004 +56546 A0:n43009040004 A2:n43009040012 +56553 A2:n43009041002 A0:n43009041004 +56562 A0:n43009040004 A1:n43009041011 +56566 A0:n43009040004 +56568 A0:n43009040004 +56572 A0:n43009041018 +56575 A0:n43009041004 A2:n43010001004 +56579 A0:n00000000000 +56589 A0:n00000000000 +56598 A0:n00000000000 +56609 A2:n43010003001 A1:n43010002006 A0:n43010003003 +56616 A0:n43010003007 A1:n43010003009 +56621 A0:n43010002003 A1:n43010003015 +56625 A0:n43010002003 A1:n43010003021 +56631 A0:n43010002003 A1:n43010004003 +56634 A0:n43010002003 +56639 A0:n43010004011 A1:n43010004012 +56641 A0:n43010004011 A1:n43010004017 +56649 A0:n43010004011 A1:n43010005001 +56651 A0:n43010004011 +56656 A0:n43010004011 A1:n43010005016 +56664 A1:n43010006003 A2:n43010006005 A0:n43010006007 +56671 A0:n43010006008 A1:n43010006012 +56675 A0:n43010006007 A1:n43010006014 A2:n43010006016 +56678 A0:n43010007005 +56684 A0:n43010007005 A2:n43010007009 +56695 A0:n43010008002 +56704 A1:n43010008013 A0:n43010008015 +56716 A0:n43010009008 +A1:n43010009008 +56719 A0:n43010009008 +56721 A0:n43010009008 +56724 A0:n43010009008 A1:n43010009016 +56728 A0:n43010010002 +56732 A0:n43010010002 +56734 A0:n43010010002 +56736 A0:n43010010002 +56738 A0:n43010010013 +56741 A0:n43010007016 A1:n43010010016 +56744 A0:n43010007016 +56758 A0:n43010011008 A1:n43010011012 +56766 A0:n00000000000 +56774 A0:n43010012002 A1:n43010012016 +56777 A0:n43010012015 +56779 A0:n43010012002 A1:n43010012020 +56783 A0:n43010012002 +56787 A0:n43010012025 A1:n43010012027 +56790 A0:n43010012025 +56796 A0:n00000000000 AA2:n43010013007 +56808 A0:n43010007005 A1:n43010014010 +56812 A1:n43010014013 A0:n43010014015 +56817 A1:n43010015003 A0:n43010015005 +56822 A0:n43010015006 A1:n43010015009 +56829 A0:n43010007005 A1:n43010015012 +56836 A0:n43010007005 A1:n43010016003 +56846 A1:n43010016012 A0:n43010016014 +A0:n43010016015 +56852 A0:n43010016003 A1:n43010016018 +56864 A1:n43010017003 A0:n43010017005 +56867 A0:n43010017008 A1:n43010017011 +56873 A0:n43010007005 A1:n43010017016 +56876 A0:n43010018001 A1:n43010018003 +56882 A0:n43010018007 A1:n43010018009 +56887 A0:n43010007005 A1:n43010018012 +A0:n43010007005 A1:n43010018015 +56892 A0:n43010007005 A1:n43010018017 +56894 A0:n43010007005 A1:n43010018021 +56899 A0:n43010007005 A1:n43010018024 +56906 A0:n43010019001 +56915 A0:n43010020003 +56920 A0:n43010007005 A1:n43010020006 +56922 A0:n43010007005 +56925 A0:n43010019006 A1:n43010020011 +56927 A0:n43010021001 +56933 A0:n00000000000 +56936 A0:n43010021010 A1:n43010021014 +56939 A0:n43010021010 A1:n43010021013 +A0:n43010022004 +56948 A0:n00000000000 +56950 A0:n43010023004 +56962 A1:n43010024003 A0:n43010024005 +56967 A0:n43010024005 A2:n43010024008 +56974 A0:n43010023004 A1:n43010024012 +56980 A0:n43010023004 A2:n43010024021 +56983 A2:n43010025002 A0:n43010025004 +56987 A0:n43010025004 A2:n43010025006 +56991 A0:n43010024005 +56996 A1:n43010025012 A0:n43010025013 +57004 A0:n43010025021 +57010 A0:n43010026002 +57026 A0:n43010027002 A1:n43010027006 +57028 A0:n43010027009 A1:n43010027011 +57031 A0:n43010027002 A1:n43010027014 +57034 A0:n43010028001 A2:n43010028003 A1:n43010028004 +57041 A0:n43010027002 +57047 A0:n43010028016 A1:n43010028017 +57058 A0:n43010029002 A1:n43010029004 A2:n43010029006 +57065 A0:n43010029011 A1:n43010029013 +A0:n43010029011 +57078 A1:n43010031003 A0:n43010031005 +57084 A0:n43010031005 A1:n43010031008 +57086 A2:n43010032002 A0:n43010032004 +57093 A0:n43010032004 A1:n43010032006 A2:n43010032008 +57103 A0:n43010031005 A1:n43010032017 +A2:n43010033002 A0:n43010033004 +57112 A0:n43010033004 A1:n43010033010 +57122 A0:n43010033016 A1:n43010033020 +57125 A2:n43010034002 A0:n43010034004 +57131 A1:n43010034014 +57138 A0:n43010034013 +57140 A0:n00000000000 +57143 A0:n43010035010 A1:n43010035002 +57151 A0:n43010035008 +57154 A1:n43010035015 A0:n43010035017 +A1:n43010035017 +57161 A1:n43010036001 A0:n43010036003 +57163 A0:n43010036003 +57168 A0:n43010036010 +57170 A0:n43010036004 +57172 A0:n43010034004 +57179 A0:n43010034004 A1:n43010037005 +57186 A0:n43010033004 A1:n43010037011 +57190 A0:n43010034004 +57194 A0:n43010033004 A1:n43010038005 +57197 A0:n43010033004 A1:n43010038009 +57199 A0:n43010033004 +57201 A0:n43010033004 +57212 A0:n43010033004 A1:n43010039005 +57214 A0:n43010033004 A1:n43010039003 +57217 A0:n43010034004 +57223 A0:n43010034004 +57233 A0:n43010040012 +57238 A0:n43010034004 +57242 A0:n43010041002 +57246 A0:n43010041002 +57252 A0:n43010041009 A1:n43010041011 +57256 A1:n43010041016 A0:n43010041018 +57264 A0:n43010042002 +57269 A0:n43011001003 +57271 A0:n43011001003 +57288 A0:n00000000000 A1:n43011002007 +57293 A0:n00000000000 A1:n43011002012 +57304 A0:n43011002019 +57306 A0:n43011003004 +57311 A0:n43011003004 +57315 A0:n43011003008 A1:n43011003010 +A0:n43011003011 +57318 A0:n43011004004 +57321 A0:n43011004004 +57336 A1:n43011004022 +57344 A0:n43011005004 A1:n43011005006;n43011005009;n43011005013 +57358 A0:n43011005004 +57360 A0:n43011005013 +57363 A0:n43011005004 +57366 A0:n43011005004 +57373 A0:n43011005004 A2:n43011007006 +57376 A0:n43011007006;n43011005004 +57381 A2:n43011008002 A0:n43011008004 +57387 A1:n43011008009 A0:n43011008011 +57389 A0:n43011008011 A1:n43011008008 +57394 A0:n43011008005 +57396 A0:n43011009002 +57406 A0:n43011009010 +57411 A0:n43011009010 +57418 A0:n43011009010 A1:n43011009019 +57422 A0:n43011010003 +57426 A0:n43011010003 +57435 A0:n43011009002 A1:n43011011001 +57439 A0:n43011009002 A2:n43011011007 +57445 A0:n43011011008 +57447 A0:n43011009002 +57449 A0:n43011009002 A1:n43011011017 +57452 A0:n43011012004 A2:n43011012005 +57458 A0:n43011011008 +A1:n43011011008 +57461 A0:n43011013004 +57470 A0:n43011013009 +57477 A0:n43011013004 +57480 A2:n43011014004 A0:n43011014006 +57486 A0:n43011014008 +57488 A0:n43011014006 +57492 A0:n43011012004 +57498 A0:n43011014006;n43011012004 +57502 A0:n43011016003 A2:n43011016008 +57509 A0:n43011016011 +57513 A0:n43011016003;n43011016008 +57517 A0:n43011017004 +57520 A0:n43011017004 A1:n43011017010 +57525 A0:n43011017006 A1:n43011017009 +57544 A0:n43011019001 +57551 A0:n43011019001 A1:n43011019014 +57558 A0:n43011020003 +57561 A0:n43011020007 +57564 A0:n43011020003 A1:n43011020010 +57571 A0:n43011020011 +57573 A0:n43011021004 +57584 A0:n43011021015 +57590 A0:n43011021004 +57594 A0:n43011021007 A1:n43011022005 A2:n43011022009 +57597 A1:n43011022007 A2:n43011022011 A0:n43011022013 +57601 A2:n43011023002 A0:n43011023004 +57605 A0:n43011023007 +57609 A2:n43011024002 A0:n43011024004 +57613 A0:n43011024004 +57615 A0:n43011023007 +57623 A2:n43011025002 A0:n43011025004 +57635 A0:n00000000000 +57639 A0:n43011025013 +A0:n43011025013 +57644 A0:n00000000000 +57646 A0:n00000000000 +57651 A0:n43011026004;n43011026006 +57655 A0:n43011024004 A1:n43011026016 +57657 A0:n43011024004 A2:n43011027002 +57662 A0:n43011027005 +57676 A0:n43011027011 +57679 A0:n43011024004 A1:n43011028002 +A0:n43011024004 +57682 A0:n43011024004 A1:n43011028007 +57688 A0:n43011024004 +57691 A0:n43011028014 +57693 A0:n43011028014 A1:n43011028018 +57698 A0:n43011028007 +A1:n43011029001 +57702 A0:n43011028007 +57707 A0:n43011030005 +57720 A1:n43011030017 A0:n43011030019 +57735 A0:n43011031003 A1:n43011031013 +57737 A0:n43011031003 A1:n43011031016 +57742 A0:n43011031016 +57744 A0:n43011031016 +A0:n43011031003 A1:n43011031023 +57747 A0:n43011031003 +57749 A0:n43011031016 +57754 A0:n43011031016 +57760 A0:n43011032003 +57764 A0:n43011032003 A1:n43011032010 +57766 A0:n43011032003 +57771 A0:n43011032003 A2:n43011032017 +57779 A0:n43011032027 +57786 A0:n43011033001 A1:n43011033006;n43011033012 +57788 A0:n43011033005 +57791 A0:n43011033011 A1:n43011033010 +57794 A0:n43011033011 +A0:n43011033001 +57799 A0:n43011033001 A1:n43011033018 +57802 A0:n43011033001 +57804 A0:n43011033011;n43011032003;n43011024004 A1:n43011034005 +57806 A0:n43011033011;n43011032003;n43011024004 A2:n43011034007 +57809 A0:n43011034008 +57811 A0:n43011034008 +A0:n43011035003 +57816 A0:n43011036004 +57819 A0:n43011036004 +57821 A0:n43011035003 A1:n43011036008 +57827 A0:n43011037001 +57829 A0:n43011037010 A1:n43011037015 +57832 A0:n43011035003 A1:n43011037012 +57837 A0:n43011037010 +57842 A0:n43011037018 +57846 A0:n43011038001 +57849 A0:n43011038001 +57858 A0:n43011038015 +57861 A0:n43011039003 +57864 A0:n43011024004;n43011032003;n43011036004 A1:n43011039006 +57867 A2:n43011039008 A0:n43011039010 +57872 A0:n43011019017 +57876 A0:n43011039012 +57879 A0:n00000000000 +A2:n43011040002 A0:n43011040004 +57885 A0:n43011040004 A2:n43011040007 +57889 A0:n43011039010 +A0:n43011039010 A1:n43011040013 +57896 A0:n43011039010;n43011032003;n43011036004 A1:n43011041004 +57902 A0:n43011041007 A1:n43011041010 +57907 A0:n43011041007 +57909 A0:n43011041007 A1:n43011041016 +57912 A0:n43011041014 A1:n43011041019 +57916 A0:n43011042001 +57920 A0:n43011041014 A1:n43011042006 +57926 A0:n43011042011 +A0:n43011041007 +57929 A0:n43011042011 +57933 A0:n43011042018 A1:n43011042019 +57936 A0:n43011041007 A1:n43011043002 +57939 A0:n43011041007 +57941 A0:n43011043007 +57943 A0:n43011044003 +57945 A0:n43011043007 +A1:n43011044003 +57958 A1:n43011044013 +A2:n43011044018 A0:n43011044020 +57963 A0:n43011036004;n43011039010;n43011032003 A1:n43011044022 +57966 A0:n43011036004;n43011039010;n43011032003 A1:n43011044026 +57968 A0:n43011044025 +57975 A0:n43011045001 +57980 A0:n43011045001 A1:n43011045014 +57982 A0:n43011044020 A1:n43011045013 +A0:n43011045001 +57990 A0:n43011046001 +57995 A0:n43011046001 A2:n43011046011 A1:n43011046013 +57998 A1:n43011046012 A0:n43011046014 +58001 A0:n43011047004;n43011047007 A1:n43011047008 +58009 A0:n43011047004;n43011047007 +58011 A0:n43011047004;n43011047007 A1:n43011047011 +58018 A0:n43011047016 A1:n43011047019 +58020 A0:n43011047004;n43011047007 A1:n43011048003 +58024 A0:n43011048005 +58028 A0:n43011048012 +58032 A0:n43011048012 A1:n43011048018;n43011048021 +58051 A0:n43011049001 A2:n43011049013 +58055 A0:n43011049014 A1:n43011049017 +58058 A0:n43011047004;n43011047007 +58060 A0:n43011050009;n43011050018 +58065 A0:n43011050008 +58074 A0:n43011050017 +58080 A0:n43011049001 A1:n43011051001 +58087 A0:n43011049001 +58089 A0:n43011051016 A1:n43011051017;n43011052002;n43011052006;n43011052016 +58091 A0:n43011051016 +58109 A1:n43011052011 +A0:n43011051016 A1:n43011052011 +58118 A0:n43011047004;n43011047007 +58120 A0:n43011047004;n43011047007 A1:n43011053009 +58127 A0:n43011054003 +58132 A0:n43011054003 +58145 A0:n43011054003 +58157 A0:n43011055010 +58168 A0:n43011055010 A1:n43011055021 +58171 A0:n43011055010 A1:n43011056004 +58175 A0:n43011055010 +58181 A0:n43011055010 +58183 A0:n43011056013 AA2:n43011056015 +58188 A0:n43011056004 +58193 A0:n43011057004;n43011057007 A1:n43011057008 +58203 A0:n43011057011 A1:n43011057013 +58206 A0:n43011057011 +58208 A0:n43011057004;n43011057007 A1:n43011057018 +58218 A0:n43012001003 +58225 A1:n43012001015 A0:n43012001019 +58230 A0:n00000000000 A2:n43012002003 A1:n43012002004 +58237 A0:n43012002008 +58245 A0:n00000000000 +58251 A0:n43012003003 A1:n43012003005 +58257 A0:n43012003003 A1:n43012003012 +58263 A0:n43012003003 A1:n43012003021 +58273 A1:n43012003025 +58280 A0:n43012004003 +58289 A0:n43012004003 A1:n43012004013 +58291 A0:n43012004003 A1:n43012004012 +58298 A1:n43012005005 +58302 A1:n43012005009 A2:n43012005012 +58305 A0:n43012004003 A1:n43012006003 +58312 A0:n00000000000 A1:n43012006010 +58321 A0:n43012004003 A1:n43012006017 +58323 A1:n00000000000 +A0:n43012004003 A1:n43012006020 +58326 A0:n43012007004 +58329 A0:n43012004003 A1:n43012007006 +58338 A0:n43012003003 A1:n43012007015 +58344 A0:n43012004003;n43012004009 A1:n43012008002 +58351 A0:n43012004003;n43012004009 A1:n43012008008 +58353 A0:n43012009004 +58364 A0:n43012009004 +58373 A0:n43012009004 A1:n43012009023 +58377 A0:n43012009017 A1:n43012009025 +58381 A0:n43012010004 +58388 A0:n43012010004 A1:n43012010008 +58395 A0:n43012011002 +58397 A0:n43012011002 +58407 A0:n43012012004 +58411 A0:n43012012004 +58413 A0:n43012012014 +58417 A0:n43012012004 A1:n43012013003 +58423 A0:n43012012004 +58428 A0:n43012012004 +58430 A1:n43012013016 +58432 A0:n43012012014 +58442 A0:n43012014004 A1:n43012014005 +58446 A0:n43012014004 +58451 A1:n43012015002;n43012015009 +58453 A0:n43012015003 +58456 A0:n43012015003 +58460 A0:n43012015007 +A0:n43012015007 +58467 A1:n43012016001 A0:n43012016006 +58475 A1:n43012016012 +58478 A1:n43012016006 +58482 A1:n43012016016 +58487 A0:n00000000000 A1:n43012016022 A2:n43012016024 +58490 A0:n43012017004 +58500 A0:n43012016012 A1:n43012017011 +58505 A0:n43012016012 A1:n43012017018 +58512 A1:n43012018005 A0:n43012018007 +58517 A0:n43012018007 A1:n43012018010 +58520 A0:n43012018011 A1:n43012018014 +58526 A0:n43012019003 +58529 A0:n43012019003 +58532 A0:n43012019003 A1:n43012019011 +58534 A0:n43012019003 +58539 A0:n43012019014 +58546 A0:n00000000000 +58548 A0:n43012020007 +58554 A0:n43012021001 +58562 A0:n43012020003 A1:n43012021012 +58564 A0:n43012020003 +58566 A0:n43012020003 A1:n43012021018 +58569 A0:n43012020003 A1:n43012021017 +A0:n43012022003 +58574 A0:n43012022003 A2:n43012022007 +58577 A0:n43012022009;n43012022011 +58582 A0:n43012022009;n43012022011 A2:n43012022015 +58588 A0:n43012023003 A2:n43012023005 +58590 A0:n43012023003 +A0:n43012023009 +58595 A1:n43012023013 +58602 A0:n43012023003 A2:n43012024004 +58610 A0:n43012024008 +58614 A0:n43012024008 +58620 A0:n43012024008 +58623 A0:n43012024008 A1:n43012024023 +58625 A0:n00000000000 A1:n43012025004 +58629 A0:n43012025002 A1:n43012025007 +58633 A0:n00000000000 A1:n43012025012 +58644 A0:n43012025010 A1:n43012025022 +58649 A1:n43012026002 A0:n43012026003 +58651 A0:n43012026003 A1:n43012026005 +58666 A0:n43012026019 A1:n43012026020 +A1:n43012026023 A0:n43012026025 +58675 A1:n43012027003 +58678 A0:n43012023003 A1:n43012027007 +58680 A0:n43012027009 A1:n43012027011 +58689 A0:n43012023003 +58695 A0:n43012028001 A1:n43012028005 +58700 A0:n43012028008 +58706 A0:n43012028008 +58709 A0:n43012028008 +58714 A0:n43012029003 +58716 A0:n43012029003 +A0:n43012029003 A1:n43012029010 +58719 A0:n43012029009 +58721 A0:n43012029011 +58724 A0:n43012029013 A2:n43012029014 +A0:n43012030002 +58728 A0:n43012030002 +58735 A0:n43012030009 +58751 A1:n43012031009 +58755 A1:n43012032001 +58760 A0:n43012030002 A1:n43012032007 +58765 A0:n43012030002 A1:n43012033001 +A0:n43012030002 +58769 A0:n43012030002 A1:n43012033008 +A0:n43012030002 +58772 A2:n43012034003 A0:n43012034005 +58777 A0:n43012034006 +58784 A0:n43012034013 +58790 A0:n43012034021 +58793 A0:n43012034024 +A1:n43012034026 +58807 A2:n43012035003 A0:n43012035005 +58819 A0:n43012034005 +58823 A0:n43012034005 A1:n43012035017 +58828 A0:n43012035021 A1:n43012035022 +58831 A0:n00000000000 +58836 A0:n43012035026 +58838 A0:n43012035026 +58842 A0:n43012034005 A1:n43012036003 +A0:n43012034005 +58852 A1:n43012036013 A0:n43012036015 +58855 A0:n43012036015 +A1:n43012036015 +58863 A0:n43012037003 A1:n43012037004 +58867 A0:n43012034005 +58876 A1:n43012038003 +58878 A0:n43012038004 A1:n43012038008 +58881 A0:n43012038011 A1:n43012038014 +58890 A1:n43012038018 A2:n43012038020 +58894 A0:n43012034005 A1:n43012039005 +A0:n43012034005 +58898 A0:n43012039009 +58900 A0:n43012038019 A1:n43012040004 +58905 A0:n43012038019 A1:n43012040009 +58911 A0:n00000000000 +58915 A0:n00000000000 +58919 A1:n00000000000 +58921 A0:n43012038019 A1:n43012040023 +58924 A1:n43012041001 A0:n43012041003 +58927 A0:n43012041003 A1:n43012041007 +58932 A0:n43012041003 +58942 A0:n43012042007 +58950 A0:n43012042007 +58956 A0:n43012042007 A1:n43012043004 +58969 A0:n43012044001 +58971 A0:n43012044001 +58973 A0:n00000000000 +58977 A0:n43012044007 +58983 A0:n43012043012 A1:n43012044018 +58987 A0:n00000000000 A1:n43012045004 +58989 A0:n43012045003 A1:n43012045007 +58991 A0:n43012044017 A1:n43012045008 +58998 A0:n43012046001 +59002 A0:n00000000000 +59009 A0:n43012046010 +59013 A0:n43012047003 A1:n43012047007 +59019 A0:n43012047003 +59022 A0:n43012047011 A1:n43012047014 +59026 A0:n43012044001 +59028 A0:n43012044001 A1:n43012047021 +59033 A0:n43012044001 A1:n43012047026 +59037 A0:n00000000000 A1:n43012048003 +59041 A0:n00000000000 A1:n43012048008 +59045 A0:n43012048002;n43012048006 A1:n43012048012 +59047 A0:n00000000000 A1:n43012048013 +59052 A0:n43012044001 A1:n43012048016 +59054 A0:n43012048018 A1:n43012048020 +59065 A0:n43012049002 +59068 A0:n43012049011 A1:n43012049010 +59074 A0:n43012049012 A2:n43012049013 A1:n43012049014 +59076 A0:n43012044001 A1:n43012049016 +59079 A0:n43012044001 A1:n43012049019 +59081 A0:n43012044001 +59092 A1:n43012050010 A0:n43012050012 +59094 A2:n43012050016 A0:n43012050018 +59099 A0:n43012044001 +59108 A0:n43013001009 +59110 A0:n43013001014 +59115 A0:n43013001009 +59123 A0:n43013001009 A1:n43013001026 +59132 A0:n43013001009 A1:n43013001034 +59136 A0:n43013002002 +59140 A0:n43013002005 +59145 A1:n43013002013 A0:n43013002014 +59150 A0:n43013001009 +59153 A1:n43013003003 A2:n43013003005 A0:n43013003007 +59164 A0:n43013001009 +59169 A0:n43013001009 +A1:n43013001009 +59175 A0:n43013001009 A1:n43013004008 +59179 A0:n43013001009 A1:n43013004011 +59181 A0:n43013001009 A1:n43013004013 +59184 A0:n43013001009 A1:n43013005003 +59190 A0:n43013001009 A1:n43013005009;n43013005015 +A0:n43013001009 A1:n43013005011 +59197 A0:n43013001009 +59202 A0:n43013001009 +59204 A0:n43013001009 +59208 A0:n43013006004 A2:n43013006007 +59212 A0:n43013006009 A1:n43013006013 +59216 A0:n43013007002 +59219 A0:n43013007002 A2:n43013007005 +59223 A1:n43013007006 A0:n43013007007 +59226 A1:n43013007008 A0:n43013007009 +59229 A0:n43013006004 +59232 A2:n43013008002 A0:n43013008003 +59237 A0:n43013007002 A1:n43013008009 +59244 A0:n43013008014 A2:n43013008015 +59249 A0:n43013008014 A1:n43013008019 +59252 A0:n43013008003 A1:n43013008022 +59256 A2:n43013009002 A0:n43013009003 +59273 A2:n43013010002 A0:n43013010003 +59277 A0:n00000000000 +59279 A0:n43013010005 A1:n43013010009 +59285 A0:n43013010005 A1:n43013010012 +59298 A0:n43013010003 A1:n43013011004 +59300 A0:n00000000000 A1:n43013011005 +59304 A0:n43013010003 +59312 A0:n43013010003 A1:n43013012005 +59317 A0:n43013010003 A1:n43013012010 +59322 A0:n43013010003 +59324 A0:n43013010003 A2:n43013012016 +59326 A0:n43013005013 A1:n43013012019 +59328 A0:n43013010003 A1:n43013012018 A2:n43013012020 +59331 A0:n43013013001 A2:n43013013003 A1:n43013013005;n43013013008 +59340 A0:n43013005013 +59351 A0:n43013014003 A1:n43013014007 +59357 A0:n43013014014 A1:n43013014017 +A0:n43013005013 A1:n43013014019 +59364 A0:n43013014009 A1:n43013015001 A2:n43013015004 +59369 A0:n43013015007 A1:n00000000000 A2:n43013015009 +59373 A0:n43013015011 +59376 A0:n43013014009 A2:n43013016004 +59389 A0:n00000000000 A1:n43013016017 +59393 A0:n43013005013 A1:n43013017002 +59397 A0:n43013005013 A1:n43013017008 +59403 A0:n43013014009 +59405 A0:n43013018006 A1:n43013018009 +59407 A0:n43013014009 A1:n43013018008 +59412 A1:n43013018013 +59414 A0:n00000000000 A1:n43013018019 +59418 A0:n43013018016 A1:n43013018024 +59426 A0:n43013014009 A2:n43013019004 +59430 A0:n43013018020 +59432 A0:n43013005013 +59434 A0:n43013018020 +59440 A0:n43013014009 A2:n43013020004 +59443 A0:n00000000000 A1:n43013020009 +59446 A0:n43013014009 A1:n43013020008 +59448 A0:n43013020006 A1:n43013020010 +59452 A0:n00000000000 A1:n43013020014 +A0:n43013020015 A1:n43013020018 +59455 A0:n43013003019 A1:n43013020019 +59458 A0:n43013021003 A1:n43013021001 +59460 A1:n43013021003 +59464 A0:n43013021003 +59466 A0:n43013021003 +59469 A0:n43013021003 A2:n43013021015 +59475 A0:n43013021016 A1:n43013021020 +59477 A0:n43013022005 +59482 A0:n43013022005 A1:n43013022009 +59485 A0:n43013021003 +59487 A0:n43013023003 +59499 A1:n43013023013 A0:n43013023016 +59503 A2:n43013024003 A1:n00000000000 A0:n43013024004 +59508 A0:n43013023003 A2:n43013024008 +59510 A0:n43013023003 +59517 A0:n43013023003 +59524 A0:n43013025002 A2:n43013025010 +59530 A0:n43013026004 +59537 A2:n43013026006 A0:n43013026007 A1:n43013026011 +59541 A0:n43013026004 A1:n43013026011 A2:n43013026014 +59544 A0:n43013026004 A1:n43013026017 +59547 A0:n43013026004 A1:n43013026017 +59549 A0:n43013026004 A1:n43013026017 A2:n43013026022 +59558 A0:n43013027010 +59564 A2:n43013027013 A0:n43013027014 +59568 A0:n43013026022 A1:n43013027015 +A0:n43013026022 A1:n43013027016 +59572 A0:n43013028003 A1:n43013028009 +59575 A0:n00000000000 +59579 A0:n43013027014 A1:n43013028001 A2:n43013028010 +59583 A0:n43013029001 +59587 A1:n43013029006 A0:n43013029008 +59590 A2:n43013029011 A0:n43013029012 +59593 A0:n43013029008 A1:n43013029016 +59596 A0:n43013029001;n43013029008;n43013029012;n43013028006 A1:n43013029015 +59605 A0:n43013029008 A2:n43013029022 A1:n43013029024 +59607 A0:n43013029008 A1:n43013030004 +59611 A0:n43013030005 +59614 A0:n00000000000 +59618 A0:n43013029008 +A0:n43013031005 +59622 A1:n43013031009 +59630 A1:n43013031014 +59636 A1:n43013032003 +59642 A0:n43013032009 A1:n43013032011 +59648 A0:n43013032003 A1:n43013032017 +59656 A0:n43013033001 A1:n43013033008 +59660 A0:n43013031005 A2:n43013033013 +59666 A0:n43013033016 +A0:n43013033013 +59670 A1:n43013033021 A0:n43013033018 +59673 A0:n43013031005 A1:n43013033023 +59677 A0:n43013031005 A1:n43013034001 A2:n43013034004 +59680 A0:n43013033001 A1:n43013034007 +59683 A0:n43013031005 A1:n43013034010 +59688 A0:n43013034013 A1:n43013034015 +59692 A0:n43013035004 +59700 A0:n43013033001 A1:n43013035010 +59703 A2:n43013036002 A0:n43013036003 +59709 A0:n43013036005 +A0:n43013036009 +59713 A0:n43013036009 +59716 A0:n43013036003 A1:n43013036014 +59718 A0:n43013036003 A1:n43013036017 +59720 A0:n43013036003 A1:n43013036009 +59722 A2:n43013037002 A0:n43013037003 +59729 A0:n43013037003 A1:n43013037011 +59731 A0:n43013037003 A1:n43013037010 +59738 A0:n43013037003 A1:n43013037013 +A0:n43013038002 +59746 A0:n43013037003 A1:n43013038004 +59749 A0:n43013038002 A2:n43013038012 +59754 A0:n43013038015 +59757 A0:n43013037003 A1:n43013038020 +59761 A1:n43014001005 +59765 A0:n43013023006;n43013037003 +59772 A0:n43013023006;n43013037003 +59786 A0:n43013038002 A2:n43014002015 +59789 A0:n43013038002 +A0:n43013038002 A1:n43014002019 A2:n43014002020 +59795 A1:n43013038002 +59797 A0:n43013038002 A1:n43014003006 A2:n43014003007 +59801 A0:n43013038002 +59803 A0:n43013038002 A1:n43014003012 +59817 A0:n43014004003 +A0:n43013023006;n43013037003 A1:n43014004007 +59821 A2:n43014005002 A0:n43014005003 +59826 A0:n43014005003;n43013023006;n43013037003 A1:n43014005008 +59828 A0:n43014005004 +59830 A0:n43014005003;n43013023006;n43013037003 A1:n43014005012 +59833 A2:n43014006002 A0:n43014006003 +59847 A0:n43014006014 +59856 A0:n43013023006;n43014005003;n43013037003 A1:n43014007003 +59863 A0:n43013023006;n43014005003;n43013037003 A1:n43014007006 +59866 A0:n43013023006;n43014005003;n43013037003 A1:n43014007013 +59869 A0:n43013023006;n43014005003;n43013037003 A1:n43014007006 +A2:n43014008002 A0:n43014008003 +59874 A0:n43014008004 A2:n43014008006 A1:n43014008008 +59879 A0:n43014008005 AA2:n43014008011 +59881 A2:n43014009002 A0:n43014009004 +59892 A0:n43014009014 A1:n43014009013 +59896 A0:n00000000000 A1:n43014009017 +59898 A0:n43014009016 A1:n43014009020 +59903 A0:n43014009022 +A0:n43014009004 A2:n43014009025 A1:n43014009027 +59909 A0:n43014009014 +59925 A1:n43014010016 A0:n43014010017 A2:n43014010019 +59930 A0:n43014009004 A1:n43014010015 +59936 A0:n43014010026 +A0:n43014010026 A1:n43014010032 +59960 A0:n43013023006;n43014009014;n43014005003;n43013037003 +59963 A0:n43014009004 A2:n43014012004 +59966 A0:n00000000000 +59973 A1:n43014012011 A0:n43014012012 +59975 A1:n43014012010 A0:n43014012014 +59979 A0:n43014012006 A1:n43014012017 +59985 A0:n43014012021 +59990 A0:n43013023006;n43014009014;n43014005003;n43013037003 A1:n43014013002 +59996 A0:n43014009004 A1:n43014013010 +59998 A1:n43014013015 +60006 A0:n43013023006;n43014009014;n43014005003;n43013037003 A1:n43014014002 A2:n43014014004 +60013 A0:n43014014009 +60015 A0:n43013023006;n43014009014;n43014005003;n43013037003 A1:n43014015003 +60021 A0:n43013023006;n43014009014;n43014005003;n43013037003 A1:n43014015005 +60023 A0:n43014016001 A1:n43014016004 +60029 A0:n43014016004 A1:n43014016007 A2:n43014016009 +60043 A0:n43014017007 A1:n43014017005 +60047 A1:n43014017010 A0:n43014017007 +60050 A0:n43014017007 A1:n43014017014 +60053 A0:n43014017007 +60055 A0:n43014017017 A1:n43014017019 +60060 A0:n43014017002 +60066 A0:n43014009004 A1:n43014018003 +60069 A0:n43014009004 +60079 A0:n43014019005 A1:n43014019006 +60082 A0:n43014019009 A1:n43014019012 +60086 A0:n43014019014 +60089 A0:n43014019017 +60094 A0:n43014020006 +60110 A0:n00000000000 A1:n43014021004 +60115 A0:n00000000000 A1:n43014021008 +60120 A0:n00000000000 A1:n43014021013 +60124 A0:n00000000000 A1:n43014021017 +60126 A1:n43014021016 +60132 A0:n43014021023 A1:n43014021025 +60135 A0:n43014009004 A2:n43014021028 A1:n43014021029 +60138 A2:n43014022002 A0:n43014022003 +60147 A0:n43014022009 +60149 A0:n43014022007 A1:n43014022014;n43014022019 +60151 A0:n43014022007 A2:n43014022012 A1:n43014022015 +60157 A0:n43014023002 +60160 A0:n43014023002 A2:n43014023005 +60164 A0:n43014023007 A1:n43014023009 +60169 A0:n43014023007 A1:n43014023011 +60174 A0:n43014023016 A1:n43014023019 +60179 A0:n43014023016;n43014023002 +60184 A0:n43014023002;n43014023016 A1:n43014023025 +60187 A0:n00000000000 A1:n43014024004 +60193 A0:n43014024003 A1:n43014024006 +60198 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43013029008 A1:n43014024013 +60204 A0:n43014024022 A1:n43014024021 +60208 A0:n43014023002 A1:n43014025001 A2:n43014025003 +60212 A0:n43014023002 +60221 A1:n43014026008 A0:n43014026011 +60230 A0:n43014026016 A2:n43014026017 A1:n43014026019 +60233 A0:n43014026003 A2:n43014026022 A1:n43014026025 +60237 A1:n43014026024 A2:n43014026026 A0:n43014026027 +60241 A0:n43014023002 A1:n43014027001 A2:n43014027003 +60246 A0:n43014023002 A1:n43014027004 A2:n43014027008 +60252 A0:n43014027012 A1:n43014027001 +60254 A0:n43014027014 A1:n43014027004 A2:n43014027016 +60257 A1:n43014027021 +60262 A0:n43014027021 +A0:n43013023006;n43014005003;n43014008003;n43013029008;n43013037003 +60266 A0:n43014028003 A2:n43014028005 +60268 A0:n43014023002 +60270 A0:n43014023002 +60274 A0:n43013023006;n43014005003;n43014008003;n43013029008;n43013037003 A1:n43014028013 +60277 A1:n43013023006;n43014005003;n43014008003;n43013029008;n43013037003 +60279 A0:n43014023002 +60291 A0:n43014023002 A2:n43014029004 +60294 A0:n43014028017 +60297 A0:n43014028017 +A0:n43013023006;n43014005003;n43014008003;n43013029008;n43013037003 +60301 A0:n43014023002 A1:n43014030002 +60305 A0:n43014030011 +60314 A0:n43014030011 A1:n43014030017 +60318 A0:n43014031005 +60322 A0:n43014023002 A1:n43014031009 +60327 A2:n43014031013 A0:n43014031015 +60332 A0:n43014023002 +A1:n43013023006;n43014005003;n43014008003;n43013029008;n43013037003 +A0:n43013023006;n43014023002;n43014005003;n43014008003;n43013029008;n43013037003 +60354 A0:n43015002002 A1:n43015002007 +60356 A0:n43015001009 A1:n43015002009 +60362 A0:n00000000000 A1:n43015002013 +A0:n43015001009 A1:n43015002016 +60368 A0:n43015002014 A1:n43015002018 +60377 A0:n43014023002 A1:n43015003008 A2:n43015003010 +60379 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60389 A0:n43015004009 A1:n43015004013 +60391 A0:n43015004009 A1:n43015004012 +60396 A0:n43015004009 +60407 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60416 A0:n00000000000 +60423 A0:n43015005015 A1:n43015005017 +60430 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015005024 +A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015005025 +60436 A0:n43015006003 +60439 A1:n43015006003 +60445 A1:n43015006011 +60447 A0:n00000000000 A1:n43015006016 +60453 A0:n00000000000 +60455 A1:n43015006011 +60457 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60466 A0:n43015007007 +60469 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015007012 +A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015007014 +60472 A0:n43015007014 +60476 A1:n43015008005 +60483 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015008008 +60489 A1:n43015009003 A0:n43015009005 +60495 A0:n43015009006 A1:n43015009007 +A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60506 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015010003 +A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60519 A0:n43015010012 A1:n43015010017 +60521 A0:n43014023002 +60527 A0:n43014023002 A1:n43015011001 A2:n43015011003 +60541 A1:n43015011014 +60549 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015012009 +60552 A0:n43014023002 A1:n43015012012 +60558 A1:n43015013003 A0:n43015013004 +60564 A0:n43015013007 A1:n43015013009 +60574 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015014009 +60577 A1:n43015014007 A0:n43015014008 A2:n43015014010 +60580 A0:n43014023002 A1:n43015015003 +60587 A0:n43015015007 A1:n43015015011 +60589 A1:n43015015010 A0:n43015015014 +60595 A0:n43014023002 A1:n43015015015 +60600 A0:n43014023002 A1:n43015015021 +60605 A0:n43014023002 A1:n43015015022 A2:n43015015028 +60610 A0:n43015016002 A1:n43015016003 +60613 A0:n43015016006 A1:n43015016008 +60616 A0:n43014023002 A1:n43015016011 +60620 A0:n43015016013 +60623 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015016016 +60628 A0:n43015016020 +60633 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015016024 A2:n43015016029 +60640 A0:n43015016029 A1:n43015016025 A2:n43015016035 +60643 A0:n43014023002 A1:n43015017001 A2:n43015017003 +60646 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015017006 +60652 A0:n43015018003 A1:n43015018004 +A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60658 A0:n43015018003 A1:n43015018008 +60669 A0:n43015019007 A1:n43015019010 +60679 A0:n43015019020 A1:n43015019022 +60686 A1:n43015019029 A0:n43015019031 +60690 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43015020003 +60695 A1:n43015020004 A0:n43015020005 A2:n43015020007 +60706 A0:n43015019031 A1:n43015020016 +60709 A0:n43015019031 A1:n43015020019 +60714 A0:n43015019031 A1:n43015020023 +60718 A0:n43015019031 A1:n43015020028 +60722 A0:n43015019031 A1:n43015021002 +60731 A0:n43015019031 A1:n43015021015 +60733 A0:n43015016029 A1:n43015021016 +60737 A0:n43014023002 +60739 A0:n43014023002 A2:n43015022006 +60743 A0:n43015019031 A1:n43015022007 +60748 A0:n43015019031 A1:n43015022012 +60755 A0:n43015019031 A1:n43015023002 +60760 A0:n43015023003 A1:n43015023006 +60765 A0:n43014023002 A1:n43015024003 +60771 A1:n43015024008 A0:n43015024009 +60774 A0:n43015023003 A1:n43015024012 +60778 A0:n43015023003 A1:n43015024022;n43015024025 +60780 A0:n43015023003 A1:n43015024022;n43015024025 +60789 A1:n43015025005 +60797 A1:n43015025005 +60799 A0:n00000000000 A1:n43015025014 +60803 A0:n43015026004 +60808 A1:n43015026005 A0:n43015026006 A2:n43015026008 +60821 A0:n43015026016 +60823 A0:n43015026021 +60829 A0:n43015027002 +60837 A0:n43014023002 A1:n43016001001 A2:n43016001003 +60841 A1:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +60843 A0:n00000000000 A1:n43016002003 +60846 A0:n43016002006 +60851 A0:n00000000000 A1:n43016002011 +60853 A0:n43016002010 A1:n43016002014 +60855 A0:n43016002010 A1:n43016002013 A2:n43016002016 +60860 A0:n43016002010 A1:n43016003002 +60863 A0:n43016002010 A1:n43016003008 +60870 A0:n43014023002 A1:n43016004002 A2:n43016004004 +60874 A0:n43016004009 +60878 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43016004012 +60882 A0:n43016004014 A2:n43016004016 +60890 A0:n43014023002 A1:n43016004017 A2:n43016004019 +60897 A0:n43014023002 +60900 A0:n43016003008 A1:n43016005007 +60906 A0:n43016005009 A1:n43016005013 +60909 A0:n43014023002 +60913 A0:n43014023002 A1:n43016006003 A2:n43016006005 +60917 A0:n43016006007 A1:n43016006011 +60925 A0:n43016007002 A1:n43016007004 A2:n43016007006 +60927 A0:n43016007011 +60931 A0:n43016007010 +60935 A0:n43014023002 +60940 A0:n43016007017 +60945 A1:n43014023002 +A0:n43014023002 A1:n43016007027 +60951 A0:n43016007017 +60953 A0:n43016008003 A1:n43016008006 +60969 A0:n43016008006 +60979 A0:n43014023002 +60982 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43016010012 +60993 A1:n43016011006 +60995 A0:n43014023002 A1:n43016012005 +60998 A0:n43014023002 A1:n43016012002 A2:n43016012004 +61001 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43016012009 +A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 +61006 A0:n43016013004 +61012 A0:n43016013006 A1:n43016013010 +61020 A0:n43016013006 +61025 A0:n43016013006 A1:n43016013021 +A0:n43016013006 A1:n43016013022 +61029 A0:n00000000000 +A0:n43016013006 A1:n43016013026 A2:n43016013028 +61034 A0:n43016014001 A1:n43016014002 +61039 A0:n43016013006 +61041 A0:n43016013006 A2:n43016014011 +61045 A1:n43016015002 A0:n43016015005 +61052 A0:n43014023002 +61057 A0:n43016013006 +61059 A0:n43016013006 A2:n43016015018 +61064 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43016016005 +61070 A0:n43013023006;n43013037003;n43014005003;n43014008003;n43014022003 A1:n43016016011 +61073 A0:n43016017005 +61084 A0:n43014023002 A1:n43016017012 A2:n43016017014 +61089 A0:n43016017005 A1:n43016017019 +61095 A0:n43016017005 A1:n43016017025 +61099 A0:n43014023002 +61104 A0:n43016017005 +61109 A0:n43014023002 A1:n43016018006 +61113 A0:n43016017005 A1:n43016018013 +61115 A0:n43014023002 A1:n43016018012 +A0:n43016019002 +61119 A0:n43016017005 A1:n43016019006 +61121 A0:n43016017005 A1:n43016019005 +61123 A0:n43016019002 A2:n43016019009 +61127 A0:n43016017005 +61131 A0:n43016019002 +61135 A0:n43016017005 A1:n43016019021 +61141 A0:n43016017005 A1:n43016019027 +61145 A0:n43016019002 A2:n43016020004 +61148 A0:n43016017005 +61150 A0:n43016020009 +61155 A1:n43016020012 +61157 A1:n43016020014 +61168 A0:n43016021002 +61170 A0:n43016021002 A1:n43016021005 +61172 A0:n43016021010 +61178 A0:n43016021002 A1:n43016021016 +61182 A0:n43016021002 A1:n43016021020 +61189 A1:n43016021026 +61200 A0:n43016022002 A1:n43016022006 +61203 A0:n43016019002 A1:n43016022011 +61206 A1:n43016022016 +61215 A1:n43016022019 A0:n43016022021 +61225 A0:n43016017005 A2:n43016023006 A1:n43016023009 +61229 A0:n43016019002 A2:n43016023013 +61233 A0:n43016017005 A1:n43016023015 A2:n43016023018 +61245 A0:n43016017005 A1:n43016024005 +61251 A0:n43016017005 +61253 A0:n43016017005 +61259 A1:n43016024015 +61263 A0:n43016019002 A1:n43016025001 A2:n43016025005 +61265 A0:n43016025007 +61271 A0:n43016019002 A2:n43016025013 +61278 A0:n43016019002 A2:n43016025020 +61288 A0:n43016017005 +61291 A0:n43016019002 A2:n43016026013 +61295 A0:n43016026015 A1:n43016026018 +61304 A0:n43016027004 A1:n43016027006 +61309 A0:n43016027008 A1:n43016027009 +61311 A0:n43016017005 +61317 A0:n43016027014 +A0:n43016019002 +61323 A0:n43016019002 +61328 A0:n43016019002 A1:n43016028013 +61332 A0:n43016019002 +61336 A0:n43016029003 +61340 A0:n43016019002 +61344 A0:n43016019002 +61348 A0:n43016019002 A1:n43016029011 +61350 A0:n43016029003 +61352 A0:n43016019002 A1:n43016030005 +61357 A0:n43016019002 A1:n43016030008 +61361 A0:n43016030011 A1:n43016030012 +61364 A0:n43016029003 +61368 A0:n43016029003 +A2:n43016031002 A0:n43016031003 +61373 A0:n43016029003 +A0:n43016029003 +A0:n43016032003 +61378 A0:n43016032003 +61380 A1:n43016032008 +61387 A0:n43016029003 A1:n43016032012 +61399 A0:n43016031003 A1:n43016033001 A2:n43016033003 +61405 A0:n43016029003 A1:n43016033007 +61410 A0:n43016029003 A1:n43016033012 +61412 A0:n43016029003 +61414 A0:n43016033016 A1:n43016033019 +61418 A1:n43017001001 A0:n43017001003 +61421 A0:n43017001003 A1:n43017001007 +61428 A0:n43017001003 +61430 A0:n43017001016 +61433 A0:n43017001013 A1:n43017001020 +61440 A0:n43017001023 A1:n43017001025 +61443 A0:n43017001013 A2:n43017002003 A1:n43017002004 +61451 A0:n43017001013 A1:n43017002009 A2:n43017002011 +61453 A0:n43017001023 A2:n43017002013 A1:n43017002014 +61464 A0:n43017002010 A1:n43017003009;n43017003016 +61472 A0:n43017001013 A1:n43017003015 +61477 A0:n43017004001 A1:n43017004002 +61481 A0:n43017001003 A1:n43017004008 +61485 A0:n43017003013 A1:n43017004010 A2:n43017004012 +61488 A0:n43017001003 +61492 A1:n43017005004 A0:n43017005005 +61500 A0:n43017001003 A1:n43017005011 +61505 A0:n43017005016 +61508 A0:n43017001003 A1:n43017006004 A2:n43017006006 +61515 A0:n43017005006 A1:n43017006007 A2:n43017006009 +61524 A0:n43017005006 A2:n43017006015 A1:n43017006016 +61529 A0:n43017006006 A1:n43017006020 +61531 A0:n43017006006 +61535 A0:n43017005006 A1:n43017007005 A2:n43017007007 +61544 A0:n43017005006 A1:n43017008004 A2:n43017008006 +61546 A0:n43017001003 A1:n43017008003 A2:n43017008008 +61550 A0:n43017008010 +61552 A0:n43017006006 +61557 A0:n43017001003 +61559 A0:n43017006006 +61563 A0:n43017008022 A1:n43017008023 +61567 A0:n43017009001 +61572 A0:n43017001003 +61576 A0:n43017005006 A1:n43017009012 A2:n43017009014 +61592 A1:n43017001003 +61610 A0:n43017011013 +61613 A0:n43017011017 A1:n43017011020 +61620 A0:n43017011017 A1:n43017011025 A2:n43017011027 +61632 A0:n43017012005 A1:n43017012007 +61639 A0:n43017011017 A1:n43017012012 A2:n43017012014 +61642 A0:n43017001003 +61647 A0:n43017012018 +61657 A1:n43017012030 +61662 A0:n43017001003 +61665 A0:n43017001003 A1:n43017013007 +61670 A0:n43017009013 A1:n43017013018 +61675 A1:n43017013015 +61679 A0:n43017014001 A2:n43017014003 A1:n43017014005 +61687 A0:n43017014009 A1:n43017014011 +61703 A0:n43017001003 +61705 A0:n43017011017 A1:n43017015005 +61712 A0:n43017011017 A1:n43017015012 +61729 A0:n43017011017 A1:n43017017002 +61742 A0:n43017011017 A1:n43017018002 +61747 A0:n43017018007 A1:n43017018009 +61756 A0:n43017019004 A1:n43017019006 +61760 A1:n43017019010 +61769 A0:n43017001003 +61775 A0:n00000000000 +61803 A0:n43017021021 +61807 A0:n43017021024 A1:n43017021025 +61812 A0:n43017021007 A1:n43017022004 A2:n43017022006 +61814 A0:n43017022001 A1:n43017022003 A2:n43017022008 +61831 A1:n43017009013;n43017020011 +61835 A0:n43017023016 +61841 A0:n43017023018 A1:n43017023019 +61843 A0:n43017021007 A1:n43017023023 +61847 A0:n43017021007 A1:n43017023025 +61850 A0:n43017024001 A1:n43017024002 A2:n43017024004 +61852 A0:n43017001003 +61862 A0:n43017024003 A1:n43017024017 +61868 A0:n43017024001 A1:n43017024020 A2:n43017024022 +61871 A0:n43017024001 A1:n43017024025 +61883 A0:n43017025005 A1:n43017025006 +61887 A0:n43017025009 A1:n43017025011 +61890 A0:n43017025014 +61894 A0:n43017025017 A1:n43017025018 +61896 A0:n43017001003 A2:n43017026003 A1:n43017026005 +61902 A0:n43017001003 +61907 A0:n43017025001 A1:n43017026014 +61916 A0:n43018001003 A1:n43018001001 +61918 A0:n43018001003 +61933 A0:n43018001020;n43018001023 +61940 A0:n43018002004 A1:n43018002009 +61944 A0:n43018002004 A1:n43018002007 +61950 A1:n43018002013 +61960 A0:n43018003003 A1:n43018003006;n43018003015 +61972 A0:n43018003003 +61982 A0:n43018004001 A1:n43018004006 +61985 A0:n00000000000 +61988 A0:n43018004001 +61990 A0:n43018004001 A2:n43018004012 +61993 A0:n43018003006;n43018003015 A1:n43018004013 +A1:n43018003006;n43018003015 A2:n43018005002 +61999 A0:n43018004001 A2:n43018005007 +62004 A0:n43018005013 +62008 A0:n43018005013 A1:n43018005016 +62014 A0:n43018004001 A2:n43018006004 +62018 A0:n43018003006;n43018003015;n43018005013 +62023 A0:n43018003006;n43018003015;n43018005013 +62027 A0:n43018004001 A1:n43018007004 +62030 A0:n43018003006;n43018003015 A1:n43018007005 +62033 A0:n43018007007 +62037 A0:n43018008002 +62039 A0:n43018008002 A2:n43018008004 +62047 A0:n43018003006;n43018003015 A1:n43018008010 +A0:n43018003006;n43018003015 A1:n43018008014 +62050 A0:n43018008013 +62052 A1:n43018009004 +62056 A0:n43018008002 A1:n43018009005 +62059 A0:n43017025001 A1:n43018009008 A2:n43018009010 +62062 A0:n43018008002 A1:n43018009015 +62069 A0:n43018010001 A1:n43018010005 +62071 A0:n43018010001 A1:n43018010007 +62074 A0:n43018010001 A1:n43018010013 +62080 A0:n43018010001 A1:n43018010018 +62093 A0:n43018011004 A2:n43018011006 +62098 A0:n43018011006 A1:n43018011009 +62107 A1:n43018011015 A2:n43018011017 A0:n43018011019 +62113 A0:n43018011004 A1:n43018011023 +62126 A0:n43018012003;n43018012006;n43018012009 A1:n43018012014 +62130 A0:n43018012003;n43018012006;n43018012009 A1:n43018012017 +62133 A0:n43018012003;n43018012006;n43018012009 +62152 A0:n00000000000 A2:n43018014007 +62156 A0:n43018014012 +62159 A0:n43018014011 +62164 A1:n43018015004 A0:n43018015005;n43018015009 +62181 A0:n43018015012 +62192 A0:n43018016003 +62198 A0:n43018016012 +62208 A0:n43018016012 A2:n43018016022 +62212 A0:n43018016012 A1:n43018016026 +62216 A2:n43018017004 A0:n43018017006 +62233 A0:n43018017020 +62238 A0:n43018018004;n43018018007 +62245 A0:n43018018004;n43018018007 A1:n43018018008 +62248 A0:n00000000000 +62250 A0:n43018018004;n43018018007 +62258 A0:n43018018019 +62260 A0:n43018018019 +62264 A0:n43018019003 A1:n43018019006 +62276 A2:n43018020002 A0:n43018020003 +62281 A0:n43018020004 A2:n43018020008 +62286 A0:n43018020009 +62297 A0:n43018020021 +62301 A0:n43018020003 A1:n43018020027 +62305 A0:n43018019003 A1:n43018021002 +A0:n43018019003 A1:n43018021006 +62308 A0:n00000000000 +62310 A0:n43018020003 A1:n43018021007 A2:n43018021009 +62312 A0:n43018019003 +62314 A0:n43018021011 A1:n43018021014 +62316 A1:n43018021013 A0:n43018021015 +62321 A1:n43018022001 A0:n43018022003 +62323 A0:n43018022005 +62326 A0:n43018022005 A1:n43018022010 A2:n43018022012 +62330 A0:n43018022005 +62332 A0:n43018022012 A2:n43018022017 +62335 A2:n43018023002 A0:n43018023003 +62340 A0:n43018023003 +A0:n43018022005 +62350 A0:n43018022005 A1:n43018023015 +62352 A1:n43018024003 A0:n43018024005 +62356 A1:n43018023003 +62365 A0:n43018025003 +62367 A0:n43018025003 A0:n43018025003 +62369 A0:n00000000000 A2:n43018025010 +62379 A0:n43018025020 +62382 A0:n43018025003 +62385 A0:n43018026002 +62395 A0:n43018026012 A1:n43018026014 +62401 A0:n43018026016 A1:n43018026023 +62410 A0:n43018027004 +62415 A0:n43018027007 +62417 A0:n43018031019 A1:n43018028004 +62427 A0:n00000000000 +62432 A0:n43018028015 +62438 A1:n43018031019 +62440 A0:n43018031019 A1:n43018028027 +62444 A0:n43018029004 +62451 A0:n43018029004 +62457 A0:n43018031019 A1:n43018029011 +A1:n43018031019 +62460 A0:n43018031019 A2:n43018030004 +62465 A0:n43018030008 A1:n43018030009 +62471 A0:n43018031019 A2:n43018030013 A1:n43018030015 +62474 A2:n43018031003 A0:n43018031005 +62478 A1:n43018031007 A0:n43018031008 +62486 A0:n43018031019 A1:n43018031015 +62488 A2:n43018031017 A0:n43018031019 +62494 A0:n43018031023 +A0:n43018031019 A1:n43018031024 +62502 A1:n43018032003 +62504 A0:n43018032005 A1:n43018032007 +A0:n43018032005 A1:n43018032012 +62508 A0:n43018032005 A1:n43018032013 +A0:n43018032005 +62511 A0:n43018033008 +62519 A0:n43018033008 A1:n43018033012 +62523 A0:n43018033008 A2:n43018033015 +62531 A0:n43018034002 +62537 A0:n43018034005 A1:n43018034006 +62540 A0:n43018034009 A2:n43018034011 +62544 A0:n43018035003 +62558 A0:n43018035009;n43018035014 A1:n43018035016 A2:n43018035017 +62562 A0:n43018034002 A1:n43018035018 +A0:n43018036002 +62590 A0:n43018036024 +62593 A1:n43018036002 A2:n43018036033 +62606 A2:n43018037003 A0:n43018037005 +62614 A0:n43018037012 +62618 A0:n43018037013 +62625 A1:n43018037018 +62629 A0:n43018037012 +62634 A0:n43018037012 A2:n43018037032 +62639 A0:n00000000000 +62643 A0:n43018037038 A1:n43018037042 +62647 A2:n43018038002 A0:n43018038004 +62656 A0:n43018038004 A1:n43018038009 +62658 A0:n43018038004 +62663 A0:n43018038004 A2:n43018038018 +62667 A0:n43018038019 A1:n43018038024 +62677 A0:n43018038004 A1:n43018039006 A2:n43018039008 +62683 A0:n43018038015 A1:n43018039014 +A0:n43018038004 A2:n43018039015 A1:n43018039017 +62691 A0:n43018038015 +62693 A0:n43018038015 +62706 A0:n43019001005 A1:n43019001007 +62712 A0:n43019001005 +62716 A0:n43019002003 A1:n43019002005 +62720 A0:n43019002003 +62727 A0:n43019002003 A1:n43019002016 +62730 A0:n43019002003 +62734 A0:n43019002003 +A0:n43019003009 +62741 A0:n43019002003 A2:n43019003014 A1:n43019003015 +62745 A0:n43019004006 +62751 A0:n43019004006 A2:n43019004009 +62753 A0:n43018038015 +A0:n43019004006 A2:n43019004012 A1:n43019004013 +62759 A0:n43018038015 +62763 A0:n43019004006 A1:n43019004019 +62767 A0:n43019005004 +62771 A0:n43019005004 A1:n43019005009;n43019005013 +62780 A0:n43019004006 A2:n43019005016 +62782 A0:n43018038015 +62787 A1:n43019006004 A0:n43019006006;n43019006009 +62794 A0:n43019006006;n43019006009 +A0:n43019006006;n43019006009 +A0:n43019004006 +A0:n43019004006 +A2:n43019006015 A0:n43019006017 +62802 A1:n43019006019 A0:n43019006020 +62806 A0:n43019006006;n43019006009 +62810 A0:n43019006023 A1:n43019006029 +62814 A2:n43019007002 A0:n43019007004 +62820 A0:n43019007005 A1:n43019007006 +62825 A0:n43019005004 A1:n43019007013 +A0:n43019005004 +62831 A0:n43019005004 A1:n43019007017 +62834 A0:n43019008005 A1:n43019008008 +62841 A1:n43019008005 +62843 A0:n43019008005 +62849 A0:n43019008005 A2:n43019009010 +62860 A0:n43019009016 A1:n43019009017 A2:n43019009020 +62863 A2:n43019010003 A0:n43019010005 +62869 A0:n43019009016 A2:n43019010006 +62871 A0:n43019009016 +62874 A0:n43019010005 A1:n43019010012 +A0:n43019010005 A1:n43019010015 +62879 A0:n43019010005 A1:n43019010017 +A0:n43019010005 A1:n43019010020 +62882 A0:n43019011002 +62885 A0:n43019010005 A1:n43019011005 +62893 A1:n43019011005 A2:n43019011013 +62899 A0:n00000000000 A1:n43019011019 A2:n43019011020 +62904 A0:n43019011018 A1:n43019011022 +62909 A0:n43019012004 A1:n43019012006 +A0:n43019012004 A1:n43019012007 +62915 A0:n43019012010 +A0:n43019012010 +62919 A0:n43019012004 A1:n43019012014 +62929 A0:n00000000000 A1:n43019012024 +A0:n43019012025 A2:n43019012028 +62936 A0:n43019013003 A1:n43019013006 +62940 A0:n43019013003 A1:n43019013011 +62945 A0:n43019013003 +62956 A0:n00000000000 +62965 A0:n43019013003 A2:n43019014013 +62968 A0:n43019014013 +62973 A0:n43019015003 +62975 A0:n43019013003 +A0:n43019013003 +A0:n43019013003 A1:n43019015007 +62979 A2:n43019015009 A0:n43019015011 +62986 A0:n43019015011 A1:n43019015013 +A0:n43019015018 +62991 A0:n43019015018;n43019014013 A1:n43019015021 +62998 A0:n43019015011 A1:n43019016004 A2:n43019016005 +63002 A1:n43019013011 +63004 A0:n43019015018;n43019014013 A1:n43019016011 +63008 A0:n43019016011 A2:n43019017003 A1:n43019017005 +63012 A0:n43019016011 +63015 A0:n00000000000 +63024 A0:n43019014013;n43019015018 A1:n43019018002 +63038 A1:n43019019004 A0:n43019019006 +63044 A0:n43019019006 +63050 A1:n43019019015 +63062 A1:n43019020004 A0:n43019020005 +63074 A1:n43019020019 +63079 A1:n43019020004 +63084 A2:n43019021004 A0:n43019021006 +63092 A0:n43019021004 +63100 A0:n43019021017 +63105 A0:n43019022003 +63109 A0:n43019022003 A1:n43019022004 +A0:n43019022003 A1:n43019022005 +63115 A0:n43019023003 A1:n43019023007 +63118 A0:n43019023003 A1:n43019023010 +63123 A0:n43019023003 A1:n43019023015 +63144 A0:n43019023003 +63148 A0:n43019023003 A1:n43019024007 +63151 A0:n43019023003 +63159 A1:n43019024016 +A0:n00000000000 A1:n43019024020 A2:n43019024022 +63170 A0:n00000000000 A1:n43019024029 +63177 A0:n43019024035 A1:n43019024036 +63179 A0:n43019025009;n43019025013;n43019025017;n43019025022 +63204 A0:n43019026001 A1:n43019026009 +63210 A0:n43019026005;n43019026008 +63212 A0:n43019026001 A1:n43019026010 +A0:n43019026001 A2:n43019026014 +63217 A0:n43019026015 +63222 A0:n43019026001 A2:n43019027004 +63225 A0:n43019027005 +63234 A0:n43019027016 A1:n43019027017 +63245 A0:n43019028005 +63249 A1:n43019028008 +63251 A1:n43019028013 +63254 A0:n43019028005 +A0:n43019028005 +63259 A0:n43019029001 +63266 A0:n43019024035 A1:n43019029005 A2:n43019029010 +A0:n43019024035 A1:n43019029005 A2:n43019029015 +63273 A0:n43019030007 A1:n43019030005 +63278 A0:n43019030007 +A1:n00000000000 +63281 A0:n43019030007 A1:n43019030013 +63284 A0:n43019030007 A1:n43019030016 +63292 A0:n00000000000 +63295 A0:n43019031014 +63312 A0:n43019031003 A1:n43019031028 +63316 A1:n43019031033 +63321 A1:n43019031014 +63323 A0:n43019032004 +63328 A0:n43019032004 A1:n43019032011 +63337 A1:n43019032014 +63343 A0:n43019032004 +63345 A0:n43019032004 A1:n43019033010 +63348 A0:n43019033009 +63350 A0:n43019032004 A1:n43019033015 +63362 A0:n43019034002 A1:n43019034008 +63364 A0:n43019034013;n43019034015 +63371 A0:n00000000000 +A0:n43019035003 +63381 A0:n43019035012 +63384 A0:n43019035003 +63388 A0:n43019035019 +63390 A0:n43019036003 +63395 A1:n43019036006 +63399 A1:n43019036008 +63404 A0:n43019037004 +A0:n00000000000 +63408 A0:n00000000000 A1:n43019037008 +63412 A1:n43019038006 A0:n43019038007 +63423 A1:n43019038007 +63430 A0:n43019038007 A1:n43019038024 +63436 A0:n43019038030 +63440 A0:n43019038007 +63442 A0:n43019038007 A1:n43019038036 +63447 A0:n43019039004 +63451 A0:n43019039004 +63457 A0:n43019039004 A1:n43019039013 +63466 A0:n43019038007;n43019039004 A1:n43019040004 +63472 A0:n43019038007;n43019039004 A1:n43019040009 +63483 A0:n00000000000 +63490 A1:n43019040006 +63503 A1:n43019041018 +63516 A0:n43019038007;n43019039004 A1:n43019042015 +63527 A0:n43020001006 +63534 A0:n00000000000 +63536 A0:n43020001006 A1:n43020001021 +63539 A1:n43020001020 +63544 A0:n43020001006 +63546 A0:n43020001006 +63556 A1:n43020002013 A0:n43020002016 +63560 A0:n43020001006 A2:n43020002019 +63562 A0:n00000000000 A1:n43020002022 +63570 A0:n00000000000 A1:n43020002030 +63572 A0:n00000000000 A1:n43020002031 +63575 A0:n43020003004;n43020003008 +63583 A0:n43020003004;n43020003008 +63588 A0:n43020004004 +63596 A0:n43020004009 +63601 A0:n43020004009 +63607 A0:n43020004009 +A0:n43020004009 A1:n43020005004 +A0:n43020005006 +63614 A0:n43020004009 +63616 A0:n43020006004 +63620 A0:n43020006004 A1:n43020006007 +63623 A0:n43020006004 +63628 A0:n43020006004 A1:n43020006017;n43020007010;n43020007014;n43020007017 +63631 A0:n43020006016 +63645 A0:n43020007003 +63648 A1:n43020007003 +63654 A0:n43020008007 +63660 A0:n43020008007 +63666 A0:n43020008007 +63668 A0:n43020008007 +63671 A0:n43020008007;n43020006004 A1:n43020009005 +63675 A0:n43020009011 +63679 A0:n43020009008 +63681 A0:n43020010007 +63689 A0:n43020011001 +63694 A0:n43020011001 +63697 A0:n43020011001 +A0:n43020011001 +63703 A0:n43020011001 A1:n43020012007 +63708 A0:n43020012004 +63710 A0:n43020012020 +63725 A2:n43020013003 A0:n43020013004 +63730 A0:n43020013005 +A0:n43020011001 A2:n43020013009 +63734 A0:n00000000000 A1:n43020013013 +63740 A0:n43020011001 A1:n43020013019 +63742 A0:n00000000000 A1:n43020013020 +63745 A0:n43020011001 A1:n43020014001 +A1:n43020011001 +63751 A0:n43020011001 A1:n43020014011 +63754 A0:n43020014010 +63757 A0:n43020011001 +63761 A2:n43020015002 A0:n43020015003 +63766 A0:n43020015004 +63768 A0:n43020015004 A1:n43020015007 +63770 A0:n43020011001 +63775 A0:n43020015009 A2:n43020015016 +63780 A0:n43020015019 A1:n43020015021 +63782 A0:n43020015017 A2:n43020015023 A1:n43020015025 +63785 A0:n43020015017 A1:n43020015026 +63789 A0:n43020015027 A1:n43020015028 +A2:n43020016002 A0:n43020016003 +63794 A1:n43020011001 +63796 A0:n43020016006 A2:n43020016008 +63803 A2:n43020017002 A0:n43020017003 +63808 A0:n43020011001 A1:n43020017005 +63811 A0:n43020017003 +63816 A0:n43020011001 +63822 A0:n43020011001 A2:n43020017021 +63824 A0:n43020017003 +63838 A0:n43020018002 +63842 A0:n43020018002 A2:n43020018007 +63846 A0:n43020018002 A1:n43020018011 +63851 A0:n43020018011 A1:n43020018013 A2:n43020018015 +63854 A0:n43020019003 +63865 A1:n43020019012 +63875 A0:n43020019025 +63879 A0:n43020019025 +63884 A0:n43020019025 A2:n43020019033 +63890 A0:n43020019025 A1:n43020020002 +A0:n43020019025 A1:n43020020007;n43020020010 A2:n43020020011 +63900 A1:n43020020015 +63903 A0:n43020020015 A1:n43020020018 +63907 A2:n43020021003 A0:n43020021005 +63915 A1:n43020021011 A0:n43020021013 +63920 A0:n43020021014 A1:n43020021016 +63924 A0:n43020021005 A1:n43020022002 +A0:n43020021005 +63927 A0:n43020021005 A2:n43020022007 +63929 A0:n43020020015 A1:n43020022009 +63933 A0:n43020020015 A1:n43020023005 +63937 A1:n00000000000 A2:n43020023007 +63941 A0:n43020020015 A1:n43020023009 +A1:n43020023010 +63957 A0:n43020024016 +63960 A2:n43020025003 A0:n43020025006 +63965 A0:n43020025006 A1:n43020025009 +63970 A0:n43020025010 A2:n43020025013 +63974 A0:n43020024001 A1:n43020025022 +63984 A0:n43020024001 A1:n43020025028 +63994 A0:n43020024001 A1:n43020025039 +64004 A0:n43020024001 +64019 A0:n43020026017 +64024 A1:n43020026019 +64026 A0:n43020026017 +64031 A0:n43020026017 +64035 A0:n43020026017 A2:n43020027004 +64038 A0:n43020027004 A1:n43020027007 +64044 A0:n43020027004 A1:n43020027013 +64049 A0:n43020027004 A1:n43020027018 +64054 A0:n43020027004 +64065 A0:n43020028002 +64068 A0:n43020028002 A2:n43020028005 +64077 A2:n43020029002 A0:n43020029004 +64082 A0:n43020028002 A1:n43020029007 +64084 A0:n43020028002 +64088 A0:n00000000000 +64090 A0:n00000000000 +64097 A1:n43020030006 A0:n43020030009 +64106 A1:n43020030013 +64113 A1:n43020031001 +64115 A0:n00000000000 +64127 A0:n00000000000 +64129 A0:n00000000000 A1:n43020031018 +64136 A1:n43021001004 A0:n43021001006 A2:n43021001008 +64148 A0:n43021001006 +64177 A2:n43021003002 A0:n43021003003 +64181 A0:n43021003003 +A0:n43021003003 +A0:n43021002006;n43021002011;n43021002018;n43021002027 A2:n43021003008 +64185 A0:n43021003011 +64190 A0:n43021003003;n43021002006;n43021002011;n43021002018;n43021002027 +64192 A0:n43021003003;n43021002006;n43021002011;n43021002018;n43021002027 +64201 A0:n43021003003;n43021002006;n43021002011;n43021002018;n43021002027 A1:n43021003026 +64206 A0:n43021004001 +A0:n43021004006 +64214 A0:n43021004014 +64221 A2:n43021005003 A0:n43021005004 +64228 A0:n43021005005 A1:n43021005008 +A1:n43021004014 A2:n43021005011 +64234 A0:n43021006001 A2:n43021006004 +64236 A0:n43021004014 A1:n43021006013 +64246 A0:n43021004014 +64248 A0:n43021004014 +64252 A0:n43021004014 A1:n43021006020 +A0:n43021004014 A1:n43021006021 +64260 A0:n43021007004 A2:n43021007011 +64265 A1:n43021007006 A0:n43021007009 +64276 A0:n43021007015 +64283 A0:n43021007015 A1:n43021007024 +64288 A0:n43021007015 A1:n43021007031 +64299 A0:n43021008004 +64312 A0:n43021008004 A1:n43021008022 +64319 A0:n43021008004;n43021007015 +64323 A0:n43021008004;n43021007015 A1:n43021009009;n43021009012;n43021009014 +64325 A0:n43021009008 +64328 A0:n43021009011 +64331 A2:n43021010002 A0:n43021010004 +64335 A0:n43021008004;n43021007015 +64340 A0:n43021008004;n43021007015 A1:n43021010009 +64342 A0:n43021011002 +64346 A0:n43021011002 A1:n43021011007 +64362 A1:n43021011023 +64365 A2:n43021012002 A0:n43021012004 +64369 A0:n43021008004;n43021011002 +A0:n43021008004;n43021011002 +64374 A0:n43021012007 A1:n43021012011 +A0:n43021012007 A1:n43021012013 +64380 A0:n43021012010 +64385 A0:n43021013002 +64388 A0:n43021013002 A1:n43021013006 +64392 A0:n43021013002 A1:n43021013006 A2:n43021013009 +64401 A1:n43021014005 A2:n43021014007 +64405 A1:n43021014005 +64410 A0:n43021014007;n43021014005 +A2:n43021015006 A0:n43021015009 +64419 A0:n43021015010 A1:n43021015013 +64423 A0:n43021015006 A2:n43021015017 +64428 A0:n43021015020 +64430 A0:n43021015006 A1:n43021015024 +64432 A0:n43021015009 A2:n43021015026 +64434 A0:n43021015006 A1:n43021015029 +64438 A0:n43021015009 A2:n43021016002 +64444 A0:n43021016005 A1:n43021016008 +64446 A0:n43021015006 A2:n43021016010 +64451 A0:n43021016013 +64453 A0:n43021015006 A1:n43021016017 +64455 A0:n43021015009 A2:n43021016019 +64457 A0:n43021015006 A1:n43021016022 +64461 A0:n43021015009 A2:n43021017002 +64467 A0:n43021017005 A1:n43021017008 +64469 A1:n43021017011 +64473 A0:n43021015009 A2:n43021017014 +64477 A0:n43021017011 A1:n43021017018 +64480 A0:n43021017011 A2:n43021017021 +64485 A1:n43021017023 A0:n43021017024 +64487 A0:n43021017026 +64489 A0:n43021017011 A1:n43021017030 +64491 A2:n43021017032 A0:n43021017033 +64494 A0:n43021017011 A1:n43021017036 +64500 A0:n43021017033 A2:n43021018004 +64505 A0:n43021017011 A1:n43021018009 +64508 A0:n43021017011 +64510 A0:n43021017011 +64513 A0:n43021017011 +A0:n43021017011 A1:n43021018019 +64520 A0:n43021018022 A1:n43021018024 +64523 A0:n43021018022 A1:n43021017011 +64526 A0:n43021017011 +64529 A0:n43021017033 A1:n43021019001 +A0:n43021017033 A1:n43021019007 +64533 A0:n43021017011 A1:n43021019009 +64538 A0:n43021017033 A1:n43021019011 +A0:n43021017033 A2:n43021019014 +64541 A0:n43021017011 A1:n43021019016 +64543 A1:n43021020003 +64546 A0:n43021020003 A1:n43021020011 +64550 A1:n43021020007 A0:n43021020010 +64553 A0:n43021020006 +64556 A0:n43021020012 +64565 A0:n43021020006 +64570 A0:n00000000000 A1:n43021020029 +64574 A0:n43021021005 A1:n43021021001 +64577 A0:n43021021005 A2:n43021021008 +64584 A2:n43021022002 A0:n43021022004 +64590 A0:n43021022006 +A0:n43021022004 A1:n43021022008 +64593 A0:n43021022004 +64599 A0:n43021022014 A1:n43021022015 +64601 A0:n43021023005 +64613 A0:n43021023011 +64616 A2:n43021023018 A0:n43021023020 +64622 A0:n43021023011 +64626 A0:n43021023026 +A0:n43021023020 A1:n43021023028 +64629 A0:n43021023020 +64638 A0:n43021024004 +64643 A0:n43021024004 A1:n43021024012 +64646 A0:n00000000000 +64654 A0:n43021025004 +64659 A1:n43021025006 A0:n43021025009 +64664 A1:n43021025010 +64667 A0:n00000000000 A1:n43021025020 +64672 A0:n43021025019 A1:n43021025023 +64674 A1:n43021025023 +64682 A0:n00000000000 A1:n44001001004 +64687 A0:n44001001013 A1:n44001001010 +64689 A0:n44001001013 A1:n44001001010 +A1:n44001001014;n44001001017 A0:n44001001013 +64696 A0:n44001001013 A2:n44001002006 +64700 A0:n44001001013 A1:n44001002010 +64704 A1:n44001001013 +64707 A0:n44001001013 A2:n44001003001 A1:n44001003004 +64709 A0:n44001001013 +64712 A0:n44001003009 +64720 A0:n44001001013 A1:n00000000000 A2:n44001003017 +64723 A0:n44001001013 A1:n44001003020 +64731 A0:n44001001013 +A0:n44001001013 A2:n44001004004 A1:n44001004008;n44001004010 +64737 A1:n44001002006 +64739 A0:n44001002006 A1:n44001004012 +64745 A0:n44001002006 A1:n44001004015 +64750 A0:n44001005002 +64757 A1:n44001005006 +64766 A0:n44001002006 +A0:n44001006001 A1:n44001006006 +64769 A0:n44001002006 +64776 A0:n44001006008 A1:n44001006016 A2:n44001006018 +64781 A0:n44001001013 +64787 A0:n00000000000 A1:n44001007008;n44001007010 +64794 A1:n44001007011 A0:n44001007013 +64800 A0:n44001002006 A1:n44001008003 +64802 A0:n44001008007 +64829 A0:n44001001013 A1:n44001009002 +A0:n44001009005 +64832 A1:n44001001013 +64835 A0:n44001009008 A1:n44001009010 +64843 A0:n44001002006 +64848 A0:n44001010009 +64854 A0:n44001010012 AA2:n44001010015 +64861 A0:n44001011001 +64865 A0:n44001011004 +A0:n44001011004 +64874 A1:n44001011014 +64881 A0:n44001011014 +64884 A0:n44001011004 A1:n44001011028 +64886 A0:n44001011027 +64891 A0:n44001002006 +64905 A0:n44001012006 A1:n44001012016 +64908 A0:n44001002006 +64912 A0:n44001002006 +64915 A0:n44001013013;n44001013015;n44001013017;n44001013019;n44001013020;n44001013022;n44001013023;n44001013025;n44001013026;n44001013029;n44001013033 +64943 A0:n44001014001 A1:n44001014007 +64965 A0:n44001015007 +64971 A0:n44001015007 +64984 A0:n44001016004 +A1:n44001016006 +64989 A1:n44001016007 A0:n44001016010 +65003 A0:n00000000000 A1:n44001016023 +65006 A1:n44001016017 +65011 A0:n44001016017 A1:n44001017009 +65020 A0:n44001018001 A1:n44001018005 +65029 A0:n44001016017 +65032 A1:n44001018019 +65042 A0:n00000000000 +65059 A1:n44001020010;n44001020015;n44001020022 +65072 A0:n00000000000 +65079 A1:n44001020020 A0:n44001020023 +65082 A0:n44001022013 +65085 A0:n44001021006 +65091 A0:n44001021017 +65093 A0:n44001021017 +65099 A0:n44001021017 +65108 A1:n44001021017 +65121 A0:n44001015015 A1:n44001023003 +65133 A0:n44001015015 +A0:n44001015015 +65139 A0:n44001024004 A1:n44001024015 +65141 A0:n44001024005 A1:n44001024009 +65147 A0:n44001024015 A1:n44001025003 +65157 A0:n44001025012 +65159 A1:n44001025012 +65166 A0:n44001015015 A1:n44001026003 A2:n44001026004 +65170 A0:n44001026008 +65176 A1:n44001026010 +65184 A0:n44002001006 +65196 A0:n44002002007 +65203 A1:n44002002010 +65207 A0:n44002002007 A1:n44002002016 +65213 A0:n44002001010 +65215 A2:n44002003003 A1:n44002003005 +65217 A0:n44002003005 +65222 A0:n44002003005 +65228 A1:n44002004003 +65233 A0:n44002004003 A1:n44002004008 +A0:n44002004003 +65240 A0:n44002004013 A1:n44002004015 A2:n44002004016 +A0:n44002004003 +65245 A0:n44002005006 +65259 A0:n44002006004 +65263 A0:n44002006008 +65267 A1:n44002006008 +65269 A0:n44002006013 A1:n44002006018 +65275 A0:n44002006019 +65278 A0:n44002006008 +65280 A0:n44002006008 +A0:n44002006008 +A0:n44002006008 +65287 A0:n44002004003 +65293 A0:n44002008003 +65301 A1:n44002006008 +65309 A0:n00000000000 +65335 A0:n44002010017 +65344 A0:n44002009001;n44002009003;n44002009005;n44002009008;n44002010017;n44002011001;n44002011004;n44002011005;n44002011007 A1:n44002011009 +A0:n44002011010 A1:n44002011015 +65355 A0:n44002012003 +65358 A0:n44002012003 +65362 A0:n44002012003 +A0:n44002012012 A1:n44002012010 +65369 A0:n44002013001 +A0:n44002013001 +65373 A1:n44002004003 +65376 A1:n44002014004 +65382 A0:n44002014004 A1:n44002014010 +65387 A0:n44002014004 A2:n44002014014 +65393 A0:n00000000000 +65401 A0:n44002014015;n44002014019 A1:n44002014029 +65409 A0:n44002015004 +65411 A0:n44002015006 +65413 A0:n00000000000 +65422 A1:n00000000000 +65428 A0:n00000000000 +65433 A0:n44002017009 +65436 A0:n44002017009 +65445 A0:n44002017021;n44002017025 +65458 A0:n44002017029 A1:n44002017031 +65464 A1:n44002017035 +65479 A0:n44002017009 +65485 A0:n44002018004;n44002018009 +65487 A0:n44002017009 A1:n44002019003 +65507 A1:n44002020002 +65516 A0:n44002020013 +65524 A0:n00000000000 +65528 A0:n44002021004 A1:n44002021008 +65532 A1:n44002021006 +65535 A0:n44002022001 A1:n44002022005 +65543 A1:n44002022010 +65555 A0:n44002022027 +65565 A0:n44002022032 +65568 A1:n44002023004 +65578 A0:n44002022001 +A0:n44002022001 A1:n44002023001 +65583 A1:n44002024001 A0:n44002024003 +A0:n44002024003 A1:n44002024007 +65593 A1:n44002024015 +65599 A0:n44002025001 +65602 A0:n44002022007 A1:n44002025008 +65616 A1:n44002022007 +65619 A1:n44002026006 +65624 A0:n44002026010 +65634 A0:n44002026016 +65639 A0:n44002025008 A1:n44002027005 +65646 A0:n44002025008 A1:n44002027014 +65650 A0:n44002027012 A1:n44002027015 +65652 A0:n44002025008 A2:n44002028002 A1:n44002028003 +65656 A0:n44002025008 A1:n44002028006 +65665 A0:n00000000000 +A0:n44002014004 +65677 A0:n44002029011 +65679 A1:n44002029011 +65695 A0:n44002029011 +65698 A2:n44002030009 A0:n44002030011 A1:n44002030017 +65707 A0:n44002030011 +65712 A0:n44002029011 +A0:n44002029011 +65721 A1:n44002031007 +65728 A0:n44002031015 A1:n44002031018 +65733 A1:n44002032003 A0:n44002032006 +65746 A1:n44002032003 +65754 A0:n44002032003 A1:n44002033009 +65758 A0:n44002032003 A1:n44002033019 +65763 A1:n44002033020 A0:n44002033021 +65765 A1:n44002033020 A0:n44002033021 +65769 A0:n44002034003 +65774 A0:n44002034010 +65776 A0:n44002034012 A2:n44002034014 +65781 A0:n44002034014 +65787 A0:n44002034012 A1:n44002035005 +65797 A0:n44002036005 +65806 A0:n44002036015 A1:n44002036010 +65815 A1:n44002036019 A0:n44002036020 +65817 A0:n44002012003 +A1:n44002012003 +65822 A0:n44002012003 +65831 A0:n44002012003 A1:n44002037015 +65838 A0:n44002012003 +65840 A1:n44002038008 +65854 A0:n44002012003 A1:n44002038023 +65876 A1:n44002039015 A0:n44002039018 +65885 A0:n44002038001 +65887 A0:n44002038001 A1:n44002040008 +65889 A0:n44002038001 +A1:n44002012003 +65900 A0:n00000000000 A1:n44002041006 +65904 A1:n44002041004 +65906 A1:n44002041015 +65916 A0:n44002041015 A1:n44002042005;n44002042010;n44002042012;n44002042017 +65932 AA2:n44002043004 A0:n44002043005 +65944 A0:n44002043008;n44002043010 +65948 A0:n00000000000 +65952 A0:n44002044004 A1:n44002044009 +65961 A0:n44002044004 A1:n44002045003;n44002045006 +65963 A0:n44002044004 A1:n44002045010 A2:n44002045011 +65970 A0:n44002045014 A1:n44002045015 +65974 A0:n44002044004 +65980 A0:n44002044004 A1:n44002046013 +65984 A0:n44002044004 A1:n44002046015 +65991 A0:n44002044004 A1:n44002047003 +65995 A0:n44002044004 A1:n44002047006 +66004 A0:n44002047013 A1:n44002047016 +66006 A1:n00000000000 +66016 A0:n44003001001;n44003001004 +66036 A1:n44003002003 +66038 A0:n00000000000 A1:n44003002011 +66050 A0:n44003002003 A1:n44003002025 +66054 A0:n00000000000 +66059 A0:n44003002003 A1:n44003003006 +66063 A0:n44003003003;n44003003005 A1:n44003003007 +A0:n44003003003;n44003003005 +66068 A0:n44003003001 A1:n44003003013 +66070 A0:n44003002003 A1:n44003003012 +66073 A0:n44003004003 +66079 A0:n44003004003 +A0:n44003002003 +66085 A0:n44003005001 A1:n44003005004 +66087 A0:n44003002003 A1:n44003005009 +66091 A0:n44003002003 A1:n44003005006 +66093 A0:n44003006003 +66099 A0:n44003006004;n44003006006 AA2:n44003006009 +66103 A0:n44003006003 A1:n44003006010 +66106 A0:n44003006003 A1:n44003006013 A2:n44003006014 +66114 A0:n44003002003 +66116 A0:n44003006003 A1:n44003007003 +66121 A0:n44003006003 A1:n44003007008 +66125 A1:n44003007013;n44003007017 +66133 A0:n44003002003 +A0:n44003002003 +66136 A0:n44003002003 +66138 A0:n44003002003 +66144 A0:n44003002003 +66146 A0:n44003002003 +66148 A0:n44003002003 A1:n44003008019 +66152 A0:n44003009005 A1:n44003009007;n44003009009 +66157 A0:n44003009006 +66159 A0:n44003002003 A1:n44003009011 +66163 A0:n44003009005 A1:n44003010003 +66172 A0:n00000000000 +66180 A1:n44003009005 +66186 A0:n00000000000 AA2:n44003010026 +66189 A0:n44003011003 A1:n44003011005;n44003011008 +66196 A0:n44003011012 +66210 A0:n44003012004 +66213 A0:n44003012004 +66220 A0:n44003012009 +66226 A0:n44003012009 A1:n44003012016 +66232 A0:n44003012004;n44003011008 +66234 A0:n44003012027 +66248 A0:n44003013002 A1:n44003013015 +66256 A1:n44003013018 A0:n44003013019 +66258 A0:n44003012009 A1:n44003013018 +66262 A0:n44003013028 A1:n44003013029 +66264 A0:n44003013026 +66271 A0:n44003014001 A1:n44003014004;n44003014006 +66273 A0:n44003012009 A1:n44003014012 +66276 A1:n44003014010 A2:n44003014013 +66283 A0:n44003012009 A1:n44003015003 +66287 A1:n44003015007 A0:n44003015009 +66303 A0:n44003012009 A1:n44003016009 +66305 A0:n44003012009 A1:n44003016009 +A1:n44003016008 A0:n44003016015 +66316 A0:n44003016019 A2:n44003016024 A1:n44003016026 +66327 A0:n44003012004 +66331 A0:n44003017003 +66341 A0:n44003018003 A1:n44003018004 +66347 A0:n44003018013 +66351 A0:n44003018003 A1:n44003018005 +66354 A0:n44003017003 +66356 A0:n44003017003 +66359 A1:n44003019010 +66365 A0:n44003020004 +66373 A0:n44003020009 A1:n44003020015 +66375 A0:n44003020015 A2:n44003020014 +66379 A0:n44003021005 +66383 A1:n44003021001 A0:n44003021003 +66389 A0:n44003021013 +66402 A0:n44003022001 +66406 A1:n44003022005 A2:n44003022006 A0:n44003022008 +66417 A0:n44003017003 A1:n44003022017 +66422 A0:n44003022005 A1:n44003022021 +66426 A0:n00000000000 +66432 A0:n44003023005 A1:n44003023010 +66436 A1:n44003023004 +66451 A0:n44003024011 +66453 A0:n44003024005 A1:n44003024016 +66469 A1:n44003025010 A0:n44003025012 +66474 A0:n44003025012 +66482 A1:n44003025029 +66492 A0:n44003026005 A1:n44003026007 +66496 A2:n44003026001 A0:n44003026005 A1:n44003026010 +66498 A0:n44003026007 A1:n44003026012 +66502 A0:n44003026007 A1:n44003026016 +66509 A0:n44004001003 +66514 A1:n44004001008 A0:n44004001010;n44004001013;n44004001018 +66526 A0:n44004001010;n44004001013;n44004001018 +66529 A0:n44004002005 A1:n44004002007 +66534 A0:n44003012004;n44003011008 A1:n44004002014 +66544 A0:n44004001010;n44004001013;n44004001018 A2:n44004003003 A1:n44004003005 +66549 A0:n44004001010;n44004001013;n44004001018 +66556 A0:n00000000000 +66562 A0:n44004002007 A1:n44004004006 +66565 A0:n44004004001 +66575 A0:n44004005006 +66579 A1:n44004005009;n44004005012;n44004005015 +66608 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004007003 +66613 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004007015 +66621 A1:n44004007016 A0:n44004007017 +66626 A1:n44004008002 +66629 A0:n44004008002 +66640 A1:n44004009002 +66648 A1:n44004009011 +66668 A1:n44004010018 A0:n44004010019 +66672 A1:n44004010021 A0:n44004010023 +66678 A0:n44004010029 +66687 A1:n44004011004 +66714 A1:n44004012011 +66719 A0:n44004012024 +A1:n44004012025 +66723 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004013006 +66731 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +66738 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +66740 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004013020 +66748 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004014007 +66752 A1:n44004014003 +66755 A0:n44004014003 +66757 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004014010 +A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004014012 +66760 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004015007 +66765 A0:n44004015003 +A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +66769 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +66771 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004016002 A2:n44004016005 +66780 A0:n44004016011 +66785 A0:n00000000000 +66790 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004016023 +A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +66797 A1:n44004016012 +66801 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A2:n44004017011 A1:n44004017013 +66804 A0:n44004016005 A2:n44004017018 +66812 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004018003 +66814 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004018007;n44004018009 +66817 A0:n44004013005;n44004013008 +66819 A0:n44004013005;n44004013008 +66830 A1:n44004019003;n44004019005 +A0:n44004019003;n44004019005 +66841 A0:n00000000000 A1:n44004019016 +66846 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +66849 A0:n44004020004 A1:n44004020010 +66852 A0:n44004019003;n44004019005 A1:n44004020005 +66854 A0:n44004019003;n44004019005 A1:n44004020005 +66856 A0:n44004019003;n44004019005 A1:n44004020006;n44004020008 +66859 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 +A0:n44004021001 A1:n44004021005 +66863 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004021010 +66866 A0:n44004005009;n44004005012;n44004005015;n44004006002;n44004006006;n44004006008;n44004006010;n44004006015 A1:n44004021011 +66873 A0:n44004021016 A1:n44004021019 +66878 A0:n00000000000 +66888 A0:n44004022012 +66895 A1:n44004019003;n44004019005 +A0:n44004019003;n44004019005 +66901 A0:n44004019003;n44004019005 A1:n44004023017 +66910 A1:n44004023009 A0:n44004023013;n44004023016 +66913 A0:n44004023006 +66915 A0:n44004024001 A1:n44004024006 +66921 A0:n44004023006 +66925 A0:n00000000000 A1:n44004024017;n44004024020;n44004024023;n44004024026 +66950 A0:n00000000000 +66953 A0:n44004025016 +66957 A0:n44004025018 A1:n44004025020 +66959 A0:n44004026003 +66967 A1:n44004026008 +66980 A1:n44004027017;n44004027020 +66994 A0:n44004024012 A1:n44004027015 +67005 A0:n44004027017;n44004027020 A1:n44004028010 +67007 A0:n44004028002 +67014 A1:n44004028010 A0:n44004028004;n44004028008 +67019 A0:n44004029004 +67025 A0:n44004029004 A2:n44004029013 A1:n44004029018 +67032 A0:n44004029013 A1:n44004029020 +67040 A1:n44004030004 A0:n44004030006 +67048 A0:n44004030010;n44004030012 +67058 A0:n44004031003 +67060 A1:n44004031006 +67066 A1:n44004023006 +67068 A1:n44004031013 +67074 A0:n44004031013 A1:n44004031020 +67085 A0:n00000000000 +67096 A0:n00000000000 AA2:n44004032017 +67100 A0:n44004032013 A1:n44004032019 +67109 A1:n44004033006 A0:n44004033008 +67140 A0:n44004034010 +A0:n44004034010 A1:n44004034018 +67145 A1:n00000000000 +67147 A0:n44004034010 +67154 A1:n44004034018 A2:n44004035010 +67160 A0:n44004035013 A1:n44004035014 +67181 A0:n44004036001 +A0:n44004036001 A1:n44004037007 +67186 A0:n44004036001 +67202 A0:n44005001001 A1:n44005001012 +67205 A0:n44005001001 +67209 A0:n44005002009 +67214 A0:n44005001001 A1:n44005002012 +67222 A0:n44005001001 +67224 A0:n44005003004 +67230 A0:n44005003010 A1:n44005003012 +67236 A0:n44005003015 A1:n44005003017 +67243 A0:n44005003005 +67250 A0:n44005003026 +67252 A0:n44005003026 AA2:n44005004003 +67254 A1:n44005003026 +67262 A0:n44005003005 A1:n44005004020 +67271 A0:n44005003005 A1:n00000000000 A2:n44005004024 +67279 A0:n44005005004 A1:n44005005006 +67283 A0:n44005005004 +A0:n44005005004 +67286 A0:n44005005012 +67292 A0:n00000000000 +67294 A0:n44005006004 +67297 A0:n44005006004 A1:n44005006006 +67300 A0:n44005006004 +A0:n44005006004 +67303 A0:n44005007006 +67313 A0:n44005007009 A1:n44005007014 +67315 A0:n00000000000 +A0:n44005007009 +67318 A0:n44005008005 +67322 A0:n44005007009 A2:n44005008007 +67328 A0:n44005007009;n44005005004 A1:n44005008011 +67331 A0:n44005008013 +67341 A1:n44005009010 +67343 A0:n44005005004;n44005007009 A1:n44005009012 +67347 A0:n44005007009 +67351 A0:n44005006004 A1:n44005009020 +67359 A0:n44005009018 A1:n44005009027 +67362 A0:n44005007009 +67369 A0:n44005007009 +67371 A0:n44005010013 +67374 A0:n44005010013 A1:n44005010016 +67378 A0:n44005010013 +A0:n44005010013 +67385 A0:n44005011003 +67396 A0:n00000000000 A1:n44005011014 +67404 A0:n44005012008;n44005012010 +67424 A0:n44005013004 A1:n44005013006 +A1:n44005013004 +67428 A1:n44005013010 A0:n44005013012 +67434 A1:n44005014007 +A0:n44005014007 A1:n44005014006 +67448 A0:n44005014007 A1:n44005015008 +67452 A0:n44005014007 +67458 A0:n44005015017 +67463 A0:n44005015020 A1:n44005015022 +67467 A0:n44005016005 +67475 A0:n44005016005 A1:n44005016011;n44005016013 +67478 A1:n00000000000 +67484 A1:n44005016017 +67486 A0:n44005017004;n44005017007 +67499 A1:n44005017004;n44005017007 +67502 A0:n44005017004;n44005017007 A1:n44005018004 +67509 A0:n44005017004;n44005017007 A1:n44005018010 +67519 A0:n44005019003 A1:n44005019008 +67525 A0:n44005019001 A1:n44005019013 +67527 A0:n44005019001 +A0:n44005018007 +67530 A1:n44005018007 +A0:n44005018007 A2:n44005020009 A1:n44005020012 +67544 A0:n44005018007 +A0:n44005018007 +67553 A0:n44005018007 +67555 A0:n44005021015;n44005021017 +67562 A0:n44005021015;n44005021017 A1:n44005021022;n44005021026 +67573 A0:n44005021015;n44005021017 +67577 A1:n44005021036 +67581 A0:n44005022004 +67584 A0:n44005022004 A1:n44005022007 +67590 A0:n44005022004 +A0:n44005022004 +A0:n44005022004 +67594 A0:n44005022004 A1:n44005023006;n44005023013 +67597 A1:n44005023004 +67604 A0:n44005023012 +67609 A0:n44005022004 +67612 A0:n44005022004 A1:n44005023020 +67615 A1:n44005024005 A0:n44005024009;n44005024014 +67627 A0:n44005024009;n44005024014 +67635 A0:n44005025003 +67637 A0:n44005025003 A2:n44005025005 +67640 A0:n44005024009;n44005024014 +67644 A0:n44005024009;n44005024014 A1:n44005025010 +67649 A0:n44005025009 +67654 A0:n44005025009 A1:n44005025023 +67658 A0:n44005026004 +67664 A0:n44005026004 A1:n44005026009 +67670 A0:n44005026007;n44005026004 A1:n44005026016 +67674 A1:n44005026007;n44005026004 +67676 A0:n44005026004;n44005026007 A1:n44005027003 +67678 A0:n44005026004;n44005026007 +67683 A1:n44005027010 A0:n44005027012 +67687 A0:n44005027012 +67689 A0:n44005027012;n44005021017;n44005027007;n44005021026 A2:n44005028004 A1:n44005028006 +67692 A0:n44005018007 +67698 A0:n44005018007 +A0:n44005018007 A1:n44005028015 +67706 A0:n44005018007 A1:n44005028021 +A0:n44005018007 A1:n44005028025 +67716 A1:n44005029003;n44005029006 +67721 A0:n44005029003;n44005029006 +A0:n44005029008 +A0:n44005029003;n44005029006 A1:n44005029010 +67733 A0:n44005030002 A1:n44005030007 +67737 A1:n44005030008 A0:n44005030009 +A0:n44005027012;n44005021017;n44005027007;n44005021026 +67747 A1:n44005031001 A0:n44005031003 +67752 A0:n44005030007 A1:n44005031013 A2:n44005031015 +67772 A1:n44005032013 A0:n44005032016 A2:n44005032018 +67776 A0:n00000000000 A1:n44005032019 +67780 A0:n44005027012;n44005021017;n44005027007;n44005021026 +A1:n44005033001 +67783 A0:n44005027012;n44005021017;n44005027007;n44005021026 A1:n44005033007 +A0:n44005027012;n44005021017;n44005027007;n44005021026 A1:n44005033008 +67787 A0:n44005034003 +67800 A0:n44005034003 A1:n44005034020 +67805 A0:n00000000000 A1:n44005034019 +67807 A0:n44005034003 +67812 A0:n44005035005 A1:n44005035008 +67819 A0:n44005035005 A1:n44005035013 +A0:n44005035005 A1:n44005035015 +67826 A0:n44005036007 +67828 A0:n44005036007 A1:n44005036011 +67833 A0:n44005036015 +67839 A1:n44005036018 +67843 A1:n44005036022 A1:n44005036024 +67845 A1:n44005036023 +67847 A0:n44005036023 +67852 A0:n44005037004 +67862 A0:n44005037004 A1:n44005037014 +67867 A0:n44005037017 +67871 A1:n44005037021 A1:n44005037023 +67873 A1:n44005037022 +67877 A0:n44005034003 A2:n44005038005 +67879 A0:n44005035005 +67885 A0:n44005035005 A1:n44005038013 +67899 A1:n44005038020;n44005038024 +67906 A0:n44005035005 A1:n44005039008 +A0:n44005035005 A1:n44005039009 +67915 A1:n44005027012;n44005021017;n44005027007;n44005021026 +67918 A0:n44005027012;n44005021017;n44005027007;n44005021026 A1:n44005040004 +67921 A0:n44005027012;n44005021017;n44005027007;n44005021026 A1:n44005040004 +A0:n44005027012;n44005021017;n44005027007;n44005021026 A1:n44005040008 +67924 A0:n44005040004 +67931 A0:n44005027012;n44005021017;n44005027007;n44005021026 A1:n44005040004 +67935 A0:n44005041001 +A0:n44005040004 +67942 A1:n44005040004 A1:n44005041015 +67946 A1:n44005040004 +67957 A0:n44005040004 A1:n44005042012;n44005042014 +A0:n44005040004 +67960 A0:n44005040004 A1:n44005042017 +67969 A0:n44006001008 +67972 A0:n44006001010 +67980 A1:n44006001024 +67992 A0:n44006002004 A1:n44006002006 +67997 A0:n44006002004 +68002 A0:n44006002004 A1:n44006002016 +68007 A0:n44006002013 A1:n44006002020 +68011 A0:n44006003003 A1:n44006003004 +68015 A1:n44006003004 +68022 A0:n44006002004 A1:n44006003013 +68036 A0:n44006004001 A1:n44006004004;n44006004007 +68038 A0:n44006005004 +68046 A0:n44006005008 A1:n44006005011;n44006005019;n44006005021;n44006005023;n44006005025;n44006005027;n44006005029 +68069 A0:n44006005008 A1:n44006006001 +68074 A0:n44006006005 +A0:n44006006005 A2:n44006006009 A1:n44006006011 +68084 A0:n44006007003 +68086 A1:n44006007010 +68099 A0:n44006007018 A1:n44006007023 +68108 A0:n44006008001 A1:n44006008008;n44006008010 +68117 A0:n44006009003 +68136 A0:n44006009003 +68141 A0:n44006009003 A1:n44006010004 +A0:n44006009003 A1:n44006010006;n44006010009 +68149 A0:n44006009023 +68151 A0:n44006009003 A1:n44006011003 +68153 A0:n44006011003 +68155 A0:n44006011003 A1:n44006011008 +68157 A0:n44006011007 A1:n44006011009 +68166 A0:n44006009003 A1:n44006012004;n44006012007;n44006012010 +68176 A0:n44006012004;n44006012007;n44006012010 +A0:n44006012004;n44006012007;n44006012010 A1:n44006012014 +68180 A0:n44006012004;n44006012007;n44006012010 +68185 A0:n44006012004;n44006012007;n44006012010 A1:n44006013003 +68188 A0:n44006013003 +68193 A0:n44006013007 A1:n44006013011 +A0:n44006013007 A1:n44006013012 +68205 A0:n44006013003 A1:n44006014004 +68207 A0:n44006014003 +68213 A0:n44006014006 A1:n44006014012 +68218 A0:n44006014006 A1:n44006014017 +68222 A1:n44006014018 A2:n44006014020 A0:n44006014021 +68226 A0:n44006015007 +68231 A0:n00000000000 +68235 A0:n44006015007 A1:n44006015013 +68243 A0:n44007001004 +68249 A0:n44007001006 +68252 A0:n44007002001 +68257 A0:n44007002004 +68262 A1:n44007002010 A2:n44007002015 +68273 A0:n44007002025 +68278 A0:n44007002010 +68281 A0:n44007002015 +68291 A0:n44007002015 +68298 A0:n44007002010 A1:n44007003019 A2:n44007003021 +68300 A0:n44007002015 +68304 A0:n44007002015 +68310 A0:n44007004014 +68314 A0:n44007002010 A1:n44007004017 +68324 A0:n44007004024 +68327 A0:n44007002010 A2:n44007005004 A1:n44007005005 +68336 A0:n44007002010 A1:n44007005013;n44007005020 +A0:n44007002010 A2:n44007005014 A1:n44007005017 +68353 A0:n44007006005 +68367 A0:n00000000000 A1:n44007006017 +68369 A0:n00000000000 A1:n44007006017 +68378 A0:n44007006009 A1:n44007007004 +A1:n44007007003 A0:n44007007008 +68383 A0:n44007007010 +68387 A0:n44007006009 +68389 A0:n44007006009 A1:n44007007018 +68396 A0:n44007007010 A2:n44007008003 A1:n44007008004 +68402 A0:n44007002015 A1:n44007008010 +68406 A0:n44007002015 A1:n44007008013 +68424 A0:n44007009003 A1:n44007009006 +68427 A0:n44007009003 +68437 A0:n44007009013 A1:n44007010003 +68445 A0:n44007009013 A2:n44007010011 A1:n44007010012;n44007010014 +68455 A0:n44007010016 A1:n44007010021 +68457 A0:n00000000000 +68466 A0:n44007011003 +68479 A1:n44007011016 A0:n44007011018 +68486 A0:n44007012003 A1:n44007012007 +68491 A0:n44007012003 A1:n44007012010 +68500 A1:n44007013006 A2:n44007013008 +68514 A0:n44007014003 +68516 A0:n44007014003 A1:n44007014005;n44007014012 +68530 A0:n44007015003 +68535 A0:n44007015008;n44007015011 +68542 A1:n44007015003;n44007015011 +68546 A1:n44007015003;n44007015011 +68551 A1:n44007016010 A0:n44007016012 +68563 A0:n44007017005 +68569 A1:n44007017008 A0:n44007017011 A2:n44007017013 +68576 A0:n44007017016 +68578 A1:n44007017016 +68583 A0:n44007018004 +68590 A0:n44007018008 A1:n44007018012 +68594 A0:n44007018004 A1:n44007019004 +68598 A0:n44007019001 A1:n44007019008 +68602 A0:n44007018004 A1:n44007019012 +68610 A1:n44007019012 +68614 A1:n44007020005 +68622 A1:n44007020011 +68631 A1:n44007021003 +68633 A1:n44007021005 A0:n44007021007 +68639 A0:n44007021007 A1:n44007021011 A2:n44007021012 +68645 A1:n44007022003 +68660 A1:n44007023006 +68664 A0:n44007023012 +68669 A0:n44007022003 A1:n44007023014 +68677 A0:n44007022003 A1:n44007024004 +68679 A1:n44007024003 +A0:n44007022003 +68682 A0:n44007022003 A1:n44007024008 A2:n44007024010 +68685 A1:n44007024003 +A0:n44007022003 A1:n44007024013 +68690 A0:n44007022003 A1:n44007025003 +A0:n44007025005 +68700 A0:n44007025008 A1:n44007025013 A2:n44007025014 +68706 A0:n44007025015 +68709 A0:n44007026004 +68711 A1:n44007022003 A2:n44007026006 +68713 A0:n44007025005 +68715 A0:n44007022003 A1:n44007026010 +68719 A0:n44007022003 +68725 A0:n44007026014 A1:n44007026020 +68729 A0:n00000000000 A1:n44007027005 +68732 A0:n44007027003 A1:n44007027007 +68734 A0:n44007027003 +68737 A0:n44007027009 A1:n44007027010 +68744 A0:n44007022003 A1:n44007028003 +68747 A1:n44007028002 A0:n44007028004 +68750 A0:n44007022003 A1:n44007028011 +68755 A0:n44007029003 +68768 A0:n44007029003 A1:n44007029016 +68772 A1:n44007030003 +68775 A2:n44007030006 A1:n44007030013 +68791 A0:n44007031003 +A0:n44007031003 A1:n44007031007 +68796 A0:n44007031010 +68798 A0:n44007031003 +A0:n44007031013 +68820 A0:n44007032017 A1:n44007032020 +A0:n44007032017 +68823 A2:n44007033003 A0:n44007033005 +68827 A0:n44007032017 A1:n44007033008 +68838 A0:n44007032017 +68842 A0:n44007033005 +A0:n44007033005 A1:n44007034004 +68856 A0:n44007033005 A1:n44007034013 +68858 A0:n44007033005 +A0:n44007033005 A1:n44007034019 +68863 A0:n44007032017 +A0:n44007033005 A1:n44007034024 +68872 A0:n44007025005 A1:n44007035004 +A0:n44007025005 +68876 A0:n44007035007 A1:n44007035008 +68887 A1:n44007035013 A0:n44007035015 +68892 A1:n44007035023 A2:n44007035026 +68898 A0:n44007036001 A1:n44007036003 +68900 A0:n44007035003 A1:n44007036005;n44007036007 +68922 A0:n44007037004 A2:n44007037008 +68928 A1:n44007037010 A2:n44007037011 A0:n44007037014 +68940 A0:n00000000000 +68951 A0:n44007038013 A2:n44007038016 +68962 A0:n44007038025 A1:n44007038027 +68964 A0:n44007038027 +A0:n44007037004 A1:n44007038027 A2:n44007038030 +68969 A1:n44007039004 A0:n44007039007 +68976 A0:n44007039007 +68978 A1:n44007039007 +68985 A0:n44007039007 A2:n44007040003 +68988 A0:n44007040003 A2:n44007040005 A1:n44007040006 +68992 A0:n44007040007 +68999 A0:n44007040014 A1:n44007040016 +69005 A0:n44007039007 A1:n44007040023 +69007 A0:n44007040022 +69010 A0:n44007039007 +69016 A0:n44007039007 A1:n44007041009 A2:n44007041011 +69021 A1:n44007039007 +69029 A0:n44007042004 +69033 A0:n44007042004 A1:n44007042008 +69035 A0:n44007042007 A1:n44007042010 +69041 A1:n44007042023 +69050 A0:n44007042030 A1:n44007042020;n44007042022 A2:n44007042024 +69060 A0:n44007042030 A1:n44007043004;n44007043009 +69074 A0:n44007042030 A1:n44007043015 +A0:n44007042030 A1:n44007043018 +69078 A0:n44007042004 A1:n44007043021 +69094 A0:n44007044015 A1:n44007044018 +69096 A0:n44007042004 A2:n44007044017 +69099 A0:n44007044017 A1:n44007044019 +69105 A0:n44007044017 A1:n44007044023 +69108 A1:n44007045001 A0:n44007045006 +A0:n44007045006 +69121 A1:n44007045015 A0:n44007045018 +69134 A0:n44007046001 A1:n44007046003 +69140 A0:n44007045027 A1:n44007046009 +A0:n44007045027 A1:n44007046010 A2:n44007046012 +69148 A0:n44007047001 A2:n44007047004 A1:n44007047005 +69157 A0:n44007048004 +69161 A0:n44007048010 +69175 A0:n00000000000 A1:n44007049013 A2:n44007049015 +69177 A0:n44007049017 +69189 A0:n44007050003 A1:n44007050006 +69205 A0:n44007051008 A1:n44007051011 +69216 A1:n44007052001 A0:n44007052007 +69221 A0:n44007052007 A1:n44007052012 +69223 A0:n44007052003 +69237 A0:n44007053001 A1:n44007053004 +69245 A0:n44007051001 +69247 A0:n44006012004;n44006012007;n44006012010 A1:n44007054003 +69249 A1:n44006012004;n44006012007;n44006012010 +69254 A0:n44006012004;n44006012007;n44006012010 A1:n44007054011 +69264 A0:n44006009023 +69268 A0:n44006009023 A1:n44007055011;n44007055015 +69273 A0:n44007055014 +69279 A0:n44006009023 +A0:n44006012004;n44006012007;n44006012010 +A0:n44006009023 A1:n44007056007;n44007056015 +69284 A1:n44007056006 +69294 A0:n44007056010 +69296 A0:n44006012004;n44006012007;n44006012010 +69299 A0:n44006012004;n44006012007;n44006012010 A1:n44007057007 +69304 A0:n44006012004;n44006012007;n44006012010 +69309 A0:n44006012004;n44006012007;n44006012010 +69313 A0:n44006012004;n44006012007;n44006012010 +69317 A0:n44007058009 A1:n44007058012 +69328 A0:n44006012004;n44006012007;n44006012010 A1:n44007059004 +69331 A0:n44007059004 +69333 A0:n44007059004 +69336 A0:n44007059008 A1:n44007059012 +69341 A0:n44007059004 A1:n44007060004 +69344 A0:n44007059004 +69349 A0:n44007060008 A2:n44007060011 A1:n44007060014 +69356 A0:n44007059004 A1:n44007060016 +A1:n44007059004 +69361 A0:n44008001001 +69366 A0:n44008001014 +69381 A1:n44008001022 +69393 A1:n44008002004 A0:n44008002005 +69399 A0:n44008002005 A1:n44008002009 +69406 A0:n44008003001 A1:n44008003005 +69412 A0:n44008003001 +A0:n44008003001 A1:n44008003012;n44008003014 +69418 A0:n44008003001 +69424 A1:n44008001022 +A0:n44008004004 +A0:n44008004004 A1:n44008004008 +69431 A0:n44008005001 +69437 A0:n44008005001 A2:n44008005010 A1:n44008005012 +69442 A0:n44008006004 A1:n44008006006 +69446 A1:n00000000000 +69453 A0:n44008006014 +69456 A0:n44008006004 A1:n44008006018 +69460 A0:n44008006009 A1:n44008006019 +69464 A0:n00000000000 A1:n44008007005 +69467 A0:n44008007005 +69470 A0:n44008007005 +69473 A1:n00000000000 +69476 A1:n44008007013;n44008007015 +69478 A0:n44008008004 +69490 A0:n44008009001 +69494 A0:n44008009001 +69496 A0:n44008009001 A1:n44008009014 +69501 A0:n44008009001 +69507 A1:n44008010001 A0:n44008010003 +69513 A0:n44008010003 +69524 A0:n44008010003 A1:n44008011003 +69532 A0:n44008009001 A1:n44008011011 +69536 A0:n44008010003 A1:n44008012005 +69539 A0:n44008012005 +69550 A1:n44008012018;n44008012021 +69560 A0:n44008013005 +69562 A1:n44008013003 +69564 A0:n44008013003 A1:n44008013012 +69567 A0:n44008013003 A1:n44008013019 +69573 A0:n44008013015;n44008013017 +A0:n44008013003 +69580 A0:n44008014006 +69582 A0:n44008014010 A1:n44008014012 +69589 A0:n44008014006 A1:n44008014018;n44008014020 +69596 A0:n44008014018;n44008014020 +A0:n44008015001 +69601 A0:n44008014010 A1:n44008015008 +69607 A0:n44008015008 +69613 A1:n44008014010 +69622 A0:n44008014018;n44008014020 A1:n44008017004 +69628 A0:n44008014010 A1:n44008017009 +69634 A0:n44008018004 +69643 A1:n44008018015 +69646 A0:n44008018004 A2:n44008018017 A1:n44008018018 +69649 A0:n44008018004 +A0:n44008018012 A1:n44008019005 +69658 A0:n44008018004 A2:n44008019008 A1:n44008019012 +69661 A0:n44008019010 A1:n44008019014 +69666 A0:n44008020001 +69678 A0:n44008018004 A1:n44008020022 +69685 A0:n44008018004 A1:n44008020016 +69707 A0:n44008018004 +69714 A1:n44008018004 A1:n44008022011 +69719 A1:n44008022017 +69735 A0:n44008020001 A1:n44008023003;n44008023006 +69737 A1:n44008024004 +69740 A0:n44008024004 +A0:n44008024007 +69749 A0:n44008024014 +69754 A0:n44008020001;n44008014020 A1:n44008024018 +69758 A0:n44008020001;n44008014020 A1:n44008025008 +69760 A0:n44008020001;n44008014020 A1:n44008025008 +69765 A0:n44008025001 +69773 A0:n44008020001;n44008014020 A1:n44008025016 +69777 A0:n44008026001 +69780 A0:n44008026001 +A0:n44008026006 +69783 A0:n44008026006 +69790 A0:n44008026015 +69799 A0:n44008026006 +A1:n44008026006 +69818 A0:n44008027020 +A0:n44008027006 +69824 A0:n44008027006 +69826 A0:n44008027006 +69832 A0:n44008027006 A1:n44008028013 +69837 A0:n44008029004 A2:n44008029006 +69842 A0:n44008029006 +69844 A1:n44008029006 A2:n44008029011 +69849 A0:n44008030004 +69852 A0:n44008030004 A1:n44008030007 +69854 A0:n44008030006 A1:n44008030008 +69859 A0:n44008030004 +69862 A0:n44008027006 A1:n44008030017 +69864 A0:n44008027006 A1:n44008030016 +69867 A0:n44008031001 +69871 A0:n44008027006 +69875 A0:n44008031010 A1:n44008031012 +69878 A0:n44008027006 A1:n44008031018 +69881 A0:n44008031016 +A0:n44008031016 +69891 A0:n44008027006 A1:n44008032006 +69898 A1:n44008016016 +69904 A0:n00000000000 A1:n44008032021 +69909 A0:n44008016016 A1:n44008032027 +69919 A1:n44008033005 +69924 A1:n44008033009 A0:n44008033011 +69926 A1:n44008033019 +69934 A1:n44008034004 +69939 A0:n44008034004 A2:n44008034006 +A0:n44008034004 A1:n44008034009 +69946 A0:n44008034013 A1:n44008034015 +69957 A0:n44008035004 A1:n44008035006 +69962 A0:n44008035004 +69967 A0:n44008035004 A2:n44008035015 A1:n44008035017 +69973 A0:n44008035004;n44008034004 +69977 A0:n44008034004;n44008035004 +69982 A0:n44008036014 +69985 A0:n44008035004 +69988 A0:n44008036017 A1:n44008036020 +69990 A1:n44008036019 +69992 A0:n44008036014 A1:n44008038003 +A0:n44008038005 +69997 A0:n44008038014;n44008038017 +70009 A0:n44008038014 A1:n44008038020 +70013 A0:n44008038014;n44008038017 +70019 A0:n44008039007 A1:n44008039011 +70024 A1:n44008039015 A0:n44008039018 +70030 A0:n44008039018 +70034 A0:n44008039018 +70037 A1:n44008040001 +70041 A0:n44008040001 +A0:n44008040001 A1:n44008040010 +70048 A0:n44008040015 +70056 A0:n44009001003 A1:n44009001006;n44009001008 +70065 A0:n44009001003 +70068 A0:n44009001003 A1:n44009002004 +70079 A0:n44009001003 A1:n44009002012 +70088 A1:n44009002012 +A0:n44009001003 +70095 A0:n44009001003 +A0:n44009003007 +70098 A0:n44009003006 AA2:n44009003009 +70104 A1:n44009003012 A0:n44009003014 +70110 A0:n44009001003 +70114 A0:n44009001003 A1:n44009004008 +70116 A0:n44009004007 A2:n44009004009 +70122 A0:n44009004010 A1:n44009004013 +70124 A0:n44009001003 +70135 A1:n44009005011 A0:n44009005012 +70137 A0:n44009001003 +70139 A0:n44009001003 +70144 A1:n44009006014 A2:n44009006010 A1:n44009006014 +70149 A1:n44009006012 A0:n44009006013 +A0:n44009006011 +70155 A0:n44009007003 +70157 A0:n44009007003 +70160 A0:n44009007003 A1:n44009007012 +70165 A0:n44009007003 A1:n44009007013 +70167 A1:n44009008003 +70173 A1:n44009008010 +70178 A0:n44009008003 A1:n44009008012 +70180 A0:n44009007003 +70182 A0:n44009007003 A1:n44009008016 +70187 A0:n44009008003 +70193 A0:n44009008003 +70195 A0:n44009008003 +70205 A0:n44009010016 +70215 A0:n44009010018 +A0:n44009010023 +70224 A0:n44009010004 +A1:n44009010004 +70233 A0:n44009010004 A1:n44009011021 +70241 A0:n44009010004 +A0:n44009011021 +70244 A0:n44009011021 A1:n44009012006;n44009012008 +70248 A0:n44009012003 +70250 A0:n44009012003 A2:n44009012009 A1:n44009012010 +70254 A0:n44009011021 +70256 A0:n44009013003 +70259 A0:n44009013003 +70271 A0:n44009013010 A1:n44009013013 A2:n44009013015 +70276 A0:n44009013010 A1:n44009014004 +70281 A0:n44009013010 A1:n44009014011 +70284 A0:n00000000000 A1:n44009014013 +70289 A0:n44009015006 +70294 A0:n44009013003 +70302 A0:n44009013010 A1:n44009015017 +70316 A0:n44009016001 A2:n44009016004 A1:n44009016006 +70324 A1:n44009016005 A0:n44009016007 +A0:n44009016012 +70327 A0:n44009017003 +70330 A0:n44009017003 +70335 A0:n44009017003 A1:n44009017014 +70340 A0:n44009017003 +70347 A1:n44009017022 A2:n44009017025 +70353 A0:n44009017016 +A0:n44009017019 A1:n44009017021 +70357 A0:n44009017016 +70359 A1:n44009017016 +70364 A0:n00000000000 +70372 A0:n44009008003 +70374 A0:n44009008003 +A1:n44009008003 +70377 A0:n44009008003 A1:n44009019003 +70379 A0:n44009008003 +70394 A0:n44009008003 A1:n44009020008 +70405 A0:n44009021005 +70408 A0:n00000000000 +70410 A0:n44009021005 +70415 A0:n00000000000 A1:n44009021016 +70419 A0:n00000000000 A1:n44009021018 +70427 A0:n44009008003 +70429 A1:n44009021016 +70431 A0:n44009008003 A1:n44009021027 +70438 A1:n44009022001 +70440 A0:n44009022001 A1:n44009022007 +70443 A0:n44009022007 +70446 A0:n44009022001 +70454 A1:n44009023004 +70457 A0:n44009023008 A1:n44009023009 +70460 A0:n44009023008 A1:n44009023010 +70463 A2:n44009024004 A1:n44009024006 +70470 A0:n44009023008 A1:n44009024012 +70480 A0:n44009023008 A1:n44009024018 +70482 A0:n44009025004 +70490 A0:n44009025004 A1:n44009025011 +70492 A0:n44009025004 +70496 A0:n44009024004 +70499 A0:n44009024004 A1:n44009026006 +A1:n44009024004 A2:n44009026008 +70505 A0:n44009026010 A1:n44009026012 +70508 A0:n44009026010 +70514 A0:n44009027001 A1:n44009027004 +70516 A0:n44009027001 +70521 A0:n44009027001 A2:n44009027011 +70527 A0:n44009024004 A1:n44009027018 +70532 A0:n44009027018 A2:n44009027022 +70538 A0:n44009024004 +70545 A0:n44009024004 +70547 A0:n44009024004 +70552 A0:n44009024004 +70559 A0:n44009024004 +70561 A0:n44009024004 +70567 A0:n44009029008 A1:n44009029011 +A0:n44009029007 A1:n44009029012 +70571 A0:n44009030004 +70574 A0:n44009030004 A1:n44009030006 +70579 A0:n44009030004 A1:n44009030011 +70595 A0:n44009031004 A1:n44009031014 +70597 A1:n44009031004 +70599 A0:n44009031004 +70610 A1:n44009031004 +70612 A0:n44009032007 +70614 A0:n44009032003 +70617 A0:n44009032003 +70623 A0:n44009032011 +70626 A0:n44009032003 A1:n44009033004 +70635 A0:n44009033004 +70640 A1:n44009033004 +70642 A2:n44009034003 A0:n44009034005 +70647 A1:n44009034008 A0:n44009034009 +70651 A0:n44009034006 +70653 A0:n44009034006 A1:n00000000000 A2:n44009034014 +70657 A0:n44009033004 +70659 A1:n44009035003 A0:n44009035006 +70663 A0:n00000000000 +70669 A0:n44009035011 +70682 A1:n44009036008 +70693 A0:n44009036006 A1:n44009036020 +70695 A0:n44009037009 +70700 A0:n44009036006 +70702 A0:n44009037008 +70704 A0:n00000000000 A1:n44009036006 +A0:n00000000000 A1:n44009036006 +70716 A0:n44009038008 +70722 A0:n44009038008 A1:n44009038017 +70727 A0:n44009038008 +70729 A0:n44009038011 A1:n44009038023 +A0:n44009038011 +70734 A0:n44009039003 +70736 A0:n44009039003 +70739 A0:n44009039003 +A0:n44009038017 A1:n44009039006 +70745 AA2:n44009039014 A0:n44009039017 +70750 A0:n44009039017 +70752 A0:n44009039017 A1:n44009039021;n44009039023 +70757 A1:n44009039024 A0:n44009039030 +70766 A0:n44009040006 A1:n44009040004 +70770 A0:n44009040006 A1:n44009040010 +70773 A0:n44009040006 +70775 A0:n44009040006 +70779 A0:n44009040006 +70781 A0:n44009040018 +70784 A0:n44009040020 A1:n44009040024 +70789 A0:n44009039030 A1:n44009040029 +70792 A0:n44009039030 +70794 A0:n44009040029 A2:n44009041003 A1:n44009041004 +70797 A0:n44009040029 A1:n44009041006 +70800 A0:n44009040029 A1:n44009041010;n44009041013 +70806 A0:n44009040029 A1:n44009041015 +70808 A0:n44009039030 +70811 A0:n00000000000 +70817 A0:n44009042010 +70823 A0:n44009043005 +70826 A0:n44009040029 +70848 A0:n44010001001 A1:n44010002005 +70856 A0:n44010001001 A1:n44010002012 A2:n44010002015 +70862 A0:n44010001001 A1:n44010002019 +70867 A0:n44010001001 A1:n44010003014;n44010003018 +70880 A0:n44010003011 +70884 A0:n44010003011 A2:n44010003019 +70889 A0:n44010001001 A1:n44010004004 +70894 A0:n44010004001 +70896 A0:n00000000000 +70899 A0:n44010003011 A2:n44010004014 +70908 A0:n44010004016;n44010004020 +70916 A0:n44010001001 A1:n44010005004 +70921 A0:n44010001001 A1:n44010005009 +70928 A1:n44010006001 +70940 A0:n44010007005 +70944 A0:n44010007005 A2:n44010007008 +70946 A0:n44010001001 A1:n44010007010;n44010007014 +70954 A0:n44010007014 A1:n44010007018 +70957 A0:n44010001001 A1:n44010008003 A2:n44010008004 +70960 A0:n44010001001 A1:n44010008006 +70968 A0:n44010009005 +70973 A0:n44010007010;n44010007014 AA2:n44010009008 +A0:n44010009011 +70979 A0:n44010009011 +70987 A0:n44010009011 A1:n44010010006 +A0:n44010009011 +70990 A0:n44010010009 +70992 A0:n44010010013 +70997 A0:n44010009011 A1:n44010011005;n44010011007 +71000 A1:n44010011004 +71002 A0:n44010011008 +71010 A1:n44010011008 +71029 A0:n44010013003 +71034 A0:n44010013007 +A0:n44010013007 +71037 A0:n44010013007 +71041 A0:n44010014003 +71046 A0:n44010014003 A1:n44010014011;n44010014013 +71061 A1:n44010015008 A0:n44010015010 +71064 A1:n44010015011 A0:n44010015012 +71067 A0:n44010016001 +71072 A1:n44010016010 +71082 A0:n44010017007 A1:n44010017008 +71091 A0:n44010017007 A1:n44010017013 +71096 A1:n44010017017 +71100 A0:n44010017017 A1:n44010017025 +71105 A0:n44010017017 +71110 A0:n44010017017 +A0:n44010017017 A1:n44010018010 +71118 A1:n44010018005 +71122 A0:n44010019003 +71126 A0:n44010019010 +71129 A0:n44010019003 +71132 A0:n44010019012 A1:n44010019015 +71135 A0:n44010019003 +A0:n44010019003 +71138 A0:n44010019003 +71142 A0:n44010019003 A1:n44010020008 +71145 A0:n44010020011 A1:n44010020013 +71148 A0:n44010021003 +71153 A0:n44010021003 +A0:n44010021006 +71158 A0:n44010021006 A1:n44010021011 +71164 A0:n44010021006 +71167 A0:n44010022001 +71173 A0:n44010022006 A1:n44010022011 +71177 A1:n44010022006 +71184 A1:n44010022004 +71188 A0:n44010022004 A1:n44010022025 +71195 A0:n44010022004 A1:n44010022032 +71200 A0:n44010021003 A1:n44010023003 +71202 A0:n44010021003 +71206 A0:n44010021003 +A0:n44010021003 +71217 A0:n44010023013 +71222 A0:n44010021003 +71230 A0:n44010024010 A1:n44010024013 +71232 A0:n44010024010 A1:n44010024016;n44010024021 +71242 A0:n00000000000 +71244 A0:n44010025007 +71247 A0:n44010025011 A1:n44010025009 +71251 A0:n44010025011 +71255 A0:n44010025011 +71259 A0:n44010026003 A1:n44010026005 +71261 A0:n44010026003 +A0:n44010025011 +71269 A0:n44010026003 +71271 A0:n44010026003 +71273 A0:n44010026003 A1:n44010027007 +A0:n44010027008 +71277 A0:n44010026003 +71281 A0:n44010028005 A1:n44010028008 +71287 A1:n44010028010 +71289 A0:n44010028010 +71294 A2:n44010028016 A0:n44010028018 A1:n44010028024 +71300 A0:n44010026003 A1:n44010028025 +71304 A0:n44010026003 +A1:n44010026003 +71307 A0:n44010026003 A1:n44010029010 +71310 A0:n44010027008;n44010025011 A1:n44010029011 +71315 A0:n44010030003 +71324 A0:n44010030003 +71332 A0:n44010026003 +71334 A0:n44010030022 +71341 A0:n44010030022 +71343 A1:n44010031007 +71351 A1:n44010031010 +71356 A0:n44010031003 +71360 A0:n44010031003 A1:n44010032007 +71366 A1:n44010032011 +71375 A0:n44010030003 +71381 A0:n44010033006 +A0:n44010026003 +71390 A0:n44010033014 +A0:n44010030003;n44010027008 A1:n44010033022 +71394 A1:n00000000000 A2:n44010033023 +71401 A0:n44010034003 A1:n44010034005 +71404 A0:n44010034003 +71407 A0:n44010034003 +71419 A0:n00000000000 A1:n44010035007 +71422 A0:n00000000000 A1:n44010035010 +71430 A0:n44010034015 A1:n44010036003 A2:n44010036006 +71434 A0:n44010034015 A1:n44010036009 +71444 A1:n44010036002 A0:n44010037001 +71447 A0:n44010037005 +71452 A0:n44010037005 +71460 A1:n44010037017 A0:n44010037019 +71467 A1:n44010038007 A0:n44010038009 +71476 A0:n44010038014 +A0:n44010038001 +71479 A0:n44010038001 A1:n44010038021 +71482 A1:n00000000000 +71497 A0:n44010038001 A1:n44010039005 +71508 A0:n44010039012 A1:n44010039015 +A0:n44010039012 A1:n44010038001 +71515 A1:n44010040001 A0:n44010040003 +71521 A0:n44010040003 A1:n44010040012 +71532 A1:n44010041006 +71538 A0:n44010041013 +71540 A0:n44010041013 +71544 A0:n44010041021 +71549 A0:n44010038001 A2:n44010042003 A1:n44010042004;n44010042008 +71551 A0:n44010041006 A1:n00000000000 A2:n44010042006 +71555 A0:n44010041006 +71560 A1:n44010042017 +71565 A0:n00000000000 +71572 A2:n44010043001 A0:n44010043004 A1:n44010043008 +71575 A1:n44010043006 A0:n44010043015 +71582 A0:n00000000000 +71586 A0:n44010044004 A1:n44010044006 +71592 A0:n44010044010 +71600 A0:n00000000000 A1:n44010044018 +71604 A0:n44010045006 +71610 A0:n44010045007 +71623 A1:n44010045017 +71625 A0:n44010045006 A1:n44010046004;n44010046007 +71627 A0:n44010046003 +71630 A0:n44010045015 A1:n44010046009 +71634 A0:n44010046012 +71639 A0:n44010047006 A1:n44010047003 +A1:n44010047005 A0:n44010047006 +71644 A1:n44010047010 +71651 A0:n44010047011 A1:n44010047013 +71656 A0:n44010046012 A1:n44010048009 +71663 A1:n44010048003 +71665 A0:n44010045015 A1:n44010048013 +71667 A0:n44010048012 +71671 A0:n44011001004;n44011001007 +71686 A0:n44011001016 A1:n44011001019 +71693 A0:n44011002004 +71697 A0:n44011002010 +71703 A0:n44011002010 +71705 A0:n44011002004 +71709 A0:n44011003005 A1:n44011003006 +71711 A0:n44011002004 +71714 A0:n44011004003 +71716 A0:n44011004003 A1:n00000000000 A2:n44011004005 +71719 A0:n44011004003 +71722 A0:n44011005001 +71727 A0:n44011004003 A1:n44011005011 +71731 A0:n44011005013 +71739 A1:n44011005016 +71744 A0:n44011005013 +71749 A0:n44011004003 +A0:n44011004003 +71752 A0:n44011004003 A1:n44011006008;n44011006013;n44011006016;n44011006019 +71769 A0:n44011004003 A1:n44011007005 +71772 A0:n44011007004 A2:n44011007006 +71775 A0:n44011007008 +A0:n44011007008 +71778 A0:n44011007008 +71780 A0:n44011004003 +71788 A0:n44011008006;n44011008008 +71794 A0:n44011009005 +71804 A1:n44011009009 A0:n44011009011 +71807 A1:n44011009012 A0:n44011009013 +71810 A0:n44011010001 +71814 A1:n44011010009 +71821 A0:n44011004003 +71825 A0:n44011011005 +71832 A1:n44011011005 +71838 A0:n44011012004 A2:n44011012005 A1:n44011012006 +71842 A0:n44011004003 +71845 A0:n44011004003 A1:n44011012008 +71847 A0:n44011012017 +71856 A0:n44011012017;n44011004003 +71863 A0:n44011012025 A2:n44011013003 +71866 A0:n44011012025 A1:n44011013012;n44011013014 +71873 A1:n44011013007 +71875 A0:n44011013007 +A0:n44011012025 +71880 A0:n44011012025 A1:n44011013020 +71886 A0:n44011014001 A1:n44011014003 +71892 A1:n44011014009;n44011014013 +71902 A0:n44011015005 A1:n44011015006 +71904 A0:n44011004003 +A0:n44011015009 +71919 A1:n44011004003 A1:n44011016004 +71925 A0:n44011016006 +71928 A0:n44011016009 +71932 A1:n44011016013 +71941 A1:n44011017005 A2:n44011017007 A0:n44011017009 +71948 A0:n44011002010;n44011012017;n44011004003 +71958 A0:n44011004003 A1:n44011017025 +71962 A0:n44011002010 A1:n44011018003 +71964 A0:n44011002010 +71966 A0:n44011002010 A1:n44011018008 +71969 A0:n44011002010 +71980 A2:n44011018013 A0:n44011018015 A1:n44011018017 +71984 A1:n00000000000 +71989 A0:n44011019007 +71992 A0:n44011019004 +72000 A0:n44011019004 A2:n44011019019 A1:n44011019022 +72017 A0:n44011020003 +72020 A0:n44011020010 +72025 A0:n44011020003 A1:n44011020021 +72039 A0:n44011021009 +A0:n44011021009 +72045 A1:n44011022004 +72060 A0:n44011022009 A1:n44011022018 +72065 A0:n44011022018 +72067 A0:n44011022018 A1:n44011023006 +72073 A1:n44011023001 +72075 A0:n44011022018 A1:n44011023018 +72081 A0:n44011023013 AA2:n44011023020 +72095 A1:n44011024013 A2:n44011024016 +72101 A0:n44011022018 +72104 A0:n44011022018 A1:n44011025006 +72107 A0:n44011022018 +A0:n44011022018 +72112 A0:n44011026012;n44011026017;n44011026020 +72117 A1:n44011025006;n44011022018 +72122 A0:n44011025006;n44011022018 A1:n44011026018 +72126 A0:n44011025006;n44011022018 A1:n44011026026 +72138 A0:n44011027009 +72145 A0:n44011028003 +72151 A0:n44011028003 A1:n44011028014 +72157 A0:n44011028012 A1:n44011028019 +72164 A0:n44011028020 +72171 A0:n44011029006 +72173 A0:n44011029008 A1:n44011029012 +72178 A0:n44011029008 A1:n00000000000 A2:n44011029018 +72180 A0:n44011029018 +72187 A0:n44011029003 A1:n44011030001 +A0:n44011029003 +72202 A0:n44012001007 A1:n44012001011 +72208 A0:n44012001007 A1:n44012001013 +72215 A0:n44012001007 A1:n44012002003 +72222 A0:n44012001007 +72228 A0:n44012001007 A1:n44012003009 +A0:n44012001007 A1:n44012003011 +72233 A0:n00000000000 +72239 A0:n44012001007 A1:n44012004001 +A0:n44012001007 +72243 A0:n44012001007 A1:n44012004001 A2:n44012004009 +72247 A0:n44012004009 A1:n44012004012 +72249 A0:n44012001007 A1:n44012004017 +72253 A0:n44012001007 A1:n44012004018 A2:n44012004020 +72261 A1:n44012005004 +72280 A1:n44012006004 A0:n44012006007 +A0:n44012006007 A1:n44012006005 +72291 A0:n44012006013 +72295 A1:n44012006013 +72303 A0:n44012006021 A1:n44012006028 +72310 A0:n44012007003 +72313 A0:n44012007007 +72318 A0:n44012007003 A1:n44012007015 +72323 A0:n44012007003 A1:n44012007019 +72325 A0:n44012007003 +A0:n44012007017 +72330 A0:n44012007028 +72338 A0:n44012008004 +72343 A0:n44012007017 +72345 A0:n44012007017 A1:n44012008011 +72350 A0:n44012007017 +72353 A0:n44012008004 A2:n44012008018 +72355 A0:n44012007017 A1:n44012008021 +72360 A0:n44012007017 A1:n44012008025 +72363 A0:n44012007017 +A0:n44012007017 +72367 A0:n44012007017 +72372 A0:n00000000000 +72377 A0:n44012007017 A1:n44012009018 +72379 A0:n44012007017 A1:n44012009017 +72381 A0:n44012009014;n44012007017 +72386 A0:n44012009014;n44012007017 +72393 A0:n44012010010 +72399 A1:n44012010018 A2:n44012010021 +72402 A0:n44012009014;n44012007017 +A0:n44012009014;n44012007017 +72408 A0:n44012010031 +72418 A0:n44012011003 +A0:n44012011003 +72421 A0:n44012011003 +72424 A0:n44012011014 A1:n44012011016 +72431 A0:n44012011016 A1:n44012011020 +72445 A0:n44012011003 +A0:n44012011003 +72461 A1:n44012012017 +72463 A0:n44012012017 +72465 A0:n44012013003 A1:n44012013005 +72471 A0:n44012013009 +A0:n44012013009 +72477 A0:n44012013009 A1:n44012014004 +72486 A0:n44012013009 A1:n44012014013 +72490 A0:n44012013009 +A0:n44012013009 A1:n44012014017 +A0:n44012014019 +72502 A0:n44012015001 +A0:n44012013009 +72506 A0:n44012015007 A1:n44012015010 +72508 A0:n00000000000 +72511 A0:n44012015012 +72519 A0:n44012016003 A1:n44012016005 +A0:n44012016003 +72522 A0:n44012012017 +A0:n44012012017 A1:n44012016009 +72526 A0:n44012012017 +72528 A0:n44012016003 A2:n44012017003 A1:n44012017006 +72532 A0:n44012012017 +A0:n44012016003 A2:n44012017008 A1:n44012017013 +72539 A0:n44012017011 A1:n44012017012 +72544 A0:n44012016003 +A0:n44012012017 A2:n44012017020;n44012017023 A1:n44012017024 +72552 A0:n44012016003 +A1:n44012016003 +72558 A0:n44012018003 +72574 A0:n44012019001 A1:n44012019004 +72578 A0:n44012019001 +A0:n44012019001 A1:n44012019010 +72582 A0:n44012019001 A1:n44012019012 +A1:n44012019010 +72585 A0:n44012019001 +72591 A0:n44012019001 +72594 A0:n44012019001 A1:n44012020004;n44012020006 +72600 A0:n44012020004;n44012020006 +72604 A0:n44012020004;n44012020006 A1:n44012020014 +72612 A0:n44012020004;n44012020006 A1:n44012020022 +72616 A1:n44012020028 +72628 A0:n44012021005 A1:n44012021007 +72631 A0:n44012021005 +72635 A0:n44012021005 +72641 A0:n44012022003 +72649 A1:n44012023004 A0:n44012023005 +72656 A0:n44012021005 A1:n44012023012 A2:n44012023014 +72664 A0:n44012021005 +72670 A0:n44012024003 +72672 A1:n44012024003 +72677 A0:n44012025001;n44012025004 +72680 A0:n44012025001;n44012025004 A1:n44012025010 +72683 A0:n44012025001;n44012025004 A1:n44012025012 +72694 A0:n44013001008 +72720 A0:n44013002003 A1:n44013002005 +72725 A0:n44013001009;n44013001011 +A0:n44013002010 +72732 A0:n44013001009;n44013001011 A2:n44013002015 A1:n44013002017;n44013002019 +72742 A0:n44013002010 A1:n44013002025 +72745 A0:n44013001009;n44013001011 +72747 A0:n44013001009;n44013001011 +72749 A0:n44013001009;n44013001011 A1:n44013003008 A2:n44013003009 +72753 A0:n44013001009;n44013001011 +72757 A1:n44013002017;n44013002019 +72762 A0:n44013004001 +72767 A0:n44013002017;n44013002019 +72774 A0:n44013002017;n44013002019 A1:n44013005007 +72785 A0:n44013002017;n44013002019 A1:n44013005018 +72790 A0:n44013002017;n44013002019;n44013005018 +72796 A0:n44013002017;n44013002019;n44013005018 A1:n44013006009 +72815 A0:n44013007005 A1:n44013007012;n44013007014 +72819 A0:n44013007010 A1:n44013007016 +A0:n44013007005 A1:n44013007018 +72826 A1:n44013008003 A0:n44013008004 +72833 A1:n44013008011 +72837 A0:n44013008004 A1:n44013008014 +A0:n44013008004 A1:n44013008016 +72849 A1:n44013009001 +72852 A0:n44013009001 +72855 A0:n44013009001 +72869 A0:n44013010003 A1:n44013010016 +A0:n44013010003 A1:n44013010018 +72879 A0:n44013010003 +72888 A0:n44013010003 A1:n44013011014 +72895 A0:n44013011022;n44013011024 +72902 A0:n44013008004 +A0:n44013008004 A1:n44013011028 +72908 A0:n44013012004 A1:n44013012006 +72910 A0:n00000000000 +A0:n44013012004 +A1:n44013012004 +72919 A1:n44013013006 +72926 A0:n44013013006 +72933 A0:n44013013014 +72936 A0:n44013013014 +72941 A0:n44013013006;n44013013008 +72945 A0:n44013014001 +72951 A0:n44013013006;n44013013008 +72959 A0:n44013013006;n44013013008 +72969 A0:n44013015012 +72974 A0:n44013015012 +72987 A0:n44013015016 +72990 A0:n44013016003 +72992 A0:n44013016003 +72995 A0:n44013016003 +73000 A0:n00000000000 A1:n44013016015 +73003 A0:n44013016009;n44013016013 +73010 A0:n44013017002 A1:n44013017009 +73017 A0:n44013017002 A1:n44013017013 +73028 A0:n44013017002 A1:n44013017026 +73036 A0:n44013017002 A1:n44013018006 +73042 A0:n44013017002 A1:n44013019003 +73048 A0:n44013017002 A1:n44013019010 +73060 A0:n44013017002 A1:n44013020010 +73066 A0:n44013017013 A1:n44013021003 +73069 A2:n44013021006 A0:n44013021008 A1:n44013021010 +73084 A0:n44013021008 A1:n44013022003 +73086 A0:n44013021008 A1:n44013022006 A2:n44013022007 +73094 A0:n44013021008 A2:n44013022010 +A0:n44013021008 +A0:n44013021008 A1:n44013022015 +73107 A0:n44013022024 A1:n44013022028 +73120 A0:n44013023003 A2:n44013023011 A1:n44013023012 +73125 A0:n44013024002 A1:n44013024008 A2:n44013024012 +73140 A0:n44013025004 A1:n44013025006 +73144 A0:n44013025004 +73148 A0:n44013024012 A1:n44013025008 +73153 A0:n44013024012 +A0:n44013025023 +73165 A0:n44013025004 A1:n44013025025 +73175 A0:n44013026007 A1:n44013026012 +73184 A2:n44013026013 A1:n44013026015 +73187 A0:n00000000000 +73195 A0:n44013027003;n44013027008 A1:n44013027010 +73205 A1:n44013027014 +A0:n44013027003;n44013027008 +A0:n44013027003;n44013027008 +73212 A0:n44013027003;n44013027008 A1:n44013028003 +A0:n44013027003;n44013027008 A2:n44013028007 A1:n44013028008 +73215 A1:n44013028009 +73219 A0:n44013027003;n44013027008 A1:n44013029008 +73224 A1:n00000000000 +A0:n00000000000 +73229 A0:n00000000000 +73235 A0:n44013030003 A1:n44013030005 +73240 A1:n44013031001 +73245 A0:n00000000000 +73263 A0:n44013032002 A2:n44013032003 A1:n44013032009 +73268 A0:n44013032009 +73274 A1:n44013033002 A0:n44013033004 A2:n44013033007 +73278 A0:n44013033004 A1:n44013033010 +73287 A1:n44013033019;n44013033025 +73294 A0:n44013033023 A1:n44013033026 +73298 A0:n44013033004 A1:n44013034004 +73303 A0:n44013033010 A1:n44013034009 +A0:n44013033010 +73308 A0:n44013033004 +73310 A0:n44013033004 A2:n44013034016 A1:n44013034018 +73321 A0:n44013033004 +73323 A0:n44013033004 A1:n44013035011 +73327 A0:n44013035009 A1:n44013035012 +73334 A0:n44013036001 A1:n44013036010 +73339 A0:n44013036001 +73341 A1:n44013036001 +73347 A0:n44013036001 A1:n44013036020 +73353 A1:n44013037001 A0:n44013037004 +73355 A0:n44013037005 A1:n44013037008 +73375 A1:n44013038005 A1:n44013038023 +73379 A1:n44013038005 +73384 A0:n00000000000 +A1:n44013039005 +73387 A0:n44013038005 +73389 A0:n44013040006 +73391 A1:n44013041001;n44013041005;n44013041007;n44013041010;n44013041016 +73395 A0:n44013041003 +73399 A0:n44013041003 +73401 A1:n44013041003 +73404 A1:n44013041009 A0:n44013041011 +73414 A0:n44013041003 A1:n44013041017 +73417 A0:n44013041022 A2:n44013041024 +73420 A0:n44013042003 +73422 A0:n00000000000 A1:n44013042009 +73427 A2:n44013042010 A1:n44013042012 +73433 A1:n44013043004 +73436 A0:n44013043006 A1:n44013043014;n44013043017 +73442 A0:n44013043012 +73450 A0:n44013043014;n44013043017 A1:n00000000000 A2:n44013043020 +73452 A0:n44013043018 A1:n44013043023 +73454 A0:n44013043022 +73461 A0:n44013044004 +73467 A1:n44013044008 +A0:n44013044008 A1:n44013044012 +73476 A0:n44013045004 A1:n44013045006 +73479 A1:n44013045004 +73482 A0:n44013045004 A2:n44013045014 +73486 A1:n00000000000 +A0:n44013045004 +73489 A0:n44013046004;n44013046007 +73495 A0:n44013046004;n44013046007 +73500 A2:n44013046009 A1:n44013046015 +73506 A0:n44013045004 A1:n44013046020 +73510 A0:n44013045004 A1:n44013046025 +73516 A0:n44013046004;n44013046007 +A1:n44013046004;n44013046007 +73523 A2:n44013047004 A0:n44013047006 +73527 A0:n44013047006 A1:n44013047008 +73542 A0:n44013048004 +73545 A0:n44013048004 +73547 A0:n44013048004 A1:n44013048009 +73553 A0:n44013048016 +73556 A1:n44013048014 +73561 A1:n44013049004 +73573 A0:n44013050003 A1:n44013050007;n44013050012 +73575 A0:n44013050007 +73585 A0:n44013050007;n44013050012;n44013050003 A1:n44013050017 +73593 A0:n44013050007;n44013050012;n44013050003 A1:n44013050025 +73601 A0:n44013050020;n44013050022 A1:n44013051005 +73608 A0:n44013051001 +73614 A1:n44013052003 +73620 A0:n44014001008;n44014001016 +73626 A0:n44014001009 +73634 A0:n44013050020;n44013050022 +73637 A0:n44014001025 +73646 A0:n44014002004 +73648 A0:n44014002004 A1:n44014002009 +73650 A0:n44014002004 A1:n44014002009 +73662 A0:n44013050020;n44013050022 +A0:n44013050020;n44013050022 +73668 A0:n44014003009 +73675 A0:n44014003009 A1:n44014003022 +73679 A0:n44014003019;n44014003021 +73685 A1:n44014004004 +73704 A0:n44014005004 +73715 A0:n44014005004 A1:n44014005017 +73717 A0:n44014005006;n44014005009;n44014005012 A1:n44014005017 +73719 A0:n44014004018 +A0:n44014004018 +73733 A0:n44014004018 +73743 A0:n44014008003 +73751 A0:n44014008015 +73753 A0:n44014009001 A1:n44014009005 +73756 A0:n44014009004 +73758 A0:n44014009004 A1:n44014009008 +73761 A0:n44014009004 +73763 A0:n44014008003 A1:n44014009013 +73766 A1:n44014008003 +A0:n44014009006 +73770 A0:n44014008003 +73777 A0:n44014008003 +73779 A0:n44014008003 +73783 A0:n44014011003 A1:n44014011006 +73785 A1:n44014011005 A0:n44014011007 +73787 A0:n44014011003 A1:n44014011010 +73792 A0:n44014011003 +73795 A1:n44014011015 +73797 A0:n44014011015 +73801 A0:n44014011003 A1:n44014012004 +73813 A0:n00000000000 +73832 A0:n44014013003 A1:n44014013011;n44014013013 +73836 A0:n44014013003 A1:n44014013022 +A0:n44014013003 +73839 A0:n44014014004 +73845 A0:n44014014004 A1:n44014014010 +73849 A0:n44014014004 +73853 A0:n44014014004 +73855 A0:n44014014004 +73859 A0:n44014015003 A1:n44014015005 +73866 A0:n44014014004 A1:n44014015014 +73872 A0:n44014015003 +73875 A0:n44014015021 +73877 A0:n44014015023 A1:n44014015026;n44014015029;n44014015032;n44014015035 +73894 A0:n44014016005 +73896 A0:n44014016001 A1:n44014016010 +73900 A0:n44014016009 +73908 A0:n44014015021 A1:n44014017004 +A0:n44014015021 +73913 A0:n44014015021 A2:n44014017008 A1:n44014017009 +73917 A0:n44014015021 A1:n44014017019 +73926 A0:n44014014004 A1:n44014018002 +73928 A0:n44014014004 A1:n44014018007 +73933 A0:n44014018007 A1:n00000000000 A2:n44014018011 +73936 A0:n44014019007 +73943 A0:n44014019007 A1:n44014019011 +73947 A0:n44014019007 A1:n44014019015 +73950 A0:n44014019007 +73954 A0:n44014019007 A1:n44014019022 +73956 A0:n44014019021 +73958 A0:n44014020004 A1:n44014020005 +73962 A0:n44014019015 +A0:n44014019015 +73970 A0:n44014019015 +73977 A0:n44014020017;n44014019015 A1:n44014021004 +73982 A0:n44014020017;n44014019015 A1:n44014021008 +73984 A0:n44014020017;n44014019015 +73994 A0:n44014020017;n44014019015 A1:n44014022003 +73999 A0:n44014020017;n44014019015 A1:n44014022007;n44014022015 +A0:n44014022005 AA2:n44014022009 +74005 A0:n44014022017 +74010 A0:n44014022016 +74017 A0:n44014020017;n44014019015 A2:n44014023003 A1:n44014023006 +74022 A0:n44014020017;n44014019015 +74025 A0:n44014020017;n44014019015 A1:n44014023011 A2:n44014023013 +74031 A0:n44014022005;n44014023006 +74033 A0:n44014020017;n44014019015 +74036 A0:n44014020017;n44014019015 +74041 A0:n44014020017;n44014019015 A1:n44014025006 +74046 A0:n44014020017;n44014019015 +74050 A0:n44014020017;n44014019015 +74055 A1:n44014020017;n44014019015 A2:n44014026009 +74064 A0:n44014020017;n44014019015 A1:n44014026015 +74066 A0:n44014020017;n44014019015 +74068 A0:n44014020017;n44014019015 A1:n44014027006 +74071 A0:n44014020017;n44014019015 A1:n44014027009;n44014027016 +74073 A1:n44014027008 A0:n44014027011 +74080 A0:n44014027011 A2:n44014027018 A1:n44014027019 +74086 A0:n44014020017;n44014019015 +74095 A0:n44015001002 +74099 A0:n44015001002 A1:n44015001009 +74105 A1:n44015001009 +74111 A0:n44015001009 A1:n44015001020 +A1:n44015001009 +74114 A0:n44015002003;n44015002005 +74127 A0:n44015001009 A1:n44015002016 +A0:n44015002017;n44015002019;n44015002022 +74151 A1:n44015002017;n44015002019;n44015002022 +74155 A0:n44015003001 +74161 A0:n44015002017;n44015002019;n44015002022 A1:n44015003016 +74167 A0:n44015002017;n44015002019;n44015002022 A1:n44015003021 A2:n44015003025 +74174 A0:n44015002017;n44015002019;n44015002022 +74177 A1:n44015002017;n44015002019;n44015002022 +74188 A0:n44015002017;n44015002019;n44015002022 A1:n44015004020 +74192 A1:n44015004017 A0:n44015004019 +74196 A0:n44015005003 +74204 A0:n44015005003 +A0:n44015005003 +74207 A0:n44015005014;n44015005016 +A0:n00000000000 A1:n44015005015 +74211 A0:n00000000000 A1:n44015005018 +A0:n44015003018 A1:n44015005020 +74217 A1:n44015006004;n44015006007 +74223 A0:n44015006004;n44015006007 +74231 A0:n44015007003 +A0:n44015007006 +74234 A0:n44015007006 +74240 A0:n44015007012 +74247 A0:n44015007022 A1:n44015007027;n44015007035 +74254 A0:n44015007029 A1:n44015007031 +74262 A0:n44015007029 +74267 A0:n44015008003 A2:n44015008006 +74269 A0:n44015008003 A1:n44015008009 +74279 A0:n44015008003 A1:n44015009002 +74287 A0:n44015008003 A1:n44015009013 +74294 A0:n44015007010 A1:n44015010006 +74297 A0:n44015007010 A1:n44015010008 +74305 A0:n44015010017;n44015007010;n44015007006 A1:n44015010014 +74312 A1:n44015010022 A0:n44015010017;n44015010020 +74314 A0:n44015007010;n44015007006 A1:n44015011009 +74321 A1:n44015007010;n44015007006 +74327 A0:n44015012005 +74332 A0:n44015012005 A1:n44015012011 +74336 A0:n44015012008;n44015012010 A1:n44015012016;n44015012018 +74341 A1:n44015012012 A0:n44015012015 +74352 A0:n44015013005 +74354 A0:n44015013007 +74356 A0:n44015013007 +74359 A0:n44015013009 A1:n44015013012 +74362 A0:n44015014001 +74367 A0:n44015014006 +A0:n44015014006 A1:n44015014011 +74377 A0:n44015015005 +74383 A1:n44015016003;n44015016005;n44015016015;n44015016017;n44015017003;n44015017022 +74386 A0:n44015014006 +74388 A0:n44015014006 A1:n44015016007 +74393 A0:n44015016007 +74396 A1:n00000000000 +74398 A0:n44015014006 A1:n44015016013 +74400 A0:n44015014006 A1:n44015016018 +74404 A0:n44015017005 A1:n44015017009 +74417 A1:n44015017018 +74423 A0:n44015017023 +74425 A0:n44015017023 A1:n44015017025 +74432 A0:n44015019002 A1:n44015019004;n44015019005;n44015020002 +74434 A0:n44015013007;n44015013009 A1:n44015019006 +74439 A0:n44015019006 +74444 A0:n44015013007;n44015013009 A1:n00000000000 A2:n44015020003 +74447 A0:n44015019006 A1:n44015020007;n44015020012;n44015020014;n44015020017 +74468 A0:n00000000000 A1:n44015021010 +74470 A0:n44015021001 A1:n44015021009 +74477 A1:n44015021001 +74479 AA2:n44015022004;n44015022007 A0:n44015022016 +74489 A0:n44015022004;n44015022007;n44015022011 A1:n44015022013 +74493 A0:n44015022004;n44015022007;n44015022011 +74508 A0:n44015022030 +74512 A0:n44015022004;n44015022007;n44015022011 +74534 A0:n44015023006;n44015023009 A1:n44015023019 +74536 A0:n44015023006;n44015023009 +74541 A0:n44015024004 A1:n44015024008 +74544 A0:n44015024004 A1:n44015024012 +74550 A0:n44015023006;n44015023009 A2:n44015024014 +A0:n44015025007 +74553 A0:n44015023006;n44015023009 +74555 A0:n44015023006;n44015023009 A1:n44015025006 +74557 A0:n44015023006;n44015023009 +74568 A0:n44015026001 A1:n44015026004 +74581 A0:n44015023006;n44015023009 A1:n44015027003;n44015027005 +74589 A0:n44015027003;n44015027005 A1:n44015027012 +74593 A0:n44015028011 +74603 A1:n44015028004;n44015023006;n44015023009 A1:n44015028013 A2:n44015028012 +74609 A0:n44015023019 A1:n44015029002;n44015029004;n44015029006;n44015029008 +74619 A0:n44015023019 A1:n44015029012 +74622 A0:n44015023019 +A0:n44015023019 +74627 A1:n44015022021;n44015022023;n44015022024;n44015022029 +A0:n44015030001 +74632 A0:n44015022021;n44015022023;n44015022024;n44015022029 A1:n44015030011 +74635 A0:n44015022021;n44015022023;n44015022024;n44015022029 A1:n44015030014 +74639 A0:n44015030011 +A1:n44015030011 +74655 A0:n44015032001;n44015032004 A1:n44015032014 +74659 A0:n44015032001;n44015032004 +74661 A0:n44015032001;n44015032004 +74663 A1:n44015032001;n44015032004 +74671 A0:n44015022004;n44015022007;n44015022011 A1:n44015033013 +74677 A0:n44015035001;n44015035004 +74680 A0:n44015035001;n44015035004 A1:n44015035016 +74682 A0:n44015035001;n44015035004 A1:n44015035016 +74695 A0:n44015036008 +74700 A0:n44015036008;n44015036007 +A0:n44015036008;n44015036007 A1:n44015036013 +74709 A0:n44015036008;n44015036007 A1:n44015036021 +74718 A0:n44015037001 A1:n44015037004 +A0:n44015037001 A1:n44015037007 +74728 A0:n44015038001 A1:n44015038018 +74730 A0:n44015037007 +74737 A0:n44015037007 +74743 A0:n44015038001 A1:n44015038019 +74746 A0:n44015039003 +74749 A1:n44015039006 +74756 A0:n44015039011 A1:n44015039014 +74759 A0:n44015039011 +74764 A0:n44015040001 A1:n44015040004 +74766 A0:n44015040001 +A1:n44015040001 A2:n44015040008 +74776 A0:n44015040001 +74781 A0:n44015040001 A1:n44015041009 +74785 A0:n44015040001 +74808 A1:n44016002001 +74816 A0:n44016003004 A1:n44016003007 +74822 A0:n44016003001 +74824 A0:n44016003004 +A0:n44016003004 A1:n44016003011 +74837 A0:n44016003023 +74847 A0:n44016003004;n44015040004;n44016001011 +74850 A0:n44016003004;n44015040004;n44016001011 A2:n44016004007 A1:n44016004008 +74852 A0:n44016004005 A1:n44016004010 +74856 A1:n44016004010 +74869 A1:n44016005004 +74873 A0:n44016005004 +74879 A0:n44016003004;n44015040004;n44016001011 +74885 A1:n44016003004;n44015040004;n44016001011 A1:n44016006013 +74890 A0:n44016003004;n44015040004;n44016001011 A1:n44016006015 +74897 A0:n44016003004;n44015040004;n44016001011 +74901 A0:n44016003004;n44015040004;n44016001011 A1:n44016007010 +74905 A1:n44016003004;n44015040004;n44016001011 +74908 A1:n44016007014 A0:n44016007016 +74914 A0:n44016003004;n44015040004;n44016001011 +74917 A0:n44016003004;n44015040004;n44016001011 +74926 A1:n44016009002 A2:n44016009006 +74931 A0:n44016009008 +74933 A0:n00000000000 A1:n44016009015 +74936 A0:n00000000000 +A0:n44016009006 +74940 A0:n44016009006 A1:n44016009022 +74946 A0:n44016009006 A1:n44016010004 +74948 A0:n44016009006;n44015040004;n44016001011 A1:n44016010008 +A0:n44016009006;n44015040004;n44016001011 +74952 A0:n44016009006;n44015040004;n44016001011 +74954 A0:n44016010016 A1:n44016010017 +74958 A0:n44016010014 A1:n44016010018 +74961 A1:n44016009006;n44015040004;n44016001011 +74964 A0:n44016009006;n44015040004;n44016001011 +74969 A0:n00000000000 +74986 A0:n44016009006;n44015040004;n44016001011 +74998 A0:n44016009006;n44015040004;n44016001011 +75007 A0:n44016009006;n44015040004;n44016001011 A1:n44016013012 +75009 A0:n44016009006;n44015040004;n44016001011 +A0:n44016009006;n44015040004;n44016001011 A2:n44016013021 +75012 A0:n44016013021 +75022 A0:n44016014003 A1:n44016014011 +75025 A0:n44016014003 +75031 A1:n44016014018 A0:n44016014015 +A0:n44016014003 A1:n44016014021 +75034 A1:n00000000000 +75039 A1:n44016014003 +75044 A0:n44016014003 +A0:n44016014003 +75047 A0:n44016014023;n44015040004;n44016001011 A1:n44016015013 +75053 A0:n44016014023;n44015040004;n44016001011 +75058 A0:n44016014023;n44015040004;n44016001011 +75060 A0:n44016014003 A1:n44016015025 +75063 A0:n44016016013 +A0:n44016016004 +75071 A0:n44016016008 A1:n44016016011 +75074 A0:n44016016008 A1:n44016016014 +75079 A0:n44016016015 A1:n44016016016 A2:n44016016020 +75083 A0:n44016016008 +75085 A0:n44016016008 A1:n44016017004;n44016017006 +75090 A0:n44016017001 +A0:n44016016008 +75102 A0:n44016017018 A2:n44016017020 A1:n44016017021 +75108 A0:n44016016008 A1:n44016018001 +75114 A1:n44016018009 +75116 A0:n44016018009 A1:n00000000000 A2:n44016018013 +75119 A0:n44016018009 +A0:n44016018009 A2:n44016018016 A1:n44016018021 +75126 A0:n44016018013 +75130 A0:n44016018013 +75138 A0:n44016019004 +75140 A0:n44016019009 +75146 A0:n44016019004 A1:n44016019015;n44016019018 +75152 A0:n44016019004 +75160 A0:n44016019004 A1:n44016020003 A2:n44016020005 +75164 A0:n44016019004 +75168 A0:n44016020009 A1:n44016020013 +75175 A0:n44016020009 A1:n44016021003 +75178 A0:n44016019004;n44016020005 A1:n44016021004 +75180 A0:n44016019004;n44016020005 A1:n44016021004 +75182 A0:n44016021008;n44016021010 +75187 A0:n44016022004 +75195 A0:n44016022009 A1:n44016022013 +75199 A0:n44016022009 A1:n44016022015 +A0:n00000000000 +75202 A0:n44016022009 A2:n44016023004 A1:n44016023005 +75206 A0:n44016022009 +75209 A0:n44016022009 A2:n44016023011 A1:n44016023013 +75213 A0:n44016023011 A1:n44016023014 +75218 A0:n44016023011 A1:n44016024002 +A0:n44016024001 A1:n44016024006 +75229 A0:n44016023011 A1:n44016024013 +75240 A0:n44016025005;n44016025007 +A0:n44016025005;n44016025007 A1:n44016025011 +75245 A1:n44016025014 A0:n44016025016 +75253 A0:n44016026003 +75255 A1:n44016026009 +75261 A1:n44016026016 +75270 A1:n44016026021 +75277 A0:n44016027005 A1:n44016027008 +A1:n44016027010 +75283 A0:n44016027005 A1:n44016027015 +75286 A0:n44016027005 A1:n44016027018 +75288 A0:n44016027005 A1:n44016027017 +A0:n44016027005 A1:n44016027020 +A0:n44016027022 +75294 A0:n44016028003 +75298 A0:n44016028003 +75301 A0:n44016027005 A1:n44016028010 A2:n44016028009 +75308 A0:n44016027005 A1:n44016029003 +75310 A0:n44016027005 +75314 A0:n44016027005 +75320 A0:n44016027005 A1:n44016030003 +75323 A0:n44016027005 +75327 A1:n44016030007 A0:n44016030008 +A0:n44016030010 +75330 A1:n44016027005 +75333 A0:n44016031001 +A0:n44016027005 +75340 A1:n44016031011;n44016031014 +75347 A0:n44016029010;n44016029012 A2:n44016032003 A1:n44016032005 +75361 A0:n44016027005 A1:n44016033003 +75369 A0:n44016027005 +75374 A1:n44016033016;n44016033018 +75382 A0:n44016027005 A1:n44016034003 +75387 A0:n44016027005 A1:n44016034008 +75390 A0:n44016027005 +75392 A0:n44016027005 A1:n44016034014 +75397 A0:n44016035001 +A0:n44016035006 A1:n44016035008 +75403 A0:n44016035006 +A0:n44016027005 A1:n44016035012 +75409 A0:n44016036004 A1:n44016036006 +75419 A0:n44016036014 +75423 A1:n44016036010;n44016029012 +75426 A0:n44016036010;n44016029012 +A0:n44016036010;n44016029012 +75433 A0:n44016037003 +75436 A0:n44016035006 A1:n44016037008 +75443 A0:n44016035006 +75450 A0:n44016035006 A1:n44016037020 +75454 A0:n44016035006 +75457 A0:n44016037026 A1:n44016037027 +75459 A2:n44016038004 A0:n44016038006 A1:n44016038008 +75468 A1:n44016038004 +A0:n44016038004 +75474 A0:n44016038004 +A0:n44016038004 A1:n44016039004 +75478 A0:n44016038004 +A0:n44016038004 A1:n44016039008 +A0:n44016037003;n44016029012 +75485 A0:n44016037003;n44016029012 +75489 A0:n44016037003;n44016029012 +75494 A0:n44016037003;n44016029012 +A0:n44016037003;n44016029012 A1:n44016040014 +75499 A0:n44016037003;n44016029012 +75501 A0:n44016037003;n44016029012 +75507 A0:n44016037003;n44016029012 +75518 A0:n00000000000 +75521 A0:n44017002006 +75528 A0:n44017002006 AA2:n44017002015 +75533 A0:n44017002006 +75535 A0:n44017002006 +75537 A0:n44017003008;n44017003010 +75540 A0:n44017003006 +75542 A0:n44017003006 +75555 A1:n44017003021 A0:n44017003022 A2:n44017003024 +75561 A1:n44017004002 +75563 A1:n44017004002 A2:n44017004009;n44017004012 +75571 A0:n44017004016 +75584 A0:n44017005004 +75586 A0:n44017005004 A1:n44017005009 +75593 A0:n44017005004 +A0:n44017005004 A1:n44017005016 +75598 A0:n44017005004 AA2:n44017005020 +75602 A0:n44017005004 A1:n44017005024 +75604 A0:n44017005004 A1:n44017005023 +75610 A0:n44017005004 A1:n44017006004 +75612 A0:n44017005004 A1:n44017006006;n44017006009 +75620 A0:n44017005004 +75625 A0:n44017004009;n44017004012 A1:n44017006017 +75629 A0:n44017006019 +75631 A1:n44017007001 A0:n44017007003 +75640 A0:n44017007005 +75645 A0:n44017006018 A1:n44017007012 +75647 A0:n44017005004 A1:n44017008004;n44017008007 +75653 A0:n44017008004;n44017008007 A1:n44017008009 +75656 A0:n44017008007 A1:n44017009004 +75665 A0:n44017008007 A1:n44017009012 +75673 A0:n44017010003 A1:n44017010010;n44017010013 +75683 A0:n44017010010;n44017010013 +75689 A0:n44017010016 +75698 A0:n44017011008 A1:n44017011011 +75707 A0:n44017010022 A1:n44017011020 +75719 A0:n44017012001 +75732 A0:n44017013008 +75743 A1:n44017013019 +75751 A0:n44017013008 +75753 A0:n44017013008 A1:n44017013028 +75755 A0:n44017013008 A1:n44017013028 +75763 A1:n44017014005 A0:n44017014008 +75766 A0:n44017014005 +75772 A0:n44017014018;n44017014021 +75782 A0:n00000000000 +75785 A0:n44017015003 A1:n44017015005 +75789 A0:n44017015003 A1:n44017015011 +75800 A0:n44017015014;n44017015017 +75803 A0:n44017015003 +75808 A1:n44017016006 A0:n44017016008 +75812 A1:n44017016011 +75818 A0:n44017016008 A1:n44017016016 +75825 A0:n44017016008 AA2:n44017017008;n44017017011 +75833 A0:n00000000000 +75843 A0:n00000000000 +75852 A0:n44017018001 +75856 A0:n44017018012 +75858 A0:n44017018018 A1:n44017018020 +75863 A0:n44017018018 A1:n44017018014 +75866 A0:n44017016008 A1:n44017018026 +75877 A0:n44017016008 A1:n44017018030;n44017018033 +75879 A0:n44017018001 A1:n44017019003 +75885 A0:n44017018001 A1:n44017016008 +A0:n44017018001 +A0:n44017018001 A1:n44017019011 +A0:n44017018001 A1:n44017019012 +75896 A1:n44017019020 +75899 A0:n44017020003 +75901 A0:n44017016008 A1:n44017020003 +75907 A0:n44017018001 A1:n44017020011 +A0:n44017018001 A1:n44017020013 +75911 A1:n44017020012 A0:n44017020014 +75918 A0:n44017021007 +75923 A0:n44017021001;n44017021007 +75925 A0:n44017021001;n44017021007 A1:n44017021014 +75928 A0:n44017021001;n44017021007 A1:n44017021017 +75932 A1:n44017022003 +75939 A0:n44017022003 +75947 A0:n44017022003 A1:n44017022015 +75949 A0:n44017022003 +75951 A0:n44017022003 A1:n44017023006 +75955 A0:n44017022003 A1:n44017023010 +75960 A1:n44017023015 +75965 A0:n44017022011 +A0:n44017022011 A1:n44017023016 +75969 A1:n44017023020 A0:n44017023021 A2:n44017023023 +75974 A0:n44017024002 A1:n44017024006;n44017024009 +75992 A0:n44017024012 +75997 A1:n44017025008 +A0:n44017024002 A1:n44017025007 +76001 A0:n44017024002 A2:n44017025010 A1:n44017025011;n44017025013;n44017025016 +76010 A0:n44017024002 A1:n44017026006 +76016 A0:n44017026006 +76022 A0:n44017024002 A1:n44017026016;n44017026019 +A1:n44017026016 +76031 A0:n44017026006 A1:n44017027003 +76037 A0:n44017026006 A1:n44017027008 +76040 A0:n44017026006 +76053 A0:n44017022003;n44017022011 +76055 A1:n44017022003;n44017022011 +76057 A0:n44017022003;n44017022011 +76065 A0:n44017028011 +76077 A0:n44017022003;n44017022011 A1:n44017029008 +A0:n44017022003;n44017022011 A1:n44017029022 +76099 A0:n44017030009 A1:n44017030004 +76104 A0:n44017030009 A2:n44017030014 A1:n44017030017 +76109 A0:n44017030015 +76111 A0:n44017030009 A1:n44017031003 +76115 A0:n44017030009 A1:n44017031007 +A0:n44017030009 A1:n44017031009 +76124 A0:n44017030009 A1:n44017031014 +76126 A0:n44017030009 A1:n44017031016 A2:n44017031018 +76128 A0:n44017030009 A1:n44017031020 +76133 A0:n00000000000 A1:n44017032003 +76138 A0:n44017032005 +76141 A0:n44017032008 +A0:n44017032008 A1:n44017032012 +76151 A0:n44017033003 +76158 A1:n44017034003 A2:n44017034005 +76160 A0:n44017034003 +76177 A1:n44017033003 +76181 A0:n44017033003 +76185 A0:n44017033003 A1:n44018002004 +76194 A0:n44018002004 +76204 A0:n44018002022 A1:n44018002023 +76206 A1:n44018002026 +76213 A0:n44017033003 +76220 A0:n44017033003 +76224 A0:n44017033003 +76231 A0:n44017033003 +76238 A0:n44017033003 A1:n44018004011;n44018004013 +76245 A0:n44018005009;n44018005012 +76255 A1:n44018005017 +76260 A0:n44018005017 A2:n44018005020 A1:n44018005024 +76268 A0:n44018006003 +76271 A0:n44018005020 +A0:n44018005017 A1:n44018006008 +76275 A0:n44018005017 +76293 A0:n44018005017 +76295 A0:n44018005017 +76297 A0:n44018005017 +76304 A0:n44018007007 A1:n44018007013 +76311 A0:n44018007016 +76318 A0:n44018008001 A1:n44018008007 +76330 A0:n44018008014 +A0:n44018008014 +76333 A1:n44018008014 +76335 A0:n44018009004 A2:n44018009010 +76345 A0:n44018009010 +76347 A0:n44018009010 +76350 A0:n44018009010 +76358 A0:n44018010007 A1:n44018010009 +76361 A0:n44018010007 A1:n44018010012 +76373 A0:n44018009010 +76378 A0:n44018009010 A1:n44018011011 +76391 A0:n44018012010 A1:n44018012012 +76398 A0:n44018012010 A1:n44018012015 +76403 A0:n44018012010 +76408 A0:n44018013007 A1:n44018013009 +76412 A0:n44018013009 A1:n44018013012 +76416 A0:n44018014004 A1:n44018014005 +76419 A0:n44018014004 A1:n44018014007 +76422 A0:n44018014010 +76430 A0:n00000000000 +76441 A0:n44018014010 A1:n44018014028 +76445 A0:n00000000000 +76456 A0:n44018015015 +76459 A0:n44018015017 A1:n44018015016 +76465 A0:n44018014010 A1:n44018016003 +76472 A0:n44018017003 A1:n44018017004 +76476 A0:n44018017003 +76485 A0:n44018017012 AA2:n44018017015 +76490 A0:n44018018003 +76495 A0:n44018018003 A1:n44018018009 +A0:n44018018003 +76506 A0:n44018018003 A1:n44018018025 +76512 A0:n44018018003 A1:n44018018028 +76515 A0:n44018018003;n44018018018;n44018018020 +76519 A0:n44018018003 A1:n44018019005 +76523 A0:n44018018003 +76527 A0:n44018019008 A1:n44018019016 +76531 A0:n44018020003 A1:n44018020007 +76536 A0:n44018018003 +76538 A0:n44018018003 +76540 A0:n44018018003 +76542 A0:n44018018003 +76544 A0:n44018018003 +76549 A0:n44018021010 +A1:n44018018003 +76555 A0:n44018018003 +76558 A0:n44018018003 +76560 A0:n44018018003 A1:n44018022009 +76563 A0:n44018018003 +76567 A0:n44018018003 A1:n44018023003 +76570 A0:n44018018003 +A0:n44018018003 +76578 A0:n44018018003 A1:n44018023016 +76597 A0:n44018024001 +76602 A1:n44018025001 A1:n44018025005 +76608 A0:n44018024001 +76611 A0:n44018024001 A1:n44018025016 +76613 A0:n44018024001 A1:n44018025016 +76619 A0:n44018024001 A1:n44018025023 +76626 A0:n44018026001 A1:n44018026004 +A0:n44018024001 +76632 A0:n44018026011;n44018026013 A1:n44018026010 +76637 A0:n44018026011;n44018026013 A1:n44018026015 +76642 A0:n44018026011;n44018026013 A2:n44018026018 A1:n44018026021 +76648 A0:n44018027003 A1:n44018027004 +76650 A0:n44018024001 +76654 A0:n44018027010 +76657 A0:n44018027010 A2:n44018027013 A1:n44018027014 +76660 A0:n44018027013 A1:n44018027015 +76663 A0:n44018024001 +A0:n44018027016 AA2:n44018027021 +76667 A0:n00000000000 +76675 A0:n44018024001 A1:n44018028004 +76677 A0:n44018024001 A1:n44018028014 +76686 A0:n44019001015;n44019001019 +76695 A0:n44019001010 +76699 A0:n44019001010 +76703 A0:n44019001010 A1:n44019001021 +76707 A0:n44019001010 +76713 A0:n44019001021 A1:n44019002006 +A0:n44019001021 +76721 A0:n44019001021 +76725 A0:n44019002017 +76727 A0:n44019001010 +76731 A1:n44019001021 +76734 A0:n44019003007 +76740 A0:n44019004003 +76743 A0:n44019004004 A1:n44019004006 +76748 A0:n44019004004 A2:n44019004009 +76750 A0:n44019004009 +76753 A0:n00000000000 +76762 A0:n44019001021 +A1:n44019001021 +76771 A2:n44019006003 A0:n44019006005 A1:n44019006006 +76776 A0:n44019006009 +76784 A0:n44019001021 +76787 A0:n44019001021 +76796 A0:n44019006005 +76800 A0:n44019006005 +76804 A0:n44019006005 +76806 A0:n44019006005 +76815 A1:n44019009003 +76817 A0:n44019009003 +A0:n44019009003 A1:n44019009009 +76824 A0:n44019006005 +76827 A0:n44019006005 A1:n44019009018 +76832 A0:n44019006005 +76839 A0:n44019010001 +76846 A0:n00000000000 +76849 A0:n44019010010 A1:n44019010015 +76862 A0:n44019011001 +76865 A1:n44019011001 A0:n44019011007 +76874 A0:n00000000000 +A1:n44019012011;n44019012013 +76884 A1:n44019012019 +76894 A0:n44019012022 +76896 A0:n44019013003 A1:n44019013009 +76900 A0:n44019013008 +76903 A0:n44019013003 A1:n44019013018 +76906 A0:n00000000000 A1:n44019013014 +76916 A0:n44019013003 +A0:n44019013003 A1:n44019013024 +76923 A1:n44019013027 A0:n44019013028 +76933 A0:n44019014008 A1:n44019014009 +76935 A1:n44019015004 +76940 A0:n44019015004 A2:n44019015008 +76944 A0:n44019015004 A1:n44019015010 +76948 A0:n44019015004 A1:n44019015014 +76954 A0:n44019016004 +76966 A0:n44019016004 +76968 A0:n44019016004 +76974 A1:n44019016015 +A0:n44019016015 +76990 A0:n44019017006;n44019017009 +76994 A0:n44019017016 +77000 A1:n44019017023 +77009 A0:n00000000000 +A0:n44019018001 +A0:n44019018001 A1:n44019018010 +77013 A0:n44019018001 A1:n44019018010 +77022 A0:n00000000000 A1:n44019019005 +A0:n44019019001 A1:n44019019009 +77026 A0:n44019019001 +77030 A0:n44019019001 A1:n44019019016 +77035 A0:n44019019001 A1:n44019019021 +77046 A0:n44019020007 +77048 A0:n44019020007 +77051 A1:n44019021004 +77053 A0:n44019021007 A1:n44019021016 +77059 A0:n44019021007 +77064 A0:n44019021007 +77067 A0:n44019021007 +77074 A0:n44019021030 +77078 A0:n44019021027 A1:n44019021029 +77080 A0:n44019021007 A1:n44019022006 +77086 A0:n00000000000 A1:n44019022009 +77092 A0:n44019022013 +77098 A0:n44019023007 +77114 A0:n44019024003 A1:n44019024007 +77118 A0:n44019024003 A2:n44019024012 A1:n44019024015 +77131 A0:n44019024003 A1:n44019025001;n44019025008 +A0:n44019024003 +77134 A0:n44019025010 +77145 A0:n44019025010 +77147 A0:n44019025010 +77160 A0:n44019026015 +A0:n44019026015 A1:n44019026020 +77164 A0:n44019026015 +77172 A0:n00000000000 +77177 A0:n44019027004 AA2:n44019027006 +77183 A0:n44019027008 +77194 A1:n44019027019 +77196 A1:n44019027026 A0:n44019027028 +77198 A1:n44019027028 +77209 A1:n44019027030 A0:n44019027033;n44019027036 +77211 A0:n44019024012;n44019025008 +77216 A0:n44019024012;n44019025008 +A0:n44019024012;n44019025008 +77223 A1:n44019029004 +77229 A0:n44019029004 +77234 A0:n44019029004 A1:n44019029014;n44019029016 +77243 A0:n44019030001 A1:n44019030004 +A0:n44019030001 +77249 A1:n44019030010 A0:n44019030012 +77261 A0:n44019031001 +77264 A0:n44019031001 A1:n44019031014 +77266 A0:n44019030001 A1:n44019031015 +77276 A0:n44019032001 A1:n44019032005 +77281 A1:n44019032010 +77286 A0:n44019032014 A1:n44019032019 +77289 A0:n44019032014 +77294 A0:n44019033004 A1:n44019033006 +77296 A1:n44019033008 A0:n44019033010 +77303 A0:n44019033013 A1:n44019033016 +77306 A0:n44019033013 A1:n44019033018 +A0:n44019033013 A1:n00000000000 A2:n44019033020 +77311 A0:n44019033020 +77317 A0:n44019034006 +77324 A0:n44019034010 +77332 A0:n44019035004 A1:n44019035006 +77335 A0:n44019035004 +77344 A0:n44019035014 A1:n44019035020 +77360 A0:n44019036008;n44019036013 +77363 A1:n00000000000 +77368 A0:n44019035008 A1:n44019036012 +77370 A0:n44019035008 A1:n44019037004 +77377 A0:n44019037004 A1:n44019037011 +77390 A0:n44019038004;n44019038009 A1:n44019038013 +77395 A1:n44019038014 +77398 A0:n44019038017 +A0:n44019038004;n44019038009;n44019037004 A1:n44019038020 +77405 A0:n44019035008 A1:n44019039003 +77410 A1:n44019039003 +77413 A0:n44019035008;n44019035004 A1:n44019040004 +A1:n44019035008;n44019035004 +77421 A0:n44019040010 +77425 A0:n44019035008;n44019035004 A1:n44019040016 +A0:n44019035008;n44019035004 A1:n44019040017 +77434 A0:n44019035004 A1:n44019040023 +A0:n44019035004 A1:n44019040027 +77441 A0:n44020001006 +77446 A0:n44020001009 A1:n44020001011 +77450 A0:n44020001009 +A0:n44020001009 +A0:n44020001009 +A0:n44020001009 +77457 A0:n44020001009 +77462 A0:n44020001009 A1:n44020002008 +77466 A0:n44020001009 +77471 A0:n44020001009 +77474 A0:n44020003006 AA2:n44020003007 +77480 A0:n44020001009 A1:n44020003012 +A1:n44020001009 +77488 A0:n44020001009 +77492 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +77514 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A0:n44020005001 A1:n44020005005 +77521 A0:n44020006001 +77530 A0:n44020001009 +77540 A0:n44020001009;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +77549 A1:n44020007008 +77551 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020001009 A1:n44020007010 +77555 A0:n44020007012 AA2:n44020007014 +77557 A0:n44020007012 A1:n44020007016 +A0:n44020007012 +77562 A0:n44020007012 A1:n44020007022 +77576 A1:n44020007012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +77582 A0:n44020009004 +77586 A1:n44020009004 +77589 A0:n44020009015 +77594 A1:n44020009004 +77598 A0:n44020009004 +77604 A1:n44020009004 +77607 A0:n44020010004 +77610 A0:n44020010004 AA2:n44020010006 +77613 A0:n44020010004 +A0:n44020010004 +77616 A1:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +77625 A0:n44020010004 +77627 A0:n44020010004 A1:n44020011006 +77631 A0:n44020010004 +77635 A0:n44020010004 +77639 A0:n44020010004 +77641 A0:n00000000000 A1:n44020012004 +77644 A0:n44020012004 +77646 A1:n00000000000 +77651 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +77655 A1:n44020013001 +77660 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44020013013 +A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44020013015 +77666 A0:n44020013015 +77668 A0:n44020013021 A1:n44020013022 +77670 A0:n44020013015 +77673 A0:n44020013015 AA2:n44020014004 +77678 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44020014009 +77680 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020013015 +77684 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020013015 +77686 A0:n00000000000 +A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020013015 +77693 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020013015 +77698 A0:n00000000000 +A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020013015 +77703 A0:n44020016004 A1:n44020016005 +77706 A0:n44020016004 +77711 A0:n44020016012 +77713 A0:n44020016004 +77718 A0:n44020016004 +77734 A0:n44020016004 +77737 A0:n44020016004 A1:n44020017010 +77744 A0:n44020017010 +77747 A0:n44020016004 A2:n44020018007 +77750 A0:n44020018008 A1:n44020018021 +77756 A0:n44020016004 +77767 A0:n44020016004 A1:n44020019003 +77778 A0:n44020019010 AA2:n44020019013 +77786 A0:n44020016004 A1:n44020020002 +77789 A0:n00000000000 +77792 A0:n44020016004 A2:n44020020009 +77795 A0:n44020016004 A1:n44020020012 +77801 A0:n44020016004 A2:n44020021002;n44020021005 A1:n44020021009;n44020021011 +77819 A0:n44020017010 +A1:n44020016004 +77824 A0:n44020022005 +77830 A0:n00000000000 A1:n44020022015 +77833 A0:n44020016004 A1:n44020022014 +77842 A0:n44020023004 A1:n00000000000 A2:n44020023010 +77844 A0:n44020023004 +77850 A0:n44020023013;n44020023015 A1:n44020023016 +77854 A0:n44020016004 A1:n44020024006 +77860 A0:n44020016004 A1:n44020024012;n44020024016 +77868 A0:n44020016004 A1:n44020024017 +77873 A0:n44020016004 A1:n44020024025 +77882 A0:n44020017010 +77884 A0:n44020025004 +77887 A1:n44020025010 A0:n44020025012 +77895 A0:n44020016004 +A0:n44020016004 A1:n44020025019 +77900 A0:n44020016004 A2:n44020026003 +77915 A0:n44020016004 +77918 A0:n44020016004 A1:n44020027009 A2:n44020027012 +77925 A0:n44020017010 A1:n44020028002;n44020028006 +77938 A1:n44020028009 A0:n44020028011 +77940 A0:n44020017010 A1:n44020028018 +77946 A0:n44020028020 A1:n44020028021 +77953 A0:n44020029001 +77955 A0:n44020029009 +77965 A0:n44020029009 A1:n44020029016 +77972 A0:n44020030006 +77974 A0:n44020030006 A1:n44020030008 +A1:n00000000000 +77977 A0:n44020030006 A1:n44020030012 +77983 A0:n44020017010 +A0:n44020017010 +77991 A0:n44020016004 +77994 A0:n44020016004 A1:n44020031014 +78000 A0:n44020016004 A1:n44020032005 A2:n44020032007;n44020032010 +78011 A0:n44020032010 A1:n44020032016;n44020032018 +A0:n44020032010 +78014 A0:n44020032010 A1:n44020032020 +78019 A1:n00000000000 +78027 A0:n44020016004 A1:n44020033001;n44020033003;n44020033005 +78029 A0:n44020034001 +78036 A0:n00000000000 +78039 A1:n44020034005;n44020034011 A0:n44020034014 +78044 A0:n44020016004 A1:n44020035001 A2:n44020035003 +78048 A0:n44020017010 +A0:n44020035008;n44020035011 +A0:n44020017010 A1:n44020035010 +78052 A0:n00000000000 +78054 A0:n44020017010 A1:n44020035014 +78062 A0:n44020035019 +78066 A0:n00000000000 +78068 A0:n00000000000 +78071 A0:n44020016004 A1:n44020036002 +A0:n44020016004 A1:n44020036006 +78079 A0:n44020016004 +78086 A0:n44020037005 +78092 A0:n44020037005 A1:n44020037014 +78094 A0:n44020037005 +78100 A0:n44020037012 +78103 A0:n44020037005 A1:n44020038014 +78107 A0:n44020037005 A1:n44020038012 +78109 A0:n44020037005 A1:n44020038017 +78116 A0:n44021001004 +A1:n44021001005 +78119 A1:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44020037012 +78122 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78137 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021002003 +78139 A0:n44021002003 +78142 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A1:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78145 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021003004 +78149 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021003007 +78152 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78156 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78164 A0:n44021003019 A1:n44021003023 +78168 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021004004 +78171 A0:n44020037012;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78178 A0:n44021004009 A2:n44021004011 A1:n44021004017 +78183 A0:n44021004011 +78188 A0:n44021005004 +A0:n44021005005 A1:n44021005007 +78193 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A1:n44021005011 A0:n44021005012 +78207 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44021005012 A1:n44021005024 +78213 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44021005012 +A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017;n44021005012 A1:n44021006002 +78217 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78223 A0:n44021006008 +78231 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021007004 +78234 A0:n44021007001 +78238 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021007014 +78241 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78249 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78254 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78265 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78274 A0:n44021009004 +78276 A0:n44021004011;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78279 A0:n44021010006 +78288 A0:n44021010006 +78292 A0:n44021010006 A1:n44021011008 +78297 A0:n44021010006 A1:n44021011014;n44021011017 +78304 A0:n44021010006 +78306 A1:n44021011019 A0:n44021011022 +78319 A1:n44021011026 A0:n44021011037 +78325 A0:n44021011037 +78331 A0:n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021012004 +78333 A0:n44021012006;n44021012010 +78341 A0:n44021012014 +78346 A0:n44021013004 +78350 A0:n44021012010;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021013005 +A0:n44021012010;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78353 A0:n44021012010;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 A1:n44021013012 +78361 A1:n44021013004 +78364 A0:n44021013004 +78368 A0:n44021013013 A1:n44021013015;n44021013017;n44021013020 +78377 A1:n44021014004 +78379 A0:n44021012010;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A0:n44021012010;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78385 A0:n44021014010 +78391 A0:n44021013004;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +A0:n44021013004;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78396 A0:n44021016005 +78404 A0:n44021016005 A1:n44021016009 A2:n44021016014 +78407 A1:n44021013004;n44020004004;n44020004009;n44020004011;n44020004013;n44020004016;n44020004017 +78414 A0:n44021017003 +78419 A1:n44021017008 A0:n44021017010 +78425 A0:n00000000000 +A0:n44021018006 +78434 A0:n44021018015 +78439 A0:n44021018006 A1:n44021019003 +78441 A0:n44021018006 A1:n44021019007 +78446 A1:n44021019008 A0:n44021019011 +78458 A0:n44021018015;n44021018010 +A0:n44021020001 A1:n44021020006 +78463 A0:n44021018015;n44021018010 A2:n44021020009 +78465 A0:n44021020011 +78470 A0:n00000000000 +78482 A1:n44021020021 +78486 A0:n44021020011 A1:n44021021006 A2:n44021021015 +78496 A0:n44021020011 A1:n44021021018;n44021021025 +78498 A0:n44021021019 A1:n44021021021 +78505 A0:n44021021015 +78508 A0:n00000000000 +78510 A0:n44021020021 +78512 A0:n44021020011 +78515 A0:n44021020011 A1:n44021023001 +78518 A0:n44021018015;n44021018010 A1:n44021023004 A2:n44021023005 +78524 A0:n44021023009 A1:n44021023011 +78528 A0:n44021020011 A1:n44021024001 +A1:n44021020011 +78533 A0:n44021020011 +78537 A0:n44021023009 A1:n44021024013 +78541 A0:n44021024016 +78545 A1:n00000000000 A1:n44021024018 +78551 A0:n44021024027 +78554 A0:n44021020011 A1:n44021024030 +78560 A0:n44021025005 +78563 A0:n44021025006 +A0:n44021018015;n44021018010 A1:n44021025009 +A0:n44021025010 A1:n44021025013;n44021025015;n44021025017;n44021025019 +78579 A0:n44021026003 A1:n44021026006 +78583 A0:n44021026009 +78587 A1:n44021026003 +A0:n44021026003 +78592 A0:n44021026003 A1:n44021026019 +78601 A1:n44021026032 +78610 A0:n44021027006 A1:n44021027007 +78614 A1:n44021027006 +78620 A0:n44021027012 A1:n44021027014 +78625 A0:n44021027012 A1:n44021027021 +78630 A0:n44021027012 A1:n44021027027 +78635 A0:n44021027012 +78638 A0:n44021028002 +78656 A0:n44021028008 A1:n44021028020 +78661 A0:n44021026003 A1:n44021028026 +78666 A0:n44021026003 A1:n44021028035 +78673 A0:n44021027012 A1:n44021029011 +78682 A0:n44021027012 +78688 A1:n44021029012 A0:n44021029020 +78692 A1:n44021030004 +78697 A0:n44021030008 +78702 A0:n44021030010 A1:n44021030014 +78705 A0:n44021030010 A1:n44021030016 +78712 A1:n44021030024 +78716 A0:n44021030010 A1:n44021031004 +78718 A0:n44021030010 A1:n44021031003 +A0:n44021031006 AA2:n44021031008 +78728 A1:n44021031014 +78731 A0:n44021031008 A1:n44021032004;n44021032006 +78735 A0:n44021032001 +78740 A0:n44021030010 A1:n44021032014;n44021032017 +78746 A0:n44021032010 A1:n44021032019 +A0:n44021030010 A1:n44021032021 +78751 A0:n44021033004 +78754 A0:n44021033004 A1:n44021033006 +78757 A0:n44021033004 A1:n44021033009 +A1:n44021032021 +78762 A0:n44021033004 A1:n44021033014;n44021033019 +78768 A0:n44021032021 A1:n44021033017 +78773 A0:n44021034001 A1:n44021034004 +78779 A0:n44021034012 A1:n44021034013 +78781 A0:n44021033004 A1:n44021034015 +78787 A0:n44021033004 A1:n44021034020 +A1:n44021034021 +78795 A0:n44021032021 +78799 A0:n44021035008 +A1:n44021035009 +78811 A0:n44021036004 +78816 A0:n44021036004 +A0:n44021033004 A1:n44021036009 +78820 A0:n44021037008 A1:n44021037003 +A1:n44021037008 +78827 A0:n44021037008 A2:n44021037011 +78831 A0:n44021037015 +78833 A0:n44021037008 A1:n44021037016 +78839 A0:n44021037019 +78841 A0:n44021037008 +78853 A0:n44021038006 +78855 A0:n44021038006 A1:n44021038020 +78865 A0:n44021039004 +78881 A0:n44021039004 A1:n44021039019 +78883 A0:n44021037011 A2:n44021039021 A1:n44021039022 +78885 A0:n44021039004 +78890 A0:n44021040003 +78894 A0:n44021040005 +78898 A0:n44021040005 A1:n00000000000 A2:n44021040014 +78906 A0:n44021040017 +A0:n44021040005 +78911 A0:n44021040005 +78916 A0:n44022001001 A1:n44022001011 +78924 A0:n44021040014 +78929 A0:n44021040005 A1:n44022002008 +78932 A0:n44021040014 A1:n44022002011 +78935 A0:n44021040005 +78940 A1:n44021040005 +78946 A1:n44021040005 +78955 A1:n44021040005 +78974 A0:n44022004001 A1:n44022004004 +78977 A0:n44021040005 A1:n44022004013;n44022004016 +78979 A0:n44021040005 A1:n44022004013;n44022004016 +78990 A0:n44022005004 A2:n44022005006 +79000 A0:n44021040005 A1:n44022005014 +79006 A0:n44021040005 +A0:n44021040005 A1:n44022005025 +79011 A0:n00000000000 +A1:n44022005025 +79016 A1:n44022005025 +79018 A0:n44022006015 +79020 A0:n44021040005 +79022 A0:n44021040005 AA2:n44022006008 +79031 A0:n44022006016 +79037 A0:n44021040005 +79042 A0:n44021040005 A1:n44022007009 +79044 A0:n44022007008 A2:n44022007010 +79050 A0:n44022007011 A1:n44022007014 +79053 A0:n44022008001 +79058 A0:n44022007008 +79068 A1:n44022008016 A0:n44022008017 +79074 A0:n00000000000 +79077 A0:n44022009004 A1:n44022009008 +79080 A0:n44022009004 A1:n44022009012 +79084 A0:n44022008013 A2:n44022009017 +79087 A0:n44021040005 +79089 A0:n44021040005 A1:n44022010003 +79094 A0:n44022010008 +79097 A0:n44021040005 +A0:n44021040005 +79103 A1:n00000000000 A2:n44022010017 +79107 A0:n44021040005 A1:n44022010021 +A1:n44022010024 A2:n44022010023 +79113 A0:n44021040005 +79120 A1:n44021040005 +79123 A0:n00000000000 +79125 A0:n44021040005 +79136 A1:n44022012004 +79140 A0:n44022012014 +79142 A0:n44022012001 +79146 A0:n44022012001 +A0:n44022012001 A2:n44022013007 +79151 A0:n44022013008 +79156 A0:n44022013011 +79161 A0:n44022014001 +79167 A0:n44022014005 A1:n44022014010 +79169 A0:n44021040005 A1:n44022014013 +79174 A0:n44021040005 A1:n44022014018 +79178 A0:n44021040005 A1:n44022014021 +79192 A0:n44021040005 A1:n44022015008 +79194 A0:n44021040005 A1:n44022015008 +79198 A0:n44021040005 A1:n44022016003 +A0:n44021040005 +A0:n44021040005 +79202 A0:n44021040005 A1:n44022016010 +79206 A0:n44021040005 A1:n44022016014 +79211 A0:n44022017016;n44022018002 +79213 A0:n44021040005 +79217 A0:n44022017009 +79227 A0:n44021040005 A1:n44022018004 +79229 A0:n44022018003 A2:n44022018005 +79231 A0:n44021040005 +79233 A0:n44021040005 +79240 A0:n44022018012 A1:n44022018017 +79246 A0:n44022019001 +79249 A0:n44022019004 +79253 A0:n44022019007 A1:n44022019016 +79255 A0:n44022019007 A1:n44022019016 +79260 A0:n00000000000 +79265 A1:n44022020005 +79275 A0:n00000000000 +79277 A0:n00000000000 +79279 A0:n00000000000 A1:n44022020019 +79283 A0:n00000000000 A1:n44022020022 +79286 A0:n44022010008 +79289 A0:n44021040005 +79295 A0:n44022021007 A1:n44022021012 +79298 A0:n44021040014 A1:n44022022003 +79305 A0:n44021040014 A1:n44022022011 +79309 A0:n44021040014 +A0:n44021037011 A1:n44022022019 +79318 A0:n44022022024 +79320 A0:n44022022023 +79322 A0:n44022023003 +79325 A0:n44021040014 A1:n44022023007 +79330 A0:n44021040014 A1:n44022023009 +79334 A0:n44022024003 A1:n44022024004 +79337 A1:n44022024005 +79342 A0:n44022024003 A1:n44022024011 +79344 A1:n44022024012 +79347 A0:n44022024003 A1:n44022024019 +79352 A0:n44021040014 A1:n00000000000 A2:n44022024020 +79356 A0:n44021035012 A1:n44022025004 +79360 A0:n44022025013 +79363 A0:n44022025011 +79372 A0:n00000000000 A1:n44022025015 +A0:n44022025021 +79376 A0:n44022026004 +79379 A0:n44022026004 +79382 A0:n44022026004 +A0:n44022026004 +A0:n44022026007 A1:n44022026012 +79386 A0:n44022026007 A1:n44022026010 +79394 A0:n44022027004 +79397 A0:n44022027004 A2:n44022027006 +79399 A0:n44022025013 A2:n44022027008 +79406 A0:n44022027012 +79409 A0:n44022028004 +79418 A0:n44022028005 A1:n44022028009 +79422 A0:n44022028014 +79426 A1:n44022028016 +79429 A0:n44022029007 +79433 A0:n44021035012;n44022026004 A1:n44022029009 +79435 A0:n44021035012;n44022026004 A1:n44022029008 +79440 A0:n44022029012 +A0:n44022029012 +79449 A0:n44022029012 A1:n44022029021 +79453 A0:n44022029012 A1:n44022030005 +A0:n44022029012 A1:n44022030007 +79459 A1:n44022028014 +79463 A0:n44022029012 A1:n44022030015 +79466 A0:n44022029012 A1:n44022030018 +A0:n44022030020;n44022030024 +79475 A0:n44022029012 A1:n44022030028 +79478 A0:n44022029012 +79484 A0:n44023001004 A1:n44023001006 +79487 A0:n44023001004 +79494 A0:n44023001010 +79505 A0:n44023002003 A2:n44023002007 A1:n44023002009 +79507 A0:n00000000000 +79509 A0:n44023002007 A1:n44023002012 +79518 A0:n44023003003 +A0:n44023003011 A1:n44023003008 +79521 A1:n44023003007 A0:n44023003011 +79525 A1:n44023003012 +79528 A0:n44023003015 +A0:n44023003012 A1:n44023003018 +79535 A0:n44023003012 +A0:n44023003012 A1:n44023003026 +79538 A1:n44023003025 +79541 A0:n00000000000 +A0:n44023004003 +79547 A0:n44023003003 A1:n44023004006 +79549 A0:n44023005004 +79553 A0:n44023005004 +79559 A1:n44023005019 +79566 A0:n00000000000 A1:n44023005014 +79571 A0:n44023006004 +79582 A0:n44023006004 +79598 A1:n44023006004 +79602 A1:n44023007001 A0:n44023007003 +A0:n44023007006 +79610 A1:n44023007014 +79615 A0:n44023008001 A1:n44023008005 +79617 A0:n44023008006;n44023008008;n44023008010 +79625 A0:n44023008011 A1:n44023008015 +79629 A0:n44023009003 +79633 A0:n44023009007 +79641 A0:n44023009007 +A0:n44023009007 +79645 A0:n44023009007 A1:n44023009016 +79653 A0:n44023009025 A2:n44023009027 +79660 A0:n44023010004 +79663 A1:n44023010007 +79665 A1:n44023010011 +79670 A0:n44023010007 A1:n44023010018;n44023010023 +79673 A0:n44023010016 +A0:n44023010016 A1:n44023010019 +79680 A0:n44023010016 +79686 A0:n44023011004 +79688 A0:n44023011008 +79692 A0:n44023011008 +A0:n44023010011 +79696 A0:n44023010011 A1:n44023011014 +79703 A0:n44023011025 +79708 A0:n44023011020 +79710 A0:n44023012003 +79712 A0:n44023012007 A1:n44023012005 +79716 A0:n44023012007 A1:n44023012009 +79718 A0:n44023012007 A1:n44023012012;n44023012014 +79720 A0:n44023012007 +79722 A0:n44023012007 +79725 A0:n44023012007 A1:n44023012019 +79736 A0:n44023012007 A1:n44023013008 +79738 A0:n44023013009 +79744 A0:n44023014001 +79746 A0:n44023013009 A1:n44023014013 +79749 A0:n44023014011 A1:n44023014012 +79752 A0:n44023013009 A1:n44023014018 +79758 A0:n44023015003 A1:n00000000000 A2:n44023015006 +79765 A0:n44023015006 A1:n44023015012 +79770 A0:n44023014004;n44023014007;n44023015009 A1:n44023015017 +A0:n44023014004;n44023014007;n44023015009 A1:n44023015019 +79780 A0:n44023015027 +79785 A0:n44023013009 A1:n44023015032 +79793 A0:n44023016004 A1:n44023016009 +79796 A0:n44023016004 +79798 A0:n44023016004 +79802 A0:n44023016004 A2:n44023016018 +79808 A0:n44023017004 A1:n44023017005 +79812 A0:n44023017004 +79816 A0:n44023017005 A1:n44023017010 +79821 A0:n44023017010 A1:n44023017018 +A0:n44023017010 A1:n44023017019 A2:n44023017020 +79828 A0:n44023017005 A1:n44023018005 +79830 A0:n44023018001 +79835 A0:n44023017005 +79839 A0:n44023018013 A1:n44023018016 +79841 A0:n44023018013 A1:n44023018021 +79845 A0:n44023017005 A1:n44023018020 +79848 A0:n44023018020 A1:n44023018026 +79850 A0:n44023018020 A1:n44023018025 A2:n44023018027 +79855 A0:n44023019007 A1:n44023019004 +79860 A0:n44023019007 +79863 A0:n44023019007 A1:n44023019013 +79867 A0:n44023016004 A1:n44023019015 A2:n44023019018 +79869 A0:n44023016004 A1:n44023019017 +79871 A0:n44023016004 +79875 A0:n44023020005 A1:n44023020008 +79877 A0:n44023020005 A1:n44023020009 +79883 A0:n44023019007 A1:n44023020013 +79888 A0:n44023020017 A1:n44023020022 +79891 A0:n44023020017 A1:n44023020020 +79897 A1:n44023021001 +79900 A1:n44023021008 A0:n44023021011 +79908 A0:n44023021014 A1:n44023021018;n44023021020 +79911 A0:n44023021016 +79913 A0:n44023021016 +79916 A0:n44023021011 A1:n44023021024 +79922 A0:n44023021011 A1:n44023021033 +79931 A0:n44023022004 A1:n44023022007 +79934 A0:n44023022004 A1:n44023022010 +79936 A0:n44023022007 A2:n44023022009 +79939 A0:n44023022007 A1:n44023022012 +79943 A0:n44023022004 A1:n44023023003 +79948 A0:n44023022004 +A0:n44023023003 A1:n44023023009;n44023023016;n44023023019 +79959 A1:n44023023009;n44023023016;n44023023019 +79969 A0:n44023023003 A1:n44023024001 +79971 A0:n44023023009;n44023023016;n44023023019 A1:n44023024007 +79974 A0:n44023023009;n44023023016;n44023023019 A1:n44023024007 +79979 A0:n44023022004 A1:n44023025002 +79981 A0:n44023025002 A1:n44023025005 +79991 A0:n44023026001 A1:n44023026005 +79995 A1:n44023027002 +80000 A0:n44023027002 A1:n44023027010 +A1:n44023027002 +80004 A0:n44023026001 +80008 A0:n44023026001 A1:n44023027002 +A0:n44023026001 +80014 A0:n44023026001 A1:n44023028003 +A0:n44023026001 A1:n44023028005 +80020 A0:n44023027007 A1:n44023028009 +80022 A0:n44023026001 +80027 A0:n44023026001 A1:n44023029003;n44023029015 +80029 A1:n44023029001 +80042 A0:n44023027002 A1:n44023029016 +80044 A2:n44023030003 A1:n44023030008 +80050 A0:n44023030004 +80052 A0:n44023026001 +80055 A0:n44023026001 A2:n44023030016 A1:n44023030017 +80059 A0:n44023030016 +80070 A1:n00000000000 A2:n44023031008 +80072 A0:n44023031004 A1:n44023031011 +80075 A0:n44023031004 +80084 A0:n44023031004 A1:n44023032007 +80087 A0:n00000000000 A1:n44023032006 +80090 A0:n44023031004 +80095 A0:n44023032006 +80100 A0:n44023032006 A1:n44023033009 A2:n44023033011 +80105 A0:n44023033001 A1:n44023033015 A2:n44023033016 +80111 A0:n44023033011 +80113 A0:n44023033011 +80119 A0:n44023033011 +80123 A0:n44023033011 +A0:n44023033011 A1:n44023035002 +80131 A0:n44023035007 +A0:n44023033011 A1:n44023035016 +80138 A1:n44023035017 +80144 A0:n44024001007 +80156 A0:n44024001016 A1:n00000000000 A2:n44024001019 +80163 A1:n44024002003 +80165 A1:n44024002005 A0:n44024002007 +A0:n44024002007 +80169 A0:n44024002007 +80172 A0:n44024001007;n44024001010;n44024002007 A1:n44024002010 +80177 A0:n44024002015 AA2:n44024002018 +80189 A0:n44024001010;n44024002007;n44024001007 +80201 A0:n44024002007 A1:n44024004006 +A0:n44024002007 A1:n44024004009 +A0:n44024004010 A1:n44024004011 +80211 A0:n44024001007;n44024001010;n44024002007 A1:n44024005006;n44024005008;n44024005017 +80217 A0:n44024005004 A1:n44024005009 A2:n44024005012 +80236 A0:n44024005004 A1:n44024006004 +A0:n44024006001 A1:n44024006006 +80240 A0:n44024001010;n44024002007;n44024001007 A1:n44024006007 +80243 A0:n44024008004 A1:n44024008009 +80245 A0:n44024003007 +80249 A0:n44024003007 A1:n44024008012 +80252 A1:n44024008010 A0:n44024008011 A2:n44024008013 +80255 A0:n44024009005 +80259 A0:n44024009005 A1:n44024009008 +80264 A0:n44024010004 +80267 A2:n44024010006 A0:n44024010008 A1:n44024010009 +80271 A0:n44024010004 +80281 A0:n44024010004 A1:n44024010014 +80286 A0:n44024010004 A1:n44024010021 +A0:n44024011002 A1:n44024011003 +80289 A0:n44024010008 +80299 A0:n44024010004 +A0:n44024010004 +80304 A0:n44024001007;n44024001010;n44024002007;n44024009005 A1:n44024012010;n44024012013 +80308 A0:n44024012007 +80312 A0:n44024010004 A1:n44024012012 +80326 A0:n44024001010;n44024002007;n44024001007;n44024009005 A1:n44024013002 +A0:n44024001007;n44024001010;n44024002007;n44024009005 A1:n00000000000 A2:n44024013004 +80332 A0:n44024001007;n44024001010;n44024002007;n44024009005 A1:n44024013006 A2:n44024013009 +80335 A0:n44024010004 A1:n44024014003 A2:n44024014004 +80343 A0:n44024001007;n44024001010;n44024002007;n44024009005 A1:n44024014009 +80346 A0:n44024010004 A1:n44024014016 +80350 A0:n44024010004 A1:n44024014019;n44024014028 +80361 A1:n00000000000 +A0:n44024010004 A1:n44024015001 +80371 A1:n44024015006 A0:n44024015009 +A1:n44024015013 A0:n44024015011 +A0:n44024015011 +80383 A0:n44024016004 A1:n44024016008 +80386 A0:n44024010004 A1:n44024016007 +80400 A0:n44024010004 A1:n44024017005 +80405 A0:n44024010004 +80410 A0:n44024001010;n44024002007;n44024001007 A1:n44024018005 +80412 A1:n44024018004 +80431 A0:n44024019007 +80433 A0:n44024019007 +A0:n44024019011;n44024019013 +80437 A0:n44024019006 A1:n44024019015 +80443 A0:n44024020003 +80446 A0:n44024001007;n44024001010;n44024002007;n44024009005 A1:n44024020007 +A0:n44024020009 +80458 A0:n44024010004 A1:n44024021006 +80461 A0:n44024010004 +80467 A1:n44024021015 +80472 A1:n44024022003 A0:n44024022005 +80477 A0:n44024022005 A1:n44024022008 +80482 A0:n44024022005 +80487 A0:n44024022014 +A0:n44024022005 A1:n44024022019 +80492 A0:n44024022005 A2:n44024023003 A1:n44024023004;n44024023006;n44024023011 +80495 A1:n44024023005 +80498 A0:n44024010004 A1:n44024023008 +80501 A0:n44024023003 A1:n44024023015 +80506 A0:n44024023010 A1:n44024023016 +80514 A0:n44024024007 +80522 A0:n44024024007 A1:n44024024017 +80526 A0:n44024024007 A1:n44024024020 +80535 A0:n44024025003 +80545 A0:n44024025010 +80550 A0:n44024025016 A1:n44024025021;n44024025025 +80553 A0:n00000000000 +A0:n44024024017 +80557 A0:n44024025016 A1:n44024025022 +A0:n44024025016 A1:n44024025026 +80562 A0:n44024025016 +80565 A1:n44024026005 A2:n44024026007 +80574 A0:n44024025016 A1:n44024026014 +A0:n44024025016 +80579 A1:n44024027001 +A0:n44024027007 A1:n44024027005 +80587 A0:n44024027017 A1:n44024027013 +80589 A0:n44024027017 A1:n44024027012 A2:n44024027015 +80594 A0:n44024027017 A1:n44024027020 +80597 A1:n44024027020 +80600 A0:n44025001001 +80606 A0:n44025001001 +80612 A2:n44025002003 A1:n00000000000 A0:n44025002005;n44025002008 +80625 A0:n44025002005;n44025002008 A1:n44025002016 +80627 A0:n44025002005;n44025002008 A1:n44025003002 +80632 A0:n44025001001 A1:n44025003007 +80637 A0:n44025002005;n44025002008 A1:n44025003010 +A0:n44025002005;n44025002008 A1:n44025003013 +80647 A0:n44025004004 A1:n44025004006;n44025004013 +A1:n44025004008 +80655 A0:n44025004011 A1:n44025004016 +80658 A0:n44025004004 +80660 A0:n44025004004 +80665 A0:n44025005006 +A0:n44025005006 A1:n44025005016 +80676 A0:n44025004004 +80685 A0:n44025004004 +80690 A0:n44025004004 +80694 A0:n44025004004 A1:n44025006023 +80697 A1:n44025006022 +80699 A0:n44025007003 +80701 A0:n44025007010 +80706 A0:n44025007010 +80712 A0:n44025007010 A1:n44025007014 +80714 A0:n44025007010 A1:n44025007016 +80716 A0:n44025007010 A1:n44025007019 +80719 A0:n44025008002 A1:n44025008019 +80735 A0:n44025008002 A1:n44025008018 +80739 A0:n44025009002 A1:n44025009008 +80743 A0:n44025009002 A2:n44025009006 A1:n44025009007 +A1:n44025009002 A2:n44025009011 +80747 A0:n44025009002 +A0:n44025009011 A1:n44025009020 +80751 A0:n44025009011 +80755 A1:n44025009011 +80759 A0:n44025010004 +80766 A0:n44025010004 +80770 A1:n44025010012 +A0:n44025010014 +80774 A0:n44025010004 A1:n44025010015 +80779 A0:n44025010020 +80783 A0:n44025010004 +80788 A0:n44025010004 A1:n44025011009 +80790 A0:n44025010004 A1:n44025011013 +80792 A0:n44025010004 +80799 A1:n44025011018 A0:n44025011019 A2:n44025011021 +80802 A0:n44025011022 A1:n44025011026 +80805 A0:n44025011022 A1:n44025011023 A2:n44025011025 +80807 A0:n44025010004 A1:n44025011027 +80811 A0:n44025012003 +80815 A0:n44025012003 +80817 A0:n44025010004 A1:n44025012009 +80820 A0:n44025010004 +80824 A0:n44025013001 +80830 A0:n44025013005;n44025013009 +80833 A0:n44025013005;n44025013009 A1:n44025013015 +80840 A0:n44025013005;n44025013009 +80846 A0:n44025014008 A2:n44025014010 A1:n44025014012 +80851 A0:n44025014008 +80855 A1:n44025014023 +80865 A0:n44025015009;n44025015012 +80873 A0:n44025015009;n44025015012 A1:n44025015018 +80879 A1:n44025014008 +80885 A0:n00000000000 A1:n44025016011 +80891 A1:n00000000000 +80894 A0:n44025016015 A1:n44025016020 +80900 A0:n44025016015 A1:n44025016021 +80905 A0:n44025015009;n44025015012 +80909 A0:n44025014008 A1:n44025017004 +80912 A0:n44025014008 +80916 A0:n44025014008 A1:n44025017014 +A1:n44025017016 +80922 A1:n44025018005 +80925 A0:n44025018005 A1:n44025018007 +80930 A1:n44025018009 A0:n44025018010 +80939 A0:n44025018005 A1:n44025019001 +80946 A0:n44025019014 +80948 A0:n44025019016 +A1:n44025019020 A0:n44025019019 +80954 A0:n44025014008 A1:n44025020007 +80959 A0:n44025020003 +80961 A0:n44025019019 A1:n44025020011;n44025020015 +A0:n44025019019 +80966 A1:n44025019019 +80972 A0:n44025021003 A1:n44025021005 +A1:n44025021006 +80980 A0:n44025014008 A1:n44025021013 +A1:n44025021014 +80985 A0:n44025014008 A1:n44025021018 +80994 A0:n44025022008 A1:n44025022011 +80999 A0:n44025022001 A1:n44025022010 +A0:n44025022005 +81002 A0:n44025022001 A1:n44025022015 +81007 A0:n44025023006;n44025023009 +81017 A0:n44025023006;n44025023009 +81032 A0:n44025023031 +81035 A1:n44025023034 +81039 A0:n44025024004 +81047 A0:n44025024012 +81050 A0:n44025024012;n44025024005 A1:n44025024014 +81059 A0:n44025024019 A1:n44025024023 +81066 A0:n44025024019 A1:n44025024031 +81068 A0:n44025024033 +81070 A0:n44025024032 +81074 A0:n44025025001 A1:n44025025008 +81079 A1:n44025025004 A0:n44025025006 +81083 A0:n44025025011 A1:n44025025014 +81086 A0:n44025024004 A1:n44025025016 +A0:n44025024004 +81092 A0:n44025024004 A1:n44025026004 A2:n44025026007 +81096 A0:n44025024004 A1:n44025026005 +81098 A0:n44025024004 A1:n44025026012 +81111 A0:n44025026023 +A0:n44025024004 A1:n44025026027 +81114 A0:n44025024004 A1:n44025026026 +81119 A0:n00000000000 A1:n44025027006 +81127 A0:n00000000000 A1:n44025027012 +81133 A0:n44026001001 +A2:n44026001008 A1:n44026001011 +81138 A0:n44026001005 +81142 A0:n44026001014 A1:n44026001017 +81145 A0:n44026001014 +81151 A1:n44026001014 A1:n44026002003 +81154 A0:n44026001014 A1:n44026002010 +81160 A0:n44026001014 +A0:n44026001014 A1:n44026002016 +81175 A0:n44026001014 A1:n44026003016 +81177 A0:n44026002007 A1:n44026003017 +81197 A1:n44026004004 A0:n44026004021 +81200 A0:n44026004021 A1:n44026005002 +81204 A0:n44026004021 A1:n44026005006 +A0:n44026004021 +81214 A0:n44026001014 +81225 A0:n44026006010 +81230 A0:n44026001014 +A1:n44026001014 +81234 A0:n44026007004 +81243 A0:n44026007004 +A1:n44026007013 A0:n44026007004 +81248 A1:n44026001014 +81254 A1:n00000000000 A1:n44026008002 +81261 A0:n44026008008 A1:n44026008009 +81265 A0:n44026009001 A1:n44026009012 +81267 AA2:n44026009005 A0:n44026009015 +81276 A0:n00000000000 A1:n44026009014 +81279 A0:n44026001014 A1:n44026010001 +81290 A1:n44026010007 A0:n44026010011 +81296 A0:n44026001014 A1:n44026010019 +81298 A1:n44026010023 +81300 A0:n44026001014 A1:n44026010025 +81308 A0:n44026001014 A1:n44026011008 +81310 A0:n44026001014 A1:n44026011010 +A0:n44026010007 +81314 A0:n44026001014 AA2:n44026011014 +81316 A0:n44026001014 +81325 A0:n44026001014 +81341 A0:n44026001014 A1:n44026013014 +81348 A0:n44026013016 A1:n44026013015;n44026013021 +81355 A0:n00000000000 +81360 A0:n44026014004 +81364 A0:n44026001014 A1:n44026014010 +81366 A0:n44026014009 +81376 A0:n44026014016 A1:n44026014019 +81381 A0:n00000000000 +81384 A0:n44026015001 +81391 A0:n44026015009 +81397 A1:n44026015014 A0:n44026015015 +81399 A0:n44026001014 +81401 A0:n44026001014 +81409 A1:n44026015009 A2:n44026016013 +81411 A0:n44026015009 A1:n44026016015 +81418 A0:n44026001014 A1:n44026016022 +81422 A1:n44026015009 A2:n44026016026 +81424 A0:n44026015009 A1:n44026017002 +81436 A0:n44026017012 A1:n44026017014 +81438 A0:n44026001014 A1:n44026018002 +81442 A0:n44026001014 +81456 A0:n44026018020 A1:n44026018021;n44026018024 +81464 A1:n00000000000 +81495 A0:n44026001014 A2:n44026020002;n44026020008;n44026020012;n44026020017 A1:n44026020019;n44026020021 +A0:n44026020002;n44026020008;n44026020012;n44026020017 +81498 A0:n44026020002;n44026020008;n44026020012;n44026020017 +81506 A0:n44026020002;n44026020008;n44026020012;n44026020017 A1:n44026020028 +81511 A0:n44026021004 A1:n44026021003 +81515 A0:n44026021004 A1:n44026021010 +A0:n44026021004 A1:n44026001014 +81518 A0:n44026001014 A1:n44026022001 +81528 A0:n44026001014 +A0:n44026001014 A1:n00000000000 A2:n44026022014;n44026022017 +81535 A0:n44026001014 A1:n44026022018 +81538 A0:n44026022021 A1:n44026022027 +A0:n44026022021 +81545 A1:n44026022026 A0:n44026022024;n44026022029 +81555 A0:n44026023004 A1:n44026023012 +81557 A0:n44026023004 A1:n44026023010 A2:n44026023015;n44026023018 +81567 A1:n44026024001 A0:n44026024003 +81573 A0:n44026024006 +A0:n44026024012 +81582 A0:n44026024016 A1:n44026024015 +81586 A0:n44026025003 +81590 A0:n44026025003 +81596 A0:n44026025003 A1:n44026025013 +81598 A0:n44026026006 +81606 A0:n44026025003 +A0:n44026025003 +81609 A1:n44026026014 A0:n00000000000 +81613 A0:n44026025003 A1:n44026026012 +81618 A1:n44026026025 +81624 A0:n44026027002 A1:n44026027005 +81627 A0:n44026025003 +81629 A0:n44026027002 +81639 A0:n44026028006 A1:n44026028009 +81641 A0:n44026028006 A1:n44026028011 +81646 A0:n44026029003 A2:n44026029007 A1:n44026029025 +81662 A0:n00000000000 A1:n44026029022 +81675 A0:n44026030004;n44026030007;n44026030010;n44026030013 +81687 A0:n44025023020;n44025023022 +81690 A0:n44026030004;n44026030007;n44026030010;n44026030013 +A0:n44026030004;n44026030007;n44026030010;n44026030013 +81694 A0:n44026030004;n44026030007;n44026030010;n44026030013 +81701 A1:n44026031008 A0:n44026031015 +81709 A0:n44026032001 A2:n44026032004 +A1:n44026032009 +A1:n44026032006 A0:n44026032009 +81717 A0:n44026032009 A1:n44026032014 +81721 A1:n44027001005 +81723 A0:n44027001006 +81728 A0:n44026032001;n44026032004;n44026030010;n44026030013 A1:n44027001013;n44027001017 A2:n44027001018 +81742 A0:n44027001013;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027001018 +81745 A0:n44027002003 A1:n44027002006 +A0:n44027002003 +81753 A1:n44027001013;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027001018 +81763 A1:n44027001013;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027001018;n44027002017 +81772 A0:n44027003010 A1:n44027003012 +A0:n44027003010 A1:n44027003018 +81777 A1:n44027003012 +81779 A0:n44027003012 A1:n44027003019 +81781 A1:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027003010;n44027002017 +A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027003010;n44027002017 +81800 A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027003010;n44027002017 +A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027003010;n44027002017 +81809 A0:n44027006004 A1:n44027006005 +81812 A0:n44027006005 +81816 A0:n44027006004 A1:n44027006012 +81824 A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027006004;n44027002017 +81827 A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027006004;n44027002017 +81832 A1:n44027007014 A0:n44027007016 +81836 A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027006004;n44027002017 +81843 A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027006004;n44027002017 +81845 A0:n44027003012;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027006004;n44027002017 +81860 A0:n44027009003 +81873 A0:n44027009015 +A0:n44027009020 +81877 A0:n44027009020 A2:n44027010002 +81880 A0:n44027009020 +81900 A1:n44027010007;n44027010010 A0:n44027010026 +81912 A1:n44027011003 A2:n44027011005;n44027011008 +81917 A1:n44027010004 +81927 A0:n44027012009 A1:n44027012011 +81929 A1:n44027012009 +81933 A0:n44027012009 A1:n44027012020 +A0:n44027012009 +81940 A0:n44027012021 +81946 A0:n44027012009 +81948 A0:n44027013003 +81950 A0:n44027012009 A1:n44027013007 +81953 A0:n44027012009 A1:n44027013006 +A0:n44027012009 +81956 A0:n44027012009 +81963 A0:n44027014008 +81972 A1:n44027015004 +81977 A0:n44027015004 A1:n44027015008 +A0:n44027015004 A1:n44027015010 +81981 A0:n44027009020;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027011003;n44027002017;n44027012009 +A1:n44027009020;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027011003;n44027002017;n44027012009 +81984 A0:n44027009020;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027011003;n44027002017;n44027012009 +81989 A0:n44027009020;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027011003;n44027002017;n44027012009 A1:n44027016009 +81996 A0:n44027027017 A1:n44027017001 +81998 A0:n44027027017 A1:n44027017003 +A0:n44027027017 A1:n44027017007 +82003 A0:n44027027017 +82008 A0:n44027027017 +A0:n44027027017 A1:n44027017017 +82013 A1:n44027027017 +82016 A1:n44027018004 +82021 A0:n44027027017 A1:n44027018007 +82030 A0:n44027027017 A1:n44027019006 +82036 A0:n44027020003;n44027020005 +82044 A0:n44027020010 +82046 A1:n44027020017 +82050 A1:n44027020021 +82055 A0:n44027021003 +82057 A1:n44027021008 +82063 A0:n44027021008 +82067 A0:n44027021020;n44027021024 +A0:n44027021016 A1:n44027021018 +82071 A1:n44027021016 +82076 A0:n44027021016 A1:n44027021027;n44027021031 +82086 A0:n44027021008 A1:n44027022006 +82088 A0:n44027022005 +82100 AA2:n44027023003 A0:n44027023014 +82111 A0:n44027021008 A1:n44027023011 +82113 A0:n44027023014 +82115 A0:n44027024004 +82119 AA2:n44027024005 A0:n44027024006 +A0:n44027024008 +82122 A0:n44027024004 +A2:n44027024012 A0:n44027024014 A1:n44027024017 +82129 A0:n00000000000 +82133 A0:n44027025003 +82136 A0:n44027021008 A1:n44027025007 +82141 A0:n00000000000 +82145 A1:n00000000000 A2:n44027025015 +82148 A0:n44027026007 +82153 A0:n44027026006 +82158 A0:n44027027004 +A1:n44027027007 +82168 A0:n44027027017 A1:n44027027018 +82171 A0:n44027027021 AA2:n44027027020 +82176 A0:n44027027017 +A0:n44027027017 A1:n44027028004 +82182 A0:n44027027017 +82185 A0:n44027027017 +A0:n44027027017 A1:n44027028013 +82190 A0:n44027027017 +82196 A0:n44027021008;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027001017;n44027011003;n44027002017;n44027027017 +82199 A0:n44027027017 A1:n44027029012 +82202 A0:n44027027017 A1:n44027029016 +82204 A0:n44027029015 +82208 A0:n44027030003 A1:n44027030005 +A0:n44027030003 +82214 A0:n44027030003 A1:n44027030012 +82225 A0:n44027030003 A1:n44027030020 +A0:n44027030003 A1:n44027030022 +A0:n44027031003 A2:n44027031005;n44027031008 +82238 A0:n44027031011 +82243 A1:n44027031005;n44027031008 +82245 A0:n44027031016 A1:n44027031017 +82247 A0:n44027032004 A1:n44027032006 +82255 A0:n44027032004 A1:n44027032012 +82257 A0:n44027032011 +82262 A0:n44027033004 A1:n44027033006 +A0:n44027033004 +A0:n44027033009 A1:n44027033011 +82268 A0:n44027033010 A1:n44027033012 +82270 A0:n44027033009 +82274 A0:n44027033010 A1:n44027033016 +82276 A0:n44027033010 +82278 A0:n44027033010 A1:n44027033020 +82280 A0:n44027033009 A1:n44027034004 +82282 A0:n44027034003 A1:n44027034005 +82298 A0:n44027034016 +82300 A0:n44027033009 A1:n44027035003 +82303 A0:n44027033009 A1:n44027035006 +82305 A0:n44027033009 A1:n44027035009 +82311 A0:n44027033009 A1:n44027035006 +A0:n44027033009 A1:n44027035015 +A0:n44027033009 A1:n44027035006 +82320 A0:n44027036006 A1:n44027036008 +82334 A1:n44027030003 A1:n44027038003 +82336 A0:n44027030003 A1:n44027038006 +82339 A0:n44027030003 A1:n44027038009 +82348 A0:n44027039003 +82352 A0:n44027030003 A1:n44027039006 +82354 A0:n44027030003 A1:n44027039009 +82357 A0:n44027039009 A1:n44027039014 +82361 A0:n44027030003 A1:n44027039022 +82364 A0:n44027030003 A1:n44027039020 +82366 A0:n44027030003 +82370 A0:n44027030003 A1:n44027040003 +A0:n44027030003 +82376 A0:n44027030003 A1:n44027040012 +82382 A0:n44027030003 A1:n44027040018 A2:n44027040020 +82386 A0:n00000000000 +A0:n44027030003 +82392 A0:n44027030003 +82396 A0:n44027030003 A1:n44027041008 +82403 A0:n44027041012 +A0:n44027041012 +82409 A1:n44027041018 +82421 A0:n44027042003 A1:n44027042008 +82424 A0:n44027042011 +A0:n44027042011 +82429 A0:n44027043003 A1:n44027043005 +A0:n44027043003 A1:n44027043007 +82433 A0:n44027043003 A1:n44027043009 +82438 A0:n44027043003 A1:n44027043022;n44027044004;n44027044008 +82440 A0:n00000000000 A1:n44027043016 +A0:n44027043015 +A0:n44027043015 +82447 A0:n44027043015 +82465 A0:n44027044020 +82467 A1:n44027044019 +82472 A1:n44027043007;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82474 A0:n44027043007;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82483 A0:n44028002003 A1:n44028002008 A2:n44028002009 +82486 A0:n44028002008 +82490 A0:n44028002003 A1:n44028002012 +82492 A0:n44028002003 A1:n44028002015 +82499 A0:n44028002018 +82505 A0:n44028003004 A1:n44028003007 +82512 A0:n44028003004 +82520 A0:n44028003013 +A0:n44028003013 A1:n44028003020 +82527 A0:n44028004005 A1:n44028004006 +82530 A0:n44028004008 +82539 A0:n44028004005 +82547 A1:n44028004020 +82551 A0:n44028004022 +82555 A1:n44028004029 A0:n44028004028 +82559 A0:n44028003004 A1:n44028005006 +82565 A0:n44028005001 A1:n44028005012 +82570 A0:n44028006001 A1:n44028006005;n44028006008 +82572 A0:n44028006004 A1:n44028006006 +A1:n44028003004 +82575 A0:n44028003004 +82582 A0:n44028006014 +82584 A0:n44028004005 A1:n44028006022 +82589 A0:n44028006019 +A0:n44028004005 +A0:n44028004005 A1:n44028006027 +82602 A0:n44028007009 AA2:n44028007011 +82611 A0:n44028007011 A1:n44028007018 +82616 A0:n44028007016 +82618 A0:n44028008011 +82626 A1:n44028008004 +A0:n44028008004 +82630 A0:n44028008015 +82632 A0:n44028008015 +82635 A0:n44028008015 A1:n44028008021 A2:n44028008022 +82639 A0:n44028008015 A1:n44028008024 +82643 A0:n44028009001 +82651 A0:n44028009006 A1:n44028009012 +82653 A0:n44028009006 +82655 A1:n44028009006 +82660 A0:n44028010001 A1:n44028010006 +82663 A1:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +A0:n44028009006 A1:n44028010010 +82673 A1:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82676 A0:n44028011007 +82684 A1:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82687 A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82691 A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82699 A0:n44028013011 +82702 A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003;n44027030003 +82706 A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003 A1:n44028014003 +82708 A1:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003 A1:n44028014007 +82711 A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003 +82719 A0:n44028008015;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003 +82723 A0:n44028015003 A1:n44028015005 +82727 A0:n44028015003 +82738 A0:n44028015021 A1:n44028015018 +82741 A0:n44028015021 A1:n44028015024 +82744 A0:n44028015021 A1:n44028015026 +82748 A0:n44028015021;n44020004004;n44020004011;n44020004013;n44020004016;n44020004017;n44021016005;n44027002017;n44027043003;n44027042008;n44027042003 +82751 A2:n44028016008 A1:n44028016009 +82754 A0:n44028016008 +82759 A0:n44028016016 A1:n44028016015 +82763 A0:n44028017006 +82767 A0:n44028017007 A1:n44028017012 +82770 A0:n00000000000 +82775 A0:n44028017015 +82777 A0:n44028016008 +82785 A0:n44028016008 A1:n44028017022 A2:n44028017026;n44028017029 +82796 A1:n44028017019 +82803 A0:n44028017040 A1:n44028018003 +82805 A0:n44028018001 A1:n44028018005 +A0:n44028017040 +82816 A0:n44028019004 +82819 A1:n44028016008 A1:n44028019006 +A0:n44028016008 A1:n44028019007 +82828 A0:n44028016008 A2:n44028019011 A1:n44028019014 +A0:n44028016008 A1:n44028019015 +82835 A0:n44028016008 A1:n44028020007 +82837 A0:n44028016008 +82839 A0:n44028016008 +82849 A1:n44028016008 A1:n44028020018 +82854 A0:n44028021001 +82860 A0:n44028021006 A1:n44028021008 +82865 A0:n44028021017 +82869 A0:n44028021017 A1:n44028021023 +82871 A0:n44028021017 A1:n44028021023 +82877 A0:n44028017012 A1:n44028022005 +82880 A0:n44028017012 A1:n44028022007 +82882 A0:n44028016008 A1:n44028022006 +82894 A1:n44028022012 +82896 A0:n44028023011 A2:n44028023003 A1:n44028023004 +82899 A0:n44028023011 +82907 A0:n44028016008 A1:n00000000000 A2:n44028023012 +A0:n44028016008 A1:n44028023016 +82914 A0:n44028016008 A1:n44028023021 +82934 A1:n44028024002 +82936 A1:n00000000000 +82939 A0:n44028024007 +82945 A0:n44028024002;n44028024007 +A0:n44028025009 A1:n44028025010 +82957 A0:n44028025015 +82966 A0:n44028025015 +A1:n00000000000 +82973 A0:n00000000000 +82975 A0:n44028026005 +82979 A0:n44028026005 +82981 A0:n44028026005 +A0:n44028026005 +82986 A0:n44028026005 +82988 A0:n44028027004 +82998 A0:n44028027006 +83003 A0:n44028027006 A1:n44028027015 +83006 A0:n44028027006 +83012 A0:n44028027006 +83016 A0:n44028027006 +83018 A0:n44028027006 +83020 A0:n44028025015 A1:n44028027035 +83029 A2:n44028028007 A1:n44028028011 +83037 A0:n44028028014 +83039 A0:n44028025009 +83046 A0:n44028025009 A1:n44028030012 +83049 A0:n00000000000 +83052 A0:n44028025009 A1:n44028031003 +83058 A0:n44028025009 A1:n44028031008 +83075 A1:n45001001001 +83080 A0:n45001001010 A1:n45001002001 +83100 A1:n45001003003 A1:n45001004003 +83118 A0:n45001001001;n45001007005 A1:n45001005004;n45001005006 +83164 A0:n45001001001 A1:n45001008005 +83178 A1:n45001008015 +83190 A0:n45001001001 A1:n45001009007 +83205 A0:n45001001001 A1:n45001009021 +83211 A0:n45001001001 +83216 A1:n45001001001 +83222 A0:n45001001001 +83226 A0:n45001001001 A1:n45001011003 +A0:n45001001001 A1:n45001011004 +83230 A0:n45001001001 A1:n45001011008 A2:n45001011009 +83237 A1:n45001011014 +83242 A1:n45001001001;n45001007005 +83257 A0:n45001001001 A1:n45001013005 +83259 A0:n45001013004 +83262 A0:n45001001001 A1:n45001013010 +A0:n45001001001 +83267 A1:n45001001001 +83274 A0:n45001001001 A1:n45001013020 +83304 A0:n45001001001 A1:n00000000000 A2:n45001015007 +83307 A0:n45001001001 A1:n45001016005 +83318 A0:n45001016015;n45001016019 +83329 A1:n45001017001 +83335 A1:n45001017018 +83341 A0:n45001017015 +83343 A1:n45001018003 +83359 A0:n45001018012 A1:n45001018015 +83373 A0:n45001019011 A1:n00000000000 A2:n45001019013 +83390 A1:n45001020003 +A1:n45001020003 +83398 A0:n45001018012 A1:n45001021004 +83404 A0:n45001018012 +83406 A0:n45001018012 +83408 A1:n45001018012 +83414 A1:n45001021022 +83419 A0:n45001018012 A1:n45001022003 +83422 A1:n45001018012 +83424 A0:n45001018012 A1:n45001023004 +83442 A1:n45001024003 A0:n45001024005 +83455 A0:n45001024017 +83462 A0:n45001025001 A1:n45001025004 +83471 A0:n45001018012 A1:n45001025015 +83473 A0:n45001018012 A1:n45001025015 +83478 A0:n45001025006 +83488 A1:n45001026004 A0:n45001026006 +83500 A0:n45001026013 A1:n45001026018 +83513 A0:n45001027005 A1:n45001027009 +83519 A1:n45001027005 +83531 A0:n45001027019 A1:n45001027023 +83536 A0:n45001027028 +83542 A0:n45001027019 A1:n45001027027 +83546 A0:n45001018012 A1:n45001028007 +83549 A0:n45001018012 A1:n45001028006 +83552 A1:n45001028011 A0:n45001028013 +83559 A0:n45001018012 A1:n45001028020 +83562 A0:n00000000000 +A1:n45001018012 +83594 A0:n45001018012 A1:n45001032003 +83599 A0:n00000000000 A1:n45001032010 +83606 A0:n45001032001 A1:n45001032017 +83609 A0:n45001018012 AA2:n45001032023 +83611 A0:n00000000000 +83619 A0:n45002001005 +83623 A0:n45002001005 A1:n45002001014 +83627 A0:n45002001005 A1:n45002001015 +83631 A1:n45002001019 A0:n45002001022 +83633 A0:n45002001005 +83635 A0:n45001001001;n45001015008;n45002001005 A1:n45002002010 +83648 A0:n00000000000 A1:n45002002014 +83650 A0:n45002003005 A1:n45002003003 +83655 A0:n45002003005 A1:n45002003011 +83659 A0:n00000000000 A1:n45002003010 +83661 A0:n45002003005 A1:n45002003014 +83665 A0:n45002003016 A1:n45002003019 +83682 A0:n45002003005 A1:n45002004003 +A0:n45002003005 +83692 A0:n45002004017 A1:n45002004022 +83701 A0:n45002003005 A2:n45002005010 A1:n45002005011 +83713 A0:n45002006001 A1:n00000000000 A2:n45002006003 +83730 A0:n00000000000 A1:n45002007007;n45002007009;n45002007011 +83738 A0:n00000000000 A1:n45002008008 +83742 A1:n00000000000 A1:n45002008012 +83756 A0:n45002009007 A1:n45002009011 +83772 A0:n45002010012;n45002010016 A1:n45002010011 +83790 A0:n45002012001 +83793 A0:n45002012004 +83798 A0:n45002012009 +83801 A1:n45002012012 +83815 A1:n45002013012 +83822 A0:n45002014003 A1:n45002014006 +83827 A0:n45002014003 A1:n45002014009 +83831 A0:n45002014003 A1:n45002014014 +83836 A0:n45002015001 A1:n45002015004 +83846 A0:n45002015015 +83855 A0:n45002015020 +83858 A0:n45002015020 +83862 A0:n45002016006 A1:n45002016008 +83882 A0:n45002003005 +83885 A0:n45002003005 +83889 A0:n45002003005 A1:n45002018004 +83893 A0:n45002003005 A1:n45002018008 +83895 A0:n00000000000 +A1:n45002003005 +83901 A0:n45002003005 A1:n45002019004;n45002019007;n45002020001;n45002020003 +83914 A0:n45002003005 A1:n45002020007 +83927 A0:n45002003005 A1:n45002021004 +83931 A0:n45002021003 A1:n45002021005 +83933 A0:n45002003005 A1:n45002021011 +83935 A0:n45002021009 +A0:n45002021009 +83938 A0:n45002003005 A1:n45002022004 +83940 A0:n45002022002 +A0:n45002022002 +83943 A0:n45002003005 A1:n45002022009 +83946 A0:n45002022007 +83950 A0:n45002023001 +83958 A0:n45002023004 A1:n45002023011 +83966 A1:n45002024003 +83971 A1:n45002024008 +83975 A0:n45002025001 +83978 A0:n45002003005 A1:n45002025006 +83997 A0:n45002026004 A1:n45002026006 +84004 A1:n45002026012 +84006 A0:n45002027006 A1:n45002027010 +84013 A0:n45002027006 A1:n45002027008 +84081 A1:n45003001006 A1:n45003002011 +84089 A0:n45003003005 +84099 A0:n45003003008 A1:n45003003011 +84101 A0:n45003003014 +84112 A1:n45003004016;n45003004022 +84115 A1:n45003004006 +84121 A0:n45003004006 +84124 A1:n45003004026 +84133 A0:n45003005004 A1:n45003005007 +84135 A0:n45001001001;n45003001006;n45001015008 A1:n45003005009 +84141 A0:n45003005014 A1:n45003005018 +84146 A0:n45001001001 +84148 A0:n45003005012 +84151 A0:n45003006007 A1:n45003006009 +84166 A0:n45003007004 +84176 A1:n45003007018 +84180 A1:n45001001001;n45003001006;n45001015008 +84183 A0:n45003008008 A1:n45003008010 +84186 A0:n45003008009 +84188 A0:n45001001001;n45003001006;n45001015008 A1:n45003008014 +84192 A0:n45003008018 +84202 A0:n45001001001;n45003001006;n45001015008 +84206 A0:n45001001001;n45003001006;n45001015008 A1:n45003009014 +84216 A1:n45003010005;n45003010008;n45003011002;n45003011006;n45003012002;n45003012004;n45003012006;n45003012011;n45003013001;n45003013009;n45003013014;n45003014007;n45003015001;n45003016006;n45003017005;n45003018007 +84219 A0:n45003010006 +84224 A0:n45003011004 +84226 A0:n00000000000 +84228 A0:n45003011008 +84230 A0:n00000000000 A1:n45003011010 +84234 A0:n45003012001 +84236 A1:n45003012001 +84238 A0:n45003012008 +84240 A0:n00000000000 A1:n45003012009 +84243 A0:n00000000000 +84247 A1:n45003013001 +84254 A0:n45003012001 +84267 A0:n45003014003 A1:n45003014004;n45003014006 +84272 A0:n45003012001 A1:n45003015006 +84285 A0:n45003012001 A1:n45003017002 +84295 A0:n45001001001;n45003001006;n45001015008 +84300 A1:n45003019004 A0:n45003019006 +84305 A0:n45003019007 A2:n45003019008 +84309 A1:n45003019015 +84323 A1:n45003020008 +84339 A1:n45003021005 +A1:n45003021005 +84357 A0:n00000000000 +84360 A0:n45003022015 +84364 A0:n45003023001 +84366 A1:n45003023001 A1:n45003023007 +84371 A1:n45003023001 +84384 A1:n45003025001 A0:n45003025004 +84403 A0:n45003025022 +84426 A0:n45003026005 A1:n45003026023 +84435 A1:n45003027004 +84447 A0:n45001001001;n45001015008;n45003001006 A1:n45003028003 +A1:n45003028005 +84470 A0:n45003030005 A1:n45003030007 +84481 A0:n45001001001;n45001015008;n45003001006 A1:n45003031001 +84486 A0:n45003031003 +84489 A0:n45001001001;n45001015008;n45003001006 A1:n45003031010 +84491 A0:n45001001001;n45001015008;n45003001006 A1:n45004001004 +84493 A1:n45004001001 A0:n45004001005 +84505 A1:n45004002003 +A0:n45004002003 A1:n45004002008 +84516 A1:n45004003001 A0:n45004003004 +84518 A0:n45004003008 A1:n45004003010 +84523 A1:n45004003006 A2:n45004003013 +84529 A0:n00000000000 +84532 A2:n45004004003 A1:n45004004005 +84542 A0:n00000000000 +84544 A0:n00000000000 +84547 A0:n45004003010 A1:n45004005011 +84550 A2:n45004005003;n45004005004;n45004005005 A1:n45004005014 +84559 A0:n45004006003 A1:n45004006006 +84567 A2:n45004006009 A0:n45004006011 A1:n45004006013 +84575 A1:n45004007005 +84580 A1:n45004007010 +84586 A0:n45004008007 A1:n45004008008 +84602 A0:n45001001001;n45001015008;n45003001006 +A2:n45004009017 A1:n45004009019 +84612 A1:n45004009019 +84626 A0:n45004009017 A1:n45004011002 +84645 A0:n00000000000 +84650 A2:n45004011027 A1:n45004011029 +84665 A0:n00000000000 +84703 A1:n45004014009 +84707 A1:n45004014013 +84714 A0:n45004015003 A1:n45004015004 +84718 A0:n45004015010 +84757 A0:n45004016028 A1:n45004017010 +84760 A0:n45004017012 A1:n45004017016 +84764 A0:n45004017012 A1:n45004017021 +84767 A0:n00000000000 +84769 A0:n45004017021 +84771 A1:n45004017007 +84776 A0:n45004008007 A1:n45004017008 +84783 A0:n45004018001 +84793 A1:n45004018017 +84801 A0:n45004016028 +84804 A0:n45004016028 A1:n45004019009 +84808 A1:n45004019009 +84825 A1:n45004016028 +84829 A1:n45004016028 +84832 A0:n45004016028 A1:n45004020016 A2:n45004020018 +84837 A1:n45004016028 +84842 A0:n45004020018 A1:n45004021004 +84844 A0:n45004020018 A1:n45004021005 +84847 A1:n45004020014 A2:n45004022004 +84853 A1:n45004023008 +84858 A1:n45004020014 A2:n45004023009 +84865 A1:n45004020014 A2:n45004024005 +A0:n45004020014 A1:n45004024007 +84868 A0:n45001001001;n45001015008;n45003029002;n45003029011 +84871 A0:n45004020018 A1:n45004024013 +84879 A1:n45004025001 +84885 A1:n45004024013 +84891 A1:n45001001001;n45001015008;n45004024009 +84895 A0:n45001001001;n45001015008;n45004024009 A1:n45005001005 +84910 A0:n45001001001;n45001015008;n45004024009 A1:n45005002005 +84919 A0:n45001001001;n45001015008;n45004024009 +84921 A0:n45001001001;n45001015008;n45004024009 +84933 A0:n45001001001;n45001015008;n45004024009 +84937 A0:n45001001001;n45001015008;n45004024009 +84942 A0:n45005003013 A1:n45005003014 +84955 A0:n45005005003 +84961 A1:n45005005008 +84970 A1:n45005005017 A2:n45005005021 +84983 A0:n45005006003 +84989 A0:n45005007005 +84997 A0:n45005007012 A1:n45005007015 +A0:n45005007012 +85000 A1:n45005008005 A0:n45005008009 +85016 A0:n45005008015 +85020 A1:n45001001001;n45001015008;n45004024009 +85026 A1:n45001001001;n45001015008;n45004024009 +85036 A1:n45001001001;n45001015008;n45004024009 A2:n45005010007 +85047 A1:n45001001001;n45001015008;n45004024009 +A1:n45001001001;n45001015008;n45004024009 +85058 A0:n45001001001;n45001015008;n45004024009 +85073 A0:n45001001001;n45001015008;n45004024009 A1:n45005011020 +85085 A0:n45005012008 +85099 A0:n45005012025 +85103 A0:n45005012029 +85114 A1:n45005013008 +85116 A0:n45005013014 +85119 A0:n45005014004 +85130 A0:n00000000000 +85141 A0:n45005011012 +85159 A0:n45005015017 +85180 A0:n45005015022;n45005015027 +85186 A0:n45005016005 +85213 A0:n45005017008 +85229 A0:n00000000000 A1:n45005017017;n45005017022 +85232 A0:n45005017025 +85285 A0:n45005020001 +85287 A0:n45005020007 +85292 A0:n45005020012 +85295 A0:n45005020015 +85300 A0:n45005021005 +85310 A0:n45005021012 +85324 A0:n45001001001;n45001015008;n45004024009 A1:n45006001001 +A0:n45001001001;n45001015008;n45004024009 +85331 A0:n45006001009 +85333 A0:n45006001004 +85335 A0:n45006002003 +85340 A0:n45006002004 +85344 A0:n45001015008 +85347 A1:n45006003004 +85355 A1:n45006003005 +85357 A1:n45001001001;n45001015008;n45006003005 +85367 A1:n45006004013 +85382 A0:n45006004023 +85398 A0:n45001001001;n45001015008;n45006003005 A1:n45006006001 +85404 A1:n45006006007 +85406 A1:n45006006012 +85413 A0:n45006006018 A1:n45006006020 +85419 A0:n00000000000 +A1:n45006007003 +85426 A0:n45001001001;n45001015008;n45006003005 +85429 A0:n45001001001;n45001015008;n45006003005 +85432 A0:n45001001001;n45001015008;n45006003005 +85434 A0:n45001001001;n45001015008;n45006003005 +85437 A1:n45006009003 +85441 A0:n45006009003 +85445 A0:n45006009009 +85448 A0:n45006009003 +85451 A0:n45006009003 +85455 A0:n45006009003 +A0:n45006009003 +85462 A0:n45006011003 A1:n45006011007;n45006011011 +85470 A0:n45001015008 +85478 A0:n45006012005 +85488 A0:n45001015008 A1:n45006012015 +85493 A0:n45001015008 A1:n45006013004 A2:n45006013009 +85502 A0:n45001015008 A1:n45006013012 A2:n45006013014 +85509 A0:n45001015008 +85522 A0:n45006014001 +85533 A0:n45001001001;n45001015008;n45006003005 +85543 A0:n45006015003 +85545 A0:n45001015008 +85548 A0:n45001015008 A2:n45006016004 A1:n45006016006 +85556 A0:n45001015008 A1:n45006016012 +85575 A0:n45001015008 A1:n45006017017 +85580 A1:n45001015008 +85584 A1:n45001015008 +85588 A1:n45001015008 A2:n45006018008 +85592 A0:n45001001001 A1:n45006019001 +85601 A0:n45001015008 A1:n45006019013 A2:n45006019017;n45006019020 +85616 A0:n45001015008 A1:n45006019028 A2:n45006019032 +85638 A0:n45001015008 A1:n45006021003 +85643 A0:n45001015008 A1:n45006021007 +85651 A1:n45001015008 +85656 A1:n45001015008 A2:n45006022010 +85659 A0:n45001015008 A1:n45006022013 +85691 A0:n45001015008 +85693 A0:n00000000000 A1:n45007001006 +85695 A0:n45001001001 A2:n45007001004 +85699 A0:n45007001010 +85705 A0:n45007001013 +85711 A0:n45007002007 +85713 A1:n45007002004 A2:n45007002007 +85717 A0:n45007002014 +85720 A1:n45007002004 +85728 A0:n45007003005 +85739 A0:n45007003016 +85760 A1:n45007004005 +85776 A1:n45007004013 +85778 A0:n45001001001;n45007004002;n45006003005 A1:n00000000000 A2:n45007004026 +85795 A0:n45007005008 +85802 A0:n45007005008 A1:n00000000000 A2:n45007005024 +85807 A1:n45001001001;n45007004002;n45006003005 +85811 A0:n45001001001;n45007004002;n45006003005 +85814 A1:n45001001001;n45007004002;n45006003005 +85816 A0:n45007006013 +85827 A0:n45001001001;n45007004002;n45006003005 A1:n45007007001 +85832 A0:n45007007006 +85837 A0:n45001001001 A1:n45007007011 +85847 A0:n45001001001 A1:n45007007021 +85852 A0:n45007007027 +85854 A0:n00000000000 +85857 A0:n45007008005 A1:n45007008001 +85863 A0:n45007008005 A1:n45007008013 +85875 A0:n45007009001 +85880 A0:n45007009010 +85885 A0:n45007009012 +85888 A0:n45007010001 +85890 A1:n45007010008 +85904 A0:n45007011003 A1:n45007011004 +85908 A0:n45007011003 A1:n45007011010 +85913 A0:n45007011003 +85934 A0:n45007013006 +85945 A0:n45007013011 A2:n45007013018 A1:n45007013020 +85958 A0:n45001001001;n45007004002;n45006003005 +85968 A1:n45001001001 +85974 A0:n45001001001 A1:n45007015001 +85976 A0:n45001001001 A1:n45007015003 +85980 A0:n45001001001 A1:n45007015008 +85982 A0:n45001001001 A1:n45007015010 +85985 A0:n45001001001 A1:n45007015013 +85987 A0:n45001001001 A1:n45007015015 +85992 A0:n45001001001 A1:n45007016003 +85994 A0:n45001001001 A1:n45007016006 +A0:n45001001001 +86004 A0:n45007017004 A1:n45007017006 +86008 A0:n45007017012 +86013 A0:n45001001001 +86016 A0:n45007018014 +86028 A0:n45001001001 +A0:n45007018017 +86033 A0:n45001001001 A1:n45007018024 +86040 A0:n45001001001 A1:n45007019003 +86042 A0:n45001001001 A1:n45007019004 +86046 A0:n45001001001 A1:n45007019008 +86049 A0:n45001001001 A1:n45007019012 +86054 A0:n45001001001 A1:n45007020003 +86057 A1:n45007020007 A0:n45007020006 +86060 A0:n45007020010 A1:n45007020012 +86064 A0:n45007020018 +86069 A0:n45001001001 A1:n45007021004 +86074 A0:n45001001001 A1:n45007021008 +A0:n45001001001 A1:n45007021010 +86082 A0:n45007021014 +86084 A0:n45001001001 +86094 A0:n45001001001 A1:n45007023009;n45007023016 +86101 A0:n45007023004 AA2:n45007023011 +86108 A0:n45007023004 A1:n45007023017 +86126 A0:n45007024004 A1:n45007024005 +86149 A0:n45007025013 A1:n45007025018 +86175 A0:n45008002003 A1:n45008002012 +86192 A0:n45008003005 +86201 A0:n45008003013 A1:n45008003016 +86209 A0:n45008003013 A1:n45008003027 +86220 A1:n45008004003 +86224 A0:n45001001001;n45007004002;n45008001005 +86235 A0:n00000000000 +86239 A0:n45008005004 A1:n45008005006 +86275 A1:n45008007003 A2:n45008007011 +86278 A0:n45008007003 +86283 A0:n00000000000 +86285 A0:n45008008004 A1:n45008008006 +86287 A0:n45008008004 A1:n45008008007 +86300 A0:n45008009011 +86309 A0:n45008009018 A1:n45008009019 +86336 A0:n45008009012 A1:n45008011008 +86341 A0:n45008011004 +86345 A0:n45008009012 A1:n45008011018 +86350 A0:n45008011015 A1:n45008011024 +86358 A0:n45008011030 +86374 A0:n45001001001;n45008012003;n45008004013 +86379 A0:n45008012003 +A0:n45008012003 A1:n45008013007 +A0:n45008012003 +86389 A0:n45008012003 A1:n45008013012 +A0:n45008012003 +86395 A1:n45008014001 +86402 A0:n45008012003 A1:n45008015004 +86409 A0:n45008012003 A1:n45008015011 +86414 A0:n45001001001;n45008012003;n45008004013 +86421 A0:n45008016003 +86441 A0:n45001001001;n45008012003;n45008004013 +86444 A1:n45001001001;n45008012003;n45008004013 +86446 A0:n45001001001 +86457 A0:n45008018014 A1:n45008018015 +A1:n45008018014 +86473 A0:n45008019003 A1:n45008019007 +86479 A2:n45008020003 A1:n45008020005 +86485 A0:n45008019011 +86493 A1:n45008021005 +86509 A0:n45001001001;n45008012003;n45008004013 +86514 A0:n45008022006 +86516 A0:n45008022006 +86530 A0:n45001001001;n45008012003;n45008004013 A1:n45008023008 +86536 A0:n45008023012 +A0:n45001001001;n45008012003;n45008004013 A1:n45008023018 +86547 A1:n45001001001;n45008012003;n45008004013 +86550 A1:n45008024005 +86556 A0:n45008024014 A1:n45008024011 +86564 A0:n45001001001;n45008012003;n45008004013 A1:n45008025003 +A0:n45001001001;n45008012003;n45008004013 A1:n45008025005 +86568 A0:n45001001001;n45008012003;n45008004013 +86574 A0:n45008026005 +86581 A0:n45001001001;n45008012003;n45008004013 A1:n45008026012 +86583 A0:n00000000000 +86585 A0:n45001001001;n45008012003;n45008004013 A1:n45008026013 +86590 A0:n45008026021 +86595 A0:n45008021020 A1:n45008027005 +86598 A0:n45008027003 A1:n45008027007 +86607 A0:n45008027011 +86611 A0:n45001001001;n45008012003;n45008004013 +86614 A0:n00000000000 A1:n45008028007 +86618 AA2:n45008028005 A0:n45008028008 +86625 A0:n00000000000 +86628 A0:n45008028007 A1:n45008029002 +86630 A0:n45008028007 A1:n45008029003 +86647 A0:n45008028007 A1:n45008030001 +86650 A0:n45008028007 A1:n45008030004 +86653 A0:n45008028007 A1:n45008030008 +86656 A0:n45008028007 A1:n45008030010 +86659 A0:n45008028007 A1:n45008030013 +86662 A0:n45008028007 A1:n45008030016 +86665 A0:n45001001001;n45008012003;n45008004013 A1:n45008031001 +86682 A0:n45008032001 A1:n45008032005 +86687 A0:n45008031008 A1:n45008032013 +86697 A0:n45008032007;n45008032012 A1:n45008032020 A2:n45008032021 +86699 A0:n45008033001 +86705 A0:n00000000000 +86708 A0:n00000000000 +86712 A0:n45008034004 +86715 A1:n45008034004 +86724 A0:n45008034017 +86729 A0:n45008035001 A1:n45008035002 +86749 A1:n45008036006;n45008036010 +86753 A1:n45001001001;n45008012003;n45008004013 +86757 A1:n45001001001;n45008012003;n45008004013 +86765 A0:n45001001001;n45008012003;n45008004013 +86768 A0:n45008034017 A1:n45008037009 +86771 A1:n45001001001 +86782 A0:n00000000000 +86784 A0:n00000000000 +86795 A0:n45008038005;n45008038007;n45008038009;n45008038011;n45008038013;n45008038015;n45008038017;n45008039002;n45008039004;n45008039007 A1:n45008039011 +86797 A0:n45008038005;n45008038007;n45008038009;n45008038011;n45008038013;n45008038015;n45008038017;n45008039002;n45008039004;n45008039007 A1:n45008039010 +86811 A0:n45001001001 A1:n45009001001 +86815 A0:n45001001001 +A0:n45009001010 +86836 A0:n45009003006 A1:n45009003003 +86899 A0:n45009006007 +86922 A2:n45009007012 A1:n45009007013 +86941 A1:n45009008014 +86953 A0:n45009008011 +86966 A0:n45009010006 A1:n45009010009 +86975 A1:n45009007007 +86977 A0:n45009007007 A1:n45009011006 +86989 A0:n45009011014 +86996 A0:n45009011016 +A1:n45009012013 A2:n45009012009 +87002 A0:n45009012012 A1:n45009012015 +87006 A1:n45009013005;n45009013009 +87009 A0:n45009011016 A1:n45009013004 +87013 A0:n45009011016 A1:n45009013008 +87016 A0:n45001001001;n45008012003;n45008004013 A1:n45009014001 +87023 A0:n45009014008 +87027 A0:n45009014008 A2:n45009015002 +A0:n45009014008 A1:n45009015008 +87031 A0:n45009014008 A1:n45009015006 +87033 A0:n45009014008 A1:n45009015013 +87036 A0:n45009014008 A1:n45009015011 +87041 A0:n00000000000 +87044 A0:n00000000000 +87047 A0:n45009016012 A0:n45009016012 +87050 A0:n45009017004 A2:n45009017006 +87059 A0:n45009016012 A1:n45009017012 +87062 A0:n45009016012 A1:n45009017018 +87070 A1:n45009017024 +87081 A0:n45009016012 A1:n45009018003 +A0:n45009016012 A1:n45009018004 +87085 A0:n45009016012 A1:n45009018006 +A0:n45009016012 A1:n45009018008 +87088 A0:n45008012003 A2:n45009019002 +87092 A0:n45009016012 +87098 A1:n45009019009 A0:n45009019011 +87106 A0:n45009020002 A1:n00000000000 A2:n45009020010 +87110 A0:n45009020014 A2:n45009020016 +87114 A0:n00000000000 +87117 A0:n45009020016 A1:n45009020018 +87121 A0:n45009021006 A1:n45009021004 +87131 A0:n45009021006 A1:n45009021018 +87145 A0:n45009022005 A1:n45009022006;n45009022010 +A0:n45009022005 A1:n45009022008 +87150 A0:n45009022005 A1:n45009022012 +87154 A0:n45009022005 A1:n45009022018 +87160 A1:n45009022018 +87165 A0:n45009022005 A1:n45009023005 +87175 A0:n45009022005 A1:n45009023012 +87180 A0:n45009022005 A1:n45009024001 +87195 A0:n45009022005 +A0:n45009022005 A1:n45009025010 +87206 A1:n00000000000 +A1:n45009025017 +87209 A0:n00000000000 +87214 A1:n45009026010 A2:n45009026008 +87224 A0:n45009026016 +87227 A0:n45009027001 +87245 A1:n45009027020 +87248 A0:n45009028007 +87250 A0:n45009028007 +A1:n45009028001 A0:n45009028007 +87258 A0:n45009029004 +87264 A0:n45009029007 A2:n45009029010 A1:n45009029011 +87275 A1:n45009027013 +87278 A0:n45001001001;n45008012003;n45008004013 A1:n45009030001 +87283 A0:n45009030005 A1:n45009030009 +87285 A0:n45009030005 A1:n45009030011;n45009030012 +87294 A0:n45009031001 A1:n45009031004 +87300 A0:n45009031001 +87311 A0:n45009031001 +87317 A1:n45009033004;n45009033018 +87319 A0:n45009029007 A1:n45009033007;n45009033010 +87329 A0:n00000000000 +87333 A1:n45009033014 +87352 A0:n45001001001 A2:n45010002003 +87357 A0:n45009031001 A1:n45010002005 +87363 A0:n45009031001 A1:n45010003006 +87371 A0:n45009031001 A1:n45010003009 +A0:n45009031001 A1:n45010003011 +87378 A1:n45009031001 A2:n45010003013 +87387 A0:n00000000000 +87390 A0:n45010005001 +87398 A0:n45010005012 A1:n45010005013 +87400 A0:n45010005012 +87409 A0:n45010006005 +87411 A0:n45009031001 +87417 A0:n45010006014 +87424 A0:n45010006014 A1:n45010006021 +87427 A0:n45010007002 +87436 A0:n45010007002 A1:n45010007009 +87439 A0:n45010006005 A1:n45010008002 +87461 A0:n45001001001;n45010001001;n45010004009 A1:n45010008024 +87464 A0:n45010001001 A1:n45010009008 +87472 A0:n45010001001 +87481 A0:n45010009018 A1:n45010009019 +87484 A1:n45010001001 +87487 A1:n00000000000 +87492 A1:n00000000000 +87496 A0:n45010011004 +87501 A0:n00000000000 +87505 A1:n45010011007 +87508 A0:n45010012004 +87519 A0:n45010012012 +87523 A0:n00000000000 A1:n45010012019 +87529 A0:n45010013003 A1:n45010013007 +87533 A1:n45010013005 +87536 A0:n00000000000 +87540 A0:n00000000000 A1:n45010014005 +87543 A0:n00000000000 A1:n45010014013 +87546 A0:n00000000000 A1:n45010014011 +87549 A0:n00000000000 +87551 A0:n00000000000 +87554 A0:n00000000000 +87557 A1:n00000000000 +87559 A1:n45010015010 +87565 A0:n00000000000 A1:n45010015015 +87570 A0:n45010016003 A1:n45010016006 +87575 A0:n45010016007 +87578 A0:n45010016011 A1:n45010016014 +87594 A0:n45001001001 +87597 A0:n45010012005 +87603 A0:n45010018013 +87617 A0:n45001001001 +87621 A0:n45010019004 +87624 A0:n45010019008 +87626 A0:n45010019010 A1:n45010019012 +87634 A0:n45010009018 A1:n45010019020 +87638 A0:n45010020001 +87640 A0:n45010020001 +A1:n45010009018 +87645 A0:n00000000000 A1:n45010020008 +87651 A0:n00000000000 A1:n45010020014 +87656 A0:n45010020001 +87660 A0:n45010009018 A1:n45010021011 +87666 A0:n45010021014 +87668 A0:n45010021014 +87670 A0:n45001001001 +87672 A0:n45011001006 A1:n45011001008 +87679 A0:n45011001004 +87691 A0:n45011002004 A1:n45011002006 +87698 A0:n45011002004 A1:n45011002008 +87701 A0:n45010001001 +87705 A1:n45011002015 A0:n45011002018 +87709 A0:n45011002014 A1:n45011002022 +87719 A0:n45011002025 A1:n45011003003 +87723 A0:n45011002025 A1:n45011003007 +87725 A1:n45011003010 +87728 A0:n45011002025 A1:n45011003016 +87734 A1:n45011004002 A2:n45011004004 A0:n45011004006 +87738 A0:n45011003001 A2:n45011004008 A1:n45011004010 +87744 A0:n45011004011 A1:n45011004014 A2:n45011004015 +87759 A0:n45011005008 +87775 A1:n45011007003 A0:n45011007005 +87779 A0:n45011007005 A1:n45011007006 +87783 A0:n45011007011 +87787 A1:n45011007015 +87789 A1:n45011008003 +A2:n45011008004 A0:n45011008006 A1:n45011008007;n45011008009;n45011008014 +87799 A0:n45011008009 +87804 A0:n45011008014 +87811 A0:n45011009002 +87828 A1:n45011010003 +87834 A0:n45011010003 +87841 A0:n45011008006 A1:n45011010010 +87843 A0:n45001001001 +87845 A0:n45011007015 +87847 A0:n45011007015 +87849 A0:n45011011004 +87860 A0:n45011011014 A1:n45011011020 +87881 A0:n45001001001 A2:n45011013001 +87896 A0:n45001001001 A1:n45011013015 +87899 A0:n45001001001 A1:n45011014006 +87904 A0:n45001001001 A1:n45011014009 +87944 A1:n45011017003 +87949 A1:n45011017007 +87962 A0:n45011013005 +87967 A0:n45011013005 +87972 A0:n45011018009 A1:n45011018011 +87978 A0:n45011013005 +A1:n45011019004 +87983 A1:n45011019006 +87987 A1:n45011019004 +87992 A0:n45011020005 +87995 A0:n45011013005 A1:n45011020011 +87997 A0:n45011013005 +88007 A0:n45011021004 A1:n45011021008 +88010 A0:n45011021004 A1:n45011021012 +88012 A0:n45011013005 A1:n45011022003;n45011022005 +88020 A0:n45011021008 +88028 A0:n45011013005 +88034 A1:n45011022023 +88039 A0:n45011021008 +88042 A1:n45011023001 +88049 A0:n45011023013 A1:n45011023016 +88059 A1:n45011024003 +88063 A1:n45011013005 +88072 A1:n45011024019 +88079 A0:n45001001001 A1:n45011025005 +88081 A0:n45011025004 A1:n45011025008 +88097 A0:n45011025017 +88104 A0:n45011025026 +88109 A1:n45011026004 +88111 A1:n45011026008;n45011026013;n45011027007;n45011027009 +A0:n45011026012 +88116 A0:n45010017011 +A0:n45011026012 A1:n45011026014 +88129 A0:n45011023013 A1:n45011027011 +88161 A0:n45011030003 A1:n45011030007 +88166 A1:n45011025006 +88174 A0:n45011031003 +88182 A1:n45011031011 +88184 A0:n45011032004 A1:n45011032006 +88194 A0:n45011032004 A1:n45011032011 +88215 A0:n45011034001 A1:n45011034004 +88225 A0:n45011035002 A1:n00000000000 A2:n45011035004 +88228 A1:n00000000000 A2:n45011035007 +88250 A0:n45001001001 A1:n45012001010 +88257 A0:n45012001003 A1:n45012001012 +88262 A0:n45012001014 +88273 A0:n45012001004 +88278 A1:n45012001004 +88285 A0:n45012002016 +88299 A0:n45001001001 A2:n45012003013 A1:n45012003014;n45012003015;n45012003021 +88304 A1:n45012003005 A2:n45012003008 +88308 A0:n00000000000 +88312 A0:n45012001004 +88315 A0:n45012001004 A1:n45012003017 +A0:n45012003019 +88318 A0:n45012001004 +88321 A0:n45012001004 +88326 A2:n45012003025 A0:n45012003028 A1:n45012003030 +88336 A0:n45001001001;n45012001004;n45010004009 A1:n45012004007 +88345 A0:n45012004011 A1:n45012004017 +88361 A0:n45012001004 A1:n45012006003 +88368 A1:n45012006006 A2:n45012006009 +88384 A0:n00000000000 +88390 A0:n00000000000 +88395 A0:n00000000000 +88399 A0:n00000000000 +88403 A0:n00000000000 +88409 A0:n45012001004 A1:n45012009006 +88412 A1:n45012001004 A2:n45012009009 +88423 A0:n45012001004 A1:n45012010008 +88430 A0:n45012001004 +88433 A0:n45012001004 A1:n45012011009 +88436 A0:n45012001004 +88439 A0:n45012001004 +88442 A0:n45012001004 A1:n45012012008 +88447 A0:n45012001004 +88450 A0:n45012001004 A1:n45012013007 +A0:n45012001004 A1:n45012014003 +88453 A0:n00000000000 +A0:n45012001004 +88457 A0:n45012001004 +A0:n45012001004 +88460 A0:n00000000000 +A0:n45012001004 +88463 A0:n00000000000 +88468 A0:n45012001004 A1:n45012016002 +88472 A0:n45012001004 A1:n45012016008 +88476 A1:n45012001004 +88486 A0:n45012001004 A2:n45012017001 A1:n45012017002 +A0:n45012001004 A1:n45012017007 +88500 A0:n45012001004 +88504 A0:n45012019004 A1:n45012019002 +88506 A0:n45012019004 A1:n45012019007 A2:n45012019009 +88511 A1:n45012019012;n45012019015;n45012019016 +88515 A0:n45012019014 +A0:n45012019017 +88520 A0:n45012020005 +88524 A0:n00000000000 A1:n45012020008 +88527 A0:n45012020005 +A0:n00000000000 A1:n45012020012 +88532 A0:n00000000000 A1:n45012020013 +88535 A0:n00000000000 A1:n45012020016 +88541 A1:n45012019004 +88546 A0:n45012019004 A1:n45012021012 +88555 A0:n45013001003 +A1:n45013001002 A2:n45013001003 +88559 A0:n45013001009 +88567 A0:n00000000000 +88570 A1:n45013001016 +88574 A0:n00000000000 A1:n45013002005 +88581 A0:n45013002003 A1:n45013002009 +88584 A0:n00000000000 +88587 A0:n45013002013 A2:n45013002014 A1:n45013002015 +88601 A0:n45012019004 A1:n45013003016 +88603 A0:n45012019004 A1:n45013003018 +88608 A0:n45012019004 A1:n45013003020 +88610 A0:n45012019004 A1:n45013003024 +88626 A0:n45012019004 A1:n45013004012 +A0:n45012019004 +88633 A0:n45013003018 A1:n45013004019 +88644 A0:n00000000000 A1:n45013004030 +88647 A1:n45012019004 +88663 A0:n45012019004 A1:n45013006005 +88671 A0:n45013003018 +A0:n45012019004 A2:n45013007002 A1:n45013007004 +88698 A0:n45012019004 A2:n45013008001 A1:n45013008002 +88703 A0:n45012019004 A1:n45013008007 +88706 A0:n00000000000 A1:n45013008013 +88710 A0:n45013008011 A1:n45013008014 +88714 A0:n00000000000 +88716 A0:n00000000000 +88718 A0:n00000000000 +88720 A0:n00000000000 +88730 A1:n45013009004;n45013009006;n45013009008;n45013009010;n45013009015 +88733 A0:n00000000000 A1:n45013009025 +88745 A0:n45013010002 A2:n45013010004 A1:n45013010005 +88752 A0:n45012019004 A1:n45013011005 +88762 A1:n45013011009 +88771 A0:n45001001001;n45012019004;n45012005003 +88774 A0:n45013012002 +88778 A0:n45013012006 +88780 A0:n45001001001;n45012019004;n45012005003 A1:n45013012011 +88786 A0:n45001001001;n45012019004;n45012005003 A1:n45013012017 +88795 A0:n45001001001;n45012019004;n45012005003 +88809 A0:n45012019004 A1:n45013014004 +88819 A0:n45012019004 A1:n45013014010 +88824 A0:n00000000000 +88827 A0:n45012019004 A1:n45014001003 +88834 A0:n45014002001 +A0:n45014002001 A1:n45014002005 +88839 A0:n00000000000 +88841 A0:n45014002008 A1:n45014002009 +88843 A0:n45014002001 +88846 A0:n45014002008 +88848 A0:n45014003002 A1:n45014003005 +88852 A0:n45014002008 +88854 A0:n45014002001 +88856 A0:n45014003011 A1:n45014003013 +88861 A0:n45014003017 A1:n45014003019 +88866 A0:n00000000000 A1:n45014004007 +88872 A0:n45014004007 +88874 A0:n45014004007 +88876 A1:n45014004007 +88878 A0:n45014004019 A1:n45014004020 +88881 A0:n45014004019 A1:n45014004021 +88886 A0:n45014005001 A1:n45014005005 +88892 A0:n45014005008 A1:n45014005012 +88900 A1:n45014005013 +88902 A0:n45014005001 A1:n45014006004 +88906 A0:n45014006002 +88909 A0:n45014002001 +88911 A0:n45014006009 +88913 A0:n45014006009 A1:n45014006015 +88919 A0:n45014002008 +88922 A0:n45014006019 +88924 A0:n45014006019 A1:n45014006026 +88931 A0:n45014007001 +88935 A0:n45014007007 +88939 A0:n45001001001;n45012019004;n45012005003 +88942 A0:n45001001001;n45012019004;n45012005003 +88945 A0:n45001001001;n45012019004;n45012005003 +88948 A0:n45001001001;n45012019004;n45012005003 +88952 A0:n45001001001;n45012019004;n45012005003 +88955 A0:n45001001001;n45012019004;n45012005003 +88963 A0:n45014009004 +88965 A0:n45014009004 +88970 A0:n00000000000 +A0:n45014009004 +88975 A0:n45014010001 A1:n45014010006 +88983 A0:n45014010010 A1:n45014010014 +88989 A0:n45014010016 +88995 A1:n45014011003;n45014011005;n45014011009;n45014011015 +A0:n45014011004 +88998 A0:n45014011006 +89002 AA2:n45014011008 A0:n45014011011 +89008 A0:n45014011014 A1:n45014011017 +89018 A0:n45014012003 A1:n45014012007 A2:n45014012010 +89024 A0:n45001001001;n45012019004;n45012005003 A1:n45014013003 +89027 A0:n45012019004 A1:n45014013006 +89031 A0:n45012019004 A2:n45014013014 A1:n45014013012;n45014013016 +89037 A0:n45001001001 +89039 A1:n45001001001 +89051 A0:n00000000000 A1:n45014014017 +89064 A1:n45014015006 +89068 A0:n45012019004 +89074 A0:n45012019004 A1:n45014015017 +89078 A0:n45014015021 +89081 A1:n45014016006 +89108 A0:n00000000000 A1:n45014018007 +89120 A0:n45001001001;n45012019004;n45012005003 A1:n45014019003;n45014019008 +89134 A0:n45012019004 A1:n45014020006 +89149 A0:n45014020015 +89153 A0:n45012019004 A1:n45014021005 +89156 A0:n45012019004 A1:n45014021008 +89164 A0:n45014021013 +89168 A0:n45012019004 A1:n45014022003 +89171 A0:n45014022001 A1:n45014022002 +89178 A0:n00000000000 A1:n45014022015 +89182 A0:n45014022014 A1:n45014022017 +89186 A0:n00000000000 +A0:n45014023003 +A1:n45014023003 +89202 A0:n45015001003 A1:n45015001010;n45015001014 +89210 A0:n45001001001;n45012019004;n45015001005 A1:n45015001007 +89214 A0:n45001001001;n45012019004;n45015001005 A1:n45015001013 +89219 A0:n45015002001 A1:n45015002004 +89231 A0:n45015003004 A1:n45015003006 +89234 A1:n45015003016 +89238 A0:n00000000000 A1:n45015003015 +89240 A0:n45015003012 +89245 A1:n45015004001 +89250 A1:n45015004003 +89263 A0:n45001001001;n45012019004;n45015001005;n45015001009 A1:n45015004020 +89272 A0:n45015005003 A2:n45015005010 A1:n45015005013 +89276 A0:n45012019004 A1:n45015005012 +89287 A0:n45012019004 A1:n45015006008;n45015006010 +89298 A0:n45012019004 A1:n45015007003 +89304 A0:n45015007007 A1:n45015007009 +89311 A0:n45001001001 A1:n45015008004 +89321 A0:n45015008003 A1:n45015008014 +89331 A0:n45015009003 A1:n45015009008 +89335 A1:n45015009013;n45015009021 +89338 A0:n00000000000 A1:n45015009014 +89346 A0:n00000000000 A1:n00000000000 A2:n45015009019 +89349 A0:n45011002018 +89351 A1:n45015010005 +89361 A0:n45015011006 A1:n45015011008 +89365 A1:n45015011011 A0:n45015011014 +89373 A0:n45015012003 +A0:n45015012007 +89381 A0:n45015012007 +A0:n45015012007 +89387 A0:n45015012017 +89393 A0:n45015013003 A1:n45015013007 +89401 A0:n45012019004 +89404 A0:n45015013018 +89416 A1:n45015014007 +89428 A1:n45015014003 +89432 A0:n45015014003 A1:n45015014023 +89435 A0:n45015014003 A1:n45015014022 +89438 A0:n45001001001 A2:n45015015004 +89443 A0:n45001001001 A1:n45015015009 +89449 A1:n45015015012 A2:n45015015015 +89464 A0:n45001001001 A1:n45015016013 +89476 A1:n45015016019 +89481 A0:n45001001001 A1:n45015017004 +89493 A0:n45001001001 A1:n45015018005 +A0:n45001001001 A1:n45015018004 +89498 A1:n45015018006 A0:n45015018009 +89526 A0:n45015019011 A1:n45015019021 +89533 A0:n45001001001 A1:n45015020004 +A0:n45001001001 +89537 A1:n45015020008 +89544 A0:n45001001001 +89547 A1:n45015021004;n45015021014 +A0:n45015021007 +89551 A1:n00000000000 A2:n45015021005 +89557 A0:n45015021011 +A0:n45015021013 +89561 A1:n45001001001 +89565 A0:n45001001001 +89572 A0:n45001001001 A1:n45015023004 +89579 A0:n45001001001 A1:n45015023010 +89581 A0:n45001001001 +89589 A0:n45001001001 +89594 A0:n45001001001 A1:n45015024010;n45015024015 +A0:n45001001001 +A0:n45001001001 A1:n45015024011 +89601 A1:n45001001001 +89608 A1:n45001001001 +89611 A0:n45001001001 +89614 A0:n45001001001 A1:n45015025008 +89618 A0:n45015026003;n45015026005 A1:n45015026008 +89624 A0:n45015026003;n45015026005 A1:n45015026006 +89634 A0:n45015026003;n45015026005 +89644 A0:n45015027014 +89647 A0:n45015027014 A1:n45015027020 +89652 A0:n45015027014 A1:n45015027021 +89656 A0:n45001001001 A1:n45015028001 +89658 A0:n45001001001 A2:n45015028006 A1:n45015028008 +89663 A0:n45001001001 +89669 A0:n45001001001 +89671 A0:n45001001001 +89678 A0:n45001001001 +89681 A0:n45001001001 A1:n45015030017 +89695 A0:n45015030003 +89706 A1:n45001001001 +89709 A0:n00000000000 +89727 A0:n45001001001 +89733 A0:n45001001001 +89745 A0:n45001001001 A2:n45016001003 A1:n45016001004 +89760 A0:n45015030004 A1:n45016002002 +89767 A0:n45015030004 AA2:n45016002011 +89773 A0:n45016001004 A1:n45016002015 +89784 A0:n45015030004 A1:n45016003002;n45016003004;n45016005006 +89802 A0:n45016004001 A1:n45016004008 +89804 A1:n45016004010 A0:n45016004011;n45016004012;n45016004019 +89821 A0:n45015030004 A1:n45016005008 +89833 A0:n45015030004 A1:n45016006002 +89837 A0:n45016006003 A1:n45016006004 +89840 A0:n45015030004 A1:n45016007002;n45016007004 +89863 A0:n45015030004 A1:n45016008002 +89870 A0:n45015030004 A1:n45016009002;n45016009009 +89882 A0:n45015030004 A1:n45016010002 +89888 A0:n45015030004 A1:n45016010008 +89893 A0:n45015030004 A1:n45016011002 +89898 A0:n45015030004 A1:n45016011007 +89907 A0:n45015030004 A1:n45016012002;n45016012004 +89912 A0:n45016012002;n45016012004 +89915 A0:n45015030004 A1:n45016012010 +89921 A0:n45016012013 A1:n45016012014 +89924 A0:n45015030004 A1:n45016013002;n45016013009 +89936 A0:n45015030004 A1:n45016014002;n45016014003;n45016014004;n45016014005;n45016014006;n45016014011 +89947 A0:n45015030004 A1:n45016015002;n45016015004;n45016015005;n45016015008;n45016015011;n45016015017 +89964 A0:n45015030004 A1:n45016016002 +89969 A1:n45016016007 A0:n45016016009 +89978 A0:n45001001001 A1:n45016017005 +89980 A0:n45016017003 A1:n45016017018 +89992 A1:n45016017015 A0:n45016017016 +A0:n00000000000 A1:n45016017008;n45016017011 +89995 A0:n45016017004 +90006 A0:n45016018003 A1:n45016018005 +90017 A0:n45016017018 A1:n45016018022 +90028 A0:n45016019004 +90032 A0:n45001001001 +90034 A0:n45001001001 A1:n45016019015;n45016019020 +90051 A0:n45016020003 A1:n45016020008 +90068 A1:n45016021002 A0:n45016021003;n45016021008;n45016021010;n45016021012 +90083 A0:n45001001001 A1:n45016022002 A0:n45016022003 +90088 A0:n45016022004 A1:n45016022008 +90093 A1:n45016023002 A0:n45016023003 +90103 A1:n45016023012 A0:n45016023013;n45016023019 +90116 A0:n00000000000 A1:n45016025005 +90118 A0:n45016025003 A1:n45016025004 +90133 A1:n45016025017 +90135 A1:n45016025017 +90153 A1:n45016025017 +90189 A1:n46001002002 +90198 A0:n00000000000 A1:n46001002020 +90224 A0:n46001001001 A1:n46001004003 +90236 A1:n46001004009 A2:n46001004014 +90244 A1:n46001002002 +90258 A1:n46001006003 +90264 A1:n46001007002 +90268 A0:n46001002002 A1:n46001007010 +90278 A0:n46001008001 A1:n46001008004 +90296 A1:n46001002002 +90309 A0:n46001001001 A1:n46001010003 +90322 A1:n46001010015 A0:n46001010017 +90332 A1:n46001010004 +90345 A1:n46001011014 A2:n46001011003 +90358 A0:n46001001001 A1:n46001012003 +90363 A0:n46001012005 +90377 A1:n46001013003 +90382 A1:n46001013005 +90390 A1:n46001011006 +A0:n46001013013 +90395 A0:n46001013013 A1:n46001014005 +90404 A0:n46001015003 +90410 A1:n46001011006 +90412 A0:n46001013013 A1:n46001016006 +90419 A0:n46001013013 +90423 A0:n46001013013 A1:n46001016012 +90425 A1:n46001017004 A0:n46001017005 +90429 A0:n46001013013 +90431 A0:n46001013013 +90438 A1:n46001017017 +90451 A0:n00000000000 +90456 A1:n46001013013;n46001001010;n46001011006;n46001002018 +90462 A1:n46001019003;n46001019013 +A0:n46001018017 A1:n46001019005 +90473 A0:n46001018017 A1:n46001019010 +90484 A0:n46001020013 A1:n46001020015 +90499 A0:n46001021011 A1:n46001021016 +90507 A0:n46001021019 +90515 A0:n46001021019 A1:n46001021027 +90517 A0:n00000000000 +90522 A0:n46001022003 A1:n46001022004 +90526 A0:n46001022007 A1:n46001022008 +90529 A0:n46001023001 A1:n46001023004 +90531 A1:n46001023004 +90571 A0:n46001026006 A1:n46001026004 +90592 A1:n46001027003 A0:n46001027008 +90596 A0:n46001027008 A1:n46001027012 +90604 A1:n46001027015 A0:n46001027020 +90608 A0:n46001027020 A1:n46001027024 +90618 A1:n00000000000 +90621 A0:n46001028003;n46001028008 +A1:n46001028003;n46001028008 A0:n46001028011 +90627 A0:n00000000000 +A0:n46001028011 A1:n46001028017 +90631 A0:n46001029005 +90659 A1:n46001031008 +90661 A0:n46001031008 +90664 A0:n46001031005 +90667 A0:n46001013013 +90670 A0:n46002001001 +90677 A0:n46001013013 A2:n46002001014 A1:n46002001016 +90685 A0:n46001013013 A1:n46002002005 +90687 A0:n46001013013 A1:n46002002004 +90696 A1:n46002002010 +90744 A0:n46001013013;n46001001010 A1:n46002006001 +90761 A1:n46002006015 +90763 A0:n46001013013;n46001001010 A1:n46002007004 +90769 A1:n46002007004 +90771 A1:n46002007009 A0:n46002007012 +90787 A1:n46002008001 A0:n46002008002 +90790 A0:n46002008004 +90797 A0:n46002008004 A1:n46002008015 +90800 A1:n46002009007 +90804 A1:n46002009004 A0:n46002009005 +90808 A0:n46002009009 +90814 A0:n00000000000 +90816 A1:n46002009018 A0:n46002009021 A2:n46002009023 +90820 A0:n00000000000 A1:n46002009024 +90824 A2:n46002010001 A1:n46002009018 A0:n46002010005 +90834 A0:n46002010011 A1:n46002010012 +90843 A0:n46002011001 A1:n46002011005 +90862 A1:n46002011019 A0:n46002011022 +90876 A0:n46002012001 A1:n46002012005 +90885 A0:n46002009023 A1:n46002012022 +90890 A1:n00000000000 A2:n46002012023 +90894 A0:n46002009023 A1:n46002013001 +90907 A0:n46002009023 A1:n46002013015 +90912 A0:n46002014003 A1:n46002014006 +90924 A0:n46002014003 A1:n46002014018 +A0:n46002014003 +90928 A1:n46002014006 +90932 A0:n46002015003 A1:n46002015006 +90939 A1:n46002015007 +90942 A0:n46002016001 A1:n46002016004 +90946 A0:n46002016006 A1:n46002016008 +90952 A0:n46002016009 A1:n46002016011 +90955 A0:n46003001001 A1:n46003001003;n46003001005;n46003001011;n46003001013 +90957 A0:n46001013013 A2:n46003001006 +90970 A0:n46001013013 A1:n46003002001 A2:n46003002002 +90975 A0:n46003001002 +90980 A0:n46003001002 +90998 A0:n46003001002 +91002 A0:n46003004004 +91025 A0:n46003001002 +91031 A2:n46003005014 A1:n00000000000 A0:n46003005017 +91033 A0:n46003006001 +91035 A0:n46003006003 +91039 A0:n46003006007 +91043 A0:n46003005008 +91048 A0:n46003006003 +91051 A0:n46003007013 +91055 A0:n46003005008 +91058 A0:n46003006003 +91066 A0:n46003008009 A1:n46003008013 +91086 A1:n46003010003 A2:n46003010008 +91092 A0:n46003008002 A1:n46003010012 +91095 A0:n46003010014 +91098 A0:n46003010017 +91100 A0:n46003010017 +91103 A0:n46003011004 A1:n46003011006 +91106 A0:n46003011004 A1:n46003011001 +91109 A0:n46003010012 +91117 A0:n46003012003 A1:n46003012008;n46003012009;n46003012010;n46003012012;n46003012013;n46003012014 +91136 A0:n46003013008 +91140 A1:n46003013003 +91150 A0:n46003013021 A1:n46003013022 +91152 A0:n46003014004 +91157 A0:n46003014002 A1:n46003014006 +91159 A0:n46003014002 A1:n46003014008 +91164 A1:n46003015004 +A1:n46003015002 +91168 A1:n46003015007 +91175 A0:n46003001002 +91187 A0:n46003016009 +91194 A0:n46003017002 A1:n46003017004 +A1:n46003017009 A0:n46003017011 +91211 A0:n46003018001 A1:n46003018002 +91214 A0:n46003018005 A1:n46003018007 +91240 A1:n46003019015 +91242 A0:n00000000000 A1:n46003019017 +91252 A0:n46003020003 A1:n46003020006 +91262 A0:n46003021002 +91282 A0:n00000000000 +91284 A0:n00000000000 +91295 A1:n46004001002 A0:n46004001004 +91306 A1:n46004002008 +91320 A1:n46003022002 +91330 A0:n46003022002 A1:n46004003016 +91334 A0:n46003022002 A1:n46004004001 +91339 A1:n46003022002 +91342 A0:n00000000000 A1:n46004004013 +91351 A0:n46003001002 A1:n46004005005 +91354 A0:n46004005011 +91359 A0:n00000000000 A1:n46004005016 +91365 A0:n00000000000 A1:n46004005022 +91374 A0:n46004005028 +91382 A0:n46003022002 A1:n46004006001 +91392 A0:n46004006003 A1:n46004006019 +91397 A1:n46004006018 +91404 A1:n46004006022 +91411 A0:n46004007001 A1:n46004007003 +91413 A0:n46004006003 A1:n46004007005 +91417 A0:n46004006003 A1:n46004007008 +91421 A0:n46004006003 +91423 A0:n46004006003 +91426 A0:n46004006003 +91428 A1:n46004006003 +91431 A0:n46004006003 +91434 A0:n46004006003 +91438 A0:n46004006003 +91443 A0:n46004008015 +91445 A0:n46003022002 +91452 A0:n46004009004 A1:n46004009005 +91488 A0:n46004009007 +91490 A0:n46004009007 +91492 A0:n46004009007 +91494 A1:n46004009007 +91496 A0:n46004009007 +91498 A0:n46004009007 +A0:n46004009007 +91503 A1:n46004009007 +A0:n46004009007 +A1:n46004009007 +A0:n46004009007 +A1:n46004009007 +A0:n46004009007 +91519 A0:n46003022002 A1:n46004014003 +91521 A0:n46003022002 A1:n46004014005 +91528 A0:n46003022002 +91533 A0:n46004006003 A1:n46004015004 +91549 A0:n46004015019 A1:n46004015020 +91551 A0:n46003022002 A1:n46004016003 +91559 A0:n46003022002 A2:n46004017005 A1:n46004017006 +91573 A0:n46004017016 A2:n46004017017 A1:n46004017020 +91590 A0:n46004018005 +91594 A1:n46004018009 +91597 A0:n46003022002 +91604 A0:n46004019008 +91606 A0:n46003022002 A1:n46004019012;n46004019014;n46004019019 +91611 A1:n46004018009 +91627 A0:n46004006003 A1:n46004021001 +91630 A0:n46003022002 +91640 A1:n46005001005;n46005001008 +91657 A0:n46005001016 A1:n46005001015 +91660 A1:n46005002002 +91665 A0:n46004006003 +91667 A1:n46005002018 +91675 A0:n46005001016 A1:n46005002016 +91679 A0:n46003022002 +91683 A0:n46003022002 +91687 A0:n46005003001 A1:n46005003018 +91689 A0:n46003022002 +91693 A0:n46005001016 A1:n46005003017 +91700 A1:n46005004008;n46005004012 +91713 A0:n46004006003 A1:n46005005003 A2:n46005005005 +91725 A1:n46005005012 +91737 A0:n46004006003 +91744 A0:n46005006010 A1:n46005006013 +A0:n46004006003 A1:n46005007004 +91762 A1:n46005007015 +91764 A0:n46002009023 +91781 A0:n46003022002 A2:n46005009002 A1:n46005009007 +91787 A0:n46004006003 +91805 A0:n46004006003 A1:n46005010021 +91809 A0:n46004006003 +91812 A0:n46003022002 A2:n46005011004 A1:n46005011006 +91815 A0:n46004006003 +91835 A0:n46004006003 +91841 A0:n00000000000 A1:n46005012005 +91846 A1:n46005012009 A0:n46005012010 +91852 A1:n46005013003 A0:n46005013005 +A0:n46004006003 A1:n46005013009 +91859 A0:n46006001002 A1:n46006001009;n46006001017 +91863 A0:n46006001002 A1:n46006001004 +91867 A1:n46006001002 +91878 A0:n46004006003 +91884 A0:n46006002006 A1:n46006002008 +91889 A1:n46006002016 +91897 A0:n46004006003 +91900 A0:n46006002006 A1:n46006003004 +91908 A0:n46004006003 A1:n46006004004 +91910 A1:n46006001012 +91915 A0:n46004006003 A1:n46006004012 +91919 A0:n46003022002 A2:n46006005003 +91928 A0:n46006005012 A1:n46006005014 +A0:n46006005011 +91939 A1:n46006006002 +91953 A0:n46004006003 A1:n46006007009 +91960 A1:n46004006003 +91965 A1:n46004006003 +91968 A0:n46006008002 +91970 A0:n46006008002 +91976 A0:n46004006003 +91982 A0:n46006009005 A1:n46006009007 +91984 A1:n46004006003 +92007 A0:n46006009013;n46006009015;n46006009017;n46006009019;n46006009021;n46006010002;n46006010004;n46006010006;n46006010008;n46006010010 A1:n46006010011 +92013 A0:n46004006003 +92015 A1:n46004006003 +92017 A1:n46004006003 +92034 A0:n46006012001 +92038 A0:n46006012006 +92041 A0:n46006012008 +92045 A1:n46006012013 +92064 A0:n46006013012 A1:n46006013014;n46006013016 +92085 A0:n00000000000 A1:n46006014006 +92088 A0:n00000000000 A1:n46006014009 +92094 A0:n46004006003 +92103 A0:n46003022002 A1:n46006015013 +92108 A0:n46003022002 A1:n46006015018 +92112 A0:n46006015016 +92115 A0:n46004006003 +92118 A1:n00000000000 A2:n46006016008 +92125 A0:n00000000000 +92134 A1:n00000000000 A2:n46006017005 +92140 A0:n46004006003 A1:n46006018003 +92147 A1:n46006018006 A0:n46006018009 +92155 A0:n00000000000 +92160 A0:n46006018016 +92163 A0:n46004006003 +92176 A0:n46004006003 +92184 A1:n46004006003 +92187 A0:n46004006003 A1:n46006020007 +92197 A0:n46004006003 A1:n46007001003 +92202 A0:n46007001006 A1:n46007001007 +92211 A0:n46007002005 A1:n46007002008 +92217 A0:n46007002011 A1:n46007002014 +92224 A2:n46007003002 A0:n46007003004 A1:n46007003006 +92238 A0:n46007004002 +92251 A0:n46007004015 +92256 A0:n46007004015;n46007004023 A1:n46007005003 +92266 A0:n46007004015;n46007004023 +92277 A1:n46007005024 A0:n46007005026 +92287 A0:n46003022002 A1:n46007006001 +92294 A0:n46003022002 A1:n46007007008 +92303 A0:n46007007010 A1:n46007007013 +92315 A0:n46003022002 A2:n46007008004;n46007008007 +92324 A0:n46007008004;n46007008007 +92330 A0:n46007008004;n46007008007 +A0:n46007008004;n46007008007 +92335 A0:n46007008004;n46007008007 +92337 A1:n46007008004;n46007008007 +92340 A0:n00000000000 +A2:n46007010003 A0:n46007010005;n46007010006;n46007010009 A1:n46007010014;n46007011006;n46007011010;n46007011015 +92351 A1:n46007010010 +92355 A1:n46007010010 +92361 A1:n46007010010 +92366 A0:n46007011012 A1:n46007011013 +92370 A2:n46007012003 A0:n46007012005;n46007012008 +92378 A0:n46007012011 A1:n46007012012 +92383 A0:n46007012016 +A0:n46007012012 +92388 A0:n46007012011 A1:n46007012023 +92393 A0:n46007013003 A1:n46007013005 +92398 A0:n46007013009 A1:n46007013010 +A0:n46007013005 +92403 A0:n46007013002 A1:n46007013016 +92407 A1:n46007014004 +92416 A1:n46007014013 +92439 A1:n46007015004 +A1:n46007015004 +92442 A1:n46007015010;n46007015013 +92454 A1:n46007015021 A0:n46007015023 +92461 A0:n46007016004 A1:n46007016001 +92465 A0:n46007016004 A1:n46007016007 +92469 A0:n46007016012 A1:n46007016010 +92473 A0:n46007016012 A1:n46007016015 +92478 A2:n46007017003 A1:n00000000000 A0:n46007017007 +92483 A1:n46007017008 A0:n46007017012 +92487 A0:n46007017008 +92494 A0:n46003022002 +A1:n46007018002 +92497 A1:n46007018002 +92499 A0:n46007018002 +92502 A1:n46007018009 +92505 A1:n46007018009 +92524 A1:n46007020001 +92527 A0:n46007020001 +92529 A1:n46004006003 +92532 A0:n46007021002 AA2:n46007021004 +92536 A0:n46004006003 A1:n46007021010 +92540 A0:n46004006003 +92545 A1:n46007022006 +92553 A1:n46007022012 +92558 A1:n46004006003 +92567 A1:n46007024001 +92570 A0:n46007024001 +92580 A0:n46003022002 A1:n46007025005 +92583 A0:n46003022002 A1:n46007025009 +92585 A1:n46003022002 +92591 A0:n46003022002 A1:n46007026004 +92597 A0:n46007026009 +92605 A1:n46007024005 +92608 A0:n46007024005 A1:n46007027005 +92610 A1:n46007024005 +92614 A0:n46007024005 A1:n46007027011 +92619 A0:n46007024005 +92621 A0:n46007024005 +92624 A0:n46007028011 +92628 A0:n46007028011 +92633 A1:n46007028014 A0:n46007028020 +92639 A0:n46007028021 A1:n46007028023 +92643 A0:n46003022002 A1:n46007029001 +92646 A1:n46007029006 +92653 A0:n00000000000 A1:n46007029015 +92657 A0:n46007029014 +92661 A0:n00000000000 +92664 A0:n46007030003 +92667 A0:n00000000000 +92670 A0:n46007030009 +92673 A0:n00000000000 +92676 A0:n46007030015 +92679 A0:n00000000000 A1:n46007031005 +92684 A0:n46007031003 +92686 A0:n46007031012 +92693 A0:n46003022002 A1:n46007032004 +92699 A0:n46007032007 A1:n46007032009 +92704 A0:n46007032007 A1:n46007032015 +92709 A0:n00000000000 +A0:n46007033003 A1:n46007033005 +92715 A0:n46007033003 A1:n46007033011 +92719 A1:n46007033003 +92728 A0:n46007034005;n46007034010 A1:n46007034012 +92743 A0:n00000000000 +A0:n46007034026 A1:n46007034028 +92749 A0:n46007034026 A1:n46007034034 +92759 A0:n46003022002 A1:n46007035001 +92764 A0:n46003022002 A1:n46007035011 A2:n46007035012 +92777 A0:n46007036003 +92782 A0:n46007036003 A1:n46007036004 +92788 A0:n46007036022 A1:n46007036016 +A0:n46007036022 +92791 A0:n46007036003 A1:n46007036017 +A0:n46007036003 A1:n46007036018 +92794 A0:n46007036003 +A0:n46007036003;n46007036007 +92798 A0:n46007037001 +92805 A0:n46007037001 A1:n46007037011 +92809 A0:n46007037001 A1:n46007037012 +92816 A0:n46007037001 A1:n46007037020 +92821 A0:n46007037001 A1:n46007037029 +92826 A0:n46007037003;n46007037014;n46007037021 +92830 A0:n00000000000 A1:n46007038007 +92835 A0:n46007038004 +92839 A0:n00000000000 +92841 A0:n46007038013 A1:n46007038014 +92843 A1:n46007039001 +92847 A0:n46007039008 +92853 A0:n46007039014 +92859 A0:n46007039001 A1:n46007039017 +A1:n46007039001 A2:n46007039018 +92869 A0:n46007039001 +92875 A0:n46007040013 A1:n46007040016 +92879 A0:n46003022002 A1:n46007040014 +92884 A0:n46006002006 +92888 A0:n46008001007 A1:n46008001008 +92891 A0:n46008001011 +92895 A0:n46008001015 +92898 A0:n46008002002 A1:n46008002004 +A0:n46008002002 A1:n46008002005 +92902 A0:n46008002002 +92904 A0:n46008002010 +A0:n46008002002 +92909 A0:n46008003003 A1:n46008003006 +92913 A1:n46008003007 +92922 A0:n46006002006 +92939 A1:n46008005006 +92997 A0:n46008007007 A1:n46008007016 +93004 A1:n46008007020 +93009 A0:n46008008001 A1:n46008008003 A2:n46008008007 +93015 A0:n46006002006 +A1:n46006002006 +93019 A0:n46006002006 +A0:n46006002006 +93022 A0:n46007029004 +93036 A0:n46008010003 A1:n46008010011 +93039 A0:n46007029004 A1:n46008010008 +93043 A0:n46008010005 +93050 A1:n46008010014 +93055 A0:n46008010003 A1:n46008010022 +93057 A1:n46008011004 +93063 A0:n46008010003 +93069 A0:n46008011013 +93072 A0:n46008010007 +93077 A0:n46008010007 A1:n46008012011 +93081 A0:n46008012011 +93084 A0:n46008010007 +93088 A0:n46008013003 A1:n46008013006 +93094 A0:n46003022002 A1:n46008013011 +93104 A0:n46003022002 A1:n46008013018 +93116 A0:n46003022002 A1:n46009001008 +93149 A0:n00000000000 A1:n46009003005 +93154 A0:n46003022002;n46009006005 A1:n46009004004 +93156 A0:n46003022002;n46009006005 +93158 A0:n46003022002;n46009006005 +93161 A0:n46003022002;n46009006005 A1:n46009005004 +93165 A0:n46003022002;n46009006005 A1:n46009005005 +93184 A0:n46009006003;n46009006005 A1:n46009006008 +93187 A0:n46003022002;n46009006005 +93189 A0:n46009007001 +93194 A0:n46009007006 A1:n46009007008 +93201 A0:n46009007006 A1:n46009007011 +93204 A0:n46009007016 A1:n46009007018 +93213 A0:n46009007016 +93218 A0:n46003022002 A1:n46009008004 +93225 A0:n46009008009 A1:n46009008010 +93231 A1:n46009009008 +93233 A0:n00000000000 A1:n46009009009 +93235 A0:n46009009009 +93239 A0:n00000000000 AA2:n46009009016 +93246 A0:n46009009016 +93250 A1:n46009009008 +93252 A1:n46009010016 A0:n46009010015 +93255 A0:n46009010015 +93257 A0:n00000000000 +93260 A0:n00000000000 +93264 A0:n46009010019 +93270 A0:n46009011002 A2:n46009011003 A1:n46009011005 +93277 A0:n46009011009 A1:n46009011012 +93283 A0:n46009012002 A1:n46009012005 +93289 A0:n46003022002;n46009006005 A1:n46009012014 +93295 A0:n46003022002;n46009006005 A1:n46009012017 +93300 A0:n46003022002;n46009006005 A1:n46009012022 A2:n46009012025 +93306 A0:n46007029004 +93311 A0:n00000000000 A1:n46009013006 +93316 A0:n46009013007 A1:n46009013008 +93320 A0:n00000000000 AA2:n46009013015 +93323 A0:n46009013016 +93328 A0:n46009014004 A2:n46009014009 A1:n46009014013 +93332 A0:n46003022002;n46009006005;n46009005012;n46009005015;n46009005019 A1:n46009014008 +93336 A0:n46009014009 +93340 A0:n46009015001 A1:n46009015005 +93345 A0:n46003022002 A1:n46009015010 +93349 A0:n46009014013 +93356 A0:n46003022002 +93362 A1:n46009015023 A0:n46009015025 +93365 A0:n46003022002 +93373 A0:n46009016008 +93380 A0:n46003022002 +93385 A0:n46003022002 A1:n46009017004 +93387 A0:n46003022002 A1:n46009017006 +93392 A1:n46003022002 A1:n46009017011 +93400 A0:n46003022002 +93402 A0:n46003022002 A1:n46009018012 +93408 A0:n46003022002 +93422 A0:n46003022002 A2:n46009019006 A1:n46009019007 +93426 A0:n46003022002 A1:n46009019011 +93435 A0:n46003022002 A1:n46009020008 +93451 A0:n46003022002 A1:n46009020022 +93464 A0:n46003022002 A1:n46009021015 +93474 A0:n46003022002 A1:n46009022007 +93482 A0:n46003022002 A1:n46009022015 +93485 A0:n46003022002 A1:n46009023001 +93494 A0:n46007029004 +93499 A0:n00000000000 +93502 A0:n46009024008 +93505 A0:n46009024011 A1:n46009024015 +93509 A0:n46007029004 +93511 A0:n46007029004 +93515 A0:n00000000000 +93517 A0:n46009025004 +93524 A0:n46009025004 A1:n46009025012 +93531 A0:n46009026001 +93536 A0:n46003022002 +93540 A0:n46003022002 A1:n46009026012 +93542 A0:n46003022002 A1:n46009027005 +93547 A0:n46003022002 +93551 A0:n46003022002 A1:n00000000000 A2:n46009027010 +93558 A0:n46003022002 A1:n46010001005 +93560 A0:n46010001004 +93575 A0:n46010001017 +93581 A1:n46010002002 +93595 A0:n46010003002 A1:n46010003006 +93602 A0:n46010004002 A1:n46010004007 +93604 A0:n46010001009 +93607 A0:n46010004013 +93621 A0:n46010005009 +93625 A1:n46010005005 +93643 A0:n46010006014 +93651 A1:n46010007009;n46010007016 +A0:n46010007011 +93655 A0:n46010007011 +93657 A0:n46010007011 +93659 A0:n46010007011 +A0:n46010007011 +93662 A0:n46006002006 +93666 A0:n46010008004 +93668 A0:n46010008012 +93674 A0:n46006002006 A1:n46010009004 +93680 A0:n46010009006 +93685 A1:n46010009006 +93687 A0:n46010001006 +93691 A0:n46010010004 +93693 A0:n46010010004 +93700 A0:n46010011001 +93703 A1:n46010011001 +93713 A0:n46010011014 +93716 A0:n00000000000 A1:n46010012004 +A0:n46010012003 +A0:n46010012003 +93720 A0:n46010012003 +93724 A0:n46010013001 A1:n46010013002 +93734 A0:n00000000000 A1:n46010013016 +93736 A1:n46010013015 +93739 A0:n46010001006 A1:n46010013018 +93741 A0:n00000000000 A1:n46010013027 +93749 A0:n46010001006 A1:n46010013030 +A0:n46010001006 +93754 A0:n46010014002 +93760 A0:n46003022002 A2:n46010015002 +A0:n46010015005 A1:n46010015007 +93764 A0:n46003022002 A1:n46010015006 +93770 A0:n46006002006 A1:n46010016005 +93781 A0:n46006002006 A1:n46010016016 +93804 A0:n46010017011 +A0:n46010014002 A1:n46010018003 +93812 A0:n46010018003 A1:n46010018010 +93821 A0:n46003022002 A1:n46010019001 +93834 A0:n46006006009 A1:n46010020003 +93839 A0:n46006006009 A1:n46010020004 A2:n46010020005;n46010020008 +93842 A0:n46003022002 A1:n46010020014 +93849 A0:n46010014002 A1:n46010021005;n46010021007 +93852 A0:n46010014002 A1:n46010021003 +93857 A0:n46010014002 A1:n46010021013;n46010021015 +93860 A0:n46010014002 A1:n46010021011 +93865 A0:n46006002006 A1:n46010022004 +93873 A0:n46010023001 +93877 A0:n46010023005 +93879 A0:n46010023007 +93883 A0:n46010023011 +93887 A0:n46010024001 A1:n46010024002 +93896 A1:n00000000000 +A0:n46010014002 A1:n46010025005 +93899 A0:n46010014002 A1:n46010025007 +93916 A0:n46010027002 A1:n46010027004 +93919 A0:n46010014002 A1:n46010027009 +A0:n46010014002 +93923 A1:n00000000000 A2:n46010027013 +93925 A0:n46010014002 A1:n46010027012 +93927 A0:n46010014002 A1:n46010027015 +93935 A0:n46010028003 A2:n46010028004 +93940 A0:n46010014002 +93944 A0:n46010028003 +93949 A0:n46003022002 A1:n46010029001 +93964 A1:n46010029015 +93971 A0:n46010030002 +93973 A1:n46003022002 +93977 A0:n46010030009 +93980 A0:n46010014002 +93982 A0:n46010014002 +93985 A0:n46010014002 A1:n46010031007 +93990 A0:n46010014002 A1:n46010031009 +94006 A0:n46010033002 A1:n46010033004 +A0:n46003022002 A1:n46010033006;n46010033010;n46010033012 +94017 A1:n46010033014 +94025 A0:n46003022002 A1:n46011002003 +94030 A0:n46010014002 A1:n46011002006 +94033 A0:n46003022002 A1:n46011002013 A2:n46011002011 +94037 A0:n46010014002 A1:n46011002013 +94039 A0:n46003022002 A1:n46011003004 +94041 A0:n46011003003 +94063 A0:n46011004002 +94065 A0:n46011004002 +94068 A0:n46011004002 +A0:n46011004002 A1:n46011004011 +94076 A0:n46011005003 +94078 A0:n46011005003 +94082 A0:n46011005003 A1:n46011005012 +94093 A1:n46011005003 +94097 A0:n46011006005 +94100 A0:n46011006005 +94106 A0:n46011006011 +94108 A0:n46011006011 +A0:n46011006011 +94114 A0:n46011007001 A1:n46011007006 +A0:n46011007001 A1:n46011007008 +94142 A1:n46011009005 +94154 A0:n46011010005 A1:n46011010007 +94158 A0:n46011010005 A1:n46011010006 +94199 A0:n46010014002 +A0:n00000000000 +94206 A0:n46011013007 A1:n00000000000 A2:n46011013010 +94211 A0:n46011014003 A1:n46011014006 +94217 A0:n46011014008 +94224 A0:n46011015001 +94233 A1:n46011015010 A2:n46011015014 +94238 A0:n46011016003 A1:n46011016005 +94245 A0:n46011016007 A1:n46011016009 +94253 A0:n46003022002 A1:n46011017001 +94255 A0:n46003022002 +94265 A0:n46010014002 +94269 A0:n46011018005 +94273 A0:n46003022002 A1:n46011018012 +94277 A0:n46011018009 +94281 A0:n46003022002 A1:n46011018014 +94283 A0:n46011019006 +94298 A0:n46011020003 +94304 A0:n46011020011 +94307 A0:n46010014002 A1:n46011020010 +94313 A0:n46011021001 A1:n46011021005 +94316 A0:n46011021001 +94320 A0:n46011021011 +94323 A0:n46011021014 +94328 A0:n46010014002 A1:n46011022003 +94331 A0:n46010014002 +94333 A0:n46010014002 +94339 A0:n46010014002 A1:n46011022013 +94341 A0:n46010014002 A1:n46011022021 +94344 A0:n00000000000 +94346 A0:n46003022002 A1:n46011022022 A2:n46011022024 +94348 A0:n46003022002 A1:n46011022026 +94353 A0:n46003022002 +94356 A0:n46011023001 A1:n46011023009 +94362 A0:n46003022002 A1:n46011023007 A2:n46011023010 +94372 A1:n46011023013 +A0:n46011023013 A1:n46011023021 +94376 A0:n46011023013 +A0:n46011023013 +94379 A0:n46011023013 +94389 A0:n00000000000 A1:n46011024014 +94400 A0:n46011023013 +A0:n46011023013 +94414 A0:n00000000000 A1:n46011025020 +94417 A0:n00000000000 +94425 A0:n46010014002 A1:n46011026006 +94432 A0:n46010014002 A1:n46011026010 +94437 A0:n46010014002 A1:n46011026013 +94440 A0:n46011026015 +94444 A0:n00000000000 A1:n46011027006 +94448 A0:n00000000000 A1:n46011027010 +94464 A0:n46011028003 A1:n46011028004 +94472 A0:n46011028003 +94477 A0:n46011028003 +94480 A0:n00000000000 +94482 A0:n00000000000 +94485 A0:n46011029003;n46011029005 A1:n46011029006 A2:n46011029007 +94487 A0:n46011029003;n46011029005 A1:n46011029006 A2:n46011029007 +94489 A0:n46011029003 A1:n46011029014 +94501 A0:n46011030011 +94506 A0:n46006002006 A1:n46011031003 +94509 A1:n46006002006 +94511 A1:n46006002006 +94515 A1:n46006002006 +94521 A1:n46006002006 +94525 A0:n46011033002 +94528 A0:n46011033002 +94530 A0:n46011033002 A1:n46011033008 +94533 A0:n46011034002 +94536 A0:n46011034002 +94541 A0:n46011033002 +94547 A0:n46003022002 +A0:n46003022002 A1:n46011034014 +94555 A0:n46003022002 A1:n46012001009 +94557 A0:n46012001008 +A0:n46012001005 +94570 A1:n46012001005 +A1:n46012001005 +94573 A0:n46003022002 A2:n46012003003 +94580 A0:n46012003005 +A0:n46012003005 +94586 A0:n46012003014 A1:n46012003016 +A0:n46012003014 +94598 A0:n46012004001 +94606 A0:n46012005002 +94614 A0:n46012006002 +94620 A0:n46012006008 A1:n46012006012 +94627 A2:n46012007001 A1:n46012007005 +94634 A0:n00000000000 +94641 A2:n46012008001 A1:n46012008008 +94687 A1:n46012011003 A0:n46012011006;n46012011010 +94694 A0:n46012011006 A1:n46012011003 A2:n46012011013 +94698 A0:n46012011006 +94708 A0:n46012012004 A1:n46012012008 +94734 A1:n46012013006 +94747 A1:n46012013021 A1:n46012013023 +94759 A0:n46012015004 +94781 A0:n46012016005 +94819 A0:n46012018004 A1:n46012018007 +94829 A0:n46012018004 +94850 A0:n46012021005 A1:n46012021006 +94853 A0:n46012021005 A2:n46012021008 +94859 A0:n46012021005 A1:n46012021009 +94869 A0:n46012021016 A1:n46012021019 +94874 A0:n46012022006 A1:n46012022009 +94888 A0:n46006002006 A1:n46012023004 +94892 A0:n46006002006 A2:n46012023008 A1:n46012023009 +94899 A0:n46012023014 A1:n46012023016 +94906 A0:n46012024003 A1:n46012024006 +94910 A0:n46012024010 A1:n46012024013 +94914 A1:n00000000000 +A0:n46012024010 A2:n46012024015 A1:n46012024018 +94930 A1:n46012025010 A0:n46012025015 +94935 A0:n46012026005 +94938 A0:n46012026009 +94943 A1:n46012026013 +94945 A0:n46012026017 +94961 A1:n46012028002 A0:n46012028006 +94996 A0:n46012030002 A1:n46012030003 +95002 A0:n46012030007 +95005 A0:n46012030011 +95007 A0:n46012001005 A1:n46012031004 +95018 A0:n46003022002 A1:n46012031011 A2:n46012031012 +95027 A0:n46003022002 +95031 A0:n46003022002 A1:n46013001010 +95034 A0:n46013001015 +95037 A0:n46013001018 +95040 A0:n46003022002 A1:n46013002004 +95043 A0:n46003022002 A1:n46013002008;n46013002013 +95053 A0:n46003022002 A1:n46013002019 +95059 A0:n46003022002 A1:n46013002021 +95063 A0:n46003022002 A1:n46013002023 +95068 A0:n46003022002 A1:n46013003006 +95071 A0:n00000000000 +95075 A0:n46003022002 A1:n46013003012 +95080 A0:n46003022002 +95084 A0:n46003022002 A1:n46013003016 +95089 A0:n46013004002 +A0:n46013004006 +95094 A0:n00000000000 +95098 A0:n46013004010 A0:n46013004010 +95100 A1:n46013004010 +95102 A0:n46013004010 +95104 A0:n46013004010 A1:n46013005005 +95108 A1:n46013004010 +95110 A0:n46013004010 A1:n46013005012 +95114 A0:n46013004010 +95119 A0:n46013004010 +95123 A0:n46013004010 A1:n46013007001 +95125 A0:n46013004010 A1:n46013007003 +95127 A0:n46013004010 A1:n46013007005 +95129 A0:n46013004010 A1:n46013007007 +95133 A0:n46013008002 +95137 A1:n46013008007 +95140 A0:n46013008010 +95143 A1:n46013008013 +95147 A0:n46006002006 +95151 A0:n46006002006 +95154 A0:n46013010005 +95160 A1:n46013010006 +95164 A0:n46003022002 +95167 A0:n46003022002 +95170 A0:n46003022002 +95176 A0:n46003022002 A1:n46013011017 +95181 A0:n46006002006 +95193 A0:n46003022002 +95198 A0:n46003022002 +95201 A1:n46003022002 +95204 A0:n46013013004;n46013013005;n46013013006 +95216 A0:n46012001005 A1:n46014001003 +95220 A0:n46012001005 A1:n46014001007 +95226 A0:n46012001005 +95229 A0:n00000000000 +95233 A0:n46014002003 A2:n46014002006 +95238 A0:n46014002010 +95241 A0:n46014002003 A2:n46014002013 A1:n46014002016 +95245 A0:n00000000000 +95247 A0:n46014003003 A2:n46014003004 A1:n46014003006;n46014003008;n46014003010 +95254 A0:n00000000000 +95257 A0:n46014004002 A1:n46014004004 +95260 A0:n00000000000 +95262 A0:n46014004008 A1:n46014004009 +95264 A0:n46003022002 A1:n46014005005 +95267 A0:n46014005004 +95272 A0:n46012001005 +95276 A0:n00000000000 +95279 A0:n00000000000 +95284 A0:n46014005017 +95289 A0:n46014005025 A1:n46014005026 +95294 A0:n46003022002 +95298 A0:n46003022002 +95301 A0:n46003022002 A1:n46014006010 A2:n46014006011 +95305 A0:n46003022002 A2:n46014006015 +95321 A0:n00000000000 A1:n46014007004 +95331 A0:n46014007005 A1:n46014007011 +95333 A1:n46014007019;n46014007022 +95335 A1:n00000000000 +95338 A1:n00000000000 +95345 A0:n46014008005 A1:n46014008006 +95347 A0:n46014008008 +95360 A0:n46014006003 A1:n46014009010 +95362 A1:n46014009015 +95364 A1:n00000000000 +95369 A0:n46014006003 +95371 A0:n00000000000 +95384 A0:n46003022002 A1:n46014011006 +95391 A0:n00000000000 +95395 A0:n00000000000 +95411 A0:n46014006003 +95413 A0:n46014006003 +95416 A0:n00000000000 +95418 A0:n46014013003 +95420 A0:n46014013003 +95423 A0:n46003022002 +95428 A0:n46014014006 +95438 A0:n46003022002 +95442 A0:n46003022002 +95446 A0:n46003022002 +95450 A0:n46003022002 +95456 A0:n46014006003 +95459 A0:n00000000000 A1:n46014016008 +95465 A0:n46014016006 A1:n46014016014 +95474 A0:n46014006003 A1:n46014016020 +95476 A0:n46014016006 +95481 A0:n46014017001 +95486 A1:n46014017008 +A0:n46003022002 A1:n46014018003 +95494 A0:n46003022002 +95498 A0:n46003022002 A1:n46014019010 +95504 A0:n46003022002 A1:n46014019006 +95508 A0:n46003022002 A1:n46014019013 +95523 A0:n46014020001 +95532 A1:n46014021012;n46014021019;n46014021021 +95540 A0:n46014021022 A2:n46014021014 +95547 A0:n46014021014 A1:n46014021020 +95549 A0:n46014021022 +95559 A0:n00000000000 +95571 A0:n00000000000 +95574 A0:n46014023005 +95583 A0:n46014023011 +95586 A0:n46014023016;n46014023018 +95591 A0:n46014023016;n46014023018 +95593 A0:n46014023005 +95597 A0:n46014024003 +95599 A0:n46014024008;n46014024010 +95604 A1:n46014024008;n46014024010 +95607 A1:n46014024008;n46014024010 +95619 A0:n46014024008;n46014024010 +95622 A0:n46014024008;n46014024010 A1:n46014025015 +95625 A0:n46014024008;n46014024010 +95635 A0:n00000000000 +95638 A0:n46014026004 +95641 A0:n46014026007 A1:n46014026008 +95643 A0:n46014026007 A1:n46014026010 +95645 A0:n46014026007 A1:n46014026012 +95647 A0:n46014026007 A1:n46014026014 +95649 A0:n46014026007 A1:n46014026016 +95657 A0:n46014027003 +95669 A0:n46014027015 +95673 A0:n46014028005 +95675 A0:n46014027003 +95679 A0:n46014027003 A2:n46014028009;n46014028014 +95689 A0:n46014029001 +95693 A0:n46014029009 +95697 A0:n46014030003 +A1:n00000000000 A2:n46014030003 +95701 A0:n46014030007 +95703 A0:n46014031005 A1:n46014031006 +95707 A0:n46014026004 +95710 A0:n46014031008 +95713 A1:n46014031011 +95718 A1:n46014032002 A2:n46014032004 +95739 A0:n46014034002 +95742 A2:n46014034010 A1:n46014034011 +95744 A0:n46014034002 +95746 A1:n46014034002 +95751 A0:n46014034017 +95755 A0:n46014034002 A1:n46014035003 +A0:n46014034002 A1:n46014035004 +95762 A0:n46014034002 A1:n46014035010 +95767 A0:n46014035015 +95777 A0:n46014036005 +95782 A0:n46014036005 +95785 A0:n46014037002 A1:n46014037004;n46014037007 +95790 A0:n46014037002 +95792 A0:n46003022002 A1:n46014037009 A2:n46014037011 +95801 A0:n46014038003 +A1:n46014038003 +95806 A0:n46014039002 A1:n46014039006 +95808 A0:n46014039002 +95811 A0:n46014039002 +95814 A0:n46014039002 A1:n46014039009 +95821 A0:n46014040001 +95824 A0:n46003022002 A2:n46015001003 A1:n46015001006 +95829 A0:n46003022002 A1:n46015001007 A2:n46015001009 +95833 A0:n46015001004 A1:n46015001010 +95837 A0:n46015001004 +95841 A1:n46015001004 +95844 A0:n46003022002 A1:n46015001006 A2:n46015002008 +95847 A0:n46015001004 A1:n46015001006 +95852 A0:n46015001004 A1:n46015001006 +95854 A0:n46003022002 A2:n46015003003 A1:n46015003008 +95860 A0:n46003022002 A1:n46015003006 +95863 A0:n46015003010 +95873 A1:n46015003010 +95876 A1:n46015003010 +95886 A1:n46015003010 +95892 A1:n46015003010 +95901 A0:n46015006010 +95906 A0:n46015006014 +95908 A1:n46015003010 +95917 A1:n46015003010 +95936 A0:n46003022002 A1:n46015009017 +95961 A0:n46003022002 +95978 A0:n46015011003;n46015011005 +95981 A0:n46015001004 +95985 A1:n46015012003 +95989 A1:n46015012003 +95991 A0:n46015012013 +95999 A0:n46015012015 +96005 A0:n46015013003 +96008 A1:n46015013008 +96013 A1:n46015014003 +96031 A0:n46003022002;n46015009007 +96036 A0:n46015015011 A1:n46015015015 +96041 A0:n46015015011 A1:n46015015016 +96046 A1:n46015015021 +96051 A1:n46015016003 +96054 A1:n46015016007 +96059 A1:n46015017003 +96073 A1:n00000000000 +96076 A0:n46015018004 +96084 A0:n46014033015 +96093 A1:n46015020003 +96099 A0:n00000000000 +96116 A0:n46015022006 +96123 A1:n46015022013 +96144 A0:n46015023012 A1:n46015024007 A2:n46015024009;n46015024011 +96152 A0:n46015023012 A1:n46015024015;n46015024018;n46015024020 +96161 A0:n46015025004 +96163 A0:n46015025003 +96166 A0:n46015024009 A1:n46015025010 +96178 A1:n46015026002 +96181 A0:n46015024009 A1:n46015027001 +96188 A0:n46015004013 +96191 A1:n46015027012 +96196 A0:n46015024009 A2:n46015027019 A1:n46015027021 +96202 A2:n46015028004 A1:n46015028006 +96211 A1:n46015028011 A2:n46015028014 +96213 A0:n46015024009 A2:n46015028015 A1:n46015028017 +96226 A1:n46015029002 A0:n46015029005 +96228 A1:n00000000000 +96236 A1:n46015029011 +96239 A1:n46015029005 +96245 A0:n46015030003 +96251 A0:n46003022002 +96257 A0:n46003022002 A1:n46015031009 +96267 A0:n46003022002 +96277 A1:n46015032012 +A0:n00000000000 +96280 A0:n00000000000 +96283 A0:n00000000000 +96285 A1:n46015031008 +A1:n46015033004 A0:n46015033006 +96291 A0:n46015031008 +96295 A0:n46015031008 +96300 A1:n46015034006 A0:n46015034009 +96304 A0:n46003022002 A2:n46015034013 +96306 A0:n46015035003 +96309 A1:n46015035007 +96315 A0:n46015035007 +96319 A1:n46015036003 A0:n46015036002 +96321 A1:n46015036004 +96324 A0:n46015036004 +96327 A0:n46015036001 A1:n46015037002 +96332 A0:n46015037006 +A0:n46015036001 A1:n46015037006 +96338 A0:n00000000000 +96347 A0:n46015038003 A2:n46015038005 A1:n46015038006 +96351 A0:n46015038003 +96411 A0:n46015041012 +96420 A1:n46015035010 +96423 A1:n46015035010 +96426 A1:n46015035010 +96429 A1:n46015035010 +96432 A1:n46015035010 +96435 A1:n46015035010 +96438 A1:n46015044002 +96441 A1:n46015044005 +96445 A0:n46015044009 +96448 A0:n46015044013 +96453 A1:n46015045004;n46015045014 +A0:n46015045007 +96461 A0:n46015045010 +96467 A0:n46015045016 +96507 A0:n46014033015 A1:n46015049005 +96512 A0:n46014033015 A1:n46015049011 +96520 A0:n46003022002 A1:n46015050001 +96528 A0:n46015050006;n46015050008 A1:n46015050009 +96530 A0:n46015050006;n46015050008 A1:n46015050011 +96536 A0:n46015050016 A1:n46015050018 +A0:n46015050004 +96540 A0:n46003022002 A1:n46015051002 A2:n46015051003 +96543 A0:n46015051005 +96546 A1:n46015051008 +96557 A0:n46015052009 +96561 A1:n46015052014 +96565 A1:n46015052018 +96567 A0:n46015053006;n46015053012 +96571 A0:n46015053004 A1:n46015053007 +96577 A0:n46015053010 A1:n46015053013 +96584 A0:n46015054004 A1:n46015054007 +96590 A0:n46015054010 A1:n46015054013 +96593 A0:n46015054017 +96597 A1:n46015054017 +A1:n46015054022 +96632 A0:n46015057003 A2:n46015057007 A1:n46015057009 +96649 A0:n46015058002 +96656 A0:n46015058002 +96675 A0:n46003022002 A1:n00000000000 A2:n46016001012 +96683 A0:n46016001017 +96691 A0:n46016002004 +A0:n46016002004 A1:n46016002011 +96696 A1:n46016002004 A1:n46016002010 +96700 A0:n46003022002 +96703 A0:n46016002019 +96706 A0:n46003022002 +96709 A0:n46015058002 A1:n46016003004 +96713 A0:n46003022002 A1:n46016003009 +A0:n46016003006 A1:n46016003013 +96726 A0:n46016004006 +96729 A0:n46016003006 +96731 A0:n46003022002 +96736 A0:n46003022002 +96739 A0:n46003022002 +96743 A0:n00000000000 +A0:n46003022002 +96747 A0:n46003022002 +96751 A0:n46016006010 A1:n46016006011 +96754 A0:n46003022002 +96757 A0:n46003022002 A1:n46016007008 +96762 A0:n46003022002 A1:n46016007004 +96764 A0:n46003022002 A1:n46016007013 +96767 A0:n46003022002 A1:n46016007011 +96773 A0:n46016007018 +96775 A0:n46003022002 +96783 AA2:n46016009003 A0:n46016009001 +96789 A0:n00000000000 +96793 A0:n46016010004 +96795 A0:n46015058002 +96805 A0:n46016010004 A1:n46016010013 +96812 A0:n46016011002 A1:n46016011004 +96814 A0:n46015058002 A1:n46016011008 +96819 A0:n46016010004 +96823 A0:n46003022002 A1:n46016011017 +96834 A0:n46003022002 A1:n46016012008 +96837 A0:n46016012003 +96846 A0:n46016012020 +96850 A0:n46016012003 +96852 A0:n46016012003 +96854 A0:n46016012003 +A0:n46015058002 +A0:n46015058002 +96860 A0:n46015058002 +A1:n46015058002 +96868 A0:n46003022002 A1:n46016015003 +96871 A0:n46016015004 A1:n46016015007 +96885 A0:n46016015007 A2:n46016015018 A1:n46016015020 +96890 A1:n46016016003 A2:n46016016006;n46016016010;n46016016012 +96896 A0:n00000000000 +96898 A0:n00000000000 +96900 A0:n46003022002 +96914 A1:n46016017014 A0:n46016017015 +96916 A0:n46016017006;n46016017008;n46016017010 A1:n46016018005;n46016018007 +96924 A0:n46016015004 A1:n46016018012 +96927 A1:n46016019002 A0:n46016019004 +96933 A1:n46016019008 A0:n46016019012;n46016019014 +96947 A1:n46016020002 A0:n46016020004 +96952 A0:n46016015004 A1:n46016020007 +96966 A0:n46016022002 A1:n46016022006 +96972 A0:n46016022009 +97049 A0:n47001003012 A1:n47001004003 +97058 A0:n47001003012 A1:n47001004013 +97060 A0:n47001004012 A1:n47001004014 +97069 A1:n47001004023 +97076 A0:n47001005005 +97087 A0:n47001005017 +97094 A1:n47001001001;n47001001009 +97102 A1:n47001001001;n47001001009 +97108 A0:n47001006015 +97117 A1:n47001006023 A0:n47001006025 +97125 A0:n47001001001;n47001001009 +97139 A0:n47001001001;n47001001009 A1:n47001008005 +97141 A0:n47001008004 +97156 A1:n47001001001;n47001001009 +97158 A1:n47001008024 +97162 A0:n47001001001;n47001001009 +97171 A0:n47001009002 A1:n47001009006 +97174 A0:n47001001001;n47001001009 +97183 A0:n47001009019 A1:n47001009023 +97190 A0:n47001010001 A1:n47001010006 +97193 A0:n47001009019 +97196 A0:n47001001001;n47001001009 +97200 A0:n47001009019 +A0:n47001011003 +97218 A1:n47001011015 +97247 A1:n47001001001;n47001001009 +97256 A0:n47001001001;n47001001009 A2:n47001013005 A1:n47001013001;n47001013003;n47001013009;n47001013012 +97263 A0:n47001008006 A1:n47001013008 +97266 A0:n47001008006 +97268 A0:n47001001001 +97272 A0:n47001008006 +97275 A0:n47001008006 A1:n47001014004 +97298 A0:n47001001001 A1:n47001015009 +97302 A0:n47001001001 +97306 A0:n47001008006 A1:n47001015012 +97310 A0:n47001001001 +97317 A0:n47001001001 +97323 A1:n47001001001 +97329 A0:n47001001001 A1:n47001017001 +97334 A0:n47001001001 +97337 A0:n47001001001 A1:n47001017010 +97340 A0:n47001001001 A1:n47001017011 +97380 A1:n47001019005 +97396 A0:n00000000000 +97419 A0:n47001021012 A1:n47001021004 +97426 A0:n47001021012 A1:n47001021011 +97431 A0:n47001021012 A1:n47001022004 +97434 A0:n47001021012 A1:n47001022008 +97448 A0:n47001023001 A1:n47001023005 +97454 A0:n47001001001 A1:n47001023013 +97457 A0:n47001001001 +97462 A0:n47001001001;n47001019017;n47001019019 +97475 A0:n47001008006 +97477 A0:n47001001001 A2:n47002001003 A1:n47002001004 +97487 A0:n47001001001 +97491 A0:n47002002003 A1:n47002002005 +97496 A0:n00000000000 A1:n47002002010 +97501 A1:n00000000000 +97505 A0:n47001001001 A1:n47002003003 +97510 A0:n47001001001 +97512 A0:n47001001001 A1:n47002003008 +97516 A0:n47002003013 +A0:n47002003014 +A0:n47001001001 +97536 A0:n47001001001 A2:n47002004009 +97543 A1:n47001008006 +97546 A0:n47001008006 A1:n47002004018 +97550 A0:n47001001001 A1:n47002004021 +97557 A0:n47002005003 +97560 A0:n47002005003 A1:n47002005006 +97568 A0:n47001001001 +97583 A0:n47002007004 +97585 A0:n47002007004 +97591 A1:n47002007015 +97595 A0:n47001001001 A1:n47002008004 +97597 A0:n47002008003 A1:n47002008007 +97605 A0:n47001001001 +97607 A0:n47001001001 A1:n47002009009 +97619 A0:n47001008006 A2:n47002010001 A1:n47002010003 +97625 A0:n47002010008 A1:n47002010009 +97628 A0:n47001001001 A1:n47002010012 +97636 A1:n47001001001;n47001019017;n47001019019;n47001008006 +97645 A0:n47001001001;n47001019017;n47001019019;n47001008006 A1:n47002011011 +97647 A0:n47001001001 +97659 A1:n47002012012 A2:n47002012013 +97663 A0:n47001001001 A1:n47002013003 +97670 A0:n47002013010 A1:n47002013011 +97677 A0:n47001001001 A1:n47002013017 +97679 A0:n47001001001 +97688 A0:n47002014003 A1:n47002014008 +97699 A0:n47002014003 A1:n47002014014 +97713 A1:n00000000000 +97717 A0:n00000000000 +97740 A0:n47002017006 A1:n47002017009 +97760 A0:n47001001001;n47001019017;n47001019019;n47002013011 +A0:n47001001001;n47001019017;n47001019019;n47002013011 +97764 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47003001003 +97767 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47003001011 +97782 A1:n47003002002 +97787 A1:n47003002002 +97789 A1:n47003002002 +97793 A1:n47001008006 +97798 A1:n47003003004 +97801 A1:n47003003004 +97807 A0:n47003003014 +97820 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47003004001 +97833 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47003005008 +97847 A0:n47003006001 A1:n47003006005 +97859 A0:n47003006014 +97863 A0:n47003006018 +97872 A1:n47003007004 +97879 A0:n47003007019 A1:n47003007017 +97883 A0:n47003007019 +97895 A1:n47003007027 +97915 A0:n47003009012 +97924 A1:n47003010006 +97926 A1:n47003006014 +97933 A0:n47003010014 +97938 A1:n47003006014 +97944 A0:n47003006018 +97948 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47003012004 +97953 A0:n47001001001;n47001019017;n47001019019;n47002013011 +97958 A0:n47003013004 A1:n47003013006 +97967 A0:n47003013016 +97975 A1:n47003006014 +97977 A1:n47003014004 +97995 A0:n47003014013 +97997 A1:n47003014013 +98001 A1:n47003014013 +98007 A1:n47003015007 +98014 A0:n47003015008 +98018 A0:n00000000000 +98021 A1:n47003016009 +98039 A1:n47003018005 +98044 A0:n47001001001;n47001019017;n47001019019;n47002013011;n47001008006 A1:n47003018007 +98048 A1:n47003018001 +98059 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004001005 +98064 A1:n47001001001;n47001019017;n47001019019;n47002013011 +98066 A0:n47001001001;n47001019017;n47001019019;n47002013011 +98068 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004002004 +98074 A0:n47001001001;n47001019017;n47001019019;n47002013011 +98078 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004002014 +98088 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004002023 +98101 A1:n47004003007 +98107 A0:n00000000000 +98109 A1:n47004003007 +98117 A0:n47004004004 A1:n47004004010 +98125 A0:n47004004018 +98142 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004005003 +98157 A0:n47004006003 +98161 A0:n47004006008 +98163 A0:n47004006010 +98180 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004007004 +98201 A1:n47001001001;n47001019017;n47001019019;n47002013011 +98204 A1:n47001001001;n47001019017;n47001019019;n47002013011 +A0:n47001001001;n47001019017;n47001019019;n47002013011 +98208 A0:n47001001001;n47001019017;n47001019019;n47002013011 +A1:n47001001001;n47001019017;n47001019019;n47002013011 +98212 A1:n47001001001;n47001019017;n47001019019;n47002013011 +A1:n47001001001;n47001019017;n47001019019;n47002013011 +98216 A0:n47001001001;n47001019017;n47001019019;n47002013011 +98225 A0:n47001001001;n47001019017;n47001019019;n47002013011 A1:n47004010003 +98236 A1:n47004010013 +98241 A0:n47001001001;n47001019017;n47001019019;n47002013011 +98244 A1:n47004011003 +98253 A1:n47004011014 +98264 A0:n47004012003 +98271 A0:n47004011005 A1:n47004013005 +98279 A1:n47004013011;n47004013013 +A0:n00000000000 +98282 A0:n00000000000 +98285 A0:n47004013015 +98288 A0:n47004011005 +A0:n47004011005 +98292 A0:n47004007016 A1:n47004014006 +98300 A0:n47004014004 A1:n47004014009 +98302 A0:n47004014004 +98313 A0:n47004015008 +98319 A0:n47004015008 A1:n47004015014 +98327 A0:n47004011005 +98335 A1:n47004016010 +98340 A1:n47004016014 +98357 A0:n47004017004 A1:n47004017012 +98360 A0:n47004018003 A1:n47004018005 +98363 A1:n00000000000 +98367 A1:n00000000000 +98370 A1:n00000000000 +98375 A1:n00000000000 +98378 A0:n47004011005 +98387 A1:n47005001008 +98390 A0:n47004011005 A1:n47005001012 +98402 A0:n47004011005 +98409 A0:n47004011005 A1:n47005002007 +A0:n47004011005 A1:n47005002012 +98414 A0:n47004011005 +98425 A0:n47005004007 +A1:n47005004007 +98429 A0:n47005004007 A1:n47005004012;n47005004014;n47005004016 +98431 A0:n47005004007 +98433 A0:n47005004007 +98435 A1:n47005004020 +98443 A0:n47005005008 A1:n47005005004 +98450 A0:n47005005008 A2:n47005005011 A1:n47005005013 +98457 A0:n47005004007 +98460 A0:n47005004007 +98462 A0:n47005004007 +98466 A0:n47005004007 +98473 A0:n47005004007 +98478 A0:n47005004007 +98480 A0:n47005004007 A1:n47005008006;n47005008011 +98482 A0:n47005004007 +98487 A0:n47005004007 +98493 A0:n47005004007 A1:n47005009008 +98495 A0:n47005004007 +98497 A0:n47005004007 +98505 A1:n47005010003 +98511 A0:n47005010005 +98513 A0:n47005010014 A1:n47005010015 +98521 A0:n47005010014 A1:n47005010020 +98527 A0:n47005004007 A1:n47005011004 +98533 A0:n47005004007 A1:n47005011007 +98536 A1:n47005004007 +98538 A0:n47001001001 A1:n47005011019 +98544 A1:n47005004007 +98548 A0:n47005004007 A1:n47005012003 A2:n47005012005 +98553 A0:n47005004007 A1:n47005012007 A2:n47005012009 +98558 A0:n47001008006 +98563 A0:n00000000000 +98570 A0:n47005004007 +98573 A0:n47005004007 +98580 A0:n47005014003 A1:n47005014007 +98582 A0:n47005004007 A1:n47005014009 +98588 A0:n47005014011 +98592 A0:n47005014017 +98596 A0:n47005014005 +98599 A0:n00000000000 +A0:n47005015007 +98607 A0:n47005014005 +98609 A1:n47005014005 +98616 A0:n47005016002 A1:n47005016006 +98621 A0:n47005004007 A1:n47005016015 +98628 A0:n47005004007 +98638 A0:n47005017009 +A0:n47001008006 +A0:n47005017013 +98649 A0:n47005018006 A1:n47005018009 A2:n47005018010 +98655 A0:n47005018006 A2:n47005018015 A1:n47005018017 +98665 A0:n47005019003 A1:n47005019007 A2:n47005019009 +98671 A0:n47005019003 A2:n47005019012 A1:n47005019014 +98677 A0:n47005019003 A1:n47005019021 +98687 A0:n47005004007 +98691 A0:n47005020007 +98694 A0:n47005004007 +98697 A1:n47001008006 +98702 A0:n47005020013 A1:n47005021004 +98707 A0:n47005020016 A1:n47005021003 +98716 A0:n47005004007 +98718 A0:n47005004007 A1:n47006001012 +98726 A1:n47006001009 A0:n47006001013 +98729 A0:n47006001011 +98732 A0:n47006001011 A1:n47006002006 +98738 A0:n47006001011 A1:n47006002012 +98740 A0:n47001008006 +98744 A0:n47001008006 +98752 A0:n47005004007 A1:n47006003005 +98755 A1:n47006003010 +98761 A0:n47005004007 A1:n47006004005 +98829 A1:n47005004007 +98831 A1:n47005004007 +98833 A0:n47005004007 +98835 A0:n47001008006 +A0:n47005004007 +98838 A1:n47005004007 +98841 A1:n47005004007 +98843 A1:n47005004007 +98846 A0:n47005004007 +98851 A0:n47005004007 A1:n47006010008 +98854 A0:n47005004007 A1:n47006010012 +98857 A0:n47005004007 A1:n47006010015 +98862 A0:n47006011002 +98868 A1:n47006011009 +98870 A1:n47006011007 +98874 A1:n47006011007 +98885 A0:n47001001001 A2:n47006013006 +A1:n47006013010 +98891 A0:n47006011007 +98928 A0:n47006016011 +98931 A0:n47006016017 +98935 A0:n47006016017 +98939 A0:n47006016017 +98950 A0:n00000000000 +98955 A1:n00000000000 +98959 A0:n00000000000 A1:n47006017011 +A0:n47006017009 +98963 A0:n47006017014 A1:n47006017016 +98978 A0:n47006018015 +98983 A0:n47005004007;n47007001006 A1:n47007001005 +98987 A0:n47005004007;n47007001006 A1:n47007001008 +98995 A0:n47005004007;n47007001006 A1:n47007001016 +99000 A0:n47007001006 A1:n47007002002 +99003 A0:n47005004007 A1:n47007002003 +99005 A0:n47005004007 A1:n47007002005 +99007 A0:n47005004007 A1:n47007002007 +99011 A0:n47001001001 +99013 A0:n47001001001 +99022 A0:n47005004007 +99024 A0:n47005004007 +99035 A1:n47001001001 +99038 A1:n47001001001 +99048 A0:n47007005004 +99053 A0:n47001001001;n47001019017;n47001019019 A1:n47007005009 A0:n47007005011 +99061 A1:n47001001001;n47001019017;n47001019019 +99068 A0:n47007006009 A1:n47007006005 +99073 A0:n47007006003 A1:n47007006007 +99092 A1:n47007006013 +99095 A0:n47007006013 A2:n47007007018 A1:n47007007021;n47007007024;n47007007027 +99111 A1:n47007007031 +99115 A0:n47001001001 A1:n47007008005 +99121 A0:n47001001001 +99124 A0:n47001001001 +A0:n47001001001 +99134 A0:n47007008017 A1:n47007008024 +99137 A0:n47001001001 +99140 A1:n47007001006 +99143 A1:n47007001006 +99147 A1:n47007001006 +99153 A1:n47007001006 +99165 A0:n47007010005 A1:n47007010006 +99172 A0:n47007010015 A1:n47007010016 +99174 A0:n47007001006 +99180 A1:n47007001006 +A0:n47007011004 A2:n47007011011 A1:n47007011012;n47007011014;n47007011016;n47007011018;n47007011020;n47007011022;n47007011024 +99199 A0:n47007001006 A1:n47007011028 +99208 A0:n47001001001 A2:n47007012005 +99213 A0:n00000000000 +99217 A1:n00000000000 +99221 A1:n47007012019 +99235 A1:n47001001001;n47001019019;n47001019017 +99243 A1:n47001001001;n47001019017;n47001019019 +99249 A1:n47007013019 +99262 A0:n47001001001 A1:n47007014003 A2:n47007014004 +99264 A1:n47001001001 +99270 A0:n47001001001;n47001019017;n47001019019 A1:n47007014012 A2:n47007014016 +99289 A1:n47007014024 A1:n47007015013 +99299 A0:n47007001006 A1:n47007015020 +99301 A0:n47001001001 +99305 A0:n47001001001 +99310 A0:n47005004007 A2:n47008001003 A1:n47008001006 +99317 A1:n47008001006 +99339 A0:n47008002007;n47008002015 +99346 A0:n47001001001 +99357 A0:n47008001013 A2:n47008004005 A1:n47008004007;n47008004010 +99373 A0:n47005004007 +99376 A0:n47008001013 A1:n47008005006 A2:n47008005010;n47008005012 +99387 A0:n47008006004 A1:n47008006005 +99392 A0:n47008006005 +99395 A0:n47008006005 A1:n47008006016 +99406 A0:n47008001004 +99428 A0:n47008001004 +99432 A0:n47001001001 +99444 A0:n47001001001 A1:n47008008015 +99446 A0:n47008001004 A1:n47008009004 +99457 A0:n47008009006 +99465 A0:n47008009017 +99470 A0:n47001001001 A1:n47008010002 +99474 A0:n47008010006 +99479 A0:n47008001004 +99483 A0:n47008001004 +A0:n47008010010 A1:n47008010011;n47008010014;n47008010018 +99491 A0:n47008001004 +A0:n47008001004 A1:n47008011005 +99498 A0:n47008001004 +99502 A0:n47008001004 +99505 A0:n47008001004 +99510 A0:n47008012004 +99513 A0:n00000000000 +99518 A0:n00000000000 +99545 A0:n47008014016 +99551 A0:n47008014024 +99554 A1:n47008015007;n47008015013 +99559 A0:n47008015005 +99565 A0:n47008015011 +99571 A0:n47008016004 A1:n47008016009 +99585 A0:n47008016015 A1:n47008017004 +99590 A0:n47008016015 +99594 A0:n47001001001;n47001019017;n47001019019 A1:n47008018006 +99614 A1:n47008018006 +99625 A1:n47008019014 +99637 A0:n47001001001;n47001019017;n47001019019 A1:n47008020002 +99642 A0:n47008020004 A1:n47008020005 +99648 A1:n47008020009 +99652 A0:n47001001001;n47001019017;n47001019019 A1:n47008021003 +99663 A0:n47001001001;n47001001009;n47001019019 A1:n47008022005 +99669 A0:n47001001001;n47001019017;n47001019019 A1:n47008022007 +99713 A0:n47008001004 A1:n47008024003 +99731 A0:n47001001001 A2:n47009001015 +99734 A0:n47001001001 A1:n47009002004 +99741 A0:n47001001001 A1:n47009002006 A2:n47009002010 +99745 A0:n47009002012 +99752 A0:n47009002019 A1:n47009002022 +99756 A0:n47001001001 A1:n47009003004 +99767 A1:n47009003008 +99774 A0:n47001001001 +A0:n47008001004 +99780 A0:n47009004007 +99785 A0:n47009004007 A1:n47009004011 +99788 A1:n47009004013 +99792 A0:n47001001001;n47001019019;n47001019017 +99800 A0:n47001001001 A1:n47009005004 +A0:n47001001001 A1:n47009005006 +99805 A0:n47009005006 +99809 A0:n47009005006 A1:n47009005015 +99811 A0:n47009005015 +99827 A0:n00000000000 +99831 A0:n47009006004 +99834 A0:n00000000000 +99840 A0:n47009006011 +99843 A0:n47009007001 +99855 A1:n47009007014 A0:n47009007017 +99859 A0:n47009008004 A1:n47009008007 +99864 A0:n47009008004 A1:n47009008006 +99873 A0:n47008001004 A1:n47009008015 +A0:n47008001004 +99880 A1:n47009009003;n47009009004;n47009009010 +A0:n00000000000 +A0:n00000000000 A1:n00000000000 A2:n47009009006 +99888 A0:n47009009008 +99894 A0:n47009008004 A1:n47009010004 A2:n47009010006 +99897 A0:n00000000000 +99902 A0:n47009010003;n47009010008 A1:n47009010015 +99904 A0:n47009010003;n47009010008 A1:n47009010015 +99909 A0:n47009010003 A1:n47009010020 +99917 A1:n47008001004 +99922 A0:n47009011007 A1:n47009011011 A2:n47009011013 +99937 A0:n47009012003 A1:n47009012012 +99944 A0:n47009012003 +99956 A0:n47008001004 A1:n47009013009 +99984 A0:n47009014002 A1:n47009014007 +99988 A0:n47009014011 +100006 A0:n47010001003 A1:n47010001006 +100023 A0:n47010001004 +A0:n47010001004 +100028 A0:n47010001004 A1:n47010002006 +100031 A0:n47010001004 +A0:n47010001004 +100036 A0:n47010001004 A1:n47010002011 +A0:n47010001004 +100041 A0:n00000000000 A1:n47010002016 +100046 A0:n47005004007;n47009005006 +100050 A0:n47005004007;n47009005006 +100054 A0:n47005004007;n47009005006 +100070 A0:n47005004007;n47009005006 A1:n47010004016;n47010005003 +100075 A0:n47010005003 +100082 A0:n47005004007;n47009005006 A1:n47010005013 +100093 A0:n47005004007;n47009005006 A1:n47010006005 +A0:n47005004007;n47009005006 A1:n47010006007 +100098 A1:n47010006012 +100105 A0:n47008001004 A1:n47010007001 +100108 A0:n47010007006 A1:n47010007009 AA2:n47010007008 +100113 A0:n47010007006 A1:n47010007011 +100129 A0:n47010001004 +100135 A1:n47010008011 A0:n47010008014 +100146 A1:n47010001004 +100149 A0:n47010001004 +100152 A0:n47010001004 A1:n47010009007 +100158 A0:n47010007006 +100174 A1:n00000000000 +100176 A1:n47010011001 A0:n47010011004 +100186 A0:n47005004007;n47009005006 +100189 A0:n47005004007;n47009005006 +100194 A0:n47005004007;n47009005006 +A0:n47005004007;n47009005006 A1:n47010012007 +100197 A0:n47005004007;n47009005006 A1:n47010012007 +100202 A0:n00000000000 A1:n47010012010 +100208 A0:n47010012008 A1:n47010012016 +100210 A0:n47010012008 A1:n47010012020 +100214 A0:n47010012013 +100221 A0:n47010013001 +100229 A1:n47010013014 A2:n47010013016 A0:n47010013018 +100234 A0:n47005004007;n47009005006 +100242 A0:n47005004007;n47009005006 +100245 A0:n47005004007;n47009005006 A1:n47010014009 +100251 A0:n47005004007;n47009005006 +100261 A0:n47005004007;n47009005006 +100267 A0:n47005004007;n47009005006 A1:n47010015009 +A1:n47010015014 +100274 A1:n47005004007;n47009005006 +100285 A0:n47005004007;n47009005006 +100293 A0:n47005004007;n47009005006 +100296 A0:n00000000000 +100299 A0:n47010017003 +100304 A0:n00000000000 A1:n47010018004 +100312 A1:n47010018010 A0:n47010018012 +A0:n47010001004 +A0:n47008001004 A2:n47011001003 A1:n47011001005 +100321 A0:n47008001004 A1:n47011001010 +100324 A0:n47010001004 A1:n47011002003 +100329 A0:n47010001004 A1:n47011002008 A2:n47011002010 +100335 A0:n47010001004 A1:n47011002011 A2:n47011002015 +100339 A0:n47010001004 +100345 A0:n47011003007 A1:n47011003009 +100351 A1:n47011003016 +100368 A0:n00000000000 +A0:n47011004005 A1:n47011004007 +100374 A0:n47005004007;n47009005006 A1:n47011004009 +100376 A0:n47008001004 A1:n47011004013;n47011004020 +100381 A0:n47008001004 A1:n47011004016 +100387 A0:n47008001004 A1:n47011004022 +100389 A0:n47008001004 +100391 A0:n47010001004 A1:n47011005004 +100393 A0:n47010001004 A1:n47011005003 +100410 A0:n47005004007;n47009005006 +100417 A0:n47010001004 A1:n47011007002 +100419 A0:n47010001004 A1:n47011007004 +100422 A1:n47011007007 +100429 A0:n47010001004 A1:n47011007014 A2:n47011007016 +100433 A0:n47010001004 A1:n47011008002 +A0:n47010001004 A1:n47011008005 +100441 A0:n47010001004 +100445 A1:n47010001004 +100447 A0:n47010001004 +100453 A1:n47011009012 A0:n47011009016 +100456 A0:n47011009016 +100465 A0:n47010001004 A1:n47011009024 A2:n47011009025 +100467 A0:n47010001004 A1:n47011009024 A2:n47011009025 +100478 A1:n47011010008 +100490 A0:n47010001004 A1:n47011011006 +100494 A0:n47011011008 +100497 A0:n47010001004 A1:n47011012001 +100499 A0:n47010001004 A1:n47011012003 +100501 A0:n47010001004 A1:n47011012009 +100505 A0:n00000000000 A1:n47011012012 +100510 A0:n47011012011 A1:n47011012015 +A1:n47011012011 +100521 A0:n47011012011 +100532 A0:n47011014007 +100544 A0:n47011015007 +100557 A0:n47010001004 +100560 A0:n47011016004 A1:n47011016007 +100570 A0:n47008001004 A1:n47011016016 +100576 A0:n47011016018 A1:n47011016019 +100578 A0:n47010001004 A1:n47011017001 +100582 A0:n47010001004 A1:n47011017002 +100595 A0:n47011018002 +100603 A0:n47008001004 A1:n47011019005 +100609 A0:n47008001004 +100613 A0:n47011020004 A1:n47011020005 +100616 A0:n47011020008 +100619 A0:n47011020011 +100622 A0:n47011020014 +100628 A0:n47011020017 A1:n47011020020 +100631 A0:n47010001004 +100635 A0:n47011021006 +100641 A0:n47011021012 +100644 A0:n47010001004 +A0:n47011021018 +100660 A0:n47010001004 +A0:n47010001004 +100682 A0:n47010001004 A1:n47011024004 +100684 A1:n47010001004 +100686 A1:n47010001004 +100688 A0:n47010001004 +100693 A0:n47010001004 +100750 A0:n47011029001 +100753 A0:n47010001004 +100755 A1:n47011029006 +100759 A0:n47011029010 +100761 A0:n47010001004 +A0:n47011030002 +100767 A0:n47010001004 A1:n47011030004 +100781 A0:n47011031002;n47011031004 +100784 A0:n47010001004 +100792 A0:n47011032004 A1:n47011032010 +100796 A0:n47011032004 A1:n47011032013 +100803 A1:n47010001004 +100808 A0:n47010001004 A1:n47011033013 +100812 A0:n47010001004 +A0:n47012001001 +100816 A0:n47012001001 +100818 A0:n47010001004 +100824 A0:n47010001004 A1:n47012002022 +100832 A0:n47010001004 +100838 A0:n47010001004 +100841 A0:n47012002020 +100845 A1:n47012002024 +100852 A0:n47010001004 +100864 A0:n47010001004 +100867 A0:n47012003016 +100869 A1:n47012003005 +100874 A0:n47012003005 A1:n47012004009 +100878 A0:n00000000000 A1:n47012004010 +100880 A0:n47012004014 +100885 A0:n47010001004 +100890 A0:n47010001004 +100898 A0:n47010001004 A1:n47012006004 +A0:n47010001004 +100905 A0:n47010001004 A1:n47012006008 +100907 A0:n47010001004 +100912 A0:n47012006014 +100915 A0:n47012006014 A1:n47012006019 +100918 A0:n47012006014 +100929 A1:n47010001004 +A2:n47012007011 A1:n47012007012 +100939 A0:n47012007015 A1:n47012007018 +100942 A1:n47010001004 +100948 A0:n47010001004 A1:n47012008005 +100950 A0:n47012007012 +100954 A0:n47012008005 A2:n47012009003 +100956 AA2:n47012009005 A0:n47012009007 +100966 A1:n47012009011 +100970 A0:n47010001004 +100975 A0:n47012009027 +100983 A0:n47010001004 +100998 A0:n47010001004 +101006 A0:n47012011003 A1:n47012011004 +101009 A0:n47012011006 A1:n47012011011 +101012 A1:n47010001004 +101015 A0:n47010001004 A1:n47012011012 +101028 A1:n47012012003 +101044 A1:n47008001004 +101055 A0:n47012013014 +101057 A0:n47008001004 A2:n47012013019 A1:n47012013021 +101062 A0:n47008001004 +101066 A0:n47010001004 A1:n47012014002 +A0:n47010001004 +101072 A0:n47010001004 +101075 A0:n47010001004 A1:n47012014015 +101082 A0:n47012014023 A1:n47012014026 +101087 A0:n47012014023 A1:n00000000000 A2:n47012014025 +101096 A0:n47012015001 +101098 A1:n47012015001 +101106 A0:n47010001004 A1:n47012015013 +101108 A1:n47010001004 +101110 A0:n47012015016 +101113 A0:n47012016003 A1:n47012016006 +101120 A0:n47010001004 A1:n47012016011 +101124 A0:n47010001004 A1:n47012017003 +101129 A0:n47010001004 A1:n47012017010 +101131 A0:n47010001004 A1:n47012018002 +101134 A0:n47010001004 A1:n47012018006 +101138 A1:n47012018009 A0:n47012018010 +101145 A0:n47005004007;n47009005006 +101151 A0:n47008001004 +101154 A0:n47005004007;n47009005006 A1:n00000000000 A2:n47012019004 +101159 A0:n47005004007;n47009005006 +101169 A0:n47010001004 +101172 A0:n47010001004 +101175 A0:n47010001004 A1:n47012020007 +A0:n47010001004 A1:n47012020010 +101179 A1:n47012020011 A1:n47012020016 +101183 A0:n47012019014 A1:n47012020014 +101196 A0:n47012021004 +101198 A1:n47012021006 A0:n47012021008 +101206 A0:n47010001004 A1:n47012021014 +101209 A0:n00000000000 +101212 A0:n00000000000 +101221 A0:n47012021016 A1:n47012021027 +101224 A0:n47010001004 +101233 A1:n47013001014 +101236 A0:n47010001004 A2:n47013002012;n47013002015 +101238 A0:n47010001004 A2:n47013002012;n47013002015 +101240 A0:n47010001004 +101244 A0:n47010001004 +101247 A0:n00000000000 +101254 A0:n47010001004 +101259 A0:n47010001004 +101261 A0:n47012019014 A1:n47013003002 +101266 A0:n47013003008 +101272 A0:n47013003009 +101274 A0:n47013003008 +101279 A1:n47013003008 +101283 A0:n47013003008 +101290 A0:n47013004013 +101294 A0:n47005004007;n47009005006 +101303 A0:n47012019014 A1:n47013005001 +101310 A0:n47012019014 A1:n47013005008 +101313 A0:n47012019014 A1:n47013005013 +101325 A0:n47010001004 +101327 A0:n47012019014 +101334 A0:n47005004007;n47009005006 A1:n47013007007 +101339 A0:n47013007008 A1:n47013007009 +101353 A0:n47013007018 A1:n47013007020 +101361 A0:n47005004007;n47009005006 A1:n47013008004 +101371 A0:n47005004007;n47009005006 +101374 A0:n47013009004 +101380 A0:n47005004007;n47009005006 A1:n47013009010 +101388 A0:n47010001004 +A0:n47010001004 A1:n47013010003 +101391 A0:n47010001004 +101394 A0:n47010001004 +101401 A1:n47013010014 A0:n47013010016 A2:n47013010018 +101411 A0:n47013011002 +A1:n47013011002 +A1:n47013011002 +101416 A0:n47013011002 A1:n47013011007 +A0:n47013011002 +101428 A0:n47013011002 A1:n47013012002 +101433 A1:n47013012007 A0:n47013012009 +101474 A0:n48001001014 A1:n48001001018 +101501 A0:n48001003010 A1:n48001004003 +101508 A0:n48001003010 A1:n48001004010 +101514 A0:n48001004013 +101533 A0:n48001001001 +101537 A0:n48001002008 +101540 A0:n48001004021 A1:n48001006009 +101557 A0:n00000000000 A1:n48001007011 +101560 A0:n00000000000 A1:n48001007014 +A0:n48001007013 A1:n48001007016 +101574 A0:n48001008004;n48001008006 A1:n00000000000 A2:n48001008010 +101578 A0:n48001001001;n48001002006 A1:n48001008012 A2:n48001008014 +101583 A0:n48001001001;n48001002006 +101587 A0:n48001001001 +101591 A0:n48001009008 A1:n48001009009 +101594 A0:n48001002008 A1:n48001009012 +101599 A0:n48001001001 A1:n48001010003;n48001010007 +101605 A0:n48001001001 A1:n48001010011 +101607 A0:n48001001001 A1:n48001010010 +101611 A0:n48001001001 A1:n48001010014 +101619 A0:n48001001001 A2:n48001011003 +101624 A1:n48001011006 +101637 A0:n48001012003 A1:n48001012007 +101640 A1:n48001001001 +101647 A0:n48001011004 A1:n48001013005 +101658 A0:n48001001001 A1:n48001013015 +101664 A0:n48001001001 A1:n48001013020 +101667 A0:n48001001001 +101687 A0:n48001015005 A1:n48001016001 +101689 A0:n48001013017 A1:n48001015006 +101696 A0:n48001013017 A1:n48001015006 +101701 A0:n48001015005 A1:n48001016003 +101708 A0:n48001001001 A1:n48001016009 +101715 A0:n48001001001 A1:n00000000000 A2:n48001016016;n48001016018 +101720 A0:n48001001001 +101729 A0:n48001001001 +101734 A0:n48001001001 +101741 A0:n48001001001 +101744 A0:n48001001001 A1:n48001018009 +101747 A0:n48001001001 +101757 A0:n48001001001 A1:n48001019001 +101767 A0:n48001001001 A1:n48001020001 A2:n48001020004 +101769 A0:n48001011004 +101775 A0:n48001001001 +101777 A0:n48001001001 +101788 A1:n48001001001 +101800 A0:n48001022007 +101804 A0:n48001001001 A1:n48001023008 +101808 A0:n48001023007 A1:n48001023013 +101813 A0:n48001023007 A1:n48001023014 +101815 A0:n48001022007 A1:n48001024006 +101825 A0:n48001001001 +101830 A0:n48001001001 A1:n48002001013 +101834 A0:n48001001001 +101838 A0:n48001001001 A2:n48002002007 A1:n48002002009 +101843 A0:n48001001001 A1:n48002002010 +101851 A0:n00000000000 +101856 A0:n48001001001 +101858 A0:n48001001001 +101867 A1:n48002003003 A1:n48002003010 +A1:n48002003003 +101875 A0:n48002004006 +A0:n48002004005 A1:n48002004010 +101881 A0:n48001001001;n48002001010;n48002003003;n48001002006;n48001011004 A1:n48002004012 +101887 A0:n48002004005 A1:n48002004018 +101892 A0:n48001001001;n48002001010;n48002003003 AA2:n48002005001 +101900 A0:n48002005010 +101906 A0:n00000000000 A1:n48002006006 +101914 A0:n48002006007 +101920 A1:n48002006013 A0:n48002006015 +101924 A0:n00000000000 +101926 A2:n48002006019 A0:n48002006022 A1:n48002006023 +101929 A0:n48002009008;n48002009010;n48002009012 +101931 A1:n48001001001 A1:n48002007007 +101942 A0:n48002006015 +101948 A0:n48002008003 +101955 A0:n48002009008;n48002009010;n48002009012 A1:n48002009004 +101959 A1:n48002009004 A2:n48002009007 +101967 A0:n48002009008;n48002009010;n48002009012 A1:n48002009015 +101972 A0:n48002009008;n48002009010;n48002009012 A1:n48002009017 A2:n48002009019;n48002009021 +101990 A0:n48001001001;n48002009021 A1:n48002010003 +101993 A0:n48001001001 A1:n48002010011 +101996 A0:n48001001001 A1:n48002010010 +101999 A0:n48002011004 +102006 A0:n48001001001 A1:n48002011009 +102008 A1:n48002011004 +102013 A0:n48002012005 +102020 A0:n48002011004 +102023 A0:n48002012005 +A0:n48002011004 +102026 A0:n48002011004 A1:n48002012018 +102028 A0:n48002011004 A1:n48002012020 +102033 A0:n48002013007 +102042 A1:n48002013010 +102048 A0:n48001001001 +102051 A0:n48002013007;n48002011004;n48002013010 +102057 A0:n48001001001 A2:n48002014014 +102070 A0:n48002014018 +102072 A0:n48002014014 A1:n48002014030 +102075 A0:n48002014028 +102085 A0:n48001001001;n48002013007;n48002013010;n48002014014 +102088 A1:n48002016006 +102104 A0:n48002016017 +102106 A1:n48001001001;n48002013007;n48002013010;n48002014014 +102120 A1:n48002016039 +102125 A0:n48001001001;n48002013007;n48002013010;n48002014014 A1:n48002017004 +A1:n48001001001;n48002013007;n48002013010;n48002014014 +102129 A1:n48002017009 A1:n48002017010 +102138 A0:n48002017014 +102142 A0:n48001001001 A1:n48002018003 +102145 A0:n48001001001 A1:n48002018005 +102148 A0:n48001001001 A1:n48002018009 +102154 A0:n48002019001 AA2:n48002019005 +102157 A0:n48001001001 AA2:n48002019008 +102159 A1:n48001001001 +102161 A0:n48002020004 +102165 A0:n48002020009 +102172 A0:n48001001001 A1:n48002020010 +102175 A0:n48001001001 A1:n48002020013 +102184 A0:n48002020021 A1:n48002020026 +102187 A0:n48002020021 A1:n48002020029 +102192 A0:n48001001001 A1:n48002021004 +102205 A0:n48002021013 +102211 A0:n48003001004 A1:n48003001005 +102217 A2:n48003001007 A1:n48003001010 A1:n48003001013 +A1:n48003001010 +A0:n48001001001 A1:n48003002004 +102222 A0:n48001001001 A1:n48003002001 +102227 A0:n48003001003 A1:n48003002011 +102238 A0:n48003001003 +102242 A0:n48003001003 +102244 A0:n48003001003 A1:n48003004001 +102252 A0:n48002021006 A2:n48003005004 A1:n48003005006 +102257 A0:n48002021006 A1:n48003005009 +102270 A0:n48003006002 A1:n48003006005 +102274 A1:n48003006003 A2:n48003006008 +102279 A0:n48003001003 +102291 A0:n48003008004 +102295 A1:n48003008010 A0:n48003008012 +102300 A0:n48003008004 A2:n48003008015 +102304 A1:n48003008022 +102314 A1:n48003009002 +102329 A1:n48003010013 +102335 A0:n48003010015 +102338 A1:n00000000000 +102345 A0:n48003010015 A1:n48003010028 +102352 A1:n48003011005 +102362 A0:n48003011013 +102372 A0:n00000000000 A1:n48003012011 +102374 A0:n48003012010 +102379 A0:n48003013001 A1:n48003013002 +102390 A1:n48003013015 +102394 A0:n00000000000 +102405 A0:n48003014006 +102414 A0:n48001001001;n48001002006;n48003001003;n48002013007;n48002013010;n48002014014 A1:n48003014015 +102421 A0:n48001001001 +102424 A1:n48003015008 +102427 A1:n48003015008 A0:n48003015009 +102429 A1:n48003015008 A0:n48003015009 +102431 A1:n48003016006 A2:n48003016003;n48003016009 +102441 A0:n48003008004 +102461 A0:n48001001001 A1:n48003017001 +102463 A1:n48003017004 +102473 A0:n48003017016 +102476 A1:n48003017004 A0:n48003017016 +102479 A0:n48003017016 A1:n48003017023 +102496 A2:n48003018012 A1:n48003018006 A0:n48003018017 +102506 A1:n48003019004 +102509 A0:n48003019013 +102513 A1:n48003018006 A2:n48003019014 +A1:n48003019004 +102540 A0:n48003021006 +102543 A1:n48003021014 +102546 A0:n48003021014 A1:n48003021017 +A0:n48003021014 +102556 A0:n48003022004 A1:n48003022006 +102570 A1:n48003022011 A2:n48003022018 +102572 A0:n00000000000 +102576 A0:n48003023006 +102581 A1:n48001001001;n48001002006;n48003015001;n48003022018;n48002013007;n48002013010;n48002014014 +A1:n48001001001;n48001002006;n48003015001;n48003022018;n48002013007;n48002013010;n48002014014 +102585 A0:n48003023014 A1:n48003023015 +A1:n48003023014 +102599 A1:n48001001001;n48001002006;n48003015001;n48003022018;n48002013007;n48002013010;n48002014014 +102601 A0:n48003025004 +102623 A1:n48003027001 +102625 A0:n48003027005 A1:n48003027006 +102662 A0:n48001001001 +102671 A0:n48004001007 A1:n48004001010 +102699 A1:n48004003003 +102702 A0:n48004004005 +102707 A0:n48004004010 A1:n48004004012 +102713 A0:n48004004012 +102716 A0:n48004004012 +102723 A0:n48004004012 A1:n48004005002 +102727 A0:n48001001001;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48003027005 A1:n48004005008 +102732 A0:n48004006007 A1:n48004006009 +102744 A0:n48004006009 +102765 A0:n48003027005 A1:n48004008006 +102767 A0:n48003027005 A1:n48004008012 +102771 A0:n00000000000 +102775 A0:n48003027005 A1:n48004009004 +102779 A1:n48003027005 +102783 A0:n48003027005 +102794 A0:n48003027005 A1:n48004009019 +A0:n48003027005 A1:n48004009022 +A0:n48003027005 A1:n48004010001;n48004010004;n48004010006;n48004010008 +102804 A0:n48001001001 A1:n48004011002 +102809 A0:n48001001001 +102812 A0:n48003027005 +102820 A0:n48001001001 A1:n48004012010 +102824 A0:n48004012008 A1:n48004012012 +102826 A0:n48004012008 +102832 A0:n48001001001 A1:n00000000000 A2:n48004013009 +102845 A0:n48004012008 A1:n48004014003 +102847 A0:n48004012008 A1:n48004014003 +102852 A0:n48004012008 A1:n48004014018 +102863 A0:n48001001001 A2:n48004015008 +102871 A0:n48004012008 A1:n48004015013 +A0:n48004012008 A1:n48004015013 A2:n48004015017 +102878 A0:n48001001001 A1:n00000000000 A2:n48004016006 +102880 A0:n48002004005 A1:n48004017002 +102885 A0:n48002004005 A1:n48004017007 +102887 A0:n48002004005 A1:n48004017006 +102890 A0:n48004012008 A1:n48004017010 +102893 A0:n48004012008 +102902 A0:n48004018013 +102910 A0:n48001001001 A1:n48004019003 +102913 A1:n48004019009 +102918 A0:n48001001001 A1:n48004020003;n48004020008 +A0:n48001001001 +102924 A0:n48001001001 A1:n48004020010 +102929 A0:n48001001001 +102932 A0:n48004019001 A2:n48004021002 +102938 A0:n48004019001 A1:n48004021005 +102942 A0:n48004021006 A1:n48004021009 +102944 A1:n48004022007 +102947 A0:n48004022004 A1:n48004022006 +102967 A1:n48004023002 +102978 A1:n48004022007;n48004023009;n48004023010 +102991 A0:n48004024009 +103005 A0:n48004025003 +103010 A0:n48004025014 +103026 A1:n48004027003;n48004027008;n48004027010;n48004027015 +A1:n48004027004 +103031 A0:n48004027004 +A0:n48004027013 +103034 A0:n48004027013 +103037 A0:n00000000000 +103047 A0:n00000000000 A1:n48004027025 +103064 A1:n48004023002 +A0:n48004029007 A1:n48004029009 +103074 A1:n48004030002 A0:n48004030005 +103077 A0:n00000000000 A1:n48004030008;n48004030011 +103087 A0:n48004030018 +103110 A1:n48005001003 A0:n48005001004 +103112 A0:n48004031002 +103118 A1:n48004031002 +A0:n48004031002 +103122 A0:n48005002002 A2:n48005002005 +103126 A1:n48004031002 +103130 A0:n48005002009 A2:n48005002010 A1:n48005002011 +103132 A0:n48005002003 A2:n48005003005 +103136 A1:n48005003005 +103143 A0:n48005003005 A1:n48005003012 +A1:n48005004007 +103150 A1:n48005004004 +103153 A0:n48005004007 +103161 A0:n48005005001 A1:n48005005006 +103171 A0:n48005006006;n48005006010 A1:n48005006007 +103176 A0:n48005006012 +A0:n48005004007 +103180 A0:n48005007003 A1:n48005007009 +103184 A1:n48005007004 +103190 A0:n48004014016 A1:n48005008007 +103197 A0:n48005009002 A1:n48005009005 +103199 A0:n48005010001 +103207 A0:n48005004007 A1:n48005010009 +103210 A0:n00000000000 A1:n48005010014 +103212 A0:n48005010013 A1:n48005010017 +103224 A0:n48005011001 A1:n48005011005 +103227 A1:n48005002003 +103229 A1:n48005011014 +103234 A0:n48005002003 +103236 A0:n48005012005 +103238 A0:n48002004005 A1:n48005012006 +103244 A1:n48005013001 +103258 A0:n48005013006 A1:n48005013020 +103264 A1:n48005014004 +103270 A0:n00000000000 A1:n48005014013 +103279 A0:n48005013006 A1:n48005015003 +103281 A0:n48005013006 A1:n48005015003 +A0:n48005013006 +103286 A1:n48005013006 +103288 A0:n48005002003 +103290 A0:n48005013006 +103296 A0:n48005013006 A1:n48005016006 +103300 A0:n48005017003 +103313 A0:n48005017014 A1:n48005017016 +103318 A0:n48005013006 A1:n48005017020 +103320 A0:n48005013006 A1:n48005017023 +103324 A1:n48005013006 +103358 A0:n48005002003 A1:n48005021008 A2:n48005021010 +103361 A0:n48005002003 +103366 A0:n00000000000 A1:n48005021016 +103370 A0:n48005021017 A1:n48005021018 +103399 A0:n48005024001 A1:n48005024007 +103407 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48005013006 +103411 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48005013006 +103416 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48005013006 A1:n48005026004 +103418 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48005013006 A1:n48005026006 +103422 A1:n48006001005 +103430 A0:n48006001009 A1:n48006001014 +103436 A0:n48006001011 A1:n48006001019 +103441 A1:n48006001022 +103445 A0:n48006001011 A1:n48006002003 +103448 A0:n48006001011 A1:n48006002009 +103455 A0:n48006003004 A1:n48006003006 +103461 A0:n48006003004 A1:n48006003010 +103467 A1:n48006004003 A0:n48006004006 +103476 A0:n48006004006 A1:n48006004013 +103487 A0:n48006005001 A1:n48006005005 +103489 A0:n48006006004 +103491 A1:n00000000000 A1:n48006006006 +103495 A0:n00000000000 +103500 A1:n48006001011 +103503 A1:n48006007003 +103507 A1:n48006007006 A0:n48006007010 +103511 A0:n48006007010 A1:n48006007011 +103514 A0:n00000000000 +103522 A0:n48006008003 A1:n48006008012 +103526 A0:n00000000000 +103533 A0:n48006008015 A1:n48006008023 +103539 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48006001011 A1:n48006009003 +103541 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48006001011 +103545 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48006001011 +103547 A1:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48006001011 +103552 A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48006001011 A1:n48006010004 +A0:n48005002003;n48001002006;n48003022018;n48002013007;n48002013010;n48002014014;n48006001011 A1:n48006010008 +103565 A0:n48006001011 +103569 A0:n48005002003 A2:n48006011003 +103574 A0:n48006012001 A1:n48006012003 +A0:n48006012001 +103579 A0:n48006012006 A1:n48006012009 +103581 A1:n48006012008 +103589 A1:n48006012002 +103593 A1:n48006012002 +103596 A0:n48006013004 A1:n48006013006 +103598 A0:n48006013004 A1:n48006013011 +103600 A1:n48006013010 +103606 A0:n48006013004 +103611 A0:n00000000000 +103644 A0:n48006016002 +103661 A1:n48006017003 A2:n48006017004 A0:n48006017005 +103672 A0:n48006017007 A1:n48006017010 +103727 A0:n49001003003 A1:n49001003013 +103739 A0:n49001003003 A1:n49001004003 +103755 A0:n49001003003 A1:n49001005002 +103777 A0:n49001003003 A1:n49001006007 A2:n49001006009 +103781 A1:n49001005006 +103784 A0:n49001001001;n49001001009 A1:n49001007005 +103802 A0:n49001003003 A1:n49001008001 +103810 A0:n49001003003 A2:n49001009002 A1:n49001009004 +103822 A0:n49001003003 A1:n49001009012 +103831 A0:n49001003003 A1:n49001010009 +103851 A1:n49001001001;n49001001009 +A1:n49001001001;n49001001009 +103858 A0:n49001003003 A1:n49001011010 +103867 A0:n49001012004 +103874 A0:n49001001001;n49001001009 +103882 A0:n49001001009 A1:n49001013007 +103895 A0:n49001001009 +A1:n49001013004 +103921 A0:n49001001001 A1:n49001015008;n49001015015 +103939 A0:n49001015003 A1:n49001016003 +A0:n49001001001 +103944 A0:n49001001001 A1:n49001016006 +103961 A0:n49001017003 A2:n49001017014 A1:n49001017015 +103970 A1:n49001018003 +103978 A0:n49001018010 A1:n49001018011;n49001018018;n49001019002 +104001 A0:n49001019005 +104009 A0:n49001001001;n49001001009;n49001018028 +104019 A0:n49001017003 A1:n49001020001 +104023 A0:n49001017003 A1:n49001020007 +104028 A0:n49001017003 +104047 A1:n49001021012 +104058 A0:n49001021018 +104061 A0:n49001017003 A1:n49001022002 +104068 A0:n49001017003 A1:n49001022009 A2:n49001022015 +104086 A0:n49001020005 A1:n49001023010 +104100 A0:n49001001009 +104118 A0:n49002002019 +104129 A1:n49002003004 +104137 A0:n49001001001;n49001001009;n49001018028 A1:n49002003016 +104167 A0:n49002004003 A1:n49002004015 +104175 A0:n49002004003 +104180 A1:n49001001009 +104182 A0:n49002004003 +104184 A0:n49002004003 +104192 A0:n49002004003 A1:n49002007010 +104197 A0:n49002007005 +104199 A0:n49002007010 +104215 A1:n49001001009 +104232 A0:n49002009006 +104237 A1:n49001001001;n49001001009;n49001018028 +104245 A1:n49002010012 A0:n49002010015 +104251 A0:n49001001001;n49001001009;n49001018028 +104253 A0:n49001001009 +104266 A0:n00000000000 +104278 A1:n49001001009 +104291 A0:n49001001009 A1:n49002012019 +104321 A0:n49002013017 A1:n49002014010 +104332 A0:n49002013017 A1:n49002014014 +104343 A0:n49002013017 A1:n49002015002 +104347 A0:n49002013017 A1:n49002015010 +104354 A0:n49002013017 A1:n49002015019 +104357 A0:n49002013017 A1:n49002016004 A2:n49002016009 +104368 A0:n49002013017 A1:n49002016015 +104374 A0:n49002013017 +A0:n49002013017 A1:n49002017004 A2:n49002017005 +104387 A1:n49002018006 A0:n49002018008 +104414 A1:n49001001009 +104431 A1:n49002021004 +A0:n49002021004 +104442 A1:n49002022004 +104464 A0:n49003001013 A1:n49003002005 +104472 A1:n49003002007 A2:n49003002012 +104479 A2:n49003003005 A1:n49003003007 +104484 A0:n49003001004 +104489 A0:n49003001013 A1:n49003004005 +A0:n49003001013 +A0:n49003001013 A1:n49003004007 +104504 A1:n49003005001 A2:n49003005007 +104511 A1:n49003006004;n49003006006;n49003006008 +104547 A1:n49003007008 A2:n49003007013 +104560 A2:n49003008001 A1:n49003008008 +104566 A0:n49003008003 A2:n49003008011 A1:n49003008015 +104573 A0:n49003008003 A1:n49003009003 +104580 A1:n49003009007 +104590 A0:n49003009015 A1:n49003009018 +104592 A2:n49003010005;n49003010008 A1:n49003010017 +104615 A0:n49003010019 A1:n49003011005 +104625 A0:n49003008003;n49003001013;n49003008005 A1:n49003012005;n49003012007 +104637 A0:n49003008003 A1:n49003013004 +104639 A0:n49003001013 +104652 A0:n49003008003 A1:n49003014005 +104668 A1:n49003015004 +104670 A0:n49003014009 A2:n49003016003 A1:n49003016011 +104679 A1:n49003001013 +104688 A0:n49003017003 +104700 A1:n49003001013 +104702 A1:n49003001013 +104704 A0:n49003001013 A1:n49003018003;n49003019001 +A0:n49003001013 A1:n49003018008 +104720 A0:n49003001013 A1:n49003019007 +104722 A0:n49003019007 A1:n49003019006 +104729 A1:n49003001013 +104738 A0:n49003019017 A1:n49003020006 +A0:n49003020003 +104744 A0:n49003008003;n49003001013;n49003018007 A1:n49003020008 +104746 A0:n49003008003;n49003001013;n49003018007 A1:n49003020008 +104751 A0:n49003020014 +104774 A2:n49004001003 A0:n49004001004 A1:n49004001010 +104782 A0:n49003001013 +104786 A1:n49003001013 +104794 A0:n49003001013 A1:n49004002009 +104798 A0:n49003001013 A1:n49004003002 +A0:n49003001013 A1:n49004003004 +104816 A1:n49003001013 +104847 A2:n49004007001 A1:n49004007007 +104858 A0:n00000000000 +A0:n49004007014 +104862 A0:n49004007014 A1:n49004008007 +104864 A0:n49004007014 A1:n49004008009 A2:n49004008011 +104870 A0:n49004007014 +104877 A0:n49004007014 +104885 A0:n49004007014 +104890 A0:n49004007014 +104896 A0:n49004007014 A1:n49004010015 +104901 A0:n49004011002 A1:n49004011006;n49004011009;n49004011012;n49004011015;n49004011017 +104931 A0:n49004013004 +104960 A0:n49004001006;n49003001013;n49004012005 +104962 A1:n49004001006;n49003001013;n49004012005 +104980 A0:n49004001006;n49003001013;n49004012005 +104983 A0:n49004001006;n49003001013;n49004012005 +104998 A1:n49004016005 +105000 A1:n49004016005 +105017 A0:n49004016005 A1:n49004016022 +105025 A0:n49004001006 A1:n49004017001 +105027 A0:n49004001006 A1:n49004017010 +105032 A0:n49004017009 +105037 A0:n49004017014 +105043 A1:n49004017014 +105047 A1:n49004017014 +105066 A0:n49004017014 +105068 A0:n49004019001 A1:n49004019003 A2:n49004019006 +105081 A0:n49004020001 A1:n49004020007 +105087 A0:n49003001013 A1:n49004021003 +105091 A1:n49003001013 A1:n49004022001;n49004023001;n49004024002 +105098 A0:n49004022002 A1:n49004022009 +105108 A1:n49004022009 +105115 A1:n49003001013 +105122 A0:n49003001013 A1:n49004024005 +105129 A1:n49004024005 +105137 A0:n49003001013 A1:n49004025004 +105140 A0:n49003001013 A1:n49004025006 +105151 A0:n49003001013 +105154 A0:n49003001013 +105158 A0:n49004026006 +105163 A0:n49003001013 A1:n49004027003 A2:n49004027005 +105168 A0:n00000000000 +105170 A0:n49004028002 +105173 A0:n49004028002 +A0:n49004028002 A1:n49004028013 +105181 A0:n49004028002 A1:n49004028016 +A0:n49004028002 A1:n00000000000 A2:n49004028019 +105185 A0:n00000000000 A1:n49004028018 +105194 A0:n49004029002 +105204 A0:n49004029012 A1:n49004029020 A2:n49004029022 +105207 A0:n00000000000 +105210 A0:n49003001013 A1:n49004030005 +105219 A1:n49003001013 +105233 A1:n49004031002;n49004031004;n49004031006;n49004031008;n49004031010 +105245 A0:n49003001013 A1:n49004032008 +105253 A0:n49004032012 A1:n49004032016 +105264 A0:n49003001013 +105271 A0:n49005002008 A1:n49005002010 +105274 A0:n49005002008 A1:n49005002013 +105294 A1:n49005003001;n49005003004;n49005003007 +105298 A0:n49005003009 +105308 A0:n49005004007 +105314 A0:n49003001013 A1:n49005005001 +A0:n49003001013 +105327 A0:n49005005007;n49005005009;n49005005011 A1:n49005005017 +105338 A0:n49005006001 A1:n49005006002 +105344 A0:n49005006011 +105371 A0:n49003001013 +105384 A0:n49003001013 A1:n49005010004 +105392 A0:n49003001013 +105402 A0:n49003001013 +105406 A0:n00000000000 +105412 A0:n49003001013 +105416 A1:n49005013003 +105420 A1:n49005013003 +105428 A0:n00000000000 +A0:n49005014011 +105431 A0:n00000000000 +105433 A0:n49005014011 +105438 A0:n49005014021 +105443 A0:n49003001013 A1:n49005015005 +105446 A0:n49003001013 +105453 A0:n49003001013 A1:n49005016003 +105467 A0:n49003001013 A1:n49005017008 +105475 A1:n49003001013 +105482 A1:n49003001013 +105485 A0:n49003001013 A2:n49005019002 +105493 A0:n49003001013 A1:n00000000000 A2:n49005019016 +105495 A0:n49003001013 A1:n00000000000 A2:n49005019017 +105501 A0:n49003001013 A1:n49005020013 +105516 A1:n49003001013 A2:n49005021002 +105550 A1:n49005024004 A2:n49005024007 +105563 A0:n49005025002 A1:n49005025005 +105570 A0:n49005025009 A1:n49005025012 +105575 A0:n49005025009 A1:n49005025014 +105580 A0:n49005025009 A1:n49005026002 +A0:n49005025009 +105589 A0:n49005027003 A2:n49005027004 A1:n49005027007 +105596 A0:n49005027007 A1:n49005027010;n49005027012;n49005027014 +105611 A0:n49005028005 A1:n49005028006 +105615 A0:n49005028005 A1:n49005028009 +105624 A0:n00000000000 A1:n49005028018 +105629 A0:n49005028015 A1:n49005028019 +105636 A0:n49005029001 A1:n49005029006 +105638 A0:n49005029001 A1:n49005029012 +105640 A0:n49005029001 A1:n49005029012 +105656 A0:n49005031004 A1:n49005031006;n49005031009 +105664 A1:n49005031004 +105683 A0:n49005032006 +105701 A0:n49005033003 A1:n49005033010 +105708 A0:n49005033017 A1:n49005033021 +105713 A0:n49006001002 A1:n49006001005 +105723 A0:n00000000000 A1:n49006002003;n49006002007 +105739 A0:n00000000000 +105741 A0:n00000000000 +105750 A0:n49006004003 A1:n49006004007 +105755 A0:n49006004003 A1:n49006004011 +105764 A0:n49006005002 A1:n49006005007 +105790 A0:n49006005002 A1:n49006006012 +105799 A0:n49006005002 +105806 A0:n49006005002 +105812 A0:n49006008003 A1:n49006008005 +105814 A0:n49006008003 A1:n49006008008 +105826 A0:n49006009003 A1:n49006009005 +105829 A0:n49006009003 A1:n49006009011 +105832 A0:n49006009003 +105851 A1:n49003001013 +105861 A0:n49003001013 A1:n49006011003 +105868 A0:n49006011009 A1:n49006011010 +105870 A0:n49003001013 +105909 A0:n49003001013 A1:n49006013005 +105915 A1:n49003001013 A1:n49006013010;n49006013019 +A0:n49003001013 +105924 A0:n49003001013 A1:n49006013017 +A0:n49003001013 +105927 A0:n49003001013 +A0:n49003001013 A1:n49006014005 +105935 A0:n49003001013 A1:n49006014012 +105941 A0:n49003001013 A1:n49006015004 +105952 A0:n49003001013 A1:n49006016005 +105959 A0:n49003001013 A1:n49006016018 +105966 A1:n49006016013 +A0:n49003001013 A1:n49006016013 +105969 A0:n49003001013 A1:n49006017003;n49006017009 +105988 A0:n49003001013 +105997 A0:n49003001013 +106012 A2:n49006019005 A1:n49006019007 +106021 A0:n49004001006 A1:n49006019017 +106028 A0:n49004001006 +106034 A0:n49004001006 +106036 A0:n49006020013 +106038 A0:n49006020012 +106041 A0:n49006021005 A1:n49006021006 +106048 A0:n49004001006 A1:n49006021009 +106050 A1:n49006021011 A2:n49006021013 A0:n49006021014 +106062 A0:n49004001006 A1:n49006022001 +106069 A0:n49003001013 A1:n49006022010 +106074 A0:n49006021014 A1:n49006022016 +106097 A0:n00000000000 A1:n49006024008 +106118 A0:n00000000000 +106137 A0:n50001001001 A1:n50001003003 +106158 A0:n50001001001 A1:n50001004012 +106173 A0:n50001001001 A1:n50001006003 +106178 A0:n00000000000 A1:n50001006009 +106183 A0:n50001006006 +106193 A0:n50001001001 A1:n50001007005 +106199 A0:n50001007013 A1:n50001007017 +106231 A0:n50001001001 A1:n50001008009 +106240 A0:n50001001001 A1:n50001009002 +106249 A0:n50001009006 +106257 A0:n50001010004 A1:n50001010006 +106260 A0:n00000000000 +106269 A1:n50001001009 +106283 A0:n50001001001 A1:n50001012001 +A0:n50001012003 +106295 A0:n50001012007 +106319 A0:n50001014003 +106324 A0:n50001014003 A1:n50001014019 +106345 A0:n50001015008 A1:n50001015014 +106350 A0:n50001015008 +106356 A0:n50001001001 +106363 A0:n50001017001 A1:n50001017006 +106366 A0:n50001015001 A1:n50001017012 +106368 A0:n50001015001 A1:n50001017011 +106383 A1:n50001018011 +106387 A0:n50001001001 +106390 A1:n50001001001 +106392 A0:n50001001001 +106396 A0:n50001019004 +106418 A1:n50001001001 +106427 A1:n50001020020 +106442 A0:n00000000000 +106446 A0:n00000000000 +106451 A0:n00000000000 +106460 A0:n50001001001 A1:n50001022012 +106462 A0:n50001001001 A1:n50001022013 +106464 A1:n50001001001 +106470 A0:n50001001001 A1:n50001023007 +106473 A0:n50001001001 +106484 A0:n50001001001 +106492 A0:n50001001001 A1:n50001025002 +A0:n50001001001 +106495 A0:n50001001001 +106497 A0:n50001001001 +106512 A0:n50001026003 +106531 A0:n50001012005 +106534 A0:n50001001001 +106536 A0:n50001001001 A1:n50001027013 +106539 A0:n50001001001 +A0:n50001001001 A1:n50001027017 +106545 A0:n50001012005 +106551 A0:n50001012005 +106558 A1:n50001012005 +106563 A0:n00000000000 +106578 A2:n50001029002 A1:n50001029004 +106587 A0:n50001012005 +106593 A0:n50001012005 +A0:n50001012005 A1:n50001030003 +106599 A0:n50001012005 A1:n50001030005 +106604 A0:n50001012005 +106626 A0:n50001012005 A1:n50002002004 +106633 A0:n50001012005 A1:n50002002007 +106637 A0:n50001012005 A1:n50002002011 +106641 A0:n50001012005 A1:n50002002015 +106652 A0:n50001012005 A1:n50002003010 +A0:n00000000000 +106659 A0:n50001012005 A1:n50002004002 +106666 A0:n50001012005 A1:n50002005001 +106678 A0:n50002005008 +106681 A0:n50002006001 A1:n50002006011 +106688 A0:n50002005008 A1:n50002007002 +106691 A0:n50002005008 A1:n50002007004 +106698 A1:n50002005008 +106701 A0:n50002005008 A1:n50002008002 +106715 A0:n50002009004 A1:n50002009005 +106717 A0:n50002009004 A2:n50002009009 A1:n50002009011 +106730 A0:n50002010007 +106741 A0:n50002011003 A1:n50002011006 +106755 A0:n50002012002 +106778 A0:n50002012002 A1:n50002012028 +106783 A0:n00000000000 A1:n50002013010;n50002013013 +106788 A0:n50002012002 +106791 A0:n50002012002 +106796 A0:n50002012002 A1:n50002014001 +106813 A1:n50002015010 +106816 A0:n50002012002 +106823 A0:n50002012002 A1:n50002016001 +106834 A0:n50001001001 +106838 A0:n50001001001 +106842 A1:n50001001001 +106851 A0:n50001001001 +106853 A0:n50001001001 +106861 A0:n50002018005 +106863 A0:n50002012002 +106866 A0:n50001001001 A1:n50002019008 +106872 A0:n50001001001 A1:n50002019006 A2:n50002019009 +106876 A0:n50002019011 +A0:n50001001001 A1:n50002019014 +106884 A0:n50001001001 A1:n50002020001 +106890 A0:n50002020005 A1:n50002020007 +106896 A0:n50002021002 A1:n50002021004 +106905 A0:n50002012002 A1:n50002022003 +106912 A0:n50002019006 +106918 A0:n50001001001 A1:n50002023005 +106920 A0:n50001001001 A1:n50002023001 +106923 A0:n50001001001 A1:n50002023009 +106929 A0:n50001001001 +106936 A0:n50002024007 +106938 A0:n50001001001 A1:n50002025001 A2:n50002025020 +106956 A0:n50001001001 A1:n50002025004 +106960 A0:n50002025004 A1:n50002026005 +106965 A0:n50002025004 +106967 A0:n50002012002 +106969 A0:n50002025004 +106972 A0:n50002025004 +106978 A0:n50002027008 A1:n50002027010;n50002027011;n50002027012;n50002027017 +106992 A0:n50001001001 A1:n50002027020 +106995 A0:n50001001001 A1:n50002028004 +106998 A0:n50002012002 A1:n50002028007 +107001 A1:n50002012002 +107006 A0:n50002012002 A1:n50002029003 +107017 A0:n50002012002 A1:n50002029011 +107025 A0:n50002025004 +A0:n50002025004 +107030 A0:n50002025004 A1:n50002030016 +107042 A0:n50003001003 +107047 A0:n50001001001 A1:n50003001009 A2:n50003001011 +107056 A0:n50003001003 A1:n50003002003 +107059 A0:n50003001003 A1:n50003002007 +107063 A0:n50003001003 A1:n50003002010 +107074 A0:n00000000000 +107076 A0:n00000000000 +107084 A0:n00000000000 +107087 A0:n50003004002 A1:n50003004004 +107095 A0:n50003004009 A1:n50003004012 +A0:n50003004009 +107116 A0:n50001001001 A1:n50003006005 +107132 A0:n50001001001 A1:n50003007006 +107142 A0:n50001001001 A1:n50003008008 +107148 A0:n00000000000 +107160 A1:n50001001001 A1:n50003008023 +107162 A0:n50001001001 A1:n50003008023 +107168 A1:n50001001001 +107171 A0:n50001001001 A1:n50003009005;n50003009008;n50003009013 +107191 A0:n50001001001 A1:n50003010003;n50003010006;n50003010012 +107203 A1:n50001001001 A2:n50003010016 +107209 A0:n50001001001 +107219 A0:n50001001001 +107222 A1:n50001001001 +107224 A0:n50001001001 +107227 A0:n50001001001 A1:n50003012016 +107231 A1:n50001001001 +107238 A0:n50003013002 A1:n50003013006 +107240 A0:n50003013003 +107246 A0:n50001001001 A1:n50003013011 +107250 A0:n50001001001 AA2:n50003013015 +107253 A0:n50001001001 +107269 A0:n50001001001;n50002019006;n50002025004;n50003001003 A0:n50003015003 A1:n50003015004 +107274 A0:n50003013001 A1:n50003015008 +107280 A1:n50003015012 A0:n50003015014 A2:n50003015015 +107284 A0:n50001001001;n50002019006;n50002025004;n50003001003 A1:n50003016003 +107287 A0:n50001001001;n50002019006;n50002025004;n50003001003 AA2:n50003016006 +107293 A0:n50003017004 A1:n50003017009 +107296 A0:n00000000000 +107298 A0:n50003017004 A1:n50003017013 +107303 A0:n50003018001 +107306 A0:n50001001001 A1:n50003018004 A2:n50003018007 +107311 A0:n50001001001 +A0:n50001001001 A1:n50003018014 +107338 A0:n00000000000 A1:n50003019019 +107345 A0:n50003020004 +107349 A0:n50001001001;n50002019006;n50002025004;n50003013001 A1:n50003020011 +107355 A0:n50003021001 A1:n50003021004 +107371 A0:n50003021019 A1:n50003021021 +107374 A0:n50003020011 A2:n50003021022 A1:n50003021024 +107389 A0:n50004001002 +107394 A0:n50001001001 A1:n50004002001 +107397 A0:n50001001001 A1:n50004002004 +107400 A0:n50004002001;n50004002004 A1:n50004002007 +107404 A0:n50001001001 A1:n50004003004 +107409 A0:n50004003006 +107415 A0:n50004003009 +107431 A0:n50004001015 +107436 A0:n50001001001 +A0:n50004001015 +107441 A1:n50004005002 A2:n50004005006 +107448 A0:n50004001015 A1:n50004006001 +107462 A1:n50004006014 +107472 A0:n00000000000 A1:n50004007009 +107475 A0:n50004007003 A1:n50004007012;n50004007016 +107510 A0:n50004008003 A1:n50004008024 +107513 A0:n50004008003 A1:n50004009001 +107515 A0:n50004008003 A1:n50004009001 +107517 A0:n50004008003 A1:n50004009001 +107519 A0:n50004008003 A1:n50004009001 +107523 A0:n50004008003 A1:n50004009012 +107533 A1:n50001001001 +107540 A0:n50004008003 +107544 A0:n50004008003 A1:n50004010010 +107548 A0:n50004008003 +107550 A0:n50004008003 +107555 A0:n50001001001 +107558 A0:n50004011006 A1:n50004011012 +107564 A0:n50001001001 A1:n50004012003 +107566 A1:n50001001001 +A0:n50001001001 A1:n50004012006 +107569 A0:n50001001001 +107575 A1:n50001001001 +107577 A1:n50001001001 +107579 A0:n50001001001 +107581 A0:n50001001001 +107583 A1:n50001001001 +107585 A0:n50001001001 A1:n50004013001 +107588 A0:n00000000000 A1:n50004013006 +107592 A0:n50004008003 +A0:n50004008003 +107599 A0:n50004015004 +107604 A0:n50001001001 +107614 A0:n50004015017 +107636 A0:n50004015005 +107639 A0:n50001001001 A1:n50004017005 +107643 A0:n50001001001 A1:n50004017009 +107647 A0:n00000000000 +107652 A0:n50001001001 A1:n50004018003 +107655 A0:n50001001001 +A1:n50001001001 +A0:n50001001001 A1:n50004018010 +107674 A0:n50004019003 A1:n50004019007 +107701 A0:n50004015005 A1:n50004021003 +107707 A1:n50004021008 A0:n50004021012 +107713 A1:n50004022002 A0:n50004022005 +107763 A0:n51001001001;n51001001009 A1:n51001003003 +107775 A0:n51001001001;n51001001009 +A0:n51001001001;n51001001009 A1:n51001004003;n51001004010 +107787 A0:n51001002007 A1:n51001004011 +107796 A0:n51001005003 +107802 A0:n51001002007 A1:n51001005010 +107811 A0:n51001005018 +107821 A0:n51001005014 +107823 A1:n51001005014 +107831 A0:n51001002007 +107833 A0:n51001002007 A1:n51001006026 +107841 A0:n51001002007 +107858 A0:n51001007014 A2:n51001008004 A1:n51001008007 +107872 A0:n51001001001;n51001001009 +107874 A0:n51001009004 A1:n51001009013;n51001009015 +107877 A0:n51001001001;n51001001009 +107879 A0:n51001001001;n51001001009 +107881 A1:n51001002007 +107893 A0:n51001002007 +107904 A0:n51001002007 +107906 A1:n51001002007 +107914 A1:n51001002007 +107928 A0:n51001002007 A1:n51001012003 +107932 A0:n51001012003 A1:n51001012006 +107945 A0:n51001013001 A1:n51001013003 +107953 A0:n51001012003 +107964 A0:n51001001001;n51001001009;n51001007004;n51001002007 A1:n51001014005 +107984 A1:n51001016006 +108014 A1:n51001016028 +108025 A0:n51001017008 +108047 A0:n51001013015 +108049 A0:n51001015005 A1:n51001019008;n51001020004 +108055 A0:n51001019007 +108059 A0:n51001015005 A1:n51001020006 +108064 A0:n51001015005 +108087 A1:n51001002007 +108099 A0:n51001015005 +108109 A0:n51001015005 A1:n51001022014 +108120 A0:n51001002007 +108123 A1:n51001002007 +108128 A1:n51001002007 +108135 A0:n51001002007 A1:n51001023017 +108137 A1:n51001023016 +108151 A0:n51001023031 +108158 A0:n51001023031 A1:n51001024011 +108187 A1:n51001025007 A2:n51001025012 +108191 A0:n51001023031 A1:n51001025017 +108199 A1:n51001026002 +108209 A1:n51001026002 A2:n51001026016 +108214 A0:n51001027004 A1:n51001027005 +108217 A0:n51001027004 A1:n51001027006 +108240 A1:n51001028001 A0:n51001028002 +A0:n51001023031;n51001001009;n51001007004 A1:n51001028006 +108245 A0:n51001023031;n51001001009;n51001007004 A1:n51001028010 +108252 A0:n51001023031;n51001001009;n51001007004 A1:n51001028017 +108261 A0:n51001023031 +A0:n51001023031 +108268 A0:n51001029008 +108274 A0:n51001023031 A1:n51002001004 +108276 A0:n51002001003 A1:n51002001007 +108279 A0:n51001023031 A1:n51002001006 +108289 A0:n51002001015 A1:n51002001019 +108296 A1:n51002002004 +108300 A1:n51002002004 +108330 A0:n51001023031 A1:n51002004001 +108334 A0:n51002004004 A1:n51002004005 +108342 A0:n51001023031 +108349 A0:n51001023031 +108351 A0:n51001023031 A1:n51002005018;n51002005021 +108365 A0:n51001002007 A1:n51002006005 +108373 A0:n51001002007 +A1:n51001002007 +108376 A1:n51001002007 +108380 A1:n51001002007 +108384 A1:n51001002007 +A0:n51001002007 +108388 A0:n51001002007 +108393 A0:n00000000000 A1:n51002008004 +108418 A0:n51002009007 +108427 A1:n51001002007 +108441 A1:n51001002007 +108456 A1:n51001002007 +108464 A1:n51001002007 +108473 A0:n51002012016 A1:n51002012019 +108489 A0:n51002012016 A1:n51002013014 +108493 A0:n51002012016 A2:n51002013018 A1:n51002013021 +108498 A0:n51002012016 A1:n51002014005 +108511 A0:n51002012016 A1:n51002014013 +108515 A0:n51002012016 A1:n51002014019 A2:n51002014021 +108519 A0:n51002012016 A1:n51002015003;n51002015006 +108525 A0:n51002012016 +108528 A0:n51002012016 A1:n51002015011 +108536 A0:n51002016003 A1:n51002016004 +108554 A0:n00000000000 +108562 A0:n51002018001 A1:n51002018002 +A0:n51002018001 +108571 A0:n51002018001 A1:n51002018011 +A0:n51002018001 A1:n51002018012 +108574 A1:n51002018001 +108583 A0:n51002018001 A1:n51002019005 +108596 A1:n51002019010 +108598 A1:n51002019010 +A0:n51002019010 +108605 A0:n51001002007 +108615 A0:n51001002007 +108618 A1:n51001002007 +108620 A0:n00000000000 +108622 A0:n00000000000 +108624 A0:n00000000000 +108642 A0:n51002021002;n51002021004;n51002021006 A1:n51002023003 +108662 A1:n51001002007 +108667 A0:n51001002007 A1:n51003001007 +108672 A0:n51003001011 +108679 A0:n51001002007 A1:n51003002002 +108686 A0:n51001002007 +108691 A1:n51003003005 +108699 A1:n51003004003 +108710 A1:n51003004010 +108714 A0:n51001002007 A1:n51003005004 +108734 A0:n51003006005 +108743 A0:n51003007004 +108746 A0:n51001002007 +108751 A0:n51003008005 A1:n51003008007 +108766 A0:n51001002007 +108769 A0:n51001002007 A1:n51003009008 +108778 A0:n51001002007 A1:n51003010004 +108782 A1:n51003010004 +108788 A0:n00000000000 A1:n51003010013 +108810 A0:n51001002007 A1:n51003012010;n51003012012;n51003012013;n51003012014;n51003012015 +108817 A1:n51003012004 +108824 A0:n51001002007 A1:n51003013002 +108827 A0:n51001002007 A1:n51003013005 +108833 A0:n51003013007 A1:n51003013011 +108839 A0:n51003013015 A1:n51003013017 +108860 A0:n51003015003 +108868 A1:n51001002007 +108879 A0:n51003016002 +108886 A0:n51001002007 A1:n51003016015 +108888 A0:n51001002007 A1:n51003016015 +108897 A0:n51001002007 A1:n00000000000 A2:n51003016029 +108909 A0:n51001002007 A1:n51003017003 +108920 A0:n51001002007 A1:n51003017019 +108928 A1:n51003018002 A2:n51003018005 +108932 A0:n51003018003 +108937 A0:n51003019002 A1:n51003019005 +108942 A1:n51003019002 +108947 A0:n51003020002 A1:n51003020005 +108961 A0:n51003021002 A1:n51003021006 +108967 A0:n51003021006 +108970 A0:n51003022002 A1:n51003022009 +108986 A0:n51003022002 A1:n51003022021 +108991 A0:n51001002007 A1:n51003023001 +108994 A0:n51001002007 A1:n51003023003 A2:n51003023009;n51003023012 +109001 A0:n51001002007 +109005 A0:n51001002007 A1:n51003024007 +109013 A0:n51001002007 A1:n51003024011 +109016 A0:n00000000000 +A0:n51003025003 A1:n51003025006 +109019 A0:n51003025003 A1:n51003025005 +109033 A0:n51004001002 A1:n51004001004;n51004001007 A2:n51004001009 +A0:n51004001002 +109038 A0:n51004001014 A1:n51004001016 +109044 A0:n51001002007 A1:n51004002002 +A0:n51001002007 +109050 A0:n51001002007 +109058 A0:n51004003008 A1:n51004003011 +109063 A0:n51001023031;n51001001009;n51001007004 A1:n51004003016 +109071 A1:n51001023031 +109073 A0:n51001023031 A1:n51004004003 +109076 A0:n51004004007 +109078 A0:n51004004006 +109081 A0:n51001002007 +109087 A0:n51001002007 A1:n51004005008 +109095 A1:n51004006002 +A0:n51001002007 A1:n51004006011 +109098 A0:n51004006015 +109102 A0:n51004006012 +109107 A1:n51004007004 A2:n51004007006 A0:n51004007007 +109121 A0:n51001023031 A1:n51004008001 +109128 A0:n51001002007 A1:n51004008010 +109133 A0:n51004007007 A1:n51004008016 +109149 A0:n51004007007;n51004009002 A2:n51004009013 A1:n51004009016 +109153 A1:n51004010002 A0:n51004010003;n51004010008;n51004011002 +109166 A0:n51001002007 A1:n51004010015 +109169 A0:n51004010008 +109172 A0:n51001002007 A1:n51004010021 +109195 A1:n51004012002 A0:n51004012003 +109205 A0:n51004012003 +109212 A1:n51001002007 +109215 A1:n51001002007 +109222 A0:n51001023031 A2:n51004013003 +109225 A0:n51004012003 A1:n51004013007 +109238 A1:n51004014002 A0:n51004014003;n51004014009 +109247 A0:n51001002007 A1:n51004015005;n51004015007;n51004015013 +109262 A1:n51004016007 +109267 A0:n51001002007 +109274 A1:n51004016007 +109282 A1:n51004016017 A0:n51004016022 +109284 A0:n51001002007 A2:n51004017003 +109286 A0:n51004017003 A1:n51004017006 +109290 A0:n51004017003 A1:n51004017007 +109295 A0:n51004017003 A1:n51004017012 +109302 A0:n51001002007 A1:n51004018010 +109329 A0:n52001001001;n52001001003;n52001001005 A1:n52001002003 +109337 A0:n52001001001;n52001001003;n52001001005 A1:n52001002008 +109343 A0:n52001001001;n52001001003;n52001001005 A1:n52001003004;n52001003009;n52001003014 +109370 A0:n52001001001;n52001001003;n52001001005 A1:n52001004008 +109375 A1:n52001004002 +109383 A1:n52001005003 +109402 A0:n52001004002 A1:n52001005025 +109417 A0:n52001004002 A1:n52001006011 +109433 A0:n00000000000 +109444 A1:n52001008006 +109467 A0:n52001008021 +109471 A1:n52001008030 A0:n52001008032 +109473 A0:n52001001001;n52001001003;n52001001005 A1:n52001008034 +109479 A0:n52001009001 A1:n52001009008;n52001009013 +109482 A0:n52001001001;n52001001003;n52001001005 A1:n52001009007 +109487 A0:n52001004002 +109494 A0:n52001004002 A1:n52001009021 +109496 A0:n52001009021 +109500 A0:n52001004002 A1:n52001010004 +109508 A0:n52001009021 A1:n52001010009 +109514 A0:n52001010014 A1:n52001010017 +109520 A0:n52001010020 +109524 A0:n52002001001 A1:n52002001006 +109536 A0:n52001001001;n52001001003;n52001001005 +109538 A1:n52001001001;n52001001003;n52001001005 +109542 A0:n52002001004 +A0:n52001001001;n52001001003;n52001001005 +109548 A0:n52001001001;n52001001003;n52001001005 A1:n52002002018 +109573 A1:n52001001001;n52001001003;n52001001005 +109577 A1:n52001001001;n52001001003;n52001001005 A1:n52002004009 +109581 A0:n52001001001;n52001001003;n52001001005 +109583 A0:n52001001001;n52001001003;n52001001005 A1:n52002004012;n52002004014;n52002004017 +109589 A0:n52002004017 A1:n52002004021 +109601 A0:n52002001004 +109609 A0:n52001001001;n52001001003;n52001001005 A1:n52002006005 +109619 A0:n52001001001;n52001001003;n52001001005 A1:n52002007003 +109635 A0:n52002007016 A1:n52002007020 +109640 A0:n52001001001;n52001001003;n52001001005 A1:n52002008003 +109642 A0:n52001001001;n52001001003;n52001001005 A1:n52002008005 +A0:n52001001001;n52001001003;n52001001005 A2:n52002008006 A1:n52002008007;n52002008010;n52002008017 +109662 A0:n52002009003 A1:n52002009005;n52002009009 +109672 A0:n52001001001;n52001001003;n52001001005 +109676 A0:n52001001001;n52001001003;n52001001005 A1:n52002009018 +109679 A0:n52001001001;n52001001003;n52001001005 A1:n52002009024 +109699 A0:n52002009003 +109702 A0:n52002009003 +109711 A0:n52001001001;n52001001003;n52001001005 A1:n52002012002 +109713 A0:n52001001001;n52001001003;n52001001005 A1:n52002012002 +109715 A0:n52001001001;n52001001003;n52001001005 A1:n52002012002 +109719 A0:n52002012010 +109725 A0:n52002012013 A1:n52002012016 +109738 A0:n52002013005 A1:n52002013008 +109743 A0:n52002009003 A1:n52002013012 +109750 A0:n52002009003 A1:n52002013019;n52002013020;n52002013026 +109762 A0:n52002013028 +109766 A0:n52002009003 +109787 A1:n52002014020 A0:n52002014023 +109801 A0:n52002014033 A1:n52002015004;n52002015009 +109811 A0:n52002014033 A1:n52002015011 +109815 A0:n52002014033 A1:n52002015014 +109820 A0:n52002014033 A1:n52002016005 +109824 A0:n52002016002 A2:n52002016004 +109826 A1:n52002016004 +109829 A0:n52002014033 A1:n52002016013 +109835 A0:n52002016020 +109845 A1:n52001001001;n52001001003;n52001001005 +109855 A0:n52002017001 A1:n52002017018 +109859 A0:n52001001001;n52001001003;n52001001005 A1:n52002017016 +109864 A0:n52001001001;n52001001003;n52001001005 A1:n52002018003 +A0:n52001001001;n52001001003;n52001001005 +109876 A1:n52002018015 A0:n52002018017 +109913 A0:n52001001003;n52002018008 +A0:n52001001003;n52002018008 A1:n52003001005 +A1:n52001001003;n52002018008 +109920 A0:n52001001003;n52002018008 A1:n52003002003 +109936 A0:n52003002003 A1:n52003002019 +109938 A0:n52003002003 A1:n52003002019 +109946 A1:n52003003002 +109953 A0:n52003003008 +109957 A0:n52001001003;n52003002003;n52002018008 +109964 A0:n52001001003;n52003002003;n52002018008 A2:n52003004008 +109967 A0:n52001001003;n52003002003;n52002018008 A1:n52003004011 +A1:n52001001003;n52003002003;n52002018008 +109971 A0:n52003004010 +109973 A0:n52002017003 +109978 A0:n52002018008 +A0:n52003005003 +109982 A0:n52002018008 A1:n52003005011 +109988 A1:n52003005016 A0:n52003005018 +109991 A0:n00000000000 +110001 A0:n52003006004 +110008 A0:n52003006004 A2:n52003006011 A1:n52003006013;n52003006016;n52003006020 +110018 A0:n52002017003 A1:n52003006021 +110023 A0:n52002017003 A1:n52003006027 +110025 A0:n52002017003 A1:n52003006026 +110033 A1:n52001001003;n52002018008 +110049 A0:n52001001003;n52003006004;n52002018008 +110052 A0:n52003008005 +110056 A0:n52001001003;n52003006004;n52002018008 A1:n52003009007 +110061 A0:n52001001003;n52003006004;n52002018008 A1:n52003009003 A2:n52003009006 +110069 A0:n52001001003;n52003006004;n52002018008 +110080 A0:n52001001003;n52003006004;n52002018008 +110083 A0:n52001001003;n52003006004;n52002018008 A1:n52003010011 +110088 A0:n52001001003;n52003006004;n52002018008 A1:n52003010015 +110106 A0:n52003011004;n52003011006;n52003011010 A1:n52003011015 +110116 A1:n52003012001 A0:n52003012004 +110118 A1:n52003012001 A0:n52003012004 +110133 A0:n52003012004 A1:n52003013006 +110161 A0:n52001001003;n52003006004;n52002018008 A1:n52004001005 +110163 A0:n52001001003;n52003006004;n52002018008 A1:n52004001005 +110170 A0:n52004001003 A1:n52004001018 +110175 A0:n52004001020;n52004001022 +110177 A0:n52004001019 +110179 A0:n52004001003 A1:n52004001023 +110183 A0:n52004001003 +110185 A0:n52004001003 +110188 A0:n52004001003 A1:n52004002005 +110191 A0:n52001001003;n52003006004;n52002018008 A1:n52004002004 A2:n52004002006 +110206 A0:n52004003011 +110211 A0:n52004004002 A1:n52004004007 +110217 A0:n52004004002 A1:n52004004006 +110232 A0:n52004005008 A1:n52004005013 +110237 A0:n52004004002 A1:n52004006010 +110239 A0:n52004004002 A1:n52004006010 +110254 A0:n52001001003;n52003006004;n52002018008 A2:n52004006021 +110257 A0:n52001001003;n52003006004;n52002018008 +110260 A1:n52004007004 A0:n52004007006 +110271 A0:n00000000000 +A0:n52004008003 A1:n52004008004;n52004008005;n52004008009 +110280 A0:n52004008009 A1:n52004008014 +110294 A0:n52004001003 A1:n52004009006 +A0:n52002018008;n52001001003;n52003006004 A2:n52004009009 +110304 A0:n52004001003 A1:n52004009018 +110308 A0:n52004001003 A1:n52004010004 +110320 A0:n52001001003;n52003006004;n52002018008 A1:n52004010018;n52004011002;n52004011005;n52004011009 +110322 A0:n52004010016 +110325 A0:n52004010016 A1:n52004011003 +A0:n52004010016 +110328 A0:n52004010016 A1:n52004011007 +110332 A0:n52004010016 +110338 A0:n52001001003;n52003006004;n52002018008 A2:n52004011014 +110340 A0:n52004010016 +110348 A0:n52004010016 A1:n52004012009 +110352 A0:n52001001003;n52003006004;n52002018008 A1:n52004013005 +110354 A0:n52004013004 +110357 A0:n00000000000 +110360 A1:n52004013006 +110367 A0:n52004013016 A1:n52004013020 +110371 A0:n52001001003;n52003006004;n52002018008;n52004013006 +110374 A0:n52004014005 +110376 A0:n52004014005 +110382 A1:n00000000000 +110386 A0:n52004014012 A1:n52004014014 +110392 A0:n52001001003;n52003006004;n52002018008 A1:n52004015001 A2:n52004015003 +110399 A0:n52001001003;n52003006004;n52002018008;n52004013006 +110401 A1:n52004015011 +110409 A0:n52004015009 A1:n52004015023 +110411 A1:n00000000000 +110425 A0:n52004016004 +110433 A0:n52004016019 +110438 A0:n52001001003;n52003006004;n52002018008;n52004013006 +110440 A1:n52004017004 +110444 A1:n52004017002 +110460 A0:n52004013006 A1:n52004018003 +110476 A0:n52005001008 A1:n52005001010 +110478 A1:n52002018008;n52001001003;n52003006004 A2:n52005001012 +110482 A0:n52005002001 +110491 A0:n52005002006 +110493 A0:n00000000000 A1:n52005003003;n52005003005 +110501 A0:n52005003010 AA2:n52005003008 +110508 A0:n00000000000 +110512 A0:n00000000000 +110524 A0:n52005004010 A1:n52005004011 +110544 A0:n52001001003;n52003006004;n52002018008;n52005004003 +110549 A0:n52001001003;n52003006004;n52002018008;n52005004003 +110551 A0:n52001001003;n52003006004;n52002018008;n52005004003 +110554 A0:n00000000000 +110556 A0:n52005007003 +110559 A1:n00000000000 +110561 A0:n52005007008 +110566 A0:n52005008001 +A0:n52001001003;n52003006004;n52002018008;n52005004003 A1:n52005008007;n52005008012 +110578 A1:n52005009004 A0:n52005009006 +110595 A0:n52005009015 +110600 A0:n52001001003;n52003006004;n52002018008;n52005004003 +110602 A0:n52001001003;n52003006004;n52002018008;n52005004003 +110606 A0:n52001001003;n52003006004;n52002018008;n52005004003 +110608 A0:n52005004003 A1:n52005011003 +110611 A0:n52005004003 A1:n52005011008 +110617 A0:n52005004003 +110620 A0:n52001001003;n52003006004;n52002018008 A1:n52005012005;n52005013002 +110622 A0:n52005012003 A1:n52005012007;n52005012011;n52005012016 +110624 A0:n00000000000 +110628 A0:n00000000000 A1:n52005012012 +110633 A0:n00000000000 A1:n52005012017 +110636 A0:n52005012004 A1:n52005013003 +110645 A0:n52005012004 +110650 A0:n52001001003;n52003006004;n52002018008 A1:n52005014003 +110652 A0:n52005014004 A1:n52005014007 +110655 A0:n52005014004 A1:n52005014010 +110658 A0:n52005014004 A1:n52005014013 +110661 A0:n52005014004 +110664 A0:n52005014004 +110671 A0:n52005015003 A1:n52005015004 A2:n52005015007 +110676 A0:n52005014004 A1:n52005015012 +110683 A0:n52005014004 +110685 A0:n52005014004 +110688 A0:n52005014004 +110701 A0:n52005014004 A1:n52005019002 +110704 A0:n52005014004 A1:n52005020001 +110707 A0:n52005014004 A1:n52005021001 +110710 A0:n52005014004 A1:n52005021005 +110715 A0:n52005014004 +110722 A0:n52005023004 A1:n52005023008 +110745 A1:n52005023014;n52005023017;n52005023020 +110748 A0:n00000000000 A1:n52005024004 +110752 A0:n52005024005 +110754 A0:n52005025001 +110757 A0:n52005025001 A1:n52005026003 +110764 A0:n52002018008 A1:n52005027002 +110768 A1:n52005027007 A2:n52005027010 +110811 A0:n53001001001;n53001001003;n53001001005 A1:n53001003001 +A0:n53001001001;n53001001003;n53001001005 A1:n53001003004 +110822 A0:n53001003015 +110827 A0:n53001003020 +110841 A0:n53001004003 +110862 A0:n53001003008 +110871 A1:n53001005010 A1:n53001005012 +110880 A0:n53001003008 +110885 A0:n53001006004 A2:n53001006007 A1:n53001006009 +110887 A0:n00000000000 A1:n53001006008 +110893 A1:n00000000000 +110912 A0:n53001007012 A1:n53001008005 A2:n53001008008;n53001008013 +110916 A0:n00000000000 A1:n53001008009 +110921 A0:n00000000000 A1:n53001008015 +110929 A0:n53001009001 A1:n53001009002 +110945 A0:n53001009009 +A1:n53001009009 +110952 A1:n53001009009 +110956 A0:n00000000000 +110962 A1:n53001010017 +110971 A0:n53001001001;n53001001003;n53001001005 +110977 A1:n53001011009 A0:n53001011014 +110984 A0:n53001011014 A1:n53001011019;n53001011022 +110994 A1:n53001012004 +111019 A0:n53001001001;n53001001003;n53001001005 A1:n53002001003 +111038 A1:n53002002006 +111044 A1:n53002001004 +111059 A0:n53002002028 +111067 A0:n53002003002 A1:n53002003003 +111074 A0:n53002003013 +111079 A1:n53002003018 +111089 A0:n53002003018 +111091 A0:n53002003018 +111094 A1:n00000000000 A1:n53002004008;n53002004010 +111105 A0:n53002004012 +A0:n53002003018 A1:n53002004020 +111112 A0:n53002001004 +111119 A0:n53001001001 A1:n53002005008 A2:n53002005010 +111124 A0:n00000000000 +A0:n53002001004 A1:n53002006004 +111128 A1:n53002006009 +111140 A0:n53002007003 +111143 A0:n00000000000 +111148 A0:n53002007010 +111151 A1:n53002008005 +111158 A1:n53002008006 A0:n53002008008 +111165 A0:n53002008008 +111193 A0:n00000000000 +111201 A0:n53002008005 A1:n53002010011 +111204 A1:n53002010019 +111209 A2:n53002011005 A0:n53002011007 A1:n53002011008 +111217 A0:n53002011013 A1:n53002011015 +111222 A1:n53002012005;n53002012006;n53002012010 +111226 A0:n00000000000 A1:n53002012008 +111230 A0:n00000000000 +111235 A0:n53002013001 A1:n53002013004 +A0:n53001001001;n53001001003;n53001001005 A1:n53002013006 +111243 A1:n53002013010 +111247 A1:n53002013016 A0:n53002013018 +111264 A0:n53002013018 A1:n53002014005 +111281 A0:n53002015003 +111283 A0:n53002015003 A1:n53002015008 +111287 A1:n53002015003 A1:n53002015009 +111309 A0:n53002016010 A1:n53002016016 +111312 A0:n53002016010 A1:n53002016019;n53002016022 +111320 A0:n53002016004;n53002016010 A1:n53002017004 +111325 A0:n53002016004;n53002016010 +111335 A0:n53003001004 +111343 A0:n53003001009 +111345 A1:n53003001009 +111352 A1:n53001001001;n53001001003;n53001001005 +111370 A0:n53003003006 A1:n53003003008 +111373 A0:n53003003005 +111378 A0:n53001001001;n53001001003;n53001001005 +111385 A0:n53001001001;n53001001003;n53001001005 A1:n53003004008 +111387 A0:n53003001004 A1:n53003004009 +111389 A0:n53003001004 A1:n53003004009 +111393 A0:n53003005003 A1:n53003005007 +111410 A0:n53001001001;n53001001003;n53001001005 A2:n53003006003 A1:n53003006012 +111418 A0:n53003006012 +111424 A0:n53003006015 +111431 A0:n53003006004 A1:n53003006023 +111436 A0:n53003007001 +111438 A0:n53003007006 +A0:n53003006004 A1:n53003007007 +111443 A0:n53001001001;n53001001003;n53001001005 +111449 A0:n53001001001;n53001001003;n53001001005 A1:n53003008003 +111460 A0:n53001001001;n53001001003;n53001001005 +111464 A0:n53001001001;n53001001003;n53001001005 A1:n53003008020 +111470 A0:n53001001001;n53001001003;n53001001005 A1:n53003009005 +111476 A0:n53001001001;n53001001003;n53001001005 A1:n53003009008 A2:n53003009011 +111480 A0:n53003006004 A1:n53003009015 +111489 A0:n53001001001;n53001001003;n53001001005 A1:n53003010007 A2:n53003010009 +111495 A0:n53003010012 A1:n53003010015 +A0:n53003010012 +111498 A0:n53003010012 +111500 A0:n53001001001;n53001001003;n53001001005 A1:n53003011004 +111502 A0:n53003011003 +111507 A0:n53003011003 +111509 A0:n53003011003 +111513 A0:n53001001001;n53001001003;n53001001005 A2:n53003012003 +111515 A0:n53001001001;n53001001003;n53001001005 A2:n53003012003 +111523 A0:n53003011003 +111527 A0:n53003011003 A1:n53003012017 +111532 A0:n53003013001 +A0:n53003013003 +111538 A0:n53003014003 A1:n53003014007 +111546 A0:n53003013003 A1:n53003014012 +111548 A0:n53003013003 AA2:n53003014016 +111551 A1:n53003014003 +111556 A0:n53003013003 +111558 A0:n53003013003 +111567 A0:n53003016004 A2:n53003016008 A1:n53003016010 +111594 A0:n53003017006 +111638 A0:n54001001001 A1:n54001003004 +111640 A0:n54001003003 +111643 A0:n54001001001 +111647 A0:n54001002001 A2:n54001003012 A1:n54001003014;n54001004002 +111650 A0:n54001003012 +111652 A0:n54001003012 +111659 A0:n54001004007 A1:n54001004008 +111684 A0:n54001006002 +111686 A0:n54001006002 +111689 A0:n54001006002 A1:n54001007003 +111693 A0:n54001006002 A1:n54001007008;n54001007012 +111696 A0:n54001006002 A1:n54001007007 +111700 A0:n54001006002 +111702 A0:n54001001001;n54001002001 +111711 A0:n54001008008 A1:n54001008009 +A0:n54001008008 A1:n54001009002 +111718 A0:n54001009005 +111742 A0:n54001010008 A1:n54001010012 +111744 A0:n54001010012 +111755 A1:n54001011009 A1:n54001011011 +111758 A0:n54001001001 A1:n54001012001 A2:n54001012004 +111760 A0:n54001012006 A1:n54001012005 +111770 A0:n54001012004 A1:n54001012013 +A0:n54001012004 +111783 A1:n54001001001 +111785 A0:n54001001001 +A0:n54001001001 +111790 A0:n54001014004 +111814 A0:n54001015009 +111819 A0:n54001015009 A1:n54001015015 +111827 A1:n54001001001 +111832 A0:n54001016010 A1:n54001016014 +111841 A0:n00000000000 A1:n54001016019 +A0:n54001016018 +111871 A0:n54001001001 A1:n54001018003 A2:n54001018005 +111875 A0:n54001018013 +111880 A0:n54001018006 A1:n54001018020 +111886 A0:n54001018006 A1:n54001019002;n54001019005 +111892 A0:n54001019007 A1:n54001019006 +111897 A0:n54001019007 +111904 A0:n54001001001 A1:n54001020006 A2:n54001020009 +111908 A1:n54001020003;n54001020005 A1:n54001020013 +111910 A0:n54001020003;n54001020005 +111912 A0:n54001001001 A1:n54002001005 +111915 A1:n54002001006;n54002001007;n54002001008;n54002001009 +111930 A0:n00000000000 +111936 A0:n54001001001;n54001018006;n54001016018 A1:n54002002013 +111952 A0:n54002004001 A1:n54002004005;n54002004010 +111955 A1:n00000000000 +111960 A0:n00000000000 +111974 A0:n54002005010 A1:n54002006003 +111997 A0:n54001001001 A1:n54002007008 +111999 A0:n54001001001 +112001 A0:n54001001001 A1:n54002008003 +A0:n54002008005 +112008 A0:n54002008005 A1:n54002008011 +112024 A0:n54002009002 A1:n54002009011 +112039 A0:n54002010002 +112041 A0:n54002010004 A1:n54002010006 +112048 A0:n54002011001 +112053 A0:n54001001001 A1:n54002012004;n54002012001;n54002012007;n54002012012 +112055 A0:n54002012003 +112058 A0:n54002012003 A1:n54002012008 +112067 A1:n54002013001 +112073 A1:n54002014002 +112077 A1:n54002014007 +112082 A1:n54002012003 +112087 A0:n54002012003 +112102 A0:n54003001005 A1:n54003001006 +112105 A0:n54003001005 A1:n54003001009 +112107 A0:n54003002005;n54003002009;n54003002010;n54003002011;n54003002012;n54003002013;n54003002014;n54003003002;n54003003003;n54003003004;n54003003006;n54003003007;n54003003008 +112132 A0:n54003002004 A1:n54003004003 +112134 A0:n54003002004 A1:n54003004006 +112146 A0:n54003005003 A1:n54003005006 +112148 A0:n54003005003 A1:n54003005007 +112152 A1:n54003005003 A1:n54003005011 +112157 A1:n54003002004 +112162 A0:n54003002004 +112164 A0:n54003007006 +112168 A0:n54003002004 A1:n54003007004 +112174 A0:n54003002004 +112189 A0:n54003008001 +112192 A0:n54003008001 A1:n54003009003 +112203 A1:n54003010002 +112206 A0:n54003008001 +112224 A0:n54003012001 A1:n54003012006;n54003012012 +112233 A0:n00000000000 +112237 A0:n54003013004 A1:n54003013005 A2:n54003013006 +112249 A0:n54001001001 A1:n54003014001 A2:n54003014002 +A0:n54001001001 A1:n54003014005 +A0:n54001001001 +112257 A0:n54001001001 +112259 A0:n54001018006 A1:n54003015007 +112261 A0:n54003015011 +A1:n54001018006 +112270 A0:n54003015015 +112285 A1:n54003016009 +112288 A1:n54003016009 +112291 A1:n54003016009 A2:n54003016017 +112293 A1:n54003016009 +112296 A1:n54003016009 +112299 A1:n54003016009 +112306 A0:n54004001003 +112311 A0:n54004001011 +112315 A0:n54004001011 +112324 A1:n54004002003 +112328 A0:n54004002003 A1:n54004003002 +A0:n00000000000 +A0:n00000000000 A1:n54004003004 +112335 A1:n54004003005 A0:n54004003007 +112343 A0:n00000000000 A1:n54004003018 +112356 A1:n54004004003 +112358 A1:n54004004003 +112365 A0:n54001018006 A1:n54004006001 A2:n54004006004 +112373 A1:n54001018006 +112383 A0:n54001018006 +112390 A0:n54001018006 A1:n54004007006 +112392 A0:n54001018006 A1:n54004007010 +112411 A0:n54004008011 A1:n54004008016 +112418 A0:n54004008018 +112429 A0:n54001001001;n54001018006;n54004006004 +112431 A0:n54001001001;n54001018006;n54004006004 +112433 A0:n54001001001;n54001018006;n54004006004 +112436 A0:n54004010010 +112445 A0:n54001018006 A1:n54004011002 +112447 A0:n54001018006 A1:n54004011002 +112452 A0:n54004012001 A1:n54004012004 +112469 A0:n54001001001 +A0:n54001018006 +112478 A0:n54001018006 A1:n54004014006 +112484 A1:n54004014007 A2:n54004014009 +112495 A0:n54001018006 A1:n54004015001 +112498 A0:n54001018006 +112506 A0:n54001018006 +112511 A0:n54001018006 +112515 A0:n54001018006 A1:n54004016008 +A0:n54001018006 A1:n54004016012;n54004016016 +112521 A0:n00000000000 A1:n54004016017 +112525 A0:n54001018006 A1:n54005001001 +112527 A0:n54001018006 +112542 A0:n54001018006 A1:n54005003001 +112554 A0:n54005004004 A1:n54005004005;n54005004007 +A0:n54005004005;n54005004007 A1:n54005004014;n54005004017 +112560 A0:n54005004005;n54005004007 A1:n54005004013 +112563 A0:n54005004005;n54005004007 A1:n54005004016 A2:n54005004019 +112578 A1:n00000000000 +A0:n54005005004;n54005005006 +112583 A0:n54005005004 +112594 A0:n00000000000 +A0:n54005006003 +A0:n54005006003 +112599 A0:n54001018006 A1:n54005007002 +112612 A0:n54005008003 A1:n54005008005;n54005008008 +112615 A0:n54005008003 A1:n54005008012 +112621 A1:n54005009001 +112633 A1:n54005009001 +112635 A0:n54005009001 +112637 A0:n54005009001 +112641 A0:n54005009001 A1:n54005010011 +112643 A1:n00000000000 +A0:n54005009001 A1:n54005010014 +112649 A0:n54005009001 +112653 A0:n54001018006 A1:n54005011003 +112656 A0:n54005011003 +112659 A0:n54005011003 +A0:n54005011003 A1:n54005011010 +A0:n54005011003 A1:n54005012002 +112667 A0:n54005011003 A1:n54005012006 +112672 A0:n54005011003 +A0:n54005011003 +112685 A0:n54005011003 A1:n54005013021 +112688 A0:n00000000000 +112690 A0:n54001001001 A1:n54005014004;n54005014005;n54005014006;n54005014009 +112692 A0:n00000000000 +A0:n00000000000 +A0:n00000000000 +112697 A0:n00000000000 A1:n54005014008 A2:n54005014011 +112699 A0:n00000000000 +112705 A0:n54005015003 +112712 A0:n54005016003 A1:n54005016005 +112714 A0:n54005016003 A1:n54005016007 +112718 A1:n54005016012 +112725 A0:n54005016012 A1:n54005016016 +112728 A0:n54005017004 +112732 A1:n54005017004 A1:n54005017006 +112735 A0:n00000000000 +112741 A0:n54005018004 +112745 A0:n54005018005 +112747 A0:n00000000000 A1:n54005018005 +112759 A0:n54001018006 A1:n54005019003 +112769 A0:n00000000000 +112772 A0:n54001018006 A1:n54005020002 +112778 A0:n54005020009 A1:n54005020010 +A0:n54001001001 +112792 A0:n54001018006 A1:n54005021013 +112796 A0:n54001018006 A1:n54005021017 +112802 A0:n54001018006 A1:n54005022001 A2:n54005022003 +112804 A0:n54001018006 +112809 A0:n54001018006 A1:n54005022009 +112811 A0:n54001018006 +112815 A0:n54001018006 A1:n54005023004 +112830 A0:n54005024004 +112836 A0:n54005024004 +112847 A0:n00000000000 +A1:n54005025011 +112850 A0:n54005025011 A1:n54005025012 +112862 A0:n54006001005 A1:n54006001008 +112872 A1:n54006001016;n54006001021 +112875 A0:n00000000000 A1:n54006002005 +112879 A0:n54006002004 +112885 A0:n54006002004 +112894 A0:n00000000000 A1:n54006002021 +112896 A0:n54001018006 A1:n54006002023 +112898 A0:n54001018006 A1:n54006002023 +112901 A0:n54006003002 +112904 A0:n54006003002 +A0:n54006003008 +112918 A1:n54006003002 +112920 A0:n54006003002 A1:n54006004002 +112922 A0:n54006003002 +112929 A0:n54006004013;n54006004014;n54006004015;n54006004016;n54006005001 +112937 A1:n54006005003 +112941 A1:n54006005003 +112944 A0:n54006005003 A1:n54006005011 +112959 A0:n54001001001;n54001018006;n54004006004 A1:n54006007001 +112965 A0:n54001001001;n54001018006;n54004006004 A1:n54006007010 +112967 A0:n54001001001;n54001018006;n54004006004 A1:n54006007009 +112969 A0:n54001001001;n54001018006;n54004006004 A1:n54006008003;n54006008005 +112974 A1:n54001001001;n54001018006;n54004006004 +112977 A0:n00000000000 A1:n54006009004 +A0:n54006009003 +A0:n54006009003 +112991 A0:n54006009016 A1:n54006009019 +113007 A0:n54006010010 A1:n54006010009 +113009 A1:n54006010010 +113015 A0:n54006010010 A1:n54006010017 +113024 A0:n54006011001 A1:n54006011006 +113026 A0:n54006011004 A1:n54006011010;n54006011011;n54006011012;n54006011013;n54006011014;n54006011015 +113033 A0:n54006011004 A1:n54006012004 +113039 A0:n54006011004 A1:n54006012010 +113045 A1:n54006011004 +113047 A0:n54006011004 A1:n54006012018 +113054 A0:n54001001001 A2:n54006011004 A1:n54006014001 +113059 A0:n54006013004 A1:n54006013008 +113066 A0:n54006013010 A1:n54006013019 +113073 A0:n54006014002 A1:n54006014004 +113090 A1:n54006015001 A0:n54006015009 +113099 A0:n00000000000 +113103 A0:n00000000000 +113106 A0:n54006016002 A1:n54006016004 +113110 A0:n54006016002 +113112 A1:n54006016008 A0:n54006016010 +113116 A0:n54006016010 +A0:n54006016010 A1:n54006016013 +113130 A0:n54006011004 A2:n54006017002 A1:n54006017008;n54006017009;n54006017011;n54006017017;n54006018001;n54006018002;n54006018006;n54006018008;n54006019001 +113132 A0:n54006017002 +113134 A0:n54006017002 +113142 A0:n54006017017 A2:n54006017020 A1:n54006017021 +113148 A0:n54006017002 +A0:n54006017002 +113156 A0:n54006017002 A2:n54006019002 A1:n54006019003 +113162 A0:n00000000000 +113164 A0:n54006017002 A1:n54006019012 +113172 A0:n54006020002 A1:n54006020004 +A0:n54006020002 A1:n54006020009;n54006020011 +113183 A0:n54006021002 A1:n54006021001 +113188 A0:n54006021002 +113223 A0:n55001001001 A1:n55001003001 A2:n55001003004 +113227 A0:n55001001001 A1:n55001003005 +113235 A0:n55001001001 A1:n55001003018 +113247 A0:n55001001001 A1:n55001004003 +113249 A0:n55001001001 A1:n55001004002 +A0:n55001001001 A1:n55001004007 +113256 A1:n55001001001 +A0:n55001001001 A1:n55001005001 +113265 A0:n55001005008 +113278 A1:n55001001001 +113286 A0:n55001001001 A1:n55001006006 +113288 A0:n55001006005 A1:n55001006008 +113305 A2:n55001007004 A0:n55001007006 A1:n55001007007 +113319 A1:n55001002001 A1:n55001008005;n55001008010 +113331 A0:n55001002001 +113338 A0:n55001008020 A1:n55001009003 +113341 A0:n55001008020 +113356 A1:n55001009018 A2:n55001009021 +113365 A1:n55001009018 +113376 A0:n55001010010 A1:n55001010015 +113380 A0:n55001010010 A1:n55001010018;n55001010020 +113401 A0:n55001001001 A1:n55001012005 +113404 A0:n55001001001 +113406 A0:n55001001001 A1:n55001012013 +113408 A0:n55001001001 A1:n55001012012 +113410 A1:n55001001001 +113417 A0:n55001012013 A1:n55001012020 +113422 A0:n55001002001 A1:n55001013001 +113424 A0:n55001013004 +113429 A0:n55001002001 A1:n55001013005 +113441 A0:n55001002001 A1:n55001014003 +113446 A0:n55001014006 +113449 A0:n55001002001 A1:n55001015002 +113452 A1:n55001015005 A1:n55001015007 +113464 A1:n55001016002 A0:n55001016004 A2:n55001016007 +113474 A0:n55001016006 A1:n55001016010 +113480 A1:n55001016006 A1:n55001016014 +113486 A0:n55001016006 A1:n55001017007 +113489 A0:n55001016006 +A2:n55001018002 A0:n55001018004 A1:n55001018005 +113494 A0:n55001016006 A1:n55001018006 +113506 A0:n55001016006 A1:n55001018014 +113509 A1:n55001018017 A0:n55001018019 +113514 A1:n55002001001 +113524 A0:n55002001003 A1:n55002002002 +113531 A0:n55002001003 A1:n55002002009 A2:n55002002012 +113539 A0:n55002002012 A1:n55002002017 +A0:n55002001003 +113547 A0:n55002004001 +A0:n55002004001 +113555 A0:n00000000000 +A0:n55002004001 A1:n55002004010 +113560 A0:n55002005005 +113563 A1:n55002005005 +113567 A0:n55002005005 +A0:n55002006008 +113570 A0:n55002006003 +113575 A0:n55002006003 A1:n55002006007 +A0:n55002001003 A1:n55002007003 +113578 A0:n55001001001 A1:n55002007002 +113580 A2:n55002007006 A0:n55002007008 A1:n55002007009 +113587 A0:n55002001003 A1:n55002008002 +113590 A1:n55002008003 +113602 A0:n55001001001 +113613 A1:n55002009010 +113617 A0:n55001001001 A1:n55002010003 +113624 A0:n55002010010 A1:n55002010011 +113638 A0:n55001001001;n55002001003;n55002010007 +113640 A0:n55001001001;n55002001003;n55002010007 +113642 A0:n55001001001;n55002001003;n55002010007 +113644 A0:n55001001001;n55002001003;n55002010007 +113646 A0:n55001001001;n55001002001;n55002010007 +113648 A0:n55002012007 A1:n55002012009 +113651 A0:n55001001001;n55002001003;n55002010007 +113656 A0:n55002010015 A1:n55002013008 +113659 A0:n55002010015 A1:n55002013006 +113661 A0:n55002001003 A1:n55002014001 +A0:n55002001003 A1:n55002014008 +113667 A0:n55002010007 +113674 A0:n00000000000 +A0:n55002001003 A1:n55002015004 +A0:n55002001003 A1:n55002015002 +113683 A0:n55002015007 A1:n55002015011 +113692 A0:n55002001003 A1:n55002016004 +113697 A0:n55002016004 +113705 A0:n55002017003 A1:n55002017007 +113715 A0:n55002018001 +A0:n55002017011;n55002017013 A1:n55002018009 +113719 A0:n55002018007 +113721 A0:n55002017011;n55002017013 A1:n55002018014 +113731 A0:n55002019004 +A0:n55002019004 A1:n55002019010 +113736 A0:n55002019013 A1:n55002019016 +113739 A0:n00000000000 +113742 A0:n55002019023 +113747 A0:n00000000000 A1:n55002019025 +113779 A0:n55002021003 A1:n55002021005 +113787 A1:n55002021009 +113795 A1:n55002021009 +113800 A0:n55002001003 A1:n55002022004 +113802 A0:n55002001003 A1:n55002022008;n55002022009;n55002022010;n55002022011 +113809 A0:n00000000000 A1:n55002022016 +113821 A0:n55002001003 A1:n55002023006 +A0:n55002001003 +113824 A0:n55002023006 A1:n55002023011 +113827 A0:n55002024006;n55002024008;n55002024012;n55002024013 +113831 A0:n55002024001 +113841 A0:n55002024001 A1:n55002025005 +113843 A0:n00000000000 +113846 A2:n55002025009 A0:n55002025011 A1:n55002025012 +113855 A0:n55002025005 +113861 A1:n55002025005 +113870 A0:n55002001003 A1:n55003001001 +113875 A0:n55003001009 +113899 A1:n55003002004 +113904 A0:n55003002004 A1:n55003005002 +113911 A0:n55003002004 A1:n55003005006 +113914 A0:n55002001003 A1:n55003005010 +113920 A0:n00000000000 +113925 A0:n00000000000 A1:n55003006012 +113927 A1:n55003006012 +113929 A1:n55003006012 +113933 A0:n55003006012 +113939 A0:n55003006012 +A0:n55003006012 A1:n55003007008 +113947 A0:n55003008004;n55003008006 A1:n55003008008 +113952 A0:n55003008011 A1:n55003008014 +113956 A1:n55003008015 A1:n55003008018 +113965 A0:n55003008015 +113979 A0:n55003009015 +113982 A0:n55003010001 +114013 A0:n55001001001 A1:n55003011015 +114018 A1:n55003011020 A0:n55003011023 +114025 A0:n00000000000 A1:n55003012006 +A0:n55003012005 +114031 A1:n55003012005 +114037 A0:n55003013003;n55003013005 +114041 A0:n55003013003;n55003013005 +114043 A1:n55003013003;n55003013005 +114046 A0:n55003014001 +114049 A0:n55002001003 A1:n55003014005 +114051 A1:n55002001003 A1:n55003014005 +A0:n55002001003 +114055 A0:n55002001003 +114060 A0:n55002001003 A1:n55003015006 +114064 A0:n55003015006 A1:n55003015011 +114066 A0:n55003015006 A1:n55003015010 +114102 A1:n55003017007 +A0:n55001001001 +114111 A0:n55004001006 A1:n55004001010 +A0:n55004001006 A1:n55004001011;n55004001013 +A0:n00000000000 +114124 A0:n55002001003 A1:n55004002003 +114127 A0:n55002001003 +114130 A0:n55002001003 +A0:n55002001003 +A0:n55002001003 +114139 A0:n55004003003 +114144 A0:n55004003007 +114146 A0:n00000000000 A1:n55004003007 +114153 A0:n00000000000 A2:n55004003015 A1:n55004003017 +114155 A1:n00000000000 A1:n55004003020 +114165 A0:n00000000000 A1:n55004004007 +114170 A1:n00000000000 +114173 A0:n55004005001 +114176 A0:n55002001003 +A0:n55002001003 A1:n55004005007 +114183 A0:n55002001003 A1:n55004005011 +114187 A1:n55004006001 +114194 A0:n55004006007 +114198 A0:n55001001001 A1:n55004007003 +114201 A0:n55001001001 A1:n55004007006 +114204 A0:n55001001001 A1:n55004007009 +114206 AA2:n55004008003 A0:n55004008007 +114213 A1:n55004008008 A2:n55004008010 A0:n55004008012 +114232 A0:n00000000000 A1:n55004008030 +114236 A0:n55002001003 A1:n55004009002 +A0:n55002001003 +114244 A0:n55004010001 A1:n55004010003 +A0:n55004010001 A1:n55004010008 +114250 A1:n55004010001 +114265 A0:n55002001003 A1:n55004011006 +A0:n55002001003 +114277 A0:n55001001001 A1:n55004012001 +114283 A0:n55001001001 A1:n55004013003 +114288 A0:n55002001003 +A0:n55002001003 A1:n55004013002 +114302 A0:n55004014001 A1:n55004014006 A2:n55004014005 +A2:n55004014009 A1:n00000000000 A0:n55004014011 +114314 A1:n55004015001 A0:n55004015003 +114317 A0:n55004014001 A1:n55004015010 +114328 A0:n55004016006 +114332 A0:n55004016010 A1:n55004016011 +114335 A1:n55004016008;n55004016012 A2:n55004016014 +114340 A0:n55004017003 +114342 A0:n55004017003 A1:n55004017008 +114349 A1:n55004017013 +114351 A0:n55004017019 +114356 A1:n55001001001 +114360 A1:n55004018002 A0:n55004018004 +114369 A0:n55004018004 +114385 A0:n55002001003 A1:n55004019002;n55004019004;n55004019008 +114394 A0:n55004020001 +114399 A0:n55001001001 A1:n55004020005 +114402 A0:n55004020005 +A0:n55002001003 A1:n55004021004 +114406 A0:n55002001003 +A1:n55004021006 A0:n55004021007;n55004021009;n55004021011;n55004021013;n55004021016 +114452 A1:n56001002005 A0:n56001002009 +114460 A0:n56001002009 A1:n56001003006 +114469 A1:n56001003010 A1:n56001003012 +114497 A0:n56001001001 A1:n56001005004 +114503 A0:n00000000000 +A0:n56001004001 A1:n56001005009 +114506 A0:n56001004001 A1:n56001005015 +114513 A0:n56001005017 A1:n00000000000 A2:n56001005018 +114521 A0:n56001006002 A1:n56001006008 +114531 A0:n56001007005 +114556 A0:n56001007004 A1:n56001009007 +114567 A0:n56001007004 +114572 A0:n56001009015 +114575 A0:n00000000000 +A0:n56001007004 A1:n56001009020 +114590 A0:n00000000000 A1:n56001011001 +A0:n56001011003 +114595 A0:n56001011004 A1:n56001011006 +A0:n56001010004 A1:n56001011011 +114599 A0:n56001011009 +114603 A0:n56001012002 +114625 A0:n56001004001 A1:n56001013010 +114629 A0:n56001012008 +114634 A0:n56001012008 +114640 A1:n56001014007 A1:n56001014010 +114649 A1:n00000000000 +114655 A1:n56001015017;n56001015020 +114664 A0:n56001015007 A1:n56001016001 +A0:n56001015007 A1:n56001016003 +114669 A0:n56001015007 +114682 A0:n56002001001 A1:n56002001005 +114684 A0:n56002001004 +114686 A0:n56002001008 +114693 A0:n56002002001 +114710 A1:n56002003001 A2:n56002003009 +114713 A0:n56002003001 A1:n56002004005;n56002004007;n56002005001;n56002005002;n56002005003;n56002005004;n56002005005 +114723 A1:n56002004004 A2:n56002005008 +114733 A1:n56002005012 +114737 A0:n56001004001 A2:n56002006002 A1:n56002006005 +A0:n56002006002 +114742 A0:n56001004001 A1:n56002007003 +114758 A0:n56002008005 +A0:n56002008005 A1:n56002008011 +A0:n56002008005 A1:n56002008009 +114768 A1:n56002009001 A2:n56002009003 +114774 A0:n56002009001 +114776 A0:n56002009001 +114781 A0:n56002009001 A1:n56002010005 +114790 A0:n56002009001 A1:n56002010010 +114794 A1:n56002011004 +114802 A0:n56002011004 A1:n56002012002 +114805 A0:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A1:n56002012006;n56002012010 +114817 A0:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 +114822 A0:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A1:n56002013004;n56002013006 +114839 A0:n56002014001 A1:n56002014003 +114844 A0:n56002013011 A1:n56002014008 +114850 A0:n56002013011 A2:n56002014014 A1:n56002014015 +114858 A0:n56001004001 A1:n56002015001 +114860 A0:n56001004001 +114862 A0:n56001004001 +114868 A0:n56002015010 A1:n56002015011 +A0:n56001004001 A2:n56003001002 A1:n56003001005;n56003001006;n56003001011;n56003002002;n56003002003 +114873 A1:n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A2:n56003001003;n56003001004 +A0:n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 +114882 A0:n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A1:n56003002001 +114888 A0:n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A1:n56003002008 +114899 A1:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 +A0:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A1:n56003003010;n56003003012 +114909 A0:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 +114911 A0:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 A1:n56003003021 +114924 A1:n56003004004;n56003004007 +114932 A1:n56003005007 A0:n56003005009 +114939 A0:n56003004010 A1:n56003005016 +114949 A0:n56003004010 A1:n56003006001 +114960 A1:n56001001001;n56001004001;n56002002001;n56002003001;n56002004004;n56002006002;n56002009001 +114976 A0:n56001001001 A1:n56003008009 +114978 A0:n56003008008 +114980 A1:n56003008014 A0:n56003008016 +114983 A0:n56003008016 A1:n56003008013 +114985 A0:n00000000000 A1:n56003008017 +115004 A0:n56001004001 A1:n56003009003;n56003009005;n56003009007;n56003009009 +115017 A0:n56001004001 A1:n56003010002 +A0:n56001004001 +115022 A1:n56003011005 +115024 A0:n56003011005 +115028 A0:n56001001001 A1:n56003012003;n56003012007 +115034 A0:n56001004001 A1:n56003012009 +A0:n56001004001 +115042 A0:n56001001001 +A0:n56001001001 A1:n56003012017 +115050 A0:n56001004001 A1:n56003013001;n56003013005 +115054 A0:n56003013009 AA2:n56003013010 +115056 A0:n56003014005 A1:n56003014008 +115062 A0:n56003014005 A1:n56003014007 +115071 A1:n56003015002 A0:n56003015003 +115077 A0:n56001004001 A1:n56003015009 +115079 A0:n00000000000 A1:n56003015010 +115129 A0:n57001001001 A1:n57001004003 +115136 A0:n57001001001 A1:n57001004006 +115141 A0:n57001001001 A1:n57001005004;n57001005007 +115149 A0:n57001001009 A1:n57001005008 +115181 A0:n57001001001 A1:n57001007001;n57001007006 +115191 A1:n57001007013 +115200 A0:n57001001001 A1:n57001008005 +A0:n57001001001 A2:n57001008008 A1:n57001008010 +115204 A0:n00000000000 +115209 A0:n57001001001 +115221 A0:n57001009009 A1:n57001010002 +115227 A0:n57001009009 A1:n57001010012 +115244 A0:n57001009009 A2:n57001012003 A1:n57001012004 +115254 A0:n57001013002 A1:n57001013006 +115258 A0:n57001009009 A1:n57001013001 +115263 A0:n57001010012 A1:n57001013010 +115275 A0:n57001009009 A1:n57001014006 +A0:n57001009009 A1:n57001014008 +115293 A1:n57001010012 +115299 A0:n57001007019 A1:n57001015010 +115323 A0:n57001007019 A1:n57001017003 +115325 A0:n57001007019 A1:n57001017007 +115333 A0:n57001010012 A1:n57001018005 +115335 A0:n57001010012 +115338 A0:n57001007019 A1:n57001018008 A2:n57001018009 +115341 A0:n57001019001 +115346 A0:n57001019007 +115349 A0:n57001019002 A2:n57001019012 +115355 A0:n57001007019 A1:n57001019015 A2:n57001019016 +115360 A0:n57001020003 +115363 A0:n57001020002 A1:n57001020011 +115369 A0:n57001019002 +115373 A0:n57001019002 A2:n57001021006 +115375 A0:n57001019002 +115380 A0:n57001019002 A1:n57001021011 +A0:n57001020002 +115385 A0:n57001020002 A2:n57001022005 A1:n57001022006 +115389 A0:n57001019002 +115395 A1:n57001019002 A2:n57001022015 +115397 A1:n57001023002 A0:n57001023003;n57001024001;n57001024002;n57001024003;n57001024004 +115427 A0:n58001001006 A2:n58001001009 +115440 A0:n58001001006 A2:n58001002007 +115445 A0:n58001001006 A1:n58001002010 +115451 A0:n58001001006 A1:n58001002019 +115455 A0:n58001002009 +115465 A0:n58001002009 A1:n58001003014 +115476 A0:n58001002009 A1:n58001003020 +A0:n58001002009 A0:n58001003001 +115494 A0:n58001002009 A1:n58001004011 +115499 A0:n58001003028 A2:n58001005001 +115507 A0:n58001005011 A1:n58001005014 +115525 A0:n58001003028 A1:n58001006006 +115531 A0:n58001003028 +115533 A1:n58001006013 A0:n58001006015 +115543 A0:n58001006016 +115545 A0:n58001006016 A1:n58001007010 +115579 A0:n58001008009 A1:n58001009002 +115582 A0:n58001008009 A1:n58001009005 +115586 A1:n58001009009 A0:n58001009011 +115606 A0:n58001010002 A1:n58001010007 +115616 A0:n58001011001 +115619 A0:n58001011003 +115622 A1:n58001011007 +115628 A0:n58001010005 A1:n58001012005 +115633 A1:n58001010007;n58001010016 +115644 A0:n58001012017 +115650 A0:n58001009011 +115652 A0:n58001013002 +115658 A0:n58001009011 A1:n58001013016 +115673 A1:n58001014005 +115676 A0:n00000000000 A1:n58001014012 +A0:n58001014011 A1:n58001014013 +115681 A0:n58002001005 +115683 A0:n58002001006 +115686 A1:n00000000000 +115695 A1:n58002002007 +115704 A0:n58002002012;n58002002014 A1:n58002002017 +115709 A0:n58002003002 +A0:n58001002007 A1:n58002003006 +115715 A0:n58002003006 +A1:n58002003006 +115722 A0:n00000000000 +115725 A1:n58002003007 +A0:n58002004003 +115747 A0:n58002004003 A2:n58002005003 A1:n58002005006 +115751 A0:n58002005006 +115754 A0:n58001002007 +115756 A0:n58002006004 +115759 A0:n58002006004 +115764 A0:n58002004003 A1:n58002006011 +115770 A0:n58002004003 A1:n58002006017 +115772 A0:n58002004003 A1:n58002007002 +115781 A0:n58002004003 A1:n58002007011 +115784 A0:n58002004003 A1:n58002008001 +115792 A0:n58002004003 A2:n58002008011 A1:n58002008013 +115797 A0:n58002004003 A1:n58002008014 +115803 A0:n58001002007 A1:n58002008025 +115807 A2:n58002008022 A1:n58002008024 +115809 A0:n58001002007 A1:n58002009018 +115815 A1:n58002009009 +115825 A1:n58002009007 +115831 A0:n58002009009 A1:n58002009025 +115834 A0:n58002010025 +115849 A0:n58002009021 A1:n58002010014 +115857 A0:n58002009021 A1:n58002010019 +115861 A0:n58002010019 +115864 A1:n58002010014 +115872 A0:n58002011004 +115875 A0:n58002011004 A1:n58002011017 +A0:n58002011004 +A0:n58002011004 A1:n58002012004 A2:n58002012007 +115887 A0:n58002011004 A1:n58002012013 +115893 A0:n58002013003 +115905 A1:n58002013015 A2:n58002013016 A0:n58002013019 +115912 A0:n58002014004 A1:n58002014006;n58002014008 +115919 A0:n58002014010 A1:n58002014014 +115926 A0:n58002011004 A1:n58002014023 +115932 A0:n58002014029 A1:n58002014022 +115938 A0:n58002011004 A1:n58002015003 +115946 A0:n00000000000 +115954 A0:n58002011004 +115958 A0:n58002011004 +115960 A0:n58002011004 A1:n58002017007 +115965 A1:n58002011004 +115978 A1:n58002011004 A1:n58002017022 +115986 A1:n58002018002 A0:n58002018005 +115988 A1:n58002011004 +A0:n58002011004 A1:n58002018010 +115991 A1:n58002017024 +A0:n00000000000 A1:n58002018009 +115999 A0:n58003001002 A1:n58003001009;n58003001011 +116011 A0:n58002017017 A1:n58003002005 +116027 A1:n58003003004 A1:n58003003003 +116032 A1:n58003003011 A0:n58003003016 +116036 A0:n00000000000 A1:n58003003017 +116041 A1:n58003004003 +116047 A0:n00000000000 A1:n58003004009 +116063 A1:n00000000000 +116090 A0:n58003007005 +116100 A0:n00000000000 A1:n58003007011 +116102 A0:n00000000000 A1:n58003008004 +116119 A0:n58003009004 +116126 A0:n58003009004 A1:n58003009011 +116133 A0:n58003007005 A1:n58003010006 +116138 A0:n58003007005 +116140 A1:n58003010006 +116146 A0:n58003010014 A1:n58003010019 +116151 A0:n58003007005 +116157 A0:n58003010006 +116162 A0:n58003012002 +116175 A0:n58003012007 +116180 A0:n58003012002 A1:n58003013003 +116192 A1:n58003013015 +116212 A0:n58001002007 A1:n58003014008 +116215 A1:n58003015009;n58003015011;n58003015018 +116221 A0:n00000000000 A1:n58003015007 +116223 A0:n00000000000 A1:n58003015013 +116233 A0:n58003016001 +A0:n58003016001 +116239 A0:n58003010006 +116246 A0:n58003012016 A1:n58003017001 +116251 A0:n58003010006 +116255 A0:n58003017011 +116261 A0:n58003012016 A2:n58003018001 A1:n58003018005 +116263 A0:n58003018001 +116271 A0:n58003010006 +116273 A0:n58001002007 +116276 A1:n58003018013 A1:n58003019006 +A0:n58003018013 +116281 A1:n58001002007 +116284 A1:n58004001006 +116286 A0:n58001002007 +116291 A0:n58004001013 A1:n58004001016 +116299 A1:n58001002007 +116304 A0:n58004002011 A1:n58004002014 +116311 A1:n58004002011 +116315 A0:n00000000000 +116317 A0:n58004003007 +116322 A0:n58001002007 +116324 A0:n58003012016 +116326 A0:n58003012016 +116332 A0:n58003018013 +116343 A1:n58004003024 +116345 A0:n58003012016 +116352 A0:n58004004011 +116370 A0:n58003018013 +116377 A1:n58004006005 +116379 A0:n58004006004 +116385 A1:n58003018013 +116387 A0:n58004006011 +116391 A0:n58004004011 A1:n58004007004 +116397 A0:n58004004011 +116402 A1:n58004007019;n58004007021 +116408 A0:n00000000000 A1:n58004007017 +116410 A0:n00000000000 A1:n58004007023 +116418 A1:n58004008003 A0:n58004008004 +116424 A0:n58004004011 +116428 A1:n58004009003 A2:n58004009005 +116436 A0:n58004009005 +116443 A0:n58004010003 +116455 A0:n58004003007 A1:n58004011003 +A0:n58004003007 +116470 A0:n58004011013 +116476 A0:n58004012004 +116486 A0:n58004012004 +116513 A1:n58004013008 +116523 A0:n58004003007 A1:n58004014003 +116526 A0:n58004014003 +116534 A0:n58004003007 A1:n58004014015 +116538 A0:n58004003007 A1:n58004015004 +116542 A0:n58004015004 A1:n58004015007 +A0:n58004015004 +116548 A1:n58004015004 +116556 A0:n58004003007 +116564 A0:n58004003007 A1:n58004016011 +116568 A0:n58004003007 A1:n58004016013 +116577 A1:n58005001003 +116580 A1:n58005001003 +116586 A0:n58005001003 A1:n58005001016;n58005001019 +116593 A0:n58005001003 A1:n58005002001 +A0:n58005001003 +116596 A0:n00000000000 +116598 A1:n00000000000 +116602 A1:n58005002009 A1:n58005002011 +116607 A0:n58005001003 A1:n58005003013 +116616 A0:n58005001003 +116623 A0:n58005004004 A1:n58005004007 +116627 A1:n58005004004 +116640 A0:n58005005004 A1:n58005005006 +116645 A0:n58005004012 +116654 A0:n58005005019 A1:n58005005022 +116660 A0:n58005005012 +116683 A0:n58005005012 A1:n58005007015 +A0:n58005007014 A1:n58005007016 +116693 A0:n58005005004 A1:n58005007008;n58005007011 +116695 A1:n58005005004 +116702 A0:n58005005004 A1:n58005008009 +116705 A0:n58005005004 A1:n58005008006 +116709 A1:n58005005004 +116713 A0:n00000000000 A1:n58005009007 +116718 A1:n58005005004 A1:n58005010005 +116735 A0:n58005011004 +116743 A0:n58003012002 A1:n58005012005 +116750 A0:n58003012002 A1:n58005012010 +116753 A2:n58005012014 A0:n58005012015 A1:n58005012017 +116766 A0:n58003012002 A1:n58005012026 +116775 A0:n00000000000 A1:n58005013005 +116795 A1:n58005014012 +A0:n58005014001 A1:n58005014012 +116804 A0:n58004003007 A1:n58006001008 +116814 A1:n58004003007 +116817 A0:n58004003007 A1:n58006001015;n58006002002 +116839 A0:n58004003007 A1:n58006003002 +116841 A0:n58006003007 +116848 A1:n00000000000 +116850 A0:n00000000000 A1:n58006004009 +116859 A1:n00000000000 A1:n58006004013 +116861 A0:n00000000000 A1:n58006005005;n58006005006 +116867 A0:n58006005009 +116870 A0:n00000000000 +116872 A0:n00000000000 A1:n58006004005;n58006004006;n58006004014;n58006005003;n58006006002 +116875 A0:n58006004005 A1:n58006006010 +116882 A0:n58006004005 +116886 A0:n58006007001 A1:n58006007010 +116890 A0:n58006007010 +116894 A0:n58006007001 A1:n58006007013 A2:n58006007015 +116901 A1:n58006007001 +A0:n58006007001 A1:n58006007021 +116908 A0:n58006007001 A1:n58006008003;n58006008005 +116923 A1:n58005011004 A1:n58006009007;n58006009009 +116929 A0:n00000000000 +116934 A0:n58005011004 +116940 A0:n58006010005 A1:n58006010008;n58006010012 +116948 A0:n58006009005 A1:n58006010013 +116953 A0:n58006009005 A1:n58006010021 +116955 A0:n58006009005 A1:n58006010021 +116959 A0:n58005011004 A1:n58006011007 +116965 A0:n58006011003 A1:n58006011008 +116984 A0:n00000000000 A1:n58006012014 +116990 A0:n58006013006 A1:n00000000000 A2:n58006013003 +116997 A0:n58006013006 +A0:n58006013006 A1:n58006013012 +A0:n58006013006 +117002 A0:n58006013006 +117005 A0:n58006013006 +A0:n58006013006 A1:n58006014006 +117009 A0:n58006013006 +A0:n58006013006 A1:n58006014010 +117014 A0:n58006013003 +A0:n58006013003 A1:n58006015006 +117023 A0:n58006016001 +117036 A0:n58006017006 A1:n58006017007 +A0:n58006017006 A2:n58006017009 A1:n58006017013 +117049 A0:n58006017006 +117059 A0:n58006018010 +117063 A1:n58006018012 A0:n58006018015 +117065 A0:n58004003007 +A0:n58006018015 A1:n58006018019 +117068 A0:n58006018019 +117071 A0:n58006018015 A1:n58006019001 +117081 A0:n58006019003 +117092 A0:n58006020002 +117114 A0:n58007001004 A1:n58007001014 +117116 A0:n58007001014 +117123 A0:n58007001004 A1:n58007001023 +117130 A2:n58007002001 A1:n58007002003 A0:n58007002007 +117155 A0:n58007001004 A1:n58007003005;n58007003009 +117157 A1:n58007001004 +117162 A0:n58007001004 +117168 A0:n58006009005 +117176 A2:n58007004005 A1:n58007004006 A0:n58007004007 +117189 A0:n00000000000 A1:n58007005009 +117191 A0:n58007005010 A1:n58007005011 +A0:n58007005010 A1:n58007005015 +117204 A0:n58007005022 +117212 A1:n58007001004 +117215 A0:n58007006004 A1:n58007006008 +117219 A0:n58007006008 A1:n58007006013 +117222 A0:n58007006004 A1:n58007006011 +117232 A1:n58007007006 +117237 A0:n58007008006 +117239 A1:n58007008004 A0:n58007008006 +117242 A1:n58007008012 +117244 A0:n58007006004 +117248 A0:n00000000000 A1:n58007009003 +117255 A0:n58007009008 A1:n58007009010 +A1:n58007009008 +117266 A1:n58007010011 A0:n58007010012 +117277 A0:n58007011004 +117283 A1:n58007011011 +117291 A0:n58007011025 +117300 A1:n58007011025 +117302 A1:n58007012004 +117310 A0:n58007012009 +117314 A1:n58007013005 +117318 A0:n58007013004 A1:n58007013006 +117322 A0:n58007013011 +117330 A0:n58007014008 +117341 A1:n58007014015 A0:n58007014016 +117352 A0:n58007015012 +117356 A0:n58007016001 +117368 A1:n58007017005 +117382 A0:n58007018006 +117384 A0:n58007018001 +117393 A1:n58007019001 A0:n58007019005 +117402 A0:n58006018015 +117425 A0:n58007019014 +117428 A0:n58007021011 +117432 A1:n58007021011 +117456 A1:n58007023012 +A0:n58007023004 +117462 A0:n58007024006 +117468 A0:n58007024001 A1:n58007024013 +117473 A0:n58007022008 A1:n58007025003 +A0:n58007022008 A1:n58007025009 +117479 A0:n00000000000 +117485 A0:n58007022008 +117488 A0:n58007022008 +117494 A0:n58007026006 +117500 A1:n58007026006 +117511 A0:n58007027001 A1:n58007027006 +117524 A0:n58007026006 A1:n58007027015 +117531 A0:n58007026006 A1:n58007027021 +117534 A0:n58007026006 A1:n58007027025 +117539 A0:n58007028002 A1:n58007028004 +117541 A0:n58007028004 A1:n58007028008 +117556 A1:n58007028018 +117561 A1:n00000000000 +A0:n58006018015 A1:n58008001008 +117566 A0:n58008001009 +117585 A1:n58008002009 A0:n58008002012;n58008002014 +117595 A0:n58008003003 A1:n58008003007;n58008003010 +117600 A1:n58008003003 +117603 A0:n58008003017 A1:n58008003015 +117608 A0:n58008001008 A1:n58008003018 +117619 A0:n58008004013 +117621 A0:n58007008006 A1:n58008004017 +117632 A0:n58008005001 A1:n58008005002;n58008005004 +117634 A1:n58008005010 +117636 A0:n58008005010 A1:n58008005012 +A0:n58008005010 A1:n58008005014 +117641 A0:n58008002012 +A0:n58008005010 +A0:n58008005010 A1:n58008005019 +117649 A1:n58008005022 A2:n58008005025 +117658 A0:n58008001008 A1:n58008006005 +117669 A1:n58008006012 +117681 A1:n58008007012 +117683 A0:n58008002012 A1:n58008008003 +117685 A0:n58008002012 +117688 A0:n58008008006 +A0:n58008008009 +117692 A0:n58008008009 A1:n58008008021 +117709 A0:n58008008009 A1:n58008009005 +117715 A0:n58008009013 A1:n58008009015 +117720 A0:n58008008009 A1:n58008009018 +117728 A0:n58008009023 +117734 A0:n58008009030 A1:n58008009032 +117736 A0:n58008009034 +117743 A0:n58008009034 A1:n58008010005 +117751 A0:n58008010015 +117753 A0:n58008010015 A1:n58008010017 +117764 A0:n58008010015 A1:n58008010028 +117780 A0:n58008010008 A1:n58008011007 +117790 A0:n58008010008 +A0:n58008011012 A1:n58008011017 +117796 A0:n58008011019 A1:n58008011021 +117815 A1:n58008011017 A1:n58008012009 +117819 A0:n58008011017 A1:n58008013004 +117821 A0:n58008011017 A1:n58008013007 +117826 A1:n00000000000 +117828 A0:n00000000000 +117833 A0:n58009001006 A1:n58009001007;n58009001011 +117844 A1:n58009002001 +117874 A0:n58009003006 A1:n58009004003;n58009004006 +117882 A1:n58009004006 +117889 A0:n58009004014 A1:n58009004018 +117897 A0:n58009004021 +117908 A0:n58009005004 A1:n58009005008 +117916 A0:n58005011004 +117922 A1:n58009006001 +117930 A0:n58009006014 +117935 A0:n58009006014 A1:n58009006016 +117950 A0:n58009007010 A1:n58009007014 +117959 A1:n58009008001 A0:n58009008004 +117965 A1:n58009008012 +117974 A0:n58009008016 A1:n58009008018 +117982 A0:n58009009005 +117989 A1:n58009009010;n58009009013 +117991 A0:n58009009010;n58009009013 A1:n58009009019 +117994 A0:n58009009010;n58009009013 A1:n58009009021 +117996 A0:n00000000000 +118010 A0:n58009009010;n58009009013 +118012 A0:n58009011001 +118016 A0:n58009011007 +118043 A0:n58009011001 +118050 A0:n58009011001 A1:n58009012018 +118061 A0:n58009013004;n58009013009 A1:n58009013013 +118063 A1:n00000000000 +A0:n58009013004;n58009013009 +118081 A0:n58009014007 A1:n58009014011 A2:n58009014015 +118085 A0:n58009014004 A1:n58009014018 +118094 A0:n58006018015 A1:n58009014026 +118096 A0:n58009014026 +118106 A0:n58009015009 +118115 A0:n58009015023 A1:n58009015020 +118117 A1:n00000000000 +118127 A1:n58009016004 +118130 A0:n00000000000 +118139 A0:n58009017001 +118141 A0:n58009017013 +118150 A1:n58009018004 +118152 A1:n58009019004 A2:n58009019012 +118163 A0:n58009019009 A1:n58009019015 +118186 A0:n58009019009 A1:n58009019031;n58009019035 +A0:n58009019009 +118194 A1:n58009020007 A0:n58009020012 +118212 A0:n58009019009 A1:n58009021003;n58009021008 +118218 A1:n58009022005 +118226 A0:n58009022015 +118238 A1:n58009023005 +118248 A0:n58009024007 +118263 A1:n58009024007 +118273 A0:n58009024007 A1:n58009025005 +118278 A0:n58009025008 +118288 A0:n58009026005 +118291 A0:n58009026003 +118310 A1:n58009024007 +118314 AA2:n58009027006 A0:n58009027008 +118318 A0:n00000000000 +118328 A1:n58009028004 +118333 A0:n58009028004 A1:n58009028011 +118338 A1:n58009028004 A2:n58009028019 +118341 A0:n00000000000 A1:n58009028018 +118347 A0:n58010001005 A1:n58010001001;n58010001012 +118350 A0:n58010001008 +118364 A0:n00000000000 A1:n58010001020 +118369 A0:n58010001005 A1:n58010001029 +118371 A0:n00000000000 +A0:n58010001005 A1:n58010001028 +118376 A0:n58010001019 A1:n58010002005 +A1:n58010001019 +118381 A1:n58010002011 A0:n58010002014 +118386 A0:n00000000000 +118388 A1:n58010002014 +118402 A0:n58010004003 A1:n58010004008 +118405 A0:n58009028004 +118409 A0:n58009028004 +118414 A0:n58009024021 A1:n58010005007;n58010005009 +118417 A0:n58009024021 A1:n58010005012 A2:n58010005015 +118424 A0:n58009024021 A1:n58010006001;n58010006004 +118426 A0:n58009028004 +118429 A0:n58010007014 +118433 A1:n58010007004 +118436 A0:n58009028004 +118438 A0:n58009028004 A1:n58010007016 +118443 A0:n58009028004 +118454 A0:n58010007014 A1:n58010008004;n58010008006;n58010008008;n58010008011 +118456 A0:n58010007014 A1:n58010008004;n58010008006;n58010008008;n58010008011 +118460 A1:n58010008016 +118462 A0:n58009028004 +A0:n58010007014 +A0:n58009028004 +118466 A0:n58009028004 A1:n58010009008 +118470 A0:n58009028004 A1:n58010009012 +118476 A0:n58009028004 A1:n58010009015 +118480 A1:n58006018015 +118494 A0:n58010011004 +118497 A0:n58010011004 +118500 A0:n58010011004 A1:n58010011014 +118506 A0:n58010011015 A1:n58010011018 +A0:n58010011014 A1:n58010011019 +118515 A0:n58010010011 A1:n58010012007 +118519 A0:n58010012001 +118526 A0:n58010010011 +118528 A1:n58010013007 +118539 A0:n58010010011 A1:n58010014009 +118544 A1:n00000000000 +118546 A2:n58010015003 A0:n58010015006 +118556 A0:n58010016013 +118561 A0:n58010016013 A1:n58010016004 +118568 A0:n58010016013 +118570 A0:n58010016013 A1:n58010016015 +118581 A0:n58010016013 A1:n58010016026 +118593 A1:n58010016013 A1:n58010017003;n58010017007 +118605 A0:n58006018015 A1:n58010019004 +118617 A0:n58010019013 A1:n58010020001 +118622 A0:n58010020004 +118639 A0:n58006018015 +118646 A1:n58006018015 +118653 A0:n58006018015 +118658 A0:n58006018015 A1:n58010023003 +118667 A0:n58010021008 +118669 A0:n58006018015 A1:n58010024003 +118678 A0:n58006018015 A1:n58010025004 +118686 A0:n58006018015 +118691 A0:n58010019003 A1:n58010025016 +A0:n58010025018 +118697 A0:n58010026004 +118701 A0:n58006018015 A1:n58010026009 +118709 A1:n58010026016 +118719 A0:n58010027008 A1:n58010027009 +A0:n58010027008 A1:n58010027012 +118724 A0:n58010028002 A1:n58010028003 +118734 A0:n58010028002 +118736 A0:n58010019003 A1:n58010029004 +118739 A1:n58010029005 A1:n58010029011;n58010029018;n58010029027 +118745 A0:n00000000000 A1:n58010029008 +118748 A0:n00000000000 A1:n58010029014 +118755 A1:n58010029011 +118761 A0:n00000000000 A1:n58010029024 +118763 A0:n58006018015 A1:n58010030004;n58010030010 +118765 A0:n58010029010 +118769 A0:n58010030007 +118772 A0:n58010030012 A1:n58010030014 +118779 A0:n00000000000 +118783 A0:n58010031006 +118785 A1:n58010019003 A1:n58010032005 +118791 A1:n58010019003 +A0:n58010019003 A1:n58010032010 +118802 A1:n58010019003 +118808 A1:n00000000000 +118814 A0:n58010019003 +118819 A0:n00000000000 +118823 A0:n58010019003 A1:n58010034008 +A0:n58010019003 A1:n58010034016 +A0:n58010034017 A1:n58010034019 +118830 A0:n58010034019 +118833 A0:n58010019003 A1:n58010035005 +118838 A0:n58010035007 A1:n58010035010 +118844 A0:n58010019003 A1:n58010036004 +118850 A0:n58010019003 A1:n58010036007 +A0:n58010019003 A1:n58010036013 +118860 A0:n58010029008 +A0:n58010037007 +118864 A0:n58010037007 +118871 A0:n58010038003 +118874 A0:n58010038003 +118876 A0:n58010038014 +118897 A1:n00000000000 +118902 A1:n58011001006 +118906 A1:n58011002006 +118910 A0:n58006018015 A1:n58011003003 +A1:n58011003005 +118920 A0:n00000000000 +118922 A1:n00000000000 +A0:n58011003014 +118930 A0:n58011004004 A1:n58011004003 A2:n58011004009 +118935 A1:n58011004014 +118938 A0:n58011004021 +118948 A0:n58011004004 +118950 A0:n58011004004 +118953 A1:n58011005002 +118956 A0:n58011005002 A1:n58011005007 +118960 A1:n58011005002 +118962 A1:n58011005013 A0:n58011005015 +118970 A1:n58011005002 A2:n58011005021 +A0:n58011005002 A1:n58011005023 +118978 A0:n00000000000 +118980 A0:n58011006006 +A0:n58011006010 +118983 A0:n00000000000 +118987 A0:n58011006012 +118990 A0:n00000000000 A1:n58011006018 +118996 A1:n58011007003 +119000 A1:n00000000000 +A1:n58011007003 +A0:n58011007003 A1:n58011007010 +119011 A0:n58011007003 A1:n58011007020 +119022 A1:n58011008003 +119024 A0:n58011008003 +A0:n58011008003 +119028 A0:n58011008003 A1:n58011008010 +119030 A0:n58011008003 A1:n58011008008 +119034 A0:n58011008003 +119036 A0:n58011008003 A1:n58011008018 +119038 A0:n58011008003 +119040 A0:n58011008003 +119049 A0:n58011008003 +119061 A0:n58011008003 A1:n58011010007 +119065 A0:n58011010007 A1:n58011010005 +119081 A0:n58011008003 A1:n58011011005 +119088 A0:n58011008003 A1:n58011011018 +119090 A0:n58011010013 +119095 A1:n58011008003 +A1:n58011012007 +119120 A0:n58011013004 +119124 A0:n58011004004;n58011005002;n58011007003;n58011008003;n58011011004 A1:n58011013009 +119130 A0:n58011004004;n58011005002;n58011007003;n58011008003;n58011011004 A1:n58011013012 +119132 A0:n58011004004;n58011005002;n58011007003;n58011008003;n58011011004 A1:n58011013012 +119134 A0:n58011004004;n58011005002;n58011007003;n58011008003;n58011011004 +119146 A0:n58011004004;n58011005002;n58011007003;n58011008003;n58011011004 A1:n58011014003 +A0:n58011014004 +119150 A0:n58011014004 A1:n58011014007 +119154 A0:n58011014004 A1:n58011015004 +119158 A0:n58011014004 +119160 A0:n58011014004 A1:n58011015011 +119162 A0:n58011014004 +119165 A0:n58011014004 A1:n58011016003 +119172 A1:n58011016011 A0:n58011016013 +119180 A0:n58011016013 A2:n58011016019 A1:n58011016020 +119184 A0:n58011017003 A1:n58011017005 +119188 A1:n58011017003 +119192 A1:n58011017009 A0:n58011017014 +119196 A0:n58011017003 A1:n58011017013 +119199 A1:n58011018007 +119203 A2:n58011018008 A1:n58011018009 +119206 A0:n58011017014 +119211 A0:n58011019009 +119220 A0:n58011017014 A1:n58011019011 +119224 A0:n00000000000 +A0:n58011020006 A1:n58011020008;n58011020011 +119234 A0:n58011021002 +119239 A0:n58011021002 A1:n58011021004 +119241 A0:n58011021002 +119250 A0:n58011022002 +119257 A0:n58011022002 +119263 A0:n58011022002 +119266 A1:n58011023002 +A1:n58011023002 +119274 A0:n58011023008 A1:n58011023012 +119280 A1:n58011023008 A1:n58011023019 +119289 A0:n58011024002 A1:n58011024007 +119294 A0:n58011024002 A1:n58011025003;n58011025010 +119296 A0:n58011024002 +119303 A0:n58011024002 A1:n58011025012 +119308 A0:n58011024002 A1:n58011026008 +119317 A0:n58011024002 +119322 A0:n58011024002 A1:n58011027003 +119325 A1:n58011024002 A1:n58011027007 +119334 A0:n58011024002 +A0:n58011024002 A1:n58011027012 +119337 A0:n58011024002 A1:n58011028004;n58011028007 +119348 A0:n00000000000 A1:n58011028015 +119351 A0:n58011028013 A1:n58011028017 +119354 A0:n58011022008 A1:n58011029005 +119364 A0:n58011029014 A1:n58011029011 +119367 A1:n58011029014 +119372 A0:n58011030003 +A1:n58011030003 +119382 A0:n58011031002 +119384 A0:n00000000000 +A0:n58011031002 A1:n58011031011 +119393 A0:n58011032006 A1:n58011032002 +119395 A0:n58011032010 A1:n58011032008 +119399 A0:n58011032006 +119415 A0:n58011033001 A1:n58011033005 +119417 A0:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 A1:n58011033007 +119419 A0:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 A1:n58011033009 +119421 A0:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 A1:n58011033011 +119424 A0:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 A1:n58011034002 +119427 A0:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 A1:n58011034005 +119430 A1:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 +119439 A0:n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022 A1:n58011034014 +A0:n58011035002 A1:n58011035006 +119449 A1:n58011035008 +119451 A0:n58011035008 A1:n58011035014 +119457 A0:n58011035008 A1:n58011035017 +119464 A0:n58011036001 A1:n58011036006 +119470 A1:n58011036001 +A1:n58011036001 +A1:n58011036001 +119476 A0:n58011036001 +A0:n58011036001 +119483 A1:n58011036001 +A1:n58011036001 +119486 A1:n58011036001 +119507 A1:n58011014004;n58011020006;n58011021002;n58011022002;n58011023002;n58011023008;n58011022008;n58011031002;n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022;n58011035002;n58011035008;n58011036001 +119512 A0:n58011039002 A1:n58011039011 +119521 A0:n58011040002 A1:n58011040006 +119526 A1:n58011014004;n58011020006;n58011021002;n58011022002;n58011023002;n58011023008;n58011022008;n58011031002;n58011032012;n58011032013;n58011032014;n58011032015;n58011032016;n58011032019;n58011032022;n58011035002;n58011035008;n58011036001 +119530 A0:n58006018015 A1:n58012001008 +119532 A0:n58012001008 +119536 A0:n58006018015 A1:n58012001010;n58012001016 +119545 A0:n58012001003 A1:n58012001023 +119547 A0:n58012001023 +119550 A0:n58006018015 +119562 A0:n58012002015 AA2:n58012002014 +119565 A0:n58012002010 A1:n58012002017 +119568 A0:n58012002006 A1:n58012002018 +119576 A0:n58012002006 +119578 A0:n58010019003 A1:n58012003005 +119580 A0:n58012002006 A1:n58012003011 +119590 A0:n58010019003 +119594 A1:n58010019003 +119598 A0:n58010019003 +119602 A0:n58010019003 +119604 A0:n58010019003 A1:n58012005004 +119611 A0:n58012005005 A2:n58012005006 +119615 A0:n58012005010 A1:n58012005014 +119619 A1:n58012005010 +119622 A1:n58012005010 +119625 A0:n58012006004 A1:n58012006001 +119627 A1:n58012006003 A0:n58012006004 +119629 A0:n58012006004 A1:n58012006009 +119633 A0:n58012006004 A1:n58012006010 +119636 A0:n58010019003 +119640 A2:n58012007006 A1:n58012007009 +119648 A1:n58012007013 A0:n58012007016 +119672 A0:n58006018015 A1:n58012009007 +119675 A1:n58006018015 +119679 A1:n58006018015 A2:n58012009017 +119685 A0:n58006018015 +119694 A0:n00000000000 AA2:n58012010010 +119696 A0:n58012010001 +119701 A0:n00000000000 +119704 A0:n58006018015 A1:n58012010021 +119714 A0:n00000000000 +A0:n58012011003 A1:n58012011008;n58012011010;n58012011013 +119729 A1:n00000000000 +A0:n58012011003 A1:n58012011016 A2:n58012011021 +119733 A1:n58012012004 +119737 A1:n58012012008 +119739 A0:n58010019003 A1:n58012012004;n58012012008 +119743 A0:n58010019003 A1:n58012013002 A2:n58012013006 +119751 A0:n58012013011 +119753 A1:n58012013011 +119755 A0:n58010019003 A1:n58012014001;n58012014007 +119765 A0:n58012014010 A1:n58012014013 +119768 A0:n58010019003 A1:n58012015004;n58012015016;n58012015020;n58012016003;n58012016005 +119771 A0:n58012015003 +119782 A0:n58012015012 +A0:n58012015012 +119787 A1:n58012015022 +119801 A0:n58012016008 A1:n58012016014 +119806 A0:n58010019003 +119810 A0:n58012016007 A1:n58012017007 +A0:n58012016007 A1:n58012017009 +119814 A1:n58012016007 +119819 A0:n58012016007 A1:n58012017013 +119823 A0:n58012016007 A1:n58012017020 +119827 A0:n58010019003 +A1:n00000000000 +119830 A1:n58012018007 +119846 A0:n58011022008 +A0:n58012019009 A1:n58012019012 +119849 A2:n58012019013 A1:n58012019014 +119854 A0:n58012019009 A1:n58012020005 +119856 A1:n58012020008;n58012020011 +119859 A0:n58012020007 A1:n58012020010 +119862 A1:n58012020007 +119868 A1:n00000000000 +119870 A0:n58012021007 +119876 A0:n58010019003 +119882 A0:n58012022007 +119892 A1:n58012023003 +119902 A1:n58012023013 +119912 A0:n58012024007 A1:n58012024009 +119916 A0:n58010019003 +119918 A0:n58010019003 A1:n58012025005 +119920 A0:n58012023008 +119924 A0:n58012025008 +119926 A0:n58012019009 A1:n58012025015 +119930 A0:n58012025005 +119938 A1:n58006018015 A1:n58012025020 +119944 A0:n58012026003 A1:n58012026005 +119948 A0:n58012025020 +A0:n58012025020 +119953 A0:n58012026014 A1:n58012026016;n58012026019;n58012026023 +119966 A0:n58012027003 A1:n58012027009 +119969 A1:n00000000000 +119972 A1:n00000000000 +119974 A0:n58012027016 +119977 A1:n00000000000 +119981 A0:n58012025023 A1:n58012028002 +A0:n58012025023 A1:n58012028006 +119986 A0:n58012025023 A1:n58012028012 +120000 A0:n58012029006 +120003 A0:n58013001002 +120007 A0:n58010019003 A1:n58013002002 +120011 A0:n58013002009 +120013 A0:n58013002009 A1:n58013002011 +120015 A0:n58010019003 A1:n58013003003 +120019 A1:n58010019003 +120021 A1:n00000000000 +120041 A1:n58013004010;n58013004013 A0:n58013004016 +120047 A1:n58010019003 +120049 A0:n00000000000 +120052 A0:n58013005007 +120056 A0:n58013004016 A1:n58013005012 +120061 A0:n58013004016 A1:n58013005017 +120063 A0:n58012025023 +120065 A0:n58013006003 +120070 A1:n58012025023 +120072 A1:n58013006010 A2:n58013006012 A0:n58013006013 +120075 A0:n58010019003 A1:n58013007003 +120077 A0:n00000000000 +120080 A0:n58013007005 A2:n58013007007 A1:n58013007009 +120091 A0:n58010019003 A1:n58013007015 +A0:n58010019003 A1:n58013007020 +120111 A1:n58010019003 +120115 A1:n58013009012 +120123 A1:n58013009020 +120125 A0:n00000000000 +A0:n58012025023 A1:n58013010002 +120130 A0:n58013010012 +120132 A1:n58013010008 A0:n58013010012 +120137 A0:n58010011004 A1:n58013010011 +120139 A1:n58013011006 +120155 A1:n58013011017 +120163 A0:n58013012003 A1:n58013012011 +120173 A0:n58013012003 +120175 A0:n58012025023 +120184 A0:n58012025023 A1:n58013013009 +120187 A0:n58012025023 A1:n58013014006 +120189 A0:n58013014006 +120193 A0:n58013014006 +A0:n58012025023 A1:n58013014009 +120198 A0:n58012025023 A2:n58013015010 A1:n58013015005 +120209 A0:n58013015014 A2:n58013015017 +120219 A0:n58010019003 A1:n58013016003;n58013016005 +120223 A1:n58013016013 +120226 A1:n58010019003 A1:n58013017003 +120228 A0:n00000000000 +120231 A0:n58010019003 +120234 A0:n58013017007 +120241 A0:n58013017003 A1:n58013017015 +120246 A0:n58013017003 A1:n58013017020 +120249 A0:n58013017003 +120254 A0:n58010019003 +120258 A1:n58005011004 +120262 A0:n58005011004 A1:n58013018008 +120266 A1:n58005011004 +A0:n58005011004 A1:n58013018014 +120270 A0:n58011032006 A1:n58013019005 +120272 A0:n58010019003 A1:n58013019004 +120275 A1:n58011032006 A2:n58013019009 +120283 A0:n58013020003 A1:n58013020011 +120300 A0:n58013020003 A1:n58013021002 +120307 A0:n58010019003 A1:n58013021010 +120311 A0:n58013020003 A1:n58013021016 +120331 A0:n58011032006 A1:n58013022003 +120334 A0:n58013022004 A1:n58013022007 +120343 A0:n58011032006 A1:n00000000000 A2:n58013022015 +120345 A0:n58013022004 A1:n58013023006 +120350 A1:n58013023003 +120355 A0:n58013023003 +A0:n58011032006 A1:n58013023013 +120358 A0:n58013022004 A1:n58013024004;n58013024009 +120361 A0:n00000000000 +120367 A1:n58013024011 A0:n58013024012 +120392 A0:n59001001001 +120397 A0:n59001002004 A1:n59001002002 +120401 A0:n59001002004 +A0:n59001002004 +120409 A0:n59001003004 A1:n59001003009 +120416 A0:n59001004003 A1:n59001004004 +120424 A0:n59001002004 +120429 A0:n59001005003 A1:n59001005006 +120431 A0:n59001005003 +120434 A0:n59001005011 A1:n00000000000 A2:n59001005012 +120439 A0:n59001005011 +120442 A1:n59001005006 A2:n59001005019 +120445 A0:n59001005003 +120449 A0:n59001005003 A1:n59001006005 +120452 A0:n00000000000 +A0:n59001006009 +120456 A1:n59001006011 +120458 A1:n59001006011 +120461 A0:n59001007005 +120466 A0:n59001007005 A1:n59001007009 +120480 A0:n59001009004 +120500 A0:n59001010003 +120502 A0:n59001011004 +120509 A0:n59001011004 A1:n59001011011 +120516 A0:n59001011014 +120523 A0:n59001011019 +120532 A0:n59001011027 +120536 A0:n59001012003 A1:n59001012005 +120541 A0:n59001012002 A1:n59001012011 +120547 A0:n59001007012 A1:n59001012014 A2:n59001012017 +120549 A0:n00000000000 A1:n59001012018 +120552 A1:n59001013001 +A0:n59001013001 +120557 A1:n59001013001 +120565 A0:n59001013016 A1:n59001013017 +120570 A1:n59001014001 +120575 A1:n59001014001 +120577 A1:n59001014001 +120581 A0:n59001015003 +A0:n59001015003 A1:n59001015006 +120587 A1:n59001015009 +A0:n59001015009 A1:n59001015012 +120591 A1:n59001016003 +120604 A0:n59001017002;n59001017006 +120618 A1:n59001017013 +A0:n59001017013 A1:n59001018003 +120632 A0:n59001019002 +120643 A0:n59001019008 +120647 A0:n59001019008 +120657 A0:n59001020001 A1:n59001020004 +120659 A0:n59001019002 A1:n59001021004;n59001021006 +120667 A0:n59001019002 A1:n59001021013 +120672 A0:n59001021013 A1:n59001021016 +A0:n59001021013 A1:n59001021018 +120685 A0:n59001019002 A1:n59001022010 +120697 A0:n59001023010 +120699 A0:n59001023012 A1:n59001023015 +120708 A0:n59001023003 A1:n59001024003 +120711 A0:n59001023003 +120714 A0:n59001023003 A1:n59001024009 +120719 A0:n00000000000 +120727 A0:n00000000000 +120744 A0:n59001026002 A1:n59001026004 +120748 A0:n59001026002 A1:n59001026008 +120752 A0:n59001026002 A1:n59001026012 +120770 A0:n00000000000 A1:n59001027013;n59001027015 +120780 A0:n00000000000 A1:n59001027021 +120789 A0:n59002001001 A1:n59002001008 +120801 A0:n59002002007 +120811 A0:n59002002015 +120818 A0:n59002001001 +120821 A0:n59002002007 A1:n59002003007 +120827 A0:n59002001001 +120829 A0:n59002003012 +120835 A0:n59002001001 A2:n59002003018 +120837 A0:n59002003020 +120840 A0:n59002003018 +120846 A1:n59002001001 +120854 A0:n59002005002 +120861 A0:n59002005007 A1:n59002005010 +120874 A0:n59002005007 A1:n59002005020 A2:n59002005023 +120876 A0:n00000000000 A1:n59002005024 +120880 A0:n59002006001 A1:n59002006005 +120886 A0:n59002006008 A1:n59002006010 +120890 A0:n59002006012 A1:n59002006014 +120896 A0:n59002007002 A1:n59002007006 +120901 A1:n59002007006 +120908 A0:n59002005002 A1:n59002008003 +120912 A0:n00000000000 A1:n59002008011 +120919 A0:n59002005002 +120922 A0:n59002005002 +120924 A0:n59002005002 A1:n59002009004 +A1:n59002005002 +120936 A0:n59002010001 A1:n59002010005 +120938 A0:n59002010001 +120946 A0:n59002005007 +120948 A0:n00000000000 +A0:n59002011003 +120952 A0:n00000000000 +120956 A0:n59002005002 +120958 A0:n59002005002 +120963 A0:n59002005002 +120966 A0:n59002005002 +120971 A1:n59002005002 +A0:n59002005002 A1:n59002012011 +120979 A0:n00000000000 A1:n59002013008 +120981 A0:n59002013010 A1:n59002013011 +120991 A0:n59002014009 A1:n59002014007 +A1:n59002014010 A0:n59002014009 +120997 A0:n59002014009 A1:n59002014011 +120999 A0:n59002014018 A1:n59002014019 +121002 A0:n59002014018 A1:n59002014020 +121011 A0:n59002015002;n59002015004 A1:n59002015011 +121016 A2:n59002016004 A0:n59002016003 +121021 A0:n59002015002;n59002015004 +121024 A0:n59002015002;n59002015004 +121026 A0:n59002015002;n59002015004 +121029 A0:n59002014004 A2:n59002016016 A1:n59002016018 +121044 A0:n59002017004 A1:n59002017008 +121051 A0:n59002018003 +121055 A0:n59002018004 A1:n59002018005 +121058 A0:n59002018007 A1:n59002018008 +A0:n59002014004 A2:n59002018011 A1:n59002018013 +121069 A0:n59002018018 A2:n59002018019 A1:n59002018026 +121077 A0:n59002019001 +121084 A0:n59002014004 +121088 A0:n59002019012 +121090 A0:n59002019012 +121095 A0:n59002020005 A1:n59002020003 +A0:n59002020005 +121112 A1:n59002021001 +A0:n59002021001 A1:n59002021010 +121121 A0:n59002020005 +121125 A0:n59002022004 +121135 A1:n59002022014 +121137 A1:n59002023004 +121141 A0:n59002023004 A1:n59002023007;n59002023013 +121143 A0:n59002023009 A1:n59002023011 +121148 A1:n59002023007 A2:n59002023014 +121156 A0:n59002020005 +121160 A1:n59002024006 +121176 A1:n59002025004 +A0:n59002025004 A1:n59002025013 +121183 A0:n59002025004 +121206 A0:n59003001005 +121210 A0:n59001001001;n59003001003 A1:n59003001010 +121213 A0:n59003002004 +121220 A0:n59003002006 +121225 A0:n59003002013 A1:n59003002019 +121239 A0:n59001001001;n59003001005;n59003001003 A1:n59003003006 +121242 A1:n59003003014 A1:n59003003015 +121250 A0:n59001001001;n59003001005;n59003001003 A1:n59003003019 +A0:n59003001005 +121261 A1:n59003004004 +A1:n59003004004 +121270 A0:n00000000000 +A0:n59003004018 +121281 A0:n59003005004 A1:n59003005009 +A0:n59003001005 +121287 A0:n59003005013 A1:n59003005015 +121298 A1:n59003006010 +121304 A0:n59003006010 A1:n59003006020 +121309 A0:n59003006010 A1:n59003006024 +121315 A1:n59003006010 +121330 A1:n59003007003 +121332 A1:n59003007003 +121340 A0:n59003008004 A1:n59003008003 +A1:n59003008005 A0:n59003008004 +121351 A0:n59001001001;n59003001005;n59003001003 A1:n59003009005;n59003009007 +121359 A0:n59001001001;n59003001005;n59003001003 A1:n59003009013 +121371 A0:n59003010006;n59003010008 +121378 A0:n59003010014 +121389 A0:n59003011003 A1:n59003011010;n59003011013 +121398 A0:n59003012005 A1:n59003012007 +121401 A0:n59003012005 A1:n59003012006 +121407 A0:n59003012012 A1:n59003012015 +121416 A0:n59003013001 A1:n59003013013 +121429 A0:n59003012003 A1:n59003014003;n59003014007 +121439 A0:n59003012003 +121441 A0:n59003012003 +121451 A0:n59003015005 +121491 A1:n59003018001 +121493 A0:n00000000000 A1:n59003018009 +121509 A0:n59004001012 +121514 A0:n59003012003 +121517 A0:n59003012003 +A0:n59003012003 +121520 A0:n59003012003 +121523 A0:n59003012003 A1:n59004002011 +A0:n59003012003 +A0:n59003012003 +121527 A0:n59003012003 +121529 A0:n59003012003 +121533 A0:n59004002021 +121535 A0:n59003012003 +121538 A0:n59003012003 +121541 A0:n59003012003 +121547 A0:n59003012003 +121550 A0:n59004004001 +121563 A1:n59004004013 A1:n59004004017 +121571 A1:n59004004016 A1:n59004004021 +121573 A0:n59004004001 +121578 A0:n59004005006 +121581 A0:n59004004023 A1:n59004005012 +121585 A0:n59004004023 A1:n59004005013 +121591 A0:n59004004023 A1:n59004006004 +121593 A0:n59004005006 +121597 A0:n59004006008 A1:n59004006009 +121600 A0:n59004006008 A2:n59004006011 A1:n59004006014 +121603 A1:n59003012003 A1:n59004007004 +121607 A0:n59003012003 A1:n59004007008 +121611 A0:n59004007008 +121614 A0:n59003012003 AA2:n59004008003 +121618 A0:n59004008003 AA2:n59004008006 +121620 A0:n59004008009 A1:n59004008008 +121624 A0:n59004008013 A1:n59004008012 +121637 A1:n59004009002 +121643 A1:n59004008013 +121647 A0:n59004010003 A1:n59004010006 +121650 A0:n59004011004 A1:n59004011003 +121654 A0:n00000000000 A1:n59004011007 +121657 A0:n00000000000 A1:n59004011011 +121661 A0:n59004011006;n59004011009 A1:n59004011014 +121664 A0:n59004011006 A1:n59004011017 +121669 A0:n59004011004 A1:n59004011020 +121682 A0:n59004012003 A1:n59004012008;n59004012010 +A0:n59004012003 +121685 A0:n59004012003 +121691 A0:n00000000000 A1:n59004012018 +121694 A0:n59004013004 +121697 A0:n00000000000 +121701 A0:n59004013004 +121707 A0:n59004013004 +121711 A0:n59004013004 +121713 A0:n59004013004 +121716 A0:n59004014001 A1:n59004014005 +121729 A0:n59004014010 +121732 A1:n59004014010 +121735 A0:n59004015004 +121740 A0:n59004015007 +121742 A0:n59004013004 +121744 A0:n59004013004 A1:n59004015013;n59004015015 +121750 A0:n59004013004 +121761 A0:n00000000000 A1:n59004017004 +121763 A0:n59004017001 A1:n59004017003 +121766 A0:n00000000000 +121770 A0:n59005001004 +121774 A0:n59005001004 +A0:n59005001004 +121781 A0:n59005001009 +121785 A0:n59005002002 +121798 A1:n59005003002;n59005003006 +121808 A0:n59005003010 A1:n59005003019 +121814 A0:n59005001004 +121818 A0:n59005001004 +121824 A0:n59005004005 A1:n59005004009 +121829 A1:n59005004003 +121832 A0:n59005004003 +121837 A0:n00000000000 +121843 A0:n59005004018 +A0:n59005001004 +121849 A0:n59005001004 +A0:n59005001004 A1:n59005005009 +121857 A0:n59005001004 A1:n59005006004 +A0:n59005001004 A1:n59005006004 +121862 A0:n59005006004 A1:n59005006007 +121866 A0:n59005007003 +121872 A0:n59005007003 +121875 A0:n59005007011 A1:n59005007015 +121881 A0:n59005007011 +121885 A0:n59005007015 A1:n59005007023;n59005007025 +121889 A0:n59005008003 +121892 A0:n59005007003 A1:n59005008006 +121901 A0:n59005008010 +121904 A0:n59005009003 +121909 A1:n59005009003 +A0:n59005009003 +121916 A0:n59005009011 +121918 A0:n59005010003 A1:n59005010010 +121928 A0:n59005010011 +121933 A0:n59005010003 +A0:n59001001001;n59005010003;n59003001003 A1:n59005011004 +121936 A0:n00000000000 +121940 A0:n59005010003 A1:n59005011006 +121945 A0:n59005010003 A1:n59005011011 +121959 A0:n59005012004 A1:n59005012017 +121984 A0:n59005012004 +A0:n59005013002 +121989 A0:n59005013002 +A0:n59005013007 +121992 A0:n59005013007 +A0:n59005014002 +121997 A0:n59005014002 A1:n59005014007 +122003 A0:n59005014007 +122006 A0:n59005014007 A1:n59005014002 +122018 A0:n59005015003 A1:n59005015008 +122020 A0:n59005014002 +122022 A1:n59005015011 A0:n59005015013 +122029 A0:n59005015008 A1:n59005015015 +A1:n59005015015 A2:n59005015019 +122033 A0:n59005012004 A2:n59005016003 A1:n59005016005 +122038 A0:n59005012004 +122042 A1:n59005012004 +122044 A0:n59005016014 +122047 A0:n59005016014 +122055 A0:n59005017001 +122058 A0:n00000000000 +122061 A0:n00000000000 +122072 A0:n59005017001 +122077 A0:n59005018006 A1:n59005018007 +122081 A0:n59005018011 A1:n59005018014 +122091 A1:n59005019004 +122096 A0:n59005019013 A1:n59005019014 +122099 A0:n59005019001 +122102 A0:n00000000000 A1:n59005020005 +122108 A0:n59005020004 A1:n59005020011 +122114 A0:n59005020004 A1:n59005020017 +122148 A1:n60001002015;n60001002018 A2:n60001002016 +122165 A0:n60001003003 A1:n60001003018 +122169 A0:n60001003020 +122183 A1:n60001004002 +122192 A1:n60001001006 +122198 A1:n60001005009 +122204 A0:n60001001006 +122208 A0:n60001006008 +A1:n60001001006 +122222 A0:n60001007008 +122226 A1:n60001007008 +A1:n60001007003 +122240 A0:n60001001006 A1:n60001008001 +A0:n60001001006 A1:n60001008003 +122247 A0:n60001001006 +A0:n60001001006 +A0:n60001001006 +122253 A1:n60001008013 +A0:n60001001006 A1:n60001009003 +122264 A0:n60001010007 +122266 A0:n60001010007 +122274 A0:n60001010007 +A0:n60001010007 +122281 A0:n60001011011 +122287 A0:n60001011011 A1:n60001011017;n60001011022 +122298 A1:n60001012008 A2:n60001012001 +122304 A0:n60001010007 A2:n60001012004;n60001012005;n60001012006 A1:n60001012009 +122308 A1:n60001012010 A2:n60001012013 +122312 A0:n00000000000 A1:n60001012017 +122317 A1:n60001012019 +122322 A0:n60001012027 +A1:n60001012028 A0:n60001012027 +122326 A0:n60001001006 A1:n60001013004 +122332 A0:n60001001006 +122334 A0:n60001001006 +122337 A1:n60001013015 A2:n60001013014 +122348 A0:n60001001006 +122359 A0:n60001015006 A1:n60001015005 +122370 A1:n60001016003 +122372 A0:n00000000000 +122379 A0:n60001001006 A1:n60001017007 +122382 A0:n60001015006 +122394 A1:n60001001006 A1:n60001017018 +A0:n60001001006 +122402 A1:n60001001006 +122419 A1:n60001019009 +122424 A1:n60001019009 +122438 A0:n60001021006 A1:n60001021009 +122445 A0:n60001021006 A1:n60001021013 A2:n60001021014 +122458 A0:n60001021004 A1:n60001022002 +122470 A0:n60001021004 A1:n60001022015 +122472 A1:n60001021004 +122482 A0:n60001023009 +122484 A0:n60001023009 +122497 A1:n60001024015 +122503 A0:n60001024018 +122508 A0:n60001025003 +122518 A1:n60001025013 +122522 A0:n60001021004 A1:n60002001004;n60002001007;n60002001009;n60002001011;n60002001014 +122542 A0:n60001021004 A1:n60002002007 +122546 A1:n60001021004 +122550 A0:n60001021004 +122555 A0:n60001021004 +122559 A0:n60002004004 +122563 A1:n60002004004 +122573 A0:n60002005004 +A1:n60002005002 +122580 A0:n60001021004 A1:n60002005014 A2:n60002005016 +122589 A0:n60002006006;n60002006020 +122593 A0:n60002005016 A1:n60002006009 +122602 A0:n00000000000 +122607 A1:n60002006015 +122613 A0:n60001021004 +122615 A0:n00000000000 +122618 A1:n60002007010 A0:n60002007013 +122620 A0:n00000000000 +122622 A1:n60002007014 +122633 A0:n60002008007 +122636 A0:n60002007007 +122640 A1:n60002007007 +122653 A0:n60002007006 A1:n60002009014 +122660 A0:n60002005016 A1:n60002009019 +122676 A1:n60002007006 +122679 A1:n60002007006 +122681 A0:n60001001001 A1:n60002011007 +122686 A0:n60002011001 A1:n60002011010 +122691 A0:n60002011011 +122701 A0:n60002011001 A1:n60002012002 +122706 A0:n60002012006 A1:n60002012013 +122714 A0:n60002012006 +A0:n60002012006 A1:n60002012023 +122721 A1:n60002011001 A2:n60002013004 +122731 A0:n60002013009 +122737 A1:n60002014002 +122751 A0:n60002011001 +A0:n60002011001 A1:n60002015014 +122763 A0:n60002011001 A1:n60002016011 +122774 A0:n60002011001 A1:n60002017001 +122777 A0:n60002011001 A1:n60002017004 +122780 A0:n60002011001 A1:n60002017007 +122783 A0:n60002011001 A1:n60002017010 +122786 A1:n60002018002 A2:n60002018008 +122809 A0:n60002019009 A1:n60002019010 +122812 A0:n60002019009 +122818 A0:n60002018002 +122820 A1:n60002018002 +A0:n60002018002 +122824 A0:n60002018002 +122826 A0:n60002018002 +A0:n60002018002 +122835 A1:n60002018002 +122839 A0:n60002021007 +122843 A0:n60002021007 A2:n60002021011 A1:n60002021013 +122846 A0:n60002018002 AA2:n60002021017 +122853 A0:n60002022001 A1:n60002022002 +122855 A1:n60002022007 +122862 A1:n60002021007 +122864 A0:n60002023001 +A0:n60002021007 +122867 A0:n60002021007 +122869 A0:n60002021007 A1:n60002022011 A2:n60002023011 +122871 A0:n60002020018 +122878 A0:n60002024001 A1:n60002024003 +122889 A0:n60001001001;n60002011001;n60002018002 +122892 A0:n60001001001;n60002011001;n60002018002 +122896 A1:n60002018002 +122901 A1:n60002025004 +122903 A1:n60002018002 +122915 A1:n60003001002 A2:n60003001006 +122923 A0:n60003001010 A1:n60003001013 +122933 A1:n60003001010 +A0:n60003001010 A1:n60003002006 +122942 A0:n00000000000 +122983 A0:n60003005007 +122986 A0:n60003005007 A1:n60003005013 +122988 A1:n60003005007 A2:n60003005017 +122994 A0:n60003006002 A1:n60003006005 +122999 A0:n60003006002 A1:n60003006007 +123003 A0:n60003001002 +123006 A0:n60003001002 A1:n60003006017 +123012 A0:n60003007002 +123020 A0:n60003007002 A2:n60003007011 A1:n60003007013 +123030 A1:n60003007024 +123044 A0:n60002011001 A1:n60003009003 +123054 A0:n60002011001 +123058 A1:n60002011001 +123061 A0:n60002011001 A1:n60003009018 +123064 A0:n00000000000 A1:n60003010005;n60003010007 +123066 A0:n60003010003 A1:n60003010004 +123068 A0:n60003010003 A1:n60003010008 +123071 A0:n60003010003 A1:n60003010012 +123080 A0:n60003010016 A1:n60003010020 +123083 A0:n60003010003 +123087 A0:n60003010003 A1:n60003011007 +123089 A0:n60003010003 A1:n60003011009 +123092 A0:n60003010003 A1:n60003011012 +123109 A0:n00000000000 A1:n60003012017 +123114 A0:n00000000000 A1:n60003013005 +123124 A0:n60002011001 +123133 A1:n60002011001 +123135 A1:n60002011001 +123140 A0:n60002011001 A1:n60003015001 +123151 A0:n00000000000 A2:n60003015017 A1:n60003015018 +123166 A0:n60002011001 A1:n60003016006 +123170 A1:n60002011001 +A1:n60003016015 +123173 A0:n00000000000 A1:n60003016021 +123182 A0:n60002011001 +123184 A0:n60003017007 +123189 A0:n60002011001 +123191 A0:n60002011001 +123198 A0:n60003018003 +123204 A0:n60003018003 A1:n60003018012 A2:n60003018015 +123208 A1:n60003018003 +123211 A1:n60003018003 +123215 A1:n60003018003 +A0:n60003018003 A1:n00000000000 A2:n60003019007 +123222 A0:n60003019007 +123225 A0:n60003020008 +123233 A1:n60003020013 +123242 A1:n60003020016 +123249 A1:n60003021003 A0:n60003021004 +123271 A1:n60003021020 +123274 A2:n60003022010 A1:n60003022011;n60003022013;n60003022015 +123283 A0:n60004001001 +123290 A0:n60004001006 A1:n60004001009 +123304 A0:n60002011001 A1:n60004002014 +123307 A0:n60004001001 +123309 A0:n60004001013 +123314 A0:n60004003005 +123320 A0:n60002011001 A1:n60004003007 +A0:n60002011001 +123333 A1:n60004003009 +123335 A0:n60004004006 +123343 A0:n60004003009 +123345 A0:n60004005001 A1:n60004005003 A2:n60004005006 +123349 A0:n60004001001 +A0:n60004005006 A1:n60004005008;n60004005010 +A0:n00000000000 +123359 A1:n00000000000 A2:n60004006005 +123362 A1:n60004006005 +123367 A0:n60004006005 +123375 A0:n60004007004 +123377 A0:n60002011001 +123379 A0:n60002011001 +123389 A0:n60002011001 A1:n60004008006 +123392 A0:n60004008010 A1:n60004008012 +123402 A0:n60004010001 A1:n60004010004 +123407 A0:n60004010001 A1:n60004010007 +123416 A0:n60004011002 +123422 A0:n60004011008 +123427 A1:n60004011013 A0:n60004011016 +123433 A1:n60004011022 +123454 A1:n60004012001 +123462 A0:n60004012007 +123466 A0:n60004012013 +123469 A0:n60004012001 +123474 A0:n60004012001 +123483 A1:n60004012001 +A0:n60004012001 +123486 A1:n60004012001 +123502 A0:n60004014008;n60004014015 +123507 A0:n60004015003 +123522 A0:n60004015003 +123524 A0:n60004015003 A1:n60004016010 +123535 A0:n60004017007 +123552 A0:n00000000000 A1:n60004017026 +123562 A1:n60004018004 +123568 A0:n60004018008;n60004018010 +123572 A0:n00000000000 +123580 A0:n60004019004 A2:n60004019011 A1:n60004019014 +123590 A0:n60001001001 A1:n60005001001 A0:n60005001007;n60005001009;n60005001020 +123602 A0:n60005001019 +A1:n60005001019 +123606 A0:n60004012001 A1:n60005002005 +123625 A0:n60004012001 +123634 A1:n60005004004 +123637 A0:n60004012001 A1:n60005004010 +123645 A1:n60005005002 A2:n60005005004 +123652 A0:n60005005005 A2:n60005005007 A1:n60005005009 +123657 A0:n60005005013 A1:n60005005014 +123660 A0:n60005005013 A2:n60005005016 A1:n60005005019 +123663 A1:n60004012001 +123672 A0:n60005006008 A1:n60005006010 +123679 A0:n60004012001 A1:n60005007003 +123684 A0:n00000000000 +123687 A0:n60004012001 +A0:n60004012001 +123695 A0:n60005008008 +A0:n60005008004 +A0:n60005008004 A1:n60005008013 +123699 A0:n60005008004 A1:n60005008012 +123701 A0:n60004012001 A1:n60005009001 +123705 A0:n60004012001 A1:n60005009017 +123716 A1:n60005009008 +123723 A0:n60005010003 A1:n60005010008 +123733 A0:n60004012001 +123735 A0:n60005010018 A1:n60004012001 +A0:n60005010003 A1:n60004012001 +A0:n60005010003 A1:n60004012001 +A0:n60005010003 A1:n60004012001 +123755 A0:n60005001007 +123758 A0:n60005001007 A2:n60005012003 +A0:n60005001007 +123761 A0:n60005001007 A1:n60005012018 +123770 A0:n60004012001 +A1:n60005013002 A0:n60005013006;n60005013008 +123782 A0:n60004012001 A1:n60005014002 +123802 A0:n00000000000 A1:n61001001012 +123818 A1:n61001002001;n61001002004 A2:n61001002002 +123841 A2:n61001003003 A0:n61001003007 A1:n61001003004 +123846 A0:n61001002011 A1:n61001003020 +123860 A0:n61001003018 A1:n61001004008 A2:n61001004007 +123868 A0:n61001001011 A1:n61001004024 +123882 A0:n61001001011 A1:n61001005005 +A0:n61001001011 A1:n61001005014 +123929 A0:n61001005014;n61001005020;n61001006006;n61001006012;n61001006018;n61001007006;n61001007012 +123931 A0:n61001005014;n61001005020;n61001006006;n61001006012;n61001006018;n61001007006;n61001007012 +123936 A0:n61001008001 A1:n61001008007;n61001008008;n61001008010 +123948 A0:n61001009005 +123952 A0:n61001009004 +A0:n61001009004 A1:n61001009009 +123964 A0:n61001010003 A1:n61001010011 +123971 A0:n61001010003 A1:n61001010008;n61001010010 +123974 A0:n61001010003 A1:n61001010012 +123977 A0:n61001010003 +123982 A2:n61001011005 A1:n61001011007 +123998 A0:n61001001001 A1:n61001012005 +124001 A0:n61001001001 A1:n61001012004 +124005 A0:n61001010003 +124007 A1:n61001010003 +124010 A0:n61001012015 +124014 A0:n61001001001 A1:n61001013011 +124022 A0:n61001001001 A1:n61001013012 +124026 A0:n61001001001 +124042 A0:n61001014013 A1:n00000000000 A2:n61001014018 +124045 A0:n61001001001 A1:n61001015014 +124048 A0:n61001015006 A1:n61001015013 +124057 A0:n61001001001 A1:n61001015005 +124060 A1:n61001016004 +124062 A0:n61001001001;n61001001010 A1:n61001016004 +A0:n61001001001;n61001001010 A2:n61001016007 A1:n61001016014;n61001016016 +124081 A0:n61001016010 A1:n61001017006;n61001017008 +124090 A1:n61001017009 A2:n61001017011 +124107 A0:n61001017027 +124113 A1:n61001018004 A0:n61001018005 +124116 A1:n61001018004 +124125 A0:n61001001001;n61001001010 A1:n61001019006 +124131 A0:n61001010003 +124133 A0:n61001010003 A1:n61001019007 +124136 A0:n61001019012 +124143 A0:n61001019019 +124146 A0:n61001019022 +124153 A0:n61001010003 A1:n61001020001 +124161 A0:n61001020006 +124166 A1:n61001021006 +124173 A1:n61001021016 +A0:n61001021016 +124192 A0:n61002001014 A1:n61002001016 +124197 A0:n61002001022 A1:n61002001021 +124200 A0:n61002001013 A1:n61002001022 +A0:n61002001013 A2:n61002001025 A1:n61002001027 +124207 A0:n61002002002 A1:n61002002006 +124217 A1:n61002002010 +124224 A0:n61002001013 A1:n61002003006 +124230 A0:n61002003010 +124236 A0:n61002003016 +124242 A0:n61002004005 +124244 A0:n61002004004 A1:n61002004005 +124248 A0:n61002004004 +A0:n61002004004 +124252 A1:n61002004005 +124257 A0:n61002004004 A1:n61002005003 +124263 A0:n61002004004 A1:n61002005007 +124267 A0:n61002004004 A1:n61002005012 A2:n61002005013 +124273 A0:n61002004004 A1:n61002006002 +124275 A0:n61002004004 +124277 A0:n00000000000 +A0:n00000000000 +A0:n61002004004 A1:n61002006009 +124283 A1:n61002007002 +124291 A0:n61002004004 A1:n61002007002 +124298 A0:n61002008006 +124308 A0:n61002008006 A1:n61002008013 +A0:n61002009002 A1:n61002009006;n61002009013;n61002010009;n61002010012 +124314 A0:n61002009002 A1:n61002009003 +124320 A1:n61002009007 +A0:n61002009002 A1:n61002009007 +124330 A0:n00000000000 +124333 A0:n00000000000 A1:n61002010011 +124337 A0:n61002010013 A1:n61002010015 +124339 A0:n61002010013 +124348 A0:n61002011002 A1:n61002011015 +124360 A1:n61002012005 +124368 A0:n61002010013 A1:n61002012013 +A0:n61002010013 +124375 A1:n61002010013 +A0:n61002010013 +124380 A0:n61002010013 A1:n61002013009 +124388 A0:n61002010013 +124393 A0:n61002010013 +124395 A0:n61002010013 A1:n61002014001 +124402 A0:n61002010013 A1:n61002014009 +124406 A1:n61002014011 +124408 A0:n61002010013 A1:n61002014011 +124411 A0:n61002010013 A1:n61002015003 +124414 A1:n61002010013 +A0:n61002010013 A1:n61002015007 +124425 A0:n61002015012 A1:n61002015013 +124430 A0:n61002015009 A1:n61002016001 +124436 A0:n61002016006 +A0:n61002016006 A1:n61002016016 +124450 A1:n61002017006 +124456 A2:n61002017010 A1:n61002017012 +124460 A0:n61002010013 A1:n61002018001 +A0:n61002010013 A1:n61002018012 +124468 A0:n00000000000 A1:n61002018016 +124472 A1:n00000000000 +124475 A0:n61002010013 A1:n61002019001 A2:n61002019002 +124484 A0:n61002019011 +124486 A1:n61002019011 A2:n61002019013 +124489 A0:n61002018012 A1:n61002020005 +124505 A1:n61002018012 +A0:n61002018012 +124519 A0:n61002018012 A1:n61002021008 +124525 A0:n61002018012 +A0:n61002018012 +124529 A1:n61002021019 A2:n61002021017 +124533 A0:n61002022003 +124540 A0:n61002022007 +124547 A0:n61002022014 +124557 A0:n61001001001 A1:n61003001007 A2:n61003001005 +124560 A0:n61001001001 A1:n61003001016 +124567 A1:n61003001003 A1:n61003002004;n61003002014 +124569 A1:n61003002004 +124587 A0:n61003001003 A1:n61003003001 +124589 A0:n61003003012 +124602 A0:n61003003012 +124604 A0:n61003003012 +124617 A0:n61003004014 +124620 A0:n61003004016 +124625 A0:n61003005009;n61003005017;n61003006008 A1:n61003005003 +124628 A0:n61003003012 A1:n61003005004 +124640 A0:n61003005011 +124651 A1:n61003006005 +A0:n61003006005 +124663 A1:n61003007004;n61003007007 +124666 A1:n61003007004;n61003007007 +124680 A0:n61003008001 A1:n61003008006 +124697 A0:n61003009003 A1:n61003009005 +124704 A0:n61003009007 A1:n61003009008 +124706 A0:n61003009003 +124709 A0:n61003009003 A1:n61003009014;n61003009017;n61003009022 +124712 A0:n61003009016 +124717 A0:n61003009019 +124719 A0:n61003010003 +124729 A0:n61003010010 +124732 A1:n61003010013 +A1:n61003010013 +124741 A1:n61003010018;n61003010023 +124745 A1:n61003011001 +A0:n61003011005 +124755 A0:n61003008007 A1:n61003012005 +124757 A0:n61003008007 A1:n61003012005 +124767 A1:n61003012012 +A1:n61003012012 +124771 A1:n61003012016 +A1:n61003012016 +124783 A0:n61001001001;n61003008007;n61001001010 A1:n61003013003;n61003013005 +124787 A0:n61003013014 +124791 A0:n61003014002 A1:n61003014003 +A0:n61003014002 A1:n61003014006;n61003014008 +124807 A0:n61003014002 A1:n61003015006 +124817 A1:n61003015020 A2:n61003015019 +124820 A0:n61003015014 A2:n61003015022 +124827 A0:n61003015014 +124842 A1:n61003016016 A0:n61003016018;n61003016020 +124856 A0:n61003017003 +A0:n61003017001 +124864 A1:n61003017003 +A0:n61003017003 +124870 A0:n61003017003 +124896 A0:n62002001002;n62001001011 A1:n62001001005 +124898 A0:n62002001002;n62001001011 A1:n62001001007 +124903 A0:n62002001002;n62001001011 A1:n62001001012 +124908 A0:n62001001016 +124917 A1:n62001002003 +124919 A0:n62002001002;n62001001011 +124921 A0:n62002001002;n62001001011 +124923 A0:n62002001002;n62001001011 A2:n62001002011 A1:n62001002013 +124935 A1:n62001002013 A2:n62001002023 +124938 A0:n62002001002;n62001001011 A1:n62001003001 +124940 A0:n62002001002;n62001001011 A1:n62001003001 +A0:n62002001002;n62001001011 A1:n62001003002;n62001003004 A2:n62001003007 +124948 A0:n62001003010 A1:n62001003011 +124969 A1:n62001004002 A0:n62001004004 +124976 A1:n62001004007 +124983 A0:n62002001002;n62001001011 A1:n62001005006 +124987 A0:n62002001002;n62001001011 A2:n62001005012 +125002 A0:n62002001001;n62002001002;n62001001011 A1:n62001006005 +125005 A0:n62002001001;n62002001002;n62001001011 A1:n62001006004 +125012 A0:n62002001001;n62002001002;n62001001011 +A0:n62002001001;n62002001002;n62001001011 +125016 A0:n62002001001;n62002001002;n62001001011 A1:n62001006018 +125024 A0:n62002001001;n62002001002;n62001001011 +125032 A0:n62002001001;n62002001002;n62001001011 A1:n62001007013 +125042 A0:n62001007019 A1:n62001007025 +125048 A0:n62002001001;n62002001002;n62001001011 A1:n62001008006 +125052 A0:n62002001001;n62002001002;n62001001011 A1:n62001008004 +125054 A0:n62002001001;n62002001002;n62001001011 A1:n62001008007 +125063 A0:n62002001001;n62002001002;n62001001011 A1:n62001009004 +125072 A0:n62001005015 A2:n62001009012 A1:n62001009014 +125077 A0:n62001005015 A1:n62001009017 +125083 A0:n62002001001;n62002001002;n62001001011 +125086 A0:n62002001001;n62002001002;n62001001011 +125088 A0:n62002001001;n62002001002;n62001001011 A1:n62001010008 +125101 A0:n62002001002 A1:n62002001003 A2:n62002001005 +125105 A0:n62002001001 +125109 A0:n62002001011 +A0:n62002001001;n62002001002;n62001001011 A1:n62002001013 +125141 A0:n62002001001;n62002001002;n62001001011 A1:n62002003006 +125143 A0:n62002001001;n62002001002;n62001001011 A1:n62002003007 +125149 A0:n62002001001;n62002001002;n62001001011 A1:n62002003010 +125151 A0:n00000000000 +125153 A0:n62002004002 A1:n62002004005 +125160 A0:n00000000000 A1:n62002004008 +125173 A0:n62002005001 A1:n62002005007 +125184 A1:n62002005012 +125187 A0:n62002001001;n62002001002;n62001001011 A1:n62002005021 +125193 A0:n00000000000 A1:n62002006005 +125196 A0:n62002006002 +125199 A0:n62002006008 +A0:n62002006011 A1:n62002006013 +125204 A0:n62002006002 +125206 A0:n62002001002 A2:n62002007006 A1:n62002007002;n62002007003;n62002007008 +125215 A0:n62002007001 A1:n62002007010 +125226 A0:n62002007001 A1:n62002007021 +125230 A0:n62002001002 A1:n62002008002 A2:n62002008005 +125243 A1:n62002008016 +125250 A0:n62002008020 +125252 A0:n00000000000 A1:n62002009005 +125261 A0:n00000000000 A1:n62002009009 +125269 A0:n00000000000 A1:n62002010004 +125276 A0:n62002010002 +125285 A0:n00000000000 A1:n62002011005 +125297 A0:n62002011003 +125300 A0:n62002011003 A1:n62002011020 +125302 A0:n62002011003 +125306 A0:n62002011023 A1:n62002011026 +125311 A0:n62002001002 A2:n62002012002 +125314 A2:n62002012006 A1:n62002012008 +125323 A0:n62002001002 A2:n62002013002 +125326 A0:n62002013003 A1:n62002013006 +125331 A0:n62002001002 A2:n62002013010 +125334 A0:n62002013011 A1:n62002013015 +125338 A0:n62002001002 A2:n62002014002 +125341 A0:n62002014003 A1:n62002014007 +125345 A0:n62002001002 A2:n62002014009 +125348 A0:n62002014010 A1:n62002014013 +125353 A0:n62002001002 A2:n62002014017 +125365 A0:n62002014024 +125367 A0:n62002014018 A1:n62002014033 +125371 A0:n62002014003;n62002014010;n62002014018 A1:n62002015004;n62002015006 +125381 A0:n62002015011 A1:n62002015014 +125423 A1:n62002017003;n62002017007 +125432 A0:n00000000000 A1:n62002017013 +125437 A0:n62002017011 +125444 A0:n00000000000 +125447 A0:n62002018001 +125450 A0:n62002018009 +125455 A0:n62002018013 +125457 A0:n62002001002;n62002018001;n62001001011 +125461 A0:n00000000000 +125464 A0:n62002018013 +125476 A0:n62002018013 +125481 A1:n62002019026 +125491 A0:n62002020002 A1:n62002020003 +125496 A0:n62002020010 +125498 A0:n62002001002 A2:n62002021003 +125503 A0:n62002018001 A1:n62002021008 +125508 A0:n62002018001 A1:n62002021012 +125526 A0:n00000000000 +125538 A0:n62002022018 A1:n62002022022;n62002022025 +125546 A0:n00000000000 A1:n62002023005 +125552 A0:n62002023003 A1:n62002023008 +125554 A0:n00000000000 A1:n62002023013 +125560 A0:n62002023011 A1:n62002023016 +125563 A0:n62002018001 A1:n62002024002 +125568 A0:n62002024003 +125572 A0:n62002024016 +125576 A0:n62002018001 A1:n62002024013 +125586 A0:n62002024018 +125594 A1:n62002025006 A0:n62002025007 A2:n62002025009 +125601 A0:n62002001002 A1:n62002026001 A2:n62002026003 +125605 A0:n62002018013 A1:n62002026007 +125612 A0:n62002018001 A1:n62002027005 +125615 A0:n62002027004 +125621 A0:n62002018001 A1:n62002027014 +125624 A0:n62002027017 A1:n62002027019 +125631 A0:n62002027024 A1:n62002027026 +125644 A0:n62002027024 A1:n62002027039 +125646 A0:n62002018001 +125652 A0:n62002028003 +125657 A1:n62002024021 +A0:n62002001002;n62002028003;n62001001011 A1:n62002028011 +125662 A1:n62002001002;n62002028003;n62001001011 +125670 A0:n62002028003 +125674 A0:n62002028003 +125679 A0:n00000000000 A1:n62002029013 +125684 A1:n62002029011 +A0:n62002028003 +125688 A1:n62003001003 A2:n62003001005 A0:n62003001007 +125703 A0:n62003001017 A1:n62003001020 +125707 A0:n62003001017 A1:n62003001024 +125716 A1:n62003002009 +125719 A0:n62002001002;n62003002001;n62001001011 +125722 A1:n62002024021 +125727 A0:n62002001002;n62003002001;n62004011001 A1:n62003002020 +125730 A0:n62002024021 +125734 A0:n00000000000 A1:n62003003006 +125740 A0:n62003003004 A1:n62003003011 +125748 A0:n00000000000 A1:n62003004005 +125754 A0:n62003004003 A1:n62003004008 +125762 A0:n62003002001 +125765 A1:n62003005004 +125769 A0:n62002024021 A1:n62003005008 +125780 A0:n00000000000 +125782 A0:n62003006005 +125785 A0:n00000000000 +125787 A0:n62003006010 A1:n62003006013 +125790 A0:n62003006010 A1:n62003006016 +125794 A0:n62003007002 A1:n62003007004 +125797 A0:n00000000000 A1:n62003007008 +125807 A0:n00000000000 A1:n62003008004 +125819 A0:n62003008013 +125822 A1:n62003008019 +125828 A0:n62003008019 A1:n62003008025 +125835 A1:n00000000000 +125841 A0:n62003009003 A1:n62003009007 +125847 A0:n62003009011 +125850 A0:n62003009003 A1:n62003009019 +A0:n62003009003 +125856 A1:n62003009003 +125873 A0:n00000000000 A1:n62003010018 +125883 A0:n00000000000 A1:n62003010029 +125893 A0:n62003007001 A1:n62003011006 +125897 A0:n62002001002;n62003007001;n62001001011 A1:n62003011012 +125907 A0:n62003012003 A1:n62003012011 +125914 A0:n62003012003 A1:n62003012017 +125930 A0:n62003013003 +125932 A1:n62003013006 A0:n62003013008 +125937 A0:n62003014001 +125939 A0:n62002001002;n62003013003;n62001001011 +125947 A0:n62002001002;n62003013003;n62001001011 A1:n62003014014 +125952 A0:n00000000000 +A0:n62003014017 +125959 A0:n00000000000 A1:n62003015005 +125966 A0:n62003013003 +125971 A0:n62003015013 A1:n62003015016 +125976 A0:n62003015016 +125979 A0:n62002001002;n62003013003;n62001001011 A1:n62003016005 +125989 A0:n62003016007 A1:n62003016011 +125992 A0:n62003016015 A1:n62003016022 +125998 A0:n62002001002;n62003013003;n62001001011 A1:n62003016021 +126002 A0:n62003017001 A1:n62003017006 +126008 A0:n62003017001 A1:n62003017015 +126013 A0:n62003017012 A1:n62003017014 +126015 A0:n62003017001 A1:n62003017019 +126026 A0:n62003017025 +126030 A0:n62002001002;n62003018001;n62001001011 +126043 A0:n62002001002;n62003018001;n62001001011 +126052 A0:n62002001002;n62003018001;n62001001011 A1:n62003019014 +126058 A0:n62003020006 +126071 A0:n62003020011 A1:n62003020017 +126078 A0:n62003021004 +126080 A0:n62002001002;n62003021001;n62001001011 A1:n62003021007 +126087 A0:n62002001002;n62003021001;n62001001011 A1:n62003022002 +A0:n62002001002;n62003021001;n62001001011 A1:n62003022004 +126095 A0:n62002001002;n62003021001;n62001001011 A1:n62003022010 +126101 A0:n62002001002;n62003021001;n62001001011 A1:n62003022015 +126109 A0:n62002001002;n62003021001;n62001001011 A1:n62003023010 +126118 A0:n62002001002;n62003021001;n62001001011 A1:n62003023018 +126121 A0:n62003021011 A1:n62003023021 A2:n62003023022 +126126 A0:n00000000000 A1:n62003024005 +126132 A0:n62003024003 +126140 A0:n62002001002;n62003021001;n62001001011 +126142 A0:n62003021011 +126150 A0:n62003021011 A1:n62003024025 A2:n62003024026 +126155 A0:n62004001001 A1:n62004001004 +126157 A0:n62004001001 A1:n62004001009 +126168 A0:n62004001017 +126174 A0:n62004001001 A1:n62004002005 +126182 A0:n62004002010 A1:n62004002016 +126187 A0:n62004002012 +126197 A0:n62004003004 A1:n62004003008 +126212 A0:n62004001001 +126214 A0:n62004003017 +126229 A0:n62004004006 A1:n62004004009 +126252 A0:n62004001017 +126257 A0:n62004005014 A1:n62004005015 +126264 A0:n00000000000 A1:n62004006009 +126267 A0:n62004006007 A1:n62004006011 +126276 A0:n62004006017 A1:n62004006020 +126280 A0:n62002001002;n62004004006;n62001001011 A1:n62004006025;n62004006030 +126291 A0:n62002001002;n62004007001;n62001001011 A1:n62004007003 +126303 A0:n00000000000 +126307 A1:n62004007014 +126309 A0:n62004007014 A1:n62004007022 +126314 A0:n00000000000 +126316 A0:n62004008003 A1:n62004008007 +126326 A1:n62004009005 +126339 A1:n62004009012 A0:n62004009018 +126346 A0:n62002001002;n62004007001;n62001001011 +126357 A0:n62004010008 A1:n62004010011 +126363 A0:n62004010014 A1:n62004010016 +126366 A0:n62004010011 A1:n62004010020 +126380 A0:n62004011005 A1:n62004011007 +126384 A0:n62004011009 A1:n62004011012 +126386 A0:n62002001002;n62004011001;n62001001011 A1:n62004011011 +126390 A1:n62004012001 A0:n62004012002 +126392 A0:n62002001002;n62004011001;n62001001011 A1:n62004012007 +126398 A0:n62004012009 +126405 A1:n62004012015 +126409 A0:n62002001002;n62004011001;n62001001011 +126413 A0:n62002001002;n62004011001;n62001001011 +126423 A0:n62004012009 A1:n62004013015 A2:n62004013018 +126427 A0:n62004014002 A1:n62004014009 +126429 A0:n62004014002 A1:n62004014009 +126433 A0:n62004014008 A1:n62004014011 +126441 A0:n62004015001 +126453 A0:n62004015012 +126461 A0:n62004016002 A1:n62004016007 +126463 A0:n62004016002 A1:n62004016007 +126467 A1:n62004016008 A0:n62004016011 +126478 A0:n00000000000 +126485 A0:n62004016020 +126491 A0:n62004016030 +126494 A1:n62004017005 +126501 A0:n62002001002;n62004011001;n62001001011 A1:n62004017009 +126529 A0:n62004018010 A1:n62004018014 +126536 A0:n62004018017 A1:n62004018018 +126539 A0:n00000000000 +126541 A1:n62004018022 +126546 A0:n62004019001 +126550 A0:n62004019004 A1:n62004019007 +126554 A0:n62004020002 +126556 A0:n62004020002 A1:n62004020007 +126563 A0:n62004020002 A1:n62004020010 +126569 A0:n00000000000 A1:n62004020020 +126574 A0:n62004020018 A1:n62004020022 +126576 A0:n62004020018 A1:n62004020031 +126581 A0:n62004020018 A1:n62004020026 +A0:n62004020018 A1:n62004020025 +126587 A0:n62002001002;n62004011001;n62001001011 A1:n62004021004 +126592 A0:n00000000000 A1:n62004021012 +126595 A0:n62004021010 A1:n62004021016 +126602 A0:n00000000000 +126611 A1:n62005001003 +126615 A0:n00000000000 A1:n62005001018 +126617 A0:n62005001011 +A0:n62005001016 A1:n62005001021 +126620 A1:n00000000000 +126625 A0:n62002001002;n62004011001;n62001001011 +126627 A0:n62002001002;n62004011001;n62001001011 A1:n62005002007 +126635 A0:n62002001002;n62004011001;n62001001011 A1:n62005002012 +126640 A0:n62002001002;n62004011001;n62001001011 A1:n62005002016 +126652 A0:n62002001002;n62004011001;n62001001011 A1:n62005003010 +126663 A1:n00000000000 +126667 A0:n62005004004 A1:n62005004010 +126676 A0:n62005004015 A1:n62005004019 +126685 A0:n00000000000 A1:n62005005006 +126691 A0:n00000000000 +126702 A0:n62005006009 +126727 A0:n00000000000 +126738 A0:n00000000000 +126759 A0:n62002001002;n62004011001;n62001001011 A1:n62005009003 +126774 A0:n62005009019 +126780 A0:n00000000000 +126786 A0:n62005010002 A1:n62005010010 +126793 A0:n00000000000 A1:n62005010017 +126797 A0:n62005010015 A1:n62005010020 +126801 A0:n62005010015 +126806 A1:n62005010027 A0:n62005010030 +126821 A1:n62005011007 A2:n62005011012 A0:n62005011011 +126835 A0:n00000000000 A1:n62005012004 +126838 A0:n62005012002 A1:n62005012007 +126843 A0:n00000000000 A1:n62005012012 +126851 A0:n62005012010 A1:n62005012016 +126853 A0:n62002001002 A1:n62005013001 A2:n62005013003 +126856 A0:n62004011001 +126865 A0:n62004011001 +126869 A0:n62004011001 A1:n62005013007 +126876 A0:n62002001002;n62004011001;n62001001011 A1:n62005014006 +126882 A0:n62002001002;n62004011001;n62001001011 A1:n62005014012 +126887 A0:n62005013018 A1:n62005014019 +126891 A0:n62002001002;n62004011001;n62001001011 +126893 A0:n62005013018 A1:n62005015006 +126897 A0:n62002001002;n62004011001;n62001001011 A1:n62005015007 +A0:n62002001002;n62004011001;n62001001011 +126900 A0:n62002001002;n62004011001;n62001001011 A1:n62005015014 +126904 A0:n62002001002;n62004011001;n62001001011 A1:n62005015015 +126909 A0:n62005016002 A1:n62005016007 +126913 A0:n62005016005 A1:n62005016008 +126918 A0:n62005016002 +126920 A0:n62005013018 A1:n62005016016 A2:n62005016015 +126924 A0:n62005016005 A1:n62005016021 +126928 A0:n62005016023 +126935 A0:n62002001002 +126937 A0:n62005016002 +126943 A0:n62005017007 +126948 A0:n62002001002;n62004011001;n62001001011 +126952 A1:n00000000000 +126957 A0:n62005018005 +126960 A1:n62005013016 +126964 A0:n62005018013 A1:n62005018018 +126970 A0:n62005018021 A1:n62005018024 +126972 A0:n62002001002;n62004011001;n62001001011 +126985 A0:n62005019009 +126987 A0:n62002001002;n62004011001;n62001001011 +126993 A0:n62005020005 +126995 A0:n62005020005 A2:n62005020011 A1:n62005020012 +126999 A0:n62002001002;n62004011001;n62001001011 A1:n62005020016 +127022 A0:n62005021001 A1:n62005021003 +127036 A1:n63001001009 A0:n63001001010;n63001001015;n63001001016;n63001001022 +127048 A0:n00000000000 A1:n63001001024 +127055 A0:n63001002003 +127086 A1:n63001001002 +127089 A0:n63001001002 A1:n63001004009 +127094 A0:n00000000000 +127099 A0:n63001001002;n63001001004;n63001001007;n63001001022 A1:n63001004013 +127106 A0:n63001001002 A1:n63001005004 +127108 A0:n63001001002 A2:n63001005010 +127116 A0:n63001001002;n63001005005;n63001001007;n63001001022 A1:n63001005013 +127120 A0:n63001001002;n63001005005;n63001001007;n63001001022 A1:n63001005019 +127128 A0:n63001001002;n63001005005;n63001001007;n63001001022 +127138 A0:n63001005005;n63001001007 +127144 A0:n63001005005;n63001001007 +127146 A0:n63001007003 +127154 A0:n63001007003 A1:n63001007013 +127157 A0:n63001007011 +127167 A0:n63001005005;n63001001007 A1:n63001008002 +127171 A0:n63001005005;n63001001007 A1:n63001008007 +127173 A0:n63001001002;n63001005005;n63001001007;n63001001022 A1:n63001008006 +127177 A0:n63001005005;n63001001007 A1:n63001008009 +127180 A0:n00000000000 +127183 A0:n00000000000 +127191 A0:n63001009003;n63001009006 A1:n63001009012 +127193 A0:n00000000000 +127204 A0:n63001009020 A1:n63001009023;n63001009026 +127207 A0:n63001010002 +127215 A0:n63001010002 A1:n63001010009 +127217 A0:n63001005005;n63001001007 A1:n63001010014 +127222 A0:n63001005005;n63001001007 +127225 A0:n63001005005;n63001001007 A1:n63001010018 A2:n63001010019 +127228 A0:n00000000000 A2:n63001011004 A1:n63001011005 +127230 A0:n63001011002 +A0:n63001011002 +127237 A0:n63001001002 A1:n63001012004 +127240 A0:n63001001002 A1:n63001012001 A2:n63001012003 +127242 A1:n63001001002 +127248 A0:n63001001002 A1:n63001012015;n63001012020 +127256 A0:n63001001002 +127261 A1:n63001012023 +127263 A1:n63001013002 A0:n63001013004 +127279 A1:n64001001006 A0:n64001001007 +127285 A0:n64001001002 A1:n64001002006;n64001002008 +127287 A0:n64001002005 +127289 A0:n64001002005 +127291 A0:n64001002013 +127296 A1:n64001001002 +127298 A0:n64001003005 +127301 A0:n64001003005 A2:n64001003010 +127309 A0:n64001003012 +127314 A0:n64001001002 A1:n64001004005 +127316 A0:n64001001002 A1:n64001004014 +127323 A0:n64001004010 +127326 A0:n64001005001 A1:n64001005002 +127329 A0:n64001005001 A1:n64001005004 +127337 A0:n64001006001 A2:n64001006005 +127345 A0:n64001005001 +A0:n64001005001 +127354 A0:n64001005012 +127356 A0:n64001005012 A1:n64001007006 +127362 A0:n64001008001 A1:n64001008004 +A0:n64001001002;n64001005001 A1:n64001008006 +127371 A0:n64001001002 A1:n64001009002 A2:n64001009004 +127377 A0:n64001009009 +127381 A0:n64001009007 A1:n64001009012 +127386 A0:n64001001002 +A0:n64001001002 A1:n64001010008 +127392 A0:n64001009007 A1:n64001010009 +127395 A0:n64001009007 A1:n64001010014 +127399 A1:n64001009007 +127404 A0:n64001010021 A1:n64001010024 +127409 A0:n00000000000 +A0:n64001009007 A1:n64001010027 +127415 A0:n64001009007 +127418 A0:n64001011001 A1:n64001011005 +127425 A0:n00000000000 +127431 A0:n00000000000 +127433 A0:n64001011016 A1:n64001011020 +127437 A1:n00000000000 A2:n64001012001 +127448 A0:n64001012011 +127450 A0:n64001011001 +127457 A0:n64001001002 A1:n64001013003 +127459 A0:n64001001002 A1:n64001013001 A2:n64001013004 +127463 A0:n64001001002 A1:n64001013013 +127469 A0:n64001001002 A2:n64001013012 +127471 A0:n64001001002 A1:n64001014005 +127474 A0:n64001001002 A1:n64001014004 +127479 A0:n64001001002;n64001011001 +127482 A1:n64001015004 A0:n64001015006 +127486 A0:n64001011001 A1:n64001015009 +127502 A1:n65001001017 +127506 A1:n65001001017 +127514 A2:n65001002002 A1:n65001002001;n65001002004;n65001002006 +127518 A0:n65001001001 A1:n65001003003 +A0:n65001001001 A2:n65001003006 +127527 A0:n65001001001 A1:n65001003012 +A0:n65001001001 A2:n65001003015 +127530 A0:n65001001001 A1:n65001003017 +A0:n65001003001 +127534 A1:n65001003023 A2:n65001003022 +127539 A0:n65001004004 +127544 A1:n65001004004 +127555 A0:n65001004004 A1:n65001004017 +127567 A0:n65001004004 A1:n65001004024;n65001004026 +127569 A0:n65001001001 A1:n65001005001 +A0:n65001003001 A1:n65001005007 +127573 A0:n65001001001 A1:n65001005003 +127581 A0:n65001005009 A1:n65001005010 +127586 A0:n00000000000 +A0:n65001005009 A1:n65001005019 +127592 A0:n65001006001 A1:n65001006008 +127597 A0:n65001006001 A1:n65001006013 +127609 A0:n65001005009 A1:n65001006001 +127623 A0:n65001007002;n65001007004;n65001007009 A1:n65001007012 +127625 A0:n65001007002;n65001007004;n65001007009 +127629 A0:n65001007002;n65001007004;n65001007009 A1:n65001007021 +127634 A0:n65001007002;n65001007004;n65001007009 A1:n65001007024 +127639 A0:n00000000000 +127642 A0:n00000000000 A1:n65001008006 +127645 A0:n00000000000 A1:n65001008009 +127648 A0:n00000000000 A1:n65001008012 +127653 A0:n65001009003 +A0:n65001009003 +127664 A0:n65001009003 A1:n65001009018 +127667 A0:n65001009003 A1:n65001009017 +127669 A0:n65001009003 +A1:n65001009023 A0:n65001009024 +127678 A0:n65001008005 A1:n65001010003 +A0:n65001010001 A1:n65001010006 +127687 A0:n65001008005 A1:n65001010008 +127690 A1:n65001008005 +127698 A1:n65001008005 +127705 A1:n65001008005 +127711 A0:n65001008005 +127720 A0:n65001008005 +127723 A0:n65001008005 A1:n65001012011 +127728 A1:n65001012013 +127733 A0:n65001012018 +A1:n65001012018 +127738 A0:n65001013001 A1:n65001013007 +127751 A2:n65001013010 A1:n65001013012 +127753 A2:n65001014004 A1:n00000000000 A0:n65001014005 +127760 A0:n65001014005 +127762 A0:n65001014012 +127768 A0:n65001014012 A1:n65001015002 +127773 A0:n65001014012 A1:n65001015009 +127784 A0:n65001015009 +127791 A1:n65001015023 A0:n65001015027 +127804 A0:n65001016003 +127809 A0:n65001016012 A1:n65001016015 +127811 A0:n65001008005 A1:n65001016017 +127818 A1:n65001017001 A1:n65001017006 +127822 A1:n65001017006 +127832 A0:n65001017011 A2:n65001018003 +127840 A0:n65001018009 +127850 A0:n65001008005 +127854 A0:n65001008005 A1:n65001019006 +127858 A0:n65001020003 A1:n65001020005 +127867 A0:n65001020003 +127872 A0:n65001020001 A1:n65001021001 +A0:n65001020003 A1:n65001021008 +127887 A0:n65001022002 +A0:n65001020003 A1:n65001022002 +A0:n65001020003 A1:n65001022002 +127892 A0:n65001020003 A1:n65001022002 +127895 A0:n65001020003 A1:n65001023005 +127898 A0:n65001020003 A1:n65001023017 +127904 A1:n65001023017 +127908 A0:n65001025002 A1:n65001024004;n65001024008 +A0:n65001025002 A1:n65001024005 +127913 A0:n65001025002 +127952 A1:n66001001004 A2:n66001001006 A0:n66001001008 +127956 A0:n66001001002 A2:n66001001011 A1:n66001001014 +127961 A0:n66001001013 +127964 A0:n66001001015 +127966 A0:n66001001002 +A0:n66001001002 A1:n00000000000 A2:n66001001026 +127977 A0:n66001002001 A1:n66001002004;n66001002009 +127988 A0:n66001001026 A1:n66001002012 +127991 A0:n00000000000 +127994 A0:n00000000000 A1:n66001003008 +128000 A0:n00000000000 A1:n66001003016 +128004 A1:n00000000000 +128023 A0:n66001002006 +128026 A0:n66001002006 +128029 A0:n66001002006 +128060 A0:n66001005003 A1:n66001005022 +128063 A0:n66001005003 A1:n66001005025 +128074 A0:n66001005021 A1:n66001006003 +128095 A0:n66001004004 +A0:n66001005021 +128101 A1:n66001007008 A0:n66001007010;n66001007014 +128108 A0:n66001007012 A1:n66001007013 +128110 A0:n66001007021 +128127 A0:n66001008009 +128132 A0:n66001008021 +128135 A0:n66001008021 +128138 A0:n66001008021 +128157 A0:n66001009001 +128173 A0:n66001009002 +128181 A0:n66001009002 A1:n66001010012 +128188 A0:n66001010012 +128190 A0:n66001009002 A1:n66001011002 +A0:n66001009002 A1:n66001011003 +128195 A0:n66001009002 A1:n66001011006 A2:n66001011011 +128220 A0:n66001009002 +A0:n66001009002 A1:n66001012005 +128225 A0:n66001012006 +128229 A0:n66001009002 +A0:n66001009002 A1:n66001012014 +128242 A0:n66001013007 A1:n66001013010 +128245 A0:n66001013007 A1:n66001013016 +128280 A1:n66001015006 +128290 A0:n66001013007 A1:n66001016008 +128306 A0:n66001016015 +128314 A0:n66001016025 +128321 A0:n66001009002 A1:n66001017004 +128323 A0:n66001009002 +128331 A0:n66001013007 A1:n66001017015 +128337 A0:n66001013007 +128339 A0:n66001009002 +128349 A0:n00000000000 +128354 A0:n66001009002 +A0:n66001013007 +128363 A0:n66001013007 A1:n66001018019 +128372 A0:n66001009002 A1:n66001019004;n66001019007;n66001019010 +128374 A0:n66001009002 A1:n66001019003 +128377 A0:n66001019006 +128380 A0:n66001019009 A1:n66001019011 +A0:n66001019009 +128390 A0:n66001009002 A1:n66001020006 +128423 A0:n66001009002 A2:n66002001002 +128425 A1:n66002001008 A0:n66002001011 +128427 A0:n66001013007 A1:n66002001014 +128436 A0:n66001013007 +128444 A0:n66002001011 A1:n66002002003;n66002002007;n66002002010 +128458 A0:n66002001006 A1:n66002002016 +A0:n66002001006 A1:n66002002017 +128462 A0:n66002001006 A1:n66002002021 +128464 A0:n00000000000 A1:n66002002022 +128471 A0:n66002001006 A1:n66002002030 +128476 A0:n66002001006 A1:n66002003002 +128478 A0:n66002001006 +128485 A0:n66002001006 +128487 A0:n66002001011 +128496 A0:n66002001006 A1:n66002004007 +128498 A0:n66002001006 A1:n66002005004 +128500 A0:n66002001006 +128502 A0:n66002001006 +128507 A0:n66002001006 A1:n66002005010 +128511 A0:n66002001011 AA2:n66002005016 +128514 A0:n66002001011 A1:n66002005020 +128524 A0:n66002001006 +128527 A0:n66002001006 A1:n66002006002 +128529 A0:n66002001006 A1:n66002006007 +128536 A1:n66002006010 A0:n66002006011 +128538 A0:n00000000000 A1:n66002007003 +128540 A0:n66002007002 A1:n66002007008 +128544 A1:n66002007005 A0:n66002007007 A2:n66002007010 +128548 A0:n00000000000 +A0:n66002001011 A2:n66002007014 A1:n66002007015 +128551 A0:n66002007012 +128571 A0:n66001009002 A2:n66002008003 +128573 A1:n66002008009 A0:n66002008012;n66002008015 +128583 A0:n66002008012 +A0:n66002008012 A1:n66002009004;n66002009007 +128599 A0:n00000000000 A1:n66002009017 +128605 A0:n66002009016 +128611 A0:n66002008007 A1:n66002010004 +128613 A0:n66002008007 A1:n66002010003 +A0:n66002008007 A1:n66002010005 +A0:n66002008007 +A0:n66002010010 A1:n66002010008 +128619 A0:n66002010010 A1:n66002010012 +128625 A1:n66002008007 +128627 A0:n66002008007 A1:n66002010019 +128636 A0:n66002008012 A2:n66002010028 A1:n66002010030 +128643 A0:n00000000000 A1:n66002011003 +128645 A0:n66002011002 A1:n66002011008 +128649 A1:n66002011005 A0:n66002011007 A2:n66002011010 +128653 A0:n00000000000 +128656 A1:n66002011012 +128669 A0:n66001009002 A2:n66002012003 +128671 A1:n66002012009 A0:n66002012012 +128673 A0:n66001013007 A1:n66002012014 +128680 A0:n66002012012 A1:n66002013003 +128682 A0:n66002012007 +128689 A0:n66002012007 A1:n66002013012 +128695 A0:n66002012007 A1:n66002013018 +128711 A1:n66002013031 +128717 A0:n66002013037 +128719 A0:n66002012012 A1:n66002014005 +128724 A0:n66002012007 A1:n66002014009 +128726 A0:n00000000000 A1:n66002014011 +128731 A0:n66002014013 A2:n66002014016 A1:n66002014017 +128734 A0:n66002014016 A1:n66002014018 +128740 A0:n66002014021 A1:n66002014024 +128743 A0:n66002014021 +128745 A0:n66002015004 A1:n66002015005 +128748 A0:n00000000000 A1:n66002015007 +128755 A0:n66002012007 +128759 A0:n66002012012 AA2:n66002016007 +128763 A0:n66002012012 +128773 A0:n00000000000 A1:n66002017003 +128775 A0:n66002017002 A1:n66002017008 +128779 A1:n66002017005 A0:n66002017007 A2:n66002017010 +128783 A0:n00000000000 +A0:n66002012012 A2:n66002017014 A1:n66002017016 +128789 A1:n66002017016 +128791 A0:n66002012012 A2:n66002017021 A1:n66002017022;n66002017028 +128799 A1:n66002017028 +128804 A1:n66002017031 A0:n66002017032 +128808 A0:n00000000000 +128816 A0:n66001009002 A2:n66002018003 +128818 A1:n66002018009 A0:n66002018012 +128824 A0:n66002018012 A1:n66002018018 +128837 A0:n66002018012 A1:n66002019004;n66002019007;n66002019010;n66002019013;n66002019016;n66002019024 +128864 A0:n66002018012 +128868 A0:n66002018007 A1:n66002020008 +128873 A0:n66002020008 A1:n66002020012 +128877 A0:n66002020008 A1:n66002020021;n66002020023 +128879 A0:n66002020008 A1:n66002020021;n66002020023 +128883 A0:n00000000000 +128885 A0:n00000000000 A1:n66002020024 +128888 A0:n66002018012 A2:n66002021003 A1:n66002021004 +128892 A0:n66002020008 +128895 A0:n66002020008 A1:n66002021010 +A0:n66002020008 +128901 A0:n66002018007 +A0:n66002018012 A1:n66002022003 +128908 A0:n00000000000 +128916 A0:n66002022008 +128925 A0:n66002018012 A1:n66002023003 +128929 A0:n66002023012 +128937 A0:n00000000000 A1:n66002023018;n66002023020 +128942 A0:n66002018012 A1:n00000000000 A2:n66002023023 +128950 A0:n66002018012 A2:n66002024001 +128959 A0:n66002024009 A1:n66002024013 +128965 A0:n66002024015 A1:n66002024019 +128971 A0:n00000000000 +128973 A0:n66002018012 A1:n66002024029 +128980 A0:n66002024005 A1:n66002025002 +A0:n66002024005 A1:n66002025003 +128985 A0:n66002018012 +128988 A0:n00000000000 +128991 A0:n00000000000 A1:n66002026010 +128997 A0:n66002018012 A2:n66002026013 A1:n66002026014 +129004 A0:n66002026003 A1:n66002027003 +129014 A1:n66002027009 +129017 A0:n00000000000 +129023 A0:n66002018012 A2:n66002028010 A1:n66002028012 +129030 A0:n00000000000 A1:n66002029003 +129032 A0:n66002029002 A1:n66002029008 +129036 A1:n66002029005 A0:n66002029007 A2:n66002029010 +129046 A0:n66001009002 A2:n66003001003 +129048 A1:n66003001009 A0:n66003001012 +129050 A0:n66001013007 A1:n66003001015;n66003001021 +129060 A0:n66003001012 A1:n66003001025 +129066 A0:n66003001007 A1:n66003001027 +129068 A0:n66003001007 +129073 A0:n66003001007 +129075 A0:n66003001007 A1:n66003002006 +129079 A0:n66003002007 A1:n66003002009 +A0:n66003002006 +129083 A0:n66003001012 A1:n66003002016 +129086 A1:n66003002014 +129092 A0:n66003001007 A1:n66003003004;n66003003006 +129094 A0:n66003001007 +129096 A0:n66003001007 +129098 A0:n66003001007 +129100 A0:n66003001007 +129104 A0:n66003001007 +A0:n66003001012 +129111 A0:n66003001007 A1:n66003003024 +129114 A0:n66003001012 +129118 A0:n66003001007 A1:n66003004004 +129125 A0:n66003004007 A1:n66003004011 +129130 A0:n66003004004 +129139 A0:n00000000000 +129141 A0:n66003005002 +129148 A0:n66003001012 A1:n66003005013 +129158 A0:n66003001012 A1:n66003005023 +129172 A0:n00000000000 A1:n66003006003 +129174 A0:n66003006002 A1:n66003006008 +129178 A1:n66003006005 A0:n66003006007 A2:n66003006010 +129188 A0:n66001009002 A2:n66003007003 +129190 A1:n66003007009 A0:n66003007012 +129196 A0:n66003007012 A1:n66003007018 +129201 A0:n66003007012 +129204 A0:n66003007023 +129206 A0:n66003007012 +129209 A0:n66003007028 +A0:n66003007012 A1:n66003008004 +129214 A0:n66003007007 +A0:n66003007012 A1:n66003008009 +129219 A1:n66003008009 +129222 A0:n66003008012 A1:n66003008011 +129224 A1:n66003008014 A0:n66003008012 +129228 A0:n66003007007 A1:n66003008019 +129230 A0:n66003007007 A1:n66003008024 +129236 A0:n66003007007 A1:n66003008029 +129240 A0:n66003007007 +A0:n66003007012 A1:n66003009005 +129248 A0:n66003009005 A1:n66003009011 +129254 A0:n66003009005 +129256 A0:n66003009005 +A0:n66003007007 +A0:n66003007012 A1:n66003009020 +129261 A0:n66003009005 +129263 A0:n66003009005 +129269 A0:n66003009005 +129272 A0:n66003009032 A1:n66003009034 +129275 A0:n66003007007 A1:n66003010004 +129283 A0:n66003010008 A1:n66003010009 +129290 A0:n66003010013 A1:n66003010018 +A0:n66003010013 +129296 A0:n66003010013 A1:n66003010025 +129298 A0:n00000000000 +129302 A0:n66003007012 +129304 A0:n66003007007 A1:n66003011005 +129306 A0:n66003007007 A1:n66003011004 +129309 A0:n66003011007 A1:n66003011010 +129314 A0:n00000000000 +A0:n66003007012 A1:n66003012004 +129328 A0:n66003012002 +129331 A0:n66003007012 A1:n66003012023;n66003012029;n66003012049 +129351 A0:n66003012031 +129366 A0:n00000000000 A1:n66003013003 +129368 A0:n66003013002 A1:n66003013008 +129372 A1:n66003013005 A0:n66003013007 A2:n66003013010 +129382 A0:n66001009002 A2:n66003014003 +129384 A1:n66003014009 A0:n66003014012 +129399 A0:n66003014012 A1:n66003015004 +129409 A0:n66003014012 +129423 A0:n66003014012 A1:n66003016012 +129425 A0:n66003014012 A1:n66003016011 +129431 A0:n66003014007 +129436 A0:n66003014007 +129440 A0:n66003014007 A1:n66003017010 +129443 A0:n66003014007 +129457 A0:n66003014012 A2:n66003018002 A1:n66003018003;n66003018013;n66003018026 +129459 A0:n66003014007 A1:n66003018006 +129463 A1:n66003018006 +129467 A0:n66003014007 +129472 A0:n66003014007 +129475 A1:n66003018021 +129483 A0:n66003014007 A1:n66003018029 +129488 A0:n66003014007 +129492 A0:n66003014012 A1:n66003019002 +A0:n66003019001 A1:n66003019004 +129495 A0:n66003019001 A1:n66003019004 +129497 A0:n66003014007 +129499 A0:n66003014007 +A0:n66003014007 +A0:n66003014012 +129506 A0:n66003014012 +129509 A0:n66003020009 A1:n66003020012 +129514 A0:n66003020009 A1:n66003020017 +129517 A0:n66003014012 +129521 A0:n66003014012 +129529 A0:n00000000000 +A0:n66003014012 A2:n66003021004 A1:n66003021005 +129532 A0:n66003021002 +129541 A0:n66003021013 +129543 A0:n66003014012 +129553 A0:n00000000000 A1:n66003022003 +129555 A0:n66003022002 A1:n66003022008 +129559 A1:n66003022005 A0:n66003022007 A2:n66003022010 +129564 A0:n66001009002 +129568 A1:n66004001006 +129578 A0:n66001009002 A1:n66004001016 +129581 A0:n66004001013 +129584 A0:n66004001013 +A0:n66001009002 +129588 A0:n66004001013 A2:n66004001028 A1:n66004001030 +129591 A0:n66004001029 +129594 A0:n66004001031 +129596 A0:n66001009002 +129602 A0:n66004002007 +129610 A0:n00000000000 +129613 A0:n00000000000 +129642 A0:n66004004014 +A0:n66004004014 +129658 A0:n66004005006;n66004005008;n66004005010 +129668 A1:n66004005013 +129699 A0:n66004006020 A1:n66004006022 +129721 A0:n66004007017 A1:n66004007020 +129732 A0:n66004007028 +129741 A0:n66004008004 A1:n66004008011 +129748 A0:n66004008004 A1:n66004008017 +129753 A0:n66004008004 A1:n66004008019 +129757 A0:n66004008004 +129767 A0:n66004008029 +129770 A0:n66004008029 +129773 A0:n66004008029 +129776 A0:n66004009005 A1:n66004009006;n66004009008;n66004009010 A2:n66004009012 +129785 A0:n66004008029 +129790 A0:n66004008029 +129796 A0:n66004010005 +129803 A0:n66004008029 +129808 A0:n66004010005 A1:n66004010015 +129810 A0:n66004008029 +129817 A0:n66004010005 A1:n66004010024 +129824 A0:n66004010005 +129833 A0:n66004011004 A1:n66004011011;n66004011014;n66004011017 +129844 A0:n66004011019 A1:n66004011022 +129852 A0:n66004011022 +129854 A1:n66004011022 +129856 A0:n66001009002 A1:n66005001011 +129861 A0:n66004011004 +129866 A1:n66005001011 +129870 A1:n66005001011 +129874 A0:n66001009002 A1:n66005002005 +129877 A0:n66005002003 A1:n66005002010 +129883 A0:n66005002009 A1:n66005002013 +129887 A0:n66005002009 A1:n66005002017 +129892 A0:n66005003002 A1:n66005003015;n66005003019 +129905 A0:n66005003002 A1:n66005003017 +129909 A0:n66005003002 A1:n66005003020 +129912 A0:n66001009002 +129917 A1:n66005004005 +A0:n66005004005 A1:n66005004010 +129922 A0:n66005004005 A1:n66005004013 +129929 A0:n66005005002 A2:n66005005007 +129932 A0:n66001009002 +A0:n66001009002 +A0:n66005005013 +129945 A0:n66005005013 A1:n66005005024;n66005005028 +129954 A0:n66001009002 A1:n66005006017 +129969 A0:n66005006016 +129971 A1:n66005006016 +A0:n66005006016 A1:n66005006021;n66005006024 +129985 A1:n66005006030 +129991 A0:n66005006016 +129993 A0:n66005006016 +129998 A0:n66005006032 +130004 A0:n66005006016 A1:n66005008005 +130015 A0:n66005008008;n66005008013 +130019 A0:n66005008008;n66005008013 A1:n66005008020;n66005008022 +130025 A0:n66005008022 A1:n66005008025 +130034 A0:n66005008008;n66005008013 A1:n66005009003 +130037 A0:n66005008008;n66005008013 +130040 A0:n66005008017 A1:n66005009010 +130044 A0:n66005008017 A1:n66005009014 +130049 A1:n66005008017 +130051 A0:n66005008017 A1:n66005009028 A2:n66005009021 +130068 A0:n66005008017 A1:n66005010003 A2:n66005010005 +130077 A0:n66005010003 +130082 A0:n66001009002 +130084 A0:n66001009002 A1:n66005011005 +130107 A0:n66005011006 A1:n66005012004 +130115 A1:n66005012007 +A0:n66005012007 A1:n66005012012;n66005012014;n66005012016;n66005012018;n66005012020;n66005012022;n66005012024 +130156 A0:n66005013003;n66005013025 +A0:n66001009002 A1:n66005013027 +130159 A0:n66005010005 +130186 A0:n66005014004 +130191 A0:n66005014009 +130193 A0:n66005014009 +130195 A0:n66001009002 +130197 A0:n66006001006 A1:n66006001007 +130206 A0:n66001009002 A1:n66006001019 +130212 A0:n66006001014 +130216 A0:n00000000000 +130218 A0:n66001009002 +130225 A0:n00000000000 +130228 A0:n66006002009 A1:n66006002013 +130231 A2:n66006002016 A1:n66006002017 +130235 A0:n66006002009 +A0:n66006002009 +130239 A0:n66006002009 +130242 A0:n66006001006 A1:n66006003005 +130247 A0:n66001009002 A1:n66006003012 +130251 A0:n66006003011 +A0:n00000000000 +130254 A0:n66006004004 +130260 A0:n00000000000 +130263 A2:n66006004012 A1:n66006004013 +130265 A0:n00000000000 A1:n66006004015 +130274 A0:n00000000000 A1:n66006004021 +130276 A2:n66006004025 A1:n66006004026 +130282 A0:n66006001006 A1:n66006005005 +130287 A0:n66001009002 A1:n66006005012 +130291 A0:n66006005011 +A0:n00000000000 +130294 A0:n66001009002 +130301 A0:n00000000000 +130304 A0:n66006005022 A1:n66006005026 +130311 A0:n66001009002 A1:n66006006010 +130319 A0:n66006006004 +130335 A0:n66006005022 A1:n66006006021;n66006006024 +130338 A0:n66006001006 A1:n66006007005 +130343 A0:n66001009002 A1:n66006007013 +130348 A0:n66006007009 +A0:n00000000000 +130351 A0:n66001009002 +130358 A0:n00000000000 +130368 A0:n66006008018 +130372 A2:n66006008024 A1:n66006008025 +130380 A0:n66006008009;n66006008005 +130397 A0:n66006001006 A1:n66006009006 +130401 A0:n66001009002 A1:n66006009012 +130408 A1:n00000000000 +130419 A0:n66006009014 A1:n66006009024 +130421 A0:n66006009014 +130424 A0:n66006009014 A1:n66006010015;n66006010017 +130434 A0:n66006010009 +130436 A0:n66006010009 A1:n66006010019 +130442 A0:n00000000000 +130447 A2:n66006011003 A1:n66006011005 +130453 A2:n66006011009 A1:n66006011011 +130456 A0:n66006009014 +130461 A1:n66006011019;n66006011023 +130471 A0:n66006011019;n66006011023 A1:n66006011027 +A1:n66006011019;n66006011023 +130477 A0:n66001009002 +130479 A0:n66006001006 A1:n66006012006 +130487 A0:n66006012010 +130500 A0:n66006012023 +130508 A0:n66006013003 +130514 A0:n66006013011 A1:n66006013014 +130521 A1:n66006013011 +130525 A1:n66006014003 +130528 A1:n66006014006 +130538 A1:n66006014010;n66006014012 +130561 A0:n66006015003;n66006015008;n66006015011;n66006015014;n66006015017;n66006015020;n66006015022 A1:n66006015024 +130573 A0:n66006015003;n66006015008;n66006015011;n66006015014;n66006015017;n66006015020;n66006015022 A2:n66006016004;n66006016007 +130579 A0:n66006016004;n66006016007 +130583 A0:n66006016004;n66006016007 A1:n66006016013 +130588 A0:n66006009019 +130599 A0:n66006017004 +130609 A0:n66006017011 A1:n66006017013 +A1:n66006017011 +130613 A0:n66001009002 A1:n66007001006 +130616 A0:n66007001005 +130623 A0:n66007001005 A1:n66007001016 +130631 A0:n66007001022 +130645 A0:n66001009002 A1:n66007002005 +130648 A0:n66007002004 +130652 A0:n66007002004 A1:n66007002010 +130655 A0:n66007002011 +130657 A0:n66007002004 A1:n00000000000 A2:n66007002019 +130665 A2:n66007002020 A1:n66007002023 +A0:n00000000000 A1:n66007002025;n66007002028 +130672 A0:n66007002004 +130674 A0:n66007002019 A1:n66007003005;n66007003008;n66007003011 +130684 A0:n66007002019;n66007002004 A1:n66007003015 +130695 A0:n66001009002 A1:n66007004004 +130699 A1:n00000000000 +130704 A1:n66007004010 +130715 A1:n66007005005 +130771 A1:n66007008015 +130774 A0:n66001009002 +130781 A0:n66007009011 A1:n66007009008 +130783 A1:n66007009009 A0:n66007009011 +130793 A0:n66007009006 +130801 A0:n66007009006 A1:n66007009031 +130811 A0:n66007009006 +130814 A0:n66007009006 +130821 A0:n66007010009 +130832 A0:n66007011004 +130844 A0:n66007011004 +130853 A0:n66007011004 A1:n66007011028 +130856 A0:n66007011004 +130888 A0:n66007013003 +130893 A0:n66007013003 A2:n66007013008 +130897 A0:n66007009006 A1:n66007013013 +130906 A0:n66007013011 +130908 A0:n66001009002 A2:n66007014003 +130913 A0:n66007014006 +130915 A0:n66007013003 A2:n66007014010 +130920 A0:n00000000000 +130927 A0:n66007013011 A1:n66007014023 +130932 A0:n66007013011 A1:n66007014027 +130948 A0:n66007013011 A1:n66007015011 +130959 A0:n66007015008 +130963 A0:n66007015021 +130967 A0:n66007013011 +130970 A0:n66007013011 +130974 A0:n66007016013;n66007016016 +130990 A0:n66007017003 A1:n66007017010 +130993 A0:n66007017003 A1:n66007017013 +131000 A0:n66007017021 A1:n66007017023 +131011 A0:n66007009029 A1:n66008001005 +131016 A0:n66008001009 +131024 A0:n66001009002 A1:n66008002005 +131032 A0:n66008002006 +131034 A2:n66008002013 A1:n66008002015 +131041 A0:n66008003003 +131043 A1:n66008003003 +131047 A0:n66008003003 A1:n66008003011 +131051 A2:n66008003015 A1:n66008003016 +131056 A0:n66008003003 A1:n66008003016 AA2:n66008003021 +131072 A0:n66008004004 +131089 A0:n66008005004 A1:n66008005006 +131095 A0:n66008005004 A1:n66008005009 +131103 A0:n66008005004 +131108 A0:n66008005022;n66008005024;n66008005026;n66008005028 +131121 A0:n66008006004 A1:n66008006009 +131125 A0:n66008006004 A1:n66008006011 +131128 A0:n66008006004 +131132 A0:n66008007003 +131134 A0:n66008007007;n66008007009 +131138 A1:n66008007007;n66008007009 +131142 A1:n66008007007;n66008007009 +131151 A1:n66008007020 +131157 A1:n66008007026 +131162 A1:n66008007032 +131167 A0:n66008008004 +131173 A1:n66008008008 +A1:n66008008008 +131186 A0:n66008009004 +131196 A0:n66008009006 A1:n66008009013 +131203 A1:n66008009016 +131208 A0:n66008010004 +131210 A0:n66008010011 +131216 A1:n66008010011 +131220 A0:n66008010011 +131252 A0:n66008011018 +131257 A1:n66008011024 +131262 A0:n66008012004 +131264 A1:n66008012009;n66008012014;n66008012019 +131280 A1:n66008012025 +131288 A0:n66008012029 +131297 A0:n66001009002 +131299 A0:n66001009002 A1:n66008013010 +131302 A0:n66008013006 +131305 A0:n66008013006 +131312 A0:n00000000000 +131326 A0:n66008013029 A1:n66008013032 +A0:n66008013029 +131332 A0:n66009001004 +131334 A0:n66001009002 A1:n66009001012 +131339 A0:n66009001008 +131344 A2:n66009001018 A1:n66009001020 +131353 A0:n66009001008 A1:n66009002004 +131359 A0:n66009002009 +131369 A0:n66009002020;n66009002023 +131384 A0:n66009003006 +131390 A2:n66009003012 A1:n66009003013 +131394 A1:n66009003016 A0:n66009003018 +131401 A2:n66009004003 A1:n66009004006 +131405 A0:n66009003006 A1:n66009004008;n66009004013;n66009004016 +131422 A0:n66009004021 A1:n66009004025 +131431 A2:n66009005003 A1:n66009005005;n66009005006;n66009005010 +131435 A0:n66009003006 A1:n66009005007 +131439 A1:n66009004020 +131450 A0:n66009005019 A1:n66009005022 +131457 A0:n66009006008 A1:n66009006010 +131465 A0:n66009006008 A1:n66009006015 +131468 A0:n66009006008 A1:n66009006018 +A0:n66009006008 +131471 A0:n66009006022 +131483 A1:n66009007007 +131503 A0:n66009007005 A1:n66009008003 +131516 A0:n66009007005 A1:n66009009003 +131532 A0:n66009009016 +131536 A0:n66009007005 A1:n66009010003;n66009010007 +131550 A0:n66009010014 A1:n66009010018 +131555 A0:n66009007005 A1:n66009011004 +131572 A0:n66009011004 A1:n66009011017 +131578 A0:n66009012002 +131580 A0:n66009012010 +131590 A0:n66009013004 +131592 A0:n66001009002 A1:n66009013008 +131607 A0:n66009013008 A2:n66009014004 A1:n66009014009 +131612 A0:n66009014004 A1:n66009014008 +131615 A0:n66009014004 A1:n66009014012 +131620 A1:n66009014012 +131628 A1:n66009015005 +131633 A1:n66009015005 +131644 A0:n66009015005 A1:n66009015020 +131658 A0:n66001009002 A1:n66009016012 +131664 A0:n66001009002 A1:n66009017005 +131672 A0:n00000000000 +131675 A0:n66009017011 A1:n66009017015 +131695 A0:n66009017035;n66009017037;n66009017039 +131701 A1:n66009018008 +131721 A0:n66009018013;n66009018016;n66009018019 +131747 A0:n66009019018 A1:n66009019023 +131752 A0:n66009019005 +131760 A1:n66009020006 +131766 A0:n66009020003 +131775 A0:n66009020003 A1:n66009020025;n66009020028 +131796 A0:n66009020043 A1:n66009020045;n66009020048;n66009020050 +131798 A0:n66009020028 +131800 A0:n66009020028 +131802 A0:n66009020028 +131805 A0:n66009020003 +131826 A0:n66001009002 A1:n66010001006 +131830 A0:n66010001004 +131834 A0:n66010001004 A1:n66010001011 +131858 A0:n66010001004 A1:n66010002007 +131864 A1:n66010002007 +131866 A0:n66010001004 A1:n66010002012 +131882 A0:n66010001004 +131887 A0:n66010003006 +131890 A0:n66010001004 +A0:n66010003014 A1:n66010003017 +131900 A0:n66010004006 +131904 A0:n66001009002 A1:n66010004008 +A0:n66001009002 +131907 A0:n66001009002 A1:n66010004015 +131912 A0:n66010004011 A1:n66010004016;n66010004025 +A0:n66001009002 A1:n66010004018 +131915 A1:n66010004017 A0:n66010004021 +131922 A0:n66001009002 A1:n66010004024 +131927 A0:n66010005004 +131935 A0:n66001009002 A1:n66010005006 +A0:n66010005003 A1:n66010005016 +131946 A0:n66010005003 +131949 A0:n66009013021 +131956 A0:n66010006011 A1:n66010006014;n66010006016;n66010006021;n66010006023;n66010006028;n66010006030 +131980 A0:n66010006034 +131991 A0:n66010007009 A1:n66010007012 +A0:n66010007009 +131994 A1:n66010007016 +132000 A0:n66010007018 A1:n66010007023 +132010 A0:n66001009002 A1:n66010008004 +132015 A0:n66010008003 +132019 A0:n66010008003 A1:n66010008015 +A0:n66001009002 +A0:n66001009002 A1:n66010008018 +132025 A1:n66010008018 +132032 A0:n66010008025 +132041 A0:n66001009002 +132045 A0:n66001009002 A2:n66010009007 A1:n66010009008 +132047 A0:n66010009005 A2:n66010009009 A1:n66010009011 +132052 A0:n66010009005 A2:n66010009014 A1:n66010009015;n66010009017;n66010009020;n66010009030 +132054 A0:n66001009002 +132056 A0:n66001009002 A1:n66010009018 +132059 A0:n66010009011 A1:n66010009023 +132073 A0:n66001009002 A1:n66010010004 +132082 A0:n66001009002 A1:n66010010012 +132095 A0:n66001009002 A1:n66010010025 +132097 A1:n66010010028 +132102 A0:n66010008003;n66010009005 A2:n66010011003 +132104 A0:n66010011007 +132107 A0:n66010011005 +132118 A2:n66011001003 A1:n66011001004 +132123 A0:n66010008003 +A0:n66001009002 +132126 A0:n66001009002 A1:n66011001012;n66011001017;n66011001020 +132136 A0:n00000000000 +132146 A0:n66001009002 A1:n66011002003 +132151 A0:n66001009002 A1:n66011002012 +132153 A1:n66011002003 A2:n66011002017 +132161 A0:n66011002017 A1:n66011002020 +132166 A0:n66010008003 A1:n00000000000 A2:n66011003005 +132172 A0:n66011003005 +132177 A0:n66011003005 A1:n66011003014 +132194 A0:n66011004005;n66011004009 +132198 A0:n66011005003 A1:n66011005006 +132200 A0:n66011005003 A1:n66011005004 +132202 A0:n66011005007 +132208 A0:n66011005007 A1:n66011005016 +132215 A0:n66011005020 A1:n66011005023 +132217 A0:n66011005020 A1:n66011005022 +132219 A0:n66011005027 +132221 A1:n66011005026 +132223 A0:n66011006001 A1:n66011006004 +132226 A0:n66011003005 A1:n66011006007 +132232 A0:n66011006010 +132240 A0:n66011003005 A1:n66011006018 +132244 A0:n66011003005 A1:n66011006024 +132249 A0:n66011003005 A1:n66011006030 +132257 A0:n66011003005 +132260 A0:n66011003005 A1:n66011007005 +132267 A0:n66011007008 +132271 A0:n66011007008 A1:n66011007017 +132276 A0:n66011007008 A1:n66011007020 +132279 A0:n66011007008 A1:n66011007023 +132303 A1:n66011008021 +132305 A0:n66011009005;n66011009007;n66011009009;n66011009011 A1:n66011009013 +132324 A0:n66011009005 A1:n66011009025 +132328 A1:n66011009021 +132333 A0:n00000000000 +132337 A0:n66011010003 +132341 A1:n66011010003 +132344 A0:n66011010003 A1:n66011010013 A2:n66011010015 +132351 A0:n66011010020 A1:n66011010023 +132353 A0:n00000000000 +132369 A0:n66011011008 +132373 A0:n66011010020 +132381 A0:n66011011023 +132384 A0:n00000000000 A1:n66011011029 +132387 A0:n66011010020 A1:n66011012008 +132393 A0:n66011012003 A2:n66011012009 +132395 A0:n66011010020 +132398 A0:n66011010020 +132406 A1:n66011012022 A0:n66011012024 +132416 A0:n66011013007 +132424 A0:n66011013011 +132426 A1:n66011013020 +132440 A0:n66011013026 A1:n66011013031 A2:n66011013033 +132450 A0:n66011014002 +132456 A0:n66011014008 +132462 A0:n66011015004 +132464 A0:n66011015008 +132470 A0:n66011015008 +132484 A0:n66011015020 +132499 A0:n66011016005 +132504 A0:n66011016005 +132510 A0:n66011016005 A1:n66011016023 +132513 A0:n66011016005 +A0:n66011016005 A1:n66011017003 +132522 A0:n66011017004 +132525 A0:n66011017004 +132527 A0:n66011017004 A1:n66011017017 +132534 A0:n66011017004 +132538 A0:n66011018003 +132540 A0:n66011018008 +132549 A1:n66011018014 +132551 A0:n66011017004 A1:n66011018019 A2:n66011018021 +132564 A0:n66011018021 A1:n66011018032 +132574 A0:n66011017004 A1:n66011018042 +132576 A0:n00000000000 A1:n66011018044 +132580 A1:n66011019004 +132590 A1:n66011019014 +132601 A0:n66011019024;n66011019026;n66011019028;n66011019030;n66011019032 +132615 A1:n66012001002 +132620 A0:n66012001008 A1:n66012001011 +132641 A0:n66012001008 +132643 A0:n66012001008 +A0:n66012001008 +132646 A1:n66012001008 +A0:n66012001008 +132649 A1:n66012003004 +132660 A0:n66012003010 A1:n66012003014;n66012003017 +132677 A0:n66012004003 A1:n66012004007 +132685 A0:n66012004003 A1:n66012004014 +132693 A0:n66012004020 +132698 A0:n66012004024 A1:n66012004027 +A0:n66012004024 +132702 A0:n66012004024 A1:n66012004032 +132706 A0:n66012004020 +132708 A0:n66012004024 A1:n66012005003 +132712 A0:n66012005005 A1:n66012005007 +A0:n66012005003 A1:n66012005010 +132721 A1:n66012005017 +132736 A0:n66012006003 +132741 A0:n66012006003 A1:n66012006011 +132744 A1:n66012006011 +132750 A0:n00000000000 A1:n66012006019 +132757 A0:n66012007003 +132769 A0:n66012007008;n66012007011 +132774 A0:n66012007020;n66012007024 +132783 A0:n66012007020;n66012007024 +132787 A1:n66012008005 +132793 A1:n66012009004 +132809 A0:n66012009004 A1:n66012009020 +132813 A1:n66012009004 +132823 A1:n66012009028 +132825 A0:n66001009002 A1:n66012010008 +132831 A0:n66012010003 +132833 A0:n66012010012;n66012010015;n66012010018;n66012010024 +132852 A1:n66012010031 +132859 A0:n66012010031 A1:n66012010037 +132870 A0:n66012011002 A1:n66012011004 +132886 A0:n66012010033 A1:n66012011021 +132894 A1:n66012012004;n66012012009 +132900 A0:n00000000000 +132908 A0:n66012012019 +132913 A0:n66012012019 A1:n66012012023 +132916 A0:n66012012019 +132920 A0:n66012012019 A1:n66012012028 +132923 A0:n66012013005 +132927 A1:n66012013005 +132931 A0:n66012013005 A1:n66012013013 +132935 A0:n66012013014 A1:n66012013017 +132939 A2:n66012014004 A1:n66012014007 +132950 A0:n66012014004 +132959 A1:n66012014004 +132972 A0:n66012015004 A1:n66012015012 +132988 A0:n66012015004 A1:n66012015016 +132990 A0:n66012016004 A1:n66012016006 +132996 A0:n66012016010 A1:n66012016012 +133003 A0:n66012016010 A1:n66012016017 +133007 A1:n66012016018 A0:n66012016021 +133015 A0:n66012017004 +133022 A0:n66012017004 +A0:n66012017004 A1:n66012017011 +133032 A0:n66012017014 A1:n66012017021 +133038 A0:n66012017014 A1:n66012017027 +133043 A1:n66012017004 +133050 A0:n66001009002 A1:n66013001007 +133055 A0:n66013001006 +A0:n66013001006 A1:n66013001009;n66013001012 +133080 A0:n66001009002 A1:n66013002004 +133098 A2:n66013002024 A0:n66013002026 A1:n66013002028;n66013002032;n66013002035 +133119 A1:n66013003002 +133128 A1:n66013003013 +133130 A0:n66013003022 +133138 A0:n66013003022 A1:n66013004004 +133142 A0:n66013004004 A1:n66013004008 A2:n66013004010 +133148 A0:n66013003022 A1:n66013004014 +133151 A0:n66013003022 +133158 A0:n66013004021 A1:n66013004023 +A0:n66013004021 +133163 A2:n66013005003 A1:n66013005004 +133166 A0:n66013005004 A1:n66013005006;n66013005008 +133171 A2:n66013005011 A1:n66013005012 +133174 A0:n66013004014 +133179 A0:n66013004014 A1:n66013006004 +133188 A0:n66013004014 A1:n66013006013;n66013006017 +133200 A0:n66013006017 +133202 A2:n66013007003 A1:n66013007004;n66013007010 +133204 A0:n66013004014 A1:n66013007005 +133210 A0:n66013004014 A1:n66013007011 +133213 A2:n66013007014 A1:n66013007015 +133226 A0:n66013008006 A1:n66013008003 +133230 A0:n00000000000 +133235 A1:n66013008014 +133248 A1:n66013008022 +133254 A0:n66013009002 A1:n66013009004 +133256 A0:n66013009002 +133263 A0:n66013010002 +133268 A0:n66013010009 +A0:n66013010017 +133273 A1:n66013010014 +133284 A0:n66001009002 A1:n66013011005 +133287 A0:n66013011004 +133292 A0:n66013011004 A1:n66013011011 +133298 A0:n66013011004 +133308 A0:n66013011004 A1:n66013012003 +133312 A0:n66013011004 A1:n66013012014;n66013012019 +133319 A0:n00000000000 +133321 A0:n66013012014;n66013012019 A1:n66013012023 +133327 A1:n66013012029 +133334 A0:n66013011004 A1:n66013013003 +133339 A0:n66013011004 A1:n66013013012 +133344 A0:n66013013007 +133352 A0:n66013011004 A1:n66013014004 +133354 A0:n00000000000 +133362 A1:n66013014011 A2:n66013014013 +133364 A0:n66013011004 +133368 A0:n66013011004 A2:n66013014020 A1:n66013014024 +133370 A0:n00000000000 +133374 A0:n66013014020 A1:n66013014025 A2:n66013014027 +133379 A0:n66013014028 A1:n66013014031 +133385 A0:n66013014027 +133387 A2:n66013015003 A1:n66013015004 +133389 A0:n00000000000 A1:n66013015005 A2:n66013015007 +133397 A0:n66013015014 +133403 A0:n66013015014 +133408 A0:n66013015020 A1:n66013015025 +133413 A1:n66013015023 +133415 A0:n66013011004 A1:n66013016003 +133435 A0:n66013011004;n66013015014 A2:n66013016023 A1:n66013016024 +133453 A0:n66013017004 A1:n66013017006;n66013017008 +A0:n66013017004 +133456 A0:n66013017004 +133460 A0:n00000000000 A1:n66013017014 +133478 A0:n00000000000 A1:n66013018007 +133480 A0:n66013018006 A1:n66013018010 +133497 A0:n66001009002 +133502 A0:n66014001006 +133514 A0:n66014001018 A1:n66014001029 +133524 A1:n66014001021;n66014001025 +133530 A0:n66001009002 A1:n66014002003 +133548 A0:n66001009002 A1:n66014002019 +133551 A0:n66014002022 +133557 A0:n66014001018 A1:n66014003003 +133573 A0:n66014003017 A1:n66014003019 +A0:n66014003017 A1:n66014003021 +133585 A1:n66014003028 +133595 A1:n66014004003 +133601 A0:n00000000000 A1:n66014004015 +133606 A0:n66014004015 +133608 A1:n66014004019 +133624 A1:n66014005008 +133629 A0:n66001009002 A1:n66014006005 +133632 A0:n66014006004 +133635 A0:n66014006004 A1:n66014006009 +133638 A0:n66014006004 +133641 A0:n00000000000 +133655 A0:n66014006004 +133659 A1:n66014006014 A1:n66014007007 +133663 A0:n66014006014 A2:n66014007010 A1:n66014007011 +133667 A0:n66014007015 +133674 A0:n66014006014 A1:n66014007022 +133676 A0:n66014007007 A1:n66014007024;n66014007027;n66014007029;n66014007031 +133691 A0:n66014008003 +A0:n66014008003 +A0:n66014008009 +A0:n66014008009 +133707 A0:n66014008012 A1:n66014008024 +133715 A0:n66014009003 A1:n66014009006 +133717 A0:n66014009003 +133723 A0:n66014009012 A1:n66014009015 +133731 A0:n66014009012 A1:n66014009022 +133744 A0:n66014010002 +133753 A1:n66014010006 +133762 A1:n66014009012 +133783 A0:n66014011003 +133786 A1:n66014011014 A0:n66014011019;n66014011029 +133792 A0:n00000000000 A1:n66014011021;n66014011024 +133802 A0:n66014011028 A1:n66014011031 +133815 A0:n66014012005 A1:n66014012010;n66014012015 +133825 A0:n66001009002 A1:n66014013007 +133830 A0:n66014013003 +A0:n66001009002 A1:n66014013009 +133838 A0:n66014013011 +133841 A0:n66014013020 +133845 A1:n66014013011 +133854 A0:n66014013029 +133858 A0:n66001009002 +133867 A0:n66014014013 +133871 A0:n66014014013 A1:n66014014020 +133888 A0:n66014015003 +133892 A0:n66014015003 A1:n00000000000 A2:n66014015013 +133897 A0:n66014014013 +133901 A0:n66014015013 A1:n66014015019 +133906 A0:n66014015013 +133908 A0:n66014015026 +133911 A0:n66014015026 +133913 A1:n66014015031 +133919 A0:n66014016004 A1:n66014016009 +133921 A0:n66014015013 +133932 A1:n66014016017 +133938 A0:n66014017003 +133946 A0:n66014017014 A1:n66014017015 +133955 A0:n66014018003 A1:n66014018010 +133960 A0:n66014018003 +133965 A0:n66014018003 A1:n00000000000 A2:n66014018019 +133969 A0:n66014017003 A1:n66014018021 +133974 A0:n66014018003 +A0:n66014018019 A1:n66014018028 +133982 A0:n66014018019 A1:n66014018034 +133990 A0:n66014018042 +133995 A0:n66014019004 A1:n66014019006 +134005 A0:n66014019004 A1:n66014019014 +134011 A0:n66014019004 +134022 A1:n66014020004 +134029 A0:n66014020010 +134044 A0:n66001009002 A1:n66015001004 +134055 A0:n66015001011 A1:n66015001014 +134063 A1:n66015001023 +134069 A0:n66001009002 +134073 A1:n66015002004 +134077 A0:n00000000000 +134093 A0:n66015002010 +134099 A0:n66015002010 A1:n66015002033 +134104 A0:n66015002010 A1:n66015003004;n66015003012 +134117 A0:n66015002010 +134142 A0:n66015004001 +134145 A0:n66015004001 A1:n66015004009 +134156 A0:n66015004017 +134158 A0:n66015004017 +134165 A1:n66015004025 +134169 A0:n66001009002 +134171 A1:n66015005008 +134182 A0:n66015006005 +134187 A0:n66015006005 A1:n66015006010 +134194 A0:n66015006005 A1:n66015006015 +134199 A0:n66015006005 A1:n66015006023 +134211 A0:n66015007002 A2:n66015007010 A1:n66015007012 +134218 A0:n66015007012 A1:n66015007016 +134224 A0:n66015007018 +134231 A1:n66015008004 +134247 A0:n66015008017 A1:n66015008019 +A0:n66015008017 +134253 A1:n66015008027 +134261 A0:n66001009002 A1:n66016001008 +134267 A0:n66016001004 A2:n66016001011 +134271 A0:n66016001011 +134273 A0:n66016001011 A1:n66016001017 +134285 A0:n66016002004 +134289 A0:n66016002004 A1:n66016002008 +134297 A0:n66016002015 +134306 A0:n66016002021 A1:n66016002025 +134313 A0:n66016002021 A1:n66016002032 +134320 A0:n66016003003 A1:n66016003006 +134340 A0:n66016003018 +134344 A0:n66016004003 A1:n66016004006 +134360 A0:n66001009002 A1:n66016005007 +134365 A0:n66016005004 +134369 A0:n66016005016 +134372 A0:n66016005016 +134377 A0:n66016005011 A1:n66016005018 +134383 A0:n66016002021 A1:n66016006002 +134387 A0:n66016005011 A1:n66016006008 A2:n66016006009 +A0:n66016002021 +134392 A0:n66001009002 A1:n66016007005 +134395 A0:n66016007004 +134411 A0:n66016008003 A1:n66016008006 +134419 A2:n66016008013 A1:n66016008014 +134421 A0:n00000000000 A1:n66016008016 +134427 A1:n66016009004 +134433 A0:n66016009004 A1:n66016009010 +134439 A0:n66016009012 A1:n66016009016 +134448 A0:n66016009004 +A0:n66016009004 A2:n66016009025 A1:n66016009026 +134455 A0:n66016010003 A1:n66016010006 +134469 A1:n66016010016 +134471 A0:n66016009004 A1:n66016010022 +134479 A0:n66016009004 A1:n66016011004 +134495 A0:n66016009004 +134503 A0:n66016012003 A1:n66016012006 +134514 A1:n66016012017 +134519 A1:n66016012022 +134529 A0:n66001009002 A1:n66016013020 +134556 A0:n66016014003 A1:n66016014006 +134559 A0:n66016014007 +134566 A0:n66016014003 A1:n66016014016 +134580 A0:n66014013014 +134585 A0:n00000000000 +134587 A0:n00000000000 A1:n66016015011 +134594 A0:n66016015007 +134596 A0:n00000000000 A1:n66016015020 +134601 A0:n66016013020 A1:n66016016003 +134613 A0:n66016017003 A1:n66016017006 +134621 A0:n66016017013 +134630 A0:n66016017013 +A0:n00000000000 +134633 A0:n66016018003;n66016018005;n66016018007 +134642 A0:n66016018009 +134645 A0:n66016018012 +134649 A0:n66016018017 +134658 A0:n66016019004 +134671 A0:n66016019012 +134676 A1:n66016019017 +134680 A0:n66016019023 A2:n66016019025 A1:n66016019027 +134694 A0:n66016020003 +134698 A1:n66016020006 +134704 A0:n66016021002 +134712 A0:n66016021016 A1:n66016021018 +134730 A0:n66017001003 +134737 A0:n66017001007 A1:n66017001012 +134742 A0:n66017001003 +134745 A0:n66017001003 +A0:n66001009002 +A0:n66017001003 A2:n66017001020 A1:n66017001022 +134756 A0:n66017001024 +134762 A0:n66017002005 +134768 A1:n66017002011 +134770 A0:n00000000000 +134780 A0:n66017001003 A1:n66017003003 +134787 A0:n66001009002 A1:n66017003011 +134789 A0:n66017003010 +134793 A0:n66017003013 A1:n66017003016 +134796 A0:n66017003013 A1:n66017003019;n66017003022 +134806 A0:n66017004003 A1:n66017004006;n66017004008 +134811 A1:n66017004003 +134818 A0:n66017004003 A1:n66017004018 +134825 A0:n66017004018 A1:n66017004025;n66017004028 +134838 A1:n66017005006 +134854 A0:n66001009002 A1:n66017006005 +134857 A0:n66017006004 +134871 A0:n66001009002 A1:n66017006022 +A0:n66001009002 A1:n66017006021 +134877 A2:n66017007003 A0:n66017007005 +134883 A0:n66001009002 +134885 A0:n66017007009 A2:n66017007011 A1:n66017007013 +134895 A0:n66017007018 A1:n66017007021 +134898 A0:n66017007018 A1:n66017007026;n66017007030 +134909 A0:n66001009002 A1:n66017008003 +A0:n66017008002 +134913 A0:n66017008002 +134915 A0:n66017008002 A1:n66017008011 +A0:n66017008002 +134923 A0:n66017008002 +134925 A0:n66017008022 +134927 A0:n00000000000 +134935 A1:n66017008030 +134944 A0:n66017008022 A1:n66017008041 +134948 A0:n66017008041 +134951 A0:n66017008041 +134953 A0:n66017008041 +134958 A0:n66017009003 A1:n66017009006 +134969 A0:n66017009015 +134978 A0:n66017010002 +134981 A0:n66017010005 +134985 A0:n66017010008 +134988 A0:n66017010008 +134991 A0:n66017010015 +A0:n66017010017 +134997 A0:n66017011004 +135000 A0:n66017011003 +135013 A0:n66017011003 +135019 A0:n66001009002 A1:n66017012005 +135026 A0:n66017012010 A1:n66017012011 +135033 A0:n66017012008 A1:n66017012015 +135040 A0:n66017013001 A1:n66017013003 +135049 A0:n66017012008 A1:n66017013007;n66017013009 A2:n66017013012 +135054 A0:n66017014001 +135058 A0:n66017014008 A1:n66017014010 +135077 A0:n66017007005 A2:n66017015003 +135082 A0:n66001009002 A1:n66017015006 +135086 A0:n66017015010 +135100 A0:n66001009002 A1:n66017016005 +135105 A0:n66017016010 A1:n66017016013 +135109 A0:n66017016004;n66017016009 A1:n66017016017 +135111 A1:n66017016013 +135118 A0:n66017016004;n66017016009 A1:n66017016022 +135121 A0:n66017016004;n66017016009 A1:n66017016026 +135127 A0:n66017017003 A1:n66017017009;n66017017014;n66017017018 +135132 A0:n66017012008 A1:n66017017011 +135137 A0:n66017012008 A1:n66017017016 +135141 A0:n66017012008 A1:n66017017020 A2:n66017017023 +135148 A1:n66017017027 +135157 A0:n66001009002 A1:n66017018004 +135164 A0:n66017018008 A1:n66017018013 +135173 A0:n66001009002 A1:n66018001006 +135176 A0:n66018001005 +135180 A0:n66018001005 A1:n66018001011 +135186 A1:n66018001015 +135192 A0:n66018001005 +135196 A0:n66018001005 +A0:n66018002009 +A0:n66018002009 +135217 A1:n66018002024 +135227 A0:n66018003013 +135238 A0:n66018003016 +135250 A0:n66018003024 +135252 A0:n66001009002 A1:n66018004008 +135258 A0:n66018004004 +135262 A0:n66018004011 +135267 A0:n66018004011 +135278 A0:n66018004011 +135280 A1:n66018005005 +135288 A0:n66018005012 A1:n66018005014 +135294 A0:n66018004011 A1:n00000000000 A2:n66018006002 +135299 A0:n66018006005 +135301 A0:n66018004011 A1:n66018006010 +135312 A0:n66018002009 +A0:n66018004011 A2:n66018006021 A1:n66018006022 +135317 A0:n66018002009 A1:n66018007003 +135320 A0:n66018002009 +135325 A0:n66018004011 A1:n66018007009;n66018007011 A2:n66018007008 +135332 A0:n66018002009 +135334 A0:n66018002009 +135344 A0:n66018002009 A1:n66018007026 +135350 A0:n66018008008 +135362 A1:n66018002009 +135369 A0:n66018008021 A1:n66018008026 +135372 A0:n66018009008 +135374 A0:n66018009008 +135384 A0:n66018009008 +135386 A0:n66018009008 +135388 A0:n66018009008 A1:n66018009020 +135396 A0:n66018009008 +135403 A0:n66018009008 +135418 A0:n66018010027 +135427 A0:n66018011003 +135429 A0:n66018011003 +135434 A0:n66018011015 A1:n66018011013 +135515 A0:n66018014003 +135525 A0:n66018014015;n66018014018 +135533 A0:n00000000000 A1:n66018014026 +135538 A0:n66018015002 +135543 A0:n66018015002 +135550 A0:n66018015002 +135552 A0:n66018015002 +A0:n66018015002 +135561 A0:n66018016005 A1:n66018016010;n66018016012;n66018016014 +135568 A1:n66018016005 +135579 A1:n66018017007 +135591 A0:n00000000000 +135598 A0:n66018017020 +135601 A0:n66018017010;n66018017016;n66018017018;n66018017023 +135603 A0:n66018017010;n66018017016;n66018017018;n66018017023 +A0:n66018017010;n66018017016;n66018017018;n66018017023 A1:n66018018005 +135610 A0:n66018017010;n66018017016;n66018017018;n66018017023 +135618 A0:n66018017010;n66018017016;n66018017018;n66018017023 A1:n66018019003 +135625 A0:n66018017010;n66018017016;n66018017018;n66018017023 +A0:n66018017010;n66018017016;n66018017018;n66018017023 +135628 A0:n66018017010;n66018017016;n66018017018;n66018017023 +A0:n66018017010;n66018017016;n66018017018;n66018017023 +135638 A0:n66018019025 +135641 A0:n00000000000 A1:n66018019027 +135654 A1:n66018019017 +A1:n66018020004;n66018020007;n66018020010;n66018020013 +135669 A0:n66018020017 A1:n66018020019 +135678 A0:n66018021004 A1:n66018021006 +135687 A0:n66018021004 +135691 A0:n66018021004 +135694 A1:n66018021019 +135702 A1:n66018021019 +135715 A1:n66018022002 +135726 A1:n66018022018 +135735 A1:n66018022028 +135744 A0:n66018023002 +135755 A1:n66018023011 +135773 A1:n66018023038 +135780 A1:n66018024004 +135788 A1:n00000000000 +135794 A0:n66001009002 A1:n66019001012 +135803 A0:n66019001005 +135824 A0:n66019001023 A1:n66019002011 +135830 A0:n66019002014 A1:n66019002017 +135838 A0:n66019001023 A1:n66019002025 +135849 A0:n66019001007 +135855 A0:n66019003007 +135862 A0:n66019004004;n66019004011 +135873 A0:n66019004004;n66019004011 A1:n66019004015 +135877 A0:n66019004015 +135881 A0:n66019004004;n66019004011 +135889 A0:n66019005002 +A0:n66019005002 +A0:n66019005014;n66019005017 A1:n66019005010 +135900 A0:n00000000000 A1:n66019005018 +135908 A0:n66001009002 A1:n66019006017 +135923 A0:n66019006004;n66019006009;n66019006014 +135926 A0:n66019006021 +135933 A0:n66019006005 +135935 A0:n66019006005 +135937 A0:n66019006005 A1:n66019007007 A2:n66019007008 +135942 A0:n66019007012 +135951 A0:n66019007017 A1:n66019007020 +135954 A2:n66019008003 A1:n66019008005 +135957 A0:n66019007017 A1:n66019008006 +135970 A0:n66019005002 A2:n66019009003 +135972 A0:n66001009002 A1:n66019009005 +135982 A1:n00000000000 +135984 A0:n66019005002 A2:n66019009017 +135994 A0:n66001009002 +135999 A0:n66001009002 A1:n66019010008 +136002 A0:n66019005002 A2:n66019010011 +136004 A0:n66001009002 A1:n66019010013 +136014 A0:n66019010019 A1:n66019010024 +136020 A0:n66001009002 A1:n66019010027 +136031 A0:n66001009002 A1:n66019011005 +136034 A1:n66019011004 +136041 A0:n00000000000 +136051 A0:n66019011012 +136053 A0:n66019011012 +136067 A0:n66019011012 A1:n66019012015 +136069 A1:n66019012015 +136072 A1:n66019012017 A0:n66019012018 +136077 A0:n66019011012 A1:n66019013003 +136079 A1:n66019013003 +136097 A0:n66019014003 A1:n66019014009 +136102 A0:n66019014003 A1:n66019014014 +136111 A0:n66019015007 +136117 A0:n66019011012 A1:n66019015014 +136122 A0:n66019015016 A1:n66019015018 +136129 A0:n66019015023 A1:n66019015026 +136143 A0:n66019011012 A1:n66019016011 +136153 A1:n66019016011 +136160 A0:n66001009002 A1:n66019017005;n66019017010 +136163 A0:n66019017004 +136168 A0:n66019017004 +136172 A0:n66019017004 A2:n66019017017 +136177 A0:n66019017017 +136180 A0:n66019017017 +A1:n66019017017 +136190 A0:n66019017017 A1:n66019018003;n66019018006;n66019018009;n66019018012;n66019018020 +136204 A0:n00000000000 +136219 A0:n66001009002 A1:n66019019014 +136231 A1:n66019019004;n66019019007;n66019019012 +A0:n66019019004;n66019019007;n66019019012 A1:n66019019017 +136237 A0:n66019011012 +136247 A1:n66019020004 +136256 A0:n66019020009 A1:n66019020013 +136263 A0:n66019020009 A1:n66019020020;n66019020027 +136265 A0:n00000000000 A1:n66019020022 +136272 A0:n00000000000 A1:n66019020029 +136276 A0:n66019020034 +A1:n66019020034 +136286 A1:n66019020039 +136292 A1:n66019021003 +136297 A0:n66019019020 +136302 A0:n66019021007 +136311 A1:n66019021022 +136317 A0:n66001009002 A1:n66020001004 +136319 A0:n66020001003 +136323 A0:n66020001003 A1:n66020001010;n66020001014 +136336 A0:n66020001003 A1:n66020002004 +136350 A0:n66020001003 A1:n66020002017 +136355 A0:n66020001003 A1:n66020003003 +136361 A0:n66020001003 +136363 A0:n66020001003 +136368 A0:n66020002004 A1:n66020003018 +136373 A1:n66020003023 +136379 A0:n66020003027 +A1:n66020003028 +136385 A0:n66001009002 A1:n66020004003 +136388 A0:n66020004016 +136393 A1:n66020004009 A2:n66020004011 +136399 A1:n00000000000 +136413 A0:n66020004028 A1:n66020004032;n66020004035 +136422 A0:n66020004016 A1:n66020004041 +136434 A0:n66020004016 +136436 A0:n66020004016 +136447 A0:n66020005002 +136449 A1:n66020005011 +136462 A0:n00000000000 A1:n66020006006 +136475 A0:n66020006016 A1:n66020006019 +136486 A0:n66020006005 +136494 A1:n66020007006 +136498 A1:n66020007009 +136506 A0:n66020007009 +A0:n66020007009 A1:n66020008005 +136521 A0:n66020007009 A1:n66020008018 +136536 A0:n66020008005 +136543 A0:n66020008005 A1:n66020009011;n66020009016 +136552 A1:n66020009016 +136554 A0:n66020009021 +136560 A0:n66020009021 A1:n66020009027 +136566 A0:n66020010003 A1:n66020010006 +136568 A1:n66020010003 +136584 A1:n66020010003;n66020010018;n66020010021 +136594 A0:n66001009002 A1:n66020011003;n66020011008 +136600 A0:n00000000000 +136607 A0:n66020011017;n66020011020 +136616 A1:n66020011022 A2:n66020011025 +136619 A0:n66001009002 A1:n66020012010 +136627 A0:n66020012004 +136633 A1:n66020012015 +136637 A1:n66020012019 +136643 A1:n66020012028 +136648 A1:n00000000000 +136657 A0:n66020013004 A1:n66020013006 +136671 A0:n66020013012;n66020013015 A1:n66020013018 +136678 A1:n66020013024 +136690 A1:n66020014003;n66020014006 +136716 A1:n66020015003 +A1:n66020015003 +136724 A0:n66001009002 A1:n66021001003;n66021001006 +136738 A0:n66021001011;n66021001015 +136743 A0:n66021001019 +136746 A0:n66001009002 A1:n66021002009 +136753 A0:n66021002003 +136760 A1:n66021002003 +136763 A1:n66021002018 A2:n66021002021 +136768 A0:n66001009002 A1:n66021003008 +136774 A0:n66021003003 +136784 A0:n66021003013 +136800 A0:n66021003029 A1:n66021004004 +136811 A0:n66021004011 +136820 A0:n66021004016;n66021004018;n66021004020 +136825 A0:n66021004026 +136827 A0:n66021005004 +136829 A0:n66020011008 +136835 A0:n66021005004 A1:n66021005011 +136838 A0:n66021005004 +A0:n66001009002 +136849 A0:n66021005004 A2:n66021006003 +136851 A0:n00000000000 +136865 A0:n00000000000 +A0:n66021006016 A1:n00000000000 A2:n66021006018 +136876 A0:n00000000000 +A0:n66021007002 A1:n66021007004 +136894 A0:n00000000000 +136914 A1:n66021008025 +136925 A0:n66021009003 +136932 A0:n66021009007 A1:n66021009012 +136937 A0:n66021009012 A1:n66021009017 +136944 A0:n66021009003 +136947 A0:n66021009003 +A0:n66001009002 +A0:n66021009003 A2:n66021009027 A1:n66021009029 +136958 A0:n66021009003 A1:n66021010003 +136968 A0:n66021009003 A2:n66021010013 A1:n66021010019 +136975 A0:n66021010015 +136982 A0:n66021010015 A1:n66021011003 +136996 A0:n66021011013 +A0:n66021010015 A1:n66021012002 +137002 A0:n66021010015 A1:n66021012007 +137012 A1:n66021012016 +137045 A0:n66021014003 A1:n66021014007 +137060 A0:n66021009003 +137063 A0:n66021015003 A1:n66021015007 +137068 A0:n66021015003 A1:n66021015013;n66021015016;n66021015020 +137092 A0:n66021015003 A1:n66021016016 +137113 A0:n66021015003 A1:n66021017004 +137150 A1:n66021019002 +137217 A0:n66001009002 A1:n66021022002 +137237 A0:n66021023003 A1:n66021023005 +137245 A0:n66021023008;n66021023011 AA2:n66021023014 +137252 A0:n66021023017 A1:n66021023021 +137261 A0:n66021024004 +137273 A0:n66021024011 A1:n66021024016 +137285 A1:n66021025003 +137293 A0:n66021024011 A1:n66021026004;n66021026007 +137306 A0:n66021027008;n66021027011 +137313 A0:n00000000000 A1:n66021027012;n66021027014 +137320 A1:n00000000000 +137329 A0:n66021015003 A2:n66022001003 A1:n66022001010 +137337 A0:n66022001004 +137359 A0:n66022002012 A1:n66022002015 +137365 A0:n66022002012 A1:n66022002022 +137382 A0:n66022003003 +137399 A0:n66022003020 A1:n66022003023 +137402 A0:n66022003020 A1:n66022004004 +137417 A0:n66022005002 +137421 A0:n66022003020 A1:n66022005009 +137432 A0:n66022005016 +137436 A0:n66022003020 +137443 A0:n66021015003 A2:n66022006003 +137460 A0:n66022006012 A1:n66022006021 +137464 A0:n66022006021 A2:n66022006025 A1:n66022006028 +137469 A0:n66022006027 +137472 A0:n66022006029 +137475 A0:n66022003014 +137479 A0:n00000000000 A1:n66022007009 +137490 A0:n00000000000 A1:n66022008007 +137492 A0:n00000000000 A1:n66022008007 +137496 A0:n66022008002 +137498 A0:n66022008002 +A0:n66022008002 +A0:n66022008002 +137507 A0:n66022008019 A2:n66022008022 A1:n66022008023 +137511 A0:n66022008019 A2:n66022009003 +137513 A0:n66022008002 A1:n66022009005 +137526 A0:n00000000000 A1:n66022009019 +137534 A0:n66022008002 A1:n66022009024 +137536 A0:n66022008019 A2:n66022010003 +137539 A0:n66022008002 A1:n66022010007 +137553 A0:n00000000000 +A0:n66022011002 +137559 A1:n66022011007 +137565 A0:n66022011012 A1:n66022011013 +137570 A1:n66022011018 +137573 A0:n66022003014 +137581 A0:n66022003014 A1:n00000000000 A2:n66022012011 +137587 A0:n66022012014 +137606 A0:n00000000000 A1:n66022014005 +137623 A0:n66022014003 +137644 A0:n00000000000 A1:n66022015021 +137646 A0:n00000000000 A1:n66022015021 +137650 A0:n66022016001 A1:n66022016005 +137654 A0:n66022016005 A2:n66022016008 A1:n66022016009 +137680 A0:n66022017003;n66022017006 +A0:n66022016002 +137684 A0:n00000000000 +A0:n66022017011 +A0:n66022016002 +137689 A0:n00000000000 +A0:n66022017016 +137692 A0:n00000000000 +A0:n66022017019 A1:n66022017021 +137697 A0:n66022018002 A2:n66022018005 +137701 A0:n00000000000 A1:n66022018007 +137711 A0:n66022018014 +137714 A0:n66022018020 A1:n66022018024 +137722 A1:n66022018024 +137730 A0:n66022019003 +137739 A0:n66022019015 A1:n66022019017 +137757 A1:n66022019021;n66022019027 +137762 A0:n66022020003 +137764 A0:n66022016002 A1:n66022020004 +137767 A0:n66022020003 +137770 A0:n66022020010 diff --git a/tf/0.1.1/gender.tf b/tf/0.1.1/gender.tf new file mode 100644 index 0000000..1a41fcb --- /dev/null +++ b/tf/0.1.1/gender.tf @@ -0,0 +1,73989 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=gender +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +11 masculine +masculine +14 masculine +16 masculine +masculine +19 masculine +21 masculine +masculine +24 masculine +masculine +masculine +28 masculine +30 masculine +masculine +33 masculine +masculine +36 feminine +feminine +39 masculine +41 masculine +masculine +44 masculine +46 masculine +masculine +49 masculine +51 masculine +masculine +54 masculine +56 masculine +masculine +59 masculine +61 masculine +masculine +64 masculine +66 masculine +masculine +69 feminine +feminine +72 masculine +74 masculine +masculine +77 feminine +feminine +80 masculine +82 masculine +masculine +85 masculine +87 masculine +masculine +masculine +masculine +92 masculine +94 masculine +masculine +97 feminine +masculine +masculine +101 masculine +103 masculine +masculine +106 masculine +108 masculine +masculine +111 masculine +113 masculine +masculine +116 masculine +118 masculine +masculine +121 masculine +123 masculine +masculine +126 masculine +128 masculine +masculine +131 masculine +133 masculine +masculine +136 masculine +138 masculine +masculine +141 masculine +143 masculine +masculine +146 masculine +148 masculine +masculine +151 masculine +153 masculine +masculine +156 masculine +158 masculine +masculine +161 masculine +163 masculine +masculine +166 masculine +masculine +masculine +170 feminine +feminine +feminine +175 feminine +feminine +feminine +masculine +180 masculine +masculine +183 masculine +185 masculine +masculine +188 masculine +190 masculine +masculine +193 masculine +195 masculine +masculine +198 masculine +200 masculine +masculine +203 masculine +205 masculine +masculine +208 masculine +210 masculine +masculine +213 masculine +215 masculine +masculine +218 masculine +220 masculine +masculine +223 masculine +225 masculine +masculine +228 masculine +230 masculine +masculine +233 masculine +235 masculine +masculine +masculine +masculine +feminine +241 feminine +243 masculine +masculine +masculine +masculine +248 feminine +feminine +feminine +252 masculine +254 masculine +feminine +feminine +259 masculine +261 feminine +feminine +feminine +feminine +feminine +268 feminine +feminine +feminine +272 masculine +masculine +feminine +feminine +277 masculine +masculine +masculine +feminine +feminine +284 feminine +feminine +feminine +masculine +feminine +masculine +masculine +294 masculine +297 feminine +feminine +300 neuter +neuter +303 masculine +masculine +masculine +feminine +masculine +masculine +311 masculine +feminine +317 feminine +319 neuter +masculine +masculine +323 masculine +masculine +326 neuter +328 masculine +masculine +masculine +masculine +masculine +336 feminine +feminine +feminine +341 neuter +343 feminine +neuter +346 neuter +neuter +351 masculine +354 neuter +neuter +masculine +masculine +359 masculine +361 masculine +masculine +masculine +365 feminine +feminine +masculine +369 neuter +neuter +374 neuter +neuter +377 masculine +379 masculine +masculine +masculine +383 feminine +feminine +386 feminine +390 masculine +393 neuter +neuter +masculine +masculine +neuter +399 neuter +402 masculine +masculine +405 masculine +masculine +masculine +409 masculine +masculine +414 masculine +masculine +masculine +masculine +420 feminine +feminine +masculine +426 feminine +428 masculine +430 masculine +433 neuter +neuter +masculine +masculine +438 masculine +masculine +masculine +442 feminine +feminine +feminine +446 feminine +masculine +masculine +masculine +451 masculine +453 feminine +456 neuter +masculine +460 masculine +masculine +masculine +masculine +masculine +467 masculine +masculine +masculine +471 feminine +feminine +476 masculine +478 masculine +masculine +masculine +masculine +484 feminine +feminine +487 masculine +489 masculine +masculine +masculine +masculine +494 masculine +masculine +masculine +499 masculine +501 masculine +masculine +505 masculine +507 masculine +509 feminine +feminine +feminine +516 masculine +masculine +519 feminine +feminine +masculine +524 feminine +527 masculine +masculine +masculine +534 masculine +masculine +537 masculine +masculine +540 masculine +masculine +543 masculine +545 masculine +masculine +masculine +550 masculine +masculine +masculine +masculine +masculine +masculine +557 masculine +masculine +560 feminine +562 masculine +566 neuter +neuter +575 masculine +577 masculine +579 masculine +masculine +masculine +masculine +586 masculine +masculine +masculine +591 feminine +feminine +594 masculine +596 masculine +601 neuter +neuter +604 masculine +masculine +masculine +608 feminine +feminine +612 masculine +614 feminine +feminine +617 neuter +neuter +620 feminine +feminine +feminine +neuter +625 masculine +627 masculine +629 masculine +masculine +masculine +masculine +634 masculine +neuter +masculine +638 masculine +640 feminine +642 masculine +644 neuter +648 masculine +650 feminine +feminine +654 feminine +feminine +masculine +658 masculine +masculine +661 masculine +masculine +665 neuter +masculine +masculine +masculine +masculine +671 neuter +neuter +674 feminine +feminine +masculine +680 feminine +690 masculine +692 neuter +neuter +neuter +696 neuter +698 masculine +masculine +701 neuter +neuter +704 feminine +feminine +masculine +feminine +711 feminine +716 feminine +feminine +masculine +721 neuter +neuter +724 masculine +726 masculine +masculine +masculine +730 feminine +732 masculine +masculine +736 masculine +masculine +741 masculine +masculine +746 masculine +748 masculine +masculine +masculine +masculine +753 feminine +756 neuter +neuter +neuter +feminine +761 masculine +765 masculine +masculine +masculine +770 masculine +masculine +774 neuter +neuter +777 masculine +masculine +masculine +masculine +782 feminine +784 feminine +masculine +787 masculine +masculine +feminine +feminine +neuter +neuter +feminine +802 masculine +masculine +masculine +806 masculine +masculine +810 neuter +masculine +masculine +814 feminine +masculine +masculine +818 neuter +neuter +821 feminine +feminine +masculine +827 feminine +masculine +831 masculine +masculine +feminine +feminine +neuter +neuter +838 masculine +masculine +841 neuter +neuter +844 feminine +feminine +masculine +850 feminine +masculine +853 masculine +855 masculine +857 feminine +feminine +860 masculine +masculine +masculine +masculine +868 masculine +870 neuter +873 neuter +neuter +feminine +feminine +878 masculine +881 feminine +feminine +feminine +886 neuter +neuter +889 masculine +masculine +892 masculine +896 feminine +feminine +feminine +900 masculine +masculine +masculine +masculine +905 feminine +feminine +feminine +feminine +masculine +913 feminine +feminine +masculine +masculine +918 masculine +920 masculine +masculine +923 masculine +masculine +masculine +masculine +feminine +masculine +930 feminine +feminine +933 feminine +feminine +masculine +feminine +938 feminine +feminine +masculine +942 masculine +masculine +masculine +946 neuter +neuter +masculine +950 feminine +feminine +953 feminine +feminine +956 feminine +feminine +masculine +960 feminine +feminine +masculine +964 feminine +966 neuter +neuter +971 masculine +feminine +974 feminine +feminine +feminine +978 feminine +feminine +feminine +masculine +masculine +986 masculine +masculine +masculine +990 masculine +masculine +feminine +feminine +masculine +996 masculine +masculine +masculine +masculine +1001 masculine +masculine +1004 neuter +neuter +1007 masculine +neuter +feminine +masculine +1015 feminine +feminine +feminine +1020 masculine +masculine +feminine +feminine +1029 masculine +masculine +1032 masculine +masculine +1039 masculine +masculine +1042 masculine +masculine +masculine +1046 neuter +masculine +masculine +1051 feminine +feminine +1054 feminine +feminine +neuter +neuter +1060 neuter +neuter +1063 neuter +masculine +masculine +1069 neuter +1076 neuter +1078 feminine +1080 masculine +1083 masculine +masculine +1087 masculine +1090 masculine +neuter +neuter +1094 masculine +1098 neuter +neuter +1101 neuter +masculine +neuter +neuter +1106 feminine +feminine +masculine +1111 feminine +feminine +masculine +1116 masculine +masculine +masculine +1120 feminine +feminine +1123 neuter +neuter +1126 neuter +neuter +1130 masculine +masculine +1133 feminine +feminine +1136 masculine +masculine +1139 masculine +masculine +neuter +1144 masculine +1146 masculine +1148 masculine +masculine +1151 feminine +1162 masculine +masculine +masculine +1166 masculine +1171 neuter +1175 feminine +feminine +1179 masculine +1181 masculine +masculine +masculine +masculine +1187 neuter +neuter +1192 masculine +masculine +1196 neuter +masculine +neuter +1200 feminine +neuter +1203 masculine +1206 feminine +1208 masculine +masculine +feminine +masculine +1213 masculine +masculine +1216 masculine +masculine +1219 masculine +1222 masculine +masculine +1226 feminine +feminine +1229 neuter +neuter +1233 masculine +masculine +1236 masculine +feminine +1241 feminine +neuter +1245 masculine +masculine +masculine +1249 masculine +1252 masculine +masculine +masculine +1257 masculine +masculine +masculine +masculine +1263 masculine +masculine +1269 masculine +masculine +1272 masculine +masculine +1276 neuter +neuter +neuter +1280 neuter +masculine +1284 masculine +masculine +masculine +1288 feminine +feminine +feminine +1293 masculine +1295 neuter +neuter +neuter +neuter +1301 masculine +1304 masculine +masculine +masculine +1308 masculine +1313 masculine +masculine +masculine +1321 feminine +1328 masculine +masculine +masculine +1333 masculine +masculine +masculine +1340 masculine +masculine +masculine +1346 masculine +masculine +masculine +1350 neuter +neuter +1355 masculine +feminine +feminine +feminine +masculine +masculine +1362 feminine +feminine +feminine +1367 masculine +neuter +neuter +1373 masculine +1378 masculine +masculine +masculine +1382 masculine +1385 masculine +masculine +masculine +1391 masculine +masculine +1396 masculine +masculine +masculine +1401 masculine +1405 masculine +1407 masculine +1409 masculine +1413 feminine +feminine +1416 masculine +feminine +feminine +masculine +1422 feminine +feminine +feminine +1426 neuter +masculine +1429 masculine +1432 neuter +neuter +1435 masculine +masculine +masculine +masculine +feminine +masculine +1442 feminine +masculine +feminine +feminine +1447 masculine +masculine +feminine +neuter +neuter +masculine +masculine +masculine +masculine +1457 feminine +neuter +neuter +1462 masculine +masculine +1465 feminine +1467 feminine +masculine +neuter +1471 masculine +1475 masculine +masculine +1483 feminine +feminine +masculine +masculine +1488 masculine +1490 feminine +feminine +feminine +feminine +1496 masculine +masculine +masculine +masculine +masculine +1502 masculine +masculine +masculine +masculine +masculine +neuter +1509 feminine +feminine +1513 masculine +1516 masculine +1523 masculine +masculine +1526 masculine +1528 masculine +neuter +neuter +1532 masculine +1534 masculine +1537 masculine +1539 masculine +masculine +masculine +masculine +masculine +1545 masculine +masculine +masculine +masculine +1550 neuter +neuter +1553 masculine +masculine +masculine +masculine +masculine +neuter +neuter +masculine +1563 masculine +1565 masculine +1567 masculine +neuter +neuter +1571 masculine +masculine +masculine +1575 masculine +1579 feminine +feminine +feminine +masculine +1584 feminine +feminine +masculine +1588 masculine +neuter +neuter +feminine +feminine +1594 masculine +feminine +feminine +1598 feminine +feminine +1601 masculine +masculine +1605 feminine +feminine +masculine +1609 feminine +feminine +feminine +1614 masculine +masculine +masculine +1618 masculine +feminine +feminine +1622 feminine +masculine +masculine +1626 masculine +1628 masculine +1631 masculine +1634 masculine +masculine +masculine +1638 feminine +feminine +1641 feminine +1643 neuter +1645 feminine +1648 masculine +masculine +1651 masculine +masculine +masculine +1656 neuter +neuter +1659 masculine +masculine +1662 masculine +masculine +masculine +masculine +1667 masculine +neuter +neuter +masculine +1672 masculine +masculine +masculine +masculine +masculine +neuter +neuter +1680 masculine +1682 feminine +feminine +masculine +masculine +masculine +masculine +masculine +1690 masculine +1692 masculine +masculine +masculine +1696 masculine +1698 feminine +feminine +masculine +masculine +masculine +1704 masculine +feminine +feminine +1708 masculine +1710 masculine +masculine +masculine +1714 masculine +1716 masculine +masculine +masculine +feminine +feminine +1722 masculine +masculine +masculine +1726 masculine +masculine +masculine +1730 masculine +masculine +masculine +1734 masculine +masculine +masculine +1738 feminine +1740 masculine +1742 feminine +feminine +masculine +masculine +masculine +1755 neuter +neuter +1759 masculine +1766 masculine +masculine +1769 masculine +1771 masculine +masculine +1776 masculine +masculine +masculine +1783 neuter +neuter +feminine +feminine +1789 neuter +neuter +1793 neuter +1796 neuter +1801 neuter +1805 masculine +masculine +1809 neuter +neuter +masculine +masculine +1815 feminine +1818 neuter +feminine +1822 masculine +1825 masculine +1827 masculine +masculine +1831 feminine +feminine +1835 masculine +masculine +1838 feminine +feminine +1842 neuter +neuter +1846 masculine +masculine +1851 neuter +neuter +neuter +1856 masculine +masculine +1859 masculine +1861 masculine +masculine +1868 masculine +masculine +1871 masculine +masculine +1885 masculine +masculine +1888 feminine +feminine +neuter +neuter +1893 feminine +feminine +1899 masculine +masculine +1903 neuter +1907 masculine +1909 feminine +feminine +feminine +feminine +feminine +feminine +1918 masculine +masculine +masculine +1923 feminine +feminine +masculine +masculine +1929 masculine +1933 masculine +masculine +1937 feminine +feminine +masculine +masculine +1949 feminine +feminine +neuter +masculine +masculine +1955 masculine +1960 feminine +feminine +masculine +masculine +1967 masculine +masculine +1973 masculine +1975 masculine +1977 feminine +feminine +1984 masculine +masculine +masculine +masculine +masculine +masculine +masculine +1992 feminine +feminine +1996 masculine +1998 masculine +masculine +masculine +masculine +masculine +2004 neuter +neuter +2008 masculine +2010 masculine +masculine +2014 feminine +feminine +neuter +neuter +2021 neuter +neuter +2025 neuter +neuter +2030 masculine +masculine +2034 neuter +2039 neuter +neuter +2043 neuter +neuter +2047 neuter +2049 masculine +masculine +2054 masculine +2056 neuter +neuter +2060 masculine +masculine +masculine +2064 neuter +2066 neuter +2069 masculine +2071 feminine +feminine +2077 masculine +masculine +masculine +masculine +2082 masculine +masculine +masculine +masculine +2088 feminine +2100 masculine +masculine +masculine +2113 masculine +masculine +masculine +feminine +2118 neuter +2120 feminine +2123 feminine +2125 feminine +feminine +masculine +2130 masculine +masculine +2133 masculine +masculine +2138 masculine +2148 neuter +neuter +neuter +2154 neuter +neuter +neuter +2160 feminine +2163 feminine +feminine +2166 feminine +2170 feminine +2180 neuter +neuter +neuter +2186 neuter +neuter +neuter +2191 feminine +2196 masculine +2198 feminine +feminine +masculine +2202 feminine +neuter +2209 masculine +masculine +masculine +feminine +feminine +masculine +2216 masculine +feminine +2219 feminine +2223 masculine +feminine +2231 masculine +masculine +2237 masculine +masculine +masculine +masculine +2251 masculine +masculine +2255 masculine +masculine +masculine +2260 feminine +feminine +2264 neuter +masculine +masculine +masculine +2270 neuter +2273 feminine +masculine +masculine +masculine +2279 feminine +feminine +2286 feminine +feminine +2289 feminine +2291 feminine +2294 masculine +masculine +2302 neuter +neuter +masculine +2306 masculine +masculine +2312 masculine +2314 masculine +2316 masculine +2318 masculine +2325 masculine +masculine +2328 masculine +2332 feminine +feminine +feminine +2337 masculine +2339 feminine +feminine +2342 masculine +masculine +2347 masculine +masculine +2352 masculine +2354 neuter +neuter +2357 masculine +2360 neuter +neuter +2364 masculine +2366 masculine +masculine +2371 masculine +masculine +2382 masculine +2387 masculine +masculine +2395 masculine +masculine +2401 masculine +masculine +2406 masculine +masculine +masculine +2410 masculine +2412 masculine +2414 masculine +masculine +masculine +2419 masculine +2421 masculine +2425 masculine +2427 masculine +2431 masculine +masculine +2434 masculine +masculine +2439 masculine +masculine +neuter +neuter +2447 masculine +masculine +2450 neuter +neuter +neuter +2456 masculine +masculine +neuter +neuter +2464 masculine +2466 masculine +masculine +2469 masculine +masculine +masculine +2475 feminine +feminine +2481 masculine +masculine +2484 neuter +2486 masculine +2490 masculine +2494 masculine +masculine +2497 masculine +2499 masculine +masculine +2504 feminine +2510 masculine +masculine +2514 feminine +feminine +2518 feminine +feminine +2523 masculine +masculine +2529 masculine +masculine +masculine +2534 masculine +feminine +2538 feminine +feminine +2541 neuter +2543 feminine +feminine +2549 feminine +feminine +2552 neuter +neuter +2555 masculine +masculine +2558 masculine +masculine +2561 neuter +neuter +2571 masculine +masculine +2576 feminine +feminine +2580 feminine +feminine +feminine +feminine +masculine +2588 masculine +masculine +2594 masculine +masculine +masculine +2603 neuter +neuter +2607 masculine +feminine +feminine +2612 masculine +masculine +2615 masculine +2617 neuter +neuter +2620 masculine +masculine +2623 masculine +masculine +2626 neuter +neuter +2631 masculine +2635 masculine +masculine +2641 feminine +feminine +masculine +2648 masculine +2651 masculine +masculine +2654 neuter +feminine +2658 neuter +2661 masculine +2666 masculine +2668 masculine +2670 masculine +masculine +2673 neuter +neuter +2677 feminine +feminine +2681 neuter +neuter +2686 masculine +2689 feminine +masculine +masculine +2693 masculine +masculine +2701 neuter +neuter +2708 masculine +masculine +2716 masculine +2721 masculine +masculine +2726 masculine +masculine +neuter +neuter +masculine +2734 masculine +masculine +2737 masculine +masculine +2743 masculine +masculine +2746 masculine +masculine +2750 neuter +neuter +2759 masculine +masculine +masculine +2764 neuter +neuter +masculine +2769 masculine +masculine +masculine +2776 masculine +masculine +masculine +2781 masculine +2784 feminine +feminine +2787 neuter +neuter +2794 masculine +masculine +masculine +2798 masculine +masculine +2801 masculine +2803 neuter +neuter +2806 masculine +masculine +2809 masculine +masculine +2812 neuter +neuter +2819 masculine +2821 feminine +feminine +2824 masculine +2826 feminine +2830 masculine +2837 masculine +2839 masculine +2842 masculine +2844 feminine +2848 masculine +2856 masculine +masculine +2862 feminine +feminine +2865 masculine +masculine +neuter +neuter +2870 masculine +masculine +2875 masculine +masculine +2878 masculine +neuter +neuter +neuter +2883 neuter +2887 masculine +masculine +2890 masculine +2892 neuter +neuter +neuter +2896 neuter +2900 neuter +neuter +neuter +2905 neuter +2907 neuter +neuter +neuter +masculine +2912 masculine +masculine +2917 masculine +masculine +2921 masculine +masculine +2925 masculine +2928 masculine +masculine +2933 masculine +2936 masculine +2938 neuter +2943 feminine +feminine +2946 neuter +2949 neuter +2952 neuter +neuter +2955 neuter +2958 feminine +feminine +neuter +2962 feminine +feminine +2965 neuter +neuter +neuter +neuter +2971 neuter +neuter +masculine +masculine +2983 feminine +2985 masculine +masculine +2988 masculine +masculine +2991 neuter +2996 neuter +2998 masculine +3001 masculine +3005 feminine +feminine +masculine +masculine +masculine +3012 neuter +neuter +3016 neuter +neuter +masculine +masculine +3031 masculine +3033 feminine +feminine +feminine +masculine +3039 neuter +neuter +3043 masculine +masculine +masculine +masculine +3048 masculine +3052 masculine +masculine +masculine +masculine +3059 neuter +3062 masculine +3066 masculine +neuter +3070 neuter +3073 neuter +3076 neuter +neuter +neuter +neuter +3083 masculine +masculine +3086 masculine +masculine +3090 neuter +neuter +3094 neuter +feminine +feminine +3098 feminine +feminine +masculine +3102 neuter +neuter +3110 feminine +3113 feminine +3116 feminine +neuter +feminine +feminine +feminine +feminine +feminine +3130 neuter +neuter +3136 neuter +neuter +3142 neuter +3144 neuter +neuter +neuter +3148 masculine +masculine +masculine +masculine +3154 feminine +3156 masculine +masculine +masculine +feminine +3165 masculine +masculine +3170 neuter +neuter +3173 masculine +masculine +3178 feminine +feminine +3181 masculine +masculine +3184 masculine +3186 neuter +3188 masculine +masculine +3191 feminine +feminine +3197 neuter +neuter +3200 masculine +masculine +masculine +masculine +3207 neuter +neuter +masculine +masculine +3213 masculine +masculine +3217 masculine +masculine +3222 masculine +3224 masculine +masculine +masculine +3228 masculine +3243 masculine +masculine +masculine +3248 masculine +masculine +3252 masculine +masculine +3259 masculine +masculine +masculine +3263 masculine +masculine +masculine +masculine +3268 masculine +3270 masculine +3273 masculine +3276 masculine +3278 masculine +3282 masculine +masculine +3285 neuter +neuter +3288 neuter +neuter +3291 neuter +3293 masculine +masculine +3296 masculine +3298 masculine +masculine +3301 neuter +masculine +masculine +masculine +3306 neuter +3308 neuter +3313 masculine +masculine +3319 masculine +3321 masculine +3323 masculine +masculine +3326 masculine +masculine +3330 feminine +feminine +feminine +3334 feminine +feminine +feminine +3338 feminine +feminine +feminine +feminine +feminine +3344 feminine +feminine +3347 masculine +3349 masculine +masculine +3352 feminine +3354 feminine +feminine +feminine +3358 feminine +feminine +feminine +feminine +feminine +3364 feminine +feminine +3367 masculine +3369 masculine +masculine +feminine +3374 masculine +masculine +masculine +3381 neuter +neuter +3386 masculine +masculine +3389 masculine +masculine +masculine +3393 masculine +3397 feminine +feminine +3401 masculine +neuter +3404 neuter +neuter +neuter +masculine +masculine +3411 neuter +neuter +neuter +masculine +masculine +3419 neuter +neuter +masculine +masculine +3425 neuter +neuter +masculine +masculine +3430 neuter +neuter +3433 neuter +masculine +masculine +3439 neuter +3443 masculine +masculine +masculine +3447 masculine +3449 masculine +masculine +masculine +3453 masculine +masculine +3457 feminine +feminine +masculine +masculine +3462 masculine +masculine +neuter +neuter +masculine +masculine +3469 masculine +3471 masculine +masculine +masculine +3477 feminine +feminine +feminine +masculine +masculine +3483 neuter +neuter +neuter +3488 neuter +neuter +neuter +neuter +3494 neuter +neuter +neuter +feminine +feminine +3503 masculine +3511 masculine +masculine +feminine +feminine +3516 masculine +masculine +3520 masculine +masculine +masculine +3525 masculine +3527 masculine +masculine +masculine +3531 masculine +feminine +feminine +3535 feminine +feminine +3539 feminine +feminine +3543 masculine +masculine +3547 masculine +masculine +3551 feminine +feminine +feminine +3560 feminine +feminine +3563 masculine +masculine +masculine +3567 masculine +masculine +masculine +3572 masculine +masculine +3575 masculine +masculine +masculine +3579 masculine +feminine +feminine +3583 feminine +feminine +3587 feminine +feminine +3591 masculine +masculine +3595 masculine +masculine +3599 feminine +feminine +feminine +3606 feminine +feminine +feminine +feminine +3614 masculine +masculine +masculine +masculine +masculine +3620 masculine +masculine +3623 feminine +feminine +masculine +3628 masculine +masculine +3631 feminine +masculine +3636 masculine +masculine +masculine +3640 masculine +masculine +3643 neuter +neuter +3646 masculine +masculine +masculine +3651 masculine +masculine +3654 masculine +masculine +masculine +3663 masculine +feminine +feminine +3667 masculine +masculine +3674 masculine +feminine +feminine +3679 masculine +masculine +masculine +3683 masculine +3687 masculine +3689 masculine +masculine +3693 neuter +neuter +neuter +3697 masculine +3699 neuter +masculine +3702 masculine +masculine +3705 feminine +3707 masculine +masculine +masculine +masculine +3712 masculine +masculine +masculine +masculine +3719 feminine +feminine +masculine +3723 masculine +3725 masculine +3727 masculine +3729 masculine +3731 masculine +masculine +masculine +3735 masculine +3738 masculine +3742 feminine +feminine +3746 neuter +3748 masculine +3751 masculine +masculine +3758 masculine +3760 feminine +masculine +3763 masculine +masculine +3767 masculine +3772 masculine +3777 masculine +masculine +3781 neuter +3785 masculine +masculine +masculine +3791 masculine +masculine +3797 masculine +feminine +feminine +3801 masculine +masculine +3808 masculine +3810 feminine +3812 feminine +3817 masculine +3819 masculine +3821 masculine +3823 feminine +feminine +masculine +masculine +3828 masculine +masculine +feminine +feminine +3834 neuter +neuter +neuter +neuter +3840 masculine +masculine +3843 masculine +masculine +masculine +masculine +3849 masculine +masculine +masculine +masculine +3860 masculine +masculine +3863 feminine +feminine +feminine +3867 masculine +masculine +masculine +3871 feminine +feminine +masculine +3875 feminine +feminine +masculine +feminine +3880 feminine +3883 feminine +feminine +feminine +3888 feminine +masculine +masculine +3895 masculine +3897 feminine +feminine +3900 masculine +masculine +masculine +3905 neuter +neuter +masculine +3909 masculine +masculine +3912 masculine +3916 neuter +neuter +3919 masculine +masculine +masculine +masculine +masculine +feminine +feminine +3929 feminine +feminine +3933 masculine +masculine +masculine +masculine +3938 masculine +3942 neuter +3945 masculine +masculine +masculine +3949 masculine +masculine +3958 masculine +masculine +masculine +feminine +feminine +masculine +3966 neuter +neuter +masculine +masculine +feminine +3972 masculine +masculine +masculine +masculine +3979 feminine +feminine +3983 masculine +masculine +masculine +3987 masculine +masculine +3991 neuter +3995 masculine +masculine +3999 masculine +masculine +4002 masculine +4007 masculine +masculine +4010 masculine +masculine +masculine +4014 masculine +masculine +4017 neuter +neuter +4020 masculine +masculine +masculine +masculine +4026 masculine +masculine +4030 feminine +feminine +4033 neuter +neuter +4037 neuter +neuter +4040 masculine +4043 masculine +4045 masculine +masculine +masculine +4052 masculine +neuter +masculine +4056 masculine +4058 masculine +4060 masculine +masculine +4063 feminine +feminine +4067 feminine +feminine +4070 masculine +masculine +4073 masculine +masculine +4076 masculine +4079 masculine +masculine +4082 feminine +feminine +masculine +4087 masculine +masculine +4090 neuter +4093 feminine +feminine +masculine +masculine +4098 masculine +4100 masculine +4102 neuter +neuter +masculine +masculine +4110 masculine +4113 feminine +feminine +feminine +4119 masculine +neuter +4124 masculine +masculine +masculine +4130 masculine +4135 feminine +4137 masculine +feminine +masculine +masculine +feminine +4143 masculine +masculine +4146 masculine +masculine +4154 feminine +feminine +masculine +masculine +4160 masculine +4163 masculine +masculine +4167 masculine +masculine +4172 feminine +feminine +feminine +4176 masculine +masculine +4179 feminine +feminine +4184 neuter +neuter +4187 masculine +masculine +4191 masculine +4193 feminine +feminine +4196 neuter +4198 neuter +masculine +masculine +4203 feminine +feminine +feminine +4208 feminine +masculine +masculine +4212 masculine +masculine +4218 neuter +neuter +masculine +4222 masculine +4224 neuter +4229 feminine +feminine +feminine +4235 masculine +masculine +4238 feminine +masculine +4241 masculine +masculine +masculine +feminine +feminine +masculine +4248 masculine +masculine +4251 neuter +4254 feminine +feminine +4258 masculine +masculine +masculine +4263 masculine +masculine +4267 masculine +masculine +masculine +feminine +feminine +masculine +4275 neuter +4277 neuter +4279 feminine +feminine +4283 neuter +4285 neuter +4289 feminine +feminine +4300 feminine +4302 masculine +masculine +masculine +masculine +4307 feminine +feminine +4310 feminine +4313 masculine +masculine +4318 feminine +feminine +4323 masculine +masculine +4327 masculine +4330 masculine +masculine +masculine +4334 masculine +masculine +masculine +4340 masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +4349 masculine +4351 masculine +masculine +4354 masculine +masculine +4357 neuter +neuter +masculine +masculine +4363 masculine +4367 masculine +4369 masculine +4372 masculine +masculine +4375 feminine +feminine +4379 masculine +masculine +4382 masculine +masculine +4385 masculine +masculine +4388 masculine +masculine +masculine +4392 masculine +masculine +masculine +4396 masculine +masculine +masculine +4400 neuter +4402 masculine +masculine +4405 masculine +4407 masculine +masculine +4411 masculine +masculine +4415 feminine +masculine +4418 masculine +masculine +4421 masculine +4423 masculine +4425 masculine +4427 neuter +4429 neuter +4433 feminine +4438 masculine +4440 masculine +4443 masculine +masculine +masculine +masculine +masculine +4449 neuter +4452 masculine +masculine +4456 masculine +masculine +4463 masculine +masculine +masculine +4468 masculine +masculine +masculine +masculine +4474 neuter +4476 masculine +4478 masculine +masculine +4482 feminine +4486 masculine +masculine +masculine +4493 masculine +4495 neuter +neuter +neuter +4499 neuter +neuter +4503 neuter +neuter +neuter +4507 neuter +neuter +4510 neuter +neuter +4515 masculine +masculine +4518 masculine +masculine +4524 masculine +masculine +4527 masculine +masculine +4531 masculine +masculine +4536 masculine +masculine +4539 masculine +masculine +4542 masculine +4544 neuter +masculine +masculine +masculine +4549 masculine +masculine +masculine +4553 masculine +masculine +4556 feminine +feminine +4562 masculine +4564 feminine +feminine +4568 feminine +4572 masculine +masculine +masculine +4576 masculine +4578 masculine +masculine +masculine +4583 feminine +feminine +4586 neuter +feminine +4590 neuter +neuter +neuter +neuter +masculine +4598 feminine +4600 neuter +4602 neuter +neuter +masculine +4607 masculine +masculine +masculine +4611 masculine +feminine +4615 feminine +feminine +feminine +4623 feminine +feminine +4626 feminine +feminine +feminine +4630 masculine +masculine +masculine +4634 feminine +feminine +masculine +masculine +4639 masculine +masculine +masculine +4643 masculine +masculine +masculine +4651 neuter +neuter +4657 masculine +4661 masculine +masculine +masculine +4665 feminine +feminine +feminine +4670 neuter +neuter +4674 feminine +feminine +feminine +4678 feminine +feminine +feminine +feminine +4683 masculine +4685 masculine +masculine +4689 masculine +masculine +4692 masculine +4695 masculine +masculine +4698 masculine +4700 feminine +feminine +4703 masculine +masculine +masculine +4708 masculine +masculine +masculine +4714 neuter +4717 masculine +4719 masculine +4722 masculine +masculine +masculine +masculine +4727 feminine +feminine +4734 masculine +masculine +masculine +4739 masculine +masculine +masculine +masculine +4744 masculine +4747 masculine +masculine +4750 masculine +4752 feminine +feminine +feminine +feminine +4757 masculine +masculine +4761 masculine +masculine +masculine +4765 neuter +neuter +neuter +4769 masculine +masculine +4773 masculine +masculine +masculine +4780 masculine +masculine +4783 masculine +masculine +4787 masculine +masculine +neuter +neuter +4792 neuter +neuter +4796 masculine +masculine +feminine +feminine +feminine +4802 feminine +feminine +masculine +4806 feminine +feminine +masculine +4810 masculine +neuter +neuter +feminine +feminine +4816 masculine +feminine +feminine +4820 feminine +feminine +4823 masculine +masculine +masculine +4828 masculine +4831 masculine +4833 masculine +4835 neuter +4837 neuter +masculine +4841 masculine +masculine +masculine +4845 masculine +masculine +masculine +4849 masculine +masculine +masculine +4854 masculine +masculine +masculine +masculine +4860 masculine +4862 masculine +masculine +masculine +4866 masculine +masculine +4869 masculine +masculine +4872 masculine +feminine +neuter +neuter +4878 neuter +4881 feminine +feminine +4884 feminine +feminine +4887 masculine +4889 masculine +neuter +neuter +4893 neuter +masculine +masculine +masculine +masculine +masculine +4900 masculine +masculine +masculine +masculine +4905 masculine +masculine +masculine +masculine +4910 masculine +masculine +masculine +masculine +masculine +4916 masculine +masculine +4919 masculine +masculine +masculine +masculine +masculine +masculine +masculine +4927 masculine +masculine +masculine +masculine +4932 masculine +masculine +masculine +masculine +4937 masculine +masculine +masculine +masculine +4943 masculine +masculine +masculine +masculine +masculine +4949 feminine +neuter +4955 feminine +masculine +4963 neuter +neuter +neuter +neuter +masculine +masculine +4970 masculine +4972 masculine +4975 feminine +feminine +masculine +masculine +masculine +4981 masculine +4983 masculine +4985 neuter +4993 masculine +4995 masculine +4997 masculine +4999 feminine +feminine +5003 feminine +5005 feminine +5008 masculine +5010 neuter +5012 feminine +5014 masculine +masculine +masculine +feminine +feminine +masculine +5023 feminine +feminine +5026 feminine +5029 masculine +5031 feminine +masculine +5040 masculine +5042 feminine +feminine +5045 feminine +5050 feminine +feminine +feminine +5054 feminine +feminine +5058 feminine +5063 feminine +feminine +feminine +5072 masculine +5078 masculine +masculine +5081 masculine +5083 feminine +feminine +5086 feminine +feminine +feminine +5090 masculine +masculine +masculine +masculine +5098 neuter +5100 feminine +neuter +5103 neuter +5105 feminine +feminine +5108 feminine +feminine +feminine +5116 neuter +5118 neuter +masculine +5122 masculine +5124 masculine +masculine +5127 masculine +5129 feminine +feminine +5134 masculine +masculine +5140 neuter +5143 feminine +feminine +masculine +5151 masculine +5153 masculine +5158 neuter +masculine +5161 neuter +neuter +5171 neuter +5177 feminine +feminine +feminine +neuter +5186 masculine +masculine +5189 neuter +neuter +masculine +masculine +5194 neuter +neuter +5200 masculine +masculine +5203 masculine +5205 masculine +neuter +5209 neuter +5211 masculine +5214 masculine +5217 masculine +5219 masculine +5221 neuter +neuter +5225 masculine +masculine +5228 neuter +masculine +5236 feminine +feminine +feminine +5241 feminine +feminine +5250 feminine +feminine +masculine +masculine +5256 masculine +masculine +masculine +masculine +5262 masculine +5264 masculine +masculine +5267 masculine +5269 masculine +masculine +masculine +neuter +masculine +masculine +5278 masculine +masculine +masculine +5282 masculine +masculine +5285 masculine +masculine +masculine +5289 masculine +masculine +masculine +5293 neuter +5295 masculine +masculine +masculine +5301 masculine +5303 neuter +5305 neuter +neuter +5310 neuter +neuter +5314 neuter +5318 feminine +feminine +5322 neuter +neuter +5325 neuter +5327 neuter +neuter +5332 neuter +neuter +5338 masculine +masculine +neuter +neuter +5344 masculine +feminine +feminine +5351 masculine +masculine +5354 feminine +5356 neuter +5359 feminine +5362 neuter +neuter +5366 neuter +5368 neuter +5372 feminine +feminine +5375 masculine +masculine +5381 feminine +feminine +feminine +feminine +feminine +feminine +5391 neuter +neuter +5396 masculine +masculine +5402 masculine +masculine +5407 masculine +5409 masculine +masculine +5412 masculine +5414 masculine +masculine +5418 masculine +5422 masculine +masculine +5426 masculine +5428 masculine +masculine +5431 masculine +5433 masculine +masculine +5440 feminine +5442 feminine +feminine +5447 feminine +5449 feminine +5453 masculine +5455 masculine +masculine +masculine +5459 feminine +5461 feminine +feminine +feminine +5465 feminine +5467 feminine +feminine +feminine +5471 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +5481 feminine +5487 masculine +5489 masculine +masculine +masculine +5493 feminine +5499 masculine +5501 masculine +5504 masculine +masculine +masculine +5514 masculine +masculine +masculine +feminine +feminine +masculine +5521 feminine +5523 masculine +masculine +feminine +feminine +masculine +5531 feminine +masculine +masculine +5538 masculine +5540 masculine +5542 masculine +masculine +5545 masculine +masculine +masculine +5549 neuter +masculine +masculine +masculine +5555 masculine +masculine +masculine +5559 neuter +masculine +masculine +masculine +5566 masculine +5568 masculine +masculine +masculine +masculine +neuter +neuter +5576 neuter +masculine +5584 masculine +masculine +masculine +5591 masculine +masculine +masculine +masculine +5596 masculine +masculine +5600 neuter +5605 feminine +feminine +masculine +5609 masculine +masculine +masculine +5613 neuter +neuter +neuter +neuter +masculine +masculine +masculine +5621 masculine +masculine +masculine +5625 masculine +5628 masculine +masculine +5631 masculine +5634 masculine +masculine +masculine +5638 masculine +masculine +5641 masculine +neuter +5646 masculine +5649 masculine +5651 masculine +5654 masculine +5657 masculine +5660 masculine +5663 masculine +5666 masculine +5672 masculine +masculine +5675 masculine +masculine +5678 masculine +masculine +5681 masculine +neuter +5686 feminine +feminine +masculine +5690 masculine +masculine +5693 neuter +5696 masculine +5698 neuter +masculine +5701 masculine +neuter +neuter +masculine +5706 masculine +masculine +masculine +masculine +5711 neuter +5713 masculine +5719 neuter +masculine +masculine +5724 masculine +5729 masculine +masculine +5733 neuter +5735 masculine +5737 feminine +feminine +5748 masculine +feminine +masculine +masculine +masculine +masculine +5755 masculine +masculine +5758 feminine +feminine +masculine +masculine +masculine +masculine +5767 feminine +feminine +masculine +masculine +masculine +5774 feminine +feminine +masculine +masculine +5780 masculine +5782 feminine +5784 masculine +masculine +masculine +5788 masculine +masculine +5791 masculine +5797 masculine +5799 masculine +masculine +masculine +5803 masculine +masculine +neuter +5808 neuter +5810 feminine +feminine +feminine +feminine +5815 neuter +neuter +5818 feminine +feminine +neuter +neuter +neuter +neuter +neuter +5836 masculine +5838 masculine +5840 masculine +5843 neuter +5846 masculine +masculine +masculine +masculine +masculine +5852 masculine +5856 masculine +masculine +5859 masculine +masculine +masculine +5863 masculine +5866 feminine +feminine +5869 neuter +neuter +feminine +5875 feminine +feminine +5878 feminine +5880 feminine +feminine +feminine +masculine +5889 feminine +5892 feminine +5896 feminine +5898 feminine +5900 feminine +feminine +feminine +feminine +5909 masculine +5911 feminine +5916 feminine +5918 feminine +neuter +5922 feminine +feminine +5927 feminine +5931 masculine +5934 masculine +5939 neuter +5941 feminine +feminine +feminine +feminine +5950 feminine +5956 feminine +neuter +neuter +5961 feminine +feminine +5966 masculine +masculine +masculine +masculine +masculine +masculine +5975 masculine +masculine +masculine +masculine +5980 feminine +feminine +5984 neuter +5986 masculine +5988 masculine +5991 neuter +masculine +5994 masculine +masculine +5998 feminine +6002 neuter +6006 masculine +masculine +6010 masculine +6012 masculine +masculine +6016 masculine +masculine +6019 masculine +masculine +masculine +6025 masculine +masculine +6029 masculine +6032 masculine +masculine +6037 masculine +masculine +masculine +6041 masculine +6046 masculine +masculine +6057 masculine +6059 masculine +feminine +feminine +6064 feminine +feminine +feminine +6069 masculine +masculine +6072 masculine +6074 neuter +neuter +6077 neuter +6080 masculine +masculine +masculine +6084 masculine +masculine +neuter +neuter +6089 masculine +masculine +6092 masculine +masculine +masculine +6099 masculine +6103 masculine +masculine +masculine +6107 masculine +6109 masculine +masculine +6113 neuter +6118 neuter +6120 masculine +6122 masculine +6125 neuter +6127 masculine +6131 masculine +6133 masculine +6137 masculine +masculine +masculine +masculine +6142 masculine +masculine +feminine +feminine +6147 neuter +6150 neuter +6152 masculine +6154 masculine +6156 masculine +6159 masculine +masculine +masculine +6166 masculine +masculine +6169 neuter +neuter +masculine +masculine +6174 neuter +neuter +neuter +neuter +6180 masculine +6186 neuter +neuter +neuter +6194 neuter +6196 neuter +6200 feminine +6204 masculine +masculine +6208 masculine +neuter +neuter +masculine +masculine +masculine +masculine +6216 masculine +6220 feminine +feminine +masculine +6225 masculine +feminine +masculine +feminine +6231 masculine +masculine +6235 neuter +neuter +6240 masculine +6242 masculine +6244 masculine +masculine +6249 masculine +masculine +6252 neuter +neuter +6257 neuter +neuter +neuter +6261 masculine +6264 neuter +6268 neuter +6270 masculine +neuter +6274 neuter +neuter +6280 masculine +masculine +6284 feminine +feminine +6290 feminine +6292 feminine +feminine +6295 masculine +masculine +masculine +neuter +6301 masculine +6303 masculine +6306 masculine +masculine +masculine +6313 masculine +masculine +6317 masculine +masculine +6321 masculine +6324 masculine +masculine +6329 neuter +neuter +6332 masculine +masculine +masculine +masculine +6337 masculine +masculine +6340 masculine +6342 masculine +masculine +6345 masculine +6347 feminine +feminine +6351 neuter +neuter +6355 masculine +6357 feminine +neuter +neuter +6367 masculine +6369 feminine +feminine +feminine +feminine +masculine +masculine +masculine +6379 neuter +neuter +6387 neuter +feminine +feminine +6391 neuter +neuter +masculine +neuter +6398 masculine +masculine +masculine +6402 masculine +6405 masculine +6407 masculine +masculine +6414 masculine +masculine +masculine +6420 masculine +6422 masculine +masculine +masculine +6426 masculine +masculine +masculine +6430 masculine +6433 neuter +neuter +6438 masculine +masculine +masculine +neuter +neuter +6444 masculine +feminine +feminine +masculine +6449 masculine +feminine +feminine +feminine +6454 feminine +6457 feminine +feminine +6460 feminine +feminine +6463 feminine +6468 masculine +masculine +masculine +masculine +6474 masculine +6479 feminine +feminine +masculine +6486 masculine +6488 neuter +neuter +masculine +masculine +6494 masculine +6497 neuter +masculine +masculine +6505 neuter +masculine +6509 neuter +neuter +6515 feminine +feminine +masculine +masculine +6522 masculine +6525 feminine +feminine +masculine +masculine +6530 neuter +neuter +masculine +6536 neuter +6538 masculine +masculine +6542 feminine +feminine +masculine +6546 masculine +6548 masculine +6555 masculine +6557 masculine +6562 neuter +6565 feminine +feminine +6568 feminine +6570 masculine +masculine +6573 feminine +neuter +neuter +feminine +6581 masculine +6583 masculine +6585 masculine +masculine +masculine +masculine +6590 masculine +6593 masculine +6596 neuter +neuter +neuter +neuter +6602 masculine +6605 masculine +masculine +masculine +6610 masculine +masculine +6614 neuter +neuter +neuter +6618 masculine +masculine +neuter +masculine +6624 neuter +neuter +neuter +6628 masculine +masculine +neuter +masculine +6634 masculine +masculine +neuter +neuter +6639 neuter +feminine +6643 neuter +6645 masculine +masculine +6649 neuter +neuter +feminine +feminine +neuter +neuter +6656 masculine +masculine +masculine +6660 masculine +masculine +masculine +6664 neuter +6666 masculine +masculine +masculine +6670 masculine +masculine +masculine +6674 neuter +6679 neuter +neuter +neuter +neuter +6684 masculine +masculine +6688 neuter +masculine +6691 feminine +feminine +6695 masculine +masculine +6701 masculine +masculine +6707 masculine +masculine +masculine +masculine +6712 masculine +masculine +masculine +6718 neuter +6721 masculine +masculine +6724 masculine +feminine +feminine +6728 feminine +neuter +6732 neuter +6735 feminine +6738 neuter +neuter +masculine +masculine +masculine +6746 masculine +6748 feminine +feminine +neuter +neuter +feminine +feminine +6755 feminine +feminine +6759 masculine +masculine +masculine +masculine +6764 feminine +feminine +feminine +feminine +feminine +feminine +6771 feminine +feminine +masculine +masculine +6777 feminine +feminine +6780 feminine +feminine +feminine +6785 feminine +6789 neuter +neuter +masculine +6794 neuter +masculine +6797 feminine +masculine +6801 feminine +feminine +6804 feminine +feminine +feminine +6809 feminine +6813 neuter +neuter +feminine +feminine +6818 feminine +feminine +masculine +6823 neuter +masculine +6828 neuter +neuter +neuter +6833 masculine +masculine +6837 masculine +masculine +neuter +feminine +6847 masculine +masculine +6854 neuter +6856 masculine +6858 masculine +6860 masculine +6866 neuter +6868 neuter +neuter +neuter +neuter +6873 neuter +6878 neuter +neuter +masculine +masculine +masculine +neuter +neuter +neuter +6889 feminine +feminine +feminine +feminine +feminine +6895 masculine +masculine +masculine +masculine +6900 feminine +feminine +6903 masculine +masculine +masculine +6908 masculine +masculine +6913 masculine +masculine +6916 feminine +feminine +6920 masculine +masculine +6925 masculine +6929 masculine +masculine +6932 masculine +masculine +masculine +masculine +6937 feminine +feminine +6941 masculine +6943 masculine +masculine +6947 masculine +feminine +feminine +masculine +6952 masculine +masculine +masculine +6957 feminine +feminine +6961 masculine +masculine +6966 masculine +6968 neuter +neuter +masculine +masculine +6973 masculine +6975 masculine +masculine +6978 masculine +6980 feminine +6982 feminine +6985 feminine +feminine +feminine +masculine +masculine +masculine +feminine +feminine +6995 feminine +feminine +7000 masculine +masculine +masculine +7004 masculine +7006 neuter +masculine +7010 masculine +masculine +masculine +7014 masculine +masculine +7019 masculine +neuter +7022 feminine +masculine +7026 masculine +masculine +neuter +7032 neuter +7034 masculine +7036 neuter +7039 feminine +feminine +7042 neuter +neuter +neuter +7046 neuter +7048 neuter +7051 neuter +neuter +7056 feminine +feminine +7062 neuter +7065 neuter +feminine +7068 masculine +masculine +7073 neuter +7076 feminine +7079 neuter +7082 feminine +feminine +7086 feminine +feminine +7090 neuter +7092 neuter +7095 feminine +feminine +feminine +feminine +7101 masculine +7103 neuter +7106 neuter +7109 neuter +7111 masculine +masculine +neuter +7116 masculine +masculine +masculine +7120 masculine +7122 neuter +7124 feminine +7126 masculine +7128 masculine +masculine +7135 neuter +neuter +feminine +feminine +masculine +masculine +7142 masculine +7146 masculine +7149 masculine +7153 masculine +7157 neuter +7161 masculine +7163 neuter +7165 feminine +masculine +7169 masculine +7173 masculine +7180 masculine +feminine +feminine +masculine +feminine +feminine +feminine +7193 masculine +7201 feminine +feminine +masculine +masculine +masculine +7207 neuter +neuter +7212 masculine +masculine +masculine +7219 masculine +masculine +7222 neuter +neuter +7226 feminine +feminine +7233 masculine +7235 masculine +7237 masculine +masculine +7242 neuter +neuter +7252 masculine +masculine +7255 masculine +7258 neuter +7265 neuter +7273 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +7285 masculine +7287 masculine +masculine +7291 neuter +neuter +7294 feminine +feminine +masculine +masculine +7299 masculine +7301 feminine +feminine +masculine +7305 masculine +7307 neuter +neuter +masculine +masculine +7312 masculine +masculine +masculine +masculine +7317 masculine +7319 feminine +masculine +masculine +7325 feminine +7327 masculine +7329 masculine +7332 feminine +feminine +7335 masculine +7337 masculine +masculine +masculine +7342 masculine +7344 feminine +feminine +masculine +masculine +7349 masculine +masculine +masculine +masculine +7354 feminine +feminine +masculine +masculine +7359 feminine +feminine +masculine +masculine +7364 masculine +masculine +7367 masculine +7370 masculine +7372 feminine +feminine +feminine +masculine +masculine +7378 masculine +masculine +masculine +masculine +7383 masculine +7385 masculine +7390 neuter +7393 neuter +7396 neuter +7398 feminine +feminine +7401 masculine +masculine +7404 feminine +feminine +masculine +masculine +masculine +masculine +neuter +neuter +7413 masculine +masculine +masculine +7418 neuter +7420 masculine +masculine +7423 masculine +masculine +masculine +7428 neuter +7430 neuter +masculine +masculine +7438 masculine +masculine +7441 masculine +7446 neuter +neuter +7449 masculine +masculine +masculine +masculine +masculine +7455 masculine +masculine +7458 neuter +neuter +7462 masculine +masculine +masculine +7468 neuter +7470 masculine +7472 masculine +masculine +masculine +neuter +7478 masculine +masculine +masculine +7484 masculine +7486 neuter +7488 masculine +7493 masculine +neuter +neuter +7498 neuter +masculine +masculine +7503 neuter +7505 masculine +masculine +7509 masculine +masculine +masculine +7513 masculine +masculine +7516 neuter +neuter +neuter +7521 neuter +7523 feminine +7525 neuter +7527 neuter +7529 masculine +masculine +7533 feminine +feminine +7536 feminine +feminine +7539 masculine +masculine +feminine +7543 feminine +feminine +masculine +masculine +masculine +neuter +masculine +masculine +masculine +7554 masculine +masculine +masculine +7558 neuter +neuter +7561 neuter +neuter +neuter +7567 neuter +neuter +neuter +7573 neuter +7576 neuter +neuter +masculine +masculine +7583 masculine +masculine +neuter +feminine +feminine +7589 masculine +feminine +7592 feminine +feminine +masculine +masculine +feminine +feminine +feminine +feminine +7602 neuter +neuter +neuter +7606 masculine +7608 neuter +neuter +neuter +7612 masculine +masculine +7615 feminine +masculine +masculine +7620 feminine +neuter +7623 masculine +7626 neuter +neuter +7629 masculine +masculine +masculine +7634 feminine +neuter +neuter +7639 neuter +7641 feminine +7643 masculine +masculine +masculine +7648 feminine +feminine +7652 masculine +masculine +masculine +masculine +masculine +7659 feminine +feminine +neuter +neuter +masculine +masculine +7666 masculine +masculine +7669 masculine +masculine +neuter +neuter +neuter +7675 masculine +masculine +masculine +masculine +7680 masculine +masculine +7683 masculine +masculine +7686 neuter +neuter +neuter +masculine +7691 masculine +masculine +feminine +feminine +7696 neuter +neuter +7699 masculine +masculine +masculine +masculine +7704 masculine +masculine +masculine +masculine +neuter +7710 masculine +masculine +7713 masculine +masculine +feminine +masculine +7719 masculine +masculine +masculine +7726 neuter +neuter +7729 neuter +7734 feminine +feminine +masculine +masculine +7739 masculine +masculine +masculine +masculine +masculine +masculine +masculine +7749 feminine +feminine +masculine +neuter +neuter +neuter +7756 masculine +masculine +feminine +feminine +7762 masculine +7764 feminine +feminine +neuter +neuter +7770 masculine +masculine +7773 masculine +masculine +masculine +masculine +7778 masculine +masculine +7782 feminine +feminine +masculine +masculine +masculine +7788 masculine +masculine +masculine +masculine +neuter +7794 feminine +7796 feminine +feminine +masculine +masculine +masculine +masculine +7803 masculine +masculine +masculine +masculine +masculine +7811 feminine +feminine +masculine +7817 neuter +7821 masculine +masculine +masculine +7825 feminine +7827 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +7836 masculine +masculine +masculine +masculine +masculine +7842 neuter +neuter +7847 masculine +7849 feminine +7851 feminine +feminine +masculine +masculine +feminine +feminine +7858 feminine +feminine +7862 neuter +neuter +feminine +feminine +7868 masculine +7870 masculine +masculine +7873 masculine +7875 neuter +neuter +7878 neuter +7880 neuter +neuter +7887 feminine +feminine +masculine +masculine +7892 masculine +masculine +7896 masculine +masculine +7899 neuter +masculine +masculine +7904 masculine +7906 feminine +feminine +neuter +neuter +7912 masculine +masculine +7915 masculine +masculine +masculine +masculine +7920 neuter +neuter +7923 masculine +7926 masculine +7928 masculine +7930 neuter +masculine +masculine +masculine +feminine +feminine +masculine +masculine +masculine +7940 masculine +masculine +masculine +7945 masculine +masculine +masculine +neuter +7950 neuter +7955 masculine +masculine +feminine +feminine +feminine +7963 masculine +7965 feminine +feminine +masculine +7969 masculine +7971 feminine +feminine +masculine +7976 masculine +7980 masculine +feminine +feminine +feminine +7985 feminine +feminine +7988 masculine +7990 masculine +masculine +masculine +masculine +7995 feminine +feminine +masculine +7999 feminine +8001 masculine +masculine +masculine +masculine +8006 masculine +8008 masculine +8010 masculine +8012 feminine +feminine +masculine +8016 feminine +8022 masculine +neuter +neuter +8028 masculine +8030 masculine +masculine +8033 masculine +8036 masculine +masculine +8041 feminine +feminine +8045 feminine +feminine +masculine +8052 feminine +feminine +8055 feminine +feminine +masculine +8059 masculine +masculine +masculine +8063 masculine +masculine +masculine +feminine +feminine +masculine +8071 masculine +masculine +masculine +masculine +8076 masculine +masculine +masculine +masculine +8082 masculine +masculine +8086 neuter +feminine +feminine +8091 masculine +8093 masculine +masculine +masculine +masculine +masculine +8101 feminine +8104 feminine +feminine +feminine +masculine +masculine +masculine +masculine +8113 masculine +masculine +masculine +8120 feminine +8122 masculine +masculine +8126 masculine +masculine +8130 masculine +masculine +8134 neuter +masculine +masculine +neuter +8139 feminine +feminine +feminine +feminine +8144 neuter +neuter +8148 masculine +masculine +8152 masculine +8154 feminine +8157 neuter +8160 feminine +feminine +8163 feminine +feminine +feminine +8171 masculine +feminine +feminine +masculine +masculine +masculine +8178 masculine +masculine +masculine +8182 masculine +masculine +8185 masculine +masculine +8190 masculine +8192 masculine +8194 feminine +feminine +8198 feminine +feminine +masculine +8202 masculine +8205 neuter +neuter +8209 feminine +feminine +feminine +8213 masculine +masculine +masculine +masculine +8218 neuter +neuter +8222 masculine +8224 masculine +8226 masculine +masculine +8229 masculine +masculine +masculine +8235 neuter +8237 masculine +masculine +8240 feminine +8242 masculine +masculine +masculine +8246 masculine +8249 feminine +feminine +8252 masculine +8254 masculine +masculine +8259 masculine +8262 masculine +masculine +masculine +8266 feminine +feminine +8269 masculine +masculine +masculine +masculine +masculine +8275 masculine +masculine +8278 feminine +feminine +8284 masculine +masculine +8287 masculine +8289 feminine +feminine +8292 masculine +neuter +8295 masculine +masculine +8298 masculine +8300 feminine +8304 masculine +8308 masculine +8310 masculine +8317 masculine +8320 masculine +8322 masculine +8327 masculine +8329 masculine +masculine +masculine +8334 masculine +masculine +masculine +masculine +8339 masculine +8341 masculine +8343 masculine +masculine +8346 masculine +masculine +8350 masculine +8352 masculine +masculine +masculine +masculine +8357 masculine +masculine +masculine +masculine +8363 masculine +8368 neuter +neuter +neuter +neuter +8373 masculine +masculine +8376 masculine +masculine +8379 masculine +8381 masculine +8383 feminine +8385 neuter +8389 masculine +masculine +8393 neuter +neuter +8397 masculine +8399 neuter +8402 masculine +8404 masculine +masculine +8407 masculine +masculine +masculine +8412 neuter +neuter +8415 feminine +8418 feminine +feminine +masculine +8424 neuter +neuter +8427 masculine +masculine +8430 feminine +feminine +8433 neuter +8435 neuter +neuter +8439 masculine +masculine +masculine +8443 feminine +feminine +feminine +feminine +8449 masculine +masculine +8452 feminine +feminine +8455 masculine +masculine +masculine +masculine +8460 feminine +feminine +masculine +8464 masculine +8466 neuter +8470 masculine +masculine +8474 masculine +8476 masculine +masculine +masculine +masculine +8486 masculine +masculine +masculine +masculine +8491 masculine +8501 neuter +neuter +8504 masculine +8508 masculine +8510 neuter +neuter +masculine +8515 neuter +neuter +8520 masculine +masculine +8523 masculine +masculine +masculine +8528 masculine +8531 masculine +masculine +8537 masculine +masculine +masculine +feminine +feminine +8543 masculine +8546 masculine +masculine +8549 neuter +8552 masculine +masculine +8555 neuter +neuter +8558 masculine +masculine +8561 masculine +8563 neuter +neuter +8566 masculine +masculine +8569 masculine +masculine +8573 masculine +8576 feminine +feminine +8579 feminine +8581 masculine +masculine +masculine +masculine +masculine +masculine +masculine +8590 feminine +feminine +feminine +feminine +8596 masculine +masculine +masculine +8600 masculine +8603 masculine +8605 neuter +8607 neuter +neuter +neuter +neuter +masculine +8613 masculine +8618 masculine +masculine +8621 neuter +masculine +8624 masculine +masculine +8627 neuter +masculine +masculine +8632 feminine +feminine +masculine +masculine +8639 feminine +feminine +8642 masculine +8645 masculine +masculine +8648 masculine +8650 neuter +8654 feminine +feminine +masculine +masculine +8659 feminine +feminine +8663 masculine +masculine +8667 masculine +masculine +8670 feminine +feminine +8673 masculine +masculine +masculine +8677 feminine +masculine +8684 masculine +8686 masculine +masculine +8689 feminine +feminine +neuter +8693 neuter +8700 masculine +masculine +masculine +8704 feminine +feminine +masculine +8709 masculine +masculine +masculine +masculine +8714 feminine +feminine +8717 masculine +8722 masculine +masculine +masculine +masculine +masculine +neuter +neuter +8732 feminine +feminine +masculine +8743 masculine +feminine +neuter +masculine +8748 masculine +masculine +masculine +8752 masculine +8757 neuter +neuter +8760 neuter +neuter +8763 masculine +masculine +8766 neuter +neuter +8769 neuter +neuter +neuter +8773 masculine +masculine +8776 masculine +masculine +masculine +8780 masculine +8783 masculine +masculine +masculine +masculine +masculine +8790 masculine +masculine +8793 feminine +feminine +feminine +8798 masculine +masculine +8801 masculine +masculine +8805 masculine +8807 masculine +masculine +masculine +8812 masculine +masculine +8815 masculine +8817 masculine +8820 masculine +masculine +masculine +8824 masculine +8827 feminine +feminine +8830 masculine +8832 feminine +8835 masculine +8840 neuter +neuter +neuter +8844 neuter +neuter +8847 feminine +feminine +8852 masculine +8855 neuter +neuter +8858 neuter +neuter +8861 feminine +feminine +8864 neuter +8866 masculine +masculine +8870 feminine +feminine +8873 masculine +masculine +masculine +feminine +feminine +feminine +feminine +feminine +neuter +8883 neuter +neuter +masculine +masculine +8888 neuter +feminine +feminine +8894 masculine +masculine +8897 masculine +8899 masculine +masculine +8903 neuter +neuter +feminine +8907 feminine +8910 feminine +feminine +8913 neuter +neuter +neuter +feminine +8918 feminine +8921 masculine +masculine +masculine +feminine +feminine +8930 masculine +8933 feminine +masculine +8936 masculine +masculine +masculine +masculine +8941 masculine +masculine +8944 feminine +8950 masculine +masculine +8958 neuter +neuter +neuter +neuter +masculine +masculine +8965 feminine +feminine +8968 masculine +feminine +masculine +8974 masculine +masculine +8979 neuter +8981 masculine +masculine +neuter +neuter +8987 neuter +neuter +8990 feminine +8993 masculine +8996 neuter +neuter +9000 neuter +neuter +neuter +neuter +9005 feminine +feminine +masculine +masculine +neuter +9011 masculine +masculine +masculine +9015 feminine +9017 feminine +feminine +9020 feminine +feminine +9028 feminine +feminine +feminine +9032 feminine +feminine +feminine +9036 masculine +9038 masculine +masculine +9042 feminine +feminine +feminine +feminine +9047 masculine +9049 neuter +neuter +9055 masculine +masculine +masculine +masculine +9060 masculine +masculine +masculine +masculine +masculine +9066 masculine +masculine +9070 masculine +9072 masculine +masculine +masculine +9077 masculine +9079 masculine +masculine +9082 masculine +masculine +masculine +masculine +masculine +9088 masculine +masculine +9091 masculine +masculine +9095 masculine +masculine +masculine +9099 masculine +masculine +masculine +masculine +masculine +masculine +9108 masculine +masculine +9112 feminine +feminine +9119 neuter +9123 masculine +masculine +9131 feminine +feminine +9135 masculine +masculine +masculine +9141 feminine +masculine +masculine +9146 masculine +masculine +9150 masculine +masculine +masculine +masculine +masculine +9157 masculine +9161 neuter +neuter +9164 masculine +masculine +masculine +9169 feminine +feminine +9172 masculine +9174 masculine +9176 masculine +masculine +9179 masculine +9183 masculine +masculine +9186 masculine +masculine +masculine +masculine +9192 masculine +9196 neuter +neuter +neuter +neuter +9201 feminine +feminine +9205 masculine +masculine +9208 masculine +masculine +9211 feminine +9213 neuter +9215 masculine +masculine +masculine +9220 neuter +neuter +9225 neuter +neuter +feminine +9229 masculine +masculine +masculine +9233 masculine +masculine +9236 masculine +neuter +9239 masculine +masculine +9242 masculine +9244 masculine +masculine +9247 masculine +feminine +feminine +9251 feminine +9254 masculine +masculine +9259 masculine +9262 masculine +masculine +masculine +9266 neuter +neuter +masculine +masculine +9273 neuter +neuter +masculine +masculine +9279 feminine +feminine +9282 feminine +neuter +9286 neuter +9289 feminine +9292 neuter +neuter +masculine +9296 masculine +masculine +9300 masculine +masculine +masculine +9304 neuter +9307 masculine +9310 masculine +masculine +9313 masculine +9318 feminine +feminine +masculine +masculine +9323 masculine +9325 masculine +9328 masculine +masculine +9331 masculine +9335 masculine +masculine +masculine +9339 neuter +9342 masculine +masculine +9345 masculine +9352 masculine +9354 masculine +masculine +masculine +9358 masculine +masculine +9362 masculine +9364 masculine +masculine +masculine +9368 feminine +feminine +9377 masculine +9383 feminine +feminine +masculine +masculine +9388 masculine +9396 feminine +feminine +masculine +masculine +9402 feminine +feminine +masculine +masculine +9407 masculine +9409 masculine +masculine +masculine +9413 neuter +neuter +feminine +feminine +masculine +9419 masculine +masculine +masculine +masculine +9424 masculine +masculine +masculine +9428 masculine +masculine +masculine +masculine +9433 masculine +9436 masculine +masculine +masculine +masculine +9441 masculine +masculine +9444 masculine +masculine +9447 masculine +masculine +masculine +9451 masculine +9454 masculine +9459 masculine +masculine +masculine +9465 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +9474 masculine +masculine +masculine +9478 masculine +masculine +9481 masculine +masculine +9484 feminine +9486 neuter +9491 masculine +masculine +9494 masculine +9496 masculine +masculine +9505 masculine +9508 feminine +feminine +feminine +9513 feminine +feminine +9516 feminine +masculine +9520 feminine +9523 feminine +feminine +feminine +feminine +masculine +masculine +9531 neuter +9534 feminine +feminine +9537 neuter +9539 masculine +masculine +9543 neuter +9546 feminine +feminine +9549 neuter +9551 masculine +masculine +9555 masculine +masculine +9558 masculine +9561 masculine +9563 masculine +masculine +9568 masculine +masculine +9571 masculine +masculine +masculine +9576 masculine +9578 neuter +9581 neuter +9584 masculine +masculine +9587 masculine +9589 masculine +9593 feminine +feminine +feminine +9598 masculine +masculine +masculine +masculine +9604 masculine +masculine +masculine +9608 masculine +9613 neuter +9615 masculine +masculine +9618 masculine +masculine +9623 masculine +neuter +9630 neuter +masculine +masculine +9634 neuter +masculine +masculine +9638 masculine +masculine +9641 masculine +masculine +masculine +9645 masculine +9651 masculine +9654 masculine +masculine +masculine +9662 masculine +9664 feminine +feminine +masculine +9669 feminine +9672 masculine +9674 feminine +feminine +masculine +9680 feminine +9682 neuter +9684 masculine +9686 masculine +masculine +masculine +9691 feminine +feminine +masculine +9696 neuter +9698 masculine +neuter +feminine +feminine +masculine +9705 masculine +masculine +masculine +masculine +9711 feminine +feminine +masculine +masculine +masculine +9717 masculine +masculine +masculine +9723 masculine +9725 feminine +feminine +masculine +9733 masculine +masculine +9736 masculine +masculine +9741 masculine +9745 masculine +masculine +masculine +masculine +masculine +9751 feminine +feminine +masculine +9756 feminine +9759 masculine +masculine +masculine +masculine +9764 masculine +9766 masculine +masculine +masculine +masculine +9772 masculine +9774 neuter +neuter +9777 feminine +9781 masculine +9784 neuter +neuter +masculine +9788 masculine +masculine +9791 neuter +neuter +masculine +9795 neuter +9797 neuter +neuter +9802 masculine +masculine +9805 masculine +masculine +9808 masculine +9810 masculine +masculine +masculine +9814 masculine +masculine +masculine +neuter +9826 feminine +feminine +9829 feminine +9831 masculine +feminine +9834 masculine +feminine +9837 masculine +masculine +9840 feminine +feminine +9843 masculine +9846 feminine +9848 feminine +feminine +feminine +masculine +9853 masculine +masculine +9856 masculine +masculine +9859 masculine +9862 masculine +9864 masculine +masculine +masculine +9869 neuter +masculine +9876 masculine +masculine +9879 masculine +masculine +9887 masculine +masculine +masculine +masculine +masculine +9895 masculine +masculine +masculine +9899 masculine +masculine +9902 neuter +neuter +9905 masculine +masculine +masculine +masculine +masculine +9911 neuter +neuter +9914 masculine +masculine +masculine +masculine +masculine +9920 masculine +9924 masculine +masculine +masculine +masculine +9929 neuter +masculine +masculine +9935 masculine +9937 neuter +9939 masculine +masculine +9943 masculine +9947 neuter +9952 masculine +9958 masculine +9962 masculine +neuter +9967 masculine +masculine +masculine +masculine +9974 masculine +9977 masculine +masculine +9981 masculine +masculine +masculine +9985 masculine +9987 masculine +9989 masculine +masculine +9992 masculine +masculine +masculine +masculine +9997 masculine +masculine +10001 masculine +masculine +10012 neuter +neuter +10017 neuter +neuter +10021 masculine +masculine +masculine +10028 masculine +10031 masculine +masculine +masculine +10036 feminine +feminine +10039 feminine +10051 masculine +10055 neuter +masculine +masculine +10061 masculine +neuter +neuter +10066 masculine +masculine +10069 feminine +feminine +feminine +10073 masculine +masculine +masculine +masculine +masculine +10079 feminine +10082 neuter +10087 neuter +10089 masculine +10091 masculine +10093 feminine +feminine +10102 feminine +10104 masculine +neuter +10107 neuter +neuter +neuter +10116 neuter +10120 masculine +masculine +10123 feminine +feminine +10126 masculine +masculine +masculine +10130 masculine +masculine +masculine +masculine +10136 feminine +masculine +10140 masculine +10142 feminine +feminine +feminine +10150 masculine +masculine +10153 feminine +10155 masculine +neuter +neuter +masculine +masculine +masculine +10164 masculine +masculine +10168 neuter +10172 masculine +10174 feminine +feminine +10177 masculine +masculine +masculine +masculine +neuter +10184 masculine +masculine +masculine +feminine +feminine +10190 masculine +10192 neuter +10194 masculine +10196 masculine +masculine +masculine +10201 masculine +masculine +10204 masculine +10206 masculine +masculine +10209 masculine +masculine +masculine +10213 masculine +10215 masculine +masculine +10221 masculine +masculine +10224 feminine +10226 neuter +10228 masculine +masculine +masculine +masculine +10234 masculine +neuter +neuter +masculine +10239 masculine +masculine +masculine +10243 masculine +10249 feminine +feminine +feminine +10253 masculine +masculine +masculine +masculine +masculine +10259 masculine +masculine +10263 feminine +feminine +masculine +masculine +10268 masculine +neuter +10271 neuter +10273 neuter +masculine +10286 neuter +neuter +10292 feminine +feminine +masculine +masculine +10297 masculine +10299 masculine +10301 neuter +neuter +neuter +masculine +10306 masculine +masculine +10309 feminine +feminine +masculine +masculine +10315 masculine +10317 neuter +neuter +neuter +10321 neuter +neuter +10328 masculine +10330 masculine +masculine +masculine +masculine +masculine +masculine +10339 masculine +10342 masculine +masculine +10345 masculine +masculine +masculine +10351 neuter +neuter +feminine +feminine +10356 masculine +masculine +10359 neuter +neuter +10362 feminine +10364 neuter +neuter +10368 masculine +masculine +10371 masculine +neuter +neuter +10377 feminine +feminine +10381 masculine +masculine +10387 masculine +10392 neuter +10397 feminine +feminine +masculine +10401 masculine +10404 feminine +10407 masculine +masculine +10411 neuter +neuter +neuter +neuter +10417 masculine +masculine +10423 masculine +10428 neuter +10431 masculine +10433 feminine +feminine +10438 masculine +masculine +10442 feminine +feminine +neuter +neuter +10449 neuter +neuter +neuter +neuter +10457 masculine +masculine +neuter +10461 masculine +10463 neuter +10465 neuter +neuter +masculine +masculine +10470 masculine +10472 masculine +neuter +10478 masculine +masculine +10481 neuter +10484 neuter +10486 neuter +10489 neuter +10493 neuter +neuter +10496 masculine +10498 neuter +neuter +10504 neuter +10511 neuter +10515 neuter +10518 neuter +10520 neuter +10524 neuter +10526 masculine +masculine +10529 masculine +10531 masculine +10534 neuter +neuter +neuter +neuter +10541 masculine +masculine +10546 masculine +10550 masculine +masculine +10556 masculine +masculine +10567 masculine +10572 neuter +10575 masculine +masculine +10578 neuter +neuter +10583 masculine +10585 feminine +feminine +10590 feminine +feminine +10596 masculine +masculine +10599 masculine +masculine +10605 neuter +10608 feminine +feminine +10611 neuter +10613 masculine +10616 neuter +10619 feminine +feminine +10622 neuter +10624 masculine +10636 feminine +feminine +10639 neuter +neuter +10642 neuter +10645 masculine +10647 masculine +masculine +10650 masculine +10652 masculine +10656 masculine +10659 masculine +10661 neuter +neuter +neuter +10667 neuter +masculine +10670 masculine +masculine +masculine +10674 masculine +masculine +10680 masculine +masculine +10685 masculine +10689 masculine +masculine +masculine +10702 neuter +10704 feminine +feminine +masculine +masculine +masculine +masculine +masculine +10713 masculine +10715 masculine +masculine +masculine +10719 masculine +masculine +10723 masculine +masculine +masculine +neuter +neuter +10730 masculine +masculine +10734 masculine +masculine +10737 masculine +10739 feminine +feminine +10742 neuter +neuter +10745 neuter +neuter +10751 masculine +masculine +masculine +10755 masculine +masculine +10761 neuter +10765 masculine +masculine +masculine +masculine +masculine +masculine +10772 masculine +10774 neuter +neuter +10777 masculine +10779 masculine +masculine +masculine +masculine +10784 masculine +masculine +masculine +masculine +masculine +10790 masculine +10792 neuter +10794 masculine +masculine +10797 masculine +10800 neuter +10803 masculine +masculine +masculine +masculine +10808 masculine +masculine +10817 masculine +10821 masculine +10823 masculine +10825 feminine +10828 neuter +neuter +10831 masculine +masculine +masculine +masculine +neuter +neuter +10840 masculine +10842 masculine +masculine +masculine +neuter +neuter +neuter +10849 masculine +masculine +masculine +masculine +masculine +10855 masculine +masculine +masculine +feminine +feminine +feminine +feminine +10872 masculine +masculine +10880 masculine +masculine +masculine +masculine +10885 masculine +masculine +masculine +10889 masculine +10891 neuter +neuter +neuter +masculine +10897 masculine +masculine +10900 masculine +masculine +10907 masculine +masculine +masculine +masculine +10912 feminine +feminine +10919 masculine +masculine +masculine +masculine +masculine +10926 feminine +feminine +10931 neuter +neuter +feminine +feminine +10936 masculine +masculine +10940 masculine +masculine +masculine +10945 masculine +10949 masculine +masculine +masculine +masculine +10954 masculine +10958 feminine +feminine +masculine +10962 feminine +feminine +10965 masculine +masculine +10971 masculine +masculine +10974 feminine +neuter +10977 neuter +10979 masculine +10983 neuter +10985 masculine +masculine +masculine +10989 feminine +feminine +10993 feminine +feminine +masculine +10998 masculine +11001 feminine +feminine +11008 feminine +feminine +11011 neuter +masculine +masculine +11015 masculine +11019 masculine +11021 neuter +masculine +11025 neuter +neuter +11030 masculine +11032 masculine +11034 feminine +feminine +11040 feminine +feminine +11045 feminine +11054 masculine +11056 feminine +feminine +masculine +11061 feminine +11064 feminine +11067 masculine +masculine +masculine +11073 feminine +feminine +masculine +masculine +11078 feminine +feminine +11084 masculine +11086 masculine +11088 masculine +11090 masculine +masculine +masculine +11094 masculine +11098 masculine +masculine +11101 feminine +feminine +11107 masculine +masculine +11111 masculine +masculine +11115 masculine +masculine +11118 masculine +11120 feminine +feminine +masculine +masculine +masculine +masculine +11130 masculine +neuter +11133 feminine +feminine +11136 neuter +11140 masculine +masculine +11143 masculine +11145 masculine +masculine +11149 neuter +neuter +11154 neuter +11159 neuter +neuter +11162 feminine +feminine +masculine +masculine +11167 masculine +feminine +feminine +neuter +11175 masculine +masculine +masculine +11179 masculine +neuter +neuter +11185 feminine +feminine +11188 masculine +11190 masculine +neuter +11195 neuter +neuter +masculine +11199 masculine +masculine +11205 feminine +feminine +11209 feminine +feminine +11212 masculine +feminine +11215 masculine +masculine +11218 neuter +11228 masculine +masculine +11231 feminine +feminine +11235 masculine +11239 masculine +11241 masculine +masculine +masculine +neuter +neuter +11247 neuter +11251 masculine +masculine +masculine +11256 masculine +11261 neuter +neuter +11265 masculine +11268 masculine +11270 masculine +11276 masculine +masculine +masculine +masculine +masculine +11282 masculine +11285 masculine +neuter +neuter +11289 masculine +masculine +11292 masculine +masculine +masculine +11299 masculine +11303 feminine +feminine +masculine +masculine +11311 neuter +11313 feminine +11315 neuter +feminine +11319 masculine +11321 feminine +feminine +masculine +masculine +11326 masculine +masculine +masculine +11331 masculine +11333 masculine +11337 masculine +masculine +masculine +11341 masculine +11343 masculine +neuter +neuter +11349 masculine +neuter +neuter +11353 masculine +masculine +masculine +11357 masculine +11361 neuter +11366 neuter +11370 masculine +masculine +11373 masculine +11379 masculine +masculine +11383 feminine +feminine +11387 masculine +masculine +masculine +masculine +11392 masculine +feminine +masculine +11397 masculine +11400 masculine +masculine +feminine +11404 feminine +masculine +masculine +11408 masculine +masculine +11411 feminine +11413 masculine +11415 feminine +11417 masculine +11419 feminine +11421 neuter +11423 masculine +11425 neuter +neuter +neuter +neuter +11431 feminine +feminine +11435 masculine +masculine +11438 masculine +11440 masculine +masculine +11443 feminine +11445 feminine +feminine +masculine +masculine +masculine +masculine +masculine +11456 masculine +11458 masculine +masculine +masculine +11462 masculine +11464 masculine +masculine +11467 neuter +feminine +feminine +11471 masculine +11473 masculine +masculine +masculine +11477 masculine +11479 feminine +feminine +11482 masculine +masculine +11485 feminine +feminine +masculine +11489 masculine +11495 masculine +masculine +11499 neuter +11501 neuter +11505 masculine +11509 masculine +11511 feminine +11513 feminine +feminine +11519 feminine +feminine +masculine +11523 masculine +masculine +11527 masculine +neuter +11531 feminine +feminine +feminine +masculine +11536 masculine +11538 masculine +11542 masculine +11547 masculine +masculine +11550 feminine +feminine +11553 masculine +masculine +masculine +masculine +masculine +masculine +masculine +11561 masculine +masculine +11565 masculine +masculine +masculine +11569 masculine +masculine +11572 masculine +masculine +11575 masculine +masculine +11578 feminine +feminine +feminine +11583 neuter +11585 masculine +masculine +masculine +11590 neuter +11594 neuter +11596 neuter +11598 masculine +11600 masculine +11603 masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +11613 masculine +masculine +11617 masculine +masculine +neuter +neuter +feminine +feminine +11624 masculine +masculine +11627 masculine +masculine +masculine +masculine +11632 masculine +11637 neuter +11641 neuter +neuter +11647 masculine +masculine +masculine +11657 neuter +11661 neuter +neuter +11664 masculine +masculine +11667 masculine +11671 masculine +11675 masculine +masculine +masculine +11679 masculine +masculine +masculine +11683 masculine +masculine +11687 neuter +11689 masculine +11692 feminine +11695 feminine +feminine +11698 masculine +11702 neuter +11704 masculine +masculine +masculine +masculine +11709 masculine +masculine +11712 masculine +11715 masculine +11717 masculine +11720 masculine +neuter +neuter +11724 neuter +11731 feminine +feminine +feminine +11737 masculine +feminine +feminine +masculine +masculine +masculine +11744 masculine +masculine +feminine +feminine +11749 feminine +neuter +11752 masculine +11754 masculine +11756 feminine +neuter +11760 masculine +11764 masculine +masculine +11767 masculine +11769 masculine +11771 neuter +11773 masculine +11775 neuter +11778 feminine +feminine +11782 masculine +masculine +masculine +11788 neuter +11792 neuter +neuter +neuter +11799 masculine +11802 masculine +11804 neuter +neuter +11809 neuter +11812 neuter +11816 neuter +11819 neuter +neuter +11823 masculine +11826 masculine +masculine +11830 masculine +masculine +11835 masculine +11837 masculine +11839 masculine +masculine +masculine +masculine +11846 masculine +masculine +neuter +neuter +11851 neuter +11853 masculine +masculine +11856 neuter +11864 masculine +11868 masculine +11872 masculine +11875 masculine +11880 masculine +11883 masculine +11885 masculine +masculine +masculine +masculine +11896 feminine +feminine +masculine +neuter +11901 masculine +11903 masculine +masculine +11906 feminine +11908 masculine +masculine +masculine +11914 masculine +masculine +11917 feminine +feminine +masculine +11921 masculine +11924 masculine +11927 masculine +masculine +masculine +11931 masculine +masculine +11934 masculine +11938 masculine +neuter +11941 masculine +11944 masculine +masculine +masculine +11948 masculine +masculine +masculine +11952 masculine +11956 neuter +11960 masculine +masculine +11964 masculine +masculine +11968 masculine +masculine +masculine +11972 neuter +neuter +masculine +11980 masculine +11985 neuter +11989 feminine +11991 neuter +neuter +feminine +feminine +11996 masculine +11999 masculine +masculine +masculine +12004 feminine +feminine +feminine +12012 feminine +feminine +12015 masculine +12017 feminine +masculine +12023 masculine +12026 neuter +12029 masculine +masculine +masculine +feminine +12035 masculine +12037 masculine +12039 neuter +12043 neuter +neuter +12046 masculine +masculine +masculine +12050 feminine +feminine +feminine +12054 masculine +masculine +12059 masculine +12061 masculine +12063 feminine +12066 masculine +masculine +neuter +12070 masculine +masculine +masculine +12074 masculine +12077 masculine +masculine +masculine +12081 feminine +feminine +12084 masculine +masculine +12089 masculine +neuter +neuter +12095 masculine +12097 masculine +masculine +masculine +12101 masculine +neuter +neuter +12105 feminine +feminine +12108 masculine +12110 masculine +12112 neuter +neuter +12117 feminine +feminine +12120 masculine +masculine +masculine +masculine +masculine +12126 masculine +masculine +12129 masculine +12131 masculine +masculine +masculine +masculine +masculine +masculine +12138 neuter +masculine +12142 neuter +neuter +12145 masculine +masculine +12148 neuter +12150 feminine +feminine +feminine +feminine +masculine +12156 masculine +12158 masculine +masculine +12161 masculine +12163 masculine +masculine +masculine +masculine +12168 feminine +feminine +feminine +12173 masculine +12175 neuter +neuter +12179 masculine +masculine +masculine +12183 masculine +12185 neuter +neuter +12189 feminine +feminine +masculine +masculine +12194 feminine +feminine +masculine +masculine +feminine +feminine +12202 masculine +12204 masculine +masculine +12207 masculine +feminine +12212 masculine +12214 neuter +masculine +12218 masculine +masculine +12221 masculine +12223 neuter +neuter +12227 masculine +12229 masculine +masculine +12232 masculine +masculine +masculine +neuter +neuter +neuter +12240 masculine +masculine +masculine +masculine +12245 neuter +neuter +12248 masculine +12250 masculine +masculine +masculine +12256 masculine +12258 neuter +masculine +12262 masculine +masculine +12265 masculine +12271 neuter +masculine +12274 masculine +12276 masculine +12278 masculine +masculine +12282 feminine +feminine +12285 feminine +12291 masculine +12293 feminine +feminine +12297 masculine +feminine +feminine +12301 feminine +feminine +12305 feminine +12307 neuter +12310 feminine +12313 neuter +neuter +12317 feminine +12322 masculine +12325 masculine +masculine +12330 feminine +feminine +12333 masculine +masculine +masculine +12337 masculine +12341 feminine +feminine +12344 masculine +masculine +masculine +12348 masculine +12354 feminine +12359 neuter +neuter +feminine +feminine +12366 neuter +neuter +neuter +12374 feminine +feminine +12378 neuter +12380 neuter +12383 feminine +feminine +masculine +12388 masculine +masculine +12391 neuter +neuter +12394 masculine +masculine +masculine +masculine +12399 masculine +masculine +masculine +masculine +masculine +12405 feminine +feminine +neuter +12410 masculine +12413 feminine +feminine +feminine +12417 masculine +masculine +masculine +12421 masculine +12425 masculine +masculine +12428 masculine +12435 feminine +feminine +neuter +12439 neuter +neuter +neuter +masculine +12446 masculine +12449 masculine +12451 masculine +12454 masculine +masculine +12459 masculine +12464 neuter +12467 masculine +12472 masculine +12474 masculine +masculine +12477 masculine +12479 masculine +12481 masculine +masculine +12484 masculine +masculine +masculine +12491 masculine +12493 masculine +12499 feminine +feminine +neuter +12504 neuter +12507 masculine +12509 neuter +12511 masculine +neuter +neuter +12515 neuter +12520 masculine +masculine +12523 masculine +masculine +12527 masculine +12532 masculine +neuter +neuter +12538 masculine +masculine +12544 masculine +12546 masculine +12548 masculine +12551 neuter +neuter +masculine +masculine +12556 masculine +masculine +12559 masculine +masculine +masculine +12566 masculine +masculine +12569 feminine +feminine +12574 feminine +feminine +masculine +masculine +12580 masculine +12584 feminine +feminine +12589 masculine +12591 masculine +masculine +12594 feminine +feminine +12597 masculine +12600 masculine +12603 neuter +neuter +12606 masculine +feminine +feminine +12610 masculine +12612 masculine +masculine +12615 masculine +12617 masculine +masculine +12623 masculine +feminine +12627 masculine +12630 masculine +masculine +12637 masculine +masculine +masculine +masculine +12642 masculine +masculine +masculine +12646 masculine +masculine +12649 masculine +masculine +masculine +12653 masculine +masculine +masculine +masculine +masculine +masculine +12660 masculine +12663 masculine +12666 masculine +12670 masculine +masculine +masculine +masculine +masculine +12677 masculine +12680 neuter +12683 masculine +masculine +masculine +masculine +masculine +12689 masculine +masculine +12693 masculine +masculine +masculine +masculine +masculine +12700 masculine +masculine +12703 masculine +masculine +12707 masculine +12710 feminine +feminine +masculine +12714 masculine +masculine +12718 masculine +masculine +12725 masculine +masculine +masculine +masculine +neuter +12731 masculine +masculine +masculine +12735 masculine +masculine +12739 masculine +12741 masculine +masculine +12744 masculine +masculine +masculine +12748 masculine +masculine +masculine +12752 masculine +masculine +masculine +12756 masculine +masculine +masculine +12762 feminine +feminine +masculine +masculine +12767 masculine +masculine +masculine +12772 feminine +feminine +12775 masculine +12777 feminine +12780 feminine +12782 masculine +12785 neuter +12792 feminine +feminine +masculine +masculine +12798 neuter +neuter +masculine +masculine +feminine +12804 masculine +masculine +12807 masculine +masculine +masculine +12814 masculine +12817 masculine +12819 masculine +masculine +12822 masculine +masculine +masculine +feminine +feminine +masculine +12831 masculine +12834 masculine +masculine +12838 masculine +masculine +12842 masculine +masculine +12846 masculine +masculine +masculine +12852 feminine +masculine +masculine +12856 feminine +feminine +masculine +masculine +masculine +masculine +masculine +12864 masculine +masculine +masculine +masculine +12870 masculine +masculine +masculine +12874 masculine +masculine +12877 masculine +masculine +12885 masculine +masculine +masculine +12889 masculine +masculine +12892 neuter +neuter +12896 masculine +masculine +12900 neuter +neuter +neuter +12904 neuter +neuter +12908 masculine +masculine +12911 masculine +masculine +12915 masculine +12917 masculine +masculine +masculine +12921 masculine +12923 feminine +feminine +masculine +12927 masculine +masculine +masculine +masculine +masculine +masculine +12937 masculine +masculine +12941 masculine +neuter +neuter +masculine +12946 masculine +masculine +masculine +12950 feminine +feminine +masculine +12956 masculine +masculine +masculine +12960 masculine +masculine +masculine +12965 masculine +masculine +12969 masculine +12973 feminine +feminine +feminine +feminine +12979 masculine +12983 masculine +masculine +12986 masculine +masculine +masculine +masculine +12991 feminine +feminine +12994 masculine +masculine +12998 masculine +13000 masculine +13003 masculine +masculine +masculine +13007 masculine +masculine +masculine +13011 masculine +masculine +13015 masculine +13017 masculine +neuter +masculine +13022 masculine +masculine +13028 masculine +neuter +masculine +13032 masculine +13035 masculine +masculine +13038 masculine +masculine +masculine +masculine +masculine +13044 feminine +13046 masculine +13048 neuter +neuter +neuter +neuter +13054 masculine +masculine +13057 masculine +masculine +masculine +masculine +13062 masculine +13064 masculine +13066 masculine +masculine +13069 masculine +masculine +masculine +neuter +13075 masculine +13078 masculine +13081 masculine +masculine +masculine +masculine +13086 masculine +masculine +masculine +masculine +13092 masculine +13095 feminine +feminine +masculine +masculine +13100 feminine +13107 masculine +13112 neuter +masculine +13117 neuter +13122 masculine +masculine +13127 masculine +masculine +masculine +feminine +feminine +masculine +13134 neuter +13137 masculine +13140 neuter +neuter +masculine +masculine +13145 masculine +13147 masculine +neuter +13151 masculine +masculine +feminine +feminine +feminine +13157 feminine +feminine +13160 masculine +13163 masculine +13166 neuter +masculine +masculine +13170 neuter +masculine +masculine +masculine +masculine +13176 masculine +13179 masculine +masculine +13183 feminine +feminine +feminine +13187 masculine +masculine +masculine +13192 feminine +13195 masculine +masculine +masculine +masculine +13201 masculine +13204 masculine +neuter +13207 masculine +masculine +masculine +feminine +feminine +masculine +13215 neuter +masculine +masculine +masculine +13224 masculine +13226 masculine +masculine +masculine +13232 masculine +neuter +13235 feminine +feminine +masculine +masculine +masculine +masculine +13243 masculine +masculine +13246 masculine +masculine +13249 masculine +13252 neuter +masculine +13255 feminine +feminine +13259 feminine +feminine +masculine +masculine +13264 feminine +13267 masculine +13269 feminine +13271 masculine +masculine +masculine +13275 masculine +13278 masculine +feminine +feminine +13282 feminine +feminine +masculine +masculine +13288 feminine +feminine +13296 masculine +13298 masculine +masculine +13303 feminine +feminine +masculine +masculine +13309 neuter +neuter +13313 masculine +masculine +masculine +13318 masculine +masculine +masculine +13322 masculine +masculine +masculine +13326 masculine +masculine +masculine +13331 masculine +masculine +masculine +13335 masculine +13337 masculine +masculine +masculine +13342 feminine +feminine +masculine +13346 masculine +masculine +masculine +13351 masculine +masculine +13355 neuter +neuter +13359 masculine +13361 masculine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +13370 masculine +masculine +13373 masculine +13375 masculine +13377 masculine +masculine +masculine +13382 feminine +feminine +feminine +13388 feminine +feminine +feminine +13394 feminine +feminine +feminine +13398 feminine +13400 feminine +feminine +13403 feminine +feminine +feminine +feminine +feminine +13409 masculine +13413 masculine +13415 feminine +feminine +feminine +feminine +masculine +masculine +masculine +13424 masculine +masculine +13427 masculine +masculine +masculine +13431 masculine +masculine +masculine +masculine +neuter +13439 masculine +masculine +masculine +masculine +13445 masculine +masculine +masculine +13449 masculine +13452 masculine +13454 neuter +13456 masculine +masculine +masculine +13460 masculine +masculine +masculine +13466 neuter +13471 masculine +masculine +13475 masculine +masculine +13480 masculine +13482 masculine +masculine +13485 masculine +masculine +13489 masculine +13492 masculine +masculine +13496 masculine +13498 feminine +feminine +feminine +13502 masculine +13505 masculine +masculine +13508 masculine +masculine +13511 masculine +masculine +masculine +masculine +13516 feminine +masculine +feminine +13520 masculine +masculine +13523 masculine +masculine +13526 neuter +13528 neuter +13536 neuter +neuter +masculine +13548 neuter +neuter +13553 masculine +masculine +masculine +masculine +13558 masculine +masculine +masculine +masculine +13565 neuter +13567 neuter +neuter +neuter +masculine +13573 neuter +13575 masculine +masculine +13579 neuter +neuter +masculine +13584 neuter +neuter +13588 feminine +feminine +13591 neuter +neuter +13594 feminine +feminine +13597 feminine +feminine +13600 masculine +masculine +13603 feminine +feminine +13608 masculine +masculine +masculine +13615 masculine +13617 masculine +13620 masculine +masculine +13623 masculine +13625 masculine +13628 masculine +13633 feminine +feminine +13636 masculine +13639 masculine +masculine +masculine +masculine +13645 masculine +13647 masculine +13650 masculine +masculine +masculine +13654 masculine +masculine +13659 masculine +13661 masculine +13663 masculine +13666 masculine +13668 masculine +13673 masculine +13675 masculine +masculine +13679 feminine +feminine +masculine +masculine +13684 masculine +masculine +13691 masculine +masculine +13697 masculine +13699 masculine +masculine +13703 feminine +feminine +13706 feminine +feminine +13709 masculine +masculine +13715 masculine +masculine +feminine +masculine +13722 masculine +masculine +masculine +masculine +13727 masculine +13730 masculine +masculine +neuter +13736 masculine +13739 masculine +masculine +masculine +masculine +13744 masculine +13746 masculine +13748 masculine +masculine +13751 masculine +masculine +13754 masculine +masculine +masculine +masculine +masculine +masculine +13762 masculine +13765 neuter +neuter +neuter +13771 masculine +13774 neuter +neuter +neuter +13778 neuter +13780 masculine +13782 neuter +neuter +neuter +neuter +13787 neuter +neuter +neuter +neuter +neuter +neuter +13794 masculine +masculine +13797 neuter +neuter +13801 neuter +13804 neuter +neuter +13807 neuter +13809 masculine +masculine +13812 masculine +masculine +13816 masculine +13819 masculine +masculine +masculine +13823 masculine +masculine +13826 masculine +masculine +13830 masculine +masculine +masculine +masculine +13836 masculine +masculine +13839 masculine +13842 masculine +13844 masculine +masculine +13848 neuter +neuter +13851 neuter +neuter +13854 neuter +neuter +13858 neuter +neuter +masculine +masculine +feminine +feminine +13865 neuter +neuter +13868 feminine +feminine +13872 neuter +13874 neuter +13877 masculine +masculine +masculine +masculine +masculine +masculine +13884 feminine +feminine +masculine +13889 masculine +13891 masculine +masculine +13895 neuter +13897 neuter +neuter +13900 feminine +feminine +13906 feminine +13908 feminine +masculine +masculine +13912 neuter +neuter +13915 neuter +neuter +13920 neuter +13922 neuter +neuter +13926 masculine +13928 masculine +masculine +13932 masculine +masculine +13935 masculine +13938 masculine +13942 neuter +masculine +13945 feminine +feminine +13953 masculine +masculine +masculine +13959 masculine +feminine +13962 feminine +13965 masculine +13967 masculine +masculine +13971 masculine +masculine +masculine +masculine +13977 neuter +neuter +masculine +masculine +13986 feminine +feminine +masculine +masculine +13994 masculine +masculine +13997 neuter +neuter +masculine +masculine +14003 masculine +14006 masculine +masculine +masculine +masculine +masculine +14014 neuter +neuter +masculine +masculine +14019 masculine +neuter +feminine +14025 feminine +feminine +feminine +feminine +14031 neuter +14036 masculine +14038 masculine +14040 masculine +14042 masculine +14048 masculine +14051 feminine +feminine +14057 feminine +14059 feminine +14064 neuter +neuter +neuter +neuter +14069 feminine +feminine +14072 neuter +neuter +masculine +masculine +masculine +14078 neuter +neuter +masculine +masculine +masculine +masculine +14086 masculine +masculine +14089 neuter +neuter +14095 neuter +neuter +14098 feminine +feminine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +14108 feminine +masculine +masculine +14112 feminine +14116 neuter +neuter +14119 masculine +masculine +feminine +14123 neuter +neuter +feminine +14127 feminine +feminine +14135 masculine +masculine +14150 masculine +masculine +masculine +14154 neuter +masculine +14157 masculine +masculine +masculine +14161 neuter +neuter +14166 masculine +masculine +masculine +14170 masculine +feminine +feminine +neuter +neuter +14176 masculine +masculine +14179 masculine +14182 neuter +neuter +14192 masculine +masculine +masculine +14198 masculine +masculine +14201 neuter +neuter +feminine +feminine +14206 masculine +masculine +masculine +14210 feminine +masculine +14215 neuter +14218 neuter +neuter +neuter +feminine +feminine +feminine +14225 feminine +masculine +masculine +14229 masculine +masculine +masculine +14233 masculine +14236 masculine +14240 masculine +14243 neuter +neuter +14246 masculine +14249 masculine +masculine +14252 masculine +14257 masculine +14259 feminine +masculine +14270 neuter +neuter +14274 neuter +14276 neuter +14278 feminine +14280 feminine +14283 masculine +14285 masculine +14287 masculine +14289 neuter +neuter +feminine +feminine +14297 feminine +14303 masculine +14305 neuter +neuter +neuter +14309 neuter +neuter +14315 masculine +14317 masculine +14321 masculine +14323 masculine +masculine +14328 masculine +14331 neuter +14333 feminine +feminine +14336 feminine +feminine +masculine +masculine +14341 masculine +masculine +14344 neuter +masculine +14349 neuter +neuter +neuter +feminine +feminine +14355 feminine +feminine +feminine +14359 neuter +neuter +neuter +neuter +14366 neuter +neuter +14371 neuter +neuter +feminine +feminine +neuter +neuter +14378 masculine +masculine +masculine +neuter +14383 masculine +masculine +masculine +masculine +14389 masculine +14391 feminine +feminine +14395 neuter +neuter +masculine +14399 neuter +neuter +14404 neuter +14406 feminine +feminine +masculine +14410 masculine +14412 masculine +masculine +14418 neuter +neuter +masculine +14423 feminine +14425 feminine +feminine +14428 feminine +feminine +14431 feminine +feminine +feminine +14439 feminine +feminine +14442 masculine +14444 neuter +14448 feminine +feminine +feminine +14454 feminine +masculine +14457 masculine +14467 feminine +feminine +feminine +14473 feminine +feminine +14477 masculine +masculine +14480 feminine +feminine +feminine +14485 masculine +14490 masculine +masculine +14498 masculine +14500 masculine +14503 neuter +neuter +14506 neuter +14510 neuter +14512 masculine +masculine +14523 feminine +feminine +14530 neuter +neuter +14536 feminine +feminine +14540 feminine +14544 feminine +14547 feminine +feminine +masculine +masculine +masculine +masculine +14556 neuter +neuter +14560 masculine +masculine +14565 feminine +feminine +feminine +feminine +feminine +masculine +masculine +14574 feminine +feminine +14578 neuter +neuter +feminine +14582 masculine +masculine +14586 masculine +masculine +14589 feminine +feminine +masculine +masculine +14597 neuter +neuter +masculine +masculine +masculine +masculine +14604 masculine +14608 feminine +feminine +feminine +feminine +feminine +14615 masculine +masculine +masculine +masculine +masculine +14621 feminine +feminine +masculine +masculine +14626 feminine +14628 feminine +feminine +14632 masculine +masculine +masculine +14636 feminine +feminine +14640 masculine +masculine +masculine +14644 masculine +masculine +masculine +14648 neuter +masculine +14651 neuter +masculine +14655 feminine +feminine +14658 feminine +feminine +14662 masculine +masculine +feminine +14666 masculine +14668 neuter +neuter +14674 neuter +neuter +14681 neuter +neuter +14688 feminine +14696 feminine +feminine +feminine +14701 neuter +neuter +14704 masculine +masculine +14707 feminine +feminine +14711 masculine +masculine +14719 feminine +feminine +14722 feminine +feminine +masculine +14727 masculine +masculine +masculine +masculine +14732 masculine +masculine +14736 masculine +masculine +masculine +14741 feminine +feminine +masculine +masculine +14747 feminine +feminine +masculine +masculine +masculine +masculine +14756 feminine +feminine +feminine +feminine +14761 masculine +masculine +14764 masculine +14766 masculine +masculine +14769 masculine +14771 feminine +feminine +14774 masculine +14776 feminine +feminine +14783 masculine +masculine +14787 masculine +14791 feminine +feminine +masculine +masculine +masculine +masculine +14801 masculine +masculine +masculine +14806 masculine +14809 feminine +14811 masculine +masculine +feminine +14816 feminine +14823 feminine +feminine +masculine +masculine +14830 neuter +14835 masculine +masculine +feminine +feminine +masculine +masculine +14849 feminine +feminine +masculine +14853 neuter +14857 masculine +14859 feminine +14862 feminine +masculine +masculine +masculine +masculine +14869 masculine +14871 masculine +masculine +14874 masculine +masculine +masculine +14878 masculine +masculine +14881 feminine +feminine +masculine +neuter +14886 masculine +feminine +feminine +14890 masculine +masculine +masculine +masculine +masculine +masculine +14897 masculine +masculine +masculine +masculine +masculine +14908 neuter +neuter +neuter +masculine +14913 masculine +14917 masculine +masculine +masculine +masculine +14922 feminine +feminine +masculine +14927 masculine +masculine +14932 masculine +masculine +masculine +14940 masculine +masculine +14943 masculine +masculine +masculine +masculine +masculine +14949 feminine +feminine +14955 feminine +feminine +14961 masculine +14963 neuter +neuter +masculine +14967 masculine +masculine +14972 masculine +masculine +14975 masculine +masculine +masculine +masculine +14981 feminine +feminine +masculine +masculine +14986 feminine +feminine +feminine +feminine +feminine +feminine +14994 feminine +masculine +masculine +15000 feminine +15002 feminine +15005 feminine +15007 feminine +feminine +feminine +feminine +feminine +15015 feminine +neuter +15018 feminine +feminine +15021 neuter +15023 neuter +neuter +15026 feminine +feminine +feminine +15030 masculine +masculine +masculine +15034 feminine +15038 feminine +feminine +feminine +15043 masculine +masculine +15047 feminine +15050 feminine +feminine +feminine +feminine +15056 feminine +feminine +feminine +15060 feminine +feminine +feminine +feminine +15068 neuter +neuter +15072 feminine +feminine +15078 feminine +feminine +feminine +15092 masculine +masculine +15096 feminine +15098 feminine +feminine +15102 masculine +masculine +15105 feminine +feminine +15109 masculine +15111 masculine +masculine +15115 feminine +feminine +15118 neuter +15121 feminine +feminine +feminine +feminine +masculine +masculine +15130 masculine +masculine +15144 feminine +feminine +15147 feminine +feminine +15151 masculine +masculine +15154 masculine +masculine +masculine +15159 masculine +neuter +neuter +masculine +15165 masculine +15168 neuter +15170 masculine +15173 masculine +neuter +masculine +15177 feminine +feminine +feminine +15183 masculine +masculine +neuter +15187 neuter +masculine +15191 neuter +15194 neuter +15197 masculine +neuter +15201 neuter +15204 masculine +neuter +neuter +masculine +masculine +15210 feminine +15213 neuter +neuter +masculine +masculine +masculine +15220 masculine +masculine +15223 masculine +masculine +masculine +masculine +masculine +15230 masculine +15232 masculine +15234 masculine +masculine +neuter +15238 neuter +masculine +15241 neuter +15243 neuter +masculine +masculine +15247 neuter +15251 neuter +15253 neuter +15256 masculine +masculine +masculine +masculine +15261 masculine +masculine +15264 masculine +15266 neuter +15268 masculine +15270 neuter +15275 feminine +feminine +masculine +masculine +15280 masculine +15282 masculine +neuter +15285 neuter +15287 masculine +15289 neuter +15293 neuter +15295 neuter +15298 masculine +masculine +masculine +masculine +15303 masculine +masculine +15306 masculine +15308 neuter +15310 masculine +15312 neuter +15317 feminine +feminine +masculine +masculine +15323 masculine +15325 masculine +neuter +neuter +neuter +masculine +15331 masculine +15336 masculine +masculine +masculine +15343 masculine +15348 masculine +masculine +15351 neuter +neuter +15355 feminine +feminine +15359 neuter +neuter +15362 masculine +masculine +masculine +masculine +15367 masculine +masculine +masculine +15371 masculine +15387 neuter +neuter +15390 masculine +masculine +15394 masculine +15397 neuter +neuter +15400 masculine +15404 masculine +neuter +neuter +15409 masculine +masculine +neuter +15413 neuter +15415 masculine +masculine +masculine +15422 masculine +15424 masculine +15426 neuter +15430 masculine +15432 masculine +masculine +masculine +15437 neuter +neuter +neuter +neuter +15443 masculine +masculine +15446 masculine +masculine +masculine +masculine +15453 masculine +masculine +masculine +masculine +15458 feminine +feminine +masculine +15462 masculine +masculine +masculine +15466 masculine +15470 masculine +feminine +masculine +15476 masculine +neuter +neuter +neuter +15482 masculine +15484 neuter +15486 masculine +masculine +15489 neuter +neuter +15492 masculine +masculine +15497 neuter +neuter +15500 neuter +masculine +15503 neuter +neuter +15506 neuter +15509 masculine +masculine +neuter +15513 neuter +masculine +15516 masculine +masculine +masculine +masculine +15522 feminine +feminine +15526 feminine +masculine +feminine +15539 masculine +15544 masculine +15553 feminine +15561 masculine +masculine +masculine +masculine +masculine +15569 masculine +15573 masculine +15580 masculine +15584 masculine +15591 masculine +15594 feminine +15600 masculine +masculine +masculine +15604 masculine +15609 neuter +15611 masculine +masculine +masculine +masculine +15616 masculine +masculine +15623 neuter +15625 neuter +masculine +15631 neuter +neuter +neuter +neuter +neuter +neuter +masculine +masculine +15640 masculine +masculine +masculine +15655 masculine +15661 masculine +15666 masculine +15669 feminine +15677 masculine +masculine +masculine +15683 masculine +15685 masculine +15687 masculine +15689 masculine +15691 masculine +15694 feminine +15701 masculine +masculine +15707 neuter +15710 masculine +masculine +masculine +masculine +15719 masculine +15721 feminine +feminine +15724 masculine +masculine +15727 feminine +feminine +15733 masculine +masculine +masculine +masculine +masculine +masculine +15740 masculine +masculine +masculine +15747 feminine +neuter +neuter +15752 masculine +masculine +masculine +masculine +15758 neuter +15762 masculine +masculine +15765 masculine +masculine +masculine +masculine +15770 feminine +feminine +masculine +masculine +masculine +masculine +masculine +15780 masculine +masculine +masculine +15790 feminine +feminine +15794 masculine +15797 masculine +masculine +15800 masculine +masculine +masculine +15804 feminine +15806 feminine +masculine +masculine +masculine +15811 masculine +feminine +feminine +neuter +neuter +neuter +15820 feminine +feminine +masculine +masculine +15825 masculine +masculine +masculine +15829 masculine +15831 neuter +feminine +feminine +feminine +15837 neuter +15839 neuter +15842 masculine +15844 masculine +masculine +masculine +15848 masculine +neuter +masculine +15852 feminine +feminine +15855 neuter +neuter +15862 masculine +masculine +15866 masculine +15873 feminine +feminine +neuter +neuter +neuter +15879 neuter +neuter +15883 neuter +15893 neuter +neuter +neuter +15897 masculine +masculine +masculine +15902 neuter +15904 feminine +15906 neuter +feminine +15909 masculine +masculine +15912 masculine +masculine +masculine +masculine +masculine +15918 masculine +masculine +15922 neuter +15928 masculine +15930 masculine +15932 masculine +15934 neuter +15939 feminine +15941 masculine +15944 feminine +feminine +neuter +neuter +15949 masculine +masculine +masculine +masculine +masculine +15959 neuter +neuter +15962 masculine +15966 feminine +feminine +15969 masculine +masculine +15973 masculine +masculine +masculine +15977 masculine +masculine +15985 neuter +neuter +15988 masculine +masculine +15993 masculine +masculine +15997 masculine +masculine +masculine +16002 neuter +neuter +16005 feminine +feminine +16009 masculine +16011 masculine +16013 masculine +masculine +16020 masculine +16026 masculine +16030 masculine +masculine +masculine +16036 masculine +16038 masculine +masculine +16041 masculine +masculine +16045 feminine +feminine +16048 neuter +neuter +masculine +16054 masculine +masculine +masculine +masculine +16062 masculine +16065 masculine +masculine +masculine +16069 masculine +masculine +masculine +masculine +masculine +16075 neuter +16077 masculine +16081 masculine +masculine +masculine +16085 masculine +masculine +masculine +masculine +masculine +16094 masculine +16096 masculine +16100 masculine +masculine +masculine +masculine +masculine +masculine +16107 masculine +16110 masculine +masculine +masculine +16116 neuter +16118 neuter +neuter +16122 masculine +neuter +16125 masculine +16127 masculine +masculine +16131 neuter +masculine +16134 neuter +16136 neuter +neuter +16139 feminine +feminine +neuter +16143 masculine +neuter +16146 feminine +feminine +16157 neuter +neuter +neuter +feminine +feminine +16163 feminine +feminine +feminine +16167 neuter +16171 neuter +16173 feminine +feminine +masculine +masculine +16179 masculine +16182 neuter +neuter +feminine +feminine +16188 masculine +masculine +masculine +masculine +16197 feminine +feminine +feminine +16203 masculine +masculine +16207 neuter +neuter +feminine +feminine +16213 neuter +16219 feminine +feminine +16222 masculine +masculine +masculine +16226 masculine +16228 masculine +16236 masculine +masculine +masculine +16244 feminine +feminine +feminine +16248 masculine +16254 masculine +masculine +masculine +16269 masculine +masculine +masculine +16276 masculine +masculine +masculine +16280 neuter +neuter +neuter +16285 masculine +masculine +16290 masculine +masculine +16295 masculine +masculine +masculine +16299 masculine +16301 masculine +masculine +16309 masculine +feminine +16312 feminine +feminine +16316 masculine +16324 masculine +neuter +16328 neuter +masculine +masculine +16332 masculine +masculine +16336 neuter +16341 neuter +neuter +neuter +16355 masculine +masculine +16359 masculine +masculine +16363 masculine +masculine +16368 feminine +feminine +16380 masculine +16382 neuter +neuter +neuter +16386 feminine +feminine +feminine +16391 neuter +masculine +16394 masculine +masculine +16400 neuter +16404 neuter +16407 neuter +neuter +16411 masculine +16414 masculine +masculine +16418 masculine +masculine +masculine +masculine +16423 masculine +masculine +16426 masculine +16429 neuter +masculine +masculine +masculine +masculine +16438 masculine +masculine +16442 masculine +16444 neuter +16449 feminine +feminine +16452 masculine +masculine +masculine +masculine +16458 feminine +masculine +16464 masculine +masculine +16469 masculine +masculine +16472 masculine +masculine +masculine +16479 masculine +masculine +masculine +16483 feminine +16485 neuter +16487 masculine +masculine +16490 masculine +masculine +masculine +16494 masculine +masculine +masculine +16498 masculine +neuter +masculine +16502 masculine +16504 masculine +16507 masculine +16510 masculine +masculine +masculine +16515 masculine +16518 masculine +16520 masculine +masculine +16523 masculine +masculine +16526 neuter +16529 masculine +16531 feminine +feminine +16534 masculine +masculine +16538 masculine +16541 masculine +masculine +16544 masculine +masculine +feminine +feminine +16549 feminine +feminine +masculine +16553 masculine +masculine +masculine +masculine +masculine +16559 masculine +neuter +neuter +16564 masculine +masculine +masculine +16568 feminine +feminine +16572 masculine +masculine +feminine +16576 masculine +masculine +masculine +feminine +16581 feminine +16589 masculine +masculine +16596 neuter +16598 feminine +masculine +16603 feminine +feminine +16610 feminine +feminine +feminine +16614 masculine +masculine +masculine +masculine +16620 masculine +16623 feminine +16625 neuter +16629 feminine +16631 neuter +neuter +16634 masculine +16640 neuter +neuter +16645 feminine +feminine +masculine +masculine +16650 masculine +masculine +masculine +masculine +masculine +16657 masculine +masculine +masculine +masculine +16663 masculine +masculine +masculine +16667 masculine +masculine +16670 masculine +masculine +16674 masculine +masculine +16677 masculine +16681 feminine +feminine +masculine +masculine +16686 masculine +16690 masculine +masculine +16693 neuter +neuter +16696 masculine +masculine +16699 neuter +neuter +neuter +16703 feminine +16705 masculine +masculine +16708 masculine +16713 masculine +masculine +masculine +16717 neuter +masculine +16721 masculine +16725 masculine +masculine +masculine +masculine +16731 feminine +feminine +16735 masculine +masculine +masculine +16739 masculine +neuter +16742 neuter +masculine +16747 masculine +masculine +16751 masculine +masculine +16754 masculine +16758 masculine +masculine +masculine +masculine +16768 masculine +masculine +masculine +masculine +masculine +masculine +16775 masculine +masculine +masculine +16786 masculine +masculine +masculine +masculine +masculine +16792 neuter +feminine +feminine +16796 masculine +16798 feminine +feminine +masculine +masculine +16803 masculine +masculine +16806 neuter +neuter +masculine +masculine +16811 neuter +16813 feminine +masculine +16819 feminine +feminine +neuter +16825 masculine +masculine +16828 masculine +masculine +16834 neuter +neuter +masculine +16839 masculine +16841 masculine +16843 masculine +16846 masculine +masculine +16849 masculine +masculine +16853 masculine +masculine +16858 feminine +feminine +16862 masculine +feminine +feminine +feminine +16870 masculine +masculine +masculine +16874 masculine +16877 masculine +masculine +16881 neuter +16884 masculine +16886 masculine +masculine +16889 masculine +feminine +16893 masculine +16895 masculine +16898 masculine +masculine +masculine +16905 masculine +16909 masculine +masculine +16913 neuter +masculine +masculine +masculine +16918 masculine +masculine +16924 masculine +16928 feminine +feminine +16931 masculine +16942 masculine +masculine +16946 masculine +16950 masculine +masculine +neuter +neuter +masculine +masculine +16958 masculine +16964 masculine +16969 feminine +feminine +neuter +16973 masculine +masculine +masculine +16977 masculine +masculine +masculine +masculine +16982 masculine +masculine +16986 masculine +16988 masculine +masculine +16993 masculine +masculine +masculine +16997 masculine +masculine +masculine +masculine +masculine +17004 masculine +17006 neuter +17008 neuter +masculine +masculine +17012 masculine +masculine +17015 masculine +neuter +masculine +17019 masculine +17021 neuter +17027 masculine +neuter +neuter +17031 masculine +masculine +17035 masculine +17038 masculine +masculine +masculine +neuter +neuter +17047 neuter +17049 masculine +masculine +17052 feminine +neuter +17056 neuter +masculine +17060 neuter +masculine +masculine +masculine +masculine +17066 feminine +masculine +masculine +17071 masculine +masculine +masculine +masculine +neuter +17077 feminine +17081 neuter +neuter +17084 masculine +masculine +masculine +masculine +17090 neuter +17092 neuter +feminine +feminine +masculine +masculine +masculine +17100 masculine +masculine +17104 neuter +17106 masculine +masculine +masculine +masculine +17113 masculine +17115 masculine +masculine +17119 masculine +masculine +17123 masculine +masculine +masculine +masculine +17129 masculine +masculine +masculine +masculine +17134 masculine +masculine +17141 neuter +17143 masculine +17145 masculine +masculine +17148 masculine +neuter +17153 masculine +masculine +masculine +17158 neuter +17164 masculine +17167 neuter +neuter +17171 masculine +masculine +17176 feminine +17178 masculine +masculine +17181 masculine +masculine +masculine +masculine +masculine +17190 masculine +masculine +masculine +masculine +17195 masculine +masculine +17198 masculine +masculine +masculine +17202 masculine +17205 masculine +17207 masculine +masculine +masculine +masculine +17215 masculine +17217 masculine +17219 masculine +masculine +17222 neuter +neuter +17226 masculine +feminine +feminine +masculine +feminine +neuter +17234 masculine +masculine +masculine +17238 neuter +17242 neuter +17244 masculine +17246 masculine +masculine +17249 masculine +masculine +17252 masculine +masculine +17256 masculine +masculine +17259 masculine +masculine +17263 masculine +masculine +masculine +17267 masculine +17269 masculine +17271 masculine +17276 masculine +17278 masculine +masculine +17281 masculine +masculine +masculine +17285 neuter +17287 masculine +masculine +masculine +masculine +17292 masculine +17295 masculine +17298 neuter +neuter +17302 masculine +17305 masculine +17308 masculine +masculine +masculine +17312 neuter +17316 masculine +17318 masculine +neuter +17321 feminine +feminine +17324 masculine +masculine +masculine +masculine +17330 neuter +neuter +masculine +17336 masculine +masculine +masculine +masculine +17341 neuter +neuter +masculine +17348 neuter +neuter +17353 masculine +masculine +masculine +17357 masculine +masculine +masculine +17364 masculine +masculine +masculine +masculine +masculine +masculine +masculine +17372 neuter +neuter +17376 masculine +feminine +feminine +feminine +17381 masculine +masculine +feminine +feminine +17386 masculine +17388 masculine +masculine +17391 feminine +17394 feminine +feminine +masculine +17398 masculine +17400 feminine +feminine +masculine +17404 masculine +17406 masculine +17408 masculine +masculine +17411 masculine +masculine +masculine +17415 masculine +17417 masculine +17419 masculine +masculine +17424 feminine +feminine +masculine +17430 masculine +17432 masculine +feminine +feminine +17437 masculine +neuter +neuter +masculine +17443 masculine +17445 neuter +17448 masculine +17450 masculine +masculine +neuter +masculine +masculine +17458 masculine +masculine +masculine +17462 masculine +17464 masculine +masculine +feminine +neuter +17469 masculine +neuter +masculine +17473 masculine +17475 masculine +17477 feminine +masculine +17480 masculine +17485 masculine +masculine +17488 neuter +neuter +masculine +masculine +masculine +17494 masculine +17496 masculine +17501 feminine +feminine +masculine +feminine +feminine +masculine +feminine +masculine +17510 masculine +masculine +masculine +masculine +masculine +17518 masculine +17520 masculine +masculine +17523 neuter +17525 masculine +17527 neuter +17529 masculine +masculine +17532 masculine +masculine +feminine +feminine +masculine +17538 masculine +masculine +masculine +masculine +masculine +17545 feminine +feminine +masculine +17549 masculine +17552 masculine +masculine +masculine +17558 masculine +masculine +17561 masculine +masculine +masculine +17565 masculine +masculine +17568 masculine +17570 masculine +17572 masculine +17576 masculine +masculine +17582 masculine +masculine +17587 masculine +17590 masculine +masculine +17596 masculine +17600 masculine +masculine +17604 neuter +neuter +17607 masculine +masculine +masculine +masculine +17612 masculine +17614 masculine +17617 feminine +feminine +neuter +17622 feminine +feminine +feminine +17626 feminine +feminine +17630 feminine +feminine +feminine +17634 masculine +masculine +feminine +feminine +masculine +masculine +masculine +17643 neuter +17645 masculine +17647 masculine +17650 neuter +17654 masculine +masculine +17657 masculine +masculine +17661 masculine +17663 masculine +17666 masculine +17668 masculine +masculine +17671 masculine +masculine +17674 masculine +neuter +17677 masculine +masculine +17680 masculine +17682 masculine +masculine +17689 masculine +masculine +masculine +17693 masculine +masculine +17696 masculine +feminine +feminine +17700 neuter +neuter +17704 neuter +neuter +masculine +masculine +17716 feminine +feminine +17720 feminine +feminine +17724 neuter +neuter +17728 neuter +neuter +masculine +masculine +masculine +17735 masculine +17737 neuter +neuter +17740 feminine +feminine +masculine +17745 feminine +feminine +feminine +17750 masculine +17752 masculine +masculine +17755 masculine +17757 masculine +masculine +masculine +masculine +masculine +masculine +masculine +17765 neuter +neuter +17769 masculine +17771 masculine +masculine +17774 masculine +17778 feminine +feminine +17782 feminine +feminine +17785 masculine +masculine +17788 feminine +feminine +feminine +masculine +17793 feminine +17795 feminine +feminine +feminine +17799 feminine +feminine +masculine +masculine +17804 masculine +feminine +17807 feminine +feminine +masculine +masculine +masculine +17813 feminine +feminine +17816 masculine +masculine +17819 feminine +neuter +masculine +masculine +17824 masculine +17826 masculine +masculine +masculine +masculine +masculine +masculine +17833 neuter +neuter +masculine +masculine +17838 masculine +masculine +17843 masculine +neuter +neuter +masculine +masculine +17849 neuter +17851 feminine +feminine +17855 neuter +17857 neuter +neuter +masculine +neuter +neuter +17864 feminine +feminine +17867 masculine +masculine +masculine +feminine +feminine +neuter +neuter +17877 feminine +feminine +feminine +17881 feminine +feminine +feminine +17885 feminine +17887 masculine +masculine +17890 feminine +17892 feminine +17895 feminine +feminine +17898 masculine +masculine +17901 masculine +masculine +17904 masculine +masculine +masculine +17909 masculine +masculine +masculine +17914 masculine +17916 feminine +feminine +17922 masculine +masculine +17925 feminine +feminine +feminine +17930 masculine +masculine +masculine +17934 masculine +17937 masculine +masculine +17941 masculine +masculine +17945 feminine +feminine +feminine +feminine +feminine +feminine +17952 masculine +masculine +masculine +17956 feminine +17962 masculine +masculine +17965 masculine +masculine +masculine +masculine +masculine +17971 feminine +feminine +17975 neuter +feminine +feminine +17979 feminine +neuter +17982 feminine +feminine +feminine +17986 feminine +feminine +feminine +17990 masculine +masculine +17994 masculine +masculine +17998 masculine +masculine +masculine +18002 masculine +18004 masculine +18006 masculine +masculine +18011 masculine +18014 feminine +feminine +masculine +18018 feminine +18020 neuter +neuter +masculine +neuter +18025 feminine +18028 masculine +masculine +masculine +18032 masculine +masculine +18037 masculine +18039 masculine +masculine +masculine +18043 feminine +feminine +18051 masculine +masculine +masculine +18064 masculine +masculine +18069 neuter +feminine +18072 masculine +masculine +masculine +18078 masculine +masculine +18085 feminine +feminine +18088 masculine +18094 feminine +neuter +18097 neuter +neuter +18100 masculine +18102 feminine +feminine +18106 masculine +masculine +masculine +18111 masculine +18113 feminine +masculine +18117 feminine +feminine +18120 masculine +masculine +masculine +18125 masculine +18128 feminine +masculine +masculine +18135 masculine +masculine +18141 feminine +feminine +18147 feminine +feminine +18150 masculine +feminine +feminine +masculine +18155 feminine +feminine +18158 masculine +masculine +neuter +neuter +neuter +18164 masculine +18166 masculine +masculine +18169 neuter +masculine +neuter +neuter +18174 masculine +masculine +masculine +18179 masculine +masculine +masculine +feminine +masculine +18185 masculine +18187 masculine +18191 neuter +18193 masculine +masculine +18199 masculine +18202 masculine +masculine +neuter +18210 masculine +masculine +masculine +18214 masculine +18216 feminine +18218 feminine +18220 masculine +18222 masculine +18225 feminine +feminine +18228 neuter +neuter +18232 masculine +masculine +masculine +18236 masculine +masculine +18240 masculine +18243 masculine +masculine +masculine +18247 masculine +masculine +18251 feminine +feminine +18254 masculine +18257 feminine +feminine +18260 masculine +18262 neuter +neuter +neuter +masculine +masculine +18268 neuter +neuter +masculine +masculine +18273 masculine +masculine +18276 neuter +neuter +neuter +masculine +masculine +18282 neuter +neuter +18292 feminine +feminine +feminine +18296 feminine +feminine +masculine +masculine +feminine +neuter +neuter +masculine +masculine +masculine +masculine +18310 masculine +masculine +masculine +masculine +18316 masculine +masculine +18320 neuter +18322 masculine +18324 feminine +feminine +18327 feminine +masculine +18330 feminine +feminine +18333 feminine +feminine +masculine +feminine +18338 feminine +feminine +masculine +18342 masculine +masculine +masculine +18346 feminine +feminine +masculine +neuter +feminine +18352 feminine +feminine +18357 masculine +feminine +feminine +feminine +feminine +18363 masculine +masculine +masculine +18369 masculine +18371 masculine +masculine +masculine +masculine +feminine +feminine +masculine +18380 masculine +masculine +masculine +feminine +feminine +18386 feminine +feminine +18389 feminine +feminine +masculine +18393 masculine +feminine +18396 neuter +neuter +18400 masculine +18402 masculine +masculine +18407 masculine +18410 masculine +masculine +18413 masculine +masculine +neuter +neuter +masculine +18421 neuter +18423 masculine +18426 neuter +neuter +18431 feminine +feminine +feminine +18435 masculine +18437 feminine +feminine +feminine +18443 masculine +masculine +18446 masculine +18448 masculine +masculine +18451 neuter +neuter +18454 masculine +masculine +masculine +18458 neuter +neuter +18461 feminine +neuter +18464 masculine +18466 feminine +18469 masculine +masculine +18473 masculine +masculine +18476 masculine +masculine +18482 masculine +neuter +neuter +masculine +18488 feminine +feminine +18493 feminine +feminine +18496 feminine +masculine +18499 masculine +masculine +18504 neuter +neuter +18507 masculine +masculine +18510 masculine +18513 neuter +18515 masculine +masculine +18518 masculine +masculine +18521 feminine +feminine +masculine +neuter +neuter +masculine +masculine +18529 masculine +18532 masculine +masculine +18536 feminine +feminine +masculine +masculine +18544 neuter +neuter +18547 masculine +18549 feminine +feminine +feminine +feminine +18554 masculine +18556 masculine +masculine +masculine +masculine +masculine +18562 feminine +feminine +18566 masculine +18569 masculine +masculine +masculine +18579 masculine +masculine +18582 masculine +masculine +neuter +neuter +18587 masculine +18589 masculine +neuter +18592 masculine +masculine +masculine +masculine +18597 masculine +masculine +masculine +masculine +18602 masculine +18604 neuter +neuter +masculine +neuter +neuter +18610 masculine +18612 masculine +18614 masculine +masculine +masculine +masculine +masculine +18620 neuter +neuter +18623 masculine +masculine +18627 masculine +18631 feminine +18633 masculine +neuter +neuter +masculine +18638 feminine +feminine +18644 feminine +feminine +masculine +18649 masculine +masculine +18652 feminine +masculine +18657 masculine +masculine +18660 masculine +18663 feminine +feminine +masculine +masculine +18668 neuter +neuter +18672 masculine +neuter +18677 masculine +masculine +18684 masculine +18686 masculine +masculine +masculine +masculine +18692 masculine +masculine +masculine +18699 masculine +18701 neuter +neuter +neuter +neuter +neuter +masculine +18708 neuter +feminine +feminine +18713 masculine +18716 masculine +18719 masculine +masculine +neuter +18723 neuter +feminine +feminine +18727 feminine +18729 neuter +neuter +neuter +neuter +18736 masculine +18739 feminine +feminine +masculine +masculine +18745 feminine +feminine +feminine +feminine +feminine +18751 masculine +18753 feminine +feminine +masculine +18758 feminine +feminine +masculine +18762 masculine +18764 masculine +18766 masculine +18768 feminine +feminine +masculine +18772 feminine +18774 masculine +18776 masculine +18778 feminine +18780 masculine +18782 feminine +masculine +feminine +feminine +18788 feminine +masculine +masculine +18793 masculine +18795 feminine +feminine +18799 masculine +masculine +18803 masculine +masculine +masculine +18807 masculine +18809 masculine +masculine +18813 feminine +feminine +feminine +feminine +18818 feminine +feminine +18822 masculine +18824 masculine +feminine +feminine +18828 neuter +neuter +18835 neuter +neuter +18839 masculine +18842 neuter +18844 masculine +18849 masculine +masculine +18855 masculine +masculine +18858 masculine +18860 masculine +18863 masculine +18866 masculine +18868 masculine +18873 masculine +18877 feminine +feminine +feminine +18886 neuter +18890 masculine +18892 feminine +feminine +masculine +18896 feminine +feminine +feminine +18900 neuter +neuter +masculine +18906 masculine +masculine +masculine +masculine +18911 masculine +masculine +masculine +18921 masculine +masculine +feminine +feminine +masculine +18929 masculine +18933 masculine +18936 masculine +feminine +feminine +18942 masculine +masculine +masculine +18946 masculine +18949 masculine +18951 masculine +neuter +18956 masculine +18958 masculine +masculine +18963 masculine +masculine +18966 neuter +18968 masculine +18970 neuter +masculine +18973 masculine +masculine +18977 neuter +18980 masculine +masculine +18984 masculine +18988 feminine +18993 masculine +masculine +18999 masculine +19002 masculine +19005 feminine +19007 feminine +19011 masculine +19015 masculine +19020 neuter +19022 feminine +feminine +19026 masculine +masculine +masculine +19031 masculine +19033 masculine +masculine +masculine +19037 masculine +19040 masculine +19042 masculine +19044 masculine +masculine +19047 feminine +feminine +19052 masculine +19054 masculine +masculine +19057 masculine +masculine +19061 masculine +masculine +masculine +feminine +feminine +masculine +19068 masculine +masculine +neuter +19073 feminine +feminine +19077 masculine +masculine +masculine +19081 masculine +19083 masculine +19085 feminine +feminine +masculine +neuter +masculine +19093 masculine +19096 feminine +19099 masculine +masculine +masculine +19103 masculine +masculine +masculine +masculine +neuter +neuter +masculine +19114 masculine +19116 masculine +neuter +neuter +19121 feminine +feminine +19124 neuter +19126 neuter +19128 masculine +masculine +19132 feminine +feminine +19139 masculine +masculine +19148 feminine +19150 masculine +masculine +masculine +masculine +19155 feminine +19157 feminine +feminine +19160 masculine +masculine +19166 masculine +masculine +19172 masculine +masculine +19178 masculine +masculine +masculine +masculine +19184 masculine +19187 masculine +19190 masculine +masculine +masculine +19201 feminine +feminine +19204 masculine +masculine +masculine +19209 masculine +19212 masculine +19214 masculine +19216 masculine +masculine +masculine +masculine +masculine +19222 neuter +neuter +19226 masculine +19230 masculine +19232 masculine +19236 masculine +19238 feminine +feminine +masculine +19242 masculine +masculine +19245 masculine +19247 masculine +masculine +19250 masculine +masculine +masculine +19255 masculine +19258 masculine +19260 masculine +masculine +masculine +masculine +masculine +19268 masculine +masculine +19271 masculine +19273 masculine +masculine +masculine +19278 masculine +masculine +19281 masculine +19284 masculine +masculine +masculine +19288 masculine +19290 feminine +masculine +19293 masculine +masculine +19296 masculine +19298 masculine +19302 masculine +19304 masculine +19307 masculine +masculine +masculine +masculine +19312 masculine +masculine +19318 masculine +19320 neuter +masculine +masculine +masculine +19325 masculine +masculine +masculine +masculine +19331 masculine +masculine +masculine +19338 masculine +masculine +masculine +19343 masculine +masculine +masculine +masculine +19348 masculine +masculine +masculine +19352 masculine +19355 masculine +masculine +19358 masculine +masculine +19361 masculine +19367 feminine +19371 masculine +masculine +masculine +19378 feminine +feminine +feminine +masculine +neuter +neuter +neuter +19387 neuter +neuter +19393 neuter +neuter +neuter +neuter +19398 neuter +neuter +neuter +19402 neuter +neuter +19406 masculine +19408 masculine +masculine +19411 masculine +masculine +19417 masculine +masculine +masculine +masculine +19422 masculine +masculine +19426 masculine +masculine +19429 masculine +masculine +19432 masculine +masculine +19436 masculine +19438 neuter +neuter +19442 masculine +masculine +19445 masculine +masculine +masculine +19449 feminine +19451 masculine +masculine +masculine +19455 masculine +masculine +19458 masculine +19460 neuter +19462 neuter +neuter +neuter +19469 masculine +19472 neuter +19474 masculine +19476 feminine +19480 masculine +19482 masculine +19484 masculine +19488 masculine +masculine +masculine +masculine +19493 masculine +masculine +19496 masculine +masculine +feminine +feminine +19501 masculine +19507 masculine +masculine +19512 masculine +19514 masculine +masculine +19518 masculine +neuter +neuter +19522 masculine +masculine +19527 masculine +masculine +19530 neuter +neuter +19534 masculine +masculine +masculine +masculine +masculine +19540 neuter +neuter +19546 feminine +19550 masculine +feminine +masculine +feminine +feminine +19557 masculine +19559 neuter +neuter +19562 masculine +19565 masculine +19568 masculine +masculine +masculine +feminine +feminine +feminine +masculine +19577 neuter +neuter +19581 masculine +19583 neuter +neuter +neuter +19589 feminine +19594 masculine +19597 masculine +masculine +19600 feminine +masculine +19603 feminine +feminine +feminine +feminine +masculine +19609 masculine +masculine +19612 feminine +feminine +19618 feminine +feminine +masculine +19622 masculine +masculine +masculine +masculine +19627 masculine +masculine +neuter +19632 masculine +19634 masculine +19637 masculine +masculine +19640 masculine +masculine +masculine +19645 feminine +feminine +19648 neuter +neuter +19651 feminine +feminine +19656 feminine +feminine +19660 neuter +19663 feminine +feminine +19667 masculine +masculine +19671 feminine +19673 feminine +neuter +neuter +masculine +neuter +19681 masculine +19684 masculine +masculine +masculine +19688 neuter +19690 masculine +19692 masculine +masculine +19697 masculine +19699 masculine +19703 masculine +19705 masculine +19707 masculine +19709 feminine +19711 neuter +neuter +neuter +neuter +19716 masculine +19719 masculine +19722 neuter +19726 masculine +masculine +masculine +masculine +19731 neuter +19733 masculine +19736 masculine +masculine +19742 neuter +neuter +19746 masculine +19748 masculine +19752 masculine +19759 masculine +19763 masculine +19767 feminine +19769 neuter +neuter +19773 masculine +19777 neuter +masculine +masculine +masculine +19782 masculine +masculine +masculine +masculine +19787 masculine +masculine +masculine +masculine +masculine +19794 masculine +neuter +masculine +neuter +19799 masculine +feminine +19802 masculine +19804 masculine +19806 masculine +19808 masculine +19810 masculine +19812 masculine +masculine +masculine +masculine +19817 masculine +19819 masculine +masculine +masculine +19823 masculine +masculine +masculine +19828 masculine +19832 masculine +19836 masculine +masculine +19841 masculine +19843 masculine +19846 masculine +masculine +19849 masculine +19852 masculine +19858 masculine +masculine +masculine +19862 neuter +masculine +19866 masculine +19871 masculine +masculine +neuter +neuter +19876 neuter +neuter +19879 masculine +masculine +19882 feminine +19884 masculine +19887 masculine +masculine +19892 feminine +19894 feminine +19899 feminine +feminine +feminine +19904 feminine +19906 feminine +19910 feminine +feminine +feminine +19916 masculine +masculine +19920 masculine +19927 neuter +19932 masculine +19934 feminine +feminine +masculine +masculine +masculine +neuter +neuter +masculine +19945 neuter +masculine +masculine +19951 feminine +feminine +masculine +19960 masculine +masculine +masculine +masculine +neuter +neuter +neuter +19968 feminine +feminine +19971 neuter +19975 masculine +19978 neuter +neuter +neuter +neuter +19984 feminine +19986 masculine +masculine +19989 masculine +19991 feminine +neuter +19995 neuter +neuter +20000 feminine +feminine +masculine +20004 masculine +masculine +masculine +20009 masculine +20012 masculine +masculine +masculine +20018 masculine +masculine +20022 masculine +20024 feminine +feminine +20028 masculine +masculine +20032 feminine +feminine +20039 masculine +masculine +20042 masculine +20044 feminine +feminine +20048 masculine +masculine +20051 masculine +masculine +20054 masculine +masculine +masculine +20059 feminine +feminine +20063 masculine +masculine +20067 masculine +20069 neuter +neuter +masculine +masculine +masculine +masculine +20077 feminine +20079 feminine +20086 feminine +feminine +20091 masculine +masculine +masculine +20095 masculine +20097 neuter +masculine +20101 feminine +feminine +20104 masculine +masculine +masculine +20108 feminine +feminine +20111 feminine +feminine +20116 masculine +20118 feminine +neuter +20122 masculine +20124 feminine +feminine +masculine +20130 masculine +masculine +20136 neuter +20139 neuter +20142 feminine +feminine +20146 neuter +neuter +20150 neuter +20152 neuter +20155 neuter +neuter +20160 feminine +feminine +20163 masculine +20166 neuter +20169 neuter +feminine +20174 masculine +masculine +20179 neuter +20182 feminine +20185 neuter +20188 feminine +feminine +20192 feminine +feminine +20196 neuter +20198 masculine +20202 neuter +20205 feminine +feminine +feminine +feminine +20211 masculine +neuter +20214 neuter +20227 masculine +20229 neuter +20236 feminine +20238 masculine +masculine +20241 masculine +20243 masculine +20245 feminine +feminine +20249 masculine +20252 neuter +neuter +feminine +feminine +masculine +masculine +20259 masculine +masculine +20263 feminine +neuter +neuter +20268 masculine +20274 masculine +20284 masculine +20287 masculine +20290 feminine +feminine +feminine +20295 feminine +feminine +feminine +20299 masculine +masculine +masculine +masculine +20305 masculine +20307 masculine +20309 feminine +feminine +20313 masculine +masculine +20318 masculine +20320 masculine +masculine +20324 masculine +masculine +masculine +masculine +20329 masculine +20333 masculine +20335 neuter +neuter +masculine +masculine +masculine +20342 masculine +masculine +masculine +20346 feminine +20348 masculine +20352 feminine +20354 masculine +20356 masculine +20359 feminine +feminine +20362 masculine +20364 masculine +masculine +masculine +20369 masculine +20371 masculine +20373 feminine +feminine +masculine +masculine +20378 masculine +masculine +masculine +masculine +20383 feminine +feminine +masculine +masculine +20388 feminine +feminine +masculine +masculine +20393 feminine +20395 neuter +neuter +feminine +feminine +20400 masculine +masculine +20403 masculine +20407 masculine +20409 feminine +feminine +feminine +feminine +masculine +masculine +masculine +20417 masculine +masculine +20433 masculine +20437 masculine +masculine +20441 masculine +masculine +20446 feminine +feminine +20451 feminine +feminine +20457 neuter +neuter +20465 neuter +20470 masculine +20472 masculine +20474 neuter +20479 masculine +20481 neuter +20484 neuter +neuter +20493 masculine +20496 masculine +20498 masculine +20502 neuter +20506 masculine +20511 feminine +feminine +masculine +masculine +20516 masculine +20518 masculine +masculine +20521 feminine +feminine +20527 feminine +20529 feminine +20531 masculine +masculine +20539 masculine +feminine +feminine +feminine +20544 neuter +masculine +20547 masculine +20549 masculine +masculine +20552 masculine +masculine +20557 masculine +masculine +masculine +20561 neuter +neuter +20565 masculine +masculine +20571 feminine +feminine +masculine +masculine +20577 neuter +feminine +feminine +20582 masculine +neuter +masculine +20588 feminine +feminine +neuter +neuter +neuter +neuter +neuter +neuter +20597 feminine +feminine +20605 neuter +neuter +neuter +neuter +20611 masculine +masculine +20616 feminine +feminine +masculine +20620 neuter +neuter +masculine +masculine +20625 feminine +feminine +feminine +20629 masculine +masculine +masculine +20637 feminine +20640 masculine +20643 feminine +masculine +masculine +masculine +20648 neuter +20651 masculine +20653 feminine +feminine +feminine +feminine +feminine +20660 neuter +20663 masculine +masculine +masculine +20667 masculine +20671 neuter +neuter +20674 neuter +neuter +20678 masculine +20681 feminine +feminine +masculine +20685 neuter +neuter +20689 neuter +neuter +20694 neuter +neuter +20697 masculine +20700 feminine +feminine +20703 neuter +neuter +masculine +20708 masculine +20711 masculine +masculine +20719 masculine +20721 masculine +masculine +20725 feminine +feminine +20731 masculine +masculine +20735 feminine +feminine +20739 masculine +neuter +masculine +20747 feminine +20750 masculine +masculine +20755 masculine +20757 masculine +masculine +20762 masculine +masculine +20765 feminine +feminine +20768 masculine +20772 neuter +20774 feminine +feminine +20777 feminine +feminine +masculine +masculine +20782 masculine +masculine +20785 neuter +neuter +masculine +20789 masculine +20791 neuter +neuter +masculine +20795 neuter +neuter +masculine +feminine +feminine +20802 neuter +neuter +20806 feminine +20808 masculine +20810 masculine +20813 neuter +masculine +20816 feminine +20818 feminine +20823 masculine +feminine +feminine +20827 feminine +feminine +20831 masculine +20833 masculine +20837 neuter +feminine +20840 feminine +20842 neuter +neuter +20846 neuter +neuter +20849 masculine +20851 masculine +masculine +masculine +20855 masculine +masculine +masculine +20863 masculine +20865 masculine +feminine +feminine +20869 neuter +20873 masculine +masculine +masculine +masculine +masculine +masculine +20881 masculine +masculine +20888 masculine +neuter +neuter +neuter +neuter +20895 masculine +masculine +20899 masculine +neuter +neuter +20905 masculine +masculine +neuter +20910 masculine +20914 masculine +neuter +20918 neuter +20921 feminine +feminine +20927 neuter +neuter +feminine +masculine +feminine +feminine +20935 masculine +masculine +20940 masculine +masculine +20944 masculine +20948 masculine +20950 neuter +neuter +neuter +neuter +neuter +20957 masculine +masculine +20961 feminine +feminine +20964 masculine +masculine +20967 feminine +feminine +20970 masculine +20974 feminine +feminine +20977 masculine +masculine +masculine +20984 feminine +feminine +20988 masculine +masculine +20993 neuter +20995 neuter +neuter +21000 masculine +masculine +21004 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +21013 masculine +21018 masculine +masculine +masculine +21023 masculine +masculine +21027 masculine +masculine +21032 masculine +21035 neuter +neuter +masculine +21039 masculine +masculine +21042 neuter +neuter +21045 masculine +masculine +masculine +21050 masculine +21055 masculine +21058 masculine +21061 masculine +masculine +21065 masculine +masculine +21069 masculine +neuter +masculine +masculine +21084 feminine +feminine +neuter +21088 masculine +masculine +masculine +21092 masculine +21095 masculine +masculine +masculine +21099 neuter +neuter +21103 neuter +21106 masculine +masculine +21109 masculine +21113 feminine +feminine +21117 masculine +masculine +masculine +neuter +masculine +21123 masculine +masculine +21127 masculine +masculine +masculine +21132 masculine +neuter +masculine +21136 neuter +neuter +21142 masculine +21144 feminine +feminine +feminine +21154 masculine +21157 masculine +masculine +masculine +21162 masculine +21164 feminine +feminine +21167 feminine +neuter +21170 neuter +21172 neuter +feminine +21175 masculine +masculine +21178 feminine +neuter +21181 feminine +neuter +21184 neuter +feminine +21189 neuter +neuter +feminine +feminine +neuter +21195 masculine +masculine +feminine +21199 masculine +masculine +21203 neuter +neuter +masculine +21212 neuter +neuter +masculine +21217 masculine +21219 feminine +feminine +neuter +neuter +feminine +21226 neuter +neuter +21231 feminine +feminine +21234 masculine +masculine +masculine +masculine +21239 masculine +feminine +21242 masculine +feminine +feminine +masculine +21247 masculine +masculine +21250 masculine +21253 neuter +neuter +21257 masculine +masculine +masculine +masculine +21262 masculine +masculine +masculine +21268 masculine +21274 feminine +neuter +feminine +21278 feminine +feminine +feminine +21282 feminine +feminine +neuter +21286 feminine +21290 masculine +21293 masculine +feminine +feminine +feminine +21298 masculine +21300 feminine +feminine +feminine +feminine +21309 feminine +21312 feminine +21314 feminine +feminine +21318 masculine +masculine +21322 masculine +masculine +masculine +21326 feminine +feminine +21330 neuter +21333 masculine +masculine +21336 masculine +masculine +masculine +masculine +masculine +masculine +21343 masculine +masculine +21347 neuter +21352 masculine +21354 masculine +21358 masculine +masculine +21361 masculine +21363 masculine +masculine +masculine +masculine +21370 masculine +masculine +masculine +masculine +21376 masculine +21378 masculine +21380 masculine +neuter +21383 masculine +21385 masculine +neuter +21390 neuter +neuter +21398 masculine +21400 masculine +masculine +masculine +21404 masculine +masculine +neuter +neuter +21409 feminine +feminine +21412 masculine +21414 masculine +21419 neuter +neuter +21422 masculine +feminine +feminine +neuter +neuter +21428 feminine +feminine +21431 neuter +21433 neuter +neuter +neuter +21440 masculine +21442 neuter +neuter +21448 neuter +21452 masculine +feminine +feminine +21457 masculine +neuter +21460 masculine +21462 neuter +21466 feminine +21474 feminine +feminine +masculine +21479 masculine +masculine +masculine +masculine +21484 neuter +neuter +21489 feminine +feminine +21492 masculine +masculine +masculine +21496 masculine +21498 masculine +neuter +21501 feminine +feminine +feminine +feminine +feminine +masculine +21508 feminine +feminine +feminine +21512 feminine +feminine +masculine +feminine +21517 masculine +21519 masculine +masculine +masculine +masculine +feminine +feminine +21526 masculine +masculine +21529 masculine +21531 masculine +21533 masculine +21537 feminine +feminine +masculine +21546 masculine +21549 masculine +masculine +masculine +21555 masculine +masculine +21560 feminine +feminine +masculine +21565 masculine +masculine +masculine +21570 feminine +feminine +masculine +21578 feminine +feminine +21582 masculine +masculine +masculine +feminine +feminine +21591 feminine +feminine +masculine +21596 feminine +feminine +masculine +masculine +21602 masculine +21606 masculine +21612 masculine +feminine +neuter +neuter +neuter +neuter +21620 masculine +21622 neuter +21625 feminine +21628 feminine +neuter +21631 masculine +21633 feminine +21636 feminine +feminine +masculine +21640 masculine +neuter +21646 masculine +21649 masculine +21654 feminine +21663 masculine +masculine +21671 masculine +21674 masculine +masculine +masculine +21678 masculine +masculine +21682 neuter +masculine +21685 masculine +21690 neuter +neuter +21695 neuter +masculine +masculine +21702 masculine +masculine +masculine +21706 neuter +21708 neuter +neuter +masculine +21714 masculine +masculine +masculine +21719 masculine +21722 neuter +21724 feminine +feminine +21727 masculine +21729 masculine +21732 masculine +21735 masculine +21738 masculine +21740 masculine +masculine +masculine +21744 masculine +masculine +masculine +21748 masculine +21751 masculine +masculine +21755 masculine +masculine +masculine +masculine +21760 masculine +masculine +21764 masculine +21766 feminine +21768 feminine +feminine +feminine +masculine +masculine +masculine +masculine +21776 feminine +21780 masculine +masculine +masculine +masculine +21789 feminine +feminine +masculine +masculine +21795 feminine +feminine +21798 masculine +21801 masculine +21807 masculine +masculine +21810 masculine +masculine +masculine +masculine +masculine +masculine +21817 masculine +21820 masculine +21822 masculine +masculine +neuter +21828 masculine +21831 feminine +feminine +feminine +21835 masculine +neuter +neuter +masculine +neuter +21841 masculine +masculine +masculine +21845 masculine +masculine +21848 masculine +masculine +feminine +feminine +21853 feminine +feminine +feminine +feminine +feminine +feminine +21860 feminine +21862 masculine +masculine +21865 masculine +masculine +21868 masculine +masculine +21871 neuter +neuter +21876 neuter +21883 feminine +21891 neuter +feminine +feminine +21896 feminine +21898 feminine +feminine +feminine +neuter +21904 feminine +21906 feminine +feminine +masculine +masculine +masculine +21912 feminine +masculine +21915 feminine +21917 masculine +masculine +21920 feminine +21927 masculine +feminine +feminine +masculine +masculine +masculine +21934 masculine +masculine +masculine +masculine +21939 masculine +masculine +21942 masculine +masculine +21947 feminine +21949 masculine +masculine +masculine +masculine +masculine +21956 feminine +feminine +masculine +21960 masculine +21962 masculine +21964 feminine +feminine +21968 feminine +feminine +masculine +21972 masculine +21975 feminine +neuter +neuter +21979 neuter +neuter +21982 feminine +feminine +feminine +feminine +21987 masculine +masculine +masculine +masculine +21994 neuter +neuter +masculine +21999 neuter +22001 neuter +22004 masculine +masculine +22007 masculine +masculine +22011 masculine +neuter +neuter +22016 neuter +22020 masculine +22023 masculine +22025 feminine +22027 masculine +masculine +22031 neuter +22034 masculine +masculine +22037 masculine +masculine +masculine +22047 neuter +neuter +22050 masculine +masculine +22053 feminine +22056 masculine +masculine +22060 masculine +22064 feminine +feminine +feminine +22071 masculine +22073 masculine +22075 masculine +masculine +22080 masculine +22084 neuter +22086 neuter +masculine +22091 masculine +neuter +22095 feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +22105 masculine +22107 masculine +masculine +22111 feminine +feminine +22114 masculine +22116 masculine +22118 masculine +masculine +masculine +22122 feminine +22124 masculine +neuter +22128 masculine +masculine +22131 masculine +22133 masculine +22138 masculine +masculine +22141 neuter +neuter +masculine +22146 masculine +22149 masculine +22151 masculine +masculine +masculine +22158 masculine +22163 masculine +22166 masculine +22168 masculine +neuter +neuter +22172 masculine +masculine +masculine +22177 feminine +feminine +22185 masculine +masculine +22188 masculine +22190 masculine +22192 masculine +masculine +22195 masculine +masculine +22200 masculine +masculine +22204 masculine +masculine +22208 masculine +22210 masculine +22212 masculine +22214 masculine +22217 masculine +22222 neuter +22224 masculine +neuter +22228 masculine +masculine +22232 masculine +masculine +masculine +masculine +masculine +masculine +22239 masculine +22241 masculine +masculine +masculine +22246 neuter +neuter +22251 neuter +22254 feminine +22256 masculine +22258 masculine +masculine +22261 masculine +masculine +22265 neuter +neuter +22269 feminine +feminine +22272 neuter +neuter +22275 neuter +feminine +feminine +22279 masculine +masculine +22282 feminine +feminine +22285 masculine +masculine +masculine +22289 neuter +22293 masculine +masculine +masculine +masculine +22298 feminine +feminine +feminine +feminine +22304 masculine +masculine +22307 feminine +feminine +22312 masculine +22314 masculine +masculine +masculine +22318 feminine +feminine +masculine +22323 neuter +22328 masculine +masculine +22334 masculine +masculine +22338 masculine +22341 masculine +22350 masculine +22352 neuter +neuter +22356 masculine +masculine +22361 neuter +22363 masculine +22369 masculine +masculine +22373 feminine +masculine +feminine +feminine +22378 masculine +22380 feminine +feminine +22384 feminine +22388 masculine +masculine +22391 neuter +neuter +masculine +masculine +masculine +22397 feminine +feminine +feminine +feminine +22404 masculine +masculine +masculine +22408 masculine +22419 feminine +22422 feminine +22425 masculine +22427 feminine +feminine +22430 masculine +masculine +22434 masculine +22437 neuter +neuter +neuter +neuter +masculine +22445 masculine +22447 masculine +22452 masculine +masculine +masculine +22456 masculine +masculine +masculine +masculine +22461 neuter +22463 masculine +masculine +masculine +masculine +masculine +22469 feminine +feminine +neuter +22473 feminine +22475 masculine +masculine +22478 masculine +masculine +22481 masculine +masculine +masculine +22486 feminine +22488 feminine +feminine +22492 masculine +feminine +feminine +masculine +masculine +22499 feminine +22506 neuter +neuter +22509 neuter +22512 masculine +neuter +22515 masculine +22517 neuter +22520 masculine +masculine +masculine +22524 masculine +masculine +22527 neuter +22530 masculine +masculine +22534 feminine +feminine +masculine +masculine +22539 feminine +feminine +22542 masculine +masculine +22545 masculine +22547 masculine +22550 masculine +22553 masculine +masculine +22558 masculine +masculine +masculine +neuter +neuter +22566 feminine +feminine +masculine +22577 masculine +feminine +neuter +masculine +masculine +feminine +feminine +masculine +masculine +22587 feminine +feminine +masculine +masculine +22593 masculine +22596 feminine +feminine +masculine +masculine +22601 feminine +feminine +22606 masculine +22609 masculine +masculine +22613 feminine +feminine +22617 masculine +masculine +masculine +22621 feminine +masculine +22629 masculine +masculine +masculine +22633 feminine +feminine +masculine +neuter +22638 neuter +22640 neuter +22646 masculine +neuter +22649 masculine +masculine +22652 feminine +feminine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +22662 feminine +22665 neuter +neuter +neuter +22670 masculine +22672 masculine +masculine +22675 masculine +22678 masculine +22681 neuter +22684 masculine +masculine +neuter +22688 masculine +neuter +22692 masculine +22694 neuter +22696 masculine +masculine +neuter +22700 neuter +neuter +masculine +masculine +22708 masculine +22710 masculine +masculine +22713 masculine +masculine +masculine +masculine +feminine +feminine +22721 masculine +22725 masculine +22730 neuter +neuter +22733 neuter +22735 masculine +masculine +22739 masculine +22745 masculine +feminine +feminine +22750 feminine +feminine +22754 masculine +masculine +22757 masculine +neuter +neuter +neuter +22764 neuter +22766 masculine +masculine +neuter +neuter +22771 masculine +masculine +22776 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +22785 feminine +feminine +masculine +feminine +feminine +feminine +masculine +feminine +masculine +masculine +feminine +feminine +feminine +neuter +neuter +neuter +neuter +22806 masculine +masculine +22810 masculine +22813 neuter +neuter +feminine +22817 masculine +22819 feminine +masculine +22828 masculine +feminine +22831 masculine +feminine +feminine +neuter +neuter +feminine +22838 neuter +neuter +feminine +22843 masculine +masculine +masculine +22847 feminine +feminine +22850 feminine +feminine +neuter +neuter +22856 masculine +22858 neuter +neuter +22862 feminine +feminine +feminine +22867 feminine +22869 neuter +22871 neuter +neuter +22876 neuter +22878 masculine +masculine +neuter +neuter +22883 neuter +neuter +22887 feminine +22891 masculine +22893 masculine +22895 neuter +neuter +22898 feminine +feminine +22902 neuter +neuter +neuter +neuter +22908 feminine +22910 masculine +masculine +masculine +22916 feminine +feminine +22919 neuter +neuter +22922 feminine +22924 masculine +masculine +feminine +22928 neuter +neuter +neuter +22932 feminine +feminine +22935 neuter +neuter +neuter +22940 masculine +22942 neuter +neuter +feminine +22947 feminine +22949 feminine +feminine +feminine +feminine +22954 neuter +neuter +neuter +feminine +22960 masculine +masculine +22963 masculine +22966 masculine +22969 masculine +feminine +feminine +22973 masculine +masculine +22976 masculine +masculine +22979 feminine +22981 masculine +masculine +masculine +22985 neuter +neuter +masculine +22989 masculine +22991 feminine +feminine +masculine +22995 masculine +22997 masculine +masculine +23002 masculine +23004 neuter +23009 masculine +feminine +feminine +23015 masculine +masculine +feminine +feminine +masculine +23025 masculine +23027 masculine +23030 neuter +masculine +23033 masculine +23035 neuter +23040 masculine +23042 neuter +23046 masculine +masculine +23050 masculine +23053 feminine +feminine +feminine +23057 masculine +masculine +masculine +23062 masculine +neuter +23065 masculine +masculine +masculine +23069 masculine +23072 masculine +masculine +23076 feminine +feminine +23083 neuter +23088 masculine +masculine +23091 masculine +masculine +23095 feminine +feminine +23098 masculine +masculine +23105 masculine +masculine +masculine +masculine +23112 masculine +masculine +23116 masculine +23118 feminine +23121 masculine +masculine +masculine +23126 masculine +23131 masculine +masculine +23135 feminine +feminine +23138 masculine +masculine +23141 masculine +masculine +23146 masculine +masculine +masculine +23153 masculine +masculine +23157 neuter +neuter +23160 masculine +neuter +23164 neuter +23172 neuter +neuter +23175 feminine +23179 masculine +23182 masculine +23184 masculine +masculine +23187 neuter +neuter +23190 masculine +masculine +masculine +23195 neuter +neuter +feminine +23200 masculine +masculine +23205 masculine +masculine +23208 masculine +neuter +23211 masculine +masculine +masculine +masculine +23216 masculine +neuter +neuter +masculine +23221 neuter +feminine +feminine +feminine +23226 neuter +23232 feminine +feminine +feminine +neuter +23237 masculine +masculine +23240 masculine +23243 neuter +23248 masculine +23252 masculine +masculine +23257 masculine +23259 neuter +neuter +23263 masculine +masculine +23268 feminine +feminine +masculine +masculine +23273 feminine +feminine +masculine +23279 masculine +23281 masculine +23285 masculine +23287 masculine +neuter +23291 masculine +23298 feminine +23300 feminine +feminine +23303 masculine +masculine +23308 neuter +masculine +23316 masculine +23318 masculine +23321 masculine +masculine +masculine +masculine +neuter +masculine +23329 masculine +23332 masculine +23335 masculine +masculine +neuter +feminine +neuter +neuter +23347 masculine +23353 feminine +23356 masculine +masculine +23360 masculine +23362 masculine +23365 masculine +feminine +feminine +masculine +masculine +23371 masculine +23373 feminine +feminine +23376 masculine +23378 neuter +neuter +masculine +masculine +feminine +feminine +masculine +23386 masculine +23388 neuter +23391 masculine +23394 masculine +masculine +23398 neuter +masculine +23404 feminine +feminine +23407 masculine +masculine +masculine +23417 neuter +23420 masculine +23422 masculine +masculine +masculine +23427 feminine +feminine +23432 masculine +masculine +23435 masculine +masculine +masculine +23439 feminine +feminine +feminine +feminine +masculine +23446 feminine +feminine +23449 masculine +masculine +masculine +masculine +masculine +masculine +23458 masculine +masculine +23461 masculine +23463 masculine +masculine +23466 masculine +masculine +masculine +23470 masculine +masculine +23473 masculine +23475 masculine +masculine +masculine +23479 masculine +23481 masculine +23484 masculine +23488 masculine +masculine +masculine +23492 masculine +23495 masculine +masculine +23499 masculine +23501 masculine +23504 masculine +23508 masculine +23511 masculine +masculine +masculine +masculine +neuter +23520 masculine +masculine +23523 masculine +masculine +23526 masculine +masculine +23532 feminine +feminine +23536 feminine +masculine +masculine +23541 masculine +masculine +masculine +masculine +23547 masculine +23549 masculine +masculine +23552 masculine +masculine +masculine +masculine +23557 masculine +23563 masculine +23567 neuter +masculine +masculine +23571 neuter +masculine +masculine +23575 masculine +masculine +masculine +23579 masculine +masculine +masculine +23583 masculine +23585 masculine +23591 masculine +23594 masculine +masculine +masculine +23602 masculine +23604 feminine +feminine +masculine +23609 feminine +23612 masculine +23614 feminine +feminine +masculine +23620 neuter +neuter +23623 feminine +23625 neuter +23627 masculine +23629 masculine +masculine +masculine +23634 feminine +feminine +masculine +23638 neuter +23640 masculine +neuter +feminine +feminine +masculine +23647 masculine +23651 masculine +masculine +masculine +23655 feminine +feminine +feminine +feminine +feminine +23661 feminine +23663 masculine +masculine +masculine +masculine +23668 masculine +23672 feminine +feminine +masculine +masculine +masculine +23678 masculine +masculine +masculine +masculine +23684 masculine +23690 masculine +masculine +23693 masculine +masculine +23698 masculine +23702 feminine +feminine +masculine +masculine +feminine +23708 feminine +23711 feminine +23714 masculine +masculine +masculine +masculine +23719 masculine +masculine +23722 masculine +23725 masculine +23727 neuter +neuter +23730 feminine +masculine +23735 masculine +23737 neuter +neuter +masculine +23741 neuter +neuter +23744 neuter +masculine +23747 feminine +feminine +23755 masculine +masculine +23758 masculine +23761 masculine +masculine +masculine +23765 masculine +masculine +masculine +23769 masculine +masculine +masculine +neuter +23779 feminine +feminine +23782 feminine +23784 masculine +feminine +23787 masculine +feminine +23792 neuter +23795 masculine +23799 feminine +feminine +masculine +23804 feminine +23806 feminine +feminine +masculine +23810 masculine +masculine +23813 masculine +masculine +23816 masculine +23819 masculine +23821 masculine +23824 masculine +masculine +masculine +23828 masculine +23830 masculine +masculine +23833 neuter +neuter +23836 masculine +23838 masculine +neuter +23845 masculine +masculine +masculine +masculine +23850 masculine +23853 masculine +masculine +23857 masculine +masculine +neuter +23861 neuter +23863 masculine +23867 masculine +masculine +23871 masculine +masculine +23875 masculine +23877 neuter +23879 masculine +23881 masculine +23883 masculine +masculine +neuter +23887 neuter +23892 masculine +masculine +masculine +masculine +23897 neuter +23906 masculine +23910 masculine +neuter +23916 masculine +23918 masculine +23920 masculine +masculine +23923 masculine +masculine +23926 masculine +23928 masculine +masculine +23931 masculine +23933 masculine +masculine +masculine +masculine +masculine +masculine +23941 masculine +23943 masculine +23946 masculine +neuter +23950 masculine +23953 masculine +masculine +23956 masculine +masculine +masculine +23960 masculine +masculine +23965 masculine +neuter +neuter +23971 masculine +23974 masculine +23979 masculine +masculine +23985 masculine +masculine +23989 neuter +23995 masculine +masculine +masculine +24000 feminine +feminine +24012 masculine +24017 masculine +24019 masculine +24021 masculine +masculine +neuter +neuter +masculine +24027 masculine +24029 masculine +24031 feminine +feminine +24034 masculine +24037 masculine +masculine +masculine +masculine +masculine +24044 neuter +24046 masculine +24048 masculine +24056 neuter +masculine +24061 neuter +24064 masculine +24067 neuter +24071 masculine +24075 masculine +masculine +24078 masculine +neuter +24082 neuter +neuter +masculine +masculine +masculine +masculine +masculine +masculine +neuter +neuter +24096 feminine +feminine +24099 masculine +masculine +masculine +24104 masculine +24106 neuter +neuter +neuter +neuter +masculine +neuter +neuter +neuter +24115 neuter +neuter +24122 masculine +24127 masculine +24129 masculine +24131 neuter +masculine +24137 masculine +24139 masculine +masculine +24145 masculine +masculine +masculine +feminine +feminine +masculine +24152 masculine +24156 masculine +masculine +24159 masculine +masculine +masculine +masculine +24164 feminine +24166 masculine +24172 neuter +24175 masculine +neuter +neuter +neuter +24180 neuter +24186 feminine +24188 masculine +24191 feminine +feminine +24197 masculine +24201 masculine +masculine +masculine +24206 masculine +24208 masculine +masculine +masculine +masculine +24214 feminine +masculine +24218 masculine +24220 masculine +24222 feminine +feminine +24226 masculine +24228 neuter +neuter +24232 masculine +24237 feminine +24240 feminine +feminine +masculine +24244 masculine +neuter +24247 feminine +feminine +24251 masculine +24255 masculine +24258 feminine +feminine +masculine +masculine +24263 masculine +24265 masculine +24269 masculine +24271 masculine +24273 masculine +24276 masculine +masculine +24279 masculine +masculine +24282 masculine +neuter +24285 neuter +24287 neuter +masculine +24290 masculine +neuter +24293 masculine +24295 masculine +neuter +neuter +neuter +neuter +24302 neuter +neuter +24309 masculine +24316 masculine +masculine +24320 masculine +masculine +masculine +masculine +24325 masculine +24327 neuter +neuter +24330 masculine +neuter +masculine +24338 masculine +24344 masculine +masculine +24349 masculine +24351 masculine +24353 masculine +24355 feminine +24357 neuter +neuter +24362 neuter +24366 masculine +24376 masculine +24379 neuter +neuter +24382 neuter +24384 masculine +24393 masculine +masculine +masculine +24398 masculine +24400 masculine +masculine +masculine +masculine +masculine +masculine +neuter +24408 masculine +24412 masculine +masculine +24415 masculine +masculine +masculine +24421 feminine +feminine +24427 feminine +feminine +24431 feminine +neuter +24435 masculine +24438 feminine +feminine +24441 feminine +24443 feminine +masculine +24447 feminine +feminine +24450 neuter +neuter +neuter +neuter +24456 masculine +masculine +24462 masculine +neuter +24468 feminine +feminine +masculine +24472 masculine +24474 masculine +masculine +24478 feminine +feminine +24482 masculine +masculine +24488 masculine +neuter +24492 masculine +24495 feminine +feminine +masculine +masculine +24501 masculine +masculine +24505 feminine +feminine +24508 masculine +masculine +masculine +24514 neuter +neuter +24519 masculine +neuter +24522 neuter +neuter +neuter +24527 neuter +neuter +neuter +24532 neuter +neuter +24537 masculine +neuter +24542 masculine +24545 masculine +24548 neuter +neuter +feminine +feminine +24554 masculine +masculine +24559 masculine +24561 masculine +24567 masculine +24569 masculine +masculine +24572 masculine +24575 masculine +feminine +24578 masculine +masculine +24581 masculine +masculine +24584 masculine +neuter +24588 masculine +24590 masculine +24593 masculine +neuter +neuter +24600 masculine +masculine +24603 masculine +24605 feminine +feminine +24610 feminine +feminine +feminine +24615 feminine +feminine +neuter +24619 neuter +24621 masculine +24623 neuter +24625 masculine +masculine +masculine +masculine +24630 feminine +feminine +24634 masculine +24637 feminine +feminine +24644 feminine +feminine +24647 neuter +masculine +masculine +24651 masculine +24656 feminine +feminine +24659 masculine +masculine +24662 neuter +24664 masculine +24667 masculine +24669 masculine +24671 feminine +feminine +masculine +24676 feminine +24679 feminine +24682 feminine +feminine +masculine +masculine +feminine +24688 masculine +24692 masculine +neuter +24695 masculine +24698 masculine +masculine +24701 masculine +24703 masculine +masculine +masculine +24709 masculine +24711 neuter +neuter +24718 neuter +24720 neuter +neuter +24723 feminine +feminine +masculine +masculine +24731 masculine +24734 feminine +feminine +masculine +masculine +24739 neuter +24744 feminine +24746 masculine +neuter +24749 masculine +feminine +feminine +24753 neuter +24755 masculine +masculine +24758 feminine +masculine +masculine +24762 masculine +masculine +24765 masculine +masculine +masculine +neuter +24771 feminine +feminine +24775 masculine +masculine +24778 masculine +neuter +24782 masculine +masculine +masculine +24787 masculine +masculine +masculine +feminine +feminine +24804 masculine +masculine +24808 feminine +feminine +24811 masculine +24813 masculine +masculine +neuter +neuter +24819 feminine +24822 masculine +masculine +masculine +masculine +24827 masculine +24830 masculine +neuter +24835 neuter +24840 masculine +masculine +24844 masculine +24846 masculine +24852 masculine +masculine +24855 masculine +masculine +24858 masculine +24861 masculine +neuter +neuter +24865 masculine +masculine +masculine +24869 masculine +masculine +masculine +24874 masculine +neuter +neuter +masculine +24879 feminine +feminine +masculine +masculine +24885 masculine +masculine +24889 masculine +masculine +masculine +24893 masculine +masculine +24896 masculine +24898 masculine +neuter +24901 neuter +24904 feminine +feminine +masculine +masculine +24909 neuter +24911 feminine +24913 feminine +feminine +feminine +feminine +24919 masculine +24921 feminine +feminine +masculine +masculine +24927 masculine +24930 masculine +24932 masculine +24934 masculine +24937 masculine +masculine +masculine +masculine +24943 masculine +neuter +24948 masculine +24950 neuter +neuter +24953 masculine +masculine +24956 masculine +masculine +24959 masculine +24963 neuter +24968 masculine +masculine +24973 masculine +24975 masculine +24977 feminine +24979 masculine +24981 feminine +24983 feminine +24985 masculine +24987 neuter +24989 masculine +24994 neuter +neuter +25001 masculine +masculine +masculine +neuter +feminine +25007 masculine +25009 feminine +25011 feminine +25013 neuter +25015 masculine +25017 masculine +25020 masculine +masculine +masculine +masculine +feminine +feminine +25027 masculine +masculine +25030 masculine +25032 masculine +masculine +masculine +25038 feminine +feminine +masculine +25042 neuter +25045 masculine +masculine +masculine +masculine +25052 masculine +masculine +25056 masculine +25058 masculine +25061 masculine +25063 neuter +neuter +masculine +25071 neuter +25073 masculine +masculine +masculine +masculine +25078 masculine +masculine +25081 masculine +masculine +25085 masculine +masculine +25089 masculine +neuter +neuter +25094 masculine +25097 masculine +25100 masculine +25105 feminine +feminine +25110 masculine +masculine +25113 masculine +masculine +masculine +masculine +masculine +masculine +masculine +25123 neuter +25129 masculine +25131 masculine +25133 neuter +25138 masculine +25140 masculine +25144 masculine +25147 neuter +25149 masculine +25151 neuter +25154 feminine +feminine +25158 masculine +masculine +25161 masculine +25164 neuter +25168 neuter +neuter +neuter +25174 neuter +neuter +neuter +25181 masculine +25183 masculine +25186 masculine +masculine +25189 masculine +neuter +neuter +neuter +25197 neuter +neuter +neuter +25204 neuter +25207 neuter +25211 neuter +25214 neuter +25217 masculine +25220 masculine +masculine +25226 masculine +25228 masculine +25230 masculine +masculine +masculine +masculine +25235 masculine +25238 masculine +masculine +25241 neuter +neuter +25244 masculine +25246 masculine +masculine +masculine +25250 masculine +25259 masculine +25261 masculine +25267 masculine +25270 masculine +25275 masculine +25277 masculine +masculine +25281 masculine +masculine +masculine +masculine +25292 feminine +feminine +masculine +neuter +25297 masculine +25301 feminine +25303 masculine +masculine +25306 feminine +25308 masculine +masculine +masculine +25312 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +25322 feminine +feminine +25325 masculine +25327 masculine +masculine +masculine +25335 masculine +masculine +masculine +25342 masculine +masculine +25347 masculine +neuter +25351 masculine +masculine +25356 masculine +masculine +masculine +25361 masculine +25364 masculine +masculine +masculine +masculine +25373 masculine +masculine +neuter +neuter +masculine +masculine +25381 masculine +masculine +25384 masculine +masculine +masculine +masculine +25389 neuter +25394 masculine +masculine +25397 masculine +masculine +25402 masculine +masculine +25405 masculine +25407 feminine +feminine +25413 masculine +25417 masculine +25419 feminine +feminine +25425 neuter +25427 feminine +25429 feminine +25431 neuter +neuter +feminine +feminine +25437 masculine +masculine +masculine +25442 masculine +25445 feminine +feminine +feminine +25451 masculine +masculine +25454 feminine +25456 masculine +masculine +25459 masculine +masculine +masculine +25465 masculine +25470 masculine +25473 neuter +25475 neuter +25477 masculine +masculine +masculine +feminine +25483 masculine +masculine +25492 masculine +masculine +25495 feminine +25498 neuter +neuter +25502 masculine +25504 masculine +masculine +25507 masculine +25509 masculine +neuter +25512 masculine +masculine +masculine +25516 masculine +25518 masculine +25521 masculine +masculine +25525 masculine +25528 masculine +masculine +25531 masculine +masculine +25535 masculine +neuter +neuter +masculine +25542 masculine +25544 masculine +neuter +neuter +masculine +25550 feminine +feminine +25553 masculine +feminine +masculine +25557 masculine +masculine +25560 masculine +masculine +25563 masculine +masculine +25567 masculine +masculine +masculine +25571 neuter +masculine +feminine +feminine +feminine +feminine +masculine +masculine +25580 masculine +25583 neuter +neuter +25588 neuter +25590 neuter +neuter +25593 feminine +25595 feminine +feminine +feminine +masculine +neuter +25602 feminine +25604 masculine +25607 feminine +25609 masculine +masculine +25612 feminine +25615 masculine +25618 feminine +feminine +neuter +25624 neuter +25627 feminine +25629 masculine +25631 feminine +neuter +25636 neuter +25638 masculine +masculine +25642 neuter +25644 masculine +25646 feminine +25649 masculine +masculine +25653 masculine +masculine +25658 masculine +masculine +masculine +25664 neuter +25666 masculine +25668 neuter +neuter +25672 masculine +masculine +25675 masculine +masculine +25678 neuter +neuter +25681 feminine +feminine +masculine +masculine +25686 feminine +feminine +masculine +masculine +feminine +feminine +25697 masculine +25699 neuter +25701 neuter +neuter +25707 masculine +25711 masculine +masculine +25714 masculine +feminine +25717 neuter +neuter +neuter +25723 masculine +neuter +masculine +25728 masculine +masculine +25731 masculine +masculine +25736 masculine +25740 masculine +25742 masculine +masculine +masculine +25747 feminine +feminine +masculine +25756 feminine +feminine +25759 masculine +25762 feminine +feminine +feminine +25766 feminine +25768 masculine +masculine +masculine +25772 masculine +masculine +25775 feminine +feminine +feminine +25781 masculine +masculine +masculine +25785 masculine +25787 feminine +masculine +25794 masculine +25796 neuter +neuter +neuter +25803 feminine +feminine +25809 feminine +feminine +masculine +25815 neuter +25819 masculine +25821 neuter +25824 neuter +neuter +25838 masculine +25841 neuter +25844 masculine +25847 masculine +masculine +25850 masculine +25852 masculine +masculine +25856 neuter +neuter +25863 neuter +25866 neuter +neuter +masculine +masculine +25872 masculine +masculine +masculine +25876 masculine +masculine +25879 masculine +masculine +25883 masculine +25885 feminine +feminine +neuter +25890 masculine +25893 feminine +feminine +feminine +25897 neuter +25900 masculine +masculine +25903 masculine +25906 masculine +masculine +25915 feminine +feminine +neuter +25919 neuter +neuter +neuter +masculine +25924 masculine +25928 masculine +25934 masculine +masculine +25939 masculine +25943 neuter +25946 masculine +25950 masculine +25952 masculine +masculine +25955 masculine +25957 masculine +masculine +25961 masculine +25964 masculine +masculine +masculine +25971 masculine +masculine +25974 masculine +25980 feminine +feminine +neuter +25986 masculine +25988 feminine +25990 masculine +masculine +25995 masculine +25998 neuter +26001 masculine +26004 masculine +masculine +26011 masculine +masculine +masculine +masculine +masculine +26018 masculine +masculine +26022 masculine +masculine +masculine +masculine +26027 masculine +masculine +26032 masculine +26037 masculine +masculine +masculine +masculine +26045 masculine +26047 masculine +26050 masculine +masculine +26053 masculine +masculine +26056 masculine +masculine +26060 masculine +masculine +masculine +26064 masculine +masculine +26067 masculine +masculine +26071 masculine +masculine +26075 masculine +masculine +masculine +26079 masculine +26082 masculine +26084 masculine +masculine +26088 masculine +26092 feminine +feminine +26095 masculine +26097 masculine +26100 masculine +26102 masculine +masculine +neuter +26106 masculine +masculine +masculine +masculine +26113 masculine +masculine +26117 masculine +masculine +masculine +26121 feminine +feminine +feminine +26125 masculine +masculine +26128 masculine +masculine +masculine +26133 feminine +feminine +26136 masculine +26138 feminine +26141 feminine +26143 masculine +26147 masculine +26151 masculine +masculine +26157 masculine +feminine +feminine +26162 masculine +masculine +26168 masculine +masculine +masculine +masculine +26173 masculine +masculine +26176 masculine +26178 masculine +26180 masculine +26182 masculine +masculine +26186 masculine +26193 masculine +26198 neuter +masculine +26202 feminine +feminine +feminine +masculine +masculine +26210 masculine +masculine +26219 masculine +masculine +masculine +feminine +feminine +26225 masculine +neuter +26231 neuter +26235 masculine +26239 masculine +masculine +feminine +feminine +feminine +26245 feminine +feminine +26248 masculine +26250 masculine +masculine +26253 masculine +masculine +26256 masculine +neuter +masculine +26260 masculine +26262 neuter +masculine +masculine +masculine +masculine +26270 masculine +26274 masculine +masculine +masculine +26278 feminine +26283 masculine +masculine +masculine +masculine +26291 masculine +masculine +26296 feminine +26300 neuter +26303 masculine +masculine +masculine +feminine +feminine +26310 neuter +masculine +masculine +masculine +26315 masculine +26318 masculine +masculine +26321 feminine +26323 masculine +26326 neuter +26328 masculine +masculine +26331 feminine +26335 masculine +neuter +26338 masculine +masculine +26342 masculine +26346 neuter +neuter +neuter +26350 feminine +feminine +26354 feminine +feminine +26358 masculine +masculine +feminine +26363 masculine +26366 feminine +feminine +26369 masculine +masculine +masculine +26374 neuter +26377 masculine +feminine +feminine +26381 feminine +feminine +masculine +masculine +26388 masculine +26397 masculine +26399 masculine +masculine +26403 masculine +masculine +26410 feminine +feminine +masculine +26414 masculine +masculine +26418 masculine +masculine +masculine +masculine +26423 masculine +masculine +masculine +26427 masculine +masculine +26430 masculine +masculine +26434 masculine +masculine +26437 masculine +neuter +26441 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +26452 masculine +26454 masculine +feminine +26457 feminine +feminine +neuter +26461 masculine +masculine +26464 feminine +26467 masculine +masculine +masculine +masculine +26472 masculine +masculine +26477 masculine +masculine +masculine +26482 feminine +feminine +feminine +26488 feminine +feminine +feminine +26494 feminine +feminine +feminine +26500 feminine +feminine +feminine +26504 feminine +feminine +26507 masculine +26511 masculine +feminine +feminine +feminine +feminine +26520 masculine +masculine +masculine +26524 masculine +26526 feminine +26529 masculine +26534 masculine +26536 masculine +26538 neuter +26540 masculine +26542 feminine +feminine +feminine +26547 feminine +feminine +feminine +26552 feminine +feminine +feminine +26556 neuter +26558 masculine +26561 masculine +neuter +26564 neuter +neuter +neuter +26568 feminine +26570 masculine +masculine +masculine +masculine +26578 masculine +26580 feminine +26583 feminine +feminine +masculine +masculine +26588 masculine +26591 masculine +26594 masculine +masculine +masculine +26598 masculine +26600 neuter +neuter +26604 masculine +masculine +26607 masculine +masculine +masculine +masculine +26612 masculine +masculine +26616 neuter +neuter +neuter +neuter +26621 masculine +masculine +masculine +26627 neuter +26632 masculine +masculine +26636 masculine +masculine +26639 masculine +masculine +26642 masculine +masculine +26646 masculine +masculine +26650 masculine +masculine +masculine +26654 masculine +26658 feminine +feminine +masculine +26664 masculine +masculine +masculine +masculine +26669 feminine +26672 masculine +26674 feminine +feminine +26677 feminine +26679 feminine +feminine +26682 feminine +26684 neuter +neuter +masculine +masculine +feminine +feminine +feminine +feminine +26693 feminine +neuter +masculine +masculine +26698 neuter +neuter +26701 masculine +26703 neuter +neuter +26707 masculine +masculine +26710 masculine +26712 neuter +neuter +26715 masculine +masculine +26718 neuter +26720 feminine +feminine +feminine +feminine +26725 neuter +26727 neuter +26729 masculine +26731 masculine +masculine +masculine +masculine +26736 masculine +26741 feminine +feminine +feminine +feminine +feminine +neuter +26748 masculine +masculine +masculine +26752 neuter +neuter +26755 masculine +26757 neuter +neuter +masculine +26762 feminine +26764 feminine +feminine +feminine +26768 neuter +neuter +26771 masculine +masculine +masculine +feminine +26776 masculine +masculine +26779 neuter +neuter +26782 masculine +masculine +masculine +masculine +masculine +masculine +26789 masculine +masculine +26792 feminine +feminine +26795 masculine +masculine +26798 masculine +26800 feminine +feminine +feminine +feminine +26808 masculine +masculine +masculine +26815 masculine +masculine +26818 neuter +neuter +feminine +feminine +26823 neuter +neuter +26826 masculine +26828 feminine +masculine +26831 masculine +26833 masculine +26835 masculine +26839 neuter +26842 neuter +neuter +neuter +26847 neuter +neuter +26851 masculine +masculine +26855 masculine +26858 masculine +26861 masculine +26864 neuter +neuter +26867 masculine +26872 masculine +26877 masculine +26879 feminine +masculine +26887 neuter +neuter +26891 neuter +26893 neuter +26895 feminine +26897 feminine +26899 masculine +26901 masculine +26903 masculine +feminine +feminine +neuter +26910 masculine +26914 neuter +26917 feminine +26921 masculine +26923 masculine +26928 neuter +masculine +26932 neuter +neuter +neuter +neuter +26937 neuter +neuter +26944 masculine +26947 neuter +26951 neuter +26955 feminine +feminine +feminine +neuter +26964 masculine +masculine +26967 neuter +neuter +neuter +neuter +26973 masculine +masculine +26976 masculine +26978 masculine +neuter +26982 neuter +26984 masculine +26987 masculine +26990 masculine +26992 masculine +26994 neuter +neuter +26998 masculine +masculine +27001 neuter +masculine +27007 neuter +neuter +feminine +feminine +masculine +27015 masculine +masculine +27019 masculine +27021 feminine +feminine +27025 neuter +neuter +masculine +27029 neuter +neuter +27035 neuter +27038 feminine +feminine +masculine +27042 masculine +27044 masculine +masculine +27049 neuter +27052 neuter +neuter +masculine +27057 feminine +27059 feminine +feminine +27062 feminine +feminine +27065 feminine +feminine +feminine +27073 masculine +27076 feminine +feminine +feminine +feminine +feminine +27083 feminine +27085 feminine +feminine +feminine +27089 masculine +masculine +27092 masculine +27102 masculine +feminine +feminine +27108 feminine +feminine +27112 masculine +masculine +masculine +27117 feminine +feminine +27122 masculine +27127 masculine +masculine +27135 masculine +27137 masculine +27140 neuter +27142 neuter +27144 neuter +27147 neuter +masculine +masculine +27155 neuter +27158 feminine +feminine +feminine +27162 feminine +feminine +feminine +masculine +masculine +27169 feminine +feminine +27173 neuter +neuter +feminine +27177 masculine +masculine +27180 masculine +27182 masculine +masculine +27185 feminine +feminine +feminine +27189 masculine +masculine +27195 masculine +masculine +masculine +masculine +masculine +27201 feminine +27203 feminine +feminine +27206 feminine +27210 masculine +masculine +27214 masculine +masculine +masculine +27218 masculine +masculine +masculine +27222 neuter +feminine +27225 neuter +masculine +27229 feminine +feminine +27232 feminine +feminine +27236 masculine +masculine +feminine +masculine +27243 neuter +neuter +27248 neuter +neuter +27256 neuter +neuter +27263 feminine +27271 feminine +feminine +feminine +27275 masculine +neuter +neuter +27279 masculine +masculine +27282 feminine +feminine +27286 masculine +masculine +27293 feminine +feminine +feminine +27297 feminine +feminine +masculine +27302 masculine +masculine +27305 masculine +27307 masculine +masculine +27311 masculine +masculine +27319 masculine +masculine +27323 masculine +masculine +masculine +feminine +feminine +masculine +27330 masculine +masculine +masculine +masculine +feminine +feminine +masculine +neuter +neuter +masculine +27341 masculine +masculine +27352 masculine +masculine +feminine +feminine +27360 neuter +27362 feminine +27366 masculine +27370 masculine +27372 neuter +27375 masculine +27380 neuter +neuter +27383 neuter +neuter +27387 feminine +27390 masculine +masculine +27393 masculine +masculine +27396 masculine +27398 masculine +masculine +27405 feminine +feminine +27410 masculine +masculine +masculine +27414 masculine +masculine +27417 feminine +27419 feminine +feminine +masculine +masculine +masculine +masculine +masculine +27427 feminine +feminine +neuter +neuter +feminine +feminine +feminine +feminine +feminine +neuter +27438 neuter +feminine +feminine +27442 masculine +27444 masculine +27446 masculine +27448 neuter +feminine +feminine +feminine +neuter +neuter +27457 neuter +neuter +neuter +27462 neuter +neuter +27466 masculine +masculine +27470 feminine +27472 masculine +masculine +27476 feminine +neuter +feminine +masculine +27481 neuter +neuter +27488 masculine +masculine +27492 masculine +27497 masculine +27505 neuter +27510 neuter +neuter +27514 masculine +masculine +27523 neuter +neuter +27526 masculine +masculine +masculine +27530 neuter +27532 feminine +27535 neuter +feminine +27538 masculine +masculine +masculine +masculine +masculine +27546 masculine +masculine +27549 masculine +27551 masculine +27553 masculine +masculine +27558 masculine +neuter +27564 masculine +27568 feminine +feminine +feminine +neuter +neuter +27574 neuter +neuter +27578 masculine +masculine +masculine +masculine +27584 masculine +27588 neuter +neuter +27593 masculine +masculine +masculine +27598 masculine +27601 feminine +feminine +27606 masculine +neuter +neuter +masculine +27611 masculine +27617 masculine +masculine +27620 masculine +masculine +27625 neuter +neuter +27629 neuter +neuter +27632 masculine +masculine +27637 masculine +27640 neuter +neuter +neuter +neuter +27650 masculine +masculine +27655 feminine +feminine +27661 masculine +27664 neuter +neuter +27667 feminine +feminine +27671 masculine +27674 masculine +masculine +27677 masculine +masculine +masculine +27687 masculine +27690 masculine +masculine +27698 masculine +masculine +27701 masculine +27705 masculine +27707 masculine +masculine +masculine +27711 masculine +masculine +27716 neuter +neuter +27720 masculine +masculine +masculine +masculine +27728 masculine +27731 masculine +masculine +masculine +27735 masculine +masculine +masculine +masculine +masculine +27741 neuter +masculine +27746 masculine +masculine +masculine +27750 masculine +masculine +masculine +masculine +masculine +27758 masculine +27762 neuter +27764 neuter +neuter +27768 masculine +neuter +masculine +27772 masculine +27776 neuter +masculine +27780 masculine +neuter +27783 neuter +neuter +27786 feminine +feminine +neuter +neuter +27791 masculine +27801 neuter +neuter +feminine +feminine +27806 feminine +feminine +feminine +27810 neuter +27812 neuter +27814 feminine +feminine +masculine +masculine +27819 masculine +27822 neuter +neuter +feminine +feminine +27828 masculine +masculine +masculine +27832 masculine +27837 masculine +masculine +27840 neuter +neuter +27845 neuter +27851 feminine +feminine +27854 masculine +masculine +27857 masculine +27860 masculine +27867 masculine +masculine +masculine +27876 feminine +feminine +feminine +27882 masculine +27888 masculine +27903 masculine +27908 neuter +neuter +neuter +neuter +neuter +27915 masculine +masculine +masculine +27924 masculine +masculine +27927 masculine +masculine +27930 masculine +masculine +27933 masculine +27941 masculine +feminine +27944 feminine +feminine +27948 masculine +27954 masculine +neuter +27958 feminine +feminine +27964 neuter +27968 masculine +feminine +feminine +27973 masculine +masculine +masculine +neuter +neuter +27980 neuter +neuter +neuter +27987 neuter +27991 neuter +27997 masculine +masculine +28001 masculine +masculine +masculine +28007 feminine +feminine +28017 masculine +28019 neuter +neuter +neuter +28023 feminine +feminine +feminine +28028 masculine +28030 masculine +masculine +masculine +masculine +28036 masculine +28038 masculine +masculine +28042 masculine +masculine +masculine +masculine +28049 neuter +28051 masculine +28054 neuter +neuter +28058 masculine +28060 neuter +neuter +28066 feminine +feminine +28070 masculine +masculine +masculine +masculine +28075 feminine +feminine +masculine +masculine +28082 masculine +masculine +28087 masculine +28089 masculine +masculine +28092 masculine +masculine +masculine +masculine +28099 masculine +masculine +28102 feminine +28104 neuter +28106 masculine +masculine +28109 masculine +masculine +28112 masculine +masculine +28116 masculine +masculine +masculine +neuter +masculine +masculine +28123 masculine +28125 masculine +28128 masculine +28133 masculine +masculine +masculine +masculine +28138 masculine +28141 masculine +28143 masculine +28145 feminine +feminine +masculine +28150 masculine +28152 masculine +masculine +masculine +masculine +masculine +feminine +feminine +28160 masculine +masculine +masculine +masculine +28166 masculine +neuter +neuter +28170 masculine +masculine +masculine +28174 masculine +28177 masculine +28180 feminine +28182 neuter +28186 feminine +28191 neuter +neuter +masculine +28201 feminine +feminine +28204 masculine +masculine +28207 masculine +28209 masculine +masculine +28212 masculine +masculine +feminine +28216 neuter +28219 masculine +28221 masculine +masculine +feminine +feminine +masculine +28229 masculine +masculine +28232 masculine +masculine +28236 masculine +masculine +masculine +28240 masculine +masculine +28243 masculine +masculine +28246 masculine +masculine +28251 masculine +28255 feminine +feminine +masculine +masculine +28261 masculine +28263 masculine +masculine +28266 masculine +28268 neuter +neuter +28271 masculine +masculine +28274 neuter +neuter +neuter +28279 masculine +masculine +feminine +28283 neuter +28285 masculine +28290 masculine +28293 masculine +28295 feminine +feminine +feminine +28301 masculine +masculine +28305 masculine +masculine +28310 masculine +masculine +28315 masculine +masculine +masculine +masculine +masculine +28322 feminine +feminine +masculine +masculine +28330 feminine +28332 feminine +feminine +masculine +28336 masculine +28338 neuter +masculine +masculine +28342 masculine +masculine +masculine +28347 neuter +neuter +masculine +28353 masculine +28358 neuter +28360 masculine +masculine +28363 masculine +28366 masculine +28369 masculine +masculine +masculine +masculine +masculine +masculine +28376 masculine +masculine +28383 masculine +masculine +masculine +masculine +28388 neuter +feminine +feminine +masculine +28393 masculine +28395 feminine +feminine +masculine +masculine +28400 masculine +masculine +masculine +masculine +masculine +masculine +28407 neuter +28409 feminine +masculine +28413 feminine +feminine +neuter +28419 masculine +masculine +28422 masculine +masculine +28425 masculine +28428 masculine +28430 masculine +28433 masculine +neuter +neuter +28438 masculine +28441 masculine +28444 masculine +masculine +neuter +masculine +28450 masculine +masculine +masculine +28455 feminine +feminine +28458 feminine +feminine +feminine +masculine +masculine +28464 feminine +masculine +masculine +masculine +feminine +masculine +28474 masculine +masculine +masculine +masculine +28480 masculine +28482 masculine +28488 neuter +28494 neuter +neuter +28497 feminine +feminine +feminine +masculine +28504 masculine +masculine +28507 masculine +28509 masculine +28512 masculine +28517 neuter +28519 masculine +masculine +28522 masculine +masculine +28526 masculine +28530 masculine +28533 masculine +28541 masculine +masculine +masculine +masculine +28547 masculine +28549 neuter +masculine +28554 masculine +masculine +neuter +neuter +28560 masculine +masculine +masculine +28565 masculine +28572 masculine +28575 masculine +28577 masculine +masculine +neuter +masculine +28582 masculine +masculine +28585 masculine +28587 neuter +neuter +neuter +masculine +masculine +masculine +28596 masculine +28599 masculine +masculine +masculine +28604 masculine +masculine +masculine +masculine +28609 masculine +masculine +masculine +28617 masculine +masculine +masculine +neuter +28622 masculine +masculine +28626 masculine +masculine +28630 neuter +28632 neuter +28636 masculine +masculine +28639 neuter +28643 masculine +masculine +28647 feminine +28649 masculine +masculine +masculine +masculine +28656 masculine +masculine +masculine +masculine +28661 masculine +masculine +masculine +28665 feminine +feminine +masculine +28670 masculine +masculine +masculine +28677 masculine +28679 masculine +masculine +28682 masculine +masculine +28687 masculine +masculine +masculine +masculine +28695 masculine +28697 masculine +masculine +masculine +28701 masculine +masculine +28704 masculine +masculine +28708 masculine +masculine +28711 masculine +28713 masculine +masculine +28716 masculine +28718 masculine +28720 neuter +28722 masculine +28724 masculine +masculine +masculine +masculine +28729 masculine +28733 masculine +28735 masculine +masculine +28738 masculine +28741 neuter +neuter +28744 masculine +28748 masculine +28750 masculine +masculine +masculine +masculine +masculine +neuter +neuter +28759 masculine +masculine +masculine +28764 masculine +masculine +masculine +28770 masculine +masculine +28773 masculine +28775 feminine +feminine +neuter +28779 neuter +28782 feminine +feminine +feminine +28787 masculine +feminine +28791 masculine +masculine +masculine +masculine +28798 masculine +28800 masculine +masculine +masculine +28805 masculine +feminine +feminine +masculine +28811 masculine +28813 masculine +neuter +neuter +28817 masculine +28821 masculine +28823 masculine +feminine +feminine +28828 masculine +neuter +neuter +masculine +28834 masculine +28837 masculine +28840 masculine +masculine +masculine +masculine +masculine +28846 masculine +masculine +masculine +masculine +28851 masculine +28854 masculine +masculine +masculine +28859 masculine +28861 masculine +masculine +feminine +neuter +28866 masculine +neuter +masculine +28871 masculine +masculine +masculine +28875 masculine +28880 masculine +28883 neuter +neuter +masculine +masculine +masculine +28889 neuter +masculine +neuter +28895 feminine +feminine +28899 masculine +28902 feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +28914 masculine +28917 masculine +masculine +28920 neuter +28922 masculine +28924 neuter +masculine +28927 masculine +masculine +28930 masculine +masculine +feminine +feminine +masculine +28936 masculine +28938 masculine +masculine +masculine +masculine +28943 masculine +28945 feminine +feminine +28948 masculine +masculine +28951 masculine +masculine +28955 masculine +masculine +masculine +28959 masculine +28961 masculine +masculine +28964 masculine +28966 masculine +28970 masculine +masculine +masculine +masculine +masculine +28978 masculine +masculine +28985 masculine +masculine +28988 masculine +28990 masculine +28992 feminine +feminine +feminine +neuter +28998 feminine +feminine +feminine +29002 feminine +feminine +29005 feminine +feminine +feminine +29009 masculine +masculine +feminine +feminine +masculine +masculine +29017 neuter +29019 neuter +masculine +masculine +29023 masculine +masculine +29027 neuter +29031 masculine +masculine +masculine +masculine +29037 masculine +29040 masculine +masculine +29043 masculine +masculine +neuter +masculine +masculine +29049 masculine +masculine +29055 masculine +29057 masculine +29059 masculine +masculine +masculine +feminine +feminine +29066 neuter +neuter +masculine +masculine +29078 masculine +masculine +masculine +masculine +29083 feminine +masculine +masculine +29091 masculine +masculine +masculine +masculine +masculine +29100 feminine +29103 feminine +29105 feminine +29107 feminine +feminine +feminine +29111 feminine +feminine +masculine +masculine +masculine +29117 masculine +feminine +29120 feminine +feminine +29125 feminine +feminine +29128 masculine +29131 masculine +29133 feminine +feminine +feminine +feminine +masculine +29139 neuter +29142 feminine +feminine +29146 feminine +neuter +29149 neuter +masculine +masculine +masculine +29154 feminine +masculine +masculine +masculine +29159 masculine +29161 masculine +feminine +feminine +masculine +masculine +masculine +29169 masculine +masculine +29173 neuter +neuter +masculine +masculine +29178 masculine +masculine +29185 masculine +masculine +masculine +29189 masculine +29194 masculine +29196 masculine +masculine +29199 neuter +neuter +masculine +masculine +29204 masculine +feminine +masculine +masculine +29209 feminine +feminine +29213 masculine +29215 neuter +neuter +29218 neuter +29220 feminine +29223 masculine +29225 feminine +feminine +neuter +neuter +29230 feminine +feminine +feminine +feminine +29235 feminine +feminine +masculine +29242 neuter +neuter +neuter +feminine +feminine +feminine +29249 feminine +feminine +masculine +masculine +29254 feminine +29256 neuter +29258 feminine +29260 masculine +29264 feminine +feminine +neuter +neuter +29270 neuter +neuter +masculine +masculine +masculine +29278 feminine +masculine +29282 masculine +masculine +29285 feminine +feminine +neuter +neuter +29290 feminine +29294 masculine +masculine +29298 masculine +29301 feminine +29303 neuter +neuter +29306 masculine +masculine +29309 neuter +neuter +masculine +feminine +feminine +29317 masculine +29319 feminine +29323 masculine +masculine +masculine +masculine +masculine +29333 masculine +masculine +29337 masculine +29341 masculine +masculine +masculine +29345 masculine +masculine +29351 feminine +feminine +29354 masculine +29360 feminine +29363 neuter +neuter +29367 feminine +masculine +29370 feminine +29372 masculine +neuter +29378 masculine +29380 feminine +neuter +29383 neuter +feminine +feminine +feminine +29388 feminine +29391 neuter +feminine +feminine +29395 masculine +29397 masculine +masculine +masculine +29401 masculine +masculine +masculine +29409 feminine +29413 neuter +masculine +29416 masculine +masculine +29420 feminine +feminine +masculine +29424 masculine +masculine +masculine +29428 masculine +masculine +29431 masculine +29434 neuter +masculine +masculine +masculine +29442 feminine +feminine +masculine +29446 feminine +29448 masculine +masculine +masculine +masculine +29456 masculine +masculine +29459 masculine +masculine +masculine +29463 neuter +neuter +feminine +feminine +feminine +masculine +masculine +29471 masculine +29474 masculine +masculine +29478 neuter +neuter +masculine +masculine +29484 neuter +neuter +29487 neuter +29489 feminine +feminine +29492 masculine +29495 neuter +neuter +29500 masculine +29503 masculine +feminine +29511 masculine +masculine +masculine +29515 neuter +29517 masculine +29520 masculine +masculine +29525 neuter +masculine +masculine +29529 masculine +masculine +29533 masculine +masculine +masculine +29537 masculine +masculine +masculine +29541 neuter +neuter +neuter +29545 neuter +neuter +neuter +masculine +29550 masculine +masculine +29556 neuter +29558 masculine +masculine +masculine +29562 feminine +29565 feminine +29568 masculine +neuter +neuter +29572 masculine +neuter +feminine +feminine +feminine +29578 masculine +29581 feminine +29583 neuter +neuter +29587 neuter +29591 masculine +29593 feminine +masculine +29596 masculine +masculine +masculine +masculine +29602 masculine +29604 neuter +29609 masculine +masculine +29614 masculine +29616 masculine +feminine +feminine +29621 feminine +feminine +masculine +masculine +feminine +feminine +masculine +masculine +neuter +masculine +29632 feminine +masculine +29635 feminine +masculine +29638 feminine +feminine +masculine +29642 neuter +neuter +feminine +feminine +29648 masculine +masculine +29651 masculine +masculine +masculine +29655 feminine +feminine +feminine +29659 neuter +masculine +masculine +masculine +29666 masculine +neuter +29670 feminine +feminine +feminine +29674 masculine +masculine +29678 feminine +feminine +masculine +29684 neuter +29686 masculine +29688 feminine +feminine +feminine +feminine +masculine +29694 masculine +masculine +29697 neuter +neuter +feminine +feminine +29702 neuter +29704 masculine +29706 masculine +masculine +masculine +masculine +29711 neuter +neuter +neuter +masculine +masculine +29717 neuter +29719 feminine +feminine +neuter +neuter +29725 masculine +masculine +masculine +masculine +29730 neuter +neuter +neuter +neuter +neuter +29737 masculine +masculine +29740 masculine +29743 masculine +29747 masculine +masculine +masculine +29752 masculine +29755 feminine +feminine +29759 feminine +feminine +29762 feminine +29764 masculine +29768 neuter +neuter +masculine +masculine +29775 feminine +29777 feminine +29779 masculine +29781 feminine +feminine +masculine +29787 masculine +29789 masculine +29791 masculine +29793 neuter +29798 neuter +neuter +29803 feminine +feminine +masculine +29807 masculine +masculine +masculine +masculine +29813 masculine +masculine +masculine +masculine +29818 masculine +29821 masculine +29823 neuter +29825 feminine +masculine +29828 feminine +masculine +29831 neuter +29833 masculine +29835 feminine +masculine +29838 masculine +masculine +masculine +29843 masculine +29845 masculine +masculine +29848 neuter +29850 neuter +29854 masculine +29856 feminine +feminine +29859 feminine +29861 feminine +feminine +feminine +29865 masculine +masculine +masculine +29869 masculine +29872 masculine +masculine +masculine +29876 masculine +masculine +29886 neuter +29890 masculine +29893 masculine +29896 feminine +feminine +29899 neuter +29901 masculine +29904 masculine +masculine +29907 masculine +29910 masculine +masculine +masculine +29915 masculine +masculine +masculine +masculine +masculine +29923 neuter +29926 masculine +masculine +masculine +29930 masculine +29934 masculine +29938 feminine +29941 masculine +masculine +29944 masculine +29946 masculine +masculine +29950 masculine +29955 feminine +feminine +feminine +feminine +masculine +29962 masculine +masculine +masculine +29967 feminine +feminine +feminine +29971 feminine +feminine +feminine +masculine +29977 feminine +masculine +29980 feminine +29985 masculine +29987 feminine +feminine +29991 neuter +29994 masculine +29997 masculine +masculine +masculine +masculine +30002 masculine +masculine +masculine +30006 masculine +masculine +30009 feminine +feminine +feminine +feminine +neuter +feminine +30016 feminine +feminine +masculine +masculine +neuter +masculine +30023 masculine +masculine +30026 neuter +neuter +feminine +feminine +feminine +30032 masculine +30034 feminine +30037 feminine +masculine +masculine +30043 feminine +30045 masculine +masculine +30050 masculine +30052 masculine +masculine +masculine +30057 masculine +masculine +feminine +30062 feminine +30065 feminine +30067 masculine +masculine +30073 feminine +30076 masculine +30079 neuter +neuter +masculine +masculine +masculine +30085 masculine +30087 masculine +masculine +30092 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +30105 masculine +masculine +masculine +30109 masculine +masculine +30112 feminine +feminine +masculine +30117 neuter +30120 feminine +30122 masculine +masculine +30126 neuter +30128 masculine +30132 masculine +masculine +masculine +30136 feminine +neuter +neuter +30143 feminine +masculine +30149 neuter +neuter +neuter +30153 masculine +masculine +30157 feminine +feminine +feminine +30162 feminine +30164 masculine +30166 neuter +feminine +30169 masculine +masculine +masculine +30173 feminine +feminine +feminine +feminine +30181 masculine +masculine +neuter +neuter +30187 feminine +30189 feminine +feminine +masculine +30195 neuter +neuter +30201 feminine +masculine +masculine +30205 feminine +feminine +30208 feminine +feminine +feminine +30213 feminine +feminine +30216 feminine +30218 feminine +masculine +30223 masculine +masculine +masculine +30228 feminine +feminine +30234 masculine +masculine +feminine +feminine +feminine +feminine +30241 neuter +neuter +30244 feminine +feminine +feminine +30249 neuter +neuter +feminine +feminine +30255 feminine +feminine +30259 feminine +30262 feminine +30264 masculine +masculine +masculine +feminine +feminine +30273 neuter +30276 feminine +feminine +masculine +masculine +30287 feminine +feminine +masculine +masculine +30293 neuter +neuter +30298 feminine +neuter +neuter +30302 feminine +feminine +30306 feminine +feminine +feminine +30311 feminine +neuter +neuter +feminine +30316 masculine +30319 feminine +30321 feminine +feminine +30324 masculine +masculine +30328 neuter +neuter +30332 masculine +masculine +masculine +masculine +30340 feminine +feminine +feminine +feminine +masculine +30348 masculine +30352 feminine +feminine +feminine +30358 neuter +masculine +masculine +30362 neuter +neuter +neuter +masculine +30367 neuter +neuter +masculine +30371 feminine +30373 feminine +masculine +masculine +masculine +30378 neuter +30380 masculine +masculine +30383 masculine +feminine +feminine +masculine +30388 masculine +30390 masculine +30393 masculine +masculine +30396 masculine +30398 masculine +30400 masculine +30402 masculine +masculine +masculine +30406 neuter +masculine +masculine +30410 neuter +neuter +masculine +30414 masculine +masculine +30419 masculine +masculine +30424 feminine +30426 feminine +30428 masculine +masculine +30433 masculine +masculine +feminine +30437 feminine +feminine +30440 masculine +masculine +neuter +30444 feminine +30447 masculine +30450 masculine +masculine +30453 masculine +masculine +feminine +30458 masculine +neuter +neuter +masculine +30463 feminine +30466 feminine +30470 feminine +feminine +feminine +feminine +30476 neuter +neuter +30480 neuter +30482 neuter +neuter +masculine +masculine +masculine +masculine +30489 feminine +feminine +feminine +masculine +30497 masculine +30501 feminine +30505 feminine +feminine +30508 masculine +masculine +30511 neuter +neuter +neuter +30516 masculine +masculine +masculine +neuter +30522 neuter +30524 neuter +30526 masculine +neuter +30529 masculine +masculine +30532 neuter +masculine +30536 masculine +30539 neuter +neuter +masculine +30544 feminine +feminine +masculine +30549 masculine +masculine +masculine +30554 masculine +30556 masculine +masculine +masculine +masculine +30562 feminine +feminine +feminine +feminine +feminine +30568 neuter +neuter +neuter +neuter +30574 masculine +masculine +masculine +30578 feminine +feminine +masculine +masculine +30583 neuter +neuter +neuter +neuter +30590 feminine +masculine +30594 masculine +30596 masculine +masculine +masculine +masculine +30601 neuter +neuter +30605 masculine +masculine +masculine +masculine +masculine +masculine +masculine +30616 feminine +masculine +masculine +masculine +30622 neuter +feminine +30626 masculine +masculine +masculine +masculine +30633 neuter +masculine +masculine +30637 masculine +masculine +masculine +feminine +30642 masculine +30646 feminine +masculine +masculine +masculine +30652 neuter +30654 masculine +masculine +30659 feminine +feminine +masculine +masculine +masculine +30666 masculine +masculine +masculine +30670 neuter +30674 feminine +masculine +masculine +30679 masculine +30681 feminine +30683 feminine +30685 masculine +feminine +feminine +feminine +30691 neuter +30694 masculine +masculine +30700 masculine +30702 feminine +masculine +neuter +30706 feminine +feminine +masculine +masculine +masculine +30712 feminine +feminine +masculine +30716 neuter +neuter +masculine +30721 neuter +30724 feminine +30726 neuter +30728 masculine +30730 neuter +30732 feminine +masculine +masculine +neuter +30737 masculine +masculine +30741 feminine +feminine +30744 neuter +neuter +30749 neuter +30753 feminine +feminine +30756 feminine +feminine +masculine +30760 masculine +masculine +30765 feminine +feminine +feminine +30769 neuter +30771 masculine +masculine +30774 feminine +feminine +feminine +feminine +feminine +feminine +30781 masculine +feminine +feminine +masculine +30787 masculine +30789 masculine +30791 feminine +masculine +feminine +30797 masculine +30799 feminine +feminine +30802 feminine +feminine +30805 feminine +feminine +30808 feminine +masculine +feminine +30812 feminine +30814 neuter +30816 masculine +30818 masculine +30820 feminine +masculine +30824 feminine +feminine +feminine +masculine +feminine +feminine +30833 neuter +30835 masculine +30838 feminine +feminine +neuter +30842 feminine +30845 masculine +masculine +feminine +masculine +masculine +30852 masculine +30855 masculine +30857 feminine +30861 masculine +masculine +30864 neuter +neuter +30867 masculine +30870 feminine +feminine +feminine +feminine +masculine +30876 masculine +feminine +feminine +feminine +30881 feminine +feminine +masculine +30885 masculine +masculine +30888 masculine +30890 feminine +masculine +30893 masculine +30896 masculine +masculine +30900 masculine +masculine +masculine +30909 feminine +feminine +feminine +30913 masculine +masculine +masculine +30920 masculine +masculine +30923 masculine +masculine +30926 feminine +masculine +30929 neuter +30931 neuter +30933 neuter +neuter +30936 neuter +30938 feminine +30943 masculine +masculine +neuter +feminine +feminine +masculine +masculine +masculine +30952 masculine +feminine +30955 neuter +masculine +30959 feminine +feminine +30962 masculine +feminine +30969 masculine +30971 masculine +masculine +masculine +masculine +masculine +masculine +30979 masculine +30983 feminine +30986 neuter +neuter +neuter +neuter +neuter +neuter +masculine +masculine +30998 masculine +31002 feminine +feminine +31005 masculine +masculine +31008 neuter +neuter +neuter +31012 feminine +feminine +31015 masculine +31018 neuter +neuter +neuter +neuter +masculine +31024 neuter +neuter +neuter +31028 masculine +masculine +masculine +31033 neuter +neuter +31036 masculine +masculine +31039 masculine +31041 feminine +feminine +31044 neuter +neuter +neuter +neuter +feminine +31050 feminine +feminine +feminine +31055 masculine +masculine +masculine +31059 masculine +masculine +masculine +31063 neuter +neuter +31071 masculine +31075 feminine +31077 neuter +31079 masculine +31082 neuter +neuter +masculine +masculine +neuter +neuter +31089 masculine +masculine +31092 neuter +31094 masculine +31096 feminine +feminine +31101 feminine +feminine +masculine +masculine +masculine +31107 masculine +masculine +masculine +31111 masculine +31113 neuter +31115 masculine +masculine +31120 masculine +masculine +31123 neuter +neuter +neuter +feminine +neuter +masculine +masculine +31132 neuter +31134 feminine +31136 neuter +neuter +31139 masculine +masculine +masculine +neuter +feminine +31146 masculine +feminine +31150 masculine +31153 feminine +masculine +neuter +masculine +31158 masculine +masculine +masculine +masculine +31163 masculine +masculine +feminine +masculine +masculine +31169 neuter +neuter +31173 masculine +31176 neuter +masculine +31179 neuter +neuter +neuter +neuter +31185 masculine +31190 masculine +masculine +masculine +31196 neuter +neuter +31199 neuter +neuter +31203 neuter +31205 masculine +masculine +neuter +neuter +masculine +neuter +31212 masculine +31214 neuter +neuter +masculine +masculine +31219 masculine +31221 masculine +31223 neuter +31225 feminine +feminine +31229 masculine +masculine +31233 masculine +31236 masculine +masculine +31240 neuter +neuter +31244 feminine +31247 masculine +masculine +31250 neuter +neuter +31253 neuter +31256 neuter +masculine +masculine +masculine +neuter +31262 feminine +neuter +31265 feminine +masculine +31268 masculine +31271 masculine +masculine +masculine +masculine +31276 feminine +feminine +31279 neuter +neuter +31282 masculine +31285 masculine +masculine +31290 feminine +feminine +feminine +masculine +31295 masculine +31298 feminine +31300 feminine +masculine +31303 masculine +masculine +31307 neuter +neuter +31312 feminine +feminine +feminine +31316 feminine +31321 feminine +feminine +masculine +31326 feminine +feminine +feminine +masculine +31331 feminine +masculine +feminine +feminine +31336 feminine +feminine +feminine +31340 masculine +neuter +31344 feminine +feminine +feminine +31348 feminine +feminine +31351 neuter +31353 neuter +feminine +31357 neuter +neuter +feminine +31361 feminine +feminine +feminine +31365 feminine +31367 feminine +feminine +feminine +feminine +31372 masculine +masculine +31377 masculine +masculine +masculine +masculine +feminine +feminine +31386 neuter +neuter +31389 masculine +masculine +masculine +31394 feminine +feminine +31397 feminine +masculine +feminine +31401 neuter +neuter +31406 neuter +feminine +31409 feminine +masculine +31413 neuter +31416 masculine +masculine +masculine +31420 neuter +31422 feminine +feminine +feminine +masculine +neuter +31430 neuter +31432 masculine +masculine +31435 neuter +neuter +feminine +feminine +31440 masculine +feminine +feminine +31444 neuter +31446 masculine +31448 masculine +masculine +masculine +31452 feminine +31456 masculine +masculine +masculine +31460 masculine +masculine +31464 feminine +feminine +31467 feminine +feminine +31471 masculine +31473 masculine +masculine +31476 masculine +masculine +31480 masculine +31483 feminine +masculine +masculine +31489 feminine +feminine +31492 masculine +31494 neuter +neuter +masculine +31498 neuter +masculine +masculine +31502 masculine +masculine +31505 masculine +masculine +31509 masculine +masculine +masculine +masculine +31514 feminine +feminine +31517 feminine +feminine +masculine +31521 masculine +masculine +31527 masculine +feminine +feminine +masculine +neuter +neuter +31537 masculine +masculine +31541 masculine +31547 masculine +neuter +31556 neuter +masculine +masculine +31564 masculine +31567 neuter +neuter +neuter +31571 masculine +31575 masculine +31579 feminine +31582 masculine +masculine +31585 feminine +feminine +masculine +31589 neuter +neuter +neuter +31593 feminine +feminine +feminine +31597 masculine +31600 feminine +feminine +31603 feminine +31605 feminine +31607 masculine +31609 masculine +31612 neuter +neuter +feminine +feminine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +31624 masculine +feminine +feminine +masculine +31629 masculine +masculine +masculine +masculine +masculine +feminine +feminine +31637 feminine +feminine +31640 masculine +feminine +feminine +masculine +31645 masculine +masculine +31648 masculine +31650 neuter +masculine +31653 masculine +masculine +masculine +masculine +31658 feminine +feminine +31663 feminine +feminine +feminine +masculine +masculine +masculine +neuter +feminine +31672 feminine +feminine +31677 feminine +masculine +masculine +masculine +masculine +feminine +masculine +31685 feminine +feminine +31688 feminine +feminine +masculine +feminine +31693 feminine +feminine +masculine +feminine +feminine +31700 neuter +neuter +31703 masculine +31707 neuter +neuter +31710 feminine +31712 feminine +feminine +31715 feminine +feminine +31719 feminine +feminine +neuter +neuter +masculine +masculine +31727 masculine +masculine +31731 masculine +masculine +neuter +feminine +masculine +31740 feminine +feminine +feminine +31745 masculine +masculine +feminine +feminine +31754 masculine +masculine +31757 masculine +masculine +31764 masculine +masculine +31767 masculine +masculine +masculine +31771 neuter +masculine +masculine +31777 feminine +feminine +31780 feminine +feminine +neuter +neuter +31786 neuter +neuter +31789 neuter +masculine +masculine +31795 neuter +31799 masculine +masculine +masculine +masculine +31804 neuter +31807 masculine +31809 masculine +masculine +masculine +31813 masculine +31815 masculine +31817 masculine +31819 masculine +masculine +neuter +31827 masculine +31832 masculine +masculine +neuter +31837 masculine +31840 masculine +neuter +neuter +31844 neuter +neuter +31850 masculine +31852 masculine +masculine +neuter +31860 masculine +masculine +31867 neuter +neuter +31871 masculine +masculine +masculine +31875 masculine +masculine +31878 feminine +feminine +masculine +31882 masculine +masculine +31886 masculine +31888 masculine +masculine +31891 masculine +masculine +masculine +masculine +31897 neuter +31902 masculine +masculine +31905 masculine +31908 masculine +31910 masculine +masculine +neuter +neuter +masculine +masculine +31919 neuter +neuter +31922 neuter +masculine +neuter +neuter +31927 feminine +feminine +masculine +31931 feminine +feminine +masculine +31936 masculine +masculine +31939 feminine +feminine +masculine +31943 neuter +neuter +31946 neuter +neuter +31950 neuter +31952 neuter +masculine +31955 masculine +masculine +31958 masculine +masculine +masculine +masculine +masculine +31964 masculine +31966 feminine +feminine +feminine +masculine +masculine +masculine +31974 neuter +neuter +neuter +31978 masculine +masculine +31982 neuter +31984 neuter +31986 masculine +masculine +31989 feminine +31993 neuter +31995 masculine +masculine +masculine +31999 masculine +masculine +32002 masculine +32004 masculine +masculine +32008 neuter +neuter +neuter +neuter +neuter +neuter +32015 feminine +32017 masculine +32019 feminine +32021 masculine +32025 masculine +masculine +32028 masculine +masculine +32034 masculine +masculine +32037 masculine +32039 neuter +32043 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +32199 masculine +masculine +neuter +neuter +32205 masculine +masculine +32210 neuter +neuter +32213 feminine +feminine +feminine +32217 masculine +32219 masculine +masculine +32224 neuter +32226 feminine +feminine +feminine +32230 feminine +feminine +32235 masculine +masculine +masculine +32240 masculine +masculine +masculine +32244 masculine +masculine +masculine +32249 masculine +32253 masculine +masculine +masculine +32260 masculine +masculine +32263 masculine +masculine +32266 masculine +masculine +32269 masculine +feminine +feminine +feminine +feminine +feminine +32276 feminine +masculine +32280 masculine +masculine +masculine +32285 feminine +feminine +feminine +feminine +32290 feminine +feminine +feminine +32298 masculine +32301 feminine +32310 feminine +32312 masculine +masculine +masculine +32316 masculine +32319 masculine +masculine +masculine +32324 masculine +masculine +32329 masculine +32331 feminine +32335 neuter +neuter +neuter +neuter +32341 masculine +32344 masculine +masculine +masculine +32348 masculine +32354 masculine +masculine +masculine +32360 neuter +32366 feminine +32373 masculine +masculine +masculine +32378 masculine +32380 masculine +masculine +masculine +32387 masculine +masculine +masculine +32392 masculine +masculine +masculine +masculine +masculine +32399 masculine +32401 masculine +32404 masculine +masculine +32407 feminine +feminine +neuter +neuter +32412 feminine +feminine +32415 feminine +32418 feminine +feminine +feminine +32422 masculine +32424 masculine +32427 feminine +feminine +masculine +masculine +32432 masculine +32436 feminine +32439 masculine +32443 neuter +neuter +masculine +32447 feminine +feminine +neuter +neuter +32452 feminine +feminine +32459 masculine +neuter +masculine +masculine +masculine +32465 masculine +neuter +neuter +32469 masculine +masculine +32473 neuter +neuter +masculine +32478 neuter +32483 masculine +32487 masculine +feminine +32490 masculine +feminine +32493 masculine +32495 feminine +32497 masculine +masculine +masculine +32501 masculine +neuter +neuter +masculine +masculine +masculine +32509 masculine +masculine +masculine +32513 feminine +feminine +32516 masculine +masculine +32522 masculine +32526 feminine +feminine +feminine +32530 neuter +neuter +32534 masculine +32536 masculine +32540 masculine +masculine +feminine +feminine +masculine +masculine +32547 neuter +neuter +masculine +32553 masculine +masculine +32556 masculine +32560 masculine +32564 feminine +feminine +feminine +masculine +32569 masculine +32571 neuter +neuter +32574 feminine +feminine +32580 feminine +feminine +32589 masculine +masculine +masculine +32594 feminine +feminine +masculine +32599 feminine +32602 feminine +feminine +32606 feminine +feminine +masculine +32610 masculine +masculine +32614 masculine +masculine +32617 neuter +neuter +32620 masculine +32624 masculine +masculine +32627 feminine +feminine +feminine +32632 feminine +feminine +32635 masculine +32639 neuter +feminine +feminine +32643 feminine +feminine +32646 masculine +masculine +32650 masculine +masculine +32653 masculine +masculine +masculine +32657 masculine +masculine +32662 masculine +masculine +masculine +32667 masculine +masculine +32670 feminine +feminine +masculine +neuter +32675 masculine +32677 masculine +32679 feminine +feminine +32683 masculine +32685 feminine +neuter +neuter +32689 neuter +feminine +feminine +masculine +32696 masculine +32698 masculine +masculine +32701 neuter +masculine +32707 feminine +feminine +feminine +feminine +32713 masculine +masculine +32716 neuter +neuter +32721 feminine +feminine +masculine +32726 feminine +32728 masculine +masculine +masculine +32733 feminine +feminine +32736 masculine +masculine +neuter +neuter +neuter +32743 feminine +feminine +32746 neuter +32750 masculine +masculine +32757 masculine +32759 masculine +masculine +masculine +masculine +32765 neuter +masculine +masculine +masculine +32773 masculine +32775 neuter +neuter +neuter +masculine +32780 neuter +neuter +32784 masculine +neuter +neuter +masculine +32790 neuter +32792 masculine +32796 masculine +masculine +masculine +masculine +masculine +masculine +32804 feminine +32806 feminine +32808 neuter +neuter +neuter +32815 masculine +32817 masculine +32819 masculine +masculine +feminine +feminine +32824 masculine +32826 feminine +feminine +32830 feminine +feminine +masculine +32834 feminine +masculine +masculine +32838 feminine +masculine +masculine +32843 masculine +32845 feminine +32847 masculine +32849 feminine +32851 masculine +masculine +32855 feminine +32858 feminine +32860 masculine +32862 masculine +masculine +masculine +masculine +masculine +32868 masculine +feminine +feminine +32872 masculine +32874 masculine +32876 masculine +masculine +masculine +masculine +feminine +feminine +masculine +32884 masculine +32888 neuter +32890 masculine +neuter +32893 neuter +32897 masculine +masculine +masculine +masculine +32902 masculine +32905 neuter +32909 masculine +masculine +masculine +32914 feminine +feminine +masculine +32919 masculine +masculine +32922 masculine +masculine +32925 masculine +32929 masculine +32932 masculine +neuter +32937 masculine +32939 masculine +32942 masculine +32945 feminine +feminine +feminine +32950 feminine +feminine +masculine +masculine +32957 neuter +32961 masculine +32963 feminine +feminine +feminine +feminine +32970 neuter +masculine +masculine +32974 masculine +32977 masculine +masculine +masculine +masculine +32982 masculine +32984 masculine +32986 feminine +feminine +feminine +32991 neuter +32993 neuter +32995 feminine +feminine +32998 masculine +masculine +33001 neuter +masculine +33004 neuter +neuter +33007 masculine +33009 neuter +neuter +neuter +neuter +33014 masculine +33016 masculine +33018 feminine +feminine +33021 neuter +33023 masculine +33025 neuter +neuter +33028 masculine +masculine +33033 masculine +33036 masculine +masculine +33040 neuter +neuter +33044 neuter +neuter +33048 feminine +33050 masculine +masculine +33053 masculine +33055 feminine +feminine +masculine +neuter +33062 neuter +neuter +33066 neuter +neuter +33069 neuter +masculine +33072 neuter +masculine +neuter +33077 neuter +neuter +masculine +33082 masculine +masculine +33085 neuter +neuter +neuter +masculine +masculine +33091 masculine +33096 neuter +neuter +neuter +33101 neuter +33103 masculine +masculine +masculine +33107 neuter +neuter +masculine +masculine +33115 masculine +masculine +33118 masculine +33120 neuter +33122 masculine +33124 masculine +masculine +33127 masculine +33129 feminine +feminine +masculine +masculine +feminine +33138 masculine +33140 masculine +masculine +masculine +masculine +33145 masculine +masculine +masculine +33151 masculine +masculine +masculine +masculine +33158 masculine +33160 masculine +33162 masculine +33164 masculine +neuter +neuter +33168 feminine +feminine +masculine +neuter +33173 masculine +33177 neuter +33179 masculine +33181 feminine +feminine +feminine +33186 masculine +masculine +feminine +33190 masculine +masculine +masculine +masculine +33195 neuter +33197 masculine +masculine +masculine +33206 masculine +feminine +feminine +33210 masculine +masculine +33216 feminine +feminine +33220 masculine +33222 masculine +33224 masculine +masculine +33228 masculine +33230 masculine +masculine +masculine +33236 masculine +masculine +33241 masculine +33243 neuter +masculine +33248 masculine +masculine +33251 masculine +33254 masculine +masculine +33260 feminine +feminine +masculine +33264 masculine +33266 masculine +33268 feminine +feminine +33271 masculine +33275 feminine +feminine +feminine +33279 masculine +33281 masculine +33284 masculine +masculine +33287 masculine +masculine +33290 masculine +33292 feminine +feminine +feminine +feminine +33297 feminine +33299 feminine +33301 feminine +masculine +33305 neuter +33307 masculine +33310 masculine +masculine +33313 feminine +masculine +masculine +33317 masculine +33320 masculine +33325 masculine +33328 masculine +feminine +33331 masculine +33333 masculine +masculine +masculine +33337 neuter +neuter +33340 masculine +masculine +33343 masculine +33345 neuter +neuter +33348 neuter +neuter +33351 masculine +masculine +33354 masculine +feminine +feminine +masculine +33359 masculine +33362 feminine +feminine +33368 masculine +masculine +33371 masculine +masculine +masculine +masculine +33376 masculine +masculine +33379 feminine +masculine +33382 feminine +33386 masculine +masculine +masculine +33390 masculine +masculine +masculine +masculine +masculine +masculine +masculine +33399 masculine +neuter +33403 feminine +feminine +33406 neuter +33408 neuter +33412 feminine +feminine +33424 masculine +masculine +masculine +masculine +feminine +33431 feminine +feminine +33434 feminine +33436 masculine +masculine +33442 masculine +neuter +neuter +33448 masculine +masculine +33453 masculine +33455 masculine +masculine +33458 neuter +33462 masculine +masculine +masculine +masculine +masculine +masculine +33469 feminine +33471 masculine +33474 masculine +masculine +33478 masculine +masculine +33482 neuter +33486 neuter +33490 masculine +neuter +masculine +masculine +33495 neuter +neuter +33499 masculine +33503 masculine +neuter +masculine +33507 masculine +33510 feminine +feminine +masculine +masculine +33515 feminine +feminine +masculine +33520 masculine +masculine +masculine +33524 masculine +masculine +33527 masculine +33529 masculine +33532 masculine +masculine +33535 masculine +masculine +masculine +33539 masculine +masculine +masculine +masculine +33544 neuter +33546 masculine +masculine +33549 masculine +33554 masculine +masculine +masculine +33559 masculine +33561 feminine +masculine +33564 masculine +masculine +33567 masculine +33569 masculine +33573 masculine +33575 masculine +33577 feminine +33579 masculine +33582 masculine +masculine +masculine +masculine +33587 neuter +33589 feminine +33593 masculine +masculine +masculine +33597 masculine +masculine +33603 masculine +masculine +33607 masculine +33610 masculine +masculine +masculine +masculine +33615 masculine +masculine +masculine +33619 masculine +33625 feminine +33630 masculine +masculine +masculine +33636 feminine +feminine +feminine +33642 feminine +33644 masculine +33646 masculine +neuter +33649 neuter +neuter +masculine +33654 neuter +neuter +33660 neuter +neuter +33664 neuter +neuter +33668 neuter +neuter +neuter +33672 neuter +neuter +33675 masculine +33677 masculine +masculine +33680 masculine +masculine +33686 masculine +masculine +masculine +masculine +masculine +masculine +33693 masculine +33696 masculine +masculine +33700 masculine +masculine +33703 masculine +masculine +neuter +33707 masculine +masculine +masculine +33711 masculine +33714 masculine +masculine +masculine +33721 neuter +33723 masculine +33725 masculine +33730 masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +33739 masculine +masculine +masculine +33743 neuter +33745 neuter +33748 neuter +neuter +33751 masculine +33753 masculine +33755 masculine +masculine +33759 neuter +neuter +33762 masculine +33765 masculine +33767 masculine +33769 masculine +masculine +33774 masculine +masculine +masculine +masculine +33779 masculine +masculine +feminine +feminine +masculine +33787 masculine +33789 masculine +masculine +33796 masculine +masculine +masculine +33801 masculine +33803 masculine +neuter +neuter +masculine +masculine +masculine +masculine +33813 neuter +neuter +33816 masculine +33818 feminine +feminine +33824 masculine +33827 feminine +feminine +masculine +feminine +feminine +33833 feminine +33836 masculine +masculine +masculine +33840 masculine +masculine +33844 neuter +neuter +33850 masculine +33852 masculine +33854 masculine +masculine +masculine +33859 masculine +masculine +masculine +feminine +masculine +feminine +feminine +33870 neuter +neuter +33873 masculine +33877 masculine +masculine +33880 masculine +33885 neuter +neuter +33890 feminine +33895 masculine +masculine +masculine +33899 masculine +33901 feminine +feminine +33905 masculine +33909 feminine +feminine +masculine +33913 masculine +33915 feminine +33919 masculine +33921 neuter +33923 masculine +masculine +33928 feminine +feminine +feminine +33932 masculine +33934 neuter +neuter +33939 masculine +33941 feminine +feminine +masculine +masculine +33948 feminine +33950 masculine +masculine +masculine +33954 masculine +33956 masculine +33958 masculine +33960 masculine +33962 masculine +masculine +33966 masculine +33968 masculine +masculine +masculine +masculine +33973 masculine +33975 masculine +33977 masculine +33979 masculine +33981 masculine +33983 masculine +33985 masculine +masculine +33988 masculine +masculine +masculine +masculine +33993 masculine +masculine +33996 masculine +masculine +masculine +34000 masculine +34002 masculine +34004 masculine +34007 masculine +masculine +34010 masculine +masculine +masculine +masculine +34015 neuter +neuter +masculine +masculine +34020 feminine +feminine +feminine +34024 feminine +34026 feminine +feminine +feminine +34030 feminine +masculine +34034 masculine +34038 feminine +feminine +masculine +34042 masculine +masculine +34045 neuter +neuter +34049 masculine +masculine +masculine +34054 masculine +34056 feminine +34058 masculine +34062 masculine +34064 masculine +masculine +masculine +masculine +masculine +34070 masculine +masculine +masculine +34074 masculine +masculine +masculine +34078 feminine +34080 feminine +feminine +masculine +masculine +masculine +masculine +masculine +34090 masculine +masculine +masculine +34096 masculine +34101 masculine +masculine +34111 neuter +neuter +34115 neuter +34117 masculine +masculine +masculine +masculine +34123 feminine +feminine +feminine +34130 masculine +masculine +34133 masculine +34135 masculine +masculine +34139 neuter +neuter +34142 masculine +masculine +masculine +masculine +masculine +34150 masculine +masculine +34154 feminine +feminine +34159 masculine +masculine +34165 masculine +masculine +34177 masculine +masculine +masculine +34182 neuter +neuter +34185 masculine +masculine +masculine +masculine +masculine +34193 masculine +masculine +34196 masculine +masculine +34201 masculine +masculine +34205 masculine +masculine +34210 masculine +masculine +34213 masculine +masculine +34217 feminine +feminine +34221 feminine +feminine +34225 masculine +masculine +34228 neuter +neuter +34231 masculine +masculine +34235 masculine +masculine +34241 masculine +masculine +neuter +neuter +34253 masculine +masculine +34256 masculine +34261 masculine +masculine +34264 feminine +feminine +34270 masculine +masculine +masculine +masculine +masculine +34280 masculine +masculine +34283 feminine +feminine +34288 masculine +masculine +neuter +neuter +34297 masculine +34300 feminine +feminine +34305 masculine +masculine +34310 neuter +neuter +34314 masculine +masculine +34321 neuter +masculine +34325 masculine +masculine +34328 masculine +34331 masculine +masculine +34334 masculine +masculine +34338 masculine +masculine +34341 masculine +34343 masculine +34345 masculine +masculine +34348 masculine +34371 neuter +neuter +neuter +neuter +neuter +34378 masculine +masculine +34382 neuter +neuter +34390 feminine +masculine +34394 masculine +masculine +34398 masculine +34400 masculine +34404 masculine +34406 masculine +masculine +34409 masculine +masculine +34413 masculine +masculine +masculine +34417 neuter +34419 neuter +neuter +neuter +34423 masculine +masculine +masculine +masculine +34429 feminine +feminine +feminine +34433 masculine +masculine +masculine +34441 masculine +masculine +34444 masculine +34447 neuter +neuter +neuter +34451 masculine +masculine +34454 masculine +feminine +34457 masculine +masculine +34460 feminine +34462 masculine +masculine +34465 neuter +feminine +feminine +34469 masculine +masculine +34475 neuter +neuter +neuter +34479 masculine +masculine +masculine +masculine +34488 neuter +neuter +neuter +masculine +masculine +34495 neuter +neuter +neuter +masculine +masculine +34501 neuter +neuter +34504 masculine +masculine +masculine +34511 feminine +34513 neuter +34516 feminine +feminine +34519 masculine +masculine +masculine +34523 masculine +masculine +masculine +feminine +feminine +34529 neuter +neuter +34532 masculine +masculine +34535 masculine +masculine +34538 neuter +neuter +34542 neuter +feminine +34545 neuter +neuter +masculine +34549 neuter +34552 masculine +masculine +34557 neuter +34559 masculine +masculine +masculine +34565 masculine +34567 masculine +masculine +34570 masculine +masculine +34574 masculine +34576 masculine +masculine +34579 masculine +masculine +feminine +masculine +34588 masculine +34590 feminine +feminine +34593 feminine +feminine +34596 masculine +masculine +feminine +feminine +feminine +34605 feminine +34607 neuter +34610 feminine +34612 masculine +masculine +34616 masculine +masculine +34619 masculine +masculine +feminine +34623 feminine +feminine +34626 masculine +feminine +34629 masculine +masculine +34632 masculine +34636 neuter +neuter +feminine +feminine +feminine +neuter +34644 neuter +neuter +neuter +masculine +34649 feminine +feminine +masculine +masculine +34655 feminine +34657 masculine +masculine +masculine +34661 masculine +34664 masculine +34666 masculine +masculine +34669 masculine +34671 masculine +masculine +34675 masculine +masculine +masculine +masculine +masculine +masculine +34682 masculine +34684 masculine +masculine +masculine +34688 masculine +masculine +34691 masculine +masculine +34694 masculine +34696 masculine +34698 masculine +34700 masculine +34702 neuter +34705 neuter +neuter +34709 feminine +feminine +masculine +34715 masculine +masculine +34719 masculine +34722 masculine +34724 feminine +masculine +34727 feminine +feminine +34730 masculine +masculine +masculine +masculine +masculine +masculine +34741 masculine +34744 feminine +feminine +34750 masculine +34757 masculine +34760 masculine +masculine +34767 masculine +34769 feminine +masculine +masculine +34773 masculine +masculine +34777 masculine +34782 masculine +34787 masculine +masculine +34791 neuter +34795 masculine +neuter +masculine +masculine +34800 masculine +34802 masculine +masculine +masculine +masculine +masculine +34812 masculine +masculine +feminine +feminine +34818 masculine +34820 masculine +masculine +masculine +masculine +34825 masculine +masculine +masculine +34831 masculine +34835 feminine +feminine +feminine +34840 masculine +masculine +masculine +masculine +34845 masculine +masculine +34850 feminine +feminine +feminine +feminine +34857 masculine +masculine +masculine +feminine +feminine +masculine +34864 feminine +34866 feminine +34868 masculine +feminine +feminine +masculine +34874 feminine +34876 masculine +feminine +masculine +masculine +34882 feminine +34885 feminine +34889 masculine +34891 feminine +feminine +34894 masculine +masculine +34899 masculine +34905 masculine +masculine +34912 masculine +feminine +feminine +masculine +34918 masculine +masculine +34922 masculine +masculine +masculine +34926 masculine +masculine +34934 masculine +masculine +masculine +masculine +masculine +34941 masculine +masculine +masculine +34945 masculine +34947 feminine +feminine +feminine +34951 feminine +feminine +feminine +34956 masculine +masculine +masculine +masculine +34961 neuter +neuter +34964 masculine +34966 masculine +masculine +masculine +masculine +masculine +masculine +34974 masculine +masculine +masculine +34979 masculine +masculine +34982 masculine +34985 masculine +34987 masculine +masculine +masculine +34991 masculine +masculine +masculine +34998 masculine +35001 masculine +masculine +35004 masculine +35007 feminine +feminine +feminine +35011 masculine +35013 feminine +35015 feminine +35017 neuter +neuter +35020 masculine +masculine +35025 masculine +35027 masculine +masculine +35030 masculine +neuter +35035 masculine +35037 masculine +35039 masculine +35042 masculine +35044 masculine +35046 masculine +35049 masculine +35052 masculine +35058 masculine +masculine +masculine +masculine +35065 masculine +masculine +35068 masculine +neuter +35073 feminine +feminine +masculine +35077 masculine +masculine +35080 neuter +35083 masculine +35085 neuter +neuter +masculine +35089 masculine +35091 masculine +masculine +35094 feminine +masculine +35097 masculine +masculine +35101 neuter +35104 masculine +35109 neuter +masculine +masculine +35114 masculine +35118 masculine +masculine +35122 neuter +35124 masculine +35126 feminine +feminine +35133 masculine +35135 masculine +feminine +masculine +masculine +35141 masculine +masculine +35144 feminine +feminine +masculine +masculine +masculine +masculine +35152 masculine +masculine +masculine +35156 masculine +masculine +masculine +35160 masculine +masculine +masculine +neuter +neuter +masculine +35167 masculine +masculine +35170 masculine +masculine +feminine +feminine +masculine +masculine +35178 masculine +35180 masculine +35182 masculine +35184 neuter +35186 masculine +masculine +feminine +feminine +feminine +35192 neuter +35194 masculine +masculine +35197 neuter +neuter +35200 feminine +neuter +35203 neuter +neuter +neuter +35218 masculine +masculine +masculine +35222 masculine +masculine +35225 masculine +masculine +35229 neuter +35232 masculine +masculine +masculine +masculine +masculine +35238 masculine +35242 masculine +masculine +35245 masculine +masculine +masculine +35249 masculine +35252 feminine +feminine +35255 neuter +neuter +neuter +feminine +35261 masculine +masculine +masculine +masculine +35268 masculine +35270 masculine +35272 masculine +masculine +masculine +masculine +35279 feminine +feminine +35283 feminine +feminine +feminine +35287 feminine +35291 feminine +feminine +masculine +masculine +feminine +neuter +neuter +35299 feminine +35302 masculine +masculine +masculine +feminine +35307 neuter +neuter +35310 masculine +masculine +masculine +35314 feminine +feminine +feminine +feminine +feminine +35322 masculine +masculine +masculine +35327 neuter +neuter +35330 masculine +masculine +masculine +masculine +masculine +masculine +35338 masculine +masculine +35341 masculine +35343 masculine +35346 feminine +35348 feminine +feminine +feminine +feminine +35353 masculine +35355 feminine +35358 masculine +masculine +masculine +35363 masculine +masculine +35367 neuter +35370 masculine +masculine +35375 masculine +35377 masculine +masculine +masculine +masculine +35382 neuter +neuter +35385 masculine +masculine +35389 masculine +masculine +35392 masculine +35395 masculine +masculine +neuter +35399 masculine +masculine +masculine +35405 masculine +neuter +neuter +35410 masculine +35412 masculine +35416 masculine +35418 feminine +feminine +masculine +masculine +35424 feminine +feminine +feminine +35430 feminine +feminine +neuter +35435 masculine +35439 feminine +neuter +neuter +35444 masculine +masculine +35447 feminine +feminine +feminine +35451 neuter +35456 feminine +35458 feminine +35462 feminine +35464 masculine +masculine +neuter +feminine +feminine +35473 feminine +neuter +35476 masculine +masculine +35479 neuter +35484 feminine +feminine +feminine +feminine +feminine +35491 neuter +35493 masculine +neuter +35496 neuter +35500 feminine +35503 feminine +feminine +35507 masculine +masculine +35511 masculine +masculine +masculine +35515 masculine +35517 feminine +35522 feminine +feminine +feminine +feminine +35531 feminine +35535 masculine +35538 masculine +35541 feminine +35543 feminine +masculine +35546 masculine +feminine +feminine +masculine +masculine +35553 masculine +masculine +35557 feminine +feminine +feminine +35561 feminine +35563 neuter +neuter +35566 feminine +feminine +feminine +feminine +feminine +35572 feminine +neuter +35577 feminine +feminine +masculine +masculine +masculine +35583 feminine +35585 feminine +feminine +feminine +35589 masculine +35591 neuter +neuter +feminine +35595 masculine +masculine +masculine +35599 masculine +35601 feminine +masculine +35604 masculine +35607 feminine +35609 masculine +masculine +neuter +35613 masculine +masculine +masculine +35618 neuter +35620 masculine +neuter +35625 feminine +feminine +35630 neuter +neuter +masculine +masculine +35635 neuter +35637 neuter +35640 feminine +feminine +35643 neuter +35646 neuter +35649 feminine +35651 neuter +35654 neuter +feminine +feminine +35658 feminine +feminine +feminine +35662 neuter +35664 neuter +35667 feminine +feminine +feminine +feminine +35672 neuter +35674 masculine +masculine +neuter +masculine +35679 masculine +masculine +neuter +35686 masculine +masculine +masculine +masculine +feminine +35692 feminine +feminine +feminine +35696 masculine +35701 neuter +neuter +feminine +feminine +masculine +masculine +35708 masculine +masculine +35711 feminine +35713 masculine +35717 masculine +35722 feminine +feminine +feminine +masculine +masculine +35728 masculine +masculine +masculine +masculine +35733 masculine +35735 feminine +feminine +35738 masculine +masculine +35742 masculine +masculine +35746 masculine +masculine +35749 feminine +feminine +masculine +35754 masculine +35757 masculine +35759 feminine +feminine +masculine +35765 feminine +35767 masculine +masculine +35770 masculine +feminine +35774 masculine +35776 masculine +35780 masculine +masculine +35784 neuter +35786 feminine +feminine +neuter +masculine +35791 masculine +masculine +35795 feminine +35797 masculine +35799 feminine +masculine +masculine +masculine +35808 neuter +35810 feminine +feminine +feminine +masculine +35815 masculine +35817 feminine +feminine +35820 feminine +masculine +masculine +masculine +35828 feminine +35830 masculine +masculine +masculine +35834 masculine +neuter +35838 feminine +35842 feminine +35845 masculine +masculine +35848 neuter +neuter +35853 neuter +neuter +35856 neuter +35859 neuter +neuter +35866 neuter +35874 masculine +35877 masculine +35880 masculine +35884 neuter +35889 masculine +35893 masculine +feminine +feminine +35897 masculine +masculine +masculine +35904 masculine +35906 masculine +masculine +35910 masculine +feminine +feminine +35915 masculine +masculine +35922 masculine +35924 masculine +masculine +35928 masculine +feminine +35932 masculine +35934 masculine +35936 masculine +masculine +masculine +masculine +masculine +masculine +35943 masculine +35947 feminine +feminine +feminine +35951 masculine +35954 neuter +35956 masculine +masculine +masculine +35962 masculine +35965 neuter +35967 feminine +feminine +35972 masculine +masculine +35977 feminine +masculine +35980 feminine +feminine +35987 masculine +35989 masculine +masculine +masculine +masculine +35995 masculine +masculine +35998 masculine +masculine +36001 masculine +masculine +neuter +neuter +36009 feminine +36012 masculine +36014 feminine +feminine +36018 masculine +36020 masculine +36022 masculine +36024 masculine +masculine +36029 masculine +masculine +36032 neuter +neuter +36037 masculine +36041 feminine +feminine +masculine +masculine +feminine +36048 feminine +feminine +36051 masculine +masculine +36054 feminine +feminine +36057 masculine +masculine +36060 feminine +feminine +masculine +neuter +36065 masculine +masculine +36069 neuter +36072 feminine +36077 neuter +neuter +36080 masculine +masculine +masculine +masculine +36085 masculine +36087 feminine +feminine +36090 neuter +36094 masculine +masculine +masculine +masculine +masculine +masculine +36107 neuter +neuter +neuter +neuter +36113 masculine +masculine +36116 masculine +masculine +36119 masculine +36122 feminine +36124 feminine +masculine +36127 masculine +neuter +neuter +36132 neuter +neuter +36135 feminine +feminine +36139 masculine +masculine +masculine +neuter +36144 neuter +36147 masculine +36149 masculine +36152 neuter +neuter +36155 masculine +36158 masculine +36162 neuter +36164 feminine +feminine +36170 feminine +masculine +masculine +feminine +36175 neuter +neuter +36179 masculine +36182 neuter +36184 masculine +36188 neuter +36190 neuter +neuter +neuter +36194 masculine +masculine +36198 masculine +masculine +36202 feminine +feminine +36205 masculine +masculine +36208 feminine +feminine +36213 masculine +masculine +masculine +neuter +neuter +36222 feminine +feminine +36226 masculine +masculine +36231 neuter +neuter +36236 masculine +masculine +36240 masculine +masculine +masculine +36244 masculine +neuter +neuter +36248 masculine +36250 masculine +36252 masculine +masculine +masculine +masculine +36260 masculine +masculine +masculine +36265 masculine +masculine +36269 neuter +neuter +neuter +feminine +feminine +masculine +masculine +masculine +36279 neuter +36281 masculine +masculine +36285 masculine +masculine +36288 neuter +36292 masculine +masculine +masculine +36296 masculine +36298 neuter +neuter +36302 masculine +36305 masculine +masculine +36309 masculine +masculine +36314 neuter +36317 masculine +masculine +36322 feminine +feminine +feminine +masculine +neuter +36328 masculine +masculine +masculine +36333 neuter +36335 masculine +masculine +36338 masculine +masculine +masculine +36342 masculine +36344 masculine +masculine +36349 masculine +masculine +neuter +masculine +36354 masculine +masculine +feminine +feminine +36360 masculine +36362 masculine +masculine +masculine +36366 masculine +36369 masculine +masculine +masculine +36373 feminine +feminine +36376 neuter +36379 masculine +36381 feminine +36385 neuter +36387 masculine +masculine +masculine +36391 masculine +36393 feminine +feminine +36396 feminine +neuter +36399 neuter +36401 feminine +36405 masculine +36407 feminine +36410 neuter +neuter +neuter +neuter +masculine +36418 feminine +feminine +neuter +neuter +feminine +36425 masculine +masculine +masculine +masculine +masculine +36432 masculine +masculine +36435 masculine +masculine +masculine +masculine +masculine +36445 masculine +masculine +36450 masculine +36454 feminine +feminine +36459 feminine +feminine +feminine +36465 feminine +36468 feminine +masculine +36471 feminine +feminine +36474 masculine +36477 masculine +masculine +masculine +36485 masculine +36487 feminine +feminine +feminine +feminine +36496 feminine +36498 masculine +masculine +36501 masculine +36503 masculine +masculine +masculine +36508 feminine +feminine +36513 masculine +masculine +36516 masculine +masculine +masculine +36520 masculine +36523 neuter +36528 masculine +36530 feminine +feminine +36535 masculine +36537 masculine +36540 masculine +36542 masculine +36544 masculine +36546 masculine +masculine +feminine +feminine +36551 feminine +feminine +36554 masculine +36558 feminine +36560 masculine +36570 masculine +masculine +36575 masculine +masculine +feminine +feminine +feminine +36581 masculine +feminine +feminine +36587 neuter +neuter +feminine +36595 feminine +36600 masculine +masculine +feminine +36604 masculine +36606 masculine +masculine +36609 neuter +neuter +36612 masculine +masculine +36616 masculine +feminine +36619 feminine +36621 neuter +neuter +neuter +36625 feminine +36629 masculine +36631 feminine +feminine +masculine +masculine +36640 masculine +neuter +36644 feminine +feminine +36647 feminine +36649 feminine +36651 masculine +36653 neuter +36657 masculine +36662 feminine +feminine +36672 masculine +36676 masculine +36678 feminine +feminine +feminine +masculine +masculine +36684 masculine +masculine +36689 neuter +36691 masculine +36693 masculine +36696 feminine +feminine +masculine +36700 masculine +36704 masculine +masculine +masculine +neuter +neuter +neuter +36713 neuter +36716 masculine +36718 masculine +36721 masculine +36724 masculine +36726 masculine +36729 masculine +36731 masculine +masculine +masculine +masculine +36738 masculine +masculine +36743 masculine +36745 masculine +36747 masculine +36749 neuter +36753 masculine +36755 masculine +masculine +masculine +36759 masculine +neuter +36763 masculine +masculine +36767 feminine +36769 feminine +feminine +feminine +36773 masculine +masculine +masculine +36777 masculine +36779 masculine +masculine +36782 masculine +36784 feminine +feminine +masculine +masculine +36789 masculine +feminine +feminine +masculine +36795 feminine +feminine +36800 masculine +masculine +36804 masculine +36806 masculine +masculine +36809 masculine +36811 feminine +masculine +feminine +36815 masculine +36819 masculine +36823 masculine +masculine +36829 masculine +36831 masculine +36835 masculine +36840 neuter +36842 masculine +36845 masculine +36849 masculine +36853 masculine +masculine +masculine +masculine +neuter +36861 masculine +masculine +36866 masculine +masculine +masculine +36870 masculine +feminine +36880 masculine +36882 masculine +masculine +36885 masculine +36887 masculine +36889 masculine +masculine +36892 masculine +masculine +36895 masculine +36900 masculine +masculine +36903 masculine +masculine +36909 masculine +36912 neuter +neuter +masculine +neuter +masculine +36921 neuter +36923 masculine +masculine +36926 feminine +36928 masculine +masculine +masculine +36933 masculine +masculine +masculine +36938 masculine +masculine +36942 masculine +masculine +36945 masculine +masculine +masculine +36949 masculine +masculine +36952 masculine +36954 masculine +masculine +masculine +masculine +36961 masculine +36964 masculine +36969 masculine +masculine +36972 masculine +masculine +masculine +masculine +36977 masculine +masculine +masculine +36981 masculine +36983 neuter +masculine +36987 masculine +masculine +masculine +masculine +neuter +36996 masculine +masculine +36999 masculine +37001 masculine +37005 feminine +feminine +feminine +37012 masculine +37014 masculine +37020 masculine +37023 masculine +masculine +masculine +37027 feminine +37033 masculine +37035 feminine +feminine +masculine +37040 feminine +37043 masculine +37045 feminine +feminine +masculine +37050 masculine +37052 feminine +37054 neuter +37056 masculine +masculine +masculine +masculine +masculine +37062 masculine +masculine +37065 masculine +37068 masculine +37072 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +37084 feminine +feminine +masculine +37088 masculine +masculine +37091 masculine +masculine +masculine +37099 masculine +masculine +37102 masculine +masculine +37107 masculine +37111 feminine +feminine +masculine +masculine +37118 masculine +masculine +masculine +37122 feminine +37125 masculine +masculine +37128 masculine +37130 masculine +37133 neuter +neuter +37139 neuter +37141 masculine +neuter +neuter +neuter +neuter +masculine +neuter +37149 masculine +masculine +masculine +masculine +masculine +37156 masculine +37159 masculine +masculine +37162 masculine +37164 masculine +masculine +masculine +37168 feminine +37170 feminine +feminine +masculine +feminine +37176 feminine +37179 masculine +masculine +37182 masculine +37184 masculine +37186 masculine +masculine +37189 masculine +37191 feminine +feminine +masculine +37195 masculine +37197 masculine +masculine +masculine +masculine +37204 neuter +37206 masculine +37208 masculine +37210 masculine +masculine +37213 masculine +masculine +masculine +neuter +37223 feminine +feminine +feminine +37228 feminine +masculine +37231 feminine +masculine +37234 masculine +neuter +37238 neuter +masculine +masculine +37242 feminine +37245 masculine +37249 neuter +37251 masculine +37253 feminine +feminine +37256 feminine +37259 feminine +feminine +feminine +masculine +37264 masculine +masculine +37267 masculine +masculine +masculine +37273 neuter +37275 feminine +feminine +37278 masculine +masculine +37281 masculine +37284 masculine +37287 feminine +feminine +feminine +neuter +neuter +37295 feminine +37297 feminine +masculine +masculine +37301 neuter +neuter +37304 masculine +masculine +masculine +37309 masculine +37311 masculine +masculine +37314 masculine +masculine +37320 masculine +masculine +37324 masculine +37329 neuter +37331 masculine +37337 masculine +37339 masculine +37344 masculine +neuter +masculine +37349 masculine +masculine +37354 neuter +37359 masculine +masculine +masculine +37364 feminine +feminine +37367 feminine +37378 masculine +masculine +37383 masculine +masculine +37386 masculine +neuter +neuter +37393 masculine +masculine +neuter +neuter +neuter +neuter +37401 masculine +masculine +37405 masculine +masculine +masculine +masculine +37411 masculine +37413 feminine +feminine +masculine +masculine +37418 masculine +masculine +37421 neuter +neuter +37426 masculine +masculine +masculine +37432 neuter +neuter +37435 masculine +masculine +masculine +37439 masculine +masculine +masculine +masculine +37446 feminine +masculine +37449 masculine +37451 neuter +neuter +neuter +37456 neuter +37458 masculine +37462 neuter +37466 masculine +37468 neuter +neuter +neuter +37474 masculine +masculine +neuter +37478 masculine +masculine +37481 masculine +37483 masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +neuter +37494 neuter +37496 masculine +37499 masculine +37501 masculine +37503 neuter +neuter +neuter +37507 neuter +neuter +37514 masculine +37518 masculine +masculine +37522 masculine +masculine +37525 masculine +37527 masculine +masculine +37530 masculine +37532 masculine +masculine +masculine +37536 masculine +37538 masculine +37540 neuter +neuter +37543 masculine +neuter +37547 masculine +37556 masculine +masculine +37561 masculine +37572 neuter +37574 feminine +feminine +feminine +feminine +masculine +37580 masculine +neuter +neuter +37584 neuter +37587 feminine +37590 masculine +37592 neuter +masculine +37595 masculine +37598 feminine +masculine +37602 masculine +37606 masculine +37608 neuter +neuter +masculine +37612 neuter +37614 feminine +37616 masculine +masculine +masculine +masculine +37621 masculine +37623 masculine +37626 neuter +37629 masculine +masculine +37633 masculine +37635 masculine +37637 masculine +37641 feminine +feminine +37644 masculine +masculine +37647 feminine +feminine +37650 masculine +37652 masculine +37660 masculine +masculine +masculine +feminine +feminine +masculine +37668 neuter +neuter +masculine +masculine +feminine +37674 masculine +masculine +masculine +masculine +37681 feminine +feminine +37687 masculine +37691 masculine +37696 masculine +37698 masculine +masculine +37703 masculine +37705 masculine +masculine +37708 masculine +masculine +masculine +37713 masculine +37715 feminine +feminine +masculine +masculine +37722 masculine +37725 masculine +37727 neuter +37731 masculine +37733 masculine +masculine +37739 masculine +masculine +masculine +masculine +masculine +feminine +feminine +37747 neuter +37749 masculine +37751 neuter +37753 masculine +37755 feminine +feminine +masculine +masculine +37761 neuter +37763 masculine +masculine +masculine +37769 masculine +37773 neuter +masculine +37776 feminine +feminine +37779 masculine +37782 masculine +37787 masculine +37789 masculine +masculine +masculine +37793 masculine +masculine +masculine +37798 masculine +masculine +masculine +masculine +37803 masculine +37806 masculine +masculine +masculine +37814 masculine +37816 neuter +masculine +37820 neuter +37822 feminine +37824 neuter +37826 masculine +37828 feminine +feminine +37834 feminine +feminine +37837 neuter +37839 feminine +masculine +masculine +masculine +37847 masculine +feminine +37851 masculine +feminine +feminine +37863 feminine +feminine +feminine +37867 masculine +37869 masculine +neuter +37872 masculine +37874 masculine +masculine +masculine +masculine +masculine +masculine +37883 feminine +37885 feminine +37889 feminine +feminine +37896 neuter +neuter +37901 masculine +37903 feminine +masculine +37907 masculine +37911 feminine +feminine +masculine +masculine +37918 feminine +feminine +37925 masculine +37927 feminine +feminine +feminine +37932 masculine +masculine +masculine +masculine +37938 feminine +feminine +37942 masculine +masculine +37947 neuter +37951 feminine +feminine +masculine +masculine +37958 neuter +37960 feminine +feminine +feminine +neuter +37966 feminine +feminine +feminine +37971 feminine +37974 feminine +37978 feminine +37980 feminine +37982 feminine +feminine +feminine +feminine +37991 masculine +37993 feminine +masculine +37997 feminine +37999 feminine +neuter +38003 feminine +feminine +38008 feminine +38012 masculine +38015 masculine +masculine +38018 masculine +masculine +38024 masculine +masculine +38030 masculine +38032 masculine +38034 masculine +masculine +38039 masculine +38042 feminine +masculine +masculine +38046 neuter +neuter +38051 neuter +neuter +38056 masculine +38058 masculine +masculine +38061 feminine +38063 masculine +masculine +masculine +38069 feminine +feminine +neuter +38074 masculine +38076 masculine +38079 feminine +feminine +feminine +masculine +masculine +38085 neuter +38092 neuter +38096 neuter +neuter +38103 neuter +neuter +38108 masculine +masculine +38111 feminine +feminine +feminine +38115 neuter +neuter +neuter +neuter +38123 masculine +masculine +masculine +masculine +38128 feminine +feminine +38132 neuter +38134 masculine +38136 masculine +38139 neuter +masculine +38142 masculine +masculine +38146 feminine +38150 neuter +38154 masculine +masculine +38158 masculine +38160 masculine +38162 masculine +masculine +38166 masculine +masculine +38169 masculine +38171 masculine +masculine +38175 masculine +masculine +38179 masculine +38182 masculine +masculine +38185 masculine +38187 masculine +masculine +38190 feminine +38192 masculine +masculine +masculine +masculine +masculine +neuter +38203 masculine +masculine +38206 masculine +38209 neuter +38217 neuter +38224 masculine +masculine +38227 masculine +masculine +masculine +masculine +neuter +masculine +feminine +feminine +38237 masculine +38240 masculine +38242 masculine +masculine +neuter +38249 masculine +masculine +38253 masculine +masculine +masculine +38258 feminine +feminine +feminine +38264 feminine +feminine +feminine +38270 feminine +feminine +feminine +38276 feminine +feminine +feminine +38281 masculine +38285 masculine +38288 masculine +38291 neuter +38296 masculine +masculine +38299 masculine +38302 masculine +masculine +38305 masculine +38309 masculine +masculine +masculine +38313 masculine +masculine +38317 feminine +38319 feminine +38321 masculine +38323 masculine +38325 masculine +masculine +38328 feminine +masculine +38331 masculine +masculine +38335 feminine +masculine +masculine +38340 feminine +feminine +feminine +38344 masculine +masculine +38350 masculine +38352 masculine +masculine +masculine +38356 masculine +38359 masculine +masculine +masculine +38364 masculine +38366 masculine +38369 masculine +38371 neuter +neuter +masculine +masculine +neuter +38377 masculine +38379 masculine +masculine +38382 neuter +neuter +neuter +38386 masculine +38388 neuter +38391 masculine +38394 feminine +38396 masculine +38398 neuter +38400 masculine +masculine +38405 masculine +38407 neuter +38409 neuter +38413 neuter +38420 masculine +masculine +masculine +masculine +38426 masculine +masculine +38429 masculine +masculine +38432 masculine +38434 masculine +masculine +neuter +neuter +38439 masculine +38442 masculine +masculine +masculine +38452 neuter +38454 masculine +masculine +38458 feminine +feminine +38461 feminine +feminine +neuter +feminine +38466 masculine +38468 feminine +feminine +38471 feminine +38473 feminine +feminine +feminine +feminine +38478 feminine +38480 masculine +masculine +masculine +masculine +38485 masculine +masculine +masculine +38489 feminine +feminine +38493 feminine +feminine +38496 feminine +38498 masculine +38503 feminine +feminine +38506 feminine +38512 feminine +38517 masculine +38519 feminine +masculine +masculine +feminine +feminine +38528 neuter +38530 neuter +feminine +38534 neuter +38536 feminine +feminine +feminine +feminine +38541 feminine +38544 feminine +38548 neuter +38550 masculine +masculine +38553 masculine +masculine +38558 masculine +masculine +masculine +masculine +38563 masculine +masculine +38570 masculine +38572 masculine +masculine +masculine +38577 masculine +38581 masculine +38583 neuter +neuter +38587 feminine +feminine +38590 masculine +masculine +38593 masculine +masculine +38597 neuter +38599 feminine +38603 feminine +feminine +38608 masculine +38610 masculine +masculine +38618 masculine +38622 masculine +masculine +38627 masculine +38631 masculine +neuter +38635 masculine +masculine +38639 masculine +masculine +38642 masculine +38646 feminine +38652 neuter +38654 masculine +masculine +38657 masculine +38661 masculine +38664 feminine +feminine +38668 neuter +neuter +38674 feminine +feminine +38679 masculine +38688 masculine +masculine +38691 neuter +38693 masculine +masculine +38697 feminine +feminine +masculine +masculine +38702 masculine +masculine +38720 masculine +masculine +masculine +38725 masculine +masculine +38729 masculine +masculine +38733 masculine +38736 masculine +masculine +38739 masculine +masculine +masculine +38744 masculine +masculine +masculine +38751 neuter +38753 masculine +masculine +38758 masculine +masculine +38761 neuter +neuter +38764 neuter +neuter +38767 neuter +38769 masculine +masculine +masculine +38773 masculine +38775 neuter +neuter +masculine +masculine +masculine +38782 masculine +neuter +38785 neuter +38787 neuter +38790 neuter +neuter +neuter +38794 masculine +masculine +38798 masculine +masculine +38801 masculine +38803 masculine +38806 masculine +masculine +masculine +neuter +neuter +38812 neuter +neuter +38815 masculine +masculine +neuter +38819 masculine +38822 masculine +38824 masculine +masculine +masculine +neuter +neuter +38830 masculine +feminine +feminine +38834 feminine +feminine +38838 masculine +38840 masculine +38845 masculine +masculine +38848 masculine +38852 feminine +feminine +masculine +38858 masculine +38861 neuter +neuter +38867 masculine +38869 neuter +neuter +masculine +masculine +38875 masculine +38878 neuter +masculine +38881 masculine +38886 masculine +masculine +38890 neuter +neuter +38896 feminine +feminine +masculine +masculine +38901 masculine +masculine +masculine +38905 feminine +masculine +feminine +38909 feminine +38911 neuter +neuter +masculine +38916 masculine +masculine +masculine +38920 masculine +feminine +feminine +masculine +38926 feminine +38929 neuter +neuter +masculine +38933 masculine +38935 masculine +38942 masculine +38944 masculine +38949 neuter +neuter +neuter +38954 masculine +masculine +38958 masculine +masculine +neuter +feminine +38964 neuter +38968 masculine +masculine +38974 neuter +38976 masculine +38978 masculine +38983 neuter +neuter +neuter +neuter +38989 neuter +38994 neuter +neuter +masculine +masculine +masculine +neuter +neuter +neuter +39005 neuter +39007 masculine +neuter +feminine +feminine +feminine +feminine +39014 masculine +masculine +39017 masculine +feminine +feminine +feminine +feminine +feminine +39025 masculine +masculine +39029 masculine +39032 masculine +masculine +masculine +masculine +masculine +masculine +masculine +39040 masculine +39042 masculine +masculine +masculine +39047 feminine +feminine +feminine +feminine +feminine +39053 neuter +39056 neuter +39059 feminine +39062 neuter +neuter +masculine +39068 masculine +masculine +masculine +neuter +39075 masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +masculine +39086 feminine +feminine +39089 masculine +masculine +feminine +feminine +feminine +39096 masculine +39100 neuter +neuter +feminine +feminine +39105 feminine +feminine +masculine +39110 neuter +masculine +39113 masculine +masculine +39117 feminine +feminine +39120 feminine +feminine +feminine +39125 feminine +39129 neuter +neuter +masculine +39134 neuter +masculine +39137 masculine +masculine +masculine +39141 feminine +39145 masculine +masculine +39149 feminine +feminine +39152 masculine +masculine +neuter +neuter +39157 masculine +masculine +neuter +neuter +39162 masculine +masculine +39166 masculine +masculine +39169 masculine +39172 neuter +neuter +neuter +39176 neuter +39180 masculine +39183 neuter +neuter +39186 neuter +39190 neuter +neuter +neuter +39195 neuter +39199 neuter +neuter +39202 neuter +neuter +39205 neuter +neuter +neuter +neuter +39210 neuter +neuter +39214 masculine +masculine +feminine +feminine +39222 neuter +39225 masculine +masculine +39230 masculine +39232 masculine +39235 masculine +masculine +masculine +39241 neuter +39244 neuter +neuter +39248 masculine +masculine +39251 masculine +39254 masculine +masculine +neuter +39258 neuter +neuter +39261 masculine +masculine +39265 neuter +39269 feminine +39271 feminine +masculine +39274 masculine +masculine +neuter +39279 neuter +39283 neuter +neuter +39286 feminine +39289 neuter +neuter +39296 masculine +masculine +39300 neuter +neuter +39303 neuter +neuter +39306 neuter +neuter +39310 feminine +feminine +39313 feminine +feminine +masculine +masculine +39319 neuter +39321 neuter +39326 masculine +masculine +39330 feminine +feminine +39333 feminine +feminine +39336 masculine +masculine +39339 feminine +feminine +39346 neuter +neuter +neuter +neuter +39351 masculine +masculine +masculine +masculine +39359 masculine +masculine +masculine +masculine +39364 masculine +masculine +neuter +masculine +39372 masculine +39376 masculine +masculine +39381 masculine +masculine +neuter +neuter +39386 masculine +masculine +masculine +masculine +39393 neuter +neuter +39399 neuter +neuter +masculine +masculine +39404 masculine +masculine +39408 masculine +39410 masculine +39414 neuter +neuter +masculine +masculine +39421 masculine +39423 masculine +39428 neuter +39430 feminine +feminine +masculine +masculine +39437 masculine +masculine +39440 masculine +39443 masculine +39449 neuter +neuter +masculine +masculine +masculine +neuter +neuter +39457 feminine +masculine +39460 feminine +feminine +feminine +39464 neuter +masculine +39467 neuter +masculine +masculine +masculine +39472 neuter +neuter +39475 masculine +masculine +39482 feminine +feminine +feminine +39487 masculine +masculine +39491 feminine +feminine +feminine +feminine +masculine +39499 masculine +masculine +39503 masculine +masculine +39506 masculine +masculine +39509 masculine +masculine +39515 masculine +39517 neuter +masculine +masculine +39521 neuter +39523 neuter +neuter +masculine +39527 masculine +feminine +feminine +feminine +masculine +masculine +39535 masculine +39539 masculine +masculine +masculine +neuter +39544 masculine +39546 feminine +feminine +feminine +39550 feminine +masculine +masculine +39554 neuter +39556 neuter +neuter +39561 neuter +neuter +39566 neuter +neuter +39569 feminine +feminine +39573 neuter +neuter +39577 neuter +39579 neuter +neuter +39583 neuter +neuter +39587 neuter +neuter +39592 masculine +masculine +39598 masculine +masculine +neuter +neuter +39604 neuter +39606 masculine +neuter +neuter +39613 masculine +39616 masculine +39618 neuter +39620 masculine +feminine +39624 feminine +feminine +39629 masculine +39633 neuter +39635 neuter +39638 neuter +39640 neuter +39643 neuter +39645 masculine +masculine +39649 feminine +feminine +feminine +feminine +39654 feminine +39658 neuter +neuter +39664 masculine +39666 masculine +39671 masculine +masculine +39674 masculine +masculine +masculine +masculine +39680 masculine +39682 masculine +masculine +masculine +masculine +39687 masculine +masculine +39691 masculine +masculine +39695 masculine +masculine +masculine +masculine +39700 masculine +masculine +39703 masculine +39705 masculine +masculine +masculine +masculine +39710 masculine +39712 masculine +39714 neuter +neuter +neuter +masculine +39725 feminine +feminine +39728 feminine +feminine +39731 feminine +feminine +39737 neuter +39740 neuter +39743 neuter +neuter +neuter +39749 feminine +feminine +feminine +neuter +39757 masculine +39759 masculine +masculine +masculine +masculine +39764 masculine +masculine +39770 feminine +feminine +39773 masculine +39775 masculine +masculine +masculine +39780 masculine +39782 masculine +39788 masculine +39793 feminine +feminine +39798 neuter +39800 masculine +feminine +feminine +masculine +39806 neuter +neuter +masculine +39811 feminine +39813 masculine +masculine +masculine +masculine +masculine +feminine +feminine +39824 masculine +masculine +neuter +39833 masculine +masculine +39838 neuter +39842 feminine +feminine +39845 feminine +39850 masculine +masculine +masculine +39854 neuter +neuter +39859 feminine +feminine +39862 feminine +39864 neuter +neuter +neuter +39868 neuter +neuter +39876 masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +feminine +39890 neuter +39892 masculine +39895 masculine +masculine +masculine +39901 masculine +masculine +39906 masculine +masculine +masculine +39910 neuter +39915 feminine +feminine +neuter +39920 neuter +neuter +neuter +39925 feminine +feminine +neuter +39929 feminine +feminine +39932 neuter +neuter +neuter +neuter +39937 masculine +masculine +39944 masculine +39947 neuter +39949 feminine +39951 masculine +masculine +39954 masculine +neuter +39959 neuter +neuter +39962 masculine +39965 masculine +39968 feminine +feminine +masculine +39972 masculine +39976 neuter +39978 neuter +39980 neuter +neuter +39984 neuter +neuter +39995 masculine +39997 feminine +feminine +feminine +masculine +40003 neuter +neuter +40008 masculine +masculine +masculine +masculine +40016 masculine +masculine +masculine +masculine +40022 neuter +40025 masculine +40030 neuter +40033 neuter +40039 neuter +neuter +neuter +neuter +masculine +masculine +40048 masculine +masculine +40053 neuter +40056 feminine +feminine +masculine +40060 neuter +40065 neuter +neuter +neuter +40070 masculine +masculine +40075 feminine +feminine +40078 neuter +neuter +40083 feminine +40085 masculine +neuter +40088 neuter +masculine +masculine +40092 masculine +masculine +40095 masculine +40099 masculine +40104 masculine +masculine +40109 feminine +feminine +40115 feminine +feminine +feminine +40119 masculine +masculine +masculine +40124 masculine +masculine +masculine +masculine +masculine +masculine +40133 masculine +masculine +40136 masculine +40138 masculine +40141 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +40159 masculine +40161 masculine +40163 masculine +40166 feminine +feminine +40170 feminine +feminine +feminine +40177 masculine +40179 masculine +40181 neuter +40186 masculine +masculine +feminine +feminine +masculine +masculine +40197 masculine +masculine +masculine +40203 masculine +40205 feminine +feminine +40209 masculine +masculine +masculine +masculine +40216 masculine +masculine +masculine +40221 feminine +feminine +feminine +40228 masculine +40231 masculine +masculine +40234 masculine +40236 masculine +masculine +masculine +masculine +masculine +masculine +40243 masculine +masculine +40246 feminine +feminine +masculine +neuter +40252 masculine +neuter +neuter +masculine +masculine +masculine +masculine +masculine +masculine +40262 masculine +masculine +masculine +masculine +40272 neuter +neuter +neuter +masculine +40277 masculine +40281 masculine +masculine +masculine +40285 feminine +feminine +masculine +40289 masculine +masculine +40296 masculine +masculine +40299 feminine +feminine +40308 masculine +masculine +masculine +masculine +masculine +40314 feminine +feminine +40320 feminine +feminine +40326 masculine +40328 neuter +neuter +masculine +40332 masculine +masculine +40336 masculine +masculine +masculine +masculine +masculine +neuter +neuter +masculine +masculine +masculine +40348 masculine +40350 masculine +40352 neuter +neuter +masculine +40356 feminine +40358 masculine +40360 masculine +40362 masculine +neuter +feminine +40366 feminine +40368 masculine +masculine +40371 neuter +neuter +40375 masculine +40377 masculine +40379 neuter +neuter +40382 masculine +40384 neuter +40387 feminine +feminine +40390 neuter +40396 neuter +40403 neuter +40408 feminine +40411 feminine +feminine +40418 masculine +40421 masculine +40423 masculine +40427 masculine +masculine +masculine +40431 masculine +40435 masculine +40437 masculine +40439 masculine +40441 masculine +40443 masculine +feminine +40446 feminine +40448 feminine +40450 feminine +feminine +feminine +40454 feminine +feminine +feminine +40458 feminine +40460 feminine +feminine +40465 masculine +masculine +40469 feminine +feminine +40472 feminine +40476 masculine +40483 masculine +masculine +40487 masculine +40491 masculine +neuter +neuter +feminine +feminine +40497 masculine +masculine +40502 masculine +masculine +masculine +40509 neuter +40512 masculine +40515 neuter +neuter +40521 masculine +masculine +40525 masculine +40527 feminine +feminine +40530 feminine +40533 masculine +40539 masculine +masculine +40542 masculine +masculine +40546 masculine +masculine +40549 masculine +masculine +40554 feminine +40563 neuter +neuter +neuter +40569 masculine +40571 masculine +masculine +masculine +masculine +masculine +40577 masculine +masculine +masculine +neuter +neuter +masculine +40585 feminine +feminine +masculine +40589 masculine +40591 masculine +40594 masculine +masculine +masculine +masculine +40599 masculine +masculine +masculine +40604 neuter +40613 masculine +40617 masculine +masculine +40622 masculine +40624 masculine +masculine +40627 masculine +masculine +40631 masculine +40634 masculine +masculine +40638 masculine +masculine +masculine +masculine +masculine +feminine +40651 masculine +40656 feminine +feminine +feminine +feminine +40661 masculine +feminine +40664 masculine +masculine +masculine +40669 masculine +masculine +40672 feminine +40679 masculine +masculine +40682 neuter +neuter +40685 neuter +40687 masculine +masculine +40690 feminine +feminine +feminine +40697 feminine +40699 neuter +40701 feminine +feminine +40705 masculine +masculine +40708 masculine +masculine +40711 feminine +40713 neuter +neuter +neuter +40717 neuter +40720 feminine +40723 neuter +40727 masculine +40729 neuter +neuter +40735 feminine +40738 masculine +40740 feminine +feminine +feminine +40744 neuter +neuter +40748 feminine +neuter +feminine +feminine +neuter +40757 feminine +40760 feminine +40763 neuter +neuter +40766 masculine +feminine +masculine +masculine +40773 feminine +feminine +40776 feminine +feminine +40781 feminine +feminine +feminine +40789 masculine +masculine +40792 masculine +masculine +masculine +masculine +40797 neuter +neuter +40800 masculine +masculine +40803 masculine +masculine +40807 feminine +40810 feminine +40815 feminine +masculine +40820 feminine +feminine +neuter +neuter +40826 masculine +masculine +masculine +40831 masculine +40833 masculine +40835 neuter +neuter +40838 masculine +masculine +masculine +40842 masculine +masculine +40845 feminine +feminine +40848 masculine +40852 feminine +feminine +masculine +feminine +feminine +40858 masculine +masculine +40863 neuter +40866 masculine +masculine +masculine +feminine +feminine +neuter +neuter +40876 neuter +masculine +masculine +40880 masculine +masculine +masculine +masculine +40885 masculine +masculine +masculine +40890 neuter +neuter +neuter +neuter +neuter +40896 masculine +40899 neuter +feminine +40902 feminine +feminine +masculine +masculine +40907 neuter +40909 feminine +feminine +40912 masculine +neuter +masculine +masculine +masculine +40919 masculine +masculine +40926 neuter +40928 neuter +neuter +masculine +masculine +40934 masculine +masculine +neuter +40940 neuter +40942 feminine +feminine +masculine +masculine +feminine +40948 feminine +feminine +feminine +feminine +40954 neuter +neuter +neuter +40958 masculine +40960 neuter +40964 feminine +40966 feminine +masculine +40969 feminine +masculine +40972 neuter +40975 masculine +masculine +masculine +40979 masculine +masculine +masculine +40983 masculine +40986 masculine +40990 feminine +feminine +feminine +40996 masculine +41004 masculine +41006 masculine +masculine +41010 feminine +feminine +41018 feminine +feminine +masculine +masculine +41025 masculine +41043 feminine +feminine +41049 masculine +41058 masculine +masculine +feminine +41063 masculine +masculine +41066 masculine +masculine +masculine +masculine +41072 masculine +41074 masculine +41076 masculine +41078 masculine +masculine +masculine +41082 feminine +feminine +masculine +masculine +41088 masculine +41093 feminine +41095 feminine +41098 masculine +41100 masculine +41104 feminine +feminine +masculine +masculine +41111 masculine +masculine +41114 masculine +41117 masculine +masculine +41120 masculine +41122 feminine +feminine +feminine +41126 masculine +masculine +masculine +masculine +41135 masculine +41141 masculine +masculine +41144 feminine +feminine +feminine +41149 neuter +41151 feminine +41157 feminine +feminine +41167 feminine +feminine +41173 masculine +41176 feminine +feminine +feminine +feminine +feminine +masculine +masculine +41184 feminine +masculine +masculine +41188 feminine +41192 neuter +neuter +41195 masculine +masculine +feminine +feminine +feminine +feminine +41202 feminine +feminine +41210 masculine +masculine +41224 masculine +masculine +masculine +41228 neuter +masculine +41233 neuter +41235 masculine +41237 masculine +masculine +masculine +masculine +masculine +masculine +neuter +41245 masculine +41247 masculine +41249 masculine +masculine +41253 masculine +masculine +masculine +41258 masculine +41260 masculine +masculine +masculine +41265 masculine +masculine +41268 masculine +masculine +41271 neuter +neuter +41277 masculine +41280 masculine +41282 masculine +41287 masculine +41289 masculine +41291 masculine +41293 masculine +41295 neuter +41301 masculine +41303 feminine +neuter +neuter +41311 neuter +41315 masculine +masculine +feminine +masculine +41320 feminine +feminine +41323 masculine +41325 masculine +41329 masculine +41331 masculine +41335 feminine +feminine +41339 masculine +41342 masculine +41344 masculine +41346 masculine +masculine +41350 masculine +masculine +41355 masculine +masculine +41361 feminine +masculine +masculine +masculine +41369 masculine +41372 masculine +masculine +masculine +41378 masculine +masculine +41383 masculine +41385 neuter +41389 feminine +41391 masculine +masculine +masculine +41396 masculine +masculine +masculine +masculine +41402 masculine +masculine +masculine +41409 masculine +masculine +masculine +41414 neuter +41416 neuter +41419 masculine +masculine +41423 masculine +masculine +41427 masculine +masculine +41431 masculine +masculine +41436 masculine +41441 neuter +41445 feminine +41448 masculine +masculine +masculine +masculine +41453 masculine +41464 feminine +feminine +masculine +masculine +41469 masculine +masculine +masculine +masculine +neuter +41475 masculine +masculine +masculine +41479 masculine +41481 feminine +feminine +masculine +masculine +41486 masculine +41488 masculine +masculine +masculine +41492 neuter +neuter +41496 masculine +41499 masculine +masculine +masculine +feminine +feminine +neuter +neuter +41507 masculine +masculine +41512 neuter +41517 feminine +masculine +41520 masculine +masculine +41523 masculine +masculine +41528 feminine +masculine +41531 masculine +41536 masculine +41538 masculine +41540 neuter +masculine +41547 neuter +41552 masculine +41554 masculine +41556 feminine +41560 neuter +41565 masculine +masculine +masculine +41569 masculine +masculine +masculine +neuter +41574 masculine +masculine +masculine +41578 masculine +masculine +masculine +41584 feminine +feminine +41587 feminine +feminine +feminine +41591 masculine +masculine +41594 masculine +41596 masculine +41598 masculine +41603 masculine +masculine +masculine +41607 neuter +41611 masculine +41615 masculine +masculine +41618 masculine +masculine +41622 feminine +feminine +41625 masculine +41632 masculine +masculine +41638 masculine +masculine +masculine +masculine +masculine +masculine +41646 neuter +neuter +41650 masculine +masculine +masculine +41654 masculine +41657 masculine +41659 masculine +41666 masculine +masculine +masculine +41670 feminine +feminine +41673 feminine +feminine +41676 neuter +neuter +41679 masculine +masculine +41682 feminine +feminine +41687 feminine +feminine +masculine +41694 masculine +masculine +41698 masculine +masculine +masculine +41709 masculine +41712 masculine +41715 masculine +masculine +41718 neuter +masculine +41721 feminine +feminine +41726 masculine +41730 masculine +masculine +masculine +41735 masculine +41737 masculine +masculine +masculine +41741 masculine +41743 masculine +41745 masculine +masculine +masculine +41756 masculine +masculine +masculine +masculine +masculine +41763 masculine +masculine +neuter +41768 masculine +41772 feminine +41774 masculine +41777 feminine +masculine +41780 masculine +41785 masculine +41787 masculine +feminine +masculine +41791 neuter +41793 feminine +41796 masculine +41799 masculine +41802 neuter +neuter +masculine +neuter +41810 masculine +41812 neuter +neuter +neuter +41818 neuter +neuter +41822 neuter +41826 feminine +41829 feminine +neuter +41834 neuter +masculine +masculine +neuter +41842 masculine +masculine +masculine +masculine +masculine +41848 masculine +masculine +41851 masculine +41855 masculine +masculine +41858 masculine +masculine +masculine +41862 masculine +masculine +41867 masculine +41871 masculine +feminine +feminine +feminine +masculine +masculine +masculine +41880 masculine +41882 neuter +41884 masculine +41886 neuter +neuter +41890 neuter +41894 feminine +feminine +41899 neuter +neuter +41903 neuter +41905 masculine +41908 masculine +masculine +masculine +masculine +41913 masculine +41915 masculine +masculine +41918 masculine +masculine +41921 masculine +masculine +masculine +masculine +41929 neuter +neuter +41932 neuter +neuter +41938 feminine +41940 masculine +masculine +41944 masculine +masculine +masculine +41951 masculine +masculine +41954 feminine +feminine +41958 feminine +feminine +feminine +41962 feminine +41965 feminine +feminine +41969 masculine +41972 feminine +feminine +41978 masculine +41981 feminine +41983 feminine +feminine +41986 feminine +feminine +41992 feminine +feminine +feminine +42000 feminine +42002 masculine +masculine +masculine +masculine +42007 masculine +masculine +masculine +42012 masculine +masculine +42016 masculine +42019 masculine +masculine +masculine +masculine +masculine +masculine +42027 neuter +neuter +neuter +feminine +feminine +42033 masculine +42035 masculine +masculine +masculine +42041 feminine +feminine +masculine +neuter +masculine +masculine +masculine +42050 feminine +feminine +42055 feminine +feminine +masculine +masculine +42061 masculine +masculine +neuter +42065 feminine +feminine +42068 feminine +feminine +feminine +42072 masculine +42076 masculine +42078 masculine +masculine +masculine +feminine +feminine +feminine +42086 masculine +42088 masculine +masculine +masculine +42092 masculine +42096 feminine +feminine +masculine +42100 neuter +neuter +neuter +42104 masculine +masculine +42107 masculine +42109 masculine +42112 masculine +masculine +42115 masculine +masculine +masculine +masculine +42121 masculine +42124 masculine +42127 masculine +42130 masculine +masculine +42135 masculine +masculine +42139 masculine +masculine +42146 masculine +42148 masculine +42153 masculine +masculine +masculine +42158 masculine +42161 masculine +masculine +masculine +42166 masculine +feminine +masculine +42170 masculine +masculine +masculine +masculine +42177 masculine +42180 masculine +masculine +masculine +42185 masculine +42188 masculine +masculine +masculine +masculine +42194 masculine +masculine +42201 masculine +42203 masculine +42207 masculine +masculine +42210 masculine +masculine +masculine +neuter +42215 feminine +feminine +feminine +42220 masculine +42223 masculine +42225 feminine +feminine +masculine +42229 neuter +42231 masculine +masculine +42235 masculine +masculine +masculine +masculine +42241 masculine +42244 masculine +masculine +masculine +42248 masculine +42253 masculine +42261 masculine +masculine +masculine +masculine +masculine +42267 masculine +42270 masculine +42272 feminine +feminine +42275 feminine +42277 masculine +42279 masculine +masculine +masculine +masculine +42285 neuter +42287 neuter +42289 masculine +42291 masculine +42293 masculine +masculine +42299 masculine +masculine +42302 masculine +masculine +masculine +masculine +42307 masculine +masculine +42317 masculine +masculine +masculine +masculine +42322 masculine +42324 masculine +masculine +42327 masculine +masculine +42330 neuter +neuter +42336 feminine +42343 masculine +42346 masculine +masculine +42352 masculine +masculine +42355 masculine +masculine +masculine +42359 masculine +masculine +42362 feminine +42365 masculine +masculine +masculine +masculine +42370 masculine +42372 masculine +neuter +42380 neuter +neuter +neuter +neuter +42391 masculine +masculine +42394 masculine +masculine +42400 masculine +42407 masculine +masculine +masculine +masculine +42412 masculine +masculine +42415 masculine +42417 masculine +42419 masculine +42421 masculine +neuter +neuter +masculine +42426 masculine +masculine +42429 masculine +neuter +neuter +42436 masculine +masculine +feminine +feminine +42449 masculine +masculine +masculine +neuter +42455 masculine +masculine +42459 feminine +feminine +42469 neuter +42475 feminine +feminine +42480 masculine +masculine +masculine +42484 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +42493 masculine +masculine +neuter +42497 masculine +masculine +42501 masculine +42504 masculine +neuter +42507 masculine +42509 masculine +42512 neuter +neuter +42515 masculine +42520 masculine +42524 neuter +42527 masculine +42530 masculine +masculine +42533 masculine +42536 neuter +neuter +42543 masculine +masculine +masculine +masculine +feminine +feminine +42553 masculine +masculine +masculine +masculine +masculine +masculine +42560 masculine +masculine +neuter +neuter +42565 feminine +feminine +feminine +masculine +42574 masculine +42576 masculine +42578 masculine +masculine +feminine +feminine +42588 feminine +feminine +feminine +masculine +masculine +42594 neuter +42597 neuter +masculine +42601 masculine +42603 neuter +masculine +42607 neuter +masculine +42613 masculine +masculine +masculine +masculine +42619 neuter +neuter +masculine +42627 masculine +masculine +masculine +42632 neuter +neuter +masculine +42637 masculine +masculine +42640 masculine +masculine +42645 masculine +masculine +42649 masculine +masculine +42653 masculine +42656 masculine +masculine +42661 masculine +42664 masculine +42667 neuter +neuter +masculine +masculine +masculine +masculine +42675 masculine +42678 masculine +42681 masculine +masculine +masculine +42685 masculine +masculine +42688 masculine +masculine +42691 feminine +feminine +42695 neuter +42697 masculine +neuter +neuter +42701 masculine +masculine +masculine +masculine +42706 masculine +masculine +42709 masculine +42712 feminine +feminine +masculine +masculine +42718 masculine +42720 feminine +42723 neuter +42725 masculine +masculine +42728 feminine +feminine +42732 masculine +masculine +feminine +feminine +42737 masculine +masculine +masculine +feminine +feminine +masculine +42744 masculine +feminine +42748 masculine +feminine +42751 masculine +masculine +42755 masculine +masculine +42758 masculine +42761 feminine +42763 feminine +masculine +42766 feminine +42769 masculine +masculine +neuter +masculine +42775 masculine +masculine +masculine +masculine +42780 masculine +42783 neuter +neuter +42786 feminine +feminine +masculine +masculine +42792 masculine +masculine +masculine +42796 neuter +neuter +masculine +42802 masculine +masculine +42806 masculine +42808 masculine +masculine +42811 masculine +masculine +masculine +42817 masculine +masculine +42823 masculine +masculine +masculine +masculine +masculine +masculine +masculine +42831 feminine +42833 masculine +42837 masculine +42839 masculine +masculine +masculine +42843 masculine +masculine +42846 masculine +masculine +42852 masculine +42855 neuter +neuter +masculine +masculine +masculine +neuter +42863 feminine +feminine +42869 feminine +feminine +feminine +42874 masculine +neuter +42879 neuter +neuter +42883 feminine +feminine +42887 masculine +42889 neuter +neuter +42900 neuter +neuter +42906 neuter +neuter +42910 masculine +masculine +42928 masculine +42931 masculine +42933 masculine +masculine +masculine +masculine +42941 masculine +42944 masculine +42948 masculine +42951 masculine +masculine +masculine +feminine +feminine +42958 masculine +42960 masculine +42962 masculine +masculine +42965 masculine +42967 masculine +42970 masculine +masculine +42974 masculine +42976 masculine +42979 masculine +42983 masculine +42985 masculine +42987 masculine +masculine +42993 masculine +42995 masculine +43001 masculine +masculine +masculine +neuter +43006 neuter +neuter +neuter +43014 masculine +43017 masculine +43019 masculine +masculine +43023 masculine +masculine +masculine +43029 feminine +feminine +43034 masculine +masculine +masculine +masculine +43039 masculine +43042 masculine +masculine +43046 masculine +43051 masculine +43055 feminine +feminine +43065 masculine +43068 masculine +43071 masculine +masculine +masculine +masculine +43077 feminine +43080 masculine +masculine +43084 feminine +43086 masculine +neuter +43090 feminine +feminine +feminine +43097 feminine +feminine +43104 masculine +43107 masculine +masculine +masculine +43111 masculine +masculine +masculine +43115 masculine +masculine +43118 masculine +43120 masculine +43125 masculine +43127 neuter +43130 masculine +43139 neuter +43146 feminine +masculine +masculine +43151 neuter +neuter +43158 neuter +neuter +neuter +43164 masculine +masculine +43167 neuter +43174 neuter +43177 feminine +43179 masculine +43182 neuter +feminine +43185 feminine +43187 masculine +masculine +43190 feminine +feminine +43194 masculine +masculine +masculine +43200 masculine +43202 feminine +masculine +masculine +masculine +43209 masculine +43211 masculine +masculine +43214 masculine +masculine +masculine +43220 neuter +43222 masculine +43225 masculine +43227 masculine +masculine +43233 feminine +feminine +masculine +masculine +masculine +43241 neuter +43243 masculine +masculine +masculine +masculine +masculine +43249 masculine +43251 masculine +43253 masculine +masculine +masculine +43258 masculine +43262 masculine +43267 masculine +43269 feminine +masculine +masculine +43274 masculine +masculine +masculine +43279 masculine +masculine +43282 feminine +feminine +43288 masculine +43290 masculine +masculine +43294 feminine +feminine +masculine +masculine +43299 masculine +43304 feminine +feminine +masculine +masculine +43309 feminine +43318 feminine +feminine +masculine +masculine +43328 masculine +masculine +43331 feminine +43334 feminine +feminine +feminine +masculine +masculine +masculine +masculine +43358 feminine +feminine +feminine +43362 feminine +43364 masculine +masculine +43367 feminine +43369 masculine +43373 masculine +masculine +masculine +masculine +43378 feminine +feminine +masculine +43383 neuter +masculine +neuter +43390 feminine +feminine +feminine +43397 feminine +feminine +masculine +43404 feminine +feminine +masculine +masculine +masculine +masculine +43415 feminine +feminine +43418 masculine +43420 feminine +feminine +43424 masculine +masculine +43428 masculine +43433 feminine +feminine +masculine +43443 feminine +feminine +43446 masculine +43448 neuter +43450 neuter +43452 neuter +43454 masculine +43457 masculine +43459 neuter +neuter +43462 feminine +feminine +masculine +masculine +masculine +masculine +43470 feminine +feminine +feminine +masculine +43476 neuter +neuter +43479 neuter +neuter +masculine +43483 feminine +feminine +43488 neuter +43490 masculine +43492 masculine +43497 neuter +43500 feminine +feminine +masculine +43504 masculine +43506 feminine +feminine +masculine +43511 feminine +43514 masculine +43517 feminine +43520 feminine +feminine +feminine +43526 feminine +feminine +masculine +masculine +43532 masculine +masculine +43536 feminine +43539 neuter +neuter +feminine +feminine +43545 feminine +feminine +43549 masculine +43551 masculine +43553 masculine +43555 masculine +43557 masculine +43559 neuter +neuter +43563 masculine +masculine +43568 feminine +masculine +43571 neuter +43575 masculine +43579 masculine +masculine +masculine +43584 feminine +feminine +masculine +masculine +43589 masculine +43591 masculine +43593 masculine +43595 feminine +43598 feminine +feminine +feminine +43604 masculine +feminine +43609 masculine +masculine +43616 masculine +43619 neuter +43622 masculine +43625 masculine +masculine +43630 masculine +43634 neuter +43637 masculine +feminine +feminine +feminine +43642 feminine +43646 neuter +feminine +43652 masculine +masculine +43655 neuter +masculine +masculine +feminine +feminine +43664 masculine +masculine +43667 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +43677 feminine +43681 masculine +43686 feminine +feminine +masculine +43690 neuter +43692 masculine +masculine +masculine +masculine +masculine +43699 feminine +feminine +43702 feminine +feminine +43708 masculine +masculine +masculine +43712 masculine +43715 masculine +43717 masculine +masculine +masculine +feminine +feminine +feminine +masculine +43727 neuter +neuter +43730 masculine +masculine +masculine +43734 masculine +masculine +masculine +masculine +masculine +masculine +neuter +43742 masculine +43744 masculine +masculine +43752 masculine +masculine +masculine +masculine +masculine +masculine +masculine +43762 masculine +masculine +masculine +43767 neuter +neuter +43770 neuter +neuter +43774 masculine +masculine +43777 masculine +43781 masculine +masculine +43785 masculine +masculine +43789 neuter +neuter +masculine +masculine +masculine +masculine +43797 masculine +masculine +43802 masculine +masculine +43805 masculine +masculine +masculine +43809 masculine +43811 masculine +masculine +masculine +masculine +43817 masculine +masculine +masculine +43823 masculine +43825 neuter +neuter +43828 neuter +43831 masculine +masculine +masculine +43835 masculine +43837 masculine +masculine +43840 neuter +masculine +43843 neuter +neuter +43851 neuter +43853 neuter +neuter +43856 feminine +feminine +masculine +masculine +43864 masculine +43867 feminine +feminine +masculine +masculine +43872 neuter +43877 feminine +43880 masculine +masculine +masculine +masculine +masculine +masculine +neuter +masculine +feminine +feminine +43893 masculine +masculine +masculine +neuter +43899 masculine +masculine +masculine +43904 masculine +masculine +masculine +feminine +feminine +43919 masculine +masculine +43923 feminine +feminine +43926 masculine +43928 neuter +neuter +43932 feminine +43934 masculine +masculine +masculine +43938 masculine +43940 neuter +43943 neuter +neuter +43949 masculine +43952 masculine +43954 masculine +masculine +43961 masculine +masculine +neuter +masculine +43968 masculine +43971 masculine +masculine +masculine +masculine +43978 masculine +neuter +neuter +masculine +43983 feminine +feminine +masculine +masculine +43989 neuter +43991 feminine +43993 neuter +feminine +43997 masculine +43999 feminine +feminine +masculine +masculine +44006 masculine +masculine +44009 masculine +44013 masculine +44015 neuter +neuter +44018 masculine +neuter +44021 masculine +masculine +44026 masculine +masculine +44030 masculine +neuter +neuter +44036 masculine +44038 masculine +44043 masculine +44045 masculine +44047 feminine +44049 feminine +44051 masculine +44053 masculine +44055 neuter +44057 feminine +feminine +masculine +masculine +masculine +44065 neuter +44067 masculine +masculine +masculine +44072 masculine +masculine +masculine +masculine +feminine +feminine +44079 masculine +masculine +44084 masculine +44088 feminine +44091 neuter +neuter +neuter +44095 masculine +masculine +masculine +masculine +masculine +masculine +44103 neuter +neuter +44112 masculine +44114 masculine +44116 feminine +feminine +feminine +feminine +44122 masculine +neuter +neuter +44128 neuter +neuter +neuter +neuter +44133 masculine +44137 neuter +neuter +44142 neuter +44144 masculine +44146 feminine +masculine +masculine +44151 feminine +feminine +masculine +44155 masculine +masculine +masculine +44159 neuter +44161 neuter +44164 masculine +44166 masculine +masculine +masculine +44172 masculine +masculine +masculine +masculine +44179 masculine +masculine +44182 masculine +44186 masculine +neuter +44190 masculine +masculine +44195 masculine +masculine +masculine +44199 masculine +44202 masculine +44204 masculine +masculine +44207 masculine +neuter +44213 masculine +44215 masculine +44219 masculine +masculine +44222 masculine +44224 feminine +feminine +44234 masculine +masculine +masculine +masculine +44239 masculine +masculine +masculine +masculine +44244 masculine +masculine +masculine +44248 masculine +44250 feminine +feminine +44254 masculine +neuter +masculine +masculine +44259 masculine +44261 masculine +44263 masculine +masculine +44268 masculine +masculine +masculine +44276 masculine +masculine +44279 feminine +feminine +masculine +44284 masculine +44286 neuter +44290 feminine +44293 masculine +44295 feminine +44302 masculine +masculine +masculine +masculine +masculine +44309 masculine +masculine +masculine +44316 masculine +masculine +44323 masculine +44327 masculine +masculine +44330 masculine +masculine +44333 masculine +44336 masculine +masculine +44341 masculine +masculine +44345 masculine +masculine +masculine +44349 neuter +neuter +44352 neuter +neuter +masculine +masculine +44359 masculine +neuter +44363 neuter +44367 masculine +masculine +masculine +44372 feminine +masculine +masculine +masculine +44379 masculine +masculine +masculine +44385 masculine +masculine +masculine +masculine +44392 neuter +neuter +44395 masculine +masculine +neuter +masculine +44400 feminine +44402 neuter +44405 feminine +masculine +44409 masculine +44413 feminine +feminine +masculine +masculine +44420 masculine +masculine +masculine +44425 feminine +feminine +44428 masculine +feminine +44433 masculine +44435 masculine +masculine +44438 masculine +44440 feminine +44444 masculine +44447 masculine +44450 masculine +masculine +masculine +44454 masculine +44457 feminine +44459 masculine +masculine +44463 masculine +44470 neuter +44472 masculine +masculine +feminine +feminine +44479 masculine +masculine +masculine +masculine +masculine +44485 neuter +neuter +44489 masculine +neuter +44494 masculine +masculine +masculine +masculine +feminine +feminine +44502 feminine +44506 masculine +44508 masculine +masculine +44512 neuter +masculine +44516 feminine +masculine +44520 feminine +44523 masculine +masculine +masculine +masculine +feminine +feminine +44532 feminine +44536 masculine +44541 feminine +44544 masculine +masculine +44547 masculine +masculine +44550 feminine +feminine +44553 feminine +44555 feminine +44557 neuter +44562 masculine +masculine +44566 neuter +44571 neuter +44575 masculine +44577 neuter +neuter +44582 masculine +masculine +44588 masculine +masculine +masculine +neuter +44595 masculine +neuter +44601 neuter +44605 neuter +neuter +44608 feminine +44611 masculine +44613 masculine +neuter +44617 masculine +masculine +44622 masculine +feminine +feminine +44627 masculine +feminine +44630 feminine +masculine +44634 masculine +masculine +44638 feminine +44642 masculine +masculine +masculine +44648 masculine +44650 masculine +44652 neuter +44656 masculine +masculine +44659 masculine +masculine +44662 masculine +44666 masculine +44671 masculine +44675 masculine +neuter +44679 masculine +44681 neuter +44687 feminine +44689 feminine +44691 neuter +neuter +neuter +neuter +feminine +44698 masculine +masculine +masculine +44703 feminine +44705 feminine +44707 feminine +masculine +44710 masculine +masculine +44713 masculine +masculine +masculine +44719 masculine +masculine +44724 masculine +44728 neuter +44733 masculine +masculine +masculine +feminine +44739 masculine +masculine +masculine +44745 masculine +44747 masculine +masculine +masculine +masculine +44752 masculine +masculine +masculine +44756 masculine +neuter +44759 masculine +masculine +44762 masculine +44765 masculine +masculine +masculine +feminine +44772 masculine +44774 masculine +masculine +44777 masculine +masculine +neuter +neuter +44782 masculine +masculine +44785 masculine +masculine +44788 masculine +masculine +44791 neuter +neuter +masculine +44795 feminine +feminine +44798 masculine +masculine +44802 feminine +feminine +neuter +neuter +feminine +feminine +44809 neuter +neuter +neuter +masculine +masculine +masculine +44816 masculine +masculine +feminine +feminine +44821 feminine +feminine +44824 feminine +masculine +masculine +masculine +masculine +44830 neuter +masculine +masculine +masculine +44835 masculine +feminine +44838 feminine +44840 neuter +44842 masculine +masculine +masculine +44846 masculine +masculine +44850 masculine +masculine +44853 masculine +masculine +44857 masculine +44862 masculine +44864 masculine +masculine +44870 masculine +feminine +feminine +44875 feminine +masculine +44881 feminine +feminine +feminine +44886 neuter +44888 feminine +44893 masculine +44897 feminine +44902 masculine +masculine +44905 masculine +44918 neuter +neuter +44926 masculine +44928 masculine +44932 masculine +44935 masculine +masculine +feminine +feminine +44941 masculine +44943 neuter +neuter +44947 masculine +masculine +masculine +masculine +44954 masculine +masculine +44957 masculine +feminine +44961 masculine +44963 neuter +masculine +44967 masculine +neuter +44970 feminine +44972 neuter +neuter +44975 masculine +masculine +44978 masculine +masculine +44981 masculine +44984 masculine +masculine +masculine +masculine +44990 neuter +neuter +neuter +44995 masculine +masculine +masculine +44999 masculine +masculine +45004 feminine +feminine +feminine +masculine +masculine +masculine +masculine +45012 neuter +neuter +45015 masculine +45017 masculine +masculine +45020 masculine +masculine +45023 masculine +masculine +45027 masculine +45029 masculine +45033 feminine +feminine +neuter +45038 masculine +45040 masculine +masculine +45043 feminine +feminine +feminine +45047 masculine +45050 masculine +45054 masculine +45058 neuter +neuter +masculine +45062 masculine +45066 masculine +45068 masculine +45071 masculine +masculine +45077 masculine +45080 neuter +45083 masculine +45088 masculine +masculine +masculine +masculine +45095 masculine +45097 masculine +masculine +45106 masculine +masculine +45109 masculine +45115 feminine +feminine +neuter +45122 masculine +masculine +45125 feminine +feminine +feminine +masculine +45130 masculine +45133 masculine +masculine +45137 masculine +masculine +45140 masculine +45143 masculine +masculine +masculine +45148 masculine +masculine +masculine +masculine +45153 masculine +45155 masculine +masculine +45158 masculine +masculine +masculine +45163 masculine +masculine +45167 masculine +masculine +masculine +45171 masculine +45173 masculine +45176 masculine +45179 masculine +45181 masculine +masculine +45186 masculine +masculine +masculine +masculine +neuter +45193 masculine +masculine +45196 masculine +masculine +45199 masculine +45202 masculine +masculine +masculine +masculine +45208 masculine +masculine +masculine +45212 masculine +masculine +45215 masculine +45219 feminine +feminine +45222 masculine +masculine +45225 masculine +masculine +45229 neuter +45231 masculine +masculine +masculine +masculine +masculine +45239 masculine +masculine +masculine +45244 masculine +masculine +masculine +45248 masculine +45253 masculine +masculine +masculine +45258 neuter +45260 neuter +neuter +neuter +masculine +masculine +45266 masculine +masculine +masculine +45271 feminine +feminine +masculine +masculine +masculine +45277 masculine +masculine +masculine +45284 masculine +45287 masculine +45290 masculine +masculine +45293 masculine +masculine +45297 masculine +feminine +feminine +45301 feminine +feminine +feminine +45306 masculine +masculine +45312 masculine +45314 feminine +feminine +feminine +45318 masculine +45320 masculine +masculine +masculine +masculine +45327 masculine +masculine +45331 masculine +feminine +feminine +45335 feminine +feminine +masculine +masculine +45341 masculine +masculine +masculine +45353 neuter +45356 feminine +feminine +feminine +masculine +masculine +45364 masculine +masculine +45370 masculine +masculine +feminine +feminine +45376 masculine +45379 neuter +45381 masculine +feminine +45384 feminine +45386 masculine +45388 masculine +45390 masculine +45393 masculine +45396 neuter +masculine +masculine +45400 neuter +masculine +masculine +masculine +masculine +45409 masculine +neuter +45412 masculine +masculine +45415 masculine +45417 feminine +feminine +masculine +45422 masculine +masculine +masculine +masculine +masculine +masculine +feminine +45432 masculine +masculine +masculine +masculine +45439 masculine +masculine +45442 masculine +feminine +45445 masculine +masculine +45450 masculine +masculine +masculine +feminine +feminine +45457 neuter +masculine +masculine +masculine +45463 masculine +45466 masculine +masculine +masculine +feminine +45471 masculine +45473 masculine +masculine +45476 masculine +masculine +45479 feminine +45483 masculine +45487 neuter +45490 neuter +45492 feminine +feminine +45496 feminine +feminine +45499 feminine +feminine +masculine +masculine +feminine +45506 masculine +45509 feminine +feminine +45513 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +45525 masculine +masculine +masculine +masculine +masculine +45532 feminine +feminine +feminine +45536 masculine +45547 masculine +45550 masculine +masculine +45553 feminine +feminine +masculine +masculine +45560 masculine +masculine +45563 masculine +45566 feminine +feminine +45570 masculine +masculine +masculine +masculine +45575 masculine +masculine +45578 masculine +masculine +45581 masculine +45584 masculine +45586 masculine +45588 masculine +masculine +45592 masculine +masculine +masculine +masculine +45597 masculine +45604 masculine +neuter +45609 masculine +45612 masculine +masculine +45615 masculine +masculine +45618 masculine +masculine +45622 feminine +masculine +45625 masculine +masculine +masculine +45631 neuter +45636 masculine +masculine +45639 neuter +masculine +masculine +45644 masculine +masculine +masculine +45650 masculine +masculine +45654 masculine +masculine +masculine +masculine +45659 masculine +masculine +45663 masculine +masculine +masculine +masculine +45669 feminine +45671 masculine +masculine +45674 feminine +feminine +45677 feminine +45679 feminine +feminine +45682 feminine +45684 neuter +neuter +masculine +45688 feminine +feminine +feminine +feminine +45693 feminine +neuter +45696 masculine +45698 neuter +neuter +45701 masculine +45703 masculine +masculine +45706 neuter +neuter +neuter +neuter +masculine +masculine +45714 feminine +feminine +feminine +feminine +45719 neuter +45727 feminine +feminine +feminine +feminine +feminine +neuter +masculine +45736 masculine +masculine +45739 neuter +neuter +masculine +45744 neuter +neuter +45747 feminine +45749 neuter +neuter +feminine +masculine +masculine +masculine +masculine +45759 masculine +masculine +45762 neuter +neuter +45765 masculine +masculine +45768 neuter +45771 neuter +neuter +45775 feminine +45777 feminine +45781 masculine +masculine +masculine +45788 masculine +masculine +masculine +45793 neuter +45796 neuter +neuter +neuter +45801 neuter +45804 masculine +45810 masculine +45813 neuter +neuter +45816 masculine +45820 masculine +masculine +45826 masculine +45830 masculine +45832 feminine +45837 neuter +45839 neuter +45843 neuter +neuter +45847 masculine +45849 neuter +45851 neuter +45853 feminine +45855 feminine +45857 masculine +masculine +45861 masculine +masculine +45864 masculine +45867 neuter +45870 masculine +neuter +neuter +45876 neuter +neuter +45881 feminine +feminine +masculine +45886 masculine +45888 feminine +feminine +45891 feminine +masculine +45894 masculine +45896 masculine +45898 neuter +neuter +45904 neuter +45908 feminine +feminine +45918 neuter +45920 feminine +feminine +45927 masculine +masculine +masculine +45935 masculine +45937 masculine +45939 masculine +45941 masculine +45948 masculine +45950 masculine +45952 neuter +neuter +45956 feminine +45958 feminine +feminine +45965 feminine +feminine +45969 feminine +feminine +45975 feminine +45977 neuter +feminine +45983 feminine +feminine +feminine +45987 masculine +45989 feminine +feminine +45993 neuter +neuter +45996 masculine +45998 neuter +feminine +46002 masculine +46004 feminine +feminine +46009 feminine +46011 feminine +feminine +feminine +46015 neuter +46017 neuter +neuter +neuter +46021 feminine +46023 feminine +feminine +46026 feminine +feminine +46029 feminine +feminine +feminine +46034 feminine +feminine +46037 feminine +feminine +46040 feminine +masculine +masculine +masculine +46046 neuter +feminine +46051 neuter +neuter +neuter +46055 feminine +46057 feminine +46059 neuter +46061 masculine +46063 masculine +neuter +46067 neuter +46069 masculine +46071 feminine +46073 neuter +46076 feminine +feminine +feminine +neuter +46081 feminine +neuter +feminine +46085 masculine +masculine +masculine +46089 masculine +46091 feminine +masculine +masculine +feminine +feminine +46097 feminine +feminine +masculine +masculine +46105 masculine +masculine +masculine +masculine +masculine +46111 feminine +46113 feminine +46115 feminine +feminine +46118 masculine +masculine +46124 feminine +feminine +46129 feminine +feminine +46134 feminine +masculine +46137 feminine +feminine +46140 neuter +neuter +neuter +46146 masculine +46148 masculine +46153 neuter +neuter +46161 neuter +neuter +46167 feminine +feminine +masculine +masculine +46178 feminine +feminine +feminine +46183 neuter +46185 masculine +masculine +46188 feminine +feminine +46192 masculine +masculine +46200 masculine +46205 feminine +feminine +46208 feminine +46210 feminine +46212 feminine +feminine +46218 masculine +feminine +feminine +feminine +46223 feminine +46227 masculine +masculine +masculine +46231 neuter +feminine +feminine +feminine +46238 masculine +masculine +masculine +46244 neuter +neuter +neuter +neuter +46252 masculine +masculine +masculine +masculine +46258 masculine +feminine +feminine +46262 neuter +neuter +46265 feminine +feminine +masculine +46270 neuter +neuter +neuter +neuter +feminine +46276 masculine +masculine +masculine +46281 masculine +46283 neuter +neuter +46286 masculine +46289 feminine +feminine +neuter +neuter +feminine +feminine +neuter +46298 masculine +masculine +46301 masculine +masculine +neuter +46306 masculine +46309 masculine +masculine +46313 masculine +46315 masculine +masculine +masculine +masculine +masculine +46321 masculine +masculine +masculine +46326 masculine +46328 masculine +masculine +46331 masculine +neuter +46334 masculine +46336 masculine +46341 masculine +neuter +46348 feminine +neuter +46351 masculine +46353 masculine +masculine +46357 feminine +feminine +neuter +neuter +feminine +46364 neuter +neuter +46368 masculine +46370 masculine +masculine +masculine +46375 neuter +neuter +46380 masculine +46382 masculine +46387 masculine +46389 masculine +46391 masculine +46394 feminine +feminine +46398 masculine +neuter +neuter +masculine +46403 masculine +46405 feminine +feminine +46408 feminine +46412 masculine +masculine +feminine +feminine +46418 masculine +masculine +46422 neuter +neuter +46425 neuter +neuter +46428 masculine +masculine +46432 masculine +46435 neuter +neuter +neuter +46441 masculine +46445 masculine +46448 neuter +neuter +46453 feminine +feminine +46457 masculine +masculine +46460 masculine +46464 masculine +feminine +46467 neuter +neuter +neuter +46474 neuter +46485 neuter +46487 neuter +46490 feminine +feminine +masculine +masculine +46495 masculine +neuter +masculine +46500 neuter +46504 masculine +46512 neuter +46515 neuter +neuter +feminine +feminine +46520 masculine +feminine +feminine +masculine +masculine +46527 masculine +masculine +masculine +46533 masculine +masculine +neuter +46537 neuter +neuter +46540 neuter +46543 neuter +neuter +46547 feminine +feminine +feminine +46551 neuter +neuter +46555 neuter +46557 masculine +feminine +feminine +feminine +46562 neuter +neuter +46565 neuter +neuter +neuter +neuter +46571 neuter +46574 feminine +feminine +masculine +masculine +46582 feminine +feminine +46586 masculine +masculine +masculine +masculine +46591 neuter +neuter +46596 masculine +masculine +masculine +46600 masculine +46603 masculine +46607 masculine +neuter +46610 masculine +46613 masculine +masculine +neuter +46617 masculine +46621 masculine +46623 feminine +neuter +masculine +masculine +46629 masculine +46631 masculine +46633 masculine +masculine +masculine +neuter +neuter +46639 neuter +46641 masculine +masculine +neuter +masculine +46651 masculine +masculine +46657 masculine +masculine +46660 masculine +masculine +46663 masculine +masculine +46666 masculine +masculine +masculine +masculine +46671 masculine +masculine +46674 masculine +masculine +46679 neuter +46683 masculine +masculine +46688 masculine +masculine +46693 masculine +masculine +46702 masculine +masculine +46705 feminine +46711 feminine +feminine +46715 feminine +feminine +46721 masculine +feminine +46724 feminine +masculine +masculine +masculine +masculine +masculine +46731 masculine +masculine +46735 neuter +46738 masculine +masculine +46748 feminine +feminine +46754 masculine +46756 masculine +masculine +46760 masculine +46762 masculine +masculine +46766 masculine +46770 feminine +46773 masculine +46776 masculine +46780 masculine +46784 masculine +46793 masculine +46798 neuter +46800 feminine +46802 neuter +46804 neuter +46807 masculine +46809 neuter +46812 masculine +46815 masculine +masculine +neuter +46821 feminine +46823 masculine +46825 masculine +46827 neuter +neuter +masculine +46832 feminine +46838 neuter +neuter +neuter +neuter +46844 masculine +46851 neuter +46854 neuter +46857 masculine +46859 masculine +46861 feminine +46865 masculine +46867 masculine +neuter +46871 masculine +46874 neuter +neuter +46877 neuter +neuter +feminine +feminine +46883 masculine +46885 masculine +masculine +46888 masculine +46890 masculine +masculine +46893 masculine +46898 masculine +46900 masculine +46903 masculine +46905 masculine +feminine +46908 masculine +neuter +neuter +46912 masculine +masculine +46917 neuter +neuter +neuter +46924 neuter +neuter +46928 neuter +neuter +46933 masculine +masculine +46936 masculine +masculine +masculine +46940 masculine +46942 feminine +neuter +46947 masculine +masculine +masculine +46951 masculine +neuter +masculine +46955 feminine +feminine +46958 masculine +46960 feminine +feminine +masculine +46964 masculine +masculine +46967 masculine +masculine +46970 feminine +feminine +46974 masculine +neuter +46977 masculine +46983 masculine +46985 masculine +masculine +46988 masculine +46990 masculine +masculine +masculine +masculine +masculine +46997 masculine +47000 masculine +masculine +47003 masculine +47005 masculine +47007 masculine +masculine +neuter +masculine +masculine +masculine +masculine +47016 masculine +47018 masculine +masculine +neuter +neuter +47023 masculine +47027 feminine +47030 masculine +masculine +47033 masculine +masculine +masculine +masculine +masculine +47040 neuter +neuter +masculine +neuter +neuter +47046 masculine +masculine +masculine +47052 neuter +47054 masculine +neuter +neuter +47058 masculine +47061 masculine +47063 masculine +masculine +47066 masculine +masculine +47069 masculine +neuter +neuter +47073 masculine +47076 masculine +47079 feminine +47081 neuter +47083 feminine +masculine +47089 neuter +neuter +47093 feminine +feminine +47098 feminine +47101 feminine +feminine +47104 feminine +feminine +neuter +neuter +47109 masculine +masculine +47115 feminine +feminine +masculine +masculine +47120 masculine +masculine +47125 masculine +neuter +47128 neuter +feminine +feminine +47132 masculine +47134 masculine +masculine +masculine +masculine +47139 feminine +feminine +feminine +masculine +masculine +47145 neuter +neuter +47148 feminine +masculine +47152 masculine +47154 masculine +47157 masculine +47159 masculine +47162 masculine +feminine +47166 neuter +masculine +masculine +masculine +47174 masculine +47177 masculine +masculine +47180 masculine +47184 feminine +47186 feminine +feminine +masculine +masculine +47191 masculine +47193 feminine +47195 masculine +47197 masculine +47201 masculine +47205 masculine +masculine +masculine +47210 neuter +47215 masculine +masculine +47218 masculine +47220 masculine +masculine +masculine +47224 masculine +masculine +47228 masculine +masculine +neuter +masculine +masculine +masculine +47236 masculine +47239 masculine +47246 masculine +47251 masculine +masculine +masculine +masculine +masculine +47257 masculine +masculine +47260 masculine +masculine +47263 masculine +47265 masculine +47267 masculine +masculine +47271 neuter +neuter +47274 masculine +47276 masculine +47280 feminine +47282 neuter +neuter +masculine +masculine +47287 masculine +47289 masculine +47292 masculine +47294 neuter +neuter +masculine +masculine +47301 masculine +masculine +47307 masculine +47322 masculine +47325 masculine +masculine +masculine +masculine +masculine +47331 neuter +feminine +feminine +masculine +masculine +47338 masculine +47342 masculine +masculine +masculine +masculine +47347 masculine +47349 masculine +47357 masculine +47359 neuter +47362 feminine +feminine +47365 masculine +47368 neuter +neuter +masculine +47372 neuter +neuter +neuter +neuter +masculine +47378 masculine +47380 masculine +masculine +47385 masculine +masculine +47388 masculine +masculine +neuter +neuter +47394 masculine +masculine +masculine +47399 masculine +masculine +masculine +masculine +47405 masculine +masculine +47408 masculine +masculine +47412 masculine +masculine +masculine +masculine +47417 masculine +masculine +masculine +47424 masculine +masculine +47428 masculine +masculine +47431 masculine +masculine +neuter +47435 neuter +47437 masculine +masculine +masculine +47441 masculine +47443 masculine +47446 masculine +masculine +masculine +47450 feminine +feminine +feminine +47454 masculine +47456 feminine +feminine +47461 masculine +masculine +47465 masculine +masculine +masculine +47470 masculine +47473 feminine +feminine +masculine +47478 masculine +47480 masculine +masculine +47483 masculine +47485 neuter +47487 feminine +feminine +feminine +47491 masculine +masculine +masculine +masculine +masculine +47500 masculine +47502 masculine +masculine +47505 masculine +47507 neuter +47510 masculine +47514 neuter +neuter +47517 masculine +neuter +47521 masculine +47523 masculine +masculine +47526 masculine +neuter +47529 masculine +47532 masculine +masculine +47535 masculine +masculine +47538 masculine +masculine +47541 masculine +masculine +masculine +masculine +47546 neuter +neuter +masculine +47550 masculine +masculine +feminine +feminine +47555 masculine +masculine +masculine +47560 masculine +47562 masculine +masculine +47565 masculine +masculine +47568 feminine +feminine +feminine +47572 masculine +47576 feminine +masculine +47579 masculine +47581 masculine +masculine +masculine +masculine +47586 masculine +masculine +47589 masculine +masculine +47593 masculine +47596 masculine +masculine +masculine +47600 masculine +masculine +masculine +47608 masculine +neuter +47612 masculine +masculine +masculine +neuter +neuter +47619 masculine +47622 masculine +47625 masculine +47630 neuter +neuter +masculine +47634 neuter +masculine +47637 masculine +masculine +47643 masculine +47645 masculine +47649 masculine +masculine +masculine +47653 masculine +47655 feminine +feminine +feminine +47659 feminine +feminine +47662 masculine +47664 feminine +feminine +47668 masculine +masculine +47671 masculine +masculine +47674 masculine +masculine +47677 masculine +47679 masculine +47682 masculine +47684 masculine +neuter +47688 masculine +47690 neuter +neuter +47693 masculine +neuter +neuter +masculine +47699 masculine +47701 masculine +masculine +47705 masculine +47707 feminine +feminine +masculine +masculine +47714 feminine +feminine +masculine +47718 masculine +47721 neuter +neuter +masculine +47726 masculine +47728 feminine +47730 masculine +masculine +47733 feminine +masculine +47737 masculine +masculine +47740 neuter +neuter +masculine +47746 masculine +masculine +masculine +masculine +masculine +masculine +47753 masculine +47755 masculine +masculine +masculine +47760 masculine +masculine +47764 masculine +neuter +neuter +masculine +masculine +47770 feminine +feminine +47775 masculine +47777 masculine +47779 feminine +masculine +47782 feminine +feminine +47790 feminine +47794 neuter +neuter +47800 feminine +47802 feminine +47804 feminine +feminine +feminine +47808 feminine +feminine +feminine +47814 masculine +masculine +47821 neuter +neuter +47827 masculine +masculine +47834 neuter +neuter +neuter +47839 neuter +neuter +neuter +47846 masculine +masculine +47850 masculine +47856 masculine +masculine +masculine +masculine +neuter +47863 masculine +47865 masculine +masculine +47868 masculine +47870 neuter +47872 masculine +47874 neuter +47876 masculine +masculine +47879 masculine +47881 masculine +47885 neuter +47888 masculine +neuter +neuter +masculine +47893 masculine +47896 masculine +masculine +masculine +47902 masculine +masculine +masculine +masculine +47908 masculine +47910 masculine +47912 masculine +masculine +masculine +masculine +masculine +masculine +47920 masculine +47922 masculine +masculine +masculine +neuter +masculine +masculine +47929 masculine +47933 masculine +masculine +masculine +masculine +47938 masculine +47942 feminine +47944 masculine +masculine +masculine +masculine +masculine +masculine +47951 masculine +masculine +masculine +masculine +47956 masculine +47960 masculine +masculine +47963 masculine +47967 masculine +masculine +masculine +masculine +masculine +47976 masculine +masculine +47980 neuter +neuter +neuter +47989 neuter +neuter +47994 masculine +neuter +neuter +48000 masculine +48006 feminine +feminine +48011 masculine +48020 masculine +masculine +48026 feminine +feminine +48029 neuter +48032 feminine +feminine +feminine +48036 feminine +feminine +masculine +masculine +masculine +48043 neuter +neuter +masculine +masculine +neuter +48049 masculine +feminine +feminine +masculine +masculine +48055 masculine +48057 feminine +48060 neuter +neuter +48064 neuter +masculine +48068 masculine +masculine +masculine +neuter +neuter +48074 masculine +masculine +masculine +48078 masculine +masculine +masculine +masculine +48084 masculine +masculine +masculine +48088 feminine +feminine +feminine +masculine +masculine +neuter +neuter +masculine +neuter +neuter +48103 masculine +masculine +masculine +masculine +48108 feminine +feminine +feminine +masculine +48113 feminine +feminine +feminine +neuter +48119 masculine +neuter +masculine +masculine +masculine +masculine +masculine +48127 masculine +masculine +48131 masculine +feminine +feminine +48135 feminine +feminine +masculine +48139 feminine +feminine +masculine +masculine +masculine +48145 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +48154 neuter +neuter +masculine +masculine +48159 masculine +48161 neuter +feminine +48165 masculine +48167 neuter +neuter +48172 masculine +masculine +48176 feminine +feminine +48180 neuter +48183 feminine +feminine +feminine +feminine +48188 feminine +48190 feminine +feminine +masculine +48194 neuter +neuter +48199 neuter +neuter +masculine +48203 feminine +48205 neuter +48207 neuter +48210 neuter +neuter +48214 feminine +feminine +48217 feminine +feminine +neuter +neuter +masculine +masculine +48224 neuter +neuter +48227 feminine +neuter +48230 neuter +48233 masculine +masculine +masculine +48237 neuter +neuter +48240 feminine +48243 neuter +neuter +masculine +masculine +masculine +48251 neuter +48253 feminine +48255 neuter +48258 masculine +48261 feminine +48263 feminine +feminine +48266 feminine +feminine +feminine +48270 feminine +neuter +neuter +48274 feminine +feminine +48278 feminine +neuter +48281 masculine +masculine +48284 masculine +masculine +48296 masculine +48298 feminine +feminine +masculine +48303 masculine +masculine +masculine +masculine +48309 feminine +masculine +masculine +48315 feminine +feminine +feminine +48321 neuter +neuter +masculine +48325 feminine +48327 neuter +neuter +48330 neuter +neuter +masculine +48335 masculine +masculine +masculine +48340 feminine +feminine +feminine +48344 feminine +48346 feminine +feminine +masculine +48350 feminine +feminine +48353 feminine +48356 masculine +masculine +neuter +48362 masculine +48364 masculine +neuter +neuter +neuter +48370 feminine +48372 masculine +masculine +masculine +48377 neuter +neuter +48380 masculine +48382 neuter +neuter +neuter +48388 masculine +masculine +neuter +neuter +48396 masculine +48398 feminine +feminine +feminine +48402 masculine +48404 feminine +feminine +masculine +48409 feminine +feminine +neuter +feminine +48414 masculine +48417 masculine +48419 neuter +neuter +neuter +neuter +48426 neuter +48428 masculine +48432 masculine +masculine +masculine +48436 masculine +48438 masculine +masculine +masculine +48442 neuter +48445 masculine +48449 masculine +masculine +masculine +masculine +masculine +masculine +48457 masculine +masculine +48461 masculine +48463 masculine +masculine +neuter +masculine +48469 masculine +48471 masculine +48473 feminine +48477 neuter +neuter +48480 feminine +48482 feminine +feminine +feminine +48487 masculine +neuter +48490 masculine +48492 masculine +neuter +48495 masculine +masculine +masculine +masculine +48500 masculine +masculine +masculine +48504 neuter +48506 masculine +48508 masculine +masculine +48511 masculine +masculine +masculine +48517 masculine +masculine +masculine +48521 masculine +masculine +48525 neuter +masculine +48529 masculine +48534 masculine +48536 masculine +masculine +48539 masculine +masculine +48545 neuter +neuter +feminine +feminine +feminine +48552 masculine +neuter +48557 feminine +feminine +48563 feminine +feminine +48566 neuter +neuter +48570 feminine +neuter +neuter +masculine +48575 feminine +48577 feminine +masculine +48580 masculine +48582 masculine +48586 masculine +masculine +48591 neuter +neuter +48598 feminine +feminine +48602 masculine +48606 masculine +48609 masculine +48611 masculine +48613 masculine +feminine +feminine +neuter +48619 neuter +neuter +48622 masculine +masculine +48626 neuter +48628 masculine +masculine +48633 feminine +feminine +masculine +48637 masculine +48639 masculine +48642 masculine +masculine +masculine +48646 masculine +48648 feminine +feminine +feminine +neuter +48653 masculine +48657 feminine +feminine +48662 masculine +48668 masculine +masculine +48675 feminine +48680 feminine +feminine +48684 neuter +48687 masculine +48691 neuter +48693 masculine +48695 masculine +masculine +masculine +masculine +48701 masculine +48703 masculine +48705 masculine +masculine +masculine +48711 masculine +48713 masculine +masculine +48717 masculine +48721 masculine +48723 feminine +feminine +48726 feminine +48734 feminine +feminine +48739 feminine +feminine +48742 masculine +feminine +feminine +feminine +48748 feminine +48751 masculine +masculine +48755 masculine +48757 masculine +masculine +48762 masculine +masculine +48766 masculine +48768 masculine +48770 neuter +48772 feminine +feminine +48777 masculine +48779 feminine +feminine +masculine +masculine +48784 neuter +masculine +masculine +masculine +48790 neuter +masculine +48794 masculine +feminine +48798 masculine +48800 masculine +masculine +48803 neuter +48807 masculine +neuter +masculine +48813 neuter +masculine +48817 feminine +feminine +48821 feminine +feminine +48825 masculine +masculine +48831 masculine +48837 neuter +feminine +48840 neuter +48845 masculine +48848 neuter +masculine +48851 masculine +feminine +feminine +48855 masculine +masculine +48859 masculine +masculine +48862 feminine +feminine +48865 masculine +48867 masculine +48869 neuter +neuter +48873 masculine +48875 masculine +masculine +masculine +neuter +48880 masculine +48882 masculine +48887 masculine +masculine +masculine +masculine +48892 masculine +48897 masculine +48903 neuter +neuter +neuter +48907 masculine +masculine +masculine +48911 masculine +masculine +48914 masculine +48919 masculine +masculine +masculine +neuter +48924 feminine +feminine +48928 masculine +48933 masculine +masculine +48938 masculine +feminine +feminine +feminine +48945 neuter +neuter +masculine +feminine +48950 feminine +feminine +48953 neuter +neuter +neuter +masculine +48958 feminine +48960 masculine +neuter +48966 feminine +feminine +masculine +masculine +48977 feminine +feminine +48980 masculine +48983 neuter +feminine +48987 masculine +48990 feminine +48992 masculine +feminine +feminine +masculine +48997 masculine +49001 neuter +49003 masculine +masculine +49007 masculine +49011 masculine +masculine +49014 masculine +masculine +masculine +49019 feminine +49021 feminine +feminine +49025 masculine +49027 neuter +49029 neuter +neuter +masculine +masculine +49034 feminine +49036 masculine +masculine +49039 masculine +masculine +49043 masculine +masculine +49046 masculine +49048 masculine +masculine +masculine +49053 feminine +49055 masculine +masculine +neuter +49059 masculine +49063 masculine +49066 neuter +neuter +49070 masculine +feminine +49074 feminine +feminine +49077 neuter +neuter +masculine +masculine +49082 neuter +neuter +49085 feminine +feminine +49089 feminine +feminine +neuter +49095 masculine +masculine +49098 masculine +neuter +masculine +masculine +masculine +49105 feminine +49109 neuter +neuter +49112 masculine +49115 masculine +49118 masculine +neuter +neuter +49125 neuter +neuter +neuter +neuter +neuter +neuter +neuter +49133 masculine +masculine +49136 masculine +49138 masculine +masculine +49141 masculine +masculine +49145 masculine +masculine +49148 masculine +49151 masculine +masculine +masculine +49157 neuter +neuter +49161 masculine +masculine +masculine +49167 masculine +49169 masculine +49171 feminine +neuter +masculine +49175 masculine +masculine +masculine +49179 neuter +neuter +masculine +masculine +49185 neuter +49188 neuter +feminine +49192 neuter +masculine +49196 masculine +49199 masculine +masculine +feminine +49209 feminine +feminine +masculine +feminine +49214 masculine +49216 masculine +masculine +feminine +49220 feminine +masculine +49224 masculine +49227 masculine +masculine +49230 masculine +49232 masculine +49235 masculine +49240 masculine +49245 neuter +neuter +masculine +49249 masculine +49252 feminine +49254 feminine +49256 masculine +masculine +49259 masculine +49261 feminine +feminine +49264 feminine +feminine +49267 masculine +masculine +49270 masculine +masculine +49274 masculine +masculine +masculine +masculine +49279 masculine +masculine +masculine +masculine +masculine +49286 feminine +49288 feminine +feminine +masculine +masculine +49295 masculine +masculine +masculine +49299 neuter +masculine +49302 masculine +49305 masculine +49307 masculine +49320 masculine +masculine +49324 masculine +49326 neuter +49328 masculine +49334 masculine +masculine +49343 masculine +masculine +49347 feminine +49349 masculine +masculine +49352 neuter +49355 masculine +49358 feminine +masculine +49361 feminine +feminine +49364 feminine +feminine +masculine +49369 masculine +masculine +masculine +49373 masculine +49376 masculine +masculine +49380 masculine +49383 masculine +49385 neuter +49391 masculine +masculine +49394 masculine +49396 masculine +masculine +49399 masculine +masculine +masculine +masculine +49406 neuter +masculine +49410 masculine +49414 masculine +49417 masculine +masculine +49422 masculine +49425 masculine +masculine +masculine +neuter +neuter +neuter +49432 feminine +49435 masculine +masculine +49439 masculine +masculine +masculine +feminine +49445 masculine +masculine +masculine +49449 masculine +49453 masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +masculine +49466 masculine +49472 masculine +masculine +49478 masculine +49484 masculine +49488 masculine +masculine +49491 neuter +49495 neuter +masculine +49499 masculine +masculine +49503 neuter +neuter +neuter +49507 feminine +49509 masculine +49513 masculine +49517 masculine +49519 masculine +masculine +49524 neuter +masculine +49530 masculine +49532 neuter +neuter +neuter +49536 neuter +49538 masculine +masculine +49541 masculine +masculine +49544 neuter +neuter +49551 masculine +49553 masculine +masculine +masculine +masculine +feminine +49561 masculine +masculine +49565 masculine +masculine +masculine +49570 masculine +masculine +masculine +masculine +49576 masculine +masculine +masculine +masculine +49582 masculine +49584 masculine +masculine +masculine +49589 masculine +masculine +49592 masculine +masculine +masculine +49596 masculine +masculine +masculine +49600 masculine +neuter +49604 masculine +49606 masculine +masculine +neuter +49610 neuter +masculine +49615 masculine +49627 masculine +49629 feminine +feminine +feminine +feminine +49635 feminine +49637 masculine +masculine +masculine +masculine +masculine +masculine +49644 masculine +49646 masculine +masculine +49649 masculine +49651 masculine +masculine +49654 masculine +neuter +masculine +masculine +masculine +masculine +masculine +49663 masculine +49665 masculine +masculine +neuter +49669 neuter +masculine +49672 masculine +49674 masculine +masculine +masculine +masculine +masculine +masculine +49683 masculine +masculine +masculine +masculine +49689 masculine +neuter +49692 masculine +feminine +49698 feminine +feminine +49702 masculine +49705 masculine +masculine +masculine +49712 masculine +masculine +49715 feminine +49717 feminine +feminine +masculine +49721 masculine +49723 masculine +masculine +masculine +49728 masculine +masculine +49731 masculine +49733 masculine +masculine +49736 masculine +masculine +49739 masculine +masculine +masculine +masculine +masculine +49745 feminine +49748 masculine +masculine +49751 feminine +49754 neuter +neuter +49757 masculine +masculine +masculine +49764 masculine +masculine +masculine +masculine +49769 masculine +49773 masculine +49776 masculine +49778 masculine +masculine +49783 masculine +masculine +49789 masculine +49792 masculine +49794 masculine +49796 masculine +49798 masculine +49800 feminine +feminine +49805 masculine +masculine +masculine +49810 masculine +masculine +masculine +masculine +49815 masculine +masculine +masculine +49820 masculine +49823 masculine +49831 feminine +feminine +49834 neuter +neuter +49839 masculine +49845 masculine +masculine +masculine +49849 masculine +masculine +masculine +masculine +masculine +49855 masculine +49857 masculine +masculine +masculine +masculine +49862 feminine +feminine +feminine +feminine +masculine +49869 feminine +feminine +feminine +49874 feminine +feminine +masculine +masculine +49882 masculine +masculine +49885 masculine +masculine +masculine +49889 masculine +masculine +49892 masculine +masculine +49895 feminine +feminine +masculine +masculine +49900 masculine +masculine +49906 feminine +masculine +masculine +neuter +49913 feminine +49916 feminine +feminine +49920 feminine +feminine +masculine +masculine +masculine +neuter +49927 neuter +49933 feminine +49935 feminine +feminine +49939 masculine +masculine +masculine +masculine +feminine +49945 masculine +49948 masculine +49950 masculine +masculine +masculine +49954 feminine +feminine +neuter +49959 feminine +49964 masculine +49969 masculine +masculine +49972 masculine +49977 masculine +masculine +neuter +neuter +masculine +neuter +49990 masculine +masculine +masculine +masculine +neuter +neuter +49997 masculine +masculine +masculine +masculine +50003 masculine +masculine +masculine +neuter +masculine +masculine +masculine +50014 masculine +masculine +50018 masculine +masculine +masculine +50023 feminine +feminine +neuter +neuter +50028 masculine +masculine +50031 feminine +feminine +feminine +50036 feminine +feminine +masculine +50042 masculine +masculine +masculine +masculine +50047 neuter +50050 feminine +masculine +50053 feminine +feminine +masculine +50057 masculine +masculine +50060 masculine +masculine +masculine +50067 feminine +feminine +50072 neuter +neuter +masculine +masculine +50079 neuter +masculine +masculine +50085 neuter +neuter +masculine +masculine +masculine +50091 neuter +50093 feminine +50095 masculine +masculine +masculine +50099 masculine +neuter +50102 neuter +masculine +50106 neuter +neuter +50109 neuter +neuter +50112 masculine +masculine +50115 masculine +masculine +neuter +neuter +50121 feminine +feminine +50125 masculine +feminine +feminine +masculine +50131 neuter +50135 masculine +masculine +masculine +masculine +50140 masculine +neuter +50143 masculine +masculine +masculine +50147 neuter +50149 masculine +masculine +masculine +masculine +50158 masculine +masculine +50162 masculine +neuter +neuter +50168 neuter +50171 masculine +50174 masculine +50176 masculine +masculine +masculine +50181 feminine +feminine +50184 masculine +50187 masculine +masculine +50192 neuter +50194 masculine +masculine +masculine +50200 feminine +feminine +50203 masculine +50205 masculine +50208 masculine +masculine +neuter +neuter +masculine +50217 masculine +50219 masculine +masculine +masculine +50223 neuter +50227 feminine +feminine +50230 masculine +masculine +masculine +50234 masculine +masculine +50240 neuter +neuter +50243 masculine +neuter +50246 feminine +feminine +masculine +50251 neuter +neuter +masculine +masculine +masculine +neuter +neuter +neuter +50261 masculine +masculine +50265 masculine +masculine +50268 neuter +masculine +50271 masculine +50275 feminine +50278 masculine +50281 masculine +masculine +50284 masculine +50286 neuter +50289 masculine +masculine +50293 masculine +50295 masculine +masculine +masculine +masculine +masculine +masculine +neuter +masculine +masculine +50306 masculine +feminine +50310 masculine +masculine +50315 masculine +50317 masculine +50319 masculine +50321 neuter +neuter +neuter +neuter +50331 masculine +masculine +50334 masculine +50336 masculine +50339 masculine +50346 masculine +50352 feminine +feminine +masculine +masculine +50358 masculine +masculine +masculine +50363 masculine +50365 masculine +masculine +50370 feminine +feminine +feminine +feminine +masculine +neuter +50380 masculine +50387 masculine +50390 neuter +50392 neuter +50397 feminine +feminine +masculine +masculine +neuter +neuter +50404 feminine +feminine +feminine +50409 neuter +neuter +50412 neuter +neuter +neuter +50425 neuter +neuter +50431 feminine +feminine +neuter +50445 masculine +masculine +masculine +50449 neuter +neuter +50452 masculine +50455 masculine +50458 neuter +50461 masculine +50464 masculine +50467 masculine +masculine +masculine +masculine +50472 neuter +50480 neuter +50484 neuter +50488 feminine +feminine +50494 neuter +neuter +50505 neuter +neuter +50509 masculine +50512 masculine +masculine +50516 masculine +50518 masculine +masculine +masculine +masculine +masculine +masculine +masculine +50527 masculine +50529 masculine +masculine +50532 feminine +feminine +50537 masculine +masculine +masculine +masculine +50542 masculine +masculine +masculine +50546 masculine +50548 feminine +feminine +50553 masculine +masculine +masculine +masculine +50558 masculine +masculine +masculine +masculine +50564 masculine +masculine +masculine +50568 masculine +50573 feminine +feminine +50578 masculine +masculine +masculine +masculine +50583 masculine +masculine +50587 masculine +masculine +50592 masculine +masculine +50595 masculine +masculine +masculine +50599 masculine +50602 masculine +50604 masculine +50611 neuter +neuter +masculine +masculine +masculine +masculine +masculine +50619 feminine +50621 feminine +feminine +50624 neuter +neuter +50628 masculine +masculine +50632 masculine +masculine +50635 neuter +neuter +50638 neuter +neuter +50642 neuter +masculine +neuter +neuter +50647 masculine +masculine +neuter +masculine +50652 neuter +neuter +50658 neuter +neuter +50663 neuter +neuter +masculine +50667 masculine +masculine +feminine +feminine +50673 neuter +neuter +50677 masculine +neuter +neuter +50682 masculine +50684 neuter +50686 neuter +50688 masculine +masculine +50691 masculine +masculine +masculine +50695 feminine +feminine +feminine +50702 masculine +50707 masculine +50709 masculine +50711 feminine +50713 neuter +neuter +50716 neuter +neuter +50727 masculine +50729 feminine +feminine +masculine +50734 feminine +50736 masculine +masculine +masculine +50740 masculine +50742 masculine +50746 masculine +masculine +50750 masculine +masculine +masculine +50757 masculine +masculine +masculine +50763 masculine +50766 masculine +50769 masculine +50771 masculine +50776 masculine +50778 neuter +50782 neuter +masculine +50785 masculine +masculine +masculine +50796 masculine +masculine +50800 masculine +50803 masculine +masculine +masculine +feminine +feminine +masculine +50811 masculine +masculine +masculine +masculine +masculine +masculine +50818 masculine +masculine +feminine +50823 feminine +feminine +masculine +masculine +50828 feminine +feminine +feminine +feminine +feminine +50835 masculine +50840 masculine +50842 masculine +50844 neuter +50846 masculine +masculine +50849 feminine +feminine +50852 feminine +feminine +50857 feminine +feminine +50860 masculine +50862 masculine +masculine +masculine +50866 neuter +50868 neuter +50872 neuter +50875 feminine +feminine +masculine +masculine +50880 masculine +masculine +masculine +feminine +feminine +50887 masculine +masculine +masculine +50892 masculine +50894 masculine +masculine +neuter +neuter +masculine +masculine +50904 neuter +50906 neuter +neuter +masculine +masculine +50911 masculine +masculine +50914 neuter +50917 feminine +feminine +masculine +masculine +masculine +50923 masculine +masculine +50926 feminine +feminine +50929 masculine +masculine +masculine +masculine +50935 feminine +50937 feminine +feminine +masculine +masculine +50943 masculine +50947 masculine +masculine +50951 masculine +masculine +50954 masculine +masculine +masculine +50961 masculine +50963 masculine +masculine +50968 masculine +masculine +masculine +50972 feminine +feminine +50978 feminine +feminine +50982 masculine +50985 feminine +feminine +50990 feminine +feminine +feminine +feminine +feminine +50996 neuter +neuter +neuter +51000 masculine +masculine +masculine +masculine +masculine +51008 feminine +masculine +masculine +51012 masculine +masculine +masculine +51016 feminine +feminine +51021 feminine +feminine +feminine +51026 feminine +51028 feminine +51030 feminine +feminine +51033 neuter +51035 feminine +masculine +masculine +51042 masculine +masculine +masculine +51047 feminine +feminine +51050 feminine +51054 masculine +feminine +feminine +feminine +feminine +51061 masculine +masculine +51065 feminine +feminine +feminine +51073 masculine +masculine +51076 masculine +51079 feminine +51082 feminine +feminine +masculine +masculine +51087 masculine +51089 masculine +masculine +51098 masculine +51103 neuter +neuter +51106 masculine +masculine +51109 neuter +51112 neuter +neuter +51115 neuter +51119 neuter +neuter +neuter +neuter +51125 masculine +51127 masculine +masculine +51130 masculine +masculine +51134 neuter +neuter +51137 masculine +51139 neuter +51142 masculine +masculine +masculine +51146 neuter +neuter +masculine +51150 masculine +51153 feminine +masculine +masculine +masculine +51158 neuter +neuter +neuter +51165 masculine +51168 neuter +neuter +neuter +51173 masculine +51178 masculine +masculine +51181 neuter +neuter +neuter +51185 masculine +51188 masculine +feminine +neuter +neuter +51193 feminine +feminine +51197 masculine +feminine +feminine +masculine +51203 neuter +neuter +neuter +51214 feminine +51217 masculine +masculine +51224 feminine +feminine +51230 masculine +51232 feminine +masculine +masculine +51238 masculine +51243 masculine +51246 masculine +51252 masculine +neuter +neuter +51257 masculine +feminine +feminine +masculine +51263 masculine +51266 masculine +masculine +51270 neuter +neuter +neuter +51279 neuter +51281 masculine +masculine +51287 feminine +masculine +masculine +51292 feminine +51295 feminine +51299 neuter +neuter +neuter +51304 neuter +51306 masculine +masculine +51310 neuter +51315 neuter +51318 feminine +feminine +51321 masculine +masculine +51326 feminine +51331 masculine +masculine +masculine +51335 masculine +masculine +51338 neuter +51340 feminine +51343 masculine +masculine +masculine +51347 masculine +masculine +masculine +neuter +masculine +masculine +51354 masculine +masculine +51357 neuter +51359 feminine +51363 masculine +feminine +feminine +51368 masculine +masculine +masculine +masculine +51375 masculine +51378 neuter +51380 feminine +masculine +masculine +51384 masculine +masculine +51390 masculine +51392 masculine +masculine +masculine +51399 feminine +51402 masculine +51404 neuter +51407 neuter +51410 feminine +51413 feminine +feminine +feminine +feminine +feminine +51421 feminine +feminine +51425 masculine +masculine +51429 masculine +masculine +51433 neuter +neuter +51437 masculine +51439 masculine +masculine +51443 feminine +feminine +51448 masculine +51450 masculine +51453 masculine +masculine +masculine +masculine +masculine +51460 masculine +51462 masculine +51464 feminine +51467 feminine +51473 masculine +masculine +51476 masculine +51478 masculine +51480 masculine +51483 masculine +masculine +masculine +neuter +neuter +51491 neuter +neuter +masculine +masculine +51498 masculine +neuter +neuter +51506 masculine +51509 masculine +masculine +51516 masculine +masculine +51521 feminine +feminine +51524 feminine +51527 masculine +51529 masculine +masculine +masculine +51535 masculine +51537 feminine +feminine +51542 masculine +masculine +51545 masculine +masculine +51549 masculine +masculine +masculine +51553 masculine +51555 masculine +51557 masculine +masculine +51560 masculine +masculine +masculine +51567 neuter +51571 masculine +51576 masculine +masculine +masculine +51582 feminine +feminine +feminine +masculine +masculine +masculine +51590 masculine +51592 masculine +masculine +feminine +feminine +feminine +51600 neuter +neuter +51607 masculine +masculine +masculine +51611 masculine +51614 masculine +51619 feminine +51621 masculine +masculine +51625 masculine +masculine +masculine +51629 feminine +feminine +51635 feminine +feminine +feminine +51640 masculine +51645 masculine +51648 masculine +masculine +masculine +masculine +51654 feminine +51656 feminine +51660 feminine +feminine +51663 masculine +masculine +51667 masculine +51669 feminine +feminine +feminine +feminine +51679 feminine +feminine +51682 masculine +masculine +masculine +masculine +neuter +neuter +51690 neuter +51692 feminine +feminine +51696 masculine +51699 feminine +feminine +51705 feminine +feminine +feminine +feminine +51711 neuter +neuter +masculine +51716 masculine +masculine +masculine +masculine +masculine +51723 feminine +masculine +masculine +51727 masculine +51730 feminine +feminine +51733 feminine +feminine +51737 masculine +51744 masculine +masculine +masculine +51752 masculine +masculine +51755 masculine +51758 neuter +51760 neuter +51767 masculine +masculine +masculine +masculine +51774 neuter +neuter +51778 masculine +masculine +masculine +51782 masculine +masculine +51787 masculine +masculine +masculine +masculine +masculine +51793 masculine +masculine +masculine +51800 masculine +masculine +masculine +masculine +51805 masculine +masculine +51808 masculine +masculine +masculine +51814 feminine +feminine +51817 masculine +51819 feminine +neuter +51824 masculine +51827 feminine +feminine +51830 masculine +masculine +masculine +51835 masculine +masculine +51838 feminine +feminine +feminine +51842 feminine +51844 masculine +masculine +masculine +masculine +masculine +51853 masculine +51855 feminine +feminine +masculine +feminine +51861 neuter +neuter +neuter +51865 masculine +masculine +masculine +51869 feminine +feminine +51872 feminine +feminine +51875 neuter +51877 feminine +masculine +masculine +51882 masculine +51884 neuter +51888 neuter +neuter +51891 feminine +feminine +feminine +feminine +feminine +51897 feminine +51899 feminine +feminine +51902 feminine +51904 neuter +masculine +masculine +masculine +masculine +masculine +masculine +feminine +neuter +neuter +feminine +51916 masculine +51918 masculine +51921 feminine +feminine +51925 neuter +neuter +51928 masculine +masculine +masculine +51932 feminine +feminine +neuter +neuter +masculine +51938 neuter +51941 neuter +51944 masculine +masculine +51950 neuter +masculine +51953 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +51962 masculine +51964 masculine +masculine +51969 masculine +51971 masculine +51974 masculine +masculine +masculine +masculine +masculine +51984 neuter +neuter +51989 feminine +feminine +51993 masculine +51996 masculine +52001 masculine +masculine +masculine +52006 masculine +masculine +52014 masculine +masculine +masculine +52019 masculine +masculine +masculine +52026 neuter +52028 feminine +feminine +feminine +52033 masculine +masculine +masculine +masculine +neuter +52044 masculine +masculine +52047 masculine +52049 masculine +masculine +masculine +52053 masculine +masculine +52058 masculine +masculine +52064 masculine +masculine +52067 masculine +masculine +masculine +masculine +52076 masculine +masculine +52080 masculine +52083 masculine +masculine +52086 masculine +masculine +52089 masculine +masculine +52092 neuter +52094 masculine +masculine +masculine +52098 neuter +neuter +52102 masculine +52104 masculine +52110 neuter +neuter +52115 masculine +masculine +52119 masculine +masculine +52122 masculine +52124 masculine +masculine +masculine +masculine +52130 neuter +52132 masculine +masculine +masculine +masculine +52137 neuter +52140 neuter +52142 masculine +52144 masculine +masculine +masculine +52155 neuter +52158 masculine +52160 masculine +masculine +52164 neuter +52166 neuter +neuter +52170 masculine +masculine +52173 masculine +masculine +masculine +masculine +masculine +masculine +masculine +52182 masculine +masculine +52186 masculine +52193 masculine +masculine +52197 masculine +neuter +52202 neuter +masculine +masculine +masculine +52208 neuter +masculine +52211 neuter +52213 masculine +masculine +52218 masculine +masculine +52221 masculine +masculine +52225 masculine +neuter +neuter +masculine +52231 neuter +neuter +neuter +52235 masculine +52241 masculine +masculine +52244 masculine +masculine +52250 masculine +masculine +masculine +52257 masculine +masculine +52260 masculine +52262 feminine +feminine +feminine +52266 masculine +masculine +52269 masculine +52271 masculine +masculine +52275 masculine +masculine +masculine +52279 masculine +masculine +masculine +52284 masculine +masculine +masculine +masculine +masculine +52294 masculine +masculine +masculine +52298 masculine +52300 masculine +masculine +masculine +52305 feminine +feminine +52309 feminine +52315 masculine +masculine +52318 feminine +feminine +52326 feminine +52331 masculine +masculine +52334 feminine +feminine +masculine +masculine +masculine +masculine +52341 masculine +masculine +52346 masculine +masculine +52349 feminine +52351 masculine +52354 masculine +masculine +52357 feminine +52360 masculine +52362 feminine +52364 masculine +feminine +52368 masculine +masculine +52373 neuter +52376 feminine +52378 feminine +masculine +masculine +52382 neuter +neuter +52385 feminine +feminine +masculine +52390 masculine +neuter +neuter +masculine +52395 feminine +feminine +masculine +neuter +neuter +masculine +52402 feminine +feminine +52409 masculine +neuter +52415 feminine +feminine +feminine +feminine +feminine +52424 neuter +neuter +neuter +neuter +52429 neuter +neuter +masculine +masculine +52438 masculine +feminine +feminine +52444 feminine +masculine +52447 masculine +masculine +52454 feminine +52456 feminine +feminine +feminine +52465 masculine +52468 feminine +feminine +52474 masculine +feminine +feminine +52479 neuter +52484 masculine +52486 masculine +masculine +masculine +masculine +52491 masculine +52497 feminine +52499 neuter +neuter +masculine +52505 feminine +feminine +feminine +masculine +masculine +52511 neuter +neuter +neuter +52516 masculine +masculine +52520 neuter +neuter +neuter +neuter +neuter +52530 masculine +masculine +52535 masculine +masculine +52538 masculine +masculine +52544 feminine +masculine +52549 neuter +masculine +52555 masculine +masculine +masculine +52560 masculine +52562 masculine +52564 masculine +masculine +52570 feminine +feminine +52576 feminine +feminine +feminine +52581 feminine +52583 feminine +feminine +52594 feminine +52596 feminine +52598 masculine +52605 feminine +feminine +masculine +masculine +52612 masculine +52616 neuter +neuter +masculine +masculine +52626 masculine +52629 neuter +neuter +neuter +neuter +masculine +52639 feminine +52641 masculine +masculine +52644 feminine +feminine +feminine +52648 masculine +masculine +masculine +52660 masculine +masculine +52663 masculine +masculine +52666 masculine +52668 masculine +52674 masculine +52681 masculine +52685 neuter +masculine +neuter +52691 neuter +neuter +neuter +52696 neuter +52698 masculine +masculine +52701 feminine +feminine +feminine +feminine +feminine +feminine +52709 masculine +masculine +masculine +52714 neuter +neuter +neuter +52719 masculine +masculine +52724 neuter +neuter +masculine +52731 masculine +masculine +masculine +52737 neuter +neuter +feminine +feminine +masculine +masculine +52744 masculine +masculine +masculine +masculine +masculine +52750 masculine +52752 masculine +masculine +52756 masculine +52759 masculine +52762 masculine +52765 masculine +52767 neuter +52769 masculine +masculine +52772 masculine +52774 neuter +52778 masculine +masculine +masculine +neuter +neuter +masculine +52786 masculine +52788 masculine +neuter +neuter +52793 masculine +masculine +52796 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +52805 neuter +52807 masculine +52810 masculine +masculine +52814 neuter +52816 neuter +neuter +52820 masculine +52822 masculine +masculine +52825 masculine +masculine +52830 masculine +masculine +52833 masculine +masculine +52837 masculine +masculine +masculine +masculine +52842 masculine +52845 masculine +masculine +masculine +masculine +52850 masculine +52852 masculine +masculine +52857 neuter +neuter +neuter +52865 masculine +masculine +masculine +52869 neuter +neuter +neuter +52874 neuter +52881 masculine +neuter +52884 masculine +52886 masculine +masculine +masculine +neuter +52891 masculine +masculine +52894 masculine +masculine +masculine +neuter +52899 neuter +52902 masculine +52905 masculine +masculine +masculine +masculine +52910 masculine +masculine +52913 masculine +52919 masculine +52922 masculine +52926 neuter +neuter +masculine +masculine +masculine +52933 feminine +52936 masculine +masculine +masculine +52940 feminine +feminine +52943 masculine +52945 neuter +52948 feminine +feminine +52951 feminine +52953 feminine +52960 masculine +masculine +masculine +52964 feminine +feminine +masculine +masculine +masculine +52971 masculine +52973 masculine +52979 masculine +masculine +masculine +52983 feminine +feminine +52987 neuter +neuter +masculine +52993 masculine +52995 masculine +53003 masculine +53005 neuter +neuter +53010 neuter +neuter +53013 feminine +feminine +53016 feminine +53018 feminine +53020 masculine +masculine +masculine +masculine +53025 feminine +feminine +53029 neuter +neuter +53036 neuter +53041 masculine +masculine +masculine +masculine +masculine +53047 neuter +neuter +53050 masculine +masculine +masculine +masculine +53056 neuter +53059 feminine +53061 masculine +masculine +53065 masculine +masculine +masculine +masculine +masculine +53073 masculine +masculine +53076 masculine +53081 masculine +masculine +masculine +53085 masculine +53087 neuter +neuter +53092 feminine +masculine +masculine +masculine +53097 masculine +masculine +53100 feminine +feminine +53103 masculine +masculine +53109 masculine +masculine +masculine +53123 neuter +53128 masculine +masculine +53134 feminine +feminine +feminine +feminine +53139 feminine +feminine +feminine +feminine +53144 feminine +feminine +feminine +masculine +masculine +masculine +masculine +53154 masculine +masculine +masculine +masculine +masculine +53163 masculine +neuter +53168 neuter +neuter +masculine +masculine +53173 masculine +53176 masculine +neuter +53179 neuter +neuter +masculine +masculine +53186 masculine +53188 masculine +53191 masculine +53193 neuter +neuter +53202 neuter +53204 masculine +masculine +53207 neuter +neuter +53211 feminine +feminine +53215 neuter +masculine +53218 masculine +masculine +53221 masculine +53225 masculine +masculine +masculine +53233 masculine +53236 masculine +masculine +53239 masculine +masculine +53242 masculine +masculine +53247 masculine +masculine +53250 masculine +masculine +masculine +masculine +53255 masculine +masculine +masculine +masculine +53260 masculine +masculine +53263 masculine +masculine +53266 feminine +masculine +masculine +masculine +53273 masculine +masculine +53278 masculine +masculine +masculine +53282 masculine +masculine +masculine +53287 masculine +masculine +feminine +feminine +masculine +masculine +53299 masculine +masculine +53317 neuter +neuter +53321 masculine +masculine +53327 masculine +masculine +53338 masculine +masculine +53343 neuter +neuter +neuter +neuter +53348 neuter +neuter +masculine +masculine +53354 neuter +53356 neuter +neuter +masculine +masculine +53362 neuter +neuter +53369 neuter +53372 neuter +53374 feminine +feminine +feminine +53378 neuter +53380 neuter +neuter +masculine +masculine +53386 masculine +masculine +masculine +masculine +masculine +53392 masculine +53394 masculine +53396 feminine +feminine +53400 masculine +53403 feminine +feminine +feminine +53408 masculine +masculine +53411 masculine +53416 masculine +masculine +masculine +masculine +53421 masculine +masculine +53426 masculine +53428 masculine +masculine +masculine +masculine +masculine +53435 masculine +masculine +53438 feminine +feminine +53445 masculine +masculine +53449 masculine +53452 masculine +53456 masculine +masculine +53464 masculine +masculine +masculine +masculine +53470 masculine +53473 masculine +53475 feminine +feminine +feminine +53479 neuter +53481 masculine +masculine +53485 masculine +masculine +masculine +masculine +masculine +masculine +53492 masculine +masculine +53495 masculine +53501 masculine +masculine +53504 masculine +53507 masculine +masculine +53510 masculine +masculine +masculine +53514 masculine +masculine +53520 masculine +masculine +53523 feminine +feminine +53527 masculine +masculine +feminine +feminine +masculine +masculine +53536 feminine +feminine +neuter +neuter +53542 masculine +53544 masculine +masculine +masculine +53548 masculine +masculine +masculine +53552 masculine +53554 masculine +53561 masculine +masculine +masculine +masculine +masculine +53567 masculine +masculine +masculine +53571 masculine +53574 masculine +masculine +masculine +53579 masculine +masculine +53583 masculine +masculine +masculine +53588 feminine +feminine +53593 feminine +masculine +masculine +feminine +53600 masculine +masculine +masculine +masculine +53606 masculine +53609 feminine +feminine +53614 masculine +masculine +masculine +53624 feminine +feminine +masculine +masculine +masculine +masculine +53632 masculine +neuter +neuter +53637 feminine +53639 masculine +masculine +masculine +53643 feminine +feminine +53646 masculine +53648 neuter +neuter +53651 feminine +feminine +53655 masculine +feminine +feminine +feminine +53660 feminine +feminine +53663 feminine +feminine +53667 neuter +neuter +53670 feminine +feminine +53673 masculine +masculine +53676 feminine +feminine +53679 masculine +53681 neuter +neuter +53688 masculine +53692 masculine +masculine +masculine +53698 masculine +masculine +53701 masculine +masculine +53704 masculine +53708 masculine +53710 masculine +masculine +masculine +53714 masculine +masculine +53719 masculine +masculine +53723 masculine +masculine +masculine +masculine +masculine +53730 masculine +masculine +neuter +53735 feminine +masculine +53738 feminine +53740 masculine +53742 masculine +masculine +masculine +masculine +53747 masculine +53749 masculine +masculine +masculine +masculine +53754 masculine +53757 masculine +masculine +masculine +53761 masculine +53765 masculine +masculine +masculine +masculine +53770 masculine +neuter +53777 masculine +masculine +masculine +masculine +masculine +53784 neuter +neuter +neuter +neuter +53789 neuter +neuter +feminine +feminine +53795 neuter +neuter +neuter +neuter +53802 neuter +53805 feminine +53811 masculine +masculine +53818 feminine +masculine +masculine +masculine +53823 masculine +53825 masculine +53827 masculine +53829 masculine +masculine +masculine +53835 neuter +53839 masculine +53847 neuter +masculine +53850 masculine +masculine +53853 masculine +masculine +masculine +masculine +masculine +53860 neuter +53865 masculine +53869 masculine +masculine +masculine +53879 masculine +masculine +masculine +masculine +53884 masculine +53886 neuter +feminine +feminine +53898 masculine +masculine +masculine +masculine +53903 masculine +masculine +masculine +53909 masculine +53915 masculine +masculine +53920 masculine +masculine +masculine +masculine +53925 masculine +53928 masculine +masculine +53931 masculine +53935 neuter +53937 masculine +masculine +53940 feminine +feminine +53946 feminine +feminine +53951 masculine +53953 masculine +masculine +53958 feminine +feminine +masculine +masculine +feminine +feminine +53967 masculine +masculine +masculine +masculine +53976 feminine +feminine +53980 masculine +masculine +53984 neuter +neuter +53987 neuter +53990 masculine +neuter +53993 neuter +53997 masculine +53999 feminine +54002 neuter +54005 masculine +masculine +masculine +54010 masculine +masculine +masculine +54015 masculine +54018 masculine +masculine +masculine +masculine +masculine +masculine +masculine +54028 masculine +masculine +masculine +masculine +54034 masculine +54037 masculine +masculine +54048 masculine +54050 neuter +neuter +masculine +neuter +54058 feminine +feminine +54064 feminine +feminine +feminine +54068 masculine +masculine +masculine +54074 neuter +masculine +masculine +54079 feminine +feminine +54084 masculine +masculine +masculine +54088 feminine +feminine +54092 masculine +54099 neuter +54101 masculine +masculine +54104 masculine +54106 feminine +feminine +54112 masculine +54114 masculine +54116 masculine +54118 masculine +54120 masculine +masculine +54123 masculine +54126 masculine +54129 masculine +54134 masculine +masculine +54137 masculine +feminine +54141 masculine +54143 masculine +masculine +masculine +masculine +54149 feminine +feminine +feminine +54153 masculine +54155 neuter +neuter +54161 masculine +masculine +masculine +54165 masculine +neuter +54169 masculine +54172 masculine +masculine +54176 feminine +feminine +feminine +54181 feminine +54183 masculine +masculine +54187 masculine +54189 neuter +neuter +masculine +54195 feminine +feminine +54199 masculine +masculine +54205 masculine +54207 masculine +54209 masculine +masculine +feminine +feminine +feminine +feminine +54217 masculine +masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +54228 feminine +54230 masculine +54234 masculine +54237 masculine +masculine +54240 masculine +54244 masculine +masculine +neuter +54251 masculine +masculine +neuter +54255 masculine +54260 masculine +54263 masculine +neuter +neuter +54268 masculine +54271 neuter +masculine +54275 feminine +feminine +54280 masculine +masculine +54285 masculine +masculine +54289 neuter +54291 masculine +54293 feminine +54295 masculine +54297 neuter +54301 masculine +masculine +masculine +54307 masculine +masculine +masculine +54312 neuter +54316 feminine +54318 feminine +feminine +feminine +54324 masculine +54326 masculine +masculine +54329 masculine +54331 masculine +54336 feminine +54339 neuter +masculine +54346 masculine +masculine +54349 masculine +54351 masculine +masculine +54354 masculine +54359 masculine +masculine +54363 masculine +54370 neuter +neuter +masculine +masculine +masculine +54376 masculine +54385 masculine +54390 masculine +masculine +masculine +54394 masculine +54400 masculine +54403 masculine +54405 masculine +54410 masculine +54413 masculine +54416 masculine +feminine +feminine +54422 feminine +feminine +masculine +54427 masculine +masculine +masculine +54432 masculine +54435 masculine +masculine +54440 neuter +neuter +54443 neuter +masculine +54447 masculine +masculine +masculine +masculine +masculine +54453 masculine +neuter +54457 masculine +masculine +54460 masculine +masculine +masculine +54465 masculine +54468 masculine +masculine +54471 masculine +masculine +54479 masculine +masculine +54497 masculine +masculine +54500 masculine +54503 masculine +54509 masculine +54513 feminine +feminine +masculine +masculine +54520 masculine +masculine +masculine +54524 masculine +masculine +masculine +masculine +54544 feminine +feminine +feminine +feminine +feminine +feminine +feminine +54552 masculine +masculine +54556 masculine +54558 masculine +54565 masculine +masculine +54571 feminine +feminine +masculine +neuter +neuter +54577 feminine +feminine +masculine +54582 neuter +54585 neuter +neuter +neuter +54590 masculine +masculine +54593 masculine +54597 neuter +54599 masculine +54604 masculine +masculine +masculine +masculine +masculine +masculine +54611 masculine +54614 masculine +masculine +masculine +54618 masculine +54620 masculine +masculine +54623 masculine +54628 feminine +feminine +masculine +masculine +54634 feminine +feminine +54639 neuter +neuter +masculine +54644 feminine +feminine +feminine +54649 masculine +54651 masculine +masculine +54654 neuter +54657 masculine +masculine +54660 masculine +54662 masculine +54664 masculine +54667 masculine +54669 masculine +54672 masculine +feminine +feminine +54677 masculine +masculine +54680 masculine +masculine +54683 masculine +54686 masculine +masculine +54689 neuter +54692 masculine +54694 masculine +masculine +54699 masculine +54701 masculine +masculine +masculine +54707 masculine +masculine +masculine +54715 masculine +54717 masculine +masculine +54721 masculine +54724 masculine +masculine +54727 masculine +masculine +masculine +masculine +54732 masculine +masculine +masculine +masculine +54739 masculine +masculine +masculine +masculine +54744 masculine +neuter +masculine +masculine +54749 masculine +54751 masculine +masculine +54755 masculine +masculine +54760 neuter +54762 masculine +54765 neuter +54770 masculine +54775 feminine +feminine +54783 feminine +feminine +masculine +54790 masculine +54792 masculine +masculine +masculine +54796 masculine +54799 neuter +neuter +feminine +feminine +54804 masculine +54808 neuter +neuter +54811 masculine +masculine +masculine +54816 masculine +54818 masculine +54820 masculine +54823 masculine +masculine +54826 masculine +masculine +54829 masculine +feminine +54832 feminine +feminine +54835 masculine +feminine +54838 neuter +54840 masculine +masculine +feminine +feminine +feminine +54846 neuter +feminine +54850 masculine +masculine +masculine +54855 feminine +feminine +54860 neuter +54863 neuter +54865 masculine +masculine +54870 masculine +54872 masculine +masculine +54875 masculine +masculine +masculine +54880 feminine +feminine +54885 masculine +masculine +masculine +54890 masculine +masculine +masculine +54894 masculine +masculine +masculine +54898 feminine +54903 masculine +54906 feminine +feminine +54909 masculine +masculine +54913 feminine +feminine +masculine +54917 masculine +54919 masculine +54921 masculine +masculine +54924 masculine +masculine +54928 masculine +masculine +masculine +54932 feminine +feminine +54935 neuter +feminine +54938 masculine +masculine +masculine +54942 masculine +masculine +54945 feminine +feminine +54948 feminine +feminine +feminine +54953 masculine +masculine +masculine +54957 masculine +54961 feminine +54963 masculine +masculine +54967 feminine +masculine +masculine +54980 masculine +54982 masculine +masculine +masculine +54987 neuter +neuter +masculine +masculine +masculine +masculine +54998 feminine +feminine +55002 neuter +neuter +feminine +feminine +55008 masculine +masculine +masculine +55013 masculine +55015 feminine +feminine +55020 feminine +55022 masculine +55025 masculine +55030 masculine +feminine +55033 feminine +feminine +55054 feminine +feminine +55060 masculine +55066 feminine +feminine +feminine +feminine +feminine +55073 masculine +55079 masculine +masculine +55085 masculine +masculine +masculine +masculine +55092 masculine +feminine +feminine +feminine +55099 masculine +masculine +55102 masculine +55107 masculine +masculine +55110 masculine +55113 masculine +55116 masculine +masculine +55120 masculine +55125 masculine +masculine +55133 masculine +masculine +55137 neuter +neuter +neuter +55142 neuter +neuter +masculine +55146 neuter +neuter +55149 masculine +55151 masculine +55155 feminine +feminine +masculine +55161 masculine +55169 feminine +feminine +55182 masculine +masculine +55186 masculine +55198 masculine +55201 masculine +55206 masculine +55211 masculine +masculine +masculine +55219 masculine +masculine +masculine +55228 feminine +feminine +55240 feminine +feminine +55245 masculine +55247 masculine +55250 masculine +masculine +masculine +neuter +neuter +feminine +feminine +55261 neuter +55268 masculine +masculine +55271 masculine +55273 neuter +55277 masculine +neuter +55281 masculine +masculine +55286 masculine +masculine +masculine +55292 masculine +masculine +55296 masculine +masculine +masculine +masculine +55307 masculine +55309 neuter +55314 masculine +masculine +neuter +55319 masculine +masculine +55328 masculine +55331 neuter +neuter +masculine +55336 neuter +masculine +masculine +masculine +55342 masculine +55345 masculine +masculine +55348 masculine +masculine +masculine +masculine +55356 masculine +masculine +masculine +masculine +55361 masculine +55366 feminine +feminine +55369 feminine +feminine +55375 masculine +neuter +masculine +55380 masculine +55387 masculine +55390 masculine +masculine +masculine +55398 masculine +masculine +masculine +feminine +feminine +55404 masculine +feminine +feminine +55408 masculine +masculine +55413 feminine +feminine +55416 masculine +masculine +masculine +masculine +55422 masculine +masculine +55426 masculine +masculine +55431 masculine +55435 neuter +masculine +55443 masculine +masculine +masculine +masculine +55451 neuter +55455 masculine +masculine +55461 neuter +55464 masculine +masculine +55470 masculine +masculine +masculine +55474 masculine +55477 masculine +masculine +masculine +55481 neuter +masculine +masculine +55485 neuter +neuter +masculine +masculine +55495 masculine +masculine +feminine +feminine +55501 feminine +55504 masculine +masculine +neuter +masculine +55512 neuter +neuter +masculine +masculine +55518 masculine +55521 feminine +55524 masculine +masculine +masculine +masculine +55530 masculine +masculine +masculine +55534 masculine +masculine +masculine +55545 masculine +masculine +55553 masculine +55556 masculine +55560 neuter +feminine +feminine +feminine +feminine +55571 masculine +masculine +masculine +masculine +55577 masculine +masculine +masculine +masculine +55583 feminine +feminine +masculine +masculine +55590 masculine +masculine +55594 feminine +55597 feminine +feminine +55604 feminine +55606 masculine +55609 neuter +neuter +55612 neuter +neuter +55616 masculine +55619 masculine +masculine +masculine +55625 feminine +feminine +55631 masculine +55637 feminine +55639 feminine +55642 neuter +55647 masculine +masculine +55650 masculine +masculine +neuter +neuter +masculine +masculine +55658 neuter +55664 masculine +masculine +55669 masculine +masculine +55673 masculine +55679 masculine +55683 neuter +55686 masculine +55688 neuter +55693 masculine +masculine +55704 feminine +feminine +55708 masculine +masculine +55711 masculine +55717 masculine +masculine +masculine +masculine +55722 masculine +55727 masculine +masculine +55730 masculine +masculine +masculine +55736 neuter +55738 masculine +55741 masculine +masculine +55747 masculine +masculine +masculine +55755 masculine +55757 masculine +masculine +55761 masculine +55763 masculine +masculine +55766 masculine +masculine +55770 masculine +masculine +55773 masculine +masculine +55777 masculine +55781 masculine +feminine +feminine +55785 neuter +55788 masculine +masculine +55791 masculine +masculine +55794 masculine +55798 masculine +55804 masculine +55808 masculine +55814 masculine +55816 masculine +55818 masculine +55821 masculine +55823 masculine +masculine +masculine +55827 masculine +masculine +masculine +55834 feminine +feminine +feminine +feminine +55844 masculine +masculine +55847 masculine +55849 neuter +55853 masculine +55856 masculine +masculine +55863 masculine +55869 masculine +55873 masculine +55875 masculine +55880 neuter +neuter +55883 masculine +55885 masculine +masculine +55888 feminine +55891 masculine +masculine +masculine +masculine +masculine +masculine +masculine +55899 masculine +55901 masculine +masculine +masculine +55905 masculine +55908 masculine +55910 masculine +55913 masculine +masculine +masculine +55919 neuter +neuter +masculine +masculine +55924 masculine +55928 neuter +neuter +masculine +masculine +55934 feminine +55937 feminine +55939 masculine +55944 masculine +masculine +55948 neuter +masculine +masculine +neuter +masculine +55957 masculine +55959 neuter +neuter +55963 masculine +masculine +masculine +55967 masculine +masculine +55971 masculine +55975 feminine +feminine +masculine +masculine +neuter +55981 masculine +55988 masculine +55990 masculine +masculine +55993 masculine +masculine +masculine +neuter +neuter +55999 masculine +56003 masculine +56005 masculine +masculine +56008 masculine +masculine +56012 masculine +56014 masculine +56018 masculine +masculine +56021 masculine +56028 masculine +56033 masculine +masculine +56036 masculine +masculine +masculine +masculine +masculine +masculine +masculine +56047 masculine +masculine +56055 masculine +masculine +56060 masculine +56062 masculine +56066 masculine +56069 masculine +56074 masculine +masculine +56077 masculine +56079 masculine +masculine +56083 neuter +56085 feminine +feminine +masculine +masculine +56090 masculine +masculine +56094 masculine +masculine +masculine +56100 masculine +56102 masculine +masculine +56107 masculine +56109 masculine +masculine +56114 masculine +masculine +56123 masculine +masculine +masculine +56129 masculine +masculine +masculine +masculine +56134 neuter +neuter +56138 masculine +56142 masculine +masculine +neuter +neuter +56148 neuter +56151 masculine +56154 masculine +masculine +56157 neuter +56161 masculine +56165 masculine +masculine +56168 masculine +56171 masculine +56176 masculine +masculine +56179 masculine +56182 masculine +56186 neuter +56188 masculine +masculine +masculine +masculine +masculine +56195 masculine +masculine +masculine +56199 masculine +masculine +56202 masculine +56206 masculine +56214 masculine +masculine +masculine +56221 masculine +56223 masculine +masculine +56228 masculine +56237 masculine +56239 masculine +masculine +masculine +56245 masculine +56247 feminine +56249 masculine +56251 masculine +56253 neuter +56255 masculine +masculine +masculine +56260 masculine +masculine +56265 masculine +masculine +56269 masculine +masculine +56272 masculine +masculine +56276 neuter +masculine +masculine +masculine +56282 feminine +56284 masculine +56288 masculine +masculine +56291 neuter +masculine +56294 masculine +56297 masculine +56299 feminine +masculine +masculine +56305 masculine +masculine +masculine +masculine +56312 masculine +56314 masculine +56318 neuter +56321 masculine +masculine +56327 masculine +neuter +56334 masculine +masculine +56337 masculine +56344 neuter +56352 masculine +masculine +56357 masculine +56361 masculine +masculine +56366 masculine +masculine +masculine +56373 masculine +56375 masculine +masculine +56378 masculine +56384 masculine +masculine +56388 masculine +56391 neuter +neuter +neuter +56404 masculine +masculine +56408 masculine +masculine +masculine +56415 masculine +masculine +56419 neuter +neuter +masculine +56423 masculine +56426 masculine +masculine +56432 masculine +masculine +masculine +masculine +56439 masculine +56441 masculine +56445 neuter +56449 masculine +56451 feminine +56454 masculine +56461 masculine +56464 masculine +56467 masculine +56470 masculine +masculine +56476 masculine +masculine +masculine +masculine +56481 masculine +56485 masculine +56487 masculine +56491 masculine +56493 masculine +masculine +masculine +56498 masculine +56500 masculine +masculine +56504 masculine +56507 masculine +56510 masculine +56513 masculine +56516 masculine +masculine +56519 neuter +56522 masculine +masculine +masculine +56527 masculine +56529 masculine +56532 masculine +masculine +masculine +56537 neuter +56539 masculine +masculine +masculine +56543 masculine +masculine +56547 masculine +56551 masculine +56554 masculine +masculine +masculine +56558 masculine +56563 feminine +56569 feminine +feminine +56577 masculine +56579 masculine +56581 feminine +feminine +56584 feminine +feminine +neuter +neuter +56589 masculine +56591 masculine +masculine +56595 masculine +56597 masculine +masculine +56600 feminine +feminine +56603 masculine +neuter +neuter +masculine +masculine +masculine +56611 neuter +neuter +feminine +feminine +masculine +56618 neuter +neuter +neuter +56623 neuter +56626 neuter +56628 neuter +neuter +neuter +56633 neuter +56636 neuter +neuter +masculine +56642 feminine +feminine +masculine +56646 masculine +56653 masculine +56657 masculine +masculine +feminine +feminine +feminine +feminine +feminine +56665 masculine +masculine +masculine +56669 masculine +56672 neuter +56674 neuter +56676 masculine +56680 masculine +masculine +56689 feminine +feminine +neuter +neuter +masculine +masculine +56698 masculine +56701 masculine +56705 masculine +neuter +neuter +56710 feminine +feminine +56715 masculine +56723 feminine +56725 masculine +masculine +56740 feminine +56743 neuter +56747 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +56760 neuter +neuter +masculine +masculine +56766 masculine +masculine +masculine +56771 neuter +neuter +neuter +56775 masculine +masculine +masculine +56780 neuter +neuter +56785 masculine +masculine +56788 neuter +56792 masculine +56797 masculine +56799 neuter +neuter +56803 masculine +masculine +masculine +masculine +56809 neuter +neuter +56814 neuter +neuter +56819 masculine +masculine +56823 masculine +masculine +56826 feminine +feminine +56831 neuter +neuter +56834 neuter +neuter +56837 neuter +56841 feminine +feminine +feminine +neuter +56849 feminine +feminine +56855 feminine +feminine +masculine +masculine +56860 neuter +56862 masculine +masculine +56868 feminine +feminine +56874 feminine +masculine +56877 feminine +56883 feminine +56885 masculine +feminine +56889 feminine +56891 feminine +56895 feminine +feminine +feminine +feminine +56901 masculine +masculine +56904 neuter +56908 masculine +masculine +56911 masculine +masculine +masculine +56916 masculine +56918 masculine +neuter +56923 neuter +masculine +56926 masculine +56928 neuter +neuter +neuter +56933 masculine +56935 neuter +56937 masculine +masculine +56942 neuter +neuter +56945 neuter +neuter +masculine +56951 masculine +masculine +56954 neuter +neuter +56957 feminine +feminine +masculine +masculine +56963 masculine +masculine +masculine +56968 masculine +56971 feminine +feminine +56978 masculine +masculine +56982 feminine +56984 masculine +masculine +masculine +56992 neuter +neuter +neuter +56998 neuter +neuter +masculine +masculine +57003 neuter +57015 neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +feminine +feminine +57029 neuter +57035 masculine +feminine +feminine +57043 masculine +masculine +57048 masculine +neuter +57051 feminine +feminine +57054 masculine +masculine +57057 neuter +57060 neuter +neuter +57064 masculine +57068 feminine +feminine +masculine +masculine +57074 masculine +masculine +neuter +57080 masculine +masculine +masculine +57085 masculine +57087 masculine +masculine +masculine +neuter +neuter +neuter +57096 masculine +masculine +57099 neuter +neuter +neuter +57105 masculine +masculine +masculine +57109 neuter +neuter +57116 feminine +57120 masculine +masculine +57123 masculine +masculine +57126 masculine +masculine +masculine +57131 neuter +57133 masculine +masculine +57139 masculine +57142 masculine +57144 masculine +57146 masculine +masculine +masculine +masculine +masculine +57156 feminine +feminine +masculine +masculine +masculine +57165 masculine +masculine +57173 masculine +masculine +masculine +57180 neuter +neuter +masculine +masculine +57195 neuter +neuter +57205 masculine +masculine +57209 masculine +masculine +57213 masculine +57219 feminine +feminine +masculine +57226 masculine +masculine +57229 masculine +masculine +57233 masculine +masculine +neuter +neuter +57241 masculine +57244 masculine +57249 masculine +neuter +neuter +57254 neuter +neuter +57257 masculine +57259 masculine +neuter +57263 masculine +57266 masculine +57270 masculine +masculine +masculine +57274 feminine +57276 feminine +feminine +feminine +57280 feminine +feminine +feminine +feminine +57286 feminine +feminine +feminine +masculine +masculine +neuter +57293 feminine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +57307 feminine +feminine +57310 masculine +feminine +masculine +57314 masculine +57318 masculine +masculine +masculine +57322 feminine +feminine +feminine +57328 masculine +57331 feminine +feminine +masculine +masculine +57337 masculine +masculine +masculine +masculine +57342 feminine +57345 masculine +masculine +feminine +feminine +57350 feminine +feminine +feminine +57354 masculine +masculine +57365 masculine +57367 masculine +57369 feminine +57372 neuter +57374 masculine +masculine +57378 feminine +feminine +57382 masculine +masculine +masculine +masculine +57390 masculine +masculine +57397 masculine +57400 feminine +57402 feminine +feminine +57405 masculine +57408 feminine +feminine +57413 neuter +neuter +masculine +masculine +masculine +57421 masculine +57424 feminine +feminine +57428 neuter +neuter +57433 masculine +neuter +57438 neuter +57440 masculine +masculine +masculine +masculine +57450 masculine +57453 masculine +masculine +masculine +masculine +57462 masculine +masculine +57465 masculine +masculine +masculine +57469 masculine +57473 feminine +feminine +masculine +masculine +57481 masculine +masculine +masculine +feminine +masculine +57500 masculine +57503 masculine +masculine +masculine +masculine +masculine +masculine +57515 masculine +57517 masculine +masculine +masculine +57521 masculine +feminine +feminine +57525 masculine +57527 neuter +neuter +57531 feminine +57533 neuter +neuter +57537 masculine +57540 masculine +57542 masculine +masculine +57546 feminine +feminine +57549 feminine +57552 feminine +57554 masculine +masculine +57560 masculine +57562 feminine +feminine +57565 masculine +57567 feminine +57569 masculine +masculine +57574 feminine +feminine +57577 masculine +masculine +57585 masculine +masculine +57593 neuter +57595 masculine +masculine +57599 masculine +masculine +57602 feminine +masculine +masculine +57606 masculine +masculine +57610 masculine +feminine +feminine +57617 feminine +feminine +57620 feminine +feminine +feminine +57624 feminine +masculine +masculine +57629 feminine +feminine +57632 feminine +feminine +masculine +masculine +57642 masculine +masculine +masculine +57646 masculine +57653 masculine +masculine +57656 neuter +57658 masculine +57660 masculine +57666 masculine +masculine +masculine +masculine +masculine +masculine +masculine +57674 masculine +masculine +masculine +57678 neuter +feminine +57683 feminine +feminine +feminine +feminine +57688 feminine +masculine +masculine +57696 feminine +57700 neuter +57704 masculine +57708 masculine +masculine +57711 feminine +feminine +57717 masculine +masculine +57721 masculine +feminine +feminine +57725 masculine +masculine +masculine +masculine +57730 feminine +57732 feminine +feminine +57735 masculine +feminine +masculine +feminine +feminine +57746 feminine +masculine +57751 neuter +neuter +57757 feminine +feminine +57763 masculine +feminine +masculine +57768 masculine +masculine +masculine +feminine +masculine +masculine +57781 masculine +masculine +57784 masculine +57787 feminine +feminine +57790 masculine +masculine +feminine +masculine +masculine +57796 neuter +neuter +57800 masculine +57805 masculine +57807 masculine +masculine +57813 masculine +masculine +57817 masculine +masculine +57822 masculine +57824 masculine +57826 masculine +57830 masculine +masculine +masculine +masculine +masculine +masculine +masculine +57840 masculine +57844 masculine +57846 masculine +57848 masculine +57851 neuter +neuter +57855 neuter +57857 masculine +57860 neuter +57862 masculine +masculine +57865 masculine +masculine +57868 masculine +feminine +feminine +masculine +masculine +feminine +masculine +57878 masculine +57881 feminine +masculine +masculine +57891 feminine +feminine +masculine +masculine +57897 masculine +masculine +57900 masculine +masculine +57903 masculine +masculine +57908 masculine +57923 masculine +masculine +masculine +masculine +57935 neuter +masculine +feminine +feminine +57940 masculine +57944 masculine +masculine +masculine +masculine +masculine +57950 feminine +feminine +feminine +57954 feminine +feminine +masculine +neuter +57960 masculine +masculine +masculine +57964 masculine +57967 masculine +57970 masculine +57972 masculine +masculine +masculine +masculine +57977 feminine +feminine +57980 masculine +neuter +57985 masculine +57987 masculine +57989 masculine +57992 masculine +masculine +57996 masculine +neuter +57999 masculine +58002 masculine +masculine +58005 masculine +masculine +neuter +58010 neuter +58013 masculine +masculine +masculine +neuter +neuter +58021 masculine +58023 masculine +58026 masculine +58029 masculine +masculine +58035 masculine +masculine +58038 neuter +neuter +58041 masculine +masculine +58044 masculine +masculine +masculine +masculine +masculine +masculine +masculine +58052 masculine +58056 neuter +58063 masculine +masculine +58067 masculine +masculine +58071 neuter +neuter +neuter +58076 neuter +58078 masculine +58082 masculine +masculine +masculine +masculine +masculine +58090 masculine +58093 neuter +neuter +58098 neuter +neuter +neuter +58104 neuter +neuter +masculine +masculine +neuter +neuter +58112 neuter +58115 feminine +feminine +feminine +58121 masculine +58123 masculine +masculine +58126 feminine +58129 masculine +masculine +58135 feminine +feminine +58138 feminine +feminine +58141 masculine +feminine +feminine +58147 masculine +masculine +58152 neuter +neuter +masculine +masculine +58158 masculine +58160 neuter +58162 feminine +feminine +58165 masculine +neuter +58169 masculine +58172 masculine +masculine +58177 masculine +58179 neuter +neuter +masculine +neuter +58190 feminine +feminine +58194 masculine +masculine +58197 masculine +masculine +feminine +58202 masculine +58209 masculine +58211 masculine +masculine +58215 feminine +masculine +neuter +58220 feminine +58223 masculine +masculine +58227 masculine +masculine +58231 masculine +neuter +58235 feminine +feminine +58239 masculine +masculine +58242 masculine +58244 masculine +masculine +58247 masculine +58249 feminine +feminine +feminine +feminine +neuter +feminine +feminine +feminine +58258 masculine +masculine +masculine +masculine +58264 feminine +feminine +feminine +masculine +masculine +masculine +58271 feminine +feminine +58275 feminine +feminine +neuter +neuter +58281 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +58293 neuter +neuter +neuter +neuter +58299 masculine +neuter +58303 masculine +58306 neuter +58310 masculine +masculine +58313 masculine +58316 masculine +58319 neuter +neuter +masculine +neuter +neuter +58327 masculine +masculine +58330 feminine +58333 feminine +feminine +masculine +masculine +58339 neuter +58341 masculine +masculine +58346 masculine +58354 masculine +masculine +masculine +58358 masculine +masculine +58367 masculine +masculine +masculine +58374 masculine +masculine +masculine +58379 masculine +58382 masculine +masculine +58386 masculine +masculine +58390 masculine +masculine +masculine +58394 masculine +58399 masculine +masculine +feminine +58403 masculine +masculine +masculine +masculine +masculine +58409 feminine +feminine +masculine +58414 masculine +58416 neuter +58418 neuter +neuter +masculine +masculine +58425 feminine +masculine +58430 masculine +masculine +masculine +58434 neuter +masculine +58437 masculine +masculine +masculine +masculine +58442 masculine +neuter +masculine +masculine +58448 neuter +58451 neuter +58454 feminine +feminine +58457 masculine +masculine +58461 masculine +58463 masculine +feminine +neuter +58468 masculine +masculine +masculine +neuter +neuter +58476 masculine +58480 neuter +58482 neuter +58484 masculine +58486 neuter +58488 masculine +58491 masculine +masculine +masculine +masculine +58496 masculine +58498 masculine +masculine +58502 neuter +neuter +58506 masculine +58508 masculine +58510 neuter +58513 masculine +masculine +masculine +58518 neuter +masculine +58521 neuter +neuter +58524 masculine +masculine +58528 masculine +58533 neuter +58535 masculine +masculine +58538 masculine +58542 masculine +masculine +58545 masculine +masculine +58550 feminine +feminine +58553 masculine +58555 masculine +masculine +58558 feminine +feminine +feminine +58563 masculine +masculine +masculine +58567 masculine +masculine +58571 masculine +masculine +58575 masculine +masculine +58578 masculine +58580 masculine +58583 masculine +masculine +58586 masculine +masculine +58589 masculine +masculine +58592 feminine +feminine +58596 masculine +masculine +masculine +masculine +58606 masculine +masculine +masculine +masculine +masculine +58612 feminine +feminine +58615 masculine +masculine +58621 masculine +masculine +58624 masculine +masculine +feminine +feminine +masculine +58630 feminine +58632 masculine +masculine +feminine +feminine +masculine +58638 masculine +masculine +masculine +58642 feminine +feminine +58645 feminine +58648 masculine +58658 masculine +masculine +masculine +masculine +58664 masculine +58668 masculine +masculine +masculine +58672 feminine +feminine +58677 neuter +58679 masculine +58683 feminine +feminine +feminine +58688 neuter +58691 feminine +feminine +feminine +masculine +58697 neuter +neuter +58701 feminine +58703 masculine +masculine +58711 masculine +masculine +masculine +masculine +58716 masculine +58718 feminine +58720 masculine +58722 masculine +masculine +58726 masculine +58732 feminine +feminine +feminine +58741 feminine +masculine +masculine +masculine +58746 masculine +masculine +masculine +masculine +masculine +58757 feminine +feminine +masculine +58762 masculine +58764 neuter +58766 masculine +masculine +masculine +58773 masculine +masculine +masculine +58779 masculine +masculine +58782 masculine +masculine +58786 masculine +masculine +58795 masculine +masculine +masculine +masculine +masculine +58801 masculine +masculine +masculine +masculine +masculine +58808 masculine +masculine +masculine +58812 masculine +masculine +neuter +neuter +58821 neuter +neuter +58826 feminine +58830 masculine +masculine +58833 feminine +feminine +58840 neuter +neuter +58845 neuter +neuter +58848 masculine +neuter +58851 neuter +58853 masculine +58855 masculine +58858 masculine +58860 masculine +neuter +neuter +masculine +58865 masculine +58869 masculine +58871 masculine +masculine +masculine +masculine +masculine +58877 masculine +58879 masculine +masculine +58882 feminine +feminine +58886 masculine +masculine +masculine +masculine +58892 neuter +58899 masculine +58901 masculine +masculine +masculine +58906 masculine +feminine +feminine +58912 masculine +masculine +58916 feminine +feminine +58922 masculine +neuter +58925 masculine +58928 feminine +feminine +masculine +58934 masculine +58939 masculine +masculine +masculine +58944 masculine +58947 masculine +masculine +58953 masculine +58957 feminine +feminine +masculine +masculine +58963 feminine +feminine +masculine +masculine +58968 masculine +58972 masculine +masculine +58982 masculine +masculine +58986 masculine +masculine +58990 masculine +masculine +58994 neuter +58996 masculine +masculine +59000 masculine +masculine +masculine +59006 feminine +feminine +59012 masculine +59015 neuter +neuter +59023 masculine +59029 masculine +masculine +59034 masculine +masculine +masculine +masculine +59041 masculine +neuter +neuter +59046 masculine +masculine +masculine +masculine +masculine +masculine +59053 masculine +59055 masculine +59057 feminine +feminine +feminine +59063 masculine +59067 masculine +masculine +59070 masculine +masculine +59073 feminine +59075 neuter +59078 neuter +59083 feminine +feminine +masculine +feminine +feminine +59090 neuter +59096 masculine +masculine +59102 feminine +feminine +masculine +neuter +masculine +masculine +masculine +59111 masculine +feminine +feminine +59117 masculine +masculine +masculine +59121 masculine +masculine +masculine +masculine +masculine +masculine +59128 masculine +masculine +59131 neuter +59133 masculine +59135 neuter +neuter +masculine +masculine +59140 masculine +59142 feminine +feminine +59146 masculine +masculine +masculine +masculine +masculine +59152 neuter +59154 masculine +masculine +masculine +59158 feminine +feminine +59163 masculine +59167 masculine +masculine +59172 neuter +neuter +59176 neuter +neuter +59179 masculine +neuter +59182 masculine +59185 neuter +59187 masculine +masculine +59192 masculine +masculine +masculine +masculine +59198 neuter +neuter +neuter +59202 masculine +59206 masculine +masculine +59209 masculine +masculine +59214 masculine +masculine +59217 masculine +59220 masculine +neuter +59231 neuter +59233 masculine +masculine +59239 masculine +masculine +59242 masculine +masculine +59245 masculine +masculine +59253 neuter +59257 masculine +masculine +masculine +masculine +59262 masculine +masculine +59265 neuter +59268 feminine +feminine +59271 feminine +feminine +59274 masculine +masculine +masculine +masculine +59280 feminine +59283 masculine +masculine +59288 masculine +masculine +59292 masculine +59296 masculine +59299 masculine +masculine +masculine +59303 neuter +59307 masculine +masculine +59313 masculine +masculine +masculine +59318 neuter +neuter +masculine +59325 masculine +59327 neuter +59333 masculine +masculine +59336 masculine +masculine +59346 masculine +masculine +59349 masculine +masculine +59353 masculine +masculine +59359 masculine +masculine +masculine +59363 neuter +59380 masculine +masculine +masculine +masculine +masculine +59386 masculine +masculine +masculine +masculine +masculine +59392 neuter +59394 masculine +59398 neuter +59401 masculine +59406 masculine +59410 feminine +feminine +59413 masculine +masculine +59416 masculine +masculine +59421 feminine +feminine +masculine +59429 neuter +59442 masculine +masculine +59445 masculine +59450 masculine +59452 masculine +59454 masculine +masculine +59457 neuter +masculine +masculine +59461 neuter +neuter +59472 masculine +59479 masculine +masculine +masculine +masculine +59484 masculine +59487 masculine +masculine +59490 masculine +masculine +masculine +59494 masculine +masculine +masculine +masculine +masculine +59500 masculine +masculine +59504 masculine +masculine +masculine +59509 masculine +59511 masculine +59514 masculine +59516 masculine +masculine +59520 neuter +neuter +masculine +masculine +59525 masculine +masculine +masculine +59531 masculine +masculine +59534 masculine +masculine +59538 neuter +neuter +59542 masculine +59544 masculine +neuter +neuter +59550 masculine +masculine +masculine +59555 neuter +neuter +59560 masculine +masculine +masculine +59565 masculine +masculine +neuter +59570 neuter +59573 masculine +masculine +masculine +neuter +59578 neuter +59580 masculine +59582 masculine +59585 neuter +neuter +59588 masculine +59591 masculine +masculine +59594 neuter +feminine +59598 feminine +feminine +59602 masculine +masculine +neuter +59607 masculine +neuter +neuter +masculine +59612 masculine +59615 feminine +59620 masculine +59623 masculine +masculine +masculine +masculine +59628 masculine +masculine +59632 masculine +59634 masculine +masculine +59638 masculine +59640 masculine +masculine +59643 masculine +59645 masculine +59647 masculine +59649 masculine +neuter +59652 neuter +59661 masculine +masculine +59675 feminine +feminine +59681 masculine +59689 masculine +59691 neuter +59693 masculine +59695 masculine +masculine +59699 feminine +59702 masculine +59704 masculine +masculine +masculine +masculine +59711 masculine +59721 neuter +59723 masculine +masculine +masculine +59727 neuter +59733 feminine +feminine +59740 masculine +feminine +feminine +59753 masculine +59756 masculine +59763 feminine +feminine +59767 masculine +masculine +59774 feminine +feminine +masculine +masculine +59779 feminine +feminine +59791 masculine +59798 masculine +59806 masculine +59819 feminine +feminine +59822 masculine +masculine +masculine +59831 feminine +feminine +59834 masculine +masculine +59838 feminine +feminine +59841 feminine +feminine +59844 feminine +feminine +masculine +59849 masculine +masculine +59860 masculine +masculine +59867 masculine +59871 masculine +masculine +masculine +59876 masculine +masculine +59882 masculine +masculine +masculine +masculine +masculine +59894 masculine +masculine +masculine +59899 masculine +masculine +59906 masculine +masculine +59913 masculine +masculine +59916 masculine +masculine +59921 neuter +neuter +neuter +59928 masculine +59932 masculine +masculine +59936 masculine +59938 neuter +neuter +masculine +59946 masculine +masculine +59949 masculine +masculine +59957 neuter +neuter +neuter +59965 masculine +masculine +59969 neuter +neuter +neuter +59974 masculine +59977 neuter +neuter +59983 masculine +masculine +59987 neuter +59989 neuter +59992 neuter +neuter +59995 neuter +59999 masculine +masculine +60002 masculine +masculine +60005 neuter +60009 neuter +neuter +60017 feminine +feminine +feminine +feminine +60024 masculine +masculine +60027 masculine +masculine +60036 masculine +masculine +neuter +neuter +feminine +feminine +neuter +60044 masculine +masculine +60051 neuter +60056 neuter +60068 masculine +60074 neuter +masculine +masculine +60091 feminine +feminine +feminine +60099 masculine +masculine +60109 masculine +masculine +feminine +feminine +60115 masculine +feminine +masculine +60119 masculine +masculine +60123 masculine +masculine +60128 masculine +masculine +60133 masculine +60136 masculine +masculine +60139 masculine +masculine +60142 masculine +masculine +masculine +60146 neuter +60152 masculine +60155 masculine +masculine +60158 masculine +60161 masculine +60163 masculine +60166 masculine +masculine +60171 masculine +masculine +60175 masculine +60178 masculine +60181 feminine +60183 masculine +60185 masculine +60187 masculine +60189 masculine +masculine +60195 masculine +masculine +masculine +60201 masculine +60203 masculine +masculine +60206 masculine +neuter +60212 masculine +60214 masculine +masculine +neuter +neuter +neuter +neuter +neuter +60222 masculine +masculine +60225 neuter +neuter +60228 masculine +60231 neuter +60235 neuter +neuter +60240 feminine +60243 feminine +feminine +feminine +60250 masculine +masculine +60259 feminine +feminine +60281 masculine +masculine +60284 masculine +masculine +masculine +60300 neuter +60306 masculine +masculine +masculine +masculine +60315 neuter +60319 masculine +masculine +60323 masculine +masculine +60329 masculine +masculine +60338 feminine +feminine +feminine +feminine +60343 masculine +masculine +60346 masculine +masculine +60349 neuter +neuter +60354 neuter +masculine +60357 neuter +60359 neuter +neuter +masculine +neuter +60364 neuter +60366 masculine +masculine +60371 masculine +60374 masculine +masculine +masculine +60386 neuter +neuter +60390 masculine +60393 neuter +60398 feminine +feminine +60410 feminine +feminine +60413 neuter +neuter +masculine +masculine +60421 masculine +masculine +60424 masculine +masculine +60432 neuter +60435 masculine +60442 neuter +neuter +60448 neuter +60451 neuter +neuter +60461 neuter +neuter +60468 neuter +60475 neuter +60477 masculine +masculine +60481 masculine +masculine +60486 masculine +masculine +60491 masculine +masculine +60498 feminine +feminine +feminine +feminine +60503 feminine +feminine +60509 feminine +feminine +60514 masculine +masculine +60517 feminine +feminine +60523 masculine +feminine +feminine +neuter +60530 feminine +feminine +feminine +feminine +60538 feminine +feminine +60542 feminine +60544 feminine +feminine +feminine +feminine +60550 masculine +60554 feminine +feminine +feminine +masculine +60560 masculine +feminine +feminine +masculine +60566 masculine +masculine +masculine +60570 masculine +60575 neuter +60582 masculine +60584 masculine +masculine +60588 neuter +60590 masculine +masculine +masculine +60596 masculine +60598 neuter +neuter +60602 masculine +masculine +60622 masculine +60625 masculine +masculine +60630 neuter +60632 neuter +60634 masculine +masculine +60637 neuter +neuter +60642 neuter +60647 masculine +60649 masculine +masculine +60656 neuter +60661 masculine +masculine +60665 masculine +masculine +neuter +neuter +60673 masculine +masculine +60682 masculine +masculine +60685 neuter +60688 masculine +masculine +60691 masculine +masculine +masculine +60699 masculine +masculine +masculine +masculine +masculine +60711 masculine +masculine +60716 masculine +masculine +60720 neuter +neuter +60726 neuter +neuter +60732 masculine +masculine +60740 masculine +feminine +60746 feminine +60750 feminine +feminine +masculine +masculine +60755 masculine +60757 masculine +masculine +60762 neuter +neuter +60767 masculine +neuter +masculine +masculine +60772 feminine +60784 masculine +masculine +60790 masculine +masculine +masculine +60794 masculine +masculine +masculine +masculine +60804 masculine +masculine +masculine +60811 masculine +masculine +neuter +neuter +feminine +feminine +neuter +60819 masculine +masculine +60822 masculine +60832 feminine +60836 neuter +60842 masculine +60847 feminine +60849 masculine +masculine +masculine +60854 feminine +60856 masculine +masculine +60859 neuter +60864 masculine +masculine +60869 neuter +60875 feminine +feminine +neuter +60879 neuter +60885 neuter +60888 feminine +60899 masculine +masculine +60903 masculine +60912 neuter +60915 feminine +feminine +60919 feminine +feminine +60923 feminine +feminine +60936 masculine +masculine +60947 masculine +60951 masculine +masculine +60954 masculine +masculine +60957 feminine +60960 feminine +60963 feminine +60966 feminine +60974 feminine +60977 masculine +masculine +60986 feminine +60988 masculine +masculine +masculine +masculine +masculine +60996 neuter +61007 masculine +neuter +neuter +feminine +feminine +61015 feminine +feminine +feminine +61022 masculine +61024 neuter +61028 neuter +neuter +61032 masculine +61037 neuter +neuter +61043 neuter +neuter +61046 masculine +masculine +neuter +61051 neuter +61055 neuter +neuter +61061 neuter +61068 neuter +61075 masculine +masculine +masculine +61079 masculine +neuter +61082 neuter +neuter +61086 neuter +61093 neuter +61101 masculine +masculine +61105 neuter +61107 neuter +neuter +61110 neuter +neuter +61114 neuter +61117 masculine +61120 masculine +61124 masculine +61126 masculine +61129 masculine +61132 neuter +61139 neuter +61153 masculine +masculine +61159 feminine +feminine +61163 feminine +61166 feminine +feminine +61169 feminine +61173 feminine +feminine +feminine +61179 neuter +neuter +61183 feminine +feminine +61186 feminine +feminine +61190 masculine +61192 masculine +masculine +61199 feminine +61208 feminine +feminine +61211 feminine +feminine +61214 masculine +61220 feminine +feminine +feminine +61226 neuter +61232 neuter +61234 masculine +masculine +61239 neuter +neuter +61246 neuter +61248 neuter +neuter +61255 feminine +feminine +61259 feminine +neuter +61262 feminine +61266 feminine +61270 feminine +61274 feminine +61276 masculine +masculine +61281 feminine +feminine +feminine +61285 neuter +neuter +61296 masculine +masculine +61301 masculine +masculine +masculine +61315 masculine +masculine +61320 masculine +masculine +61325 masculine +masculine +61329 masculine +masculine +61334 masculine +masculine +61337 masculine +masculine +masculine +61343 feminine +61346 feminine +feminine +61353 neuter +61356 feminine +61359 masculine +61363 neuter +61367 masculine +61370 masculine +masculine +61376 feminine +61381 masculine +61383 neuter +neuter +61386 masculine +61391 masculine +61393 masculine +masculine +61398 neuter +61404 feminine +61407 masculine +masculine +feminine +61415 masculine +masculine +neuter +61419 masculine +61421 masculine +masculine +masculine +masculine +61426 masculine +masculine +61429 masculine +61431 feminine +feminine +61435 masculine +masculine +61438 masculine +masculine +61444 masculine +feminine +feminine +feminine +61449 neuter +neuter +61452 masculine +61454 masculine +feminine +feminine +61458 feminine +61460 feminine +feminine +feminine +61466 masculine +masculine +masculine +masculine +61471 masculine +61473 masculine +masculine +61479 feminine +feminine +masculine +neuter +neuter +neuter +61490 masculine +61496 masculine +feminine +feminine +feminine +61502 neuter +masculine +masculine +61510 neuter +neuter +masculine +masculine +masculine +61518 masculine +masculine +masculine +61523 masculine +61526 masculine +masculine +61533 neuter +neuter +61541 neuter +neuter +neuter +61547 masculine +61549 masculine +61566 masculine +61570 masculine +masculine +61575 masculine +61579 masculine +61582 neuter +neuter +neuter +neuter +61588 neuter +neuter +neuter +61594 masculine +61599 masculine +masculine +61602 masculine +61604 masculine +masculine +61611 masculine +masculine +61614 masculine +61616 neuter +neuter +61619 neuter +61624 neuter +61630 masculine +61633 masculine +61635 neuter +neuter +61638 neuter +61644 masculine +61646 masculine +61650 masculine +masculine +feminine +feminine +61655 feminine +feminine +61664 neuter +61667 masculine +masculine +61671 feminine +feminine +feminine +feminine +feminine +61677 masculine +61680 masculine +masculine +masculine +61685 masculine +masculine +61688 masculine +61693 masculine +masculine +61700 masculine +masculine +61706 masculine +61708 masculine +masculine +61713 masculine +61715 masculine +masculine +61718 masculine +masculine +61727 masculine +masculine +61730 masculine +61732 feminine +feminine +masculine +masculine +masculine +masculine +feminine +61744 masculine +masculine +61748 masculine +61750 masculine +masculine +61754 masculine +61757 masculine +61760 masculine +61762 masculine +61764 feminine +61768 masculine +61770 neuter +61774 masculine +masculine +61777 masculine +masculine +masculine +61783 masculine +neuter +61787 masculine +61796 masculine +61801 masculine +masculine +61809 feminine +feminine +feminine +61815 masculine +61818 neuter +61821 neuter +61824 masculine +61831 masculine +61833 neuter +61836 masculine +masculine +61844 masculine +61848 masculine +neuter +61857 masculine +61863 feminine +feminine +feminine +feminine +feminine +61874 feminine +masculine +masculine +masculine +61879 masculine +masculine +61889 masculine +61897 masculine +neuter +neuter +61904 feminine +feminine +feminine +61910 masculine +61914 masculine +neuter +masculine +masculine +61920 masculine +masculine +masculine +61924 masculine +masculine +masculine +masculine +61930 masculine +61932 masculine +61934 masculine +61936 masculine +masculine +masculine +61942 masculine +masculine +masculine +masculine +masculine +masculine +61951 masculine +61954 masculine +masculine +masculine +61958 masculine +masculine +masculine +feminine +feminine +61965 masculine +masculine +61969 masculine +masculine +masculine +61975 masculine +61977 feminine +61979 neuter +61981 masculine +masculine +neuter +neuter +neuter +61987 masculine +61991 masculine +masculine +61995 masculine +masculine +masculine +masculine +62000 masculine +62006 masculine +masculine +masculine +masculine +62011 masculine +62015 masculine +62020 neuter +62028 masculine +masculine +62032 masculine +62034 masculine +masculine +masculine +62038 masculine +62049 masculine +62053 masculine +masculine +masculine +62058 masculine +62064 masculine +masculine +62067 masculine +masculine +masculine +feminine +62072 feminine +62075 masculine +masculine +masculine +masculine +62081 masculine +neuter +neuter +neuter +neuter +62088 neuter +masculine +masculine +masculine +62094 masculine +masculine +masculine +masculine +62099 feminine +feminine +62102 feminine +feminine +neuter +neuter +neuter +62109 masculine +masculine +62114 neuter +62116 feminine +feminine +62119 masculine +masculine +62122 masculine +masculine +masculine +masculine +62127 masculine +masculine +62131 masculine +62135 masculine +neuter +62139 masculine +masculine +masculine +masculine +62144 masculine +masculine +masculine +masculine +62150 masculine +masculine +masculine +masculine +masculine +62157 masculine +masculine +62161 masculine +masculine +62165 masculine +masculine +masculine +masculine +62170 masculine +masculine +62173 masculine +masculine +masculine +62177 masculine +masculine +masculine +62182 masculine +masculine +62185 feminine +feminine +masculine +masculine +62190 masculine +masculine +62194 feminine +feminine +62199 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +62209 feminine +feminine +62213 masculine +masculine +62217 masculine +masculine +feminine +feminine +feminine +feminine +62227 masculine +masculine +masculine +masculine +masculine +62234 masculine +62239 masculine +masculine +62242 masculine +masculine +feminine +masculine +62247 neuter +62253 masculine +masculine +62256 masculine +62258 masculine +62260 masculine +62262 masculine +masculine +62265 masculine +masculine +62268 masculine +masculine +masculine +62273 feminine +feminine +masculine +62277 masculine +masculine +62280 feminine +62282 masculine +masculine +62288 feminine +62291 neuter +neuter +62294 masculine +masculine +masculine +62300 neuter +62302 neuter +neuter +62307 masculine +masculine +neuter +62311 masculine +62313 masculine +62315 neuter +62319 neuter +masculine +masculine +masculine +masculine +masculine +masculine +62327 neuter +masculine +masculine +masculine +62333 masculine +masculine +62336 masculine +masculine +62343 neuter +neuter +62348 neuter +62353 masculine +masculine +masculine +masculine +62358 masculine +masculine +masculine +62362 masculine +masculine +62365 masculine +62367 masculine +62370 masculine +62375 masculine +masculine +masculine +62380 masculine +62386 masculine +62388 masculine +masculine +masculine +masculine +masculine +masculine +masculine +62396 masculine +neuter +neuter +62404 masculine +masculine +62407 masculine +62411 masculine +62414 masculine +62418 masculine +masculine +62421 masculine +masculine +62424 neuter +neuter +62430 masculine +62434 neuter +neuter +62441 neuter +neuter +62445 masculine +masculine +62449 masculine +62452 feminine +feminine +masculine +masculine +masculine +62461 masculine +62465 masculine +masculine +neuter +62472 masculine +62475 masculine +masculine +masculine +62479 masculine +62483 masculine +masculine +62487 masculine +62489 masculine +masculine +masculine +62496 masculine +62498 masculine +masculine +masculine +masculine +62503 masculine +62505 masculine +masculine +masculine +62514 neuter +neuter +masculine +masculine +62520 masculine +masculine +62524 masculine +62527 masculine +masculine +masculine +masculine +62532 masculine +62534 masculine +62536 neuter +62539 masculine +62545 masculine +masculine +62549 masculine +62551 neuter +neuter +neuter +neuter +62556 masculine +masculine +62561 neuter +62564 masculine +feminine +feminine +feminine +feminine +62572 masculine +masculine +masculine +62577 masculine +masculine +masculine +62581 feminine +feminine +feminine +feminine +62586 masculine +masculine +masculine +masculine +62594 masculine +masculine +62598 feminine +feminine +feminine +feminine +62607 masculine +masculine +masculine +62611 masculine +62615 masculine +masculine +62620 masculine +62624 neuter +62628 neuter +62631 masculine +masculine +62635 feminine +feminine +masculine +masculine +masculine +62641 feminine +feminine +62645 feminine +feminine +62648 masculine +masculine +masculine +neuter +62653 feminine +62655 neuter +masculine +62660 masculine +masculine +62664 masculine +62666 feminine +62669 masculine +feminine +62673 feminine +62676 masculine +62680 masculine +neuter +62686 masculine +masculine +masculine +masculine +62693 masculine +62695 masculine +62697 masculine +masculine +62701 masculine +masculine +masculine +62707 masculine +masculine +masculine +masculine +62714 masculine +masculine +masculine +masculine +62719 feminine +62721 masculine +feminine +feminine +62725 neuter +neuter +62728 masculine +62732 masculine +62736 masculine +masculine +masculine +masculine +62742 masculine +neuter +62748 masculine +masculine +62752 masculine +62756 masculine +62761 feminine +feminine +62765 masculine +62768 masculine +masculine +62771 masculine +masculine +masculine +masculine +62776 neuter +neuter +neuter +62781 masculine +62783 masculine +masculine +62788 masculine +masculine +masculine +62792 masculine +masculine +62795 masculine +62799 masculine +masculine +masculine +62803 masculine +62812 masculine +feminine +62815 masculine +masculine +masculine +62819 masculine +62823 masculine +masculine +62828 masculine +masculine +masculine +62835 masculine +masculine +masculine +masculine +masculine +62845 neuter +neuter +62850 masculine +masculine +62856 masculine +masculine +feminine +62861 masculine +62864 masculine +masculine +masculine +62873 feminine +62878 feminine +62883 masculine +62886 feminine +feminine +62893 neuter +62897 neuter +masculine +masculine +62902 feminine +feminine +62906 neuter +masculine +masculine +62911 masculine +62913 masculine +masculine +62916 masculine +62918 masculine +62922 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +62931 masculine +masculine +62934 masculine +masculine +masculine +masculine +masculine +masculine +62942 masculine +masculine +62947 neuter +62949 masculine +masculine +neuter +62954 neuter +62957 feminine +masculine +neuter +feminine +62963 feminine +62966 masculine +masculine +62969 masculine +masculine +62974 masculine +62978 masculine +62980 masculine +masculine +masculine +masculine +masculine +62988 masculine +masculine +62992 masculine +62995 masculine +62999 masculine +masculine +63005 masculine +masculine +63008 masculine +masculine +masculine +masculine +63014 masculine +masculine +neuter +masculine +neuter +63021 feminine +63023 masculine +63027 masculine +masculine +63034 neuter +masculine +masculine +63040 masculine +masculine +masculine +63046 masculine +masculine +63050 neuter +masculine +masculine +masculine +masculine +masculine +masculine +masculine +63059 masculine +masculine +masculine +63063 masculine +masculine +masculine +63068 feminine +feminine +63071 masculine +masculine +63075 masculine +masculine +63079 neuter +63085 masculine +masculine +masculine +masculine +masculine +masculine +63093 masculine +masculine +masculine +masculine +63099 masculine +63101 masculine +masculine +masculine +63106 masculine +masculine +neuter +63113 masculine +masculine +63116 masculine +masculine +63119 neuter +neuter +masculine +63124 neuter +neuter +masculine +masculine +neuter +63130 masculine +masculine +63134 masculine +masculine +masculine +63138 masculine +63140 masculine +63142 masculine +63146 masculine +63149 masculine +63153 masculine +masculine +63157 feminine +feminine +63161 neuter +neuter +63164 masculine +63167 masculine +masculine +63171 masculine +63174 masculine +masculine +neuter +63181 masculine +masculine +masculine +masculine +feminine +feminine +masculine +63189 feminine +feminine +feminine +feminine +masculine +feminine +feminine +masculine +masculine +63199 feminine +feminine +feminine +63203 masculine +masculine +feminine +feminine +63208 masculine +masculine +masculine +masculine +63214 feminine +feminine +feminine +63218 masculine +masculine +63223 masculine +masculine +63226 feminine +feminine +63231 feminine +feminine +feminine +63235 masculine +masculine +feminine +63239 neuter +neuter +63242 neuter +masculine +masculine +masculine +63248 neuter +63252 feminine +feminine +63256 neuter +neuter +neuter +63261 masculine +masculine +neuter +neuter +masculine +masculine +63268 masculine +neuter +neuter +63274 neuter +neuter +masculine +masculine +63281 masculine +feminine +feminine +63285 neuter +neuter +63288 masculine +masculine +63291 feminine +63297 masculine +masculine +neuter +neuter +63302 neuter +neuter +63306 feminine +feminine +feminine +neuter +neuter +neuter +63313 masculine +masculine +63317 masculine +neuter +neuter +63324 masculine +masculine +63329 neuter +neuter +masculine +masculine +63334 masculine +masculine +masculine +masculine +masculine +63341 masculine +masculine +masculine +63347 masculine +masculine +63351 masculine +neuter +neuter +63355 masculine +masculine +masculine +feminine +masculine +feminine +feminine +63365 masculine +neuter +63368 neuter +63370 masculine +masculine +63374 feminine +63376 masculine +feminine +feminine +63380 masculine +63383 neuter +63391 neuter +63393 feminine +feminine +63396 neuter +masculine +63402 feminine +feminine +63407 masculine +63411 neuter +63413 masculine +masculine +masculine +63417 feminine +masculine +masculine +masculine +masculine +63423 masculine +63425 masculine +masculine +masculine +masculine +63431 neuter +neuter +masculine +masculine +63437 masculine +masculine +63443 neuter +neuter +masculine +63449 masculine +masculine +masculine +63453 masculine +feminine +neuter +neuter +masculine +neuter +feminine +63461 feminine +63463 feminine +63467 neuter +neuter +masculine +masculine +63473 neuter +neuter +63476 neuter +neuter +63479 neuter +63481 masculine +masculine +63487 masculine +masculine +63491 masculine +63494 masculine +masculine +neuter +neuter +63499 neuter +63501 masculine +63503 masculine +63507 feminine +feminine +masculine +masculine +63514 neuter +neuter +63517 masculine +masculine +63520 feminine +feminine +neuter +neuter +feminine +feminine +feminine +63530 neuter +neuter +feminine +63534 feminine +63537 masculine +masculine +masculine +63541 neuter +neuter +63548 masculine +masculine +63552 masculine +masculine +masculine +masculine +63557 masculine +masculine +63561 masculine +63563 masculine +masculine +63566 neuter +neuter +63573 masculine +63576 masculine +masculine +63579 masculine +masculine +masculine +63585 neuter +neuter +63589 masculine +63593 masculine +masculine +masculine +63597 neuter +masculine +masculine +63602 masculine +63604 neuter +neuter +63607 masculine +63609 neuter +neuter +neuter +63618 masculine +masculine +masculine +masculine +63625 neuter +neuter +63629 neuter +neuter +neuter +63633 neuter +neuter +neuter +63638 feminine +feminine +masculine +63643 neuter +neuter +neuter +63648 neuter +63650 masculine +masculine +63656 masculine +masculine +masculine +masculine +masculine +masculine +63663 neuter +neuter +63672 feminine +feminine +63676 masculine +63678 masculine +63684 masculine +masculine +masculine +63688 feminine +63691 neuter +neuter +63694 feminine +63700 neuter +neuter +63705 masculine +63707 neuter +masculine +63711 neuter +neuter +masculine +masculine +masculine +63717 feminine +feminine +63720 masculine +63722 masculine +masculine +63726 feminine +masculine +feminine +neuter +63732 masculine +63735 masculine +masculine +63743 masculine +neuter +feminine +63748 neuter +63752 masculine +masculine +masculine +63759 masculine +63762 feminine +masculine +feminine +neuter +63767 masculine +63769 feminine +feminine +63772 masculine +masculine +63776 masculine +masculine +63781 masculine +63786 masculine +63788 masculine +63791 feminine +masculine +feminine +feminine +feminine +63797 masculine +63799 masculine +neuter +63802 masculine +63804 feminine +masculine +63813 masculine +masculine +63818 masculine +masculine +63823 masculine +63826 masculine +masculine +63830 masculine +63833 masculine +63836 masculine +63839 feminine +feminine +feminine +feminine +masculine +masculine +63847 masculine +masculine +63850 neuter +63852 feminine +63854 feminine +feminine +feminine +feminine +feminine +feminine +feminine +neuter +63863 feminine +feminine +feminine +63868 masculine +masculine +63871 masculine +masculine +feminine +masculine +63876 masculine +masculine +63881 neuter +neuter +63885 masculine +feminine +63889 neuter +masculine +63893 feminine +feminine +63896 feminine +feminine +masculine +63901 masculine +masculine +masculine +masculine +masculine +63908 masculine +masculine +masculine +63912 feminine +63917 masculine +masculine +63923 neuter +masculine +63928 masculine +63930 neuter +neuter +63934 masculine +feminine +feminine +63938 masculine +63940 masculine +63944 masculine +masculine +63947 masculine +63949 masculine +masculine +masculine +63955 masculine +63958 masculine +63961 masculine +masculine +masculine +masculine +63966 masculine +masculine +63969 masculine +63971 masculine +63976 feminine +feminine +masculine +masculine +masculine +masculine +masculine +63985 masculine +masculine +63989 masculine +masculine +masculine +masculine +63996 feminine +feminine +63999 feminine +feminine +masculine +64007 feminine +64012 masculine +masculine +masculine +64016 masculine +64018 masculine +64020 masculine +masculine +feminine +feminine +feminine +64028 neuter +neuter +64032 feminine +64036 masculine +masculine +64039 masculine +masculine +64045 feminine +feminine +64050 feminine +feminine +64056 feminine +feminine +64062 masculine +64064 masculine +64066 masculine +64069 masculine +masculine +masculine +64074 masculine +masculine +64078 masculine +masculine +masculine +64085 masculine +masculine +64088 masculine +64090 masculine +64094 neuter +neuter +neuter +64098 masculine +masculine +64101 masculine +masculine +neuter +64106 neuter +64108 neuter +neuter +neuter +64112 neuter +64117 masculine +64119 masculine +masculine +masculine +masculine +masculine +masculine +64127 masculine +feminine +64131 neuter +neuter +masculine +64135 neuter +64137 masculine +64139 masculine +masculine +masculine +64143 feminine +feminine +feminine +feminine +64152 masculine +masculine +64155 masculine +masculine +masculine +masculine +64160 masculine +masculine +64163 feminine +feminine +feminine +64167 masculine +masculine +masculine +64171 masculine +64173 masculine +masculine +masculine +64178 masculine +masculine +masculine +64184 masculine +64194 neuter +neuter +64198 feminine +feminine +feminine +64202 neuter +64204 feminine +64206 feminine +64208 masculine +64210 masculine +masculine +64215 masculine +masculine +64218 masculine +64222 masculine +masculine +neuter +64226 neuter +neuter +64230 masculine +64233 masculine +64235 masculine +64238 neuter +neuter +neuter +neuter +neuter +neuter +neuter +64251 neuter +64255 neuter +neuter +masculine +masculine +64261 masculine +masculine +masculine +masculine +64266 masculine +masculine +masculine +masculine +masculine +masculine +64274 masculine +masculine +masculine +64278 masculine +masculine +64281 masculine +masculine +64286 masculine +64289 masculine +64291 feminine +feminine +64294 masculine +masculine +masculine +neuter +neuter +64303 feminine +64305 feminine +feminine +64310 masculine +masculine +masculine +neuter +neuter +masculine +masculine +64321 feminine +feminine +64324 feminine +feminine +64327 neuter +neuter +64330 masculine +64332 masculine +masculine +masculine +64337 neuter +neuter +neuter +64343 masculine +masculine +64347 neuter +neuter +64350 feminine +feminine +neuter +masculine +masculine +64357 masculine +64359 masculine +masculine +64363 neuter +neuter +64366 masculine +masculine +masculine +64371 masculine +masculine +masculine +64376 masculine +64378 masculine +64380 masculine +64382 masculine +masculine +64386 masculine +64389 masculine +masculine +64393 masculine +64395 neuter +neuter +64398 neuter +64400 neuter +64402 masculine +masculine +masculine +masculine +64407 masculine +64412 masculine +masculine +masculine +masculine +masculine +masculine +masculine +64421 neuter +masculine +64424 masculine +64426 masculine +64433 masculine +64435 neuter +neuter +64439 masculine +64442 masculine +masculine +64447 masculine +64449 masculine +64456 masculine +64458 neuter +neuter +64462 masculine +neuter +neuter +masculine +masculine +64470 masculine +masculine +64474 masculine +neuter +neuter +64481 masculine +masculine +neuter +64492 masculine +masculine +64495 neuter +neuter +64504 masculine +64506 masculine +64515 feminine +feminine +64519 masculine +64528 neuter +64530 masculine +masculine +masculine +64534 masculine +masculine +64537 neuter +masculine +64540 masculine +64543 masculine +masculine +masculine +64547 masculine +masculine +masculine +64551 masculine +masculine +masculine +masculine +64558 neuter +neuter +64561 neuter +neuter +masculine +64566 masculine +masculine +64569 masculine +masculine +64573 masculine +masculine +masculine +masculine +64578 masculine +masculine +masculine +64582 masculine +neuter +64585 masculine +masculine +masculine +64589 masculine +64594 neuter +64602 masculine +masculine +masculine +64606 masculine +masculine +64609 masculine +masculine +masculine +64617 masculine +masculine +masculine +64625 masculine +64630 neuter +64633 masculine +64635 masculine +masculine +masculine +masculine +64640 neuter +64642 masculine +masculine +neuter +64648 feminine +masculine +feminine +feminine +64656 neuter +neuter +neuter +64660 masculine +masculine +64663 neuter +64666 neuter +64669 masculine +masculine +masculine +64673 neuter +neuter +neuter +64677 masculine +64679 masculine +masculine +masculine +64684 neuter +neuter +64691 masculine +masculine +64694 feminine +feminine +masculine +masculine +masculine +masculine +64702 neuter +neuter +64705 masculine +64708 masculine +masculine +64711 neuter +64713 masculine +64715 neuter +neuter +64718 feminine +64720 masculine +masculine +64723 masculine +neuter +64726 feminine +feminine +masculine +masculine +64731 masculine +64733 masculine +64735 neuter +64740 feminine +feminine +masculine +masculine +feminine +64749 masculine +64751 neuter +64755 neuter +neuter +64760 feminine +feminine +feminine +64765 masculine +masculine +64768 masculine +masculine +masculine +64773 masculine +masculine +masculine +64777 feminine +feminine +masculine +masculine +64783 masculine +64788 masculine +64790 masculine +masculine +masculine +masculine +64796 feminine +feminine +feminine +64801 feminine +neuter +neuter +neuter +neuter +64811 masculine +64814 feminine +64817 feminine +feminine +feminine +64821 feminine +64824 masculine +feminine +feminine +64828 neuter +masculine +masculine +masculine +64834 feminine +64836 masculine +64838 masculine +masculine +masculine +64843 masculine +64846 masculine +masculine +masculine +masculine +64852 masculine +64855 masculine +64857 feminine +feminine +masculine +64862 masculine +masculine +neuter +64866 masculine +64868 masculine +masculine +masculine +masculine +masculine +masculine +masculine +64878 masculine +masculine +64882 masculine +masculine +64885 masculine +masculine +64888 masculine +masculine +64893 feminine +64895 neuter +neuter +neuter +masculine +neuter +64902 feminine +neuter +feminine +neuter +64910 neuter +neuter +64915 masculine +64917 masculine +masculine +64920 masculine +64922 masculine +64924 masculine +masculine +64927 masculine +masculine +64930 masculine +masculine +masculine +64934 masculine +masculine +masculine +64938 masculine +masculine +masculine +masculine +64943 masculine +64945 feminine +feminine +64948 feminine +64950 feminine +feminine +feminine +masculine +masculine +64957 masculine +masculine +masculine +64962 feminine +feminine +feminine +masculine +64967 neuter +masculine +masculine +masculine +64974 masculine +neuter +64977 neuter +neuter +64982 masculine +masculine +64986 feminine +feminine +feminine +64990 neuter +neuter +neuter +neuter +64995 neuter +masculine +64998 masculine +masculine +masculine +masculine +masculine +masculine +masculine +65006 masculine +65012 masculine +masculine +feminine +feminine +feminine +65019 masculine +65021 neuter +65023 masculine +feminine +feminine +65027 masculine +masculine +65030 masculine +65033 neuter +neuter +neuter +masculine +65038 neuter +65040 masculine +masculine +masculine +feminine +65046 neuter +neuter +neuter +feminine +feminine +feminine +masculine +neuter +neuter +65056 neuter +neuter +65061 feminine +masculine +65064 feminine +feminine +masculine +feminine +65071 masculine +masculine +65074 feminine +65076 feminine +feminine +masculine +65080 masculine +65083 masculine +masculine +masculine +65088 masculine +masculine +masculine +65096 masculine +masculine +masculine +masculine +65101 neuter +neuter +masculine +65105 feminine +feminine +feminine +65111 masculine +feminine +feminine +masculine +65118 masculine +masculine +65123 masculine +masculine +masculine +masculine +masculine +65129 masculine +65131 masculine +65133 masculine +65135 masculine +masculine +masculine +65140 masculine +65143 masculine +masculine +65146 masculine +65148 masculine +masculine +feminine +feminine +feminine +65154 feminine +65156 feminine +65158 masculine +65161 masculine +masculine +masculine +masculine +65167 masculine +masculine +65171 masculine +masculine +65174 masculine +65178 masculine +65180 masculine +65183 neuter +65185 feminine +feminine +feminine +feminine +65190 masculine +65193 neuter +neuter +65199 masculine +masculine +masculine +65203 feminine +feminine +feminine +65208 masculine +masculine +masculine +65213 masculine +65216 masculine +feminine +feminine +65220 neuter +65224 masculine +masculine +masculine +65229 masculine +neuter +neuter +65235 feminine +feminine +65238 neuter +neuter +65242 masculine +65245 masculine +65247 feminine +masculine +masculine +masculine +65252 neuter +neuter +neuter +65256 masculine +masculine +65259 feminine +feminine +feminine +feminine +65264 neuter +neuter +65270 masculine +masculine +feminine +feminine +feminine +masculine +masculine +65281 masculine +65284 masculine +masculine +masculine +masculine +65289 masculine +65294 masculine +feminine +feminine +feminine +65300 feminine +65302 masculine +65304 masculine +65306 masculine +65308 masculine +masculine +feminine +feminine +65313 feminine +65315 feminine +masculine +65318 feminine +feminine +65321 feminine +65323 feminine +feminine +65326 neuter +neuter +feminine +feminine +feminine +65332 feminine +65334 masculine +masculine +masculine +65338 masculine +65340 masculine +masculine +65343 masculine +65345 masculine +masculine +feminine +feminine +feminine +neuter +neuter +masculine +masculine +65356 masculine +65359 masculine +65361 masculine +masculine +65364 neuter +neuter +65368 masculine +masculine +65372 neuter +masculine +65376 masculine +65378 masculine +65380 masculine +masculine +65383 feminine +feminine +masculine +65388 masculine +masculine +masculine +65392 masculine +masculine +feminine +masculine +neuter +65398 neuter +65402 neuter +neuter +65410 masculine +65414 feminine +feminine +feminine +feminine +65419 neuter +65421 neuter +neuter +65424 masculine +masculine +masculine +65430 feminine +feminine +feminine +65434 masculine +masculine +65438 neuter +neuter +65442 feminine +feminine +65446 masculine +masculine +65450 feminine +feminine +65454 masculine +masculine +65457 feminine +65460 masculine +masculine +65463 neuter +65467 masculine +masculine +65472 feminine +feminine +65476 feminine +feminine +feminine +65481 neuter +neuter +65488 neuter +65490 masculine +masculine +65494 neuter +65496 feminine +feminine +65499 neuter +65501 neuter +65503 feminine +masculine +masculine +masculine +65509 neuter +65511 feminine +feminine +65514 neuter +65517 feminine +masculine +feminine +feminine +65522 feminine +65525 masculine +65527 masculine +65529 neuter +neuter +masculine +65533 masculine +masculine +65536 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +65545 masculine +masculine +65549 feminine +65551 neuter +65553 neuter +neuter +65557 masculine +masculine +masculine +65561 neuter +65564 masculine +65566 masculine +feminine +feminine +feminine +65571 feminine +masculine +masculine +masculine +65576 feminine +masculine +masculine +65580 masculine +masculine +masculine +65584 masculine +feminine +feminine +masculine +masculine +65592 neuter +65594 masculine +65596 masculine +65598 masculine +65601 masculine +65603 masculine +masculine +65608 neuter +65611 neuter +65618 neuter +65621 feminine +feminine +65625 feminine +feminine +65631 feminine +feminine +65636 feminine +65640 feminine +feminine +65644 masculine +65647 masculine +masculine +65651 feminine +65654 feminine +feminine +65658 feminine +65660 neuter +neuter +65663 masculine +masculine +neuter +65668 feminine +65672 masculine +masculine +masculine +65681 neuter +neuter +masculine +65688 feminine +feminine +feminine +65692 masculine +masculine +65695 masculine +65697 masculine +65699 masculine +masculine +masculine +65703 masculine +feminine +feminine +masculine +65709 masculine +masculine +masculine +masculine +65715 feminine +feminine +masculine +masculine +65723 masculine +65725 feminine +feminine +masculine +65729 feminine +masculine +masculine +masculine +65734 masculine +masculine +masculine +masculine +65740 masculine +65742 feminine +feminine +masculine +masculine +masculine +65748 feminine +feminine +neuter +neuter +masculine +neuter +masculine +65756 masculine +masculine +65759 neuter +neuter +65768 masculine +65771 masculine +masculine +65775 masculine +65777 masculine +masculine +masculine +65783 neuter +65788 masculine +masculine +65791 neuter +masculine +masculine +65798 masculine +masculine +masculine +65803 masculine +65805 masculine +65807 masculine +masculine +masculine +masculine +masculine +masculine +masculine +65817 masculine +65819 feminine +feminine +65824 masculine +masculine +65827 masculine +masculine +masculine +neuter +65832 masculine +masculine +65835 masculine +65837 masculine +65841 masculine +65844 neuter +neuter +masculine +masculine +65849 feminine +feminine +feminine +65855 feminine +feminine +neuter +neuter +neuter +65863 feminine +feminine +65866 neuter +neuter +65870 masculine +masculine +65873 feminine +65875 masculine +65877 masculine +masculine +masculine +65882 masculine +masculine +masculine +65888 masculine +masculine +65892 feminine +feminine +feminine +feminine +feminine +65899 masculine +masculine +masculine +masculine +masculine +65908 feminine +feminine +feminine +feminine +65913 feminine +65916 masculine +feminine +feminine +masculine +masculine +65922 feminine +feminine +feminine +feminine +masculine +masculine +65929 feminine +feminine +65933 feminine +feminine +masculine +65937 neuter +neuter +65940 neuter +65942 masculine +masculine +65946 masculine +masculine +masculine +65950 neuter +neuter +65953 neuter +neuter +65956 neuter +neuter +65959 feminine +feminine +65964 neuter +masculine +65968 masculine +feminine +65973 feminine +masculine +65977 neuter +neuter +65980 masculine +65982 masculine +masculine +65985 feminine +65987 feminine +65989 feminine +feminine +masculine +masculine +masculine +65995 masculine +feminine +65998 masculine +masculine +masculine +66002 masculine +masculine +66005 masculine +masculine +66008 feminine +66010 neuter +neuter +66013 masculine +66015 masculine +66018 neuter +neuter +66021 feminine +feminine +feminine +feminine +feminine +feminine +66028 masculine +masculine +masculine +66032 feminine +feminine +masculine +masculine +66037 masculine +66040 feminine +66042 feminine +feminine +neuter +neuter +feminine +feminine +feminine +neuter +66051 feminine +66053 masculine +masculine +66056 neuter +neuter +masculine +masculine +masculine +66062 masculine +masculine +66066 neuter +neuter +66069 feminine +66072 masculine +masculine +66075 masculine +66077 masculine +masculine +66084 masculine +66086 masculine +masculine +neuter +66090 masculine +66094 masculine +neuter +66097 neuter +66102 neuter +66104 neuter +66108 neuter +neuter +masculine +masculine +masculine +masculine +66116 masculine +masculine +feminine +feminine +feminine +66122 masculine +66126 feminine +feminine +masculine +66130 neuter +neuter +66133 masculine +66140 masculine +66142 neuter +neuter +masculine +66146 masculine +66148 masculine +masculine +masculine +66153 masculine +masculine +masculine +masculine +masculine +66159 masculine +masculine +masculine +66164 masculine +66166 masculine +66168 masculine +66170 feminine +feminine +masculine +66174 feminine +feminine +feminine +neuter +neuter +66181 neuter +66183 feminine +66185 neuter +neuter +masculine +66189 masculine +masculine +masculine +masculine +66194 masculine +masculine +66197 masculine +masculine +masculine +66201 masculine +66203 feminine +feminine +feminine +feminine +masculine +masculine +66210 masculine +masculine +masculine +66215 masculine +masculine +masculine +masculine +neuter +66222 neuter +66225 neuter +66228 feminine +feminine +66231 feminine +masculine +neuter +66235 masculine +masculine +masculine +masculine +66240 masculine +66242 masculine +masculine +masculine +masculine +masculine +66249 masculine +masculine +masculine +masculine +66254 masculine +66260 neuter +masculine +masculine +masculine +66267 masculine +masculine +66270 masculine +66274 masculine +masculine +66279 masculine +masculine +feminine +feminine +66284 masculine +masculine +masculine +66289 masculine +masculine +66292 masculine +66296 feminine +feminine +neuter +neuter +masculine +masculine +masculine +66307 neuter +neuter +masculine +66311 feminine +feminine +feminine +66315 masculine +66317 masculine +feminine +feminine +feminine +66322 masculine +66325 masculine +66330 feminine +66334 masculine +masculine +66338 masculine +masculine +neuter +66343 neuter +masculine +masculine +masculine +66348 masculine +masculine +masculine +66358 neuter +66361 feminine +feminine +66366 masculine +feminine +66369 neuter +masculine +masculine +66374 masculine +masculine +66377 masculine +masculine +66381 masculine +masculine +66385 masculine +feminine +neuter +neuter +66390 masculine +masculine +66393 neuter +masculine +masculine +66397 masculine +masculine +masculine +66401 masculine +66404 masculine +66407 masculine +masculine +masculine +66411 masculine +masculine +66416 masculine +66419 neuter +66421 neuter +66427 feminine +feminine +66430 feminine +66433 masculine +masculine +masculine +66438 masculine +masculine +66442 masculine +masculine +masculine +66446 masculine +66448 masculine +66450 masculine +66454 feminine +feminine +feminine +66459 masculine +masculine +masculine +masculine +66464 feminine +feminine +feminine +masculine +masculine +66471 masculine +masculine +66474 masculine +66476 masculine +66479 neuter +neuter +66483 feminine +feminine +feminine +feminine +feminine +66489 neuter +masculine +masculine +masculine +masculine +masculine +masculine +66497 masculine +masculine +66501 neuter +66503 masculine +66505 feminine +feminine +66509 masculine +masculine +66512 masculine +masculine +66515 masculine +masculine +masculine +66519 masculine +masculine +neuter +neuter +66524 masculine +masculine +masculine +66528 neuter +66530 masculine +masculine +masculine +66536 masculine +masculine +feminine +feminine +feminine +66542 masculine +66545 masculine +feminine +feminine +66551 feminine +66553 feminine +66557 feminine +66560 masculine +masculine +masculine +masculine +masculine +66568 masculine +masculine +masculine +66572 feminine +66577 feminine +66580 masculine +masculine +masculine +66584 masculine +masculine +66587 masculine +masculine +66590 feminine +66592 masculine +masculine +masculine +66596 masculine +66598 masculine +66600 masculine +66602 masculine +66605 neuter +neuter +66608 masculine +masculine +66611 neuter +neuter +66615 feminine +feminine +66619 neuter +neuter +66622 neuter +66625 masculine +masculine +neuter +neuter +66631 masculine +masculine +masculine +masculine +66636 masculine +66642 feminine +masculine +masculine +66646 masculine +masculine +66649 neuter +66651 masculine +66654 masculine +masculine +masculine +masculine +66660 neuter +neuter +masculine +masculine +masculine +masculine +masculine +66669 masculine +masculine +masculine +66674 masculine +66676 neuter +masculine +66681 masculine +masculine +66684 masculine +masculine +masculine +masculine +66690 masculine +masculine +masculine +masculine +66695 feminine +feminine +66701 masculine +masculine +feminine +feminine +66709 masculine +masculine +neuter +neuter +neuter +neuter +66716 masculine +66718 neuter +66723 masculine +feminine +masculine +masculine +66728 masculine +feminine +66731 masculine +66733 masculine +masculine +66737 masculine +66741 masculine +66744 masculine +masculine +66748 masculine +masculine +masculine +masculine +masculine +66754 masculine +masculine +neuter +66760 masculine +masculine +66763 neuter +neuter +66768 masculine +masculine +neuter +66772 masculine +masculine +masculine +66778 neuter +neuter +66782 masculine +masculine +masculine +masculine +feminine +neuter +66796 neuter +66799 masculine +masculine +66802 masculine +66806 neuter +neuter +neuter +masculine +masculine +66812 masculine +masculine +66821 neuter +neuter +masculine +masculine +66826 masculine +masculine +66829 masculine +masculine +66833 masculine +66835 neuter +66838 masculine +masculine +66844 masculine +masculine +66851 neuter +66858 masculine +masculine +66861 masculine +neuter +masculine +neuter +66867 masculine +66869 masculine +masculine +66872 masculine +66874 masculine +masculine +66877 neuter +neuter +66880 neuter +neuter +66884 masculine +masculine +66887 masculine +66889 neuter +neuter +neuter +feminine +feminine +66895 masculine +66898 masculine +masculine +66902 neuter +66904 masculine +masculine +masculine +66908 masculine +masculine +66912 masculine +masculine +66916 feminine +66918 masculine +masculine +66922 masculine +66924 masculine +masculine +masculine +masculine +66929 feminine +feminine +66932 feminine +feminine +66935 neuter +neuter +66938 neuter +masculine +masculine +masculine +66944 neuter +neuter +neuter +masculine +masculine +66950 masculine +66952 neuter +66954 neuter +66956 masculine +66958 neuter +66960 masculine +masculine +feminine +feminine +66965 masculine +masculine +66969 neuter +neuter +66972 masculine +masculine +66976 masculine +masculine +masculine +66982 feminine +66984 feminine +feminine +feminine +66988 masculine +masculine +masculine +66992 masculine +masculine +66996 masculine +66998 masculine +masculine +67001 neuter +67003 masculine +masculine +67006 neuter +67008 feminine +feminine +67012 feminine +feminine +67016 masculine +neuter +67021 feminine +feminine +masculine +67026 masculine +masculine +67030 feminine +feminine +67033 masculine +masculine +67037 neuter +feminine +feminine +67043 feminine +67045 neuter +67047 neuter +67050 neuter +neuter +masculine +masculine +masculine +67056 masculine +67058 masculine +masculine +67061 masculine +masculine +67064 masculine +67066 masculine +67069 masculine +masculine +neuter +neuter +67075 masculine +masculine +masculine +masculine +67080 feminine +67082 neuter +neuter +masculine +masculine +feminine +67088 feminine +67090 feminine +67093 masculine +neuter +neuter +neuter +masculine +masculine +67103 masculine +neuter +neuter +67107 feminine +feminine +67110 neuter +neuter +masculine +masculine +masculine +feminine +feminine +masculine +masculine +67120 feminine +feminine +67124 masculine +masculine +67128 masculine +masculine +67132 masculine +67134 masculine +masculine +neuter +67138 feminine +67140 masculine +67142 feminine +feminine +neuter +neuter +67149 masculine +masculine +masculine +masculine +67155 masculine +67158 masculine +feminine +67162 masculine +masculine +masculine +masculine +67167 masculine +masculine +neuter +67171 neuter +masculine +feminine +masculine +masculine +neuter +neuter +masculine +masculine +masculine +masculine +67183 neuter +neuter +67188 masculine +masculine +masculine +masculine +67193 masculine +masculine +masculine +neuter +67198 feminine +feminine +feminine +masculine +67203 neuter +67207 feminine +feminine +feminine +67211 feminine +feminine +67214 masculine +neuter +neuter +67218 masculine +masculine +masculine +masculine +67225 masculine +masculine +masculine +67229 neuter +67231 masculine +masculine +feminine +feminine +67238 neuter +neuter +neuter +neuter +67245 feminine +feminine +neuter +neuter +67250 neuter +67254 neuter +67256 feminine +feminine +feminine +67260 neuter +67264 feminine +feminine +67267 neuter +neuter +neuter +67272 masculine +67274 masculine +masculine +67277 masculine +masculine +masculine +masculine +masculine +masculine +masculine +67287 masculine +masculine +67290 masculine +masculine +masculine +67294 masculine +masculine +masculine +67298 masculine +67300 masculine +67305 feminine +feminine +neuter +67309 feminine +feminine +masculine +67313 feminine +neuter +neuter +67320 feminine +masculine +67325 neuter +neuter +neuter +67330 feminine +67333 neuter +67335 masculine +masculine +67338 feminine +neuter +67344 neuter +neuter +masculine +67348 masculine +masculine +masculine +masculine +masculine +masculine +67356 feminine +feminine +67365 masculine +masculine +masculine +67371 masculine +masculine +masculine +67375 feminine +feminine +67378 masculine +67381 masculine +masculine +feminine +67386 masculine +masculine +67389 feminine +feminine +feminine +67394 masculine +masculine +masculine +neuter +67400 feminine +feminine +masculine +masculine +67405 neuter +67407 neuter +neuter +67410 masculine +masculine +67415 masculine +67417 feminine +feminine +masculine +67421 masculine +masculine +masculine +67426 masculine +67429 masculine +masculine +masculine +67435 masculine +masculine +masculine +neuter +67440 masculine +67442 feminine +67446 feminine +feminine +67449 masculine +masculine +67454 neuter +67456 masculine +67458 masculine +masculine +67461 feminine +feminine +67464 masculine +masculine +67469 neuter +neuter +feminine +67473 feminine +feminine +masculine +masculine +67478 masculine +67480 neuter +neuter +masculine +masculine +67486 masculine +masculine +masculine +67490 masculine +masculine +67493 masculine +feminine +feminine +feminine +masculine +masculine +67500 masculine +67503 feminine +feminine +67506 masculine +masculine +67510 masculine +67512 feminine +feminine +67515 masculine +masculine +67518 feminine +67520 feminine +feminine +feminine +feminine +67525 masculine +masculine +67530 masculine +67533 neuter +neuter +masculine +masculine +neuter +neuter +neuter +feminine +feminine +feminine +67544 masculine +67547 masculine +masculine +67550 neuter +neuter +67555 masculine +masculine +masculine +67559 masculine +67561 masculine +67563 neuter +neuter +67566 feminine +feminine +feminine +masculine +masculine +masculine +67575 neuter +neuter +67578 masculine +67580 masculine +masculine +masculine +67585 masculine +67587 feminine +feminine +67590 masculine +67592 masculine +67595 neuter +neuter +neuter +67599 feminine +feminine +67602 masculine +masculine +masculine +67606 feminine +feminine +67609 masculine +67611 masculine +67616 masculine +masculine +masculine +67620 masculine +masculine +neuter +neuter +67625 masculine +masculine +67629 masculine +67631 neuter +67633 neuter +67635 masculine +masculine +67638 masculine +67641 masculine +masculine +masculine +67646 feminine +feminine +67649 masculine +67651 neuter +neuter +67654 masculine +masculine +masculine +67658 masculine +masculine +masculine +67662 masculine +masculine +67665 masculine +67668 feminine +67671 masculine +masculine +67676 masculine +masculine +67680 neuter +neuter +67684 masculine +masculine +masculine +masculine +feminine +67694 neuter +neuter +neuter +67700 feminine +feminine +feminine +feminine +67710 neuter +neuter +masculine +masculine +masculine +67716 masculine +masculine +67719 masculine +masculine +67724 masculine +67727 masculine +masculine +masculine +masculine +masculine +67734 masculine +masculine +67738 masculine +67740 neuter +masculine +masculine +masculine +masculine +67746 masculine +67748 feminine +feminine +masculine +neuter +67753 feminine +masculine +masculine +67757 feminine +feminine +67762 masculine +neuter +neuter +neuter +67767 neuter +neuter +neuter +neuter +neuter +67773 masculine +masculine +masculine +masculine +masculine +67779 masculine +masculine +67785 masculine +67787 masculine +masculine +67790 neuter +neuter +masculine +neuter +masculine +masculine +masculine +masculine +masculine +masculine +67802 neuter +masculine +masculine +67809 masculine +masculine +masculine +67813 masculine +67815 masculine +masculine +masculine +neuter +67823 feminine +feminine +feminine +67827 masculine +masculine +67830 masculine +masculine +masculine +67834 masculine +masculine +67837 masculine +masculine +67841 masculine +masculine +67844 masculine +67849 neuter +67851 masculine +67853 masculine +masculine +masculine +67857 feminine +feminine +feminine +feminine +67863 masculine +67865 masculine +masculine +67869 masculine +masculine +67872 masculine +67875 neuter +67881 masculine +masculine +masculine +67886 masculine +67891 masculine +feminine +feminine +feminine +67896 neuter +neuter +neuter +67903 masculine +67908 masculine +67912 masculine +67916 masculine +67918 masculine +masculine +masculine +masculine +67926 neuter +neuter +masculine +masculine +67934 masculine +67936 masculine +67938 neuter +neuter +neuter +67944 neuter +neuter +67948 feminine +feminine +67951 neuter +neuter +67955 masculine +67958 masculine +67960 masculine +masculine +masculine +masculine +67966 feminine +feminine +feminine +masculine +masculine +masculine +67973 masculine +masculine +masculine +67977 masculine +masculine +67982 feminine +feminine +feminine +feminine +feminine +feminine +masculine +67990 masculine +67992 masculine +neuter +neuter +masculine +masculine +67999 neuter +68002 masculine +masculine +masculine +masculine +masculine +68008 feminine +68010 masculine +68012 masculine +68015 masculine +68017 masculine +neuter +68020 feminine +masculine +68024 feminine +feminine +feminine +68029 feminine +feminine +68032 feminine +feminine +masculine +masculine +68039 masculine +masculine +68042 neuter +neuter +neuter +68047 masculine +masculine +masculine +feminine +68052 neuter +neuter +68055 masculine +68057 masculine +68059 masculine +68061 masculine +68063 masculine +68065 masculine +masculine +masculine +masculine +68071 masculine +masculine +68074 masculine +68076 masculine +feminine +feminine +68080 masculine +masculine +masculine +masculine +68087 masculine +masculine +masculine +masculine +68092 feminine +68095 masculine +masculine +masculine +masculine +68100 feminine +feminine +68103 masculine +masculine +feminine +68107 feminine +68109 neuter +68111 neuter +neuter +68114 masculine +masculine +68118 masculine +masculine +68121 feminine +feminine +feminine +feminine +masculine +68127 masculine +68129 masculine +68131 masculine +68133 feminine +68135 feminine +masculine +masculine +masculine +68143 feminine +feminine +68146 neuter +neuter +neuter +68152 masculine +masculine +68156 masculine +masculine +neuter +neuter +68161 masculine +68163 masculine +masculine +68167 masculine +masculine +68170 masculine +masculine +68173 masculine +masculine +68176 masculine +68178 masculine +68182 neuter +neuter +68186 masculine +masculine +masculine +masculine +masculine +masculine +68194 masculine +neuter +68197 masculine +masculine +masculine +masculine +68202 masculine +masculine +68206 masculine +masculine +68209 masculine +masculine +masculine +masculine +68214 masculine +masculine +masculine +68219 neuter +neuter +neuter +68224 masculine +68226 masculine +68228 masculine +masculine +masculine +masculine +68233 neuter +neuter +68236 neuter +neuter +masculine +68240 neuter +masculine +68244 masculine +masculine +68247 neuter +68251 masculine +68253 masculine +masculine +68256 masculine +68258 masculine +masculine +feminine +feminine +68263 masculine +masculine +68266 masculine +masculine +68269 feminine +feminine +68274 masculine +68276 feminine +68280 masculine +68283 feminine +feminine +68287 feminine +feminine +68293 feminine +feminine +68296 feminine +68300 masculine +68302 feminine +masculine +68306 feminine +68309 neuter +68311 masculine +masculine +masculine +68315 masculine +68317 feminine +feminine +feminine +68321 feminine +68328 masculine +feminine +68331 feminine +68333 neuter +masculine +68338 masculine +68340 feminine +feminine +68343 neuter +neuter +masculine +68347 masculine +68349 neuter +masculine +neuter +68355 masculine +masculine +68359 neuter +neuter +masculine +neuter +68364 feminine +feminine +68370 neuter +neuter +neuter +68374 neuter +neuter +68377 masculine +68381 masculine +masculine +68386 neuter +68392 masculine +masculine +masculine +68397 masculine +feminine +feminine +68403 masculine +masculine +68407 masculine +feminine +feminine +feminine +feminine +68413 masculine +masculine +masculine +68417 masculine +masculine +68420 masculine +68422 masculine +masculine +masculine +masculine +masculine +68429 feminine +68432 masculine +masculine +68435 masculine +68438 masculine +68440 feminine +feminine +feminine +masculine +68446 masculine +feminine +68449 feminine +68451 masculine +masculine +feminine +68456 masculine +masculine +68459 feminine +68461 masculine +masculine +masculine +masculine +68467 masculine +68469 feminine +feminine +feminine +68473 feminine +68475 feminine +feminine +68480 neuter +masculine +masculine +68485 masculine +masculine +neuter +neuter +68490 feminine +68492 masculine +masculine +68495 neuter +68498 masculine +masculine +68501 masculine +masculine +masculine +masculine +68506 neuter +68508 masculine +masculine +neuter +neuter +masculine +68514 masculine +masculine +68517 masculine +masculine +masculine +masculine +68522 feminine +feminine +feminine +68526 feminine +68531 masculine +68533 feminine +68536 masculine +68538 masculine +masculine +68544 feminine +68548 neuter +neuter +neuter +68552 masculine +feminine +neuter +68556 masculine +masculine +masculine +68560 feminine +68564 masculine +masculine +feminine +feminine +feminine +68570 masculine +masculine +masculine +masculine +masculine +masculine +68580 feminine +68582 masculine +68585 feminine +masculine +masculine +masculine +68591 masculine +masculine +masculine +masculine +neuter +neuter +68599 masculine +masculine +neuter +68603 neuter +neuter +masculine +neuter +68608 neuter +68612 masculine +masculine +68615 masculine +68618 masculine +masculine +masculine +masculine +68623 masculine +masculine +68626 masculine +masculine +masculine +masculine +68631 masculine +masculine +68634 masculine +feminine +feminine +masculine +68640 masculine +feminine +68643 masculine +68646 masculine +feminine +feminine +masculine +68652 masculine +68654 masculine +68656 neuter +masculine +68661 masculine +masculine +masculine +68666 feminine +feminine +masculine +68670 masculine +masculine +masculine +masculine +masculine +masculine +68677 masculine +masculine +masculine +68683 feminine +masculine +masculine +masculine +masculine +masculine +68692 masculine +masculine +68695 masculine +masculine +68698 feminine +masculine +68701 feminine +masculine +68704 masculine +68708 feminine +feminine +feminine +68712 masculine +masculine +68716 masculine +68718 feminine +masculine +masculine +masculine +68724 neuter +68726 masculine +68728 masculine +masculine +masculine +68733 masculine +masculine +masculine +68738 masculine +68740 masculine +68748 masculine +masculine +68752 masculine +masculine +68756 masculine +68758 masculine +masculine +masculine +68763 masculine +68765 feminine +masculine +68769 masculine +68772 neuter +neuter +68776 masculine +68778 feminine +feminine +neuter +neuter +neuter +masculine +68785 feminine +neuter +feminine +68789 masculine +masculine +masculine +68793 neuter +neuter +68796 masculine +masculine +68800 feminine +masculine +68803 masculine +masculine +masculine +masculine +68808 masculine +masculine +masculine +68812 masculine +68814 masculine +68816 masculine +masculine +masculine +68824 masculine +masculine +masculine +68828 neuter +neuter +masculine +masculine +68834 masculine +masculine +68837 masculine +68839 feminine +feminine +68842 masculine +68844 feminine +feminine +masculine +masculine +68849 masculine +68851 feminine +68853 masculine +masculine +masculine +68860 masculine +68867 feminine +masculine +masculine +masculine +masculine +68873 masculine +masculine +68877 masculine +68879 masculine +masculine +masculine +masculine +68884 masculine +68886 masculine +68889 feminine +masculine +masculine +masculine +masculine +68895 feminine +feminine +masculine +68899 masculine +masculine +neuter +68903 neuter +68905 feminine +feminine +68909 feminine +feminine +68913 feminine +feminine +neuter +68917 masculine +68919 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +68929 masculine +masculine +68932 masculine +masculine +68937 masculine +68939 masculine +masculine +68942 feminine +feminine +68945 feminine +feminine +68948 masculine +masculine +masculine +masculine +masculine +68954 neuter +neuter +neuter +68958 masculine +masculine +68961 masculine +68963 neuter +neuter +68967 masculine +68970 masculine +68972 masculine +masculine +68980 feminine +feminine +masculine +68984 feminine +masculine +masculine +masculine +68990 masculine +masculine +68995 masculine +masculine +masculine +masculine +69002 feminine +feminine +69006 neuter +69008 masculine +69012 feminine +feminine +feminine +69017 feminine +neuter +neuter +69023 neuter +neuter +feminine +feminine +masculine +69030 masculine +masculine +69034 masculine +69036 feminine +feminine +masculine +masculine +69043 feminine +masculine +masculine +69047 neuter +69049 feminine +69052 neuter +69055 feminine +feminine +masculine +masculine +69061 feminine +feminine +masculine +masculine +69066 neuter +neuter +masculine +masculine +masculine +masculine +masculine +masculine +69076 masculine +69081 feminine +feminine +feminine +neuter +neuter +69087 masculine +masculine +69091 feminine +feminine +69095 masculine +masculine +masculine +masculine +69100 feminine +69102 masculine +masculine +masculine +69106 feminine +69109 masculine +masculine +masculine +69114 masculine +69116 feminine +feminine +neuter +neuter +neuter +69122 masculine +masculine +69125 neuter +masculine +masculine +69130 feminine +feminine +masculine +masculine +69135 feminine +69137 masculine +masculine +69142 neuter +masculine +masculine +masculine +69147 masculine +69149 masculine +masculine +69153 masculine +masculine +69156 masculine +69159 masculine +masculine +69162 masculine +masculine +69165 masculine +69167 feminine +feminine +neuter +masculine +masculine +69173 masculine +masculine +69178 masculine +69180 masculine +masculine +feminine +feminine +69186 feminine +feminine +69190 neuter +neuter +masculine +69194 masculine +feminine +69197 neuter +neuter +69201 neuter +neuter +neuter +neuter +69207 masculine +masculine +69212 masculine +masculine +masculine +69217 masculine +masculine +69222 masculine +masculine +69225 feminine +feminine +masculine +masculine +masculine +69232 masculine +69234 masculine +69236 masculine +69238 masculine +masculine +69241 feminine +masculine +69247 masculine +neuter +69250 feminine +feminine +masculine +69255 masculine +masculine +69258 masculine +69260 masculine +masculine +neuter +neuter +masculine +69266 masculine +masculine +69269 feminine +masculine +69272 masculine +masculine +69275 neuter +masculine +masculine +69282 masculine +masculine +masculine +69286 masculine +masculine +masculine +masculine +69291 neuter +masculine +masculine +masculine +69296 masculine +feminine +feminine +69300 neuter +neuter +masculine +69307 masculine +69309 masculine +69311 feminine +feminine +69315 masculine +masculine +69318 neuter +neuter +masculine +69322 masculine +masculine +masculine +masculine +masculine +69329 masculine +masculine +masculine +69333 masculine +masculine +masculine +69337 neuter +neuter +69341 masculine +neuter +neuter +69345 feminine +feminine +masculine +69350 masculine +feminine +feminine +feminine +69355 neuter +masculine +69359 masculine +69361 masculine +feminine +feminine +masculine +69368 feminine +feminine +feminine +masculine +masculine +69374 feminine +feminine +feminine +69378 neuter +69380 masculine +69383 feminine +feminine +feminine +feminine +69388 feminine +69390 masculine +masculine +69394 masculine +masculine +masculine +masculine +69400 masculine +masculine +69403 masculine +69405 masculine +69407 feminine +feminine +69410 masculine +masculine +masculine +masculine +69415 masculine +69417 feminine +69420 feminine +69423 masculine +masculine +69426 masculine +masculine +masculine +69430 masculine +masculine +69433 feminine +feminine +feminine +feminine +69438 masculine +masculine +masculine +69443 masculine +masculine +neuter +neuter +69448 masculine +masculine +69452 neuter +69454 masculine +69457 neuter +neuter +neuter +69462 masculine +masculine +masculine +neuter +neuter +neuter +feminine +feminine +69472 masculine +masculine +69475 masculine +69479 feminine +feminine +69482 feminine +feminine +feminine +69486 masculine +masculine +neuter +masculine +69492 feminine +feminine +masculine +69496 masculine +neuter +neuter +feminine +feminine +masculine +69503 masculine +masculine +masculine +masculine +69508 masculine +69510 masculine +69512 masculine +masculine +masculine +69516 feminine +feminine +masculine +masculine +feminine +feminine +feminine +69525 masculine +69527 neuter +masculine +masculine +feminine +feminine +69533 masculine +69537 masculine +masculine +masculine +69541 feminine +feminine +masculine +masculine +69546 neuter +neuter +masculine +masculine +69552 masculine +69554 feminine +69556 masculine +masculine +69559 masculine +69562 masculine +69564 masculine +masculine +masculine +masculine +69569 neuter +69571 feminine +feminine +feminine +69576 masculine +69578 neuter +masculine +masculine +69583 feminine +feminine +masculine +masculine +masculine +masculine +69591 masculine +masculine +69594 masculine +masculine +masculine +69599 masculine +69602 neuter +neuter +69607 neuter +69609 masculine +masculine +69612 neuter +masculine +69616 neuter +neuter +masculine +masculine +masculine +69623 feminine +feminine +69626 masculine +69629 neuter +neuter +69632 masculine +masculine +masculine +69637 feminine +feminine +feminine +feminine +masculine +masculine +69644 neuter +neuter +69647 masculine +neuter +masculine +69652 feminine +feminine +feminine +69657 masculine +69659 feminine +feminine +69662 neuter +neuter +69665 masculine +69668 masculine +neuter +neuter +69676 feminine +69679 feminine +feminine +masculine +masculine +69684 neuter +69689 feminine +69691 masculine +69693 masculine +masculine +masculine +69697 feminine +feminine +69702 feminine +69704 masculine +masculine +69709 feminine +feminine +69712 feminine +69715 masculine +masculine +69721 feminine +feminine +feminine +feminine +69728 feminine +feminine +69731 masculine +feminine +69734 masculine +69737 masculine +masculine +masculine +69746 masculine +masculine +69752 neuter +neuter +69757 masculine +masculine +69760 masculine +masculine +masculine +masculine +masculine +69767 neuter +69769 feminine +feminine +masculine +masculine +69775 masculine +masculine +69779 masculine +masculine +69785 feminine +69787 feminine +feminine +feminine +feminine +69792 feminine +69794 feminine +feminine +69797 feminine +69799 masculine +69803 masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +69813 feminine +feminine +feminine +feminine +masculine +69819 masculine +69821 feminine +69824 masculine +69826 masculine +69828 neuter +neuter +masculine +69833 masculine +masculine +masculine +69838 neuter +neuter +masculine +masculine +69845 neuter +neuter +neuter +69849 masculine +masculine +masculine +69853 masculine +masculine +masculine +masculine +masculine +69863 neuter +69866 masculine +69874 masculine +69879 masculine +masculine +masculine +69884 masculine +69886 feminine +feminine +feminine +feminine +feminine +69893 feminine +69895 neuter +69897 feminine +69901 masculine +69903 masculine +masculine +masculine +masculine +69910 neuter +neuter +masculine +69914 feminine +feminine +feminine +feminine +masculine +69920 feminine +feminine +masculine +masculine +69928 feminine +feminine +feminine +feminine +masculine +69934 masculine +masculine +masculine +masculine +masculine +69943 masculine +masculine +masculine +69947 neuter +69949 masculine +69952 masculine +masculine +69955 masculine +masculine +masculine +neuter +neuter +masculine +69962 masculine +69964 feminine +feminine +feminine +69968 masculine +masculine +masculine +69975 feminine +feminine +69979 neuter +neuter +69983 masculine +masculine +69986 neuter +neuter +69994 neuter +neuter +69998 masculine +70000 neuter +neuter +70003 masculine +masculine +70006 masculine +masculine +70010 masculine +70015 neuter +neuter +neuter +masculine +70020 masculine +masculine +70025 masculine +70027 masculine +masculine +70031 feminine +feminine +masculine +masculine +70036 masculine +70039 feminine +70041 masculine +70043 feminine +feminine +feminine +70047 neuter +70049 masculine +70051 feminine +70053 masculine +masculine +70056 masculine +feminine +70059 masculine +70061 masculine +masculine +masculine +masculine +masculine +masculine +masculine +70070 masculine +feminine +70073 feminine +70075 feminine +feminine +70080 masculine +feminine +feminine +masculine +70085 masculine +70087 feminine +masculine +70091 feminine +70094 neuter +70097 masculine +70099 feminine +feminine +70103 masculine +70105 neuter +70107 masculine +masculine +70110 masculine +70112 feminine +feminine +70115 feminine +feminine +masculine +masculine +masculine +neuter +70125 masculine +70127 masculine +70129 masculine +70132 masculine +masculine +70141 feminine +feminine +70146 neuter +neuter +70152 masculine +masculine +masculine +masculine +masculine +70158 masculine +70160 masculine +feminine +feminine +70164 masculine +masculine +70168 masculine +70170 feminine +feminine +70173 masculine +masculine +masculine +masculine +neuter +70180 masculine +masculine +70184 feminine +70187 masculine +feminine +feminine +70198 masculine +masculine +neuter +masculine +70203 feminine +70207 masculine +70209 neuter +masculine +masculine +masculine +70214 masculine +70218 masculine +70220 masculine +masculine +70223 masculine +masculine +70227 feminine +feminine +feminine +feminine +feminine +70235 feminine +masculine +masculine +neuter +masculine +70245 masculine +masculine +neuter +masculine +70250 masculine +masculine +feminine +70257 masculine +masculine +70261 masculine +70263 masculine +masculine +masculine +neuter +neuter +masculine +masculine +70273 feminine +70277 feminine +70279 masculine +masculine +70282 masculine +masculine +masculine +neuter +neuter +70291 masculine +masculine +masculine +70296 neuter +feminine +70300 masculine +neuter +70303 neuter +neuter +70308 neuter +70310 masculine +70312 masculine +masculine +70317 masculine +neuter +masculine +70321 neuter +neuter +70328 masculine +70332 feminine +feminine +70335 masculine +70337 masculine +feminine +feminine +70341 masculine +masculine +masculine +masculine +masculine +masculine +masculine +70350 feminine +feminine +feminine +70360 neuter +neuter +70366 masculine +masculine +masculine +70370 feminine +70374 masculine +70377 masculine +feminine +70383 masculine +70385 feminine +masculine +feminine +feminine +70392 feminine +feminine +70395 masculine +masculine +70398 masculine +70400 masculine +masculine +masculine +masculine +70406 masculine +masculine +masculine +70412 masculine +70414 masculine +masculine +70417 feminine +masculine +masculine +neuter +neuter +neuter +70426 neuter +70429 masculine +masculine +70433 masculine +masculine +70436 masculine +70441 masculine +masculine +masculine +70445 feminine +masculine +70448 masculine +70450 masculine +masculine +70455 feminine +feminine +70458 masculine +masculine +70461 masculine +70464 masculine +masculine +feminine +feminine +masculine +70472 feminine +feminine +70475 feminine +70477 feminine +70479 masculine +70482 masculine +masculine +masculine +masculine +feminine +70488 neuter +neuter +70491 masculine +masculine +70494 feminine +70496 masculine +70498 feminine +70501 masculine +masculine +70504 masculine +70506 masculine +70508 masculine +70511 masculine +70513 masculine +masculine +masculine +70518 masculine +masculine +70522 masculine +70525 feminine +feminine +70528 masculine +masculine +70533 masculine +70537 feminine +70540 neuter +neuter +masculine +70545 masculine +70547 masculine +70549 masculine +70551 feminine +masculine +70554 neuter +neuter +masculine +masculine +70563 masculine +masculine +70566 masculine +70569 masculine +70571 masculine +masculine +masculine +70575 masculine +70577 feminine +70580 masculine +70582 feminine +70585 feminine +feminine +70588 feminine +feminine +feminine +70592 feminine +70594 feminine +70596 feminine +feminine +70599 feminine +masculine +masculine +masculine +masculine +70605 feminine +feminine +neuter +neuter +neuter +70613 masculine +masculine +70616 neuter +70620 masculine +masculine +masculine +masculine +feminine +70628 masculine +masculine +neuter +masculine +70633 neuter +70635 masculine +70637 masculine +masculine +70640 masculine +70643 masculine +masculine +masculine +masculine +70649 masculine +masculine +70654 masculine +70660 masculine +masculine +masculine +masculine +feminine +70666 masculine +masculine +masculine +70671 masculine +masculine +70675 feminine +70677 masculine +feminine +neuter +feminine +feminine +feminine +70684 feminine +feminine +70687 feminine +neuter +neuter +70691 feminine +feminine +70697 feminine +feminine +feminine +feminine +feminine +70704 masculine +70707 neuter +70709 feminine +feminine +70712 feminine +feminine +masculine +masculine +masculine +70718 masculine +70721 feminine +70724 masculine +70726 masculine +masculine +70734 masculine +masculine +70737 masculine +masculine +masculine +70742 neuter +neuter +70746 masculine +feminine +feminine +feminine +feminine +70752 feminine +masculine +70755 neuter +neuter +70759 feminine +feminine +feminine +feminine +70764 masculine +masculine +masculine +70768 masculine +70770 masculine +neuter +neuter +70775 masculine +70777 neuter +neuter +70780 feminine +70783 feminine +70785 masculine +masculine +feminine +70789 feminine +masculine +masculine +70794 masculine +feminine +feminine +70798 feminine +70800 masculine +masculine +masculine +70804 feminine +feminine +70807 feminine +feminine +70810 neuter +70813 feminine +feminine +feminine +70818 masculine +70820 masculine +masculine +70824 feminine +feminine +70828 feminine +70830 masculine +masculine +masculine +70834 masculine +masculine +70837 feminine +neuter +masculine +masculine +70842 feminine +feminine +feminine +feminine +masculine +70848 masculine +masculine +masculine +70852 masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +70862 masculine +masculine +masculine +70866 neuter +70869 neuter +70873 feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +70882 masculine +70884 masculine +masculine +masculine +70888 masculine +masculine +masculine +70892 masculine +masculine +70895 neuter +70897 masculine +70900 masculine +feminine +feminine +70905 feminine +feminine +70910 neuter +70912 masculine +masculine +70917 masculine +70919 feminine +70922 masculine +masculine +masculine +70926 masculine +masculine +70930 masculine +masculine +masculine +masculine +70935 feminine +70937 feminine +70941 masculine +masculine +masculine +masculine +masculine +masculine +70948 masculine +masculine +70951 masculine +masculine +masculine +masculine +masculine +70957 masculine +neuter +masculine +70961 masculine +70963 feminine +feminine +70966 feminine +70968 masculine +masculine +70971 feminine +feminine +masculine +70975 masculine +70977 neuter +neuter +70981 feminine +feminine +70985 masculine +70990 masculine +masculine +70994 masculine +feminine +70998 masculine +masculine +masculine +71002 neuter +neuter +neuter +71006 feminine +feminine +feminine +feminine +neuter +71012 feminine +feminine +71015 neuter +71017 neuter +neuter +neuter +71021 neuter +feminine +feminine +71025 neuter +masculine +masculine +71030 feminine +71032 masculine +masculine +masculine +71039 masculine +masculine +71043 masculine +71047 neuter +neuter +71050 neuter +71052 feminine +71055 neuter +71057 masculine +neuter +masculine +masculine +71066 neuter +71071 masculine +71073 neuter +neuter +71076 masculine +masculine +71081 masculine +71083 masculine +masculine +71086 neuter +71088 neuter +neuter +neuter +71093 masculine +masculine +masculine +masculine +71098 masculine +masculine +masculine +feminine +feminine +masculine +masculine +71107 masculine +masculine +71110 masculine +71113 masculine +masculine +masculine +masculine +71120 masculine +masculine +masculine +71124 neuter +neuter +71127 neuter +neuter +71130 masculine +71132 masculine +71135 masculine +71140 masculine +neuter +masculine +71146 masculine +71148 masculine +masculine +71151 masculine +masculine +71157 masculine +71159 feminine +feminine +feminine +71163 feminine +71166 masculine +71168 masculine +masculine +masculine +masculine +71173 masculine +masculine +masculine +71177 masculine +71179 neuter +neuter +neuter +masculine +masculine +71186 masculine +masculine +71191 masculine +masculine +masculine +71196 neuter +71200 masculine +masculine +71204 feminine +71206 masculine +71209 masculine +71211 masculine +masculine +masculine +masculine +71216 feminine +71218 masculine +71220 feminine +71224 feminine +feminine +71227 masculine +masculine +71230 masculine +masculine +masculine +masculine +masculine +masculine +71237 masculine +masculine +masculine +71243 neuter +71245 masculine +masculine +masculine +masculine +masculine +masculine +masculine +71253 masculine +masculine +71257 masculine +masculine +71260 masculine +masculine +71265 masculine +masculine +71269 masculine +masculine +71274 masculine +masculine +71279 masculine +71283 neuter +71285 masculine +masculine +71290 masculine +71292 masculine +masculine +71295 masculine +masculine +masculine +71299 masculine +71305 masculine +71308 masculine +masculine +71313 masculine +masculine +71317 feminine +feminine +71320 feminine +feminine +feminine +71324 masculine +feminine +feminine +71328 masculine +masculine +71333 masculine +71338 feminine +feminine +71342 masculine +71345 feminine +feminine +71348 feminine +feminine +71353 masculine +masculine +71358 feminine +71361 masculine +masculine +71364 masculine +masculine +71368 feminine +masculine +masculine +71372 feminine +71382 masculine +71385 masculine +71388 masculine +masculine +71392 neuter +neuter +neuter +71397 masculine +masculine +71400 masculine +masculine +neuter +neuter +71406 feminine +71411 masculine +masculine +masculine +71416 neuter +neuter +masculine +masculine +masculine +71422 masculine +feminine +masculine +masculine +71427 masculine +masculine +masculine +71431 masculine +masculine +masculine +masculine +feminine +71437 masculine +masculine +masculine +71441 masculine +masculine +71445 neuter +neuter +neuter +71449 feminine +feminine +feminine +masculine +71454 feminine +feminine +71457 neuter +neuter +neuter +71461 masculine +masculine +masculine +71465 feminine +71468 masculine +masculine +masculine +neuter +neuter +71474 feminine +masculine +71477 masculine +71479 masculine +masculine +masculine +masculine +71484 masculine +masculine +71487 masculine +masculine +71491 masculine +71494 masculine +neuter +neuter +71500 feminine +feminine +masculine +masculine +71505 feminine +masculine +71509 masculine +71511 neuter +masculine +masculine +masculine +71517 feminine +feminine +feminine +71522 masculine +masculine +71526 masculine +masculine +masculine +71530 masculine +masculine +masculine +71534 masculine +masculine +71537 masculine +71541 masculine +71543 neuter +71545 masculine +71547 masculine +71552 masculine +masculine +71557 masculine +71559 masculine +masculine +71562 masculine +masculine +masculine +masculine +71567 masculine +masculine +masculine +masculine +masculine +71573 feminine +feminine +71577 neuter +neuter +masculine +masculine +masculine +masculine +71584 masculine +71586 masculine +masculine +masculine +neuter +neuter +neuter +71593 neuter +neuter +neuter +neuter +71598 masculine +masculine +masculine +masculine +masculine +71605 masculine +71607 feminine +masculine +masculine +71611 masculine +masculine +71616 neuter +neuter +feminine +feminine +neuter +neuter +neuter +71626 masculine +masculine +feminine +71630 masculine +masculine +masculine +71635 masculine +71637 neuter +neuter +71641 masculine +neuter +71645 masculine +masculine +neuter +neuter +neuter +neuter +71657 masculine +71659 neuter +neuter +masculine +masculine +71666 masculine +71668 feminine +feminine +71672 masculine +masculine +71675 masculine +masculine +masculine +masculine +71680 feminine +feminine +71684 neuter +neuter +71687 masculine +masculine +masculine +masculine +71694 masculine +71696 feminine +71699 masculine +masculine +71702 feminine +masculine +71707 masculine +feminine +masculine +71712 masculine +71714 masculine +masculine +71717 masculine +71719 masculine +71722 masculine +71724 feminine +feminine +71729 feminine +neuter +neuter +neuter +neuter +71735 feminine +feminine +feminine +feminine +feminine +71741 masculine +masculine +71748 feminine +masculine +71753 neuter +neuter +feminine +feminine +71758 neuter +neuter +71761 neuter +neuter +71764 neuter +neuter +masculine +masculine +71771 feminine +feminine +71774 masculine +masculine +71782 masculine +71784 neuter +71786 neuter +71790 neuter +neuter +71796 neuter +feminine +71799 masculine +masculine +neuter +masculine +masculine +71809 neuter +71816 neuter +71818 masculine +masculine +71823 masculine +masculine +71827 feminine +feminine +71830 feminine +71832 masculine +71834 feminine +71839 neuter +neuter +71843 masculine +neuter +masculine +71851 masculine +71853 masculine +masculine +71858 masculine +masculine +masculine +masculine +71867 masculine +masculine +71870 masculine +masculine +masculine +masculine +71875 masculine +71878 feminine +71881 masculine +masculine +masculine +masculine +masculine +71887 neuter +71891 neuter +71895 masculine +masculine +masculine +71901 neuter +71906 neuter +neuter +neuter +neuter +71911 masculine +71917 feminine +71920 neuter +neuter +masculine +masculine +71927 masculine +71929 neuter +71934 neuter +neuter +71938 feminine +feminine +feminine +71942 masculine +masculine +masculine +71948 masculine +71950 masculine +masculine +masculine +masculine +71955 masculine +71957 masculine +71959 masculine +masculine +71962 masculine +neuter +71967 masculine +masculine +masculine +71972 neuter +neuter +masculine +masculine +feminine +feminine +71979 feminine +71983 masculine +masculine +71986 feminine +feminine +feminine +feminine +71991 masculine +71994 feminine +71996 feminine +71998 feminine +masculine +masculine +masculine +masculine +72005 neuter +masculine +72009 masculine +72011 masculine +masculine +masculine +72015 masculine +masculine +masculine +72019 feminine +72023 masculine +masculine +masculine +masculine +masculine +masculine +72031 feminine +masculine +72034 masculine +72036 masculine +masculine +masculine +masculine +72042 masculine +masculine +72046 masculine +masculine +72049 masculine +72051 neuter +neuter +feminine +feminine +feminine +feminine +72058 feminine +72061 masculine +72063 feminine +masculine +masculine +72067 masculine +feminine +feminine +feminine +masculine +masculine +72076 masculine +feminine +feminine +feminine +feminine +72082 masculine +masculine +72086 masculine +masculine +72089 masculine +neuter +neuter +72093 feminine +72096 masculine +masculine +masculine +masculine +72103 feminine +72105 masculine +72107 masculine +72110 feminine +72113 masculine +72115 masculine +masculine +72119 feminine +feminine +72123 masculine +masculine +72129 feminine +masculine +masculine +masculine +72135 feminine +feminine +feminine +72140 neuter +masculine +72143 feminine +72145 masculine +masculine +72148 masculine +neuter +masculine +72153 neuter +neuter +feminine +feminine +72160 feminine +feminine +feminine +feminine +72166 masculine +72168 masculine +masculine +72172 masculine +72174 masculine +masculine +72177 feminine +72179 masculine +masculine +72182 feminine +feminine +masculine +neuter +72188 masculine +72190 masculine +masculine +72193 feminine +masculine +72196 masculine +72199 masculine +masculine +masculine +72203 masculine +masculine +masculine +feminine +feminine +72209 masculine +masculine +72212 feminine +feminine +72216 masculine +masculine +masculine +masculine +feminine +72222 masculine +72224 neuter +72226 masculine +masculine +72231 masculine +72234 feminine +neuter +neuter +masculine +72239 masculine +72242 feminine +masculine +neuter +neuter +masculine +72248 masculine +masculine +72251 neuter +neuter +72254 masculine +masculine +masculine +72259 masculine +masculine +72263 feminine +feminine +72266 feminine +72268 feminine +72271 feminine +feminine +72274 masculine +masculine +72277 masculine +72282 masculine +masculine +masculine +feminine +feminine +feminine +masculine +masculine +72291 masculine +72294 masculine +masculine +feminine +feminine +72299 masculine +72301 feminine +feminine +72304 feminine +feminine +72308 masculine +masculine +72312 neuter +72315 neuter +neuter +72318 masculine +feminine +feminine +masculine +masculine +72324 masculine +masculine +72328 neuter +72331 masculine +feminine +feminine +72335 feminine +feminine +72339 masculine +masculine +72342 masculine +72346 neuter +neuter +72354 masculine +72356 neuter +neuter +72363 masculine +72369 neuter +72371 neuter +neuter +72374 masculine +masculine +72378 neuter +72381 masculine +feminine +72384 feminine +feminine +72388 feminine +feminine +feminine +feminine +feminine +feminine +72395 feminine +feminine +feminine +feminine +72400 masculine +72402 masculine +72404 feminine +feminine +72409 masculine +masculine +72412 masculine +72414 masculine +masculine +72417 masculine +masculine +72425 masculine +masculine +masculine +masculine +masculine +72434 feminine +masculine +72437 feminine +feminine +feminine +masculine +masculine +masculine +masculine +72445 masculine +72448 feminine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +72459 masculine +72461 masculine +72463 masculine +72465 masculine +masculine +feminine +feminine +masculine +masculine +72473 feminine +neuter +feminine +72477 feminine +feminine +feminine +masculine +masculine +72483 feminine +feminine +72487 masculine +masculine +72490 feminine +72493 masculine +masculine +72496 masculine +masculine +72499 masculine +72501 feminine +72505 feminine +72510 masculine +72512 masculine +masculine +72515 masculine +72517 masculine +masculine +72520 masculine +72522 masculine +72524 masculine +72528 masculine +masculine +feminine +feminine +72534 masculine +72536 masculine +masculine +masculine +72541 feminine +feminine +72546 masculine +72548 masculine +masculine +neuter +72552 masculine +72555 masculine +masculine +72558 feminine +feminine +72561 masculine +72563 masculine +72565 masculine +masculine +72568 neuter +masculine +masculine +72573 masculine +masculine +masculine +72578 masculine +masculine +masculine +masculine +72585 masculine +72587 feminine +feminine +72590 feminine +72594 masculine +masculine +72597 feminine +72602 masculine +72604 masculine +masculine +masculine +72608 masculine +masculine +masculine +masculine +72613 feminine +72615 neuter +72617 masculine +feminine +feminine +72621 feminine +feminine +72624 feminine +feminine +masculine +masculine +masculine +feminine +feminine +masculine +72633 neuter +neuter +72637 masculine +72639 masculine +masculine +72642 masculine +feminine +72646 masculine +72650 masculine +masculine +masculine +72654 neuter +72657 feminine +feminine +masculine +masculine +72662 masculine +masculine +72666 masculine +masculine +masculine +masculine +72674 masculine +72676 masculine +72679 feminine +masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +72691 feminine +72693 feminine +feminine +feminine +masculine +72698 masculine +72700 masculine +masculine +72703 masculine +masculine +masculine +masculine +72708 masculine +masculine +masculine +72712 masculine +masculine +masculine +masculine +masculine +72718 masculine +72720 masculine +masculine +masculine +masculine +72725 masculine +72727 neuter +neuter +neuter +neuter +72734 masculine +masculine +72737 masculine +72739 neuter +neuter +neuter +72743 masculine +72745 masculine +72747 masculine +72749 masculine +feminine +feminine +masculine +72756 masculine +masculine +72759 neuter +neuter +neuter +72764 feminine +72769 feminine +72771 masculine +72773 feminine +72775 masculine +masculine +masculine +masculine +72780 feminine +feminine +masculine +masculine +72787 masculine +masculine +72790 masculine +feminine +feminine +feminine +72795 feminine +72797 masculine +masculine +masculine +masculine +masculine +masculine +neuter +masculine +masculine +72808 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +72818 masculine +72821 masculine +masculine +masculine +masculine +72827 masculine +masculine +masculine +masculine +72834 neuter +neuter +masculine +masculine +72839 masculine +masculine +72842 feminine +feminine +72845 masculine +masculine +72848 masculine +masculine +neuter +neuter +masculine +72854 masculine +72857 masculine +masculine +masculine +72861 feminine +feminine +masculine +masculine +masculine +feminine +feminine +72870 masculine +feminine +feminine +masculine +masculine +feminine +feminine +72880 feminine +masculine +72886 masculine +72888 masculine +masculine +masculine +72892 masculine +72897 masculine +feminine +72900 neuter +72902 masculine +72904 masculine +72906 masculine +masculine +masculine +neuter +neuter +72912 masculine +72914 feminine +feminine +masculine +masculine +72919 masculine +72921 feminine +feminine +masculine +72925 masculine +72928 feminine +feminine +feminine +72932 masculine +masculine +72935 masculine +72938 neuter +72940 masculine +masculine +72943 feminine +feminine +72947 feminine +feminine +feminine +72951 masculine +72953 feminine +feminine +feminine +feminine +neuter +neuter +72962 feminine +feminine +masculine +masculine +72967 masculine +masculine +72970 masculine +masculine +72973 masculine +masculine +masculine +masculine +72981 masculine +masculine +feminine +72985 masculine +masculine +72989 masculine +masculine +72992 masculine +feminine +feminine +72996 masculine +masculine +72999 masculine +masculine +masculine +masculine +73004 masculine +masculine +masculine +masculine +masculine +masculine +73011 masculine +masculine +73015 masculine +masculine +73019 feminine +feminine +73022 feminine +feminine +73026 masculine +masculine +73029 masculine +73031 feminine +73034 masculine +masculine +73037 masculine +73039 feminine +feminine +73042 masculine +neuter +73046 feminine +feminine +73049 feminine +feminine +masculine +73053 neuter +neuter +73059 neuter +73061 masculine +73063 masculine +masculine +73067 masculine +73070 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +73079 feminine +masculine +neuter +73084 masculine +masculine +73087 masculine +masculine +masculine +73091 masculine +masculine +73095 masculine +73097 masculine +masculine +masculine +masculine +masculine +73103 feminine +feminine +73106 masculine +73108 neuter +neuter +neuter +73112 masculine +masculine +73115 masculine +neuter +neuter +73119 feminine +73121 masculine +masculine +masculine +masculine +masculine +masculine +73128 neuter +feminine +feminine +masculine +neuter +feminine +masculine +masculine +masculine +masculine +73141 masculine +masculine +masculine +73145 neuter +73157 masculine +73160 masculine +neuter +neuter +masculine +masculine +73166 masculine +masculine +masculine +neuter +masculine +73172 masculine +73175 masculine +masculine +masculine +73179 masculine +masculine +feminine +feminine +feminine +73186 masculine +masculine +73189 feminine +73191 masculine +masculine +masculine +masculine +masculine +73197 feminine +feminine +masculine +masculine +feminine +73203 neuter +neuter +feminine +masculine +73209 feminine +feminine +masculine +masculine +73214 masculine +73216 masculine +73220 neuter +neuter +73223 masculine +neuter +masculine +73227 neuter +neuter +73231 neuter +73233 masculine +masculine +73236 masculine +73238 masculine +masculine +73242 feminine +feminine +masculine +masculine +masculine +73248 feminine +feminine +73251 feminine +masculine +73255 masculine +masculine +73258 masculine +masculine +73264 feminine +73266 masculine +masculine +feminine +feminine +73271 feminine +masculine +masculine +73275 neuter +neuter +73278 masculine +masculine +73283 masculine +masculine +masculine +masculine +73288 masculine +73299 masculine +73301 masculine +73303 masculine +73306 feminine +73312 neuter +neuter +masculine +neuter +neuter +73320 masculine +73324 masculine +masculine +73328 feminine +73331 masculine +feminine +feminine +masculine +feminine +masculine +masculine +feminine +73343 masculine +masculine +masculine +73348 feminine +73350 masculine +masculine +masculine +73356 feminine +73358 neuter +73361 masculine +masculine +73365 masculine +73367 feminine +feminine +73372 neuter +neuter +73377 masculine +masculine +73381 masculine +masculine +masculine +masculine +73390 neuter +neuter +73393 masculine +masculine +73396 masculine +masculine +73403 neuter +73407 feminine +feminine +73410 neuter +neuter +73416 masculine +73420 masculine +masculine +73424 neuter +73426 neuter +73428 masculine +neuter +neuter +neuter +73433 feminine +feminine +feminine +73437 masculine +masculine +masculine +73441 masculine +masculine +masculine +masculine +masculine +73447 masculine +masculine +masculine +masculine +masculine +73453 masculine +73455 feminine +feminine +masculine +masculine +73460 neuter +neuter +neuter +73464 feminine +feminine +feminine +73469 masculine +masculine +masculine +masculine +73474 masculine +masculine +masculine +masculine +masculine +73480 masculine +73483 neuter +73485 masculine +neuter +masculine +73489 masculine +masculine +masculine +73493 masculine +masculine +73497 neuter +73499 neuter +73501 masculine +masculine +masculine +masculine +73507 masculine +73511 masculine +masculine +feminine +feminine +feminine +73519 neuter +neuter +73525 masculine +masculine +73530 neuter +neuter +neuter +73536 feminine +73538 neuter +feminine +feminine +73542 neuter +neuter +neuter +73548 masculine +masculine +masculine +masculine +73554 masculine +73556 masculine +73558 feminine +feminine +73562 masculine +masculine +masculine +masculine +73567 feminine +feminine +feminine +73571 masculine +masculine +73574 feminine +feminine +feminine +feminine +masculine +73580 masculine +masculine +feminine +feminine +73586 masculine +73588 masculine +masculine +73591 masculine +73594 masculine +73596 neuter +neuter +masculine +73600 masculine +masculine +masculine +masculine +masculine +masculine +73607 masculine +73610 neuter +73612 masculine +masculine +73615 feminine +73617 neuter +neuter +73622 neuter +73624 neuter +neuter +73627 masculine +73629 feminine +feminine +masculine +masculine +73639 masculine +73641 masculine +neuter +neuter +73645 masculine +masculine +masculine +73651 feminine +feminine +neuter +neuter +73656 masculine +masculine +73660 masculine +masculine +73663 masculine +73665 masculine +masculine +masculine +masculine +73670 masculine +masculine +feminine +feminine +masculine +masculine +neuter +73678 neuter +73681 feminine +feminine +masculine +73686 neuter +neuter +feminine +feminine +73692 masculine +73695 masculine +masculine +73698 masculine +73700 masculine +masculine +73705 feminine +neuter +73708 neuter +73710 masculine +73712 masculine +masculine +masculine +73718 masculine +masculine +73722 feminine +feminine +feminine +feminine +feminine +73728 feminine +73730 feminine +feminine +73733 masculine +73736 masculine +masculine +masculine +masculine +masculine +73742 neuter +73744 masculine +73746 feminine +feminine +masculine +masculine +73752 masculine +73754 masculine +masculine +masculine +masculine +masculine +masculine +73761 masculine +73764 feminine +neuter +73768 feminine +feminine +73772 masculine +masculine +73775 masculine +73781 masculine +masculine +masculine +neuter +73786 masculine +73788 feminine +feminine +masculine +73792 masculine +masculine +masculine +masculine +masculine +73802 masculine +masculine +masculine +73806 masculine +masculine +masculine +73810 masculine +73812 masculine +masculine +masculine +masculine +73817 masculine +masculine +masculine +masculine +masculine +masculine +73824 feminine +feminine +masculine +73828 neuter +73830 masculine +masculine +masculine +73834 masculine +masculine +73839 masculine +masculine +masculine +masculine +73844 masculine +masculine +neuter +neuter +masculine +73851 masculine +masculine +masculine +73855 masculine +masculine +neuter +neuter +73862 masculine +73864 masculine +73866 masculine +73869 neuter +neuter +neuter +73874 masculine +masculine +masculine +73878 masculine +masculine +73881 feminine +feminine +73884 feminine +feminine +73887 neuter +neuter +73890 masculine +masculine +73893 feminine +feminine +feminine +73897 neuter +neuter +neuter +73901 feminine +feminine +masculine +73906 masculine +masculine +73909 masculine +73912 masculine +masculine +73915 masculine +masculine +masculine +feminine +73920 feminine +feminine +feminine +73925 neuter +masculine +73929 masculine +masculine +neuter +73934 masculine +73938 feminine +73940 neuter +masculine +73943 masculine +masculine +masculine +73947 masculine +masculine +masculine +73952 feminine +feminine +masculine +masculine +73958 masculine +masculine +masculine +masculine +masculine +73965 feminine +feminine +73968 feminine +73972 masculine +masculine +73975 feminine +73977 masculine +feminine +feminine +feminine +73982 masculine +masculine +73986 feminine +feminine +73990 neuter +73993 feminine +masculine +feminine +feminine +masculine +masculine +masculine +74001 feminine +feminine +74007 feminine +feminine +74012 feminine +feminine +masculine +masculine +74017 masculine +masculine +74020 feminine +masculine +masculine +74024 feminine +74026 masculine +masculine +masculine +74030 masculine +74033 masculine +feminine +feminine +74038 feminine +feminine +74041 masculine +74043 feminine +masculine +masculine +74048 feminine +74052 feminine +74055 masculine +feminine +feminine +masculine +masculine +74061 neuter +neuter +neuter +74066 masculine +74068 masculine +feminine +feminine +74072 neuter +74074 masculine +masculine +74077 masculine +74081 neuter +neuter +feminine +feminine +74087 masculine +74089 masculine +74091 masculine +masculine +74094 masculine +masculine +74097 feminine +feminine +74100 masculine +masculine +74106 neuter +neuter +neuter +masculine +74114 feminine +feminine +74117 feminine +74119 feminine +masculine +masculine +74123 masculine +masculine +74126 masculine +74129 masculine +74131 masculine +74133 masculine +masculine +74136 masculine +74138 masculine +masculine +74141 masculine +74143 feminine +74145 neuter +neuter +neuter +74150 masculine +masculine +74153 feminine +feminine +74156 feminine +74158 feminine +74160 feminine +masculine +feminine +feminine +neuter +neuter +74168 feminine +feminine +masculine +masculine +masculine +74174 masculine +74176 neuter +74179 feminine +feminine +74182 masculine +masculine +74185 masculine +masculine +74189 neuter +masculine +masculine +74194 masculine +74197 masculine +masculine +74200 feminine +feminine +masculine +masculine +masculine +masculine +74209 masculine +74213 masculine +masculine +masculine +74218 masculine +masculine +74221 masculine +masculine +74225 masculine +masculine +masculine +74229 feminine +feminine +feminine +masculine +masculine +74236 masculine +masculine +masculine +74243 feminine +feminine +74248 masculine +masculine +74251 neuter +neuter +74255 neuter +neuter +masculine +masculine +neuter +neuter +74264 masculine +masculine +masculine +74268 masculine +masculine +neuter +neuter +neuter +neuter +74278 neuter +74284 masculine +feminine +feminine +masculine +feminine +feminine +masculine +74293 neuter +74295 masculine +masculine +74298 masculine +74300 masculine +masculine +masculine +masculine +masculine +74307 masculine +masculine +74316 feminine +feminine +masculine +masculine +masculine +74323 masculine +masculine +masculine +74328 neuter +neuter +neuter +74333 masculine +74335 masculine +masculine +neuter +74339 neuter +neuter +74342 masculine +masculine +74345 neuter +neuter +74348 masculine +74351 neuter +74353 masculine +74355 masculine +masculine +masculine +masculine +74361 masculine +74364 neuter +masculine +masculine +74370 neuter +masculine +neuter +neuter +masculine +74376 neuter +74378 masculine +masculine +masculine +masculine +74385 neuter +74389 feminine +feminine +masculine +feminine +feminine +74395 neuter +neuter +feminine +74401 feminine +74405 masculine +masculine +masculine +masculine +masculine +masculine +74412 neuter +neuter +neuter +74416 masculine +74418 neuter +neuter +74422 masculine +74424 masculine +masculine +neuter +neuter +74429 masculine +74435 masculine +74437 neuter +neuter +masculine +74441 masculine +masculine +74445 masculine +neuter +74448 neuter +neuter +neuter +neuter +74453 feminine +feminine +74456 neuter +74458 neuter +neuter +74461 masculine +74463 feminine +feminine +74466 feminine +masculine +masculine +masculine +74472 feminine +feminine +74475 neuter +neuter +masculine +74480 masculine +masculine +74483 masculine +masculine +74486 feminine +feminine +feminine +masculine +masculine +74492 masculine +74495 feminine +74497 masculine +masculine +74500 masculine +masculine +masculine +masculine +masculine +74506 masculine +masculine +masculine +74510 masculine +masculine +masculine +74514 feminine +masculine +masculine +masculine +74519 masculine +masculine +masculine +masculine +74524 feminine +feminine +74527 feminine +74529 feminine +masculine +masculine +74533 neuter +74538 masculine +74543 masculine +masculine +feminine +feminine +74548 masculine +74553 masculine +74555 masculine +masculine +74561 masculine +masculine +74564 masculine +74566 masculine +masculine +masculine +feminine +feminine +masculine +74573 neuter +neuter +masculine +masculine +74578 masculine +masculine +74582 masculine +74584 masculine +74586 masculine +74588 masculine +masculine +neuter +neuter +74594 neuter +neuter +neuter +neuter +74600 neuter +neuter +neuter +74606 neuter +neuter +74610 neuter +74612 neuter +74614 neuter +74616 feminine +74618 neuter +masculine +masculine +74626 masculine +masculine +74630 feminine +74632 masculine +neuter +neuter +74636 feminine +feminine +74639 masculine +74642 feminine +feminine +74645 masculine +74647 masculine +74649 masculine +masculine +masculine +74653 masculine +masculine +74656 masculine +masculine +74661 masculine +masculine +74665 feminine +74667 masculine +masculine +74670 masculine +masculine +masculine +74674 masculine +74676 masculine +74679 feminine +masculine +74682 masculine +74685 masculine +masculine +masculine +masculine +masculine +masculine +74693 feminine +feminine +74697 masculine +masculine +74700 masculine +74702 masculine +masculine +74705 feminine +feminine +74708 feminine +74710 masculine +masculine +masculine +masculine +74717 masculine +74721 masculine +masculine +masculine +masculine +masculine +74727 masculine +74729 masculine +masculine +74732 masculine +74734 feminine +74737 masculine +masculine +74740 neuter +neuter +74744 masculine +74747 masculine +74750 masculine +74752 masculine +74754 masculine +masculine +masculine +masculine +masculine +74761 feminine +74763 masculine +masculine +masculine +74767 masculine +feminine +feminine +masculine +masculine +74773 masculine +masculine +74777 feminine +feminine +74780 feminine +masculine +feminine +feminine +74788 feminine +74791 feminine +74796 masculine +masculine +neuter +masculine +masculine +feminine +feminine +feminine +74805 masculine +masculine +masculine +74810 masculine +74812 neuter +74814 neuter +masculine +74817 masculine +masculine +masculine +74821 masculine +74824 masculine +74826 masculine +74828 masculine +masculine +masculine +masculine +74833 masculine +masculine +masculine +74838 masculine +74840 masculine +masculine +masculine +masculine +74848 feminine +feminine +74851 masculine +74853 neuter +neuter +neuter +neuter +74858 masculine +masculine +74861 masculine +masculine +74864 neuter +74867 feminine +feminine +74870 feminine +feminine +74874 masculine +masculine +74877 feminine +74880 feminine +feminine +74883 feminine +feminine +masculine +74887 neuter +neuter +neuter +74891 masculine +masculine +74894 feminine +feminine +74897 masculine +74899 feminine +feminine +74903 feminine +feminine +74909 masculine +neuter +neuter +masculine +74914 masculine +feminine +feminine +74919 feminine +74921 neuter +74923 feminine +masculine +masculine +74927 masculine +masculine +masculine +74931 masculine +74933 masculine +masculine +74936 masculine +masculine +74939 feminine +74944 neuter +neuter +74951 feminine +masculine +74955 masculine +masculine +74959 masculine +74961 masculine +74963 feminine +74966 feminine +74968 feminine +feminine +74971 feminine +feminine +74975 masculine +feminine +74978 feminine +feminine +feminine +feminine +feminine +feminine +74986 masculine +74988 feminine +feminine +feminine +feminine +feminine +74994 feminine +feminine +neuter +neuter +75000 feminine +feminine +75003 masculine +75005 feminine +75009 masculine +75011 feminine +feminine +feminine +75015 feminine +feminine +neuter +feminine +feminine +feminine +neuter +feminine +masculine +masculine +75026 feminine +feminine +feminine +masculine +masculine +75033 neuter +neuter +75036 masculine +75041 masculine +masculine +feminine +75045 feminine +75049 feminine +masculine +masculine +75053 masculine +75055 masculine +masculine +75064 masculine +75067 feminine +feminine +feminine +feminine +feminine +neuter +masculine +75076 feminine +feminine +feminine +75080 masculine +masculine +feminine +feminine +feminine +feminine +masculine +masculine +75091 feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +75101 masculine +75104 feminine +feminine +75107 neuter +75110 feminine +feminine +75113 masculine +masculine +75116 masculine +neuter +neuter +75123 neuter +masculine +masculine +75128 feminine +75131 feminine +feminine +feminine +75135 masculine +masculine +feminine +masculine +75141 feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +75150 masculine +masculine +75154 feminine +feminine +75157 masculine +masculine +75160 masculine +masculine +masculine +masculine +75165 masculine +masculine +masculine +75170 feminine +feminine +masculine +masculine +75176 neuter +neuter +75184 masculine +masculine +75188 masculine +masculine +75191 masculine +75193 masculine +masculine +masculine +masculine +neuter +neuter +75202 masculine +masculine +feminine +feminine +75208 feminine +masculine +masculine +masculine +75214 masculine +masculine +feminine +feminine +masculine +75220 masculine +75222 feminine +feminine +feminine +75226 masculine +masculine +masculine +75231 neuter +neuter +75235 neuter +neuter +masculine +75239 masculine +masculine +75242 masculine +masculine +75246 masculine +masculine +masculine +75251 masculine +masculine +75256 neuter +neuter +neuter +neuter +75263 feminine +feminine +feminine +75267 masculine +neuter +neuter +75272 masculine +masculine +masculine +masculine +75277 masculine +feminine +feminine +feminine +feminine +feminine +masculine +feminine +feminine +75287 masculine +75289 masculine +75291 masculine +masculine +75295 masculine +feminine +feminine +masculine +neuter +neuter +75302 masculine +75304 masculine +75308 masculine +neuter +75312 masculine +masculine +75315 masculine +masculine +75318 masculine +75320 masculine +masculine +75324 masculine +neuter +75332 masculine +75336 masculine +masculine +masculine +75343 masculine +masculine +75348 masculine +masculine +masculine +masculine +masculine +75354 masculine +masculine +75357 feminine +feminine +masculine +75361 masculine +masculine +75364 feminine +feminine +feminine +feminine +feminine +75371 feminine +feminine +75375 masculine +75377 masculine +masculine +masculine +75382 masculine +masculine +75385 masculine +masculine +75388 feminine +75392 masculine +masculine +masculine +75396 feminine +feminine +75399 masculine +masculine +masculine +masculine +masculine +75405 masculine +masculine +masculine +75410 masculine +masculine +masculine +masculine +masculine +75416 masculine +masculine +75420 masculine +masculine +75426 masculine +75429 feminine +75431 masculine +masculine +75435 masculine +masculine +75438 feminine +masculine +masculine +masculine +masculine +75445 feminine +75454 masculine +masculine +75460 masculine +masculine +masculine +masculine +neuter +neuter +neuter +75469 masculine +75471 masculine +75474 masculine +75476 masculine +75478 masculine +75482 feminine +feminine +75485 masculine +75487 feminine +feminine +75491 feminine +feminine +75494 masculine +75496 masculine +masculine +75501 masculine +feminine +feminine +75505 feminine +feminine +75509 feminine +75512 feminine +masculine +masculine +75517 neuter +neuter +masculine +masculine +75523 masculine +75526 neuter +neuter +75529 masculine +75531 feminine +feminine +masculine +75535 masculine +75538 masculine +masculine +75544 masculine +75547 masculine +75549 masculine +masculine +masculine +masculine +masculine +75558 masculine +75560 masculine +75564 masculine +masculine +75567 masculine +masculine +75570 masculine +masculine +masculine +neuter +neuter +75576 feminine +feminine +feminine +75580 feminine +75582 masculine +masculine +masculine +75586 masculine +masculine +masculine +masculine +masculine +masculine +75593 masculine +75595 feminine +feminine +75598 masculine +feminine +feminine +masculine +75603 masculine +75606 masculine +masculine +75610 masculine +masculine +75613 masculine +75615 masculine +masculine +75618 masculine +masculine +masculine +75622 masculine +feminine +feminine +masculine +masculine +75630 masculine +75632 masculine +75634 masculine +masculine +75637 neuter +neuter +masculine +75641 masculine +masculine +75644 masculine +masculine +75648 masculine +masculine +75651 masculine +masculine +masculine +neuter +75656 masculine +neuter +neuter +75660 masculine +masculine +75663 masculine +masculine +75666 masculine +75668 masculine +masculine +75672 feminine +75675 masculine +masculine +75678 masculine +masculine +75681 feminine +masculine +masculine +75685 feminine +feminine +masculine +masculine +75691 masculine +75693 masculine +masculine +75696 feminine +masculine +75699 masculine +masculine +75702 feminine +feminine +neuter +75706 feminine +masculine +feminine +feminine +75712 neuter +75716 masculine +75718 masculine +75721 feminine +feminine +feminine +masculine +masculine +75727 masculine +75729 masculine +75733 masculine +75735 feminine +feminine +masculine +75741 feminine +feminine +75745 masculine +masculine +masculine +masculine +masculine +masculine +75753 masculine +75755 masculine +masculine +masculine +75761 masculine +masculine +75764 masculine +masculine +75769 feminine +feminine +75774 masculine +masculine +75777 masculine +masculine +75781 masculine +masculine +masculine +masculine +75787 feminine +75789 masculine +feminine +75792 masculine +masculine +75795 masculine +masculine +75799 neuter +75802 masculine +75806 feminine +feminine +masculine +masculine +masculine +masculine +75813 neuter +neuter +masculine +75817 masculine +masculine +feminine +feminine +feminine +feminine +75827 feminine +feminine +masculine +masculine +75832 masculine +masculine +75836 feminine +feminine +75839 feminine +feminine +75842 masculine +masculine +75845 masculine +75847 masculine +masculine +75850 masculine +masculine +75853 masculine +75855 masculine +75859 masculine +masculine +masculine +neuter +75865 masculine +75867 neuter +neuter +masculine +75872 masculine +masculine +75875 feminine +feminine +75879 masculine +masculine +75882 masculine +masculine +masculine +75886 masculine +75889 feminine +feminine +feminine +feminine +feminine +75896 feminine +feminine +75899 neuter +neuter +75903 feminine +feminine +75909 neuter +75912 neuter +75914 masculine +masculine +75917 masculine +masculine +masculine +75921 neuter +neuter +75926 neuter +75929 neuter +neuter +75932 masculine +masculine +75935 neuter +masculine +masculine +masculine +75940 masculine +masculine +75943 neuter +75945 masculine +75949 masculine +75951 masculine +neuter +neuter +75957 masculine +75959 masculine +75961 masculine +masculine +75964 neuter +masculine +75967 neuter +75971 masculine +masculine +masculine +masculine +masculine +masculine +75978 neuter +neuter +75981 masculine +masculine +masculine +75985 feminine +masculine +masculine +75990 masculine +masculine +75995 feminine +masculine +75998 masculine +neuter +masculine +masculine +neuter +feminine +76005 feminine +76007 neuter +neuter +76012 neuter +neuter +neuter +masculine +76018 neuter +neuter +feminine +feminine +masculine +masculine +masculine +76026 feminine +feminine +feminine +feminine +masculine +76032 masculine +masculine +76038 masculine +76044 feminine +76046 masculine +masculine +76049 masculine +76052 masculine +76060 masculine +masculine +76064 masculine +76067 masculine +76069 neuter +76072 masculine +neuter +masculine +masculine +76079 masculine +76081 masculine +76083 masculine +neuter +feminine +76087 feminine +masculine +neuter +neuter +76092 neuter +76095 masculine +masculine +feminine +feminine +masculine +masculine +masculine +neuter +76105 masculine +masculine +masculine +76112 feminine +76114 feminine +76117 feminine +feminine +76120 feminine +76122 masculine +masculine +76125 feminine +masculine +masculine +masculine +masculine +76131 masculine +76133 masculine +feminine +masculine +76137 masculine +76140 masculine +76145 neuter +76149 masculine +masculine +76153 neuter +masculine +76156 masculine +masculine +masculine +masculine +76162 masculine +76164 masculine +masculine +masculine +76168 feminine +neuter +feminine +76172 masculine +76174 masculine +76176 neuter +masculine +76179 feminine +feminine +76183 feminine +76185 masculine +masculine +masculine +neuter +masculine +masculine +neuter +neuter +76194 masculine +76196 feminine +feminine +76199 feminine +feminine +masculine +76203 neuter +76205 masculine +76207 masculine +masculine +masculine +76211 feminine +feminine +76214 masculine +76217 neuter +masculine +76222 masculine +76227 masculine +feminine +feminine +76233 feminine +feminine +76236 neuter +neuter +76240 masculine +76242 masculine +76247 feminine +feminine +76250 masculine +masculine +76253 masculine +masculine +76256 masculine +masculine +masculine +masculine +masculine +masculine +masculine +76264 masculine +masculine +masculine +76268 masculine +masculine +76271 masculine +masculine +neuter +neuter +76277 masculine +neuter +neuter +76282 feminine +feminine +76285 masculine +76288 masculine +76291 neuter +neuter +76295 masculine +76299 feminine +masculine +neuter +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +76311 feminine +feminine +feminine +76315 masculine +masculine +masculine +76319 masculine +masculine +76322 masculine +masculine +masculine +masculine +76327 masculine +masculine +masculine +masculine +76336 masculine +masculine +76339 feminine +76341 neuter +masculine +masculine +76357 masculine +76360 neuter +76364 masculine +masculine +76369 feminine +feminine +feminine +76374 masculine +76376 masculine +76378 masculine +76380 masculine +masculine +masculine +masculine +masculine +76386 masculine +masculine +masculine +feminine +feminine +76393 masculine +masculine +masculine +masculine +76399 masculine +76401 neuter +neuter +masculine +76406 masculine +masculine +76409 masculine +masculine +masculine +76413 masculine +masculine +76416 masculine +masculine +masculine +76420 neuter +neuter +76423 masculine +masculine +76426 masculine +masculine +76431 neuter +neuter +76434 neuter +neuter +76437 masculine +76440 masculine +76446 neuter +76448 masculine +76450 neuter +76452 masculine +masculine +76457 masculine +76461 masculine +neuter +76466 masculine +76468 neuter +neuter +76471 masculine +masculine +masculine +masculine +masculine +76478 neuter +neuter +76481 neuter +neuter +masculine +masculine +76487 masculine +masculine +76490 masculine +feminine +feminine +masculine +masculine +masculine +76498 feminine +feminine +76502 masculine +feminine +76505 masculine +masculine +76508 feminine +feminine +feminine +76513 feminine +76517 feminine +masculine +76522 masculine +masculine +76525 feminine +feminine +76528 masculine +masculine +76531 masculine +masculine +76534 masculine +masculine +76540 masculine +76542 masculine +76547 masculine +masculine +masculine +76552 feminine +feminine +76555 masculine +76557 feminine +masculine +76560 masculine +feminine +feminine +76565 feminine +76567 masculine +masculine +masculine +76571 masculine +76573 feminine +feminine +feminine +76577 feminine +masculine +masculine +masculine +masculine +76583 masculine +masculine +masculine +neuter +masculine +neuter +neuter +masculine +masculine +masculine +masculine +76595 feminine +feminine +76599 feminine +masculine +76602 masculine +feminine +feminine +masculine +masculine +76608 masculine +neuter +neuter +76615 neuter +76617 masculine +masculine +masculine +neuter +neuter +neuter +masculine +76625 masculine +76629 feminine +feminine +76632 masculine +masculine +feminine +76636 masculine +76638 masculine +76640 neuter +masculine +76643 feminine +feminine +masculine +masculine +76648 masculine +masculine +76652 feminine +feminine +masculine +masculine +masculine +76658 masculine +masculine +76661 masculine +masculine +masculine +76665 neuter +masculine +masculine +76669 feminine +feminine +76673 masculine +masculine +76676 feminine +masculine +76679 feminine +feminine +76682 masculine +masculine +masculine +76688 neuter +masculine +masculine +76693 feminine +masculine +masculine +neuter +neuter +neuter +76701 feminine +76704 masculine +masculine +76709 masculine +76711 neuter +neuter +76714 masculine +76716 masculine +76718 masculine +76723 neuter +neuter +76730 neuter +76733 masculine +76736 neuter +masculine +neuter +76741 masculine +masculine +76744 neuter +feminine +masculine +masculine +masculine +76752 masculine +masculine +76755 masculine +neuter +76759 masculine +masculine +76762 masculine +76765 neuter +neuter +masculine +masculine +masculine +76771 masculine +masculine +masculine +masculine +feminine +76777 neuter +neuter +neuter +neuter +76782 masculine +76785 feminine +76790 masculine +masculine +masculine +76796 masculine +76798 feminine +feminine +76802 masculine +masculine +masculine +76806 masculine +76808 feminine +feminine +masculine +masculine +76814 masculine +76818 masculine +feminine +feminine +76822 neuter +neuter +masculine +76826 masculine +76828 masculine +masculine +76831 feminine +masculine +76834 feminine +feminine +masculine +76838 neuter +76841 neuter +76844 masculine +masculine +masculine +feminine +feminine +76850 masculine +masculine +masculine +masculine +76855 masculine +76857 masculine +76859 feminine +76861 feminine +feminine +masculine +masculine +76867 feminine +feminine +masculine +76873 masculine +masculine +76877 masculine +masculine +masculine +neuter +76882 neuter +76886 masculine +feminine +feminine +76890 neuter +neuter +neuter +neuter +76897 masculine +76899 masculine +masculine +masculine +masculine +76905 masculine +masculine +neuter +neuter +neuter +neuter +neuter +neuter +masculine +masculine +masculine +masculine +76919 masculine +masculine +masculine +masculine +76925 masculine +masculine +masculine +masculine +76930 masculine +neuter +76933 masculine +76935 neuter +neuter +neuter +neuter +neuter +76941 masculine +masculine +masculine +76946 masculine +masculine +76951 masculine +76954 masculine +76956 masculine +masculine +masculine +76960 masculine +76962 neuter +neuter +neuter +neuter +masculine +masculine +76970 masculine +76972 masculine +76974 masculine +76977 masculine +masculine +masculine +76981 neuter +76983 neuter +masculine +76986 masculine +76988 masculine +masculine +masculine +feminine +feminine +76995 masculine +76997 masculine +masculine +77001 neuter +neuter +masculine +masculine +masculine +77007 masculine +masculine +masculine +77011 masculine +77013 masculine +feminine +feminine +masculine +77018 masculine +masculine +neuter +neuter +masculine +masculine +feminine +feminine +77028 masculine +77031 feminine +feminine +feminine +77036 neuter +feminine +77041 neuter +masculine +masculine +masculine +masculine +77052 neuter +77054 masculine +masculine +77057 neuter +neuter +masculine +feminine +feminine +77063 feminine +77066 neuter +masculine +77070 neuter +77077 feminine +77080 masculine +77082 feminine +feminine +77085 masculine +masculine +masculine +masculine +77090 masculine +masculine +77093 masculine +77095 feminine +feminine +77100 masculine +masculine +masculine +masculine +77105 masculine +77107 feminine +feminine +77110 masculine +masculine +neuter +masculine +masculine +masculine +masculine +feminine +77119 masculine +masculine +77122 feminine +feminine +masculine +77126 masculine +77128 neuter +neuter +masculine +masculine +77133 masculine +77137 feminine +feminine +feminine +feminine +feminine +77150 neuter +feminine +77154 feminine +feminine +feminine +masculine +masculine +masculine +masculine +77162 masculine +masculine +masculine +77168 masculine +masculine +77171 feminine +masculine +77175 neuter +neuter +77179 neuter +neuter +77182 masculine +77186 neuter +feminine +feminine +feminine +feminine +neuter +77193 neuter +77199 feminine +feminine +feminine +feminine +feminine +feminine +feminine +77207 feminine +feminine +77211 masculine +77213 masculine +masculine +masculine +77217 masculine +feminine +feminine +feminine +masculine +77224 feminine +feminine +feminine +feminine +77232 neuter +neuter +masculine +masculine +77237 masculine +masculine +masculine +masculine +77242 masculine +masculine +77246 masculine +masculine +77250 masculine +masculine +masculine +77254 masculine +77256 masculine +masculine +masculine +masculine +masculine +masculine +77263 masculine +77267 masculine +77269 neuter +neuter +77273 masculine +neuter +neuter +77278 feminine +feminine +77281 feminine +77283 masculine +masculine +77287 neuter +77292 masculine +masculine +77295 masculine +masculine +masculine +masculine +masculine +77301 masculine +masculine +masculine +feminine +feminine +77308 masculine +masculine +77311 masculine +77313 masculine +77315 feminine +feminine +77319 masculine +77322 feminine +77324 masculine +feminine +feminine +feminine +masculine +77330 masculine +masculine +masculine +masculine +masculine +77336 masculine +masculine +77339 masculine +masculine +77342 masculine +77345 feminine +masculine +feminine +feminine +masculine +feminine +feminine +feminine +77354 masculine +masculine +77357 masculine +neuter +neuter +neuter +77363 masculine +77366 neuter +neuter +77371 masculine +masculine +masculine +77375 masculine +77377 masculine +feminine +feminine +77384 masculine +77386 masculine +77388 masculine +masculine +77392 masculine +masculine +masculine +77397 masculine +77400 masculine +77403 neuter +77407 feminine +feminine +feminine +77415 feminine +77417 feminine +77419 neuter +neuter +neuter +77423 neuter +77427 masculine +77429 feminine +feminine +feminine +77433 neuter +masculine +77436 feminine +feminine +77440 neuter +77442 masculine +masculine +masculine +masculine +masculine +masculine +masculine +77450 masculine +masculine +77455 feminine +77457 masculine +neuter +neuter +neuter +77462 masculine +masculine +masculine +masculine +77468 feminine +feminine +77471 masculine +masculine +masculine +feminine +feminine +masculine +77478 masculine +masculine +masculine +77483 feminine +feminine +77486 feminine +neuter +77490 feminine +77493 masculine +masculine +masculine +masculine +77498 masculine +masculine +77501 masculine +77503 masculine +masculine +77506 masculine +77508 masculine +masculine +77511 masculine +77513 masculine +masculine +77518 feminine +77523 feminine +feminine +neuter +neuter +77528 masculine +77532 masculine +77534 feminine +feminine +77537 feminine +77541 feminine +77545 feminine +feminine +neuter +neuter +masculine +77552 masculine +masculine +masculine +77556 masculine +masculine +77559 feminine +77563 masculine +masculine +77566 neuter +77569 feminine +feminine +77572 neuter +neuter +77576 masculine +77578 masculine +masculine +neuter +masculine +masculine +77584 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +77593 neuter +masculine +77596 masculine +masculine +77600 neuter +neuter +77605 masculine +77607 masculine +masculine +masculine +77611 masculine +77613 masculine +77618 feminine +feminine +masculine +77622 masculine +77625 masculine +77627 masculine +masculine +masculine +77631 masculine +77634 neuter +masculine +77637 feminine +77642 masculine +masculine +masculine +77651 masculine +77653 neuter +neuter +77657 feminine +feminine +77660 masculine +77662 masculine +masculine +77666 masculine +77668 masculine +masculine +77676 feminine +feminine +masculine +masculine +77682 feminine +77684 masculine +feminine +feminine +77689 feminine +77691 feminine +feminine +77695 feminine +77697 feminine +feminine +77701 feminine +77704 masculine +masculine +77707 feminine +feminine +77712 masculine +77715 feminine +feminine +77720 neuter +77722 masculine +feminine +feminine +feminine +feminine +77729 neuter +77732 feminine +feminine +masculine +77736 feminine +77738 masculine +masculine +feminine +feminine +77746 masculine +77748 masculine +77752 feminine +feminine +77755 feminine +77758 feminine +feminine +77763 masculine +masculine +masculine +77767 masculine +masculine +masculine +77771 feminine +feminine +77774 neuter +77776 masculine +masculine +masculine +77781 feminine +feminine +masculine +masculine +77787 neuter +neuter +neuter +neuter +77797 feminine +77800 masculine +masculine +77803 masculine +77805 masculine +feminine +77808 masculine +feminine +77811 feminine +77813 masculine +masculine +77816 masculine +77820 masculine +neuter +neuter +77826 feminine +neuter +77829 feminine +neuter +77833 masculine +77836 neuter +neuter +neuter +neuter +77841 feminine +77844 neuter +77846 neuter +77848 feminine +77852 masculine +masculine +77855 feminine +feminine +feminine +masculine +77861 masculine +masculine +77865 feminine +feminine +feminine +77870 masculine +masculine +masculine +77874 neuter +neuter +feminine +feminine +masculine +masculine +77888 neuter +neuter +77892 masculine +77894 masculine +77896 masculine +feminine +feminine +77903 feminine +77905 feminine +77907 masculine +77910 neuter +neuter +masculine +77916 neuter +77919 feminine +feminine +feminine +masculine +masculine +77926 masculine +77928 neuter +neuter +neuter +77932 neuter +77934 neuter +neuter +neuter +neuter +77939 masculine +77941 feminine +feminine +masculine +masculine +feminine +77948 neuter +neuter +masculine +masculine +77957 feminine +feminine +77960 masculine +masculine +77965 masculine +neuter +neuter +77971 masculine +77973 masculine +masculine +neuter +neuter +77978 masculine +masculine +77981 masculine +77984 masculine +77986 feminine +feminine +77989 feminine +77993 neuter +masculine +masculine +masculine +77998 neuter +78002 masculine +masculine +78005 masculine +masculine +feminine +feminine +masculine +masculine +masculine +78015 feminine +feminine +78018 masculine +masculine +masculine +neuter +78023 neuter +78025 masculine +masculine +78028 masculine +78031 feminine +feminine +78035 masculine +masculine +78040 feminine +feminine +feminine +neuter +78048 masculine +78051 masculine +masculine +78055 masculine +masculine +masculine +masculine +masculine +78061 masculine +78063 neuter +78070 neuter +masculine +masculine +neuter +neuter +masculine +78077 masculine +masculine +78081 masculine +78083 masculine +masculine +78086 masculine +78088 masculine +masculine +masculine +masculine +78093 masculine +masculine +78097 masculine +masculine +masculine +78104 neuter +neuter +masculine +78110 masculine +78112 neuter +neuter +78119 masculine +78121 masculine +masculine +78125 feminine +feminine +78128 feminine +78131 feminine +feminine +78135 neuter +78137 masculine +neuter +neuter +78141 feminine +masculine +78145 masculine +feminine +feminine +78149 masculine +feminine +feminine +78154 feminine +78158 feminine +78161 neuter +neuter +78164 neuter +masculine +masculine +78168 masculine +masculine +masculine +78173 feminine +78175 masculine +masculine +masculine +78180 neuter +neuter +78185 neuter +78191 feminine +feminine +masculine +78195 masculine +78197 masculine +78199 feminine +78201 neuter +78204 feminine +feminine +78207 masculine +neuter +neuter +78211 masculine +masculine +masculine +78215 masculine +78219 neuter +neuter +78222 masculine +78225 neuter +neuter +78229 masculine +masculine +masculine +78233 feminine +78236 feminine +78238 masculine +masculine +masculine +78242 feminine +feminine +78245 masculine +78247 feminine +78249 masculine +78252 feminine +78254 masculine +78256 masculine +masculine +masculine +masculine +masculine +masculine +78263 masculine +78267 masculine +78269 masculine +78271 feminine +feminine +feminine +feminine +78276 masculine +feminine +feminine +78280 masculine +78282 feminine +feminine +masculine +neuter +masculine +78288 masculine +78292 masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +78302 feminine +feminine +78305 neuter +78307 neuter +neuter +neuter +neuter +masculine +masculine +masculine +78315 feminine +feminine +feminine +78321 feminine +masculine +masculine +78327 feminine +neuter +78332 neuter +78337 masculine +masculine +neuter +78342 masculine +78344 feminine +78347 masculine +masculine +neuter +78351 masculine +78353 masculine +78355 feminine +feminine +78360 neuter +78366 feminine +78370 neuter +neuter +masculine +masculine +masculine +78377 masculine +masculine +78380 masculine +masculine +masculine +neuter +neuter +78388 feminine +feminine +feminine +masculine +78394 neuter +78398 masculine +masculine +78401 feminine +78404 masculine +78406 masculine +78408 masculine +masculine +masculine +masculine +masculine +78414 masculine +78417 neuter +78421 masculine +masculine +78424 feminine +feminine +78427 masculine +masculine +78432 masculine +78435 masculine +masculine +masculine +78439 masculine +masculine +78443 neuter +neuter +neuter +78447 masculine +masculine +78450 neuter +neuter +78453 feminine +feminine +masculine +78457 masculine +masculine +78460 masculine +masculine +78464 masculine +78466 masculine +feminine +feminine +masculine +masculine +78473 masculine +masculine +78476 masculine +masculine +masculine +masculine +78487 feminine +78489 masculine +masculine +78492 neuter +neuter +masculine +masculine +masculine +78499 masculine +neuter +neuter +78503 neuter +neuter +78507 neuter +78514 neuter +78516 neuter +78521 masculine +masculine +feminine +masculine +78526 masculine +masculine +masculine +78531 masculine +78535 masculine +78538 feminine +feminine +78542 masculine +78544 neuter +78548 neuter +78553 masculine +masculine +masculine +masculine +78559 masculine +masculine +neuter +78564 masculine +78566 masculine +78568 neuter +neuter +78571 neuter +78573 neuter +78575 feminine +78577 masculine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +78586 masculine +masculine +78590 neuter +neuter +masculine +feminine +feminine +feminine +feminine +masculine +masculine +78600 masculine +78603 masculine +masculine +masculine +feminine +feminine +78611 feminine +78613 feminine +78615 masculine +78617 feminine +feminine +masculine +masculine +masculine +78623 neuter +neuter +78626 masculine +masculine +masculine +78632 masculine +feminine +feminine +masculine +masculine +masculine +78639 masculine +78641 masculine +masculine +masculine +78645 masculine +masculine +78648 masculine +masculine +78651 masculine +masculine +masculine +masculine +78656 masculine +78660 masculine +78663 neuter +neuter +78667 masculine +masculine +masculine +masculine +78673 masculine +masculine +masculine +masculine +78678 feminine +feminine +78681 masculine +78684 masculine +78686 neuter +neuter +78689 masculine +masculine +78693 feminine +feminine +feminine +78698 feminine +masculine +masculine +78702 masculine +masculine +masculine +78706 masculine +78708 neuter +neuter +78713 feminine +feminine +78716 masculine +masculine +78720 feminine +masculine +masculine +feminine +feminine +78726 feminine +feminine +78729 masculine +78731 masculine +masculine +78734 masculine +78737 masculine +78739 masculine +masculine +masculine +masculine +78744 masculine +masculine +78747 masculine +masculine +masculine +78751 masculine +masculine +masculine +78755 masculine +78759 feminine +feminine +78763 masculine +78766 neuter +78768 masculine +78770 masculine +neuter +neuter +78775 masculine +masculine +78779 masculine +masculine +78782 neuter +neuter +78785 masculine +masculine +78789 masculine +78791 feminine +feminine +78797 masculine +masculine +78801 masculine +78803 masculine +masculine +78806 feminine +feminine +masculine +masculine +78812 neuter +neuter +masculine +masculine +masculine +78818 masculine +78820 masculine +78823 feminine +feminine +masculine +masculine +78828 masculine +masculine +78834 neuter +78838 masculine +78846 masculine +masculine +masculine +78850 feminine +feminine +feminine +masculine +78855 masculine +78857 feminine +feminine +masculine +masculine +masculine +masculine +masculine +78866 masculine +masculine +78871 masculine +masculine +masculine +feminine +feminine +78877 feminine +feminine +masculine +78887 masculine +masculine +78890 masculine +masculine +masculine +masculine +masculine +78896 masculine +masculine +78899 feminine +feminine +masculine +masculine +78904 feminine +feminine +feminine +78908 feminine +feminine +feminine +masculine +masculine +masculine +78915 masculine +78918 feminine +78922 feminine +78924 masculine +78926 feminine +feminine +feminine +78930 masculine +78933 feminine +78938 masculine +masculine +masculine +78942 feminine +feminine +feminine +78946 masculine +78948 feminine +feminine +feminine +78952 masculine +masculine +masculine +masculine +78957 feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +78966 masculine +78970 masculine +feminine +feminine +feminine +78976 masculine +masculine +78979 masculine +78981 feminine +78983 masculine +78985 feminine +78988 masculine +masculine +78993 neuter +neuter +neuter +78997 masculine +78999 feminine +masculine +79002 masculine +masculine +79005 feminine +79007 masculine +79009 masculine +79011 masculine +masculine +79014 feminine +79020 masculine +79022 masculine +feminine +feminine +79026 feminine +79029 masculine +masculine +79032 neuter +neuter +79039 neuter +neuter +79043 feminine +feminine +79046 masculine +masculine +neuter +79054 masculine +79056 masculine +79063 masculine +masculine +masculine +masculine +79071 masculine +79074 masculine +neuter +neuter +79081 feminine +feminine +masculine +masculine +79088 neuter +79090 masculine +79092 masculine +masculine +79097 masculine +79100 feminine +79105 neuter +neuter +79115 feminine +feminine +neuter +neuter +neuter +masculine +79122 masculine +masculine +79127 feminine +79129 masculine +masculine +masculine +masculine +79134 masculine +masculine +masculine +79138 masculine +masculine +masculine +masculine +masculine +79146 masculine +79149 masculine +masculine +79153 feminine +feminine +feminine +79158 masculine +79160 masculine +79162 masculine +masculine +masculine +masculine +79170 neuter +neuter +masculine +79175 masculine +masculine +79179 feminine +79181 neuter +neuter +masculine +79186 masculine +79188 masculine +masculine +masculine +neuter +79197 neuter +79199 masculine +79203 feminine +feminine +79206 masculine +neuter +neuter +masculine +79213 masculine +79215 feminine +79217 masculine +79220 neuter +neuter +79225 feminine +79228 masculine +masculine +79235 neuter +79237 feminine +79242 feminine +79247 masculine +masculine +79253 masculine +79255 masculine +79257 feminine +feminine +masculine +masculine +79266 neuter +neuter +masculine +masculine +masculine +79273 masculine +79275 masculine +79277 masculine +79279 masculine +neuter +neuter +masculine +masculine +masculine +79293 neuter +feminine +79299 masculine +79301 masculine +masculine +masculine +79306 feminine +feminine +masculine +masculine +79312 feminine +feminine +masculine +masculine +79319 masculine +79322 masculine +masculine +79325 masculine +neuter +neuter +79329 masculine +masculine +79332 masculine +masculine +79335 masculine +masculine +79338 masculine +79340 feminine +feminine +masculine +feminine +79345 masculine +79349 feminine +feminine +79353 masculine +79357 masculine +masculine +masculine +79362 masculine +masculine +masculine +masculine +masculine +79368 masculine +masculine +79371 masculine +79376 masculine +masculine +masculine +masculine +masculine +masculine +79383 masculine +79385 neuter +79388 masculine +masculine +masculine +masculine +79394 masculine +masculine +masculine +79398 masculine +79402 masculine +79405 masculine +79410 masculine +masculine +79413 neuter +neuter +feminine +feminine +feminine +79420 masculine +masculine +79431 masculine +masculine +masculine +masculine +79438 masculine +masculine +79441 masculine +79443 masculine +79447 masculine +79449 masculine +79451 feminine +79453 masculine +79455 neuter +neuter +neuter +neuter +79461 masculine +masculine +79464 masculine +79468 masculine +masculine +79471 neuter +neuter +neuter +79475 masculine +masculine +masculine +79480 masculine +79482 masculine +masculine +masculine +neuter +neuter +79488 masculine +masculine +79491 feminine +feminine +feminine +79495 masculine +masculine +79498 feminine +feminine +feminine +79502 masculine +masculine +masculine +79506 masculine +masculine +masculine +79510 masculine +neuter +neuter +79514 masculine +masculine +79517 masculine +79522 masculine +masculine +masculine +masculine +79529 masculine +79532 masculine +masculine +79535 masculine +79540 masculine +masculine +79543 masculine +masculine +masculine +masculine +79550 masculine +masculine +79554 masculine +79557 masculine +79561 masculine +masculine +masculine +79569 masculine +masculine +masculine +79573 neuter +neuter +neuter +79577 masculine +79579 neuter +neuter +masculine +79584 neuter +neuter +masculine +masculine +79589 masculine +79591 masculine +masculine +79594 feminine +79596 feminine +masculine +79600 neuter +masculine +masculine +79604 feminine +masculine +masculine +79608 masculine +79611 neuter +neuter +79614 masculine +79618 feminine +79620 masculine +79622 neuter +79624 masculine +79626 neuter +neuter +79630 feminine +feminine +79633 masculine +masculine +masculine +masculine +neuter +neuter +masculine +masculine +79642 masculine +neuter +neuter +79647 masculine +masculine +masculine +79652 neuter +79654 masculine +79656 masculine +79658 feminine +feminine +feminine +masculine +masculine +masculine +79666 masculine +masculine +79669 masculine +79671 neuter +neuter +neuter +79675 masculine +79677 neuter +masculine +79682 feminine +feminine +79685 feminine +feminine +feminine +masculine +masculine +masculine +masculine +79697 neuter +79701 feminine +79707 feminine +79710 feminine +feminine +masculine +feminine +masculine +masculine +79717 masculine +masculine +79724 masculine +79726 masculine +masculine +79730 masculine +79732 masculine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +79742 masculine +masculine +79745 neuter +79747 masculine +neuter +79751 masculine +79753 masculine +masculine +79759 masculine +masculine +79762 neuter +neuter +79766 masculine +79770 masculine +79772 neuter +neuter +79775 masculine +79779 neuter +79781 masculine +masculine +79784 neuter +79786 masculine +79788 masculine +masculine +feminine +feminine +masculine +masculine +feminine +feminine +masculine +79798 masculine +79800 feminine +feminine +79803 masculine +masculine +79806 masculine +masculine +masculine +masculine +masculine +masculine +79813 masculine +masculine +masculine +79818 masculine +masculine +79823 neuter +masculine +79827 masculine +masculine +masculine +79832 masculine +masculine +79836 masculine +masculine +masculine +masculine +79842 masculine +masculine +masculine +79848 masculine +neuter +79853 masculine +masculine +masculine +feminine +feminine +masculine +79860 masculine +79862 feminine +79864 neuter +79866 neuter +79873 masculine +masculine +79876 neuter +79881 masculine +masculine +79885 neuter +neuter +79888 masculine +neuter +79893 masculine +79898 masculine +79901 masculine +79903 masculine +masculine +masculine +79907 masculine +79909 masculine +79915 masculine +79917 masculine +79921 masculine +masculine +feminine +79926 feminine +79929 masculine +masculine +79932 masculine +masculine +masculine +masculine +79938 neuter +79943 masculine +masculine +79946 masculine +masculine +79950 masculine +masculine +79953 masculine +79956 masculine +masculine +79961 feminine +79963 feminine +feminine +feminine +feminine +79968 neuter +79971 masculine +masculine +masculine +79976 masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +79992 masculine +masculine +masculine +masculine +79997 masculine +masculine +80000 masculine +80003 masculine +masculine +80006 neuter +neuter +80009 masculine +80011 masculine +80014 masculine +80016 feminine +feminine +80019 feminine +80021 masculine +80024 neuter +neuter +masculine +80028 masculine +masculine +80031 neuter +masculine +masculine +masculine +80036 neuter +neuter +masculine +80040 neuter +neuter +masculine +80044 feminine +80046 feminine +80048 masculine +masculine +80055 masculine +80057 masculine +masculine +80061 masculine +80066 masculine +masculine +80069 neuter +neuter +masculine +masculine +masculine +masculine +80077 feminine +80079 feminine +feminine +80082 feminine +80084 masculine +masculine +masculine +80089 masculine +80092 feminine +feminine +masculine +masculine +80097 feminine +feminine +80100 masculine +feminine +feminine +masculine +masculine +80107 masculine +masculine +masculine +80111 masculine +80113 masculine +80115 feminine +feminine +80119 masculine +80122 feminine +80128 masculine +masculine +80132 masculine +80134 neuter +neuter +masculine +masculine +80139 masculine +80143 feminine +80145 masculine +masculine +masculine +80149 masculine +masculine +80152 masculine +masculine +masculine +masculine +80157 masculine +masculine +80160 masculine +masculine +80163 masculine +masculine +80167 masculine +masculine +masculine +feminine +feminine +masculine +80176 neuter +neuter +neuter +neuter +neuter +80182 feminine +feminine +feminine +80191 feminine +feminine +masculine +masculine +80199 neuter +80207 feminine +feminine +feminine +80211 masculine +masculine +masculine +masculine +masculine +80217 masculine +feminine +masculine +masculine +masculine +masculine +80224 feminine +feminine +80227 masculine +feminine +masculine +masculine +feminine +masculine +80234 neuter +neuter +80238 masculine +80242 masculine +80244 masculine +masculine +80247 neuter +neuter +80250 neuter +80253 masculine +80257 masculine +masculine +masculine +neuter +80265 masculine +masculine +masculine +masculine +masculine +masculine +80273 neuter +neuter +masculine +80277 masculine +neuter +neuter +neuter +masculine +80283 neuter +80285 masculine +80287 masculine +80292 feminine +80295 feminine +80298 feminine +80300 masculine +80302 feminine +80307 masculine +masculine +80310 feminine +masculine +masculine +80315 neuter +neuter +80319 feminine +feminine +80323 feminine +feminine +80330 neuter +80336 neuter +80340 feminine +feminine +feminine +80344 feminine +80347 masculine +masculine +masculine +masculine +neuter +neuter +80354 masculine +masculine +80357 neuter +80359 masculine +masculine +neuter +masculine +feminine +80365 masculine +masculine +feminine +80369 masculine +masculine +80374 feminine +80376 masculine +80378 masculine +80380 neuter +80382 masculine +80384 feminine +feminine +80388 masculine +masculine +80391 masculine +masculine +80394 neuter +80397 neuter +neuter +feminine +masculine +80402 neuter +neuter +80407 feminine +80409 feminine +80412 masculine +80414 neuter +neuter +80418 masculine +80421 masculine +80423 masculine +80425 feminine +feminine +masculine +masculine +80436 neuter +80441 masculine +masculine +80444 neuter +neuter +80447 masculine +80450 neuter +neuter +80454 feminine +feminine +feminine +feminine +80460 masculine +masculine +80464 feminine +masculine +80473 masculine +masculine +masculine +neuter +masculine +neuter +80480 feminine +feminine +masculine +80484 masculine +masculine +masculine +80489 neuter +80492 masculine +masculine +masculine +80496 masculine +80499 feminine +80502 masculine +masculine +masculine +masculine +80507 masculine +80510 feminine +feminine +masculine +masculine +masculine +80516 feminine +feminine +feminine +feminine +feminine +feminine +80523 masculine +masculine +80527 masculine +80529 feminine +80531 masculine +masculine +feminine +80535 masculine +masculine +80538 feminine +80540 feminine +80542 neuter +neuter +neuter +neuter +masculine +masculine +masculine +masculine +80551 neuter +80553 neuter +80556 masculine +masculine +80562 masculine +80564 neuter +80566 masculine +80568 masculine +masculine +80572 neuter +masculine +masculine +80576 masculine +80578 feminine +feminine +80581 masculine +masculine +masculine +masculine +masculine +80587 masculine +feminine +80590 masculine +masculine +masculine +masculine +80595 masculine +masculine +masculine +80599 masculine +masculine +feminine +feminine +80604 feminine +feminine +80608 neuter +80610 feminine +80613 masculine +masculine +masculine +80617 masculine +masculine +masculine +masculine +80622 masculine +masculine +80626 masculine +masculine +feminine +80630 masculine +80633 masculine +80635 feminine +feminine +masculine +80639 masculine +80641 feminine +feminine +80645 masculine +masculine +80649 masculine +masculine +80652 feminine +80654 masculine +80657 neuter +80661 masculine +80664 masculine +masculine +80667 masculine +80669 neuter +neuter +80673 masculine +masculine +80676 masculine +80678 masculine +feminine +80681 feminine +80685 masculine +80687 feminine +feminine +80690 masculine +80692 neuter +neuter +80695 masculine +masculine +80699 masculine +masculine +80702 masculine +masculine +80705 neuter +masculine +masculine +neuter +80710 neuter +neuter +masculine +neuter +80717 masculine +masculine +masculine +80723 masculine +masculine +masculine +masculine +80729 neuter +neuter +80733 masculine +neuter +80737 masculine +masculine +masculine +masculine +masculine +feminine +80744 masculine +masculine +masculine +80750 neuter +masculine +80754 neuter +80760 masculine +masculine +80763 neuter +neuter +masculine +masculine +80772 masculine +neuter +80778 neuter +80785 neuter +masculine +neuter +80791 neuter +80795 neuter +80797 neuter +masculine +80801 masculine +80804 masculine +80806 masculine +80809 masculine +masculine +masculine +80813 neuter +neuter +80816 masculine +80819 masculine +80822 feminine +feminine +feminine +masculine +masculine +masculine +80829 feminine +80832 feminine +masculine +masculine +masculine +80838 feminine +feminine +80842 masculine +masculine +masculine +masculine +80847 neuter +80849 masculine +masculine +masculine +masculine +masculine +80855 masculine +80857 masculine +masculine +80860 masculine +masculine +80864 neuter +80866 masculine +masculine +80869 masculine +masculine +masculine +masculine +masculine +80875 masculine +feminine +80878 masculine +80883 neuter +masculine +80886 masculine +masculine +80890 masculine +masculine +80893 neuter +80895 masculine +masculine +80898 masculine +feminine +80902 neuter +neuter +80905 masculine +80907 feminine +feminine +masculine +feminine +80912 masculine +80914 neuter +neuter +80918 masculine +masculine +80921 masculine +masculine +masculine +masculine +80926 feminine +feminine +neuter +80931 neuter +80933 neuter +neuter +80936 feminine +feminine +feminine +80941 masculine +80944 masculine +masculine +masculine +masculine +80950 masculine +masculine +80954 masculine +feminine +80957 neuter +feminine +80964 neuter +80968 neuter +80970 masculine +masculine +masculine +80974 masculine +80976 feminine +masculine +masculine +feminine +80982 masculine +80984 masculine +80986 masculine +80988 masculine +80990 masculine +80992 masculine +masculine +80996 masculine +masculine +masculine +81003 masculine +81005 feminine +81007 masculine +masculine +masculine +81011 feminine +feminine +81014 feminine +feminine +81017 masculine +81019 neuter +neuter +81023 masculine +81025 masculine +masculine +81028 feminine +feminine +feminine +81032 masculine +masculine +masculine +81036 masculine +masculine +81040 masculine +masculine +masculine +masculine +81045 masculine +masculine +masculine +81049 masculine +81051 masculine +81053 masculine +neuter +neuter +neuter +masculine +masculine +81063 neuter +81066 masculine +81069 masculine +81075 neuter +neuter +masculine +masculine +81081 masculine +masculine +masculine +masculine +masculine +81089 masculine +neuter +neuter +81093 masculine +masculine +81099 masculine +81106 masculine +masculine +81109 feminine +feminine +feminine +81113 neuter +81116 neuter +81119 masculine +masculine +81123 feminine +81125 masculine +feminine +81129 masculine +81131 masculine +masculine +81137 masculine +81140 masculine +masculine +masculine +feminine +feminine +81146 masculine +masculine +81149 neuter +neuter +81153 masculine +81155 masculine +masculine +81161 masculine +81163 masculine +81165 masculine +neuter +neuter +81169 masculine +81171 neuter +81173 neuter +81181 feminine +feminine +81185 feminine +feminine +81188 feminine +feminine +81191 neuter +neuter +81196 neuter +81198 masculine +masculine +masculine +81208 feminine +feminine +feminine +feminine +feminine +feminine +81215 masculine +81219 feminine +feminine +81222 masculine +masculine +81225 feminine +81227 masculine +masculine +feminine +81231 masculine +81233 feminine +81235 neuter +neuter +81239 feminine +feminine +81242 feminine +neuter +81246 feminine +feminine +81250 masculine +masculine +neuter +masculine +81258 masculine +masculine +masculine +81266 masculine +81269 neuter +neuter +masculine +masculine +masculine +neuter +neuter +81277 neuter +81281 neuter +81284 masculine +masculine +masculine +81289 feminine +81291 feminine +81293 masculine +masculine +feminine +masculine +81298 masculine +masculine +81301 feminine +81304 feminine +feminine +feminine +81308 masculine +masculine +81314 masculine +masculine +81320 feminine +81322 feminine +81324 neuter +masculine +81327 feminine +feminine +81330 feminine +81332 feminine +feminine +masculine +masculine +feminine +feminine +81339 feminine +feminine +81344 feminine +feminine +masculine +masculine +neuter +neuter +81352 masculine +81355 masculine +masculine +81358 masculine +81360 masculine +81362 feminine +feminine +81365 feminine +feminine +81369 feminine +feminine +feminine +masculine +masculine +neuter +81377 neuter +81380 neuter +81385 masculine +81387 masculine +81389 masculine +masculine +81394 masculine +masculine +81403 masculine +masculine +81408 neuter +81413 masculine +81415 masculine +81417 neuter +81421 neuter +81424 masculine +81427 masculine +masculine +81431 neuter +neuter +81434 masculine +81439 masculine +masculine +neuter +81444 neuter +81446 neuter +81448 feminine +feminine +masculine +masculine +81453 masculine +masculine +neuter +81457 masculine +feminine +feminine +81461 masculine +81463 masculine +masculine +feminine +feminine +81470 masculine +masculine +81474 masculine +feminine +feminine +feminine +81480 masculine +81482 feminine +neuter +81485 neuter +81487 feminine +feminine +feminine +feminine +feminine +81493 neuter +neuter +81500 masculine +masculine +neuter +feminine +feminine +neuter +masculine +81508 neuter +masculine +81511 masculine +81513 neuter +neuter +81518 masculine +feminine +feminine +81522 masculine +masculine +81525 feminine +feminine +feminine +81529 masculine +81531 masculine +81533 masculine +neuter +masculine +81537 neuter +neuter +81541 masculine +masculine +81544 masculine +81547 masculine +masculine +masculine +81551 masculine +81553 feminine +masculine +81556 neuter +81559 masculine +masculine +81562 neuter +neuter +81565 neuter +masculine +masculine +masculine +masculine +feminine +feminine +feminine +81575 masculine +neuter +neuter +neuter +81581 feminine +81584 masculine +masculine +81587 masculine +masculine +81592 feminine +81594 feminine +neuter +81600 neuter +masculine +masculine +81604 masculine +81606 masculine +81610 masculine +neuter +81614 neuter +81618 neuter +81620 feminine +neuter +masculine +masculine +81625 masculine +masculine +81631 masculine +masculine +81634 masculine +masculine +81637 neuter +81640 masculine +81643 masculine +masculine +81647 masculine +masculine +81651 neuter +81654 masculine +81656 masculine +81660 masculine +masculine +masculine +81666 masculine +masculine +81672 neuter +neuter +neuter +81677 masculine +masculine +81680 masculine +masculine +81683 feminine +feminine +81686 masculine +masculine +masculine +81690 masculine +81693 masculine +masculine +81696 neuter +masculine +81699 masculine +neuter +81702 masculine +masculine +masculine +81706 masculine +masculine +masculine +81712 masculine +masculine +masculine +81718 masculine +81722 neuter +81726 feminine +feminine +81730 masculine +masculine +81733 masculine +masculine +masculine +masculine +neuter +masculine +feminine +feminine +81742 masculine +neuter +neuter +masculine +81748 masculine +81750 feminine +feminine +masculine +81754 masculine +81757 masculine +masculine +masculine +81761 feminine +feminine +81765 feminine +81767 masculine +masculine +81770 masculine +masculine +masculine +81775 masculine +masculine +masculine +feminine +81781 masculine +81783 feminine +feminine +81786 neuter +masculine +masculine +81790 masculine +81792 neuter +neuter +neuter +81796 feminine +feminine +81799 feminine +masculine +81803 neuter +feminine +feminine +masculine +masculine +81809 masculine +neuter +neuter +neuter +81814 feminine +feminine +81819 neuter +81822 feminine +feminine +masculine +81827 masculine +81829 feminine +feminine +81832 masculine +81834 masculine +masculine +81837 feminine +feminine +81840 feminine +81843 masculine +feminine +81847 masculine +masculine +masculine +masculine +masculine +masculine +81854 feminine +feminine +81858 masculine +masculine +masculine +81862 masculine +81864 masculine +masculine +masculine +81868 neuter +81870 feminine +feminine +81875 masculine +masculine +masculine +masculine +masculine +81883 feminine +81885 feminine +feminine +81888 neuter +neuter +neuter +81892 neuter +neuter +81896 feminine +feminine +81901 masculine +masculine +81904 masculine +masculine +masculine +masculine +81909 masculine +masculine +81914 neuter +81916 masculine +neuter +81919 masculine +masculine +masculine +masculine +81924 feminine +masculine +masculine +81928 feminine +81934 masculine +81936 masculine +masculine +feminine +feminine +masculine +81942 masculine +81945 masculine +81948 masculine +masculine +masculine +feminine +feminine +81954 masculine +81957 feminine +feminine +81962 neuter +81965 feminine +masculine +masculine +masculine +masculine +masculine +81972 neuter +neuter +neuter +81977 neuter +81979 masculine +masculine +masculine +81984 masculine +neuter +neuter +neuter +neuter +81991 masculine +81993 feminine +feminine +feminine +masculine +feminine +81999 masculine +neuter +neuter +82003 masculine +82006 feminine +feminine +82009 masculine +neuter +neuter +82016 masculine +82018 feminine +82020 feminine +82023 feminine +feminine +masculine +feminine +feminine +neuter +neuter +82033 masculine +82035 neuter +neuter +82038 feminine +feminine +82041 masculine +82043 masculine +masculine +neuter +82047 feminine +feminine +neuter +82053 feminine +feminine +feminine +82057 masculine +masculine +masculine +82061 neuter +masculine +82065 masculine +82068 masculine +82073 feminine +feminine +82077 feminine +feminine +feminine +82081 feminine +feminine +82084 neuter +82090 feminine +feminine +feminine +82097 neuter +neuter +82102 feminine +feminine +feminine +masculine +masculine +masculine +82109 masculine +82112 masculine +masculine +82116 masculine +masculine +82125 masculine +masculine +masculine +masculine +masculine +82134 masculine +82137 masculine +masculine +82143 masculine +masculine +82150 feminine +feminine +82156 feminine +feminine +82159 masculine +82162 masculine +masculine +82165 neuter +feminine +feminine +82169 masculine +masculine +82172 feminine +feminine +masculine +82176 masculine +82178 feminine +82181 neuter +masculine +82185 masculine +82187 feminine +82190 masculine +82194 masculine +masculine +82198 feminine +masculine +feminine +feminine +82203 feminine +82206 masculine +masculine +masculine +82211 neuter +neuter +82214 masculine +feminine +feminine +82218 feminine +feminine +feminine +82223 feminine +feminine +82226 masculine +82228 masculine +masculine +masculine +masculine +82233 masculine +masculine +82237 masculine +82240 neuter +neuter +82248 masculine +masculine +neuter +neuter +feminine +feminine +82256 feminine +82260 neuter +feminine +82265 masculine +masculine +masculine +82269 feminine +masculine +feminine +feminine +82274 masculine +masculine +82277 neuter +masculine +82283 feminine +82285 neuter +82287 feminine +feminine +feminine +82292 masculine +82294 feminine +82296 feminine +feminine +82300 masculine +neuter +82303 masculine +masculine +82306 masculine +masculine +82309 masculine +82311 masculine +82315 masculine +masculine +masculine +82319 masculine +82321 feminine +82324 feminine +feminine +feminine +82328 neuter +neuter +feminine +82334 masculine +feminine +82337 neuter +neuter +masculine +masculine +masculine +82343 feminine +feminine +82347 feminine +82349 feminine +feminine +82355 masculine +masculine +masculine +masculine +82360 masculine +82362 neuter +neuter +82368 feminine +feminine +masculine +82373 feminine +feminine +82376 masculine +feminine +feminine +neuter +neuter +82382 masculine +masculine +masculine +feminine +feminine +82389 masculine +masculine +82392 masculine +82394 masculine +masculine +82397 feminine +feminine +82401 feminine +feminine +feminine +82405 feminine +82407 feminine +feminine +82411 feminine +feminine +82414 masculine +masculine +feminine +82419 masculine +masculine +82423 masculine +masculine +82427 masculine +masculine +masculine +82431 masculine +masculine +82434 masculine +neuter +neuter +82439 masculine +masculine +82442 masculine +masculine +82445 feminine +feminine +82449 masculine +masculine +82452 masculine +82454 feminine +82456 masculine +82458 neuter +neuter +82461 neuter +neuter +82466 masculine +82469 feminine +feminine +82472 masculine +82476 feminine +feminine +feminine +82481 masculine +masculine +82484 feminine +82486 feminine +feminine +82490 masculine +feminine +82493 masculine +82496 masculine +masculine +masculine +masculine +82502 neuter +neuter +82505 masculine +masculine +masculine +neuter +neuter +neuter +82512 masculine +82514 feminine +feminine +feminine +82518 feminine +feminine +feminine +82522 feminine +feminine +masculine +82528 masculine +masculine +neuter +neuter +neuter +82534 feminine +feminine +masculine +82538 masculine +82541 masculine +82543 masculine +masculine +masculine +masculine +masculine +82549 feminine +feminine +82552 feminine +feminine +82558 masculine +masculine +neuter +neuter +82563 neuter +neuter +82566 neuter +neuter +82569 masculine +82571 masculine +82577 masculine +82580 neuter +masculine +masculine +82584 masculine +neuter +neuter +82588 masculine +neuter +masculine +82592 masculine +82594 masculine +82597 neuter +82599 masculine +masculine +masculine +82603 neuter +masculine +masculine +feminine +feminine +neuter +masculine +masculine +masculine +82613 feminine +feminine +82619 masculine +masculine +masculine +masculine +masculine +82625 neuter +masculine +82629 masculine +masculine +82632 masculine +masculine +masculine +masculine +feminine +feminine +masculine +82640 masculine +82642 neuter +neuter +82645 masculine +masculine +masculine +82649 feminine +feminine +masculine +feminine +82656 masculine +82658 feminine +feminine +82663 masculine +82665 neuter +82667 feminine +feminine +82671 masculine +masculine +82675 neuter +masculine +82678 feminine +feminine +neuter +neuter +masculine +82684 masculine +82686 feminine +82688 feminine +feminine +82691 masculine +82694 neuter +82697 feminine +feminine +masculine +masculine +masculine +82704 masculine +82706 masculine +masculine +82710 masculine +82712 feminine +82717 feminine +feminine +82721 masculine +masculine +masculine +neuter +82729 feminine +82732 masculine +neuter +82735 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +82745 neuter +82750 feminine +82752 masculine +masculine +82756 masculine +82758 masculine +masculine +masculine +masculine +82765 feminine +feminine +82768 masculine +masculine +masculine +masculine +masculine +masculine +82775 masculine +masculine +82779 masculine +masculine +masculine +82783 neuter +neuter +masculine +masculine +masculine +82789 neuter +neuter +neuter +neuter +masculine +82795 neuter +82798 feminine +feminine +masculine +masculine +masculine +masculine +82808 neuter +feminine +feminine +masculine +82816 masculine +masculine +masculine +82821 masculine +82824 neuter +neuter +82827 neuter +82829 masculine +82832 feminine +feminine +feminine +82842 feminine +feminine +masculine +masculine +feminine +feminine +feminine +82851 masculine +82853 masculine +82857 neuter +82862 feminine +feminine +82865 masculine +masculine +masculine +masculine +82872 neuter +82875 neuter +82881 neuter +82886 feminine +feminine +feminine +neuter +82896 masculine +masculine +feminine +82901 masculine +82903 feminine +feminine +masculine +masculine +82908 masculine +feminine +feminine +masculine +masculine +82914 masculine +masculine +82917 masculine +masculine +82921 masculine +masculine +masculine +82925 masculine +masculine +82930 feminine +82933 masculine +82935 neuter +neuter +82938 masculine +82941 masculine +masculine +82944 masculine +82946 masculine +masculine +masculine +neuter +neuter +82953 neuter +neuter +neuter +neuter +82959 masculine +masculine +masculine +82963 masculine +masculine +82966 masculine +82969 masculine +masculine +masculine +82974 feminine +82981 masculine +82989 feminine +feminine +masculine +masculine +masculine +82995 neuter +neuter +83000 masculine +masculine +masculine +83007 masculine +masculine +83010 neuter +neuter +83014 feminine +feminine +83021 masculine +83023 neuter +83027 neuter +neuter +83030 neuter +neuter +neuter +masculine +masculine +masculine +83040 feminine +feminine +83043 neuter +neuter +83047 masculine +masculine +masculine +83051 masculine +masculine +feminine +feminine +masculine +masculine +83058 masculine +neuter +83061 masculine +masculine +masculine +masculine +83066 feminine +feminine +83069 masculine +masculine +masculine +masculine +masculine +masculine +masculine +83077 neuter +masculine +neuter +83082 masculine +masculine +masculine +83086 feminine +feminine +83089 masculine +masculine +masculine +masculine +masculine +83095 neuter +masculine +83098 feminine +masculine +masculine +masculine +masculine +83104 feminine +83106 neuter +feminine +83109 feminine +masculine +masculine +masculine +masculine +masculine +83117 masculine +83119 feminine +83121 feminine +83123 feminine +feminine +83126 neuter +neuter +neuter +83130 neuter +neuter +masculine +83134 neuter +83138 masculine +masculine +masculine +masculine +masculine +masculine +83145 feminine +masculine +masculine +masculine +masculine +83151 feminine +83153 feminine +83155 masculine +masculine +83159 masculine +masculine +masculine +83163 neuter +83165 masculine +masculine +83169 masculine +masculine +83172 masculine +83175 feminine +feminine +83180 masculine +masculine +masculine +83184 masculine +83187 masculine +masculine +masculine +83192 neuter +neuter +83196 neuter +neuter +masculine +masculine +masculine +83203 feminine +83208 feminine +feminine +83211 masculine +83218 neuter +neuter +masculine +masculine +83231 neuter +neuter +neuter +83236 neuter +83240 neuter +83246 feminine +83248 masculine +feminine +83255 masculine +83269 masculine +83272 masculine +masculine +83281 neuter +neuter +neuter +83285 masculine +83287 masculine +83289 masculine +83291 masculine +masculine +83295 neuter +83298 neuter +83301 masculine +83303 feminine +83308 neuter +neuter +83311 feminine +masculine +83315 feminine +masculine +masculine +masculine +83320 masculine +neuter +83323 masculine +83325 feminine +masculine +83328 neuter +83331 feminine +83333 feminine +83337 masculine +masculine +83340 feminine +83344 feminine +masculine +83347 masculine +83349 feminine +feminine +83352 feminine +masculine +masculine +feminine +feminine +83358 feminine +masculine +83361 neuter +neuter +masculine +masculine +neuter +83368 masculine +83370 masculine +masculine +masculine +83375 neuter +neuter +masculine +feminine +83380 feminine +masculine +feminine +83384 feminine +83386 feminine +masculine +neuter +neuter +neuter +83393 neuter +83395 masculine +masculine +83398 masculine +masculine +masculine +83403 masculine +83410 masculine +masculine +masculine +83415 feminine +feminine +masculine +feminine +masculine +83421 masculine +83425 feminine +feminine +masculine +masculine +masculine +83431 neuter +feminine +masculine +masculine +83436 neuter +83438 neuter +83440 neuter +83443 masculine +masculine +masculine +83447 feminine +feminine +feminine +feminine +masculine +83453 feminine +neuter +83456 neuter +neuter +masculine +83460 masculine +masculine +83463 feminine +feminine +masculine +masculine +83468 neuter +neuter +83474 feminine +feminine +83477 masculine +masculine +masculine +83481 masculine +83483 masculine +masculine +83487 neuter +83489 masculine +masculine +masculine +83493 neuter +feminine +83497 feminine +feminine +masculine +83501 feminine +feminine +feminine +83505 feminine +83507 feminine +83511 masculine +masculine +masculine +feminine +feminine +feminine +feminine +feminine +83521 feminine +feminine +masculine +83525 masculine +masculine +83528 masculine +feminine +feminine +masculine +83533 feminine +feminine +feminine +83537 feminine +feminine +masculine +83541 masculine +masculine +83547 masculine +masculine +83551 feminine +83553 masculine +masculine +masculine +83557 masculine +masculine +83560 neuter +83562 neuter +masculine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +feminine +masculine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +neuter +masculine +masculine +masculine +83596 masculine +neuter +neuter +masculine +masculine +masculine +83604 neuter +neuter +83610 masculine +masculine +83613 masculine +83616 masculine +masculine +masculine +masculine +83622 neuter +83624 masculine +masculine +masculine +83629 neuter +neuter +83632 masculine +masculine +83637 neuter +neuter +masculine +masculine +83643 feminine +83645 masculine +neuter +neuter +masculine +83651 neuter +83653 masculine +masculine +masculine +masculine +neuter +neuter +masculine +83661 masculine +neuter +83666 neuter +neuter +masculine +masculine +83671 masculine +masculine +feminine +feminine +masculine +83677 feminine +feminine +83680 feminine +feminine +83683 masculine +83685 neuter +neuter +masculine +masculine +83690 feminine +83695 feminine +feminine +83699 feminine +feminine +83702 masculine +feminine +83705 feminine +feminine +83708 feminine +feminine +masculine +masculine +masculine +83714 masculine +83716 neuter +neuter +masculine +83720 masculine +83722 feminine +neuter +neuter +feminine +83727 feminine +83729 feminine +masculine +feminine +feminine +83734 masculine +83736 feminine +83738 masculine +feminine +feminine +83742 masculine +feminine +feminine +feminine +83747 masculine +feminine +83750 feminine +83752 feminine +feminine +masculine +masculine +masculine +neuter +neuter +83760 masculine +neuter +83763 masculine +83765 feminine +83767 feminine +83769 feminine +masculine +masculine +masculine +neuter +neuter +83776 masculine +neuter +83779 masculine +83783 feminine +83785 masculine +masculine +83788 masculine +83795 masculine +83797 masculine +83800 masculine +83804 masculine +masculine +masculine +masculine +83809 masculine +masculine +83812 masculine +masculine +masculine +83818 neuter +neuter +83821 masculine +neuter +feminine +neuter +masculine +masculine +83828 masculine +masculine +83831 masculine +masculine +83834 masculine +masculine +83837 neuter +neuter +masculine +masculine +neuter +83843 feminine +feminine +masculine +feminine +masculine +feminine +feminine +83852 masculine +masculine +masculine +masculine +83858 masculine +feminine +83861 feminine +83863 masculine +masculine +neuter +neuter +masculine +masculine +83870 neuter +neuter +83874 masculine +masculine +83879 masculine +83883 masculine +83887 masculine +83890 neuter +neuter +83894 neuter +neuter +masculine +83898 masculine +masculine +83902 masculine +83904 masculine +masculine +neuter +masculine +83909 neuter +masculine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +83920 feminine +feminine +83923 masculine +masculine +83926 masculine +masculine +masculine +masculine +83932 masculine +masculine +83937 masculine +masculine +83942 masculine +masculine +neuter +neuter +83947 masculine +83949 masculine +83952 feminine +feminine +masculine +masculine +masculine +masculine +83960 neuter +neuter +masculine +masculine +83968 neuter +neuter +83974 feminine +83977 masculine +83981 masculine +masculine +83984 feminine +feminine +83987 feminine +83991 feminine +feminine +neuter +neuter +masculine +masculine +83999 feminine +feminine +masculine +84003 feminine +84007 feminine +84009 feminine +feminine +masculine +masculine +feminine +84015 masculine +84017 neuter +84019 feminine +masculine +masculine +84024 masculine +84026 neuter +neuter +masculine +84031 feminine +84033 neuter +neuter +84036 feminine +feminine +84039 masculine +84041 neuter +neuter +masculine +84045 feminine +feminine +84048 neuter +84050 neuter +masculine +masculine +masculine +84056 masculine +84059 masculine +masculine +84062 neuter +neuter +neuter +masculine +masculine +84068 feminine +feminine +feminine +feminine +feminine +neuter +84075 masculine +masculine +84079 neuter +84082 neuter +neuter +masculine +masculine +84087 neuter +84090 masculine +84092 feminine +feminine +masculine +feminine +feminine +masculine +masculine +84104 masculine +masculine +masculine +84108 masculine +masculine +masculine +84117 masculine +masculine +84123 neuter +84128 feminine +feminine +84131 masculine +feminine +84134 neuter +84137 masculine +masculine +masculine +masculine +masculine +feminine +feminine +84145 masculine +84152 masculine +masculine +masculine +masculine +84158 feminine +feminine +masculine +masculine +84163 neuter +neuter +neuter +84168 feminine +feminine +masculine +neuter +84175 masculine +84184 masculine +84189 neuter +neuter +84193 neuter +neuter +masculine +neuter +neuter +neuter +84201 neuter +84208 masculine +84210 masculine +masculine +84213 feminine +84220 masculine +84222 masculine +84225 masculine +masculine +84229 masculine +masculine +masculine +masculine +masculine +84239 masculine +masculine +feminine +84245 masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +84255 masculine +feminine +84258 neuter +neuter +masculine +masculine +neuter +neuter +feminine +84266 feminine +84268 masculine +masculine +masculine +masculine +84273 neuter +neuter +84276 feminine +84278 feminine +feminine +masculine +84282 feminine +feminine +84288 masculine +masculine +84291 masculine +masculine +masculine +84297 neuter +masculine +masculine +84301 masculine +84303 masculine +masculine +84307 neuter +neuter +84311 masculine +84313 masculine +masculine +masculine +masculine +masculine +84320 neuter +masculine +84324 feminine +feminine +84327 masculine +84330 masculine +feminine +feminine +84336 masculine +feminine +masculine +84340 feminine +84342 masculine +masculine +84345 masculine +masculine +84348 feminine +masculine +84351 feminine +masculine +masculine +84355 masculine +masculine +masculine +84361 feminine +84363 masculine +84367 feminine +feminine +masculine +masculine +masculine +84373 feminine +masculine +feminine +84377 feminine +feminine +feminine +84381 masculine +masculine +masculine +84385 masculine +masculine +neuter +84389 feminine +84391 neuter +masculine +neuter +84395 feminine +feminine +feminine +masculine +84400 feminine +feminine +neuter +neuter +neuter +84406 feminine +feminine +masculine +masculine +84411 feminine +feminine +feminine +feminine +masculine +84417 masculine +84419 masculine +84421 neuter +84423 masculine +masculine +84426 masculine +masculine +84429 feminine +masculine +84433 feminine +feminine +84437 masculine +masculine +neuter +neuter +84444 masculine +feminine +84449 feminine +masculine +84452 neuter +masculine +84455 masculine +masculine +masculine +neuter +84461 neuter +84464 neuter +84466 masculine +masculine +masculine +masculine +84471 feminine +84473 feminine +84475 feminine +84477 feminine +feminine +84480 masculine +84483 feminine +feminine +84488 masculine +84492 neuter +84494 masculine +masculine +masculine +84499 feminine +84502 masculine +84504 neuter +84507 neuter +84511 masculine +84513 neuter +feminine +feminine +84519 masculine +masculine +masculine +84524 masculine +84526 feminine +84528 masculine +masculine +masculine +masculine +84535 feminine +84538 neuter +84540 masculine +84542 masculine +84544 masculine +84546 masculine +masculine +masculine +masculine +84551 feminine +feminine +masculine +84555 feminine +84558 masculine +84560 masculine +masculine +masculine +masculine +masculine +masculine +masculine +84568 feminine +84570 neuter +masculine +masculine +feminine +feminine +84577 masculine +feminine +feminine +84581 masculine +masculine +masculine +84587 masculine +feminine +84590 masculine +masculine +masculine +84594 feminine +feminine +84599 feminine +feminine +84604 masculine +masculine +feminine +feminine +84609 feminine +84613 masculine +84615 feminine +84618 feminine +84621 feminine +84624 feminine +84627 neuter +feminine +feminine +feminine +feminine +feminine +feminine +feminine +84636 feminine +feminine +84639 neuter +84641 masculine +masculine +masculine +masculine +masculine +84647 feminine +84649 neuter +84651 masculine +feminine +feminine +84655 masculine +feminine +masculine +84660 feminine +neuter +84664 masculine +masculine +neuter +neuter +feminine +84670 feminine +feminine +masculine +masculine +84675 masculine +84679 masculine +feminine +feminine +neuter +masculine +masculine +masculine +84687 masculine +masculine +84690 neuter +neuter +masculine +84695 feminine +feminine +84699 masculine +84701 masculine +masculine +84704 feminine +feminine +84708 feminine +feminine +84711 masculine +masculine +feminine +84719 masculine +84721 feminine +84723 neuter +84725 feminine +84728 feminine +84730 neuter +84732 feminine +feminine +feminine +neuter +neuter +neuter +84739 neuter +84741 masculine +masculine +neuter +84746 neuter +84748 feminine +masculine +masculine +84752 masculine +masculine +84756 masculine +84758 masculine +masculine +masculine +masculine +masculine +84764 masculine +neuter +84767 neuter +84769 neuter +84773 masculine +neuter +neuter +84778 masculine +84780 feminine +84782 feminine +84785 neuter +84787 masculine +masculine +neuter +neuter +84792 neuter +neuter +84796 neuter +neuter +84801 masculine +feminine +feminine +84805 neuter +masculine +neuter +neuter +masculine +84811 masculine +84813 feminine +feminine +feminine +feminine +feminine +84820 feminine +feminine +masculine +masculine +84826 feminine +feminine +84830 feminine +feminine +masculine +feminine +masculine +masculine +84837 masculine +84840 masculine +neuter +84848 masculine +84850 feminine +84855 masculine +masculine +84859 masculine +84864 masculine +84867 masculine +masculine +84870 masculine +masculine +84873 masculine +masculine +masculine +masculine +84878 masculine +84881 neuter +neuter +84887 feminine +feminine +84891 masculine +84893 feminine +feminine +84897 masculine +masculine +84900 masculine +masculine +84903 masculine +masculine +84906 masculine +84908 feminine +feminine +84911 feminine +feminine +84914 feminine +feminine +feminine +84918 feminine +84923 feminine +feminine +feminine +masculine +masculine +84930 neuter +84935 feminine +feminine +masculine +84939 feminine +feminine +feminine +84944 feminine +feminine +feminine +84948 feminine +feminine +feminine +84952 feminine +feminine +84957 feminine +feminine +masculine +masculine +84963 feminine +feminine +84967 neuter +neuter +neuter +neuter +84974 masculine +masculine +84977 masculine +84980 masculine +84982 masculine +84987 masculine +masculine +84992 masculine +masculine +84995 masculine +85001 feminine +masculine +feminine +85006 masculine +masculine +85010 masculine +masculine +85013 masculine +85018 neuter +85020 masculine +85023 neuter +neuter +masculine +85028 masculine +85030 feminine +feminine +85034 masculine +masculine +85037 masculine +masculine +85040 masculine +masculine +masculine +masculine +masculine +neuter +85047 masculine +85050 feminine +feminine +masculine +85055 neuter +85058 masculine +85060 masculine +masculine +85063 masculine +masculine +85066 masculine +masculine +85069 masculine +85071 feminine +feminine +85075 neuter +85078 masculine +masculine +feminine +feminine +85083 masculine +masculine +85088 feminine +feminine +masculine +masculine +85095 masculine +masculine +masculine +masculine +85101 neuter +masculine +85106 masculine +feminine +85110 masculine +85112 feminine +85116 masculine +masculine +85120 masculine +masculine +85123 masculine +85125 masculine +85128 masculine +85130 masculine +85132 neuter +neuter +feminine +feminine +masculine +masculine +85139 masculine +masculine +masculine +85145 neuter +neuter +85149 neuter +neuter +85153 neuter +masculine +masculine +neuter +masculine +masculine +85160 neuter +85162 feminine +feminine +masculine +masculine +85167 feminine +feminine +85170 feminine +feminine +masculine +masculine +masculine +masculine +masculine +85178 masculine +masculine +85185 masculine +masculine +neuter +neuter +85191 neuter +neuter +85194 masculine +85196 neuter +85198 neuter +neuter +85201 neuter +neuter +85204 neuter +85207 neuter +masculine +masculine +neuter +masculine +masculine +85215 masculine +masculine +neuter +85219 masculine +feminine +feminine +feminine +feminine +85225 feminine +feminine +feminine +feminine +masculine +85231 feminine +85234 masculine +masculine +masculine +masculine +85242 neuter +neuter +85245 masculine +masculine +85248 neuter +85252 neuter +neuter +85255 masculine +masculine +85258 feminine +feminine +85263 feminine +feminine +masculine +masculine +masculine +masculine +85270 masculine +masculine +85275 feminine +feminine +masculine +masculine +masculine +85281 masculine +masculine +85284 masculine +85288 neuter +neuter +85293 feminine +feminine +85296 feminine +feminine +85301 feminine +feminine +85304 masculine +masculine +85308 feminine +feminine +85312 feminine +85314 feminine +feminine +85317 masculine +masculine +masculine +masculine +85323 neuter +85326 feminine +feminine +85329 feminine +feminine +85334 masculine +85336 feminine +feminine +85342 feminine +85346 masculine +85349 masculine +masculine +85352 masculine +masculine +masculine +85358 masculine +85360 neuter +neuter +85363 masculine +masculine +85368 masculine +85370 masculine +85372 feminine +feminine +masculine +masculine +85380 feminine +feminine +85385 masculine +85387 neuter +neuter +masculine +masculine +masculine +85394 feminine +feminine +85397 neuter +masculine +85400 masculine +masculine +85403 masculine +85407 neuter +neuter +feminine +feminine +neuter +85415 feminine +feminine +85418 masculine +masculine +85422 feminine +feminine +85428 masculine +85433 masculine +masculine +85436 masculine +masculine +85439 masculine +85442 masculine +masculine +85447 neuter +85449 feminine +feminine +85454 neuter +85457 masculine +masculine +85463 masculine +85466 masculine +feminine +feminine +85470 masculine +masculine +masculine +85474 masculine +masculine +85479 feminine +feminine +85482 neuter +neuter +85485 neuter +85487 neuter +85489 feminine +feminine +neuter +85494 neuter +neuter +85497 neuter +feminine +feminine +feminine +85503 masculine +masculine +masculine +85508 masculine +masculine +85511 neuter +neuter +85514 neuter +feminine +masculine +masculine +85519 feminine +85527 masculine +85530 feminine +85532 neuter +85538 masculine +85541 feminine +85547 neuter +85549 masculine +masculine +85552 feminine +masculine +85555 neuter +85558 feminine +85560 masculine +85562 feminine +85564 feminine +85566 feminine +masculine +masculine +85571 masculine +feminine +feminine +85577 feminine +85579 masculine +85581 masculine +feminine +85584 masculine +85586 feminine +feminine +85589 feminine +feminine +neuter +85594 feminine +feminine +feminine +feminine +85602 neuter +neuter +85605 neuter +feminine +feminine +85609 feminine +feminine +85612 feminine +feminine +85617 neuter +neuter +85620 neuter +feminine +feminine +85624 masculine +85627 masculine +feminine +feminine +85631 masculine +85633 feminine +feminine +85636 masculine +masculine +85641 neuter +85645 neuter +neuter +masculine +masculine +85651 masculine +85653 feminine +feminine +85656 masculine +masculine +masculine +85660 masculine +masculine +85664 masculine +85666 neuter +neuter +feminine +feminine +85671 neuter +neuter +feminine +feminine +masculine +85677 neuter +neuter +masculine +masculine +feminine +feminine +85684 masculine +masculine +masculine +masculine +85690 masculine +85693 masculine +masculine +85697 masculine +masculine +85700 masculine +masculine +85703 masculine +masculine +85707 feminine +feminine +feminine +masculine +masculine +masculine +85714 masculine +85718 masculine +masculine +85722 masculine +masculine +masculine +masculine +85728 masculine +masculine +masculine +feminine +85735 masculine +masculine +85740 masculine +masculine +feminine +85745 masculine +masculine +neuter +85750 feminine +feminine +feminine +masculine +masculine +85756 masculine +85761 masculine +masculine +85764 neuter +neuter +masculine +masculine +85769 neuter +85772 masculine +masculine +85775 masculine +masculine +85779 masculine +masculine +85785 feminine +feminine +neuter +neuter +feminine +feminine +neuter +85793 masculine +masculine +85797 neuter +neuter +85801 neuter +85803 masculine +masculine +85809 masculine +masculine +masculine +85813 masculine +85819 feminine +neuter +85823 feminine +neuter +85826 neuter +85828 masculine +masculine +feminine +85834 feminine +feminine +85841 masculine +85844 feminine +feminine +85850 masculine +masculine +85856 feminine +feminine +feminine +feminine +85861 feminine +feminine +85866 feminine +feminine +85870 masculine +feminine +feminine +85877 masculine +85880 feminine +feminine +feminine +feminine +feminine +85892 feminine +feminine +feminine +85896 feminine +feminine +85899 masculine +85901 feminine +feminine +feminine +feminine +85906 feminine +feminine +85912 feminine +85916 masculine +masculine +masculine +85920 feminine +feminine +feminine +85924 feminine +85926 feminine +85928 neuter +neuter +85932 masculine +85936 feminine +feminine +85940 feminine +85942 neuter +neuter +85945 feminine +masculine +85950 feminine +feminine +feminine +feminine +85955 feminine +feminine +85960 masculine +masculine +masculine +85966 masculine +85968 masculine +85970 feminine +feminine +85973 neuter +85979 neuter +85981 neuter +85984 neuter +85986 neuter +85990 neuter +85993 neuter +85996 masculine +masculine +85999 masculine +86005 neuter +86007 feminine +feminine +86011 feminine +86019 neuter +86022 feminine +feminine +86025 neuter +86027 neuter +86032 neuter +86034 neuter +neuter +86039 neuter +86041 neuter +86044 neuter +86047 neuter +neuter +86052 neuter +86055 neuter +86061 neuter +86063 feminine +feminine +86067 feminine +86070 masculine +masculine +86073 masculine +masculine +86076 neuter +neuter +86080 neuter +neuter +86085 masculine +masculine +masculine +masculine +86090 masculine +86092 masculine +86095 masculine +masculine +86098 neuter +neuter +86101 masculine +masculine +masculine +masculine +masculine +86108 masculine +86111 masculine +masculine +feminine +feminine +masculine +masculine +86118 neuter +neuter +86121 masculine +masculine +86124 masculine +86128 neuter +neuter +masculine +masculine +masculine +feminine +masculine +masculine +86137 masculine +masculine +masculine +masculine +86145 masculine +86147 masculine +masculine +86150 masculine +masculine +86153 feminine +feminine +masculine +feminine +86158 neuter +neuter +86161 masculine +86163 masculine +masculine +86166 masculine +masculine +neuter +neuter +feminine +feminine +86173 masculine +masculine +86178 masculine +masculine +feminine +feminine +86183 masculine +masculine +86186 neuter +neuter +masculine +masculine +86191 neuter +86194 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +86203 neuter +feminine +feminine +86208 feminine +86210 feminine +feminine +86213 feminine +feminine +86216 neuter +neuter +masculine +masculine +86223 masculine +masculine +86227 feminine +86230 neuter +86232 masculine +86234 feminine +masculine +neuter +feminine +feminine +86241 masculine +86243 neuter +neuter +neuter +neuter +86248 neuter +neuter +feminine +feminine +masculine +86254 neuter +neuter +neuter +neuter +feminine +86260 feminine +86262 neuter +neuter +feminine +feminine +feminine +86268 masculine +86270 masculine +masculine +masculine +masculine +86280 masculine +86282 feminine +masculine +masculine +86293 feminine +86296 neuter +86298 neuter +masculine +86305 masculine +neuter +masculine +86310 masculine +86313 masculine +86316 masculine +86320 neuter +neuter +neuter +86324 feminine +86326 neuter +neuter +feminine +86330 feminine +86333 neuter +neuter +masculine +masculine +masculine +masculine +86340 masculine +86344 masculine +masculine +86347 masculine +masculine +masculine +86352 neuter +neuter +neuter +86357 neuter +neuter +86361 masculine +neuter +86365 masculine +masculine +86369 feminine +feminine +masculine +86373 feminine +86378 feminine +86384 neuter +feminine +feminine +neuter +neuter +86392 masculine +neuter +masculine +86396 masculine +masculine +masculine +86403 neuter +feminine +86407 masculine +86410 neuter +feminine +86413 neuter +86415 masculine +masculine +masculine +neuter +neuter +neuter +86422 neuter +neuter +86427 neuter +masculine +86431 neuter +86433 masculine +86435 masculine +masculine +86438 masculine +masculine +86449 neuter +neuter +neuter +masculine +86454 masculine +86456 feminine +feminine +86461 feminine +86463 feminine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +86475 feminine +feminine +feminine +feminine +86481 feminine +86484 masculine +masculine +86487 feminine +86490 feminine +feminine +feminine +86495 feminine +feminine +feminine +feminine +86500 feminine +feminine +feminine +feminine +neuter +neuter +masculine +masculine +86511 feminine +feminine +feminine +86518 masculine +86522 neuter +86525 masculine +feminine +feminine +neuter +neuter +masculine +86533 masculine +86535 masculine +86537 masculine +feminine +feminine +feminine +neuter +neuter +86545 feminine +feminine +86549 feminine +feminine +86553 feminine +86555 neuter +86557 feminine +neuter +86562 neuter +86567 feminine +86572 neuter +neuter +86575 feminine +feminine +86579 neuter +neuter +86587 neuter +neuter +neuter +86591 masculine +masculine +86594 masculine +masculine +feminine +feminine +86599 neuter +neuter +neuter +neuter +neuter +86606 masculine +86609 masculine +86613 masculine +masculine +masculine +masculine +neuter +86620 neuter +masculine +86623 feminine +masculine +masculine +86627 masculine +86631 masculine +feminine +feminine +masculine +masculine +masculine +86638 neuter +86640 masculine +masculine +86643 masculine +masculine +86646 masculine +86648 masculine +86652 masculine +86654 masculine +86658 masculine +86660 masculine +86664 neuter +86667 neuter +86669 masculine +masculine +86673 masculine +86677 masculine +masculine +masculine +masculine +86686 masculine +86688 masculine +86693 masculine +neuter +neuter +86698 masculine +86701 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +86715 masculine +masculine +86719 feminine +masculine +masculine +masculine +86727 masculine +86731 feminine +feminine +masculine +masculine +feminine +86737 feminine +86739 masculine +86741 masculine +86743 feminine +86745 masculine +86747 feminine +86754 feminine +feminine +feminine +86759 neuter +feminine +86763 neuter +neuter +86767 masculine +masculine +86774 masculine +86776 feminine +86778 masculine +86780 feminine +86782 neuter +86784 neuter +86786 feminine +86788 neuter +86790 neuter +86792 feminine +feminine +feminine +86799 feminine +feminine +masculine +masculine +feminine +86805 masculine +masculine +masculine +masculine +86810 feminine +86813 masculine +86816 feminine +86818 feminine +feminine +86822 neuter +neuter +86825 feminine +86828 feminine +86830 feminine +feminine +feminine +feminine +86837 masculine +86839 neuter +86842 masculine +masculine +86845 masculine +masculine +86848 masculine +masculine +86852 feminine +masculine +86855 masculine +masculine +feminine +feminine +86860 feminine +feminine +86863 feminine +feminine +86866 feminine +feminine +86869 feminine +feminine +86872 feminine +feminine +masculine +masculine +masculine +86879 masculine +masculine +masculine +neuter +86884 feminine +masculine +masculine +86888 neuter +masculine +masculine +86892 masculine +masculine +86897 neuter +86900 masculine +masculine +masculine +masculine +86906 masculine +masculine +86909 masculine +masculine +masculine +86915 neuter +masculine +masculine +neuter +86921 masculine +86924 neuter +neuter +86928 neuter +neuter +feminine +feminine +neuter +neuter +masculine +masculine +86937 neuter +neuter +feminine +feminine +86943 neuter +86945 feminine +masculine +masculine +masculine +86950 masculine +masculine +masculine +86956 feminine +feminine +masculine +86961 neuter +86964 feminine +feminine +feminine +86968 masculine +masculine +masculine +masculine +86975 masculine +86977 masculine +neuter +neuter +86981 neuter +86983 feminine +86985 feminine +feminine +masculine +masculine +86992 neuter +86995 masculine +masculine +86998 feminine +87000 masculine +masculine +87003 masculine +masculine +87007 masculine +masculine +87011 masculine +masculine +87015 neuter +87018 feminine +87020 masculine +masculine +87025 masculine +masculine +87030 masculine +87035 masculine +87040 masculine +masculine +87043 masculine +masculine +87046 masculine +masculine +masculine +87051 feminine +feminine +masculine +masculine +87057 neuter +neuter +87065 feminine +feminine +87071 neuter +neuter +87075 feminine +feminine +feminine +87080 masculine +87084 masculine +87090 neuter +87094 neuter +neuter +masculine +masculine +87100 masculine +87102 masculine +87105 masculine +masculine +masculine +masculine +87111 neuter +neuter +masculine +masculine +neuter +87122 masculine +masculine +feminine +masculine +masculine +87128 neuter +neuter +neuter +87132 neuter +87134 neuter +87136 feminine +87138 neuter +87140 feminine +87143 masculine +masculine +masculine +87147 feminine +feminine +87151 neuter +neuter +masculine +87156 feminine +feminine +neuter +feminine +neuter +87162 feminine +87166 masculine +masculine +feminine +feminine +masculine +87172 neuter +neuter +neuter +87177 feminine +masculine +87183 neuter +87185 masculine +87189 neuter +87193 masculine +masculine +87197 masculine +87199 masculine +87201 masculine +87204 feminine +87206 feminine +feminine +87211 masculine +masculine +87215 masculine +87217 masculine +87222 masculine +masculine +masculine +87226 masculine +87229 masculine +masculine +87233 masculine +masculine +masculine +masculine +masculine +87239 feminine +feminine +feminine +feminine +neuter +neuter +87247 masculine +masculine +87250 masculine +87252 masculine +87254 feminine +feminine +87259 masculine +87262 masculine +masculine +87266 neuter +87269 feminine +87274 feminine +87277 neuter +87280 neuter +neuter +87283 neuter +feminine +87286 feminine +87288 feminine +feminine +87291 feminine +87293 masculine +masculine +masculine +feminine +87298 masculine +87302 neuter +87306 feminine +87310 neuter +87312 masculine +masculine +neuter +neuter +87321 feminine +masculine +neuter +87325 feminine +neuter +87328 masculine +masculine +87331 masculine +87334 masculine +87336 feminine +feminine +feminine +feminine +feminine +87342 feminine +feminine +87345 masculine +masculine +87348 masculine +87350 feminine +87353 masculine +87355 masculine +masculine +87361 feminine +87363 masculine +feminine +masculine +masculine +feminine +87369 feminine +feminine +87372 masculine +feminine +feminine +masculine +masculine +87380 neuter +masculine +masculine +87384 feminine +masculine +masculine +masculine +87389 masculine +87392 feminine +feminine +feminine +87396 masculine +masculine +masculine +masculine +87402 feminine +87404 feminine +87406 feminine +feminine +87413 feminine +feminine +87416 masculine +87419 masculine +masculine +neuter +87423 masculine +87426 masculine +87429 feminine +feminine +neuter +87433 masculine +87435 masculine +87438 neuter +87442 neuter +neuter +87446 neuter +neuter +87451 feminine +feminine +87454 neuter +87456 neuter +neuter +feminine +feminine +neuter +87466 neuter +neuter +87469 masculine +masculine +87474 feminine +feminine +87478 masculine +masculine +masculine +87483 masculine +87486 feminine +87489 feminine +87491 neuter +87494 feminine +87497 feminine +feminine +masculine +masculine +masculine +87503 masculine +87509 feminine +87511 masculine +87513 masculine +87515 masculine +masculine +masculine +masculine +masculine +87521 masculine +masculine +masculine +masculine +87526 masculine +87528 masculine +87530 neuter +neuter +masculine +87538 masculine +87544 masculine +87551 masculine +87561 masculine +masculine +masculine +masculine +masculine +neuter +87569 masculine +87571 neuter +neuter +87574 masculine +87576 masculine +masculine +87579 feminine +feminine +87583 feminine +feminine +87586 feminine +87588 feminine +feminine +87591 neuter +masculine +87600 feminine +feminine +feminine +87604 masculine +masculine +masculine +87609 neuter +neuter +feminine +feminine +neuter +neuter +masculine +87619 masculine +87622 masculine +masculine +87630 neuter +87632 neuter +neuter +87637 masculine +87642 masculine +87645 masculine +masculine +87648 masculine +87651 masculine +87654 masculine +masculine +87657 feminine +feminine +feminine +87661 feminine +feminine +87665 masculine +masculine +87668 masculine +87673 masculine +masculine +masculine +masculine +masculine +87683 masculine +87686 neuter +masculine +feminine +masculine +87692 masculine +masculine +masculine +masculine +masculine +masculine +87703 masculine +neuter +87706 feminine +feminine +87710 masculine +masculine +87713 masculine +masculine +masculine +masculine +masculine +87720 neuter +neuter +87726 masculine +87729 feminine +feminine +87733 neuter +87735 masculine +masculine +masculine +87739 masculine +masculine +masculine +masculine +87745 neuter +feminine +masculine +87752 masculine +87754 masculine +neuter +87757 feminine +feminine +87762 feminine +87765 neuter +87767 feminine +feminine +87771 feminine +87773 neuter +neuter +87776 masculine +neuter +87781 feminine +feminine +87785 masculine +masculine +87791 masculine +masculine +masculine +neuter +feminine +masculine +neuter +87801 neuter +neuter +87806 feminine +87808 feminine +87810 masculine +87813 feminine +feminine +masculine +87817 feminine +87820 feminine +87823 neuter +87826 neuter +masculine +87829 masculine +masculine +masculine +neuter +87836 masculine +masculine +masculine +87840 neuter +87851 neuter +masculine +neuter +feminine +feminine +neuter +neuter +87859 neuter +87861 masculine +87864 neuter +neuter +masculine +neuter +masculine +87870 neuter +neuter +masculine +neuter +neuter +neuter +87877 neuter +neuter +masculine +87883 neuter +neuter +87888 neuter +87891 neuter +masculine +feminine +feminine +87901 feminine +feminine +87905 masculine +87907 masculine +87910 feminine +feminine +masculine +feminine +masculine +feminine +feminine +feminine +87920 feminine +87922 masculine +87925 feminine +feminine +feminine +87929 neuter +neuter +87933 feminine +feminine +feminine +87937 masculine +masculine +87941 masculine +masculine +masculine +87947 feminine +masculine +87951 masculine +87953 masculine +feminine +feminine +feminine +feminine +feminine +feminine +87963 masculine +masculine +87970 feminine +feminine +87974 feminine +feminine +87980 masculine +87985 feminine +feminine +87990 feminine +feminine +87994 neuter +88000 masculine +masculine +masculine +88004 feminine +masculine +88013 feminine +88015 feminine +masculine +88019 masculine +masculine +feminine +88025 feminine +masculine +88029 feminine +feminine +88036 masculine +88040 feminine +feminine +88044 masculine +88046 masculine +masculine +88050 masculine +88055 feminine +88057 feminine +feminine +88062 feminine +88065 feminine +neuter +88068 masculine +masculine +88071 feminine +88073 feminine +feminine +feminine +88077 masculine +88082 neuter +neuter +neuter +88089 masculine +masculine +88092 feminine +88094 neuter +masculine +masculine +88099 masculine +neuter +neuter +neuter +neuter +88107 masculine +masculine +88114 feminine +masculine +masculine +88118 feminine +88120 masculine +88122 feminine +masculine +feminine +88127 feminine +88130 feminine +feminine +masculine +88135 neuter +neuter +masculine +88142 feminine +feminine +masculine +88146 masculine +masculine +88149 neuter +neuter +neuter +88153 feminine +feminine +masculine +masculine +88162 masculine +masculine +88167 feminine +masculine +feminine +88172 masculine +88175 neuter +neuter +neuter +88180 masculine +88185 masculine +masculine +masculine +masculine +88190 feminine +88192 masculine +masculine +88196 neuter +masculine +88199 feminine +88201 feminine +masculine +88204 neuter +neuter +neuter +masculine +88209 feminine +feminine +feminine +masculine +88214 masculine +88216 masculine +masculine +88219 masculine +masculine +masculine +88224 masculine +88226 masculine +88229 masculine +88232 masculine +88235 masculine +88238 masculine +neuter +neuter +masculine +feminine +feminine +88245 masculine +masculine +88249 masculine +88252 masculine +masculine +masculine +masculine +88258 neuter +neuter +88261 feminine +feminine +feminine +masculine +masculine +feminine +feminine +feminine +feminine +88274 masculine +masculine +masculine +88279 feminine +feminine +masculine +masculine +88284 neuter +88287 neuter +neuter +neuter +masculine +masculine +neuter +neuter +88295 neuter +88297 neuter +88301 feminine +feminine +feminine +feminine +88306 masculine +masculine +masculine +88314 neuter +88320 neuter +88323 masculine +masculine +masculine +88327 neuter +feminine +88332 neuter +neuter +neuter +neuter +88338 neuter +neuter +neuter +88342 feminine +feminine +feminine +88347 masculine +masculine +neuter +neuter +88353 masculine +88355 neuter +88357 masculine +masculine +neuter +88361 masculine +neuter +neuter +88365 feminine +feminine +feminine +feminine +88371 feminine +88373 feminine +feminine +feminine +feminine +88378 feminine +88380 feminine +feminine +88383 masculine +masculine +88386 feminine +feminine +88389 masculine +masculine +88392 feminine +feminine +masculine +masculine +88397 feminine +masculine +masculine +88401 feminine +masculine +masculine +88405 feminine +feminine +feminine +feminine +masculine +neuter +neuter +masculine +neuter +neuter +feminine +feminine +88418 masculine +masculine +feminine +feminine +masculine +masculine +feminine +feminine +88427 masculine +neuter +neuter +masculine +masculine +masculine +masculine +feminine +feminine +masculine +feminine +feminine +masculine +feminine +feminine +masculine +feminine +feminine +masculine +masculine +masculine +feminine +feminine +masculine +88452 masculine +masculine +88460 masculine +88463 masculine +neuter +neuter +88467 masculine +masculine +88470 neuter +neuter +masculine +88474 neuter +neuter +masculine +88479 masculine +88481 masculine +masculine +neuter +88485 neuter +masculine +masculine +neuter +88490 masculine +masculine +88493 neuter +neuter +88498 masculine +masculine +masculine +masculine +88503 masculine +masculine +88507 masculine +feminine +feminine +88513 feminine +88517 masculine +88521 masculine +masculine +88525 masculine +88529 masculine +88531 neuter +masculine +masculine +neuter +88537 feminine +feminine +masculine +88543 neuter +neuter +88548 neuter +neuter +neuter +neuter +feminine +feminine +feminine +feminine +88560 feminine +88564 masculine +88566 feminine +feminine +88569 masculine +feminine +88573 masculine +masculine +feminine +feminine +feminine +masculine +masculine +feminine +88583 masculine +masculine +masculine +neuter +88589 masculine +masculine +88592 masculine +88594 neuter +neuter +neuter +88598 neuter +neuter +88604 feminine +feminine +neuter +neuter +88611 masculine +88613 feminine +88615 masculine +masculine +88620 neuter +neuter +88624 neuter +neuter +88631 feminine +feminine +88635 masculine +masculine +88638 masculine +88640 feminine +masculine +neuter +neuter +masculine +88646 feminine +88649 neuter +88651 feminine +feminine +88656 feminine +feminine +88660 neuter +88662 masculine +88665 masculine +masculine +88669 neuter +neuter +masculine +88673 masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +neuter +neuter +neuter +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +masculine +neuter +88701 neuter +masculine +88705 masculine +masculine +masculine +masculine +masculine +88712 neuter +88723 feminine +feminine +feminine +88727 masculine +masculine +masculine +88732 masculine +88734 masculine +88738 masculine +feminine +feminine +masculine +88743 neuter +88747 neuter +masculine +feminine +feminine +88752 masculine +neuter +masculine +masculine +88757 feminine +88761 masculine +88767 feminine +feminine +88772 feminine +feminine +88776 feminine +feminine +88781 neuter +neuter +neuter +neuter +88787 neuter +neuter +neuter +neuter +88793 feminine +88797 masculine +88799 feminine +88801 feminine +88803 feminine +88805 feminine +88807 masculine +88810 masculine +masculine +masculine +masculine +88815 feminine +feminine +feminine +88821 feminine +88823 masculine +masculine +feminine +feminine +88830 feminine +masculine +88833 masculine +88836 neuter +88838 masculine +masculine +neuter +88842 masculine +masculine +masculine +88846 masculine +88850 masculine +88852 masculine +masculine +masculine +88858 masculine +masculine +masculine +88863 masculine +88865 masculine +masculine +masculine +masculine +masculine +masculine +masculine +88879 masculine +masculine +88882 masculine +88885 masculine +88887 feminine +88889 feminine +88891 masculine +88893 feminine +feminine +masculine +88897 masculine +masculine +masculine +88901 masculine +masculine +feminine +feminine +masculine +88908 masculine +masculine +masculine +88914 masculine +masculine +88917 masculine +88919 masculine +masculine +88925 masculine +masculine +88928 masculine +88930 masculine +88933 masculine +masculine +88940 masculine +masculine +88946 masculine +masculine +88956 masculine +masculine +88961 neuter +masculine +88968 masculine +88970 masculine +88974 neuter +88976 masculine +masculine +88982 neuter +88984 masculine +masculine +88988 masculine +88990 neuter +neuter +masculine +masculine +88999 masculine +89003 neuter +neuter +89006 feminine +feminine +89009 masculine +masculine +89013 masculine +89016 masculine +masculine +89019 masculine +masculine +89023 masculine +89026 neuter +89029 neuter +89032 masculine +masculine +neuter +89036 neuter +89041 masculine +masculine +89044 neuter +neuter +89047 masculine +89050 masculine +masculine +neuter +neuter +89055 masculine +neuter +89060 neuter +masculine +masculine +89067 feminine +89070 neuter +neuter +89073 masculine +89076 masculine +masculine +89083 neuter +neuter +89088 feminine +feminine +masculine +masculine +feminine +89094 feminine +89096 feminine +89098 feminine +89100 feminine +89102 neuter +neuter +89105 masculine +89107 masculine +masculine +masculine +masculine +masculine +masculine +masculine +89115 masculine +masculine +masculine +89121 neuter +feminine +feminine +89125 neuter +feminine +feminine +feminine +89130 masculine +89133 neuter +89135 neuter +neuter +masculine +masculine +89140 neuter +neuter +89143 neuter +masculine +masculine +masculine +89148 neuter +masculine +neuter +neuter +89154 neuter +89157 masculine +89160 neuter +masculine +masculine +89166 feminine +feminine +89170 masculine +89173 masculine +masculine +masculine +masculine +89178 masculine +masculine +89181 neuter +89185 masculine +masculine +89192 feminine +89194 neuter +neuter +89198 feminine +feminine +89204 masculine +masculine +neuter +neuter +masculine +masculine +89213 masculine +89215 masculine +89217 masculine +89221 neuter +neuter +89224 feminine +89227 masculine +masculine +89230 masculine +89235 masculine +masculine +masculine +masculine +89244 neuter +89247 feminine +feminine +feminine +89253 feminine +feminine +89257 feminine +feminine +feminine +feminine +feminine +feminine +89265 masculine +masculine +feminine +feminine +89270 feminine +feminine +89274 neuter +neuter +89278 masculine +89280 masculine +masculine +89285 neuter +neuter +89288 masculine +masculine +89291 masculine +masculine +masculine +89295 masculine +masculine +89299 masculine +89302 masculine +masculine +89307 feminine +masculine +masculine +89312 masculine +masculine +feminine +89317 feminine +masculine +89320 neuter +89322 feminine +feminine +masculine +masculine +89327 neuter +neuter +89330 neuter +89332 masculine +masculine +89337 neuter +89341 neuter +89343 neuter +neuter +89350 neuter +89353 masculine +masculine +masculine +89358 neuter +neuter +neuter +89362 masculine +masculine +89366 masculine +masculine +masculine +masculine +89372 masculine +89375 feminine +feminine +masculine +masculine +89380 masculine +masculine +89383 neuter +89385 masculine +neuter +89389 masculine +masculine +feminine +feminine +89395 feminine +feminine +89398 feminine +89400 neuter +89403 neuter +89407 feminine +feminine +89410 feminine +neuter +neuter +89414 masculine +89418 masculine +89424 masculine +masculine +89427 feminine +masculine +feminine +feminine +feminine +masculine +89434 masculine +89441 neuter +89443 masculine +89446 feminine +feminine +feminine +feminine +89452 masculine +masculine +89455 neuter +89458 masculine +masculine +masculine +89462 neuter +neuter +masculine +neuter +neuter +masculine +masculine +89471 feminine +feminine +neuter +neuter +feminine +feminine +89478 neuter +neuter +89482 feminine +feminine +89485 masculine +masculine +neuter +89489 masculine +masculine +89495 neuter +neuter +89499 masculine +89503 feminine +neuter +masculine +89507 neuter +89509 feminine +neuter +89512 neuter +89514 feminine +neuter +neuter +89520 feminine +89522 masculine +89524 neuter +neuter +89527 neuter +neuter +masculine +masculine +89533 masculine +89538 masculine +89542 masculine +masculine +89549 masculine +89553 masculine +89555 masculine +89562 neuter +neuter +neuter +89571 masculine +masculine +89574 neuter +neuter +neuter +89578 feminine +masculine +neuter +89585 masculine +neuter +89591 feminine +feminine +89595 masculine +89605 neuter +89607 neuter +89613 feminine +masculine +masculine +masculine +89619 feminine +89621 feminine +feminine +feminine +89626 masculine +masculine +masculine +masculine +masculine +89632 feminine +89636 masculine +89638 masculine +89641 neuter +neuter +masculine +89645 neuter +neuter +89650 neuter +neuter +89653 masculine +89655 neuter +masculine +89658 masculine +masculine +masculine +masculine +masculine +89667 feminine +89671 masculine +89675 neuter +feminine +masculine +89680 masculine +89683 masculine +masculine +89686 masculine +masculine +89690 feminine +feminine +neuter +neuter +89698 feminine +feminine +89703 masculine +masculine +89708 masculine +masculine +89711 feminine +feminine +89714 feminine +feminine +89717 feminine +89719 feminine +feminine +masculine +masculine +89726 feminine +masculine +89731 neuter +masculine +89736 masculine +masculine +feminine +feminine +89741 masculine +89747 feminine +feminine +feminine +89751 feminine +feminine +feminine +feminine +feminine +89757 feminine +89759 feminine +89762 masculine +89764 masculine +masculine +89768 feminine +89771 neuter +89774 neuter +89777 feminine +89779 feminine +masculine +89783 masculine +89785 feminine +89787 masculine +masculine +masculine +89792 masculine +masculine +masculine +89796 feminine +feminine +89799 masculine +masculine +masculine +89803 masculine +89807 masculine +89810 feminine +feminine +feminine +neuter +neuter +89816 feminine +89818 masculine +masculine +feminine +89822 masculine +masculine +masculine +89826 masculine +89828 feminine +feminine +feminine +89832 masculine +89834 feminine +feminine +neuter +89841 masculine +89843 feminine +masculine +masculine +89848 masculine +89850 masculine +89852 masculine +89854 masculine +masculine +masculine +89862 masculine +89864 masculine +masculine +masculine +89869 masculine +89871 masculine +masculine +masculine +89876 masculine +89878 masculine +masculine +masculine +89883 masculine +masculine +masculine +89887 masculine +89889 masculine +89891 masculine +masculine +89894 masculine +masculine +masculine +89899 masculine +89901 masculine +masculine +masculine +masculine +89906 masculine +89908 feminine +89910 feminine +feminine +feminine +89914 masculine +89916 feminine +feminine +feminine +feminine +neuter +89923 masculine +89925 masculine +masculine +masculine +89929 masculine +89931 feminine +feminine +masculine +89937 masculine +masculine +masculine +masculine +masculine +89943 masculine +89945 masculine +masculine +89948 masculine +89950 feminine +masculine +89953 feminine +feminine +masculine +89957 masculine +89959 masculine +89961 masculine +masculine +masculine +89965 masculine +89967 neuter +neuter +89971 feminine +feminine +feminine +masculine +masculine +89977 masculine +89981 masculine +feminine +feminine +89985 neuter +neuter +89988 feminine +feminine +feminine +89993 masculine +89997 masculine +89999 masculine +masculine +masculine +masculine +90004 masculine +90008 feminine +masculine +feminine +90013 feminine +feminine +90016 feminine +90018 feminine +feminine +masculine +masculine +90023 feminine +90025 feminine +90027 masculine +90036 masculine +90039 neuter +neuter +90042 masculine +90044 neuter +neuter +90047 masculine +masculine +feminine +feminine +90052 masculine +masculine +90055 masculine +masculine +90059 neuter +feminine +feminine +masculine +masculine +90065 masculine +90070 masculine +masculine +masculine +90075 masculine +90077 masculine +90079 masculine +masculine +masculine +90086 masculine +masculine +masculine +feminine +feminine +90092 masculine +90095 masculine +masculine +masculine +90100 feminine +feminine +feminine +90105 masculine +masculine +masculine +feminine +feminine +90111 masculine +masculine +masculine +90115 masculine +masculine +90120 neuter +neuter +90124 neuter +neuter +masculine +masculine +90129 feminine +neuter +masculine +masculine +neuter +90135 masculine +90139 feminine +feminine +90142 feminine +masculine +masculine +masculine +90147 feminine +feminine +90150 neuter +neuter +neuter +neuter +masculine +masculine +masculine +90158 masculine +masculine +masculine +feminine +feminine +90164 masculine +masculine +masculine +masculine +90169 masculine +masculine +masculine +masculine +masculine +90175 neuter +masculine +90178 masculine +masculine +masculine +feminine +feminine +masculine +masculine +feminine +feminine +90188 feminine +masculine +90191 masculine +masculine +masculine +masculine +90196 masculine +masculine +masculine +neuter +neuter +masculine +masculine +90204 masculine +masculine +90207 masculine +masculine +masculine +90213 feminine +90215 feminine +90217 masculine +masculine +90221 masculine +masculine +masculine +90225 masculine +masculine +90231 feminine +feminine +masculine +masculine +feminine +feminine +90239 masculine +masculine +90243 neuter +90246 masculine +90248 masculine +masculine +90251 feminine +feminine +90254 neuter +neuter +masculine +masculine +90266 neuter +neuter +masculine +feminine +feminine +masculine +masculine +90274 masculine +masculine +masculine +90281 neuter +masculine +90284 feminine +feminine +masculine +masculine +90289 masculine +masculine +masculine +masculine +masculine +90295 masculine +90298 feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +90308 masculine +90312 neuter +neuter +masculine +masculine +90317 masculine +masculine +90320 neuter +neuter +90323 masculine +90329 neuter +90332 masculine +90334 masculine +masculine +masculine +90339 feminine +feminine +feminine +90343 masculine +90350 masculine +feminine +90353 feminine +90359 neuter +90361 masculine +90367 masculine +90370 masculine +90373 masculine +90376 masculine +90378 masculine +masculine +90381 masculine +90387 neuter +neuter +masculine +90393 masculine +90398 masculine +90400 masculine +90403 masculine +90407 neuter +neuter +neuter +90414 masculine +masculine +masculine +neuter +90421 masculine +masculine +90427 masculine +90434 feminine +masculine +90439 masculine +masculine +masculine +masculine +90445 masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +90455 masculine +masculine +90458 feminine +masculine +90464 feminine +feminine +masculine +masculine +90469 feminine +feminine +masculine +masculine +90475 masculine +90477 masculine +90479 masculine +masculine +masculine +masculine +90485 masculine +masculine +feminine +feminine +masculine +masculine +90494 feminine +feminine +masculine +masculine +90500 masculine +masculine +90503 feminine +feminine +masculine +masculine +90508 masculine +masculine +90511 feminine +feminine +neuter +neuter +90516 masculine +masculine +90520 masculine +neuter +90524 masculine +feminine +90530 masculine +masculine +90533 masculine +neuter +90536 neuter +feminine +90539 masculine +masculine +masculine +90543 masculine +90545 masculine +masculine +masculine +feminine +90550 masculine +feminine +90553 neuter +neuter +masculine +masculine +neuter +masculine +masculine +90562 neuter +neuter +masculine +masculine +neuter +masculine +masculine +90570 masculine +90572 feminine +feminine +90577 masculine +masculine +90580 feminine +90582 masculine +masculine +90585 masculine +masculine +90588 neuter +neuter +masculine +masculine +90593 masculine +masculine +90597 masculine +masculine +90600 neuter +neuter +masculine +masculine +90605 masculine +masculine +90609 neuter +neuter +90612 neuter +neuter +masculine +masculine +90617 neuter +neuter +neuter +90621 neuter +90623 masculine +masculine +90626 neuter +neuter +90632 feminine +feminine +90635 masculine +masculine +90639 masculine +90643 masculine +masculine +masculine +90649 masculine +feminine +90652 feminine +90654 masculine +90656 feminine +90660 masculine +masculine +90663 masculine +90665 masculine +90667 masculine +90673 feminine +masculine +90676 feminine +masculine +90679 neuter +neuter +masculine +masculine +90686 neuter +90692 masculine +masculine +90695 masculine +masculine +90699 feminine +90702 masculine +90705 masculine +masculine +90711 masculine +masculine +90715 neuter +neuter +90720 masculine +feminine +masculine +90725 feminine +neuter +90728 feminine +90730 feminine +feminine +90736 feminine +masculine +90740 feminine +masculine +90743 feminine +90746 masculine +masculine +90750 feminine +masculine +masculine +masculine +90755 masculine +masculine +masculine +masculine +masculine +masculine +masculine +90764 masculine +feminine +90767 neuter +feminine +feminine +feminine +90772 masculine +masculine +90775 masculine +masculine +90778 feminine +90780 feminine +masculine +masculine +masculine +masculine +masculine +masculine +90793 masculine +masculine +feminine +feminine +90801 neuter +masculine +90806 neuter +90811 feminine +masculine +90815 neuter +90817 masculine +masculine +masculine +masculine +masculine +90825 masculine +masculine +90828 neuter +neuter +90831 neuter +neuter +neuter +90836 neuter +neuter +masculine +masculine +90841 masculine +masculine +90844 neuter +masculine +masculine +90849 neuter +neuter +masculine +masculine +neuter +90855 masculine +90858 neuter +masculine +masculine +masculine +90865 neuter +neuter +masculine +masculine +90872 neuter +neuter +masculine +masculine +90878 neuter +neuter +neuter +90882 masculine +masculine +90886 neuter +90888 masculine +masculine +neuter +90892 neuter +90897 masculine +feminine +feminine +masculine +90903 masculine +neuter +neuter +neuter +masculine +90909 masculine +masculine +90913 neuter +neuter +neuter +masculine +masculine +90919 feminine +masculine +90930 masculine +masculine +90934 neuter +90936 masculine +90938 masculine +90941 masculine +90943 masculine +masculine +masculine +90947 masculine +90950 masculine +masculine +90953 masculine +90960 masculine +90963 masculine +90965 masculine +90967 masculine +neuter +90972 neuter +90983 masculine +90989 masculine +90991 feminine +90993 masculine +90997 masculine +91003 masculine +91006 masculine +91008 masculine +91010 masculine +91012 masculine +91015 neuter +91017 masculine +91019 neuter +91021 masculine +masculine +91024 masculine +91028 masculine +masculine +masculine +91034 masculine +91037 masculine +masculine +91042 masculine +masculine +91045 neuter +91047 masculine +masculine +91050 masculine +masculine +masculine +91054 masculine +masculine +91057 masculine +masculine +neuter +91062 masculine +masculine +masculine +masculine +91068 masculine +masculine +masculine +91073 masculine +masculine +masculine +neuter +masculine +feminine +91081 feminine +feminine +masculine +masculine +feminine +feminine +91089 masculine +masculine +masculine +91094 masculine +91097 masculine +91102 masculine +91104 masculine +masculine +91108 masculine +masculine +masculine +91112 masculine +masculine +91116 masculine +91119 masculine +masculine +neuter +neuter +masculine +masculine +neuter +masculine +feminine +masculine +neuter +neuter +neuter +91134 feminine +feminine +91139 neuter +91142 masculine +neuter +neuter +neuter +91147 neuter +neuter +neuter +91153 masculine +neuter +neuter +neuter +91158 masculine +91161 masculine +neuter +neuter +91167 masculine +91173 neuter +91177 masculine +masculine +91181 neuter +neuter +masculine +masculine +91189 masculine +masculine +masculine +masculine +masculine +91196 masculine +masculine +masculine +91200 masculine +masculine +masculine +masculine +masculine +91206 masculine +91209 masculine +masculine +91213 masculine +91215 masculine +91220 masculine +masculine +masculine +masculine +91227 masculine +91229 feminine +feminine +masculine +masculine +masculine +feminine +91236 masculine +masculine +91241 masculine +masculine +masculine +masculine +91246 feminine +feminine +masculine +91251 masculine +91253 masculine +masculine +masculine +masculine +91259 masculine +91261 masculine +91264 masculine +91266 neuter +91270 masculine +91272 masculine +91274 masculine +91276 masculine +91278 feminine +91280 masculine +91282 neuter +91284 neuter +neuter +91289 masculine +91291 masculine +masculine +91296 masculine +91298 masculine +masculine +91301 masculine +neuter +masculine +91305 neuter +91308 masculine +masculine +91311 masculine +masculine +91317 neuter +91325 feminine +feminine +91329 masculine +91332 neuter +masculine +91338 neuter +91341 masculine +masculine +91344 masculine +91349 masculine +neuter +91355 masculine +masculine +masculine +91360 neuter +neuter +neuter +neuter +91366 feminine +feminine +feminine +feminine +91372 masculine +masculine +91375 masculine +91377 masculine +masculine +91380 masculine +neuter +91384 masculine +91386 masculine +91393 neuter +91396 neuter +91400 masculine +91402 masculine +masculine +91406 masculine +masculine +91409 masculine +91414 neuter +neuter +91422 neuter +91426 masculine +91428 masculine +91446 masculine +masculine +91449 masculine +masculine +masculine +91454 masculine +91456 neuter +91458 masculine +masculine +91461 masculine +91463 masculine +91465 masculine +91467 masculine +91470 masculine +91472 masculine +91474 masculine +91477 masculine +91479 masculine +91482 masculine +91484 feminine +91486 feminine +91499 masculine +feminine +feminine +feminine +masculine +91505 masculine +91507 masculine +91510 neuter +masculine +masculine +neuter +neuter +91519 masculine +91522 neuter +91525 neuter +91527 neuter +masculine +91531 masculine +masculine +91535 masculine +91538 masculine +masculine +91542 masculine +masculine +91545 neuter +neuter +91553 masculine +91557 neuter +neuter +91561 masculine +masculine +91565 neuter +neuter +91568 neuter +91570 masculine +masculine +91574 feminine +feminine +91577 feminine +91579 masculine +masculine +91584 feminine +feminine +91590 masculine +91595 masculine +91602 masculine +masculine +91608 masculine +masculine +masculine +masculine +91613 feminine +feminine +91618 masculine +feminine +feminine +masculine +masculine +91625 feminine +neuter +91629 feminine +91635 feminine +91637 neuter +feminine +91643 feminine +91645 feminine +feminine +feminine +91650 neuter +neuter +91653 masculine +feminine +masculine +masculine +91660 masculine +91669 neuter +91671 masculine +neuter +neuter +neuter +masculine +91679 masculine +neuter +neuter +91683 masculine +neuter +neuter +91689 masculine +masculine +91692 neuter +masculine +91695 neuter +neuter +masculine +masculine +masculine +masculine +91703 neuter +neuter +neuter +91707 feminine +feminine +masculine +masculine +91712 masculine +91714 masculine +masculine +masculine +masculine +91719 masculine +feminine +feminine +91723 neuter +neuter +91727 feminine +feminine +masculine +masculine +91732 neuter +neuter +neuter +91739 feminine +feminine +neuter +neuter +neuter +91746 feminine +feminine +feminine +91751 neuter +neuter +91755 masculine +91758 neuter +neuter +91761 masculine +91767 feminine +feminine +91771 feminine +feminine +91774 feminine +91777 neuter +feminine +91780 feminine +91784 feminine +feminine +91788 masculine +91791 masculine +masculine +masculine +masculine +masculine +91797 masculine +masculine +91800 masculine +91802 masculine +91807 masculine +masculine +91817 masculine +masculine +masculine +91821 masculine +91823 masculine +91825 masculine +91827 masculine +91829 masculine +91831 masculine +masculine +masculine +91837 neuter +91839 masculine +91843 masculine +91848 masculine +91850 masculine +masculine +91854 masculine +masculine +91858 masculine +91860 masculine +91862 neuter +masculine +91865 masculine +masculine +91869 masculine +masculine +91874 masculine +masculine +91880 masculine +masculine +masculine +masculine +91890 masculine +masculine +masculine +91894 neuter +neuter +91899 masculine +91902 neuter +91906 neuter +neuter +91909 masculine +masculine +91912 feminine +feminine +masculine +91917 feminine +91925 masculine +masculine +masculine +91931 neuter +masculine +masculine +masculine +91936 masculine +91938 masculine +91941 neuter +91943 masculine +91948 neuter +91952 neuter +91955 masculine +91957 neuter +91962 neuter +91972 neuter +masculine +91978 masculine +masculine +feminine +91986 masculine +91988 masculine +91990 masculine +91992 masculine +91994 masculine +91996 masculine +91998 masculine +92000 masculine +92002 masculine +92004 masculine +feminine +masculine +92009 neuter +masculine +92019 neuter +neuter +masculine +masculine +masculine +masculine +92027 neuter +neuter +masculine +masculine +92032 neuter +92037 neuter +92039 neuter +92047 neuter +neuter +neuter +feminine +feminine +92053 feminine +feminine +neuter +neuter +92058 masculine +masculine +92061 feminine +92063 neuter +92066 neuter +neuter +92069 feminine +feminine +92072 masculine +masculine +92075 masculine +masculine +neuter +neuter +92080 masculine +masculine +92083 masculine +masculine +92090 feminine +feminine +masculine +92096 neuter +neuter +92099 neuter +masculine +92103 masculine +neuter +neuter +masculine +masculine +92109 feminine +neuter +92117 masculine +masculine +feminine +feminine +neuter +neuter +92127 masculine +92130 feminine +feminine +92133 masculine +masculine +masculine +masculine +neuter +neuter +92141 feminine +feminine +neuter +neuter +92146 neuter +92148 masculine +92150 neuter +neuter +92154 masculine +masculine +92157 neuter +neuter +neuter +92165 neuter +neuter +92168 masculine +neuter +92172 neuter +neuter +92175 neuter +92178 masculine +92182 masculine +92185 feminine +92188 masculine +masculine +92191 neuter +neuter +92196 neuter +92198 neuter +masculine +feminine +92205 feminine +feminine +masculine +feminine +masculine +feminine +92213 feminine +masculine +masculine +masculine +92218 feminine +feminine +masculine +masculine +feminine +feminine +92228 feminine +feminine +masculine +masculine +feminine +feminine +neuter +neuter +neuter +92240 masculine +masculine +92245 masculine +masculine +neuter +neuter +neuter +92253 feminine +feminine +92257 masculine +92262 neuter +92264 masculine +92267 feminine +feminine +92272 neuter +neuter +92279 masculine +masculine +92282 feminine +feminine +92286 neuter +92289 feminine +92292 feminine +92295 masculine +masculine +92300 masculine +92302 masculine +92304 neuter +neuter +92307 masculine +92309 masculine +92312 masculine +92316 masculine +masculine +92319 feminine +feminine +neuter +masculine +92333 neuter +92339 masculine +masculine +92345 masculine +masculine +feminine +92349 masculine +92357 feminine +92359 masculine +masculine +92363 masculine +feminine +92368 masculine +masculine +92373 masculine +masculine +92376 masculine +masculine +92379 feminine +feminine +92382 feminine +92386 masculine +92389 feminine +92391 feminine +feminine +92394 masculine +masculine +92397 masculine +92401 feminine +92404 masculine +masculine +92408 masculine +masculine +masculine +masculine +92413 feminine +feminine +92417 feminine +feminine +feminine +feminine +92422 masculine +masculine +92426 neuter +neuter +92429 neuter +92433 neuter +92437 masculine +masculine +92443 masculine +masculine +92446 feminine +feminine +92449 neuter +neuter +92453 feminine +92456 masculine +masculine +92459 feminine +neuter +92463 masculine +masculine +92467 masculine +neuter +92471 feminine +feminine +92477 masculine +92479 masculine +masculine +92482 masculine +92484 masculine +masculine +92491 feminine +feminine +feminine +92495 masculine +masculine +92501 feminine +92503 masculine +92506 feminine +feminine +neuter +92511 feminine +feminine +neuter +92516 feminine +feminine +masculine +masculine +92521 feminine +feminine +feminine +92526 feminine +92528 masculine +92537 masculine +92542 masculine +92544 masculine +masculine +masculine +masculine +masculine +92551 masculine +masculine +masculine +92555 masculine +masculine +feminine +92561 masculine +masculine +masculine +masculine +92566 neuter +92569 neuter +92572 masculine +92575 feminine +feminine +feminine +masculine +92582 feminine +92585 masculine +92587 masculine +masculine +92592 neuter +neuter +92596 feminine +feminine +feminine +92600 neuter +masculine +neuter +92606 feminine +92609 feminine +92612 feminine +92615 feminine +92625 feminine +feminine +92630 feminine +feminine +feminine +92634 masculine +masculine +92641 masculine +neuter +92644 masculine +masculine +masculine +92648 neuter +neuter +92652 masculine +masculine +feminine +92657 masculine +92660 masculine +masculine +92664 masculine +92666 masculine +masculine +92670 masculine +92672 masculine +masculine +92676 masculine +92678 masculine +masculine +masculine +masculine +92684 masculine +92687 neuter +neuter +masculine +masculine +masculine +92695 masculine +92697 masculine +masculine +92700 neuter +masculine +masculine +92705 masculine +masculine +92708 masculine +masculine +92711 neuter +masculine +masculine +92716 feminine +feminine +92721 feminine +feminine +feminine +feminine +92726 feminine +feminine +92729 neuter +masculine +masculine +92734 feminine +92736 neuter +neuter +92739 neuter +neuter +92742 feminine +feminine +92745 neuter +masculine +masculine +92750 masculine +masculine +92753 neuter +92755 neuter +92757 masculine +neuter +92762 masculine +92767 neuter +neuter +92770 neuter +masculine +masculine +92776 masculine +92779 feminine +feminine +masculine +92785 masculine +92790 neuter +92797 masculine +92800 feminine +feminine +masculine +masculine +92805 masculine +feminine +92808 feminine +92811 neuter +neuter +neuter +92815 neuter +92818 feminine +feminine +feminine +92822 feminine +masculine +feminine +92829 masculine +masculine +feminine +masculine +feminine +92837 masculine +92839 masculine +neuter +92842 feminine +92845 masculine +masculine +92848 masculine +masculine +feminine +92854 masculine +masculine +feminine +92858 masculine +92861 neuter +92863 masculine +92865 feminine +92871 feminine +feminine +feminine +92877 neuter +masculine +92882 neuter +neuter +92886 masculine +feminine +92889 feminine +feminine +92893 feminine +feminine +92897 masculine +92900 neuter +92908 masculine +92910 masculine +masculine +masculine +92915 masculine +92918 feminine +feminine +neuter +neuter +92924 neuter +neuter +92927 masculine +92930 masculine +masculine +92934 masculine +92939 masculine +masculine +92943 masculine +92946 feminine +92949 masculine +masculine +92952 masculine +masculine +92956 masculine +masculine +masculine +masculine +92961 masculine +neuter +neuter +92967 masculine +92969 masculine +masculine +masculine +masculine +92974 masculine +neuter +neuter +92980 masculine +92984 masculine +feminine +feminine +92988 masculine +feminine +feminine +92993 neuter +neuter +92996 neuter +92999 feminine +feminine +masculine +feminine +feminine +93006 neuter +93010 masculine +masculine +93025 feminine +feminine +93028 feminine +neuter +93031 masculine +masculine +93035 masculine +93038 masculine +masculine +feminine +93042 neuter +masculine +93045 feminine +feminine +masculine +masculine +masculine +93052 neuter +neuter +neuter +93059 feminine +feminine +feminine +masculine +masculine +masculine +masculine +93067 masculine +masculine +93072 masculine +93074 masculine +masculine +93077 masculine +masculine +feminine +feminine +feminine +93083 masculine +93087 neuter +93089 masculine +masculine +93095 neuter +93097 masculine +masculine +93101 masculine +masculine +93107 masculine +93110 masculine +93112 masculine +masculine +masculine +93118 neuter +neuter +93124 masculine +93126 masculine +93129 masculine +93135 feminine +feminine +93138 feminine +feminine +93143 masculine +feminine +feminine +feminine +masculine +93149 masculine +93151 feminine +93155 feminine +93162 feminine +feminine +feminine +93168 masculine +masculine +masculine +93172 masculine +masculine +masculine +masculine +93177 masculine +93179 masculine +93182 masculine +93185 feminine +93188 masculine +93190 neuter +neuter +93193 masculine +93195 masculine +93197 masculine +masculine +masculine +93203 masculine +93205 feminine +93208 neuter +neuter +feminine +feminine +93216 masculine +neuter +93221 masculine +masculine +neuter +93228 masculine +masculine +masculine +93234 masculine +masculine +93237 masculine +masculine +93240 masculine +masculine +93254 feminine +93256 masculine +masculine +93259 masculine +masculine +93262 feminine +neuter +93268 neuter +neuter +93271 neuter +93275 neuter +neuter +93279 masculine +feminine +93282 feminine +93290 feminine +feminine +feminine +93294 neuter +93298 feminine +feminine +93301 neuter +neuter +masculine +masculine +93308 masculine +neuter +neuter +masculine +neuter +93314 neuter +neuter +93317 masculine +neuter +neuter +masculine +neuter +neuter +93326 masculine +masculine +93329 masculine +neuter +neuter +masculine +93334 neuter +neuter +93341 neuter +neuter +93346 neuter +93353 neuter +93358 neuter +neuter +93361 masculine +93369 neuter +93371 feminine +93383 masculine +neuter +93386 masculine +93390 masculine +feminine +93394 masculine +93397 masculine +masculine +93400 masculine +neuter +93403 neuter +neuter +93406 neuter +93409 feminine +feminine +93413 neuter +neuter +93416 masculine +masculine +93419 masculine +masculine +masculine +93424 masculine +masculine +93429 masculine +masculine +93432 masculine +93434 masculine +93436 masculine +93438 masculine +93441 masculine +93443 masculine +masculine +93446 masculine +93448 masculine +93450 masculine +93452 masculine +masculine +93455 masculine +93457 masculine +masculine +masculine +93461 masculine +masculine +93465 masculine +masculine +93468 masculine +masculine +masculine +93472 masculine +masculine +93475 masculine +masculine +93478 neuter +93481 masculine +93484 neuter +93487 neuter +neuter +93490 masculine +neuter +93496 masculine +93498 neuter +masculine +93501 masculine +93504 masculine +93506 neuter +neuter +93513 masculine +masculine +masculine +neuter +93520 masculine +93522 masculine +masculine +93527 masculine +93539 masculine +masculine +93544 neuter +neuter +93550 masculine +masculine +masculine +masculine +93556 masculine +93562 masculine +masculine +93565 masculine +93567 feminine +feminine +93571 masculine +93573 feminine +feminine +93577 masculine +93579 masculine +masculine +93583 feminine +feminine +93587 feminine +feminine +93590 masculine +neuter +neuter +neuter +neuter +93597 masculine +neuter +neuter +neuter +neuter +93606 feminine +feminine +feminine +93610 feminine +feminine +93613 masculine +masculine +93618 masculine +masculine +masculine +93622 masculine +masculine +93627 feminine +feminine +93630 neuter +masculine +93635 neuter +93639 masculine +neuter +93642 masculine +93645 masculine +93648 masculine +masculine +93653 masculine +masculine +93664 masculine +masculine +93669 feminine +feminine +feminine +feminine +93675 masculine +masculine +93678 masculine +masculine +93683 masculine +masculine +93689 masculine +masculine +93695 masculine +masculine +93698 neuter +93701 masculine +93705 feminine +93708 masculine +neuter +neuter +masculine +masculine +93715 masculine +masculine +93721 masculine +93727 masculine +93729 masculine +masculine +masculine +masculine +93738 neuter +93743 masculine +masculine +93746 feminine +feminine +neuter +93752 masculine +93756 feminine +feminine +93759 masculine +93763 neuter +93765 neuter +neuter +feminine +feminine +neuter +93773 feminine +neuter +neuter +masculine +masculine +masculine +masculine +masculine +93783 feminine +neuter +neuter +masculine +masculine +93790 masculine +masculine +neuter +neuter +masculine +masculine +93798 masculine +masculine +93801 masculine +masculine +masculine +93806 masculine +masculine +93809 feminine +93811 masculine +masculine +feminine +feminine +masculine +neuter +neuter +93820 neuter +93823 neuter +neuter +93828 neuter +neuter +93833 neuter +93835 neuter +93838 masculine +93844 masculine +neuter +neuter +93850 neuter +masculine +93854 neuter +neuter +93858 feminine +masculine +93862 feminine +neuter +93866 masculine +masculine +93869 masculine +masculine +93872 neuter +93876 neuter +93878 neuter +93882 neuter +93884 masculine +neuter +masculine +93889 neuter +masculine +masculine +neuter +neuter +93895 neuter +neuter +93898 neuter +masculine +93901 feminine +feminine +93904 masculine +masculine +feminine +feminine +93909 neuter +neuter +feminine +93913 masculine +masculine +masculine +93921 neuter +neuter +neuter +93926 neuter +masculine +93929 feminine +feminine +93933 masculine +93936 neuter +neuter +93942 masculine +masculine +masculine +93946 feminine +feminine +93950 feminine +93952 feminine +masculine +93955 feminine +masculine +masculine +93960 neuter +feminine +feminine +93966 feminine +feminine +93970 feminine +93972 neuter +93975 neuter +93984 neuter +93986 neuter +93988 feminine +masculine +93991 masculine +93994 masculine +93996 masculine +93998 feminine +feminine +masculine +masculine +94004 neuter +neuter +94007 masculine +94009 neuter +masculine +neuter +94013 neuter +masculine +masculine +94018 masculine +94023 masculine +94028 neuter +94035 feminine +feminine +94043 masculine +masculine +feminine +feminine +masculine +masculine +94051 feminine +feminine +masculine +masculine +94056 feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +94065 masculine +94067 feminine +masculine +94070 feminine +feminine +masculine +94074 feminine +feminine +feminine +94078 feminine +feminine +feminine +feminine +94083 feminine +feminine +feminine +94088 neuter +94090 neuter +neuter +feminine +feminine +94098 feminine +94103 neuter +feminine +neuter +94112 masculine +94116 feminine +feminine +feminine +94120 feminine +masculine +masculine +94124 feminine +feminine +feminine +masculine +94132 masculine +94134 feminine +94136 feminine +94138 masculine +94143 masculine +94145 feminine +feminine +94148 feminine +94150 masculine +masculine +94153 neuter +94155 feminine +feminine +feminine +94160 feminine +feminine +94163 masculine +masculine +94167 feminine +94169 masculine +94171 masculine +94173 feminine +94175 masculine +94178 feminine +feminine +94181 masculine +masculine +94185 masculine +masculine +94188 feminine +feminine +94191 neuter +neuter +94194 masculine +masculine +94198 masculine +94200 neuter +94202 feminine +feminine +masculine +masculine +94208 feminine +feminine +feminine +94216 masculine +94218 feminine +masculine +94223 feminine +94225 feminine +feminine +94229 feminine +feminine +94232 neuter +94234 feminine +94237 masculine +94239 masculine +94242 feminine +feminine +94247 feminine +feminine +masculine +masculine +94252 neuter +masculine +94259 neuter +neuter +94263 neuter +neuter +94268 neuter +masculine +94272 feminine +94274 neuter +94279 neuter +neuter +94285 feminine +94291 masculine +masculine +masculine +94298 masculine +94301 neuter +neuter +94305 neuter +neuter +94309 masculine +neuter +neuter +neuter +94315 neuter +94319 masculine +94322 masculine +94326 feminine +94330 neuter +94335 feminine +feminine +masculine +masculine +94342 masculine +94344 masculine +neuter +94351 neuter +94358 masculine +masculine +neuter +94365 masculine +masculine +masculine +94369 feminine +feminine +feminine +94374 masculine +94376 masculine +94380 neuter +94383 neuter +neuter +neuter +94388 neuter +94391 feminine +feminine +feminine +94396 neuter +neuter +94399 neuter +94401 masculine +neuter +neuter +neuter +feminine +feminine +feminine +94410 neuter +neuter +neuter +neuter +94419 feminine +feminine +feminine +94426 masculine +masculine +masculine +94430 neuter +neuter +94433 masculine +masculine +masculine +masculine +94439 masculine +94443 masculine +94445 masculine +masculine +94449 neuter +neuter +masculine +masculine +94454 masculine +94456 neuter +neuter +94459 neuter +neuter +masculine +masculine +94465 masculine +masculine +94470 masculine +masculine +94475 neuter +neuter +94479 masculine +masculine +94482 masculine +neuter +masculine +94489 masculine +neuter +neuter +94493 neuter +94496 masculine +masculine +94499 masculine +94502 masculine +94505 masculine +94511 masculine +94513 masculine +masculine +94519 masculine +masculine +94523 masculine +94525 masculine +94527 neuter +94529 masculine +94532 masculine +94535 masculine +94540 neuter +94543 neuter +neuter +94550 masculine +94552 neuter +neuter +94561 neuter +94564 neuter +neuter +neuter +neuter +94571 masculine +94576 masculine +94578 neuter +masculine +masculine +94582 neuter +masculine +94585 masculine +94588 masculine +masculine +94593 neuter +neuter +94596 feminine +neuter +94600 neuter +neuter +neuter +94604 feminine +feminine +94608 masculine +masculine +masculine +94612 feminine +neuter +94616 masculine +masculine +masculine +masculine +masculine +neuter +neuter +94624 masculine +94626 masculine +94628 feminine +feminine +neuter +neuter +94633 neuter +neuter +94637 masculine +94639 neuter +neuter +94642 masculine +feminine +94645 masculine +masculine +feminine +94649 neuter +neuter +neuter +masculine +feminine +94655 neuter +neuter +neuter +94659 masculine +neuter +neuter +94663 neuter +neuter +neuter +94667 masculine +neuter +feminine +94671 masculine +feminine +94674 masculine +feminine +neuter +masculine +neuter +feminine +94681 masculine +feminine +feminine +94685 neuter +neuter +94688 neuter +neuter +94691 neuter +neuter +neuter +neuter +feminine +masculine +94701 neuter +neuter +neuter +94706 neuter +neuter +94710 neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +94722 masculine +masculine +94727 neuter +neuter +94730 masculine +94732 neuter +neuter +94736 masculine +94738 masculine +94740 masculine +94742 masculine +94744 masculine +neuter +neuter +94750 neuter +neuter +94754 neuter +neuter +94757 neuter +94760 masculine +masculine +94765 feminine +94769 neuter +neuter +94773 neuter +94777 neuter +neuter +94782 neuter +neuter +94787 masculine +94791 neuter +neuter +94795 neuter +94799 neuter +neuter +94802 neuter +neuter +neuter +masculine +94807 feminine +feminine +94810 neuter +feminine +94813 feminine +feminine +94817 masculine +masculine +94820 neuter +neuter +neuter +neuter +neuter +94826 neuter +neuter +94833 neuter +neuter +neuter +neuter +94838 neuter +neuter +94843 neuter +neuter +94846 neuter +neuter +94851 masculine +masculine +94854 feminine +feminine +feminine +94862 feminine +feminine +masculine +masculine +feminine +94871 neuter +94873 neuter +neuter +neuter +94877 neuter +neuter +neuter +neuter +94883 neuter +94885 neuter +neuter +neuter +94889 neuter +feminine +feminine +94894 neuter +neuter +94897 feminine +feminine +94901 neuter +neuter +94905 feminine +94908 masculine +masculine +94911 neuter +neuter +neuter +neuter +masculine +feminine +feminine +94921 neuter +94923 neuter +neuter +94926 neuter +neuter +94929 neuter +94931 neuter +neuter +94936 neuter +neuter +94939 neuter +neuter +neuter +94944 neuter +94946 neuter +neuter +neuter +94952 neuter +masculine +94955 neuter +94957 neuter +94960 masculine +94962 masculine +masculine +94965 feminine +feminine +neuter +masculine +neuter +masculine +neuter +masculine +94974 feminine +94976 neuter +neuter +feminine +feminine +neuter +feminine +94983 masculine +masculine +94986 masculine +masculine +94989 masculine +masculine +94992 masculine +feminine +94995 masculine +94997 neuter +neuter +95000 masculine +feminine +95004 masculine +95008 neuter +neuter +neuter +neuter +95015 feminine +feminine +95020 feminine +feminine +masculine +masculine +95025 masculine +masculine +95029 feminine +95033 masculine +masculine +95036 neuter +neuter +95041 feminine +95044 neuter +neuter +neuter +95048 feminine +feminine +feminine +95054 feminine +feminine +feminine +95058 neuter +95061 feminine +95064 neuter +95069 neuter +neuter +neuter +95076 neuter +neuter +95082 feminine +95085 neuter +95087 feminine +feminine +95091 feminine +feminine +95095 feminine +feminine +95105 neuter +feminine +95111 neuter +neuter +95116 feminine +feminine +95120 feminine +feminine +neuter +95124 neuter +95126 neuter +95128 neuter +95130 feminine +feminine +95136 feminine +95139 feminine +95142 feminine +95146 neuter +95150 neuter +95155 neuter +neuter +neuter +95159 neuter +95163 masculine +95166 masculine +95169 masculine +95172 masculine +95175 masculine +95177 neuter +masculine +masculine +95184 neuter +95186 neuter +95189 neuter +95191 neuter +95195 neuter +95205 feminine +feminine +feminine +neuter +neuter +neuter +95212 feminine +feminine +feminine +feminine +95217 feminine +feminine +95221 neuter +neuter +95228 masculine +masculine +feminine +95232 masculine +95235 masculine +95237 masculine +95240 neuter +95242 neuter +95244 masculine +masculine +masculine +95248 feminine +95250 feminine +95252 feminine +masculine +masculine +feminine +masculine +95259 masculine +masculine +feminine +95265 masculine +95268 feminine +95274 masculine +masculine +masculine +95278 masculine +masculine +feminine +95286 feminine +feminine +feminine +95291 masculine +95297 feminine +masculine +neuter +95308 feminine +95311 feminine +95314 feminine +95316 feminine +95318 neuter +neuter +feminine +neuter +95323 masculine +95325 feminine +95327 feminine +masculine +masculine +95334 neuter +neuter +95337 neuter +neuter +95342 feminine +feminine +feminine +95346 masculine +95349 masculine +95355 feminine +feminine +95358 masculine +masculine +95363 neuter +neuter +95367 masculine +95369 masculine +95372 neuter +neuter +feminine +95377 masculine +95379 neuter +neuter +95385 feminine +feminine +feminine +feminine +95390 masculine +masculine +masculine +95394 masculine +masculine +95398 masculine +95403 masculine +neuter +95407 feminine +feminine +feminine +feminine +95415 masculine +masculine +feminine +95424 feminine +neuter +neuter +95430 masculine +masculine +95433 masculine +95436 neuter +95439 neuter +neuter +95444 masculine +masculine +95447 neuter +neuter +95452 masculine +masculine +95457 neuter +masculine +masculine +masculine +masculine +masculine +masculine +95466 neuter +95469 feminine +feminine +feminine +95473 neuter +95483 masculine +masculine +95488 masculine +masculine +masculine +95493 feminine +95497 feminine +95500 masculine +masculine +masculine +95507 masculine +95510 masculine +masculine +95513 feminine +masculine +95516 neuter +95518 feminine +feminine +95521 feminine +feminine +95525 feminine +feminine +masculine +95530 masculine +masculine +95535 masculine +95538 neuter +masculine +95541 masculine +masculine +masculine +95550 masculine +95552 feminine +feminine +95555 neuter +95558 masculine +masculine +95561 masculine +masculine +95564 feminine +feminine +95567 masculine +masculine +95570 masculine +masculine +95575 feminine +feminine +feminine +95579 neuter +neuter +95582 masculine +95584 feminine +95587 masculine +95589 masculine +95596 masculine +95600 masculine +masculine +95603 masculine +95606 masculine +95609 masculine +neuter +neuter +feminine +feminine +masculine +neuter +95619 masculine +95621 neuter +95623 masculine +masculine +masculine +95628 masculine +masculine +95634 neuter +95636 masculine +95639 masculine +masculine +95642 feminine +95644 feminine +95646 feminine +95648 feminine +95650 neuter +95652 feminine +95655 feminine +masculine +95661 neuter +neuter +masculine +95666 neuter +95668 masculine +95674 masculine +95677 feminine +95680 masculine +95682 masculine +masculine +95685 masculine +95688 masculine +95691 masculine +masculine +95696 masculine +masculine +95699 masculine +masculine +95705 masculine +masculine +95709 masculine +95712 masculine +95715 neuter +masculine +masculine +95722 feminine +masculine +masculine +95726 feminine +95729 feminine +feminine +feminine +masculine +masculine +feminine +feminine +95737 feminine +feminine +95743 feminine +95749 masculine +masculine +95754 neuter +95758 masculine +masculine +masculine +masculine +95764 neuter +95766 feminine +95769 feminine +95773 masculine +masculine +masculine +masculine +95781 masculine +95784 masculine +95787 masculine +95789 masculine +95791 neuter +95795 masculine +feminine +95800 masculine +95804 masculine +95807 neuter +95810 neuter +95812 feminine +95816 neuter +95820 feminine +95823 masculine +95826 neuter +neuter +neuter +95831 neuter +95835 neuter +95839 neuter +95842 masculine +masculine +95857 masculine +neuter +95862 masculine +95865 feminine +feminine +95869 feminine +feminine +95877 feminine +feminine +feminine +feminine +95882 feminine +feminine +95887 masculine +95889 masculine +95894 masculine +masculine +95898 masculine +masculine +masculine +95905 masculine +95909 masculine +95911 masculine +masculine +masculine +95915 masculine +masculine +95920 neuter +neuter +95925 masculine +masculine +masculine +masculine +masculine +95932 masculine +95934 masculine +95937 feminine +feminine +masculine +masculine +95942 feminine +masculine +95945 neuter +95948 feminine +feminine +masculine +feminine +95955 feminine +95958 masculine +masculine +masculine +95966 feminine +feminine +masculine +masculine +95976 masculine +95984 masculine +95988 masculine +95994 masculine +95996 feminine +masculine +96002 feminine +masculine +96007 masculine +96011 masculine +96015 neuter +neuter +neuter +96019 feminine +96021 feminine +feminine +96027 masculine +masculine +masculine +96033 masculine +masculine +96037 masculine +masculine +masculine +96044 masculine +96049 masculine +96053 masculine +96057 masculine +96060 feminine +feminine +feminine +96067 feminine +feminine +96072 masculine +masculine +96075 masculine +96079 feminine +feminine +feminine +96083 masculine +masculine +96086 neuter +masculine +masculine +masculine +96095 masculine +masculine +feminine +masculine +masculine +96103 masculine +masculine +96107 masculine +feminine +masculine +96113 masculine +masculine +masculine +96120 masculine +masculine +masculine +96125 masculine +96127 neuter +neuter +neuter +feminine +masculine +96133 masculine +masculine +masculine +96137 feminine +feminine +masculine +96141 neuter +neuter +96145 feminine +feminine +masculine +masculine +96150 masculine +96153 feminine +feminine +96156 feminine +feminine +96159 feminine +96162 masculine +96165 masculine +96167 masculine +masculine +masculine +96171 masculine +masculine +masculine +masculine +masculine +masculine +masculine +96180 neuter +96183 masculine +masculine +masculine +96190 neuter +96192 neuter +96195 masculine +masculine +masculine +neuter +neuter +96203 masculine +neuter +neuter +96208 masculine +masculine +masculine +96212 masculine +masculine +masculine +neuter +neuter +96219 masculine +masculine +neuter +96223 neuter +96225 neuter +96227 masculine +masculine +96230 masculine +masculine +96234 masculine +96237 neuter +96241 masculine +neuter +96246 feminine +feminine +masculine +96250 feminine +96253 feminine +feminine +feminine +feminine +96259 masculine +masculine +masculine +masculine +96266 masculine +96269 feminine +neuter +96272 neuter +neuter +96275 masculine +96287 neuter +neuter +feminine +feminine +96297 feminine +masculine +masculine +96302 feminine +96307 masculine +96310 masculine +masculine +96313 neuter +neuter +96316 masculine +neuter +96326 neuter +96329 neuter +neuter +neuter +neuter +96335 masculine +masculine +96339 masculine +96341 masculine +masculine +masculine +96345 masculine +masculine +96348 masculine +neuter +96353 neuter +neuter +neuter +neuter +neuter +96359 feminine +feminine +feminine +feminine +feminine +96366 feminine +masculine +96369 feminine +feminine +neuter +96373 feminine +feminine +neuter +96377 feminine +masculine +96380 neuter +neuter +96383 neuter +neuter +96387 feminine +feminine +neuter +neuter +feminine +96393 feminine +feminine +neuter +neuter +feminine +feminine +masculine +96401 feminine +feminine +feminine +96405 feminine +feminine +masculine +96409 masculine +masculine +96413 feminine +96416 feminine +feminine +masculine +masculine +96422 feminine +96425 feminine +96428 feminine +96431 feminine +96434 feminine +96437 feminine +96439 neuter +neuter +96442 neuter +neuter +96446 neuter +neuter +96450 neuter +96455 masculine +masculine +masculine +masculine +96460 feminine +feminine +masculine +masculine +masculine +96466 neuter +neuter +96470 neuter +neuter +neuter +96474 neuter +neuter +96477 neuter +neuter +masculine +masculine +masculine +96483 feminine +masculine +masculine +masculine +masculine +96489 masculine +masculine +masculine +masculine +masculine +96495 masculine +masculine +96498 masculine +masculine +masculine +masculine +96503 masculine +masculine +96508 feminine +feminine +masculine +masculine +96514 feminine +feminine +masculine +masculine +96519 neuter +96521 masculine +96523 feminine +96525 neuter +feminine +masculine +96532 feminine +feminine +feminine +feminine +96538 neuter +96541 masculine +96545 masculine +96548 neuter +96550 feminine +masculine +96553 feminine +feminine +feminine +96559 masculine +masculine +96562 masculine +96568 neuter +neuter +neuter +96572 feminine +96574 neuter +neuter +neuter +96578 feminine +96581 neuter +neuter +neuter +96585 feminine +96587 neuter +neuter +neuter +96591 feminine +96594 masculine +masculine +masculine +masculine +96599 masculine +masculine +96602 neuter +masculine +96606 neuter +neuter +masculine +96611 neuter +neuter +96614 neuter +neuter +masculine +masculine +feminine +feminine +96621 feminine +feminine +feminine +feminine +masculine +masculine +96628 feminine +masculine +masculine +masculine +masculine +96634 neuter +neuter +96637 masculine +masculine +96640 masculine +masculine +96643 masculine +96645 masculine +96647 masculine +masculine +masculine +96651 neuter +neuter +masculine +masculine +96656 masculine +96658 masculine +masculine +96663 masculine +96665 masculine +96668 feminine +feminine +feminine +96672 masculine +masculine +96676 feminine +feminine +feminine +feminine +96685 feminine +neuter +masculine +96690 masculine +96692 masculine +neuter +96695 neuter +96702 feminine +96708 masculine +96711 feminine +masculine +96715 feminine +feminine +96719 feminine +96722 neuter +96724 neuter +96735 feminine +96738 feminine +96743 neuter +96761 feminine +96765 masculine +masculine +96771 masculine +masculine +96777 feminine +96779 feminine +feminine +96784 feminine +feminine +96787 feminine +96789 masculine +masculine +96794 masculine +96802 neuter +neuter +masculine +96810 masculine +masculine +96815 masculine +96817 feminine +96824 masculine +96826 masculine +masculine +96830 masculine +masculine +masculine +neuter +96835 masculine +96841 masculine +masculine +96847 neuter +96858 feminine +feminine +96862 neuter +96865 feminine +96870 masculine +96872 feminine +feminine +masculine +96877 feminine +feminine +feminine +96882 feminine +masculine +masculine +96886 masculine +96891 masculine +masculine +96894 masculine +masculine +masculine +96898 masculine +96902 feminine +feminine +masculine +96906 masculine +96908 masculine +96910 neuter +neuter +neuter +masculine +96917 neuter +neuter +neuter +96921 neuter +96925 masculine +masculine +96929 feminine +feminine +feminine +feminine +96936 masculine +neuter +masculine +96940 feminine +96942 feminine +96944 masculine +masculine +feminine +96949 masculine +masculine +masculine +96953 masculine +96955 neuter +neuter +masculine +masculine +feminine +feminine +feminine +masculine +96964 masculine +96967 masculine +masculine +96970 neuter +masculine +96973 feminine +feminine +masculine +masculine +masculine +96980 feminine +feminine +96984 masculine +96987 masculine +masculine +masculine +masculine +masculine +masculine +96994 neuter +masculine +96997 masculine +masculine +masculine +feminine +feminine +masculine +masculine +feminine +feminine +97007 feminine +97009 masculine +masculine +masculine +masculine +masculine +97015 feminine +feminine +feminine +97019 feminine +97021 feminine +97023 masculine +masculine +97027 masculine +masculine +masculine +masculine +masculine +masculine +97034 masculine +masculine +masculine +97038 masculine +masculine +masculine +masculine +masculine +masculine +97045 masculine +feminine +feminine +masculine +masculine +97052 feminine +feminine +feminine +97057 neuter +97061 masculine +97063 feminine +feminine +97066 feminine +feminine +feminine +97070 masculine +97072 masculine +masculine +97077 neuter +neuter +masculine +masculine +97085 masculine +masculine +97089 feminine +feminine +97096 feminine +97098 feminine +97100 feminine +97104 feminine +97106 feminine +feminine +feminine +97110 feminine +neuter +neuter +neuter +neuter +97119 feminine +feminine +97122 feminine +97125 masculine +97129 masculine +neuter +neuter +97134 feminine +feminine +97137 masculine +97143 feminine +feminine +97146 feminine +feminine +97149 feminine +feminine +97153 feminine +97155 feminine +97161 neuter +97164 masculine +97166 masculine +neuter +neuter +masculine +masculine +97174 masculine +97177 masculine +97180 masculine +masculine +masculine +masculine +masculine +masculine +masculine +97188 masculine +masculine +97195 masculine +97201 masculine +97206 feminine +feminine +97210 neuter +neuter +neuter +97215 neuter +97217 neuter +97222 feminine +feminine +97225 feminine +97227 neuter +neuter +feminine +feminine +97234 feminine +97236 feminine +masculine +masculine +97241 feminine +feminine +97245 feminine +masculine +97249 masculine +masculine +97259 neuter +97262 neuter +97271 neuter +97278 neuter +97280 neuter +97288 feminine +feminine +masculine +masculine +97293 masculine +97295 feminine +feminine +feminine +97299 neuter +97304 feminine +feminine +97312 feminine +97316 feminine +97325 feminine +feminine +97328 neuter +masculine +97332 feminine +feminine +97336 neuter +97339 feminine +97345 neuter +97349 neuter +97353 masculine +masculine +masculine +97357 masculine +masculine +97360 masculine +97369 masculine +masculine +masculine +masculine +masculine +masculine +masculine +97380 masculine +97384 masculine +97386 masculine +97395 masculine +97398 feminine +feminine +masculine +97402 masculine +neuter +97408 masculine +neuter +97411 masculine +masculine +97414 feminine +97418 masculine +masculine +97424 masculine +97426 masculine +97428 masculine +masculine +97431 masculine +97434 masculine +masculine +masculine +neuter +neuter +97440 feminine +feminine +97445 masculine +masculine +masculine +97450 feminine +feminine +feminine +97454 masculine +97459 feminine +97464 feminine +feminine +97467 masculine +97469 feminine +feminine +97473 feminine +feminine +97478 masculine +neuter +neuter +97484 feminine +97494 masculine +masculine +masculine +97500 masculine +masculine +97506 neuter +neuter +97510 masculine +feminine +97514 masculine +97518 masculine +97520 masculine +97523 feminine +feminine +feminine +masculine +97531 feminine +feminine +97534 feminine +feminine +97539 neuter +neuter +97547 feminine +feminine +feminine +97556 masculine +97563 neuter +masculine +97569 neuter +masculine +masculine +feminine +feminine +feminine +feminine +97577 masculine +masculine +97588 feminine +feminine +feminine +97592 masculine +masculine +97599 masculine +feminine +97603 neuter +97608 feminine +feminine +97613 neuter +masculine +97617 masculine +neuter +97624 neuter +97627 neuter +97632 neuter +masculine +97638 masculine +masculine +97642 masculine +neuter +neuter +97647 masculine +97649 feminine +feminine +97652 neuter +neuter +masculine +masculine +97657 feminine +97659 feminine +97661 masculine +97664 feminine +neuter +neuter +97668 neuter +97672 masculine +masculine +masculine +97677 masculine +masculine +97681 feminine +97683 feminine +masculine +masculine +masculine +97688 masculine +97691 masculine +masculine +97694 feminine +feminine +feminine +feminine +masculine +masculine +97703 masculine +masculine +97706 masculine +feminine +97709 masculine +masculine +97712 masculine +masculine +97716 masculine +masculine +97719 masculine +feminine +97722 masculine +97724 masculine +97726 masculine +feminine +97729 feminine +97731 feminine +97734 neuter +masculine +masculine +97740 masculine +masculine +masculine +masculine +masculine +97746 masculine +masculine +97751 feminine +97755 masculine +97757 masculine +97759 masculine +97763 masculine +97769 masculine +feminine +feminine +97777 feminine +feminine +97782 feminine +97784 feminine +feminine +97787 feminine +97789 feminine +97791 masculine +masculine +masculine +97796 feminine +masculine +feminine +97801 feminine +97803 neuter +97805 neuter +masculine +masculine +97810 feminine +feminine +97814 feminine +feminine +feminine +97818 feminine +feminine +97822 masculine +masculine +97825 masculine +masculine +97830 masculine +masculine +97834 neuter +97837 masculine +97839 feminine +feminine +97843 masculine +masculine +masculine +97849 masculine +feminine +feminine +97853 neuter +97855 neuter +97857 neuter +neuter +97861 neuter +neuter +97866 feminine +feminine +masculine +masculine +97871 neuter +feminine +masculine +97876 feminine +97880 masculine +masculine +masculine +97885 neuter +neuter +masculine +97889 feminine +feminine +neuter +neuter +masculine +feminine +feminine +97899 feminine +feminine +neuter +neuter +97905 feminine +97908 feminine +feminine +feminine +feminine +feminine +neuter +97916 feminine +feminine +feminine +feminine +feminine +97925 neuter +neuter +97928 neuter +neuter +neuter +97932 feminine +feminine +feminine +97937 neuter +neuter +97940 feminine +neuter +97943 neuter +neuter +97946 feminine +97948 masculine +feminine +feminine +feminine +feminine +97957 masculine +97959 neuter +97961 neuter +neuter +masculine +97965 neuter +97968 masculine +masculine +masculine +97972 neuter +neuter +neuter +neuter +97978 neuter +neuter +masculine +97983 feminine +97985 feminine +neuter +neuter +neuter +97990 feminine +feminine +feminine +feminine +feminine +97997 neuter +98000 masculine +98008 masculine +neuter +98011 feminine +feminine +masculine +98020 masculine +98022 neuter +neuter +98025 masculine +masculine +neuter +neuter +98032 neuter +neuter +masculine +feminine +98038 masculine +neuter +neuter +feminine +feminine +masculine +masculine +feminine +feminine +feminine +98050 feminine +98052 feminine +98055 masculine +neuter +98058 neuter +masculine +feminine +feminine +feminine +98069 neuter +neuter +feminine +feminine +98074 masculine +98076 feminine +98078 masculine +masculine +masculine +masculine +masculine +98084 feminine +feminine +feminine +feminine +masculine +masculine +98091 feminine +feminine +masculine +98095 masculine +masculine +98101 neuter +neuter +neuter +98106 masculine +masculine +98109 neuter +98111 masculine +masculine +masculine +masculine +masculine +masculine +98118 neuter +neuter +masculine +masculine +98123 neuter +98126 masculine +masculine +neuter +neuter +feminine +feminine +masculine +masculine +masculine +98136 feminine +masculine +masculine +98141 masculine +98144 masculine +masculine +masculine +98148 masculine +masculine +98152 masculine +98154 masculine +masculine +masculine +masculine +98159 neuter +neuter +98162 masculine +98165 feminine +feminine +98169 masculine +feminine +feminine +feminine +feminine +masculine +masculine +98177 neuter +masculine +98181 masculine +masculine +masculine +98185 neuter +neuter +98188 feminine +feminine +feminine +feminine +98193 masculine +masculine +98200 masculine +masculine +98204 masculine +masculine +98208 masculine +masculine +98212 masculine +masculine +98216 masculine +98218 feminine +feminine +masculine +masculine +98223 neuter +neuter +masculine +98228 feminine +feminine +masculine +masculine +98233 neuter +neuter +98240 masculine +masculine +98243 masculine +98246 masculine +98249 feminine +feminine +masculine +masculine +98255 feminine +feminine +feminine +98260 masculine +masculine +98266 feminine +feminine +98271 masculine +neuter +neuter +neuter +feminine +feminine +98278 neuter +neuter +98289 masculine +98291 masculine +masculine +masculine +masculine +masculine +98299 masculine +98306 neuter +neuter +98311 feminine +feminine +feminine +98315 masculine +masculine +feminine +feminine +98321 feminine +feminine +masculine +masculine +98331 masculine +98334 masculine +98337 masculine +98341 feminine +98343 feminine +98345 neuter +98347 neuter +feminine +feminine +98351 feminine +98353 feminine +neuter +neuter +feminine +98360 masculine +98362 neuter +neuter +98365 neuter +98367 neuter +98369 neuter +neuter +neuter +98373 neuter +98375 neuter +neuter +98381 feminine +feminine +98384 feminine +neuter +neuter +98389 masculine +98391 feminine +feminine +feminine +feminine +98396 masculine +masculine +98401 neuter +98403 neuter +neuter +98406 neuter +98408 masculine +98410 masculine +98414 masculine +98416 masculine +98420 masculine +masculine +98423 neuter +neuter +98426 masculine +98428 neuter +98436 neuter +neuter +98439 feminine +feminine +98442 masculine +masculine +98446 neuter +neuter +masculine +masculine +masculine +98452 masculine +masculine +neuter +neuter +98457 masculine +98460 masculine +98462 masculine +98464 neuter +neuter +98468 masculine +masculine +98472 feminine +98476 neuter +98484 neuter +neuter +98489 masculine +masculine +98495 masculine +98497 masculine +masculine +masculine +98502 masculine +masculine +98507 neuter +neuter +masculine +masculine +98514 masculine +neuter +98517 neuter +neuter +98520 neuter +98523 neuter +98525 neuter +98527 masculine +masculine +masculine +masculine +masculine +masculine +98535 masculine +98541 feminine +feminine +98547 masculine +98551 feminine +neuter +masculine +98560 masculine +98562 neuter +masculine +98567 feminine +98571 masculine +98576 feminine +feminine +masculine +masculine +98582 masculine +neuter +98585 masculine +98587 masculine +98590 masculine +masculine +98595 masculine +98598 masculine +masculine +98602 masculine +98604 masculine +98606 masculine +masculine +98609 masculine +98613 masculine +98615 masculine +98618 feminine +98623 feminine +masculine +98631 masculine +98633 masculine +feminine +feminine +neuter +neuter +98641 neuter +98643 neuter +neuter +98646 masculine +masculine +masculine +masculine +98651 masculine +98653 masculine +98655 masculine +98657 feminine +feminine +feminine +feminine +98663 masculine +98665 masculine +98667 masculine +masculine +masculine +98671 masculine +masculine +neuter +neuter +masculine +98677 masculine +98680 masculine +masculine +feminine +feminine +98686 masculine +98689 masculine +masculine +masculine +98696 masculine +98698 masculine +masculine +masculine +98702 masculine +feminine +98706 feminine +98711 feminine +masculine +98714 masculine +98716 masculine +98721 neuter +feminine +feminine +masculine +masculine +98730 masculine +masculine +98736 feminine +feminine +98742 masculine +masculine +98746 feminine +feminine +feminine +feminine +98751 neuter +masculine +98756 feminine +feminine +98760 neuter +masculine +masculine +98764 masculine +masculine +98767 feminine +feminine +98770 feminine +98772 feminine +98774 feminine +98776 feminine +98778 feminine +98780 feminine +98782 masculine +98784 feminine +98786 feminine +98788 feminine +98790 feminine +98792 feminine +98794 feminine +98796 neuter +neuter +98799 feminine +feminine +98802 masculine +feminine +98805 feminine +masculine +98808 neuter +neuter +feminine +feminine +feminine +neuter +98815 neuter +98817 feminine +98819 feminine +98821 feminine +98823 feminine +98825 masculine +98827 masculine +98829 masculine +98831 masculine +98833 masculine +98838 masculine +98841 masculine +98843 masculine +98846 masculine +98848 masculine +98850 masculine +masculine +98853 neuter +masculine +98856 neuter +masculine +masculine +neuter +neuter +98865 feminine +feminine +98876 neuter +neuter +98880 feminine +feminine +feminine +98884 neuter +98891 masculine +masculine +98894 feminine +feminine +feminine +98898 feminine +98900 feminine +feminine +neuter +98904 neuter +98906 feminine +feminine +masculine +98910 masculine +98912 feminine +feminine +masculine +98916 masculine +98918 feminine +feminine +masculine +masculine +98923 neuter +98926 masculine +masculine +masculine +98932 masculine +masculine +98937 masculine +98942 masculine +masculine +98945 masculine +98948 masculine +98952 neuter +masculine +98957 neuter +98961 masculine +98969 masculine +98975 masculine +98977 feminine +98979 masculine +masculine +98982 masculine +masculine +feminine +feminine +feminine +98988 masculine +98990 masculine +masculine +feminine +98994 neuter +masculine +feminine +98998 masculine +masculine +99002 masculine +99004 masculine +99006 masculine +99009 feminine +99016 feminine +feminine +99021 neuter +99025 feminine +99027 feminine +99030 feminine +99032 feminine +99036 feminine +feminine +99039 feminine +feminine +99042 feminine +feminine +feminine +99048 masculine +99051 feminine +feminine +99054 feminine +feminine +feminine +99060 neuter +masculine +99063 feminine +99065 masculine +99067 masculine +masculine +masculine +masculine +masculine +masculine +99076 feminine +feminine +masculine +99081 neuter +99083 feminine +feminine +masculine +99089 feminine +feminine +feminine +99095 masculine +99097 feminine +99099 feminine +masculine +99102 masculine +masculine +99105 masculine +99118 feminine +feminine +99127 feminine +feminine +feminine +99133 feminine +99145 feminine +99149 masculine +99152 neuter +99157 feminine +99159 masculine +feminine +feminine +99163 feminine +feminine +99167 feminine +masculine +masculine +feminine +masculine +99175 neuter +neuter +neuter +99179 masculine +99183 feminine +feminine +99186 feminine +99188 feminine +99190 masculine +99192 feminine +99194 masculine +99196 feminine +99198 neuter +99200 masculine +masculine +99203 neuter +neuter +99212 masculine +masculine +99216 masculine +masculine +99220 neuter +99222 feminine +feminine +99225 feminine +99231 masculine +masculine +99234 neuter +99238 feminine +feminine +99245 feminine +feminine +masculine +99250 neuter +neuter +masculine +99254 masculine +99258 neuter +masculine +99267 neuter +99269 feminine +99274 feminine +feminine +99278 masculine +feminine +99282 neuter +neuter +masculine +99289 masculine +feminine +masculine +99293 feminine +99296 masculine +99298 masculine +99300 masculine +99304 neuter +99309 masculine +99312 feminine +feminine +masculine +masculine +feminine +feminine +99319 feminine +feminine +feminine +feminine +99325 feminine +feminine +feminine +feminine +feminine +feminine +feminine +masculine +99334 feminine +99336 neuter +feminine +masculine +99341 neuter +neuter +feminine +feminine +masculine +99349 feminine +99352 feminine +masculine +99355 feminine +feminine +masculine +99359 feminine +feminine +99362 feminine +feminine +feminine +feminine +feminine +99368 masculine +masculine +99375 masculine +99377 neuter +masculine +masculine +99383 neuter +masculine +99386 neuter +99389 masculine +99399 feminine +feminine +feminine +99405 neuter +99407 feminine +99409 masculine +99411 feminine +99413 feminine +feminine +99416 feminine +99421 feminine +99425 feminine +feminine +feminine +99431 feminine +99435 feminine +masculine +feminine +99439 neuter +feminine +feminine +feminine +neuter +masculine +99447 feminine +feminine +masculine +masculine +99452 masculine +masculine +99458 masculine +masculine +99462 feminine +masculine +feminine +99467 feminine +99469 neuter +99472 neuter +99475 masculine +99477 neuter +neuter +99482 neuter +99490 neuter +99495 feminine +feminine +neuter +99501 neuter +99504 neuter +99508 feminine +feminine +99514 masculine +99522 masculine +feminine +99525 feminine +99528 feminine +99530 masculine +99532 masculine +neuter +99535 neuter +99537 neuter +masculine +neuter +99542 neuter +masculine +neuter +99547 neuter +99549 neuter +99552 feminine +99555 masculine +neuter +neuter +99561 masculine +neuter +neuter +99567 feminine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +99578 feminine +feminine +masculine +99583 feminine +feminine +99587 masculine +masculine +masculine +99596 masculine +masculine +masculine +masculine +masculine +masculine +99603 neuter +neuter +99606 feminine +feminine +feminine +99611 neuter +99614 masculine +99616 feminine +feminine +masculine +99621 feminine +feminine +feminine +feminine +feminine +99629 feminine +masculine +masculine +masculine +feminine +99635 feminine +99637 masculine +neuter +99640 masculine +99644 feminine +feminine +feminine +feminine +feminine +99653 neuter +99655 neuter +99657 masculine +99661 masculine +99664 masculine +masculine +masculine +99668 masculine +99671 neuter +99673 masculine +masculine +99677 neuter +masculine +feminine +feminine +feminine +99686 masculine +masculine +masculine +99692 masculine +99694 masculine +99696 masculine +feminine +feminine +masculine +99701 feminine +feminine +feminine +feminine +99708 feminine +99712 masculine +masculine +99715 neuter +feminine +feminine +99721 feminine +feminine +feminine +99725 masculine +masculine +neuter +99730 neuter +99735 feminine +feminine +99738 feminine +99742 masculine +99744 feminine +99749 neuter +99751 neuter +99753 masculine +masculine +99757 masculine +masculine +99761 neuter +neuter +99764 neuter +99769 neuter +neuter +neuter +99775 masculine +99783 masculine +99787 masculine +99795 feminine +feminine +feminine +99799 neuter +99802 masculine +masculine +99810 feminine +feminine +feminine +99814 feminine +feminine +99819 feminine +99823 feminine +99825 neuter +masculine +masculine +99833 masculine +masculine +99836 feminine +99838 feminine +99841 masculine +99844 feminine +feminine +99848 feminine +99851 feminine +99853 masculine +masculine +99856 masculine +masculine +99860 masculine +masculine +feminine +feminine +99869 neuter +99871 feminine +feminine +masculine +99876 neuter +neuter +neuter +99883 masculine +masculine +feminine +feminine +masculine +99890 masculine +masculine +99893 masculine +masculine +neuter +masculine +masculine +99899 masculine +99901 feminine +99905 masculine +masculine +99910 neuter +neuter +feminine +feminine +99916 neuter +masculine +99919 feminine +feminine +feminine +99925 feminine +masculine +masculine +99929 feminine +feminine +feminine +feminine +feminine +99935 neuter +99937 feminine +neuter +neuter +masculine +masculine +99944 feminine +99946 feminine +feminine +masculine +masculine +99951 feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +99960 feminine +feminine +feminine +feminine +99966 neuter +neuter +masculine +masculine +99971 feminine +feminine +feminine +99975 masculine +99978 masculine +99980 masculine +feminine +99984 masculine +99987 feminine +feminine +feminine +masculine +masculine +99994 feminine +masculine +masculine +99998 feminine +feminine +masculine +feminine +100003 masculine +100005 masculine +100009 feminine +feminine +100012 feminine +masculine +masculine +masculine +100018 neuter +masculine +100023 masculine +100029 neuter +100031 masculine +100033 feminine +feminine +feminine +100039 masculine +masculine +masculine +100045 feminine +masculine +100049 feminine +masculine +100053 feminine +100056 neuter +neuter +feminine +feminine +100062 neuter +100064 neuter +masculine +masculine +100068 feminine +neuter +masculine +masculine +100073 neuter +neuter +neuter +100077 feminine +feminine +masculine +masculine +100082 masculine +neuter +neuter +100086 feminine +feminine +masculine +masculine +100092 neuter +masculine +100095 feminine +feminine +100100 feminine +feminine +neuter +100104 neuter +100107 masculine +100109 masculine +masculine +100112 neuter +100116 masculine +100119 masculine +masculine +100127 neuter +neuter +100131 feminine +feminine +100134 feminine +100136 masculine +masculine +100139 feminine +100143 feminine +100155 feminine +feminine +100160 feminine +feminine +feminine +100164 feminine +100166 feminine +feminine +neuter +neuter +feminine +100172 masculine +masculine +masculine +neuter +100177 masculine +masculine +100180 masculine +100182 masculine +masculine +100185 feminine +masculine +masculine +100189 masculine +neuter +neuter +100198 masculine +masculine +masculine +masculine +masculine +100204 masculine +100206 masculine +masculine +masculine +100210 masculine +masculine +masculine +100219 neuter +neuter +100224 neuter +neuter +masculine +masculine +masculine +100231 masculine +masculine +neuter +100242 masculine +100246 masculine +100253 neuter +neuter +masculine +masculine +100259 neuter +neuter +masculine +100263 masculine +masculine +100266 feminine +masculine +feminine +feminine +feminine +100276 masculine +masculine +100280 feminine +100282 neuter +100288 masculine +masculine +100291 neuter +neuter +100295 masculine +masculine +100298 masculine +100302 masculine +masculine +masculine +masculine +100307 masculine +100309 masculine +masculine +masculine +100316 neuter +neuter +feminine +100326 masculine +masculine +100331 masculine +masculine +feminine +feminine +100336 masculine +masculine +100343 masculine +masculine +100346 feminine +100348 feminine +feminine +masculine +100352 neuter +neuter +100356 feminine +feminine +100359 feminine +feminine +feminine +100363 masculine +100367 masculine +masculine +100370 masculine +masculine +masculine +100377 neuter +neuter +neuter +100383 neuter +neuter +neuter +100392 neuter +100394 masculine +100396 masculine +100400 masculine +masculine +masculine +100405 feminine +feminine +100409 neuter +masculine +100412 neuter +100416 feminine +100418 masculine +masculine +100425 neuter +masculine +masculine +neuter +100431 feminine +feminine +100434 masculine +neuter +100437 feminine +100439 feminine +100441 masculine +100445 masculine +100448 masculine +100450 neuter +neuter +100454 masculine +masculine +masculine +100458 feminine +100461 neuter +masculine +masculine +100469 feminine +masculine +100474 feminine +feminine +feminine +100482 neuter +neuter +feminine +feminine +100487 neuter +100492 masculine +masculine +100496 neuter +100502 feminine +feminine +masculine +masculine +feminine +100509 neuter +100516 masculine +masculine +masculine +masculine +masculine +masculine +100523 masculine +masculine +100527 neuter +100529 masculine +masculine +masculine +100534 masculine +neuter +100538 neuter +100541 masculine +masculine +masculine +100546 masculine +feminine +masculine +neuter +neuter +100553 neuter +neuter +masculine +100559 masculine +100562 masculine +100569 masculine +100574 neuter +neuter +100577 neuter +100581 masculine +100586 feminine +100588 feminine +feminine +feminine +feminine +feminine +100594 masculine +100597 feminine +feminine +100604 masculine +masculine +masculine +masculine +100611 masculine +100615 masculine +100618 masculine +100621 masculine +100624 masculine +100626 neuter +100630 feminine +100639 neuter +masculine +100643 feminine +100647 masculine +100650 masculine +100653 neuter +masculine +100657 masculine +masculine +100660 masculine +100665 masculine +100668 feminine +100671 feminine +100674 masculine +100677 masculine +100681 feminine +100689 neuter +100691 masculine +masculine +100694 feminine +100696 masculine +masculine +masculine +masculine +masculine +100702 neuter +masculine +100705 neuter +masculine +100708 feminine +masculine +100711 feminine +masculine +100714 feminine +masculine +100717 masculine +masculine +100720 masculine +100722 feminine +100725 masculine +100727 neuter +100729 feminine +100732 neuter +100734 feminine +100736 neuter +100738 feminine +feminine +100741 feminine +100743 feminine +feminine +feminine +feminine +feminine +feminine +masculine +100754 masculine +100763 neuter +feminine +feminine +100768 masculine +masculine +100771 masculine +masculine +masculine +masculine +masculine +masculine +masculine +100779 masculine +masculine +100786 feminine +masculine +masculine +masculine +masculine +masculine +100793 feminine +feminine +masculine +100800 feminine +100802 feminine +100805 neuter +neuter +100809 feminine +feminine +masculine +100816 neuter +100820 feminine +100822 feminine +masculine +100825 masculine +100827 masculine +100830 neuter +100835 neuter +neuter +100839 masculine +masculine +100843 neuter +neuter +masculine +masculine +masculine +100849 masculine +masculine +100853 masculine +masculine +masculine +100858 neuter +100861 neuter +neuter +100865 masculine +masculine +100871 masculine +masculine +100875 neuter +neuter +neuter +100880 neuter +masculine +100883 masculine +masculine +100888 masculine +100894 feminine +feminine +100902 masculine +100904 feminine +100909 masculine +100914 neuter +100922 feminine +feminine +feminine +feminine +100932 masculine +feminine +feminine +masculine +masculine +100944 masculine +100946 masculine +masculine +100958 feminine +feminine +100962 feminine +feminine +100965 feminine +100968 neuter +100972 feminine +feminine +100978 feminine +feminine +masculine +masculine +100985 feminine +100987 feminine +100989 feminine +100991 masculine +100993 feminine +100995 masculine +101000 masculine +101003 masculine +101014 neuter +101016 masculine +101018 masculine +101021 neuter +101024 neuter +neuter +masculine +masculine +101032 feminine +feminine +101035 neuter +101037 neuter +101039 feminine +101041 neuter +101043 neuter +101046 feminine +feminine +feminine +101052 masculine +101059 feminine +feminine +feminine +101063 neuter +neuter +101076 neuter +101083 neuter +neuter +masculine +masculine +101089 masculine +masculine +neuter +neuter +101095 neuter +101100 feminine +feminine +101107 neuter +101116 masculine +masculine +masculine +101122 masculine +masculine +101128 masculine +101132 masculine +101135 masculine +masculine +101140 masculine +101142 neuter +neuter +neuter +101147 neuter +neuter +neuter +101156 masculine +101158 masculine +101161 masculine +neuter +neuter +101165 feminine +101167 feminine +101172 masculine +101174 masculine +101181 masculine +101186 feminine +masculine +masculine +feminine +feminine +masculine +feminine +feminine +101196 masculine +101200 masculine +masculine +101207 masculine +masculine +masculine +101212 masculine +101214 feminine +feminine +101217 feminine +101219 feminine +feminine +101222 neuter +neuter +101228 neuter +101230 masculine +101232 masculine +101234 neuter +neuter +101240 masculine +neuter +neuter +101244 masculine +101246 masculine +masculine +101249 masculine +masculine +masculine +101256 neuter +101262 feminine +masculine +101266 masculine +masculine +masculine +101281 feminine +101285 feminine +masculine +101292 masculine +101296 masculine +101298 feminine +masculine +101302 masculine +101307 feminine +feminine +masculine +101314 masculine +101316 masculine +masculine +101322 masculine +101332 masculine +101336 masculine +masculine +101341 neuter +neuter +101346 masculine +101351 neuter +neuter +101357 masculine +101362 neuter +101364 feminine +feminine +101368 feminine +feminine +101377 masculine +101381 neuter +feminine +101384 feminine +101386 neuter +neuter +masculine +101391 masculine +101396 feminine +feminine +feminine +masculine +masculine +101404 feminine +101408 feminine +masculine +neuter +101414 neuter +neuter +101419 masculine +masculine +feminine +feminine +101424 feminine +101429 masculine +101431 neuter +neuter +101435 masculine +masculine +masculine +feminine +feminine +masculine +masculine +masculine +masculine +101445 feminine +feminine +masculine +masculine +101450 feminine +feminine +neuter +neuter +neuter +101456 masculine +101458 masculine +masculine +101462 masculine +101465 masculine +101468 masculine +masculine +101471 masculine +masculine +masculine +masculine +masculine +101477 masculine +101479 masculine +101482 masculine +masculine +feminine +feminine +feminine +feminine +101489 feminine +101491 feminine +101493 masculine +masculine +101497 masculine +masculine +masculine +masculine +masculine +masculine +101504 feminine +feminine +101511 masculine +masculine +masculine +masculine +masculine +101517 neuter +neuter +masculine +masculine +101522 masculine +101524 masculine +feminine +feminine +101528 masculine +masculine +masculine +masculine +101539 masculine +masculine +101543 feminine +masculine +101546 neuter +neuter +neuter +101551 neuter +101554 masculine +101556 masculine +masculine +101560 masculine +101562 neuter +neuter +masculine +masculine +101571 masculine +101573 masculine +101577 neuter +101580 neuter +101589 masculine +101593 neuter +101595 neuter +101600 masculine +101602 masculine +masculine +101606 masculine +101610 masculine +101613 masculine +masculine +101618 masculine +101621 neuter +neuter +neuter +neuter +101631 masculine +101636 masculine +101638 neuter +101643 feminine +masculine +masculine +101648 feminine +feminine +feminine +101653 masculine +masculine +101657 feminine +101659 feminine +feminine +masculine +masculine +101665 feminine +101669 masculine +masculine +101672 masculine +masculine +101675 neuter +neuter +101679 masculine +masculine +feminine +feminine +101684 feminine +101688 masculine +masculine +101692 feminine +feminine +101696 masculine +101698 feminine +feminine +masculine +101702 masculine +masculine +masculine +101709 masculine +101711 neuter +neuter +101716 feminine +101718 neuter +101722 neuter +101724 masculine +101727 masculine +101731 feminine +101736 feminine +101739 neuter +neuter +101743 neuter +101745 masculine +101749 masculine +feminine +101753 masculine +masculine +masculine +101760 masculine +masculine +masculine +masculine +masculine +101766 neuter +101771 masculine +masculine +101779 neuter +neuter +feminine +feminine +101784 feminine +feminine +101788 masculine +neuter +neuter +feminine +feminine +feminine +feminine +feminine +101797 masculine +101799 neuter +masculine +101803 masculine +masculine +101809 feminine +feminine +feminine +101818 masculine +masculine +101822 neuter +neuter +101827 neuter +101829 masculine +masculine +101832 masculine +101836 feminine +101839 masculine +neuter +neuter +neuter +101845 neuter +neuter +101849 feminine +masculine +masculine +101855 masculine +101861 masculine +masculine +101865 masculine +masculine +101871 masculine +masculine +masculine +masculine +101877 feminine +feminine +101880 feminine +101883 masculine +masculine +101888 masculine +101891 feminine +101893 feminine +feminine +101896 feminine +feminine +neuter +neuter +101905 masculine +masculine +101908 neuter +masculine +101912 neuter +101915 neuter +masculine +masculine +masculine +101923 masculine +masculine +neuter +101928 neuter +masculine +101932 neuter +neuter +feminine +feminine +101937 masculine +feminine +feminine +101941 masculine +masculine +masculine +101945 feminine +feminine +feminine +101952 neuter +neuter +101955 masculine +feminine +feminine +feminine +feminine +101961 masculine +101963 masculine +101965 masculine +masculine +masculine +masculine +101970 feminine +feminine +101975 masculine +101979 neuter +neuter +101982 masculine +101984 feminine +feminine +neuter +101988 masculine +masculine +101991 neuter +101994 neuter +neuter +102000 masculine +102002 feminine +102004 neuter +masculine +102008 masculine +102012 neuter +102014 masculine +102016 masculine +102018 neuter +neuter +102027 masculine +masculine +masculine +102031 feminine +102034 masculine +102036 masculine +masculine +masculine +102041 masculine +102043 masculine +feminine +feminine +102053 feminine +feminine +neuter +neuter +102058 masculine +masculine +102061 masculine +102064 masculine +masculine +102073 neuter +neuter +102077 feminine +masculine +102082 neuter +masculine +102085 masculine +102089 masculine +102091 neuter +masculine +102096 feminine +masculine +masculine +102102 masculine +masculine +102108 feminine +masculine +102113 neuter +masculine +102117 neuter +masculine +102121 feminine +feminine +102125 masculine +102128 masculine +102131 masculine +masculine +102134 masculine +feminine +masculine +102141 neuter +102143 neuter +102146 masculine +masculine +102152 masculine +masculine +102156 masculine +102158 masculine +102168 masculine +102170 neuter +102174 feminine +102177 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +102187 masculine +masculine +102193 feminine +feminine +masculine +masculine +102200 masculine +feminine +102203 masculine +102207 masculine +masculine +masculine +102212 masculine +102214 masculine +masculine +masculine +102218 masculine +102220 neuter +neuter +102225 neuter +neuter +102229 neuter +masculine +102233 feminine +feminine +102236 masculine +102238 masculine +neuter +102241 feminine +102243 neuter +102251 masculine +masculine +102254 neuter +neuter +102257 masculine +feminine +102262 neuter +masculine +102266 feminine +feminine +102269 masculine +102271 masculine +masculine +102275 masculine +102277 feminine +102281 masculine +102283 feminine +masculine +masculine +masculine +102289 feminine +feminine +feminine +102294 feminine +102296 neuter +neuter +masculine +masculine +102301 masculine +masculine +102307 neuter +neuter +neuter +102311 masculine +102313 feminine +102316 masculine +masculine +masculine +102320 masculine +102322 neuter +masculine +102326 feminine +102331 masculine +masculine +masculine +102336 neuter +neuter +neuter +102340 neuter +neuter +masculine +masculine +neuter +102346 neuter +102350 masculine +masculine +102354 masculine +masculine +neuter +102358 masculine +masculine +102361 feminine +102364 masculine +masculine +102369 feminine +102371 masculine +masculine +neuter +102376 neuter +masculine +102381 feminine +feminine +masculine +masculine +masculine +102388 feminine +102391 masculine +masculine +masculine +masculine +102396 neuter +102399 neuter +neuter +feminine +feminine +masculine +masculine +102407 masculine +masculine +102410 feminine +feminine +neuter +neuter +102416 feminine +feminine +masculine +102420 masculine +102423 masculine +feminine +feminine +masculine +102432 feminine +feminine +masculine +masculine +102437 neuter +neuter +masculine +102443 neuter +neuter +102447 neuter +102451 neuter +102453 neuter +neuter +102456 masculine +102458 masculine +102460 neuter +102462 feminine +feminine +102465 masculine +masculine +masculine +102469 neuter +102472 neuter +masculine +masculine +102478 neuter +102480 feminine +feminine +102485 masculine +feminine +feminine +102490 feminine +102492 masculine +masculine +102495 feminine +102497 masculine +masculine +102500 neuter +masculine +masculine +feminine +feminine +102510 neuter +neuter +masculine +102514 masculine +102516 masculine +102518 feminine +masculine +102521 masculine +masculine +masculine +102527 masculine +masculine +masculine +102532 masculine +masculine +102535 feminine +feminine +masculine +masculine +102544 masculine +masculine +masculine +102551 masculine +102553 feminine +feminine +102557 feminine +feminine +neuter +neuter +102562 feminine +102564 feminine +feminine +102567 feminine +masculine +masculine +102571 masculine +masculine +102575 neuter +102577 feminine +feminine +102580 masculine +102582 masculine +102584 feminine +feminine +102587 feminine +102589 masculine +masculine +masculine +102595 masculine +102598 feminine +102601 feminine +feminine +feminine +102606 masculine +102609 masculine +masculine +masculine +102614 feminine +feminine +102617 masculine +masculine +102620 masculine +102622 masculine +102624 masculine +102628 masculine +102630 masculine +102633 masculine +102635 masculine +102638 neuter +102640 neuter +102642 masculine +102644 masculine +102647 masculine +masculine +102652 masculine +102654 masculine +masculine +neuter +102659 feminine +masculine +102664 masculine +masculine +masculine +masculine +masculine +102670 neuter +102672 masculine +masculine +masculine +masculine +102678 masculine +102680 masculine +102683 feminine +feminine +masculine +masculine +102692 masculine +102694 neuter +neuter +masculine +masculine +102699 masculine +102703 neuter +neuter +masculine +masculine +102708 masculine +masculine +masculine +masculine +masculine +masculine +102715 feminine +masculine +102718 masculine +102720 masculine +102722 masculine +102725 feminine +feminine +102731 masculine +102733 masculine +masculine +neuter +neuter +masculine +masculine +masculine +102741 feminine +feminine +102744 neuter +masculine +masculine +masculine +102751 masculine +102753 masculine +102756 masculine +102758 masculine +102760 masculine +102765 masculine +masculine +102768 masculine +feminine +102771 masculine +masculine +102775 masculine +masculine +102779 masculine +102781 masculine +102786 neuter +neuter +102789 neuter +neuter +neuter +102797 feminine +102799 masculine +102801 masculine +102803 masculine +102819 masculine +102822 neuter +102829 feminine +feminine +feminine +102834 neuter +neuter +102838 masculine +masculine +102842 feminine +feminine +102850 masculine +masculine +102855 masculine +masculine +102859 masculine +masculine +102867 neuter +masculine +masculine +102871 masculine +102875 masculine +102878 masculine +102889 masculine +102892 neuter +102895 neuter +102899 neuter +102901 neuter +102906 neuter +102908 masculine +102912 masculine +102914 masculine +102925 feminine +feminine +102934 masculine +102936 masculine +102938 masculine +masculine +masculine +102946 masculine +102949 masculine +masculine +102952 feminine +feminine +102955 masculine +102957 feminine +feminine +102961 masculine +102963 feminine +feminine +102966 feminine +102969 masculine +102971 feminine +feminine +102974 feminine +feminine +neuter +102978 neuter +102980 feminine +102983 feminine +102985 feminine +102987 neuter +neuter +102990 feminine +feminine +feminine +102994 feminine +102996 neuter +feminine +neuter +neuter +103002 feminine +feminine +103006 feminine +103008 feminine +103012 neuter +neuter +feminine +103016 feminine +103018 feminine +feminine +103021 feminine +103023 feminine +103028 feminine +feminine +103031 feminine +103035 feminine +103037 feminine +103039 neuter +neuter +neuter +feminine +feminine +103046 feminine +feminine +masculine +masculine +103051 masculine +103054 masculine +feminine +neuter +103061 masculine +103063 feminine +masculine +103066 masculine +103068 neuter +103073 neuter +103075 feminine +feminine +103078 feminine +feminine +103081 masculine +masculine +feminine +103088 masculine +masculine +feminine +feminine +103093 masculine +masculine +feminine +feminine +103098 masculine +103101 feminine +neuter +103104 feminine +feminine +feminine +feminine +103109 masculine +103116 masculine +feminine +103121 masculine +103127 masculine +103129 neuter +103134 masculine +masculine +masculine +103138 masculine +103140 masculine +masculine +masculine +103146 masculine +masculine +103149 masculine +103151 feminine +feminine +103156 neuter +103158 feminine +feminine +feminine +103164 masculine +masculine +103167 feminine +103169 feminine +neuter +103173 feminine +103175 feminine +feminine +103179 masculine +103182 feminine +103185 feminine +feminine +103189 masculine +masculine +103192 feminine +feminine +neuter +neuter +neuter +103203 masculine +103205 neuter +neuter +103209 masculine +masculine +103213 neuter +neuter +103216 masculine +103219 masculine +103222 feminine +103225 neuter +103230 neuter +neuter +masculine +masculine +103237 masculine +masculine +103243 feminine +103245 masculine +neuter +103248 feminine +feminine +103251 feminine +feminine +feminine +103256 feminine +feminine +103259 masculine +103261 masculine +masculine +masculine +103266 masculine +masculine +103269 masculine +103271 masculine +103275 masculine +103278 masculine +103285 masculine +103289 neuter +103292 feminine +feminine +103298 feminine +feminine +103302 neuter +neuter +103305 neuter +neuter +103308 feminine +feminine +103311 neuter +neuter +103317 neuter +103319 neuter +103323 neuter +103328 masculine +103330 neuter +103332 neuter +neuter +feminine +feminine +neuter +103338 feminine +feminine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +feminine +feminine +feminine +masculine +feminine +masculine +103354 neuter +neuter +neuter +neuter +103363 masculine +neuter +neuter +masculine +feminine +masculine +103372 masculine +masculine +neuter +neuter +103377 feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +103387 neuter +neuter +103391 masculine +103393 masculine +masculine +masculine +masculine +feminine +feminine +103401 neuter +neuter +103404 feminine +feminine +103408 neuter +neuter +103414 masculine +masculine +masculine +masculine +masculine +masculine +103423 masculine +103425 neuter +neuter +103428 masculine +masculine +103431 masculine +masculine +103434 neuter +feminine +masculine +masculine +103442 masculine +neuter +neuter +103449 masculine +masculine +masculine +masculine +103456 masculine +103458 neuter +neuter +masculine +103462 masculine +103464 neuter +neuter +masculine +103468 masculine +103472 masculine +masculine +neuter +neuter +103480 masculine +masculine +103483 masculine +neuter +neuter +neuter +103490 masculine +masculine +masculine +masculine +masculine +masculine +103497 neuter +neuter +103501 masculine +103506 neuter +103508 masculine +neuter +103513 masculine +masculine +103516 feminine +feminine +masculine +103520 feminine +feminine +103523 feminine +103525 masculine +masculine +103528 neuter +neuter +103531 neuter +neuter +103534 feminine +feminine +103537 neuter +neuter +masculine +103543 masculine +masculine +103547 masculine +103551 masculine +103554 neuter +neuter +103557 masculine +103561 masculine +masculine +feminine +feminine +103566 neuter +neuter +103570 feminine +feminine +feminine +masculine +103577 feminine +masculine +103583 neuter +masculine +masculine +masculine +masculine +103592 masculine +masculine +masculine +masculine +103603 feminine +feminine +feminine +103615 masculine +masculine +masculine +masculine +103620 masculine +masculine +103623 masculine +103625 masculine +103628 masculine +103630 neuter +103633 feminine +103635 feminine +103637 feminine +feminine +103640 masculine +masculine +masculine +masculine +103645 feminine +103647 neuter +103649 masculine +103652 masculine +masculine +masculine +masculine +neuter +neuter +masculine +103660 masculine +103664 neuter +neuter +masculine +masculine +103669 neuter +neuter +103673 feminine +feminine +masculine +masculine +103678 masculine +masculine +103681 neuter +neuter +103684 masculine +103686 masculine +masculine +masculine +masculine +103691 neuter +masculine +masculine +masculine +masculine +masculine +103698 feminine +103700 masculine +103702 masculine +masculine +103705 feminine +103707 feminine +103709 masculine +masculine +103713 masculine +masculine +masculine +masculine +masculine +masculine +103720 masculine +masculine +masculine +103724 masculine +masculine +masculine +masculine +103730 feminine +feminine +feminine +103734 neuter +neuter +103737 masculine +103742 masculine +103744 feminine +masculine +103748 masculine +103750 masculine +103752 masculine +103754 feminine +masculine +103758 feminine +103760 masculine +masculine +103763 masculine +103765 feminine +feminine +neuter +neuter +masculine +103771 masculine +feminine +feminine +feminine +masculine +feminine +103780 masculine +masculine +103783 masculine +103785 feminine +feminine +103788 neuter +neuter +masculine +feminine +feminine +neuter +neuter +103796 neuter +neuter +feminine +feminine +masculine +feminine +103806 feminine +feminine +103809 feminine +masculine +103812 neuter +neuter +neuter +neuter +masculine +103818 feminine +feminine +masculine +feminine +103824 masculine +103826 feminine +neuter +neuter +masculine +masculine +103832 neuter +neuter +103835 masculine +masculine +neuter +103839 masculine +masculine +103842 neuter +103844 feminine +feminine +103847 masculine +103849 masculine +103852 masculine +103854 feminine +masculine +neuter +neuter +masculine +103860 feminine +feminine +neuter +neuter +masculine +103866 neuter +103869 masculine +feminine +masculine +103873 masculine +masculine +103876 masculine +masculine +103879 masculine +103882 masculine +masculine +masculine +feminine +feminine +neuter +neuter +feminine +feminine +103893 masculine +103895 masculine +103897 neuter +neuter +feminine +feminine +neuter +neuter +masculine +103905 masculine +feminine +feminine +103910 feminine +feminine +feminine +103914 masculine +feminine +feminine +masculine +103919 neuter +103921 masculine +feminine +103925 feminine +103927 masculine +masculine +masculine +103931 feminine +feminine +feminine +103935 masculine +masculine +masculine +103940 masculine +103943 feminine +masculine +103946 feminine +feminine +103950 masculine +masculine +masculine +masculine +103955 masculine +masculine +masculine +masculine +feminine +feminine +103963 neuter +feminine +103966 feminine +103968 feminine +masculine +masculine +masculine +masculine +feminine +feminine +103977 neuter +103980 feminine +103982 feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +masculine +103996 masculine +masculine +103999 neuter +neuter +neuter +neuter +feminine +feminine +masculine +104008 masculine +masculine +104011 feminine +feminine +neuter +neuter +feminine +feminine +masculine +feminine +104021 masculine +masculine +masculine +masculine +104026 masculine +104028 masculine +104030 feminine +masculine +104033 neuter +neuter +104036 feminine +feminine +104039 feminine +104041 feminine +104043 feminine +104045 neuter +neuter +neuter +104049 neuter +104051 masculine +masculine +masculine +104057 masculine +masculine +104060 neuter +104063 masculine +masculine +masculine +104067 masculine +104069 feminine +104071 neuter +feminine +feminine +feminine +104076 neuter +neuter +masculine +neuter +neuter +masculine +neuter +neuter +104085 neuter +masculine +104089 masculine +masculine +neuter +neuter +104094 feminine +feminine +104098 feminine +104102 masculine +masculine +masculine +masculine +masculine +104108 masculine +masculine +feminine +feminine +masculine +masculine +neuter +neuter +neuter +104118 neuter +104120 masculine +masculine +feminine +feminine +104125 masculine +104128 masculine +104132 feminine +feminine +feminine +feminine +104137 masculine +neuter +neuter +feminine +feminine +104143 feminine +feminine +104147 neuter +feminine +feminine +104152 masculine +masculine +104155 masculine +masculine +masculine +masculine +104160 neuter +104162 feminine +feminine +feminine +masculine +feminine +104170 masculine +104172 masculine +neuter +neuter +104176 masculine +masculine +feminine +104180 masculine +104186 neuter +neuter +104189 masculine +masculine +104194 masculine +masculine +masculine +masculine +neuter +neuter +neuter +feminine +feminine +masculine +104205 feminine +104209 masculine +masculine +104212 feminine +feminine +104215 masculine +104217 feminine +104219 neuter +104223 masculine +neuter +neuter +104228 neuter +104231 masculine +104235 masculine +neuter +masculine +104239 masculine +masculine +104242 neuter +neuter +neuter +104246 masculine +masculine +104250 neuter +104257 neuter +neuter +104260 feminine +masculine +masculine +feminine +104265 feminine +feminine +feminine +104269 feminine +feminine +104273 masculine +masculine +masculine +104277 masculine +masculine +feminine +feminine +masculine +masculine +104284 masculine +feminine +feminine +feminine +feminine +feminine +104291 masculine +104293 masculine +104295 masculine +masculine +104300 masculine +masculine +104303 masculine +104305 masculine +feminine +104310 neuter +neuter +masculine +masculine +104315 masculine +104317 feminine +feminine +104320 masculine +masculine +neuter +neuter +neuter +104326 neuter +neuter +masculine +masculine +feminine +feminine +masculine +104334 feminine +feminine +masculine +masculine +masculine +feminine +feminine +104342 neuter +masculine +104345 masculine +104349 masculine +104351 masculine +masculine +masculine +masculine +feminine +104358 masculine +masculine +104361 neuter +neuter +masculine +masculine +104366 masculine +masculine +masculine +feminine +feminine +104372 masculine +104374 masculine +104376 feminine +104378 masculine +feminine +104381 feminine +masculine +104386 masculine +104388 feminine +feminine +masculine +masculine +104393 neuter +neuter +104396 masculine +masculine +104402 masculine +104404 masculine +104407 masculine +masculine +masculine +104411 masculine +masculine +masculine +masculine +104416 masculine +masculine +masculine +masculine +104421 masculine +masculine +masculine +masculine +masculine +masculine +104428 masculine +feminine +feminine +feminine +104434 masculine +masculine +104437 masculine +104439 masculine +104444 neuter +masculine +masculine +104448 neuter +neuter +104452 masculine +masculine +masculine +masculine +masculine +masculine +104460 neuter +neuter +104465 feminine +feminine +feminine +feminine +masculine +masculine +feminine +feminine +104478 feminine +104481 neuter +neuter +104486 masculine +104488 neuter +104490 masculine +104492 feminine +feminine +104496 neuter +neuter +masculine +masculine +neuter +feminine +feminine +104505 masculine +masculine +masculine +masculine +104512 masculine +masculine +masculine +masculine +104517 masculine +104519 neuter +104521 neuter +neuter +neuter +104525 neuter +104527 neuter +feminine +feminine +104531 masculine +masculine +104534 neuter +neuter +neuter +masculine +104540 feminine +feminine +feminine +feminine +masculine +masculine +feminine +feminine +104550 feminine +feminine +feminine +feminine +masculine +104556 masculine +masculine +masculine +masculine +104561 feminine +feminine +feminine +neuter +neuter +104567 neuter +neuter +neuter +masculine +masculine +104574 feminine +feminine +feminine +neuter +neuter +neuter +neuter +104582 masculine +masculine +104585 masculine +masculine +masculine +neuter +neuter +masculine +104594 feminine +feminine +104597 feminine +feminine +104600 neuter +neuter +104603 feminine +feminine +feminine +feminine +feminine +masculine +masculine +104611 feminine +masculine +masculine +feminine +104617 masculine +masculine +masculine +masculine +masculine +104624 masculine +104626 feminine +feminine +104629 feminine +104631 feminine +104633 feminine +feminine +masculine +104641 feminine +feminine +104646 feminine +104648 feminine +104650 neuter +104653 neuter +neuter +104657 masculine +masculine +104660 masculine +feminine +feminine +104664 masculine +104667 feminine +104673 neuter +neuter +feminine +feminine +masculine +feminine +104681 neuter +neuter +masculine +104685 masculine +104687 masculine +104689 masculine +masculine +104692 feminine +feminine +104695 feminine +feminine +104699 feminine +masculine +104702 masculine +104707 masculine +masculine +masculine +neuter +neuter +neuter +104714 neuter +104716 neuter +104718 neuter +104721 feminine +feminine +feminine +feminine +feminine +masculine +masculine +104731 neuter +neuter +neuter +masculine +masculine +104737 masculine +masculine +104742 neuter +neuter +104748 feminine +feminine +feminine +feminine +104754 masculine +feminine +feminine +104758 feminine +feminine +104762 masculine +masculine +104765 feminine +feminine +feminine +masculine +masculine +masculine +masculine +104777 masculine +masculine +104780 masculine +104783 feminine +feminine +feminine +104788 feminine +feminine +104791 feminine +104793 feminine +masculine +masculine +104797 feminine +masculine +104800 feminine +feminine +neuter +neuter +104805 masculine +masculine +feminine +feminine +neuter +neuter +104812 neuter +neuter +104818 feminine +feminine +feminine +feminine +104823 masculine +masculine +feminine +feminine +neuter +neuter +masculine +masculine +104832 masculine +masculine +masculine +104836 masculine +104839 masculine +104842 masculine +104844 masculine +masculine +104848 feminine +feminine +104851 neuter +neuter +feminine +feminine +masculine +masculine +104859 masculine +104861 neuter +104863 feminine +104865 neuter +masculine +masculine +104869 neuter +104871 neuter +104879 neuter +neuter +neuter +feminine +feminine +masculine +masculine +masculine +104889 masculine +masculine +104892 masculine +masculine +masculine +104897 neuter +neuter +104900 masculine +104903 masculine +masculine +104906 masculine +masculine +104909 masculine +masculine +104912 masculine +masculine +104915 masculine +104917 masculine +masculine +masculine +masculine +104922 neuter +feminine +104925 feminine +neuter +neuter +masculine +masculine +104932 masculine +masculine +104935 feminine +feminine +feminine +feminine +104940 feminine +feminine +masculine +masculine +masculine +masculine +104947 masculine +masculine +104950 neuter +feminine +neuter +neuter +masculine +masculine +104959 masculine +masculine +104962 masculine +masculine +masculine +feminine +feminine +104968 feminine +feminine +masculine +masculine +104973 feminine +104975 feminine +feminine +feminine +feminine +104980 masculine +104982 feminine +104984 neuter +neuter +104987 masculine +masculine +104990 feminine +feminine +masculine +104994 masculine +neuter +neuter +neuter +neuter +105000 neuter +105002 feminine +feminine +feminine +feminine +105007 feminine +105009 neuter +masculine +masculine +neuter +feminine +feminine +neuter +neuter +105019 feminine +masculine +105022 feminine +105024 neuter +105029 masculine +105035 neuter +neuter +105039 feminine +masculine +masculine +neuter +masculine +masculine +feminine +feminine +masculine +feminine +feminine +masculine +masculine +105053 feminine +feminine +feminine +feminine +105058 masculine +105060 feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +105069 feminine +feminine +105072 feminine +feminine +feminine +105076 feminine +105082 masculine +masculine +105086 masculine +105090 masculine +105094 feminine +105096 masculine +masculine +105101 feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +105110 feminine +feminine +feminine +feminine +105116 neuter +neuter +masculine +masculine +105123 masculine +masculine +masculine +masculine +105128 masculine +masculine +105131 feminine +105133 feminine +feminine +feminine +105137 masculine +neuter +neuter +105141 feminine +masculine +105144 masculine +105146 masculine +105149 masculine +neuter +105155 masculine +masculine +105160 masculine +105164 masculine +masculine +masculine +masculine +masculine +105174 masculine +feminine +feminine +feminine +neuter +neuter +105183 masculine +feminine +masculine +masculine +masculine +masculine +105190 neuter +neuter +105197 masculine +masculine +105200 feminine +feminine +feminine +105205 feminine +masculine +masculine +105211 neuter +neuter +neuter +neuter +masculine +masculine +105218 neuter +105221 feminine +feminine +feminine +feminine +105226 masculine +105228 feminine +105230 feminine +105232 feminine +105237 feminine +feminine +105242 masculine +masculine +masculine +masculine +masculine +105249 masculine +masculine +105252 masculine +105257 masculine +masculine +masculine +105261 neuter +neuter +105266 feminine +105269 masculine +masculine +105275 masculine +105278 feminine +105280 feminine +masculine +masculine +105284 feminine +feminine +105287 feminine +105289 feminine +feminine +105292 feminine +105299 masculine +105301 feminine +105303 feminine +105305 feminine +neuter +105311 feminine +105313 neuter +105315 masculine +105317 masculine +masculine +105320 masculine +105322 masculine +neuter +105325 masculine +105328 feminine +105330 feminine +feminine +masculine +masculine +105335 masculine +masculine +105339 masculine +masculine +105343 neuter +105345 feminine +feminine +masculine +masculine +105350 masculine +masculine +feminine +feminine +105357 masculine +masculine +105362 neuter +105365 neuter +105367 masculine +105369 neuter +neuter +105373 masculine +masculine +neuter +neuter +105378 feminine +feminine +105381 feminine +105383 feminine +masculine +neuter +105387 neuter +masculine +masculine +105393 neuter +neuter +neuter +neuter +neuter +neuter +105404 neuter +105406 neuter +105408 masculine +neuter +105414 neuter +neuter +neuter +105418 neuter +neuter +105422 neuter +neuter +neuter +neuter +105430 masculine +masculine +105435 masculine +masculine +105440 masculine +masculine +105449 masculine +105452 masculine +masculine +masculine +masculine +105457 feminine +feminine +feminine +105462 neuter +105465 masculine +105468 neuter +neuter +neuter +masculine +masculine +105476 masculine +105478 masculine +105480 feminine +105484 neuter +masculine +masculine +masculine +105489 masculine +105491 feminine +feminine +masculine +105495 masculine +feminine +feminine +105499 masculine +masculine +masculine +105504 neuter +105506 neuter +masculine +masculine +105510 masculine +masculine +masculine +masculine +105515 masculine +masculine +masculine +105519 masculine +masculine +feminine +feminine +masculine +masculine +masculine +105527 masculine +masculine +105530 masculine +105532 feminine +feminine +feminine +105537 masculine +masculine +feminine +feminine +feminine +masculine +masculine +neuter +neuter +105548 feminine +feminine +105551 masculine +masculine +105555 feminine +feminine +masculine +masculine +105560 neuter +masculine +masculine +105564 feminine +feminine +105568 masculine +masculine +105571 feminine +feminine +105574 masculine +105577 feminine +105579 feminine +105581 masculine +neuter +neuter +neuter +neuter +105587 neuter +105590 masculine +masculine +feminine +feminine +feminine +105596 feminine +masculine +105599 feminine +105601 neuter +neuter +neuter +105607 feminine +105609 feminine +105613 masculine +masculine +105616 feminine +masculine +feminine +105620 neuter +masculine +neuter +masculine +masculine +feminine +masculine +feminine +masculine +105631 masculine +105633 feminine +masculine +feminine +105641 feminine +105644 masculine +masculine +feminine +feminine +105650 neuter +neuter +neuter +masculine +105655 neuter +105657 masculine +masculine +masculine +105661 feminine +feminine +105666 feminine +feminine +masculine +105671 masculine +105674 feminine +feminine +neuter +neuter +neuter +neuter +105685 masculine +105688 feminine +feminine +105693 masculine +105695 masculine +masculine +feminine +masculine +feminine +105703 masculine +105705 feminine +feminine +105709 masculine +masculine +neuter +neuter +105714 masculine +masculine +105718 masculine +105720 neuter +105722 neuter +105724 masculine +masculine +105728 feminine +feminine +feminine +105732 feminine +feminine +105735 feminine +105742 masculine +105744 feminine +feminine +105747 masculine +masculine +105751 neuter +neuter +105756 neuter +105758 feminine +105760 feminine +masculine +masculine +masculine +105765 masculine +105767 feminine +masculine +105770 masculine +105772 masculine +105774 feminine +feminine +feminine +105779 masculine +masculine +105783 feminine +105785 masculine +105788 masculine +masculine +masculine +neuter +neuter +masculine +masculine +105796 feminine +105798 feminine +masculine +105801 masculine +masculine +105805 masculine +masculine +105809 masculine +neuter +neuter +105813 neuter +105816 masculine +105818 masculine +105820 masculine +105822 masculine +masculine +neuter +neuter +105828 masculine +masculine +feminine +feminine +masculine +105835 masculine +105838 masculine +masculine +105842 masculine +105844 feminine +105848 masculine +neuter +neuter +105853 masculine +105856 neuter +neuter +feminine +feminine +masculine +105862 feminine +feminine +masculine +masculine +105867 neuter +105872 feminine +feminine +masculine +masculine +105879 feminine +feminine +105883 neuter +105885 feminine +105888 feminine +feminine +105891 feminine +feminine +105894 masculine +masculine +neuter +neuter +masculine +105900 neuter +neuter +feminine +feminine +105905 neuter +neuter +105908 neuter +105910 feminine +feminine +masculine +masculine +105918 feminine +feminine +feminine +feminine +105923 neuter +masculine +105928 masculine +feminine +feminine +105933 feminine +105935 masculine +masculine +masculine +feminine +feminine +105941 masculine +masculine +masculine +105945 feminine +neuter +neuter +feminine +feminine +105951 neuter +masculine +masculine +masculine +feminine +feminine +105958 masculine +105960 neuter +neuter +neuter +masculine +masculine +neuter +neuter +105970 feminine +feminine +neuter +neuter +105975 feminine +feminine +neuter +neuter +neuter +105981 neuter +masculine +105984 feminine +feminine +105987 feminine +masculine +105990 masculine +masculine +105993 neuter +105996 neuter +masculine +105999 feminine +feminine +106002 feminine +106004 masculine +masculine +masculine +106013 masculine +106015 feminine +neuter +neuter +106020 feminine +106022 neuter +neuter +neuter +neuter +106027 neuter +106030 feminine +106033 neuter +106044 neuter +106047 neuter +106049 neuter +106052 masculine +masculine +masculine +masculine +106057 masculine +masculine +106060 masculine +masculine +106066 neuter +neuter +106070 neuter +106075 feminine +feminine +106078 masculine +masculine +feminine +106082 feminine +106084 feminine +106086 masculine +masculine +106089 masculine +masculine +masculine +feminine +feminine +106095 masculine +masculine +masculine +masculine +masculine +106101 masculine +masculine +106104 feminine +masculine +106107 masculine +masculine +masculine +masculine +masculine +masculine +masculine +106115 masculine +masculine +masculine +masculine +106120 masculine +106122 masculine +106124 masculine +106126 feminine +106128 feminine +106130 masculine +masculine +106134 masculine +masculine +masculine +106138 masculine +masculine +106142 feminine +feminine +feminine +106148 feminine +feminine +106152 masculine +106155 feminine +feminine +feminine +masculine +106160 feminine +feminine +106164 neuter +neuter +106167 feminine +feminine +feminine +106171 masculine +106173 masculine +neuter +neuter +106177 masculine +masculine +106181 neuter +neuter +106185 feminine +masculine +masculine +106190 neuter +106192 neuter +106195 masculine +106198 neuter +106202 feminine +feminine +106207 masculine +masculine +106212 feminine +feminine +106215 feminine +neuter +neuter +masculine +106220 feminine +feminine +masculine +106224 masculine +106226 masculine +106228 masculine +masculine +106232 masculine +106235 neuter +masculine +masculine +106239 neuter +106242 feminine +feminine +106251 feminine +106253 feminine +feminine +106256 neuter +106259 neuter +neuter +106263 masculine +106265 masculine +106267 feminine +masculine +masculine +masculine +feminine +masculine +106274 masculine +masculine +106277 feminine +106279 masculine +masculine +106282 masculine +106287 neuter +106292 feminine +neuter +neuter +106297 masculine +masculine +106300 masculine +106302 masculine +106305 neuter +neuter +neuter +106309 masculine +masculine +masculine +106313 masculine +masculine +masculine +masculine +106318 masculine +masculine +masculine +masculine +106326 masculine +masculine +masculine +masculine +106332 masculine +106335 masculine +106337 feminine +106339 masculine +106342 feminine +masculine +masculine +106347 masculine +106349 feminine +masculine +106353 feminine +neuter +neuter +106358 masculine +106360 feminine +masculine +masculine +106366 masculine +feminine +106369 masculine +masculine +106373 neuter +106376 masculine +masculine +106379 feminine +106381 feminine +masculine +106386 neuter +106394 neuter +106398 feminine +106400 feminine +106402 feminine +106404 feminine +neuter +neuter +masculine +masculine +106410 feminine +feminine +106413 feminine +106417 neuter +106421 feminine +feminine +106428 masculine +106430 neuter +neuter +106435 feminine +106438 masculine +106441 neuter +106443 masculine +106445 neuter +106447 neuter +106450 neuter +106453 feminine +neuter +106456 masculine +neuter +106459 neuter +106466 neuter +106468 feminine +feminine +masculine +106472 neuter +106476 masculine +106479 neuter +106481 neuter +106483 neuter +106485 feminine +feminine +neuter +106491 neuter +masculine +106498 masculine +106501 feminine +106503 feminine +106505 feminine +feminine +feminine +106509 neuter +neuter +106514 masculine +masculine +106519 feminine +feminine +feminine +106525 neuter +106527 neuter +neuter +masculine +masculine +106534 masculine +106536 masculine +106539 masculine +106541 neuter +106547 neuter +neuter +feminine +feminine +masculine +feminine +feminine +neuter +neuter +106558 masculine +106560 neuter +106562 masculine +masculine +feminine +106566 masculine +feminine +feminine +106571 feminine +106573 neuter +106575 masculine +106579 neuter +106581 masculine +106584 neuter +106586 masculine +106590 neuter +106592 masculine +106594 masculine +masculine +masculine +masculine +masculine +106609 feminine +feminine +106612 masculine +106614 neuter +neuter +feminine +106618 feminine +feminine +neuter +106622 masculine +neuter +106625 masculine +106628 feminine +feminine +106631 neuter +neuter +106634 feminine +feminine +feminine +masculine +masculine +neuter +neuter +masculine +neuter +106644 feminine +106647 feminine +106649 feminine +feminine +masculine +masculine +masculine +masculine +106656 neuter +masculine +masculine +masculine +106662 neuter +masculine +masculine +neuter +106669 neuter +106672 masculine +masculine +masculine +106676 feminine +masculine +masculine +106680 masculine +106682 neuter +106684 neuter +masculine +106687 masculine +106689 feminine +masculine +masculine +106693 neuter +masculine +masculine +106697 neuter +masculine +106700 masculine +106702 masculine +masculine +masculine +106706 masculine +106708 masculine +masculine +106712 masculine +masculine +masculine +106718 masculine +neuter +neuter +neuter +106723 neuter +neuter +106727 neuter +neuter +masculine +106731 neuter +neuter +masculine +106735 neuter +106737 masculine +106739 feminine +feminine +106743 masculine +masculine +masculine +106747 feminine +masculine +masculine +106751 masculine +106759 feminine +feminine +106762 neuter +106765 neuter +106768 feminine +feminine +106772 masculine +106774 masculine +feminine +masculine +feminine +106780 masculine +106782 masculine +masculine +106787 neuter +106790 neuter +106793 feminine +feminine +neuter +106798 masculine +106800 masculine +106803 masculine +106805 masculine +neuter +masculine +neuter +neuter +feminine +feminine +106813 feminine +106815 masculine +106818 masculine +106820 masculine +masculine +feminine +masculine +106825 neuter +106828 feminine +masculine +106833 neuter +106837 neuter +106844 feminine +feminine +106847 feminine +feminine +feminine +106854 masculine +106857 neuter +neuter +106868 masculine +masculine +masculine +106877 masculine +neuter +106882 masculine +masculine +106885 masculine +106887 neuter +106892 masculine +masculine +neuter +masculine +106898 neuter +masculine +masculine +106902 feminine +feminine +masculine +106908 masculine +neuter +106914 neuter +neuter +106919 masculine +106924 neuter +106931 masculine +106934 masculine +106939 neuter +masculine +masculine +masculine +106944 masculine +106946 masculine +106950 masculine +106952 masculine +feminine +feminine +106960 masculine +106962 masculine +106965 masculine +106973 neuter +masculine +106976 masculine +masculine +106979 masculine +106982 masculine +masculine +106989 feminine +106991 feminine +106996 masculine +106998 masculine +masculine +107003 masculine +107007 masculine +107009 masculine +107011 feminine +feminine +107014 masculine +masculine +masculine +107020 neuter +neuter +masculine +107024 masculine +107026 masculine +feminine +feminine +107031 neuter +107033 neuter +feminine +107037 feminine +masculine +107040 neuter +neuter +107044 masculine +neuter +neuter +107052 neuter +107055 neuter +107057 masculine +masculine +107060 masculine +masculine +masculine +107064 feminine +feminine +107068 feminine +feminine +107071 masculine +neuter +masculine +masculine +107076 masculine +107078 masculine +masculine +107083 feminine +masculine +107087 masculine +feminine +107091 feminine +107093 masculine +masculine +107098 feminine +107101 feminine +masculine +107104 neuter +masculine +feminine +masculine +masculine +107110 masculine +107112 masculine +masculine +107115 neuter +masculine +feminine +feminine +107120 feminine +feminine +107123 masculine +masculine +masculine +107127 neuter +107130 neuter +neuter +107134 masculine +masculine +feminine +107143 neuter +feminine +107147 neuter +neuter +feminine +feminine +masculine +masculine +masculine +masculine +107157 masculine +neuter +neuter +107163 neuter +107165 masculine +107170 masculine +masculine +107173 feminine +feminine +feminine +107177 masculine +107179 feminine +107181 feminine +masculine +feminine +107185 masculine +feminine +107188 feminine +feminine +neuter +107192 masculine +107194 feminine +feminine +feminine +feminine +masculine +107200 feminine +neuter +masculine +masculine +masculine +masculine +masculine +107211 feminine +feminine +feminine +107215 masculine +107229 neuter +107233 masculine +masculine +masculine +107239 masculine +107242 neuter +107244 neuter +107246 masculine +107248 neuter +107250 masculine +107252 masculine +107255 neuter +neuter +feminine +107259 feminine +masculine +masculine +107263 masculine +masculine +107266 masculine +masculine +neuter +107272 neuter +107276 neuter +masculine +masculine +107283 neuter +107285 masculine +masculine +107288 masculine +masculine +107294 masculine +107296 masculine +107299 masculine +107302 masculine +107304 masculine +107311 masculine +107313 masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +neuter +feminine +masculine +masculine +masculine +feminine +feminine +107329 feminine +feminine +107332 feminine +feminine +masculine +masculine +neuter +neuter +masculine +107341 neuter +neuter +107344 masculine +107347 masculine +107350 masculine +masculine +masculine +masculine +masculine +107356 neuter +neuter +feminine +feminine +107361 neuter +neuter +neuter +feminine +feminine +masculine +107368 feminine +feminine +neuter +107372 masculine +107375 masculine +neuter +neuter +107379 masculine +107381 masculine +107383 masculine +feminine +107386 masculine +107391 masculine +masculine +feminine +107396 feminine +107398 neuter +neuter +107402 masculine +107407 masculine +masculine +107410 feminine +feminine +107413 neuter +neuter +107419 masculine +107421 masculine +masculine +masculine +107425 masculine +neuter +neuter +107429 feminine +feminine +107433 masculine +107438 neuter +neuter +107442 masculine +masculine +masculine +masculine +107447 neuter +107451 neuter +feminine +feminine +107455 feminine +feminine +107458 feminine +neuter +neuter +107464 masculine +masculine +107467 feminine +feminine +masculine +masculine +feminine +feminine +masculine +masculine +107476 feminine +feminine +107480 neuter +neuter +107484 masculine +masculine +masculine +neuter +neuter +neuter +107491 neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +107503 feminine +feminine +107507 masculine +masculine +neuter +107511 neuter +107522 neuter +107525 masculine +masculine +feminine +feminine +107535 masculine +107541 neuter +107546 neuter +107554 feminine +107560 masculine +107562 masculine +107571 masculine +107574 masculine +107584 neuter +107587 masculine +masculine +107593 masculine +107595 feminine +feminine +107598 masculine +107606 feminine +107608 feminine +neuter +neuter +feminine +feminine +107616 masculine +feminine +107619 feminine +107623 masculine +107627 feminine +107633 feminine +feminine +107640 neuter +neuter +107644 masculine +masculine +masculine +masculine +107649 masculine +107653 neuter +107657 masculine +107659 masculine +neuter +107663 feminine +feminine +feminine +feminine +feminine +masculine +masculine +107671 masculine +masculine +107675 feminine +feminine +107679 neuter +neuter +masculine +107683 feminine +107685 masculine +masculine +107688 masculine +masculine +107691 masculine +107693 feminine +feminine +107696 masculine +masculine +masculine +masculine +107702 masculine +masculine +107705 masculine +masculine +107709 masculine +107712 masculine +107715 masculine +masculine +masculine +107720 masculine +107722 feminine +masculine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +107732 neuter +neuter +107735 masculine +masculine +masculine +masculine +107740 neuter +masculine +107743 masculine +masculine +masculine +masculine +107748 feminine +masculine +107751 masculine +masculine +107754 masculine +107756 feminine +107758 feminine +107760 masculine +masculine +107764 masculine +masculine +masculine +masculine +masculine +107770 masculine +masculine +107775 masculine +masculine +feminine +feminine +107781 masculine +masculine +107784 feminine +feminine +feminine +107789 masculine +masculine +masculine +107793 feminine +feminine +feminine +feminine +107799 masculine +masculine +feminine +107804 masculine +masculine +feminine +feminine +neuter +neuter +neuter +neuter +107817 masculine +masculine +masculine +107821 neuter +107823 neuter +107829 feminine +feminine +107834 feminine +feminine +masculine +masculine +107839 feminine +107843 masculine +masculine +masculine +masculine +107848 masculine +107850 masculine +107853 masculine +masculine +masculine +masculine +107858 masculine +107860 feminine +107862 feminine +107864 neuter +107866 neuter +107870 feminine +feminine +107877 masculine +107879 masculine +107882 feminine +feminine +neuter +neuter +masculine +107888 feminine +feminine +107891 feminine +feminine +107895 masculine +masculine +107898 feminine +feminine +107901 neuter +neuter +neuter +masculine +107906 masculine +feminine +feminine +masculine +masculine +107912 feminine +feminine +masculine +107916 neuter +neuter +feminine +feminine +masculine +107922 feminine +feminine +107925 feminine +107927 feminine +masculine +masculine +masculine +masculine +masculine +107935 feminine +feminine +masculine +masculine +masculine +masculine +107942 neuter +neuter +masculine +107948 feminine +feminine +neuter +neuter +107955 feminine +feminine +masculine +masculine +feminine +feminine +masculine +107963 masculine +107965 feminine +feminine +feminine +feminine +feminine +feminine +masculine +107973 feminine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +107983 masculine +107985 neuter +neuter +107988 masculine +masculine +107992 feminine +feminine +neuter +neuter +107997 neuter +neuter +108000 masculine +108002 feminine +108004 feminine +108006 feminine +neuter +neuter +108010 masculine +108013 masculine +108016 masculine +108019 masculine +108021 neuter +neuter +108024 masculine +108027 masculine +108029 feminine +feminine +neuter +neuter +feminine +feminine +masculine +108037 feminine +masculine +108040 masculine +masculine +108044 masculine +108046 neuter +masculine +108051 masculine +neuter +neuter +neuter +108058 masculine +108060 neuter +neuter +108063 masculine +masculine +108066 neuter +neuter +masculine +masculine +masculine +108072 masculine +108074 neuter +108076 feminine +feminine +108079 neuter +108081 masculine +masculine +108086 masculine +masculine +108089 masculine +feminine +feminine +108093 neuter +neuter +neuter +neuter +108101 neuter +neuter +feminine +feminine +masculine +108107 masculine +masculine +108111 masculine +108113 masculine +108115 masculine +108117 masculine +108121 feminine +feminine +masculine +108125 masculine +108128 masculine +108130 feminine +feminine +neuter +neuter +neuter +108136 neuter +neuter +108139 feminine +feminine +feminine +108143 masculine +masculine +neuter +masculine +108149 masculine +108153 neuter +neuter +108159 neuter +neuter +feminine +feminine +masculine +masculine +108166 feminine +feminine +108170 neuter +neuter +masculine +neuter +108175 feminine +feminine +feminine +masculine +108182 feminine +feminine +masculine +masculine +feminine +feminine +108192 masculine +masculine +masculine +masculine +neuter +neuter +neuter +neuter +108201 masculine +masculine +108205 feminine +feminine +108210 masculine +masculine +masculine +masculine +108215 masculine +masculine +108218 neuter +neuter +neuter +feminine +feminine +neuter +neuter +neuter +108227 neuter +neuter +masculine +108231 masculine +108234 feminine +feminine +feminine +feminine +masculine +108241 masculine +masculine +masculine +108245 masculine +masculine +masculine +108249 feminine +feminine +108253 masculine +masculine +masculine +108257 masculine +108259 neuter +108262 masculine +108264 feminine +feminine +masculine +feminine +feminine +108272 feminine +108277 masculine +masculine +108283 masculine +108285 feminine +108287 masculine +108290 neuter +neuter +108294 feminine +108297 feminine +feminine +masculine +masculine +108302 feminine +108305 neuter +neuter +feminine +feminine +feminine +feminine +108312 feminine +neuter +neuter +masculine +masculine +masculine +108319 masculine +108321 masculine +masculine +masculine +feminine +feminine +108327 feminine +masculine +neuter +108332 masculine +108336 feminine +108340 feminine +feminine +108344 neuter +neuter +108349 masculine +108351 masculine +108353 feminine +feminine +108356 neuter +neuter +feminine +108360 masculine +feminine +108366 masculine +masculine +masculine +masculine +masculine +108372 masculine +108374 masculine +108376 masculine +108378 masculine +108380 masculine +feminine +feminine +108385 masculine +108387 feminine +108390 masculine +108392 masculine +masculine +108396 feminine +feminine +108399 feminine +feminine +108402 feminine +feminine +masculine +masculine +108407 neuter +neuter +masculine +masculine +108414 masculine +108417 masculine +108419 neuter +neuter +neuter +feminine +feminine +108427 masculine +108429 masculine +masculine +108432 feminine +feminine +feminine +feminine +108437 feminine +108439 masculine +108442 feminine +feminine +108445 feminine +feminine +neuter +neuter +feminine +feminine +108452 feminine +feminine +masculine +masculine +masculine +masculine +108459 neuter +neuter +108462 neuter +108466 feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +108476 masculine +108479 masculine +masculine +neuter +neuter +108484 feminine +feminine +feminine +feminine +108492 masculine +masculine +108495 neuter +neuter +neuter +masculine +neuter +108502 neuter +neuter +neuter +neuter +108507 neuter +108510 neuter +108513 neuter +neuter +masculine +neuter +masculine +masculine +masculine +feminine +feminine +108523 feminine +feminine +108527 feminine +masculine +masculine +108531 masculine +108534 masculine +108538 feminine +108541 feminine +108544 neuter +feminine +108547 feminine +108549 neuter +neuter +108552 feminine +neuter +neuter +108556 neuter +neuter +masculine +masculine +masculine +108563 masculine +108565 feminine +108567 feminine +masculine +masculine +neuter +108572 masculine +108574 masculine +108576 masculine +masculine +feminine +feminine +masculine +108583 masculine +feminine +feminine +108587 masculine +neuter +neuter +neuter +108592 feminine +feminine +108595 masculine +neuter +108598 neuter +108600 feminine +feminine +masculine +masculine +108607 masculine +108609 neuter +neuter +masculine +masculine +neuter +108615 masculine +108617 masculine +108625 neuter +108627 neuter +108629 feminine +feminine +feminine +108633 neuter +neuter +108636 feminine +masculine +masculine +neuter +108642 neuter +masculine +feminine +108646 feminine +108648 feminine +108650 feminine +neuter +108654 feminine +feminine +108657 feminine +feminine +feminine +108663 masculine +masculine +neuter +108669 masculine +masculine +108672 masculine +108674 feminine +masculine +masculine +neuter +108681 neuter +108683 feminine +feminine +108688 feminine +feminine +108693 masculine +masculine +108696 masculine +masculine +108700 masculine +masculine +feminine +feminine +108709 masculine +108712 feminine +108715 neuter +neuter +neuter +108719 feminine +feminine +feminine +feminine +neuter +feminine +feminine +108727 feminine +feminine +feminine +108731 feminine +108733 neuter +108735 feminine +feminine +masculine +masculine +108740 masculine +108748 neuter +108754 neuter +neuter +feminine +masculine +feminine +feminine +feminine +108762 neuter +neuter +108768 masculine +masculine +masculine +masculine +masculine +108774 feminine +feminine +masculine +108778 masculine +masculine +masculine +masculine +masculine +108784 feminine +108786 feminine +masculine +masculine +masculine +108793 masculine +108795 masculine +feminine +108798 feminine +masculine +masculine +masculine +masculine +108804 neuter +108807 neuter +masculine +108812 masculine +masculine +masculine +masculine +108817 masculine +neuter +masculine +feminine +feminine +feminine +feminine +masculine +masculine +108827 masculine +masculine +108830 masculine +108832 masculine +108834 feminine +108837 masculine +masculine +108846 neuter +neuter +feminine +feminine +neuter +108852 masculine +feminine +feminine +108856 feminine +feminine +masculine +masculine +108862 feminine +feminine +108866 feminine +108870 neuter +neuter +108873 masculine +108875 masculine +masculine +masculine +masculine +108884 feminine +feminine +masculine +108888 masculine +masculine +masculine +masculine +feminine +feminine +108895 feminine +feminine +masculine +108899 feminine +feminine +108902 masculine +masculine +108905 neuter +neuter +108908 neuter +108911 masculine +108914 neuter +neuter +108917 neuter +masculine +masculine +masculine +masculine +masculine +masculine +108925 masculine +feminine +feminine +108929 masculine +masculine +108934 masculine +masculine +masculine +108938 feminine +feminine +108944 feminine +neuter +neuter +108948 masculine +masculine +108951 neuter +108953 neuter +neuter +108957 masculine +masculine +masculine +108962 neuter +neuter +108968 masculine +masculine +108972 neuter +masculine +108975 feminine +masculine +108979 feminine +108981 masculine +108984 feminine +feminine +masculine +masculine +masculine +108990 neuter +108993 feminine +108996 masculine +masculine +109000 masculine +masculine +109004 masculine +109006 feminine +feminine +feminine +feminine +masculine +masculine +masculine +109015 masculine +masculine +109018 neuter +109023 feminine +masculine +masculine +neuter +neuter +109029 feminine +feminine +masculine +masculine +109034 masculine +109039 masculine +109041 masculine +feminine +feminine +109045 masculine +109047 feminine +109049 feminine +masculine +109056 masculine +masculine +109060 feminine +masculine +masculine +109064 neuter +neuter +masculine +masculine +109069 neuter +109074 neuter +109080 feminine +109083 masculine +109085 masculine +masculine +masculine +masculine +masculine +109093 feminine +neuter +masculine +109100 masculine +masculine +109103 neuter +109106 neuter +109109 masculine +masculine +masculine +masculine +109114 masculine +masculine +109117 masculine +109119 masculine +masculine +109125 neuter +neuter +109129 neuter +109134 feminine +feminine +109138 masculine +masculine +masculine +109142 masculine +masculine +masculine +109150 neuter +neuter +109155 masculine +masculine +masculine +109160 masculine +masculine +masculine +masculine +109165 masculine +109167 feminine +109173 masculine +109175 masculine +masculine +masculine +masculine +masculine +masculine +109182 feminine +masculine +masculine +masculine +109187 feminine +feminine +masculine +masculine +masculine +109194 feminine +109197 masculine +masculine +109201 masculine +masculine +masculine +109205 masculine +109209 feminine +feminine +109213 masculine +109215 masculine +109217 neuter +neuter +masculine +masculine +109223 masculine +109226 masculine +masculine +109231 masculine +109233 feminine +109235 masculine +109237 feminine +109240 masculine +masculine +masculine +masculine +masculine +109246 masculine +109248 masculine +109250 feminine +masculine +109253 masculine +109255 feminine +109257 masculine +feminine +feminine +109265 feminine +feminine +109271 feminine +masculine +feminine +109277 feminine +109279 feminine +109285 masculine +109287 feminine +feminine +feminine +109292 masculine +109294 feminine +109296 masculine +masculine +feminine +feminine +feminine +masculine +109304 masculine +masculine +feminine +feminine +109310 masculine +109312 masculine +109314 masculine +feminine +feminine +masculine +109319 masculine +masculine +109322 masculine +masculine +masculine +109326 feminine +109328 feminine +109330 masculine +masculine +109334 masculine +109336 feminine +masculine +109339 feminine +feminine +109343 masculine +109345 neuter +neuter +feminine +feminine +109350 masculine +masculine +feminine +feminine +109355 feminine +feminine +feminine +feminine +masculine +masculine +109362 masculine +masculine +109365 masculine +masculine +109368 masculine +109370 masculine +feminine +feminine +109374 masculine +masculine +109377 masculine +masculine +109380 neuter +neuter +109388 masculine +neuter +109393 feminine +109396 neuter +neuter +109399 feminine +feminine +109403 masculine +109412 masculine +109415 masculine +masculine +masculine +masculine +masculine +109421 feminine +feminine +109424 feminine +neuter +neuter +109430 masculine +masculine +masculine +masculine +109435 feminine +feminine +109439 feminine +feminine +109445 masculine +masculine +masculine +masculine +109450 neuter +109452 feminine +feminine +109455 feminine +109458 masculine +masculine +feminine +feminine +109463 feminine +109465 masculine +masculine +109470 feminine +109474 neuter +109476 masculine +109480 feminine +feminine +109489 masculine +masculine +109492 neuter +neuter +109495 masculine +masculine +109498 masculine +109502 masculine +masculine +masculine +masculine +masculine +masculine +109510 masculine +masculine +masculine +masculine +masculine +109517 feminine +feminine +feminine +feminine +109522 masculine +masculine +109525 feminine +feminine +109528 feminine +109533 feminine +109536 masculine +109538 masculine +109540 masculine +109545 masculine +masculine +109551 neuter +neuter +masculine +masculine +109556 masculine +masculine +109559 feminine +feminine +109564 feminine +109567 feminine +109570 masculine +109575 masculine +masculine +109578 neuter +neuter +109583 masculine +109585 masculine +109587 masculine +masculine +masculine +feminine +feminine +109597 masculine +feminine +109604 feminine +feminine +masculine +masculine +109609 masculine +109611 masculine +feminine +109618 masculine +masculine +109621 neuter +109624 masculine +masculine +109628 masculine +109630 neuter +109634 feminine +109636 neuter +feminine +neuter +109640 masculine +109646 neuter +neuter +neuter +masculine +masculine +109653 feminine +masculine +feminine +109657 masculine +109661 masculine +109663 masculine +masculine +109667 masculine +masculine +feminine +109671 feminine +masculine +109674 neuter +109677 masculine +109682 neuter +neuter +masculine +masculine +masculine +109689 masculine +masculine +109698 masculine +masculine +109704 masculine +masculine +109708 masculine +neuter +masculine +masculine +109713 masculine +109715 masculine +109718 neuter +109722 masculine +masculine +masculine +masculine +109728 feminine +masculine +feminine +109732 feminine +109735 neuter +109739 masculine +masculine +109743 masculine +masculine +feminine +109748 masculine +masculine +109752 masculine +masculine +109758 masculine +masculine +masculine +109765 masculine +masculine +109768 masculine +109771 masculine +feminine +feminine +masculine +masculine +feminine +feminine +109779 feminine +feminine +109782 masculine +masculine +109785 neuter +neuter +109791 masculine +masculine +masculine +109796 masculine +109798 masculine +masculine +masculine +masculine +109803 masculine +masculine +masculine +109807 masculine +masculine +109811 masculine +109813 masculine +109815 masculine +109817 masculine +masculine +masculine +masculine +109822 neuter +neuter +109828 neuter +109830 masculine +feminine +feminine +109837 masculine +feminine +feminine +109841 neuter +109843 masculine +109845 masculine +109849 masculine +feminine +neuter +109853 feminine +109856 neuter +neuter +109861 feminine +feminine +109870 masculine +109878 masculine +masculine +109881 feminine +109883 feminine +109885 feminine +109887 masculine +feminine +109894 masculine +masculine +109897 masculine +109899 feminine +masculine +feminine +109905 feminine +feminine +109909 feminine +feminine +109913 masculine +109917 feminine +masculine +109921 masculine +masculine +masculine +109926 masculine +masculine +masculine +109930 neuter +neuter +masculine +masculine +109935 neuter +109941 feminine +feminine +109944 neuter +masculine +109948 feminine +feminine +feminine +109952 masculine +109956 neuter +109975 neuter +109978 masculine +109981 neuter +109983 feminine +feminine +109990 masculine +masculine +109994 neuter +109996 masculine +masculine +110001 masculine +masculine +110008 masculine +110010 feminine +feminine +110013 feminine +feminine +110019 feminine +110021 feminine +110023 masculine +110030 masculine +110032 neuter +110037 feminine +feminine +feminine +110041 feminine +110044 feminine +110046 feminine +110054 masculine +110057 feminine +feminine +masculine +masculine +110065 feminine +feminine +feminine +feminine +110073 masculine +masculine +110076 feminine +110078 feminine +110080 masculine +110082 neuter +110085 neuter +neuter +110089 neuter +neuter +feminine +feminine +110095 masculine +masculine +masculine +110099 masculine +110102 masculine +masculine +110105 masculine +110107 feminine +feminine +110114 masculine +masculine +110119 feminine +feminine +110122 masculine +110125 masculine +110132 neuter +110135 feminine +feminine +feminine +110139 feminine +110141 masculine +masculine +110144 masculine +110147 feminine +feminine +masculine +masculine +110152 masculine +110154 masculine +masculine +masculine +masculine +110159 masculine +neuter +110166 masculine +masculine +110173 neuter +110180 masculine +110189 feminine +feminine +110194 masculine +masculine +masculine +110198 neuter +110200 neuter +masculine +masculine +masculine +masculine +110209 feminine +feminine +110212 masculine +110214 neuter +masculine +neuter +110219 masculine +110221 feminine +110224 neuter +feminine +110228 neuter +neuter +neuter +110232 neuter +masculine +masculine +neuter +110241 neuter +neuter +masculine +masculine +masculine +110247 masculine +masculine +110250 masculine +masculine +110262 masculine +masculine +110265 feminine +110268 masculine +110270 masculine +masculine +110274 masculine +110276 masculine +masculine +masculine +110280 masculine +neuter +neuter +masculine +neuter +neuter +110290 feminine +feminine +110293 feminine +110298 masculine +110300 masculine +110303 neuter +110305 masculine +110309 neuter +110311 masculine +masculine +masculine +110315 feminine +feminine +feminine +110319 masculine +110329 neuter +neuter +110333 feminine +feminine +110343 masculine +110346 neuter +feminine +110350 masculine +110356 masculine +masculine +110363 masculine +masculine +masculine +110367 masculine +feminine +110373 masculine +110379 masculine +masculine +masculine +masculine +110384 masculine +masculine +110388 masculine +110390 neuter +110394 masculine +masculine +110398 masculine +masculine +masculine +masculine +110403 feminine +feminine +masculine +masculine +110410 masculine +masculine +110413 masculine +masculine +masculine +110417 neuter +110419 feminine +masculine +110423 feminine +masculine +110427 masculine +110429 masculine +masculine +110432 masculine +110434 neuter +110437 masculine +masculine +masculine +masculine +110443 masculine +110446 feminine +110448 feminine +masculine +masculine +110452 masculine +110457 masculine +110461 masculine +110463 masculine +masculine +masculine +110467 masculine +110469 masculine +masculine +110472 masculine +masculine +110475 feminine +110480 masculine +110485 masculine +110487 feminine +feminine +masculine +110494 feminine +110496 feminine +110498 masculine +masculine +masculine +110503 feminine +feminine +feminine +110507 feminine +feminine +110514 masculine +110519 neuter +110521 feminine +feminine +110526 masculine +110528 masculine +110531 masculine +neuter +110534 masculine +feminine +110538 feminine +110540 neuter +110546 masculine +masculine +110553 masculine +masculine +feminine +110558 masculine +masculine +feminine +110564 feminine +masculine +110567 masculine +masculine +feminine +110571 feminine +110573 feminine +feminine +feminine +110580 masculine +masculine +110583 feminine +110586 feminine +feminine +110589 masculine +masculine +110592 masculine +masculine +masculine +masculine +110605 masculine +110609 masculine +110612 masculine +masculine +masculine +110619 masculine +110623 masculine +masculine +110628 masculine +110631 masculine +110633 masculine +110637 masculine +110640 feminine +110642 neuter +neuter +masculine +110647 masculine +110649 masculine +110653 masculine +masculine +110656 masculine +masculine +110659 masculine +masculine +110663 masculine +110666 masculine +neuter +110669 neuter +masculine +110674 neuter +neuter +110678 masculine +110681 masculine +110687 neuter +110690 neuter +neuter +masculine +110694 masculine +masculine +110698 neuter +neuter +110702 feminine +110706 neuter +110708 neuter +neuter +110712 neuter +neuter +neuter +110717 masculine +masculine +masculine +feminine +feminine +110724 masculine +110726 neuter +110728 neuter +neuter +110731 feminine +feminine +110734 neuter +neuter +110738 feminine +feminine +masculine +masculine +110743 masculine +masculine +110746 masculine +masculine +masculine +110750 masculine +110753 masculine +110758 masculine +masculine +masculine +110762 neuter +neuter +110766 masculine +masculine +110769 feminine +feminine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +110779 masculine +masculine +110783 masculine +110785 masculine +110787 masculine +feminine +feminine +masculine +110792 masculine +masculine +110796 masculine +masculine +masculine +110800 feminine +110802 feminine +110804 masculine +masculine +110807 masculine +masculine +masculine +masculine +110813 masculine +masculine +110819 neuter +110823 feminine +feminine +110828 feminine +feminine +masculine +masculine +masculine +110835 masculine +110837 masculine +110843 feminine +feminine +masculine +masculine +110848 feminine +feminine +110852 feminine +110854 masculine +masculine +masculine +110859 feminine +feminine +feminine +110863 neuter +feminine +feminine +feminine +masculine +masculine +110870 neuter +110873 feminine +feminine +masculine +masculine +110878 feminine +110882 neuter +110884 masculine +110886 masculine +masculine +110889 feminine +110892 masculine +masculine +feminine +110898 feminine +feminine +masculine +masculine +masculine +110904 masculine +110906 masculine +feminine +masculine +110910 neuter +feminine +masculine +feminine +masculine +110916 masculine +masculine +110919 masculine +110921 masculine +neuter +neuter +masculine +masculine +110927 masculine +masculine +110930 feminine +masculine +masculine +110934 neuter +masculine +masculine +110939 feminine +feminine +feminine +feminine +masculine +110948 masculine +masculine +masculine +110954 masculine +masculine +masculine +110958 feminine +feminine +feminine +110963 neuter +neuter +110969 neuter +110978 feminine +feminine +masculine +masculine +110985 feminine +feminine +feminine +110989 neuter +feminine +110992 feminine +110995 neuter +neuter +masculine +masculine +111000 masculine +111006 masculine +111008 feminine +feminine +masculine +masculine +111014 masculine +masculine +masculine +111018 masculine +111022 feminine +feminine +masculine +masculine +111027 masculine +masculine +111031 feminine +111033 masculine +111035 neuter +111041 masculine +masculine +111047 neuter +111050 masculine +111053 feminine +111060 feminine +feminine +masculine +masculine +111065 masculine +111069 masculine +masculine +111075 feminine +feminine +neuter +111080 masculine +masculine +feminine +feminine +masculine +masculine +feminine +feminine +masculine +masculine +111091 masculine +111093 masculine +masculine +masculine +111097 neuter +111099 masculine +111101 masculine +masculine +masculine +masculine +111106 masculine +masculine +111110 masculine +111115 masculine +111118 neuter +111123 neuter +neuter +111127 neuter +111129 masculine +111131 masculine +neuter +masculine +111135 neuter +neuter +feminine +feminine +111141 neuter +masculine +masculine +111147 neuter +111152 masculine +masculine +masculine +masculine +masculine +masculine +111159 neuter +neuter +neuter +neuter +masculine +111166 feminine +feminine +feminine +feminine +masculine +masculine +feminine +feminine +111176 feminine +masculine +masculine +111180 feminine +feminine +111183 neuter +111185 neuter +neuter +111189 feminine +feminine +feminine +masculine +masculine +111195 masculine +feminine +feminine +feminine +feminine +111203 neuter +111205 masculine +111208 neuter +111210 masculine +masculine +masculine +feminine +feminine +111216 neuter +111218 masculine +neuter +neuter +111223 masculine +masculine +111226 masculine +feminine +feminine +111230 masculine +feminine +feminine +111237 masculine +masculine +111242 masculine +masculine +111245 masculine +111249 masculine +masculine +111252 feminine +111254 feminine +111256 masculine +neuter +111259 feminine +feminine +111262 neuter +111267 neuter +neuter +111271 feminine +feminine +masculine +masculine +111276 masculine +masculine +111280 masculine +111284 feminine +feminine +feminine +111290 masculine +111293 feminine +111296 masculine +masculine +masculine +111300 masculine +masculine +111303 masculine +masculine +masculine +masculine +111308 masculine +masculine +111312 masculine +feminine +feminine +111316 feminine +feminine +111319 feminine +111322 feminine +feminine +111327 neuter +neuter +111330 masculine +masculine +masculine +neuter +neuter +111339 masculine +masculine +masculine +masculine +111354 masculine +masculine +111357 masculine +masculine +111361 masculine +feminine +feminine +111365 masculine +111367 masculine +masculine +masculine +111375 masculine +masculine +111380 masculine +111384 neuter +111391 masculine +masculine +111395 feminine +feminine +111398 feminine +feminine +masculine +masculine +111404 feminine +feminine +masculine +masculine +111409 masculine +111413 neuter +masculine +masculine +masculine +masculine +111421 masculine +masculine +111424 masculine +111428 feminine +feminine +feminine +111435 masculine +111448 masculine +111451 masculine +111454 masculine +111456 masculine +feminine +111459 feminine +masculine +111462 neuter +111465 masculine +111471 feminine +111474 masculine +masculine +111479 neuter +111488 neuter +111493 masculine +111501 masculine +masculine +111506 neuter +masculine +111509 masculine +111511 masculine +masculine +111517 masculine +masculine +masculine +111522 feminine +masculine +masculine +masculine +masculine +111529 masculine +111533 masculine +111536 masculine +111539 masculine +masculine +111543 feminine +feminine +masculine +111549 masculine +111555 masculine +111560 masculine +111562 masculine +masculine +masculine +feminine +feminine +111569 feminine +feminine +111572 neuter +111574 masculine +masculine +masculine +masculine +111579 masculine +111581 masculine +masculine +feminine +feminine +feminine +masculine +neuter +111589 neuter +111591 feminine +feminine +111595 feminine +feminine +masculine +masculine +111600 masculine +masculine +111603 masculine +111605 masculine +masculine +masculine +masculine +111610 feminine +masculine +masculine +111615 masculine +masculine +feminine +feminine +111620 masculine +neuter +neuter +111624 feminine +feminine +neuter +feminine +111629 masculine +masculine +111632 masculine +masculine +masculine +masculine +111642 feminine +masculine +111645 feminine +111648 masculine +111653 masculine +111655 feminine +feminine +feminine +feminine +111662 feminine +masculine +feminine +111666 feminine +111668 neuter +neuter +feminine +feminine +111673 feminine +111675 feminine +feminine +111678 feminine +feminine +111681 feminine +feminine +feminine +masculine +masculine +111688 feminine +masculine +111691 masculine +111693 masculine +111695 neuter +111699 neuter +111704 masculine +masculine +masculine +111708 masculine +masculine +111712 masculine +neuter +111716 masculine +masculine +111720 masculine +111722 masculine +masculine +111725 masculine +masculine +111728 masculine +masculine +111731 masculine +masculine +masculine +masculine +masculine +masculine +masculine +111740 neuter +neuter +111743 feminine +feminine +feminine +111747 neuter +neuter +feminine +feminine +masculine +masculine +masculine +neuter +111757 feminine +111759 masculine +masculine +111762 masculine +masculine +masculine +masculine +111768 masculine +111771 masculine +111773 feminine +neuter +neuter +masculine +masculine +111779 masculine +111781 masculine +111785 masculine +111788 feminine +111791 feminine +feminine +masculine +masculine +111797 feminine +111799 feminine +feminine +111802 masculine +masculine +masculine +masculine +masculine +111808 feminine +feminine +masculine +111812 masculine +masculine +111816 masculine +masculine +masculine +111820 masculine +masculine +111826 neuter +111831 masculine +111833 masculine +masculine +feminine +feminine +feminine +111839 feminine +masculine +masculine +111844 masculine +111846 feminine +feminine +111849 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +111859 feminine +111861 masculine +masculine +masculine +masculine +111866 neuter +masculine +feminine +feminine +feminine +111874 feminine +feminine +111878 feminine +111882 feminine +feminine +feminine +feminine +masculine +feminine +111889 feminine +feminine +feminine +masculine +masculine +111895 feminine +feminine +111898 masculine +111900 masculine +111902 masculine +masculine +111905 masculine +masculine +111913 neuter +neuter +111916 feminine +feminine +feminine +feminine +111921 masculine +masculine +111924 masculine +111926 masculine +masculine +111929 feminine +masculine +111932 masculine +111934 masculine +masculine +111938 feminine +feminine +111941 feminine +neuter +neuter +111945 neuter +111947 masculine +masculine +111950 masculine +masculine +111953 masculine +masculine +111958 feminine +feminine +111962 masculine +masculine +masculine +111966 masculine +masculine +111969 masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +111978 masculine +neuter +neuter +masculine +masculine +111984 neuter +111987 masculine +111989 masculine +masculine +neuter +111993 feminine +111995 feminine +feminine +112003 masculine +masculine +112006 masculine +masculine +masculine +feminine +feminine +112012 feminine +112014 masculine +112016 feminine +112018 feminine +feminine +112021 feminine +112023 feminine +112025 feminine +112028 neuter +112030 neuter +112032 masculine +112034 masculine +masculine +112038 neuter +112040 feminine +feminine +feminine +neuter +neuter +feminine +112047 feminine +112050 feminine +feminine +112056 feminine +112059 masculine +112063 feminine +112065 masculine +masculine +112069 feminine +112071 masculine +112075 feminine +feminine +feminine +112079 feminine +112084 feminine +feminine +112089 feminine +112091 feminine +112093 masculine +112095 feminine +masculine +masculine +masculine +112100 masculine +feminine +112103 neuter +neuter +112108 masculine +masculine +112111 masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +112121 masculine +112123 masculine +112125 masculine +masculine +masculine +masculine +masculine +masculine +112132 masculine +neuter +masculine +112136 feminine +112138 feminine +feminine +112142 masculine +masculine +masculine +masculine +112150 feminine +masculine +112154 masculine +112157 masculine +112159 neuter +masculine +masculine +112166 feminine +feminine +112170 masculine +112176 masculine +112178 feminine +masculine +masculine +112182 masculine +masculine +112185 masculine +112187 masculine +masculine +masculine +112191 masculine +masculine +neuter +neuter +feminine +feminine +112198 feminine +feminine +112202 masculine +112204 neuter +112207 masculine +masculine +112210 feminine +feminine +112213 feminine +masculine +feminine +112217 neuter +masculine +112220 feminine +feminine +masculine +112224 masculine +neuter +112227 masculine +masculine +masculine +112231 masculine +112233 masculine +masculine +masculine +masculine +112239 feminine +feminine +112242 feminine +feminine +112245 masculine +masculine +neuter +112250 masculine +112254 neuter +112264 masculine +masculine +feminine +112268 feminine +masculine +masculine +masculine +112273 neuter +feminine +feminine +112278 neuter +112280 neuter +feminine +feminine +neuter +masculine +112287 feminine +112290 neuter +112292 masculine +112295 neuter +112298 masculine +112301 feminine +112303 neuter +neuter +112309 masculine +masculine +112312 masculine +feminine +feminine +masculine +neuter +neuter +112319 feminine +neuter +112322 feminine +masculine +masculine +feminine +feminine +feminine +masculine +112331 neuter +neuter +masculine +masculine +112337 feminine +112339 feminine +masculine +masculine +112343 masculine +feminine +feminine +112347 neuter +neuter +masculine +neuter +112352 neuter +neuter +112355 feminine +neuter +112360 masculine +masculine +112363 feminine +neuter +masculine +masculine +masculine +112369 masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +112379 feminine +feminine +feminine +feminine +112385 masculine +masculine +112388 masculine +masculine +112393 masculine +112395 feminine +112397 feminine +feminine +feminine +112401 neuter +112403 masculine +112405 feminine +feminine +112408 neuter +masculine +112411 feminine +feminine +feminine +feminine +112417 feminine +feminine +masculine +masculine +masculine +112423 feminine +feminine +masculine +112428 neuter +112435 masculine +masculine +masculine +112439 masculine +masculine +masculine +112443 masculine +neuter +112448 masculine +112450 feminine +feminine +112455 masculine +masculine +masculine +112459 masculine +112461 feminine +112463 feminine +112465 feminine +112467 feminine +112471 feminine +feminine +feminine +feminine +feminine +feminine +112479 neuter +112482 neuter +neuter +112487 feminine +112489 feminine +feminine +feminine +neuter +neuter +neuter +112497 neuter +112501 feminine +feminine +feminine +112505 masculine +112507 masculine +112509 feminine +feminine +112512 masculine +112514 neuter +masculine +112518 masculine +112520 masculine +masculine +112523 masculine +112529 masculine +masculine +112532 masculine +feminine +112535 feminine +feminine +112538 feminine +112540 feminine +feminine +112543 feminine +feminine +112546 feminine +112549 masculine +feminine +neuter +112553 neuter +112557 masculine +masculine +masculine +112562 feminine +112564 masculine +masculine +112567 neuter +112569 neuter +112571 masculine +masculine +112574 feminine +112576 feminine +112578 feminine +112581 masculine +112584 feminine +feminine +112587 feminine +feminine +feminine +112591 feminine +112593 feminine +feminine +feminine +112598 neuter +112601 masculine +112605 masculine +masculine +masculine +112610 masculine +112613 feminine +feminine +112618 masculine +masculine +feminine +112623 neuter +neuter +112626 feminine +masculine +masculine +feminine +112631 neuter +neuter +feminine +112639 masculine +masculine +112643 masculine +112646 neuter +neuter +neuter +112651 feminine +feminine +112657 masculine +masculine +112661 feminine +neuter +112664 feminine +feminine +feminine +112671 feminine +112673 feminine +feminine +feminine +112678 neuter +feminine +112682 feminine +112684 feminine +feminine +neuter +112688 neuter +112691 feminine +112695 feminine +feminine +112698 masculine +masculine +feminine +112704 masculine +112707 masculine +masculine +112710 feminine +feminine +112713 feminine +112715 feminine +112719 feminine +feminine +112722 feminine +112724 feminine +112726 masculine +112728 masculine +masculine +feminine +feminine +112734 masculine +masculine +112737 masculine +112739 feminine +112742 feminine +feminine +masculine +masculine +112749 masculine +masculine +masculine +masculine +masculine +masculine +112756 masculine +feminine +112766 masculine +masculine +masculine +masculine +112771 masculine +112775 masculine +masculine +masculine +112781 masculine +masculine +112784 masculine +masculine +112787 masculine +masculine +masculine +112791 neuter +112794 neuter +neuter +masculine +112798 feminine +feminine +112801 masculine +112805 feminine +feminine +masculine +masculine +112813 masculine +masculine +112817 masculine +masculine +112820 feminine +feminine +112823 feminine +masculine +masculine +feminine +feminine +feminine +112830 feminine +112832 feminine +112834 masculine +112839 neuter +neuter +neuter +neuter +neuter +112845 neuter +112847 neuter +112851 masculine +112854 masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +112865 neuter +neuter +masculine +masculine +112870 feminine +feminine +112874 masculine +masculine +masculine +masculine +112881 masculine +112888 masculine +112890 masculine +masculine +feminine +feminine +masculine +neuter +112900 masculine +112905 masculine +masculine +masculine +masculine +masculine +112911 masculine +masculine +112914 feminine +112916 feminine +feminine +112919 neuter +masculine +112922 masculine +112924 feminine +112926 feminine +112928 feminine +112930 masculine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +112941 masculine +feminine +feminine +masculine +masculine +112947 feminine +feminine +112951 masculine +masculine +feminine +feminine +112956 feminine +112958 neuter +112961 masculine +masculine +112966 neuter +112969 masculine +feminine +112972 neuter +neuter +112976 masculine +masculine +112981 masculine +112983 feminine +112985 feminine +feminine +feminine +112989 feminine +feminine +112992 masculine +masculine +112995 masculine +112997 feminine +112999 feminine +neuter +neuter +neuter +113004 feminine +feminine +feminine +masculine +masculine +113011 feminine +feminine +113014 masculine +113016 feminine +feminine +113020 masculine +masculine +113023 neuter +113027 feminine +feminine +feminine +feminine +feminine +feminine +113034 masculine +masculine +masculine +feminine +feminine +113040 feminine +feminine +feminine +113044 feminine +113048 feminine +feminine +feminine +113052 masculine +masculine +113056 masculine +masculine +masculine +masculine +neuter +neuter +113063 masculine +masculine +masculine +masculine +113068 masculine +masculine +feminine +feminine +feminine +113075 feminine +feminine +feminine +feminine +113080 feminine +feminine +masculine +masculine +113085 masculine +masculine +feminine +masculine +masculine +113091 masculine +masculine +113094 masculine +masculine +masculine +masculine +masculine +masculine +113101 masculine +masculine +masculine +masculine +masculine +masculine +feminine +neuter +neuter +masculine +masculine +113113 masculine +masculine +113118 masculine +feminine +113121 neuter +neuter +113124 masculine +masculine +113127 masculine +113129 masculine +113136 masculine +feminine +113140 masculine +masculine +masculine +113144 neuter +113147 feminine +113151 neuter +neuter +masculine +113155 masculine +masculine +masculine +masculine +masculine +113161 neuter +neuter +113165 feminine +113167 feminine +113169 masculine +feminine +feminine +113173 masculine +feminine +feminine +feminine +113178 feminine +feminine +feminine +feminine +feminine +masculine +masculine +113186 feminine +feminine +113189 feminine +feminine +113193 masculine +masculine +masculine +masculine +113198 neuter +masculine +113201 feminine +feminine +feminine +113205 masculine +masculine +masculine +neuter +neuter +feminine +neuter +feminine +113214 masculine +masculine +113217 masculine +masculine +masculine +masculine +113222 feminine +113224 masculine +masculine +masculine +113229 masculine +113231 feminine +feminine +113234 feminine +113236 feminine +113239 feminine +113241 feminine +feminine +113244 feminine +113246 feminine +masculine +113250 masculine +113252 neuter +neuter +113255 feminine +113257 masculine +feminine +feminine +113262 feminine +feminine +feminine +113266 neuter +113268 feminine +feminine +113271 feminine +113273 feminine +feminine +113276 feminine +113284 feminine +feminine +113289 neuter +neuter +masculine +masculine +neuter +113298 feminine +feminine +feminine +feminine +113307 masculine +masculine +neuter +feminine +113312 feminine +113314 feminine +113316 masculine +113320 neuter +neuter +masculine +masculine +113327 masculine +masculine +masculine +113332 neuter +neuter +113335 feminine +masculine +masculine +masculine +113341 masculine +feminine +feminine +113346 neuter +neuter +113351 feminine +feminine +113354 feminine +feminine +feminine +113359 masculine +masculine +113362 masculine +masculine +113365 feminine +113368 feminine +feminine +masculine +masculine +113373 masculine +masculine +113376 masculine +masculine +masculine +113380 masculine +feminine +113383 feminine +113385 neuter +neuter +113388 neuter +113391 masculine +113393 masculine +113395 masculine +113397 feminine +feminine +113400 neuter +113407 masculine +113413 masculine +feminine +feminine +113419 feminine +feminine +feminine +113423 feminine +masculine +masculine +masculine +113431 feminine +113433 feminine +feminine +113436 masculine +masculine +feminine +feminine +feminine +113443 neuter +neuter +neuter +neuter +113450 neuter +113454 masculine +masculine +113457 feminine +feminine +masculine +113461 masculine +113463 masculine +113465 neuter +masculine +masculine +masculine +masculine +masculine +113477 feminine +feminine +113482 masculine +113484 feminine +113491 masculine +masculine +masculine +113495 neuter +113497 masculine +113499 feminine +feminine +feminine +113503 neuter +113505 feminine +113507 neuter +113511 neuter +113516 feminine +feminine +feminine +113520 masculine +masculine +113523 neuter +113528 masculine +masculine +neuter +113532 masculine +masculine +masculine +masculine +113538 masculine +113542 masculine +masculine +masculine +masculine +masculine +masculine +113549 feminine +masculine +masculine +feminine +113554 masculine +masculine +113561 masculine +113569 masculine +masculine +masculine +neuter +masculine +masculine +113577 neuter +113582 masculine +masculine +feminine +113586 neuter +113588 masculine +masculine +masculine +113592 masculine +113594 neuter +masculine +113597 neuter +neuter +113601 neuter +113604 masculine +113606 masculine +113608 masculine +masculine +masculine +masculine +113615 neuter +neuter +113619 masculine +masculine +113623 masculine +113625 feminine +feminine +113628 masculine +masculine +113631 feminine +feminine +masculine +masculine +masculine +113647 masculine +113652 masculine +masculine +113657 masculine +113660 neuter +113662 masculine +113664 masculine +masculine +113669 neuter +neuter +113672 feminine +masculine +masculine +113677 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +113689 feminine +feminine +feminine +113695 neuter +feminine +113699 masculine +masculine +masculine +113703 feminine +feminine +113706 masculine +113708 masculine +113710 masculine +masculine +113713 feminine +feminine +113716 masculine +feminine +113722 feminine +masculine +feminine +113726 masculine +masculine +masculine +masculine +masculine +113732 masculine +feminine +feminine +feminine +113737 masculine +masculine +masculine +masculine +113744 feminine +masculine +masculine +masculine +neuter +neuter +masculine +113753 feminine +feminine +113757 neuter +neuter +neuter +113761 neuter +113764 neuter +113766 neuter +113769 neuter +113771 feminine +113773 neuter +113775 feminine +113778 masculine +113780 masculine +113782 neuter +113784 neuter +113786 feminine +neuter +neuter +masculine +masculine +113792 neuter +neuter +neuter +neuter +113797 feminine +feminine +feminine +113803 feminine +feminine +feminine +feminine +113808 masculine +masculine +masculine +masculine +113813 feminine +feminine +113816 feminine +feminine +113819 feminine +feminine +113822 masculine +113825 feminine +113828 masculine +masculine +113834 masculine +113836 masculine +masculine +masculine +113840 feminine +masculine +masculine +masculine +113847 masculine +masculine +masculine +feminine +113852 feminine +feminine +113857 feminine +masculine +masculine +feminine +masculine +113863 masculine +113865 neuter +masculine +neuter +113869 neuter +113873 feminine +feminine +113876 masculine +masculine +113880 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +113903 masculine +masculine +feminine +feminine +113908 feminine +feminine +feminine +masculine +113913 masculine +113917 masculine +113919 masculine +masculine +113922 feminine +feminine +113925 masculine +neuter +neuter +feminine +neuter +feminine +feminine +113933 neuter +113937 feminine +feminine +113940 neuter +113942 masculine +masculine +masculine +113946 masculine +113948 masculine +113951 masculine +113953 feminine +feminine +masculine +masculine +masculine +masculine +masculine +113961 feminine +feminine +113967 neuter +113969 feminine +feminine +masculine +feminine +113974 masculine +113977 feminine +masculine +113984 feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +neuter +neuter +neuter +114006 feminine +114008 neuter +114010 neuter +masculine +masculine +114016 masculine +114019 masculine +masculine +114023 masculine +masculine +masculine +114029 masculine +masculine +114033 masculine +masculine +114036 masculine +114039 neuter +neuter +masculine +114043 masculine +114048 neuter +114052 masculine +114054 masculine +114059 neuter +114061 neuter +neuter +neuter +neuter +114068 feminine +114070 feminine +feminine +114073 masculine +masculine +feminine +feminine +feminine +114079 feminine +114081 feminine +114083 masculine +114085 feminine +114087 feminine +feminine +114090 feminine +114092 masculine +114094 masculine +masculine +masculine +masculine +114099 neuter +neuter +neuter +masculine +114105 masculine +masculine +114108 masculine +masculine +masculine +masculine +114113 masculine +114115 masculine +114117 feminine +feminine +masculine +114121 feminine +feminine +masculine +114125 masculine +masculine +114134 feminine +feminine +114137 feminine +114140 masculine +114143 feminine +feminine +feminine +114149 feminine +feminine +feminine +masculine +114154 masculine +masculine +feminine +feminine +114161 feminine +feminine +feminine +feminine +114168 masculine +masculine +114175 neuter +114178 neuter +masculine +feminine +feminine +114189 masculine +masculine +feminine +feminine +114195 masculine +masculine +masculine +114199 masculine +masculine +114202 feminine +feminine +114205 neuter +114208 masculine +feminine +feminine +masculine +masculine +114215 masculine +masculine +masculine +masculine +masculine +114221 feminine +feminine +feminine +114226 neuter +114230 masculine +masculine +masculine +feminine +feminine +masculine +114242 masculine +114245 masculine +masculine +114248 masculine +114252 feminine +masculine +114255 feminine +masculine +114258 feminine +masculine +114261 masculine +114264 masculine +masculine +114268 masculine +114272 masculine +114274 feminine +114276 masculine +114279 feminine +masculine +masculine +masculine +114285 feminine +114287 masculine +masculine +114291 neuter +neuter +114294 feminine +feminine +masculine +masculine +masculine +neuter +neuter +114304 masculine +masculine +masculine +114308 neuter +neuter +masculine +masculine +114318 masculine +masculine +masculine +114322 feminine +feminine +114325 feminine +masculine +114330 masculine +114334 masculine +114337 masculine +masculine +114347 neuter +neuter +114352 neuter +neuter +neuter +114358 neuter +masculine +114362 masculine +masculine +114365 neuter +neuter +neuter +114371 feminine +feminine +masculine +feminine +feminine +masculine +feminine +feminine +114380 masculine +masculine +masculine +masculine +114386 feminine +114388 masculine +114390 masculine +masculine +masculine +masculine +114396 feminine +114398 masculine +114401 feminine +masculine +114405 masculine +114409 masculine +114411 masculine +114413 masculine +114415 feminine +114417 masculine +masculine +masculine +masculine +masculine +114423 neuter +neuter +114426 feminine +feminine +114430 masculine +masculine +masculine +114434 masculine +masculine +masculine +114438 feminine +masculine +masculine +114442 feminine +feminine +feminine +114446 feminine +114448 feminine +feminine +feminine +feminine +114453 masculine +masculine +masculine +114457 masculine +masculine +114461 masculine +masculine +masculine +masculine +masculine +114467 neuter +neuter +114472 feminine +masculine +masculine +114476 masculine +masculine +neuter +neuter +114481 feminine +feminine +feminine +114485 feminine +114487 masculine +masculine +114490 masculine +masculine +masculine +masculine +114495 neuter +114500 feminine +114502 neuter +neuter +114508 feminine +masculine +114515 masculine +114517 masculine +feminine +feminine +masculine +masculine +neuter +neuter +114526 feminine +feminine +114529 neuter +114532 masculine +masculine +114536 masculine +masculine +masculine +114540 masculine +114542 masculine +114544 masculine +114546 masculine +114548 masculine +114550 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +114559 feminine +feminine +masculine +masculine +114565 masculine +114569 feminine +feminine +feminine +feminine +114574 masculine +masculine +114579 masculine +masculine +masculine +114583 masculine +114585 masculine +114587 feminine +feminine +masculine +114592 masculine +masculine +masculine +114596 masculine +neuter +114600 neuter +neuter +114604 masculine +114606 masculine +masculine +masculine +masculine +masculine +114612 masculine +neuter +neuter +feminine +feminine +feminine +feminine +feminine +114621 feminine +114623 feminine +feminine +114626 masculine +114631 feminine +feminine +114634 masculine +masculine +masculine +114638 feminine +masculine +masculine +feminine +feminine +neuter +neuter +masculine +masculine +114648 masculine +masculine +114651 masculine +neuter +neuter +114656 masculine +114658 masculine +masculine +114661 feminine +feminine +masculine +114667 neuter +neuter +114670 masculine +masculine +114673 masculine +114676 neuter +neuter +neuter +masculine +114683 neuter +114685 feminine +feminine +feminine +masculine +114690 masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +114703 neuter +feminine +114706 feminine +114708 masculine +masculine +feminine +feminine +114714 feminine +feminine +114717 feminine +feminine +feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +114729 masculine +masculine +masculine +masculine +114734 masculine +masculine +114740 neuter +masculine +masculine +masculine +neuter +neuter +114747 feminine +feminine +feminine +feminine +masculine +masculine +masculine +114755 masculine +114757 feminine +114759 masculine +114763 neuter +neuter +masculine +masculine +masculine +114770 neuter +masculine +114774 masculine +114776 masculine +114778 feminine +feminine +feminine +masculine +114783 feminine +feminine +feminine +masculine +masculine +114789 masculine +114792 neuter +114795 feminine +feminine +masculine +masculine +feminine +masculine +masculine +feminine +114805 masculine +feminine +feminine +114809 feminine +feminine +feminine +114819 masculine +114821 masculine +masculine +feminine +feminine +feminine +114827 feminine +feminine +feminine +masculine +masculine +masculine +114834 masculine +114836 masculine +masculine +masculine +114840 masculine +114847 feminine +feminine +114851 masculine +masculine +masculine +masculine +neuter +neuter +neuter +114864 feminine +feminine +masculine +114870 masculine +feminine +feminine +114876 neuter +neuter +neuter +masculine +114881 masculine +114883 masculine +114885 masculine +feminine +feminine +masculine +114890 masculine +masculine +114897 masculine +masculine +masculine +masculine +feminine +114903 feminine +feminine +114906 feminine +114908 masculine +masculine +masculine +masculine +masculine +114915 feminine +feminine +114918 feminine +feminine +masculine +masculine +114923 masculine +114927 neuter +neuter +114930 feminine +neuter +114936 neuter +masculine +neuter +114942 neuter +feminine +114945 feminine +neuter +neuter +neuter +114954 masculine +masculine +masculine +masculine +114960 masculine +feminine +masculine +feminine +masculine +114967 feminine +feminine +feminine +masculine +masculine +masculine +114975 neuter +114981 neuter +neuter +114984 masculine +masculine +masculine +neuter +114989 neuter +114991 neuter +masculine +masculine +114995 feminine +feminine +114998 feminine +115000 feminine +115002 feminine +feminine +115007 feminine +115009 feminine +masculine +masculine +115013 feminine +115015 feminine +feminine +115018 masculine +115020 masculine +masculine +115025 masculine +masculine +115031 masculine +115033 masculine +115039 feminine +115044 masculine +masculine +masculine +115048 masculine +115052 neuter +masculine +115058 masculine +masculine +neuter +neuter +115064 feminine +feminine +feminine +115070 masculine +115073 masculine +115076 masculine +115078 masculine +masculine +115082 feminine +feminine +feminine +115086 masculine +115088 masculine +masculine +masculine +masculine +115093 masculine +masculine +masculine +masculine +masculine +masculine +115100 masculine +115103 feminine +feminine +feminine +115107 masculine +masculine +masculine +115112 feminine +115114 masculine +115116 feminine +115118 feminine +115120 feminine +115122 masculine +masculine +115126 masculine +masculine +masculine +115130 masculine +masculine +115134 feminine +115136 masculine +115138 feminine +feminine +115141 masculine +115143 feminine +feminine +115146 feminine +feminine +feminine +115151 masculine +masculine +masculine +115156 masculine +masculine +masculine +115160 feminine +feminine +feminine +feminine +115165 feminine +115168 feminine +neuter +neuter +neuter +115175 masculine +115177 feminine +feminine +115180 feminine +115183 feminine +feminine +115187 neuter +neuter +masculine +masculine +115194 masculine +115196 feminine +115198 masculine +feminine +masculine +115203 neuter +neuter +115206 feminine +feminine +115210 masculine +masculine +115213 masculine +masculine +115218 masculine +masculine +masculine +115224 neuter +neuter +neuter +115229 masculine +masculine +masculine +masculine +masculine +115236 masculine +115243 masculine +115246 masculine +masculine +neuter +115250 neuter +neuter +neuter +115255 masculine +115257 masculine +115265 masculine +masculine +neuter +neuter +115271 feminine +feminine +feminine +neuter +115281 feminine +neuter +neuter +115288 neuter +115292 neuter +115295 feminine +115297 masculine +masculine +115302 masculine +115305 masculine +masculine +masculine +115311 neuter +115316 feminine +115319 masculine +115324 masculine +115326 masculine +115331 neuter +115336 neuter +115340 masculine +115342 feminine +feminine +feminine +115353 masculine +115357 masculine +115362 masculine +115365 neuter +neuter +115368 masculine +masculine +feminine +feminine +115375 masculine +115379 neuter +115387 feminine +115392 feminine +feminine +115399 masculine +masculine +masculine +115404 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +115413 feminine +feminine +masculine +masculine +masculine +masculine +115420 neuter +neuter +115427 masculine +masculine +masculine +115431 masculine +masculine +masculine +masculine +115436 masculine +feminine +feminine +feminine +115443 masculine +masculine +115446 masculine +neuter +115449 masculine +115452 masculine +masculine +masculine +masculine +neuter +feminine +feminine +115460 masculine +feminine +feminine +masculine +115465 masculine +neuter +neuter +neuter +neuter +feminine +feminine +masculine +masculine +feminine +feminine +masculine +115479 feminine +feminine +feminine +115483 neuter +masculine +masculine +masculine +masculine +masculine +neuter +neuter +neuter +115493 masculine +115496 masculine +masculine +masculine +115501 masculine +115513 masculine +115515 masculine +115517 masculine +115521 masculine +115526 masculine +masculine +115529 feminine +feminine +115534 masculine +masculine +masculine +masculine +115541 masculine +masculine +115544 masculine +masculine +masculine +masculine +masculine +neuter +115551 masculine +masculine +masculine +neuter +feminine +115558 masculine +masculine +masculine +masculine +masculine +masculine +115566 masculine +masculine +masculine +masculine +115571 feminine +feminine +feminine +feminine +feminine +feminine +feminine +masculine +115580 feminine +115583 feminine +115585 neuter +115588 masculine +masculine +masculine +masculine +115593 neuter +feminine +115596 masculine +masculine +115600 masculine +115603 feminine +feminine +feminine +115608 neuter +feminine +feminine +115613 masculine +masculine +masculine +115621 masculine +115624 neuter +115627 neuter +115629 masculine +115631 neuter +115636 masculine +masculine +115640 neuter +neuter +115647 masculine +masculine +masculine +115654 neuter +115659 masculine +masculine +115662 neuter +masculine +masculine +115667 masculine +115669 neuter +neuter +115672 feminine +neuter +115675 masculine +masculine +115678 feminine +115680 neuter +115685 neuter +neuter +115692 masculine +115694 masculine +masculine +masculine +115698 masculine +115700 feminine +feminine +115703 feminine +115705 feminine +feminine +115710 masculine +feminine +feminine +feminine +feminine +feminine +115718 masculine +masculine +115721 masculine +masculine +115726 masculine +masculine +masculine +115730 neuter +115732 neuter +115734 feminine +feminine +115737 neuter +neuter +masculine +115741 feminine +masculine +feminine +115746 masculine +115748 feminine +feminine +feminine +feminine +115753 feminine +115758 masculine +masculine +neuter +115762 masculine +115765 masculine +115767 masculine +masculine +115771 masculine +115773 masculine +neuter +neuter +115777 masculine +feminine +115780 feminine +115782 masculine +neuter +115786 masculine +masculine +masculine +115791 neuter +115793 masculine +neuter +neuter +neuter +115798 masculine +neuter +115804 masculine +neuter +neuter +neuter +115810 masculine +neuter +neuter +115814 masculine +masculine +masculine +115818 neuter +neuter +masculine +masculine +feminine +115824 feminine +masculine +115827 feminine +masculine +115830 masculine +115832 masculine +115835 masculine +115837 masculine +neuter +neuter +115842 masculine +neuter +neuter +masculine +masculine +115848 feminine +masculine +masculine +masculine +feminine +feminine +masculine +115856 neuter +115860 masculine +masculine +115863 masculine +masculine +115866 masculine +masculine +115869 feminine +feminine +115873 masculine +masculine +115876 masculine +115878 neuter +neuter +115881 masculine +masculine +115885 neuter +feminine +115893 masculine +115895 masculine +115901 neuter +neuter +neuter +115906 masculine +masculine +115910 neuter +neuter +115913 neuter +115915 feminine +115917 masculine +115920 neuter +neuter +115924 masculine +masculine +115927 masculine +neuter +neuter +masculine +masculine +masculine +neuter +115935 masculine +masculine +115939 masculine +masculine +masculine +masculine +115944 neuter +neuter +115947 masculine +feminine +115953 masculine +115956 neuter +masculine +115962 neuter +masculine +masculine +115968 masculine +115970 masculine +masculine +neuter +115974 masculine +masculine +115977 neuter +115979 feminine +feminine +masculine +masculine +115985 neuter +115987 masculine +masculine +115990 masculine +masculine +115994 masculine +masculine +feminine +feminine +masculine +116000 masculine +masculine +116003 masculine +feminine +feminine +116007 masculine +masculine +masculine +masculine +masculine +masculine +116015 masculine +116017 masculine +masculine +masculine +masculine +116022 feminine +feminine +masculine +116026 masculine +116029 neuter +feminine +feminine +116033 masculine +masculine +masculine +masculine +masculine +116039 masculine +masculine +116043 masculine +116045 masculine +neuter +masculine +masculine +116051 masculine +masculine +116054 masculine +masculine +masculine +masculine +116059 masculine +116061 neuter +neuter +neuter +116065 masculine +116067 masculine +116069 masculine +masculine +masculine +masculine +masculine +116077 feminine +feminine +116080 neuter +neuter +feminine +feminine +116085 neuter +feminine +116091 neuter +neuter +neuter +neuter +116097 feminine +feminine +masculine +116103 feminine +feminine +116108 masculine +masculine +116111 feminine +feminine +masculine +masculine +116116 feminine +feminine +116120 masculine +masculine +116124 feminine +116127 neuter +neuter +116131 neuter +116134 feminine +feminine +feminine +116141 feminine +feminine +116144 masculine +116147 feminine +feminine +116153 feminine +feminine +116159 feminine +feminine +116163 masculine +116168 masculine +116170 feminine +feminine +feminine +116174 neuter +116177 masculine +masculine +116181 masculine +116183 feminine +feminine +116186 masculine +neuter +116193 masculine +116196 feminine +feminine +feminine +116200 masculine +masculine +masculine +116205 feminine +feminine +feminine +feminine +116210 neuter +feminine +116214 neuter +116218 feminine +feminine +masculine +116224 feminine +feminine +116229 masculine +masculine +116232 masculine +masculine +116237 masculine +masculine +masculine +116241 feminine +116243 masculine +116245 masculine +116248 neuter +116250 masculine +masculine +masculine +neuter +neuter +116257 feminine +feminine +116260 masculine +116265 feminine +feminine +masculine +116270 masculine +masculine +116279 feminine +116284 feminine +feminine +116288 feminine +feminine +masculine +116292 masculine +116299 masculine +116301 masculine +116305 masculine +masculine +feminine +feminine +masculine +116311 masculine +feminine +feminine +masculine +masculine +116319 feminine +feminine +masculine +masculine +116328 feminine +feminine +116334 feminine +feminine +116338 neuter +neuter +116341 feminine +masculine +neuter +116348 feminine +feminine +116353 masculine +masculine +116356 feminine +feminine +feminine +feminine +116361 neuter +neuter +neuter +masculine +116367 masculine +116372 feminine +feminine +116378 masculine +116381 feminine +116383 masculine +neuter +masculine +116389 feminine +116392 feminine +feminine +116396 masculine +masculine +116399 masculine +masculine +116405 feminine +feminine +masculine +116411 feminine +feminine +116416 masculine +masculine +116422 feminine +feminine +116426 neuter +116429 masculine +masculine +masculine +masculine +masculine +116435 masculine +masculine +116438 feminine +feminine +masculine +116442 masculine +116445 neuter +neuter +masculine +116450 neuter +neuter +masculine +masculine +116458 feminine +feminine +feminine +116464 neuter +neuter +neuter +feminine +feminine +masculine +116472 masculine +masculine +masculine +masculine +masculine +116478 masculine +116480 masculine +116482 feminine +feminine +feminine +116486 masculine +116488 masculine +feminine +116491 neuter +116493 masculine +116495 masculine +116497 masculine +feminine +116500 feminine +feminine +116505 feminine +feminine +116508 masculine +116510 neuter +neuter +116513 neuter +masculine +masculine +masculine +116518 masculine +116520 masculine +masculine +116523 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +116535 feminine +feminine +116539 masculine +116542 masculine +116544 feminine +feminine +116548 masculine +116550 neuter +116552 feminine +116554 feminine +116558 feminine +masculine +masculine +feminine +feminine +116565 neuter +116567 feminine +116570 feminine +feminine +116573 masculine +masculine +116576 masculine +masculine +116579 masculine +116581 neuter +116583 masculine +masculine +116588 neuter +116590 feminine +116592 feminine +masculine +116595 masculine +masculine +116598 masculine +116601 masculine +116603 feminine +116606 feminine +116610 masculine +masculine +116615 masculine +116618 feminine +116621 masculine +masculine +116624 feminine +feminine +116627 masculine +116629 masculine +masculine +116633 masculine +116636 masculine +masculine +116639 masculine +116642 masculine +116644 masculine +masculine +116647 masculine +masculine +116659 masculine +116662 masculine +116664 masculine +masculine +116667 feminine +feminine +masculine +masculine +116672 feminine +feminine +feminine +feminine +masculine +116678 feminine +116680 feminine +116682 masculine +masculine +116685 masculine +116687 masculine +116689 feminine +feminine +116692 neuter +masculine +116695 masculine +116697 feminine +feminine +116700 masculine +masculine +116704 neuter +116706 feminine +feminine +116709 masculine +116711 masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +116720 masculine +masculine +masculine +116724 feminine +feminine +masculine +116728 masculine +masculine +116731 masculine +masculine +116734 masculine +116737 masculine +116739 feminine +feminine +116743 masculine +116745 masculine +116747 masculine +masculine +116751 feminine +neuter +116755 masculine +neuter +neuter +feminine +feminine +neuter +neuter +masculine +masculine +116766 masculine +feminine +neuter +116770 feminine +feminine +116773 masculine +masculine +masculine +neuter +masculine +masculine +feminine +116781 masculine +116785 feminine +feminine +feminine +masculine +masculine +116791 feminine +feminine +neuter +neuter +neuter +masculine +116798 feminine +116800 neuter +116802 neuter +116804 masculine +masculine +feminine +feminine +masculine +masculine +masculine +116812 feminine +feminine +116817 masculine +masculine +feminine +116821 neuter +neuter +116824 feminine +116826 masculine +feminine +masculine +116830 feminine +feminine +feminine +masculine +116835 neuter +neuter +116838 neuter +116842 masculine +masculine +116845 neuter +masculine +116848 masculine +116850 masculine +feminine +feminine +feminine +feminine +116856 masculine +neuter +neuter +masculine +116861 masculine +neuter +masculine +neuter +116866 feminine +masculine +masculine +116870 masculine +116874 feminine +masculine +masculine +masculine +masculine +masculine +masculine +116882 masculine +116884 feminine +feminine +feminine +masculine +116889 feminine +masculine +116892 masculine +116894 feminine +feminine +feminine +masculine +116899 masculine +116903 feminine +116905 masculine +masculine +116908 feminine +feminine +116911 masculine +feminine +116914 feminine +116916 feminine +neuter +neuter +116920 feminine +116922 masculine +116926 neuter +neuter +116929 neuter +feminine +116937 masculine +masculine +masculine +116941 neuter +neuter +116945 feminine +feminine +feminine +116950 neuter +neuter +masculine +masculine +116955 masculine +masculine +masculine +116960 masculine +116962 feminine +feminine +feminine +116967 feminine +feminine +feminine +feminine +116972 neuter +116975 masculine +116978 masculine +masculine +116981 feminine +116983 feminine +masculine +feminine +feminine +116988 masculine +masculine +masculine +masculine +masculine +116995 masculine +masculine +117001 masculine +masculine +117005 masculine +117009 masculine +117014 masculine +117016 feminine +feminine +117019 masculine +117021 masculine +masculine +117025 masculine +feminine +feminine +neuter +117030 feminine +masculine +masculine +117034 masculine +neuter +masculine +117038 masculine +masculine +feminine +feminine +neuter +neuter +feminine +feminine +masculine +masculine +masculine +117050 masculine +117054 neuter +neuter +117057 neuter +neuter +117060 masculine +feminine +feminine +117064 masculine +masculine +117067 feminine +feminine +feminine +feminine +117073 feminine +feminine +feminine +117077 feminine +117079 feminine +117081 feminine +117083 neuter +neuter +neuter +neuter +117088 masculine +masculine +117094 feminine +feminine +masculine +masculine +masculine +117100 masculine +masculine +117103 masculine +masculine +masculine +masculine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +117118 feminine +feminine +masculine +masculine +117123 masculine +masculine +masculine +117127 feminine +117129 neuter +117131 masculine +117133 neuter +masculine +masculine +feminine +117140 masculine +feminine +neuter +117144 masculine +feminine +masculine +masculine +masculine +117150 feminine +feminine +117153 feminine +neuter +masculine +117157 masculine +masculine +masculine +masculine +masculine +117163 masculine +117165 neuter +neuter +117169 masculine +masculine +masculine +feminine +masculine +masculine +masculine +117178 neuter +neuter +117182 masculine +117184 masculine +masculine +masculine +feminine +feminine +masculine +feminine +117194 masculine +masculine +masculine +masculine +neuter +117200 masculine +masculine +masculine +117204 masculine +117206 feminine +feminine +masculine +117210 masculine +117212 masculine +117214 masculine +117216 masculine +117218 masculine +masculine +feminine +feminine +117225 feminine +feminine +neuter +neuter +117230 masculine +masculine +117236 feminine +masculine +masculine +117242 masculine +117247 neuter +117250 masculine +117252 masculine +masculine +feminine +masculine +117260 feminine +feminine +masculine +masculine +117267 masculine +masculine +117272 feminine +117274 feminine +feminine +feminine +117279 masculine +masculine +117282 feminine +117284 feminine +117286 feminine +117288 feminine +feminine +masculine +117292 masculine +masculine +117297 feminine +feminine +masculine +117302 feminine +feminine +feminine +117306 feminine +117308 masculine +feminine +117313 masculine +117315 neuter +feminine +feminine +117320 feminine +masculine +117323 neuter +neuter +117326 neuter +117329 masculine +117331 masculine +masculine +117335 feminine +feminine +117338 masculine +neuter +masculine +117343 neuter +117345 neuter +117349 feminine +feminine +masculine +117353 masculine +masculine +masculine +117359 masculine +feminine +feminine +117364 feminine +feminine +feminine +117371 masculine +117373 masculine +masculine +117376 feminine +feminine +masculine +117381 feminine +feminine +feminine +117386 neuter +feminine +neuter +117390 neuter +117392 neuter +117394 masculine +masculine +117397 feminine +feminine +feminine +117401 feminine +117403 masculine +masculine +117407 neuter +117410 feminine +117413 masculine +117415 feminine +117417 masculine +masculine +117420 masculine +117422 feminine +117424 masculine +masculine +117427 masculine +117429 masculine +117434 masculine +117436 masculine +masculine +117439 neuter +117441 feminine +feminine +masculine +117445 masculine +117448 masculine +masculine +117451 masculine +masculine +117454 neuter +masculine +117459 masculine +117461 neuter +117463 masculine +117465 masculine +masculine +feminine +117469 feminine +feminine +117476 neuter +neuter +masculine +masculine +117481 masculine +masculine +masculine +117485 masculine +117487 neuter +117490 masculine +117495 masculine +masculine +masculine +masculine +masculine +masculine +117502 masculine +masculine +117505 masculine +masculine +masculine +masculine +masculine +117513 feminine +feminine +117516 masculine +masculine +neuter +117520 feminine +feminine +feminine +feminine +117526 feminine +masculine +masculine +117530 neuter +117533 masculine +masculine +117536 masculine +masculine +masculine +117540 masculine +masculine +feminine +117544 masculine +masculine +feminine +feminine +feminine +117550 masculine +masculine +masculine +117554 masculine +masculine +masculine +117558 neuter +117560 neuter +neuter +117563 masculine +masculine +masculine +117568 feminine +masculine +masculine +feminine +feminine +117574 masculine +masculine +masculine +neuter +neuter +117580 feminine +feminine +feminine +feminine +feminine +117586 masculine +masculine +117589 masculine +117591 masculine +masculine +117594 neuter +117597 neuter +117599 feminine +117602 neuter +117605 masculine +neuter +neuter +117614 feminine +117618 masculine +masculine +masculine +masculine +117623 masculine +neuter +neuter +masculine +neuter +117629 feminine +neuter +neuter +117635 masculine +masculine +117638 feminine +feminine +117644 neuter +117646 masculine +masculine +masculine +masculine +117652 neuter +neuter +117656 feminine +feminine +117659 neuter +117662 masculine +feminine +feminine +feminine +117667 feminine +feminine +117672 feminine +feminine +feminine +117676 feminine +117679 feminine +masculine +117683 masculine +masculine +117687 feminine +117690 masculine +117694 masculine +masculine +masculine +117699 masculine +masculine +masculine +feminine +feminine +117706 feminine +feminine +feminine +117710 masculine +masculine +masculine +117714 feminine +masculine +117717 feminine +feminine +masculine +117721 masculine +117723 feminine +feminine +117726 masculine +117730 feminine +feminine +117735 masculine +117737 masculine +117739 feminine +feminine +feminine +feminine +117744 masculine +masculine +masculine +117748 feminine +feminine +feminine +117752 masculine +masculine +masculine +117757 feminine +feminine +masculine +117762 feminine +masculine +117765 masculine +117768 masculine +117770 masculine +117772 masculine +117776 masculine +117781 masculine +masculine +masculine +masculine +117786 masculine +masculine +masculine +masculine +masculine +117792 masculine +masculine +117795 masculine +117799 masculine +117801 masculine +masculine +117804 masculine +117806 feminine +feminine +masculine +117810 feminine +feminine +masculine +117818 neuter +117820 feminine +117822 feminine +feminine +117825 neuter +neuter +117828 neuter +117830 masculine +117835 feminine +feminine +neuter +feminine +117840 neuter +neuter +neuter +117845 feminine +feminine +feminine +117849 feminine +117851 feminine +feminine +117854 feminine +feminine +117857 feminine +feminine +masculine +masculine +feminine +117863 neuter +117866 neuter +neuter +neuter +feminine +feminine +feminine +neuter +neuter +feminine +neuter +neuter +117878 feminine +feminine +feminine +feminine +feminine +117884 neuter +117886 feminine +feminine +feminine +feminine +neuter +neuter +117893 feminine +feminine +masculine +feminine +feminine +117899 feminine +feminine +feminine +feminine +117905 feminine +neuter +feminine +neuter +neuter +neuter +117912 neuter +117918 neuter +117920 masculine +117922 masculine +117925 feminine +feminine +feminine +117929 neuter +117931 masculine +masculine +feminine +feminine +masculine +117938 feminine +feminine +117941 masculine +masculine +masculine +masculine +masculine +117948 neuter +neuter +117952 masculine +117954 neuter +masculine +masculine +neuter +neuter +neuter +neuter +neuter +neuter +neuter +117966 feminine +neuter +neuter +feminine +117971 feminine +feminine +feminine +feminine +feminine +feminine +feminine +117979 masculine +masculine +masculine +masculine +117984 feminine +117986 neuter +117988 feminine +117991 feminine +117993 feminine +117995 masculine +masculine +neuter +117999 neuter +118001 neuter +118003 masculine +masculine +neuter +feminine +118008 masculine +feminine +neuter +118012 masculine +masculine +masculine +neuter +neuter +neuter +118019 feminine +feminine +118022 feminine +feminine +118025 feminine +neuter +118029 feminine +feminine +feminine +118034 neuter +masculine +118037 masculine +118040 neuter +neuter +neuter +118046 neuter +neuter +feminine +feminine +masculine +118053 neuter +neuter +masculine +118057 masculine +118059 feminine +feminine +feminine +masculine +masculine +118066 feminine +feminine +feminine +feminine +neuter +118072 neuter +neuter +masculine +masculine +masculine +118078 neuter +neuter +masculine +118082 masculine +masculine +masculine +118086 feminine +feminine +118090 neuter +neuter +118093 neuter +118095 masculine +masculine +118099 neuter +feminine +feminine +masculine +118105 masculine +masculine +118108 feminine +feminine +118111 feminine +feminine +feminine +feminine +118116 masculine +masculine +feminine +feminine +feminine +feminine +feminine +118125 feminine +feminine +118128 masculine +masculine +masculine +118132 feminine +118134 masculine +feminine +118142 masculine +masculine +118146 feminine +feminine +118149 neuter +118152 feminine +feminine +feminine +118156 masculine +masculine +118159 masculine +masculine +masculine +masculine +masculine +neuter +neuter +masculine +masculine +118169 masculine +masculine +118172 neuter +118174 neuter +neuter +118177 masculine +118179 neuter +neuter +neuter +118183 masculine +masculine +masculine +118187 masculine +neuter +neuter +neuter +feminine +feminine +feminine +118197 masculine +masculine +118201 feminine +feminine +118204 neuter +neuter +neuter +feminine +feminine +neuter +neuter +118216 neuter +neuter +118220 masculine +masculine +118224 feminine +118227 feminine +118229 feminine +118231 neuter +neuter +neuter +118235 masculine +masculine +neuter +118240 neuter +neuter +neuter +feminine +feminine +118246 feminine +118249 masculine +118252 neuter +neuter +neuter +neuter +neuter +118259 masculine +masculine +masculine +118264 neuter +neuter +masculine +masculine +118274 masculine +118276 masculine +masculine +118280 neuter +neuter +118283 masculine +118285 neuter +neuter +118289 masculine +118293 feminine +masculine +118299 feminine +masculine +masculine +118303 feminine +feminine +feminine +118307 feminine +feminine +masculine +118313 neuter +118315 masculine +masculine +118321 neuter +feminine +118325 masculine +masculine +118328 masculine +118330 neuter +masculine +feminine +118335 neuter +118337 feminine +118339 masculine +masculine +masculine +118343 feminine +118345 masculine +masculine +masculine +feminine +neuter +neuter +neuter +118353 feminine +feminine +feminine +neuter +neuter +118359 masculine +feminine +feminine +feminine +feminine +118366 neuter +neuter +118370 masculine +masculine +118377 feminine +118379 neuter +feminine +118383 feminine +feminine +masculine +masculine +118388 masculine +118391 feminine +feminine +feminine +118395 masculine +118397 neuter +neuter +masculine +118401 masculine +118403 feminine +118405 masculine +118407 masculine +masculine +118410 feminine +118412 feminine +118416 neuter +118419 neuter +118422 feminine +118427 masculine +masculine +118431 feminine +neuter +118437 neuter +118439 neuter +neuter +118442 neuter +masculine +118445 feminine +118447 feminine +118449 neuter +118452 feminine +118457 feminine +118459 masculine +118465 neuter +118467 neuter +neuter +118471 neuter +neuter +118474 neuter +neuter +118478 neuter +neuter +masculine +118483 feminine +feminine +neuter +neuter +masculine +masculine +118492 masculine +masculine +118496 feminine +masculine +118500 masculine +feminine +feminine +feminine +feminine +118508 feminine +118510 masculine +feminine +feminine +118514 feminine +masculine +118517 neuter +neuter +118521 feminine +masculine +masculine +neuter +neuter +masculine +118529 masculine +masculine +masculine +neuter +masculine +masculine +masculine +118537 feminine +feminine +118541 neuter +neuter +masculine +masculine +118549 neuter +neuter +neuter +neuter +118555 neuter +118557 feminine +feminine +feminine +feminine +118563 masculine +118565 feminine +feminine +feminine +118569 masculine +masculine +masculine +118574 feminine +masculine +118578 feminine +feminine +masculine +118582 masculine +118584 feminine +feminine +masculine +118588 feminine +feminine +masculine +118597 feminine +feminine +118600 feminine +118602 feminine +118604 masculine +masculine +feminine +118608 feminine +feminine +neuter +neuter +118613 neuter +neuter +masculine +feminine +118619 feminine +feminine +118622 feminine +118624 neuter +neuter +neuter +118628 feminine +feminine +masculine +118632 masculine +masculine +118635 masculine +masculine +masculine +masculine +118641 feminine +feminine +118644 feminine +feminine +masculine +feminine +feminine +118650 feminine +feminine +118653 masculine +neuter +neuter +neuter +neuter +118659 feminine +feminine +feminine +feminine +feminine +118665 masculine +masculine +masculine +118670 masculine +118672 masculine +feminine +118675 neuter +neuter +118678 masculine +feminine +feminine +masculine +118683 neuter +masculine +118686 masculine +118689 neuter +neuter +118692 feminine +feminine +feminine +118697 masculine +118700 neuter +118702 feminine +feminine +feminine +feminine +118708 feminine +118710 feminine +118712 feminine +feminine +feminine +feminine +118717 neuter +neuter +neuter +118721 masculine +masculine +masculine +masculine +masculine +masculine +118728 masculine +118730 masculine +118732 masculine +masculine +118735 neuter +118737 feminine +feminine +118740 masculine +masculine +masculine +masculine +masculine +masculine +118747 neuter +masculine +neuter +neuter +feminine +feminine +118754 neuter +118757 neuter +neuter +feminine +feminine +masculine +118764 masculine +masculine +118767 feminine +118773 masculine +masculine +masculine +masculine +neuter +neuter +118781 feminine +masculine +masculine +118786 feminine +neuter +feminine +118790 feminine +masculine +118793 feminine +feminine +neuter +118797 neuter +118799 masculine +118801 feminine +masculine +118804 neuter +masculine +masculine +118808 masculine +masculine +118812 masculine +masculine +118816 feminine +feminine +neuter +neuter +118822 feminine +118824 masculine +118826 masculine +feminine +feminine +118830 feminine +118834 feminine +feminine +118837 feminine +118839 feminine +feminine +118842 feminine +feminine +118846 neuter +neuter +masculine +masculine +masculine +118852 feminine +feminine +118856 neuter +neuter +neuter +masculine +masculine +118866 masculine +masculine +118870 feminine +118877 feminine +feminine +118881 masculine +118886 feminine +118888 feminine +118890 feminine +118892 feminine +feminine +118896 feminine +neuter +feminine +masculine +neuter +118902 neuter +118905 feminine +118907 masculine +masculine +feminine +118912 masculine +masculine +neuter +masculine +118917 neuter +118920 neuter +neuter +neuter +118924 feminine +masculine +feminine +feminine +118929 masculine +118931 masculine +masculine +118934 feminine +118937 masculine +masculine +118940 neuter +neuter +masculine +masculine +masculine +118947 feminine +masculine +118951 feminine +masculine +118954 neuter +118957 masculine +118963 masculine +masculine +masculine +118968 feminine +feminine +118972 masculine +masculine +118976 feminine +neuter +118982 masculine +masculine +masculine +masculine +118989 masculine +masculine +masculine +masculine +118994 feminine +masculine +masculine +118998 neuter +119000 neuter +masculine +119003 feminine +119005 feminine +masculine +masculine +masculine +119010 feminine +119012 masculine +masculine +119015 feminine +119017 feminine +feminine +masculine +119021 feminine +masculine +masculine +119027 masculine +119029 masculine +119032 feminine +119036 masculine +119039 feminine +119042 feminine +feminine +feminine +119046 feminine +119048 feminine +masculine +119051 masculine +119053 masculine +masculine +masculine +feminine +feminine +feminine +feminine +119062 feminine +masculine +masculine +feminine +feminine +feminine +masculine +119070 masculine +masculine +masculine +feminine +119075 feminine +feminine +feminine +119079 feminine +neuter +119084 masculine +feminine +119087 masculine +119089 masculine +masculine +119094 masculine +masculine +119098 neuter +119100 neuter +neuter +masculine +masculine +neuter +neuter +119108 feminine +feminine +feminine +119112 neuter +neuter +feminine +feminine +feminine +feminine +119119 feminine +119121 masculine +masculine +119124 masculine +feminine +feminine +119129 feminine +masculine +119132 masculine +119134 masculine +119136 masculine +119138 masculine +119141 feminine +feminine +119144 masculine +neuter +masculine +119149 feminine +119155 feminine +119157 feminine +119161 masculine +119166 feminine +neuter +119169 feminine +119173 masculine +masculine +masculine +masculine +masculine +119181 masculine +feminine +feminine +119185 masculine +masculine +masculine +masculine +119190 masculine +masculine +119193 masculine +feminine +feminine +masculine +119198 masculine +119202 masculine +119205 neuter +masculine +119210 masculine +119212 masculine +masculine +masculine +119216 masculine +119219 feminine +119221 feminine +119224 neuter +119226 masculine +masculine +masculine +119230 masculine +masculine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +119243 neuter +neuter +feminine +feminine +masculine +feminine +masculine +masculine +119252 feminine +feminine +masculine +masculine +masculine +119260 neuter +neuter +masculine +119264 feminine +masculine +masculine +119268 neuter +119270 masculine +masculine +masculine +119275 neuter +neuter +neuter +119281 neuter +neuter +masculine +masculine +feminine +masculine +masculine +masculine +119291 masculine +feminine +masculine +masculine +119297 masculine +masculine +masculine +masculine +119302 feminine +119304 feminine +feminine +masculine +masculine +masculine +masculine +feminine +masculine +masculine +masculine +masculine +masculine +119319 feminine +feminine +feminine +119323 feminine +119325 masculine +masculine +masculine +masculine +masculine +119331 masculine +masculine +119334 masculine +119336 feminine +119338 neuter +neuter +119341 feminine +feminine +neuter +neuter +119347 masculine +masculine +neuter +neuter +119352 masculine +feminine +119355 feminine +feminine +feminine +119360 feminine +feminine +feminine +feminine +masculine +masculine +masculine +119368 feminine +neuter +neuter +feminine +119373 neuter +119376 feminine +feminine +feminine +feminine +feminine +119383 masculine +masculine +feminine +masculine +masculine +119389 feminine +119391 neuter +119396 masculine +masculine +119399 masculine +119401 masculine +masculine +masculine +masculine +119406 masculine +119408 masculine +119410 masculine +masculine +masculine +119414 feminine +119416 feminine +119418 feminine +119420 feminine +119422 neuter +masculine +119425 feminine +neuter +119428 neuter +feminine +119432 feminine +119434 masculine +119436 masculine +feminine +masculine +119441 feminine +119443 feminine +masculine +masculine +feminine +119448 masculine +119451 masculine +feminine +feminine +119455 feminine +feminine +119459 masculine +masculine +119462 feminine +feminine +119467 masculine +119469 feminine +119474 masculine +feminine +119479 feminine +119481 neuter +neuter +masculine +masculine +masculine +masculine +119488 feminine +119490 neuter +119492 neuter +119494 feminine +feminine +feminine +feminine +masculine +119501 masculine +masculine +masculine +119505 masculine +masculine +masculine +119509 feminine +feminine +119513 feminine +feminine +masculine +masculine +119519 neuter +neuter +masculine +119530 masculine +neuter +neuter +119534 neuter +masculine +masculine +masculine +masculine +119540 feminine +feminine +feminine +119544 feminine +119546 masculine +masculine +119549 masculine +masculine +119552 masculine +feminine +feminine +masculine +119557 masculine +masculine +masculine +119561 feminine +feminine +masculine +feminine +119566 masculine +feminine +masculine +119571 feminine +masculine +masculine +masculine +masculine +119579 masculine +masculine +feminine +119583 masculine +masculine +119586 masculine +feminine +119591 feminine +feminine +119594 masculine +119597 neuter +119600 feminine +feminine +masculine +119605 feminine +feminine +feminine +119610 masculine +119612 masculine +119616 feminine +masculine +119621 masculine +masculine +119624 masculine +119626 masculine +119630 masculine +masculine +masculine +119635 feminine +119638 masculine +119641 masculine +masculine +119644 masculine +masculine +masculine +119649 masculine +119654 feminine +feminine +masculine +119658 masculine +119660 masculine +119663 masculine +119667 masculine +feminine +feminine +119671 masculine +119673 masculine +119677 neuter +119680 masculine +masculine +neuter +neuter +119688 masculine +119690 feminine +feminine +119693 neuter +neuter +masculine +119698 masculine +119700 neuter +neuter +119703 neuter +119705 feminine +feminine +masculine +119709 feminine +feminine +119713 neuter +neuter +119717 feminine +119720 feminine +119722 neuter +masculine +masculine +feminine +masculine +119728 feminine +masculine +119732 feminine +feminine +feminine +119736 neuter +neuter +neuter +119741 feminine +feminine +119744 masculine +masculine +119749 neuter +neuter +119757 masculine +feminine +119760 masculine +masculine +masculine +119764 masculine +119766 masculine +masculine +masculine +119770 masculine +masculine +119773 feminine +feminine +masculine +masculine +119778 feminine +feminine +feminine +119782 feminine +119786 feminine +119788 masculine +masculine +119791 masculine +masculine +119794 masculine +119796 masculine +masculine +119799 feminine +feminine +119802 neuter +neuter +masculine +119810 masculine +119812 feminine +feminine +119816 feminine +masculine +119822 neuter +masculine +feminine +119828 neuter +119830 neuter +neuter +119833 masculine +119835 masculine +119837 feminine +119839 feminine +masculine +119842 feminine +neuter +feminine +masculine +masculine +119850 masculine +masculine +119855 neuter +neuter +119858 neuter +119860 neuter +neuter +119865 neuter +119867 neuter +neuter +masculine +119872 masculine +119874 masculine +119877 feminine +neuter +119880 feminine +masculine +masculine +feminine +feminine +119886 feminine +masculine +feminine +119890 feminine +masculine +masculine +119894 masculine +119896 masculine +masculine +masculine +119900 neuter +masculine +masculine +119904 feminine +feminine +masculine +masculine +119909 neuter +masculine +neuter +masculine +119914 masculine +masculine +119919 masculine +masculine +119925 masculine +masculine +masculine +119929 feminine +masculine +neuter +119934 masculine +masculine +119937 masculine +masculine +masculine +feminine +feminine +feminine +feminine +119949 masculine +119955 neuter +feminine +feminine +119960 masculine +masculine +119963 neuter +119967 feminine +neuter +neuter +feminine +119972 masculine +119975 neuter +119977 neuter +119979 feminine +feminine +masculine +119983 feminine +119985 feminine +119988 masculine +masculine +119991 feminine +119993 neuter +119996 masculine +masculine +119999 neuter +neuter +feminine +feminine +120004 feminine +feminine +120010 feminine +120012 masculine +masculine +masculine +120016 masculine +masculine +120019 masculine +masculine +masculine +120024 masculine +masculine +120027 neuter +masculine +masculine +masculine +120032 neuter +120034 feminine +feminine +feminine +120038 masculine +120040 masculine +120042 masculine +masculine +masculine +masculine +masculine +masculine +neuter +neuter +120051 masculine +120063 masculine +120066 masculine +120068 masculine +120071 neuter +120074 masculine +120076 masculine +masculine +120079 masculine +120082 masculine +masculine +masculine +masculine +masculine +feminine +feminine +feminine +feminine +masculine +120093 feminine +feminine +masculine +masculine +120100 masculine +masculine +120104 masculine +masculine +feminine +feminine +120109 feminine +120113 neuter +feminine +120116 feminine +feminine +120119 neuter +120121 neuter +120124 masculine +masculine +120127 neuter +120129 masculine +120133 feminine +masculine +feminine +feminine +masculine +120140 neuter +neuter +neuter +neuter +120145 feminine +120147 neuter +neuter +120150 masculine +masculine +neuter +neuter +neuter +120157 feminine +feminine +120161 masculine +120165 neuter +neuter +neuter +masculine +masculine +120171 feminine +feminine +120177 masculine +120179 feminine +feminine +masculine +masculine +masculine +masculine +120189 feminine +feminine +120192 feminine +feminine +120197 masculine +120200 neuter +masculine +masculine +feminine +feminine +neuter +120207 masculine +neuter +neuter +neuter +neuter +masculine +120214 feminine +feminine +120217 feminine +120221 feminine +feminine +120224 masculine +masculine +120227 masculine +masculine +120233 masculine +120236 feminine +feminine +120240 masculine +masculine +120244 feminine +neuter +120249 masculine +120251 neuter +120253 neuter +120260 feminine +feminine +120264 neuter +120267 masculine +120271 neuter +120274 neuter +120278 masculine +masculine +feminine +feminine +masculine +masculine +120285 masculine +120287 neuter +feminine +feminine +masculine +masculine +neuter +neuter +masculine +masculine +masculine +masculine +120299 masculine +120303 neuter +neuter +120306 neuter +120308 neuter +neuter +masculine +masculine +120314 neuter +neuter +120317 masculine +120319 masculine +masculine +masculine +feminine +feminine +120325 masculine +masculine +masculine +masculine +120333 masculine +120335 masculine +masculine +feminine +feminine +120342 neuter +120346 masculine +masculine +120349 masculine +masculine +120352 masculine +120354 neuter +120359 masculine +masculine +masculine +120364 masculine +masculine +masculine +120369 masculine +120371 feminine +feminine +feminine +feminine +120376 masculine +120378 masculine +masculine +120381 masculine +masculine +masculine +masculine +feminine +120387 feminine +feminine +120390 feminine +feminine +120393 masculine +120395 feminine +feminine +120399 masculine +masculine +120402 masculine +120404 neuter +neuter +120407 feminine +feminine +120410 feminine +120412 feminine +feminine +neuter +neuter +120419 masculine +120421 masculine +120423 neuter +masculine +120427 masculine +120430 feminine +120433 masculine +masculine +masculine +120439 masculine +masculine +120443 masculine +120447 feminine +neuter +masculine +120451 masculine +masculine +120454 masculine +feminine +masculine +120458 masculine +120462 masculine +masculine +masculine +120467 neuter +120469 masculine +masculine +masculine +masculine +masculine +120475 feminine +feminine +feminine +masculine +120481 masculine +masculine +masculine +masculine +120486 neuter +neuter +masculine +120490 masculine +masculine +120493 feminine +feminine +masculine +120498 neuter +masculine +120503 masculine +masculine +120506 masculine +masculine +120510 masculine +masculine +120513 neuter +neuter +masculine +120518 feminine +feminine +neuter +neuter +masculine +120526 masculine +masculine +120529 feminine +feminine +masculine +120533 masculine +masculine +masculine +120537 masculine +120539 masculine +masculine +120542 masculine +masculine +feminine +feminine +masculine +120548 masculine +masculine +masculine +masculine +masculine +120556 masculine +120559 masculine +masculine +masculine +120563 neuter +120566 masculine +masculine +120569 masculine +120572 feminine +feminine +feminine +masculine +120577 masculine +120579 feminine +feminine +feminine +120583 feminine +120585 feminine +feminine +feminine +120589 masculine +120592 masculine +120594 masculine +feminine +feminine +feminine +120599 neuter +neuter +neuter +120604 neuter +120606 masculine +masculine +neuter +neuter +120611 masculine +120614 feminine +120616 feminine +neuter +masculine +120621 masculine +feminine +120624 neuter +120627 feminine +feminine +neuter +masculine +neuter +120633 masculine +120635 masculine +120638 masculine +masculine +masculine +120642 neuter +120644 masculine +120646 neuter +120648 masculine +120650 feminine +120652 feminine +masculine +feminine +masculine +120659 masculine +feminine +feminine +120663 feminine +feminine +120666 feminine +120668 masculine +masculine +masculine +masculine +masculine +120674 feminine +feminine +120679 masculine +masculine +120683 masculine +masculine +masculine +masculine +120689 masculine +masculine +masculine +120695 masculine +masculine +120698 masculine +masculine +neuter +neuter +feminine +feminine +masculine +120706 neuter +120709 masculine +120715 masculine +120718 masculine +masculine +120721 masculine +masculine +masculine +feminine +feminine +120727 masculine +masculine +120730 masculine +feminine +120733 masculine +neuter +masculine +masculine +120738 feminine +feminine +masculine +120743 masculine +120745 masculine +120748 masculine +feminine +masculine +120752 masculine +feminine +masculine +masculine +feminine +feminine +feminine +feminine +feminine +120762 feminine +120764 masculine +masculine +120767 masculine +120769 feminine +120771 masculine +120773 feminine +120775 feminine +feminine +masculine +masculine +masculine +120782 masculine +masculine +masculine +120788 feminine +120790 feminine +feminine +masculine +masculine +120795 masculine +masculine +feminine +feminine +120803 feminine +120805 masculine +masculine +120808 feminine +feminine +120813 masculine +120815 feminine +feminine +120820 masculine +masculine +feminine +feminine +feminine +feminine +120833 masculine +masculine +120842 neuter +neuter +120848 masculine +120851 masculine +masculine +masculine +120855 masculine +120857 masculine +120859 masculine +masculine +120862 masculine +masculine +masculine +masculine +masculine +120868 feminine +120870 masculine +feminine +feminine +feminine +120875 masculine +masculine +masculine +120881 masculine +masculine +120884 masculine +masculine +120889 masculine +120893 neuter +120895 masculine +120897 neuter +neuter +neuter +neuter +neuter +120906 masculine +masculine +120910 feminine +feminine +120913 masculine +120917 masculine +120923 feminine +120925 masculine +120927 masculine +masculine +120930 masculine +120932 masculine +masculine +masculine +masculine +120940 masculine +120942 masculine +masculine +120945 masculine +masculine +120960 masculine +masculine +120969 masculine +feminine +120972 masculine +120974 feminine +feminine +feminine +masculine +120979 masculine +neuter +120982 neuter +feminine +masculine +120986 neuter +neuter +neuter +120990 feminine +120993 masculine +120995 neuter +121000 feminine +feminine +121003 masculine +121005 masculine +121007 feminine +masculine +121011 masculine +feminine +feminine +feminine +121017 masculine +masculine +121023 feminine +121030 masculine +neuter +neuter +neuter +neuter +neuter +neuter +neuter +121040 feminine +feminine +121045 neuter +feminine +121049 feminine +121052 masculine +121054 feminine +121057 neuter +121061 feminine +feminine +121065 neuter +neuter +121071 neuter +neuter +121074 feminine +feminine +121079 masculine +121081 masculine +masculine +121086 neuter +neuter +121093 masculine +masculine +121098 feminine +feminine +121101 neuter +neuter +feminine +121105 masculine +masculine +masculine +121111 neuter +121113 masculine +masculine +masculine +masculine +masculine +121119 neuter +neuter +121123 feminine +feminine +121126 neuter +neuter +masculine +121131 neuter +neuter +feminine +feminine +121138 feminine +feminine +feminine +feminine +121144 masculine +masculine +masculine +121149 masculine +121151 feminine +121153 masculine +masculine +121159 neuter +121161 masculine +121165 feminine +neuter +121170 feminine +feminine +feminine +121175 neuter +121177 feminine +masculine +masculine +121181 feminine +feminine +feminine +121186 neuter +neuter +121189 neuter +neuter +121194 feminine +feminine +121197 neuter +feminine +121200 masculine +121203 masculine +masculine +121206 masculine +121208 neuter +neuter +121212 neuter +121214 masculine +121216 masculine +121218 masculine +121221 masculine +masculine +masculine +masculine +121227 neuter +neuter +neuter +121232 masculine +masculine +masculine +masculine +121237 neuter +neuter +121241 neuter +121243 masculine +121246 neuter +neuter +neuter +masculine +121253 neuter +neuter +neuter +neuter +121259 masculine +masculine +neuter +121264 neuter +neuter +121267 feminine +feminine +masculine +masculine +121274 feminine +feminine +neuter +neuter +121280 neuter +121283 neuter +neuter +feminine +feminine +121289 feminine +feminine +neuter +masculine +masculine +feminine +feminine +feminine +feminine +121300 neuter +neuter +121303 feminine +feminine +neuter +neuter +neuter +121309 feminine +masculine +masculine +feminine +feminine +121315 feminine +121317 feminine +feminine +121320 feminine +feminine +121323 neuter +121325 neuter +121327 neuter +121329 neuter +121333 feminine +feminine +feminine +feminine +121338 feminine +feminine +121342 masculine +masculine +neuter +neuter +feminine +masculine +masculine +121350 feminine +121352 masculine +masculine +121355 masculine +121358 feminine +121360 masculine +masculine +masculine +121364 feminine +masculine +masculine +121368 neuter +neuter +neuter +121372 feminine +121374 feminine +masculine +121379 neuter +121383 feminine +feminine +121386 feminine +feminine +feminine +121390 neuter +neuter +121393 neuter +neuter +masculine +121399 feminine +feminine +121403 feminine +neuter +121406 neuter +121408 neuter +neuter +masculine +masculine +121413 masculine +121418 feminine +feminine +feminine +neuter +neuter +masculine +121425 feminine +feminine +121430 masculine +masculine +121433 feminine +121435 feminine +feminine +121443 feminine +feminine +121447 feminine +feminine +feminine +121451 feminine +121453 feminine +feminine +feminine +121458 masculine +121460 feminine +121462 feminine +121464 neuter +neuter +neuter +121468 feminine +121470 feminine +neuter +121473 feminine +121476 feminine +feminine +feminine +feminine +neuter +121482 masculine +masculine +feminine +feminine +121487 masculine +feminine +121490 feminine +121492 masculine +masculine +feminine +121496 masculine +121499 feminine +121505 feminine +feminine +121508 feminine +feminine +121511 neuter +neuter +121531 neuter +121544 feminine +feminine +121548 feminine +121552 feminine +feminine +masculine +masculine +feminine +masculine +masculine +121562 masculine +121565 masculine +masculine +masculine +masculine +masculine +masculine +121576 feminine +feminine +121580 masculine +121582 neuter +neuter +neuter +121589 feminine +feminine +121594 masculine +masculine +masculine +121599 masculine +121601 feminine +121604 masculine +masculine +121608 masculine +masculine +121615 masculine +masculine +121621 feminine +masculine +121625 feminine +masculine +121632 masculine +masculine +121636 neuter +121639 feminine +feminine +121642 feminine +121645 masculine +121651 masculine +masculine +masculine +masculine +masculine +121657 masculine +masculine +masculine +masculine +121662 masculine +121665 masculine +121668 masculine +121672 masculine +masculine +121675 masculine +masculine +121678 masculine +121680 masculine +masculine +masculine +121688 masculine +121690 masculine +masculine +masculine +121696 masculine +masculine +121703 feminine +feminine +feminine +121709 masculine +121714 masculine +121717 feminine +121719 feminine +feminine +feminine +121725 feminine +feminine +121728 neuter +feminine +121732 feminine +121734 neuter +121738 masculine +masculine +121745 neuter +121747 neuter +121752 feminine +feminine +121755 feminine +feminine +feminine +feminine +121761 masculine +masculine +121766 masculine +feminine +masculine +121772 masculine +masculine +121775 masculine +121777 feminine +feminine +121780 feminine +feminine +masculine +masculine +121787 neuter +neuter +121790 neuter +121792 masculine +masculine +121796 masculine +masculine +121800 masculine +masculine +masculine +121804 neuter +121809 feminine +feminine +121813 neuter +121816 feminine +feminine +121819 masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +121828 masculine +masculine +121834 feminine +feminine +masculine +masculine +121839 neuter +neuter +masculine +masculine +121846 feminine +feminine +121851 feminine +feminine +121855 feminine +feminine +121859 masculine +masculine +121865 masculine +121868 feminine +feminine +masculine +masculine +121873 masculine +masculine +121876 masculine +masculine +masculine +feminine +feminine +masculine +121883 masculine +121886 masculine +121888 masculine +121893 feminine +feminine +121897 feminine +feminine +masculine +masculine +121902 masculine +121906 masculine +121911 masculine +masculine +121914 feminine +feminine +121917 masculine +121919 neuter +feminine +feminine +121923 feminine +feminine +masculine +masculine +masculine +121930 neuter +neuter +masculine +121935 masculine +masculine +feminine +feminine +masculine +121942 neuter +neuter +masculine +121948 masculine +masculine +masculine +121952 masculine +121954 masculine +121957 neuter +121961 masculine +masculine +121964 feminine +feminine +121967 masculine +masculine +masculine +121973 neuter +121977 neuter +121983 feminine +121986 masculine +121991 masculine +121994 masculine +121998 masculine +masculine +feminine +feminine +122005 masculine +masculine +neuter +122009 neuter +neuter +masculine +masculine +122014 feminine +feminine +feminine +feminine +122019 masculine +masculine +122023 masculine +masculine +masculine +122027 feminine +122029 masculine +122031 masculine +122034 masculine +feminine +feminine +122040 masculine +122043 neuter +122045 feminine +masculine +feminine +masculine +122050 masculine +masculine +122054 feminine +122056 neuter +122063 feminine +feminine +masculine +masculine +122068 masculine +122074 masculine +masculine +masculine +122079 feminine +feminine +122082 masculine +masculine +feminine +masculine +122088 masculine +122093 feminine +feminine +122097 masculine +masculine +122101 masculine +masculine +masculine +122105 feminine +feminine +masculine +122109 feminine +masculine +122112 masculine +122115 neuter +feminine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +masculine +feminine +feminine +feminine +122129 feminine +122131 feminine +masculine +masculine +122135 masculine +neuter +122138 feminine +122140 masculine +neuter +masculine +masculine +feminine +122146 feminine +122149 masculine +masculine +masculine +122153 masculine +masculine +masculine +122157 masculine +masculine +masculine +122161 neuter +neuter +masculine +neuter +masculine +122168 feminine +feminine +122171 feminine +masculine +masculine +122175 masculine +122177 feminine +feminine +122180 feminine +122182 feminine +feminine +122185 masculine +122188 masculine +122190 feminine +masculine +masculine +122194 feminine +122196 feminine +feminine +122200 masculine +masculine +122203 masculine +122206 neuter +122208 neuter +masculine +122211 masculine +masculine +122214 neuter +neuter +122217 feminine +feminine +neuter +neuter +neuter +neuter +122225 neuter +neuter +122229 masculine +122231 feminine +122233 feminine +122235 feminine +masculine +masculine +masculine +122240 masculine +122244 masculine +122247 masculine +masculine +122250 feminine +feminine +122253 feminine +masculine +neuter +neuter +feminine +feminine +feminine +feminine +122262 feminine +feminine +122267 masculine +masculine +122270 feminine +122273 feminine +masculine +masculine +122277 masculine +122279 masculine +masculine +122282 neuter +122284 masculine +neuter +masculine +neuter +neuter +122290 masculine +neuter +122293 feminine +122295 neuter +feminine +masculine +122301 masculine +122305 neuter +neuter +122311 masculine +masculine +122315 neuter +neuter +neuter +122319 masculine +122321 neuter +122324 masculine +122326 masculine +feminine +feminine +feminine +feminine +122332 masculine +122336 feminine +feminine +122339 feminine +122341 feminine +masculine +masculine +122345 neuter +feminine +122348 masculine +feminine +neuter +122352 feminine +feminine +122355 feminine +122358 masculine +masculine +122361 masculine +122363 masculine +masculine +122366 feminine +feminine +122371 masculine +122375 masculine +122378 masculine +122380 masculine +122382 masculine +122384 neuter +masculine +neuter +122388 masculine +masculine +feminine +feminine +122393 masculine +122395 masculine +122398 neuter +neuter +122401 neuter +122404 feminine +feminine +122407 feminine +feminine +122410 neuter +neuter +122413 masculine +masculine +122416 masculine +masculine +122419 masculine +122421 feminine +masculine +122424 masculine +122426 masculine +masculine +masculine +122431 masculine +122433 masculine +masculine +122436 masculine +masculine +masculine +masculine +122441 masculine +122443 feminine +masculine +masculine +122447 feminine +feminine +122451 feminine +122454 masculine +feminine +feminine +122458 masculine +122460 feminine +feminine +feminine +feminine +122465 feminine +feminine +122468 feminine +masculine +122472 masculine +122475 feminine +feminine +122478 feminine +122480 masculine +masculine +masculine +122484 masculine +122486 feminine +feminine +122489 masculine +122491 feminine +feminine +feminine +122495 neuter +masculine +122498 masculine +masculine +122501 neuter +neuter +122505 neuter +neuter +masculine +122510 masculine +masculine +122513 neuter +122515 neuter +neuter +neuter +neuter +122522 masculine +feminine +feminine +122526 masculine +masculine +122529 feminine +122531 masculine +122533 feminine +feminine +122536 neuter +neuter +neuter +neuter +neuter +neuter +122545 neuter +122548 feminine +122552 masculine +masculine +masculine +masculine +122557 masculine +masculine +masculine +122562 masculine +masculine +122566 masculine +masculine +masculine +122570 masculine +122572 masculine +masculine +122575 masculine +masculine +122578 neuter +neuter +122581 feminine +feminine +feminine +masculine +122586 masculine +masculine +122591 feminine +122595 feminine +masculine +masculine +masculine +masculine +122601 masculine +masculine +122604 masculine +122609 feminine +feminine +122612 masculine +masculine +122615 masculine +masculine +masculine +122619 masculine +masculine +masculine +122624 feminine +feminine +122627 masculine +neuter +122630 feminine +neuter +masculine +122634 masculine +masculine +masculine +122638 neuter +122643 neuter +neuter +neuter +neuter +neuter +neuter +masculine +122651 feminine +122654 feminine +feminine +masculine +122658 neuter +122660 masculine +122662 neuter +neuter +masculine +neuter +masculine +122669 masculine +122672 masculine +masculine +masculine +122676 masculine +122679 masculine +masculine +122683 masculine +122685 masculine +122687 feminine +feminine +feminine +feminine +122693 feminine +feminine +feminine +feminine +122699 neuter +neuter +masculine +feminine +122705 neuter +122709 masculine +122711 neuter +neuter +neuter +masculine +122716 masculine +masculine +122719 feminine +feminine +122723 masculine +masculine +feminine +feminine +feminine +122729 masculine +122731 masculine +122733 masculine +122736 masculine +masculine +122739 feminine +masculine +122742 masculine +masculine +122747 neuter +neuter +masculine +masculine +masculine +122753 feminine +masculine +masculine +masculine +feminine +122759 masculine +122763 masculine +neuter +feminine +feminine +feminine +feminine +122771 masculine +masculine +masculine +122775 feminine +feminine +122778 masculine +masculine +122781 masculine +masculine +122784 masculine +masculine +masculine +122788 masculine +masculine +masculine +masculine +122793 neuter +masculine +masculine +122797 masculine +122800 masculine +masculine +122803 neuter +feminine +122807 feminine +masculine +122810 masculine +feminine +masculine +122815 neuter +neuter +122818 masculine +122820 masculine +122824 masculine +122826 masculine +122828 neuter +feminine +122831 masculine +122834 neuter +122838 masculine +122843 masculine +masculine +122847 neuter +neuter +masculine +masculine +feminine +122856 masculine +122858 neuter +neuter +masculine +masculine +masculine +122865 masculine +122870 masculine +masculine +122873 masculine +masculine +feminine +feminine +122880 neuter +neuter +masculine +122884 neuter +neuter +122887 feminine +feminine +masculine +feminine +feminine +122893 masculine +masculine +masculine +122900 neuter +masculine +122906 masculine +masculine +122909 masculine +feminine +feminine +122913 feminine +122915 feminine +masculine +masculine +masculine +122922 masculine +122924 masculine +masculine +122927 feminine +feminine +feminine +feminine +122932 masculine +122934 masculine +feminine +122937 masculine +feminine +feminine +122941 feminine +122944 masculine +122946 feminine +feminine +122949 feminine +neuter +122952 feminine +neuter +masculine +122956 masculine +masculine +feminine +feminine +masculine +122962 neuter +neuter +neuter +neuter +122967 neuter +neuter +neuter +122972 masculine +masculine +neuter +122979 feminine +feminine +feminine +feminine +feminine +122985 masculine +122987 feminine +feminine +masculine +masculine +masculine +122993 feminine +122995 masculine +masculine +masculine +masculine +feminine +feminine +neuter +123003 feminine +123006 feminine +feminine +feminine +masculine +masculine +123012 masculine +123014 feminine +123016 neuter +neuter +neuter +neuter +masculine +feminine +123024 masculine +feminine +feminine +123028 neuter +123031 feminine +feminine +123035 neuter +neuter +masculine +masculine +masculine +masculine +masculine +masculine +123044 masculine +neuter +123047 neuter +123049 feminine +123051 feminine +123053 neuter +masculine +123057 neuter +123060 feminine +123063 masculine +masculine +feminine +123069 feminine +feminine +123072 feminine +feminine +123075 neuter +123077 neuter +neuter +123081 masculine +123085 neuter +123088 neuter +123090 feminine +123093 feminine +123095 masculine +masculine +123098 masculine +123100 neuter +masculine +123103 feminine +masculine +123106 neuter +masculine +123109 masculine +neuter +123112 masculine +masculine +masculine +123117 masculine +neuter +masculine +123126 feminine +masculine +123129 masculine +masculine +masculine +123137 masculine +masculine +masculine +123142 feminine +feminine +123145 masculine +123148 feminine +masculine +masculine +masculine +123153 masculine +123155 feminine +123158 feminine +123161 feminine +123163 masculine +feminine +feminine +masculine +123169 neuter +123172 masculine +masculine +123175 feminine +feminine +123178 masculine +feminine +123181 neuter +masculine +123185 neuter +neuter +masculine +masculine +123191 masculine +123194 masculine +123197 feminine +123199 masculine +123201 masculine +123205 masculine +masculine +123208 masculine +feminine +123211 masculine +neuter +123214 neuter +masculine +123218 neuter +123220 feminine +neuter +masculine +123226 feminine +masculine +masculine +feminine +123231 feminine +masculine +feminine +feminine +123236 feminine +masculine +neuter +123241 feminine +123244 neuter +neuter +123250 neuter +neuter +123253 feminine +feminine +masculine +123257 feminine +feminine +neuter +123261 masculine +123263 feminine +masculine +masculine +masculine +123269 feminine +masculine +masculine +123273 masculine +masculine +masculine +masculine +123278 feminine +123280 feminine +123282 masculine +masculine +feminine +123287 feminine +feminine +feminine +123292 neuter +123294 masculine +feminine +123297 neuter +masculine +masculine +masculine +123302 feminine +masculine +123306 masculine +masculine +feminine +123310 feminine +123312 masculine +masculine +masculine +masculine +neuter +neuter +neuter +neuter +123321 masculine +123323 feminine +feminine +feminine +masculine +masculine +123329 feminine +feminine +123332 neuter +123335 masculine +123338 feminine +feminine +feminine +feminine +feminine +masculine +masculine +123346 masculine +masculine +123349 masculine +123351 masculine +123353 masculine +123356 neuter +123358 masculine +123364 masculine +feminine +123369 masculine +neuter +123372 neuter +neuter +neuter +123381 feminine +123383 masculine +feminine +123386 masculine +feminine +feminine +masculine +123391 feminine +123393 neuter +feminine +masculine +123397 masculine +123399 masculine +masculine +123403 neuter +123405 masculine +neuter +masculine +123409 masculine +masculine +feminine +feminine +masculine +123415 masculine +123418 neuter +masculine +123421 masculine +123425 feminine +feminine +123428 masculine +masculine +123432 neuter +123434 masculine +masculine +123437 masculine +masculine +masculine +123441 feminine +feminine +123444 neuter +neuter +123447 masculine +masculine +masculine +masculine +123452 masculine +123455 feminine +123458 feminine +123460 masculine +123462 feminine +123464 neuter +123466 neuter +123470 neuter +masculine +masculine +neuter +123478 feminine +feminine +feminine +feminine +masculine +123484 masculine +123488 neuter +masculine +masculine +123492 neuter +feminine +feminine +123496 neuter +masculine +masculine +neuter +123505 masculine +123509 masculine +123511 masculine +123513 masculine +123516 masculine +123520 masculine +123525 masculine +masculine +123528 neuter +neuter +neuter +123532 masculine +masculine +neuter +123536 neuter +neuter +123539 masculine +masculine +masculine +masculine +123545 neuter +123548 neuter +neuter +neuter +masculine +masculine +neuter +masculine +masculine +neuter +123559 masculine +masculine +123563 masculine +masculine +123566 masculine +123571 masculine +masculine +123574 neuter +neuter +masculine +masculine +masculine +masculine +123581 feminine +feminine +masculine +123585 feminine +123587 masculine +123591 masculine +masculine +123594 masculine +neuter +masculine +masculine +neuter +123600 masculine +feminine +feminine +123604 feminine +masculine +123607 neuter +123610 neuter +masculine +masculine +123618 masculine +123625 masculine +masculine +masculine +123629 masculine +masculine +neuter +neuter +123634 masculine +masculine +masculine +123638 masculine +masculine +feminine +feminine +masculine +masculine +123646 masculine +123648 masculine +masculine +feminine +feminine +123654 masculine +masculine +masculine +123659 masculine +123661 feminine +123665 feminine +feminine +feminine +masculine +masculine +123674 masculine +feminine +feminine +feminine +123679 masculine +123681 masculine +123683 masculine +123689 masculine +masculine +123692 masculine +123694 masculine +masculine +123697 masculine +masculine +123700 masculine +123702 masculine +feminine +feminine +masculine +neuter +neuter +neuter +neuter +feminine +123712 masculine +masculine +123715 feminine +123718 masculine +masculine +feminine +feminine +masculine +masculine +123726 feminine +feminine +masculine +feminine +123731 masculine +neuter +masculine +masculine +123739 masculine +neuter +neuter +123743 masculine +masculine +masculine +masculine +123750 masculine +masculine +masculine +masculine +123757 neuter +123759 masculine +123761 masculine +feminine +123764 feminine +feminine +masculine +masculine +123769 feminine +123773 feminine +123775 feminine +feminine +123778 masculine +masculine +masculine +123783 masculine +123785 neuter +feminine +feminine +123789 masculine +masculine +123792 masculine +masculine +masculine +masculine +123797 masculine +masculine +masculine +masculine +123802 masculine +feminine +feminine +123806 feminine +masculine +masculine +123811 masculine +masculine +masculine +feminine +123816 feminine +123820 feminine +masculine +masculine +123824 masculine +masculine +masculine +123830 feminine +feminine +feminine +masculine +neuter +neuter +neuter +123838 feminine +123840 feminine +feminine +123843 feminine +feminine +masculine +masculine +123848 feminine +feminine +123851 feminine +123853 feminine +neuter +neuter +123857 neuter +neuter +123863 neuter +123865 masculine +feminine +feminine +masculine +feminine +123871 masculine +masculine +123874 feminine +feminine +123878 neuter +neuter +feminine +feminine +masculine +123885 feminine +feminine +123888 feminine +feminine +123892 feminine +feminine +feminine +feminine +123898 feminine +feminine +feminine +feminine +123904 feminine +feminine +feminine +feminine +123910 feminine +feminine +feminine +feminine +123916 feminine +feminine +feminine +feminine +123922 feminine +feminine +feminine +feminine +123927 neuter +123929 neuter +123931 neuter +123933 masculine +123935 masculine +123938 feminine +masculine +masculine +123942 masculine +masculine +feminine +123946 masculine +123949 neuter +masculine +123952 masculine +masculine +feminine +masculine +masculine +feminine +123959 masculine +feminine +123962 masculine +123965 feminine +123967 feminine +feminine +123970 feminine +123973 neuter +masculine +123984 feminine +feminine +123987 feminine +feminine +feminine +masculine +masculine +123994 masculine +masculine +masculine +124003 neuter +124005 masculine +124007 masculine +124009 feminine +feminine +feminine +124013 neuter +124016 masculine +124019 neuter +neuter +neuter +124025 feminine +masculine +124028 feminine +124030 feminine +feminine +neuter +neuter +124037 masculine +masculine +124040 masculine +masculine +124051 feminine +feminine +feminine +feminine +neuter +feminine +124060 masculine +masculine +masculine +124065 feminine +masculine +masculine +124069 masculine +masculine +feminine +124073 feminine +124075 masculine +masculine +feminine +masculine +feminine +124081 masculine +124083 masculine +masculine +feminine +124087 feminine +feminine +feminine +feminine +masculine +124093 feminine +feminine +feminine +masculine +masculine +124099 masculine +masculine +124102 masculine +124105 masculine +124109 feminine +feminine +feminine +124115 masculine +feminine +124118 masculine +masculine +124121 neuter +neuter +neuter +124126 masculine +masculine +masculine +masculine +124132 masculine +masculine +124135 masculine +masculine +124138 masculine +masculine +124141 masculine +feminine +124145 masculine +124148 feminine +feminine +124151 neuter +neuter +masculine +124155 feminine +feminine +feminine +feminine +feminine +124164 neuter +masculine +124167 feminine +124171 neuter +neuter +masculine +124176 masculine +masculine +124181 masculine +124183 masculine +masculine +124190 masculine +masculine +124193 feminine +feminine +124196 masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +124206 masculine +124208 masculine +feminine +feminine +124212 masculine +feminine +feminine +feminine +feminine +124220 feminine +masculine +masculine +124225 masculine +neuter +neuter +124232 feminine +feminine +masculine +124239 masculine +masculine +masculine +masculine +124246 masculine +masculine +masculine +124251 feminine +masculine +124254 masculine +masculine +124259 masculine +masculine +feminine +masculine +124264 masculine +masculine +masculine +masculine +124269 feminine +neuter +124272 feminine +masculine +feminine +124276 neuter +masculine +124279 masculine +124281 masculine +masculine +masculine +124285 feminine +masculine +masculine +124289 feminine +feminine +124293 neuter +124295 feminine +masculine +masculine +masculine +124300 masculine +feminine +124303 feminine +feminine +feminine +neuter +neuter +124310 masculine +masculine +124313 masculine +124316 masculine +124318 feminine +feminine +masculine +124324 masculine +124326 feminine +124328 feminine +masculine +masculine +124332 feminine +masculine +masculine +masculine +feminine +masculine +124341 masculine +feminine +124344 feminine +masculine +masculine +124350 masculine +124352 masculine +feminine +feminine +124356 masculine +124358 neuter +neuter +neuter +neuter +124363 feminine +124365 feminine +124367 masculine +124369 masculine +124371 feminine +feminine +masculine +124376 masculine +masculine +feminine +feminine +masculine +feminine +124383 feminine +feminine +masculine +124387 masculine +masculine +124390 feminine +feminine +masculine +masculine +124395 masculine +masculine +masculine +feminine +124400 masculine +feminine +masculine +feminine +feminine +feminine +feminine +feminine +masculine +feminine +neuter +masculine +feminine +feminine +124415 masculine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +124427 feminine +feminine +feminine +124431 neuter +neuter +124434 masculine +feminine +neuter +124438 feminine +masculine +masculine +feminine +masculine +124444 feminine +feminine +124447 feminine +124449 feminine +feminine +masculine +masculine +masculine +neuter +neuter +124458 neuter +feminine +masculine +124463 feminine +feminine +feminine +masculine +124468 masculine +masculine +124471 feminine +masculine +feminine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +124482 masculine +masculine +124485 masculine +124489 masculine +neuter +neuter +masculine +masculine +124495 feminine +masculine +masculine +124499 masculine +masculine +masculine +124503 neuter +124505 masculine +124508 masculine +neuter +neuter +neuter +neuter +neuter +124515 neuter +124517 masculine +124520 feminine +feminine +feminine +feminine +124525 masculine +124528 feminine +feminine +masculine +feminine +feminine +124534 masculine +neuter +feminine +feminine +feminine +masculine +masculine +124542 neuter +neuter +neuter +124546 feminine +feminine +124549 masculine +masculine +masculine +124553 feminine +feminine +feminine +124559 feminine +124562 feminine +124564 feminine +feminine +feminine +124568 masculine +masculine +124571 masculine +masculine +masculine +neuter +124576 feminine +masculine +masculine +124580 feminine +masculine +masculine +124584 masculine +neuter +neuter +masculine +124591 feminine +feminine +feminine +124595 feminine +masculine +124598 feminine +feminine +feminine +masculine +masculine +124604 masculine +124607 feminine +feminine +feminine +feminine +masculine +124614 feminine +masculine +masculine +124618 neuter +124622 feminine +feminine +124626 masculine +neuter +masculine +124630 masculine +124634 feminine +124636 neuter +124639 neuter +feminine +masculine +masculine +masculine +masculine +124646 neuter +masculine +124649 masculine +neuter +masculine +124654 masculine +124656 masculine +124658 feminine +feminine +masculine +masculine +masculine +masculine +124665 neuter +masculine +124668 feminine +feminine +124671 feminine +masculine +masculine +masculine +124676 masculine +neuter +neuter +124683 feminine +feminine +124686 masculine +124688 neuter +neuter +124691 neuter +neuter +124694 feminine +feminine +124698 masculine +feminine +feminine +124702 masculine +feminine +124709 masculine +124711 masculine +124714 masculine +124716 feminine +124720 feminine +masculine +124723 masculine +124725 feminine +masculine +masculine +124731 neuter +neuter +124735 feminine +124737 neuter +124739 feminine +neuter +124743 neuter +neuter +neuter +124747 masculine +124751 feminine +feminine +124754 feminine +masculine +124757 masculine +feminine +feminine +feminine +masculine +masculine +feminine +124765 feminine +masculine +masculine +124770 neuter +neuter +124774 masculine +masculine +124777 feminine +feminine +124780 neuter +neuter +masculine +124785 masculine +feminine +124789 masculine +neuter +masculine +124793 masculine +124795 masculine +masculine +124799 feminine +124801 feminine +masculine +masculine +124805 feminine +feminine +124810 masculine +masculine +124813 masculine +masculine +124816 feminine +feminine +masculine +feminine +124825 feminine +feminine +masculine +124829 feminine +124831 neuter +124833 feminine +124835 neuter +neuter +neuter +masculine +masculine +124841 masculine +124845 feminine +feminine +feminine +124849 feminine +feminine +masculine +feminine +124854 masculine +124856 masculine +124860 feminine +masculine +masculine +feminine +masculine +124866 masculine +masculine +masculine +124872 feminine +124874 feminine +masculine +masculine +124879 masculine +masculine +masculine +masculine +feminine +feminine +124889 feminine +masculine +neuter +124894 feminine +neuter +124897 neuter +124899 masculine +masculine +124902 neuter +124905 feminine +feminine +124910 masculine +masculine +feminine +feminine +124915 feminine +feminine +124925 feminine +feminine +feminine +feminine +feminine +124932 masculine +masculine +124937 neuter +124947 feminine +124953 feminine +feminine +feminine +feminine +124958 masculine +masculine +124962 masculine +masculine +masculine +masculine +masculine +124968 neuter +124972 feminine +feminine +124976 feminine +124979 feminine +feminine +feminine +feminine +124985 masculine +124990 masculine +masculine +neuter +124996 masculine +124999 feminine +feminine +125004 feminine +125007 masculine +125010 neuter +neuter +125017 feminine +feminine +125022 neuter +neuter +125026 masculine +125029 neuter +neuter +feminine +125034 masculine +125036 neuter +neuter +masculine +masculine +masculine +masculine +125045 feminine +feminine +125050 feminine +125053 masculine +125056 feminine +feminine +125064 feminine +feminine +125068 masculine +125070 masculine +125074 feminine +feminine +125080 feminine +feminine +125087 masculine +125089 masculine +125091 masculine +masculine +masculine +125098 neuter +125100 neuter +125108 masculine +125112 masculine +masculine +masculine +masculine +masculine +masculine +125119 masculine +masculine +125123 feminine +feminine +125129 feminine +feminine +neuter +125135 masculine +masculine +masculine +125140 neuter +125144 masculine +125146 feminine +feminine +masculine +125150 masculine +masculine +125154 masculine +125156 feminine +feminine +masculine +125160 masculine +masculine +125165 masculine +feminine +feminine +125172 masculine +125174 masculine +masculine +masculine +125179 neuter +feminine +feminine +masculine +masculine +125186 neuter +125190 masculine +125192 masculine +masculine +125195 masculine +125198 masculine +125202 masculine +125205 masculine +125209 feminine +feminine +125212 feminine +feminine +feminine +125217 feminine +feminine +feminine +feminine +feminine +125223 masculine +masculine +masculine +125228 feminine +feminine +125232 neuter +125234 neuter +125236 masculine +125241 feminine +feminine +125245 neuter +neuter +neuter +neuter +125251 masculine +masculine +125254 neuter +neuter +125258 masculine +masculine +masculine +masculine +125263 feminine +feminine +125268 masculine +masculine +masculine +masculine +masculine +125274 neuter +neuter +125278 neuter +125280 masculine +125284 masculine +masculine +masculine +masculine +masculine +125290 feminine +feminine +125295 feminine +feminine +125304 feminine +feminine +125307 masculine +masculine +masculine +neuter +125316 feminine +feminine +125319 neuter +neuter +masculine +masculine +125327 masculine +125329 feminine +masculine +125335 masculine +masculine +neuter +125342 masculine +masculine +masculine +125349 masculine +125351 feminine +masculine +125356 masculine +125359 masculine +masculine +masculine +masculine +125368 masculine +masculine +125372 masculine +masculine +125375 neuter +125377 masculine +masculine +125380 masculine +125382 masculine +masculine +125386 feminine +feminine +masculine +masculine +125391 masculine +125394 neuter +neuter +125397 masculine +masculine +feminine +feminine +feminine +feminine +125404 feminine +feminine +masculine +masculine +125409 feminine +feminine +masculine +masculine +125415 masculine +masculine +125419 masculine +masculine +125424 masculine +masculine +125427 feminine +feminine +masculine +125431 masculine +masculine +neuter +neuter +masculine +masculine +125439 masculine +masculine +neuter +feminine +feminine +125449 masculine +125453 masculine +masculine +125459 feminine +feminine +125485 masculine +125490 neuter +125493 masculine +masculine +125497 masculine +125504 feminine +feminine +125509 feminine +125512 neuter +neuter +125515 feminine +feminine +125519 masculine +125521 masculine +masculine +125525 masculine +masculine +125528 masculine +125531 masculine +masculine +masculine +125535 masculine +masculine +masculine +masculine +masculine +masculine +125542 masculine +masculine +masculine +masculine +masculine +masculine +masculine +125550 masculine +masculine +125553 masculine +masculine +masculine +masculine +125558 masculine +masculine +125562 neuter +125565 feminine +125573 neuter +125575 feminine +125580 masculine +masculine +125584 masculine +masculine +125588 feminine +125590 feminine +feminine +feminine +masculine +125596 feminine +feminine +feminine +feminine +neuter +125604 masculine +masculine +125609 neuter +neuter +neuter +125614 masculine +125620 feminine +125623 masculine +125628 neuter +masculine +neuter +125634 neuter +125636 neuter +125641 neuter +125648 masculine +125650 neuter +125654 masculine +125659 feminine +125664 masculine +125666 feminine +feminine +masculine +125672 masculine +125677 masculine +masculine +masculine +feminine +feminine +125683 masculine +125686 feminine +feminine +125690 masculine +masculine +125693 neuter +masculine +125699 neuter +masculine +masculine +125708 masculine +masculine +125711 neuter +masculine +125717 neuter +125723 masculine +masculine +125728 masculine +125732 masculine +masculine +masculine +feminine +feminine +feminine +125739 masculine +125741 masculine +125743 masculine +masculine +125746 masculine +masculine +masculine +feminine +feminine +125752 feminine +feminine +125756 feminine +feminine +125759 feminine +feminine +125764 masculine +125767 feminine +feminine +125771 feminine +125773 masculine +125776 masculine +masculine +125779 masculine +masculine +125783 masculine +masculine +masculine +125788 masculine +125791 masculine +neuter +masculine +125796 masculine +masculine +feminine +feminine +masculine +125803 masculine +masculine +125806 masculine +masculine +feminine +feminine +125811 masculine +masculine +125816 feminine +masculine +masculine +125821 neuter +125823 masculine +masculine +masculine +masculine +125829 neuter +neuter +masculine +masculine +masculine +masculine +masculine +125837 masculine +masculine +feminine +125843 neuter +masculine +125846 masculine +125854 masculine +masculine +125858 neuter +neuter +125861 neuter +neuter +masculine +masculine +125866 neuter +neuter +masculine +masculine +masculine +masculine +125873 masculine +feminine +125878 masculine +masculine +125881 masculine +125883 masculine +masculine +masculine +masculine +125888 feminine +125890 feminine +feminine +feminine +125895 feminine +125898 masculine +125901 masculine +125903 masculine +masculine +125908 masculine +masculine +masculine +125913 neuter +125915 masculine +125917 neuter +neuter +masculine +neuter +125923 neuter +masculine +masculine +masculine +neuter +masculine +125934 masculine +masculine +125941 masculine +masculine +125944 feminine +feminine +125948 masculine +masculine +masculine +125952 masculine +125955 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +125968 masculine +masculine +125972 feminine +feminine +125975 masculine +feminine +125978 neuter +125980 feminine +feminine +125983 masculine +125986 feminine +feminine +masculine +125994 masculine +masculine +feminine +feminine +126001 masculine +126003 masculine +masculine +masculine +masculine +126009 masculine +masculine +masculine +feminine +masculine +126016 neuter +neuter +masculine +126020 masculine +126022 feminine +feminine +masculine +masculine +126028 masculine +neuter +126032 masculine +126034 feminine +feminine +126038 neuter +126040 feminine +126042 neuter +126046 feminine +feminine +126051 masculine +126053 feminine +feminine +126060 feminine +feminine +126063 masculine +126065 masculine +masculine +feminine +feminine +126072 neuter +masculine +126075 feminine +feminine +126079 feminine +126082 masculine +masculine +126086 neuter +126090 masculine +126092 feminine +feminine +masculine +126097 neuter +neuter +126100 masculine +126103 feminine +126105 feminine +feminine +masculine +126110 neuter +neuter +masculine +masculine +masculine +masculine +masculine +126119 masculine +126122 feminine +126125 masculine +masculine +feminine +feminine +masculine +126131 masculine +126134 masculine +126136 masculine +126139 neuter +126146 neuter +neuter +neuter +126151 masculine +126153 neuter +neuter +126158 neuter +neuter +126162 masculine +masculine +126166 masculine +masculine +126170 masculine +masculine +126173 neuter +126175 neuter +neuter +masculine +masculine +neuter +neuter +neuter +126183 masculine +masculine +126186 feminine +masculine +126189 masculine +masculine +126193 neuter +neuter +neuter +126198 masculine +masculine +126201 masculine +masculine +126206 neuter +126208 neuter +masculine +masculine +neuter +126218 masculine +masculine +126222 neuter +126225 masculine +masculine +126230 masculine +126232 masculine +126234 masculine +126238 masculine +126240 masculine +masculine +masculine +126244 masculine +masculine +126248 neuter +126250 masculine +masculine +126254 masculine +masculine +masculine +126260 masculine +masculine +126263 masculine +masculine +masculine +masculine +126269 masculine +126273 masculine +masculine +126279 neuter +126281 neuter +neuter +feminine +feminine +126286 neuter +neuter +feminine +feminine +masculine +126292 masculine +126294 feminine +feminine +126297 masculine +masculine +126301 masculine +masculine +masculine +126305 masculine +masculine +126310 masculine +masculine +masculine +126314 masculine +126317 masculine +masculine +126320 masculine +masculine +feminine +126325 neuter +126327 feminine +feminine +masculine +masculine +126334 masculine +masculine +masculine +masculine +masculine +126340 masculine +masculine +126343 masculine +masculine +126348 masculine +126350 neuter +126352 feminine +feminine +126358 masculine +masculine +126362 masculine +126367 masculine +masculine +masculine +masculine +126372 feminine +feminine +126375 masculine +126378 masculine +masculine +126385 masculine +126387 masculine +masculine +126393 masculine +masculine +masculine +126400 feminine +feminine +masculine +126405 feminine +126408 neuter +126412 masculine +126415 masculine +126420 neuter +neuter +masculine +126431 masculine +masculine +126434 masculine +masculine +masculine +masculine +masculine +126440 masculine +126443 masculine +126445 masculine +masculine +masculine +masculine +masculine +masculine +126452 masculine +126455 masculine +126457 masculine +masculine +126464 feminine +feminine +feminine +126468 masculine +masculine +126472 masculine +masculine +feminine +126477 masculine +masculine +126480 feminine +feminine +126483 masculine +masculine +126487 masculine +masculine +126490 masculine +126493 neuter +126495 feminine +feminine +126500 feminine +126503 feminine +feminine +feminine +feminine +126509 masculine +126515 masculine +masculine +masculine +masculine +126522 feminine +feminine +126525 feminine +feminine +feminine +126530 masculine +masculine +126533 masculine +masculine +feminine +126538 masculine +masculine +126543 feminine +feminine +126548 masculine +masculine +126553 masculine +126557 masculine +masculine +126560 masculine +masculine +masculine +126564 masculine +126567 masculine +126569 masculine +masculine +masculine +masculine +masculine +126577 masculine +masculine +masculine +126584 feminine +feminine +feminine +126589 masculine +126591 masculine +masculine +masculine +masculine +126597 masculine +masculine +masculine +masculine +masculine +masculine +126604 masculine +126606 masculine +masculine +126609 masculine +masculine +126613 masculine +masculine +masculine +masculine +masculine +126619 masculine +masculine +126622 masculine +126624 neuter +126628 neuter +neuter +masculine +masculine +126633 masculine +masculine +126637 feminine +feminine +masculine +126642 feminine +126644 feminine +feminine +masculine +masculine +126649 feminine +feminine +masculine +126654 feminine +feminine +masculine +feminine +126661 neuter +neuter +neuter +126665 masculine +masculine +126668 masculine +masculine +126671 feminine +126673 feminine +feminine +feminine +feminine +masculine +masculine +feminine +feminine +126682 masculine +126684 masculine +masculine +masculine +masculine +126690 masculine +masculine +126693 masculine +126695 masculine +masculine +masculine +masculine +masculine +126701 masculine +masculine +126704 neuter +126706 neuter +masculine +masculine +126711 neuter +neuter +neuter +126716 neuter +neuter +126720 neuter +neuter +126723 neuter +neuter +126726 neuter +neuter +126729 neuter +neuter +126732 feminine +feminine +126735 masculine +126737 masculine +masculine +neuter +neuter +126742 neuter +neuter +126745 neuter +neuter +126748 masculine +masculine +126751 neuter +neuter +126755 feminine +feminine +masculine +masculine +126760 feminine +feminine +masculine +masculine +feminine +126767 feminine +126769 feminine +feminine +masculine +masculine +126776 masculine +masculine +masculine +masculine +masculine +126782 masculine +masculine +masculine +masculine +126787 feminine +feminine +126790 masculine +masculine +126793 masculine +masculine +masculine +masculine +126798 masculine +126803 feminine +feminine +feminine +126807 masculine +masculine +126810 masculine +masculine +masculine +126814 feminine +126816 feminine +feminine +126819 feminine +feminine +126822 masculine +masculine +126826 feminine +feminine +feminine +126830 masculine +masculine +masculine +126834 masculine +masculine +masculine +masculine +126839 feminine +feminine +masculine +126843 masculine +masculine +masculine +masculine +masculine +feminine +feminine +126852 neuter +126855 masculine +masculine +126858 neuter +neuter +masculine +masculine +masculine +masculine +126867 feminine +feminine +126871 feminine +126873 feminine +feminine +feminine +126878 masculine +126881 neuter +126884 neuter +neuter +masculine +126896 neuter +126901 neuter +neuter +neuter +126906 masculine +126908 masculine +126910 masculine +masculine +masculine +masculine +feminine +126917 masculine +126921 feminine +masculine +masculine +masculine +126927 masculine +126929 feminine +126931 masculine +126934 feminine +126938 feminine +feminine +feminine +126944 feminine +126947 masculine +126950 masculine +masculine +masculine +126954 masculine +masculine +126959 masculine +masculine +126962 masculine +masculine +126965 masculine +126967 masculine +masculine +126971 masculine +126975 masculine +masculine +126979 masculine +masculine +masculine +126983 masculine +masculine +126989 masculine +masculine +masculine +masculine +126997 feminine +127000 masculine +masculine +127005 masculine +masculine +127008 masculine +masculine +masculine +masculine +masculine +masculine +127015 masculine +masculine +masculine +127019 feminine +feminine +neuter +127023 neuter +127025 neuter +neuter +masculine +masculine +feminine +feminine +127032 neuter +neuter +feminine +masculine +127038 feminine +127043 masculine +127046 masculine +masculine +masculine +feminine +feminine +127052 feminine +feminine +feminine +feminine +127063 masculine +masculine +127068 feminine +neuter +feminine +127072 masculine +masculine +127076 masculine +masculine +masculine +masculine +masculine +masculine +127083 feminine +127085 feminine +127091 neuter +neuter +127094 masculine +127096 feminine +127098 feminine +127101 masculine +masculine +127104 feminine +127108 masculine +127112 feminine +feminine +127115 feminine +127118 feminine +127121 masculine +127123 feminine +127125 feminine +feminine +127130 feminine +feminine +masculine +feminine +feminine +feminine +127140 feminine +127143 feminine +127148 masculine +masculine +masculine +masculine +masculine +127154 masculine +masculine +masculine +masculine +127159 feminine +masculine +127162 masculine +masculine +127165 masculine +masculine +127168 masculine +127172 neuter +127175 masculine +masculine +127178 masculine +masculine +masculine +127183 masculine +127185 feminine +feminine +masculine +masculine +masculine +127192 masculine +masculine +127195 feminine +feminine +masculine +127199 masculine +masculine +127202 masculine +masculine +127206 masculine +127211 feminine +feminine +feminine +127218 masculine +127220 feminine +127223 masculine +127227 masculine +masculine +masculine +127232 neuter +neuter +masculine +neuter +neuter +masculine +neuter +127244 masculine +127246 neuter +127253 neuter +127255 neuter +127258 feminine +feminine +127261 feminine +127265 neuter +neuter +feminine +feminine +127270 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +127281 feminine +masculine +127284 neuter +127293 feminine +feminine +127298 masculine +masculine +127301 masculine +127303 feminine +feminine +127308 feminine +127310 feminine +feminine +neuter +127317 neuter +neuter +neuter +127321 feminine +feminine +neuter +masculine +neuter +127328 neuter +127331 masculine +masculine +127334 neuter +masculine +masculine +127339 feminine +feminine +127342 feminine +masculine +127346 masculine +127348 masculine +masculine +127352 neuter +neuter +127355 neuter +masculine +127358 masculine +masculine +127364 masculine +masculine +127367 masculine +127369 feminine +feminine +127372 neuter +feminine +feminine +127376 masculine +masculine +feminine +masculine +127384 neuter +127388 masculine +neuter +neuter +neuter +127393 masculine +masculine +masculine +127399 masculine +127401 masculine +127403 masculine +127405 masculine +masculine +127408 masculine +masculine +127413 feminine +feminine +127416 masculine +127419 neuter +neuter +127422 neuter +neuter +masculine +masculine +127427 masculine +masculine +127430 masculine +masculine +127434 masculine +masculine +masculine +127439 masculine +127442 feminine +feminine +feminine +127452 feminine +feminine +127455 feminine +127458 neuter +127465 neuter +127467 masculine +127476 neuter +127478 neuter +127480 feminine +127484 masculine +masculine +127487 masculine +masculine +127490 neuter +masculine +masculine +masculine +masculine +127496 masculine +masculine +masculine +127500 masculine +masculine +masculine +127504 masculine +masculine +masculine +masculine +127509 neuter +127511 feminine +127513 feminine +127515 masculine +feminine +feminine +masculine +127522 feminine +feminine +127525 feminine +feminine +127530 masculine +127532 feminine +127534 feminine +masculine +masculine +feminine +127540 masculine +masculine +masculine +127544 masculine +127546 neuter +neuter +neuter +masculine +feminine +masculine +masculine +127554 feminine +masculine +127557 feminine +127559 masculine +masculine +masculine +127563 masculine +127565 masculine +masculine +masculine +127570 masculine +127572 neuter +127576 masculine +masculine +127579 feminine +feminine +masculine +neuter +neuter +masculine +127586 masculine +127589 masculine +masculine +127592 masculine +feminine +masculine +feminine +127597 masculine +neuter +neuter +neuter +127602 feminine +feminine +feminine +masculine +masculine +127608 masculine +127611 feminine +127613 feminine +127615 feminine +127617 feminine +feminine +masculine +masculine +masculine +masculine +feminine +127625 feminine +127627 feminine +feminine +127630 neuter +neuter +neuter +feminine +feminine +127638 masculine +masculine +127641 feminine +127644 feminine +127647 feminine +127651 masculine +masculine +masculine +127656 masculine +masculine +neuter +127660 masculine +masculine +masculine +masculine +127665 feminine +feminine +127672 masculine +127675 masculine +neuter +127681 neuter +127684 neuter +neuter +neuter +127689 neuter +127692 masculine +127694 feminine +feminine +masculine +masculine +127700 feminine +feminine +masculine +masculine +masculine +127707 feminine +feminine +masculine +masculine +127712 masculine +127714 masculine +127716 feminine +feminine +127719 feminine +masculine +127722 masculine +masculine +feminine +feminine +127727 masculine +feminine +neuter +neuter +neuter +127733 neuter +neuter +neuter +neuter +feminine +neuter +feminine +neuter +feminine +masculine +masculine +masculine +masculine +masculine +neuter +neuter +127750 masculine +127755 masculine +masculine +127758 masculine +masculine +masculine +127763 masculine +127765 feminine +feminine +masculine +127769 feminine +127771 masculine +127774 masculine +masculine +masculine +127778 neuter +neuter +neuter +feminine +masculine +neuter +127787 neuter +neuter +neuter +neuter +127793 masculine +masculine +masculine +masculine +127798 masculine +masculine +127801 feminine +feminine +masculine +masculine +127806 neuter +neuter +masculine +127810 neuter +masculine +neuter +feminine +127816 masculine +127819 neuter +neuter +neuter +neuter +127824 masculine +masculine +masculine +masculine +127829 masculine +masculine +127835 masculine +masculine +masculine +127839 masculine +masculine +127842 feminine +masculine +feminine +feminine +feminine +masculine +127849 masculine +masculine +masculine +neuter +127854 masculine +127856 masculine +127858 masculine +masculine +feminine +feminine +127863 feminine +127865 neuter +neuter +masculine +masculine +127870 feminine +masculine +127873 masculine +neuter +neuter +masculine +masculine +127879 masculine +masculine +127882 feminine +feminine +127886 masculine +masculine +127891 neuter +masculine +127894 masculine +127897 masculine +masculine +127900 masculine +127902 feminine +feminine +masculine +masculine +127907 masculine +masculine +127911 masculine +127915 feminine +feminine +masculine +masculine +127920 feminine +masculine +masculine +masculine +127926 masculine +masculine +masculine +masculine +127931 feminine +feminine +neuter +127935 feminine +127937 masculine +masculine +masculine +127944 masculine +masculine +masculine +127948 feminine +masculine +masculine +feminine +127953 masculine +masculine +masculine +127957 masculine +masculine +masculine +neuter +127963 neuter +127967 masculine +127969 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +127978 masculine +masculine +masculine +masculine +127983 feminine +feminine +masculine +masculine +neuter +127989 masculine +masculine +masculine +127993 masculine +masculine +masculine +masculine +feminine +feminine +128000 masculine +neuter +128003 feminine +neuter +128006 masculine +masculine +128009 masculine +feminine +128012 feminine +feminine +128015 feminine +feminine +feminine +128019 feminine +128022 masculine +masculine +128025 masculine +128028 masculine +masculine +128032 neuter +128034 neuter +neuter +128037 masculine +masculine +masculine +128042 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +128053 masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +128063 masculine +128066 feminine +feminine +128070 neuter +neuter +masculine +128076 feminine +masculine +masculine +masculine +128081 masculine +masculine +masculine +feminine +feminine +128087 neuter +neuter +128090 masculine +masculine +masculine +masculine +128098 feminine +feminine +128102 masculine +masculine +masculine +128106 masculine +masculine +128112 masculine +feminine +feminine +feminine +feminine +feminine +128122 neuter +neuter +128125 neuter +neuter +128128 masculine +masculine +masculine +masculine +masculine +128134 masculine +128137 masculine +masculine +masculine +masculine +128142 masculine +masculine +masculine +128147 masculine +128149 feminine +feminine +128152 feminine +128154 feminine +128156 masculine +128159 feminine +feminine +feminine +feminine +feminine +128165 masculine +masculine +masculine +masculine +128170 feminine +feminine +masculine +128175 neuter +128177 feminine +feminine +feminine +128184 feminine +feminine +128187 feminine +feminine +neuter +128193 neuter +128196 feminine +128198 feminine +128200 feminine +128203 feminine +128206 feminine +128209 neuter +128212 feminine +128215 feminine +128218 feminine +128222 feminine +feminine +feminine +128229 masculine +128232 feminine +feminine +128236 neuter +feminine +feminine +masculine +masculine +masculine +masculine +masculine +128245 masculine +128247 masculine +masculine +feminine +feminine +128252 feminine +feminine +masculine +128256 feminine +feminine +feminine +128260 neuter +neuter +128263 feminine +128265 masculine +masculine +masculine +128269 feminine +neuter +128272 masculine +masculine +masculine +masculine +neuter +128279 feminine +feminine +128282 feminine +feminine +masculine +128286 feminine +neuter +neuter +128290 masculine +128292 feminine +feminine +feminine +masculine +masculine +128300 neuter +neuter +masculine +feminine +masculine +feminine +feminine +128308 feminine +feminine +masculine +128312 masculine +masculine +128316 feminine +feminine +masculine +128322 masculine +128325 masculine +masculine +masculine +128329 masculine +128332 feminine +feminine +masculine +128337 masculine +128342 masculine +masculine +128345 masculine +masculine +128348 masculine +masculine +128352 masculine +128355 masculine +128358 masculine +masculine +masculine +masculine +128364 feminine +feminine +masculine +masculine +128369 masculine +masculine +128373 neuter +128376 neuter +128379 neuter +128383 neuter +neuter +neuter +masculine +128388 masculine +masculine +128392 feminine +feminine +128396 feminine +128398 feminine +feminine +feminine +masculine +128403 masculine +masculine +feminine +128407 feminine +128410 feminine +feminine +feminine +128415 feminine +128417 masculine +masculine +feminine +128421 feminine +feminine +128424 neuter +128426 masculine +masculine +masculine +128430 masculine +128432 feminine +feminine +masculine +masculine +masculine +128438 neuter +feminine +128441 feminine +feminine +feminine +128445 neuter +neuter +128449 masculine +masculine +128452 feminine +feminine +128460 masculine +128463 masculine +masculine +masculine +masculine +128472 masculine +masculine +128475 feminine +128480 neuter +neuter +128491 feminine +feminine +128494 feminine +feminine +128504 neuter +neuter +neuter +128515 feminine +feminine +128519 masculine +masculine +feminine +128526 neuter +128530 neuter +neuter +masculine +masculine +neuter +128537 masculine +masculine +neuter +128541 neuter +neuter +neuter +128545 feminine +feminine +masculine +masculine +128550 masculine +128553 neuter +neuter +feminine +feminine +neuter +128560 masculine +masculine +masculine +masculine +128565 masculine +masculine +feminine +128569 feminine +feminine +128572 neuter +128574 masculine +masculine +128577 masculine +masculine +masculine +128581 masculine +128586 feminine +feminine +128589 feminine +feminine +128592 masculine +128595 feminine +feminine +128598 masculine +masculine +masculine +128602 masculine +128607 feminine +masculine +masculine +neuter +128612 neuter +128617 masculine +masculine +128623 feminine +128628 feminine +feminine +128632 masculine +128634 masculine +128638 masculine +masculine +feminine +feminine +masculine +masculine +neuter +128646 neuter +neuter +neuter +128650 feminine +feminine +masculine +masculine +128658 masculine +masculine +masculine +masculine +128663 masculine +masculine +feminine +128667 feminine +feminine +128670 neuter +128672 masculine +masculine +feminine +feminine +feminine +feminine +feminine +feminine +128684 masculine +masculine +masculine +masculine +128690 neuter +neuter +128696 feminine +feminine +128701 feminine +feminine +masculine +masculine +masculine +128707 masculine +masculine +128710 masculine +128715 masculine +masculine +128722 neuter +128726 masculine +feminine +feminine +masculine +masculine +128732 masculine +masculine +128735 neuter +128737 masculine +masculine +masculine +128741 neuter +128748 masculine +feminine +feminine +masculine +masculine +128761 neuter +128765 masculine +128767 feminine +feminine +neuter +neuter +128772 masculine +masculine +neuter +128776 neuter +neuter +neuter +128780 feminine +feminine +masculine +masculine +128785 masculine +neuter +neuter +neuter +neuter +128792 masculine +feminine +feminine +128797 feminine +feminine +neuter +neuter +neuter +neuter +masculine +128807 masculine +masculine +128810 masculine +masculine +feminine +128814 neuter +feminine +128817 neuter +128819 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +128829 feminine +neuter +128832 masculine +masculine +masculine +masculine +neuter +128839 neuter +neuter +128842 feminine +feminine +128845 feminine +feminine +128848 feminine +feminine +128851 feminine +feminine +128855 neuter +neuter +128858 neuter +neuter +neuter +neuter +neuter +128869 feminine +feminine +feminine +feminine +feminine +feminine +feminine +128880 masculine +masculine +masculine +128886 neuter +128889 feminine +masculine +128898 feminine +feminine +feminine +128903 feminine +128905 feminine +128907 masculine +masculine +128910 feminine +128912 feminine +feminine +128918 neuter +neuter +feminine +128922 neuter +neuter +feminine +128927 masculine +128930 feminine +feminine +feminine +128936 masculine +masculine +masculine +128940 feminine +128944 masculine +128946 neuter +neuter +128952 masculine +masculine +masculine +128956 neuter +masculine +128960 feminine +feminine +feminine +masculine +128966 neuter +neuter +masculine +masculine +128976 neuter +neuter +128979 neuter +128984 masculine +128987 masculine +masculine +128990 masculine +masculine +128993 neuter +neuter +neuter +128998 masculine +feminine +129001 neuter +neuter +129005 masculine +129007 feminine +feminine +129010 neuter +neuter +neuter +neuter +129019 masculine +masculine +129024 masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +129033 neuter +neuter +neuter +129037 feminine +feminine +129040 masculine +masculine +feminine +129044 feminine +feminine +129047 neuter +129049 masculine +masculine +neuter +129053 neuter +masculine +masculine +129057 masculine +129059 masculine +129062 neuter +neuter +129065 neuter +129070 masculine +129073 masculine +129076 neuter +neuter +neuter +129085 neuter +neuter +129088 masculine +masculine +129107 masculine +129112 feminine +feminine +129119 neuter +neuter +129122 feminine +neuter +129126 neuter +neuter +neuter +129134 neuter +129136 masculine +129138 masculine +masculine +129143 neuter +neuter +129149 neuter +neuter +masculine +129153 feminine +feminine +feminine +feminine +129159 neuter +neuter +masculine +129163 masculine +masculine +129168 masculine +masculine +masculine +masculine +masculine +neuter +129175 neuter +neuter +neuter +129179 feminine +feminine +129182 masculine +masculine +feminine +129186 feminine +feminine +129189 neuter +129191 masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +masculine +129203 masculine +129206 masculine +129208 masculine +129212 neuter +neuter +129218 feminine +feminine +feminine +feminine +129223 masculine +129226 feminine +feminine +129232 masculine +masculine +129237 neuter +neuter +129243 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +129259 masculine +129265 masculine +masculine +129276 masculine +masculine +feminine +feminine +129285 feminine +feminine +masculine +masculine +feminine +feminine +129293 feminine +feminine +feminine +129297 masculine +masculine +129300 feminine +feminine +129303 neuter +129305 neuter +129308 masculine +129310 masculine +masculine +129313 masculine +masculine +129316 masculine +masculine +129319 masculine +masculine +masculine +masculine +129333 masculine +neuter +neuter +masculine +masculine +129340 neuter +neuter +feminine +feminine +masculine +masculine +129347 feminine +feminine +feminine +feminine +feminine +129353 masculine +masculine +129356 masculine +masculine +129360 neuter +neuter +129363 neuter +neuter +masculine +masculine +neuter +129369 neuter +neuter +neuter +129373 feminine +feminine +129376 masculine +masculine +feminine +129380 feminine +feminine +129383 neuter +129385 masculine +129387 masculine +masculine +masculine +masculine +129392 masculine +feminine +feminine +feminine +feminine +masculine +masculine +129401 neuter +neuter +129406 masculine +129408 masculine +129411 masculine +129413 masculine +129416 masculine +129420 masculine +129422 masculine +129427 neuter +neuter +129433 masculine +129438 neuter +feminine +129447 masculine +masculine +129450 masculine +129452 masculine +129454 masculine +129456 masculine +129462 neuter +neuter +129465 neuter +129469 neuter +neuter +129476 feminine +feminine +feminine +feminine +129482 neuter +129484 masculine +masculine +129491 masculine +129503 feminine +feminine +129508 masculine +129510 feminine +feminine +129515 feminine +feminine +129519 masculine +129523 masculine +129525 masculine +129528 masculine +masculine +129531 masculine +129536 masculine +masculine +129545 masculine +masculine +129549 masculine +masculine +masculine +masculine +masculine +neuter +129556 neuter +neuter +neuter +129560 feminine +feminine +129563 neuter +129567 feminine +feminine +129570 masculine +masculine +129573 feminine +feminine +feminine +feminine +feminine +129580 feminine +feminine +129584 masculine +129590 neuter +129593 neuter +129598 neuter +129601 masculine +129604 masculine +masculine +129608 masculine +masculine +masculine +129612 masculine +masculine +masculine +feminine +masculine +feminine +129619 neuter +129621 feminine +129623 masculine +masculine +masculine +feminine +masculine +129630 masculine +masculine +masculine +129634 masculine +129637 masculine +masculine +129640 masculine +masculine +masculine +masculine +129645 neuter +neuter +129649 feminine +feminine +masculine +masculine +masculine +129656 masculine +masculine +129659 feminine +129661 feminine +129663 feminine +129666 feminine +neuter +feminine +129670 masculine +masculine +neuter +129674 neuter +129676 neuter +masculine +masculine +129681 masculine +masculine +129684 feminine +feminine +feminine +masculine +129690 neuter +masculine +masculine +129694 masculine +masculine +masculine +neuter +neuter +neuter +masculine +129705 neuter +neuter +neuter +neuter +neuter +masculine +129712 neuter +neuter +neuter +neuter +masculine +129718 neuter +neuter +neuter +masculine +neuter +neuter +129725 masculine +129727 neuter +neuter +neuter +neuter +masculine +masculine +129734 neuter +neuter +neuter +neuter +129739 neuter +neuter +masculine +129743 feminine +129749 masculine +129751 feminine +129754 feminine +129756 feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +129769 masculine +masculine +129772 masculine +masculine +129777 neuter +neuter +feminine +129781 feminine +129783 feminine +masculine +masculine +129787 masculine +masculine +masculine +masculine +129792 masculine +masculine +masculine +masculine +129797 masculine +129799 masculine +masculine +129802 masculine +masculine +129805 masculine +masculine +129809 masculine +masculine +129812 masculine +masculine +masculine +masculine +129818 masculine +masculine +masculine +129822 masculine +masculine +masculine +masculine +masculine +129828 masculine +masculine +129831 masculine +129834 feminine +feminine +129837 feminine +feminine +129840 feminine +feminine +129845 neuter +neuter +129849 neuter +neuter +129858 feminine +feminine +masculine +masculine +129863 masculine +masculine +neuter +neuter +129870 neuter +feminine +129875 masculine +masculine +masculine +129879 feminine +feminine +masculine +masculine +129884 neuter +neuter +129888 feminine +feminine +neuter +129893 masculine +129895 masculine +masculine +129899 feminine +feminine +129903 feminine +feminine +129906 neuter +neuter +129910 neuter +129913 neuter +129915 masculine +masculine +129919 neuter +neuter +129923 neuter +129925 masculine +129927 masculine +masculine +129935 masculine +masculine +masculine +129939 feminine +feminine +masculine +feminine +feminine +masculine +129946 neuter +neuter +129949 feminine +129951 feminine +neuter +129956 neuter +masculine +masculine +129960 neuter +neuter +neuter +129965 neuter +masculine +masculine +neuter +neuter +129971 neuter +masculine +neuter +129976 masculine +129978 masculine +129980 neuter +129982 neuter +masculine +masculine +masculine +129987 feminine +feminine +feminine +129995 feminine +feminine +masculine +masculine +130000 masculine +masculine +130005 neuter +neuter +neuter +neuter +neuter +130011 masculine +130013 masculine +masculine +130017 neuter +neuter +masculine +masculine +feminine +130023 feminine +feminine +feminine +neuter +feminine +130029 feminine +feminine +masculine +masculine +130035 feminine +feminine +masculine +masculine +130041 neuter +neuter +130045 feminine +feminine +neuter +130052 masculine +masculine +130055 neuter +neuter +130059 feminine +feminine +130062 feminine +130064 masculine +130066 neuter +130069 masculine +masculine +masculine +130073 feminine +130075 masculine +130079 feminine +feminine +130085 feminine +masculine +masculine +masculine +masculine +masculine +130092 neuter +neuter +130095 masculine +masculine +130099 masculine +masculine +masculine +feminine +feminine +130105 feminine +feminine +masculine +feminine +feminine +masculine +130112 neuter +neuter +neuter +neuter +130117 feminine +feminine +130120 masculine +130122 feminine +130124 feminine +130126 feminine +130128 feminine +130130 feminine +130132 neuter +neuter +neuter +130136 masculine +masculine +130140 feminine +feminine +130144 feminine +feminine +130148 feminine +feminine +130152 neuter +130154 masculine +neuter +masculine +130158 masculine +masculine +130161 masculine +masculine +130164 neuter +neuter +feminine +feminine +130169 feminine +feminine +130172 feminine +feminine +130175 neuter +neuter +130178 masculine +masculine +masculine +masculine +130183 neuter +neuter +neuter +130189 masculine +masculine +130198 neuter +neuter +feminine +130202 feminine +130204 feminine +130207 neuter +130209 neuter +neuter +neuter +neuter +130214 feminine +feminine +130221 masculine +masculine +130224 masculine +masculine +130227 masculine +masculine +neuter +130232 masculine +masculine +130236 masculine +130243 feminine +feminine +feminine +feminine +130248 neuter +neuter +neuter +neuter +130255 masculine +masculine +masculine +130259 masculine +masculine +130262 masculine +130264 masculine +130266 feminine +feminine +130269 feminine +feminine +130273 masculine +130277 masculine +feminine +feminine +130283 feminine +feminine +feminine +feminine +130288 neuter +neuter +neuter +neuter +130297 masculine +masculine +130300 masculine +masculine +130303 masculine +masculine +masculine +130307 feminine +feminine +masculine +130313 feminine +130315 neuter +neuter +neuter +neuter +feminine +feminine +masculine +neuter +130324 feminine +feminine +feminine +neuter +130329 neuter +neuter +130332 masculine +masculine +130339 feminine +feminine +feminine +feminine +130344 feminine +neuter +neuter +neuter +neuter +130354 masculine +masculine +130357 masculine +masculine +130360 masculine +neuter +masculine +masculine +masculine +130366 masculine +masculine +130370 masculine +130373 masculine +feminine +130376 neuter +neuter +feminine +feminine +130382 feminine +130385 masculine +130388 masculine +130391 neuter +neuter +feminine +feminine +130398 feminine +feminine +feminine +130403 neuter +neuter +feminine +feminine +masculine +masculine +130410 masculine +masculine +masculine +masculine +130416 feminine +feminine +feminine +130422 feminine +feminine +masculine +masculine +masculine +masculine +masculine +130430 masculine +130437 neuter +neuter +130441 masculine +masculine +130444 feminine +feminine +130448 masculine +masculine +feminine +feminine +130454 masculine +130458 masculine +masculine +130463 masculine +masculine +masculine +130467 masculine +masculine +masculine +masculine +masculine +130475 masculine +130480 feminine +feminine +feminine +feminine +130485 masculine +masculine +130489 masculine +masculine +130492 masculine +130494 masculine +masculine +130497 feminine +feminine +feminine +130502 neuter +130504 masculine +masculine +masculine +masculine +130510 feminine +feminine +130513 feminine +130515 masculine +masculine +feminine +130519 masculine +masculine +feminine +130523 masculine +masculine +130527 neuter +neuter +130530 neuter +neuter +130533 feminine +130535 masculine +masculine +masculine +130540 masculine +masculine +feminine +feminine +130545 masculine +masculine +130548 masculine +masculine +130551 masculine +masculine +130554 masculine +masculine +130557 masculine +masculine +130560 masculine +130562 masculine +130564 neuter +neuter +130568 feminine +feminine +neuter +neuter +130574 neuter +neuter +130577 feminine +feminine +130586 neuter +masculine +masculine +130590 masculine +masculine +130594 feminine +feminine +neuter +neuter +130600 feminine +feminine +feminine +feminine +feminine +feminine +masculine +130608 masculine +130612 neuter +130614 masculine +masculine +masculine +130618 feminine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +feminine +feminine +130632 masculine +130634 feminine +feminine +130638 feminine +feminine +130642 neuter +neuter +130646 masculine +masculine +masculine +130650 feminine +masculine +masculine +feminine +masculine +masculine +130658 feminine +feminine +masculine +masculine +masculine +masculine +masculine +130667 feminine +feminine +130670 feminine +feminine +masculine +130675 feminine +feminine +130678 feminine +feminine +130681 neuter +neuter +130685 masculine +masculine +masculine +masculine +130691 neuter +neuter +masculine +130696 masculine +masculine +masculine +masculine +130702 feminine +feminine +masculine +130706 feminine +feminine +masculine +masculine +130711 feminine +masculine +130714 feminine +masculine +130717 feminine +masculine +130720 feminine +130722 feminine +masculine +130725 feminine +130727 feminine +masculine +130730 feminine +130732 feminine +masculine +130735 feminine +130737 feminine +masculine +130740 feminine +130742 feminine +masculine +130745 feminine +130747 feminine +masculine +130750 feminine +130752 feminine +masculine +130755 feminine +130757 feminine +masculine +130760 feminine +130762 feminine +masculine +130765 feminine +130767 feminine +masculine +130770 feminine +masculine +130773 neuter +130777 masculine +masculine +masculine +masculine +130782 masculine +130785 neuter +neuter +130788 feminine +130790 masculine +130792 feminine +masculine +130795 masculine +masculine +130799 neuter +neuter +masculine +feminine +feminine +130805 masculine +130807 feminine +feminine +masculine +130812 feminine +feminine +masculine +feminine +feminine +masculine +masculine +130820 masculine +masculine +130823 masculine +masculine +130826 neuter +neuter +130829 masculine +masculine +masculine +130833 masculine +masculine +masculine +130837 masculine +masculine +130840 neuter +neuter +neuter +130846 masculine +masculine +130849 neuter +neuter +masculine +130854 masculine +masculine +masculine +130858 feminine +feminine +130861 feminine +feminine +130864 feminine +feminine +130867 feminine +feminine +130870 feminine +feminine +130873 feminine +feminine +130876 feminine +feminine +masculine +masculine +130882 masculine +masculine +masculine +masculine +130889 masculine +130891 masculine +masculine +masculine +130895 masculine +masculine +masculine +feminine +feminine +feminine +feminine +masculine +130909 masculine +masculine +130917 masculine +130919 masculine +masculine +130922 feminine +feminine +feminine +feminine +130928 feminine +feminine +masculine +130933 feminine +130935 neuter +neuter +neuter +neuter +130940 neuter +130943 masculine +masculine +masculine +masculine +130949 masculine +feminine +130952 feminine +130954 masculine +masculine +masculine +130958 masculine +masculine +130961 masculine +masculine +130965 masculine +130976 masculine +masculine +masculine +130980 neuter +neuter +130983 neuter +neuter +neuter +130987 neuter +masculine +masculine +130991 masculine +130994 masculine +130996 feminine +feminine +neuter +131001 masculine +masculine +neuter +neuter +131006 masculine +masculine +masculine +131012 feminine +feminine +feminine +feminine +131017 feminine +131019 masculine +masculine +131022 neuter +131025 masculine +131027 masculine +masculine +131030 masculine +masculine +131035 masculine +131037 feminine +131039 masculine +masculine +131045 neuter +neuter +masculine +masculine +masculine +131052 masculine +neuter +neuter +131057 feminine +feminine +masculine +masculine +masculine +131063 neuter +neuter +neuter +neuter +neuter +131069 masculine +masculine +131073 masculine +masculine +neuter +neuter +feminine +feminine +masculine +masculine +131082 feminine +masculine +masculine +131086 masculine +masculine +131090 masculine +masculine +masculine +masculine +131096 masculine +131098 neuter +neuter +neuter +neuter +131105 feminine +feminine +131109 feminine +131111 feminine +131113 feminine +131115 masculine +131117 masculine +131119 masculine +masculine +masculine +feminine +131124 feminine +131126 masculine +131130 masculine +masculine +131135 feminine +131137 neuter +neuter +131140 neuter +131144 feminine +feminine +131147 neuter +neuter +feminine +feminine +131153 neuter +neuter +neuter +neuter +131159 masculine +masculine +masculine +131164 masculine +masculine +masculine +131170 neuter +neuter +neuter +neuter +131176 feminine +feminine +131180 neuter +neuter +feminine +feminine +neuter +131187 neuter +neuter +neuter +neuter +neuter +131193 feminine +feminine +neuter +neuter +feminine +131199 neuter +neuter +neuter +neuter +131205 masculine +masculine +masculine +131212 masculine +masculine +masculine +masculine +masculine +131218 feminine +131222 neuter +neuter +masculine +masculine +131228 feminine +feminine +neuter +neuter +131233 neuter +neuter +masculine +masculine +131238 masculine +masculine +131242 neuter +neuter +neuter +neuter +131247 feminine +131249 masculine +masculine +masculine +131254 neuter +neuter +131259 masculine +masculine +masculine +131265 neuter +neuter +masculine +masculine +131270 neuter +neuter +feminine +feminine +131275 neuter +neuter +masculine +masculine +131281 neuter +neuter +masculine +131285 feminine +feminine +131289 neuter +neuter +feminine +131293 feminine +feminine +131300 masculine +masculine +masculine +131304 neuter +masculine +feminine +feminine +131311 masculine +masculine +131314 feminine +feminine +131317 masculine +masculine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +131329 masculine +masculine +masculine +131335 masculine +131337 masculine +masculine +masculine +131341 feminine +feminine +131345 masculine +feminine +feminine +neuter +neuter +feminine +feminine +131354 neuter +neuter +feminine +feminine +131360 masculine +131362 neuter +neuter +131365 masculine +feminine +feminine +131370 masculine +masculine +131373 masculine +masculine +131376 masculine +masculine +neuter +neuter +131382 masculine +masculine +131385 feminine +131387 feminine +feminine +131391 masculine +feminine +131395 feminine +masculine +masculine +feminine +feminine +131402 masculine +131406 masculine +masculine +feminine +feminine +131411 neuter +neuter +131414 neuter +neuter +131418 masculine +masculine +masculine +131423 feminine +feminine +masculine +masculine +131428 neuter +neuter +131432 masculine +131436 masculine +131440 masculine +131443 masculine +masculine +feminine +131447 masculine +masculine +131451 masculine +131454 feminine +feminine +feminine +131458 masculine +masculine +masculine +masculine +131466 masculine +131472 masculine +masculine +131475 masculine +131477 neuter +neuter +feminine +feminine +masculine +masculine +masculine +131485 masculine +131488 feminine +feminine +feminine +131492 masculine +masculine +masculine +131496 neuter +neuter +feminine +131500 neuter +masculine +131504 feminine +131506 feminine +feminine +131509 masculine +masculine +feminine +131513 masculine +131517 masculine +131519 masculine +masculine +131522 feminine +feminine +feminine +feminine +feminine +131528 feminine +neuter +masculine +masculine +masculine +131534 masculine +131537 feminine +feminine +masculine +131541 neuter +131544 feminine +feminine +feminine +feminine +feminine +feminine +131551 masculine +masculine +masculine +131557 feminine +masculine +masculine +masculine +feminine +feminine +neuter +masculine +131566 masculine +131569 feminine +feminine +neuter +131573 masculine +feminine +131576 feminine +feminine +131585 neuter +131587 masculine +masculine +masculine +131593 feminine +feminine +131596 neuter +neuter +neuter +neuter +neuter +neuter +neuter +neuter +131605 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +feminine +131616 masculine +masculine +masculine +masculine +masculine +131622 masculine +masculine +masculine +masculine +masculine +131629 masculine +masculine +masculine +masculine +masculine +131635 feminine +feminine +131638 feminine +131640 masculine +131642 masculine +131645 neuter +neuter +masculine +masculine +131650 masculine +masculine +neuter +neuter +neuter +neuter +feminine +feminine +131659 masculine +masculine +neuter +131665 masculine +masculine +131668 feminine +feminine +131671 masculine +masculine +131674 masculine +masculine +masculine +masculine +131679 masculine +131681 masculine +131683 feminine +feminine +masculine +masculine +131688 feminine +masculine +131692 neuter +neuter +masculine +131696 neuter +131698 masculine +131700 neuter +131702 neuter +neuter +masculine +masculine +131707 feminine +feminine +feminine +feminine +131712 neuter +neuter +131715 masculine +masculine +131718 neuter +neuter +neuter +neuter +131723 neuter +neuter +masculine +131727 feminine +feminine +masculine +masculine +131733 neuter +neuter +masculine +131738 feminine +feminine +masculine +131742 feminine +feminine +masculine +feminine +masculine +feminine +feminine +131751 feminine +131754 masculine +masculine +masculine +masculine +masculine +131762 feminine +feminine +feminine +131768 neuter +neuter +feminine +feminine +masculine +131776 neuter +neuter +131779 neuter +neuter +neuter +neuter +131784 neuter +neuter +131787 neuter +neuter +131790 neuter +neuter +131793 neuter +neuter +neuter +131807 masculine +masculine +masculine +131812 neuter +feminine +masculine +131817 feminine +feminine +masculine +131822 neuter +neuter +masculine +131827 masculine +masculine +masculine +masculine +131832 masculine +masculine +masculine +feminine +131837 feminine +feminine +131840 feminine +feminine +masculine +131844 neuter +neuter +masculine +131848 masculine +masculine +131851 masculine +masculine +masculine +131855 masculine +neuter +131858 masculine +131860 feminine +feminine +masculine +neuter +neuter +131867 masculine +masculine +masculine +masculine +masculine +131873 feminine +feminine +131876 masculine +masculine +131879 feminine +feminine +131883 feminine +feminine +131886 masculine +131892 feminine +131894 feminine +feminine +feminine +feminine +131901 feminine +131903 feminine +131908 feminine +131910 masculine +masculine +feminine +131914 neuter +131916 feminine +131918 feminine +131921 neuter +131924 masculine +masculine +masculine +masculine +131929 feminine +feminine +131933 feminine +feminine +131937 feminine +feminine +masculine +feminine +feminine +131943 masculine +masculine +131948 masculine +masculine +131951 masculine +masculine +masculine +masculine +masculine +131957 masculine +masculine +131960 neuter +131962 masculine +131964 feminine +feminine +131967 neuter +131969 feminine +131971 feminine +feminine +131974 neuter +131976 feminine +131978 masculine +131983 feminine +feminine +feminine +feminine +masculine +masculine +masculine +131995 neuter +neuter +masculine +masculine +132001 masculine +masculine +masculine +masculine +masculine +132007 feminine +feminine +feminine +132012 masculine +masculine +132015 feminine +132019 feminine +132022 neuter +neuter +neuter +neuter +132027 feminine +feminine +masculine +masculine +masculine +masculine +132034 feminine +feminine +132038 feminine +feminine +132043 masculine +masculine +masculine +masculine +132049 neuter +neuter +132057 neuter +132061 feminine +feminine +132065 neuter +neuter +132069 neuter +132071 neuter +132074 neuter +neuter +132077 feminine +feminine +masculine +masculine +132083 neuter +132087 neuter +neuter +132091 neuter +neuter +132096 neuter +132098 feminine +feminine +132109 masculine +132111 neuter +132113 feminine +132115 masculine +masculine +132120 masculine +masculine +feminine +masculine +132127 masculine +masculine +masculine +masculine +132132 neuter +neuter +132135 masculine +masculine +132138 masculine +132140 feminine +feminine +feminine +132144 masculine +masculine +132150 feminine +132154 neuter +neuter +132157 feminine +feminine +feminine +feminine +132162 masculine +132167 masculine +masculine +masculine +132173 feminine +feminine +feminine +132177 masculine +masculine +masculine +132181 feminine +132183 feminine +132185 feminine +132187 feminine +feminine +132190 masculine +masculine +feminine +feminine +masculine +132197 masculine +132199 masculine +132201 neuter +132204 neuter +neuter +masculine +132209 masculine +masculine +masculine +132214 masculine +132216 masculine +132220 masculine +132222 masculine +132224 feminine +feminine +132227 masculine +masculine +132231 masculine +132233 feminine +feminine +feminine +feminine +masculine +132239 feminine +132242 neuter +neuter +132245 neuter +132247 neuter +132250 feminine +feminine +132253 feminine +feminine +132261 feminine +feminine +masculine +neuter +neuter +neuter +neuter +132269 feminine +feminine +132273 masculine +masculine +132277 masculine +132280 masculine +132282 neuter +neuter +masculine +132286 feminine +feminine +feminine +feminine +feminine +feminine +feminine +132295 feminine +132297 feminine +132300 masculine +masculine +masculine +132307 masculine +masculine +132310 feminine +132312 feminine +132314 neuter +neuter +neuter +masculine +feminine +feminine +132321 neuter +132325 neuter +neuter +masculine +132330 neuter +132332 masculine +masculine +132335 feminine +feminine +132339 masculine +132343 neuter +132345 masculine +132347 masculine +masculine +132350 masculine +132352 masculine +masculine +132355 feminine +feminine +132359 feminine +feminine +132362 neuter +feminine +neuter +feminine +132367 masculine +masculine +132371 masculine +132375 masculine +masculine +masculine +132379 masculine +masculine +132383 masculine +masculine +masculine +132388 feminine +feminine +132391 masculine +masculine +feminine +masculine +132400 masculine +masculine +132403 feminine +feminine +132407 masculine +masculine +masculine +masculine +132413 feminine +feminine +feminine +132417 masculine +masculine +132420 neuter +neuter +feminine +feminine +132428 masculine +masculine +neuter +masculine +feminine +132435 masculine +masculine +masculine +132441 feminine +masculine +masculine +masculine +masculine +feminine +132448 feminine +feminine +132452 feminine +132454 feminine +feminine +132457 neuter +132459 masculine +masculine +masculine +132465 feminine +feminine +132468 masculine +masculine +masculine +132472 feminine +feminine +masculine +masculine +masculine +masculine +132480 masculine +masculine +masculine +132486 masculine +masculine +masculine +masculine +132491 masculine +132493 masculine +masculine +masculine +132497 masculine +masculine +masculine +132501 masculine +masculine +masculine +132506 neuter +neuter +masculine +132511 masculine +masculine +masculine +132516 masculine +masculine +masculine +masculine +masculine +masculine +masculine +132524 masculine +132528 feminine +feminine +132531 feminine +feminine +132536 neuter +neuter +132541 feminine +feminine +132545 masculine +masculine +masculine +masculine +132552 masculine +masculine +masculine +masculine +132557 masculine +masculine +132560 masculine +masculine +132563 masculine +masculine +neuter +neuter +132568 masculine +masculine +132571 masculine +masculine +132575 masculine +masculine +feminine +feminine +132581 masculine +masculine +masculine +masculine +masculine +132587 masculine +masculine +132591 feminine +feminine +feminine +feminine +masculine +132597 masculine +masculine +masculine +132602 feminine +132604 feminine +132606 feminine +132608 masculine +132610 feminine +feminine +132613 neuter +neuter +132617 masculine +masculine +feminine +feminine +masculine +masculine +132624 feminine +feminine +132627 masculine +masculine +feminine +132632 feminine +feminine +feminine +masculine +masculine +132640 feminine +feminine +132644 feminine +132646 feminine +132650 neuter +neuter +132653 masculine +masculine +132657 masculine +masculine +masculine +masculine +feminine +132664 neuter +132668 feminine +feminine +masculine +132672 neuter +132674 feminine +feminine +masculine +132678 neuter +neuter +masculine +masculine +masculine +masculine +132686 masculine +132688 feminine +feminine +132691 masculine +masculine +132695 feminine +feminine +feminine +feminine +132703 neuter +neuter +feminine +132709 masculine +neuter +masculine +132714 neuter +neuter +neuter +132718 feminine +feminine +132722 neuter +neuter +feminine +132726 masculine +masculine +132730 masculine +masculine +masculine +132734 feminine +feminine +132738 feminine +feminine +132743 masculine +masculine +132746 masculine +masculine +132751 feminine +feminine +feminine +feminine +132758 masculine +132760 masculine +masculine +masculine +masculine +132765 masculine +masculine +masculine +neuter +132771 masculine +masculine +132775 masculine +masculine +132778 masculine +masculine +masculine +132785 masculine +masculine +132790 masculine +masculine +132794 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +132806 masculine +masculine +masculine +masculine +feminine +feminine +feminine +132815 feminine +feminine +132818 masculine +masculine +masculine +132822 masculine +132826 feminine +feminine +132829 masculine +masculine +feminine +132834 feminine +feminine +132837 feminine +feminine +132840 feminine +feminine +masculine +masculine +132846 feminine +feminine +masculine +masculine +masculine +132853 masculine +masculine +masculine +masculine +132858 masculine +masculine +masculine +132862 masculine +masculine +132865 feminine +132867 feminine +132869 masculine +132871 masculine +132873 neuter +neuter +neuter +neuter +132879 masculine +masculine +feminine +feminine +masculine +132887 feminine +feminine +masculine +132891 masculine +132893 neuter +132895 masculine +132897 masculine +132899 masculine +masculine +132902 feminine +feminine +132905 feminine +feminine +132909 masculine +masculine +132913 masculine +masculine +masculine +masculine +132918 masculine +masculine +132924 masculine +masculine +132929 feminine +feminine +132932 feminine +feminine +feminine +132936 masculine +masculine +132940 feminine +feminine +feminine +132944 feminine +masculine +masculine +masculine +masculine +132952 feminine +feminine +132955 masculine +masculine +feminine +132961 masculine +132963 masculine +132965 neuter +masculine +132968 neuter +masculine +masculine +132973 masculine +masculine +132976 neuter +neuter +masculine +132980 feminine +feminine +neuter +132984 masculine +132986 feminine +feminine +132991 feminine +feminine +feminine +feminine +132997 feminine +feminine +neuter +neuter +feminine +133004 masculine +masculine +masculine +133008 masculine +masculine +133011 neuter +neuter +masculine +133016 masculine +masculine +133019 feminine +feminine +133024 masculine +133026 masculine +masculine +neuter +neuter +feminine +masculine +masculine +feminine +feminine +masculine +masculine +133038 masculine +feminine +feminine +masculine +133045 feminine +feminine +feminine +feminine +133052 feminine +feminine +neuter +neuter +neuter +neuter +133060 feminine +133064 neuter +neuter +neuter +133068 neuter +133071 feminine +feminine +neuter +neuter +feminine +133077 neuter +neuter +neuter +133082 neuter +feminine +133085 masculine +masculine +neuter +133089 feminine +133091 neuter +neuter +neuter +133095 neuter +masculine +133099 neuter +masculine +masculine +feminine +feminine +masculine +133106 masculine +masculine +masculine +133110 feminine +feminine +133113 feminine +133115 feminine +feminine +neuter +133119 feminine +133121 masculine +133123 feminine +feminine +masculine +masculine +neuter +133131 feminine +feminine +feminine +133135 neuter +neuter +133139 masculine +masculine +133143 feminine +feminine +neuter +neuter +133149 neuter +neuter +masculine +masculine +masculine +neuter +neuter +133157 masculine +133161 neuter +133164 neuter +neuter +neuter +neuter +133169 feminine +133172 neuter +feminine +133175 masculine +133180 neuter +neuter +neuter +133184 feminine +133186 masculine +masculine +133189 neuter +neuter +masculine +133193 feminine +feminine +masculine +masculine +133198 masculine +masculine +masculine +133203 neuter +133205 masculine +133207 masculine +masculine +133211 masculine +133214 neuter +feminine +133217 feminine +feminine +133220 masculine +133222 feminine +133224 neuter +133227 masculine +masculine +masculine +masculine +133232 feminine +feminine +133236 masculine +neuter +neuter +masculine +133241 neuter +neuter +feminine +feminine +neuter +neuter +neuter +neuter +133250 feminine +masculine +133253 masculine +133255 neuter +133258 masculine +133260 feminine +133262 feminine +133265 masculine +133267 feminine +133270 masculine +133272 feminine +133276 feminine +feminine +133279 feminine +feminine +masculine +masculine +133285 neuter +neuter +neuter +133289 feminine +feminine +133293 neuter +133295 neuter +neuter +133300 masculine +133302 feminine +feminine +neuter +neuter +neuter +feminine +133310 neuter +133313 feminine +feminine +133316 masculine +133318 feminine +masculine +133322 neuter +neuter +neuter +neuter +neuter +133328 feminine +feminine +masculine +masculine +neuter +133335 neuter +neuter +133340 neuter +133342 masculine +masculine +133346 feminine +feminine +133349 masculine +masculine +133353 masculine +masculine +133356 feminine +feminine +133359 neuter +neuter +neuter +133363 neuter +133366 neuter +neuter +masculine +masculine +masculine +133372 feminine +feminine +133375 feminine +neuter +neuter +masculine +133380 feminine +feminine +feminine +feminine +133388 neuter +133390 neuter +feminine +feminine +neuter +neuter +133398 feminine +feminine +neuter +neuter +133406 masculine +133409 feminine +feminine +neuter +neuter +133416 masculine +masculine +masculine +133420 masculine +masculine +133423 masculine +masculine +133426 masculine +masculine +133429 masculine +masculine +133432 masculine +masculine +133436 masculine +neuter +133439 feminine +feminine +masculine +feminine +feminine +133446 neuter +neuter +masculine +133452 masculine +133459 masculine +masculine +neuter +neuter +neuter +neuter +neuter +neuter +133468 masculine +masculine +neuter +neuter +neuter +133474 feminine +feminine +133477 masculine +masculine +masculine +133481 masculine +masculine +neuter +neuter +133486 masculine +masculine +133490 masculine +masculine +neuter +masculine +133500 neuter +neuter +neuter +133504 neuter +neuter +feminine +133509 neuter +133512 feminine +feminine +feminine +neuter +neuter +neuter +133519 neuter +neuter +masculine +masculine +masculine +neuter +133526 neuter +neuter +masculine +133531 feminine +133533 masculine +masculine +133536 feminine +neuter +neuter +133541 feminine +feminine +feminine +133545 feminine +feminine +feminine +133550 masculine +masculine +133553 feminine +feminine +masculine +133558 feminine +feminine +133561 masculine +masculine +133565 neuter +neuter +neuter +133569 masculine +masculine +133572 masculine +133575 feminine +feminine +133579 feminine +133582 feminine +feminine +masculine +masculine +133587 feminine +feminine +masculine +133591 masculine +133593 feminine +133597 feminine +133599 masculine +masculine +masculine +neuter +neuter +133607 masculine +133610 masculine +masculine +feminine +masculine +masculine +133616 neuter +neuter +133620 neuter +neuter +masculine +133625 neuter +masculine +133630 masculine +masculine +masculine +133634 neuter +masculine +neuter +neuter +133640 masculine +masculine +133643 feminine +feminine +133647 neuter +neuter +133650 feminine +133652 feminine +133654 masculine +masculine +133657 feminine +feminine +133660 masculine +masculine +133664 masculine +feminine +133668 feminine +feminine +feminine +feminine +masculine +133675 masculine +masculine +masculine +masculine +133680 feminine +feminine +133683 feminine +133685 feminine +neuter +133688 masculine +masculine +masculine +133692 masculine +133695 feminine +feminine +feminine +feminine +133700 masculine +masculine +masculine +masculine +feminine +feminine +feminine +133708 neuter +neuter +neuter +133712 masculine +masculine +masculine +133716 masculine +masculine +133719 feminine +feminine +133722 masculine +133724 neuter +neuter +133727 feminine +feminine +neuter +133732 neuter +133734 neuter +neuter +masculine +133739 feminine +feminine +masculine +133743 masculine +133746 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +133756 neuter +neuter +feminine +feminine +masculine +133764 neuter +133766 neuter +133768 masculine +masculine +133772 neuter +neuter +133775 masculine +masculine +masculine +masculine +masculine +133781 masculine +masculine +133787 feminine +feminine +133790 feminine +masculine +masculine +neuter +neuter +133796 feminine +feminine +neuter +133801 masculine +133803 neuter +neuter +neuter +neuter +neuter +133810 feminine +feminine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +133821 feminine +feminine +masculine +133826 feminine +133828 masculine +masculine +feminine +133832 masculine +masculine +masculine +masculine +133837 masculine +masculine +133842 neuter +neuter +133847 masculine +masculine +masculine +133851 neuter +neuter +masculine +133856 masculine +133861 feminine +feminine +133865 feminine +feminine +masculine +masculine +masculine +masculine +masculine +133873 feminine +feminine +masculine +masculine +masculine +133880 feminine +feminine +masculine +neuter +neuter +133886 masculine +masculine +133890 masculine +masculine +masculine +133894 feminine +feminine +masculine +masculine +133899 feminine +feminine +133902 neuter +neuter +133909 feminine +feminine +133914 masculine +masculine +feminine +feminine +133920 masculine +masculine +133923 feminine +feminine +neuter +neuter +masculine +133929 feminine +feminine +133933 feminine +feminine +133936 masculine +masculine +133940 masculine +masculine +masculine +133944 masculine +masculine +masculine +133948 masculine +neuter +neuter +133952 masculine +masculine +masculine +masculine +feminine +133958 neuter +neuter +133962 neuter +neuter +133966 feminine +feminine +masculine +masculine +neuter +neuter +neuter +neuter +masculine +133977 neuter +neuter +neuter +neuter +133983 masculine +masculine +feminine +feminine +feminine +feminine +133991 feminine +feminine +feminine +133996 masculine +masculine +neuter +neuter +masculine +134002 feminine +feminine +134006 feminine +feminine +feminine +feminine +134013 feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +134023 feminine +feminine +134026 feminine +feminine +134030 neuter +134032 feminine +feminine +134035 masculine +masculine +masculine +masculine +134040 masculine +masculine +masculine +134045 neuter +neuter +134048 masculine +masculine +neuter +134052 neuter +masculine +134055 masculine +feminine +134058 feminine +feminine +134062 feminine +134064 masculine +masculine +masculine +masculine +134071 feminine +feminine +feminine +neuter +134076 masculine +masculine +134079 neuter +neuter +134083 feminine +feminine +neuter +134088 masculine +masculine +neuter +neuter +neuter +masculine +134095 feminine +feminine +feminine +feminine +masculine +feminine +masculine +masculine +134105 feminine +feminine +masculine +masculine +masculine +masculine +masculine +134113 feminine +feminine +neuter +neuter +masculine +neuter +134120 neuter +neuter +neuter +134124 masculine +masculine +masculine +masculine +masculine +feminine +134131 feminine +feminine +feminine +134135 masculine +masculine +masculine +neuter +masculine +134143 masculine +134146 neuter +neuter +134150 masculine +masculine +134153 neuter +neuter +neuter +134162 neuter +neuter +134168 neuter +134172 masculine +masculine +feminine +feminine +neuter +neuter +134179 masculine +masculine +134183 masculine +134185 masculine +masculine +masculine +feminine +134190 feminine +134192 masculine +masculine +masculine +neuter +masculine +masculine +134199 masculine +134201 neuter +neuter +feminine +feminine +134206 neuter +134208 neuter +neuter +neuter +134212 masculine +134214 masculine +134216 feminine +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +134226 masculine +masculine +masculine +masculine +134232 masculine +masculine +masculine +134236 feminine +feminine +masculine +masculine +134242 feminine +feminine +masculine +134246 masculine +134250 masculine +masculine +134254 feminine +134256 feminine +masculine +134259 masculine +134262 feminine +feminine +134265 masculine +masculine +feminine +masculine +134270 masculine +134274 feminine +134276 feminine +masculine +masculine +masculine +masculine +134282 feminine +feminine +134286 masculine +masculine +134290 feminine +feminine +masculine +134294 feminine +feminine +134298 neuter +neuter +134301 neuter +134303 masculine +masculine +masculine +masculine +neuter +neuter +neuter +neuter +134312 masculine +masculine +feminine +feminine +neuter +134318 masculine +masculine +134321 feminine +feminine +masculine +134325 feminine +feminine +134329 neuter +134331 masculine +134333 feminine +feminine +feminine +neuter +134338 feminine +feminine +134342 masculine +masculine +134345 feminine +feminine +masculine +134349 masculine +masculine +134352 feminine +feminine +neuter +neuter +134358 neuter +134361 masculine +masculine +neuter +neuter +masculine +masculine +134368 masculine +masculine +134371 masculine +134373 masculine +masculine +134376 neuter +134379 neuter +masculine +134382 masculine +134385 neuter +masculine +134389 masculine +134393 neuter +neuter +masculine +134397 masculine +masculine +masculine +masculine +masculine +feminine +134404 feminine +feminine +feminine +134409 masculine +masculine +134412 feminine +feminine +masculine +134416 masculine +masculine +134420 masculine +134422 masculine +masculine +134425 neuter +134428 masculine +masculine +neuter +neuter +134434 neuter +neuter +masculine +masculine +masculine +masculine +feminine +feminine +134443 feminine +feminine +feminine +134450 masculine +feminine +134453 masculine +masculine +134456 feminine +feminine +masculine +134460 masculine +masculine +neuter +neuter +134466 feminine +feminine +neuter +feminine +134472 feminine +feminine +masculine +134476 masculine +masculine +134480 masculine +masculine +masculine +masculine +134485 masculine +masculine +masculine +134490 neuter +neuter +masculine +134497 neuter +neuter +masculine +134501 masculine +masculine +134504 feminine +feminine +masculine +134508 masculine +masculine +masculine +masculine +masculine +134515 neuter +neuter +masculine +134520 feminine +feminine +masculine +masculine +masculine +134526 feminine +masculine +134531 neuter +neuter +masculine +masculine +134537 neuter +neuter +neuter +neuter +134543 neuter +neuter +masculine +masculine +neuter +neuter +neuter +134551 masculine +134554 neuter +neuter +neuter +neuter +neuter +134561 masculine +masculine +feminine +feminine +feminine +134567 masculine +134569 masculine +masculine +feminine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +134582 masculine +masculine +masculine +masculine +134587 masculine +neuter +neuter +masculine +134593 masculine +134597 feminine +feminine +masculine +134602 masculine +134604 masculine +masculine +masculine +masculine +134609 neuter +134611 masculine +masculine +134614 feminine +feminine +masculine +134618 masculine +masculine +134622 feminine +feminine +134625 masculine +masculine +134628 masculine +masculine +feminine +134634 feminine +134636 feminine +134638 feminine +134640 masculine +masculine +134643 masculine +134647 masculine +masculine +134651 feminine +feminine +masculine +masculine +134656 masculine +134659 feminine +feminine +feminine +feminine +134664 neuter +neuter +134667 feminine +feminine +neuter +neuter +134673 feminine +feminine +feminine +134678 masculine +masculine +134681 feminine +neuter +neuter +masculine +masculine +masculine +masculine +feminine +feminine +masculine +134692 feminine +feminine +134696 neuter +134700 feminine +feminine +134703 feminine +134706 masculine +masculine +134709 masculine +masculine +134713 masculine +masculine +masculine +masculine +134718 feminine +feminine +feminine +feminine +134723 feminine +134725 feminine +feminine +feminine +134731 masculine +134733 masculine +134735 masculine +masculine +masculine +feminine +134740 feminine +134745 masculine +134749 neuter +neuter +feminine +feminine +feminine +feminine +feminine +feminine +134758 neuter +neuter +134761 feminine +134763 masculine +masculine +feminine +feminine +134769 masculine +masculine +feminine +feminine +134774 masculine +masculine +feminine +feminine +feminine +134783 feminine +134785 neuter +134788 feminine +feminine +134791 neuter +neuter +neuter +neuter +feminine +masculine +feminine +134800 neuter +134803 feminine +feminine +134806 feminine +neuter +134809 neuter +134811 feminine +neuter +134814 masculine +masculine +134817 masculine +feminine +134820 feminine +feminine +feminine +neuter +neuter +neuter +neuter +134828 neuter +neuter +feminine +feminine +feminine +134835 neuter +neuter +feminine +neuter +neuter +neuter +feminine +feminine +feminine +feminine +feminine +feminine +feminine +134849 neuter +neuter +feminine +feminine +134855 feminine +feminine +feminine +134859 neuter +neuter +masculine +masculine +134865 neuter +neuter +masculine +masculine +masculine +134872 masculine +feminine +neuter +neuter +134879 masculine +masculine +134882 neuter +134887 neuter +neuter +feminine +feminine +134892 neuter +neuter +neuter +neuter +feminine +neuter +neuter +feminine +134901 feminine +134903 neuter +134905 neuter +neuter +neuter +neuter +134918 feminine +feminine +134922 feminine +134926 masculine +masculine +134929 feminine +feminine +masculine +neuter +neuter +134937 neuter +neuter +feminine +feminine +134942 feminine +masculine +masculine +neuter +neuter +134955 masculine +masculine +masculine +masculine +feminine +feminine +134962 feminine +134964 neuter +134967 feminine +feminine +134971 neuter +134973 masculine +134976 masculine +134979 masculine +masculine +134982 masculine +masculine +134989 neuter +masculine +134994 neuter +neuter +neuter +135002 masculine +masculine +135007 masculine +135012 feminine +135015 neuter +135017 neuter +neuter +135022 masculine +masculine +feminine +135028 feminine +135030 masculine +feminine +feminine +135035 neuter +neuter +masculine +feminine +feminine +135042 feminine +feminine +135045 feminine +masculine +neuter +neuter +135050 masculine +135052 neuter +neuter +135056 neuter +neuter +135059 masculine +135062 masculine +masculine +135065 masculine +masculine +135068 masculine +135070 masculine +masculine +135073 masculine +135075 masculine +135079 neuter +neuter +neuter +135084 feminine +feminine +135088 masculine +135090 masculine +135092 neuter +135094 feminine +135096 neuter +135098 neuter +neuter +135102 neuter +neuter +masculine +135106 feminine +feminine +135110 feminine +feminine +135113 feminine +135115 feminine +feminine +feminine +135120 feminine +135123 neuter +135125 masculine +masculine +135129 feminine +feminine +masculine +135133 feminine +feminine +masculine +135138 feminine +feminine +135142 feminine +feminine +masculine +neuter +neuter +135149 masculine +masculine +masculine +masculine +135154 feminine +feminine +feminine +135159 feminine +feminine +feminine +feminine +feminine +feminine +feminine +135167 masculine +masculine +feminine +feminine +135172 neuter +135174 masculine +masculine +masculine +135178 masculine +masculine +masculine +feminine +feminine +135184 feminine +feminine +135188 feminine +feminine +masculine +135194 feminine +feminine +masculine +135199 feminine +feminine +feminine +135204 neuter +neuter +135207 feminine +neuter +neuter +neuter +135212 feminine +neuter +neuter +neuter +135217 neuter +135220 masculine +masculine +masculine +masculine +feminine +feminine +feminine +135228 neuter +neuter +neuter +135232 masculine +masculine +feminine +feminine +135237 feminine +135240 masculine +masculine +feminine +feminine +135245 feminine +feminine +neuter +neuter +feminine +135253 feminine +feminine +135256 masculine +masculine +feminine +masculine +masculine +135264 feminine +135268 feminine +feminine +feminine +135274 feminine +feminine +feminine +135281 feminine +feminine +feminine +135285 masculine +masculine +135289 masculine +masculine +neuter +neuter +feminine +135295 feminine +135298 feminine +135302 neuter +neuter +135305 neuter +neuter +feminine +135309 neuter +neuter +neuter +135314 feminine +neuter +neuter +135318 feminine +135321 masculine +masculine +135324 neuter +135326 feminine +135329 feminine +feminine +feminine +135335 feminine +135337 feminine +135341 neuter +135346 neuter +135348 feminine +feminine +135351 feminine +feminine +feminine +masculine +135356 neuter +135358 masculine +135361 neuter +135364 masculine +masculine +masculine +masculine +masculine +masculine +feminine +135376 feminine +masculine +masculine +feminine +feminine +masculine +135383 feminine +masculine +135386 masculine +135389 masculine +masculine +feminine +feminine +feminine +135396 masculine +135398 masculine +masculine +masculine +masculine +feminine +masculine +135406 feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +feminine +135416 feminine +feminine +135419 feminine +feminine +135423 masculine +masculine +feminine +feminine +135431 feminine +135433 masculine +135436 masculine +masculine +masculine +masculine +masculine +135442 masculine +135444 masculine +masculine +135447 masculine +135449 neuter +135451 feminine +135453 neuter +135455 neuter +135457 neuter +neuter +neuter +135461 neuter +neuter +neuter +135465 neuter +neuter +135468 neuter +neuter +135471 masculine +135473 masculine +135475 masculine +135477 neuter +135479 neuter +135481 neuter +135483 neuter +135485 masculine +135487 masculine +135489 neuter +135491 feminine +135493 masculine +135495 neuter +135497 neuter +135499 masculine +135501 feminine +135503 neuter +135505 feminine +masculine +135508 feminine +feminine +135511 feminine +feminine +feminine +feminine +135519 neuter +neuter +neuter +135523 neuter +neuter +135532 neuter +135534 masculine +masculine +neuter +masculine +masculine +135540 feminine +135545 masculine +masculine +masculine +masculine +feminine +masculine +135552 masculine +masculine +135556 feminine +feminine +feminine +feminine +feminine +feminine +neuter +135564 neuter +135566 neuter +135568 feminine +135570 neuter +135572 masculine +masculine +135575 masculine +135577 feminine +feminine +135580 masculine +masculine +masculine +135584 masculine +masculine +135587 masculine +masculine +135590 masculine +masculine +135593 masculine +135595 masculine +feminine +feminine +135604 masculine +masculine +masculine +feminine +feminine +feminine +masculine +feminine +feminine +feminine +feminine +feminine +feminine +135619 masculine +135621 feminine +feminine +masculine +135626 masculine +135628 masculine +masculine +135632 feminine +feminine +feminine +feminine +135637 feminine +135639 masculine +masculine +masculine +neuter +neuter +135645 feminine +feminine +135648 feminine +feminine +feminine +135652 feminine +feminine +135657 feminine +masculine +135660 masculine +masculine +135663 masculine +masculine +135666 masculine +masculine +135670 masculine +masculine +neuter +neuter +135676 feminine +135679 masculine +masculine +masculine +masculine +135684 masculine +masculine +135689 feminine +feminine +masculine +135693 neuter +135695 feminine +feminine +feminine +feminine +135705 feminine +masculine +135708 masculine +135710 masculine +135712 masculine +135720 masculine +masculine +feminine +feminine +135731 feminine +masculine +135740 neuter +masculine +135749 feminine +masculine +135752 feminine +135760 masculine +masculine +135764 masculine +masculine +feminine +feminine +135770 feminine +feminine +135774 neuter +neuter +neuter +135779 feminine +135781 neuter +masculine +135784 masculine +135786 masculine +masculine +masculine +135790 feminine +feminine +135793 neuter +135796 feminine +feminine +masculine +masculine +135801 masculine +masculine +masculine +135805 feminine +feminine +135808 feminine +feminine +135811 feminine +feminine +masculine +masculine +135817 feminine +135819 feminine +feminine +feminine +masculine +135825 feminine +feminine +feminine +feminine +feminine +135831 feminine +feminine +135834 feminine +feminine +feminine +135839 neuter +neuter +masculine +masculine +masculine +135845 feminine +feminine +135848 neuter +135852 masculine +masculine +feminine +135857 masculine +masculine +masculine +masculine +135863 masculine +masculine +masculine +135867 masculine +135869 neuter +neuter +neuter +135874 masculine +masculine +masculine +masculine +135879 masculine +masculine +masculine +135885 feminine +135887 masculine +masculine +135890 feminine +135892 masculine +masculine +135895 masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +135905 masculine +masculine +135910 feminine +masculine +masculine +135915 feminine +neuter +neuter +135920 feminine +feminine +feminine +masculine +135927 masculine +masculine +masculine +135931 masculine +masculine +135938 feminine +feminine +masculine +135943 masculine +masculine +neuter +neuter +135948 feminine +feminine +neuter +135952 feminine +135955 feminine +135958 neuter +neuter +neuter +135962 neuter +neuter +neuter +neuter +masculine +masculine +135973 masculine +masculine +135976 neuter +neuter +masculine +masculine +neuter +neuter +masculine +135986 masculine +masculine +masculine +masculine +masculine +masculine +135996 masculine +masculine +masculine +136000 masculine +136007 masculine +136010 masculine +masculine +136013 masculine +masculine +feminine +feminine +masculine +masculine +masculine +136022 feminine +feminine +masculine +136026 neuter +neuter +feminine +feminine +136032 masculine +masculine +masculine +136037 masculine +masculine +136040 masculine +masculine +136043 masculine +masculine +masculine +136047 masculine +136050 feminine +136055 masculine +masculine +masculine +feminine +neuter +136062 feminine +feminine +masculine +neuter +neuter +masculine +neuter +neuter +neuter +masculine +136075 masculine +136077 masculine +neuter +neuter +neuter +136083 neuter +neuter +masculine +masculine +masculine +masculine +masculine +136091 neuter +neuter +neuter +136095 masculine +masculine +136098 masculine +136100 masculine +masculine +masculine +neuter +neuter +neuter +136108 neuter +neuter +masculine +136112 feminine +feminine +136116 feminine +136118 neuter +neuter +136121 masculine +136123 masculine +136125 feminine +feminine +136128 masculine +136130 feminine +feminine +masculine +masculine +masculine +masculine +feminine +feminine +masculine +masculine +masculine +masculine +136145 neuter +neuter +136149 masculine +masculine +masculine +neuter +neuter +masculine +masculine +136157 masculine +masculine +136161 masculine +masculine +masculine +136165 masculine +masculine +136170 feminine +feminine +masculine +neuter +neuter +neuter +neuter +neuter +136179 neuter +136183 neuter +neuter +neuter +neuter +masculine +masculine +136191 feminine +masculine +136194 feminine +masculine +136197 feminine +masculine +136200 feminine +masculine +136203 masculine +masculine +136206 masculine +136208 feminine +masculine +136211 masculine +136213 masculine +136215 masculine +136217 masculine +136220 neuter +neuter +136223 masculine +masculine +feminine +feminine +136228 neuter +neuter +masculine +neuter +136233 masculine +masculine +136236 masculine +masculine +136239 masculine +masculine +136243 neuter +neuter +masculine +136248 neuter +neuter +136252 neuter +masculine +masculine +masculine +masculine +neuter +neuter +136260 neuter +136262 neuter +136264 masculine +masculine +neuter +neuter +neuter +neuter +136271 masculine +masculine +feminine +feminine +neuter +masculine +136278 masculine +136281 feminine +feminine +neuter +neuter +feminine +feminine +136288 neuter +136290 masculine +masculine +136294 feminine +feminine +masculine +masculine +136299 masculine +masculine +feminine +feminine +136304 neuter +neuter +masculine +136308 neuter +neuter +neuter +136313 feminine +feminine +masculine +136318 masculine +masculine +136321 masculine +masculine +masculine +feminine +feminine +feminine +feminine +136329 feminine +feminine +136332 feminine +feminine +masculine +136337 masculine +masculine +masculine +masculine +masculine +masculine +masculine +136345 masculine +136347 masculine +masculine +136351 masculine +neuter +neuter +136356 masculine +136358 feminine +feminine +136365 masculine +136370 neuter +neuter +136374 neuter +neuter +neuter +136378 neuter +136381 masculine +masculine +masculine +136386 masculine +136390 masculine +136392 neuter +136394 masculine +136396 feminine +feminine +masculine +masculine +136401 feminine +feminine +masculine +136406 masculine +masculine +masculine +masculine +136411 masculine +136414 neuter +neuter +136417 feminine +feminine +masculine +136423 neuter +neuter +136426 neuter +neuter +136430 feminine +feminine +masculine +136438 masculine +masculine +neuter +neuter +masculine +masculine +masculine +masculine +136450 neuter +neuter +neuter +feminine +feminine +feminine +feminine +feminine +masculine +136460 masculine +masculine +masculine +neuter +136465 feminine +feminine +feminine +feminine +136470 masculine +masculine +masculine +masculine +136476 feminine +136479 masculine +masculine +masculine +136483 masculine +masculine +136488 masculine +neuter +neuter +neuter +136495 neuter +neuter +neuter +136499 masculine +masculine +136502 feminine +feminine +masculine +136508 neuter +neuter +neuter +136512 feminine +feminine +feminine +feminine +feminine +masculine +masculine +136520 masculine +136522 masculine +136524 masculine +masculine +masculine +masculine +masculine +masculine +136531 feminine +feminine +feminine +feminine +136538 neuter +neuter +feminine +feminine +136544 feminine +feminine +masculine +masculine +136549 feminine +feminine +feminine +feminine +136555 neuter +136557 masculine +masculine +136561 masculine +136563 masculine +masculine +masculine +masculine +masculine +136570 feminine +feminine +neuter +neuter +136575 neuter +136578 neuter +neuter +136581 masculine +masculine +136585 feminine +136587 feminine +136589 masculine +masculine +masculine +masculine +136595 masculine +masculine +masculine +136599 masculine +masculine +136602 masculine +136604 masculine +neuter +neuter +136608 feminine +feminine +136611 masculine +masculine +136614 masculine +136617 masculine +136620 masculine +masculine +masculine +masculine +136625 masculine +masculine +masculine +136629 masculine +masculine +136632 neuter +136635 neuter +neuter +136638 neuter +136640 feminine +feminine +136644 masculine +masculine +136647 neuter +neuter +136650 neuter +neuter +136653 neuter +neuter +masculine +136658 feminine +feminine +masculine +masculine +masculine +136664 feminine +136666 masculine +masculine +136669 masculine +masculine +136672 masculine +masculine +masculine +136676 masculine +136679 masculine +136681 neuter +neuter +masculine +136685 masculine +masculine +136688 masculine +masculine +136692 feminine +feminine +neuter +neuter +masculine +masculine +masculine +masculine +masculine +feminine +feminine +neuter +neuter +136708 masculine +136712 feminine +feminine +feminine +feminine +masculine +136719 feminine +feminine +neuter +neuter +136725 masculine +masculine +136728 feminine +feminine +136731 masculine +masculine +masculine +136735 feminine +feminine +feminine +136740 feminine +feminine +136747 feminine +feminine +feminine +feminine +feminine +feminine +feminine +136755 masculine +masculine +136758 masculine +masculine +feminine +136762 feminine +feminine +masculine +masculine +feminine +136769 feminine +feminine +136772 masculine +masculine +feminine +136776 feminine +feminine +masculine +masculine +136781 masculine +masculine +136786 masculine +136788 masculine +masculine +masculine +136793 masculine +masculine +masculine +136797 masculine +136801 neuter +neuter +136804 masculine +masculine +masculine +136808 masculine +masculine +136814 neuter +136816 feminine +136818 masculine +136823 neuter +neuter +136828 masculine +masculine +136831 masculine +masculine +136834 neuter +136836 neuter +136841 masculine +masculine +masculine +masculine +136846 masculine +136853 neuter +neuter +136856 neuter +neuter +feminine +feminine +136861 neuter +neuter +136864 masculine +masculine +136868 feminine +feminine +neuter +neuter +feminine +feminine +136875 masculine +masculine +136878 neuter +136881 masculine +masculine +136884 masculine +136887 masculine +136889 masculine +masculine +136892 masculine +136894 masculine +136896 masculine +136898 masculine +136900 masculine +136902 masculine +136904 masculine +masculine +masculine +neuter +neuter +masculine +136911 feminine +feminine +feminine +feminine +neuter +136917 neuter +neuter +136920 masculine +masculine +masculine +masculine +136926 masculine +136928 masculine +136930 masculine +masculine +masculine +feminine +136935 feminine +feminine +feminine +feminine +136940 feminine +feminine +feminine +136947 masculine +136951 feminine +feminine +feminine +feminine +neuter +neuter +136961 neuter +136963 neuter +neuter +136966 neuter +136970 feminine +feminine +feminine +feminine +feminine +feminine +136977 masculine +masculine +136980 masculine +masculine +feminine +feminine +feminine +masculine +masculine +masculine +masculine +feminine +masculine +masculine +masculine +136994 masculine +feminine +masculine +feminine +neuter +neuter +137001 neuter +feminine +masculine +137007 masculine +masculine +masculine +137012 neuter +neuter +neuter +137016 feminine +137018 feminine +masculine +masculine +137022 feminine +masculine +masculine +137027 masculine +masculine +masculine +137032 masculine +masculine +masculine +137037 feminine +masculine +masculine +137041 neuter +neuter +feminine +feminine +masculine +masculine +137050 masculine +137052 neuter +masculine +137055 masculine +neuter +neuter +137059 masculine +masculine +137064 neuter +masculine +masculine +137069 feminine +feminine +137072 masculine +masculine +feminine +137076 neuter +neuter +feminine +137080 feminine +feminine +feminine +137085 neuter +neuter +feminine +neuter +neuter +neuter +137093 feminine +feminine +masculine +masculine +137098 masculine +137100 feminine +neuter +neuter +137104 neuter +neuter +137107 neuter +neuter +feminine +neuter +137114 neuter +neuter +feminine +137119 masculine +masculine +neuter +masculine +neuter +137125 masculine +137127 feminine +feminine +neuter +neuter +feminine +feminine +137134 feminine +feminine +neuter +neuter +neuter +masculine +masculine +masculine +masculine +neuter +neuter +feminine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +masculine +masculine +feminine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +neuter +masculine +masculine +masculine +masculine +masculine +masculine +masculine +masculine +feminine +137190 masculine +137192 masculine +137194 masculine +137196 masculine +masculine +masculine +masculine +137202 masculine +masculine +137205 feminine +feminine +feminine +feminine +neuter +neuter +137212 masculine +masculine +137215 masculine +137219 feminine +137221 masculine +masculine +masculine +masculine +masculine +masculine +137228 neuter +neuter +masculine +feminine +137234 feminine +feminine +137238 feminine +masculine +masculine +137242 feminine +feminine +137246 feminine +137248 feminine +feminine +masculine +masculine +137253 feminine +137255 masculine +masculine +feminine +neuter +neuter +137262 neuter +neuter +137265 neuter +neuter +feminine +137269 masculine +masculine +feminine +feminine +137274 feminine +feminine +masculine +137278 feminine +137280 masculine +masculine +feminine +137286 feminine +137288 feminine +137294 feminine +feminine +137297 feminine +feminine +neuter +neuter +137302 feminine +137308 feminine +neuter +neuter +137312 masculine +masculine +neuter +137316 neuter +137319 masculine +masculine +137322 neuter +neuter +feminine +feminine +neuter +neuter +137331 masculine +neuter +feminine +masculine +137336 masculine +masculine +137339 masculine +masculine +masculine +masculine +137344 neuter +neuter +137347 neuter +feminine +feminine +feminine +137352 masculine +masculine +137357 neuter +feminine +neuter +masculine +137363 masculine +masculine +neuter +masculine +masculine +neuter +137370 neuter +neuter +neuter +neuter +137375 feminine +neuter +neuter +137379 neuter +neuter +137385 masculine +masculine +masculine +masculine +137390 neuter +neuter +137393 feminine +137396 masculine +masculine +masculine +137400 masculine +137403 neuter +neuter +masculine +137407 neuter +neuter +masculine +137411 neuter +neuter +masculine +137415 feminine +137422 feminine +neuter +masculine +137426 neuter +masculine +137429 masculine +masculine +masculine +137434 masculine +137438 masculine +masculine +masculine +masculine +137445 masculine +masculine +masculine +masculine +137450 masculine +137452 masculine +masculine +masculine +masculine +neuter +neuter +masculine +masculine +137461 masculine +masculine +masculine +137465 masculine +masculine +masculine +neuter +137471 neuter +137476 neuter +masculine +masculine +masculine +masculine +masculine +feminine +feminine +neuter +neuter +neuter +137488 masculine +masculine +masculine +137492 masculine +neuter +137502 masculine +masculine +masculine +masculine +masculine +masculine +137509 neuter +137516 masculine +137519 masculine +masculine +137522 masculine +masculine +137525 masculine +masculine +masculine +masculine +neuter +neuter +neuter +masculine +masculine +137540 masculine +masculine +feminine +feminine +neuter +neuter +neuter +137548 masculine +masculine +137552 masculine +masculine +137557 masculine +masculine +137562 masculine +masculine +feminine +137568 masculine +masculine +137574 neuter +137576 masculine +masculine +137582 masculine +137584 neuter +neuter +masculine +137589 neuter +neuter +137592 neuter +neuter +masculine +masculine +137597 masculine +masculine +feminine +feminine +137602 neuter +neuter +masculine +masculine +masculine +feminine +feminine +masculine +137612 feminine +feminine +masculine +137616 neuter +neuter +feminine +feminine +137621 masculine +masculine +137625 feminine +feminine +137628 masculine +masculine +137631 masculine +masculine +137634 masculine +masculine +137637 masculine +masculine +137640 masculine +masculine +137643 masculine +masculine +137646 masculine +neuter +137649 masculine +137651 masculine +masculine +137656 neuter +137658 feminine +feminine +137662 feminine +feminine +137665 neuter +neuter +masculine +masculine +masculine +masculine +masculine +masculine +masculine +137675 neuter +neuter +137678 feminine +feminine +137683 masculine +masculine +137688 masculine +masculine +137691 masculine +masculine +137694 neuter +feminine +137699 masculine +masculine +masculine +masculine +masculine +feminine +feminine +neuter +neuter +neuter +137710 masculine +137713 neuter +137715 masculine +masculine +137718 masculine +feminine +feminine +feminine +feminine +137724 neuter +neuter +neuter +137729 masculine +137732 masculine +masculine +neuter +neuter +feminine +feminine +feminine +137740 masculine +masculine +neuter +neuter +masculine +137746 neuter +neuter +feminine +feminine +137752 feminine +feminine +feminine +feminine +neuter +neuter +137759 neuter +neuter +neuter +137763 masculine +masculine +neuter +137768 neuter +137771 masculine +masculine +feminine +feminine +masculine +masculine +masculine +137779 masculine diff --git a/tf/0.1.1/gloss.tf b/tf/0.1.1/gloss.tf new file mode 100644 index 0000000..492adc1 --- /dev/null +++ b/tf/0.1.1/gloss.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=gloss +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +[The] book +of [the] genealogy +of Jesus +Christ +son +of David +son +of Abraham +Abraham +begat +- +Isaac +then +Isaac +begat +- +Jacob +then +Jacob +begat +- +Judah +and +the +brothers +of him +then +Judah +begat +- +Perez +and +- +Zerah +out of +- +Tamar +then +Perez +begat +- +Hezron +then +Hezron +begat +- +Ram +then +Ram +begat +- +Amminadab +then +Amminadab +begat +- +Nahshon +then +Nahshon +begat +- +Salmon +then +Salmon +begat +- +Boaz +out of +- +Rahab +then +Boaz +begat +- +Obed +out of +- +Ruth +then +Obed +begat +- +Jesse +then +Jesse +begat +- +David +the +king +then +David +begat +- +Solomon +out of +the [wife] +- +of Uriah +then +Solomon +begat +- +Rehoboam +then +Rehoboam +begat +- +Abijah +then +Abijah +begat +- +Asa +then +Asa +begat +- +Jehoshaphat +then +Jehoshaphat +begat +- +Joram +then +Joram +begat +- +Uzziah +then +Uzziah +begat +- +Jotham +then +Jotham +begat +- +Ahaz +then +Ahaz +begat +- +Hezekiah +then +Hezekiah +begat +- +Manasseh +then +Manasseh +begat +- +Amos +then +Amos +begat +- +Josiah +then +Josiah +begat +- +Jechoniah +and +the +brothers +of him +at [the time] +of the +carrying away +to Babylon +then +After +the +carrying away +to Babylon +Jechoniah +begat +- +Shealtiel +then +Shealtiel +begat +- +Zerubbabel +then +Zerubbabel +begat +- +Abiud +then +Abiud +begat +- +Eliakim +then +Eliakim +begat +- +Azor +then +Azor +begat +- +Zadok +then +Zadok +begat +- +Achim +then +Achim +begat +- +Eliud +then +Eliud +begat +- +Eleazar +then +Eleazar +begat +- +Matthan +then +Matthan +begat +- +Jacob +then +Jacob +begat +- +Joseph +the +husband +of Mary +out of +whom +was born +Jesus +the [One] +being called +Christ +therefore +All +the +generations +from +Abraham +to +David [were] +generations +fourteen +and +from +David +until +the +carrying away +to Babylon +generations +fourteen +and +from +the +carrying away +to Babylon +until +the +Christ +generations +fourteen +Now +- +of Jesus +Christ +the +birth +thus +came about +Having been pledged +the +mother +of Him +Mary +- +to Joseph +before +rather +coming together +of them +she was found +in +womb +having [a child] +out of +[the] Spirit +Holy +now +Joseph +the +husband +of her +righteous +being +and +not +willing +her +to expose publicly +purposed +secretly +to send away +her +now +These things +of him +having pondered +behold +an angel +of [the] Lord +in +a dream +appeared +to him +saying +Joseph +son +of David +not +you should fear +to receive +Mary +[as] the +wife +of you +for +that +in +her +having been conceived +from +[the] Spirit +Holy +is +then +She will bear +a son +and +you will call +the +name +of Him +Jesus +for +He +will save +the +people +of Him +from +the +sins +of them +then +This +all +has come to pass +that +may be fulfilled +that +having been spoken +by +the Lord +through +the +prophet +saying +Behold +the +virgin +in +womb +will hold +and +will bear +a son +and +they will call +the +name +of Him +Immanuel +which +is +being translated +With +us +- +God +then +- +Joseph +Having been awoken +from +the +sleep +he did +as +had commanded +him +the +angel +of [the] Lord +and +received +the +wife +of him +and +not +knew +her +until +that +she had brought forth +a son +and +he called +the +name +of Him +Jesus +Now +- +Jesus +having been born +in +Bethlehem +- +of Judea +in +[the] days +of Herod +the +king +behold +Magi +from [the] +east +arrived +in +Jerusalem +saying +Where +is +the [One] +having been born +King +of the +Jews +for +We saw +of Him +the +star +in +the +east +and +are come +to worship +Him +then +Having heard +- +King +Herod +he was troubled +and +all +Jerusalem +with +him +And +having gathered together +all +the +chief priests +and +scribes +of the +people +he was inquiring +of +them +where +the +Christ +was to be born +And +- +they said +to him +In +Bethlehem +- +of Judea +for +thus +has it been written +through +the +prophet +And +Bethlehem +land +of Judah +you +by no means +least +are +among +the +rulers +of Judah +for +out +of you +will go forth +[One] leading +who +will shepherd +the +people +of Me +- +Israel +Then +Herod +secretly +having called +the +Magi +inquired exactly +of +them +the +time +of the +appearing +star +And +having sent +them +to +Bethlehem +he said +Having gone +search +carefully +for +the +Child +then +when +You shall have found [Him] +bring word back +to me +so that +I also +having come +may worship +Him +And +- +having heard +the +king +they went away +and +behold +the +star +which +they saw +in +the +east +went before +them +until +having arrived +it stood +over +where +was +the +Child +now +Having seen +the +star +they rejoiced [with] +joy +great +exceedingly +And +having come +into +the +house +they found +the +Child +with +Mary +the +mother +of Him +and +having fallen down +they worshiped +Him +and +having opened +the +treasures +of them +they offered +to Him +gifts +gold +and +frankincense +and +myrrh +And +having been divinely warned +in +a dream +not +to return +to +Herod +by +another +route +they withdrew +into +the +country +of them +then +Having withdrawn +of them +behold +an angel +of [the] Lord +appears +in +a dream +- +to Joseph +saying +Having arisen +take +the +Child +and +the +mother +of Him +and +flee +into +Egypt +and +remain +there +until +- +I should tell +you +for +is about +Herod +to seek +the +Child +- +to destroy +Him +And +- +having arisen +he took +the +Child +and +the +mother +of Him +by night +and +withdrew +into +Egypt +and +he remained +there +until +the +death +of Herod +so that +it might be fulfilled +that +having been spoken +by +[the] Lord +through +the +prophet +saying +Out +of Egypt +have I called +the +Son +of me +Then +Herod +having seen +that +he had been outwitted +by +the +Magi +was enraged +intensely +and +having sent forth +he put to death +all +the +boys +that [were] +in +Bethlehem +and +in +all +the +vicinity +of it +from +two years old +and +under +according to +the +time +which +he had ascertained +from +the +Magi +Then +was fulfilled +that +having been spoken +by +Jeremiah +the +prophet +saying +in +Ramah +was heard +A voice +weeping +and +mourning +great +Rachel +weeping [for] +the +children +of her +and +not +would +be comforted +because +no more +are they +now +Having died +- +of Herod +behold +an angel +of [the] Lord +appears +in +a dream +to +Joseph +in +Egypt +saying +Having arisen +take +the +Child +and +the +mother +of Him +and +go +into +[the] land +of Israel +for +they have died +those +seeking +the +life +of the +Child +And +- +having arisen +he took +the +Child +and +the +mother +of Him +and +came +into +[the] land +of Israel +now +Having heard +that +Archelaus +reigns over +- +Judea +in place of +the +father +of him +Herod +he was afraid +there +to go +now +having been divinely warned +in +a dream +he withdrew +into +the +district +- +of Galilee +and +having come +he dwelt +in +a city +being called +Nazareth +so that +it should be fulfilled +that +having been spoken +through +the +prophets +that +A Nazarene +He will be called +then +In +the +days +those +comes +John +the +Baptist +preaching +in +the +wilderness +- +of Judea +saying +Repent +for +has drawn near +the +kingdom +of the +heavens +for +This +is +the [One] +having been spoken of +through +Isaiah +the +prophet +saying +[The] voice +of one crying +in +the +wilderness +Prepare +the +way +of [the] Lord +straight +make +the +paths +of Him +now +Himself +- +John +had +the +garment +of him +of +hair +of a camel +and +a belt +of leather +around +the +waist +of him +and +- +the food +of him +was +locusts +and +honey +wild +At that time +were going out +to +him +Jerusalem +and +all +- +Judea +and +all +the +region around +the +Jordan +and +were being baptized +in +the +Jordan +River +by +him +confessing +the +sins +of them +now +Having seen +many +of the +Pharisees +and +Sadducees +coming +to +the +baptism +he said +to them +Brood +of vipers +who +forewarned +you +to flee +from +the +coming +wrath +therefore +Produce +fruit +worthy +- +of repentance +And +not +presume +to say +within +yourselves +[As] father +we have +- +Abraham +for +I say +to you +that +able is +- +God +out of +the +stones +these +to raise up +children +unto +Abraham +now +Already +the +ax +to +the +root +of the +trees +is applied +therefore +every +tree +not +producing +fruit +good +is cut down +and +into +[the] fire +is thrown +indeed +I +you +baptize +with +water +to +repentance +but +- +after +me +is coming +mightier +than I +He +of whom +not +I am +fit +the +sandals +to carry +He +you +will baptize +with +[the] Spirit +Holy +and +with fire +whose +- +winnowing fork [is] +in +the +hand +of Him +and +He will clear +the +threshing floor +of Him +and +will gather +the +wheat +of Him +into +the +barn +but +the +chaff +He will burn up +with fire +unquenchable +Then +comes +- +Jesus +from +- +Galilee +to +the +Jordan +unto +- +John +- +to be baptized +by +him +But +- +was hindering +Him +saying +I +need +have +by +You +to be baptized +and +You +come +to +me +however +Answering +- +Jesus +said +him +Permit [it] +presently +for +thus +fitting +it is +to us +to fulfill +all +righteousness +Then +he permits +Him +now +Having been baptized +- +Jesus +immediately +went up +from +the +water +and +behold +were opened +the +heavens +and +he saw +Spirit +God +descending +as +a dove +alighting +upon +Him +And +behold +a voice +out +of the +heavens +saying +This +is +the +Son +of me +the +beloved +in +whom +I was well pleased +Then +- +Jesus +was led up +into +the +wilderness +by +the +Spirit +to be tempted +by +the +devil +And +having fasted +days +forty +and +forty +nights +afterward +He was hungry +And +having come +the +[one] tempting +he said +to Him +If +You are +Son +- +of God +speak +that +the +stones +these +loaves of bread +might become +But +- +answering +He said +It has been written +Not +by +bread +alone +shall live +the +man +but +by +every +word +coming out +of +[the] mouth +of God +Then +takes +Him +the +devil +to +the +holy +city +and +sets +Him +upon +the +pinnacle +of the +temple +and +says +to him +If +You are +Son +- +of God +throw +Yourself +down +for +it has been written +- +To the +angels +of Him +He will give orders +concerning +You +and +in +[their] hands +will they bear up +You +lest +ever +You strike +against +a stone +the +foot +of You +Said +to him +- +Jesus +Again +it has been written +Not +you shall test +[the] Lord +the +God +of you +Again +takes +Him +the +devil +to +a mountain +high +exceedingly +and +shows +to Him +all +the +kingdoms +of the +world +and +the +glory +of them +and +he says +to Him +These things +all +to You +will I give +if +falling down +You will worship +me +Then +says +to him +- +Jesus +Get you away +Satan +for +it has been written +[The] Lord +the +God +of you +you shall worship +and +Him +alone +shall you serve +Then +leaves +Him +the +devil +and +behold +angels +came +and +were ministering +to Him +now +Having heard +that +John +had been delivered up +He withdrew +into +- +Galilee +And +having left +- +Nazareth +having come +he dwelt +at +Capernaum +which +[is] on the sea-side +in +[the] region +of Zebulun +and +Naphtali +that +it might be fulfilled +that +having been spoken +by +Isaiah +the +prophet +saying +Land +of Zebulun +and +land +of Naphtali +way +of [the] sea +beyond +the +Jordan +Galilee +of the +Gentiles +The +people +- +sitting +in +darkness +a light +great +have seen +and +to those +sitting +in [the] +land +and +shadow +of death +a light +has dawned +on them +From +that time +began +- +Jesus +to proclaim +and +to say +Repent +for +has drawn near +the +kingdom +of the +heavens +now +Walking +beside +the +Sea +- +of Galilee +He saw +two +brothers +Simon +- +called +Peter +and +Andrew +the +brother +of him +casting +a net +into +the +sea +for +they were +fishermen +And +He says +to them +Come follow +after +Me +and +I will make +you +fishers +of men +And +- +immediately +having left +the +nets +they followed +Him +And +having gone on +from there +He saw +others +two +brothers +James +the [son] +- +of Zebedee +and +John +the +brother +of him +in +the +boat +with +Zebedee +the +father +of them +mending +the +nets +of them +and +He called +them +And +- +immediately +having left +the +boat +and +the +father +of them +they followed +Him +And +He was going +throughout +all +- +Galilee +teaching +in +the +synagogues +of them +and +proclaiming +the +gospel +of the +kingdom +and +healing +every +disease +and +every +sickness +among +the +people +And +went out +the +news +of Him +into +all +- +Syria +And +they brought +to Him +all +the +sick +having +various +diseases +and +pains +oppressing +being possessed by demons +and +being epileptics +and +paralytics +and +He healed +them +And +followed +Him +crowds +great +from +- +Galilee +and +[the] Decapolis +and +Jerusalem +and +Judea +and +beyond +the +Jordan +then +Having seen +the +crowds +He went up +on +the +mountain +and +having sat down +of Him +came +to Him +the +disciples +of Him +And +opening +the +mouth +of Him +He was teaching +them +saying +Blessed [are] +the +poor +in the +spirit +for +theirs +is +the +kingdom +of the +heavens +Blessed [are] +those +mourning +for +they +will be comforted +Blessed +the +meek +for +they +will inherit +the +earth +Blessed [are] +those +hungering +and +thirsting for +- +righteousness +for +they +will be filled +Blessed [are] +the +merciful +for +they +will receive mercy +Blessed +the +pure +- +in heart +for +they +- +God +will see +Blessed +the +peacemakers +for +they +sons +of God +will be called +Blessed [are] +those +having been persecuted +on account of +righteousness +for +theirs +is +the +kingdom +of the +heavens +Blessed +are you +when +they shall insult +you +and +shall persecute [you] +and +shall say +all kinds of +evil +against +you +lying +on account of +Me +Rejoice +and +exult +for +the +reward +of you +[is] great +in +the +heavens +for +thus +they persecuted +the +prophets +- +before +you +You +are +the +salt +of the +earth +however +if +the +salt +becomes tasteless +with +what +will it be salted +For +nothing +it is potent +any longer +if +not +having been cast +out +to be trampled upon +by +- +men +You +are +the +light +of the +world +Not +is able +a city +to be hidden +on +a hill +lying +Nor +do they light +a lamp +and +put +it +under +- +a basket +but +upon +the +lampstand +and +it shines +for all +those +in +the +house +Thus +let shine +the +light +of you +before +- +men +so that +they may see +your +- +good +works +and +they should glorify +the +Father +of you +- +in +the +heavens +Not +think +that +I have come +to abolish +the +law +or +the +Prophets +not +I have come +to abolish +but +to fulfill +for +Truly +I say +to you +until +- +shall pass away +the +heaven +and +the +earth +iota +one +or +one +stroke of a letter +no +not +shall pass away +from +the +law +until +- +everything +should happen +then +if +Whoever +shall break +one +of the +commandments +of these +the +least +and +shall teach +so +the +others +least +he will be called +in +the +kingdom +of the +heavens +now +- +whoever +shall keep +and +shall teach [them] +this [one] +great +will be called +in +the +kingdom +of the +heavens +for +I say +to you +that +if +not +shall abound +your +- +righteousness +above [that] +of the +scribes +and +Pharisees +no +not +shall you enter +into +the +kingdom +of the +heavens +You have heard +that +it was said +to the +ancients +Not +you shall murder +now +- +whoever +shall murder +liable +will be +to the +judgment +however +I +say +to you +that +everyone +- +being angry with +the +brother +of him +liable +will be +to the +judgment +now +- +whoever +shall say +to +brother +of him +Raca +liable +will be +to the +Sanhedrin +now +- +whoever +shall say +Fool +liable +will be +to +the +hell +- +of fire +therefore +If +you shall offer +the +gift +of you +at +the +altar +and there +shall remember +that +the +brother +of you +has +something +against +you +leave +there +the +gift +of you +before +the +altar +and +go away +first +be reconciled +to +brother +of you +and +then +having come +offer +the +gift +of you +Be +agreeing +with +accuser +of you +quickly +while +which +you are +with +him +on +the +way +lest +ever +you +deliver +the +accuser +to the +judge +and +the +judge +to the +officer +and +into +prison +you will be cast +Truly +I say +to you +no +not +shall you come out +from there +until +- +you should pay +the +last +kodranten +You have heard +that +it was said +Not +shall you commit adultery +however +I +say +to you +that +everyone +- +looking upon +a woman +in order +- +to lust after +her +already +has committed adultery with +her +in +the +heart +of him +now +If +the +eye +of you +- +right +causes to stumble +you +pluck out +it +and +cast [it] +from +you +indeed +it is better +for you +that +should perish +one +of the +members +of you +and +not +all +the +body +of you +should be cast +into +hell +And +if +the +right +of you +hand +causes to stumble +you +cut off +it +and +cast [it] +from +you +indeed +it is better +for you +that +should perish +one +of the +members +of you +and +not +all +the +body +of you +into +hell +should depart +also +It was said +- +Whoever +shall divorce +the +wife +of him +let him give +to her +a letter of divorce +however +I +say +to you +that +everyone +- +divorcing +the +wife +of him +except +on account +of sexual immorality +causes +her +to commit adultery +And +if +whoever +her having been divorced +shall marry +commits adultery +Again +you have heard +that +it was said +to the +ancients +Not +shall you swear falsely +now +you shall keep +to the +Lord +the +oaths +of you +however +I +say +to you +not +to swear +at all +neither +by +- +heaven +because +it is +[the] throne +- +of God +nor +by +the +earth +because +it is +[the] footstool +of the +feet +of Him +nor +by +Jerusalem +because +it is +[the] city +of the +great +King +Neither +by +the +head +of you +shall you swear +because +not +you are able +one +hair +to make +white +or +black +however +Let it be +the +statement +of you +Yes +‘Yes +[and] ‘No +No +however +The +more than +these +from +- +evil +comes +You have heard +that +it was said +Eye +for +eye +and +tooth +for +tooth +however +I +say +to you +not +to resist +the +evil [person] +Instead +whoever +you +shall strike +on +the +right +cheek +of you +turn +to him +also +the +other +and +to the one +willing +you +to sue +and +the +tunic +of you +to take +yield +to him +also +the +cloak +and +whoever +you +shall compel to go +mile +one +go +with +him +two +To the [one] +asking of +you +give +and +the [one] +desiring +from +you +to borrow +not +you shall turn away from +You have heard +that +it was said +You shall love +- +neighbor +of you +and +shall hate +- +enemy +of you +however +I +say +to you +love +the +enemies +of you +and +pray +for +those +persecuting +you +so that +you may be +sons +of the +Father +of you +who is +in +[the] heavens +For +the +sun +of Him +He makes rise +on +evil +and +good +and +He sends rain +on +righteous +and +unrighteous +for +If +you love +those +loving +you +what +reward +have you +Do not +also +the +tax collectors +the +same +do +And +if +you greet +the +brothers +of you +only +what +extraordinary +do you +Do not +also +the +Gentiles +the +same +do +therefore +Shall be +you +perfect +as +the +Father +of you +who [is] +Heavenly +perfect +is +now +Beware +the +righteousness +of you +not +to do +before +- +men +in order +- +to be seen +by them +now +if +otherwise +reward +not +have you +with +the +Father +of you +who [is] +in +the +heavens +therefore +When +you do +acts of charity +not +do sound a trumpet +before +you +as +the +hypocrites +do +in +the +synagogues +and +in +the +streets +so that +they may have glory +from +- +men +Truly +I say +to you +they have +the +reward +of them +however +You +doing +charity +not +let know +the +left [hand] +of you +what +is doing +the +right hand +of you +so that +may be +your +- +giving +in +- +secret +And +the +Father +of you +the [One] +seeing +in +- +secret +will reward +you +And +when +you pray +not +you shall be +like +the +hypocrites +for +they love +in +the +synagogues +and +on +the +corners +of the +streets +standing +to pray +so that +they might be seen +- +by men +Truly +I say +to you +they have +the +reward +of them +however +when +You +you pray +enter +into +the +room +of you +and +having shut +the +door +of you +pray +to +Father +of you +the [One] +in +- +secret +And +the +Father +of you +the [One] +seeing +in +- +secret +will reward +you +now +Praying +not +do use vain repetitions +like +the +pagans +for +they think +that +in +the +many words +of them +they will be heard +therefore +Not +be like +to them +for +knows +the +Father +of you +of what things +need +you have +before +- +your +asking +Him +therefore +Thus +pray +you +Father +of us +who [is] +in +the +heavens +hallowed be +the +name +of You +Come +the +kingdom +of You +be done +the +will +of You +as +in +heaven +[so] also +upon +earth +The +bread +of us +- +daily +grant +us +today +And +forgive +us +the +debts +of us +as +also +we +forgive +the +debtors +of us +And +not +lead +us +into +temptation +but +deliver +us +from +- +evil +for +If +you forgive +- +men +the +trespasses +of them +will forgive +also +you +the +Father +of you +- +Heavenly +however +If +not +you forgive +- +men +neither +the +Father +of you +will forgive +the +trespasses +of you +now +Whenever +you fast +not +be +like +the +hypocrites +gloomy +for +they disfigure +the +appearance +of them +so that +they might appear +- +to men +[as] fasting +Truly +I say +to you +they have +the +reward +of them +however +You +fasting +anoint +your +- +head +and +the +face +of you +wash +so that +not +you might appear +- +to men +[as] fasting +but +- +to Father +your +the [One] +in +- +secret +and +the +Father +of you +the [One] +seeing +in +- +secret +will reward +you +Not +store up +for yourselves +treasures +upon +the +earth +where +moth +and +rust +destroy +and +where +thieves +break in +and +steal +however +store up +for yourselves +treasures +in +heaven +where +neither +moth +nor +rust +destroy +and +where +thieves +not +do break in +nor +steal +for +Where +is +the +treasure +of you +there +will be +also +the +heart +of you +The +lamp +of the +body +is +the +eye +therefore +If +is +the +eye +of you +clear +[the] whole +- +body +of you +full of light +will be +however +If +the +eye +of you +evil +is +all +the +body +of you +full of darkness +will be +then +If +the +light +that [is] +within +you +darkness +is +that +darkness +how great +No one +is able +two +masters +to serve +for +either +the +one +he will hate +and +the +other +he will love +or +[the] one +he will be devoted to +and +the +other +he will despise +Not +you are able +God +to serve +and +money +Because of +this +I say +to you +not +be anxious about +the +life +of you +what +you should eat +or +what +you should drink +nor +the +body +of you +what +you should put on +Not +the +life +more +is +than the +food +and +the +body +than +clothing +Look +at +the +birds +of the +air +that +not +they sow +nor +do they reap +nor +do they gather +into +barns +and +the +Father +of you +- +Heavenly +feeds +them +Not +you +much +are more valuable +than they +now +Who +from +you +being anxious +is able +to add +to +the +lifespan +of him +hour +one +And +about +clothing +why +are you anxious +Observe +the +lilies +of the +field +how +they grow +[They do] not +labor +nor +do they spin +however +I say +to you +that +not even +Solomon +in +all +the +glory +of him +was adorned +like +one +of these +however +If +the +grass +of the +field +today +being [here] +and +tomorrow +into +the furnace +being thrown +- +God +thus +clothes +[will He] not +much +more +you +O [you] of little faith +therefore +Not +be anxious +saying +What +shall we eat +Or +what +shall we drink +Or +what +shall we wear +for +All +these things +the +Gentiles +seek after +for +knows +the +Father +of you +- +Heavenly +that +you have need +of them +all +however +Seek +first +the +kingdom +and +the +righteousness +of Him +and +these things +all +will be added +to you +therefore +Not +be anxious +about +things +tomorrow +for +- +tomorrow +will be anxious about +itself +Sufficient +to the +day [is] +the +trouble +of it +Not +do judge +that +not +you should be judged +for +With +whatever +verdict +you judge +you will be judged +and +with +whatever +measure +you measure +it will be measured again +to you +now +Why +do you look at +the +splinter +that [is] +in +the +eye +the +brother +of you +and +- +the in +- +your [own] +eye +beam +not +notice +Or +how +shall you say +to the +brother +of you +Permit that +I might cast out +the +splinter +from +the +eye +of you +and +behold +the +beam +[is] in +the +eye +of you +Hypocrite +Cast out +first +from +the +eye +of you +the +beam +and +then +you will see clearly +to cast out +the +splinter +from +the +eye +of the +brother +of you +Not +give +that which [is] +holy +to the +dogs +nor +cast +the +pearls +of you +before +the +pigs +not +lest +they shall trample upon +them +with +the +feet +of them +and +having turned +they tear to pieces +you +Ask +and +it will be given +to you +seek +and +you will find +knock +and +it will be opened +to you +for +Everyone +- +asking +receives +and +the [one] +seeking +finds +and +to the [one] +knocking +it will be opened +Or +is +of +you +which +a man +whom +will ask for +the +son +of him +bread +not +a stone +will he give +him +Or +also +a fish +he will ask for +not +a serpent +will he give +him +therefore +If +you +evil +being +know +gifts +good +to give +to the +children +of you +how much +more +the +Father +of you +who [is] +in +the +heavens +will give +good things +to those +asking +Him +therefore +All things +if +as many as +you might desire +that +should do +to you +the +men +so +also +you +do +to them +for +This +is +the +law +and +the +prophets +Enter +through +the +narrow +gate +For +wide [is] +the +gate +and +broad +the +way +- +leading +to +- +destruction +and +many +are +those +entering +through +it +For +small [is] +the +gate +and +compressed +the +way +- +leading +to +- +life +and +few +are +those +finding +it +But beware +of +the +false prophets +who +come +to +you +in +clothing +of sheep +however +inwardly +they are +wolves +ravenous +By +the +fruits +of them +you will know +them +Not +do they gather +from +thorns +grapes +or +from +thistles +figs +So +every +tree +good +fruits +good +produces +but +- +the bad +tree +fruits +bad +produces +Not +is able +a tree +good +fruits +bad +to produce +nor +a tree +bad +fruits +good +to produce +Every +tree +not +producing +fruit +good +is cut down +and +into +fire +is thrown +Then surely +by +the +fruits +of them +you will know +them +Not +everyone +- +saying +to Me +Lord +Lord +will enter +into +the +kingdom +of the +heavens +but +the [one] +doing +the +will +the +Father +of Me +who [is] +in +the +heavens +Many +will say +to Me +in +that +the +day +Lord +Lord +not +in +Your +name +did we prophesy +and +[in] +Your +name +demons +cast out +and +[in] +your +name +miracles +many +perform +And +then +I will declare +to them +- +Never +knew I +you +depart you +from +Me +those +working +- +lawlessness +therefore +Everyone +whoever +hears +My +- +words +these +and +does +them +will be like +a man +wise +who +built +his +- +house +upon +the +rock +And +came down +the +rain +and +came +the +torrents +and +blew +the +winds +and +beat +that +house +upon +and +not +it fell +for +it had been founded +upon +the +rock +And +everyone +- +hearing +My +- +words +these +and +not +doing +them +he will be likened +to a man +foolish +who +built +of him +the +house +upon +the +sand +And +came down +the +rain +and +came +the +torrents +and +blew +the +winds +and +beat +that +house +upon +and +it fell +and +was +the +fall +of it +great +And +it came to pass +when +had finished +- +Jesus +the +words +these +were astonished +the +crowds +at +the +teaching +of Him +for +He was +teaching +them +as +authority +having +and +not +as +the +scribes +of them +now +Having come down +He +from +the +mountain +followed +Him +crowds +great +And +behold +a leper +having come +was worshipping +Him +saying +Lord +if +You are willing +You are able +me +to cleanse +And +having stretched out +the +hand +He touched +him +saying +I am willing +be you cleansed +And +immediately +was cleansed +his +- +leprosy +And +says +to him +- +Jesus +See that +no one +you tell +But +go +yourself +show +to the +priest +and +offer +the +gift +that +commanded +Moses +for +a testimony +to them +now +Having entered +He +into +Capernaum +came +to Him +a centurion +imploring +Him +and +saying +Lord +the +servant +of me +is lying +in +the +house +paralyzed +grievously +tormented +He says +to him +I +having come +will heal +him +however +Answering +the +centurion +said +Lord +not +I am +worthy +that +under +of me +the +roof +You should come +but +only +speak +the word +and +will be healed +the +servant +of me +for +Also +I +am +a man +under +authority +having +under +me +soldiers +and +I say +to this [one] +Go +and +he goes +and +to another +Come +and +he comes +and +to +[the] servant +of me +Do +this +and +he does [it] +now +Having heard +- +Jesus +marveled +and +said +to those +following +Truly +I say +to you +except +no one +so great +faith +in +- +Israel +have I found +now +I say +to you +that +many +from +east +and +west +will come +and +will recline +with +Abraham +and +Isaac +and +Jacob +in +the +kingdom +of the +heavens +however +the +sons +of the +kingdom +will be cast out +into +the +darkness +the +outer +there +will be +the +weeping +and +the +gnashing +of the +teeth +And +said +- +Jesus +to the +centurion +Go +as +you have believed +be it +to you +And +was healed +the +servant +in +the +hour +that +And +- +Jesus +having come +to +the +house +of Peter +He saw +the +mother-in-law +of him +lying sick +and +fevering +And +He touched +the +hand +of her +and +left +her +the +fever +and +she arose +and +was ministering +to them +now +Evening +having come +they brought +to Him +being possessed with demons +many +and +He cast out +the +spirits +by a word +and +all +those +sick +being +He healed +so that +it might be fulfilled +that +having been spoken +by +Isaiah +the +prophet +saying +Himself +the +infirmities +of us +He took +and +our +diseases +bore +now +- +Jesus +Having seen +crowd +around +Him +He commanded +to depart +to +the +other side +And +having come to [him] +one +scribe +said +to Him +Teacher +I will follow +You +if +wherever +You might go +And +says +to him +- +Jesus +- +Foxes +holes +have +and +the +birds +of the +air +nests +but +- +the Son +- +of Man +no +has +[place] where +the +head +He might lay +now +Another +of the +disciples +said +to Him +Lord +allow +me +first +to go +and +to bury +the +father +of me +But +- +Jesus +said +to him +Follow +Me +and +leave +the +dead +to bury +- +their own +dead +And +having entered +He +into +the +boat +followed +Him +the +disciples +of Him +And +behold +a storm +great +arose +in +the +sea +so that +the +boat +was being swamped +by +the +waves +however +He Himself +was sleeping +And +having come to [Him] +they awoke +Him +saying +Lord +save us +we are perishing +And +He says +to them +Why +fearful +are you +O [you] of little faith +Then +having arisen +He rebuked +the +winds +and +the +sea +and +there was +a calm +great +And +- +the men +marveled +saying +What kind [of man] +is +this +that +even +the +winds +and +the +sea +Him +obey +And +having come +He +to +the +other side +to +the +region +of the +Gadarenes +met +Him +two +being possessed by demons +out of +the +tombs +coming forth +violent +extremely +so that +not +was able +anyone +to pass +by +the +way +that +And +behold +they cried out +saying +What +to us +and +to you +Son +- +of God +Are You come +here +before [the] +time +to torment +us +now +There was +far off +from +them +a herd +of pigs +many +feeding +And +- +the demons +were begging +Him +saying +If +You cast out +us +send away +us +into +the +herd +- +of pigs +And +He said +to them +Go +And +- +having gone out +they went away +into +the +pigs +and +behold +rushed +all +the +herd +down +the +steep bank +into +the +sea +and +perished +in +the +waters +now +Those +feeding [them] +fled +and +having gone away +into +the +city +they related +everything +including +the [matter] +of those +being possessed by demons +And +behold +all +the +city +went out +to +meet +- +Jesus +And +having seen +Him +they begged [Him] +that +He would depart +from +the +region +of them +And +having entered +into +a boat +He passed over +and +came +to +the +own +city +And +behold +they were bringing +to Him +a paralytic +on +a bed +lying +And +- +Jesus +having seen +the +faith +of them +He said +to the +paralytic +Take courage +son +have been forgiven +of you +the +sins +And +behold +some +of the +scribes +said +to +themselves +This [man] +blasphemes +And +- +Jesus +having known +the +thoughts +of them +He said +So that +why +think you +evil +in +the +hearts +of you +for +Which +is +easier +to say +Are forgiven +of you +the +sins +or +to say +Arise +and +walk +however +So that +you may know +that +authority +has +the +Son +- +of Man +on +the +earth +to forgive +sins +Then +He says +to the +paralytic +Having arisen +take up +your +- +mat +and +go +to +the +house +of you +And +having arisen +he went away +to +the +house +of him +now +Having seen +the +crowds +marveled +and +glorified +- +God +the [One] +having given +authority +such +- +to men +And +passing on +from there +- +Jesus +He saw +a man +sitting +at +the +tax booth +Matthew +named +And +He says +to him +Follow +Me +And +having arisen +he followed +Him +And +it came to pass +of Him +reclining +in +the +house +that +behold +many +tax collectors +and +sinners +having come +were reclining with +- +Jesus +and +the +disciples +of Him +And +having seen [it] +the +Pharisees +said +to +disciples +of Him +Because of +why +with +the +tax collectors +and +sinners +eats +the +Teacher +of you +And +- +having heard +He said +Not +need +of a physician +have +those +being strong +but +those +sick +being +however +Having gone +learn +what +is +Mercy +I desire +and +not +sacrifice +for +Not +I came +to call +[the] righteous +but +sinners +Then +come +to Him +the +disciples +of John +saying +Because of +why +we +and +the +Pharisees +do fast +however +the +disciples +of You +not +fast +And +said +to them +- +Jesus +Not +can +the +sons +of the +bridechamber +mourn +as +long as +with +them +is +the +bridegroom +however +Will come +days +when +shall have been taken away +from +them +the +bridegroom +and +then +they will fast +however +No one +puts +a patch +of cloth +unshrunk +on +clothing +old +for +tears away +the +patch +of it +from +the +garment +and +a worse +tear +emerges +Nor +pour they +wine +new +into +wineskins +old +now +if +lest +are burst +the +wineskins +and +the +wine +is poured out +and +the +wineskins +are destroyed +But +they pour +wine +new +into +wineskins +new +and +both +are preserved +These things +of Him +speaking +to them +behold +a ruler +certain +having come +was kneeling down +to Him +saying +- +The +daughter +of Me +presently +has died +but +having come +lay +the +hand +of You +upon +her +and +she will live +And +having arisen +- +Jesus +followed +him +also +the +disciples +of Him +And +behold +a woman +having had a flux of blood +twelve +years +having come up +behind [Him] +touched +the +fringe +of the +garment +of Him +for +She was saying +within +herself +If +only +I shall touch +the +garment +of Him +I will be healed +And +- +Jesus +having turned +and +having seen +her +said +Take courage +daughter +the +faith +of you +has cured +you +And +was cured +the +woman +from +the +hour +very +And +- +Jesus +having come +into +the +house +of the +ruler +and +having seen +the +flute players +and +the +crowd +making a commotion +He says +Go away +for +Not +is dead +the +girl +but +sleeps +And +they began to laugh at +Him +now +When +had been put outside +the +crowd +having entered +He took hold of +the +hand +of her +and +arose +the +girl +And +went out +the +report +this +into +all +the +land +that +And +passing on +from there +- +Jesus +followed +two +blind [men] +crying out +and +saying +Have mercy on +us +Son +of David +now +Having come +into +the +house +came +to Him +the +blind [men] +and +says +to them +- +Jesus +Believe you +that +I am able +this +to do +They say +to him +Yes +Lord +Then +He touched +the +eyes +of them +saying +According to +the +faith +of you +be it +to you +And +were opened +their +- +eyes +And +strictly instructed +them +- +Jesus +saying +See that +no one +knows +But +- +having gone out +they make known +Him +in +all +the +land +that +now +[As] they +were going out +behold +they brought +to Him +mute +possessed by a demon +And +having been cast out +the +demon +spoke +the +mute [man] +And +marveled +the +crowds +saying +Never +was it seen +thus +in +- +Israel +now +The +Pharisees +were saying +By +the +prince +of the +demons +He casts out +- +demons +And +was going throughout +- +Jesus +the +cities +all +and +the +villages +teaching +in +the +synagogues +of them +and +proclaiming +the +gospel +of the +kingdom +and +healing +every +disease +and +every +sickness +now +Having seen +the +crowds +He was moved with compassion +for +them +because +they were +wearied +and +cast away +as +sheep +not +having +a shepherd +Then +He says +to the +disciples +of Him +indeed +The +harvest +[is] plentiful +however +the +workmen +[are] few +therefore +Beseech +the +Lord +of the +harvest +that +He might send out +workmen +into +the +harvest +of Him +And +having summoned +the +twelve +disciples +of Him +He gave +to them +authority +over spirits +unclean +so as +to cast out +them +and +to heal +every +disease +and +every +sickness +And +- +of the twelve +apostles +the +names +are +these +first +Simon +- +called +Peter +and +Andrew +the +brother +of him +and +James +the [son] +of +Zebedee +and +John +the +brother +of him +Philip +and +Bartholomew +Thomas +and +Matthew +the +tax collector +James +the [son] +- +of Alphaeus +and +Thaddaeus +Simon +the +Zealot +and +Judas +- +Iscariot +the [one] +also +having betrayed +Him +These +- +twelve +sent forth +- +Jesus +having instructed +them +saying +Into +[the] way +of the Gentiles +not +go off +and +into +any city +of [the] Samaritans +not +enter +however +go +rather +to +those +sheep +- +being lost +of [the] house +of Israel +also +Going on +proclaim +saying +- +Has drawn near +The +kingdom +of the +heavens +[Those] ailing +heal +dead +raise +lepers +cleanse +demons +cast out +freely +you received +freely +give +Neither +take along +gold +nor +silver +nor +copper +in +the +belts +of you +nor +provision-bag +for +[the] way +nor +two +tunics +nor +sandals +nor +a staff +for +worthy [is] +the +workman +of the +provisions +of him +now +- +Into +whatever +city +or +village +you enter +inquire +who +in +it +worthy +is +and there +remain +until +- +you go forth +now +Entering +into +the +house +greet +it +And +indeed +if +be +the +house +worthy +let come +the +peace +of you +upon +it +however +if +not +it be +worthy +the +peace +of you +to +you +let return +And +- +whoever +not +will receive +you +nor +will hear +the +words +of you +going forth +out +of the +house +or +of the +city +that +shake off +the +dust +of the +feet +of you +Truly +I say +to you +More tolerable +it will be +for [the] land +of Sodom +and +of Gomorrah +on +day +of judgment +than +the +city +for that +Behold +I +send forth +you +as +sheep +in +[the] midst +of wolves +therefore +be you +shrewd +as +the +serpents +and +innocent +as +the +doves +however +Beware +of +- +men +for +they will deliver +you +into +courts +and +in +the +synagogues +of them +they will flog +you +also +and +before +governors +and +kings +you will be brought +on account of +Me +for +a testimony +to them +and +to the +Gentiles +then +When +they deliver up +you +not +be anxious +how +or +what +you should speak +for +it will be given +you +in +that +- +hour +what +you should say +for +Not +you +are +those +speaking +but +the +Spirit +of the +Father +of you +- +speaking +through +you +now +Will deliver up +brother +brother +to +death +and +father +child +And +will rise up +children +against +parents +and +will put to death +them +And +you will be +hated +by +all +on account of +the +name +of Me +however +the [one] +having endured +to +[the] end +he +will be saved +then +Whenever +they persecute +you +in +the +city +one +flee +to +the +next +for +Truly +I say +to you +no +not +shall you have completed +the +cities +of +Israel +until +be come +the +Son +of +Man +Not +is +a disciple +above +the +teacher +nor +a servant +above +the +master +of him +[It is] sufficient +for the +disciple +that +he become +as +the +teacher +of him +and +the +servant +as +the +master +of him +If +the +master of the house +Beelzebul +they called +how much +more +those +house members +of him +therefore +Not +you should fear +them +for +nothing +is +concealed +which +not +will be revealed +or +hidden +which +not +will be known +What +I tell +you +in +the +darkness +speak +in +the +light +and +what +in +the +ear +you hear +proclaim +upon +the +housetops +And +not +you should be afraid +of +those +killing +the +body +however +not +being able +the +soul +to kill +however +you should fear +rather +the [One] +being able +both +soul +and +body +to destroy +in +hell +Not +two +sparrows +for an assarion +are sold +And +one +of +them +not +will fall +to +the +ground +apart from +the +Father +of you +now +even +Of you +the +hairs +of the +head +all +numbered +are +therefore +Not +you should fear +than many +sparrows +are worth more +you +therefore +Everyone +who +will confess +in +Me +before +- +men +will confess +also I +in +him +before +the +Father +of Me +who [is] +in +the +heavens +now +- +Whoever +shall deny +Me +before +- +men +will deny +I also +him +before +the +Father +of Me +who [is] +in +the +heavens +Not +think +that +I came +to bring +peace +to +the +earth +not +I came +to bring +peace +but +a sword +for +I came +to set at variance +A man +against +the +father +of him +and +a daughter +against +the +mother +of her +and +a daughter-in-law +against +the +mother-in-law +of her +And +enemies +of the +man +the +household +of him +The [one] +loving +father +or +mother +above +Me +not +is +of Me +worthy +and +the [one] +loving +son +or +daughter +above +Me +not +is +of Me +worthy +And +he who +not +takes +the +cross +of him +and +follows +after +Me +not +is +of Me +worthy +The [one] +having found +the +life +of him +will lose +it +and +the [one] +having lost +the +life +of him +on account of +Me +will find +it +The [One] +receiving +you +Me +receives +and +the [one] +Me +receiving +receives +the [One] +having sent +Me +The [one] +receiving +a prophet +in [the] +name +of a prophet +[the] reward +of a prophet +will receive +and +the [one] +receiving +a righteous [man] +in [the] +name +of a righteous [man] +the reward +of a righteous [man] +will receive +And +- +whoever +shall give to drink +one +the +little ones +of these +a cup +of cold [water] +only +in [the] +name +of a disciple +truly +I say +to you +no +not +shall he lose +the +reward +of him +And +it came to pass +when +had finished +- +Jesus +commanding +the +twelve +disciples +of Him +He departed +from there +- +to teach +and +to preach +in +the +cities +of them +And +- +John +having heard +in +the +prison +the +works +of the +Christ +having sent +two +of the +disciples +of him +said +to Him +You +are +the +coming [One] +or +another +are we to look for +And +answering +- +Jesus +said +to them +Having gone +relate +to John +what +you hear +and +see +Blind +receive sight +and +lame +walk +lepers +are cleansed +and +deaf +hear +and +dead +are raised +and +poor +are gospelized +And +blessed +is +if +he who +not +shall fall away +in +Me +now +As these +were going away +began +- +Jesus +to speak +to the +crowds +concerning +John +What +to see +went you out +into +the +wilderness +A reed +by [the] +wind +shaken +But +what +to see +did you go out +A man +in +delicate [clothing] +having been dressed +Behold +those +- +delicate [clothing] +wearing +in +the +houses +- +of kings +But +what +did you go out +a prophet +to see +Yes +I say +to you +and [one] +more excellent +than a prophet +For this +is [he] +concerning +whom +it has been written +Behold +I +send +the +messenger +of Me +before +[the] face +of You +who +will prepare +the +way +of You +before +You +Truly +I say +to you +not +there has risen +among [those] +born +of women +one greater +than John +the +Baptist +Yet +- +the least +in +the +kingdom +of the +heavens +greater +than he +is +then +From +the +days +of John +the +Baptist +until +now +the +kingdom +of the +heavens +is taken by violence +and [the] +violent +claim +it +for +All +the +prophets +and +the +law +until +John +prophesied +And +if +you are willing +to receive [it] +he +is +Elijah +the one +being about +to come +The [one] +having +ears +let him hear +however +To what +will I compare +the +generation +this +Like +it is +little children +sitting +in +the +markets +and +calling out +- +to others +saying +We piped +for you +and +not +you did dance +we sang a dirge +and +not +you did wail +for +Came +John +neither +eating +nor +drinking +and +they say +A demon +he has +Came +the +Son +- +of Man +eating +and +drinking +and +they say +Behold +a man +a glutton +and +a drunkard +a friend +of tax collectors +and +of sinners +But +is justified +- +wisdom +by +the +deeds +of her +Then +He began +to denounce +the +cities +in +which +had taken place +the +most +miracles +of Him +because +not +they repented +Woe +to you +Chorazin +Woe +to you +Bethsaida +For +if +in +Tyre +and +Sidon +had taken place +the +miracles +- +having come to pass +in +you +then +long ago +in +sackcloth +and +ashes +they would have repented +But +I say +to you +for Tyre +and +Sidon +more tolerable +will it be +in +[the] day +of judgment +than +for you +And +Capernaum +not +you +to +heaven +will be exalted +to +Hades +will be brought down +For +if +in +Sodom +had taken place +the +miracles +- +having taken place +in +you +- +it would have remained +until +the +day +But +I say +to you +that +for [the] land +of Sodom +more tolerable +will it be +in +day +of judgment +than +for you +At +that +- +time +answering +- +Jesus +said +I fully consent +to You +Father +Lord +of the +heaven +and +the +earth +that +You did hide +these things +from +wise +and +learned +and +did reveal +them +to little children +Yes +- +Father +for +thus +well-pleasing +it was +before +You +All things +to Me +have been delivered +by +the +Father +of Me +And +no one +knows +the +Son +if +not +the +Father +nor +the +Father +anyone +does know +if +not +the +Son +and +if +to whom +to reveal [Him] +might choose +the +Son +Come +to +Me +all +those +toiling +and +being burdened +and I +will give rest +to you +Take +the +yoke +of Me +upon +you +and +learn +from +Me +for +I am +gentle +and +humble +[in] the +heart +and +you will find +rest +[for] the +souls +of you +for +The +yoke +of Me +[is] easy +and +the +burden +of Me +light +is +At +that +- +time +went +- +Jesus +on the +Sabbaths +through +the +grainfields +and +- +the disciples +of Him +were hungry +and +they began +to pluck [the] +heads of grain +and +to eat +And +- +the Pharisees +having seen +said +to Him +Behold +the +disciples +of You +are doing +what +to do +not +it is lawful +on +Sabbath +And +- +He said +to them +Not +you have read +what +did +David +when +he was hungry +and +those +with +him +how +he entered +into +the +house +- +of God +and +the +loaves +of the +presentation +they ate +which +to eat +not +lawful +it was +for him +nor +for those +with +him +if +not +for the +priests +only +Or +not +have you read +in +the +law +that +on the +Sabbath +the +priests +in +the +temple +the +Sabbath +profane +and +guiltless +are +however +I say +to you +that +the +temple +a greater than +is +here +however +If +you had known +what +is +Mercy +I desire +and +not +sacrifice +- +not +you would have condemned +the +guiltless +for +is +Lord +of the +Sabbath +the +Son +of +Man +And +having departed +from there +He went +into +the +synagogue +of them +And +behold +a man +a hand +having +withered +And +they asked +Him +saying +Is +it lawful +on the +Sabbaths +to heal +so that +they might accuse +Him +And +- +He said +to them +What +will there be +among +you +man +who +will have +sheep +one +and +if +falls +it +on the +Sabbaths +into +a pit +not +will he take hold of +it +and +will raise [it] up +therefore +How much +is more valuable +a man +than a sheep +Therefore +it is lawful +on the +Sabbaths +good +to do +Then +He says +to +[the] man +Stretch out +your +- +hand +And +he stretched [it] out +and +it was restored +sound +as +the +other +now +Having gone out +the +Pharisees +a counsel +held +against +Him +how +Him +they might destroy +And +- +Jesus +having known +withdrew +from there +And +followed +Him +great +and +He healed +them +all +and +He warned +them +that +not +known +Him +they should make +so that +might be fulfilled +that +having been spoken +by +Isaiah +the +prophet +saying +Behold +the +servant +of Me +whom +I have chosen +the +beloved +of Me +whom +has found delight +the +soul +of Me +I will put +the +Spirit +of Me +upon +Him +and +justice +to the +Gentiles +He will proclaim +Not +will He quarrel +nor +will he cry out +nor +will hear +anyone +in +the +streets +the +voice +of Him +A reed +bruised +not +He will break +and +a wick +smoldering +not +He will quench +until +- +He leads +to +victory +- +justice +And +in the +name +of Him +[the] Gentiles +will hope +Then +was brought +to Him +[one] possessed by a demon +blind +and +mute +and +He healed +him +in order for +the +mute [man] +to speak +and +to see +And +were amazed +all +the +crowds +and +were saying +Whether +this +is +the +son +of David +And +- +the Pharisees +having heard +said +This [man] +not +casts out +the +demons +if +not +by +- +Beelzebul +prince +of the +demons +now +Having known +the +thoughts +of them +He said +to them +Every +kingdom +having been divided +against +itself +is brought to desolation +and +every +city +or +house +having been divided +against +itself +not +will stand +And +if +- +Satan +- +Satan +casts out +against +himself +he is divided +then +How +will stand +the +kingdom +of him +And +if +I +by +Beelzebul +cast out +- +demons +the +sons +of you +by +whom +do they cast out +On account of +this +they +judges +of you +will be +however +If +by [the] +Spirit +of God +I +cast out +- +demons +then +has come +upon +you +the +kingdom +- +of God +Or +how +is able +anyone +to enter +into +the +house +of the +strong [man] +and +the +goods +of him +to plunder +if +not +first +he bind +the +strong [man] +And +then +the +house +of him +he will plunder +The [one] +not +being +with +Me +against +Me +is +and +the [one] +not +gathering +with +Me +scatters +Because of +this +I say +to you +every +sin +and +blasphemy +will be forgiven +- +men +however +- +against +[the] Spirit +blasphemy +not +will be forgiven +And +if +whoever +speaks +a word +against +the +Son +- +of Man +it will be forgiven +him +now +- +whoever +speaks +against +- +Spirit +the +Holy +not +it will be forgiven +him +neither +in +this +- +age +nor +in +the +coming [one] +Either +make +the +tree +good +and +the +fruit +of it +good +or +make +the +tree +bad +and +the +fruit +of it +bad +for +by +the +fruit +the +tree +is known +Offspring +of vipers +how +are you able +good things +to speak +evil +being +for +Out of +the +abundance +of the +heart +the +mouth +speaks +The +good +man +out of +his +good +treasure +puts forth +good things +and +the +evil +man +out of +his +evil +treasure +puts forth +evil things +now +I say +to you +that +every +word +careless +that +will speak +- +men +they will give +of +it +an account +in +day +of judgment +for +By +the +words +of you +you will be justified +and +by +the +words +of you +you will be condemned +Then +answered +him +some +of the +scribes +and +Pharisees +saying +Teacher +we wish +from +You +a sign +to see +And +- +answering +He said +to them +A generation +evil +and +adulterous +a sign +seeks for +and +a sign +not +will be given +to it +if +not +the +sign +of Jonah +the +prophet +for +Just as +was +Jonah +in +the +belly +of the +great fish +three +days +and +three +nights +so +will be +the +Son +- +of Man +in +the +heart +of the +earth +three +days +and +three +nights +The men +of Nineveh +will stand up +in +the +judgment +with +the +generation +this +and +will condemn +it +for +they repented +at +the +preaching +of Jonah +and +behold +greater +than Jonah +here +The queen +of [the] south +will rise up +in +the +judgment +with +the +generation +this +and +will condemn +it +for +she came +from +the +ends +of the +earth +to hear +the +wisdom +of Solomon +and +behold +greater +than Solomon +here +now +When +the +unclean +spirit +is gone out +from +the +man +it passes +through +waterless +places +seeking +rest +and +none +finds [it] +Then +it says +To +the +house +of me +I will return +from where +I came out +And +having come +it finds [it] +being unoccupied +and +swept +and +put in order +Then +it goes +and +takes +with +itself +seven +other +spirits +more evil +than itself +and +having entered in +they dwell +there +and +becomes +the +last +of the +man +that +worse +than the +first +So +it will be +also +unto +generation +this +the +evil +While +He +was speaking +to the +crowds +behold +the +mother +and +the +brothers +of Him +were standing +outside +seeking +to Him +to speak +now +Said +someone +to Him +Behold +the +mother +of You +and +the +brothers +of you +outside +are standing +seeking +to You +to speak +And +- +answering +He said +to the [one] +telling +Him +Who +is +the +mother +of Me +and +who +are +the +brothers +of Me +And +having stretched out +the +hand +of Him +to +the +disciples +of Him +He said +Behold +the +mother +of Me +and +the +brothers +of Me +for +- +Whoever +shall do +the +will +the +Father +of Me +who [is] +in +[the] heavens +he +My +brother +and +sister +and +mother +is +In +the +day +that +- +Jesus +having gone forth +[from] the +house +was sitting +by +the +sea +And +were gathered together +to +Him +crowds +great +so that +He +into +a boat +having entered +sat down +and +all +the +crowd +on +the +shore +stood +And +He spoke +to them +many things +in +parables +saying +Behold +went out +the [one] +sowing +- +to sow +And +in +- +sowing +of him +indeed +some +fell +along +the +road +and +having come +the +birds +devoured +them +now +Other +fell +upon +the +rocky places +where +not +it had +soil +much +and +immediately +it sprang up +through +- +not +having +depth +of soil +now +[the] sun +having risen +they were scorched +and +through +the +not +having +root +were dried up +now +Other +fell +upon +the +thorns +and +grew up +the +thorns +and +choked +them +now +Other +fell +upon +the +soil +- +good +and +were yielding +fruit +indeed +some +a hundredfold +now +some +sixty +now +some +thirty +The [one] +having +ears +let him hear +And +having come to [Him] +the +disciples +said +to Him +Because of +why +in +parables +speak You +to them +And +- +answering +He said +Because +to you +it has been granted +to know +the +mysteries +of the +kingdom +of the +heavens +however +to them +not +it has been granted +for +Whoever +has +will be given +to him +and +he will be in abundance +now +whoever +not +has +even +what +he has +will be taken away +from +him +Because of +this +in +parables +to them +I speak +Because +seeing +not +do they see +and +hearing +not +do they hear +nor +do they understand +And +is fulfilled +in them +the +prophecy +of Isaiah +- +saying +In hearing +you will hear +and +no +not +understand +and +seeing +you will see +and +no +not +perceive +for +Has grown dull +the +heart +of the +people +this +and +with the +ears +barely +they have heard +and +the +eyes +of them +they have closed +not +lest +they should see +with the +eyes +and +with the +ears +they should hear +and +with the +heart +they should understand +and +should return +and +I will heal +them +however +blessed +Of you +[are] the +eyes +because +they see +and +the +ears +of you +because +they hear +for +Truly +I say +to you +that +many +prophets +and +righteous [men] +longed +to see +what +you see +and +not +saw +and +to hear +what +you hear +and +not +heard +therefore +You +hear +the +parable +of the [one] +having sown +Everyone +hearing +the +word +of the +kingdom +and +not +understanding +comes +the +evil one +and +snatches away +that +having been sown +in +the +heart +of him +This +is +the [one] +on +the +path +having been sown +now +That which +upon +the +rocky places +having been sown +this +is +the [one] +the +word +hearing +and +immediately +with +joy +receiving +it +now +no +he has +root +in +himself +but +temporary +is +however +having come +tribulation +or +persecution +on account of +the +word +immediately +he falls away +now +That which +among +the +thorns +having been sown +this +is +the [one] +the +word +hearing +and +the +care +- +present age +and +the +deceit +- +of riches +choke +the +word +and +unfruitful +it becomes +however +That +on +the +good +soil +having been sown +this +is +the [one] +the +word +hearing +and +understanding +indeed +who +brings forth fruit +and +indeed +produces +some +a hundredfold +now +some +sixty +now +some +thirty +Another +parable +put He before +them +saying +Has become like +the +kingdom +of the +heavens +a man +having sown +good +seed +in +the +field +of him +now +In +the [time] +are sleeping +the +men +came +his +- +enemy +and +sowed +weeds +in [the] +midst +of the +wheat +and +went away +now +When +sprouted +the +plants +and +fruit +produced +then +appeared +also +the +weeds +now +Having come to [him] +the +servants +the +master of the house +said +to him +Sir +not +good +seed +did you sow +in +- +your +field +then +How +has it +the weeds +And +- +he said +to them +An enemy +a man +this +did +And +- +the servants +to him +said +then +Do you desire +[that] having gone forth +we should gather +them +And +- +he said +No +not +lest +gathering +the +weeds +you would uproot +with +them +the +wheat +Allow +to grow together +both +until +the +harvest +and +in +the time +of the +harvest +I will say +to the +harvesters +Gather +first +the +weeds +and +bind +them +into +bundles +in order +- +to burn +them +and +- +the wheat +gather together +into +the +barn +of me +Another +parable +put He before +them +saying +Like +is +the +kingdom +of the +heavens +to a grain +of mustard +which +having taken +a man +sowed +in +the +field +of him +indeed +which +smallest +is +of all +the +seeds +however +when +it is grown +greater +than the +garden plants +it is +and +becomes +a tree +so that +come +the +birds +of the +air +and +perch +in +the +branches +of it +Another +parable +spoke He +to them +Like +is +the +kingdom +of the +heavens +to leaven +which +having taken +a woman +hid +in +of flour +measures +three +until +of it +was leavened +all +These things +all +spoke +- +Jesus +in +parables +to the +crowds +and +without +a parable +not +He was speaking +to them +so that +might be fulfilled +that +having been spoken +by +the +prophet +saying +I will open +in +parables +the +mouth +of Me +I will utter +things hidden +from +[the] foundation +Then +having dismissed +the +crowds +He went +into +the +house +And +came +to Him +the +disciples +of Him +saying +Explain +to us +the +parable +of the +weeds +of the +field +And +- +answering +He said +The [One] +sowing +the +good +seed +is +the +Son +- +of Man +and +- +the field +is +the +world +and +- +the good +seed +these +are +the +sons +of the +kingdom +and +- +the weeds +are +the +sons +of the +evil [one] +and +- +the enemy +- +having sown +them +is +the +devil +and +- +the harvest +[the] consummation +of the age +is +and +- +the harvesters +angels +are +therefore +As +is gathered +the +weeds +and +in fire +is consumed +thus +it will be +in +the +consummation +of the +age +Will send forth +the +Son +- +of Man +the +angels +of Him +and +they will gather +out of +the +kingdom +of Him +all +the +causes of sin +and +those +practicing +- +lawlessness +and +they will cast +them +into +the +furnace +of the +fire +there +will be +the +weeping +and +the +gnashing +of +teeth +Then +the +righteous +will shine forth +in +the +kingdom +of the +Father +of them +as +the +sun +The [one] +having +ears +let him hear +Like +is +the +kingdom +of the +heavens +treasure +having been hidden +in +the +field +which +having found +a man +hid +and +for +the +joy +of it +goes +and +he sells +that +he has +and +buys +the +field +that +Again +like +is +the +kingdom +of the +heavens +a merchant +seeking +fine +pearls +now +having found +one +very precious +pearl +having gone away +he has sold +all things +as many as +he had +and +bought +it +Again +like +is +the +kingdom +of the +heavens +a dragnet +having been cast +into +the +sea +and +of +every +kind +having gathered together +which +when +it was filled +having drawn up +on +the +shore +and +having sat down +they collected +the +good +into +vessels +and +the +bad +out +they cast +Thus +will it be +in +the +consummation +of the +age +will go out +the +angels +and +will separate +the +evil +from +[the] midst +of the +righteous +and +will cast +them +into +the +furnace +of the +fire +There +will be +the +weeping +and +the +gnashing +of the +teeth +Have you understood +these things +all +They say +to Him +Yes +And +- +He said +to them +Because of +this +every +scribe +having been discipled +into the +kingdom +of the +heavens +like +is +a man +a master of a house +who +puts forth +out of +the +treasure +of him +[things] new +and +old +And +it came to pass +when +had finished +- +Jesus +the +parables +these +He withdrew +from there +And +having come +into +the +region +His [own] +He was teaching +them +in +the +synagogue +of them +so that +are astonished +they +and +are saying +From where +to this [man] +the +wisdom +this +and +the +miraculous powers +Not +this +is +the +of the +carpenter +Son +[Is] not +the +mother +of Him +called +Mary +And +the +brothers +of Him +James +and +Joseph +and +Simon +and +Judas +And +the +sisters +of Him +not +all +with +us +are +then +From where +to this [man] +these things +all +And +they were offended +at +Him +But +- +Jesus +said +to them +Not +is +a prophet +without Honor +if +not +in +the +hometown +and +in +the +household +of him +And +not +He did +there +miracles +many +because of +the +unbelief +of them +At +that +- +time +heard +Herod +the +tetrarch +the +news +of Jesus +and +he said +to +[the] servants +of him +This +is +John +the +Baptist +he +is risen +from +the +dead +and +because of +this +the +miraculous powers +are working +in +him +For +- +Herod +having seized +- +John +he bound +and +in +prison +put [him] +on account of +Herodias +the +wife +of Philip +the +brother +of him +for +Had been saying +- +John +to him +Not +it is lawful +for you +to have +her +Although +wishing +him +to kill +he feared +the +multitude +because +as +a prophet +him +they were holding +now +[The] birthday +- +of Herod +having been celebrated +danced +the +daughter +- +of Herodias +in +the +midst +and +pleased +- +Herod +whereupon +with +oath +he promised +to her +to give +if +whatever +she should ask +And +- +having been urged on +by +the +mother +of her +she says +Give +me +here +upon +a platter +the +head +of John +the +Baptist +And +having been grieved +the +king +on account of +the +oaths +and +those +reclining with [him] +he commanded [it] +to be given +And +he having sent +beheaded +John +in +the +prison +And +was brought +the +head +of him +on +a platter +and +was given +to the +girl +and +she brought [it] +to +[the] mother +of her +And +having come +the +disciples +of him +took +the +body +and +buried +it +and +having come +they told +- +Jesus +now +Having heard +- +Jesus +withdrew +from there +by +boat +to +a secluded +place +apart +Himself +And +having heard [of it] +the +crowds +followed +Him +on foot +from +the +towns +And +having gone out +He saw +great +a crowd +and +was moved with compassion +toward +them +and +healed +the +sick +of them +now +Evening +having come +came +to Him +the +disciples +saying +Desolate +is +this +place +and +the +time +already +is gone by +therefore +Dismiss +the +crowds +that +having gone +into +the +villages +they might buy +for themselves +food +And +- +Jesus +said +to them +No +need +they have +to go away +Give +to them +you +to eat +And +- +they say +to Him +Not +we have +here +if +not +five +loaves +and +two +fish +And +- +He said +Bring +to Me +here +them +And +having commanded +the +crowds +to sit down +on +the +grass +having taken +the +five +loaves +and +the +two +fish +having looked up +to +- +heaven +He spoke a blessing +and +having broken +He gave +to the +disciples +the +loaves +and +- +the disciples +to the +crowds +And +ate +all +and +were satisfied +and +they took up +that +being over and above +of the +fragments +twelve +hand-baskets +full +then +Those +eating +were +men +about +five thousand +besides +women +and +children +And +immediately +He compelled +the +disciples +to enter +into +the +boat +and +to go before +Him +to +the +other side +until +that +He would have dismissed +the +crowds +And +having dismissed +the +crowds +He went up +on +the +mountain +by +Himself +to pray +now +Evening +having arrived +alone +He was +there +And +- +the boat +now +stadia +many +from +the +land +being +tossed +by +the +waves +for +was +contrary [was] +the +wind +now +In [the] fourth +watch +of the +night +He went +to +them +walking +on +the +sea +And +- +the disciples +having seen +Him +on +the +sea +walking +were troubled +saying +- +A ghost +it is +And +in +- +fear +they cried out +now +Immediately +spoke +- +Jesus +to them +saying +Take courage +I +it is +not +fear +now +Answering +to Him +- +Peter +said +Lord +if +You +[it] is +command +me +to come +to +You +upon +the +waters +And +- +He said +Come +And +having descended +from +the +boat +Peter +walked +upon +the +water +and +came +to +- +Jesus +now +Seeing +the +wind +he was afraid +and +having begun +to sink +he cried out +saying +Lord +save +me +now +Immediately +- +Jesus +having stretched out +the +hand +took hold +of him +and +says +to him +[You] of little faith +of +why +did you doubt +And +having entered +they +into +the +boat +ceased +the +wind +then +Those +in +the +boat +worshiped +Him +saying +Truly +of God +Son +You are +And +having crossed over +they came +to +the +land +of +Gennesaret +And +having recognized +Him +the +men +the +place +of that +sent +to +all +the +surrounding region +that +and +brought +to Him +all +those +sick +being +and +they were begging +Him +that +only +they might touch +the +fringe +of the +garment +of Him +and +as many as +touched +were cured +Then +come +- +to Jesus +from +Jerusalem +Pharisees +and +scribes +saying +Because of +why +the +disciples +of You +break +the +tradition +of the +elders +for +Not +they wash +the +hands +when +bread +they shall eat +And +- +answering +He said +to them +Because of +why +also +you +break +the +commandment +- +of God +on account of +the +tradition +of you +For +- +God +commanded +Honor +the +Father +and +the +mother +and +The [one] +speaking evil of +father +or +mother +in death +must end +however +You +say +- +Whoever +shall say +to the +father +or +the +mother +[It is] a gift +if +whatever +by +me +you might be profited +no +not +he shall honor +the +father +of himself +or +the +mother +of himself +And +you made void +the +commandment +- +of God +on account of +the +tradition +of you +Hypocrites +Rightly +prophesied +concerning +you +Isaiah +saying +The +people +this +with the +lips +Me +it honors +however +the +heart +of them +far away +is kept +from +Me +then +in vain +they worship +Me +teaching [as] +doctrines +[the] precepts +of men +And +having called to [Him] +the +crowd +He said +to them +Hear +and +understand +Not +what +is entering +into +the +mouth +defiles +the +man +but +that +going forth +out of +the +mouth +this +defiles +the +man +Then +having come near +the +disciples +said +to Him +Know You +that +the +Pharisees +having heard +the +saying +were offended +And +- +answering +He said +Every +plant +that +not +has planted +the +Father +of Me +- +Heavenly +it will be rooted up +Leave +them +they are +Blind +guides +of the blind +now +if +Blind +blind +they lead +both +into +a pit +will fall +then +Answering +- +Peter +said +to Him +Explain +to us +the +parable +And +- +He said +Still +also +you +without understanding +are +Not yet +understand you +that +everything +- +entering +into +the +mouth +into +the +stomach +goes +and +into +[the] sewer +is cast out +however +The things +going forth +out of +the +mouth +out of +the +heart +come forth +and these +defile +the +man +for +Out of +the +heart +come forth +thoughts +evil +murders +adulteries +sexual immorality +thefts +false testimonies +slanders +These +are +the things +defiling +the +man +but +- +with unwashed +hands +to eat +not +defiles +the +man +And +having gone forth +from there +- +Jesus +withdrew +to +the +district +of Tyre +and +Sidon +And +behold +a woman +Canaanite +from +the +region +same +having approached +was crying out +saying +Have mercy on +me +Lord +Son +of David +the +daughter +of me +miserably +is possessed by a demon +And +- +not +He answered +her +a word +And +having come to [him] +the +disciples +of Him +were imploring +Him +saying +Dismiss +her +for +she cries out +after +us +And +- +answering +He said +Not +I was sent +if +not +to +the +sheep +- +being lost +of [the] house +of Israel +And +- +having come +she was worshiping +Him +saying +Lord +help +me +And +- +answering +He said +Not +it is +right +to take +the +bread +of the +children +and +to cast [it] +to the +dogs +And +- +she said +Yes +Lord +however +even +the +dogs +eat +of +the +crumbs +- +falling +from +the +table +of the +masters +of them +Then +answering +- +Jesus +said +to her +O +woman +great [is] +of you +the +faith +Be it +to you +as +you desire +And +was healed +the +daughter +of her +from +the +hour +that +And +having departed +from there +- +Jesus +went +along +the +Sea +- +of Galilee +and +having gone up +on +the +mountain +He was sitting +there +And +came +to Him +crowds +great +having +with +them +lame +crippled +blind +mute +and +others +many +and +they placed +them +at +the +feet +of Him +and +He healed +them +so that +the +crowd +marveled +seeing +mute +speaking +crippled +restored +and +lame +walking +and +blind +seeing +and +they glorified +the +God +of Israel +And +- +Jesus +having called to [him] +the +disciples +of Him +said +I am moved with compassion +toward +the +crowd +because +already +days +three +they continue +with Me +and +nothing +have +that +they might eat +and +to send away +them +hungry +not +I am willing +not +lest +they faint +on +the +way +And +say +to Him +the +disciples +From where +to us +in +a secluded place +loaves +so many +as +to satisfy +a crowd +so great +And +says +to them +- +Jesus +How many +loaves +have you +And +- +they said +Seven +and +a few +small fish +And +He having commanded +the +crowds +to sit down +on +the +ground +having taken +the +seven +loaves +and +the +fish +and +having given thanks +He broke [them] +and +was giving +to +disciples +and the +- +disciples +to the +crowd +And +ate +all +and +were satisfied +and +that +being over and above +of the +fragments +seven +baskets +full +they took up +then +Those +eating +were +four thousand +men +besides +women +and +children +And +having dismissed +the +crowds +He entered +into +the +boat +and +came +to +the +region +of Magadan +And +having approached +the +Pharisees +and +Sadducees +testing +asked +Him +a sign +out of +- +heaven +to show +them +And +- +answering +He said +to them +Evening +having come +you say +Fair weather +for +is red +the +sky +And +in the morning +Today +a storm +for +is red +being overcast +the +sky +indeed +The +appearance +of the +sky +to discern +you know [how] +but +- +the signs +of the +times +not +you are able +A generation +evil +and +adulterous +a sign +seeks +and +a sign +not +will be given +to it +if +not +the +sign +of Jonah +And +having left +them +He went away +And +the +disciples +having come +to +the +other side +they forgot +bread +to take +And +- +Jesus +said +to them +Watch +and +beware +of +the +leaven +of the +Pharisees +and +Sadducees +And +- +they were reasoning +among +themselves +saying +Because +bread +not +we took +however +Having known [this] +- +Jesus +said +Why +reason you +among +yourselves +O [you] of little faith +because +bread +not +you took +Not yet +do you understand +nor +remember +the +five +loaves +for the +five thousand +and +how many +hand-baskets +you gathered +Nor +the +seven +loaves +for the +four thousand +and +how many +baskets +you gathered +How +not +understand you +that +not +concerning +bread +I spoke +to you +also +to beware +of +the +leaven +of the +Pharisees +and +Sadducees +Then +they understood +that +not +He said +to beware +of +the +leaven +of +bread +but +of +the +teaching +of the +Pharisees +and +Sadducees +then +- +Jesus +Having come +into +the +district +of Caesarea +- +Philippi +He was questioning +the +disciples +of Him +saying +do pronounce +- +men +Whom +to be +the +Son +of +man +And +- +they said +indeed +Some +John +the +Baptist +now +others +Elijah +now +others +Jeremiah +or +one +of the +prophets +He says +to them +but +You +whom +Me +to be +do you pronounce +now +Answering +Simon +Peter +said +You +are +the +Christ +the +Son +of +God +the +living +now +Answering +- +Jesus +said +to him +Blessed +are you +Simon +Barjona +For +flesh +and +blood +not +revealed [it] +to you +but +the +Father +of Me +who [is] +in +the +heavens +now +I also +to you +say +that +you +are +Peter +and +on +this +the +rock +I will build +My +- +church +and +[the] gates +of hades +not +will prevail against +it +I will give +to you +the +keys +of the +kingdom +of the +heavens +and +if +whatever +you might bind +on +the +earth +will be +bound +in +the +heavens +and +if +whatever +you might loose +on +the +earth +will be +loosed +in +the +heavens +Then +instructed He +the +disciples +that +to no one +they should say +that +He +is +the +Christ +From +that time +began +Jesus +Christ +to show +to the +disciples +of Him +that +it is necessary for +Him +to +Jerusalem +to go away +and +many things +to suffer +from +the +elders +and +chief priests +and +scribes +and +to be killed +and +on the +third +day +to be raised +And +having taken aside +Him +- +Peter +began +to rebuke +Him +saying +Far be it +from You +Lord +never +not +will be +to You +this +And +- +having turned +He said +- +to Peter +Get +behind +Me +Satan +A stumbling block +to Me +you are +For +not +your thoughts are of +the things +- +of God +but +the +things +of men +Then +- +Jesus +said +to +disciples +of Him +If +anyone +desires +after +Me +to come +let him deny +himself +and +take up +the +cross +of him +and +follow +Me +for +if +Whoever +might desire +the +life +of him +to save +will lose +it +however +- +whoever +might lose +the +life +of him +on account of +Me +will find +it +for +What +will it profit +a man +if +the +world +whole +he gains +but +- +the soul +of him +loses +Or +what +will give +a man +[as] an exchange for +the +soul +of him +for +Is about +the +Son +of the +man +to come +in +the +glory +the +Father +of Him +with +the +angels +of Him +and +then +He will give +to each +according to +the +deeds +of him +Truly +I say +to you +- +there are +some +of those +here +standing +who +no +not +shall taste +of death +until +- +they have seen +the +Son +- +of Man +coming +in +the +kingdom +of Him +And +after +days +six +takes with [Him] +- +Jesus +- +Peter +and +James +and +John +the +brother +of him +and +brings up +them +into +a mountain +high +by +themselves +And +He was transfigured +before +them +and +shone +the +face +of Him +like +the +sun +and +- +the clothes +of Him +became +white +as +the +light +And +behold +appeared +to them +Moses +and +Elijah +talking +with +Him +now +Answering +- +Peter +said +- +to Jesus +Lord +good +it is +for us +here +to be +If +You wish +I will make +here +three +tabernacles +for You +one +and +for Moses +one +and +for Elijah +one +While yet +he +was speaking +behold +a cloud +bright +overshadowed +them +and +behold +a voice +out of +the +cloud +saying +This +is +the +Son +of Me +the +beloved +in +whom +I am well pleased +Listen +to Him +And +having heard [it] +the +disciples +fell +upon +face +of them +and +were terrified +greatly +And +having come to [them] +- +Jesus +and +having touched +them +He said +Rise up +and +not +be afraid +and +Having lifted up +the +eyes +of them +no one +they saw +if +not +Himself +Jesus +alone +And +[as] were descending +they +from +the +mountain +instructed +them +- +Jesus +saying +To no one +tell +the +vision +until +that +the +Son +- +of Man +out from +[the] dead +is risen +And +asked +Him +the +disciples +saying +then +Why +the +scribes +say +that +it behooves +Elijah +to come +first +And +- +answering +He said +indeed +Elijah +comes +and +will restore +all things +however +I say +to you +that +Elijah +already +is come +and +not +they knew +him +but +did +to +him +whatever +they desired +Thus +also +the +Son +- +of Man +is about +to suffer +from +them +Then +understood +the +disciples +that +concerning +John +the +Baptist +He spoke +to them +And +they having come +to +the +crowd +came +to Him +a man +kneeling down to +Him +and +saying +Lord +have mercy on +my +- +son +for +he is epileptic +and +miserably +suffers +for +often +he falls +into +the +fire +and +often +into +the +water +And +I brought +him +to the +disciples +of You +and +not +they were able +him +to heal +now +Answering +- +Jesus +said +O +generation +unbelieving +and +perverted +how long +when +with +you +will I be +How long +when +will I bear with +you +Bring +to Me +him +here +And +rebuked +him +- +Jesus +and +went out +from +him +the +demon +and +was healed +the +boy +from +the +hour +that +Then +the +disciples +having come +- +to Jesus +in +private +they said +Because of +why +we +not +were able +to cast out +it +And +- +He said +to them +Because of +the +little faith +of you +for +Truly +I say +to you +If +you have +faith +as +a seed +of mustard +you will say +to the +mountain +to this +Move +from here +to there +and +it will move +And +nothing +will be impossible +for you +now +Were abiding +they +in +- +Galilee +said +to them +- +Jesus +Is about +the +Son +- +of Man +to be betrayed +into +[the] hands +of men +and +they will kill +Him +and +on the +third +day +He will be raised up +And +they were grieved +deeply +now +Having come +they +to +Capernaum +came +those +the +didrachmas +collecting +- +to Peter +and +said +not +The +Teacher +of you +does he pay +didrachmas +He says +Yes +And +he having entered +into +the +house +anticipated +him +- +Jesus +saying +What +you +do think +Simon +The +kings +of the +earth +from +whom +do they receive +custom +or +tribute +From +the +sons +of them +or +from +- +strangers +now +He having said +From +the +strangers +said +to him +- +Jesus +Then +free +are +the +sons +however +That +not +we might offend +them +having gone +to +sea +cast +a hook +and +the +having come up +first +fish +take +and +having opened +the +mouth +of it +you will find +a four-drachma coin +That +having taken +give +to them +for +Me +and +yourself +In +that +- +hour +came +the +disciples +- +to Jesus +saying +then +Who +[the] greatest +is +in +the +kingdom +of the +heavens +And +having called to [Him] +a child +He set +it +in +midst +of them +and +said +Truly +I say +to you +if +not +you turn +and +become +as +the +little children +no +not +shall you enter +into +the +kingdom +of the +heavens +therefore +Whoever +will humble +himself +as +the +little child +this +he +is +the +greatest +in +the +kingdom +of the +heavens +And +if +whoever +shall receive +one +little child +such +in +the +name +of Me +Me +receives +then +- +Whoever +shall cause to stumble +one +of the +little ones +of these +- +believing +in +Me +it is better +for him +that +should be hung +a millstone +heavy +around +the +neck +of him +and +he be sunk +in +the +depth +of the +sea +Woe +to the +world +because of +the +causes of sin +for +Necessary [are] +to come +the +stumbling blocks +but +woe +to the +man +by +whom +the +offense +comes +now +If +the +hand +of you +or +the +foot +of you +causes to sin +you +cut off +it +and +cast [it] +from +you +better +for you +it is +to enter +into +- +life +crippled +or +lame +than +two +hands +or +two +feet +having +to be cast +into +the +fire +- +eternal +And +if +the +eye +of you +causes to sin +you +gouge out +it +and +cast [it] +from +you +better +for you +it is +one-eyed +into +- +life +to enter +than +two +eyes +having +to be cast +into +the +hell +of the +fire +See [that] +not +you despise +one +of the +little ones +of these +for +I say +to you +that +the +angels +of them +in +[the] heavens +continually +always +behold +the +face +of the +Father +of me +who [is] +in +[the] heavens +What +you +do think +If +there should be +to any +man +a hundred +sheep +and +has gone astray +one +of +them +not +will he leave +the +ninety +nine +on +the +mountains +and +having gone +seek +the [one] +going astray +And +if +he should +find +it +truly +I say +to you +that +he rejoices +over +it +more +than +over +the +ninety +nine +- +not +having gone astray +Thus +not +it is +[the] will +of +the +Father +of you +who [is] +in +[the] heavens +that +should perish +one +of the +little ones +of these +now +If +sins +the +brother +of you +go +reprove +him +between +you +and +him +alone +If +you +he will hear +you have gained +the +brother +of you +however +If +not +he will hear +take +with +you +more +one +or +two +that +upon +[the] testimony +of two +or +of three +witnesses +may be strengthened +every +word +now +If +he fails to listen +to them +tell [it] +to the +church +now +If +also +to the +church +he fails to listen +let him be +to you +as +the +pagan +and +the +tax collector +Truly +I say +to you +if +how many +you shall bind +on +the +earth +shall have been +bound +in +heaven +and +if +how many +you shall loose +on +the +earth +shall have been +loosed +in +heaven +truly +Again +I say +to you +that +if +two +of +you +might agree +on +the +earth +concerning +any +matter +if +that +they shall ask +it will be done +for them +by +the +Father +of Me +who [is] +in +[the] heavens +for +Where +are +gathered together +two +or +three +unto +- +My +name +there +am I +in +[the] midst +of them +Then +having come +- +Peter +said +to Him +Lord +how often +will sin +against +me +the +brother +of me +and +I will forgive +him +Up to +seven times +Says +to him +- +Jesus +Not +I say +to you +up to +seven times +but +up to +seventy times +seven +Because of +this +has become like +the +kingdom +of the +heavens +to a man +a king +who +desired +to settle +accounts +with +the +servants +of him +then +Having begun +he +to settle +was brought +to him +one +a debtor +of ten thousand +talents +now +Nothing +having +he +to pay +commanded +the +master +to be sold +him +and +the +wife +and +the +children +and +all +as many as +he had +and +payment to be made +therefore +Having fallen down +the +servant +was bowing on his knees +to him +saying +Have patience +with +me +and +all +I will pay +to you +now +Having been moved with compassion +the +master +of the +servant +that +released +him +and +the +debt +forgave +him +however +Having gone out +the +servant +same +found +one +the +fellow servants +of him +who +was owing +him +a hundred +denarii +and +having seized +him +he was throttling [him] +saying +Pay +if +any +you owe +therefore +Having fallen down +the +fellow servant +of him +was begging +him +saying +Have patience +with +me +and +I will pay +you +But +- +not +he was willing +rather +having gone +he cast +him +into +prison +until +he should pay +that which +was owing +therefore +the +fellow servants +of him +Having seen +the things +having taken place +they were grieved +deeply +and +having gone +narrated +to +master +of themselves +all +that +having taken place +Then +having called to +him +the +master +of him +says +to him +Servant +evil +all +the +debt +that +I forgave +you +because +you begged +me +Not +did it behoove +also +you +to have pitied +the +fellow servant +of you +as +also I +you +had pitied +And +having been angry +the +master +of him +delivered +him +to the +jailers +until +that +he should pay +all +- +being owed +to him +Thus +also +the +Father +of Me +- +Heavenly +will do +to you +if +not +you forgive +each +the +brother +of him +from +the +heart +of you +And +it came to pass +when +had finished +- +Jesus +the +words +these +He withdrew +from +- +Galilee +and +came +to +the +region +- +of Judea +beyond +the +Jordan +And +followed +Him +crowds +great +and +He healed +them +there +And +came +to Him +Pharisees +testing +Him +and +saying +If +is it lawful +to divorce +the +a wife +to him +for +every +cause +now +Which +answering +He said +Not +have you read +that +the [One] +having created +from [the] +beginning +male +and +female +made +them +and +said +On account of +this +will leave +a man +the +father +and +the +mother +and +be joined with +the +wife +of him +and +will become +the +two +into +flesh +one +so that +no longer +are they +two +but +flesh +one +therefore +What +- +God +united together +man +not +let separate +They say +to Him +then +Why +Moses +did command +to give +a roll +of divorce +and +to send away +He says +to them +- +Moses +in view of +the +hardness of heart +of you +allowed +you +to divorce +the +wives +of you +however +from [the] +beginning +not +was [it] +this way +now +I say +to you +that +- +whoever +shall divorce +- +wife +of him +except +for +sexual immorality +and +shall marry +another +commits adultery +Say +to Him +the +disciples +If +this +is +the +case +of the +man +with +the +wife +not +it is better +to marry +And +- +He said +to them +Not +all +receive +the +word +this +but only [those] +to whom +it has been given +for +There are +eunuchs +who +from [the] +womb +of [their] mother +were born +thus +and +there are +eunuchs +who +were made eunuchs +by +- +men +and +there are +eunuchs +who +made eunuchs of +themselves +for the sake of +the +kingdom +of the +heavens +The [one] +being able +to receive [it] +let him receive [it] +Then +were brought +to Him +little children +that +the +hands +He might lay +on them +and +He might pray +however +- +the disciples +rebuked +them +And +- +Jesus +said +Permit +the +little children +and +not +do forbid +them +to come +to +Me +for +of the +such kind +is +the +kingdom +of the +heavens +And +having laid +the +hands +upon them +He departed +from there +And +behold +one +having come +to Him +said +Teacher +what +good [thing] +shall I do +that +I might have +life +eternal +And +- +He said +to him +Why +Me +ask you +about +what is +good +Only One +is +- +good +however +If +you desire +into +- +life +to enter +keep +the +commandments +He says +to him +Which +And +- +Jesus +said +- +Not +shall you murder +not +shall you commit adultery +not +shall you steal +not +shall you bear false witness +you shall honor +the +father +and +the +mother +and +you shall love +- +neighbor +of you +as +yourself +Says +to him +the +young man +Things +all these +I have kept +What +yet +lack I +Was saying +to him +- +Jesus +If +you desire +perfect +to be +go +sell +of you +the +possessing +and +give +poor +and +you will have +treasure +in +[the] heavens +and +come +follow +Me +now +the +young man +Having heard +the +statement +he went away +grieving +for +he was [one] +having +possessions +many +And +- +Jesus +said +to the +disciples +of Him +Truly +I say +to you +that +a rich man +with difficulty +will enter +into +the +kingdom +of the +heavens +now +Again +I say +to you +easier for +[it] is +a camel +through [the] +eye +of a needle +to go +than +a rich man +into +the +kingdom +of +God +now +Having heard +the +disciples +were astonished +exceedingly +saying +then +Who +is able +to be saved +now +Having looked on [them] +- +Jesus +said +to them +With +men +this +impossible +is +however +with +God +all things [are] +possible +Then +answering +- +Peter +said +to Him +Behold +we +left +all things +and +followed +You +then +what +will be +to us +And +- +Jesus +said +to them +Truly +I say +to you +that +you +- +having followed +Me +in +the +regeneration +when +shall sit down +the +Son +- +of Man +upon +[the] throne +of glory +of Him +will sit +also +you +on +twelve +thrones +judging +the +twelve +tribes +- +of Israel +And +everyone +who +has left +houses +or +brothers +or +sisters +or +father +or +mother +or +children +or +lands +for the sake of +- +My +name +a hundredfold +will receive +and +life +eternal +will inherit +however +Many +first +will be +last +and +last +first +for +Like +is +the +kingdom +of the +heavens +to a man +a master of a house +who +went out +in [the] +morning +to hire +workmen +for +the +vineyard +of him +then +Having agreed +with +the +workmen +for +a denarius +for the +day +he sent +them +into +the +vineyard +of him +And +having gone out +about +the third +hour +he saw +others +standing +in +the +marketplace +idle +and +to them +he said +Go +also +you +into +the +vineyard +and +if +whatever +might be +right +I will give +you +And +- +they went +then +Again +having gone out +about [the] +sixth +and +ninth +hour +he did +likewise +then +About +the +eleventh +having gone out +he found +others +standing +and +he says +to them +Why +here +stand you +all +the +day +idle +They say +to him +Because +no one +us +has hired +He says +to them +Go +also +You +into +the +vineyard +then +Evening +having arrived +says +the +master +of the +vineyard +to +foreman +of him +Call +the +workmen +and +pay +the +wages +having begun +from +the +last +unto +the +first +And +having come +those [hired] +about +the +eleventh +hour +they received +each +a denarius +And +having come +the +first +they thought +that +more +they will receive +but +they received +those +each +a denarius +also +themselves +now +Having received +they were grumbling +against +the +master of the house +saying +These +the +last +one +hour +have worked +and +equal +them +you have made +to us +those +having borne +the +burden +of the +day +and +the +scorching heat +And +- +answering +to one +of them +he said +Friend +not +I do wrong +you +Not +for a denarius +did you agree with +me +Take +what [is] +yours +and +go +now +I desire +to this +- +last +to give +as +also +to you +not +is it lawful +for me +what +I will +to do +with +that which [is] +mine +Or +the +eye +of you +envious +is +because +I +generous +am +Thus +will be +the +last +first +and +the +first +last +And +Jesus + +going up +to +Jerusalem +He took +the +twelve +aside +themselves +and +on +the +way +He said +to them +Behold +we go up +to +Jerusalem +and +the +Son +- +of Man +will be betrayed +to the +chief priests +and +scribes +and +they will condemn +Him +to +death +and +they will betray +Him +the +Gentiles +unto +- +to mock +and +to flog +and +to crucify +and +the +third +day +He will rise again +Then +came +to Him +the +mother +of the +sons +of Zebedee +with +the +sons +of her +kneeling down +and +asking +something +from +Him +And +- +He said +to her +What +do you desire +She says +to Him +Say +that +might sit +these +- +two +sons +of mine +one +on +[the] right hand +and +one +on +[the] left hand +of You +in +the +kingdom +of You +now +Answering +- +Jesus +said +Not +you know +what +you ask for +Are you able +to drink +the +cup +which +to drink +I +am about +They say +to Him +We are able +He says +to them +Indeed +- +the cup +of Me +You will drink +but +- +to sit +on +[the] right hand +of Me +and +on +[the] left +not +is +Mine +this +to give +but [to those] +for whom +it has been prepared +by +the +Father +of Me +And +having heard [this] +the +ten +were indignant +about +the +two +brothers +And +- +Jesus +having called to [him] +them +said +You know +that +the +rulers +of the +Gentiles +exercise lordship over +them +and +the +great ones +exercise authority over +them +Not +thus +will it be +among +you +but +if +whoever +wishes +among +you +great +to become +he will be +your +servant +and +- +whoever +wishes +among +you +to be +first +he will be +your +slave +even as +the +Son +- +of Man +not +came +to be served +but +to serve +and +to give +the +life +of Him +[as] a ransom +for +many +And +[as] were going out +they +from +Jericho +followed +Him +a crowd +great +And +behold +two +blind [men] +sitting +beside +the +road +having heard +that +Jesus +is passing by +cried out +saying +Have mercy on +us +Lord +Son +of David +And +- +the crowd +rebuked +them +that +they should be silent +But +- +all the more +they cried out +saying +have mercy on +us +Lord +Son +of David +And +having stopped +- +Jesus +called +them +and +said +do you desire +What +I should do +unto you +They say +to Him +Lord +that +might be opened +the +eyes +of us +then +Having been moved with compassion +- +Jesus +touched +the +eyes +of them +and +immediately +they received sight +and +they followed +Him +And +when +they drew near +to +Jerusalem +and +came +to +Bethphage +on +the +Mount +- +of Olives +then +Jesus +sent +two +disciples +saying +to them +Go +into +the +village +- +in front +of you +and +immediately +you will find +a donkey +having been tied +and +a colt +with +her +having untied [them] +bring [them] +to Me +And +if +anyone +to you +says +anything +you will say +that +the +Lord +of them +need +has +then +Immediately +he will send +them +then +This +came to pass +that +it might be fulfilled +that +having been spoken +by +the +prophet +saying +Say +to the +daughter +of Zion +Behold +the +King +of you +comes +to you +gentle +and +mounted +on +a donkey +even +upon +a colt +[the] foal +of a beast of burden +then +the +disciples +Having gone +and +having done +as +commanded +them +- +Jesus +they brought +the +donkey +and +the +colt +and +put +upon +them +their +cloaks +and +He sat +on +them +now +The +very great +crowd +spread +their +the +cloaks +on +the +road +now +others +were cutting down +branches +from +the +trees +and +were spreading [them] +on +the +road +now +The +crowds +- +going before +Him +and +those +following +were crying out +saying +Hosanna +to the +Son +of David +Blessed is +the [One] +coming +in +[the] name +of [the] Lord +Hosanna +in +the +highest +And +having entered +of Him +into +Jerusalem +was stirred +all +the +city +saying +Who +is +this +And +- +the crowds +were saying +This +is +the +prophet +Jesus +the [One] +from +Nazareth +- +of Galilee +And +entered +Jesus +into +the +temple +and +cast out +all +those +selling +and +buying +in +the +temple +and +He overturned +the +tables +of the +money changers +and +the +seats +of those +selling +the +doves +And +He says +to them +It has been written +The +house +of Me +a house +of prayer +will be called +however +You +it +have made +a den +of robbers +And +came +to Him +blind +and +lame +in +the +temple +and +He healed +them +now +the +chief priests +and +the +scribes +Having seen +the +wonders +that +He did +and +the +children +the +crying out +in +the +temple +and +saying +Hosanna +to the +Son +of David +they were indignant +and +said +to Him +Hear you +what +these +say +And +- +Jesus +says +to them +Yes +never +did you read +- +Out of [the] +mouth +of babes +and +sucklings +You have prepared for yourself +praise +And +having left +them +He went +out of +the +city +to +Bethany +and +He passed the night +there +then +In the morning +having come back +into +the +city +He became hungry +And +having seen +fig tree +one +along +the +road +He came +to +it +and +nothing +found +on +it +if +not +leaves +only +And +He says +to it +Never +no more +from +you +fruit +let there be +to +the +age +And +withered +immediately +the +fig tree +And +having seen [it] +the +disciples +marveled +saying +How +so quickly +withered +the +fig tree +now +Answering +- +Jesus +said +to them +Truly +I say +to you +if +you have +faith +and +not +do doubt +not +only +the [miracle] +of the +fig tree +will you do +but +even if +to the +mountain +this +you should say +Be you taken away +and +be you cast +into +the +sea +it will come to pass +And +all things +- +as many as +you might ask +in +- +prayer +believing +you will receive +And +having come +of Him +into +the +temple +came +to Him +teaching +the +chief priests +and +the +elders +of the +people +saying +By +what +authority +these things +are You doing +And +who +to You +gave +the +authority +this +now +Answering +- +Jesus +said +to them +Will ask +you +I also +thing +one +if +which +you tell +Me +I also +to you +will say +by +what +authority +these things +I do +The +baptism +of +John +from where +was it +From +heaven +or +from +men +And +- +they were reasoning +with +themselves +saying +If +we should say +From +heaven +He will say +to us +then +Because of +why +not +did you believe +him +however +If +we should say +From +men +we fear +the +multitude +for +all +as +a prophet +hold +- +John +And +answering +- +Jesus +they said +Not +do we know +Said +to them +also +He +Neither +I +tell +you +by +what +authority +these things +I do +however +What +you +think +A man +had +sons +two +having come +to the +first +he said +Son +go +today +work +in +the +vineyard +And +- +answering +he said +will I +master +however +Not +he went +then +Having come +to the +second +he said +likewise +And +- +answering +he said +I [will] +sir +and +not +did he go +Which +of +the +two +did +the +will +of the +father +They say +The +first +Says +to them +- +Jesus +Truly +I say +to you +that +the +tax collectors +and +the +prostitutes +go before +you +into +the +kingdom +- +of God +for +Came +John +to +you +in [the] +way +of righteousness +and +not +you did believe +him +however +- +the tax collectors +and +the +prostitutes +believed +him +then +you +having seen +not even +did repent +afterward +- +to believe +him +Another +parable +hear +A man +there was +a master of a house +who +planted +a vineyard +and +a fence +it +placed around +and +dug +in +it +a winepress +and +built +a tower +and +rented out +it +to farmers +and +traveled abroad +then +When +drew near +the +season +of the +fruits +he sent +the +servants +of him +to +the +farmers +to receive +the +fruits +of him +And +having taken +the +farmers +the +servants +of him +- +one +they beat +then +one +they killed +then +one +they stoned +Again +he sent +other +servants +more +than the +first +and +they did +to them +likewise +then +Afterward +he sent +to +them +the +son +of him +saying +They will respect +the +son +of me +But +- +the farmers +having seen +the +son +said +among +themselves +This +is +the +heir +come +let us kill +him +and +gain possession of +the +inheritance +of him +And +having taking +him +they cast [him] +out of +the +vineyard +and +killed [him] +therefore +When +shall come +the +master +of the +vineyard +what +will he do +the +farmers +to those +They say +to him +[The] wretches +grievously +He will destroy +them +and +the +vineyard +he will rent out +to other +farmers +who +will give +to him +the +fruits +in +the +seasons +of them +Says +to them +- +Jesus +Never +did you read +in +the +Scriptures +[The] stone +which +rejected +those +building +this +has become +the +chief +corner +From +[the] Lord +was +this +and +it is +marvelous +in +[the] eyes +of us +Because of +this +I say +to you +that +will be taken away +from +you +the +kingdom +- +of God +and +it will be given +to a people +producing +the +fruits +of it +And +the [one] +having fallen +on +the +stone +this +will be broken +but +on +- +whomever +it shall fall +it will grind to powder +him +And +the +chief priests +and +the +Pharisees +having heard +the +parables +of Him +they knew +that +about +them +He speaks +And +seeking +Him +to lay hold of +they feared +the +crowds +because +as +a prophet +Him +they were holding +And +answering +- +Jesus +again +spoke +in +parables +to them +saying +Has become like +the +kingdom +of the +heavens +to a man +a king +who +made +a wedding feast +for the +son +of him +And +he sent +the +servants +of him +to call +those +having been invited +to +the +wedding feast +and +not +they were willing +to come +Again +he sent +other +servants +saying +Say +to those +having been invited +Behold +the +dinner +of me +I have prepared +the +oxen +of Me +and +the +fatlings +have been killed +and +all things [are] +ready +come +to +the +wedding feast +And +- +having paid no attention +they went away +- +one +to +the +own +field +then +one +to +the +business +of him +And +- +the rest +having laid hold of +the +servants +of him +mistreated +and +killed [them] +And +- +the king +was angry +and +having sent +the +armies +of him +he destroyed +the +murderers +those +and +the +city +of them +he burned +Then +he says +to +servants +of him +indeed +The +wedding feast +ready +is +however +those +having been invited +not +were +worthy +therefore +Go +into +the +thoroughfares +of the +highways +and +if +as many as +you shall find +invite +to +the +wedding feast +And +the +servants +those +having gone out +into +the +highways +they brought together +all +as many as +they found +both +evil +and +good +and +became full +the +wedding hall +of those reclining +then +the +king +Having entered in +to see +those +reclining +he beheld +there +a man +not +being dressed +in clothes +of wedding +and +he says +to him +Friend +how +did you enter +here +not +having +garment +of wedding +And +- +he was speechless +Then +the +king +said +to the +servants +Having bound +his +feet +and +hands +cast out +him +into +the +darkness +- +outer +there +will be +the +weeping +and +the +gnashing +of the +teeth +for +Many +are +called +however +few +chosen +Then +having gone out +the +Pharisees +counsel +took +how +Him +they might trap +in +His words +And +they send +to Him +the +disciples +of them +with +the +Herodians +saying +Teacher +we know +that +true +You are +and +the +way +- +of God +in +[the] truth +You teach +and +not +there is care +to You +about +no one +for +not +You look +on [the] +appearance +of men +therefore +Tell +us +what +You +think +Is it lawful +to give +tribute +to Caesar +or +not +however +- +Jesus +Having known +the +malice +of them +He said +Why +Me +do you test +hypocrites +Show +Me +the +coin +of the +tribute +And +- +they presented +to Him +a denarius +And +He says +to them +Whose [is] +the +likeness +this +And +whose +inscription +They say +Caesar’s +Then +He says +to them +therefore +Give back +the things +of Caesar +to Caesar +and +the things +- +of God +- +to God +And +having heard +they marveled +and +having left +Him +they went away +On +that +- +day +came +to Him +Sadducees +those saying +not +there is +a resurrection +and +they questioned +Him +saying +Teacher +Moses +said +If +anyone +should die +not +having +children +will marry +the +brother +of him +the +wife +of him +and +he will raise up +offspring +for the +brother +of him +now +There were +among +us +seven +brothers +and +the +first +having married +died +and +not +having +seed +he left +the +wife +of him +to the +brother +of him +Likewise +also +the +second +and +the +third +unto +the +seventh +then +Last +of all +died +the +woman +therefore +In +the +resurrection +of which +of the +seven +wife +will she be +for +All +had +her +now +Answering +- +Jesus +said +to them +You err +not +knowing +the +Scriptures +nor +the +power +- +of God +for +In +the +resurrection +neither +do they marry +nor +are given in marriage +but +like +angels +in +- +heaven +they are +now +Concerning +the +resurrection +of the +dead +not +have you read +that which +has been spoken +to you +by +- +God +saying +I +am +the +God +of Abraham +and +the +God +of Isaac +and +the +God +of Jacob +Not +He is +the +God +of [the] dead +but +of [the] living +And +having heard +the +crowds +were astonished +at +the +teaching +of Him +And +- +the Pharisees +having heard +that +He had silenced +the +Sadducees +were gathered +together +the +same +And +questioned [Him] +one +of +them +a lawyer +testing +Him +Teacher +which +commandment +[is the] greatest +in +the +law +And +- +He said +to him +You shall love +[the] Lord +the +God +of you +with +all +the +heart +of you +and +with +all +the +soul +of you +and +with +all +the +mind +of you +This +is +the +great +and +first +commandment +[The] second +[is] like +it +You shall love +the +neighbor +of you +as +yourself +On +these +- +two +commandments +all +the +law +hangs +and +the +Prophets +now +Having been assembled together +the +Pharisees +questioned +them +- +Jesus +saying +What +you +think +concerning +the +Christ +Of whom +son +is He +They say +to Him +- +Of David +He says +to them +then +How +David +in +spirit +does call +Him +Lord +saying +Said +the Lord +to the +Lord +of me +Sit +on +[the] right hand +of Me +until +- +I place +the +enemies +of You +[as] a footstool +for the +feet +of You +therefore +If +David +calls +Him +Lord +how +son +of him +is He +And +no one +was able +to answer +Him +a word +nor +dared +anyone +from +that +- +day +to question +Him +no longer +Then +- +Jesus +spoke +to the +crowds +and +to +disciples +of Him +saying +On +- +Moses’ +seat +have sat down +the +scribes +and +the +Pharisees +therefore +All things +if +how many +they might tell +you +keep +and +observe +however +After +the +works +of them +not +do +for +They speak +and +not +act +- +They tie up +burdens +heavy +and +lay [them] +on +the +shoulders +- +of men +however +themselves +with +finger +of them +not +are they willing +to move +them +now +All +the +deeds +of them +they do +in order +- +to be seen +- +by men +for +They broaden +the +phylacteries +of them +and +enlarge +their +tassels +now +They love +the +chief place +at +the +banquets +and +the +first seats +in +the +synagogues +and +the +greetings +in +the +marketplaces +and +to be called +by +- +men +Rabbi +however +You +not +shall be called +Rabbi +for +One +is +of you +the +Teacher +now +all +you +brothers +are +And +father +of you +no [one] +call +on +the +earth +for +One +is +of you +the +Father +who [is] +in heaven +Neither +be called +instructors +since +[the] instructor +of you +is +One +the +Christ +And +- +the greatest +among you +will be +your +servant +then +He who +shall exalt +himself +will be humbled +and +whoever +shall humble +himself +will be exalted +however +Woe +to you +scribes +and +Pharisees +hypocrites +For +you shut up +the +kingdom +of the +heavens +before +- +men +for +You +neither +enter +nor even +those who +are entering +to go in +do you allow +Woe +to you +scribes +and +Pharisees +hypocrites +For +you traverse +the +sea +and +the +dry [land] +to make +one +convert +and +when +he has become [so] +you make +him +a son +of hell +twofold more +than yourselves +Woe +to you +guides +blind +those +saying +- +Whoever +shall swear +by +the +temple +nothing +it is +however +- +whoever +shall swear +by +the +gold +of the +temple +is bound by his oath +Foolish +and +blind +for +Which +greater +is +the +gold +or +the +temple +- +having sanctified +the +gold +And [you say] +- +Whoever +shall swear +by +the +altar +nothing +it is +however +- +whoever +shall swear +by +the +gift +that [is] +upon +it +he is bound by his oath +You blind men +for +Which +[is] greater +the +gift +or +the +altar +- +sanctifying +the +gift +therefore +The [one] +having sworn +by +the +altar +swears +by +it +and +by +all things +that [are] +upon +it +And +the [one] +having sworn +by +the +temple +swears +by +it +and +by +the [One] +dwelling +in it +And +the [one] +having sworn +by +- +heaven +swears +by +the +throne +- +of God +and +by +the [One] +sitting +upon +it +Woe +to you +scribes +and +Pharisees +hypocrites +For +you pay tithes of +- +mint +and +- +dill +and +- +cummin +and +you have neglected +the +weightier [matters] +of the +law +- +justice +and +- +mercy +and +- +faithfulness +now +it behooved you +These +to do +those +not +to be leaving aside +Guides +blind +Those +straining out +the +gnat +however +the +camel +swallowing +Woe +to you +scribes +and +Pharisees +hypocrites +For +you cleanse +the +outside +of the +cup +and +of the +dish +however +inside +they are full +of +greed +and +self-indulgence +Pharisee +blind +Cleanse +first +the +inside +of the +cup +that +might become +also +the +outside +of them +clean +Woe +to you +scribes +and +Pharisees +hypocrites +For +you are like +tombs +having been whitewashed +indeed +which +outwardly +appear +beautiful +however +Inside +they are full +of bones +of [the] dead +and +of all +impurity +Thus +also +you +indeed +outwardly +appear +- +to men +righteous +however +inwardly +you are +full +of hypocrisy +and +lawlessness +Woe +to you +scribes +and +Pharisees +hypocrites +For +you build +the +tombs +of the +prophets +and +adorn +the +monuments +of the +righteous +and +you say +If +we had lived +in +the +days +of the +fathers +of us +- +not +we would have been +with them +partakers +in +the +blood +of the +prophets +Thus +you bear witness +to yourselves +that +you are +sons +of those +having murdered +the +prophets +And +you +fill up +the +measure +of the +fathers +of you +Serpents +Offspring +of vipers +How +shall you escape +from +the +sentence +- +of hell +behold +Because of +this +I +send +to +you +prophets +and +wise [men] +and +scribes +Some of +them +you will kill +and +will crucify +and [some] +of +them +you will flog +in +the +synagogues +of you +and +will persecute +from +town +to +town +so that +shall come +upon +you +all [the] +blood +righteous +being poured out +upon +the +earth +from +the +blood +of Abel +the +righteous +to +the +blood +of Zechariah +son +of Berekiah +whom +you murdered +between +the +temple +and +the +altar +Truly +I say +to you +will come +these things +all +upon +the +generation +this +Jerusalem +Jerusalem +- +killing +the +prophets +and +stoning +those +having been sent +to +her +How often +would I +have gathered together +the +children +of you +in which +way +a hen +gathers together +the +chicks +of her +under +the +wings +and +not +you were willing +Behold +is left +to you +the +house +of you +for +I say +to you +no +not +Me +shall you see +from +now +until +- +you say +Blessed [is] +the [One] +coming +in [the] +name +of [the] Lord +And +- +Jesus +having gone forth +from +the +temple +He was going away +and +came to [Him] +the +disciples +of Him +to point out +to Him +the +buildings +of the +temple +And +- +answering +He said +to them +Not +do you see +these things +all +Truly +I say +to you +none +not even +shall be left +here +upon +stone +stone +which +not +will be thrown down +now +[As] was sitting +He +upon +the +Mount +- +of Olives +came to +Him +the +disciples +in +private +saying +Tell +us +when +these things +will be +And +what [is] +the +sign +- +of Your +coming +and +of the consummation +of the +age +And +answering +- +Jesus +said +to them +Take heed +lest +anyone +you +mislead +for +Many +will come +in +the +name +of Me +saying +I +am +the +Christ +and +many +they will mislead +then +You will begin +to hear of +wars +and +rumors +of wars +Behold +not +be alarmed +for +it is necessary +to take place +but +not yet +is +the +end +for +Will rise up +nation +against +nation +and +kingdom +against +kingdom +and +there will be +famines +and +earthquakes +in +[various] places +then +All +these [are] +[the] beginning +of birth pains +Then +will they deliver +you +to +tribulation +and +will kill +you +and +you will be +hated +by +all +the +nations +on account of +the +name +of Me +And +then +will fall away +many +and +one another +they will betray +and +will hate +one another +and +many +false prophets +will arise +and +will mislead +many +And +because +- +is to be multiplied +- +lawlessness +will grow cold +the +love +of the +many +however +The [one] +having endured +to [the] +end +he +will be saved +And +there will be proclaimed +this +- +gospel +of the +kingdom +in +all +the +earth +for +a testimony +to all +the +nations +and +then +will come +the +end +therefore +When +you shall see +the +abomination +- +of desolation +- +having been spoken of +by +Daniel +the +prophet +standing +in [the] +place +holy +the [one] +reading +let him understand +then +those +in +- +Judea +let them flee +to +the +mountains +the [one] +on +the +housetop +not +let him come down +to take +anything +out of +the +house +of him +and +the [one] +in +the +field +neither +let him return +back +to take +the +cloak +of him +then +Woe +to those +in +womb +having +and +to the [ones] +nursing infants +in +those +the +days +however +Pray +that +not +might be +the +flight +of you +in winter +nor +on a Sabbath +for +There will be +then +tribulation +great +such as +not +has been +from [the] +beginning +of [the] world +until +- +now +no +never +not +shall be +And +if +not +had been shortened +the +days +those +- +not +there would have been saved +any +flesh +however +because of +the +elect +will be shortened +the +days +those +if +Then +anyone +to you +says +Behold +here [is] +the +Christ +or +Here +not +believe [it] +for +There will arise +false Christs +and +false prophets +and +they will give +signs +great +and +wonders +so as +to mislead +if +possible +even +the +elect +Behold +I have foretold [it] +to you +therefore +If +they say +to you +Behold +in +the +wilderness +He is +not +go forth +[or] ‘Behold +in +the +inner rooms +not +believe [it] +for +Just as +the +lightning +comes forth +from [the] +east +and +shines +as far as [the] +west +so +will be +the +coming +of the +Son +- +of Man +if +For wherever +may be +the +carcass +there +will be gathered +the +vultures +then +Immediately +after +the +tribulation +the +days +of those +The +sun +will be darkened +and +the +moon +not +will give +the +light +of it +and +the +stars +will fall +from +the +sky +and +the +powers +of the +heavens +will be shaken +And +then +will appear +the +sign +of the +Son +- +of Man +in +heaven +and +then +will mourn +all +the +tribes +of the +earth +and +they will see +the +Son +- +of Man +coming +on +the +clouds +- +of heaven +with +power +and +glory +great +And +He will send +the +angels +of Him +with +a trumpet call +great +and +they will gather together +the +elect +of Him +from +the +four +winds +from +[the] ends +of the heavens +to +ends +of them +now +Of +the +fig tree +learn +the +parable +When +already +the +branch +of it +may have become +tender +and +the +leaves +it puts forth +you know +that +near [is] +the +summer +Thus +also +you +when +you see +all +these things +know +that +near +He is +at +[the] doors +Truly +I say +to you +that +no +not +will have passed away +the +generation +this +until +- +all +these things +shall have taken place +The +heaven +and +the +earth +will pass away +but +- +the words +of Me +no +not +shall pass away +however +Concerning +the +day +and +hour +that +no one +knows +not even +the +angels +of the +heavens +nor +the +Son +if +not +the +Father +only +for +As [were] +the +days +- +of Noah +so +will be +the +coming +of the +Son +- +of Man +for +As +in +the +days +those +- +before +the +flood +they were +eating +and +drinking +marrying +and +giving in marriage +until +that +day +entered +Noah +into +the +ark +And +not +they knew +until +came +the +flood +and +took away +all +thus +will be +also +the +coming +of the +Son +- +of Man +Then +will be +two +in +the +field +one +is taken +and +one +is left +Two [women] +will be grinding +at +the +mill +one +is taken +and +one +is left +therefore +Keep watch +for +not +you know +on what +day +the +Lord +of you +comes +then +This +know +that +if +had known +the +master of the house +in what +time of night +the +thief +comes +- +he would have watched +and +- +not +have allowed +to be broken into +the +house +of him +Because of +this +also +you +be +ready +for +in that +not +you expect +hour +the +Son +- +of Man +comes +then +Who +is +the +faithful +and +wise +servant +whom +has set +the +master +over +the +household +of him +- +to give +to them +the +food +in +season +Blessed [is] +the +servant +that +whom +thus +doing +having come +the +master +of him +will find +Truly +I say +to you +that +over +all +the +possessing +of him +he will set +him +however +If +should say +the +evil +servant +that +in +the +heart +of him +Delays +of Me +the +master +and +should begin +to beat +the +fellow servants +of him +then +to eat +and +to drink +with +those +being drunkards +will come +the +master +the +servant +of that +in +a day +in which +not +he does expect +and +in +an hour +which +not +he is aware +and +will cut in pieces +him +and +the +place +of him +with +the +hypocrites +will appoint +there +will be +the +weeping +and +the +gnashing +of +teeth +Then +will be likened +the +kingdom +of the +heavens +to ten +virgins +who +having taken +the +lamps +of them +went forth +to +meet +the +bridegroom +now +Five +of +them +were +foolish +and +five +wise +for +The +foolish +having taken +the +lamps +not +did take +with +them +oil +but +- +the wise +took +oil +in +the +vessels +with +the +lamps +of them +then +Tarrying +the +bridegroom +they became drowsy +all +and +were sleeping +then +At middle +of [the] night +a cry +there was +Behold +the +bridegroom +Go forth +to +meet +Then +arose +all +the +virgins +those +and +trimmed +the +lamps +of them +And +- +the foolish +to the +wise +said +Give +us +of +the +oil +of you +for +the +lamps +of us +are going out +then +Answered +the +wise +saying +Lest +- +no +not even +it might suffice +for us +and +you +Go +rather +to +those +selling +and +buy +for yourselves +then +[While] are going away +they +to buy +came +the +bridegroom +and +those +ready +went in +with +him +to +the +wedding feast +and +was shut +the +door +then +Afterward +come +also +the +other +virgins +saying +Lord +Lord +open +to us +And +- +answering +he said +Truly +I say +to you +not +I do know +you +therefore +Watch +for +neither +do you know +the +day +nor +the +hour +for +[It is] like +a man +going on a journey +[who] called +the +own +servants +and +delivered +to them +the +possessing +of him +And +indeed +to one +he gave +five +talents +then +to one +two +then +to one +one +to each +according to +the +own +ability +and +he left the region +immediately +Having gone +the [one] +the +five +talents +having received +traded +with +them +and +made +more +five +Likewise +the [one with] +the +two +gained +more +two +however +The [one] +- +one +having received +having gone away +dug in +the ground +and +hid +the +money +of the +master +of him +then +After +much +time +comes +the +master +of the +servants +those +and +takes +account +with +them +And +having come +the [one] +the +five +talents +having received +brought to [him] +other +five +talents +saying +Master +five +talents +to me +you did deliver +Behold +more +five +talents +have I gained +Said +to him +the +master +of Him +Well done +servant +good +and +faithful +Over +a few things +you were +faithful +over +many things +you +will I set +Enter +into +the +joy +of the +master +of you +Having come +also +the [one] +with the +two +talents +he said +Master +two +talents +to me +you did deliver +Behold +more +two +talents +have I gained +Said +to him +the +master +of Him +Well done +servant +good +and +faithful +Over +a few things +you were +faithful +over +many things +you +will I set +Enter +into +the +joy +of the +master +of you +then +Having come +also +the [one] +the +one +talent +having received +he said +Master +I knew +you +that +you are +hard +a man +reaping +where +not +you did sow +and +gathering +from where +not +you did scatter +And +having been afraid +having gone away +I hid +the +talent +of you +in +the +ground +Behold +you have +what [is] +yours +now +Answering +the +master +of him +said +to him +servant +Wicked +and +lazy +You knew +that +I reap +where +not +I sowed +and +gather +from where +not +I scattered +therefore +It behooved +you +to put +the +money +of me +to the +bankers +and +- +having come +I +would have received +- +my own +with +interest +therefore +Take +from +him +the +talent +and +give [it] +to the [one] +having +the +ten +talents +For +- +having +to everyone +will be given +and +he will have in abundance +however +the [one] +not +having +even +that which +he has +will be taken away +from +him +And +the +worthless +servant +cast out +into +the +darkness +- +outer +there +will be +the +weeping +and +the +gnashing +of the +teeth +then +When +comes +the +Son +- +of Man +in +the +glory +of Him +and +all +the +angels +with +Him +then +He will sit +upon [the] +throne +of glory +of Him +And +will be gathered +before +Him +all +the +nations +and +He will separate +them +from +one another +as +the +shepherd +separates +the +sheep +from +the +goats +And +indeed +He will set +- +the sheep +on +[the] right hand +of Him +and +- +the goats +on +[the] left +Then +will say +the +King +to those +on +[the] right hand +of Him +Come +those +being blessed +of the +Father +of me +inherit +the +having been prepared +for you +from [the] +foundation +of [the] world +kingdom +for +I hungered +and +you gave +Me +to eat +I thirsted +and +you gave to drink +me +a stranger +I was +and +you took in +Me +naked +and +you clothed +Me +I was sick +and +you visited +Me +in +prison +I was +and +you came +to +Me +Then +will answer +Him +the +righteous +saying +Lord +when +saw we +You +hungering +and +fed [You] +Or +thirsting +and +gave [You] to drink +now +When +saw we +You +a stranger +and +took [You] in +Or +naked +and +clothed [You] +now +When +saw we +You +ailing +or +in +prison +and +came +to +You +And +answering +the +King +will say +to them +Truly +I say +to you +to the extent +as much as +you did [it] +to one +of these +the +brothers +of Me +the +least +to Me +you did [it] +Then +will He say +also +to those +on +[the] left +being cursed +Depart +from +Me +into +the +fire +- +eternal +- +having been prepared +for the +devil +and +the +angels +of him +for +I hungered +and +nothing +you gave +to Me +to eat +I thirsted +and +nothing +You gave to drink +Me +a stranger +I was +and +not +You took in +Me +naked +and +not +you did clothe +Me +sick +and +in +prison +and +not +did you visit +Me +Then +will answer +also +themselves +saying +Lord +when +saw we +You +hungering +or +thirsting +or +a stranger +or +naked +or +sick +or +in +prison +and +not +did minister +to You +Then +will He answer +them +saying +Truly +I say +to you +to the extent +that +not +you did [it] +to one +of these +the +least +neither +to Me +did you +And +will go away +these +into +punishment +eternal +but +- +the righteous +into +life +eternal +And +it came to pass +when +had finished +- +Jesus +all +the +words +these +He said +to the +disciples +of Him +You know +that +after +two +days +the +Passover +takes place +and +the +Son +- +of Man +is delivered +over +- +to be crucified +Then +were gathered together +the +chief priests +and +the +elders +of the +people +in +the +courtyard +of the +high priest +who +is called +Caiaphas +and +they plotted together +in order that +- +Jesus +by guile +they might seize +and +kill +however +They were saying +Not +during +the +feast +that +not +a riot +there be +among +the +people +And +- +of Jesus +having been +in +Bethany +in [the] +house +of Simon +the +leper +came +to Him +a woman +having +an alabaster flask +fragrant oil +very costly +and +poured [it] +on +the +head +of Him +[as] He is reclining +then +Having seen +the +disciples +became indignant +saying +For what +purpose +[is] the +waste +this +for +Could +this +have been sold +for much +and +have been given +to [the] poor +now +Having known [this] +- +Jesus +said +to them +Why +trouble +do you cause +to the +woman +for +A work +beautiful +she did +to +Me +for +Always +the +poor +you have +with +you +however +Me +not +always +you have +for +this [woman] +In pouring +the +fragrant oil +this +on +the +body +of Me +for +the +burial +of Me +she did [it] +Truly +I say +to you +if +wherever +shall be proclaimed +the +gospel +this +in +all +the +world +will be spoken of +also +that which +did +this [woman] +for +a memorial +of her +Then +one +of the +Twelve +the [one] +being called +Judas +Iscariot +having gone +to +the +chief priests +he said +are you willing +What +me +to give +and I +to you +will betray +Him +And +- +they appointed +to him +thirty +pieces of silver +And +from +that time +he was seeking +an opportunity +that +Him +he might betray +now +On the +first [day] +of the +unleavened [bread] +came +the +disciples +- +to Jesus +saying +wish you [that] +Where +we should prepare +for You +to eat +the +Passover +And +- +He said +Go +into +the +city +unto +a +certain man +and +tell +him +the +Teacher +says +The +time +of Me +near +is +with +you +I will keep +the +Passover +with +the +disciples +of Me +And +did +the +disciples +as +directed +them +- +Jesus +and +prepared +the +Passover +now +Evening +having arrived +He was reclining +with +the +twelve +disciples +And [as] +they were eating +to them +He said +Truly +I say +to you +that +one +of +you +will betray +Me +And +being grieved +exceedingly +they began +to say +to Him +one +each +Not +I +is it +Lord +And +- +answering +He said +The [one] +having dipped +with +Me +the +hand +in +the +dish +he +Me +will betray +Indeed +- +the Son +- +of Man +goes +as +it has been written +about +Him +however +woe +- +the man +to that +by +whom +the +Son +- +of Man +is betrayed +Better +would it be +for him +if +not +had been born +the +man +that +now +Answering +Judas +who +was betraying +Him +said +Not +I +is it +Rabbi +He says +to him +You +have said +now +[As] they were eating +of them +- +Jesus +having taken +bread +and +having blessed +broke [it] +and +having given +to the +disciples +He said +Take +eat +this +is +the +body +of Me +And +having taken +a cup +and +having given thanks +He gave [it] +to them +saying +Drink +of +it +all of you +for +This +is +the +blood +of Me +of the +covenant +- +for +many +being poured out +for +forgiveness +of sins +now +I say +to you +no +not +will I drink +from +now +of +this +the +fruit +of the +vine +until +the +day +that +when +it +I drink +with +you +anew +in +the +kingdom +of the +Father +of Me +And +having sung a hymn +they went out +to +the +Mount +- +of Olives +Then +says +to them +- +Jesus +All +you +will fall away +because of +Me +during +the +night +this +for +It has been written +I will strike +the +shepherd +and +will be scattered +the +sheep +of the +flock +however +After +- +being raised +I +will go before +you +into +- +Galilee +now +Answering +- +Peter +said +to Him +If +all +will fall away +because of +You +I +never +will fall away +Said +to him +- +Jesus +Truly +I say +to you +that +during +this +- +night +before [the] +rooster +crowing +three times +you will deny +Me +Says +to Him +- +Peter +Even if +it were necessary for +me +with +You +to die +no +not +You +will I deny +Likewise +also +all +the +disciples +said +Then +comes +with +them +- +Jesus +to +a place +called +Gethsemane +and +He says +to the +disciples +Sit +here +until +that +having gone away +over there +I shall pray +And +having taken with [Him] +- +Peter +and +the +two +sons +of Zebedee +He began +to be sorrowful +and +deeply distressed +Then +He says +to them +Very sorrowful +is +the +soul +of Me +even to +death +remain +here +and +watch +with +Me +And +having gone forward +a little +He fell +upon +face +of Him +praying +and +saying +Father +of Me +if +possible +it is +let pass +from +Me +the +cup +this +Nevertheless +not +as +I +will +but +as +You +And +He comes +to +the +disciples +and +finds +them +sleeping +And +He says +- +to Peter +Thus +not +were you able +one +hour +to watch +with +Me +Watch +and +pray +that +not +you enter +into +temptation +indeed +The +spirit +[is] willing +but +- +the flesh +weak +Again +for +a second time +having gone away +He prayed +saying +Father +of Me +if +not +is possible +this +to pass +if +not +it +I drink +be done +the +will +of You +And +having come +again +He finds +them +sleeping +for +were +heavy +of them +the +eyes +And +having left +them +again +having gone away +He prayed +for +[the] third time +the +same +thing +having said +again +Then +He comes +to +the +disciples +and +says +to them +Sleep +later on +and +take your rest +Behold +has drawn near +the +hour +and +the +Son +- +of Man +is betrayed +into +[the] hands +of sinners +Rise up +let us go +Behold +has drawn near +he who +is betraying +Me +And +yet +of Him +as He is speaking +behold +Judas +one +of the +Twelve +came +and +with +him +a crowd +great +with +swords +and +clubs +from +the +chief priests +and +elders +of the +people +then +The [one] +betraying +Him +gave +them +a sign +saying +- +Whomever +I shall kiss +He +it is +seize +Him +And +immediately +having come up +- +to Jesus +he said +Greetings +Rabbi +and +kissed +Him +And +- +Jesus +said +to him +Friend +for +what +are you come +Then +having come to [him] +they laid +- +hands +on +- +Jesus +and +seized +Him +And +behold +one +of those +with +Jesus +having stretched out +the +hand +drew +the +sword +of him +and +having struck +the +servant +of the +high priest +cut off +of him +the +ear +Then +says +to him +- +Jesus +Return +the +sword +of you +into +the +place +of it +for +all +those +having taken +[the] sword +by +[the] sword +will perish +Or +think you +that +not +I am able +to call upon +the +Father +of Me +and +He will furnish +to Me +presently +more than +twelve +legions +of angels +then +How +should be fulfilled +the +Scriptures +that +so +it must +be +In +that +- +hour +said +- +Jesus +to the +crowds +As +against +a robber +did you come out +with +swords +and +clubs +to capture +Me +Every +day +in +the +temple +I was sitting +teaching +and +not +you did seize +Me +then +This +all +is come to pass +that +might be fulfilled +the +Scriptures +of the +prophets +Then +the +disciples +all +having forsaken +Him +fled +then +Those +having seized +- +Jesus +led [Him] away +to +Caiaphas +the +high priest +where +the +scribes +and +the +elders +were assembled +And +- +Peter +was following +Him +from +afar +even +to the +court +of the +high priest +And +having entered +within +he was sitting +with +the +guards +to see +the +outcome +And +- +the chief priests +and +the +Council +whole +were seeking +false testimony +against +- +Jesus +so that +him +they might put to death +but +not any +they found +of many +false witnesses +having come forward as +then +At last +having come forward +two +they said +This [man] +has been saying +I am able +to destroy +the +temple +- +of God +and +in +three +days +to rebuild it +And +having stood up +the +high priest +said +to Him +Nothing +answer you +What +these +you +do witness against +And +- +Jesus +was silent +And +the +high priest +said +to Him +I adjure +you +by +- +God +the +living +that +us +You tell +if +You +are +the +Christ +the +Son +- +of God +Says +to him +- +Jesus +You +have said +But +I say +to you +from +now +you will see +the +Son +- +of Man +sitting +at +[the] right hand +- +of Power +and +coming +upon +the +clouds +- +of heaven +Then +the +high priest +tears +the +garments +of him +saying +He has blasphemed +why +any more +need +of witnesses +have we +Behold +now +you have heard +the +blasphemy +What +you +do think +And +- +answering +they said +Deserving +of death +He is +Then +they spat +in +the +face +of Him +and +struck +Him +then +Others +slapped [Him] +saying +Prophesy +to us +Christ +who +is +the [one] +having struck +You +And +- +Peter +was sitting +outside +in +the +court +and +came +to him +one +servant girl +saying +Also +You +were +with +Jesus +the +Galilean +And +- +he denied +before +all +saying +Not +I know +what +you say +then +Having gone out +to +the +porch +saw +him +another [servant girl] +and +says +to those +there +This [man] +was +with +Jesus +of +Nazareth +And +again +he denied +with +an oath +- +Not +I know +the +man +also +After +a little while +having come to [him] +those +standing by +they said +- +to Peter +Surely +also +you +of +them +are +for +even +the +speech +of you +away +you +gives +Then +he began +to curse +and +to swear +- +Not +I know +the +man +And +immediately +a rooster +crowed +And +remembered +- +Peter +the +word +of Jesus +He having said +- +Before [the] +rooster +crowing +three times +you will deny +Me +And +having gone +out +he wept +bitterly +then +Morning +having arrived +counsel +took +all +the +chief priests +and +the +elders +of the +people +against +- +Jesus +so that +they might put to death +him +And +having bound +Him +they led away [Him] +and +delivered Him to +Pilate +the +governor +Then +Judas +the [one] +having delivered up +Him +having seen +that +He was condemned +having regretted [it] +he returned +the +thirty +pieces of silver +to the +chief priests +and +elders +saying +I sinned +having betrayed +blood +innocent +Then +- +they said +What [is that] +to +us +You +will see +And +having cast down +the +pieces of silver +into +the +temple +he withdrew +and +having gone away +hanged himself +And +- +the chief priests +having taken +the +pieces of silver +said +Not +it is lawful +to put +them +into +the +treasury +since [the] +price +of blood +it is +then +Counsel +having taken +they bought +with +them +the +field +of the +potter +for +a burial place +for the +strangers +Therefore +was called +the +field +that +Field +of Blood +to +- +this day +Then +was fulfilled +that +having been spoken +by +Jeremiah +the +prophet +saying +And +they took +the +thirty +pieces of silver +the +price +of the [One] +having been priced +whom +they set a price on +by [the] +sons +of Israel +and +they gave +them +for +the +field +of the +potter +as +directed +me +[the] Lord +And +- +Jesus +stood +before +the +governor +and +questioned +Him +the +governor +saying +You +are +the +King +of the +Jews +And +- +Jesus +said +You +say +And +in +- +being accused +His +by +the +chief priests +and +elders +nothing +He answered +Then +says +to Him +- +Pilate +Not +do you hear +how many things +You +they witness against +And +not +He did answer +him +to +not even +one +word +so as +to amaze +the +governor +exceedingly +now +At +[the] feast +was accustomed +the +governor +to release +to the +multitude +one +prisoner +whom +they were wishing +now +They were holding +at that time +a prisoner +notable +called +Barabbas +therefore +Being gathered together +of them +said +to them +- +Pilate +will you [that] +Whom +I shall release +to you +Barabbas +or +Jesus +who +is called +Christ +for +He knew +that +through +envy +they delivered up +him +now +As was sitting +he +on +the +judgment seat +sent +to +him +the +wife +of him +saying +[Let there be] nothing +between you +and +the +righteous [man] +that +for +many things +I suffered +today +in +a dream +because of +Him +And +- +the chief priests +and +the +elders +persuaded +the +crowds +that +they should ask for +- +Barabbas +and +- +Jesus +should destroy +now +Answering +the +governor +said +to them +do you desire +Which +of +the +two +I release +to you +And +- +they said +- +Barabbas +Says +to them +- +Pilate +then +What +should I do with +Jesus +who +is called +Christ +They say +all +Let [Him] be crucified +And +- +he said +for +What +evil +did He commit +And +- +all the more +they kept crying out +saying +Let [Him] be crucified +now +- +Pilate +Having seen +that +nothing +it availed +but +rather +a riot +is arising +having taken +water +he washed +the +hands +before +the +crowd +saying +Guiltless +I am +of +the +blood +of this +For yourselves +you will see +And +answering +all +the +people +said +The +blood +of Him +[be] on +us +and +on +the +children +of us +Then +he released +to them +- +Barabbas +and +- +Jesus +having flogged +He delivered up [Him] +that +He might be crucified +Then +the +soldiers +of the +governor +having taken with [them] +- +Jesus +to +the +Praetorium +gathered +before +Him +all +the +cohort +And +having stripped +Him +a robe +scarlet +they put around +Him +And +having twisted together +a crown +of +thorns +they put [it] +on +the +head +of Him +and +a reed +in +the +right hand +of Him +and +having bowed the knees +before +Him +they mocked +Him +saying +Hail +King +of the +Jews +And +having spit +upon +Him +they took +the +reed +and +kept striking [Him] +on +the +head +of Him +And +when +they had mocked +Him +they took off +Him +the +robe +and +they put on +Him +the +garments +of Him +and +led away +Him +to +- +crucify [Him] +now +Going forth +they found +a man +of Cyrene +named +Simon +Him +they compelled +that +he might carry +the +cross +of Him +And +having come +to +a place +called +Golgotha +which +is +called +of a Skull +Place +they gave +Him +to drink +wine +with +gall +mingled +and +having tasted +not +He was willing +to drink [it] +now +Having crucified +Him +they divided +the +garments +of Him +casting +lots +And +sitting down +they were guarding +Him +there +And +they put up +over +the +head +of Him +the +accusation +of Him +written +This +is +Jesus +the +King +of the +Jews +At the same time +are crucified +with +Him +two +robbers +one +at [the] +right hand +and +one +at [the] +left +now +Those +passing by +kept railing at +Him +wagging +the +heads +of them +and +saying +The [One] +destroying +the +temple +and +in +three +days +building [it] +save +Yourself +If +You are +[the] Son +- +of God +also +descend +from +the +cross +Likewise +the +chief priests +mocking +with +the +scribes +and +elders +were saying +Others +He saved +Himself +to save +not +is He able +King +of Israel +He is +Let Him descend +now +from +the +cross +and +we will believe +in +Him +He trusted +on +- +God +Let Him deliver +now +if +He wants +Him +for +He said +- +Of God +[the] Son +I am +And +- +likewise +even +the +robbers +those +having been crucified +with +Him +were upbraiding +Him +then +From +[the] sixth +hour +darkness +was +over +all +the +land +until +[the] hour +ninth +then +About +the +ninth +hour +cried out +- +Jesus +in a voice +loud +saying +Eli +Eli +lema +sabachthani +That +is +God +of Me +God +of Me +so that +why +Me +have you forsaken +then +Some +of those who +there +were standing +having heard +began saying +- +Elijah +calls +this [man] +And +immediately +one +of +them +having run +and +having taken +a sponge +and +having filled [it] +with vinegar +and +having put [it] on +a reed +gave to drink +Him +And +- +the rest +were saying +Let be +Let us see +whether +comes +Elijah +to save +Him +And +- +Jesus +again +having cried +in a voice +loud +yielded up +[His] +spirit +And +behold +the +veil +of the +temple +was torn +from +top +to +bottom +into +two +and +the +earth +was shaken +and +the +rocks +were split +and +the +tombs +were opened +and +many +bodies +of the +having fallen asleep +saints +arose +and +having gone forth +out of +the +tombs +after +the +resurrection +of Him +they entered +into +the +holy +city +and +appeared +to many +And +- +the centurion +and +those +with +him +keeping guard over +- +Jesus +having seen +the +earthquake +and +the things +taking place +feared +greatly +saying +Truly +God’s +Son +was +this +now +They were +there +women +many +from +afar off +looking on +who +followed +- +Jesus +from +- +Galilee +ministering +to Him +among +whom +was +Mary +- +Magdalene +and +Mary +the +- +of James +and +Joseph +mother +and +the +mother +of the +sons +of Zebedee +now +Evening +having arrived +came +a man +rich +from +Arimathea +named +Joseph +who +also +himself +was discipled +- +to Jesus +He +having gone +- +to Pilate +asked for +the +body +- +of Jesus +Then +- +Pilate +commanded it +to be given up +And +having taken +the +body +- +Joseph +wrapped +it +in +a linen cloth +clean +and +placed +it +in +the +new +of him +tomb +which +he had cut +in +the +rock +and +having rolled +a stone +great +to the +door +of the +tomb +he went away +now +there +Mary +- +Magdalene +and +the +other +Mary +Was +sitting +opposite +the +tomb +And +- +the next day +which +is +after +the +Preparation +were gathered together +the +chief priests +and +the +Pharisees +before +Pilate +saying +Sir +we have remembered +how +that +- +deceiver +said +while +living +After +three +days +I arise +therefore +Command +to be secured +the +tomb +until +the +third +day +lest +ever +having come +the +disciples +steal away +him +and +say +to the +people +He is risen +from +the +dead +And +will be +the +last +deception +worse +than the +first +Said +to them +- +Pilate +You have +a guard +Go +make [it as] secure +as +you know [how] +And +- +having gone +they made secure +the +tomb +having sealed +the +stone +with +the +guard +then +After +[the] Sabbaths +it +being dawn +toward +[the] first [day] +of [the] week +came +Mary +- +Magdalene +and +the +other +Mary +to see +the +tomb +And +behold +an earthquake +great +there was +for +an angel +of [the] Lord +having descended +out of +heaven +and +having come +rolled away +the +stone +and +was sitting +upon +it +now +Was +the +appearance +of him +like +lightning +and +the +clothing +of him +white +as +snow +now +From +the +fear +of him +trembled +those +keeping guard +and +became +as +dead [men] +now +Answering +the +angel +said +to the +women +Not +fear +you +for +I know +that +Jesus +the [One] +having been crucified +you seek +Not +He is +here +for +He is risen +as +He said +Come +see +the +place +where +He was lying +And +quickly +having gone +say +to the +disciples +of Him +that +He is risen +from +the +dead +and +behold +He goes before +you +into +- +Galilee +there +Him +you will see +Behold +I have told +you +And +having gone out +quickly +from +the +tomb +with +fear +and +joy +great +they ran +to tell +the +disciples +of Him +And +behold +Jesus +met +them +saying +Greetings +And +- +having come to [Him] +they took hold of +His +- +feet +and +worshiped +Him +Then +says +to them +- +Jesus +Not +fear +Go +tell +the +brothers +of Me +so that +they should go +into +- +Galilee +and there +Me +will they see +now +[As] were going +they +behold +some +of the +guard +having gone +into +the +city +reported +to the +chief priests +all +the things +having been done +And +having been gathered together +with +the +elders +then +counsel +having taken +silver pieces +many +they gave +to the +soldiers +saying +Say +that +the +disciples +of Him +by night +having come +stole +Him +we +being asleep +And +if +is heard +this +by +the +governor +we +will persuade +and +you +out of trouble +will keep +And +- +having taken +money +they did +as +they were instructed +And +is spread abroad +the +report +this +among [the] +Jews +until +the +present +day +And +- +the eleven +disciples +went +into +- +Galilee +to +the +mountain +where +assigned +them +- +Jesus +And +having seen +Him +they worshiped +however +some +doubted +And +having come to [them] +- +Jesus +spoke +to them +saying +Has been given +to Me +all +authority +in +heaven +and +on +the +earth +therefore +Having gone +disciple +all +the +nations +baptizing +them +in +the +name +of the +Father +and +of the +Son +and +of the +Holy +Spirit +teaching +them +to observe +all things +whatever +I commanded +you +And +behold +I +with +you +am +all +the +days +until +the +completion +of the +age +[The] beginning +of the +gospel +of Jesus +Christ +Son +of God +As +it has been written +in +- +Isaiah +the +prophet +Behold +I send +the +messenger +of Me +before +face +of You +who +will prepare +the +way +of You +[The] voice +of one crying +in +the +wilderness +Prepare +the +way +of [the] Lord +straight +make +the +paths +of Him +Came +John +- +baptizing +in +the +wilderness +proclaiming +[a] baptism +of repentance +for +forgiveness +of sins +And +were going out +to +him +all +the +of Judea +region +and +- +of Jerusalem +all +and +were being baptized +by +him +in +the +Jordan +river +confessing +the +sins +of them +And +was +- +John +clothed in +hair +of a camel +and +a belt +of leather +around +the +waist +of him +and +he is eating +locusts +and +honey +wild +And +he was preaching +saying +He comes +who +[is] mightier +than I +after +me +of whom +not +I am +sufficient +having stooped down +to untie +the +strap +of the +sandals +of Him +I +baptized +you +with water +however +He +will baptize +you +[the] Spirit +Holy +And +it came to pass +in +those +- +days +[that] came +Jesus +from +Nazareth +- +of Galilee +and +was baptized +in +the +Jordan +by +John +And +immediately +going up +from +the +water +he saw +tearing open +the +heavens +and +the +Spirit +as +a dove +descending +upon +Him +And +a voice +came +out of +the +heavens +You +are +the +Son +of Me +the +beloved +in +You +I am well pleased +And +immediately +the +Spirit +Him +drives out +into +the +wilderness +And +He was +in +the +wilderness +forty +days +being tempted +by +- +Satan +And +He was +with +the +wild animals +and +the +angels +were ministering +to Him +And +after +the +delivering up +- +of John +came +- +Jesus +into +- +Galilee +proclaiming +the +gospel +- +of God +and +saying +- +Has been fulfilled +the +time +and +has drawn near +the +kingdom +- +of God +repent +and +believe +in +the +gospel +And +passing +by +the +Sea +- +of Galilee +He saw +Simon +and +Andrew +the +brother +of Simon +casting a net +into +the +sea +for +they were +fishermen +And +said +to them +- +Jesus +Come +after +Me +and +I will make +you +to become +fishers +of men +And +immediately +having left +the +nets +they followed +Him +And +having gone on +a little +He saw +James +the [son] +- +of Zebedee +and +John +the +brother +of him +and +they +[were] in +the +boat +adjusting +the +nets +And +immediately +He called +them +and +having left +the +father +of them +Zebedee +in +the +boat +with +the +hired servants +they went away +after +Him +And +they go +into +Capernaum +and +immediately +on the +Sabbaths +having entered +into +the +synagogue +He was teaching +And +they were astonished +at +the +teaching +of Him +for +He was +teaching +them +as +authority +having +and +not +as +the +scribes +And +immediately +there was +in +the +synagogue +of them +a man +with +a spirit +unclean +and +he cried out +saying +What +to us +and +to You +Jesus +of Nazareth +Did You come +to destroy +us +I know +You +who +are +the +Holy [One] +- +of God +And +rebuked +him +- +Jesus +Be silent +and +come forth +out of +him +And +the +spirit +- +unclean +having thrown into convulsions +him +and +having cried +in a voice +loud +it came forth +out of +him +And +were astonished +all +so as +to question +themselves +saying +What +is +this +teaching +new +With +authority +even +the +spirits +- +unclean +He commands +and +they obey +Him +And +went out +the +news +of Him +immediately +everywhere +into +all +the +surrounding region +- +of Galilee +And +immediately +out of +the +synagogue +having gone forth +they came +into +the +house +of Simon +and +Andrew +with +James +and +John +and +- +the mother-in-law +of Simon +was laying sick +fevering +And +immediately +they speak +to Him +about +her +And +having come to [her] +He raised up +her +having taken hold +of the +hand +And +left +her +the +fever +and +she began to minister +to them +now +Evening +having come +when +went down +the +sun +they began bringing +to +Him +all +those +sick +being +and +those +being possessed by demons +And +was +gathered together +all +the +city +at +the +door +And +He healed +many +sick +being +of various +diseases +and +demons +many +He cast out +And +not +He would allow +to speak +the +demons +because +they knew +Him +And +very early +in night +still much +having risen up +He went out +and +departed +into +solitary +a place +and there +He was praying +And +went after +Him +Simon +and +those +with +him +and +having found +Him +also +they say +to Him +- +Everyone +seeks +You +And +He says +to them +Let us go +another way +into +the +neighboring +towns +so that +also +there +I might preach +therefore +for +this +have I come forth +And +He was going +preaching +in +the +synagogues +of them +in +all +- +Galilee +and +- +demons +casting out +And +comes +to +Him +a leper +imploring +Him +and +kneeling down to Him +saying +to Him +- +If +You are willing +You are able +me +to cleanse +And +having been moved with compassion +having stretched out +the +hand +of Him +He touched him +and +says +to him +I am willing +be you cleansed +And +immediately +departed +from +him +the +leprosy +and +he was cleansed +And +having sternly warned +him +immediately +He sent away +him +And +He says +to him +See [that] +nothing +to none +you speak +But +go +yourself +show +to the +priest +and +offer +for +the +cleansing +of you +what +commanded +Moses +for +a testimony +to them +And +- +having gone out +he began +to proclaim +much +and +to spread abroad +the +matter +so that +no longer +He +was able +openly +into [the] +city +to enter +but +out +in +solitary +places +He was +and +they were coming +to +Him +from every quarter +And +He having entered +again +into +Capernaum +after [some] +days +it was heard +that +in +[the] house +He is +And +were gathered together +many +so that +no more +to have space +not even +- +at +the +door +and +He was speaking +to them +the +word +And +they come +bringing +to +Him +a paralytic +being carried +by +four +And +not +being able +to come near +to Him +on account of +the +crowd +they removed +the +roof +where +He was +and +having broken up [it] +they let down +the +pallet +on which +the +paralytic +was lying +And +- +Jesus +having seen +the +faith +of them +He says +to the +paralytic +Son +are forgiven +of you +the +sins +now +Were +some +of the +scribes +there +sitting +and +reasoning +in +the +hearts +of them +Why +this [man] +thus +does speak +He blasphemes +Who +is able +to forgive +sins +if +not +alone +- +God +And +immediately +- +Jesus +having known +in the +spirit +of Him +that +thus +they are reasoning +within +themselves +He says +to them +Why +these things +reason you +in +the +hearts +of you +Which +is +easier +to say +to the +paralytic +Are forgiven +of you +the +sins +or +to say +Arise +and +take up +the +mat +of you +and +walk +however +That +you might know +that +authority +has +the +Son +- +of Man +to forgive +sins +on +the +earth +He says +to the +paralytic +To you +I say +arise +take up +the +mat +of you +and +go +to +the +home +of you +And +he arose +and +immediately +having taken up +the +mat +he went forth +before +all +so as for +to be amazed +all +and +to glorify +- +God +saying +- +Thus +never +did we see +And +He went forth +again +beside +the +sea +and +all +the +crowd +was coming +to +Him +and +He taught +them +And +passing on +He saw +Levi +the [son] +- +of Alphaeus +sitting +at +the +tax booth +and +He says +to him +Follow +Me +And +having arisen +he followed +Him +And +it came to pass +reclining +of Him +in +the +house +of him +that +many +tax collectors +and +sinners +were reclining with +- +Jesus +and +the +disciples +of Him +for +there were +many +and +they were following +Him +And +the +scribes +of the +Pharisees +having seen +Him +eating +with +the +sinners +and +tax collectors +were saying +to the +disciples +of Him +Why +with +the +tax collectors +and +sinners +does He eat +And +having heard +- +Jesus +says +to them +No +need +of a physician +have +those +being strong +but +those +sick +being +Not +I came +to call +[the] righteous +but +sinners +And +were +fasting +the +disciples +of John +and +the +Pharisees +And +they come +and +say +to Him +Because of +why +the +disciples +of John +and +the +disciples +of the +Pharisees +fast +but +- +Your +disciples +not +fast +And +said +to them +- +Jesus +Not +are able +the +sons +of the +bridechamber +in +which +the +bridegroom +with +them +is +to fast +As long as +time +they have +the +bridegroom +with +them +not +they are able +to fast +however +Will come +[the] days +when +will have been taken away +from +them +the +bridegroom +and +then +they will fast +in +those +the +days +No one +a patch +of cloth +unshrunk +sews +on +clothing +old +now +if +not +tears away +the +patch +- +new +from +it +from the +old +And +worse +a tear +takes place +And +no one +puts +wine +new +into +wineskins +old +now +if +not +will burst +the +wine +the +wineskins +and +the +wine +will be destroyed +and +the +wineskins +Instead +wine +new +into +wineskins +new +And +it came to pass +He +on +the +Sabbaths +is passing +through +the +grainfields +and +the +disciples +of Him +began +[their] way +to make +plucking +the +heads of grain +And +the +Pharisees +were saying +to Him +Behold +why +do they +on the +Sabbaths +that which +not +is lawful +And +He said +to them +Never +did you read +what +did +David +when +need +he had +and +hungered +he +and +those +with +him +How +he entered +into +the +house +- +of God +in [the days of] +Abiathar +the high priest +and +the +loaves +of the +presentation +ate +which +to eat +not +it is lawful +if +not +for the +priests +And +he gave +even +to those +with +him +being +And +He said +to them +The +Sabbath +on account of +the +man +was made +and +not +the +man +on account of +the +Sabbath +So then +is +the +Son +- +of Man +Lord +also even +of the +Sabbath +And +He entered +again +into +synagogue +and +there was +there +a man +withered +having +the +hand +and +they were watching +Him +whether +on the +Sabbaths +He will heal +him +in order that +they might accuse +Him +And +He says +to the +man +- +the +withered +hand +having +Arise +into +the +midst +And +He says +to them +Is it lawful +on the +Sabbaths +to do good + +or +to do evil +Life +to save +or +to kill +But +- +they were silent +And +having looked around on +them +with +anger +being grieved +at +the +hardness +of the +heart +of them +He says +to the +man +Stretch out +the +hand +And +he stretched [it] out +and +was restored +the +hand +of him +And +having gone out +the +Pharisees +immediately +with +the +Herodians +counsel +began to take +against +Him +how +Him +they might destroy +And +- +Jesus +with +the +disciples +of Him +withdrew +to +the +sea +and +great +a multitude +from +- +Galilee +followed +and +from +- +Judea +and +from +Jerusalem +and +from +- +Idumea +and +beyond +the +Jordan +and +around +Tyre +and +Sidon +A multitude +great +having heard +how much +He was doing +came +to +Him +And +He spoke +to the +disciples +of Him +that +a boat +might wait upon +Him +on account of +the +crowd +that +not +they might press upon +Him +for +Many +He healed +so as for +to press upon +Him +that +Him +they might touch +as many as +had +diseases +And +the +spirits +- +unclean +whenever +Him +they beheld +were falling down before +Him +and +crying out +saying +- +You +are +the +Son +- +of God +And +much +He would rebuke +them +so that +not +Him +known +they should make +And +He goes up +on +the +mountain +and +calls near +those whom +he wanted +Himself +and +they went +to +Him +And +He appointed +twelve +that +they might be +with +Him +and +that +He might send +them +to preach +and +to have +authority +to cast out +- +demons +And +He appointed +the +Twelve +And +He added +[the] name +to +Simon +Peter +and +James +the [son] +of +Zebedee +and +John +the +brother +- +of James +and +He added +to them [the] +name +Boanerges +which +is +Sons +of thunder +and +Andrew +and +Philip +and +Bartholomew +and +Matthew +and +Thomas +and +James +the [son] +- +of Alphaeus +and +Thaddaeus +and +Simon +the +Zealot +and +Judas +Iscariot +who +also +betrayed +Him +And +He comes +to +a house +and +comes together +again +a +crowd +so that +not +are they able +them +even +bread +to eat +And +having heard [of it] +those +belonging to +Him +went out +to seize +Him +for +they were saying +- +He is out of His mind +And +the +scribes +those +from +Jerusalem +having come down +were saying +- +Beelzebul +He has +and +- +By +the +prince +of the +demons +He casts out +the +demons +And +having called to [Him] +them +in +parables +He began speaking +to them +How +is able +Satan +Satan +to cast out +And +if +a kingdom +against +itself +is divided +not +is able +to stand +the +kingdom +that +And +if +a house +against +itself +is divided +not +will be able +the +house +that +to stand +And +if +- +Satan +has risen up +against +himself +and +has been divided +not +he is able +to stand +but +an end +is coming to +But +not +is able +no one +into +the +house +of the +strong man +having entered +the +goods +of him +to plunder +if +not +first +the +strong man +he binds +And +then +the +house +of him +he will plunder +Truly +I say +to you +that +will be forgiven +the +sons +the +of men +all +the +sins +and +the +blasphemies +if +as many as +they shall have blasphemed +however +- +Whoever +shall blaspheme +against +the +Spirit +- +Holy +not +has +forgiveness +to +the +age +but +guilty +is +[of] eternal +sin +For +they were saying +A spirit +unclean +he has +And +arrive +the +mother +of Him +and +the +brothers +of Him +and +outside +standing +sent +to +Him +calling +Him +And +was sitting +around +Him +a crowd +And +they said +to Him +Behold +the +mother +of You +and +the +brothers +of You +and +the +sister +of you +outside +are seeking +You +And +He answering +them +says +Who +are +the +mother +of Me +and +the +brothers +And +having looked around on +those who +around +Him +in a circle +were sitting +He says +Behold +the +mother +of Me +and +the +brothers +of Me +- +Whoever +shall do +the +will +- +of God +he +brother +of Me +and +sister +and +mother +is +And +again +He began +to teach +beside +the +sea +And +was gathered together +to +Him +a crowd +great +so that +He +into +a boat +having entered +sat +in +the +sea +and +all +the +crowd +close to +the +sea +on +the +land +was +And +He began teaching +them +in +parables +many things +and +He was saying +to them +in +the +teaching +of Him +Listen +Behold +went out +the [one] +sowing +to sow +And +it came to pass +as +- +he sowed +- +some +fell +along +the +road +and +came +the +birds +and +devoured +it +And +other +fell +upon +the +rocky place +where +not +it had +soil +much +and +immediately +it sprang up +because of +the +not +having +depth +of soil +And +after +rose +the +sun +it was scorched +and +because of +- +not +having +root +it withered away +And +other +fell +among +the +thorns +and +grew up +the +thorns +and +choked +it +and +fruit +no +it yielded +And +other +fell +into +the +soil +- +good +and +began yielding +fruit +growing up +and +increasing +and +bearing +one +thirtyfold +and +one +sixty +and +one +a hundred +And +He was saying +He who +has +ears +to hear +let him hear +And +when +He was +with +alone +began asking +Him +those +around +Him +with +the +Twelve +about the +parable +And +He was saying +to them +To you +has been given +the +mystery +of the +kingdom +- +of God +however +To those +who are +outside +in +parables +- +everything +is done +so that +Seeing +they might see +and +not +perceive +and +hearing +they might hear +and +not +understand +lest +ever +they should turn +and +should be forgiven +them +And +He says +to them +Not +understand you +the +parable +this +And +how +all +the +parables +will you understand +The [one] +sowing +the +word +sows +now +These +are +they +along +the +road +where +is sown +the +word +and +when +they hear +immediately +comes +- +Satan +and +takes away +the +word +- +having been sown +in +them +And +are +likewise +those +upon +the +rocky places +sown +these +who +when +they hear +the +word +immediately +with +joy +receive +it +and +not +they have +root +in +themselves +but +temporary +are +then +having arisen +tribulation +or +persecution +on account of +the +word +immediately +they fall away +And +these +are +those +among +the +thorns +sown +These +are +those +the +word +having heard +and +the +cares +- +of this age +and +the +deceit +of the +riches +and +- +of +the +other things +desires +entering in +choke +the +word +and +unfruitful +it becomes +And +are +those +upon +the +soil +- +good +having been sown +these +such as +hear +the +word +and +receive [it] +and +bring forth fruit +one +thirtyfold +and +one +sixty +and +one +a hundred +And +He was saying +to them +- +Not +is brought in +the +lamp +so that +under +the +basket +it might be put +or +under +the +bed +[Is it] not +that +upon +the +lampstand +it might be put +for +Nothing +there is +which [is] +hidden +if +not +that +it should be made manifest +nor +has taken place +a secret thing +but +that +it should come +to +light +If +anyone +has +ears +to hear +let him hear +And +He was saying +to them +Take heed +what +you hear +With +what +measure +you measure +it will be measured +to you +and +more will be added +to you +for +Whoever +may have +it will be given +to him +and +he who +not +has +even +that which +he has +will be taken away +from +him +And +He was saying +Thus +is +the +kingdom +- +of God +as +a man +should cast +the +seed +upon +the +earth +and +should sleep +and +rise +night +and +day +and +the +seed +should sprout +and +grow +how +not +knows +he +Of itself +the +earth +brings forth fruit +first +a plant +then +an ear +then +full +grain +in +the +ear +then +When +offers itself +the +fruit +immediately +he sends +the +sickle +for +has come +the +harvest +And +He was saying +To what +shall we liken +the +kingdom +- +of God +Or +in +what +parable +it +shall we present +As +to a grain +of mustard +which +when +it has been sown +upon +the +earth +smallest +is +of all +the +seeds +which [are] +upon +the +earth +and +when +it has been sown +it grows up +and +becomes +greater +than all +the +garden plants +and +it produces +branches +great +so that +are able +under +the +shadow +of it +to perch +the +birds +of the +air +And +with such +parables +many +He kept speaking +to them +the +word +as +they were able +to hear +then +Without +parables +not +would He speak +to them +however +in +private +to His +own +disciples +He would explain +all things +And +He says +to them +on +that +- +day +evening +having come +Let us pass over +to +the +other side +And +having dismissed +the +crowd +they take with [them] +Him +since +He was +in +the +boat +also +other +boats +were +with +Him +And +comes +a storm +violent +of wind +And +the +waves +were breaking +over +the +boat +so that +already +is being filled up +the +boat +And +He +was +in +the +stern +on +the +cushion +sleeping +And +they awaken +Him +and +say +to Him +Teacher +not +is it concern +to You +that +we perish +And +having been awoken +He rebuked +the +wind +and +said +to the +sea +Silence +be still +And +abated +the +wind +and +there was +a calm +great +And +He said +to them +Why +fearful +are you +Still not + + +have you +faith +And +they feared +[with] fear +great +and +were saying +to +each other +then +Who +this +is +that +even +the +wind +and +the +sea +obey +Him +And +they came +to +the +other side +of the +sea +to +the +region +of the +Gerasenes +And +having gone forth +of Him +out of +the +boat +immediately +met +Him +out of +the +tombs +a man +with +a spirit +unclean +who +the +dwelling +had +in +the +tombs +And +not even +with chains +no longer +anyone +was able +him +to bind +because +that +he +often +with shackles +and +chains +had been bound +and +had been torn in two +by +him +the +chains +and +the +shackles +had been shattered +and +no one +was able +him +to subdue +And +constantly +all +night +and +day +in +the +tombs +and +in +the +mountains +he was +crying out +and +cutting +himself +with stones +And +having seen +- +Jesus +from +afar +he ran +and +fell on his knees +before Him +And +having cried +in a voice +loud +he said +What +to me +and +to You +Jesus +Son +- +of God +the +Most High +I adjure +You +- +by God +not +me +torment +for +He was saying +to him +the +spirit +- +unclean +You come forth +out of +the +man +And +He was asking +him +What [is] +[the] name +of you +And +saying +he answered +Legion +[is] name +to Me +because +many +we are +And +he begged +Him +numerous times +that +not +them +He would send +out of +the +country +now +There was +there +near +the +mountain +a herd +of pigs +great +feeding +And +they begged +Him +saying +Send +us +into +the +pigs +so that +into +them +we may enter +And +He allowed +them +And +having gone out +the +spirits +- +unclean +entered +into +the +pigs +and +rushed +the +herd +down +the +steep bank +into +the +sea +about +two thousand +and +they were drowned +in +the +sea +And +those +feeding +them +fled +and +proclaimed [it] +to +the +city +and +to +the +country +And +they went out +to see +what +it is +that +has been done +And +they come +to +- +Jesus +and +see +the [man] +possessed by demons +the [one] +having had +the +legion +sitting +clothed +and +sound minded +and +they were afraid +And +related +to them +those +having seen [it] +how +it happened +to the [one] +being possessed by demons +and +concerning +the +pigs +And +they began +to implore +Him +to depart +from +the +region +of them +And +having entered +He +into +the +boat +was begging +Him +the [one] +having been possessed by demons +that +with +Him +he might be +And +not +He did permit +him +but +He says +to him +Go +to +the +home +of you +to +- +your own +and +report +to them +how much +the +Lord +for you +did +and +had mercy on +you +And +he departed +and +began +to proclaim +in +the +Decapolis +how much +had done +for him +- +Jesus +and +all +were marveling +And +having passed over +- +Jesus +in +the +boat +again +to +the +other side +was gathered +a crowd +great +to +Him +and +He was +beside +the +sea +And +comes +one +of the +synagogue rulers +named +Jairus +and +having seen +Him +falls +at +the +feet +of Him +and +he begs +Him +much +saying +- +The +little daughter +of me +at the end +is holding +that +having come +You would lay +the +hands +on her +so that +she might be cured +and +she shall live +And +He departed +with +him +And +was following +Him +a crowd +great +and +pressing in on +Him +And +a woman +being +with +a flux +of blood +twelve +years +and +much +having suffered +under +many +physicians +and +having spent +the +of +her +all +and +in no way +having benefited +but +rather +to +the +worse +having come +having heard +- +concerning +- +Jesus +having come up +in +the +crowd +behind +she touched +the +clothing +of Him +for +She was saying +- +If +I shall touch +even +the +garments +of Him +I will be healed +And +immediately +was dried up +the +flow +of the +blood +of her +and +she knew +in the +body +that +she was healed +from +the +affliction +And +immediately +- +Jesus +having known +in +Himself +the +out of +Him +power +having gone forth +having turned +in +the +crowd +said +Who +touched +of Me +the +garments +And +were saying +to Him +the +disciples +of Him +You see +the +crowd +pressing in on +You +and +say You +Who +Me +touched +And +He was looking around +to see +the [one] +this +having done +And +- +the woman +having been frightened +and +trembling +knowing +what +had been done +to her +came +and +fell down before +Him +and +told +Him +all +the +truth +And +- +He said +to her +Daughter +the +faith +of you +has healed +you +go +in +peace +and +be +sound +from +the +affliction +of you +[While] yet +He +is speaking +they come +from +the +ruler of synagogue’s [house] +saying +- +The +daughter +of You +is dead +why +still +trouble you +the +Teacher +And +- +Jesus +having heard +the +word +spoken +says +to the +ruler of the synagogue +Not +fear +only +believe +And +not +He allowed +no one +with +Him +to follow +if +not +- +Peter +and +James +and +John +the +brother +of James +And +they come +to +the +house +of the +ruler of the synagogue +and +He beholds +a commotion +and +weeping +and +wailing +much +And +having entered +He says +to them +Why +make you commotion +and +weep +The +child +not +is dead +but +sleeps +And +they were laughing at +Him +then +He +having put out +all +takes with [Him] +the +father +of the +child +and +the +mother +and +those +with +Him +and +enters in +where +was +the +child +And +having taken +the +hand +of the +child +He says +to her +Talitha +koum +Which +is +translated +- +Little girl +to you +I say +arise +And +immediately +arose +the +girl +and +began walking +for +she was +of years +twelve +And +they were overcome +immediately +with amazement +great +And +He instructed +them +strictly +that +no one +should know +this +and +He commanded +to be given +to her +to eat +And +He went out +from there +and +came +into +the +hometown +of Him +and +follow +Him +the +disciples +of Him +And +having come +[the] Sabbath +He began +to teach +in +the +synagogue +and +- +many +hearing +were astonished +saying +From where +to this [man] +these things +and +what [is] +the +wisdom +- +having been given +to Him +even +the +miracles +such +by +the +hands +of Him +are done +Not +this +is +the +carpenter +the +son +- +of Mary +and +brother +of James +and +Joseph +and +Judas +and +Simon +And +not +are +the +sisters +of Him +here +with +us +And +they took offense +at +Him +And +said +to them +- +Jesus +- +Not +is +a prophet +without honor +if +not +in +the +hometown +of him +and +among +- +relatives +of him +and +in +the +household +of him +And +not +He was able +there +to do +not any +work of power +if +not +on a few +sick +having laid +the +hands +He healed +And +He was amazed +because of +the +unbelief +of them +And +He was going +the +villages +around +teaching +And +He calls near +the +Twelve +and +He began +them +to send forth +two +[by] two +and +He gave +to them +authority +over the +spirits +- +unclean +And +He instructed +them +that +nothing +they should take +for [the] +journey +if +not +a staff +only +no +bread +nor +bag +nor +in +the +belt +money +but +wearing +sandals +and +not +put on +two +tunics +And +He would say +to them +if +Wherever +you enter +into +a house +there +remain +until +- +you go out +from there +And +- +whatever +place +not +will receive +you +nor +hear +you +departing +from there +shake off +the +dust +which [is] +under +the +feet +of you +for +a testimony +against them +And +having gone out +they preached +that +they should repent +And +demons +many +they were casting out +and +were anointing +with oil +many +sick +and +healing [them] +And +heard +- +King +Herod +for +well known +became +the +name +of Him +And +they were saying +- +John +the [one] +baptizing +is risen +out from +[the] dead +and +because of +this +operate +the +miraculous powers +in +him +however +Others +were saying +- +Elijah +He is +now +Others +were saying +- +A prophet +like +one +of the +prophets +now +Having heard +- +Herod +was saying +Whom +I +beheaded +John +he +is risen +for +Himself +- +Herod +having sent +seized +- +John +and +bound +him +in +prison +on account of +Herodias +the +wife +of Philip +the +brother +of him +because +her +he had married +for +Had been saying +- +John +- +to Herod +- +Not +it is lawful +for you +to have +the +wife +of the +brother +of you +And +- +Herodias +held it +against him +and +wished +him +to kill +and +not +was able +for +- +Herod +was afraid of +- +John +knowing +him +[to be] a man +righteous +and +holy +and +he kept safe +him +And +having heard +him +greatly +he was perplexed +and +gladly +him +heard +And +having come +[a] day +opportune +when +Herod +on the +birthday +of him +a banquet +made +to the +great men +of him +and +to the +chief captains +and +to the +leading [men] +- +of Galilee +and +having come in +the +daughter +of herself +- +Herodias +and +having danced +pleased +- +Herod +and +those +reclining with [him] +And +- +the king +said +to the +girl +Ask +me +if +whatever +you wish +and +I will give +to you +And +he swore +to her +that +if +me +you might ask +I will give +you +up to +half +of the +kingdom +of me +And +having gone out +she said +to the +mother +of her +What +shall I ask +And +- +she said +The +head +of John +the [one] +baptizing +And +having entered +immediately +with +haste +to +the +king +she asked +saying +I desire +that +at once +you give +to me +upon +a platter +the +head +of John +the +Baptist +And +encompassingly sorrowful +having been made +the +king +on account of +the +oaths +and +those +reclining with [him] +not +was he willing +to refuse +her +And +immediately +having sent +an executioner +the +king +he commanded +to be brought +the +head +of him +And +having gone +he beheaded +him +in +the + +and +brought +the +head +of him +upon +a platter +and +gave +it +to the +girl +and +the +girl +gave +it +to the +mother +of her +And +having heard [it] +the +disciples +of him +came +and +took up +the +body +of him +and +laid +it +in +[a] tomb +And +are gathered together +the +apostles +to +- +Jesus +and +they related +to him +all things +what +they had done +and +what +they had taught +And +He said +to them +Come +you +yourselves +apart +own +to +[a] solitary +place +and +rest +a little +for +Were +those +coming +and +those +going +many +and +not even +to eat +had they opportunity +And +they went away +by +the +boat +into +[a] solitary +place +by +themselves +And +they saw +them +going +and +recognized +many +and +on foot +from +all +the +cities +ran together +there +and +went before +them +And +having gone out +He saw +a great +crowd +and +was moved with compassion +toward +them +because +they were +like +sheep +not +having +a shepherd +And +He began +to teach +them +many things +And +already +the hour +late +being +having come +to Him +the +disciples +of Him +were saying +- +Desolate +is +the +place +and +already [it is] +an hour +late +Dismiss +them +that +having gone +to +the +surrounding +region +and +villages +they might buy +for themselves +something +to eat +But +- +answering +He said +to them +Give +to them +you +[something] to eat +And +they say +to Him +Having gone +shall we buy +denarii +two hundred +of bread +and +give +them +to eat +And +- +He says +to them +How many +loaves +have you +Go +see +And +having known +they say +Five +and +two +fish +And +He commanded +them +to make recline +all +groups +[by] groups +on +the +green +grass +And +they sat down +groups +[by] groups +by +hundreds +and +by +fifties +And +having taken +the +five +loaves +and +the +two +fish +having looked up +to +the +heaven +He blessed +and +broke +the +loaves +and +He kept giving [them] +to the +disciples +that +they might set before +them +And +the +two +fish +He divided +among all +And +ate +all +and +were satisfied +And +they took up +of fragments +twelve +hand-baskets +full +and +of +the +fish +And +were +those +having eaten of +the +loaves +five thousand +men +And +immediately +He compelled +the +disciples +of Him +to enter +into +the +boat +and +to go before +to +the +other side +to +Bethsaida +until +He +should dismiss +the +crowd +And +having taken leave of +them +He departed +into +the +mountain +to pray +And +evening +having come +was +the +boat +in +the midst +of the +sea +and +He +alone +upon +the +land +And +He having seen +them +straining +in +the +rowing +for +was +the +wind +contrary +to them +About +[the] fourth +watch +of the +night +He comes +to +them +walking +on +the +sea +and +He was wishing +to pass by +them +And +- +having seen +Him +on +the +sea +walking +they thought +that +a ghost +[it] is +and +cried out +for +All +Him +saw +and +were troubled +And +- +immediately +He spoke +with +them +and +says +to them +Take courage +I +am [He] +not +fear +And +He went up +to +them +into +the +boat +and +ceased +the +wind +And +exceedingly +in +abundance +in +themselves +they were amazed +for +not +they understood +by +the +loaves +but +had been +hardened +of them +the +heart +And +having passed over +to +the +land +they came +to +Gennesaret +and +drew to shore +And +on having come +of them +out of +the +boat +immediately +having recognized +Him +they ran around +all +the +country +that +and +they began +on +the +mats +those +sick +being +to carry about +to wherever +they were hearing +that +He is +And +- +wherever +He entered +into +villages +or +into +cities +or +into +fields +in +the +marketplaces +they were laying +the +ailing +and +were begging +Him +that +only +the +fringe +the +clothing +of Him +they might touch +and +- +as many as +touched +Him +were being healed +And +are gathered together +to +Him +the +Pharisees +and +some +of the +scribes +having come +from +Jerusalem +And +they had seen +some +of the +disciples +of Him +that +with defiled +hands +that +is +unwashed +are eating +the +bread +For +- +the Pharisees +and +all +the +Jews +if +not +carefully +they wash +the +hands +not +eat +holding +the +tradition +of the +elders +and +[on coming] from +the market +if +not +they wash +not +they eat +and +other things +many +there are +which +they received +[for them] to hold to +washings +of cups +and +vessels +and +utensils +And +questioned +Him +the +Pharisees +and +the +scribes +Because of +why +not +walk +the +disciples +of You +according to +the +tradition +of the +elders +but +with unwashed +hands +eat +the +bread +And +- +He said +to them +Rightly +prophesied +Isaiah +concerning +you +- +hypocrites +as +it has been written +- +This +- +people +with the +lips +Me +honors +but +- +the heart +of them +far away +is kept +from +Me +now +In vain +they worship +Me +teaching +[as] doctrines +[the] precepts +of men +Having neglected +the +commandment +- +of God +you hold +to the +tradition +- +of men +And +He was saying +to them +Neatly +do you set aside +the +commandment +- +of God +that +the +tradition +of you +you might keep +for +Moses +said +Honor +the +Father +of you +and +the +mother +of you +and +The [one] +speaking evil of +father +or +mother +in death +must end +however +You +say [that] +if +says +a man +to the +father +or +the +mother +[It is] Corban +that +is +a gift +if +whatever +from +me +you might be profited +no longer +do you allow +him +anything +to do +for the +father +or +the +mother +making void +the +word +- +of God +for the +tradition +of you +which +you have handed down +And +like [things] +such +many +you do +And +having called to [Him] +again +the +crowd +He was saying +to them +Listen to +Me +all +and +understand +Nothing +there is +from outside +the +man +entering +into +him +which +is able +to defile +him +but +the things +out of +the +man +proceeding +are +the things +defiling +the +man +And +when +He went +into +[the] house +from +the +crowd +were asking +Him +the +disciples +of Him +the +parable +And +He says +to them +Thus +also +you +without understanding +are +Not +understand you +that +everything +- +from outside +entering +into +the +man +not +is able +him +to defile +because +not +it enters +into +of him +the +heart +but +into +the +belly +and +into +the +sewer +goes out +purifying +all +the +food +now +He was saying +- +That +out of +the +man +going forth +that +defiles +the +man +for +Within +from +the +heart +- +of men +- +thoughts +- +evil +go forth +sexual immorality +thefts +murders +adulteries +covetous desires +wickednesses +deceit +sensuality +an eye +evil +slander +pride +foolishness +All +these +- +evils +from within +go forth +and +they defile +the +man +also +From there +having risen up +He went away +into +the +region +of Tyre +And +having entered +into +a house +no one +to know [it] +He was wishing +and +not +He was able +to be hidden +But +immediately +having heard +about +Him +a woman +of whom +the +little daughter +of her +had +spirit +unclean +having come +fell +at +the +feet +of Him +Now +- +the woman +was +Gentile +Syrophoenician +by +race +and +kept asking +Him +that +the +demon +He should cast forth +out of +the +daughter +of her +And +He was saying +to her +Permit +first +to be satisfied +the +children +for +not +it is +good +to take +the +bread +of the +children +and +to the +dogs +to cast [it] +But +- +she answered +and +says +to Him +Yes +Lord +even +the +dogs +under +the +table +eat +of +the +crumbs +of the +children +And +He said +to her +Because of +this +- +word +go +has gone forth +out of +the +daughter +of you +the +demon +And +having gone away +to +the +home +of her +she found +the +child +lying +on +the +bed +and +the +demon +having gone out +And +again +having departed +from +the +region +of Tyre +He came +through +Sidon +to +the +Sea +- +of Galilee +through +[the] midst +of the +region +of [the] Decapolis +And +they bring +to Him +a deaf man +and +who spoke with difficulty +and +they implore +Him +that +He might lay +on him +the +hand +And +having taken away +him +from +the +crowd +aside +privately +He put +the +fingers +of Him +to +the +ears +of him +and +having spit +He touched +the +tongue +of him +and +having looked up +to +- +heaven +He sighed deeply +and +He says +to him +Ephphatha +that +is +Be opened +And +were opened +his +- +ears +and +immediately +was loosed +the +band +of the +tongue +of him +and +he began speaking +plainly +And +He instructed +them +that +no one +they should tell +however +As much as +He +kept instructing +them +more +abundantly +they were proclaiming [it] +And +above measure +they were astonished +saying +Well +all things +He has done +both +He makes +the +deaf +to hear +and +mute +to speak +In +those +- +days +again +great +[the] crowd +being +and +not +having +what +they might eat +having called to [Him] +the +disciples +He says +to them +I am moved with compassion +upon +the +crowd +because +already +days +three +they continue +with Me +and +nothing +have +that +they might eat +And +if +I shall send away +them +hungry +to +[the] homes +of them +they will faint +on +the +way +For +some +of them +from +afar +are come +And +answered +Him +the +disciples +of Him +- +From where +will be able +anyone +these +here +to satisfy +with bread +in +this desolate place +And +He was asking +them +How many +loaves +have you +And +- +they said +Seven +And +He directs +the +crowd +to recline +on +the +ground +And +having taken +the +seven +loaves +having given thanks +He broke [them] +and +kept giving [them] +to +disciples +of Him +that +they might set before [them] +And +they set [it] before +the +crowd +And +they had +small fish +a few +And +having blessed +them +He ordered +also +these +to be set before [them] +And +they ate +and +were satisfied +And +they took up +over and above +of fragments +seven +baskets +now +There were +about +four thousand +And +He sent away +them +And +immediately +having entered +into +the +boat +with +the +disciples +of Him +He came +into +the +district +of Dalmanutha +And +went out +the +Pharisees +and +began +to dispute with +Him +seeking +from +Him +a sign +from +- +heaven +testing +Him +And +having sighed deeply +in the +spirit +of Him +He says +Why +the +generation +this +seeks +a sign +Truly +I say +to you +if +there will be given +to the +generation +this +a sign +And +having left +them +again +having embarked +He went away +to +the +other side +And +they forgot +to take +loaves +and +if +not +one +loaf +not +they had +with +them +in +the +boat +And +He was instructing +them +saying +Watch out +take heed +of +the +leaven +of the +Pharisees +and +of the +leaven +of Herod +And +they were reasoning +with +one another +because +loaves +not +they have +And +having known [it] +He says +to them +Why +reason you +because +loaves +not +you have +Not yet +do you perceive +nor +understand +Hardened +do you have +the +heart +of you +Eyes +having +not +do you see +And +ears +having +not +do you hear +And +not +do you remember +When +the +five +loaves +I broke +for +the +five thousand +how many +hand-baskets +of fragments +full +took you up +They say +to Him +Twelve +When +the +seven +to +the +four thousand +of how many +baskets +[the] fillings +of fragments +took you up +And +said +Seven +And +He was saying +to them +Not yet +do you understand +And +they come +to +Bethsaida +And +they bring +to Him +a blind [man] +and +implore +Him +that +him +He might touch +And +having taken hold of +the +hand +of the +blind [man] +He led forth +him +out +of the +village +and +having spit +upon +the +eyes +of him +having laid +the +hands +upon him +He was asking +him +if +anything +you see +And +having looked up +he was saying +I see +the +men +for +as +trees +walking +I see [them] +Then +again +He laid +the +hands +upon +the +eyes +of him +and +he opened his eyes +and +he was restored +and +he began to see +clearly +everything +And +He sent +him +to +[the] home +of him +saying +Not +into +the +village +may you enter +And +went forth +- +Jesus +and +the +disciples +of Him +into +the +villages +of Caesarea +- +Philippi +And +on +the +way +He was questioning +the +disciples +of Him +saying +to them +Whom +Me +to be +do pronounce +- +men +And +- +they answered +Him +saying +- +John +the +Baptist +and +others +Elijah +now +others +- +one +of the +prophets +And +He +was questioning +them +however +You +whom +Me +to be +do pronounce +Answering +- +Peter +says +to Him +You +are +the +Christ +And +He warned +them +that +no one +they should tell +concerning +Him +And +He began +to teach +them +that +it is necessary for +the +Son +- +of Man +many things +to suffer +and +to be rejected +by +the +elders +and +the +chief priests +and +the +scribes +and +to be killed +and +after +three +days +to rise [again] +And +openly +the +word +He was speaking +And +- +Peter +having taken Him +to him +he began +to rebuke +Him +And +- +having turned +and +having looked upon +the +disciples +of Him +He rebuked +Peter +and +said +Get +behind +Me +Satan +for +not +you have in mind +the +things +of God +but +the +things +of men +And +having called to [Him] +the +crowd +with +the +disciples +of Him +He said +to them +If +anyone +desires +after +Me +to come +let him deny +himself +and +let him take up +the +cross +of him +and +let him follow +Me +for +if +Whoever +might desire +- +life +his +to save +will lose +it +now +- +whoever +will lose +the +life +of him +on account of +Me +and +of the +gospel +he will save +it +for +What +does it profit +a man +to gain +the +world +whole +and +to lose +the +soul +of him +for +What +shall give +a man +[as] an exchange +for the +soul +of him +for +if +Whoever +may be ashamed of +Me +and +- +My +words +in +the +generation +this +- +adulterous +and +sinful +also +the +Son +- +of Man +will be ashamed of +him +when +He shall come +in +the +glory +of the +Father +of Him +with +the +angels +- +holy +And +He was saying +to them +Truly +I say +to you +that +there are +some +of those +here +standing +who +no +not +shall taste +of death +until +- +they see +the +kingdom +- +of God +having come +with +power +And +after +days +six +takes along +- +Jesus +- +Peter +and +- +James +and +John +and +brings up +them +into +a mountain +high +apart +themselves +alone +And +He was transfigured +before +them +and +the +garments +of Him +became +shining +white +exceedingly +such as +a launderer +on +the +earth +not +is able +thus +to whiten +And +appeared +to them +Elijah +with +Moses +and +they were +talking with +- +Jesus +And +answering +- +Peter +says +- +to Jesus +Rabbi +good +it is +for us +here +to be +And +let us make +three +tabernacles +for You +one +and +for Moses +one +and +for Elijah +one +for +Not +he knew +what +he should say +for +terrified +they were +And +there came +a cloud +overshadowing +them +and +there came +a voice +out of +the +cloud +This +is +the +Son +of Me +the +beloved +listen you +to Him +And +suddenly +having looked around +no longer +no one +they saw +except +- +Jesus +alone +with +them +And +descending +of them +from +the +mountain +He instructed +them +that +to no one +what +they had seen +they should tell +if +not +until +the +Son +- +of Man +out from +[the] dead +had risen +And +that +saying +they kept +among +themselves +questioning +what +it is +- +out from +the dead +to rise +And +they were asking +Him +saying +- +Say +the +scribes +that +it behooves +Elijah +to come +first +And +- +He was saying +to them +indeed +Elijah +having come +first +restores +all things +and +how +has it been written +of +the +Son +- +of Man +that +many things +He should suffer +and +be set at naught +But +I say +to you +that +also +Elijah +has come +and +they did +to him +whatever +they desired +as +it has been written +of +him +And +having come +to +the +disciples +they saw +a crowd +great +around +them +and +scribes +arguing +with +them +And +immediately +all +the +crowd +having seen +Him +were greatly amazed +and +running to [Him] +were greeting +Him +And +He asked +them +What +are you disputing +with +them +And +answered +Him +one +out of +the +crowd +Teacher +I brought +the +son +of me +to +You +having +a spirit +mute +and +if +whenever +him +it seizes +it throws down +him +and +he foams +and +gnashes +- +his teeth +and +is withering away +And +I spoke +to the +disciples +of You +that +it +they might cast out +and +not +they had power +And +- +answering +him +He says +O +generation +unbelieving +Until +when +with +you +will I be +Until +when +will I bear with +you +Bring +him +to +Me +And +they brought +him +to +Him +And +having seen +Him +the +spirit +immediately +threw into convulsions +him +and +having fallen +upon +the +ground +he began rolling around +foaming +And +He asked +the +father +of him +How long +a time +is it +that +this +has been +with him +And +- +he said +From +childhood +And +often +both +into +fire +him +it casts +and +into +waters +that +it might destroy +him +But +if +anything +You are able [to do] +help +us +having compassion +on +us +And +- +Jesus +said +to him +- +If +You are able +All things +are possible +to the [one] +believing +Immediately +having cried out +the +father +of the +child +was saying +I believe +help +of me +the +unbelief +now +- +Jesus +Having seen +that +was running together +a crowd +He rebuked +the +spirit +- +unclean +saying +to it +- +Mute +and +deaf +spirit +I +command +you +come +out of +him +and +no more +may you enter +into +him +And +having cried out +and +much +having thrown him into convulsions +it came out +and +he became +as if +dead +in order for +- +many +to say +that +he was dead +And +- +Jesus +having taken +by the +hand +him +raised up +him +and +he arose +And +having entered +He +into +a house +the +disciples +of Him +in +private +were asking +Him +Why +we +not +were able +to cast out +it +And +He said +to them +This +- +kind +by +nothing +is able +to go out +if +not +by +prayer +From there +having gone forth +they were passing +through +- +Galilee +and +not +did He want +that +anyone +should know [it] +for +He was teaching +the +disciples +of Him +and +He was saying +to them +- +The +Son +- +of Man +is delivered +into [the] +hands +of men +and +they will kill +Him +and +having been killed +on the +third +day +He will arise +And +- +they did not understand +the +saying +and +they were afraid +Him +to ask +And +they came +to +Capernaum +And +in +the +house +having been +He was asking +them +What +on +the +way +were you discussing +And +- +they were silent +for +with +one another +they had been discussing +along +the +road +which [was] +greatest +And +having sat down +He called +the +Twelve +and +He says +to them +If +anyone +desires +first +to be +he will be +of all +last +and +of all +servant +And +having taken +a child +He set +it +in +midst +of them +and +having taken in [His] arms +it +He said +to them +- +Whoever +one +- +of such +little children +shall receive +in +the +name +of Me +Me +receives +and +- +whoever +Me +shall receive +not +Me +receives +but +the [One] +having sent +Me +Answered +Him +- +John +Teacher +we saw +someone +in +the +name +of You +casting out +demons +who +not +does follow +us +and +we were forbidding +him +because +not +he was following +us +And +- +Jesus +said +Not +forbid +him +for +No one +there is +who +will do +a work of power +in +the +name +of Me +and +will be able +readily +to speak evil of +Me +for +Whoever +not +is +against +us +for +us +is +for +- +Whoever +might give to drink +you +a cup +of water +in +name +because +Christ’s +you are +truly +I say +to you +that +no +not +shall he lose +the +reward +of him +And +- +whoever +might cause to stumble +one +of the +little ones +these +- +believing +better +it is +for him +rather +if +is put +a millstone +heavy +around +the +neck +of him +and +he has been cast +into +the +sea +And +if +should cause to stumble +you +the +hand +of you +cut off +it +better +it is +for you +crippled +to enter +into +- +life +than +- +two +hands +having +to go away +into +- +hell +into +the +fire +- +unquenchable +And +if +the +foot +of you +should cause to stumble +you +cut off +it +better +it is +for you +to enter +into +- +life +lame +than +the +two +feet +having +to be cast +into +- +hell +And +if +the +eye +of you +should cause to stumble +you +cast out +it +better +it is +for you +with one eye +to enter +into +the +kingdom +- +of God +than +two +eyes +having +to be cast +into +- +hell +where +the +worm +of them +not +dies +and +the +fire +not +is quenched +for +Everyone +with fire +will be salted +Good [is] +the +salt +however +if +the +salt +unsalty +becomes +with +what +it +will you season +Have +in +yourselves +salt +and +be at peace +with +one another +And +from there +having risen up +He comes +into +the +region +- +of Judea +and +beyond +the +Jordan +And +come together +again +crowds +to +Him +and +as +He had been accustomed +again +He was teaching +them +And +having come to [him] +the Pharisees +were demanding +of Him +if +it is lawful +for a husband +a wife +to divorce +testing +Him +And +- +He answering +said +to them +What +you +did command +Moses +And +- +they said +Permitted +Moses +a roll +of divorce +to write +and +to send [her] away +But +- +Jesus +said +to them +Because of +the +hardness of heart +of you +He wrote +for you +the +commandment +this +however +From +[the] beginning +of creation +Male +and +female +He made +them +On account of +this +will leave +a man +the +father +of him +and +- +mother +and +will be +the +two +for +flesh +one +Therefore +no longer +they are +two +but +one +flesh +therefore +What +- +God +has joined together +man +not +let separate +And +in +the +house +again +the +disciples +concerning +this +were asking +Him +And +He says +to them +- +Whoever +shall divorce +the +wife +of him +and +shall marry +another +commits adultery +against +her +And +if +a woman +having divorced +the +husband +of her +should marry +another +she commits adultery +And +they were bringing +to Him +little children +that +them +He might touch +But +- +the disciples +rebuked +them +now +Having seen +- +Jesus +was indignant +and +said +to them +Permit +the +little children +to come +to +Me +not +do hinder +them +for +To the +such +belongs +the +kingdom +- +of God +Truly +I say +to you +- +whoever +not +shall receive +the +kingdom +- +of God +as +a child +no +not +shall enter +into +it +And +having taken [them] in arms +them +He was blessing +having laid +the +hands +on +them +And +going forth +of Him +on +[the] journey +one +having run up +and +having knelt down to +Him +was asking +Him +Teacher +good +what +shall I do +that +life +eternal +I might inherit +And +- +Jesus +said +to him +Why +Me +call you +good +No one [is] +good +if +not +alone +- +God +The +commandments +you know +Not +shall you murder +not +shall you commit adultery +not +shall you steal +not +shall you bear false witness +not +shall you defraud +you shall honor +the +father +of you +and +the +mother +And +- +he was saying +to Him +Teacher +these +all +I have kept +from +[the] youth +of me +And +- +Jesus +having looked upon +him +loved +him +and +said +to him +One thing +to you +is lacking +Go +as much as +you have +sell +and +give +to the +poor +and +you will have +treasure +in +heaven +and +come +follow +Me +And +- +having been sad +at +the +word +he went away +grieving +for +he was [one] +having +possessions +many +And +having looked around +- +Jesus +says +the +disciples +of Him +How +difficultly +those +- +riches +having +into +the +kingdom +- +of God +will enter +And +- +the disciples +were astonished +at +the +words +of Him +But +- +Jesus +again +answering +says +to them +Children +how +difficult +it is +into +the +kingdom +- +of God +to enter +Easier +it is +[for] a camel +through +the +eye +of the +needle +to pass +than [for] +a rich man +into +the +kingdom +- +of God +to enter +And +- +exceedingly +they were astonished +saying +among +themselves +Then +who +is able +to be saved +Having looked on +them +- +Jesus +says +With +men +[it is] impossible +but +not +with +God +for +all things +[are] possible +with +- +God +Began +- +Peter +to say +to Him +Behold +we +have left +all +and +followed +You +Was saying +- +Jesus +Truly +I say +to you +no one +there is +who +has left +house +or +brothers +or +sisters +or +mother +or +father +or +children +or +lands +for the sake +of me +and +because +of the +gospel +if +not +shall take +now +in +the +time +this +a hundredfold +houses +and +brothers +and +sisters +and +mothers +and +children +and +lands +with +persecutions +and +in +the +age +which +is coming +life +eternal +however +Many +first +will be +last +and +the +last +first +then +They were +on +the +way +going up +to +Jerusalem +and +was +going on before +them +- +Jesus +and +they were astonished +then +those +following +were afraid +And +having taken to [Him] +again +the +Twelve +He began +them +to tell +the things +being about +to Him +to happen +- +Behold +we go up +to +Jerusalem +and +the +Son +- +of Man +will be betrayed +to the +chief priests +and +to the +scribes +and +they will condemn +Him +to death +and +will betray +Him +to the +Gentiles +And +they will mock +Him +and +will spit upon +Him +and +will flog +Him +and +will kill +and +on the +third +day +He will rise again +And +come up +to Him +James +and +John +the +sons +of Zebedee +saying to +Him +Teacher +we desire +that +if +whatever +we might ask +you +You would do +for us +And +- +He said +to them +do you desire +What +Me +to do +for you +And +- +they said +to Him +Grant +to us +that +one +at +of [us] +[Your] right hand +and +one +at +[Your] left hand +we might sit +in +the +glory +of You +And +- +Jesus +said +to them +Not +you know +what +you ask +Are you able +to drink +the +cup +which +I +drink +and +the +baptism +which +I +am baptized +to be baptized [with] +And +- +they said +to Him +We are able +And +- +Jesus +said +to them +The +cup +which +I +drink +you will drink +and +the +baptism +which +I +am baptized +you will be baptized [with] +but +- +to sit +at +[the] right hand +of Me +or +at +[the] left hand +not +is +Mine +to give +but [to those] +for whom +it has been prepared +And +having heard [this] +the +ten +began +to be indignant +about +James +and +John +And +having called near +them +- +Jesus +says +to them +You know +that +those +being accounted +to rule over +the +Gentiles +exercise lordship over +them +and +those +great ones +of them +exercise authority over +them +however +Not +thus +shall it be +among +you +Instead +- +whoever +desires +great +to become +among +you +will be +your +servant +and +- +whoever +desires +among +you +to become +first +will be +of all +slave +for +Even +the +Son +- +of Man +not +came +to be served +but +to serve +and +to give +the +life +of Him +[as] a ransom +for +many +And +they come +to +Jericho +And +as was going out +He +from +Jericho +and +the +disciples +of Him +and +a crowd +large +the +son +of Timaeus +Bartimaeus +blind +beggar +was sitting +beside +the +road +And +having heard +that +Jesus +of +Nazareth +it is +he began +to cry out +and +to say +Son +of David +Jesus +have mercy on +me +And +were rebuking +him +many +that +he should be silent +but +- +much +more +he kept crying out +Son +of David +have mercy on +me +And +having stopped +- +Jesus +commanded +to be called +him +And +they call +the +blind [man] +saying +to him +Take courage +Rise up +He calls +you +And +- +having cast away +the +cloak +of him +having risen up +he came +to +- +Jesus +And +answering +him +- +Jesus +says +What +to you +I should do +do you desire +And +- +the blind [man] +said +to Him +Rabboni +that +I may receive sight +And +- +Jesus +said +to him +Go +the +faith +of you +has healed +you +And +immediately +he received sight +and +he began following +Him +on +the +way +And +when +they drew near +to +Jerusalem +to +Bethphage +and +Bethany +near +the +Mount +- +of Olives +He sends +two +of the +disciples +of Him +and +says +to them +Go +into +the +village +- +before +you +and +immediately +entering +into +it +you will find +having been tied +a colt +upon +which +no one +of men +not yet +has sat +having untied +it +also +bring [it] +And +if +anyone +to you +says +Why +are you doing +this +say +the +Lord +of it +need +has +and +soon +it +He will send +back +here +And +they departed +and +found +the colt +having been tied +at +the door +outside +by +the +street +and +they untied +it +And +some +of those +there +standing +were saying +to them +What +are you doing +untying +the +colt +And +- +they spoke +to them +as +had commanded +- +Jesus +and +they allowed +them +And +they led +the +colt +to +- +Jesus +and +they cast upon +it +the +cloaks +of them +and +He sat +on +it +And +many +the +cloaks +of them +spread +on +the +road +then +others +branches +having been cut down +from +the +fields +And +those +going before +and +those +following +were crying out +Hosanna +Blessed is +the [One] +coming +in [the] +name +of [the] Lord +Blessed +[is] the +coming +kingdom +of the +father +of us +David +Hosanna +in +the +highest +And +He entered +into +Jerusalem +into +the +temple +and +late +already +being +the +hour +having looked around on +all things +He went out +to +Bethany +with +the +Twelve +And +on the +next day +having gone out +they +from +Bethany +He was hungry +And +having seen +from +afar +a fig tree +having +leaves +He went +perhaps +if +anything +He will find +on +it +And +having come +to +it +nothing +He found +if +not +leaves +for +the +season +not +it was +of figs +And +answering +He said +to it +No more +to +the +age +of +you +no one +fruit +may eat +And +were listening +the +disciples +of Him +And +they come +to +Jerusalem +And +having entered +into +the +temple +He began +to cast out +those +selling +and +those +buying +in +the +temple +and +the +tables +of the +money changers +and +the +seats +of those +selling +the +doves +He overturned +And +not +He would permit +that +anyone +should carry +a vessel +through +the +temple +And +He began teaching +and +was saying +to them +Not +has it been written +- +The +house +of Me +a house +of prayer +will be called +for all +the +nations +however +You +have made +it +a den +of robbers +And +heard [it] +the +chief priests +and +the +scribes +and +they were seeking +how +Him +they might destroy +for +they were afraid of +Him +for +all +the +crowd +was astonished +at +the +teaching +of Him +And +when +evening +came +they were going forth +out of +the +city +And +passing by +in the morning +they saw +the +fig tree +having been dried up +from [the] +roots +And +having remembered +- +Peter +says +to Him +Rabbi +look +the +fig tree +that +You cursed +is dried up +And +answering +- +Jesus +says +to them +Have +faith +from God +Truly +I say +to you +that +- +whoever +shall say +to the +mountain +this +Be you taken away +and +be you cast +into +the +sea +and +not +shall doubt +in +the +heart +of him +but +shall believe +that +what +he says +takes place +it will be done +for him +Because of +this +I say +to you +all things +whatever +praying +also +you ask +believe +that +you receive +and +it will be +to you +And +when +you may stand +praying +forgive +if +anything +you have +against +anyone +so that +also +the +Father +of you +who [is] +in +the +heavens +might forgive +you +the +trespasses +of you +And +they come +again +to +Jerusalem +And +in +the +temple +is walking +as He +come +to +Him +the +chief priests +and +the +scribes +and +the +elders +And +they were saying +to Him +By +what +authority +these things +are You doing +Or +who +You +gave +the +authority +this +that +these things +You should do +And +- +Jesus +said +to them +I will ask +you +one +question +and +you answer +Me +and +I will tell +you +by +what +authority +these things +I do +The +baptism +- +of John +from +heaven +was it +or +from +men +Answer +Me +And +they began reasoning +with +themselves +saying +If +we should say +From +heaven +He will say +then +Because of +why +not +did you believe +him +But +should we say +From +men +they were afraid of +the +people +for +all +were holding +- +John +that +truly +a prophet +he was +And +answering +- +to Jesus +they say +Not +do we know +And +- +Jesus +says +to them +Neither +I +tell +you +by +what +authority +these things +I do +And +He began +to them +in +parables +to speak +A vineyard +a man +planted +and +he placed around [it] +a fence +and +dug +a wine vat +and +built +a tower +and +rented out +it +to farmers +and +traveled abroad +And +he sent +to +the +farmers +at the +due time +a servant +that +from +the +farmers +he might receive +from +the +fruit +of the +vineyard +But +having taken +him +they beat [him] +and +sent [him] away +empty-handed +And +again +he sent +to +them +another +servant +and him +they struck on the head +and +treated shamefully +And +another +He sent +and him +they killed +also +many +others +indeed +some +beating +then +some +killing +Yet +having +one +son +beloved +he sent +him +last +to +them +saying +- +They will have respect for +the +son +of me +however +Those +- +farmers +to +themselves +said +- +This +is +the +heir +come +let us kill +him +and +ours +will be +the +inheritance +And +having taken +they killed +him +and +cast forth +him +outside +the +vineyard +What +will do +the +master +of the +vineyard +He will come +and +will destroy +the +farmers +and +will give +the +vineyard +to others +Not even +the +Scripture +this +have you read +[The] stone +which +rejected +those +building +this +has become +the +chief +corner +from [the] +Lord +was +this +and +it is +marvelous +in +[the] eyes +of us +And +they were seeking +Him +to lay hold of +and +they feared +the +crowd +for +they knew +that +against +them +the +parable +He had spoken +And +having left +Him +they went away +And +they send +to +Him +some +of the +Pharisees +and +of the +Herodians +that +Him +they might catch +in discourse +And +having come +they say +to Him +Teacher +we know +that +true +You are +and +not +there is care +to You +about +no one +for +not +You look +on [the] +appearance +of men +but +on the basis of +[the] truth +the +way +- +of God +teach +Is it lawful +to give +tribute +to Caesar +or +not +Should we pay +or +not +pay +And +- +knowing +of them +the +hypocrisy +He said +to them +Why +Me +do you test +Bring +Me +a denarius +that +I might see [it] +And +- +they brought [it] +And +He says +to them +Whose [is] +the +likeness +this +and +the +inscription +And +- +they said +to Him +Caesar’s +And +- +Jesus +said +to them +The things +of Caesar +give back +to Caesar +and +the things +- +of God +- +to God +And +they were amazed +at +Him +And +come +to +Him +Sadducees +who +say +a resurrection +not +there is +and +they began questioning +Him +saying +Teacher +Moses +wrote +for us +that +if +of anyone +a brother +should die +and +leave behind +a wife +and +not +leave +children +that +should take +the +brother +of him +the +wife +and +raise up +seed +for the +brother +of him +Seven +brothers +there were +and +the +first +took +a wife +and +dying +not +left +seed +And +the +second +took +her +and +died +not +having left +seed +and +the +third +likewise +And +the +seven +not +left +seed +Last +of all +also +the +woman +died +In +the +resurrection +when +they rise +of which +of them +wife +will she be +For +- +the seven +had +her +as wife +Was saying +to them +- +Jesus +Not +because of +this +do you err +not +knowing +the +Scriptures +nor +the +power +- +of God +for +When +out from +[the] dead +they rise +neither +do they marry +nor +are given in marriage +but +are +like +angels +in +the +heavens +now +Concerning +the +dead +that +they rise +not +have you read +in +the +book +of Moses +on +the +bush +how +spoke +to him +- +God +saying +I [am] +the +God +of Abraham +and +God +of Isaac +and +God +of Jacob +Not +He is +God +of [the] dead +but +of [the] living +Greatly +you err +And +having come up +one +of the +scribes +having heard +them +reasoning together +having seen +that +well +He answered +them +he questioned +Him +Which +is +commandment +[the] first +of all +Answered +- +Jesus +The +foremost +is +Hear this +O Israel +[The] Lord +- +God +of us +[the] Lord +One +is +and +you shall love +[the] Lord +- +God +of you +with +all +the +heart +of you +and +with +all +the +soul +of you +and +with +all +the +mind +of you +and +with +all +the +strength +of you +[The] second +this +You shall love +the +neighbor +of you +as +yourself +Greater +than these +another +commandment +not +there is +And +said +to Him +the +scribe +Right +Teacher +according to +truth +You have spoken +that +One +He is +and +not +there is +another +besides +Him +and +- +to love +Him +with +all +the +heart +and +with +all +the +understanding +and +with +all +the +strength +and +- +to love +the +neighbor +as +oneself +more important +is +than all +the +burnt offerings +and +sacrifices +And +- +Jesus +having seen +him +that +wisely +he answered +said +to him +Not +far +are you +from +the +kingdom +- +of God +And +no one +no longer +dared +Him +to question +And +answering +- +Jesus +was saying +teaching +in +the +temple +How +say +the +scribes +that +the +Christ +[the] son +of David +is +Himself +David +said +by +the +Spirit +- +Holy +Said +[the] Lord +to the +Lord +of me +Sit +at +[the] right hand +of Me +until +- +I place +of the +enemies +of You +[as] a footstool +of the +feet +of You +Himself +David +calls +Him +Lord +then +how +of him +son +is He +And +the +great +crowd +was listening +to Him +gladly +And +in +the +teaching +of Him +He was saying +Beware +of +the +scribes +- +desiring +in +robes +to walk about +and +greetings +in +the +marketplaces +and +first seats +in +the +synagogues +and +first places +at +the +feasts +those +devouring +the +houses +of the +widows +and +as a pretext +at great length +praying +These +will receive +greater +judgment +And +having sat down +opposite +the +treasury +He was watching +how +the +crowd +cast +money +into +the +treasury +and +many +rich +were casting [in] +much +And +having come +one +widow +poor +cast [in] +lepta +two +which +is +a kodrantes +And +having called to [Him] +the +disciples +of Him +He says +to them +Truly +I say +to you +that +the +widow +this +- +poor +more +has cast [in] +than all +of those +casting +into +the +treasury +for +All +out of +that which +was abounding +to them +cast [in] +however +she +out of +the +poverty +of her +cast [in] +all +as much as +she had +all +the +livelihood +of her +And +going forth +of Him +out of +the +temple +says +to Him +one +of the +disciples +of Him +Teacher +behold +what +stones +and +what +buildings +And +- +Jesus +said +to him +See you +these +- +great +buildings +No +not +shall be left +upon +stone +stone +which +no +not +shall be thrown down +And +sitting +of Him +upon +the +Mount +- +of Olives +opposite +the +temple +asked +Him +in +private +Peter +and +James +and +John +and +Andrew +Tell +us +when +these things +will be +And +what [will be] +the +sign +when +are going +these things +all +to be accomplished +And +- +Jesus +began +to say +to them +Take heed +lest +anyone +you +mislead +Many +will come +in +the +name +of Me +saying +- +I +am [He] +and +many +they will mislead +then +When +you shall hear of +wars +and +rumors +of wars +not +be disturbed +it must +come to pass +but +not yet [is] +the +end +for +Will rise up +nation +against +nation +and +kingdom +against +kingdom +There will be +earthquakes +throughout +places +there will be +famines +[The] beginning +of birth pains [are] +these +however +Take heed +you +to yourselves +they will betray +you +to +courts +and +in +synagogues +you will be beaten +and +before +governors +and +kings +you will stand +because +of Me +for +a testimony +to them +And +to +all +the +nations +first +to proclaim +the +gospel +it behooves +And +when +they might lead away +you +delivering [you] up +not +be anxious beforehand +what +you should say +but +if +whatever +might be given +to you +in +that +- +hour +that +speak +for +not +are +you +those +speaking +but +the +Spirit +- +Holy +And +will deliver up +brother +brother +to +death +and +father +child +and +will rise up +children +against +parents +and +will put to death +them +And +you will be +hated +by +all +on account of +the +name +of Me +however +the [one] +having endured +to +[the] end +he +will be saved +then +When +you see +the +abomination +of the +desolation +standing +where +not +it should +the [one] +reading +let him understand +then +those +in +- +Judea +let them flee +to +the +mountains +the [one] +upon +the +housetop +not +let him come down +nor +go in +anything +to take +out of +the +house +of him +and +the [one] +in +the +field +not +let him return +to +the things +behind +to take +the +clothing +of him +then +Woe +to those +in +womb +having +and +to the [ones] +nursing infants +in +those +- +days +then +Pray +that it +not +might be +in winter +for +will be [in] +the +days +those +tribulation +such as +never +has been +the like +from [the] +beginning +of creation +which +created +- +God +until +- +now +and +never +not +shall be +And +if +not +had shortened +[the] Lord +the +days +- +no +there would have been saved +any +flesh +but +on account of +the +elect +whom +He chose +He has shortened +the +days +And +if +then +anyone +to you +says +Behold +here [is] +the +Christ +Behold +there +not +you shall believe [it] +for +There will arise +false Christs +and +false prophets +and +will give +signs +and +wonders +so as +- +to deceive +if +possible +the +elect +however +You +take heed +I have foretold +to you +all things +But +in +those +- +days +after +the +tribulation +those +The +sun +will be darkened +and +the +moon +not +will give +the +light +of it +and +the +stars +will be +falling +out of +the +heaven +and +the +powers +that [are] +in +the +heavens +will be shaken +And +then +will they see +the +Son +- +of Man +coming +in +[the] clouds +with +power +great +and +glory +And +then +He will send +the +angels +and +will gather together +the +elect +of Him +from +the +four +winds +from [the] +end +of earth +to [the] +end +of heaven +now +Of +the +fig tree +learn +the +parable +When +already +the +branch +of it +tender +has become +and +it puts forth +the +leaves +you know +that +near +the +summer +is +So +also +you +when +you see +these things +coming to pass +know +that +near +He is +at [the] +doors +Truly +I say +to you +that +no +not +will have passed away +the +generation +this +until +that +these things +all +shall have taken place +The +heaven +and +the +earth +will pass away +but +- +the words +of Me +in no way +will pass away +now +Concerning +the +day +that +or +the +hour +no one +knows +not even +the +angels +in +heaven +nor +the +Son +if +not +the +Father +Take heed +watch +for +not +you know +when +the +time +is +[It is] like +a man +going on a journey +having left +the +house +of him +and +having given +the +servants +of him +- +authority +to each one +the +work +of him +And +the +doorkeeper +he commanded +that +he should keep watch +therefore +Watch +for +not +you know +when +the +master +of the +house +comes +or +at evening +or +at midnight +or +when the rooster crows +or +morning +lest +having come +suddenly +he should find +you +sleeping +now +What +to you +I say +to all +I say +Watch +now +It would be +the +Passover +and +the +[Feast of] Unleavened Bread +after +two +days +And +were seeking +the +chief priests +and +the +scribes +how +Him +by +stealth +having taken +they might kill [Him] +for +They were saying +Not +during +the +feast +lest +ever +there will be +an uproar +of the +people +And +being +of Him +in +Bethany +in +the +house +of Simon +the +leper +having reclined +of Him +came +a woman +having +an alabaster flask +of fragrant oil +of nard +pure +of great price +having broken +the +alabaster flask +she poured [it] on +His +- +head +now +some +Were +indignant +within +themselves +To +what +the +waste +this +of the +fragrant oil +has been made +for +Could +this +- +fragrant oil +to have been sold +for above +denarii +three hundred +and +to have been given +to the +poor +And +they were grumbling +at her +And +- +Jesus +said +Leave alone +her +why +to her +trouble +do you cause +A good +work +she did +toward +Me +for +Always +the +poor +you have +with +you +and +whenever +you desire +you are able +them +good +to do +however +Me +not +always +do you have +What +she could +she did +She came beforehand +to anoint +the +body +of Me +for +the +burial +now +Truly +I say +to you +if +wherever +shall be proclaimed +the +gospel +in +whole +the +world +also +what +has done +this [woman] +will be spoken of +for +a memorial +of her +And +Judas +Iscariot +- +one +of the +Twelve +went away +to +the +chief priests +that +Him +he might betray +to them +And +- +having heard +they rejoiced +and +promised +him +money +to give +And +he was seeking +how +Him +conveniently +he might deliver up +And +on the +first +day +- +of unleavened [bread] +when +the +Passover lamb +they were to sacrifice +say +to Him +the +disciples +of Him +do You desire [that] +Where +having gone +we should prepare +that +You may eat +the +Passover +And +He sends forth +two +of the +disciples +of Him +and +says +to them +Go +into +the +city +and +will meet +you +a man +a pitcher +of water +carrying +Follow +him +And +if +wherever +he might enter +say +to the +master of the house +that +the +Teacher +says +Where +is +the +guest room +of Me +where +the +Passover +with +the +disciples +of Me +I may eat +And +he +you +will show +an upper room +large +having been furnished +[and] ready +And +there +prepare +for us +And +went away +- +his disciples +and +came +into +the +city +and +found +as +He had said +to them +and +they prepared +the +Passover +And +evening +having arrived +He comes +with +the +Twelve +And +they +as were reclining +and +were eating +- +Jesus +said +Truly +I say +to you +that +will betray +Me +one +of +you +who +is eating +with +Me +They began +to be grieved +and +to say +to Him +one +by +one +Surely not +I +And +- +He said +to them +[It is] one of +the +Twelve +who +is dipping +with +Me +in +the +bowl +For +indeed +- +the Son +- +of Man +goes +as +it has been written +concerning +Him +however +woe +to the +man +that +by +whom +the +Son +- +of Man +is betrayed +better +for him [it were] +if +not +had been born +the +man +that +And +they were eating +of them +having taken +bread +having spoken a blessing +He broke +and +gave +to them +and +said +Take +this +is +the +body +of Me +And +having taken +the cup +having given thanks +He gave [it] +to them +and +they drank +of +it +all +And +He said +to them +This +is +the +blood +of Me +of the +covenant +which +is being poured out +for +many +Truly +I say +to you +that +no more +never +not +will I drink +of +the +fruit +of the +vine +until +the +day +that +when +it +I drink +anew +in +the +kingdom +- +of God +And +having sung a hymn +they went out +to +the +Mount +- +of Olives +And +says +to them +- +Jesus +- +All +you will fall away +for +it has been written +I will strike +the +shepherd +and +the +sheep +will be scattered +But +after +- +having arisen +I +will go before +you +into +- +Galilee +And +- +Peter +was saying +to Him +If +even +all +will fall away +yet +not +I +And +says +to him +- +Jesus +Truly +I say +to you +that +yourself +now +this +- +night +before +that +twice +[the] rooster +crows +three times +Me +you will deny +And +- +emphatically +he kept saying +If +it is needful +of me +to die with +You +no +not +You +will I deny +now +Likewise +also +all +of them were saying +And +they come +to +a place +of which +the +name [is] +Gethsemane +and +He says +to the +disciples +of Him +Sit +here +while +I shall pray +And +He takes +- +Peter +and +- +James +and +- +John +with +Him +and +He began +to be greatly awe-struck +and +deeply distressed +And +He says +to them +Very sorrowful +is +the +soul +of Me +even to +death +remain +here +and +watch +And +having gone forward +a little +He fell +upon +the +ground +and +was praying +that +if +possible +it is +might pass +from +Him +the +hour +And +He was saying +Abba +- +Father +all things [are] +possible +to You +take away +the +cup +this +from +Me +but +not +what +I +will +but +what +You +And +He comes +and +finds +them +sleeping +And +He says +- +to Peter +Simon +are you asleep +Not +were you able +one +hour +to watch +Watch +and +pray +so that +not +you may enter +into +temptation +indeed +The +spirit +[is] willing +but +- +the flesh +weak +And +again +having gone away +He prayed +the +same +thing +having said +And +again +having returned +he found +them +sleeping +for +Were +heavy +of them +the +eyes +and +not +they knew +what +they should answer +Him +And +He comes +the +third time +and +says +to them +Are you sleeping +- +still +and +taking your rest +It is enough +has come +the +hour +behold +is delivered up +the +Son +- +of Man +into +the +hands +of the +sinful +Rise +let us go +behold +the [one] +betraying +Me +has drawn near +And +immediately +while yet +of Him +speaking +comes up +- +Judas +one +of the +Twelve +and +with +Him +a crowd +with +swords +and +clubs +from +the +chief priests +and +the +scribes +and +the +elders +then +Had given +the [one] +delivering up +Him +a sign +to them +saying +- +Whomever +I shall kiss +He +is +seize +Him +and +lead [Him] away +securely +And +having arrived +immediately +having come up +to Him +he says +Rabbi +And +he kissed +Him +And +- +they laid +the +hands +on Him +and +seized +Him +then +One +a certain +of those +standing by +having drawn +the +sword +struck +the +servant +of the +high priest +and +cut off +of him +the +ear +And +answering +- +Jesus +said +to them +As +against +a robber +are you come out +with +swords +and +clubs +to capture +Me +Every +day +I was +with +you +in +the +temple +teaching +and +not +you did seize +Me +But [it is] +that +may be fulfilled +the +Scriptures +And +having left +Him +fled +all +And +[a] young man +certain +was following +Him +having cast +a linen cloth +about +[his] naked [body] +and +they seize +him +and +- +having left behind +the +linen cloth +naked +he fled +And +they led away +- +Jesus +to +the +high priest +And +come together +all +the +chief priests +and +the +elders +and +the +scribes +And +- +Peter +from +afar off +followed +Him +as far as +within +to +the +court +of the +high priest +and +he was +sitting +with +the +officers +and +warming himself +at +the +fire +And +- +the chief priests +and +all +the +Council +were seeking +against +- +Jesus +testimony +to +- +put to death +Him +but +not +they were finding [any] +for +Many +were bearing false testimony +against +Him +but +alike +their +testimonies +not +were +And +some +having risen up +were bearing false testimony +against +Him +saying +- +We +heard +Him +saying +- +I +will destroy +the +temple +this +the [one] +made with hands +and +in +three +days +another +not made with hands +I will build +And +neither +thus +alike +was +the +testimony +of them +And +having stood up +in +the midst +the +high priest +he questioned +- +Jesus +saying +Not +answer You +nothing +What [is it] +these +You +testify against +But +- +He was silent +and +not +did He answer +nothing +Again +the +high priest +was questioning +Him +and +says +to Him +You +are +the +Christ +the +Son +of the +Blessed [One] +And +- +Jesus +said +I +am +And +you will see +the +Son +- +of Man +at [the] +right hand +of +Power +sitting +and +coming +with +the +clouds +of +heaven +And +- +the high priest +having torn +the +garments +of him +says +What +any more +need +of witnesses +have we +You heard +the +blasphemy +What +to you +does it appear +And +- +all +condemned +Him +deserving +to be +of death +And +began +some +to spit upon +Him +and +to cover up +of Him +the +face +and +to strike +Him +and +to say +to Him +Prophesy +And +the +officers +with the palms +Him +received +And +being +- +Peter +below +in +the +courtyard +comes +one +of the +servant girls +of the +high priest +and +having seen +- +Peter +warming himself +having looked at +him +she says +Also +you +with +the +Nazarene +- +Jesus +were +But +- +he denied [it] +saying +Neither +I know +nor even +understand +you +what +say +And +he went forth +out +into +the +porch +And +the +servant girl +having seen +him +began +again +to say +to those +standing by +- +This +[one] of +them +is +But +- +again +he denied +And +after +a little +again +those +standing by +were saying +- +to Peter +Truly +of +them +you are +for +also +a Galilean +you are +But +- +he began +to curse +and +to swear +- +Not +I know +the +man +this +whom +you speak of +And +immediately +for +the second time +a rooster +crowed +And +remembered +- +Peter +the +word +that +had said +to him +- +Jesus +- +Before +[the] rooster +twice +crows +three times +Me +you will deny +And +having broken down +he began to weep +And +early +in the morning +the +chief priests +a counsel +having formed +with +the +elders +and +scribes +and +all +the +Council +having bound +- +Jesus +they led [Him] away +and +delivered [Him] +to Pilate +And +questioned +Him +- +Pilate +You +are +the +King +of the +Jews +And +- +answering +to him +He says +You +have said +And +were accusing +Him +the +chief priests +of many things +And +- +Pilate +again +began to question +Him +saying +Not +answer You +nothing +See +how many things +You +they testify against +But +- +Jesus +no longer +nothing +answered +so as +to amaze +- +Pilate +then +At +[the] feast +he used to release +to them +one +prisoner +whom +they requested +then +There was +having been bound +the [one] +called +Barabbas +with +the +rebels +who +in +the +insurrection +murder +had committed +And +having cried out +the +crowd +began +to beg [him to do] +as usually +he did +for them +But +- +Pilate +answered +them +saying +Wish you [that] +I should release +to you +the +King +of the +Jews +for +He was aware +that +because of +envy +had delivered up +Him +the +chief priests +But +- +the chief priests +stirred up +the +crowd +so that +instead +- +Barabbas +he might release +to them +And +- +Pilate +again +answering +was saying +to them +then +What +I should do +to Him +you call +the +King +of the +Jews +And +- +again +they cried out +Crucify +Him +And +- +Pilate +was saying +to them +indeed +did He commit +What +evil +But +- +much more +they shouted +Crucify +Him +And +- +Pilate +desiring +to the +crowd +that which [was] +satisfactory +to do +released +to them +- +Barabbas +and +he delivered +- +Jesus +having flogged [him] +that +He might be crucified +And +- +the soldiers +led away +him +into +the +palace +that +is +[the] Praetorium +and +they call together +all +the +cohort +And +they put on +Him +purple +and +placed on +Him +having twisted together +of thorns +a crown +and +they began +to salute +Him +Hail +King +of the +Jews +And +they kept striking +His +- +head +with a reed +and +spitting on +Him +and +bending +the +knees +they were kneeling down +to Him +And +when +they had mocked +Him +they took off +him +the +purple +and +put on +Him +the +garments +His +And +they are leading out +him +that +they might crucify +Him +And +they compel +passing by +one +Simon +of Cyrene +coming +from +the country +the +father +of Alexander +and +Rufus +that +he might carry +the +cross +of Him +And +they bring +Him +to +- +a place +Golgotha +which +is +translated +of a Skull +Place +And +they were offering +Him +having been mixed with myrrh +wine +however +He +not +did take [it] +And +having crucified +Him +also +they divided +the +garments +of Him +casting +lots +for +them +who +what +should take +then +It was +[the] hour +third +and +they crucified +Him +And +there was +having been written +the +inscription +of the +accusation +against Him +The +King +of the +Jews +And +with +Him +they crucify +two +robbers +one +at +[the] right hand +and +one +at [the] +left +of Him +And +those +passing by +were railing at +Him +shaking +the +heads +of them +and +saying +Aha +The [One] +destroying +the +temple +and +building [it] +in +three +days +save +Yourself +having descended +from +the +cross +Likewise +also +the +chief priests +mocking +among +one another +with +the +scribes +were saying +Others +He saved +Himself +to save +not +He is able +The +Christ +the +King +of Israel +let Him descend +now +from +the +cross +that +we might see +and +believe +And +those +being crucified +with +Him +were upbraiding +Him +And +having arrived +[the] hour +sixth +darkness +came +over +all +the +land +until +[the] hour +ninth +And +at the +ninth +hour +cried out +- +Jesus +in a voice +loud +Eloi +Eloi +lema +sabachthani +Which +is +translated +- +God +of Me +- +God +of Me +to +why +have You forsaken +Me +And +some +of those +standing by +having heard +were saying +Behold +Elijah +He calls +then +one +Having run +and +having filled +a sponge +with vinegar +having put [it] on +a reed +gave to drink +him +saying +Let be +let us see +if +comes +Elijah +to take down +him +But +- +Jesus +having uttered +a cry +loud +breathed His last +And +the +veil +of the +temple +was torn +into +two +from +top +to +bottom +then +the +centurion +- +standing +from +opposite of +Him +Having seen +that +thus +He breathed His last +he said +Truly +this +- +man +[the] Son +of God +was +then +There were +also +women +from +afar off +looking on +among +whom +also +Mary +- +Magdalene +and +Mary +the +of James +the +least +and +of Joseph +mother +and +Salome +who +when +He was +in +- +Galilee +had been following +Him +and +had been ministering +to Him +and +other +many +those +having come up with +Him +to +Jerusalem +And +already +evening +having arrived +since +it was [the] +Preparation +that +is +the day before Sabbath +having come +Joseph +- +from +Arimathea +a prominent +Council member +who +also +himself +was +waiting for +the +kingdom +- +of God +having boldness +went in +to +- +Pilate +and +asked for +the +body +- +of Jesus +And +- +Pilate +wondered +if +already +He were dead +And +having called to [him] +the +centurion +he questioned +him +whether +already +He had died +And +having known [it] +from +the +centurion +He granted +the +body +- +to Joseph +And +having bought +a linen cloth +having taken down +him +he wrapped [Him] in +the +linen cloth +and +laid +Him +in +a tomb +which +was +cut +out of +a rock +And +he rolled +a stone +to +the +door +of the +tomb +And +- +Mary +- +Magdalene +and +Mary +the [mother] +of Joseph +were watching +where +He was laid +And +having passed +the +Sabbath +Mary +- +Magdalene +and +Mary +the [mother] +- +of James +and +Salome +bought +spices +that +having come +they might anoint +Him +And +very +early +on the +first [day] +of the +week +they come +to +the +tomb +having arisen +the +sun +And +they were saying +among +themselves +Who +will roll away +for us +the +stone +from +the +door +of the +tomb +And +having looked up +they see +that +has been rolled away +the +stone +for +it was +large +extremely +And +having entered +into +the +tomb +they saw +a young man +sitting +on +the +right +clothed in +a robe +white +and +they were greatly amazed +And +- +he says +to them +Not +be amazed +you seek +Jesus +the +Nazarene +the [One] +having been crucified +He is risen +Not +He is +here +Behold +the +place +where +they laid +Him +But +go +say +the +disciples +of Him +and +- +to Peter +that +He goes before +you +into +- +Galilee +there +Him +will you see +as +He said +to you +And +having gone out +they fled +from +the +tomb +for +Had seized +them +trembling +and +amazement +and +to none +nothing +they spoke +for +they were afraid +now +Having risen +early [the] +first [day] +of the week +He appeared +first +to Mary +- +Magdalene +from +whom +He had cast out +seven +demons +She +having gone +told [it] +to those +with +Him +having been +mourning +and +weeping +And they +having heard +that +He is alive +and +has been seen +by +her +disbelieved +now +After +these things +to two +of +them +as they are walking +He appeared +in +another +form +going +into +[the] country +And they +having gone +told [it] +to the +rest +neither +them +did they believe +now +Afterward +were reclining +they +to the +eleven +He appeared +and +rebuked +the +unbelief +of them +and +hardness of heart +because +those +having seen +Him +arisen +not +they believed +And +He said +to them +Having gone +into +the +world +all +proclaim +the +gospel +to all +the +creation +The [one] +having believed +and +having been baptized +will be saved +however +the [one] +having disbelieved +will be condemned +now +Signs +these +those +having believed +will accompany +In +the +name +of Me +demons +they will cast out +with tongues +new +they will speak +serpents +they will take up +and if +deadly +anything +they drink +no +not +them +shall it hurt +upon +[the] sick +hands +they will lay +and +well +they will be +Indeed +therefore +- +the Lord +Jesus +after +- +speaking +to them +was taken up +into +the +heaven +and +sat +at [the] +right hand +- +of God +now +They +having gone forth +preached +everywhere +the +Lord +working with [them] +and +the +word +confirming +by +the +accompanying +signs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Inasmuch as +many +have undertaken +to draw up +a narration +concerning +the +having been accomplished +among +us +things +as +delivered [them] +to us +those +from +[the] beginning +eyewitnesses +and +servants +having been +of the +word +it seemed good +also to me +having been acquainted +from the first +with all things +carefully +with method +to you +to write +most excellent +Theophilus +so that +you may know +concerning +which +you were instructed +[of the] things +the +certainty +There was +in +the +days +of Herod +king +- +of Judea +a priest +certain +named +Zechariah +of [the] +division +of Abijah +and +wife +of him +of +the +daughters +of Aaron +and +the +name +of her +Elizabeth +now +They were +righteous +both +before +- +God +walking +in +all +the +commandments +and +ordinances +of the +Lord +blameless +And +no +there was +to them +child +inasmuch as +was +- +Elizabeth +barren +and +both +advanced +were +in +the +years +of them +now +It came to pass +in +the +fulfilling the priestly service +of him +in +the +order +of the +division +of him +before +- +God +according to +the +custom +of the +priesthood +it fell to him by lot +- +to burn incense +having entered +into +the +temple +of the +Lord +And +all +the +multitude +of the +people +were +praying +outside +at the +hour +of the +incense +then +Appeared +to him +an angel +of [the] Lord +standing +at +[the] right +of the +altar +of the +incense +And +was troubled +Zechariah +having seen [him] +and +fear +fell +upon +him +then +Said +to +him +the +angel +Not +fear +Zechariah +because +has been heard +the +prayer +of you +and +the +wife +of You +Elizabeth +will bear +a son +to you +and +you shall call +the +name +of him +John +And +he will be +to you +joy +and +gladness +and +many +at +the +birth +of him +will rejoice +for +He will be +great +before +Lord +and +wine +and +strong drink +no +not +shall he drink +and +[of the] Spirit +Holy +he will be filled +even +from +[the] womb +of [the] mother +of him +And +many +of the +sons +of Israel +he will turn +to +[the] Lord +the +God +of them +And +he +will go forth +before +Him +in +[the] spirit +and +power +of Elijah +to turn +[the] hearts +of [the] fathers +to +[the] children +and +[the] disobedient +to +[the] wisdom +of [the] righteous +to make ready +for [the] Lord +a people +prepared +And +said +Zechariah +to +the +angel +By +what +will I know +this +for +I +am +an old man +and +the +wife +of me +is advanced +in +the +years +of her +And +answering +the +angel +said +to him +I +am +Gabriel +the [one] +standing +before +- +God +and +I was sent +to speak +to +you +and +to bring glad tidings +to you +these +And +behold +you will be +silent +and +not +able +to speak +until +that +day +shall take place +these things +in return for +that +not +you did believe +the +words +of me +which +will be fulfilled +in +the +season +of them +And +were +expecting +the +people +- +Zechariah +and +they were wondering +at +the +delaying +in +the +temple +of him +then +Having come out +not +he was able +to speak +to them +and +they recognized +that +a vision +he had seen +in +the +temple +And +he +was +making signs +to them +and +remained +mute +And +it came to pass +when +were fulfilled +the +days +of the +service +of him +he departed +to +the +home +of him +then +After +these +- +days +conceived +Elizabeth +the +wife +of him +and +hid +herself +months +five +saying +- +Thus +to me +has done +the Lord +in +[the] days +in which +He looked upon [me] +to take away +[the] disgrace +of me +among +men +now +In +the +month +- +sixth +was sent +the +angel +Gabriel +by +- +God +to +a city +- +of Galilee +whose +name [was] +Nazareth +to +a virgin +betrothed +to a man +whose +name [was] +Joseph +of +[the] house +of David +and +the +name +of the +virgin +[was] Mary +And +having come +to +her +he said +Greetings +[you] favored with grace +The +Lord [is] +with +you +And +- +at +the +statement +she was troubled +and +was pondering +what kind +might be +the +salutation +this +And +said +the +angel +to her +Not +fear +Mary +for +you have found +favor +with +- +God +and +behold +you will conceive +in +womb +and +will bring forth +a son +and +you shall call +the +name +of Him +Jesus +He +will be +great +and +Son +of [the] Most High +He will be called +and +will give +Him +[the] Lord +- +God +the +throne +of David +of the +father +of Him +and +He will reign +over +the +house +of Jacob +to +the +ages +and +of the +kingdom +of Him +not +there will be +an end +then +Said +Mary +to +the +angel +How +will be +this +since +a man +not +I know +And +answering +the +angel +said +to her +[the] Spirit +Holy +will come +upon +you +and +power +of [the] Most High +will overshadow +you +therefore +also +the +being born +Holy [One] +will be called +[the] Son +of God +And +behold +Elizabeth +the +relative +of you +also +she +has conceived +a son +in +old age +her +and +this +month +[the] sixth +is +to her +who +[was] called +barren +For +not +will be impossible +with +- +God +every +thing +then +Said +Mary +Behold +the +handmaid +of [the] Lord +May it happen +to me +according to +the +word +of you +And +departed +from +her +the +angel +then +Mary +Having risen up +in +the +days +this +she went +into +the +hill country +with +haste +to +a town +of Judah +and +she entered +into +the +house +of Zechariah +and +greeted +- +Elizabeth +And +it came to pass +as +heard +the +greeting +- +of Mary +- +Elizabeth +leaped +the +baby +in +the +womb +of her +and +was filled +with [the] Spirit +Holy +- +Elizabeth +and +she cried out +in a voice +loud +and +said +Blessed are +you +among +women +and +blessed is +the +fruit +of the +womb +of you +And +from where +to me +this +that +should come +the +mother +of the +Lord +of me +to +me +for +Behold +as +came +the +voice +of the +greeting +of you +into +the +ears +of me +leaped +in +exultation +the +baby +in +the +womb +of me +And +blessed [is] +the [one] +having believed +that +there will be +a fulfillment +to the things +spoken +to her +from +[the] Lord +And +said +Mary +Magnifies +the +soul +of Me +the +Lord +and +rejoices +the +spirit +of me +in +- +God +the +Savior +of me +For +He has looked +upon +the +humiliation +of the +handmaiden +of Him +for +Behold +from +- +henceforth +will count blessed +me +all +the +generations +For +has done +to me +great things +the +Mighty One +And +holy [is] +the +name +of Him +And +the +mercy +of Him +[is] to +generations +and +generations +to those +fearing +Him +He has shown +strength +with +the arm +of Him +He has scattered +[the] proud +in [the] thought +of heart +of them +He has brought down +rulers +from +thrones +and +exalted +[the] humble +[Those] hungering +He has filled +with good things +and +[those] being rich +He has sent away +empty +He has helped +Israel +[the] servant +of Him +remembering +mercy +- +to Abraham +and +to the +descendants +of him +to +the +age +as +He spoke +to +the +fathers +of us +then +Dwelt +Mary +with +her +about +months +three +and +returned +to +the +home +of her +now +To +Elizabeth +was fulfilled +the +time +- +to give birth +for her +and +she bore +a son +And +heard +the +neighbors +and +- +relatives +of her +that +was magnifying +[the] Lord +the +mercy +of Him +with +her +and +they were rejoicing with +her +And +it came to pass +on +- +day +the +eighth +they came +to circumcise +the +child +and +were calling +it +after +the +name +of the +father +of him +Zechariah +And +answering +the +mother +of him +said +No +but +he will be called +John +And +they said +to +her +- +is +among +the +relatives +of you +No one +who +is called +the +name +by this +then +They were making signs +to the +father +of him +the +- +he might wish +what +to be called +him +And +having asked for +a writing tablet +he wrote +saying +John +is +[the] name +of him +And +they marveled +all +then +Was opened +the +mouth +of him +immediately +and +the +tongue +of him +and +he was speaking +blessing +- +God +And +came +fear +upon +all +those +dwelling around +them +and +in +all +the +hill country +- +of Judea +were being talked about +all +the things +words +these +And +laid [them] up +all +those +having heard +in +the +heart +of them +saying +then +What +the +child +this +will be +for +And +[the] hand +of [the] Lord +was +with +him +And +Zechariah +the +father +of him +was filled +with [the] Spirit +Holy +and +prophesied +saying +Blessed be +[the] Lord +the +God +- +of Israel +because +He has visited +and +has performed +redemption +[on] the +people +of Him +and +has raised up +a horn +of salvation +for us +in +[the] house +of David +of [the] servant +of Him +as +He spoke +by +[the] mouth +of the +holy +of +old +prophets +of Him +salvation +from +[the] enemies +of us +and +from +[the] hand +of all +those +hating +us +to fulfill +mercy +toward +the +fathers +of us +and +to remember +[the] covenant +holy +of Him +[the] oath +that +He swore +to +Abraham +the +father +of us +- +to grant +us +from +[the] hand +of our enemies +having been saved +without fear +to serve +Him +in +holiness +and +righteousness +before +Him +all +the +days +of our life +now +child +And +you +prophet +of [the] Most High +will be called +for +you will go +before +the Lord +to prepare +ways +of Him +- +to give +knowledge +of salvation +to +people +of Him +in +forgiveness +of [the] sins +of them +through +[the] affections +of compassion +of God +of us +in +which +will visit +us +[the] Sunrise +from +on high +to shine upon +those +in +darkness +and +in [the] shadow +of death +sitting +- +to direct +the +feet +of us +into +[the] way +of peace +And +- +the child +continued to grow +and +was strengthened +in spirit +and +he was +in +the +deserted places +until +[the] day +of appearance +of him +to +- +Israel +then +It came to pass +in +the +days +those +went out +a decree +from +Caesar +Augustus +to register +all +the +world +This +registration +first +took place [when] +was governing +- +Syria +Quirinius +And +were going +all +to be registered +each +to +the +of themselves +city +then +Went up +also +Joseph +from +- +Galilee +out of +[the] town +of Nazareth +to +- +Judea +to +[the] City +of David +which +is called +Bethlehem +because of +- +being +his +of +[the] house +and +family +of David +to register +with +Mary +the [one] +being betrothed +to him +she being +with child +then +It came to pass +in +their +being +- +there +were fulfilled +the +days +of the +giving birth +of her +And +she brought forth +the +son +of her +the +firstborn +and +wrapped in swaddling cloths +him +and +laid +Him +in +a manger +because +not +there was +for them +a place +in +the +inn +And +shepherds +were +in +the +region +- +same +lodging in the fields +and +keeping +watch +- +by night +over +the +flock +of them +And +an angel +of [the] Lord +stood by +them +and +[the] glory +of [the] Lord +shone around +them +and +they feared +[with] fear +great +And +said +to them +the +angel +Not +fear +for +behold +I bring good news +to you +[of] joy +great +which +will be +to all +the +people +For +has been born +to you +today +a Savior +who +is +Christ +[the] Lord +in +[the] City +of David +And +this [is] +to you +sign +You will find +a baby +wrapped in swaddling cloths +and +lying +in +a manger +And +suddenly +there came +with +the +angel +a multitude +of [the] host +heavenly +praising +- +God +and +saying +Glory +in +[the] highest +to God +and +on +earth +peace +among +men +with whom He is pleased +And +it came to pass +as +were departing +from +them +into +the +heaven +the +angels +the +shepherds +were saying +to +one another +indeed +Let us go through +as far as +Bethlehem +and +let us see +the +word +this +that +has come to pass +which +the +Lord +has made known +to us +And +they came +having hurried +and +found +both +- +Mary +and +- +Joseph +and +the +baby +lying +in +the +manger +now +Having seen +they proclaimed abroad +concerning +the +saying +- +having been told +them +concerning +the +Child +this +And +all +those +having heard +marveled +concerning +the things +having been spoken +by +the +shepherds +to +them +But +- +Mary +was treasuring up +all +- +matters +these +pondering [them] +in +the +heart +of her +And +returned +the +shepherds +glorifying +and +praising +- +God +for +all things +which +they had heard +and +seen +as +it was said +to +them +And +when +were fulfilled +days +eight +- +to circumcise +Him +then +was called +the +name +of Him +Jesus +which +He had been called +by +the +angel +before +- +was conceived +He +in +the +womb +And +when +were fulfilled +the +days +of the +purification +of them +according to +the +law +of Moses +they brought +Him +to +Jerusalem +to present +to the +Lord +as +it has been written +in [the] +law +of [the] Lord +- +Every +male +opening +a womb +holy +to the +Lord +shall be called +and +- +to offer +a sacrifice +according to +that +having been said +in +the +law +of [the] Lord +A pair +of turtle doves +or +two +young +pigeons +And +behold +a man +there was +in +Jerusalem +whose +name [was] +Simeon +and +the +man +this +[was] righteous +and +devout +waiting for +[the] consolation +- +of Israel +and +[the] Spirit +Holy +was +upon +him +And +it was +divinely revealed +to him +by +the +Spirit +- +Holy +not +to see +death +before +that +- +he should see +the +Christ +of [the] Lord +And +he came +in +the +Spirit +into +the +temple +and +in +the [time when] +were bringing in +the +parents +the +child +Jesus +the [thing] +were doing +they +according to +that +having become customary +by the +law +for +Him +then +he +received +Him +into +the +arms +and +blessed +- +God +and +said +Lord +Now +You dismiss +the +servant +of You +according to +the +word +of You +in +peace +for +have seen +the +eyes +of me +the +salvation +of You +which +You have prepared +before +[the] face +of all +the +peoples +a light +for +revelation +of [the] Gentiles +and +glory +of [the] people +of You +Israel +And +were +marveling +the +father +of Him +and +the +mother +at +the things +having been spoken +concerning +Him +And +blessed +them +Simeon +and +said +to +Mary +the +mother +of Him +Behold +this [Child] +is appointed +for +[the] falling +and +rising up +of many +in +- +Israel +and +for +a sign +spoken against +also +and +of you +of her +the +soul +will go through +a sword +so that +- +may be revealed +of +many +hearts +[the] thoughts +And +there was +Anna +a prophetess +daughter +of Phanuel +of +[the] tribe +of Asher +she +being advanced +in +years +great +having lived +with +a husband +years +seven +from +the +marriage +of herself +and +she +[was] a widow +of about +years +eighty [and] +four +who +not +departed +the +temple +with fastings +and +prayers +serving +night +and +day +And +she +at that +hour +having come up +was giving praise +- +to God +and +was speaking +concerning +Him +to all +those +waiting for +[the] redemption +of Jerusalem +And +when +they had performed +everything +- +according to +the +law +of [the] Lord +they returned +to +- +Galilee +to the +town +of them +Nazareth +And +- +the Child +continued to grow +and +become strong +being filled +with wisdom +and +[the] grace +of God +was +upon +Him +And +were going +the +parents +of Him +every +year +to +Jerusalem +at the +feast +of the +Passover +And +when +He was +years [old] +twelve +having gone up +they +according to +the +custom +of the +Feast +and +having completed +the +days +in +the +returning +of them +remained behind +Jesus +the +boy +in +Jerusalem +But +not +knew +the +parents +of Him +now +Having supposed +Him +to be +in +their +company +they went +a day’s +journey +and +began seeking +Him +among +the +relatives +and +the +acquaintances +and +not +having found [Him] +they returned +to +Jerusalem +seeking +Him +And +it came to pass +after +days +three +they found +Him +in +the +temple +sitting +in +[the] midst +of the +teachers +both +hearing +them +and +questioning +them +then +Were amazed +all +those +hearing +Him +at +the +understanding +and +the +answers +of Him +And +having seen +Him +they were astonished +and +said +to +Him +the +mother +of Him +Child +why +have You done +to us +thus +Behold +the +father +of You +and I +distressing +were seeking +You +And +He said +to +them +Why [is it] +that +you were seeking +Me +Not +knew you +that +in +the [house] +of the +Father +of Me +to be +Me +it behooves +And +they +not +understood +the +word +that +He spoke +to them +And +He went down +with +them +and +came +to +Nazareth +and +He was +subject +to them +And +the +mother +of Him +was treasuring up +all +the +matters +in +the +heart +of her +And +Jesus +continued to advance +in +- +wisdom +and +stature +and +in favor +with +God +and +men +then +In +year +fifteenth +of the +reign +of Tiberius +Caesar +being governor +Pontius +Pilate +- +of Judea +and +being tetrarch +- +of Galilee +Herod +now +Philip +the +brother +of him +being tetrarch +- +of Ituraea +and +of Trachonitis +[the] region +and +Lysanias +- +of Abilene +being tetrarch +during +[the] high priesthood +of Annas +and +Caiaphas +came +[the] word +of God +upon +John +- +of Zechariah +son +in +the +wilderness +And +he went +into +all +the +surrounding region +of the +Jordan +proclaiming +a baptism +of repentance +for +forgiveness +of sins +as +it has been written +in +[the] book +of [the] words +of Isaiah +the +prophet +[The] voice +of one crying +in +the +wilderness +Prepare +the +way +of [the] Lord +straight +make +the +paths +of Him +Every +valley +will be filled +and +every +mountain +and +hill +will be made low +and +will become +the +crooked +into +straight +and +the +rough +into +ways +smooth +and +will see +all +flesh +the +salvation +- +of God +therefore +He was saying +to the +coming out +to be baptized +by +him +crowds +Offspring +of vipers +who +forewarned +you +to flee +from +the +coming +wrath +therefore +Produce +fruits +worthy +- +of repentance +and +not +begin +to say +in +yourselves +[As] father +We have +- +Abraham +for +I say +to you +that +is able +- +God +from +- +stones +these +to raise up +children +- +to Abraham +now +Already +also +the +ax +to +the +root +of the +trees +is applied +therefore +every +tree +not +producing +fruit +good +is cut down +and +into +[the] fire +is thrown +And +were asking +him +the +crowds +saying +then +What +shall we do +now +Answering +he was saying +to them +The [one] +having +two +tunics +let him impart +to the [one] +none +having +and +the [one] +having +food +likewise +let him do +then +Came +also +tax collectors +to be baptized +and +they said +to +him +Teacher +what +shall we do +And +- +he said +to +them +Nothing +more +beyond +that +having been appointed +to you +collect +then +Were asking +him +also +those being soldiers +saying +What +shall do +also +we +And +he said +to them +No one +extort +nor +accuse falsely +and +be content with +the +wages +of you +then +Are expecting +the +people +and +wondering +all +in +the +hearts +of them +concerning +- +John +whether +ever +he +might be +the +Christ +Answered +saying +[to] all +- +John +indeed +I +with water +baptize +you +however +comes +the [One] +mightier +than I +of whom +not +I am +worthy +to untie +the +strap +of the +sandals +of Him +He +you +will baptize +with +[the] Spirit +Holy +and +with fire +of whom +the +winnowing fork [is] +in +the +hand +of Him +to clear +the +threshing floor +of Him +and +to gather +the +wheat +into +the +barn +of Him +But +- +the chaff +He will burn up +with fire +unquenchable +indeed +therefore +Many +other +things +exhorting +he was preaching the good news to +the +people +And +- +Herod +the +tetrarch +being reproved +by +him +concerning +Herodias +the +wife +of the +brother +of him +and +concerning +all +that +[the] evils +had done +- +Herod +added +yet +this +to +all +he locked up +- +John +in +prison +now +It came to pass +in +- +having been baptized +all +the +people +and +Jesus +having been baptized +and +having prayed +was opened +the +heaven +and +descended +the +Spirit +- +Holy +in a bodily +form +as +a dove +upon +Him +and +a voice +out of +heaven +came +You +are +the +Son +of Me +the +beloved +in +You +I am well pleased +And +Himself +Jesus +was +beginning +about +years [old] +thirty +as +was supposed +being +son +of Joseph +- +of Heli +- +of Matthat +- +of Levi +- +of Melchi +- +of Jannai +- +of Joseph +- +of Mattathias +- +of Amos +- +of Nahum +- +of Esli +- +of Naggai +- +of Maath +- +of Mattathias +- +of Semein +- +of Josech +- +of Joda +- +of Joannen +- +of Rhesa +- +of Zerubbabel +- +of Shealtiel +- +of Neri +- +of Melchi +- +of Addi +- +of Cosam +- +of Elmadam +- +of Er +- +of Joshua +- +of Eliezer +- +of Jorim +- +of Matthat +- +of Levi +- +of Simeon +- +of Judah +- +of Joseph +- +of Jonam +- +of Eliakim +- +of Melea +- +of Menna +- +of Mattatha +- +of Nathan +- +of David +- +of Jesse +- +of Obed +- +of Boaz +- +of Sala +- +of Nahshon +- +of Amminadab +- +of Admin +- +of Arni +- +of Hezron +- +of Perez +- +of Judah +- +of Jacob +- +of Isaac +- +of Abraham +- +of Terah +- +of Nahor +- +of Serug +- +of Reu +- +of Peleg +- +of Heber +- +of Shelah +- +of Cainan +- +of Arphaxad +- +of Shem +- +of Noah +- +of Lamech +- +of Methuselah +- +of Enoch +- +of Jared +- +of Mahalalel +- +of Cainan +- +of Enosh +- +of Seth +- +of Adam +- +of God +then +Jesus +full +of [the] Spirit +Holy +returned +from +the +Jordan +and +was led +by +the +Spirit +into +the +wilderness +days +forty +being tempted +by +the +devil +And +not +He ate +nothing +in +the +days +those +and +having ended +they +He was hungry +then +Said +to Him +the +devil +If +You are +[the] Son +- +of God +speak +to the +stone +this +that +it should become +bread +And +answered +to +him +- +Jesus +It has been written +- +Not +on +bread +alone +shall live +the +man +And +having led up +Him +he showed +Him +all +the +kingdoms +of the +world +in +a moment +of time +And +said +to Him +the +devil +To You +will I give +the +authority +this +all +and +the +glory +of it +for +to me +it has been delivered +and +if +to whom +I wish +I give +it +therefore +if +You +You will worship +before +me +will be +Yours +all +And +answering +- +Jesus +said +to him +It has been written +You shall worship +[the] Lord +- +God +of You +and +Him +only +you shall serve +also +He led +Him +to +Jerusalem +and +set +upon +the +pinnacle +of the +temple +and +said +to Him +If +You are +[the] Son +- +of God +cast +Yourself +from here +down +for +It has been written +- +To the +angels +of Him +He will give orders +concerning +You +- +to guard +You +and +- +in +[their] hands +will they bear +You +lest +ever +You strike +against +a stone +the +foot +of You +And +answering +said +to him +- +Jesus +- +It has been said +Not +you shall test +[the] Lord +the +God +of you +And +having finished +every +temptation +the +devil +departed +from +Him +until +an opportune time +And +returned +- +Jesus +in +the +power +of the +Spirit +to +- +Galilee +and +a report +went out +into +all +the +surrounding region +concerning +Him +And +He +was teaching +in +the +synagogues +of them +being glorified +by +all +And +He came +to +Nazareth +where +He had been +brought up +and +He entered +according to +the +custom +to Him +on +the +day +of the +Sabbaths +into +the +synagogue +and +stood up +to read +And +there was given +to Him +[the] scroll of +the +prophet +Isaiah +and +having unrolled +the +scroll +He found +the +place +where +it was +written +[The] Spirit +of [the] Lord [is] +upon +Me +of which +because +He has anointed +Me +to preach good news +to [the] poor +He has sent +Me +to proclaim +to [the] captives +deliverance +and +to [the] blind +recovery of sight +to send forth +[the] oppressed +in +deliverance +to proclaim +[the] year +of [the] Lord’s +favor +And +having rolled up +the +scroll +having delivered [it] +to the +attendant +He sat down +and +of all +the +eyes +in +the +synagogue +were +fixed upon +Him +then +He began +to say +to +them +- +Today +is fulfilled +the +Scripture +this +in +the +hearing +of you +And +all +were bearing witness +to Him +and +marveling +at +the +words +of the +grace +that +are proceeding +out of +the +mouth +of Him +and +they were saying +Not +the son +of Joseph +is +this +And +He said +to +them +Surely +you will say +to Me +the +proverb +this +Physician +heal +yourself +we have heard +Whatsoever +has been done +in +- +Capernaum +do +also +here +in +the +hometown +of You +then +He said +Truly +I say +to you +that +no +prophet +acceptable +is +in +the +hometown +of him +now +In +truth +I say +to you +many +widows +there were +in +the +days +of Elijah +in +- +Israel +when +was shut up +the +heaven +for +years +three +and +months +six +when +there was +a famine +great +upon +all +the +land +and +to +none +of them +was sent +Elijah +if +not +to +Zarephath +- +of Sidon +to +a woman +a widow +And +many +lepers +were +in +- +Israel +in the time +of Elisha +the +prophet +and +none +of them +was cleansed +if +not +Naaman +the +Syrian +And +were filled +with anger +all +in +the +synagogue +hearing +these things +and +having risen up +they cast +Him +out +of [the] +city +and +led +Him +unto +brow +of the +hill +upon +which +the +town +of them +had been built +in order +to throw over +him +however +He +having passed +through +[the] midst +of them +went away +And +He went down +to +Capernaum +a city +- +of Galilee +And +He was +teaching +them +on +the +Sabbaths +and +they were astonished +at +the +teaching +of Him +for +with +authority +was +the +message +of Him +And +in +the +synagogue +was +a man +having +a spirit +of a demon +unclean +and +he cried out +in a voice +loud +Ha +What +to us +and +to You +Jesus +of Nazareth +Are You come +to destroy +us +I know +You +who +are +the +Holy [One] +- +of God +And +rebuked +him +- +Jesus +saying +Be silent +and +come forth +out of +him +And +the +demon +having thrown +him +into +the +midst +it came out +from +him +in nothing +having hurt +him +And +came +astonishment +upon +all +and +they were speaking +to +one another +saying +What +- +word +[is] this +that +with +authority +and +power +He commands +the +unclean +spirits +and +they come out +And +was spreading +the report +concerning +Him +into +every +place +of the +surrounding region +then +Having risen up +out of +the +synagogue +He entered +into +the +house +of Simon +then +[The] mother-in-law +- +of Simon +was +oppressed with +a fever +great +and +they appealed +to Him +for +her +And +having stood +over +her +He rebuked +the +fever +and +it left +her +then +immediately +having arisen +she began to serve +them +now +At the setting +of the +sun +all +as many as +had [any] +ailing +with diseases +various +brought +them +to +Him +and +- +on one +each +of them +the +hands +having laid +He would heal +them +now +Were going out +also +demons +from +many +crying out +and +saying +- +You +are +the +Son +- +of God +And +rebuking [them] +not +did He allow +them +to speak +because +they knew +the +Christ +Him +to be +now +Having arrived +daybreak +having gone out +He went +into +a solitary +place +and +the +crowds +were seeking +Him +and +they came +up to +Him +and +were detaining +Him +of the +not +to go +from +them +But +- +He said +to +them +- +Also +to the +other +towns +to preach [the] good news +Me +of the +kingdom +- +of God +it behooves +because +for +this +have I been sent forth +And +He was +preaching +in +the +synagogues +- +of Judea +then +It came to pass +in +- +the +crowd +pressing on +Him +also +to hear +the +word +of +God +and +He +was +standing +by +the +lake +of Gennesaret +and +He saw +boats +two +lying +by +the +lake +but +- +the fishermen +from +them +having gone out +were washing +the +nets +then +Having entered +into +one +of the +boats +which +was +Simon’s +He asked +him +from +the +land +to put off +a little +then +Having sat down +from +the +boat +He was teaching +the +crowds +then +When +He left off +speaking +He said +to +- +Simon +Put off +into +the +deep +and +let down +the +nets +of you +for +a catch +And +answering +Simon +said +Master +through +whole +night +having toiled +nothing +have we taken +however +at +the +word +of You +I will let down +the +nets +And +this +having done +they enclosed +a multitude +of fishes +great +now +were breaking +the +nets +of them +And +they beckoned +to the +partners +in +the +other +boat +- +having come +to help +them +and +they came +and +filled +both +the +boats +so that +were sinking +they +now +Having seen +Simon +Peter +fell at +the +knees +of Jesus +saying +Depart +from +me +for +a man +sinful +am I +Lord +for +Amazement +laid hold +on him +and +on all +those +with +him +at +the +catch +of the +fish +which +they had taken +now +likewise +also +James +and +John +[the] sons +of Zebedee +who +were +partners +- +with Simon +And +said +to +- +Simon +- +Jesus +Not +fear +from +- +now on +men +you will be +catching +And +having brought +the +boats +to +the +land +having left +all +they followed +Him +And +it came to pass +in +- +being +His +in +one +of the +cities +that +behold +a man +full +of leprosy +then +having seen +- +Jesus +having fallen +upon +[his] face +begged +Him +saying +Lord +if +You would be willing +You are able +me +to cleanse +And +having stretched out +the +hand +He touched +him +saying +I am willing +be you cleansed +And +immediately +the +leprosy +departed +from +him +And +He +ordered +him +no one +to tell +But +having gone +show +yourself +to the +priest +and +offer +for +the +cleansing +of you +as +commanded +Moses +for +a testimony +to them +now +Was spread abroad +still more +the +report +concerning +Him +and +were coming +crowds +great +to hear +and +to be healed +from +the +sicknesses +of them +now +He Himself +was +withdrawing +into +the +wilderness +and +praying +And +it came to pass +on +one +of the +days +that +He +was +teaching +and +there were +sitting by +Pharisees +and +teachers of the law +who +were +come +out of +every +village +- +of Galilee +and +of Judea +and +of Jerusalem +And +[the] power +of [the] Lord +was [there] +for +- +to heal +Him +And +behold +men +carrying +upon +a mat +a man +who +was +paralyzed +and +they were seeking +him +to bring in +and +to place +before +Him +And +not +having found +what way +they should bring in +him +on account of +the +crowd +having gone up +on +the +housetop +through +the +tiles +they let down +him +with +the +mat +into +the +midst +before +- +Jesus +And +having seen +the +faith +of them +He said +Man +have been forgiven +you +the +sins +of you +And +began +to reason +the +scribes +and +the +Pharisees +saying +Who +is +this +who +speaks +blasphemies +Who +is able +sins +to forgive +if +not +alone +- +God +now +- +Jesus +Having known +the +reasonings +of them +answering +He said +to +them +Why +reason you +in +the +hearts +of you +Which +is +easier +to say +Have been forgiven +you +the +sins +of you +or +to say +Arise +and +walk +however +That +you may know +that +the +Son +- +of Man +authority +has +on +the +earth +to forgive +sins +He said +to the [one] +having been paralyzed +To you +I say +arise +and +having taken up +the +mat +of you +go +to +the +house +of you +And +immediately +having stood up +before +them +having taken up +[that] on +which +he was lying +he departed +to +the +home +of him +glorifying +- +God +And +amazement +seized +all +and +they were glorifying +- +God +and +were filled +with fear +saying +- +We have seen +remarkable things +today +And +after +these things +He went forth +and +He saw +a tax collector +named +Levi +sitting +at +the +tax booth +and +He said +to him +Follow +Me +And +having left +all +having arisen +he began to follow +Him +And +made +a banquet +great +Levi +for Him +in +the +house +of him +and +there was +a multitude +great +of tax collectors +and +others +who +were +reclining +with +them +And +were grumbling +the +Pharisees +and +the +scribes +of them +at +the +disciples +of Him +saying +Because of +why +with +the +tax collectors +and +sinners +do you eat +and +drink +And +answering +- +Jesus +said +to +them +No +need +of a physician +have +those +being well +but +those +sick +being +Not +I have come +to call +righteous [ones] +but +sinners +to +repentance +And +- +they said +to +Him +The +disciples +of John +fast +often +and +prayers +make +likewise +also +those +of the +Pharisees +however +those +of You +eat +and +drink +And +- +Jesus +said +to +them +Not +are you able +the +sons +of the +bridechamber +in +which [time] +the +bridegroom +with +them +is +to fast +to make +however +Will come +days +also +when +shall be taken away +from +them +the +bridegroom +then +they will fast +in +those +- +days +now +He was speaking +also +a parable +to +them +- +No one +a piece +of +a garment +new +having torn +puts [it] +on +a garment +old +however +if +otherwise +also +the +new +he will tear +and +the +old +not +will match +which [is] +[the] piece +- +of +the +new +And +no one +puts +wine +new +into +wineskins +old +now +if +otherwise +will burst +the +wine +- +new +the +wineskins +and +it +will be spilled out +and +the +wineskins +will be destroyed +But +wine +new +into +wineskins +fresh +must be put +And +no one +having drunk +old [wine] +desires +new +for +he says +The +old +better +is +then +It came to pass +on +a Sabbath +is passing along +He +through +grainfields +and +were plucking +and +were eating +the +disciples +of Him +the +heads of grain +rubbing [them] +in the +hands +however +Some +of the +Pharisees +said +Why +do you +that which +not +it is lawful +[on] the +Sabbaths +And +answering +to +them +said +- +Jesus +Not even +have you read +this +that which +did +David +when +was hungry +he himself +and +those who +with +him +were +how +he entered +into +the +house +- +of God +and +the +loaves +of the +presentation +having taken +ate +and +gave +to those +with +him +which +to eat +not +it is lawful +if +not +only +to the +priests +And +He was saying +to them +is +Lord +of the +Sabbath +the +Son +- +of Man +then +It came to pass +on +another +Sabbath +entered +He +into +the +synagogue +and +taught +and +there was +a man +there +and +the +hand +of him +the +right +was +withered +now +Were closely watching +Him +the +scribes +and +the +Pharisees +whether +on +the +Sabbath +He will heal +that +they might find [reason] +to accuse +Him +now +He +knew +the +thoughts +of them +now +He said +to the +man +the +withered +having +the +hand +Arise +and +stand +in +the +midst +And +having risen up +he stood +then +Said +- +Jesus +to +them +I ask +you +whether +it is lawful +on the +Sabbath +to do good +or +to do evil +Life +to save +or +to destroy +And +having looked around +all +on them +He said +to him +Stretch out +the +hand +of you +And +- +he did +and +was restored +the +hand +of him +then +They themselves +were filled +with rage +and +were discussing +with +one another +- +what +they might do +- +to Jesus +then +It came to pass +in +the +days +those +went out +He +to +the +mountain +to pray +and +He was +spending the night +in +- +prayer +- +to God +And +when +it became +day +He called to [Him] +the +disciples +of Him +also +having chosen out +from +them +twelve +whom +also +apostles +He named +Simon +whom +also +He named +Peter +and +Andrew +the +brother +of him +and +James +and +John +and +Philip +and +Bartholomew +and +Matthew +and +Thomas +and +James +[son of] Alphaeus +and +Simon +the [one] +called +Zealot +and +Judas [son] +of James +and +Judas +Iscariot +who +became +[the] betrayer +And +having descended +with +them +He stood +on +a place +level +and +a crowd +large +of disciples +of Him +and +a multitude +great +of the +people +from +all +- +Judea +and +Jerusalem +and +the +sea coast +of Tyre +and +Sidon +who +came +to hear +Him +and +to be healed +of +the +diseases +of them +And +those +troubled +with +spirits +unclean +were healed +And +all +the +multitude +were seeking +to touch +Him +because +power +from +Him +was going out +and +healing +all +And +He +having lifted up +the +gaze +of Him +upon +the +disciples +of Him +was saying +Blessed [are] +the +poor +for +yours +is +the +kingdom +- +of God +Blessed [are] +those +hungering +now +for +you will be filled +Blessed [are] +those +weeping +now +for +you will laugh +Blessed +are you +when +shall hate +you +- +men +and +when +they shall exclude +you +and +shall insult [you] +and +shall cast out +the +name +of you +as +evil +on account of +the +Son +- +of Man +Rejoice +in +that +- +day +and +leap for joy +for +behold +the +reward +of you +[is] great +in +- +heaven +for +According to +these things +of them +used to treat +the +prophets +the +fathers +likewise +But +woe +to you +who are +rich +for +you are receiving +the +comfort +of you +Woe +to you +who +having been filled +now +for +you will hunger +Woe to +those +laughing +now +for +you will mourn +and +will weep +Woe to you +when +well +of you +speak +all +- +men +for +according to +these things +of them +used to treat +the +false prophets +the +fathers +likewise +But +I say +to you +to those +hearing +Love +the +enemies +of you +good +do +to those +hating +you +bless +those +cursing +you +pray +for +those +mistreating +you +To the [one] +striking +you +on +the +cheek +offer +also +the +other +and +from +the [one] +taking away +your +- +cloak +also +the +tunic +not +do withhold +To everyone +asking +you +give +and +from +the [one] +taking away +what [is] +yours +not +ask [it] back +And +as +you desire +that +should do +to you +- +men +do +to them +likewise +And +if +you love +those +loving +you +what +credit +to you +is it +for +Even +- +sinners +those +loving +them +love +for +if +And +you do good +to those +doing good to +you +what +credit +to you +is it +For even +- +sinners +the +same +do +And +if +you lend [to those] +from +whom +you expect +to receive back +what +credit +to you +is it +Even +sinners +to sinners +lend +that +they might receive +the +same amount +But +love +the +enemies +of you +and +do good +and +lend +nothing +expecting in return +and +will be +the +reward +of you +great +and +you will be +sons of +the Most High +for +He +kind +is +to +the +ungrateful +and +evil +Be you +merciful +as +the +Father +of you +merciful +is +And +not +judge +that +no +not +you should be judged +and +not +condemn +that +no +not +you should be condemned +Forgive +and +you will be forgiven +Give +and +it will be given +to you +Measure +good +pressed down +shaken together +running over +will they put +into +the +lap +of you +for +with that +measure +you measure +it will be measured again +to you +then +He spoke +also +a parable +to them +Not +is able +a blind [man] +a blind [man] +to lead +Not +both +into +a pit +will fall +Not +is +a disciple +above +the +teacher +however +fully trained +everyone +will be +like +the +teacher +of him +now +Why +look you at +the +splinter +that [is] +in +the +eye +of the +brother +of you +and +- +the beam +that [is] +in +the +own +eye +not +notice +How +are you able +to say +to +brother +of you +Brother +let [that] +I might cast out +the +splinter +that [is] +in +the +eye +of you +yourself +the +in +the +eye +of you +beam +not +seeing +Hypocrite +cast out +first +the +beam +from +the +eye +of you +and +then +you will see clearly +the +splinter +- +in +the +eye +of the +brother +of you +to cast out +for +No +there is +producing +tree +good +fruit +bad +nor +again +a tree +bad +producing +fruit +good +for +Each +tree +by +the +own +fruit +is known +for +Not +from +thorns +do they gather +figs +nor +from +a bramble bush +grapes +gather they +The +good +man +out of +the +good +treasure +of the +heart +brings forth +that which [is] +good +and +the +evil +out of +the +evil +brings forth +that which [is] +evil +for +Out of +the abundance +of his heart +speaks +the +mouth +of him +now +Why +Me +do you call +Lord +Lord +and +not +do +what +I say +Everyone +who +is coming +to +Me +and +hearing +of Me +the +words +and +doing +them +I will show +you +whom +he is +like +Like +he is +to a man +building +a house +who +dug +and +deepened +and +laid +a foundation +on +the +rock +then +a flood +having come +burst upon +the +stream +the +house +that +and +not +was able +to shake +it +because +- +well +had been built +it +however +The [one] +having heard +and +not +having done +like +is +to a man +having built +a house +on +the +ground +without +a foundation +on which +burst +the +stream +and +immediately +it fell +and +was +the +ruin +of the +house +that +great +And when +He had completed +all +the +words +of Him +in +the +hearing +of the +people +He entered +into +Capernaum +then +Of a centurion +a certain +servant +sick +being +was about +to die +who +was +to him +valued highly +then +Having heard +about +- +Jesus +he sent +to +Him +elders +of the +Jews +begging +Him +that +having come +He might save +the +servant +of him +And +- +having come +to +- +Jesus +they were begging +Him +earnestly +saying +that +Worthy +he is +to whom +You will grant +this +for +he loves +the +nation +of us +and +the +synagogue +he +built +for us +And +- +Jesus +was going +with +them +then +Already +He +not +far +being distant +from +the +house +sent +friends +the +centurion +saying +to Him +Lord +not +trouble Yourself +for +not +I am +worthy +that +under +the +roof +of me +You should come +therefore +neither +myself +counted I worthy +to +You +to come +but +say +in a word +and +shall be healed +the +servant +of me +for +Also +I +am +a man +under +authority +appointed +having +under +me +soldiers +and +I say +to this [one] +Go +and +he goes +and +to another +Come +and +he comes +and +to +[the] servant +of me +Do +this +and +he does [it] +then +Having heard +these things +- +Jesus +marveled at +him +and +having turned +to the +following +Him +crowd +He said +I say +to you +not even +in +- +Israel +such great +faith +did I find +And +having returned +to +the +house +those +having been sent +found +the +servant +in good health +And +it came to pass +on +the +next [day] +He went +into +a town +called +Nain +and +were going with +Him +the +disciples +of Him +and +a crowd +great +then +As +He drew near +to the +gate +of the +town +also +behold +was being carried out +[one] having died +only begotten +son +of the +mother +of him +and +she +was +a widow +And +a crowd +of the +town +considerable +was +with +her +And +having seen +her +the +Lord +was moved with compassion +on +her +and +said +to her +Not +weep +And +having come up +He touched +the +bier +then +those +bearing [it] +stopped +And +He said +Young man +to you +I say +Arise +And +sat up +the +dead [man] +and +began +to speak +and +He gave +him +to the +mother +of him +then +Seized +fear +all +and +they began glorifying +- +God +saying +- +A prophet +great +has risen up +among +us +and +- +Has visited +- +God +the +people +of Him +And +went out +the +report +this +concerning +Him +in +all +- +Judea +and +in all +the +surrounding region +And +brought word +to John +the +disciples +of him +concerning +all +these things +And +having called near +two +certain +- +disciples +of him +- +John +sent [them] +to +the +Lord +saying +You +are +the +coming [One] +or +another +are we to look for +then +Having come +to +Him +the +men +said +John +the +Baptist +has sent +us +to +you +saying +You +are +the +coming [One] +or +another +are we to look for +At +that very +- +hour +He healed +many +of +diseases +and +afflictions +and +spirits +evil +and +to blind +many +He granted +to see +And +answering +He said +to them +Having gone +relate +to John +what +you have seen +and +heard +Blind +receive sight +lame +walk +lepers +are cleansed +and +deaf +hear +dead +are raised +poor +are gospelized +And +blessed +is +if +who +not +shall be offended +in +Me +then +Having departed +the +messengers +of John +He began +to speak +to +the +crowds +concerning +John +What +to see +have you gone out +into +the +wilderness +A reed +by +[the] wind +shaken +But +what +to see +have you gone out +A man +in +fine +clothing +arrayed +Behold +those +in +clothing +splendid +and +in luxury +living +in +the +palaces +are +But +what +to see +have you gone out +A prophet +Yes +I say +to you +and [one] +more excellent +than a prophet +This +is he +concerning +whom +it has been written +Behold +I send +the +messenger +of Me +before +[the] face +of you +who +will prepare +the +way +of You +before +You +I say +to you +a greater +among +[those] born +of women +than John +no one +is +yet +- +the least +in +the +kingdom +of +God +greater +than he +is +And +all +the +people +even +the +tax collectors +having heard +declared as righteous +- +God +having been baptized [with] +the +baptism +of John +but +- +the Pharisees +and +the +lawyers +the +counsel +- +of God +rejected +as to +themselves +not +having been baptized +by +him +therefore +To what +will I liken +the +men +of the +generation +this +And +to what +are they +like +Like +are they +to little children +- +in +the marketplace +sitting +and +calling +to each other +one +saying +We piped +to you +and +not +you did dance +we sang a dirge +and +not +you did weep +for +Has come +John +the +Baptist +neither +eating +bread +nor +drinking +wine +and +you say +A demon +He has +Has come +the +Son +- +of Man +eating +and +drinking +and +you say +Behold +a man +a glutton +and +a drunkard +a friend +of tax collectors +and +of sinners +And +was justified +- +wisdom +by +all +the +children +of her +now +Was asking +one +of the +Pharisees +Him +that +He should eat +with +him +and +having entered +into +the +house +of the +Pharisee +He reclined +And +behold +a woman +who +was +in +the +city +a sinner +And +she having known +that +He had reclined +in +the +house +of the +Pharisee +having taken +an alabaster flask +of fragrant oil +and +having stood +behind Him +at +the +feet +of Him +weeping +she began +the +tears +to wet +with the +feet +of Him +and +with the +hairs +of the +head +of her +she was wiping [them] +and +was kissing +the +feet +of Him +and +was anointing [them] +with the +fragrant oil +now +Having seen +the +Pharisee +the [one] +having invited +Him +he spoke +within +himself +saying +if +This +He were +a prophet +- +would have known +who +and +what +the +woman [is] +who +touches +Him +for +a sinner +she is +And +answering +- +Jesus +said +to +him +Simon +I have +to you +something +to say +And +- +Teacher +say [it] +he says +Two +debtors +there were +to a creditor +certain +the +one +owed +denarii +five hundred +and +- +the other +fifty +Nothing +having +they +to pay +both +he forgave +therefore +Which +of them +more +will love +him +Answering +Simon +said +I take it +that +[he] to whom +the +most +he forgave +And +- +He said +to him +Rightly +You have judged +And +having turned +to +the +woman +- +to Simon +He was saying +See you +this +the +woman +I entered +into +of you +the +house +water +of Me +for +feet +not +you gave +however +with her +- +tears +she wet +My +- +feet +and +with +[the] hair +of her +wiped [them] +A kiss +to Me +not +you gave +however +she herself +from +which [time] +I came in +not +has ceased +kissing +My +- +feet +With oil +the +head +of Me +not +you did anoint +however +she herself +with fragrant oil +anointed +the +feet +of Me +This +therefore +I say +to you +have been forgiven +the +sins +of her +- +many +for +she loved +much +however +to whom +little +is forgiven +little +he loves +then +He said +to her +Have been forgiven +your +- +sins +And +began +those +reclining +to say +within +themselves +Who +this +is +who +even +sins +forgives +then +He said +to +the +woman +The +faith +of You +has saved +you +go +in +peace +And +it came to pass +afterward +- +soon +that +He +was traveling +throughout +city +and +village +preaching +and +proclaiming the good news +of the +kingdom +- +of God +And +[were] with +Him +the +Twelve +and +women +certain +who +had been +cured +from +spirits +evil +and +infirmities +Mary +who +is called +Magdalene +from +whom +demons +seven +had gone out +and +Joanna +wife +of Chuza +a steward +of Herod +and +Susanna +and +others +many +who +were ministering +to them +out of +the +means +their own +now +[As] is assembling +a crowd +great +and +those +from each +town +are coming +to +Him +He spoke +by +a parable +Went out +the [one] +sowing +- +to sow +the +seed +of him +And +in +the +sowing +of him +some +indeed +fell +along +the +road +and +it was trampled upon +and +the +birds +of the +air +devoured +it +And +other +fell +upon +the +rock +and +having sprung up +it withered +through +- +no +having +moisture +And +other +fell +in +[the] midst +of the +thorns +and +having sprung up with [it] +the +thorns +choked +it +And +other +fell +upon +the +soil +- +good +and +having sprung up +it produced +fruit +a hundredfold +These things +saying +He was calling out +The [one] +having +ears +to hear +let him hear +then +Were asking +Him +the +disciples +of Him +What +means +this +the +parable +And +- +He said +To you +it has been given +to know +the +mysteries +of the +kingdom +- +of God +however +to +[the] rest +[it is] in +parables +so that +Seeing +not +may they see +and +hearing +not +may they understand +now +Is +this +the +parable +The +seed +is +the +word +- +of God +now +Those +along +the +road +are +those +having heard +then +comes +the +devil +and +takes away +the +word +from +the +heart +of them +that +not +having believed +they should be saved +now +Those +upon +the +rock +those who +when +they hear +with +joy +receive +the +word +and +these +a root +not +have +who +for +a time +believe +and +in +time +of testing +fall away +now +That +into +the +thorns +having fallen +these +are +those +having heard +and +under +cares +and +riches +and +pleasures +- +of life +moving along +are choked +and +not +do mature +now +That +in +the +good +soil +these +are +those +in +a heart +worthy +and +good +having heard +the +word +keep [it] +and +bring forth fruit +by +perseverance +now +No one +a lamp +having lighted +covers +it +with a vessel +or +under +a bed +puts [it] +but +on +a lampstand +puts [it] +so that +those +entering in +may see +the +light +for +Nothing +is +hidden +which +not +manifest +will become +nor +secret +which +nothing +not +shall be known +and +to +light +come +therefore +Take heed +how +you hear +for +- +whoever +might have +will be given +to him +and +- +whoever +not +might have +even +what +to have +he seems +will be taken away +from +him +then +Came +to +Him +the +mother +and +the +brothers +of Him +and +not +they were able +to get +to Him +because of +the +crowd +also +It was told +Him +The +mother +of You +and +the +brothers +of You +are standing +outside +to see +You +wanting +But +- +answering +He said +to +them +Mother +of Me +and +brothers +of me +those +are +who +the +word +- +of God +are hearing +and +doing +then +It came to pass +on +one +of the +days +also +He +entered +into +a boat +with +the +disciples +of Him +and +He said +to +them +Let us pass over +to +the +other side +of the +lake +And +they launched out +then +Sailing +of them +He fell asleep +And +came down +a storm +of wind +on +the +lake +and +they were being swamped +and +were in danger +then +Having come to [Him] +they awoke +Him +saying +Master +Master +we are perishing +And +- +having arisen +He rebuked +the +wind +and +the +raging +of the +water +and +they ceased +and +there was +a calm +then +He said +to them +Where is +the +faith +of you +then +Having been afraid +they marveled +saying +to +one another +then +Who +this +is +that +even +the +winds +and +the +water +He commands +and +they obey +Him +And +they sailed down +to +the +region +of the +Gerasenes +which +is +opposite +- +Galilee +then +He +Having gone forth +upon +the +land +met [Him] +a man +certain +out of +the +city +having +demons +and +time +a long +not +was wearing +clothing +and +in +a house +not +did abide +but +in +the +tombs +then +Having seen +- +Jesus +having cried out +he fell down before +Him +and +in a voice +loud +said +What +to me +and +to You +Jesus +Son +- +of God +the +Most High +I implore +of You +not +me +You might torment +for +He was commanding +the +spirit +- +unclean +to come out +from +the +man +for +Many +times +it had seized +him +and +he was bound +with chains +and +shackles +being kept +and +breaking +the +chains +he was driven +by +the +demon +into +the +deserts +now +Asked +him +- +Jesus +What +your +name +is +And +- +he said +Legion +because +were entered +demons +many +into +him +And +they were begging +Him +that +not +he would command +them +into +the +abyss +to go away +now +There was +there +a herd +of pigs +many +feeding +in +the +mountain +and +they begged +Him +that +He would allow +them +into +them +to enter +and +He allowed +them +then +the +demons +Having gone out +from +the +man +they entered +into +the +pigs +and +rushed +the +herd +down +the +steep bank +into +the +lake +and +was drowned +then +those +feeding [them] +Having seen +that +having taken place +they fled +and +reported [it] +to +the +city +and +to +the +country +then +They went out +to see +that +having taken place +and +they came +to +- +Jesus +and +found +sitting +the +man +from +whom +the +demons +had gone out +clothed +and +being of sound mind +at +the +feet +- +of Jesus +And +they were afraid +then +Related +to them +those +having seen [it] +how +was healed +the [one] +having been possessed by demons +And +asked +all +the +multitude +of the +surrounding region +of the +Gerasenes +Him +to depart +from +them +because +with fear +great +they were seized +now +He +having entered +into +the boat +turned back +however +Was begging +Him +the +man +from +whom +had gone +the +demons +to be [taken] +with +Him +however +He sent away +him +saying +Return +to +the +house +of you +and +relate +all that +for you +has done +- +God +And +he departed +through +all +the +city +proclaiming +all that +had done +for him +- +Jesus +then +When +- +returned +- +Jesus +received +Him +the +crowd +for +all +they were +looking for +Him +And +behold +came +a man +whose +name [was] +Jairus +and +he +a ruler +of the +synagogue +was +and +having fallen +at +the +feet +of Jesus +he began begging +Him +to come +to +the +house +of him +because +daughter +an only +about +years [old] +twelve +was +to him +and +she +was dying +then +As +- +went +He +the +crowds +were pressing around +Him +And +a woman +being +with +a flux +of blood +for +years +twelve +who +neither +was able +by +no one +to be healed +having come +behind +touched +the +fringe +the +of cloak +of Him +and +immediately +stopped +the +flux +of the +blood +of her +And +said +- +Jesus +Who [is] +the [one] +having touched +Me +however +Were denying [it] +all +said +- +Peter +Master +the +people +surround +You +and +press in +But +- +Jesus +said +Touched +Me +someone +for +I +know +power +has gone out +from +Me +then +the +woman +Having seen +that +not +she was hid +trembling +she came +and +having fallen down before +Him +for +what +cause +she touched +Him +she declared +before +all +the +people +and +how +she was healed +immediately +And +- +He said +to her +Daughter +the +faith +of you +has healed +you +go +in +peace +Still +of Him +speaking +comes +one +from +the +synagogue ruler +saying +- +Has died +the +daughter +of You +no longer +trouble +the +Teacher +But +- +Jesus +having heard +answered +him +Not +fear +only +believe +and +she will be saved +then +Having entered +into +the +house +not +He did allow +to go in +anyone +with +Him +if +not +Peter +and +John +and +James +and +the +father +of the +child +and +the +mother +now +all +They were weeping +and +mourning for +her +But +- +He said +Not +weep +not +she is dead +but +sleeps +And +they were laughing at +Him +knowing +that +she was dead +now +He +having taken hold +of the +hand +of her +called out +saying +- +Child +arise +And +returned +the +spirit +of her +and +she arose +immediately +and +He directed +to her +to be given +to eat +And +were amazed +the +parents +of her +and +- +He instructed +them +no one +to tell +what +had happened +then +Having called together +the +Twelve +He gave +to them +power +and +authority +over +all +the +demons +and +diseases +to heal +and +He sent +them +to proclaim +the +kingdom +- +of God +and +to heal +and +He said +to +them +Nothing +take +for +the +journey +neither +staff +nor +bag +nor +bread +nor +money +nor +apiece +two +tunics +to have +And +- +into +whatever +house +you might enter +there +remain +and +from there +go forth +And +- +as many as +not +might receive +you +going forth +from +the +city +that +the +dust +from +the +feet +of you +shake off +as +a testimony +against +them +then +Going forth +they were passing +through +the +villages +proclaiming the gospel +and +healing +everywhere +now +Heard of +Herod +the +Tetrarch +the things +being done +all +and +was perplexed +because +- +it was said +by +some +- +John +has been raised +out from +[the] dead +also +by +some +that +Elijah +had appeared +also +by others +that +a prophet +one +of the +ancients +had arisen +then +Said +Herod +John +I +beheaded +however +who +is +this +concerning +whom +I hear +such things +And +he was seeking +to see +Him +And +having returned +the +apostles +related +to Him +whatever +they had done +And +having taken +them +He withdrew +by +Himself +into +a town +called +Bethsaida +now +The +crowds +having known [it] +followed +Him +and +having received +them +He was speaking +to them +concerning +the +kingdom +- +of God +and +those +need +of healing +having +He was healing +And +- +the day +began +to decline +then +having come +the +Twelve +said +to Him +Dismiss +the +crowd +that +having gone +into +the +surrounding +villages +and +countryside +they might lodge +and +might find +provisions +for +here +in +a desolate +place +we are +now +He said +to +them +Give +to them +to eat +you +But +- +they said +Not +there are +to us +more +than +loaves +five +and +fish +two +if +not +having gone +we +should buy +for +all +the +people +this +food +for +They were +about +five thousand +men +then +He said +to +the +disciples +of Him +Make sit down +them +groups +of about +in +fifty +And +they did +so +and +made sit down +all +then +Having taken +the +five +loaves +and +the +two +fish +having looked up +to +the +heaven +He blessed +them +and +broke [them] +and +He kept giving [them] +to the +disciples +to set before +the +crowd +And +they ate +and +were satisfied +all +and +was taken up +that +having been a surplus +to them +of fragments +hand-baskets +twelve +And +it came to pass +as +- +was +praying +He +in +solitary +were with +Him +the +disciples +and +He questioned +them +saying +Whom +Me +to be +the +crowds +do pronounce +And +- +answering +they said +John +the +Baptist +also +others +Elijah +now +others +that +a prophet +one +of the +ancients +has arisen +then +He said +to them +however +You +whom +Me +to be +do pronounce +then +Peter +answering +said +The +Christ +- +of God +And +- +having strictly warned +them +He instructed [them] +to no one +to tell +this +having said +- +It is necessary for +the +Son +- +of Man +many things +to suffer +and +to be rejected +by +the +elders +and +chief priests +and +scribes +and +to be killed +and +on the +third +day +to be raised +then +He was saying +to +all +If +anyone +desires +after +Me +to come +let him deny +himself +and +let him take up +the +cross +of him +every +day +and +let him follow +Me +for +- +Whoever +might desire +the +life +of him +to save +will lose +it +however +- +whoever +might lose +the +life +of him +on account of +me +he +will save +it +for +What +is profited +a man +having gained +the +world +whole +now +himself +having destroyed +or +having suffered the loss of +for +- +Whoever +may have been ashamed of +Me +and +- +My +words +him +the +Son +- +of Man +will be ashamed of +when +He shall come +in +the +glory +of Himself +and +of the +Father +and +of the +holy +angels +now +I say +to you +truthfully +there are +some +of those +here +standing +who +no +not +shall taste +of death +until +- +they shall have seen +the +kingdom +- +of God +now +It came to pass +after +the +sayings +these +about +days +eight +and +having taken +Peter +and +John +and +James +He went up +on +the +mountain +to pray +And +it came to pass +in +the +praying +of Him +the +appearance +of the +face +of Him +[was] altered +and +the +clothing +of Him +white +became dazzling +And +behold +men +two +began talking with +Him +who +were +Moses +and +Elijah +Those +having appeared +in +glory +were speaking of +the +going out +of Him +which +to accomplish +in +Jerusalem +He was about +And +- +Peter +and +those +with +him +were +heavy +with sleep +then +having awoken fully +they saw +the +glory +of Him +and +the +two +men +- +standing with +Him +And +it came to pass +in +the +departing +of them +from +Him +said +- +Peter +to +- +Jesus +Master +good +it is +for us +here +to be +also +let us make +tabernacles +three +one +for You +and +one +for Moses +and +one +for Elijah +not +knowing +what +he is saying +then +These things +as he +is saying +came +a cloud +and +was overshadowing +them +then +they feared +in +the +entering +of them +into +the +cloud +And +a voice +came +out of +the +cloud +saying +This +is +the +Son +of Me +- +whom I have chosen +Him +listen to +And +as +- +occurred +the +voice +was found +Jesus +alone +And +they +were silent +and +to no one +they told +in +those +the +days +anything +of what +they had seen +then +It came to pass +the +next +day +on having come down +of them +from +the +mountain +met +Him +a crowd +great +And +behold +a man +from +the +crowd +cried out +saying +Teacher +I implore +You +to look +upon +the +son +of me +for +an only child +to me +he is +And +behold +a spirit +takes +him +and +suddenly +he cries out +and +it throws into convulsions +him +with +foaming +and +with difficulty +it departs +from +him +bruising +him +And +I begged +the +disciples +of You +that +they might cast out +it +and +not +they were able +now +Answering +- +Jesus +said +O +generation +unbelieving +and +perverted +until +when +will I be +with +you +and +bear with +you +Bring +here +the +son +of you +then +While +he was coming near +of him +threw down +him +the +demon +and +threw [him] into convulsions +then +Rebuked +- +Jesus +the +spirit +- +unclean +and +healed +the +boy +and +gave back +him +to +father +of him +then +Were astonished +all +at +the +majesty +- +of God +however +Of all +wondering +at +all +which +He did +He said +to +the +disciples +of Him +Let sink +you +into +the +ears +of you +the +words +these +for +- +the Son +- +of Man +is about +to be betrayed +into +[the] hands +of men +But +- +they understand not +the +saying +this +and +it was +veiled +from +them +that +not +they should understand +it +And +they were afraid +to ask +Him +concerning +the +saying +this +then +Came up +among +them +an argument +this +- +who +of them +might be +greatest +But +- +Jesus +having known +the +reasoning +of the +heart +of them +having taken hold of +a child +set +it +by +Him +and +He said +to them +if +Whoever +shall receive +this +- +child +in +the +name +of Me +Me +receives +and +- +whoever +Me +shall receive +receives +the [One] +having sent +Me +for +The [one] +least +among +all +you +being +he +shall be +great +now +Answering +- +John +said +Master +we saw +someone +in +the +name +of You +casting out +demons +and +we were forbidding +him +because +not +he follows +with +us +then +Said +to +him +Jesus +Not +forbid +for +whoever +not +is +against +you +for +you +is +then +It came to pass +in +the +completing +the +days +of the +ascension +of Him +that +He +the +face +steadfastly set +- +to go +to +Jerusalem +And +He sent +messengers +before +[the] face +of Him +And +having gone +they entered +into +a village +of the Samaritans +so as +to make ready +for Him +And +not +they did receive +Him +because +the +face +of Him +was [as] +going +toward +Jerusalem +now +Having seen [it] +the +disciples +James +and +John +said +Lord +will You [that] +we should call +fire +to come down +from +- +heaven +and +to consume +them +then +Having turned +He rebuked +them +And +they went +to +another +village +And +going +of them +along +the +road +said +someone +to +Him +I will follow +You +if +wherever +You may go +And +said +to him +- +Jesus +The +foxes +holes +have +and +the +birds +of the +air +nests +but +- +the Son +- +of Man +not +has +where +the +head +He might lay +then +He said +to +another +Follow +Me +But +- +he said +allow +me +first +having gone away +to bury +the +father +of me +then +He said +to him +Leave +the +dead +to bury +- +their own +dead +however +you +having gone forth +declare +the +kingdom +- +of God +then +Said +also +another +I will follow +You +Lord +however +first +allow +me +to bid farewell +to those +at +the +home +of me +then +Said +to +him +- +Jesus +No one +having laid +the +hand +upon +[the] plow +and +looking +on +the things +behind +fit +is +for the +kingdom +- +of God +now +After +these things +appointed +the +Lord +others +seventy +and +sent +them +in +two [by] +before +[the] face +of Himself +into +every +city +and +place +where +was about +He Himself +to go +then +He was saying +to +them +indeed +The +harvest [is] +plentiful +but +- +the workmen +[are] few +therefore +Pray earnestly to +the +Lord +of the +harvest +that +workmen +He may send out +into +the +harvest +of Him +Go +behold +I send forth +you +as +lambs +in +[the] midst +of wolves +Neither +carry +purse +nor +bag +nor +sandals +and +no one +on +the +road +greet +now +- +Into +whatever +house +you might enter +first +say +Peace +to the +house +this +And +if +there +is +a son +of peace +will rest +upon +him +the +peace +of you +however +if +not so +to +you +it will return +now +In +the same +- +house +remain +eating +and +drinking +the things [supplied] +by +them +for +worthy [is] +the +workman +of the +wages +of him +Not +move +from +house +to +house +And +- +into +whatever +city +you might enter +and +they receive +you +eat +the things +set before +you +And +heal +- +in +it +[the] sick +and +say +to them +Has drawn near +to +you +the +kingdom +- +of God +now +- +Into +whatever +city +you might enter +and +not +they receive +you +having gone out +into +the +streets +of it +say +Even +the +dust +- +having clung +to us +out of +the +city +of you +to +the +feet +we wipe off +against you +yet +this +know +that +has drawn near +the +kingdom +- +of God +I say +to you +that +for Sodom +in +the +day +that +more tolerable +it will be +than +the +city +for that +Woe +to you +Chorazin +Woe +to you +Bethsaida +For +if +in +Tyre +and +Sidon +had taken place +the +miracles +- +having taken place +in +you +- +long ago +in +sackcloth +and +ashes +sitting +they would have repented +But +for Tyre +and +Sidon +more tolerable +will it be +in +the +judgment +than +for you +And +Capernaum +not +you +to +heaven +will you be lifted up +to +- +Hades +you will be brought down +The [one] +hearing +you +Me +hears +and +the [one] +rejecting +you +Me +rejects +now +the [one] +Me +rejecting +rejects +the [One] +having sent +Me +then +Returned +the +seventy +with +joy +saying +Lord +even +the +demons +are subject +to us +through +the +name +of You +then +He said +to them +I beheld +- +Satan +as +lightning +out of +the +heaven +having fallen +Behold +I give +you +the +authority +- +to tread +upon +serpents +and +scorpions +and +upon +all +the +power +of the +enemy +and +nothing +you +no +not +will injure +Yet +in +this +not +rejoice +that +the +spirits +to you +are subjected +however +rejoice +that +the +names +of you +are written +in +the +heavens +In +the same +- +hour +He rejoiced +the +Spirit +- +Holy +and +said +I fully consent +to You +Father +Lord +of the +heaven +and +of the +earth +that +You have hidden +these things +from +wise +and +intelligent +and +have revealed +them +to little children +yes +- +Father +for +thus +well-pleasing +was it +before +You +All things +to Me +have been delivered +by +the +Father +of Me +And +no one +knows +who +is +the +Son +if +not +the +Father +and +who +is +the +Father +if +not +the +Son +and +if +to whom +to reveal [Him] +might resolve +the +Son +And +having turned +to +the +disciples +in +private +He said +Blessed [are] +the +eyes +- +seeing +what +you see +for +I say +to you +that +many +prophets +and +kings +desired +to see +what +you +see +and +not +saw +and +to hear +what +you hear +and +not +heard +And +behold +a lawyer +certain +stood up +testing +Him +saying +Teacher +what +having done +life +eternal +will I inherit +And +- +He said +to +him +In +the +law +what +has been written +How +read you +And +- +answering +he said +You shall love +[the] Lord +the +God +of you +with +all +the +heart +of you +and +with +all +the +soul +of you +and +with +all +the +strength +of you +and +with +all +the +mind +of you +and +The +neighbor +of you +as +yourself +then +He said +to him +Correctly +you have answered +This +do +and +you will live +But +- +desiring +to justify +himself +he said +to +- +Jesus +And +who +is +my +neighbor +Having taken [it] up +- +Jesus +said +A man +certain +was going down +from +Jerusalem +to +Jericho +and +robbers +fell among +who +both +having stripped +him +and +wounds +having inflicted +went away +having left [him] +half dead +now +By +chance +a priest +certain +was going down +on +the +road +that +and +having seen +him +he passed by on the opposite side +now +Likewise +also +a Levite +to +the +spot +having come +and +having seen [him] +passed by on the opposite side +however +A Samaritan +one +journeying +came +to +him +and +having seen +was moved with compassion +and +having approached +he bound up +the +wounds +of him +pouring on +oil +and +wine +then +having put +him +on +the +own +beast +he brought +him +to +an inn +and +took care +of him +And +on +the +next day +having taken out +two +denarii +he gave [them] +to the +innkeeper +and +said +Take care +of him +and +more +- +whatever +you might expend +of me +on +- +returning +I +will repay +you +seems +to you +Which +of these +- +three +to have been +a neighbor +of the [one] +having fallen +among +the +robbers +And +- +he said +The [one] +having shown +- +compassion +toward +him +then +Said +to him +- +Jesus +Go +and +you +do +likewise +now +In +the +proceeding +of them +He +entered +into +a village +certain +now +a woman +certain +named +Martha +received +Him +into +the +home +And +she +had +a sister +called +Mary +who +also +having sat down +at +the +feet +of the +Lord +was listening to +the +word +of Him +But +- +Martha +was distracted +about +much +service +now +having come up +she said +Lord +not +is it concerning +to You +that +the +sister +of me +alone +me +to serve +has left +therefore +Speak +to her +that +me +she might help +now +Answering +said +to her +the +Lord +Martha +Martha +you are anxious +and +troubled +about +many things +however +one thing +necessary +is +and +one thing +for +Mary +the +good +portion +has chosen +which +not +will be taken away from +her +And +it came to pass +in +- +being +praying +His +in +a place +certain +when +He ceased +said +one +of the +disciples +of Him +to +Him +Lord +teach +us +to pray +as +also +John +taught +the +disciples +of him +then +He said +to them +When +you pray +say +Father +hallowed be +the +name +of You +Come +the +kingdom +of You +The +bread +of us +- +daily +give +us +- +each +day +And +forgive +us +the +sins +of us +for +also +ourselves +we forgive +everyone +indebted +to us +and +not +lead +us +into +temptation +And +He said +to +them +Who +among +you +will have +a friend +and +will go +to +him +at midnight +and +say +to him +Friend +lend +me +three +loaves +since +a friend +of my +is come +off +a journey +to +me +and +nothing +I have +what +I will set before +him +And he +from within +answering +will say +Not +me +trouble +cause +already +the +door +has been shut +and +the +children +of me +with +me +in +the +bed +are +not +I am able +having risen up +to give +to you +I say +to you +if +even +not +he will give +to him +having risen up +because of +- +being +friend +of him +yet +because of +the +persistence +of him +having risen +he will give +him +as much as +he needs +And I +to you +say +ask +and +it will be given +to you +seek +and +you will find +knock +and +it will be opened +to you +for +Everyone +- +asking +receives +and +the [one] +seeking +finds +and +to the [one] +knocking +it will be opened +now +Which +of +you +who [is] +a father +will ask for +the +son +a fish +and +instead of +a fish +a serpent +to him +will he give +Or +also +[if] he will ask for +an egg +will he give +to him +a scorpion +therefore +If +you +evil +being +know +gifts +good +to give +to the +children +of you +how much +more +the +Father +who [is] +in +heaven +will give +[the] Spirit +Holy +to those +asking +Him +And +He was +casting out +a demon +and +it +was +mute +then +it came to pass +the +demon +having gone out +spoke +the +mute [man] +And +marveled +the +crowds +then +Some +of +them +said +By +Beelzebul +the +prince +of the +demons +He casts out +the +demons +now +Others +testing +a sign +from +heaven +were seeking +from +Him +now +He +knowing +their +- +thoughts +said +to them +Every +kingdom +against +itself +having been divided +is brought to desolation +and +a house +against +a house +falls +now +If +also +- +Satan +against +himself +is divided +how +will stand +the +kingdom +of him +For +you say +by +Beelzebul +cast out +I +the +demons +now +If +I +by +Beelzebul +cast out +the +demons +the +sons +of you +by +whom +do they cast out +On account of +this +they +of you +judges +will be +however +If +by +[the] finger +of God +I +cast out +the +demons +then +has come +upon +you +the +kingdom +- +of God +When +the +strong [man] +being armed +might guard +- +his +house +in +peace +are +the +possessions +of him +however +when +[one] stronger +than he +having come upon [him] +shall overcome +him +the +complete armor +of him +he takes away +in +which +he had trusted +and +the +plunder +of him +he divides +The [one] +not +being +with +Me +against +Me +is +and +the [one] +not +gathering +with +Me +scatters +When +the +unclean +spirit +is gone out +from +the +man +it passes +through +waterless +places +seeking +rest +and +not +finding [any] +it says +I will return +to +the +house +of me +from where +I came out +And +having come +it finds [it] +swept +and +put in order +Then +it goes +and +takes +other +spirits +more evil +than itself +seven +and +having entered +they dwell +there +and +becomes +the +last +of the +man +that +worse +than the +first +then +It came to pass +in +- +saying +His +these things +having lifted up +[her] voice +one +a woman +from +the +crowd +said +to Him +Blessed [is] +the +womb +- +having borne +You +and +[the] breasts +at which +You nursed +then +He +said +No rather +blessed [are] +those +hearing +the +word +- +of God +and +keeping it +now +Of the +crowds +being pressed around together +He began +to say +The +generation +this +generation +an evil +is +a sign +it seeks after +and +a sign +not +will be given +to it +if +not +the +sign +of Jonah +for +As +was +Jonah +to the +Ninevites +a sign +thus +will be +also +the +Son +- +of Man +to the +generation +this +The Queen +of [the] South +will rise up +in +the +judgment +with +the +men +of the +generation +this +and +will condemn +them +For +she came +from +the +ends +of the +earth +to hear +the +wisdom +of Solomon +and +behold +greater +than Solomon +here +[The] men +of Nineveh +will stand up +in +the +judgment +with +the +generation +this +and +will condemn +it +For +they repented +at +the +preaching +of Jonah +and +behold +greater +than Jonah +[is] here +But no one +a lamp +having lit +in +secret +sets it +nor +under +the +basket +but +upon +the +lampstand +that +those +entering in +the +light +may see +The +lamp +of your +body +is +the +eye +of you +When +the +eye +of you +clear +is +also +all +the +body +of you +light +is +however +when +evil +it be +also +the +body +of you +[is] dark +therefore +Take heed +lest +the +light +that [is] +in +you +darkness +be +therefore +If +the +body +of you +[is] full +of light +not +having +part +any +dark +it will be +light +all +as +when +the +lamp +- +shining +might light +you +then +In +the +speaking +asked +Him +a Pharisee +that +He would dine +with +him +then +having entered +He reclined +And +- +the Pharisee +having seen [it] +marveled +that +not +first +He washed +before +the +dinner +then +Said +the +Lord +to +him +Now +you +- +Pharisees +the +outside +of the +cup +and +of the +dish +you cleanse +and +- +the inside +of you +is full +of plundering +and +wickedness +Fools +[Did] not +the [One] +having made +the +outside +also +the +inside +make +But [of] +the things +being within +give +alms +and +behold +all things +clean +to you +are +But +woe +to you +- +Pharisees +for +you pay tithes of +- +mint +and +- +rue +and +every +herb +and +you pass by +the +justice +and +the +love +- +of God +also +it behooved [you] +These things +to do +and those +not +to neglect +Woe +to you +- +Pharisees +for +you love +the +first seat +in +the +synagogues +and +the +greetings +in +the +marketplaces +Woe +to you +for +you are +like +- +graves +- +unmarked +and +the +men +- +walking +above +not +have known [it] +now +Answering +one +of the +lawyers +says +to Him +Teacher +these things +saying +also +us +You insult +And +- +He said +Also +to you +the +lawyers +woe +For +you burden +the +men +[with] burdens +heavy to bear +and +yourselves +with one +of the +fingers +of you +not +do touch +the +burdens +Woe +to you +for +you build +the +tombs +of the +prophets +yet +- +the fathers +of you +killed +them +So +witnesses +you are +and +consent +to the +works +of the +fathers +of you +For +indeed +they +killed +them +now +you +build [their tombs] +Because of +this +also +the +Wisdom +- +of God +said +I will send +to +them +prophets +and +apostles +and +[some] of +them +they will kill +and +persecute +so that +might be charged +the +blood +of all +the +prophets +- +having been poured out +from +[the] foundation +of [the] world +against +the +generation +this +from +the blood +of Abel +to +the blood +of Zechariah +the [one] +having perished +between +the +altar +and +the +house +Yes +I say +to you +it will be required +of +the +generation +this +Woe +to you +the +lawyers +for +you have taken away +the +key +of the +knowledge +You yourselves +not +did enter +and +those who +are entering +you hindered +From there +having gone forth +of Him +began +the +scribes +and +the +Pharisees +urgently +to press upon [Him] +and +to make speak +Him +about +many things +watching +Him +to catch +in something +out of +the +mouth +of Him +In +these [times] +having been gathered together +the +myriads +of the +crowd +so as +to trample upon +one another +He began +to say +to +the +disciples +of Him +first +Take heed +to yourselves +of +the +leaven +which +is +hypocrisy +of the +Pharisees +now +Nothing +is +concealed up +which +not +will be revealed +nor +hidden +which +not +will be known +Instead +that +whatever +in +the +darkness +you have said +in +the +light +will be heard +and +what +into +the +ear +you have spoken +in +the +inner rooms +will be proclaimed +upon +the +housetops +now +I say +to you +those +friends +of Me +not +you should fear +because +of those +killing +the +body +and +after +these things +not +being able +more abundantly +anything +to do +however +I will show +you +whom +you should fear +Fear +the [One who] +after +the +killing +has +authority +to cast +into +- +hell +Yes +I say +to you +Him +fear +Not +five +sparrows +are sold for +assarion +two +And +one +of +them +not +is +forgotten +before +- +God +But +even +the +hairs +of the +head +of you +all +have been numbered +Not +fear +than many +sparrows +you are more valuable +now +I say +to you +everyone +- +who +will confess +in +Me +before +the +men +also +the +Son +- +of Man +will confess +in +him +before +the +angels +- +of God +now +the [one] +having denied +Me +before +- +men +will be denied +before +the +angels +- +of God +And +everyone +who +will speak +a word +against +the +Son +- +of Man +it will be forgiven +him +however +the [one] +against +the +Holy +Spirit +having blasphemed +not +will be forgiven +then +When +they bring +you +before +the +synagogues +and +the +rulers +and +the +authorities +not +be anxious +how +or +what +you shall reply in defense +or +what +you should say +for +the +Holy +Spirit +will teach +you +in +same +the +hour +what +to say +it behooves [you] +then +Said +one +from +the +crowd +to Him +Teacher +say +to the +brother +of me +to divide +with +me +the +inheritance +And +- +He said +to him +Man +who +Me +appointed +a judge +or +partitioner +over +you +then +He said +to +them +Beware +and +keep yourselves +from +all +covetousness +for +not +in +the +abundance +to anyone +the +life +to him +is +of +that which +possesses +of him +then +He spoke +a parable +to +them +saying +Of a man +certain +rich +the +ground +brought forth abundantly +And +he was reasoning +within +himself +saying +What +shall I do +for +not +I have +where +I will store up +the +fruits +of me +And +he said +This +will I do +I will tear down +my +- +barns +and +greater +will build +and +will store up +there +all +the +grain +and +the +goods +of me +And +I will say +to the +soul +of me +Soul +you have +many +good things +laid up +for +years +many +take your rest +eat +drink +be merry +then +Said +to him +- +God +Fool +This +- +night +the +soul +of you +is required +of +you +now +what +you did prepare +to whom +will [it] be +So [is] +the [one] +treasuring up +for himself +and +not +toward +God +being rich +then +He said +to +the +disciples +of Him +Because of +this +I say +to you +not +be anxious +for the +life +what +you should eat +nor +for the +body +what +you should put on +for +The +life +more than +is +the +food +and +the +body +than the +clothing +Consider +the +ravens +that +not +they sow +nor +reap +to them +not +there is +a storehouse +nor +barn +and +- +God +feeds +them +How much +more +you +are valuable +than the +birds +now +Which +of +you +being anxious +is able +to +the +lifespan +of him +to add +one hour +then +If +not even +[the] least +you are able [to do] +why +about +the +rest +are you anxious +Consider +the +lilies +how +Not +do they labor +nor +do they spin +however +I say +to you +not even +Solomon +in +all +the +glory +of him +was arrayed +as +one +of these +however +If +in [the] +field +the +grass +being [here] +today +and +tomorrow +into +the furnace +being thrown +- +God +thus +clothes +how much +more +you +O [you] of little faith +And +you +not +seek +what +you might eat +and +what +you might drink +and +not +be in suspense +for +these things +all +the +nations +of the +world +seek after +now +of you +the +Father +knows +that +you have need +of these +But +seek you +the +kingdom +of Him +and +these things +will be added +to you +Not +fear +- +little +flock +for +took delight +the +Father +of you +to give +you +the +kingdom +Sell +the +possessions +of you +and +give +alms +make +to yourselves +purses +not +growing old +a treasure +unfailing +in +the +heavens +where +thief +not +does draw near +nor +moth +destroy +for +Where +is +the +treasure +of you +there +also +the +heart +of you +will be +Let be +your +- +waist +girded about +and +the +lamps +burning +and +you +like +to men +waiting for +the +master +of themselves +whenever +he shall return +from +the +wedding feasts +that +having come +and +having knocked +immediately +they might open +to him +Blessed [are] +the +servants +those +whom +watching +having come +the +master +will find +Truly +I say +to you +that +he will gird himself +and +will make recline +them +and +having come up +will serve +them +And if +in +the +second +and if +in +the +third +watch +he comes +and +finds [them] +thus +blessed +are +those +however +This +know +that +if +had known +the +master of the house +in what +hour +the +thief +is coming +- +not +he would have allowed +to be broken into +the +house +of him +Also +you +be +ready +for +in the +hour +not +you expect +the +Son +- +of Man +comes +then +Said +- +Peter +Lord +to +us +the +parable +this +speak You +or +also +to +all +And +said +the +Lord +then +Who +is +the +faithful +manager +[and] the +wise +whom +will set +the +master +over +the +care [of servants] +of him +- +to give [them] +in +season +the +measure of food +Blessed [is] +the +servant +that +whom +doing +thus +having come +the +master +of him +will find +Of a truth +I say +to you +that +over +all +the +possessions +of him +he will set +him +however +If +should say +the +servant +that +in +the +heart +of him +Delays +the +master +of Me +to come +and +should begin +to beat +the +men-servants +and +the +maid-servants +also +to eat +and +to drink +and +to get drunk +will come +the +master +of the +servant +that +in +a day +in which +not +he does expect +and +in +an hour +that +not +he knows +and +he will cut in two +him +and +the +place +of him +with +the +unbelievers +will appoint +now +That +- +servant +the [one] +having known +the +will +of the +master +of him +and +not +having prepared +nor +having done +according to +the +will +of him +will be beaten with +many [blows] +however +the [one] +not +having known +however +having done +[things] worthy +of stripes +will be beaten with +few +now +Everyone +to whom +has been given +much +much +will be required +from +him +and +to whom +has been committed +much +the more +will they ask of +him +I came +Fire +to cast +upon +the +earth +and +how +I wish +if +already +it be kindled +however +Baptism +I have +to be baptized [with] +and +how +I am distressed +until +while +it should be accomplished +Think you +that +I came +peace +to give +on +the +earth +I say +to you +No +but +rather +division +for +There will be +divided +from +- +now +five +in +one +house +three +against +two +and +two +against +three +They will be divided +father +against +son +and +son +against +father +mother +against +daughter +and +daughter +against +- +mother +mother-in-law +against +the +daughter-in-law +of her +and +daughter-in-law +against +- +mother-in-law +now +He was saying +also +to the +crowds +When +you see +cloud +rising up +from +[the] west +immediately +you say +- +A shower +is coming +and +it happens +so +And +when +a south wind +is blowing +you say +- +Heat +there will be +and +it happens +Hypocrites +The +appearance +of the +earth +and +of the +sky +to discern +you know [how] +however +the +time +this +how +not +to discern +now +Why +even +for +yourselves +not +judge you +what [is] +right +for +As +you are going +with +the +adversary +of you +before +a magistrate +in +the +way +give +earnestness +to be set free +from +him +lest +ever +he should drag away +you +to +the +judge +and +the +judge +you +will deliver +to the +officer +and +the +officer +you +will cast +into +prison +I say +to you +no +not +shall you come out +from there +until +even +the +last +lepton +you shall have paid +now +Were present +some +at +the same +- +time +telling +Him +about +the +Galileans +of whom +the +blood +Pilate +had mingled +with +the +sacrifices +of them +And +answering +He said +to them +Think you +that +- +Galileans +these +sinners +beyond +all +the +Galileans +were +because +such things +they have suffered +No +I say +to you +but +if +not +you repent +all +likewise +you will perish +Or +those +- +ten [and] +eight +on +whom +fell +the +tower +in +- +Siloam +and +killed +them +think you +that +these +debtors +were +beyond +all +the +men +- +dwelling +in Jerusalem +No +I say +to you +but +if +not +you repent +all +likewise +you will perish +then +He was speaking +this +- +parable +A fig tree +had +a certain [man] +planted +in +the +vineyard +of him +and +he came +seeking +fruit +on +it +and +not +did find [any] +then +He said +to +the +vinedresser +Behold +three +years +throughout +these +I come +seeking +fruit +on +the +fig tree +this +and +not +do find [any] +Cut down +it +that +why +even +the +ground +should it use up +And +- +answering +he says +to him +Sir +let alone +it +also +this +the +year +until +when +I shall dig +around +it +and +put [in] +manure +indeed +and if +it should bear +fruit +in +the [time] +so be it +however +If +not +you will cut down +it +now +He was +teaching +in +one +of the +synagogues +on +the +Sabbaths +And +behold +a woman +a spirit +of infirmity +having +years +ten [and] +eight +And +she was +bent over +and +not +able +to lift up herself +to +the +full +then +Having seen +her +- +Jesus +called [her] near +and +said +to her +Woman +you have been freed from +the +sickness +of you +And +He laid +upon her +the +hands +and +immediately +she was made straight +and +began to glorify +- +God +now +Answering +the +ruler of the synagogue +indignant +because +on the +Sabbath +had healed +- +Jesus +he was saying +to the +crowd +- +Six +days +there are +in +which +it behooves +to work +therefore +in +these +coming +be healed +and +not +on the +day +of the +Sabbath +therefore +Answered +him +the +Lord +and +said +Hypocrites +not +Each one +of you +on the +Sabbath +does he untie +the +ox +of him +or +the +donkey +from +the +stall +and +having led [it] away +give [it] to drink +now +behold +This +a daughter +of Abraham +being +whom +has bound +- +Satan +ten +and +eight +years +to be loosed +from +the +bond +this +on the +day +of the +Sabbath +not +ought [she] +And +these things +on saying +of Him +were ashamed +all +those +opposed +to Him +and +all +the +crowd +was rejoicing +at +all +the +glorious things +that +were being done +by +Him +then +He was saying +To what +like +is +the +kingdom +- +of God +And +to what +shall I liken +it +Like +it is +to a grain +of mustard +which +having taken +a man +cast +into +garden +his +and +it grew +and +came +into +a tree +and +the +birds +of the +air +encamped +in +the +branches +of it +And +again +He said +To what +shall I liken +the +kingdom +- +of God +Like +it is +to leaven +which +having taken +a woman +hid +in +of meal +measures +three +until +it +was leavened +all +And +He was going through +by +towns +and +villages +teaching +and +progress +making +toward +Jerusalem +then +Said +one +to Him +Lord +if +[are] few +those +being saved +And +- +He said +to +them +Strive +to enter in +through +the +narrow +door +for +I say +to you +many +will seek +to enter in +and +not +will be able +From +- +what +shall have risen up +the +master of the house +and +shall have shut +the +door +then +you should begin +outside +to stand +and +to knock +at the +door +saying +Lord +open +to us +And +he answering +will say +to you +Not +I do know +you +from where +are +Then +will you begin +to say +We ate +in presence +of you +and +drank +and +in +the +streets +of us +you taught +And +he will say +I tell +you +not +I do know +from where +you are +depart +from +me +all [you] +workers +of unrighteousness +There +will be +the +weeping +and +the +gnashing +of the +teeth +when +you see +Abraham +and +Isaac +and +Jacob +and +all +the +prophets +in +the +kingdom +- +of God +however +you +are being cast +out +And +they will come +from +east +and +west +and +from +north +and +south +and +will recline +in +the +kingdom +- +of God +And +behold +there are +last +who +will be +first +and +there are +first +who +will be +last +In +same +the +hour +came near +certain +Pharisees +saying +to Him +Go out +and +proceed +from here +for +Herod +desires +You +to kill +And +He said +to them +Having gone +say +to the +fox +that +Behold +I cast out +demons +and +cures +I complete +today +and +tomorrow +and +the +third [day] +I am perfected +But +it behooves +Me +today +and +tomorrow +and +the [day] +following +to proceed +for +not +it is possible [for] +a prophet +to perish +outside of +Jerusalem +Jerusalem +Jerusalem +- +killing +the +prophets +and +stoning +those +having been sent +to +her +how often +I have wanted +to gather +those +children +of you +that +way +a hen [gathers] +- +her +brood +under +the +wings +and +not +you were willing +Behold +is left +to you +the +house +of you +now +I say +to you +no +not +shall you see +Me +until +[the time] comes +when +you say +Blessed is +the [One] +coming +in +[the] name +of [the] Lord +And +it came to pass +on +the +going +of Him +into +a house +of one +of the +rulers +of the +Pharisees +on a Sabbath +to eat +bread +and +they +were +watching +Him +And +behold +a man +certain +with dropsy +there was +before +Him +And +answering +- +Jesus +spoke +to +the +lawyers +and +to [the] Pharisees +saying +Is it lawful +on the +Sabbath +to heal +or +not +But +- +they were silent +And +having taken hold [of him] +He healed +him +and +let [him] go +And +to +them +He said +Which +of you +a son +or +an ox +into +a pit +will fall +also +not +immediately +he will pull up +him +on +day +the +Sabbath +And +not +they were able +to reply +to +these things +then +He was speaking +to +those +having been invited +a parable +remarking +how +the +first places +they were choosing out +saying +to +them +When +you are invited +by +anyone +to +wedding feasts +not +do recline +in +the +first place +lest +ever +[one] more honorable +than you +might have been +invited +by +him +and +having come +the [one] +you +and +him +having invited +will say +to you +Give +to this one +[your] place +and +then +you should begin +with +shame +the +last +place +to take +But +when +you are invited +having gone +recline +in +the +last +place +so that +when +might come +the [one] +having invited +you +he will say +to you +Friend +come up +higher +Then +will be +to you +glory +before +all +those +reclining +[with] you +For +everyone +- +exalting +himself +will be humbled +and +the [one] +humbling +himself +will be exalted +then +He was saying +also +to the [one] +having invited +Him +When +you make +a dinner +or +a supper +not +call +- +friends +of you +nor +the +brothers +of you +nor +the +relatives +of you +nor +neighbors +rich +lest +ever +also +they +should invite in return +you +and +be made +recompense +to you +But +when +a feast +you make +call +the poor +the crippled +the lame +the blind +and +blessed +you will be +because +nothing +they have +to repay +you +for +It will be recompensed +to you +in +the +resurrection +of the +righteous +then +one +of those +reclining with [Him] +Having heard +these things +he said +to Him +Blessed [is he] +who +will eat +bread +in +the +kingdom +- +of God +But +- +He said +to him +A man +certain +was preparing +a supper +great +and +invited +many +And +he sent +the +servant +of him +at the +hour +of the +supper +to say +to those +having been invited +Come +for +now +ready +[it] is +And +began +with +one [voice] +all +to excuse themselves +The +first +said +to him +A field +I have bought +and +I have +need +going out +to see +it +I beg of +you +hold +me +excused +And +another +said +Yoke +of oxen +five +I have bought +and +I am going +to prove +them +I beg of +you +hold +me +excused +And +another +said +A wife +I have married +and +because of +this +not +I am able +to come +And +having come +the +servant +reported +to the +master +of him +these things +Then +having become angry +the +master of the house +said +to +servant +of him +Go out +quickly +into +the +streets +and +lanes +of the +city +and +the +poor +and +crippled +and +blind +and +lame +bring in +here +And +said +the +servant +Sir +it has been done +as +you did command +and +still +room +there is +And +said +the +master +to +the +servant +Go out +into +the +highways +and +hedges +and +compel [them] +to come in +so that +may be filled +of me +the +house +for +I say +to you +that +not one +the +men +of those +- +having been invited +will taste +of me +the +supper +then +Were going with +Him +crowds +great +and +having turned +He said +to +them +If +anyone +comes +to +Me +and +not +hates +the +father +of himself +and +the +mother +and +the +wife +and +the +children +and +the +brothers +and +the +sisters +and +yes +even +the +life +of him +not +he is able +to be +of Me +disciple +Whoever +not +carries +the +cross +of himself +and +comes +after +Me +not +is able +to be +My +disciple +for +not +Which +of +you +desiring +a tower +to build +first +having sat down +counts +the +cost +whether +he has +for +[its] completion +Thus +not +ever +he having laid +of it +a foundation +and +not +being able +to finish +all +- +seeing [it] +may begin +him +to mock +saying +- +This +- +man +began +to build +and +not +was able +to finish +Or +not +what +king +proceeding +with another +king +to engage +in +war +having sat down +first +will take counsel +whether +able +he is +with +ten +thousand +to meet +the [one] +with +twenty +thousand +coming +against +him +now +If +not +still +of him +far off +being +an embassy +having sent +he asks +- +for +peace +therefore +So +every one +of +you +who +not +does give up +all +that +he himself +possesses +not +is able +to be +My +disciple +therefore +Good [is] +the +salt +however +if +even +the +salt +becomes tasteless +with +what +will it be seasoned +Neither +for +soil +nor +for +manure +fit +is it +out +they cast +it +The [one] +having +ears +to hear +let him hear +now +Were +drawing near +to Him +all +the +tax collectors +and +the +sinners +to hear +Him +And +were grumbling +both +the +Pharisees +and +the +scribes +saying +- +This [man] +sinners +receives +and +eats with +them +then +He spoke +to +them +the +parable +this +saying +What +man +of +you +having +a hundred +sheep +and +having lost +of +them +one +not +leaves +the +ninety +nine +in +the +open field +and +goes +after +the [one] +having been lost +until +he finds +it +And +having found [it] +he lays [it] +on +the +shoulders +of him +rejoicing +And +having come +to +the +house +he calls together +the +friends +and +the +neighbors +saying +to them +Rejoice with +me +for +I have found +the +sheep +of me +the [one] +having been lost +I say +to you +that +in the same way +joy +in +- +heaven +there will be +over +one +sinner +repenting +rather than +over +ninety +nine +righteous ones +who +no +need +of repentance +have +Or +what +woman +drachmas +ten +having +if +she should lose +drachma +one +not +lights +a lamp +and +sweeps +the +house +and +seeks +carefully +until +it +she finds +And +having found [it] +she calls together +the +friends +and +neighbors +saying +Rejoice with +me +for +I have found +the +drachma +that +I lost +Thus +I say +to you +there is +joy +before +the +angels +- +of God +over +one +sinner +repenting +then +He said +A man +certain +had +two +sons +And +said +the +younger +of them +to +[the] father +Father +give +to me +the +falling [to me] +portion +of the +property +And +- +he divided +between them +the +property +And +after +not +many +days +having gathered together +all +the +younger +son +went away +into +a country +distant +and +there +he wasted +the +estate +of him +living +prodigally +however +Having spent +of him +all +there arose +a famine +severe +throughout +the +country +that +and +he +began +to be in need +And +having gone +he joined himself +to one +of the +citizens +the +country +of that +and +he sent +him +into +the +fields +of him +to feed +pigs +And +he was longing +to fill +the +belly +of him +from +the +pods +that +were eating +the +pigs +and +no one +was giving +to him +however +To +himself +having come +he was saying +How many +hired servants +of the +father +of me +have abundance +of bread +however +I +with hunger +here +am perishing +Having risen up +I will go +to +the +father +of me +and +I will say +to him +Father +I have sinned +against +- +heaven +and +before +you +no longer +am I +worthy +to be called +son +of you +Make +me +like +one +of the +servants +of you +And +having risen up +he went +to +the +father +of himself +now +Still +he +far +being distant +saw +him +the +father +of him +and +was moved with compassion +and +having run +fell +upon +the +neck +of him +and +kissed +him +then +Said +the +son +to him +Father +I have sinned +against +- +heaven +and +before +you +no longer +am I +worthy +to be called +son +of you +then +Said +the +father +to +the +servants +of him +Quickly +bring out +robe +the +best +and +clothe +him +and +give +a ring +for +the +hand +of him +and +sandals +for +his +feet +and +having brought +the +calf +- +fattened +kill [it] +and +having eaten +let us be merry +For +this +- +son +of mine +dead +was +and +is alive again +he was +lost +and +is found +And +they began +to be merry +now +Was +the +son +of him +the +elder +in +[the] field +and +while +coming [up] +he drew near +to the +house +he heard +music +and +dancing +And +having called near +one +of the +servants +he began inquiring +- +what +might be +these things +And +- +he said +to him +- +The +brother +of you +is come +and +has killed +the +father +of you +the +calf +- +fattened +because +in good health +him +he has received +however +He was angry +and +not +was willing +to go in +And +- +the father +of him +having gone +was begging +him +And +- +answering +he said +to +[the] father +Behold +so many +years +I serve +you +and +never +a commandment +of you +I disobeyed +and +to me +never +did you give +a young goat +that +with +the +friends +of me +I might make merry +however +When +the +son +of you +this +the [one] +having devoured +your +- +living +with +prostitutes +came +you have killed +for him +the +fattened +calf +And +- +he said +to him +Son +you +always +with +me +are +and +all +that +[is] mine +yours +is +however +To make merry +and +to rejoice +it was fitting +because +the +brother +of you +this +dead +was +and +is alive again +and +he was lost +and +is found +now +He was saying +also +to +the +disciples +A man +certain +there was +rich +who +had +a manager +and +he +was accused +unto him +as +is wasting +the +possessions +of him +And +having called +him +he said +to him +What [is] +this +I hear +concerning +you +Give +the +account +of the +stewardship +of you +for +not +you are able +any longer +to manage +then +Said +within +himself +the +manager +What +shall I do +for +the +master +of me +is taking away +the +management +from +me +To dig +not +I am able +to beg +I am ashamed +I know +what +I will do +so that +when +I shall have been removed +from +the +management +they might receive +me +into +the +homes +of them +And +having called to [him] +one +each +of the +debtors +of the +master +of him +he was saying +to the +first +How much +owe you +to +master +of me +And +- +he said +A hundred +baths +of oil +And +- +he said +to him +Take +your +the +bill +and +having sat down +quickly +write +fifty +Then +to another +he said +now +You +how much +owe +And +- +he said +A hundred +cors +of wheat +He says +to him +Take +your +- +bill +and +write +eighty +And +praised +the +master +the +manager +- +unrighteous +because +shrewdly +he had acted +For +the +sons +of the +age +this +more shrewd +than +the +sons +of the +light +in +the +generation +- +of themselves +are +And +I +to you +say +for yourselves +make +friends +by +the +wealth +- +of unrighteousness +that +when +it fails +they might receive +you +into +the +eternal +dwellings +The [one] +faithful +with +very little +also +with +much +faithful +is +and +the [one] +with +very little +unrighteous +also +with +much +unrighteous +is +therefore +If +in +the +unrighteous +wealth +faithful +not +you have been +the +true [riches] +who +to you +will entrust +And +if +in +that which [is] +of another +faithful +not +you have been +that which +[is] yours +who +will give +to you +No +servant +is able +two +masters +to serve +for +either +the +one +he will hate +and +the +other +he will love +or +one +he will be devoted to +and +the +other +he will despise +Not +you are able +God +to serve +and +money +now +Were listening to +these things +all +the +Pharisees +lovers of money +being +and +they were ridiculing +Him +And +He said +to them +You +are +those +justifying +themselves +before +- +men +but +- +God +knows +the +hearts +of you +for +that which +among +men +[is] exalted +[is] an abomination +before +- +God +The +law +and +the +prophets [were] +until +John +from +that time +the +kingdom +- +of God +is proclaimed +and +everyone +into +it +forces his way +however +Easier for +it is +the +heaven +and +the +earth +to pass away +than +of the +law +one +stroke of a pen +to fail +Everyone +- +putting away +the +wife +of him +and +marrying +another +commits adultery +And +the [one] +her put away +from +a husband +marrying +commits adultery +now +A man +certain +there was +rich +and +he was clothed in +purple +and +fine linen +making good cheer +every +day +in splendor +now +A poor man +certain +named +Lazarus +was laid +at +the +gate +of him +being full of sores +and +desiring +to be fed +from +that +falling +from +the +table +of the +rich man +but +even +the +dogs +coming +were licking +the +sores +of him +then +It came to pass that +died +the +poor man +and +was carried away +he +by +the +angels +into +the +bosom +of Abraham +then +Died +also +the +rich man +and +was buried +And +in +- +Hades +having lifted up +the +eyes +of him +being +in +torment +he sees +Abraham +from +afar +and +Lazarus +in +the +bosom +of him +And +he +having cried out +said +Father +Abraham +have mercy on +me +and +send +Lazarus +that +he might dip +the +tip +of the +finger +of him +in water +and +cool +the +tongue +of me +for +I am suffering +in +the +flame +this +then +Said +Abraham +Child +remember +that +you did fully receive +the [things] +good +of you +in +the +lifetime +of you +and +Lazarus +likewise +the [things] +evil +however +Now +here +he is comforted +now +you +are suffering +And +besides +all +these things +between +us +and +you +a chasm +great +has been fixed +so that +those +desiring +to pass +from here +to +you +not +are able +nor +from there +to +us +can they pass +then +He said +then +I implore +you +father +that +you would send +him +to +the +house +of the +father +of me +for +I have +five +brothers +so that +he might warn +them +that +not +also +they +might come +to +the +place +this +- +of torment +however +Says +Abraham +They have +Moses +and +the +prophets +let them hear +them +And +- +he said +No +father +Abraham +but +if +one +from +[the] dead +should go +to +them +they will repent +however +He said +to him +If +Moses +and +the +prophets +not +they hear +not even +if +one +out from +[the] dead +should rise +will they be persuaded +then +He said +to +the +disciples +of Him +Impossible +it is +for +the +stumbling blocks +not +to come +but +woe [to him] +by +whom +they come +It is better +for him +if +a stone +of a mill +is hung +around +the +neck +of him +and +he is thrown +into +the +sea +than +that +he should cause to stumble +- +little +of these +one +Take heed +to yourselves +If +should sin +the +brother +of you +rebuke +him +and +if +he should repent +forgive +him +And +if +seven times +in the +day +he should sin +against +you +and +seven times +should return +to +you +saying +I repent +you shall forgive +him +And +said +the +apostles +to the +Lord +Add +to us +faith +then +Said +the +Lord +If +you have +faith +like +a grain +of mustard +- +you would have said +to the +mulberry tree +this +Be uprooted +and +be planted +in +the +sea +and +- +it would have obeyed +you +now +Which +of +you +having +a servant +plowing +or +shepherding +the [one] +having come in +out of +the +field +will say +to him +Immediately +having come +recline +But +not +will he say +to him +Prepare +what +I may eat +and +having girded yourself about +serve +me +while +I eat +and +drink +and +after +these things +shall eat +and +drink +you +Not +is he +thankful +to the +servant +because +he did +the things +having been commanded +Thus +also +you +when +you may have done +all +the [things] +having been commanded +you +say +- +Servants +unworthy +are we +that which +to do +we were bound +we have done +And +it came to pass +in +the +going up +to +Jerusalem +that +He +was passing +through +[the] midst +of Samaria +and +Galilee +And +on entering +of Him +into +a certain +village +met +ten +leprous +men +who +stood +afar off +And +they +lifted up +[their] voice +saying +Jesus +Master +have compassion on +us +And +having seen [them] +He said +to them +Having gone +show +yourselves +to the +priests +And +it came to pass +in +the +going +them +they were cleansed +then +One +of +them +having seen +that +he was healed +turned back +with +a voice +loud +glorifying +- +God +and +he fell +on +[his] face +at +the +feet +of Him +giving thanks +to Him +and +he +was +a Samaritan +then +Having answered +- +Jesus +said +Not +the +ten +were cleansed +But +- +the nine +are where +None +was there found +having returned +to give +glory +- +to God +if +not +the +foreigner +this +And +He said +to him +Having risen up +go forth +the +faith +of you +has cured +you +now +Having been asked +by +the +Pharisees +when +is coming +the +kingdom +- +of God +He answered +them +and +said +Not +comes +the +kingdom +- +of God +with +careful observation +nor +will they say +Behold +here +or +There +for +Behold +the +kingdom +- +of God +in the midst +of you +is +then +He said +to +the +disciples +Will come +days +when +you will desire +one +of the +days +of the +Son +- +of Man +to see +and +not +you will see [it] +And +they will say +to you +Behold +there +Behold +here +Not +go forth +nor +follow +for +As +the +lightning +flashing +from +the [one end] +of +the +sky +to +the [other end] +of the +sky +shines +thus +will be +the +Son +- +of Man +in +the +day +of Him +however +it behooves +First +Him +many things +to suffer +and +to be rejected +by +the +generation +this +And +as +it came to pass +in +the +days +of Noah +thus +will it be +also +in +the +days +of the +Son +of +man +They were eating +they were drinking +they were marrying +they were being given in marriage +until +that +day +entered +Noah +into +the +ark +and +came +the +flood +and +destroyed +all +as +Likewise +it came to pass +in +the +days +of Lot +they were eating +they were drinking +they were buying +they were selling +they were planting +they were building +then +in that +day +went out +Lot +from +Sodom +it rained +fire +and +brimstone +from +heaven +and +destroyed +all +According +- +to these +will it be +in that +day +the +Son +- +of Man +is revealed +In +that +- +day +the [one who] +will be +on +the +housetop +and +the +goods +of him +in +the +house +not +let him come down +to take away +them +and +the [one] +in +[the] field +likewise +not +let him return +to +the things +behind +Remember +the +wife +of Lot +if +Whoever +may seek +the +life +of him +to save +will lose +it +also +- +whoever +will lose [it] +will preserve +it +I say +to you +in that +- +night +there will be +two +upon +bed +one +The +one +will be taken +and +the +other +will be left +There will be +grinding +two [women] +at +the +same [place] +The +one +will be taken +and +- +the other +will be left +And +answering +they say +to Him +Where +Lord +And +- +He said +to them +Where +the +body [is] +there +also +the +vultures +will be gathered together +then +He was speaking +a parable +to them +about +the [way] +it behooves +always +to pray +them +and +not +to lose heart +saying +A judge +certain +there was +in +a certain +city +- +God +not +fearing +and +man +not +respecting +then +A widow +there was +in +the +city +that +and +she was coming +to +him +saying +Avenge +me +of +the +adversary +of me +And +not +he would +for +a time +however +afterward +he +said +within +himself +If +even +- +God +not +I fear +nor +man +respect +yet +because +- +causes +me +trouble +the +widow +this +I will avenge +her +so that +not +to +end +coming +she exhaust +me +then +Said +the +Lord +Hear +what +the +judge +- +unrighteous +says +And +no +not +- +God +shall execute +the +avenging +of the +elect +of Him +the [ones] +crying out +to Him +day +and +night +and +be deferring +in regard to +them +I say +to you +that +He will execute +the +avenging +of them +in +quickness +Nevertheless +the +Son +- +of Man +having come +indeed +will He find +- +faith +on +the +earth +now +He spoke +also +to +some +- +trusting +in +themselves +that +they are +righteous +and +despising +the +others +the +parable +this +Men +two +went up +into +the +temple +to pray +the +one +a Pharisee +and +the +other +a tax collector +The +Pharisee +having stood +thus +toward +himself +was praying +- +God +I thank +You +that +not +I am +like +the +rest +of the +men +swindlers +unrighteous +adulterers +or +like +even +this +- +tax collector +I fast +twice +in the +week +I tithe +all things +as many as +I gain +But +- +the tax collector +afar off +standing +not +was willing +not even +the +eyes +to lift up +to +- +heaven +but +was striking +the +breast +of himself +saying +- +God +be merciful +to me +the +sinner +I say +to you +went down +this one +justified +to +the +house +of him +rather than +that +For +everyone +- +exalting +himself +will be humbled +however +the [one] +humbling +himself +will be exalted +then +They were bringing +to Him +also +the +infants +that +them +He might touch +however +having seen +the +disciples +were rebuking +them +But +- +Jesus +having called to [Him] +them +said +Permit +the +little children +to come +to +Me +and +not +do forbid +them +for +of the +such +is +the +kingdom +- +of God +Truly +I say +to you +- +whoever +not +shall receive +the +kingdom +- +of God +as +a child +no +not +shall enter +into +it +And +asked +a certain +ruler +Him +saying +Teacher +good +what +having done +life +eternal +will I inherit +then +Said +to him +- +Jesus +Why +Me +call you +good +No one [is] +good +if +not +alone +- +God +The +commandments +You know +Not +shall you commit adultery +not +shall you murder +not +shall you steal +not +shall you bear false witness +you shall honor +the +father +of you +and +the +mother +And +- +he said +These +all +have I kept +from +[the] youth +then +Having heard +- +Jesus +said +to him +Yet +one thing +to you +is lacking +All +as much as +you have +sell +and +distribute +to [the] poor +and +you will have +treasure +in +the +heavens +and +come +follow +Me +And +- +having heard +these things +very sorrowful +he became +for +he was +rich +extremely +then +Having seen +him +- +Jesus +saying +How +difficultly +those +- +riches +having +into +the +kingdom +- +of God +shall enter +for +Easier +it is +a camel +through +an eye +of a needle +to go +than +a rich man +into +the +kingdom +- +of God +to enter +then +Said +those +having heard +Then +who +is able +to be saved +But +- +He said +The things +impossible +with +men +possible +with +- +God +are +then +Said +- +Peter +Behold +we +having left +the +own +followed +You +And +- +He said +to them +Truly +I say +to you +that +no one +there is +who +has left +house +or +wife +or +brothers +or +parents +or +children +for the sake of +the +kingdom +- +of God +who +no +nothing +shall receive +manifold more +in +the +time +this +and +in +the +age +that +is coming +life +eternal +then +Having taken aside +the +Twelve +He said +to +them +Behold +we go up +to +Jerusalem +and +will be accomplished +all things +- +having been written +by +the +prophets +about the +Son +- +of Man +for +He will be betrayed +to the +Gentiles +and +will be mocked +and +will be insulted +and +will be spit upon +And +having flogged [Him] +they will kill +Him +and +on the +day +- +third +He will rise again +And +they +none +of these things +understood +and +was +the +word +this +hidden +from +them +and +neither +they knew +the things +being spoken +then +It came to pass +in +the +drawing near +of Him +to +Jericho +a blind [man] +certain +was sitting +beside +the +road +begging +now +Having heard +a crowd +passing along +he was asking +what +might be +this +then +They told +him +- +Jesus +of +Nazareth +is passing by +And +he called out +saying +Jesus +Son +of David +have mercy on +me +And +those +going before +were rebuking +him +that +he should be silent +however +He +much +more +kept crying out +Son +of David +have mercy on +me +then +Having stopped +- +Jesus +commanded +him +to be brought +to +Him +then +Having drawn near +him +He asked +him +What +to you +I shall do +desire you +And +- +he said +Lord +that +I might receive sight +And +- +Jesus +said +to him +Receive sight +The +faith +of you +has healed +you +And +immediately +he received sight +and +began following +Him +glorifying +- +God +And +all +the +people +having seen [it] +gave +praise +- +to God +And +having entered +He was passing through +- +Jericho +And +behold +a man +by name +called +Zacchaeus +and +he +was +a chief tax collector +and +he [was] +rich +And +he was seeking +to see +- +Jesus +who +He is +and +not +he was able +because of +the +crowd +because +- +in stature +small +he was +And +having run +to +the +front +he went up +into +a sycamore-fig tree +so that +he might see +Him +for +that [way] +to pass +He was about +And +as +He came +to +the +place +having looked up +- +Jesus +said +to +him +Zacchaeus +having hurried +come down +for +today +in +the +house +of you +Me +to stay +it behooves +And +having hurried +he came down +and +received +Him +rejoicing +And +having seen [it] +all +were grumbling +saying +- +With +a sinful +man +He has entered +to stay +then +Having stood +Zacchaeus +said +to +the +Lord +Lord +Behold +the +half +of me +of the +possessions +to the +poor +I give +and +if +of anyone +anything +I have defrauded +I restore [it] +fourfold +then +Said +to +him +- +Jesus +- +Today +salvation +to the +house +this +has come +because +also +he +a son +of Abraham +is +for +Came +the +Son +- +of Man +to seek +and +to save +that +having been lost +while +Were hearing +they +these things +having proceeded +He spoke +a parable +because +- +being +near +Jerusalem +of His +and +thinking +their +that +immediately +is about +the +kingdom +- +of God +to appear +therefore +He said +A man +certain +of noble birth +proceeded +to +a country +distant +to receive +for himself +a kingdom +and +to return +then +Having called +ten +servants +of himself +he gave +to them +ten +minas +and +said +to +them +Do business +until +that +I come back +But +- +the citizens +of him +hated +him +and +sent +a delegation +after +him +saying +Not +we are willing [for] +this [man] +to reign +over +us +And +it came to pass +on +the +returning +of him +having received +the +kingdom +that +he directed +to be called +to him +the +servants +these +to whom +he had given +the +money +in order that +he might know +each +what +had gained by trading +then +Came up +the +first +saying +Lord +the +mina +of you +ten +more minas +has produced +And +He said +to him +Well done +good +servant +Because +in +very little +faithful +you were +to be +having authority +you are +over +ten +cities +And +came +the +second +saying +Lord +The +mina +of you +has made +five +minas +then +He said +also +to this one +And +you +over +five +cities +are to be +And +- +another +came +saying +Lord +behold +the +mina +of you +which +I kept +lying away +in +a piece of cloth +for +I was afraid +of you +because +a man +harsh +you are +You take up +what +not +you did lay down +and +you reap +what +not +you did sow +He says +to him +Out of +the +mouth +of you +I will judge +you +evil +servant +You knew +that +I +am +a man +harsh +taking up +what +not +I did lay down +and +reaping +what +not +I did sow +Then +because of +why +not +did you give +of me +the +money +to +[the] bank +- +and I +having come +with +interest +it +might have collected +And +to those +standing by +he said +Take +from +him +the +mina +and +give [it] +to the [one] +the +ten +minas +having +And +they said +to him +Master +he has +ten +minas +I say +to you +that +to everyone +- +having +will be given +however +from +the [one] +not +having +even +that which +he has +will be taken away +Furthermore +the +enemies +of mine +these +those +not +having been willing [for] +me +to reign +over +them +bring +here +and +slay +them +before +me +And +having said +these things +He went on +ahead +going up +to +Jerusalem +And +it came to pass +as +He drew near +to +Bethphage +and +Bethany +toward +the +mount +- +called +Olivet +He sent +two +of the +disciples +saying +Go +into +the +ahead +village +in +which +entering +you will find +having been tied +a colt +on +which +no one +of men +ever yet +has sat +and +having untied +it +bring [it] +And +if +anyone +you +asks +Because of +why +do you untie [it] +thus +will you say +Because +the +Lord +of it +need +has +then +Having departed +those +having been sent +found [it] +as +He had said +to them +then +On untying +of them +the +colt +said +the +masters +of it +to +them +Why +untie you +the +colt +And +- +they said +- +The +Lord +of it +need +has +And +they led +it +to +- +Jesus +and +having cast +their +- +garments +on +the +colt +they put on [it] +- +Jesus +then +Going +of Him +they were spreading +the +garments +of them +on +the +road +then +Drawing near +of Him +already +at +the +descent +of the +Mount +- +of Olives +began +all +the +multitude +of the +disciples +rejoicing +to praise +- +God +in a voice +loud +for +all +which +they had seen +[the] mighty works +saying +Blessed is +the +coming +in +[the] name +of [the] Lord +- +King +In +heaven +peace +and +glory +in +[the] highest +And +some +of the +Pharisees +from +the +crowd +said +to +Him +Teacher +rebuke +the +disciples +of You +And +answering +He said +I say +to you +if +these +will be silent +the +stones +will cry out +And +as +He drew near +having seen +the +city +He wept +over +it +saying +- +If +you had known +in +the +day +this +even +you +the things +for +peace +however +Now +they are hidden +from +eyes +of you +For +will come +days +upon +you +that +will cast around +the +enemies +of you +a barricade +you +and +they will surround +you +and +will hem in +you +on every side +and +will level to the ground +you +and +the +children +of you +within +you +and +not +will leave +a stone +upon +a stone +within +you +in place of +which +not +you knew +the +season +the +of visitation +of you +And +having entered +into +the +temple +He began +to cast out +those +selling +saying +to them +It has been written +And +will be +the +house +of Me +a house +of prayer +however +You +it +have made +a den +of robbers +And +He was +teaching +- +every +day +in +the +temple +however +the +chief priests +and +the +scribes +were seeking +Him +to destroy +and +the +foremost +of the +people +And +not +they found +- +what +they might do +for +the +people +all +were hanging on +His [words] +listening +And +it came to pass +on +one +of the +days +as was teaching +He +the +people +in +the +temple +and +proclaiming the gospel +came up +the +chief priests +and +the +scribes +with +the +elders +and +spoke +saying +to +Him +Tell +us +by +what +authority +these things +You do +or +who +is +the [one] +having given +to You +the +authority +this +now +Answering +He said +to +them +Will ask +you +I also +one thing +and +you tell +Me +The +baptism +of John +from +heaven +was it +or +from +men +And +- +they reasoned +among +themselves +saying +- +If +we should say +From +heaven +He will say +Because of +why +not +did you believe +him +however +If +we should say +From +men +the +people +all +will stone +us +for +having been persuaded +they are +John +a prophet +to be +And +they answered +not +they knew +from where +And +- +Jesus +said +to them +Neither +I +tell +you +by +what +authority +these things +I am doing +then +He began +to +the +people +to speak +the +parable +this +A man +planted +a vineyard +and +rented +it +to farmers +and +went abroad +a time +long +And +[in the] season +he sent +to +the +farmers +a servant +that +from +the +fruit +of the +vineyard +they will give +to him +But +- +the farmers +sent away +him +having beaten [him] +empty-handed +And +he proceeded +another +a servant +to send +but +- +him +having beaten +and +having dishonored +they sent away +empty-handed +And +he proceeded +a third +to send +then +- +also +him +having wounded +they cast out +then +Said +the +master +of the +vineyard +What +shall I do +I will send +the +son +of me +the +beloved +perhaps +him +they will respect +now +Having seen +him +the +farmers +began reasoning +among +themselves +saying +This +is +the +heir +let us kill +him +so that +ours +might become +the +inheritance +And +having cast forth +him +outside +the +vineyard +they killed [him] +therefore +What +will do +to them +the +master +of the +vineyard +He will come +and +will destroy +the +farmers +these +and +will give +the +vineyard +to others +then +Having heard [it] +they said +Never +may it be +But +- +having looked at +them +He said +then +What +is +that +has been written +this +[The] stone +which +rejected +those +building +this +has become +into +[the] head +of [the] corner +Everyone +- +falling +on +that +- +stone +will be broken +but +- +on +whomever +it might fall +it will grind into powder +him +And +sought +the +scribes +and +the +chief priests +to lay +on +Him +- +hands +in +that +- +hour +and +they feared +the +people +for +they perceived +that +against +them +He was speaking +the +parable +this +And +having watched [Him] +they sent +spies +feigning +themselves +righteous +to be +that +they might catch +Him +in talk +in order +to deliver +Him +to the +rule +and +to the +authority +of the +governor +And +they questioned +Him +saying +Teacher +we know +that +rightly +You speak +and +teach +and +not +receive +[any] person +but +on the basis of +truth +the +way +- +of God +teach +Is it lawful +for us +to Caesar +tribute +to give +or +not +however +Having perceived +of them +the +craftiness +He said +to +them +Show +Me +a denarius +has it +Of whom +[the] image +and +inscription +And +- +they said +Caesar’s +And +- +He said +to +them +Therefore +give back +the things +of Caesar +to Caesar +and +the things +- +of God +- +to God +And +not +they were able +to catch Him in +His +word +before +the +people +and +having marveled +at +the +answer +of Him +they became silent +then +Having approached +some +of the +Sadducees +the ones +denying +a resurrection +not +there is +they questioned +Him +saying +Teacher +Moses +wrote +to us +if +anyone’s +brother +should die +having +a wife +and +he +childless +is +that +should take +the +brother +of him +the +wife +and +should raise up +seed +to the +brother +of him +therefore +Seven +brothers +there were +and +the +first +having taken +a wife +died +childless +and +the +second +and +the +third +took +her +then +likewise +also +the +seven +not +did leave +children +and +died +Finally +also +the +woman +died +therefore +The +woman +in +the +resurrection +of which +of them +wife +does she become +For +- +the seven +had +her +as wife +And +said +to them +- +Jesus +The +sons +of the +age +this +marry +and +are given in marriage +however +those +having been considered worthy +to the +age +that which [is] +to obtain +and +the +resurrection +which [is] +out from +[the] dead +neither +marry +nor +are given in marriage +for +neither +to die +any more +are they able +for +like [the] angels +they are +and +sons +of God +they are +of the +resurrection +sons +being +however +That +are raised +the +dead +even +Moses +showed +at +the +bush +when +he calls +[the] Lord +the +God +of Abraham +and +God +of Isaac +and +God +of Jacob +now +God +not +He is +of [the] dead +but +of [the] living +for +all +to Him +live +now +Answering +some +of the +scribes +said +Teacher +well +you have spoken +then +No longer +did they dare +to ask +Him +anything +then +He said +to +them +How +do they declare +the +Christ +to be +of David +Son +for +Himself +David +says +in +[the] book +of Psalms +Said +[the] Lord +to the +Lord +of me +Sit +at +[the] right hand +of Me +until +- +I place +the +enemies +of You +[as] a footstool +of the +feet +of You +therefore +David +Him +Lord +calls +and +how +of him +son +is He +now +Were listening +all +the +people +He said +to the +disciples +Beware +of +the +scribes +- +desiring +to walk +in +long robes +and +loving +greetings +in +the +marketplaces +and +first seats +in +the +synagogues +and +first places +in +the +banquets +who +devour +the +houses +of +widows +and +as a pretext +at great length +pray +These +will receive +more abundant +condemnation +now +Having looked up +He saw +the ones +casting +into +the +treasury +the +gifts +of them +rich +then +He saw +a certain +widow +poor +casting +in +lepta +two +And +He said +Truly +I say +to you +that +the +widow +this +- +poor +more +than all +has cast in +for +all +these +out of +that which +was abounding +to them +cast +in +the +gifts +however +she +out of +the +poverty +of her +all +the +livelihood +that +she had +did cast +And +as some +were speaking +about +the +temple +that +with stones +goodly +and +consecrated gifts +it was adorned +He said +[As to] these things +which +you are beholding +will come +[the] days +in +which +not +will be left +upon +stone +stone +which +not +will be thrown down +then +They asked +Him +saying +Teacher +then +when +these things +will be +and +what [will be] +the +sign +when +are about +these things +to take place +And +- +He said +Take heed +lest +you be led astray +for +many +will come +in +the +name +of Me +saying +I +am [He] +and +The +time +is drawn near +Not +go +after +them +then +When +you should hear of +wars +and +commotions +not +be terrified +for +it behooves +these things +to take place +first +but +not +immediately [is] +the +end +Then +He was saying +to them +Will rise up +nation +against +nation +and +kingdom +against +kingdom +both +Earthquakes +great +and +in different +places +famines +and +pestilences +there will be +also +fearful sights +and +from +heaven +signs +great +will there be +however +Before +these things +all +they will lay +upon +you +the +hands +of them +and +will persecute [you] +delivering [you] +to +the +synagogues +and +prisons +bringing [you] +before +kings +and +governors +on account of +the +name +of Me +It will result +to you +for +a testimony +therefore +Settle +in +the +minds +of you +not +to premeditate +to make a defense +for +I +will give +you +a mouth +and +wisdom +which +not +will be able +to resist +nor +to reply to +all +those +opposing +you +then +You will be betrayed +even +by +parents +and +brothers +and +relatives +and +friends +and +they will put to death +[some] from among +you +And +you will be +hated +by +all +because of +the +name +of Me +But +a hair +of +the +head +of you +no +not +should perish +By +the +patient endurance +of you +you will gain +the +souls +of you +then +When +you see +being encircled +by +encampments +Jerusalem +then +know +that +has drawn near +the +desolation +of her +Then +those +in +- +Judea +let them flee +to +the +mountains +and +those +in +midst +of her +let them depart out +and +those +in +the +countries +not +let them enter +into +her +for +[the] days +of avenging +these +are +- +to fulfill +all things +- +having been written +But woe +to those +in +womb +having +and +to the [ones] +nursing +in +those +the +days +for +there will be +distress +great +upon +the +land +and +wrath +to the +people +this +And +they will fall +by [the] edge +of [the] sword +and +will be led captive +into +the +nations +all +and +Jerusalem +will be +trodden down +by +[the] Gentiles +until +that +are fulfilled +[the] times +of [the] Gentiles +And +there will be +signs +in +sun +and +moon +and +stars +and +upon +the +earth +distress +of nations +with +perplexity +[the] roaring +of [the] sea +and +rolling surge +fainting +men +from +fear +and +expectation +of that which +is coming +on the +earth +for +- +the powers +of the +heavens +will be shaken +And +then +will they see +the +Son +- +of Man +coming +in +a cloud +with +power +and +glory +great +then +Beginning +of these things +to come to pass +look up +and +lift up +the +heads +of you +because +draws near +the +redemption +of you +And +He spoke +a parable +to them +Behold +the +fig tree +and +all +the +trees +When +they sprout +already +looking [on them] +for +yourselves +you know +that +already +near +the +summer +is +So +also +you +when +you see +these things +coming to pass +know +that +near +is +the +kingdom +- +of God +Truly +I say +to you +that +no +not +will have passed away +the +generation +this +until +- +all [these things] +shall have taken place +The +heaven +and +the +earth +will pass away +but +- +the words +of Me +no +not +will pass away +now +Take heed +to yourselves +lest +ever +be burdened +of you +the +hearts +with +dissipation +and +drunkenness +and +cares +of life +and +would come +upon +you +suddenly +the +day +that +as +a snare +for +It will come +upon +all +those +sitting +upon +the face +of all +the +earth +also +Watch +at +every +season +praying +that +you may have strength +to escape +these things +all +that +are about +to come to pass +and +to stand +before +the +Son +- +of Man +now +He was +teaching +during the +day +in +the +temple +and +- +the evening +going out +He was lodging +on +the +mount +- +called +Olivet +And +all +the +people +would come early in the morning +to +Him +in +the +temple +to hear +Him +now +Was drawing near +the +Feast +of +Unleavened [Bread] +- +called +Passover +And +were seeking +the +chief priests +and +the +scribes +- +how +they might put to death +him +for +they were afraid +of the +people +then +Entered +Satan +into +Judas +the [one] +being called +Iscariot +being +of +the +number +of the +Twelve +And +having gone away +he spoke with +the +chief priests +and +captains +the +how +to them +he might betray +Him +And +they rejoiced +and +agreed +him +money +to give +And +he promised +and +began seeking +opportunity +- +to betray +Him +apart from +[a] crowd +to them +then +Came +the +day +of +Unleavened [Bread] +which +it was necessary for +to be sacrificed +the +Passover lamb +And +He sent +Peter +and +John +having said +Having gone +prepare +for us +the +Passover +that +we might eat [it] +And +- +they said +to Him +will You +Where +we should prepare +And +- +He said +to them +Behold +having entered +of you +into +the +city +will meet +you +a man +a pitcher +of water +carrying +follow +him +into +the +house +into +which +he enters +and +you shall say +to the +master +of the +house +Says +to you +the +Teacher +Where +is +the +guest room +where +the +Passover +with +the +disciples +of Me +I may eat +And he +you +will show +an upper room +large +furnished +there +prepare +then +Having gone +they found [it] +as +He had said +to them +and +they prepared +the +Passover +And +when +was come +the +hour +He reclined +and +the +apostles +with +Him +And +He said +to +them +With desire +I have desired +this +- +Passover +to eat +with +you +before +- +I +suffer +for +I say +to you +that +no longer +never +not +will I eat +thereof +until +when +it is fulfilled +in +the +kingdom +- +of God +And +having received +[the] cup +having given thanks +He said +Take +this +and +divide [it] +among +yourselves +for +I say +to you +no +not +will I drink +from +- +now +of +the +fruit +of the +vine +until +that +the +kingdom +- +of God +shall come +And +having taken +[the] bread +having given thanks +He broke [it] +and +gave +to them +saying +This +is +the +body +of Me +which +for +you +is given +this +do +in +the +of Me +remembrance +and +the +cup +likewise +after +which +having supped +saying +the +new +covenant +in +the +blood +of Me +This +- +cup [is] +which +for +you +is being poured out +But +behold +the +hand +of him +betraying +Me +[is] with +Me +on +the +table +For +indeed +the +Son +of +man +according to +that +having been determined +goes +but +woe +to the +man +that +by +whom +He is betrayed +And +they +began +to question +among +themselves +- +then +who +it might be +of +them +who +this +to do +is about +then +There was +among +them +also +a dispute +- +which +of them +is thought +to be +[the] greatest +And +- +He said +to them +The +kings +of the +Gentiles +rule over +them +and +those +exercising authority over +them +benefactors +are called +however +You +not +thus [shall be] +Instead +the +greatest +among +you +let him be +as +the +younger +and +the [one] +leading +as +the [one] +serving +for +Who +[is] greater +the [one] +reclining +or +the [one] +serving +[Is] not +the [one] +reclining +however +I +in +[the] midst +of you +am +as +the [One] +serving +now +You +are +those +having remained +with +Me +in +the +trials +of Me +And I +appoint +to you +as +appointed +to Me +the +Father +of Me +a kingdom +so that +you may eat +and +may drink +at +the +table +of Me +in +the +kingdom +of Me +and +may sit +on +thrones +the +twelve +tribes +of +Israel +judging +Simon +Simon +Behold +- +Satan +demanded to have +all of you +- +to sift +like +- +wheat +however +I +begged +for +you +that +not +may fail +the +faith +of you +and +you +when +you have turned back +strengthen +the +brothers +of you +And +- +he said +to Him +Lord +with +You +ready +I am +both +to +prison +and +to +death +to go +And +- +He said +I tell +you +Peter +not +will crow +today +[the] rooster +until +three times +Me +not +knowing +you will deny +And +He said +to them +When +I sent +you +without +purse +and +bag +and +sandals +not +anything +did you lack +And +- +they said +Nothing +then +He said +to them +But +now +the [one] +having +a purse +let him take [it] +likewise +also +a bag +and +the [one] +not +having +let him sell +the +cloak +of him +and +buy [one] +a sword +for +I say +to you +that +it behooves +this +which +has been written +- +And +with +the lawless +He was reckoned +to be accomplished +in +Me +for +And +the things +concerning +Me +an end +have +And +- +they said +Lord +behold +swords +here [are] +two +And +- +He said +to them +Enough +it is +And +having gone forth +He went +according to +the +custom +to +the +Mount +- +of Olives +then +followed +Him +also +the +disciples +then +Having come +to +the +place +He said +to them +Pray +not +to enter +into +temptation +And +He +withdrew +from +them +about +a stone’s +throw +and +having fallen on +the +knees +He was praying +saying +Father +if +You are willing +take away +this +- +cup +from +Me +Yet +not +the +will +of Me +but +- +of You +be done +then +Appeared +to Him +an angel +from +heaven +strengthening +Him +And +having been +in +agony +more earnestly +He was praying +And +became +the +sweat +of Him +like +great drops +of blood +falling down +upon +the +ground +And +having risen up +from +the +prayer +having come +to +the +disciples +He found +sleeping +them +from +the +grief +and +He said +to them +Why +are you sleeping +Having risen up +pray +that +not +you might enter +into +temptation +While still +of Him +speaking +behold +a crowd +and +he who +is called +Judas +one +of the +Twelve +was going before +them +and +he drew near +- +to Jesus +to kiss +Him +then +Jesus +said +to him +Judas +with a kiss +the +Son +- +of Man +are you betraying +then +those +around +Him +Having seen +what +would be +they said +Lord +if +will we strike +with [the] +sword +And +struck +one +a certain +of +them +of the +high priest +the +servant +and +cut off +the +ear +his +- +right +now +Answering +- +Jesus +said +Allow you +as far as +thus +And +having touched +the +ear +He healed +him +then +Said +Jesus +to +those +having come out +against +Him +chief priests +and +captains +of the +temple +and +elders +As +against +a robber +have you come out +with +swords +and +clubs +Every +day +being +of Me +with +you +in +the +temple +not +did you stretch out +the +hands +against +Me +but +this +is +of you +the +hour +and +the +power +of the +darkness +then +Having seized +Him +they led [Him] away +and +led [Him] +into +the +house +of the +high priest +And +- +Peter +was following +afar off +then +They having kindled +a fire +in +[the] midst +of the +courtyard +and +having sat down together +was sitting +- +Peter +among +them +then +a servant girl +certain +Having seen +him +sitting +by +the +light +and +having looked intently on +him +she said +Also +this one +with +Him +was +But +- +he denied [it] +saying +Not +I do know +Him +woman +And +after +a little +another +having seen +him +was saying +Also +you +of +them +are +But +- +Peter +was saying +Man +not +I am +And +having elapsed +about +hour +one +other +a certain +strongly affirmed [it] +saying +Of +a truth +also +this one +with +Him +was +for +also +a Galilean +he is +however +Said +- +Peter +Man +not +I know +what +you say +And +immediately +while +he was speaking +of him +crowed +the rooster +And +having turned +the +Lord +looked at +- +Peter +and +remembered +- +Peter +the +word +of the +Lord +how +He had said +to him +- +Before +[the] rooster +crows +today +you will deny +Me +three times +And +having gone forth +outside +he wept +bitterly +And +the +men +who +are holding +Him +began mocking +Him +beating [Him] +And +having blindfolded +Him +they were questioning [Him] +saying +Prophesy +who +is +the [one] +having struck +You +And +other things +many +they were saying +blaspheming +to +Him +And +when +it became +day +were gathered together +the +elderhood +of the +people +both +chief priests +and +scribes +and +they led +Him +into +the +council +of them +saying +If +You +are +the +Christ +tell +us +then +He said +to them +If +you +I should tell +no +not +would you believe +then +if +I should ask [you] +no +not +would you answer +also +From +- +now on +will be +sitting +the +Son +- +of Man +at +[the] right hand +of the +power +- +of God +then +They said +all +then +You +are +the +Son +- +of God +And +- +to +them +He was saying +You +say +that +I +am +And +- +they said +What +any more +have we +of witness +need +for +We ourselves +have heard [it] +from +the +mouth +of Him +And +having risen up +all +the +multitude +of them +led +Him +to +- +Pilate +then +They began +to accuse +Him +saying +we found +This [man] +misleading +the +nation +of us +and +forbidding +tribute +to Caesar +to be given +and +declaring +Himself +Christ +a king +to be +And +- +Pilate +questioned +Him +saying +You +are +the +King +of the +Jews +And +- +answering +him +He was saying +You +say +And +- +Pilate +said +to +the +chief priests +and +the +crowds +Not +find I +guilt +in +the +man +this +But +- +they kept insisting +saying +- +He stirs up +the +people +teaching +throughout +all +- +of Judea +and +He has begun +from +- +Galilee +even to +here +now +Pilate +having heard +asked +whether +the +man +a Galilean +is +and +having learned +that +from +the +jurisdiction +of Herod +He is +he sent up +Him +to +Herod +being +also +he himself +in +Jerusalem +in +those +- +days +And +- +Herod +having seen +- +Jesus +[was] glad +exceedingly +for +he was +wishing +of +a long +time +to see +Him +because of +- +hearing +concerning +Him +and +he was hoping +to see +some +sign +by +Him +done +then +He kept questioning +Him +in +words +many +however +He +nothing +answered +him +now +Had been standing by +the +chief priests +and +the +scribes +vehemently +accusing +Him +then +- +Herod +Having set at naught +Him +with +the +troops +of him +and +having mocked [Him] +having put on [Him] +apparel +splendid +sent back +him +to +Pilate +then +Became +friends +both +- +Herod +and +- +Pilate +on +that +- +day +with +one another +for +previously it had been that +at +enmity +they were +between +themselves +then +Pilate +having called together +the +chief priests +and +the +rulers +and +the +people +said +to +them +You brought +to me +the +man +this +as +misleading +the +people +and +behold +I +before +you +having examined [Him] +nothing +found +in +the +man +this +guilty +of that +accusation you are bringing +against +Him +No +not even +Herod [did] +for +he sent back +Him +to +us +And +behold +nothing +worthy +of death +is +done +by Him +therefore +Having chastised +Him +I will release [Him] +however +They cried out +all together +saying +Away with +this [man] +now +release +to us +- +Barabbas +who +was +having been cast +on account of +insurrection +a certain +having been made +in +the +city +and +murder +into +the +prison +therefore +Again +- +Pilate +called +to them +wishing +to release +- +Jesus +But +- +they were crying out +saying +Crucify +crucify +Him +And +- +a third [time] +he said +to +them +for +What +evil +did commit +this [man] +No +cause +of death +found I +in +Him +therefore +Having chastised +Him +I will release [Him] +But +- +they were urgent +with voices +loud +asking for +Him +to be crucified +And +were prevailing +the +voices +of them +and +Pilate +sentenced +to be done +the +demand +of them +then +He released +the [one] +on account of +insurrection +and +murder +having been cast +into +prison +whom +they had asked for +and +- +Jesus +he delivered +to the +will +of them +And +as +they led away +Him +having laid hold on +Simon +a certain +of Cyrene +coming +from +the country +they put upon +him +the +cross +to carry +behind +- +Jesus +now +Were following +Him +a great +multitude +of the +people +and +of women +who +were mourning +and +lamenting for +Him +then +Having turned +to +them +Jesus +said +Daughters +of Jerusalem +not +weep +for +Me +but +for +yourselves +weep +and +for +the +children +of you +For +behold +are coming +days +in +which +they will say +Blessed [are] +the +barren +and +the +wombs +that +never +did bear +and +breasts +that +never +nursed +Then +They will begin +to say +to the +mountains +Fall +upon +us +and +to the +hills +Cover +us +For +if +in +green +tree +these things +they do +in +the +dry +what +might take place +now +Were being led away +also +other +criminals +two +with +Him +to be put to death +And +when +they came +to +the +place +- +called +The Skull +there +they crucified +Him +and +the +criminals +- +one +on [the] +right +now +one +on +[the] left +And +- +Jesus +was saying +Father +forgive +them +for +not +they know +what +they do +then +Dividing +the +garments +of Him +they cast +lots +And +stood +the +people +beholding +then +Were deriding [Him] +also +the +rulers +saying +Others +He saved +let Him save +Himself +if +this +is +the +Christ +- +of God +the +Chosen [One] +then +Mocked +Him +also +the +soldiers +coming near +sour wine +offering +Him +and +saying +If +You +are +the +King +of the +Jews +save +Yourself +now +There was +also +an inscription +over +Him +The +King +of the +Jews +This +now +One +of the +having been hanged +criminals +was railing at +Him +Not +you are +if +the +Christ +Save +Yourself +and +us +now +Answering +the +other +was rebuking +him +saying +Not even +do fear +you +- +God +that +under +the +same +judgment +you are +and +indeed +we +justly +for +Worthy +of what +we did +we are receiving +however +[this] man +nothing +wrong +did +And +he was saying +Jesus +remember +me +when +You come +into +the +kingdom +of You +And +He said +to him +Truly +to you +I say +today +with +Me +you will be +in +- +Paradise +And +it was +now +about +[the] hour +sixth +and +darkness +came +over +all +the +land +until +[the] hour +ninth +The +sun +was darkened +then +was torn +the +veil +of the +temple +in [the] middle +And +having called out +in a voice +loud +- +Jesus +said +Father +into +[the] hands +of You +I commit +the +Spirit +of Me +now +This +having said +He breathed His last +now +the +centurion +Having seen +that +having taken place +he began glorifying +- +God +saying +Certainly +the +man +this +righteous +was +And +all +the +having come together +to +the +spectacle +this +crowds +having seen +the things +having taken place +beating +the +breasts +were returning [home] +now +Stood +from +afar off +all +those who +knew +Him +also +women +those +having followed +Him +from +- +Galilee +beholding +these things +And +behold +a man +named +Joseph +being +a Council member +a man +good +and +righteous +he +not +was +having consented +to the +counsel +and +the +deed +of them +from +Arimathea +a city +of the +Jews +who +was waiting for +the +kingdom +- +of God +He +having gone +- +to Pilate +asked [for] +the +body +- +of Jesus +And +having taken it down +he wrapped +it +in a linen cloth +and +placed +it +in +a tomb +cut in a rock +in which +no +had been +laid +no one +not yet +And +[the] Day +of Preparation +it was +and +Sabbath +was just beginning +then +Having followed +the +women +who +were +come +out of +- +Galilee +with Him +saw +the +tomb +and +how +was laid +the +body +of Him +then +Having returned +they prepared +spices +and +anointing oils +And +indeed +on the +Sabbath +they rested +according to +the +commandment +however +The +first [day] +of the +week +dawn +very early +to +the +tomb +they came +bringing +that +they had prepared +spices +then +They found +the +stone +having been rolled away +from +the +tomb +however +Having entered +not +they found +the +body +of the +Lord +Jesus +And +it came to pass +while +- +are perplexed +they +about +this +that +behold +men +two +stood by +them +in +garments +dazzling +then +Terrified +having become +of them +and +bowing +the +faces +to +the +ground +they said +to +them +Why +seek you +the +living +among +the +dead +Not +He is +here +but +He is risen +Remember +how +He spoke +to you +yet +being +in +- +Galilee +saying +- +it behooves +The +Son +- +of Man +to be delivered +into +hands +of men +sinful +and +to be crucified +and +the +third +day +to arise +And +they remembered +the +words +of Him +And +having returned +from +the +tomb +they related +these things +all +to the +eleven +and +to all +the +rest +now +It was +- +Magdalene +Mary +and +Joanna +and +Mary +the [mother] +of James +and +the +other women +with +them +telling +to +the +apostles +these things +And +appeared +before +them +like +folly +the +words +of them +and +they did not believe +them +But +- +Peter +having risen up +ran +to +the +tomb +and +having stooped down +he sees +the +linen strips +only +and +he went away +in +himself +wondering at +that +having come to pass +And +behold +two +of +them +on +same +the +day +were +going +to +a village +being distant +stadia +sixty +from +Jerusalem +whose +name [is] +Emmaus +and +they +were talking +with +one another +about +all +- +having taken place +these things +And +it came to pass +in +the +talking +of them +and +reasoning +that +Himself +Jesus +having drawn near +was walking along with +them +but +- +the eyes +of them +were held +- +not +to know +Him +then +He said +to +them +What +- +words [are] +these +that +you exchange +with +one another +walking +And +they stood still +looking sad +now +Answering +[the] one +named +Cleopas +said +to +Him +You +alone +visit +Jerusalem +and +not +have known +the things +having come to pass +in +it +in +the +days +these +And +He said +to them +What things +And +- +they said +to Him +The things +concerning +Jesus +of +Nazareth +who +was +a man +a prophet +mighty +in +deed +and +word +before +- +God +and +all +the +people +then +that +delivered up +him +the +chief priests +and +the +rulers +of us +to +[the] judgment +of death +and +crucified +Him +however +We +were hoping +- +He +it is +who +is about +to redeem +- +Israel +But +indeed +also +with +all +these things +[the] third +this +day +brings +away from +which +these things +came to pass +However +also +women +certain +out from +us +astonished +us +Having been +early +to +the +tomb +and +not +having found +the +body +of Him +they came +declaring +also +a vision +of angels +to have seen +who +say +He +is alive +And +went +some +of those +with +us +to +the +tomb +and +found [it] +so +as +also +the +women +said +however +Him +not +they saw +And +He +said +to +them +O +foolish +and +slow +- +of heart +- +to believe +in +all +that +have spoken +the +prophets +Not +was it necessary for +these things +to suffer +the +Christ +and +to enter +into +the +glory +of Him +And +having begun +from +Moses +and +from +all +the +Prophets +He interpreted +to them +in +all +the +Scriptures +the things +concerning +Himself +And +they drew near +to +the +village +where +they were going +and +He +appeared +farther +to be going +And +they constrained +Him +saying +Abide +with +us +for +toward +evening +it is +and +has declined +now +the +day +And +He entered in +- +to abide +with +them +And +it came to pass +in +the +reclining +of Him +with +them +having taken +the +bread +He blessed [it] +and +having broken [it] +He began giving [it] +to them +then +Of them +the +eyes +were opened +and +they knew +Him +And +He +vanished +being seen +from +them +And +they said +to +one another +Not +the +heart +of us +burning +was +within +us +as +He was speaking +with us +on +the +road +as +He was opening +to us +the +Scriptures +And +having risen up +[that] same +- +hour +they returned +to +Jerusalem +and +they found +gathered together +the +eleven +and +those +with +them +saying +- +Indeed +has risen +the +Lord +and +He has appeared +to Simon +And +they +began relating +the things +on +the +road +and +how +He was known +to them +in +the +breaking +of the +bread +now +These things +of them +as they were telling +He Himself +stood +in +midst +of them +and +says +to them +Peace +to you +however +Having been terrified +and +filled with fear +having been +they were thinking [themselves] +a spirit +to see +And +He said +to them +Why +troubled +are you +and +through +why +doubts +do come up +in +the +hearts +of you +See +the +hands +of Me +and +the +feet +of Me +that +I +am +He +Touch +Me +and +see +for +a spirit +flesh +and +bones +not +has +as +Me +having +you see +And +this +having said +He showed +to them +the +hands +and +the +feet +now +Still +while they were disbelieving +of them +for +the +joy +and +amazement +He said +to them +Have you +anything +to eat +here +And +- +they gave +to Him +of a fish +broiled +part +And +having taken [it] +before +them +He ate [it] +now +He said +unto +to them +These [are] +the +words +of me +which +I spoke +to +you +still +being +with +you +that +it behooves +to be fulfilled +all things +- +having been written +in +the +law +of Moses +and +the +Prophets +and +[the] Psalms +concerning +Me +Then +He opened +their +- +mind +- +to understand +the +Scriptures +And +He said +to them +- +Thus +it has been written +Was to suffer +the +Christ +and +to rise +out from +[the] dead +the +third +day +and +to be proclaimed +in +the +name +of Him +repentance +and +forgiveness +of sins +to +all +- +nations +having begun +from +Jerusalem +You +witnesses +of these things +And +behold +I +am sending +the +promise +of the +Father +of Me +upon +you +however +you +remain +in +the +city +until +that +you should be clothed with +from +on high +power +now +He led +them +as far as +to +Bethany +and +having lifted up +the +hands +of Him +He blessed +them +And +it came to pass +in +the +blessing +of Him +them +He was separated +from +them +and +was carried up +into +- +heaven +And +they +having worshiped +Him +returned +to +Jerusalem +with +joy +great +and +were +blessing +continually +all +in +the +temple +- +God +In [the] +beginning +was +the +Word +and +the +Word +was +with +- +God +and +God +was +the +Word +He +was +in [the] +beginning +with +- +God +All things +through +Him +came into being +and +without +Him +came into being +not even +one [thing] +that +has come into being +In +Him +life +was +and +the +life +was +the +light +- +of men +And +the +Light +in +the +darkness +shines +and +the +darkness +it +not +overcame +There came +a man +having been sent +from +God +[the] name +to Him +[was] John +He +came +as +a witness +that +he might testify +concerning +the +Light +that +all +might believe +through +him +Not +was +He +the +Light +but +that +he might witness +concerning +the +Light +the +Light +- +true +who +enlightens +every +man +Was +coming +into +the +world +In +the +world +He was +and +the +world +through +Him +came into being +and +the +world +Him +not +knew +To +the +own +He came +and +the +own +Him +not +received +however +As many as +received +Him +He gave +authority +children +of God +to be +to them +to those +believing +in +the +name +of Him +who +not +of +blood +nor +of +will +of flesh +nor +of +will +of man +but +of +God +were born +And +the +Word +flesh +became +and +dwelt +among +us +and +we beheld +the +glory +of Him +a glory +as +of an only begotten +from +[the] Father +full +of grace +and +truth +John +witnesses +concerning +Him +and +he cried out +saying +This +was He +of whom +I was saying +The [One] +after +me +coming +precedence +over me +has +because +before +me +He was +For +from +the +fullness +of Him +we +all +have received +then +grace +for +grace +For +the +law +through +Moses +was given +- +grace +and +- +truth +through +Jesus +Christ +came +God +no one +has seen +ever yet +[the] only begotten +God +the [One] +being +in +the +bosom +of the +Father +He +has made [Him] known +And +this +is +the +testimony +- +of John +when +sent +to +him +the +Jews +from +Jerusalem +priests +and +Levites +that +they might ask +him +You +who +are +And +he confessed +and +not +denied +but +confessed +- +I +not +am +the +Christ +And +they asked +him +then +What +You +Elijah +are +And +he says +Not +I am +The +prophet +are +you +And +he answered +No +therefore +They said +to him +Who +are you +That +an answer +we might give +to those +having sent +us +what +say you +about +yourself +He was saying +I [am] +a voice +crying +in +the +wilderness +Make straight +the +way +of [the] Lord +as +said +Isaiah +the +prophet +And +[those] having been sent +were +out from +the +Pharisees +And +they asked +him +and +said +to him +then +Why +baptize you +if +you +not +are +the +Christ +nor +Elijah +nor +the +prophet +Answered +them +- +John +saying +I +baptize +with +water +but in [the] midst +of you +stands [One] +whom +you +not +know +the [One] +after +me +coming +of whom +not +am +I +worthy +that +I should untie +of Him +the +strap +of the +sandal +These things +in +Bethany +took place +across +the +Jordan +where +was +baptizing +- +John +On the +next day +he sees +- +Jesus +coming +to +him +and +says +Behold +the +Lamb +- +of God +- +taking away +the +sin +of the +world +He +it is +concerning +whom +I +said +After +me +comes +a man +who +precedence +over me +has +because +before +me +He was +And I +not +knew +Him +but +that +He might be revealed +- +to Israel +because of +this +came +I +with +water +baptizing +And +bore witness +John +saying +- +I have beheld +the +Spirit +descending +as +a dove +out of +heaven +and +it remained +upon +Him +And I +not +knew +Him +but +the [One] +having sent +me +to baptize +with +water +He +to me +said +- +Upon +whom +you shall see +the +Spirit +descending +and +abiding +on +Him +He +is +the [One] +baptizing +with +[the] Spirit +Holy +And I +have seen +and +have borne witness +that +this +is +the +Son +- +of God +On the +next day +again +was standing +- +John +and +of +the +disciples +of him +two +And +having looked at +- +Jesus +walking +he says +Behold +the +Lamb +- +of God +And +heard +the +two +disciples +him +speaking +and +followed +- +Jesus +then +- +Jesus +Having turned +and +having beheld +them +following +He says +to them +What +seek you +And +- +they said +to Him +Rabbi +which +is to say +being translated +Teacher +where +are You staying +He says +to them +Come +and +you will see +therefore +They went +and +saw +where +He abides +and +with +Him +they stayed +the +day +that +[The] hour +was +about +[the] tenth +Was +Andrew +the +brother +of Simon +Peter +one +of +the +two +- +having heard +from +John +and +having followed +Him +Finds +he +first +the +brother +- +own +Simon +and +he says +to him +We have found +the +Messiah +which +is +translated +Christ +He led +him +to +- +Jesus +Having looked at +him +- +Jesus +said +You +are +Simon +the +son +of John +You +will be called +Cephas +which +means +Peter +On the +next day +He desired +to go forth +into +- +Galilee +And +He finds +Philip +And +says +to him +- +Jesus +Follow +Me +now +Was +- +Philip +from +Bethsaida +from +the +city +of Andrew +and +Peter +Finds +Philip +- +Nathanael +and +says +to him +[Him] whom +wrote of +Moses +in +the +Law +also +the +prophets +we have found +Jesus +son +- +of Joseph +- +of +Nazareth +And +said +to him +Nathanael +Out of +Nazareth +to be +is able +any +good thing +Says +to him +- +Philip +Come +and +see +Saw +Jesus +- +Nathanael +coming +to +Him +and +He says +concerning +him +Behold +truly +an Israelite +in +whom +deceit +not +there is +Says +to Him +Nathanael +From where +me +know You +Answered +Jesus +and +said +to him +Before +- +you +Philip +calling +being +under +the +fig tree +you +I saw +Answered +Him +Nathanael +Rabbi +You +are +the +Son +- +of God +You +King +- +of Israel +are +Answered +Jesus +and +said +to him +Because +I said +to you +that +I saw +you +under +the +fig tree +believe you +Greater things +than these +You will see +And +He says +to him +Truly +truly +I say +to all of you +you will see +the +heaven +opened +and +the +angels +- +of God +ascending +and +descending +on +the +Son +- +of Man +And +on the +day +- +third +a wedding +took place +in +Cana +- +of Galilee +and +was +the +mother +- +of Jesus +there +then +Was invited +also +- +Jesus +and +the +disciples +of Him +to +the +wedding +And +having been deficient +of wine +says +the +mother +- +of Jesus +to +Him +Wine +not +they have +And +says +to her +- +Jesus +What +to Me +and +to you +woman +Not yet +is come +the +hour +of Me +Says +the +mother +of Him +to the +servants +anyhow +- +Whatever +He may say +to you +do +now +There were +standing +there +of stone +water jars +six +according to +the +purification +of the +Jews +having space +for +metretae +two +or +three +Says +to them +- +Jesus +Fill +the +jars +with water +And +they filled +them +up to +[the] brim +And +He says +to them +Draw out +now +and +carry +to the +master of the feast +And +- +they carried [it] +then +When +had tasted +the +master of the feast +the +water +wine +having become +and +not +he knew +from where +it is +however +knew +the +servants +- +having drawn +the +water +calls +the +bridegroom +the +master of the feast +and +says +to him +Every +man +first +the +good +wine +sets out +and +when +they might have drunk freely +the +inferior +you +have kept +the +good +wine +until +now +This +[the] beginning +of the +signs +did +- +Jesus +in +Cana +- +of Galilee +and +He revealed +the +glory +of Him +and +believed +in +Him +the +disciples +of Him +After +this +He went down +to +Capernaum +He +and +the +mother +of Him +and +the +brothers +and +the +disciples +of Him +and +there +they stayed +not +many +days +And +near +was +the +Passover +of the +Jews +and +went up +to +Jerusalem +- +Jesus +And +He found +in +the +temple +those +selling +oxen +and +sheep +and +doves +and +the +money changers +sitting +And +having made +a whip +of +cords +all +He drove out +from +the +temple +both +- +sheep +and +- +oxen +and +of the +money changers +the +coins +He poured out +and +the +tables +He overthrew +And +to those +- +doves +selling +He said +Take +these things +from here +not +make +the +house +of the +Father +of Me +a house +of trade +Remembered +the +disciples +of Him +that +written +it is +The +zeal +of the +house +of You +will consume +Me +therefore +Answered +the +Jews +and +said +to Him +What +sign +show You +to us +that +these things +You do +Answered +Jesus +and +said +to them +Destroy +the +temple +this +and +in +three +days +I will raise up +it +therefore +Said +the +Jews +Forty +and +six +years +was built +the +temple +this +and +You +in +three +days +will raise up +it +however +He +was speaking +concerning +the +temple +of the +body +of Him +therefore +When +He was raised up +out from +[the] dead +remembered +the +disciples +of Him +that +this +He had said +and +they believed +the +Scripture +and +the +word +that +had spoken +- +Jesus +then +When +He was +in +- +Jerusalem +in +the +Passover +in +the +Feast +many +believed +in +the +name +of Him +beholding +of Him +the +signs +that +He was doing +however +On His part +Jesus +not +did entrust +Himself +to them +because of +- +His +knowing +all [men] +and +because +no +need +He had +that +anyone +should testify +concerning +the +man +for +He Himself +knew +what +was +in +the +man +now +There was +a man +of +the +Pharisees +a ruler +of the +Jews +Nicodemus +name +to him +He +came +to +Him +by night +and +said +to Him +Rabbi +we know +that +from +God +You have come +a teacher +for +no one +is able +these +- +signs +that +You +do +to do +if +not +should be +- +God +with +him +Answered +Jesus +and +said +to him +Truly +truly +I say +to you +if +not +anyone +be born +from above +not +he is able +to see +the +kingdom +- +of God +Says +to +Him +- +Nicodemus +How +is able +a man +to be born +old +being +Not +is he able +into +the +womb +of the +mother +of him +a second time +to enter +and +to be born +Answered +Jesus +Truly +truly +I say +to you +if +not +anyone +be born +of +water +and +of [the] Spirit +not +he is able +to enter +into +the +kingdom +- +of God +That +having been born +of +the +flesh +flesh +is +and +that +having been born +of +the +Spirit +spirit +is +Not +do wonder +that +I said +to you +It is necessary for +you [all] +to be born +from above +The +wind +where +it wishes +blows +and +the +sound +of it +You hear +but +not +you know +from where +it comes +and +where +it goes +thus +is +everyone +- +having been born +of +the +Spirit +Answered +Nicodemus +and +said +to Him +How +are able +these things +to be +Answered +Jesus +and +said +to him +You +are +the +teacher +- +of Israel +and +these things +not +know +Truly +truly +I say +to you +that +what +we know +we speak +and +what +we have seen +we bear witness to +and +the +witness +of us +not +you people receive +If +things +earthly +I have told +you +and +not +you believe +how +if +I tell +to you +the things +heavenly +will you believe +And +no one +has gone up +into +- +heaven +if +not +the [One] +out of +- +heaven +having come down +the +Son +- +of Man +And +as +Moses +lifted up +the +serpent +in +the +wilderness +thus +it behooves +to be lifted up +the +Son +- +of Man +so that +everyone +- +believing +in +Him +may have +life +eternal +for +Thus +loved +- +God +the +world +that +the +Son +the +only begotten +He gave +so that +everyone +- +believing +in +Him +not +should perish +but +should have +life +eternal +for +Not +sent +- +God +- +His Son +into +the +world +that +He might judge +the +world +but +that +might be saved +the +world +through +Him +The [one] +believing +on +Him +not +is judged +the [one] +not +believing +already +has been judged +because +not +he has believed +in +the +name +of the +only begotten +Son +- +of God +now +This +is +the +judgement +that +the +Light +has come +into +the +world +and +loved +- +men +rather +the +darkness +than +the +Light +for +were +evil +of them +the +deeds +for +Everyone +- +evil +practicing +hates +the +Light +and +not +comes +to +the +Light +so that +not +may be exposed +the +works +of him +however +the [one] +practicing +the +truth +comes +to +the +Light +that +may be manifest +his +- +works +that +in +God +have been +done +After +these things +came +- +Jesus +and +the +disciples +of Him +into +the +Judean +land +and +there +He was staying +with +them +and +was baptizing +now +Was +baptizing +also +John +in +Aenon +near +- +Salim +because +waters +many +were +there +and +they were coming +and +being baptized +for +Not yet +had been +cast +into +the +prison +John +then +Arose +a debate +among +the +disciples +of John +with +[a certain] Jew +about +purification +And +they came +to +- +John +and +said +to him +Rabbi +He who +was +with +you +beyond +the +Jordan +to whom +you +have borne witness +behold +He +baptizes +and +all +are coming +to +Him +Answered +John +and +said +Nothing +is able +a man +to receive +nothing +if +not +it is +given +to him +from +- +heaven +Yourselves +you +to me +bear witness +that +I said +Not +am +I +the +Christ +but +- +sent +I am +before +Him +The [one] +having +the +bride +[the] bridegroom +is +now +the +friend +of the +bridegroom +the [one] +standing +and +listening for +him +with joy +rejoices +because of +the +voice +of the +bridegroom +therefore +This +the +joy +- +of mine +is fulfilled +it behooves +Him +to increase +however +me +to decrease +The [One] +from above +coming +above +all +is +The [one] +being +from +the +earth +from +the +earth +is +and +from +the +earth +speaks +The [One] +from +- +heaven +coming +above +all +is +What +He has seen +and +heard +this +He testifies +and +the +testimony +of Him +no one +receives +The [one] +having received +His +- +testimony +has set his seal +that +- +God +true +is +for +He whom +sent +- +God +the +words +- +of God +speaks +for +not +by +measure +He gives +the +Spirit +The +Father +loves +the +Son +and +all things +has given +into +the +hand +of Him +The [one] +believing +in +the +Son +has +life +eternal +however +the [one] +not obeying +the +Son +not +will see +life +but +the +wrath +- +of God +abides +on +him +therefore +When +knew +- +Jesus +that +heard +the +Pharisees +that +Jesus +more +disciples +makes +and +baptizes +than +John +although indeed +Jesus +Himself +not +was baptizing +but +the +disciples +of Him +He left +- +Judea +and +went away +again +into +- +Galilee +now +It was necessary for +Him +to pass +through +- +Samaria +therefore +He comes +to +a city +- +of Samaria +called +Sychar +near +the +plot of ground +that +had given +Jacob +Joseph +the +son +of him +now +Was +there +[the] well +- +of Jacob +Therefore +- +Jesus +being wearied +from +the +journey +was sitting +thus +at +the +well +[The] hour +was +about +[the] sixth +Comes +a woman +out of +- +Samaria +to draw +water +Says +to her +- +Jesus +Give +Me +to drink +For +- +the disciples +of Him +had gone away +into +the +city +that +food +they might buy +therefore +Says +to Him +the +woman +- +Samaritan +How +You +a Jew +being +from +me +a woman +Samaritan +being +to drink +do ask +for +Not +have association +Jews +with Samaritans +Answered +Jesus +and +said +to her +If +you had known +the +gift +- +of God +and +who +it is +- +saying +to you +Give +Me +to drink +- +you +would have asked +Him +and +- +He would have given +to you +water +living +Says +to Him +Sir +nothing +to draw with +You have +and +the +well +is +deep +then +from where +have You +the +water +- +living +Not +You +greater than +are +the +father +of us +Jacob +who +gave +us +the +well +and +himself +of +it +drank +and +the +sons +of him +and +the +livestock +of him +Answered +Jesus +and +said +to her +Everyone +- +drinking +of +the +water +this +will thirst +again +however +- +whoever +may drink +of +the +water +that +I +will give +him +never +not +will thirst +to +the +age +Instead +the +water +that +I will give +to him +will become +in +him +a spring +of water +welling up +into +life +eternal +Says +to +Him +the +woman +Sir +give +me +this +- +water +that +not +I might thirst +nor +come +here +to draw +He says +to her +Go +call +the +husband +of you +and +come +here +Answered +the +woman +and +said +Not +I have +a husband +Says +to her +- +Jesus +Correctly +you have spoken +- +A husband +not +I have +for +Five +husbands +you have had +and +he whom +now +you have +not +is +your +husband +this +truly +you have spoken +Says +to Him +the +woman +Sir +I understand +that +a prophet +are +You +The +fathers +of us +on +the +mountain +this +worshiped +and +you +say +that +in +Jerusalem +is +the +place +where +to worship +it is necessary +Says +to her +- +Jesus +Believe +Me +woman +that +is coming +an hour +when +neither +on +the +mountain +this +nor +in +Jerusalem +will you worship +the +Father +You +worship +what +not +you know +we +worship +what +we know +for +- +salvation +of +the +Jews +is +But +is coming +an hour +and +now +is +when +the +true +worshipers +will worship +the +Father +in +spirit +and +truth +for +also +the +Father +such +seeks +who +worship +Him +Spirit +- +God [is] +and +those +worshiping +in +spirit +and +truth +to worship +it behooves +Says +to Him +the +woman +I know +that +Messiah +who +is called +Christ +is coming +when +comes +He +He will tell +us +all things +Says +to her +- +Jesus +I +the [One] +speaking +to you +am [He] +And +upon +this +came +the +disciples +of Him +and +were amazed +that +with +a woman +He was speaking +however +no one +said +What +seek You +Or +Why +speak You +with +her +then +Left +the +water pot +of her +the +woman +and +went away +into +the +city +and +says +to the +men +Come +see +a man +who +told +me +all things +whatever +I did +Can it be [that] +this +is +the +Christ +They went forth +out of +the +city +and +were coming +unto +Him +But in +the +meantime +were asking +Him +the +disciples +saying +Rabbi +eat +But +- +He said +to them +I +food +have +to eat +that +you +not +know +therefore +Were saying +the +disciples +to +one another +No +one +did bring +Him +[anything] to eat +Says +to them +- +Jesus +My +food +is +that +I should do +the +will +of the [One] +having sent +Me +and +should finish +of Him +the +work +Not +you +say +that +yet +four months +it is +and +the +harvest +comes +Behold +I say +to you +lift up +the +eyes +of you +and +see +the +fields +because +white +they are +toward +harvest +already +The [one] +reaping +a reward +receives +and +gathers +fruit +unto +life +eternal +so that +together +may rejoice +the [one] +sowing +and +the [one] +reaping +for +In +this +the +saying +is +true +- +One +is +- +sowing +and +another +- +reaping +I +sent +you +to reap +what +not +you +have toiled for +others +have toiled +and +you +into +the +labor +of them +have entered +now +Out of +the +city +that +many +of the +Samaritans +believed +in +Him +because of +the +word +of the +woman +testifying +- +He told +me +all things +whatever +I did +therefore +When +came +to +Him +the +Samaritans +they were asking +Him +to abide +with +them +and +He stayed +there +two +days +And +many +more +believed +because of +the +word +of Him +and +- +to the woman +they were saying +- +No longer +because of +- +your +speech +we believe +for +we ourselves +have heard +and +we know +that +this +is +truly +the +Savior +of the +world +then +After +the +two +days +He went forth +from there +into +- +Galilee +for +Himself +Jesus +testified +that +a prophet +in +the +own +hometown +honor +not +has +therefore +When +He came +into +- +Galilee +received +Him +the +Galileans +having seen +all things +how great +He had done +in +Jerusalem +during +the +feast +for +also +themselves +they had gone +to +the +feast +therefore +He came +again +to +- +Cana +- +of Galilee +where +He had made +the +water +wine +And +there was +a certain +royal official +whose +- +son +was sick +in +Capernaum +He +having heard +that +Jesus +had come +out of +- +Judea +into +- +Galilee +went +to +Him +and +was asking +that +He would come down +and +heal +his +- +son +for +he was about +to die +therefore +Said +- +Jesus +to +him +If +not +signs +and +wonders +you people see +no +not +will you believe +Says +to +Him +the +royal official +Sir +come down +before +dies +the +child +of me +Says +to him +- +Jesus +Go +the +son +of you +lives +Believed +the +man +the +word +that +said +to him +- +Jesus +and +he went on his way +then +Already +[as] he +is going down +the +servants +met +him +saying +that +the +boy +of him +lives +therefore +He inquired +the +hour +from +them +in +which +better +he got +therefore +They said +to him +- +Yesterday +[at the] hour +seventh +left +him +the +fever +therefore +Knew +the +father +that [it was] +that +the +hour +at +which +said +to him +- +Jesus +The +son +of You +lives +And +he believed +himself +and +the +household +of him +all +now +again +This [is] +[the] second +sign +did +- +Jesus +having come +out of +- +Judea +into +- +Galilee +After +these things +there was +a feast +of the +Jews +and +went up +Jesus +to +Jerusalem +now +There is +in +- +Jerusalem +by +the +Sheep Gate +a pool +- +called +in Hebrew +Bethesda +five +porches +having +In +these +were lying +a multitude +of those +ailing +blind +lame +paralyzed +awaiting +the +of the +water +moving +for +An angel +during +[a certain] season +descended +into +the +pool +and +stirred +the +water +therefore +He who +first +entered +after +the +stirring +of the +water +well +was made +from whatever +at the time +he was held by +disease +now +Was +a certain +man +there +thirty +and +eight +years +being +in +- +infirmity +himself +- +Jesus +Him +lying +having seen +and +having known +that +a long +time +already +he has been +He says +to him +Desire you +well +to become +Answered +Him +the [one] +ailing +Sir +a man +not +I have +that +when +has been stirred +the +water +he might put +me +into +the +pool +now +in +which +am going +I +another +before +me +descends +Says +to him +- +Jesus +Arise +take up +the +mat +of you +and +walk +And +immediately +became +well +the +man +and +he took up +the +mat +of him +and +began to walk +now +It was +Sabbath +on +that +- +day +therefore +Were saying +the +Jews +to the [one] +having been healed +Sabbath +it is +and +not +it is lawful +for you +to take up +the +mat +however +who +answered +them +The [One] +having made +me +well +that One +to me +said +Take up +the +mat +of you +and +walk +They asked +him +Who +is +the +man +- +having said +to you +Take up +and +walk +now +The [one] +having been healed +not +knew +who +it is +for +- +Jesus +had moved away +a crowd +being +in +the +place +After +these things +finds +him +- +Jesus +in +the +temple +and +said +to him +Behold +well +you have become +no more +sin +that +not +worse +something +to you +happens +Went away +the +man +and +told +the +Jews +that +Jesus +it is +the [One] +having made +him +well +And +because of +this +were persecuting +the +Jews +- +Jesus +because +these things +He was doing +on +[the] Sabbath +But +- +answered +them +The +Father +of Me +until +now +is working +and I +am working +therefore +Because of +this +the more +were seeking +Him +to kill +the +Jews +because +not +only +was He breaking +the +Sabbath +but +also +Father +His own +He was calling +- +God +equal +Himself +making +to +God +therefore +Answered +- +Jesus +and +was saying +to them +Truly +truly +I say +to you +not +is able +the +Son +to do +of +Himself +nothing +if +not +He might see +anything +the +Father +doing +for +- +whatever +He +does +these things +also +the +Son +likewise +does +For +- +the Father +loves +the +Son +and +shows +to Him +all things +that +He +does +and +greater +than these +works +He will show +Him +so that +you +may marvel +for +Even as +the +Father +raises up +the +dead +and +gives life +thus +also +the +Son +to whom +He will +gives life +for +Not even +the +Father +judges +no one +but +- +judgment +all +has given +to the +Son +so that +all +may honor +the +Son +even as +they honor +the +Father +He who +not +is honoring +the +Son +not +is honoring +the +Father +the [One] +having sent +Him +Truly +truly +I say +to you +that +the [one] +the +word +of Me +hearing +and +believing +the [One] +having sent +Me +he has +life +eternal +and +into +judgment +not +comes +but +has passed +out of +- +death +into +- +life +Truly +truly +I say +to you +that +is coming +an hour +and +now +is +when +the +dead +will hear +the +voice +of the +Son +- +of God +and +those +having heard +will live +for +As +the +Father +has +life +in +Himself +so +also +to the +Son +He gave +life +to have +in +Himself +And +authority +He gave +Him +judgment +to execute +because +Son +of Man +He is +Not +marvel at +this +for +is coming +an hour +in +which +all +those +in +the +tombs +will hear +the +voice +of Him +and +will come forth +those +- +good +having done +to +[the] resurrection +of life +- +those +evil +having done +to +[the] resurrection +of judgment +Not +am able +I +to do +of +Myself +nothing +as +I hear +I judge +and +the +judgment +- +of Me +just +is +because +not +I seek +the +will +- +of Me +but +the +will +of the [One] +having sent +Me +If +I +bear witness +concerning +Myself +the +testimony +of Me +not +is +true +Another +it is +- +bearing witness +concerning +Me +and +I know +that +true +is +the +testimony +which +he bears witness +concerning +Me +You +have sent +unto +John +and +he has borne witness +to the +truth +now +I +not +from +man +the +testimony +receive +but +these things +I say +that +you +may be saved +He +was +the +lamp +- +burning +and +shining +now +you +were willing +to rejoice +for +a season +in +the +light +of him +however +I +have +the +testimony +greater than +that +of John +For +- +the works +that +has given +Me +the +Father +that +I should complete +them +same +the +works +which +I do +bear witness +concerning +Me +that +the +Father +Me +has sent +And +the [One] +having sent +Me +[the] Father +Himself +has borne witness +concerning +Me +Neither +voice +of Him +at any time +have You heard +nor +form +of Him +have you seen +And +not +you have +the +word +of Him +in +you +abiding +for +whom +sent +He +Him +you +not +believe +You diligently search +the +Scriptures +for +you +think +in +them +life +eternal +to have +and +these +are they +- +bearing witness +concerning +Me +and +not +you are willing +to come +to +Me +that +life +you may have +Glory +from +men +not +I take +but +I have known +you +that +the +love +- +of God +not +you have +in +yourselves +I +have come +in +the +name +of the +Father +of Me +and +not +you receive +Me +if +another +should come +in +the +name +the +own +him +you will receive +How +are able +you +to believe +glory +from +one another +receiving +and +the +glory +that [is] +from +the +only +God +not +you seek +Not +think +that +I +will accuse +you +to +the +Father +There is +[one] +accusing +you +Moses +in +whom +you +have hoped +for +If +you were believing +Moses +- +you would have believed +Me +for +concerning +Me +he +wrote +now +If +- +his +writings +not +you believe +how +- +My +words +will you believe +After +these things +went away +- +Jesus +over +the +Sea +- +of Galilee +- +of Tiberias +now +Was following +Him +a crowd +great +because +they were seeing +the +signs +which +He was doing +upon +those +being sick +now +Went up +on +the +mountain +Jesus +and +there +He was sitting +with +the +disciples +of Him +now +Was +near +the +Passover +the +feast +of the +Jews +then +- +Jesus +Having lifted up +the +eyes +and +having seen +that +a great +crowd +is coming +to +Him +He says +to +Philip +From where +shall we buy +bread +that +might eat +these +now +This +He was saying +testing +him +for +He +knew +what +to do +He was about +Answered +Him +- +Philip +Two hundred +denarii worth +of loaves +not +are sufficient +for them +that +each +little [piece] +one +might receive +Says +to Him +one +of +the +disciples +of Him +Andrew +the +brother +of Simon +Peter +Is +a little boy +here +who +has +five +loaves +barley +and +two +small fish +but +these +what +are +for +so many +Said +- +Jesus +Make +the +men +to recline +now +There was +grass +much +in +the +place +therefore +Reclined +the +men +the +number +about +five thousand +then +Took +the +loaves +- +Jesus +and +having given thanks +He distributed +to those +reclining +likewise +also +of +the +fish +as much as +they wished +now +When +they were filled +He says +to the +disciples +of Him +Gather together +the +having been over and above +fragments +so that +nothing +anything +may be lost +therefore +They gathered together +and +filled +twelve +hand-baskets +of fragments +from +the +five +loaves +- +barley +which +were over and above +to those +having eaten +therefore +The +people +having seen +what +He had done +[the] sign +were saying +- +This +is +truly +the +prophet +who +is coming +into +the +world +therefore +having known +that +they are about +to come +and +to seize +Him +that +they might make [Him] +king +withdrew +again +to +the +mountain +Jesus +Himself +alone +now +When +evening +it became +went down +the +disciples +of Him +to +the +sea +and +having entered +into +a boat +they were going +over +the +sea +to +Capernaum +And +dark +already +it had become +and +not +had come +to +them +- +Jesus +And +- +the sea +by a wind +strong +blowing +was agitated +therefore +Having rowed +about +stadia +twenty +five +or +thirty +they see +- +Jesus +walking +on +the +sea +and +near +the +boat +coming +and +they were frightened +And +- +He says +to them +I +am [He] +not +fear +then +They were willing +to receive +Him +into +the +boat +and +immediately +was +the +boat +at +the +land +to +which +they were going +On the +next day +the +crowd +- +standing +on the other side +of the +sea +having seen +that +boat +other +no +was +there +if +not +one +and +that +not +went with +the +disciples +of Him +- +Jesus +into +the +boat +but +alone +the +disciples +of Him +went away +but other +boats +came +from +Tiberias +near +the +place +where +they ate +the +bread +having given thanks +the +Lord +therefore +When +saw +the +crowd +that +Jesus +not +is +there +nor +the +disciples +of Him +they entered +themselves +into +the +boats +and +came +to +Capernaum +seeking +- +Jesus +And +having found +Him +on the other side +of the +sea +they said +to Him +Rabbi +when +here +have You come +Answered +them +- +Jesus +and +said +Truly +truly +I say +to you +you seek +Me +not +because +you saw +signs +but +because +you ate +of +the +loaves +and +were satisfied +Work +not [for] +the +food +that +is perishing +but [for] +the +food +- +enduring +unto +life +eternal +which +the +Son +- +of Man +to you +will give +for +Him +the +Father +- +God +has sealed +therefore +They said +to +Him +What +must we do +that +we may be doing +the +works +- +of God +Answered +Jesus +and +said +to them +This +is +the +work +- +of God +that +you should believe +in +Him whom +has sent +He +therefore +They said +to Him +then +What +[as a] sign +do +You +that +we may see +and +may believe +You +What +work do You perform +The +fathers +of us +the +manna +ate +in +the +wilderness +as +it is +written +Bread +from +- +heaven +He gave +them +to eat +therefore +Said +to them +- +Jesus +Truly +truly +I say +to you +not +Moses +has given +you +the +bread +from +- +heaven +but +the +Father +of Me +gives +you +the +bread +from +- +heaven +- +true +for +The +bread +- +of God +is +the [One] +coming down +out of +- +heaven +and +life +giving +to the +world +therefore +They said +to +Him +Sir +always +give +to us +the +bread +this +Said +to them +- +Jesus +I +am +the +bread +- +of life +the [one] +coming +to +Me +never +not +shall hunger +and +the [one] +believing +in +Me +no +not +shall thirst +at any time +But +I said +to you +that +also +you have seen +Me +and yet +not +believe +All +that +gives +Me +the +Father +to +Me +will come +and +the [one] +coming +to +Me +no +not +shall I cast +out +For +I have come down +from +- +heaven +not +that +I should do +the +will +- +of Me +but +the +will +of the [One] +having sent +Me +now +This +is +the +will +of the [One] +having sent +Me +that +all +that +He has given +Me +none +I should lose +of +it +but +will raise up +it +in +the +last +day +for +This +is +the +will +of the +Father +of Me +that +everyone +- +beholding +the +Son +and +believing +in +Him +should have +life +eternal +and +will raise up +him +I +in +the +last +day +therefore +Were grumbling +the +Jews +about +Him +because +He said +I +am +the +bread +- +having come down +from +- +heaven +And +they were saying +Not +this +is +Jesus +the +son +of Joseph +of whom +we +know +the +father +and +the +mother +How +then +says He +- +From +- +heaven +I have come down +Answered +Jesus +and +said +to them +Not +grumble +with +one another +No one +is able +to come +to +Me +if +not +the +Father +the [one] +having sent +Me +draws +him +and I +will raise up +him +in +the +last +day +It is +written +in +the +prophets +And +they will be +all +taught +of God +Everyone +- +having heard +from +the +Father +and +having learned +comes +to +Me +Not +that +the +Father +has seen +anyone +if +not +the [One] +being +from +- +God +He +has seen +the +Father +Truly +truly +I say +to you +the [one] +believing +has +life +eternal +I +am +the +bread +- +of life +The +fathers +of You +ate +in +the +wilderness +the +manna +and +died +This +is +the +bread +- +from +- +heaven +coming down +that +anyone +of +it +may eat +and +not +die +I +am +the +bread +- +living +- +from +- +heaven +having come down +if +anyone +shall have eaten +of +this +- +bread +he will live +to +the +age +also +and +the +bread +that +I +will give +the +flesh +of Me +is +for +the +of the +world +life +therefore +Were arguing +with +one another +the +Jews +saying +How +is able +this [man] +us +to give +the +flesh +to eat +therefore +Said +to them +- +Jesus +Truly +truly +I say +to you +if +not +you shall have eaten +the +flesh +of the +Son +- +of Man +and +shall have drunk +of Him +the +blood +not +you have +life +in +yourselves +The [one] +eating +of Me +the +flesh +and +drinking +of Me +the +blood +has +life +eternal +and I +will raise up +him +in the +last +day +for +The +flesh +of Me +true +food +is +and +the +blood +of Me +true +drink +is +The [one] +eating +of Me +the +flesh +and +drinking +of Me +the +blood +in +Me +abides +and I +in +him +As +sent +Me +the +living +Father +and I +live +because of +the +Father +also +the [one] +feeding on +Me +he also +will live +because of +Me +This +is +the +bread +- +from +heaven +having come down +not +as +ate +the +fathers +and +died +The [one] +eating +this +- +bread +will live +to +the +age +These things +He said +in +[the] synagogue +teaching +in +Capernaum +therefore +Many +of +the +disciples +of Him +having heard +said +Difficult +is +the +word +this +who +is able +it +to hear +however +- +Jesus +Knowing +in +Himself +that +are grumbling +about +this +the +disciples +of Him +He said +to them +This +you +does offend +then +What if +you should see +the +Son +- +of Man +ascending +where +He was +- +before +The +Spirit +it is +- +giving life +the +flesh +not +profits +nothing +The +words +that +I +speak +to you +spirit +are +and +life +they are +But +they are +of +you +some +who +not +believe +for +Knew +from +[the] beginning +- +Jesus +who +are +those +not +believing +and +who +it is +who +will betray +Him +And +He was saying +Because of +this +have I said +to you +that +no one +is able +to come +to +Me +if +not +it shall +have been granted +to him +from +the +Father +From +that [time] +many +the +disciples +of Him +departed +to +the +back +and +no longer +with +Him +walked +therefore +Said +- +Jesus +to the +Twelve +Not +also +you +are wishing +to go away +Answered +Him +Simon +Peter +Lord +to +whom +will we go +[The] words +of life +eternal +You have +and +we +have believed +and +have known +that +You +are +the +Holy One +- +of God +Answered +them +- +Jesus +Not +I +you +the +Twelve +did choose +and +of +you +one +a devil +is +now +He was speaking +- +of Judas +[son] of Simon +Iscariot +for +he +was about +to betray +Him +one +of +the +Twelve +And +after +these things +was walking +- +Jesus +in +- +Galilee +for +not +He did desire +in +- +Judea +to walk +because +were seeking +Him +to kill +the +Jews +now +Was +near +the +feast +of the +Jews +of +Booths +therefore +Said +to +Him +the +brothers +of Him +Depart +from here +and +go +into +- +Judea +so that +also +the +disciples +of You +will see +the +works +of You +that +You are doing +for +No one +anything +in +secret +does +and +seeks +himself +in +public +to be +If +these things +You do +show +Yourself +to the +world +for +Not even +the +brothers +of Him +were believing +in +Him +therefore +Says +to them +- +Jesus +The +time +- +of Me +not yet +is come +but +- +the time +- +of you +always +is +ready +Not +is able +the +world +to hate +you +however +Me +it hates +because +I +bear witness +concerning +it +that +the +works +of it +evil +are +You +go up +to +the +feast +I +not +am going up +to +the +feast +this +for +- +My +time +not yet +has been fulfilled +now +These things +having said +to them +He remained +in +- +Galilee +however +When +had gone up +the +brothers +of Him +to +the +feast +then +also +He +went up +not +openly +but +as +in +secret +therefore +The +Jews +were seeking +Him +at +the +feast +and +were saying +Where +is +He +And +murmuring +about +Him +there was +much +among +the +crowds +indeed +Some +were saying +- +Good +He is +however +Others +were saying +No +but +He deceives +the +people +however +No one +publicly +was speaking +about +Him +because of +the +fear +of the +Jews +also +Now +of the +feast +being in the middle +went up +Jesus +into +the +temple +and +was teaching +then +Were marveling +the +Jews +saying +How +this one +writings +knows +not +having studied +therefore +Answered +them +Jesus +and +said +- +My +teaching +not +is +of Myself +but +of the [One] +having sent +Me +If +anyone +desires +the +will +of Him +to do +he will know +concerning +the +teaching +whether +from +- +God +it is +or +I +from +Myself +speak +The [one] +from +himself +speaking +the +glory +the +own +seeks +however +the [One] +seeking +the +glory +of the [One] +having sent +Him +He +true +is +and +unrighteousness +in +Him +not +is +Not +Moses +has given +to you +the +law +and +no one +of +you +keeps +the +law +Why +Me +to kill +do you seek +Answered +the +crowd +A demon +You have +who +You +to kill +seeks +Answered +Jesus +and +said +to them +One +work +I did +and +all +you marvel +Because of +the fact that +Moses +has given +you +- +circumcision +that +not +of +- +Moses +it is +but +of +the +fathers +also +on +Sabbath +you circumcise +a man +If +circumcision +receives +a man +on +Sabbath +so that +not +might be broken +the +law +of Moses +with Me +are you angry +because +entirely +a man +sound +I made +on +the Sabbath +Not +judge +according to +appearance +but +the +righteous +judgment +judge +therefore +Were saying +some +of +those +of Jerusalem +Not +this +is he +whom +to kill +they seek +And +behold +publicly +He speaks +and +nothing +to Him +they say +not +ever +Truly +have recognized +the +rulers +that +this +is +the +Christ +But +this [man] +we know +from where +He is +however +The +Christ +whenever +He may come +no one +knows +from where +He is +therefore +Cried out +in +the +temple +teaching +- +Jesus +and +saying +Me +you know +and +you know +from where +I am +and +of +Myself +not +I have come +but +is +true +the [One] +having sent +Me +whom +you +not +know +But I +know +Him +because +from +Him +I am +and He +Me +sent +therefore +They were seeking +Him +to take +but +no one +laid +upon +Him +the +hand +because +not yet +had come +the +hour +of Him +now +Out of +the +crowd +many +believed +in +Him +and +were saying +The +Christ +When +He comes +not +more +signs +will He do +than +this [man] +has done +Heard +the +Pharisees +the +crowd +murmuring +about +Him +these things +and +sent +the +chief priests +and +the +Pharisees +officers +that +they might seize +Him +therefore +Said +- +Jesus +Yet +time +a little +with +you +I am +and +I go +to +the [One] +having sent +Me +You will seek +Me +and +not +will find +and +where +am +I +to come +you +not +are able +therefore +Said +the +Jews +among +themselves +Where +to go +He +is about +that +we +not +will find +Him +Not +is He about +to +the +Dispersion +among the +Greeks +to go +and +to teach +the +Greeks +What +is +the +word +this +that +He said +You will seek +Me +and +not +will find +and +Where +am +I +to come +you +not +are able +now +In +the +last +day +the +great [day] +of the +feast +stood +- +Jesus +and +cried out +saying +If +anyone +thirsts +let him come +to +Me +and +drink +The [one] +believing +in +Me +as +has said +the +Scripture +Rivers +of water +living +out of +the +belly +of him +will flow +now +This +He said +concerning +the +Spirit +whom +to receive +were about +those +having believed +in +Him +for +not yet [given] +was +[the] Spirit +because +Jesus +not yet +was glorified +therefore +[Some] of +the +crowd +having heard +the +words +these +were saying +This +is +truly +the +Prophet +Others +were saying +This +is +the +Christ +however +Others +were saying +indeed +Not +out of +- +Galilee +the +Christ +comes +Not +the +Scripture +has said +that +out of +the +seed +of David +and +from +Bethlehem +the +village +where +was +David +comes +the +Christ +therefore +A division +occurred +in +the +crowd +because of +Him +now +Some +of +them +desired +to seize +Him +but +no one +laid +on +Him +the +hands +therefore +Came +the +officers +to +the +chief priests +and +Pharisees +and +said +to them +that +Because of +why +not +did you bring +Him +Answered +the +officers +Never +spoke +like this +a man +as +this +- +man +speaks +therefore +Answered +them +the +Pharisees +Not +also +you +have been deceived +Not +any +of +the +rulers +has believed +on +Him +or +of +the +Pharisees +But +the +crowd +this +- +not +knowing +the +law +accursed +are +Says +to +them +Nicodemus +the [one] +having come +to +Him +former +being +one +of +them +Not +the +law +of us +does judge +the +man +if +not +it has heard +first +from +him +and +known +what +he does +They answered +and +said +to him +Not +also +you +from +- +Galilee +are +Search +and +see +that +out of +- +Galilee +a prophet +not +is raised +And +went +each +to +the +home +of him +however +Jesus +went +to +the +Mount +- +of Olives +then +Early in the morning +again +He came +into +the +temple +and +all +the +people +were coming +to +Him +And +having sat down +He was teaching +them +now +Bring +the +scribes +and +the +Pharisees +to +Him +a woman +in +adultery +having been caught +and +having set +her +in +[the] midst +they say +to Him +Teacher +this +- +woman +was caught +in the very act +committing adultery +now +In +the +law +Moses +us +commanded +- +such +to be stoned +therefore +You +what +say You +now +This +they were saying +testing +Him +so that +they might have [grounds] +to accuse +Him +But +- +Jesus +down +having stooped +with +[His] finger +began writing +on +the +ground +however +As +they continued +asking +Him +having lifted Himself up +also +He said +to them +The [one] +sinless +among you +the first +- +stone +at +her +let him cast +And +again +down +having stooped +He continued to write +on +the +ground +And +- +having heard +and +by +[their] +conscience +being convicted +they began to go away +one +by +having begun +from +the +elder ones +until +the +last +and +He was left +alone +- +Jesus +and +the +woman +in +[the] midst +being +then +- +Jesus +Having lifted up +and +no one +saw +but +the +woman +said +to her +- +Woman +where +are +they +who +accuse +you +No one +you +has condemned +And +- +she said +No one +Sir +then +Said +to her +- +Jesus +Neither +I +you +do condemn +go +and +no more +sin +therefore +Again +to them +spoke +- +Jesus +saying +I +am +the +light +of the +world +the [one] +following +Me +no +not +shall walk +in +the +darkness +but +will have +the +light +- +of life +therefore +Said +to Him +the +Pharisees +You +concerning +Yourself +are bearing witness +the +testimony +of You +not +is +true +Answered +Jesus +and +said +to them +Even if +I +am bearing witness +concerning +Myself +true +is +the +testimony +of Me +because +I know +from where +I came +and +where +I am going +however +You +not +know +from where +I come +or +where +I am going +You +according to +the +flesh +judge +I +not +am judging +no one +however +if +And +judge +I +- +judgment +- +My +true +is +because +alone +not +I am +but +I +and +the +having sent +Me +also +And +in +the +law +- +of you +it has been written +that +of two +men +the +testimony +true +is +I +am +the [One] +bearing witness +concerning +Myself +and +bears witness +concerning +Me +the +having sent +Me +Father +therefore +They were saying +to Him +Where +is +the +Father +of You +Answered +Jesus +Neither +Me +you know +nor +the +Father +of Me +If +Me +you had known +- +also +the +Father +of Me +you would have known +These +- +words +He spoke +in +the +treasury +teaching +in +the +temple +and +no one +seized +Him +for +not yet +had come +the +hour +of Him +then +He said +again +to them +I +am going away +and +you will seek +Me +and +in +the +sin +of you +you will die +where +I +go +to come +you +not +are able +therefore +Were saying +the +Jews +Not +will He kill +Himself +that +He says +Where +I +go +to come +you +not +are able +And +He was saying +to them +You +from +- +below +are +I +from +- +above +am +You +of +this +the +world +are +I +not +am +of +the +world +this +therefore +I said +to you +that +you will die +in +the +sins +of you +for +if +not +you believe +that +I +am [He] +you will die +in +the +sins +of you +therefore +They were saying +to Him +You +who +are +Said +to them +- +Jesus +what +- +From the +beginning +also +I am saying +to you +I have +Many things +concerning +you +to say +and +to judge +but +the [One] +having sent +Me +true +is +what +and I +I have heard +from +Him +these things +I say +to +the +world +Not +they understood +that +[about] the +Father +to them +He was speaking +therefore +Said +- +Jesus +When +you shall have lifted up +the +Son +- +of Man +then +you will know +that +I +am [He] +and +from +Myself +I do +nothing +but +as +taught +Me +the +Father +these things +I speak +And +the [One] +having sent +Me +with +Me +is +not +He has left +Me +alone +because +I +the things +pleasing +to Him +do +always +These things +of His +speaking +many +believed +in +Him +therefore +Was saying +- +Jesus +to +the +having believed +in Him +Jews +If +you +abide +in +the +word +- +My +truly +disciples +of Me +you are +And +you will know +the +truth +and +the +truth +will set free +you +They answered +unto +Him +Seed +of Abraham +we are +and +to no one +have we been under bondage +ever +How +You +say +- +Free +you will become +Answered +them +- +Jesus +Truly +truly +I say +to you +that +everyone +- +practicing +the +sin +is +a slave +of the +sin +Now +- +the slave +not +abides +in +the +house +to +the +age +the +son +abides +to +the +age +therefore +If +the +Son +you +shall set free +indeed +free +you will be +I know +that +seed +of Abraham +you are +but +you seek +Me +to kill +because +the +word +- +of Me +not +receives a place +in +you +That which +I +have seen +with +the +Father +I speak +therefore +also +you +what +you have heard +from +the +father +you do +They answered +and +said +to Him +The +father +of us +Abraham +is +Says +to them +- +Jesus +If +children +- +of Abraham +you were +the +works +- +of Abraham +you would do +however +now +you seek +to kill +Me +a man +who +the +truth +to you +has spoken +that +I heard +from +- +God +This +Abraham +not +did +You +are doing +the +works +of the +father +of you +They said +to Him +We +of +sexual immorality +not +have been born +one +Father +- +God +we have +Said +to them +- +Jesus +If +- +God +Father +of you +were +- +you would have loved +Me +for +I +from +- +God +came forth +and +am here +for +not even +of +Myself +have I come +but +He +Me +sent +Because of +why +the +speech +- +My +not +do you understand +Because +not +you are able +to hear +the +word +- +My +You +of +the +father +the +devil +are +and +the +desires +of +father +of you +to do +you desire +He +a murderer +was +from +[the] beginning +and +in +the +truth +not +has stood +because +not +there is +truth +in +him +Whenever +he might speak +- +falsehood +from +the +own +he speaks +for +a liar +he is +and +the +father +of it +now +I +because +the +truth +speak +not +you do believe +Me +Which +of +you +convicts +me +concerning +sin +If +[the] truth +I speak +because of +why +you +not +do believe +Me +He who +is +of +- +God +the +words +- +of God +hears +because of +this +you +not +hear +because +of +- +God +not +you are +Answered +the +Jews +and +said +to Him +Not +rightly +say +we +that +a Samaritan +are +You +and +a demon +have +Answered +Jesus +I +a demon +not +have +but +I honor +the +Father +of Me +and +you +dishonor +Me +now +I +not +seek +the +glory +of Me +there is +One +seeking [it] +and +judging +Truly +truly +I say +to you +if +anyone +- +My +word +keeps +death +never +not +shall he see +to +the +age +Said +to Him +the +Jews +Now +we know +that +a demon +You have +Abraham +died +and +the +prophets +and +You +say +If +anyone +the +word +of Me +keeps +never +not +shall he taste +of death +to +the +age +Not +You +greater than +are +the +father +of us +Abraham +who +died +And +the +prophets +died +Whom +yourself +make You +Answered +Jesus +If +I +glorify +Myself +the +glory +of Me +nothing +is +it is +the +Father +of Me +- +glorifying +Me +[of] whom +you +say +- +God +of us +He is +And +not +you have known +Him +however +I +know +Him +And if +I say +that +not +I know +Him +I will be +like +you +a liar +But +I know +Him +and +the +word +of Him +I keep +Abraham +the +father +of you +rejoiced +in that +he should see +- +day +- +My +and +he saw +and +rejoiced +therefore +Said +the +Jews +to +Him +Fifty +years [old] +not yet +are You +and +Abraham +You have seen +Said +to them +Jesus +Truly +truly +I say +to you +before +Abraham +was +I +am +therefore +They took up +stones +that +they might cast +at +Him +however +Jesus +hid Himself +and +went forth +out of +the +temple +And +passing by +He saw +a man +blind +from +birth +And +asked +Him +the +disciples +of Him +saying +Rabbi +who +sinned +this [man] +or +the +parents +of him +that +blind +he should be born +Answered +Jesus +Neither +this [man] +sinned +nor +the +parents +of him +but +[it was] that +should be displayed +the +works +- +of God +in +him +it behooves +Us +to work +the +works +of the [One] +having sent +Me +while +day +it is +is coming +night +when +no one +is able +to work +While +in +the +world +I shall be +I am +[the] light +of the +world +These things +having said +He spat +on [the] ground +and +made +clay +of +the +spittle +and +applied +to him +the +clay +to +the +eyes +And +He said +to him +Go +wash +in +the +pool +- +of Siloam +which +means +Sent +therefore +He went +and +washed +and +came [back] +seeing +therefore +The +neighbors +and +those +having seen +him +- +before +that +a beggar +he was +were saying +Not +this +is +he who +was sitting +and +begging +Some +were saying +- +He +it is +but others +were saying +No +but +like +him +he is +He +kept saying +- +I +am [he] +therefore +They were saying +to him +then +How +were opened +of you +the +eyes +Answered +He +The +man +- +called +Jesus +clay +made +and +anointed +of me +the +eyes +and +He said +to me +- +Go +to +- +Siloam +and +wash +therefore +Having gone +and +having washed +I received sight +And +they said +to him +Where +is +He +He says +Not +I know +They bring +him +who +once [was] +blind +to +the +Pharisees +now +Was +Sabbath +in +which +day +the +clay +had made +- +Jesus +and +opened +of him +the +eyes +therefore +Again +were asking +him +also +the +Pharisees +how +he had received sight +And +- +he said +to them +Clay +He put +on +of me +the +eyes +and +I washed +and +I see +therefore +Were saying +of +the +Pharisees +some +Not +is +from +God +this +the +man +for +the +Sabbath +not +He does keep +Others +were saying +How +is able +a man +sinful +such +signs +to do +And +division +there was +among +them +therefore +They say +to the +blind [man] +again +What +you +say +concerning +Him +for +He opened +of you +the +eyes +And +- +he said +- +A prophet +He is +then +Not +did believe +the +Jews +concerning +him +that +he had been +blind +and +had received sight +until +when +they called +the +parents +of him +- +having received sight +And +they asked +them +saying +This +is +the +son +of you +of whom +you +say +that +blind +he was born +then +How +does he see +presently +therefore +Answered +the +parents +of him +and +said +We know +that +this +is +the +son +of us +and +that +blind +he was born +however +How +presently +he sees +not +we know +or +who +opened +of him +the +eyes +we +not +know +him +ask +age +has +He +Concerning +himself +he will speak +These things +said +the +parents +of Him +because +they were afraid +of the +Jews +for +already +had agreed together +the +Jews +that +if +anyone +Him +should confess +Christ +expelled from the synagogue +he would be +Because of +this +the +parents +of him +said +- +Age +he has +him +ask +therefore +They called +the +man +out +a second time +who +had been +blind +and +said +to him +Give +glory +- +to God +We +know +that +this +- +man +a sinner +is +then +Answered +he +Whether +a sinner +He is +not +I know +One [thing] +I do know +that +blind +being +now +I see +therefore +They said +to him +What +did He +to you +How +opened He +of you +the +eyes +He answered +them +I told +you +already +and +not +you did listen +Why +again +do you wish +to hear +Not +also +you +do wish +His +disciples +to become +And +they railed at +him +and +said +You +a disciple +of that One +are +however +we +- +of Moses +disciples +are +We +know +that +to Moses +has spoken +- +God +however +this [man] +not +we know +from where +is +Answered +the +man +and +said +to them +for +In +this +- +an amazing thing +is +that +you +not +know +from where +He is +and yet +He opened +my +- +eyes +We know +that +- +God +sinners +not +does hear +but +if +anyone +God-fearing +is +and +the +will +of Him +does +him +He hears +Out of +the +age +never +it has been heard +that +opened +anyone +[the] eyes +of [one] blind +having been born +If +not +were +this [man] +from +God +not +He could +do +nothing +They answered +and +said +to him +In +sins +you +were born +entirely +and +you +teach +us +And +they cast +him +out +Heard +Jesus +that +they had cast +him +out +and +having found +him +He said +You +believe +in +the +Son +of +Man +Answered +he +and +said +And +who +is He +Lord +that +I may believe +in +Him +Said +to him +- +Jesus +Both +You have seen +Him +and +the [One] +speaking +with +you +He +is +And +- +he was saying +I believe +Lord +And +he worshiped +Him +And +said +- +Jesus +For +judgment +I +into +the +world +this +came +that +those +not +seeing +may see +and +those +seeing +blind +may become +Heard +these things +of +the +Pharisees +who +with +Him +were +and +they said +to Him +Not +also +we +blind +are +Said +to them +- +Jesus +If +blind +you were +- +not +you would have +sin +however +since +you say +- +We see +the +sin +of you +remains +Truly +truly +I say +to you +the [one] +not +entering in +by +the +door +to +the +fold +of the +sheep +but +climbing up +another way +he +a thief +is +and +a robber +however +The [one] +entering in +by +the +door +is +shepherd +of the +sheep +To him +the +doorkeeper +opens +and +the +sheep +the +voice +of him +hear +and +the +own +sheep +he calls +by +name +and +leads out +them +When +the +own +all +he has brought out +before +them +he goes +and +the +sheep +him +follow +because +they know +the +voice +of him +however +A stranger +in no way +not +they will follow +but +will flee +from +him +because +not +they recognize +- +of strangers +the +voice +This +- +allegory +spoke +to them +- +Jesus +however +they +not +knew +what +it was +that +He was saying +to them +therefore +Said +again +- +Jesus +Truly +truly +I say +to you +- +I +am +the +door +of the +sheep +All +who ever +came +before +Me +thieves +are +and +robbers +but +not +did hear +them +the +sheep +I +am +the +door +if +by +Me +anyone +enters in +he will be saved +and +he will go in +and +will go out +and +pasture +will find +The +thief +not +comes +if +not +that +he might steal +and +might kill +and +might destroy +I +came +that +life +they may have +and +abundantly +may have [it] +I +am +the +shepherd +- +good +The +shepherd +- +good +the +life +of Him +lays down +for +the +sheep +the +hired servant +however +not +being +[the] shepherd +whose +not +are +the +sheep +own +sees +the +wolf +coming +and +leaves +the +sheep +and +flees +and +the +wolf +snatches +them +and +scatters +because +a hired servant +he is +and +not +is himself concerned +to him +about +the +sheep +I +am +the +shepherd +- +good +and +I know +- +My own +and +am known +I +by +Mine +As +knows +Me +the +Father +I also +know +the +Father +and +the +life +of Me +I lay down +for +the +sheep +And +other +sheep +I have +which +not +are +of +the +fold +this +those also +Me +to bring +it behooves +and +the +voice +of Me +they will hear +and +there will be +one +flock +with one +shepherd +Because of +this +Me +the +Father +loves +because +I +lay down +the +life +of Me +that +again +I might take +it +No one +takes +it +from +Me +but +I +lay down +it +of +Myself +Authority +I have +to lay down +it +and +authority +I have +again +to take +it +This +- +commandment +I received +from +the +Father +of Me +Division +again +there was +among +the +Jews +on account of +the +words +these +now +Were saying +many +of +them +A demon +He has +and +is insane +why +Him +do you listen to +Others +were saying +These +- +sayings +not +are [those] +of one possessed by a demon +Not +a demon +is able +of [the] blind +[the] eyes +to open +Took place +at the time +the +Feast of Dedication +at +- +Jerusalem +Winter +it was +and +was walking +- +Jesus +in +the +temple +in +the +porch +- +of Solomon +therefore +Encircled +Him +the +Jews +and +they were saying +to Him +Until +when +the +soul +of us +hold You in suspense +If +You +are +the +Christ +tell +us +plainly +Answered +them +- +Jesus +I told +you +and +not +you believe +The +works +that +I +do +in +the +name +of the +Father +of Me +these +bear witness +concerning +Me +But +you +not +believe +because +not +you are +from among +the +sheep +- +of Me +The +sheep +- +of Me +the +voice +of Me +hear +and I +know +them +and +they follow +Me +and I +give +them +life +eternal +and +never +not +shall they perish +to +the +age +and +never +will seize +anyone +them +out of +the +hand +of Me +The +Father +of Me +who +has given [them] +to Me +than all +greater +is +and +no one +is able +to seize [them] +out of +the +hand +the +Father +I +and +the +Father +one +are +Took up +again +stones +the +Jews +that +they might stone +Him +Answered +them +- +Jesus +Many +works +good +I have shown +you +from +the +Father +because of +which +of these +work +Me +do you stone +Answered +Him +the +Jews +For +a good +work +not +we do stone +You +but +for +blasphemy +and +because +You +a man +being +make +yourself +God +Answered +them +- +Jesus +Not +is it +written +in +the +law +of you +- +I +said +gods +you are +If +them +he called +gods +to +whom +the +word +- +of God +came +and +not +is able +to be broken +the +Scripture +[of Him] whom +the +Father +sanctified +and +sent +into +the +world +you +do say +- +You blaspheme +because +I said +Son +- +of God +I am +If +not +I do +the +works +of the +Father +of Me +not +believe +Me +however +If +I do +even if +Me +not +you believe +the +works +believe +so that +you may know +and +may understand +that +in +Me [is] +the +Father +and I +in +the +Father +therefore +They were seeking +Him +to seize +again +but +He went forth +out of +the +hand +of them +And +He departed +again +beyond +the +Jordan +to +the +place +where +was +baptizing +John +- +at first +And +He stayed +there +And +many +came +to +Him +and +were saying +- +indeed +John +sign +no +did +however +everything +that +said +John +about +this [man] +true +was +And +many +believed +in +Him +there +now +Was +a certain [man] +ailing +Lazarus +of +Bethany +of +the +village +of Mary +and +Martha +the +sister +of her +now +Was +Mary +the [one] +having anointed +the +Lord +with fragrant oil +and +having wiped +the +feet +of Him +with the +hair +of her +whose +- +brother +Lazarus +was sick +therefore +Sent +the +sisters +to +Him +saying +Lord +behold +[he] whom +You love +is sick +then +Having heard +- +Jesus +said +This +- +sickness +not +is +unto +death +but +for +the +glory +- +of God +that +may be glorified +the +Son +- +of God +by +it +now +Loved +- +Jesus +- +Martha +and +the +sister +of her +and +- +Lazarus +therefore +When +He heard +that +he is sick +indeed +then +He remained +in +which +He was +[the] place +two +days +Then +after +this +He says +to the +disciples +Let us go +into +- +Judea +again +Say +to Him +the +disciples +Rabbi +just now +were seeking +You +to stone +the +Jews +and +again +You are going +there +Answered +Jesus +Not +twelve +hours +are there +in the +day +If +anyone +walks +in +the +day +not +he stumbles +because +the +light +the +world +of this +he sees +however +if +anyone +walks +in +the +night +he stumbles +because +the +light +not +is +in +him +These things +He said +and +after +this +He says +to them +Lazarus +the +friend +of us +has fallen asleep +but +I go +that +I may awaken +him +therefore +Said +the +disciples +of Him +Lord +if +he has fallen asleep +he will get well +however +Had spoken +- +Jesus +of +the +death +of him +however +they +thought +that +of +the +rest +- +of sleep +He speaks +therefore +Then +said +to them +- +Jesus +plainly +Lazarus +has died +And +I rejoice +for sake of +you +in order that +you might believe +that +not +I was +there +But +let us go +to +him +therefore +Said +Thomas +- +called +Didymus +to the +fellow disciples +Let go +also +us +that +we may die +with +Him +therefore +Having come +- +Jesus +found +him +four +days +already +having been +in +the +tomb +now +Was +Bethany +near +- +Jerusalem +about +away +stadia +fifteen +now +Many +of +the +Jews +had come +unto +- +Martha +and +Mary +that +they might console +them +concerning +the +brother +Therefore +when +she heard +that +Jesus +is coming +- +Martha +met +Him +however +Mary +in +the +house +was sitting +then +Said +- +Martha +to +Jesus +Lord +if +You had been +here +- +not +would have died +the +brother +of me +even +now +I know +that +- +whatever +You might ask +- +God +will give +You +- +God +Says +to her +- +Jesus +Will rise again +the +brother +of you +Says +to him +- +Martha +I know +that +he will rise again +in +the +resurrection +in +the +last +day +Said +to her +- +Jesus +I +am +the +resurrection +and +the +life +the [one] +believing +in +Me +even if +he should die +he will live +and +everyone +- +living +and +believing +in +Me +never +not +shall die +to +the +age +Believe you +this +She says +to Him +Yes +Lord +I +have believed +that +You +are +the +Christ +the +Son +- +of God +the [One] +into +the +world +coming +And +these things +having said +she went away +and +called +Mary +the +sister +of her +secretly +having said +The +Teacher +is come +and +He calls +you +then +She +when +she heard +rose up +quickly +and +was coming +to +Him +now +Not yet +had come +- +Jesus +into +the +village +but +was +still +in +the +place +where +had met +Him +- +Martha +then +The +Jews +- +being +with +her +in +the +house +and +consoling +her +having seen +- +Mary +that +quickly +she rose up +and +went out +followed +her +having supposed +- +she is going +to +the +tomb +that +she might weep +there +Therefore +- +Mary +when +she came +to where +was +Jesus +having seen +Him +fell +at +of Him +the +feet +saying +to Him +Lord +if +You had been +here +- +not +would have died +of me +the +brother +therefore +Jesus +when +He saw +her +weeping +and +the +having come with +her +Jews +weeping +He was deeply moved +- +in spirit +and +troubled +Himself +And +He said +Where +have you laid +him +They say +to Him +Lord +come +and +see +Wept +- +Jesus +therefore +Were saying +the +Jews +Behold +how +He loved +him +however +Some +of +them +said +Not +was able +this [man] +- +having opened +the +eyes +of the +blind +to have caused +that +also +this one +not +should have died +therefore +Jesus +again +being deeply moved +in +Himself +comes +to +the +tomb +now +It was +a cave +and +a stone +was lying +against +it +Says +- +Jesus +Take away +the +stone +Says +to Him +the +sister +of the [one] +having died +Martha +Lord +already +he stinks +for +four days +it is +Says +to her +- +Jesus +Not +said I +to you +that +if +you should believe +you will see +the +glory +- +of God +therefore +They took away +the +stone +Now +- +Jesus +lifted +His +eyes +upwards +and +said +Father +I thank +You +that +You have heard +Me +and +I +knew +that +always +Me +You hear +but +on account of +the +crowd +- +standing around +I said [it] +that +they may believe +that +You +Me +sent +And +these things +having said +in a voice +loud +He cried out +Lazarus +come +forth +Came forth +the [one] +having been dead +being bound +the +feet +and +the +hands +with linen strips +and +the +face +of him +in a headcloth +bound about +Says +to them +- +Jesus +Unbind +him +and +allow +him +to go +therefore +Many +of +the +Jews +- +having come +to +- +Mary +and +having seen +what +He did +believed +in +Him +however +some +of +them +went +to +the +Pharisees +and +told +them +what +had done +Jesus +therefore +Gathered +the +chief priests +and +the +Pharisees +a council +and +they were saying +What +are we to do +For +this +- +man +many +signs +does +If +we shall let him alone +Him +like this +all +will believe +in +Him +and +will come +the +Romans +and +will take away +of us +both +the +place +and +the +nation +however +One +certain +of +them +Caiaphas +high priest +being +the +year +same +said +to them +You +not +know +nothing +nor +consider you +that +it is profitable +for you +that +one +man +should die +for +the +people +and +not +all +the +nation +should perish +now +This +from +himself +not +he said +but +high priest +being +the +year +that +he prophesied +that +was about +Jesus +to die +for +the +nation +and +not +for +the +nation +only +but +that +also +the +children +- +of God +those +having been scattered +He might gather together +into +one +therefore +From +that +- +day +they took counsel together +that +they might kill +Him +Therefore +- +Jesus +no longer +publicly +walked +among +the +Jews +but +went away +from there +into +the +region +near +the +wilderness +to +Ephraim +called +a city +And there +He stayed +with +the +disciples +now +Was +near +the +Passover +of the +Jews +and +went up +many +to +Jerusalem +out of +the +region +before +the +Passover +so that +they might purify +themselves +therefore +They were seeking +- +Jesus +and +were saying +among +one another +in +the +temple +standing +What +does it seem +to you +that +no +not +He will come +to +the +feast +now +Had given +the +chief priests +and +the +Pharisees +a command +that +if +anyone +should know +where +He is +he should show [it] +so that +they might seize +Him +Therefore +- +Jesus +before +six +days +the +Passover +came +to +Bethany +where +was +Lazarus +whom +had raised +out from +[the] dead +Jesus +therefore +They made +Him +a supper +there +and +- +Martha +was serving +and +- +Lazarus +was +one +of +those +reclining +with +Him +Therefore +- +Mary +having taken +a litra +of fragrant oil +of nard +pure +of great price +anointed +the +feet +- +of Jesus +and +wiped +with the +hair +of her +the +feet +of Him +now +the +house +was filled +with +the +fragrance +of the +oil +however +Says +Judas +- +Iscariot +one +the +disciples +of Him +- +being about +Him +to betray +Because of +why +this +- +fragrant oil +not +was sold +for three hundred +denarii +and +given +to [the] poor +however +He said +this +not +because +for +the +poor +he was caring +to him +but +because +a thief +he was +and +the +money bag +having +that +being put into [it] +he used to pilfer +therefore +Said +- +Jesus +Leave alone +her +so that +for +the +day +of the +burial +of Me +she may keep +it +for +the +poor +always +you have +with +you +however +Me +not +always +you have +therefore +Knew +- +a crowd +great +of +the +Jews +that +there +He is +and +they came +not +because of +- +Jesus +only +but +that +also +they might see +- +Lazarus +whom +He had raised +out from +[the] dead +however +Took counsel +the +chief priests +that +also +- +Lazarus +they might kill +because +many +of the +Jews +on account of +him +were going away +and +were believing +in +- +Jesus +On the +next day +the +crowd +great +- +having come +to +the +feast +having heard +that +is coming +Jesus +into +Jerusalem +took +the +branches +of the +palm trees +and +went out +to +meet +Him +and +were shouting +Hosanna +Blessed is +the [One] +coming +in +[the] name +of [the] Lord +And +the +King +- +of Israel +then +Having found +a young donkey +- +Jesus +He sat +upon +it +as +it is +written +Not +fear +daughter +of Zion +Behold +the +King +of you +comes +sitting +on +a colt +of a donkey +These things +not +knew +of Him +the +disciples +from the +first +but +when +was glorified +Jesus +then +they remembered +that +these things +were +written +of +Him +and +these things +they had done +to Him +therefore +Continued to bear witness +the +crowd +- +being +with +Him +when +- +Lazarus +He called +out of +the +tomb +and +raised +him +out from +[the] dead +On account of +this +also +met +Him +the +crowd +because +they heard +this +of His +having done +the +sign +Therefore +- +the Pharisees +said +among +themselves +You see +that +not +you gain +nothing +Behold +the +world +after +Him +has gone +now +There were +Greeks +certain +among +those +coming up +that +they might worship +at +the +feast +therefore +these +came +to Philip +who was +from +Bethsaida +- +of Galilee +and +they were asking +him +saying +Sir +we desire +- +Jesus +to see +Comes +- +Philip +and +tells +- +Andrew +come +Andrew +and +Philip +and +tell +- +Jesus +And +- +Jesus +answered +them +saying +Has come +the +hour +that +should be glorified +the +Son +- +of Man +Truly +truly +I say +to you +if +not +the +grain +- +of wheat +having fallen +into +the +ground +should die +it +alone +abides +however +if +it should die +much +fruit +it bears +The [one] +loving +the +life +of him +loses +it +and +the [one] +hating +the +life +of him +in +the +world +this +to +life +eternal +will keep +it +If +Me +anyone +serves +Me +let him follow +and +where +am +I +there +also +the +servant +- +of Me +will be +If +anyone +Me +serves +will honor +him +the +Father +Now +the +soul +of Me +has been troubled +and +what +shall I say +Father +save +Me +from +the +hour +this +But +on account of +this +I came +to +the +hour +this +Father +glorify +of You +the +name +therefore +Came +a voice +from +- +heaven +Both +I have glorified [it] +and +again +I will glorify [it] +Therefore +- +the crowd +- +having stood +and +having heard +was saying +Thunder +there has been +Others +were saying +An angel +to Him +has spoken +Answered +Jesus +and +said +Not +because of +Me +the +voice +this +has come +but +because of +you +Now +is +[the] judgment +the +world +of this +now +the +prince +of the +world +this +will be cast +out +if +And I +I am lifted up +from +the +earth +all +will draw +to +Myself +now +This +He was saying +signifying +by what +death +He was about +to die +then +Answered +Him +the +crowd +We +have heard +from +the +law +that +the +Christ +abides +to +the +age +and +how +say +you +that +it behooves +to be lifted up +the +Son +- +of Man +Who +is +this +- +Son +- +of Man +therefore +Said +to them +- +Jesus +Yet +a little +while +the +light +with +you +is +Walk +while +the +light +you have +so that +not +darkness +you +might overtake +And +the [one] +walking +in +the +darkness +not +knows +where +he is going +While +the +light +you have +believe +in +the +light +so that +sons +of light +you may become +These things +spoke +Jesus +and +having gone away +He was hidden +from +them +however +of Him +So many +signs +having been done +before +them +not +they believed +in +Him +so that +the +word +of Isaiah +the +prophet +might be fulfilled +that +said +Lord +who +has believed +the +report +of us +And +the +arm +of [the] Lord +to whom +has been revealed +Because of +this +not +they were able +to believe +for +again +said +Isaiah +He has blinded +of them +the +eyes +and +has hardened +of them +the +heart +that +not +they should see +with the +eyes +and +understand +with the +heart +and +turn +and +I will heal +them +These things +said +Isaiah +because +he saw +the +glory +of Him +and +spoke +concerning +Him +indeed +Nevertheless +even +of +the +rulers +many +believed +in +Him +but +on account of +the +Pharisees +not +they were confessing +so that +not +put out of the synagogue +they might be +for +they loved +the +glory +- +of men +more +than +the +glory +- +of God +then +Jesus +cried out +and +said +The [one] +believing +in +Me +not +believes +in +Me +but +in +the [One] +having sent +Me +and +the [one] +beholding +Me +beholds +the [One] +having sent +Me +I +a light +into +the +world +have come +so that +everyone +- +believing +in +Me +in +the +darkness +not +should abide +And +if +anyone +hears +of Me +the +words +and +not +keeps [them] +I +not +do judge +him +for +not +I came +that +I might judge +the +world +but +that +I might save +the +world +The [one] +rejecting +Me +and +not +receiving +the +words +of Me +has +[one] +judging +him +The +word +which +I spoke +that +will judge +him +in +the +last +day +For +I +from +Myself +not +spoke +but +the +having sent +Me +Father +Himself +Me +a commandment +gave +what +I should say +and +what +I should speak +And +I know +that +the +commandment +of Him +life +eternal +is +therefore +What +I +speak +as +has said +to Me +the +Father +so +I speak +now +Before +the +feast +of the +Passover +- +Jesus +knowing +that +had come +His +- +hour +that +He would depart +out of +the +world +this +to +the +Father +having loved +the +own +who [were] +in +the +world +to +[the] end +He loved +them +And +supper +taking place +the +devil +already +having put +into +the +heart +that +he should betray +Him +of Judas +[son] of Simon +Iscariot +knowing +that +all things +has given +Him +the +Father +into +the +hands +and +that +from +God +He came forth +and +to +- +God +He is going +He rises +from +the +supper +and +lays aside +the +garments +And +having taken +a towel +He girded +Himself +After that +He pours +water +into +the +basin +and +He began +to wash +the +feet +of the +disciples +and +to wipe [them] +with the +towel +with which +He was +girded +then +He comes +to +Simon +Peter +who says +to Him +Lord +You +do wash +of me +the +feet +Answered +Jesus +and +said +to him +What +I +do +you +not +know +presently +however +you will know +after +these things +Says +to Him +Peter +No +not +shall You wash +of me +the +feet +to +the +age +Answered +Jesus +him +If +not +I wash +you +not +you have +part +with +Me +Says +to Him +Simon +Peter +Lord +not +the +feet +of me +only +but +also +the +hands +and +the +head +Says +to him +Jesus +The [one] +having been bathed +not +has +need +if +not +the +feet +to wash +but +is +clean +wholly +and +you all +clean +are +but +not +all +for +He knew +the [one who] +was betraying +Him +on account of +this +He said +- +Not +all +clean +you are +therefore +When +He had washed +the +feet +of them +and +taken +the +garments +of Him +and +having reclined +again +He said +to them +Do you know +what +I have done +to you +You +call +Me +- +Teacher +and +- +Lord +and +rightly +you say +for +I am +therefore +If +I +the +Lord +and +the +Teacher +have washed +your +- +feet +also +you +ought +to wash +of one another +the +feet +for +A pattern +I gave +you +that +as +I +did +to you +also +you +should do +Truly +truly +I say +to you +not +is +a servant +greater than +the +master +of him +nor +a messenger +greater than +the [one] +having sent +him +If +these things +you know +blessed +are you +if +you do +them +Not +about +all +of you +I speak +I +know +whom +I chose +but +that +the +Scripture +may be fulfilled +The [one] +eating +of Me +the +bread +lifted up +against +Me +the +heel +of him +From +this time +I am telling +you +before +- +it comes to pass +so that +you should believe +when +it comes to pass +that +I +am [He] +Truly +truly +I say +to you +the [one] +receiving +- +any +I shall send +Me +receives +now +the [one] +Me +receiving +receives +the [One] +having sent +Me +These things +having said +Jesus +was troubled +- +in spirit +and +He testified +and +said +Truly +truly +I say +to you +that +one +of +you +will betray +Me +Began to look +upon +one another +the +disciples +being uncertain +of +whom +He is speaking +There was +reclining +one +of +the +disciples +of Him +in +the +bosom +- +of Jesus +whom +loved +- +Jesus +therefore +Motions +to him +Simon +Peter +and +he tells +him +to ask +who +is +about +whom +He is speaking +he +Having leaned +thus +on +the +breast +- +of Jesus +he says +to Him +Lord +who +is it +then +Answers +- +Jesus +it is +He +to whom +I +will dip +the +morsel +and +will give +him +then +Having dipped +the +morsel +He takes [it] +and +gives [it] +to Judas +[son] of Simon +Iscariot +And +after +the +morsel +then +entered +into +him +- +Satan +therefore +Says +to him +Jesus +What +you do +do +quickly +now +knew +no one +of those +reclining +This +to +what +He spoke +to him +for +Some +were thinking +since +the +money bag +had +Judas +that +is saying +to him +Jesus +Buy +what things +need [of] +we have +for +the +feast +or +that +to the +poor +something +he should give +therefore +Having received +the +morsel +he +went out +immediately +now +it was +night +therefore +When +he had gone out +says +Jesus +Now +has been glorified +the +Son +- +of Man +and +- +God +has been glorified +in +Him +If +- +God +is glorified +in +Him +also +- +God +will glorify +Him +in +Himself +and +immediately +will glorify +Him +Little children +yet +a little while +with +you +I am +You will seek +Me +and +as +I said +to the +Jews +- +Where +I +go +to come +you +not +are able +also +to you +I say +now +A commandment +new +I give +to you +that +you should love +one another +as +I have loved +you +so +also +you +should love +one another +By +this +will know +all +that +to Me +disciples +you are +if +love +you have +among +one another +Says +to Him +Simon +Peter +Lord +where +go You +Answered +Jesus +Where +I go +Me +now +to follow +not +you are able +however +you will follow +afterward +Says +to Him +Peter +Lord +because of +why +not +am I able +You +to follow +presently +The +life +of me +for +You +I will lay down +Answered +Jesus +The +life +of you +for +Me +will you lay down +Truly +truly +I say +to you +no +not +[the] rooster +will crow +until +that +you will deny +Me +three times +Not +let be troubled +of you +the +heart +You believe +in +- +God +also +in +Me +believe +In +the +house +of the +Father +of Me +mansions +many +there are +now +if +not +- +would I have told +you +that +I go +to prepare +a place +for you +And +if +I go +and +prepare +a place +for you +again +I am coming +and +will receive +you +to +Myself +that +where +am +I +also +you +may be +And +to the place +I +am going +you know +the +way +Says +to Him +Thomas +Lord +not +we know +where +You are going +how +can we +the +way +Says +to him +Jesus +I +am +the +way +and +the +truth +and +the +life +No one +comes +to +the +Father +if +not +by +Me +If +you had known +Me +- +also +the +Father +of Me +you would have known +from +now +you know +Him +and +have seen +Says +to Him +Philip +Lord +show +us +the +Father +and +it is enough +for us +Says +to him +- +Jesus +So long +a time +with +you +am I +and +not +you have known +Me +Philip +The [one] +having seen +Me +has seen +the +Father +how +you +say +Show +us +the +Father +Not +believe you +that +I [am] +in +the +Father +and +the +Father +in +Me +is +The +words +that +I +speak +to you +from +Myself +not +I speak +but +- +the Father +in +Me +dwelling +does +the +works +of Him +Believe +Me +that +I [am] +in +the +Father +and +the +Father +in +Me +but +if +not +because of +the +works +themselves +believe +Truly +truly +I say +to you +the [one] +believing +in +Me +the +works +that +I +do +also he +will do +and +greater +than these +he will do +because +I +to +the +Father +am going +And +what +ever +- +you might ask +in +the +name +of Me +this +will I do +so that +may be glorified +the +Father +in +the +Son +If +anything +you ask +Me +in +the +name +of Me +I +will do [it] +If +you love +Me +- +commandments +- +My +you will keep +And I +will ask +the +Father +and +another +Helper +He will give +you +that +He may be +with +you +to +the +age +the +Spirit +- +of truth +whom +to receive +the +world +not +is able +because +not +it does see +Him +nor +know +But you +know +Him +for +with +you +He abides +and +in +you +He will be +Not +I will leave +you +as orphans +I am coming +to +you +and +Yet +a little while +the +world +Me +no more +sees +however +you +see +Me +because +I +live +also +you +will live +In +that +- +day +will know +you +that +I [am] +in +the +Father +of Me +and +you +in +Me +and I +in +you +The [one] +having +the +commandments +of Me +and +keeping +them +he +is +the [one] +loving +Me +now +the [one] +loving +Me +will be loved +by +the +Father +of Me +and I +will love +him +and +will show +to him +Myself +Says +to Him +Judas +not +- +Iscariot +Lord +then +what +has occurred +that +You are about +to us +to manifest +Yourself +and +not +to the +world +Answered +Jesus +and +said +to him +If +anyone +loves +Me +the +word +of Me +he will keep +and +the +Father +of Me +will love +him +and +to +him +we will come +and +a home +with +him +will make +The [one] +not +loving +Me +the +words +of Me +not +does keep +and +the +word +that +you hear +not +is +Mine +but +of the +having sent +Me +Father +These things +I have said +to you +with +you +abiding +however +The +Helper +the +Spirit +- +Holy +whom +will send +the +Father +in +the +name +of Me +He +you +will teach +all things +and +will bring to remembrance +of you +all things +that +have said +to you +I +Peace +I leave +with you +peace +- +My +I give +to you +not +as +the +world +gives +I +give +to you +Not +let be troubled +of you +the +heart +nor +let it fear +You heard +that +I +said +to you +I am going away +and +I am coming +to +you +If +you loved +Me +- +you would have rejoiced +that +I am going +to +the +Father +because +the +Father +greater than +I +is +And +now +I have told +you +before +it comes to pass +that +when +it shall have come to pass +you might believe +No longer +much +I will speak +with +you +for +comes +the +of this +world +ruler +and +in +Me +not +he has +nothing +but +that +may know +the +world +that +I love +the +Father +and +as +has commanded +Me +the +Father +thus +I do +Rise up +let us go +from here +I +am +the +vine +- +true +and +the +Father +of Me +the +vinedresser +is +Every +branch +in +Me +not +bearing +fruit +He takes away +it +and +every one +- +fruit +bearing +He prunes +it +that +fruit +more +it may bear +Already +you +clean +are +by reason of +the +word +that +I have spoken +to you +Abide +in +Me +and I +in +you +As +the +branch +not +is able +fruit +to bear +of +itself +if +not +it abide +in +the +vine +so +neither [can] +you +if +not +in +Me +you abide +I +am +the +vine +you [are] +the +branches +The [one] +abiding +in +Me +and I +in +him +he +bears +fruit +much +For +apart from +Me +not +you are able +to do +nothing +If +not +anyone +abide +in +Me +he is thrown +out +like +the +branch +and +is dried up +and +they gather +them +and +into +the +fire +cast +and +it is burned +If +you abide +in +Me +and +the +words +of Me +in +you +abide +if +whatever +you wish +you shall ask +and +it will come to pass +to you +In +this +is glorified +the +Father +of Me +that +fruit +much +you should bear +and +you shall be +to Me +disciples +As +has loved +Me +the +Father +I also +you +have loved +Abide +in +the +love +- +of Me +If +the +commandments +of Me +you keep +you will abide +in +the +love +of Me +as +I +the +Father +of Me +the +commandments +have kept +and +I abide +in +of Him +the +love +These things +I have spoken +to you +that +- +joy +- +My +in +you +may be +and +the +joy +of you +may be full +This +is +- +commandment +- +My +that +you love +one another +as +I loved +you +Greater +than this +love +no one +has +that +one +the +life +of him +should lay down +for +the +friends +of him +You +friends +of Me +are +if +you do +what +I +command +you +No longer +I call +you +servants +for +the +servant +not +knows +what +is doing +his +- +master +however +You +I have called +friends +because +all things +that +I heard +from +the +Father +of Me +I have made known +to you +Not +you +Me +chose +but +I +chose +you +and +appointed +you +that +you +should go +and +fruit +you should bear +and +the +fruit +of you +should remain +so that +what +ever +- +you might ask +the +Father +in +the +name +of Me +He may give +you +These things +I command +you +that +you love +one another +If +the +world +you +hates +you know +that +Me +before +you +it has hated +If +of +the +world +you were +- +the +world +[as] its +own +would love [you] +however +because +of +the +world +not +you are +but +I +chose +you +out of +the +world +on account of +this +hates +you +the +world +Remember +the +word +that +I +said +to you +Not +is +a servant +greater than +the +master +of him +If +Me +they persecuted +also +you +they will persecute +if +the +word +of Me +they kept +also +- +yours +they will keep +But +these things +all +they will do +against +you +on account of +the +name +of Me +because +not +they have known +the [One] +having sent +Me +If +not +I had come +and +spoken +to them +sin +not +they would have had +however +now +excuse +not +they have +for +the +sin +of them +The [one] +Me +hating +also +the +Father +of Me +hates +If +the +works +not +I had done +among +them +that +no +other +has done +sin +not +they would have had +however +now +both +they have seen +and +have hated +both +Me +and +the +Father +of Me +But [this is] +that +may be fulfilled +the +word +- +in +the +law +of them +having been written +- +They hated +Me +without cause +When +comes +the +Helper +whom +I +will send +to you +from +the +Father +the +Spirit +- +of truth +who +from +the +Father +goes forth +He +will bear witness +concerning +Me +now +Also +you +bear witness +because +from +[the] beginning +with +Me +you are +These things +I have spoken +to you +that +not +you might fall away +Out of the synagogues +they will put +you +but +is coming +an hour +that +everyone +- +having killed +you +will think +[it is] a service +to offer +- +to God +And +these things +they will do +because +not +they know +the +Father +nor +Me +But +these things +I have said +to you +so that +when +might have come +the +hour +of them +you may remember +them +that +I +said [them] +to you +now +These things +to you +from +[the] beginning +not +I said +because +with +you +I was +however +Now +I go +to +the [One] +having sent +Me +and +none +of +you +asks +Me +Where +are You going +But +because +these things +I have said +to you +- +sorrow +has filled +your +- +heart +But +I +the +truth +say +to you +it is profitable +for you +that +I +should go away +for +If +not +I go away +the +Helper +no +not at all +will come +to +you +however +if +I go +I will send +Him +to +you +And +having come +He +will convict +the +world +concerning +sin +and +concerning +righteousness +and +concerning +judgment +indeed +concerning +sin +because +not +do they believe +in +Me +now +concerning +righteousness +because +to +the +Father +I go away +and +no more +you behold +Me +now +concerning +judgment +because +the +ruler +of the +world +this +has been judged +Yet +I have +many things +to you +to say +but +not +you are able +to bear them +now +however +When +shall come +He +the +Spirit +- +of truth +He will guide +you +into +the +truth +all +for +not +He will speak +from +Himself +but +whatever +He may hear +He will speak +and +the things +coming +He will declare +to you +He +Me +will glorify +for +from +that which [is] +Mine +He will take +and +will disclose +to you +All things +whatever +has +the +Father +Mine +are +because of +this +I said +that +from +that which [is] +Mine +He will take +and +will disclose +to you +A little [while] +and +no longer +you do behold +Me +and +again +a little [while] +and +you will see +Me +therefore +Said +[some] of +the +disciples +of him +to +one another +What +is +this +that +He says +to us +A little [while] +and +not +you do behold +Me +and +again +a little [while] +and +you will see +Me +and +Because +I am going +to +the +Father +therefore +They were saying +what +is +This +that +He says +a +little [while] +Not +we do know +what +He is saying +Knew +Jesus +that +they were desiring +Him +to ask +and +He said +to them +Concerning +this +do you inquire +among +one another +that +I said +A little [while] +and +not +you do behold +Me +and +again +a little [while] +and +you will see +Me +Truly +truly +I say +to you +that +will weep +and +will lament +you +but +- +the world +will rejoice +You +will be grieved +but +the +grief +of you +to +joy +will turn +when +The +woman +she is giving birth +pain +has +because +has come +the +hour +of her +however +when +she brings forth +the +child +no longer +she remembers +the +tribulation +on account of +the +joy +that +has been born +a man +into +the +world +therefore +indeed +Also +you +now +grief +have +however +again +I will see +you +and +will rejoice +your +- +heart +and +the +joy +of you +no one +will take +from +you +And +in +that +- +day +of Me +not +you will ask +nothing +Truly +truly +I say +to you +- +whatever +you may ask +the +Father +He will give +you +in +the +name +of Me +Until +now +not +you have asked +nothing +in +the +name +of Me +Ask +and +you will receive +that +the +joy +of you +may be +full +These things +in +allegories +I have spoken +to you +is coming +an hour +when +no more +in +allegories +I will speak +to you +but +plainly +concerning +the +Father +I will report +to you +In +that +- +day +in +the +name +of Me +you will ask +and +not +I say +to you +that +I +will implore +the +Father +for +you +for +Himself +the +Father +loves +you +because +you +Me +have loved +and +have believed +that +I +from +- +God +came forth +I came forth +from +the +Father +and +have come +into +the +world +again +I leave +the +world +and +go +to +the +Father +Say +the +disciples +of Him +Behold +now +in +openness +You speak +and +allegory +not +speak +Now +we know +that +You know +all things +and +not +need +have +that +anyone +You +should ask +In +this +we believe +that +from +God +You came forth +Answered +them +Jesus +Now +do you believe +Behold +is coming +an hour +and +has come +when +you will be scattered +each +to +the +own +and I +alone +you shall leave +yet +not +I am +alone +for +the +Father +with +Me +is +These things +I have spoken +to you +so that +in +Me +peace +you may have +In +the +world +tribulation +you have +But +take courage +I +have overcome +the +world +These things +spoke +Jesus +and +having lifted up +the +eyes +of Him +to +- +heaven +He said +Father +has come +the +hour +glorify +Your +- +Son +that +the +Son +may glorify +You +As +You gave +Him +authority +over all +flesh +so that +all +whom +You have given +Him +He may give +to them +life +eternal +now +This +is +- +eternal +life +that +they may know +You +the +only +true +God +and +whom +You have sent +Jesus +Christ +I +You +glorified +on +the +earth +having completed +the +work +that +You have given +Me +that +I should do +And +Father +now +glorify +Me +You +with +Yourself +with the +glory +that +I had +before +- +the +world +existed +with +You +I revealed +Your +- +name +to the +men +whom +You have given +Me +out of +the +world +Yours +they were +and to Me +them +You gave +and +the +word +of You +they have kept +Now +they have known +that +all things +whatever +You have given +Me +of +You +are +for +the +words +that +You have given +Me +I have given +them +and +they +received [them] +and +knew +truly +that +from +You +I came forth +and +they believed +that +You +Me +sent +I +concerning +them +am praying +Not +concerning +the +world +do I pray +but +concerning +those whom +You have given +Me +for +Yours +they are +And +things +of mine +all +Yours +are +and +- +Yours +Mine +and +I have been glorified +in +them +And +no longer +I am +in +the +world +and yet +themselves +in +the +world +they are +and I +to +You +am coming +Father +Holy +keep +them +in +the +name +of You +which +You have given +Me +that +they may be +one +as +we [are] +When +I was +with +them +I +was keeping +them +in +the +name +of You +which +You have given +Me +And +I guarded [them] +and +none +of +them +has perished +if +not +the +son +- +of destruction +that +the +Scripture +might be fulfilled +however +Now +to +You +I am coming +and +these things +I speak +in +the +world +so that +they may have +- +joy +- +My +fulfilled +within +them +I +have given +them +the +word +of You +and +the +world +hated +them +because +not +they are +of +the +world +even as +I +not +am +of +the +world +Not +I do ask +that +You should take +them +out of +the +world +but +that +You should keep +them +from +- +evil +Of +the +world +not +they are +as +I +not +am +of +the +world +Sanctify +them +by +the +truth +the +word +- +of You +truth +is +As +Me +You sent +into +the +world +I also +sent +them +into +the +world +and +for +them +I +sanctify +Myself +that +may be +sanctified +also +they +in +truth +however +Not +for +these +do I ask +only +but +also +for +those +believing +through +the +word +of them +in +Me +that +all +one +may be +as +Father +You +[are] in +Me +and I +in +You +that +also +they +in +Us +may be +that +the +world +may believe +that +You +Me +sent +And I +the +glory +which +You have given +Me +have given +them +so that +they may be +one +as +We +[are] one +I +in +them +and +You +in +Me +that +they may be +perfected +in +unity +so that +may know +the +world +that +You +Me +sent +and +loved +them +even as +Me +You loved +Father +[those] whom +You have given +Me +I desire +that +where +am +I +they also +may be +with +Me +that +they may behold +- +glory +- +My +that +You gave +Me +because +You loved +Me +before +[the] foundation +of [the] world +Father +righteous +although +the +world +You +not +has known +now +I +You +have known +and +these +have known +that +You +Me +sent +And +I made known +to them +the +name +of You +and +will make [it] known +so that +the +love +with which +You loved +Me +in +them +may be +and I +in +them +These things +having said +Jesus +went out +with +the +disciples +of Him +beyond +the +winter stream +- +of Kidron +where +there was +a garden +into +which +entered +He +and +the +disciples +of Him +now +Knew +also +Judas +who +was delivering up +Him +the +place +because +often +gathered together +Jesus +there +with +the +disciples +of Him +Therefore +- +Judas +having procured +the +cohort +and +from +the +chief priests +and +from +the +Pharisees +officers +comes +there +with +lanterns +and +torches +and +weapons +therefore +Jesus +knowing +all things +that +are coming +upon +Him +having gone forth +also +said +to them +Whom +seek you +They answered +Him +Jesus +of +Nazareth +He says +to them +I +am [He] +now +Had been standing +also +Judas +who +is delivering up +Him +with +them +therefore +When +He said +to them +I +am [He] +they drew +toward +the +back +and +fell +to [the] ground +therefore +Again +He questioned +them +Whom +seek you +And +- +they said +Jesus +of +Nazareth +Answered +Jesus +I have told +you +that +I +am [He] +therefore +If +Me +you seek +Allow +these +to go away +so that +might be fulfilled +the +word +that +He had spoken +- +Those whom +You have given +Me +not +I lost +of +them +not one +then +Simon +Peter +having +a sword +drew +it +and +struck +the +of the +high priest +servant +and +cut off +of him +the +ear +- +right +now +Was +name +of the +servant +Malchus +therefore +Said +- +Jesus +- +to Peter +Put +the +sword +into +the +sheath +The +cup +which +has given +Me +the +Father +no +not +shall I drink +it +Then +- +the cohort +and +the +commander +and +the +officers +of the +Jews +took hold of +- +Jesus +and +bound +Him +and +they led [Him] away +to +Annas +first +for +he was +father-in-law +- +of Caiaphas +who +was +high priest +the +year +same +now +Was +Caiaphas +the [one] +having given counsel +to the +Jews +that +it is profitable +for one +man +to perish +for +the +people +now +Were following +- +Jesus +Simon +Peter +and +the other +disciple +now +Since +disciple +that +was +known +to the +high priest +also +he entered with +- +Jesus +into +the +court +of the +high priest +But +- +Peter +stood +at +the +door +outside +therefore +Went out +the +disciple +- +other +who was +known +to the +high priest +and +spoke +to the +doorkeeper +and +brought in +- +Peter +therefore +Says +- +to Peter +the +servant girl +the +doorkeeper +Not +also +you +of +the +disciples +of the +man +this +are +Says +he +Not +I am +now +Were standing +the +servants +and +the +officers +a fire of coals +having made +for +cold +it was +and +they were warming themselves +now +also +- +Peter +with +them +Was +standing +and +warming himself +Then +- +the high priest +questioned +- +Jesus +concerning +the +disciples +of Him +and +concerning +the +teaching +of Him +Answered +him +Jesus +I +openly +have spoken +to the +world +I +always +taught +in +[the] synagogue +and +in +the +temple +where +all +the +Jews +come together +and +in +secret +I spoke +nothing +Why +Me +do you question +Question +those +having heard +what +I spoke +to them +behold +they +know +what +said +I +now +These things +of Him +having said +one +standing by +of the +officers +gave +a blow with the palm +- +to Jesus +having said +Thus +answer You +the +high priest +Answered +him +Jesus +If +evil +I spoke +bear witness +concerning +the +evil +however +if +rightly +why +Me +strike you +then +Sent +Him +- +Annas +bound +to +Caiaphas +the +high priest +now +Simon +Peter +Was +standing +and +warming himself +therefore +They said +to him +Not +also +you +of +the +disciples +of Him +are +Denied +he +and +said +Not +I am +Says +one +of +the +servants +of the +high priest +being [of him] +kinsman +of whom +had cut off +Peter +the +ear +Not +I +saw +you +in +the +garden +with +Him +then +Again +denied +Peter +and +immediately +a rooster +crowed +then +They are leading +- +Jesus +from +- +Caiaphas +into +the +Praetorium +now +It was +early +and +they +not +entered +into +the +Praetorium +so that +not +they should be defiled +but +might eat +the +Passover +therefore +Went +- +Pilate +out +to +them +and +said +What +accusation +the +man +this +bring you +They answered +and +said +to him +If +not +were +doing +He +evil +- +not +to you +we would have delivered +Him +therefore +Said +to them +- +Pilate +Take +Him +yourselves +and +according to +the +law +of you +judge +Him +Said +to him +the +Jews +To us +not +it is permitted +to put to death +no one +that +the +word +- +of Jesus +might be fulfilled +which +He had spoken +signifying +what +death +He was about +to die +therefore +Entered +again +into +the +Praetorium +- +Pilate +and +he called +- +Jesus +and +said +to Him +You +are +the +King +of the +Jews +Answered +Jesus +Of +yourself +you +this +say +or +others +did say [it] +to you +concerning +Me +Answered +- +Pilate +Not +I +a Jew +am +The +nation +- +of You +and +the +chief priests +delivered +You +to me +What +have You done +Answered +Jesus +The +kingdom +- +My +not +is +of +the +world +this +if +of +the +world +this +were +- +kingdom +- +My +- +- +attendants +- +My +would fight +that +not +I might be betrayed +to the +Jews +however +Now +- +kingdom +- +My +not +is +from here +therefore +Said +to Him +- +Pilate +Then +a king +are +You +Answered +- +Jesus +You +say +that +a king +I am +I +for +this +have been born +and +for +this +I have come +into +the +world +that +I may bear witness +to the +truth +Everyone +- +being +of +the +truth +hears +of Me +the +voice +Says +to Him +- +Pilate +What +is +truth +And +this +having said +again +he went out +to +the +Jews +and +says +to them +I +no +find +in +Him +guilt +however +It is +a custom +with you +that +one +I should release +to you +at +the +Passover +therefore +wish you +I should release +to you +the +King +of the +Jews +then +They cried out +again +saying +Not +this one +but +- +Barabbas +now +Was +- +Barabbas +an insurrectionist +therefore +At that time +took +- +Pilate +- +Jesus +and +flogged [Him] +And +the +soldiers +having twisted together +a crown +of +thorns +put [it] on +of Him +the +head +and +a robe +purple +cast around +Him +and +they began coming up +to +Him +and +saying +Hail +- +King +of the +Jews +And +they kept giving +Him +blows with the palm +And +went forth +again +outside +- +Pilate +and +he says +to them +Behold +I bring +to you +Him +out +so that +you may know +that +no +guilt +I find +in +Him +therefore +Went forth +- +Jesus +outside +wearing +the +thorny +crown +and +the +purple +robe +And +he says +to them +Behold +the +man +therefore +When +saw +Him +the +chief priests +and +the +officers +they cried out +saying +Crucify +Crucify +Says +to them +- +Pilate +Take +Him +yourselves +and +crucify [Him] +for +I +no +find +in +Him +guilt +Answered +him +the +Jews +We +a law +have +and +according to +the +law +He ought +to die +because +[the] Son +of God +Himself +He made +therefore +When +heard +- +Pilate +this +- +word +[the] more +he was afraid +And +he went +into +the +Praetorium +again +and +he says +- +to Jesus +From where +are +You +But +- +Jesus +an answer +not +did give +him +therefore +Says +to Him +- +Pilate +not +To me +speak You +Not +know You +that +authority +I have +to release +You +and +authority +I have +to crucify +You +Answered +Jesus +Not +you would have +authority +against +also +Me +if +not +it were +given +to you +from above +Because of +this +the [one] +having delivered up +Me +to you +greater +sin +has +Out of +this +- +Pilate +was seeking +to release +Him +but +- +the Jews +cried out +saying +If +this [man] +you release +not +you are +a friend +- +of Caesar +Everyone +- +a king +himself +making +speaks against +- +Caesar +Therefore +- +Pilate +having heard +the +words +these +brought +out +- +Jesus +and +sat down +upon +[the] judgment seat +at +a place +called +[the] Stone Pavement +now +in Hebrew +Gabbatha +now +It was +the Day of Preparation +of the +Passover +[the] hour +was +about +the sixth +And +he says +to the +Jews +Behold +the +king +of you +therefore +They cried out +With Him +away +away +Crucify +Him +Says +to them +- +Pilate +The +King +of you +shall I crucify +Answered +the +chief priests +Not +we have +a king +if +not +Caesar +therefore +Then +he delivered +Him +to them +that +He might be crucified +therefore +They took +- +Jesus +And +bearing +[His] own +- +cross +He went out +to +the +called +of the Skull +Place +which +is called +in Hebrew +Golgotha +where +Him +they crucified +and +with +Him +others +two +on this side +and +on that side +now +in between +- +Jesus +then +Wrote +also +a title +- +Pilate +and +put [it] +on +the +cross +now +It was +written +Jesus +of +Nazareth +the +King +of the +Jews +therefore +This +the +title +read +many +of the +Jews +for +near +the +city +was +the +place +where +was crucified +- +Jesus +and +it was +written +in Hebrew +in Latin +in Greek +therefore +Were saying +- +to Pilate +the +chief priests +of the +Jews +Not +write +The +King +of the +Jews +but +that +He +said +King +of the +Jews +I am +Answered +- +Pilate +What +I have written +I have written +then +when +The +soldiers +they crucified +- +Jesus +took +the +garments +of Him +and +made +four +parts +to each +soldier +a part +and also +the +tunic +now +Was +the +tunic +seamless +from +the +top +woven +throughout +all +therefore +They said +to +one another +Not +let us tear up +it +but +let us cast lots +for +it +whose +it will be +that +the +Scripture +might be fulfilled +They divided +the +garments +of Me +among them +and +for +the +clothing +of Me +they cast +a lot +therefore +indeed +The +soldiers +these things +did +now +Had been standing +by +the +cross +- +of Jesus +the +mother +of Him +and +the +sister +of the +mother +of Him +Mary +the [wife] +- +of Clopas +and +Mary +- +Magdalene +therefore +Jesus +having seen +[His] +mother +and +the +disciple +standing by +whom +He loved +says +to +[His] mother +Woman +behold +the +son +of you +Then +He says +to the +disciple +Behold +the +mother +of you +And +from +that +- +hour +took +the +disciple +her +to +the +own +After +this +- +Jesus +knowing +that +now +all things +had been accomplished +so that +might be fulfilled +the +Scripture +He says +I thirst +A vessel +of sour wine +full +had been set [there] +therefore +a sponge +filled +with +sour wine +a stalk of hyssop +having put on +they brought +it +to the +mouth +therefore +When +took +the +sour wine +- +Jesus +He said +It has been finished +And +having bowed +the +head +He yielded up +the +spirit +Therefore +- +the Jews +because +[the] Preparation +it was +so that +not +would remain +on +the +cross +the +bodies +on +the +Sabbath +for +was +a high +- +day +that +- +Sabbath +asked +- +Pilate +that +might be broken +their +- +legs +and +they might be taken away +therefore +Came +the +soldiers +and +indeed +broke +the +legs +of the +first +and +of the +other +- +having been crucified with +Him +however +to +- +Jesus +having come +when +they saw +already +Him +having been dead +not +they did break +His +- +legs +But +one +of the +soldiers +with a spear +His +- +side +pierced +and +came out +immediately +blood +and +water +And +the [one] +having seen +has borne witness +and +true +is +of him +the +testimony +And +He +knows +that +truth +he is speaking +that +also +you +might believe +for +Took place +these things +so that +the +Scripture +might be fulfilled +Bone +of Him +not one +will be broken +And +again +another +Scripture +says +They will look +on +the [One] +they have pierced +then +After +these things +asked +- +Pilate +Joseph +from +Arimathea +being +a disciple +- +of Jesus +however +concealed +through +the +fear +of the +Jews +that +he might take away +the +body +- +of Jesus +and +gave permission +- +Pilate +therefore +He came +and +took away +the +body +of Him +now +Came +also +Nicodemus +the [one] +having come +to +Him +by night +at the +first +bearing +a mixture +of myrrh +and +aloes +about +litras +a hundred +therefore +They took +the +body +- +of Jesus +and +bound +it +in linen cloths +with +the +spices +as +[the] custom +is +among the +Jews +to prepare for burial +now +There was +in +the +place +where +He was crucified +a garden +and +in +the +garden +a tomb +new +in +which +not yet +no one +was +laid +therefore +There +on account of +the +Preparation +of the +Jews +because +near +was +the +tomb +they laid +- +Jesus +Now +- +the first [day] +of the +week +Mary +- +Magdalene +comes +early +to +the +tomb +dark +still +it being +and +she sees +the +stone +having been removed +from +the +tomb +therefore +She runs +and +comes +to +Simon +Peter +and +to +the +other +disciple +whom +loved +- +Jesus +and +she says +to them +They have taken away +the +Lord +out of +the +tomb +and +not +we know +where +they have laid +Him +therefore +Went forth +- +Peter +and +the +other +disciple +and +were coming +to +the +tomb +now +Were running +the +two +together +and +the +other +disciple +ran ahead +faster +- +than Peter +and +came +first +to +the +tomb +And +having stooped down +he sees +lying [there] +the +linen cloths +however +not +he entered +then +Comes +also +Simon +Peter +following +him +and +he entered +into +the +tomb +and +sees +the +linen cloths +lying [there] +and +the +soudarion +which +was +upon +the +head +of Him +not +with +the +linen cloths +lying +but +by itself +having been folded up +in +a +place +therefore +Then +entered +also +the +other +disciple +- +having come +first +to +the +tomb +and +he saw +and +believed +for +not yet +understood they +the +Scripture +that +it behooves +Him +out from +[the] dead +to rise +therefore +Went away +again +to +their [homes] +the +disciples +however +Mary +stood +at +the +tomb +outside +weeping +therefore +As +she was weeping +she stooped down +into +the +tomb +and +she sees +two +angels +in +white +sitting +where +had lain +the +body +- +of Jesus +one +at +the +head +and +one +at +the +feet +And +say +to her +they +Woman +why +weep you +She says +to them +Because +they have taken away +the +Lord +of me +and +not +I know +where +they have laid +Him +These things +having said +she turned +back +- +around +and +she sees +- +Jesus +standing [there] +and +not +had known +that +Jesus +it is +Says +to her +Jesus +Woman +why +do you weep +Whom +do you seek +She +thinking +that +the +gardener +He is +says +to Him +Sir +if +you +have carried off +him +tell +me +where +you have laid +Him +and I +him +will take away +Says +to her +Jesus +Mary +Having turned around +she +says +to Him +in Hebrew +Rabboni +that +is to say +Teacher +Says +to her +Jesus +Not +Me +touch +for +not yet +have I ascended +to +the +Father +however +go +to +the +brothers +of Me +and +say +to them +I am ascending +to +the +Father +of Me +and +Father +of you +and [to] +God +of Me +and +God +of you +Comes +Mary +- +Magdalene +bringing word +to the +disciples +- +I have seen +the +Lord +and [that] +these things +He had said +to her +therefore +It being +evening +the +day +same +the +first +of [the] week +and +the +doors +having been shut +where +were +the +disciples +through +the +fear +of the +Jews +came +- +Jesus +and +stood +in +the +midst +and +He says +to them +Peace +to you +And +this +having said +He showed +both +His +hands +and +His +side +to them +then +Rejoiced +the +disciples +having seen +the +Lord +therefore +Said +to them +- +Jesus +again +Peace +to you +as +has sent forth +me +the +Father +I also +send +you +And +this +having said +He breathed on [them] +and +He says +to them +Receive +[the] Spirit +Holy +If +you might forgive +of any +the +sins +they are forgiven +them +If +any +you might retain +they are retained +however +Thomas +one +of +the +Twelve +the [one] +called +Didymus +not +was +with +them +when +came +Jesus +therefore +Were saying +to him +the +other +disciples +We have seen +the +Lord +But +- +he said +to them +If +not +I see +in +the +hands +of Him +the +mark +of the +nails +and +put +the +finger +of me +into +the +mark +of the +nails +and +put +of me +the +hand +into +the +side +of Him +no +not +will I believe +And +after +days +eight +again +were +inside +the +disciples +of Him +and +Thomas +with +them +Comes +- +Jesus +the +doors +having been shut +And +He stood +in +the +midst +and +said +Peace +to you +Then +He says +- +to Thomas +Bring +the +finger +of you +here +and +see +the +hands +of Me +and +bring +the +hand +of you +and +put [it] +into +the +side +of Me +and +not +be +unbelieving +but +believing +Answered +Thomas +and +said +to Him +The +Lord +of Me +and +the +God +of me +Says +to him +- +Jesus +Because +you have seen +Me +you have believed +blessed [are] +those +not +having seen +yet +having believed +therefore +indeed +also +Many +other +signs +did +- +Jesus +in the presence +of the +disciples +which +not +are +written +in +the +book +this +however +these +have been written +that +you may believe +that +Jesus +is +the +Christ +the +Son +- +of God +and +that +believing +life +you may have +in +the +name +of Him +After +these things +revealed +Himself +again +Jesus +to the +disciples +at +the +sea +- +of Tiberias +now +He revealed [Himself] +in this way +They were +together +Simon +Peter +and +Thomas +- +called +Didymus +and +Nathanael +- +from +Cana +- +of Galilee +and +the [sons] +- +of Zebedee +and +others +of +the +disciples +His +two +Says +to them +Simon +Peter +I am going +to fish +They say +to him +Come +also +we +with +you +They went forth +and +went up +into +the +boat +and +during +that +- +night +they caught +nothing +now +Morning +already +having come +stood +Jesus +on +the +shore +however +not +knew +the +disciples +that +Jesus +it is +therefore +Says +to them +Jesus +Children +not +any +fish +have you +They answered +Him +No +And +- +He said +to them +Cast +to +the +right +side +of the +boat +the +net +and +you will find [some] +therefore +They cast +and +not +it +to haul in +were they able +from +the +multitude +of the +fish +therefore +Says +the +disciple +that +whom +loved +- +Jesus +- +to Peter +The +Lord +it is +therefore +Simon +Peter +having heard +that +the +Lord +it is +the +outer garment +put on +for +he was +naked +and +he cast +himself +into +the +sea +And +- +the other +disciples +in the +boat +came +for +not +were they +far +from +the +land +but +about +away +cubits +two hundred +dragging +the +net +with the +fish +therefore +When +they got out +onto +the +land +they see +a fire of coals +lying +and +fish +lying on [it] +and +bread +Says +to them +- +Jesus +Bring +[some] of +the +fish +that +you have caught +now +Went up +Simon +Peter +and +drew +the +net +to +the +land +full +of fish +large +a hundred +fifty +three +although +so many +there are +not +was torn +the +net +Says +to them +- +Jesus +Come +have breakfast +None +of the +disciples +dared +to ask +Him +You +who +are +knowing +that +the +Lord +it is +Comes +Jesus +and +takes +the +bread +and +gives [it] +to them +and +the +fish +likewise +This [is] +now +the third time +was revealed +Jesus +to the +disciples +having been raised +out from +[the] dead +therefore +When +they had dined +says +- +to Simon +Peter +- +Jesus +Simon +[son] of John +love you +Me +more +than these +He says +to Him +Yes +Lord +You +know +that +I dearly love +You +He says +to him +Feed +the +lambs +of Me +He says +to him +again +a second time +Simon +[son] of John +love you +Me +He says +to Him +Yes +Lord +You +know +that +I dearly love +You +He says +to him +Shepherd +the +sheep +of Me +He says +to him +the +third time +Simon +[son] of John +do you dearly love +Me +Was grieved +- +Peter +because +He said +to him +the +third time +Do you dearly love +Me +And +he said +to Him +Lord +all things +You +know +You +know +that +I dearly love +You +Says +to him +Jesus +Feed +the +sheep +of Me +Truly +truly +I say +to you +When +you were +younger +you dressed +yourself +and +walked +where +you desired +however +when +you shall be old +you will stretch forth +the +hands +of you +and +another +will dress +you +and +will bring [you] +where +not +you do desire +now +This +He said +signifying +by what +death +he will glorify +- +God +And +this +having said +He says +to him +Follow +Me +Having turned +- +Peter +sees +the +disciple +whom +loved +- +Jesus +following +who +also +had reclined +at +the +supper +on +the +bosom +of Him +and +said +Lord +who +is it +who +is betraying +You +therefore +Him +having seen +- +Peter +says +- +to Jesus +Lord +and +this man +what about +Says +to him +- +Jesus +If +him +to remain +I desire +until +I come +what [is it] +to +you +You +Me +follow +therefore +Went out +this +- +saying +among +the +brothers +that +the +disciple +that +not +dies +however +Not +said +to him +- +Jesus +that +not +he dies +but +If +him +to remain +I desire +until +I come +what [is it] +to +you +This +is +the +disciple +- +bearing witness +concerning +these things +and +the [one] +having written +these things +and +we know +that +true +of him +the +testimony +is +now +There are +also +other things +many +that +did +- +Jesus +if +which +they should be written +every +one +I suppose +not even +itself +the +world +to have space +for the +to be written +books +O +Theophilus +indeed +The +first +account +I composed +concerning +all the things +which +both +to do +and +to teach +began +- +Jesus +until +the +day +having given orders +to the +apostles +whom +He had chosen +by +[the] Spirit +Holy +He was taken up +to whom +also +He presented +Himself +alive +after +the +suffering +of Him +with +many +proofs +during +days +forty +being seen +by them +and +speaking +the things +concerning +the +kingdom +- +of God +And +being assembled together +He instructed +them +from +Jerusalem +not +to depart +but +to await +the +promise +of the +Father +That which +you heard +of Me +for +indeed +John +baptized +with water +however +you +with +[the] Spirit +Holy +will be baptized +not +after +many +these +days +indeed +therefore +Those +having come together +were asking +Him +saying +Lord +if +at +the +time +this +are you restoring +the +kingdom +- +to Israel +He said +to +them +Not +yours +it is +to know +times +or +seasons +which +the +Father +put in place +by +- +His own +authority +But +you will receive +power +having come +the +Holy +Spirit +upon +you +and +you will be +for Me +witnesses +both +in +Jerusalem +and +in +all +- +Judea +and +Samaria +and +to +[the] uttermost part +of the +earth +And +these things +having said +beholding +they +He was taken up +and +a cloud +hid +Him +from +the +eyes +of them +And +as +looking intently +they were +into +the +heaven +as was going +He +then +behold +men +two +stood by +them +in +apparel +white +who +also +said +Men +Galileans +why +do you stand +looking +into +- +heaven +This +- +Jesus +- +having been taken up +from +you +into +- +heaven +thus +will come +in that +manner +you beheld +Him +going +into +- +heaven +Then +they returned +to +Jerusalem +from +[the] mount +- +called +Olivet +which +is +near +Jerusalem +a Sabbath day’s +journey +holding +And +when +they had entered +into +the +upper room +they went up +where +they were +staying +both +- +Peter +and +John +and +James +and +Andrew +Philip +and +Thomas +Bartholomew +and +Matthew +James [son] +of Alphaeus +and +Simon +the +Zealot +and +Judas [son] +of James +These +all +were +steadfastly continuing +with one accord +- +in prayer +with [the] +women +and +Mary +the +mother +- +of Jesus +and +with +the +brothers +of Him +And +in +the +days +these +having stood up +in +[the] midst +of the +brothers +Peter +he said +then +was +[the] number +of names +together +the +same +about +a hundred +twenty +Men +brothers +it was necessary for +to have been fulfilled +the +Scripture +which +spoke beforehand +the +Spirit +- +Holy +by +[the] mouth +of David +concerning +Judas +the [one] +having become +guide +to those +having arrested +Jesus +for +numbered +he was +with +us +and +was allotted +- +a share +of the +ministry +this +indeed +then +This [man] +acquired +a field +out of +[the] reward +- +of unrighteousness +and +headlong +having fallen +he burst open +in [the] middle +and +gushed out +all +the +intestines +of him +And +known +it became +to all +those +dwelling +in Jerusalem +so that +was called +the +field +that +in the +own +language +of them +Akeldama +that +is +Field +of Blood +for +It has been written +in [the] +book +of Psalms +Let become +the +homestead +of him +desolate +and +not +let there be +[one person] +dwelling +in +it +and +The +position +of him +let take +another +therefore +It behooves +the +men +having accompanied +us +during +all +[the] time +that +came in +and +went out +among +us +the +Lord +Jesus +having begun +from +the +baptism +of John +until +the +day +in which +He was taken up +from +us +a witness +of the +resurrection +of Him +with +us +to become +one +of these +And +they put forward +two +Joseph +- +called +Barsabbas +who +was called +Justus +and +Matthias +And +having prayed +they said +Lord +knower of the hearts +of all +You +show +which +You have chosen +of +these +- +two +one +to take +the +place +of the +ministry +this +and +apostleship +from +which +turned aside +Judas +to go +to +the +place +- +own +And +they gave +lots +for them +and +fell +the +lot +on +Matthias +and +he was numbered +with +the +eleven +apostles +And +during +the +arriving of +the +day +- +of Pentecost +they were +all +together +in +the +one [place] +And +came +suddenly +out of +- +heaven +a sound +like +[the] rushing +of a wind +violent +and +it filled +all +the +house +where +they were +sitting +And +there appeared +to them +dividing +tongues +as +of fire +and +sat +upon +one +each +of them +And +they were filled with +all +Spirit +Holy +and +began +to speak +in other +tongues +as +the +Spirit +was giving +to utter forth +to them +now +Were +dwelling +in +Jerusalem +Jews +men +devout +from +every +nation +of those +under +- +heaven +now +Having come about +the +sound +of this +came together +the +multitude +and +was confounded +because +was hearing +one +each +the +own +language +speaking +them +then +They were amazed +and +were marveling +saying +behold +Not +all +these +who +are speaking +are +Galileans +And +how +we +hear +each +the +own +language +of us +in +which +we were born +Parthians +and +Medes +and +Elamites +and +those +inhabiting +- +Mesopotamia +also +Judea +and +Cappadocia +Pontus +and +- +Asia +both +Phrygia +and +Pamphylia +Egypt +and +the +parts +- +of Libya +that +[are] around +Cyrene +and +those +visiting [here] +from Rome +both +Jews +and +converts +Cretans +and +Arabs +we hear +speaking +them +- +[in] our own +tongues +the +great things +- +of God +then +Were amazed +all +and +were perplexed +other +to +other +saying +wishes +this +What +to be +however +Others +mocking +were saying +- +Of new wine +full +they are +however +Having stood up +with +the +eleven +- +Peter +he lifted up +the +voice +of him +and +spoke forth +to them +Men +of Judea +and +those +inhabiting +Jerusalem +all +this +to you +known +let be +and +give heed to +the +words +of me +for +Not +as +you +suppose +these +are drunkards +for +it is +[the] hour +third +of the +day +but +this +is +that +having been spoken +by +the +prophet +Joel +And +it will be +in +the +last +days +says +- +God +I will pour out +of +the +Spirit +of Me +upon +all +flesh +and +will prophesy +the +sons +of you +and +the +daughters +of you +and +the +young men +of you +visions +will see +and +the +elders +of you +dreams +will dream +and even +upon +the +servants +of Me +and +upon +the +handmaidens +of Me +in +the +days +those +I will pour out +of +the +Spirit +of Me +and +they will prophesy +and +I will show +wonders +in +- +heaven +above +and +signs +on +the +earth +below +blood +and +fire +and +vapor +of smoke +The +sun +will be turned +into +darkness +and +the +moon +into +blood +before +coming +day +of [the] Lord +- +great +and +glorious +And +it shall be +everyone +if +who +they shall call upon +the +name +of [the] Lord +will be saved +Men +Israelites +hear +the +words +these +Jesus +of +Nazareth +a man +having been set forth +by +- +God +to +you +by miracles +and +wonders +and +signs +which +did +by +Him +- +God +in +the midst +of you +as +you yourselves +know +Him +by the +determinate +plan +and +foreknowledge +- +of God +delivered up +by +hands +lawless +having crucified +You put to death +whom +- +God +raised up +having loosed +the +agony +of +death +inasmuch as +not +it was +possible +[for] to be held +Him +by +it +for +David +says +about +Him +I foresaw +the +Lord +before +me +continually +everything +because +at [the] +right hand +of me +He is +that +not +I should be shaken +Because of +this +was glad +of me +the +heart +and +rejoiced +the +tongue +of me +now +and +also +the +flesh +of me +will dwell +in +hope +for +not +You will abandon +the +soul +of me +into +Hades +nor +will You allow +the +Holy One +of You +to see +decay +You have made known +to me +[the] paths +of life +You will fill +me +with joy +in +the +presence +of You +Men +brothers +it is permitted [me] +to speak +with +freedom +to +you +concerning +the +patriarch +David +that +both +he died +and +was buried +and +the +tomb +of him +is +among +us +unto +the +day +this +therefore +A prophet +being +and +knowing +that +with an oath +swore +to him +- +God +out of [the] +fruit +of the +loins +of him +to set +upon +the +throne +of him +Having foreseen +he spoke +concerning +the +resurrection +of the +Christ +that +neither +was He abandoned +into +Hades +nor +the +flesh +of Him +saw +decay +This +- +Jesus +has raised up +- +God +whereof +all +we +are +witnesses +therefore +To the +right hand +- +of God +having been exalted +and +- +the promise +of the +Spirit +- +Holy +having received +from +the +Father +He has poured out +this +which +you +both +are seeing +and +hearing +for +Not +David +ascended +into +the +heavens +however +he says +himself +Said +Lord +to +[the] Lord +of me +Sit +at +[the] right hand +of Me +until +- +I place +the +enemies +of You +a footstool +of the +feet +of You +therefore +Assuredly +let know +all +[the] house +of Israel +that +both +Lord +and +Christ +has made +- +God +Him +this +- +Jesus +whom +you +crucified +then +Having heard +they were pierced +to the +heart +then +they said +to +- +Peter +and +the +other +apostles +What +shall we do +men +brothers +then +Peter +to +them +Repent +and +be baptized +every one +of you +in +the +name +of Jesus +Christ +for the +forgiveness +of the +sins +of you +and +you will receive +the +gift +of the +Holy +Spirit +for +To you +is +the +promise +and +to the +children +of you +and +to all +those +at +a distance +- +as many as +shall call to Himself +[the] Lord +the +God +of us +and +Other +words +many +he earnestly testified +and +was exhorting +them +saying +Be saved +from +the +generation +- +perverse +this +indeed +therefore +Those +having received +the +word +of him +were baptized +and +were added +on +the +day +that +souls +about +three thousand +now +They were +steadfastly continuing +in the +teaching +of the +apostles +and +- +in fellowship +the +breaking +of the +bread +and +the +prayers +then +There was coming +upon every +soul +awe +and both +many +wonders +and +signs +through +the +apostles +were taking place +now +All +- +having believed +together +the +same +having +all things +in common +and +the +possessions +and +the +goods +they were selling +and +were dividing +them +to all +as +- +anyone +need +had +and +Every +day +steadfastly continuing +with one accord +in +the +temple +then +breaking +at each +house +bread +they were partaking +of food +with +gladness +and +sincerity +of heart +praising +- +God +and +having +favor +with +all +the +people +And +- +the Lord +kept adding +those who +were being saved +every +day +to +their +number +now +Peter +and +John +were going up +into +the +temple +at +the +hour +- +of prayer +the +ninth +And +a certain +man +lame +from +womb +of mother +of him +being +was being carried +whom +they placed +every +day +at +the +gate +of the +temple +- +called +Beautiful +- +to ask for +alms +from +those who +were going +into +the +temple +who +having seen +Peter +and +John +being about +to enter +into +the +temple +was asking +alms +to receive +now +Peter +Having looked intently +upon +him +with +- +John +he said +Look +unto +us +And +- +he began to give heed +to them +expecting +something +from +them +to receive +however +Said +Peter +Silver +and +gold +none +there is +to me +however +what +I have +this +to you +I give +In +the +name +of Jesus +Christ +of +Nazareth +walk +And +having taken +him +by the +right +hand +he raised up +him +then +immediately +were strengthened +the +feet +of him +and +the +ankles +And +leaping up +he stood +and +began walking +and +he entered +with +them +into +the +temple +walking +and +leaping +and +praising +- +God +And +saw +all +the +people +him +walking +and +praising +- +God +then +They recognized +him +that +he +was +the [one] +for +the +alms +sitting +at +the +Beautiful +Gate +of the +temple +and +they were filled +with wonder +and +amazement +at +that +having happened +to him +now +Is clinging +he +to +Peter +and +- +John +ran together +all +the +people +to +them +in +the +porch +- +called +Solomon’s +greatly amazed +however +Having seen [it] +- +Peter +answered +to +the +people +Men +Israelites +why +wonder you +at +this +Or +on us +why +you look intently +as if +by [our] own +power +or +godliness +[we] have made +- +to walk +him +The +God +of Abraham +and +of Isaac +and +Jacob +the +God +of the +fathers +of us +has glorified +the +servant +of Him +Jesus +indeed +whom +you +betrayed +and +disowned +in +[the] presence +of Pilate +having adjudged +that one +to release [Him] +however +You +the +Holy +and +Righteous One +denied +and +requested +a man +a murderer +to be granted +to you +and +- +the Author +- +of life +you killed +whom +- +God +has raised up +out from +[the] dead +whereof +we +witnesses +are +And +on +the +faith +in the +name +of Him +this [man] +whom +you see +and +know +has strengthened +the +name +of Him +and +the +faith +which [is] +through +Him +has given +to him +the +complete soundness +this +before +all +of you +And +brothers +now +I know +that +in +ignorance +you acted +as +also +the +rulers +of you +But +- +God +what +He foretold +by +[the] mouth +of all +the +prophets +[that] should suffer +the +Christ +of Him +He has fulfilled +thus +therefore +Repent +and +turn again +for +the +blotting out +of your +- +sins +so that +- +may come +times +of refreshing +from +[the] presence +of the +Lord +and +[that] He may send +the [One] +having been appointed +to you +Christ +Jesus +it behooves +indeed +whom +heaven +to receive +until +[the] times +of restoration +of all things +of which +spoke +- +God +by +[the] mouth +of +holy +from +[the] age +His +prophets +indeed +Moses +said +- +A prophet +to you +will raise up +[the] Lord +the +God +out from +the +brothers +of you +like +me +Him +You will listen to +in +all things +- +as many as +He might say +to +you +now +It will be [that] +every +soul +if +who +not +might heed +the +prophet +that +will be utterly destroyed +out from +the +people +now +And +all +the +prophets +from +Samuel +and +those +subsequently +as many as +have spoken +also +have announced +the +days +these +You +are +the +sons +of the +prophets +and +of the +covenant +that +- +God +made +with +the +fathers +of you +saying +to +Abraham +And +in +the +seed +of you +will be blessed +all +the +families +of the +earth +To you +first +- +God +having raised up +the +servant +of Him +sent +Him +blessing +you +in +- +turning away +each +from +the +wickednesses +of you +now +Speaking +of them +to +the +people +came +upon them +the +priests +and +the +captain +of the +temple +and +the +Sadducees +being distressed +because of +- +teaching +their +the +people +and +proclaiming +in +- +Jesus +the +resurrection +- +out from +[the] dead +and +they laid +on them +the +hands +and +put [them] +in +custody +until +the +next day +for +it was +evening +already +however +Many +of those +having heard +the +word +believed +and +became +number +of the +men +about +thousand +five +then +It came to pass +on +the +next day +were gathered together +their +- +rulers +and +- +elders +and +- +scribes +in +Jerusalem +and +Annas +the +high priest +and +Caiaphas +and +John +and +Alexander +and +as many as +were +of +descent +high-priestly +And +having placed +them +in +the +midst +they began to inquire +In +what +power +or +in +what +name +did +this +you +Then +Peter +having been filled +with [the] Spirit +Holy +said +to +them +Rulers +of the +people +and +elders +if +we +this day +are being examined +as to +a good work +[to the] man +ailing +by +what [means] +he +has been healed +known +let it be +to all +you +and +to all +the +people +of Israel +that +in +the +name +of Jesus +Christ +of +Nazareth +whom +you +crucified +whom +- +God +raised +out from +[the] dead +in +Him +this [man] +stands +before +you +sound +This +is +the +stone +- +having been rejected +by +you +the +builders +which +has become +into +head +of [the] corner +And +not +there is +in +other +no one +the +salvation +for +not +is there +under +- +heaven +name +another +- +having been given +among +men +by +which +it behooves +to be saved +us +now +Seeing +the +- +of Peter +and +of John +boldness +and +having understood +that +men +unschooled +they are +and +ordinary +they were astonished +then +They recognized +them +that +with +- +Jesus +they had been +And +beholding +- +the man +- +having been healed +with +them +standing +nothing +to contradict +they had +however +Having commanded +them +outside +the +Council +to go +they began to confer +with +one another +saying +What +shall we do +to the +men +these +for +truly +That +a noteworthy +sign +has come to pass +through +them +to all +those +inhabiting +Jerusalem +[is] evident +and +not +we are able +to deny [it] +But +that +not +on +further +it might spread +among +the +people +let us warn +them +no longer +to speak +in +the +name +this +to no +man +And +having called +them +they commanded [them] +at all +not +to speak +nor +to teach +in +the +name +- +of Jesus +But +- +Peter +and +John +answering +said +to +them +Whether +right +it is +before +- +God +to you +to listen +rather +than +- +God +you must judge +for +not +are able +we +what +we have seen +and +heard +not +to speak +And +- +having further threatened [them] +they let go +them +nothing +finding +the +how +they might punish +them +on account of +the +people +because +all +were glorifying +- +God +for +that +having happened +for +years [old] +more than +forty +was +the +man +on +whom +had taken place +the +sign +this +of +healing +now +Having been let go +they came +to +the +own +and +reported +how much +to +them +the +chief priests +and +the +elders +had said +And +- +having heard +with one accord +they lifted up +[their] voice +to +- +God +and +said +Sovereign Lord +You +- +made +the +heaven +and +the +earth +and +the +sea +and +all +that [is] +in +them +- +of the +father +of us +by +[the] Spirit +Holy +through [the] mouth +David +servant +of You +having spoken +- +Why +did rage +[the] Gentiles +and +peoples +did devise +vain things +Took [their] stand +the +kings +of the +earth +and +the +rulers +were gathered +together +- +themselves +against +the +Lord +and +against +the +Christ +of Him +for +Were gathered together +in +truth +in +the +city +this +against +the +holy +servant +of You +Jesus +whom +You anointed +both +Herod +and +Pontius +Pilate +with +[the] Gentiles +and +peoples +of Israel +to do +whatever +to happen +the +hand +of You +and +the +purpose +had determined beforehand +And +Lord +- +now +look +upon +the +threats +of them +and +grant +to the +servants +of You +with +boldness +all +to speak +the +word +of You +in +that +the +hand +stretch out +You +for +healing +and +signs +and +wonders +to take place +through +the +name +of the +holy +servant +of You +Jesus +And +having prayed +they +was shaken +the +place +in +which +they were +assembled +and +they were filled with +all +the +Holy +Spirit +and +were speaking +the +word +- +of God +with +boldness +And +- +the multitude +- +having believed +heart +and +soul +were [in] +one +and +not +one +anything +of that which +possessed +he +his own +to be +claimed +but +were +to them +all things +in common +And +[with] power +great +were giving +- +testimony +of the +Lord +Jesus +of the +resurrection +the +apostles +then +grace +abundant +was +upon +all +them +for +Not even +in need +anyone +there was +among +them +for +as many as +owners +of lands +or +houses +were +selling [them] +were bringing +the +proceeds +of what +is sold +and +were laying [them] +at +the +feet +of the +apostles +then +distribution was made +to each +just as +- +anyone +need +had +now +Joseph +- +having been called +Barnabas +by +the +apostles +which +is +translated +Son +of encouragement +a Levite +a Cypriot +at the +birth +owns +by him +a field +having sold [it] +brought +the +money +and +laid [it] +at +the +feet +of the +apostles +now +A man +certain +Ananias +named +with +Sapphira +the +wife +of him +sold +a property +and +he kept back +from +the +proceeds +being aware of [it] +also +the +wife +and +having brought +a portion +certain +at +the +feet +of the +apostles +he laid [it] +however +Said +- +Peter +Ananias +because of +why +has filled +- +Satan +the +heart +of you +to lie to +[for] you +the +Spirit +- +Holy +and +to keep back +from +the +proceeds +of the +land +Not +remaining +to you +did it remain +And +having been sold +in +the +own +authority +it was +Why +- +did you purpose +in +the +heart +of you +the +deed +this +Not +you have lied +to men +but +- +to God +now +- +Ananias +Hearing +the +words +these +having fallen down +he breathed his last +And +came +fear +great +upon +all +those +hearing +then +Having arisen +the +younger [men] +covered +him +and +having carried [him] out +buried [him] +now +It came to pass +about +hours +three +afterward +also +the +wife +of him +not +knowing +that +having come to pass +came in +then +Replied +to +her +Peter +Tell +me +if +for so much +the +land +you sold +And +- +she said +Yes +for so much +But +- +Peter [said] +to +her +Why [is it] +that +have agreed together +you +to test +the +Spirit +of [the] Lord +Behold +the +feet +of those +having buried +the +husband +of you +[are] at +the +door +and +they will carry out +you +then +She fell down +immediately +at +the +feet +of him +and +breathed her last +then +Having come in +the +young [men] +found +her +dead +and +having carried out +they buried [her] +by +the +husband +of her +And +came +fear +great +upon +all +the +church +and +upon +all +those +hearing +these things +now +By +the +hands +of the +apostles +were happening +signs +and +wonders +many +among +the +people +And +they were +with one accord +all +in +the +Colonnade +of Solomon +now +of the +rest +no one +dared +to join +them +but +were magnifying +them +the +people +now +more +were added +believing +in the +Lord +multitudes +both +of men +and +women +so as +even +into +the +streets +to bring out +the +sick +and +to put [them] +on +cots +and +mats +that +coming +of Peter +at least +the +shadow +might envelop +some +of them +now +Were coming together +also +the +multitude +from the +surrounding +Jerusalem +cities +bringing +[the] sick +and +[those] being tormented +by +spirits +unclean +who +all +were healed +however +Having risen up +the +high priest +and +all +those +with +him +- +being +the sect +of the +Sadducees +were filled +with jealousy +and +they laid +the +hands +on +the +apostles +and +put +them +in +[the] jail +public +however +An angel +of [the] Lord +during +the night +having opened +the +doors +of the +prison +then +having brought out +them +said +Go +and +having stood +speak +in +the +temple +to the +people +all +the +words +of the +life +this +now +Having heard +they entered +at +the +dawn +into +the +temple +and +were teaching +now +Having come +the +high priest +and +those +with +him +they called together +the +Council +even +all +the +Senate +of the +sons +of Israel +and +sent +to +the +prison house +to bring +them +And +- +having come +[the] officers +not +did find +them +in +the +prison +then +having returned +they reported back +saying +- +we found +The +prison house +shut +with +all +security +and +the +guards +standing +before +the +doors +however +having opened [them] +inside +no one +we found +now +When +they heard +the +words +these +both +- +the captain +of the +temple +and +the +chief priests +were perplexed +concerning +them +- +what +might be +this +then +Having come +a certain one +reported +to them +- +Behold +the +men +whom +you put +in +the +prison +are +standing +in +the +temple +and +teaching +the +people +Then +having gone +the +captain +with +the +officers +was bringing +them +not +with +force +for +they were afraid of +the +people +lest +they might be stoned +then +Having brought +them +they set [them] +in +the +Council +And +asked +them +the +high priest +saying +by a charge +we commanded +you +not +to teach +in +the +name +this +And +behold +you have filled +- +Jerusalem +with the +teaching +of you +and +you intend +to bring +upon +us +the +blood +of the +man +this +however +Answering +Peter +and +the +apostles +said +it is necessary +To obey +God +rather +than +men +The +God +of the +fathers +of us +raised up +Jesus +whom +you +killed +having hanged [Him] +on +a tree +Him +- +God +[as] Prince +and +Savior +exalted +by the +right hand +of Him +- +to give +repentance +- +to Israel +and +forgiveness +of sins +And +we +are +witnesses +of the +things +these +and also +the +Spirit +- +Holy +whom +has given +- +God +to those +obeying +Him +And +- +having heard +they were cut [to the heart] +and +were desiring +to put to death +them +however +Having risen up +a certain [man] +in +the +Council +a Pharisee +named +Gamaliel +a teacher of the law +honored +by all +the +people +he commanded [them] +outside +for a short while +the +men +to put +then +He said +to +them +Men +Israelites +take heed +to yourselves +with +the +men +these +what +to do +you are about +for +Before +these +- +days +rose up +Theudas +affirming +to be +somebody +himself +to whom +were joined +of men +number +about +four hundred +who +was put to death +and +all +as many as +were persuaded +by him +were dispersed +and +it came +to +nothing +After +this man +rose up +Judas +the +Galilean +in +the +days +of the +registration +and +drew away +people +after +him +And he +perished +and +all +as many as +were persuaded +by him +were scattered +And +- +now +I say +to you +withdraw +from +the +men +these +and +let alone +them +for +if +be +from +men +the +plan +this +or +the +work +this +it will be overthrown +however +if +from +God +it is +not +you will be able +to overthrow +them +lest +ever +also +fighting against God +You would be found +now +They were persuaded +by him +and +having called in +the +apostles +having beaten +they commanded [them] +not +to speak +in +the +name +- +of Jesus +and +released [them] +indeed +therefore +They +departed +rejoicing +from +[the] presence +of the +Council +that +they had been counted worthy +for +the +Name +to suffer dishonor +then +Every +day +in +the +temple +and +in +house +not +they ceased +teaching +and +proclaiming the good news that +the +Christ +[is] Jesus +now +In +the +days +these +[as] are multiplying +the +disciples +there arose +a grumbling +of the +Hellenists +against +the +Hebrews +because +were being overlooked +in +the +distribution +- +daily +the +widows +of them +then +the +Twelve +Having called near +the +multitude +of the +disciples +they said +Not +desirable +it is [for] +us +having neglected +the +word +- +of God +to attend +tables +therefore +brothers +Select +men +out from +yourselves +being well attested +seven +full +of [the] Spirit +and +wisdom +whom +we will appoint +over +the +task +this +now +We +in the +prayer +and +the +ministry +of the +word +will steadfastly continue +And +was pleasing +the +statement +before +all +the +multitude +and +they chose +Stephen +a man +full +of faith +and +[of the] Spirit +holy +and +Philip +and +Prochorus +and +Nicanor +and +Timon +and +Parmenas +and +Nicolas +a convert +of Antioch +whom +they set +before +the +apostles +and +having prayed +they laid +on them +the +hands +And +the +word +- +of God +continued to increase +and +was multiplied +the +number +of the +disciples +in +Jerusalem +exceedingly +then +a great +multitude +of the +priests +were becoming obedient +to the +faith +now +Stephen +full +grace +and +power +was performing +wonders +and +signs +great +among +the +people +however +Arose +certain +of those +from +the +synagogue +- +called +Freedmen +including +Cyrenians +and +Alexandrians +and +of those +from +Cilicia +and +Asia +disputing +with +Stephen +And +not +they were able +to withstand +the +wisdom +and +the +Spirit +by whom +he was speaking +Then +they suborned +men +saying +- +We have heard +him +speaking +words +blasphemous +against +Moses +and +- +God +then +They stirred up +the +people +and +the +elders +and +the +scribes +and +having come upon [him] +they seized +him +and +brought [him] +to +the +Council +also +They set +witnesses +false +saying +The +man +this +not +does stop +speaking +words +against +the +place +- +holy +and +the +law +for +we have heard +him +saying +that +Jesus +of +Nazareth +this +will destroy +the +place +this +and +will change +the +customs +that +delivered +to us +Moses +And +having looked intently +on +him +all +- +sitting +in +the +Council +saw +the +face +of him +as +[the] face +of an angel +then +Said +the +high priest +If +these things +so +are +And +- +he began to speak +Men +brothers +and +fathers +listen +The +God +- +of glory +appeared +to the +father +of us +Abraham +being +in +- +Mesopotamia +before +rather +dwelling +his +in +Haran +and +He said +to +him +Go out +from +the +country +of you +and +the +kindred +of you +and +come +into +the +land +- +which +to you +I will show +Then +having gone out +from +[the] land +of Chaldeans +he dwelt +in +Haran +And from there +after +- +died +the +father +of him +He removed +him +into +the +land +this +in +which +you +now +dwell +And +not +He did give +to him +an inheritance +in +it +not even +[the] length +of a foot +but +He promised +to give +to him +for +a possession +it +and +to the +descendants +of him +after +him +not +there being +to him +a child +however +Spoke +thus +- +God +that +will be +the +seed +of him +a sojourner +in +a land +strange +and +they will enslave +and +will mistreat [it] +it +years +four hundred +And +the +nation +if +to which +they will be in bondage +will judge +I +- +God +said +and +after +these things +they will come forth +and +will serve +Me +in +the +place +this +And +He gave +to him +[the] covenant +of circumcision +and +thus +he begat +- +Isaac +and +circumcised +him +on the +day +- +eighth +and +Isaac +- +Jacob +and +Jacob +the +twelve +patriarchs +And +the +patriarchs +having envied +- +Joseph +sold [him] +into +Egypt +But +was +- +God +with +him +and +rescued +him +out of +all +the +tribulations +of him +and +gave +him +favor +and +wisdom +before +Pharaoh +king +of Egypt +and +he appointed +him +ruler +over +Egypt +and +all +the +house +of him +then +Came +a famine +upon +all +- +of Egypt +and +Canaan +and +affliction +great +and +not +were finding +sustenance +the +fathers +of us +now +Jacob +Having heard +[there] is +grain +in +Egypt +he sent forth +the +fathers +of us +first +and +on +the +second time +was made known +Joseph +to +brothers +of him +and +known +became +- +to Pharaoh +the +family +of Joseph +then +Having sent +Joseph +he called for +Jacob +the +father +of him +and +all +the +kindred +in all +souls +seventy +five +And +went down +Jacob +into +Egypt +and +died +he +and +the +fathers +of us +and +they were carried over +into +Shechem +and +were placed +in +the +tomb +which +had bought +Abraham +for a sum +of silver +from +the +sons +of Hamor +in +Shechem +now +As +was drawing near +the +time +of the +promise +that +had made +- +God +- +to Abraham +the +people +increased +and +multiplied +in +Egypt +until +that +there arose +over +Egypt +king +another +who +not +knew +- +Joseph +He +having dealt treacherously with +the +race +of us +he mistreated +the +fathers +- +making [them] +the +infants +of them +abandon +unto +the +not +they would live +In +that +time +was born +Moses +and +he was +beautiful +- +to God +who +was brought up +months +three +in +the +house +of the +father +then +Having been set outside +he +took up +him +the +daughter +of Pharaoh +and +brought up +him +for herself +for +a son +And +was instructed +Moses +all +[the] wisdom +of [the] Egyptians +now +he was +mighty +in +words +and +deeds +of him +then +When +was fulfilled +to him +of forty years +a period +it came +into +the +mind +of him +to visit +the +brothers +of him +the +sons +of Israel +And +having seen +a certain one +being wronged +he defended [him] +and +did +vengeance +for the [one] +being oppressed +having struck down +the +Egyptian +now +He was supposing +to understand +the +brothers +that +- +God +by +[the] hand +of him +is giving +salvation +them +but +- +not +they understood +and +On the +following +day +he appeared +to those who +were quarreling +and +urged +them +to +peace +having said +Men +brothers +you are +So that +why +wrong you +one another +however +The [one] +mistreating +the +neighbor +pushed away +him +having said +Who +you +appointed +ruler +and +judge +over +us +Not +to kill +me +you +desire +the same +way +you put to death +yesterday +the +Egyptian +then +Fled +Moses +at +the +remark +this +and +became +exiled +in +[the] land +of Midian +where +he begat +sons +two +And +having been passed +years +forty +appeared +to him +in +the +wilderness +of the +Mount +Sinai +an angel +in +a flame +of fire +of a bush +And +- +Moses +having seen [it] +marveled at +the +vision +then +coming near +of him +to behold [it] +there was +[the] voice +of [the] Lord +I [am] +the +God +of the +Fathers +of you +the +God +of Abraham +and +of Isaac +and +of Jacob +then +Terrified +having become +Moses +not +he dared +to look +then +Said +to him +the +Lord +Take off +the +sandal +of the +feet +of you +for +- +the place +on +which +you stand +ground +holy +is +Having seen +I saw +the +oppression +of the +people +of Me +- +in +Egypt +and +the +groans +of them +I have heard +and +I have come down +to deliver +them +and +now +come +I will send +you +to +Egypt +This +- +Moses +whom +they rejected +having said +Who +you +appointed +ruler +and +judge +him +whom +God [as] +and +ruler +and +redeemer +sent +by +[the] hand +of [the] angel +- +having appeared +to him +in +the +bush +this one +led out +them +having done +wonders +and +signs +in +[the] land +of Egypt +and +in +[the] Red +Sea +and +in +the +wilderness +years +forty +This +is +the +Moses +- +having said +to the +sons +of Israel +A prophet +for you +will raise up +- +God +out from +the +brothers +of you +like +me +This +is +the [one] +having been +in +the +congregation +in +the +wilderness +with +the +angel +- +speaking +to him +in +the +Mount +Sinai +and +of the +fathers +of us +who +received +oracles +living +to give +to us +to whom +not +were willing +obedient +to be +the +fathers +of us +but +thrust away +and +turned back +in +the +hearts +of them +to +Egypt +having said +- +to Aaron +Make +us +gods +who +will go before +us +As for +- +Moses +this +who +brought out +us +from +[the] land +of Egypt +not +we know +what +has happened +to him +And +they made a calf +in +the +days +those +and +offered +a sacrifice +to the +idol +and +they were rejoicing +in +the +works +of the +hands +of them +however +Turned away +- +God +and +delivered +them +to worship +the +host +of +heaven +as +it has been written +in [the] +book +of the +prophets +Not +slain beasts +and +sacrifices +did you offer +to Me +years +forty +in +the +wilderness +O house +of Israel +And +You took up +the +tabernacle +- +of Moloch +and +the +star +of the +god +Rephan +the +images +that +you made +to worship +them +and +I will remove +you +beyond +Babylon +The +tabernacle +of the +testimony +was +with +fathers +of us +in +the +wilderness +just as +had commanded +the [One] +speaking +- +to Moses +to make +it +according to +the +pattern +that +he had seen +which +also +brought [it] +having received by succession +the +fathers +of us +with +Joshua +in +the +taking possession +of the +nations +whom +drove out +- +God +from [the] +face +of the +fathers +of us +until +the +days +of David +who +found +favor +before +- +God +and +asked +to find +a dwelling place +for the +God +of Jacob +however +Solomon +built +Him +[the] house +Yet +not +the +Most High +in +hand-made [houses] +dwells +As +the +prophet +says +- +Heaven [is] +to Me +a throne +and +- +the earth +a footstool +of the +feet +of Me +What kind of +house +will you build +Me +says +[the] Lord +or +what [is] +[the] place +of the +rest +of Me +Not +the +hand +of Me +has made +these things +all +Stiff-necked +and +uncircumcised +in heart +and +- +ears +you +always +the +Spirit +- +Holy +resist +as +the +fathers +of you +also +you +Which +of the +prophets +not +did persecute +the +fathers +of you +And +they killed +those +having foretold +about +the +coming +of the +Righteous One +of whom +now +you +betrayers +and +murderers +have become +who +received +the +law +by +[the] ordination +of angels +and +not +have kept [it] +now +Hearing +these things +they were cut +in the +hearts +of them +and +began gnashing +the +teeth +at +him +however +He being +full +of [the] Spirit +Holy +having looked intently +into +- +heaven +saw +[the] glory +of God +and +Jesus +standing +at +the right hand +- +of God +and +he said +Behold +I see +the +heavens +having been opened +and +the +Son +- +of Man +at +the right [hand] +- +of God +standing +then +Having cried out +in a voice +loud +they held +the +ears +of them +and +rushed +with one accord +upon +him +and +having cast [him] +out of +the +city +they began to stone [him] +And +the +witnesses +laid aside +the +garments +of them +at +the +feet +of a young man +named +Saul +And [as] +they were stoning +- +Stephen +he was calling out +and +saying +Lord +Jesus +receive +the +spirit +of me +then +Having fallen +on [his] +knees +he cried +in a voice +loud +Lord +not +place +to them +this +- +sin +And +this +having said +he fell asleep +now +Saul +was there +consenting +to the +killing +of him +then +Arose +on +that +- +day +a persecution +great +against +the +church +which [was] +in +Jerusalem +then +All +were scattered +throughout +the +regions +- +of Judea +and +Samaria +except +the +apostles +now +Buried +- +Stephen +men +devout +and +made +lamentation +great +over +him +however +Saul +was destroying +the +church +[houses] after +- +houses +entering +dragging off +then +men +and +women +he was delivering [them] +to +prison +therefore +indeed +Those +having been scattered +went about +preaching +the +word +now +Philip +having gone down +to +- +[a] city +- +of Samaria +was proclaiming +to them +the +Christ +now +Were giving heed +the +crowds +to the things +being spoken +by +- +Philip +with one accord +in +the [time] +to hear +them +and +to see +the +signs +that +he was performing +for +Many +of those +having +spirits +unclean +crying +voice +in a loud +they were coming out [of them] +now +many +having been paralyzed +and +lame +were healed +then +There was +great +joy +in +the +city +that +now +A man +certain +named +Simon +had been formerly +in +the +city +practicing sorcery +and +amazing +the +people +- +of Samaria +declaring +to be +someone +great +himself +to whom +were giving heed +all +from +small +to +great +saying +This one +is +the +power +- +of God +that +[is] called +Great +now +They were giving heed +to him +because +the +long +time +with the +magic arts +he had amazed +them +however +When +they believed +- +Philip +proclaiming the gospel +concerning +the +kingdom +- +of God +and +the +name +of Jesus +Christ +they were baptized +both +men +and +women +And +- +Simon +also +himself +believed +and +having been baptized +was +steadfastly continuing +- +with Philip +Beholding +then +[the] signs +and +miracles +great +being performed +he was amazed +now +the +in +Jerusalem +apostles +Having heard +that +had received +- +Samaria +the +word +- +of God +they sent +to +them +Peter +and +John +who +having come down +prayed +for +them +that +they might receive [the] +Spirit +Holy +for +Not yet +He was +fallen +upon +any +of them +however +only +baptized +they had been +into +the +name +of the +Lord +Jesus +Then +they began laying +the +hands +upon +them +and +they received +[the] Spirit +Holy +now +- +of Simon +Having seen +that +through +the +laying on +of the +hands +of the +apostles +was given +the +Spirit +he offered +to them +money +saying +Give +also to me +the +authority +this +that +if +on whom +I may lay +the +hands +he may receive +[the] Spirit +Holy +however +Peter +said +to +him +The +silver +of you +with +you +may it be +to +destruction +because +you thought +the +gift +- +of God +by +money +to be obtained +No +there is +to you +part +nor +lot +in +the +matter +this +for +the +heart +of you +not +is +right +before +- +God +therefore +Repent +of +the +wickedness +of yours +this +and +pray earnestly to +the +Lord +indeed +if +will be forgiven +you +the +intent +of the +heart +of you +for +in +[the] gall +of bitterness +and +[the] bond +of iniquity +you +being +I see +now +Answering +- +Simon +said +Pray earnestly +you +on behalf +of me +to +the +Lord +so that +may come +upon +me +nothing +of which +you have spoken +indeed +therefore +They +having earnestly testified +and +having spoken +the +word +of the +Lord +traveled back +to +Jerusalem +then +to many +villages +of the +Samaritans +they were preaching the gospel +now +An angel +of [the] Lord +spoke +to +Philip +saying +Rise up +and +go +toward +[the] south +to +the +road +- +going down +from +Jerusalem +to +Gaza +This +is +[the] desert [road] +And +having risen up +he went +And +behold +a man +an Ethiopian +a eunuch +a potentate +of Candace +queen +of [the] Ethiopians +who +was +over +all +the +treasure +of her +who +had come +to worship +to +Jerusalem +he was +then +returning +and +sitting +in +the +chariot +of him +and +he was reading +the +prophet +Isaiah +then +Said +the +Spirit +- +to Philip +Go near +and +join yourself +to the +chariot +this +then +Having run up +- +Philip +heard +him +reading +Isaiah +the +prophet +and +said +Then +also +understand you +what +you are reading +And +- +he said +for +- +How +could I be able +if +not +someone +will guide +me +then +He invited +- +Philip +having come up +to sit +with +him +Now +- +the passage +of the +Scripture +which +he was reading +was +this +As +a sheep +to +slaughter +He was led +and +as +a lamb +before +the [one] +shearing +him +[is] silent +so +not +He opens +the +mouth +of Him +In +the +humiliation +- +justice +from Him +was taken away +The +generation +of Him +who +will describe +For +is removed +from +the +earth +the +life +of Him +now +Answering +the +eunuch +- +to Philip +said +I pray +you +concerning +whom +the +prophet +says +this +Concerning +himself +or +concerning +other +some +then +- +Philip +Having opened +the +mouth +of him +and +having begun +from +the +Scripture +this +he proclaimed the good news +to him +- +Jesus +then +As +they were going +along +the +road +they came +upon +some +water +and +says +the +eunuch +Behold +water +what +prevents +me +to be baptized +And +he commanded +to stop +the +chariot +And +they went down +both +to +the +water +both +- +Philip +and +the +eunuch +and +he baptized +him +now +When +they came up +out of +the +water +[the] Spirit +of [the] Lord +carried away +- +Philip +and +not +saw +him +no longer +the +eunuch +for +he went +the +way +of him +rejoicing +however +Philip +was found +at +Azotus +and +passing through +he was proclaiming the gospel +to the +towns +all +until +- +coming +his +to +Caesarea +But +- +Saul +still +breathing out +threats +and +murder +toward +the +disciples +of the +Lord +having gone +to the +high priest +requested +from +him +letters +in +Damascus +to +the +synagogues +so that +if +he found +any +of the +way +being +both +men +and +women +having bound +he might bring [them] +to +Jerusalem +now +In +- +proceeding +it came to pass +[as] he +draws near +- +to Damascus +also +suddenly +him +flashed around +a light +from +- +heaven +And +having fallen +on +the +ground +he heard +a voice +saying +to him +Saul +Saul +why +Me +do you persecute +then +He said +Who +are You +Lord +And [He said] +- +I +am +Jesus +whom +you +are persecuting +But +rise up +and +enter +into +the +city +and +it will be told +you +that +what +you +to do +it behooves +And +- +the men +- +traveling with +him +stood +speechless +indeed +hearing +the +voice +however +no one +seeing +then +Rose up +Saul +from +the +ground +however +having been opened +the +eyes +of him +nothing +he could see +then +Leading by the hand +him +they brought [him] +to +Damascus +And +he was +seeing +days +three +without +and +neither +did he eat +nor +drink +now +There was +a certain +disciple +named +Ananias +in +Damascus +And +said +to +him +in +a vision +the +Lord +Ananias +And +- +he said +Behold +me +Lord +And +- +the Lord +to +him [said] +Having risen up +go +into +the +street +- +called +Straight +and +seek +in +[the] house +of Judas +Saul +named +of Tarsus +for +Behold +he is praying +and +he saw +a man +Ananias +named +having come +and +having put +on him +hands +so that +he might see again +but +Answered +Ananias +Lord +I have heard +from +many +concerning +the +man +this +how many +evils +to +saints +of You +he did +in +Jerusalem +and +here +he has +authority +from +the +chief priests +to bind +all +those +calling on +the +name +of You +however +Said +to +him +the +Lord +Go +for +a vessel +of choice +is +to Me +this [man] +- +to carry +the +name +of Me +before +and +Gentiles +also +kings +then +[the] sons +of Israel +for +I +will show +to him +how much +him +for +the +name +of Me +to suffer +it behooves +then +Went away +Ananias +and +entered +into +the +house +and +having laid +upon +him +the +hands +he said +Saul +Brother +the +Lord +Jesus +the [One] +having appeared +to you +on +the +road +by which +you were coming +has sent +me +that +you may see again +and +be filled +[of the] Spirit +Holy +And +immediately +fell +from +of him +the +eyes +[something] like +scales +also +he regained his sight +And +having risen up +he was baptized +and +having taken +food +he was strengthened +now +He was +with +the +in +Damascus +disciples +days +some +And +immediately +in +the +synagogues +he began proclaiming +- +Jesus +that +He +is +the +Son +- +of God +then +Were amazed +all +- +hearing +and +were saying +Not +this +is +the [one] +having ravaged +in +Jerusalem +those +calling on +the +name +this +And +here +for +this +he had come +that +having been bound +them +he might bring +to +the +chief priests +however +Saul +all the more +was empowered +and +kept confounding +Jews +- +dwelling +in +Damascus +proving +that +this +is +the +Christ +now +When +had passed +days +many +plotted together +the +Jews +to kill +him +however +became known +- +to Saul +the +plot +of them +now +They were closely watching +also +the +gates +and +day +also +night +so that +him +they might kill +however +having taken [him] +the +disciples +of him +by night +through +the +wall +they let down +him +having lowered [him] +in +a basket +then +Having arrived +in +Jerusalem +he was attempting +to join +the +disciples +And +all +were afraid of +him +not +believing +that +he is +a disciple +however +Barnabas +having taken +him +brought [him] +to +the +apostles +and +he related +to them +how +on +the +road +he had seen +the +Lord +and +that +He had spoken +to him +and +how +in +Damascus +he had spoken boldly +in +the +name +of Jesus +And +he was +coming in +and +going out +with +them +in +Jerusalem +speaking boldly +in +the +name +of +Lord +also +He was speaking +and +was debating +with +the +Hellenists +but +- +they were seeking +to kill +him +however +Having known [it] +the +brothers +brought down +him +to +Caesarea +and +sent away +him +to +Tarsus +indeed +then +The +church +throughout +all +- +of Judea +and +Galilee +and +Samaria +had +peace +being edified +and +going on +in the +fear +of the +Lord +and +in the +comfort +of the +Holy +Spirit +they were multiplied +now +It came to pass that +Peter +passing +through +all [quarters] +went down +also +to +the +saints +- +inhabiting +Lydda +then +He found +there +a man +certain +named +Aeneas +for +years +eight +lying +on +a bed +who +was +paralyzed +And +said +to him +- +Peter +Aeneas +heals +you +Jesus +Christ +rise up +and +make the bed +for yourself +And +immediately +he rose up +And +saw +him +all +those +inhabiting +Lydda +and +- +Sharon +who +turned +to +the +Lord +now +In +Joppa +there was +certain +a disciple +named +Tabitha +which +translated +is called +Dorcas +She +was +full of +works +good +and +of alms +that +she continually did +however +It came to pass +in +the +days +those +[that] having become sick +she +died +then +Having washed [her] +put [her] +in +an upper room +now +being +Lydda +Near +- +Joppa +the +disciples +having heard +that +Peter +is +in +it +sent +two +men +to +him +imploring +Not +to delay +coming +to +us +then +Having risen up +Peter +went with +them +who +having arrived +brought [him] +into +the +upper room +And +stood by +him +all +the +widows +weeping +and +showing +[the] tunics +and +garments +that +had made +with +them +being +- +Dorcas +then +- +Peter +Having put +outside +all +and +having bowed +the +knees +he prayed +And +having turned +to +the +body +he said +Tabitha +arise +And +- +she opened +the +eyes +of her +and +having seen +- +Peter +she sat up +then +Having given +her +[his] hand +he raised up +her +then +Having called +the +saints +and +the +widows +he presented +her +living +then +Known +it became +throughout +all +- +of Joppa +and +believed +many +on +the +Lord +then +It came to pass +days +many +he stayed +in +Joppa +with +a certain +Simon +a tanner +now +A man +certain +in +Caesarea +named +Cornelius +[was] a centurion +of +[the] Cohort +that +is called +Italian +devout +and +fearing +- +God +with +all +the +household +of him +doing +alms +many +to the +people +and +praying +to +God +continually +all +He saw +in +a vision +clearly +as if +about +hour +the ninth +of the +day +an angel +- +of God +having come +to +him +and +having said +to him +Cornelius +And +- +having looked intently +on him +and +afraid +having become +he said +What +is it +Lord +then +He said +to him +The +prayers +of You +and +the +alms +of you +have ascended +as +a memorial +before +- +God +And +now +send +men +to +Joppa +and +summon +Simon +a man +who +is called +Peter +He +lodges +with +a certain +Simon +a tanner +whose +is +[the] house +by +[the] sea +then +When +had departed +the +angel +- +speaking +to him +having called +two +of the +servants +and +a soldier +devout +of those who +are attending +him +and +having related +all things +to them +he sent +them +to +- +Joppa +now +On the +next day +as are journeying +these +and +the +city +approaching +went up +Peter +on +the +housetop +to pray +about +hour +the sixth +then +He became +hungry +and +desired +to eat +however +[as] were preparing +they +fell +upon +him +a trance +and +he beholds +- +heaven +opening +and +descending +a vessel +certain +as +a sheet +great +by four +corners +being let down +upon +the +earth +in +which +were +all +the +quadrupeds +and +creeping things +of the +earth +and +birds +of +heaven +And +came +a voice +to +him +Peter +Having risen up +kill +and +eat +And +- +Peter +said +In no way +Lord +for +never +have I eaten +anything +common +or +unclean +And +a voice +[came] again +for +the second time +to +him +What +- +God +has cleansed +you +not +call common +now +This +took place +for +three times +and +immediately +was taken up +the +vessel +into +- +heaven +then +While +in +himself +was perplexed +- +Peter +- +what +might be +the +vision +that +he had seen +behold +the +men +- +having been sent +from +- +Cornelius +having inquired for +the +house +- +of Simon +stood +at +the +gate +And +having called out +they were asking +if +Simon +who [is] +called +Peter +here +is lodged +And +- +of Peter +thinking +over +the +vision +said +the +Spirit +Behold +men +three +are seeking +you +But +having risen +go down +and +proceed +with +them +nothing +doubting +because +I +have sent +them +then +Having gone down +Peter +to +the +men +he said +Behold +I +am +whom +you seek +what [is] +the +cause +for +which +you are here +And +- +they said +Cornelius +a centurion +a man +righteous +and +fearing +- +God +then +being well testified to +by +all +the +nation +of the +Jews +was divinely instructed +by +an angel +holy +to send for +you +to +the +house +of him +and +to hear +a message +from +you +therefore +Having called in +them +he lodged [them] +now +On the +next day +having risen up +he went forth +with +them +and +some +of the +brothers +those +from +Joppa +went with +him +now +On the +next day +he entered +into +- +Caesarea +and +- +Cornelius +was +expecting +them +having called together +the +relatives +of him +and +- +close +friends +then +As +was +- +entering +- +Peter +having met +him +- +Cornelius +having fallen +at +the +feet +worshiped [him] +But +- +Peter +lifted up +him +saying +Rise up +also +I +myself +a man +am +And +talking with +him +he entered +and +he finds +having gathered together +many +then +He was saying +to +them +You +know +how +unlawful +it is +for a man +a Jew +to unite himself +or +to come near +to a foreigner +To me +however +God +has shown +not +man +common +or +unclean +to call +Therefore +also +without objection +I came +having been summoned +therefore +I inquire +for what +reason +did you summon +me +And +- +Cornelius +was saying +Ago +four +days +until +this +the +hour +I was +praying +at the +ninth hour +in +the +house +of me +and +behold +a man +stood +before +me +in +apparel +bright +and +said +Cornelius +has been heard +your +- +prayer +and +the +alms +of you +have been remembered +before +- +God +therefore +Send +to +Joppa +and +call for +Simon +who +is called +Peter +He +lodges +in +[the] house +of Simon +a tanner +by +[the] sea +therefore +At once +I sent +to +you +then +you +well +did +having come +therefore +Now +all +we +before +- +God +are present +to hear +all +the things +having been commanded +you +by +the +Lord +then +Peter +Having opened +the +mouth +he said +Of +a truth +I understand +that +not +is +One who shows partiality +- +God +but +in +every +nation +the [one] +fearing +Him +and +working +righteousness +acceptable +to Him +is +the +word +that +He sent +to the +sons +of Israel +proclaiming the gospel +peace +by +Jesus +Christ +He +is +of all +Lord +You yourselves +know +the +declaration +having come +through +all +- +Judea +having begun +from +- +Galilee +after +the +baptism +that +proclaimed +John +Jesus +- +from +Nazareth +how +anointed +Him +- +God +Spirit +with Holy +and +with power +who +went about +doing good +and +healing +all +those +being oppressed +by +the +devil +because +- +God +was +with +Him +And +we +[are] witnesses +of all things +that +He did +both +in +the +region +of the +Jews +and +Jerusalem +whom +also +they put to death +having hanged [Him] +on +a tree +This One +- +God +raised up +on +the +third +day +and +gave +Him +manifest +to become +not +to all +the +people +but +to [the] witnesses +- +having been chosen beforehand +by +- +God +to us +who +did eat with +and +drink with +Him +after +- +rising +His +out from +[the] dead +And +He instructed +us +to proclaim +to the +people +and +to testify fully +that +He +is +the [One] +having been appointed +by +- +God +[as] judge +of living +and +dead +To Him +all +the +prophets +bear witness +[that] forgiveness +of sins +receives +through +the +name +of Him +everyone +- +believing +in +Him +Still +speaking +- +of Peter +the +words +these +fell +the +Spirit +- +Holy +upon +all +those +hearing +the +word +And +were amazed +the +from +[the] circumcision +believers +as many as +had come with +- +Peter +that +even +upon +the +Gentiles +the +gift +of the +Holy +Spirit +has been poured out +for +They were hearing +them +speaking +in tongues +and +magnifying +- +God +Then +answered +Peter +If not +the +water +to withhold +is able +anyone +- +not +to baptize +these +who +the +Spirit +- +Holy +have received +just as +also [have] +we +now +He commanded +them +in +the +name +of Jesus +Christ +to be baptized +Then +they asked +him +to remain +days +some +now +Heard +the +apostles +and +the +brothers +- +being +in +- +Judea +that +also +the +Gentiles +had received +the +word +- +of God +also +When +went up +Peter +to +Jerusalem +began contending +with +him +those +of +[the] circumcision +saying +- +You went +to +men +uncircumcision +having +and +ate with +them +now +Having begun +Peter +he set [it] forth +to them +in order +saying +I +was +praying +in +[the] city +of Joppa +and +I saw +in +a trance +a vision +descending +a vessel +certain +like +a sheet +great +by four +corners +being let down +out of +- +heaven +and +it came down +as far as +me +On +it +having looked intently +I was observing [it] +and +I saw +the +quadrupeds +of the +earth +and +the +wild beasts +and +the +creeping things +and +the +birds +of the +air +then +I heard +also +a voice +saying +to me +Peter +Having risen up +kill +and +eat +however +I said +In no way +Lord +for +common +or +unclean +nothing ever +has entered +into +the +mouth +of me +however +Answered +for +a second [time] +the voice +out of +- +heaven +What +- +God +has cleansed +you +not +do call unholy +now +This +happened +on +three times +and +was drawn up +again +all +into +- +heaven +And +behold +immediately +three +men +stood +at +the +house +in +which +I was +having been sent +from +Caesarea +to +me +now +Told +the +Spirit +me +to go with +them +not +having discriminated +now +Went +with +me +also +- +six +brothers +these +and +we entered +into +the +house +of the +man +then +He related +to us +how +he had seen +the +angel +in +the +house +of him +having stood +and +having said +Send forth +to +Joppa +and +send for +Simon +who +is called +Peter +who +will speak +words +to +you +in +which +will be saved +you +and +all +the +household +of you +then +In +- +beginning +my +to speak +fell +the +Spirit +- +Holy +upon +them +even as +also +upon +us +in [the] +beginning +then +I remembered +the +word +of the +Lord +how +He had said +indeed +John +baptized +with water +however +you +will be baptized +with [the] +Spirit +Holy +then +If +the +same +gift +has given +to them +- +God +as +also +to us +having believed +on +the +Lord +Jesus +Christ +I +how +was +able +to forbid +- +God +then +Having heard +these things +they were silent +and +glorified +- +God +saying +Then indeed +also +to the +Gentiles +- +God +- +repentance +unto +life +has given +indeed +therefore +Those +having been scattered +by +the +tribulation +- +having taken place +over +Stephen +passed through +to +Phoenicia +and +Cyprus +and +Antioch +to no one +speaking +the +word +if +not +only +to Jews +however +Were +some +of +them +men +of Cyprus +and +of Cyrene +who +having come +into +Antioch +were speaking +also +to +the +Hellenists +proclaiming the gospel +the +Lord +Jesus +And +was +[the] hand +of [the] Lord +with +them +then +[a] great +number +- +having believed +turned +to +the +Lord +now +Was heard +the +report +concerning +them +in +the +ears +of the +church +- +being +in +Jerusalem +and +they sent forth +Barnabas +as far as +Antioch +who +having come +and +having seen +the +grace +of +- +God +rejoiced +and +was exhorting +all +with +resolute purpose +- +of heart +to abide +the +Lord +For +he was +a man +good +and +full +of [the] Spirit +Holy +and +of faith +And +was added +a crowd +large +to the +Lord +then +He went forth +to +Tarsus +to seek +Saul +and +having found [him] +he brought [him] +to +Antioch +now +It came to pass [that] +they +also +a year +whole +gathered together +in +the +church +and +taught +a crowd +large +then +Were called +first +in +Antioch +the +disciples +Christians +now +In +these +- +days +came down +from +Jerusalem +prophets +to +Antioch +now +Having risen up +one +of +them +named +Agabus +he signified +by +the +Spirit [that] +a famine +great +is about +to be +over +all +the +world +which +came to pass +under +Claudius +And +- +the disciples +as +was prospered +anyone +determined +each +of them +for +ministry +to send +to the +dwelling +in +- +Judea +brothers +which +also +they did +having sent [it] +to +the +elders +by [the] +hand +of Barnabas +and +Saul +now +At +that +- +time +put forth +Herod +the +king +the +hands +to mistreat +some +of those +of +the +church +then +He put to death +James +the +brother +of John +with the sword +now +Having seen +that +pleasing +it is +to the +Jews +he proceeded +to take +also +Peter +now +these were +days +of the +Unleavened [Bread] +whom +also +having seized +he put +in +prison +having delivered [him] +to four +sets of four +soldiers +to guard +him +intending +after +the +Passover +to bring out +him +to the +people +therefore +Indeed +- +Peter +was kept +in +the +prison +however +prayer +was +being made +fervent +by +the +church +to +- +God +concerning +him +then +When +was about +to bring forth +him +- +Herod +the +night +that +- +Peter +was +sleeping +between +two +soldiers +having been bound +with chains +two +also +guards +before +the +door +were watching +the +prison +And +behold +an angel +of [the] Lord +stood by +and +a light +shone +in +the +cell +then +Having struck +the +side +- +of Peter +he woke up +him +saying +Rise up +in +haste +And +fell +of him +the +chains +off +the +hands +then +Said +the +angel +to +him +Gird yourself about +and +put on +the +sandals +of you +and +He did +so +And +he says +to him +Wrap around [you] +the +cloak +of you +and +follow +me +And +having gone forth +he was following +and +not +did know +that +real +is +what +is happening +by means of +the +angel +however +he was thinking +a vision +he saw +then +Having passed through +a first +and +a second +guard +they came +to +the +gate +- +iron +- +leading +into +the +city +which +by itself +opened +to them +And +having gone out +they went on through +street +one +and +immediately +departed +the +angel +from +him +And +- +Peter +to +himself +having come +said +Now +I know +truly +that +has sent forth +the +Lord +the +angel +of Him +and +delivered +me +out of +[the] hand +of Herod +and +all +the +expectation +of the +people +of the +Jews +also +Having considered [it] +he came +to +the +house +of +Mary +the +mother +of John +who +is called +Mark +where +many +were +having gathered together +and +praying +then +Having knocked +of him +[at] the +door +of the +gate +came +to answer +a girl +named +Rhoda +And +having recognized +the +voice +- +of Peter +from +- +joy +not +she opened +the +gate +but +having run in +she reported +to be standing +- +Peter +before +the +gate +And +- +to +her +they said +You are out of your mind +But +- +she kept insisting +[it] so +to be +And +- +they kept saying +The +angel +it is +of him +But +- +Peter +continued +knocking +then +having opened [it] +they saw +him +and +were amazed +then +Having made a sign +to them +with the +hand +to be silent +he related +to them +how +the +Lord +him +had brought +out of +the +prison +then +He said +Report +to James +and +to the +brothers +these things +And +having gone out +he went +to +another +place +now +Having come +day +there was +disturbance +no +small +among +the +soldiers +then [of] +what +- +Peter +has become +then +Herod +having sought after +him +and +not +having found [him] +having examined +the +guards +he commanded [them] +to be led away [to death] +And +having gone down +from +- +Judea +to +Caesarea +he stayed [there] +now +He had been +furiously angry +with [the] Tyrians +and +Sidonians +then +with one accord +they came +to +him +And +having gained +Blastus +who [was] +over +the +bedchamber +of the +king +they were seeking +peace +because of +- +being nourished +their +- +region +by +the +king’s +now +On the appointed +day +- +Herod +having put on +apparel +royal +having sat +on +the +throne +was making an address +to +them +And +- +the people +were crying out +Of a god +[this is the] voice +and +not +of a man +then +Immediately +struck +him +an angel +of [the] Lord +in return +for that +not +he gave +the +glory +- +to God +and +having been +eaten by worms +he breathed his last +But +- +the word +- +of God +continued to grow +and +to multiply +then +Barnabas +and +Saul +returned +to +Jerusalem +having fulfilled +the +mission +having taken with [them] +John +the [one] +having been called +Mark +now +There were +in +Antioch +in +the +being [there] +church +prophets +and +teachers +both +- +Barnabas +and +Simeon +who +was called +Niger +and +Lucius +the +Cyrenian +also +Manaen +Herod +the +tetrarch +brought up with +and +Saul +now +As were ministering +they +to the +Lord +and +fasting +said +the +Spirit +- +Holy +then +Set apart +to Me +- +Barnabas +and +Saul +for +the +work +to which +I have called +them +Then +having fasted +and +having prayed +and +having laid +the +hands +on them +they sent [them] off +indeed +therefore +They +having been sent forth +by +the +Holy +Spirit +went down +to +Seleucia +then +From there +they sailed +to +Cyprus +And +having come +into +Salamis +they began proclaiming +the +word +- +of God +in +the +synagogues +of the +Jews +now +They had +also +John [as] +a helper +now +Having passed through +all +the +island +as far as +Paphos +they found +a man +a certain +magician +a false prophet +Jewish +whose +name +[was] Bar-Jesus +who +was +with +the +proconsul +Sergius +Paulus +man +an intelligent +He +having called to [him] +Barnabas +and +Saul +desired +to hear +the +word +- +of God +however +Was opposing +them +Elymas +the +magician +for +thus +means +the +name +of him +seeking +to turn away +the +proconsul +from +the +faith +then +Saul +- +also [called] +Paul +having been filled +[the] Spirit +Holy +having looked intently +upon +him +said +O +full +of all +deceit +and +all +craft +son +of [the] devil +enemy +of all +righteousness +not +will you cease +perverting +the +ways +the +of Lord +- +straight +And +now +behold +[the] hand +of the Lord +[is] upon +you +and +you will be +blind +not +seeing +the +sun +during +a season +then +Immediately +fell +upon +him +mist +and +darkness +and +going about +he was seeking +someone to lead [him] by the hand +Then +the +proconsul +having seen +that +having happened +he believed +being astonished +at +the +teaching +of the +Lord +then +Having sailed +from +- +Paphos +[with] those +around [him] +Paul +came +to +Perga +- +of Pamphylia +however +John +having departed +from +them +returned +to +Jerusalem +now +They +having passed through +from +- +Perga +came +to +Antioch +- +of Pisidia +and +having gone +into +the +synagogue +on the +day +of the +Sabbaths +they sat down +then +After +the +reading +of the +law +and +of the +Prophets +sent +the +rulers of the synagogue +to +them +saying +Men +brothers +if +there is +among +you +any +a word +of exhortation +toward +the +people +speak +then +Paul +Having risen up +and +having made a sign +with the +hand +he said +Men +Israelites +and +those +fearing +- +God +listen +The +God +of the +people +this +of Israel +chose +the +fathers +of us +and +the +people +exalted +in +the +sojourn +in +[the] land +of Egypt +and +with +arm +uplifted +brought +them +out of +it +and +of about +forty years +for a period +He endured the ways +their +in +the +wilderness +and +having destroyed +nations +seven +in +[the] land +of Canaan +He gave as an inheritance +the +land +of them +during +years +four hundred +and +fifty +And +after +these things +He gave [them] +judges +until +Samuel +prophet +Then +they asked for +a king +and +gave +to them +- +God +- +Saul +son +of Kish +a man +of [the] +tribe +of Benjamin +years +forty +And +having removed +him +He raised up +- +David +to them +as +king +to whom +also +He said +having carried witness +I have found +David +the +[son] +of Jesse +a man +according to +the +heart +of Me +who +will do +all +the +will +of Me +- +God +of +Of this [man] +the +seed +according to +promise +has brought +- +to Israel +[the] Savior +Jesus +having proclaimed +John +before [the] +face +of the +coming +of Him +a baptism +of repentance +to all +the +people +of Israel +then +While +was fulfilling +John +the +course +he was saying +Whom +me +to be +do you suppose +Not +am +I [he] +but +behold +He comes +after +me +of whom +not +I am +worthy +a +sandal +of the +feet +to untie +Men +brothers +sons +of [the] family +of Abraham +and +those +among +you +fearing +- +God +to us +the +message +of the +salvation +this +has been sent +for +Those +dwelling +in +Jerusalem +and +the +rulers +of them +Him +not having known +and +the +voices +of the +prophets +that +on +every +Sabbath +are being read +having condemned [Him] +they fulfilled [them] +And +no +cause +of death +having found +they begged +Pilate +to put to death +him +then +When +they had finished +all +the things +about +Him +having been written +having taken [Him] down +from +the +tree +they put [Him] +in +a tomb +But +- +God +raised +Him +out from +[the] dead +who +appeared +for +days +many +to those +having come up with +Him +from +- +Galilee +to +Jerusalem +who +now +are +witnesses +of Him +to +the +people +And +we +to you +preach the gospel +the +to +the +fathers +having been made +promise +that +this +- +God +has fulfilled +to the +children +to us +having raised up +Jesus +as +also +in +the +psalm +the +second +it has been written +Son +of Me +are +You +I +today +have begotten +you +then +That +He raised +Him +out from +[the] dead +no more +being about +to return +to +decay +thus +He spoke +- +I will give +to you +the +holy [blessings] +of David +the +sure [blessings] +Therefore +also +in +another +He says +Not +You will allow +the +Holy One +of you +to see +decay +for +indeed +David +in his own +generation +having served +the +- +of God +purpose +fell asleep +and +was added +to +the +fathers +of him +and +saw +decay +however +The [One] +- +God +raised up +not +did see +decay +therefore +Known +be it +to you +men +brothers +that +through +this One +to you +forgiveness +of sins +is proclaimed +And +from +all things +from which +not +you were able +in +[the] law +of Moses +to be justified + + + + + + +therefore +Take heed +lest +might come about +that +having been said +in +the +prophets +Behold +- +scoffers +and +wonder +and +perish +for +a work +am working +I +in +the +days +of you +a work +that +never +not +you would believe +even if +one +should declare it +to you +then +Having departed +they +were begging +on +the +next +Sabbath +to be spoken +to them +the +words +these +then +Having broken up +the +synagogue +followed +many +of the +Jews +and +of the +worshipping +converts +- +Paul +and +- +Barnabas +who +speaking +to them +kept persuading +them +to continue +in the +grace +- +of God +now +On the +coming +Sabbath +almost +all +the +city +was gathered together +to hear +the +word +- +of the Lord +however +the +Jews +Having seen +the +crowds +they were filled +with jealousy +and +began contradicting +the things +by +Paul +spoken +blaspheming +also +Having spoken boldly +- +Paul +and +- +Barnabas +said +it was +necessary +To you +first +to be spoken +the +word +- +of God +but since +you thrust away +it +and +not +you judge +yourselves +worthy +- +of eternal +life +behold +we are turning +to +the +Gentiles +for +Thus +has commanded +us +the +Lord +I have set +you +for +a light +of [the] Gentiles +- +to be +you +for +salvation +to +[the] uttermost part +of the +earth +then +Hearing [it] +the +Gentiles +were rejoicing +and +glorifying +the +word +of the +Lord +and +believed +as many as +were +appointed +to +life +eternal +then +Was carried +the +word +of the +Lord +through +all +the +region +but +The +Jews +incited +the +worshipping +women +- +of honorable position +and +the +principals +of the +city +and +they stirred up +a persecution +against +- +Paul +and +Barnabas +and +expelled +them +from +the +district +of them +But +- +having shaken off +the +dust +of the +feet +against +them +they went +to +Iconium +and +- +the disciples +were filled +with joy +and [the] +Spirit +Holy +now +It came to pass +in +Iconium +according to +the +same +entered +they +into +the +synagogue +of the +Jews +and +spoke +so +that +believed +both +of Jewish +and +Greeks +a great +number +however +The +unbelieving +Jews +stirred up +and +poisoned +the +minds +of the +Gentiles +against +the +brothers +therefore +indeed +A long +time +they stayed +speaking boldly +for +the +Lord +the [One] +bearing witness +to +the +word +of the +grace +of Him +granting +signs +and +wonders +to be done +through +the +hands +of them +now +Was divided +the +multitude +of the +city +and +indeed +some +were +with +the +Jews +however +some +with +the +apostles +then +When +there was +a rush +of the +both +Gentiles +and +Jews +with +the +rulers +of them +to mistreat +and +to stone +them +having become aware +they fled +to +the +cities +- +of Lycaonia +Lystra +and +Derbe +and +the +surrounding region +and there +preaching the gospel +they continued +And +a certain +man +crippled +in the +feet +in +Lystra +was sitting +lame +from +[the] womb +of [the] mother +of him +who +never +had walked +This [man] +heard +- +Paul +speaking +who +having looked intently +at him +and +having seen +that +he has +faith +- +to be healed +said +in a loud +voice +Stand +on +the +feet +of you +upright +And +he sprang up +and +began to walk +And +- +the crowds +having seen +what +had done +Paul +lifted up +the +voice +of them +in Lycaonian +saying +The +gods +having become like +men +have come down +to +us +then +They began calling +- +Barnabas +Zeus +and +- +Paul +Hermes +because +he +was +the +leading +- +speaker +And +- +the priest +- +of Zeus +- +being +just outside +the +city +oxen +and +wreaths +to +the +gates +having brought +with +the +crowds +was desiring +to sacrifice +however +Having heard +the +apostles +Barnabas +and +Paul +having torn +the +garments +of them +rushed out +into +the +crowd +crying out +and +saying +Men +why +these things +do you +Also +we +of like nature +with you +men +are +proclaiming the gospel +to you +from +these +- +vanities +to turn +to +God +[the] living +who +made +the +heaven +and +the +earth +and +the +sea +and +all +the things +in +them +who +in +the +past +generations +allowed +all +the +nations +to go +the +ways +of them +And yet +not +without witness +Himself +He has left +doing good +from heaven +to you +rains +giving +and +seasons +fruitful +filling +with food +and +gladness +the +hearts +of you +And +these things +saying +hardly +they stopped +the +crowds +- +not +sacrificing +to them +however +Came +from +Antioch +and +Iconium +Jews +and +having persuaded +the +crowds +and +having stoned +- +Paul +they dragged [him] +outside +the +city +supposing +him +to have died +however +Having surrounded +the +disciples +him +having risen up +he entered +into +the +city +And +on the +next day +he went away +with +- +Barnabas +to +Derbe +then +Having proclaimed the gospel to +the +city +that +and +having discipled +many +they returned +to +- +Lystra +and +to +Iconium +and +to +Antioch +strengthening +the +souls +of the +disciples +exhorting [them] +to continue +in the +faith +and +that +it behooves +through +many +tribulations +us +to enter +into +the +kingdom +- +of God +now +Having chosen +for them +in every +church +elders +having prayed +with +fasting +they committed +them +to the +Lord +in +whom +they had believed +And +having passed through +- +Pisidia +they came +to +- +Pamphylia +and +having spoken +in +Perga +the +word +they went down +to +Attalia +And from there +they sailed +to +Antioch +from where +they had +been committed +to the +grace +- +of God +for +the +work +that +they had fulfilled +now +Having arrived +and +having gathered together +the +church +they began declaring +all that +had done +- +God +with +them +and +that +He had opened +to the +Gentiles +a door +of faith +then +They remained +time +no +little +with +the +disciples +And +certain ones +having come down +from +- +Judea +were teaching +the +brothers +- +If +not +you are circumcised +according to the +custom +- +of Moses +not +you are able +to be saved +then +Having been brought about +commotion +and +discussion +no +small +- +by Paul +and +- +Barnabas +with +them +they appointed +to go up +Paul +and +Barnabas +and +certain +others +out from +them +to +the +apostles +and +elders +to +Jerusalem +about +the +question +this +indeed +therefore +They +having been sent forward +by +the +church +were passing through +- +both +Phoenicia +and +Samaria +relating in detail +the +conversion +of the +Gentiles +and +they were bringing +joy +great +to all +the +brothers +then +Having come +to +Jerusalem +they were welcomed +by +the +church +and +the +apostles +and +the +elders +then +They declared +all that +- +God +had done +with +them +now +Rose up +certain +of those +of +the +sect +of the +Pharisees +who believed +saying +- +It is necessary +to circumcise +them +then +to command [them] +to keep +the +law +of Moses +then +Were gathered together +the +apostles +and +the +elders +to see +about +the +matter +this +now +Of much +discussion +having taken place +having risen up +Peter +said +to +them +Men +brothers +you +know +that +from +days +early +among +you +chose +- +God +by +the +mouth +of me +to hear +the +Gentiles +the +word +of the +gospel +and +to believe +And +the +heart-knowing +God +bore witness +to them +having given [them] +the +Spirit +- +Holy +as +also +to us +and +not one +He made distinction +between +also +us +and +them +by the +faith +having purified +the +hearts +of them +therefore +Now +why +are you testing +- +God +to put +a yoke +upon +the +neck +of the +disciples +that +to bear +neither +the +fathers +of us +nor +we +have been able +But +we believe +by +the +grace +of +[the] Lord +Jesus +to be saved +in +[the] same +manner [as] +they also +now +Kept silent +all +the +multitude +and +were listening to +Barnabas +and +Paul +relating +signs +and +wonders +what +had done +- +God +among +the +Gentiles +by +them +now +After +- +were silent +they +answered +James +saying +Men +brothers +hear +me +Simeon +has related +how +first +- +God +visited +to take +out of +[the] Gentiles +a people +for the +name +of Him +And +with this +agree +the +words +of the +prophets +as +it is written +After +these things +I will return +and +will rebuild +the +tabernacle +of David +which +has fallen +and +the +ruins +of it +I will rebuild +and +I will set upright +it +so that +- +may seek out +the +remnant +- +of men +the +Lord +and +all +the +Gentiles +upon +whom +has been called +the +name +of Me +upon +them +says +[the] Lord +doing +these things +known +from +eternity +Therefore +I +judge +not +to trouble +those who +from +the +Gentiles +are turning +to +- +God +but +to write +to them +- +to abstain from +the +pollutions +of the +idols +and +- +sexual immorality +and +which is strangled +and +from +blood +for +Moses +from +generations +of old +in every +city +[ones] +proclaiming +him +has +in +the +synagogues +on +every +Sabbath +being read +Then +it seemed good +to the +apostles +and +to the +elders +with +all +the +church +having chosen +men +out from +them +to send +to +Antioch +with +- +Paul +and +Barnabas +Judas +- +called +Barsabbas +and +Silas +men +leading +among +the +brothers +having written +by +[the] hand +of them +The +apostles +and +the +elders +brothers +To those +in +- +Antioch +and +Syria +and +Cilicia +brothers +- +among +the Gentiles +Greetings +Inasmuch as +we have heard +that +some +from +us +troubled +you +by words +upsetting +the +minds +of you +to whom +not +we had given instructions +it seemed good +to us +having come +with one accord +having chosen +men +to send +to +you +with +the +beloved +of us +Barnabas +and +Paul +men +having handed over +the +lives +of them +for +the +name +of the +Lord +of us +Jesus +Christ +therefore +We have sent +Judas +and +Silas +and +they +by +word [of mouth] +are telling [you] +the +same things +for +It seemed good +to the +Spirit +- +Holy +and +to us +no +further +burden +to lay +upon you +except +these +- +necessary things +to abstain +from things sacrificed to idols +and +from blood +and +from what is strangled +and +from sexual immorality +From +these +keeping +yourselves +well +you will do +Farewell +indeed +therefore +They +having been sent off +went +to +Antioch +and +having gathered +the +multitude +they delivered +the +letter +now +Having read [it] +they rejoiced +at +the +encouragement +both +Judas +and +Silas +also +themselves +prophets +being +by +talk +much +exhorted +the +brothers +and +strengthened [them] +then +Having continued +a time +they were sent away +in +peace +from +the +brothers +to +those +having sent +them +however +Paul +and +Barnabas +stayed +in +Antioch +teaching +and +proclaiming the good news +with +also +others +many +the +word +of the +Lord +now +After +some +days +said +to +Barnabas +Paul +indeed +Having turned back +let us look after +the +brothers +in +city +every +in +which +we have announced +the +word +of the +Lord +how +they are +now +Barnabas +purposed +to take along +also +- +John +- +called +Mark +however +Paul +thought fit +the [one] +having withdrawn +from +them +from +Pamphylia +and +not +having gone with +them +to +the +work +not +to take along +him +therefore +Arose +a sharp disagreement +so that +separated +they +from +one another +and +- +Barnabas +having taken +- +Mark +sailed +to +Cyprus +however +Paul +having chosen +Silas +went forth +having been committed +to the +grace +of the +Lord +by +the +brothers +then +He was passing through +- +Syria +and +Cilicia +strengthening +the +churches +then +He came +also +to +Derbe +and +to +Lystra +And +behold +was +there +a disciple +certain +named +Timothy +[the] son +of a woman +Jewish +believing +however +father +a Greek +who +was well spoken of +by +the +in +Lystra +and +Iconium +brothers +wanted +- +Paul +This one +with +him +to go forth +and +having taken +he circumcised +him +on account of +the +Jews +- +being +in +the +parts +those +for +they knew +all +that +a Greek +the +father +of him +was +then +While +they were passing through +the +cities +they were delivering +to them +to keep +the +decrees +- +decided on +by +the +apostles +and +elders +who [were] +in +Jerusalem +indeed +therefore +The +churches +were strengthened +in the +faith +and +were increasing +- +in number +every +day +then +Having passed through +- +Phrygia +and +the Galatian +region +having been forbidden +by +the +Holy +Spirit +to speak +the +word +in +- +Asia +then +having come +down to +- +Mysia +they were attempting +into +- +Bithynia +to go +and +not +did allow +them +the +Spirit +of Jesus +then +having passed by +- +Mysia +they came down +to +Troas +And +a vision +during +night +- +to Paul +appeared +A man +of Macedonia +certain +was +standing +and +beseeching +him +and +saying +Having passed over +into +Macedonia +help +us +now +When +the +vision +he had seen +immediately +we sought +to go forth +to +Macedonia +concluding +that +had called +- +God +us +to preach the gospel +to them +then +Having sailed +from +Troas +we made a straight course +to +Samothrace +and +- +the following day +to +Nea +Polis +and from there +to +Philippi +which +is +[the] leading +of the +district +of Macedonia +city +a colony +now +We were +staying +in +this +- +city +days +some +then +On the +day +of the +Sabbaths +we went forth +outside +the +city gate +by +a river +where +[a place of] prayer +to be +was customary +And +having sat down +we began speaking +to the +having gathered +women +And +a certain +woman +named +Lydia +a seller of purple +of [the] city +of Thyatira +worshiping +- +God +was listening +of whom +the +heart +the +Lord +opened +to attend +to the things +being spoken +by +Paul +then +When +she was baptized +and +the +house +of her +she begged +saying +If +you have judged +me +faithful +to the +Lord +to be +having entered +into +the +house +of me +abide +And +she persuaded +us +now +It happened +going +of us +to +the +[place of] prayer +a girl +certain +having +a spirit +of Python +met +us +who +gain +much +was bringing +the +masters +of her +by fortune-telling +She +having followed +- +Paul +and +us +was crying out +saying +These +- +men +servants +of the +God +- +Most High +are +who +proclaim +to you +[the] way +of salvation +then +This +she continued +for +many +days +then +Paul +Having been distressed +and +having turned +to the +spirit +he said +I command +you +in +[the] name +of Jesus +Christ +to come out +from +her +And +it came out +[the] same +- +hour +now +the +masters +of her +Having seen +that +was gone +the +hope +of the +profit +of them +having taken hold of +- +Paul +and +- +Silas +they dragged [them] +into +the +marketplace +before +the +rulers +and +having brought up +them +to the +magistrates +they said +These +- +men +exceedingly trouble +of us +the +city +Jews +being +and +preach +customs +that +to accept +nor +to practice +not +it is lawful +for us +Romans +being +And +rose up together +the +crowd +against +them +and +the +magistrates +having torn off +of them +the +garments +were commanding that +they be beaten with rods +then +having laid +on them +Many +blows +they cast [them] +into +prison +having charged +the +jailer +securely +to keep +them +who +an order +such +having received +threw +them +into +the +inner +prison +and +the +feet +of them +fastened +in +the +stocks +now +Toward +- +midnight +Paul +and +Silas +praying +were singing praises to +- +God +now +Were listening +to them +the +prisoners +then +Suddenly +earthquake +a great +there was +so that +were shaken +the +foundations +of the +prison house +then +were opened +immediately +the +doors +all +and +of all +the +chains +were loosed +then +the +jailer +Awoken +having been +and +having seen +open +the +doors +of the +prison +having drawn +his +sword +he was about +himself +to kill +supposing +to have escaped +the +prisoners +however +Called out +Paul +loud +in a voice +saying +Not +harm +do +to yourself +for +all +we are +here +now +Having called for +lights +he rushed in +and +terrified +having become +he fell down before +- +Paul +and +Silas +And +having brought +them +out +he was saying +Sirs +what +of me +to do +is necessary +that +I may be saved +And +- +they said +Believe +on +the +Lord +Jesus +and +you will be saved +you +and +the +household +of you +And +they spoke +to him +the +word +of the +Lord +along with +all +those +in +the +house +of him +And +having taken +them +in +that +- +hour +of the +night +he washed [them] +from +the +wounds +and +he was baptized +he +and +the [household] +of him +all +immediately +then +Having brought +them +into +the +house +he laid +a table [for them] +and +rejoiced +with all [his] household +having believed +- +in God +then +Day +having come +sent +the +magistrates +the +officers +saying +Release +the +men +those +then +Reported +the +jailer +the +words +these +to +- +Paul +- +Have sent +the +captains +that +you may be let go +therefore +Now +having gone out +depart +in +peace +But +- +Paul +was saying +to +them +Having beaten +us +publicly +uncondemned +men +Romans +being +they cast [us] +into +prison +and +now +secretly +us +do they throw out +indeed +No +Instead +having come +themselves +us +let them bring out +then +Reported +to the +captains +the +officers +the +words +these +then +They were afraid +having heard +that +Romans +they are +And +having come +they appealed to +them +and +having brought [them] out +they were asking [them] +to go out +of +the +city +then +Having gone forth +out of +the +prison +they came +to +- +Lydia +and +having seen [them] +they exhorted +the +brothers +and +departed +then +Having passed through +- +Amphipolis +and +- +Apollonia +they came +to +Thessalonica +where +was +a synagogue +of the +Jews +now +According to +the +custom +- +with Paul +he went in +to +them +and +for +Sabbaths +three +he reasoned +with them +from +the +Scriptures +opening +and +setting forth +that +it behooved +the +Christ +to have suffered +and +to have risen +out from +[the] dead +and +that +this +is +the +Christ +- +Jesus +whom +I +preach +to you +And +some +of +them +were obedient +and +joined themselves +- +to Paul +and +- +to Silas +along with +- +worshipping +Greeks +a multitude +great +then +women +of the +leading +not +a few +now +the +Jews +Having become jealous +and +having taken to [them] +of the +market-loungers +men +certain +wicked +and +having collected a crowd +they set in uproar +the +city +and +having assailed +the +house +of Jason +they were seeking +them +to bring out +to +the +people +however +Not +having found +them +they dragged +Jason +and +certain +brothers +before +the +city authorities +crying out +- +The [ones] +the +world +having upset +these +also +here +are come +whom +has received +Jason +And +these +all +contrary to +the +decrees +of Caesar +do +king +another +to be +Jesus +proclaiming +then +They stirred up +the +crowd +and +the +city authorities +hearing +these things +And +having taken +- +security +from +- +Jason +and +the +rest +they let go +them +And +- +the brothers +immediately +by +night +sent away +both +- +Paul +and +- +Silas +to +Berea +who +having arrived +into +the +synagogue +of the +Jews +went +now +These +were +more noble +than those +in +Thessalonica +who +received +the +word +with +all +readiness +on the +every +day +examining +the +Scriptures +if +were +these things +so +indeed +therefore +Many +of +them +believed +and +of the +Grecian +women +- +prominent +and +men +not +a few +however +When +knew +those +from +- +Thessalonica +Jews +that +also +in +- +Berea +was proclaimed +by +- +Paul +the +word +- +of God +they came +there also +stirring up +and +agitating +the +crowds +also +Immediately +then +- +Paul +sent away +the +brothers +to go +as +to +the +sea +but +remained +both +- +Silas +and +- +Timothy +there +now +Those +escorting +- +Paul +brought [him] +unto +Athens +and +having received +a command +unto +- +Silas +and +- +Timothy +that +as +quickly as possible +they should come +to +him +they departed +now +In +- +Athens +waiting for +them +- +of Paul +was provoked +the +spirit +of him +in +him +seeing +utterly idolatrous +to be +the +city +therefore +indeed +He was reasoning +in +the +synagogue +with the +Jews +and +those +worshiping +and +in +the +marketplace +on +every +day +with +those +meeting [him] +then +Some +also +of the +Epicureans +and +Stoics +philosophers +encountered +him +And +some +were saying +- +may desire +of the +babbler +this +What +to say +however +Others +he seems +Of foreign +gods +a proclaimer +to be +because +- +Jesus +and +the +resurrection +he was proclaiming the gospel of +also +Having taken hold +of him +to +the +Ares +Hill +they brought [him] +saying +Are we able +to know +what [is] +the +new +this +which +by +you +is spoken +teaching +for +Strange things +some +you are bringing +to +the +ears +of us +therefore +We resolve +to know +what +to be +wish +these things +now +[The] Athenians +all +and +the +visiting +strangers +in +nothing +else +spent their time +than +to tell +something +and +to hear +something +new +then +Having stood +Paul +in +[the] midst +of the +Ares +Hill +he was saying +Men +Athenians +in +all things +as +very religious +you +I behold +for +Passing through +and +beholding +the +objects of worship +of you +I found +even +an altar +on +which +had been inscribed +To an unknown +God +therefore +Whom +not knowing +you worship +Him +I +proclaim +to you +The +God +- +having made +the +world +and +all things +that [are] +in +it +He +of heaven +and +earth +Lord +being +not +in +hand-made +temples +dwells +nor +by +hands +of men +is He served +as needing +anything +Himself +giving +to all +life +and +breath +and +the +all +then +He made +of +one +every +nation +of men +to dwell +upon +all +the face +of the +earth +having determined +[the] appointed +times +and +the +boundaries +of the +habitation +of them +to seek +- +God +if +perhaps +indeed +they might palpate for +Him +and +might find Him +indeed +And +not +far +from +one +each +of us +He is +for +In +Him +we live +and +move +and +are +As +also +some +of the +among +you +poets +have said +for +Of [Him] +also +offspring +we are +therefore +being +Offspring +- +of God +not +we ought +to consider +to gold +or +to silver +or +to stone +a graven thing +of craft +and +imagination +of man +the +Divine Being +to be +like +indeed +therefore +The +times +- +of ignorance +having overlooked +- +God +- +now +He commands +- +men +all +everywhere +to repent +because +He set +a day +in +which +He is about +to judge +the +world +in +righteousness +by +a man +whom +He appointed +a guarantee +having provided +to all +having raised +Him +out from +[the] dead +now +Having heard of +a resurrection +of [the] dead +indeed +some +began to mock [him] +however +some +said +We will hear +you +concerning +this +also +again +Thus +- +Paul +went out +from +[the] midst +of them +however +Some +men +having joined themselves +to him +believed +among +whom +also +[were] Dionysius +the +Areopagite +and +a woman +named +Damaris +and +others +with +them +And after +these things +having departed +from +- +Athens +he came +to +Corinth +And +having found +a certain +Jew +named +Aquila +of Pontus +- +a native +recently +having come +from +- +Italy +and +Priscilla +wife +of him +because of +- +having commanded +Claudius +to depart +all +the +Jews +out of +- +Rome +he came +to them +and +due to +of the +same trade +being +he stayed +with +them +and +worked +for +they were +tentmakers +by the +trade +now +He was reasoning +in +the +synagogue +on +every +Sabbath +persuading +both +Jews +and +Greeks +now +When +came down +from +- +Macedonia +both +- +Silas +and +- +Timothy +was occupied +with the +word +- +Paul +earnestly testifying +to the +Jews +to be +the +Christ +Jesus +however +Opposing +of them +and +reviling [him] +having shaken out +the +garments +he said +to +them +The +blood +of You +[be] upon +the +head +of you +clean +I [am] +From +- +now on +to +the +Gentiles +I will go +And +having departed +from there +he came +to [the] +house +of a certain one +named +Titius +Justus +worshiping +- +God +of whom +the +house +was +adjoining +the +synagogue +now +Crispus +the +ruler of the synagogue +believed +in the +Lord +with +all +the +household +of him +And +many +of the +Corinthians +hearing +believed +and +were baptized +now +Said +the +Lord +in [the] +night +through +a vision +- +to Paul +Not +fear +but +continue speaking +and +not +be silent +because +I +am +with +you +and +no one +will lay a hand on +you +- +to harm +you +because +people +many +there are +to me +in +the +city +this +now +He remained +a year +and +months +six +teaching +among +them +the +word +- +of God +however +Gallio +being +proconsul +of +Achaia +rose up against +with one accord +the +Jews +- +Paul +and +led +him +to +the +judgment seat +saying +- +Contrary to +the +law +persuades +this [man] +- +men +to worship +- +God +now +Being about +- +Paul +to open +the +mouth +said +- +Gallio +to +the +Jews +indeed +If +it was +unrighteousness +some +or +crime +wicked +O +Jews +- +according to +reason +I would have endured with +you +however +if +it is +a question +about +a word +and +names +and +law +- +in reference to +your +you will see +[to it] yourselves +not +resolve +I +a judge +of these things +to be +And +he drove +them +from +the +judgment seat +then +all [of them] +Having seized +Sosthenes +the +ruler of the synagogue +they began to beat [him] +before +the +judgment seat +And +nothing +about these things +- +to Gallio +it mattered +Now +- +Paul +more +having remained +days +many +the +brothers +having taken leave of +sailed away +to +- +Syria +and +with +him +Priscilla +and +Aquila +having shaved +in +Cenchrea +the +head +for +he had +a vow +now +They came +to +Ephesus +and them +left +there +then +He himself +having entered +into +the +synagogue +he reasoned +with the +Jews +now +Asking [him] +of them +for +a longer +time +to remain +not +he did consent +but +having taken leave +and +having said +Again +I will return +to +you +- +God +willing +he sailed +from +- +Ephesus +and +having landed +at +Caesarea +having gone up +and +having greeted +the +church +he went down +to +Antioch +And +having stayed +time +some +he went forth +passing through +successively +the +Galatian +region +and +Phrygia +strengthening +all +the +disciples +now +A Jew +certain +Apollos +named +of Alexandria +- +a native +a man +eloquent +mighty +being +in +the +Scriptures +came +to +Ephesus +He +was +instructed in +the +way +of the +Lord +And +being fervent +- +in spirit +he was speaking +and +was teaching +earnestly +the things +concerning +- +Jesus +knowing +only +the +baptism +of John +then +He +began +to speak boldly +in +the +synagogue +however +Having heard +him +Priscilla +and +Aquila +they took to [them] +him +and +more accurately +to him +expounded +the +way +of +God +then +Resolving +he +to pass through +into +- +Achaia +having encouraged [him] +the +brothers +wrote +to the +disciples +to welcome +him +who +having arrived +helped +greatly +those +having believed +through +- +grace +for +Powerfully +the +Jews +he was refuting +publicly +showing +by +the +Scriptures +to be +the +Christ +Jesus +now +It came to pass +while +- +- +Apollos +was +in +Corinth +Paul +having passed through +the +upper +parts +to come +to +Ephesus +and +having found +certain +disciples +also +he said +to +them +If +[the] Spirit +Holy +did you receive +having believed +And [they said] +- +to +him +But +not even +did we hear +that [a] +Spirit +Holy +there is +then +He said +then +Into +what +were you baptized +And +- +they said +Into +- +John's +baptism +then +Said +Paul +John +baptized +a baptism +of repentance +the +people +telling +that +they should believe +in +the [One] +coming +after +him +that +is +in +- +Jesus +then +Having heard +they were baptized +in +the +name +of the +Lord +Jesus +And +having laid +on them +- +Paul +hands +came +the +Spirit +- +Holy +upon +them +then +they were speaking +in tongues +and +prophesying +then +There were +the +in all +men +about +twelve +then +Having entered +into +the +synagogue +he was speaking boldly +for +months +three +reasoning +and +persuading +concerning +the +kingdom +- +of God +however +When +some +were hardened +and +were disbelieving +speaking evil of +the +Way +before +the +multitude +having departed +from +them +he took separately +the +disciples +every +day +reasoning +in +the +lecture hall +of Tyrannus +then +This +continued +for +years +two +so that +all +those +inhabiting +- +Asia +heard +the +word +of the +Lord +both +Jews +and +Greeks +then +Miracles +not +- +being ordinary +- +God +was performing +by +the +hands +of Paul +so that +even +to +the +ailing +were brought +from +the +skin +of him +handkerchiefs +or +aprons +and +departed +from +them +the +diseases +also +the +spirits +- +evil +left +now +Attempted +some of +also +of the +itinerant +Jews +exorcists +to invoke +over +those +having +- +spirits +- +evil +the +name +of the +Lord +Jesus +saying +I adjure +you +[by] +Jesus +whom +Paul +proclaims +now +certain +of Sceva +a Jew +a high priest +seven +sons +this +They were +were doing +however +Answering +the +spirit +- +evil +said +to them +- +Jesus +I know +and +- +Paul +I am acquainted with +however +you +who +are you +And +having leapt +on +them +the +man +in +whom +was +the +spirit +- +evil +having overpowered +them all +he prevailed +against +them +so that +naked +and +wounded +they fled +out of +the +house +that +now +This +became +known +to all +both +Jews +and +Greeks +those +inhabiting +- +Ephesus +and +fell +fear +upon +all +them +and +was being magnified +the +name +of the +Lord +Jesus +then +Many +of those +having believed +were coming +confessing +and +declaring +the +deeds +of them +now +Many +of those +the +magic arts +having practiced +having brought +the +books +burned [them] +before +all +And +they counted up +the +prices +of them +and +found [it] +of silverlings +myriads +five +Thus +with +might +of the +Lord +the +word +continued to increase +and +prevail +now +After +were fulfilled +these things +purposed +- +Paul +in +the +Spirit +having passed through +- +Macedonia +and +Achaia +to go +to +Jerusalem +having said +- +After +- +having been +my +there +it behooves +me +also +Rome +to see +then +Having sent +into +- +Macedonia +two +of those +ministering +to him +Timothy +and +Erastus +he +remained +for a time +in +- +Asia +now +Arose +at +the +time +same +a disturbance +not +small +concerning +the +Way +for +a certain [man] +Demetrius +named +a silversmith +making +shrines +silver +of Artemis +was bringing +to the +craftsmen +no +little +business +whom +also +the +in +such +things +workmen +having brought together +he said +Men +you know +that +from +this +- +business +the +wealth +of us +is +And +you see +and +hear +that +not +only +in Ephesus +but +almost +all +- +of Asia +- +Paul +this +having persuaded [them] +has turned away +a great many +people +saying +that +not +they are +gods +- +by +hands +being made +but +Not +only +this +is endangered +to us +the +business +into +disrepute +to come +but +also +the +of the +great +goddess +Artemis +temple +for +nothing +to be reckoned +and +to be +also +deposed +the +majesty +of her +whom +all +- +Asia +and +the +world +worship +then +Having heard +and +having become +full +of rage +they were crying out +saying +Great [is] +- +Artemis +of [the] Ephesians +And +was filled +the +city +whole +with confusion +and +they rushed +with one accord +to +the +theatre +having dragged off +Gaius +and +Aristarchus +Macedonians +fellow travelers +of Paul +however +Of Paul +intending +to go in +to +the +people +not +would allow +him +the +disciples +then +Some +also +of the +Asiarchs +being +to him +friends +having sent +to +him +were urging [him] +not +to venture +himself +into +the +theatre +indeed +therefore +Others +some +thing +were crying out +for +the +assembly +was +confused +and +- +most +not +did know +for what +cause +they were assembled +now +Out of +the +crowd +to explain himself +Alexander +having thrust forward +him +the +Jews +And +- +Alexander +having motioned with +the +hand +was wanting +to make a defense +to the +people +however +Having recognized +that +a Jew +he is +a cry +one +there was +from +all +about +ongoing +hours +two +crying out +Great [is] +- +Artemis +of [the] Ephesians +then +the +town clerk +Having calmed +the +crowd +he says +Men +Ephesians +for +what +man +is there +who +not +knows +the +of [the] Ephesians +city +as being +temple-keeper +of the +great +Artemis +and +of that +fallen from the sky +therefore +Undeniable +being +these things +necessary +it is +for you +calm +to be +and +nothing +rash +to do +for +You brought +the +men +these +neither +temple plunderers +nor +blaspheming +the +goddess +of us +therefore +indeed +If +Demetrius +and +the +with +him +craftsmen +have +against +anyone +a matter +courts +are conducted +and +proconsuls +there are +let them accuse +one another +however +If +anything +beyond this +you inquire +in +the +lawful +assembly +it will be solved +for +And +we are in danger of +being accused +of insurrection +in regard to +- +this day +not one +cause +there existing +concerning +which +not +we will be able +to give +a reason +for +the +commotion +this +And +these things +having said +he dismissed +the +assembly +now +After +- +had ceased +the +uproar +- +Paul +having called to [him] +the +disciples +and +having encouraged +having said farewell +he departed +to go +to +Macedonia +then +Having passed through +the +districts +those +and +having exhorted +them +with talk +much +he came +to +- +Greece +then +Having continued +months +three +having been made +a plot +against him +by +the +Jews +he being about +to sail +into +- +Syria +arose +a purpose +- +to return +through +Macedonia +then +Was accompanied by +he +Sopater +Pyrrhus +a Berean +now +of the Thessalonians +Aristarchus +and +Secundus +and +Gaius +of Derbe +and +Timothy +now +[the] Asians +Tychicus +and +Trophimus +also +These +having gone ahead +waited for +us +in +Troas +then +We +sailed away +after +the +days +of the +Unleavened Bread +from +Philippi +and +we came +to +them +at +- +Troas +within +days +five +where +we stayed +days +seven +then +In +the +first [day] +of the +week +having come together +we +to break +bread +- +Paul +talked +to them +about +to depart +on the +next day +then +he continued +the +talk +until +midnight +now +There were +lamps +many +in +the +upper room +where +we were +assembled +then +a certain +young man +named +Eutychus +Was sitting +by +the +window +overpowered +by sleep +deep +as talked +- +Paul +on +longer +having been overpowered +by +the +sleep +he fell +from +the +third story +down +and +was picked up +dead +however +Having descended +- +Paul +fell upon +him +and +having embraced [him] +said +Not +be alarmed +for +the +life +of him +in +him +is +then +Having gone up +and +having broken +the +bread +and +having eaten +and +for +long +having talked +until +daybreak +so +he departed +then +They brought +the +boy +alive +and +were comforted +not +a little +however +We +having gone ahead +to +the +ship +sailed +to +- +Assos +there +being about +to take in +- +Paul +for +Thus +having arranged +he was +readying +himself +to go on foot +now +When +he met with +us +at +- +Assos +having taken in +him +we came +to +Mitylene +And from there +having sailed away +on the +following [day] +we arrived +opposite +Chios +then +- +the next [day] +we arrived +at +Samos +now +the +following [day] +we came +to +Miletus +for +Had decided +- +Paul +to sail by +- +Ephesus +so that +not +it might come upon +to him +to spend time +in +- +Asia +for +he was hastened +if +possible +it was +for him +on the +day +- +of Pentecost +to be +in +Jerusalem +then +From +- +Miletus +having sent +to +Ephesus +he called for +the +elders +of the +church +then +When +they had come +to +him +he said +to them +You +know +from +the first +day +on +which +I arrived +in +- +Asia +how +with +you +the +whole +time +I was +serving +the +Lord +with +all +humility +and +tears +and +trials +- +having befallen +me +in +the +plots +of the +Jews +how +I did shrink back +nothing +of that +being profitable +- +not +to declare +to you +and +to teach +you +publicly +and +from +house to house +earnestly testifying +both +to the Jewish +and +to Greeks +- +in +God +repentance +and +faith +in +the +Lord +of us +Jesus +And +now +behold +bound +in the +Spirit +I +go +to +Jerusalem +what +in +it +will happen +to me +not +knowing +except +that +the +Spirit +- +Holy +in every +city +fully testifies +to me +saying +that +chains +and +tribulations +me +await +But +not any +account +I make +my +life +dear +to myself +so as +to finish +the +course +of me +and +the +ministry +that +I received +from +the +Lord +Jesus +to testify fully +the +gospel +of the +grace +- +of God +And +now +behold +I +know +that +no more +you will see +the +face +of me +you +all +among +whom +I have gone about +proclaiming +the +kingdom +Therefore +I testify +to you +in +- +this +day +that +innocent +I [am] +of +the +blood +of all +for +not +I shrunk back +- +not +from declaring +all +the +counsel +- +of God +to you +Take heed +to yourselves +and +to all +the +flock +among +which +you +the +Spirit +- +Holy +has set +overseers +to shepherd +the +church +- +of God +which +He purchased +with +- +blood +the +own +I +know +that +will come in +after +the +departure +of me +wolves +grievous +among +you +not +sparing +the +flock +and +out from +your own +selves +will rise up +men +speaking +perverse things +- +to draw away +- +disciples +after +them +Therefore +stay awake +remembering +that +three years +night +and +day +not +I ceased +with +tears +admonishing +one +each +And +- +now +I commit +you +to +God +and +to the +word +of the +grace +of Him +- +being able +to build up +and +to give +you +an inheritance +among +those +having been sanctified +all +Silver +or +gold +or +clothing +of no one +I coveted +You yourselves +know +that +the +needs +of me +and +to those +being +with +me +ministered to +the +hands +these +In everything +I showed +you +that +by thus +straining +it behooves [us] +to aid +those +being weak +and also +to remember +the +words +of the +Lord +Jesus +how +He Himself +said +Blessed +it is +more +to give +than +to receive +And +these things +having said +having bowed +the +knee +of him +with +all +them +he prayed +then +Much +there was +weeping +among all +and +having fallen +upon +the +neck +- +of Paul +they were kissing +him +sorrowing +especially +over +the +word +that +he had spoken +that +no more +they are about +the +face +of him +to see +then +They accompanied +him +to +the +ship +then +After +it happened +sailing +our +having drawn away +from +them +having run directly +we came +to +- +Cos +and +- +the next [day] +to +- +Rhodes +and from there +to +Patara +And +having found +a boat +passing over +into +Phoenicia +having gone on board +we set sail +then +Having sighted +- +Cyprus +and +having left +it +on the left +we kept sailing +to +Syria +and +landed +at +Tyre +for +There +the +ship +was +unloading +the +cargo +then +Having sought out +the +disciples +we remained +there +days +seven +who +- +to Paul +kept telling +through +the +Spirit +not +to go up +to +Jerusalem +then +When +it happened that +had completed +we +the +days +having set out +we journeyed +accompanying +us +all +with +wives +and +children +as far as +outside +the +city +And +having bowed +the +knees +on +the +shore +having prayed +having said farewell +to one another +then +we went up +into +the +boat +then +they +returned +to +the +own +then +We +the +voyage +having completed +from +Tyre +came down +to +Ptolemais +and +having greeted +the +brothers +we stayed +day +one +with +them +now +On the +next day +having gone forth +we came +to +Caesarea +and +having entered +into +the +house +of Philip +the +evangelist +being +of +the +seven +we stayed +with +him +now +With this [man] +there were +daughters +four +virgins +prophesying +now +Remaining +days +many +came down +a certain one +from +- +Judea +a prophet +named +Agabus +and +having come +to +us +and +having taken +the +belt +- +of Paul +having bound +of himself +the +feet +and +the +hands +he said +Thus +says +the +Spirit +- +Holy +The +man +of whom +is +the +belt +this +in this way +will bind +in +Jerusalem +the +Jews +and +will deliver [him] +into +[the] hands +of [the] Gentiles +then +When +we had heard +these things +began begging +both +we +and +those +of that place +- +not +to go up +him +to +Jerusalem +Then +answered +- +Paul +What +are you doing +weeping +and +breaking +my +- +heart +for +I +not +only +to be bound +but +also +to die +at +Jerusalem +readiness +have +for +the +name +of the +Lord +Jesus +then +Not +being persuaded +of him +we were silent +having said +Of the +Lord +the +will +be done +now +After +the +days +these +having packed the baggage +we started on our way up +to +Jerusalem +then +Went +also [some] +of the +disciples +from +Caesarea +with +us +bringing [one] +with +whom +we would lodge +Mnason +a certain +Cypriot +an early +disciple +now +Having arrived +we +at +Jerusalem +gladly +received +us +the +brothers +now +On the +following [day] +went in +- +Paul +with +us +unto +James +and +arrived +all +the +elders +And +having greeted +them +he began to relate +by +one +each +the things +had done +- +God +among +the +Gentiles +through +the +ministry +of him +then +Those +having heard +began glorifying +- +God +then +They said +to him +You see +brother +how many +myriads +- +having believed +there are +among +the +Jews +and +all +zealous ones +for the +law +are +now +They have been informed +about +you +that +you teach +apostasy +from +Moses +those +among +the +Gentiles +all +Jews +telling +not +to circumcise +them +the +children +nor +in the +customs +to walk +then +What +is it +Certainly +they will hear +that +you have come +therefore +This +do you +what +to you +we say +There are +with us +men +four +a vow +having +on +themselves +These [men] +having taken +be purified +with +them +and +bear expense +for +them +so that +they will shave +the +head +and +will know +all +that +of which +they have been informed +about +you +nothing +is +but +you walk orderly +also +yourself +keeping +the +law +now +Concerning +those +having believed +of the Gentiles +we +wrote +having adjudged +to keep from +them +both +the things +sacrificed to idols +and +blood +and +what is strangled +and +sexual immorality +Then +- +Paul +having taken +the +men +on the +following +day +with +them +having been purified +entered +into +the +temple +declaring +the +fulfillment +of the +days +of the +purification +until +that +was offered +for +one +each +of them +the +sacrifice +now +When +were about +the +seven +days +to be completed +the +from +- +Asia +Jews +having seen +him +in +the +temple +began stirring up +all +the +crowd +and +laid +upon +him +the +hands +crying out +Men +Israelites +help +This +is +the +man +who +against +the +people +and +the +law +and +the +place +this +all those +everywhere +teaching +and +besides +also +Greeks +he has brought +into +the +temple +and +defiled +the +holy +place +this +for +It was they +having previously seen +Trophimus +the +Ephesian +in +the +city +with +him +they were supposing +that +whom +into +the +temple +had brought +- +Paul +also +Was thrown into commotion +the +city +whole +and +there was +a rushing together +of the +people +And +having laid hold +- +of Paul +they dragged +him +outside +the +temple +and +immediately +were shut +the +doors +then +Of them seeking +him +to kill +there came +a report +to the +commander +of the +cohort +that +all +Jerusalem +was in an uproar +who +at once +having taken with [him] +soldiers +and +centurions +ran down +upon +them +And +- +having seen +the +commander +and +the +soldiers +they stopped +beating +- +Paul +Then +having drawn near +the +commander +laid hold +of him +and +commanded [him] +to be bound +with chains +two +and +began inquiring +who +he might be +and +what +it is +he has been doing +however +Others +another [or] +one thing +were crying out +in +the +crowd +now +Not +being able +he +to know +the +facts +on account of +the +uproar +he ordered +to be brought +him +into +the +barracks +now +When +he came +to +the +stairs +it happened that +was carried +he +by +the +soldiers +because of +the +violence +of the +crowd +for +Were following +the +multitude +of the +people +crying out +Away with +him +then +Being about +to be brought +into +the +barracks +- +Paul +says +to the +commander +If +is it permitted +to me +to say +something +to +you +Then +- +he was saying +Greek +do you know +then +Not +you +are +the +Egyptian +- +before +these +the +days +having led a revolt +and +having led out +into +the +wilderness +the +four thousand +men +of the +Assassins +however +Said +- +Paul +indeed +I +am +a man +a Jew +of Tarsus +- +of Cilicia +not [of an] +insignificant +city +a citizen +now +I implore +you +allow +me +to speak +to +the +people +then +Having allowed [him] +he +- +Paul +having stood +on +the +stairs +made a sign +with the +hand +to the +people +then +great +silence +having taken place +he spoke to [them] +in the +Hebrew +language +saying +Men +brothers +and +fathers +hear +of me +the +to +you +now +defense +then +Having heard +that +in the +Hebrew +language +he was addressing +them +even more +they became +quiet +And +he says +I +am +a man +a Jew +born +in +Tarsus +- +of Cilicia +now +brought up +in +the +city +this +at +the +feet +of Gamaliel +having been instructed +according to [the] +exactness +of the +of our Fathers +law +being +a zealous one +- +for God +even as +all +you +are +this day +who +this +- +Way +persecuted +as far as +death +binding +and +betraying +to +prisons +both +men +and +women +as +also +the +high priest +bears witness +to me +and +all +the +elderhood +from +whom +also +letters +having received +to +the +brothers +to +Damascus +I was on my way +to bring +also +those +there +being +bound +to +Jerusalem +in order that +they might be punished +however +It happened +to me +journeying +and +drawing near +- +to Damascus +about +noon +suddenly +out of +- +heaven +shone +a light +great +around +me +then +I fell +to +the +ground +and +heard +a voice +saying +to me +Saul +Saul +why +Me +persecute you +then +I +answered +Who +are You +Lord +then +He said +to +me +I +am +Jesus +of +Nazareth +whom +you +are persecuting +then +indeed +Those +with +me +being +the +light +beheld +however +not +did they hear +the +voice +of the [One] +speaking +to me +then +I said +What +shall I do +Lord +And +- +the Lord +said +to +me +Having risen up +go +to +Damascus +and there +you +it will be told +concerning +all things +that +to do +it has been appointed +you +now +While +not +I could see +from +the +brightness +of the +light +that +being led by the hand +by +those +being with +me +I came +to +Damascus +then +Ananias +certain +a man +devout +according to +the +law +borne witness to +by +all +the +dwelling [there] +Jews +having come +to +me +and +having stood by [me] +said +to me +Saul +brother +receive your sight +And I +the same +- +hour +looked up +at +him +And +- +he said +The +God +of the +fathers +of us +has appointed +you +to know +the +will +of Him +and +to see +the +Righteous One +and +to hear +[the] voice +out of +the +mouth +of Him +For +you will be +for Him +to +all +men +a witness +of what +you have seen +and +heard +And +now +why +delay you +Having arisen +be baptized +and +wash away +the +sins +of you +calling on +the +name +of Him +then +It happened +to me +having returned +to +Jerusalem +and +praying +of my +in +the +temple +fell +I +into +a trance +and +saw +Him +saying +to me +Make haste +and +go away +with +speed +out of +Jerusalem +because +not +they will receive +your +testimony +about +Me +And I +said +Lord +they themselves +know +that +I +was +imprisoning +and +beating +in each +of those +synagogues +those +believing +on +You +And +when +was poured out +the +blood +of Stephen +the +witness +of You +also +I myself +was +standing by +and +consenting +and +watching over +the +garments +of those +killing +him +And +He said +to +me +Go +for +I +to +[the] Gentiles +far away +will send +you +now +They were listening +to him +until +this +- +word +and +they lifted up +the +voice +of them +saying +Away with +from +the +earth +the +such +for +Not +it is fit +he +to live +then +Were crying out +they +and +casting off +the +garments +and +dust +throwing +into +the +air +Ordered +the +commander +to be brought +him +into +the +barracks +having directed +by flogging +to be examined +him +so that +he might know +for +what +cause +like this +they were crying out +against him +however +As +he stretched forward +him +with the +straps +said +to +the +standing by +centurion +- +Paul +If +a man +a Roman +and +uncondemned +to flog +it is lawful +to you +then +Having heard +the +centurion +having gone +to the +commander +he reported [it] +saying +are you going +What +to do +for +The +man +this +a Roman +is +then +Having come near +the +commander +said +to him +Tell +me +you +a Roman +are +And +- +he was saying +Yes +then +Answered +the +commander +I +with a great +sum +the +citizenship +this +bought +But +- +Paul +was saying +however +I +even +was born [so] +therefore +Immediately +departed +from +him +those +being about +him +to examine +also +and +the +commander +was afraid +having ascertained +that +a Roman +he is +and +because +him +he had +bound +now +On the +next day +desiring +to know +- +for certain +- +why +he is accused +by +the +Jews +he unbound +him +and +commanded +to assemble +the +chief priests +and +all +the +council +And +having brought down +- +Paul +he set [him] +among +them +then +- +Paul +Having looked intently +Council +he said +Men +brothers +I +in all +conscience +good +have lived as a citizen +- +to God +unto +this +- +day + +Then +- +the high priest +Ananias +commanded +those +standing by +him +to strike +of him +the +mouth +Then +- +Paul +to +him +said +To strike +you +is about +- +God +wall +whitewashed +And +you +do you sit +judging +me +according to +the +law +and +violating law +command +me +to be struck +now +Those who +stood by +said +The +high priest +- +of God +do you insult +then +Was saying +- +Paul +Not +I was aware +brothers +that +he is +high priest +for +it has been written +- +[The] ruler +of the +people +of you +not +you shall speak +evil [of] +then +- +Paul +Having known +that +the +one +part +consists +of Sadducees +but +- +the other +of Pharisees +he began crying out +in +the +Council +Men +brothers +I +a Pharisee +am +[the] son +of a Pharisee +concerning +[the] hope +and +resurrection +of [the] dead +am judged +then +This +of him +saying +arose +a dissension +between the +Pharisees +and +Sadducees +and +was divided +the +crowd +for +Sadducees +say +not +there to be +resurrection +nor +angel +nor +spirit +however +Pharisees +confess +- +both +then +Arose +a clamor +great +and +having risen up +some +of the +scribes +of the +party +of the +Pharisees +they were contending +saying +Nothing +evil +we find +in +the +man +this +now +What if +a spirit +has spoken +to him +or +an angel +then +Great +dissension +arising +the +commander +having feared +lest +should be torn to pieces +- +Paul +by +them +he commanded +the +troop +having gone down +to take by force +him +from +midst +of them +then +to bring [him] +into +the +barracks +But +- +the following +night +having stood by +him +the +Lord +said +Take courage +for +as +you have fully testified +- +about +Me +at +Jerusalem +so +it behooves +you +also +in +Rome +to testify +then +When it was +day +having made +a conspiracy +the +Jews +put under an oath +themselves +declaring +neither +to eat +nor +to drink +until +that +they should kill +- +Paul +now +There were +more than +forty +- +this +- +plot +having made +who +having come +to the +chief priests +and +the +elders +said +With an oath +we have bound +ourselves +nothing +to eat +until +that +we should kill +- +Paul +therefore +Now +you +make a report +to the +commander +along with +the +Council +so that +he might bring down +him +to +you +as +being about +to examine +more earnestly +the things +about +him +then +we +before +- +drawing near +his +ready +are +- +to kill +him +however +the +son +of the +sister +of Paul +Having heard +of the +ambush +having come near +and +having entered +into +the +barracks +he reported [it] +- +to Paul +then +- +Paul +Having called to [him] +one +of the +centurions +he was saying +The +young man +this +take +to +the +commander +for +he has +to report +something +to him +indeed +therefore +The [one] +having taken +him +brought [him] +to +the +commander +and +he says +The +prisoner +Paul +having called to +me +asked [me] +this +- +young man +to lead +to +you +having +something +to say +to you +then +the +commander +Having taken hold +the +hand +of him +and +having withdrawn +in +private +he began to inquire +What +is it +that +to report +to me +you have +then +He said +- +The +Jews +have agreed +- +to ask +you +that +tomorrow +- +Paul +you might bring down +into +the +Council +as +being about +something +more earnestly +to inquire +about +him +therefore +You +not +should be persuaded +by them +indeed +Lie in wait +for him +of +them +men +more than +forty +who +have put under an oath +themselves +neither +to eat +nor +to drink +until +that +they have killed +him +and +now +they are +ready +awaiting +the +from +you +promise +Indeed +therefore +- +the commander +dismissed +the +young man +having instructed [him] +No one +tell +that +these things +you have reported +to +me +And +having called to [him] +certain +two +of the +centurions +he said +Prepare +soldiers +two hundred +and +horsemen +seventy +and +spearmen +two hundred +so that +they might go +as far as +Caesarea +for +the third +hour +of the +night +then +Mounts +provide +so that +having set upon [them] +- +Paul +they might bring [him] safely +to +Felix +the +governor +having written +a letter +having +the +form +this +Claudius +Lysias +To the +most excellent +governor +Felix +Greetings +The +man +this +having been seized +by +the +Jews +and +being about +to be killed +by +them +having come up +with +the +troop +I rescued [him] +having learned +that +a Roman +he is +then +Resolving +to know +the +charge +on account of +which +they were accusing +him +I brought [him] down +to +the +council +of them +I found +whom +being accused +concerning +questions +of the +law +of them +however +no +worthy +of death +or +of chains +accusation +having +then +It having been disclosed +to me +of a plot that +against +the +man +would be +at once +I sent [him] +to +you +having instructed +also +the +accusers +to speak +against +him +before +you +Indeed +therefore +- +the soldiers +according to +that +having been ordered +them +having taken +- +Paul +brought [him] +by +night +to +- +Antipatris +now +On the +next day +having allowed +the +horsemen +to go +with +him +they returned +to +the +barracks +who +having entered +into +- +Caesarea +and +having delivered +the +letter +to the +governor +presented +also +- +Paul +to him +then +Having read [it] +and +having asked +from +what +province +he is +and +having learned +that +from +Cilicia [he is] +he was saying +I will hear fully +you +when +also +the +accusers +of you +may have arrived +having commanded +in +the +Praetorium +- +of Herod +to be guarded +him +then +After +five +days +came down +the +high priest +Ananias +with +elders +some +and +an orator +Tertullus +certain +who +made a representation +to the +governor +against +- +Paul +then +Having been called +of him +began +to accuse +- +Tertullus +saying +Great +peace +we are attaining +through +you +and +excellent measures +are being done +to the +nation +this +through +- +your +foresight +both +in every way +and +everywhere +we gladly accept [it] +with +all +thankfulness +most excellent +Felix +however +In order that +not +to +any longer +you +I should be a hindrance +I implore +to hear +you +us +briefly +[in] +your +kindness +for +Having found +the +man +this +a pest +and +stirring +insurrection +among all +the +Jews +- +in +the +world +then +a leader +of the +of the +Nazarenes +sect +who +even +the +temple +to profane +attempted +whom +also +we seized +From +him +you will be able +yourself +having examined [him] +concerning +all +these things +to know +of which +we +accuse +him +then +Agreed +also +the +Jews +declaring +these things +so +to be +then +Answered +- +Paul +having made a sign +to him +the +governor +to speak +For +many +years +as being +you +judge +to +nation +this +knowing +cheerfully +to the things +concerning +myself +I make a defense +Being able +you +to know +that +not +more than +there are +to me +days +twelve +from +which +I went up +to worship +in +Jerusalem +And +did they find +me +with +anyone +reasoning +or +a tumultuous gathering +of a crowd +making +neither +in +the +temple +nor +in +the +synagogues +nor +in +the +city +Nor +are they able +to prove +to you +concerning +[the things] of which +now +they accuse +me +however +I confess +this +to you +that +according to +the +Way +which +they call +a sect +so +I serve +the +of our fathers +God +believing +all things +- +throughout +the +law +and +that +in +the +Prophets +have been written +having +a hope +in +- +God +which +also +they +themselves +await +there is about +to be +[that] a resurrection +both +of [the] just +and +of [the] unjust +In +this +also +I myself +strive +without offense +a conscience +to have +toward +- +God +and +- +men +through +everything +now +After +years +many +alms +to bring +to +the +nation +of me +I arrived +and +offerings +during +which +they found +me +purified +in +the +temple +not +with +a crowd +nor +in +tumult +however [are] +Some +from +- +Asia +Jews +who +before +you +to appear +and +to make accusation +ought +if +anything +they may have +against +me +Otherwise +themselves +it +let them say +any +unrighteousness +they found +having stood +in me +before +the +Council +[other] than +concerning +one +this +voice +which +I cried out +among +them +standing +- +Concerning +[the] resurrection +of [the] dead +I +am judged +this day +by +you +however +Put off +them +- +Felix +more precisely +having knowledge of +the things +concerning +the +Way +having said +When +Lysias +the +commander +might have come down +I will examine +the things +as to +you +having commanded +the +centurion +to keep +him +then +to [let him] have +ease +and +to forbid +not +the +own +of him +to minister +to him +then +After +days +some +- +Felix +having arrived +with +Drusilla +the +own +wife +being +a Jewess +he sent for +- +Paul +and +heard +him +concerning +the +in +Christ +Jesus +faith +then +Reasoning +he +concerning +righteousness +and +self-control +and +the +judgment +- +coming +frightened +having become +- +Felix +answered +For the +present +being +go away +then +opportunity +having found +I will call for +you +At the same time +also +he is hoping +that +riches +will be given +him +by +- +Paul +Therefore +also +often +him +sending for +he was talking +with him +however +Two years +having been completed +received [as] +- +Felix +successor +Porcius +Festus +then +wishing +favor +to acquire for himself +with the +Jews +- +Felix +left +- +Paul +imprisoned +therefore +Festus +having arrived in +the +province +after +three +days +he went up +to +Jerusalem +from +Caesarea +then +Made a presentation before +him +the +chief priests +and +the +chiefs +of the +Jews +against +- +Paul +and +they were begging +him +asking +a favor +against +him +that +he would summon +him +to +Jerusalem +an ambush +forming +to kill +him +on +the +way +Indeed +therefore +- +Festus +answered that +is to be kept +- +Paul +in +Caesarea +now +he himself +is about +in +quickness +to set out +therefore +he says +Those +among +you +[those] in power +having gone down too +let them accuse +him +if +anything +wrong +there is +in +the +man +then +Having spent +with +them +days +not +more than +eight +or +ten +having gone down +to +Caesarea +on the +next day +having sat +on +the +judgment seat +he commanded +- +Paul +to be brought +then +Having arrived +he +stood around +him +the +from +Jerusalem +having come down +Jews +many +and +weighty +charges +bringing +which +to prove +not +they were able +- +Paul +made his defense +- +Neither +against +the +law +of the +Jews +nor +against +the +temple +nor +against +Caesar +[in] anything +have I sinned +however +- +Festus +wishing +on the +Jews +a favor +to lay +answering +- +Paul +said +Are you willing +to +Jerusalem +having gone up +there +concerning +these things +to be judged +before +me +then +Said +- +Paul +before +the +judgment seat +of Caesar +Standing +I am +where +me +to be judged +it behooves +To [the] Jews +nothing +I have done wrong +as +also +you +very well +know +therefore +indeed +If +I do wrong +and +worthy +of death +anything +have done +not +I do refuse +- +to die +however +If +nothing +there is +of which +they +[can] accuse +me +no one +can +me +to them +give up +To Caesar +I appeal +Then +- +Festus +having conferred +with +the +Council +answered +To Caesar +You have appealed +to +Caesar +you will go +now +Days +some +having passed +Agrippa +the +king +and +Bernice +came down +to +Caesarea +greeting +- +Festus +now +As +many +days +they stayed +there +- +Festus +the +king +laid before +the things +relating to +- +Paul +saying +A man +certain +there is +left +by +Felix +[as] a prisoner +concerning +whom +having been +my +in +Jerusalem +made a presentation +the +chief priests +and +the +elders +of the +Jews +asking +against +him +judgment +to +whom +I answered +that +not +it is +[the] custom +with Romans +to give up +any +man +before +that +the [one] +being accused +to +face +may have [it] +the +accusers +and +[the] opportunity +of defense +he may have +concerning +the +accusation +therefore +Having come together +here +delay +no +having made +the +next [day] +having sat +on +the +judgment seat +I commanded +to be brought +the +man +concerning +whom +having stood up +the +accusers +were bringing +no +charge +of which +I +was expecting +crimes +however +Questions +certain +concerning +the +own +religion +they had +against +him +and +concerning +a certain +Jesus +having been dead +whom +to be alive +was affirming +- +Paul +now +I +Being perplexed +- +concerning +this +inquiry +was asking +if +he was willing +to go +to +Jerusalem +and there +to be judged +concerning +these things +But +- +of Paul +having appealed for +to be kept +himself +for +the +- +Emperor's +decision +I commanded +to be kept +him +until +that +I might send +him +to +Caesar +then +Agrippa +[said] to +- +Festus +I have been wanting +also +myself +the +man +to hear +he says +Tomorrow +you will hear +him +therefore +On the +next day +having come +- +Agrippa +and +- +Bernice +with +great +pomp +and +having entered +into +the +audience hall +with +both +[the] commanders +and +men +- +in +prominence +in the +city +and +having commanded +- +Festus +was brought in +- +Paul +And +says +- +Festus +Agrippa +King +and +all +the +being present with +us +men +you see +this one +concerning +whom +all +the +multitude +of the +Jews +pleaded +with me +in +both +Jerusalem +and +here +crying out [that] +not +he ought +of him +to live +no longer +however +I +having understood +nothing +worthy +of death +him +to have done +and +himself +of this one +having appealed to +the +Emperor +I determined +to send [him] +concerning +whom +definite +anything +to write +to +[my] lord +not +I have +Therefore +I have brought +him +before +you all +and +especially +before +you +King +Agrippa +so that +the +examination +having taken place +I might have +something +to write +for +Absurd +to me +it seems +[in] sending +a prisoner +not +also +the +against +him +charges +to specify +then +Agrippa +to +- +Paul +was saying +It is permitted +you +for +yourself +to speak +Then +- +Paul +having stretched out +the +hand +began his defense +King +Agrippa +Concerning +all +of which +I am accused +by +[the] Jews +I esteem +myself +fortunate +before +you +today +to defend myself +being about +Especially +being +you +acquainted +with all +the +of +[the] Jews +and +customs +also +controversies +therefore +I implore [you] +patiently +to hear +me +indeed +then +The +manner of life +of me +from +youth +- +from [its] +beginning +having been +among +the +nation +of me +also +in +Jerusalem +know +all +Jews +knowing +me +from the first +if +they would be willing +to testify +that +according to +the +strictest +sect +- +of our +religion +I lived [as] +a Pharisee +And +now +for [the] +hope +of the +to +the +fathers +of us +having been made +by +- +God +promise +I stand +being judged +to +which +to attain +the +twelve tribes +of us +in +earnestness +night +and +day +serving +hope +concerning +which +hope +I am accused +by +the Jews +O king +Why +incredible +is it judged +by +you +if +- +God +[the] dead +raises +indeed +therefore +I +thought +in myself +I ought +to +the +name +of Jesus +- +of Nazareth +many things +contrary +to do +which +also +I did +in +Jerusalem +and +also +many +of the +saints +I +in +prisons +locked up +the +from +the +chief priests +authority +having received +then +being put to death +they +I cast against [them] +a vote +And +in +all +the +synagogues +often +punishing +them +I was compelling [them] +to blaspheme +then +Exceedingly +being furious +against them +I kept persecuting [them] +as far as +even +to +- +foreign +cities +during +which +journeying +to +- +Damascus +with +[the] authority +and +commission +of +the +chief priests +day +mid +on +the +road +I saw +from heaven +above +the +brightness +of the +sun +having shone around +a light +me +and +those +with +me +journeying +O king +and +All +of us +having fallen down +to +the +ground +I heard +a voice +saying +to +me +in the +Hebrew +language +Saul +Saul +why +Me +persecute you +[It is] hard +for you +against +[the] goads +to kick +then +I +said +Who +are You +Lord +And +- +the Lord +said +I +am +Jesus +whom +you +are persecuting +But +rise up +and +stand +on +the +feet +of you +for +for this +purpose +I have appeared +to you +to appoint +you +a servant +and +a witness +both +of that which +you have seen +of Me +then +of the things in which +I will appear +to you +delivering +you +out from +the +people +and +from +the +Gentiles +to +whom +I +am sending +you +to open +eyes +of them +that +they may turn +from +darkness +to +light +and +from the +power +- +of Satan +to +- +God +[that] +may receive +they +forgiveness +of sins +and +[an] inheritance +among +those +having been sanctified +by faith +that [is] +in +Me +So then +O king +Agrippa +not +I was +disobedient +to the +heavenly +vision +but +both +to those +in +Damascus +first +and +Jerusalem +and +all +the +region +- +of Judea +and +to the +Gentiles +I kept declaring +to repent +and +to turn +to +- +God +worthy +- +of repentance +works +doing +On account of +these things +the Jews +me +having seized +in +the +temple +they were attempting +to kill +therefore +having obtained +Help +- +from +- +God +unto +the +day +this +I have stood +bearing witness +both +to small +and +to great +nothing +saying +other +than what +was about +to happen +both +the +prophets +and +Moses +said +that +would suffer +the +Christ +as +first +through +resurrection +from [the] dead +He is about +light +to preach +both +to +our people +and +to the +Gentiles +now +These things +of him +saying in his defense +- +Festus +in a loud +- +voice +said +You are insane +Paul +The +great +learning +of you +to +insanity +turns [you] +But +- +Paul +says +most excellent +Festus +Not +I am insane +but +of truth +and +sobriety +words +I utter +for +Understands +concerning +these things +the +king +to +whom +also +using boldness +I speak +for +Are hidden from +him +of these things +not +I am persuaded +none +for +not +is +done +in +a corner +of these things +King +Agrippa +Believe you +the +prophets +I know +that +you believe +Then +- +Agrippa +[said] to +- +Paul +Within +so little +me +do you persuade +a Christian +to become +And +- +Paul [said] +- +I would wish +- +to God +both +in +a little +and +in +much +not +only +you +but +also +all +those +hearing +me +this day +to become +such +as +also +I +am +except +the +chains +these +Rose up +then +the +king +and +the +governor +and +- +Bernice +and +those +sitting with +them +and +having withdrawn +they began speaking +to +one another +saying +- +Nothing +of death +or +of chains +worthy +is doing +the +man +this +then +Agrippa +to +Festus +was saying +Have been released +could +the +man +this +if +not +he had appealed +to Caesar +now +When +was determined +- +sailing +our +to +- +Italy +they delivered +both +- +Paul +and +certain +other +prisoners +to a centurion +named +Julius +of the cohort +of Augustus +then +Having boarded +a ship +of Adramyttium +being about +to sail +to +the +along +- +Asia +places +we set sail +being +with +us +Aristarchus +a Macedonian +of Thessalonica +then +The +next [day] +we landed +at +Sidon +then +- +Julius +Considerately +- +Paul +having treated +allowed [him] +to +his +friends +having gone +care +to receive +And from there +having set sail +we sailed under +- +Cyprus +because of +- +the +winds +being +contrary +And +- +then +- +along +- +Cilicia +and +Pamphylia +having sailed across [the sea] +we came +to +Myra +- +of Lycia +the +centurion +And there +having found +a ship +of Alexandria +sailing +to +- +Italy +he placed +us +into +it +now +For +many +days +sailing slowly +and +with difficulty +having arrived +off +- +Cnidus +not +permitting +us +the +wind +we sailed under +- +Crete +off +Salmone +and +With difficulty +coasting along +it +we came +to +a place +certain +called +Fair +Havens +to which +near +[the] city +of Lasea +was +now +Much +time +having passed +and +being +already +dangerous +the +voyage +because of +- +even +the +Fast +already +being over +was admonishing [them] +- +Paul +saying +to them +Men +I understand +that +with +disaster +and +much +loss +not +only +of the +cargo +and +of the +ship +but +also +the +lives +of us +to be +is about +the +voyage +But +- +the centurion +by the +pilot +and +the +ship owner +rather +was persuaded +than +by the things +by +Paul +spoken +now +Unsuitable +the +harbor +being +to +winter in +the +majority +reached +a decision +to set sail +from there +if +somehow +they might be able +having arrived +at +Phoenix +a harbor +- +of Crete +looking +toward +[the] southwest +and +toward +[the] northwest +to winter [there] +now +Having blown gently +a south wind +having thought +the +purpose +to have obtained +having weighed [anchor] +very near +they began coasting along +- +Crete +however +After +not +long +there came +down +from it +a wind +tempestuous +- +called +the Northeaster +then +Having been caught +the +ship +and +not +being able +to face +to the +wind +having given way +we were driven along +then +having run under +An Island +certain +called +Cauda +we were able +with difficulty +control +to gain +of the +lifeboat +which +having taken up +supports +they began using +undergirding +the +ship +then +Fearing +lest +into +the +sandbars of Syrtis +they should fall +having lowered +the +gear +thus +they were driven along +now +Violently +being storm-tossed +of us +on the +next [day] +a jettison of cargo +they began to make +and +on the +third [day] +with [their] own hands +the +tackle +of the +ship +they cast away +now +Neither +sun +nor +stars +appearing +for +many +days +and +tempest +no +small +lying on [us] +from then on +was abandoned +hope +all +- +being saved +of us +also +Much +time without food +there being +at that time +having stood up +- +Paul +in +midst +of them +he said +O +men +indeed +It behooved [you] +having been obedient +to me +not +to have set sail +from +- +Crete +then +to have incurred +the +disaster +this +and +- +loss +And yet +- +now +I exhort +you +to keep up your courage +for +loss +of life +none +there will be +from among +you +only +of the +ship +for +Stood by +me +this +- +night +- +of God +whose +am +whom +and +I serve +an angel +saying +Not +fear +Paul +Caesar +you +to stand before +it behooves +And +behold +has granted +to you +- +God +all +those +sailing +with +you +Therefore +take courage +men +for +I believe +- +God +that +thus +it will be +according to +the +way +it has been said +to me +however +it behooves +Upon +an island +certain +us +to fall +then +When +the fourteenth +night +had come +being driven about +of us +in +the +Adriatic +toward +[the] middle +of the +night +began sensing +the +sailors +to be drawing near +some +land +to them +And +having taken soundings +they found +fathoms +twenty +then +A little +having gone farther +and +again +having taken soundings +they found +fathoms +fifteen +then +Fearing +lest +somewhere +on +rocky +places +we might fall +out of [the] +stern +having cast +anchors +four +they were praying for +day +to come +then +Of the +sailors +seeking +to flee +out of +the +ship +and +having let down +the +lifeboat +into +the +sea +under pretense +as +from +[the] bow +anchors +to cast out +being about +said +- +Paul +to the +centurion +and +to the +soldiers +If +not +these +remain +in +the +ship +you +to be saved +not +are able +Then +cut away +the +soldiers +the +ropes +of the +lifeboat +and +allowed +her +to fall away +then +Until +that +day +was about +to come +kept urging +- +Paul +all +to partake +of food +saying +The fourteenth +[is] day +today +watching +without eating +you continue +nothing +having taken +Therefore +I exhort +you +to take +food +indeed +this +for +- +of you +preservation +is +for +not one +of you +a hair +of +the +head +will perish +now +Having said +these things +and +having taken +bread +he gave thanks +- +to God +before +all +and +having broken [it] +he began +to eat +then +Encouraged +having been +all +also +themselves +took +food +then +We were +the +altogether +souls +in +the +ship +two hundred +seventy +six +then +Having been filled +with food +they began to lighten +the +ship +casting out +the +wheat +into +the +sea +now +When +day +it was +the +land +not +they did recognize +however +they noticed +a bay +certain +having +a shore +on +which +to drive +the +ship +they determined +if +they should be able +And +the +anchors +having cut away +they left [them] +in +the +sea +at the same time +having loosened +the +ropes +of the +rudders +And +having hoisted +the +foresail +to the +blowing [wind] +they began making +for +the +shore +however +Having fallen +into +a place +between two seas +they ran aground +the +vessel +and +indeed +the +bow +having stuck fast +it remained +immovable +and +- +the stern +was being broken up +by +the +violence +now +Of the +soldiers +[the] plan +was +that +the +prisoners +they should kill +lest +anyone +having swum away +should escape +But +- +the centurion +desiring +to save +- +Paul +hindered +them +of +[the] purpose +then +he commanded +those +being able +to swim +having cast [themselves] off +first +on +the +land +to go out +and +the +rest +indeed +some +on +boards +then +some +on +things +- +from +the +ship +And +thus +it came to pass that +all +were brought safely +to +the +land +And +having been saved +then +we found out +that +Malta +the +island +is called +And +- +the natives +were showing +the +not [just] +ordinary +kindness +to us +for +Having kindled +a fire +they received +all +of us +because of +the +rain +- +coming on +and +because +of the +cold +now +Having gathered +- +Paul +of sticks +a +quantity +and +having laid [them] +on +the +fire +a viper +out from +the +heat +having come +fastened +on the +hand +of him +then +When +saw +the +natives +hanging +the +beast +from +the +hand +of him +to +one another +they began to say +By all means +a murderer +is +the +man +this +whom +having been saved +from +the +sea +to live +- +Justice +not +has permitted +indeed +then +The [one] +having shaken off +the +creature +into +the +fire +he suffered +no +injury +But +- +they were expecting +him +to be about +to become inflamed +or +to fall down +suddenly +dead +however +A while +great +of them +waiting +and +seeing +nothing +amiss +to +him +happening +having changed their opinion +they began declaring +him +to be +a god +now +In +the [parts] +around +the +place +that +were +lands +belonging to the +chief +of the +island +named +Publius +who +having received +us +days +three +hospitably +entertained [us] +then +It came to pass +the +father +- +of Publius +fevers +and +dysentery +oppressed with +was lying +toward +whom +having entered +and +having prayed +- +Paul +having laid +the +hands +on him +healed +him +then +Of this +having taken place +also +the +rest +- +in +the +island +having +infirmities +were coming +and +were healed +who +also +with many +honors +honored +us +and +on setting sail +they laid on [us] +the things +for +the +needs +then +After +three +months +we sailed +in +a ship +having wintered +in +the +island +Alexandrian +with a figurehead of +the Dioscuri +And +having put in +at +Syracuse +we stayed +days +three +from where +having gone around +we arrived +at +Rhegium +And +after +one +day +having come on +a south wind +on the second day +we came +to +Puteoli +where +having found +[some] brothers +we were entreated +with +them +to remain +days +seven +And +so +to +- +Rome +we came +And from there +the +brothers +having heard +the things +concerning +us +came out +to +meet +us +as far as +of Appius +[the] market +and +[the] Three +Taverns +whom +having seen +- +Paul +having given thanks +to +God +took +courage +now +When +we came +to +Rome +was allowed +- +Paul +to stay +by +himself +with +the +guarding +him +soldier +then +It came to pass +after +days +three +called together +he +those +being +of the +Jews +leaders +then +Having come together +of them +he was saying +to +them +men +brothers +I +nothing +against +having done +the +people +or +the +customs +- +of our fathers +a prisoner +from +Jerusalem +was delivered +into +the +hands +of the +Romans +who +having examined +me +were wanting +to let [me] go +on account of +- +not one +cause +of death +existing +in +me +however +Objecting +of the +Jews +I was compelled +to appeal to +Caesar +not +as +the +nation +of me +anything +to lay against +having +therefore +For +this +- +cause +I have called +you +to see +and +to speak to [you] +for +because of +the +hope +- +of Israel +the +chain +this +I have around [me] +And +- +to +him +they said +neither +We +letters +concerning +you +received +from +- +Judea +nor +having arrived +any +of the +brothers +reported +or +said +anything +concerning +you +evil +however +We deem it worthy +from +you +to hear +what +you think +for +truly +concerning +the +sect +this +known +to us +it is +that +everywhere +it is spoken against +then +Having appointed +him +a day +came +to +him +to +the +lodging +many +to whom +he expounded +fully testifying +to the +kingdom +- +of God +then +persuading +them +concerning +- +Jesus +from +both +the +law +of Moses +and +the +Prophets +from +morning +to +evening +And +indeed +some +were persuaded of +the things +he is speaking +however +some +refused to believe +then +Discordant +being +with +one another +they began to leave +having spoken +- +Paul +word +one +- +Rightly +the +Spirit +- +Holy +spoke +by +Isaiah +the +prophet +to +the +fathers +of you +saying +Go +to +the +people +this +and +say +In hearing +you will hear +and +no +not +understand +and +in seeing +you will see +and +no +not +perceive +for +Has grown dull +the +heart +of the +people +this +and +with the +ears +barely +they hear +and +the +eyes +of them +they have closed +lest +ever +they should see +with the +eyes +and +with the +ears +they should hear +and +with the +heart +they should understand +and +should turn +and +I will heal +them +therefore +Known +be it +to you +that +to the +Gentiles +has been sent +this +- +salvation +- +of God +they +then +will listen +then +He stayed +two years +whole +in +his own +rented house +and +was welcoming +all +- +coming +unto +him +proclaiming +the +kingdom +- +of God +and +teaching +the things +concerning +the +Lord +Jesus +Christ +with +all +boldness +unhinderedly +Paul +a servant +of Christ +Jesus +a called +apostle +having been set apart +for +[the] gospel +of God +which +He promised beforehand +through +the +prophets +of Him +in +[the] Scriptures +Holy +concerning +the +Son +of Him +- +having come +of [the] +seed +of David +according to +flesh +- +having been declared +Son +of God +in +power +according to [the] +Spirit +of holiness +by +resurrection +[from the] dead +Jesus +Christ +the +Lord +of us +through +whom +we have received +grace +and +apostleship +unto +obedience +of faith +among +all +the +Gentiles +on behalf of +the +name +of Him +among +whom +are +also +you +called +of Jesus +Christ +To all +those +being +in +Rome +beloved +of God +called +saints +to you +Grace +and +peace +from +God +[the] Father +of us +and +[the] Lord +Jesus +Christ +indeed +First +I thank +the +God +of me +through +Jesus +Christ +for +all +of you +because +the +faith +of you +is being proclaimed +in +all +the +world +for +Witness +my +is +- +God +whom +I serve +in +the +spirit +of me +in +the +gospel +of the +Son +of Him +how +unceasingly +mention +of you +I make +always +upon +the +prayers +of me +imploring +if +perhaps +now +at last +I will make a prosperous journey +by +the +will +- +of God +to come +to +you +for +I long +to see +you +that +I may impart +some +gift +spiritual +to you +to +the +strengthening +of you +now +that +is +to be encouraged together +among +you +through +the +among +one another +faith +both +of you +and +of me +now +brothers +Not +I do want +you +to be ignorant +that +many times +I purposed +to come +to +you +and +was hindered +until +the +present +that +some +fruit +I might have +also +among +you +as +even +among +the +other +Gentiles +both +To Greeks +and +to barbarians +both +to [the] wise +and +[the] foolish +a debtor +I am +Thus +- +as to +me [there is] +readiness +also +to you +who [are] +in +Rome +to preach the gospel +for +Not +I am ashamed of +the +gospel +for +[the] power +of God +it is +unto +salvation +to everyone +- +believing +both +to Jewish +first +and +to Greek +for +[The] righteousness +of God +in +it +is revealed +from +faith +to +faith +as +it has been written +And +- +the righteous +by +faith +will live +for +Is revealed +[the] wrath +of God +from +heaven +upon +all +ungodliness +and +unrighteousness +of men +- +the +truth +by +unrighteousness +suppressing +because +the +known +- +of God +manifest +is +among +them +for +- +God +to them +has revealed [it] +for +The +invisible qualities +of Him +the +both +eternal +of Him +power +and +divinity +from +[the] creation +of [the] world +by the +things made +being understood +are clearly seen +for +- +to be +them +without excuse +For +having known +- +God +not +as +God +they glorified [Him] +or +were thankful +but +they became futile +in +the +thinking +of them +and +was darkened +the +foolish +of them +heart +Professing +to be +wise +they became fools +and +they changed +the +glory +of the +immortal +God +into +a likeness +of an image +of mortal +man +and +birds +and +quadrupeds +and +creeping things +Therefore +gave up +them +- +God +in +the +desires +of the +hearts +of them +to +impurity +- +to dishonor +the +bodies +of them +between +themselves +who +changed +the +truth +- +of God +into +the +falsehood +and +reverenced +and +served +the +created thing +beyond +the [One] +having created [it] +who +is +blessed +to +the +ages +Amen +Because of +this +gave up +them +- +God +to +passions +of dishonor +for +Even +- +females +of them +changed +the +natural +use +into +that +contrary to +nature +then +Likewise +also +the +males +having left +the +natural +use +of the +female +were inflamed +in +the +desire +of them +toward +one another +males +with +males +the +shame +working out +and +the +recompense +which +was fitting +of the +error +of them +in +themselves +receiving +And +as +not +they did see fit +- +God +to have +in [their] +knowledge +gave up +them +- +God +to +a depraved +mind +to do +things +not +being proper +being filled with +all +unrighteousness +wickedness +covetousness +malice +full +of envy +murder +strife +deceit +maliciousness +gossips +slanderers +hateful to God +insolent +arrogant +boastful +inventors +of evil things +to parents +disobedient +foolish +untrustworthy +heartless +unmerciful +who +the +righteous decree +- +of God +having known +that +those +such +things +doing +worthy +of death +are +not +only +them +are practicing +but +also +are approving of +those +practicing [them] +Therefore +inexcusable +you are +O +man +each one +who +is judging +for +In +that which +you judge +the +other +yourself +you are condemning +for +- +the same things +you do +the [one] +judging +however +We know +that +the +judgment +- +of God +is +according to +truth +upon +those +- +such things +practicing +now +Suppose you +this +O +man +the [one] +judging +those +- +such things +practicing +and +doing +them [yourself] +that +you +will escape +the +judgment +- +of God +Or +the +riches +of the +kindness +of Him +and +the +forbearance +and +the +patience +despise you +not knowing +that +the +kindness +- +of God +to +repentance +you +leads +however +Because of +the +hardness +of you +and +unrepentant +heart +you are treasuring up +to yourself +wrath +in +[the] day +of wrath +and +revelation +of righteous judgement +- +of God +who +will give +to each +according to +the +works +of him +indeed +to those who +with +endurance +in work +good +glory +and +honor +and +immortality +are seeking +life +eternal +however +to those +of +self-interest +and +disobeying +the +truth +however +being persuaded about +- +unrighteousness +wrath +and +anger +tribulation +and +distress +upon +every +soul +of man +- +working +- +evil +both +of Jewish +first +and also +of Greek +however +glory +and +honor +and +peace +to everyone +- +doing +- +good +both +to Jewish +first +and +to Greek +for +Not +there is +partiality +with +- +God +for +As many as +without [the] Law +have sinned +without [the] Law +also +will perish +and +as many as +in +[the] Law +have sinned +by +[the] Law +will be judged +for +not +the +hearers +of [the] law [are] +righteous +with +- +God +but +the +doers +of [the] law +will be justified +for +When +Gentiles +- +not +the law +having +by nature +the things +of the +law +do +these +[the] Law +not +having +to themselves +are +a law +who +show +the +work +of the +law +written +in +the +hearts +of them +bearing witness +their +- +conscience +and +between +one another +the +thoughts +accusing +or +also +defending [them] +day +on +[that] +will judge +- +God +the +secrets +- +of men +according to +the +gospel +of me +by +Christ +Jesus +however +If +you +a Jew +are called +and +rely on +[the] law +and +boast +in +God +and +know +the +will +and +approve +the things +being superior +being instructed +out of +the +law +then +are persuaded [that] +you yourself +are +a guide +of [the] blind +a light +to those +in +darkness +an instructor +of [the] foolish +a teacher +of infants +having +the +embodiment +- +of knowledge +and +of the +truth +in +the +law +then +[you] +teaching +another +yourself +not +do you teach +You +preaching +not +to steal +do you steal +You +saying +not +to commit adultery +do you commit adultery +You +abhorring +- +idols +do you rob temples +You who +in +law +boast +through +the +transgression +of the +law +- +God +dishonor you +For +- +[The] name +- +of God +through +you +is blasphemed +among +the +Gentiles +as +it has been written +- +indeed +Circumcision +profits +if +[the] law +you do +however +if +a transgressor +of law +you are +the +circumcision +of you +uncircumcision +has become +therefore +If +the +uncircumcision +the +requirements +of the +law +keeps +not +the +uncircumcision +of him +for +circumcision +will be reckoned +And +will judge +the +by +nature +uncircumcision +the +law +fulfilling +you +who +with +[the] letter +and +circumcision +[are] a transgressor +of law +for +Not +the [one] +on +the +outward +a Jew +is +neither +the [one] +outwardly +the +outward +in +flesh +[is] circumcision +but +he who [is] +on +the +inward +a Jew [is one] +and +circumcision [is] +of heart +in +spirit +not +in letter +of whom +the +praise +[is] not +of +men +but +of +- +God +then [is] +What +the +superiority +of the +Jew +Or +what [is] +the +benefit +of the +circumcision +Much +in +every +way +for +indeed +Chiefly +that +they were entrusted with +the +oracles +- +of God +for +What +if +disbelieved +some +Not +the +unbelief +of them +the +faithfulness +- +of God +will nullify +Never +may it be +however +Let be +- +God +true +now +every +man +a liar +as +it has been written +That +- +You may be justified +in +the +words +of You +and +will prevail +in +- +being judged +Your +however +If +the +unrighteousness +of us +God’s +righteousness +shows +what +shall we say +[Is] +unrighteous +- +God +- +inflicting +the +wrath +According to +man +I speak +Never +may it be +Otherwise +how +will judge +- +God +the +world +however +If +the +truth +- +of God +in +- +my +lie +abounded +to +the +glory +of Him +why +still +also I +as +a sinner +am judged +And [is it] +not +as +we are slanderously charged +and +as +affirm +some [that] +us +to say +- +Let us do +things +evil +that +may come +the +good things +Their +- +condemnation +just +is +then +What +Are we better +Not +at all +for +We have already charged +both +Jews +and +Greeks +all +under +sin +to be +As +it has been written +- +None +there is +righteous +not even +one +none +there is +- +understanding +none +there is +- +seeking after +- +God +All +have turned away +together they +have become worthless +none +there is +who +is practicing +good +not +there is +so much as +one +A grave +having been opened +the +throat +of them [is] +with the +tongues +of them +they keep practicing deceit +[the] venom +of vipers +[is] under +the +lips +of them +of whom +the +mouth +of cursing +and +of bitterness +is full +swift [are] +the +feet +of them +to shed +blood +ruin +and +misery +[are] in +the +paths +of them +and +[the] way +of peace +not +they have known +Not +there is +fear +of God +before +the +eyes +of them +now +We know +that +whatever +the +law +says +to those +under +the +law +it speaks +so that +every +mouth +may be stopped +and +under judgment +may be +all +the +world +- +to God +Therefore +by +works +of [the] Law +not +will be justified +any +flesh +before +Him +for +through +[the] Law +[is] knowledge +of sin +however +Now +apart from +law +[the] righteousness +of God +has been revealed +being borne witness to +by +the +Law +and +the +Prophets +now +[the] righteousness +of God +through +faith +from Jesus +Christ +toward +all +those +believing +for +Not +there is +distinction +for +All +have sinned +and +fall short +of the +glory +- +of God +being justified +freely +by the +of Him +grace +through +the +redemption +that +[is] in +Christ +Jesus +whom +set forth as +- +God +a propitiation +through +faith +in +- +His +blood +for +a showing forth +of the +righteousness +of Him +because of +the +forbearance +of the +having taken place beforehand +sins +in +the +forbearance +- +of God +for +of +[the] showing forth +the +righteousness +of Him +in +the +present +time +for +- +to be +Him +just +and +justifying +the [one] +of +faith +of Jesus +then [is] +Where +the +boasting +It has been excluded +Through +what +principle +That +of works +No +but +through +[the] principle +of faith +therefore +We reckon +to be justified +by faith +a man +apart from +works +of the Law +Or +of Jews +[is He] the +God +only +not +also +of Gentiles +Yes +also +of Gentiles +since indeed +One +- +God [is] +who +will justify +[the] circumcision +by +faith +and +[the] uncircumcision +through +the [same] +faith +then +Law +do we nullify +through +- +faith +Never +may it be +Instead +law +we uphold +then +shall we say +What +discovered +Abraham +the +father +of us +according to +[the] flesh +for +If +Abraham +by +works +was justified +he has +ground of boasting +but +not +toward +God +for +What +the +Scripture +says +then +Believed +Abraham +- +God +and +it was reckoned +to him +for +righteousness +now +To the [one] +working +the +reward +is reckoned +not +according to +grace +but +according to +debt +however +To the [one] +not +working +however +believing +on +the [One] +justifying +the +ungodly +is reckoned +the +faith +of him +for +righteousness +just as +also +David +declares +the +blessedness +of the +man +to whom +- +God +credits +righteousness +apart from +works +Blessed +[are they] of whom +the +lawless deeds +are forgiven +and +of whom +the +sins +are covered +blessed +[the] man +against whom +no +not +will reckon +[the] Lord +sin +then +[Is] the +blessing +this +on +the +circumcision +or +also +on +the +uncircumcision +for +We are saying +was credited +- +to Abraham +the +faith +as +righteousness +then +How +was it credited +being +In +circumcision +or +in +uncircumcision +Not +in +circumcision +but +in +uncircumcision +And +he received +[the] sign +of circumcision +a seal +of the +righteousness +of the +faith +that [he had] +[while] in +the +uncircumcision +for +the +to be +him +father +of all +those +believing +in +uncircumcision +for +- +to be credited +to them +the +righteousness +and +father +of circumcision +to those +not +of +circumcision +only +but +also +to those +walking +in the +steps +of the +during +uncircumcision +faith +of the +father +of us +Abraham +for +Not +through +[the] Law +the +promise [was] +that +heir +[of the] world +he +should be +- +to Abraham +or +the +descendants +of him +but +through +[the] righteousness +of faith +for +If +those +of +[the] Law [are] +heirs +has been made void +- +faith +and +made of no effect +the +promise +For +- +law +wrath +brings +now +where +no +there is +law +neither [is] +transgression +Therefore +it [is] +of +faith +that [it may be] +according to +grace +for +- +to be +sure +the +promise +to all +the +seed +not +to that +of +the +law +only +but +also +to that +of [the] +faith +of Abraham +who +is +[the] father +of all +of us +before +whom +he believed +God +the [One] +giving life +to the +dead +and +calling +the things +not +[into] being +even +existing +as +it has been written +- +A father +of many +nations +I have made +you +who +against +hope +in +hope +believed +for +- +to become +him +[the] father +of many +nations +according to +that +having been spoken +So +shall be +the +offspring +of you +And +not +having become weak +in the +faith +he considered +- +of himself +the body +having become dead +a hundred years old +about +being +and +the +lifelessness +of the +womb +of Sarah +however +At +the +promise +- +of God +not +he did waver +- +through unbelief +but +was strengthened +- +in faith +having given +glory +- +to God +and +having been fully assured +that +He is +able +what +He had promised +also +to do +Therefore +also +it was credited +to him +unto +righteousness +now +Not +it was written +on account of +him +alone +that +it was credited +to him +but +also +on account of +us +to whom +to be credited +it is about +to those +believing +on +the [One] +having raised +out from +[the] dead +Jesus +the +Lord +of us +who +was delivered over +for +the +trespasses +of us +and +was raised +for +the +justification +of us +therefore +Having been justified +by +faith +peace +we have +with +- +God +through +the +Lord +of us +Jesus +Christ +through +whom +also +- +access +we have +by the +faith +into +the +grace +this +in +which +we stand +and +we boast +in +hope +of the +glory +- +of God +now +Not +only [so] +but +also +we glory +in +- +tribulations +knowing +that +- +tribulation +perseverance +produces +And +- +perseverance +character +and +- +character +hope +And +- +hope +not +does make [us] ashamed +because +the +love +- +of God +has been poured out +into +the +hearts +of us +through +[the] Spirit +Holy +the [One] +having been given +to us +indeed +Yet +Christ +being +of us +without strength +still +according to +[the] right time +for +[the] ungodly +died +indeed +Rarely +for +a righteous [man] +anyone +will die +though +on behalf of +the +good [man] +perhaps +someone +even +would dare +to die +however +Demonstrates +the +of Himself +love +to +us +- +God +that +still +sinners +being +of us +Christ +for +us +died +therefore +Much +more +having been justified +now +by +the +blood +of Him +we will be saved +by +Him +from +the +wrath +for +If +enemies +being +we were reconciled +- +to God +through +the +death +of the +Son +of Him +much +more +having been reconciled +shall we be saved +in +the +life +of Him +now +Not +only [so] +but +also +we are rejoicing +in +- +God +through +the +Lord +of us +Jesus +Christ +through +whom +now +the +reconciliation +we have received +Because of +this +just as +through +one +man +- +sin +into +the +world +entered +and +through +- +sin +- +death +also +thus +to +all +men +- +death +passed +for +that +all +sinned +for +Until +[the] law +sin +was +in [the] +world +however +sin +not +is imputed +not +there being +law +Nevertheless +reigned +- +death +from +Adam +until +Moses +even +over +those +not +having sinned +in +the +likeness +of the +transgression +of Adam +who +is +a type +of the +coming [One] +But +[is] not +like +the +trespass +so +also +the +gift +for +If +by the +of the +one +trespass +the +many +died +how much +more +the +grace +- +of God +and +the +gift +in +grace +which [is] +of the +one +man +Jesus +Christ +to +the +many +did abound +And +[is] not +as +through +one +having sinned +the +gift +for +truly +The +judgment [was] +of +one +[was] unto +condemnation +but +- +the gift +[is] out of +many +trespasses +unto +justification +for +If +by the +of the +one +trespass +- +death +reigned +through +the +one +how much +more +those +the +abundance +- +of grace +and +of the +gift +- +of righteousness +receiving +in +life +will reign +through +the +one +Jesus +Christ +So +then +just as +by +one +trespass +to +all +men +[it is] unto +condemnation +so +also +by +one +act of righteousness +to +all +men +[it is] unto +justification +of life +for +For as +through +the +disobedience +of the +one +man +sinners +were made +the +many +so +also +through +the +obedience +of the +One +righteous +will be made +the +many +now +[The] law +entered +so that +might abound +the +trespass +however +where +abounded +- +sin +overabounded +- +grace +so that +just as +reigned +the +sin +in +- +death +so +also +- +grace +might reign +through +righteousness +unto +life +eternal +through +Jesus +Christ +the +Lord +of us +then +What +will we say +Shall we continue +- +in sin +that +- +grace +may abound +Never +may it be +Who +we died +- +to sin +how +still +shall we live +in +it +Or +are you unaware +that +as many as +have been baptized +into +Christ +Jesus +into +the +death +of Him +have been baptized +therefore +We were buried +with Him +through +- +baptism +into +- +death +so that +just as +was raised up +Christ +out from +[the] dead +by +the +glory +of the +Father +so +also +we +in +newness +of life +should walk +for +If +united +we have become +in the +likeness +of the +death +of Him +certainly +also +of the +resurrection +we will be +this +knowing +that +- +old +of us +self +was crucified with [Him] +so that +might be annulled +the +body +- +of sin +[that] +no longer +are enslaved +we +- +to sin +for +The [one] +having died +has been freed +from +- +sin +now +If +we died +with +Christ +we believe +that +also +we will live with +Him +knowing +that +Christ +having been raised up +out from +[the] dead +no more +dies +Death +Him +no longer +rules over +for +That which +He died +- +to sin +He died +once for all +however +that which +He lives +He lives +- +to God +So +also +you +consider +yourselves +to be +indeed +dead +- +to sin +however +living +- +to God +in +Christ +Jesus +therefore +Not +let reign +- +sin +in +the +mortal +of you +body +in order +- +to obey +the +desires +of it +Neither +yield +the +members +of you +[as] instruments +of unrighteousness +- +to sin +but +yield +yourselves +- +to God +as +out from +[the] dead +living +and +the +members +of you +[as] instruments +of righteousness +- +to God +for +Sin +you +not +will rule over +for +not +you are +under +law +but +under +grace +then +What +Shall we sin +because +not +we are +under +law +but +under +grace +Never +may it be +Not +know you +that +to whom +you yield +yourselves +[as] slaves +for +obedience +slaves +you are +to him whom +you obey +whether +of sin +to +death +or +of obedience +to +righteousness +however +Thanks [be] +- +to God +that +you used to be +slaves +- +of sin +now +you have become obedient +from [the] +heart +to +which +you were handed over +to the form +of teaching +now +Having been set free +from +- +sin +you have become slaves +- +to righteousness +In human terms +I speak +on account of +the +weakness +of the +flesh +of you +for +For as +you yielded +the +members +of you +in bondage +- +to impurity +and +to +lawlessness +unto +- +lawlessness +so +now +yield +the +members +of you +in bondage +- +to righteousness +unto +sanctification +for +When +slaves +- +of sin +you were +free +you were +- +from righteousness +therefore +What +fruit +had you +then +in the [things] +of which +now +you are ashamed +for +The +end +of those things +[is] death +however +Now +having been set free +from +- +sin +now +having become slaves +- +to God +you have +the +fruit +of you +unto +sanctification +now +- +the end +[is] life +eternal +for +The +wages +- +of sin +[is] death +but +- +the gift +- +of God +life +eternal +in +Christ +Jesus +the +Lord +of us +Or +brothers +are you ignorant +for +to those knowing +law +I speak +that +the +law +rules over +the +man +for +as long as +[the] time +he is alive +for +The +married +woman +to the +living +husband +is bound +by law +however +if +should die +the +husband +she is cleared +from +the +law +of the +husband +Then +therefore +being alive +the +husband +an adulteress +she will be called +if +she is +to man +another +however +if +should die +the +husband +free +she is +from +the +law +[so as for] +not +to be +her +an adulteress +having been +to man +another +Likewise +brothers +of me +also +you +have been put to death +to the +law +through +the +body +- +of Christ +for +- +to belong +you +to another +to the [One] +out from +[the] dead +having been raised +so that +we should bear fruit +- +to God +for +While +we were +in +the +flesh +the +passions +- +of sins +that [were] +through +the +law +were at work +in +the +members +of us +to +the +bringing forth of fruit +- +to death +however +Now +we have been released +from +the +law +having died +to +that which +we were bound +in order for +to serve +us +in +newness +of [the] Spirit +and +not +in oldness +of [the] letter +then +What +shall we say +[Is] the +law +sin +Never +may it be +But +- +sin +not +I have known +if +not +by +law +for +then +- +covetousness +not +I had been conscious of +if +not +the +law +had said +Not +you shall covet +however +An occasion +having taken +- +sin +by +the +commandment +it produced +in +me +all +covetousness +for +apart from +[the] Law +sin +[is] dead +however +I +was alive +apart from +law +once +however +having come +the +commandment +the +sin +revived +then +I +died +And +proved to be +me +the +commandment +that [was] +to +life +this +to +death +for +The +sin +an occasion +having taken +by +the +commandment +deceived +me +and +by +it +put [me] to death +So +indeed +- +the law [is] +holy +and +the +commandment [is] +holy +and +righteous +and +good +then +That which +[is] good +to me +has become +death +Never +may it be +But +- +sin +in order that +it might be shown to be +sin +through +that which [is] +good +to me +is working out +death +so that +might become +beyond +excess +sinful +- +sin +through +the +commandment +for +We know +that +- +[the] Law +spiritual +is +however +I +fleshly +am +having been sold +under +- +sin +for +What +I do +not +I understand +for +not +what +I want +this +I do +but +what +I hate +this +I do +now +If +that which +not +I do want +this +I do +I consent +to the +law +that [it is] +good +now +In that case +no longer +I +am doing +it +but +the +dwelling +in +me +sin +for +I know +that +nothing +there dwells +in +me +that +is +in +the +flesh +of me +good +for +- +to will +is present with +me +but +- +to do +the +good +not +for +Not +that +I desire +good +I do +but +that +not +I do want +evil +this +I practice +now +If +what +not +I do want +this +I +do +[it is] no longer +I +who do +it +but +- +dwelling +in +me +sin +so +I find +the +principle +me +that +desiring +to do +- +good +that +me +- +evil +is present with +for +I delight +in the +law +- +of God +according to +the +inward +man +however +I see +another +law +in +the +members +of me +warring against +the +law +of the +mind +of me +and +making captive +me +to +the +law +- +of sin +- +being +in +the +members +of me +O wretched +man +I am +Who +me +will deliver +out of +the +body +- +of death +this +Thanks [be] +to +God +through +Jesus +Christ +the +Lord +of us +Then +so +indeed +myself +I +with the +mind +serve +law +God’s +but [with] +- +the flesh +[the] law +of sin +therefore +[There is] no +condemnation +now +to those +in +Christ +Jesus +For +- +the law +of the +Spirit +of +life +in +Christ +Jesus +has set free +you +from +the +law +- +of sin +and +- +of death +For +- +powerless [being] +the +law +in +that +it was weak +through +the +flesh +- +God +- +of Himself +Son +having sent +in +likeness +of flesh +of sin +and +for +sin +condemned +- +sin +in +the +flesh +so that +the +righteousness +of the +law +should be fulfilled +in +us +- +walking +not +according to +the flesh +but +according to +[the] Spirit +for +Those +according to +flesh +being +the things +of the +flesh +mind +however +those +according to +Spirit +the things +of the +Spirit +for +The +mind +of the +flesh +[is] death +but +the +mind +of the +Spirit +life +and +peace +because +the +mind +of the +flesh +[is] hostility +toward +God +for +to +[the] law +- +of God +not +it is subject +for +nor even +can it [be] +now +Those +in +flesh +being +God +to please +not +are able +now +You +are +not +in +flesh +but +in +Spirit +if indeed [the] +Spirit +of God +dwells +in +you +however +if +anyone +[the] Spirit +of Christ +not +has +he +not +is +of Him +however +If +Christ +[is] in +you +indeed +the +body [is] +dead +on account of +sin +however +the +Spirit +[is] life +on account of +righteousness +now +If +the +Spirit +of the [One] +having raised up +- +Jesus +out from +[the] dead +dwells +in +you +the [One] +having raised up +out from +[the] dead +Christ +Jesus +will give life +also +to the +mortal +bodies +of you +on account of +- +dwelling +in +you +His +Spirit +So +then +brothers +debtors +we are +not +to the +flesh +- +according to +flesh +to live +for +If +according to +flesh +you live +you are about +to die +however +if +by [the] Spirit +the +deeds +of the +body +you put to death +you will live +for +As many as +by [the] Spirit +of God +are led +these +sons +of God +are +for +Not +you have received +a spirit +of bondage +again +to +fear +but +you have received +[the] Spirit +of divine adoption as sons +by +whom +we cry +Abba +- +Father +Himself +the +Spirit +bears witness with +the +spirit +of us +that +we are +children +of God +now +If +children +also +heirs +indeed +heirs +of God +now +joint-heirs +of Christ +if indeed +we suffer with [Him] +so that +also +we may be glorified together +for +I reckon +that +not +comparable +the +sufferings +of the +present +time [are] +to +the +coming +to be revealed +to +us +glory +for +The +earnest expectation +of the +creation +the +revelation +of the +sons +- +of God +awaits +for +To the +futility +the +creation +was subjected +not +willingly +but +because of +the [One] +having subjected [it] +in +hope +that +also +itself +the +creation +will be set free +from +the +bondage +- +of decay +into +the +freedom +of the +glory +of the +children +- +of God +for +We know +that +all +the +creation +groans together +and +travails together +until +- +now +now +Not +only [so] +but +even +ourselves +the +firstfruit +of the +Spirit +having +we +also +ourselves +in +ourselves +groan +awaiting +divine adoption as sons +the +redemption +of the +body +of us +for +In this +hope +we were saved +however +hope +being seen +not +is +hope +for +what +sees +any +one +does he hope for +however +If +what +not +we see +we hope for +in +patience +we await +now +Likewise +also +the +Spirit +joins to help +the +weakness +of us +for +the +things which +we should pray for +as +it behooves +not +we know +but +Himself +the +Spirit +makes intercession +with groanings +inexpressible +now +The [One] +searching +- +hearts +knows +what [is] +the +mindset +of the +Spirit +because +according to +God +He intercedes +for +[the] saints +now +We know +that +to those +loving +- +God +all things +works together +for +good +to those +according to +[His] purpose +called +being +For +those whom +He foreknew +also +He predestined [to be] +conformed to +the +image +of the +Son +of Him +for +- +to be +Him +firstborn +among +many +brothers +then +Those whom +He predestined +these +also +He called +and +whom +He called +these +also +He justified +then +whom +He justified +these +also +He glorified +then +What +will we say +to +these things +If +- +God [is] +for +us +who [can be] +against +us +indeed +He who +the +own +Son +not +spared +but +for +us +all +gave up +Him +how +not +also +with +Him +things +all +us +will He grant +Who +will bring an accusation +against +[the] elect +of God +God [is] +the [One] +justifying +Who [is] +the [one] +condemning +[For it is] Christ +Jesus +the [one] +having died +now +rather +having been raised up +who +is +at [the] +right hand +- +of God +who +and +is interceding +for +us +Who +us +will separate +from +the +love +- +of Christ +Tribulation +or +distress +or +persecution +or +famine +or +nakedness +or +danger +or +sword +As +it has been written +- +For the sake +of you +we face death +all +the +day +we were regarded +as +sheep +of slaughter +But +in +these things +all +we more than conquer +through +the [One] +having loved +us +for +I am persuaded +that +neither +death +nor +life +nor +angels +nor +principalities +nor +things present +nor +things to come +nor +powers +nor +height +nor +depth +nor +any +created thing +other +will be able +us +to separate +from +the +love +- +of God +- +in +Christ +Jesus +the +Lord +of us +[The] truth +I speak +in +Christ +Not +I am lying +bearing witness with +me +the +conscience +of me +in [the] +Spirit +Holy +that +grief +to me +is +great +and +unceasing +sorrow +in the +heart +of me +for +Could wish +myself +I +a curse +to be +separated from +- +Christ +for +the +brothers +of me +- +kinsmen +of me +according to +[the] flesh +who +are +Israelites +whose [is] +the +divine adoption as sons +and +the +glory +and +the +covenants +and +the +lawgiving +and +the +service +and +the +promises +whose [are] +the +patriarchs +and +from +whom [is] +- +Christ +- +according to +the flesh +- +being +over +all +God +blessed +to +the +ages +Amen +however +[It is] not +as +that +has failed +the +word +- +of God +for +Not +all +who [are] +of +Israel +[are] these +Israel +Nor +because +they are +seed +of Abraham +[are] all +children +rather +In +Isaac +will be named +to you +offspring +That +is +not +the +children +of the +flesh +these [are] +children +- +of God +but +the +children +of the +promise +are regarded +as +offspring +for +Of [the] promise +the +word +[is] this +At +the +time +this +I will come +and +there will be +- +to Sarah +a son +then +Not +only +but +also +Rebecca +conception +having +by +one +Isaac +the +father +of us +for +not yet +having been born +nor +having done +anything +good +or +evil +so that +the +according to +election +purpose +- +of God +might stand +not +of +works +but +of +the [One] +calling +it was said +to her +- +The +older +will serve +the +younger +As +it has been written +- +Jacob +I loved +but +- +Esau +I hated +then +What +shall we say +Not +injustice +with +- +God [is there] +Never +may it be +for +To +Moses +He says +I will show mercy to +- +whom +I may show mercy +and +I will have compassion on +- +whom +I may have compassion +So +then +[it is] not +of the +willing +nor +of the +running +but +- +showing mercy +of God +for +Says +the +Scripture +to +Pharaoh +- +For +this very +therefore +I have raised up +you +so that +I might show +in +you +the +power +of Me +and +that +should be declared +the +name +of Me +in +all +the +earth +So +then +to whom +He wants +He shows mercy +now +whom +He wants +He hardens +then +You will say +to me +Why +still +does He find fault +for +The +purpose +of Him +who +is resisting +O +man +but rather +who +are +you +- +answering against +- +God +Not +will say +the +thing formed +to the [One] +having formed [it] +Why +me +have you made +like this +Or +not +has +the +potter +authority +over the +clay +out of +the +same +lump +to make +vessel +indeed +one +unto +honor +however +one +unto +dishonor +now +What if +- +God +desiring +to show +the +wrath +and +to make known +the +power +of Him +bore +with +much +patience +[the] vessels +of wrath +having been fitted +for +destruction +also +that +He might make known +the +riches +of the +glory +of Him +upon +[the] vessels +of mercy +which +He prepared beforehand +for +glory +whom +even +He has called +us +not +only +out from +[the] Jews +but +also +out from +[the] Gentiles +As +also +in +- +Hosea +He says +I will call +that which [is] +not +people +of Me +people +of Me +and +her +not +having been loved +having been loved +and +It will happen that +in +the +place +where +it was said +to them +Not +people +My [are] +You +there +they will be called +sons +of God +[the] living +also +Isaiah +cries out +concerning +- +Israel +Though +shall be +the +number +of the +sons +of Israel +as +the +sand +of the +sea +[only] the +remnant +will be saved +for +[The] sentence +concluding +and +bringing swiftly +will perform [the] +Lord +upon +the +earth +And +as +foretold +Isaiah +If +not +[the] Lord +of Hosts +had left +us +descendants +- +like +Sodom +we would have become +and +- +like +Gomorrah +we would have been made +then +What +will we say +That +Gentiles +- +not +pursuing +righteousness +have attained +righteousness +now +righteousness +that [is] +by +faith +however +Israel +pursuing +a law +of righteousness +to +[that] law +not +did attain +Because of +why +Because [it was] +not +by +faith +but +as +by +works +They stumbled +over the +stone +- +of stumbling +as +it has been written +Behold +I lay +in +Zion +a stone +of stumbling +and +a rock +of offense +and +the [one] +believing +on +Him +never +will be put to shame +Brothers +indeed +the +desire +- +of my +heart +and +the +supplication +to +- +God +on behalf of +them +[is] for +salvation +for +I bear witness +about them +that +zeal +for God +they have +but +not +according to +knowledge +for +Being ignorant of +the +- +of God +righteousness +and +the +own +to establish +seeking +to the +righteousness +- +of God +not +they submitted +for +[The] end +of law +[is] Christ +unto +righteousness +to everyone +- +believing +for +Moses +writes +- +[of] the +righteousness +that [is] +of +law +The +having done +man +will live +by +them +however +The +of +faith +righteousness +thus +speaks +Not +you should say +in +the +heart +of you +Who +will ascend +into +- +heaven +that +is +Christ +to bring down +or +Who +will descend +into +the +abyss +that +is +Christ +out from +[the] dead +to bring up +But +what +says it +Near +you +the +word +is +in +the +mouth +of you +and +in +the +heart +of you +That +is +the +word +- +of faith +which +we proclaim +that +if +you confess +with +the +mouth +of you +[The] Lord [is] +Jesus +and +believe +in +the +heart +of you +that +- +God +Him +raised +out from +[the] dead +you will be saved +for +In the heart +is belief +unto +righteousness +now +in the mouth +is confession +unto +salvation +for +Says +the +Scripture +Everyone +- +believing +on +Him +not +will be put to shame +for +Not +there is +difference +between +Jew +and +Greek +for +- +the same +Lord +of all +is rich +toward +all +those +calling +Him +for +Whoever +- +that +shall call upon +the +name +of [the] Lord +will be saved +then +How +shall they call +on [Him] +whom +not +they believed +now +How +shall they believe on [Him] +of whom +not +they have heard +now +How +shall they hear +apart from +preaching +now +How +shall they preach +if +not +they are sent +As +it has been written +How +beautiful +the +feet +of those +proclaiming good news +good things +But +not +all +heeded +the +good news +for +Isaiah +says +Lord +who +has believed +the +report +of us +So +- +faith [is] +from +hearing +and +- +hearing +through +[the] word +of Christ +But +I ask +no +not +did they hear +Indeed +Into +all +the +earth +has gone out +the +voice +of them +and +to +the +ends +of the +world +the +words +of them +But +I ask +not +Israel +not +did know +First +Moses +says +I +will provoke to jealousy +you +by [those] +not +a nation +by +a nation +without understanding +I will anger +you +then +Isaiah +is very bold +and +says +I was found +those +Me +not +seeking +manifest +I became +to those +Me +not +inquiring after +however +As for +- +Israel +he says +All +the +day +I have stretched out +the +hands +of Me +to +a people +disobeying +and +contradicting +then +I ask +not +did reject +- +God +the +people +of Him +Never +may it be +for +Also +I +an Israelite +am +of [the] +seed +of Abraham +of [the] tribe +of Benjamin +Not +did reject +- +God +the +people +of Him +whom +He foreknew +Or +not +know you +in +Elijah +what +says +the +Scripture +how +he pleads +- +with God +against +- +Israel +Lord +the +prophets +of You +they have killed +the +altars +of You +they have torn down +and I +have been left +alone +and +they are seeking +the +life +of me +But +what [was] +spoken +to him +the +divine answer +I have left +to Myself +seven thousand +men +who +not +have bowed +[the] knee +- +to Baal +then +Thus +also +in +the +present +time +a remnant +according to +[the] election +of grace +there has been +now +If +by grace +no longer +from +works +otherwise +- +grace +no longer +would be +grace +then +What +What +is seeking +Israel +this +not +it has obtained +but +- +the elect +obtained [it] +now +The +rest +were hardened +as +it has been written +Gave +them +- +God +a spirit +of stupor +eyes +- +not +to see +and +ears +- +not +to hear +unto +the +today +day +And +David +says +Let be +the +table +of them +for +a snare +and +for +a trap +and +for +a stumbling block +and +for +a retribution +to them +let be darkened +the +eyes +of them +- +not +to see +and +the +backs +of them +for +ever +bent over +then +I ask +not +did they stumble +that +they might fall +Never +may it be +But +in the +of them +trespass +- +[is] salvation +to the +Gentiles +so as +- +to provoke to jealousy +them +however +If +the +trespass +of them +[is] riches +of [the] world +and +the +failure +of them +[is the] riches +of [the] Gentiles +how much +more +the +fullness +of them +now +I am speaking +To you +the +Gentiles +indeed +therefore +Upon +as much as +am +I +of [the] Gentiles +apostle +the +ministry +of me +I magnify +if +at all +I shall provoke to jealousy +of me +the +flesh +and +shall save +some +of +them +for +If +the +rejection +of them +[is the] reconciliation +of [the] world +what [will be] +the +acceptance +if +not +life +out from +[the] dead +now +If +the +firstfruit +[is] holy +also +the +lump +and +if +the +root +[is] holy +also +the +branches +however +If +some +of the +branches +were broken off +now +you +a wild olive tree +being +were grafted in +among +them +and +a fellow-partaker +of the +root +of the +fatness +of the +olive tree +have become +not +boast over +the +branches +now +If +you boast against [them] +not +you +the +root +support +but +the +root +you +then +You will say +Were broken off +branches +that +I +might be grafted in +Rightly so +by the +unbelief +they were broken off +however +you +- +by faith +stand +Not +high +be minded +but +be afraid +for +If +- +God +the +according to +nature +branches +not +spared +neither +you +will He spare +therefore +Behold +[the] kindness +and +severity +of God +indeed +upon +those +having fallen +severity +however +toward +you +kindness +of God +if +you continue in +the +kindness +otherwise +also +you +will be cut off +now +Even they +if +not +they continue +- +in unbelief +will be grafted in +for +able +is +- +God +again +to graft in +them +for +If +you +out of +the +according to +nature +a wild olive tree +were cut off +and +contrary to +nature +were grafted +into +a cultivated olive tree +how much +more +these +who +according to +nature [are] +will be grafted into +the +own +olive tree +for +brothers +Not +I want +you +to be ignorant +of the +mystery +this +that +not +you may be +in +yourselves +wise +that +a hardening +in +part +- +to Israel +has happened +until +that +the +fullness +of the +Gentiles +may come in +and +so +all +Israel +will be saved +as +it has been written +Will come +out of +Zion +the [One] +Delivering +He will remove +ungodliness +from +Jacob +And +this [is] +to them +the +from +Me +covenant +when +I shall take away +the +sins +of them +indeed +As regards +the +gospel +[they are] enemies +on account of +you +however +As regards +the +election +beloved +on account of +the +patriarchs +for +Irrevocable +[are] the +gifts +and +the +calling +- +of God +for +Just as +you +once +were disobedient +- +to God +however +now +have been shown mercy +the +of these +disobedience +so +also +these +now +have been disobedient +the +for your +mercy +so that +also +they +now +may have mercy shown [them] +for +Has bound up +- +God +- +all +in +disobedience +that +- +all +He may show mercy to +O +[the] depth +of riches +both +of wisdom +and +knowledge +of God +How +unsearchable +the +judgments +of Him +and +untraceable +the +ways +of Him +for +Who +has known +[the] mind +of [the] Lord +or +who +counselor +of Him +has been +Or +who +has first given +to Him +and +it will be recompensed +to him +For +from +Him +and +through +Him +and +unto +Him +- +[are] all things +To Him [be] +the +glory +to +the +ages +Amen +therefore +brothers +I exhort +through +the +compassions +- +of God +you +to present +the +bodies +of you +a sacrifice +living +holy +- +to God +well-pleasing +which is +[the] reasonable +service +of you +And +not +be conformed +to the +age +this +but +be transformed +by the +renewing +of the +mind +for +- +to prove +by you +what [is] +the +will +- +of God +- +good +and +well-pleasing +and +perfect +for +I say +through +the +grace +- +having been given +to me +to everyone +- +being +among +you +not +to be high-minded +above +what +to think +it behooves [you] +but +to think +so as +- +to be sober-minded +as +to each +- +God +has allotted +a measure +of faith +for +Just as +in +one +body +many +members +we have +now +- +the members +all +not +the +same +function +have +so +the +many +one +body +we are +in +Christ +and +- +individually +one +of another +members +however +We are having +gifts +different +according to +the +grace +- +having been given +to us +if +prophecy +according to +the +proportion +of the +faith +or +service +in +the +service +or +- +teaching +in +the +teaching +or +- +exhorting +in +the +exhortation +- +giving +in +generosity +- +leading +with +diligence +- +showing mercy +with +cheerfulness +[Let] +love [be] +unfeigned +abhorring +- +evil +cleaving to +- +good +- +in brotherly love +to +one another +devoted +- +in honor +one another +esteeming +- +in diligence +not +lagging +- +in spirit +being fervent +the +Lord +serving +- +in hope +rejoicing +- +in tribulation +being patient +- +in prayer +being constant +to the +needs +of the +saints +contributing +- +hospitality +pursuing +Bless +those +persecuting +Bless +and +not +curse +to rejoice +with the +rejoicing +to weep +with the +weeping +the +same thing +toward +one another +minding +not +the things +haughty +minding +but +with the +lowly +going along +Not +be +wise +in +yourselves +To no one +evil +for +evil +repaying +providing +right +before +all +men +if +possible +- +of +you +with +all +men +living at peace +beloved +never +yourselves +avenging +instead +give +place +- +to wrath +for +it has been written +Mine [is] +vengeance +I +will repay +says [the] +Lord +On the contrary +If +should hunger +the +enemy +of you +feed +him +if +he should thirst +give drink +him +for +this +doing +coals +of fire +you will heap +upon +the +head +of him +Not +be overcome +by +- +evil +but +overcome +with +- +good +- +evil +Every +soul +to the authorities +being above [him] +let be subject +for +Not +there is +authority +if +not +by +God +however +those +existing +by +God +having been instituted +are +Therefore +the [one] +resisting +the +authority +the +- +of God +ordinance +has resisted +now +those +having resisted +upon themselves +judgment +will bring +for +The +rulers +are +a terror +not +- +to good +works +but +- +to evil +now +Do you desire +not +to fear +the +authority +The +good +do +and +you will have +praise +from +him +for +Of God +servant +he is +to you +for +- +good +however +If +- +evil +you do +be afraid +for +not +in vain +the +sword +he bears +for +of God +a servant +He is +an avenger +for +wrath +to the [one] +- +evil +doing +Therefore +necessary [it is] +to be subject +not +only +on account of +the +wrath +but +also +on account of +the +conscience +for +Because of +this +also +taxes +pay you +for +servants +of God +they are +upon +this very +thing +attending continually +Render +to all +their +dues +to whom +the +tax +the +tax +to whom +the +revenue +the +revenue +to whom +the +respect +the +respect +to whom +the +honor +the +honor +To no one +nothing +owe +if +not +- +one another +to love +for +the [one] +loving +the +other +[the] Law +has fulfilled +For +- +Not +you shall commit adultery +Not +you shall murder +Not +you shall steal +Not +you shall covet +and +if +any +other +commandment +in +the +word +this +it is summed up +in +the [saying] +You shall love +the +neighbor +of you +as +yourself +- +Love +to the +neighbor +evil +not +does do +therefore +[the] fulfillment +of [the] law +- +love [is] +And +knowing +this +the +time +that [it is the] +hour +already +for you +out of +sleep +to awaken +for +now +nearer +[is] of us +the +salvation +than +when first +we believed +The +night +is nearly over +and +- +the day +has drawn near +therefore +We should cast off +the +works +- +of darkness +now +we should put on +the +armor +- +of light +As +in +daytime +properly +we should walk +not +in reveling +and +drinking +not +in sexual immorality +and +sensuality +not +in dissension +and +jealousy +But +put on +the +Lord +Jesus +Christ +and +of the +flesh +provision +not +make +for +desires +now +The [one] +being weak +in the +faith +receive +not +for +passing judgment +on reasonings +indeed +One +believes +to eat +all things +however +the [one] +being weak +vegetables +eats +The [one] +eating +the [one] +not +eating +not +let him despise +now +the [one] +not +eating +him +eating +not +let him judge +for +- +God +him +has received +You +who +are +- +judging +another’s +servant +To the +own +master +he stands +or +falls +however +He will be upheld +for +able is +the +Lord +to uphold +him +for +truly +One +judges +a day +[to be] above +[another] day +however +one +judges +every +day [alike] +Each +in +the +own +mind +let be fully assured +The [one] +regarding +the +day +to [the] Lord +regards [it] +does observe +the [one] +eating +to [the] Lord +eats +for +he gives thanks +- +to God +and +the [one] +not +eating +to [the] Lord +not +he eats +and +he gives thanks +- +to God +for +No one +of us +to himself +lives +and +no one +to himself +dies +for +both +If +we should live +to the +Lord +we live +also +if +we should die +to the +Lord +we die +therefore +both +If +we should live +also +if +we should die +the +Lord’s +we are +for +Unto +this +Christ +died +and +lived again +that +both [the] +dead +and +living +He might rule over +however +You +why +judge you +the +brother +or you +or +also +you +why +do despise +the +brother +of you +for +All +we will stand before +the +judgment seat +of +God +for +It has been written +Live +I +says +[the] Lord +that +to Me +will bow +every +knee +and +every +tongue +will confess +- +to God +So +then +each +of us +concerning +himself +account +will give +- +to God +therefore +No longer +one another +should we judge +but +this +determine +rather +- +not +to put +before [your] +brother +[any] stumbling block +or +snare +I know +and +I am persuaded +in [the] +Lord +Jesus +that +nothing [is] +unclean +of +itself +if +not +to him +reckoning +anything +unclean +to be +to that one +unclean [it is] +for +If +on account of +food +the +brother +of you +is grieved +no longer +according to +love +are you walking +Not +with the +food +of you +that one +destroy +for +whom +Christ +died +therefore +Not +let be spoken of as evil +your +- +good +for +Not +is +the +kingdom +- +of God +eating +and +drinking +but +righteousness +and +peace +and +joy +in [the] +Spirit +Holy +for +The [one] +in +these things +serving +- +Christ +[is] well-pleasing +- +to God +and +approved +- +by men +So +then +we should pursue +the things +- +of peace +and +the things +- +for edification +- +among +each other +Not +for the sake of +food +destroy +the +work +- +of God +indeed [are] +All things +clean +but +[it is] wrong +to the +man +- +through +a stumbling block +eating +[It is] good +- +neither +to eat +meat +nor +to drink +wine +nor [anything] +in +which +the +brother +of you +stumbles +You +[the] faith +that +have +to +yourself +keep +before +- +God +Blessed [is] +the [one] +not +judging +himself +in +what +he approves +however +if +The [one] +doubting +he eats +has been condemned +because [it is] +not +of +faith +now +everything +that [is] +not +of +faith +sin +is +now +We ought +we +who [are] +strong +the +weaknesses +of the +weak +to bear +and +not +ourselves +to please +Each +of us +the +neighbor +let please +unto +the +good +for +edification +for +Even +- +Christ +not +Himself +pleased +but +as +it has been written +The +reproaches +of those +reproaching +You +have fallen +on +Me +for +Whatever +was written in the past +for +- +our +instruction +was written +so that +through +- +endurance +and +through +the +encouragement +of the +Scriptures +- +hope +we might have +now +The +God +- +of endurance +and +- +encouragement +may He give +you +the +same +to be of mind +with +one another +according to +Christ +Jesus +so that +with one accord +with +one +mouth +you may glorify +the +God +and +Father +of the +Lord +of us +Jesus +Christ +Therefore +receive +one another +as +also +- +Christ +received +you +to +[the] glory +- +of God +for +I say +Christ +a servant +of [the] circumcision +to have become +for +[the] truth +of God +in order +- +to confirm +the +promises given +to the +fathers +and [for] +- +the Gentiles +for +mercy +to glorify +- +God +as +it has been written +Because of +this +I will praise +You +among +[the] Gentiles +and +to the +name +of You +will I sing +And +again +it says +Gentiles +Rejoice you +with +the +people +of Him +And +again +all +the +Gentiles +Praise +the +Lord +and +praise +Him +all +the +peoples +And +again +Isaiah +says +There will be +the +root +- +of Jesse +and +the [One] +arising +to rule over +Gentiles +in +Him +[the] Gentiles +will hope +And +- +the God +- +of hope +may fill +you +with all +joy +and +peace +in +- +believing +for +- +to abound +you +in +- +hope +in +[the] power +[of the] Spirit +Holy +now +brothers +of me +I am persuaded +also +myself +I +concerning +you +that +also +you yourselves +full +are +of goodness +being filled +with all +- +knowledge +being able +also +one another +to admonish +however +More boldly +I have written +to you +in +part +as +reminding +you +because of +the +grace +- +having been given +to me +by +- +God +for +- +to be +me +a minister +Christ +of Jesus +to +the +Gentiles +administering the sacred service +of the +gospel +- +of God +so that +might become +the +offering +of the +Gentiles +acceptable +having been sanctified +in [the] +Spirit +Holy +therefore +I have +the +boasting +in +Christ +Jesus +in the things +pertaining to +- +God +for +Not +will I dare +to speak of +anything +what +except +has accomplished +Christ +through +me +unto [the] +obedience +of [the] Gentiles +by word +and +deed +in [the] +power +of signs +and +wonders +in [the] +power +of [the] Spirit +of God +so as +for me +from +Jerusalem +and +around +unto +- +Illyricum +to have fully proclaimed +the +gospel +- +of Christ +now +thus +being ambitious +to preach the gospel +not +where +had been named +Christ +so that +not +upon +another’s +foundation +I might build +Rather +as +it has been written +They will see +to whom +not +it was proclaimed +concerning +Him +and +those that +not +have heard +will understand +Therefore +also +I have been hindered +- +many [times] +- +to come +to +you +however +Now +no longer +a place +having +in +the +regions +these +now +a great desire +having had +- +to come +to +you +for +many +years +whenever +- +I may go +to +- +Spain +for +I hope +going through +to see +you +and +by +you +to be equipped +there +if +of you +first +in +part +I should be filled +however +Now +I am going +to +Jerusalem +ministering +to the +saints +for +Were pleased +Macedonia +and +Achaia +a contribution +certain +to make +for +the +poor +among the +saints +- +in +Jerusalem +for +They were pleased +and +debtors +they are +of them +for +If +the things +spiritual +of them +have shared in +the +Gentiles +they ought +also +in +the +material things +to minister +to them +therefore +This +having finished +and +having sealed +to them +the +fruit +this +I will set off +through +you +into +Spain +now +I know +that +coming +to +you +in +[the] fullness +of the blessing +of Christ +I will come +now +brothers +I exhort +by +the +Lord +of us +Jesus +Christ +and +by +the +love +of the +Spirit +you +to strive together with +me +in +the +prayers +for +me +to +- +God +so that +I may be delivered +from +those +refusing to be persuaded +in +- +Judea +and +the +service +of me +which [is] +in +Jerusalem +acceptable +to the +saints +may be +so that +in +joy +having come +to +you +by [the] +will +of God +I may be refreshed with +you +And +- +the God +- +of peace +[be] with +all +of you +Amen +now +I commend +to you +Phoebe +the +sister +of us +being +a servant +of the +church +- +in +Cenchrea +that +her +you might receive +in [the] +Lord +worthily +- +of the saints +and +you might assist +her +in +- +whatever +of you +she may need +matter +for +Also +she +has been +a patroness +of many +and +of me +myself +Greet +Prisca +and +Aquila +the +fellow workers +of me +in +Christ +Jesus +who +for +the +life +of me +the +of them +neck +have lain down +whom +thank +not +I +only +but +also +all +the +churches +of the +Gentiles +and +the +at +house +their +church +Greet +Epenetus +the +beloved +of me +who +is +a firstfruit +- +of Asia +for +Christ +Greet +Mary +who +much +toiled +for +you +Greet +Andronicus +and +Junias +- +kinsmen +of me +and +fellow prisoners +with me +who +are +of note +among +the +apostles +who +also +before +me +were +in +Christ +Greet +Ampliatus +- +beloved +of me +in [the] +Lord +Greet +Urbanus +the +fellow worker +of us +in +Christ +and +Stachys +the +beloved +of me +Greet +Apelles +the +approved +in +Christ +Greet +those +of +the [household] +of Aristobulus +Greet +Herodion +the +kinsman +of me +Greet +those +of +the [household] +of Narcissus +- +being +in [the] +Lord +Greet +Tryphena +and +Tryphosa +those +toiling +in [the] +Lord +Greet +Persis +the +beloved +who +much +toiled +in [the] +Lord +Greet +Rufus +the +chosen +in [the] +Lord +and +the +mother +of him +and +of me +Greet +Asyncritus +Phlegon +Hermes +Patrobas +Hermas +and +the +with +them +brothers +Greet +Philologus +and +Julia +Nereus +and +the +sister +of him +and +Olympas +and +the +with +them +all +saints +Greet +one another +with +a kiss +holy +Greet +you +the +churches +all +- +of Christ +now +brothers +I exhort +you +to watch out for +those +- +divisions +and +- +obstacles +contrary to +the +teaching +that +you +have learned +causing +and +turn away +from +them +For +- +such +the +Lord +of us +Christ +not +serve +but +the +of themselves +belly +and +by +- +smooth talk +and +flattery +they deceive +the +hearts +of the +naive +for +The +of you +obedience +to +all +has reached +therefore +Over +you +I rejoice +however +I wish +you +wise +to be +to +- +good +however +innocent +to +- +evil +now +The +God +- +of peace +will crush +- +Satan +under +the +feet +of you +in +a short time +The +grace +of the +Lord +of us +Jesus +[be] with +you +Greets +you +Timothy +the +fellow worker +of me +also +Lucius +and +Jason +and +Sosipater +the +kinsmen +of me +Greet +you +I +Tertius +the [one] +having written down +this +letter +in [the] +Lord +Greets +you +Gaius +the +host +of me +and +of all +the +church +Greets +you +Erastus +the +steward +of the +city +and +Quartus +the +brother +now +To Him +being able +you +to strengthen +according to +- +gospel +my +and +the +preaching +of Jesus +Christ +according to +[the] revelation +of [the] mystery +in times +of the ages +having been kept secret +however +having been made manifest +now +also +through +Scriptures +prophetic +according to +[the] commandment +of the +Eternal +God +unto [the] +obedience +of faith +to +all +the +Gentiles +having been made known +[to the] only +wise +God +through +Jesus +Christ +which [is] +[be] the +glory +to +the +ages +of the +ages +Amen +Paul +a called +apostle +of Christ +Jesus +by [the] +will +of God +and +Sosthenes +the +brother +To the +church +- +of God +- +being +in +Corinth +having been sanctified +in +Christ +Jesus +called +holy +together with +all +those +calling on +the +name +of the +Lord +of us +Jesus +Christ +in +every +place +both theirs +and +ours +to you +Grace +and +peace +from +God +Father +of us +and +[the] Lord +Jesus +Christ +I thank +the +God +always +concerning +you +for +the +grace +- +of God +- +having been given +you +in +Christ +Jesus +that +in +everything +you have been enriched +in +Him +in +all +speech +and +all +knowledge +as +the +testimony +about +Christ +was confirmed +in +you +so as for +you +not +to be lacking +in +not one +gift +eagerly awaiting +the +revelation +of the +Lord +of us +Jesus +Christ +who +also +will sustain +you +to [the] +end +blameless +in +the +day +of the +Lord +of us +Jesus +Christ +Faithful [is] +- +God +by +whom +you were called +into +fellowship +with the +Son +of Him +Jesus +Christ +the +Lord +of us +now +brothers +I exhort +you +by +the +name +of the +Lord +of us +Jesus +Christ +that +the +same thing +you speak +all +and +not +there be +among +you +divisions +however +you may be +having been knit together +in +the +same +mind +and +in +the +same +judgment +for +brothers +of me +It was shown +to me +concerning +you +by +those +of Chloe +that +quarrels +among +you +there are +now +I mean +this +that +each +of you +says +indeed +I +am +of Paul +and +I +of Apollos +and +I +of Cephas +and +I +of Christ +Has been divided +- +Christ +Not +Paul +was crucified +for +you +Or +into +the +name +of Paul +were you baptized +I thank +that +no one +of you +I baptized +if +not +Crispus +and +Gaius +so that +not +anyone +should say +that +into +- +my +name +you were baptized +now +I baptized +also +the +of Stephanas +household +as to the rest +not +I know +whether +any +other +I baptized +for +sent +me +Christ +Not +to baptize +but +to preach the gospel +not +in +wisdom +of discourse +that +not +be emptied of power +the +cross +of the +Christ +for +indeed +The +message +- +of the +cross +to those +perishing +foolishness +is +however +those +being saved +to us +power +of God +it is +for +It has been written +I will destroy +the +wisdom +of the +wise +and +the +intelligence +of the +intelligent +I will frustrate +Where [is the] +wise +Where [the] +scribe +Where [the] +debater +the +age +of this +Not +has made foolish +- +God +the +wisdom +of the +world +for +Since +in +the +wisdom +- +of God +not +knew +the +world +through +the +wisdom +- +God +was pleased +- +God +through +the +foolishness +of the +proclamation +to save +those +believing +Seeing that +both +Jews +signs +ask for +and +Greeks +wisdom +seek +however +we +preach +Christ +having been crucified +indeed +to [the] Jewish +a stumbling block +now +to Gentiles +foolishness +however +to them +the +called +both +Jews +and +Greeks +Christ +of God +[the] power +and +of God +[the] wisdom +For +the +foolishness +- +of God +wiser +- +than men +is +and +the +weakness +- +of God +stronger +- +than men +for +brothers +Consider +the +calling +of you +that +not +many +wise +according to +flesh [were] +not +many +powerful +not +many +of noble birth +But +the +foolish things +of the +world +has chosen +- +God +that +He might shame +the +wise +and +the +weak things +of the +world +chose +- +God +that +He might shame +the +strong +and +the +low-born +of the +world +and +the things +being despised +the things +not +being +chose +- +God +that +the things +being +He might annul +so that +not +might boast +all +flesh +before +- +God +however +Out of +Him +you +are +in +Christ +Jesus +who +has been made +unto us +from +God +wisdom +and +righteousness +also +sanctification +and +redemption +in order that +as +it has been written +The [one] +boasting +in [the] +Lord +let him boast +brothers +And I +having come +to +you +came +not +according to +excellency +of speech +or +wisdom +proclaiming +to you +the +testimony +- +of God +for +Nothing +I decided +anything +to know +among +you +if +not +Jesus +Christ +and +Him +having been crucified +And I +in +weakness +and +in +fear +and +in +trembling +much +was +with +you +And +the +message +of me +and +the +preaching +of me +[were] not +in +persuasive +of wisdom +words +but +in +demonstration +of [the] Spirit +and +of power +so that +the +faith +of you +might be +not +in +wisdom +of men +but +in +power +of God +however +Wisdom +we speak +among +the +mature +however +not +wisdom +the +age +of this +nor +of the +rulers +the +age +of this +who +are coming to naught +But +we speak +of God +wisdom +in +a mystery +- +having been hidden +which +foreordained +- +God +before +the +ages +for +glory +of us +which +none +of the +rulers +the +age +of this +has understood +for +if +they had understood [it] +- +not +the +Lord +- +of glory +they would have crucified +but +as +it has been written +What +eye +not +has seen +and +ear +not +has heard +and +into +heart +of man +not +has entered +what +has prepared +- +God +for those +loving +Him +for +To us +has revealed [it] +- +God +through +the +Spirit +for +The +Spirit +all things +searches +even +the +depths +- +of God +for +Who +among men +knows +the things +of the +man +if +not +the +spirit +of the +man +that [is] +within +him +So +also +the things +- +of God +no one +knows +if +not +the +Spirit +- +of God +now +not +We +the +spirit +of the +world +have received +but +the +Spirit +who [is] +from +- +God +that +we may know +the things +by +- +God +having been granted +to us +which +also +we speak +not +in +taught +of human +wisdom +words +but +in [those] +taught +of [the] Spirit +by spiritual [means] +spiritual things +communicating +however +[The] natural +man +not +accepts +the things +of the +Spirit +- +of God +for +foolishness +to him +they are +and +not +he is able +to understand [them] +because +spiritually +they are discerned +however +He who [is] +spiritual +judges +- +all things +however +he himself +by +no one +is judged +for +Who +has known +[the] mind +of [the] Lord +Who +will instruct +Him +however +We +[the] mind +of Christ +have +brothers +And I +was able +not +to speak +to you +as +to spiritual +but +as +to fleshly +as +to infants +in +Christ +Milk +you +I gave to drink +not +solid food +for +not yet +were you able +In fact +not +still +now +are you able +for +still +fleshly +you are +for +Where +[are] among +you +jealousy +and +strife +not +fleshly +are you +and +according to +man +are walking +for +When +indeed +might say +one +I +am +of Paul +however +another +I +of Apollos +not +fleshly +are you +then +Who +is +Apollos +now +Who +is +Paul +Servants +through +whom +you believed +as +also +to each +the +Lord +has given +I +planted +Apollos +watered +but +- +God +kept [it] growing +So +neither +the [one] +planting +is +anything +nor +the [one] +watering +but [only] +the [One] +giving growth +God +now +The [one] +planting +and +the [one] +watering +one +are +now +each +the +own +reward +will receive +according to +the +own +labor +for +we are +Of God +fellow workers +God’s +field +God’s +building +you are +According to +the +grace +- +of God +- +having been given +to me +as +a wise +master builder +[the] foundation +I have laid +however +another +is building upon [it] +however +Each one +let take heed +how +he builds upon [it] +for +no one +is able +Foundation +another +to lay +besides +the [one] +being already laid +which +is +Jesus +Christ +now +If +anyone +builds +upon +the +foundation +gold +silver +stones +precious +wood +hay +straw +of each +the +work +manifest +will become +for +the +day +will disclose [it] +because +in +fire +it is revealed +and +of each +the +work +what sort +it is +the +fire +itself +will prove +If +will remain +of anyone +the +work +which +he built up +a reward +he will receive +If +of anyone +the +work +will be burned up +he will suffer loss +however +he himself +will be saved +however +as +so +through +fire +Not +know you +that +temple +of God +you yourselves are +and +the +Spirit +- +of God +in +you +dwells +If +anyone +the +temple +- +of God +destroys +will destroy +him +- +God +for +- +the temple +- +of God +holy +is +which +are +you +No one +himself +let deceive +if +anyone +thinks [himself] +wise +to be +among +you +in +the +age +this +foolish +let him become +so that +he may become +wise +for +The +wisdom +of the +world +this +foolishness +with +- +God +is +for +It has been written +[He is] the [One] +catching +the +wise +in +the +craftiness +of them +And +again +[The] Lord +knows +the +thoughts +of the +wise +that +they are +futile +Therefore +no one +let boast +in +men +for +All things +of you +are +whether +Paul +or +Apollos +or +Cephas +or [the] +world +or +life +or +death +or +things present +or +things to come +all +yours +now +you +of Christ +now +Christ +of God +So +us +let regard +a man +as +servants +of Christ +and +stewards +of the mysteries +of God +In this case +moreover +it is required +in +the +stewards +that +faithful +one +shall be found +however +Me +to +the smallest matter +it is +that +I be examined +by +you +or +by +a human +court +In fact +neither +myself +do I examine +for +Nothing +against myself +I am conscious of +yet +not +by +this +have I been justified +however +the [One] +judging +me +[the] Lord +is +So then +not +before [the] +time +anything +judge +until +- +shall have come +the +Lord +who +both +will bring to light +the +hidden things +- +of darkness +and +will make manifest +the +motives +of the +hearts +and +then +the +praise +will come +to each +from +- +God +now +brothers +These things +I have applied +to +myself +and +Apollos +on account of +you +so that +in +us +you may learn +- +not +beyond +what +has been written +that +not +one +for +- +one +you be puffed up +over +the +other +for +Who +you +makes different +now +have you +What +which +not +you did receive +now +If +also +you did receive [it] +why +boast you +as +not +having received [it] +Already +satiated +you are +already +you have been enriched +apart from +us +you reigned +and +I wish that +really +you did reign +so that +also +we +you +might reign with +for +I think +- +God +us +- +apostles +last +has exhibited +as +appointed to death +because +a spectacle +we have become +to the +world +both +to angels +and +to men +We +[are] fools +on account of +Christ +however +you +wise +in +Christ +we +weak +however +you +strong +You +honored +however +we +without honor +As far as +the +present +hour +both +we hunger +and +thirst +and +are poorly clad +and +are buffeted +and +wander homeless +and +we toil +working +with [our] +own +hands +Being reviled +we bless +being persecuted +we endure +being slandered +we entreat +As +[the] scum +of the +earth +of all [the] +refuse +we have become +until +now +Not +shaming +you +do I write +these things +but +as +children +my +beloved +admonishing [you] +for +If +ten thousand +guardians +you should have +in +Christ +yet +not +many +fathers +for +in +Christ +Jesus +through +the +gospel +I +you +have begotten +therefore +I exhort +you +imitators +of me +become +On account of +this +it [is] +I sent +to you +Timothy +who +is +my +child +beloved +and +faithful +in [the] +Lord +who +you +will remind of +the +ways +of me +that [are] +in +Christ +Jesus +as +everywhere +in +every +church +I teach +now +As to +not +coming +of me +to +you +have become puffed up +some +however +I will come +shortly +to +you +if +the +Lord +wills +and +I will find out +not +the +talk +of those +being puffed up +but +the +power +for +Not +in +word +the +kingdom +- +of God [is] +but +in +power +What +desire you +With +a rod +I should come +to +you +or +in +love +then +a spirit +of gentleness +Actually +is reported +among +you +sexual immorality +and +such +sexual immorality +as +not even +among +the +pagans +so as for +one +[the] wife +of the +father +to have +And +you +puffed up +are +and +not +rather +have mourned +so that +might be taken +out of +midst +of you +the [one] +the +deed +this +having done +though +I +indeed +being absent +- +in body +now +being present +- +in spirit +already +have judged +as +being present +the [one] +so +this +having produced +in +the +name +of the +Lord +Jesus +having been gathered together +you +and +- +of me +in spirit +with +the +power +of the +Lord +of us +Jesus +to deliver +- +such a one +- +to Satan +for +destruction +of the +flesh +so that +the +spirit +may be saved +in +the +day +of the +Lord +Not +good [is] +the +boasting +of you +Not +know you +that +a little +leaven +all +the +lump +leavens +Cleanse out +the +old +leaven +that +you may be +a new +lump +as +you are +unleavened +for +Also +the +Passover lamb +of us +Christ +has been sacrificed +so that +we might celebrate the feast +not +with +leaven +old +not +with +leaven +of malice +and +wickedness +but +with +unleavened [bread] +of sincerity +and +of truth +I wrote +to you +in +the +letter +not +to associate with +the sexually immoral +not +altogether +with the +sexually immoral +the +world +of this +or +with the +covetous +and +swindlers +or +idolaters +since +then +you would need +from +the +world +to depart +however +Now +I wrote +to you +not +to associate with [him] +if +anyone +a brother +being designated +he is +sexually immoral +or +a coveter +or +an idolater +or +verbal abuser +or +a drunkard +or +swindler +with +such a one +not even +to eat +for +What +[is it] to me +those +outside +to judge +Not +those +within +you +do judge +however +Those +outside +- +God +will judge +Expel +the +evil +out from +yourselves +that +Dare +anyone +of you +a matter +having +against +the +other +go to law +before +the +unrighteous +and +not +before +the +saints +Or +not +know you +that +the +saints +the +world +will judge +And +if +by +you +is to be judged +the +world +unworthy +are you +of cases +of the smallest +Not +know you +that +angels +we will judge +How much more +the things of this life +indeed +so +if +The things of this life +judgment [as to] +you have +the [ones] +being despised +in +the +church +those +set you up +For +shame +to you +I say this +not +Thus +is there +among +you +no one +a wise [man] +who +will be able +to decide +in +between +the +brother +of him +Instead +brother +against +brother +goes to law +and +this +before +unbelievers +indeed +therefore +Already +altogether +a defeat +for you +it is +that +lawsuits +you have +among +one another +Because of +why +not +rather +suffer wrong +Because of +why +not +rather +be defrauded +But +you +do wrong +and +defraud +and +these things +to brothers +Or +not +know you +that +[the] unrighteous ones +of God +[the] kingdom +not +will inherit +Not +be deceived +neither +the sexually immoral +nor +idolaters +nor +adulterers +nor +effeminate +nor +homosexuals +nor +thieves +nor +coveters +not +drunkards +nor +verbal abusers +nor +swindlers +[the] kingdom +of God +will inherit +And +such +some [of] +you were +but +you were washed +but +you were sanctified +but +you were justified +in +the +name +of the +Lord +Jesus +Christ +and +by +the +Spirit +of the +God +of us +All things +to me +are lawful +but +not +all things +do profit +All things +to me +are lawful +but +not +I +will be mastered +by +anything +The +foods +for the +belly +and +the +belly +the +for foods +but +- +God +both +this +and +these +will destroy +and +- +the body [is] +not +- +for sexual immorality +but +for the +Lord +and +the +Lord +for the +body +And +- +God +both +the +Lord +has raised up +and +us +will raise out +by +the +power +of Him +Not +know you +that +the +bodies +of you +members +of Christ +are +then +Having taken +the +members +of the +Christ +shall I make +[them] of a prostitute +members +Never +may it be +Or +not +know you +that +the [one] +being joined +to the +prostitute +one +body +is +for +it says +Will become +the +two +into +flesh +one +however +The [one] +being joined +to the +Lord +one +spirit +is +Flee +- +sexual immorality +Every +sin +if +whatever +might do +a man +outside +the +body +is +however +the [one] +sinning sexually +against +the +own +body +sins +Or +not +know you +that +the +body +of you +a temple +of the +in +you +Holy +Spirit +is +whom +you have +from +God +And +not +you are +your own +for +you were bought +with a price +therefore +glorify +- +God +in +the +body +of you +now +Concerning +the things about which +you wrote +[It is] good +for a man +a woman +not +to touch +however +Because of +- +sexual immorality +each man +the [own] +of him +wife +let have +and +each [woman] +the +own +husband +let have +To the +wife +the +husband +the +duty +let fulfill +now +likewise +also +the +wife +to the +husband +The +wife +the +own +body +not +has authority over +but +the +husband +now +likewise +also +the +husband +of the +own +body +not +has authority over +but +the +wife +Not +deprive +one another +if +not +- +by +mutual agreement +for +a time +that +you might be at leisure +- +for prayer +and +again +together +the +same +be +so that +not +may tempt +you +- +Satan +through +the +lack of self-control +of you +now +This +I say +by way of +concession +not +by way of +command +now +I wish +all +men +to be +like +even +myself +But +each +has +his own +gift +from +God +indeed +one [has] +this +however +one +that +now +I say +to the +unmarried +and +to the +widows +[it is] good +for them +if +they should remain +as +even I +however +If +not +they have self-control +let them marry +for +better +it is +to marry +than +to burn with passion +now +To those +having married +I give this charge +not +I +but +the +Lord +A wife +from +a husband +not +is to be separated +however +if +indeed +she is separated +let her remain +unmarried +or +to the +husband +be reconciled +and +a husband +a wife +not +is to send away +now +To the +rest +I say +I +not +the +Lord +If +any +brother +has +a wife +unbelieving +and +she +consents +to dwell +with +him +not +let him divorce +her +And +a woman +any +has +a husband +unbelieving +and +he +consents +to dwell +with +her +not +let her divorce +the +husband +for +Is sanctified +the +husband +- +unbelieving +in +the +wife +and +is sanctified +the +wife +- +unbelieving +in +the +husband +then +else +the +children +of you +unclean +are +however +now +holy +they are +however +If +the +unbeliever +separates himself +let him separate himself +not +is under bondage +the +brother +or +the +sister +in +- +such [cases] +however +Into +peace +has called +you +- +God +for +wife +How +know you +if +the +husband +you will save +Or +husband +how +know you +if +the +wife +you will save +If +not +as +to each +has assigned +the +Lord +as +to each +has called +- +God +so +let him walk +And +thus +in +the +churches +all +I prescribe +Having been circumcised +anyone +was called +Not +let him be uncircumcised +In +uncircumcision +was called +anyone +Not +let Him be circumcised +- +Circumcision +nothing +is +and +- +uncircumcision +nothing +is +but +keeping +[the] commandments +of God +Each +in +the +calling +in which +he has been called +in +this +let him abide +Slave [being] +were you called +not +to you +let it be a care +but +if +also +you are able +free +to become +rather +take advantage +for +The [one] +in +[the] Lord +having been called +[being] a slave +a freedman +of [the] Lord +is +likewise +the [one] +free +having been called +is +a slave +of Christ +With a price +you were bought +not +become +slaves +of men +brothers +Each +wherein +that +he was called +in +that +let him abide +with +God +now +Concerning +the +virgins +a commandment +of [the] Lord +not +I have +however +judgment +I give +as +having received mercy +from +[the] Lord +trustworthy +to be +therefore +I think +this +good +is +because of +the +present +necessity +that +[it is] good +for a man +- +in the same manner +to remain +Have you been bound +to a wife +Not +seek +to be loosed +Have you been loosed +from +a wife +Not +seek +a wife +however +If +also +you shall have married +not +you did sin +and +if +shall have married +the +virgin +not +she did sin +however +tribulation +in the +flesh +will have +- +such +now +I +you +am sparing +now +brothers +This +I say +The +season +shortened +is +- +From now on +that +both +those +having +wives +as +none +having +should be +and +those +weeping +as +not +weeping +and +those +rejoicing +as +not +rejoicing +and +those +buying +as +not +possessing +and +those +using +the +world +as +not +using [it] as their own +for +Is passing away +the +present form +of the +world +this +now +I desire +you +without concern +to be +The +unmarried man +cares for +the things +of the +Lord +how +he should please +the +Lord +however +the [one] +having been married +cares for +the things +of the +world +how +he should please +the +wife +and +is divided +And +the +woman +- +unmarried +and +- +virgin +cares for +the things +of the +Lord +that +she should be +holy +both +in +body +and +in +spirit +however +the [one] +having been married +cares for +the things +of the +world +how +she should please +the +husband +now +This +for +the +of you +yourselves +benefit +I say +not +that +a restraint +you +I might place upon +but +for +what +[is] seemly +and +devoted +to the +Lord +without distraction +however +If +anyone +to be behaving improperly +to +the +virgin +of him +supposes +if +she is +beyond youth +and +so +it ought +to be +what +he wills +let him do +not +he does sin +let them marry +however +He who +stands +in +the +heart +of him +firm +not +having +necessity +however +authority +having +over +the +own +will +and +this +has judged +in +the +own +heart +to keep +- +the +virgin +well +he will do +So then +also +the [one] +marrying +the +own +virgin +well +does +and +the [one] +not +marrying +better +will do +A wife +is bound +for +as long as +time +may live +the +husband +of her +however +if +shall have died +the +husband +free +she is +to whom +she wills +to be married +only +in +[the] Lord +however +More blessed +she is +if +in the same manner +she should remain +according to +- +my +judgment +now +I think +myself also +[the] Spirit +of God +to have +now +Concerning +the things +sacrificed to idols +we know +indeed +all +knowledge +we have +- +Knowledge +puffs up +but +- +love +builds up +If +anyone +thinks +to have known +anything +not yet +does he know +as +it is necessary +to know +however +If +anyone +loves +- +God +he +is known +by +Him +therefore +Concerning +the +eating +of the +things sacrificed to idols +we know +that +nothing +an idol +[is] in +[the] world +and +that [there is] +no +God +if +not +one +truly +if indeed +Even +there are +[those] called +gods +whether +in +heaven +or +on +earth +as +there are +gods +many +and +lords +many +yet +to us +[there is] one +God +the +Father +of +whom [are] +the things +all +and +we +for +Him +and +one +Lord +Jesus +Christ +by +whom [are] +the things +all +and +we +through +Him +But +not +in +all [is] +this +knowledge +now +Some +- +by habit +until +now +of the +idol +as of +a thing sacrificed to an idol +eat +and +the +conscience +of them +weak +being +it is defiled +however +Food +us +not +will commend +to +God +neither +if +not +we should eat +do we come short +nor +if +we should eat +have we an advantage +however +Be careful +lest +somehow +the +right +of you +this +an occasion of stumbling +becomes +to those +being weak +for +If +anyone +sees +you +- +having +knowledge +in +an idol’s temple +eating +not +the +conscience +of him +weak +being +will be built up +so as +the +things +sacrificed to idols +to eat +for +Is destroyed +through +- +your +knowledge +the [one] +being weak +the +brother +for +whom +Christ +died +then +Thus +sinning +against +the +brothers +and +wounding +their +- +conscience +being weak +against +Christ +you sin +Therefore +if +food +snares +the +brother +of me +never +not +shall I eat +meat +to +the +age +so that +not +the +brother +of me +I might snare +Not +am I +free +Not +am I +an apostle +Not +Jesus +the +Lord +of us +have I seen +Not +the +work +of me +you +are +in +[the] Lord +If +to others +not +I am +an apostle +yet +at least +to you +I am +for +the +seal +of my +the +apostleship +you +are +in +[the] Lord +- +My +defense +to those +me +examining +is +this +No +not +have we +[the] right +to eat +and +to drink +No +not +have we +authority +a sister +a wife +to take about +as +also +the +other +apostles +and +the +brothers +of the +Lord +and +Cephas +Or +only +I +and +Barnabas +not +have we +authority +not +to work +Who +serves as a soldier +at his own +expense +at any time +Who +plants +a vineyard +and +the +fruit +of it +not +does eat +Or +who +shepherds +a flock +and +from +the +milk +of the +flock +not +does drink +Not +according to +man +these things +do I speak +Or +also +the +law +these things +not +says +for +In +the +of Moses +law +it has been written +Not +you shall muzzle +an ox +treading out grain +Not +for the +oxen +is there care +- +with God +Or +because of +us +entirely +is He speaking +for +For sake of +us +it was written +because +ought +in +hope +to plow +the [one] +plowing +and +the [one] +threshing +in +hope +- +to partake +If +we +among you +- +spiritual things +have sown +[is it] a great thing +if +we +from you +- +material things +will reap +If +others +of the +over you +authority +partake +[should] not +more +we +But +not +we did use +the +right +this +Instead +all things +we bear +so that +not +any +hindrance +we should place +to the +gospel +of +Christ +Not +know you +that +those +in the +temple +working +the things +of +the +temple +eat +those +at the +altar +attending +in the +altar +partake +So +also +the +Lord +has prescribed +to those +the +gospel +proclaiming +from +the +gospel +to live +however +I +not +have used +none +of these +now +Neither +have I written +these things +that +thus +it should be +with +me +for +[it were] good +me +rather +to die +than +the +boasting +of me +anyone +will make void +for +If +I preach the gospel +nothing +there is +to me +boasting +for +necessity +me +is laid upon +however +Woe +to me +be +if +not +I should preach the gospel +for +If +willingly +this +I do +a reward +I have +however +if +unwillingly +a stewardship +I am entrusted with +then +What +is +of me +the +reward +That +in preaching the gospel +free of charge +I should offer +the +gospel +so as +- +not +to use up +the +right +of me +in +the +gospel +for +Free +being +from +all +to all +myself +I became servant +so that +the +more +I might gain +And +I became +to the +Jews +like +a Jew +so that +Jews +I might win +To those +under +[the] Law +as +under +[the] law +not +being +myself +under +[the] law +so that +those +under +[the] law +I might win +To those +outside [the] Law +like +outside [the] Law +not +being +outside [the] law +of God +but +under [the] law +to Christ +so that +I might win +those +outside [the] Law +I became +to the +weak +weak +that +the +weak +I might win +These things +to all +I have become +all +so that +by all means +some +I might save +now +All [things] +I do +on account of +the +gospel +that +a fellow partaker +with it +I might become +Not +know you +that +those +in +a race course +running +indeed +all +run +however +one +receives +the +prize +Thus +run +that +you might obtain [it] +now +Everyone +- +striving +in all things +controls himself +then +indeed +they +that +a perishable +crown +they might receive +however +we +an imperishable +therefore +I +thus +run +as +not +uncertainly +so +I fight +as +not +[the] air +beating +But +I batter +of me +the +body +and +bring [it] into servitude +not +hardly +to others +having preached +myself +disqualified +I might be +for +brothers +Not +I want +you +to be ignorant +that +the +fathers +of us +all +under +the +cloud +were +and +all +through +the +sea +passed +and +all +into +- +Moses +were baptized +in +the +cloud +and +in +the +sea +and +all +the +same +spiritual +food +ate +and +all +the +same +spiritual +drink +drank +for +they were drinking +from +[the] spiritual +accompanying [them] +rock +then +the +rock +was +- +Christ +Nevertheless +not +with +- +most +of them +was well pleased +- +God +for +they were strewn +in +the +wilderness +now +These things +types +to us +have become +for +- +not +to be +us +desirers +of evil things +as +they also +desired +Neither +idolaters +are you to be +as +some +of them +as +it has been written +Sat down +the +people +to eat +and +to drink +and +rose up +to play +Neither +should we commit sexual immorality +as +some +of them +committed sexual immorality +and +fell +in one +day +twenty +thousand +Neither +should we test +the +Christ +as +some +of them +tested +and +by +- +serpents +were destroyed +Neither +are you to grumble +as +some +of them +grumbled +and +perished +by +the +Destroyer +now +These things +[as] types +happened +to them +then +were written +for +admonition +of us +to +whom +the +ends +of the +ages +are arrived +Therefore +the [one] +thinking +to stand +let him take heed +lest +he fall +Temptation +you +not +has seized +if +not +what is common to man +now +faithful +- +[is] God +who +not +will allow +you +to be tempted +beyond +what +you are able +but +will provide +with +the +temptation +also +the +escape +- +to be able +to endure [it] +Therefore +beloved +of me +flee +from +- +idolatry +As +to sensible [ones] +I speak +judge +for yourselves +what +I say +The +cup +- +of blessing +that +we bless +not +is it +a participation +in the +blood +- +of Christ +The +bread +that +we break +not +a participation +in the +body +- +of Christ +is it +Because [there is] +one +loaf +one +body +the +many +we are +for +- +all +of +the +one +loaf +we partake +Consider +- +Israel +according to +flesh +Not +those +eating +the +sacrifices +fellow partakers +in the +altar +are +then +What +do I mean +That +what is sacrificed to an idol +anything +is +or +that +an idol +anything +is +Rather +that +what +sacrifice +to demons +and +not +to God +they sacrifice +now +Not +I do wish +you +fellow partakers +- +with demons +to be +Not +you are able +[the] cup +of [the] Lord +to drink +and +[the] cup +of demons +Not +you are able +of [the] table +of [the] Lord +to partake +and +of [the] table +of demons +Or +do we provoke to jealousy +the +Lord +Not +stronger +than He +are we +All things +are lawful +but +not +all things +are profitable +All things +are lawful +but +not +all +edify +No one +the [good] +of himself +let seek +but +that +of the +other +Everything +- +in +the meat market +being sold +eat +nothing +inquiring +on account of +- +conscience +for +The +Lord’s +[is] the +earth +and +the +fullness +of it +If +anyone +of the +unbelieving +invites +you +and +you wish +to go +everything +- +being set before +you +eat +nothing +inquiring +on account of +- +conscience +however +If +anyone +to you +should say +This +offered to an idol +is +not +do eat +on account of +him +- +having shown [it] +and +- +conscience +now +I am saying +[the] conscience +not +- +your own +but +that +of the +other +for +that +what +the +freedom +of me +is judged +by +another’s +conscience +If +I +with thankfulness +partake +why +am I denounced +for +that which +I +give thanks +therefore +Whether +you eat +or +drink +or +whatever +you do +all things +to the +glory +of God +do +Without offense +be you +both +to Jews +and +Greeks +and +to the +church +- +of God +as +I also +all +in all things +please +seeking +not +the +of myself +profit +but +that +of the +many +that +they may be saved +Imitators +of me +be +as +I also [am] +of Christ +now +I commend +you +that +in all things +me +you have remembered +and +as +I delivered +to you +the +teachings +you are keeping +however +I want +you +to know +that +of every +man +the +head +- +Christ +is +now +[the] head +of [the] woman [is] +the +man +now +[the] head +- +of Christ +- +God +Every +man +praying +or +prophesying +[anything] on +[his] head +having +dishonors +the +head +of him +now +Every +woman +praying +or +prophesying +uncovered +with the +head +dishonors +the +head +of her +for +it is +one +and +the +same +- +with having been shaven +for +If +not +covers her head +a woman +also +let her be shorn +now +If [it is] +disgraceful +to a woman +- +to be shorn +or +to be shaven +let her cover her head +for +truly +A man +not +ought +to cover +the +head +image +and +glory +of God +being +however +the +woman +[the] glory +of man +is +for +Not +is +man +of +woman +but +woman +of +man +for +Truly +not +was created +man +on account of +the +woman +but +woman +on account of +the +man +Because of +this +ought +the +woman +authority +to have +on +the +head +on account of +the +angels +However +neither [is] +woman +separate from +man +nor +man +separate from +woman +in +[the] Lord +for +Just as +the +woman +of +the +man [is] +so +also +the +man +by +the +woman [is] +however +the +all things +of +- +God +In +you +yourselves +judge +Becoming +is it +for a woman +revealed +- +to God +to pray +Not even +- +nature +itself +does teach +you +that +indeed +if +a man +he has long hair +a dishonor +to him +it is +however +if +a woman +she has long hair +glory +to her +it is +For +the +long hair +instead +of a covering +is given +to her +now +If +anyone +is inclined +contentious +to be +we +such +custom +no [other] +have +nor +the +churches +- +of God +now +In this +instructing +not +I do praise +because +not +for +the +better +but +for +the +worse +you come together +for +indeed +First +coming together +you +in +an assembly +I hear +divisions +among +you +there to be +and +in part +it +I believe +for +It behooves +also +factions +among +you +there to be +so that +also +the +approved +evident +should become +among +you +therefore +Coming +of you +together +in one +place +not +it is +[the] Lord’s +supper +to eat +for +One +the +own +supper +takes first +in +- +eating +and +indeed +this [one] +is hungry +however +that [one] +is drunken +indeed +No +houses +not +have you +in +which +to eat +and +to drink +Or +the +church +- +of God +do you despise +and +put to shame +those +nothing +having +What +shall I say +to you +Shall I praise +you +in +this +Not +I praise [you] +for +I +received +from +the +Lord +that which +also +I delivered +to you +that +the +Lord +Jesus +in +the +night +in which +He was betrayed +took +bread +and +having given thanks +He broke [it] +and +said +This +is +of Me +the +body +which [is] +for +you +this +do +in +- +of Me +remembrance +Likewise +also +the +cup +after +- +having supped +saying +This +- +cup +the +new +covenant +is +in +- +My +blood +this +do +as often as +if +you might drink [it] +in +- +of Me +remembrance +for +As often as +if +you may eat +the +bread +this +and +the +cup +may drink +the +death +of the +Lord +you proclaim +until +that +He should come +Therefore +- +whoever +should eat +the +bread +or +should drink +the +cup +of the +Lord +unworthily +guilty +will be +of the +body +and +of the +blood +of the +Lord +however +Let examine +a man +himself +and +in this manner +of +the +bread +let him eat +and +of +the +cup +let him drink +for +The [one] +eating +and +drinking +judgment +on himself +eats +and +drinks +not +discerning +the +body +Because of +this +among +you +many +[are] weak +and +sick +and +are fallen asleep +many +for +If +ourselves +we were judging +- +not +we would come under judgment +however +Being judged +by +the +Lord +we are disciplined +so that +not +with +the +world +we should be condemned +So then +brothers +of me +coming together +in order +- +to eat +one another +wait for +If +anyone +is hungry +at +home +let him eat +so that +not +for +judgment +you might come together +And +- +the other things +as soon as +- +I might come +I will set in order +now +brothers +Concerning +- +spiritual [gifts] +not +I do want +you +to be ignorant +You know +that +when +pagans +you were +to +- +idols +- +mute +even as +- +you were led +being carried away +Therefore +I make known +to you +that +no one +in +[the] Spirit +of God +speaking +says +Accursed [is] +Jesus +and +no one +is able +to say +Lord [is] +Jesus +if +not +in +[the] Spirit +Holy +now +Varieties +of gifts +there are +but +- +the same +Spirit +and +varieties +of services +there are +but +the +same +Lord +and +varieties +of workings +there are +but +the +same +God +- +is working +the +all things +in +everyone +now +To each +is given +the +manifestation +of the +Spirit +for +the +common profiting +for +truly +To one +through +the +Spirit +is given +a word +of wisdom +now +to another +a word +of knowledge +according to +the +same +Spirit +and to a different one +faith +by +the +same +Spirit +now +to another +gifts +of healing +in +that +one +Spirit +now +to another +working +of miracles +now +to another +prophecy +now +to another +distinguishing +of spirits +and to a different one +various kinds +of tongues +now +to another +interpretation +of tongues +now +All +these things +works +the +one +and +the +same +Spirit +apportioning +individually +to each +as +He wills +for +Just as +the +body +one +is +and +members +many +has +now +all +the +members +of the +body +many +being +one +body +are +so +also [is] +- +Christ +for +Also +in +one +Spirit +we +all +into +one +body +were baptized +whether +Jews +or +Greeks +whether +slaves +or +free +and +all +one +Spirit +we were made to drink +for +Also +the +body +is +not +one +member +but +many +If +should say +the +foot +Because +not +I am +a hand +not +I am +of +the +body +not +on account of +this +not +is it +of +the +body +And +if +should say +the +ear +Because +not +I am +an eye +not +I am +of +the +body +not +on account of +this +not +is it +of +the +body +If +all +the +body [were] +an eye +where +[would be] the +hearing +If +all +[were] hearing +where +[would be] the +sense of smell +however +Now +- +God +has arranged +the +members +one +each +of them +in +the +body +as +He desired +now +If +were +- +all +one +member +where +[would be] the +body +however +even +Now +many +[are the] members +however +one +body +now +Not +is able +the +eye +to say +to the +hand +Need +of you +not +I have +Or +again +the +head +to the +feet +Need +of you +not +I have +But +much +rather +those +seeming +weaker +to be +members +of the +body +indispensable +are +and +those which +to be +less honorable +of the +body +we think +these +honor +more abundant +we bestow +and +the +unpresentable [parts] +of us +decorum +more abundant +have +and +- +the presentable [parts] +of us +no +need +have +But +- +God +has composed +the +body +to the [parts] +being deficient +having given +more abundant +honor +that +not +there should be +division +in +the +body +but +the +same +for +one another +should have concern +the +members +And +if +suffers +one +member +suffer with [it] +all +the +members +if +is honored +member +rejoice with [it] +all +the +members +now +You +are +[the] body +of Christ +and +members +in +particular +And +indeed +some +has appointed +- +God +in +the +church +first +apostles +secondly +prophets +third +teachers +then +miracles +then +gifts +of healing +helping +administrating +various kinds +of tongues +Not [are] +all +apostles +Not +all +prophets +Not +all +teachers +Not [have] +all +miracles +Not +all +have +gifts +of healings +Not +all +in tongues +do speak +Not +all +do interpret +however +Be desirous of +the +gifts +- +greater +And +now +according to +a more surpassing +way +to you +I show +If +in the +tongues +- +of men +and +- +of angels +I speak +however +love +not +have +I have become +a brass +sounding +or +a cymbal +clanging +And +if +I should have +prophecy +and +understand +the +mysteries +all +and +all +the +knowledge +and +if +I should have +all +the +faith +so as +mountains +to remove +however +love +not +have +nothing +I am +And +if +I may give away +all +the +possessions +of me +and +if +I may deliver up +the +body +of me +that +I may boast +however +love +not +have +nothing +I am profited +- +Love +is patient +is kind +- +love +not +is envious +- +love +not +is boastful +not +is puffed up +not +acts unbecomingly +not +seeks +the things +of its own +not +is easily provoked +not +it keeps account +- +of wrongs +not +delights +at +- +unrighteousness +however +rejoices +in the +truth +All things +it bears +all things +believes +all things +hopes +all things +endures +- +Love +never +fails +however +if +[there are] prophesies +they will be done away +if +tongues +they will be ceased +if +knowledge +it will pass away +for +In +part +we know +and +in +part +we prophesy +however +when +should come +the +perfect +the +in +part +will be done away +When +I was +a child +I was speaking +like +a child +I was thinking +like +a child +I was reasoning +like +a child +when +I became +a man +I did away with +the things +of the +child +for +We see +presently +through +a glass +in +obscurity +however +then +face +to +face +presently +I know +in +part +however +then +I will know fully +as +also +I have been fully known +however +Now +abide +faith +hope +love +the things +three +these +however +[the] greatest +of these [is] +- +love +Earnestly pursue +- +love +now +earnestly desire +- +spiritual gifts +now +that +especially +you might prophesy +for +The [one] +speaking +in a tongue +not +to men +speaks +but +to God +for +no one +hears +however +in the Spirit +he utters +mysteries +however +The [one] +prophesying +to men +speaks [for] +edification +and +encouragement +and +consolation +The [one] +speaking +in a tongue +himself +edifies +however +the [one] +prophesying +[the] church +edifies +now +I desire +all +you +to speak +in tongues +however +that +rather +you should prophesy +now +greater [is] +the [one] +prophesying +than +the [one] +speaking +in tongues +if +except +not +he should interpret +so that +the +church +edification +might receive +however +brothers +if +Now +I should come +to +you +in tongues +speaking +what +you +will I profit +if +not +to you +I should speak +either +in +revelation +or +in +knowledge +or +in +prophecy +or +teaching +Even +- +lifeless things +a sound +giving +whether +flute +or +harp +if +distinction +to the +sounds +not +they give +how +will it be known +what [is] +being piped +or +- +being harped +for +if +Also +[the] trumpet +indistinct +sound +gives +who +will prepare himself +for +battle +So +if +also +you +with +the +tongue +not +intelligible +speech +you give +how +will it be known +what [is] +being spoken +for +into +[the] air +You will be +speaking +if +it may be +So many +kinds +of languages +there are +in +[the] world +and +none +without meaning +therefore +If +not +I know +the +power +of the +sound +I will be +to the [one] +speaking +a foreigner +and +the [one] +speaking +to +me +a foreigner +So +also +you +since +zealous +of spiritual gifts +you are +for +the +edification +of the +church +search +that +you should cause [it] to abound +Therefore +the [one] +speaking +in a tongue +let him pray +that +he might interpret +for +If +I pray +in a tongue +the +spirit +of me +prays +but +- +the mind +of me +unfruitful +is +then +What +is it +I will pray +with the +spirit +however +I will pray +also +with the +mind +I will sing praise +with the +spirit +however +I will sing praise +also +with the +mind +Otherwise +if +you bless +spirit +the [one] +filling +the +place +of the +uninstructed +how +will he say +the +Amen +at +- +your +thanksgiving +since +what +you say +not +he knows +for +truly +You +well +are giving thanks +but +the +other +not +is edified +I thank +- +God +than all +of you +more +in tongues +speaking +but +in +[the] church +I desire +five +words +with +[the] mind +of me +to speak +that +also +others +I might instruct +rather than +ten thousand +words +in +a tongue +Brothers +not +children +be +in the +minds +Yet +in the +evil +be little children +however +in the +thinking +full grown +be +In +the +law +it has been written +- +By +other tongues +and +by +lips +other +I will speak +to the +people +this +and +not even +thus +will they hear +Me +says +[the] Lord +So then +- +tongues +for +a sign +are +not +to those +believing +but +to the +unbelieving +but +- +prophecy +[is] not +to the +unbelieving +but +to the +believing +therefore +If +gathers +the +church +whole +together +the +place +and +all +should speak +in tongues +however +come in +uninstructed ones +or +unbelievers +not +will they say +that +you are mad +however +If +all +prophesy +then +should come in +some +unbeliever +or +uninstructed +he is convicted +by +all +he is examined +by +all +the +secrets +of the +heart +of him +manifest +become +And +thus +having fallen +upon +[his] face +he will worship +- +God +declaring +that +certainly +- +God +among +you +is +then +What +is it +brothers +When +you may come together +each +a psalm +has +a teaching +has +a revelation +has +a tongue +has +an interpretation +has +All things +for +edification +let be done +If +with a tongue +anyone +speaks +[let it be] by +two +or +the +most +three +and +in +turn +and +one +let interpret +however +If +not +there is +an interpreter +let him be silent +in +[the] church +then +let him speak +to himself +and +- +to God +then +Prophets +two +or +three +let speak +and +the +others +let discern +however +If +to another +sitting by +a revelation should be made +the +first +let be silent +for +You are able +[one] by +one +all +to prophesy +so that +all +may learn +and +all +may be exhorted +And +spirits +of prophets +to prophets +are subject +for +Not +He is +of disorder +the +God +but +of peace +As +in +all +the +churches +of the +saints +the +women +in +the +churches +let them be silent +for +Not +it is allowed +to them +to speak +but +to be in submission +as +also +the +law +says +however +If +anything +to learn +they desire +at +home +the +own +husbands +let them ask +for +shameful +it is +for a woman +to speak +in +[the] church +Or +from +you +the +word +- +of God +has gone out +Or +to +you +only +has it come +If +anyone +considers +himself to be +a prophet +or +spiritual +let him recognize +the things +I write +to you +that +of [the] Lord +[the] commands +are +however +If +anyone +is ignorant +let him be ignored +So +brothers +of me +earnestly desire +- +to prophesy +and +- +to speak +in tongues +not +do forbid +however +All things +properly +and +with +order +let be done +now +brothers +I make known +to you +the +gospel +that +I proclaimed +to you +which +also +you received +in +which +also +you stand +by +which +also +you are being saved +to the +word +I proclaimed +to you +if +you hold fast +unless +if +not +in vain +you have believed +for +I delivered +to you +in +the foremost +what +also +I received +that +Christ +died +for +the +sins +of us +according to +the +Scriptures +and +that +He was buried +and +that +He was raised +the +day +the +third +according to +the +Scriptures +and +that +He appeared +to Cephas +then +to the +Twelve +Thereafter +He appeared +to more than +five hundred +brothers +at once +of +whom +the +greater part +remain +until +now +however +some +have fallen asleep +Then +He appeared +to James +then +to the +apostles +all +then +Last +of all +He appeared +also to me +as +the +untimely birth +for +I +am +the +least +of the +apostles +who +not +am +fit +to be called +an apostle +because +I persecuted +the +church +- +of God +however +[By the] grace +of God +I am +what +I am +and +the +grace +of Him +- +toward +me +not +void +has been +Rather +more abundantly +than them +all +I toiled +however +not +I +but +the +grace +- +of God +with +me +therefore +Whether +I +or +they +thus +we preach +and +thus +you believed +now +If +Christ +is preached +that +out from +[the] dead +He has been raised +how +say +among +you +some +that +a resurrection +of [the] dead +not +there is +however +If +a resurrection +of [the] dead +not +there is +neither +Christ +has been raised +then +if +Christ +not +has been raised +then +[is] void +the +preaching +of us +void +also +the +faith +of you +then +We are found +also +false witnesses +- +of God +because +we have witnessed +concerning +- +God +that +He raised up +- +Christ +whom +not +He has raised +if +then +[the] dead +not +are raised +for +If +[the] dead +not +are raised +neither +Christ +has been raised +then +if +Christ +not +has been raised +futile +the +faith +of you +still +you are +in +the +sins +of you +Then +also +those +having fallen asleep +in +Christ +have perished +If +in +the +life +this +in +Christ +having hope +we are +only +more to be pitied +than all +men +we are +however +Now +has been raised +out from +[the] dead +Christ +firstfruit +of those +having fallen asleep +for +Since +by +a man [came] +death +also +by +a man +resurrection +of [the] dead +indeed +For as +in +- +Adam +all +die +so +also +in +- +Christ +all +will be made alive +however +Each +in +the +own +order +[the] firstfruit +Christ +then +those +of +Christ +at +the +coming +of Him +then +the +end +when +He shall hand over +the +kingdom +to the +God +and +Father +when +He shall have annulled +all +dominion +and +all +authority +and +power +for +It behooves +Him +to reign +until +that +He shall have put +all +the +enemies +under +the +feet +of Him +[The] last +enemy +- +death +to be abolished [is] +for +All things +He has put in subjection +under +the +feet +of Him +however +When +it may be said +that +all things +have been put in subjection +[it is] evident +that +[is] excepted +the [One] +having put in subjection +to Him +- +all things +now +When +shall have been put in subjection +to Him +- +all things +then +also +Himself +the +Son +will be put in subjection +to the [One] +having put in subjection +to Him +- +all things +so that +may be +- +God +all +in +all +Otherwise +what +will they do +who +are baptized +for +the +dead +If +at all +[the] dead +not +are raised +why +also +are they baptized +for +them +Why +also +we +are in danger +every +hour +brothers +Every +day +I die +as surely as +the +in you +boasting +which +I have +in +Christ +Jesus +the +Lord +of us +If +according to +man +I fought wild beasts +in +Ephesus +what +to me +the +profit +If +[the] dead +not +are raised +Let us eat +and +let us drink +for +tomorrow +we die +Not +be misled +Do corrupt +morals +good +companionships +bad +Sober up +righteously +and +not +sin +for +ignorance +of God +some +have +to +[the] shame +of you +I speak +But +will say +someone +How +are raised +the +dead +then +With what +body +do they come +Fool +What +you +you sow +not +does come to life +if +not +it dies +And +what +you sow +not +the +body +that +will be +you sow +but +a bare +grain +if +it may be +of wheat +or +of some +of the +rest +But +- +God +gives +it +a body +as +He has willed +and +to each +of the +seeds +its own +body +Not +all +flesh [is] +the +same +flesh +but +indeed +one +of men +now +another +flesh +of beasts +now +another +flesh +of birds +now +another +of fish +And +bodies [there are] +heavenly +and +bodies +earthly +But +truly +one +[is] the +of the +heavenly +glory +now +another +that +of the +earthly +One [is] +[the] glory +of [the] sun +and +another +[the] glory +of [the] moon +and +another +[the] glory +of [the] stars +for +star +from star +differs +in +glory +So +also [is] +the +resurrection +of the +dead +It is sown +in +decay +it is raised +in +immortality +It is sown +in +dishonor +it is raised +in +glory +It is sown +in +weakness +it is raised +in +power +It is sown +a body +natural +it is raised +a body +spiritual +If +there is +a body +natural +there is +also +spiritual +So +also +it has been written +Became +the +first +man +Adam +into +a soul +living +the +last +Adam +into +a spirit +life-giving +However +not +first [was] +the +spiritual +but +the +natural +then +the +spiritual +The +first +man +[was] from +[the] earth +made of dust +the +second +man +from +heaven +As +the [one] +made of dust +so +also [are] +those +of the earth +and +as +the +heavenly [one] +so +also +those +of heaven +And +as +we have born +the +image +of the +earthly +we shall bear +also +the +image +of the +heavenly +now +This +I say +brothers +that +flesh +and +blood +[the] kingdom +of God +to inherit +not +is able +nor +the +decay +the +immortality +does inherit +Behold +a mystery +to you +I tell +All +not +we will sleep +however +all +we will be changed +in +an instant +in +[the] twinkling +of an eye +at +the +last +trumpet +for +The trumpet will sound +and +the +dead +will be raised +imperishable +and +we +will be changed +for +It behooves +the +perishable +this +to put on +imperishable +and +the +mortal +this +to put on +immortality +now +When +the +perishable +this +shall have put on +imperishable +and +the +mortal +this +shall have put on +immortality +then +will come to pass +the +word +- +having been written +Has been swallowed up +- +death +in +victory +O death +Where +of you +the +victory +O death +Where +of you +the +sting +And +- +the sting +- +of death [is] +- +sin +and +- +the power +- +of sin +the +law +however +[be] thanks +to +God +the [One] +giving +us +the +victory +through +the +Lord +of us +Jesus +Christ +Therefore +brothers +of me +beloved +be +steadfast +immovable +abounding +in +the +work +of the +Lord +always +knowing +that +the +toil +of you +not +is +in vain +in +[the] Lord +now +Concerning +the +collection +which [is] +for +the +saints +as +I have directed +the +churches +- +of Galatia +so +also +you +are to do +Every +first +of the week +each +of you +aside +him +let put +treasuring up +what +if +- +he may be prospered in +so that +not +when +I might come +then +collections +there should be +then +When +I shall have arrived +if +whomever +you might approve +with +letters +these +I will send +to carry +the +bounty +of you +to +Jerusalem +then +If +suitable +it is +for +me also +to go +with +me +they will go +however +I will come +to +you +when +Macedonia +I shall have gone through +for +Macedonia +I am going through +then +With +you +possibly +I will stay +or +even +I will winter +so that +you +me +may equip +if +wherever +I may go +for +Not +I want +you +now +in +passing +to see +indeed +I hope +a time +certain +to remain +with +you +if +the +Lord +permits +however +I will remain +in +Ephesus +until +- +Pentecost +for +to me +has opened +A door +great +and +productive +and +are opposing +many +now +If +comes +Timothy +see +that +without fear +he might be +with +you +for +the +work +of [the] Lord +he is doing +as +also I +therefore +Not +anyone +him +should despise +however +Equip +him +in +peace +so that +he might come +to +me +for +I am expecting +him +with +the +brothers +now +Concerning +Apollos +the +brother +greatly +I exhorted +him +that +he should go +to +you +with +the +brothers +and +at all +not +was +[his] will +that +now +he should come +however +he will come +when +he shall have opportunity +Watch you +stand firm +in +the +faith +act like men +be strong +All things +of you +in +love +let be done +now +I exhort +you +brothers +you know +the +house +of Stephanas +that +it is +firstfruit +- +of Achaia +and +to +service +to the +saints +they have devoted +themselves +that +also +you +be subject +- +to such as these +and +to everyone +- +joining in the work +and +laboring +however +I rejoice +at +the +coming +of Stephanas +and +Fortunatus +and +Achaicus +because +- +your +deficiency +these +have filled up +for +They refreshed +- +my +spirit +and +- +yours +therefore +Recognize +- +such as these +Greet +you +the +churches +- +of Asia +Greet +you +in +[the] Lord +heartily +Aquila +and +Prisca +with +the +at +house +of them +church +Greet +you +the +brothers +all +Greet +one another +with +a kiss +holy +The +greeting +the +own +hand +of Paul +If +anyone +not +loves +the +Lord +let him be +accursed +Marana +tha +The +grace +of the +Lord +Jesus +[be] with +you +The +love +of Me +[be] with +all +you +in +Christ +Jesus +Paul +apostle +of Christ +Jesus +by +[the] will +of God +and +Timothy +the +brother +To the +church +- +of God +- +being +in +Corinth +with +the +saints +all +- +being +in +all +- +Achaia +to you +Grace +and +peace +from +God +[the] Father +of us +and +[the] Lord +Jesus +Christ +Blessed [be] +the +God +and +Father +of the +Lord +of us +Jesus +Christ +the +Father +- +of compassions +and +God +of all +comfort +the [One] +comforting +us +in +all +the +tribulation +of us +for +- +to be able +us +to comfort +those +in +every +tribulation +through +the +comfort +with which +we are comforted +ourselves +by +- +God +because +as +abound +the +sufferings +of the +Christ +toward +us +thus so +through +- +Christ +abounds +also +the +comfort +of us +however +If +we are constricted +[it is] for +- +your +comfort +and +salvation +if +we are encouraged +[it is] for +- +your +comfort +- +operating +in +[the] endurance +of the +same +sufferings +that +also +we +suffer +And +the +hope +of us +[is] steadfast +for +you +knowing +that +as +you are +partners +of the +sufferings +so +also +of the +comfort +for +brothers +Not +do we want +you +to be ignorant +as to +the +affliction +of us +- +having happened +in +- +Asia +that +against +excessively +beyond [our] +power +we were weighed +so as +to despair +for us +even +- +to live +But +we +in +ourselves +the +sentence +- +of death +had +in order that +not +trusting +we should be +in +ourselves +but +in +- +God +the [One] +raising +the +dead +who +from +such a great +a death +has delivered +us +and +will deliver [us] +in +whom +we have hope +that +also +still +He will deliver [us] +joining together +also +of you +for +us +by +supplication +so that +by +many +persons +for the +toward +us +grace bestowed +through +many +thanks may be given +for +us +For +- +the boasting +of us +this +is +the +testimony +of the +conscience +of us +that +in +[the] holiness +and +sincerity +- +of God +not +in +wisdom +fleshly +but +in +[the] grace +of God +we have conducted ourselves +in +the +world +now +more abundantly +toward +you +for +we write +to you +No +other things +other +than +what +you read +or +even +understand +now +I hope +that +to [the] +end +you will understand +as +also +you have understood +us +in +part +so that +boasting +of you +we are +even as +also +you [are] +ours +in +the +day +of the +Lord +of us +Jesus +And +with this +- +confidence +I was planning +previously +to +you +to come +so that +a second +blessing of grace +you might have +and +through +you +to pass through +into +Macedonia +and +again +from +Macedonia +to come +to +you +and +by +you +to be set forward +to +- +Judea +therefore +Thus +purposing +then +not +- +lightness +did I use +Or +what +I purpose +according to +flesh +do I purpose +so that +there should be +with +me +- +Yes +yes +and +- +No +no +however +Faithful +- +God [is] +that +the +word +of us +- +to +you +not +was +Yes +and +No +for +The +- +of God +Son +Christ +Jesus +the [One] +among +you +by +us +having been proclaimed +by +me +and +Silvanus +and +Timothy +not +was +Yes +and +No +but +Yes +in +Him +it has always been +for +As many as +promises +of God [there are] +in +Him +[is] the +Yes +Therefore +also +in +Him +the +Amen +- +to God +[is] for +glory +by +us +now +The [One] +establishing +us +with +you +unto +Christ +and +having anointed +us +[is] God +the [One] +also +having sealed +us +and +having given +the +pledge +of the +Spirit +in +the +hearts +of us +however +I +as witness +- +God +call +upon +- +my +soul +that +sparing +you +not yet +have I come +to +Corinth +that +Not +we lord it over +your +- +faith +but +fellow workers +are +of the +joy +with you +for +in the +faith +you stand firm +for +I judged +within myself +this +- +not +again +in +grief +to +you +to come +for +If +I +grieve +you +again +who +- +is gladdening +me +if +not +the [one] +being grieved +by +me +And +I wrote +this +same thing +so that +not +having come +grief +I might have +from [those] +of whom +me +to rejoice +it behooves +trusting +in +all +you +that +- +my +joy +of all +of you +is +for +Out of +much +affliction +and +anguish +of heart +I wrote +to you +through +many +tears +not +that +you might be grieved +but +that +you might know +the +love +that +I have +more abundantly +toward +you +however +If +anyone +has caused grief +not +me +has he grieved +but +in +part +all +you +that +not +I might put it too severely +Sufficient +to +such a one +[is] the +punishment +this +which [is] +by +the +majority +so that +on the contrary +rather +for you +to forgive +and +to comfort [him] +lest +perhaps +- +by more abundant +sorrow +should be overwhelmed +- +such a one +Therefore +I exhort +you +to confirm +toward +him +love +indeed +For +this +also +did I write +so that +I might know +the +proof +of you +whether +to +everything +obedient +you are +now +To whomever +anything +you forgive +I also +for +and +I +to whom +I have forgiven +if +anything +I have forgiven +[it is] for the sake of +you +in +[the] person +of Christ +so that +not +we should be outwitted +by +- +Satan +for +not +of his +- +schemes +we are ignorant +now +Having come +to +- +Troas +for +the +gospel +- +of Christ +also +a door +to me +having been opened +in +[the] Lord +not +I had +rest +in the +spirit +of me +in the +not +finding +my +Titus +the +brother +of me +instead +having taken leave of +them +I went out +to +Macedonia +however +[be] thanks +To +God +the [One] +always +leading in triumph +us +in +- +Christ +and +the +fragrance +of the +knowledge +of Him +making manifest +through +us +in +every +place +For +of Christ +a sweet perfume +we are +- +to God +in +those +being saved +and +in +those +perishing +indeed +to one +an odor +from +death +to +death +now +to one +a fragrance +from +life +to +life +And +for +these things +who [is] +sufficient +for +Not +we are +peddling +the +word +- +of God +like +the +many +but +as +of +sincerity +but +as +of +God +before +God +in +Christ +we speak +Are we beginning +again +ourselves +to commend +Or +not +we need +like +some +commendatory +letters +to +you +or +from +you +The +letter +of us +you +are +having been inscribed +in +the +hearts +of us +being known +and +being read +by +all +men +being revealed +that +you are +a letter +of Christ +having been ministered to +by +us +having been inscribed +not +in ink +but +with [the] Spirit +of God +[the] living +not +on +tablets +of stone +but +on +tablets +of hearts +human +now +Confidence +such +we have +through +- +Christ +toward +- +God +Not +that +from +ourselves +sufficient +we are +to reckon +anything +as +of +ourselves +but +the +sufficiency +of us +[is] of +- +God +who +also +has made competent +us [as] +ministers +of a new +covenant +not +of [the] letter +but +of [the] Spirit +for +the +letter +kills +but +- +the Spirit +gives life +now +If +the +ministry +- +of death +in +letters +having been engraved +on stones +was produced +in +glory +so as for +not +to be able +the +sons +of Israel +to look intently +into +the +face +of Moses +on account of +the +glory +of the +face +of him +which +is fading +how +not +more +the +ministry +of the +Spirit +will be +in +glory +for +If +in the +ministry +- +of condemnation [was] +glory +much +more +abounds +the +ministry +- +of righteousness +[in] glory +for +Even +not +has been glorified +that +having been made glorious +in +this +- +respect +on account of +the +surpassing [it] +glory +for +If +that which +is fading away +[was] through +glory +much +more [is] +that +remaining +in +glory +therefore +Having +such +hope +great +boldness +we use +and +not +as +Moses +would put +a veil +over +the +face +of himself +for +- +not +to look intently +the +sons +of Israel +into +the +end +of that +fading away +But +were hardened +the +minds +of them +for +Until +the +present +day +the +same +veil +at +the +reading +of the +old +covenant +remains +not +being lifted +which +in +Christ +is being removed +But +unto +this day +- +when +shall be read +Moses +a veil +over +the +heart +of them +lies +however +Whenever +if +[one] shall have turned +to +[the] Lord +is taken away +the +veil +now +The +Lord +the +Spirit +is +now +where +the +Spirit +of [the] Lord [is] +[there is] freedom +now +We +all +having been unveiled +in face +the +glory +of [the] Lord +beholding as in a mirror +the +same +image +are being transformed into +from +glory +to +glory +even as +from +[the] Lord +[the] Spirit +Because of +this +having +the +ministry +this +as +we received mercy +not +we lose heart +But +we have renounced +the +hidden things +- +of shame +not +walking +in +craftiness +nor +falsifying +the +word +- +of God +but +- +by manifestation +of the +truth +commending +ourselves +to +every +conscience +of men +before +- +God +however +If +indeed +is +concealed +the +gospel +of us +to +those who +are perishing +it is +concealed +in +whom +the +god +of the +age +this +has blinded +the +minds +of the +unbelieving +so as for +- +not +to beam forth +the +illumination +of the +gospel +of the +glory +- +of Christ +who +is +[the] image +- +of God +for +Not +ourselves +do we proclaim +but +Christ +Jesus +Lord +now +ourselves +servants +of you +for the sake of +Jesus +For [it is] +- +God +- +having said +Out of +darkness +light +shall shine +who +shone +in +the +hearts +of us +for [the] +radiance +of the +knowledge +of the +glory +- +of God +in +[the] face +Christ +now +We have +the +treasure +this +in +earthen +vessels +that +the +surpassingness +of the +power +may be +- +from God +and +not +from +us +in +every [way] +being hard pressed +but +not +being crushed +being perplexed +but +not +despairing +being persecuted +but +not +being forsaken +being struck down +but +not +being destroyed +always +the +death +- +[of] Jesus +in +[our] +body +carrying around +so that +also +the +life +- +of Jesus +in +the +body +of us +should be manifested +for +always +we +the +living +to +death +are being delivered +on account of +Jesus +so that +also +the +life +- +of Jesus +may be manifested +in +the +mortal +flesh +of us +So then +- +death +in +us +works +but +- +life +in +you +however +Having +the +same +spirit +- +of faith +according to +that +having been written +I believed +therefore +I have spoken +also +we +believe +therefore +also +speak +knowing +that +the [One] +having raised up +the +Lord +Jesus +also +us +through +Jesus +will raise up +and +will present [us] +with +you +For +- +all things [are] +for the sake of +you +so that +the +grace +having abounded +through +- +more and more +the +thanksgiving +may increase +to +the +glory +- +of God +Therefore +not +we lose heart +but +if +indeed +the +outward +of us +man +is being brought to decay +yet +the +inner +of us +is being renewed +day +and +day +for +The +momentary +lightness +- +affliction +far +surpassing +to +excessiveness +an eternal +weight +of glory +is producing +for us +not +are looking at +we +the things +being seen +but +the things +not +being seen +for +The things +being seen [are] +temporary +however +the things +not +being seen +[are] eternal +for +We know +that +if +- +earthly +of us +house +the +tent +should be destroyed +from +God +we have +a building +a house +not made with hands +eternal +in +the +heavens +indeed +And +in +this +we groan +the +dwelling +of us +which [is] +from +heaven +to be clothed with +longing +If +indeed +also +having been clothed +not +naked +we will be found +for +And +- +being +in +the +tent +we groan +being burdened +because +that +we do wish +not +to be unclothed +but +to be clothed +that +may be swallowed up +the +mortal +by +- +life +now +The [One] +having prepared +us +for +very +this +[is] God +- +having given +to us +the +pledge +of the +Spirit +therefore +being confident +always +and +knowing +that +being at home +in +the +body +we are absent +from +the +Lord +for +by +faith +we walk +not +by +sight +now +We are confident +and +are pleased +rather +to be absent +out of +the +body +and +to be at home +with +the +Lord +Therefore +also +we are ambitious +whether +being at home +or +being away +well-pleasing +to Him +to be +For +- +all +of us +to be revealed +before +the +judgment seat +- +of Christ +it behooves +that +may receive back +each +the things [done] +in +the +body +according to +what +he did +whether +good +or +evil +therefore +Knowing +the +fear +of the +Lord +men +we persuade +and +to God +we have been made manifest +now +I hope +also +in +the +consciences +of you +to have been made manifest +Not +again +ourselves +are we commending +to you +but +occasion +of boasting +are giving +to you +on behalf of +us +so that +you may have [an answer] +toward +those +in +appearance +boasting +and +not +in +[the] heart +for +If +we are beside ourselves +[it is] to God +or if +we are sober-minded +[it is] for you +for +The +love +- +of Christ +compels +us +having concluded +this +that +One +for +all +has died +therefore +- +all +have died +And +for +all +He died +that +those +living +should live +no longer +to themselves +but +to the [One] +for +them +having died +and +having been raised again +Therefore +we +from +- +now +no one +regard +according to +[the] flesh +Though +even +we have regarded +according to +flesh +Christ +yet +now +no longer +we regard [Him thus] +Therefore +if +anyone +[is] in +Christ +[he is] a new +creation +The +old things +have passed away +behold +has come into being +[the] new +And +- +all things +[are] of +- +God +the [One] +having reconciled +us +to Himself +through +Christ +and +having given +to us +the +ministry +- +of reconciliation +how +that +God +was +reconciling +in +Christ +[the] world +to Himself +not +reckoning +to them +the +trespasses +of them +and +having put +into +us +the +word +- +of reconciliation +therefore +For +Christ +we are ambassadors +as though +- +God +is beseeching +through +us +We implore +on behalf +of Christ +Be reconciled +- +to God +The [One] +not +having known +sin +for +us +sin +He made +so that +we +might become +[the] righteousness +of God +in +Him +now +Working together +also +we exhort +not +in +vain +the +grace +- +of God +to receive +you +for +He says +In a time +acceptable +I listened to +you +and +in +a day +of salvation +I helped +you +Behold +now +[is the] time +of favor +behold +now +[is the] day +of salvation +Nothing +an obstacle +before +no one +placing +so that +not +should be blemished +the +ministry +rather +in +everything +we are commending +ourselves +as +God’s +servants +in +endurance +great +in +tribulations +in +hardships +in +distresses +in +beatings +in +imprisonments +in +riots +in +labors +in +watchings +in +fastings +in +purity +in +knowledge +in +patience +in +kindness +in [the] +Spirit +Holy +in +love +genuine +in [the] +word +of truth +in [the] +power +of God +with +the +weapons +- +of righteousness +for the +right hand +and +for [the] left +through +glory +and +dishonor +through +bad report +and +good report +as +imposters +and yet +true +as +being unknown +and yet +being well-known +as +dying +and yet +behold +we live +as +being disciplined +and yet +not +being killed +as +being sorrowful +yet +always +rejoicing +as +poor +yet +many +enriching +as +nothing +having +and yet +all things +possessing +Corinthians +The +mouth +of us +has been opened +to +you +the +heart +of us +has been expanded +Not +you are restrained +by +us +however +you are restrained +in +the +affections +of you +Now +- +[as] the same +recompense +as +to children +I speak +be expanded +also +you +Not +become +unequally yoked together +with unbelievers +for +what +partnership [have] +righteousness +and +lawlessness +Or +what +fellowship +light +with +darkness +now +What +harmony +Christ +with +Belial +Or +what +part +to a believer +with +an unbeliever +now +What +agreement +[the] temple +of God +with +idols +for +We +[the] temple +of God +[the] living +are +as +has said +- +God +- +I will dwell +in +them +and +will walk among [them] +and +I will be +their +God +and +they +will be +to Me +a people +Therefore +come out +from +the midst +of them +and +be separate +and +unclean +nothing +touch +says +[the] Lord +and I +will receive +you +and +I will be +to you +for +a father +and +you +will be +to Me +for +sons +and +daughters +says +[the] Lord +Almighty +therefore +beloved +having +These +- +promises +we should cleanse +ourselves +from +every +defilement +of flesh +and +spirit +perfecting +holiness +in +[the] fear +of God +Make room for +us +no one +we have wronged +no one +we have corrupted +no one +we have exploited +For +condemnation +not +I speak +for +I have before said +that +in +the +hearts +of us +you are +for [us] +- +to die together +and +to live together +Great [is] +my +boldness +toward +you +great +my +boasting +on behalf of +you +I have been filled +- +with encouragement +I overabound +- +with joy +upon +all +the +affliction +of us +for +And +having come +of us +into +Macedonia +no +had +rest +the +flesh +of us +but +in +every [way] +we are being pressed +on the outside +conflicts +within +fears +But +the [One] +comforting +the +downcast +- +God +comforted +us +by +the +coming +of Titus +now +not +only +by +the +coming +of him +but +also +by +the +comfort +with which +he was comforted +as to +you +relating +to us +- +your +earnest desire +- +your +mourning +- +your +zeal +for +me +so as +for me +the more +to rejoice +For +if +also +I have grieved +you +in +the +letter +not +I do regret [it] +Though +even +I did regret [it] +I see +that +the +letter +that +if +even +for +an hour +grieved +you +Now +I rejoice +not +that +you were grieved +but +that +you were grieved +unto +repentance +for +you were grieved +according to +God +so that +in +nothing +you might suffer loss +through +us +for +The +according to +God +grief +repentance +to +salvation +without regret +produces +and +- +the of the +world +grief +death +produces +for +Behold +this very +same +thing +according to +God +to have been grieved +has produced +in you +how much +earnestness +but instead +reasoned defense +but +indignation +but +fear +but +longing +but +zeal +but +vindication +In +everything +you have proved +yourselves +innocent +to be +in this +matter +So +if +even +I wrote +to you +[it was] not +for the sake of +the [one] +having done wrong +nor +for the sake of +the [one] +having suffered wrong +but rather +for the sake of +- +being revealed +the +earnestness +of you +which [is] +for +us +to +you +before +- +God +On account of +this +we have been comforted +now +Besides +the +comfort +of us +the more abundantly +rather +we have rejoiced +at +the +joy +of Titus +because +has been refreshed +the +spirit +of him +by +all +of you +For +if +anything +to him +about +you +I have boasted +not +I was put to shame +but +as +all things +in +truth +we have spoken +to you +so +also +the +boasting +of us +to +Titus +truth +became +And +the +affections +of him +more abundantly +toward +you +are +remembering +the +of all +of you +obedience +how +with +fear +and +trembling +you received +him +I rejoice +that +in +everything +I am confident +in +you +now +brothers +We make known +to you +the +grace +- +of God +- +having been bestowed +among +the +churches +- +of Macedonia +that +in +much +proof +of tribulation +the +abundance +of the +joy +of them +and +- +of +deep +poverty +of them +abounded +into +the +riches +the +generosity +of them +I testify [that] +For +according to +[their] ability +and +beyond +[their] ability +[they were] willing of themselves +with +much +entreaty +imploring +of us +for the +grace +and +the +fellowship +of the +service +- +among +the +saints +And +not [only] +as +we had hoped +but +themselves +they gave +first +to the +Lord +and then +to us +by [the] +will +of God +Accordingly +- +exhorted +we +Titus +that +as +he had begun +so +also +he might complete +with +you +as well +the +grace +this +But +even as +in +every [way] +you abound +in faith +and +speech +and +knowledge +and +all +earnestness +and +in the +from +us +to +you +love +that +also +in +this +- +grace +you should abound +Not +as +a command +do I speak +but +through +the +of others +earnestness +also +the +- +of your +love +genuineness +proving +for +You know +the +grace +of the +Lord +of us +Jesus +Christ +that +for the sake of +you +He became poor +rich +being +so that +you +- +through that +poverty +might be enriched +And +a judgment +in +this [matter] +I give +indeed +this +for you +is profitable +who +not +only +- +to act +but +also +- +to will +have begun +from +a year ago +then +Now +also +the +doing +complete +so that +just as +[there was] the +readiness +of the +to will +so +also +the +to complete +out of +that which +you have +for +If +the +readiness +is present +as +if +he might have +acceptable +not +as +not +he does have +for +Not +that +to others [there may be] +ease +but for you +affliction +but +of +equality +At +the +present +time +- +your +abundance +[will be] for +the +of those +need +so that +also +- +their +abundance +may be +for +the +of you +need +so that +there may be +equality +As +it has been written +He +the +much +not +did abound +and +he +the +little +not +had lack +however +Thanks +- +to God +the [One] +putting +the +same +earnestness +for +you +into +the +heart +of Titus +For +indeed +[our] +appeal +he accepted +however +very earnest +being +of his own accord +he has gone out +to +you +now +We have sent +with +him +the +brother +whose +- +praise +[is] in +the +gospel +through +all +of the +churches +now +not +only +but +also +having been chosen +by +the +churches +fellow traveler +of us +with +- +grace +this +that [is] +being administered +by +us +toward +the +himself +of the +Lord +glory +and +readiness +of us +avoiding +this +lest +anyone +us +should blame +in +the +abundance +this +- +being administered +by +us +for +We are taking great care to do +what is right +not +only +before +[the] Lord +but +also +before +men +now +We sent with +them +the +brother +of us +whom +we have proven +in +many things +often +earnest +to be +however +now +much +earnest +by [his] confidence +more +which [is] +in +you +Whether +as regards +Titus +[he is] partner +my +and +for +you +a fellow worker +or +brothers +our +[they are] apostles +of [the] churches +[the] glory +of Christ +Therefore +- +the proof +of the +love +of you +and +of our +boasting +about +you +to +them +show +in +face +of the +churches +for +now +Concerning +the +service +- +for +the +saints +superfluous +for me +it is +- +to write +to you +for +I know +the +readiness +of you +which +concerning +you +I boast of +to Macedonians +that +Achaia +has been prepared +from +a year ago +and +- +your +zeal +has been provoking +the +greater number +however +I have sent +the +brothers +that +not +the +boasting +of us +which [is] +about +you +should be made void +in +the +matter +this +that +as +I have been saying +prepared +you may be +Not +perhaps +if +should come +with +me +Macedonians +and +find +you +unprepared +would be put to shame +we +that +not +we might say +you +in +the +confidence +this +therefore +Necessary +I esteemed [it] +to exhort +the +brothers +that +they should go before +unto +you +and +should complete beforehand +the +foreannounced +blessing +of you +this +ready +to be +thus +as +a blessing +and +not +as +covetousness +now +This +The [one] +sowing +sparingly +sparingly +also +will reap +and +the [one] +sowing +upon +blessings +upon +blessings +also +will reap +each +as +he purposes +in the +heart +not +out of +regret +or +of +necessity +for +a cheerful +giver +loves +- +God +now +Able [is] +- +God +all +grace +to make abound +to +you +so that +in +every [way] +always +all +sufficiency +having +you may abound +in +every +work +good +As +it has been written +He has scattered abroad +He has given +to the +poor +the +righteousness +of Him +abides +to +the +age +now +The [One] +supplying +seed +to him +sowing +and +bread +for +food +will supply +and +will multiply +the +seed for sowing +of you +and +will increase +the +fruits +of the +righteousness +of you +in +every [way] +enriching you +to +all +generosity +which +produces +through +us +thanksgiving +- +to God +For +the +ministry +of the +service +this +not +only +is +completely filling up +the +needs +of the +saints +but +also +is overflowing +through +many +thanksgivings +- +to God +through +the +proof +of the +service +this +[they] glorifying +- +God +at +the +submission +of the +of confession +of you +to +the +gospel +- +of Christ +and +[the] generosity +of the +participation +toward +them +and +toward +all +and +their +supplication +[is] for +you +a longing +for you +on account of +the +surpassing +grace +- +of God +upon +you +Thanks [be] +- +to God +for +the +indescribable +of Him +gift +now +Myself +I +Paul +exhort +you +by +the +meekness +and +gentleness +- +of Christ +who +indeed +as to +appearance +[am] humble +among +you +however +being absent +am bold +toward +you +now +I implore [you] +that +not +being present +to be bold +with the +confidence +with which +I reckon +to be daring +toward +some +- +reckoning +us +as +according to +flesh +walking +for +In +flesh +walking +not +according to +flesh +do we wage war +for +The +weapons +of the +warfare +of us +[are] not +fleshly +but +powerful +- +divinely +to +[the] demolition +of strongholds +overthrowing +arguments +and +every +high thing +lifting itself up +against +the +knowledge +- +of God +and +taking captive +every +thought +into +the +obedience +- +of Christ +and +in +readiness +having +to avenge +all +disobedience +when +might have been fulfilled +your +- +obedience +The things +according to +appearance +are you looking +If +anyone +is persuaded +in himself +of Christ +to be +this +let him reckon +again +within +himself +that +as +he +[is] of Christ +so +also [are] +we +for +If +even +more abundantly +somewhat +I should boast +concerning +the +authority +of us +which +has given [us] +the +Lord +for +building [you] up +and +not +for +tearing down +you +not +I will be ashamed +that +not +[I] might seem +as if +- +to frighten +you +by means of +the +letters +For +they say +indeed +the +letters +[are] weighty +and +strong +but +- +the presence +of the +body +weak +and +the +speech +having been ignored +This +let reckon +- +such a one +that +such as +we are +- +in word +by +letters +being absent +such [we are] +also +being present +- +in action +for +Not +dare we +to classify +or +to compare +ourselves [with] +some +- +themselves +commending +but +these +by +themselves +themselves +measuring +and +comparing +themselves +with themselves +not +understand +however +We +not +into +the things +beyond measure +will boast +but +according to +the +measure +of the +area +that +has assigned +to us +- +God +a measure +to reach +as far as +also +you +for +Not +as +not +reaching +to +you +we are overextending +ourselves +for +as far as +also +you +we came +in +the +gospel +- +of Christ +not +to +the things +beyond measure +boasting +in +others’ +labors +however +hope +having +increasing +the +faith +of you +among +you +to be enlarged +according to +the +area +of us +to +abundance +so as +that +beyond +you +to preach the gospel +not +in +another’s +area +in +things +ready +to boast +however +The [one] +boasting +in +[the] Lord +let him boast +for +Not +the [one] +himself +commending +this [one] +is +approved +but +the one whom +the +Lord +commends +I wish +you were bearing with +me +little +a +in foolishness +but +indeed +you do bear with +me +for +I am jealous as to +you +of God +with [the] jealousy +for +I have betrothed +you +to one +husband +a virgin +pure +to present +- +to Christ +however +I am afraid +lest +by any means +as +the +serpent +deceived +Eve +in +the +craftiness +of him +might be corrupted +the +minds +of you +from +the +simplicity +and +the +purity +- +in +Christ +for +indeed +If +the [one] +coming +proclaims +another +Jesus +whom +not +we did proclaim +or +you receive +a spirit +different +which +not +you did receive +or +glad tidings +different +which +not +you did accept +well +are you bearing with [it] +for +I reckon +in nothing +to have been inferior +to those +most eminent +apostles +however +If +even +unpolished +- +in speech [I am] +yet +not +- +in knowledge +but +in +every [way] +we have been made manifest +in +all things +to +you +Or +a sin +did I commit +myself +humbling +so that +you +might be exalted +because +freely +the +- +of God +gospel +I preached +to you +Other +churches +I robbed +having received +support +for +the +toward you +service +And +being present +with +you +and +having been in need +not +I did burden +no one +for +- +the need +of me +completely filled up +the +brothers +having come +from +Macedonia +and +in +everything +unburdensome +myself +to you +I kept +and +will keep +Is +[the] truth +of Christ +in +me +that +the +boasting +this +not +will be sealed up +of +mine +in +the +regions +- +of Achaia +Because of +why +Because +not +I do love +you +- +God +knows [I do] +however +What +I do +also +I will do +so that +I might cut off +the +opportunity +of those +desiring +an opportunity +that +in +what +they are boasting +they might be found +as +also +we +For +- +such [are] +false apostles +workers +deceitful +disguising themselves +as +apostles +of Christ +And +no +wonder +for +himself +- +Satan +masquerades +as +an angel +of light +therefore +[It is] not +surprising +if +also +the +servants +of him +masquerade +as +servants +of righteousness +whose +- +end +will be +according to +the +deeds +of them +Again +I say +no +one +should think +me +a fool +to be +however +if +otherwise +even +as +a fool +receive +me +that +I also +little +a +may boast +What +I am saying +not +according to +[the] Lord +am I saying +but +as +in +foolishness +in +this +the +confidence +- +of boasting +Since +many +boast +according to +the +flesh +I also +will boast +for +Gladly +you bear with +- +fools +wise +being +for +You bear [it] +if +anyone +you +enslaves +if +anyone +devours [you] +if +anyone +takes [from you] +if +anyone +exalts himself +if +anyone +in +[the] face +of you +strikes [you] +As to +dishonor +I speak +as +that +we +have been weak +however +- +In +whatever +anyone +might be daring +in +foolishness +I speak +am daring +I also +Hebrews +are they +I also +Israelites +are they +I also +Descendants +of Abraham +are they +I also +Servants +of Christ +are they +As being beside myself +I speak +above [measure] +I [too] +in +labors +more abundantly +in +imprisonments +more abundantly +in +beatings +above measure +in +deaths +often +From +[the] Jews +five times +forty [lashes] +minus +one +I received +Three times +I was beaten with rods +once +I was stoned +three times +I was shipwrecked +a night and a day +in +the +deep [sea] +I have passed +in journeyings +often +in perils +of rivers +in perils +of robbers +in perils +from [my own] +race +in perils +from +[the] Gentiles +in perils +in +[the] city +in perils +in +[the] wilderness +in perils +on +[the] sea +in perils +among +false brothers +in labor +and +toil +in +watchings +often +in +hunger +and +thirst +in +fastings +often +in +cold +and +nakedness +Besides +the things +external +the +pressure +on me +- +on every +day +[is my] +care +for all +the +churches +Who +is weak +and +not +I am weak +Who +is led into sin +and +not +I +do burn inwardly +If +to boast +it behooves [me] +[in] the things +of the +weakness +of me +I will boast +The +God +and +Father +of the +Lord +Jesus +the [One] +being +blessed +to +the +ages +knows +that +not +I am lying +In +Damascus +the +governor +under Aretas +the +king +was guarding +the +city +of the Damascenes +to seize +me +But +through +a window +in +a basket +I was let down +through +the +wall +and +I escaped +the +hands +of him +To boast +it behooves [me] +indeed +not +is it profitable +however +I will go on +to +visions +and +revelations +of [the] Lord +I know +a man +in +Christ +whether +in +[the] body +not +I know +or +out of +the +body +not +I know +- +God +knows +ago +years +fourteen +having been caught up +- +such a man +to +[the] third +heaven +And +I know +- +such +a man +whether +in +[the] body +or +out of +the +body +not +I know +- +God +knows +that +he was caught up +into +- +Paradise +and +he heard +inexpressible +words +- +to speak +not +being permitted +to man +Concerning +- +such a man +I will boast +however +concerning +myself +not +I will boast +if +not +in +the +weaknesses +for +If +I should desire +to boast +not +I will be +a fool +for +[the] truth +I will be speaking +however +I refrain +lest +anyone +to +me +should credit +more than +what +he sees +in me +or +hears +of +me +and +the +surpassingness +of the +revelations +Therefore +that +not +I should become conceited +was given +to me +a thorn +in [my] +flesh +a messenger +of Satan +that +me +he might buffet +so that +not +I should become conceited +For +this +three times +the +Lord +I begged +that +it might depart +from +me +And +He said +to me +Suffices +you +the +grace +of Me +for +the +power +in +weakness +is perfected +therefore +Most gladly +rather +will I boast +in +the +weaknesses +so that +may rest +upon +me +the +power +- +of Christ +Therefore +I take pleasure +in +weaknesses +in +insults +in +hardships +in +persecutions +and +difficulties +for +Christ +for +when +I might be weak +then +strong +I am +I have become +a fool +you +me +compelled +for +I +ought +by +you +to have been commended +for +In no way +was I inferior +to those +most eminent +apostles +though +even +nothing +I am +indeed +The +signs +of the +apostle +were performed +among +you +in +all +perseverance +both +in signs +and +wonders +and +miracles +for +In what +is it +that +you were inferior +beyond +the +rest +[of the] churches +if +not +that +myself +I +not +did burden +you +Forgive +me +the +wrong +this +Behold +third time +this +ready +I am +to come +to +you +and +not +I will burden [you] +for +not +I seek +what [is] +yours +but +you +for +Not +ought +the +children +for the +parents +to treasure up +but +the +parents +for the +children +now +I +most gladly +will spend +and +will be utterly spent +for +the +souls +of you +If +more abundantly +you +loving +less +I am loved +however +Be it so +I +not +did burden +you +but +being +crafty +by trickery +you +I caught +Not +any +of whom +I have sent +to +you +by +him +did I exploit +you +I urged +Titus [to go] +and +sent with [him] +the +brother +Not +did exploit +you +Titus +Not +in the +same +spirit +did we walk +Not +in the +same +steps +All along +have you been thinking +that +to you +we have been making a defense +Before +God +in +Christ +we speak +but +beloved +- +all things +for +- +your +edification +for +I fear +lest +perhaps +having come +not +such as +I wish +I may find +you +and I +might be found +by you +such as +not +you do wish +lest +perhaps +quarreling +jealousy +anger +contentions +slander +gossip +conceit +disorder +lest +again +having come +of me +should humble +me +the +God +of me +as to +you +and +I should mourn over +many +of those +having before sinned +and +not +having repented +of +the +impurity +and +sexual immorality +and +sensuality +that +they have practiced +Third +this [time] +I am coming +to +you +In [the] +mouth +of two +witnesses +or +three +will be established +every +matter +I have warned +and +I warn +as +being present +the +second time +and +being absent +now +those +having sinned before +and +the +rest +all +that +if +I come +to +the [same] +again +not +I will spare [anyone] +since +you seek +a proof +- +in +me +speaking +of Christ +who +toward +you +not +is weak +but +is powerful +among +you +for +And +He was crucified +in +weakness +yet +He lives +by +power +God’s +for +Also +we +are weak +in +Him +but +we will live +with +Him +by +power +God’s +toward +you +Yourselves +examine +whether +you are +in +the +faith +yourselves +test +Or +not +do you recognize +yourselves +that +Jesus +Christ [is] +in +you +if +not +unapproved +you are +now +I hope +that +you will know +that +we +not +are +unapproved +now +We pray +to +- +God +not +to do +you +wrong +nothing +not +that +we +approved +might appear +but +that +you +what [is] +right +may do +though +we +as +unapproved +might appear +for +Nothing +have we power +any +against +the +truth +but +for +the +truth +for +We rejoice +when +we +might be weak +however +you +strong +might be +also +We pray for +But this +the +of you +perfection +Because of +therefore +these things +being absent +I write +so that +being present +not +with severity +I should treat [you] +according to +the +authority +that +the +Lord +has given +me +for +building up +and +not +for +tearing down +brothers +Finally +rejoice +Be perfected +be exhorted +[be of] the +same +mind +be at peace +And +the +God +- +of love +and +peace +will be +with +you +Greet +one another +with +a holy +kiss +Greet +you +the +saints +all +The +grace +of the +Lord +Jesus +Christ +and +the +love +of +God +and +the +fellowship +of the +Holy + +[be] with +all +of you +Paul +an apostle +not +from +men +nor +through +man +but +through +Jesus +Christ +and +God +[the] Father +the [One] +having raised +Him +out from +[the] dead +and +the +with +me +all +brothers +To the +churches +- +of Galatia +to you +Grace +and +peace +from +God +Father +of us +and +the Lord +Jesus +Christ +the [One] +having given +Himself +for +the +sins +of us +so that +He might deliver +us +out of +the +age +of +having come presently +evil +according to +the +will +of the +God +and +Father +of us +to whom [be] +the +glory +to +the +ages +of the +ages +Amen +I am astonished +that +so +quickly +you are deserting +from +the [One] +having called +you +in +[the] grace +of Christ +to +a different +gospel +which +not +is +another +if +not +some +there are +who +are troubling +you +and +are desiring +to pervert +the +gospel +- +of Christ +But +even +if +we +or +an angel +out of +heaven +should preach a gospel +to you +contrary to +what +we proclaimed +to you +accursed +let him be +As +we have said before +even +now +again +I say +if +anyone +[to] you +is preaching a gospel +contrary to +what +you received +accursed +let him be +for +Presently +do I seek approval +of men +or +- +God +Or +do I seek +men +to please +For if +yet +men +I were pleasing +- +of Christ +a servant +not +I would be +for +brothers +I make known +to you +the +gospel +- +having been preached +by +me +that +not +it is +according to +man +for +Neither +I +from +man +received +it +nor +was I taught [it] +but +by +a revelation +of Jesus +Christ +for +You have heard of +- +my +way of life +former +in +- +Judaism +that +beyond +exceeding measure +I was persecuting +the +church +- +of God +and +was destroying +it +And +I was advancing +in +- +Judaism +beyond +many +contemporaries +in +the +countrymen +of me +more abundantly +being +zealous +of the +fathers +of me +traditions +however +When +was pleased +- +having selected +me +from +[the] womb +of mother +of me +and +having called [me] +by +the +grace +of Him +to reveal +the +Son +of Him +in +me +that +I might preach +Him +among +the +Gentiles +immediately +not +I consulted +with flesh +and +blood +nor +did I go up +to +Jerusalem +to +the +before +me +apostles +but +I went away +into +Arabia +and +again +returned +to +Damascus +Then +after +three +years +I went up +to +Jerusalem +to make acquaintance with +Cephas +and +I remained +with +him +days +fifteen +however +Other +of the +apostles +none +I saw +if +not +James +the +brother +of the +Lord +now +In what +I write +to you +behold +before +- +God +- +not +I lie +Then +I went +into +the +regions +- +of Syria +and +- +Cilicia +then +I was +unknown +- +by face +to the +churches +- +of Judea +that [are] +in +Christ +however +Only +hearing +they were +that +the [one] +persecuting +us +formerly +now +is preaching +the +faith +which +once +he was destroying +And +they were glorifying +in +me +- +God +Then +after +fourteen +years +again +I went up +to +Jerusalem +with +Barnabas +having taken with [me] +also +Titus +now +I went up +according to +a revelation +and +set before +them +the +gospel +that +I proclaim +among +the +Gentiles +however +apart +individually +to those +esteemed +lest +hardly +in +vain +I should be running +or +have run +But +not even +Titus +who [was] +with +me +a Greek +being +was compelled +to be circumcised +even +because of +the +brought in secretly +false brothers +who +came in by stealth +to spy out +the +freedom +of us +which +we have +in +Christ +Jesus +that +us +they will enslave +to whom +not even +for +an hour +did we yield +- +in subjection +so that +the +truth +of the +gospel +might continue +with +you +now +Of +those +esteemed +to be +something +whatsoever +formerly +they were +not +to me +makes a difference +[the] person +of a man +- +God +not +does accept +for +to me +the +esteemed +nothing +added +But +on the contrary +having seen +that +I have been entrusted with +the +gospel +of the +uncircumcision +just as +Peter [with that] +of the +circumcision +for +the [One] +having worked +in Peter +for +apostleship +of the +circumcision +did +also +in me +toward +the +Gentiles +and +having known +the +grace +- +having been given +to me +James +and +Cephas +and +John +those +esteemed +pillars +to be +[the] right hands +of fellowship +gave +to me +and +Barnabas +that +we [should go] +to +the +Gentiles +however +they +to +the +circumcision +Only [they asked] +that +the +poor +we should remember +that +also +I was eager +the same +thing +to do +however +When +came +Peter +to +Antioch +to +face +his +I opposed [him] +because +condemned +he stood +for +Before +- +came +certain ones +from +James +with +the +Gentiles +he was eating +however +when +they came +he was drawing back +and +was separating +himself +being afraid of +those +of +[the] circumcision +And +acted hypocritically +with him +also +the +rest +of [the] Jews +so that +even +Barnabas +was carried away +of them +by the +hypocrisy +But +when +I saw +that +not +they are walking uprightly +according to +the +truth +of the +gospel +I said +- +to Peter +before +all +If +you +a Jew +being +like a Gentile +and +not +like a Jew +live +why +do you compel +the +Gentiles +to Judaize +We +by birth +Jews +and +not +of +[the] Gentiles +sinners +nevertheless +knowing +that +not +is justified +a man +by +works +of law +if +not +through +faith +Christ +from Jesus +even +we +in +Christ +Jesus +have believed +that +we may be justified +by +faith +from Christ +and +not +by +works +of the Law +because +by +works +of the Law +not +will be justified +any +flesh +however +If +seeking +to be justified +in +Christ +have been found +also +we ourselves +sinners +[is] then +Christ +of sin +a minister +Never +may it be +for +If +that +I had torn down +these things +again +I build +a transgressor +myself +I prove +for +I +through +[the] Law +to [the] Law +died +that +to God +I might live + + +now +I live +no longer +I +however +lives +in +me +Christ +I have been crucified with then +Christ that which +now +I live +in +[the] flesh +I live +through +faith +that +from the +Son +- +of God +the [One] +having loved +me +and +having given up +Himself +for +me +Not +I do set aside +the +grace +- +of God +for +if +through +[the] Law +righteousness [is] +then +Christ +for naught +died +O +foolish +Galatians +Who +you +has bewitched +whose +before +eyes +Jesus +Christ +was publicly portrayed +[as] having been crucified +I wish +This +only +to learn +from +you +the +Spirit +did you receive +by +works +of [the] Law +or +by +hearing +of faith +So +foolish +are you +Having begun +in [the] Spirit +now +in [the] flesh +are you being perfected +So many things +did you suffer +in vain +if +indeed +also +in vain +therefore +The [One] +supplying +to you +the +Spirit +and +working +miracles +among +you +[is it] out of +works +of the Law +or +out of +hearing +of faith +So also +Abraham +believed +- +God +and +it was reckoned +to him +as +righteousness +then +Know +that +those +of +faith +these +sons +of Abraham +are +then +the +Scripture +Having foreseen +that +by +faith +justifies +the +Gentiles +- +God +foretold the gospel +- +to Abraham +- +Will be blessed +in +you +all +the +nations +So then +those +of +faith +are blessed +along with +the +believing +Abraham +for +As many as +of +works +of [the] Law +are +under +a curse +are +for +it has been written +- +Cursed [is] +everyone +who +not +does continue +all things +- +having been written +in +the +book +of the +Law +- +to do +them +now +That +by +[the] law +no one +is justified +before +- +God +[is] evident +because +The +righteous +by +faith +will live +And +- +the Law +not +is +of +faith +rather +The [one] +having done +these things +will live +by +them +Christ +us +redeemed +from +the +curse +of the +Law +having become +for +us +a curse +for +it has been written +Cursed [is] +everyone +- +hanging +on +a tree +so that +to +the +Gentiles +the +blessing +- +of Abraham +might come +in +Jesus +Christ +so that +the +promise +of the +Spirit +we might receive +through +- +faith +Brothers +according to +man +I am speaking +Even +of man +having been ratified +a covenant +no one +sets aside +or +adds thereto +And +were spoken +the +promises +- +to Abraham +and +to the +seed +of him +Not +it does say +and +- +to seeds +as +of +many +but +as +of +One +and +to the +seed +of you +who +is +Christ +now +This +I say +[The] covenant +having been confirmed beforehand +by +- +God +- +afterward +four hundred +and +thirty +years +having come +[the] law +not +does annul +so as +- +to nullify +the +promise +for +If +by +[the] Law [is] +the +inheritance +[it is] no longer +by +a promise +but +- +to Abraham +through +a promise +has granted [it] +- +God +then +Why +the +Law +- +Transgressions +on account of +it was added +until +that +should have come +the +seed +to whom +promise has been made +having been ordained +through +angels +in +[the] hand +of a mediator +However +- +a mediator +of one [person] +not +is +but +- +God +one +is +therefore +The +Law +[is] contrary to +the +promises +- +of God +Never +may it be +for +If +had been given +a law +- +being able +to impart life +- +indeed +from out of +[the] Law +would have emerged +- +righteousness +but +imprisoned +the +Scripture +things +all +under +sin +so that +the +promise +by +faith +from Jesus +Christ +might be given +to those +believing +now +Before +- +came +- +faith +under +the Law +we were held in custody +having been locked up +until +the +being about +to be revealed +faith +so that +the +Law +trainer +of us +has become +unto +Christ +so that +by +faith +we might be justified +now +Having come +- +faith +no longer +under +a trainer +we are +for +All +sons +of God +you are +through +- +faith +in +Christ +Jesus +for +As many as +into +Christ +you were baptized +Christ +you have put on +Neither +there is +Jew +nor +Greek +neither +there is +slave +nor +free +neither +there is +male +and +female +for +all +you +one +are +in +Christ +Jesus +now +If +you [are] +Christ’s +then +- +Abraham’s +seed +you are +according to +[the] promise +heirs +now +I say +for +as long as +time +the +heir +a child +is +not +he differs +from a slave +[though] owner +of everything +being +Instead +under +guardians +and +trustees +he is +until +the +time appointed +by [his] +father +So +also +we +when +we were +children +under +the +basic principles +of the +world +were +held in bondage +however +When +had come +the +fullness +of the +time +sent forth +- +God +the +Son +of him +having been born +of +a woman +having been born +under +[the] Law +that +those +under +[the] Law +He might redeem +so that +the +divine adoption as sons +we might receive +now +Because +you are +sons +sent forth +- +God +the +Spirit +of the +Son +of Him +into +the +hearts +of us +crying out +Abba +- +Father +So +you are +no longer +a slave +but +a son +now +if +a son +also +an heir +through +God +But +indeed +at that time +not +knowing +God +you were enslaved +to those +by nature +not +being +gods +however +now +having known +God +however +rather +having been known +by +God +how +do you turn +again +to +the +weak +and +destitute +principles +to which +again +anew +to be enslaved +you desire +you observe +Days +and +months +and +seasons +and +years +I fear +for you +lest +perhaps +in vain +I have toiled +for +you +Become +as +I [am] +because +I also [have become] +as +you +brothers +I implore +you +In nothing +me +have You wronged +now +You know +that +in +weakness +of the +flesh +I proclaimed the gospel +to you +at the +first +and +not +the +test +of you +in +the +flesh +of me +you did despise [me] +nor +reject [me] with contempt +but +as +an angel +of God +you received +me +even as +Christ +Jesus +then +What +the +blessedness +of you +for +I bear witness +to you +that +if +possible +the +eyes +of you +having gouged out +you would have given [them] +to me +So +enemy +of you +have I become +speaking truth +to you +They are zealous after +you +not +rightly +but +to exclude +you [from us] +They desire +so that +them +you might be zealous after +now +Good [it is] +to be zealous +in +a right [thing] +at all times +and +not +only +in +- +being present +my +with +you +Children +of me +of whom +again +I travail +until +that +shall have been formed +Christ +in +you +indeed +I was wishing +to be present +with +you +presently +and +to change +the +tone +of me +because +I am perplexed +as to +you +Tell +me +those +under +[the] Law +to be +wishing +the +Law +not +you do listen to +for +It has been written +that +Abraham +had +two +sons +one +of +the +slave woman +and +one +of +the +free +But +indeed +the [one] +of +the +slave woman +according to +flesh +has been born +but +the [one] +of +the +free +through +the +promise +which things +are +allegorized +for +these +are +two +covenants +indeed +one +from +Mount +Sinai +unto +slavery +begetting +which +is +Hagar +And +- +Hagar +Sinai +Mount +is +in +- +Arabia +now +she corresponds +to the +present +Jerusalem +for +she is in slavery +with +the +children +of her +But +- +the above +Jerusalem +free +is +who +is +mother +of us +for +It has been written +Rejoice +O barren woman +the [one] +not +bearing +break forth +and +call aloud +the [one] +not +travailing +because +many +[are] the +children +of the +desolate woman +more +than +of her +having +the +husband +now +brothers +You +like +Isaac +of promise +children +are +But +just as +at that time +the [one] +according to +flesh +having been born +was persecuting +the [one born] +according to +Spirit +so +also +[it is] now +But +what +says +the +Scripture +Cast out +the +slave woman +and +the +son +of her +for +no +not +will inherit +the +son +of the +slave woman +along with +the +son +of the +free +So then +brothers +we are +not +of [the] slave woman +children +but +of the +free +In +freedom +us +Christ +has set free +therefore +stand firm +and +not +again +in a yoke +of slavery +entangle yourselves +Behold +I +Paul +say +to you +that +if +you shall become circumcised +Christ +you +nothing +will profit +now +I testify +again +to every +man +being circumcised +that +a debtor +he is +all +the +Law +to keep +You are severed +from +Christ +whoever +in +[the] Law +are being justified +from +grace +you have fallen away +for +We +through [the] Spirit +by +faith +[the] hope +of righteousness +eagerly await +for +In +Christ +Jesus +neither +circumcision +nor +uncircumcision +any +has power +but only +faith +through +love +working +You were running +well +Who +cut into +you +truth +not +to obey +[This] +persuasion [is] +not +of +the [One] +calling +you +A little +leaven +whole +the +lump +leavens +I +am confident +as to +you +in +[the] Lord +that +no +other +mind will you have +however +The [one] +troubling +you +will bear +the +judgment +if +whoever +he might be +now +brothers +if +I +circumcision +still +proclaim +why +still +am I persecuted +In that case +has been abolished +the +offense +of the +cross +I wish +also +will emasculate themselves +those +upsetting +you +for +You +to +freedom +were called +brothers +but +not +the +freedom +for +an opportunity +to the +flesh +Rather +through +- +love +serve +one another +For +- +the entire +Law +is fulfilled +in +one +word +in +this +You shall love +the +neighbor +of you +as +yourself +however +If +one another +you bite +and +devour +take heed +lest +by +one another +you might be consumed +now +I say +by [the] Spirit +walk +and +[the] desire +[of the] flesh +no +not +you should gratify +for +The +flesh +desires +against +the +Spirit +and +- +the Spirit +against +the +flesh +for +these +to one another +are opposed +in order +not +if +that +you might wish +those things +you should do +however +If +[the] Spirit +you are led by +not +you are +under +[the] Law +now +Evident +are +the +works +of the +flesh +which +are +sexual immorality +impurity +sensuality +idolatry +sorcery +enmities +strife +jealousy +outbursts of anger +contentions +dissensions +factions +envyings +drunkennesses +carousing +and +things +like +these +as to which +I forewarn +you +even as +I warned before +that +those +such +things +doing +kingdom +God’s +not +will inherit +But +- +the fruit +of the +Spirit +is +love +joy +peace +patience +kindness +goodness +faithfulness +gentleness +self-control +against +things +such +no +there is +law +now +Those +- +of Christ +Jesus +the +flesh +have crucified +with +[its] +passions +and +- +desires +If +we live +by [the] Spirit +by [the] Spirit +also +we should walk +Not +we should become +boastful +one another +provoking +one another +envying +Brothers +if +even +should be overcome +a man +in +some +trespass +you +the +spiritual [ones] +restore +- +such a one +in +a spirit +of gentleness +considering +yourself +lest +also +you +be tempted +One another’s +- +burdens +bear you +and +thus +you shall fulfill +the +law +- +of Christ +for +If +thinks [himself] +anyone +to be +something +nothing +being +he deceives +himself +But +- +the work +of himself +test +each +and +then +as to +himself +alone +the +ground of boasting +he will have +and +not +as to +- +another +for +Each +- +his own +load +shall bear +now +Let share +the [one] +being taught +in the +word +with the [one] +teaching +in +all +good things +Not +be misled +God +not +is mocked +for +if +Whatever +might sow +a man +that +also +he will reap +For +the [one] +sowing +to +the +flesh +of himself +from +the +flesh +will reap +decay +however +The [one] +sowing +to +the +Spirit +from +the +Spirit +will reap +life +eternal +And +- +[in] well +doing +not +we should grow weary +for +in time +due +we will reap a harvest +not +giving up +So +then +as +occasion +we have +we should work +- +good +toward +all +now +especially +toward +those +of the household +of the +of faith +See +in how large +letters +to you +I have written +with +my own +hand +As many as +wish +to have a fair appearance +in +[the] flesh +these +compel +you +to be circumcised +that +only +for the +cross +- +of Christ +not +they might be persecuted +for +Not even +those +being circumcised +themselves +[the] Law +keep +but +they desire +you +to be circumcised +so that +in +- +your +flesh +they may boast +however +For me +never +may it be +to boast +if +never +in +the +cross +of the +Lord +of us +Jesus +Christ +through +which +to me +[the] world +has been crucified +and I +[to the] world +for +anything +is +Neither +circumcision +nor +uncircumcision +instead +a new +creation +And +as many as +those who +rule +by this +will walk +peace [be] +and +mercy +upon +them +and +upon +the +Israel +- +of God +The +henceforth +troubles +to me +no one +let give +for +I +the +marks +- +of Jesus +on +of the +body +of me +bear +The +grace +of the +Lord +of us +Jesus +Christ +[be] with +the +spirit +of you +brothers +Amen +Paul +an apostle +of Christ +Jesus +by +[the] will +of God +To the +saints +- +being +in +Ephesus +and +faithful +in +Christ +Jesus +to you +Grace +and +peace +from +God +[the] Father +of us +and +[the] Lord +Jesus +Christ +Blessed [be] +the +God +and +Father +of the +Lord +of us +Jesus +Christ +the [One] +having blessed +us +with +every +blessing +spiritual +in +the +heavenly realms +in +Christ +just as +He chose +us +in +Him +before +[the] foundation +of [the] world +to be +for us +holy +and +blameless +before +Him +in +love +having predestined +us +for +divine adoption as sons +through +Jesus +Christ +to +Himself +according to +the +good pleasure +of the +will +of Him +to +[the] praise +of [the] glory +of the +of grace +of Him +which +He has freely given +us +in +the +Beloved [One] +in +whom +we have +- +redemption +through +the +blood +of Him +the +forgiveness +- +of trespasses +according to +the +riches +of the +grace +of Him +which +He lavished +upon +us +in +all +wisdom +and +understanding +having made known +to us +the +mystery +of the +will +of Him +according to +the +pleasure +of Him +which +He purposed +in +Him +for +[the] administration +of the +fullness +of the +times +to bring together +the +all things +in +- +Christ +the things +in +the +heavens +and +the things +upon +the +earth +in +Him +in +whom +also +we have obtained an inheritance +having been predestined +according to +[the] purpose +of the [One] +- +all things +working +according to +the +counsel +of the +will +of Him +for +- +to be +to +[the] praise +of [the] glory +of Him +us +the [ones] +having first trusted +in +- +Christ +in +whom +also +you +having heard +the +word +- +of truth +the +gospel +of the +salvation +of you +in +whom +also +having believed +you were sealed +with the +Spirit +- +of promise +- +Holy +who +is +[the] guarantee +of the +inheritance +of us +to +[the] redemption +of the +acquired possession +to +[the] praise +of the +glory +of Him +Because of +this +I also +having heard of +the +among +you +faith +in +the +Lord +Jesus +and +the +love +- +toward +all +the +saints +not +do cease +giving thanks +for +you +mention +making +in +the +prayers +of me +that +the +God +of the +Lord +of us +Jesus +Christ +the +Father +- +of glory +may give +to you +[a] spirit +of wisdom +and +revelation +in +[the] knowledge +of Him +being enlightened +the +eyes +of the +heart +of you +in order for +- +to know +you +what +is +the +hope +of the +calling +of Him +what +[are] the +riches +of the +glory +of the +inheritance +of Him +in +the +saints +and +what +[is] the +surpassing +greatness +of the +power +of Him +toward +us +those +believing +according to +the +working +of the +might +of the +strength +of Him +which +He worked +in +- +Christ +having raised +Him +out from +[the] dead +and +having set [Him] +at +[the] right hand +of Him +in +the +heavenly realms +above +every +principality +and +authority +and +power +and +dominion +and +every +name +being named +not +only +in +the +age +this +but +also +in +the [one] +coming +And +all things +He put +under +the +feet +of Him +and +Him +gave +[to be] head +over +all things +to the +church +which +is +the +body +of Him +the +fullness +of the [One] +- +all +in +all +filling +And +you +being +dead +in the +trespasses +and +the +sins +of you +in +which +once +you walked +according to +the +age +the +world +of this +according to +the +ruler +of the +authority +of the +air +the +spirit +- +now +working +in +the +sons +- +of disobedience +among +whom +also +we +all +lived +once +in +the +desires +of the +flesh +of us +doing +the +things willed +of the +flesh +and +of [its] +thoughts +and +we were +children +of wrath +by nature +as +even +the +rest +But +- +God +rich +being +in +mercy +because of +the +great +love +of Him +with which +He loved +us +even +being +we +dead +- +in trespasses +made [us] alive with +- +Christ +by grace +you are +saved +and +He raised [us] up together +and +seated [us] together +in +the +heavenly realms +in +Christ +Jesus +in order that +He might show +in +the +ages +that +[are] coming +the +surpassing +riches +of the +grace +of Him +in +kindness +toward +us +in +Christ +Jesus +For +- +by grace +you are +saved +through +faith +and +this +not +of +yourselves +[it is] of God +the +gift +not +as a result of +works +so that +not +anyone +may boast +for +we are +Of Him +workmanship +having been created +in +Christ +Jesus +for +works +good +which +prepared beforehand +- +God +that +in +them +we should walk +Therefore +remember +that +formerly +you +the +Gentiles +in +[the] flesh +the ones +being called +[the] uncircumcision +by +that +being called +[the] circumcision +in +[the] flesh +made by hands +that +you were +at the +time +that +separate from +Christ +alienated from +the +commonwealth +- +of Israel +and +strangers +to the +covenants +of the +promise +hope +not +having +and +without God +in +the +world +however +Now +in +Christ +Jesus +you +the [ones] +once +being +far off +have become +near +by +the +blood +- +of Christ +for +He Himself +is +the +peace +of us +- +having made +- +both +one +and +the +barrier +of the +fence +the +hostility +having broken down +in +the +flesh +of Him +the +law +- +of commandments +in +ordinances +having annulled +so that +the +two +He might create +in +Himself +into +one +new +man +making +peace +and +He might reconcile +- +both +in +one +body +- +to God +through +the +cross +having slain +the +hostility +by +it +And +having come +He proclaimed the gospel +peace +to you +the [ones] +far off +and +peace +to those +near +For +through +Him +we have +the +access +- +both +by +one +Spirit +to +the +Father +So +then +no longer +are you +strangers +and +aliens +but +are +fellow citizens +of the +saints +and +of the household +- +of God +having been built +upon +the +foundation +of the +apostles +and +prophets +being +[the] cornerstone +Himself +Christ +Jesus +in +whom +the whole +building +being fitted together +is increasing +into +a temple +holy +in +[the] Lord +in +whom +also +you +are being built together +for +a habitation +- +of God +in +[the] Spirit +Of this +for reason +I +Paul +the +prisoner +- +of Christ +Jesus +for +you +- +Gentiles +If +indeed +you have heard of +the +administration +of the +grace +- +of God +- +having been given +to me +toward +you +that +by +revelation +He made known +to me +the +mystery +just as +I have written before +in +brief +by +which +you are able +reading [it] +to understand +the +insight +of me +into +the +mystery +- +of Christ +which +in other +generations +not +was made known +to the +sons +- +of men +as +now +it has been revealed +to +holy +apostles +His +and +prophets +in +[the] Spirit +are +the +Gentiles +joint-heirs +and +a joint-body +and +joint-partakers +of the +promise +in +Christ +Jesus +through +the +gospel +of which +servant +I became +according to +the +gift +of the +grace +- +of God +- +having been given +to me +according to +the +working +of the +power +of Him +To me +the +very least +of all +saints +was given +the +grace +this +to the +Gentiles +to preach +the +unsearchable +riches +- +of Christ +and +to enlighten +what [is] +the +administration +of the +mystery +- +having been hidden +from +the +ages +in +- +God +the [One] +- +all things +having created +so that +should be made known +now +to the +rulers +and +the +authorities +in +the +heavenly realms +through +the +church +the +manifold +wisdom +- +of God +according to +[the] purpose +of the +ages +which +He accomplished +in +- +Christ +Jesus +the +Lord +of us +in +whom +we have +- +boldness +and +access +in +confidence +by +the +faith +from Him +Therefore +I implore [you] +not +to lose heart +at +the +tribulations +of me +for +you +which +is +glory +of you +... of this +for reason +I bow +the +knees +of me +to +the +Father +from +whom +every +family +in +[the] heavens +and +on +earth +is named +that +He might give +you +according to +the +riches +of the +glory +of Him +with power +to be strengthened +by +the +Spirit +of Him +in +the +inner +man +[for] to dwell +- +Christ +through +- +faith +in +the +hearts +of you +in +love +being rooted +and +being founded +so that +you may be fully able +to comprehend +with +all +the +saints +what [is] +the +breadth +and +length +and +height +and +depth +then +to know +the +surpassing +- +knowledge +love +- +of Christ +so that +you may be filled +unto +all +the +fullness +- +of God +now +To the [One] +being able +to do +exceedingly +above +all things +that +we ask +or +think +according to +the +power +- +working +in +us +to Him [be] +the +glory +in +the +church +and +in +Christ +Jesus +to +all +the +generations +of the +age +of the +ages +Amen +therefore +Exhort +you +I +the +prisoner +in +[the] Lord +worthily +to walk +of the +calling +to which +you were called +with +all +humility +and +gentleness +with +patience +bearing with +one another +in +love +being diligent +to keep +the +unity +of the +Spirit +in +the +bond +- +of peace +one +body +and +one +Spirit +just as +also +you were called +into +one +hope +of the +calling +of you +one +Lord +one +faith +one +baptism +one +God +and +Father +of all +who [is] +over +all +and +through +all +and +in +all +now +One +to each +of us +has been given +- +grace +according to +the +measure +of the +gift +- +of Christ +Therefore +it says +Having ascended +on +high +He led captive +captivity +gave +gifts +- +to men +And +- +He ascended +what +is +if +not +that +also +He descended +into +the +lower +regions +of the +earth +The [One] +having descended +the same +is +also +[one] +having ascended +above +all +the +heavens +so that +He might fill +- +all things +And +He +gave +indeed +some +[to be] apostles +now +some +prophets +now +some +evangelists +now +some +shepherds +and +teachers +toward +the +perfecting +of the +saints +for +[the] work +of ministry +for +[the] building up +of the +body +- +of Christ +until +we may attain +- +all +to +the +unity +of the +faith +and +of the +knowledge +of the +Son +- +of God +unto +a man +a complete +to +[the] measure +of [the] stature +of the +fullness +- +of Christ +so that +no longer +we might be +infants +being tossed by waves +and +being carried about +by every +wind +- +of teaching +in +the +cunning +- +of men +in +craftiness +with a view to +the +scheming +- +of deceit +however +Speaking the truth +in +love +we should grow up +in +all things +into +Him +who +is +the +head +Christ +from +whom +all +the +body +being joined together +and +being held together +by +every +ligament +of [its] +supply +according to +[the] working +in +[the] measure +individual +of each +part +the +increase +of the +body +makes for itself +to +[the] building up +of itself +in +love +therefore +This +I say +and +testify +in +[the] Lord +No longer +[are] you +to walk +as +also +the +Gentiles +are walking +in +[the] futility +of the +mind +of them +being darkened +being +in the +understanding +alienated from +the +life +- +of God +because of +the +ignorance +- +being +in +them +on account of +the +hardness +of the +heart +of them +who +having cast off all feeling +themselves +have given up +to +sensuality +for +[the] working +of impurity +all +with +greediness +however +You +not +this way +learned +- +Christ +if +indeed +Him +you have heard +and +in +Him +have been taught +just as +is +[the] truth +in +- +Jesus +Are to have put off +you +concerning +the +former +way of life +the +old +man +which +is being corrupted +according to +[its] +desires +- +of deceit +then +to be renewed +in the +spirit +of the +mind +of you +and +to have put on +the +new +man +- +according to +God +having been created +in +righteousness +and +holiness +- +of truth +Therefore +having put off +- +falsehood +let speak +truth +each one +with +the +neighbor +of him +because +we are +of one another +members +Be angry +and yet +not +sin +The +sun +not +let set +upon +anger +of you +neither +give +opportunity +to the +devil +The [one] +stealing +no longer +let him steal +however +rather +let him toil +working +with the +own +hands +what +[is] good +so that +he may have [something] +to impart +to the [one] +need +having +Any +word +unwholesome +out of +the +mouth +of you +not +let go forth +but +if +any +good +for +edification +of the +need +so that +it may give +grace +to those +hearing +And +not +grieve +the +Spirit +- +Holy +- +of God +in +whom +you were sealed +for +[the] day +of redemption +All +bitterness +and +rage +and +anger +and +clamor +and +slander +let be removed +from +you +along with +all +malice +now +Be +to +one another +kind +tender-hearted +forgiving +each other +as +also +- +God +in +Christ +forgave +you +therefore +Be +imitators +- +of God +as +children +beloved +and +walk +in +love +just as +also +- +Christ +loved +us +and +gave up +himself +for +us +[as] an offering +and +a sacrifice +- +to God +into +an aroma +of a sweet smell +however +Sexual immorality +and +impurity +all +or +covetousness +not even +let be named +among +you +as also +is proper +to saints +and +filthiness +and +foolish talking +or +crude joking +which +not +are fitting +but +rather +thanksgiving +for +This +you know +realizing +that +any +fornicator +or +unclean person +or +covetous man +who +is +an idolater +not +has +inheritance +in +the +kingdom +- +of Christ +and +of God +No one +you +let deceive +with empty +words +for +because of +these things +comes +the +wrath +- +of God +upon +the +sons +- +of disobedience +therefore +Not +be +partakers +with them +for +You were +once +darkness +however +now +light +in +[the] Lord +as +children +of light +walk +for +- +the fruit +of the +light [is] +in +all +goodness +and +righteousness +and +truth +discerning +what +is +well-pleasing +to the +Lord +And +not +have fellowship with +the +works +- +unfruitful +- +of darkness +however +rather +even +expose [them] +for +the things +in secret +being done +by +them +shameful +it is +even +to mention +But +- +everything +being exposed +by +the +light +is made visible +for +everything +- +becoming visible +light +is +Therefore +it says +Awake you +the [one] +sleeping +and +rise up +out from +the +dead +and +will shine upon +you +- +Christ +therefore +Take heed +carefully +how +you walk +not +as +unwise +but +as +wise +redeeming +the +time +because +the +days +evil +are +Because of +this +not +be +foolish +but +understand +what +the +will +of the +Lord [is] +And +not +to be drunk +with wine +in +which +is +debauchery +Instead +be filled +with +[the] Spirit +speaking +to each other +psalms +and +hymns +and +songs +spiritual +singing +and +making melody +in the +heart +of you +to the +Lord +giving thanks +at all times +for +all things +in +[the] name +the +Lord +of us +Jesus +Christ +to the +God +and +Father +Be submitting yourselves +to one another +in +reverence +of Christ +- +wives +to the +own +husbands +as +to the +Lord +for +[the] husband +is +head +of the +wife +as +also +- +Christ +[is the] head +of the +church +He Himself +Savior +of the +body +But +even as +the +church +is subjected +- +to Christ +so +also +- +wives +to the own +husbands +in +everything +- +Husbands +love +the +wives +just as +also +- +Christ +loved +the +church +and +Himself +gave up +for +her +so that +her +He might sanctify +having cleansed [her] +by the +washing +- +of water +by +[the] word +so that +might present +He +to Himself +the +church +in glory +not +having +spot +or +wrinkle +or +any +of the +such things +but +that +it would be +holy +and +blameless +So +ought +also +- +husbands +to love +the +of themselves +wives +as +the +of themselves +bodies +The [one] +loving +the +of himself +wife +himself +loves +for +No one +at any time +the +of himself +flesh +hated +but +he nourishes +and +cherishes +it +just as +also [does] +- +Christ +the +church +for +we are +members +of the +body +of Him +Because of +this +will leave +a man +his +father +and +- +mother +and +be joined +to +the +wife +of him +and +will be +the +two +into +flesh +one +The +mystery +this +great +is +however +I +speak +as to +Christ +and +as to +the +church +However +also +you +- +according to +individual +each +the +of himself +wife +so +let love +as +himself +and +- +the wife +that +she may respect +the +husband +- +Children +obey +the +parents +of you +in +[the] Lord +for +this +is +right +Honor +the +Father +of you +and +- +mother +which +is +[the] commandment +first +with +a promise +that +well +with you +it may be +and +you will be +long-lived +upon +the +earth +And +- +fathers +not +provoke +the +children +of you +but +bring up +them +in +[the] discipline +and +admonition +of [the] Lord +- +Slaves +obey +the +according to +flesh +masters +with +fear +and +trembling +in +sincerity +of the +heart +of you +as +to +Christ +not +with +eye-service +as +men-pleasers +but +as +servants of +Christ +doing +the +will +- +of God +from +[the] heart +with +good will +rendering service +as +to the +Lord +and +not +to men +knowing +that +if +each one +whatever +good +he might have done +this +he will receive [back] +from +[the] Lord +whether +slave +or +free +And +- +masters +the same things +them +do +toward +them +giving up +the +threatening +knowing +that +also +of them +and +of you +the +master +is +in +[the] heavens +and +partiality +not +there is +with +Him +- +Henceforth +be empowered +in +[the] Lord +and +in +the +strength +of the +might +of Him +Put on +the +complete armor +- +of God +for +- +to be able +you +to stand +against +the +schemes +of the +devil +because +is +to us +the +wrestling +not +against +blood +and +flesh +but +against +the +rulers +against +the +authorities +against +the +cosmic powers +of the +darkness +this +against +the +spiritual [forces] +- +of evil +in +the +heavenly realms +Because of +this +take up +the +complete armor +- +of God +so that +you may be able +to withstand +in +the +day +- +evil +and +all things +having done +to stand +therefore +Stand +having girded +the +loins +of you +with +truth +and +having put on +the +breastplate +- +of righteousness +and +having shod +the +feet +with +[the] readiness +of the +gospel +- +of peace +besides +all +having taken up +the +shield +- +of faith +with +which +you will be able +all +the +arrows +of the +evil one +- +flaming +to quench +And +take +the +helmet +- +of salvation +and +the +sword +of the +Spirit +which +is +[the] word +of God +through +all +prayer +and +supplication +praying +in +every +season +in +[the] Spirit +and +unto +this very thing +watching +with +all +perseverance +and +supplication +for +all +- +saints +and also +for +me +that +to me +may be given +divine utterance +in +[the] opening +of the +mouth +of me +with +boldness +to make known +the +mystery +of the +gospel +for +which +I am an ambassador +in +a chain +that +in +it +I may be bold +as +it behooves +me +to speak +now +That +may know +also +you +the things +concerning +me +what +I am doing +all things +will make known +to you +Tychicus +the +beloved +brother +and +faithful +servant +in +[the] Lord +whom +I have sent +to +you +for +this very +purpose +that +you may know +the things +concerning +us +and +he may encourage +the +hearts +of you +to the +brothers +Peace +and +love +with +faith +from +God +[the] Father +and +[the] Lord +Jesus +Christ +- +Grace +[be] with +all +those +loving +the +Lord +of us +Jesus +Christ +in +incorruptibility +Paul +and +Timothy +servants +of Christ +Jesus +To all +the +saints +in +Christ +Jesus +- +being +in +Philippi +with +[the] overseers +and +deacons +to you +Grace +and +peace +from +God +Father +of us +and +[the] Lord +Jesus +Christ +I thank +the +God +of me +upon +every +- +remembrance +of you +always +in +every +supplication +of me +for +all +of you +with +joy +the +supplication +making +for +the +partnership +of you +in +the +gospel +from +the +first +day +until +- +now +being persuaded of +[the] very thing +this +that +the [One] +having begun +in +you +a work +good +will complete [it] +until +[the] day +of Christ +Jesus +Accordingly +it is +right +for me +this +to feel +about +all +of you +since +- +have +I +in +the +heart +you +both +in +the +chains +of me +and +in +the +defense +and +confirmation +of the +gospel +fellow partakers +with me +of +grace +all +you +are +for +Witness +my +- +God [is] +how +I long after +all +you +in +[the] affection +of Christ +Jesus +And +this +I pray +that +the +love +of you +yet +more +and +more +may abound +in +knowledge +and +all +discernment +for +- +to approve +you +the things +being excellent +so that +you may be +pure +and +blameless +unto +[the] day +of Christ +being filled +with [the] fruit +of righteousness +that [is] +through +Jesus +Christ +to +[the] glory +and +praise +of God +now +brothers +I want +To know +you +that +the things +concerning +me +really +to +[the] advancement +of the +gospel +have turned out +so as for +the +chains +of me +clearly known +in +Christ +to have become +in +all +the +palace guard +and +to the +rest +all +and +- +most +of the +brothers +in +[the] Lord +trusting +by the +chains +of me +more abundantly +to dare +fearlessly +the +word +of +God +to speak +indeed +Some +even +from +envy +and +strife +however +some +also +from +goodwill +- +Christ +are proclaiming +indeed +the [ones] +out of +love +knowing +that +for +defense +of the +gospel +I am appointed +however +the [ones] +out of +selfish ambition +- +Christ +are proclaiming +not +purely +supposing +tribulation +to add +to the +chains +of me +then +What +Only +that +in every +way +whether +in pretext +or +in truth +Christ +is proclaimed +And +in +this +I rejoice +Yes +and +I will rejoice +for +I know +that +this +for me +will turn out +to +deliverance +through +- +your +prayer +and +[the] provision +of the +Spirit +of Jesus +Christ +according to +the +earnest expectation +and +hope +of me +that +in +nothing +I will be ashamed +but +in +all +boldness +as +always +also +now +will be magnified +Christ +in +the +body +of me +whether +by +life +or +by +death +for +To me +- +to live +[is] Christ +and +- +to die +[is] gain +however +If [I am] +- +to live +in +flesh +this +for me +[is the] fruit +of labor +And +what +shall I choose +Not +I know +however +I am pressed +between +the +two +the +desire +having +for [myself] +- +to depart +and +with +Christ +to be +for +very much +more +better +but +- +to remain +the +flesh +[is] more necessary +for the sake of +you +And +this +having been persuaded of +I know +that +I will remain +and +will continue with +all +of you +for +- +your +progress +and +joy +of the +faith +so that +the +boasting +of you +may abound +to +Christ +Jesus +in +me +through +- +my +coming +again +to +you +Only +worthily +of the +gospel +- +of Christ +conduct yourselves +so that +whether +having come +and +having seen +you +or +being absent +I might hear +the things +concerning +you +that +you are standing firm +in +one +spirit +with one +mind +striving together +for the +faith +of the +gospel +and +not +being frightened +in +nothing +by +those +opposing [you] +which +is +to them +a demonstration +of destruction +however +to you +of salvation +and +this +from +God +For +to you +it has been granted +- +concerning +Christ +not +only +- +in +Him +to believe +but +also +- +concerning +Him +to suffer +having +the +same +conflict +such as +you saw +in +me +and +now +hear of +in +me +therefore +If [there is] +any +encouragement +in +Christ +if +any +comfort +of love +if +any +fellowship +of [the] Spirit +if +any +affections +and +compassions +fulfill +my +- +joy +so that +the +same +you may be minded +the +same +love +having +united in soul +the +same thing +minding +nothing +according to +self-interest +or +according to +vain conceit +but +- +in humility +one another +be esteeming +surpassing +themselves +not +the things +of themselves +each +considering +but +also +the things +of others +each +This +let mind be +in +you +which +also +in +Christ +Jesus [was] +Who +in +[the] form +of God +existing +not +something to be grasped +considered +- +to be +equal +with God +but +Himself +emptied +[the] form +of a servant +having taken +in +[the] likeness +of men +having been made +And +in appearance +having been found +as +a man +He humbled +Himself +having become +obedient +unto +death +even +[the] death +of [the] cross +Therefore +also +- +God +Him +highly exalted +and +granted +to Him +the +name +- +above +every +name +that +at +the +name +of Jesus +should bow +every +knee +in the heavens +and +on earth +and +under the earth +and +every +tongue +should confess +that +[is] Lord +Jesus +Christ +to +[the] glory +of God +[the] Father +Therefore +beloved +of me +just as +always +you have obeyed +as +not +in +the +presence +of me +only +but +now +much +more +in +the +absence +of me +with +fear +and +trembling +- +your own +salvation +work out +for +God +is +the [One] +working +in +you +both +- +to will +and +- +to work +according to +[His] +good pleasure +All things +do +without +murmurings +and +disputings +so that +you may be +blameless +and +innocent +children +of God +unblemished +in [the] midst +of a generation +crooked +and +perverted +among +whom +you shine +as +lights +in +[the] world +[the] word +of life +holding forth +unto +a boast +to me +in +[the] day +of Christ +that +not +in +vain +I did run +nor +in +vain +toil +But +if +even +I am being poured out as a drink offering +on +the +sacrifice +and +service +of the +faith +of you +I am glad +and +rejoice with +all +you +And +- +likewise +also +you +be glad +and +rejoice with +me +however +I hope +in +[the] Lord +Jesus +Timothy +soon +to send +to you +that +I also +may be encouraged +having known +the things +concerning +you +for +No one +like-minded +I have +who +genuinely +the things +relative to +you +will care for +for +Those +all +the things +of themselves +are seeking +not +the things +of Christ +Jesus +But +- +the proven worth +of him +you know +that +as +a father [with] +a child +with +me +he has served +in +the +gospel +therefore +indeed +I hope +Him +to send +when +- +I shall have seen +the things +concerning +me +immediately +now +I am persuaded +in +[the] Lord +that +also +I myself +soon +I will come +now +I esteemed [it] +Necessary +Epaphroditus +the +brother +and +fellow worker +and +fellow soldier +of me +now +of you +messenger +and +minster +of the +need +of me +to send +to +you +since +longing after +he was +all +you +and +being deeply distressed +because +you heard +that +he was ill +indeed +And +he was sick +nearly +unto death +but +- +God +had mercy on +him +now +not +on him +alone +but +also +on me +that +not +sorrow +upon +sorrow +I should have +therefore +All the more speedily +I have sent +him +that +having seen +him +again +you may rejoice +and I +less anxious +might be +therefore +Receive +him +in +[the] Lord +with +all +joy +and +- +such +in honor +hold +because +for the sake of +the +work +of Christ +unto +death +he came near +having disregarded +[his] +life +so that +he might fill up +the +of you +deficit +of +toward +me +service +brothers +of me +- +Finally +rejoice +in +[the] Lord +The +same things +to write +to you +indeed +to me +[is] not +troublesome +now +for you +[is] safe +Beware of +the +dogs +beware of +the +evil +workers +beware of +the +false circumcision +for +are +the +circumcision +We +those +in [the] Spirit +of God +worshiping +and +glorying +in +Christ +Jesus +and +not +in +[the] flesh +having put confidence +though +I +have +confidence +even +in +[the] flesh +If +any +other +thinks +to have confidence +in +[the] flesh +I +more +circumcision +on [the] eighth day +of +[the] nation +of Israel +of [the] tribe +of Benjamin +a Hebrew +of +Hebrews +according to +[the] Law +a Pharisee +according to +zeal +persecuting +the +church +according to +righteousness +which [is] +in +[the] Law +having become +faultless +But +whatever things +were +to me +gain +these +I have esteemed +because of +- +Christ +loss +But +- +therefore +indeed +also +I count +all things +loss +to be +because of +the +excelling +- +knowledge +of Christ +Jesus +the +Lord +of me +because of +whom +- +all things +I have lost +and +esteem [them] +rubbish +that +Christ +I may gain +and +be found +in +Him +having +not +my own +righteousness +which [is] +of +[the] Law +but +that +through +faith +from Christ +the +of +God +righteousness +on the basis of +- +faith +- +to know +Him +and +the +power +of the +resurrection +of Him +and +fellowship +sufferings +of Him +being conformed +to the +death +of Him +if +by any means +I may attain +to +the +resurrection +- +out from +dead +Not +that +already +I have obtained [it] +or +already +have been perfected +however +I am pursuing +if +also +I may lay hold +of +that for which +also +I was laid hold of +by +Christ +Jesus +Brothers +I +not +do consider +myself +to have taken hold [of it] +however +One thing +indeed +The things +behind +forgetting +now +to the things +ahead +reaching forward +toward +[the] goal +I press on +for +the +prize +of the +upward +calling +- +of God +in +Christ +Jesus +therefore +As many as +[are] mature +this +should be of mind +and +if [in] +anything +differently +you are minded +even +this +- +God +to you +will reveal +Nevertheless +to +that which +we have attained +by the +same +to walk +brothers +Imitators together +of me +be +and +observe +those +thus +walking +as +you have +[for] a pattern +us +for +Many +are walking +[of] whom +often +I told +you +indeed +now +even +weeping +I say +- +[as] enemies +of the +cross +- +of Christ +whose +- +end [is] +destruction +whose +- +God [is] +the +belly +and +- +glory +[is] in +the +shame +of them +those +things +earthly +minding +for +Of us +the +citizenship +in +[the] heavens +exists +from +whence +also +we are awaiting +a Savior +[the] Lord +Jesus +Christ +who +will transform +the +body +- +of humiliation +of us +conformed +to the +body +of the +glory +of Himself +according to +the +working +- +enabling +Him +even +to subdue +to Himself +- +all things +Therefore +brothers +of me +beloved +and +longed for +[the] joy +and +crown +of me +in this way +stand firm +in +[the] Lord +beloved +Euodia +I exhort +and +Syntyche +I exhort +the +same +to be of mind +in +[the] Lord +Yes +I ask +also +you +true +yokefellow +help +these [women] +who +in +the +gospel +labored together +with me +with +also +Clement +and +the +rest +of [the] fellow workers +of me +whose +- +names [are] +in +[the] book +of life +Rejoice +in +[the] Lord +always +again +I will say +rejoice +The +gentleness +of you +let be known +to all +men +The +Lord +[is] near +Nothing +be anxious about +but +in +everything +by +prayer +and +- +supplication +with +thanksgiving +the +requests +of you +let be made known +to +- +God +And +the +peace +- +of God +- +surpassing +all +understanding +will guard +the +hearts +of you +and +the +minds +of you +in +Christ +Jesus +brothers +- +Finally +whatever +is +true +whatever +venerable +whatever +right +whatever +pure +whatever +lovely +whatever +admirable +if +any +excellence +and +if +any +praise +these things +think on +What +also +you have learned +and +have received +and +have heard +and +have seen +in +me +these things +practice +and +the +God +- +of peace +will be +with +you +however +I rejoiced +in +[the] Lord +greatly +that +now +at last +you revived +the +for +me +caring +wherein +which +also +you were concerned +however +you were lacking opportunity +Not +that +as to +destitution +I speak +for +I +have learned +in +that which +I am +content +to be +I know +also +[how] to be brought low +I know +also +[how] to abound +In +everything +and +in +all things +I have learned the secret +also +to be full +and +to hunger +also +to abound +and +to be deficient +[For] all things +I have strength +in +the [One] +strengthening +me +But +well +you did +having fellowship in +my +- +affliction +now +Philippians +Know +also +you +that +when +I went out +from +Macedonia +in +[the] beginning +of the +gospel +not one +church +with me +had partnership +with regard to +the matter +of giving +and +receiving +if +not +you +alone +For +even +in +Thessalonica +both +once +and +twice +for +the +needs +of me +you sent +Not +that +I seek after +the +gift +but +I seek after +the +fruit +- +abounding +to +[the] account +of you +however +I have +all things +and +abound +I am full +having received +from +Epaphroditus +the things +from +you +an odor +of a sweet smell +a sacrifice +acceptable +well-pleasing +- +to God +And +- +[the] God +of me +will fill up +all +[the] needs +of you +according to +the +riches +of Him +in +glory +in +Christ +Jesus +now +To +[the] God +and +Father +of us [is] +[be] the +glory +to +the +ages +of the +ages +Amen +Greet +every +saint +in +Christ +Jesus +Greet +you +the +with +me +brothers +Greet +you +all +the +saints +now +especially +those +from +- +Caesar's +household +The +grace +of the +Lord +Jesus +Christ +[be] with +the +spirit +of you +Paul +an apostle +of Christ +Jesus +by +[the] will +of God +and +Timothy +the +brother +To the +in +Colossae +saints +and +faithful +brothers +in +Christ +to you +Grace +and +peace +from +God +[the] Father +of us +We give thanks +to the +God +[and] Father +of the +Lord +of us +Jesus +Christ +continually +for +you +praying +having heard of +the +faith +of you +in +Christ +Jesus +and +the +love +that +you have +toward +all +the +saints +because of +the +hope +- +being laid up +for you +in +the +heavens +which +you heard of before +in +the +word +of +truth +the +gospel +the [one] +being present +unto +you +just as +also +in +all +the +world +it is +bearing fruit +and +increasing +just as +also +among +you +from +the +day +you heard +and +knew +the +grace +- +of God +in +truth +just as +you learned +from +Epaphras +the +beloved +fellow bond-servant +of us +who +is +faithful +on behalf of +us +a servant +- +of Christ +the [one] +also +having made known +to us +- +your +love +in +[the] Spirit +Because of +this +also +we +from +the +day +we heard +not +cease +for +you +praying +and +asking +that +you may be filled with +the +knowledge +of the +will +of Him +in +all +wisdom +and +understanding +spiritual +to walk +worthily +of the +Lord +in +all +pleasing +in +every +work +good +bringing forth fruit +and +growing +in the +knowledge +- +of God +with +all +power +being strengthened +according to +the +might +- +glorious +of Him +unto +all +endurance +and +patience +with +joy +giving thanks +to the +Father +the [One] +having qualified +you +for +the +share +of the +inheritance +of the +saints +in +the +light +who +has delivered +us +from +the +dominion +- +of darkness +and +transferred [us] +into +the +kingdom +of the +Son +- +beloved +of Him +in +whom +we have +- +redemption +the +forgiveness +- +of sins +[He] +is +[the] image +of the +God +- +invisible +[the] firstborn +over all +creation +because +in +Him +were created +- +all things +in +the +heavens +and +upon +the +earth +the +visible +and +the +invisible +whether +thrones +or +dominions +or +rulers +or +authorities +- +all things +through +Him +and +unto +Him +have been created +And +He +is +before +all things +and +- +all things +in +Him +hold together +And +He +is +the +head +of the +body +the +church +who +is +beginning +firstborn +out from +the +dead +so that +might be +He +in +all things +holding preeminence +because +was pleased +in +Him +all +the +fullness +to dwell +and +by +Him +to reconcile +- +all things +to +Himself +having made peace +by +the +blood +of the +cross +of Him +through +Him +whether +the things +on +the +earth +or +the things +in +the +heavens +And +you +once +being +alienated +and +hostile +- +in mind +in +the +deeds +- +evil +however +now +He has reconciled [You] +in +the +body +of the +flesh +of Him +through +- +death +to present +you +holy +and +unblemished +and +blameless +before +Him +if +indeed +you continue +- +in the faith +established +and +firm +and +not +being moved away +from +the +hope +of the +gospel +that +you have heard +- +having been proclaimed +in +all +creation +- +under +- +heaven +of which +a minister +have become +I +Paul +Now +I rejoice +in +the +sufferings +for +you +and +I am filling up +that which +is lacking +of the +tribulations +- +of Christ +in +the +flesh +of me +for +the +body +of Him +which +is +the +church +of which +a minister +became +I +according to +the +administration +- +of God +- +having been given +me +toward +you +to complete +the +word +- +of God +the +mystery +- +having been hidden +from +the +ages +and +from +the +generations +however +now +having been manifested +to the +saints +of Him +to whom +has willed +- +God +to make known +what [is] +the +riches +of the +glory +of the +mystery +this +among +the +Gentiles +which +is +Christ +in +you +the +hope +- +of glory +whom +we +preach +admonishing +every +man +and +teaching +every +man +in +all +wisdom +so that +we may present +every +man +perfect +in +Christ +Unto +this +also +I toil +striving +according to +the +energy +of Him +- +working +in +me +in +power +for +I want +you +to know +how great +a struggle +I am having +for +you +and +those +in +Laodicea +and +as many as +not +have seen +the +face +of me +in +[the] flesh +that +may be encouraged +the +hearts +of them +having been knit together +in +love +and +to +all +[the] riches +of the +full assurance +- +of understanding +to +[the] knowledge +of the +mystery +- +of God +[which is] Christ +in +whom +are +all +the +treasures +- +of wisdom +and +of knowledge +hidden +This +I say +so that +no one +you +might delude +by +persuasive speech +truly +If +indeed +in the +flesh +I am absent +yet +- +in spirit +with +you +I am +rejoicing +and +seeing +your +- +good order +and +the +firmness +of the +in +Christ +faith +of you +therefore +Just as +you have received +- +Christ +Jesus +the +Lord +in +Him +walk +having been rooted +and +being built up +in +Him +and +being strengthened in +the +faith +just as +you were taught +abounding +with +thanksgiving +Take heed +lest +anyone +there will be +- +taking captive +you +through +- +philosophy +and +empty +deceit +according to +the +tradition +- +of men +according to +the +principles +of the +world +and +not +according to +Christ +For +in +Him +dwells +all +the +fullness +of the +Deity +bodily +and +you are +complete +in +Him +who +is +the +head +of all +rule +and +authority +in +whom +also +you were circumcised +with [the] circumcision +made without hands +in +the +removal +of the +body +of the +flesh +in +the +circumcision +- +of Christ +having been buried with +Him +in +- +baptism +in +which +also +you were raised with [Him] +through +the +faith +of the +working +- +of God +the [One] +having raised +Him +out from +the dead +And +you +dead +being +the +trespasses +and +in the +uncircumcision +of the +flesh +of you +He made alive together +you +with +Him +having forgiven +us +all +the +transgressions +having blotted out +the +against +us +handwriting +in the +decrees +which +was +adverse +to us +and +it +He has taken +out of +the +way +having nailed +it +to the +cross +Having disarmed +the +rulers +and +the +authorities +He made a show [of them] +in +public +having triumphed +over them +in +it +therefore +Not +anyone +you +let judge +in regard to +food +or +in regard to +drink +or +in +regard +to a feast +or +a New Moon +or +Sabbaths +which +are +a shadow +the things +coming +however +the +body [is] +- +of Christ +No one +you +let disqualify +delighting +in +humility +and +[the] worship +of the +angels +which +he has seen +detailing +vainly +being puffed up +by +the +mind +of the +flesh +of him +and +not +holding fast +to the +head +from +whom +all +the +body +by +the +joints +and +ligaments +being supplied +and +being knit together +increases +with the +increase +- +of God +If +you have died +with +Christ +away from +the +principles +of the +world +why +as if +living +in +[the] world +do you submit to decrees +Not +you should handle +Not +you should taste +Not +you should touch +which +are +all +unto +decay +with the +use +according to +the +commandments +and +teachings +- +of men +which +are +indeed +having +an appearance +of wisdom +in +self-imposed worship +and +humility +and +harsh treatment +of [the] body +not +of +honor +a certain +against +[the] indulgence +of the +flesh +then +If +you have been raised with +- +Christ +the things +above +seek +where +- +Christ +is +sitting +at [the] +right hand +- +of God +The things +above +set [your] minds on +not +the things +on +the +earth +for +You have died +and +the +life +of you +has been hidden +with +- +Christ +in +- +God +When +may be revealed +- +Christ +the +life +of you +then +also +you +with +Him +will appear +in +glory +therefore +Put to death +the +members +which [are] +upon +the +earth +sexual immorality +impurity +passion +desire +evil +and +- +covetousness +which +is +idolatry +because of +which things +is coming +the +wrath +- +of God +in +which +also +you +walked +once +when +you were living +in +them +however +Now +put off +also +you +- +all [these] things +anger +rage +malice +slander +foul language +out of +the +mouth +of you +Not +do lie +to +one another +having put off +the +old +man +with +the +practices +of him +and +having put on +the +new +the [one] +being renewed +in +knowledge +according to +[the] image +of the [one] +having created +him +where +not +there is +Greek +and +Jew +circumcision +and +uncircumcision +Barbarian +Scythian +slave +free +but +all +and +in +all +Christ [is] +therefore +Put on +as +[the] elect +- +of God +holy +and +beloved +hearts +of compassion +kindness +humility +gentleness +[and] patience +bearing with +each other +and +forgiving +each other +If +anyone +against +another +should have +a complaint +even as +also +the +Lord +has forgiven +you +so +also +you +now +Beyond +all +these +[put on] the +love +which +is +[the] bond +- +of perfect unity +And +the +peace +- +from Christ +let rule +in +the +hearts +of you +to +which +also +you were called +in +one +body +And +thankful +be +The +word +- +of Christ +let dwell +in +you +richly +in +all +wisdom +teaching +and +admonishing +each other +in psalms +hymns +[and] songs +spiritual +with +- +grace +singing +in +the +hearts +of you +to +God +And +everything +what +if +which +you might do +in +word +or +in +deed +all +in +[the] name +of [the] Lord +Jesus +giving thanks +- +to God +[the] Father +through +Him +- +Wives +submit yourselves +to the +husbands +as +is fitting +in +[the] Lord +- +Husbands +love +the +wives +and +not +be harsh +toward +them +- +Children +obey +the +parents +in +all things +for +this +pleasing +is +in +[the] Lord +- +Fathers +not +do provoke +the +children +of you +that +not +they might become discouraged +- +Slaves +obey +in +all things +the +according to +flesh +masters +not +with +eye-services +as +men-pleasers +but +in +sincerity +of heart +fearing +the +Lord +if +Whatever +you might do +from +[the] soul +work +as +to the +Lord +and +not +to men +knowing +that +from +[the] Lord +you will receive +the +reward +of the +inheritance +The +Lord +Christ +you serve +for +The [one] +doing wrong +will be repaid [for] +what +he has done wrong +and +not +there is +partiality +- +Masters +that which +[is] righteous +and +that which +[is] equal +to the +slaves +give +knowing +that +also +you +have +a Master +in +heaven +- +In prayer +continue steadfastly +watching +in +it +with +thanksgiving +praying +at the same time +also +for +us +that +- +God +may open +to us +a door +for the +word +to declare +the +mystery +- +of Christ +on account of +which +also +I have been bound +so that +I should make clear +it +as +it behooves +me +to speak +In +wisdom +walk +toward +those +outside +the +time +redeeming +- +[Let the] speech +of you +[be] always +in +grace +with salt +having been seasoned +to know +how +it behooves +you +one +each +to answer +The things +concerning +me +all +will make known +to you +Tychicus +the +beloved +brother +and +faithful +servant +and +fellow bond-servant +in +[the] Lord +whom +I sent +to +you +for +this very +purpose +that +you might know +the things +concerning +us +and +he may encourage +the +hearts +of you +with +Onesimus +the +faithful +and +beloved +brother +who +is +[one] of +you +to you +they will make known +All things +- +here +Greets +you +Aristarchus +the +fellow prisoner +of me +and +Mark +the +cousin +of Barnabas +concerning +whom +you have received +instructions +if +he comes +to +you +welcome +him +and also +Jesus +- +called +Justus +- +being +among +[the] circumcision +these +only +fellow workers +for +the +kingdom +- +of God +who +have been +to me +a comfort +Greets +you +Epaphras +who [is] +[one] of +you +a servant +of Christ +Jesus +always +struggling +for +you +in +the +prayers +so that +you may stand +mature +and +fully assured +in +all +[the] will +- +of God +for +I bear witness +to him +that +he has +great +concern +for +you +and +those +in +Laodicea +and +them +in +Hiera +Greets +you +Luke +the +physician +- +beloved +and also +Demas +Greet +the +in +Laodicea +brothers +and also +Nympha +and +the +in +house +of her +church +And +when +shall be read +among +you +the +letter +cause +that +also +in +the +of [the] Laodiceans +church +it may be read +and +that +the [one] +from +Laodicea +also +you +may read +And +say +to Archippus +Take heed to +the +ministry +that +you have received +in +[the] Lord +that +it +you may fulfill +The +greeting +[is] in the +own +hand +Paul +Remember +my +- +chains +- +Grace [be] +with +you +Paul +and +Silvanus +and +Timothy +To the +church +of the Thessalonians +in +God +[the] Father +and +[the] Lord +Jesus +Christ +to you +Grace +and +peace +We give thanks +to +God +always +concerning +all +of you +mention +making +in +the +prayers +of us +unceasingly +remembering +your +- +work +- +of faith +and +- +labor +- +of love +and +the +endurance +of the +hope +of the +Lord +of us +Jesus +Christ +before +the +God +and +Father +of us +knowing +the +election +of you +brothers +beloved +by +- +God +because +the +gospel +of us +came +to +you +not +in +word +only +but +also +in +power +and +in +[the] Spirit +Holy +and +full assurance +much +just as +you know +what +we were +among +you +on account of +you +And +you +became +imitators +of us +and +of the +Lord +having received +the +word +in +tribulation +much +with +[the] joy +of [the] Spirit +Holy +so as for +to became +you +an example +to all +the +believing [ones] +in +- +Macedonia +and +in +- +Achaia +for +From +you +has sounded forth +the +word +of the +Lord +not +only +in +- +Macedonia +and +Achaia +but +in +every +place +the +faith +of you +- +toward +- +God +has gone abroad +so as for +no +need +to have +us +to say +anything +for +They themselves +concerning +us +report +what +reception +we had +from +you +and +how +you turned +to +- +God +from +- +idols +to serve +[the] God +living +and +true +and +to await +from +the +heavens +the +Son +of Him +whom +He raised +out from +the +dead +Jesus +the [one] +delivering +us +from +the +wrath +- +coming +for +brothers +You yourselves +know +the +coming +of us +- +to +you +that +not +in vain +has been +but +having previously suffered +and +having been mistreated +in +Philippi +just as +you know +we had boldness +in +the +God +of us +to speak +to +you +the +gospel +- +of God +amid +much +conflict +For +- +the exhortation +of us +[is] not +of +error +nor +of +impurity +nor +in +trickery +but +just as +we have been approved +by +- +God +to be entrusted with +the +gospel +so +we speak +as +pleasing +not +men +but +God +the [One] +examining +the +hearts +of us +for +Never +at any time +with +word +of flattery +were we +just as +you know +nor +with +a pretext +for greed +God [is] +witness +nor +seeking +from +men +glory +nor +from +you +nor +from +others +[though] having authority +with +weight +to be +as +Christ’s +apostles +But +we were +gentle +in +[the] midst +of you +as +if +a nursing mother +would cherish +- +her own +children +So +yearning over +you +we were pleased +to have imparted +to you +not +only +the +gospel +- +of God +but +also +our +own +lives +because +beloved +to us +you have become +for +brothers +You remember +the +labor +of us +and +- +hardship +Night +and +day +working +in order +- +not +to burden +anyone +of you +we proclaimed +to +you +the +gospel +- +of God +witnesses +You [are] +and +- +God +how +holily +and +righteously +and +blamelessly +toward you +those +believing +we were +just as +you know +how +one +each +of you +as +a father +children +his own +exhorting +and +comforting +and +charging +you +unto +- +to walk +you +worthily +- +of God +who +calls +you +into +the +of Himself +kingdom +and +glory +And +because of +this +also +we +give thanks +- +to God +unceasingly +that +having received +[the] word +[by your] hearing +from +us +- +of God +you accepted +not +[the] word +of men +but +even as +truly +it is +[the] word +of God +which +also +works +in +you +who +believe +for +brothers +You +became +imitators +of the +churches +- +of God +- +being +in +- +Judea +in +Christ +Jesus +For +the same +as them +suffered +also +you +from +the +own +countrymen +as +also [did] +they +from +the +Jews +who +having killed +both +the +Lord +Jesus +and +their own +prophets +and +us +having driven out +and +God +not +pleasing +and +all +men +[who are] set against +hindering +us +to the +Gentiles +to speak +that +they might be saved +so as +- +to fill up +their +- +sins +always +now +Has come +upon +them +the +wrath +to the +utmost +however +brothers +We +having been bereaved +of +you +for +[the] time +of an hour +in face +not +in heart +more abundantly +were eager +the +face +of you +to see +with +great +desire +Therefore +we wanted +to come +to +you +indeed +I +Paul +both +once +and +twice +and +hindered +us +- +Satan +for +Who [is] +our +hope +or +joy +or +crown +of boasting +Or +[are] not +even +you +before +the +Lord +of us +Jesus +at +- +His +coming +for +You +are +the +glory +of us +and +- +joy +Therefore +no longer +enduring +we thought it best +to be left behind +in +Athens +alone +and +we sent +Timothy +the +brother +of us +and +fellow worker +- +of God +in +the +gospel +- +of Christ +in order +- +to strengthen +and +to encourage +you +concerning +the +faith +of you +that +no one +be moved +in +the +tribulations +these +for +Yourselves +you know +that +for +this +we are destined +indeed +And +when +with +you +we were +we were telling beforehand +you +that +we are about +to suffer affliction +just as +also +it came to pass +and +you know +Because of +this +I also +no longer +enduring +sent +in order +- +to know +the +faith +of you +lest +somehow +had tempted +you +the [one] +tempting +and +in +vain +would be +the +labor +of us +however +Presently +having come +Timothy +to +us +from +you +and +having brought good news +to us +of the +faith +and +the +love +of you +and +that +you have +a remembrance +of us +good +always +longing +us +to see +just as +also +we +you +brothers +because of +this +we were encouraged +as to +you +in +all +the +distress +and +tribulation +of us +through +- +your +faith +For +now +we live +if +you +are standing firm +in +[the] Lord +for +are we able +What +thanksgiving +- +to God +to give +concerning +you +in return for +all +the +joy +that +we rejoice +because of +you +before +the +God +of us +night +and +day +exceedingly +imploring +for [us] +- +to see +your +- +face +and +to supply +the things +lacking +in the +faith +of you +now +Himself +the +God +and +Father +of us +and +the +Lord +of us +Jesus +may direct +the +way +of us +to +you +now +You +the +Lord +may make to increase +and +to abound +- +in love +toward +one another +and +toward +all +just as +also +we +toward +you +in order +- +to strengthen +your +- +hearts +blameless +in +holiness +before +the +God +and +Father +of us +at +the +coming +of the +Lord +of us +Jesus +with +all +the +saints +of Him +then +brothers +Finally +we implore +and +exhort +you +in +[the] Lord +Jesus +that +just as +you have received +from +us +- +in what manner +it behooves +you +to walk +and +to please +God +just as +even +you walk [now] +so +you should abound +more +for +You know +what +instructions +we gave +you +through +the +Lord +Jesus +for +This +is +[the] will +- +of God +the +sanctification +of you +To abstain +you [are] +from +- +sexual immorality +to know +each +of you [how] +the +of himself +vessel +to control +in +holiness +and +honor +not +in +[the] passion +of lust +as +also +the +Gentiles +- +not +knowing +- +God +- +not +to go beyond +and +to overreach +in +the +matter +the +brother +of him +because +avenging [is] +[the] Lord +concerning +all +these things +just as +also +we told before +you +and +thoroughly warned +for +Not +has called +us +- +God +to +impurity +but +into +holiness +So then +the [one] +rejecting [this] +disregards +not +man +but +- +God +the [One] +also +giving +the +Spirit +of Him +- +Holy +to +you +now +Concerning +- +brotherly love +no +need +you have [for me] +to write +to you +for +yourselves +you +taught by God +are +in order +- +to love +one another +for +And +you are doing +this +toward +all +the +brothers +in +all +- +Macedonia +however +brothers +We exhort +you +to abound +more and more +and +to strive earnestly +to live quietly +and +to attend to +the +own +and +to work with +the +hands +of you +just as +you +we commanded +so that +you may walk +properly +toward +those +outside +and +of no one +need +may have +but +brothers +Not +we do want +you +to be ignorant +concerning +those +having fallen asleep +so that +not +you should be grieved +just as +also +the +rest +those +not +having +hope +for +If +we believe +that +Jesus +died +and +rose again +so +also +- +God +those +having fallen asleep +through +- +Jesus +will bring +with +Him +for +This +to you +we declare +in +[the] word +of [the] Lord +that +we +the +living +- +remaining +unto +the +coming +of the +Lord +no +not +shall precede +those +having fallen asleep +because +Himself +the +Lord +with +a loud command +with +the voice +of an archangel +and +with +[the] trumpet +of God +will descend +from +heaven +and +the +dead +in +Christ +will rise +first +Then +we +the +living +- +remaining +together +with +them +will be caught away +in +[the] clouds +for +[the] meeting +of the +Lord +in +[the] air +and +so +always +with +[the] Lord +we will be +Therefore +encourage +one another +with +the +words +these +now +brothers +Concerning +the +times +and +the +seasons +no +need +you have +to you +to be written +for +Yourselves +fully +you know +that +as +a thief +by +night +[the] day +of [the] Lord +in this manner +comes +For when +they might say +Peace +and +security +then +suddenly +destruction +upon them +comes +as +the +labor pains +to her +in +womb +having +and +no +not +shall they escape +however +brothers +You +not +are +in +darkness +that +the +day +you +should overtake +like +a thief +for +All +you +are +sons +of light +and +sons +of day +Not +we are +of night +nor +of darkness +So +then +not +we should sleep +as +the +others +but +we should watch +and +we should be sober +for +Those +sleeping +by night +sleep +and +those +becoming drunk +by night +get drunk +however +We +of [the] day +being +should be sober +having put on +[the] breastplate +of faith +and +love +and +[the] helmet +[the] hope +of salvation +because +not +has destined +us +- +God +for +wrath +but +for +obtaining +salvation +through +the +Lord +of us +Jesus +Christ +the [One] +having died +for +us +so that +whether +we might watch +or +we might sleep +together +with +Him +we may live +Therefore +encourage +one another +and +build up +one +- +another +just as +also +you are doing +however +brothers +We implore +you +to appreciate +those +toiling +among +you +and +taking the lead +over you +in +[the] Lord +and +admonishing +you +and +to esteem +them +exceedingly +in +love +because of +the +work +of them +Be at peace +among +yourselves +now +brothers +We exhort +you +to admonish +the +unruly +encourage +the +fainthearted +help +the +weak +be patient +toward +all +See that +no +one +evil +for +evil +to anyone +has repaid +but +always +the +good +pursue +toward +one another +and +toward +all +Always +rejoice +Unceasingly +pray +In +everything +give thanks +for +this +[is the] will +of God +in +Christ +Jesus +toward +you +The +Spirit +not +do quench +Prophecies +not +do despise +however +All things +test +To the +good +hold fast +From +every +form +of evil +abstain +now +Himself +the +God +- +of peace +may sanctify +you +completely +and +entirely +your +- +spirit +and +- +soul +and +- +body +blameless +at +the +coming +of the +Lord +of us +Jesus +Christ +may be preserved +[Is] faithful +the [One] +calling +you +who +also +will do [it] +Brothers +pray +for +us +Greet +the +brothers +all +with +a kiss +holy +I adjure +you +[by] the +Lord +to be read +[this] +letter +to all +the +brothers +The +grace +of the +Lord +of us +Jesus +Christ +[be] with +you +Paul +and +Silvanus +and +Timothy +To the +church +of [the] Thessalonians +in +God +[the] Father +of us +and +the Lord +Jesus +Christ +to you +Grace +and +peace +from +God +[the] Father +and +the Lord +Jesus +Christ +brothers +we ought +To thank +- +God +always +concerning +you +just as +fitting +it is +because +is increasing exceedingly +the +faith +of you +and +is abounding +the +love +of one +each +of all +you +to +one another +so as for +ourselves +us +in +you +to boast +in +the +churches +- +of God +about +the +perseverance +of you +and +faith +in +all +the +persecutions +of you +and +in the +tribulations +that +you are bearing +[This is] a plain token +of the +righteous +judgment +- +of God +unto +- +to be accounted worthy +you +of the +kingdom +- +of God +for +which +also +you suffer +For indeed +righteous [it is] +with +God +to repay +those +oppressing +you +with affliction +and +to you +- +being oppressed +repose +with +us +at +the +revelation +of the +Lord +Jesus +from +heaven +with +[the] angels +mighty +of Him +in +a fire +of flame +inflicting +vengeance +on those +not +knowing +God +and +on those +not +obeying +the +gospel +of the +Lord +of us +Jesus +who +will suffer +[the] penalty +of destruction +eternal +away from +[the] presence +of the +Lord +and +from +the +glory +of the +power +of Him +when +He shall come +to be glorified +in +the +saints +of Him +and +to be marveled at +among +all +those +having believed +in +the +day +that +because +was believed +the +testimony +of us +to +you +for +which +also +we pray +always +for +you +that +you +He may count worthy +of the +calling +of the +God +of us +and +He may fulfill +every +good pleasure +of goodness +and +work +of faith +with +power +so that +may be glorified +the +name +of the +Lord +of us +Jesus +in +you +and +you +in +Him +according to +the +grace +of the +God +of us +and +[the] Lord +Jesus +Christ +now +brothers +We implore +you +by +the +coming +of the +Lord +of us +Jesus +Christ +and +our +gathering together +unto +Him +for +- +not +quickly +to be shaken +you +in +- +mind +nor +to be troubled +neither +by +spirit +nor +by +word +nor +by +letter +as if +by +us +as +that +is present +the +day +of the +Lord +No +one +you +should deceive +in +not one +way +because [it is] +if +not [until] +shall have come +the +apostasy +first +and +shall have been revealed +the +man +- +of lawlessness +the +son +- +of destruction +the [one] +opposing +and +exalting himself +above +every +so-called +god +or +object of worship +so as for +him +in +the +temple +- +of God +to sit down +setting forth +he himself +that +is +God +Not +do you remember +that +yet +being +with +you +these things +I was saying +to you +And +now +that which +is restraining +you know +for +- +to be revealed +him +in +- +his +time +for +The +mystery +- +of lawlessness +already +is working +only [there is] +the [one] +restraining [it] +at present +until +out of +[the] midst +he might be [gone] +And +then +will be revealed +the +lawless [one] +whom +the +Lord +Jesus +will slay +with the +breath +of the +mouth +of Him +and +will annul +by the +appearing +of the +coming +of Him +whose +- +coming +is +according to +[the] working +- +of Satan +in +every +power +and +in signs +and +in wonders +of falsehood +and +in +every +deceit +of wickedness +unto those +perishing +in return for +which +the +love +of the +truth +not +they received +in order for +- +to be saved +them +And +because of +this +will send +to them +- +God +a working +of delusion +for +- +to believe +them +what +[is] false +in order that +should be judged +all +those +not +having believed +the +truth +but +having delighted +- +in unrighteousness +however +We +ought +to give thanks +- +to God +always +concerning +you +brothers +beloved +by +[the] Lord +that +has chosen +you +- +God +from +[the] beginning +unto +salvation +in +[the] sanctification +of [the] Spirit +and +[by] faith +of [the] truth +to +this +also +He called +you +through +the +gospel +of us +to +[the] obtaining +of [the] glory +of the +Lord +of us +Jesus +Christ +So +then +brothers +stand firm +and +hold fast +to the +traditions +that +you were taught +whether +by +word +or +by +letter +from us +now +Himself +the +Lord +of us +Jesus +Christ +and +- +God +the +Father +of us +the [One] +having loved +us +and +having given [us] +comfort +eternal +and +hope +good +by +grace +may He encourage +your +- +hearts +and +may He strengthen [them] +in +every +work +and +word +good +brothers +- +Finally +pray +for +us +that +the +word +of the +Lord +may spread quickly +and +may be glorified +just as +also +with +you +and +that +we may be delivered +from +- +perverse +and +evil +men +for +not +all [are] +of the +faith +however +Faithful +is +the +Lord +who +will strengthen +you +and +will keep [you] +from +- +evil +now +We are persuaded +in +[the] Lord +as to +you +that +the things that +we command +both +you are doing +and +you will do +And +- +the Lord +may direct +your +- +hearts +into +the +love +- +of God +and +into +the +steadfastness +- +of Christ +now +brothers +We command +you +in +[the] name +of the +Lord +Jesus +Christ +are to withdraw +you +from +every +brother +idly +walking +and +not +according to +the +tradition +that +you received +from +us +for +Yourselves +you know +how +it behooves [you] +to imitate +us +because +not +we were idle +among +you +nor +without payment +bread +did we eat +from +anyone +but +in +labor +and +hardship +night +and +day +working +in order +- +not +to be burdensome to +any +of you +not +that +not +we have +[the] right +but +that +ourselves +[as] an example +we may offer +to you +for +- +you to imitate +us +for +Even +when +we were +with +you +this +we were commanding +you +that +if +anyone +not +is willing +to work +neither +let him eat +for +We hear +some +are walking +among +you +idly +not at all +working +but +being busybodies +now +To +such +we warn +and +exhort +by +our Lord +Jesus +Christ +so that +with +quietness +working +- +their own +bread +they may eat +now +brothers +You +not +shall grow weary +[in] well-doing +then +If +anyone +not +obey +this +instruction +of us +through +the +letter +of this [man] +take note +not +to mix with +him +so that +he may be ashamed +And yet +not +as +an enemy +esteem [him] +but +admonish [him] +as +a brother +now +Himself +the +Lord +- +of peace +may give +you +- +peace +through +all +in +every +way +The +Lord [be] +with +all +of you +The +greeting +- +in my own +hand +Paul +which +is +[my] sign +in +every +letter +In this manner +I write +The +grace +of the +Lord +of us +Jesus +Christ +[be] with +all +of you +Paul +an apostle +of Christ +Jesus +according to +[the] command +of God +[the] Savior +of us +and +of Christ +Jesus +the +hope +of us +To Timothy +[my] true +child +in +[the] faith +Grace +mercy +[and] peace +from +God +[the] Father +and +Christ +Jesus +the +Lord +of us +Just as +I urged +you +to remain +in +Ephesus +[when] I was going +to +Macedonia +so that +you might warn +certain men +not +to teach other doctrines +nor +to give heed +to myths +and +genealogies +endless +which +speculations +bring +rather +than +stewardship +of God +which [is] +in +faith +And +- +the goal +of [our] +instruction +is +love +out of +a pure +heart +and +a conscience +good +and +a faith +sincere +from which +having missed the mark +some +have turned aside +to +meaningless discourse +desiring +to be +teachers of the Law +not +understanding +neither +what +they are saying +nor +[that] about +which +they confidently assert +now +We know +that +good [is] +the +law +if +one +it +lawfully +uses +knowing +this +that +not +for a righteous [one] +law +is enacted +however +for [the] lawless +and +insubordinate +for [the] ungodly +and +sinful +for [the] unholy +and +profane +for murderers of fathers +and +murderers of mothers +for slayers of man +for the sexually immoral +homosexuals +enslavers +liars +perjurers +and +if +anything +other +is opposed to +in the +being sound +teaching +according to +the +gospel +of the +glory +of the +blessed +God +with which +have been entrusted +I +Thankfulness +I have +for the [One] +having strengthened +me +Christ +Jesus +the +Lord +of us +that +faithful +me +He esteemed +having appointed [me] +to +service +- +formerly +being +a blasphemer +and +a persecutor +and +insolent +but +I was shown mercy +because +being ignorant +I did [it] +in +unbelief +then +Surpassingly increased +the +grace +of the +Lord +of us +with +[the] faith +and +love +that [are] +in +Christ +Jesus +the +saying +Trustworthy [is] +and +of full +acceptance +worthy +that +Christ +Jesus +came +into +the +world +sinners +to save +of whom +[the] foremost +am +I +But +because of +this +I was shown mercy +that +in +me +[the] foremost +might display +Jesus +Christ +- +perfect +patience +as +a pattern +for those +being about +to believe +on +Him +to +life +eternal +now +To +[the] King +of the +ages +[the] immortal +invisible +only +God +[be] honor +and +glory +to +the +ages +of the +ages +Amen +[my] child +Timothy +This +- +charge +I commit +to you +according to +the +going before +as to +you +prophecies +that +you might war +by +them +the +good +warfare +holding +faith +and +a good +conscience +which +having cast away +some +concerning +the +faith +have caused a shipwreck +among whom +are +Hymenaeus +and +Alexander +whom +I have handed over +- +to Satan +that +they may be disciplined +not +to blaspheme +therefore +I exhort +first +of all +to be made +entreaties +prayers +intercessions +[and] thanksgivings +on behalf of +all +men +for +kings +and +all +those +in +authority +being +so that +a tranquil +and +quiet +life +we may lead +in +all +godliness +and +dignity +This +[is] good +and +acceptable +before +the +Savior +of us +God +who +desires +all +men +to be saved +and +to +[the] knowledge +of [the] truth +to come +for +One +God [there is] +one +then +mediator +between God +and +men +[the] man +Christ +Jesus +the [One] +having given +Himself +[as] a ransom +for +all +the +testimony +in proper times +their own +in regard to +which +was appointed +I +a herald +and +an apostle +a teacher +of [the] Gentiles +in +faith +and +truth +[the] truth +I am speaking +not +I do lie +therefore +I desire +to pray +the +men +in +every +place +lifting up +holy +hands +apart from +anger +and +dissension +Likewise +women +in +apparel +respectable +with +modesty +and +self-control +should adorn +themselves +not +with +braided hair +or +gold +or +pearls +or +clothing +costly +but +through +with what +is becoming +to women +professing +[the] fear of God +works +good +A woman +in +quietness +let learn +in +all +submissiveness +however +I do permit +not +To teach +a woman +nor +to use authority over +a man +but +to be +in +quietness +for +Adam +first +was formed +then +Eve +And +Adam +not +was deceived +but +- +the woman +having been deceived +into +transgression +has come +however +She will be saved +through +- +childbearing +if +they abide +in +faith +and +love +and +holiness +with +self-restraint +Trustworthy [is] +the +saying +If +anyone +overseership +aspires to +of good +a work +he is desirous +therefore +It behooves +the +overseer +to be +above reproach +of one +wife +[the] husband +sober +self-controlled +respectable +hospitable +able to teach +not +given to wine +not +a striker +but +gentle +peaceable +not loving money +the +own +house +well +managing +children +having +in +submission +with +all +dignity +but +if +one +the +own +household +to manage +not +knows +how +[the] church +of God +[how] will he care for +not +a novice +that +not +having been puffed up +into +[the] judgment +of the +devil +he might fall +now +It behooves [him] +also +a testimony +good +to have +from +those +outside +so that +not +he might fall +into +reproach +and +[the] snare +of the +devil +likewise +Deacons +[must be] dignified +not +double-tongued +not +to wine +much +being given +not +greedy of dishonest gain +holding +to the +mystery +of the +faith +with +clear +a conscience +now +Also +these +let them be tested +first +then +let them serve +blameless +being +likewise +Women +[must be] dignified +not +slanderers +clear-minded +faithful +in +all things +Deacons +let be +of one +wife +husbands +well +managing +[their] children +and +the +own +households +for +Those +well +having served +a standing +good +for themselves +acquire +and +great +confidence +in +[the] faith +that [is] +in +Christ +Jesus +These things +to you +I am writing +hoping +to come +to +you +a short time +however +if +I should delay +so that +you may know +how +it behooves [one] +to conduct oneself +in +[the] household +of God +which +is +[the] church +of God +[the] living +[the] pillar +and +base +of the +truth +And +confessedly +great +is +the +- +of godliness +mystery +Who +was revealed +in +[the] flesh +was justified +in +[the] Spirit +was seen +by angels +was proclaimed +among +[the] nations +was believed on +in +[the] world +was taken up +in +glory +But +- +the Spirit +expressly +states +that +in +later +times +will depart from +some +the +faith +giving heed +to spirits +deceitful +and +teachings +of demons +in +hypocrisy +of speakers of lies +having been seared +in the +own +conscience +forbidding +to marry +[commanding] to abstain +from foods +that +- +God +created +for +reception +with +thanksgiving +by the +faithful +and +[those] knowing +the +truth +For +every +creature +of God +[is] good +and +nothing [is] +to be rejected +with +thanksgiving +being received +for +it is sanctified +by +[the] word +of God +and +prayer +These things +laying before +the +brothers +you will be +good +a servant +of Christ +Jesus +being nourished +in the +words +of the +faith +and +of the +good +teaching +that +you have closely followed +But +- +profane +and +silly +fables +refuse +rather +Train +yourself +to +godliness +For +- +bodily +exercise +of +a little +is +profit +but +- +godliness +for +everything +profitable +is +holding +[the] promise +of life +of the +present +and +of the [one] +coming +the +saying +Trustworthy [is] +and +of full +acceptance +worthy +for +For +this +we toil +and +strive +because +we have hope +on +God +[the] living +who +is +[the] Savior +of all +men +especially +of believers +these things +Command +and +teach +No one +your +- +youth +let despise +but +be +a pattern +for the +believers +in +speech +in +conduct +in +love +in +faith +in +purity +Until +I come +give heed +to the +public reading of Scripture +to +exhortation +to +teaching +Not +be negligent +of the +in +you +gift +which +was given +to you +through +prophecy +with +[the] laying on +of the +hands +of the +elderhood +These things +ponder +in +them +be absorbed +so that +your +- +progress +evident +may be +to all +Give heed +to yourself +and +to the +teaching +Continue +in them +for +this +doing +you will save +both +yourself +and +those +hearing +you +An elder +not +do rebuke +but +exhort [him] +as +a father +younger [men] +as +brothers +elder [women] +as +mothers +[and] younger [women] +as +sisters +in +all +purity +honor +Widows +who [are] +truly +widows +however +If +any +widow +children +or +grandchildren +has +let them learn +first +to the +own +household +to be devout +and +recompense +to give +to +parents +for +this +is +pleasing +before +- +God +now +She who [is] +indeed +a widow +and +being left alone +has hope +in +God +and +continues +- +in supplications +and +- +prayers +night +and +day +however +She +living in self-indulgence +[while] living +is dead +Also +these things +command +so that +above reproach +they should be +now +If +anyone +the +own +and +especially [his] +household +not +does provide for +the +faith +he has denied +and +he is +than an unbeliever +worse +A widow +let be enrolled +not +less than +years [old] +sixty +being +of one +man +[the] wife +in +works +good +being borne witness to +if +she has brought up children +if +she entertained strangers +if +saints’ +feet +she has washed +if [to those] +being oppressed +she has imparted relief +if +every +work +good +she has followed after +however +Younger +widows +refuse +for +when +they might grow wanton against +- +Christ +to marry +they desire +incurring +judgment +because +the +first +faith +they have cast off +then +At the same time +also +[to be] idle +they learn +going about +- +house to house +then +not +only +idle +but +also +gossips +and +busybodies +speaking +things +not +being proper +therefore +I want +[the] younger [ones] +to marry +to bear children +to manage their households +no +occasion +to give +the [one] +opposing +of reproach +on account +for +Already +some +have turned aside +after +- +Satan +If +any +believing [woman] +has +[dependent] widows +let her impart relief +to them +and +not +let be burdened +the +church +so that +to those [who are] +truly +widows +it may impart relief +The +well +ruling +elders +of double +honor +let be counted worthy +especially +those +straining +in +[the] word +and +[the] teaching +for +Says +the +Scripture +An ox +treading out grain +not +you shall muzzle +and +Worthy [is] +the +workman +of the +wages +of him +Against +an elder +an accusation +not +do receive +except +if +not +upon +two +or +three +witnesses +Those +sinning +before +all +rebuke +so that +also +the +rest +fear +might have +I earnestly testify +before +- +God +and +Christ +Jesus +and +the +elect +angels +that +these things +you should keep +apart from +prejudice +nothing +doing +out of +partiality +Hands +hastily +on no one +lay +nor +share +in [the] sins +of others +yourself +pure +keep +No longer +drink [only] water +but +wine +a little +use +because of +the +stomach +and +the +frequent +of you +ailments +Of some +men +the +sins +manifest +are +going before [them] +to +judgment +however +of some +also +they appear later +Likewise +also +the +works +- +good +[are] evident +and even +those +otherwise +being +to be concealed +not +able +As many as +are +under +a yoke +[as] slaves +the +own +masters +of all +honor +worthy +let them esteem +so that +not +the +name +- +of God +and +the +teaching +should be blasphemed +now +Those +having +believing +masters +not +let them despise [them] +because +brothers +they are +but +rather +let them serve [them] +because +they are +believing [ones] +and +beloved +- +by the +good service +being helped +These things +teach +and +exhort +If +anyone +teaches another doctrine +and +not +draws near +[the] being sound +words +- +of the +Lord +of us +Jesus +Christ +and +the +according to +godliness +teaching +he is puffed up +nothing +knowing +but +unhealthy +about +controversies +and +disputes about words +out of +which +come +envy +strife +slander +suspicions +evil +[and] constant frictions +among men +corrupted +- +in mind +and +destitute +of the +truth +holding +a means of gain +to be +- +godliness +however +Is +gain +great +- +godliness +with +contentment +for +Nothing +we brought +into +the +world +because +neither +to carry out +anything +are we able +however +Having +sustenance +and +coverings +with these +we will be content +however +Those +desiring +to be rich +fall +into +temptation +and +a snare +and +desires +many +foolish +and +harmful +which +plunge +- +men +into +ruin +and +destruction +for +A root +of all kinds +- +of evils +is +the +love of money +which +stretching after +some +have been seduced +away from +the +faith +and +themselves +have pierced +with sorrows +many +however +O +man +of God +You +these things +flee +now +pursue +righteousness +godliness +faith +love +endurance +[and] gentleness +Fight +the +good +fight +of the +faith +Lay hold +of the +eternal +life +to +which +you were called +and also +did confess +the +good +confession +before +many +witnesses +I charge +before +- +God +the [One] +giving life +to +all things +and +Christ +Jesus +the [One] +having testified +before +Pontius +Pilate +the +good +confession +to keep +you +the +commandment +without stain +above reproach +until +the +appearing +of the +Lord +of us +Jesus +Christ +which +seasons +in the own +He will display +the +blessed +and +alone +Sovereign +the +King +of those +being kings +and +[the] Lord +of those +being lords +- +alone +having +immortality +in light +unapproachable +dwelling +whom +has seen +no one +of men +nor +to see +is able +to whom [be] +honor +and +dominion +eternal +Amen +To the +rich +in +the +present +age +instruct [them] +not +to be high-minded +nor +to have hope +in +of riches +[the] uncertainty +but +on +God +the [One] +providing +us +all things +richly +for +enjoyment +to do good +to be rich +in +works +good +generous in distributing +to be +ready to share +treasuring up +for themselves +a foundation +good +for +the +future +so that +they may take hold +of +that which is indeed +life +O +Timothy +the +deposit committed [to you] +guard +avoiding +- +profane +empty babblings +and +opposing arguments +- +falsely called +knowledge +which +professing +some +from +the +faith +have gone astray +- +Grace [be] +with +you all +Paul +an apostle +of Christ +Jesus +by +[the] will +of God +according to +[the] promise +of life +- +in +Christ +Jesus +To Timothy +[my] beloved +child +Grace +mercy +[and] peace +from +God +[the] Father +and +Christ +Jesus +the +Lord +of us +Thankful +I am +- +to God +whom +I serve +from +[my] forefathers +with +a pure +conscience +as +unceasingly +I have +the +of +you +remembrance +in +the +prayers +of me +night +and +day +longing +you +to see +recalling +your +- +tears +so that +with joy +I may be filled +having taken +remembrance +of the +within +you +sincere +faith +which +dwelt +first +in +the +grandmother +of you +Lois +and +in the +mother +of you +Eunice +now +I am persuaded +that +also +[it is] in +you +For +this +reason +I remind +you +to kindle anew +the +gift +- +of God +which +is +in +you +by +the +laying on +of the +hands +of me +for +Not +has given +us +- +God +a spirit +of cowardice +but +of power +and +of love +and +of self-control +therefore +Not +you should be ashamed of +the +testimony +of the +Lord +of us +nor +of me +the +prisoner +of Him +but +suffer together +for the +gospel +according to +[the] power +of God +the [One] +having saved +us +and +having called [us] +with a calling +holy +not +according to +the +works +of us +but +according to +His own +purpose +and +grace +- +having been given +us +in +Christ +Jesus +before +time +eternal +also +having been made manifest +now +by +the +appearing +of the +Savior +of us +Christ +Jesus +indeed +having abolished +- +death +now +having brought to light +life +and +immortality +through +the +gospel +to +which +was appointed +I +a herald +and +an apostle +and +a teacher +For +this +reason +also +these things +I suffer +But +not +I am ashamed +for +I know +whom +I have believed +and +I am persuaded +that +He is +able +the +deposit entrusted +of me +to guard +for +that +- +day +retain +[The] pattern +of sound +words +which +from +me +you did hear +in +[the] faith +and +love +that [are] +in +Christ +Jesus +The +good +deposit entrusted [to you] +keep +by +[the] Spirit +Holy +the [One] +dwelling +in +us +You know +this +that +turned away from +me +all +those +in +- +Asia +among whom +are +Phygelus +and +Hermogenes +May grant +mercy +the +Lord +to the +of Onesiphorus +household +because +often +me +he refreshed +and +not +the +chain +of me +he was ashamed of +But +having arrived +in +Rome +earnestly +he sought out +me +and +found [me] +May grant +unto him +the +Lord +to find +mercy +from +[the] Lord +in +that +- +day +And +how much +in +Ephesus +he served +very well +you +know +therefore +child +of me +You +be strong +in +the +grace +that [is] +in +Christ +Jesus +And +the things which +you have heard +from +me +among +many +witnesses +these +entrust +to faithful +men +such as +sufficient +will be +also +others +to teach +Share in suffering +as +[a] good +soldier +of Christ +Jesus +No one +serving as a soldier +entangles himself +in the +of this +life +affairs +that +the [one] +having enlisted him +he might please +now +If +also +competes +anyone +not +he is crowned +if +not +lawfully +he shall have competed +it is necessary +For the +hardworking +farmer +first +of the +fruits +to partake +Consider +the things +I am saying +for +will give +you +the +Lord +understanding +in +all things +Remember +Jesus +Christ +having been raised +out from +[the] dead +of [the] +seed +of David +according to +- +gospel +my +in +which +I suffer hardship +even to +chains +as +an evildoer +But +the +word +- +of God +not +is bound +Because of +this +all things +I endure +for the sake of +the +elect +so that +also +they +may obtain +[the] salvation +that [is] +in +Christ +Jesus +with +glory +eternal +Trustworthy [is] +the +saying +for +If +we have died together [with Him] +also +we will live together [with Him] +if +we endure +also +we will reign together [with Him] +if +we will deny [Him] +He also +will deny +us +if +we are faithless +He +faithful +remains +for +to deny +Himself +not +He is able +These things +remind [them] +solemnly charging [them] +before +- +God +not +to quarrel about words +for +nothing +profitable +[but] to +[the] subversion +of those +hearing +Hasten +to present +yourself +approved +- +to God +a workman +not ashamed +accurately handling +the +word +- +of truth +But +- +worldly +empty babblings +avoid +for +on +to more +ungodliness +they will lead +and +the +talk +of them +like +gangrene +pasture to grow +will have +among whom +are +Hymenaeus +and +Philetus +who +concerning +the +truth +have gone astray +asserting +resurrection +already +to have taken place +and +they are overthrowing +the +of some +faith +Nevertheless +- +the firm +foundation +of +God +stands +having +the +seal +this +Knows +[the] Lord +those +being +His +and +Let depart +from +iniquity +everyone +- +naming +the +name +of the Lord +now +In +a great +house +there are +not +only +vessels +golden +and +silver +but +also +wooden +and +earthen +and +indeed +some +unto +honor +however +some +unto +dishonor +therefore +If +anyone +shall have cleansed +himself +from +these +he will be +a vessel +for +honor +having been sanctified +useful +to the +Master +for +every +work +good +having been prepared +And +- +youthful +lusts +flee +now +pursue +righteousness +faith +love +[and] peace +along with +those +calling on +the +Lord +out of +pure +a heart +And +- +foolish +and +ignorant +speculations +refuse +knowing +that +they breed +quarrels +now +it behooves +[The] bond-servant +of [the] Lord +not +to quarrel +but +to be +gentle +toward +all +able to teach +forbearing +in +gentleness +disciplining +those +opposing +lest +ever +may give +them +- +God +repentance +unto +a knowledge +of [the] truth +and +they might come to their senses +out of +the +of the +devil +snare +having been captured +by +him +for +- +his +will +however +This +realize +that +in +[the] last +days +will be present +times +difficult +for +Will be +- +men +lovers of self +lovers of money +boastful +proud +abusive +to parents +disobedient +ungrateful +unholy +unloving +implacable +slanderous +without self-control +savage +without love of good +treacherous +reckless +puffed up +lovers of pleasure +rather +than +lovers of God +having +a form +of godliness +but +- +the power +of it +denying +And +these +turn away from +for +Out of +this sort +are +those +entering +into +- +households +and +taking captive +weak women +burdened +with sins +being led away +by passions +various +always +learning +and +never +to +a knowledge +of [the] truth +to come +being able +now +By which +way +Jannes +and +Jambres +opposed +Moses +so +also +these +oppose +the +truth +men +being depraved +- +in mind +disqualified +regarding +the +faith +But +not +they will advance +further +much +for +- +the folly +of them +plain +will be +to all +as +also +that +of those [two] +became +however +You +have closely followed +my +- +teaching +- +conduct +- +purpose +- +faith +- +patience +- +love +- +endurance +- +persecutions +- +sufferings +such as +to me +happened +in +Antioch +in +Iconium +in +Lystra +what manner of +persecutions +I endured +And yet +out of +all +me +delivered +the +Lord +now +Also +all +- +desiring +to live +piously +in +Christ +Jesus +will be persecuted +however +Evil +men +and +impostors +will advance +to +- +worse +deceiving +and +being deceived +however +You +abide +in +the things +you have learned +and +have been assured of +having known +from +whom +you learned [them] +and +that +from +childhood +you have known +sacred +writings +- +being able +you +to make wise +unto +salvation +through +faith +- +in +Christ +Jesus +Every +Scripture [is] +God-breathed +and +profitable +for +instruction +for +conviction +for +correction +[and] for +training +- +in +righteousness +so that +complete +may be +the +- +of God +man +toward +every +work +good +having been fully equipped +I earnestly declare +before +- +God +and +Christ +Jesus +the [One] +being about +to judge +[the] living +and +[the] dead +and +by the +appearing +of Him +and +the +kingdom +of Him +Preach +the +word +be ready +in season +[and] out of season +convict +rebuke +[and] exhort +with +complete +patience +and +instruction +for +There will be +a time +when +not +- +sound +teaching +they will endure +but +according to +the +own +desires +to themselves +they will gather around [them] +teachers +having an itching +- +ear +and +indeed +from +the +truth +- +hearing +they will turn away +then +unto +- +myths +they will be turned aside +however +You +be sober +in +all things +endure afflictions +do +[the] work +of an evangelist +the +ministry +of you +fully carry out +for +I +already +am being poured out +and +the +time +of the +departure +of me +is come +The +good +fight +I have fought +the +race +I have finished +the +faith +I have kept +From now on +is laid up +for me +the +- +of righteousness +crown +which +will award +to me +the +Lord +the +righteous +judge +in +that +- +day +however +not +only +to me +but +also +to all +those +loving +the +appearing +of Him +Be diligent +to come +to +me +quickly +for +Demas +me +has deserted +having loved +the +present +age +and +he has gone +to +Thessalonica +Crescens +to +Galatia +[and] Titus +to +Dalmatia +Luke +is +alone +with +me +Mark +having taken +bring [him] +with +you +for +he is +to me +useful +for +[the] ministry +however +Tychicus +I have sent +to +Ephesus +The +cloak +that +I left +in +Troas +with +Carpus +[upon] coming +bring +and +the +books +especially +the +parchments +Alexander +the +coppersmith +great +harm +to me +did +Will render +to him +the +Lord +according to +the +deeds +of him +whom +also +you +beware of +for +exceedingly +he has opposed +- +our +message +In +- +first +of me +defense +no one +me +has stood with +but +all +me +deserted +Not +to them +may it be charged +And +- +the Lord +me +stood by +and +strengthened +me +so that +through +me +the +proclamation +would be fully accomplished +and +should hear +all +the +Gentiles +And +I was delivered +out of +[the] mouth +of the lion +Will deliver +me +the +Lord +from +every +deed +evil +and +will bring [me] safely +into +the +kingdom +of Him +- +heavenly +to whom [is] +the +glory +unto +the +ages +of the +ages +Amen +Greet +Prisca +and +Aquila +and +the +of Onesiphorus +house +Erastus +remained +in +Corinth +however +Trophimus +I left +in +Miletus +ailing +Be earnest +before +winter +to come +Greets +you +Eubulus +and +Pudens +and +Linus +and +Claudia +and +the +brothers +all +The +Lord +[be] with +the +spirit +of you +- +Grace [be] +with +you all +Paul +a servant +of God +now +an apostle +of Jesus +Christ +according to +[the] faith +of [the] elect +of God +and +knowledge +of [the] truth +which [is] +according to +godliness +in +[the] hope +of life +eternal +which +promised +- +who cannot lie +God +before +time +eternal +now +He revealed +[in] seasons +[His] own +in the +word +of Him +in +[the] proclamation +with which +have been entrusted +I +according to +[the] commandment +of the +Savior +of us +God +To Titus +[my] true +child +according to +[our] common +faith +Grace +and +peace +from +God +[the] Father +and +Christ +Jesus +the +Savior +of us +Of this +on account +I left +you +in +Crete +so that +the things +lacking +you might set in order +and +might appoint +in every +town +elders +as +I +you +directed +if +anyone +is +blameless +of one +wife +[the] husband +having +children +believing +not +under +accusation +of debauchery +or +insubordinate +for +It behooves +the +overseer +to be +as +God’s +steward +blameless +not +self-willed +not +quick tempered +not +given to wine +not +a striker +not +greedy of base gain +but +hospitable +a lover of good +self-controlled +upright +holy +[and] disciplined +holding to +the +according to +the +teaching +faithful +word +that +he may be +able +both +to encourage +with +- +teaching +- +sound +and +those +contradicting [it] +to convict +for +There are +many +insubordinate +empty talkers +and +deceivers +especially +those +of +the +circumcision +whom +to silence +it is necessary +who +whole +households +overthrow +teaching +things that [they] +not +ought +base +gain +for [the] sake of +Said +one +of +them +own +of them +a prophet +Cretans +[are] always +liars +evil +beasts +gluttons +lazy +The +testimony +this +is +true +for +which +cause +rebuke +them +severely +so that +they may be sound +in +the +faith +not +giving heed +to Jewish +myths +and +[the] commandments +of men +turning away from +the +truth +All things [are] +pure +to the +pure +however +to those +being defiled +and +unbelieving +nothing +[is] pure +Instead +are defiled +their +both +- +mind +and +- +conscience +God +to know +they profess +however +in +works +they deny [Him] +being +detestable +and +disobedient +and +for +any +work +good +unfit +however +You +speak +the things that +are consistent with +- +sound +doctrine +[The] aged [men] +are to be +sober-minded +dignified +self-controlled +sound +- +in faith +- +in love +- +in endurance +[the] aged [women] +likewise +in +behavior +reverent +not +slanderers +not +to wine +much +being enslaved +teachers of what is good +so that +they may train +the +young [women] +to be +lovers of [their] husbands +loving [their] children +self-controlled +pure +keepers at home +kind +being subject +to the +own +husbands +so that +not +the +word +- +of God +should be maligned +The +younger [men] +likewise +exhort +to be self-controlled +In +all things +yourself +be holding forth +[as] a pattern +of good +works +in +the +teaching +integrity +dignity +speech +sound +beyond reproach +so that +he who is +of the +contrary +may be ashamed +having +to say +concerning +us +nothing +evil +Servants +to their own +masters +are to be subject +in +everything +well-pleasing +to be +not +gainsaying +not +pilfering +but +all +fidelity +good +showing +so that +the +doctrine +of +the +Savior +of us +God +they may adorn +in +all things +for +Has appeared +the +grace +- +of God +bringing salvation +to all +men +instructing +us +that +having denied +- +ungodliness +and +- +worldly +passions +discreetly +and +righteously +and +piously +we should live +in +the +present +age +awaiting +the +blessed +hope +and +[the] appearing +of the +glory +of the +great +God +and +Savior +of us +Christ +Jesus +who +gave +Himself +for +us +that +He might redeem +us +from +all +lawlessness +and +might purify +to Himself +a people +specially chosen +zealous +of good +works +These things +speak +and +exhort +and +rebuke +with +all +authority +No one +you +let despise +Remind +them +to rulers +to authorities +to be subject +to be obedient +for +every +work +good +ready +to be +no one +to speak evil of +peaceable +to be +gentle +all +humility +showing +toward +all +men +for +Were +once +also +we ourselves +foolish +disobedient +being deceived +serving +lusts +and +pleasures +various +in +malice +and +envy +living +hateful +hating +one another +however +When +the +kindness +and +the +love of mankind +of the +Savior +of us +God +appeared +not +by +works +- +in +righteousness +that +did +we +but +according to +- +His +mercy +He saved +us +through +[the] washing +of regeneration +and +renewing +of [the] Spirit +Holy +whom +He poured out +on +us +richly +through +Jesus +Christ +the +Savior +of us +so that +having been justified +- +by that +grace +heirs +we should become +according to +[the] hope +of life +eternal +Trustworthy [is] +the +saying +and +concerning +these things +I want +you +to affirm strongly +so that +may take care +good +works +to be devoted to +those +believing +God +These things +are +excellent +and +profitable +- +to men +however +Foolish +controversies +and +genealogies +and +arguments +and +quarrels +about [the] Law +avoid +for +they are +unprofitable +and +worthless +A factious +man +after +one +and +a second +admonition +reject +knowing +that +- +such a man +is corrupt +and +is sinning +being +self-condemned +When +I shall send +to +you +Artemas +or +Tychicus +be diligent +to come +to +me +into +Nicopolis +for +there +to winter +I have decided +Zenas +the +lawyer +and +Apollos +earnestly +equip +so that +nothing +to them +should be lacking +now +Let learn +also +- +our [people] +good +works +to devote themselves to +for +- +necessary +needs +so that +not +they should be +unfruitful +Greet +you +those +with +me +all +Greet +those +loving +us +in +[the] faith +- +Grace [be] +with +all +of you +Paul +a prisoner +of Christ +Jesus +and +Timothy +[our] +brother +To Philemon +the +beloved +and +fellow worker +of us +and +to Apphia +our +sister +and +to Archippus +the +fellow soldier +of us +and +to the +at +[the] house +of you +church +to you +Grace +and +peace +from +God +Father +of us +and +[the] Lord +Jesus +Christ +I thank +the +God +of me +always +mention +of you +making +upon +the +prayers +of me +hearing +of your +- +love +and +the +faith +that +you have +toward +the +Lord +Jesus +and +toward +all +the +saints +so that +the +fellowship +of the +faith +of you +effective +might become +in +[the] acknowledgment +of every +good [thing] +that [is] +in +us +in +Christ +for +Joy +great +and +encouragement +I have +by occasion of +the +love +of you +because +the +hearts +of the +saints +have been refreshed +by +you +brother +Therefore +much +in +Christ +boldness +having +to order +you +what [is] +befitting +for the sake of +- +love +rather +I exhort [you] +such a one +being +as +Paul +aged +then +now +also +a prisoner +of Christ +Jesus +I exhort +you +for +- +my +child +I have begotten +in +- +chains +whom +Onesimus +- +once +to you +useless +however +now +both +to you +and +to me +useful +I have sent back +to you +whom +in person +he who +is +- +my +very heart +I +was wishing +whom +with +myself +to keep +so that +on behalf of +you +me +he might serve +in +the +chains +of the +gospel +however +Apart from +- +your +consent +nothing +to do +I wished +so that +not +as +according to +necessity +the +good +of you +may be +but +according to +willingness +for +Perhaps +because of +this +he was separated [from you] +for +a time +so that +eternally +him +you might possess +no longer +as +a slave +but +above +a slave +a brother +beloved +especially +to me +however +how much +more +to you +both +in +[the] flesh +and +in +[the] Lord +therefore +If +me +you consider +a partner +receive +him +as +me +however +If +in any way +you +he has wronged +or +he owes [you] +this +to me +charge +I +Paul +did write +with +my own +hand +I +will repay [it] +that +not +I may say +to you +that +even +yourself +to me +you owe also +Yes +brother +I +from you +may have profit +in +[the] Lord +Refresh +my +- +heart +in +Christ +Being persuaded of +the +obedience +of you +I write +to you +knowing +that +even +above +what +I say +you will do +now +At the same time +also +prepare +for me +a lodging +for +I hope +that +through +the +prayers +of you +I will be granted +to you +Greets +you +Epaphras +- +fellow prisoner +my +in +Christ +Jesus +[as do] Mark +Aristarchus +Demas +[and] Luke +the +fellow workers +of me +The +grace +of the +Lord +Jesus +Christ +[be] with +the +spirit +of you +In many portions +and +in many ways +long ago +having spoken +to the +fathers +in +the +prophets +- +God +in +last +- +days +these +has spoken +to us +in +[His] Son +whom +He appointed +heir +of all things +through +whom +also +He made +the +ages +who +being +[the] radiance +of [His] +glory +and +[the] exact expression +of the +substance +of Him +then +upholding +- +all things +by the +word +of the +power +of Himself +[the] purification +- +of sins +having made +sat down +at +[the] right hand +of the +Majesty +on +high +By so much +superior +having become +to the +angels +as much as +more excellent +a name +beyond +theirs +He has inherited +for +To which +of the +angels +did He say +ever +Son +of me +are +You +I +today +have begotten +You +And +again +I +will be +to Him +for +a Father +and +He +will be +to Me +for +a Son +then +When +again +He brings +the +Firstborn +into +the +world +He says +And +let worship +Him +all +[the] angels +of God +And +indeed +as to +the +angels +He says +The [One] +making +the +angels +of Him +winds +and +the +ministers +of Him +of fire +a flame +however +Unto +the +Son +O +God +The +throne +of You +[is] to +the +age +of the +age +and +the +scepter +of +righteousness [is] +[the] scepter +of the +kingdom +of You +You have loved +righteousness +and +have hated +wickedness +because of +this +has anointed +You +- +God +the +God +of You +with [the] oil +of exultation +above +the +companions +of You +And +Lord +You +in +[the] beginning +of the +earth +laid the foundation +and +works +of the +hands +of You +are +the +heavens +They +will perish +however +You +remain +and +all +will grow old +like +a garment +and +like +a robe +You will roll up +them +like +a garment +also +they will be changed +however +You +the +same +are +and +the +years +of You +not +will never end +now +To +which +of the +angels +did He say +ever +Sit +at +[the] right hand +of Me +until +- +I may place +the +enemies +of You +[as] a footstool +for the +feet +of You +Not +all +are they +ministering +spirits +for +service +being sent forth +for the sake of +those +being about +to inherit +salvation +Because of +this +it behooves +more abundantly +to give heed +us +to the things +we have heard +lest +ever +we should drift away +for +If +the +by +angels +having been spoken +word +was +unalterable +and +every +transgression +and +disobedience +received +a just +recompense +how +we +will escape +having neglected +such a great +a salvation +which +a commencement +having received +declared +by +the +Lord +by +those +having heard +to +us +it was confirmed +bearing witness +- +God +together with [them] +by signs +and +wonders +and +by various +miracles +and +of [the] Spirit +Holy +distributions +according to +the +of Him +will +for +Not +to angels +did He subject +the +world +that +is coming +of +which +we are speaking +however +Has testified +somewhere +someone +saying +What +is +man +that +You are mindful +of him +or +[the] son +of man +that +You care for +him +You made lower +him +a little +some +than +[the] angels +with glory +and +honor +You crowned +him +all things +You have put in subjection +under +the +feet +of him +for +In +- +subjecting +to him +- +all things +nothing +He left +to him +unsubject +however +At present +not yet +do we see +to Him +- +all things +having been subjected +however +we see +Who +a little +one +than +[the] angels +having been made lower +Jesus +because of +the +suffering +- +of death +with glory +and +with honor +having been crowned +so that +by [the] grace +of God +for +everyone +He might taste +death +for +It was fitting +to Him +for +whom [are] +- +all things +and +by +whom [are] +- +all things +many +sons +to +glory +having brought +the +archetype +of the +salvation +of them +through +sufferings +to make perfect +for +both +The [One] +sanctifying +and +those +being sanctified +of +one +[are] all +for +which +reason +not +He is ashamed +brothers +them +to call +saying +I will declare +the +name +of You +to the +brothers +of Me +in +[the] midst +of [the] congregation +I will sing praises +of you +And +again +I +will be +trusting +in +Him +And +again +Behold +I +and +the +children +whom +to Me +has given +- +God +therefore +Since +the +children +have partaken +of blood +and +of flesh +also +He +likewise +took part in +the +same things +so that +through +[His] +death +He might destroy +the [one] +the +power +- +of death +holding +that +is +the +devil +and +might set free +those +who +fear +of death +through +all +[their time] +to live +subject +to slavery +were +for +Not +surely +[the] angels +He helps +but +[the] seed +of Abraham +He helps +Therefore +it behooved [Him] +in +all things +[His] +brothers +to be made like +so that +He might become +a merciful +and +faithful +high priest +[in] things +relating to +- +God +in order +- +to make propitiation for +the +sins +of the +people +for +In +that +has suffered +He Himself +having been tempted +He is able +those +being tempted +to help +Therefore +brothers +holy +of [the] calling +heavenly +partakers +carefully consider +the +apostle +and +high priest +of the +confession +of us +Jesus +faithful +being +to the [One] +having appointed +Him +as +also +Moses +in +all +the +house +of Him +for +Of greater +glory +He +than +Moses +has been counted worthy +by +so much as +greater +honor +has +than the +house [itself] +the [one] +having built +it +for +Every +house +is built +by +someone +however +the [One] +everything +having built [is] +God +And +indeed +Moses +[was] faithful +in +all +the +house +of Him +as +a servant +unto +a testimony +of the things +going to be spoken +however +Christ +as +[the] Son +over +the +house +of Him +whose +house +are +we +if indeed +[our] +confidence +and +the +boast +of [our] +hope +unto +[the] end +firm +we should hold +Therefore +just as +says +the +Spirit +- +Holy +if +Today +the +voice +of Him +you should hear +not +harden +the +hearts +of you +as +in +the +rebellion +in +the +day +- +of testing +in +the +wilderness +where +tried [Me] +the +fathers +of you +by +testing +and +saw +the +works +of Me +forty +years +Therefore +I was angry +with the +generation +that +and +I said +Always +they go astray +- +in the heart +and +of them +not +have they known +the +ways +of Me +so +I swore +in +the +wrath +of Me +[not] +shall they enter +into +the +rest +of Me +Take heed +brothers +lest +ever +there will be +in +any +of you +a heart +evil +of unbelief +into +- +falling away +from +God +[the] living +But +encourage +other +each +every +day +while +- +- +today +it is called +so that +not +may be hardened +one +of +you +by [the] deceitfulness +- +of sin +for +Partakers +- +of Christ +we have become +if indeed +from the +beginning +the +assurance +unto +[the] end +firm +we should hold +As +- +it is said +if +Today +the +voice +of Him +you should hear +not +harden +the +hearts +of you +as +in +the +rebellion +for +Who +[were those] having heard +rebelled +but +not +all +those +having come +out of +Egypt +by the leading of +Moses +now +With whom +was He indignant +forty +years +[if] not +with those +having sinned +whose +- +bodies +fell +in +the +wilderness +then +To whom +did He swear that +not +shall they enter +into +the +rest +of Him +if +not +to those +having disobeyed +And +we see +that +not +they were able +to enter in +because of +unbelief +therefore +We should fear +lest +ever +left remaining +of the promise +to enter +into +the +rest +of Him +should seem +any +of +you +to have fallen short +for +And +we are [those] +having had the gospel preached +just as +they [did] +but +not +did profit +the +message +of [their] +hearing +them +not +having been united with +the +faith +of those +having heard +for +We enter +into +the +rest +those +having believed +as +He has said +So +I swore +in +the +wrath +of me +Not +shall they enter +into +the +rest +of Me +And yet +the +works +from +[the] foundation +of [the] world +have been finished +for +He has spoken +somewhere +concerning +the +seventh [day] +in this way +And +rested +- +God +on +the +day +- +seventh +from +all +the +works +of Him +And +in +this [passage] +again +[Not] +shall they enter +into +the +rest +of Me +therefore +Since +it remains [for] +some +to enter +into +it +and +those +formerly +having received the good news +not +did enter in +because of +disobedience +again +He appoints +a certain +day +Today +through +David +saying +after +so long +a time +just as +it has been said +if +Today +the +voice +of Him +you shall hear +not +harden +the +hearts +of you +for +If +to them +Joshua +had given rest +- +not +about +another +day +He would have spoken +after +this +So then +there remains +a Sabbath rest +for the +people +- +of God +for +The [one] +having entered +into +the +rest +of Him +also +he +rested +from +the +works +of him +as +from +the +own +- +God [did] +therefore +We should be diligent +to enter +into +that +- +rest +so that +not +by +the +same +example +- +of disobedience +anyone +should fall +for +the +word +- +of God +Living [is] +and +active +and +sharper +than +any +sword +two-edged +even +penetrating +as far as +[the] division +of soul +and +spirit +and +of joints +also +marrows +and +able to judge +[the] thoughts +and +intentions +of [the] heart +And +not +there is +creature +hidden +before +Him +however +all things +[are] uncovered +and +laid bare +to the +eyes +of Him +to +whom +[is] our +- +reckoning +therefore +Having +a high priest +great +having passed through +the +heavens +Jesus +the +Son +- +of God +we should hold firmly +to [our] +confession +for +have we +a high priest +Not +not +being able +to sympathize +with the +weaknesses +of us +however +[one] having been tempted +in +all things +by +the same way +without +sin +therefore +We should come +with +boldness +to the +throne +- +of grace +so that +we may receive +mercy +and +grace +may find +for +in time of need +help +for +Every +high priest +from among +men +being taken +on behalf of +men +is appointed +in things +relating to +- +God +that +he should offer +both +gifts +and +sacrifices +for +sins +being able +to exercise forbearance +with those +being ignorant +and +going astray +since +also +he himself +is encompassed by +weakness +and +because of +this +he is obligated +just as +for +the +people +so +also +for +himself +to offer sacrifices +for +sins +And +not +upon himself +anyone +takes +the +honor +but rather +being called +by +- +God +just as +also +Aaron +So +also +- +Christ +not +Himself +did glorify +to become +a high priest +but +the [One] +having said +to +Him +Son +of Me +are +You +I +today +have begotten +You +Just as +also +in +another [place] +He says +You [are] +a priest +to +the +age +according to +the +order +of Melchizedek +[He] +in +the +days +of the +flesh +of Him +both +prayers +and +supplications +to +the [One] +being able +to save +Him +from +death +with +crying +loud +and +tears +having offered up +and +having been heard +because of +- +reverence +though +being +a Son +He learned +from +the things +He suffered +- +obedience +and +having been perfected +He became +to all +those +obeying +Him +[the] author +of salvation +eternal +having been designated +by +- +God +a high priest +according to +the +order +of Melchizedek +Concerning +this +[there is] much +from us +- +speech +and +difficult in interpretation +to speak +since +sluggish +you have become +in the +hearings +for +Even +you ought +to be +teachers +by +the +time +again +you have +need of +[one] +to teach +you +what [is] +the +principles +of the +beginning +of the +oracles +- +of God +and +you have become +[those] having +need +of milk +not +of solid +food +for +Everyone +- +partaking [only] +of milk +[is] inexperienced +in [the] word +of righteousness +for +an infant +he is +however +is +- +solid +food +[for the] mature +the [ones] +by +- +constant use +the +senses +training +having +for +distinguishing +both +good +and +evil +Therefore +having left +the +- +beginning +of the +Christ +teaching +to +- +maturity +we should go on +not +again +laying +a foundation +of repentance +from +dead +works +and +faith +in +God +instruction +about baptisms +then +of laying on +of hands +of [the] resurrection +of [the] dead +and +of judgment +eternal +And +this +we will do +if +permits +- +God +for +[It is] impossible +to those +once +having been enlightened +then +having tasted +of the +gift +- +heavenly +and +partakers +of [the] Spirit +Holy +having become +and +having tasted +[the] goodness +of God’s +word +also +[the] power +[of the] coming +age +and then +having fallen away +again +to restore [them] +to +repentance +crucifying +in themselves +the +Son +- +of God +and +subjecting [Him] to open shame +for +Land +- +having drunk in +the +upon +it +coming +often +rain +and +producing +vegetation +useful +for those +for the sake of +whom +also +it is tilled +partakes +of blessing +from +- +God +however +[That] bringing forth +thorns +and +thistles +[is] worthless +and +a curse +near to +of which +the +end [is] +unto +burning +however +beloved +We are persuaded +concerning +you +of +better [things] +and +[things] accompanying +salvation +if +even +like this +we speak +for +Not +unjust [is] +- +God +to forget +the +work +of you +and +the +love +that +you have shown +toward +the +name +of Him +having ministered +and +[still] ministering +to the +saints +now +We desire +each +of you +the +same +earnestness +to show +toward +the +full assurance +of the +hope +unto +[the] end +so that +not +sluggish +you may be +however +imitators +of those +through +faith +and +patience +inheriting +the +promises +For +- +to Abraham +having made His promise +- +God +since +by +no one +greater +to swear +He had +He swore +by +Himself +saying +If +surely +blessing +I will bless +you +and +multiplying +I will multiply +you +And +thus +having waited patiently +he obtained +the +promise +for +Men +by +[one] +greater +swear +and +their +of all +disputes +an end +for +confirmation +[is] the +oath +in +which +more abundantly +desiring +to show +to the +heirs +of the +promise +the +unchangeableness +of the +purpose +of Him +- +God +guaranteed [it] +by an oath +so that +by +two +things +unchangeable +in +which +[it is] impossible +to lie +[for] God +strong +encouragement +we may have +- +having fled for refuge +to take hold +of the +being set before [us] +hope +which +we have +as +an anchor +of the +soul +both +sure +and +unshakable +and +entering +into +that +within +the +veil +where +[the] forerunner +Jesus +for +us +has entered +according to +the +order +of Melchizedek +a high priest +having become +to +the +age +for +This +- +Melchizedek +King +of Salem +priest +- +of God +- +Most High +- +having met +Abraham +returning +from +the +slaughter +of the +kings +and +having blessed +him +[is he] to whom +also +a tenth +of +all +apportioned +Abraham +indeed +first +being translated +king +of righteousness +and +then +also +king +of Salem +which +is +king +of peace +Without father +without mother +without genealogy +neither +beginning +of days +nor +of life +end +having +however +having been made like +the +Son +- +of God +he remains +a priest +unto +- +all time +now +Consider +how great +this one [was] +to whom +a tenth +Abraham +the +patriarch +gave +out of +the +best spoils +And +indeed +those +out from +the +sons +of Levi +the +priestly office +receiving +a commandment +have +to take a tenth +according to +the +law +from the +people +that +is +from the +brothers +of them +though +having come +out of +the +loin +of Abraham +however +The [one] +not +tracing his ancestry +from +them +has collected a tenth +from Abraham +and +the [one] +having +the +promises +has blessed +now +Apart from +all +dispute +the +inferior +by +the +superior +is blessed +And +indeed +here +tithes +dying +men +receive +however +in that place +it is testified +that +he lives on +And +so +a word +to speak +through +Abraham +also +Levi +the [one] +tithes +receiving +paid the tithe +for +Still +in +the +loin +of [his] +father +he was +when +met +him +Melchizedek +indeed +then +If +perfection +by +the +Levitical +priesthood +were +for +the +people +upon +it +had received [the] Law +what +still +need [was there] +according to +the +order +of Melchizedek +to arise +[for] another +priest +and +not +according to +the +order +of Aaron +to be named +for +Being changed +of the +priesthood +from +necessity +also +of law +a change +takes place +for +[He] concerning +whom +are said +these things +a tribe +another +belonged to +from +which +no one +has served +at the +altar +for +[It is] evident +that +out of +Judah +has sprung +the +Lord +of us +as to +which +a tribe +concerning +priests +nothing +Moses +spoke +And +more abundantly +yet +evident +it is +if +according to +the +likeness +of Melchizedek +arises +a priest +another +who +has been constituted +not +according to +a law +of a commandment +fleshly +but +according to +[the] power +of a life +indestructible +for +It is testified +- +You [are] +a priest +to +the +age +according to +the +order +of Melchizedek +for +indeed +A putting away +of the preceding +commandment +there is +because of +- +its +weakness +and +uselessness +for +nothing +perfected +the +law +then +[the] introduction +of a better +hope +by +which +we draw near +- +to God +And +to +as much as +not +apart from +an oath +for +truly +those ones +without +an oath +are +becoming +priests +however +[He] +with +an oath +through +the [One] +saying +to +Him +Has sworn +[the] Lord +and +not +will change His mind +You [are] +a priest +to +the +age +By +so much +also +of a better +covenant +[the] guarantee +has become +Jesus +And +indeed +those +many +are +having become +priests +because of +- +by death +being prevented from +continuing +But +- +because of +the +abiding +of Him +to +the +age +a permanent +He holds +- +priesthood +wherefore +also +He is able +to save +to +the +uttermost +those +drawing near +through +Him +- +to God +always +living +for +- +to intercede +for +them +indeed +for us +also +was fitting +Such +a high priest +holy +innocent +undefiled +having been separated +from +- +sinners +and +higher +than the +heavens +having become +who +not +has +every +day +need +as +the +high priests +first +for +the +own +sins +sacrifices +to offer up +then +for those +of the +people +for +this +He did +once for all +Himself +having offered up +for +The +law +men +appoints +as high priests +having +weakness +however +the +word +of the +oath +which [is] +after +the +law +a Son +to +the +age +having been perfected +now +[The] sum +of +the things +being spoken of [is that] +we have +such +a high priest +who +sat down +at +[the] right hand +of the +throne +of the +Majesty +in +the +heavens +a minister +in the +holy places +and +in the +tabernacle +- +true +which +has pitched +the +Lord +not +man +for +Every +high priest +in order +- +to offer +both +gifts +and +sacrifices +is appointed +wherefore [it was] +necessary +to have +also +[for] this One +something +that +He might offer +then +certainly +If +He were +on +earth +- +not even +would He be +a priest +there being +those +offering +according to +law +the +gifts +who +a copy +and +shadow +of the +heavenly +serve +as +was divinely instructed +Moses +being about +to complete +the +tabernacle +for +He says +See that +you shall make +all things +according to +the +pattern +- +having been shown +you +in +the +mountain +however +Now +more excellent +a ministry +He has obtained +as much as +also +He is +[the] mediator +of a better +covenant +which +upon +better +promises +has been enacted +for +If +the +first +that +had been +faultless +- +not +for a second +a place +would have been sought +for +Finding fault +with them +He says +Behold +[the] days +are coming +says +[the] Lord +and +I will ratify +with +the +house +of Israel +and +with +the +house +of Judah +a covenant +new +not +according to +the +covenant +that +I made +with +fathers +of them +in +[the] day +of having taken hold of +by Me +the +hand +of them +to lead +them +out of +[the] land +of Egypt +because +they +not +did continue +in +the +covenant +of Me +and I +disregarded +them +says +[the] Lord +For +this [is] +the +covenant +that +I will make +with the +house +of Israel +after +the +days +those +says +[the] Lord +putting +Laws +of Me +into +the +mind +of them +and +upon +hearts +of them +I will inscribe +them +and +I will be +to them +for +God +and +they +will be +to Me +for +a people +And +no +not +shall they teach +each +the +neighbor +of him +and +each +the +brother +of him +saying +Know +the +Lord +because +all +will know +Me +from +[the] least +to [the] +greatest +of them +because +merciful +I will be +toward the +iniquities +of them +and +the +sins +of them +no +not +I shall remember +more +In +- +saying +new +He has made obsolete +the +first +then +that +growing old +and +aging +[is] near +vanishing +indeed +therefore +Had +also +the +first +regulations +of worship +and +- +a sanctuary +earthly +for +was prepared +A tabernacle +the +first [room] +in +which [were] +both +- +the lampstand +and +the +table +and +of the +presentation +the +bread +which +is called +[the] Holy [Place] +now +Behind +the +second +veil +[was] a tabernacle +- +being called +the Holy +of Holies +having +[the] golden +altar of incense +and +the +ark +of the +covenant +having been covered around +in every part +with gold +in +which +[was the] jar +golden +having +the +manna +and +the +staff +of Aaron +- +having budded +and +the +tablets +of the +covenant +then +Above +it +[were the] cherubim +of glory +overshadowing +the +mercy seat +concerning +which +not +it is +now [the time] +to speak +in +detail +now +These things +thus +having been prepared +indeed +into +the +first +tabernacle +at all times +everything +enter +the +priests +the +sacred services +accomplishing +however +[Enters] into +the +second +once +in the +year +only +the +high priest +not +without +blood +which +he offers +for +himself +and +the +of the +people +sins of ignorance +By this +was signifying +the +Spirit +- +Holy +[that] not yet +has been made manifest +the +into the +holy places +way +still +the +first +tabernacle +having +a standing +which [is] +a symbol +for +the +time +- +present +in +which +both +gifts +and +sacrifices +are offered +not +being able +in regard to +conscience +to make perfect +the [one] +worshiping +[consisting] only +in +foods +and +drinks +and +various +washings +ordinances +of [the] flesh +until +[the] time +of reformation +being imposed +however +having appeared as +Christ +high priest +of the +having come +good things +by +the +greater +and +more perfect +tabernacle +not +made by hands +that +is +not +of this +- +creation +nor +by +blood +of goats +and +calves +however +through +the +own +blood +He entered +once for all +into +the +holy places +eternal +redemption +having obtained +for +If +the +blood +of goats +and +of bulls +and +[the] ashes +of a heifer +sprinkling +the +having been defiled +sanctify [them] +for +the +of the +flesh +purification +how much +more +the +blood +- +of Christ +who +through +[the] Spirit +eternal +Himself +offered +unblemished +- +to God +will purify +the +conscience +of us +from +dead +works +in order +- +to serve +God +[the] living +And +because of +this +of a covenant +new +[the] mediator +He is +so that +death +having taken place +for +redemption +of the +under +the +first +covenant +transgressions +might receive +those +having been called +the +promise +of the +eternal +inheritance +for +Where +[there is] a will +[it is] necessary +to establish +[the] death +of the [one] +having made [it] +for +A will +after +death +[is] affirmed +since +not +at the time +it is in force +when +is living +the [one] +having made [it] +wherefore +neither +the +first +apart from +blood +has been inaugurated +for +Having been spoken +of every +commandment +according to +the +law +by +Moses +to all +the +people +having taken +the +blood +- +of calves +and +- +of goats +with +water +and +wool +scarlet +and +hyssop +both +itself +the +book +and +all +the +people +he sprinkled +saying +This [is] +the +blood +of the +covenant +which +commanded +unto +you +- +God +then +And +the +tabernacle +and +all +the +vessels +of the +ministry +with +blood +likewise +he sprinkled +And +almost +with +blood +all things +are purified +according to +the +law +and +apart from +blood-shedding +not +there is +forgiveness +then [for] +[It was] necessary +indeed +the +representations +of the things +in +the +heavens +with these +to be purified +however +themselves +the +heavenly things +sacrifices +with better +than +these +for +has entered +Christ +Not +into +made by hands +holy places +copies +of the +true [ones] +but +into +itself +- +heaven +now +to appear +in the +presence +- +of God +for +us +nor +that +repeatedly +He should offer +Himself +just as +the +high priest +enters +into +the +holy places +every +year +with +[the] blood +of another +Otherwise +it was necessary for +Him +repeatedly +to have suffered +from +[the] foundation +of [the] world +however +Now +once +in +[the] consummation +of the +ages +for +[the] putting away +of +sin +by +the +sacrifice +of Himself +He has been revealed +And +in +as much as +it is apportioned +- +to men +once +to die +then +after +this +[to face] judgment +so +also +- +Christ +once +having been offered +in order +- +of many +[the] sins +to bear +for +a second time +apart from +sin +will appear +to those +Him +awaiting +for +salvation +for +the +law +having +A shadow +of the +coming +good things +not +themselves +the +form +of the +things +each +year +with the +same +sacrifices +which +they offer +to +the +continuous +never +is able +those +drawing near +to perfect +Otherwise +not +- +would they have ceased +being offered +because of +- +none +having +any longer +conscience +of sins +those +serving +once +having been cleansed +But +in +these +[there is] a reminder +of sins +every +year +indeed +Impossible [it is] +[for the] blood +of bulls +and +of goats +to take away +sins +Therefore +coming +into +the +world +He says +Sacrifice +and +offering +not +You have desired +however +a body +You have prepared +me +Burnt offerings +and +[offerings] for +sin +not +You have delighted in +Then +I said +- +O God +Behold +in +[the] scroll +of [the] book +it is written +of +Me +I have come +- +to do +the +will +of You +Above +saying +- +Sacrifice +and +offering +and +burnt offerings +and +[offerings] for +sin +not +You have desired +nor +have You delighted in +which +according to +[the] Law +are offered +then +He said +Behold +I have come +- +to do +the +will +of You +He takes away +the +first +that +the +second +He might establish +By +that +will +having been sanctified +we are +through +the +offering +of the +body +of Jesus +Christ +once for all +And +indeed +every +priest +stands +every +day +ministering +and +repeatedly +offering +the +same +sacrifices +which +never +are able +to take away +sins +however +This [One] +one +sacrifice +for +sins +having offered +in +- +perpetuity +sat down +at +[the] right hand +- +of God +the +henceforth +awaiting +until +should be placed +the +enemies +of Him +[as] a footstool +for the +feet +of Him +for +By one +offering +He has perfected +for +- +all time +those +being sanctified +now +Bears witness +to us +also +the +Spirit +- +Holy +for +after +- +having said +This [is] +the +covenant +that +I will make +with +them +after +the +days +those +says +[the] Lord +putting +[the] laws +of Me +into +[the] hearts +of them +and +into +the +mind +of them +I will inscribe +them +and +The +sins +of them +and +the +lawless acts +of them +no +not +will I remember +any more +now +Where +forgiveness +of these [is] +no longer [is there] +an offering +for +sin +therefore +brothers +Having +confidence +for +the +entering +the +holy places +by +the +blood +of Jesus +which +He dedicated +for us +a way +new +and +living +through +the +veil +that +is +the +flesh +of Him +and [having] +a priest +great +over +the +house +- +of God +we should draw near +with +a sincere +heart +in +full assurance +of faith +having been sprinkled clean +[our] +hearts +from +a conscience +evil +and +having been washed +[our] +body +with water +pure +We should hold fast +to the +confession +of [our] +hope +firmly +for [is] +faithful +the [One] +having promised +And +we should think +one another +toward +stirring up +to love +and +to good +works +not +forsaking +the +assembling together +of ourselves +as +[is the] custom +with some +but +encouraging [one another] +more +and +so much +as +you see +drawing near +the +Day +for +[If] willingly +sin +we +after [we are] +- +to receive +the +knowledge +of the +truth +no longer +for +sins +remains +a sacrifice +however +terrifying +a certain +expectation +of judgment +and +fury +of fire +being about +to devour +the +adversaries +anyone +Having set aside +[the] law +of Moses +without +mercies +on the basis of +two +or +three +witnesses +he dies +How much +think you +worse +punishment +will he deserve +the [one] +the +Son +- +of God +having trampled upon +and +ordinary +having esteemed +the +blood +of the +covenant +by +which +he was sanctified +and +the +Spirit +- +of grace +having insulted +for +We know +the [One] +having said +Mine +[is] vengeance +I +will repay +and +again +Will judge +[the] Lord +the +people +of Him +[It is] a fearful thing +- +to fall +into +[the] hands +of God +[the] living +however +Remember +the +former +days +in +which +having been enlightened +you endured +a great +conflict +of sufferings +indeed +this +both +by revilings +and +tribulations +being made a spectacle +now +this +partners +of those +thus +passing through [them] +having become +for +Both +with the +prisoners +you sympathized +and +the +plundering +of the +possessions +of you +with +joy +you accepted +knowing +to have +yourselves +possession +a better +and +abiding +therefore +Not +throw away +the +boldness +of you +which +has +a great +reward +for +Of endurance +need +You have +so that +the +will +- +of God +having done +you may receive +the +promise +for +Yet +A little +very +while +the [One] +coming +will come +and +not +will delay +however +The one +righteous +of Mine +by +faith +will live +and +if +he might shrink back +not +takes pleasure +the +soul +of Me +in +him +however +We +are +not +of [those] drawing back +to +destruction +but +of faith +to +[the] preserving +[of the] soul +now +Is +faith +of [things] hoped for +[the] assurance +[the] conviction +of things +not +being seen +for +In +this +were commended +the +ancients +By faith +we understand +to have been formed +the +universe +by [the] word +of God +so that +which +not +from [things] +being visible +the things +being seen +have been made +By faith +Abel +a more excellent +sacrifice +than +Cain +offered +- +to God +through +which +he was testified +to be +righteous +bearing witness +to +the +gifts +of him +- +God +and +through +it +having died +still +he speaks +By faith +Enoch +was translated +- +not +to see +death +and +not +was he found +because +had taken up +him +- +God +for +Before +the +translation +he was commended +to have pleased +- +God +now +Without +faith +[it is] impossible +to please [Him] +for +it behooves +To believe +the one +drawing near +- +to God +that +He exists +and [that] +to those +earnestly seeking out +Him +a rewarder +He becomes +By faith +Noah +having been divinely instructed +concerning +the things +not yet +seen +having been moved with fear +prepared +an ark +for +[the] salvation +of the +household +of him +by +which +he condemned +the +world +and +of the +according to +faith +righteousness [that is] +heir +he became +By faith +being called +Abraham +obeyed +to go out +into +a place +he was going +that +to receive +for +an inheritance +and +went out +not +knowing +where +he is going +By faith +he sojourned +in +[the] land +of the +promise +as [in] +a foreign [country] +in +tents +having dwelt +with +Isaac +and +Jacob +the +joint-heirs +of the +promise +- +same +for +He was awaiting +the +- +foundations +having +city +of which +[the] architect +and +builder [is] +- +God +By faith +also +herself +Sarah +power +for +[the] conception +of seed +received +even +beyond +the opportune +age +since +faithful +she considered +the [One] +having promised +Therefore +also +from +one man +having been as good as dead +were born +and +he +as +the +stars +of +heaven +- +in multitude +and +as +the +sand +- +by +the +shore +of the +sea +- +countless +In +faith +died +these +all +not +having received +the +promises +but +from afar +them +having seen +and +having embraced [them] +and +having confessed +that +strangers +and +sojourners +they are +on +the +earth +for +Those +such things +saying +make manifest +that [their] +own country +they are seeking +And +indeed +if +they had been remembering +that +from +where +they came out +- +they would have had +opportunity +to return +however +Now +they stretch forward to +a better [one] +that +is +a heavenly [one] +Therefore +not +is ashamed of +them +- +God +God +of them +to be called +indeed +He has prepared +for them +a city +By faith +has offered up +Abraham +- +Isaac +Being tested +even +[his] +only begotten son +was offering up +the [one] +the +promises +having received +as to +whom +it was said +- +In +Isaac +will be reckoned +your +offspring +having reasoned +that +even +out from +[the] dead +to raise +able [was] +- +God +from where +him +also +in +a simile +he received +By faith +also +concerning +[the things] coming +blessed +Isaac +- +Jacob +and +- +Esau +By faith +Jacob +dying +each +of the +sons +of Joseph +blessed +and +worshiped +on +the +top +of the +staff +of him +By faith +Joseph +dying +concerning +the +exodus +of the +sons +of Israel +made mention +and +concerning +the +bones +of him +gave instructions +By faith +Moses +having been born +was hidden +three months +by +the +parents +of him +because +they saw +[was] beautiful +the +little child +and +not +they did fear +the +edict +of the +king +By faith +Moses +grown +having become +refused +to be called +[the] son +of [the] daughter +of Pharaoh +having chosen +rather +to suffer affliction with +the +people +- +of God +than +[the] temporary +to have +of sin +enjoyment +greater +wealth +having esteemed +than the +of Egypt +treasures +the +reproach +- +of Christ +for +he was looking +toward +the +reward +By faith +he left +Egypt +not +having feared +the +anger +of the +king +for +the +Invisible [One] +as +seeing +he persevered +By faith +he has kept +the +Passover +and +the +sprinkling +of the +blood +so that +not +the [one] +destroying +the +firstborn +would touch +them +By faith +they passed through +the +Red +Sea +as +through +dry +land +which +an attempt +having made +the +Egyptians +were swallowed up +By faith +the +walls +of Jericho +fell +having been encircled +for +seven +days +By faith +Rahab +the +prostitute +not +did perish with +those +having disobeyed +having received +the +spies +with +peace +And +what +more +shall I say +for +Will fail +the +time +me +telling +of +Gideon +Barak +Samson +Jephthah +also +David +and +Samuel +and +the +prophets +who +by +faith +conquered +kingdoms +administered +justice +obtained +promises +shut +[the] mouths +of lions +quenched +[the] power +of fire +escaped +[the] mouths +of [the] sword +acquired strength +out of +weakness +became +mighty +in +war +[the] armies +of foreigners +put to flight +Received back +women +by +resurrection +the +dead +of them +then +others +were tortured +not +having accepted +- +release +so that +a better +resurrection +they might obtain +then +Others +of mockings +and +of scourgings +trial +received +also +in addition +of chains +and +imprisonment +They were stoned +they were tried +they were sawed in two +by +slaughter +of [the] sword +they were killed +they wandered +in +sheepskins +in +goats’ +skins +being destitute +being oppressed +being mistreated +wandering +in +deserts +and +mountains +and +caves +and +- +holes +of the +earth +of whom +not +was +worthy +the +world +And +these +all +having been commended +through +the +faith +not +did receive +the +promise +- +God +for +us +better +something +having planned +so that +not +apart from +us +they should be made perfect +Therefore +also +we +having +such a great +encompassing +us +a cloud +of witnesses +having laid aside +weight +every +and +the +easily entangling +sin +with +endurance +should run +the +lying before +us +race +looking +to +the +of [our] +faith +founder +and +perfecter +Jesus +who +in view of +the +lying before +Him +joy +endured +[the] cross +[its] shame +having despised +and +at +right hand +of the +throne +- +of God +sat down +for +Consider fully +the [One] +having endured +such great +from +- +sinners +against +Himself +hostility +so that +not +you shall grow weary +in the +souls +of you +fainting +Not yet +unto +blood +have you resisted +against +- +sin +struggling +and +you have forgotten +the +exhortation +that +you +as +to sons +addresses +Son +of Me +not +regard lightly +[the] discipline +of [the] Lord +nor +faint +by +Him +being reproved +for +Whom +He loves +[the] Lord +disciplines +now +He scourges +every +son +whom +He receives +As +discipline +endure +as +sons +you +is treating +- +God +for +what +son [is there] +whom +not +disciplines +[his] father +however +If +you are +without +of discipline +of which +partakers +they have become +all +then +illegitimate children +and +not +sons +you are +indeed +Furthermore +- +of the +flesh +of us +fathers +we have had +correctors +and +we respected [them] +not +much +more +shall we be in subjection +to the +Father +- +of spirits +and +shall live +indeed +Truly +- +for +a few +days +according to +that +seeming good +to them +they were disciplining [us] +but [He] +- +for +[our] +benefitting +in order +- +to share +of the +holiness +of Him +now +All +discipline +indeed +for +those +being present +seems +not +of joy +to be +but +of grief +however +afterward +[the] fruit +peaceable +of righteousness +to those +by +it +having been trained +it yields +Therefore +the +drooping +hands +and +the +enfeebled +knees +lift up +and +paths +straight +make +for the +feet +of you +so that +not +the +lame +should be put out of joint +however +should be healed +rather +pursue +with +all +Peace +and +- +holiness +which +without +no one +will see +the +Lord +observing +lest +any +be failing +of +the +grace +- +of God +lest +any +root +of bitterness +up +springing +should trouble [you] +and +by +this +might be defiled +the +many +lest [there be] +any +fornicator +or +profane person +as +Esau +who +for +meal +one +sold +the +birthright +of himself +for +You know +that +even +afterward +wishing +to inherit +the +blessing +he was rejected +for +of repentance +place +not +he found +although +with +tears +having earnestly sought +it +for +Not +you have come to +[that] being touched +and +having been kindled +with fire +and +to darkness +and +to gloom +and +to storm +and +of a trumpet +to [the] sound +and +to a voice +of words +which +those +having heard +excused themselves +[asking] not +to be addressed +to them +[the] word +for +not +they could bear +that +being commanded +If even +a beast +should touch +the +mountain +it shall be stoned +And +so +fearful +was +the thing +appearing [that] +Moses +said +I am +Greatly afraid +and +trembling +But +you have come to +Zion +Mount +and +[the] city +of God +[the] living +[the] Jerusalem +heavenly +and +to myriads +of angels +[to the] assembly +and +to [the] church +of [the] firstborn +having been enrolled +in +[the] heavens +and +to [the] judge +of all +God +and +to [the] spirits +of [the] righteous +having been perfected +and +of a covenant +new +[the] mediator +to Jesus +and +to [the] blood +of sprinkling +better things +speaking +than +that of +Abel +Take heed +lest +you refuse +the [One] +speaking +for +If +not +escaped +they +having refused +the [One] +on +earth +divinely instructing [them] +much +less +we +- +the [One] +from +[the] heavens +turning away from +whose +- +voice +the +earth +shook +at that time +however +now +He has promised +saying +Yet +once [more] +I +will shake +not +only +the +earth +but +also +- +heaven +now +This +Yet +once [more] +signifies +the +of the [things] +being shaken +removing +as +having been created +so that +should remain +the things +not +being shaken +Therefore +a kingdom +not to be shaken +receiving +we may have +grace +by +which +we may serve +well pleasingly +- +God +with +reverence +and +awe +for +Also +the +God +of us +[is] a fire +consuming +- +Brotherly love +let abide +- +Of hospitality +not +be forgetful +for +through +this +unawares +some +have entertained +angels +Remember +- +prisoners +as +being bound with [them] +those +being mistreated +as +also +yourselves +being +in +[the] body +Honorable [let] +- +marriage [be] +in +all +and +the +marriage bed +undefiled +for +the sexually immoral +and +adulterers +will judge +- +God +[Let be] without covetousness +[your] +manner of life +being satisfied +with the +present +for +He Himself +has said +Never +not +you +will I leave +nor +never +not +you +will I forsake +So +are confident +we +to say +[The] Lord [is] +my +helper +not +I will be afraid +what +shall do +to me +man +Remember +those +leading +you +who +spoke +to you +the +word +- +of God +of whom +the +outcome +of [their] +way of life +considering +imitate +the +faith +Jesus +Christ +yesterday +and +today +[is] the +same +and +to +the +ages +By teachings +various +and +strange +not +be carried away +for +[it is] good +by grace +to be strengthened +for the +heart +not +foods +in +which +not +were profited +those +being devoted +We have +an altar +from +which +to eat +not +have +authority +those +in the +tabernacle +serving +for +is brought +Whose +of animals +the +blood [as sacrifices] +for +sin +into +the +holy places +by +the +high priest +of those +the +bodies +are burned +outside +the +camp +Therefore +also +Jesus +so that +he might sanctify +by +the +own +blood +the +people +outside +the +gate +suffered +Therefore +we should go forth +to +Him +outside +the +camp +the +reproach +of Him +bearing +for +Not +we have +here +an abiding +city +but +the +coming [one] +we are seeking for +then +Through +Him +we should offer +through +everything +to +God +[the] sacrifice +of praise +that +is +[the] fruit +of [the] lips +confessing +the +name +of Him +And +- +the good +and +of sharing +not +be forgetful +for +with such +sacrifices +is well pleased +- +God +Obey +those +leading +you +and +be submissive +for +they +watch +over +the +souls +of you +as +account +about to give +that +with +joy +this +they might do +and +not +groaning +indeed +unprofitable +for you [is] +this +Pray +for +us +for +we are persuaded +that +a good +conscience +we have +in +all things +well +to conduct ourselves +desiring +now +More abundantly +I exhort [you] +this +to do +so that +more quickly +I may be restored +to you +now +[May] the +God +- +of peace +- +having brought +out from +[the] dead +by +[the] blood +of [the] covenant +eternal +the +Shepherd +of the +sheep +- +great +the +Lord +of us +Jesus +equip +you +in +everything +good +in order +- +to do +the +will +of Him +working +in +us +that which [is] +well pleasing +before +Him +through +Jesus +Christ +to whom [be] +the +glory +to +the +ages +of the +ages +Amen +now +I exhort +you +brothers +bear with +the +word +- +of exhortation +for +only +in +few words +I have written +to you +You know +the +brother +of us +Timothy +has been released +with +whom +if +sooner +he should come +I will see +you +Greet +all +those +leading +you +and +all +the +saints +Greet +you +those +from +- +Italy +- +Grace [be] +with +all +of you +James +of God +and +of [the] Lord +Jesus +Christ +a servant +To the +twelve +tribes +- +in +the +Dispersion +Greetings +brothers +of me +All +joy +esteem [it] +when +trials +various +you might fall into +knowing +that +the +testing +of your +- +faith +produces +endurance +And +- +endurance +work +[its] perfect +let have +so that +you may be +perfect +and +complete +in +nothing +lacking +now +If +any +of you +lacks +wisdom +let him ask +from +the [One] +giving +to all +generously +and +not +finding fault +God +and +it will be given +to him +however +Let him ask +in +faith +nothing +doubting +for +The [one] +doubting +is like +a wave +of [the] sea +being blown by the wind +and +being tossed by the wind +for +Not +let suppose +the +man +that +that +he will receive +anything +from +the +Lord +[He is] a man +double-minded +unstable +in +all +the +ways +of him +however +Let boast +the +brother +- +of low degree +in +the +exaltation +of him +then +he who [is] +rich +in +the +humiliation +of him +because +like +a flower +of grass +he will pass away +for +Has risen +the +sun +with +[its] +burning heat +and +withered +the +grass +and +the +flower +of it +has fallen +and +the +beauty +of the +appearance +of it +has perished +Thus +also +the +rich [man] +in the midst of +the +pursuits +of him +will fade away +Blessed [is the] +man +who +endures +trial +because +approved +having been +he will receive +the +crown +- +of life +that +He has promised +to those +loving +Him +No one +being tempted +let say +- +By +God +I am being tempted +For +- +God +unable to be tempted +is +by evils +now +tempts +He Himself +no one +however +A man +is tempted +by +the +own +desire +being drawn away +and +being enticed +Then +- +desire +having conceived +gives birth to +sin +and +- +sin +having become fully grown +brings forth +death +Not +be misled +brothers +my +beloved +Every +act of giving +good +and +every +gift +perfect +from above +is +coming down +from +the +Father +- +of lights +with +whom +not +there is +variation +or +of shifting +shadow +Having willed [it] +He brought forth +us +by [the] word +of truth +for +- +to be +us +firstfruits +a certain +- +of His +creatures +Know [this] +brothers +my +beloved +however +Let be +every +man +swift +unto +- +to hear +slow +unto +- +to speak +slow +unto +anger +for +[the] anger +of man +[the] righteousness +of God +not +produces +Therefore +having put aside +all +filthiness +and +abounding +of wickedness +in +humility +receive +the +implanted +word +- +being able +to save +the +souls +of you +however +Be +doers +of [the] word +and +not +hearers +only +deceiving +yourselves +because +if +anyone +a hearer +of [the] word +is +and +not +a doer +this one +is like +a man +looking +at +[the] face +- +natural +of him +in +a mirror +for +he has viewed +himself +and +has gone away +and +immediately +he has forgotten +what like +he was +however +The [one] +having looked intently +into +[the] law +perfect +that +- +of freedom +and +having continued in [it] +having been +not +a hearer +forgetful +but +a doer +of [the] work +this one +blessed +in +the +work +of him +will be +If +anyone +seems +religious +to be +not +bridling +[the] tongue +of himself +but +deceiving +[the] heart +of himself +of this one +the +religion +worthless [is] +Religion +pure +and +undefiled +before +the +God +and +Father +is +this +to visit +orphans +and +widows +in +the +tribulation +of them +unstained +oneself +to keep +from +the +world +Brothers +of Me +not +with +partiality +hold +the +faith +of the +Lord +of us +Jesus +Christ +- +of glory +for +If +might come +into +assembly +of you +a man +with a gold ring +in +apparel +splendid +then +might come in +also +a poor [man] +in +shabby +apparel +also +you should look +upon +the [one] +wearing +the +apparel +- +splendid +and +should say +You +sit you +here +honorably +and +to the +poor +should say +You +stand +there +or +Sit +under +the +footstool +of me +not +have you made a distinction +among +yourselves +and +have become +judges [with] +thoughts +evil +Listen +brothers +my +beloved +Not +- +God +has chosen +the +poor +- +in this world +[to be] rich +in +faith +and +heirs +of the +kingdom +that +He promised +to those +loving +Him +however +You +have dishonored +the +poor +Not +the +rich +are oppressing +you +and +they +dragging +you +into +court +Not +they +are blaspheming +the +good +Name +- +having been called +upon +you +If +indeed +[the] law +royal +you keep +according to +the +Scripture +You shall love +the +neighbor +of you +as +yourself +well +you are doing +however +If +you show partiality +sin +you are committing +being convicted +by +the +law +as +transgressors +for +Whoever +all +the +law +shall keep +but +shall stumble +in +one [point] +he has become +of all +guilty +for +The [One] +having said +Not +you shall commit adultery +said +also +Not +you shall murder +however +If +not +you do commit adultery +however +do commit murder +you have become +a transgressor +of [the] law +So +speak +and +so +act +as +by +[the] law +of freedom +to be judged +being about +For +- +judgment +without mercy [will be] +to the [one] +not +having shown +mercy +Triumphs over +mercy +judgment +brothers +of me +What [is] +the +profit +if +faith +to have +says +anyone +however +works +not +he has +Not +is able +the +faith +to save +him +Now if +a brother +or +a sister +without clothes +is +and +lacking +- +of daily +food +then +says +to them +anyone +out from +you +Go +in +peace +be warmed +and +be filled +however +not +gives +to them +the +needful things +for the +body +what [is] +the +profit +So +also +- +faith +if +not +it has +works +dead +is +by +itself +But +will say +someone +You +faith +have +and I +works +have +Show +me +the +faith +of you +without +- +works +and I +you +will show +by +the +works +of me +- +faith +You +believe +that +one +is +- +God +Well +you are doing +Even +the +demons +believe [that] +and +shudder +however +O +man +foolish +Do you want +to come to know +that +- +faith +apart from +- +works +worthless +is +Abraham +the +father +of us +not +by +works +was justified +having offered +Isaac +the +son +of him +upon +the +altar +You see +that +[his] +faith +was working with +the +works +of him +and +by +[his] +works +[his] +faith +was perfected +And +was fulfilled +the +Scripture +- +saying +then +Believed +Abraham +- +God +and +it was counted +to him +for +righteousness +and +a friend +of God +he was called +You see +that +by +works +is justified +a man +and +not +by +faith +alone +then +Likewise +also +Rahab +the +prostitute +not +by +works +was justified +having received +the +messengers +and +by another +way +having sent [them] forth +for +Just as +the +body +apart from +spirit +dead +is +so +also +- +faith +apart from +works +dead +is +brothers +of mine +Not +many [of you] +teachers +let be +knowing +that +greater +judgment +we will receive +for +In many ways +we stumble +all +If +anyone +in +what he says +not +does stumble +this one [is] +a perfect +man +able +to bridle +indeed +all +the +body +now +If +of the +horses +- +bits +into +the +mouths +we put +for +- +to obey +them +us +even +all +the +body +of them +we turn about +Behold +also +the +ships +so great +being +and +by +winds +strong +being driven +are turned about +by +a very small +rudder +wherever +the +impulse +of the [one] +steering +resolves +Thus +also +the +tongue +a small +member +is +and +exceeding things +it boasts +Behold +a small +fire +how great +a forest +it kindles +Also +the +tongue [is] +a fire +the +world +- +of iniquity +The +tongue +is set +among +the +members +of us +- +defiling +all +the +body +and +setting on fire +the +course +- +of nature +and [itself] +being set on fire +by +- +hell +for +All +kinds +both +of beasts +and +of birds +both +of creeping things +and +things of the sea +is subdued +and +has been subdued +by the +race +of the +human +but +- +the tongue +to subdue +is able +no one +of men +[it is] an unruly +evil +full +of poison +deadly +With +it +we bless +our +Lord +and +Father +and +with +it +we curse +- +men +those +according to +[the] likeness +of God +being made +Out of +the +same +mouth +proceed forth +blessing +and +cursing +brothers +of Me +Not +ought +these things +so +to be +Not +the +spring +out +of the +same +opening +pours forth +- +[both] fresh +and +- +bitter +brothers +of me +Not +is able +a fig tree +olives +to produce +Or +a vine +figs +Nor +a salt [spring] +to produce +fresh +water +Who +[is] wise +and +understanding +among +you +let him show +out of +the +good +conduct +the +works +of him +in +[the] humility +of wisdom +however +If +you have +jealousy +bitter +and +self-interest +in +the +heart +of you +not +boast [of it] +and +lie +against +the +truth +Not +is +this +the +wisdom +from above +coming down +but +[is] earthly +unspiritual +demonic +for +Where +jealousy +and +self-interest [exist] +there [will be] +disorder +and +every +evil +thing +But +- +the from above +wisdom +first +indeed +pure +is +then +peaceable +gentle +reasonable +full +of mercy +and +of fruits +good +impartial +sincere +now +[The] fruit +of righteousness +in +peace +is sown +by those +making +peace +From where +[come] disputes +and +from where +quarrels +among +you +[Is it] not +from there +out of +the +passions +of you +- +warring +in +the +members +of you +You desire +and +not +have +you kill +and +covet +and +not +are able +to obtain +You quarrel +and +wrangle +Not +you have +because +- +not +ask +you +You ask +and +not +receive +because +wrongly +you ask +that +in +the +pleasures +of you +you may spend [it] +Adulteresses +Not +know you +that +the +friendship +with the +world +hostility +[with] +God +is +therefore +if +Whoever +has chosen +to be +a friend +of the +world +an enemy +- +of God +is appointed +Or +think you +that +in vain +the +Scripture +says +With +envy +yearns +the +Spirit +that +He has made to dwell +in +us +however +Greater +grace +He gives +Therefore +it says +- +God +[the] proud +opposes +however +to [the] humble +gives +grace +therefore +Subject yourselves +- +to God +however +Resist +the +devil +and +he will flee +from +you +Draw near +- +to God +and +He will draw near +to you +Cleanse +[your] hands +[you] sinners +and +have purified +hearts +[you] double-minded +Be grieved +and +mourn +and +weep +The +laughter +of you +to +mourning +let be turned +and +the +joy +to +gloom +Humble yourselves +in the presence of +[the] Lord +and +He will exalt +you +Not +speak against +one another +brothers +The [one] +speaking against +[his] brother +or +judging +the +brother +of him +speaks against +[the] Law +and +judges +[the] Law +however +If +[the] Law +you judge +you are +not +a doer +of [the] Law +but +a judge +One +there is +Lawgiver +and +Judge +the [One] +being able +to save +and +to destroy +however +You +who +are +- +judging +the +neighbor +Come +now +those +saying +Today +or +tomorrow +we will go +into +such +- +city +and +will spend +there +a year +and +will trade +and +will make a profit +who +not +know +on the +next day [is] +What [is] +the +life +of you +just +it is +A vapor +- +for +a little [while] +appearing +then +also +vanishing +Instead [ought] +- +to say +you +If +the +Lord +should will +both +we will live +and +we will do +this +or +that +however +Now +you boast +in +the +arrogance +of you +All +boasting +such +evil +is +therefore +To [him] knowing +good +to do +and +not +doing +sin +to him +it is +Come +now +[you] +rich +weep +wailing +over +the +miseries +upon you +that [are] +coming +The +riches +of You +have rotted +and +the +garments +of you +moth-eaten +have become +The +gold +of you +and +the +silver +have corroded +and +the +rust +of them +for +a testimony +against you +will be +and +will eat +the +flesh +of you +like +fire +You have treasured up +in +[the] last +days +Behold +the +wage +of the +workmen +- +having harvested +the +fields +of you +- +having been kept back +by +you +cries out +and +the +cries +of those +having harvested +into +the +ears +of [the] Lord +of Hosts +have entered +You lived in luxury +upon +the +earth +and +lived in self-indulgence +You have fattened +the +hearts +of you +in +[the] day +of slaughter +You have condemned +[and] have put to death +the +righteous +not +does he resist +you +therefore +brothers +Be patient +until +the +coming +of the +Lord +Behold +the +farmer +awaits +the +precious +fruit +of the +earth +being patient +for +it +until +it receives +[the] early +and +latter [rains] +Be patient +also +you +strengthen +the +hearts +of you +because +the +coming +of the +Lord +has drawn near +brothers +Not +grumble +against +one another +so that +not +you may be condemned +Behold +the +Judge +before +the +doors +is standing +brothers +take +[As] an example +- +of suffering evils +and +- +of patience +the +prophets +who +spoke +in +the +name +of [the] Lord +Behold +we count blessed +those +having persevered +The +perseverance +of Job +you have heard of +and +the +outcome +from [the] Lord +you have seen +that +is +the +Lord +full of compassion +and +[is] merciful +however +brothers +of me +Before +all things +not +swear +neither [by] +- +heaven +nor +the +earth +nor +other +any +oath +however +Be +of you +the +Yes +yes +and +the +No +no +so that +not +under +judgment +you might fall +Is suffering hardships +anyone +among +you +Let him pray +Is cheerful +anyone +Let him sing praises +Is sick +anyone +among +you +Let him call near +the +elders +of the +church +and +let them pray +over +him +having anointed +with oil +in +the +name +of the +Lord +And +the +prayer +- +of faith +will save +the one +ailing +and +will raise up +him +the +Lord +and if +sins +he might be [one] +having committed +it will be forgiven +him +therefore +Confess +to one another +the +sins +and +pray +for +one another +so that +you may be healed +Much +prevails +[the] prayer +of a righteous [man] +being made effective +Elijah +was +a man +of like nature +to us +and +with fervent prayer +he prayed [for it] +- +not +to rain +and +not +it did rain +upon +the +earth +years +three +and +months +six +And +again +he prayed +and +the +heaven +rain +gave +and +the +earth +produced +the +fruit +of it +Brothers +of Me +if +anyone +among +you +might wander +from +the +truth +and +should bring back +someone +him +let him know +that +the [one] +having brought back +a sinner +from +[the] error +of the way +of him +will save +the soul +of him +from +death +and +will cover over +a multitude +of sins +Peter +an apostle +of Jesus +Christ +To [the] elect +sojourners +of [the] Dispersion +of Pontus +Galatia +Cappadocia +Asia +and +Bithynia +according to +[the] foreknowledge +of God +[the] Father +by +[the] sanctification +of [the] Spirit +unto +[the] obedience +and +sprinkling +of [the] blood +of Jesus +Christ +Grace +and +peace +to you +may be multiplied +Blessed [be] +the +God +and +Father +of the +Lord +of us +Jesus +Christ +the [One] +according to +the +great +of Him +mercy +having begotten again +us +to +a hope +living +through +[the] resurrection +of Jesus +Christ +out from +[the] dead +to +an inheritance +imperishable +and +undefiled +and +unfading +being reserved +in +[the] heavens +for +you +who +by +[the] power +of God +[are] being guarded +through +faith +for +[the] salvation +ready +to be revealed +in +[the] time +last +in +which +you greatly rejoice +if +for a little while +at present +being necessary +having been put to grief +by +various +trials +so that +the +proven genuineness +of your +- +faith +more precious +than gold +- +perishing +though +by +fire +being refined +may be discovered +to result in +praise +and +glory +and +honor +in +[the] revelation +of Jesus +Christ +whom +not +having seen +you love +now +on +whom +now [though] +not +seeing +believing +you exult +with joy +inexpressible +and +filled with glory +receiving +the +outcome +of the +faith +[the] salvation +of [your] souls +Concerning +this +salvation +sought out +and +searched out diligently +[the] prophets +- +of +the +toward +you +grace +having prophesied +inquiring +into +what +or +what manner of +time +was signifying +the +in +them +Spirit +of Christ +testifying beforehand +- +unto +Christ's +sufferings +and +the +after +these +glories +to whom +it was revealed +that +not +themselves +however +you +they were serving +in those things +which +now +have been proclaimed +to you +by +those +having proclaimed the gospel to +you +by +[the] Spirit +Holy +having been sent +from +heaven +into +which +to look +desire +angels +Therefore +having girded up +the +loins +of the +mind +of you +being sober-minded +fully +set [your] hope +upon +the +being brought +to you +grace +in +[the] revelation +of Jesus +Christ +as +children +of obedience +not +fashioning yourselves +to the +former +in +the +ignorance +of you +desires +But +as +the [One] +having called +you +[is] holy +also +yourselves +holy +in +all +[your] conduct +be +because +it has been written +Holy +you shall be +because +I +holy +And +if +[as] Father +you call on +the [One] +impartially +judging +according to +the +of each +work +in +fear +during the +of the +sojourn +of you +time +conduct yourselves +knowing +that +not +by perishable things +by silver +or +by gold +you were redeemed +from +the +futile +of you +manner of life +handed down from [your] fathers +but +by [the] precious +blood +as +of a lamb +without blemish +and +without spot +of Christ +indeed +having been foreknown +before +[the] foundation +of [the] world +however +having been revealed +in +[the] last +- +times +for the sake of +you +who +by +Him +believe +in +God +the [one] +having raised up +Him +out from +[the] dead +and +glory +Him +having given +so as for +the +faith +of you +and +hope +to be +in +God +The +souls +of you +having purified +by +- +obedience +to the +truth +unto +brotherly love +sincere +out of +of heart +one another +love +fervently +Having been born again +not +of +seed +perishable +but +of imperishable +by +[the] word +of God +living +and +abiding +because +All +flesh [is] +like +grass +and +all +[the] glory +of it +like +[the] flower +of grass +Withers +the +grass +and +the +flower +falls away +but +- +the word +of [the] Lord +abides +to +the +age +now +This +is +the +word +- +having been proclaimed +to +you +therefore +Having put aside +all +malice +and +all +deceit +and +hypocrisy +and +envies +and +all +evil speakings +like +newborn +babies +- +reasonable +pure +milk +crave +so that +by +it +you may grow up +in respect to +salvation +if indeed +you have tasted +that +[is] good +the +Lord +coming +To +whom +a stone +living +indeed +by +men +rejected +however +in the sight of +God +chosen +[and] precious +also +you yourselves +as +stones +living +are being built up +as a house +spiritual +into +a priesthood +holy +to offer +spiritual +sacrifices +acceptable +to God +through +Jesus +Christ +Therefore +it is contained +in +Scripture +Behold +I lay +in +Zion +a stone +a chosen +cornerstone +precious +and +the [one] +believing +on +Him +no +not +shall be put to shame +therefore [is] +the +preciousness +To you +- +believing +however +[to those] disobeying +[The] stone +which +have rejected +those +building +this +has become +into +[the] head +of [the] corner +and +A stone +of stumbling +and +a rock +of offense +[They] +stumble at +to the +word +being disobedient +to +which +also +they were appointed +however +You +[are] a race +chosen +a royal +priesthood +a nation +holy +a people +for [His] +possession +so that +you may proclaim +the +excellencies +of the [One] +out of +darkness +you +having called +to +the +marvelous +of Him +light +who +once [were] +not +a people +however +now +[the] people +of God +those +not +having received mercy +however +now +having received mercy +Beloved +I exhort [you] +as +aliens +and +sojourners +to abstain +from +fleshly +desires +which +war +against +the +soul +the +conduct +of you +among +the +Gentiles +keeping +honorable +so that +wherein +which +they speak against +you +as +evildoers +through +the +good +deeds +having witnessed +they may glorify +- +God +in +[the] day +of visitation +Be in subjection +for the sake of +the +Lord +to every +human +institution +whether +to [the] king +as +being supreme +or +to governors +as +by +him +being sent +for +vengeance +to evildoers +then +praise +to well doers +because +this +is +the +will +- +of God +doing good +to put to silence +the +- +of foolish +men +ignorance +as +free +and +not +as +having +a cover-up +for +evil +the +freedom +but +as +of God +servants +Everyone +honor +The +brotherhood +love +- +God +fear +the +king +honor +- +Servants +be subject +with +all +fear +to +masters +not +only +to the +good +and +gentle +but +also +to the +unreasonable +for +This +[is] acceptable +if +for sake of +conscience +toward God +endures +anyone +griefs +suffering +unjustly +for +What kind of +credit [is it] +if +sinning +and +being struck +you shall endure +But +if +doing good +and +suffering +you shall endure +this [is] +commendable +before +God +for +To this +hereunto +you have been called +because +also +Christ +suffered +for +you +you +leaving +an example +that +you should follow after +the +steps +of Him +Who +sin +not +committed +neither +was found +trickery +in +the +mouth +of Him +Who +being reviled +not +reviled in return +suffering +not +threatened +however +He gave [Himself] over +to Him +judging +justly +Who +Himself +the +sins +of us +bore +in +the +body +of Him +on +the +tree +so that +- +to sins +having been dead +- +to righteousness +we might live +By whose +- +wounds +you have been healed +for +You were +like +sheep +going astray +but +you have returned +now +to +the +Shepherd +and +Overseer +of the +souls +of you +wives +Likewise +be subject +to the +own +husbands +so that +if +even +any +are disobedient +to the +word +by +the +of the +wives +conduct +without +word +they will be won over +having witnessed +the +in +respect +pure +conduct +of you +whose +let it be +not +the +external +of braiding +of hair +and +putting around +of gold +or +putting on +of garments +adorning +but +the +hidden +of the +heart +man +in +the +imperishable +of the +gentle +and +quiet +spirit +which +is +before +- +God +of great worth +for +In this way +formerly +also +the +holy +women +- +hoping +in +God +used to adorn +themselves +being subject +to the +own +husbands +as +Sarah +obeyed +- +Abraham +lord +him +calling +of whom +children +you have become +doing good +and +not +fearing +not one +consternation +- +Husbands +likewise +dwelling with [them] +according to +knowledge +as +with a weaker +vessel +with the +female +rendering +honor +as +also +joint-heirs +of [the] grace +of life +so as for +- +not +to be hindered +the +prayers +of you +Now +- +the end +All [be] +single-minded +sympathetic +loving as brothers +tender-hearted +humble +not +repaying +evil +for +evil +or +insult +for +insult +however +on the contrary +blessing +because +to +this +you were called +so that +blessing +you should inherit +for +The [one] +desiring +life +to love +and +to see +days +good +let him keep +the +tongue +from +evil +and +lips +- +not +to speak +deceit +also +Let him turn away +from +evil +and +let him do +good +Let him seek +peace +and +let him pursue +it +Because +[the] eyes +of [the] Lord +[are] on +[the] righteous +and +[the] ears +of Him +toward +prayer +of them +however +[The] face +of [the] Lord +[is] against +those doing +evil +And +who [is] +he who +will harm +you +if +for that which [is] +good +zealous +you should be +But +if +even +you should suffer +because of +righteousness +[you are] blessed +And +- +the threats +of them +not +you should be afraid of +neither +should you be troubled +however +[As] Lord +- +Christ +sanctify +in +the +hearts +of you +ready +always +for +a defense +to everyone +- +asking +you +an account +concerning +the +in +you +hope +yet +with +gentleness +and +fear +a conscience +good +having +so that +in +this +they might speak against you +they shall be ashamed +those +reviling +your +- +good +in +Christ +manner of life +for +[It is] better +doing good +if +wills [it] +the +will +- +of God +to suffer +than +doing evil +because +also +Christ +once +for +sins +suffered +[the] righteous +for +[the] unrighteous +so that +you +He might bring +- +to God +indeed +having been put to death +in [the] flesh +however +having been made alive +in [the] spirit +in +which +having gone +He preached +also +to the +in +prison +spirits +having disobeyed +at one time +when +was waiting +the +- +of God +longsuffering +in +[the] days +of Noah +being prepared +of [the] ark +in +which +a few +that +is +eight +souls +were saved +through +water +which +also +you +now +saving +prefigures +baptism +not +of flesh +a putting away +of [the] filth +but +of a conscience +good +[the] demand +toward +God +through +[the] resurrection +of Jesus +Christ +who +is +at +[the] right hand +of God +having gone +into +heaven +having been subjected +to Him +angels +and +authorities +and +powers +therefore +Christ +having suffered +in [the] flesh +also +you +the +same +mind +arm yourselves with +so as +- +no longer +to men’s +desires +but +to [the] will +of God +the +remaining +in +[the] flesh +time +to live +because +the [one] +having suffered +[in the] flesh +is done with +sin +for +[Is] sufficient +the +past +time +the +desire +of the +Gentiles +to have carried out +having walked +in +sensuality +lusts +drunkenness +orgies +carousing +and +abominable +idolatries +With respect to +this +they think it strange +not +running with [them] +of you +into +the +same +- +of debauchery +overflow +speaking evil [of you] +who +will give +account +to Him who +ready +is +to judge +[the] living +and +[the] dead +indeed +To +this [end] +even +to [the] dead +the gospel was proclaimed +so that +indeed +they might be judged +according to +men +in [the] flesh +however +they might live +according to +God +in [the] spirit +now +Of all +the +end +has drawn near +therefore +Be clear minded +and +sober +for the purpose of +prayers +above +all things +- +among +yourselves +love +fervent +having +because +love +covers over +a multitude +of sins +hospitable +to +one another +without +complaint +each +as +has received +a gift +to +each other +them +serving +as +good +stewards +of [the] manifold +grace +of God +if +anyone +speaks +as +oracles +of God +if +anyone +serves +as +of +strength +which +supplies +- +God +so that +in +all things +may be glorified +- +God +through +Jesus +Christ +to whom +be +the +glory +and +the +power +to +the +ages +of the +ages +Amen +Beloved +not +be surprised at +the +among +you +fire +for +a trial +to you +taking place +as if +a strange thing +to you +were happening +But +as +you have shared +in the +- +of Christ +sufferings +rejoice +so that +also +in +the +revelation +of the +glory +of Him +you may rejoice +exulting +If +you are insulted +in +[the] name +of Christ +[you are] blessed +because +the +- +of glory +and +- +- +of God +Spirit +upon +you +rests +for +Not +any +of you +let suffer +as +a murderer +or +a thief +or +an evildoer +or +as +a troublesome meddler +however +if +as +a Christian +not +let him be ashamed +however +let him glorify +- +God +in +the +name +this +For [it is] +the +time [for] +- +to have begun +the +judgment +from +the +house +- +of God +now +if +first +from +us +what [will be] +the +outcome +of those +disobeying +the +- +of God +gospel +And +If +the +righteous [one] +with difficulty +is saved +the +ungodly +and +sinner +where +will appear +Therefore +also +those +suffering +according to +the +will +- +of God +to [the] faithful +Creator +let them commit +the +souls +of them +in +well doing +- +Elders +among +you +I exhort +- +a fellow elder +and +witness +of the +- +of Christ +sufferings +also +who [am] +of the +being about +to be revealed +glory +partaker +Shepherd +the +among +you +flock +- +of God +not +under compulsion +but +willingly +according to +God +and not +for base gain +but +eagerly +not +as +exercising lordship over +- +those in your charge +but +being +examples +to the +flock +And +having been revealed +the +Chief Shepherd +you will receive +the +unfading +- +of glory +crown +younger [ones] +Likewise +be subject +to [your] elders +now +All +one to another +- +humility +gird on +because +- +God +[the] proud +opposes +however +to [the] humble +He gives +grace +therefore +Be humbled +under +the +mighty +hand +- +of God +so that +you +He may exalt +in +[due] time +all +the +anxiety +of you +having cast +upon +Him +because +with Him +there is care +about +you +Be sober-minded +watch +The +adversary +of You +[the] devil +as +a lion +roaring +prowls about +seeking +whom +to devour +whom +you should resist +firm +in the +faith +knowing +the +same +- +sufferings +- +throughout +the +world +in your +brotherhood +to be accomplished +now +The +God +of all +grace +the [one] +having called +you +to +the +eternal +of Him +glory +in +Christ +a little while +[of you] having suffered +He Himself +will perfect +will confirm +will strengthen +[and] will establish [you] +To Him [be] +the +power +to +the +ages +of the +ages +Amen +to you +Through +Silvanus +the +faithful +brother +as +I regard [him] +through +few [words] +I have written +exhorting +and +testifying +this +to be +[the] true +grace +- +of God +in +which +you stand +Greets +you +she +in +Babylon +elected with [you] +and +Mark +the +son +of me +Greet +one another +with +a kiss +of love +Peace [be] +to you +all +who [are] +in +Christ +Simon +Peter +a servant +and +apostle +of Jesus +Christ +To those +with ours +having obtained +equally precious +a faith +through +[the] righteousness +of the +God +of us +and +Savior +Jesus +Christ +Grace +and +peace +to you +be multiplied +in +[the] knowledge +- +of God +and +of Jesus +the +Lord +of us +Accordingly +to us +the +divine +power +of Him +- +all things +- +toward +life +and +godliness +has given +through +the +knowledge +of the [One] +having called +us +[by His] own +glory +and +excellence +through +which +the +precious +and +magnificent +promises +to us +He has given +so that +through +these +you might become +partakers +of [the] divine +nature +having escaped +the +in +the +world +in +desire +decay +now +And +very [reason] +for this +earnestness +all +having brought in +supplement +into +the +faith +of you +- +virtue +and +into +- +virtue +- +knowledge +then +into +- +knowledge +- +self-control +then +into +- +self-control +- +endurance +then +into +- +endurance +- +godliness +then +in +- +godliness +- +brotherly affection +then +in +- +brotherly affection +- +love +for +These things +in you +being +and +abounding +neither +idle +nor +unfruitful +make [you] +as to +the +of the +Lord +of us +Jesus +Christ +knowledge +for +In whomever +not +are present +these things +blind +he is +being short sighted +having received +forgetfulness +of the +purification +the +former +of him +sins +Therefore +brothers +rather +be diligent +sure +your +- +calling +and +election +to make +for +these things +practicing +never +not +shall you stumble +at any time +for +In this way +richly +will be supplied +to you +the +entrance +into +the +eternal +kingdom +of the +Lord +of us +and +Savior +Jesus +Christ +Therefore +I will be ready +always +you +to remind +concerning +these things +though +knowing [them] +and +having been strengthened +in +the +being present [in you] +truth +now +Right +I esteem it +as +long as +I am +in +this +- +tabernacle +to stir up +you +by +putting [you] in remembrance +knowing +that +impending +is +the +putting off +of the +tabernacle +of me +as +also +the +Lord +of us +Jesus +Christ +has made clear +to me +now +I will be diligent +also +at every time +to have +for you +after +- +my +departure +- +these things +a lasting remembrance +to make +for +Not +cleverly devised +fables +having followed out +we have made known +to you +the +of the +Lord +of us +Jesus +Christ +power +and +coming +but +having been +eyewitnesses +- +of His +majesty +for +Having received +from +God +[the] Father +honor +and +glory +a voice +such as follows +was brought +to Him +by +the +Majestic +Glory +The +Son +of Me +- +beloved +of Me +this +is +in +whom +I +have found delight +And +this +- +voice +we +heard +from +heaven +having been brought +with +Him +being +in +the +holy +mountain +And +we have +more certain +the +prophetic +word +well +you do +to which +taking heed +as +to a lamp +shining +in +[a] dark +place +until +this +day +shall have dawned +and +[the] morning star +shall have arisen +in +the +hearts +of you +this +first +knowing +that +any +prophecy +of Scripture +of its own +interpretation +not +is +for +Not +by [the] will +of man +was brought +prophecy +at any time +but +by +[the] Spirit +Holy +being carried +spoke +from +God +men +however +There were +also +false prophets +among +the +people +as +also +among +you +there will be +false teachers +who +will stealthily introduce +heresies +destructive +even +the +having bought +them +Master +denying +bringing upon +themselves +swift +destruction +And +many +will follow after +their +- +sensuality +through +whom +the +way +of the +truth +will be maligned +And +through +covetousness +with fabricated +words +you +they will exploit +for whom +the +judgment +of long ago +not +is idle +and +the +destruction +of them +not +slumbers +for +If +- +God +[the] angels +having sinned +not +spared +but +in chains +of gloomy darkness +having cast [them] down to Tartarus +delivered [them] +for +judgment +being kept +and +[the] ancient +world +not +He spared +but +one of eight +Noah +of righteousness +a herald +preserved +[the] flood upon +[the] world +of [the] ungodly +having brought in +and +[the] cities +of Sodom +and +Gomorrah +having reduced to ashes +to destruction +He condemned [them] +an example +of what is coming on +the ungodly +having set +and +righteous +Lot +being distressed +by +the +of the +lawless +in +sensuality +conduct +He rescued +for +through seeing +and +hearing +that +righteous [man] +dwelling +among +them +day +after +day +in [his] soul +righteous +with [their] lawless +deeds +was tormented +[then] knows +[the] Lord +[the] devout +out of +temptation +to deliver +then +[the] unrighteous +unto +[the] day +of judgment +being punished +to keep +then +especially +those +after +[the] flesh +in +[the] passion +of defilement +walking +and +authority +despising +Bold +self-willed +glorious ones +blaspheming +not +they tremble +whereas +angels +in strength +and +power +greater +being +not +do bring +against +them +before +[the] Lord +a reviling +judgment +however +These +like +irrational +animals +having been born +as creatures of instinct +for +capture +and +destruction +in +what +they are ignorant of +blaspheming +in +the +destruction +of them +also +will be destroyed +suffering wrong +[as the] wage +of unrighteousness +[as] pleasure +esteeming +- +in +daytime +carousal +blots +and +blemishes +reveling +in +the +deceptions +of them +feasting with +you +having +eyes +full +of adultery +and +unceasing +from sin +enticing +souls +unestablished +a heart +having been exercised +in craving +having +of a curse +children +Having left +[the] straight +way +they have gone astray +having followed +in the +way +- +of Balaam +- +[son] of Bosor +who +[the] wage +of unrighteousness +loved +however +reproof +for his own +transgression +he had +[by] a donkey +mute +in +a man’s +voice +having spoken +it restrained +the +of the +prophet +madness +These +are +springs +without water +and +mists +by +storm +being driven +for whom +- +gloom +- +of darkness +has been reserved +for +Arrogant +of vanity +speaking words +they entice +with +[the] passions +of [the] flesh +to sensuality +those +barely +escaping +from those +in +error +living +freedom +them +promising +themselves +being +slaves +- +of corruption +for +By what +anyone +has been subdued +by that +he is enslaved +for +If +having escaped +the +pollutions +of the +world +through +[the] knowledge +of the +Lord +and +Savior +Jesus +Christ +now +in these +again +having been entangled +they are subdued +has become +to them +the +last [state] +worse +than the +first +for +Better +it would have been +for them +not +to have known +the +way +- +of righteousness +than +having known [it] +to have turned +from +the +having been delivered +to them +holy +commandment +Has happened +to them +the thing +of the +true +proverb +A dog +having returned +to +[its] +own +vomit +and +A sow +having washed +to [her] +rolling place +in [the] mire +beloved +now +This +[is the] second +letter +to you +I am writing +in +which +I am stirring up +in +putting [you] in remembrance +of you +- +pure +mind +to remember +the +having been spoken beforehand +by +the +holy +prophets +words +and +of the +- +apostles +through your +commandment +of the +Lord +and +Savior +this +first +knowing +that +will come +in +[the] last +of the +days +with +scoffing +scoffers +according to +- +own +evil desires +of them +following +and +saying +Where +is +the +promise +of the +coming +of Him +for +From +[the time] that +the +fathers +fell asleep +all things +as they were +continue +from +[the] beginning +of creation +indeed +It is concealed from +them +this +willingly +that +heavens +existed +long ago +and +[the] earth +out of +water +and +through +water +having been composed +by the +- +of God +word +through +which +the +at that time +world +with water +having been deluged +perished +But +- +now +the heavens +and +the +earth +by the +same +word +having been stored up +exist +for fire +being kept +unto +[the] day +of judgment +and +destruction +- +of ungodly +men +however +beloved +[This] one +thing +not +let be hidden from +you +that +one +day +with [the] +Lord [is] +like +a thousand +years +and +a thousand +years +like +day +one +Not +does delay +the Lord +the +promise +as +some +slowness +esteem +but +is patient +toward +you +willing +not +[for] any +to perish +but +all +to +repentance +to come +however +Will come +[the] day +of [the] Lord +like +a thief +in +which +the +heavens +with a roar +will pass away +then +elements +burning with heat +will be dissolved +and +[the] earth +and +the +in +it +works +will be found +in this way +These things +all +being dissolved +ought +what kind +to be +you +In +holy +conduct +and +godliness +expecting +and +hastening +the +coming +of the +- +of God +day +by reason of +which +[the] heavens +being set on fire +will be dissolved +and +[the] elements +burning with heat +are melting +however +New +heavens +and +earth +a new +according to +the +promise +of Him +we are awaiting +in +which +righteousness +dwells +Therefore +beloved +these things +expecting +be diligent +without spot +and +without blemish +by Him +to be found +in +peace +And +the +of the +Lord +of us +patience +[as] salvation +esteem +just as +also +- +beloved +of us +brother +Paul +according to +the +having been given +to him +wisdom +wrote +to you +as +also +in +all +letters +speaking +in +them +concerning +these things +among +which +are +difficult to be understood +some things +which +the +ignorant +and +unestablished +distort +as +also +the +other +Scriptures +to +the +own +of them +destruction +therefore +beloved +You +knowing [this] beforehand +beware +that +not +by the +of the +lawless +error +having been led away +you should fall from +the +own +steadfastness +however +Grow +in +grace +and +in knowledge +of the +Lord +of us +and +Savior +Jesus +Christ +To Him [be] +the +glory +both +now +and +to +[the] day +of eternity +That which +was +from +[the] beginning +that which +we have heard +that which +we have seen +with the +eyes +of us +that which +we have gazed upon +and +the +hands +of us +have handled +concerning +the +Word +- +of life +and +the +life +was made manifest +and +we have seen +and +bear witness +and +we proclaim +to you +the +life +- +eternal +which +was +with +the +Father +and +was revealed +to us +that which +we have seen +and +have heard +we proclaim +also +to you +so that +also +you +fellowship +may have +with +us +now +Indeed +the +fellowship +- +of us +[is] with +the +Father +and +with +the +Son +of Him +Jesus +Christ +And +these things +write +we +so that +the +joy +of us +might be +complete +And +is +this +the +message +that +we have heard +from +Him +and +we preach +to you +that +- +God +light +is +and +in +Him +not +is +darkness +none +If +we should say +that +fellowship +we have +with +Him +and yet +in +the +darkness +should walk +we lie +and +not +do practice +the +truth +however +If +in +the +light +we should walk +as +He +is +in +the +light +fellowship +we have +with +one another +and +the +blood +of Jesus +the +Son +of Him +cleanses +us +from +all +sin +If +we should say +that +sin +not +we have +ourselves +we deceive +and +the +truth +not +is +in +us +If +we should confess +the +sins +of us +He is +faithful +and +just +that +He may forgive +us +[our] +sins +and +might cleanse +us +from +all +unrighteousness +If +we should say +that +not +we have sinned +a liar +we make +Him +and +the +word +of Him +not +is +in +us +Little children +of me +these things +I am writing +to you +so that +not +you might sin +And +if +anyone +should sin +we have +with +the +Father +an advocate +Jesus +Christ +[the] Righteous [One] +And +He +[the] propitiation +is +for +the +sins +of us +and +not +for +the +of ours +only +but +also +for +all +the +world +And +by +this +we know +that +we have come to know +Him +if +the +commandments +of Him +we should keep +The [one] +saying +- +I have known +Him +and +the +commandments +of Him +not +keeping +a liar +he is +and +in +him +the +truth +not +is +however +- +Whoever +may keep +His +- +word +truly +in +him +the +love +- +of God +has been perfected +By +this +we know +that +in +Him +we are +The [one] +claiming +in +Him +to abide +just as +that +walk +ought +also +He +in the same way +walked +Beloved +I am writing +to you +not +a commandment +new +but +a commandment +old +which +you have had +from +[the] beginning +The +commandment +- +old +is +the +word +that +you have heard +Again +a commandment +new +I am writing +to you +which +is +true +in +Him +and +in +you +because +the +darkness +is passing away +and +the +light +- +true +already +shines +The [one] +claiming +in +the +light +to be +and +the +brother +of him +hating +in +the +darkness +is +even until +now +The [one] +loving +the +brother +of him +in +the +light +abides +and +cause for stumbling +in +him +not +there is +however +The [one] +hating +the +brother +of him +in +the +darkness +is +and +in +the +darkness +walks +and +not +does he know +where +he is going +because +the +darkness +has blinded +the +eyes +of him +little children +I am writing +to you +because +have been forgiven +your +- +sins +for the sake of +the +name +of Him +fathers +I am writing +to you +because +you have known +Him who [is] +from +[the] beginning +young men +I am writing +to you +because +you have overcome +the +evil [one] +little children +I have written +to you +because +you know +the +Father +fathers +I have written +to you +because +you know +Him who [is] +from +[the] beginning +young men +I have written +to you +because +strong +you are +and +the +word +- +of God +in +you +abides +and +you have overcome +the +evil [one] +Not +love +the +world +nor +the things +in +the +world +If +anyone +should love +the +world +not +is +the +love +of the +Father +in +him +because +not +all +that [is] +in +the +world +the +desire +of the +flesh +and +the +desire +of the +eyes +and +the +vaunting +of +life +is +from +the +Father +but +from +the +world +is +And +is passing away +the +world +and +the +desire +of it +however +the [one] +doing +the +will +- +of God +abides +to +the +age +Little children +[the] last +hour +it is +and +as +you have heard +that +antichrist +is coming +even +now +antichrists +many +have arisen +whereby +we know +that +[the] last +hour +it is +From among +us +they went out +but +not +they were +of +us +for +if +of +us +they had been +- +they would have remained +with +us +But +[it is] so that +it might be made manifest +that +not +they are +all +of +us +And +you +[the] anointing +have +from +the +Holy [One] +and +know you +all +I have written +to you +Not +because +not +you know +the +truth +but +because +you know +it +and +because +any +lie +of +the +truth +not +is +Who +is +the +liar +if +not +the [one] +denying +that +Jesus +not +is +the +Christ +This +is +the +antichrist +the [one] +denying +the +Father +and +the +Son +Everyone +- +denying +the +Son +neither +the +Father +has he +The [one] +confessing +the +Son +also +the +Father +has +You +what +you have heard +from +[the] beginning +in +you +let it abide +If +in +you +should abide +what +from +[the] beginning +you have heard +also +you +in +the +Son +and +in +the +Father +will abide +And +this +is +the +promise +that +He +promised +us +- +life +- +eternal +These things +I have written +to you +concerning +those +leading astray +you +And +you +the +anointing +that +you received +from +Him +abides +in +you +and +not +need +you have +that +anyone +should teach +you +But +just as +the +same +anointing +teaches +you +concerning +all things +and +true +is +and +not +is +a lie +and +just as +it has taught +you +you shall abide +in +Him +And +little children +now +abide +in +Him +so that +when +He appears +we might have +boldness +and +not +be ashamed +before +Him +at +the +coming +of Him +If +you know +that +righteous +He is +you know +that +also +everyone +- +practicing +- +righteousness +of +Him +has been begotten +Behold +what +love +has given +to us +the +Father +that +children +of God +we should be called +and +we are +Because of +this +the +world +not +knows +us +because +not +it knew +Him +Beloved +now +children +of God +are we +and +not yet +has been revealed +what +we will be +We know +that +when +He appears +like +Him +we will be +for +we will see +Him +as +He is +And +everyone +- +having +the +hope +this +in +Him +purifies +himself +just as +He +pure +is +Everyone +- +committing +- +sin +also +- +lawlessness +commits +and +- +sin +is +- +lawlessness +And +you know +that +He +appeared +so that +- +sins +He might take away +and +sin +in +Him +not +there is +Anyone +- +in +Him +abiding +not +sins +anyone +- +sinning +not +has seen +Him +nor +has he known +Him +Little children +no one +let lead astray +you +the [one] +practicing +- +righteousness +righteous +is +just as +He +righteous +is +The [one] +practicing +- +sin +of +the +devil +is +because +from +[the] beginning +the +devil +has been sinning +For +this [reason] +was revealed +the +Son +- +of God +so that +He might destroy +the +works +of the +devil +Anyone +- +having been born +of +- +God +sin +not +practices +because +seed +of Him +in +him +abides +and +not +he is able +to continue sinning +because +of +- +God +he has been born +Through +this +manifest +are +the +children +- +of God +and +the +children +of the +devil +Anyone +- +not +practicing +righteousness +not +is +of +- +God +and also +the [one] +not +loving +the +brother +of him +For +this +is +the +message +that +you have heard +from +[the] beginning +that +we should love +one another +not +as +Cain +[who] of +the +evil [one] +was +and +slew +the +brother +of him +And +because of +what +he slayed +him +Because +the +works +of him +evil +were +however +those +of the +brother +of him +righteous +brothers +not +be surprised +if +hates +you +the +world +We +know +that +we have passed +from +- +death +to +- +life +because +we love +[our] +brothers +The [one] +not +loving +abides +in +- +death +Everyone +- +hating +the +brother +of him +a murderer +is +and +you know +that +any +murderer +not +has +life +eternal +in +him +abiding +By +this +we have known +- +love +because +He +for +us +the +life +of Him +laid down +and +we +ought +for +[our] +brothers +[our] +lives +to lay down +now +- +Whoever +might have +the +goods +of the +world +and +might see +the +brother +of him +need +having +and +might close up +the +heart +of him +from +him +how +the +love +- +of God +abides +in +him +Little children +we should love +not +in word +nor +in +tongue +but +in +action +and +in truth +by +this +we will know +that +of +the +truth +we are +and +before +Him +we will assure +the +heart +of us +that +if +should condemn [us] +our +- +heart +that +greater than +is +- +God +the +heart +of us +and +He knows +all things +Beloved +if +the +heart +not +should condemn [us] +confidence +we have +toward +- +God +and +if +whatever +we might ask +we receive +from +Him +because +the +commandments +of Him +we keep +and +the things +pleasing +before +Him +we do +And +this +is +the +commandment +of Him +that +we should believe +in the +name +the +Son +of Him +Jesus +Christ +and +we should love +one another +just as +He gave +[the] commandment +to us +And +the [one] +keeping +the +commandments +of Him +in +Him +abides +and +He +in +him +And +by +this +we know +that +He abides +in +us +by +the +Spirit +whom +to us +He has given +Beloved +not +every +spirit +believe +but +test +the +spirits +whether +of +- +God +they are +because +many +false prophets +have gone out +into +the +world +By +this +you know +the +Spirit +- +of God +Every +spirit +that +confesses +Jesus +Christ +in +[the] flesh +having come +of +- +God +is +and +any +spirit +that +not +confesses +- +Jesus +from +- +God +not +is +And +this +is +that +of the +antichrist +which +you heard +that +is coming +and +now +in +the +world +is +already +little children +You +from +- +God +are +and +have overcome +them +because +greater +is +the [One] +in +you +than +the [one] +in +the +world +They +of +the +world +are +because of +this +from out +of the +world +they speak +and +the +world +them +listens to +We +of +- +God +are +The [one] +knowing +- +God +listens to +us +He who +not +is +from +- +God +not +listens to +us +By +this +we know +the +Spirit +- +of truth +and +the +spirit +- +of falsehood +Beloved +we should love +one another +because +- +love +from +- +God +is +and +everyone +- +loving +from +- +God +has been born +and +knows +- +God +The [one] +not +loving +not +has known +- +God +because +- +God +love +is +In +this +has been revealed +the +love +- +of God +among +us +that +the +Son +of Him +the +one and only +has sent +- +God +into +the +world +so that +we might live +through +Him +In +this +is +- +love +not +that +we +loved +- +God +but +that +He +loved +us +and +sent +the +Son +of Him +[as] a propitiation +for +the +sins +of us +Beloved +if +so +- +God +loved +us +also +we +ought +one another +to love +God +no one +at any time +has seen +if +we should love +one another +- +God +in +us +abides +and +the +love +of Him +in +us +having been perfected +is +By +this +we know +that +in +Him +we abide +and +He +in +us +because +from out +the +Spirit +of Him +He has given +to us +And +we +have seen +and +testify +that +the +Father +has sent +the +Son [as] +Savior +of the +world +if +Whoever +shall confess +that +Jesus +is +the +Son +- +of God +- +God +in +him +abides +and +he +in +- +God +And +we +have come to know +and +have come to believe +the +love +that +has +- +God +as to +us +- +God +love +is +and +the [one] +abiding +in +- +love +in +- +God +abides +and +- +God +in +him +abides +In +this +has been perfected +- +love +with +us +so that +confidence +we may have +in +the +day +- +of judgment +that +just as +He +is +also +we +are +in +the +world +this +Fear +no +there is +in +- +love +but +- +perfect +love +out +casts +- +fear +because +the +fear +punishment +has +now +the [one] +fearing +not +has been perfected +in +- +love +We +love +because +He +first +loved +us +If +anyone +should say +- +I love +- +God +and +the +brother +of him +should hate +a liar +he is +for +The [one] +not +loving +the +brother +of him +whom +he has seen +not +is he able +- +God +whom +not +he has seen +to love +And +this +the +commandment +we have +from +Him +that +the [one] +loving +- +God +should love +also +the +brother +of him +Everyone +- +believing +that +Jesus +is +the +Christ +of +- +God +has been born +and +everyone +- +loving +the [One] +having begotten [Him] +loves +the [one] +having been begotten +from +Him +By +this +we know +that +we love +the +children +- +of God +when +- +God +we love +and +the +commandments +of Him +keep +for +This +is +the +love +- +of God +that +the +commandments +of Him +we should keep +and +the +commandments +of Him +burdensome +not +are +For +everyone +- +having been born +of +- +God +overcomes +the +world +and +this +is +the +victory +- +having overcome +the +world +the +faith +of us +Who +is +the [one] +overcoming +the +world +if +not +the [one] +believing +that +Jesus +is +the +Son +- +of God +This +is +the [One] +having come +by +water +and +blood +Jesus +Christ +not +by +- +water +only +but +by +- +water +and +by +- +blood +And +the +Spirit +is +the [One] +testifying +because +the +Spirit +is +the +truth +For +three +there are +- +bearing testimony +the +Spirit +and +the +water +and +the +blood +and +these +three +in +- +one +are +If +the +testimony +- +of men +we receive +the +testimony +- +of God +greater +is +For +this +is +the +testimony +- +of God +that +He has testified +concerning +the +Son +of Him +The [one] +believing +in +the +Son +- +of God +has +the +testimony +in +himself +The [one] +not +believing +- +God +a liar +has made +Him +because +not +he has believed +in +the +testimony +that +has testified +- +God +concerning +the +Son +Him +And +this +is +the +testimony +that +life +eternal +has given +- +God +to us +and +this +the +life +in +the +Son +His +is +The [one] +having +the +Son +has +- +life +the [one] +not +having +the +Son +- +of God +- +life +not +has +These things +have I written +to you +to those +believing +in +the +name +of the +Son +- +of God +so that +you may know +that +life +eternal +you have +And +this +is +the +confidence +that +we have +toward +Him +that +if +anything +we might ask +according to +the +will +of Him +He hears +us +And +if +we know +that +He hears +us +if +whatever +we might ask +we know +that +we have +the +requests +that +we have asked +from +Him +If +anyone +should see +the +brother +of him +sinning +a sin +not +unto +death +he shall ask +and +He will give +life +him +to those +sinning +not +unto +death +There is +a sin +unto +death +not +concerning +that +do I say +that +he should implore +All +unrighteousness +sin +is +and +there is +sin +not +unto +death +We know +that +everyone +- +having been born +of +- +God +not +continues to sin +but +the [One] +having been begotten +of +- +God +protects +him +and +the +evil [one] +not +does touch +him +We know +that +of +- +God +we are +and +the +world +whole +in +the +evil [one] +lies +now +We know +that +the +Son +- +of God +is come +and +has given +us +understanding +so that +we may know +Him who [is] +true +and +we are +in +Him who [is] +true +in +the +Son +of Him +Jesus +Christ +He +is +the +true +God +and +life +eternal +Little children +keep +yourselves +from +- +idols +The +elder +To [the] elect +lady +and +the +children +of her +whom +love +in +truth +I +and +not +I +only +but +also +all +those +having known +the +truth +because of +the +truth +- +abiding +in +us +and +with +us +that will be +to +the +age +Will be +with +us +grace +mercy +[and] peace +from +God +[the] Father +and +from +Jesus +Christ +the +Son +of the +Father +in +truth +and +love +I rejoiced +exceedingly +that +I have found +[some] of +the +children +of you +walking +in +truth +just as +commandment +we received +from +the +Father +And +lady +now +I implore +you +I am writing +to you +not +as +a commandment +new +but +that which +we have had +from +[the] beginning +that +we should love +one another +And +this +is +- +love +that +we should walk +according to +the +commandments +of Him +This +the +commandment +is +just as +you have heard +from +[the] beginning +so that +in +it +you should walk +For +have entered +into +the +world +many +deceivers +those +not +confessing +Jesus +Christ +coming +in +flesh +This +is +the +deceiver +and +the +antichrist +Watch +yourselves +so that +not +you should lose +what things +we have worked for +but +a reward +full +you may receive +Anyone +- +going on ahead +and +not +abiding +in +the +teaching +- +of Christ +God +not +has +The [one] +abiding +in +the +teaching +this [one] +both +the +Father +and +the +Son +has +If +anyone +comes +to +you +and +this +- +teaching +not +does bring +not +receive +him +into +[the] house +and +to rejoice +him +not +tell +for +the [one] +telling +him +to rejoice +partakes +in the +works +of him +- +evil +having +Many things +to you +to write +not +I purposed +with +paper +and +ink +but +I hope +to come +to +you +and +mouth +to +mouth +to speak +so that +the +joy +of us +having been completed +may be +Greet +you +the +children +of the +sister +of you +- +elect +The +elder +To Gaius +the +beloved +whom +I +love +in +truth +Beloved +concerning +all things +I pray +you +to prosper +and +to be in good health +just as +prospers +your +- +soul +for +I rejoiced +exceedingly +coming +of [the] brothers +and +bearing witness +of your +- +truth +just as +you +in +truth +are walking +Greater +joy +than these things +not +I have +that +I should hear of +- +my +children +in +the +truth +walking +Beloved +faithfully +you are doing +if +whatever +you might have done +toward +the +brothers +and +they are +strangers +who +testified +of your +- +love +before +[the] church +whom +well +you will do +having set forward +worthily +- +of God +for +On behalf +of the +name +they went forth +nothing +accepting +from +the +Gentiles +therefore +We +ought +to receive +- +such [men] +so that +fellow workers +we may be +in the +truth +I have written +something +to the +church +but +the [one] +loving to be first +among them +Diotrephes +not +welcomes +us +Because of +this +if +I might come +I will bring to remembrance +of him +the +works +which +he is doing +with words +evil +prating against +us +and +not +being satisfied +with +these +neither +himself +he receives +the +brothers +and +those +purposing +he forbids +and +from +the +church +he casts [them] out +Beloved +not +do imitate +what [is] +evil +but +what [is] +good +The [one] +doing good +of +- +God +is +the [one] +doing evil +not +has seen +- +God +To Demetrius +witness has been given +by +all +and +by +itself +the +truth +also +and +we +bear witness +and +you know +that +the +testimony +of us +true +is +I had +Many things +to write +to you +but +not +I desire +with +ink +and +pen +to you +to write +however +I hope +soon +you +to see +and +mouth +to +mouth +we will speak +Peace +to you +Greet +you +the +friends +Greet +the +friends +by + +Jude +of Jesus +Christ +servant +then +brother +of James +To those +in +God +[the] Father +having been loved +and +in Jesus +Christ +having been kept +called +to you +Mercy +and +peace +and +love +be multiplied +Beloved +all +diligence +using +to write +to you +concerning +- +common +of us +salvation +necessity +I had +to write +to you +exhorting [you] +to contend earnestly +for the +once for all +having been delivered +to the +saints +faith +for +Came in stealthily +certain +men +those +long ago +having been designated +unto +this +- +condemnation +ungodly [ones] +the +of the +God +of us +grace +changing +into +sensuality +and +the +only +master +and +Lord +of us +Jesus +Christ +denying +now +I want +having known +at one time +all this +To remind +you +that +Jesus +a people +out of +[the] land +of Egypt +having saved +- +afterward +those +not +having believed +He destroyed +both +[The] angels +- +not +having kept +[own] +their +domain +but +having left +the +own +dwelling +unto +[the] judgment +of [the] great +day +in chains +eternal +under +darkness +He keeps +just as +Sodom +and +Gomorrah +and +the +around +them +cities +- +in like +manner +with them +having indulged in sexual immorality +and +having gone +after +flesh +strange +are set forth as +an example +of fire +eternal +[the] penalty +undergoing +yet +Likewise +also +these +dreaming [ones] +indeed +[the] flesh +defile +then +authority +set aside +and +glorious [ones] +blaspheme +But +when +with the +devil +disputing +he was reasoning +about +- +Moses’ +body +not +- +Michael +the +archangel +did dare +a judgment +blasphemous +to bring against [him] +but +said +Rebuke +you +[the] Lord +however +indeed +These +whatever things +not +they have seen +they speak evil of +then +whatever things +naturally +as +the +irrational +animals +they understand +in +these things +they corrupt themselves +Woe +to them +because +in the +way +- +of Cain +they went +and +to the +error +- +of Balaam +for reward +they rushed +and +in the +rebellion +- +of Korah +they perished +These +are +the ones +in +the +love feasts +of you +hidden reefs +feasting together [with you] +fearlessly +themselves +shepherding +clouds +without water +by +winds +being carried about +trees +autumnal +without fruit +twice +having died +having been uprooted +waves +wild +of [the] sea +foaming out +- +of their +shame +stars +wandering +to whom +the +gloom +- +of darkness +to +[the] age +has been reserved +then +Prophesied +also +as to these +[the] seventh +from +Adam +Enoch +saying +Behold +has come +[the] Lord +amidst +holy [ones] +myriads +of His +to execute +judgment +against +all +and +to convict +all +the +ungodly +concerning +all +the +works +of ungodliness +of them +which +they have done in an ungodly way +and +concerning +all +the +harsh [things] +that +have spoken +against +Him +sinners +ungodly +These +are +grumblers +discontented +after +the +lusts +own +following +and +the +mouth +of them +speaks +great swelling [words] +flattering +faces +profit +for the sake of +however +beloved +You +remember +the +words +- +having been spoken beforehand +by +the +apostles +of the +Lord +of us +Jesus +Christ +that +they were saying +to you +In +[the] last +- +time +there will be +scoffers +following +after +- +their own +passions +- +of ungodlinesses +These +are +those +causing divisions +worldly-minded +[the] Spirit +not +having +however +beloved +You +building up +yourselves +in the +most holy +of you +faith +in +[the] Spirit +Holy +praying +yourselves +in +[the] love +of God +keep +awaiting +the +mercy +of the +Lord +of us +Jesus +Christ +unto +life +eternal +And +indeed +those who +are doubting +have mercy on +save +out of +[the] fire +snatching +then +to others +show mercy +with +fear +hating +even +the +by +the +flesh +having been stained +clothing +now +To Him +being able +to keep +you +from stumbling +and +to present [you] +in the presence of +the +glory +of Him +blameless +with +exultation +to [the] only +God +Savior +of us +through +Jesus +Christ +the +Lord +of us +[be] glory +majesty +dominion +and +authority +before +all +- +time +and +now +and +to +all +the +ages +Amen +[The] revelation +of Jesus +Christ +which +gave +Him +- +God +to show +to the +bond-servants +of Him +what things +to take place +in +quickness +it behooves +And +He signified [it] +having sent +through +the +angel +of Him +to the +servant +of Him +John +who +testified +to the +word +- +of God +and +to the +testimony +of Jesus +Christ +as much as +he saw +Blessed [is] +the [one] +reading +and +those +hearing +the +words +of the +prophecy +and +keeping +the things +in +it +having been written +for +- +the time [is] +near +John +To the +seven +churches +- +in +- +Asia +Grace +and +peace +to you +from +Him +being +and +who +was +and +who +is coming +and +from +the +seven +Spirits +- +before +the +throne +of Him +and +from +Jesus +Christ +the +witness +- +faithful +the +firstborn +of the +dead +and +the +ruler +of the +kings +of the +earth +To the [One] +loving +us +and +releasing +us +from +the +sins +of us +through +the +blood +of Him +and +He has made +us +a kingdom +priests +to the +God +and +Father +of Him +to Him [be] +the +glory +and +the +dominion +to +the +ages +of the +ages +Amen +Behold +He is coming +with +the +clouds +and +will see +Him +every +eye +and +those who +Him +pierced +and +will wail +because of +Him +all +the +tribes +of the +earth +Yes +Amen +I +am +the +Alpha +and +the +Omega +says +Lord +- +God +the [One] +being +and +who +was +and +who +is coming +the +Almighty +I +John +the +brother +of you +and +fellow-partaker +in +the +tribulation +and +kingdom +and +endurance +in +Jesus +was +in +the +island +- +called +Patmos +on account of +the +word +- +of God +and +the +testimony +of Jesus +I was +in +[the] Spirit +on +the +Lord’s +day +and +I heard +behind +me +a voice +loud +like that +of a trumpet +saying +What +you see +write +in +a book +and +send +to the +seven +churches +to +Ephesus +and +to +Smyrna +and +to +Pergamum +and +to +Thyatira +and +to +Sardis +and +to +Philadelphia +and +to +Laodicea +And +I turned +to see +the +voice +that +was speaking +with +me +And +having turned +I saw +seven +lampstands +golden +and +in +[the] midst +of the +lampstands +[One] like +[the] Son +of Man +having been clothed +to the feet +and +having been girded about +at +the +breasts +with a sash +golden +And +- +the head +of Him +and +the +hairs +[are] white +as if +wool +white +as +snow +and +the +eyes +of Him +[are] like +a flame +of fire +and +the +feet +of Him +[are] like +fine bronze +as +in +a furnace +having been refined +and +the +voice +of Him +[is] like +[the] voice +of waters +many +and +He is holding +in +the +right +hand +of Him +stars +seven +and +out of +the +mouth +of Him +a sword +two-edged +sharp +is going forth +and +the +face +of Him +[is] like +the +sun +shining +in +the +full strength +of it +And +when +I saw +Him +I fell +at +the +feet +of Him +as though +dead +And +He placed +the +right hand +of Him +upon +me +saying +Not +fear +I +am +the +First +and +the +Last +and +the +Living [One] +and +I was +dead +and +behold +living +I am +to +the +ages +of the +ages +and +I have +the +keys +of +Death +and +of +Hades +therefore +Write +the things that +you have seen +and +the things that +are +and +the things that +are about +to take place +after +these +the +mystery +of the +seven +stars +which +you saw +on +the +right hand +of Me +and +the +seven +lampstands +- +golden +The +seven +stars +[the] angels +of the +seven +churches +are +and +the +lampstands +- +seven +[the] seven +churches +are +To the +messenger +of the +in +Ephesus +church +write +These things +says +the [One] +holding +the +seven +stars +in +the +right hand +of Him +- +walking +in +[the] midst +of the +seven +lampstands +- +golden +I know +the +works +of you +and +the +labor +and +- +endurance +of you +and +that +not +you are able +to tolerate +evil [ones] +And +you have tested +those +claiming +to be +apostles +and +not +are +and +you have found +them +false +And +perseverance +you have +and +have endured +for the sake of +the +name +of Me +and +not +have grown weary +But +I have +against +you +that +the +love +of you +- +first +you have abandoned +therefore +Remember +from where +you have fallen +and +repent +and +the +first +works +do +however +If +not +I am coming +to you +and +I will remove +the +lampstand +of you +out of +the +place +of it +if +not +you should repent +But +this +you have +that +you hate +the +works +of the +Nicolaitans +which +I also +hate +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +To the [one] +overcoming +I will give +to him +to eat +of +the +tree +- +of life +which +is +in +the +paradise +- +of God +And +to the +messenger +of +in +Smyrna +the church +write +These things +says +the +First +and +the +Last +who +became +dead +and +came to life +I know +your +- +tribulation +and +- +poverty +but +rich +you are +and +the +slander +of +those +claiming +Jews +to be +themselves +and +not +are +but +a synagogue +- +of Satan +Not +fear +what +to suffer +you are about +Behold +is about +the +devil +to cast +[some] of +you +into +prison +so that +you might be tested +and +you shall have +tribulation +days +ten +Be +faithful +unto +death +and +I will give +to you +the +crown +- +of life +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +The [one] +overcoming +no +not +shall be injured +by +the +death +- +second +And +to +[the] messenger +of the +in +Pergamum +church +write +These things +says +the [One] +having +the +sword +- +two-edged +- +sharp +I know +where +you dwell +where +the +throne +- +of Satan [is] +and +you hold fast to +the +name +of Me +and +not +you have denied +the +faith +of Me +even +in +the +days +of Antipas +the +witness +of Me +the +faithful [one] +of Me +who +was killed +among +you +where +- +Satan +dwells +But +I have +against +you +a few things +because +you have +[some] there +holding +the +teaching +of Balaam +who +would teach +- +Balak +to cast +a snare +before +the +sons +of Israel +to eat +things sacrificed to idols +and +to commit sexual immorality +So +have +also +you +[some] holding +the +teaching +of the +Nicolaitans +likewise +therefore +Repent +however +If +not +I am coming +to you +quickly +and +I will make war +against +them +with +the +sword +of the +mouth +of Me +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +The [one] +overcoming +I will give +to him +the +manna +- +having been hidden +and +I will give +to him +stone +white +and +on +the +stone +having been written +a name +new +which +no one +has known +if +not +the [one] +receiving [it] +And +to +[the] messenger +of the +in +Thyatira +church +write +These things +says +the +Son +- +of God +the [One] +having +the +eyes +of Him +like +a flame +of fire +and +the +feet +of Him +like +burnished bronze +I know +your +- +works +and +- +love +and +- +faith +and +- +service +and +the +perseverance +of you +and +the +works +of you +the +latter +[are] greater +than the +first +But +I have +against +you +that +you tolerate +the +woman +Jezebel +the [one] +calling +herself +a prophetess +and +teaching +and +misleading +- +My +servants +to commit sexual immorality +and +to eat +things sacrificed to idols +And +I have given +her +time +that +she might repent +and +not +she is willing +to repent +of +the +sexual immorality +of her +Behold +I will cast +her +into +a sickbed +and +those +committing adultery +with +her +into +tribulation +great +if +not +they shall repent +of +the +deeds +of her +And +the +children +of her +I will kill +with +death +and +will know +all +the +churches +that +I +am +the [One] +searching +affections +and +hearts +and +I will give +of you +to each +according to +the +works +of you +however +I say +To you +to [the] +rest +of those +in +Thyatira +as many as +not +have +the +teaching +this +who +not +have known +the +depths +- +of Satan +as +they say +Not +I will cast +upon +you +any other +burden +But +to what +you have +hold fast +until +- +which [time] +I might come +And +the [one] +overcoming +and +- +keeping +until +[the] end +the +works +of Me +I will give +to him +authority +over +the +nations +and +he will shepherd +them +with +a rod +of iron +as +the +vessels [of] +the +potter +are broken in pieces +just as +I also +have received +from +the +Father +of Me +And +I will give +to him +the +star +- +morning +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +And +to the +messenger +of the +in +Sardis +church +write +These things +says +the [One] +having +the +seven +Spirits +- +of God +and +the +seven +stars +I know +your +- +deeds +that +[the] characterization +you have +that +you are alive +and yet +dead +you are +Be +watching +and +strengthen +the things +that remain +which +are about +to die +for +not +I have found +your +works +having been completed +in the sight of +the +God +of Me +therefore +Remember +what +you have received +and +heard +and +keep [it] +and +repent +therefore +If +not +you shall watch +I will come +like +a thief +and +no +not +shall you know +at what +hour +I will come +upon +you +But +you have +a few +people +in +Sardis +who +not +have soiled +the +garments +of them +and +they will walk +with +Me +in +white +because +worthy +they are +The [one] +overcoming +thus +will be clothed +in +garments +white +And +no +not +will I blot out +the +name +of him +from +the +book +- +of life +and +I will confess +the +name +of him +before +the +Father +of Me +and +before +the +angels +of Him +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +And +to +[the] messenger +of the +in +Philadelphia +church +write +These things +says +the +Holy [One] +the +True [One] +- +having +the +key +of David +the [One] +opening +and +no one +will shut +and +shutting +and +no one +opens +I know +your +- +deeds +Behold +I have set +before +you +a door +having been opened +which +it +to shut +no one +is able +because +little +power +you have +and yet +you have kept +My +- +word +and +not +have denied +the +name +of Me +Behold +I give +[those] from +the +synagogue +- +of Satan +those +declaring +themselves +Jews +to be +and +not +are +but +they lie +behold +I will cause +them +that +they will come +and +will worship +before +the +feet +of you +and +they shall know +that +I +have loved +you +Because +you have kept +the +word +of the +patient endurance +of Me +I also +you +will keep +out of +the +hour +of the +trial +- +being about +to come +upon +the +inhabited world +whole +to try +those +dwelling +upon +the +earth +I am coming +quickly +Hold fast +to what +you have +so that +no one +may take +the +crown +of you +The [one] +overcoming +I will make +him +a pillar +in +the +temple +of the +God +of Me +and +out +no +not +shall he go +anymore +And +I will write +upon +him +the +name +of the +God +of Me +and +the +name +of the +city +of the +God +of Me +the +new +Jerusalem +- +coming down +out of +- +heaven +from +the +God +of Me +and +the +name +of Me +- +new +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +And +to the +messenger +of the +in +Laodicea +church +write +These things +says +the +Amen +the +Witness +- +faithful +and +true +the +Beginning +of the +creation +- +of God +I know +your +- +works +that +you are +neither +cold +nor +hot +I wish +you would be +cold +or +hot +So +because +lukewarm +you are +and +neither +hot +nor +cold +I am about +you +to spit +out of +the +mouth +of Me +For +you say +- +Rich +I am +and +I have grown rich +and +of nothing +need +I have +And +not +do you realize +that +you +are +- +wretched +and +miserable +and +poor +and +blind +and +naked +I counsel +you +to buy +from +Me +gold +having been refined +by +fire +so that +you may be rich +and +garments +white +so that +you may be clothed +and +not +might be made manifest +the +shame +of the +nakedness +of you +and +eye-salve +to anoint +the +eyes +of you +so that +you may see +I +if +as many as +might love +I rebuke +and +discipline +therefore +be zealous +and +repent +Behold +I stand +at +the +door +and +knock +If +anyone +should hear +the +voice +of Me +and +open +the +door +I will come in +to +him +and +will dine +with +him +and +he +with +Me +The [one] +overcoming +I will give +to him +to sit +with +Me +on +the +throne +of Me +as +I also +overcame +and +sat down +with +the +Father +of Me +on +the +throne +of Him +The [one] +having +an ear +let him hear +what +the +Spirit +says +to the +churches +After +these things +I looked +and +behold +a door +was standing open +in +- +heaven +and +the +voice +- +first +that +I heard +like +a trumpet +was speaking +with +me +saying +Come up +here +and +I will show +to you +what +to take place +after +these things +it behooves +Immediately +I was +in +[the] Spirit +and +behold +a throne +was set +in +- +heaven +and +upon +the +throne +[One] sitting +and +the [One] +sitting +[was] like +in appearance +stone +jasper +and +sardius +And +a rainbow +[was] around +the +throne +like +in appearance +an emerald +And +around +the +throne +thrones +[were] twenty +four +and +on +the +thrones +twenty +four +elders +sitting +having been clothed +in +garments +white +and +on +the +heads +of them +crowns +golden +And +out of +the +throne +come +flashes of lightning +and +voices +and +thunderings +And +[there were] seven +lamps +of fire +burning +before +the +throne +which +are +the +seven +Spirits +- +of God +And +before +the +throne +[was something] like +a sea +of glass +like +crystal +And +in +[the] midst +of the +throne +and +around +the +throne +[were] four +living creatures +being full +of eyes +in front +and +behind +And +the +living creature +- +first +[was] like +a lion +and +the +second +living creature +like +a calf +and +the +third +living creature +having +the +face +as +of a man +and +the +fourth +living creature +like +an eagle +flying +And +the +four +living creatures +one +for +one +of them +had +respectively +wings +six +all around +and +within +full +of eyes +and +rest +not +they have +day +and +night +saying +Holy +Holy +Holy +Lord +- +God +- +Almighty +the [One] +having been +and +the [One] +being +and +the [One] +coming +And +whenever +will give +the +living creatures +glory +and +honor +and +thanksgiving +to the [One] +sitting +upon +the +throne +the [One] +living +to +the +ages +of the +ages +will fall +the +twenty +four +elders +before +the [One] +sitting +upon +the +throne +and +they will worship +the [One] +living +to +the +ages +of the +ages +and +they will cast +the +crowns +of them +before +the +throne +saying +the +Lord +and +- +God +of us +Worthy +are You +to receive +- +glory +and +- +honor +and +- +power +for +You +created +- +all things +and +because of +the +will +of You +they existed +and +were created +And +I saw +on +the +right hand +of the [One] +sitting +upon +the +throne +a scroll +having been written +inside +and +on [the] back +having been sealed +with seals +seven +And +I saw +an angel +strong +proclaiming +in +a voice +loud +Who is +worthy +to open +the +scroll +and +to break +the +seals +of it +And +was able +no one +in +- +heaven +nor +upon +the +earth +nor +under +the +earth +to open +the +scroll +nor +to see +it +And +was weeping +loudly +because +no one +worthy +was found +to open +the +scroll +nor +to see +it +And +one +of +the +elders +says +to me +Not +do weep +Behold +has overcome +the +Lion +- +of +the +tribe +of Judah +the +root +of David +to open +the +scroll +and +the +seven +seals +of it +And +I saw +in +[the] midst +of the +throne +and +of the +four +living creatures +and +in +[the] midst +of the +elders +a Lamb +standing +as +having been slain +having +horns +seven +and +eyes +seven +which +are +the +seven +Spirits +- +of God +having been sent out +into +all +the +earth +And +He came +and +took [it] +out of +the +right hand +of the [One] +sitting +on +the +throne +And +when +He had taken +the +scroll +the +four +living creatures +and +the +twenty +four +elders +fell down +before +the +Lamb +having +each +a harp +and +bowls +golden +being full +of incenses +which +are +the +prayers +of the +saints +And +they are singing +a song +new +saying +Worthy +are You +to take +the +scroll +and +to open +the +seals +of it +because +You were slain +and +You purchased +- +to God +by +the +blood +of You +out of +every +tribe +and +tongue +and +people +and +nation +and +You have made +them +to the +God +of us +a kingdom +and +priests +and +they will reign +upon +the +earth +And +I looked +and +I heard +[the] voice +of angels +many +around +the +throne +and +of the +living creatures +and +of the +elders +and +was +the +number +of them +myriads +of myriads +and +thousands +of thousands +saying +in a voice +loud +Worthy +is +the +Lamb +- +having been slain +to receive +the +power +and +riches +and +wisdom +and +strength +and +honor +and +glory +and +blessing +And +every +creature +which +in +- +heaven +and +upon +the +earth +and +under +the +earth +and +on +the +sea +is +and +- +in +them +everything +saying +I heard +To the [One] +sitting +on +the +throne +and +to the +Lamb +- +blessing +and +- +honor +and +- +glory +and +- +might +to +the +ages +of the +ages +And +the +four +living creatures +kept saying +Amen +And +the +elders +fell down +and +worshiped +And +I watched +when +opened +the +Lamb +one +of +the +seven +seals +and +I heard +one +of +the +four +living creatures +saying +like +a voice +of thunder +Come +And +I looked +and +behold +a horse +white +and +the [one] +sitting +on +it +having +a bow +and +was given +to him +a crown +and +he went forth +overcoming +and +that +he might conquer +And +when +He opened +the +seal +- +second +I heard +the +second +living creature +saying +Come +And +went forth +another +horse +bright red +and +to the [one] +sitting +on +it +was granted +to him +to take +the +peace +from +the +earth +and +that +one another +they will slay +and +was given +to him +a sword +great +And +when +He opened +the +seal +- +third +I heard +the +third +living creature +saying +Come +And +I looked +and +behold +a horse +black +and +the [one] +sitting +on +it +having +a pair of scales +in +the +hand +of him +And +I heard +[something] like +a voice +in +[the] midst +of the +four +living creatures +saying +A choenix +of wheat +for a denarius +and +three +choenixes +of barley +for a denarius +and +the +oil +and +the +wine +not +you should injure +And +when +He opened +the +seal +- +fourth +I heard +[the] voice +of the +fourth +living creature +saying +Come +And +I looked +and +behold +a horse +pale +and +the [one] +sitting +on +it +[the] name +of him [was] +- +Death +and +- +Hades +was following +with +him +and +was given +to them +authority +over +the +fourth +of the +earth +to kill +with +sword +and +with +famine +and +with +plague +and +by +the +beasts +of the +earth +And +when +He opened +the +fifth +seal +I saw +under +the +altar +the +souls +of those +having been slain +because of +the +word +- +of God +and +because of +the +testimony +which +they had upheld +And +they were crying +in a voice +loud +saying +O +Lord +- +holy +and +true +Until +when +not +do You judge +and +avenge +the +blood +of us +from +those +dwelling +upon +the +earth +And +were given +to them +each +robes +white +and +it was said +to them +that +they shall rest +yet +a time +little +until +would be fulfilled +also +the +fellow servants +of them +and +the +brothers +of them +those +being about +to be killed +as +also [had been] +they +And +I saw +when +He opened +the +seal +- +sixth +and +an earthquake +great +there was +and +the +sun +became +black +as +sackcloth +of hair +and +the +moon +whole +became +like +blood +and +the +stars +of +heaven +fell +to +the +earth +as +a fig tree +casts +the +unripe figs +of it +by +a wind +great +being shaken +And +- +heaven +departed +like +a scroll +being rolled up +and +every +mountain +and +island +out of +the +places +of them +were moved +And +the +kings +of the +earth +and +the +great ones +and +the +commanders +and +the +rich +and +the +powerful +and +every +slave +and +free +hid +themselves +in +the +caves +and +among +the +rocks +of the +mountains +And +they say +to the +mountains +and +to the +rocks +Fall +on +us +and +hide +us +from +[the] face +of the [One] +sitting +on +the +throne +and +from +the +wrath +of the +Lamb +because +has come +the +day +- +great +of the +wrath +of Them +and +who +is able +to stand +After +these things +I saw +four +angels +standing +upon +the +four +corners +of the +earth +holding +the +four +winds +of the +earth +so that +no +would blow +wind +on +the +earth +nor +on +the +sea +nor +on +any +tree +And +I saw +another +angel +having ascended +from +[the] rising +of [the] sun +having +[the] seal +of God +[the] living +And +he cried +in a voice +loud +to the +four +angels +to whom +to them +it had been given +to harm +the +earth +and +the +sea +saying +Not +harm +the +earth +nor +the +sea +nor +the +trees +until +we shall have sealed +the +servants +of the +God +of us +on +the +foreheads +of them +And +I heard +the +number +of those +having been sealed +one hundred +forty +four +thousand +having been sealed +out of +every +tribe +of [the] sons +of Israel +Out of +[the] tribe +of Judah +twelve +thousand +having been sealed +out of +[the] tribe +of Reuben +twelve +thousand +out of +[the] tribe +of Gad +twelve +thousand +out of +[the] tribe +of Asher +twelve +thousand +out of +[the] tribe +of Naphtali +twelve +thousand +out of +[the] tribe +of Manasseh +twelve +thousand +out of +[the] tribe +of Simeon +twelve +thousand +out of +[the] tribe +of Levi +twelve +thousand +out of +[the] tribe +of Isaachar +twelve +thousand +out of +[the] tribe +of Zebulun +twelve +thousand +out of +[the] tribe +of Joseph +twelve +thousand +out of +[the] tribe +of Benjamin +twelve +thousand +having been sealed +After +these things +I looked +and +behold +a multitude +great +which +it +to number +no one +was able +out of +every +nation +and +tribes +and +peoples +and +tongues +standing +before +the +throne +and +before +the +Lamb +having been clothed with +robes +white +and +palm branches +in +the +hands +of them +And +they were crying out +in a voice +loud +saying +- +Salvation +to the +God +of us +the [One] +sitting +on +the +throne +and +to the +Lamb +And +all +the +angels +stood +around +the +throne +and +the +elders +and +the +four +living creatures +and +they fell +before +the +throne +upon +the +faces +of them +and +worshiped +- +God +saying +Amen +- +Blessing +and +- +glory +and +- +wisdom +and +- +thanksgiving +and +- +honor +and +- +power +and +- +strength +to the +God +of us +to +the +ages +of the +ages +Amen +And +answered +one +of +the +elders +saying +to me +These +- +having been clothed with +the +robes +- +white +who +are they +and +from where +have they come +And +I said +to him +Lord +of me +you +know +And +he said +to me +These +are +the [ones] +coming +out of +the +tribulation +- +great +and +they have washed +the +robes +of them +and +made white +them +in +the +blood +of the +Lamb +Because of +this +They are +before +the +throne +- +of God +and +serve +Him +day +and +night +in +the +temple +of Him +and +the [One] +sitting +on +the +throne +will tabernacle +over +them +Not +they will hunger +any more +neither +will they thirst +anymore +nor +at all +shall fall +upon +them +the +sun +nor +any +scorching heat +because +the +Lamb +- +in the +center +of the +throne +will shepherd +them +and +He will lead +them +to +living +fountains +of waters +and +will wipe away +- +God +every +tear +from +the +eyes +of them +And +when +He opened +the +seal +- +seventh +there was +silence +in +- +heaven +for about +half an hour +And +I saw +the +seven +angels +who +before +- +God +stand +and +were given +to them +seven +trumpets +And +another +angel +came +and +stood +at +the +altar +having +a censer +golden +and +was given +to him +incense +much +that +he will offer [it] +with the +prayers +of the +saints +all +upon +the +altar +- +golden +- +before +the +throne +And +went up +the +smoke +of the +incense +with the +prayers +of the +saints +out of +[the] hand +of the +angel +before +- +God +And +took +the +angel +the +censer +and +filled +it +from +the +fire +of the +altar +and +cast [it] +to +the +earth +and +there were +thunders +and +rumblings +and +flashes of lightning +and +an earthquake +And +the +seven +angels +- +having +the +seven +trumpets +prepared +themselves +that +they might sound the trumpets +And +the +first +sounded [his] trumpet +and +there was +hail +and +fire +having been mixed +with +blood +and +it was cast +upon +the +earth +And +a +third +of +the earth +was burned up +and +a +third +of the +trees +were burned up +and +all +[the] grass +green +was burned up +And +the +second +angel +sounded [his] trumpet +and +[something] like +a mountain +great +with fire +burning +was cast +into +the +sea +And +became +a +third +of the +sea +blood +and +died +a +third +of the +creatures +- +in +the +sea +- +having +life +and +a +third +of the +ships +were destroyed +And +the +third +angel +sounded [his] trumpet +and +fell +out of +- +heaven +a star +great +burning +like +a torch +And +it fell +upon +a +third +of the +rivers +and +upon +the +springs +of +waters +And +the +name +the +star +is called +- +Wormwood +And +became +a +third +of the +waters +into +wormwood +and +many +of the +men +died +from +the +waters +because +they were made bitter +And +the +fourth +angel +sounded [his] trumpet +and +was struck +a +third +of the +sun +and +a +third +of the +moon +and +a +third +of the +stars +so that +should be darkened +a +third +of them +and +the +day +not +should appear [for] +a +third +of it +and +the +night +likewise +And +I looked +and +I heard +one +eagle +flying +in +mid-heaven +saying +in a voice +loud +Woe +Woe +Woe +to those +dwelling +on +the +earth +because of +the +remaining +voices +of the +trumpet +of the +three +angels +- +being about +to sound [their] trumpets +And +the +fifth +angel +sounded [his] trumpet +and +I saw +a star +out of +- +heaven +having fallen +to +the +earth +and +was given +to it +the +key +of the +pit +of the +abyss +And +he opened +the +pit +of the +abyss +and +went up +smoke +out of +the +pit +like +[the] smoke +of a furnace +great +and +were darkened +the +sun +and +the +air +by +the +smoke +of the +pit +And +out of +the +smoke +came forth +locusts +unto +the +earth +and +was given +to them +power +like +have +power +the +scorpions +of the +earth +And +it was said +to them +that +not +they shall harm +the +grass +of the +earth +nor +any +green thing +nor +any +tree +if +not +the +men +- +not +having +the +seal +- +of God +on +the +foreheads +And +it was granted +to them +that +not +they should kill +them +but +that +they shall torment [them] +months +five +And +the +torment +of them +[was] like +torment +of a scorpion +when +it might strike +a man +And +in +the +days +those +will seek +- +men +- +death +and +not +no more +will find +it +and +they will long +to die +and +shall flee +- +death +from +them +And +the +appearance +of the +locusts [was] +like +horses +having been prepared +for +battle +and +upon +the +heads +of them +[were something] like +crowns +like +gold +and +the +faces +of them +like +[the] faces +of men +And +they had +hair +like +hair +of women +and +the +teeth +of them +like [those] +of lions +were +And +they had +breastplates +like +breastplates +of iron +and +the +sound +of the +wings +of them +[was] as +[the] sound +of chariots +of horses +many +rushing +into +battle +And +they have +tails +like +scorpions +and +stingers +and +in +the +tails +of them +[is] the +power +of them +to injure +- +men +for months +five +They have +over +them +a king +the +angel +of the +abyss +[The] name +of Him +in Hebrew +[is] Abaddon +and +in +the +Greek +[the] name +he has +Apollyon +- +Woe +the +first +has passed +Behold +are coming +still +two +woes +after +these things +And +the +sixth +angel +sounded [his] trumpet +and +I heard +voice +one +from +the +four +horns +of the +altar +- +golden +- +before +- +God +saying +to the +sixth +angel +the [one] +having +the +trumpet +Release +the +four +angels +those +having been bound +at +the +river +- +great +Euphrates +And +were released +the +four +angels +- +having been prepared +for +the +hour +and +day +and +month +and +year +so that +they might kill +a +third +- +of mankind +And +the +number +of the +armies +of the +cavalry [was] +twice ten thousand +ten thousands +I heard +the +number +of them +And +thus +I saw +the +horses +in +the +vision +and +those +sitting +on +them +having +breastplates +fiery +and +hyacinthine +and +brimstone +And +the +heads +of the +horses [were] +like +heads +of lions +and +out of +the +mouths +of them +proceed +fire +and +smoke +and +brimstone +was killed +a +third +of +mankind +By +- +three +plagues +these +by +the +fire +and +by the +smoke +and +by the +brimstone +- +proceeding +out of +the +mouths +of them +for +The +powers +of the +horses +are +in +the +mouths +of them +and +in +the +tails +of them +for +the +tails +of them +[are] like +serpents +having +heads +and +with +them +they injure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +And +not +they repented +of +the +murders +of them +nor +of +the +sorceries +of them +nor +of +the +sexual immorality +of them +nor +of +the +thefts +of them +And +I saw +another +angel +mighty +coming down +out of +- +heaven +clothed with +a cloud +and +a +rainbow +upon +the +head +of him +and +the +face +of him +[was] like +the +sun +and +the +feet +of him +like +pillars +of fire +and +having +in +the +hand +of him +a little scroll +being open +And +he placed +the +foot +of him +- +right +upon +the +sea +and +the +left +upon +the +earth +And +he cried out +in a voice +loud +as +a lion +roars +And +when +he cried out +sounded +the +seven +thunders +the +of themselves +voice +And +when +had spoken +the +seven +thunders +I was about +to write +But +I heard +a voice +out of +- +heaven +saying +Seal +what +have spoken +the +seven +thunders +and +not +them +write +And +the +angel +whom +standing +on +the +sea +and +on +the +land +I saw +lifted up +the +hand +of him +the +right +to +- +heaven +and +he swore +by +the [One] +living +to +the +ages +of the +ages +who +created +- +heaven +and +the things +in +it +and +the +earth +and +the things +in +it +and +the +sea +and +the things +in +it +- +Delay +no longer +will there be +But +in +the +days +of the +voice +of the +seventh +angel +when +he is about +to sound [the] trumpet +then +would be completed +the +mystery +- +of God +as +proclaimed +the +of Himself +servants +the +prophets +And +the +voice +that +I heard +out of +- +heaven +again +was speaking +with +me +and +saying +Go +take +the +little scroll +- +having been opened +in +the +hand +of the +angel +- +standing +upon +the +sea +and +upon +the +land +And +I went +to +the +angel +saying +to him +Give +me +the +little scroll +And +he says +to me +Take +and +eat +it +and +it will make bitter +your +- +stomach +but +in +the +mouth +of you +it will be +sweet +as +honey +And +I took +the +little scroll +out of +the +hand +of the +angel +and +I ate +it +and +it was +in +the +mouth +of me +as +honey +sweet +and +when +I had eaten +it +was made bitter +the +stomach +of me +And +they say +to me +It is necessary +for you +again +to prophesy +concerning +peoples +and +nations +and +tongues +and +kings +many +And +was given +to me +a measuring rod +like +a staff +saying +Rise +and +measure +the +temple +- +of God +and +the +altar +and +those +worshiping +in +it +And +the +courtyard +- +outside +the +temple +leave +out +and +not +it +measure +because +it has been given [up] +to the +nations +and +the +city +- +holy +they will trample upon +months +forty +two +And +I will grant +to the +two +witnesses +of me +and +they will prophesy +days +a thousand +two hundred +sixty +clothed in +sackcloth +These +are +the +two +olive trees +and +the +two +lampstands +- +before +the +Lord +of the +earth +standing +And +if +anyone +should desire +them +to harm +fire +goes out +of +the +mouth +of them +and +devours +the +enemies +of them +And +if +anyone +should desire +them +to harm +thus +it is necessary +for him +to be killed +These +have +the +power +to shut +the +sky +so that +no +rain +shall fall +in the +days +of the +prophecy +of them +and +power +they have +over +the +waters +to turn +them +into +blood +and +to strike +the +earth +with +every +plague +as often as +if +they might desire +And +when +they shall have completed +the +testimony +of them +the +beast +- +coming up +out of +the +abyss +will make +with +them +war +and +will overcome +them +and +will kill +them +And +the +body +of them +[will be] upon +the +street +of +city +the +great +which +is called +figuratively +Sodom +and +Egypt +where +also +the +Lord +of them +was crucified +And +gaze +[those] of +the +peoples +and +tribes +and +tongues +and +nations +upon the +bodies +of them +days +three +and +a half +and +not +they will allow +the +bodies +of them +to be put +into +a tomb +And +those +dwelling +on +the +earth +rejoice +over +them +and +make merry +and +gifts +will send +to one another +because +these +- +two +prophets +have tormented +those +dwelling +upon +the +earth +And +after +the +three +and +a half +days +[the] spirit +of life +from +- +God +entered +into +them +and +they stood +upon +the +feet +of them +and +fear +great +fell +upon +those +beholding +them +And +they heard +a voice +great +out of +- +heaven +saying +to them +Come up +here +And +they went up +to +- +heaven +in +the +cloud +and +beheld +them +the +enemies +of them +And +in +that +- +hour +there was +an earthquake +great +and +a +tenth +of the +city +fell +and +were killed +in +the +earthquake +names +of men +thousand +seven +And +the +rest +terrified +became +and +gave +glory +to the +God +of +heaven +The +woe +- +second +has passed +Behold +the +woe +- +third +is coming +quickly +And +the +seventh +angel +sounded [his] trumpet +and +there were +voices +great +in +- +heaven +saying +Has become +the +kingdom +of the +world +[that] of the +Lord +of us +and +of the +Christ +of Him +and +He will reign +to +the +ages +of the +ages +And +the +twenty +four +elders +- +before +- +God +sitting +on +the +thrones +of them +fell +upon +the +faces +of them +and +worshiped +- +God +saying +We give thanks +to You +Lord +- +God +- +Almighty +the [One] +being +and +who +was +that +You have taken +the +power +of You +- +great +and +have begun to reign +And +the +nations +were enraged +and +came +the +wrath +of You +and +the +time +for the +dead +to be judged +and +to give +the +reward +to the +servants +of You +the +prophets +and +to the +saints +and +to those +fearing +the +name +of You +the +small +and +the +great +and +to destroy +those who +are destroying +the +earth +And +was opened +the +temple +- +of God +- +in +- +heaven +and +was seen +the +ark +of the +covenant +of Him +in +the +temple +of Him +And +there were +flashes of lightning +and +voices +and +thunders +and +an earthquake +and +hail +great +And +a sign +great +appeared +in +- +heaven +a woman +clothed with +the +sun +and +the +moon +under +the +feet +of her +and +on +the +head +of her +a crown +of stars +twelve +and +in +womb +having +And +she cries out +being in travail +and +being in pain +to bring forth +And +was seen +another +sign +in +- +heaven +and +behold +a dragon +red +great +having +heads +seven +and +horns +ten +and +upon +the +heads +of him +seven +royal crowns +And +the +tail +of him +drags +a +third +of the +stars +of +heaven +and +he cast +them +to +the +earth +And +the +dragon +stands +before +the +woman +- +being about +to bring forth +so that +when +she should bring forth +the +child +of her +he might devour +And +she brought forth +a son +male +who +is about +to rule +all +the +nations +with +a rod +of iron +and +was caught up +the +child +of her +to +- +God +and +to +the +throne +of Him +And +the +woman +fled +into +the +wilderness +where +she has +there +a place +having been prepared +by +- +God +so that +there +they should nourish +her +days +one thousand +two hundred +sixty +And +there was +war +in +- +heaven +- +Michael +and +the +angels +of him +- +warred +against +the +dragon +and +warred [back] +the +dragon +and +the +angels +of him +And +not +had he strength +nor +a place +for them +was found +any longer +in +- +heaven +And +was thrown [out] +the +dragon +- +great +the +serpent +- +ancient +who +is called +[the] devil +and +- +Satan +- +deceiving +the +inhabited [world] +whole +He was thrown down +to +the +earth +and +the +angels +of him +with +him +were thrown down +And +I heard +a voice +great +in +- +heaven +saying +Now +have come +the +salvation +and +the +power +and +the +kingdom +of the +God +of us +and +the +authority +the +Christ +of Him +because +has been thrown down +the +accuser +of the +brothers +of us +the [one] +accusing +them +before +the +God +of us +day +and +night +And +they +have overcome +him +by reason +of the +blood +of the +Lamb +and +by reason of +the +word +of the +testimony +of them +and +not +they have loved +the +life +of them +unto +death +Because of +this +rejoice +heavens +and +those +in +them +dwelling +Woe to +the +earth +and +the +sea +because +has come down +the +devil +to +you +having +fury +great +knowing +that +a short +time +he has +And +when +saw +the +dragon +that +he had been thrown down +to +the +earth +he pursued +the +woman +who +had brought forth +the +male [child] +And +were given +to the +woman +the +two +wings +of the +eagle +- +great +so that +she could fly +into +the +wilderness +into +the +place +of her +where +she is nourished +there +a time +and +times +and +half +a time +from +[the] face +of the +serpent +And +cast +the +serpent +out of +the +mouth +of him +after +the +woman +water +as +a river +so that +her +carried away by a flood +he might cause to be +And +helped +the +earth +the +woman +and +opened +the +earth +the +mouth +of it +and +swallowed up +the +river +which +had cast +the +dragon +out of +the +mouth +of him +And +was angry +the +dragon +with +the +woman +and +went +to make +war +with +the +rest +of the +children +of her +- +keeping +the +commandments +- +of God +and +holding +the +testimony +of Jesus +And +he stood +upon +the +sand +of the +sea +And +I saw +out of +the +sea +a beast +rising +having +horns +ten +and +heads +seven +and +on +the +horns +of it +ten +royal crowns +and +upon +the +heads +of it +names +of blasphemy +And +the +beast +that +I saw +was +like +a leopard +and +the +feet +of it +like +a bear’s +and +the +mouth +of it +like +[the] mouth +of a lion +And +gave +to it +the +dragon +the +power +of him +and +the +throne +of him +and +authority +great +And +one +of +the +heads +of it +[was] as +having been slain +to +death +And +the +wound +of +death +of it +was healed +and +marveled +all +the +earth +after +the +beast +And +they worshiped +the +dragon +who +had given +- +authority +to the +beast +and +they worshiped +the +beast +saying +Who +[is] like +the +beast +And +who +is able +to make war +against +it +And +was given +to it +a mouth +speaking +great things +and +blasphemy +and +was given +to it +authority +to act +months +forty +two +And +it opened +the +mouth +of it +unto +blasphemies +against +- +God +to blaspheme +the +name +of Him +and +the +tabernacle +of Him +those +in +- +heaven +dwelling +And +there was given +to it +to make +war +with +the +saints +and +to overcome +them +And +was given +to it +authority +over +every +tribe +and +people +and +tongue +and +nation +And +will worship +it +all +- +dwelling +on +the +earth +not +have been written +of whom +the +names +of them +in +the +book +- +of life +of the +Lamb +- +having been slain +from +[the] founding +of [the] world +If +anyone +has +an ear +let him hear +If +anyone [is to go] +into +captivity +into +captivity +he goes +If +anyone +with +[the] sword +is to be killed +it is necessary for +him +by +[the] sword +to be killed +Here +is +the +endurance +and +the +faith +of the +saints +And +I saw +another +beast +rising +out of +the +earth +and +it had +horns +two +like +a lamb +and +it was speaking +like +a dragon +And +the +authority +of the +first +beast +all +it exercises +on behalf +of it +and +causes +the +earth +and +those +in +it +dwelling +that +they will worship +the +beast +- +first +of whom +had been healed +the +wound +- +fatal +of it +And +it works +signs +great +so that +even +it should cause +fire +out of +- +heaven +to come down +to +the +earth +in the presence +- +of men +And +it deceives +those +dwelling +on +the +earth +by reason of +the +signs +that +were given +to it +to perform +before +the +beast +telling +those +dwelling +on +the +earth +to make +an image +to the +beast +that +has +the +wound +of the +sword +and +has lived +And +there was given +to it +to give +breath +to the +image +of the +beast +so that +also +should speak +the +image +of the +beast +and +should cause +that +if +as many as +not +would worship +the +image +of the +beast +would be killed +And +it causes +all +the +small +and +the +great +and +the +rich +and +the +poor +and +the +free +and +the +servants +that +it should give +them +a mark +on +the +hand +of them +- +right +or +on +the +forehead +of them +and +that +no +one +should be able +to buy +or +to sell +if +not +the [one] +having +the +mark +the +name +of the +beast +or +the +number +of the +name +of it +Here +the +wisdom +is +The [one] +having +understanding +let him count +the +number +of the +beast +for +number +a man’s +it is +and +the +number [is] +of it +six hundred +sixty +six +And +I looked +and +behold +the +Lamb +was standing +upon +- +Mount +Zion +and +with +Him +one hundred +forty +four +thousand +having +the +name +of Him +and +the +name +of the +Father +of Him +having been written +on +the +foreheads +of them +And +I heard +a voice +out of +- +heaven +as +[the] sound +of waters +many +and +as +[the] sound +of thunder +loud +And +the +voice +that +I heard +[was] like that +of harpists +harping +with +the +harps +of them +And +they are singing +a song +new +before +the +throne +and +before +the +four +living creatures +and +the +elders +And +no one +was able +to learn +the +song +if +not +the +one hundred +forty +four +thousand +- +having been redeemed +from +the +earth +These +are +they who +with +women +not +have not been defiled +for +pure +they are +these +- +following +the +Lamb +- +wherever +He shall go +These +have been redeemed +out from +- +men +[as] firstfruits +- +to God +and +to the +Lamb +And +in +the +mouth +of them +not +was found +a lie +blameless +they are +And +I saw +another +angel +flying +in +mid-heaven +having +[the] glad tidings +everlasting +to preach +upon +those +dwelling +on +the +earth +and +upon +every +nation +and +tribe +and +tongue +and +people +saying +in +a voice +loud +Fear +- +God +and +give +Him +glory +because +has come +the +hour +of the +judgment +of Him +And +worship +the [One] +having made +- +heaven +and +the +earth +and +sea +and +springs +of waters +And +another +angel +a second +followed +saying +Fallen +Fallen is +Babylon +the +great +who +of +the +wine +- +of wrath +for the +immorality +of her +she has given to drink +all +the +Gentiles +And +another +angel +a third +followed +them +saying +in +a voice +loud +If +anyone +worships +the +beast +and +the +image +of it +and +receives +a mark +on +the +forehead +of him +or +upon +the +hand +of him +also +he +will drink +of +the +wine +of the +anger +- +of God +- +having been mixed +undiluted +in +the +cup +of the +wrath +of Him +and +he will be tormented +in +fire +and +brimstone +before +[the] angels +holy +and +before +the +Lamb +And +the +smoke +of the +torment +of them +to +ages +of ages +goes up +and +not +have +rest +day +and +night +those +worshiping +the +beast +and +the +image +of it +and +if +anyone +receives +the +mark +of the +name +of it +Here +is +the +endurance +of the +saints +those +keeping +the +commandments +- +of God +and +the +faith +of Jesus +And +I heard +a voice +out of +- +heaven +saying +Write +Blessed [are] +the +dead +- +in +the Lord +dying +from +Yes +says +the +Spirit +so that +they will rest +from +the +labors +of them +for +- +the works +of them +follow +with +them +And +I looked +and +behold +a cloud +white +and +upon +the +cloud +is sitting [One] +like +[the] Son +of Man +having +on +the +head +of Him +a crown +golden +and +in +the +hand +of Him +a sickle +sharp +And +another +angel +came out +of +the +temple +crying +in +a voice +loud +to the [One] +sitting +on +the +cloud +Put forth +the +sickle +of You +and +reap +because +has come +the +hour +to reap +because +has ripened +the +harvest +of the +earth +And +swung +the [One] +sitting +upon +the +cloud +the +sickle +of Him +upon +the +earth +and +was harvested +the +earth +And +another +angel +came +out of +the +temple +- +in +- +heaven +having +also +he +a sickle +sharp +And +another +angel +- +having +authority +over +the +fire +came +out of +the +altar +and +he called +in a voice +loud +to the [one] +having +the +sickle +- +sharp +saying +Put forth +your +- +sickle +- +sharp +and +gather +the +clusters +from the +vine +of the +earth +because +have fully ripened +the +grapes +of it +And +put forth +the +angel +the +sickle +of him +to +the +earth +and +gathered +the +vine +of the +earth +and +cast [them] +into +the +winepress +of the +wrath +- +of God +- +great +And +was trodden +the +winepress +outside +the +city +and +flowed +blood +out of +the +winepress +as high as +the +bridles +of the +horses +to the distance of +stadia +one thousand +six hundred +And +I saw +another +sign +in +- +heaven +great +and +wonderful +angels +seven +having +plagues +seven +the +last +because +in +them +was completed +the +wrath +- +of God +And +I saw +[something] like +a sea +of glass +mingled +with fire +and +those +conquering +over +the +beast +and +of +the +image +of it +and +over +the +number +of the +name +of it +standing +upon +the +sea +of the +glass +having +harps +- +of God +And +they are singing +the +song +of Moses +the +servant +of +God +and +the +song +of the +Lamb +saying +Great +and +wonderful [are] +the +works +of You +Lord +- +God +the +Almighty +Righteous +and +true [are] +the +ways +of You +O +King +of the +nations +Who +no +not +should fear [You] +O Lord +and +will glorify +the +name +of You +For [You] +alone [are] +holy +For +all +the +nations +will come +and +will worship +before +You +because +the +righteous acts +of You +have been revealed +And +after +these things +I looked +and +was opened +the +temple +of the +tabernacle +of the +testimony +in +- +heaven +And +came forth +the +seven +angels +- +having +the +seven +plagues +out +of the +temple +having been clothed in +linen +pure +bright +and +having been girded with +around +the +chests +sashes +golden +And +one +of +the +four +living creatures +gave +to the +seven +angels +seven +bowls +golden +full +of the +wrath +- +of God +the [One] +living +to +the +ages +of the +ages +And +was filled +the +temple +with smoke +from +the +glory +- +of God +and +from +the +power +of Him +and +no one +was able +to enter +into +the +temple +until +were completed +the +seven +plagues +of the +seven +angels +And +I heard +[a] loud +voice +from +the +temple +saying +to the +seven +angels +Go +and +pour out +the +seven +bowls +of the +wrath +- +of God +into +the +earth +And +departed +the +first +and +poured out +the +bowl +of him +into +the +earth +and +came +a sore +evil +and +grievous +upon +the +men +- +having +the +mark +of the +beast +and +those +worshiping +the +image +of it +And +the +second +poured out +the +bowl +of him +into +the +sea +and +it became +blood +as +of [one] dead +and +every +soul +living +that was +in +the +sea +died +And +the +third +poured out +the +bowl +of him +into +the +rivers +and +the +springs +of the +waters +and +they became +blood +And +I heard +the +angel +of the +waters +saying +Righteous +are You +the [One] +being +and +- +having been +O +holy One +because +these things +You have judged +because +[the] blood +of saints +and +of prophets +they have poured out +and +blood +to them +You have given +to drink +worthy +they are +And +I heard +the +altar +saying +Yes +Lord +- +God +- +Almighty +true +and +righteous [are] +the +judgments +of You +And +the +fourth +poured out +the +bowl +of him +upon +the +sun +and +there was given +to it +to scorch +- +men +with +fire +And +were scorched +the +men +with heat +great +and +they cursed +the +name +- +of God +the [One] +having +- +authority +over +the +plagues +these +and +not +did they repent +to give +Him +glory +And +the +fifth +poured out +the +bowl +of him +upon +the +throne +of the +beast +and +became +the +kingdom +of it +darkened +and +they were gnawing +the +tongues +of them +for +the +distress +and +they cursed +the +God +of +heaven +on account of +the +distresses +of them +and +on account of +the +sores +of them +and +not +they did repent +of +the +works +of them +And +the +sixth +poured out +the +bowl +of him +upon +the +river +- +great +Euphrates +and +was dried up +the +water +of it +so that +might be prepared +the +way +of the +kings +- +of the +rising +of the sun +And +I saw [coming] +out of +the +mouth +of the +dragon +and +out of +the +mouth +of the +beast +and +out of +the +mouth +of the +false prophet +spirits +three +unclean +like +frogs +for +they are +spirits +of demons +performing +signs +which +go forth +to +the +kings +of the +inhabited [world] +whole +to gather together +them +unto +the +battle +of the +day +- +great +- +of God +the +Almighty +Behold +I am coming +like +a thief +Blessed [is] +the [one] +watching +and +keeping +the +garments +of him +so that +not +naked +he should walk +and +they might see +the +shame +of him +And +he gathered together +them +unto +the +place +- +called +in Hebrew +Armageddon +And +the +seventh +poured out +the +bowl +of him +upon +the +air +and +came out +a voice +loud +from +the +temple +from +the +throne +saying +It is done +And +there were +flashes of lightning +and +voices +and +thunders +and +an earthquake +great +there was +such as +not +had there been +since +- +men +were +upon +the +earth +so great +[was the] earthquake +so +mighty +And +was [split] +the +city +- +great +into +three +parts +and +the +cities +of the +nations +fell +and +Babylon +the +great +was remembered +before +- +God +to give +her +the +cup +of the +wine +of the +fury +the +wrath +of Him +And +every +island +fled +and +mountains +not +were to be found +And +a hail +great +about +a talent weight +comes down +out of +- +heaven +upon +the +men +And +blasphemed +the +men +- +God +on account of +the +plague +of the +hail +for +severe +is +the +plague +of it +exceedingly +And +came +one +of +the +seven +angels +- +having +the +seven +bowls +and +spoke +with +me +saying +Come here +I will show +you +the +punishment +of the +prostitute +- +great +the [one] +sitting +upon +waters +many +with +whom +have committed sexual immorality +the +kings +of the +earth +and +have been made drunk +those that +dwelling +on the +earth +with +the +wine +of the +sexual immorality +of her +And +he carried away +me +into +a wilderness +in +[the] Spirit +and +I saw +a woman +sitting +upon +a beast +scarlet +being full +of names +of blasphemy +having +heads +seven +and +horns +ten +And +the +woman +was +clothed in +purple +and +scarlet +and +adorned +with gold +and +stone +precious +and +pearls +holding +in +the +hand +of her +a cup +golden +being full +of abominations +and +the +impurity +of the +sexual immorality +of her +And +upon +the +forehead +of her +was written +a name +a mystery +Babylon +the +Great +the +mother +of the +prostitutes +and +of the +abominations +of the +earth +And +I saw +the +woman +being drunk +with +the +blood +of the +saints +and +with +the +blood +of the +witnesses +of Jesus +And +I marveled +having seen +her +with wonder +great +And +said +to me +the +angel +Because of +why +did you marvel +I +will tell +you +the +mystery +of the +woman +and +of the +beast +- +carrying +her +- +having +the +seven +heads +and +the +ten +horns +The +beast +that +you saw +was +and +not +is +and +is about +to come up +out of +the +abyss +and +into +destruction +go +and +will wonder +those +dwelling +on +the +earth +whose +- +names +not +are written +in +the +book +- +of life +from +[the] foundation +of [the] world +seeing +the +beast +which +was +and +not +is +and yet +will be +Here [is] +the +mind +- +having +wisdom +The +seven +heads +seven +mountains +are +where +the +woman +sits +on +them +And +kings +seven +there are +The +five +are fallen +the +one +is +the +other +not yet +has come +and +when +he shall have come +a little while +him +to remain +it behooves +And +the +beast +which +was +and +not +is +also +himself +an eighth +is +and +of +the +seven +is +and +into +destruction +goes +And +the +ten +horns +which +you saw +are +ten +kings +who +a kingdom +not yet +have received +but +authority +as +kings +one +hour +receive +along with +the +beast +These +one +mind +have +and +the +power +and +authority +of themselves +to the +beast +they shall give up +These +with +the +Lamb +war will make +and +the +Lamb +will overcome +them +because +He is +Lord +of lords +and +King +of kings +and +those +with +Him +[are] called +and +chosen +and +faithful +And +he says +to me +The +waters +that +you saw +where +the +prostitute +sits +are +peoples +and +multitudes +and +nations +and +tongues +And +the +ten +horns +that +you saw +and +the +beast +these +will hate +the +prostitute +and +will make +her +desolate +and +naked +and +the +flesh +of her +they will eat +and +her +they will burn +with +fire +For +- +God +has put +into +the +hearts +of them +to do +the +purpose +of Him +and +to do +one +purpose +and +to give +the +kingdom +of them +to the +beast +until +will be fulfilled +the +words +- +of God +And +the +woman +whom +you saw +is +the +city +- +great +- +having +kingship +over +the +kings +of the +earth +After +these things +I saw +another +angel +descending +out of +- +heaven +having +authority +great +and +the +earth +was illuminated +from +the +glory +of him +And +he cried out +in +a mighty +voice +saying +Fallen +Fallen is +Babylon +the +great +And +she has become +a habitation +of demons +and +a prison +of every +spirit +unclean +and +a prison +of every +bird +unclean +and +having been hated +For +of +the +wine +of the +wrath +of the +sexual immorality +of her +have drunk +all +the +nations +and +the +kings +of the +earth +with +her +have committed sexual immorality +and +the +merchants +of the +earth +through +the +power +of the +sensuality +of her +have been enriched +And +I heard +another +voice +from +- +heaven +saying +the +people +of me +Come +out of +her +so that +not +you may have fellowship +in the +sins +of her +and +so that +of +the +plagues +of her +not +you may receive +For +have been heaped +her +- +sins +as high as +- +heaven +and +has remembered +- +God +the +iniquities +of her +Give back +to her +as +also +she +has rendered +and +pay back double +to her +twofold +according to +the +works +of her +In +the +cup +which +she has mixed +mix +to her +double +So much as +she has glorified +herself +and +lived in luxury +as much +torment +and +misery +give +to her +because +in +the +heart +of herself +she says +- +I sit +[as] a queen +and +a widow +never +I am +and +mourning +never +not +shall I see +Because of +this +in +one +day +will come +the +plagues +of her +death +and +misery +and +famine +and +with +fire +she will be burned up +because +mighty [is the] +Lord +- +God +the [One] +having judged +her +And +will weep +and +will wail +for +her +the +kings +of the +earth +the [ones] +with +her +having committed sexual immorality +and +having lived luxuriously +when +they see +the +smoke +of the +burning +of her +from +afar +standing +because of +the +fear +of the +torment +of her +saying +Woe +woe +the +city +- +great +Babylon +the +city +- +strong +For [in] +one +hour +has come +the +judgment +of you +And +the +merchants +of the +earth +weep +and +mourn +for +her +because +no one +buys +no longer +the +cargo +of them +cargo +of gold +and +of silver +and +of stone +precious +and +of pearls +and +of fine linen +and +of purple +and +of silk +and +of scarlet +and +all +wood +citron +and +every +article +of ivory +and +every +article +of +wood +most precious +and +of bronze +and +of iron +and +of marble +and +cinnamon +and +spice +and +incense +and +myrrh +and +frankincense +and +wine +and +oil +and +finest flour +and +wheat +and +cattle +and +sheep +and +of horses +and +of chariots +and +of slaves +and +souls +of men +And +the +ripe fruit +of you +of the +desire +of the +soul +are departed +from +you +and +all +the +sumptuous things +and +the +splendid things +have departed +from +you +and +no longer +no +not +them +they will find +The +merchants +of these things +- +having been enriched +from +her +from +afar +will stand +because of +the +fear +of the +torment +of her +weeping +and +mourning +saying +Woe +woe +the +city +- +great +- +having been clothed with +fine linen +and +purple +and +scarlet +and +having been adorned +with +gold +and +stone +precious +and +pearl +For [in] +one +hour +has been brought to desolation +- +such great +wealth +And +every +shipmaster +and +all +those +to +a place +sailing +and +sailors +and +as many as +the +sea +trade by +at +a distance +stood +and +were crying out +seeing +the +smoke +of the +burning +of her +saying +What [is] +like +the +city +- +great +And +they cast +dust +upon +the +heads +of them +and +they were crying out +weeping +and +mourning +saying +Woe +woe +the +city +- +great +in +which +were enriched +all +those +having +- +ships +in +the +sea +through +the +wealth +of her +For +in one +hour +she has been brought to desolation +Rejoice +over +her +O heaven +and +- +[you] saints +and +- +apostles +and +- +prophets +because +did judge +- +God +the +judgment +for you +against +her +And +took up +one +angel +a mighty +stone +like +a millstone +great +and +cast [it] +into +the +sea +saying +Thus +with violence +will be cast down +Babylon +the +great +city +and +no +not +shall be found +any longer +And +sound +of harpists +and +musicians +and +flute players +and +trumpeters +no +not +shall be heard +in +you +any longer +And +any +craftsmen +of any +craft +no +not +shall be found +in +you +any longer +and +[the] sound +of a millstone +no +not +shall be heard +in +you +any longer +And +[the] light +of lamp +no +not +shall shine +in +you +any longer +and +[the] voice +of a bridegroom +and +a bride +no +not +shall be heard +in +you +any longer +for +the +merchants +of you +were +the +great ones +of the +earth +because +by +the +sorcery +of you +were deceived +all +the +nations +And +in +her +was found +[the] blood +of prophets +and +of saints +and +of all +those +having been slain +on +the +earth +After +these things +I heard +[something] like +a voice +loud +of a multitude +great +in +- +heaven +crying out +Hallelujah +The +salvation +and +the +glory +and +the +power +to the +God +of us +For +true +and +righteous [are] +the +judgments +of Him +because +He has judged +the +prostitute +- +great +who +had corrupted +the +earth +with +the +sexual immorality +of her +and +He has avenged +the +blood +of the +servants +of Him +out of +[the] hand +of her +And +a second time +they said +Hallelujah +And +the +smoke +of her +goes up +to +the +ages +of the +ages +And +fell down +the +elders +- +twenty +four +and +the +four +living creatures +and +they worshiped +- +God +the [One] +sitting +on +the +throne +saying +Amen +Hallelujah +And +a voice +from +the +throne +came forth +saying +Praise +the +God +of us +all +the +servants +of Him +those +fearing +Him +the +small +and +the +great +And +I heard +[something] like +[the] voice +of a multitude +great +and +like +[the] sound +of waters +many +and +like +a sound +of thunders +mighty +saying +Hallelujah +For +has reigned +[the] Lord +- +God +of us +the +Almighty +We should rejoice +and +should exult +and +will give +the +glory +to Him +because +has come +the +marriage +of the +Lamb +and +the +bride +of Him +has made ready +herself +And +it was given +to her +that +she should be clothed in +fine linen +bright +pure +For +- +the fine linen +the +righteousness acts +of the +saints +is +And +he says +to me +Write +Blessed [are] +those +to +the +supper +of the +marriage +of the +Lamb +having been invited +And +he says +to me +These +the +words +true +- +of God +are +And +I fell +before +the +feet +of him +to worship +to him +And +he says +to me +See that you +not +I am +A fellow servant +with you +and +the +brothers +of you +- +holding +the +testimony +of Jesus +- +God +worship +for +The +testimony +of Jesus +is +the +spirit +- +of prophecy +And +I saw +- +heaven +having been opened +and +behold +a horse +white +and +the [One] +sitting +upon +it +called +Faithful +and +True +and +in +righteousness +He judges +and +makes war +And +- +the eyes +of Him +a flame +of fire +and +upon +the +head +of Him +royal crowns +many +having +a name +having been written +which +no one +knows +if +not +He Himself +and +having been clothed with +a garment +having been dipped +in blood +And +is called +the +name +of Him +The +Word +- +of God +And +the +armies +who were +in +- +heaven +were following +Him +upon +horses +white +having been clothed in +fine linen +white +pure +And +out of +the +mouth +of Him +goes forth +a sword +sharp +so that +with +it +He may strike down +the +nations +and +He +will shepherd +them +with +a rod +of iron +And +He +treads +the +press +of the +wine +of the +fury +of the +wrath +- +of God +the +Almighty +And +He has +upon +the +robe +and +upon +the +thigh +of Him +a name +having been written +King +of Kings +and +Lord +of Lords +And +I saw +one +angel +standing +in +the +sun +and +he cried out +in +a voice +loud +saying +to all +the +birds +- +flying +in +mid-heaven +Come +gather yourselves +unto +the +supper +- +great +- +of God +so that +you may eat +[the] flesh +of kings +and +[the] flesh +of commanders +and +[the] flesh +of mighty [men] +and +[the] flesh +of horses +and +of those +sitting +on +them +and +[the] flesh +of all +both +free +and +slaves +and +small +and +great +And +I saw +the +beast +and +the +kings +of the +earth +and +the +armies +of them +having been gathered together +to make +- +war +with +the [One] +sitting +on +the +horse +and +with +the +army +of Him +And +was captured +the +beast +and +with +him +the +false prophet +the [one] +having done +the +signs +before +him +by +which +he deceived +those +having received +the +mark +of the +beast +and +those +worshiping +the +image +of it +living +were cast +the +two +into +the +lake +- +of fire +- +burning +with +brimstone +And +the +rest +were killed +with +the +sword +of the [One] +sitting +on +the +horse +- +having gone forth +out of +the +mouth +of him +And +all +the +birds +were filled +with +the +flesh +of them +And +I saw +an angel +descending +out of +- +heaven +holding +the +key +of the +Abyss +and +a chain +great +in +the +hand +of him +And +he seized +the +dragon +the +serpent +- +ancient +who +is +[the] devil +and +- +Satan +and +bound +him +for a thousand +years +And +he cast +him +into +the +Abyss +and +shut +and +sealed [it] +over +him +so that +not +he should deceive +any longer +the +nations +until +were completed +the +thousand +years +After these +things +it is necessary for +to be released +him +for a little +time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The +rest +of the +dead +not +lived again +until +shall have been completed +the +thousand +years +This [is] +the +resurrection +- +first +Blessed +and +holy [is] +the [one] +having +a part +in +the +resurrection +- +first +Over +these +the +second +death +not +has +power +but +they will be +priests +- +of God +and +- +of Christ +and +will reign +with +Him +a +thousand +years +And +when +shall have been completed +the +thousand +years +will be released +- +Satan +out of +the +prison +of him +and +will go out +to deceive +the +nations +- +in +the +four +corners +of the +earth +- +Gog +and +Magog +to gather together +them +unto +the +war +of whom +the +number [is] +of them +like +the +sand +of the +sea +And +they marched up +over +the +breadth +of the +earth +and +encircled +the +camp +of the +saints +and +the +city +- +having been beloved +But +came down +fire +out of +- +heaven +and +devoured +them +And +the +devil +the [one] +deceiving +them +was cast +into +the +lake +- +of fire +and +of sulfur +where [are] +also +the +beast +and +the +false prophet +and +they will be tormented +day +and +night +to +the +ages +of the +ages +And +I saw +a throne +great +white +and +the [One] +sitting +on +it +from +whose +- +face +fled +the +earth +and +- +heaven +and +place +not +was found +for them +And +I saw +the +dead +- +great +and +- +small +standing +before +the +throne +and +books +were opened +And +another +book +was opened +which +is +the [one] +of life +And +were judged +the +dead +out of +the things +having been written +in +the +books +according to +the +deeds +of them +And +gave up +the +sea +the +dead +who were +in +it +and +- +Death +and +- +Hades +gave up +the +dead +who were +in +them +and +they were judged +each [of them] +according to +the +works +of them +And +- +Death +and +- +Hades +were cast +into +the +lake +- +of fire +This +the +death +- +second +the +lake +of +fire +is +And +if +anyone +not +was found +in +the +book +- +of life +having been written +he was cast +into +the +lake +- +of fire +And +I saw +a heaven +new +and +an earth +new +for +- +the first +heaven +and +the +first +earth +had passed away +and +the +sea +not +is +any longer +And +I saw +the +city +- +holy +[the] Jerusalem +new +coming down +out of +- +heaven +from +- +God +having been prepared +as +a bride +having been adorned +for the +husband +of her +And +I heard +a voice +great +from +the +throne +saying +Behold +the +tabernacle +- +of God +[is] with +- +men +and +He will tabernacle +with +them +and +they +peoples +of Him +will be +and +Himself +- +God +with +them +will be +And +He will wipe away +every +tear +from +the +eyes +of them +and +- +death +not +will be +any longer +nor +mourning +nor +crying +nor +pain +not +they will be +any longer +because +the +former things +have passed away +And +said +the [One] +sitting +on +the +throne +Behold +new +I make +all things +And +He says +Write [this] +because +these +the +words +faithful +and +true +are +And +He said +to me +It is done +I +the +Alpha +and +the +Omega +the +beginning +and +the +end +I +to the [one] +thirsting +will give +of +the +spring +of the +water +- +of life +freely +The [one] +overcoming +will inherit +all things +and +I will be +his +God +and +he +will be +My +son +But +- +to the cowardly +and +unbelieving +and +having become abominable +and +murderers +and +the sexually immoral +and +sorcerers +and +idolaters +and +all +- +liars +the +portion +of them +[is] in +the +lake +- +burning +with fire +and +brimstone +which +is +the +death +- +second +And +came +one +of +the +seven +angels +- +having +the +seven +bowls +- +being full +of the +seven +plagues +- +last +and +spoke +with +me +saying +Come here +I will show +you +the +bride +the +wife +of the +Lamb +And +he carried away +me +in +[the] Spirit +to +a mountain +great +and +high +and +he showed +me +the +city +- +holy +Jerusalem +descending +out of +- +heaven +from +- +God +having +the +glory +- +of God +The +radiance +of it +[was] like +a stone +most precious +like +a stone +jasper +being clear as crystal +having +a wall +great +and +high +having +gates +twelve +and +at +the +gates +angels +twelve +and +having been inscribed +names +which +are +of the +twelve +tribes +of [the] sons +of Israel +On +[the] east +[were] gates +three +and +on +[the] north +gates +three +and +on +[the] south +gates +three +and +on +[the] west +gates +three +And +the +wall +of the +city +had +foundations +twelve +and +in +them +[the] twelve +names +of the +twelve +apostles +of the +Lamb +And +the [one] +speaking +with +me +had +a measuring +reed +golden +so that +he could measure +the +city +and +the +gates +of it +and +the +wall +of it +And +the +city +foursquare +lies +and +the +length +of it [is] +the same as +the +width +And +he measured +the +city +with the +reed +at +stadia +twelve +thousand +The +length +and +the +breadth +and +the +height +of it +equal +are +And +he measured +the +wall +of it +one hundred +forty +four +cubits +[the] measure +of man +that +is +of the angel +And +the +structure +of the +wall +of it +[was] jasper +and +the +city +gold +pure +like +glass +clear +the +foundations +of the +wall +of the +city +with every +stone +precious +having been adorned +the +foundation +- +first +jasper +the +second +sapphire +the +third +chalcedony +the +fourth +emerald +the +fifth +sardonyx +the +sixth +sardius +the +seventh +chrysolite +the +eighth +beryl +the +ninth +topaz +the +tenth +chrysoprase +the +eleventh +jacinth +the +twelfth +amethyst +And +the +twelve +gates [were] +twelve +pearls +respectively +one +each +of the +gates +was +of +one +pearl +and +the +street +of the +city +gold +pure +as +glass +transparent +And +temple +not +I saw +in +it +for +- +the Lord +- +God +- +Almighty +and +the +Lamb +temple +of it +is +And +the +city +no +has +need +of the +sun +nor +of the +moon +that +they should shine +in it +for +the +glory +- +of God +enlightened +it +and +the +lamp +of it +[is] the +Lamb +And +will walk +the +nations +by +the +light +of it +and +the +kings +of the +earth +bring +the +glory +of them +into +it +And +the +gates +of it +no +not +shall be shut +by day +for +night +not +will be +there +And +they will bring +the +glory +and +the +honor +of the +nations +into +it +And +no +not +shall enter +into +it +anything +defiling +and +those +practicing +abomination +and +a lie +if +not +those +having been written +in +the +book +- +of life +of the +Lamb +And +he showed +me +a river +of water +of life +clear +as +crystal +flowing +out of +the +throne +- +of God +and +of the +Lamb +In +the middle +of the +street +of it +and +of the +river +on this side +and +on that side +[was a] tree +of life +producing +fruits +twelve +according to +month +each +yielding +the +fruit +of it +and +the +leaves +of the +tree +[are] for +[the] healing +of the +nations +And +any +curse +not +there will be +any longer +And +the +throne +- +of God +and +of the +Lamb +in +it +will be +and +the +servants +of Him +will serve +Him +And +they will see +the +face +of Him +and +the +name +of Him +[will be] on +the +foreheads +of them +And +night +not +there will be +there +and +not +they have +need +of [the] light +of a lamp +and +of [the] light +of [the] sun +because +[the] Lord +- +God +will enlighten +upon +them +and +they will reign +to +the +ages +of the +ages +And +he said +to me +These +- +words +[are] faithful +and +true +And +the +Lord +the +God +of the +spirits +of the +prophets +sent +the +angel +of Him +to show +the +servants +of Him +the things that +come to pass +in +quickness +must +And +behold +I am coming +quickly +Blessed [is] +the [one] +keeping +the +words +of the +prophecy +of the +book +this +And I +John +[am] the [one] +hearing +and +seeing +these things +And +when +I heard +and +saw +I fell down +to worship +before +the +feet +of the +angel +- +showing +me +these things +And +he says +to me +See that you +not +I am +Fellow servant +of you +and +with the +brothers +of you +the +prophets +and +with those +keeping +the +words +of the +book +this +- +God +worship +And +he says +to me +Not +seal +the +words +of the +prophecy +of the +book +this +for +the +time +near +is +The [one] +being unrighteous +let him be unrighteous +still +and +he who +is filthy +let him be filthy +still +and +he who +[is] righteous +righteousness +let him practice +still +and +he who [is] +holy +let him be holy +still +Behold +I am coming +quickly +and +the +reward +of Me +[is] with +Me +to give +to each +as +the +work +his +is +I [am] +the +Alpha +and +the +Omega +the +First +and +the +Last +the +Beginning +and +the +End +Blessed [are] +those +washing +the +robes +of them +that +will be +the +right +of them +to +the +tree +- +of life +and +by the +gates +they shall enter +into +the +city +Outside [are] +the +dogs +and +the +sorcerers +and +the +sexually immoral +and +the +murderers +and +the +idolaters +and +everyone +loving +and +practicing +falsehood +I +Jesus +have sent +the +angel +of Me +to testify +to you +these things +in +the +churches +I +am +the +root +and +the +offspring +of David +the +star +- +bright +- +morning +And +the +Spirit +and +the +bride +say +Come +And +the [one] +hearing +let him say +Come +And +the [one] +thirsting +let him come +the [one] +desiring +let him take +[the] water +of life +freely +Testify +I +to everyone +- +hearing +the +words +of the +prophecy +of the +book +this +If +anyone +should add +to +these things +will add +- +God +unto +him +the +plagues +- +having been written +in +the +book +this +And +if +anyone +should take away +from +the +words +of the +book +of the +prophecy +this +will take away +- +God +the +part +of him +from +the +tree +- +of life +and +out of +the +city +- +holy +of those +having been written +in +the +book +this +Says +the [One] +testifying +these things +Yes +I am coming +quickly +Amen +Come +Lord +Jesus +The +grace +of the +Lord +Jesus +[be] with +all diff --git a/tf/0.1.1/id.tf b/tf/0.1.1/id.tf new file mode 100644 index 0000000..d1340ca --- /dev/null +++ b/tf/0.1.1/id.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=xml iD +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +n40001001001 +n40001001002 +n40001001003 +n40001001004 +n40001001005 +n40001001006 +n40001001007 +n40001001008 +n40001002001 +n40001002002 +n40001002003 +n40001002004 +n40001002006 +n40001002005 +n40001002007 +n40001002008 +n40001002009 +n40001002011 +n40001002010 +n40001002012 +n40001002013 +n40001002014 +n40001002015 +n40001002016 +n40001002017 +n40001002018 +n40001003002 +n40001003001 +n40001003003 +n40001003004 +n40001003005 +n40001003006 +n40001003007 +n40001003008 +n40001003009 +n40001003010 +n40001003011 +n40001003013 +n40001003012 +n40001003014 +n40001003015 +n40001003016 +n40001003018 +n40001003017 +n40001003019 +n40001003020 +n40001003021 +n40001004002 +n40001004001 +n40001004003 +n40001004004 +n40001004005 +n40001004007 +n40001004006 +n40001004008 +n40001004009 +n40001004010 +n40001004012 +n40001004011 +n40001004013 +n40001004014 +n40001004015 +n40001005002 +n40001005001 +n40001005003 +n40001005004 +n40001005005 +n40001005006 +n40001005007 +n40001005008 +n40001005010 +n40001005009 +n40001005011 +n40001005012 +n40001005013 +n40001005014 +n40001005015 +n40001005016 +n40001005018 +n40001005017 +n40001005019 +n40001005020 +n40001005021 +n40001006002 +n40001006001 +n40001006003 +n40001006004 +n40001006005 +n40001006006 +n40001006007 +n40001006009 +n40001006008 +n40001006010 +n40001006011 +n40001006012 +n40001006013 +n40001006014 +n40001006015 +n40001006016 +n40001007002 +n40001007001 +n40001007003 +n40001007004 +n40001007005 +n40001007007 +n40001007006 +n40001007008 +n40001007009 +n40001007010 +n40001007012 +n40001007011 +n40001007013 +n40001007014 +n40001007015 +n40001008002 +n40001008001 +n40001008003 +n40001008004 +n40001008005 +n40001008007 +n40001008006 +n40001008008 +n40001008009 +n40001008010 +n40001008012 +n40001008011 +n40001008013 +n40001008014 +n40001008015 +n40001009002 +n40001009001 +n40001009003 +n40001009004 +n40001009005 +n40001009007 +n40001009006 +n40001009008 +n40001009009 +n40001009010 +n40001009012 +n40001009011 +n40001009013 +n40001009014 +n40001009015 +n40001010002 +n40001010001 +n40001010003 +n40001010004 +n40001010005 +n40001010007 +n40001010006 +n40001010008 +n40001010009 +n40001010010 +n40001010012 +n40001010011 +n40001010013 +n40001010014 +n40001010015 +n40001011002 +n40001011001 +n40001011003 +n40001011004 +n40001011005 +n40001011006 +n40001011007 +n40001011008 +n40001011009 +n40001011010 +n40001011011 +n40001011012 +n40001011013 +n40001012002 +n40001012001 +n40001012003 +n40001012004 +n40001012005 +n40001012006 +n40001012007 +n40001012008 +n40001012009 +n40001012011 +n40001012010 +n40001012012 +n40001012013 +n40001012014 +n40001013002 +n40001013001 +n40001013003 +n40001013004 +n40001013005 +n40001013007 +n40001013006 +n40001013008 +n40001013009 +n40001013010 +n40001013012 +n40001013011 +n40001013013 +n40001013014 +n40001013015 +n40001014002 +n40001014001 +n40001014003 +n40001014004 +n40001014005 +n40001014007 +n40001014006 +n40001014008 +n40001014009 +n40001014010 +n40001014012 +n40001014011 +n40001014013 +n40001014014 +n40001014015 +n40001015002 +n40001015001 +n40001015003 +n40001015004 +n40001015005 +n40001015007 +n40001015006 +n40001015008 +n40001015009 +n40001015010 +n40001015012 +n40001015011 +n40001015013 +n40001015014 +n40001015015 +n40001016002 +n40001016001 +n40001016003 +n40001016004 +n40001016005 +n40001016006 +n40001016007 +n40001016008 +n40001016009 +n40001016010 +n40001016011 +n40001016012 +n40001016013 +n40001016014 +n40001016015 +n40001017002 +n40001017001 +n40001017003 +n40001017004 +n40001017005 +n40001017006 +n40001017007 +n40001017008 +n40001017009 +n40001017010 +n40001017011 +n40001017012 +n40001017013 +n40001017014 +n40001017015 +n40001017016 +n40001017017 +n40001017018 +n40001017019 +n40001017020 +n40001017021 +n40001017022 +n40001017023 +n40001017024 +n40001017025 +n40001017026 +n40001017027 +n40001017028 +n40001017029 +n40001018002 +n40001018001 +n40001018003 +n40001018004 +n40001018005 +n40001018006 +n40001018007 +n40001018008 +n40001018009 +n40001018010 +n40001018011 +n40001018012 +n40001018013 +n40001018014 +n40001018015 +n40001018016 +n40001018017 +n40001018018 +n40001018019 +n40001018020 +n40001018021 +n40001018022 +n40001018023 +n40001018024 +n40001018025 +n40001018026 +n40001019002 +n40001019001 +n40001019003 +n40001019004 +n40001019005 +n40001019006 +n40001019007 +n40001019008 +n40001019009 +n40001019010 +n40001019011 +n40001019012 +n40001019013 +n40001019014 +n40001019015 +n40001019016 +n40001020002 +n40001020001 +n40001020003 +n40001020004 +n40001020005 +n40001020006 +n40001020007 +n40001020008 +n40001020009 +n40001020010 +n40001020011 +n40001020012 +n40001020013 +n40001020014 +n40001020015 +n40001020016 +n40001020017 +n40001020018 +n40001020019 +n40001020020 +n40001020021 +n40001020022 +n40001020024 +n40001020023 +n40001020025 +n40001020026 +n40001020027 +n40001020028 +n40001020029 +n40001020031 +n40001020030 +n40001021002 +n40001021001 +n40001021003 +n40001021004 +n40001021005 +n40001021006 +n40001021007 +n40001021008 +n40001021009 +n40001021011 +n40001021010 +n40001021012 +n40001021013 +n40001021014 +n40001021015 +n40001021016 +n40001021017 +n40001021018 +n40001021019 +n40001022002 +n40001022001 +n40001022003 +n40001022004 +n40001022005 +n40001022006 +n40001022007 +n40001022008 +n40001022009 +n40001022010 +n40001022011 +n40001022012 +n40001022013 +n40001022014 +n40001023001 +n40001023002 +n40001023003 +n40001023004 +n40001023005 +n40001023006 +n40001023007 +n40001023008 +n40001023009 +n40001023010 +n40001023011 +n40001023012 +n40001023013 +n40001023014 +n40001023015 +n40001023016 +n40001023017 +n40001023018 +n40001023019 +n40001023020 +n40001023021 +n40001023022 +n40001024002 +n40001024003 +n40001024004 +n40001024001 +n40001024005 +n40001024006 +n40001024007 +n40001024008 +n40001024009 +n40001024010 +n40001024011 +n40001024012 +n40001024013 +n40001024014 +n40001024015 +n40001024016 +n40001024017 +n40001024018 +n40001024019 +n40001025001 +n40001025002 +n40001025003 +n40001025004 +n40001025005 +n40001025006 +n40001025007 +n40001025008 +n40001025009 +n40001025010 +n40001025011 +n40001025012 +n40001025013 +n40001025014 +n40002001002 +n40002001001 +n40002001003 +n40002001004 +n40002001005 +n40002001006 +n40002001007 +n40002001008 +n40002001009 +n40002001010 +n40002001011 +n40002001012 +n40002001013 +n40002001014 +n40002001015 +n40002001016 +n40002001017 +n40002001018 +n40002001019 +n40002001020 +n40002002001 +n40002002002 +n40002002003 +n40002002004 +n40002002005 +n40002002006 +n40002002007 +n40002002008 +n40002002010 +n40002002009 +n40002002011 +n40002002012 +n40002002013 +n40002002014 +n40002002015 +n40002002016 +n40002002017 +n40002002018 +n40002002019 +n40002002020 +n40002003002 +n40002003001 +n40002003003 +n40002003004 +n40002003005 +n40002003006 +n40002003007 +n40002003008 +n40002003009 +n40002003010 +n40002003011 +n40002004001 +n40002004002 +n40002004003 +n40002004004 +n40002004005 +n40002004006 +n40002004007 +n40002004008 +n40002004009 +n40002004010 +n40002004011 +n40002004012 +n40002004013 +n40002004014 +n40002004015 +n40002004016 +n40002005002 +n40002005001 +n40002005003 +n40002005004 +n40002005005 +n40002005006 +n40002005007 +n40002005008 +n40002005010 +n40002005009 +n40002005011 +n40002005012 +n40002005013 +n40002005014 +n40002006001 +n40002006003 +n40002006004 +n40002006005 +n40002006002 +n40002006006 +n40002006007 +n40002006008 +n40002006009 +n40002006010 +n40002006011 +n40002006012 +n40002006015 +n40002006013 +n40002006014 +n40002006016 +n40002006017 +n40002006018 +n40002006019 +n40002006020 +n40002006021 +n40002006022 +n40002006023 +n40002006024 +n40002007001 +n40002007002 +n40002007003 +n40002007004 +n40002007005 +n40002007006 +n40002007007 +n40002007008 +n40002007009 +n40002007010 +n40002007011 +n40002007012 +n40002007013 +n40002007014 +n40002008001 +n40002008002 +n40002008003 +n40002008004 +n40002008005 +n40002008006 +n40002008007 +n40002008008 +n40002008009 +n40002008010 +n40002008011 +n40002008012 +n40002008014 +n40002008013 +n40002008015 +n40002008016 +n40002008017 +n40002008018 +n40002008019 +n40002008020 +n40002008021 +n40002008022 +n40002009002 +n40002009001 +n40002009003 +n40002009004 +n40002009005 +n40002009006 +n40002009007 +n40002009008 +n40002009009 +n40002009010 +n40002009011 +n40002009012 +n40002009013 +n40002009014 +n40002009015 +n40002009016 +n40002009017 +n40002009018 +n40002009019 +n40002009020 +n40002009021 +n40002009022 +n40002009023 +n40002009024 +n40002009025 +n40002010002 +n40002010001 +n40002010003 +n40002010004 +n40002010005 +n40002010006 +n40002010007 +n40002010008 +n40002011001 +n40002011002 +n40002011003 +n40002011004 +n40002011005 +n40002011006 +n40002011007 +n40002011008 +n40002011009 +n40002011010 +n40002011011 +n40002011012 +n40002011013 +n40002011014 +n40002011015 +n40002011016 +n40002011017 +n40002011018 +n40002011019 +n40002011020 +n40002011021 +n40002011022 +n40002011023 +n40002011024 +n40002011025 +n40002011026 +n40002011027 +n40002011028 +n40002011029 +n40002011030 +n40002012001 +n40002012002 +n40002012003 +n40002012004 +n40002012005 +n40002012006 +n40002012007 +n40002012008 +n40002012009 +n40002012010 +n40002012011 +n40002012012 +n40002012013 +n40002012014 +n40002012015 +n40002012016 +n40002013002 +n40002013001 +n40002013003 +n40002013004 +n40002013005 +n40002013006 +n40002013007 +n40002013008 +n40002013009 +n40002013010 +n40002013011 +n40002013012 +n40002013013 +n40002013014 +n40002013015 +n40002013016 +n40002013017 +n40002013018 +n40002013019 +n40002013020 +n40002013021 +n40002013022 +n40002013023 +n40002013024 +n40002013025 +n40002013026 +n40002013027 +n40002013028 +n40002013029 +n40002013030 +n40002013031 +n40002013033 +n40002013032 +n40002013034 +n40002013035 +n40002013036 +n40002013037 +n40002013038 +n40002013039 +n40002013040 +n40002014002 +n40002014001 +n40002014003 +n40002014004 +n40002014005 +n40002014006 +n40002014007 +n40002014008 +n40002014009 +n40002014010 +n40002014011 +n40002014012 +n40002014013 +n40002014014 +n40002014015 +n40002015001 +n40002015002 +n40002015003 +n40002015004 +n40002015005 +n40002015006 +n40002015007 +n40002015008 +n40002015009 +n40002015010 +n40002015011 +n40002015012 +n40002015013 +n40002015014 +n40002015015 +n40002015016 +n40002015017 +n40002015018 +n40002015019 +n40002015020 +n40002015021 +n40002015022 +n40002015023 +n40002016001 +n40002016002 +n40002016003 +n40002016004 +n40002016005 +n40002016006 +n40002016007 +n40002016008 +n40002016009 +n40002016010 +n40002016011 +n40002016012 +n40002016013 +n40002016014 +n40002016015 +n40002016016 +n40002016017 +n40002016018 +n40002016019 +n40002016020 +n40002016021 +n40002016022 +n40002016023 +n40002016024 +n40002016025 +n40002016026 +n40002016027 +n40002016028 +n40002016029 +n40002016030 +n40002016031 +n40002016032 +n40002016033 +n40002016034 +n40002016035 +n40002016036 +n40002016037 +n40002017001 +n40002017002 +n40002017003 +n40002017004 +n40002017005 +n40002017006 +n40002017007 +n40002017008 +n40002017009 +n40002018002 +n40002018003 +n40002018004 +n40002018001 +n40002018005 +n40002018006 +n40002018007 +n40002018008 +n40002018009 +n40002018010 +n40002018011 +n40002018012 +n40002018013 +n40002018014 +n40002018015 +n40002018016 +n40002018017 +n40002018018 +n40002018019 +n40002018020 +n40002019002 +n40002019001 +n40002019003 +n40002019004 +n40002019005 +n40002019006 +n40002019007 +n40002019008 +n40002019009 +n40002019010 +n40002019011 +n40002019012 +n40002019013 +n40002019014 +n40002020001 +n40002020002 +n40002020003 +n40002020004 +n40002020005 +n40002020006 +n40002020007 +n40002020008 +n40002020009 +n40002020010 +n40002020011 +n40002020012 +n40002020013 +n40002020014 +n40002020016 +n40002020015 +n40002020017 +n40002020018 +n40002020019 +n40002020020 +n40002020021 +n40002020022 +n40002021002 +n40002021001 +n40002021003 +n40002021004 +n40002021005 +n40002021006 +n40002021007 +n40002021008 +n40002021009 +n40002021010 +n40002021011 +n40002021012 +n40002021013 +n40002021014 +n40002021015 +n40002022002 +n40002022001 +n40002022003 +n40002022004 +n40002022005 +n40002022006 +n40002022007 +n40002022008 +n40002022009 +n40002022010 +n40002022011 +n40002022012 +n40002022013 +n40002022014 +n40002022015 +n40002022017 +n40002022016 +n40002022018 +n40002022019 +n40002022020 +n40002022021 +n40002022022 +n40002022023 +n40002022024 +n40002022025 +n40002023001 +n40002023002 +n40002023003 +n40002023004 +n40002023005 +n40002023006 +n40002023007 +n40002023008 +n40002023009 +n40002023010 +n40002023011 +n40002023012 +n40002023013 +n40002023014 +n40002023015 +n40002023016 +n40002023017 +n40003001002 +n40003001001 +n40003001003 +n40003001004 +n40003001005 +n40003001006 +n40003001007 +n40003001008 +n40003001009 +n40003001010 +n40003001011 +n40003001012 +n40003001013 +n40003001014 +n40003001015 +n40003002001 +n40003002002 +n40003002004 +n40003002003 +n40003002005 +n40003002006 +n40003002007 +n40003002008 +n40003003002 +n40003003001 +n40003003003 +n40003003004 +n40003003005 +n40003003006 +n40003003007 +n40003003008 +n40003003009 +n40003003010 +n40003003011 +n40003003012 +n40003003013 +n40003003014 +n40003003015 +n40003003016 +n40003003017 +n40003003018 +n40003003019 +n40003003020 +n40003003021 +n40003003022 +n40003003023 +n40003003024 +n40003004002 +n40003004001 +n40003004003 +n40003004004 +n40003004005 +n40003004006 +n40003004007 +n40003004008 +n40003004009 +n40003004010 +n40003004011 +n40003004012 +n40003004013 +n40003004014 +n40003004015 +n40003004016 +n40003004017 +n40003004018 +n40003004020 +n40003004019 +n40003004021 +n40003004023 +n40003004022 +n40003004024 +n40003004025 +n40003004026 +n40003004027 +n40003005001 +n40003005002 +n40003005003 +n40003005004 +n40003005005 +n40003005006 +n40003005007 +n40003005008 +n40003005009 +n40003005010 +n40003005011 +n40003005012 +n40003005013 +n40003005014 +n40003005015 +n40003006001 +n40003006002 +n40003006003 +n40003006004 +n40003006005 +n40003006006 +n40003006007 +n40003006008 +n40003006009 +n40003006010 +n40003006011 +n40003006012 +n40003007002 +n40003007001 +n40003007003 +n40003007004 +n40003007005 +n40003007006 +n40003007007 +n40003007008 +n40003007009 +n40003007010 +n40003007011 +n40003007012 +n40003007013 +n40003007014 +n40003007015 +n40003007016 +n40003007017 +n40003007018 +n40003007019 +n40003007020 +n40003007021 +n40003007022 +n40003007023 +n40003008002 +n40003008001 +n40003008003 +n40003008004 +n40003008005 +n40003008006 +n40003009001 +n40003009002 +n40003009003 +n40003009004 +n40003009005 +n40003009006 +n40003009007 +n40003009008 +n40003009009 +n40003009010 +n40003009012 +n40003009011 +n40003009013 +n40003009014 +n40003009015 +n40003009016 +n40003009017 +n40003009018 +n40003009019 +n40003009020 +n40003009021 +n40003009022 +n40003009023 +n40003009024 +n40003009025 +n40003010002 +n40003010001 +n40003010003 +n40003010004 +n40003010005 +n40003010006 +n40003010007 +n40003010008 +n40003010009 +n40003010010 +n40003010012 +n40003010011 +n40003010013 +n40003010014 +n40003010015 +n40003010016 +n40003010017 +n40003010018 +n40003010019 +n40003010020 +n40003010021 +n40003010022 +n40003011002 +n40003011001 +n40003011003 +n40003011004 +n40003011005 +n40003011006 +n40003011007 +n40003011008 +n40003011010 +n40003011009 +n40003011011 +n40003011012 +n40003011013 +n40003011014 +n40003011015 +n40003011016 +n40003011017 +n40003011018 +n40003011019 +n40003011020 +n40003011021 +n40003011022 +n40003011023 +n40003011024 +n40003011025 +n40003011026 +n40003011027 +n40003011028 +n40003011029 +n40003011030 +n40003011031 +n40003012001 +n40003012002 +n40003012003 +n40003012004 +n40003012005 +n40003012006 +n40003012007 +n40003012008 +n40003012009 +n40003012010 +n40003012011 +n40003012012 +n40003012013 +n40003012014 +n40003012015 +n40003012016 +n40003012017 +n40003012018 +n40003012019 +n40003012020 +n40003012022 +n40003012021 +n40003012023 +n40003012024 +n40003012025 +n40003012026 +n40003013001 +n40003013002 +n40003013003 +n40003013004 +n40003013005 +n40003013006 +n40003013007 +n40003013008 +n40003013009 +n40003013010 +n40003013011 +n40003013012 +n40003013013 +n40003013014 +n40003013015 +n40003013016 +n40003013017 +n40003014002 +n40003014001 +n40003014003 +n40003014004 +n40003014005 +n40003014006 +n40003014007 +n40003014008 +n40003014009 +n40003014010 +n40003014011 +n40003014012 +n40003014013 +n40003014014 +n40003014015 +n40003014016 +n40003015002 +n40003015001 +n40003015003 +n40003015004 +n40003015005 +n40003015006 +n40003015007 +n40003015008 +n40003015010 +n40003015009 +n40003015011 +n40003015012 +n40003015013 +n40003015014 +n40003015015 +n40003015016 +n40003015017 +n40003015018 +n40003015019 +n40003016002 +n40003016001 +n40003016003 +n40003016004 +n40003016005 +n40003016006 +n40003016007 +n40003016008 +n40003016009 +n40003016010 +n40003016011 +n40003016012 +n40003016013 +n40003016014 +n40003016015 +n40003016016 +n40003016017 +n40003016018 +n40003016019 +n40003016020 +n40003016021 +n40003016022 +n40003016023 +n40003016024 +n40003017001 +n40003017002 +n40003017003 +n40003017004 +n40003017005 +n40003017006 +n40003017007 +n40003017008 +n40003017009 +n40003017010 +n40003017011 +n40003017012 +n40003017013 +n40003017014 +n40003017015 +n40003017016 +n40003017017 +n40004001001 +n40004001002 +n40004001003 +n40004001004 +n40004001005 +n40004001006 +n40004001007 +n40004001008 +n40004001009 +n40004001010 +n40004001011 +n40004001012 +n40004001013 +n40004001014 +n40004002001 +n40004002002 +n40004002003 +n40004002004 +n40004002005 +n40004002006 +n40004002007 +n40004002008 +n40004002009 +n40004003001 +n40004003002 +n40004003003 +n40004003004 +n40004003005 +n40004003006 +n40004003007 +n40004003009 +n40004003008 +n40004003010 +n40004003011 +n40004003012 +n40004003013 +n40004003014 +n40004003015 +n40004003016 +n40004003017 +n40004003018 +n40004004002 +n40004004001 +n40004004003 +n40004004004 +n40004004005 +n40004004006 +n40004004007 +n40004004008 +n40004004009 +n40004004010 +n40004004011 +n40004004012 +n40004004013 +n40004004014 +n40004004015 +n40004004016 +n40004004017 +n40004004018 +n40004004019 +n40004004020 +n40004005001 +n40004005002 +n40004005003 +n40004005004 +n40004005005 +n40004005006 +n40004005007 +n40004005008 +n40004005009 +n40004005010 +n40004005011 +n40004005012 +n40004005013 +n40004005014 +n40004005015 +n40004005016 +n40004005017 +n40004006001 +n40004006002 +n40004006003 +n40004006004 +n40004006006 +n40004006005 +n40004006007 +n40004006008 +n40004006009 +n40004006010 +n40004006011 +n40004006013 +n40004006012 +n40004006014 +n40004006015 +n40004006016 +n40004006017 +n40004006018 +n40004006019 +n40004006020 +n40004006021 +n40004006022 +n40004006023 +n40004006024 +n40004006025 +n40004006026 +n40004006027 +n40004006028 +n40004006029 +n40004006030 +n40004006031 +n40004006032 +n40004006033 +n40004007001 +n40004007002 +n40004007003 +n40004007004 +n40004007005 +n40004007006 +n40004007007 +n40004007008 +n40004007009 +n40004007010 +n40004007011 +n40004007012 +n40004008001 +n40004008002 +n40004008003 +n40004008004 +n40004008005 +n40004008006 +n40004008007 +n40004008008 +n40004008009 +n40004008010 +n40004008011 +n40004008012 +n40004008013 +n40004008014 +n40004008015 +n40004008016 +n40004008017 +n40004008018 +n40004008019 +n40004008020 +n40004008021 +n40004009001 +n40004009002 +n40004009003 +n40004009004 +n40004009006 +n40004009005 +n40004009007 +n40004009008 +n40004009009 +n40004009010 +n40004009011 +n40004010001 +n40004010002 +n40004010003 +n40004010004 +n40004010005 +n40004010006 +n40004010007 +n40004010009 +n40004010008 +n40004010010 +n40004010011 +n40004010012 +n40004010013 +n40004010014 +n40004010015 +n40004010016 +n40004010017 +n40004010018 +n40004011001 +n40004011002 +n40004011003 +n40004011004 +n40004011005 +n40004011006 +n40004011007 +n40004011008 +n40004011009 +n40004011010 +n40004011011 +n40004011012 +n40004012002 +n40004012001 +n40004012003 +n40004012004 +n40004012005 +n40004012006 +n40004012007 +n40004012008 +n40004012009 +n40004013001 +n40004013002 +n40004013003 +n40004013004 +n40004013005 +n40004013006 +n40004013007 +n40004013008 +n40004013009 +n40004013010 +n40004013011 +n40004013012 +n40004013013 +n40004013014 +n40004013015 +n40004014001 +n40004014002 +n40004014003 +n40004014004 +n40004014005 +n40004014006 +n40004014007 +n40004014008 +n40004014009 +n40004015001 +n40004015002 +n40004015003 +n40004015004 +n40004015005 +n40004015006 +n40004015007 +n40004015008 +n40004015009 +n40004015010 +n40004015011 +n40004015012 +n40004015013 +n40004016001 +n40004016002 +n40004016003 +n40004016004 +n40004016005 +n40004016006 +n40004016007 +n40004016009 +n40004016008 +n40004016010 +n40004016011 +n40004016012 +n40004016013 +n40004016014 +n40004016015 +n40004016016 +n40004016017 +n40004016018 +n40004016019 +n40004016020 +n40004017001 +n40004017002 +n40004017003 +n40004017004 +n40004017005 +n40004017006 +n40004017007 +n40004017008 +n40004017009 +n40004017011 +n40004017010 +n40004017012 +n40004017013 +n40004017014 +n40004017015 +n40004018002 +n40004018001 +n40004018003 +n40004018004 +n40004018005 +n40004018006 +n40004018007 +n40004018008 +n40004018009 +n40004018010 +n40004018011 +n40004018012 +n40004018013 +n40004018014 +n40004018015 +n40004018016 +n40004018017 +n40004018018 +n40004018019 +n40004018020 +n40004018021 +n40004018022 +n40004018023 +n40004018024 +n40004018026 +n40004018025 +n40004018027 +n40004019001 +n40004019002 +n40004019003 +n40004019004 +n40004019005 +n40004019006 +n40004019007 +n40004019008 +n40004019009 +n40004019010 +n40004019011 +n40004020002 +n40004020001 +n40004020003 +n40004020004 +n40004020005 +n40004020006 +n40004020007 +n40004020008 +n40004021001 +n40004021002 +n40004021003 +n40004021004 +n40004021005 +n40004021006 +n40004021007 +n40004021008 +n40004021009 +n40004021010 +n40004021011 +n40004021012 +n40004021013 +n40004021014 +n40004021015 +n40004021016 +n40004021017 +n40004021018 +n40004021019 +n40004021020 +n40004021021 +n40004021022 +n40004021023 +n40004021024 +n40004021025 +n40004021026 +n40004021027 +n40004021028 +n40004021029 +n40004021030 +n40004021031 +n40004022002 +n40004022001 +n40004022003 +n40004022004 +n40004022005 +n40004022006 +n40004022007 +n40004022008 +n40004022009 +n40004022010 +n40004022011 +n40004022012 +n40004023001 +n40004023002 +n40004023003 +n40004023004 +n40004023005 +n40004023006 +n40004023007 +n40004023008 +n40004023009 +n40004023010 +n40004023011 +n40004023012 +n40004023013 +n40004023014 +n40004023015 +n40004023016 +n40004023017 +n40004023018 +n40004023019 +n40004023020 +n40004023021 +n40004023022 +n40004023023 +n40004023024 +n40004023025 +n40004023026 +n40004023027 +n40004024001 +n40004024002 +n40004024003 +n40004024004 +n40004024005 +n40004024006 +n40004024007 +n40004024008 +n40004024009 +n40004024010 +n40004024011 +n40004024012 +n40004024013 +n40004024014 +n40004024015 +n40004024016 +n40004024017 +n40004024018 +n40004024019 +n40004024020 +n40004024021 +n40004024022 +n40004024023 +n40004024024 +n40004024025 +n40004024026 +n40004024027 +n40004024028 +n40004024029 +n40004025001 +n40004025002 +n40004025003 +n40004025004 +n40004025005 +n40004025006 +n40004025007 +n40004025008 +n40004025009 +n40004025010 +n40004025011 +n40004025012 +n40004025013 +n40004025014 +n40004025015 +n40004025016 +n40004025017 +n40004025018 +n40005001002 +n40005001001 +n40005001003 +n40005001004 +n40005001005 +n40005001006 +n40005001007 +n40005001008 +n40005001009 +n40005001010 +n40005001011 +n40005001012 +n40005001013 +n40005001014 +n40005001015 +n40005001016 +n40005002001 +n40005002002 +n40005002003 +n40005002004 +n40005002005 +n40005002006 +n40005002007 +n40005002008 +n40005003001 +n40005003002 +n40005003003 +n40005003004 +n40005003005 +n40005003006 +n40005003007 +n40005003008 +n40005003009 +n40005003010 +n40005003011 +n40005003012 +n40005004001 +n40005004002 +n40005004003 +n40005004004 +n40005004005 +n40005004006 +n40005005001 +n40005005002 +n40005005003 +n40005005004 +n40005005005 +n40005005006 +n40005005007 +n40005005008 +n40005006001 +n40005006002 +n40005006003 +n40005006004 +n40005006005 +n40005006006 +n40005006007 +n40005006008 +n40005006009 +n40005006010 +n40005007001 +n40005007002 +n40005007003 +n40005007004 +n40005007005 +n40005007006 +n40005008001 +n40005008002 +n40005008003 +n40005008004 +n40005008005 +n40005008006 +n40005008007 +n40005008008 +n40005008009 +n40005008010 +n40005009001 +n40005009002 +n40005009003 +n40005009004 +n40005009005 +n40005009006 +n40005009007 +n40005009008 +n40005010001 +n40005010002 +n40005010003 +n40005010004 +n40005010005 +n40005010006 +n40005010007 +n40005010008 +n40005010009 +n40005010010 +n40005010011 +n40005010012 +n40005011001 +n40005011002 +n40005011003 +n40005011004 +n40005011005 +n40005011006 +n40005011007 +n40005011008 +n40005011009 +n40005011010 +n40005011011 +n40005011012 +n40005011013 +n40005011014 +n40005011015 +n40005011016 +n40005012001 +n40005012002 +n40005012003 +n40005012004 +n40005012005 +n40005012006 +n40005012007 +n40005012008 +n40005012009 +n40005012010 +n40005012011 +n40005012013 +n40005012012 +n40005012014 +n40005012015 +n40005012016 +n40005012017 +n40005012018 +n40005012019 +n40005013001 +n40005013002 +n40005013003 +n40005013004 +n40005013005 +n40005013006 +n40005013008 +n40005013007 +n40005013009 +n40005013010 +n40005013011 +n40005013012 +n40005013013 +n40005013014 +n40005013015 +n40005013016 +n40005013017 +n40005013018 +n40005013019 +n40005013020 +n40005013021 +n40005013022 +n40005013023 +n40005013024 +n40005013025 +n40005013026 +n40005014001 +n40005014002 +n40005014003 +n40005014004 +n40005014005 +n40005014006 +n40005014007 +n40005014008 +n40005014009 +n40005014010 +n40005014011 +n40005014012 +n40005014013 +n40005015001 +n40005015002 +n40005015003 +n40005015004 +n40005015005 +n40005015006 +n40005015007 +n40005015008 +n40005015009 +n40005015010 +n40005015011 +n40005015012 +n40005015013 +n40005015014 +n40005015015 +n40005015016 +n40005015017 +n40005015018 +n40005015019 +n40005015020 +n40005016001 +n40005016002 +n40005016003 +n40005016004 +n40005016005 +n40005016006 +n40005016007 +n40005016008 +n40005016009 +n40005016010 +n40005016011 +n40005016012 +n40005016013 +n40005016014 +n40005016015 +n40005016016 +n40005016017 +n40005016018 +n40005016019 +n40005016020 +n40005016021 +n40005016022 +n40005016023 +n40005017001 +n40005017002 +n40005017003 +n40005017004 +n40005017005 +n40005017006 +n40005017007 +n40005017008 +n40005017009 +n40005017010 +n40005017011 +n40005017012 +n40005017013 +n40005017014 +n40005017015 +n40005018002 +n40005018001 +n40005018003 +n40005018004 +n40005018005 +n40005018006 +n40005018007 +n40005018008 +n40005018009 +n40005018010 +n40005018011 +n40005018012 +n40005018013 +n40005018014 +n40005018015 +n40005018016 +n40005018017 +n40005018018 +n40005018019 +n40005018020 +n40005018021 +n40005018022 +n40005018023 +n40005018024 +n40005018025 +n40005018026 +n40005018027 +n40005019003 +n40005019002 +n40005019001 +n40005019004 +n40005019005 +n40005019006 +n40005019007 +n40005019008 +n40005019009 +n40005019010 +n40005019011 +n40005019012 +n40005019013 +n40005019014 +n40005019015 +n40005019016 +n40005019017 +n40005019018 +n40005019019 +n40005019020 +n40005019021 +n40005019022 +n40005019024 +n40005019025 +n40005019023 +n40005019026 +n40005019027 +n40005019028 +n40005019029 +n40005019030 +n40005019031 +n40005019032 +n40005019033 +n40005019034 +n40005019035 +n40005019036 +n40005020002 +n40005020001 +n40005020003 +n40005020004 +n40005020005 +n40005020006 +n40005020007 +n40005020008 +n40005020009 +n40005020010 +n40005020011 +n40005020012 +n40005020013 +n40005020014 +n40005020015 +n40005020016 +n40005020017 +n40005020018 +n40005020019 +n40005020020 +n40005020021 +n40005020022 +n40005020023 +n40005021001 +n40005021002 +n40005021003 +n40005021004 +n40005021005 +n40005021006 +n40005021007 +n40005021009 +n40005021010 +n40005021008 +n40005021011 +n40005021012 +n40005021013 +n40005021014 +n40005021015 +n40005022002 +n40005022001 +n40005022003 +n40005022004 +n40005022005 +n40005022006 +n40005022007 +n40005022008 +n40005022009 +n40005022010 +n40005022011 +n40005022012 +n40005022013 +n40005022014 +n40005022015 +n40005022017 +n40005022018 +n40005022016 +n40005022019 +n40005022020 +n40005022021 +n40005022022 +n40005022023 +n40005022024 +n40005022025 +n40005022026 +n40005022027 +n40005022029 +n40005022030 +n40005022028 +n40005022031 +n40005022032 +n40005022033 +n40005022034 +n40005022035 +n40005022036 +n40005022037 +n40005022038 +n40005022039 +n40005023002 +n40005023001 +n40005023003 +n40005023004 +n40005023005 +n40005023006 +n40005023007 +n40005023008 +n40005023009 +n40005023010 +n40005023011 +n40005023012 +n40005023013 +n40005023014 +n40005023015 +n40005023016 +n40005023017 +n40005023018 +n40005023019 +n40005024001 +n40005024002 +n40005024003 +n40005024004 +n40005024005 +n40005024006 +n40005024007 +n40005024008 +n40005024009 +n40005024010 +n40005024011 +n40005024012 +n40005024013 +n40005024014 +n40005024015 +n40005024016 +n40005024017 +n40005024018 +n40005024019 +n40005024020 +n40005024021 +n40005024022 +n40005025001 +n40005025002 +n40005025003 +n40005025004 +n40005025005 +n40005025006 +n40005025007 +n40005025008 +n40005025009 +n40005025010 +n40005025011 +n40005025012 +n40005025013 +n40005025014 +n40005025015 +n40005025016 +n40005025017 +n40005025018 +n40005025019 +n40005025020 +n40005025021 +n40005025022 +n40005025023 +n40005025024 +n40005025025 +n40005025026 +n40005025027 +n40005025028 +n40005025029 +n40005025030 +n40005025031 +n40005026001 +n40005026002 +n40005026003 +n40005026004 +n40005026005 +n40005026006 +n40005026007 +n40005026008 +n40005026009 +n40005026010 +n40005026011 +n40005026012 +n40005026013 +n40005027001 +n40005027002 +n40005027003 +n40005027004 +n40005027005 +n40005028002 +n40005028001 +n40005028003 +n40005028004 +n40005028005 +n40005028006 +n40005028007 +n40005028008 +n40005028009 +n40005028010 +n40005028011 +n40005028012 +n40005028013 +n40005028014 +n40005028015 +n40005028016 +n40005028017 +n40005028018 +n40005028019 +n40005028020 +n40005029002 +n40005029001 +n40005029003 +n40005029004 +n40005029005 +n40005029006 +n40005029007 +n40005029008 +n40005029009 +n40005029010 +n40005029011 +n40005029012 +n40005029013 +n40005029014 +n40005029015 +n40005029017 +n40005029016 +n40005029018 +n40005029019 +n40005029020 +n40005029021 +n40005029022 +n40005029023 +n40005029024 +n40005029025 +n40005029026 +n40005029027 +n40005029028 +n40005029029 +n40005029030 +n40005029031 +n40005029032 +n40005029033 +n40005030001 +n40005030002 +n40005030003 +n40005030004 +n40005030005 +n40005030006 +n40005030007 +n40005030008 +n40005030009 +n40005030010 +n40005030011 +n40005030012 +n40005030013 +n40005030014 +n40005030016 +n40005030015 +n40005030017 +n40005030018 +n40005030019 +n40005030020 +n40005030021 +n40005030022 +n40005030023 +n40005030024 +n40005030025 +n40005030026 +n40005030027 +n40005030028 +n40005030029 +n40005030030 +n40005030031 +n40005030032 +n40005031002 +n40005031001 +n40005031004 +n40005031003 +n40005031005 +n40005031006 +n40005031007 +n40005031008 +n40005031009 +n40005031010 +n40005031011 +n40005032002 +n40005032001 +n40005032003 +n40005032004 +n40005032005 +n40005032006 +n40005032007 +n40005032008 +n40005032009 +n40005032010 +n40005032011 +n40005032012 +n40005032013 +n40005032014 +n40005032015 +n40005032016 +n40005032017 +n40005032018 +n40005032020 +n40005032019 +n40005032021 +n40005032022 +n40005032023 +n40005033001 +n40005033002 +n40005033003 +n40005033004 +n40005033005 +n40005033006 +n40005033007 +n40005033008 +n40005033010 +n40005033009 +n40005033011 +n40005033012 +n40005033013 +n40005033014 +n40005033015 +n40005034002 +n40005034001 +n40005034003 +n40005034004 +n40005034005 +n40005034006 +n40005034007 +n40005034008 +n40005034009 +n40005034010 +n40005034011 +n40005034012 +n40005034014 +n40005034013 +n40005034015 +n40005034016 +n40005035001 +n40005035002 +n40005035003 +n40005035004 +n40005035005 +n40005035007 +n40005035006 +n40005035008 +n40005035009 +n40005035010 +n40005035011 +n40005035012 +n40005035013 +n40005035014 +n40005035016 +n40005035015 +n40005035017 +n40005035018 +n40005035019 +n40005036001 +n40005036002 +n40005036003 +n40005036004 +n40005036005 +n40005036006 +n40005036007 +n40005036008 +n40005036009 +n40005036010 +n40005036011 +n40005036013 +n40005036012 +n40005036014 +n40005036015 +n40005037002 +n40005037001 +n40005037003 +n40005037004 +n40005037005 +n40005037006 +n40005037007 +n40005037008 +n40005037009 +n40005037011 +n40005037010 +n40005037012 +n40005037013 +n40005037014 +n40005037015 +n40005037016 +n40005037017 +n40005038001 +n40005038002 +n40005038003 +n40005038004 +n40005038005 +n40005038006 +n40005038007 +n40005038008 +n40005038009 +n40005038010 +n40005039002 +n40005039001 +n40005039003 +n40005039004 +n40005039005 +n40005039006 +n40005039007 +n40005039008 +n40005039009 +n40005039010 +n40005039011 +n40005039012 +n40005039013 +n40005039014 +n40005039015 +n40005039016 +n40005039017 +n40005039018 +n40005039019 +n40005039020 +n40005039021 +n40005039022 +n40005040001 +n40005040002 +n40005040003 +n40005040004 +n40005040005 +n40005040006 +n40005040007 +n40005040008 +n40005040009 +n40005040010 +n40005040011 +n40005040012 +n40005040013 +n40005040014 +n40005040015 +n40005041001 +n40005041002 +n40005041003 +n40005041004 +n40005041005 +n40005041006 +n40005041007 +n40005041008 +n40005041009 +n40005041010 +n40005042001 +n40005042002 +n40005042003 +n40005042004 +n40005042005 +n40005042006 +n40005042007 +n40005042008 +n40005042009 +n40005042010 +n40005042011 +n40005042012 +n40005043001 +n40005043002 +n40005043003 +n40005043004 +n40005043005 +n40005043006 +n40005043007 +n40005043008 +n40005043009 +n40005043010 +n40005043011 +n40005043012 +n40005044002 +n40005044001 +n40005044003 +n40005044004 +n40005044005 +n40005044006 +n40005044007 +n40005044008 +n40005044009 +n40005044010 +n40005044011 +n40005044012 +n40005044013 +n40005044014 +n40005045001 +n40005045002 +n40005045003 +n40005045004 +n40005045005 +n40005045006 +n40005045007 +n40005045008 +n40005045009 +n40005045010 +n40005045011 +n40005045012 +n40005045013 +n40005045014 +n40005045015 +n40005045016 +n40005045017 +n40005045018 +n40005045019 +n40005045020 +n40005045021 +n40005045022 +n40005045023 +n40005045024 +n40005046002 +n40005046001 +n40005046003 +n40005046004 +n40005046005 +n40005046006 +n40005046007 +n40005046008 +n40005046009 +n40005046010 +n40005046011 +n40005046012 +n40005046013 +n40005046014 +n40005046015 +n40005046016 +n40005047001 +n40005047002 +n40005047003 +n40005047004 +n40005047005 +n40005047006 +n40005047007 +n40005047008 +n40005047009 +n40005047010 +n40005047011 +n40005047012 +n40005047013 +n40005047014 +n40005047015 +n40005047016 +n40005047017 +n40005048002 +n40005048001 +n40005048003 +n40005048004 +n40005048005 +n40005048006 +n40005048007 +n40005048008 +n40005048009 +n40005048010 +n40005048011 +n40005048012 +n40006001002 +n40006001001 +n40006001003 +n40006001004 +n40006001005 +n40006001006 +n40006001007 +n40006001008 +n40006001009 +n40006001010 +n40006001011 +n40006001012 +n40006001013 +n40006001014 +n40006001016 +n40006001015 +n40006001017 +n40006001018 +n40006001019 +n40006001020 +n40006001021 +n40006001022 +n40006001023 +n40006001024 +n40006001025 +n40006001026 +n40006001027 +n40006001028 +n40006002002 +n40006002001 +n40006002003 +n40006002004 +n40006002005 +n40006002006 +n40006002007 +n40006002008 +n40006002009 +n40006002010 +n40006002011 +n40006002012 +n40006002013 +n40006002014 +n40006002015 +n40006002016 +n40006002017 +n40006002018 +n40006002019 +n40006002020 +n40006002021 +n40006002022 +n40006002023 +n40006002024 +n40006002025 +n40006002026 +n40006002027 +n40006002028 +n40006002029 +n40006002030 +n40006002031 +n40006003002 +n40006003001 +n40006003003 +n40006003004 +n40006003005 +n40006003006 +n40006003007 +n40006003008 +n40006003009 +n40006003010 +n40006003011 +n40006003012 +n40006003013 +n40006003014 +n40006004001 +n40006004002 +n40006004003 +n40006004004 +n40006004005 +n40006004006 +n40006004007 +n40006004008 +n40006004009 +n40006004010 +n40006004011 +n40006004012 +n40006004013 +n40006004014 +n40006004015 +n40006004016 +n40006004017 +n40006004018 +n40006004019 +n40006005001 +n40006005002 +n40006005003 +n40006005004 +n40006005005 +n40006005006 +n40006005007 +n40006005008 +n40006005009 +n40006005010 +n40006005011 +n40006005012 +n40006005013 +n40006005014 +n40006005015 +n40006005016 +n40006005017 +n40006005018 +n40006005019 +n40006005020 +n40006005021 +n40006005022 +n40006005023 +n40006005024 +n40006005025 +n40006005026 +n40006005027 +n40006005028 +n40006005029 +n40006005030 +n40006005031 +n40006005032 +n40006006002 +n40006006003 +n40006006001 +n40006006004 +n40006006005 +n40006006006 +n40006006007 +n40006006008 +n40006006009 +n40006006010 +n40006006011 +n40006006012 +n40006006013 +n40006006014 +n40006006015 +n40006006016 +n40006006017 +n40006006018 +n40006006019 +n40006006020 +n40006006021 +n40006006022 +n40006006023 +n40006006024 +n40006006025 +n40006006026 +n40006006027 +n40006006028 +n40006006029 +n40006006030 +n40006006031 +n40006006032 +n40006006033 +n40006007002 +n40006007001 +n40006007003 +n40006007004 +n40006007005 +n40006007006 +n40006007007 +n40006007009 +n40006007008 +n40006007010 +n40006007011 +n40006007012 +n40006007013 +n40006007014 +n40006007015 +n40006008002 +n40006008001 +n40006008003 +n40006008004 +n40006008006 +n40006008005 +n40006008007 +n40006008008 +n40006008009 +n40006008010 +n40006008011 +n40006008012 +n40006008013 +n40006008014 +n40006008015 +n40006008016 +n40006008017 +n40006009002 +n40006009001 +n40006009003 +n40006009004 +n40006009005 +n40006009006 +n40006009007 +n40006009008 +n40006009009 +n40006009010 +n40006009011 +n40006009012 +n40006009013 +n40006009014 +n40006010001 +n40006010002 +n40006010003 +n40006010004 +n40006010005 +n40006010006 +n40006010007 +n40006010008 +n40006010009 +n40006010010 +n40006010011 +n40006010012 +n40006010013 +n40006010014 +n40006011001 +n40006011002 +n40006011003 +n40006011004 +n40006011005 +n40006011006 +n40006011007 +n40006011008 +n40006012001 +n40006012002 +n40006012003 +n40006012004 +n40006012005 +n40006012006 +n40006012007 +n40006012008 +n40006012009 +n40006012010 +n40006012011 +n40006012012 +n40006012013 +n40006013001 +n40006013002 +n40006013003 +n40006013004 +n40006013005 +n40006013006 +n40006013007 +n40006013008 +n40006013009 +n40006013010 +n40006013011 +n40006013012 +n40006014002 +n40006014001 +n40006014003 +n40006014004 +n40006014005 +n40006014006 +n40006014007 +n40006014008 +n40006014009 +n40006014010 +n40006014011 +n40006014012 +n40006014013 +n40006014014 +n40006014015 +n40006014016 +n40006015002 +n40006015001 +n40006015003 +n40006015004 +n40006015005 +n40006015006 +n40006015007 +n40006015008 +n40006015009 +n40006015010 +n40006015011 +n40006015012 +n40006015013 +n40006015014 +n40006016002 +n40006016001 +n40006016003 +n40006016004 +n40006016005 +n40006016006 +n40006016007 +n40006016008 +n40006016009 +n40006016011 +n40006016010 +n40006016012 +n40006016013 +n40006016014 +n40006016015 +n40006016016 +n40006016017 +n40006016018 +n40006016019 +n40006016020 +n40006016021 +n40006016022 +n40006016023 +n40006016024 +n40006016025 +n40006016026 +n40006017002 +n40006017001 +n40006017003 +n40006017004 +n40006017005 +n40006017006 +n40006017007 +n40006017008 +n40006017009 +n40006017010 +n40006017011 +n40006017012 +n40006018001 +n40006018002 +n40006018003 +n40006018004 +n40006018005 +n40006018006 +n40006018007 +n40006018008 +n40006018009 +n40006018010 +n40006018011 +n40006018012 +n40006018013 +n40006018014 +n40006018015 +n40006018016 +n40006018017 +n40006018018 +n40006018019 +n40006018020 +n40006018021 +n40006018022 +n40006018023 +n40006018024 +n40006018025 +n40006019001 +n40006019002 +n40006019003 +n40006019004 +n40006019005 +n40006019006 +n40006019007 +n40006019008 +n40006019009 +n40006019010 +n40006019011 +n40006019012 +n40006019013 +n40006019014 +n40006019015 +n40006019016 +n40006019017 +n40006019018 +n40006020002 +n40006020001 +n40006020003 +n40006020004 +n40006020005 +n40006020006 +n40006020007 +n40006020008 +n40006020009 +n40006020010 +n40006020011 +n40006020012 +n40006020013 +n40006020014 +n40006020015 +n40006020016 +n40006020017 +n40006020018 +n40006020019 +n40006021002 +n40006021001 +n40006021003 +n40006021004 +n40006021005 +n40006021006 +n40006021007 +n40006021008 +n40006021009 +n40006021010 +n40006021011 +n40006021012 +n40006022001 +n40006022002 +n40006022003 +n40006022004 +n40006022005 +n40006022006 +n40006022007 +n40006022009 +n40006022008 +n40006022010 +n40006022011 +n40006022012 +n40006022013 +n40006022014 +n40006022015 +n40006022016 +n40006022017 +n40006022018 +n40006022019 +n40006022020 +n40006023002 +n40006023001 +n40006023003 +n40006023004 +n40006023005 +n40006023006 +n40006023007 +n40006023008 +n40006023009 +n40006023010 +n40006023011 +n40006023012 +n40006023013 +n40006023015 +n40006023014 +n40006023016 +n40006023017 +n40006023018 +n40006023019 +n40006023020 +n40006023021 +n40006023022 +n40006023023 +n40006023024 +n40006023025 +n40006024001 +n40006024002 +n40006024003 +n40006024004 +n40006024005 +n40006024007 +n40006024006 +n40006024008 +n40006024009 +n40006024010 +n40006024011 +n40006024012 +n40006024013 +n40006024014 +n40006024015 +n40006024016 +n40006024017 +n40006024018 +n40006024019 +n40006024020 +n40006024021 +n40006024022 +n40006024023 +n40006024024 +n40006024025 +n40006024026 +n40006024027 +n40006025001 +n40006025002 +n40006025003 +n40006025004 +n40006025005 +n40006025006 +n40006025007 +n40006025008 +n40006025009 +n40006025010 +n40006025011 +n40006025012 +n40006025013 +n40006025014 +n40006025015 +n40006025016 +n40006025017 +n40006025018 +n40006025019 +n40006025020 +n40006025021 +n40006025022 +n40006025023 +n40006025024 +n40006025025 +n40006025026 +n40006025027 +n40006025028 +n40006025029 +n40006025030 +n40006025031 +n40006025032 +n40006026001 +n40006026002 +n40006026003 +n40006026004 +n40006026005 +n40006026006 +n40006026007 +n40006026008 +n40006026009 +n40006026010 +n40006026011 +n40006026012 +n40006026013 +n40006026014 +n40006026015 +n40006026016 +n40006026017 +n40006026018 +n40006026019 +n40006026020 +n40006026021 +n40006026022 +n40006026023 +n40006026024 +n40006026025 +n40006026026 +n40006026027 +n40006026028 +n40006027002 +n40006027001 +n40006027003 +n40006027004 +n40006027005 +n40006027006 +n40006027007 +n40006027008 +n40006027009 +n40006027010 +n40006027011 +n40006027012 +n40006027013 +n40006028001 +n40006028002 +n40006028003 +n40006028004 +n40006028005 +n40006028006 +n40006028007 +n40006028008 +n40006028009 +n40006028010 +n40006028011 +n40006028012 +n40006028013 +n40006028014 +n40006028015 +n40006028016 +n40006029002 +n40006029001 +n40006029003 +n40006029004 +n40006029005 +n40006029006 +n40006029007 +n40006029008 +n40006029009 +n40006029010 +n40006029011 +n40006029012 +n40006029013 +n40006029014 +n40006029015 +n40006030002 +n40006030001 +n40006030003 +n40006030004 +n40006030005 +n40006030006 +n40006030007 +n40006030008 +n40006030009 +n40006030010 +n40006030011 +n40006030012 +n40006030013 +n40006030014 +n40006030015 +n40006030016 +n40006030017 +n40006030018 +n40006030019 +n40006030020 +n40006030021 +n40006030022 +n40006031002 +n40006031001 +n40006031003 +n40006031004 +n40006031005 +n40006031006 +n40006031007 +n40006031008 +n40006031009 +n40006031010 +n40006031011 +n40006031012 +n40006032002 +n40006032001 +n40006032003 +n40006032004 +n40006032005 +n40006032006 +n40006032008 +n40006032007 +n40006032009 +n40006032010 +n40006032011 +n40006032012 +n40006032013 +n40006032014 +n40006032015 +n40006032016 +n40006032017 +n40006033002 +n40006033001 +n40006033003 +n40006033004 +n40006033005 +n40006033006 +n40006033007 +n40006033008 +n40006033009 +n40006033010 +n40006033011 +n40006033012 +n40006033013 +n40006033014 +n40006034002 +n40006034001 +n40006034003 +n40006034004 +n40006034005 +n40006034006 +n40006034008 +n40006034007 +n40006034009 +n40006034010 +n40006034011 +n40006034012 +n40006034013 +n40006034014 +n40006034015 +n40006034016 +n40006034017 +n40007001001 +n40007001002 +n40007001003 +n40007001004 +n40007001005 +n40007002003 +n40007002001 +n40007002002 +n40007002004 +n40007002005 +n40007002006 +n40007002007 +n40007002008 +n40007002009 +n40007002010 +n40007002011 +n40007002012 +n40007002013 +n40007003002 +n40007003001 +n40007003003 +n40007003004 +n40007003005 +n40007003006 +n40007003007 +n40007003008 +n40007003009 +n40007003010 +n40007003011 +n40007003012 +n40007003014 +n40007003013 +n40007003015 +n40007003016 +n40007003017 +n40007003018 +n40007003019 +n40007003020 +n40007003021 +n40007004001 +n40007004002 +n40007004003 +n40007004004 +n40007004005 +n40007004006 +n40007004007 +n40007004008 +n40007004009 +n40007004010 +n40007004011 +n40007004012 +n40007004013 +n40007004014 +n40007004015 +n40007004016 +n40007004017 +n40007004018 +n40007004019 +n40007004020 +n40007004021 +n40007004022 +n40007005001 +n40007005002 +n40007005003 +n40007005004 +n40007005005 +n40007005006 +n40007005007 +n40007005008 +n40007005009 +n40007005010 +n40007005011 +n40007005012 +n40007005013 +n40007005014 +n40007005015 +n40007005016 +n40007005017 +n40007005018 +n40007005019 +n40007005020 +n40007005021 +n40007006001 +n40007006002 +n40007006003 +n40007006004 +n40007006005 +n40007006006 +n40007006007 +n40007006008 +n40007006009 +n40007006010 +n40007006011 +n40007006012 +n40007006013 +n40007006014 +n40007006015 +n40007006016 +n40007006017 +n40007006018 +n40007006019 +n40007006020 +n40007006021 +n40007006022 +n40007006023 +n40007006024 +n40007006025 +n40007006026 +n40007007001 +n40007007002 +n40007007003 +n40007007004 +n40007007005 +n40007007006 +n40007007007 +n40007007008 +n40007007009 +n40007007010 +n40007007011 +n40007008002 +n40007008001 +n40007008003 +n40007008004 +n40007008005 +n40007008006 +n40007008007 +n40007008008 +n40007008009 +n40007008010 +n40007008011 +n40007008012 +n40007008013 +n40007009001 +n40007009003 +n40007009004 +n40007009005 +n40007009002 +n40007009006 +n40007009007 +n40007009008 +n40007009009 +n40007009010 +n40007009011 +n40007009012 +n40007009013 +n40007009014 +n40007009015 +n40007009016 +n40007010001 +n40007010002 +n40007010003 +n40007010004 +n40007010005 +n40007010006 +n40007010007 +n40007010008 +n40007011002 +n40007011001 +n40007011003 +n40007011004 +n40007011005 +n40007011006 +n40007011007 +n40007011008 +n40007011009 +n40007011010 +n40007011011 +n40007011012 +n40007011013 +n40007011014 +n40007011015 +n40007011016 +n40007011017 +n40007011018 +n40007011019 +n40007011020 +n40007011021 +n40007011022 +n40007011023 +n40007011024 +n40007011025 +n40007011026 +n40007012002 +n40007012001 +n40007012004 +n40007012003 +n40007012005 +n40007012006 +n40007012007 +n40007012008 +n40007012009 +n40007012010 +n40007012011 +n40007012012 +n40007012013 +n40007012014 +n40007012015 +n40007012017 +n40007012016 +n40007012018 +n40007012019 +n40007012020 +n40007012021 +n40007012022 +n40007012023 +n40007013001 +n40007013002 +n40007013003 +n40007013004 +n40007013005 +n40007013006 +n40007013007 +n40007013008 +n40007013009 +n40007013010 +n40007013011 +n40007013012 +n40007013013 +n40007013014 +n40007013015 +n40007013016 +n40007013017 +n40007013018 +n40007013019 +n40007013020 +n40007013021 +n40007013022 +n40007013023 +n40007013024 +n40007013025 +n40007014001 +n40007014002 +n40007014003 +n40007014004 +n40007014005 +n40007014006 +n40007014007 +n40007014008 +n40007014009 +n40007014010 +n40007014011 +n40007014012 +n40007014013 +n40007014014 +n40007014015 +n40007014016 +n40007014017 +n40007014018 +n40007014019 +n40007015001 +n40007015002 +n40007015003 +n40007015004 +n40007015005 +n40007015006 +n40007015007 +n40007015008 +n40007015009 +n40007015010 +n40007015011 +n40007015013 +n40007015012 +n40007015014 +n40007015015 +n40007015016 +n40007016001 +n40007016002 +n40007016003 +n40007016004 +n40007016005 +n40007016006 +n40007016007 +n40007016008 +n40007016009 +n40007016010 +n40007016011 +n40007016012 +n40007016013 +n40007016014 +n40007016015 +n40007017001 +n40007017002 +n40007017003 +n40007017004 +n40007017005 +n40007017006 +n40007017007 +n40007017009 +n40007017008 +n40007017010 +n40007017011 +n40007017012 +n40007017013 +n40007017014 +n40007018001 +n40007018002 +n40007018003 +n40007018004 +n40007018005 +n40007018006 +n40007018007 +n40007018008 +n40007018009 +n40007018010 +n40007018011 +n40007018012 +n40007018013 +n40007019001 +n40007019002 +n40007019003 +n40007019004 +n40007019005 +n40007019006 +n40007019007 +n40007019008 +n40007019009 +n40007019010 +n40007019011 +n40007020001 +n40007020002 +n40007020003 +n40007020004 +n40007020005 +n40007020006 +n40007020007 +n40007021001 +n40007021002 +n40007021003 +n40007021004 +n40007021005 +n40007021006 +n40007021007 +n40007021008 +n40007021009 +n40007021010 +n40007021011 +n40007021012 +n40007021013 +n40007021014 +n40007021015 +n40007021016 +n40007021017 +n40007021018 +n40007021019 +n40007021020 +n40007021021 +n40007021022 +n40007021023 +n40007021024 +n40007021025 +n40007022001 +n40007022002 +n40007022003 +n40007022004 +n40007022005 +n40007022006 +n40007022007 +n40007022008 +n40007022009 +n40007022010 +n40007022011 +n40007022012 +n40007022013 +n40007022014 +n40007022015 +n40007022016 +n40007022017 +n40007022018 +n40007022019 +n40007022020 +n40007022021 +n40007022022 +n40007022023 +n40007022024 +n40007022025 +n40007022026 +n40007022027 +n40007023001 +n40007023002 +n40007023003 +n40007023004 +n40007023005 +n40007023006 +n40007023007 +n40007023008 +n40007023009 +n40007023010 +n40007023011 +n40007023012 +n40007023013 +n40007023014 +n40007023015 +n40007024002 +n40007024001 +n40007024003 +n40007024004 +n40007024005 +n40007024006 +n40007024007 +n40007024008 +n40007024009 +n40007024010 +n40007024011 +n40007024012 +n40007024013 +n40007024014 +n40007024015 +n40007024016 +n40007024017 +n40007024018 +n40007024019 +n40007024020 +n40007024021 +n40007024022 +n40007025001 +n40007025002 +n40007025003 +n40007025004 +n40007025005 +n40007025006 +n40007025007 +n40007025008 +n40007025009 +n40007025010 +n40007025011 +n40007025012 +n40007025013 +n40007025014 +n40007025015 +n40007025016 +n40007025017 +n40007025018 +n40007025019 +n40007025020 +n40007025022 +n40007025021 +n40007025023 +n40007025024 +n40007025025 +n40007026001 +n40007026002 +n40007026003 +n40007026004 +n40007026005 +n40007026006 +n40007026007 +n40007026008 +n40007026009 +n40007026010 +n40007026011 +n40007026012 +n40007026013 +n40007026014 +n40007026015 +n40007026016 +n40007026017 +n40007026018 +n40007026019 +n40007026020 +n40007026021 +n40007026022 +n40007026023 +n40007027001 +n40007027002 +n40007027003 +n40007027004 +n40007027005 +n40007027006 +n40007027007 +n40007027008 +n40007027009 +n40007027010 +n40007027011 +n40007027012 +n40007027013 +n40007027014 +n40007027015 +n40007027016 +n40007027017 +n40007027018 +n40007027019 +n40007027020 +n40007027021 +n40007027022 +n40007027023 +n40007027024 +n40007027025 +n40007028001 +n40007028002 +n40007028003 +n40007028004 +n40007028005 +n40007028006 +n40007028007 +n40007028008 +n40007028009 +n40007028010 +n40007028011 +n40007028012 +n40007028013 +n40007028014 +n40007028015 +n40007028016 +n40007029002 +n40007029001 +n40007029003 +n40007029004 +n40007029005 +n40007029006 +n40007029007 +n40007029008 +n40007029009 +n40007029010 +n40007029011 +n40007029012 +n40007029013 +n40008001002 +n40008001001 +n40008001003 +n40008001004 +n40008001005 +n40008001006 +n40008001007 +n40008001008 +n40008001009 +n40008001010 +n40008002001 +n40008002002 +n40008002003 +n40008002004 +n40008002005 +n40008002006 +n40008002007 +n40008002008 +n40008002009 +n40008002010 +n40008002011 +n40008002012 +n40008002013 +n40008003001 +n40008003002 +n40008003003 +n40008003004 +n40008003005 +n40008003006 +n40008003007 +n40008003008 +n40008003009 +n40008003010 +n40008003011 +n40008003012 +n40008003013 +n40008003014 +n40008003015 +n40008004001 +n40008004002 +n40008004003 +n40008004004 +n40008004005 +n40008004006 +n40008004007 +n40008004008 +n40008004009 +n40008004010 +n40008004011 +n40008004012 +n40008004013 +n40008004014 +n40008004015 +n40008004016 +n40008004017 +n40008004018 +n40008004019 +n40008004020 +n40008004021 +n40008004022 +n40008004023 +n40008004024 +n40008005002 +n40008005001 +n40008005003 +n40008005004 +n40008005005 +n40008005006 +n40008005007 +n40008005008 +n40008005009 +n40008005010 +n40008006001 +n40008006002 +n40008006003 +n40008006004 +n40008006005 +n40008006006 +n40008006007 +n40008006008 +n40008006009 +n40008006010 +n40008006011 +n40008006012 +n40008006013 +n40008007001 +n40008007002 +n40008007003 +n40008007004 +n40008007005 +n40008007006 +n40008008002 +n40008008001 +n40008008003 +n40008008004 +n40008008005 +n40008008006 +n40008008007 +n40008008008 +n40008008009 +n40008008010 +n40008008012 +n40008008011 +n40008008013 +n40008008014 +n40008008015 +n40008008016 +n40008008017 +n40008008018 +n40008008019 +n40008008020 +n40008008021 +n40008008022 +n40008008023 +n40008008024 +n40008009002 +n40008009001 +n40008009003 +n40008009005 +n40008009004 +n40008009006 +n40008009007 +n40008009008 +n40008009009 +n40008009010 +n40008009011 +n40008009012 +n40008009013 +n40008009014 +n40008009015 +n40008009016 +n40008009017 +n40008009018 +n40008009019 +n40008009020 +n40008009021 +n40008009022 +n40008009023 +n40008009024 +n40008009025 +n40008009026 +n40008009027 +n40008009028 +n40008009029 +n40008009030 +n40008010002 +n40008010001 +n40008010003 +n40008010004 +n40008010005 +n40008010006 +n40008010007 +n40008010008 +n40008010009 +n40008010010 +n40008010011 +n40008010012 +n40008010013 +n40008010014 +n40008010015 +n40008010016 +n40008010017 +n40008010018 +n40008010019 +n40008010020 +n40008011002 +n40008011001 +n40008011003 +n40008011004 +n40008011005 +n40008011006 +n40008011007 +n40008011008 +n40008011009 +n40008011010 +n40008011011 +n40008011012 +n40008011013 +n40008011014 +n40008011015 +n40008011016 +n40008011017 +n40008011018 +n40008011019 +n40008011020 +n40008011021 +n40008011022 +n40008011023 +n40008012002 +n40008012001 +n40008012003 +n40008012004 +n40008012005 +n40008012006 +n40008012007 +n40008012008 +n40008012009 +n40008012010 +n40008012011 +n40008012012 +n40008012013 +n40008012014 +n40008012015 +n40008012016 +n40008012017 +n40008012018 +n40008012019 +n40008012020 +n40008013001 +n40008013002 +n40008013003 +n40008013004 +n40008013005 +n40008013006 +n40008013007 +n40008013008 +n40008013009 +n40008013010 +n40008013011 +n40008013012 +n40008013013 +n40008013014 +n40008013015 +n40008013016 +n40008013017 +n40008013018 +n40008013019 +n40008014001 +n40008014003 +n40008014004 +n40008014002 +n40008014005 +n40008014006 +n40008014007 +n40008014008 +n40008014009 +n40008014010 +n40008014011 +n40008014012 +n40008014013 +n40008014014 +n40008014015 +n40008015001 +n40008015002 +n40008015003 +n40008015004 +n40008015005 +n40008015006 +n40008015007 +n40008015008 +n40008015009 +n40008015010 +n40008015011 +n40008015012 +n40008015013 +n40008015014 +n40008015015 +n40008016002 +n40008016001 +n40008016003 +n40008016004 +n40008016005 +n40008016006 +n40008016007 +n40008016008 +n40008016009 +n40008016010 +n40008016011 +n40008016012 +n40008016013 +n40008016014 +n40008016015 +n40008016016 +n40008016017 +n40008016018 +n40008017001 +n40008017002 +n40008017003 +n40008017004 +n40008017005 +n40008017006 +n40008017007 +n40008017008 +n40008017009 +n40008017010 +n40008017011 +n40008017012 +n40008017013 +n40008017014 +n40008017015 +n40008017016 +n40008017017 +n40008017018 +n40008018002 +n40008018003 +n40008018004 +n40008018001 +n40008018005 +n40008018006 +n40008018007 +n40008018008 +n40008018009 +n40008018010 +n40008018011 +n40008018012 +n40008019001 +n40008019002 +n40008019003 +n40008019004 +n40008019005 +n40008019006 +n40008019007 +n40008019008 +n40008019009 +n40008019011 +n40008019010 +n40008019012 +n40008020001 +n40008020002 +n40008020003 +n40008020004 +n40008020005 +n40008020006 +n40008020007 +n40008020008 +n40008020009 +n40008020010 +n40008020011 +n40008020012 +n40008020013 +n40008020014 +n40008020015 +n40008020017 +n40008020016 +n40008020018 +n40008020019 +n40008020020 +n40008020021 +n40008020022 +n40008020023 +n40008020024 +n40008020025 +n40008020026 +n40008021002 +n40008021001 +n40008021003 +n40008021004 +n40008021005 +n40008021006 +n40008021007 +n40008021008 +n40008021009 +n40008021010 +n40008021011 +n40008021012 +n40008021013 +n40008021014 +n40008021015 +n40008021016 +n40008022002 +n40008022001 +n40008022003 +n40008022004 +n40008022005 +n40008022006 +n40008022007 +n40008022008 +n40008022009 +n40008022010 +n40008022011 +n40008022012 +n40008022013 +n40008022014 +n40008022015 +n40008023001 +n40008023002 +n40008023003 +n40008023004 +n40008023005 +n40008023006 +n40008023007 +n40008023008 +n40008023009 +n40008023010 +n40008023011 +n40008024001 +n40008024002 +n40008024003 +n40008024004 +n40008024005 +n40008024006 +n40008024007 +n40008024008 +n40008024009 +n40008024010 +n40008024011 +n40008024012 +n40008024013 +n40008024014 +n40008024015 +n40008024017 +n40008024016 +n40008024018 +n40008025001 +n40008025002 +n40008025003 +n40008025004 +n40008025005 +n40008025006 +n40008025007 +n40008025008 +n40008026001 +n40008026002 +n40008026003 +n40008026004 +n40008026005 +n40008026006 +n40008026007 +n40008026008 +n40008026009 +n40008026010 +n40008026011 +n40008026012 +n40008026013 +n40008026014 +n40008026015 +n40008026016 +n40008026017 +n40008026018 +n40008026019 +n40008027002 +n40008027001 +n40008027003 +n40008027004 +n40008027005 +n40008027006 +n40008027007 +n40008027008 +n40008027009 +n40008027010 +n40008027011 +n40008027012 +n40008027013 +n40008027014 +n40008027015 +n40008027016 +n40008027017 +n40008028001 +n40008028002 +n40008028003 +n40008028004 +n40008028005 +n40008028006 +n40008028007 +n40008028008 +n40008028009 +n40008028010 +n40008028011 +n40008028012 +n40008028013 +n40008028014 +n40008028015 +n40008028016 +n40008028017 +n40008028018 +n40008028019 +n40008028020 +n40008028021 +n40008028022 +n40008028023 +n40008028024 +n40008028025 +n40008028026 +n40008028027 +n40008028028 +n40008028029 +n40008028030 +n40008029001 +n40008029002 +n40008029003 +n40008029004 +n40008029005 +n40008029006 +n40008029007 +n40008029008 +n40008029009 +n40008029010 +n40008029011 +n40008029012 +n40008029013 +n40008029014 +n40008029015 +n40008029016 +n40008029017 +n40008030002 +n40008030001 +n40008030003 +n40008030004 +n40008030005 +n40008030006 +n40008030007 +n40008030008 +n40008030009 +n40008031002 +n40008031001 +n40008031003 +n40008031004 +n40008031005 +n40008031006 +n40008031007 +n40008031008 +n40008031009 +n40008031010 +n40008031011 +n40008031012 +n40008031013 +n40008031014 +n40008031015 +n40008031016 +n40008032001 +n40008032002 +n40008032003 +n40008032004 +n40008032006 +n40008032005 +n40008032007 +n40008032008 +n40008032009 +n40008032010 +n40008032011 +n40008032012 +n40008032013 +n40008032014 +n40008032015 +n40008032016 +n40008032017 +n40008032018 +n40008032019 +n40008032020 +n40008032021 +n40008032022 +n40008032023 +n40008032024 +n40008032025 +n40008032026 +n40008032027 +n40008032028 +n40008033002 +n40008033001 +n40008033003 +n40008033004 +n40008033005 +n40008033006 +n40008033007 +n40008033008 +n40008033009 +n40008033010 +n40008033011 +n40008033012 +n40008033013 +n40008033014 +n40008033015 +n40008034001 +n40008034002 +n40008034003 +n40008034004 +n40008034005 +n40008034006 +n40008034007 +n40008034008 +n40008034009 +n40008034010 +n40008034011 +n40008034012 +n40008034013 +n40008034014 +n40008034015 +n40008034016 +n40008034017 +n40008034018 +n40008034019 +n40008034020 +n40009001001 +n40009001002 +n40009001003 +n40009001004 +n40009001005 +n40009001006 +n40009001007 +n40009001008 +n40009001009 +n40009001010 +n40009001011 +n40009002001 +n40009002002 +n40009002003 +n40009002004 +n40009002005 +n40009002006 +n40009002007 +n40009002008 +n40009002009 +n40009002011 +n40009002012 +n40009002010 +n40009002013 +n40009002014 +n40009002015 +n40009002016 +n40009002017 +n40009002018 +n40009002019 +n40009002020 +n40009002021 +n40009002022 +n40009002023 +n40009002024 +n40009003001 +n40009003002 +n40009003003 +n40009003004 +n40009003005 +n40009003006 +n40009003007 +n40009003008 +n40009003009 +n40009003010 +n40009004001 +n40009004003 +n40009004004 +n40009004002 +n40009004005 +n40009004006 +n40009004007 +n40009004008 +n40009004009 +n40009004010 +n40009004011 +n40009004012 +n40009004013 +n40009004014 +n40009004015 +n40009004016 +n40009005002 +n40009005001 +n40009005003 +n40009005004 +n40009005005 +n40009005006 +n40009005007 +n40009005008 +n40009005009 +n40009005010 +n40009005011 +n40009005012 +n40009005013 +n40009005014 +n40009006002 +n40009006001 +n40009006003 +n40009006004 +n40009006005 +n40009006006 +n40009006007 +n40009006008 +n40009006009 +n40009006010 +n40009006011 +n40009006012 +n40009006013 +n40009006014 +n40009006015 +n40009006016 +n40009006017 +n40009006018 +n40009006019 +n40009006020 +n40009006021 +n40009006022 +n40009006023 +n40009006024 +n40009006025 +n40009006026 +n40009006027 +n40009006028 +n40009006029 +n40009006030 +n40009007001 +n40009007002 +n40009007003 +n40009007004 +n40009007005 +n40009007006 +n40009007007 +n40009008002 +n40009008001 +n40009008003 +n40009008004 +n40009008005 +n40009008006 +n40009008007 +n40009008008 +n40009008009 +n40009008010 +n40009008011 +n40009008012 +n40009008013 +n40009008014 +n40009008015 +n40009009001 +n40009009002 +n40009009005 +n40009009003 +n40009009004 +n40009009006 +n40009009007 +n40009009008 +n40009009009 +n40009009010 +n40009009011 +n40009009012 +n40009009013 +n40009009014 +n40009009015 +n40009009016 +n40009009017 +n40009009018 +n40009009019 +n40009009020 +n40009009021 +n40009009022 +n40009010001 +n40009010002 +n40009010003 +n40009010004 +n40009010005 +n40009010006 +n40009010007 +n40009010008 +n40009010009 +n40009010010 +n40009010011 +n40009010012 +n40009010013 +n40009010014 +n40009010015 +n40009010016 +n40009010017 +n40009010018 +n40009010019 +n40009010020 +n40009010021 +n40009011001 +n40009011002 +n40009011003 +n40009011004 +n40009011005 +n40009011006 +n40009011007 +n40009011008 +n40009011009 +n40009011010 +n40009011011 +n40009011012 +n40009011013 +n40009011014 +n40009011015 +n40009011016 +n40009011017 +n40009011018 +n40009011019 +n40009012002 +n40009012001 +n40009012003 +n40009012004 +n40009012005 +n40009012006 +n40009012010 +n40009012007 +n40009012008 +n40009012009 +n40009012011 +n40009012012 +n40009012013 +n40009012014 +n40009013002 +n40009013001 +n40009013003 +n40009013004 +n40009013005 +n40009013006 +n40009013007 +n40009013008 +n40009013009 +n40009013010 +n40009013012 +n40009013011 +n40009013013 +n40009013014 +n40009013015 +n40009013016 +n40009013017 +n40009014001 +n40009014002 +n40009014003 +n40009014004 +n40009014005 +n40009014006 +n40009014007 +n40009014008 +n40009014009 +n40009014010 +n40009014011 +n40009014012 +n40009014013 +n40009014014 +n40009014016 +n40009014015 +n40009014017 +n40009014018 +n40009014019 +n40009014020 +n40009015001 +n40009015002 +n40009015003 +n40009015004 +n40009015005 +n40009015006 +n40009015007 +n40009015008 +n40009015009 +n40009015010 +n40009015011 +n40009015012 +n40009015013 +n40009015014 +n40009015015 +n40009015016 +n40009015017 +n40009015018 +n40009015019 +n40009015021 +n40009015020 +n40009015022 +n40009015023 +n40009015024 +n40009015025 +n40009015026 +n40009015027 +n40009015028 +n40009015029 +n40009015030 +n40009015031 +n40009016002 +n40009016001 +n40009016003 +n40009016004 +n40009016005 +n40009016006 +n40009016007 +n40009016008 +n40009016009 +n40009016011 +n40009016010 +n40009016012 +n40009016013 +n40009016014 +n40009016015 +n40009016016 +n40009016017 +n40009016018 +n40009016019 +n40009016020 +n40009016021 +n40009017001 +n40009017002 +n40009017003 +n40009017004 +n40009017005 +n40009017006 +n40009017007 +n40009017009 +n40009017008 +n40009017010 +n40009017011 +n40009017012 +n40009017013 +n40009017014 +n40009017015 +n40009017016 +n40009017017 +n40009017018 +n40009017019 +n40009017020 +n40009017021 +n40009017022 +n40009017023 +n40009017024 +n40009017025 +n40009017026 +n40009017027 +n40009017028 +n40009017029 +n40009017030 +n40009017031 +n40009018001 +n40009018002 +n40009018003 +n40009018004 +n40009018005 +n40009018006 +n40009018007 +n40009018008 +n40009018009 +n40009018010 +n40009018011 +n40009018012 +n40009018013 +n40009018014 +n40009018015 +n40009018016 +n40009018017 +n40009018018 +n40009018019 +n40009018020 +n40009018021 +n40009018022 +n40009018023 +n40009018024 +n40009018025 +n40009018026 +n40009018027 +n40009019001 +n40009019002 +n40009019003 +n40009019004 +n40009019005 +n40009019006 +n40009019007 +n40009019008 +n40009019009 +n40009019010 +n40009020001 +n40009020002 +n40009020003 +n40009020004 +n40009020005 +n40009020006 +n40009020007 +n40009020008 +n40009020009 +n40009020010 +n40009020011 +n40009020012 +n40009020013 +n40009020014 +n40009021002 +n40009021001 +n40009021003 +n40009021004 +n40009021005 +n40009021006 +n40009021007 +n40009021008 +n40009021009 +n40009021010 +n40009021011 +n40009022002 +n40009022001 +n40009022003 +n40009022004 +n40009022005 +n40009022006 +n40009022007 +n40009022008 +n40009022009 +n40009022010 +n40009022011 +n40009022012 +n40009022013 +n40009022014 +n40009022015 +n40009022016 +n40009022017 +n40009022018 +n40009022019 +n40009022020 +n40009022021 +n40009022022 +n40009022023 +n40009023001 +n40009023003 +n40009023004 +n40009023002 +n40009023005 +n40009023006 +n40009023007 +n40009023008 +n40009023009 +n40009023010 +n40009023011 +n40009023012 +n40009023013 +n40009023014 +n40009023015 +n40009023016 +n40009023017 +n40009024001 +n40009024002 +n40009024004 +n40009024003 +n40009024005 +n40009024006 +n40009024007 +n40009024008 +n40009024009 +n40009024010 +n40009024011 +n40009024012 +n40009025002 +n40009025001 +n40009025003 +n40009025004 +n40009025005 +n40009025006 +n40009025007 +n40009025008 +n40009025009 +n40009025010 +n40009025011 +n40009025012 +n40009025013 +n40009025014 +n40009026001 +n40009026002 +n40009026003 +n40009026004 +n40009026005 +n40009026006 +n40009026007 +n40009026008 +n40009026009 +n40009026010 +n40009027001 +n40009027002 +n40009027003 +n40009027004 +n40009027005 +n40009027006 +n40009027007 +n40009027008 +n40009027009 +n40009027010 +n40009027011 +n40009027012 +n40009027013 +n40009027014 +n40009027015 +n40009028002 +n40009028001 +n40009028003 +n40009028004 +n40009028005 +n40009028006 +n40009028007 +n40009028008 +n40009028009 +n40009028010 +n40009028011 +n40009028012 +n40009028013 +n40009028014 +n40009028015 +n40009028016 +n40009028017 +n40009028018 +n40009028019 +n40009028020 +n40009028021 +n40009028022 +n40009028023 +n40009029001 +n40009029002 +n40009029003 +n40009029004 +n40009029005 +n40009029006 +n40009029007 +n40009029008 +n40009029009 +n40009029010 +n40009029011 +n40009029012 +n40009030001 +n40009030002 +n40009030003 +n40009030004 +n40009030005 +n40009030006 +n40009030007 +n40009030008 +n40009030009 +n40009030010 +n40009030011 +n40009030012 +n40009030013 +n40009030014 +n40009031002 +n40009031001 +n40009031003 +n40009031004 +n40009031005 +n40009031006 +n40009031007 +n40009031008 +n40009031009 +n40009031010 +n40009032002 +n40009032001 +n40009032003 +n40009032004 +n40009032005 +n40009032006 +n40009032007 +n40009032008 +n40009033001 +n40009033002 +n40009033003 +n40009033004 +n40009033005 +n40009033006 +n40009033007 +n40009033008 +n40009033009 +n40009033010 +n40009033011 +n40009033012 +n40009033013 +n40009033014 +n40009033015 +n40009033016 +n40009033017 +n40009033018 +n40009034002 +n40009034001 +n40009034003 +n40009034004 +n40009034005 +n40009034006 +n40009034007 +n40009034008 +n40009034009 +n40009034010 +n40009034011 +n40009034012 +n40009035001 +n40009035002 +n40009035003 +n40009035004 +n40009035005 +n40009035006 +n40009035007 +n40009035008 +n40009035009 +n40009035010 +n40009035011 +n40009035012 +n40009035013 +n40009035014 +n40009035015 +n40009035016 +n40009035017 +n40009035018 +n40009035019 +n40009035020 +n40009035021 +n40009035022 +n40009035023 +n40009035024 +n40009035025 +n40009035026 +n40009035027 +n40009035028 +n40009036002 +n40009036001 +n40009036003 +n40009036004 +n40009036005 +n40009036006 +n40009036007 +n40009036008 +n40009036009 +n40009036010 +n40009036011 +n40009036012 +n40009036013 +n40009036014 +n40009036015 +n40009036016 +n40009036017 +n40009037001 +n40009037002 +n40009037003 +n40009037004 +n40009037005 +n40009037007 +n40009037006 +n40009037008 +n40009037009 +n40009037011 +n40009037010 +n40009037012 +n40009037013 +n40009038002 +n40009038001 +n40009038003 +n40009038004 +n40009038005 +n40009038006 +n40009038007 +n40009038008 +n40009038009 +n40009038010 +n40009038011 +n40009038012 +n40009038013 +n40010001001 +n40010001002 +n40010001003 +n40010001004 +n40010001005 +n40010001006 +n40010001007 +n40010001008 +n40010001009 +n40010001010 +n40010001011 +n40010001012 +n40010001013 +n40010001014 +n40010001015 +n40010001016 +n40010001017 +n40010001018 +n40010001019 +n40010001020 +n40010001021 +n40010002002 +n40010002001 +n40010002003 +n40010002004 +n40010002005 +n40010002006 +n40010002007 +n40010002008 +n40010002009 +n40010002010 +n40010002011 +n40010002012 +n40010002013 +n40010002014 +n40010002015 +n40010002016 +n40010002017 +n40010002018 +n40010002019 +n40010002020 +n40010002021 +n40010002022 +n40010002023 +n40010002024 +n40010002025 +n40010002026 +n40010002027 +n40010002028 +n40010003001 +n40010003002 +n40010003003 +n40010003004 +n40010003005 +n40010003006 +n40010003007 +n40010003008 +n40010003009 +n40010003010 +n40010003011 +n40010003012 +n40010003013 +n40010003014 +n40010004001 +n40010004002 +n40010004003 +n40010004004 +n40010004005 +n40010004006 +n40010004007 +n40010004008 +n40010004009 +n40010004010 +n40010004011 +n40010005001 +n40010005002 +n40010005003 +n40010005004 +n40010005005 +n40010005006 +n40010005007 +n40010005008 +n40010005009 +n40010005010 +n40010005011 +n40010005012 +n40010005013 +n40010005014 +n40010005015 +n40010005016 +n40010005017 +n40010005018 +n40010005019 +n40010005020 +n40010006002 +n40010006001 +n40010006003 +n40010006004 +n40010006005 +n40010006006 +n40010006007 +n40010006008 +n40010006009 +n40010006010 +n40010007002 +n40010007001 +n40010007003 +n40010007004 +n40010007005 +n40010007006 +n40010007007 +n40010007008 +n40010007009 +n40010007010 +n40010008001 +n40010008002 +n40010008003 +n40010008004 +n40010008005 +n40010008006 +n40010008007 +n40010008008 +n40010008009 +n40010008010 +n40010008011 +n40010008012 +n40010009001 +n40010009002 +n40010009003 +n40010009004 +n40010009005 +n40010009006 +n40010009007 +n40010009008 +n40010009009 +n40010009010 +n40010009011 +n40010010001 +n40010010002 +n40010010003 +n40010010004 +n40010010005 +n40010010006 +n40010010007 +n40010010008 +n40010010009 +n40010010010 +n40010010011 +n40010010013 +n40010010012 +n40010010014 +n40010010015 +n40010010016 +n40010010017 +n40010010018 +n40010011003 +n40010011004 +n40010011001 +n40010011002 +n40010011005 +n40010011006 +n40010011007 +n40010011008 +n40010011009 +n40010011010 +n40010011011 +n40010011012 +n40010011013 +n40010011014 +n40010011015 +n40010011016 +n40010011017 +n40010011018 +n40010011019 +n40010012002 +n40010012001 +n40010012003 +n40010012004 +n40010012005 +n40010012006 +n40010012007 +n40010013001 +n40010013003 +n40010013002 +n40010013004 +n40010013005 +n40010013006 +n40010013007 +n40010013008 +n40010013009 +n40010013010 +n40010013011 +n40010013012 +n40010013013 +n40010013015 +n40010013014 +n40010013016 +n40010013017 +n40010013018 +n40010013019 +n40010013020 +n40010013021 +n40010013022 +n40010013023 +n40010013024 +n40010014001 +n40010014003 +n40010014002 +n40010014004 +n40010014005 +n40010014006 +n40010014007 +n40010014008 +n40010014009 +n40010014010 +n40010014011 +n40010014012 +n40010014013 +n40010014014 +n40010014015 +n40010014016 +n40010014017 +n40010014018 +n40010014019 +n40010014020 +n40010014021 +n40010014022 +n40010014023 +n40010014024 +n40010014025 +n40010015001 +n40010015002 +n40010015003 +n40010015004 +n40010015005 +n40010015006 +n40010015007 +n40010015008 +n40010015009 +n40010015010 +n40010015011 +n40010015012 +n40010015013 +n40010015014 +n40010015015 +n40010015016 +n40010016001 +n40010016002 +n40010016003 +n40010016004 +n40010016005 +n40010016006 +n40010016007 +n40010016008 +n40010016009 +n40010016011 +n40010016010 +n40010016012 +n40010016013 +n40010016014 +n40010016015 +n40010016016 +n40010016017 +n40010016018 +n40010016019 +n40010016020 +n40010017002 +n40010017001 +n40010017003 +n40010017004 +n40010017005 +n40010017007 +n40010017006 +n40010017008 +n40010017009 +n40010017010 +n40010017011 +n40010017012 +n40010017013 +n40010017014 +n40010017015 +n40010017016 +n40010017017 +n40010018004 +n40010018001 +n40010018002 +n40010018003 +n40010018005 +n40010018006 +n40010018007 +n40010018008 +n40010018009 +n40010018010 +n40010018011 +n40010018012 +n40010018013 +n40010018014 +n40010018015 +n40010019002 +n40010019001 +n40010019003 +n40010019004 +n40010019005 +n40010019006 +n40010019007 +n40010019008 +n40010019009 +n40010019010 +n40010019012 +n40010019011 +n40010019013 +n40010019014 +n40010019015 +n40010019016 +n40010019017 +n40010019018 +n40010019019 +n40010020002 +n40010020001 +n40010020003 +n40010020004 +n40010020005 +n40010020006 +n40010020007 +n40010020008 +n40010020009 +n40010020010 +n40010020011 +n40010020012 +n40010020013 +n40010020014 +n40010020015 +n40010020016 +n40010021002 +n40010021001 +n40010021003 +n40010021004 +n40010021005 +n40010021006 +n40010021007 +n40010021008 +n40010021009 +n40010021010 +n40010021011 +n40010021012 +n40010021013 +n40010021014 +n40010021015 +n40010021016 +n40010021017 +n40010022001 +n40010022002 +n40010022003 +n40010022004 +n40010022005 +n40010022006 +n40010022007 +n40010022008 +n40010022009 +n40010022011 +n40010022010 +n40010022012 +n40010022013 +n40010022014 +n40010022015 +n40010022016 +n40010023002 +n40010023001 +n40010023003 +n40010023004 +n40010023005 +n40010023006 +n40010023007 +n40010023008 +n40010023009 +n40010023010 +n40010023011 +n40010023012 +n40010023014 +n40010023013 +n40010023015 +n40010023016 +n40010023017 +n40010023018 +n40010023019 +n40010023020 +n40010023021 +n40010023022 +n40010023023 +n40010023024 +n40010023025 +n40010023026 +n40010023027 +n40010023028 +n40010023029 +n40010024001 +n40010024002 +n40010024003 +n40010024004 +n40010024005 +n40010024006 +n40010024007 +n40010024008 +n40010024009 +n40010024010 +n40010024011 +n40010024012 +n40010025001 +n40010025002 +n40010025003 +n40010025004 +n40010025005 +n40010025006 +n40010025007 +n40010025008 +n40010025009 +n40010025010 +n40010025011 +n40010025012 +n40010025013 +n40010025014 +n40010025015 +n40010025016 +n40010025017 +n40010025018 +n40010025019 +n40010025020 +n40010025021 +n40010025022 +n40010025023 +n40010025024 +n40010025025 +n40010025026 +n40010026002 +n40010026001 +n40010026003 +n40010026004 +n40010026006 +n40010026005 +n40010026007 +n40010026008 +n40010026009 +n40010026010 +n40010026011 +n40010026012 +n40010026013 +n40010026014 +n40010026015 +n40010026016 +n40010027001 +n40010027002 +n40010027003 +n40010027004 +n40010027005 +n40010027006 +n40010027007 +n40010027008 +n40010027009 +n40010027010 +n40010027011 +n40010027012 +n40010027013 +n40010027014 +n40010027015 +n40010027016 +n40010027017 +n40010027018 +n40010027019 +n40010027020 +n40010028001 +n40010028002 +n40010028003 +n40010028004 +n40010028005 +n40010028006 +n40010028007 +n40010028008 +n40010028010 +n40010028012 +n40010028013 +n40010028009 +n40010028011 +n40010028014 +n40010028016 +n40010028015 +n40010028017 +n40010028018 +n40010028019 +n40010028020 +n40010028021 +n40010028022 +n40010028023 +n40010028024 +n40010028025 +n40010028026 +n40010029001 +n40010029002 +n40010029003 +n40010029004 +n40010029005 +n40010029006 +n40010029007 +n40010029008 +n40010029009 +n40010029010 +n40010029011 +n40010029012 +n40010029013 +n40010029014 +n40010029015 +n40010029016 +n40010029017 +n40010029018 +n40010030002 +n40010030003 +n40010030001 +n40010030004 +n40010030005 +n40010030006 +n40010030007 +n40010030008 +n40010030009 +n40010030010 +n40010031002 +n40010031001 +n40010031003 +n40010031004 +n40010031005 +n40010031006 +n40010031007 +n40010032002 +n40010032001 +n40010032003 +n40010032004 +n40010032005 +n40010032006 +n40010032007 +n40010032008 +n40010032009 +n40010032010 +n40010032011 +n40010032012 +n40010032013 +n40010032014 +n40010032015 +n40010032016 +n40010032017 +n40010032018 +n40010032019 +n40010032020 +n40010032021 +n40010033002 +n40010033003 +n40010033001 +n40010033004 +n40010033005 +n40010033006 +n40010033007 +n40010033008 +n40010033009 +n40010033010 +n40010033011 +n40010033012 +n40010033013 +n40010033014 +n40010033015 +n40010033016 +n40010033017 +n40010033018 +n40010033019 +n40010034001 +n40010034002 +n40010034003 +n40010034004 +n40010034005 +n40010034006 +n40010034007 +n40010034008 +n40010034009 +n40010034010 +n40010034011 +n40010034012 +n40010034013 +n40010034014 +n40010034015 +n40010035002 +n40010035001 +n40010035003 +n40010035004 +n40010035005 +n40010035006 +n40010035007 +n40010035008 +n40010035009 +n40010035010 +n40010035011 +n40010035012 +n40010035013 +n40010035014 +n40010035015 +n40010035016 +n40010035017 +n40010035018 +n40010035019 +n40010035020 +n40010036001 +n40010036002 +n40010036003 +n40010036004 +n40010036005 +n40010036006 +n40010036007 +n40010037001 +n40010037002 +n40010037003 +n40010037004 +n40010037005 +n40010037006 +n40010037007 +n40010037008 +n40010037009 +n40010037010 +n40010037011 +n40010037012 +n40010037013 +n40010037014 +n40010037015 +n40010037016 +n40010037017 +n40010037018 +n40010037019 +n40010037020 +n40010037021 +n40010037022 +n40010037023 +n40010038001 +n40010038002 +n40010038003 +n40010038004 +n40010038005 +n40010038006 +n40010038007 +n40010038008 +n40010038009 +n40010038010 +n40010038011 +n40010038012 +n40010038013 +n40010038014 +n40010038015 +n40010039001 +n40010039002 +n40010039003 +n40010039004 +n40010039005 +n40010039006 +n40010039007 +n40010039008 +n40010039009 +n40010039010 +n40010039011 +n40010039012 +n40010039013 +n40010039014 +n40010039015 +n40010039016 +n40010039017 +n40010040001 +n40010040002 +n40010040003 +n40010040004 +n40010040005 +n40010040006 +n40010040007 +n40010040008 +n40010040009 +n40010040010 +n40010040011 +n40010040012 +n40010040013 +n40010041001 +n40010041002 +n40010041003 +n40010041004 +n40010041005 +n40010041006 +n40010041007 +n40010041008 +n40010041009 +n40010041010 +n40010041011 +n40010041012 +n40010041013 +n40010041014 +n40010041015 +n40010041016 +n40010041017 +n40010041018 +n40010041019 +n40010042001 +n40010042003 +n40010042002 +n40010042004 +n40010042005 +n40010042006 +n40010042007 +n40010042008 +n40010042009 +n40010042010 +n40010042011 +n40010042012 +n40010042013 +n40010042014 +n40010042015 +n40010042016 +n40010042017 +n40010042018 +n40010042019 +n40010042020 +n40010042021 +n40010042022 +n40010042023 +n40011001001 +n40011001002 +n40011001003 +n40011001004 +n40011001005 +n40011001006 +n40011001007 +n40011001008 +n40011001009 +n40011001010 +n40011001011 +n40011001012 +n40011001013 +n40011001014 +n40011001015 +n40011001016 +n40011001017 +n40011001018 +n40011001019 +n40011001020 +n40011001021 +n40011002002 +n40011002001 +n40011002003 +n40011002004 +n40011002005 +n40011002006 +n40011002007 +n40011002008 +n40011002009 +n40011002010 +n40011002011 +n40011002012 +n40011002013 +n40011002014 +n40011002015 +n40011002016 +n40011003001 +n40011003002 +n40011003003 +n40011003004 +n40011003005 +n40011003006 +n40011003007 +n40011003008 +n40011003009 +n40011004001 +n40011004002 +n40011004003 +n40011004004 +n40011004005 +n40011004006 +n40011004007 +n40011004008 +n40011004009 +n40011004010 +n40011004011 +n40011004012 +n40011004013 +n40011005001 +n40011005002 +n40011005003 +n40011005004 +n40011005005 +n40011005006 +n40011005007 +n40011005008 +n40011005009 +n40011005010 +n40011005011 +n40011005012 +n40011005013 +n40011005014 +n40011005015 +n40011005016 +n40011006001 +n40011006002 +n40011006003 +n40011006005 +n40011006004 +n40011006006 +n40011006007 +n40011006008 +n40011006009 +n40011007002 +n40011007001 +n40011007003 +n40011007004 +n40011007005 +n40011007006 +n40011007007 +n40011007008 +n40011007009 +n40011007010 +n40011007011 +n40011007012 +n40011007017 +n40011007013 +n40011007014 +n40011007015 +n40011007016 +n40011007018 +n40011007019 +n40011007020 +n40011007021 +n40011008001 +n40011008002 +n40011008004 +n40011008003 +n40011008005 +n40011008006 +n40011008007 +n40011008008 +n40011008009 +n40011008010 +n40011008011 +n40011008012 +n40011008013 +n40011008014 +n40011008015 +n40011008016 +n40011008017 +n40011008018 +n40011009001 +n40011009002 +n40011009003 +n40011009004 +n40011009005 +n40011009006 +n40011009007 +n40011009008 +n40011009009 +n40011009010 +n40011009011 +n40011010001 +n40011010002 +n40011010003 +n40011010004 +n40011010005 +n40011010006 +n40011010007 +n40011010008 +n40011010009 +n40011010010 +n40011010011 +n40011010012 +n40011010013 +n40011010014 +n40011010015 +n40011010016 +n40011010017 +n40011010018 +n40011010019 +n40011010020 +n40011010021 +n40011011001 +n40011011002 +n40011011003 +n40011011004 +n40011011005 +n40011011006 +n40011011007 +n40011011008 +n40011011009 +n40011011010 +n40011011011 +n40011011012 +n40011011014 +n40011011013 +n40011011015 +n40011011016 +n40011011017 +n40011011018 +n40011011019 +n40011011020 +n40011011021 +n40011011022 +n40011011023 +n40011012002 +n40011012001 +n40011012003 +n40011012004 +n40011012005 +n40011012006 +n40011012007 +n40011012008 +n40011012009 +n40011012010 +n40011012011 +n40011012012 +n40011012013 +n40011012014 +n40011012015 +n40011012016 +n40011012017 +n40011012018 +n40011013002 +n40011013001 +n40011013003 +n40011013004 +n40011013005 +n40011013006 +n40011013007 +n40011013008 +n40011013009 +n40011013010 +n40011014001 +n40011014002 +n40011014003 +n40011014004 +n40011014005 +n40011014006 +n40011014007 +n40011014008 +n40011014009 +n40011014010 +n40011015001 +n40011015002 +n40011015003 +n40011015004 +n40011016002 +n40011016001 +n40011016003 +n40011016004 +n40011016005 +n40011016006 +n40011016007 +n40011016008 +n40011016009 +n40011016010 +n40011016011 +n40011016012 +n40011016013 +n40011016014 +n40011016015 +n40011016016 +n40011016017 +n40011017001 +n40011017002 +n40011017003 +n40011017004 +n40011017005 +n40011017006 +n40011017007 +n40011017008 +n40011017009 +n40011017010 +n40011018002 +n40011018001 +n40011018003 +n40011018004 +n40011018005 +n40011018006 +n40011018007 +n40011018008 +n40011018009 +n40011018010 +n40011018011 +n40011019001 +n40011019002 +n40011019003 +n40011019004 +n40011019005 +n40011019006 +n40011019007 +n40011019008 +n40011019009 +n40011019010 +n40011019011 +n40011019012 +n40011019013 +n40011019014 +n40011019015 +n40011019017 +n40011019016 +n40011019018 +n40011019019 +n40011019020 +n40011019021 +n40011019022 +n40011019023 +n40011019024 +n40011019025 +n40011019026 +n40011019027 +n40011020001 +n40011020002 +n40011020003 +n40011020004 +n40011020005 +n40011020006 +n40011020007 +n40011020008 +n40011020009 +n40011020010 +n40011020011 +n40011020012 +n40011020013 +n40011020014 +n40011020015 +n40011021001 +n40011021002 +n40011021003 +n40011021004 +n40011021005 +n40011021006 +n40011021007 +n40011021008 +n40011021009 +n40011021010 +n40011021011 +n40011021012 +n40011021013 +n40011021014 +n40011021015 +n40011021016 +n40011021017 +n40011021018 +n40011021019 +n40011021021 +n40011021020 +n40011021022 +n40011021023 +n40011021024 +n40011021025 +n40011021026 +n40011022001 +n40011022002 +n40011022003 +n40011022004 +n40011022005 +n40011022006 +n40011022007 +n40011022008 +n40011022009 +n40011022010 +n40011022011 +n40011022012 +n40011022013 +n40011023001 +n40011023003 +n40011023004 +n40011023002 +n40011023005 +n40011023006 +n40011023007 +n40011023008 +n40011023009 +n40011023010 +n40011023011 +n40011023012 +n40011023013 +n40011023014 +n40011023015 +n40011023016 +n40011023017 +n40011023018 +n40011023019 +n40011023020 +n40011023021 +n40011023023 +n40011023022 +n40011023024 +n40011023025 +n40011023026 +n40011024001 +n40011024002 +n40011024003 +n40011024004 +n40011024005 +n40011024006 +n40011024007 +n40011024008 +n40011024009 +n40011024010 +n40011024011 +n40011024012 +n40011024013 +n40011025001 +n40011025002 +n40011025003 +n40011025004 +n40011025005 +n40011025006 +n40011025007 +n40011025008 +n40011025009 +n40011025010 +n40011025011 +n40011025012 +n40011025013 +n40011025014 +n40011025015 +n40011025016 +n40011025017 +n40011025018 +n40011025019 +n40011025020 +n40011025021 +n40011025022 +n40011025023 +n40011025024 +n40011025025 +n40011025026 +n40011025027 +n40011025028 +n40011026001 +n40011026002 +n40011026003 +n40011026004 +n40011026005 +n40011026006 +n40011026007 +n40011026008 +n40011026009 +n40011027001 +n40011027002 +n40011027003 +n40011027004 +n40011027005 +n40011027006 +n40011027007 +n40011027008 +n40011027009 +n40011027010 +n40011027011 +n40011027012 +n40011027013 +n40011027014 +n40011027015 +n40011027016 +n40011027017 +n40011027018 +n40011027019 +n40011027020 +n40011027021 +n40011027022 +n40011027023 +n40011027024 +n40011027025 +n40011027026 +n40011027028 +n40011027027 +n40011027032 +n40011027029 +n40011027030 +n40011027031 +n40011028001 +n40011028002 +n40011028003 +n40011028004 +n40011028005 +n40011028006 +n40011028007 +n40011028008 +n40011028009 +n40011028010 +n40011028011 +n40011029001 +n40011029002 +n40011029003 +n40011029004 +n40011029005 +n40011029006 +n40011029007 +n40011029008 +n40011029009 +n40011029010 +n40011029011 +n40011029013 +n40011029012 +n40011029014 +n40011029015 +n40011029016 +n40011029017 +n40011029018 +n40011029019 +n40011029020 +n40011029021 +n40011029022 +n40011029023 +n40011030002 +n40011030001 +n40011030003 +n40011030004 +n40011030005 +n40011030006 +n40011030007 +n40011030008 +n40011030009 +n40011030010 +n40011030011 +n40012001001 +n40012001002 +n40012001003 +n40012001004 +n40012001005 +n40012001006 +n40012001007 +n40012001008 +n40012001009 +n40012001010 +n40012001011 +n40012001012 +n40012001014 +n40012001013 +n40012001015 +n40012001016 +n40012001017 +n40012001018 +n40012001019 +n40012001020 +n40012001021 +n40012001022 +n40012001023 +n40012002002 +n40012002001 +n40012002003 +n40012002004 +n40012002005 +n40012002006 +n40012002007 +n40012002008 +n40012002009 +n40012002010 +n40012002011 +n40012002012 +n40012002015 +n40012002013 +n40012002014 +n40012002016 +n40012002017 +n40012003002 +n40012003001 +n40012003003 +n40012003004 +n40012003005 +n40012003006 +n40012003007 +n40012003008 +n40012003009 +n40012003010 +n40012003011 +n40012003012 +n40012003013 +n40012003014 +n40012003015 +n40012004001 +n40012004002 +n40012004003 +n40012004004 +n40012004005 +n40012004006 +n40012004007 +n40012004008 +n40012004009 +n40012004010 +n40012004011 +n40012004012 +n40012004013 +n40012004014 +n40012004019 +n40012004015 +n40012004016 +n40012004017 +n40012004018 +n40012004020 +n40012004021 +n40012004022 +n40012004023 +n40012004024 +n40012004025 +n40012004026 +n40012004027 +n40012004028 +n40012005001 +n40012005002 +n40012005003 +n40012005004 +n40012005005 +n40012005006 +n40012005007 +n40012005008 +n40012005009 +n40012005010 +n40012005011 +n40012005012 +n40012005013 +n40012005014 +n40012005015 +n40012005016 +n40012005017 +n40012005018 +n40012005019 +n40012005020 +n40012006002 +n40012006001 +n40012006003 +n40012006004 +n40012006005 +n40012006006 +n40012006007 +n40012006008 +n40012006009 +n40012007002 +n40012007001 +n40012007003 +n40012007004 +n40012007005 +n40012007006 +n40012007007 +n40012007008 +n40012007009 +n40012007010 +n40012007012 +n40012007011 +n40012007013 +n40012007014 +n40012007015 +n40012008002 +n40012008003 +n40012008001 +n40012008004 +n40012008005 +n40012008006 +n40012008007 +n40012008008 +n40012008009 +n40012009001 +n40012009002 +n40012009003 +n40012009004 +n40012009005 +n40012009006 +n40012009007 +n40012009008 +n40012010001 +n40012010002 +n40012010003 +n40012010004 +n40012010005 +n40012010006 +n40012010007 +n40012010008 +n40012010009 +n40012010010 +n40012010011 +n40012010012 +n40012010013 +n40012010014 +n40012010015 +n40012010016 +n40012010017 +n40012010018 +n40012011002 +n40012011001 +n40012011003 +n40012011004 +n40012011005 +n40012011006 +n40012011007 +n40012011008 +n40012011009 +n40012011010 +n40012011011 +n40012011012 +n40012011013 +n40012011014 +n40012011015 +n40012011016 +n40012011017 +n40012011018 +n40012011019 +n40012011020 +n40012011021 +n40012011022 +n40012011023 +n40012011024 +n40012011025 +n40012011026 +n40012012002 +n40012012001 +n40012012003 +n40012012004 +n40012012005 +n40012012006 +n40012012007 +n40012012008 +n40012012009 +n40012012010 +n40012012011 +n40012013001 +n40012013002 +n40012013003 +n40012013004 +n40012013005 +n40012013006 +n40012013007 +n40012013008 +n40012013009 +n40012013010 +n40012013011 +n40012013012 +n40012013013 +n40012013014 +n40012013015 +n40012013016 +n40012014002 +n40012014001 +n40012014003 +n40012014004 +n40012014005 +n40012014006 +n40012014007 +n40012014008 +n40012014009 +n40012014010 +n40012014011 +n40012015002 +n40012015001 +n40012015003 +n40012015004 +n40012015005 +n40012015006 +n40012015007 +n40012015008 +n40012015009 +n40012015010 +n40012015011 +n40012015012 +n40012015013 +n40012015014 +n40012016001 +n40012016002 +n40012016003 +n40012016004 +n40012016005 +n40012016006 +n40012016007 +n40012016008 +n40012017001 +n40012017002 +n40012017003 +n40012017004 +n40012017005 +n40012017006 +n40012017007 +n40012017008 +n40012017009 +n40012018001 +n40012018002 +n40012018003 +n40012018004 +n40012018005 +n40012018006 +n40012018007 +n40012018008 +n40012018009 +n40012018010 +n40012018011 +n40012018012 +n40012018013 +n40012018014 +n40012018015 +n40012018016 +n40012018017 +n40012018018 +n40012018019 +n40012018020 +n40012018021 +n40012018022 +n40012018023 +n40012018024 +n40012018025 +n40012019001 +n40012019002 +n40012019003 +n40012019004 +n40012019005 +n40012019006 +n40012019007 +n40012019008 +n40012019009 +n40012019010 +n40012019011 +n40012019012 +n40012019013 +n40012020001 +n40012020002 +n40012020003 +n40012020004 +n40012020005 +n40012020006 +n40012020007 +n40012020008 +n40012020009 +n40012020010 +n40012020011 +n40012020012 +n40012020013 +n40012020014 +n40012020015 +n40012020016 +n40012021001 +n40012021002 +n40012021003 +n40012021004 +n40012021005 +n40012021006 +n40012022001 +n40012022002 +n40012022003 +n40012022004 +n40012022005 +n40012022006 +n40012022007 +n40012022008 +n40012022009 +n40012022010 +n40012022011 +n40012022012 +n40012022013 +n40012022014 +n40012022015 +n40012022016 +n40012023001 +n40012023002 +n40012023003 +n40012023004 +n40012023005 +n40012023006 +n40012023007 +n40012023008 +n40012023009 +n40012023010 +n40012023011 +n40012023012 +n40012023013 +n40012024002 +n40012024001 +n40012024003 +n40012024004 +n40012024005 +n40012024006 +n40012024007 +n40012024008 +n40012024009 +n40012024010 +n40012024011 +n40012024012 +n40012024013 +n40012024014 +n40012024015 +n40012024016 +n40012024017 +n40012024018 +n40012025002 +n40012025001 +n40012025003 +n40012025004 +n40012025005 +n40012025006 +n40012025007 +n40012025008 +n40012025009 +n40012025010 +n40012025011 +n40012025012 +n40012025013 +n40012025014 +n40012025015 +n40012025016 +n40012025017 +n40012025018 +n40012025019 +n40012025020 +n40012025021 +n40012025022 +n40012025023 +n40012026001 +n40012026002 +n40012026003 +n40012026004 +n40012026005 +n40012026006 +n40012026007 +n40012026008 +n40012026009 +n40012026010 +n40012026012 +n40012026011 +n40012026013 +n40012026014 +n40012026015 +n40012026016 +n40012027001 +n40012027002 +n40012027003 +n40012027004 +n40012027005 +n40012027006 +n40012027007 +n40012027008 +n40012027009 +n40012027010 +n40012027011 +n40012027012 +n40012027013 +n40012027014 +n40012027015 +n40012027016 +n40012027017 +n40012027018 +n40012027020 +n40012027019 +n40012028002 +n40012028001 +n40012028003 +n40012028004 +n40012028005 +n40012028006 +n40012028007 +n40012028008 +n40012028009 +n40012028010 +n40012028011 +n40012028012 +n40012028013 +n40012028014 +n40012028015 +n40012028016 +n40012028017 +n40012029001 +n40012029002 +n40012029003 +n40012029004 +n40012029005 +n40012029006 +n40012029007 +n40012029008 +n40012029009 +n40012029010 +n40012029011 +n40012029012 +n40012029013 +n40012029014 +n40012029015 +n40012029016 +n40012029017 +n40012029018 +n40012029019 +n40012029020 +n40012029021 +n40012029022 +n40012029023 +n40012029024 +n40012029025 +n40012029026 +n40012029027 +n40012030001 +n40012030002 +n40012030003 +n40012030004 +n40012030005 +n40012030006 +n40012030007 +n40012030008 +n40012030009 +n40012030010 +n40012030011 +n40012030012 +n40012030013 +n40012030014 +n40012030015 +n40012031001 +n40012031002 +n40012031003 +n40012031004 +n40012031005 +n40012031006 +n40012031007 +n40012031008 +n40012031009 +n40012031010 +n40012031011 +n40012031013 +n40012031012 +n40012031014 +n40012031015 +n40012031016 +n40012031017 +n40012031018 +n40012032001 +n40012032003 +n40012032002 +n40012032004 +n40012032005 +n40012032006 +n40012032007 +n40012032008 +n40012032009 +n40012032010 +n40012032011 +n40012032012 +n40012032014 +n40012032015 +n40012032013 +n40012032016 +n40012032017 +n40012032018 +n40012032019 +n40012032020 +n40012032021 +n40012032022 +n40012032023 +n40012032024 +n40012032025 +n40012032026 +n40012032027 +n40012032028 +n40012032029 +n40012032030 +n40012032031 +n40012032032 +n40012032033 +n40012033001 +n40012033002 +n40012033003 +n40012033004 +n40012033005 +n40012033006 +n40012033007 +n40012033008 +n40012033009 +n40012033010 +n40012033011 +n40012033012 +n40012033013 +n40012033014 +n40012033015 +n40012033016 +n40012033017 +n40012033018 +n40012033019 +n40012033020 +n40012033022 +n40012033021 +n40012033023 +n40012033024 +n40012033025 +n40012033026 +n40012033027 +n40012034001 +n40012034002 +n40012034003 +n40012034004 +n40012034005 +n40012034006 +n40012034007 +n40012034008 +n40012034010 +n40012034009 +n40012034011 +n40012034012 +n40012034013 +n40012034014 +n40012034015 +n40012034016 +n40012034017 +n40012035001 +n40012035002 +n40012035003 +n40012035004 +n40012035005 +n40012035006 +n40012035007 +n40012035008 +n40012035009 +n40012035010 +n40012035011 +n40012035012 +n40012035013 +n40012035014 +n40012035015 +n40012035016 +n40012035017 +n40012035018 +n40012035019 +n40012036002 +n40012036001 +n40012036003 +n40012036004 +n40012036005 +n40012036006 +n40012036007 +n40012036008 +n40012036009 +n40012036010 +n40012036011 +n40012036012 +n40012036013 +n40012036014 +n40012036015 +n40012036016 +n40012036017 +n40012036018 +n40012037002 +n40012037001 +n40012037003 +n40012037004 +n40012037005 +n40012037006 +n40012037007 +n40012037008 +n40012037009 +n40012037010 +n40012037011 +n40012037012 +n40012038001 +n40012038002 +n40012038003 +n40012038004 +n40012038005 +n40012038006 +n40012038007 +n40012038008 +n40012038009 +n40012038010 +n40012038011 +n40012038012 +n40012038013 +n40012038014 +n40012038015 +n40012039002 +n40012039001 +n40012039003 +n40012039004 +n40012039005 +n40012039006 +n40012039007 +n40012039008 +n40012039009 +n40012039010 +n40012039011 +n40012039012 +n40012039013 +n40012039014 +n40012039015 +n40012039016 +n40012039017 +n40012039018 +n40012039019 +n40012039020 +n40012039021 +n40012039022 +n40012039023 +n40012040002 +n40012040001 +n40012040003 +n40012040004 +n40012040005 +n40012040006 +n40012040007 +n40012040008 +n40012040009 +n40012040010 +n40012040011 +n40012040012 +n40012040013 +n40012040014 +n40012040015 +n40012040016 +n40012040017 +n40012040018 +n40012040019 +n40012040020 +n40012040021 +n40012040022 +n40012040023 +n40012040024 +n40012040025 +n40012040026 +n40012040027 +n40012040028 +n40012040029 +n40012040030 +n40012041001 +n40012041002 +n40012041003 +n40012041004 +n40012041005 +n40012041006 +n40012041007 +n40012041008 +n40012041009 +n40012041010 +n40012041011 +n40012041012 +n40012041013 +n40012041014 +n40012041015 +n40012041016 +n40012041017 +n40012041018 +n40012041019 +n40012041020 +n40012041021 +n40012041022 +n40012041023 +n40012041024 +n40012042001 +n40012042002 +n40012042003 +n40012042004 +n40012042005 +n40012042006 +n40012042007 +n40012042008 +n40012042009 +n40012042010 +n40012042011 +n40012042012 +n40012042013 +n40012042014 +n40012042015 +n40012042016 +n40012042017 +n40012042018 +n40012042019 +n40012042020 +n40012042021 +n40012042022 +n40012042023 +n40012042024 +n40012042025 +n40012042026 +n40012042027 +n40012042028 +n40012042029 +n40012043002 +n40012043001 +n40012043003 +n40012043004 +n40012043005 +n40012043006 +n40012043007 +n40012043008 +n40012043009 +n40012043010 +n40012043011 +n40012043012 +n40012043013 +n40012043014 +n40012043015 +n40012043016 +n40012043017 +n40012043018 +n40012044001 +n40012044002 +n40012044003 +n40012044004 +n40012044005 +n40012044006 +n40012044007 +n40012044008 +n40012044009 +n40012044010 +n40012044011 +n40012044012 +n40012044013 +n40012044014 +n40012044015 +n40012044016 +n40012044017 +n40012045001 +n40012045002 +n40012045003 +n40012045004 +n40012045005 +n40012045006 +n40012045007 +n40012045008 +n40012045009 +n40012045010 +n40012045011 +n40012045012 +n40012045013 +n40012045014 +n40012045015 +n40012045016 +n40012045017 +n40012045018 +n40012045019 +n40012045020 +n40012045021 +n40012045022 +n40012045023 +n40012045024 +n40012045025 +n40012045026 +n40012045027 +n40012045028 +n40012045029 +n40012045030 +n40012045031 +n40012045032 +n40012045033 +n40012046001 +n40012046002 +n40012046003 +n40012046004 +n40012046005 +n40012046006 +n40012046007 +n40012046008 +n40012046009 +n40012046010 +n40012046011 +n40012046012 +n40012046013 +n40012046014 +n40012046015 +n40012046016 +n40012046017 +n40012047002 +n40012047001 +n40012047003 +n40012047004 +n40012047005 +n40012047006 +n40012047007 +n40012047008 +n40012047009 +n40012047010 +n40012047011 +n40012047012 +n40012047013 +n40012047014 +n40012047015 +n40012047016 +n40012047017 +n40012048002 +n40012048001 +n40012048003 +n40012048004 +n40012048005 +n40012048006 +n40012048007 +n40012048008 +n40012048009 +n40012048010 +n40012048011 +n40012048012 +n40012048013 +n40012048014 +n40012048015 +n40012048016 +n40012048017 +n40012048018 +n40012049001 +n40012049002 +n40012049003 +n40012049004 +n40012049005 +n40012049006 +n40012049007 +n40012049008 +n40012049009 +n40012049010 +n40012049011 +n40012049012 +n40012049013 +n40012049014 +n40012049015 +n40012049016 +n40012049017 +n40012049018 +n40012050002 +n40012050003 +n40012050001 +n40012050004 +n40012050005 +n40012050006 +n40012050007 +n40012050008 +n40012050009 +n40012050010 +n40012050011 +n40012050012 +n40012050013 +n40012050014 +n40012050015 +n40012050016 +n40012050017 +n40012050018 +n40012050019 +n40012050020 +n40013001001 +n40013001002 +n40013001003 +n40013001004 +n40013001006 +n40013001007 +n40013001005 +n40013001008 +n40013001009 +n40013001010 +n40013001011 +n40013001012 +n40013001013 +n40013002001 +n40013002002 +n40013002003 +n40013002004 +n40013002005 +n40013002006 +n40013002007 +n40013002008 +n40013002009 +n40013002010 +n40013002011 +n40013002012 +n40013002013 +n40013002014 +n40013002015 +n40013002016 +n40013002017 +n40013002018 +n40013002019 +n40013002020 +n40013003001 +n40013003002 +n40013003003 +n40013003004 +n40013003005 +n40013003006 +n40013003007 +n40013003008 +n40013003009 +n40013003010 +n40013003011 +n40013003012 +n40013003013 +n40013004001 +n40013004002 +n40013004003 +n40013004004 +n40013004005 +n40013004007 +n40013004006 +n40013004008 +n40013004009 +n40013004010 +n40013004011 +n40013004012 +n40013004013 +n40013004014 +n40013004015 +n40013004016 +n40013004017 +n40013005002 +n40013005001 +n40013005003 +n40013005004 +n40013005005 +n40013005006 +n40013005007 +n40013005008 +n40013005009 +n40013005010 +n40013005011 +n40013005012 +n40013005013 +n40013005014 +n40013005015 +n40013005016 +n40013005017 +n40013005018 +n40013005019 +n40013005020 +n40013006002 +n40013006001 +n40013006003 +n40013006004 +n40013006005 +n40013006006 +n40013006007 +n40013006008 +n40013006009 +n40013006010 +n40013006011 +n40013007002 +n40013007001 +n40013007003 +n40013007004 +n40013007005 +n40013007006 +n40013007007 +n40013007008 +n40013007009 +n40013007010 +n40013007011 +n40013007012 +n40013007013 +n40013008002 +n40013008001 +n40013008003 +n40013008004 +n40013008005 +n40013008006 +n40013008007 +n40013008008 +n40013008009 +n40013008010 +n40013008011 +n40013008013 +n40013008012 +n40013008014 +n40013008016 +n40013008015 +n40013008017 +n40013008019 +n40013008018 +n40013008020 +n40013009001 +n40013009002 +n40013009003 +n40013009004 +n40013010001 +n40013010002 +n40013010003 +n40013010004 +n40013010005 +n40013010006 +n40013010007 +n40013010008 +n40013010009 +n40013010010 +n40013010011 +n40013010012 +n40013011002 +n40013011001 +n40013011003 +n40013011004 +n40013011005 +n40013011006 +n40013011007 +n40013011008 +n40013011009 +n40013011010 +n40013011011 +n40013011012 +n40013011013 +n40013011014 +n40013011016 +n40013011015 +n40013011017 +n40013011018 +n40013012002 +n40013012001 +n40013012003 +n40013012004 +n40013012005 +n40013012006 +n40013012007 +n40013012009 +n40013012008 +n40013012010 +n40013012011 +n40013012012 +n40013012013 +n40013012014 +n40013012015 +n40013012016 +n40013012017 +n40013013001 +n40013013002 +n40013013003 +n40013013004 +n40013013005 +n40013013006 +n40013013007 +n40013013008 +n40013013009 +n40013013010 +n40013013011 +n40013013012 +n40013013013 +n40013013014 +n40013013015 +n40013013016 +n40013014001 +n40013014002 +n40013014003 +n40013014004 +n40013014005 +n40013014006 +n40013014007 +n40013014008 +n40013014009 +n40013014010 +n40013014011 +n40013014012 +n40013014013 +n40013014014 +n40013014015 +n40013014016 +n40013014017 +n40013014018 +n40013014019 +n40013014020 +n40013014021 +n40013015002 +n40013015001 +n40013015003 +n40013015004 +n40013015005 +n40013015006 +n40013015007 +n40013015008 +n40013015009 +n40013015010 +n40013015011 +n40013015012 +n40013015013 +n40013015014 +n40013015015 +n40013015016 +n40013015017 +n40013015018 +n40013015019 +n40013015020 +n40013015021 +n40013015022 +n40013015023 +n40013015024 +n40013015025 +n40013015026 +n40013015027 +n40013015028 +n40013015029 +n40013015030 +n40013015031 +n40013015032 +n40013015033 +n40013015034 +n40013015035 +n40013016002 +n40013016003 +n40013016001 +n40013016004 +n40013016005 +n40013016006 +n40013016007 +n40013016008 +n40013016009 +n40013016010 +n40013016011 +n40013016012 +n40013016013 +n40013017002 +n40013017001 +n40013017003 +n40013017004 +n40013017005 +n40013017006 +n40013017007 +n40013017008 +n40013017009 +n40013017010 +n40013017011 +n40013017012 +n40013017013 +n40013017014 +n40013017015 +n40013017016 +n40013017017 +n40013017018 +n40013017019 +n40013017020 +n40013017021 +n40013017022 +n40013017023 +n40013018002 +n40013018001 +n40013018003 +n40013018004 +n40013018005 +n40013018006 +n40013018007 +n40013019001 +n40013019002 +n40013019003 +n40013019004 +n40013019005 +n40013019006 +n40013019007 +n40013019008 +n40013019009 +n40013019010 +n40013019011 +n40013019012 +n40013019013 +n40013019014 +n40013019015 +n40013019016 +n40013019017 +n40013019018 +n40013019019 +n40013019020 +n40013019021 +n40013019022 +n40013019023 +n40013019024 +n40013019025 +n40013019026 +n40013019027 +n40013020002 +n40013020001 +n40013020003 +n40013020004 +n40013020005 +n40013020006 +n40013020007 +n40013020008 +n40013020009 +n40013020010 +n40013020011 +n40013020012 +n40013020013 +n40013020014 +n40013020015 +n40013020016 +n40013020017 +n40013020018 +n40013021003 +n40013021001 +n40013021002 +n40013021004 +n40013021005 +n40013021006 +n40013021007 +n40013021008 +n40013021009 +n40013021011 +n40013021010 +n40013021012 +n40013021013 +n40013021014 +n40013021015 +n40013021016 +n40013021017 +n40013021018 +n40013021019 +n40013022002 +n40013022001 +n40013022003 +n40013022004 +n40013022005 +n40013022006 +n40013022007 +n40013022008 +n40013022009 +n40013022010 +n40013022011 +n40013022012 +n40013022013 +n40013022014 +n40013022015 +n40013022016 +n40013022017 +n40013022018 +n40013022019 +n40013022020 +n40013022021 +n40013022022 +n40013022023 +n40013022024 +n40013022025 +n40013022026 +n40013022027 +n40013022028 +n40013023002 +n40013023001 +n40013023003 +n40013023004 +n40013023005 +n40013023006 +n40013023007 +n40013023008 +n40013023009 +n40013023010 +n40013023011 +n40013023012 +n40013023013 +n40013023014 +n40013023015 +n40013023017 +n40013023016 +n40013023018 +n40013023019 +n40013023022 +n40013023020 +n40013023021 +n40013023023 +n40013023025 +n40013023024 +n40013023026 +n40013023028 +n40013023027 +n40013023029 +n40013024001 +n40013024002 +n40013024003 +n40013024004 +n40013024005 +n40013024006 +n40013024007 +n40013024008 +n40013024009 +n40013024010 +n40013024011 +n40013024012 +n40013024013 +n40013024014 +n40013024015 +n40013024016 +n40013024017 +n40013024018 +n40013025002 +n40013025001 +n40013025003 +n40013025004 +n40013025005 +n40013025006 +n40013025007 +n40013025008 +n40013025009 +n40013025010 +n40013025011 +n40013025012 +n40013025013 +n40013025014 +n40013025015 +n40013025016 +n40013025017 +n40013025018 +n40013025019 +n40013026002 +n40013026001 +n40013026003 +n40013026004 +n40013026005 +n40013026006 +n40013026007 +n40013026008 +n40013026009 +n40013026010 +n40013026011 +n40013026012 +n40013026013 +n40013027002 +n40013027001 +n40013027003 +n40013027004 +n40013027005 +n40013027006 +n40013027007 +n40013027008 +n40013027009 +n40013027010 +n40013027011 +n40013027012 +n40013027013 +n40013027014 +n40013027015 +n40013027016 +n40013027017 +n40013027019 +n40013027018 +n40013027020 +n40013027021 +n40013028002 +n40013028001 +n40013028003 +n40013028004 +n40013028005 +n40013028006 +n40013028007 +n40013028008 +n40013028010 +n40013028009 +n40013028011 +n40013028012 +n40013028013 +n40013028015 +n40013028014 +n40013028016 +n40013028017 +n40013028018 +n40013029002 +n40013029001 +n40013029003 +n40013029004 +n40013029005 +n40013029006 +n40013029007 +n40013029008 +n40013029009 +n40013029010 +n40013029011 +n40013029012 +n40013029013 +n40013029014 +n40013030001 +n40013030002 +n40013030003 +n40013030004 +n40013030005 +n40013030006 +n40013030007 +n40013030008 +n40013030009 +n40013030010 +n40013030011 +n40013030012 +n40013030013 +n40013030014 +n40013030015 +n40013030016 +n40013030017 +n40013030018 +n40013030019 +n40013030020 +n40013030021 +n40013030022 +n40013030023 +n40013030024 +n40013030025 +n40013030026 +n40013030027 +n40013030029 +n40013030028 +n40013030030 +n40013030031 +n40013030032 +n40013030033 +n40013030034 +n40013030035 +n40013031001 +n40013031002 +n40013031003 +n40013031004 +n40013031005 +n40013031006 +n40013031007 +n40013031008 +n40013031009 +n40013031010 +n40013031011 +n40013031012 +n40013031013 +n40013031014 +n40013031015 +n40013031016 +n40013031017 +n40013031018 +n40013031019 +n40013031020 +n40013031021 +n40013032003 +n40013032001 +n40013032002 +n40013032004 +n40013032005 +n40013032006 +n40013032007 +n40013032009 +n40013032008 +n40013032010 +n40013032011 +n40013032012 +n40013032013 +n40013032014 +n40013032015 +n40013032016 +n40013032017 +n40013032018 +n40013032019 +n40013032020 +n40013032021 +n40013032022 +n40013032023 +n40013032024 +n40013032025 +n40013032026 +n40013032027 +n40013032028 +n40013032029 +n40013033001 +n40013033002 +n40013033003 +n40013033004 +n40013033005 +n40013033006 +n40013033007 +n40013033008 +n40013033009 +n40013033010 +n40013033011 +n40013033012 +n40013033013 +n40013033014 +n40013033015 +n40013033016 +n40013033017 +n40013033018 +n40013033019 +n40013033020 +n40013033021 +n40013033022 +n40013033023 +n40013034001 +n40013034002 +n40013034003 +n40013034004 +n40013034005 +n40013034006 +n40013034007 +n40013034008 +n40013034009 +n40013034010 +n40013034011 +n40013034012 +n40013034013 +n40013034014 +n40013034015 +n40013035001 +n40013035002 +n40013035003 +n40013035004 +n40013035005 +n40013035006 +n40013035007 +n40013035008 +n40013035009 +n40013035010 +n40013035011 +n40013035012 +n40013035013 +n40013035014 +n40013035015 +n40013035016 +n40013035017 +n40013035018 +n40013036001 +n40013036002 +n40013036003 +n40013036004 +n40013036005 +n40013036006 +n40013036007 +n40013036008 +n40013036009 +n40013036010 +n40013036011 +n40013036012 +n40013036013 +n40013036014 +n40013036015 +n40013036016 +n40013036017 +n40013036018 +n40013036019 +n40013036020 +n40013036021 +n40013036022 +n40013036023 +n40013037002 +n40013037001 +n40013037003 +n40013037004 +n40013037005 +n40013037006 +n40013037007 +n40013037008 +n40013037009 +n40013037010 +n40013037011 +n40013037012 +n40013037013 +n40013037014 +n40013038002 +n40013038001 +n40013038003 +n40013038004 +n40013038005 +n40013038006 +n40013038008 +n40013038007 +n40013038009 +n40013038010 +n40013038011 +n40013038012 +n40013038013 +n40013038014 +n40013038015 +n40013038016 +n40013038018 +n40013038017 +n40013038019 +n40013038020 +n40013038021 +n40013038022 +n40013038023 +n40013038024 +n40013039002 +n40013039001 +n40013039003 +n40013039004 +n40013039005 +n40013039006 +n40013039007 +n40013039008 +n40013039009 +n40013039011 +n40013039010 +n40013039012 +n40013039013 +n40013039014 +n40013039015 +n40013039017 +n40013039016 +n40013039018 +n40013039019 +n40013039020 +n40013040002 +n40013040001 +n40013040003 +n40013040004 +n40013040005 +n40013040006 +n40013040007 +n40013040008 +n40013040009 +n40013040010 +n40013040011 +n40013040012 +n40013040013 +n40013040014 +n40013040015 +n40013041001 +n40013041002 +n40013041003 +n40013041004 +n40013041005 +n40013041006 +n40013041007 +n40013041008 +n40013041009 +n40013041010 +n40013041011 +n40013041012 +n40013041013 +n40013041014 +n40013041015 +n40013041016 +n40013041017 +n40013041018 +n40013041019 +n40013041020 +n40013041021 +n40013041022 +n40013042001 +n40013042002 +n40013042003 +n40013042004 +n40013042005 +n40013042006 +n40013042007 +n40013042008 +n40013042009 +n40013042010 +n40013042011 +n40013042012 +n40013042013 +n40013042014 +n40013042015 +n40013042016 +n40013042017 +n40013043001 +n40013043002 +n40013043003 +n40013043004 +n40013043008 +n40013043009 +n40013043010 +n40013043011 +n40013043012 +n40013043013 +n40013043005 +n40013043006 +n40013043007 +n40013043014 +n40013043015 +n40013043016 +n40013043017 +n40013044001 +n40013044002 +n40013044003 +n40013044004 +n40013044005 +n40013044006 +n40013044007 +n40013044008 +n40013044009 +n40013044010 +n40013044011 +n40013044012 +n40013044013 +n40013044014 +n40013044015 +n40013044016 +n40013044017 +n40013044018 +n40013044019 +n40013044020 +n40013044021 +n40013044022 +n40013044023 +n40013044024 +n40013044025 +n40013044026 +n40013044027 +n40013044028 +n40013044029 +n40013044030 +n40013045001 +n40013045002 +n40013045003 +n40013045004 +n40013045005 +n40013045006 +n40013045007 +n40013045008 +n40013045009 +n40013045010 +n40013045011 +n40013046002 +n40013046001 +n40013046003 +n40013046004 +n40013046005 +n40013046006 +n40013046007 +n40013046008 +n40013046009 +n40013046010 +n40013046011 +n40013046012 +n40013046013 +n40013047001 +n40013047002 +n40013047003 +n40013047004 +n40013047005 +n40013047006 +n40013047007 +n40013047008 +n40013047009 +n40013047010 +n40013047011 +n40013047012 +n40013047013 +n40013047014 +n40013047015 +n40013047016 +n40013047017 +n40013048001 +n40013048002 +n40013048003 +n40013048004 +n40013048005 +n40013048006 +n40013048007 +n40013048008 +n40013048009 +n40013048010 +n40013048011 +n40013048012 +n40013048013 +n40013048014 +n40013048016 +n40013048015 +n40013048017 +n40013048018 +n40013048019 +n40013049001 +n40013049002 +n40013049003 +n40013049004 +n40013049005 +n40013049006 +n40013049007 +n40013049008 +n40013049009 +n40013049010 +n40013049011 +n40013049012 +n40013049013 +n40013049014 +n40013049015 +n40013049016 +n40013049017 +n40013049018 +n40013050001 +n40013050002 +n40013050003 +n40013050004 +n40013050005 +n40013050006 +n40013050007 +n40013050008 +n40013050009 +n40013050010 +n40013050011 +n40013050012 +n40013050013 +n40013050014 +n40013050015 +n40013050016 +n40013050017 +n40013051001 +n40013051002 +n40013051003 +n40013051004 +n40013051005 +n40013051006 +n40013052002 +n40013052001 +n40013052003 +n40013052004 +n40013052005 +n40013052006 +n40013052007 +n40013052008 +n40013052009 +n40013052010 +n40013052011 +n40013052012 +n40013052013 +n40013052014 +n40013052015 +n40013052016 +n40013052017 +n40013052018 +n40013052019 +n40013052020 +n40013052021 +n40013052022 +n40013052023 +n40013052024 +n40013052025 +n40013052026 +n40013053001 +n40013053002 +n40013053003 +n40013053004 +n40013053005 +n40013053006 +n40013053007 +n40013053008 +n40013053009 +n40013053010 +n40013053011 +n40013054001 +n40013054002 +n40013054003 +n40013054004 +n40013054005 +n40013054006 +n40013054007 +n40013054008 +n40013054009 +n40013054010 +n40013054011 +n40013054012 +n40013054013 +n40013054014 +n40013054015 +n40013054016 +n40013054017 +n40013054018 +n40013054019 +n40013054020 +n40013054021 +n40013054022 +n40013054023 +n40013054024 +n40013054025 +n40013055001 +n40013055002 +n40013055003 +n40013055004 +n40013055005 +n40013055006 +n40013055007 +n40013055008 +n40013055009 +n40013055010 +n40013055011 +n40013055012 +n40013055013 +n40013055014 +n40013055015 +n40013055016 +n40013055017 +n40013055018 +n40013055019 +n40013055020 +n40013055021 +n40013055022 +n40013055023 +n40013055024 +n40013056001 +n40013056002 +n40013056003 +n40013056004 +n40013056005 +n40013056006 +n40013056007 +n40013056008 +n40013056009 +n40013056011 +n40013056010 +n40013056012 +n40013056013 +n40013056014 +n40013057001 +n40013057002 +n40013057003 +n40013057004 +n40013057006 +n40013057005 +n40013057007 +n40013057008 +n40013057009 +n40013057010 +n40013057011 +n40013057012 +n40013057013 +n40013057014 +n40013057015 +n40013057016 +n40013057017 +n40013057018 +n40013057019 +n40013057020 +n40013057021 +n40013057022 +n40013057023 +n40013058001 +n40013058002 +n40013058003 +n40013058004 +n40013058005 +n40013058006 +n40013058007 +n40013058008 +n40013058009 +n40013058010 +n40014001001 +n40014001002 +n40014001003 +n40014001004 +n40014001005 +n40014001006 +n40014001007 +n40014001008 +n40014001009 +n40014001010 +n40014001011 +n40014002001 +n40014002002 +n40014002003 +n40014002004 +n40014002005 +n40014002006 +n40014002007 +n40014002008 +n40014002009 +n40014002010 +n40014002011 +n40014002012 +n40014002013 +n40014002014 +n40014002015 +n40014002016 +n40014002017 +n40014002018 +n40014002019 +n40014002020 +n40014002021 +n40014002022 +n40014002023 +n40014003002 +n40014003001 +n40014003003 +n40014003004 +n40014003005 +n40014003006 +n40014003007 +n40014003008 +n40014003009 +n40014003010 +n40014003011 +n40014003012 +n40014003013 +n40014003014 +n40014003015 +n40014003016 +n40014003017 +n40014003018 +n40014003019 +n40014004002 +n40014004001 +n40014004003 +n40014004004 +n40014004005 +n40014004006 +n40014004007 +n40014004008 +n40014004009 +n40014004010 +n40014005001 +n40014005002 +n40014005003 +n40014005004 +n40014005005 +n40014005006 +n40014005007 +n40014005008 +n40014005009 +n40014005010 +n40014005011 +n40014005012 +n40014006002 +n40014006001 +n40014006004 +n40014006005 +n40014006003 +n40014006006 +n40014006007 +n40014006008 +n40014006009 +n40014006010 +n40014006011 +n40014006012 +n40014006013 +n40014006014 +n40014006015 +n40014006016 +n40014006017 +n40014007001 +n40014007002 +n40014007003 +n40014007004 +n40014007005 +n40014007006 +n40014007008 +n40014007007 +n40014007009 +n40014008002 +n40014008001 +n40014008003 +n40014008004 +n40014008005 +n40014008006 +n40014008007 +n40014008010 +n40014008008 +n40014008009 +n40014008011 +n40014008012 +n40014008013 +n40014008014 +n40014008015 +n40014008016 +n40014008017 +n40014008018 +n40014009001 +n40014009002 +n40014009003 +n40014009004 +n40014009005 +n40014009006 +n40014009007 +n40014009008 +n40014009009 +n40014009010 +n40014009011 +n40014009012 +n40014010001 +n40014010002 +n40014010003 +n40014010004 +n40014010005 +n40014010006 +n40014010007 +n40014011001 +n40014011002 +n40014011003 +n40014011004 +n40014011005 +n40014011006 +n40014011007 +n40014011008 +n40014011009 +n40014011010 +n40014011011 +n40014011012 +n40014011013 +n40014011014 +n40014011015 +n40014011016 +n40014012001 +n40014012002 +n40014012003 +n40014012004 +n40014012005 +n40014012006 +n40014012007 +n40014012008 +n40014012009 +n40014012010 +n40014012011 +n40014012012 +n40014012013 +n40014012014 +n40014012015 +n40014012016 +n40014013002 +n40014013001 +n40014013003 +n40014013004 +n40014013005 +n40014013006 +n40014013007 +n40014013008 +n40014013009 +n40014013010 +n40014013011 +n40014013012 +n40014013013 +n40014013014 +n40014013015 +n40014013016 +n40014013017 +n40014013018 +n40014013019 +n40014013020 +n40014013021 +n40014013022 +n40014013023 +n40014014001 +n40014014002 +n40014014003 +n40014014004 +n40014014005 +n40014014006 +n40014014007 +n40014014008 +n40014014009 +n40014014010 +n40014014011 +n40014014012 +n40014014013 +n40014014014 +n40014015002 +n40014015001 +n40014015003 +n40014015004 +n40014015005 +n40014015006 +n40014015007 +n40014015008 +n40014015009 +n40014015010 +n40014015011 +n40014015012 +n40014015013 +n40014015014 +n40014015015 +n40014015016 +n40014015017 +n40014015019 +n40014015018 +n40014015020 +n40014015021 +n40014015022 +n40014015023 +n40014015024 +n40014015025 +n40014015026 +n40014015027 +n40014015028 +n40014015029 +n40014016002 +n40014016001 +n40014016003 +n40014016004 +n40014016005 +n40014016006 +n40014016007 +n40014016008 +n40014016009 +n40014016010 +n40014016011 +n40014016012 +n40014016013 +n40014017002 +n40014017001 +n40014017003 +n40014017004 +n40014017005 +n40014017006 +n40014017007 +n40014017008 +n40014017009 +n40014017010 +n40014017011 +n40014017012 +n40014017013 +n40014017014 +n40014018002 +n40014018001 +n40014018003 +n40014018004 +n40014018005 +n40014018006 +n40014018007 +n40014019001 +n40014019002 +n40014019003 +n40014019004 +n40014019005 +n40014019006 +n40014019007 +n40014019008 +n40014019009 +n40014019010 +n40014019011 +n40014019012 +n40014019013 +n40014019014 +n40014019015 +n40014019016 +n40014019017 +n40014019018 +n40014019019 +n40014019020 +n40014019021 +n40014019022 +n40014019023 +n40014019024 +n40014019025 +n40014019026 +n40014019027 +n40014019028 +n40014019030 +n40014019029 +n40014019031 +n40014019032 +n40014019033 +n40014020001 +n40014020002 +n40014020003 +n40014020004 +n40014020005 +n40014020006 +n40014020007 +n40014020008 +n40014020009 +n40014020010 +n40014020011 +n40014020012 +n40014020013 +n40014020014 +n40014021002 +n40014021001 +n40014021003 +n40014021004 +n40014021005 +n40014021006 +n40014021007 +n40014021008 +n40014021009 +n40014021010 +n40014021011 +n40014022001 +n40014022002 +n40014022003 +n40014022004 +n40014022005 +n40014022006 +n40014022007 +n40014022008 +n40014022009 +n40014022010 +n40014022011 +n40014022012 +n40014022013 +n40014022014 +n40014022015 +n40014022016 +n40014022017 +n40014022018 +n40014022019 +n40014022020 +n40014023001 +n40014023002 +n40014023003 +n40014023004 +n40014023005 +n40014023006 +n40014023007 +n40014023008 +n40014023009 +n40014023010 +n40014023011 +n40014023013 +n40014023012 +n40014023014 +n40014023015 +n40014023016 +n40014023017 +n40014024002 +n40014024001 +n40014024003 +n40014024004 +n40014024005 +n40014024006 +n40014024007 +n40014024008 +n40014024009 +n40014024010 +n40014024011 +n40014024012 +n40014024013 +n40014024014 +n40014024016 +n40014024015 +n40014024017 +n40014024018 +n40014024019 +n40014025002 +n40014025001 +n40014025003 +n40014025004 +n40014025005 +n40014025006 +n40014025007 +n40014025008 +n40014025009 +n40014025010 +n40014025011 +n40014025012 +n40014026002 +n40014026001 +n40014026003 +n40014026004 +n40014026005 +n40014026006 +n40014026007 +n40014026008 +n40014026009 +n40014026010 +n40014026011 +n40014026012 +n40014026013 +n40014026014 +n40014026015 +n40014026016 +n40014026017 +n40014026018 +n40014026019 +n40014027002 +n40014027001 +n40014027003 +n40014027004 +n40014027005 +n40014027006 +n40014027007 +n40014027008 +n40014027009 +n40014027010 +n40014027011 +n40014027012 +n40014028002 +n40014028001 +n40014028003 +n40014028004 +n40014028005 +n40014028006 +n40014028007 +n40014028008 +n40014028009 +n40014028010 +n40014028011 +n40014028012 +n40014028013 +n40014028014 +n40014028015 +n40014028016 +n40014028017 +n40014028018 +n40014029002 +n40014029001 +n40014029003 +n40014029004 +n40014029005 +n40014029006 +n40014029007 +n40014029008 +n40014029009 +n40014029010 +n40014029011 +n40014029012 +n40014029013 +n40014029014 +n40014029015 +n40014029016 +n40014029017 +n40014029018 +n40014029019 +n40014030002 +n40014030001 +n40014030003 +n40014030004 +n40014030005 +n40014030006 +n40014030007 +n40014030008 +n40014030009 +n40014030010 +n40014030011 +n40014030012 +n40014030013 +n40014031002 +n40014031001 +n40014031003 +n40014031004 +n40014031005 +n40014031006 +n40014031007 +n40014031008 +n40014031009 +n40014031010 +n40014031011 +n40014031012 +n40014031013 +n40014031014 +n40014031015 +n40014031016 +n40014032001 +n40014032002 +n40014032003 +n40014032004 +n40014032005 +n40014032006 +n40014032007 +n40014032008 +n40014032009 +n40014033002 +n40014033001 +n40014033003 +n40014033004 +n40014033005 +n40014033006 +n40014033007 +n40014033008 +n40014033009 +n40014033010 +n40014033011 +n40014033012 +n40014034001 +n40014034002 +n40014034003 +n40014034004 +n40014034005 +n40014034006 +n40014034007 +n40014034008 +n40014035001 +n40014035002 +n40014035003 +n40014035004 +n40014035005 +n40014035006 +n40014035007 +n40014035008 +n40014035009 +n40014035010 +n40014035011 +n40014035012 +n40014035013 +n40014035014 +n40014035015 +n40014035016 +n40014035017 +n40014035018 +n40014035019 +n40014035020 +n40014035021 +n40014036001 +n40014036002 +n40014036003 +n40014036004 +n40014036005 +n40014036006 +n40014036007 +n40014036008 +n40014036009 +n40014036010 +n40014036011 +n40014036012 +n40014036013 +n40014036014 +n40014036015 +n40015001001 +n40015001002 +n40015001003 +n40015001004 +n40015001005 +n40015001006 +n40015001007 +n40015001008 +n40015001009 +n40015001010 +n40015002001 +n40015002002 +n40015002003 +n40015002004 +n40015002005 +n40015002006 +n40015002007 +n40015002008 +n40015002009 +n40015002010 +n40015002012 +n40015002011 +n40015002013 +n40015002014 +n40015002015 +n40015002016 +n40015002017 +n40015002018 +n40015003002 +n40015003001 +n40015003003 +n40015003004 +n40015003005 +n40015003006 +n40015003007 +n40015003008 +n40015003009 +n40015003010 +n40015003011 +n40015003012 +n40015003013 +n40015003014 +n40015003015 +n40015003016 +n40015003017 +n40015003018 +n40015004002 +n40015004001 +n40015004003 +n40015004004 +n40015004005 +n40015004006 +n40015004007 +n40015004008 +n40015004009 +n40015004010 +n40015004011 +n40015004012 +n40015004013 +n40015004014 +n40015004015 +n40015004016 +n40015004017 +n40015004018 +n40015005002 +n40015005001 +n40015005003 +n40015005005 +n40015005004 +n40015005006 +n40015005007 +n40015005008 +n40015005009 +n40015005010 +n40015005011 +n40015005012 +n40015005014 +n40015005013 +n40015005015 +n40015005016 +n40015005017 +n40015006001 +n40015006002 +n40015006003 +n40015006004 +n40015006005 +n40015006006 +n40015006007 +n40015006008 +n40015006009 +n40015006010 +n40015006011 +n40015006012 +n40015006013 +n40015006014 +n40015006015 +n40015006016 +n40015006017 +n40015006018 +n40015006019 +n40015006020 +n40015007001 +n40015007002 +n40015007003 +n40015007004 +n40015007005 +n40015007006 +n40015007007 +n40015008001 +n40015008002 +n40015008003 +n40015008004 +n40015008005 +n40015008006 +n40015008007 +n40015008009 +n40015008008 +n40015008010 +n40015008011 +n40015008012 +n40015008013 +n40015008014 +n40015008015 +n40015009002 +n40015009001 +n40015009003 +n40015009004 +n40015009005 +n40015009006 +n40015009007 +n40015009008 +n40015010001 +n40015010002 +n40015010003 +n40015010004 +n40015010005 +n40015010006 +n40015010007 +n40015010008 +n40015010009 +n40015011001 +n40015011002 +n40015011003 +n40015011004 +n40015011005 +n40015011006 +n40015011007 +n40015011008 +n40015011009 +n40015011010 +n40015011011 +n40015011012 +n40015011013 +n40015011014 +n40015011015 +n40015011016 +n40015011017 +n40015011018 +n40015011019 +n40015012001 +n40015012002 +n40015012003 +n40015012004 +n40015012005 +n40015012006 +n40015012007 +n40015012008 +n40015012009 +n40015012010 +n40015012011 +n40015012012 +n40015012013 +n40015012014 +n40015013002 +n40015013001 +n40015013003 +n40015013004 +n40015013005 +n40015013006 +n40015013007 +n40015013008 +n40015013009 +n40015013010 +n40015013011 +n40015013012 +n40015013013 +n40015013014 +n40015013015 +n40015014001 +n40015014002 +n40015014004 +n40015014003 +n40015014005 +n40015014006 +n40015014008 +n40015014010 +n40015014007 +n40015014009 +n40015014011 +n40015014012 +n40015014013 +n40015014014 +n40015014015 +n40015015002 +n40015015001 +n40015015003 +n40015015004 +n40015015005 +n40015015006 +n40015015007 +n40015015008 +n40015015009 +n40015015010 +n40015016002 +n40015016001 +n40015016003 +n40015016004 +n40015016005 +n40015016006 +n40015016007 +n40015016008 +n40015017001 +n40015017002 +n40015017003 +n40015017004 +n40015017005 +n40015017006 +n40015017007 +n40015017008 +n40015017009 +n40015017010 +n40015017011 +n40015017012 +n40015017013 +n40015017014 +n40015017015 +n40015017016 +n40015017017 +n40015018002 +n40015018001 +n40015018003 +n40015018004 +n40015018005 +n40015018006 +n40015018007 +n40015018008 +n40015018009 +n40015018010 +n40015018011 +n40015018012 +n40015018013 +n40015018014 +n40015019002 +n40015019001 +n40015019003 +n40015019004 +n40015019005 +n40015019006 +n40015019007 +n40015019008 +n40015019009 +n40015019010 +n40015019011 +n40015019012 +n40015019013 +n40015020001 +n40015020002 +n40015020003 +n40015020004 +n40015020005 +n40015020006 +n40015020008 +n40015020007 +n40015020009 +n40015020010 +n40015020011 +n40015020012 +n40015020013 +n40015020014 +n40015020015 +n40015021001 +n40015021002 +n40015021003 +n40015021004 +n40015021005 +n40015021006 +n40015021007 +n40015021008 +n40015021009 +n40015021010 +n40015021011 +n40015021012 +n40015022001 +n40015022002 +n40015022003 +n40015022004 +n40015022005 +n40015022006 +n40015022007 +n40015022008 +n40015022009 +n40015022010 +n40015022011 +n40015022012 +n40015022013 +n40015022014 +n40015022015 +n40015022016 +n40015022017 +n40015022018 +n40015022019 +n40015022020 +n40015022021 +n40015023002 +n40015023001 +n40015023003 +n40015023004 +n40015023005 +n40015023006 +n40015023007 +n40015023008 +n40015023009 +n40015023010 +n40015023011 +n40015023012 +n40015023013 +n40015023014 +n40015023015 +n40015023016 +n40015023017 +n40015023018 +n40015023019 +n40015023020 +n40015024002 +n40015024001 +n40015024003 +n40015024004 +n40015024005 +n40015024006 +n40015024007 +n40015024008 +n40015024009 +n40015024010 +n40015024011 +n40015024012 +n40015024013 +n40015024014 +n40015024015 +n40015025002 +n40015025001 +n40015025003 +n40015025004 +n40015025005 +n40015025006 +n40015025007 +n40015025008 +n40015025009 +n40015026002 +n40015026001 +n40015026003 +n40015026004 +n40015026005 +n40015026006 +n40015026007 +n40015026008 +n40015026009 +n40015026010 +n40015026011 +n40015026012 +n40015026013 +n40015026014 +n40015026015 +n40015026016 +n40015027002 +n40015027001 +n40015027003 +n40015027004 +n40015027005 +n40015027007 +n40015027006 +n40015027008 +n40015027009 +n40015027010 +n40015027011 +n40015027012 +n40015027013 +n40015027014 +n40015027015 +n40015027016 +n40015027017 +n40015027018 +n40015027019 +n40015027020 +n40015027021 +n40015028001 +n40015028002 +n40015028003 +n40015028004 +n40015028005 +n40015028006 +n40015028007 +n40015028008 +n40015028009 +n40015028010 +n40015028011 +n40015028012 +n40015028013 +n40015028014 +n40015028015 +n40015028016 +n40015028017 +n40015028018 +n40015028019 +n40015028020 +n40015028021 +n40015028022 +n40015028023 +n40015028024 +n40015028025 +n40015029001 +n40015029002 +n40015029003 +n40015029004 +n40015029005 +n40015029006 +n40015029007 +n40015029008 +n40015029009 +n40015029010 +n40015029011 +n40015029012 +n40015029013 +n40015029014 +n40015029015 +n40015029016 +n40015029017 +n40015029018 +n40015030001 +n40015030002 +n40015030003 +n40015030004 +n40015030005 +n40015030006 +n40015030007 +n40015030008 +n40015030009 +n40015030010 +n40015030011 +n40015030012 +n40015030013 +n40015030014 +n40015030015 +n40015030016 +n40015030017 +n40015030018 +n40015030019 +n40015030020 +n40015030021 +n40015030022 +n40015030023 +n40015030024 +n40015030025 +n40015031001 +n40015031002 +n40015031003 +n40015031004 +n40015031005 +n40015031006 +n40015031007 +n40015031008 +n40015031009 +n40015031010 +n40015031011 +n40015031012 +n40015031013 +n40015031014 +n40015031015 +n40015031016 +n40015031017 +n40015031018 +n40015031019 +n40015031020 +n40015032002 +n40015032001 +n40015032003 +n40015032004 +n40015032005 +n40015032006 +n40015032007 +n40015032008 +n40015032009 +n40015032010 +n40015032011 +n40015032012 +n40015032013 +n40015032014 +n40015032015 +n40015032016 +n40015032017 +n40015032018 +n40015032019 +n40015032020 +n40015032021 +n40015032022 +n40015032023 +n40015032024 +n40015032025 +n40015032026 +n40015032027 +n40015032028 +n40015032029 +n40015032030 +n40015032031 +n40015032032 +n40015032033 +n40015032034 +n40015032035 +n40015033001 +n40015033002 +n40015033003 +n40015033004 +n40015033005 +n40015033006 +n40015033007 +n40015033008 +n40015033009 +n40015033010 +n40015033011 +n40015033012 +n40015033013 +n40015033014 +n40015033015 +n40015034001 +n40015034002 +n40015034003 +n40015034004 +n40015034005 +n40015034006 +n40015034007 +n40015034008 +n40015034010 +n40015034009 +n40015034011 +n40015034012 +n40015034013 +n40015034014 +n40015034015 +n40015035001 +n40015035002 +n40015035003 +n40015035004 +n40015035005 +n40015035006 +n40015035007 +n40015035008 +n40015036001 +n40015036002 +n40015036003 +n40015036004 +n40015036005 +n40015036006 +n40015036007 +n40015036008 +n40015036009 +n40015036010 +n40015036011 +n40015036012 +n40015036013 +n40015036014 +n40015036016 +n40015036015 +n40015036017 +n40015036018 +n40015036019 +n40015037001 +n40015037002 +n40015037003 +n40015037004 +n40015037005 +n40015037006 +n40015037007 +n40015037008 +n40015037009 +n40015037010 +n40015037012 +n40015037013 +n40015037014 +n40015037011 +n40015038002 +n40015038001 +n40015038003 +n40015038004 +n40015038005 +n40015038006 +n40015038007 +n40015038008 +n40015038009 +n40015038010 +n40015039001 +n40015039002 +n40015039003 +n40015039004 +n40015039005 +n40015039006 +n40015039007 +n40015039008 +n40015039009 +n40015039010 +n40015039011 +n40015039012 +n40015039013 +n40015039014 +n40016001001 +n40016001002 +n40016001003 +n40016001004 +n40016001005 +n40016001006 +n40016001007 +n40016001008 +n40016001009 +n40016001010 +n40016001011 +n40016001012 +n40016001013 +n40016001014 +n40016001015 +n40016002002 +n40016002001 +n40016002003 +n40016002004 +n40016002005 +n40016002006 +n40016002007 +n40016002008 +n40016002009 +n40016002011 +n40016002010 +n40016002012 +n40016002013 +n40016003001 +n40016003002 +n40016003003 +n40016003004 +n40016003006 +n40016003005 +n40016003007 +n40016003008 +n40016003009 +n40016003011 +n40016003010 +n40016003012 +n40016003013 +n40016003014 +n40016003016 +n40016003015 +n40016003018 +n40016003017 +n40016003019 +n40016003020 +n40016003021 +n40016003022 +n40016003023 +n40016004001 +n40016004002 +n40016004003 +n40016004004 +n40016004005 +n40016004006 +n40016004007 +n40016004008 +n40016004009 +n40016004010 +n40016004011 +n40016004012 +n40016004013 +n40016004014 +n40016004015 +n40016004016 +n40016004017 +n40016004018 +n40016004019 +n40016004020 +n40016005001 +n40016005003 +n40016005004 +n40016005002 +n40016005005 +n40016005006 +n40016005007 +n40016005008 +n40016005009 +n40016005010 +n40016006002 +n40016006001 +n40016006003 +n40016006004 +n40016006005 +n40016006006 +n40016006007 +n40016006008 +n40016006009 +n40016006010 +n40016006011 +n40016006012 +n40016006013 +n40016006014 +n40016006015 +n40016007002 +n40016007001 +n40016007003 +n40016007004 +n40016007005 +n40016007006 +n40016007007 +n40016007008 +n40016007009 +n40016007010 +n40016008002 +n40016008001 +n40016008003 +n40016008004 +n40016008005 +n40016008006 +n40016008007 +n40016008008 +n40016008009 +n40016008010 +n40016008011 +n40016008012 +n40016008013 +n40016008014 +n40016009001 +n40016009002 +n40016009003 +n40016009004 +n40016009005 +n40016009006 +n40016009007 +n40016009008 +n40016009009 +n40016009010 +n40016009011 +n40016009012 +n40016009013 +n40016010001 +n40016010002 +n40016010003 +n40016010004 +n40016010005 +n40016010006 +n40016010007 +n40016010008 +n40016010009 +n40016010010 +n40016011001 +n40016011002 +n40016011003 +n40016011004 +n40016011005 +n40016011006 +n40016011007 +n40016011008 +n40016011009 +n40016011011 +n40016011010 +n40016011012 +n40016011013 +n40016011014 +n40016011015 +n40016011016 +n40016011017 +n40016011018 +n40016012001 +n40016012002 +n40016012003 +n40016012004 +n40016012005 +n40016012006 +n40016012007 +n40016012008 +n40016012009 +n40016012010 +n40016012011 +n40016012012 +n40016012013 +n40016012014 +n40016012015 +n40016012016 +n40016012017 +n40016012018 +n40016012019 +n40016013002 +n40016013003 +n40016013004 +n40016013001 +n40016013005 +n40016013006 +n40016013007 +n40016013008 +n40016013009 +n40016013010 +n40016013011 +n40016013012 +n40016013013 +n40016013014 +n40016013015 +n40016013017 +n40016013018 +n40016013019 +n40016013016 +n40016013020 +n40016013021 +n40016013022 +n40016013023 +n40016013024 +n40016014002 +n40016014001 +n40016014003 +n40016014005 +n40016014004 +n40016014006 +n40016014007 +n40016014008 +n40016014010 +n40016014009 +n40016014011 +n40016014013 +n40016014012 +n40016014014 +n40016014015 +n40016014016 +n40016014017 +n40016014018 +n40016015001 +n40016015002 +n40016015004 +n40016015003 +n40016015005 +n40016015006 +n40016015008 +n40016015007 +n40016016002 +n40016016001 +n40016016003 +n40016016004 +n40016016005 +n40016016006 +n40016016007 +n40016016008 +n40016016009 +n40016016010 +n40016016011 +n40016016012 +n40016016013 +n40016016014 +n40016016015 +n40016017002 +n40016017001 +n40016017003 +n40016017004 +n40016017005 +n40016017006 +n40016017007 +n40016017008 +n40016017009 +n40016017010 +n40016017011 +n40016017012 +n40016017013 +n40016017014 +n40016017015 +n40016017016 +n40016017017 +n40016017018 +n40016017019 +n40016017020 +n40016017021 +n40016017022 +n40016017023 +n40016017024 +n40016017025 +n40016018002 +n40016018001 +n40016018003 +n40016018004 +n40016018005 +n40016018006 +n40016018007 +n40016018008 +n40016018009 +n40016018010 +n40016018011 +n40016018012 +n40016018013 +n40016018014 +n40016018015 +n40016018016 +n40016018017 +n40016018018 +n40016018019 +n40016018020 +n40016018021 +n40016018022 +n40016018023 +n40016019001 +n40016019002 +n40016019003 +n40016019004 +n40016019005 +n40016019006 +n40016019007 +n40016019008 +n40016019009 +n40016019011 +n40016019010 +n40016019012 +n40016019013 +n40016019014 +n40016019015 +n40016019016 +n40016019017 +n40016019018 +n40016019019 +n40016019020 +n40016019021 +n40016019023 +n40016019022 +n40016019024 +n40016019025 +n40016019026 +n40016019027 +n40016019028 +n40016019029 +n40016019030 +n40016019031 +n40016019032 +n40016020001 +n40016020002 +n40016020003 +n40016020004 +n40016020005 +n40016020006 +n40016020007 +n40016020008 +n40016020009 +n40016020010 +n40016020011 +n40016020012 +n40016021001 +n40016021002 +n40016021003 +n40016021004 +n40016021005 +n40016021006 +n40016021007 +n40016021008 +n40016021009 +n40016021010 +n40016021011 +n40016021012 +n40016021013 +n40016021014 +n40016021015 +n40016021016 +n40016021017 +n40016021018 +n40016021019 +n40016021020 +n40016021021 +n40016021022 +n40016021023 +n40016021024 +n40016021025 +n40016021026 +n40016021027 +n40016021028 +n40016021029 +n40016021030 +n40016021031 +n40016021032 +n40016022001 +n40016022002 +n40016022003 +n40016022004 +n40016022005 +n40016022006 +n40016022007 +n40016022008 +n40016022009 +n40016022010 +n40016022011 +n40016022012 +n40016022013 +n40016022014 +n40016022015 +n40016022016 +n40016022017 +n40016023002 +n40016023001 +n40016023003 +n40016023004 +n40016023005 +n40016023006 +n40016023007 +n40016023008 +n40016023009 +n40016023010 +n40016023011 +n40016023013 +n40016023012 +n40016023014 +n40016023015 +n40016023016 +n40016023017 +n40016023018 +n40016023019 +n40016023020 +n40016023021 +n40016023022 +n40016023023 +n40016024001 +n40016024002 +n40016024003 +n40016024004 +n40016024005 +n40016024006 +n40016024007 +n40016024008 +n40016024009 +n40016024010 +n40016024011 +n40016024012 +n40016024013 +n40016024014 +n40016024015 +n40016024016 +n40016024017 +n40016024018 +n40016024019 +n40016024020 +n40016024021 +n40016024022 +n40016024023 +n40016025002 +n40016025003 +n40016025001 +n40016025004 +n40016025005 +n40016025006 +n40016025007 +n40016025008 +n40016025009 +n40016025010 +n40016025012 +n40016025013 +n40016025011 +n40016025014 +n40016025015 +n40016025016 +n40016025017 +n40016025018 +n40016025019 +n40016025020 +n40016025021 +n40016026002 +n40016026001 +n40016026003 +n40016026004 +n40016026005 +n40016026006 +n40016026007 +n40016026008 +n40016026009 +n40016026011 +n40016026010 +n40016026012 +n40016026013 +n40016026014 +n40016026015 +n40016026016 +n40016026017 +n40016026018 +n40016026019 +n40016026020 +n40016026021 +n40016026022 +n40016027002 +n40016027001 +n40016027003 +n40016027004 +n40016027005 +n40016027006 +n40016027007 +n40016027008 +n40016027009 +n40016027010 +n40016027011 +n40016027012 +n40016027013 +n40016027014 +n40016027015 +n40016027016 +n40016027017 +n40016027018 +n40016027019 +n40016027020 +n40016027021 +n40016027022 +n40016027023 +n40016027024 +n40016027025 +n40016028001 +n40016028002 +n40016028003 +n40016028004 +n40016028005 +n40016028006 +n40016028007 +n40016028008 +n40016028009 +n40016028010 +n40016028011 +n40016028012 +n40016028013 +n40016028014 +n40016028015 +n40016028016 +n40016028017 +n40016028018 +n40016028019 +n40016028020 +n40016028021 +n40016028022 +n40016028023 +n40016028024 +n40016028025 +n40016028026 +n40017001001 +n40017001002 +n40017001003 +n40017001004 +n40017001005 +n40017001006 +n40017001007 +n40017001008 +n40017001009 +n40017001010 +n40017001011 +n40017001012 +n40017001013 +n40017001014 +n40017001015 +n40017001016 +n40017001017 +n40017001018 +n40017001019 +n40017001020 +n40017001021 +n40017001022 +n40017001023 +n40017001024 +n40017002001 +n40017002002 +n40017002003 +n40017002004 +n40017002005 +n40017002006 +n40017002007 +n40017002008 +n40017002009 +n40017002010 +n40017002011 +n40017002012 +n40017002014 +n40017002013 +n40017002015 +n40017002016 +n40017002017 +n40017002018 +n40017002019 +n40017002020 +n40017002021 +n40017003001 +n40017003002 +n40017003003 +n40017003004 +n40017003005 +n40017003006 +n40017003007 +n40017003008 +n40017003009 +n40017003010 +n40017004002 +n40017004001 +n40017004003 +n40017004004 +n40017004005 +n40017004006 +n40017004007 +n40017004008 +n40017004009 +n40017004010 +n40017004011 +n40017004012 +n40017004013 +n40017004014 +n40017004015 +n40017004016 +n40017004017 +n40017004018 +n40017004019 +n40017004020 +n40017004021 +n40017004022 +n40017004023 +n40017004024 +n40017004025 +n40017004026 +n40017004027 +n40017005001 +n40017005002 +n40017005003 +n40017005004 +n40017005005 +n40017005006 +n40017005007 +n40017005008 +n40017005009 +n40017005010 +n40017005011 +n40017005012 +n40017005013 +n40017005014 +n40017005015 +n40017005016 +n40017005017 +n40017005018 +n40017005019 +n40017005020 +n40017005021 +n40017005022 +n40017005023 +n40017005024 +n40017005025 +n40017005026 +n40017005027 +n40017006001 +n40017006002 +n40017006003 +n40017006004 +n40017006005 +n40017006006 +n40017006007 +n40017006008 +n40017006009 +n40017006010 +n40017006011 +n40017007001 +n40017007002 +n40017007003 +n40017007004 +n40017007005 +n40017007006 +n40017007007 +n40017007008 +n40017007009 +n40017007010 +n40017007011 +n40017007012 +n40017008002 +n40017008001 +n40017008003 +n40017008004 +n40017008005 +n40017008006 +n40017008007 +n40017008008 +n40017008009 +n40017008010 +n40017008011 +n40017008012 +n40017009001 +n40017009002 +n40017009003 +n40017009004 +n40017009005 +n40017009006 +n40017009007 +n40017009008 +n40017009009 +n40017009010 +n40017009011 +n40017009012 +n40017009013 +n40017009014 +n40017009015 +n40017009016 +n40017009017 +n40017009018 +n40017009019 +n40017009020 +n40017009021 +n40017009022 +n40017009023 +n40017009024 +n40017010001 +n40017010002 +n40017010003 +n40017010004 +n40017010005 +n40017010006 +n40017010008 +n40017010007 +n40017010009 +n40017010010 +n40017010011 +n40017010012 +n40017010014 +n40017010013 +n40017010015 +n40017010016 +n40017011002 +n40017011001 +n40017011003 +n40017011004 +n40017011006 +n40017011005 +n40017011007 +n40017011008 +n40017011009 +n40017011010 +n40017012002 +n40017012001 +n40017012003 +n40017012004 +n40017012005 +n40017012006 +n40017012007 +n40017012008 +n40017012009 +n40017012010 +n40017012011 +n40017012012 +n40017012013 +n40017012014 +n40017012015 +n40017012016 +n40017012017 +n40017012018 +n40017012019 +n40017012020 +n40017012021 +n40017012022 +n40017012023 +n40017012024 +n40017012025 +n40017012026 +n40017012027 +n40017013001 +n40017013002 +n40017013003 +n40017013004 +n40017013005 +n40017013006 +n40017013007 +n40017013008 +n40017013009 +n40017013010 +n40017013011 +n40017014001 +n40017014002 +n40017014003 +n40017014004 +n40017014005 +n40017014006 +n40017014007 +n40017014008 +n40017014009 +n40017014010 +n40017015001 +n40017015002 +n40017015003 +n40017015004 +n40017015005 +n40017015006 +n40017015007 +n40017015008 +n40017015009 +n40017015010 +n40017015011 +n40017015012 +n40017015014 +n40017015013 +n40017015015 +n40017015016 +n40017015017 +n40017015018 +n40017015019 +n40017015020 +n40017015021 +n40017015022 +n40017015023 +n40017016001 +n40017016002 +n40017016003 +n40017016004 +n40017016005 +n40017016006 +n40017016007 +n40017016008 +n40017016009 +n40017016010 +n40017016011 +n40017017002 +n40017017001 +n40017017003 +n40017017004 +n40017017005 +n40017017006 +n40017017007 +n40017017008 +n40017017009 +n40017017010 +n40017017011 +n40017017012 +n40017017013 +n40017017014 +n40017017015 +n40017017016 +n40017017017 +n40017017018 +n40017017019 +n40017017020 +n40017017021 +n40017017022 +n40017017023 +n40017018001 +n40017018002 +n40017018003 +n40017018004 +n40017018005 +n40017018006 +n40017018007 +n40017018008 +n40017018009 +n40017018010 +n40017018011 +n40017018012 +n40017018013 +n40017018014 +n40017018015 +n40017018016 +n40017018017 +n40017018018 +n40017018019 +n40017019001 +n40017019003 +n40017019004 +n40017019002 +n40017019005 +n40017019006 +n40017019007 +n40017019008 +n40017019009 +n40017019010 +n40017019011 +n40017019012 +n40017019013 +n40017019014 +n40017019015 +n40017019016 +n40017020002 +n40017020001 +n40017020003 +n40017020004 +n40017020005 +n40017020006 +n40017020007 +n40017020008 +n40017020010 +n40017020009 +n40017020011 +n40017020012 +n40017020013 +n40017020014 +n40017020015 +n40017020016 +n40017020017 +n40017020018 +n40017020019 +n40017020020 +n40017020021 +n40017020022 +n40017020023 +n40017020024 +n40017020025 +n40017020026 +n40017020027 +n40017020028 +n40017020029 +n40017020030 +n40017020031 +n40017022002 +n40017022001 +n40017022003 +n40017022004 +n40017022005 +n40017022006 +n40017022007 +n40017022008 +n40017022009 +n40017022010 +n40017022011 +n40017022012 +n40017022013 +n40017022014 +n40017022015 +n40017022016 +n40017022017 +n40017022018 +n40017022019 +n40017023001 +n40017023002 +n40017023003 +n40017023004 +n40017023005 +n40017023006 +n40017023007 +n40017023008 +n40017023009 +n40017023010 +n40017023011 +n40017024002 +n40017024001 +n40017024003 +n40017024004 +n40017024005 +n40017024006 +n40017024007 +n40017024008 +n40017024009 +n40017024010 +n40017024011 +n40017024012 +n40017024013 +n40017024014 +n40017024018 +n40017024015 +n40017024016 +n40017024017 +n40017024019 +n40017024020 +n40017025001 +n40017025002 +n40017025003 +n40017025004 +n40017025005 +n40017025006 +n40017025007 +n40017025008 +n40017025009 +n40017025010 +n40017025011 +n40017025012 +n40017025013 +n40017025014 +n40017025015 +n40017025016 +n40017025017 +n40017025018 +n40017025019 +n40017025020 +n40017025021 +n40017025022 +n40017025023 +n40017025024 +n40017025025 +n40017025026 +n40017025027 +n40017025028 +n40017025029 +n40017025030 +n40017025031 +n40017025032 +n40017025033 +n40017025034 +n40017026002 +n40017026001 +n40017026003 +n40017026004 +n40017026005 +n40017026006 +n40017026007 +n40017026008 +n40017026009 +n40017026010 +n40017026011 +n40017026012 +n40017026013 +n40017026014 +n40017027002 +n40017027001 +n40017027003 +n40017027004 +n40017027005 +n40017027006 +n40017027007 +n40017027008 +n40017027009 +n40017027010 +n40017027011 +n40017027012 +n40017027013 +n40017027014 +n40017027015 +n40017027016 +n40017027017 +n40017027018 +n40017027019 +n40017027020 +n40017027021 +n40017027022 +n40017027023 +n40017027024 +n40017027025 +n40017027026 +n40017027027 +n40017027028 +n40017027029 +n40017027030 +n40017027031 +n40018001001 +n40018001002 +n40018001003 +n40018001004 +n40018001005 +n40018001006 +n40018001007 +n40018001008 +n40018001009 +n40018001010 +n40018001012 +n40018001011 +n40018001013 +n40018001014 +n40018001015 +n40018001016 +n40018001017 +n40018001018 +n40018001019 +n40018002001 +n40018002002 +n40018002003 +n40018002004 +n40018002005 +n40018002006 +n40018002007 +n40018002008 +n40018003001 +n40018003002 +n40018003003 +n40018003004 +n40018003005 +n40018003006 +n40018003007 +n40018003008 +n40018003009 +n40018003010 +n40018003011 +n40018003012 +n40018003013 +n40018003014 +n40018003015 +n40018003016 +n40018003017 +n40018003018 +n40018003019 +n40018003020 +n40018003021 +n40018004002 +n40018004001 +n40018004003 +n40018004004 +n40018004005 +n40018004006 +n40018004007 +n40018004008 +n40018004009 +n40018004010 +n40018004011 +n40018004012 +n40018004013 +n40018004014 +n40018004015 +n40018004016 +n40018004017 +n40018005001 +n40018005003 +n40018005002 +n40018005004 +n40018005005 +n40018005006 +n40018005007 +n40018005008 +n40018005009 +n40018005010 +n40018005011 +n40018005012 +n40018005013 +n40018006002 +n40018006003 +n40018006001 +n40018006004 +n40018006005 +n40018006006 +n40018006007 +n40018006008 +n40018006009 +n40018006010 +n40018006011 +n40018006012 +n40018006013 +n40018006014 +n40018006015 +n40018006016 +n40018006017 +n40018006018 +n40018006019 +n40018006020 +n40018006021 +n40018006022 +n40018006023 +n40018006024 +n40018006025 +n40018006026 +n40018006027 +n40018006028 +n40018006029 +n40018007001 +n40018007002 +n40018007003 +n40018007004 +n40018007005 +n40018007006 +n40018007008 +n40018007007 +n40018007009 +n40018007010 +n40018007011 +n40018007012 +n40018007013 +n40018007014 +n40018007015 +n40018007016 +n40018007017 +n40018007018 +n40018007019 +n40018007020 +n40018008002 +n40018008001 +n40018008003 +n40018008004 +n40018008005 +n40018008006 +n40018008007 +n40018008008 +n40018008009 +n40018008010 +n40018008011 +n40018008012 +n40018008013 +n40018008014 +n40018008015 +n40018008016 +n40018008017 +n40018008018 +n40018008019 +n40018008020 +n40018008021 +n40018008022 +n40018008023 +n40018008024 +n40018008025 +n40018008026 +n40018008027 +n40018008028 +n40018008029 +n40018008030 +n40018008031 +n40018008032 +n40018008033 +n40018008034 +n40018008035 +n40018008036 +n40018008037 +n40018008038 +n40018008039 +n40018008040 +n40018009001 +n40018009002 +n40018009003 +n40018009004 +n40018009005 +n40018009006 +n40018009007 +n40018009008 +n40018009009 +n40018009010 +n40018009011 +n40018009012 +n40018009013 +n40018009014 +n40018009015 +n40018009016 +n40018009017 +n40018009018 +n40018009019 +n40018009020 +n40018009021 +n40018009022 +n40018009023 +n40018009024 +n40018009025 +n40018009026 +n40018009027 +n40018009028 +n40018009029 +n40018009030 +n40018009031 +n40018010001 +n40018010002 +n40018010003 +n40018010004 +n40018010005 +n40018010006 +n40018010007 +n40018010009 +n40018010008 +n40018010010 +n40018010011 +n40018010012 +n40018010013 +n40018010014 +n40018010015 +n40018010016 +n40018010017 +n40018010018 +n40018010019 +n40018010020 +n40018010021 +n40018010022 +n40018010023 +n40018010024 +n40018010025 +n40018010026 +n40018010027 +n40018012001 +n40018012002 +n40018012003 +n40018012004 +n40018012005 +n40018012006 +n40018012007 +n40018012008 +n40018012009 +n40018012010 +n40018012011 +n40018012012 +n40018012013 +n40018012014 +n40018012015 +n40018012016 +n40018012017 +n40018012018 +n40018012019 +n40018012020 +n40018012021 +n40018012022 +n40018012023 +n40018012024 +n40018012025 +n40018012026 +n40018012027 +n40018013001 +n40018013002 +n40018013003 +n40018013004 +n40018013005 +n40018013006 +n40018013007 +n40018013008 +n40018013009 +n40018013010 +n40018013011 +n40018013012 +n40018013013 +n40018013014 +n40018013015 +n40018013016 +n40018013017 +n40018013018 +n40018013019 +n40018013020 +n40018013021 +n40018014001 +n40018014002 +n40018014003 +n40018014004 +n40018014005 +n40018014006 +n40018014007 +n40018014008 +n40018014009 +n40018014010 +n40018014011 +n40018014012 +n40018014013 +n40018014014 +n40018014015 +n40018014016 +n40018014017 +n40018015002 +n40018015001 +n40018015003 +n40018015004 +n40018015005 +n40018015006 +n40018015007 +n40018015008 +n40018015009 +n40018015010 +n40018015011 +n40018015012 +n40018015013 +n40018015014 +n40018015015 +n40018015016 +n40018015017 +n40018015018 +n40018015019 +n40018015020 +n40018015021 +n40018016002 +n40018016001 +n40018016003 +n40018016004 +n40018016005 +n40018016006 +n40018016007 +n40018016008 +n40018016009 +n40018016010 +n40018016011 +n40018016012 +n40018016013 +n40018016014 +n40018016015 +n40018016017 +n40018016018 +n40018016016 +n40018016019 +n40018016020 +n40018016021 +n40018017002 +n40018017001 +n40018017003 +n40018017004 +n40018017005 +n40018017006 +n40018017007 +n40018017009 +n40018017008 +n40018017010 +n40018017011 +n40018017012 +n40018017013 +n40018017014 +n40018017015 +n40018017016 +n40018017017 +n40018017018 +n40018017019 +n40018017020 +n40018017021 +n40018018001 +n40018018002 +n40018018003 +n40018018005 +n40018018004 +n40018018006 +n40018018007 +n40018018008 +n40018018009 +n40018018010 +n40018018011 +n40018018012 +n40018018013 +n40018018014 +n40018018016 +n40018018015 +n40018018017 +n40018018018 +n40018018019 +n40018018020 +n40018018021 +n40018018022 +n40018018023 +n40018018024 +n40018019002 +n40018019001 +n40018019003 +n40018019004 +n40018019005 +n40018019006 +n40018019007 +n40018019009 +n40018019010 +n40018019008 +n40018019011 +n40018019012 +n40018019013 +n40018019014 +n40018019015 +n40018019016 +n40018019018 +n40018019017 +n40018019019 +n40018019020 +n40018019021 +n40018019022 +n40018019023 +n40018019024 +n40018019025 +n40018019026 +n40018019027 +n40018019028 +n40018020002 +n40018020001 +n40018020003 +n40018020007 +n40018020004 +n40018020005 +n40018020006 +n40018020008 +n40018020009 +n40018020010 +n40018020011 +n40018020012 +n40018020013 +n40018020014 +n40018020015 +n40018020016 +n40018021001 +n40018021002 +n40018021003 +n40018021004 +n40018021005 +n40018021006 +n40018021007 +n40018021008 +n40018021009 +n40018021010 +n40018021011 +n40018021012 +n40018021013 +n40018021014 +n40018021015 +n40018021016 +n40018021017 +n40018021018 +n40018021019 +n40018022001 +n40018022002 +n40018022003 +n40018022004 +n40018022005 +n40018022006 +n40018022007 +n40018022008 +n40018022009 +n40018022010 +n40018022011 +n40018022012 +n40018022013 +n40018023001 +n40018023002 +n40018023003 +n40018023004 +n40018023005 +n40018023006 +n40018023007 +n40018023008 +n40018023009 +n40018023010 +n40018023011 +n40018023012 +n40018023013 +n40018023014 +n40018023015 +n40018023016 +n40018023017 +n40018024002 +n40018024001 +n40018024003 +n40018024004 +n40018024005 +n40018024007 +n40018024006 +n40018024008 +n40018024009 +n40018024010 +n40018025003 +n40018025001 +n40018025002 +n40018025004 +n40018025005 +n40018025006 +n40018025008 +n40018025009 +n40018025010 +n40018025007 +n40018025011 +n40018025012 +n40018025013 +n40018025014 +n40018025015 +n40018025016 +n40018025017 +n40018025018 +n40018025019 +n40018025020 +n40018025021 +n40018025022 +n40018026002 +n40018026001 +n40018026003 +n40018026004 +n40018026005 +n40018026006 +n40018026007 +n40018026008 +n40018026009 +n40018026010 +n40018026011 +n40018026012 +n40018026013 +n40018026014 +n40018027002 +n40018027001 +n40018027003 +n40018027004 +n40018027005 +n40018027006 +n40018027007 +n40018027008 +n40018027009 +n40018027010 +n40018027011 +n40018027012 +n40018027013 +n40018027014 +n40018028002 +n40018028001 +n40018028003 +n40018028004 +n40018028005 +n40018028006 +n40018028007 +n40018028008 +n40018028009 +n40018028010 +n40018028011 +n40018028012 +n40018028013 +n40018028014 +n40018028015 +n40018028016 +n40018028017 +n40018028018 +n40018028019 +n40018028020 +n40018028021 +n40018028022 +n40018028023 +n40018028024 +n40018029002 +n40018029001 +n40018029003 +n40018029004 +n40018029005 +n40018029006 +n40018029007 +n40018029008 +n40018029009 +n40018029010 +n40018029011 +n40018029012 +n40018029013 +n40018029014 +n40018030002 +n40018030001 +n40018030003 +n40018030004 +n40018030005 +n40018030006 +n40018030007 +n40018030008 +n40018030009 +n40018030010 +n40018030011 +n40018030012 +n40018030013 +n40018030014 +n40018031002 +n40018031003 +n40018031004 +n40018031005 +n40018031001 +n40018031006 +n40018031007 +n40018031008 +n40018031009 +n40018031010 +n40018031011 +n40018031012 +n40018031013 +n40018031014 +n40018031015 +n40018031016 +n40018031017 +n40018031018 +n40018032001 +n40018032002 +n40018032003 +n40018032004 +n40018032005 +n40018032006 +n40018032007 +n40018032008 +n40018032009 +n40018032010 +n40018032011 +n40018032012 +n40018032013 +n40018032014 +n40018032015 +n40018032016 +n40018032017 +n40018032018 +n40018032019 +n40018033001 +n40018033002 +n40018033003 +n40018033004 +n40018033005 +n40018033006 +n40018033007 +n40018033008 +n40018033009 +n40018033010 +n40018033011 +n40018033012 +n40018034001 +n40018034002 +n40018034003 +n40018034004 +n40018034005 +n40018034006 +n40018034007 +n40018034008 +n40018034009 +n40018034010 +n40018034011 +n40018034012 +n40018034013 +n40018034014 +n40018034015 +n40018034016 +n40018035001 +n40018035002 +n40018035003 +n40018035004 +n40018035005 +n40018035006 +n40018035007 +n40018035008 +n40018035009 +n40018035010 +n40018035011 +n40018035012 +n40018035013 +n40018035014 +n40018035015 +n40018035016 +n40018035017 +n40018035018 +n40018035019 +n40018035020 +n40019001001 +n40019001002 +n40019001003 +n40019001004 +n40019001005 +n40019001006 +n40019001007 +n40019001008 +n40019001009 +n40019001010 +n40019001011 +n40019001012 +n40019001013 +n40019001014 +n40019001015 +n40019001016 +n40019001017 +n40019001018 +n40019001019 +n40019001020 +n40019001021 +n40019001022 +n40019001023 +n40019002001 +n40019002002 +n40019002003 +n40019002004 +n40019002005 +n40019002006 +n40019002007 +n40019002008 +n40019002009 +n40019003001 +n40019003002 +n40019003003 +n40019003004 +n40019003005 +n40019003006 +n40019003007 +n40019003008 +n40019003009 +n40019003010 +n40019003011 +n40019003012 +n40019003013 +n40019003014 +n40019003015 +n40019003016 +n40019003017 +n40019004002 +n40019004001 +n40019004003 +n40019004004 +n40019004005 +n40019004006 +n40019004007 +n40019004008 +n40019004009 +n40019004010 +n40019004011 +n40019004012 +n40019004013 +n40019004014 +n40019004015 +n40019004016 +n40019005001 +n40019005002 +n40019005003 +n40019005004 +n40019005005 +n40019005006 +n40019005007 +n40019005008 +n40019005009 +n40019005010 +n40019005011 +n40019005012 +n40019005013 +n40019005014 +n40019005015 +n40019005016 +n40019005017 +n40019005018 +n40019005019 +n40019005020 +n40019005021 +n40019005022 +n40019005023 +n40019006001 +n40019006002 +n40019006003 +n40019006004 +n40019006005 +n40019006006 +n40019006007 +n40019006009 +n40019006008 +n40019006010 +n40019006011 +n40019006012 +n40019006013 +n40019006014 +n40019006015 +n40019007001 +n40019007002 +n40019007004 +n40019007003 +n40019007005 +n40019007006 +n40019007007 +n40019007008 +n40019007009 +n40019007010 +n40019007011 +n40019008001 +n40019008002 +n40019008003 +n40019008004 +n40019008005 +n40019008006 +n40019008007 +n40019008008 +n40019008009 +n40019008010 +n40019008011 +n40019008012 +n40019008013 +n40019008014 +n40019008017 +n40019008015 +n40019008016 +n40019008018 +n40019008019 +n40019008020 +n40019009002 +n40019009001 +n40019009003 +n40019009004 +n40019009006 +n40019009005 +n40019009007 +n40019009008 +n40019009009 +n40019009010 +n40019009011 +n40019009012 +n40019009013 +n40019009014 +n40019009015 +n40019009016 +n40019009017 +n40019010001 +n40019010002 +n40019010003 +n40019010004 +n40019010005 +n40019010006 +n40019010007 +n40019010008 +n40019010009 +n40019010010 +n40019010011 +n40019010012 +n40019010013 +n40019010014 +n40019010015 +n40019010016 +n40019010017 +n40019011002 +n40019011001 +n40019011003 +n40019011004 +n40019011005 +n40019011006 +n40019011007 +n40019011008 +n40019011009 +n40019011010 +n40019011011 +n40019011012 +n40019011013 +n40019012002 +n40019012001 +n40019012003 +n40019012004 +n40019012005 +n40019012006 +n40019012007 +n40019012008 +n40019012009 +n40019012010 +n40019012011 +n40019012012 +n40019012013 +n40019012014 +n40019012015 +n40019012016 +n40019012017 +n40019012018 +n40019012019 +n40019012020 +n40019012021 +n40019012022 +n40019012023 +n40019012024 +n40019012025 +n40019012026 +n40019012027 +n40019012028 +n40019012029 +n40019012030 +n40019012031 +n40019012032 +n40019013001 +n40019013002 +n40019013003 +n40019013004 +n40019013005 +n40019013006 +n40019013007 +n40019013008 +n40019013009 +n40019013010 +n40019013011 +n40019013013 +n40019013012 +n40019013014 +n40019013015 +n40019013016 +n40019014002 +n40019014001 +n40019014003 +n40019014004 +n40019014005 +n40019014006 +n40019014007 +n40019014008 +n40019014009 +n40019014010 +n40019014011 +n40019014012 +n40019014013 +n40019014014 +n40019014016 +n40019014015 +n40019014017 +n40019014018 +n40019014019 +n40019014020 +n40019014021 +n40019014022 +n40019015001 +n40019015002 +n40019015003 +n40019015004 +n40019015005 +n40019015006 +n40019015007 +n40019016001 +n40019016002 +n40019016003 +n40019016004 +n40019016005 +n40019016006 +n40019016007 +n40019016008 +n40019016009 +n40019016010 +n40019016011 +n40019016012 +n40019016013 +n40019016014 +n40019017002 +n40019017001 +n40019017003 +n40019017004 +n40019017005 +n40019017006 +n40019017007 +n40019017008 +n40019017009 +n40019017010 +n40019017011 +n40019017012 +n40019017013 +n40019017014 +n40019017016 +n40019017015 +n40019017017 +n40019017018 +n40019017019 +n40019017020 +n40019017021 +n40019017022 +n40019017023 +n40019017024 +n40019018001 +n40019018002 +n40019018003 +n40019018005 +n40019018004 +n40019018006 +n40019018007 +n40019018008 +n40019018009 +n40019018010 +n40019018011 +n40019018012 +n40019018013 +n40019018014 +n40019018015 +n40019018016 +n40019019001 +n40019019002 +n40019019003 +n40019019004 +n40019019005 +n40019019006 +n40019019007 +n40019019008 +n40019019009 +n40019019010 +n40019019011 +n40019019012 +n40019019013 +n40019020001 +n40019020002 +n40019020003 +n40019020004 +n40019020005 +n40019020006 +n40019020007 +n40019020008 +n40019020009 +n40019020010 +n40019021001 +n40019021002 +n40019021003 +n40019021004 +n40019021005 +n40019021006 +n40019021007 +n40019021008 +n40019021009 +n40019021010 +n40019021011 +n40019021012 +n40019021013 +n40019021014 +n40019021015 +n40019021016 +n40019021017 +n40019021018 +n40019021019 +n40019021020 +n40019021021 +n40019021022 +n40019021023 +n40019021024 +n40019021025 +n40019022002 +n40019022003 +n40019022004 +n40019022001 +n40019022005 +n40019022006 +n40019022007 +n40019022008 +n40019022010 +n40019022009 +n40019022011 +n40019022012 +n40019022013 +n40019023002 +n40019023001 +n40019023003 +n40019023004 +n40019023005 +n40019023006 +n40019023007 +n40019023008 +n40019023009 +n40019023010 +n40019023011 +n40019023012 +n40019023013 +n40019023014 +n40019023015 +n40019023016 +n40019023017 +n40019023018 +n40019023019 +n40019024002 +n40019024001 +n40019024003 +n40019024004 +n40019024005 +n40019024006 +n40019024007 +n40019024008 +n40019024009 +n40019024010 +n40019024011 +n40019024012 +n40019024013 +n40019024014 +n40019024015 +n40019024016 +n40019024017 +n40019024018 +n40019025002 +n40019025001 +n40019025003 +n40019025004 +n40019025005 +n40019025006 +n40019025007 +n40019025009 +n40019025008 +n40019025010 +n40019025011 +n40019026002 +n40019026001 +n40019026003 +n40019026004 +n40019026005 +n40019026006 +n40019026007 +n40019026008 +n40019026009 +n40019026010 +n40019026011 +n40019026013 +n40019026012 +n40019026014 +n40019026015 +n40019026016 +n40019027001 +n40019027002 +n40019027003 +n40019027004 +n40019027005 +n40019027006 +n40019027007 +n40019027008 +n40019027009 +n40019027010 +n40019027011 +n40019027012 +n40019027013 +n40019027015 +n40019027014 +n40019027016 +n40019027017 +n40019028002 +n40019028001 +n40019028003 +n40019028004 +n40019028005 +n40019028006 +n40019028007 +n40019028008 +n40019028009 +n40019028010 +n40019028011 +n40019028012 +n40019028013 +n40019028014 +n40019028015 +n40019028016 +n40019028017 +n40019028018 +n40019028019 +n40019028020 +n40019028021 +n40019028022 +n40019028023 +n40019028024 +n40019028025 +n40019028026 +n40019028027 +n40019028028 +n40019028029 +n40019028030 +n40019028031 +n40019028032 +n40019028033 +n40019028034 +n40019028035 +n40019028036 +n40019028037 +n40019028038 +n40019029001 +n40019029002 +n40019029003 +n40019029004 +n40019029005 +n40019029006 +n40019029007 +n40019029008 +n40019029009 +n40019029010 +n40019029011 +n40019029012 +n40019029013 +n40019029014 +n40019029015 +n40019029016 +n40019029017 +n40019029018 +n40019029019 +n40019029020 +n40019029021 +n40019029022 +n40019029023 +n40019029024 +n40019029025 +n40019029026 +n40019029027 +n40019030002 +n40019030001 +n40019030004 +n40019030003 +n40019030005 +n40019030006 +n40019030007 +n40019030008 +n40020001002 +n40020001001 +n40020001003 +n40020001004 +n40020001005 +n40020001006 +n40020001007 +n40020001008 +n40020001009 +n40020001010 +n40020001011 +n40020001012 +n40020001013 +n40020001014 +n40020001015 +n40020001016 +n40020001017 +n40020001018 +n40020001019 +n40020002002 +n40020002001 +n40020002003 +n40020002004 +n40020002005 +n40020002006 +n40020002007 +n40020002008 +n40020002009 +n40020002010 +n40020002011 +n40020002012 +n40020002013 +n40020002014 +n40020002015 +n40020003001 +n40020003002 +n40020003003 +n40020003004 +n40020003005 +n40020003006 +n40020003007 +n40020003008 +n40020003009 +n40020003010 +n40020003011 +n40020003012 +n40020004001 +n40020004002 +n40020004003 +n40020004004 +n40020004005 +n40020004006 +n40020004007 +n40020004008 +n40020004009 +n40020004010 +n40020004012 +n40020004011 +n40020004013 +n40020004014 +n40020004015 +n40020004016 +n40020005002 +n40020005001 +n40020005003 +n40020005005 +n40020005004 +n40020005006 +n40020005007 +n40020005008 +n40020005009 +n40020005010 +n40020005011 +n40020005012 +n40020005013 +n40020006002 +n40020006001 +n40020006003 +n40020006004 +n40020006005 +n40020006006 +n40020006007 +n40020006008 +n40020006009 +n40020006010 +n40020006011 +n40020006012 +n40020006013 +n40020006014 +n40020006015 +n40020006016 +n40020006017 +n40020006018 +n40020007001 +n40020007002 +n40020007003 +n40020007004 +n40020007005 +n40020007006 +n40020007007 +n40020007008 +n40020007009 +n40020007010 +n40020007011 +n40020007012 +n40020007013 +n40020007014 +n40020008002 +n40020008001 +n40020008003 +n40020008004 +n40020008005 +n40020008006 +n40020008007 +n40020008008 +n40020008009 +n40020008010 +n40020008011 +n40020008012 +n40020008013 +n40020008014 +n40020008015 +n40020008016 +n40020008017 +n40020008018 +n40020008019 +n40020008020 +n40020008021 +n40020008022 +n40020008023 +n40020008024 +n40020008025 +n40020009002 +n40020009001 +n40020009003 +n40020009004 +n40020009005 +n40020009006 +n40020009007 +n40020009008 +n40020009009 +n40020009010 +n40020010001 +n40020010002 +n40020010003 +n40020010004 +n40020010005 +n40020010006 +n40020010007 +n40020010008 +n40020010009 +n40020010010 +n40020010011 +n40020010012 +n40020010013 +n40020010014 +n40020010015 +n40020011002 +n40020011001 +n40020011003 +n40020011004 +n40020011005 +n40020011006 +n40020012001 +n40020012002 +n40020012003 +n40020012004 +n40020012005 +n40020012006 +n40020012007 +n40020012008 +n40020012009 +n40020012010 +n40020012012 +n40020012011 +n40020012013 +n40020012014 +n40020012015 +n40020012016 +n40020012017 +n40020012018 +n40020012019 +n40020012020 +n40020012021 +n40020013002 +n40020013001 +n40020013003 +n40020013004 +n40020013005 +n40020013006 +n40020013007 +n40020013008 +n40020013009 +n40020013010 +n40020013011 +n40020013012 +n40020013013 +n40020013014 +n40020014001 +n40020014002 +n40020014003 +n40020014004 +n40020014005 +n40020014007 +n40020014006 +n40020014008 +n40020014009 +n40020014010 +n40020014011 +n40020014012 +n40020014013 +n40020014014 +n40020015001 +n40020015002 +n40020015003 +n40020015004 +n40020015005 +n40020015006 +n40020015007 +n40020015008 +n40020015009 +n40020015010 +n40020015011 +n40020015012 +n40020015013 +n40020015014 +n40020015015 +n40020015016 +n40020015017 +n40020015018 +n40020015019 +n40020016001 +n40020016002 +n40020016003 +n40020016004 +n40020016005 +n40020016006 +n40020016007 +n40020016008 +n40020016009 +n40020017002 +n40020017004 +n40020017001 +n40020017003 +n40020017005 +n40020017006 +n40020017007 +n40020017008 +n40020017009 +n40020017010 +n40020017011 +n40020017012 +n40020017013 +n40020017014 +n40020017015 +n40020017016 +n40020017017 +n40020018001 +n40020018002 +n40020018003 +n40020018004 +n40020018005 +n40020018006 +n40020018007 +n40020018008 +n40020018009 +n40020018010 +n40020018011 +n40020018012 +n40020018013 +n40020018014 +n40020018015 +n40020018016 +n40020018017 +n40020018018 +n40020018019 +n40020019001 +n40020019002 +n40020019003 +n40020019004 +n40020019005 +n40020019006 +n40020019007 +n40020019008 +n40020019009 +n40020019010 +n40020019011 +n40020019012 +n40020019013 +n40020019014 +n40020019015 +n40020019016 +n40020019017 +n40020020001 +n40020020002 +n40020020003 +n40020020004 +n40020020005 +n40020020006 +n40020020007 +n40020020008 +n40020020009 +n40020020010 +n40020020011 +n40020020012 +n40020020013 +n40020020014 +n40020020015 +n40020020016 +n40020020017 +n40020020018 +n40020021002 +n40020021001 +n40020021003 +n40020021004 +n40020021005 +n40020021006 +n40020021007 +n40020021008 +n40020021009 +n40020021010 +n40020021011 +n40020021012 +n40020021013 +n40020021014 +n40020021015 +n40020021016 +n40020021017 +n40020021018 +n40020021019 +n40020021020 +n40020021021 +n40020021022 +n40020021023 +n40020021024 +n40020021025 +n40020021026 +n40020021027 +n40020021028 +n40020022002 +n40020022001 +n40020022003 +n40020022004 +n40020022005 +n40020022006 +n40020022007 +n40020022008 +n40020022009 +n40020022010 +n40020022011 +n40020022012 +n40020022013 +n40020022014 +n40020022017 +n40020022015 +n40020022016 +n40020022018 +n40020022019 +n40020022020 +n40020023001 +n40020023002 +n40020023004 +n40020023003 +n40020023005 +n40020023006 +n40020023007 +n40020023009 +n40020023008 +n40020023010 +n40020023011 +n40020023012 +n40020023013 +n40020023014 +n40020023015 +n40020023016 +n40020023017 +n40020023018 +n40020023019 +n40020023020 +n40020023021 +n40020023022 +n40020023023 +n40020023024 +n40020023025 +n40020023026 +n40020023027 +n40020023028 +n40020024001 +n40020024002 +n40020024003 +n40020024004 +n40020024005 +n40020024006 +n40020024007 +n40020024008 +n40020024009 +n40020025002 +n40020025001 +n40020025003 +n40020025004 +n40020025005 +n40020025006 +n40020025007 +n40020025008 +n40020025009 +n40020025010 +n40020025011 +n40020025012 +n40020025013 +n40020025014 +n40020025015 +n40020025016 +n40020025017 +n40020025018 +n40020025019 +n40020026001 +n40020026002 +n40020026003 +n40020026004 +n40020026005 +n40020026006 +n40020026008 +n40020026007 +n40020026009 +n40020026010 +n40020026011 +n40020026012 +n40020026013 +n40020026014 +n40020026015 +n40020026016 +n40020027001 +n40020027003 +n40020027002 +n40020027004 +n40020027005 +n40020027006 +n40020027007 +n40020027008 +n40020027009 +n40020027010 +n40020027011 +n40020028001 +n40020028002 +n40020028003 +n40020028004 +n40020028005 +n40020028006 +n40020028007 +n40020028008 +n40020028009 +n40020028010 +n40020028011 +n40020028012 +n40020028013 +n40020028014 +n40020028015 +n40020028016 +n40020028017 +n40020028018 +n40020029001 +n40020029002 +n40020029003 +n40020029004 +n40020029005 +n40020029006 +n40020029007 +n40020029008 +n40020029009 +n40020030001 +n40020030002 +n40020030003 +n40020030004 +n40020030005 +n40020030006 +n40020030007 +n40020030008 +n40020030009 +n40020030010 +n40020030011 +n40020030012 +n40020030013 +n40020030014 +n40020030016 +n40020030017 +n40020030015 +n40020030018 +n40020030019 +n40020031002 +n40020031001 +n40020031003 +n40020031004 +n40020031005 +n40020031006 +n40020031007 +n40020031009 +n40020031008 +n40020031010 +n40020031011 +n40020031012 +n40020031014 +n40020031015 +n40020031013 +n40020031016 +n40020031017 +n40020032001 +n40020032002 +n40020032003 +n40020032004 +n40020032005 +n40020032006 +n40020032007 +n40020032008 +n40020032010 +n40020032009 +n40020032011 +n40020032012 +n40020033001 +n40020033002 +n40020033003 +n40020033004 +n40020033005 +n40020033006 +n40020033007 +n40020033008 +n40020034002 +n40020034001 +n40020034003 +n40020034004 +n40020034005 +n40020034006 +n40020034007 +n40020034008 +n40020034009 +n40020034010 +n40020034011 +n40020034012 +n40020034013 +n40020034014 +n40021001001 +n40021001002 +n40021001003 +n40021001004 +n40021001005 +n40021001006 +n40021001007 +n40021001008 +n40021001009 +n40021001010 +n40021001011 +n40021001012 +n40021001013 +n40021001014 +n40021001015 +n40021001016 +n40021001017 +n40021001018 +n40021001019 +n40021002001 +n40021002002 +n40021002003 +n40021002004 +n40021002005 +n40021002006 +n40021002007 +n40021002008 +n40021002009 +n40021002010 +n40021002011 +n40021002012 +n40021002013 +n40021002014 +n40021002015 +n40021002016 +n40021002017 +n40021002018 +n40021002019 +n40021002020 +n40021002021 +n40021003001 +n40021003002 +n40021003003 +n40021003004 +n40021003005 +n40021003006 +n40021003007 +n40021003008 +n40021003009 +n40021003010 +n40021003011 +n40021003012 +n40021003013 +n40021003015 +n40021003014 +n40021003016 +n40021003017 +n40021004002 +n40021004001 +n40021004003 +n40021004004 +n40021004005 +n40021004006 +n40021004007 +n40021004008 +n40021004009 +n40021004010 +n40021004011 +n40021005001 +n40021005002 +n40021005003 +n40021005004 +n40021005005 +n40021005006 +n40021005007 +n40021005008 +n40021005009 +n40021005010 +n40021005011 +n40021005012 +n40021005013 +n40021005014 +n40021005015 +n40021005016 +n40021005017 +n40021005018 +n40021005019 +n40021005020 +n40021006002 +n40021006003 +n40021006004 +n40021006001 +n40021006005 +n40021006006 +n40021006007 +n40021006008 +n40021006009 +n40021006010 +n40021006011 +n40021007001 +n40021007002 +n40021007003 +n40021007004 +n40021007005 +n40021007006 +n40021007007 +n40021007008 +n40021007009 +n40021007010 +n40021007011 +n40021007012 +n40021007013 +n40021007014 +n40021007015 +n40021007016 +n40021008002 +n40021008001 +n40021008003 +n40021008004 +n40021008005 +n40021008006 +n40021008007 +n40021008008 +n40021008009 +n40021008010 +n40021008011 +n40021008013 +n40021008012 +n40021008014 +n40021008015 +n40021008016 +n40021008017 +n40021008018 +n40021008019 +n40021008020 +n40021008021 +n40021008022 +n40021008023 +n40021009002 +n40021009001 +n40021009003 +n40021009004 +n40021009005 +n40021009006 +n40021009007 +n40021009008 +n40021009009 +n40021009010 +n40021009011 +n40021009012 +n40021009013 +n40021009014 +n40021009015 +n40021009016 +n40021009017 +n40021009018 +n40021009019 +n40021009020 +n40021009021 +n40021009022 +n40021009023 +n40021009024 +n40021009025 +n40021010001 +n40021010002 +n40021010003 +n40021010004 +n40021010005 +n40021010006 +n40021010007 +n40021010008 +n40021010009 +n40021010010 +n40021010011 +n40021010012 +n40021010013 +n40021011002 +n40021011001 +n40021011003 +n40021011004 +n40021011005 +n40021011006 +n40021011007 +n40021011008 +n40021011009 +n40021011010 +n40021011011 +n40021011012 +n40021011013 +n40021011014 +n40021012001 +n40021012002 +n40021012003 +n40021012004 +n40021012005 +n40021012006 +n40021012007 +n40021012008 +n40021012009 +n40021012010 +n40021012011 +n40021012012 +n40021012013 +n40021012014 +n40021012015 +n40021012016 +n40021012017 +n40021012022 +n40021012018 +n40021012019 +n40021012020 +n40021012021 +n40021012023 +n40021012024 +n40021012025 +n40021012026 +n40021012027 +n40021012028 +n40021012029 +n40021013001 +n40021013002 +n40021013003 +n40021013004 +n40021013005 +n40021013006 +n40021013007 +n40021013008 +n40021013009 +n40021013010 +n40021013012 +n40021013011 +n40021013013 +n40021013014 +n40021013015 +n40021013016 +n40021014001 +n40021014002 +n40021014003 +n40021014004 +n40021014005 +n40021014006 +n40021014007 +n40021014008 +n40021014009 +n40021014010 +n40021014011 +n40021014012 +n40021015002 +n40021015003 +n40021015004 +n40021015005 +n40021015006 +n40021015007 +n40021015001 +n40021015008 +n40021015009 +n40021015010 +n40021015011 +n40021015012 +n40021015013 +n40021015014 +n40021015015 +n40021015016 +n40021015017 +n40021015018 +n40021015019 +n40021015020 +n40021015021 +n40021015022 +n40021015023 +n40021015024 +n40021015025 +n40021015026 +n40021016001 +n40021016002 +n40021016003 +n40021016004 +n40021016005 +n40021016006 +n40021016007 +n40021016009 +n40021016008 +n40021016010 +n40021016011 +n40021016012 +n40021016013 +n40021016014 +n40021016015 +n40021016016 +n40021016017 +n40021016018 +n40021016019 +n40021016020 +n40021016021 +n40021016022 +n40021016023 +n40021017001 +n40021017002 +n40021017003 +n40021017004 +n40021017005 +n40021017006 +n40021017007 +n40021017008 +n40021017009 +n40021017010 +n40021017011 +n40021017012 +n40021018002 +n40021018001 +n40021018003 +n40021018004 +n40021018005 +n40021018006 +n40021018007 +n40021019001 +n40021019002 +n40021019003 +n40021019004 +n40021019005 +n40021019006 +n40021019007 +n40021019008 +n40021019009 +n40021019010 +n40021019011 +n40021019012 +n40021019013 +n40021019014 +n40021019015 +n40021019016 +n40021019017 +n40021019018 +n40021019019 +n40021019020 +n40021019021 +n40021019022 +n40021019023 +n40021019024 +n40021019025 +n40021019026 +n40021019027 +n40021019028 +n40021019029 +n40021019030 +n40021019031 +n40021019032 +n40021019033 +n40021019034 +n40021019035 +n40021019036 +n40021020001 +n40021020002 +n40021020003 +n40021020004 +n40021020005 +n40021020006 +n40021020007 +n40021020008 +n40021020009 +n40021020010 +n40021020011 +n40021021002 +n40021021001 +n40021021003 +n40021021004 +n40021021005 +n40021021006 +n40021021007 +n40021021008 +n40021021009 +n40021021010 +n40021021011 +n40021021012 +n40021021013 +n40021021014 +n40021021015 +n40021021016 +n40021021017 +n40021021018 +n40021021019 +n40021021020 +n40021021021 +n40021021022 +n40021021023 +n40021021024 +n40021021025 +n40021021026 +n40021021027 +n40021021028 +n40021021029 +n40021021030 +n40021021031 +n40021021032 +n40021021033 +n40021021034 +n40021022001 +n40021022002 +n40021022004 +n40021022003 +n40021022005 +n40021022006 +n40021022007 +n40021022008 +n40021022009 +n40021022010 +n40021023001 +n40021023002 +n40021023003 +n40021023004 +n40021023005 +n40021023006 +n40021023007 +n40021023008 +n40021023009 +n40021023010 +n40021023011 +n40021023012 +n40021023013 +n40021023014 +n40021023015 +n40021023016 +n40021023017 +n40021023018 +n40021023019 +n40021023020 +n40021023021 +n40021023022 +n40021023023 +n40021023024 +n40021023025 +n40021023026 +n40021023027 +n40021023028 +n40021023029 +n40021024002 +n40021024001 +n40021024003 +n40021024004 +n40021024005 +n40021024006 +n40021024007 +n40021024008 +n40021024009 +n40021024010 +n40021024011 +n40021024013 +n40021024012 +n40021024014 +n40021024015 +n40021024016 +n40021024017 +n40021024018 +n40021024019 +n40021024020 +n40021024021 +n40021024022 +n40021024023 +n40021025001 +n40021025002 +n40021025003 +n40021025004 +n40021025005 +n40021025006 +n40021025007 +n40021025008 +n40021025009 +n40021025010 +n40021025011 +n40021025013 +n40021025012 +n40021025014 +n40021025015 +n40021025016 +n40021025017 +n40021025018 +n40021025019 +n40021025020 +n40021025021 +n40021025022 +n40021025023 +n40021025026 +n40021025024 +n40021025025 +n40021025027 +n40021025028 +n40021025029 +n40021026002 +n40021026001 +n40021026003 +n40021026004 +n40021026005 +n40021026006 +n40021026007 +n40021026008 +n40021026010 +n40021026009 +n40021026011 +n40021026012 +n40021026013 +n40021026014 +n40021026015 +n40021027001 +n40021027002 +n40021027003 +n40021027004 +n40021027005 +n40021027006 +n40021027007 +n40021027008 +n40021027009 +n40021027010 +n40021027011 +n40021027012 +n40021027013 +n40021027014 +n40021027015 +n40021027016 +n40021027017 +n40021027018 +n40021027019 +n40021027020 +n40021028002 +n40021028001 +n40021028003 +n40021028004 +n40021028005 +n40021028006 +n40021028007 +n40021028008 +n40021028009 +n40021028010 +n40021028011 +n40021028012 +n40021028013 +n40021028014 +n40021028015 +n40021028016 +n40021028017 +n40021028018 +n40021028019 +n40021029002 +n40021029001 +n40021029003 +n40021029004 +n40021029005 +n40021029006 +n40021029007 +n40021029008 +n40021029009 +n40021030002 +n40021030001 +n40021030003 +n40021030004 +n40021030005 +n40021030006 +n40021030008 +n40021030007 +n40021030009 +n40021030010 +n40021030011 +n40021030012 +n40021030013 +n40021030014 +n40021030015 +n40021031001 +n40021031002 +n40021031003 +n40021031004 +n40021031005 +n40021031006 +n40021031007 +n40021031008 +n40021031009 +n40021031010 +n40021031011 +n40021031012 +n40021031013 +n40021031014 +n40021031015 +n40021031016 +n40021031017 +n40021031018 +n40021031019 +n40021031020 +n40021031021 +n40021031022 +n40021031023 +n40021031024 +n40021031025 +n40021031026 +n40021031027 +n40021031028 +n40021031029 +n40021031030 +n40021031031 +n40021031032 +n40021032002 +n40021032001 +n40021032003 +n40021032004 +n40021032005 +n40021032006 +n40021032007 +n40021032008 +n40021032009 +n40021032010 +n40021032011 +n40021032012 +n40021032014 +n40021032013 +n40021032015 +n40021032016 +n40021032017 +n40021032018 +n40021032019 +n40021032020 +n40021032022 +n40021032021 +n40021032023 +n40021032024 +n40021032025 +n40021032026 +n40021032027 +n40021032028 +n40021032029 +n40021033001 +n40021033002 +n40021033003 +n40021033004 +n40021033005 +n40021033006 +n40021033007 +n40021033008 +n40021033009 +n40021033010 +n40021033011 +n40021033012 +n40021033013 +n40021033014 +n40021033015 +n40021033016 +n40021033017 +n40021033018 +n40021033019 +n40021033020 +n40021033021 +n40021033022 +n40021033023 +n40021033024 +n40021033025 +n40021033026 +n40021033027 +n40021034002 +n40021034001 +n40021034003 +n40021034004 +n40021034005 +n40021034006 +n40021034007 +n40021034008 +n40021034009 +n40021034010 +n40021034011 +n40021034012 +n40021034013 +n40021034014 +n40021034015 +n40021034016 +n40021034017 +n40021034018 +n40021035001 +n40021035002 +n40021035003 +n40021035004 +n40021035005 +n40021035006 +n40021035007 +n40021035009 +n40021035008 +n40021035010 +n40021035012 +n40021035011 +n40021035013 +n40021035015 +n40021035014 +n40021035016 +n40021036001 +n40021036002 +n40021036003 +n40021036004 +n40021036005 +n40021036006 +n40021036007 +n40021036008 +n40021036009 +n40021036010 +n40021036011 +n40021037002 +n40021037001 +n40021037003 +n40021037004 +n40021037005 +n40021037006 +n40021037007 +n40021037008 +n40021037009 +n40021037010 +n40021037011 +n40021037012 +n40021037013 +n40021038002 +n40021038001 +n40021038003 +n40021038004 +n40021038005 +n40021038006 +n40021038007 +n40021038008 +n40021038009 +n40021038010 +n40021038011 +n40021038012 +n40021038013 +n40021038014 +n40021038015 +n40021038016 +n40021038017 +n40021038018 +n40021038019 +n40021038020 +n40021038021 +n40021039001 +n40021039002 +n40021039003 +n40021039004 +n40021039005 +n40021039006 +n40021039007 +n40021039008 +n40021039009 +n40021040002 +n40021040001 +n40021040003 +n40021040004 +n40021040005 +n40021040006 +n40021040007 +n40021040008 +n40021040009 +n40021040010 +n40021040011 +n40021040012 +n40021041001 +n40021041002 +n40021041003 +n40021041004 +n40021041005 +n40021041006 +n40021041007 +n40021041008 +n40021041009 +n40021041010 +n40021041011 +n40021041012 +n40021041013 +n40021041014 +n40021041015 +n40021041016 +n40021041017 +n40021041018 +n40021041019 +n40021041020 +n40021041021 +n40021042001 +n40021042002 +n40021042003 +n40021042004 +n40021042005 +n40021042006 +n40021042007 +n40021042008 +n40021042009 +n40021042010 +n40021042011 +n40021042012 +n40021042013 +n40021042014 +n40021042015 +n40021042016 +n40021042017 +n40021042018 +n40021042019 +n40021042020 +n40021042021 +n40021042022 +n40021042023 +n40021042024 +n40021042025 +n40021042026 +n40021042027 +n40021042028 +n40021042029 +n40021043001 +n40021043002 +n40021043003 +n40021043004 +n40021043005 +n40021043006 +n40021043007 +n40021043008 +n40021043009 +n40021043010 +n40021043011 +n40021043012 +n40021043013 +n40021043014 +n40021043015 +n40021043016 +n40021043017 +n40021043018 +n40021043019 +n40021044001 +n40021044002 +n40021044003 +n40021044004 +n40021044005 +n40021044006 +n40021044007 +n40021044008 +n40021044011 +n40021044009 +n40021044012 +n40021044010 +n40021044013 +n40021044014 +n40021044015 +n40021045001 +n40021045003 +n40021045004 +n40021045005 +n40021045006 +n40021045007 +n40021045002 +n40021045008 +n40021045009 +n40021045010 +n40021045011 +n40021045012 +n40021045013 +n40021045014 +n40021045015 +n40021046001 +n40021046002 +n40021046003 +n40021046004 +n40021046005 +n40021046006 +n40021046007 +n40021046008 +n40021046009 +n40021046010 +n40021046011 +n40021046012 +n40022001001 +n40022001002 +n40022001003 +n40022001004 +n40022001005 +n40022001006 +n40022001007 +n40022001008 +n40022001009 +n40022001010 +n40022002001 +n40022002002 +n40022002003 +n40022002004 +n40022002005 +n40022002006 +n40022002007 +n40022002008 +n40022002009 +n40022002010 +n40022002011 +n40022002012 +n40022002013 +n40022003001 +n40022003002 +n40022003003 +n40022003004 +n40022003005 +n40022003006 +n40022003007 +n40022003008 +n40022003009 +n40022003010 +n40022003011 +n40022003012 +n40022003013 +n40022003014 +n40022003015 +n40022004001 +n40022004002 +n40022004003 +n40022004004 +n40022004005 +n40022004006 +n40022004007 +n40022004008 +n40022004009 +n40022004010 +n40022004011 +n40022004012 +n40022004013 +n40022004014 +n40022004015 +n40022004016 +n40022004017 +n40022004018 +n40022004019 +n40022004020 +n40022004021 +n40022004022 +n40022004023 +n40022004024 +n40022004025 +n40022004026 +n40022004027 +n40022005002 +n40022005001 +n40022005003 +n40022005004 +n40022005006 +n40022005005 +n40022005007 +n40022005008 +n40022005009 +n40022005010 +n40022005012 +n40022005011 +n40022005013 +n40022005014 +n40022005015 +n40022005016 +n40022006002 +n40022006001 +n40022006003 +n40022006004 +n40022006005 +n40022006006 +n40022006007 +n40022006008 +n40022006009 +n40022006010 +n40022007002 +n40022007001 +n40022007003 +n40022007004 +n40022007005 +n40022007006 +n40022007007 +n40022007008 +n40022007009 +n40022007010 +n40022007011 +n40022007012 +n40022007013 +n40022007014 +n40022007015 +n40022007016 +n40022007017 +n40022007018 +n40022008001 +n40022008002 +n40022008003 +n40022008004 +n40022008005 +n40022008007 +n40022008006 +n40022008008 +n40022008009 +n40022008010 +n40022008012 +n40022008011 +n40022008013 +n40022008014 +n40022008015 +n40022008016 +n40022009002 +n40022009001 +n40022009003 +n40022009004 +n40022009005 +n40022009006 +n40022009007 +n40022009008 +n40022009010 +n40022009009 +n40022009011 +n40022009012 +n40022009013 +n40022009014 +n40022009015 +n40022010001 +n40022010003 +n40022010004 +n40022010005 +n40022010002 +n40022010006 +n40022010007 +n40022010008 +n40022010009 +n40022010010 +n40022010011 +n40022010012 +n40022010014 +n40022010013 +n40022010015 +n40022010016 +n40022010017 +n40022010018 +n40022010019 +n40022010020 +n40022010021 +n40022011002 +n40022011003 +n40022011004 +n40022011001 +n40022011005 +n40022011006 +n40022011007 +n40022011008 +n40022011009 +n40022011010 +n40022011011 +n40022011012 +n40022011013 +n40022011014 +n40022012001 +n40022012002 +n40022012003 +n40022012004 +n40022012005 +n40022012006 +n40022012007 +n40022012008 +n40022012009 +n40022012010 +n40022012011 +n40022012013 +n40022012012 +n40022012014 +n40022013001 +n40022013002 +n40022013003 +n40022013004 +n40022013005 +n40022013006 +n40022013007 +n40022013008 +n40022013009 +n40022013010 +n40022013011 +n40022013012 +n40022013013 +n40022013014 +n40022013015 +n40022013016 +n40022013017 +n40022013018 +n40022013019 +n40022013020 +n40022013021 +n40022013022 +n40022013023 +n40022013024 +n40022013025 +n40022013026 +n40022013027 +n40022014002 +n40022014001 +n40022014003 +n40022014004 +n40022014006 +n40022014005 +n40022014007 +n40022015001 +n40022015002 +n40022015003 +n40022015004 +n40022015005 +n40022015006 +n40022015007 +n40022015008 +n40022015009 +n40022015010 +n40022015011 +n40022016001 +n40022016002 +n40022016003 +n40022016004 +n40022016005 +n40022016006 +n40022016007 +n40022016008 +n40022016009 +n40022016010 +n40022016011 +n40022016012 +n40022016013 +n40022016014 +n40022016015 +n40022016016 +n40022016017 +n40022016018 +n40022016019 +n40022016020 +n40022016021 +n40022016022 +n40022016023 +n40022016024 +n40022016025 +n40022016026 +n40022016027 +n40022016028 +n40022016029 +n40022016031 +n40022016030 +n40022016032 +n40022016033 +n40022016034 +n40022016035 +n40022017002 +n40022017001 +n40022017003 +n40022017004 +n40022017005 +n40022017006 +n40022017007 +n40022017008 +n40022017009 +n40022017010 +n40022017011 +n40022017012 +n40022018002 +n40022018003 +n40022018004 +n40022018001 +n40022018005 +n40022018006 +n40022018007 +n40022018008 +n40022018009 +n40022018010 +n40022018011 +n40022018012 +n40022019001 +n40022019002 +n40022019003 +n40022019004 +n40022019005 +n40022019006 +n40022019008 +n40022019007 +n40022019009 +n40022019010 +n40022019011 +n40022020001 +n40022020002 +n40022020003 +n40022020004 +n40022020005 +n40022020006 +n40022020007 +n40022020008 +n40022020009 +n40022020010 +n40022021001 +n40022021002 +n40022021003 +n40022021004 +n40022021005 +n40022021007 +n40022021006 +n40022021008 +n40022021009 +n40022021010 +n40022021011 +n40022021012 +n40022021013 +n40022021014 +n40022021015 +n40022021016 +n40022022001 +n40022022002 +n40022022003 +n40022022004 +n40022022005 +n40022022006 +n40022022007 +n40022023001 +n40022023002 +n40022023003 +n40022023004 +n40022023005 +n40022023006 +n40022023007 +n40022023008 +n40022023009 +n40022023010 +n40022023011 +n40022023012 +n40022023013 +n40022023014 +n40022024001 +n40022024002 +n40022024003 +n40022024004 +n40022024005 +n40022024006 +n40022024007 +n40022024008 +n40022024009 +n40022024010 +n40022024011 +n40022024012 +n40022024013 +n40022024014 +n40022024015 +n40022024016 +n40022024017 +n40022024018 +n40022024019 +n40022024020 +n40022024021 +n40022024022 +n40022024023 +n40022025002 +n40022025001 +n40022025003 +n40022025004 +n40022025005 +n40022025006 +n40022025007 +n40022025008 +n40022025009 +n40022025010 +n40022025011 +n40022025012 +n40022025013 +n40022025014 +n40022025015 +n40022025016 +n40022025017 +n40022025018 +n40022025019 +n40022025020 +n40022025021 +n40022025022 +n40022026001 +n40022026002 +n40022026003 +n40022026004 +n40022026005 +n40022026006 +n40022026007 +n40022026008 +n40022026009 +n40022026010 +n40022027002 +n40022027001 +n40022027003 +n40022027004 +n40022027005 +n40022027006 +n40022028004 +n40022028001 +n40022028002 +n40022028003 +n40022028005 +n40022028006 +n40022028007 +n40022028009 +n40022028008 +n40022028011 +n40022028010 +n40022028012 +n40022028013 +n40022029002 +n40022029001 +n40022029003 +n40022029004 +n40022029005 +n40022029006 +n40022029007 +n40022029008 +n40022029009 +n40022029010 +n40022029011 +n40022029012 +n40022029013 +n40022029014 +n40022029015 +n40022029016 +n40022030002 +n40022030001 +n40022030003 +n40022030004 +n40022030005 +n40022030006 +n40022030007 +n40022030008 +n40022030009 +n40022030010 +n40022030011 +n40022030012 +n40022030013 +n40022030014 +n40022030015 +n40022031002 +n40022031001 +n40022031003 +n40022031004 +n40022031005 +n40022031006 +n40022031007 +n40022031008 +n40022031009 +n40022031010 +n40022031011 +n40022031012 +n40022031013 +n40022031014 +n40022031015 +n40022032001 +n40022032002 +n40022032003 +n40022032004 +n40022032005 +n40022032006 +n40022032007 +n40022032008 +n40022032009 +n40022032010 +n40022032011 +n40022032012 +n40022032013 +n40022032014 +n40022032015 +n40022032016 +n40022032017 +n40022032018 +n40022032019 +n40022032020 +n40022033001 +n40022033002 +n40022033003 +n40022033004 +n40022033005 +n40022033006 +n40022033007 +n40022033008 +n40022033009 +n40022034002 +n40022034001 +n40022034003 +n40022034004 +n40022034005 +n40022034006 +n40022034007 +n40022034008 +n40022034009 +n40022034010 +n40022034011 +n40022034012 +n40022035001 +n40022035002 +n40022035003 +n40022035004 +n40022035005 +n40022035006 +n40022035007 +n40022035008 +n40022036001 +n40022036002 +n40022036003 +n40022036004 +n40022036005 +n40022036006 +n40022036007 +n40022037002 +n40022037001 +n40022037003 +n40022037004 +n40022037005 +n40022037006 +n40022037007 +n40022037008 +n40022037009 +n40022037010 +n40022037011 +n40022037012 +n40022037013 +n40022037014 +n40022037015 +n40022037016 +n40022037017 +n40022037018 +n40022037019 +n40022037020 +n40022037021 +n40022037022 +n40022037023 +n40022037024 +n40022037025 +n40022037026 +n40022038001 +n40022038002 +n40022038003 +n40022038004 +n40022038005 +n40022038006 +n40022038007 +n40022039001 +n40022039002 +n40022039003 +n40022039004 +n40022039005 +n40022039006 +n40022039007 +n40022039008 +n40022039009 +n40022040001 +n40022040002 +n40022040003 +n40022040004 +n40022040005 +n40022040006 +n40022040007 +n40022040008 +n40022040009 +n40022040010 +n40022040011 +n40022040012 +n40022041002 +n40022041001 +n40022041003 +n40022041004 +n40022041005 +n40022041006 +n40022041007 +n40022041008 +n40022042001 +n40022042002 +n40022042003 +n40022042004 +n40022042005 +n40022042006 +n40022042007 +n40022042008 +n40022042009 +n40022042010 +n40022042011 +n40022042012 +n40022042013 +n40022042014 +n40022043001 +n40022043002 +n40022043004 +n40022043003 +n40022043005 +n40022043006 +n40022043007 +n40022043008 +n40022043009 +n40022043010 +n40022043011 +n40022044001 +n40022044002 +n40022044003 +n40022044004 +n40022044005 +n40022044006 +n40022044007 +n40022044008 +n40022044009 +n40022044010 +n40022044011 +n40022044012 +n40022044013 +n40022044014 +n40022044015 +n40022044016 +n40022044017 +n40022044018 +n40022044019 +n40022045002 +n40022045001 +n40022045003 +n40022045004 +n40022045005 +n40022045006 +n40022045007 +n40022045008 +n40022045009 +n40022045010 +n40022046001 +n40022046002 +n40022046003 +n40022046004 +n40022046005 +n40022046006 +n40022046007 +n40022046008 +n40022046009 +n40022046010 +n40022046011 +n40022046012 +n40022046013 +n40022046014 +n40022046015 +n40022046016 +n40023001001 +n40023001002 +n40023001003 +n40023001004 +n40023001005 +n40023001006 +n40023001007 +n40023001008 +n40023001009 +n40023001010 +n40023002001 +n40023002002 +n40023002003 +n40023002004 +n40023002005 +n40023002006 +n40023002007 +n40023002008 +n40023002009 +n40023002010 +n40023002011 +n40023003002 +n40023003001 +n40023003004 +n40023003003 +n40023003005 +n40023003006 +n40023003007 +n40023003008 +n40023003009 +n40023003011 +n40023003010 +n40023003012 +n40023003013 +n40023003014 +n40023003015 +n40023003016 +n40023003018 +n40023003017 +n40023003019 +n40023003020 +n40023003021 +n40023004002 +n40023004001 +n40023004003 +n40023004004 +n40023004005 +n40023004006 +n40023004007 +n40023004008 +n40023004009 +n40023004010 +n40023004011 +n40023004013 +n40023004012 +n40023004014 +n40023004015 +n40023004016 +n40023004017 +n40023004018 +n40023004019 +n40023004020 +n40023005002 +n40023005001 +n40023005003 +n40023005004 +n40023005005 +n40023005006 +n40023005007 +n40023005008 +n40023005009 +n40023005010 +n40023005011 +n40023005013 +n40023005012 +n40023005014 +n40023005015 +n40023005016 +n40023005017 +n40023005018 +n40023005019 +n40023005020 +n40023006002 +n40023006001 +n40023006003 +n40023006004 +n40023006005 +n40023006006 +n40023006007 +n40023006008 +n40023006009 +n40023006010 +n40023006011 +n40023006012 +n40023006013 +n40023007001 +n40023007002 +n40023007003 +n40023007004 +n40023007005 +n40023007006 +n40023007007 +n40023007008 +n40023007009 +n40023007010 +n40023007011 +n40023007012 +n40023008002 +n40023008001 +n40023008003 +n40023008004 +n40023008005 +n40023008007 +n40023008006 +n40023008008 +n40023008009 +n40023008010 +n40023008011 +n40023008013 +n40023008012 +n40023008014 +n40023008015 +n40023008016 +n40023009001 +n40023009002 +n40023009005 +n40023009003 +n40023009004 +n40023009006 +n40023009007 +n40023009008 +n40023009010 +n40023009009 +n40023009011 +n40023009012 +n40023009013 +n40023009014 +n40023009015 +n40023009016 +n40023010001 +n40023010002 +n40023010003 +n40023010004 +n40023010005 +n40023010006 +n40023010007 +n40023010008 +n40023010009 +n40023010010 +n40023011002 +n40023011001 +n40023011003 +n40023011004 +n40023011005 +n40023011006 +n40023011007 +n40023012002 +n40023012001 +n40023012003 +n40023012004 +n40023012005 +n40023012006 +n40023012007 +n40023012008 +n40023012009 +n40023012010 +n40023013002 +n40023013001 +n40023013003 +n40023013004 +n40023013005 +n40023013006 +n40023013007 +n40023013008 +n40023013009 +n40023013010 +n40023013011 +n40023013012 +n40023013013 +n40023013014 +n40023013015 +n40023013016 +n40023013018 +n40023013017 +n40023013019 +n40023013020 +n40023013021 +n40023013022 +n40023013023 +n40023013025 +n40023013024 +n40023015001 +n40023015002 +n40023015003 +n40023015004 +n40023015005 +n40023015006 +n40023015007 +n40023015008 +n40023015009 +n40023015010 +n40023015011 +n40023015012 +n40023015013 +n40023015014 +n40023015015 +n40023015016 +n40023015017 +n40023015018 +n40023015019 +n40023015020 +n40023015021 +n40023015022 +n40023015023 +n40023015024 +n40023015025 +n40023016001 +n40023016002 +n40023016003 +n40023016004 +n40023016005 +n40023016006 +n40023016008 +n40023016007 +n40023016009 +n40023016010 +n40023016011 +n40023016012 +n40023016013 +n40023016014 +n40023016016 +n40023016017 +n40023016015 +n40023016018 +n40023016019 +n40023016020 +n40023016021 +n40023016022 +n40023016023 +n40023016024 +n40023017001 +n40023017002 +n40023017003 +n40023017005 +n40023017004 +n40023017006 +n40023017007 +n40023017008 +n40023017009 +n40023017010 +n40023017011 +n40023017012 +n40023017013 +n40023017014 +n40023017015 +n40023017016 +n40023018001 +n40023018003 +n40023018002 +n40023018004 +n40023018005 +n40023018006 +n40023018007 +n40023018008 +n40023018009 +n40023018011 +n40023018012 +n40023018010 +n40023018013 +n40023018014 +n40023018015 +n40023018016 +n40023018017 +n40023018018 +n40023018019 +n40023018020 +n40023019001 +n40023019003 +n40023019002 +n40023019004 +n40023019005 +n40023019006 +n40023019007 +n40023019008 +n40023019009 +n40023019010 +n40023019011 +n40023019012 +n40023019013 +n40023020002 +n40023020001 +n40023020003 +n40023020004 +n40023020005 +n40023020006 +n40023020007 +n40023020008 +n40023020009 +n40023020010 +n40023020011 +n40023020012 +n40023020013 +n40023020014 +n40023020015 +n40023021001 +n40023021002 +n40023021003 +n40023021004 +n40023021005 +n40023021006 +n40023021007 +n40023021008 +n40023021009 +n40023021010 +n40023021011 +n40023021012 +n40023021013 +n40023021014 +n40023022001 +n40023022002 +n40023022003 +n40023022004 +n40023022005 +n40023022006 +n40023022007 +n40023022008 +n40023022009 +n40023022010 +n40023022011 +n40023022012 +n40023022013 +n40023022014 +n40023022015 +n40023022016 +n40023022017 +n40023022018 +n40023023001 +n40023023002 +n40023023003 +n40023023004 +n40023023005 +n40023023006 +n40023023007 +n40023023008 +n40023023009 +n40023023010 +n40023023011 +n40023023012 +n40023023013 +n40023023014 +n40023023015 +n40023023016 +n40023023017 +n40023023018 +n40023023019 +n40023023020 +n40023023021 +n40023023022 +n40023023023 +n40023023024 +n40023023025 +n40023023026 +n40023023027 +n40023023028 +n40023023029 +n40023023030 +n40023023032 +n40023023033 +n40023023031 +n40023023034 +n40023023035 +n40023023036 +n40023023037 +n40023024001 +n40023024002 +n40023024003 +n40023024004 +n40023024005 +n40023024006 +n40023024008 +n40023024007 +n40023024009 +n40023024010 +n40023025001 +n40023025002 +n40023025003 +n40023025004 +n40023025005 +n40023025006 +n40023025007 +n40023025008 +n40023025009 +n40023025010 +n40023025011 +n40023025012 +n40023025013 +n40023025014 +n40023025015 +n40023025017 +n40023025016 +n40023025018 +n40023025019 +n40023025020 +n40023025021 +n40023025022 +n40023026001 +n40023026002 +n40023026003 +n40023026004 +n40023026005 +n40023026006 +n40023026007 +n40023026008 +n40023026009 +n40023026010 +n40023026011 +n40023026012 +n40023026013 +n40023026014 +n40023026015 +n40023027001 +n40023027002 +n40023027003 +n40023027004 +n40023027005 +n40023027006 +n40023027007 +n40023027008 +n40023027009 +n40023027010 +n40023027013 +n40023027011 +n40023027012 +n40023027014 +n40023027015 +n40023027017 +n40023027016 +n40023027018 +n40023027019 +n40023027020 +n40023027021 +n40023027022 +n40023027023 +n40023028001 +n40023028002 +n40023028003 +n40023028005 +n40023028004 +n40023028006 +n40023028007 +n40023028008 +n40023028009 +n40023028011 +n40023028010 +n40023028012 +n40023028013 +n40023028014 +n40023028015 +n40023028016 +n40023029001 +n40023029002 +n40023029003 +n40023029004 +n40023029005 +n40023029006 +n40023029007 +n40023029008 +n40023029009 +n40023029010 +n40023029011 +n40023029012 +n40023029013 +n40023029014 +n40023029015 +n40023029016 +n40023029017 +n40023029018 +n40023030001 +n40023030002 +n40023030003 +n40023030004 +n40023030005 +n40023030006 +n40023030007 +n40023030008 +n40023030009 +n40023030010 +n40023030012 +n40023030011 +n40023030013 +n40023030014 +n40023030015 +n40023030016 +n40023030017 +n40023030018 +n40023030019 +n40023030020 +n40023031001 +n40023031002 +n40023031003 +n40023031004 +n40023031006 +n40023031005 +n40023031007 +n40023031008 +n40023031009 +n40023031010 +n40023032001 +n40023032002 +n40023032003 +n40023032004 +n40023032005 +n40023032006 +n40023032007 +n40023032008 +n40023033001 +n40023033002 +n40023033003 +n40023033004 +n40023033005 +n40023033006 +n40023033007 +n40023033008 +n40023033009 +n40023033010 +n40023034003 +n40023034001 +n40023034002 +n40023034004 +n40023034005 +n40023034006 +n40023034007 +n40023034008 +n40023034009 +n40023034010 +n40023034011 +n40023034012 +n40023034013 +n40023034014 +n40023034015 +n40023034016 +n40023034017 +n40023034018 +n40023034019 +n40023034020 +n40023034021 +n40023034022 +n40023034023 +n40023034024 +n40023034025 +n40023034026 +n40023034027 +n40023034028 +n40023034029 +n40023034030 +n40023034031 +n40023035001 +n40023035002 +n40023035003 +n40023035004 +n40023035005 +n40023035006 +n40023035007 +n40023035008 +n40023035009 +n40023035010 +n40023035011 +n40023035012 +n40023035013 +n40023035014 +n40023035015 +n40023035016 +n40023035017 +n40023035018 +n40023035019 +n40023035020 +n40023035021 +n40023035022 +n40023035023 +n40023035024 +n40023035025 +n40023035026 +n40023035027 +n40023035028 +n40023035029 +n40023035030 +n40023035031 +n40023036001 +n40023036002 +n40023036003 +n40023036004 +n40023036005 +n40023036006 +n40023036007 +n40023036008 +n40023036009 +n40023036010 +n40023037001 +n40023037002 +n40023037003 +n40023037004 +n40023037005 +n40023037006 +n40023037007 +n40023037008 +n40023037009 +n40023037010 +n40023037011 +n40023037012 +n40023037013 +n40023037014 +n40023037015 +n40023037016 +n40023037017 +n40023037018 +n40023037019 +n40023037020 +n40023037021 +n40023037022 +n40023037023 +n40023037024 +n40023037025 +n40023037026 +n40023037027 +n40023037028 +n40023037029 +n40023037030 +n40023037031 +n40023038001 +n40023038002 +n40023038003 +n40023038004 +n40023038005 +n40023038006 +n40023039002 +n40023039001 +n40023039003 +n40023039004 +n40023039005 +n40023039006 +n40023039007 +n40023039008 +n40023039009 +n40023039010 +n40023039011 +n40023039012 +n40023039013 +n40023039014 +n40023039015 +n40023039016 +n40023039017 +n40023039018 +n40024001001 +n40024001003 +n40024001004 +n40024001002 +n40024001005 +n40024001006 +n40024001007 +n40024001008 +n40024001009 +n40024001010 +n40024001011 +n40024001012 +n40024001013 +n40024001014 +n40024001015 +n40024001016 +n40024001017 +n40024001018 +n40024001019 +n40024002002 +n40024002001 +n40024002003 +n40024002004 +n40024002005 +n40024002006 +n40024002007 +n40024002008 +n40024002009 +n40024002010 +n40024002011 +n40024002012 +n40024002013 +n40024002014 +n40024002015 +n40024002016 +n40024002018 +n40024002019 +n40024002017 +n40024002020 +n40024002021 +n40024002022 +n40024003002 +n40024003001 +n40024003003 +n40024003004 +n40024003005 +n40024003006 +n40024003007 +n40024003008 +n40024003009 +n40024003010 +n40024003011 +n40024003012 +n40024003013 +n40024003014 +n40024003015 +n40024003016 +n40024003017 +n40024003018 +n40024003019 +n40024003020 +n40024003021 +n40024003022 +n40024003023 +n40024003024 +n40024003025 +n40024003026 +n40024003027 +n40024003028 +n40024003029 +n40024003030 +n40024003031 +n40024004001 +n40024004002 +n40024004003 +n40024004004 +n40024004005 +n40024004006 +n40024004007 +n40024004008 +n40024004009 +n40024004010 +n40024004011 +n40024005002 +n40024005001 +n40024005003 +n40024005004 +n40024005005 +n40024005006 +n40024005007 +n40024005008 +n40024005009 +n40024005010 +n40024005011 +n40024005012 +n40024005013 +n40024005014 +n40024005015 +n40024006002 +n40024006001 +n40024006003 +n40024006004 +n40024006005 +n40024006006 +n40024006007 +n40024006008 +n40024006009 +n40024006010 +n40024006012 +n40024006011 +n40024006013 +n40024006014 +n40024006015 +n40024006016 +n40024006017 +n40024006018 +n40024007002 +n40024007001 +n40024007003 +n40024007004 +n40024007005 +n40024007006 +n40024007007 +n40024007008 +n40024007009 +n40024007010 +n40024007011 +n40024007012 +n40024007013 +n40024007014 +n40024007015 +n40024007016 +n40024008002 +n40024008001 +n40024008003 +n40024008004 +n40024008005 +n40024009001 +n40024009002 +n40024009003 +n40024009004 +n40024009005 +n40024009006 +n40024009007 +n40024009008 +n40024009009 +n40024009010 +n40024009011 +n40024009012 +n40024009013 +n40024009014 +n40024009015 +n40024009016 +n40024009017 +n40024009018 +n40024009019 +n40024010001 +n40024010002 +n40024010003 +n40024010004 +n40024010005 +n40024010006 +n40024010007 +n40024010008 +n40024010009 +n40024010010 +n40024011001 +n40024011002 +n40024011003 +n40024011004 +n40024011005 +n40024011006 +n40024011007 +n40024012001 +n40024012002 +n40024012003 +n40024012004 +n40024012005 +n40024012006 +n40024012007 +n40024012008 +n40024012009 +n40024012010 +n40024012011 +n40024013002 +n40024013001 +n40024013003 +n40024013004 +n40024013005 +n40024013006 +n40024013007 +n40024014001 +n40024014002 +n40024014003 +n40024014004 +n40024014005 +n40024014006 +n40024014007 +n40024014008 +n40024014009 +n40024014010 +n40024014011 +n40024014012 +n40024014013 +n40024014014 +n40024014015 +n40024014016 +n40024014017 +n40024014018 +n40024014019 +n40024014020 +n40024014021 +n40024015002 +n40024015001 +n40024015003 +n40024015004 +n40024015005 +n40024015006 +n40024015007 +n40024015008 +n40024015009 +n40024015010 +n40024015011 +n40024015012 +n40024015013 +n40024015014 +n40024015015 +n40024015016 +n40024015017 +n40024015018 +n40024015019 +n40024015020 +n40024016001 +n40024016002 +n40024016003 +n40024016004 +n40024016005 +n40024016006 +n40024016007 +n40024016008 +n40024016009 +n40024017001 +n40024017002 +n40024017003 +n40024017004 +n40024017005 +n40024017006 +n40024017007 +n40024017008 +n40024017009 +n40024017010 +n40024017011 +n40024017012 +n40024018001 +n40024018002 +n40024018003 +n40024018004 +n40024018005 +n40024018006 +n40024018007 +n40024018008 +n40024018009 +n40024018010 +n40024018011 +n40024018012 +n40024019002 +n40024019001 +n40024019003 +n40024019004 +n40024019005 +n40024019006 +n40024019007 +n40024019008 +n40024019009 +n40024019010 +n40024019011 +n40024019012 +n40024019013 +n40024020002 +n40024020001 +n40024020003 +n40024020004 +n40024020005 +n40024020006 +n40024020007 +n40024020008 +n40024020009 +n40024020010 +n40024020011 +n40024021002 +n40024021001 +n40024021003 +n40024021004 +n40024021005 +n40024021006 +n40024021007 +n40024021008 +n40024021009 +n40024021010 +n40024021011 +n40024021012 +n40024021013 +n40024021014 +n40024021015 +n40024021016 +n40024021017 +n40024021018 +n40024022001 +n40024022002 +n40024022003 +n40024022004 +n40024022005 +n40024022006 +n40024022007 +n40024022009 +n40024022008 +n40024022010 +n40024022011 +n40024022012 +n40024022014 +n40024022013 +n40024022015 +n40024022016 +n40024022017 +n40024022018 +n40024022019 +n40024022020 +n40024023002 +n40024023001 +n40024023003 +n40024023004 +n40024023005 +n40024023006 +n40024023007 +n40024023008 +n40024023009 +n40024023010 +n40024023011 +n40024023012 +n40024023013 +n40024024002 +n40024024001 +n40024024003 +n40024024004 +n40024024005 +n40024024006 +n40024024007 +n40024024008 +n40024024009 +n40024024010 +n40024024011 +n40024024012 +n40024024013 +n40024024014 +n40024024015 +n40024024016 +n40024024017 +n40024024018 +n40024025001 +n40024025002 +n40024025003 +n40024026002 +n40024026001 +n40024026003 +n40024026004 +n40024026005 +n40024026006 +n40024026007 +n40024026008 +n40024026009 +n40024026010 +n40024026011 +n40024026012 +n40024026013 +n40024026014 +n40024026015 +n40024026016 +n40024026017 +n40024027002 +n40024027001 +n40024027003 +n40024027004 +n40024027005 +n40024027006 +n40024027007 +n40024027008 +n40024027009 +n40024027010 +n40024027011 +n40024027012 +n40024027013 +n40024027014 +n40024027015 +n40024027016 +n40024027017 +n40024027018 +n40024027019 +n40024028002 +n40024028001 +n40024028003 +n40024028004 +n40024028005 +n40024028006 +n40024028007 +n40024028008 +n40024028009 +n40024029002 +n40024029001 +n40024029003 +n40024029004 +n40024029005 +n40024029006 +n40024029007 +n40024029008 +n40024029009 +n40024029010 +n40024029011 +n40024029012 +n40024029013 +n40024029014 +n40024029015 +n40024029016 +n40024029017 +n40024029018 +n40024029019 +n40024029020 +n40024029021 +n40024029022 +n40024029023 +n40024029024 +n40024029025 +n40024029026 +n40024029027 +n40024029028 +n40024029029 +n40024029030 +n40024029031 +n40024029032 +n40024030001 +n40024030002 +n40024030003 +n40024030004 +n40024030005 +n40024030006 +n40024030007 +n40024030008 +n40024030009 +n40024030010 +n40024030011 +n40024030012 +n40024030013 +n40024030014 +n40024030015 +n40024030016 +n40024030017 +n40024030018 +n40024030019 +n40024030020 +n40024030021 +n40024030022 +n40024030023 +n40024030024 +n40024030025 +n40024030026 +n40024030027 +n40024030028 +n40024030029 +n40024030030 +n40024030031 +n40024030032 +n40024030033 +n40024030034 +n40024030035 +n40024030036 +n40024031001 +n40024031002 +n40024031003 +n40024031004 +n40024031005 +n40024031006 +n40024031007 +n40024031008 +n40024031009 +n40024031010 +n40024031011 +n40024031012 +n40024031013 +n40024031014 +n40024031015 +n40024031016 +n40024031017 +n40024031018 +n40024031019 +n40024031020 +n40024031021 +n40024031022 +n40024031023 +n40024032002 +n40024032001 +n40024032003 +n40024032004 +n40024032005 +n40024032006 +n40024032007 +n40024032008 +n40024032009 +n40024032010 +n40024032011 +n40024032012 +n40024032013 +n40024032014 +n40024032015 +n40024032016 +n40024032017 +n40024032018 +n40024032019 +n40024032020 +n40024032021 +n40024032022 +n40024032023 +n40024033001 +n40024033002 +n40024033003 +n40024033004 +n40024033005 +n40024033006 +n40024033007 +n40024033008 +n40024033009 +n40024033010 +n40024033011 +n40024033012 +n40024033013 +n40024034001 +n40024034002 +n40024034003 +n40024034004 +n40024034005 +n40024034006 +n40024034007 +n40024034008 +n40024034009 +n40024034010 +n40024034011 +n40024034012 +n40024034013 +n40024034014 +n40024034015 +n40024035001 +n40024035002 +n40024035003 +n40024035004 +n40024035005 +n40024035006 +n40024035008 +n40024035007 +n40024035009 +n40024035010 +n40024035011 +n40024035012 +n40024035013 +n40024036002 +n40024036001 +n40024036003 +n40024036004 +n40024036006 +n40024036007 +n40024036005 +n40024036008 +n40024036009 +n40024036010 +n40024036011 +n40024036012 +n40024036013 +n40024036014 +n40024036015 +n40024036016 +n40024036017 +n40024036018 +n40024036019 +n40024036020 +n40024036021 +n40024036022 +n40024037002 +n40024037001 +n40024037003 +n40024037004 +n40024037005 +n40024037006 +n40024037007 +n40024037008 +n40024037009 +n40024037010 +n40024037011 +n40024037012 +n40024037013 +n40024037014 +n40024038002 +n40024038001 +n40024038004 +n40024038005 +n40024038006 +n40024038007 +n40024038008 +n40024038009 +n40024038010 +n40024038011 +n40024038003 +n40024038012 +n40024038013 +n40024038014 +n40024038015 +n40024038016 +n40024038017 +n40024038018 +n40024038019 +n40024038020 +n40024038021 +n40024038022 +n40024038023 +n40024038024 +n40024038025 +n40024039001 +n40024039002 +n40024039003 +n40024039004 +n40024039005 +n40024039006 +n40024039007 +n40024039008 +n40024039009 +n40024039010 +n40024039011 +n40024039012 +n40024039013 +n40024039014 +n40024039015 +n40024039016 +n40024039017 +n40024039018 +n40024039019 +n40024040001 +n40024040002 +n40024040003 +n40024040004 +n40024040005 +n40024040006 +n40024040007 +n40024040008 +n40024040009 +n40024040010 +n40024040011 +n40024041001 +n40024041002 +n40024041003 +n40024041004 +n40024041005 +n40024041006 +n40024041007 +n40024041008 +n40024041009 +n40024041010 +n40024042002 +n40024042001 +n40024042003 +n40024042004 +n40024042005 +n40024042006 +n40024042007 +n40024042008 +n40024042009 +n40024042010 +n40024042011 +n40024043002 +n40024043001 +n40024043003 +n40024043004 +n40024043005 +n40024043006 +n40024043007 +n40024043008 +n40024043009 +n40024043010 +n40024043011 +n40024043012 +n40024043013 +n40024043015 +n40024043014 +n40024043016 +n40024043018 +n40024043017 +n40024043019 +n40024043020 +n40024043021 +n40024043022 +n40024043023 +n40024044001 +n40024044002 +n40024044003 +n40024044004 +n40024044005 +n40024044006 +n40024044007 +n40024044008 +n40024044009 +n40024044010 +n40024044011 +n40024044012 +n40024044013 +n40024044014 +n40024044015 +n40024044016 +n40024045002 +n40024045001 +n40024045003 +n40024045004 +n40024045005 +n40024045007 +n40024045008 +n40024045006 +n40024045009 +n40024045010 +n40024045011 +n40024045012 +n40024045013 +n40024045014 +n40024045015 +n40024045016 +n40024045017 +n40024045018 +n40024045019 +n40024045020 +n40024045021 +n40024045022 +n40024045023 +n40024046001 +n40024046002 +n40024046003 +n40024046004 +n40024046005 +n40024046011 +n40024046012 +n40024046006 +n40024046007 +n40024046008 +n40024046009 +n40024046010 +n40024047001 +n40024047002 +n40024047003 +n40024047004 +n40024047005 +n40024047006 +n40024047007 +n40024047008 +n40024047009 +n40024047010 +n40024047011 +n40024048002 +n40024048001 +n40024048003 +n40024048004 +n40024048005 +n40024048006 +n40024048007 +n40024048008 +n40024048009 +n40024048010 +n40024048011 +n40024048012 +n40024048013 +n40024048014 +n40024048015 +n40024049001 +n40024049002 +n40024049003 +n40024049004 +n40024049005 +n40024049006 +n40024049008 +n40024049007 +n40024049009 +n40024049010 +n40024049011 +n40024049012 +n40024049013 +n40024050001 +n40024050002 +n40024050003 +n40024050004 +n40024050005 +n40024050006 +n40024050007 +n40024050008 +n40024050009 +n40024050010 +n40024050011 +n40024050012 +n40024050013 +n40024050014 +n40024050015 +n40024050016 +n40024050017 +n40024051001 +n40024051002 +n40024051003 +n40024051004 +n40024051005 +n40024051006 +n40024051007 +n40024051008 +n40024051009 +n40024051010 +n40024051011 +n40024051012 +n40024051013 +n40024051014 +n40024051015 +n40024051016 +n40024051017 +n40024051018 +n40024051019 +n40024051020 +n40025001001 +n40025001002 +n40025001003 +n40025001004 +n40025001005 +n40025001006 +n40025001007 +n40025001008 +n40025001009 +n40025001010 +n40025001011 +n40025001012 +n40025001013 +n40025001014 +n40025001015 +n40025001016 +n40025001017 +n40025001018 +n40025002002 +n40025002001 +n40025002003 +n40025002004 +n40025002005 +n40025002006 +n40025002007 +n40025002008 +n40025002009 +n40025003002 +n40025003001 +n40025003003 +n40025003004 +n40025003005 +n40025003006 +n40025003007 +n40025003008 +n40025003009 +n40025003010 +n40025003011 +n40025004002 +n40025004001 +n40025004003 +n40025004004 +n40025004005 +n40025004006 +n40025004007 +n40025004008 +n40025004009 +n40025004010 +n40025004011 +n40025004012 +n40025005002 +n40025005001 +n40025005003 +n40025005004 +n40025005005 +n40025005006 +n40025005007 +n40025005008 +n40025006002 +n40025006001 +n40025006003 +n40025006004 +n40025006005 +n40025006006 +n40025006007 +n40025006008 +n40025006009 +n40025006010 +n40025006011 +n40025007001 +n40025007002 +n40025007003 +n40025007004 +n40025007005 +n40025007006 +n40025007007 +n40025007008 +n40025007009 +n40025007010 +n40025007011 +n40025008002 +n40025008001 +n40025008003 +n40025008004 +n40025008005 +n40025008006 +n40025008007 +n40025008008 +n40025008009 +n40025008010 +n40025008011 +n40025008012 +n40025008013 +n40025008014 +n40025008015 +n40025008016 +n40025008017 +n40025009002 +n40025009001 +n40025009003 +n40025009004 +n40025009005 +n40025009006 +n40025009007 +n40025009008 +n40025009009 +n40025009010 +n40025009011 +n40025009012 +n40025009013 +n40025009014 +n40025009015 +n40025009016 +n40025009017 +n40025009018 +n40025009019 +n40025009020 +n40025009021 +n40025010002 +n40025010001 +n40025010003 +n40025010004 +n40025010005 +n40025010006 +n40025010007 +n40025010008 +n40025010009 +n40025010010 +n40025010011 +n40025010012 +n40025010013 +n40025010014 +n40025010015 +n40025010016 +n40025010017 +n40025010018 +n40025010019 +n40025010020 +n40025011002 +n40025011001 +n40025011003 +n40025011004 +n40025011005 +n40025011006 +n40025011007 +n40025011008 +n40025011009 +n40025011010 +n40025011011 +n40025011012 +n40025012002 +n40025012001 +n40025012003 +n40025012004 +n40025012005 +n40025012006 +n40025012007 +n40025012008 +n40025012009 +n40025012010 +n40025013002 +n40025013001 +n40025013003 +n40025013004 +n40025013005 +n40025013006 +n40025013007 +n40025013008 +n40025013009 +n40025013010 +n40025014002 +n40025014001 +n40025014003 +n40025014004 +n40025014005 +n40025014006 +n40025014007 +n40025014008 +n40025014009 +n40025014010 +n40025014011 +n40025014012 +n40025014013 +n40025014014 +n40025015001 +n40025015003 +n40025015002 +n40025015004 +n40025015005 +n40025015006 +n40025015008 +n40025015007 +n40025015009 +n40025015011 +n40025015010 +n40025015012 +n40025015013 +n40025015014 +n40025015015 +n40025015016 +n40025015017 +n40025015018 +n40025015019 +n40025015020 +n40025016001 +n40025016002 +n40025016003 +n40025016004 +n40025016005 +n40025016006 +n40025016007 +n40025016008 +n40025016009 +n40025016010 +n40025016011 +n40025016012 +n40025016013 +n40025017001 +n40025017002 +n40025017003 +n40025017004 +n40025017005 +n40025017006 +n40025017007 +n40025018002 +n40025018001 +n40025018003 +n40025018004 +n40025018005 +n40025018006 +n40025018007 +n40025018008 +n40025018009 +n40025018010 +n40025018011 +n40025018012 +n40025018013 +n40025018014 +n40025018015 +n40025019002 +n40025019001 +n40025019003 +n40025019004 +n40025019005 +n40025019006 +n40025019007 +n40025019008 +n40025019009 +n40025019010 +n40025019011 +n40025019012 +n40025019013 +n40025019014 +n40025019015 +n40025020001 +n40025020002 +n40025020003 +n40025020004 +n40025020005 +n40025020006 +n40025020007 +n40025020008 +n40025020009 +n40025020010 +n40025020011 +n40025020012 +n40025020013 +n40025020014 +n40025020015 +n40025020016 +n40025020017 +n40025020018 +n40025020019 +n40025020020 +n40025020021 +n40025020022 +n40025021001 +n40025021002 +n40025021003 +n40025021004 +n40025021005 +n40025021006 +n40025021007 +n40025021008 +n40025021009 +n40025021010 +n40025021011 +n40025021012 +n40025021013 +n40025021014 +n40025021015 +n40025021016 +n40025021017 +n40025021018 +n40025021019 +n40025021020 +n40025021021 +n40025021022 +n40025021023 +n40025021024 +n40025021025 +n40025022001 +n40025022002 +n40025022003 +n40025022004 +n40025022005 +n40025022006 +n40025022007 +n40025022008 +n40025022009 +n40025022010 +n40025022011 +n40025022012 +n40025022013 +n40025022014 +n40025022015 +n40025022016 +n40025022017 +n40025023001 +n40025023002 +n40025023003 +n40025023004 +n40025023005 +n40025023006 +n40025023007 +n40025023008 +n40025023009 +n40025023010 +n40025023011 +n40025023012 +n40025023013 +n40025023014 +n40025023015 +n40025023016 +n40025023017 +n40025023018 +n40025023019 +n40025023020 +n40025023021 +n40025023022 +n40025023023 +n40025023024 +n40025023025 +n40025024002 +n40025024001 +n40025024003 +n40025024004 +n40025024005 +n40025024006 +n40025024007 +n40025024008 +n40025024009 +n40025024010 +n40025024011 +n40025024012 +n40025024013 +n40025024015 +n40025024014 +n40025024016 +n40025024017 +n40025024018 +n40025024019 +n40025024020 +n40025024021 +n40025024022 +n40025024023 +n40025024024 +n40025024025 +n40025025001 +n40025025002 +n40025025003 +n40025025004 +n40025025005 +n40025025006 +n40025025007 +n40025025008 +n40025025009 +n40025025010 +n40025025011 +n40025025012 +n40025025013 +n40025025014 +n40025026002 +n40025026001 +n40025026003 +n40025026004 +n40025026005 +n40025026006 +n40025026007 +n40025026009 +n40025026008 +n40025026010 +n40025026011 +n40025026012 +n40025026013 +n40025026014 +n40025026015 +n40025026016 +n40025026017 +n40025026018 +n40025026019 +n40025026020 +n40025026021 +n40025026022 +n40025027003 +n40025027001 +n40025027002 +n40025027004 +n40025027005 +n40025027006 +n40025027007 +n40025027008 +n40025027009 +n40025027010 +n40025027014 +n40025027011 +n40025027012 +n40025027013 +n40025027015 +n40025027016 +n40025027017 +n40025027018 +n40025028002 +n40025028001 +n40025028003 +n40025028004 +n40025028005 +n40025028006 +n40025028007 +n40025028008 +n40025028009 +n40025028010 +n40025028011 +n40025028012 +n40025028013 +n40025029002 +n40025029001 +n40025029003 +n40025029004 +n40025029005 +n40025029006 +n40025029007 +n40025029009 +n40025029008 +n40025029010 +n40025029011 +n40025029012 +n40025029013 +n40025029014 +n40025029015 +n40025029016 +n40025029017 +n40025030001 +n40025030002 +n40025030003 +n40025030004 +n40025030005 +n40025030006 +n40025030007 +n40025030008 +n40025030009 +n40025030010 +n40025030011 +n40025030012 +n40025030013 +n40025030014 +n40025030015 +n40025030016 +n40025030017 +n40025030018 +n40025030019 +n40025031002 +n40025031001 +n40025031003 +n40025031004 +n40025031005 +n40025031006 +n40025031007 +n40025031008 +n40025031009 +n40025031010 +n40025031011 +n40025031012 +n40025031013 +n40025031014 +n40025031015 +n40025031016 +n40025031017 +n40025031018 +n40025031019 +n40025031020 +n40025031021 +n40025031022 +n40025031023 +n40025032001 +n40025032002 +n40025032003 +n40025032004 +n40025032005 +n40025032006 +n40025032007 +n40025032008 +n40025032009 +n40025032010 +n40025032011 +n40025032012 +n40025032013 +n40025032014 +n40025032015 +n40025032016 +n40025032017 +n40025032018 +n40025032019 +n40025032020 +n40025032021 +n40025033001 +n40025033004 +n40025033002 +n40025033003 +n40025033005 +n40025033006 +n40025033007 +n40025033008 +n40025033010 +n40025033009 +n40025033011 +n40025033012 +n40025033013 +n40025034001 +n40025034002 +n40025034003 +n40025034004 +n40025034005 +n40025034006 +n40025034007 +n40025034008 +n40025034009 +n40025034010 +n40025034011 +n40025034012 +n40025034013 +n40025034014 +n40025034015 +n40025034016 +n40025034017 +n40025034018 +n40025034020 +n40025034021 +n40025034022 +n40025034019 +n40025035002 +n40025035001 +n40025035003 +n40025035004 +n40025035005 +n40025035006 +n40025035007 +n40025035008 +n40025035009 +n40025035010 +n40025035011 +n40025035012 +n40025035013 +n40025035014 +n40025035015 +n40025036001 +n40025036002 +n40025036003 +n40025036004 +n40025036005 +n40025036006 +n40025036007 +n40025036008 +n40025036009 +n40025036010 +n40025036011 +n40025036012 +n40025036013 +n40025036014 +n40025036015 +n40025037001 +n40025037002 +n40025037003 +n40025037004 +n40025037005 +n40025037006 +n40025037007 +n40025037008 +n40025037010 +n40025037009 +n40025037011 +n40025037012 +n40025037013 +n40025037014 +n40025037015 +n40025037016 +n40025037017 +n40025038002 +n40025038001 +n40025038004 +n40025038003 +n40025038005 +n40025038006 +n40025038007 +n40025038008 +n40025038009 +n40025038010 +n40025038011 +n40025039002 +n40025039001 +n40025039004 +n40025039003 +n40025039005 +n40025039006 +n40025039007 +n40025039008 +n40025039009 +n40025039010 +n40025039011 +n40025039012 +n40025040001 +n40025040002 +n40025040003 +n40025040004 +n40025040005 +n40025040006 +n40025040007 +n40025040008 +n40025040009 +n40025040010 +n40025040011 +n40025040012 +n40025040013 +n40025040014 +n40025040015 +n40025040016 +n40025040017 +n40025040018 +n40025040019 +n40025040020 +n40025040021 +n40025041001 +n40025041002 +n40025041003 +n40025041004 +n40025041005 +n40025041006 +n40025041010 +n40025041007 +n40025041008 +n40025041009 +n40025041011 +n40025041012 +n40025041013 +n40025041014 +n40025041015 +n40025041016 +n40025041017 +n40025041018 +n40025041019 +n40025041020 +n40025041021 +n40025041022 +n40025041023 +n40025042002 +n40025042001 +n40025042003 +n40025042004 +n40025042005 +n40025042006 +n40025042007 +n40025042008 +n40025042009 +n40025042010 +n40025042011 +n40025042012 +n40025043001 +n40025043002 +n40025043003 +n40025043004 +n40025043005 +n40025043006 +n40025043007 +n40025043008 +n40025043009 +n40025043010 +n40025043011 +n40025043012 +n40025043013 +n40025043014 +n40025043015 +n40025043016 +n40025043017 +n40025043018 +n40025043019 +n40025044001 +n40025044002 +n40025044003 +n40025044004 +n40025044005 +n40025044006 +n40025044007 +n40025044009 +n40025044008 +n40025044010 +n40025044011 +n40025044012 +n40025044013 +n40025044014 +n40025044015 +n40025044016 +n40025044017 +n40025044018 +n40025044019 +n40025044020 +n40025044021 +n40025044022 +n40025044023 +n40025044024 +n40025044025 +n40025045001 +n40025045002 +n40025045003 +n40025045004 +n40025045005 +n40025045006 +n40025045007 +n40025045008 +n40025045009 +n40025045010 +n40025045011 +n40025045012 +n40025045013 +n40025045014 +n40025045015 +n40025045016 +n40025045017 +n40025045018 +n40025046001 +n40025046002 +n40025046003 +n40025046004 +n40025046005 +n40025046006 +n40025046008 +n40025046007 +n40025046009 +n40025046010 +n40025046011 +n40025046012 +n40026001001 +n40026001002 +n40026001003 +n40026001004 +n40026001005 +n40026001006 +n40026001007 +n40026001008 +n40026001009 +n40026001010 +n40026001011 +n40026001012 +n40026001013 +n40026001014 +n40026002001 +n40026002002 +n40026002003 +n40026002004 +n40026002005 +n40026002006 +n40026002007 +n40026002008 +n40026002009 +n40026002010 +n40026002011 +n40026002012 +n40026002013 +n40026002014 +n40026002015 +n40026002016 +n40026002017 +n40026003001 +n40026003002 +n40026003003 +n40026003004 +n40026003005 +n40026003006 +n40026003007 +n40026003008 +n40026003009 +n40026003010 +n40026003011 +n40026003012 +n40026003013 +n40026003014 +n40026003015 +n40026003016 +n40026003017 +n40026004001 +n40026004002 +n40026004003 +n40026004004 +n40026004005 +n40026004006 +n40026004007 +n40026004008 +n40026004009 +n40026005002 +n40026005001 +n40026005003 +n40026005004 +n40026005005 +n40026005006 +n40026005007 +n40026005008 +n40026005009 +n40026005010 +n40026005011 +n40026005012 +n40026005013 +n40026006002 +n40026006001 +n40026006003 +n40026006004 +n40026006005 +n40026006006 +n40026006007 +n40026006008 +n40026006009 +n40026006010 +n40026006011 +n40026007001 +n40026007002 +n40026007003 +n40026007004 +n40026007005 +n40026007006 +n40026007007 +n40026007008 +n40026007009 +n40026007010 +n40026007011 +n40026007012 +n40026007013 +n40026007014 +n40026008002 +n40026008001 +n40026008003 +n40026008004 +n40026008005 +n40026008006 +n40026008007 +n40026008008 +n40026008009 +n40026008010 +n40026008011 +n40026009002 +n40026009001 +n40026009003 +n40026009004 +n40026009005 +n40026009006 +n40026009007 +n40026009008 +n40026010002 +n40026010001 +n40026010003 +n40026010004 +n40026010005 +n40026010006 +n40026010007 +n40026010008 +n40026010009 +n40026010010 +n40026010011 +n40026010013 +n40026010012 +n40026010014 +n40026010015 +n40026010016 +n40026010017 +n40026011002 +n40026011001 +n40026011003 +n40026011004 +n40026011005 +n40026011006 +n40026011007 +n40026011009 +n40026011008 +n40026011010 +n40026011011 +n40026011012 +n40026012002 +n40026012003 +n40026012001 +n40026012004 +n40026012005 +n40026012006 +n40026012007 +n40026012008 +n40026012009 +n40026012010 +n40026012011 +n40026012012 +n40026012013 +n40026012014 +n40026012015 +n40026013001 +n40026013002 +n40026013003 +n40026013005 +n40026013004 +n40026013006 +n40026013007 +n40026013008 +n40026013009 +n40026013010 +n40026013011 +n40026013012 +n40026013013 +n40026013014 +n40026013015 +n40026013016 +n40026013017 +n40026013018 +n40026013019 +n40026013020 +n40026013021 +n40026014001 +n40026014003 +n40026014004 +n40026014005 +n40026014006 +n40026014007 +n40026014008 +n40026014009 +n40026014002 +n40026014010 +n40026014011 +n40026014012 +n40026015001 +n40026015003 +n40026015002 +n40026015004 +n40026015005 +n40026015006 +n40026015007 +n40026015008 +n40026015009 +n40026015011 +n40026015010 +n40026015012 +n40026015013 +n40026015014 +n40026015015 +n40026016001 +n40026016002 +n40026016003 +n40026016004 +n40026016005 +n40026016006 +n40026016007 +n40026016008 +n40026017002 +n40026017001 +n40026017003 +n40026017004 +n40026017005 +n40026017006 +n40026017007 +n40026017008 +n40026017009 +n40026017010 +n40026017011 +n40026017013 +n40026017012 +n40026017014 +n40026017015 +n40026017016 +n40026017017 +n40026017018 +n40026018002 +n40026018001 +n40026018003 +n40026018004 +n40026018005 +n40026018006 +n40026018007 +n40026018008 +n40026018009 +n40026018010 +n40026018011 +n40026018012 +n40026018013 +n40026018014 +n40026018015 +n40026018016 +n40026018017 +n40026018018 +n40026018019 +n40026018020 +n40026018021 +n40026018022 +n40026018023 +n40026018024 +n40026018025 +n40026018026 +n40026018027 +n40026018028 +n40026018029 +n40026018030 +n40026019001 +n40026019002 +n40026019003 +n40026019004 +n40026019005 +n40026019006 +n40026019007 +n40026019008 +n40026019009 +n40026019010 +n40026019011 +n40026019012 +n40026019013 +n40026020002 +n40026020001 +n40026020003 +n40026020004 +n40026020005 +n40026020006 +n40026020007 +n40026020008 +n40026021001 +n40026021002 +n40026021003 +n40026021004 +n40026021005 +n40026021006 +n40026021007 +n40026021008 +n40026021009 +n40026021010 +n40026021011 +n40026021012 +n40026021013 +n40026022001 +n40026022002 +n40026022003 +n40026022004 +n40026022005 +n40026022006 +n40026022007 +n40026022008 +n40026022009 +n40026022010 +n40026022011 +n40026022012 +n40026023002 +n40026023001 +n40026023003 +n40026023004 +n40026023005 +n40026023006 +n40026023007 +n40026023008 +n40026023009 +n40026023010 +n40026023011 +n40026023012 +n40026023013 +n40026023014 +n40026023015 +n40026023016 +n40026024002 +n40026024001 +n40026024003 +n40026024004 +n40026024005 +n40026024006 +n40026024007 +n40026024008 +n40026024009 +n40026024010 +n40026024012 +n40026024011 +n40026024013 +n40026024014 +n40026024015 +n40026024016 +n40026024017 +n40026024018 +n40026024019 +n40026024020 +n40026024021 +n40026024022 +n40026024023 +n40026024024 +n40026024025 +n40026024026 +n40026024027 +n40026024028 +n40026024029 +n40026024030 +n40026024031 +n40026025002 +n40026025001 +n40026025003 +n40026025004 +n40026025005 +n40026025006 +n40026025007 +n40026025008 +n40026025009 +n40026025010 +n40026025011 +n40026025012 +n40026025013 +n40026025014 +n40026025015 +n40026026002 +n40026026001 +n40026026003 +n40026026005 +n40026026006 +n40026026004 +n40026026007 +n40026026008 +n40026026009 +n40026026010 +n40026026011 +n40026026012 +n40026026013 +n40026026014 +n40026026015 +n40026026016 +n40026026017 +n40026026018 +n40026026019 +n40026026020 +n40026026021 +n40026026022 +n40026027001 +n40026027002 +n40026027003 +n40026027004 +n40026027005 +n40026027006 +n40026027007 +n40026027008 +n40026027009 +n40026027010 +n40026027011 +n40026027012 +n40026028002 +n40026028001 +n40026028003 +n40026028004 +n40026028005 +n40026028006 +n40026028007 +n40026028008 +n40026028009 +n40026028010 +n40026028011 +n40026028012 +n40026028013 +n40026028014 +n40026028015 +n40026029002 +n40026029001 +n40026029003 +n40026029004 +n40026029005 +n40026029006 +n40026029007 +n40026029008 +n40026029009 +n40026029010 +n40026029011 +n40026029012 +n40026029013 +n40026029014 +n40026029015 +n40026029016 +n40026029017 +n40026029018 +n40026029019 +n40026029020 +n40026029021 +n40026029022 +n40026029023 +n40026029024 +n40026029025 +n40026029026 +n40026029027 +n40026029028 +n40026029029 +n40026029030 +n40026030001 +n40026030002 +n40026030003 +n40026030004 +n40026030005 +n40026030006 +n40026030007 +n40026030008 +n40026031001 +n40026031002 +n40026031003 +n40026031004 +n40026031005 +n40026031006 +n40026031007 +n40026031008 +n40026031009 +n40026031010 +n40026031011 +n40026031012 +n40026031013 +n40026031014 +n40026031016 +n40026031015 +n40026031017 +n40026031018 +n40026031019 +n40026031020 +n40026031021 +n40026031022 +n40026031023 +n40026031024 +n40026031025 +n40026032002 +n40026032001 +n40026032003 +n40026032004 +n40026032005 +n40026032006 +n40026032007 +n40026032008 +n40026032009 +n40026032010 +n40026033002 +n40026033001 +n40026033003 +n40026033004 +n40026033005 +n40026033006 +n40026033007 +n40026033008 +n40026033009 +n40026033010 +n40026033011 +n40026033012 +n40026033013 +n40026033014 +n40026034001 +n40026034002 +n40026034003 +n40026034004 +n40026034005 +n40026034006 +n40026034007 +n40026034008 +n40026034009 +n40026034010 +n40026034011 +n40026034012 +n40026034013 +n40026034014 +n40026034015 +n40026034016 +n40026034017 +n40026034018 +n40026035001 +n40026035002 +n40026035003 +n40026035004 +n40026035005 +n40026035006 +n40026035007 +n40026035008 +n40026035009 +n40026035010 +n40026035011 +n40026035012 +n40026035013 +n40026035014 +n40026035015 +n40026035016 +n40026035017 +n40026035018 +n40026035019 +n40026035020 +n40026036001 +n40026036002 +n40026036003 +n40026036004 +n40026036005 +n40026036006 +n40026036007 +n40026036008 +n40026036009 +n40026036010 +n40026036011 +n40026036012 +n40026036013 +n40026036014 +n40026036015 +n40026036016 +n40026036017 +n40026036018 +n40026036019 +n40026036020 +n40026036021 +n40026037001 +n40026037002 +n40026037003 +n40026037004 +n40026037005 +n40026037006 +n40026037007 +n40026037008 +n40026037009 +n40026037010 +n40026037011 +n40026037012 +n40026037013 +n40026038001 +n40026038002 +n40026038003 +n40026038004 +n40026038005 +n40026038006 +n40026038007 +n40026038008 +n40026038009 +n40026038010 +n40026038011 +n40026038012 +n40026038013 +n40026038014 +n40026038015 +n40026038016 +n40026039001 +n40026039002 +n40026039003 +n40026039004 +n40026039005 +n40026039006 +n40026039007 +n40026039008 +n40026039009 +n40026039010 +n40026039011 +n40026039012 +n40026039013 +n40026039014 +n40026039015 +n40026039016 +n40026039017 +n40026039018 +n40026039019 +n40026039020 +n40026039021 +n40026039022 +n40026039023 +n40026039024 +n40026039025 +n40026039026 +n40026039027 +n40026039028 +n40026039029 +n40026040001 +n40026040002 +n40026040003 +n40026040004 +n40026040005 +n40026040006 +n40026040007 +n40026040008 +n40026040009 +n40026040010 +n40026040011 +n40026040012 +n40026040013 +n40026040014 +n40026040015 +n40026040016 +n40026040017 +n40026040018 +n40026040019 +n40026040020 +n40026040021 +n40026041001 +n40026041002 +n40026041003 +n40026041004 +n40026041005 +n40026041006 +n40026041007 +n40026041008 +n40026041010 +n40026041009 +n40026041011 +n40026041012 +n40026041014 +n40026041013 +n40026041015 +n40026041016 +n40026042001 +n40026042002 +n40026042003 +n40026042004 +n40026042005 +n40026042006 +n40026042007 +n40026042008 +n40026042009 +n40026042010 +n40026042011 +n40026042012 +n40026042013 +n40026042014 +n40026042015 +n40026042016 +n40026042017 +n40026042018 +n40026042019 +n40026042020 +n40026042021 +n40026043001 +n40026043002 +n40026043003 +n40026043004 +n40026043005 +n40026043006 +n40026043008 +n40026043007 +n40026043012 +n40026043009 +n40026043010 +n40026043011 +n40026044001 +n40026044002 +n40026044003 +n40026044004 +n40026044005 +n40026044006 +n40026044007 +n40026044008 +n40026044009 +n40026044010 +n40026044011 +n40026044012 +n40026044013 +n40026045001 +n40026045002 +n40026045003 +n40026045004 +n40026045005 +n40026045006 +n40026045007 +n40026045008 +n40026045009 +n40026045010 +n40026045011 +n40026045012 +n40026045013 +n40026045014 +n40026045015 +n40026045016 +n40026045017 +n40026045018 +n40026045019 +n40026045020 +n40026045021 +n40026045022 +n40026045023 +n40026045024 +n40026045025 +n40026046001 +n40026046002 +n40026046003 +n40026046004 +n40026046005 +n40026046006 +n40026046007 +n40026047001 +n40026047002 +n40026047003 +n40026047004 +n40026047005 +n40026047006 +n40026047007 +n40026047008 +n40026047009 +n40026047010 +n40026047011 +n40026047012 +n40026047013 +n40026047014 +n40026047015 +n40026047016 +n40026047017 +n40026047018 +n40026047019 +n40026047020 +n40026047021 +n40026047022 +n40026047023 +n40026047024 +n40026047025 +n40026047026 +n40026048002 +n40026048001 +n40026048003 +n40026048004 +n40026048005 +n40026048006 +n40026048007 +n40026048008 +n40026048010 +n40026048009 +n40026048011 +n40026048012 +n40026048013 +n40026048014 +n40026048015 +n40026049001 +n40026049002 +n40026049003 +n40026049004 +n40026049005 +n40026049006 +n40026049007 +n40026049008 +n40026049009 +n40026049010 +n40026049011 +n40026050002 +n40026050001 +n40026050003 +n40026050004 +n40026050005 +n40026050006 +n40026050007 +n40026050008 +n40026050009 +n40026050010 +n40026050011 +n40026050012 +n40026050013 +n40026050014 +n40026050015 +n40026050016 +n40026050017 +n40026050018 +n40026050019 +n40026050020 +n40026051001 +n40026051002 +n40026051003 +n40026051004 +n40026051005 +n40026051006 +n40026051007 +n40026051008 +n40026051009 +n40026051010 +n40026051011 +n40026051012 +n40026051013 +n40026051014 +n40026051015 +n40026051016 +n40026051017 +n40026051018 +n40026051019 +n40026051020 +n40026051021 +n40026051022 +n40026051023 +n40026052001 +n40026052002 +n40026052003 +n40026052004 +n40026052005 +n40026052006 +n40026052007 +n40026052008 +n40026052009 +n40026052010 +n40026052011 +n40026052012 +n40026052013 +n40026052015 +n40026052014 +n40026052016 +n40026052017 +n40026052018 +n40026052019 +n40026052020 +n40026052021 +n40026053001 +n40026053002 +n40026053003 +n40026053004 +n40026053005 +n40026053006 +n40026053007 +n40026053008 +n40026053009 +n40026053010 +n40026053011 +n40026053012 +n40026053013 +n40026053014 +n40026053015 +n40026053016 +n40026053017 +n40026054002 +n40026054001 +n40026054003 +n40026054004 +n40026054005 +n40026054006 +n40026054007 +n40026054008 +n40026054009 +n40026055001 +n40026055002 +n40026055003 +n40026055004 +n40026055005 +n40026055006 +n40026055007 +n40026055008 +n40026055009 +n40026055010 +n40026055011 +n40026055012 +n40026055013 +n40026055014 +n40026055015 +n40026055016 +n40026055017 +n40026055018 +n40026055019 +n40026055020 +n40026055021 +n40026055022 +n40026055023 +n40026055024 +n40026055025 +n40026055026 +n40026055027 +n40026055028 +n40026055029 +n40026055030 +n40026056002 +n40026056001 +n40026056003 +n40026056004 +n40026056005 +n40026056006 +n40026056007 +n40026056008 +n40026056009 +n40026056010 +n40026056011 +n40026056012 +n40026056013 +n40026056014 +n40026056015 +n40026056016 +n40026056017 +n40026057002 +n40026057001 +n40026057003 +n40026057004 +n40026057005 +n40026057006 +n40026057007 +n40026057008 +n40026057009 +n40026057010 +n40026057011 +n40026057012 +n40026057013 +n40026057014 +n40026057015 +n40026057016 +n40026057017 +n40026058002 +n40026058001 +n40026058003 +n40026058004 +n40026058005 +n40026058006 +n40026058007 +n40026058008 +n40026058009 +n40026058010 +n40026058011 +n40026058012 +n40026058013 +n40026058014 +n40026058015 +n40026058016 +n40026058017 +n40026058018 +n40026058019 +n40026058020 +n40026058021 +n40026058022 +n40026059002 +n40026059001 +n40026059003 +n40026059004 +n40026059005 +n40026059006 +n40026059007 +n40026059008 +n40026059009 +n40026059010 +n40026059011 +n40026059012 +n40026059013 +n40026059014 +n40026059015 +n40026060001 +n40026060002 +n40026060003 +n40026060004 +n40026060006 +n40026060005 +n40026060008 +n40026060007 +n40026060009 +n40026060010 +n40026061001 +n40026061002 +n40026061003 +n40026061004 +n40026061005 +n40026061006 +n40026061007 +n40026061008 +n40026061009 +n40026061010 +n40026061011 +n40026061012 +n40026061013 +n40026061014 +n40026062001 +n40026062002 +n40026062003 +n40026062004 +n40026062005 +n40026062006 +n40026062007 +n40026062008 +n40026062009 +n40026062010 +n40026062011 +n40026062012 +n40026063002 +n40026063001 +n40026063003 +n40026063004 +n40026063005 +n40026063006 +n40026063007 +n40026063008 +n40026063009 +n40026063010 +n40026063011 +n40026063012 +n40026063013 +n40026063014 +n40026063015 +n40026063016 +n40026063017 +n40026063018 +n40026063019 +n40026063020 +n40026063021 +n40026063022 +n40026063023 +n40026063024 +n40026063025 +n40026063026 +n40026063027 +n40026063028 +n40026064001 +n40026064002 +n40026064003 +n40026064004 +n40026064005 +n40026064006 +n40026064007 +n40026064008 +n40026064009 +n40026064010 +n40026064011 +n40026064012 +n40026064013 +n40026064014 +n40026064015 +n40026064016 +n40026064017 +n40026064018 +n40026064019 +n40026064020 +n40026064021 +n40026064022 +n40026064023 +n40026064024 +n40026064025 +n40026064026 +n40026064027 +n40026064028 +n40026065001 +n40026065002 +n40026065003 +n40026065004 +n40026065005 +n40026065006 +n40026065007 +n40026065008 +n40026065009 +n40026065010 +n40026065011 +n40026065012 +n40026065014 +n40026065013 +n40026065015 +n40026065016 +n40026065017 +n40026065018 +n40026065019 +n40026066001 +n40026066002 +n40026066003 +n40026066005 +n40026066004 +n40026066006 +n40026066007 +n40026066008 +n40026066009 +n40026066010 +n40026067001 +n40026067002 +n40026067003 +n40026067004 +n40026067005 +n40026067006 +n40026067007 +n40026067008 +n40026067009 +n40026067011 +n40026067010 +n40026067012 +n40026068001 +n40026068002 +n40026068003 +n40026068004 +n40026068005 +n40026068006 +n40026068007 +n40026068008 +n40026068009 +n40026069002 +n40026069001 +n40026069003 +n40026069004 +n40026069005 +n40026069006 +n40026069007 +n40026069008 +n40026069009 +n40026069010 +n40026069011 +n40026069012 +n40026069013 +n40026069014 +n40026069015 +n40026069016 +n40026069017 +n40026069018 +n40026069019 +n40026069020 +n40026069021 +n40026070002 +n40026070001 +n40026070003 +n40026070004 +n40026070005 +n40026070006 +n40026070007 +n40026070008 +n40026070009 +n40026070010 +n40026071002 +n40026071001 +n40026071003 +n40026071004 +n40026071005 +n40026071006 +n40026071007 +n40026071008 +n40026071009 +n40026071010 +n40026071011 +n40026071012 +n40026071013 +n40026071014 +n40026071015 +n40026071016 +n40026071017 +n40026071018 +n40026072001 +n40026072002 +n40026072003 +n40026072004 +n40026072005 +n40026072006 +n40026072007 +n40026072008 +n40026072009 +n40026072010 +n40026073003 +n40026073001 +n40026073002 +n40026073004 +n40026073005 +n40026073006 +n40026073007 +n40026073008 +n40026073009 +n40026073010 +n40026073011 +n40026073012 +n40026073013 +n40026073014 +n40026073015 +n40026073017 +n40026073016 +n40026073018 +n40026073019 +n40026073020 +n40026073021 +n40026073022 +n40026073023 +n40026074001 +n40026074002 +n40026074003 +n40026074004 +n40026074005 +n40026074006 +n40026074007 +n40026074008 +n40026074009 +n40026074010 +n40026074011 +n40026074012 +n40026074013 +n40026074014 +n40026075001 +n40026075002 +n40026075003 +n40026075004 +n40026075005 +n40026075006 +n40026075007 +n40026075008 +n40026075009 +n40026075010 +n40026075011 +n40026075012 +n40026075013 +n40026075014 +n40026075015 +n40026075016 +n40026075017 +n40026075018 +n40026075019 +n40026075020 +n40027001002 +n40027001001 +n40027001003 +n40027001004 +n40027001005 +n40027001006 +n40027001007 +n40027001008 +n40027001009 +n40027001010 +n40027001011 +n40027001012 +n40027001013 +n40027001014 +n40027001015 +n40027001016 +n40027001017 +n40027001018 +n40027001019 +n40027002001 +n40027002002 +n40027002003 +n40027002004 +n40027002005 +n40027002006 +n40027002007 +n40027002008 +n40027002009 +n40027003001 +n40027003003 +n40027003004 +n40027003005 +n40027003006 +n40027003002 +n40027003007 +n40027003008 +n40027003009 +n40027003010 +n40027003011 +n40027003012 +n40027003013 +n40027003014 +n40027003015 +n40027003016 +n40027003017 +n40027004001 +n40027004002 +n40027004003 +n40027004004 +n40027004005 +n40027004007 +n40027004006 +n40027004008 +n40027004009 +n40027004010 +n40027004011 +n40027004012 +n40027004013 +n40027005001 +n40027005002 +n40027005003 +n40027005004 +n40027005005 +n40027005006 +n40027005007 +n40027005008 +n40027005009 +n40027005010 +n40027005011 +n40027006002 +n40027006001 +n40027006003 +n40027006004 +n40027006005 +n40027006006 +n40027006007 +n40027006008 +n40027006009 +n40027006010 +n40027006011 +n40027006012 +n40027006013 +n40027006014 +n40027006015 +n40027006016 +n40027006017 +n40027006018 +n40027007002 +n40027007001 +n40027007003 +n40027007004 +n40027007005 +n40027007006 +n40027007007 +n40027007008 +n40027007009 +n40027007010 +n40027007011 +n40027007012 +n40027007013 +n40027007014 +n40027008001 +n40027008002 +n40027008003 +n40027008004 +n40027008005 +n40027008006 +n40027008007 +n40027008008 +n40027008009 +n40027008010 +n40027009001 +n40027009002 +n40027009003 +n40027009004 +n40027009005 +n40027009006 +n40027009007 +n40027009008 +n40027009009 +n40027009010 +n40027009011 +n40027009012 +n40027009013 +n40027009014 +n40027009015 +n40027009016 +n40027009017 +n40027009018 +n40027009019 +n40027009020 +n40027009021 +n40027009022 +n40027009023 +n40027010001 +n40027010002 +n40027010003 +n40027010004 +n40027010005 +n40027010006 +n40027010007 +n40027010008 +n40027010009 +n40027010010 +n40027010011 +n40027010012 +n40027011002 +n40027011001 +n40027011003 +n40027011004 +n40027011005 +n40027011006 +n40027011007 +n40027011008 +n40027011009 +n40027011010 +n40027011011 +n40027011012 +n40027011013 +n40027011014 +n40027011015 +n40027011016 +n40027011017 +n40027011018 +n40027011019 +n40027011021 +n40027011020 +n40027011022 +n40027011023 +n40027011024 +n40027011025 +n40027012001 +n40027012002 +n40027012003 +n40027012004 +n40027012005 +n40027012006 +n40027012007 +n40027012008 +n40027012009 +n40027012010 +n40027012011 +n40027012012 +n40027013001 +n40027013002 +n40027013003 +n40027013004 +n40027013005 +n40027013006 +n40027013007 +n40027013008 +n40027013009 +n40027013010 +n40027014001 +n40027014002 +n40027014003 +n40027014004 +n40027014005 +n40027014006 +n40027014007 +n40027014008 +n40027014009 +n40027014010 +n40027014011 +n40027014012 +n40027014013 +n40027015002 +n40027015001 +n40027015003 +n40027015004 +n40027015005 +n40027015006 +n40027015007 +n40027015009 +n40027015010 +n40027015008 +n40027015011 +n40027015012 +n40027015013 +n40027016002 +n40027016001 +n40027016003 +n40027016004 +n40027016005 +n40027016006 +n40027016007 +n40027017002 +n40027017001 +n40027017003 +n40027017004 +n40027017005 +n40027017006 +n40027017007 +n40027017009 +n40027017008 +n40027017010 +n40027017011 +n40027017012 +n40027017013 +n40027017014 +n40027017015 +n40027017016 +n40027017017 +n40027018002 +n40027018001 +n40027018003 +n40027018004 +n40027018005 +n40027018006 +n40027018007 +n40027019002 +n40027019001 +n40027019003 +n40027019004 +n40027019005 +n40027019006 +n40027019007 +n40027019008 +n40027019009 +n40027019010 +n40027019011 +n40027019012 +n40027019013 +n40027019014 +n40027019015 +n40027019016 +n40027019017 +n40027019018 +n40027019019 +n40027019021 +n40027019020 +n40027019022 +n40027019023 +n40027019024 +n40027019025 +n40027019026 +n40027019027 +n40027020002 +n40027020001 +n40027020003 +n40027020004 +n40027020005 +n40027020006 +n40027020007 +n40027020008 +n40027020009 +n40027020010 +n40027020011 +n40027020012 +n40027020013 +n40027020015 +n40027020014 +n40027020016 +n40027020017 +n40027021002 +n40027021001 +n40027021003 +n40027021004 +n40027021005 +n40027021006 +n40027021008 +n40027021007 +n40027021009 +n40027021010 +n40027021011 +n40027021012 +n40027021013 +n40027021015 +n40027021014 +n40027021016 +n40027021017 +n40027021018 +n40027022001 +n40027022002 +n40027022003 +n40027022004 +n40027022006 +n40027022005 +n40027022007 +n40027022008 +n40027022009 +n40027022010 +n40027022011 +n40027022012 +n40027022013 +n40027022014 +n40027023002 +n40027023001 +n40027023003 +n40027023005 +n40027023004 +n40027023006 +n40027023007 +n40027023009 +n40027023008 +n40027023010 +n40027023011 +n40027023012 +n40027023013 +n40027024002 +n40027024003 +n40027024004 +n40027024001 +n40027024005 +n40027024006 +n40027024007 +n40027024008 +n40027024009 +n40027024010 +n40027024011 +n40027024012 +n40027024013 +n40027024014 +n40027024015 +n40027024016 +n40027024017 +n40027024018 +n40027024019 +n40027024020 +n40027024021 +n40027024022 +n40027024023 +n40027024024 +n40027024025 +n40027024026 +n40027024027 +n40027024028 +n40027025001 +n40027025002 +n40027025003 +n40027025004 +n40027025005 +n40027025006 +n40027025007 +n40027025008 +n40027025009 +n40027025010 +n40027025011 +n40027025012 +n40027025013 +n40027025014 +n40027025015 +n40027025016 +n40027026001 +n40027026002 +n40027026003 +n40027026004 +n40027026005 +n40027026007 +n40027026006 +n40027026008 +n40027026009 +n40027026010 +n40027026011 +n40027026012 +n40027027001 +n40027027002 +n40027027003 +n40027027004 +n40027027005 +n40027027006 +n40027027007 +n40027027008 +n40027027009 +n40027027010 +n40027027011 +n40027027012 +n40027027013 +n40027027014 +n40027027015 +n40027027016 +n40027027017 +n40027028001 +n40027028002 +n40027028003 +n40027028004 +n40027028005 +n40027028006 +n40027028007 +n40027029001 +n40027029002 +n40027029003 +n40027029004 +n40027029005 +n40027029006 +n40027029007 +n40027029008 +n40027029009 +n40027029010 +n40027029011 +n40027029012 +n40027029013 +n40027029014 +n40027029015 +n40027029016 +n40027029017 +n40027029018 +n40027029019 +n40027029020 +n40027029021 +n40027029022 +n40027029023 +n40027029024 +n40027029025 +n40027029026 +n40027029027 +n40027030001 +n40027030002 +n40027030003 +n40027030004 +n40027030005 +n40027030006 +n40027030007 +n40027030008 +n40027030009 +n40027030010 +n40027030011 +n40027030012 +n40027030013 +n40027031001 +n40027031002 +n40027031003 +n40027031004 +n40027031005 +n40027031006 +n40027031007 +n40027031008 +n40027031009 +n40027031010 +n40027031011 +n40027031012 +n40027031013 +n40027031014 +n40027031015 +n40027031016 +n40027031017 +n40027031018 +n40027031019 +n40027031020 +n40027032002 +n40027032001 +n40027032003 +n40027032004 +n40027032005 +n40027032006 +n40027032007 +n40027032008 +n40027032009 +n40027032010 +n40027032011 +n40027032012 +n40027032013 +n40027032014 +n40027033001 +n40027033002 +n40027033003 +n40027033004 +n40027033005 +n40027033006 +n40027033007 +n40027033008 +n40027033011 +n40027033009 +n40027033010 +n40027034001 +n40027034002 +n40027034003 +n40027034004 +n40027034005 +n40027034006 +n40027034007 +n40027034008 +n40027034009 +n40027034010 +n40027034011 +n40027034012 +n40027035002 +n40027035001 +n40027035003 +n40027035004 +n40027035005 +n40027035006 +n40027035007 +n40027035008 +n40027035009 +n40027036001 +n40027036002 +n40027036003 +n40027036004 +n40027036005 +n40027037001 +n40027037002 +n40027037003 +n40027037004 +n40027037005 +n40027037006 +n40027037007 +n40027037008 +n40027037009 +n40027037010 +n40027037011 +n40027037012 +n40027037013 +n40027037014 +n40027037015 +n40027037016 +n40027037017 +n40027038001 +n40027038002 +n40027038003 +n40027038004 +n40027038005 +n40027038006 +n40027038007 +n40027038008 +n40027038009 +n40027038010 +n40027038011 +n40027038012 +n40027038013 +n40027039002 +n40027039001 +n40027039003 +n40027039004 +n40027039005 +n40027039006 +n40027039007 +n40027039008 +n40027039009 +n40027040001 +n40027040002 +n40027040003 +n40027040004 +n40027040005 +n40027040006 +n40027040007 +n40027040008 +n40027040009 +n40027040010 +n40027040011 +n40027040012 +n40027040013 +n40027040014 +n40027040016 +n40027040015 +n40027040017 +n40027040018 +n40027040019 +n40027040020 +n40027040021 +n40027040022 +n40027040023 +n40027041001 +n40027041002 +n40027041003 +n40027041004 +n40027041005 +n40027041006 +n40027041007 +n40027041008 +n40027041009 +n40027041010 +n40027042001 +n40027042002 +n40027042003 +n40027042006 +n40027042004 +n40027042005 +n40027042007 +n40027042008 +n40027042009 +n40027042010 +n40027042011 +n40027042012 +n40027042013 +n40027042014 +n40027042015 +n40027042016 +n40027042017 +n40027042018 +n40027043001 +n40027043002 +n40027043003 +n40027043004 +n40027043005 +n40027043006 +n40027043007 +n40027043008 +n40027043009 +n40027043011 +n40027043010 +n40027043012 +n40027043013 +n40027043015 +n40027043014 +n40027044002 +n40027044001 +n40027044003 +n40027044004 +n40027044005 +n40027044006 +n40027044007 +n40027044008 +n40027044009 +n40027044010 +n40027044011 +n40027044012 +n40027045002 +n40027045001 +n40027045003 +n40027045004 +n40027045005 +n40027045006 +n40027045007 +n40027045008 +n40027045009 +n40027045010 +n40027045011 +n40027045012 +n40027045013 +n40027046002 +n40027046001 +n40027046003 +n40027046004 +n40027046005 +n40027046006 +n40027046007 +n40027046008 +n40027046009 +n40027046010 +n40027046011 +n40027046012 +n40027046013 +n40027046014 +n40027046015 +n40027046016 +n40027046017 +n40027046018 +n40027046019 +n40027046020 +n40027046021 +n40027046022 +n40027046023 +n40027046024 +n40027046025 +n40027047002 +n40027047001 +n40027047003 +n40027047004 +n40027047005 +n40027047006 +n40027047007 +n40027047008 +n40027047009 +n40027047010 +n40027047011 +n40027048001 +n40027048002 +n40027048004 +n40027048005 +n40027048006 +n40027048003 +n40027048007 +n40027048008 +n40027048009 +n40027048011 +n40027048010 +n40027048012 +n40027048013 +n40027048014 +n40027048015 +n40027048016 +n40027048017 +n40027049002 +n40027049001 +n40027049003 +n40027049004 +n40027049005 +n40027049006 +n40027049007 +n40027049008 +n40027049009 +n40027049010 +n40027049011 +n40027050002 +n40027050001 +n40027050003 +n40027050004 +n40027050005 +n40027050006 +n40027050007 +n40027050008 +n40027050009 +n40027050010 +n40027051001 +n40027051002 +n40027051003 +n40027051004 +n40027051005 +n40027051006 +n40027051007 +n40027051008 +n40027051009 +n40027051010 +n40027051011 +n40027051012 +n40027051013 +n40027051014 +n40027051015 +n40027051016 +n40027051017 +n40027051018 +n40027051019 +n40027051020 +n40027051021 +n40027052001 +n40027052002 +n40027052003 +n40027052004 +n40027052005 +n40027052006 +n40027052007 +n40027052008 +n40027052009 +n40027052010 +n40027052011 +n40027053001 +n40027053002 +n40027053003 +n40027053004 +n40027053005 +n40027053006 +n40027053007 +n40027053008 +n40027053009 +n40027053010 +n40027053011 +n40027053012 +n40027053013 +n40027053014 +n40027053015 +n40027053016 +n40027053017 +n40027054002 +n40027054001 +n40027054003 +n40027054004 +n40027054005 +n40027054006 +n40027054007 +n40027054008 +n40027054009 +n40027054010 +n40027054011 +n40027054012 +n40027054013 +n40027054014 +n40027054015 +n40027054016 +n40027054017 +n40027054018 +n40027054019 +n40027054020 +n40027054021 +n40027054022 +n40027054023 +n40027054024 +n40027055002 +n40027055001 +n40027055003 +n40027055004 +n40027055005 +n40027055006 +n40027055007 +n40027055008 +n40027055009 +n40027055010 +n40027055011 +n40027055012 +n40027055013 +n40027055014 +n40027055015 +n40027055016 +n40027055017 +n40027056001 +n40027056002 +n40027056003 +n40027056004 +n40027056005 +n40027056006 +n40027056007 +n40027056008 +n40027056009 +n40027056010 +n40027056011 +n40027056012 +n40027056013 +n40027056014 +n40027056015 +n40027056016 +n40027056017 +n40027056018 +n40027056019 +n40027056020 +n40027057002 +n40027057001 +n40027057003 +n40027057004 +n40027057005 +n40027057006 +n40027057007 +n40027057008 +n40027057009 +n40027057010 +n40027057011 +n40027057012 +n40027057013 +n40027057014 +n40027057015 +n40027057016 +n40027058001 +n40027058002 +n40027058003 +n40027058004 +n40027058005 +n40027058006 +n40027058007 +n40027058008 +n40027058009 +n40027058010 +n40027058011 +n40027058012 +n40027058013 +n40027058014 +n40027059001 +n40027059002 +n40027059003 +n40027059004 +n40027059005 +n40027059006 +n40027059007 +n40027059008 +n40027059009 +n40027059010 +n40027059011 +n40027060001 +n40027060002 +n40027060003 +n40027060004 +n40027060005 +n40027060006 +n40027060007 +n40027060008 +n40027060009 +n40027060010 +n40027060011 +n40027060012 +n40027060013 +n40027060014 +n40027060015 +n40027060016 +n40027060017 +n40027060018 +n40027060019 +n40027060020 +n40027060021 +n40027060022 +n40027061002 +n40027061003 +n40027061004 +n40027061005 +n40027061006 +n40027061007 +n40027061008 +n40027061009 +n40027061010 +n40027061001 +n40027061011 +n40027061012 +n40027061013 +n40027061014 +n40027062002 +n40027062001 +n40027062003 +n40027062004 +n40027062005 +n40027062006 +n40027062007 +n40027062008 +n40027062009 +n40027062010 +n40027062011 +n40027062012 +n40027062013 +n40027062014 +n40027062015 +n40027062016 +n40027063001 +n40027063002 +n40027063003 +n40027063004 +n40027063005 +n40027063006 +n40027063007 +n40027063008 +n40027063009 +n40027063010 +n40027063011 +n40027063012 +n40027063013 +n40027063014 +n40027064002 +n40027064001 +n40027064003 +n40027064004 +n40027064005 +n40027064006 +n40027064007 +n40027064008 +n40027064009 +n40027064010 +n40027064011 +n40027064012 +n40027064013 +n40027064014 +n40027064015 +n40027064016 +n40027064017 +n40027064018 +n40027064019 +n40027064020 +n40027064021 +n40027064022 +n40027064023 +n40027064024 +n40027064025 +n40027064026 +n40027064027 +n40027064028 +n40027064029 +n40027064030 +n40027064031 +n40027064032 +n40027065001 +n40027065002 +n40027065003 +n40027065004 +n40027065005 +n40027065006 +n40027065007 +n40027065008 +n40027065009 +n40027065010 +n40027066002 +n40027066001 +n40027066003 +n40027066004 +n40027066005 +n40027066006 +n40027066007 +n40027066008 +n40027066009 +n40027066010 +n40027066011 +n40027066012 +n40028001002 +n40028001001 +n40028001003 +n40028001004 +n40028001005 +n40028001006 +n40028001007 +n40028001008 +n40028001009 +n40028001010 +n40028001011 +n40028001012 +n40028001013 +n40028001014 +n40028001015 +n40028001016 +n40028001017 +n40028001018 +n40028001019 +n40028002001 +n40028002002 +n40028002003 +n40028002005 +n40028002004 +n40028002007 +n40028002006 +n40028002008 +n40028002009 +n40028002010 +n40028002011 +n40028002012 +n40028002013 +n40028002014 +n40028002015 +n40028002016 +n40028002017 +n40028002018 +n40028002019 +n40028002020 +n40028003002 +n40028003001 +n40028003003 +n40028003004 +n40028003005 +n40028003006 +n40028003007 +n40028003008 +n40028003009 +n40028003010 +n40028003011 +n40028003012 +n40028003013 +n40028003014 +n40028004002 +n40028004001 +n40028004003 +n40028004004 +n40028004005 +n40028004006 +n40028004007 +n40028004008 +n40028004009 +n40028004010 +n40028004011 +n40028004012 +n40028005002 +n40028005001 +n40028005003 +n40028005004 +n40028005005 +n40028005006 +n40028005007 +n40028005008 +n40028005009 +n40028005010 +n40028005012 +n40028005011 +n40028005013 +n40028005014 +n40028005015 +n40028005016 +n40028005017 +n40028006001 +n40028006002 +n40028006003 +n40028006005 +n40028006004 +n40028006006 +n40028006007 +n40028006008 +n40028006009 +n40028006010 +n40028006011 +n40028006012 +n40028006013 +n40028007001 +n40028007002 +n40028007003 +n40028007004 +n40028007005 +n40028007006 +n40028007007 +n40028007008 +n40028007009 +n40028007010 +n40028007011 +n40028007012 +n40028007013 +n40028007014 +n40028007015 +n40028007016 +n40028007017 +n40028007018 +n40028007019 +n40028007020 +n40028007021 +n40028007022 +n40028007023 +n40028007024 +n40028007025 +n40028008001 +n40028008002 +n40028008003 +n40028008004 +n40028008005 +n40028008006 +n40028008007 +n40028008008 +n40028008009 +n40028008010 +n40028008011 +n40028008012 +n40028008013 +n40028008014 +n40028008015 +n40028008016 +n40028009001 +n40028009002 +n40028009003 +n40028009004 +n40028009005 +n40028009006 +n40028009007 +n40028009009 +n40028009008 +n40028009010 +n40028009011 +n40028009012 +n40028009013 +n40028009014 +n40028009015 +n40028009016 +n40028009017 +n40028010001 +n40028010002 +n40028010003 +n40028010004 +n40028010005 +n40028010006 +n40028010007 +n40028010008 +n40028010009 +n40028010010 +n40028010011 +n40028010012 +n40028010013 +n40028010014 +n40028010015 +n40028010016 +n40028010017 +n40028010018 +n40028010019 +n40028010020 +n40028011002 +n40028011001 +n40028011003 +n40028011004 +n40028011005 +n40028011006 +n40028011007 +n40028011008 +n40028011009 +n40028011010 +n40028011011 +n40028011012 +n40028011013 +n40028011014 +n40028011015 +n40028011016 +n40028011017 +n40028012001 +n40028012002 +n40028012003 +n40028012004 +n40028012005 +n40028012007 +n40028012006 +n40028012008 +n40028012009 +n40028012010 +n40028012011 +n40028012012 +n40028012013 +n40028013001 +n40028013002 +n40028013003 +n40028013004 +n40028013005 +n40028013006 +n40028013007 +n40028013008 +n40028013009 +n40028013010 +n40028013011 +n40028013012 +n40028014001 +n40028014002 +n40028014003 +n40028014004 +n40028014005 +n40028014006 +n40028014007 +n40028014008 +n40028014009 +n40028014010 +n40028014011 +n40028014012 +n40028014013 +n40028015002 +n40028015001 +n40028015003 +n40028015004 +n40028015005 +n40028015006 +n40028015007 +n40028015008 +n40028015009 +n40028015010 +n40028015011 +n40028015012 +n40028015013 +n40028015014 +n40028015015 +n40028015016 +n40028015017 +n40028015018 +n40028016002 +n40028016001 +n40028016003 +n40028016004 +n40028016005 +n40028016006 +n40028016007 +n40028016008 +n40028016009 +n40028016010 +n40028016011 +n40028016012 +n40028016013 +n40028016014 +n40028016015 +n40028016016 +n40028017001 +n40028017002 +n40028017003 +n40028017004 +n40028017006 +n40028017005 +n40028017007 +n40028018001 +n40028018002 +n40028018003 +n40028018004 +n40028018005 +n40028018006 +n40028018007 +n40028018008 +n40028018009 +n40028018010 +n40028018011 +n40028018012 +n40028018013 +n40028018014 +n40028018015 +n40028018016 +n40028018017 +n40028019002 +n40028019001 +n40028019003 +n40028019004 +n40028019005 +n40028019006 +n40028019007 +n40028019008 +n40028019009 +n40028019010 +n40028019011 +n40028019012 +n40028019013 +n40028019014 +n40028019015 +n40028019016 +n40028019017 +n40028019018 +n40028019019 +n40028019020 +n40028020001 +n40028020002 +n40028020003 +n40028020004 +n40028020005 +n40028020006 +n40028020007 +n40028020008 +n40028020009 +n40028020010 +n40028020011 +n40028020012 +n40028020013 +n40028020014 +n40028020015 +n40028020016 +n40028020017 +n40028020018 +n40028020019 +n40028020020 +n40028020021 +n41001001001 +n41001001002 +n41001001003 +n41001001004 +n41001001005 +n41001001006 +n41001001007 +n41001002001 +n41001002002 +n41001002003 +n41001002004 +n41001002005 +n41001002006 +n41001002007 +n41001002008 +n41001002009 +n41001002010 +n41001002011 +n41001002012 +n41001002013 +n41001002014 +n41001002015 +n41001002016 +n41001002017 +n41001002018 +n41001002019 +n41001002020 +n41001003001 +n41001003002 +n41001003003 +n41001003004 +n41001003005 +n41001003006 +n41001003007 +n41001003008 +n41001003009 +n41001003010 +n41001003011 +n41001003012 +n41001003013 +n41001003014 +n41001004001 +n41001004002 +n41001004003 +n41001004004 +n41001004005 +n41001004006 +n41001004007 +n41001004008 +n41001004009 +n41001004010 +n41001004011 +n41001004012 +n41001004013 +n41001005001 +n41001005002 +n41001005003 +n41001005004 +n41001005005 +n41001005006 +n41001005007 +n41001005008 +n41001005009 +n41001005010 +n41001005011 +n41001005012 +n41001005013 +n41001005014 +n41001005015 +n41001005016 +n41001005017 +n41001005018 +n41001005019 +n41001005020 +n41001005021 +n41001005022 +n41001005023 +n41001005024 +n41001006001 +n41001006002 +n41001006003 +n41001006004 +n41001006005 +n41001006006 +n41001006007 +n41001006008 +n41001006009 +n41001006010 +n41001006011 +n41001006012 +n41001006013 +n41001006014 +n41001006015 +n41001006016 +n41001006017 +n41001006018 +n41001006019 +n41001006020 +n41001007001 +n41001007002 +n41001007003 +n41001007004 +n41001007005 +n41001007006 +n41001007007 +n41001007008 +n41001007009 +n41001007010 +n41001007011 +n41001007012 +n41001007013 +n41001007014 +n41001007015 +n41001007016 +n41001007017 +n41001007018 +n41001007019 +n41001007020 +n41001008001 +n41001008002 +n41001008003 +n41001008004 +n41001008006 +n41001008005 +n41001008007 +n41001008008 +n41001008009 +n41001008010 +n41001009001 +n41001009002 +n41001009003 +n41001009004 +n41001009005 +n41001009006 +n41001009007 +n41001009008 +n41001009009 +n41001009010 +n41001009011 +n41001009012 +n41001009013 +n41001009014 +n41001009015 +n41001009016 +n41001009017 +n41001009018 +n41001009019 +n41001010001 +n41001010002 +n41001010003 +n41001010004 +n41001010005 +n41001010006 +n41001010007 +n41001010008 +n41001010009 +n41001010010 +n41001010011 +n41001010012 +n41001010013 +n41001010014 +n41001010015 +n41001010016 +n41001010017 +n41001010018 +n41001011001 +n41001011002 +n41001011003 +n41001011004 +n41001011005 +n41001011006 +n41001011007 +n41001011008 +n41001011009 +n41001011010 +n41001011011 +n41001011012 +n41001011013 +n41001011014 +n41001011015 +n41001011016 +n41001012001 +n41001012002 +n41001012003 +n41001012004 +n41001012005 +n41001012006 +n41001012007 +n41001012008 +n41001012009 +n41001013001 +n41001013002 +n41001013003 +n41001013004 +n41001013005 +n41001013006 +n41001013007 +n41001013008 +n41001013009 +n41001013010 +n41001013011 +n41001013012 +n41001013013 +n41001013014 +n41001013015 +n41001013016 +n41001013017 +n41001013018 +n41001013019 +n41001013020 +n41001013021 +n41001014001 +n41001014002 +n41001014003 +n41001014004 +n41001014005 +n41001014006 +n41001014007 +n41001014008 +n41001014009 +n41001014010 +n41001014011 +n41001014012 +n41001014013 +n41001014014 +n41001014015 +n41001014016 +n41001014017 +n41001015001 +n41001015002 +n41001015003 +n41001015004 +n41001015005 +n41001015006 +n41001015007 +n41001015008 +n41001015009 +n41001015010 +n41001015011 +n41001015012 +n41001015013 +n41001015014 +n41001015015 +n41001015016 +n41001015017 +n41001015018 +n41001016001 +n41001016002 +n41001016003 +n41001016004 +n41001016005 +n41001016006 +n41001016007 +n41001016008 +n41001016009 +n41001016010 +n41001016011 +n41001016012 +n41001016013 +n41001016014 +n41001016015 +n41001016016 +n41001016017 +n41001016018 +n41001016020 +n41001016019 +n41001016021 +n41001017001 +n41001017002 +n41001017003 +n41001017004 +n41001017005 +n41001017006 +n41001017007 +n41001017008 +n41001017009 +n41001017010 +n41001017011 +n41001017012 +n41001017013 +n41001017014 +n41001018001 +n41001018002 +n41001018003 +n41001018004 +n41001018005 +n41001018006 +n41001018007 +n41001019001 +n41001019002 +n41001019003 +n41001019004 +n41001019005 +n41001019006 +n41001019007 +n41001019008 +n41001019009 +n41001019010 +n41001019011 +n41001019012 +n41001019013 +n41001019014 +n41001019015 +n41001019016 +n41001019017 +n41001019018 +n41001019019 +n41001019020 +n41001019021 +n41001020001 +n41001020002 +n41001020003 +n41001020004 +n41001020005 +n41001020006 +n41001020007 +n41001020008 +n41001020009 +n41001020010 +n41001020011 +n41001020012 +n41001020013 +n41001020014 +n41001020015 +n41001020016 +n41001020017 +n41001020018 +n41001020019 +n41001021001 +n41001021002 +n41001021003 +n41001021004 +n41001021005 +n41001021006 +n41001021007 +n41001021008 +n41001021009 +n41001021010 +n41001021011 +n41001021012 +n41001021013 +n41001022001 +n41001022002 +n41001022003 +n41001022004 +n41001022005 +n41001022006 +n41001022008 +n41001022007 +n41001022009 +n41001022010 +n41001022011 +n41001022012 +n41001022013 +n41001022014 +n41001022015 +n41001022016 +n41001022017 +n41001022018 +n41001023001 +n41001023002 +n41001023003 +n41001023004 +n41001023005 +n41001023006 +n41001023007 +n41001023008 +n41001023009 +n41001023010 +n41001023011 +n41001023012 +n41001023013 +n41001024001 +n41001024002 +n41001024003 +n41001024004 +n41001024005 +n41001024006 +n41001024007 +n41001024008 +n41001024009 +n41001024010 +n41001024011 +n41001024012 +n41001024013 +n41001024014 +n41001024015 +n41001024016 +n41001024017 +n41001024018 +n41001025001 +n41001025002 +n41001025003 +n41001025004 +n41001025005 +n41001025006 +n41001025007 +n41001025008 +n41001025009 +n41001025010 +n41001026001 +n41001026004 +n41001026005 +n41001026006 +n41001026007 +n41001026002 +n41001026003 +n41001026008 +n41001026009 +n41001026010 +n41001026011 +n41001026012 +n41001026013 +n41001026014 +n41001027001 +n41001027002 +n41001027003 +n41001027004 +n41001027005 +n41001027006 +n41001027007 +n41001027008 +n41001027009 +n41001027010 +n41001027011 +n41001027012 +n41001027013 +n41001027014 +n41001027015 +n41001027016 +n41001027017 +n41001027018 +n41001027019 +n41001027020 +n41001027021 +n41001027022 +n41001027023 +n41001028001 +n41001028002 +n41001028003 +n41001028004 +n41001028005 +n41001028006 +n41001028007 +n41001028008 +n41001028009 +n41001028010 +n41001028011 +n41001028012 +n41001028013 +n41001029001 +n41001029002 +n41001029003 +n41001029004 +n41001029005 +n41001029006 +n41001029007 +n41001029008 +n41001029009 +n41001029010 +n41001029011 +n41001029012 +n41001029013 +n41001029014 +n41001029015 +n41001029016 +n41001029017 +n41001030002 +n41001030001 +n41001030003 +n41001030004 +n41001030005 +n41001030006 +n41001030007 +n41001030008 +n41001030009 +n41001030010 +n41001030011 +n41001030012 +n41001031001 +n41001031002 +n41001031003 +n41001031004 +n41001031005 +n41001031006 +n41001031007 +n41001031008 +n41001031009 +n41001031010 +n41001031011 +n41001031012 +n41001031013 +n41001031014 +n41001031015 +n41001032002 +n41001032001 +n41001032003 +n41001032004 +n41001032005 +n41001032006 +n41001032007 +n41001032008 +n41001032009 +n41001032010 +n41001032011 +n41001032012 +n41001032013 +n41001032014 +n41001032015 +n41001032016 +n41001032017 +n41001033001 +n41001033002 +n41001033006 +n41001033003 +n41001033004 +n41001033005 +n41001033007 +n41001033008 +n41001033009 +n41001034001 +n41001034002 +n41001034003 +n41001034004 +n41001034005 +n41001034006 +n41001034007 +n41001034008 +n41001034009 +n41001034010 +n41001034011 +n41001034012 +n41001034013 +n41001034014 +n41001034015 +n41001034016 +n41001034017 +n41001034018 +n41001034019 +n41001034020 +n41001035001 +n41001035002 +n41001035003 +n41001035004 +n41001035005 +n41001035006 +n41001035007 +n41001035008 +n41001035009 +n41001035010 +n41001035011 +n41001035012 +n41001035013 +n41001036001 +n41001036002 +n41001036003 +n41001036004 +n41001036005 +n41001036006 +n41001036007 +n41001036008 +n41001037001 +n41001037002 +n41001037003 +n41001037004 +n41001037005 +n41001037006 +n41001037007 +n41001037008 +n41001037009 +n41001037010 +n41001038001 +n41001038002 +n41001038003 +n41001038004 +n41001038005 +n41001038006 +n41001038007 +n41001038008 +n41001038009 +n41001038010 +n41001038011 +n41001038012 +n41001038013 +n41001038016 +n41001038014 +n41001038015 +n41001038017 +n41001039001 +n41001039002 +n41001039003 +n41001039004 +n41001039005 +n41001039006 +n41001039007 +n41001039008 +n41001039009 +n41001039010 +n41001039011 +n41001039012 +n41001039013 +n41001039014 +n41001039015 +n41001040001 +n41001040002 +n41001040003 +n41001040004 +n41001040005 +n41001040006 +n41001040007 +n41001040008 +n41001040009 +n41001040010 +n41001040011 +n41001040012 +n41001040013 +n41001040014 +n41001040015 +n41001040016 +n41001040017 +n41001041001 +n41001041002 +n41001041003 +n41001041004 +n41001041005 +n41001041006 +n41001041007 +n41001041008 +n41001041009 +n41001041010 +n41001041011 +n41001041012 +n41001042001 +n41001042002 +n41001042003 +n41001042004 +n41001042005 +n41001042006 +n41001042007 +n41001042008 +n41001042009 +n41001043001 +n41001043002 +n41001043003 +n41001043004 +n41001043005 +n41001043006 +n41001044001 +n41001044002 +n41001044003 +n41001044004 +n41001044005 +n41001044006 +n41001044007 +n41001044008 +n41001044009 +n41001044010 +n41001044011 +n41001044012 +n41001044013 +n41001044014 +n41001044015 +n41001044016 +n41001044017 +n41001044018 +n41001044019 +n41001044020 +n41001044021 +n41001044022 +n41001044023 +n41001044024 +n41001044025 +n41001045002 +n41001045001 +n41001045003 +n41001045004 +n41001045005 +n41001045006 +n41001045007 +n41001045008 +n41001045009 +n41001045010 +n41001045011 +n41001045012 +n41001045013 +n41001045014 +n41001045015 +n41001045016 +n41001045017 +n41001045018 +n41001045019 +n41001045020 +n41001045021 +n41001045022 +n41001045023 +n41001045024 +n41001045025 +n41001045026 +n41001045027 +n41001045028 +n41001045029 +n41002001001 +n41002001002 +n41002001003 +n41002001004 +n41002001005 +n41002001006 +n41002001007 +n41002001008 +n41002001009 +n41002001010 +n41002001011 +n41002001012 +n41002002001 +n41002002002 +n41002002003 +n41002002004 +n41002002005 +n41002002006 +n41002002007 +n41002002008 +n41002002009 +n41002002010 +n41002002011 +n41002002012 +n41002002013 +n41002002014 +n41002002015 +n41002002016 +n41002003001 +n41002003002 +n41002003003 +n41002003004 +n41002003005 +n41002003006 +n41002003007 +n41002003008 +n41002003009 +n41002004001 +n41002004002 +n41002004003 +n41002004004 +n41002004005 +n41002004006 +n41002004007 +n41002004008 +n41002004009 +n41002004010 +n41002004011 +n41002004012 +n41002004013 +n41002004014 +n41002004015 +n41002004016 +n41002004017 +n41002004018 +n41002004019 +n41002004020 +n41002004021 +n41002004022 +n41002005001 +n41002005003 +n41002005004 +n41002005002 +n41002005005 +n41002005006 +n41002005007 +n41002005008 +n41002005009 +n41002005010 +n41002005011 +n41002005012 +n41002005013 +n41002005014 +n41002005015 +n41002006002 +n41002006001 +n41002006003 +n41002006004 +n41002006005 +n41002006006 +n41002006007 +n41002006008 +n41002006009 +n41002006010 +n41002006011 +n41002006012 +n41002006013 +n41002007001 +n41002007002 +n41002007003 +n41002007004 +n41002007005 +n41002007006 +n41002007007 +n41002007008 +n41002007009 +n41002007010 +n41002007011 +n41002007012 +n41002007013 +n41002007014 +n41002008001 +n41002008002 +n41002008004 +n41002008005 +n41002008003 +n41002008006 +n41002008007 +n41002008008 +n41002008009 +n41002008010 +n41002008011 +n41002008012 +n41002008013 +n41002008014 +n41002008015 +n41002008016 +n41002008017 +n41002008018 +n41002008019 +n41002008020 +n41002008021 +n41002008022 +n41002009001 +n41002009002 +n41002009003 +n41002009004 +n41002009005 +n41002009006 +n41002009007 +n41002009008 +n41002009009 +n41002009010 +n41002009011 +n41002009012 +n41002009013 +n41002009014 +n41002009015 +n41002009016 +n41002009017 +n41002009018 +n41002009019 +n41002009020 +n41002010002 +n41002010001 +n41002010003 +n41002010004 +n41002010005 +n41002010006 +n41002010007 +n41002010008 +n41002010009 +n41002010010 +n41002010011 +n41002010012 +n41002010013 +n41002010014 +n41002010015 +n41002010016 +n41002010017 +n41002010018 +n41002011001 +n41002011002 +n41002011003 +n41002011004 +n41002011005 +n41002011006 +n41002011007 +n41002011008 +n41002011009 +n41002011010 +n41002011011 +n41002011012 +n41002011013 +n41002012001 +n41002012002 +n41002012003 +n41002012004 +n41002012005 +n41002012006 +n41002012007 +n41002012008 +n41002012009 +n41002012010 +n41002012011 +n41002012012 +n41002012013 +n41002012014 +n41002012015 +n41002012016 +n41002012017 +n41002012018 +n41002012019 +n41002012020 +n41002012021 +n41002012022 +n41002013001 +n41002013002 +n41002013003 +n41002013004 +n41002013005 +n41002013006 +n41002013007 +n41002013008 +n41002013009 +n41002013010 +n41002013011 +n41002013012 +n41002013013 +n41002013014 +n41002013015 +n41002013016 +n41002014001 +n41002014002 +n41002014003 +n41002014004 +n41002014005 +n41002014006 +n41002014007 +n41002014008 +n41002014009 +n41002014010 +n41002014011 +n41002014012 +n41002014013 +n41002014014 +n41002014015 +n41002014016 +n41002014017 +n41002014018 +n41002014019 +n41002014020 +n41002015001 +n41002015002 +n41002015003 +n41002015004 +n41002015005 +n41002015006 +n41002015007 +n41002015008 +n41002015009 +n41002015010 +n41002015011 +n41002015012 +n41002015013 +n41002015014 +n41002015015 +n41002015016 +n41002015017 +n41002015018 +n41002015019 +n41002015020 +n41002015022 +n41002015021 +n41002015023 +n41002015024 +n41002015025 +n41002015026 +n41002016001 +n41002016002 +n41002016003 +n41002016004 +n41002016005 +n41002016006 +n41002016007 +n41002016008 +n41002016009 +n41002016010 +n41002016011 +n41002016012 +n41002016013 +n41002016014 +n41002016015 +n41002016016 +n41002016017 +n41002016018 +n41002016019 +n41002016020 +n41002016021 +n41002016022 +n41002016023 +n41002016024 +n41002017001 +n41002017002 +n41002017003 +n41002017004 +n41002017005 +n41002017006 +n41002017007 +n41002017008 +n41002017012 +n41002017009 +n41002017010 +n41002017011 +n41002017013 +n41002017014 +n41002017015 +n41002017016 +n41002017017 +n41002017018 +n41002017019 +n41002017020 +n41002017021 +n41002017022 +n41002018001 +n41002018002 +n41002018009 +n41002018003 +n41002018004 +n41002018005 +n41002018006 +n41002018007 +n41002018008 +n41002018010 +n41002018011 +n41002018012 +n41002018013 +n41002018014 +n41002018015 +n41002018016 +n41002018017 +n41002018018 +n41002018019 +n41002018020 +n41002018021 +n41002018022 +n41002018023 +n41002018024 +n41002018025 +n41002018027 +n41002018026 +n41002018028 +n41002018029 +n41002018030 +n41002018031 +n41002019001 +n41002019002 +n41002019003 +n41002019004 +n41002019005 +n41002019006 +n41002019007 +n41002019008 +n41002019009 +n41002019010 +n41002019011 +n41002019012 +n41002019013 +n41002019014 +n41002019015 +n41002019016 +n41002019017 +n41002019018 +n41002019019 +n41002019020 +n41002019021 +n41002019022 +n41002019023 +n41002019024 +n41002019025 +n41002019026 +n41002019027 +n41002019028 +n41002019029 +n41002020002 +n41002020001 +n41002020003 +n41002020004 +n41002020005 +n41002020006 +n41002020007 +n41002020008 +n41002020009 +n41002020010 +n41002020011 +n41002020012 +n41002020013 +n41002020014 +n41002020015 +n41002020016 +n41002021001 +n41002021002 +n41002021003 +n41002021004 +n41002021005 +n41002021006 +n41002021007 +n41002021008 +n41002021010 +n41002021009 +n41002021011 +n41002021012 +n41002021013 +n41002021014 +n41002021017 +n41002021018 +n41002021015 +n41002021016 +n41002021019 +n41002021020 +n41002021021 +n41002021022 +n41002021023 +n41002021024 +n41002022001 +n41002022002 +n41002022003 +n41002022004 +n41002022005 +n41002022006 +n41002022007 +n41002022008 +n41002022010 +n41002022009 +n41002022011 +n41002022012 +n41002022013 +n41002022014 +n41002022015 +n41002022016 +n41002022017 +n41002022018 +n41002022019 +n41002022020 +n41002022021 +n41002022022 +n41002022023 +n41002022024 +n41002022025 +n41002022026 +n41002022027 +n41002022028 +n41002022029 +n41002023001 +n41002023002 +n41002023003 +n41002023004 +n41002023005 +n41002023006 +n41002023007 +n41002023008 +n41002023009 +n41002023010 +n41002023011 +n41002023012 +n41002023013 +n41002023014 +n41002023015 +n41002023016 +n41002023017 +n41002023018 +n41002023019 +n41002023020 +n41002024001 +n41002024002 +n41002024003 +n41002024004 +n41002024005 +n41002024006 +n41002024007 +n41002024008 +n41002024009 +n41002024010 +n41002024011 +n41002024012 +n41002024013 +n41002025001 +n41002025002 +n41002025003 +n41002025004 +n41002025005 +n41002025006 +n41002025007 +n41002025008 +n41002025009 +n41002025010 +n41002025011 +n41002025012 +n41002025013 +n41002025014 +n41002025015 +n41002025016 +n41002025017 +n41002025018 +n41002026001 +n41002026002 +n41002026003 +n41002026004 +n41002026005 +n41002026006 +n41002026007 +n41002026008 +n41002026009 +n41002026010 +n41002026011 +n41002026012 +n41002026013 +n41002026014 +n41002026015 +n41002026016 +n41002026017 +n41002026020 +n41002026018 +n41002026019 +n41002026021 +n41002026022 +n41002026023 +n41002026024 +n41002026025 +n41002026026 +n41002026027 +n41002026028 +n41002026029 +n41002026030 +n41002026031 +n41002027001 +n41002027002 +n41002027003 +n41002027004 +n41002027005 +n41002027006 +n41002027007 +n41002027008 +n41002027009 +n41002027010 +n41002027011 +n41002027012 +n41002027013 +n41002027014 +n41002027015 +n41002027016 +n41002028001 +n41002028003 +n41002028004 +n41002028005 +n41002028006 +n41002028007 +n41002028002 +n41002028008 +n41002028009 +n41002028010 +n41003001001 +n41003001002 +n41003001003 +n41003001004 +n41003001005 +n41003001006 +n41003001007 +n41003001008 +n41003001009 +n41003001010 +n41003001011 +n41003001012 +n41003001013 +n41003002001 +n41003002002 +n41003002003 +n41003002004 +n41003002005 +n41003002006 +n41003002007 +n41003002008 +n41003002009 +n41003002010 +n41003002011 +n41003003001 +n41003003002 +n41003003003 +n41003003004 +n41003003005 +n41003003006 +n41003003009 +n41003003007 +n41003003008 +n41003003010 +n41003003011 +n41003003012 +n41003003013 +n41003004001 +n41003004002 +n41003004003 +n41003004004 +n41003004005 +n41003004006 +n41003004007 +n41003004008 +n41003004009 +n41003004010 +n41003004011 +n41003004012 +n41003004013 +n41003004014 +n41003004016 +n41003004015 +n41003004017 +n41003005001 +n41003005002 +n41003005003 +n41003005004 +n41003005005 +n41003005006 +n41003005007 +n41003005008 +n41003005009 +n41003005010 +n41003005011 +n41003005012 +n41003005013 +n41003005014 +n41003005015 +n41003005016 +n41003005017 +n41003005018 +n41003005019 +n41003005020 +n41003005021 +n41003005022 +n41003005023 +n41003005024 +n41003005025 +n41003006001 +n41003006002 +n41003006003 +n41003006004 +n41003006005 +n41003006006 +n41003006007 +n41003006008 +n41003006009 +n41003006010 +n41003006011 +n41003006012 +n41003006013 +n41003006014 +n41003006015 +n41003007001 +n41003007002 +n41003007003 +n41003007004 +n41003007005 +n41003007006 +n41003007007 +n41003007008 +n41003007009 +n41003007010 +n41003007011 +n41003007012 +n41003007013 +n41003007014 +n41003007015 +n41003007016 +n41003007017 +n41003007018 +n41003007019 +n41003007020 +n41003007021 +n41003007022 +n41003008001 +n41003008002 +n41003008003 +n41003008004 +n41003008005 +n41003008006 +n41003008007 +n41003008008 +n41003008009 +n41003008010 +n41003008011 +n41003008012 +n41003008013 +n41003008014 +n41003008015 +n41003008016 +n41003008017 +n41003008018 +n41003008019 +n41003008020 +n41003008021 +n41003008022 +n41003008023 +n41003008024 +n41003009001 +n41003009002 +n41003009003 +n41003009004 +n41003009005 +n41003009006 +n41003009007 +n41003009008 +n41003009009 +n41003009010 +n41003009011 +n41003009012 +n41003009013 +n41003009014 +n41003009015 +n41003009016 +n41003010002 +n41003010001 +n41003010003 +n41003010004 +n41003010005 +n41003010006 +n41003010007 +n41003010008 +n41003010009 +n41003010010 +n41003010011 +n41003010012 +n41003011001 +n41003011002 +n41003011003 +n41003011004 +n41003011005 +n41003011006 +n41003011007 +n41003011008 +n41003011009 +n41003011010 +n41003011011 +n41003011012 +n41003011013 +n41003011014 +n41003011015 +n41003011016 +n41003011017 +n41003011018 +n41003011019 +n41003011020 +n41003012001 +n41003012002 +n41003012003 +n41003012004 +n41003012005 +n41003012006 +n41003012007 +n41003012008 +n41003012009 +n41003013001 +n41003013002 +n41003013003 +n41003013004 +n41003013005 +n41003013006 +n41003013007 +n41003013008 +n41003013009 +n41003013010 +n41003013011 +n41003013012 +n41003013013 +n41003013014 +n41003014001 +n41003014002 +n41003014003 +n41003014004 +n41003014005 +n41003014006 +n41003014007 +n41003014008 +n41003014009 +n41003014010 +n41003014011 +n41003014012 +n41003015001 +n41003015002 +n41003015003 +n41003015004 +n41003015005 +n41003015006 +n41003016001 +n41003016002 +n41003016003 +n41003016004 +n41003016005 +n41003016006 +n41003016007 +n41003016008 +n41003016009 +n41003016010 +n41003017001 +n41003017002 +n41003017003 +n41003017004 +n41003017005 +n41003017006 +n41003017007 +n41003017008 +n41003017009 +n41003017010 +n41003017011 +n41003017012 +n41003017013 +n41003017014 +n41003017015 +n41003017016 +n41003017017 +n41003017018 +n41003017019 +n41003017020 +n41003018001 +n41003018002 +n41003018003 +n41003018004 +n41003018005 +n41003018006 +n41003018007 +n41003018008 +n41003018009 +n41003018010 +n41003018011 +n41003018012 +n41003018013 +n41003018014 +n41003018015 +n41003018016 +n41003018017 +n41003018018 +n41003018019 +n41003018020 +n41003018021 +n41003019001 +n41003019002 +n41003019003 +n41003019004 +n41003019005 +n41003019006 +n41003019007 +n41003020001 +n41003020002 +n41003020003 +n41003020004 +n41003020005 +n41003020006 +n41003020007 +n41003020008 +n41003020009 +n41003020010 +n41003020011 +n41003020012 +n41003020013 +n41003020014 +n41003020015 +n41003020016 +n41003021001 +n41003021002 +n41003021003 +n41003021004 +n41003021005 +n41003021006 +n41003021007 +n41003021008 +n41003021010 +n41003021009 +n41003021011 +n41003021012 +n41003022001 +n41003022002 +n41003022003 +n41003022004 +n41003022005 +n41003022006 +n41003022007 +n41003022008 +n41003022009 +n41003022010 +n41003022011 +n41003022012 +n41003022013 +n41003022014 +n41003022015 +n41003022016 +n41003022017 +n41003022018 +n41003022019 +n41003022020 +n41003022021 +n41003023001 +n41003023002 +n41003023003 +n41003023004 +n41003023005 +n41003023006 +n41003023007 +n41003023008 +n41003023009 +n41003023010 +n41003023011 +n41003023012 +n41003024001 +n41003024002 +n41003024003 +n41003024004 +n41003024005 +n41003024006 +n41003024007 +n41003024008 +n41003024009 +n41003024010 +n41003024011 +n41003024012 +n41003025001 +n41003025002 +n41003025003 +n41003025004 +n41003025005 +n41003025006 +n41003025007 +n41003025008 +n41003025009 +n41003025010 +n41003025011 +n41003025012 +n41003026001 +n41003026002 +n41003026003 +n41003026004 +n41003026005 +n41003026006 +n41003026007 +n41003026008 +n41003026009 +n41003026010 +n41003026011 +n41003026012 +n41003026013 +n41003026014 +n41003026015 +n41003027001 +n41003027002 +n41003027003 +n41003027004 +n41003027005 +n41003027006 +n41003027007 +n41003027008 +n41003027009 +n41003027010 +n41003027011 +n41003027012 +n41003027013 +n41003027014 +n41003027015 +n41003027016 +n41003027017 +n41003027018 +n41003027019 +n41003027020 +n41003027021 +n41003027022 +n41003027023 +n41003027024 +n41003027025 +n41003027026 +n41003028001 +n41003028002 +n41003028003 +n41003028004 +n41003028006 +n41003028007 +n41003028008 +n41003028009 +n41003028010 +n41003028005 +n41003028011 +n41003028012 +n41003028013 +n41003028014 +n41003028015 +n41003028017 +n41003028016 +n41003028018 +n41003029002 +n41003029003 +n41003029001 +n41003029004 +n41003029005 +n41003029006 +n41003029007 +n41003029008 +n41003029009 +n41003029010 +n41003029011 +n41003029012 +n41003029013 +n41003029014 +n41003029015 +n41003029016 +n41003029017 +n41003029018 +n41003029019 +n41003029020 +n41003030001 +n41003030002 +n41003030003 +n41003030004 +n41003030005 +n41003031001 +n41003031002 +n41003031003 +n41003031004 +n41003031005 +n41003031006 +n41003031007 +n41003031008 +n41003031009 +n41003031010 +n41003031011 +n41003031012 +n41003031013 +n41003031014 +n41003031015 +n41003031016 +n41003031017 +n41003032001 +n41003032002 +n41003032003 +n41003032004 +n41003032005 +n41003032006 +n41003032007 +n41003032008 +n41003032009 +n41003032010 +n41003032011 +n41003032012 +n41003032013 +n41003032014 +n41003032015 +n41003032016 +n41003032017 +n41003032018 +n41003032019 +n41003032020 +n41003032021 +n41003032022 +n41003032023 +n41003033001 +n41003033002 +n41003033003 +n41003033004 +n41003033005 +n41003033006 +n41003033007 +n41003033008 +n41003033009 +n41003033010 +n41003033011 +n41003033012 +n41003034001 +n41003034002 +n41003034003 +n41003034004 +n41003034005 +n41003034006 +n41003034007 +n41003034008 +n41003034009 +n41003034010 +n41003034011 +n41003034012 +n41003034013 +n41003034014 +n41003034015 +n41003034016 +n41003035002 +n41003035001 +n41003035003 +n41003035004 +n41003035005 +n41003035006 +n41003035007 +n41003035008 +n41003035009 +n41003035010 +n41003035011 +n41003035012 +n41003035013 +n41003035014 +n41003035015 +n41004001001 +n41004001002 +n41004001003 +n41004001004 +n41004001005 +n41004001006 +n41004001007 +n41004001008 +n41004001009 +n41004001010 +n41004001011 +n41004001012 +n41004001013 +n41004001014 +n41004001015 +n41004001016 +n41004001017 +n41004001018 +n41004001019 +n41004001020 +n41004001021 +n41004001022 +n41004001023 +n41004001024 +n41004001025 +n41004001026 +n41004001027 +n41004001028 +n41004001029 +n41004001030 +n41004001031 +n41004001032 +n41004001033 +n41004002001 +n41004002002 +n41004002003 +n41004002004 +n41004002005 +n41004002006 +n41004002007 +n41004002008 +n41004002009 +n41004002010 +n41004002011 +n41004002012 +n41004002013 +n41004003001 +n41004003002 +n41004003003 +n41004003004 +n41004003005 +n41004003006 +n41004004001 +n41004004002 +n41004004003 +n41004004004 +n41004004005 +n41004004007 +n41004004006 +n41004004008 +n41004004009 +n41004004010 +n41004004011 +n41004004012 +n41004004013 +n41004004014 +n41004004015 +n41004004016 +n41004004017 +n41004004018 +n41004005001 +n41004005002 +n41004005003 +n41004005004 +n41004005005 +n41004005006 +n41004005007 +n41004005008 +n41004005009 +n41004005010 +n41004005011 +n41004005012 +n41004005013 +n41004005014 +n41004005015 +n41004005016 +n41004005017 +n41004005018 +n41004005019 +n41004005020 +n41004006001 +n41004006002 +n41004006003 +n41004006004 +n41004006005 +n41004006006 +n41004006007 +n41004006008 +n41004006009 +n41004006010 +n41004006011 +n41004006012 +n41004006013 +n41004007001 +n41004007002 +n41004007003 +n41004007004 +n41004007005 +n41004007006 +n41004007007 +n41004007008 +n41004007009 +n41004007010 +n41004007011 +n41004007012 +n41004007013 +n41004007014 +n41004007015 +n41004007016 +n41004007017 +n41004008001 +n41004008002 +n41004008003 +n41004008004 +n41004008005 +n41004008006 +n41004008007 +n41004008008 +n41004008009 +n41004008010 +n41004008011 +n41004008012 +n41004008013 +n41004008014 +n41004008015 +n41004008016 +n41004008017 +n41004008018 +n41004008019 +n41004008020 +n41004008021 +n41004008022 +n41004008023 +n41004008024 +n41004009001 +n41004009002 +n41004009003 +n41004009004 +n41004009005 +n41004009006 +n41004009007 +n41004010001 +n41004010002 +n41004010003 +n41004010004 +n41004010005 +n41004010006 +n41004010007 +n41004010008 +n41004010009 +n41004010010 +n41004010011 +n41004010012 +n41004010013 +n41004010014 +n41004010015 +n41004011001 +n41004011002 +n41004011003 +n41004011004 +n41004011007 +n41004011005 +n41004011006 +n41004011008 +n41004011009 +n41004011010 +n41004011011 +n41004011013 +n41004011012 +n41004011014 +n41004011015 +n41004011016 +n41004011017 +n41004011018 +n41004011019 +n41004011020 +n41004012001 +n41004012002 +n41004012003 +n41004012004 +n41004012005 +n41004012006 +n41004012007 +n41004012008 +n41004012009 +n41004012010 +n41004012011 +n41004012012 +n41004012013 +n41004012014 +n41004012015 +n41004012016 +n41004012017 +n41004012018 +n41004013001 +n41004013002 +n41004013003 +n41004013004 +n41004013005 +n41004013006 +n41004013007 +n41004013008 +n41004013009 +n41004013010 +n41004013011 +n41004013012 +n41004013013 +n41004013014 +n41004014001 +n41004014002 +n41004014003 +n41004014004 +n41004014005 +n41004015002 +n41004015001 +n41004015003 +n41004015004 +n41004015005 +n41004015006 +n41004015007 +n41004015008 +n41004015009 +n41004015010 +n41004015011 +n41004015012 +n41004015013 +n41004015014 +n41004015015 +n41004015016 +n41004015017 +n41004015018 +n41004015019 +n41004015020 +n41004015021 +n41004015022 +n41004015023 +n41004015024 +n41004015025 +n41004015026 +n41004016001 +n41004016003 +n41004016004 +n41004016005 +n41004016006 +n41004016007 +n41004016008 +n41004016009 +n41004016002 +n41004016010 +n41004016011 +n41004016012 +n41004016013 +n41004016014 +n41004016015 +n41004016016 +n41004016017 +n41004016018 +n41004016019 +n41004017001 +n41004017002 +n41004017003 +n41004017004 +n41004017005 +n41004017006 +n41004017007 +n41004017008 +n41004017009 +n41004017010 +n41004017011 +n41004017012 +n41004017013 +n41004017014 +n41004017015 +n41004017016 +n41004017017 +n41004017018 +n41004017019 +n41004018001 +n41004018002 +n41004018003 +n41004018004 +n41004018005 +n41004018006 +n41004018007 +n41004018008 +n41004018009 +n41004018010 +n41004018011 +n41004018012 +n41004018013 +n41004018014 +n41004019001 +n41004019002 +n41004019003 +n41004019004 +n41004019005 +n41004019006 +n41004019007 +n41004019008 +n41004019009 +n41004019010 +n41004019011 +n41004019012 +n41004019013 +n41004019014 +n41004019015 +n41004019016 +n41004019017 +n41004019018 +n41004019019 +n41004019020 +n41004019021 +n41004019022 +n41004019023 +n41004020001 +n41004020003 +n41004020004 +n41004020005 +n41004020006 +n41004020007 +n41004020008 +n41004020009 +n41004020010 +n41004020002 +n41004020011 +n41004020012 +n41004020013 +n41004020014 +n41004020015 +n41004020016 +n41004020017 +n41004020018 +n41004020019 +n41004020020 +n41004020021 +n41004020022 +n41004020023 +n41004020024 +n41004020025 +n41004020026 +n41004021001 +n41004021002 +n41004021003 +n41004021004 +n41004021005 +n41004021006 +n41004021007 +n41004021008 +n41004021009 +n41004021010 +n41004021011 +n41004021012 +n41004021013 +n41004021014 +n41004021015 +n41004021016 +n41004021017 +n41004021018 +n41004021019 +n41004021020 +n41004021021 +n41004021022 +n41004021023 +n41004022002 +n41004022001 +n41004022003 +n41004022004 +n41004022005 +n41004022006 +n41004022007 +n41004022008 +n41004022009 +n41004022010 +n41004022011 +n41004022012 +n41004022013 +n41004022014 +n41004022015 +n41004022016 +n41004022017 +n41004023001 +n41004023002 +n41004023003 +n41004023004 +n41004023005 +n41004023006 +n41004024001 +n41004024002 +n41004024003 +n41004024004 +n41004024005 +n41004024006 +n41004024007 +n41004024008 +n41004024009 +n41004024010 +n41004024011 +n41004024012 +n41004024013 +n41004024014 +n41004024015 +n41004025002 +n41004025001 +n41004025003 +n41004025004 +n41004025005 +n41004025006 +n41004025007 +n41004025008 +n41004025009 +n41004025010 +n41004025011 +n41004025012 +n41004025013 +n41004025014 +n41004025015 +n41004026001 +n41004026002 +n41004026003 +n41004026004 +n41004026005 +n41004026006 +n41004026007 +n41004026008 +n41004026009 +n41004026010 +n41004026011 +n41004026012 +n41004026013 +n41004026014 +n41004026015 +n41004026016 +n41004027001 +n41004027002 +n41004027003 +n41004027004 +n41004027005 +n41004027006 +n41004027007 +n41004027008 +n41004027009 +n41004027010 +n41004027011 +n41004027012 +n41004027013 +n41004027014 +n41004027015 +n41004027016 +n41004027017 +n41004028001 +n41004028002 +n41004028003 +n41004028004 +n41004028005 +n41004028006 +n41004028007 +n41004028008 +n41004028009 +n41004028010 +n41004028011 +n41004028012 +n41004028013 +n41004028014 +n41004029002 +n41004029001 +n41004029003 +n41004029004 +n41004029005 +n41004029006 +n41004029007 +n41004029008 +n41004029009 +n41004029010 +n41004029011 +n41004029012 +n41004029013 +n41004030001 +n41004030002 +n41004030003 +n41004030004 +n41004030005 +n41004030006 +n41004030007 +n41004030008 +n41004030009 +n41004030010 +n41004030011 +n41004030013 +n41004030012 +n41004030014 +n41004031001 +n41004031002 +n41004031003 +n41004031004 +n41004031005 +n41004031006 +n41004031007 +n41004031008 +n41004031009 +n41004031010 +n41004031011 +n41004031012 +n41004031013 +n41004031014 +n41004031015 +n41004031016 +n41004031017 +n41004031018 +n41004032001 +n41004032002 +n41004032003 +n41004032004 +n41004032005 +n41004032006 +n41004032007 +n41004032008 +n41004032009 +n41004032010 +n41004032011 +n41004032012 +n41004032013 +n41004032014 +n41004032015 +n41004032016 +n41004032017 +n41004032018 +n41004032019 +n41004032020 +n41004032025 +n41004032021 +n41004032022 +n41004032023 +n41004032024 +n41004033001 +n41004033002 +n41004033003 +n41004033004 +n41004033005 +n41004033006 +n41004033007 +n41004033008 +n41004033009 +n41004033010 +n41004033011 +n41004034002 +n41004034001 +n41004034003 +n41004034004 +n41004034005 +n41004034006 +n41004034009 +n41004034007 +n41004034008 +n41004034010 +n41004034011 +n41004034012 +n41004034013 +n41004034014 +n41004035001 +n41004035002 +n41004035003 +n41004035004 +n41004035005 +n41004035006 +n41004035007 +n41004035008 +n41004035009 +n41004035010 +n41004035011 +n41004035012 +n41004035013 +n41004036001 +n41004036002 +n41004036003 +n41004036004 +n41004036005 +n41004036006 +n41004036007 +n41004036008 +n41004036009 +n41004036010 +n41004036011 +n41004036012 +n41004036013 +n41004036014 +n41004036015 +n41004036016 +n41004036017 +n41004037001 +n41004037002 +n41004037003 +n41004037004 +n41004037005 +n41004037006 +n41004037007 +n41004037008 +n41004037009 +n41004037010 +n41004037011 +n41004037012 +n41004037013 +n41004037014 +n41004037015 +n41004037016 +n41004037017 +n41004038001 +n41004038002 +n41004038003 +n41004038004 +n41004038005 +n41004038006 +n41004038007 +n41004038008 +n41004038009 +n41004038010 +n41004038011 +n41004038012 +n41004038013 +n41004038014 +n41004038015 +n41004038016 +n41004038017 +n41004038018 +n41004038019 +n41004038020 +n41004038021 +n41004038022 +n41004039001 +n41004039002 +n41004039003 +n41004039004 +n41004039005 +n41004039006 +n41004039007 +n41004039008 +n41004039009 +n41004039010 +n41004039011 +n41004039012 +n41004039013 +n41004039014 +n41004039015 +n41004039016 +n41004039017 +n41004039018 +n41004039019 +n41004040001 +n41004040002 +n41004040003 +n41004040004 +n41004040005 +n41004040006 +n41004040007 +n41004040008 +n41004040009 +n41004040010 +n41004040011 +n41004041001 +n41004041002 +n41004041003 +n41004041004 +n41004041005 +n41004041006 +n41004041007 +n41004041008 +n41004041010 +n41004041009 +n41004041011 +n41004041012 +n41004041013 +n41004041014 +n41004041015 +n41004041016 +n41004041017 +n41004041018 +n41004041019 +n41004041020 +n41004041021 +n41005001001 +n41005001002 +n41005001003 +n41005001004 +n41005001005 +n41005001006 +n41005001007 +n41005001008 +n41005001009 +n41005001010 +n41005001011 +n41005001012 +n41005002001 +n41005002002 +n41005002003 +n41005002004 +n41005002005 +n41005002006 +n41005002007 +n41005002008 +n41005002009 +n41005002010 +n41005002011 +n41005002012 +n41005002013 +n41005002014 +n41005002015 +n41005002016 +n41005003001 +n41005003002 +n41005003003 +n41005003004 +n41005003005 +n41005003006 +n41005003007 +n41005003008 +n41005003009 +n41005003010 +n41005003011 +n41005003012 +n41005003013 +n41005003014 +n41005003015 +n41005004001 +n41005004002 +n41005004003 +n41005004004 +n41005004005 +n41005004006 +n41005004007 +n41005004008 +n41005004009 +n41005004010 +n41005004011 +n41005004012 +n41005004013 +n41005004014 +n41005004015 +n41005004016 +n41005004017 +n41005004018 +n41005004019 +n41005004020 +n41005004021 +n41005004022 +n41005004023 +n41005005001 +n41005005002 +n41005005003 +n41005005004 +n41005005005 +n41005005006 +n41005005007 +n41005005008 +n41005005009 +n41005005010 +n41005005011 +n41005005012 +n41005005013 +n41005005014 +n41005005015 +n41005005016 +n41005005017 +n41005005018 +n41005005019 +n41005006001 +n41005006002 +n41005006003 +n41005006004 +n41005006005 +n41005006006 +n41005006007 +n41005006008 +n41005006009 +n41005006010 +n41005007001 +n41005007002 +n41005007003 +n41005007004 +n41005007005 +n41005007006 +n41005007007 +n41005007008 +n41005007009 +n41005007010 +n41005007011 +n41005007012 +n41005007013 +n41005007014 +n41005007015 +n41005007016 +n41005007017 +n41005007018 +n41005007019 +n41005007020 +n41005007021 +n41005007022 +n41005008002 +n41005008001 +n41005008003 +n41005008005 +n41005008006 +n41005008007 +n41005008008 +n41005008004 +n41005008009 +n41005008010 +n41005008011 +n41005009001 +n41005009002 +n41005009003 +n41005009004 +n41005009005 +n41005009006 +n41005009007 +n41005009008 +n41005009009 +n41005009010 +n41005009011 +n41005009012 +n41005009013 +n41005009014 +n41005009015 +n41005010001 +n41005010002 +n41005010003 +n41005010004 +n41005010005 +n41005010006 +n41005010007 +n41005010008 +n41005010009 +n41005010010 +n41005010011 +n41005011002 +n41005011001 +n41005011003 +n41005011004 +n41005011005 +n41005011006 +n41005011007 +n41005011008 +n41005011009 +n41005011010 +n41005012001 +n41005012002 +n41005012003 +n41005012004 +n41005012005 +n41005012006 +n41005012007 +n41005012008 +n41005012009 +n41005012010 +n41005012011 +n41005012012 +n41005012013 +n41005013001 +n41005013002 +n41005013003 +n41005013004 +n41005013005 +n41005013006 +n41005013007 +n41005013008 +n41005013009 +n41005013010 +n41005013011 +n41005013012 +n41005013013 +n41005013014 +n41005013015 +n41005013016 +n41005013017 +n41005013018 +n41005013019 +n41005013020 +n41005013021 +n41005013022 +n41005013023 +n41005013024 +n41005013025 +n41005013026 +n41005013027 +n41005013028 +n41005013029 +n41005013030 +n41005014001 +n41005014002 +n41005014003 +n41005014004 +n41005014005 +n41005014006 +n41005014007 +n41005014008 +n41005014009 +n41005014010 +n41005014011 +n41005014012 +n41005014013 +n41005014014 +n41005014015 +n41005014016 +n41005014017 +n41005014018 +n41005014019 +n41005014020 +n41005014021 +n41005015001 +n41005015002 +n41005015003 +n41005015004 +n41005015005 +n41005015006 +n41005015007 +n41005015008 +n41005015009 +n41005015014 +n41005015015 +n41005015016 +n41005015017 +n41005015010 +n41005015011 +n41005015012 +n41005015013 +n41005015018 +n41005015019 +n41005016001 +n41005016002 +n41005016003 +n41005016004 +n41005016005 +n41005016006 +n41005016007 +n41005016008 +n41005016009 +n41005016010 +n41005016011 +n41005016012 +n41005016013 +n41005017001 +n41005017002 +n41005017003 +n41005017004 +n41005017005 +n41005017006 +n41005017007 +n41005017008 +n41005017009 +n41005018001 +n41005018002 +n41005018003 +n41005018004 +n41005018005 +n41005018006 +n41005018007 +n41005018008 +n41005018009 +n41005018010 +n41005018011 +n41005018012 +n41005018013 +n41005018014 +n41005019001 +n41005019002 +n41005019003 +n41005019004 +n41005019005 +n41005019006 +n41005019007 +n41005019008 +n41005019009 +n41005019010 +n41005019011 +n41005019012 +n41005019013 +n41005019014 +n41005019015 +n41005019016 +n41005019017 +n41005019018 +n41005019019 +n41005019020 +n41005019021 +n41005019022 +n41005019023 +n41005019024 +n41005019025 +n41005019026 +n41005020001 +n41005020002 +n41005020003 +n41005020004 +n41005020005 +n41005020006 +n41005020007 +n41005020008 +n41005020009 +n41005020010 +n41005020011 +n41005020012 +n41005020013 +n41005020014 +n41005020015 +n41005020016 +n41005021001 +n41005021002 +n41005021003 +n41005021004 +n41005021005 +n41005021006 +n41005021007 +n41005021008 +n41005021009 +n41005021010 +n41005021011 +n41005021012 +n41005021013 +n41005021014 +n41005021015 +n41005021016 +n41005021017 +n41005021018 +n41005021019 +n41005021020 +n41005021021 +n41005022001 +n41005022002 +n41005022003 +n41005022004 +n41005022005 +n41005022006 +n41005022007 +n41005022008 +n41005022009 +n41005022010 +n41005022011 +n41005022012 +n41005022013 +n41005022014 +n41005022015 +n41005023001 +n41005023002 +n41005023003 +n41005023004 +n41005023005 +n41005023006 +n41005023007 +n41005023008 +n41005023009 +n41005023010 +n41005023011 +n41005023012 +n41005023013 +n41005023014 +n41005023015 +n41005023016 +n41005023017 +n41005023018 +n41005023019 +n41005023020 +n41005023021 +n41005024001 +n41005024002 +n41005024003 +n41005024004 +n41005024005 +n41005024006 +n41005024007 +n41005024008 +n41005024009 +n41005024010 +n41005024011 +n41005024012 +n41005025001 +n41005025002 +n41005025003 +n41005025004 +n41005025005 +n41005025006 +n41005025007 +n41005025008 +n41005026001 +n41005026002 +n41005026003 +n41005026004 +n41005026005 +n41005026006 +n41005026007 +n41005026008 +n41005026009 +n41005026010 +n41005026011 +n41005026012 +n41005026013 +n41005026014 +n41005026015 +n41005026016 +n41005026017 +n41005026018 +n41005026019 +n41005026020 +n41005026021 +n41005027001 +n41005027002 +n41005027003 +n41005027004 +n41005027005 +n41005027006 +n41005027007 +n41005027008 +n41005027009 +n41005027010 +n41005027011 +n41005027012 +n41005027013 +n41005027014 +n41005028002 +n41005028001 +n41005028003 +n41005028004 +n41005028005 +n41005028006 +n41005028007 +n41005028008 +n41005028009 +n41005028010 +n41005029001 +n41005029002 +n41005029003 +n41005029004 +n41005029005 +n41005029006 +n41005029007 +n41005029008 +n41005029009 +n41005029010 +n41005029011 +n41005029012 +n41005029013 +n41005029014 +n41005029015 +n41005029016 +n41005029017 +n41005030001 +n41005030002 +n41005030003 +n41005030004 +n41005030005 +n41005030006 +n41005030007 +n41005030008 +n41005030009 +n41005030010 +n41005030011 +n41005030012 +n41005030013 +n41005030014 +n41005030015 +n41005030016 +n41005030017 +n41005030018 +n41005030020 +n41005030019 +n41005030021 +n41005030022 +n41005031001 +n41005031002 +n41005031003 +n41005031004 +n41005031005 +n41005031006 +n41005031007 +n41005031008 +n41005031009 +n41005031010 +n41005031011 +n41005031012 +n41005031013 +n41005031014 +n41005031015 +n41005031016 +n41005032001 +n41005032002 +n41005032003 +n41005032004 +n41005032005 +n41005032006 +n41005033002 +n41005033001 +n41005033003 +n41005033004 +n41005033005 +n41005033006 +n41005033007 +n41005033008 +n41005033009 +n41005033010 +n41005033011 +n41005033012 +n41005033013 +n41005033014 +n41005033015 +n41005033016 +n41005033017 +n41005033018 +n41005033019 +n41005033020 +n41005034002 +n41005034001 +n41005034003 +n41005034004 +n41005034005 +n41005034006 +n41005034007 +n41005034008 +n41005034009 +n41005034010 +n41005034011 +n41005034012 +n41005034013 +n41005034014 +n41005034015 +n41005034016 +n41005034017 +n41005034018 +n41005034019 +n41005034020 +n41005035001 +n41005035002 +n41005035003 +n41005035004 +n41005035005 +n41005035006 +n41005035007 +n41005035008 +n41005035009 +n41005035010 +n41005035011 +n41005035012 +n41005035013 +n41005035014 +n41005035015 +n41005035016 +n41005035017 +n41005035018 +n41005036002 +n41005036001 +n41005036003 +n41005036004 +n41005036005 +n41005036006 +n41005036007 +n41005036008 +n41005036009 +n41005036010 +n41005036011 +n41005036012 +n41005036013 +n41005036014 +n41005037001 +n41005037002 +n41005037003 +n41005037004 +n41005037005 +n41005037006 +n41005037007 +n41005037008 +n41005037009 +n41005037010 +n41005037011 +n41005037012 +n41005037013 +n41005037014 +n41005037015 +n41005037016 +n41005037017 +n41005037018 +n41005038001 +n41005038002 +n41005038003 +n41005038004 +n41005038005 +n41005038006 +n41005038007 +n41005038008 +n41005038009 +n41005038010 +n41005038011 +n41005038012 +n41005038013 +n41005038014 +n41005038015 +n41005039001 +n41005039002 +n41005039003 +n41005039004 +n41005039005 +n41005039006 +n41005039007 +n41005039008 +n41005039009 +n41005039010 +n41005039011 +n41005039012 +n41005039013 +n41005039014 +n41005040001 +n41005040002 +n41005040003 +n41005040005 +n41005040004 +n41005040006 +n41005040007 +n41005040008 +n41005040009 +n41005040010 +n41005040011 +n41005040012 +n41005040013 +n41005040014 +n41005040015 +n41005040016 +n41005040017 +n41005040018 +n41005040019 +n41005040020 +n41005040021 +n41005040022 +n41005040023 +n41005040024 +n41005040025 +n41005041001 +n41005041002 +n41005041003 +n41005041004 +n41005041005 +n41005041006 +n41005041007 +n41005041008 +n41005041009 +n41005041010 +n41005041011 +n41005041012 +n41005041013 +n41005041014 +n41005041015 +n41005041016 +n41005041017 +n41005041018 +n41005042001 +n41005042002 +n41005042003 +n41005042004 +n41005042005 +n41005042006 +n41005042007 +n41005042009 +n41005042008 +n41005042010 +n41005042011 +n41005042012 +n41005042013 +n41005042014 +n41005042015 +n41005042016 +n41005043001 +n41005043002 +n41005043003 +n41005043004 +n41005043005 +n41005043006 +n41005043007 +n41005043008 +n41005043009 +n41005043010 +n41005043011 +n41005043012 +n41005043013 +n41006001001 +n41006001002 +n41006001003 +n41006001004 +n41006001005 +n41006001006 +n41006001007 +n41006001008 +n41006001009 +n41006001010 +n41006001011 +n41006001012 +n41006001013 +n41006001014 +n41006001015 +n41006002001 +n41006002002 +n41006002003 +n41006002004 +n41006002005 +n41006002006 +n41006002007 +n41006002008 +n41006002009 +n41006002010 +n41006002011 +n41006002012 +n41006002013 +n41006002014 +n41006002015 +n41006002016 +n41006002017 +n41006002018 +n41006002019 +n41006002020 +n41006002021 +n41006002022 +n41006002023 +n41006002024 +n41006002025 +n41006002026 +n41006002027 +n41006002028 +n41006002029 +n41006002030 +n41006002031 +n41006002032 +n41006002033 +n41006003001 +n41006003002 +n41006003003 +n41006003004 +n41006003005 +n41006003006 +n41006003007 +n41006003008 +n41006003009 +n41006003010 +n41006003011 +n41006003012 +n41006003013 +n41006003014 +n41006003015 +n41006003016 +n41006003017 +n41006003018 +n41006003019 +n41006003020 +n41006003021 +n41006003022 +n41006003023 +n41006003024 +n41006003025 +n41006003026 +n41006003027 +n41006003028 +n41006003029 +n41006003030 +n41006003031 +n41006004001 +n41006004002 +n41006004003 +n41006004004 +n41006004005 +n41006004006 +n41006004007 +n41006004008 +n41006004009 +n41006004010 +n41006004011 +n41006004012 +n41006004013 +n41006004014 +n41006004015 +n41006004016 +n41006004017 +n41006004018 +n41006004019 +n41006004020 +n41006004021 +n41006004022 +n41006004023 +n41006004024 +n41006004025 +n41006004026 +n41006005001 +n41006005002 +n41006005003 +n41006005004 +n41006005005 +n41006005006 +n41006005007 +n41006005008 +n41006005009 +n41006005010 +n41006005011 +n41006005012 +n41006005013 +n41006005014 +n41006005015 +n41006006001 +n41006006002 +n41006006003 +n41006006004 +n41006006005 +n41006006006 +n41006006007 +n41006006008 +n41006006009 +n41006006010 +n41006006011 +n41006006012 +n41006007001 +n41006007002 +n41006007003 +n41006007004 +n41006007005 +n41006007006 +n41006007007 +n41006007008 +n41006007009 +n41006007010 +n41006007011 +n41006007012 +n41006007013 +n41006007014 +n41006007015 +n41006007016 +n41006007017 +n41006007018 +n41006008001 +n41006008002 +n41006008003 +n41006008004 +n41006008005 +n41006008006 +n41006008007 +n41006008008 +n41006008009 +n41006008010 +n41006008011 +n41006008012 +n41006008013 +n41006008014 +n41006008015 +n41006008016 +n41006008017 +n41006008018 +n41006008019 +n41006008020 +n41006008021 +n41006009001 +n41006009002 +n41006009003 +n41006009004 +n41006009005 +n41006009006 +n41006009007 +n41006009008 +n41006010001 +n41006010002 +n41006010003 +n41006010005 +n41006010004 +n41006010006 +n41006010007 +n41006010008 +n41006010009 +n41006010010 +n41006010011 +n41006010012 +n41006010013 +n41006010014 +n41006011001 +n41006011003 +n41006011002 +n41006011004 +n41006011005 +n41006011006 +n41006011007 +n41006011008 +n41006011009 +n41006011010 +n41006011011 +n41006011012 +n41006011013 +n41006011014 +n41006011015 +n41006011016 +n41006011017 +n41006011018 +n41006011019 +n41006011020 +n41006011021 +n41006011022 +n41006011023 +n41006012001 +n41006012002 +n41006012003 +n41006012004 +n41006012005 +n41006013001 +n41006013002 +n41006013003 +n41006013004 +n41006013005 +n41006013006 +n41006013007 +n41006013008 +n41006013009 +n41006013010 +n41006013011 +n41006014001 +n41006014002 +n41006014003 +n41006014004 +n41006014005 +n41006014007 +n41006014006 +n41006014008 +n41006014009 +n41006014010 +n41006014011 +n41006014012 +n41006014013 +n41006014014 +n41006014015 +n41006014016 +n41006014017 +n41006014018 +n41006014019 +n41006014020 +n41006014021 +n41006014022 +n41006014023 +n41006014024 +n41006014025 +n41006014026 +n41006014027 +n41006014028 +n41006015002 +n41006015001 +n41006015003 +n41006015004 +n41006015005 +n41006015006 +n41006015008 +n41006015007 +n41006015009 +n41006015010 +n41006015011 +n41006015012 +n41006015013 +n41006015014 +n41006015015 +n41006016002 +n41006016001 +n41006016003 +n41006016004 +n41006016005 +n41006016006 +n41006016007 +n41006016008 +n41006016009 +n41006016010 +n41006016011 +n41006017002 +n41006017001 +n41006017003 +n41006017004 +n41006017005 +n41006017006 +n41006017007 +n41006017008 +n41006017009 +n41006017010 +n41006017011 +n41006017012 +n41006017013 +n41006017014 +n41006017015 +n41006017016 +n41006017017 +n41006017018 +n41006017019 +n41006017020 +n41006017021 +n41006017022 +n41006017023 +n41006017024 +n41006018002 +n41006018001 +n41006018003 +n41006018004 +n41006018005 +n41006018006 +n41006018007 +n41006018008 +n41006018009 +n41006018010 +n41006018011 +n41006018012 +n41006018013 +n41006018014 +n41006018015 +n41006018016 +n41006019002 +n41006019001 +n41006019003 +n41006019004 +n41006019005 +n41006019006 +n41006019007 +n41006019008 +n41006019009 +n41006019010 +n41006019011 +n41006019012 +n41006020002 +n41006020001 +n41006020003 +n41006020004 +n41006020005 +n41006020006 +n41006020007 +n41006020008 +n41006020009 +n41006020010 +n41006020011 +n41006020012 +n41006020013 +n41006020014 +n41006020015 +n41006020016 +n41006020017 +n41006020018 +n41006020019 +n41006020020 +n41006020021 +n41006020022 +n41006020023 +n41006020024 +n41006021001 +n41006021002 +n41006021003 +n41006021004 +n41006021005 +n41006021006 +n41006021007 +n41006021008 +n41006021009 +n41006021010 +n41006021011 +n41006021012 +n41006021013 +n41006021014 +n41006021015 +n41006021016 +n41006021017 +n41006021018 +n41006021019 +n41006021020 +n41006021021 +n41006021022 +n41006022001 +n41006022002 +n41006022003 +n41006022004 +n41006022005 +n41006022006 +n41006022007 +n41006022008 +n41006022009 +n41006022010 +n41006022011 +n41006022012 +n41006022013 +n41006022014 +n41006022015 +n41006022017 +n41006022016 +n41006022018 +n41006022019 +n41006022020 +n41006022021 +n41006022022 +n41006022023 +n41006022025 +n41006022024 +n41006022026 +n41006022027 +n41006022028 +n41006022029 +n41006023001 +n41006023002 +n41006023003 +n41006023004 +n41006023005 +n41006023006 +n41006023007 +n41006023008 +n41006023009 +n41006023010 +n41006023011 +n41006023012 +n41006023013 +n41006023014 +n41006024001 +n41006024002 +n41006024003 +n41006024004 +n41006024005 +n41006024006 +n41006024007 +n41006024008 +n41006024010 +n41006024009 +n41006024011 +n41006024012 +n41006024013 +n41006024014 +n41006024015 +n41006024016 +n41006025001 +n41006025002 +n41006025003 +n41006025004 +n41006025005 +n41006025006 +n41006025007 +n41006025008 +n41006025009 +n41006025010 +n41006025011 +n41006025012 +n41006025013 +n41006025014 +n41006025015 +n41006025016 +n41006025017 +n41006025018 +n41006025019 +n41006025020 +n41006025021 +n41006025022 +n41006026001 +n41006026002 +n41006026003 +n41006026004 +n41006026005 +n41006026006 +n41006026007 +n41006026008 +n41006026009 +n41006026010 +n41006026011 +n41006026012 +n41006026013 +n41006026014 +n41006026015 +n41006027001 +n41006027002 +n41006027003 +n41006027006 +n41006027004 +n41006027005 +n41006027007 +n41006027008 +n41006027009 +n41006027010 +n41006027011 +n41006028001 +n41006028002 +n41006028003 +n41006028004 +n41006028005 +n41006028006 +n41006028007 +n41006028008 +n41006028009 +n41006028010 +n41006028011 +n41006028012 +n41006028013 +n41006028014 +n41006028015 +n41006028016 +n41006028017 +n41006028018 +n41006028019 +n41006028020 +n41006028021 +n41006028022 +n41006028023 +n41006028024 +n41006028025 +n41006028026 +n41006028027 +n41006029001 +n41006029002 +n41006029003 +n41006029004 +n41006029005 +n41006029006 +n41006029007 +n41006029008 +n41006029009 +n41006029010 +n41006029011 +n41006029012 +n41006029013 +n41006029014 +n41006029015 +n41006029016 +n41006030001 +n41006030002 +n41006030003 +n41006030004 +n41006030005 +n41006030006 +n41006030007 +n41006030008 +n41006030009 +n41006030010 +n41006030011 +n41006030012 +n41006030013 +n41006030014 +n41006030015 +n41006030016 +n41006031001 +n41006031002 +n41006031003 +n41006031004 +n41006031005 +n41006031006 +n41006031007 +n41006031008 +n41006031009 +n41006031010 +n41006031011 +n41006031012 +n41006031013 +n41006031014 +n41006031016 +n41006031015 +n41006031017 +n41006031018 +n41006031019 +n41006031020 +n41006031021 +n41006031022 +n41006031023 +n41006031024 +n41006031025 +n41006031026 +n41006032001 +n41006032002 +n41006032003 +n41006032004 +n41006032005 +n41006032006 +n41006032007 +n41006032008 +n41006032009 +n41006032010 +n41006033001 +n41006033002 +n41006033003 +n41006033004 +n41006033005 +n41006033006 +n41006033007 +n41006033008 +n41006033009 +n41006033010 +n41006033011 +n41006033012 +n41006033013 +n41006033014 +n41006033015 +n41006033016 +n41006033017 +n41006033018 +n41006034001 +n41006034002 +n41006034003 +n41006034004 +n41006034005 +n41006034006 +n41006034007 +n41006034008 +n41006034009 +n41006034010 +n41006034011 +n41006034012 +n41006034013 +n41006034014 +n41006034015 +n41006034016 +n41006034017 +n41006034018 +n41006034019 +n41006034020 +n41006034021 +n41006035001 +n41006035002 +n41006035003 +n41006035004 +n41006035005 +n41006035006 +n41006035007 +n41006035008 +n41006035009 +n41006035010 +n41006035011 +n41006035012 +n41006035013 +n41006035014 +n41006035015 +n41006035016 +n41006035017 +n41006035018 +n41006035019 +n41006035020 +n41006036001 +n41006036002 +n41006036003 +n41006036004 +n41006036005 +n41006036006 +n41006036007 +n41006036008 +n41006036009 +n41006036010 +n41006036011 +n41006036012 +n41006036013 +n41006036014 +n41006037002 +n41006037001 +n41006037003 +n41006037004 +n41006037005 +n41006037006 +n41006037007 +n41006037008 +n41006037009 +n41006037010 +n41006037011 +n41006037012 +n41006037013 +n41006037014 +n41006037015 +n41006037016 +n41006037017 +n41006037018 +n41006037019 +n41006037020 +n41006037021 +n41006038002 +n41006038001 +n41006038003 +n41006038004 +n41006038005 +n41006038007 +n41006038006 +n41006038008 +n41006038009 +n41006038010 +n41006038011 +n41006038012 +n41006038013 +n41006038014 +n41006038015 +n41006038016 +n41006039001 +n41006039002 +n41006039003 +n41006039004 +n41006039005 +n41006039006 +n41006039007 +n41006039008 +n41006039009 +n41006039010 +n41006039011 +n41006040001 +n41006040002 +n41006040003 +n41006040004 +n41006040005 +n41006040006 +n41006040007 +n41006040008 +n41006040009 +n41006041001 +n41006041002 +n41006041003 +n41006041004 +n41006041005 +n41006041006 +n41006041007 +n41006041008 +n41006041009 +n41006041010 +n41006041011 +n41006041012 +n41006041013 +n41006041014 +n41006041015 +n41006041016 +n41006041017 +n41006041018 +n41006041019 +n41006041020 +n41006041021 +n41006041022 +n41006041023 +n41006041024 +n41006041025 +n41006041026 +n41006041027 +n41006041028 +n41006041029 +n41006041030 +n41006041031 +n41006042001 +n41006042002 +n41006042003 +n41006042004 +n41006042005 +n41006043001 +n41006043002 +n41006043003 +n41006043004 +n41006043005 +n41006043006 +n41006043007 +n41006043008 +n41006043009 +n41006043010 +n41006044001 +n41006044002 +n41006044003 +n41006044004 +n41006044005 +n41006044006 +n41006044007 +n41006044008 +n41006045001 +n41006045002 +n41006045003 +n41006045004 +n41006045005 +n41006045006 +n41006045007 +n41006045008 +n41006045009 +n41006045010 +n41006045011 +n41006045012 +n41006045013 +n41006045014 +n41006045015 +n41006045016 +n41006045017 +n41006045018 +n41006045019 +n41006045020 +n41006045021 +n41006045022 +n41006046001 +n41006046002 +n41006046003 +n41006046004 +n41006046005 +n41006046006 +n41006046007 +n41006046008 +n41006047001 +n41006047002 +n41006047003 +n41006047004 +n41006047005 +n41006047006 +n41006047007 +n41006047008 +n41006047009 +n41006047010 +n41006047011 +n41006047012 +n41006047013 +n41006047014 +n41006047015 +n41006047016 +n41006048001 +n41006048002 +n41006048003 +n41006048004 +n41006048005 +n41006048006 +n41006048007 +n41006048009 +n41006048008 +n41006048010 +n41006048011 +n41006048012 +n41006048013 +n41006048014 +n41006048015 +n41006048016 +n41006048017 +n41006048018 +n41006048019 +n41006048020 +n41006048021 +n41006048022 +n41006048023 +n41006048024 +n41006048025 +n41006048026 +n41006048027 +n41006048028 +n41006048029 +n41006049002 +n41006049001 +n41006049003 +n41006049004 +n41006049005 +n41006049006 +n41006049007 +n41006049008 +n41006049009 +n41006049010 +n41006049011 +n41006049012 +n41006049013 +n41006049014 +n41006050002 +n41006050001 +n41006050003 +n41006050004 +n41006050005 +n41006050006 +n41006050008 +n41006050007 +n41006050009 +n41006050010 +n41006050011 +n41006050012 +n41006050013 +n41006050014 +n41006050015 +n41006050016 +n41006050017 +n41006050018 +n41006050019 +n41006050020 +n41006051001 +n41006051002 +n41006051003 +n41006051004 +n41006051005 +n41006051006 +n41006051007 +n41006051008 +n41006051009 +n41006051010 +n41006051011 +n41006051012 +n41006051013 +n41006051014 +n41006051015 +n41006051016 +n41006051017 +n41006051018 +n41006052002 +n41006052001 +n41006052003 +n41006052004 +n41006052005 +n41006052006 +n41006052007 +n41006052008 +n41006052012 +n41006052009 +n41006052010 +n41006052011 +n41006053001 +n41006053002 +n41006053003 +n41006053004 +n41006053005 +n41006053006 +n41006053007 +n41006053008 +n41006053009 +n41006053010 +n41006054001 +n41006054002 +n41006054003 +n41006054004 +n41006054005 +n41006054006 +n41006054007 +n41006054008 +n41006054009 +n41006055001 +n41006055002 +n41006055003 +n41006055004 +n41006055005 +n41006055006 +n41006055007 +n41006055008 +n41006055009 +n41006055010 +n41006055011 +n41006055012 +n41006055013 +n41006055014 +n41006055015 +n41006055016 +n41006055017 +n41006055018 +n41006056001 +n41006056003 +n41006056002 +n41006056004 +n41006056005 +n41006056006 +n41006056007 +n41006056008 +n41006056009 +n41006056010 +n41006056011 +n41006056012 +n41006056013 +n41006056014 +n41006056015 +n41006056016 +n41006056017 +n41006056018 +n41006056019 +n41006056020 +n41006056021 +n41006056022 +n41006056023 +n41006056024 +n41006056025 +n41006056026 +n41006056027 +n41006056028 +n41006056029 +n41006056030 +n41006056032 +n41006056031 +n41006056033 +n41006056034 +n41006056035 +n41007001001 +n41007001002 +n41007001003 +n41007001004 +n41007001005 +n41007001006 +n41007001007 +n41007001008 +n41007001009 +n41007001010 +n41007001011 +n41007001012 +n41007001013 +n41007002001 +n41007002002 +n41007002003 +n41007002004 +n41007002005 +n41007002006 +n41007002007 +n41007002008 +n41007002009 +n41007002010 +n41007002011 +n41007002012 +n41007002013 +n41007002014 +n41007002015 +n41007003002 +n41007003001 +n41007003003 +n41007003004 +n41007003005 +n41007003006 +n41007003007 +n41007003008 +n41007003009 +n41007003010 +n41007003011 +n41007003012 +n41007003013 +n41007003014 +n41007003015 +n41007003016 +n41007003017 +n41007003018 +n41007003019 +n41007003020 +n41007004001 +n41007004002 +n41007004003 +n41007004004 +n41007004005 +n41007004006 +n41007004007 +n41007004008 +n41007004009 +n41007004010 +n41007004011 +n41007004012 +n41007004013 +n41007004014 +n41007004015 +n41007004016 +n41007004017 +n41007004018 +n41007004019 +n41007004020 +n41007004021 +n41007005001 +n41007005002 +n41007005003 +n41007005004 +n41007005005 +n41007005006 +n41007005007 +n41007005008 +n41007005009 +n41007005010 +n41007005011 +n41007005012 +n41007005013 +n41007005014 +n41007005015 +n41007005016 +n41007005017 +n41007005018 +n41007005019 +n41007005020 +n41007005021 +n41007005022 +n41007005023 +n41007005024 +n41007005025 +n41007005026 +n41007006002 +n41007006001 +n41007006003 +n41007006004 +n41007006005 +n41007006006 +n41007006007 +n41007006008 +n41007006009 +n41007006010 +n41007006011 +n41007006012 +n41007006013 +n41007006014 +n41007006015 +n41007006016 +n41007006017 +n41007006018 +n41007006019 +n41007006020 +n41007006021 +n41007006023 +n41007006022 +n41007006024 +n41007006025 +n41007006026 +n41007006027 +n41007006028 +n41007006029 +n41007007002 +n41007007001 +n41007007003 +n41007007004 +n41007007005 +n41007007006 +n41007007007 +n41007007008 +n41007008001 +n41007008002 +n41007008003 +n41007008004 +n41007008005 +n41007008006 +n41007008007 +n41007008008 +n41007008009 +n41007008010 +n41007009001 +n41007009002 +n41007009003 +n41007009004 +n41007009005 +n41007009006 +n41007009007 +n41007009008 +n41007009009 +n41007009010 +n41007009011 +n41007009012 +n41007009013 +n41007009014 +n41007010002 +n41007010001 +n41007010003 +n41007010004 +n41007010005 +n41007010006 +n41007010007 +n41007010008 +n41007010009 +n41007010010 +n41007010011 +n41007010012 +n41007010013 +n41007010014 +n41007010015 +n41007010016 +n41007010017 +n41007010018 +n41007010019 +n41007011002 +n41007011001 +n41007011003 +n41007011004 +n41007011005 +n41007011006 +n41007011007 +n41007011008 +n41007011009 +n41007011010 +n41007011011 +n41007011012 +n41007011013 +n41007011014 +n41007011015 +n41007011017 +n41007011016 +n41007011018 +n41007011019 +n41007011020 +n41007012001 +n41007012002 +n41007012003 +n41007012004 +n41007012005 +n41007012006 +n41007012007 +n41007012008 +n41007012009 +n41007012010 +n41007013001 +n41007013002 +n41007013003 +n41007013004 +n41007013005 +n41007013006 +n41007013007 +n41007013008 +n41007013009 +n41007013010 +n41007013011 +n41007013012 +n41007013013 +n41007013014 +n41007013015 +n41007014001 +n41007014002 +n41007014003 +n41007014004 +n41007014005 +n41007014006 +n41007014007 +n41007014008 +n41007014009 +n41007014010 +n41007014011 +n41007014012 +n41007015001 +n41007015002 +n41007015003 +n41007015004 +n41007015005 +n41007015006 +n41007015007 +n41007015008 +n41007015009 +n41007015010 +n41007015011 +n41007015012 +n41007015013 +n41007015014 +n41007015015 +n41007015016 +n41007015017 +n41007015018 +n41007015019 +n41007015020 +n41007015021 +n41007015022 +n41007015023 +n41007017001 +n41007017002 +n41007017003 +n41007017004 +n41007017005 +n41007017006 +n41007017007 +n41007017008 +n41007017009 +n41007017010 +n41007017011 +n41007017012 +n41007017013 +n41007017014 +n41007017015 +n41007018001 +n41007018002 +n41007018003 +n41007018004 +n41007018005 +n41007018006 +n41007018007 +n41007018008 +n41007018009 +n41007018010 +n41007018011 +n41007018012 +n41007018013 +n41007018014 +n41007018015 +n41007018016 +n41007018017 +n41007018018 +n41007018019 +n41007018020 +n41007018021 +n41007018022 +n41007019001 +n41007019002 +n41007019003 +n41007019005 +n41007019004 +n41007019006 +n41007019007 +n41007019008 +n41007019009 +n41007019010 +n41007019011 +n41007019012 +n41007019013 +n41007019014 +n41007019015 +n41007019016 +n41007019017 +n41007019018 +n41007019019 +n41007019020 +n41007020002 +n41007020001 +n41007020003 +n41007020004 +n41007020005 +n41007020006 +n41007020007 +n41007020008 +n41007020009 +n41007020010 +n41007020011 +n41007020012 +n41007021002 +n41007021001 +n41007021003 +n41007021004 +n41007021005 +n41007021006 +n41007021007 +n41007021008 +n41007021009 +n41007021010 +n41007021011 +n41007021012 +n41007021013 +n41007021014 +n41007021015 +n41007022001 +n41007022002 +n41007022003 +n41007022004 +n41007022005 +n41007022006 +n41007022007 +n41007022008 +n41007022009 +n41007022010 +n41007023001 +n41007023002 +n41007023003 +n41007023004 +n41007023005 +n41007023006 +n41007023007 +n41007023008 +n41007023009 +n41007023010 +n41007024002 +n41007024001 +n41007024003 +n41007024004 +n41007024005 +n41007024006 +n41007024007 +n41007024008 +n41007024009 +n41007024010 +n41007024011 +n41007024012 +n41007024013 +n41007024015 +n41007024014 +n41007024016 +n41007024017 +n41007024018 +n41007024019 +n41007025001 +n41007025002 +n41007025003 +n41007025005 +n41007025006 +n41007025004 +n41007025007 +n41007025009 +n41007025010 +n41007025011 +n41007025008 +n41007025012 +n41007025013 +n41007025014 +n41007025015 +n41007025016 +n41007025017 +n41007025018 +n41007025019 +n41007026002 +n41007026001 +n41007026003 +n41007026004 +n41007026005 +n41007026006 +n41007026007 +n41007026008 +n41007026009 +n41007026010 +n41007026011 +n41007026012 +n41007026013 +n41007026014 +n41007026015 +n41007026016 +n41007026017 +n41007026018 +n41007026019 +n41007027001 +n41007027002 +n41007027003 +n41007027004 +n41007027005 +n41007027006 +n41007027007 +n41007027008 +n41007027010 +n41007027009 +n41007027011 +n41007027012 +n41007027013 +n41007027014 +n41007027015 +n41007027016 +n41007027017 +n41007027018 +n41007027019 +n41007027020 +n41007027021 +n41007028002 +n41007028001 +n41007028003 +n41007028004 +n41007028005 +n41007028006 +n41007028007 +n41007028008 +n41007028009 +n41007028010 +n41007028011 +n41007028012 +n41007028013 +n41007028014 +n41007028015 +n41007028016 +n41007028017 +n41007028018 +n41007028019 +n41007028020 +n41007029001 +n41007029002 +n41007029003 +n41007029004 +n41007029005 +n41007029006 +n41007029007 +n41007029008 +n41007029009 +n41007029010 +n41007029011 +n41007029012 +n41007029013 +n41007029014 +n41007029015 +n41007030001 +n41007030002 +n41007030003 +n41007030004 +n41007030005 +n41007030006 +n41007030007 +n41007030008 +n41007030009 +n41007030010 +n41007030011 +n41007030012 +n41007030013 +n41007030014 +n41007030015 +n41007030016 +n41007030017 +n41007031001 +n41007031002 +n41007031003 +n41007031004 +n41007031005 +n41007031006 +n41007031007 +n41007031008 +n41007031009 +n41007031010 +n41007031011 +n41007031012 +n41007031013 +n41007031014 +n41007031015 +n41007031016 +n41007031017 +n41007031018 +n41007031019 +n41007031020 +n41007032001 +n41007032002 +n41007032003 +n41007032004 +n41007032005 +n41007032006 +n41007032007 +n41007032008 +n41007032009 +n41007032010 +n41007032011 +n41007032012 +n41007032013 +n41007032014 +n41007033001 +n41007033002 +n41007033003 +n41007033004 +n41007033005 +n41007033006 +n41007033007 +n41007033008 +n41007033009 +n41007033010 +n41007033011 +n41007033012 +n41007033013 +n41007033014 +n41007033015 +n41007033016 +n41007033017 +n41007033018 +n41007033019 +n41007033020 +n41007033021 +n41007033022 +n41007034001 +n41007034002 +n41007034003 +n41007034004 +n41007034005 +n41007034006 +n41007034007 +n41007034008 +n41007034009 +n41007034010 +n41007034011 +n41007034012 +n41007034013 +n41007035001 +n41007035002 +n41007035003 +n41007035004 +n41007035005 +n41007035006 +n41007035007 +n41007035008 +n41007035009 +n41007035010 +n41007035011 +n41007035012 +n41007035013 +n41007035014 +n41007035015 +n41007035016 +n41007036001 +n41007036002 +n41007036003 +n41007036004 +n41007036005 +n41007036006 +n41007036008 +n41007036007 +n41007036009 +n41007036010 +n41007036011 +n41007036012 +n41007036013 +n41007036014 +n41007037001 +n41007037002 +n41007037003 +n41007037004 +n41007037005 +n41007037006 +n41007037007 +n41007037008 +n41007037011 +n41007037009 +n41007037010 +n41007037012 +n41007037013 +n41007037014 +n41007037015 +n41008001001 +n41008001002 +n41008001003 +n41008001004 +n41008001005 +n41008001006 +n41008001007 +n41008001008 +n41008001009 +n41008001010 +n41008001011 +n41008001012 +n41008001013 +n41008001014 +n41008001015 +n41008001016 +n41008001017 +n41008001018 +n41008002001 +n41008002002 +n41008002003 +n41008002004 +n41008002005 +n41008002006 +n41008002007 +n41008002008 +n41008002009 +n41008002010 +n41008002011 +n41008002012 +n41008002013 +n41008002014 +n41008002015 +n41008003001 +n41008003002 +n41008003003 +n41008003004 +n41008003005 +n41008003006 +n41008003007 +n41008003008 +n41008003009 +n41008003010 +n41008003011 +n41008003012 +n41008003013 +n41008003014 +n41008003015 +n41008003016 +n41008003017 +n41008003018 +n41008004001 +n41008004002 +n41008004003 +n41008004004 +n41008004005 +n41008004006 +n41008004007 +n41008004008 +n41008004010 +n41008004011 +n41008004009 +n41008004012 +n41008004013 +n41008004014 +n41008004015 +n41008004016 +n41008005001 +n41008005002 +n41008005003 +n41008005004 +n41008005006 +n41008005005 +n41008005008 +n41008005007 +n41008005009 +n41008005010 +n41008006001 +n41008006002 +n41008006003 +n41008006004 +n41008006005 +n41008006006 +n41008006007 +n41008006008 +n41008006009 +n41008006010 +n41008006011 +n41008006012 +n41008006013 +n41008006014 +n41008006015 +n41008006016 +n41008006017 +n41008006018 +n41008006019 +n41008006020 +n41008006021 +n41008006022 +n41008006023 +n41008006024 +n41008006025 +n41008006026 +n41008007001 +n41008007002 +n41008007003 +n41008007004 +n41008007005 +n41008007006 +n41008007007 +n41008007008 +n41008007009 +n41008007010 +n41008007011 +n41008008001 +n41008008002 +n41008008003 +n41008008004 +n41008008005 +n41008008006 +n41008008007 +n41008008008 +n41008008009 +n41008008010 +n41008009002 +n41008009001 +n41008009003 +n41008009004 +n41008009005 +n41008009006 +n41008009007 +n41008010001 +n41008010002 +n41008010003 +n41008010004 +n41008010005 +n41008010006 +n41008010007 +n41008010008 +n41008010009 +n41008010010 +n41008010011 +n41008010012 +n41008010013 +n41008010014 +n41008010015 +n41008011001 +n41008011002 +n41008011003 +n41008011004 +n41008011005 +n41008011006 +n41008011007 +n41008011008 +n41008011009 +n41008011010 +n41008011011 +n41008011012 +n41008011013 +n41008011014 +n41008011015 +n41008011016 +n41008011017 +n41008012001 +n41008012002 +n41008012003 +n41008012004 +n41008012005 +n41008012006 +n41008012007 +n41008012008 +n41008012009 +n41008012010 +n41008012011 +n41008012012 +n41008012013 +n41008012014 +n41008012015 +n41008012016 +n41008012017 +n41008012018 +n41008012019 +n41008012020 +n41008012021 +n41008013001 +n41008013002 +n41008013003 +n41008013004 +n41008013005 +n41008013006 +n41008013007 +n41008013008 +n41008013009 +n41008014001 +n41008014002 +n41008014003 +n41008014004 +n41008014005 +n41008014006 +n41008014007 +n41008014008 +n41008014009 +n41008014010 +n41008014011 +n41008014012 +n41008014013 +n41008014014 +n41008014015 +n41008014016 +n41008015001 +n41008015002 +n41008015003 +n41008015004 +n41008015005 +n41008015006 +n41008015007 +n41008015008 +n41008015009 +n41008015010 +n41008015011 +n41008015012 +n41008015013 +n41008015014 +n41008015015 +n41008016001 +n41008016002 +n41008016003 +n41008016004 +n41008016005 +n41008016006 +n41008016007 +n41008016008 +n41008017001 +n41008017002 +n41008017003 +n41008017004 +n41008017005 +n41008017006 +n41008017007 +n41008017008 +n41008017009 +n41008017010 +n41008017011 +n41008017012 +n41008017013 +n41008017014 +n41008017015 +n41008017016 +n41008017017 +n41008017018 +n41008017019 +n41008018001 +n41008018002 +n41008018003 +n41008018004 +n41008018005 +n41008018006 +n41008018007 +n41008018008 +n41008018009 +n41008018010 +n41008018011 +n41008018012 +n41008019001 +n41008019002 +n41008019003 +n41008019004 +n41008019005 +n41008019006 +n41008019007 +n41008019008 +n41008019009 +n41008019010 +n41008019011 +n41008019012 +n41008019013 +n41008019014 +n41008019015 +n41008019016 +n41008020001 +n41008020002 +n41008020003 +n41008020004 +n41008020005 +n41008020006 +n41008020007 +n41008020008 +n41008020009 +n41008020010 +n41008020011 +n41008020012 +n41008020013 +n41008020014 +n41008021001 +n41008021002 +n41008021003 +n41008021004 +n41008021005 +n41008022001 +n41008022002 +n41008022003 +n41008022004 +n41008022005 +n41008022006 +n41008022007 +n41008022008 +n41008022009 +n41008022010 +n41008022011 +n41008022012 +n41008022013 +n41008022014 +n41008023001 +n41008023002 +n41008023003 +n41008023004 +n41008023005 +n41008023006 +n41008023007 +n41008023008 +n41008023009 +n41008023010 +n41008023011 +n41008023012 +n41008023013 +n41008023014 +n41008023015 +n41008023016 +n41008023017 +n41008023018 +n41008023019 +n41008023020 +n41008023021 +n41008023022 +n41008023023 +n41008023024 +n41008023025 +n41008023026 +n41008024001 +n41008024002 +n41008024003 +n41008024004 +n41008024005 +n41008024006 +n41008024007 +n41008024008 +n41008024009 +n41008024011 +n41008024010 +n41008025001 +n41008025002 +n41008025003 +n41008025004 +n41008025005 +n41008025006 +n41008025007 +n41008025008 +n41008025009 +n41008025010 +n41008025011 +n41008025012 +n41008025013 +n41008025014 +n41008025015 +n41008025016 +n41008025017 +n41008026001 +n41008026002 +n41008026003 +n41008026004 +n41008026005 +n41008026006 +n41008026007 +n41008026008 +n41008026009 +n41008026010 +n41008026011 +n41008026012 +n41008027001 +n41008027002 +n41008027003 +n41008027004 +n41008027005 +n41008027006 +n41008027007 +n41008027008 +n41008027009 +n41008027010 +n41008027011 +n41008027012 +n41008027013 +n41008027014 +n41008027015 +n41008027016 +n41008027017 +n41008027018 +n41008027019 +n41008027020 +n41008027021 +n41008027022 +n41008027023 +n41008027024 +n41008027025 +n41008027026 +n41008027030 +n41008027027 +n41008027028 +n41008027029 +n41008028002 +n41008028001 +n41008028003 +n41008028004 +n41008028005 +n41008028006 +n41008028007 +n41008028008 +n41008028009 +n41008028010 +n41008028011 +n41008028012 +n41008028014 +n41008028013 +n41008028015 +n41008028016 +n41008028017 +n41008028018 +n41008029001 +n41008029002 +n41008029003 +n41008029004 +n41008029006 +n41008029005 +n41008029007 +n41008029008 +n41008029010 +n41008029009 +n41008029011 +n41008029012 +n41008029013 +n41008029014 +n41008029015 +n41008029016 +n41008029017 +n41008029018 +n41008029019 +n41008030001 +n41008030002 +n41008030003 +n41008030004 +n41008030005 +n41008030006 +n41008030007 +n41008030008 +n41008031001 +n41008031002 +n41008031003 +n41008031004 +n41008031005 +n41008031006 +n41008031007 +n41008031008 +n41008031009 +n41008031010 +n41008031011 +n41008031012 +n41008031013 +n41008031014 +n41008031015 +n41008031016 +n41008031017 +n41008031018 +n41008031019 +n41008031020 +n41008031021 +n41008031022 +n41008031023 +n41008031024 +n41008031025 +n41008031026 +n41008031027 +n41008031028 +n41008031029 +n41008031030 +n41008032001 +n41008032002 +n41008032003 +n41008032004 +n41008032005 +n41008032006 +n41008032008 +n41008032009 +n41008032007 +n41008032010 +n41008032011 +n41008032012 +n41008032013 +n41008033002 +n41008033001 +n41008033003 +n41008033004 +n41008033005 +n41008033006 +n41008033007 +n41008033008 +n41008033009 +n41008033010 +n41008033011 +n41008033012 +n41008033013 +n41008033014 +n41008033015 +n41008033016 +n41008033017 +n41008033018 +n41008033019 +n41008033020 +n41008033021 +n41008033022 +n41008033023 +n41008033024 +n41008033025 +n41008033026 +n41008034001 +n41008034002 +n41008034003 +n41008034004 +n41008034005 +n41008034006 +n41008034007 +n41008034008 +n41008034009 +n41008034010 +n41008034011 +n41008034012 +n41008034013 +n41008034014 +n41008034015 +n41008034016 +n41008034017 +n41008034018 +n41008034019 +n41008034020 +n41008034021 +n41008034022 +n41008034023 +n41008034024 +n41008034025 +n41008034026 +n41008035002 +n41008035003 +n41008035001 +n41008035004 +n41008035005 +n41008035006 +n41008035007 +n41008035008 +n41008035009 +n41008035010 +n41008035012 +n41008035013 +n41008035011 +n41008035014 +n41008035015 +n41008035016 +n41008035017 +n41008035018 +n41008035019 +n41008035020 +n41008035021 +n41008035022 +n41008035023 +n41008035024 +n41008036002 +n41008036001 +n41008036003 +n41008036004 +n41008036005 +n41008036006 +n41008036007 +n41008036008 +n41008036009 +n41008036010 +n41008036011 +n41008036012 +n41008036013 +n41008037002 +n41008037001 +n41008037003 +n41008037004 +n41008037005 +n41008037006 +n41008037007 +n41008037008 +n41008038002 +n41008038003 +n41008038001 +n41008038004 +n41008038005 +n41008038006 +n41008038007 +n41008038008 +n41008038009 +n41008038010 +n41008038011 +n41008038012 +n41008038013 +n41008038014 +n41008038015 +n41008038016 +n41008038017 +n41008038018 +n41008038019 +n41008038020 +n41008038021 +n41008038022 +n41008038023 +n41008038024 +n41008038025 +n41008038026 +n41008038027 +n41008038028 +n41008038029 +n41008038030 +n41008038031 +n41008038032 +n41008038033 +n41008038034 +n41008038035 +n41008038036 +n41008038037 +n41009001001 +n41009001002 +n41009001003 +n41009001004 +n41009001005 +n41009001006 +n41009001007 +n41009001008 +n41009001009 +n41009001011 +n41009001010 +n41009001012 +n41009001013 +n41009001014 +n41009001015 +n41009001016 +n41009001017 +n41009001018 +n41009001019 +n41009001020 +n41009001021 +n41009001022 +n41009001023 +n41009001024 +n41009001025 +n41009001026 +n41009001027 +n41009002001 +n41009002002 +n41009002003 +n41009002004 +n41009002005 +n41009002006 +n41009002007 +n41009002008 +n41009002009 +n41009002010 +n41009002011 +n41009002012 +n41009002013 +n41009002014 +n41009002015 +n41009002016 +n41009002017 +n41009002018 +n41009002019 +n41009002020 +n41009002021 +n41009002022 +n41009002023 +n41009002024 +n41009002025 +n41009002026 +n41009002027 +n41009003001 +n41009003002 +n41009003003 +n41009003004 +n41009003005 +n41009003006 +n41009003007 +n41009003008 +n41009003009 +n41009003010 +n41009003011 +n41009003012 +n41009003013 +n41009003014 +n41009003015 +n41009003016 +n41009003017 +n41009004001 +n41009004002 +n41009004003 +n41009004004 +n41009004005 +n41009004006 +n41009004007 +n41009004008 +n41009004009 +n41009004010 +n41009004011 +n41009005001 +n41009005002 +n41009005003 +n41009005004 +n41009005005 +n41009005006 +n41009005007 +n41009005008 +n41009005009 +n41009005010 +n41009005011 +n41009005012 +n41009005013 +n41009005014 +n41009005015 +n41009005016 +n41009005017 +n41009005018 +n41009005019 +n41009005020 +n41009005021 +n41009005022 +n41009005023 +n41009005024 +n41009005025 +n41009006002 +n41009006001 +n41009006003 +n41009006004 +n41009006005 +n41009006007 +n41009006006 +n41009006008 +n41009007001 +n41009007002 +n41009007003 +n41009007004 +n41009007005 +n41009007006 +n41009007007 +n41009007008 +n41009007009 +n41009007010 +n41009007011 +n41009007012 +n41009007013 +n41009007014 +n41009007015 +n41009007016 +n41009007017 +n41009007018 +n41009007019 +n41009007020 +n41009008001 +n41009008002 +n41009008003 +n41009008004 +n41009008005 +n41009008006 +n41009008007 +n41009008008 +n41009008009 +n41009008010 +n41009008011 +n41009008012 +n41009009001 +n41009009002 +n41009009003 +n41009009004 +n41009009005 +n41009009006 +n41009009007 +n41009009008 +n41009009009 +n41009009010 +n41009009011 +n41009009012 +n41009009013 +n41009009014 +n41009009015 +n41009009016 +n41009009017 +n41009009018 +n41009009019 +n41009009020 +n41009009021 +n41009009022 +n41009009023 +n41009010001 +n41009010002 +n41009010003 +n41009010004 +n41009010005 +n41009010006 +n41009010007 +n41009010008 +n41009010009 +n41009010010 +n41009010011 +n41009010012 +n41009010013 +n41009011001 +n41009011002 +n41009011003 +n41009011004 +n41009011005 +n41009011006 +n41009011007 +n41009011008 +n41009011009 +n41009011011 +n41009011010 +n41009011012 +n41009011013 +n41009012002 +n41009012001 +n41009012003 +n41009012004 +n41009012006 +n41009012005 +n41009012007 +n41009012008 +n41009012009 +n41009012010 +n41009012011 +n41009012012 +n41009012013 +n41009012014 +n41009012015 +n41009012016 +n41009012017 +n41009012018 +n41009012019 +n41009012020 +n41009012021 +n41009012022 +n41009012023 +n41009013001 +n41009013002 +n41009013003 +n41009013004 +n41009013005 +n41009013006 +n41009013007 +n41009013008 +n41009013009 +n41009013010 +n41009013011 +n41009013012 +n41009013013 +n41009013014 +n41009013015 +n41009013016 +n41009014001 +n41009014002 +n41009014003 +n41009014004 +n41009014005 +n41009014006 +n41009014007 +n41009014008 +n41009014009 +n41009014010 +n41009014011 +n41009014012 +n41009014013 +n41009014014 +n41009014015 +n41009015001 +n41009015002 +n41009015003 +n41009015004 +n41009015005 +n41009015006 +n41009015007 +n41009015008 +n41009015009 +n41009015010 +n41009015011 +n41009015012 +n41009016001 +n41009016002 +n41009016003 +n41009016004 +n41009016005 +n41009016006 +n41009016007 +n41009017001 +n41009017002 +n41009017003 +n41009017004 +n41009017005 +n41009017006 +n41009017007 +n41009017008 +n41009017009 +n41009017010 +n41009017011 +n41009017012 +n41009017013 +n41009017014 +n41009017015 +n41009017016 +n41009017017 +n41009018001 +n41009018003 +n41009018002 +n41009018004 +n41009018005 +n41009018006 +n41009018007 +n41009018008 +n41009018009 +n41009018010 +n41009018011 +n41009018012 +n41009018013 +n41009018014 +n41009018015 +n41009018016 +n41009018017 +n41009018018 +n41009018019 +n41009018020 +n41009018021 +n41009018022 +n41009018023 +n41009018024 +n41009018025 +n41009018026 +n41009019002 +n41009019001 +n41009019003 +n41009019004 +n41009019005 +n41009019006 +n41009019007 +n41009019008 +n41009019009 +n41009019010 +n41009019011 +n41009019012 +n41009019013 +n41009019014 +n41009019015 +n41009019016 +n41009019017 +n41009019018 +n41009019019 +n41009019020 +n41009019021 +n41009020001 +n41009020002 +n41009020003 +n41009020004 +n41009020005 +n41009020006 +n41009020007 +n41009020008 +n41009020009 +n41009020010 +n41009020011 +n41009020012 +n41009020013 +n41009020014 +n41009020015 +n41009020016 +n41009020017 +n41009020018 +n41009020019 +n41009020020 +n41009021001 +n41009021002 +n41009021003 +n41009021004 +n41009021005 +n41009021006 +n41009021007 +n41009021008 +n41009021009 +n41009021010 +n41009021011 +n41009021012 +n41009021014 +n41009021013 +n41009021015 +n41009021016 +n41009021017 +n41009022001 +n41009022002 +n41009022003 +n41009022004 +n41009022005 +n41009022006 +n41009022007 +n41009022008 +n41009022009 +n41009022010 +n41009022011 +n41009022012 +n41009022013 +n41009022014 +n41009022015 +n41009022016 +n41009022017 +n41009022018 +n41009022019 +n41009022020 +n41009022021 +n41009022022 +n41009023002 +n41009023001 +n41009023003 +n41009023004 +n41009023005 +n41009023006 +n41009023007 +n41009023008 +n41009023009 +n41009023010 +n41009023011 +n41009023012 +n41009024001 +n41009024002 +n41009024003 +n41009024004 +n41009024005 +n41009024006 +n41009024007 +n41009024008 +n41009024009 +n41009024010 +n41009024011 +n41009024012 +n41009025002 +n41009025003 +n41009025004 +n41009025001 +n41009025005 +n41009025006 +n41009025007 +n41009025008 +n41009025009 +n41009025010 +n41009025011 +n41009025012 +n41009025013 +n41009025014 +n41009025015 +n41009025016 +n41009025017 +n41009025018 +n41009025019 +n41009025020 +n41009025021 +n41009025022 +n41009025023 +n41009025024 +n41009025025 +n41009025026 +n41009025027 +n41009025028 +n41009025029 +n41009025030 +n41009026001 +n41009026002 +n41009026003 +n41009026004 +n41009026005 +n41009026006 +n41009026007 +n41009026008 +n41009026009 +n41009026010 +n41009026011 +n41009026012 +n41009026013 +n41009026014 +n41009026015 +n41009026016 +n41009027002 +n41009027001 +n41009027003 +n41009027004 +n41009027005 +n41009027006 +n41009027007 +n41009027008 +n41009027009 +n41009027010 +n41009027011 +n41009028001 +n41009028002 +n41009028003 +n41009028004 +n41009028005 +n41009028006 +n41009028007 +n41009028008 +n41009028009 +n41009028010 +n41009028011 +n41009028012 +n41009028013 +n41009028014 +n41009028015 +n41009028016 +n41009028017 +n41009028018 +n41009029001 +n41009029002 +n41009029003 +n41009029004 +n41009029005 +n41009029006 +n41009029007 +n41009029008 +n41009029009 +n41009029010 +n41009029011 +n41009029012 +n41009029013 +n41009029014 +n41009030001 +n41009030002 +n41009030003 +n41009030004 +n41009030005 +n41009030006 +n41009030007 +n41009030008 +n41009030009 +n41009030010 +n41009030011 +n41009030012 +n41009031002 +n41009031001 +n41009031003 +n41009031004 +n41009031005 +n41009031006 +n41009031007 +n41009031008 +n41009031009 +n41009031010 +n41009031011 +n41009031012 +n41009031013 +n41009031014 +n41009031015 +n41009031016 +n41009031017 +n41009031018 +n41009031019 +n41009031020 +n41009031021 +n41009031022 +n41009031023 +n41009031024 +n41009031025 +n41009031026 +n41009032002 +n41009032001 +n41009032003 +n41009032004 +n41009032005 +n41009032006 +n41009032007 +n41009032008 +n41009032009 +n41009033001 +n41009033002 +n41009033003 +n41009033004 +n41009033005 +n41009033006 +n41009033007 +n41009033008 +n41009033009 +n41009033010 +n41009033011 +n41009033012 +n41009033013 +n41009033014 +n41009033015 +n41009033016 +n41009034002 +n41009034001 +n41009034003 +n41009034006 +n41009034004 +n41009034005 +n41009034007 +n41009034008 +n41009034009 +n41009034010 +n41009034011 +n41009034012 +n41009035001 +n41009035002 +n41009035003 +n41009035004 +n41009035005 +n41009035006 +n41009035007 +n41009035008 +n41009035009 +n41009035010 +n41009035011 +n41009035012 +n41009035013 +n41009035014 +n41009035015 +n41009035016 +n41009035017 +n41009035018 +n41009035019 +n41009036001 +n41009036002 +n41009036003 +n41009036004 +n41009036005 +n41009036006 +n41009036007 +n41009036008 +n41009036009 +n41009036010 +n41009036011 +n41009036012 +n41009036013 +n41009037002 +n41009037001 +n41009037003 +n41009037004 +n41009037005 +n41009037006 +n41009037007 +n41009037008 +n41009037009 +n41009037010 +n41009037011 +n41009037012 +n41009037013 +n41009037014 +n41009037016 +n41009037015 +n41009037017 +n41009037018 +n41009037019 +n41009037020 +n41009037021 +n41009037022 +n41009037023 +n41009037024 +n41009037025 +n41009038001 +n41009038002 +n41009038003 +n41009038004 +n41009038005 +n41009038006 +n41009038007 +n41009038008 +n41009038009 +n41009038010 +n41009038011 +n41009038012 +n41009038013 +n41009038014 +n41009038015 +n41009038016 +n41009038017 +n41009038018 +n41009038019 +n41009038020 +n41009038021 +n41009038022 +n41009038023 +n41009038024 +n41009039002 +n41009039001 +n41009039003 +n41009039004 +n41009039005 +n41009039006 +n41009039007 +n41009039009 +n41009039008 +n41009039010 +n41009039011 +n41009039012 +n41009039013 +n41009039014 +n41009039015 +n41009039016 +n41009039017 +n41009039018 +n41009039019 +n41009039020 +n41009039021 +n41009039022 +n41009040002 +n41009040001 +n41009040003 +n41009040004 +n41009040005 +n41009040006 +n41009040007 +n41009040008 +n41009040009 +n41009041002 +n41009041003 +n41009041001 +n41009041004 +n41009041005 +n41009041006 +n41009041007 +n41009041008 +n41009041009 +n41009041010 +n41009041011 +n41009041012 +n41009041013 +n41009041014 +n41009041015 +n41009041016 +n41009041017 +n41009041018 +n41009041019 +n41009041020 +n41009041021 +n41009041022 +n41009042001 +n41009042003 +n41009042002 +n41009042004 +n41009042005 +n41009042006 +n41009042007 +n41009042008 +n41009042009 +n41009042010 +n41009042011 +n41009042012 +n41009042013 +n41009042014 +n41009042015 +n41009042016 +n41009042017 +n41009042018 +n41009042019 +n41009042020 +n41009042021 +n41009042022 +n41009042023 +n41009042024 +n41009042025 +n41009042026 +n41009042027 +n41009043001 +n41009043002 +n41009043003 +n41009043004 +n41009043005 +n41009043006 +n41009043007 +n41009043008 +n41009043009 +n41009043010 +n41009043011 +n41009043012 +n41009043013 +n41009043014 +n41009043015 +n41009043016 +n41009043017 +n41009043018 +n41009043019 +n41009043020 +n41009043021 +n41009043022 +n41009043023 +n41009043024 +n41009043025 +n41009043026 +n41009043027 +n41009043028 +n41009043029 +n41009043030 +n41009043031 +n41009045001 +n41009045002 +n41009045003 +n41009045004 +n41009045005 +n41009045006 +n41009045007 +n41009045008 +n41009045009 +n41009045010 +n41009045011 +n41009045012 +n41009045013 +n41009045014 +n41009045015 +n41009045016 +n41009045017 +n41009045018 +n41009045019 +n41009045020 +n41009045021 +n41009045022 +n41009045023 +n41009045024 +n41009045025 +n41009045026 +n41009047001 +n41009047002 +n41009047003 +n41009047004 +n41009047005 +n41009047006 +n41009047007 +n41009047008 +n41009047009 +n41009047010 +n41009047012 +n41009047011 +n41009047013 +n41009047014 +n41009047015 +n41009047016 +n41009047017 +n41009047018 +n41009047019 +n41009047020 +n41009047021 +n41009047022 +n41009047023 +n41009047024 +n41009047025 +n41009047026 +n41009047027 +n41009048001 +n41009048002 +n41009048003 +n41009048004 +n41009048005 +n41009048006 +n41009048007 +n41009048008 +n41009048009 +n41009048010 +n41009048011 +n41009049002 +n41009049001 +n41009049003 +n41009049004 +n41009050001 +n41009050002 +n41009050003 +n41009050005 +n41009050004 +n41009050006 +n41009050007 +n41009050008 +n41009050009 +n41009050010 +n41009050011 +n41009050012 +n41009050013 +n41009050014 +n41009050015 +n41009050016 +n41009050017 +n41009050018 +n41009050019 +n41009050020 +n41009050021 +n41010001001 +n41010001002 +n41010001003 +n41010001004 +n41010001005 +n41010001006 +n41010001007 +n41010001008 +n41010001009 +n41010001010 +n41010001011 +n41010001012 +n41010001013 +n41010001014 +n41010001015 +n41010001016 +n41010001017 +n41010001018 +n41010001019 +n41010001020 +n41010001021 +n41010001022 +n41010001023 +n41010001024 +n41010001025 +n41010002001 +n41010002002 +n41010002003 +n41010002004 +n41010002005 +n41010002006 +n41010002007 +n41010002008 +n41010002009 +n41010002010 +n41010002011 +n41010002012 +n41010003002 +n41010003001 +n41010003003 +n41010003004 +n41010003005 +n41010003006 +n41010003007 +n41010003008 +n41010003009 +n41010004002 +n41010004001 +n41010004003 +n41010004004 +n41010004005 +n41010004006 +n41010004007 +n41010004008 +n41010004009 +n41010004010 +n41010005002 +n41010005001 +n41010005003 +n41010005004 +n41010005005 +n41010005006 +n41010005007 +n41010005008 +n41010005009 +n41010005010 +n41010005011 +n41010005012 +n41010005013 +n41010005014 +n41010006002 +n41010006001 +n41010006003 +n41010006004 +n41010006005 +n41010006006 +n41010006007 +n41010006008 +n41010006009 +n41010007001 +n41010007002 +n41010007003 +n41010007004 +n41010007005 +n41010007006 +n41010007007 +n41010007008 +n41010007009 +n41010007010 +n41010008001 +n41010008002 +n41010008003 +n41010008004 +n41010008005 +n41010008006 +n41010008007 +n41010008008 +n41010008009 +n41010008010 +n41010008011 +n41010008012 +n41010008013 +n41010008014 +n41010009002 +n41010009001 +n41010009003 +n41010009004 +n41010009005 +n41010009006 +n41010009007 +n41010009008 +n41010010001 +n41010010002 +n41010010003 +n41010010004 +n41010010005 +n41010010006 +n41010010007 +n41010010008 +n41010010009 +n41010010010 +n41010010011 +n41010011001 +n41010011002 +n41010011003 +n41010011005 +n41010011004 +n41010011006 +n41010011007 +n41010011008 +n41010011009 +n41010011010 +n41010011011 +n41010011012 +n41010011013 +n41010011014 +n41010011015 +n41010012001 +n41010012002 +n41010012003 +n41010012004 +n41010012005 +n41010012006 +n41010012007 +n41010012008 +n41010012009 +n41010012010 +n41010013001 +n41010013002 +n41010013003 +n41010013004 +n41010013005 +n41010013006 +n41010013007 +n41010013009 +n41010013008 +n41010013010 +n41010013011 +n41010013012 +n41010014002 +n41010014001 +n41010014003 +n41010014004 +n41010014005 +n41010014006 +n41010014007 +n41010014008 +n41010014009 +n41010014010 +n41010014011 +n41010014012 +n41010014013 +n41010014014 +n41010014015 +n41010014016 +n41010014017 +n41010014019 +n41010014018 +n41010014020 +n41010014021 +n41010014022 +n41010014023 +n41010014024 +n41010014025 +n41010015001 +n41010015002 +n41010015003 +n41010015005 +n41010015004 +n41010015006 +n41010015007 +n41010015008 +n41010015009 +n41010015010 +n41010015011 +n41010015012 +n41010015013 +n41010015014 +n41010015015 +n41010015016 +n41010015017 +n41010015018 +n41010016001 +n41010016002 +n41010016003 +n41010016004 +n41010016005 +n41010016006 +n41010016007 +n41010016008 +n41010016009 +n41010017001 +n41010017002 +n41010017003 +n41010017004 +n41010017005 +n41010017007 +n41010017006 +n41010017008 +n41010017009 +n41010017010 +n41010017011 +n41010017012 +n41010017013 +n41010017014 +n41010017015 +n41010017016 +n41010017017 +n41010017018 +n41010017019 +n41010017020 +n41010018002 +n41010018001 +n41010018003 +n41010018004 +n41010018005 +n41010018006 +n41010018007 +n41010018008 +n41010018009 +n41010018010 +n41010018011 +n41010018012 +n41010018013 +n41010018014 +n41010018015 +n41010018016 +n41010019001 +n41010019002 +n41010019003 +n41010019004 +n41010019005 +n41010019006 +n41010019007 +n41010019008 +n41010019009 +n41010019010 +n41010019011 +n41010019012 +n41010019013 +n41010019014 +n41010019015 +n41010019016 +n41010019017 +n41010019018 +n41010019019 +n41010019020 +n41010020002 +n41010020001 +n41010020003 +n41010020004 +n41010020005 +n41010020006 +n41010020007 +n41010020008 +n41010020009 +n41010020010 +n41010020011 +n41010021002 +n41010021001 +n41010021003 +n41010021004 +n41010021005 +n41010021006 +n41010021007 +n41010021008 +n41010021009 +n41010021010 +n41010021011 +n41010021012 +n41010021013 +n41010021014 +n41010021015 +n41010021016 +n41010021017 +n41010021018 +n41010021019 +n41010021020 +n41010021021 +n41010021022 +n41010021023 +n41010021024 +n41010021025 +n41010021026 +n41010021027 +n41010021028 +n41010021029 +n41010021030 +n41010022002 +n41010022001 +n41010022003 +n41010022004 +n41010022005 +n41010022006 +n41010022007 +n41010022008 +n41010022010 +n41010022009 +n41010022011 +n41010022012 +n41010022013 +n41010023001 +n41010023002 +n41010023003 +n41010023004 +n41010023005 +n41010023006 +n41010023007 +n41010023008 +n41010023009 +n41010023010 +n41010023011 +n41010023012 +n41010023013 +n41010023014 +n41010023015 +n41010023016 +n41010023017 +n41010023018 +n41010023019 +n41010023020 +n41010024002 +n41010024001 +n41010024003 +n41010024004 +n41010024005 +n41010024006 +n41010024007 +n41010024008 +n41010024010 +n41010024009 +n41010024011 +n41010024012 +n41010024013 +n41010024014 +n41010024015 +n41010024016 +n41010024017 +n41010024018 +n41010024019 +n41010024020 +n41010024021 +n41010024022 +n41010024023 +n41010024024 +n41010024025 +n41010025001 +n41010025002 +n41010025003 +n41010025004 +n41010025005 +n41010025006 +n41010025007 +n41010025008 +n41010025009 +n41010025010 +n41010025011 +n41010025012 +n41010025013 +n41010025014 +n41010025015 +n41010025016 +n41010025017 +n41010026002 +n41010026001 +n41010026003 +n41010026004 +n41010026005 +n41010026006 +n41010026007 +n41010026008 +n41010026009 +n41010026010 +n41010026011 +n41010027001 +n41010027002 +n41010027003 +n41010027004 +n41010027005 +n41010027006 +n41010027007 +n41010027008 +n41010027009 +n41010027010 +n41010027011 +n41010027012 +n41010027014 +n41010027013 +n41010027015 +n41010027016 +n41010027017 +n41010027018 +n41010028001 +n41010028003 +n41010028004 +n41010028002 +n41010028005 +n41010028006 +n41010028007 +n41010028008 +n41010028009 +n41010028010 +n41010028011 +n41010028012 +n41010029001 +n41010029002 +n41010029003 +n41010029004 +n41010029005 +n41010029006 +n41010029007 +n41010029008 +n41010029009 +n41010029010 +n41010029011 +n41010029012 +n41010029013 +n41010029014 +n41010029015 +n41010029016 +n41010029017 +n41010029018 +n41010029019 +n41010029020 +n41010029021 +n41010029022 +n41010029023 +n41010029024 +n41010029025 +n41010029026 +n41010029027 +n41010029028 +n41010029029 +n41010030001 +n41010030002 +n41010030003 +n41010030005 +n41010030006 +n41010030007 +n41010030008 +n41010030009 +n41010030004 +n41010030010 +n41010030011 +n41010030012 +n41010030013 +n41010030014 +n41010030015 +n41010030016 +n41010030017 +n41010030018 +n41010030019 +n41010030020 +n41010030021 +n41010030022 +n41010030023 +n41010030024 +n41010030025 +n41010030026 +n41010030027 +n41010030028 +n41010030029 +n41010030030 +n41010031002 +n41010031001 +n41010031004 +n41010031003 +n41010031005 +n41010031006 +n41010031007 +n41010031008 +n41010031009 +n41010032002 +n41010032001 +n41010032003 +n41010032004 +n41010032005 +n41010032006 +n41010032007 +n41010032008 +n41010032009 +n41010032010 +n41010032011 +n41010032012 +n41010032013 +n41010032014 +n41010032015 +n41010032016 +n41010032018 +n41010032017 +n41010032019 +n41010032020 +n41010032021 +n41010032022 +n41010032023 +n41010032024 +n41010032025 +n41010032026 +n41010032027 +n41010032028 +n41010032029 +n41010032030 +n41010032031 +n41010032032 +n41010033001 +n41010033002 +n41010033003 +n41010033004 +n41010033005 +n41010033006 +n41010033007 +n41010033008 +n41010033009 +n41010033010 +n41010033011 +n41010033012 +n41010033013 +n41010033014 +n41010033015 +n41010033016 +n41010033017 +n41010033018 +n41010033019 +n41010033020 +n41010033021 +n41010033022 +n41010033023 +n41010033024 +n41010033025 +n41010034001 +n41010034002 +n41010034003 +n41010034004 +n41010034005 +n41010034006 +n41010034007 +n41010034008 +n41010034009 +n41010034010 +n41010034011 +n41010034012 +n41010034013 +n41010034014 +n41010034015 +n41010034016 +n41010035001 +n41010035002 +n41010035003 +n41010035004 +n41010035005 +n41010035006 +n41010035007 +n41010035008 +n41010035009 +n41010035010 +n41010035011 +n41010035012 +n41010035013 +n41010035014 +n41010035016 +n41010035015 +n41010035017 +n41010035018 +n41010035019 +n41010035020 +n41010036002 +n41010036001 +n41010036003 +n41010036004 +n41010036006 +n41010036005 +n41010036007 +n41010036008 +n41010036009 +n41010037002 +n41010037001 +n41010037003 +n41010037004 +n41010037005 +n41010037006 +n41010037007 +n41010037008 +n41010037010 +n41010037009 +n41010037011 +n41010037012 +n41010037013 +n41010037014 +n41010037015 +n41010037016 +n41010037017 +n41010037018 +n41010037019 +n41010037020 +n41010038002 +n41010038001 +n41010038003 +n41010038004 +n41010038005 +n41010038006 +n41010038007 +n41010038008 +n41010038009 +n41010038010 +n41010038011 +n41010038012 +n41010038013 +n41010038014 +n41010038015 +n41010038016 +n41010038017 +n41010038018 +n41010038019 +n41010038020 +n41010038021 +n41010038022 +n41010038023 +n41010039002 +n41010039001 +n41010039003 +n41010039004 +n41010039005 +n41010039007 +n41010039006 +n41010039008 +n41010039009 +n41010039010 +n41010039011 +n41010039012 +n41010039013 +n41010039014 +n41010039015 +n41010039016 +n41010039017 +n41010039018 +n41010039019 +n41010039020 +n41010039021 +n41010039022 +n41010039023 +n41010040002 +n41010040001 +n41010040003 +n41010040004 +n41010040005 +n41010040006 +n41010040007 +n41010040008 +n41010040009 +n41010040010 +n41010040011 +n41010040012 +n41010040013 +n41010040014 +n41010040015 +n41010040016 +n41010041001 +n41010041002 +n41010041003 +n41010041004 +n41010041005 +n41010041006 +n41010041007 +n41010041008 +n41010041009 +n41010041010 +n41010042001 +n41010042002 +n41010042003 +n41010042004 +n41010042005 +n41010042006 +n41010042007 +n41010042008 +n41010042009 +n41010042010 +n41010042011 +n41010042012 +n41010042013 +n41010042014 +n41010042015 +n41010042016 +n41010042017 +n41010042018 +n41010042019 +n41010042020 +n41010042021 +n41010042022 +n41010043003 +n41010043001 +n41010043002 +n41010043004 +n41010043005 +n41010043006 +n41010043007 +n41010043009 +n41010043008 +n41010043010 +n41010043011 +n41010043012 +n41010043013 +n41010043014 +n41010043015 +n41010043016 +n41010043017 +n41010044001 +n41010044003 +n41010044002 +n41010044004 +n41010044005 +n41010044006 +n41010044007 +n41010044008 +n41010044009 +n41010044010 +n41010044011 +n41010045002 +n41010045001 +n41010045003 +n41010045004 +n41010045005 +n41010045006 +n41010045007 +n41010045008 +n41010045009 +n41010045010 +n41010045011 +n41010045012 +n41010045013 +n41010045014 +n41010045015 +n41010045016 +n41010045017 +n41010045018 +n41010045019 +n41010046001 +n41010046002 +n41010046003 +n41010046004 +n41010046005 +n41010046006 +n41010046007 +n41010046008 +n41010046009 +n41010046010 +n41010046011 +n41010046012 +n41010046013 +n41010046014 +n41010046015 +n41010046016 +n41010046017 +n41010046018 +n41010046019 +n41010046020 +n41010046021 +n41010046022 +n41010046023 +n41010046024 +n41010046025 +n41010046026 +n41010047001 +n41010047002 +n41010047003 +n41010047004 +n41010047005 +n41010047006 +n41010047007 +n41010047008 +n41010047009 +n41010047010 +n41010047011 +n41010047012 +n41010047013 +n41010047014 +n41010047015 +n41010047016 +n41010048001 +n41010048002 +n41010048003 +n41010048004 +n41010048005 +n41010048006 +n41010048008 +n41010048007 +n41010048009 +n41010048010 +n41010048011 +n41010048012 +n41010048013 +n41010048014 +n41010048015 +n41010049001 +n41010049002 +n41010049003 +n41010049004 +n41010049005 +n41010049006 +n41010049007 +n41010049008 +n41010049009 +n41010049010 +n41010049011 +n41010049012 +n41010049013 +n41010049014 +n41010049015 +n41010049016 +n41010049017 +n41010050002 +n41010050001 +n41010050003 +n41010050004 +n41010050005 +n41010050006 +n41010050007 +n41010050008 +n41010050009 +n41010050010 +n41010050011 +n41010051001 +n41010051002 +n41010051003 +n41010051004 +n41010051005 +n41010051006 +n41010051007 +n41010051008 +n41010051010 +n41010051009 +n41010051012 +n41010051011 +n41010051013 +n41010051014 +n41010051015 +n41010051016 +n41010051017 +n41010051018 +n41010052001 +n41010052002 +n41010052003 +n41010052004 +n41010052005 +n41010052006 +n41010052007 +n41010052008 +n41010052009 +n41010052010 +n41010052011 +n41010052012 +n41010052013 +n41010052014 +n41010052015 +n41010052016 +n41010052017 +n41010052018 +n41010052019 +n41010052020 +n41011001001 +n41011001002 +n41011001003 +n41011001004 +n41011001005 +n41011001006 +n41011001007 +n41011001008 +n41011001009 +n41011001010 +n41011001011 +n41011001012 +n41011001013 +n41011001014 +n41011001015 +n41011001016 +n41011001017 +n41011001018 +n41011001019 +n41011002001 +n41011002002 +n41011002003 +n41011002004 +n41011002005 +n41011002006 +n41011002007 +n41011002008 +n41011002009 +n41011002010 +n41011002011 +n41011002012 +n41011002013 +n41011002014 +n41011002015 +n41011002016 +n41011002018 +n41011002017 +n41011002019 +n41011002020 +n41011002021 +n41011002023 +n41011002022 +n41011002024 +n41011002025 +n41011002026 +n41011002027 +n41011002028 +n41011003001 +n41011003002 +n41011003003 +n41011003004 +n41011003005 +n41011003006 +n41011003007 +n41011003008 +n41011003009 +n41011003010 +n41011003011 +n41011003012 +n41011003013 +n41011003014 +n41011003015 +n41011003016 +n41011003017 +n41011003018 +n41011003019 +n41011003020 +n41011004001 +n41011004002 +n41011004003 +n41011004004 +n41011004005 +n41011004006 +n41011004007 +n41011004008 +n41011004009 +n41011004010 +n41011004011 +n41011004012 +n41011004013 +n41011004014 +n41011004015 +n41011005001 +n41011005002 +n41011005003 +n41011005004 +n41011005005 +n41011005006 +n41011005007 +n41011005008 +n41011005009 +n41011005010 +n41011005011 +n41011005012 +n41011006002 +n41011006001 +n41011006003 +n41011006004 +n41011006005 +n41011006006 +n41011006007 +n41011006008 +n41011006009 +n41011006010 +n41011006011 +n41011007001 +n41011007002 +n41011007003 +n41011007004 +n41011007005 +n41011007006 +n41011007007 +n41011007008 +n41011007009 +n41011007010 +n41011007011 +n41011007012 +n41011007013 +n41011007014 +n41011007015 +n41011007016 +n41011007017 +n41011008001 +n41011008002 +n41011008003 +n41011008004 +n41011008005 +n41011008006 +n41011008007 +n41011008008 +n41011008009 +n41011008011 +n41011008010 +n41011008012 +n41011008013 +n41011008014 +n41011008015 +n41011008016 +n41011009001 +n41011009002 +n41011009003 +n41011009004 +n41011009005 +n41011009006 +n41011009007 +n41011009008 +n41011009009 +n41011009010 +n41011009011 +n41011009012 +n41011009013 +n41011009014 +n41011010001 +n41011010002 +n41011010003 +n41011010004 +n41011010005 +n41011010006 +n41011010007 +n41011010008 +n41011010009 +n41011010010 +n41011010011 +n41011010012 +n41011011001 +n41011011002 +n41011011003 +n41011011004 +n41011011005 +n41011011006 +n41011011007 +n41011011008 +n41011011011 +n41011011012 +n41011011013 +n41011011014 +n41011011015 +n41011011009 +n41011011010 +n41011011016 +n41011011017 +n41011011018 +n41011011019 +n41011011020 +n41011011021 +n41011012001 +n41011012002 +n41011012003 +n41011012004 +n41011012005 +n41011012006 +n41011012007 +n41011012008 +n41011013001 +n41011013002 +n41011013004 +n41011013005 +n41011013003 +n41011013006 +n41011013007 +n41011013008 +n41011013010 +n41011013009 +n41011013011 +n41011013012 +n41011013013 +n41011013014 +n41011013015 +n41011013016 +n41011013017 +n41011013018 +n41011013019 +n41011013020 +n41011013021 +n41011013022 +n41011013023 +n41011013025 +n41011013024 +n41011013026 +n41011013027 +n41011013028 +n41011013029 +n41011014001 +n41011014002 +n41011014003 +n41011014004 +n41011014005 +n41011014006 +n41011014007 +n41011014008 +n41011014009 +n41011014010 +n41011014011 +n41011014012 +n41011014013 +n41011014014 +n41011014015 +n41011014016 +n41011014017 +n41011014018 +n41011015001 +n41011015002 +n41011015003 +n41011015004 +n41011015005 +n41011015006 +n41011015007 +n41011015008 +n41011015009 +n41011015010 +n41011015011 +n41011015012 +n41011015013 +n41011015014 +n41011015015 +n41011015016 +n41011015017 +n41011015018 +n41011015019 +n41011015020 +n41011015021 +n41011015022 +n41011015023 +n41011015024 +n41011015025 +n41011015026 +n41011015027 +n41011015028 +n41011015029 +n41011015030 +n41011015031 +n41011015032 +n41011016001 +n41011016002 +n41011016003 +n41011016004 +n41011016005 +n41011016006 +n41011016007 +n41011016008 +n41011016009 +n41011016010 +n41011017001 +n41011017002 +n41011017003 +n41011017004 +n41011017005 +n41011017006 +n41011017007 +n41011017008 +n41011017009 +n41011017010 +n41011017011 +n41011017012 +n41011017013 +n41011017014 +n41011017015 +n41011017016 +n41011017017 +n41011017019 +n41011017018 +n41011017020 +n41011017021 +n41011017022 +n41011017023 +n41011018001 +n41011018002 +n41011018003 +n41011018004 +n41011018005 +n41011018006 +n41011018007 +n41011018008 +n41011018009 +n41011018010 +n41011018011 +n41011018012 +n41011018014 +n41011018013 +n41011018015 +n41011018017 +n41011018016 +n41011018018 +n41011018019 +n41011018020 +n41011018021 +n41011018022 +n41011018023 +n41011018024 +n41011019001 +n41011019002 +n41011019003 +n41011019004 +n41011019005 +n41011019006 +n41011019007 +n41011019008 +n41011020001 +n41011020002 +n41011020003 +n41011020004 +n41011020005 +n41011020006 +n41011020007 +n41011020008 +n41011020009 +n41011021001 +n41011021002 +n41011021003 +n41011021004 +n41011021005 +n41011021006 +n41011021007 +n41011021008 +n41011021009 +n41011021010 +n41011021011 +n41011021012 +n41011021013 +n41011022001 +n41011022002 +n41011022003 +n41011022004 +n41011022005 +n41011022006 +n41011022007 +n41011022008 +n41011022009 +n41011023001 +n41011023002 +n41011023003 +n41011023004 +n41011023006 +n41011023005 +n41011023007 +n41011023008 +n41011023009 +n41011023010 +n41011023011 +n41011023012 +n41011023013 +n41011023014 +n41011023015 +n41011023016 +n41011023017 +n41011023018 +n41011023019 +n41011023020 +n41011023021 +n41011023022 +n41011023023 +n41011023024 +n41011023025 +n41011023026 +n41011023027 +n41011023028 +n41011023029 +n41011023030 +n41011023031 +n41011024001 +n41011024002 +n41011024003 +n41011024004 +n41011024005 +n41011024006 +n41011024007 +n41011024008 +n41011024009 +n41011024010 +n41011024011 +n41011024012 +n41011024013 +n41011024014 +n41011024015 +n41011025001 +n41011025002 +n41011025003 +n41011025004 +n41011025005 +n41011025006 +n41011025007 +n41011025008 +n41011025009 +n41011025010 +n41011025011 +n41011025012 +n41011025013 +n41011025014 +n41011025015 +n41011025016 +n41011025017 +n41011025018 +n41011025019 +n41011025020 +n41011025021 +n41011025022 +n41011025023 +n41011025024 +n41011027001 +n41011027002 +n41011027003 +n41011027004 +n41011027005 +n41011027006 +n41011027007 +n41011027008 +n41011027009 +n41011027010 +n41011027011 +n41011027012 +n41011027013 +n41011027014 +n41011027015 +n41011027016 +n41011027017 +n41011027018 +n41011027019 +n41011027020 +n41011027021 +n41011027022 +n41011028001 +n41011028002 +n41011028003 +n41011028004 +n41011028005 +n41011028006 +n41011028007 +n41011028008 +n41011028009 +n41011028010 +n41011028011 +n41011028012 +n41011028013 +n41011028014 +n41011028015 +n41011028016 +n41011028017 +n41011028018 +n41011029002 +n41011029001 +n41011029003 +n41011029004 +n41011029005 +n41011029006 +n41011029007 +n41011029008 +n41011029009 +n41011029010 +n41011029011 +n41011029012 +n41011029013 +n41011029014 +n41011029015 +n41011029016 +n41011029017 +n41011029018 +n41011029019 +n41011029020 +n41011030001 +n41011030002 +n41011030003 +n41011030004 +n41011030005 +n41011030006 +n41011030007 +n41011030008 +n41011030009 +n41011030010 +n41011030011 +n41011030012 +n41011031001 +n41011031002 +n41011031003 +n41011031004 +n41011031005 +n41011031006 +n41011031007 +n41011031008 +n41011031009 +n41011031010 +n41011031013 +n41011031011 +n41011031012 +n41011031014 +n41011031015 +n41011031016 +n41011032001 +n41011032002 +n41011032003 +n41011032004 +n41011032005 +n41011032006 +n41011032007 +n41011032009 +n41011032008 +n41011032010 +n41011032011 +n41011032012 +n41011032014 +n41011032013 +n41011032015 +n41011032016 +n41011033001 +n41011033002 +n41011033003 +n41011033004 +n41011033005 +n41011033006 +n41011033007 +n41011033008 +n41011033009 +n41011033010 +n41011033011 +n41011033012 +n41011033013 +n41011033014 +n41011033015 +n41011033016 +n41011033017 +n41011033018 +n41011033019 +n41011033020 +n41011033021 +n41012001001 +n41012001002 +n41012001003 +n41012001004 +n41012001005 +n41012001006 +n41012001007 +n41012001008 +n41012001009 +n41012001010 +n41012001011 +n41012001012 +n41012001013 +n41012001014 +n41012001015 +n41012001016 +n41012001017 +n41012001018 +n41012001019 +n41012001020 +n41012001021 +n41012001022 +n41012001023 +n41012001024 +n41012002001 +n41012002002 +n41012002003 +n41012002004 +n41012002005 +n41012002006 +n41012002007 +n41012002008 +n41012002009 +n41012002010 +n41012002011 +n41012002012 +n41012002013 +n41012002014 +n41012002015 +n41012002016 +n41012002017 +n41012002018 +n41012003001 +n41012003002 +n41012003003 +n41012003004 +n41012003005 +n41012003006 +n41012003007 +n41012004001 +n41012004002 +n41012004003 +n41012004004 +n41012004005 +n41012004006 +n41012004007 +n41012004008 +n41012004009 +n41012004010 +n41012004011 +n41012005001 +n41012005002 +n41012005003 +n41012005004 +n41012005005 +n41012005006 +n41012005007 +n41012005008 +n41012005010 +n41012005009 +n41012005011 +n41012005013 +n41012005012 +n41012005014 +n41012006001 +n41012006003 +n41012006002 +n41012006004 +n41012006005 +n41012006006 +n41012006007 +n41012006008 +n41012006009 +n41012006010 +n41012006011 +n41012006012 +n41012006013 +n41012006014 +n41012006015 +n41012006016 +n41012007002 +n41012007001 +n41012007003 +n41012007004 +n41012007005 +n41012007006 +n41012007007 +n41012007008 +n41012007009 +n41012007010 +n41012007011 +n41012007012 +n41012007013 +n41012007014 +n41012007015 +n41012007016 +n41012007017 +n41012007018 +n41012007019 +n41012007020 +n41012008001 +n41012008002 +n41012008003 +n41012008004 +n41012008005 +n41012008006 +n41012008007 +n41012008008 +n41012008009 +n41012008010 +n41012009001 +n41012009002 +n41012009003 +n41012009004 +n41012009005 +n41012009006 +n41012009007 +n41012009008 +n41012009009 +n41012009010 +n41012009011 +n41012009012 +n41012009013 +n41012009014 +n41012009015 +n41012009016 +n41012010001 +n41012010002 +n41012010003 +n41012010004 +n41012010005 +n41012010006 +n41012010007 +n41012010008 +n41012010009 +n41012010010 +n41012010011 +n41012010012 +n41012010013 +n41012010014 +n41012010015 +n41012011001 +n41012011002 +n41012011003 +n41012011004 +n41012011005 +n41012011006 +n41012011007 +n41012011008 +n41012011009 +n41012011010 +n41012012001 +n41012012002 +n41012012003 +n41012012004 +n41012012005 +n41012012006 +n41012012007 +n41012012008 +n41012012010 +n41012012009 +n41012012011 +n41012012012 +n41012012013 +n41012012014 +n41012012015 +n41012012016 +n41012012017 +n41012012018 +n41012012019 +n41012012020 +n41012013001 +n41012013002 +n41012013003 +n41012013004 +n41012013005 +n41012013006 +n41012013007 +n41012013008 +n41012013009 +n41012013010 +n41012013011 +n41012013012 +n41012013013 +n41012013014 +n41012014001 +n41012014002 +n41012014003 +n41012014004 +n41012014005 +n41012014006 +n41012014007 +n41012014008 +n41012014009 +n41012014010 +n41012014011 +n41012014012 +n41012014013 +n41012014014 +n41012014015 +n41012014017 +n41012014016 +n41012014018 +n41012014019 +n41012014020 +n41012014021 +n41012014022 +n41012014023 +n41012014024 +n41012014025 +n41012014026 +n41012014027 +n41012014028 +n41012014029 +n41012014030 +n41012014031 +n41012014032 +n41012014033 +n41012014034 +n41012014035 +n41012014036 +n41012014037 +n41012014038 +n41012014039 +n41012015002 +n41012015001 +n41012015003 +n41012015004 +n41012015005 +n41012015006 +n41012015007 +n41012015008 +n41012015009 +n41012015010 +n41012015011 +n41012015012 +n41012015013 +n41012015014 +n41012015015 +n41012015016 +n41012016002 +n41012016001 +n41012016003 +n41012016004 +n41012016005 +n41012016006 +n41012016007 +n41012016008 +n41012016009 +n41012016010 +n41012016011 +n41012016012 +n41012016013 +n41012016015 +n41012016014 +n41012016016 +n41012016017 +n41012016018 +n41012017002 +n41012017001 +n41012017003 +n41012017004 +n41012017005 +n41012017006 +n41012017007 +n41012017008 +n41012017009 +n41012017010 +n41012017011 +n41012017012 +n41012017013 +n41012017014 +n41012017015 +n41012017016 +n41012017017 +n41012017018 +n41012017019 +n41012018001 +n41012018002 +n41012018004 +n41012018005 +n41012018003 +n41012018006 +n41012018007 +n41012018008 +n41012018009 +n41012018010 +n41012018011 +n41012018012 +n41012018013 +n41012018014 +n41012019001 +n41012019002 +n41012019003 +n41012019004 +n41012019005 +n41012019006 +n41012019007 +n41012019008 +n41012019009 +n41012019010 +n41012019011 +n41012019012 +n41012019013 +n41012019014 +n41012019015 +n41012019016 +n41012019017 +n41012019018 +n41012019019 +n41012019020 +n41012019021 +n41012019022 +n41012019023 +n41012019024 +n41012019025 +n41012019026 +n41012019027 +n41012019028 +n41012019029 +n41012020001 +n41012020002 +n41012020003 +n41012020004 +n41012020005 +n41012020006 +n41012020007 +n41012020008 +n41012020009 +n41012020010 +n41012020011 +n41012020012 +n41012020013 +n41012021001 +n41012021002 +n41012021003 +n41012021004 +n41012021005 +n41012021006 +n41012021007 +n41012021008 +n41012021009 +n41012021010 +n41012021011 +n41012021012 +n41012021013 +n41012021014 +n41012022001 +n41012022002 +n41012022003 +n41012022004 +n41012022005 +n41012022006 +n41012022007 +n41012022008 +n41012022009 +n41012022010 +n41012022011 +n41012022012 +n41012023001 +n41012023002 +n41012023003 +n41012023004 +n41012023005 +n41012023006 +n41012023007 +n41012023009 +n41012023008 +n41012023011 +n41012023010 +n41012023012 +n41012023013 +n41012023014 +n41012023015 +n41012024001 +n41012024002 +n41012024003 +n41012024004 +n41012024005 +n41012024006 +n41012024007 +n41012024008 +n41012024009 +n41012024010 +n41012024011 +n41012024012 +n41012024013 +n41012024014 +n41012024015 +n41012024016 +n41012024017 +n41012025002 +n41012025001 +n41012025003 +n41012025004 +n41012025005 +n41012025006 +n41012025007 +n41012025008 +n41012025009 +n41012025010 +n41012025011 +n41012025012 +n41012025013 +n41012025014 +n41012025015 +n41012025016 +n41012026002 +n41012026001 +n41012026003 +n41012026004 +n41012026005 +n41012026006 +n41012026007 +n41012026008 +n41012026009 +n41012026010 +n41012026011 +n41012026012 +n41012026013 +n41012026014 +n41012026015 +n41012026016 +n41012026017 +n41012026018 +n41012026019 +n41012026020 +n41012026021 +n41012026022 +n41012026023 +n41012026024 +n41012026025 +n41012026026 +n41012026027 +n41012026028 +n41012026029 +n41012026030 +n41012026031 +n41012027001 +n41012027002 +n41012027003 +n41012027004 +n41012027005 +n41012027006 +n41012027007 +n41012027008 +n41012028001 +n41012028002 +n41012028003 +n41012028004 +n41012028005 +n41012028006 +n41012028007 +n41012028008 +n41012028009 +n41012028010 +n41012028011 +n41012028012 +n41012028013 +n41012028014 +n41012028015 +n41012028016 +n41012028017 +n41012028018 +n41012028019 +n41012028020 +n41012029001 +n41012029002 +n41012029003 +n41012029004 +n41012029005 +n41012029006 +n41012029007 +n41012029008 +n41012029009 +n41012029010 +n41012029011 +n41012029012 +n41012029013 +n41012029014 +n41012029015 +n41012030001 +n41012030002 +n41012030003 +n41012030004 +n41012030005 +n41012030006 +n41012030007 +n41012030008 +n41012030009 +n41012030010 +n41012030011 +n41012030012 +n41012030013 +n41012030014 +n41012030015 +n41012030016 +n41012030017 +n41012030018 +n41012030019 +n41012030020 +n41012030021 +n41012030022 +n41012030023 +n41012030024 +n41012030025 +n41012030026 +n41012030027 +n41012030028 +n41012030029 +n41012031001 +n41012031002 +n41012031003 +n41012031004 +n41012031005 +n41012031006 +n41012031007 +n41012031008 +n41012031009 +n41012031010 +n41012031011 +n41012031012 +n41012031013 +n41012031014 +n41012032001 +n41012032002 +n41012032003 +n41012032004 +n41012032005 +n41012032006 +n41012032007 +n41012032008 +n41012032009 +n41012032010 +n41012032011 +n41012032012 +n41012032013 +n41012032014 +n41012032015 +n41012032016 +n41012032017 +n41012032018 +n41012032019 +n41012033001 +n41012033002 +n41012033003 +n41012033004 +n41012033005 +n41012033006 +n41012033007 +n41012033008 +n41012033009 +n41012033010 +n41012033011 +n41012033012 +n41012033013 +n41012033014 +n41012033015 +n41012033016 +n41012033017 +n41012033018 +n41012033019 +n41012033020 +n41012033021 +n41012033022 +n41012033023 +n41012033024 +n41012033025 +n41012033026 +n41012033027 +n41012033028 +n41012033029 +n41012033030 +n41012033031 +n41012033032 +n41012034001 +n41012034002 +n41012034003 +n41012034004 +n41012034005 +n41012034006 +n41012034007 +n41012034008 +n41012034009 +n41012034010 +n41012034011 +n41012034012 +n41012034013 +n41012034014 +n41012034015 +n41012034016 +n41012034017 +n41012034018 +n41012034019 +n41012034020 +n41012034021 +n41012034022 +n41012034023 +n41012034024 +n41012035001 +n41012035002 +n41012035003 +n41012035004 +n41012035005 +n41012035006 +n41012035007 +n41012035008 +n41012035009 +n41012035010 +n41012035011 +n41012035012 +n41012035013 +n41012035014 +n41012035015 +n41012035016 +n41012035017 +n41012035018 +n41012035019 +n41012036001 +n41012036002 +n41012036003 +n41012036004 +n41012036005 +n41012036006 +n41012036007 +n41012036008 +n41012036009 +n41012036010 +n41012036011 +n41012036012 +n41012036013 +n41012036014 +n41012036015 +n41012036016 +n41012036017 +n41012036018 +n41012036019 +n41012036020 +n41012036021 +n41012036022 +n41012036023 +n41012036024 +n41012036025 +n41012036026 +n41012036027 +n41012037001 +n41012037002 +n41012037003 +n41012037004 +n41012037005 +n41012037006 +n41012037007 +n41012037008 +n41012037010 +n41012037009 +n41012037011 +n41012037012 +n41012037013 +n41012037014 +n41012037015 +n41012037016 +n41012037017 +n41012038001 +n41012038002 +n41012038003 +n41012038004 +n41012038005 +n41012038006 +n41012038007 +n41012038008 +n41012038009 +n41012038010 +n41012038011 +n41012038012 +n41012038013 +n41012038014 +n41012038015 +n41012038016 +n41012038017 +n41012038018 +n41012038019 +n41012038020 +n41012039001 +n41012039002 +n41012039003 +n41012039004 +n41012039005 +n41012039006 +n41012039007 +n41012039008 +n41012039009 +n41012039010 +n41012040001 +n41012040002 +n41012040003 +n41012040004 +n41012040005 +n41012040006 +n41012040007 +n41012040008 +n41012040009 +n41012040010 +n41012040011 +n41012040012 +n41012040013 +n41012040014 +n41012041001 +n41012041002 +n41012041003 +n41012041004 +n41012041005 +n41012041006 +n41012041007 +n41012041008 +n41012041009 +n41012041010 +n41012041011 +n41012041012 +n41012041013 +n41012041014 +n41012041015 +n41012041016 +n41012041017 +n41012041018 +n41012041019 +n41012042001 +n41012042002 +n41012042003 +n41012042004 +n41012042005 +n41012042006 +n41012042007 +n41012042008 +n41012042009 +n41012042010 +n41012042011 +n41012043001 +n41012043002 +n41012043003 +n41012043004 +n41012043005 +n41012043006 +n41012043007 +n41012043008 +n41012043009 +n41012043010 +n41012043011 +n41012043012 +n41012043013 +n41012043014 +n41012043015 +n41012043016 +n41012043017 +n41012043019 +n41012043018 +n41012043020 +n41012043021 +n41012043022 +n41012043023 +n41012043024 +n41012044002 +n41012044001 +n41012044003 +n41012044004 +n41012044005 +n41012044006 +n41012044007 +n41012044009 +n41012044008 +n41012044010 +n41012044011 +n41012044012 +n41012044013 +n41012044017 +n41012044014 +n41012044015 +n41012044016 +n41012044018 +n41012044019 +n41012044020 +n41012044021 +n41013001001 +n41013001002 +n41013001003 +n41013001004 +n41013001005 +n41013001006 +n41013001007 +n41013001008 +n41013001009 +n41013001010 +n41013001011 +n41013001012 +n41013001013 +n41013001014 +n41013001015 +n41013001016 +n41013001017 +n41013001018 +n41013001019 +n41013002001 +n41013002002 +n41013002003 +n41013002004 +n41013002005 +n41013002006 +n41013002007 +n41013002008 +n41013002009 +n41013002010 +n41013002011 +n41013002012 +n41013002013 +n41013002015 +n41013002016 +n41013002014 +n41013002017 +n41013002018 +n41013002019 +n41013002020 +n41013003001 +n41013003002 +n41013003003 +n41013003004 +n41013003005 +n41013003006 +n41013003007 +n41013003008 +n41013003009 +n41013003010 +n41013003011 +n41013003012 +n41013003013 +n41013003014 +n41013003015 +n41013003016 +n41013003017 +n41013003018 +n41013003019 +n41013003020 +n41013003021 +n41013003022 +n41013004001 +n41013004002 +n41013004003 +n41013004004 +n41013004005 +n41013004006 +n41013004007 +n41013004008 +n41013004009 +n41013004010 +n41013004011 +n41013004012 +n41013004014 +n41013004013 +n41013005002 +n41013005001 +n41013005003 +n41013005004 +n41013005005 +n41013005006 +n41013005007 +n41013005008 +n41013005009 +n41013005010 +n41013005011 +n41013006001 +n41013006002 +n41013006003 +n41013006004 +n41013006005 +n41013006006 +n41013006007 +n41013006008 +n41013006009 +n41013006010 +n41013006011 +n41013006012 +n41013006013 +n41013007002 +n41013007001 +n41013007003 +n41013007004 +n41013007005 +n41013007006 +n41013007007 +n41013007008 +n41013007009 +n41013007010 +n41013007011 +n41013007012 +n41013007013 +n41013007014 +n41013007015 +n41013008002 +n41013008001 +n41013008003 +n41013008004 +n41013008005 +n41013008006 +n41013008007 +n41013008008 +n41013008009 +n41013008010 +n41013008011 +n41013008012 +n41013008013 +n41013008014 +n41013008015 +n41013008016 +n41013008017 +n41013008018 +n41013009002 +n41013009001 +n41013009003 +n41013009004 +n41013009005 +n41013009006 +n41013009007 +n41013009008 +n41013009009 +n41013009010 +n41013009011 +n41013009012 +n41013009013 +n41013009014 +n41013009015 +n41013009016 +n41013009017 +n41013009018 +n41013009019 +n41013009020 +n41013009021 +n41013009022 +n41013009023 +n41013010001 +n41013010002 +n41013010003 +n41013010004 +n41013010005 +n41013010006 +n41013010008 +n41013010009 +n41013010010 +n41013010007 +n41013011001 +n41013011002 +n41013011003 +n41013011004 +n41013011005 +n41013011006 +n41013011007 +n41013011008 +n41013011009 +n41013011010 +n41013011012 +n41013011011 +n41013011013 +n41013011014 +n41013011015 +n41013011016 +n41013011017 +n41013011018 +n41013011019 +n41013011020 +n41013011022 +n41013011021 +n41013011023 +n41013011024 +n41013011025 +n41013011026 +n41013011027 +n41013011028 +n41013011029 +n41013011030 +n41013011031 +n41013012001 +n41013012002 +n41013012003 +n41013012004 +n41013012005 +n41013012006 +n41013012007 +n41013012008 +n41013012009 +n41013012010 +n41013012011 +n41013012012 +n41013012013 +n41013012014 +n41013012015 +n41013012016 +n41013012017 +n41013013001 +n41013013002 +n41013013003 +n41013013004 +n41013013005 +n41013013006 +n41013013007 +n41013013008 +n41013013009 +n41013013011 +n41013013010 +n41013013012 +n41013013013 +n41013013014 +n41013013015 +n41013013016 +n41013014002 +n41013014001 +n41013014003 +n41013014004 +n41013014005 +n41013014006 +n41013014007 +n41013014008 +n41013014009 +n41013014010 +n41013014011 +n41013014012 +n41013014013 +n41013014014 +n41013014015 +n41013014016 +n41013014017 +n41013014018 +n41013014019 +n41013014020 +n41013014021 +n41013014022 +n41013014023 +n41013015001 +n41013015002 +n41013015003 +n41013015004 +n41013015005 +n41013015006 +n41013015007 +n41013015008 +n41013015009 +n41013015010 +n41013015011 +n41013015012 +n41013015013 +n41013015014 +n41013016001 +n41013016002 +n41013016003 +n41013016004 +n41013016005 +n41013016006 +n41013016007 +n41013016008 +n41013016009 +n41013016010 +n41013016011 +n41013016012 +n41013016013 +n41013016014 +n41013017002 +n41013017001 +n41013017003 +n41013017004 +n41013017005 +n41013017006 +n41013017007 +n41013017008 +n41013017009 +n41013017010 +n41013017011 +n41013017012 +n41013017013 +n41013018002 +n41013018001 +n41013018003 +n41013018004 +n41013018005 +n41013018006 +n41013019002 +n41013019001 +n41013019003 +n41013019004 +n41013019005 +n41013019006 +n41013019007 +n41013019008 +n41013019009 +n41013019010 +n41013019011 +n41013019012 +n41013019013 +n41013019014 +n41013019015 +n41013019016 +n41013019017 +n41013019018 +n41013019019 +n41013019020 +n41013019021 +n41013019022 +n41013019023 +n41013019024 +n41013020001 +n41013020002 +n41013020003 +n41013020004 +n41013020005 +n41013020006 +n41013020007 +n41013020009 +n41013020008 +n41013020010 +n41013020011 +n41013020012 +n41013020013 +n41013020014 +n41013020015 +n41013020016 +n41013020017 +n41013020018 +n41013020019 +n41013020020 +n41013020021 +n41013021001 +n41013021003 +n41013021002 +n41013021004 +n41013021005 +n41013021006 +n41013021007 +n41013021008 +n41013021009 +n41013021010 +n41013021011 +n41013021012 +n41013021013 +n41013021014 +n41013022002 +n41013022001 +n41013022003 +n41013022004 +n41013022005 +n41013022006 +n41013022007 +n41013022008 +n41013022009 +n41013022010 +n41013022011 +n41013022012 +n41013022013 +n41013022014 +n41013022015 +n41013022016 +n41013022017 +n41013023002 +n41013023001 +n41013023003 +n41013023004 +n41013023005 +n41013023006 +n41013024001 +n41013024002 +n41013024003 +n41013024004 +n41013024005 +n41013024006 +n41013024007 +n41013024008 +n41013024009 +n41013024010 +n41013024011 +n41013024012 +n41013024013 +n41013024014 +n41013024015 +n41013024016 +n41013024017 +n41013024018 +n41013024019 +n41013024020 +n41013025001 +n41013025002 +n41013025003 +n41013025004 +n41013025008 +n41013025005 +n41013025006 +n41013025007 +n41013025009 +n41013025010 +n41013025011 +n41013025012 +n41013025013 +n41013025014 +n41013025015 +n41013025016 +n41013026001 +n41013026002 +n41013026003 +n41013026004 +n41013026005 +n41013026006 +n41013026007 +n41013026008 +n41013026009 +n41013026010 +n41013026011 +n41013026012 +n41013026013 +n41013026014 +n41013026015 +n41013027001 +n41013027002 +n41013027003 +n41013027004 +n41013027005 +n41013027006 +n41013027007 +n41013027008 +n41013027009 +n41013027010 +n41013027011 +n41013027012 +n41013027013 +n41013027014 +n41013027015 +n41013027016 +n41013027017 +n41013027018 +n41013027019 +n41013027020 +n41013028002 +n41013028001 +n41013028003 +n41013028004 +n41013028005 +n41013028006 +n41013028007 +n41013028008 +n41013028009 +n41013028010 +n41013028011 +n41013028012 +n41013028013 +n41013028014 +n41013028015 +n41013028016 +n41013028017 +n41013028018 +n41013028019 +n41013028020 +n41013028021 +n41013028022 +n41013028023 +n41013028024 +n41013029001 +n41013029002 +n41013029003 +n41013029004 +n41013029005 +n41013029006 +n41013029007 +n41013029008 +n41013029009 +n41013029010 +n41013029011 +n41013029012 +n41013029013 +n41013030001 +n41013030002 +n41013030003 +n41013030004 +n41013030005 +n41013030006 +n41013030007 +n41013030008 +n41013030009 +n41013030010 +n41013030011 +n41013030012 +n41013030013 +n41013030014 +n41013030015 +n41013031001 +n41013031002 +n41013031003 +n41013031004 +n41013031005 +n41013031006 +n41013031008 +n41013031007 +n41013031009 +n41013031010 +n41013031011 +n41013031012 +n41013032002 +n41013032001 +n41013032003 +n41013032004 +n41013032005 +n41013032006 +n41013032007 +n41013032008 +n41013032009 +n41013032010 +n41013032011 +n41013032012 +n41013032013 +n41013032014 +n41013032015 +n41013032016 +n41013032017 +n41013032018 +n41013032019 +n41013032020 +n41013032021 +n41013032022 +n41013033001 +n41013033002 +n41013033005 +n41013033003 +n41013033004 +n41013033006 +n41013033007 +n41013033008 +n41013033009 +n41013034001 +n41013034002 +n41013034003 +n41013034004 +n41013034005 +n41013034006 +n41013034007 +n41013034008 +n41013034009 +n41013034010 +n41013034011 +n41013034012 +n41013034013 +n41013034014 +n41013034015 +n41013034016 +n41013034017 +n41013034018 +n41013034019 +n41013034020 +n41013034021 +n41013034022 +n41013034023 +n41013034024 +n41013035002 +n41013035001 +n41013035005 +n41013035003 +n41013035004 +n41013035006 +n41013035007 +n41013035008 +n41013035009 +n41013035010 +n41013035011 +n41013035012 +n41013035013 +n41013035014 +n41013035015 +n41013035016 +n41013035017 +n41013035018 +n41013035019 +n41013036001 +n41013036002 +n41013036003 +n41013036004 +n41013036005 +n41013036006 +n41013037002 +n41013037001 +n41013037003 +n41013037004 +n41013037005 +n41013037006 +n41013037007 +n41014001002 +n41014001001 +n41014001003 +n41014001004 +n41014001005 +n41014001006 +n41014001007 +n41014001008 +n41014001009 +n41014001010 +n41014001011 +n41014001012 +n41014001013 +n41014001014 +n41014001015 +n41014001016 +n41014001017 +n41014001018 +n41014001019 +n41014001020 +n41014001021 +n41014001022 +n41014001023 +n41014002002 +n41014002001 +n41014002003 +n41014002004 +n41014002005 +n41014002006 +n41014002007 +n41014002008 +n41014002009 +n41014002010 +n41014002011 +n41014002012 +n41014003001 +n41014003002 +n41014003003 +n41014003004 +n41014003005 +n41014003006 +n41014003007 +n41014003008 +n41014003009 +n41014003010 +n41014003011 +n41014003012 +n41014003013 +n41014003014 +n41014003015 +n41014003016 +n41014003017 +n41014003018 +n41014003019 +n41014003020 +n41014003021 +n41014003022 +n41014003023 +n41014003024 +n41014003025 +n41014003026 +n41014003027 +n41014003028 +n41014004002 +n41014004003 +n41014004001 +n41014004004 +n41014004005 +n41014004006 +n41014004007 +n41014004008 +n41014004009 +n41014004010 +n41014004011 +n41014004012 +n41014004013 +n41014004014 +n41014005002 +n41014005001 +n41014005003 +n41014005004 +n41014005005 +n41014005006 +n41014005007 +n41014005008 +n41014005009 +n41014005010 +n41014005011 +n41014005012 +n41014005013 +n41014005014 +n41014005015 +n41014005016 +n41014006002 +n41014006001 +n41014006003 +n41014006004 +n41014006005 +n41014006006 +n41014006007 +n41014006008 +n41014006009 +n41014006010 +n41014006011 +n41014006012 +n41014006013 +n41014006014 +n41014006015 +n41014007002 +n41014007001 +n41014007003 +n41014007004 +n41014007005 +n41014007006 +n41014007007 +n41014007008 +n41014007009 +n41014007010 +n41014007011 +n41014007012 +n41014007013 +n41014007014 +n41014007016 +n41014007015 +n41014007017 +n41014007018 +n41014007019 +n41014008001 +n41014008002 +n41014008003 +n41014008004 +n41014008005 +n41014008006 +n41014008007 +n41014008008 +n41014008009 +n41014008010 +n41014008011 +n41014009002 +n41014009001 +n41014009003 +n41014009004 +n41014009006 +n41014009005 +n41014009007 +n41014009008 +n41014009009 +n41014009010 +n41014009011 +n41014009012 +n41014009013 +n41014009014 +n41014009015 +n41014009016 +n41014009017 +n41014009018 +n41014009019 +n41014009020 +n41014009021 +n41014010001 +n41014010002 +n41014010003 +n41014010004 +n41014010005 +n41014010006 +n41014010007 +n41014010008 +n41014010009 +n41014010010 +n41014010011 +n41014010012 +n41014010013 +n41014010014 +n41014010015 +n41014011002 +n41014011001 +n41014011003 +n41014011004 +n41014011005 +n41014011006 +n41014011007 +n41014011008 +n41014011009 +n41014011010 +n41014011011 +n41014011012 +n41014011013 +n41014011014 +n41014011015 +n41014012001 +n41014012002 +n41014012003 +n41014012004 +n41014012005 +n41014012006 +n41014012007 +n41014012008 +n41014012009 +n41014012010 +n41014012011 +n41014012012 +n41014012013 +n41014012014 +n41014012015 +n41014012017 +n41014012016 +n41014012018 +n41014012019 +n41014012020 +n41014012021 +n41014012022 +n41014012023 +n41014013001 +n41014013002 +n41014013003 +n41014013004 +n41014013005 +n41014013006 +n41014013007 +n41014013008 +n41014013009 +n41014013010 +n41014013011 +n41014013012 +n41014013013 +n41014013014 +n41014013015 +n41014013016 +n41014013017 +n41014013018 +n41014013019 +n41014013020 +n41014013021 +n41014013022 +n41014014001 +n41014014003 +n41014014002 +n41014014004 +n41014014005 +n41014014006 +n41014014007 +n41014014008 +n41014014009 +n41014014010 +n41014014011 +n41014014012 +n41014014013 +n41014014014 +n41014014015 +n41014014016 +n41014014017 +n41014014018 +n41014014019 +n41014014020 +n41014014021 +n41014014022 +n41014014023 +n41014014024 +n41014015001 +n41014015002 +n41014015003 +n41014015004 +n41014015005 +n41014015006 +n41014015007 +n41014015008 +n41014015009 +n41014015010 +n41014015011 +n41014015012 +n41014016001 +n41014016002 +n41014016003 +n41014016004 +n41014016005 +n41014016006 +n41014016007 +n41014016008 +n41014016009 +n41014016010 +n41014016011 +n41014016012 +n41014016013 +n41014016014 +n41014016015 +n41014016016 +n41014016017 +n41014016018 +n41014017001 +n41014017002 +n41014017003 +n41014017004 +n41014017005 +n41014017006 +n41014017007 +n41014018001 +n41014018003 +n41014018002 +n41014018004 +n41014018005 +n41014018006 +n41014018007 +n41014018008 +n41014018009 +n41014018010 +n41014018011 +n41014018012 +n41014018016 +n41014018017 +n41014018013 +n41014018014 +n41014018015 +n41014018018 +n41014018019 +n41014018020 +n41014018021 +n41014019001 +n41014019002 +n41014019003 +n41014019004 +n41014019005 +n41014019006 +n41014019007 +n41014019008 +n41014019009 +n41014019010 +n41014020002 +n41014020001 +n41014020003 +n41014020004 +n41014020005 +n41014020006 +n41014020007 +n41014020008 +n41014020009 +n41014020010 +n41014020011 +n41014020012 +n41014020013 +n41014020014 +n41014021001 +n41014021003 +n41014021002 +n41014021004 +n41014021005 +n41014021006 +n41014021007 +n41014021008 +n41014021009 +n41014021010 +n41014021011 +n41014021013 +n41014021012 +n41014021014 +n41014021015 +n41014021016 +n41014021017 +n41014021018 +n41014021019 +n41014021020 +n41014021021 +n41014021022 +n41014021023 +n41014021024 +n41014021025 +n41014021026 +n41014021027 +n41014021028 +n41014021029 +n41014021030 +n41014021031 +n41014022001 +n41014022002 +n41014022003 +n41014022004 +n41014022005 +n41014022006 +n41014022007 +n41014022008 +n41014022009 +n41014022010 +n41014022011 +n41014022012 +n41014022013 +n41014022014 +n41014022015 +n41014022016 +n41014022017 +n41014022018 +n41014023001 +n41014023002 +n41014023003 +n41014023004 +n41014023005 +n41014023006 +n41014023007 +n41014023008 +n41014023009 +n41014023010 +n41014023011 +n41014024001 +n41014024002 +n41014024003 +n41014024004 +n41014024005 +n41014024006 +n41014024007 +n41014024008 +n41014024009 +n41014024010 +n41014024011 +n41014024012 +n41014024013 +n41014024014 +n41014025001 +n41014025002 +n41014025003 +n41014025004 +n41014025005 +n41014025006 +n41014025007 +n41014025008 +n41014025009 +n41014025010 +n41014025011 +n41014025012 +n41014025013 +n41014025014 +n41014025015 +n41014025016 +n41014025017 +n41014025018 +n41014025019 +n41014025020 +n41014025021 +n41014025022 +n41014025023 +n41014025024 +n41014025025 +n41014025026 +n41014026001 +n41014026002 +n41014026003 +n41014026004 +n41014026005 +n41014026006 +n41014026007 +n41014026008 +n41014027001 +n41014027002 +n41014027003 +n41014027004 +n41014027005 +n41014027006 +n41014027007 +n41014027008 +n41014027009 +n41014027010 +n41014027011 +n41014027012 +n41014027013 +n41014027014 +n41014027015 +n41014027016 +n41014027017 +n41014028001 +n41014028002 +n41014028003 +n41014028004 +n41014028005 +n41014028006 +n41014028007 +n41014028008 +n41014028009 +n41014028010 +n41014029002 +n41014029001 +n41014029003 +n41014029004 +n41014029005 +n41014029006 +n41014029007 +n41014029008 +n41014029009 +n41014029010 +n41014029011 +n41014029012 +n41014030001 +n41014030002 +n41014030003 +n41014030004 +n41014030005 +n41014030006 +n41014030007 +n41014030008 +n41014030009 +n41014030010 +n41014030011 +n41014030012 +n41014030013 +n41014030014 +n41014030015 +n41014030016 +n41014030017 +n41014030018 +n41014030019 +n41014030020 +n41014030021 +n41014030022 +n41014031002 +n41014031001 +n41014031003 +n41014031004 +n41014031005 +n41014031006 +n41014031007 +n41014031008 +n41014031009 +n41014031010 +n41014031011 +n41014031012 +n41014031013 +n41014031015 +n41014031014 +n41014031016 +n41014031017 +n41014031018 +n41014032001 +n41014032002 +n41014032003 +n41014032004 +n41014032005 +n41014032006 +n41014032007 +n41014032008 +n41014032009 +n41014032010 +n41014032011 +n41014032012 +n41014032013 +n41014032014 +n41014032015 +n41014032016 +n41014032017 +n41014033001 +n41014033002 +n41014033003 +n41014033004 +n41014033005 +n41014033006 +n41014033007 +n41014033008 +n41014033009 +n41014033010 +n41014033011 +n41014033012 +n41014033013 +n41014033014 +n41014033015 +n41014033016 +n41014033017 +n41014034001 +n41014034002 +n41014034003 +n41014034004 +n41014034005 +n41014034006 +n41014034007 +n41014034008 +n41014034009 +n41014034010 +n41014034011 +n41014034012 +n41014034013 +n41014034014 +n41014035001 +n41014035002 +n41014035003 +n41014035004 +n41014035005 +n41014035006 +n41014035007 +n41014035008 +n41014035009 +n41014035010 +n41014035011 +n41014035012 +n41014035013 +n41014035014 +n41014035015 +n41014035016 +n41014035017 +n41014035018 +n41014036001 +n41014036002 +n41014036003 +n41014036004 +n41014036005 +n41014036006 +n41014036007 +n41014036008 +n41014036009 +n41014036010 +n41014036011 +n41014036012 +n41014036013 +n41014036014 +n41014036015 +n41014036016 +n41014036017 +n41014036018 +n41014036019 +n41014036020 +n41014036021 +n41014036022 +n41014037001 +n41014037002 +n41014037003 +n41014037004 +n41014037005 +n41014037006 +n41014037007 +n41014037008 +n41014037009 +n41014037010 +n41014037011 +n41014037012 +n41014037013 +n41014037014 +n41014037015 +n41014037016 +n41014037017 +n41014038001 +n41014038002 +n41014038003 +n41014038004 +n41014038005 +n41014038006 +n41014038007 +n41014038008 +n41014038010 +n41014038009 +n41014038011 +n41014038012 +n41014038014 +n41014038013 +n41014038015 +n41014038016 +n41014039001 +n41014039002 +n41014039003 +n41014039004 +n41014039005 +n41014039006 +n41014039007 +n41014039008 +n41014040001 +n41014040002 +n41014040003 +n41014040004 +n41014040005 +n41014040006 +n41014040008 +n41014040007 +n41014040012 +n41014040009 +n41014040010 +n41014040011 +n41014040013 +n41014040014 +n41014040015 +n41014040016 +n41014040017 +n41014040018 +n41014041001 +n41014041002 +n41014041003 +n41014041004 +n41014041005 +n41014041006 +n41014041007 +n41014041008 +n41014041009 +n41014041010 +n41014041011 +n41014041012 +n41014041013 +n41014041014 +n41014041015 +n41014041016 +n41014041017 +n41014041018 +n41014041019 +n41014041020 +n41014041021 +n41014041022 +n41014041023 +n41014041024 +n41014041025 +n41014041026 +n41014041027 +n41014042001 +n41014042002 +n41014042003 +n41014042004 +n41014042005 +n41014042006 +n41014042007 +n41014043001 +n41014043002 +n41014043003 +n41014043004 +n41014043005 +n41014043006 +n41014043007 +n41014043008 +n41014043009 +n41014043010 +n41014043011 +n41014043012 +n41014043013 +n41014043014 +n41014043015 +n41014043016 +n41014043017 +n41014043018 +n41014043019 +n41014043020 +n41014043021 +n41014043022 +n41014043023 +n41014043024 +n41014043025 +n41014043026 +n41014043027 +n41014043028 +n41014044002 +n41014044001 +n41014044003 +n41014044004 +n41014044005 +n41014044006 +n41014044007 +n41014044008 +n41014044010 +n41014044009 +n41014044011 +n41014044012 +n41014044013 +n41014044014 +n41014044015 +n41014044016 +n41014044017 +n41014044018 +n41014045001 +n41014045002 +n41014045003 +n41014045004 +n41014045005 +n41014045006 +n41014045007 +n41014045008 +n41014045009 +n41014045010 +n41014046002 +n41014046001 +n41014046003 +n41014046004 +n41014046005 +n41014046006 +n41014046007 +n41014046008 +n41014046009 +n41014047002 +n41014047001 +n41014047003 +n41014047004 +n41014047005 +n41014047006 +n41014047007 +n41014047008 +n41014047009 +n41014047010 +n41014047011 +n41014047012 +n41014047013 +n41014047014 +n41014047015 +n41014047016 +n41014047017 +n41014047018 +n41014048001 +n41014048002 +n41014048003 +n41014048004 +n41014048005 +n41014048006 +n41014048007 +n41014048008 +n41014048009 +n41014048010 +n41014048011 +n41014048012 +n41014048013 +n41014048014 +n41014048015 +n41014048016 +n41014049001 +n41014049002 +n41014049003 +n41014049004 +n41014049005 +n41014049006 +n41014049007 +n41014049008 +n41014049009 +n41014049010 +n41014049011 +n41014049012 +n41014049013 +n41014049014 +n41014049015 +n41014049016 +n41014049017 +n41014049018 +n41014050001 +n41014050002 +n41014050003 +n41014050004 +n41014050005 +n41014051001 +n41014051002 +n41014051003 +n41014051004 +n41014051005 +n41014051006 +n41014051007 +n41014051008 +n41014051009 +n41014051010 +n41014051011 +n41014051012 +n41014052002 +n41014052001 +n41014052003 +n41014052004 +n41014052005 +n41014052006 +n41014052007 +n41014053001 +n41014053002 +n41014053003 +n41014053004 +n41014053005 +n41014053006 +n41014053007 +n41014053008 +n41014053009 +n41014053010 +n41014053011 +n41014053012 +n41014053013 +n41014053014 +n41014053015 +n41014053016 +n41014053017 +n41014053018 +n41014054001 +n41014054002 +n41014054003 +n41014054004 +n41014054005 +n41014054006 +n41014054007 +n41014054008 +n41014054009 +n41014054010 +n41014054011 +n41014054012 +n41014054013 +n41014054014 +n41014054015 +n41014054016 +n41014054017 +n41014054018 +n41014054019 +n41014054020 +n41014054021 +n41014054022 +n41014054023 +n41014054024 +n41014054025 +n41014055002 +n41014055001 +n41014055003 +n41014055004 +n41014055005 +n41014055006 +n41014055007 +n41014055008 +n41014055009 +n41014055010 +n41014055011 +n41014055012 +n41014055013 +n41014055014 +n41014055015 +n41014055016 +n41014055017 +n41014055018 +n41014055019 +n41014056002 +n41014056001 +n41014056003 +n41014056004 +n41014056005 +n41014056006 +n41014056007 +n41014056008 +n41014056009 +n41014056010 +n41014056011 +n41014057001 +n41014057002 +n41014057003 +n41014057004 +n41014057005 +n41014057006 +n41014057007 +n41014058001 +n41014058002 +n41014058003 +n41014058004 +n41014058005 +n41014058006 +n41014058007 +n41014058008 +n41014058009 +n41014058010 +n41014058011 +n41014058012 +n41014058013 +n41014058014 +n41014058015 +n41014058016 +n41014058017 +n41014058018 +n41014058019 +n41014058020 +n41014059001 +n41014059002 +n41014059003 +n41014059004 +n41014059005 +n41014059006 +n41014059007 +n41014059008 +n41014060001 +n41014060002 +n41014060005 +n41014060006 +n41014060003 +n41014060004 +n41014060007 +n41014060008 +n41014060009 +n41014060010 +n41014060011 +n41014060012 +n41014060013 +n41014060014 +n41014060015 +n41014060016 +n41014060017 +n41014061002 +n41014061001 +n41014061003 +n41014061004 +n41014061005 +n41014061006 +n41014061007 +n41014061008 +n41014061009 +n41014061010 +n41014061011 +n41014061012 +n41014061013 +n41014061014 +n41014061015 +n41014061016 +n41014061017 +n41014061018 +n41014061019 +n41014061020 +n41014061021 +n41014061022 +n41014061023 +n41014062002 +n41014062001 +n41014062003 +n41014062004 +n41014062005 +n41014062006 +n41014062007 +n41014062008 +n41014062009 +n41014062010 +n41014062011 +n41014062012 +n41014062013 +n41014062014 +n41014062016 +n41014062017 +n41014062015 +n41014062018 +n41014062019 +n41014062020 +n41014062021 +n41014062022 +n41014062023 +n41014062024 +n41014063002 +n41014063001 +n41014063003 +n41014063004 +n41014063005 +n41014063006 +n41014063007 +n41014063008 +n41014063009 +n41014063010 +n41014063011 +n41014063013 +n41014063012 +n41014064001 +n41014064002 +n41014064003 +n41014064004 +n41014064005 +n41014064006 +n41014064008 +n41014064007 +n41014064009 +n41014064010 +n41014064011 +n41014064012 +n41014064013 +n41014064014 +n41014065001 +n41014065002 +n41014065003 +n41014065004 +n41014065005 +n41014065006 +n41014065007 +n41014065008 +n41014065009 +n41014065010 +n41014065011 +n41014065012 +n41014065013 +n41014065014 +n41014065015 +n41014065016 +n41014065017 +n41014065018 +n41014065019 +n41014065020 +n41014065021 +n41014065022 +n41014065023 +n41014066001 +n41014066002 +n41014066003 +n41014066004 +n41014066005 +n41014066006 +n41014066007 +n41014066008 +n41014066009 +n41014066010 +n41014066011 +n41014066012 +n41014066013 +n41014066014 +n41014067001 +n41014067002 +n41014067003 +n41014067004 +n41014067005 +n41014067006 +n41014067007 +n41014067008 +n41014067009 +n41014067010 +n41014067011 +n41014067012 +n41014067013 +n41014067015 +n41014067016 +n41014067014 +n41014068002 +n41014068001 +n41014068003 +n41014068004 +n41014068005 +n41014068006 +n41014068007 +n41014068008 +n41014068009 +n41014068010 +n41014068011 +n41014068012 +n41014068013 +n41014068014 +n41014068015 +n41014068016 +n41014068017 +n41014069001 +n41014069002 +n41014069003 +n41014069004 +n41014069005 +n41014069006 +n41014069007 +n41014069008 +n41014069009 +n41014069010 +n41014069011 +n41014069012 +n41014069013 +n41014069014 +n41014069015 +n41014070002 +n41014070001 +n41014070003 +n41014070004 +n41014070005 +n41014070006 +n41014070007 +n41014070008 +n41014070009 +n41014070010 +n41014070011 +n41014070012 +n41014070013 +n41014070014 +n41014070015 +n41014070016 +n41014070017 +n41014070019 +n41014070018 +n41014070020 +n41014070021 +n41014071002 +n41014071001 +n41014071003 +n41014071004 +n41014071005 +n41014071006 +n41014071007 +n41014071008 +n41014071009 +n41014071010 +n41014071011 +n41014071012 +n41014071013 +n41014071014 +n41014072001 +n41014072002 +n41014072003 +n41014072004 +n41014072005 +n41014072006 +n41014072007 +n41014072008 +n41014072009 +n41014072010 +n41014072011 +n41014072012 +n41014072013 +n41014072014 +n41014072015 +n41014072016 +n41014072017 +n41014072018 +n41014072019 +n41014072020 +n41014072021 +n41014072022 +n41014072023 +n41014072024 +n41014072025 +n41014072026 +n41014072027 +n41014072028 +n41015001001 +n41015001002 +n41015001003 +n41015001006 +n41015001007 +n41015001004 +n41015001005 +n41015001008 +n41015001009 +n41015001010 +n41015001011 +n41015001012 +n41015001013 +n41015001014 +n41015001015 +n41015001016 +n41015001017 +n41015001018 +n41015001019 +n41015001020 +n41015001021 +n41015001022 +n41015001023 +n41015002001 +n41015002002 +n41015002003 +n41015002004 +n41015002005 +n41015002006 +n41015002007 +n41015002008 +n41015002009 +n41015002010 +n41015002011 +n41015002013 +n41015002012 +n41015002014 +n41015002015 +n41015002016 +n41015002017 +n41015002018 +n41015003001 +n41015003002 +n41015003003 +n41015003004 +n41015003005 +n41015003006 +n41015004002 +n41015004001 +n41015004003 +n41015004004 +n41015004005 +n41015004006 +n41015004007 +n41015004008 +n41015004009 +n41015004010 +n41015004011 +n41015004012 +n41015004013 +n41015004014 +n41015005002 +n41015005001 +n41015005003 +n41015005004 +n41015005005 +n41015005006 +n41015005007 +n41015005008 +n41015005009 +n41015005010 +n41015006002 +n41015006001 +n41015006003 +n41015006004 +n41015006005 +n41015006006 +n41015006007 +n41015006008 +n41015006009 +n41015007002 +n41015007001 +n41015007009 +n41015007003 +n41015007004 +n41015007005 +n41015007006 +n41015007007 +n41015007008 +n41015007010 +n41015007011 +n41015007012 +n41015007013 +n41015007014 +n41015007015 +n41015008001 +n41015008002 +n41015008003 +n41015008004 +n41015008005 +n41015008006 +n41015008007 +n41015008008 +n41015008009 +n41015009002 +n41015009001 +n41015009003 +n41015009004 +n41015009005 +n41015009006 +n41015009007 +n41015009008 +n41015009009 +n41015009010 +n41015009011 +n41015009012 +n41015009013 +n41015010002 +n41015010001 +n41015010003 +n41015010004 +n41015010005 +n41015010006 +n41015010007 +n41015010008 +n41015010009 +n41015011002 +n41015011001 +n41015011003 +n41015011004 +n41015011005 +n41015011006 +n41015011007 +n41015011008 +n41015011009 +n41015011010 +n41015011011 +n41015011012 +n41015012002 +n41015012001 +n41015012003 +n41015012004 +n41015012005 +n41015012006 +n41015012007 +n41015012009 +n41015012008 +n41015012010 +n41015012011 +n41015012012 +n41015012013 +n41015012014 +n41015012015 +n41015012016 +n41015013002 +n41015013001 +n41015013003 +n41015013004 +n41015013005 +n41015013006 +n41015014002 +n41015014001 +n41015014003 +n41015014004 +n41015014005 +n41015014007 +n41015014008 +n41015014006 +n41015014009 +n41015014011 +n41015014010 +n41015014012 +n41015014013 +n41015014014 +n41015014015 +n41015015002 +n41015015001 +n41015015003 +n41015015004 +n41015015005 +n41015015006 +n41015015007 +n41015015008 +n41015015009 +n41015015010 +n41015015011 +n41015015012 +n41015015013 +n41015015014 +n41015015015 +n41015015016 +n41015015017 +n41015015018 +n41015015019 +n41015015020 +n41015016002 +n41015016001 +n41015016003 +n41015016004 +n41015016005 +n41015016006 +n41015016007 +n41015016008 +n41015016009 +n41015016010 +n41015016011 +n41015016012 +n41015016013 +n41015016014 +n41015016015 +n41015016016 +n41015017001 +n41015017002 +n41015017003 +n41015017004 +n41015017005 +n41015017006 +n41015017007 +n41015017008 +n41015017009 +n41015017010 +n41015018001 +n41015018002 +n41015018003 +n41015018004 +n41015018005 +n41015018006 +n41015018007 +n41015018008 +n41015019001 +n41015019002 +n41015019003 +n41015019004 +n41015019005 +n41015019006 +n41015019007 +n41015019008 +n41015019009 +n41015019010 +n41015019011 +n41015019012 +n41015019013 +n41015019014 +n41015019015 +n41015020001 +n41015020002 +n41015020003 +n41015020004 +n41015020005 +n41015020006 +n41015020007 +n41015020008 +n41015020009 +n41015020010 +n41015020011 +n41015020012 +n41015020013 +n41015020014 +n41015020015 +n41015020016 +n41015020017 +n41015020018 +n41015020019 +n41015020020 +n41015021001 +n41015021002 +n41015021003 +n41015021004 +n41015021005 +n41015021006 +n41015021007 +n41015021008 +n41015021009 +n41015021010 +n41015021011 +n41015021012 +n41015021013 +n41015021014 +n41015021015 +n41015021016 +n41015021017 +n41015021018 +n41015021019 +n41015022001 +n41015022002 +n41015022003 +n41015022004 +n41015022005 +n41015022007 +n41015022006 +n41015022008 +n41015022009 +n41015022010 +n41015022011 +n41015022012 +n41015023001 +n41015023002 +n41015023003 +n41015023004 +n41015023005 +n41015023007 +n41015023006 +n41015023008 +n41015023009 +n41015024001 +n41015024002 +n41015024003 +n41015024004 +n41015024005 +n41015024006 +n41015024007 +n41015024008 +n41015024009 +n41015024010 +n41015024011 +n41015024012 +n41015024013 +n41015024014 +n41015024015 +n41015025002 +n41015025001 +n41015025003 +n41015025004 +n41015025005 +n41015025006 +n41015025007 +n41015026001 +n41015026002 +n41015026008 +n41015026003 +n41015026004 +n41015026005 +n41015026006 +n41015026007 +n41015026009 +n41015026010 +n41015026011 +n41015026012 +n41015027001 +n41015027002 +n41015027003 +n41015027004 +n41015027005 +n41015027006 +n41015027007 +n41015027008 +n41015027009 +n41015027010 +n41015027011 +n41015027012 +n41015027013 +n41015027014 +n41015029001 +n41015029002 +n41015029003 +n41015029004 +n41015029005 +n41015029006 +n41015029007 +n41015029008 +n41015029009 +n41015029010 +n41015029011 +n41015029012 +n41015029013 +n41015029014 +n41015029015 +n41015029016 +n41015029017 +n41015029018 +n41015029019 +n41015029020 +n41015029021 +n41015030001 +n41015030002 +n41015030003 +n41015030004 +n41015030005 +n41015030006 +n41015031001 +n41015031002 +n41015031003 +n41015031004 +n41015031005 +n41015031006 +n41015031007 +n41015031008 +n41015031009 +n41015031010 +n41015031011 +n41015031012 +n41015031013 +n41015031014 +n41015031017 +n41015031015 +n41015031016 +n41015032001 +n41015032002 +n41015032003 +n41015032004 +n41015032005 +n41015032006 +n41015032007 +n41015032008 +n41015032009 +n41015032010 +n41015032011 +n41015032012 +n41015032013 +n41015032014 +n41015032015 +n41015032016 +n41015032017 +n41015032018 +n41015032019 +n41015032020 +n41015032021 +n41015033001 +n41015033002 +n41015033003 +n41015033004 +n41015033005 +n41015033006 +n41015033007 +n41015033008 +n41015033009 +n41015033010 +n41015033011 +n41015033012 +n41015033013 +n41015034001 +n41015034002 +n41015034003 +n41015034004 +n41015034005 +n41015034006 +n41015034007 +n41015034008 +n41015034009 +n41015034010 +n41015034011 +n41015034012 +n41015034013 +n41015034014 +n41015034015 +n41015034016 +n41015034017 +n41015034018 +n41015034019 +n41015034020 +n41015034021 +n41015034022 +n41015034023 +n41015034024 +n41015034025 +n41015034026 +n41015035001 +n41015035002 +n41015035003 +n41015035004 +n41015035005 +n41015035006 +n41015035007 +n41015035008 +n41015035009 +n41015036002 +n41015036003 +n41015036001 +n41015036004 +n41015036005 +n41015036006 +n41015036007 +n41015036008 +n41015036009 +n41015036010 +n41015036011 +n41015036012 +n41015036013 +n41015036014 +n41015036015 +n41015036016 +n41015036017 +n41015036018 +n41015036019 +n41015037002 +n41015037001 +n41015037003 +n41015037004 +n41015037005 +n41015037006 +n41015037007 +n41015038001 +n41015038002 +n41015038003 +n41015038004 +n41015038005 +n41015038006 +n41015038007 +n41015038008 +n41015038009 +n41015038010 +n41015038011 +n41015038012 +n41015039002 +n41015039003 +n41015039004 +n41015039005 +n41015039006 +n41015039007 +n41015039008 +n41015039009 +n41015039001 +n41015039010 +n41015039011 +n41015039012 +n41015039013 +n41015039014 +n41015039015 +n41015039016 +n41015039017 +n41015039018 +n41015039019 +n41015039020 +n41015040002 +n41015040001 +n41015040003 +n41015040004 +n41015040005 +n41015040006 +n41015040007 +n41015040008 +n41015040009 +n41015040010 +n41015040011 +n41015040012 +n41015040013 +n41015040014 +n41015040015 +n41015040016 +n41015040017 +n41015040018 +n41015040019 +n41015040020 +n41015040021 +n41015040022 +n41015040023 +n41015040024 +n41015041001 +n41015041002 +n41015041003 +n41015041004 +n41015041005 +n41015041006 +n41015041007 +n41015041008 +n41015041009 +n41015041010 +n41015041011 +n41015041012 +n41015041013 +n41015041014 +n41015041015 +n41015041016 +n41015041017 +n41015041018 +n41015041019 +n41015042001 +n41015042002 +n41015042003 +n41015042004 +n41015042005 +n41015042006 +n41015042007 +n41015042008 +n41015042009 +n41015042010 +n41015043001 +n41015043002 +n41015043003 +n41015043004 +n41015043005 +n41015043006 +n41015043007 +n41015043008 +n41015043009 +n41015043010 +n41015043011 +n41015043012 +n41015043013 +n41015043014 +n41015043015 +n41015043016 +n41015043017 +n41015043018 +n41015043019 +n41015043020 +n41015043021 +n41015043022 +n41015043023 +n41015043024 +n41015043025 +n41015043026 +n41015043027 +n41015044002 +n41015044001 +n41015044003 +n41015044004 +n41015044005 +n41015044006 +n41015044007 +n41015044008 +n41015044009 +n41015044010 +n41015044011 +n41015044012 +n41015044013 +n41015044014 +n41015044015 +n41015044016 +n41015045001 +n41015045002 +n41015045003 +n41015045004 +n41015045005 +n41015045006 +n41015045007 +n41015045008 +n41015045009 +n41015045010 +n41015046001 +n41015046002 +n41015046003 +n41015046004 +n41015046005 +n41015046006 +n41015046007 +n41015046008 +n41015046009 +n41015046010 +n41015046011 +n41015046012 +n41015046013 +n41015046014 +n41015046015 +n41015046016 +n41015046017 +n41015046018 +n41015046019 +n41015046020 +n41015046021 +n41015046022 +n41015046023 +n41015046024 +n41015046025 +n41015046026 +n41015047002 +n41015047001 +n41015047003 +n41015047004 +n41015047005 +n41015047006 +n41015047007 +n41015047008 +n41015047009 +n41015047010 +n41015047011 +n41015047012 +n41016001001 +n41016001002 +n41016001003 +n41016001004 +n41016001005 +n41016001006 +n41016001007 +n41016001008 +n41016001009 +n41016001010 +n41016001011 +n41016001012 +n41016001013 +n41016001014 +n41016001015 +n41016001016 +n41016001017 +n41016001018 +n41016001019 +n41016001020 +n41016002001 +n41016002002 +n41016002003 +n41016002004 +n41016002005 +n41016002006 +n41016002007 +n41016002008 +n41016002009 +n41016002010 +n41016002011 +n41016002012 +n41016002013 +n41016002014 +n41016003001 +n41016003002 +n41016003003 +n41016003004 +n41016003005 +n41016003006 +n41016003007 +n41016003008 +n41016003009 +n41016003010 +n41016003011 +n41016003012 +n41016003013 +n41016003014 +n41016004001 +n41016004002 +n41016004003 +n41016004004 +n41016004005 +n41016004006 +n41016004007 +n41016004009 +n41016004008 +n41016004010 +n41016004011 +n41016005001 +n41016005002 +n41016005003 +n41016005004 +n41016005005 +n41016005006 +n41016005007 +n41016005008 +n41016005009 +n41016005010 +n41016005011 +n41016005012 +n41016005013 +n41016005014 +n41016005015 +n41016005016 +n41016006002 +n41016006001 +n41016006003 +n41016006004 +n41016006005 +n41016006006 +n41016006008 +n41016006007 +n41016006009 +n41016006010 +n41016006011 +n41016006012 +n41016006013 +n41016006014 +n41016006015 +n41016006016 +n41016006017 +n41016006018 +n41016006019 +n41016006020 +n41016006021 +n41016006022 +n41016007001 +n41016007002 +n41016007003 +n41016007004 +n41016007005 +n41016007006 +n41016007007 +n41016007008 +n41016007009 +n41016007010 +n41016007011 +n41016007012 +n41016007013 +n41016007014 +n41016007015 +n41016007016 +n41016007017 +n41016007018 +n41016007019 +n41016007020 +n41016007021 +n41016008001 +n41016008002 +n41016008003 +n41016008004 +n41016008005 +n41016008006 +n41016008008 +n41016008007 +n41016008009 +n41016008010 +n41016008011 +n41016008012 +n41016008013 +n41016008014 +n41016008015 +n41016008016 +n41016008018 +n41016008017 +n41016009002 +n41016009001 +n41016009003 +n41016009004 +n41016009005 +n41016009006 +n41016009007 +n41016009008 +n41016009009 +n41016009010 +n41016009011 +n41016009012 +n41016009013 +n41016009014 +n41016009015 +n41016010001 +n41016010002 +n41016010003 +n41016010004 +n41016010005 +n41016010006 +n41016010007 +n41016010008 +n41016010009 +n41016010010 +n41016011001 +n41016011002 +n41016011003 +n41016011004 +n41016011005 +n41016011006 +n41016011007 +n41016011008 +n41016011009 +n41016012002 +n41016012001 +n41016012003 +n41016012004 +n41016012005 +n41016012006 +n41016012007 +n41016012008 +n41016012009 +n41016012010 +n41016012011 +n41016012012 +n41016012013 +n41016012014 +n41016013001 +n41016013002 +n41016013003 +n41016013004 +n41016013005 +n41016013006 +n41016013007 +n41016013008 +n41016014002 +n41016014001 +n41016014003 +n41016014004 +n41016014005 +n41016014006 +n41016014007 +n41016014008 +n41016014009 +n41016014010 +n41016014011 +n41016014012 +n41016014013 +n41016014014 +n41016014015 +n41016014016 +n41016014017 +n41016014018 +n41016014019 +n41016014020 +n41016014021 +n41016015001 +n41016015002 +n41016015003 +n41016015004 +n41016015005 +n41016015006 +n41016015007 +n41016015008 +n41016015009 +n41016015010 +n41016015011 +n41016015012 +n41016015013 +n41016015014 +n41016016001 +n41016016002 +n41016016003 +n41016016004 +n41016016005 +n41016016007 +n41016016006 +n41016016008 +n41016016009 +n41016017002 +n41016017001 +n41016017005 +n41016017003 +n41016017004 +n41016017006 +n41016017007 +n41016017008 +n41016017009 +n41016017010 +n41016017011 +n41016017012 +n41016017013 +n41016017015 +n41016017014 +n41016018001 +n41016018002 +n41016018003 +n41016018004 +n41016018005 +n41016018006 +n41016018007 +n41016018008 +n41016018009 +n41016018010 +n41016018011 +n41016018012 +n41016018013 +n41016018014 +n41016018015 +n41016018016 +n41016018017 +n41016019002 +n41016019003 +n41016019001 +n41016019004 +n41016019005 +n41016019006 +n41016019007 +n41016019008 +n41016019009 +n41016019010 +n41016019011 +n41016019012 +n41016019013 +n41016019014 +n41016019015 +n41016019016 +n41016019017 +n41016019018 +n41016019019 +n41016020002 +n41016020001 +n41016020003 +n41016020004 +n41016020005 +n41016020006 +n41016020007 +n41016020008 +n41016020009 +n41016020010 +n41016020011 +n41016020012 +n41016020013 +n41016020014 +n41016020015 +n41016020016 +n41016099002 +n41016099001 +n41016099003 +n41016099004 +n41016099005 +n41016099006 +n41016099007 +n41016099008 +n41016099009 +n41016099010 +n41016099012 +n41016099011 +n41016099013 +n41016099014 +n41016099015 +n41016099016 +n41016099017 +n41016099018 +n41016099019 +n41016099020 +n41016099021 +n41016099022 +n41016099023 +n41016099024 +n41016099025 +n41016099026 +n41016099027 +n41016099028 +n41016099029 +n41016099030 +n41016099031 +n41016099032 +n41016099033 +n42001001001 +n42001001002 +n42001001003 +n42001001004 +n42001001005 +n42001001006 +n42001001007 +n42001001008 +n42001001009 +n42001001010 +n42001001011 +n42001002001 +n42001002002 +n42001002003 +n42001002004 +n42001002005 +n42001002006 +n42001002007 +n42001002008 +n42001002009 +n42001002010 +n42001002011 +n42001002012 +n42001003001 +n42001003002 +n42001003003 +n42001003004 +n42001003005 +n42001003006 +n42001003007 +n42001003008 +n42001003009 +n42001003010 +n42001003011 +n42001004001 +n42001004002 +n42001004003 +n42001004004 +n42001004005 +n42001004006 +n42001004007 +n42001004008 +n42001005001 +n42001005002 +n42001005003 +n42001005004 +n42001005005 +n42001005006 +n42001005007 +n42001005008 +n42001005009 +n42001005010 +n42001005011 +n42001005012 +n42001005013 +n42001005014 +n42001005015 +n42001005016 +n42001005017 +n42001005018 +n42001005019 +n42001005020 +n42001005021 +n42001005022 +n42001005023 +n42001005024 +n42001005025 +n42001005026 +n42001005027 +n42001006002 +n42001006001 +n42001006003 +n42001006004 +n42001006005 +n42001006006 +n42001006007 +n42001006008 +n42001006009 +n42001006010 +n42001006011 +n42001006012 +n42001006013 +n42001006014 +n42001006015 +n42001006016 +n42001006017 +n42001007001 +n42001007002 +n42001007003 +n42001007004 +n42001007005 +n42001007006 +n42001007007 +n42001007008 +n42001007009 +n42001007010 +n42001007011 +n42001007012 +n42001007013 +n42001007018 +n42001007014 +n42001007015 +n42001007016 +n42001007017 +n42001008002 +n42001008001 +n42001008003 +n42001008004 +n42001008005 +n42001008006 +n42001008007 +n42001008008 +n42001008009 +n42001008010 +n42001008011 +n42001008012 +n42001008013 +n42001008014 +n42001008015 +n42001009001 +n42001009002 +n42001009003 +n42001009004 +n42001009005 +n42001009006 +n42001009007 +n42001009008 +n42001009009 +n42001009010 +n42001009011 +n42001009012 +n42001009013 +n42001009014 +n42001010001 +n42001010002 +n42001010003 +n42001010004 +n42001010006 +n42001010007 +n42001010005 +n42001010008 +n42001010009 +n42001010010 +n42001010011 +n42001010012 +n42001010013 +n42001011002 +n42001011001 +n42001011003 +n42001011004 +n42001011005 +n42001011006 +n42001011007 +n42001011008 +n42001011009 +n42001011010 +n42001011011 +n42001011012 +n42001012001 +n42001012002 +n42001012003 +n42001012004 +n42001012005 +n42001012006 +n42001012007 +n42001012008 +n42001012009 +n42001013002 +n42001013001 +n42001013003 +n42001013004 +n42001013005 +n42001013006 +n42001013007 +n42001013008 +n42001013009 +n42001013010 +n42001013011 +n42001013012 +n42001013013 +n42001013014 +n42001013015 +n42001013016 +n42001013017 +n42001013018 +n42001013019 +n42001013020 +n42001013021 +n42001013022 +n42001013023 +n42001013024 +n42001013025 +n42001013026 +n42001013027 +n42001013028 +n42001014001 +n42001014002 +n42001014004 +n42001014003 +n42001014005 +n42001014006 +n42001014007 +n42001014008 +n42001014009 +n42001014010 +n42001014011 +n42001014012 +n42001014013 +n42001015002 +n42001015001 +n42001015003 +n42001015004 +n42001015005 +n42001015006 +n42001015007 +n42001015008 +n42001015009 +n42001015010 +n42001015011 +n42001015012 +n42001015013 +n42001015014 +n42001015015 +n42001015016 +n42001015017 +n42001015018 +n42001015019 +n42001015020 +n42001015021 +n42001016001 +n42001016002 +n42001016003 +n42001016004 +n42001016005 +n42001016006 +n42001016007 +n42001016008 +n42001016009 +n42001016010 +n42001016011 +n42001017001 +n42001017002 +n42001017003 +n42001017004 +n42001017005 +n42001017006 +n42001017007 +n42001017008 +n42001017009 +n42001017010 +n42001017011 +n42001017012 +n42001017013 +n42001017014 +n42001017015 +n42001017016 +n42001017017 +n42001017018 +n42001017019 +n42001017020 +n42001017021 +n42001017022 +n42001017023 +n42001017024 +n42001018001 +n42001018002 +n42001018003 +n42001018004 +n42001018005 +n42001018006 +n42001018007 +n42001018008 +n42001018009 +n42001018010 +n42001018012 +n42001018011 +n42001018013 +n42001018014 +n42001018015 +n42001018016 +n42001018017 +n42001018018 +n42001018019 +n42001018020 +n42001018021 +n42001018022 +n42001018023 +n42001019001 +n42001019002 +n42001019003 +n42001019004 +n42001019005 +n42001019006 +n42001019007 +n42001019008 +n42001019009 +n42001019010 +n42001019011 +n42001019012 +n42001019013 +n42001019014 +n42001019015 +n42001019016 +n42001019017 +n42001019018 +n42001019019 +n42001019020 +n42001019021 +n42001019022 +n42001019023 +n42001020001 +n42001020002 +n42001020003 +n42001020004 +n42001020005 +n42001020006 +n42001020007 +n42001020008 +n42001020009 +n42001020010 +n42001020011 +n42001020012 +n42001020013 +n42001020014 +n42001020015 +n42001020016 +n42001020017 +n42001020018 +n42001020019 +n42001020020 +n42001020021 +n42001020022 +n42001020023 +n42001020024 +n42001020025 +n42001020026 +n42001021001 +n42001021002 +n42001021005 +n42001021003 +n42001021004 +n42001021006 +n42001021007 +n42001021008 +n42001021009 +n42001021010 +n42001021011 +n42001021012 +n42001021013 +n42001021014 +n42001021015 +n42001021016 +n42001022002 +n42001022001 +n42001022003 +n42001022004 +n42001022005 +n42001022006 +n42001022007 +n42001022008 +n42001022009 +n42001022010 +n42001022011 +n42001022012 +n42001022013 +n42001022014 +n42001022015 +n42001022016 +n42001022017 +n42001022018 +n42001022019 +n42001022020 +n42001022021 +n42001022022 +n42001023001 +n42001023002 +n42001023003 +n42001023004 +n42001023005 +n42001023006 +n42001023007 +n42001023008 +n42001023009 +n42001023010 +n42001023011 +n42001023012 +n42001023013 +n42001023014 +n42001024002 +n42001024001 +n42001024003 +n42001024004 +n42001024005 +n42001024006 +n42001024007 +n42001024008 +n42001024009 +n42001024010 +n42001024011 +n42001024012 +n42001024013 +n42001024014 +n42001024015 +n42001024016 +n42001025001 +n42001025002 +n42001025003 +n42001025004 +n42001025005 +n42001025006 +n42001025007 +n42001025008 +n42001025009 +n42001025010 +n42001025011 +n42001025012 +n42001025013 +n42001025014 +n42001026002 +n42001026001 +n42001026003 +n42001026004 +n42001026005 +n42001026006 +n42001026007 +n42001026008 +n42001026009 +n42001026010 +n42001026011 +n42001026012 +n42001026013 +n42001026014 +n42001026015 +n42001026016 +n42001026017 +n42001026018 +n42001026019 +n42001026020 +n42001027001 +n42001027002 +n42001027003 +n42001027004 +n42001027005 +n42001027006 +n42001027007 +n42001027008 +n42001027009 +n42001027010 +n42001027011 +n42001027012 +n42001027013 +n42001027014 +n42001027015 +n42001027016 +n42001028001 +n42001028002 +n42001028003 +n42001028004 +n42001028005 +n42001028006 +n42001028007 +n42001028008 +n42001028009 +n42001028010 +n42001028011 +n42001029002 +n42001029001 +n42001029003 +n42001029004 +n42001029005 +n42001029006 +n42001029007 +n42001029008 +n42001029009 +n42001029010 +n42001029011 +n42001029012 +n42001029013 +n42001030001 +n42001030002 +n42001030003 +n42001030004 +n42001030005 +n42001030006 +n42001030007 +n42001030008 +n42001030010 +n42001030009 +n42001030011 +n42001030012 +n42001030013 +n42001030014 +n42001031001 +n42001031002 +n42001031003 +n42001031004 +n42001031005 +n42001031006 +n42001031007 +n42001031008 +n42001031009 +n42001031010 +n42001031011 +n42001031012 +n42001031013 +n42001031014 +n42001032001 +n42001032002 +n42001032003 +n42001032004 +n42001032005 +n42001032006 +n42001032007 +n42001032008 +n42001032009 +n42001032010 +n42001032011 +n42001032012 +n42001032013 +n42001032014 +n42001032015 +n42001032016 +n42001032017 +n42001032018 +n42001032019 +n42001033001 +n42001033002 +n42001033003 +n42001033004 +n42001033005 +n42001033006 +n42001033007 +n42001033008 +n42001033009 +n42001033010 +n42001033011 +n42001033012 +n42001033013 +n42001033014 +n42001033015 +n42001033016 +n42001034002 +n42001034001 +n42001034003 +n42001034004 +n42001034005 +n42001034006 +n42001034007 +n42001034008 +n42001034009 +n42001034010 +n42001034011 +n42001034012 +n42001034013 +n42001035001 +n42001035002 +n42001035003 +n42001035004 +n42001035005 +n42001035006 +n42001035007 +n42001035008 +n42001035009 +n42001035010 +n42001035011 +n42001035012 +n42001035013 +n42001035014 +n42001035015 +n42001035016 +n42001035017 +n42001035018 +n42001035019 +n42001035020 +n42001035021 +n42001035022 +n42001035023 +n42001035024 +n42001036001 +n42001036002 +n42001036003 +n42001036004 +n42001036005 +n42001036006 +n42001036007 +n42001036008 +n42001036009 +n42001036010 +n42001036011 +n42001036012 +n42001036013 +n42001036014 +n42001036015 +n42001036016 +n42001036017 +n42001036018 +n42001036019 +n42001036020 +n42001036021 +n42001036022 +n42001037001 +n42001037002 +n42001037003 +n42001037004 +n42001037005 +n42001037006 +n42001037007 +n42001037008 +n42001038002 +n42001038001 +n42001038003 +n42001038004 +n42001038005 +n42001038006 +n42001038007 +n42001038008 +n42001038009 +n42001038010 +n42001038011 +n42001038012 +n42001038013 +n42001038014 +n42001038015 +n42001038016 +n42001038017 +n42001038018 +n42001038019 +n42001039002 +n42001039003 +n42001039001 +n42001039004 +n42001039005 +n42001039006 +n42001039007 +n42001039008 +n42001039009 +n42001039010 +n42001039011 +n42001039012 +n42001039013 +n42001039014 +n42001039015 +n42001039016 +n42001040001 +n42001040002 +n42001040003 +n42001040004 +n42001040005 +n42001040006 +n42001040007 +n42001040008 +n42001040009 +n42001040010 +n42001041001 +n42001041002 +n42001041003 +n42001041004 +n42001041005 +n42001041006 +n42001041007 +n42001041008 +n42001041009 +n42001041010 +n42001041011 +n42001041012 +n42001041013 +n42001041014 +n42001041015 +n42001041016 +n42001041017 +n42001041018 +n42001041019 +n42001041020 +n42001041021 +n42001041022 +n42001041023 +n42001042001 +n42001042002 +n42001042003 +n42001042004 +n42001042005 +n42001042006 +n42001042007 +n42001042008 +n42001042009 +n42001042010 +n42001042011 +n42001042012 +n42001042013 +n42001042014 +n42001042015 +n42001042016 +n42001042017 +n42001043001 +n42001043002 +n42001043003 +n42001043004 +n42001043005 +n42001043006 +n42001043007 +n42001043008 +n42001043009 +n42001043010 +n42001043011 +n42001043012 +n42001043013 +n42001044002 +n42001044001 +n42001044003 +n42001044004 +n42001044005 +n42001044006 +n42001044007 +n42001044008 +n42001044009 +n42001044010 +n42001044011 +n42001044012 +n42001044013 +n42001044014 +n42001044015 +n42001044016 +n42001044017 +n42001044018 +n42001044019 +n42001044020 +n42001044021 +n42001044022 +n42001045001 +n42001045002 +n42001045003 +n42001045004 +n42001045005 +n42001045006 +n42001045007 +n42001045008 +n42001045009 +n42001045010 +n42001045011 +n42001045012 +n42001046001 +n42001046002 +n42001046003 +n42001046004 +n42001046005 +n42001046006 +n42001046007 +n42001046008 +n42001046009 +n42001047001 +n42001047002 +n42001047003 +n42001047004 +n42001047005 +n42001047006 +n42001047007 +n42001047008 +n42001047009 +n42001047010 +n42001047011 +n42001048001 +n42001048002 +n42001048003 +n42001048004 +n42001048005 +n42001048006 +n42001048007 +n42001048008 +n42001048010 +n42001048009 +n42001048011 +n42001048012 +n42001048013 +n42001048014 +n42001048015 +n42001048016 +n42001048017 +n42001048018 +n42001049001 +n42001049002 +n42001049003 +n42001049004 +n42001049005 +n42001049006 +n42001049007 +n42001049008 +n42001049009 +n42001049010 +n42001049011 +n42001050001 +n42001050002 +n42001050003 +n42001050004 +n42001050005 +n42001050006 +n42001050007 +n42001050008 +n42001050009 +n42001050010 +n42001050011 +n42001051001 +n42001051002 +n42001051003 +n42001051004 +n42001051005 +n42001051006 +n42001051007 +n42001051008 +n42001051009 +n42001051010 +n42001052001 +n42001052002 +n42001052003 +n42001052004 +n42001052005 +n42001052006 +n42001052007 +n42001053001 +n42001053002 +n42001053003 +n42001053004 +n42001053005 +n42001053006 +n42001053007 +n42001054001 +n42001054002 +n42001054003 +n42001054004 +n42001054005 +n42001054006 +n42001055007 +n42001055008 +n42001055009 +n42001055010 +n42001055011 +n42001055012 +n42001055013 +n42001055014 +n42001055015 +n42001055001 +n42001055002 +n42001055003 +n42001055004 +n42001055005 +n42001055006 +n42001056002 +n42001056001 +n42001056003 +n42001056004 +n42001056005 +n42001056006 +n42001056007 +n42001056008 +n42001056009 +n42001056010 +n42001056011 +n42001056012 +n42001056013 +n42001056014 +n42001057002 +n42001057001 +n42001057003 +n42001057004 +n42001057005 +n42001057006 +n42001057007 +n42001057008 +n42001057009 +n42001057010 +n42001057011 +n42001057012 +n42001058001 +n42001058002 +n42001058003 +n42001058004 +n42001058005 +n42001058006 +n42001058007 +n42001058008 +n42001058009 +n42001058010 +n42001058011 +n42001058012 +n42001058013 +n42001058014 +n42001058015 +n42001058016 +n42001058017 +n42001058018 +n42001058019 +n42001059001 +n42001059002 +n42001059003 +n42001059004 +n42001059005 +n42001059006 +n42001059007 +n42001059008 +n42001059009 +n42001059010 +n42001059011 +n42001059012 +n42001059013 +n42001059014 +n42001059015 +n42001059016 +n42001059017 +n42001059018 +n42001059019 +n42001059020 +n42001059021 +n42001060001 +n42001060002 +n42001060003 +n42001060004 +n42001060005 +n42001060006 +n42001060007 +n42001060008 +n42001060009 +n42001060010 +n42001061001 +n42001061002 +n42001061003 +n42001061004 +n42001061005 +n42001061007 +n42001061008 +n42001061009 +n42001061010 +n42001061011 +n42001061006 +n42001061012 +n42001061013 +n42001061014 +n42001061015 +n42001061016 +n42001062002 +n42001062001 +n42001062003 +n42001062004 +n42001062005 +n42001062006 +n42001062008 +n42001062009 +n42001062007 +n42001062010 +n42001062011 +n42001063001 +n42001063002 +n42001063003 +n42001063004 +n42001063005 +n42001063006 +n42001063007 +n42001063008 +n42001063009 +n42001063010 +n42001063011 +n42001063012 +n42001064002 +n42001064001 +n42001064003 +n42001064004 +n42001064005 +n42001064006 +n42001064007 +n42001064008 +n42001064009 +n42001064010 +n42001064011 +n42001064012 +n42001064013 +n42001064014 +n42001064015 +n42001065001 +n42001065002 +n42001065005 +n42001065003 +n42001065004 +n42001065006 +n42001065007 +n42001065008 +n42001065009 +n42001065010 +n42001065011 +n42001065012 +n42001065013 +n42001065014 +n42001065015 +n42001065016 +n42001065017 +n42001065018 +n42001065019 +n42001065020 +n42001066001 +n42001066002 +n42001066003 +n42001066004 +n42001066005 +n42001066006 +n42001066007 +n42001066008 +n42001066009 +n42001066010 +n42001066012 +n42001066011 +n42001066013 +n42001066014 +n42001066015 +n42001066016 +n42001066018 +n42001066017 +n42001066019 +n42001066020 +n42001066021 +n42001066022 +n42001066023 +n42001067001 +n42001067002 +n42001067003 +n42001067004 +n42001067005 +n42001067006 +n42001067007 +n42001067008 +n42001067009 +n42001067010 +n42001067011 +n42001068001 +n42001068002 +n42001068003 +n42001068004 +n42001068005 +n42001068006 +n42001068007 +n42001068008 +n42001068009 +n42001068010 +n42001068011 +n42001068012 +n42001068013 +n42001068014 +n42001069001 +n42001069002 +n42001069003 +n42001069004 +n42001069005 +n42001069006 +n42001069007 +n42001069008 +n42001069009 +n42001069010 +n42001070001 +n42001070002 +n42001070003 +n42001070004 +n42001070005 +n42001070006 +n42001070007 +n42001070008 +n42001070009 +n42001070010 +n42001071001 +n42001071002 +n42001071003 +n42001071004 +n42001071005 +n42001071006 +n42001071007 +n42001071008 +n42001071009 +n42001071010 +n42001071011 +n42001072001 +n42001072002 +n42001072003 +n42001072004 +n42001072005 +n42001072006 +n42001072007 +n42001072008 +n42001072009 +n42001072010 +n42001072011 +n42001073001 +n42001073002 +n42001073003 +n42001073004 +n42001073005 +n42001073006 +n42001073007 +n42001073008 +n42001073009 +n42001073010 +n42001073011 +n42001074002 +n42001074003 +n42001074004 +n42001074005 +n42001074001 +n42001074006 +n42001074007 +n42001075001 +n42001075002 +n42001075003 +n42001075004 +n42001075005 +n42001075006 +n42001075007 +n42001075008 +n42001075009 +n42001075010 +n42001076003 +n42001076004 +n42001076001 +n42001076002 +n42001076005 +n42001076006 +n42001076007 +n42001076009 +n42001076008 +n42001076010 +n42001076011 +n42001076012 +n42001076013 +n42001076014 +n42001077001 +n42001077002 +n42001077003 +n42001077004 +n42001077005 +n42001077006 +n42001077007 +n42001077008 +n42001077009 +n42001077010 +n42001077011 +n42001078001 +n42001078002 +n42001078003 +n42001078004 +n42001078005 +n42001078006 +n42001078007 +n42001078008 +n42001078009 +n42001078010 +n42001078011 +n42001078012 +n42001079001 +n42001079002 +n42001079003 +n42001079004 +n42001079005 +n42001079006 +n42001079007 +n42001079008 +n42001079009 +n42001079010 +n42001079011 +n42001079012 +n42001079013 +n42001079014 +n42001079015 +n42001079016 +n42001080002 +n42001080001 +n42001080003 +n42001080004 +n42001080005 +n42001080006 +n42001080007 +n42001080008 +n42001080009 +n42001080010 +n42001080011 +n42001080012 +n42001080013 +n42001080014 +n42001080015 +n42001080016 +n42001080017 +n42001080018 +n42001080019 +n42002001002 +n42002001001 +n42002001003 +n42002001004 +n42002001005 +n42002001006 +n42002001007 +n42002001008 +n42002001009 +n42002001010 +n42002001011 +n42002001012 +n42002001013 +n42002001014 +n42002001015 +n42002002001 +n42002002002 +n42002002003 +n42002002004 +n42002002005 +n42002002006 +n42002002007 +n42002002008 +n42002003001 +n42002003002 +n42002003003 +n42002003004 +n42002003005 +n42002003006 +n42002003007 +n42002003008 +n42002003009 +n42002004002 +n42002004001 +n42002004003 +n42002004004 +n42002004005 +n42002004006 +n42002004007 +n42002004008 +n42002004009 +n42002004010 +n42002004011 +n42002004012 +n42002004013 +n42002004014 +n42002004015 +n42002004016 +n42002004017 +n42002004018 +n42002004019 +n42002004020 +n42002004021 +n42002004022 +n42002004023 +n42002004024 +n42002004025 +n42002004026 +n42002004027 +n42002004028 +n42002005001 +n42002005002 +n42002005003 +n42002005004 +n42002005005 +n42002005006 +n42002005007 +n42002005008 +n42002006002 +n42002006001 +n42002006003 +n42002006004 +n42002006005 +n42002006006 +n42002006007 +n42002006008 +n42002006009 +n42002006010 +n42002006011 +n42002006012 +n42002006013 +n42002007001 +n42002007002 +n42002007003 +n42002007004 +n42002007005 +n42002007006 +n42002007007 +n42002007008 +n42002007009 +n42002007010 +n42002007011 +n42002007012 +n42002007013 +n42002007014 +n42002007015 +n42002007016 +n42002007017 +n42002007018 +n42002007019 +n42002007020 +n42002007021 +n42002007022 +n42002007023 +n42002008001 +n42002008002 +n42002008003 +n42002008004 +n42002008005 +n42002008006 +n42002008007 +n42002008008 +n42002008009 +n42002008010 +n42002008011 +n42002008012 +n42002008013 +n42002008014 +n42002008015 +n42002008016 +n42002008017 +n42002008018 +n42002009001 +n42002009002 +n42002009003 +n42002009004 +n42002009005 +n42002009006 +n42002009007 +n42002009008 +n42002009009 +n42002009010 +n42002009011 +n42002009012 +n42002009013 +n42002009014 +n42002010001 +n42002010002 +n42002010003 +n42002010004 +n42002010005 +n42002010006 +n42002010007 +n42002010009 +n42002010008 +n42002010010 +n42002010011 +n42002010012 +n42002010013 +n42002010014 +n42002010015 +n42002010016 +n42002010017 +n42002010018 +n42002011001 +n42002011002 +n42002011003 +n42002011004 +n42002011005 +n42002011006 +n42002011007 +n42002011008 +n42002011009 +n42002011010 +n42002011011 +n42002011012 +n42002012001 +n42002012002 +n42002012003 +n42002012004 +n42002012005 +n42002012006 +n42002012007 +n42002012008 +n42002012009 +n42002012010 +n42002012011 +n42002013001 +n42002013002 +n42002013003 +n42002013004 +n42002013005 +n42002013006 +n42002013007 +n42002013008 +n42002013009 +n42002013010 +n42002013011 +n42002013012 +n42002013013 +n42002013014 +n42002014001 +n42002014002 +n42002014003 +n42002014004 +n42002014005 +n42002014006 +n42002014007 +n42002014008 +n42002014009 +n42002014010 +n42002014011 +n42002015001 +n42002015002 +n42002015003 +n42002015004 +n42002015005 +n42002015006 +n42002015007 +n42002015008 +n42002015009 +n42002015010 +n42002015011 +n42002015012 +n42002015013 +n42002015014 +n42002015015 +n42002015016 +n42002015018 +n42002015017 +n42002015019 +n42002015020 +n42002015021 +n42002015022 +n42002015023 +n42002015024 +n42002015025 +n42002015026 +n42002015027 +n42002015028 +n42002015029 +n42002015030 +n42002015031 +n42002015032 +n42002016001 +n42002016002 +n42002016003 +n42002016004 +n42002016005 +n42002016007 +n42002016006 +n42002016008 +n42002016009 +n42002016010 +n42002016011 +n42002016012 +n42002016013 +n42002016014 +n42002016015 +n42002016016 +n42002016017 +n42002016018 +n42002017002 +n42002017001 +n42002017003 +n42002017004 +n42002017005 +n42002017006 +n42002017007 +n42002017008 +n42002017009 +n42002017010 +n42002017011 +n42002017012 +n42002017013 +n42002018001 +n42002018002 +n42002018003 +n42002018004 +n42002018005 +n42002018006 +n42002018007 +n42002018008 +n42002018009 +n42002018010 +n42002018011 +n42002018012 +n42002018013 +n42002019002 +n42002019001 +n42002019003 +n42002019005 +n42002019004 +n42002019006 +n42002019007 +n42002019008 +n42002019009 +n42002019010 +n42002019011 +n42002019012 +n42002019013 +n42002020001 +n42002020002 +n42002020003 +n42002020004 +n42002020005 +n42002020006 +n42002020007 +n42002020008 +n42002020009 +n42002020010 +n42002020011 +n42002020012 +n42002020013 +n42002020014 +n42002020015 +n42002020016 +n42002020017 +n42002020018 +n42002020019 +n42002021001 +n42002021002 +n42002021003 +n42002021004 +n42002021005 +n42002021006 +n42002021007 +n42002021008 +n42002021009 +n42002021010 +n42002021011 +n42002021012 +n42002021013 +n42002021014 +n42002021015 +n42002021016 +n42002021017 +n42002021018 +n42002021019 +n42002021020 +n42002021021 +n42002021022 +n42002021023 +n42002021024 +n42002021025 +n42002021026 +n42002022001 +n42002022002 +n42002022003 +n42002022004 +n42002022005 +n42002022006 +n42002022007 +n42002022008 +n42002022009 +n42002022010 +n42002022011 +n42002022012 +n42002022013 +n42002022014 +n42002022015 +n42002022016 +n42002022017 +n42002022018 +n42002022019 +n42002023001 +n42002023002 +n42002023003 +n42002023004 +n42002023005 +n42002023006 +n42002023007 +n42002023008 +n42002023009 +n42002023010 +n42002023011 +n42002023012 +n42002023013 +n42002023014 +n42002024001 +n42002024002 +n42002024003 +n42002024004 +n42002024005 +n42002024006 +n42002024007 +n42002024008 +n42002024009 +n42002024010 +n42002024011 +n42002024012 +n42002024013 +n42002024014 +n42002024015 +n42002024016 +n42002024017 +n42002025001 +n42002025002 +n42002025003 +n42002025004 +n42002025005 +n42002025006 +n42002025007 +n42002025008 +n42002025009 +n42002025010 +n42002025011 +n42002025012 +n42002025013 +n42002025014 +n42002025015 +n42002025016 +n42002025017 +n42002025018 +n42002025019 +n42002025020 +n42002025021 +n42002025022 +n42002025024 +n42002025023 +n42002025025 +n42002025026 +n42002026001 +n42002026002 +n42002026004 +n42002026003 +n42002026005 +n42002026006 +n42002026007 +n42002026008 +n42002026009 +n42002026010 +n42002026011 +n42002026012 +n42002026013 +n42002026014 +n42002026015 +n42002026016 +n42002026017 +n42002026018 +n42002026019 +n42002027001 +n42002027002 +n42002027003 +n42002027004 +n42002027005 +n42002027006 +n42002027007 +n42002027008 +n42002027009 +n42002027010 +n42002027011 +n42002027012 +n42002027013 +n42002027014 +n42002027015 +n42002027016 +n42002027017 +n42002027018 +n42002027019 +n42002027020 +n42002027021 +n42002027022 +n42002027023 +n42002027024 +n42002027025 +n42002027026 +n42002027027 +n42002028001 +n42002028002 +n42002028003 +n42002028004 +n42002028005 +n42002028006 +n42002028007 +n42002028008 +n42002028009 +n42002028010 +n42002028011 +n42002028012 +n42002028013 +n42002029006 +n42002029001 +n42002029002 +n42002029003 +n42002029004 +n42002029005 +n42002029007 +n42002029008 +n42002029009 +n42002029010 +n42002029011 +n42002029012 +n42002030001 +n42002030002 +n42002030003 +n42002030004 +n42002030005 +n42002030006 +n42002030007 +n42002030008 +n42002031001 +n42002031002 +n42002031003 +n42002031004 +n42002031005 +n42002031006 +n42002031007 +n42002032001 +n42002032002 +n42002032003 +n42002032004 +n42002032005 +n42002032006 +n42002032007 +n42002032008 +n42002032009 +n42002033001 +n42002033002 +n42002033009 +n42002033003 +n42002033004 +n42002033005 +n42002033006 +n42002033007 +n42002033008 +n42002033010 +n42002033011 +n42002033012 +n42002033013 +n42002033014 +n42002034001 +n42002034002 +n42002034003 +n42002034004 +n42002034005 +n42002034006 +n42002034007 +n42002034008 +n42002034009 +n42002034010 +n42002034011 +n42002034012 +n42002034013 +n42002034014 +n42002034015 +n42002034016 +n42002034017 +n42002034018 +n42002034019 +n42002034020 +n42002034021 +n42002034022 +n42002034023 +n42002034024 +n42002034025 +n42002034026 +n42002035003 +n42002035001 +n42002035002 +n42002035004 +n42002035005 +n42002035006 +n42002035007 +n42002035008 +n42002035009 +n42002035010 +n42002035011 +n42002035012 +n42002035013 +n42002035014 +n42002035015 +n42002036001 +n42002036002 +n42002036003 +n42002036004 +n42002036005 +n42002036006 +n42002036007 +n42002036008 +n42002036009 +n42002036010 +n42002036011 +n42002036012 +n42002036013 +n42002036014 +n42002036015 +n42002036016 +n42002036017 +n42002036018 +n42002036019 +n42002036020 +n42002036021 +n42002036022 +n42002036023 +n42002037001 +n42002037002 +n42002037003 +n42002037004 +n42002037005 +n42002037006 +n42002037007 +n42002037008 +n42002037009 +n42002037010 +n42002037011 +n42002037012 +n42002037013 +n42002037014 +n42002037015 +n42002037016 +n42002037017 +n42002037018 +n42002037019 +n42002038001 +n42002038002 +n42002038003 +n42002038004 +n42002038005 +n42002038006 +n42002038007 +n42002038008 +n42002038009 +n42002038010 +n42002038011 +n42002038012 +n42002038013 +n42002038014 +n42002038015 +n42002038016 +n42002038017 +n42002039001 +n42002039002 +n42002039003 +n42002039004 +n42002039005 +n42002039006 +n42002039007 +n42002039008 +n42002039009 +n42002039010 +n42002039011 +n42002039012 +n42002039013 +n42002039014 +n42002039015 +n42002039016 +n42002039017 +n42002040002 +n42002040001 +n42002040003 +n42002040004 +n42002040005 +n42002040006 +n42002040007 +n42002040008 +n42002040009 +n42002040010 +n42002040011 +n42002040012 +n42002040013 +n42002040014 +n42002041001 +n42002041002 +n42002041003 +n42002041004 +n42002041005 +n42002041006 +n42002041007 +n42002041008 +n42002041009 +n42002041010 +n42002041011 +n42002041012 +n42002041013 +n42002042001 +n42002042002 +n42002042003 +n42002042004 +n42002042005 +n42002042006 +n42002042007 +n42002042008 +n42002042009 +n42002042010 +n42002042011 +n42002042012 +n42002043001 +n42002043002 +n42002043003 +n42002043004 +n42002043005 +n42002043006 +n42002043007 +n42002043008 +n42002043009 +n42002043010 +n42002043011 +n42002043012 +n42002043013 +n42002043014 +n42002043015 +n42002043016 +n42002043017 +n42002043018 +n42002043019 +n42002043020 +n42002044002 +n42002044001 +n42002044003 +n42002044004 +n42002044005 +n42002044006 +n42002044007 +n42002044008 +n42002044009 +n42002044010 +n42002044011 +n42002044012 +n42002044013 +n42002044014 +n42002044015 +n42002044016 +n42002044017 +n42002044018 +n42002044019 +n42002045001 +n42002045002 +n42002045003 +n42002045004 +n42002045005 +n42002045006 +n42002045007 +n42002045008 +n42002046001 +n42002046002 +n42002046003 +n42002046004 +n42002046005 +n42002046006 +n42002046007 +n42002046008 +n42002046009 +n42002046010 +n42002046011 +n42002046012 +n42002046013 +n42002046014 +n42002046015 +n42002046016 +n42002046017 +n42002046018 +n42002046019 +n42002046020 +n42002046021 +n42002047002 +n42002047001 +n42002047003 +n42002047004 +n42002047005 +n42002047006 +n42002047007 +n42002047008 +n42002047009 +n42002047010 +n42002047011 +n42002047012 +n42002047013 +n42002048001 +n42002048002 +n42002048003 +n42002048004 +n42002048005 +n42002048006 +n42002048007 +n42002048008 +n42002048009 +n42002048010 +n42002048011 +n42002048012 +n42002048013 +n42002048014 +n42002048015 +n42002048016 +n42002048017 +n42002048018 +n42002048019 +n42002048020 +n42002048021 +n42002048022 +n42002048023 +n42002048024 +n42002049001 +n42002049002 +n42002049003 +n42002049004 +n42002049005 +n42002049006 +n42002049007 +n42002049008 +n42002049009 +n42002049010 +n42002049011 +n42002049012 +n42002049013 +n42002049014 +n42002049015 +n42002049016 +n42002049018 +n42002049019 +n42002049017 +n42002050001 +n42002050002 +n42002050003 +n42002050004 +n42002050005 +n42002050006 +n42002050007 +n42002050008 +n42002050009 +n42002051001 +n42002051002 +n42002051003 +n42002051004 +n42002051005 +n42002051006 +n42002051007 +n42002051008 +n42002051009 +n42002051010 +n42002051011 +n42002051012 +n42002051013 +n42002051014 +n42002051015 +n42002051016 +n42002051017 +n42002051018 +n42002051019 +n42002051020 +n42002051021 +n42002051022 +n42002051023 +n42002051024 +n42002052001 +n42002052002 +n42002052003 +n42002052004 +n42002052005 +n42002052006 +n42002052007 +n42002052008 +n42002052009 +n42002052010 +n42002052011 +n42002052012 +n42002052013 +n42002052014 +n42003001003 +n42003001001 +n42003001002 +n42003001004 +n42003001005 +n42003001006 +n42003001007 +n42003001008 +n42003001009 +n42003001010 +n42003001011 +n42003001012 +n42003001013 +n42003001014 +n42003001015 +n42003001016 +n42003001017 +n42003001018 +n42003001020 +n42003001019 +n42003001021 +n42003001022 +n42003001023 +n42003001024 +n42003001025 +n42003001026 +n42003001027 +n42003001028 +n42003001029 +n42003001030 +n42003001031 +n42003001032 +n42003001033 +n42003001034 +n42003002001 +n42003002002 +n42003002003 +n42003002004 +n42003002005 +n42003002006 +n42003002007 +n42003002008 +n42003002009 +n42003002010 +n42003002011 +n42003002012 +n42003002013 +n42003002014 +n42003002015 +n42003002016 +n42003003001 +n42003003002 +n42003003003 +n42003003004 +n42003003005 +n42003003006 +n42003003007 +n42003003008 +n42003003009 +n42003003010 +n42003003011 +n42003003012 +n42003003013 +n42003003014 +n42003004001 +n42003004002 +n42003004003 +n42003004004 +n42003004005 +n42003004006 +n42003004007 +n42003004008 +n42003004009 +n42003004010 +n42003004011 +n42003004012 +n42003004013 +n42003004014 +n42003004015 +n42003004016 +n42003004017 +n42003004018 +n42003004019 +n42003004020 +n42003004021 +n42003004022 +n42003005001 +n42003005002 +n42003005003 +n42003005004 +n42003005005 +n42003005006 +n42003005007 +n42003005008 +n42003005009 +n42003005010 +n42003005011 +n42003005012 +n42003005013 +n42003005014 +n42003005015 +n42003005016 +n42003005017 +n42003005018 +n42003005019 +n42003005020 +n42003005021 +n42003006001 +n42003006002 +n42003006003 +n42003006004 +n42003006005 +n42003006006 +n42003006007 +n42003006008 +n42003007002 +n42003007001 +n42003007003 +n42003007004 +n42003007006 +n42003007007 +n42003007008 +n42003007005 +n42003007009 +n42003007010 +n42003007011 +n42003007012 +n42003007013 +n42003007014 +n42003007015 +n42003007016 +n42003007017 +n42003007018 +n42003008002 +n42003008001 +n42003008003 +n42003008004 +n42003008005 +n42003008006 +n42003008007 +n42003008008 +n42003008009 +n42003008010 +n42003008011 +n42003008012 +n42003008013 +n42003008014 +n42003008015 +n42003008016 +n42003008018 +n42003008017 +n42003008019 +n42003008020 +n42003008021 +n42003008022 +n42003008023 +n42003008024 +n42003008025 +n42003008026 +n42003008027 +n42003008028 +n42003008029 +n42003008030 +n42003008031 +n42003009002 +n42003009001 +n42003009003 +n42003009004 +n42003009005 +n42003009006 +n42003009007 +n42003009008 +n42003009009 +n42003009010 +n42003009011 +n42003009013 +n42003009012 +n42003009014 +n42003009015 +n42003009016 +n42003009017 +n42003009018 +n42003009019 +n42003009020 +n42003009021 +n42003009022 +n42003009023 +n42003010001 +n42003010002 +n42003010003 +n42003010004 +n42003010005 +n42003010006 +n42003010008 +n42003010007 +n42003010009 +n42003011002 +n42003011001 +n42003011003 +n42003011004 +n42003011005 +n42003011006 +n42003011007 +n42003011008 +n42003011009 +n42003011010 +n42003011011 +n42003011012 +n42003011013 +n42003011014 +n42003011015 +n42003011016 +n42003011017 +n42003011018 +n42003012002 +n42003012001 +n42003012003 +n42003012004 +n42003012005 +n42003012006 +n42003012007 +n42003012008 +n42003012009 +n42003012010 +n42003012011 +n42003012012 +n42003013002 +n42003013001 +n42003013003 +n42003013004 +n42003013005 +n42003013006 +n42003013007 +n42003013008 +n42003013009 +n42003013010 +n42003013011 +n42003013012 +n42003014002 +n42003014001 +n42003014003 +n42003014004 +n42003014005 +n42003014006 +n42003014007 +n42003014008 +n42003014009 +n42003014010 +n42003014011 +n42003014012 +n42003014013 +n42003014014 +n42003014015 +n42003014016 +n42003014017 +n42003014018 +n42003014019 +n42003014020 +n42003014021 +n42003014022 +n42003015002 +n42003015001 +n42003015003 +n42003015004 +n42003015005 +n42003015006 +n42003015007 +n42003015008 +n42003015009 +n42003015010 +n42003015011 +n42003015012 +n42003015013 +n42003015014 +n42003015015 +n42003015016 +n42003015017 +n42003015018 +n42003015019 +n42003015020 +n42003016001 +n42003016002 +n42003016003 +n42003016004 +n42003016005 +n42003016007 +n42003016006 +n42003016008 +n42003016009 +n42003016010 +n42003016012 +n42003016011 +n42003016013 +n42003016014 +n42003016015 +n42003016016 +n42003016017 +n42003016018 +n42003016019 +n42003016020 +n42003016021 +n42003016022 +n42003016023 +n42003016024 +n42003016025 +n42003016026 +n42003016027 +n42003016028 +n42003016029 +n42003016030 +n42003016031 +n42003016032 +n42003016033 +n42003017001 +n42003017002 +n42003017003 +n42003017004 +n42003017005 +n42003017006 +n42003017007 +n42003017008 +n42003017009 +n42003017010 +n42003017011 +n42003017012 +n42003017013 +n42003017014 +n42003017015 +n42003017016 +n42003017017 +n42003017018 +n42003017019 +n42003017021 +n42003017020 +n42003017022 +n42003017023 +n42003017024 +n42003017025 +n42003018002 +n42003018003 +n42003018001 +n42003018004 +n42003018005 +n42003018006 +n42003018007 +n42003018008 +n42003018009 +n42003019002 +n42003019001 +n42003019003 +n42003019004 +n42003019005 +n42003019006 +n42003019007 +n42003019008 +n42003019009 +n42003019010 +n42003019011 +n42003019012 +n42003019013 +n42003019014 +n42003019015 +n42003019016 +n42003019017 +n42003019018 +n42003019019 +n42003019021 +n42003019020 +n42003019022 +n42003019023 +n42003020001 +n42003020002 +n42003020003 +n42003020004 +n42003020005 +n42003020006 +n42003020007 +n42003020008 +n42003020009 +n42003020010 +n42003021002 +n42003021001 +n42003021003 +n42003021004 +n42003021005 +n42003021006 +n42003021007 +n42003021008 +n42003021009 +n42003021010 +n42003021011 +n42003021012 +n42003021013 +n42003021014 +n42003021015 +n42003021016 +n42003022001 +n42003022002 +n42003022003 +n42003022004 +n42003022005 +n42003022006 +n42003022007 +n42003022008 +n42003022009 +n42003022010 +n42003022011 +n42003022012 +n42003022013 +n42003022014 +n42003022015 +n42003022016 +n42003022017 +n42003022018 +n42003022019 +n42003022020 +n42003022021 +n42003022022 +n42003022023 +n42003022024 +n42003022025 +n42003022026 +n42003022027 +n42003023001 +n42003023002 +n42003023004 +n42003023003 +n42003023005 +n42003023006 +n42003023007 +n42003023008 +n42003023011 +n42003023012 +n42003023009 +n42003023010 +n42003023013 +n42003023014 +n42003023015 +n42003024001 +n42003024002 +n42003024003 +n42003024004 +n42003024005 +n42003024006 +n42003024007 +n42003024008 +n42003024009 +n42003024010 +n42003025001 +n42003025002 +n42003025003 +n42003025004 +n42003025005 +n42003025006 +n42003025007 +n42003025008 +n42003025009 +n42003025010 +n42003026001 +n42003026002 +n42003026003 +n42003026004 +n42003026005 +n42003026006 +n42003026007 +n42003026008 +n42003026009 +n42003026010 +n42003027001 +n42003027002 +n42003027003 +n42003027004 +n42003027005 +n42003027006 +n42003027007 +n42003027008 +n42003027009 +n42003027010 +n42003028001 +n42003028002 +n42003028003 +n42003028004 +n42003028005 +n42003028006 +n42003028007 +n42003028008 +n42003028009 +n42003028010 +n42003029001 +n42003029002 +n42003029003 +n42003029004 +n42003029005 +n42003029006 +n42003029007 +n42003029008 +n42003029009 +n42003029010 +n42003030001 +n42003030002 +n42003030003 +n42003030004 +n42003030005 +n42003030006 +n42003030007 +n42003030008 +n42003030009 +n42003030010 +n42003031001 +n42003031002 +n42003031003 +n42003031004 +n42003031005 +n42003031006 +n42003031007 +n42003031008 +n42003031009 +n42003031010 +n42003032001 +n42003032002 +n42003032003 +n42003032004 +n42003032005 +n42003032006 +n42003032007 +n42003032008 +n42003032009 +n42003032010 +n42003033001 +n42003033002 +n42003033003 +n42003033004 +n42003033005 +n42003033006 +n42003033007 +n42003033008 +n42003033009 +n42003033010 +n42003033011 +n42003033012 +n42003034001 +n42003034002 +n42003034003 +n42003034004 +n42003034005 +n42003034006 +n42003034007 +n42003034008 +n42003034009 +n42003034010 +n42003035001 +n42003035002 +n42003035003 +n42003035004 +n42003035005 +n42003035006 +n42003035007 +n42003035008 +n42003035009 +n42003035010 +n42003036001 +n42003036002 +n42003036003 +n42003036004 +n42003036005 +n42003036006 +n42003036007 +n42003036008 +n42003036009 +n42003036010 +n42003037001 +n42003037002 +n42003037003 +n42003037004 +n42003037005 +n42003037006 +n42003037007 +n42003037008 +n42003037009 +n42003037010 +n42003038001 +n42003038002 +n42003038003 +n42003038004 +n42003038005 +n42003038006 +n42003038007 +n42003038008 +n42004001002 +n42004001001 +n42004001003 +n42004001004 +n42004001005 +n42004001006 +n42004001007 +n42004001008 +n42004001009 +n42004001010 +n42004001011 +n42004001012 +n42004001013 +n42004001014 +n42004001015 +n42004001016 +n42004001017 +n42004002001 +n42004002002 +n42004002003 +n42004002004 +n42004002005 +n42004002006 +n42004002007 +n42004002008 +n42004002009 +n42004002010 +n42004002011 +n42004002012 +n42004002013 +n42004002014 +n42004002015 +n42004002016 +n42004002017 +n42004002018 +n42004003002 +n42004003001 +n42004003003 +n42004003004 +n42004003005 +n42004003006 +n42004003008 +n42004003007 +n42004003009 +n42004003010 +n42004003011 +n42004003012 +n42004003013 +n42004003014 +n42004003015 +n42004003016 +n42004003017 +n42004004001 +n42004004002 +n42004004003 +n42004004004 +n42004004005 +n42004004006 +n42004004007 +n42004004008 +n42004004009 +n42004004010 +n42004004011 +n42004004012 +n42004004013 +n42004004014 +n42004004015 +n42004005001 +n42004005002 +n42004005003 +n42004005004 +n42004005005 +n42004005006 +n42004005007 +n42004005008 +n42004005009 +n42004005010 +n42004005011 +n42004005012 +n42004005013 +n42004006001 +n42004006002 +n42004006003 +n42004006004 +n42004006005 +n42004006006 +n42004006007 +n42004006008 +n42004006009 +n42004006010 +n42004006011 +n42004006012 +n42004006013 +n42004006014 +n42004006015 +n42004006016 +n42004006017 +n42004006018 +n42004006019 +n42004006021 +n42004006020 +n42004006022 +n42004006023 +n42004006024 +n42004007002 +n42004007003 +n42004007001 +n42004007004 +n42004007005 +n42004007006 +n42004007007 +n42004007008 +n42004007009 +n42004008001 +n42004008002 +n42004008003 +n42004008004 +n42004008005 +n42004008006 +n42004008007 +n42004008008 +n42004008009 +n42004008010 +n42004008011 +n42004008012 +n42004008013 +n42004008014 +n42004008015 +n42004008016 +n42004009002 +n42004009001 +n42004009003 +n42004009004 +n42004009005 +n42004009006 +n42004009007 +n42004009008 +n42004009009 +n42004009010 +n42004009011 +n42004009012 +n42004009013 +n42004009014 +n42004009015 +n42004009016 +n42004009018 +n42004009017 +n42004009019 +n42004009020 +n42004009021 +n42004009022 +n42004009023 +n42004009024 +n42004010002 +n42004010001 +n42004010003 +n42004010004 +n42004010005 +n42004010006 +n42004010007 +n42004010008 +n42004010009 +n42004010010 +n42004010011 +n42004010012 +n42004011001 +n42004011002 +n42004011003 +n42004011004 +n42004011005 +n42004011006 +n42004011007 +n42004011008 +n42004011009 +n42004011010 +n42004011011 +n42004011012 +n42004011013 +n42004011014 +n42004012001 +n42004012002 +n42004012003 +n42004012004 +n42004012005 +n42004012006 +n42004012007 +n42004012008 +n42004012009 +n42004012010 +n42004012011 +n42004012012 +n42004012013 +n42004012014 +n42004013001 +n42004013002 +n42004013003 +n42004013004 +n42004013005 +n42004013006 +n42004013007 +n42004013008 +n42004013009 +n42004013010 +n42004013011 +n42004014001 +n42004014002 +n42004014003 +n42004014004 +n42004014005 +n42004014006 +n42004014007 +n42004014008 +n42004014009 +n42004014010 +n42004014011 +n42004014012 +n42004014013 +n42004014014 +n42004014015 +n42004014016 +n42004014017 +n42004014018 +n42004014019 +n42004014020 +n42004014021 +n42004015001 +n42004015002 +n42004015003 +n42004015004 +n42004015005 +n42004015006 +n42004015007 +n42004015008 +n42004015009 +n42004015010 +n42004016001 +n42004016002 +n42004016003 +n42004016004 +n42004016005 +n42004016006 +n42004016007 +n42004016008 +n42004016009 +n42004016010 +n42004016011 +n42004016012 +n42004016013 +n42004016014 +n42004016015 +n42004016016 +n42004016017 +n42004016018 +n42004016019 +n42004016020 +n42004016021 +n42004016022 +n42004016023 +n42004016024 +n42004017001 +n42004017002 +n42004017003 +n42004017004 +n42004017005 +n42004017006 +n42004017007 +n42004017008 +n42004017009 +n42004017010 +n42004017011 +n42004017012 +n42004017013 +n42004017014 +n42004017015 +n42004017016 +n42004017017 +n42004018001 +n42004018002 +n42004018003 +n42004018004 +n42004018005 +n42004018006 +n42004018007 +n42004018008 +n42004018009 +n42004018010 +n42004018011 +n42004018012 +n42004018013 +n42004018014 +n42004018015 +n42004018016 +n42004018017 +n42004018018 +n42004018019 +n42004018020 +n42004018021 +n42004018022 +n42004019001 +n42004019002 +n42004019003 +n42004019004 +n42004020001 +n42004020002 +n42004020003 +n42004020004 +n42004020005 +n42004020006 +n42004020007 +n42004020008 +n42004020009 +n42004020010 +n42004020011 +n42004020012 +n42004020013 +n42004020014 +n42004020015 +n42004020016 +n42004020017 +n42004020018 +n42004021002 +n42004021001 +n42004021003 +n42004021004 +n42004021005 +n42004021006 +n42004021007 +n42004021008 +n42004021009 +n42004021010 +n42004021011 +n42004021012 +n42004021013 +n42004021014 +n42004021015 +n42004022001 +n42004022002 +n42004022003 +n42004022004 +n42004022005 +n42004022006 +n42004022007 +n42004022008 +n42004022009 +n42004022010 +n42004022011 +n42004022012 +n42004022013 +n42004022014 +n42004022015 +n42004022016 +n42004022017 +n42004022018 +n42004022019 +n42004022020 +n42004022021 +n42004022023 +n42004022022 +n42004022024 +n42004023001 +n42004023002 +n42004023003 +n42004023004 +n42004023005 +n42004023006 +n42004023007 +n42004023008 +n42004023009 +n42004023010 +n42004023011 +n42004023012 +n42004023013 +n42004023015 +n42004023014 +n42004023016 +n42004023017 +n42004023018 +n42004023019 +n42004023020 +n42004023021 +n42004023022 +n42004023023 +n42004023024 +n42004023025 +n42004023026 +n42004024002 +n42004024001 +n42004024003 +n42004024004 +n42004024005 +n42004024006 +n42004024007 +n42004024008 +n42004024009 +n42004024010 +n42004024011 +n42004024012 +n42004024013 +n42004024014 +n42004025003 +n42004025001 +n42004025002 +n42004025004 +n42004025005 +n42004025006 +n42004025007 +n42004025008 +n42004025009 +n42004025010 +n42004025011 +n42004025012 +n42004025013 +n42004025014 +n42004025015 +n42004025016 +n42004025017 +n42004025018 +n42004025019 +n42004025020 +n42004025021 +n42004025022 +n42004025023 +n42004025024 +n42004025025 +n42004025026 +n42004025027 +n42004025028 +n42004025029 +n42004025030 +n42004025031 +n42004025032 +n42004025033 +n42004026001 +n42004026002 +n42004026003 +n42004026004 +n42004026005 +n42004026006 +n42004026007 +n42004026008 +n42004026009 +n42004026010 +n42004026011 +n42004026012 +n42004026013 +n42004026014 +n42004026015 +n42004027001 +n42004027002 +n42004027003 +n42004027004 +n42004027005 +n42004027006 +n42004027007 +n42004027008 +n42004027009 +n42004027010 +n42004027011 +n42004027012 +n42004027013 +n42004027014 +n42004027015 +n42004027016 +n42004027017 +n42004027018 +n42004027019 +n42004027020 +n42004028001 +n42004028002 +n42004028004 +n42004028003 +n42004028005 +n42004028006 +n42004028007 +n42004028008 +n42004028009 +n42004029001 +n42004029002 +n42004029003 +n42004029004 +n42004029005 +n42004029006 +n42004029007 +n42004029008 +n42004029009 +n42004029010 +n42004029011 +n42004029012 +n42004029013 +n42004029014 +n42004029015 +n42004029016 +n42004029017 +n42004029018 +n42004029020 +n42004029019 +n42004029021 +n42004029022 +n42004029023 +n42004030002 +n42004030001 +n42004030003 +n42004030004 +n42004030005 +n42004030006 +n42004030007 +n42004031001 +n42004031002 +n42004031003 +n42004031004 +n42004031005 +n42004031006 +n42004031007 +n42004031008 +n42004031009 +n42004031010 +n42004031011 +n42004031012 +n42004031013 +n42004031014 +n42004032001 +n42004032002 +n42004032003 +n42004032004 +n42004032005 +n42004032006 +n42004032007 +n42004032008 +n42004032009 +n42004032010 +n42004032011 +n42004032012 +n42004032013 +n42004033001 +n42004033002 +n42004033003 +n42004033004 +n42004033005 +n42004033006 +n42004033007 +n42004033008 +n42004033009 +n42004033010 +n42004033011 +n42004033012 +n42004033013 +n42004033014 +n42004034001 +n42004034002 +n42004034003 +n42004034004 +n42004034005 +n42004034006 +n42004034007 +n42004034008 +n42004034009 +n42004034010 +n42004034011 +n42004034012 +n42004034013 +n42004034014 +n42004034015 +n42004034016 +n42004034017 +n42004034018 +n42004035001 +n42004035002 +n42004035003 +n42004035004 +n42004035005 +n42004035006 +n42004035007 +n42004035008 +n42004035009 +n42004035010 +n42004035011 +n42004035012 +n42004035015 +n42004035016 +n42004035013 +n42004035014 +n42004035017 +n42004035018 +n42004035019 +n42004035020 +n42004035021 +n42004035022 +n42004035023 +n42004035024 +n42004035025 +n42004036001 +n42004036002 +n42004036003 +n42004036004 +n42004036005 +n42004036006 +n42004036007 +n42004036008 +n42004036009 +n42004036010 +n42004036011 +n42004036012 +n42004036013 +n42004036014 +n42004036015 +n42004036016 +n42004036017 +n42004036018 +n42004036019 +n42004036020 +n42004036021 +n42004036022 +n42004036023 +n42004036024 +n42004036025 +n42004037001 +n42004037002 +n42004037003 +n42004037004 +n42004037005 +n42004037006 +n42004037007 +n42004037008 +n42004037009 +n42004037010 +n42004038002 +n42004038001 +n42004038003 +n42004038004 +n42004038005 +n42004038006 +n42004038007 +n42004038008 +n42004038009 +n42004038010 +n42004038012 +n42004038011 +n42004038013 +n42004038014 +n42004038015 +n42004038016 +n42004038017 +n42004038018 +n42004038019 +n42004038020 +n42004038021 +n42004038022 +n42004038023 +n42004039001 +n42004039002 +n42004039003 +n42004039004 +n42004039005 +n42004039006 +n42004039007 +n42004039008 +n42004039009 +n42004039010 +n42004039012 +n42004039011 +n42004039013 +n42004039014 +n42004039015 +n42004040002 +n42004040001 +n42004040003 +n42004040004 +n42004040005 +n42004040006 +n42004040007 +n42004040008 +n42004040009 +n42004040010 +n42004040011 +n42004040012 +n42004040013 +n42004040014 +n42004040016 +n42004040015 +n42004040017 +n42004040018 +n42004040019 +n42004040020 +n42004040021 +n42004040022 +n42004040023 +n42004040024 +n42004041002 +n42004041001 +n42004041003 +n42004041004 +n42004041005 +n42004041006 +n42004041007 +n42004041008 +n42004041009 +n42004041010 +n42004041011 +n42004041012 +n42004041013 +n42004041014 +n42004041015 +n42004041016 +n42004041017 +n42004041018 +n42004041019 +n42004041020 +n42004041021 +n42004041022 +n42004041023 +n42004041024 +n42004041025 +n42004041026 +n42004041027 +n42004041028 +n42004042002 +n42004042001 +n42004042003 +n42004042004 +n42004042005 +n42004042006 +n42004042007 +n42004042008 +n42004042009 +n42004042010 +n42004042011 +n42004042012 +n42004042013 +n42004042014 +n42004042015 +n42004042016 +n42004042017 +n42004042018 +n42004042019 +n42004042020 +n42004042021 +n42004042022 +n42004042023 +n42004042024 +n42004042025 +n42004043002 +n42004043001 +n42004043003 +n42004043004 +n42004043005 +n42004043006 +n42004043007 +n42004043008 +n42004043009 +n42004043010 +n42004043011 +n42004043012 +n42004043014 +n42004043015 +n42004043016 +n42004043017 +n42004043013 +n42004043018 +n42004043019 +n42004043020 +n42004043021 +n42004044001 +n42004044002 +n42004044003 +n42004044004 +n42004044005 +n42004044006 +n42004044007 +n42004044008 +n42005001002 +n42005001001 +n42005001003 +n42005001004 +n42005001005 +n42005001006 +n42005001007 +n42005001008 +n42005001009 +n42005001010 +n42005001011 +n42005001012 +n42005001013 +n42005001014 +n42005001015 +n42005001016 +n42005001017 +n42005001018 +n42005001019 +n42005001020 +n42005001021 +n42005001022 +n42005002001 +n42005002002 +n42005002003 +n42005002004 +n42005002005 +n42005002006 +n42005002007 +n42005002008 +n42005002010 +n42005002009 +n42005002011 +n42005002012 +n42005002013 +n42005002014 +n42005002015 +n42005002016 +n42005002017 +n42005003002 +n42005003001 +n42005003003 +n42005003004 +n42005003005 +n42005003006 +n42005003007 +n42005003008 +n42005003009 +n42005003010 +n42005003011 +n42005003012 +n42005003013 +n42005003014 +n42005003015 +n42005003016 +n42005003018 +n42005003017 +n42005003019 +n42005003020 +n42005003021 +n42005003022 +n42005003023 +n42005003024 +n42005004002 +n42005004001 +n42005004003 +n42005004004 +n42005004005 +n42005004006 +n42005004007 +n42005004008 +n42005004009 +n42005004010 +n42005004011 +n42005004012 +n42005004013 +n42005004014 +n42005004015 +n42005004016 +n42005004017 +n42005004018 +n42005004019 +n42005005001 +n42005005002 +n42005005003 +n42005005004 +n42005005005 +n42005005006 +n42005005007 +n42005005008 +n42005005009 +n42005005010 +n42005005011 +n42005005013 +n42005005012 +n42005005014 +n42005005015 +n42005005016 +n42005005017 +n42005005018 +n42005005019 +n42005006001 +n42005006002 +n42005006003 +n42005006004 +n42005006005 +n42005006006 +n42005006007 +n42005006009 +n42005006008 +n42005006010 +n42005006011 +n42005006012 +n42005007001 +n42005007002 +n42005007003 +n42005007004 +n42005007005 +n42005007006 +n42005007007 +n42005007008 +n42005007009 +n42005007010 +n42005007011 +n42005007012 +n42005007013 +n42005007014 +n42005007015 +n42005007016 +n42005007017 +n42005007018 +n42005007019 +n42005007020 +n42005007021 +n42005007022 +n42005008002 +n42005008001 +n42005008003 +n42005008004 +n42005008005 +n42005008006 +n42005008007 +n42005008008 +n42005008009 +n42005008010 +n42005008011 +n42005008012 +n42005008013 +n42005008014 +n42005008015 +n42005008016 +n42005008017 +n42005009002 +n42005009001 +n42005009003 +n42005009004 +n42005009005 +n42005009006 +n42005009007 +n42005009008 +n42005009009 +n42005009010 +n42005009011 +n42005009012 +n42005009013 +n42005009014 +n42005009015 +n42005009016 +n42005010002 +n42005010001 +n42005010003 +n42005010004 +n42005010005 +n42005010006 +n42005010007 +n42005010008 +n42005010009 +n42005010010 +n42005010011 +n42005010012 +n42005010013 +n42005010014 +n42005010015 +n42005010016 +n42005010017 +n42005010018 +n42005010019 +n42005010020 +n42005010021 +n42005010022 +n42005010023 +n42005010024 +n42005010025 +n42005010026 +n42005010027 +n42005010028 +n42005011001 +n42005011002 +n42005011003 +n42005011004 +n42005011005 +n42005011006 +n42005011007 +n42005011008 +n42005011009 +n42005011010 +n42005011011 +n42005012001 +n42005012002 +n42005012003 +n42005012004 +n42005012005 +n42005012006 +n42005012007 +n42005012008 +n42005012009 +n42005012010 +n42005012011 +n42005012012 +n42005012013 +n42005012014 +n42005012015 +n42005012017 +n42005012016 +n42005012018 +n42005012019 +n42005012020 +n42005012021 +n42005012022 +n42005012023 +n42005012024 +n42005012025 +n42005012026 +n42005012027 +n42005012028 +n42005012029 +n42005012030 +n42005012031 +n42005013001 +n42005013002 +n42005013003 +n42005013004 +n42005013005 +n42005013006 +n42005013007 +n42005013008 +n42005013009 +n42005013010 +n42005013011 +n42005013012 +n42005013013 +n42005013014 +n42005013015 +n42005013016 +n42005014001 +n42005014002 +n42005014003 +n42005014004 +n42005014005 +n42005014006 +n42005014007 +n42005014008 +n42005014009 +n42005014010 +n42005014011 +n42005014012 +n42005014013 +n42005014014 +n42005014015 +n42005014016 +n42005014017 +n42005014018 +n42005014019 +n42005014020 +n42005014021 +n42005014022 +n42005014023 +n42005014024 +n42005015002 +n42005015001 +n42005015003 +n42005015004 +n42005015005 +n42005015006 +n42005015007 +n42005015008 +n42005015009 +n42005015010 +n42005015011 +n42005015012 +n42005015013 +n42005015014 +n42005015015 +n42005015016 +n42005015017 +n42005015018 +n42005016002 +n42005016001 +n42005016003 +n42005016004 +n42005016005 +n42005016006 +n42005016007 +n42005016008 +n42005016009 +n42005017001 +n42005017002 +n42005017003 +n42005017004 +n42005017005 +n42005017006 +n42005017007 +n42005017008 +n42005017009 +n42005017010 +n42005017011 +n42005017012 +n42005017013 +n42005017014 +n42005017015 +n42005017016 +n42005017017 +n42005017018 +n42005017019 +n42005017020 +n42005017021 +n42005017022 +n42005017023 +n42005017024 +n42005017025 +n42005017026 +n42005017027 +n42005017028 +n42005017029 +n42005017030 +n42005017031 +n42005017032 +n42005017033 +n42005017034 +n42005017035 +n42005017036 +n42005018001 +n42005018002 +n42005018003 +n42005018004 +n42005018005 +n42005018006 +n42005018007 +n42005018008 +n42005018009 +n42005018010 +n42005018011 +n42005018012 +n42005018013 +n42005018014 +n42005018015 +n42005018016 +n42005018017 +n42005018018 +n42005019001 +n42005019002 +n42005019003 +n42005019004 +n42005019005 +n42005019006 +n42005019007 +n42005019008 +n42005019009 +n42005019010 +n42005019011 +n42005019012 +n42005019013 +n42005019014 +n42005019015 +n42005019016 +n42005019017 +n42005019018 +n42005019019 +n42005019020 +n42005019021 +n42005019022 +n42005019023 +n42005019024 +n42005019025 +n42005019026 +n42005019027 +n42005020001 +n42005020002 +n42005020003 +n42005020004 +n42005020005 +n42005020006 +n42005020007 +n42005020008 +n42005020009 +n42005020010 +n42005020011 +n42005020012 +n42005021001 +n42005021002 +n42005021003 +n42005021004 +n42005021005 +n42005021006 +n42005021007 +n42005021008 +n42005021009 +n42005021010 +n42005021011 +n42005021012 +n42005021013 +n42005021014 +n42005021015 +n42005021016 +n42005021017 +n42005021018 +n42005021019 +n42005021020 +n42005021021 +n42005021022 +n42005021023 +n42005021024 +n42005022002 +n42005022003 +n42005022004 +n42005022001 +n42005022005 +n42005022006 +n42005022007 +n42005022008 +n42005022009 +n42005022010 +n42005022011 +n42005022012 +n42005022013 +n42005022014 +n42005022015 +n42005022016 +n42005022017 +n42005023001 +n42005023002 +n42005023003 +n42005023004 +n42005023005 +n42005023006 +n42005023007 +n42005023008 +n42005023009 +n42005023010 +n42005023011 +n42005023012 +n42005023013 +n42005023014 +n42005024002 +n42005024001 +n42005024003 +n42005024004 +n42005024005 +n42005024006 +n42005024007 +n42005024008 +n42005024009 +n42005024010 +n42005024011 +n42005024012 +n42005024013 +n42005024014 +n42005024015 +n42005024016 +n42005024017 +n42005024018 +n42005024019 +n42005024020 +n42005024021 +n42005024022 +n42005024023 +n42005024024 +n42005024025 +n42005024026 +n42005024027 +n42005024028 +n42005024029 +n42005024030 +n42005024031 +n42005025001 +n42005025002 +n42005025003 +n42005025004 +n42005025005 +n42005025006 +n42005025007 +n42005025008 +n42005025009 +n42005025010 +n42005025011 +n42005025012 +n42005025013 +n42005025014 +n42005025015 +n42005025016 +n42005025017 +n42005026001 +n42005026002 +n42005026003 +n42005026004 +n42005026005 +n42005026006 +n42005026007 +n42005026008 +n42005026009 +n42005026010 +n42005026011 +n42005026012 +n42005026013 +n42005026014 +n42005026015 +n42005026016 +n42005027001 +n42005027002 +n42005027003 +n42005027004 +n42005027005 +n42005027006 +n42005027007 +n42005027008 +n42005027009 +n42005027010 +n42005027011 +n42005027012 +n42005027013 +n42005027014 +n42005027015 +n42005027016 +n42005027017 +n42005027018 +n42005028001 +n42005028002 +n42005028003 +n42005028004 +n42005028005 +n42005028006 +n42005029001 +n42005029002 +n42005029003 +n42005029004 +n42005029005 +n42005029006 +n42005029007 +n42005029008 +n42005029009 +n42005029010 +n42005029011 +n42005029012 +n42005029013 +n42005029014 +n42005029015 +n42005029016 +n42005029017 +n42005029018 +n42005029019 +n42005029022 +n42005029020 +n42005029021 +n42005030001 +n42005030002 +n42005030003 +n42005030004 +n42005030005 +n42005030006 +n42005030007 +n42005030008 +n42005030009 +n42005030010 +n42005030011 +n42005030012 +n42005030013 +n42005030014 +n42005030015 +n42005030016 +n42005030017 +n42005030018 +n42005030019 +n42005030020 +n42005030021 +n42005030022 +n42005030023 +n42005031001 +n42005031002 +n42005031003 +n42005031004 +n42005031005 +n42005031006 +n42005031007 +n42005031008 +n42005031009 +n42005031013 +n42005031010 +n42005031011 +n42005031012 +n42005031014 +n42005031015 +n42005031016 +n42005031017 +n42005032001 +n42005032002 +n42005032003 +n42005032004 +n42005032005 +n42005032006 +n42005032007 +n42005032008 +n42005033002 +n42005033001 +n42005033003 +n42005033004 +n42005033005 +n42005033006 +n42005033007 +n42005033008 +n42005033009 +n42005033010 +n42005033011 +n42005033012 +n42005033013 +n42005033014 +n42005033015 +n42005033016 +n42005033017 +n42005033018 +n42005033020 +n42005033019 +n42005033021 +n42005033022 +n42005033023 +n42005033024 +n42005034002 +n42005034001 +n42005034003 +n42005034004 +n42005034005 +n42005034006 +n42005034007 +n42005034008 +n42005034009 +n42005034010 +n42005034011 +n42005034012 +n42005034013 +n42005034014 +n42005034015 +n42005034016 +n42005034017 +n42005034018 +n42005034019 +n42005034021 +n42005034020 +n42005035002 +n42005035001 +n42005035003 +n42005035004 +n42005035005 +n42005035006 +n42005035007 +n42005035008 +n42005035009 +n42005035010 +n42005035011 +n42005035012 +n42005035013 +n42005035014 +n42005035015 +n42005035016 +n42005036002 +n42005036001 +n42005036003 +n42005036004 +n42005036005 +n42005036006 +n42005036007 +n42005036008 +n42005036009 +n42005036010 +n42005036011 +n42005036012 +n42005036013 +n42005036014 +n42005036015 +n42005036016 +n42005036017 +n42005036019 +n42005036018 +n42005036020 +n42005036021 +n42005036022 +n42005036023 +n42005036024 +n42005036025 +n42005036026 +n42005036027 +n42005036028 +n42005036029 +n42005036030 +n42005036031 +n42005036032 +n42005036033 +n42005036034 +n42005036035 +n42005037001 +n42005037002 +n42005037003 +n42005037004 +n42005037005 +n42005037006 +n42005037007 +n42005037008 +n42005037010 +n42005037009 +n42005037011 +n42005037012 +n42005037013 +n42005037014 +n42005037015 +n42005037016 +n42005037017 +n42005037018 +n42005037019 +n42005037020 +n42005037021 +n42005037022 +n42005037023 +n42005037024 +n42005037025 +n42005038001 +n42005038002 +n42005038003 +n42005038004 +n42005038005 +n42005038006 +n42005038007 +n42005039001 +n42005039002 +n42005039003 +n42005039004 +n42005039005 +n42005039006 +n42005039008 +n42005039007 +n42005039009 +n42005039010 +n42005039011 +n42005039012 +n42006001002 +n42006001001 +n42006001003 +n42006001004 +n42006001005 +n42006001006 +n42006001007 +n42006001008 +n42006001009 +n42006001010 +n42006001014 +n42006001015 +n42006001011 +n42006001012 +n42006001013 +n42006001016 +n42006001017 +n42006001018 +n42006001019 +n42006001020 +n42006002002 +n42006002001 +n42006002003 +n42006002004 +n42006002005 +n42006002006 +n42006002007 +n42006002008 +n42006002009 +n42006002010 +n42006002011 +n42006002012 +n42006003001 +n42006003002 +n42006003003 +n42006003004 +n42006003005 +n42006003006 +n42006003007 +n42006003008 +n42006003010 +n42006003009 +n42006003011 +n42006003012 +n42006003013 +n42006003014 +n42006003015 +n42006003016 +n42006003017 +n42006003018 +n42006003019 +n42006003020 +n42006003021 +n42006004001 +n42006004002 +n42006004003 +n42006004004 +n42006004005 +n42006004006 +n42006004007 +n42006004008 +n42006004009 +n42006004010 +n42006004011 +n42006004012 +n42006004013 +n42006004014 +n42006004015 +n42006004016 +n42006004017 +n42006004018 +n42006004019 +n42006004020 +n42006004023 +n42006004021 +n42006004022 +n42006004024 +n42006004025 +n42006004026 +n42006004027 +n42006004028 +n42006005001 +n42006005002 +n42006005003 +n42006005005 +n42006005004 +n42006005006 +n42006005007 +n42006005008 +n42006005009 +n42006005010 +n42006005011 +n42006006002 +n42006006001 +n42006006003 +n42006006004 +n42006006005 +n42006006006 +n42006006007 +n42006006008 +n42006006009 +n42006006010 +n42006006011 +n42006006012 +n42006006013 +n42006006014 +n42006006015 +n42006006016 +n42006006017 +n42006006018 +n42006006019 +n42006006020 +n42006006021 +n42006006022 +n42006006023 +n42006006024 +n42006007002 +n42006007001 +n42006007003 +n42006007004 +n42006007005 +n42006007006 +n42006007007 +n42006007008 +n42006007009 +n42006007010 +n42006007011 +n42006007012 +n42006007013 +n42006007014 +n42006007015 +n42006007016 +n42006007017 +n42006008002 +n42006008001 +n42006008003 +n42006008004 +n42006008005 +n42006008006 +n42006008008 +n42006008007 +n42006008009 +n42006008010 +n42006008011 +n42006008012 +n42006008013 +n42006008014 +n42006008015 +n42006008016 +n42006008017 +n42006008018 +n42006008019 +n42006008020 +n42006008021 +n42006008022 +n42006008023 +n42006008024 +n42006009002 +n42006009001 +n42006009003 +n42006009004 +n42006009005 +n42006009006 +n42006009007 +n42006009008 +n42006009009 +n42006009010 +n42006009011 +n42006009012 +n42006009013 +n42006009014 +n42006009015 +n42006009016 +n42006009017 +n42006009018 +n42006009019 +n42006010001 +n42006010002 +n42006010003 +n42006010004 +n42006010005 +n42006010006 +n42006010007 +n42006010008 +n42006010009 +n42006010010 +n42006010012 +n42006010011 +n42006010013 +n42006010014 +n42006010015 +n42006010016 +n42006010017 +n42006010018 +n42006011002 +n42006011001 +n42006011003 +n42006011004 +n42006011005 +n42006011006 +n42006011007 +n42006011008 +n42006011010 +n42006011009 +n42006011011 +n42006011012 +n42006011013 +n42006012002 +n42006012001 +n42006012003 +n42006012004 +n42006012005 +n42006012006 +n42006012007 +n42006012008 +n42006012009 +n42006012010 +n42006012011 +n42006012012 +n42006012013 +n42006012014 +n42006012015 +n42006012016 +n42006012017 +n42006012018 +n42006012019 +n42006012020 +n42006013001 +n42006013002 +n42006013003 +n42006013004 +n42006013005 +n42006013006 +n42006013007 +n42006013008 +n42006013009 +n42006013010 +n42006013011 +n42006013012 +n42006013013 +n42006013014 +n42006013015 +n42006013016 +n42006013017 +n42006014001 +n42006014002 +n42006014003 +n42006014004 +n42006014005 +n42006014006 +n42006014007 +n42006014008 +n42006014009 +n42006014010 +n42006014011 +n42006014012 +n42006014013 +n42006014014 +n42006014015 +n42006014016 +n42006014017 +n42006014018 +n42006015001 +n42006015002 +n42006015003 +n42006015004 +n42006015005 +n42006015006 +n42006015007 +n42006015008 +n42006015009 +n42006015010 +n42006015011 +n42006015012 +n42006016001 +n42006016002 +n42006016003 +n42006016004 +n42006016005 +n42006016006 +n42006016007 +n42006016008 +n42006016009 +n42006017001 +n42006017002 +n42006017003 +n42006017004 +n42006017005 +n42006017006 +n42006017007 +n42006017008 +n42006017009 +n42006017010 +n42006017011 +n42006017012 +n42006017013 +n42006017014 +n42006017015 +n42006017016 +n42006017017 +n42006017018 +n42006017019 +n42006017020 +n42006017021 +n42006017022 +n42006017023 +n42006017024 +n42006017025 +n42006017026 +n42006017027 +n42006017028 +n42006017029 +n42006017030 +n42006018001 +n42006018002 +n42006018003 +n42006018004 +n42006018005 +n42006018006 +n42006018007 +n42006018008 +n42006018009 +n42006018010 +n42006018011 +n42006018012 +n42006018013 +n42006018014 +n42006018015 +n42006018016 +n42006018017 +n42006019001 +n42006019002 +n42006019003 +n42006019004 +n42006019005 +n42006019006 +n42006019007 +n42006019008 +n42006019009 +n42006019010 +n42006019011 +n42006019012 +n42006019013 +n42006019014 +n42006019015 +n42006020001 +n42006020002 +n42006020003 +n42006020004 +n42006020005 +n42006020006 +n42006020007 +n42006020008 +n42006020009 +n42006020010 +n42006020011 +n42006020012 +n42006020013 +n42006020014 +n42006020015 +n42006020016 +n42006020017 +n42006020018 +n42006020019 +n42006020020 +n42006020021 +n42006021001 +n42006021002 +n42006021003 +n42006021004 +n42006021005 +n42006021006 +n42006021007 +n42006021008 +n42006021009 +n42006021010 +n42006021011 +n42006021012 +n42006022001 +n42006022002 +n42006022003 +n42006022004 +n42006022005 +n42006022006 +n42006022007 +n42006022008 +n42006022009 +n42006022010 +n42006022011 +n42006022012 +n42006022013 +n42006022014 +n42006022015 +n42006022016 +n42006022017 +n42006022018 +n42006022019 +n42006022020 +n42006022021 +n42006022022 +n42006022023 +n42006022024 +n42006022025 +n42006023001 +n42006023002 +n42006023003 +n42006023004 +n42006023005 +n42006023006 +n42006023007 +n42006023009 +n42006023008 +n42006023010 +n42006023011 +n42006023012 +n42006023013 +n42006023014 +n42006023015 +n42006023016 +n42006023020 +n42006023017 +n42006023018 +n42006023019 +n42006023021 +n42006023022 +n42006023023 +n42006023024 +n42006023025 +n42006023026 +n42006024001 +n42006024002 +n42006024003 +n42006024004 +n42006024005 +n42006024006 +n42006024007 +n42006024008 +n42006024009 +n42006024010 +n42006025001 +n42006025002 +n42006025003 +n42006025004 +n42006025005 +n42006025006 +n42006025007 +n42006025008 +n42006025009 +n42006025010 +n42006025011 +n42006025012 +n42006025013 +n42006025014 +n42006025015 +n42006026001 +n42006026002 +n42006026003 +n42006026004 +n42006026005 +n42006026006 +n42006026007 +n42006026008 +n42006026012 +n42006026009 +n42006026010 +n42006026011 +n42006026013 +n42006026014 +n42006026015 +n42006026016 +n42006026017 +n42006026018 +n42006027001 +n42006027003 +n42006027002 +n42006027004 +n42006027005 +n42006027006 +n42006027007 +n42006027008 +n42006027009 +n42006027010 +n42006027011 +n42006027012 +n42006027013 +n42006027014 +n42006028001 +n42006028002 +n42006028003 +n42006028004 +n42006028005 +n42006028006 +n42006028007 +n42006028008 +n42006028009 +n42006029001 +n42006029002 +n42006029003 +n42006029004 +n42006029005 +n42006029006 +n42006029007 +n42006029008 +n42006029009 +n42006029010 +n42006029011 +n42006029012 +n42006029013 +n42006029014 +n42006029015 +n42006029016 +n42006029017 +n42006029018 +n42006029019 +n42006029020 +n42006029021 +n42006029022 +n42006030001 +n42006030002 +n42006030003 +n42006030004 +n42006030005 +n42006030006 +n42006030007 +n42006030008 +n42006030009 +n42006030010 +n42006030011 +n42006030012 +n42006031001 +n42006031002 +n42006031003 +n42006031004 +n42006031005 +n42006031006 +n42006031007 +n42006031008 +n42006031009 +n42006031010 +n42006031011 +n42006032001 +n42006032002 +n42006032003 +n42006032004 +n42006032005 +n42006032006 +n42006032007 +n42006032009 +n42006032008 +n42006032010 +n42006032012 +n42006032011 +n42006032013 +n42006032014 +n42006032015 +n42006032016 +n42006032017 +n42006032018 +n42006033002 +n42006033003 +n42006033001 +n42006033004 +n42006033005 +n42006033006 +n42006033007 +n42006033008 +n42006033010 +n42006033009 +n42006033011 +n42006033012 +n42006033013 +n42006033014 +n42006033015 +n42006033016 +n42006033017 +n42006034001 +n42006034002 +n42006034003 +n42006034004 +n42006034005 +n42006034006 +n42006034007 +n42006034008 +n42006034010 +n42006034009 +n42006034011 +n42006034012 +n42006034013 +n42006034014 +n42006034015 +n42006034016 +n42006034017 +n42006034018 +n42006034019 +n42006035001 +n42006035002 +n42006035003 +n42006035004 +n42006035005 +n42006035006 +n42006035007 +n42006035008 +n42006035009 +n42006035010 +n42006035011 +n42006035012 +n42006035013 +n42006035014 +n42006035015 +n42006035016 +n42006035017 +n42006035018 +n42006035019 +n42006035020 +n42006035021 +n42006035022 +n42006035023 +n42006035024 +n42006035025 +n42006035026 +n42006035027 +n42006035028 +n42006035029 +n42006035030 +n42006036001 +n42006036002 +n42006036003 +n42006036004 +n42006036005 +n42006036006 +n42006036007 +n42006036008 +n42006037001 +n42006037002 +n42006037003 +n42006037004 +n42006037005 +n42006037006 +n42006037007 +n42006037008 +n42006037009 +n42006037010 +n42006037011 +n42006037012 +n42006037013 +n42006037014 +n42006037015 +n42006037016 +n42006037017 +n42006038001 +n42006038002 +n42006038003 +n42006038004 +n42006038005 +n42006038006 +n42006038007 +n42006038008 +n42006038009 +n42006038010 +n42006038011 +n42006038012 +n42006038013 +n42006038014 +n42006038016 +n42006038015 +n42006038017 +n42006038018 +n42006038019 +n42006038020 +n42006039002 +n42006039001 +n42006039003 +n42006039004 +n42006039005 +n42006039006 +n42006039007 +n42006039008 +n42006039009 +n42006039010 +n42006039011 +n42006039012 +n42006039013 +n42006039014 +n42006039015 +n42006040001 +n42006040002 +n42006040003 +n42006040004 +n42006040005 +n42006040006 +n42006040008 +n42006040007 +n42006040009 +n42006040010 +n42006040011 +n42006040012 +n42006040013 +n42006040014 +n42006041002 +n42006041001 +n42006041003 +n42006041004 +n42006041005 +n42006041006 +n42006041007 +n42006041008 +n42006041009 +n42006041010 +n42006041011 +n42006041012 +n42006041014 +n42006041013 +n42006041015 +n42006041016 +n42006041017 +n42006041018 +n42006041019 +n42006041020 +n42006041021 +n42006041022 +n42006042001 +n42006042002 +n42006042003 +n42006042004 +n42006042005 +n42006042006 +n42006042007 +n42006042008 +n42006042009 +n42006042010 +n42006042011 +n42006042012 +n42006042013 +n42006042014 +n42006042015 +n42006042016 +n42006042017 +n42006042018 +n42006042019 +n42006042020 +n42006042021 +n42006042022 +n42006042023 +n42006042024 +n42006042025 +n42006042026 +n42006042027 +n42006042028 +n42006042029 +n42006042030 +n42006042031 +n42006042032 +n42006042033 +n42006042034 +n42006042035 +n42006042036 +n42006042037 +n42006042038 +n42006042039 +n42006042040 +n42006042041 +n42006042042 +n42006042043 +n42006042044 +n42006042045 +n42006042046 +n42006042047 +n42006043002 +n42006043001 +n42006043003 +n42006043006 +n42006043004 +n42006043005 +n42006043007 +n42006043008 +n42006043009 +n42006043010 +n42006043011 +n42006043012 +n42006043013 +n42006043014 +n42006043015 +n42006044002 +n42006044001 +n42006044003 +n42006044004 +n42006044005 +n42006044006 +n42006044007 +n42006044008 +n42006044010 +n42006044009 +n42006044011 +n42006044012 +n42006044013 +n42006044014 +n42006044015 +n42006044016 +n42006044017 +n42006044018 +n42006044019 +n42006045001 +n42006045002 +n42006045003 +n42006045004 +n42006045005 +n42006045006 +n42006045007 +n42006045008 +n42006045009 +n42006045010 +n42006045011 +n42006045012 +n42006045013 +n42006045014 +n42006045015 +n42006045016 +n42006045017 +n42006045018 +n42006045019 +n42006045020 +n42006045021 +n42006045023 +n42006045022 +n42006045024 +n42006045025 +n42006045026 +n42006045027 +n42006045028 +n42006045029 +n42006046002 +n42006046001 +n42006046003 +n42006046004 +n42006046005 +n42006046006 +n42006046007 +n42006046008 +n42006046009 +n42006046010 +n42006046011 +n42006047001 +n42006047002 +n42006047003 +n42006047004 +n42006047005 +n42006047006 +n42006047007 +n42006047008 +n42006047009 +n42006047010 +n42006047011 +n42006047012 +n42006047013 +n42006047014 +n42006047015 +n42006047016 +n42006047017 +n42006047018 +n42006048001 +n42006048002 +n42006048003 +n42006048004 +n42006048005 +n42006048006 +n42006048007 +n42006048008 +n42006048009 +n42006048010 +n42006048011 +n42006048012 +n42006048013 +n42006048014 +n42006048015 +n42006048017 +n42006048016 +n42006048018 +n42006048019 +n42006048020 +n42006048021 +n42006048022 +n42006048023 +n42006048024 +n42006048025 +n42006048026 +n42006048027 +n42006048028 +n42006048029 +n42006048030 +n42006048031 +n42006048032 +n42006048033 +n42006048034 +n42006049002 +n42006049001 +n42006049003 +n42006049004 +n42006049005 +n42006049006 +n42006049007 +n42006049008 +n42006049009 +n42006049010 +n42006049011 +n42006049012 +n42006049013 +n42006049014 +n42006049015 +n42006049016 +n42006049017 +n42006049018 +n42006049019 +n42006049020 +n42006049021 +n42006049022 +n42006049023 +n42006049024 +n42006049025 +n42006049026 +n42006049027 +n42006049028 +n42006049029 +n42006049030 +n42006049031 +n42007001001 +n42007001002 +n42007001003 +n42007001004 +n42007001005 +n42007001006 +n42007001007 +n42007001008 +n42007001009 +n42007001010 +n42007001011 +n42007001012 +n42007001013 +n42007001014 +n42007002002 +n42007002001 +n42007002003 +n42007002004 +n42007002005 +n42007002006 +n42007002007 +n42007002008 +n42007002009 +n42007002010 +n42007002011 +n42007002012 +n42007003002 +n42007003001 +n42007003003 +n42007003004 +n42007003005 +n42007003006 +n42007003007 +n42007003008 +n42007003009 +n42007003010 +n42007003011 +n42007003012 +n42007003013 +n42007003014 +n42007003015 +n42007003016 +n42007003017 +n42007003018 +n42007003019 +n42007004002 +n42007004001 +n42007004003 +n42007004004 +n42007004005 +n42007004006 +n42007004007 +n42007004008 +n42007004009 +n42007004010 +n42007004011 +n42007004012 +n42007004013 +n42007004014 +n42007004015 +n42007004016 +n42007005002 +n42007005001 +n42007005003 +n42007005004 +n42007005005 +n42007005006 +n42007005007 +n42007005008 +n42007005009 +n42007005010 +n42007005011 +n42007006002 +n42007006001 +n42007006003 +n42007006004 +n42007006005 +n42007006006 +n42007006008 +n42007006007 +n42007006009 +n42007006010 +n42007006011 +n42007006012 +n42007006013 +n42007006014 +n42007006015 +n42007006016 +n42007006017 +n42007006018 +n42007006019 +n42007006020 +n42007006021 +n42007006022 +n42007006023 +n42007006024 +n42007006026 +n42007006025 +n42007006028 +n42007006027 +n42007006029 +n42007006030 +n42007006031 +n42007006032 +n42007006033 +n42007006034 +n42007007001 +n42007007002 +n42007007003 +n42007007004 +n42007007005 +n42007007006 +n42007007007 +n42007007008 +n42007007009 +n42007007010 +n42007007011 +n42007007012 +n42007007013 +n42007007014 +n42007007015 +n42007008002 +n42007008001 +n42007008003 +n42007008005 +n42007008004 +n42007008006 +n42007008007 +n42007008008 +n42007008009 +n42007008010 +n42007008011 +n42007008012 +n42007008013 +n42007008014 +n42007008015 +n42007008016 +n42007008017 +n42007008018 +n42007008019 +n42007008020 +n42007008021 +n42007008022 +n42007008023 +n42007008024 +n42007008025 +n42007008026 +n42007008027 +n42007008028 +n42007008029 +n42007008030 +n42007008031 +n42007009002 +n42007009001 +n42007009003 +n42007009004 +n42007009005 +n42007009006 +n42007009007 +n42007009008 +n42007009009 +n42007009010 +n42007009011 +n42007009012 +n42007009013 +n42007009014 +n42007009015 +n42007009016 +n42007009017 +n42007009018 +n42007009019 +n42007009020 +n42007009021 +n42007009022 +n42007009023 +n42007010001 +n42007010002 +n42007010003 +n42007010004 +n42007010005 +n42007010006 +n42007010007 +n42007010008 +n42007010009 +n42007010010 +n42007010011 +n42007011001 +n42007011002 +n42007011003 +n42007011004 +n42007011005 +n42007011006 +n42007011007 +n42007011008 +n42007011009 +n42007011010 +n42007011011 +n42007011012 +n42007011013 +n42007011014 +n42007011015 +n42007011016 +n42007011017 +n42007011018 +n42007011019 +n42007012002 +n42007012001 +n42007012003 +n42007012004 +n42007012005 +n42007012006 +n42007012007 +n42007012008 +n42007012009 +n42007012010 +n42007012011 +n42007012012 +n42007012013 +n42007012014 +n42007012015 +n42007012016 +n42007012017 +n42007012018 +n42007012019 +n42007012020 +n42007012021 +n42007012022 +n42007012023 +n42007012024 +n42007012025 +n42007012026 +n42007012027 +n42007012028 +n42007013001 +n42007013002 +n42007013003 +n42007013004 +n42007013005 +n42007013006 +n42007013007 +n42007013008 +n42007013009 +n42007013010 +n42007013011 +n42007013012 +n42007013013 +n42007014001 +n42007014002 +n42007014003 +n42007014004 +n42007014005 +n42007014007 +n42007014006 +n42007014008 +n42007014009 +n42007014010 +n42007014011 +n42007014012 +n42007014013 +n42007014014 +n42007014015 +n42007015001 +n42007015002 +n42007015003 +n42007015004 +n42007015005 +n42007015006 +n42007015007 +n42007015008 +n42007015009 +n42007015010 +n42007015011 +n42007015012 +n42007015013 +n42007016002 +n42007016001 +n42007016003 +n42007016004 +n42007016005 +n42007016006 +n42007016007 +n42007016008 +n42007016009 +n42007016010 +n42007016011 +n42007016012 +n42007016013 +n42007016014 +n42007016015 +n42007016016 +n42007016017 +n42007016018 +n42007016019 +n42007016020 +n42007016021 +n42007016022 +n42007016023 +n42007017001 +n42007017002 +n42007017003 +n42007017004 +n42007017005 +n42007017010 +n42007017011 +n42007017006 +n42007017007 +n42007017008 +n42007017009 +n42007017012 +n42007017013 +n42007017014 +n42007017015 +n42007018001 +n42007018002 +n42007018003 +n42007018004 +n42007018005 +n42007018006 +n42007018007 +n42007018008 +n42007018009 +n42007018010 +n42007018011 +n42007018012 +n42007018013 +n42007018014 +n42007018015 +n42007018016 +n42007018017 +n42007018018 +n42007019001 +n42007019002 +n42007019003 +n42007019004 +n42007019005 +n42007019006 +n42007019007 +n42007019008 +n42007019009 +n42007019010 +n42007019011 +n42007019012 +n42007020002 +n42007020001 +n42007020003 +n42007020004 +n42007020005 +n42007020006 +n42007020007 +n42007020008 +n42007020009 +n42007020010 +n42007020011 +n42007020012 +n42007020013 +n42007020014 +n42007020015 +n42007020016 +n42007020017 +n42007020018 +n42007020019 +n42007020020 +n42007020021 +n42007020022 +n42007021001 +n42007021002 +n42007021003 +n42007021004 +n42007021005 +n42007021006 +n42007021007 +n42007021008 +n42007021009 +n42007021010 +n42007021011 +n42007021012 +n42007021013 +n42007021014 +n42007021015 +n42007021016 +n42007021017 +n42007021018 +n42007022001 +n42007022002 +n42007022003 +n42007022004 +n42007022005 +n42007022006 +n42007022007 +n42007022008 +n42007022009 +n42007022010 +n42007022011 +n42007022012 +n42007022013 +n42007022014 +n42007022015 +n42007022016 +n42007022017 +n42007022018 +n42007022019 +n42007022020 +n42007022021 +n42007022022 +n42007022023 +n42007022024 +n42007023001 +n42007023002 +n42007023003 +n42007023005 +n42007023004 +n42007023006 +n42007023007 +n42007023008 +n42007023009 +n42007024002 +n42007024001 +n42007024003 +n42007024004 +n42007024005 +n42007024006 +n42007024007 +n42007024008 +n42007024009 +n42007024010 +n42007024011 +n42007024012 +n42007024013 +n42007024018 +n42007024014 +n42007024015 +n42007024016 +n42007024017 +n42007024019 +n42007024020 +n42007024021 +n42007024022 +n42007025001 +n42007025002 +n42007025004 +n42007025003 +n42007025005 +n42007025006 +n42007025007 +n42007025008 +n42007025009 +n42007025010 +n42007025011 +n42007025012 +n42007025013 +n42007025014 +n42007025015 +n42007025016 +n42007025017 +n42007025018 +n42007025019 +n42007025020 +n42007025021 +n42007026001 +n42007026002 +n42007026004 +n42007026003 +n42007026005 +n42007026006 +n42007026007 +n42007026008 +n42007026009 +n42007026010 +n42007026011 +n42007027001 +n42007027002 +n42007027003 +n42007027004 +n42007027005 +n42007027006 +n42007027007 +n42007027008 +n42007027009 +n42007027010 +n42007027011 +n42007027012 +n42007027013 +n42007027014 +n42007027015 +n42007027016 +n42007027017 +n42007027018 +n42007027019 +n42007027020 +n42007028001 +n42007028002 +n42007028003 +n42007028004 +n42007028005 +n42007028006 +n42007028007 +n42007028008 +n42007028009 +n42007028011 +n42007028010 +n42007028012 +n42007028013 +n42007028014 +n42007028015 +n42007028016 +n42007028017 +n42007028018 +n42007028019 +n42007028020 +n42007029001 +n42007029002 +n42007029003 +n42007029004 +n42007029006 +n42007029007 +n42007029008 +n42007029005 +n42007029009 +n42007029010 +n42007029011 +n42007029012 +n42007029013 +n42007029014 +n42007029015 +n42007030002 +n42007030001 +n42007030003 +n42007030004 +n42007030005 +n42007030006 +n42007030007 +n42007030008 +n42007030009 +n42007030010 +n42007030011 +n42007030012 +n42007030013 +n42007030014 +n42007030015 +n42007030016 +n42007030017 +n42007031002 +n42007031001 +n42007031003 +n42007031004 +n42007031005 +n42007031006 +n42007031007 +n42007031008 +n42007031009 +n42007031010 +n42007031011 +n42007031012 +n42007032001 +n42007032002 +n42007032003 +n42007032004 +n42007032005 +n42007032006 +n42007032007 +n42007032008 +n42007032009 +n42007032010 +n42007032011 +n42007032012 +n42007032013 +n42007032014 +n42007032015 +n42007032016 +n42007032017 +n42007032018 +n42007032019 +n42007032020 +n42007032021 +n42007033002 +n42007033001 +n42007033003 +n42007033004 +n42007033005 +n42007033006 +n42007033007 +n42007033008 +n42007033009 +n42007033010 +n42007033011 +n42007033012 +n42007033013 +n42007033014 +n42007033015 +n42007034001 +n42007034002 +n42007034003 +n42007034004 +n42007034005 +n42007034006 +n42007034007 +n42007034008 +n42007034009 +n42007034010 +n42007034011 +n42007034012 +n42007034013 +n42007034014 +n42007034015 +n42007034016 +n42007034017 +n42007034018 +n42007034019 +n42007035001 +n42007035002 +n42007035003 +n42007035004 +n42007035005 +n42007035006 +n42007035007 +n42007035008 +n42007035009 +n42007036002 +n42007036001 +n42007036003 +n42007036005 +n42007036006 +n42007036004 +n42007036007 +n42007036008 +n42007036009 +n42007036010 +n42007036011 +n42007036012 +n42007036013 +n42007036014 +n42007036015 +n42007036016 +n42007036017 +n42007036018 +n42007037001 +n42007037002 +n42007037003 +n42007037004 +n42007037005 +n42007037006 +n42007037007 +n42007037008 +n42007037009 +n42007037010 +n42007037011 +n42007037012 +n42007037013 +n42007037014 +n42007037015 +n42007037016 +n42007037017 +n42007037018 +n42007037019 +n42007037020 +n42007037021 +n42007038001 +n42007038002 +n42007038003 +n42007038004 +n42007038005 +n42007038006 +n42007038007 +n42007038008 +n42007038011 +n42007038009 +n42007038010 +n42007038012 +n42007038013 +n42007038014 +n42007038015 +n42007038016 +n42007038017 +n42007038018 +n42007038019 +n42007038020 +n42007038021 +n42007038022 +n42007038023 +n42007038024 +n42007038025 +n42007038026 +n42007038027 +n42007038028 +n42007038029 +n42007038030 +n42007038031 +n42007039002 +n42007039001 +n42007039003 +n42007039004 +n42007039005 +n42007039006 +n42007039007 +n42007039008 +n42007039009 +n42007039010 +n42007039011 +n42007039013 +n42007039012 +n42007039014 +n42007039015 +n42007039017 +n42007039016 +n42007039018 +n42007039019 +n42007039020 +n42007039021 +n42007039022 +n42007039023 +n42007039024 +n42007039025 +n42007039026 +n42007039027 +n42007039028 +n42007040001 +n42007040002 +n42007040003 +n42007040004 +n42007040005 +n42007040006 +n42007040007 +n42007040008 +n42007040009 +n42007040010 +n42007040011 +n42007040012 +n42007040014 +n42007040013 +n42007040015 +n42007040016 +n42007040017 +n42007041001 +n42007041002 +n42007041003 +n42007041004 +n42007041005 +n42007041006 +n42007041007 +n42007041008 +n42007041009 +n42007041010 +n42007041012 +n42007041011 +n42007041013 +n42007041014 +n42007042001 +n42007042002 +n42007042003 +n42007042004 +n42007042005 +n42007042006 +n42007042008 +n42007042007 +n42007042009 +n42007042010 +n42007042011 +n42007042012 +n42007043001 +n42007043002 +n42007043003 +n42007043004 +n42007043005 +n42007043006 +n42007043007 +n42007043008 +n42007043009 +n42007043011 +n42007043010 +n42007043012 +n42007043013 +n42007043014 +n42007043015 +n42007044001 +n42007044002 +n42007044003 +n42007044004 +n42007044005 +n42007044006 +n42007044007 +n42007044008 +n42007044009 +n42007044010 +n42007044011 +n42007044012 +n42007044013 +n42007044015 +n42007044014 +n42007044016 +n42007044017 +n42007044018 +n42007044019 +n42007044020 +n42007044021 +n42007044022 +n42007044023 +n42007044025 +n42007044024 +n42007044026 +n42007044027 +n42007044028 +n42007044029 +n42007044030 +n42007044031 +n42007044032 +n42007044033 +n42007044034 +n42007044035 +n42007044036 +n42007045001 +n42007045002 +n42007045003 +n42007045004 +n42007045006 +n42007045005 +n42007045007 +n42007045008 +n42007045009 +n42007045010 +n42007045011 +n42007045012 +n42007045013 +n42007045014 +n42007045015 +n42007046001 +n42007046002 +n42007046003 +n42007046004 +n42007046005 +n42007046006 +n42007046008 +n42007046007 +n42007046009 +n42007046010 +n42007046011 +n42007046012 +n42007046013 +n42007047001 +n42007047002 +n42007047003 +n42007047004 +n42007047005 +n42007047006 +n42007047007 +n42007047008 +n42007047009 +n42007047010 +n42007047011 +n42007047012 +n42007047013 +n42007047015 +n42007047014 +n42007047016 +n42007047017 +n42007047018 +n42007047019 +n42007048002 +n42007048001 +n42007048003 +n42007048004 +n42007048005 +n42007048006 +n42007048007 +n42007049001 +n42007049002 +n42007049003 +n42007049004 +n42007049005 +n42007049006 +n42007049007 +n42007049008 +n42007049009 +n42007049010 +n42007049011 +n42007049012 +n42007049013 +n42007049014 +n42007050002 +n42007050001 +n42007050003 +n42007050004 +n42007050005 +n42007050006 +n42007050007 +n42007050008 +n42007050009 +n42007050010 +n42007050011 +n42007050012 +n42007050013 +n42008001001 +n42008001002 +n42008001003 +n42008001004 +n42008001005 +n42008001006 +n42008001007 +n42008001008 +n42008001009 +n42008001010 +n42008001011 +n42008001012 +n42008001013 +n42008001014 +n42008001015 +n42008001016 +n42008001017 +n42008001018 +n42008001019 +n42008001020 +n42008001023 +n42008001024 +n42008001021 +n42008001022 +n42008002001 +n42008002002 +n42008002003 +n42008002004 +n42008002005 +n42008002006 +n42008002007 +n42008002008 +n42008002009 +n42008002010 +n42008002011 +n42008002012 +n42008002013 +n42008002014 +n42008002015 +n42008002016 +n42008002017 +n42008002018 +n42008002019 +n42008002020 +n42008003001 +n42008003002 +n42008003003 +n42008003004 +n42008003005 +n42008003006 +n42008003007 +n42008003008 +n42008003009 +n42008003010 +n42008003011 +n42008003012 +n42008003013 +n42008003014 +n42008003015 +n42008003016 +n42008003017 +n42008003018 +n42008004002 +n42008004001 +n42008004003 +n42008004004 +n42008004005 +n42008004006 +n42008004007 +n42008004008 +n42008004009 +n42008004010 +n42008004011 +n42008004012 +n42008004013 +n42008004014 +n42008005001 +n42008005002 +n42008005003 +n42008005004 +n42008005005 +n42008005006 +n42008005007 +n42008005008 +n42008005009 +n42008005010 +n42008005011 +n42008005012 +n42008005013 +n42008005014 +n42008005015 +n42008005016 +n42008005017 +n42008005018 +n42008005019 +n42008005020 +n42008005021 +n42008005022 +n42008005023 +n42008005024 +n42008005025 +n42008005026 +n42008005027 +n42008005028 +n42008006001 +n42008006002 +n42008006003 +n42008006004 +n42008006005 +n42008006006 +n42008006007 +n42008006008 +n42008006009 +n42008006010 +n42008006011 +n42008006012 +n42008006013 +n42008006014 +n42008007001 +n42008007002 +n42008007003 +n42008007004 +n42008007005 +n42008007006 +n42008007007 +n42008007008 +n42008007009 +n42008007010 +n42008007011 +n42008007012 +n42008007013 +n42008008001 +n42008008002 +n42008008003 +n42008008004 +n42008008005 +n42008008006 +n42008008007 +n42008008008 +n42008008009 +n42008008010 +n42008008011 +n42008008012 +n42008008013 +n42008008014 +n42008008015 +n42008008016 +n42008008017 +n42008008018 +n42008008019 +n42008008020 +n42008008021 +n42008009002 +n42008009001 +n42008009003 +n42008009004 +n42008009005 +n42008009006 +n42008009007 +n42008009009 +n42008009008 +n42008009010 +n42008009011 +n42008010002 +n42008010001 +n42008010003 +n42008010004 +n42008010005 +n42008010006 +n42008010007 +n42008010008 +n42008010009 +n42008010010 +n42008010011 +n42008010012 +n42008010014 +n42008010013 +n42008010015 +n42008010016 +n42008010017 +n42008010018 +n42008010019 +n42008010020 +n42008010021 +n42008010022 +n42008010023 +n42008010024 +n42008010025 +n42008011002 +n42008011001 +n42008011003 +n42008011004 +n42008011005 +n42008011006 +n42008011007 +n42008011008 +n42008011009 +n42008011010 +n42008011011 +n42008011012 +n42008012002 +n42008012001 +n42008012003 +n42008012004 +n42008012005 +n42008012006 +n42008012007 +n42008012008 +n42008012009 +n42008012010 +n42008012011 +n42008012012 +n42008012013 +n42008012014 +n42008012015 +n42008012016 +n42008012017 +n42008012018 +n42008012019 +n42008012020 +n42008012021 +n42008012022 +n42008012023 +n42008012024 +n42008013002 +n42008013001 +n42008013003 +n42008013004 +n42008013005 +n42008013006 +n42008013007 +n42008013008 +n42008013009 +n42008013010 +n42008013011 +n42008013012 +n42008013013 +n42008013014 +n42008013015 +n42008013016 +n42008013017 +n42008013018 +n42008013019 +n42008013020 +n42008013021 +n42008013022 +n42008013023 +n42008013024 +n42008013025 +n42008013026 +n42008013027 +n42008014002 +n42008014001 +n42008014003 +n42008014004 +n42008014005 +n42008014006 +n42008014007 +n42008014008 +n42008014009 +n42008014010 +n42008014011 +n42008014012 +n42008014013 +n42008014014 +n42008014015 +n42008014016 +n42008014017 +n42008014018 +n42008014019 +n42008014020 +n42008014021 +n42008014022 +n42008014023 +n42008014024 +n42008015002 +n42008015001 +n42008015003 +n42008015004 +n42008015005 +n42008015006 +n42008015007 +n42008015008 +n42008015009 +n42008015010 +n42008015011 +n42008015012 +n42008015013 +n42008015014 +n42008015015 +n42008015016 +n42008015017 +n42008015018 +n42008015019 +n42008015020 +n42008015021 +n42008015022 +n42008016002 +n42008016001 +n42008016003 +n42008016004 +n42008016005 +n42008016006 +n42008016007 +n42008016008 +n42008016009 +n42008016010 +n42008016011 +n42008016012 +n42008016013 +n42008016014 +n42008016015 +n42008016016 +n42008016017 +n42008016018 +n42008016019 +n42008016020 +n42008016021 +n42008017002 +n42008017001 +n42008017003 +n42008017004 +n42008017005 +n42008017006 +n42008017007 +n42008017008 +n42008017009 +n42008017010 +n42008017011 +n42008017012 +n42008017013 +n42008017014 +n42008017015 +n42008017016 +n42008017017 +n42008017018 +n42008018002 +n42008018001 +n42008018003 +n42008018004 +n42008018007 +n42008018006 +n42008018005 +n42008018008 +n42008018009 +n42008018010 +n42008018011 +n42008018013 +n42008018012 +n42008018014 +n42008018015 +n42008018016 +n42008018017 +n42008018019 +n42008018018 +n42008018020 +n42008018021 +n42008018022 +n42008019002 +n42008019001 +n42008019003 +n42008019004 +n42008019005 +n42008019006 +n42008019007 +n42008019008 +n42008019009 +n42008019010 +n42008019011 +n42008019012 +n42008019013 +n42008019014 +n42008019015 +n42008019016 +n42008019017 +n42008019018 +n42008020002 +n42008020001 +n42008020003 +n42008020004 +n42008020005 +n42008020006 +n42008020007 +n42008020008 +n42008020009 +n42008020010 +n42008020011 +n42008020012 +n42008020013 +n42008020015 +n42008020014 +n42008021002 +n42008021001 +n42008021003 +n42008021004 +n42008021005 +n42008021006 +n42008021007 +n42008021008 +n42008021009 +n42008021010 +n42008021011 +n42008021012 +n42008021013 +n42008021014 +n42008021015 +n42008021016 +n42008021017 +n42008021018 +n42008021019 +n42008021020 +n42008021021 +n42008022002 +n42008022001 +n42008022003 +n42008022004 +n42008022005 +n42008022006 +n42008022007 +n42008022008 +n42008022009 +n42008022010 +n42008022011 +n42008022012 +n42008022013 +n42008022014 +n42008022015 +n42008022016 +n42008022017 +n42008022018 +n42008022019 +n42008022020 +n42008022021 +n42008022022 +n42008022023 +n42008022024 +n42008022025 +n42008022026 +n42008022027 +n42008023002 +n42008023001 +n42008023003 +n42008023004 +n42008023005 +n42008023006 +n42008023007 +n42008023008 +n42008023009 +n42008023010 +n42008023011 +n42008023012 +n42008023013 +n42008023014 +n42008023015 +n42008024002 +n42008024001 +n42008024003 +n42008024004 +n42008024005 +n42008024006 +n42008024007 +n42008024008 +n42008024010 +n42008024009 +n42008024011 +n42008024012 +n42008024013 +n42008024014 +n42008024015 +n42008024016 +n42008024017 +n42008024018 +n42008024019 +n42008024020 +n42008024021 +n42008024022 +n42008024023 +n42008024024 +n42008025002 +n42008025001 +n42008025003 +n42008025004 +n42008025005 +n42008025006 +n42008025007 +n42008025009 +n42008025008 +n42008025010 +n42008025011 +n42008025012 +n42008025013 +n42008025015 +n42008025014 +n42008025016 +n42008025017 +n42008025018 +n42008025019 +n42008025020 +n42008025021 +n42008025023 +n42008025024 +n42008025025 +n42008025022 +n42008025026 +n42008025027 +n42008025028 +n42008026001 +n42008026002 +n42008026003 +n42008026004 +n42008026005 +n42008026006 +n42008026007 +n42008026008 +n42008026009 +n42008026010 +n42008026011 +n42008026012 +n42008027002 +n42008027003 +n42008027001 +n42008027004 +n42008027005 +n42008027006 +n42008027007 +n42008027008 +n42008027009 +n42008027010 +n42008027011 +n42008027012 +n42008027013 +n42008027014 +n42008027015 +n42008027016 +n42008027017 +n42008027018 +n42008027019 +n42008027020 +n42008027021 +n42008027022 +n42008027023 +n42008027024 +n42008027025 +n42008027026 +n42008027027 +n42008027028 +n42008027029 +n42008028002 +n42008028001 +n42008028003 +n42008028004 +n42008028005 +n42008028006 +n42008028007 +n42008028008 +n42008028009 +n42008028010 +n42008028011 +n42008028012 +n42008028013 +n42008028014 +n42008028015 +n42008028016 +n42008028017 +n42008028018 +n42008028019 +n42008028020 +n42008028021 +n42008028022 +n42008028023 +n42008028024 +n42008028025 +n42008028026 +n42008029002 +n42008029001 +n42008029003 +n42008029004 +n42008029005 +n42008029006 +n42008029007 +n42008029008 +n42008029009 +n42008029010 +n42008029012 +n42008029011 +n42008029013 +n42008029014 +n42008029015 +n42008029016 +n42008029017 +n42008029018 +n42008029019 +n42008029020 +n42008029021 +n42008029022 +n42008029023 +n42008029024 +n42008029025 +n42008029026 +n42008029027 +n42008029028 +n42008029029 +n42008029030 +n42008029031 +n42008029032 +n42008030002 +n42008030001 +n42008030003 +n42008030004 +n42008030005 +n42008030006 +n42008030007 +n42008030008 +n42008030009 +n42008030011 +n42008030010 +n42008030012 +n42008030013 +n42008030014 +n42008030015 +n42008030016 +n42008030017 +n42008030018 +n42008030019 +n42008031001 +n42008031002 +n42008031003 +n42008031004 +n42008031005 +n42008031006 +n42008031007 +n42008031008 +n42008031009 +n42008031010 +n42008031011 +n42008032002 +n42008032001 +n42008032003 +n42008032004 +n42008032005 +n42008032006 +n42008032007 +n42008032008 +n42008032009 +n42008032010 +n42008032011 +n42008032012 +n42008032013 +n42008032014 +n42008032015 +n42008032016 +n42008032017 +n42008032018 +n42008032019 +n42008032020 +n42008032021 +n42008032022 +n42008033002 +n42008033003 +n42008033004 +n42008033001 +n42008033005 +n42008033006 +n42008033007 +n42008033008 +n42008033009 +n42008033010 +n42008033011 +n42008033012 +n42008033013 +n42008033014 +n42008033015 +n42008033016 +n42008033017 +n42008033018 +n42008033019 +n42008033020 +n42008033021 +n42008033022 +n42008033023 +n42008034002 +n42008034003 +n42008034004 +n42008034001 +n42008034005 +n42008034006 +n42008034007 +n42008034008 +n42008034009 +n42008034010 +n42008034011 +n42008034012 +n42008034013 +n42008034014 +n42008034015 +n42008034016 +n42008035002 +n42008035001 +n42008035003 +n42008035004 +n42008035005 +n42008035006 +n42008035007 +n42008035008 +n42008035009 +n42008035010 +n42008035011 +n42008035012 +n42008035013 +n42008035014 +n42008035015 +n42008035016 +n42008035017 +n42008035018 +n42008035019 +n42008035020 +n42008035021 +n42008035022 +n42008035023 +n42008035024 +n42008035025 +n42008035026 +n42008035027 +n42008035028 +n42008035029 +n42008035030 +n42008036002 +n42008036001 +n42008036003 +n42008036004 +n42008036005 +n42008036006 +n42008036007 +n42008036008 +n42008036009 +n42008037001 +n42008037002 +n42008037004 +n42008037005 +n42008037006 +n42008037007 +n42008037008 +n42008037009 +n42008037010 +n42008037003 +n42008037011 +n42008037012 +n42008037013 +n42008037014 +n42008037015 +n42008037016 +n42008037017 +n42008037019 +n42008037018 +n42008037020 +n42008037021 +n42008037022 +n42008037023 +n42008038002 +n42008038001 +n42008038003 +n42008038004 +n42008038005 +n42008038006 +n42008038007 +n42008038008 +n42008038009 +n42008038010 +n42008038011 +n42008038012 +n42008038013 +n42008038015 +n42008038014 +n42008038016 +n42008038017 +n42008039001 +n42008039002 +n42008039003 +n42008039004 +n42008039005 +n42008039006 +n42008039007 +n42008039008 +n42008039009 +n42008039010 +n42008039011 +n42008039012 +n42008039013 +n42008039014 +n42008039015 +n42008039016 +n42008039017 +n42008039018 +n42008039019 +n42008039020 +n42008039021 +n42008039022 +n42008039023 +n42008039024 +n42008040002 +n42008040001 +n42008040003 +n42008040004 +n42008040005 +n42008040006 +n42008040007 +n42008040008 +n42008040009 +n42008040010 +n42008040012 +n42008040013 +n42008040011 +n42008040014 +n42008040015 +n42008041001 +n42008041002 +n42008041003 +n42008041004 +n42008041005 +n42008041006 +n42008041007 +n42008041008 +n42008041009 +n42008041010 +n42008041011 +n42008041012 +n42008041013 +n42008041014 +n42008041015 +n42008041016 +n42008041017 +n42008041018 +n42008041019 +n42008041020 +n42008041021 +n42008041022 +n42008041023 +n42008041024 +n42008041025 +n42008041026 +n42008042001 +n42008042002 +n42008042003 +n42008042006 +n42008042007 +n42008042008 +n42008042004 +n42008042005 +n42008042009 +n42008042010 +n42008042011 +n42008042013 +n42008042012 +n42008042014 +n42008042015 +n42008042016 +n42008042017 +n42008042018 +n42008042019 +n42008042020 +n42008043001 +n42008043002 +n42008043003 +n42008043004 +n42008043005 +n42008043006 +n42008043007 +n42008043008 +n42008043009 +n42008043010 +n42008043011 +n42008043012 +n42008043013 +n42008043014 +n42008043015 +n42008044001 +n42008044002 +n42008044003 +n42008044004 +n42008044005 +n42008044006 +n42008044007 +n42008044008 +n42008044009 +n42008044010 +n42008044011 +n42008044012 +n42008044013 +n42008044014 +n42008044015 +n42008044016 +n42008045001 +n42008045002 +n42008045003 +n42008045004 +n42008045005 +n42008045006 +n42008045007 +n42008045008 +n42008045010 +n42008045009 +n42008045011 +n42008045012 +n42008045013 +n42008045014 +n42008045015 +n42008045016 +n42008045017 +n42008045018 +n42008045019 +n42008045020 +n42008045021 +n42008046002 +n42008046001 +n42008046003 +n42008046004 +n42008046005 +n42008046006 +n42008046007 +n42008046009 +n42008046008 +n42008046010 +n42008046011 +n42008046012 +n42008046013 +n42008046014 +n42008047002 +n42008047003 +n42008047004 +n42008047001 +n42008047005 +n42008047006 +n42008047007 +n42008047008 +n42008047009 +n42008047010 +n42008047011 +n42008047012 +n42008047013 +n42008047014 +n42008047015 +n42008047016 +n42008047017 +n42008047018 +n42008047019 +n42008047020 +n42008047021 +n42008047022 +n42008047023 +n42008047024 +n42008047025 +n42008047026 +n42008048002 +n42008048001 +n42008048003 +n42008048004 +n42008048005 +n42008048006 +n42008048007 +n42008048008 +n42008048009 +n42008048010 +n42008048011 +n42008048012 +n42008048013 +n42008049001 +n42008049002 +n42008049003 +n42008049004 +n42008049005 +n42008049006 +n42008049007 +n42008049008 +n42008049009 +n42008049010 +n42008049011 +n42008049012 +n42008049013 +n42008049014 +n42008049015 +n42008049016 +n42008049017 +n42008049018 +n42008050002 +n42008050001 +n42008050003 +n42008050004 +n42008050005 +n42008050006 +n42008050007 +n42008050008 +n42008050009 +n42008050010 +n42008050011 +n42008050012 +n42008051002 +n42008051001 +n42008051003 +n42008051004 +n42008051005 +n42008051006 +n42008051007 +n42008051008 +n42008051009 +n42008051010 +n42008051011 +n42008051012 +n42008051013 +n42008051014 +n42008051015 +n42008051016 +n42008051017 +n42008051018 +n42008051019 +n42008051020 +n42008051021 +n42008051022 +n42008051023 +n42008051024 +n42008051025 +n42008051026 +n42008052002 +n42008052003 +n42008052001 +n42008052004 +n42008052005 +n42008052006 +n42008052008 +n42008052007 +n42008052009 +n42008052010 +n42008052011 +n42008052012 +n42008052013 +n42008052014 +n42008052015 +n42008053001 +n42008053002 +n42008053003 +n42008053004 +n42008053005 +n42008053006 +n42008054002 +n42008054001 +n42008054003 +n42008054004 +n42008054005 +n42008054006 +n42008054007 +n42008054008 +n42008054009 +n42008054010 +n42008054011 +n42008055001 +n42008055002 +n42008055003 +n42008055004 +n42008055005 +n42008055006 +n42008055007 +n42008055008 +n42008055009 +n42008055010 +n42008055011 +n42008055012 +n42008055013 +n42008056001 +n42008056002 +n42008056003 +n42008056004 +n42008056005 +n42008056007 +n42008056006 +n42008056008 +n42008056009 +n42008056010 +n42008056011 +n42008056012 +n42008056013 +n42009001002 +n42009001001 +n42009001003 +n42009001004 +n42009001005 +n42009001006 +n42009001007 +n42009001008 +n42009001009 +n42009001010 +n42009001011 +n42009001012 +n42009001013 +n42009001014 +n42009001015 +n42009001016 +n42009002001 +n42009002002 +n42009002003 +n42009002004 +n42009002005 +n42009002006 +n42009002007 +n42009002008 +n42009002009 +n42009002010 +n42009003001 +n42009003002 +n42009003003 +n42009003004 +n42009003005 +n42009003006 +n42009003007 +n42009003008 +n42009003009 +n42009003010 +n42009003011 +n42009003012 +n42009003013 +n42009003014 +n42009003015 +n42009003016 +n42009003017 +n42009003018 +n42009003019 +n42009003020 +n42009003021 +n42009003022 +n42009004001 +n42009004004 +n42009004002 +n42009004003 +n42009004005 +n42009004006 +n42009004007 +n42009004008 +n42009004009 +n42009004010 +n42009004011 +n42009005001 +n42009005003 +n42009005002 +n42009005004 +n42009005005 +n42009005006 +n42009005007 +n42009005008 +n42009005009 +n42009005010 +n42009005011 +n42009005012 +n42009005013 +n42009005014 +n42009005015 +n42009005016 +n42009005017 +n42009005018 +n42009005019 +n42009005020 +n42009005021 +n42009005022 +n42009006002 +n42009006001 +n42009006003 +n42009006004 +n42009006005 +n42009006006 +n42009006007 +n42009006008 +n42009006009 +n42009006010 +n42009007002 +n42009007001 +n42009007003 +n42009007004 +n42009007005 +n42009007006 +n42009007007 +n42009007008 +n42009007009 +n42009007010 +n42009007011 +n42009007012 +n42009007013 +n42009007014 +n42009007015 +n42009007016 +n42009007017 +n42009007018 +n42009007019 +n42009007020 +n42009008003 +n42009008001 +n42009008002 +n42009008004 +n42009008005 +n42009008006 +n42009008008 +n42009008007 +n42009008009 +n42009008010 +n42009008011 +n42009008012 +n42009008013 +n42009008014 +n42009009002 +n42009009001 +n42009009003 +n42009009004 +n42009009005 +n42009009006 +n42009009008 +n42009009007 +n42009009009 +n42009009010 +n42009009011 +n42009009012 +n42009009013 +n42009009014 +n42009009015 +n42009009016 +n42009009017 +n42009009018 +n42009010001 +n42009010002 +n42009010003 +n42009010004 +n42009010005 +n42009010006 +n42009010007 +n42009010008 +n42009010009 +n42009010010 +n42009010011 +n42009010012 +n42009010013 +n42009010014 +n42009010015 +n42009010016 +n42009010017 +n42009010018 +n42009011002 +n42009011001 +n42009011003 +n42009011004 +n42009011005 +n42009011006 +n42009011007 +n42009011008 +n42009011009 +n42009011010 +n42009011011 +n42009011012 +n42009011013 +n42009011014 +n42009011015 +n42009011016 +n42009011017 +n42009011018 +n42009011019 +n42009011021 +n42009011020 +n42009011022 +n42009012002 +n42009012001 +n42009012003 +n42009012004 +n42009012005 +n42009012007 +n42009012006 +n42009012008 +n42009012009 +n42009012010 +n42009012011 +n42009012012 +n42009012013 +n42009012014 +n42009012015 +n42009012016 +n42009012017 +n42009012018 +n42009012019 +n42009012020 +n42009012021 +n42009012022 +n42009012023 +n42009012024 +n42009012025 +n42009012026 +n42009012027 +n42009012028 +n42009012029 +n42009012030 +n42009012031 +n42009012032 +n42009013002 +n42009013001 +n42009013003 +n42009013004 +n42009013005 +n42009013006 +n42009013007 +n42009013008 +n42009013010 +n42009013009 +n42009013011 +n42009013012 +n42009013013 +n42009013014 +n42009013015 +n42009013016 +n42009013017 +n42009013018 +n42009013019 +n42009013020 +n42009013021 +n42009013022 +n42009013023 +n42009013024 +n42009013025 +n42009013026 +n42009013027 +n42009013028 +n42009013029 +n42009013030 +n42009013031 +n42009013032 +n42009014002 +n42009014001 +n42009014003 +n42009014005 +n42009014004 +n42009014007 +n42009014006 +n42009014008 +n42009014009 +n42009014010 +n42009014011 +n42009014012 +n42009014013 +n42009014014 +n42009014015 +n42009014016 +n42009014017 +n42009015001 +n42009015002 +n42009015003 +n42009015004 +n42009015005 +n42009015006 +n42009016002 +n42009016001 +n42009016003 +n42009016004 +n42009016005 +n42009016006 +n42009016007 +n42009016008 +n42009016009 +n42009016010 +n42009016011 +n42009016012 +n42009016013 +n42009016014 +n42009016015 +n42009016016 +n42009016017 +n42009016018 +n42009016019 +n42009016020 +n42009016021 +n42009016022 +n42009016023 +n42009016024 +n42009017001 +n42009017002 +n42009017003 +n42009017004 +n42009017005 +n42009017006 +n42009017007 +n42009017008 +n42009017009 +n42009017010 +n42009017011 +n42009017012 +n42009017013 +n42009018001 +n42009018002 +n42009018003 +n42009018004 +n42009018005 +n42009018007 +n42009018006 +n42009018008 +n42009018009 +n42009018010 +n42009018011 +n42009018012 +n42009018013 +n42009018014 +n42009018015 +n42009018016 +n42009018017 +n42009018018 +n42009018019 +n42009018023 +n42009018020 +n42009018021 +n42009018022 +n42009019002 +n42009019001 +n42009019003 +n42009019004 +n42009019005 +n42009019006 +n42009019007 +n42009019009 +n42009019008 +n42009019010 +n42009019012 +n42009019011 +n42009019013 +n42009019014 +n42009019015 +n42009019016 +n42009019017 +n42009019018 +n42009020002 +n42009020001 +n42009020003 +n42009020005 +n42009020004 +n42009020006 +n42009020007 +n42009020009 +n42009020008 +n42009020011 +n42009020010 +n42009020012 +n42009020013 +n42009020014 +n42009020015 +n42009020016 +n42009020017 +n42009021002 +n42009021001 +n42009021003 +n42009021004 +n42009021005 +n42009021006 +n42009021007 +n42009021008 +n42009022001 +n42009022002 +n42009022003 +n42009022004 +n42009022005 +n42009022006 +n42009022007 +n42009022008 +n42009022009 +n42009022010 +n42009022011 +n42009022012 +n42009022013 +n42009022014 +n42009022015 +n42009022016 +n42009022017 +n42009022018 +n42009022019 +n42009022020 +n42009022021 +n42009022022 +n42009022023 +n42009022024 +n42009022025 +n42009023002 +n42009023001 +n42009023003 +n42009023004 +n42009023005 +n42009023006 +n42009023007 +n42009023008 +n42009023009 +n42009023010 +n42009023011 +n42009023012 +n42009023013 +n42009023014 +n42009023015 +n42009023016 +n42009023017 +n42009023018 +n42009023019 +n42009023020 +n42009023021 +n42009023022 +n42009024002 +n42009024003 +n42009024001 +n42009024004 +n42009024005 +n42009024006 +n42009024007 +n42009024008 +n42009024009 +n42009024010 +n42009024012 +n42009024013 +n42009024011 +n42009024014 +n42009024015 +n42009024016 +n42009024017 +n42009024018 +n42009024019 +n42009024020 +n42009024021 +n42009024022 +n42009025002 +n42009025001 +n42009025003 +n42009025004 +n42009025005 +n42009025006 +n42009025007 +n42009025008 +n42009025010 +n42009025009 +n42009025011 +n42009025012 +n42009025013 +n42009026002 +n42009026003 +n42009026001 +n42009026004 +n42009026005 +n42009026006 +n42009026007 +n42009026008 +n42009026009 +n42009026010 +n42009026011 +n42009026012 +n42009026013 +n42009026014 +n42009026015 +n42009026016 +n42009026017 +n42009026018 +n42009026019 +n42009026020 +n42009026021 +n42009026022 +n42009026023 +n42009026024 +n42009026025 +n42009026026 +n42009026027 +n42009026028 +n42009027002 +n42009027001 +n42009027003 +n42009027004 +n42009027005 +n42009027006 +n42009027007 +n42009027008 +n42009027009 +n42009027010 +n42009027011 +n42009027012 +n42009027013 +n42009027014 +n42009027015 +n42009027016 +n42009027017 +n42009027018 +n42009027019 +n42009027020 +n42009027021 +n42009028002 +n42009028001 +n42009028003 +n42009028004 +n42009028005 +n42009028006 +n42009028007 +n42009028008 +n42009028009 +n42009028010 +n42009028011 +n42009028012 +n42009028013 +n42009028014 +n42009028015 +n42009028016 +n42009028017 +n42009028018 +n42009028019 +n42009028020 +n42009028021 +n42009029001 +n42009029002 +n42009029003 +n42009029004 +n42009029005 +n42009029006 +n42009029007 +n42009029008 +n42009029009 +n42009029010 +n42009029011 +n42009029012 +n42009029013 +n42009029014 +n42009029015 +n42009029016 +n42009029017 +n42009029018 +n42009030001 +n42009030002 +n42009030003 +n42009030004 +n42009030005 +n42009030006 +n42009030007 +n42009030008 +n42009030009 +n42009030010 +n42009030011 +n42009031001 +n42009031002 +n42009031003 +n42009031004 +n42009031005 +n42009031006 +n42009031007 +n42009031008 +n42009031009 +n42009031011 +n42009031012 +n42009031013 +n42009031010 +n42009032002 +n42009032001 +n42009032003 +n42009032004 +n42009032005 +n42009032006 +n42009032007 +n42009032008 +n42009032009 +n42009032010 +n42009032012 +n42009032011 +n42009032013 +n42009032014 +n42009032015 +n42009032016 +n42009032017 +n42009032018 +n42009032019 +n42009032020 +n42009032021 +n42009032022 +n42009032023 +n42009033001 +n42009033002 +n42009033003 +n42009033004 +n42009033005 +n42009033006 +n42009033007 +n42009033008 +n42009033009 +n42009033010 +n42009033011 +n42009033012 +n42009033013 +n42009033014 +n42009033015 +n42009033016 +n42009033017 +n42009033018 +n42009033019 +n42009033020 +n42009033021 +n42009033022 +n42009033023 +n42009033024 +n42009033025 +n42009033026 +n42009033027 +n42009033028 +n42009033029 +n42009033030 +n42009033031 +n42009033032 +n42009033033 +n42009033034 +n42009033035 +n42009033036 +n42009034002 +n42009034001 +n42009034003 +n42009034004 +n42009034005 +n42009034006 +n42009034007 +n42009034008 +n42009034009 +n42009034011 +n42009034010 +n42009034012 +n42009034013 +n42009034014 +n42009034015 +n42009034016 +n42009034017 +n42009034018 +n42009035001 +n42009035002 +n42009035003 +n42009035004 +n42009035005 +n42009035006 +n42009035007 +n42009035008 +n42009035009 +n42009035010 +n42009035011 +n42009035012 +n42009035013 +n42009035014 +n42009035015 +n42009035016 +n42009036001 +n42009036002 +n42009036003 +n42009036004 +n42009036005 +n42009036006 +n42009036007 +n42009036008 +n42009036009 +n42009036010 +n42009036011 +n42009036012 +n42009036013 +n42009036014 +n42009036015 +n42009036016 +n42009036017 +n42009036018 +n42009036019 +n42009036020 +n42009036021 +n42009036022 +n42009037002 +n42009037001 +n42009037003 +n42009037004 +n42009037005 +n42009037006 +n42009037007 +n42009037008 +n42009037009 +n42009037010 +n42009037011 +n42009037012 +n42009037013 +n42009037014 +n42009038001 +n42009038002 +n42009038003 +n42009038004 +n42009038005 +n42009038006 +n42009038007 +n42009038008 +n42009038009 +n42009038010 +n42009038011 +n42009038012 +n42009038013 +n42009038014 +n42009038015 +n42009038016 +n42009038017 +n42009038018 +n42009038019 +n42009038020 +n42009039001 +n42009039002 +n42009039003 +n42009039004 +n42009039005 +n42009039006 +n42009039007 +n42009039008 +n42009039009 +n42009039010 +n42009039011 +n42009039012 +n42009039013 +n42009039014 +n42009039015 +n42009039016 +n42009039017 +n42009039018 +n42009039019 +n42009039020 +n42009040001 +n42009040002 +n42009040003 +n42009040004 +n42009040005 +n42009040006 +n42009040007 +n42009040008 +n42009040009 +n42009040010 +n42009040011 +n42009041002 +n42009041001 +n42009041003 +n42009041004 +n42009041005 +n42009041006 +n42009041007 +n42009041008 +n42009041009 +n42009041010 +n42009041011 +n42009041012 +n42009041013 +n42009041014 +n42009041015 +n42009041016 +n42009041017 +n42009041018 +n42009041019 +n42009041020 +n42009041021 +n42009041022 +n42009041023 +n42009042002 +n42009042001 +n42009042003 +n42009042004 +n42009042005 +n42009042006 +n42009042007 +n42009042008 +n42009042009 +n42009042010 +n42009042012 +n42009042011 +n42009042013 +n42009042014 +n42009042015 +n42009042016 +n42009042017 +n42009042018 +n42009042019 +n42009042020 +n42009042021 +n42009042022 +n42009042023 +n42009042024 +n42009042025 +n42009042026 +n42009042027 +n42009042028 +n42009043002 +n42009043001 +n42009043003 +n42009043004 +n42009043005 +n42009043006 +n42009043007 +n42009043008 +n42009043010 +n42009043009 +n42009043011 +n42009043012 +n42009043013 +n42009043014 +n42009043015 +n42009043016 +n42009043017 +n42009043018 +n42009043019 +n42009043020 +n42009044001 +n42009044002 +n42009044003 +n42009044004 +n42009044005 +n42009044006 +n42009044007 +n42009044008 +n42009044009 +n42009044011 +n42009044010 +n42009044012 +n42009044013 +n42009044014 +n42009044015 +n42009044016 +n42009044017 +n42009044018 +n42009044019 +n42009045002 +n42009045001 +n42009045003 +n42009045004 +n42009045005 +n42009045006 +n42009045007 +n42009045008 +n42009045009 +n42009045010 +n42009045011 +n42009045012 +n42009045013 +n42009045014 +n42009045015 +n42009045016 +n42009045017 +n42009045018 +n42009045019 +n42009045020 +n42009045021 +n42009045022 +n42009045023 +n42009046002 +n42009046001 +n42009046004 +n42009046005 +n42009046003 +n42009046006 +n42009046008 +n42009046007 +n42009046011 +n42009046009 +n42009046010 +n42009047002 +n42009047001 +n42009047003 +n42009047004 +n42009047005 +n42009047006 +n42009047007 +n42009047008 +n42009047009 +n42009047010 +n42009047011 +n42009047012 +n42009047013 +n42009047014 +n42009047015 +n42009048001 +n42009048002 +n42009048003 +n42009048005 +n42009048004 +n42009048006 +n42009048007 +n42009048008 +n42009048009 +n42009048010 +n42009048011 +n42009048012 +n42009048013 +n42009048014 +n42009048015 +n42009048016 +n42009048018 +n42009048017 +n42009048019 +n42009048020 +n42009048021 +n42009048022 +n42009048023 +n42009048024 +n42009048026 +n42009048025 +n42009048027 +n42009048028 +n42009048029 +n42009048030 +n42009048031 +n42009048032 +n42009048033 +n42009048034 +n42009049002 +n42009049001 +n42009049003 +n42009049004 +n42009049005 +n42009049006 +n42009049007 +n42009049008 +n42009049009 +n42009049010 +n42009049011 +n42009049012 +n42009049013 +n42009049014 +n42009049015 +n42009049016 +n42009049017 +n42009049018 +n42009049019 +n42009049020 +n42009049021 +n42009049022 +n42009050002 +n42009050001 +n42009050003 +n42009050004 +n42009050005 +n42009050006 +n42009050007 +n42009050009 +n42009050008 +n42009050010 +n42009050011 +n42009050012 +n42009050013 +n42009050014 +n42009050015 +n42009050016 +n42009051002 +n42009051001 +n42009051003 +n42009051004 +n42009051005 +n42009051006 +n42009051007 +n42009051008 +n42009051009 +n42009051010 +n42009051011 +n42009051012 +n42009051013 +n42009051014 +n42009051015 +n42009051016 +n42009051017 +n42009051018 +n42009051019 +n42009052001 +n42009052002 +n42009052003 +n42009052004 +n42009052005 +n42009052006 +n42009052007 +n42009052008 +n42009052009 +n42009052010 +n42009052011 +n42009052012 +n42009052013 +n42009052014 +n42009052015 +n42009053001 +n42009053002 +n42009053003 +n42009053004 +n42009053005 +n42009053006 +n42009053007 +n42009053008 +n42009053009 +n42009053010 +n42009053011 +n42009053012 +n42009054002 +n42009054001 +n42009054003 +n42009054004 +n42009054005 +n42009054006 +n42009054007 +n42009054008 +n42009054009 +n42009054010 +n42009054011 +n42009054012 +n42009054013 +n42009054014 +n42009054015 +n42009054016 +n42009054017 +n42009054018 +n42009054019 +n42009055002 +n42009055001 +n42009055003 +n42009055004 +n42009056001 +n42009056002 +n42009056003 +n42009056004 +n42009056005 +n42009057001 +n42009057002 +n42009057003 +n42009057004 +n42009057005 +n42009057006 +n42009057007 +n42009057008 +n42009057009 +n42009057010 +n42009057011 +n42009057012 +n42009057014 +n42009057013 +n42009057015 +n42009058001 +n42009058002 +n42009058003 +n42009058004 +n42009058005 +n42009058006 +n42009058007 +n42009058008 +n42009058009 +n42009058010 +n42009058011 +n42009058012 +n42009058013 +n42009058014 +n42009058015 +n42009058017 +n42009058016 +n42009058018 +n42009058019 +n42009058020 +n42009058021 +n42009058022 +n42009058023 +n42009058024 +n42009058025 +n42009058026 +n42009059002 +n42009059001 +n42009059003 +n42009059004 +n42009059005 +n42009059006 +n42009059008 +n42009059007 +n42009059009 +n42009059010 +n42009059011 +n42009059012 +n42009059013 +n42009059014 +n42009059015 +n42009059016 +n42009059017 +n42009060002 +n42009060001 +n42009060003 +n42009060004 +n42009060005 +n42009060006 +n42009060007 +n42009060008 +n42009060009 +n42009060010 +n42009060012 +n42009060011 +n42009060013 +n42009060014 +n42009060015 +n42009060016 +n42009060017 +n42009060018 +n42009061002 +n42009061001 +n42009061003 +n42009061004 +n42009061005 +n42009061006 +n42009061007 +n42009061009 +n42009061008 +n42009061010 +n42009061011 +n42009061012 +n42009061013 +n42009061014 +n42009061015 +n42009061016 +n42009061017 +n42009062002 +n42009062001 +n42009062003 +n42009062004 +n42009062005 +n42009062006 +n42009062007 +n42009062008 +n42009062009 +n42009062010 +n42009062011 +n42009062012 +n42009062013 +n42009062014 +n42009062015 +n42009062016 +n42009062017 +n42009062018 +n42009062019 +n42009062020 +n42009062021 +n42009062022 +n42009062023 +n42010001002 +n42010001001 +n42010001003 +n42010001004 +n42010001005 +n42010001006 +n42010001007 +n42010001008 +n42010001009 +n42010001010 +n42010001011 +n42010001012 +n42010001013 +n42010001014 +n42010001015 +n42010001016 +n42010001017 +n42010001018 +n42010001019 +n42010001020 +n42010001021 +n42010001022 +n42010001023 +n42010001024 +n42010001025 +n42010002002 +n42010002001 +n42010002003 +n42010002004 +n42010002006 +n42010002005 +n42010002007 +n42010002008 +n42010002010 +n42010002009 +n42010002011 +n42010002012 +n42010002014 +n42010002013 +n42010002015 +n42010002016 +n42010002017 +n42010002018 +n42010002019 +n42010002020 +n42010002021 +n42010002022 +n42010002023 +n42010002024 +n42010002025 +n42010003001 +n42010003002 +n42010003003 +n42010003004 +n42010003005 +n42010003006 +n42010003007 +n42010003008 +n42010003009 +n42010004001 +n42010004002 +n42010004003 +n42010004004 +n42010004005 +n42010004006 +n42010004007 +n42010004008 +n42010004009 +n42010004010 +n42010004011 +n42010004012 +n42010004013 +n42010005003 +n42010005004 +n42010005001 +n42010005002 +n42010005006 +n42010005005 +n42010005007 +n42010005008 +n42010005009 +n42010005010 +n42010005011 +n42010005012 +n42010006001 +n42010006002 +n42010006003 +n42010006004 +n42010006005 +n42010006006 +n42010006007 +n42010006008 +n42010006009 +n42010006010 +n42010006011 +n42010006012 +n42010006014 +n42010006013 +n42010006015 +n42010006016 +n42010006017 +n42010006018 +n42010007003 +n42010007001 +n42010007002 +n42010007004 +n42010007005 +n42010007006 +n42010007007 +n42010007008 +n42010007009 +n42010007010 +n42010007011 +n42010007012 +n42010007014 +n42010007013 +n42010007015 +n42010007016 +n42010007017 +n42010007018 +n42010007019 +n42010007020 +n42010007021 +n42010007022 +n42010007023 +n42010007024 +n42010007025 +n42010008001 +n42010008004 +n42010008002 +n42010008003 +n42010008005 +n42010008006 +n42010008007 +n42010008008 +n42010008009 +n42010008010 +n42010008011 +n42010008012 +n42010008013 +n42010009001 +n42010009002 +n42010009003 +n42010009004 +n42010009005 +n42010009006 +n42010009007 +n42010009008 +n42010009009 +n42010009010 +n42010009011 +n42010009012 +n42010009013 +n42010009014 +n42010009015 +n42010009016 +n42010010003 +n42010010004 +n42010010001 +n42010010002 +n42010010005 +n42010010006 +n42010010007 +n42010010008 +n42010010009 +n42010010010 +n42010010011 +n42010010012 +n42010010013 +n42010010014 +n42010010015 +n42010010016 +n42010011001 +n42010011002 +n42010011003 +n42010011004 +n42010011005 +n42010011006 +n42010011007 +n42010011008 +n42010011009 +n42010011010 +n42010011011 +n42010011012 +n42010011013 +n42010011014 +n42010011015 +n42010011016 +n42010011017 +n42010011018 +n42010011019 +n42010011020 +n42010011021 +n42010011022 +n42010011023 +n42010011024 +n42010012001 +n42010012002 +n42010012003 +n42010012004 +n42010012005 +n42010012006 +n42010012007 +n42010012008 +n42010012009 +n42010012010 +n42010012011 +n42010012012 +n42010012013 +n42010012014 +n42010013001 +n42010013002 +n42010013003 +n42010013004 +n42010013005 +n42010013006 +n42010013007 +n42010013008 +n42010013009 +n42010013010 +n42010013011 +n42010013012 +n42010013013 +n42010013014 +n42010013015 +n42010013016 +n42010013017 +n42010013018 +n42010013019 +n42010013021 +n42010013020 +n42010013022 +n42010013023 +n42010013024 +n42010013025 +n42010013026 +n42010013027 +n42010014001 +n42010014002 +n42010014003 +n42010014004 +n42010014005 +n42010014006 +n42010014007 +n42010014008 +n42010014009 +n42010014010 +n42010014011 +n42010015001 +n42010015003 +n42010015004 +n42010015002 +n42010015005 +n42010015006 +n42010015007 +n42010015008 +n42010015009 +n42010015010 +n42010015011 +n42010016001 +n42010016002 +n42010016003 +n42010016004 +n42010016005 +n42010016006 +n42010016007 +n42010016008 +n42010016009 +n42010016010 +n42010016011 +n42010016013 +n42010016012 +n42010016014 +n42010016015 +n42010016016 +n42010016017 +n42010016018 +n42010016019 +n42010017002 +n42010017001 +n42010017003 +n42010017004 +n42010017005 +n42010017006 +n42010017007 +n42010017008 +n42010017009 +n42010017010 +n42010017011 +n42010017012 +n42010017013 +n42010017014 +n42010017015 +n42010017016 +n42010017017 +n42010018002 +n42010018001 +n42010018003 +n42010018004 +n42010018005 +n42010018006 +n42010018007 +n42010018008 +n42010018009 +n42010018010 +n42010018011 +n42010018012 +n42010019001 +n42010019002 +n42010019003 +n42010019004 +n42010019005 +n42010019006 +n42010019007 +n42010019008 +n42010019009 +n42010019010 +n42010019011 +n42010019012 +n42010019013 +n42010019014 +n42010019015 +n42010019016 +n42010019017 +n42010019018 +n42010019019 +n42010019020 +n42010019021 +n42010019022 +n42010019023 +n42010019024 +n42010020001 +n42010020002 +n42010020003 +n42010020004 +n42010020005 +n42010020006 +n42010020007 +n42010020008 +n42010020009 +n42010020010 +n42010020012 +n42010020011 +n42010020013 +n42010020014 +n42010020015 +n42010020016 +n42010020017 +n42010020018 +n42010020019 +n42010020020 +n42010021001 +n42010021002 +n42010021003 +n42010021004 +n42010021005 +n42010021006 +n42010021007 +n42010021008 +n42010021009 +n42010021010 +n42010021011 +n42010021012 +n42010021013 +n42010021014 +n42010021015 +n42010021016 +n42010021017 +n42010021018 +n42010021019 +n42010021020 +n42010021021 +n42010021022 +n42010021023 +n42010021024 +n42010021025 +n42010021026 +n42010021027 +n42010021028 +n42010021029 +n42010021030 +n42010021031 +n42010021032 +n42010021033 +n42010021034 +n42010021035 +n42010021036 +n42010021037 +n42010021038 +n42010021039 +n42010021040 +n42010022001 +n42010022002 +n42010022003 +n42010022004 +n42010022005 +n42010022006 +n42010022007 +n42010022008 +n42010022009 +n42010022010 +n42010022011 +n42010022012 +n42010022013 +n42010022014 +n42010022015 +n42010022016 +n42010022017 +n42010022018 +n42010022019 +n42010022020 +n42010022021 +n42010022022 +n42010022023 +n42010022024 +n42010022025 +n42010022026 +n42010022027 +n42010022028 +n42010022030 +n42010022029 +n42010022034 +n42010022031 +n42010022032 +n42010022033 +n42010023001 +n42010023002 +n42010023003 +n42010023004 +n42010023005 +n42010023006 +n42010023007 +n42010023008 +n42010023009 +n42010023010 +n42010023011 +n42010023012 +n42010023013 +n42010023014 +n42010023015 +n42010024002 +n42010024001 +n42010024003 +n42010024004 +n42010024005 +n42010024006 +n42010024007 +n42010024008 +n42010024009 +n42010024010 +n42010024011 +n42010024012 +n42010024013 +n42010024014 +n42010024015 +n42010024016 +n42010024017 +n42010024018 +n42010024019 +n42010024020 +n42010024021 +n42010024022 +n42010024023 +n42010025001 +n42010025002 +n42010025003 +n42010025004 +n42010025005 +n42010025006 +n42010025007 +n42010025008 +n42010025009 +n42010025010 +n42010025011 +n42010025012 +n42010025013 +n42010025014 +n42010026002 +n42010026001 +n42010026003 +n42010026004 +n42010026005 +n42010026006 +n42010026007 +n42010026008 +n42010026009 +n42010026010 +n42010026011 +n42010026012 +n42010027002 +n42010027001 +n42010027003 +n42010027004 +n42010027005 +n42010027006 +n42010027007 +n42010027008 +n42010027009 +n42010027010 +n42010027011 +n42010027012 +n42010027013 +n42010027014 +n42010027015 +n42010027016 +n42010027017 +n42010027018 +n42010027019 +n42010027020 +n42010027021 +n42010027022 +n42010027023 +n42010027024 +n42010027025 +n42010027026 +n42010027027 +n42010027028 +n42010027029 +n42010027030 +n42010027031 +n42010027032 +n42010027033 +n42010027034 +n42010027035 +n42010027036 +n42010027037 +n42010027038 +n42010028002 +n42010028001 +n42010028003 +n42010028004 +n42010028005 +n42010028006 +n42010028007 +n42010028008 +n42010028009 +n42010029002 +n42010029001 +n42010029003 +n42010029004 +n42010029005 +n42010029006 +n42010029007 +n42010029008 +n42010029009 +n42010029010 +n42010029011 +n42010029012 +n42010029013 +n42010029014 +n42010030001 +n42010030002 +n42010030003 +n42010030004 +n42010030005 +n42010030006 +n42010030007 +n42010030008 +n42010030009 +n42010030010 +n42010030011 +n42010030012 +n42010030013 +n42010030014 +n42010030015 +n42010030016 +n42010030017 +n42010030018 +n42010030019 +n42010030020 +n42010030021 +n42010030022 +n42010030023 +n42010030024 +n42010031003 +n42010031001 +n42010031002 +n42010031004 +n42010031005 +n42010031006 +n42010031007 +n42010031008 +n42010031009 +n42010031010 +n42010031011 +n42010031012 +n42010031013 +n42010031014 +n42010032002 +n42010032001 +n42010032003 +n42010032004 +n42010032005 +n42010032006 +n42010032007 +n42010032008 +n42010032009 +n42010032010 +n42010032011 +n42010033002 +n42010033001 +n42010033003 +n42010033004 +n42010033005 +n42010033006 +n42010033007 +n42010033008 +n42010033009 +n42010033010 +n42010034001 +n42010034002 +n42010034003 +n42010034004 +n42010034005 +n42010034006 +n42010034007 +n42010034008 +n42010034009 +n42010034010 +n42010034012 +n42010034011 +n42010034013 +n42010034014 +n42010034015 +n42010034016 +n42010034017 +n42010034018 +n42010034019 +n42010034020 +n42010034021 +n42010034022 +n42010034023 +n42010034024 +n42010035001 +n42010035002 +n42010035003 +n42010035004 +n42010035005 +n42010035006 +n42010035007 +n42010035008 +n42010035009 +n42010035010 +n42010035011 +n42010035012 +n42010035013 +n42010035014 +n42010035015 +n42010035017 +n42010035018 +n42010035016 +n42010035019 +n42010035020 +n42010035021 +n42010035022 +n42010035023 +n42010035024 +n42010035025 +n42010035026 +n42010036006 +n42010036007 +n42010036001 +n42010036002 +n42010036003 +n42010036004 +n42010036008 +n42010036005 +n42010036009 +n42010036010 +n42010036011 +n42010036012 +n42010036013 +n42010037002 +n42010037001 +n42010037003 +n42010037004 +n42010037005 +n42010037006 +n42010037007 +n42010037008 +n42010037009 +n42010037011 +n42010037010 +n42010037012 +n42010037013 +n42010037014 +n42010037015 +n42010037016 +n42010037017 +n42010037018 +n42010037019 +n42010038002 +n42010038001 +n42010038003 +n42010038004 +n42010038005 +n42010038006 +n42010038007 +n42010038008 +n42010038009 +n42010038010 +n42010038012 +n42010038011 +n42010038013 +n42010038014 +n42010038015 +n42010038016 +n42010038017 +n42010038018 +n42010038019 +n42010038020 +n42010039001 +n42010039002 +n42010039003 +n42010039004 +n42010039005 +n42010039006 +n42010039007 +n42010039008 +n42010039009 +n42010039010 +n42010039011 +n42010039012 +n42010039013 +n42010039014 +n42010039015 +n42010039016 +n42010039017 +n42010039018 +n42010040002 +n42010040001 +n42010040003 +n42010040004 +n42010040005 +n42010040006 +n42010040007 +n42010040009 +n42010040008 +n42010040010 +n42010040011 +n42010040012 +n42010040013 +n42010040014 +n42010040015 +n42010040016 +n42010040017 +n42010040018 +n42010040019 +n42010040020 +n42010040022 +n42010040021 +n42010040024 +n42010040023 +n42010040025 +n42010040026 +n42010040027 +n42010040028 +n42010041002 +n42010041001 +n42010041003 +n42010041004 +n42010041005 +n42010041006 +n42010041007 +n42010041008 +n42010041009 +n42010041010 +n42010041011 +n42010041012 +n42010041013 +n42010042002 +n42010042001 +n42010042004 +n42010042003 +n42010042005 +n42010042006 +n42010042008 +n42010042007 +n42010042009 +n42010042010 +n42010042011 +n42010042012 +n42010042013 +n42010042014 +n42010042015 +n42010042016 +n42011001001 +n42011001002 +n42011001003 +n42011001004 +n42011001005 +n42011001010 +n42011001006 +n42011001007 +n42011001008 +n42011001009 +n42011001011 +n42011001012 +n42011001013 +n42011001014 +n42011001015 +n42011001016 +n42011001017 +n42011001018 +n42011001019 +n42011001020 +n42011001021 +n42011001022 +n42011001023 +n42011001024 +n42011001025 +n42011001026 +n42011001027 +n42011001028 +n42011001029 +n42011001030 +n42011002002 +n42011002001 +n42011002003 +n42011002004 +n42011002005 +n42011002006 +n42011002007 +n42011002008 +n42011002009 +n42011002010 +n42011002011 +n42011002012 +n42011002013 +n42011002014 +n42011002015 +n42011003001 +n42011003002 +n42011003003 +n42011003004 +n42011003005 +n42011003006 +n42011003007 +n42011003008 +n42011003009 +n42011003010 +n42011004001 +n42011004002 +n42011004003 +n42011004004 +n42011004005 +n42011004006 +n42011004008 +n42011004007 +n42011004009 +n42011004010 +n42011004011 +n42011004012 +n42011004013 +n42011004014 +n42011004015 +n42011004016 +n42011004017 +n42011004018 +n42011004019 +n42011005001 +n42011005002 +n42011005003 +n42011005004 +n42011005005 +n42011005006 +n42011005007 +n42011005008 +n42011005009 +n42011005010 +n42011005011 +n42011005012 +n42011005013 +n42011005014 +n42011005015 +n42011005016 +n42011005017 +n42011005018 +n42011005019 +n42011005020 +n42011005021 +n42011005022 +n42011006001 +n42011006002 +n42011006003 +n42011006004 +n42011006005 +n42011006006 +n42011006007 +n42011006008 +n42011006009 +n42011006010 +n42011006011 +n42011006012 +n42011006013 +n42011006014 +n42011007001 +n42011007002 +n42011007003 +n42011007004 +n42011007005 +n42011007006 +n42011007007 +n42011007008 +n42011007009 +n42011007010 +n42011007011 +n42011007012 +n42011007013 +n42011007014 +n42011007015 +n42011007016 +n42011007017 +n42011007018 +n42011007019 +n42011007020 +n42011007021 +n42011007022 +n42011007023 +n42011007024 +n42011007025 +n42011007026 +n42011007027 +n42011008001 +n42011008002 +n42011008003 +n42011008004 +n42011008005 +n42011008006 +n42011008007 +n42011008008 +n42011008009 +n42011008010 +n42011008011 +n42011008012 +n42011008013 +n42011008015 +n42011008014 +n42011008016 +n42011008017 +n42011008018 +n42011008019 +n42011008020 +n42011008021 +n42011008022 +n42011008023 +n42011009001 +n42011009002 +n42011009003 +n42011009004 +n42011009005 +n42011009006 +n42011009007 +n42011009008 +n42011009009 +n42011009010 +n42011009011 +n42011009012 +n42011009013 +n42011009014 +n42011010002 +n42011010001 +n42011010003 +n42011010004 +n42011010005 +n42011010006 +n42011010007 +n42011010008 +n42011010009 +n42011010010 +n42011010011 +n42011010012 +n42011010013 +n42011011002 +n42011011001 +n42011011003 +n42011011004 +n42011011005 +n42011011006 +n42011011007 +n42011011008 +n42011011009 +n42011011010 +n42011011011 +n42011011012 +n42011011013 +n42011011014 +n42011011015 +n42011011016 +n42011012001 +n42011012002 +n42011012003 +n42011012004 +n42011012005 +n42011012006 +n42011012007 +n42011013002 +n42011013001 +n42011013003 +n42011013004 +n42011013005 +n42011013006 +n42011013007 +n42011013008 +n42011013009 +n42011013010 +n42011013011 +n42011013012 +n42011013013 +n42011013014 +n42011013015 +n42011013016 +n42011013017 +n42011013018 +n42011013019 +n42011013020 +n42011013021 +n42011013022 +n42011013023 +n42011013024 +n42011013025 +n42011014001 +n42011014002 +n42011014003 +n42011014004 +n42011014005 +n42011014006 +n42011014007 +n42011014008 +n42011014010 +n42011014009 +n42011014011 +n42011014012 +n42011014013 +n42011014014 +n42011014015 +n42011014016 +n42011014017 +n42011014018 +n42011014019 +n42011014020 +n42011015002 +n42011015001 +n42011015003 +n42011015004 +n42011015005 +n42011015006 +n42011015007 +n42011015008 +n42011015009 +n42011015010 +n42011015011 +n42011015012 +n42011015013 +n42011015014 +n42011016002 +n42011016001 +n42011016003 +n42011016004 +n42011016005 +n42011016006 +n42011016007 +n42011016008 +n42011016009 +n42011017002 +n42011017001 +n42011017003 +n42011017004 +n42011017005 +n42011017006 +n42011017007 +n42011017008 +n42011017009 +n42011017010 +n42011017011 +n42011017012 +n42011017013 +n42011017014 +n42011017015 +n42011017016 +n42011017017 +n42011017018 +n42011017019 +n42011018002 +n42011018001 +n42011018003 +n42011018004 +n42011018005 +n42011018006 +n42011018007 +n42011018008 +n42011018009 +n42011018010 +n42011018011 +n42011018012 +n42011018013 +n42011018014 +n42011018015 +n42011018016 +n42011018017 +n42011018018 +n42011018019 +n42011018020 +n42011018021 +n42011019002 +n42011019001 +n42011019003 +n42011019004 +n42011019005 +n42011019006 +n42011019007 +n42011019008 +n42011019009 +n42011019010 +n42011019011 +n42011019012 +n42011019013 +n42011019014 +n42011019015 +n42011019016 +n42011019017 +n42011019018 +n42011019019 +n42011019020 +n42011020002 +n42011020001 +n42011020003 +n42011020004 +n42011020005 +n42011020006 +n42011020007 +n42011020008 +n42011020009 +n42011020010 +n42011020011 +n42011020012 +n42011020013 +n42011020014 +n42011020015 +n42011020016 +n42011020017 +n42011021001 +n42011021002 +n42011021003 +n42011021004 +n42011021005 +n42011021006 +n42011021007 +n42011021008 +n42011021009 +n42011021010 +n42011021011 +n42011021012 +n42011021013 +n42011021014 +n42011022002 +n42011022001 +n42011022003 +n42011022004 +n42011022005 +n42011022006 +n42011022007 +n42011022008 +n42011022009 +n42011022010 +n42011022011 +n42011022012 +n42011022013 +n42011022014 +n42011022015 +n42011022016 +n42011022017 +n42011022018 +n42011022019 +n42011023001 +n42011023002 +n42011023003 +n42011023004 +n42011023005 +n42011023006 +n42011023007 +n42011023008 +n42011023009 +n42011023010 +n42011023011 +n42011023012 +n42011023013 +n42011023014 +n42011023015 +n42011024001 +n42011024002 +n42011024003 +n42011024004 +n42011024005 +n42011024006 +n42011024007 +n42011024008 +n42011024009 +n42011024010 +n42011024011 +n42011024012 +n42011024013 +n42011024014 +n42011024015 +n42011024016 +n42011024017 +n42011024018 +n42011024019 +n42011024020 +n42011024021 +n42011024022 +n42011024023 +n42011024024 +n42011024025 +n42011025001 +n42011025002 +n42011025003 +n42011025004 +n42011025005 +n42011025006 +n42011026001 +n42011026002 +n42011026003 +n42011026004 +n42011026005 +n42011026006 +n42011026007 +n42011026008 +n42011026009 +n42011026010 +n42011026011 +n42011026012 +n42011026013 +n42011026014 +n42011026015 +n42011026016 +n42011026017 +n42011026018 +n42011026019 +n42011026020 +n42011026021 +n42011026022 +n42011026023 +n42011027002 +n42011027001 +n42011027003 +n42011027004 +n42011027005 +n42011027006 +n42011027007 +n42011027008 +n42011027010 +n42011027009 +n42011027011 +n42011027012 +n42011027013 +n42011027014 +n42011027015 +n42011027016 +n42011027017 +n42011027018 +n42011027019 +n42011027020 +n42011027021 +n42011027022 +n42011027023 +n42011027024 +n42011027025 +n42011027026 +n42011028002 +n42011028001 +n42011028003 +n42011028004 +n42011028005 +n42011028006 +n42011028007 +n42011028008 +n42011028009 +n42011028010 +n42011028011 +n42011028012 +n42011028013 +n42011029002 +n42011029001 +n42011029003 +n42011029004 +n42011029005 +n42011029006 +n42011029007 +n42011029008 +n42011029009 +n42011029010 +n42011029011 +n42011029012 +n42011029013 +n42011029014 +n42011029015 +n42011029016 +n42011029017 +n42011029018 +n42011029019 +n42011029020 +n42011029021 +n42011029022 +n42011029023 +n42011029024 +n42011030002 +n42011030001 +n42011030003 +n42011030004 +n42011030005 +n42011030006 +n42011030007 +n42011030008 +n42011030009 +n42011030010 +n42011030011 +n42011030012 +n42011030013 +n42011030014 +n42011030015 +n42011030016 +n42011030017 +n42011031001 +n42011031002 +n42011031003 +n42011031004 +n42011031005 +n42011031006 +n42011031007 +n42011031008 +n42011031009 +n42011031010 +n42011031011 +n42011031012 +n42011031013 +n42011031014 +n42011031015 +n42011031016 +n42011031017 +n42011031018 +n42011031019 +n42011031020 +n42011031021 +n42011031022 +n42011031023 +n42011031024 +n42011031025 +n42011031026 +n42011031027 +n42011031028 +n42011031029 +n42011031030 +n42011031031 +n42011032001 +n42011032002 +n42011032003 +n42011032004 +n42011032005 +n42011032006 +n42011032007 +n42011032008 +n42011032009 +n42011032010 +n42011032011 +n42011032012 +n42011032013 +n42011032014 +n42011032015 +n42011032016 +n42011032017 +n42011032018 +n42011032019 +n42011032020 +n42011032021 +n42011032022 +n42011032023 +n42011032024 +n42011033001 +n42011033002 +n42011033003 +n42011033004 +n42011033005 +n42011033006 +n42011033007 +n42011033008 +n42011033009 +n42011033010 +n42011033011 +n42011033012 +n42011033013 +n42011033014 +n42011033015 +n42011033016 +n42011033017 +n42011033018 +n42011033019 +n42011033020 +n42011034001 +n42011034002 +n42011034003 +n42011034004 +n42011034005 +n42011034006 +n42011034007 +n42011034008 +n42011034009 +n42011034010 +n42011034011 +n42011034012 +n42011034013 +n42011034014 +n42011034015 +n42011034016 +n42011034017 +n42011034018 +n42011034019 +n42011034020 +n42011034021 +n42011034023 +n42011034022 +n42011034024 +n42011034025 +n42011034026 +n42011034027 +n42011034028 +n42011034029 +n42011034030 +n42011035002 +n42011035001 +n42011035003 +n42011035004 +n42011035005 +n42011035006 +n42011035007 +n42011035008 +n42011035009 +n42011035010 +n42011036002 +n42011036001 +n42011036003 +n42011036004 +n42011036005 +n42011036006 +n42011036007 +n42011036008 +n42011036009 +n42011036010 +n42011036011 +n42011036012 +n42011036013 +n42011036014 +n42011036015 +n42011036016 +n42011036017 +n42011036018 +n42011036019 +n42011036020 +n42011036021 +n42011036022 +n42011036023 +n42011037002 +n42011037001 +n42011037003 +n42011037004 +n42011037005 +n42011037006 +n42011037007 +n42011037008 +n42011037009 +n42011037010 +n42011037011 +n42011037013 +n42011037012 +n42011037014 +n42011038002 +n42011038001 +n42011038003 +n42011038004 +n42011038005 +n42011038006 +n42011038007 +n42011038008 +n42011038009 +n42011038010 +n42011038011 +n42011038012 +n42011039002 +n42011039001 +n42011039003 +n42011039004 +n42011039005 +n42011039006 +n42011039007 +n42011039008 +n42011039009 +n42011039010 +n42011039011 +n42011039012 +n42011039013 +n42011039014 +n42011039015 +n42011039016 +n42011039017 +n42011039018 +n42011039020 +n42011039019 +n42011039021 +n42011039022 +n42011039023 +n42011039024 +n42011039025 +n42011039026 +n42011040001 +n42011040002 +n42011040003 +n42011040004 +n42011040005 +n42011040006 +n42011040007 +n42011040008 +n42011040009 +n42011040010 +n42011041001 +n42011041002 +n42011041003 +n42011041004 +n42011041005 +n42011041006 +n42011041007 +n42011041008 +n42011041009 +n42011041010 +n42011041011 +n42011042001 +n42011042002 +n42011042003 +n42011042004 +n42011042005 +n42011042006 +n42011042007 +n42011042008 +n42011042009 +n42011042010 +n42011042011 +n42011042012 +n42011042013 +n42011042014 +n42011042015 +n42011042016 +n42011042017 +n42011042018 +n42011042019 +n42011042020 +n42011042021 +n42011042022 +n42011042023 +n42011042024 +n42011042026 +n42011042027 +n42011042025 +n42011042028 +n42011042029 +n42011042030 +n42011042031 +n42011043001 +n42011043002 +n42011043003 +n42011043004 +n42011043005 +n42011043006 +n42011043007 +n42011043008 +n42011043009 +n42011043010 +n42011043011 +n42011043012 +n42011043013 +n42011043014 +n42011043015 +n42011043016 +n42011043017 +n42011044001 +n42011044002 +n42011044003 +n42011044004 +n42011044005 +n42011044006 +n42011044007 +n42011044008 +n42011044009 +n42011044010 +n42011044011 +n42011044012 +n42011044013 +n42011044014 +n42011044015 +n42011044016 +n42011044017 +n42011045002 +n42011045001 +n42011045003 +n42011045004 +n42011045005 +n42011045006 +n42011045007 +n42011045008 +n42011045009 +n42011045010 +n42011045011 +n42011045012 +n42011045013 +n42011046002 +n42011046001 +n42011046003 +n42011046004 +n42011046005 +n42011046006 +n42011046007 +n42011046008 +n42011046009 +n42011046010 +n42011046011 +n42011046012 +n42011046013 +n42011046014 +n42011046015 +n42011046016 +n42011046017 +n42011046018 +n42011046019 +n42011046020 +n42011046021 +n42011046022 +n42011046023 +n42011046024 +n42011047001 +n42011047002 +n42011047003 +n42011047004 +n42011047005 +n42011047006 +n42011047007 +n42011047008 +n42011047010 +n42011047009 +n42011047011 +n42011047012 +n42011047013 +n42011047014 +n42011048001 +n42011048002 +n42011048003 +n42011048004 +n42011048005 +n42011048006 +n42011048007 +n42011048008 +n42011048009 +n42011048010 +n42011048011 +n42011048013 +n42011048012 +n42011048014 +n42011048015 +n42011048017 +n42011048016 +n42011048018 +n42011049001 +n42011049002 +n42011049003 +n42011049004 +n42011049005 +n42011049006 +n42011049007 +n42011049008 +n42011049009 +n42011049010 +n42011049011 +n42011049012 +n42011049013 +n42011049014 +n42011049015 +n42011049016 +n42011049017 +n42011049018 +n42011049019 +n42011049020 +n42011050001 +n42011050002 +n42011050003 +n42011050004 +n42011050005 +n42011050006 +n42011050007 +n42011050008 +n42011050009 +n42011050010 +n42011050011 +n42011050012 +n42011050013 +n42011050014 +n42011050015 +n42011050016 +n42011051001 +n42011051002 +n42011051003 +n42011051004 +n42011051005 +n42011051006 +n42011051007 +n42011051008 +n42011051009 +n42011051010 +n42011051011 +n42011051012 +n42011051013 +n42011051014 +n42011051015 +n42011051016 +n42011051017 +n42011051018 +n42011051019 +n42011051020 +n42011051021 +n42011051022 +n42011052001 +n42011052002 +n42011052003 +n42011052004 +n42011052005 +n42011052006 +n42011052007 +n42011052008 +n42011052009 +n42011052010 +n42011052011 +n42011052012 +n42011052013 +n42011052014 +n42011052015 +n42011052016 +n42011052017 +n42011053001 +n42011053002 +n42011053003 +n42011053004 +n42011053005 +n42011053006 +n42011053007 +n42011053008 +n42011053009 +n42011053010 +n42011053011 +n42011053012 +n42011053013 +n42011053014 +n42011053015 +n42011053016 +n42011054001 +n42011054002 +n42011054003 +n42011054004 +n42011054005 +n42011054006 +n42011054007 +n42011054008 +n42012001001 +n42012001002 +n42012001003 +n42012001004 +n42012001005 +n42012001006 +n42012001007 +n42012001008 +n42012001009 +n42012001010 +n42012001011 +n42012001012 +n42012001013 +n42012001014 +n42012001015 +n42012001016 +n42012001017 +n42012001018 +n42012001019 +n42012001020 +n42012001021 +n42012001022 +n42012001023 +n42012001024 +n42012001025 +n42012001026 +n42012001027 +n42012002002 +n42012002001 +n42012002004 +n42012002003 +n42012002005 +n42012002006 +n42012002007 +n42012002008 +n42012002009 +n42012002010 +n42012002011 +n42012002012 +n42012003001 +n42012003002 +n42012003003 +n42012003004 +n42012003005 +n42012003006 +n42012003007 +n42012003008 +n42012003009 +n42012003010 +n42012003011 +n42012003012 +n42012003013 +n42012003014 +n42012003015 +n42012003016 +n42012003017 +n42012003018 +n42012003019 +n42012003020 +n42012003021 +n42012003022 +n42012003023 +n42012003024 +n42012004002 +n42012004001 +n42012004003 +n42012004004 +n42012004005 +n42012004006 +n42012004007 +n42012004008 +n42012004009 +n42012004010 +n42012004011 +n42012004012 +n42012004013 +n42012004014 +n42012004015 +n42012004016 +n42012004017 +n42012004018 +n42012004019 +n42012004020 +n42012004021 +n42012005002 +n42012005001 +n42012005003 +n42012005004 +n42012005005 +n42012005006 +n42012005007 +n42012005008 +n42012005009 +n42012005010 +n42012005011 +n42012005012 +n42012005013 +n42012005014 +n42012005015 +n42012005016 +n42012005017 +n42012005018 +n42012005019 +n42012005020 +n42012005021 +n42012006001 +n42012006002 +n42012006003 +n42012006004 +n42012006005 +n42012006006 +n42012006007 +n42012006008 +n42012006009 +n42012006010 +n42012006011 +n42012006012 +n42012006013 +n42012006014 +n42012006015 +n42012006016 +n42012007001 +n42012007002 +n42012007003 +n42012007004 +n42012007005 +n42012007006 +n42012007007 +n42012007008 +n42012007009 +n42012007010 +n42012007011 +n42012007012 +n42012007013 +n42012007014 +n42012008002 +n42012008001 +n42012008003 +n42012008004 +n42012008006 +n42012008005 +n42012008007 +n42012008008 +n42012008009 +n42012008010 +n42012008011 +n42012008012 +n42012008013 +n42012008014 +n42012008015 +n42012008016 +n42012008017 +n42012008018 +n42012008019 +n42012008020 +n42012008021 +n42012008022 +n42012008023 +n42012008024 +n42012008025 +n42012009002 +n42012009001 +n42012009003 +n42012009004 +n42012009005 +n42012009006 +n42012009007 +n42012009008 +n42012009009 +n42012009010 +n42012009011 +n42012009012 +n42012009013 +n42012010001 +n42012010002 +n42012010003 +n42012010004 +n42012010005 +n42012010006 +n42012010007 +n42012010008 +n42012010009 +n42012010010 +n42012010011 +n42012010012 +n42012010014 +n42012010013 +n42012010015 +n42012010016 +n42012010017 +n42012010018 +n42012010019 +n42012010020 +n42012010021 +n42012011002 +n42012011001 +n42012011003 +n42012011004 +n42012011005 +n42012011006 +n42012011007 +n42012011008 +n42012011009 +n42012011010 +n42012011011 +n42012011012 +n42012011013 +n42012011014 +n42012011015 +n42012011016 +n42012011017 +n42012011018 +n42012011019 +n42012011020 +n42012011021 +n42012011022 +n42012012002 +n42012012001 +n42012012003 +n42012012004 +n42012012005 +n42012012006 +n42012012007 +n42012012008 +n42012012009 +n42012012010 +n42012012011 +n42012012013 +n42012012012 +n42012013002 +n42012013001 +n42012013003 +n42012013004 +n42012013005 +n42012013006 +n42012013007 +n42012013008 +n42012013009 +n42012013010 +n42012013011 +n42012013012 +n42012013013 +n42012013014 +n42012013015 +n42012013016 +n42012013017 +n42012014002 +n42012014001 +n42012014003 +n42012014004 +n42012014005 +n42012014006 +n42012014007 +n42012014008 +n42012014009 +n42012014010 +n42012014011 +n42012014012 +n42012014013 +n42012015002 +n42012015001 +n42012015003 +n42012015004 +n42012015005 +n42012015006 +n42012015007 +n42012015008 +n42012015009 +n42012015010 +n42012015011 +n42012015012 +n42012015013 +n42012015014 +n42012015015 +n42012015016 +n42012015017 +n42012015018 +n42012015019 +n42012015020 +n42012015021 +n42012015022 +n42012015023 +n42012015024 +n42012016002 +n42012016001 +n42012016003 +n42012016004 +n42012016005 +n42012016006 +n42012016007 +n42012016008 +n42012016009 +n42012016011 +n42012016012 +n42012016010 +n42012017001 +n42012017002 +n42012017003 +n42012017004 +n42012017005 +n42012017006 +n42012017007 +n42012017008 +n42012017009 +n42012017010 +n42012017011 +n42012017012 +n42012017013 +n42012017014 +n42012017015 +n42012018001 +n42012018002 +n42012018003 +n42012018004 +n42012018005 +n42012018006 +n42012018007 +n42012018008 +n42012018009 +n42012018010 +n42012018011 +n42012018012 +n42012018013 +n42012018014 +n42012018015 +n42012018016 +n42012018017 +n42012018018 +n42012018019 +n42012018020 +n42012018021 +n42012019001 +n42012019002 +n42012019003 +n42012019004 +n42012019005 +n42012019006 +n42012019007 +n42012019008 +n42012019009 +n42012019010 +n42012019011 +n42012019012 +n42012019013 +n42012019014 +n42012019015 +n42012019016 +n42012019017 +n42012020002 +n42012020001 +n42012020003 +n42012020004 +n42012020005 +n42012020006 +n42012020007 +n42012020008 +n42012020009 +n42012020010 +n42012020011 +n42012020012 +n42012020013 +n42012020014 +n42012020015 +n42012020017 +n42012020016 +n42012020018 +n42012020019 +n42012020020 +n42012021001 +n42012021002 +n42012021003 +n42012021004 +n42012021005 +n42012021006 +n42012021007 +n42012021008 +n42012021009 +n42012022002 +n42012022001 +n42012022003 +n42012022004 +n42012022005 +n42012022006 +n42012022007 +n42012022008 +n42012022009 +n42012022010 +n42012022011 +n42012022012 +n42012022013 +n42012022014 +n42012022015 +n42012022016 +n42012022017 +n42012022018 +n42012022019 +n42012022020 +n42012022021 +n42012023002 +n42012023001 +n42012023003 +n42012023004 +n42012023005 +n42012023006 +n42012023007 +n42012023008 +n42012023009 +n42012023010 +n42012023011 +n42012023012 +n42012024001 +n42012024002 +n42012024003 +n42012024004 +n42012024005 +n42012024006 +n42012024007 +n42012024008 +n42012024009 +n42012024010 +n42012024011 +n42012024012 +n42012024013 +n42012024014 +n42012024015 +n42012024016 +n42012024017 +n42012024018 +n42012024019 +n42012024020 +n42012024021 +n42012024022 +n42012024023 +n42012024024 +n42012024025 +n42012025002 +n42012025001 +n42012025003 +n42012025004 +n42012025005 +n42012025006 +n42012025007 +n42012025008 +n42012025009 +n42012025010 +n42012025011 +n42012025012 +n42012026002 +n42012026001 +n42012026003 +n42012026004 +n42012026005 +n42012026006 +n42012026007 +n42012026008 +n42012026009 +n42012026010 +n42012027001 +n42012027002 +n42012027003 +n42012027004 +n42012027005 +n42012027006 +n42012027007 +n42012027008 +n42012027010 +n42012027009 +n42012027011 +n42012027012 +n42012027013 +n42012027014 +n42012027015 +n42012027016 +n42012027017 +n42012027018 +n42012027019 +n42012027020 +n42012027021 +n42012027022 +n42012028002 +n42012028001 +n42012028003 +n42012028004 +n42012028005 +n42012028006 +n42012028007 +n42012028008 +n42012028009 +n42012028010 +n42012028011 +n42012028012 +n42012028013 +n42012028014 +n42012028015 +n42012028016 +n42012028017 +n42012028018 +n42012028019 +n42012028020 +n42012028021 +n42012029001 +n42012029002 +n42012029003 +n42012029004 +n42012029005 +n42012029006 +n42012029007 +n42012029008 +n42012029009 +n42012029010 +n42012029011 +n42012029012 +n42012030002 +n42012030001 +n42012030003 +n42012030004 +n42012030005 +n42012030006 +n42012030007 +n42012030008 +n42012030010 +n42012030009 +n42012030011 +n42012030012 +n42012030013 +n42012030014 +n42012030015 +n42012030016 +n42012031001 +n42012031002 +n42012031003 +n42012031004 +n42012031005 +n42012031006 +n42012031007 +n42012031008 +n42012031009 +n42012032001 +n42012032002 +n42012032003 +n42012032004 +n42012032005 +n42012032006 +n42012032007 +n42012032008 +n42012032009 +n42012032010 +n42012032011 +n42012032012 +n42012032013 +n42012032014 +n42012033001 +n42012033002 +n42012033003 +n42012033004 +n42012033005 +n42012033006 +n42012033007 +n42012033008 +n42012033009 +n42012033010 +n42012033011 +n42012033012 +n42012033013 +n42012033014 +n42012033015 +n42012033016 +n42012033017 +n42012033018 +n42012033019 +n42012033020 +n42012033021 +n42012033022 +n42012033023 +n42012033024 +n42012034002 +n42012034001 +n42012034003 +n42012034004 +n42012034005 +n42012034006 +n42012034007 +n42012034008 +n42012034009 +n42012034010 +n42012034011 +n42012034012 +n42012035001 +n42012035002 +n42012035003 +n42012035004 +n42012035005 +n42012035006 +n42012035007 +n42012035008 +n42012035009 +n42012036001 +n42012036002 +n42012036003 +n42012036004 +n42012036005 +n42012036006 +n42012036007 +n42012036008 +n42012036009 +n42012036010 +n42012036011 +n42012036012 +n42012036013 +n42012036014 +n42012036015 +n42012036016 +n42012036017 +n42012036018 +n42012036019 +n42012036020 +n42012037001 +n42012037002 +n42012037003 +n42012037004 +n42012037005 +n42012037010 +n42012037006 +n42012037007 +n42012037008 +n42012037009 +n42012037011 +n42012037012 +n42012037013 +n42012037014 +n42012037015 +n42012037016 +n42012037017 +n42012037018 +n42012037019 +n42012037020 +n42012037021 +n42012037022 +n42012038001 +n42012038002 +n42012038003 +n42012038004 +n42012038005 +n42012038006 +n42012038007 +n42012038008 +n42012038009 +n42012038010 +n42012038011 +n42012038012 +n42012038013 +n42012038014 +n42012038015 +n42012038016 +n42012039002 +n42012039001 +n42012039003 +n42012039004 +n42012039005 +n42012039006 +n42012039007 +n42012039008 +n42012039009 +n42012039010 +n42012039011 +n42012039012 +n42012039013 +n42012039015 +n42012039014 +n42012039016 +n42012039017 +n42012039018 +n42012039019 +n42012039020 +n42012040001 +n42012040002 +n42012040003 +n42012040004 +n42012040005 +n42012040006 +n42012040007 +n42012040008 +n42012040009 +n42012040010 +n42012040011 +n42012040012 +n42012040013 +n42012040014 +n42012041002 +n42012041001 +n42012041003 +n42012041004 +n42012041005 +n42012041006 +n42012041007 +n42012041008 +n42012041009 +n42012041010 +n42012041011 +n42012041012 +n42012041013 +n42012041014 +n42012041015 +n42012042001 +n42012042002 +n42012042003 +n42012042004 +n42012042006 +n42012042005 +n42012042007 +n42012042008 +n42012042009 +n42012042010 +n42012042011 +n42012042012 +n42012042013 +n42012042014 +n42012042015 +n42012042016 +n42012042017 +n42012042018 +n42012042019 +n42012042020 +n42012042021 +n42012042022 +n42012042023 +n42012042024 +n42012042025 +n42012042026 +n42012043001 +n42012043002 +n42012043003 +n42012043004 +n42012043005 +n42012043011 +n42012043012 +n42012043006 +n42012043007 +n42012043008 +n42012043009 +n42012043010 +n42012044001 +n42012044002 +n42012044003 +n42012044004 +n42012044005 +n42012044006 +n42012044007 +n42012044008 +n42012044009 +n42012044010 +n42012044011 +n42012045002 +n42012045001 +n42012045003 +n42012045004 +n42012045005 +n42012045006 +n42012045007 +n42012045008 +n42012045009 +n42012045010 +n42012045011 +n42012045012 +n42012045013 +n42012045014 +n42012045015 +n42012045016 +n42012045017 +n42012045018 +n42012045019 +n42012045020 +n42012045021 +n42012045022 +n42012045023 +n42012045025 +n42012045024 +n42012045026 +n42012045027 +n42012045028 +n42012045029 +n42012046001 +n42012046002 +n42012046003 +n42012046004 +n42012046005 +n42012046006 +n42012046007 +n42012046008 +n42012046009 +n42012046010 +n42012046011 +n42012046012 +n42012046013 +n42012046014 +n42012046015 +n42012046016 +n42012046017 +n42012046018 +n42012046019 +n42012046020 +n42012046021 +n42012046022 +n42012046023 +n42012046024 +n42012046025 +n42012046026 +n42012046027 +n42012046028 +n42012047002 +n42012047001 +n42012047003 +n42012047004 +n42012047005 +n42012047006 +n42012047007 +n42012047008 +n42012047009 +n42012047010 +n42012047011 +n42012047012 +n42012047013 +n42012047014 +n42012047015 +n42012047016 +n42012047017 +n42012047018 +n42012047019 +n42012047020 +n42012047021 +n42012047022 +n42012048002 +n42012048001 +n42012048003 +n42012048004 +n42012048006 +n42012048005 +n42012048007 +n42012048008 +n42012048009 +n42012048010 +n42012048012 +n42012048011 +n42012048013 +n42012048014 +n42012048015 +n42012048016 +n42012048017 +n42012048018 +n42012048019 +n42012048020 +n42012048021 +n42012048022 +n42012048023 +n42012048024 +n42012048025 +n42012048026 +n42012049002 +n42012049001 +n42012049003 +n42012049004 +n42012049005 +n42012049006 +n42012049007 +n42012049008 +n42012049009 +n42012049010 +n42012049011 +n42012049012 +n42012050002 +n42012050001 +n42012050003 +n42012050004 +n42012050005 +n42012050006 +n42012050007 +n42012050008 +n42012050009 +n42012050010 +n42012051001 +n42012051002 +n42012051004 +n42012051003 +n42012051005 +n42012051006 +n42012051007 +n42012051008 +n42012051010 +n42012051011 +n42012051009 +n42012051012 +n42012051013 +n42012051014 +n42012052002 +n42012052001 +n42012052010 +n42012052003 +n42012052004 +n42012052005 +n42012052006 +n42012052007 +n42012052008 +n42012052009 +n42012052011 +n42012052012 +n42012052013 +n42012052014 +n42012052015 +n42012052016 +n42012052017 +n42012053001 +n42012053002 +n42012053003 +n42012053004 +n42012053005 +n42012053006 +n42012053007 +n42012053008 +n42012053009 +n42012053010 +n42012053011 +n42012053012 +n42012053013 +n42012053014 +n42012053015 +n42012053016 +n42012053017 +n42012053018 +n42012053019 +n42012053020 +n42012053021 +n42012053022 +n42012053023 +n42012053024 +n42012053025 +n42012053026 +n42012054002 +n42012054001 +n42012054003 +n42012054004 +n42012054005 +n42012054006 +n42012054007 +n42012054008 +n42012054009 +n42012054010 +n42012054011 +n42012054012 +n42012054013 +n42012054014 +n42012054015 +n42012054016 +n42012054017 +n42012054018 +n42012054019 +n42012055001 +n42012055002 +n42012055003 +n42012055004 +n42012055005 +n42012055006 +n42012055007 +n42012055008 +n42012055009 +n42012055010 +n42012056001 +n42012056002 +n42012056003 +n42012056004 +n42012056005 +n42012056006 +n42012056007 +n42012056008 +n42012056010 +n42012056009 +n42012056013 +n42012056011 +n42012056012 +n42012056014 +n42012056015 +n42012056016 +n42012056017 +n42012057002 +n42012057001 +n42012057003 +n42012057004 +n42012057005 +n42012057006 +n42012057007 +n42012057008 +n42012057009 +n42012058002 +n42012058001 +n42012058003 +n42012058004 +n42012058005 +n42012058006 +n42012058007 +n42012058008 +n42012058009 +n42012058010 +n42012058011 +n42012058012 +n42012058013 +n42012058014 +n42012058015 +n42012058016 +n42012058017 +n42012058018 +n42012058019 +n42012058020 +n42012058021 +n42012058022 +n42012058023 +n42012058024 +n42012058025 +n42012058026 +n42012058027 +n42012058028 +n42012058029 +n42012058030 +n42012058031 +n42012058032 +n42012058033 +n42012058034 +n42012058035 +n42012058036 +n42012058037 +n42012058038 +n42012059001 +n42012059002 +n42012059003 +n42012059004 +n42012059005 +n42012059006 +n42012059007 +n42012059008 +n42012059009 +n42012059010 +n42012059011 +n42012059012 +n42013001002 +n42013001001 +n42013001003 +n42013001004 +n42013001005 +n42013001006 +n42013001007 +n42013001008 +n42013001009 +n42013001010 +n42013001011 +n42013001012 +n42013001013 +n42013001014 +n42013001015 +n42013001016 +n42013001017 +n42013001018 +n42013001019 +n42013001020 +n42013001021 +n42013002001 +n42013002002 +n42013002003 +n42013002004 +n42013002005 +n42013002006 +n42013002007 +n42013002008 +n42013002009 +n42013002010 +n42013002011 +n42013002012 +n42013002013 +n42013002014 +n42013002015 +n42013002016 +n42013002017 +n42013002018 +n42013003001 +n42013003002 +n42013003003 +n42013003004 +n42013003005 +n42013003006 +n42013003007 +n42013003008 +n42013003009 +n42013003010 +n42013004001 +n42013004002 +n42013004003 +n42013004004 +n42013004005 +n42013004006 +n42013004007 +n42013004008 +n42013004009 +n42013004010 +n42013004011 +n42013004012 +n42013004013 +n42013004014 +n42013004015 +n42013004016 +n42013004017 +n42013004018 +n42013004019 +n42013004020 +n42013004021 +n42013004022 +n42013004023 +n42013004024 +n42013004025 +n42013004026 +n42013004027 +n42013004028 +n42013005001 +n42013005002 +n42013005003 +n42013005004 +n42013005005 +n42013005006 +n42013005007 +n42013005008 +n42013005009 +n42013005010 +n42013006002 +n42013006001 +n42013006003 +n42013006004 +n42013006005 +n42013006006 +n42013006007 +n42013006008 +n42013006009 +n42013006010 +n42013006011 +n42013006012 +n42013006013 +n42013006014 +n42013006015 +n42013006016 +n42013006017 +n42013006018 +n42013006019 +n42013006020 +n42013006021 +n42013006022 +n42013007002 +n42013007001 +n42013007003 +n42013007004 +n42013007005 +n42013007006 +n42013007007 +n42013007008 +n42013007009 +n42013007010 +n42013007011 +n42013007012 +n42013007013 +n42013007014 +n42013007015 +n42013007016 +n42013007017 +n42013007018 +n42013007019 +n42013007020 +n42013007021 +n42013007022 +n42013007023 +n42013007024 +n42013007025 +n42013007026 +n42013007027 +n42013007028 +n42013008002 +n42013008001 +n42013008003 +n42013008004 +n42013008005 +n42013008006 +n42013008007 +n42013008008 +n42013008009 +n42013008010 +n42013008011 +n42013008012 +n42013008013 +n42013008014 +n42013008015 +n42013008016 +n42013008017 +n42013008018 +n42013008019 +n42013008020 +n42013009002 +n42013009001 +n42013009003 +n42013009004 +n42013009005 +n42013009006 +n42013009007 +n42013009009 +n42013009008 +n42013009010 +n42013009011 +n42013009012 +n42013010002 +n42013010001 +n42013010003 +n42013010004 +n42013010005 +n42013010006 +n42013010007 +n42013010008 +n42013010009 +n42013010010 +n42013011001 +n42013011002 +n42013011003 +n42013011004 +n42013011006 +n42013011005 +n42013011007 +n42013011008 +n42013011009 +n42013011010 +n42013011011 +n42013011012 +n42013011013 +n42013011014 +n42013011015 +n42013011016 +n42013011017 +n42013011018 +n42013011019 +n42013012002 +n42013012001 +n42013012003 +n42013012004 +n42013012005 +n42013012006 +n42013012007 +n42013012008 +n42013012009 +n42013012010 +n42013012011 +n42013012012 +n42013012013 +n42013012014 +n42013013001 +n42013013002 +n42013013003 +n42013013004 +n42013013005 +n42013013006 +n42013013007 +n42013013008 +n42013013009 +n42013013010 +n42013013011 +n42013013012 +n42013014002 +n42013014001 +n42013014003 +n42013014004 +n42013014005 +n42013014006 +n42013014007 +n42013014008 +n42013014009 +n42013014010 +n42013014011 +n42013014012 +n42013014013 +n42013014014 +n42013014015 +n42013014016 +n42013014017 +n42013014018 +n42013014019 +n42013014020 +n42013014021 +n42013014022 +n42013014025 +n42013014023 +n42013014024 +n42013014026 +n42013014027 +n42013014028 +n42013014029 +n42013014030 +n42013014031 +n42013014032 +n42013014033 +n42013015002 +n42013015001 +n42013015003 +n42013015004 +n42013015005 +n42013015006 +n42013015007 +n42013015008 +n42013015013 +n42013015009 +n42013015010 +n42013015011 +n42013015012 +n42013015014 +n42013015015 +n42013015016 +n42013015017 +n42013015018 +n42013015019 +n42013015020 +n42013015021 +n42013015022 +n42013015023 +n42013015024 +n42013015025 +n42013015026 +n42013016002 +n42013016010 +n42013016001 +n42013016003 +n42013016004 +n42013016005 +n42013016006 +n42013016007 +n42013016008 +n42013016009 +n42013016011 +n42013016012 +n42013016013 +n42013016014 +n42013016017 +n42013016018 +n42013016019 +n42013016020 +n42013016021 +n42013016022 +n42013016023 +n42013016024 +n42013016025 +n42013016015 +n42013016016 +n42013017001 +n42013017002 +n42013017003 +n42013017004 +n42013017005 +n42013017006 +n42013017007 +n42013017008 +n42013017009 +n42013017010 +n42013017011 +n42013017012 +n42013017013 +n42013017014 +n42013017015 +n42013017016 +n42013017017 +n42013017018 +n42013017019 +n42013017020 +n42013017021 +n42013017022 +n42013018002 +n42013018001 +n42013018003 +n42013018004 +n42013018005 +n42013018006 +n42013018007 +n42013018008 +n42013018009 +n42013018010 +n42013018011 +n42013018012 +n42013018013 +n42013019001 +n42013019002 +n42013019003 +n42013019004 +n42013019005 +n42013019006 +n42013019007 +n42013019008 +n42013019009 +n42013019010 +n42013019011 +n42013019012 +n42013019013 +n42013019014 +n42013019015 +n42013019016 +n42013019017 +n42013019018 +n42013019019 +n42013019020 +n42013019021 +n42013019022 +n42013019023 +n42013019024 +n42013019025 +n42013019026 +n42013019027 +n42013020001 +n42013020002 +n42013020003 +n42013020004 +n42013020005 +n42013020006 +n42013020007 +n42013020008 +n42013020009 +n42013021001 +n42013021002 +n42013021003 +n42013021004 +n42013021005 +n42013021006 +n42013021007 +n42013021008 +n42013021009 +n42013021010 +n42013021011 +n42013021012 +n42013021013 +n42013021014 +n42013021015 +n42013022001 +n42013022002 +n42013022003 +n42013022004 +n42013022005 +n42013022006 +n42013022007 +n42013022008 +n42013022009 +n42013022010 +n42013022011 +n42013022012 +n42013023002 +n42013023001 +n42013023003 +n42013023004 +n42013023005 +n42013023006 +n42013023007 +n42013023008 +n42013023009 +n42013023011 +n42013023010 +n42013023012 +n42013023013 +n42013023014 +n42013024001 +n42013024002 +n42013024003 +n42013024004 +n42013024005 +n42013024006 +n42013024007 +n42013024009 +n42013024010 +n42013024008 +n42013024011 +n42013024012 +n42013024013 +n42013024014 +n42013024015 +n42013025001 +n42013025003 +n42013025002 +n42013025004 +n42013025005 +n42013025006 +n42013025007 +n42013025008 +n42013025009 +n42013025010 +n42013025011 +n42013025012 +n42013025013 +n42013025014 +n42013025015 +n42013025016 +n42013025017 +n42013025018 +n42013025019 +n42013025020 +n42013025021 +n42013025022 +n42013025023 +n42013025024 +n42013025025 +n42013025026 +n42013025027 +n42013025028 +n42013025029 +n42013025030 +n42013025031 +n42013026001 +n42013026002 +n42013026003 +n42013026004 +n42013026005 +n42013026006 +n42013026007 +n42013026008 +n42013026009 +n42013026010 +n42013026011 +n42013026012 +n42013026013 +n42013026014 +n42013027001 +n42013027002 +n42013027003 +n42013027004 +n42013027005 +n42013027006 +n42013027007 +n42013027008 +n42013027009 +n42013027010 +n42013027011 +n42013027012 +n42013027013 +n42013027014 +n42013028001 +n42013028002 +n42013028003 +n42013028004 +n42013028005 +n42013028006 +n42013028007 +n42013028008 +n42013028009 +n42013028010 +n42013028011 +n42013028012 +n42013028013 +n42013028014 +n42013028015 +n42013028016 +n42013028017 +n42013028018 +n42013028019 +n42013028020 +n42013028021 +n42013028022 +n42013028023 +n42013028024 +n42013028025 +n42013028027 +n42013028026 +n42013028028 +n42013028029 +n42013029001 +n42013029002 +n42013029003 +n42013029004 +n42013029005 +n42013029006 +n42013029007 +n42013029008 +n42013029009 +n42013029010 +n42013029011 +n42013029012 +n42013029013 +n42013029014 +n42013029015 +n42013029016 +n42013029017 +n42013029018 +n42013030001 +n42013030002 +n42013030003 +n42013030004 +n42013030005 +n42013030006 +n42013030007 +n42013030008 +n42013030009 +n42013030010 +n42013030011 +n42013030012 +n42013030013 +n42013031001 +n42013031002 +n42013031003 +n42013031004 +n42013031005 +n42013031006 +n42013031007 +n42013031008 +n42013031009 +n42013031010 +n42013031011 +n42013031012 +n42013031013 +n42013031014 +n42013031015 +n42013031016 +n42013031017 +n42013031018 +n42013032001 +n42013032002 +n42013032003 +n42013032004 +n42013032005 +n42013032006 +n42013032007 +n42013032008 +n42013032009 +n42013032010 +n42013032011 +n42013032012 +n42013032013 +n42013032014 +n42013032015 +n42013032016 +n42013032017 +n42013032018 +n42013032019 +n42013032020 +n42013032021 +n42013033001 +n42013033002 +n42013033003 +n42013033004 +n42013033005 +n42013033006 +n42013033007 +n42013033008 +n42013033009 +n42013033010 +n42013033011 +n42013033012 +n42013033013 +n42013033014 +n42013033015 +n42013033016 +n42013033017 +n42013034001 +n42013034002 +n42013034003 +n42013034004 +n42013034005 +n42013034006 +n42013034007 +n42013034008 +n42013034009 +n42013034010 +n42013034011 +n42013034012 +n42013034013 +n42013034014 +n42013034015 +n42013034016 +n42013034017 +n42013034018 +n42013034019 +n42013034020 +n42013034021 +n42013034022 +n42013034023 +n42013034024 +n42013034025 +n42013034026 +n42013034027 +n42013034028 +n42013034029 +n42013034030 +n42013035001 +n42013035002 +n42013035003 +n42013035004 +n42013035005 +n42013035006 +n42013035008 +n42013035007 +n42013035009 +n42013035010 +n42013035011 +n42013035012 +n42013035013 +n42013035014 +n42013035015 +n42013035016 +n42013035017 +n42013035018 +n42013035019 +n42013035020 +n42013035021 +n42013035022 +n42013035023 +n42014001001 +n42014001002 +n42014001003 +n42014001004 +n42014001005 +n42014001006 +n42014001007 +n42014001008 +n42014001009 +n42014001010 +n42014001011 +n42014001012 +n42014001013 +n42014001014 +n42014001015 +n42014001016 +n42014001017 +n42014001018 +n42014001019 +n42014001020 +n42014001021 +n42014002001 +n42014002002 +n42014002003 +n42014002004 +n42014002006 +n42014002005 +n42014002007 +n42014002008 +n42014003001 +n42014003002 +n42014003003 +n42014003004 +n42014003005 +n42014003006 +n42014003007 +n42014003008 +n42014003009 +n42014003010 +n42014003011 +n42014003012 +n42014003013 +n42014003014 +n42014003015 +n42014003016 +n42014003017 +n42014004002 +n42014004001 +n42014004003 +n42014004004 +n42014004005 +n42014004006 +n42014004007 +n42014004008 +n42014004009 +n42014005001 +n42014005002 +n42014005003 +n42014005004 +n42014005005 +n42014005006 +n42014005007 +n42014005008 +n42014005009 +n42014005010 +n42014005011 +n42014005012 +n42014005013 +n42014005014 +n42014005015 +n42014005016 +n42014005017 +n42014005018 +n42014005019 +n42014005020 +n42014005021 +n42014006001 +n42014006002 +n42014006003 +n42014006004 +n42014006005 +n42014006006 +n42014007002 +n42014007001 +n42014007003 +n42014007004 +n42014007005 +n42014007006 +n42014007007 +n42014007008 +n42014007009 +n42014007010 +n42014007011 +n42014007012 +n42014007013 +n42014007014 +n42014008001 +n42014008002 +n42014008003 +n42014008004 +n42014008005 +n42014008006 +n42014008007 +n42014008008 +n42014008009 +n42014008010 +n42014008011 +n42014008012 +n42014008013 +n42014008014 +n42014008015 +n42014008016 +n42014008017 +n42014008018 +n42014008019 +n42014009001 +n42014009002 +n42014009003 +n42014009004 +n42014009005 +n42014009006 +n42014009007 +n42014009008 +n42014009009 +n42014009010 +n42014009011 +n42014009012 +n42014009013 +n42014009014 +n42014009015 +n42014009016 +n42014009017 +n42014009018 +n42014009019 +n42014009020 +n42014009021 +n42014010001 +n42014010002 +n42014010003 +n42014010004 +n42014010005 +n42014010006 +n42014010007 +n42014010008 +n42014010009 +n42014010010 +n42014010011 +n42014010012 +n42014010013 +n42014010014 +n42014010015 +n42014010016 +n42014010017 +n42014010018 +n42014010019 +n42014010020 +n42014010021 +n42014010022 +n42014010023 +n42014010024 +n42014010025 +n42014010026 +n42014010027 +n42014010028 +n42014010029 +n42014011001 +n42014011002 +n42014011003 +n42014011004 +n42014011005 +n42014011006 +n42014011007 +n42014011008 +n42014011009 +n42014011010 +n42014011011 +n42014012002 +n42014012001 +n42014012003 +n42014012004 +n42014012005 +n42014012006 +n42014012007 +n42014012008 +n42014012009 +n42014012010 +n42014012011 +n42014012012 +n42014012013 +n42014012014 +n42014012015 +n42014012016 +n42014012017 +n42014012018 +n42014012019 +n42014012020 +n42014012021 +n42014012022 +n42014012023 +n42014012024 +n42014012025 +n42014012026 +n42014012027 +n42014012028 +n42014012029 +n42014012030 +n42014012031 +n42014012032 +n42014012033 +n42014012034 +n42014012035 +n42014012036 +n42014012037 +n42014013001 +n42014013002 +n42014013003 +n42014013004 +n42014013005 +n42014013006 +n42014013007 +n42014013008 +n42014013009 +n42014014001 +n42014014002 +n42014014003 +n42014014004 +n42014014005 +n42014014006 +n42014014007 +n42014014008 +n42014014010 +n42014014009 +n42014014011 +n42014014012 +n42014014013 +n42014014014 +n42014014015 +n42014014016 +n42014015002 +n42014015003 +n42014015004 +n42014015005 +n42014015001 +n42014015006 +n42014015007 +n42014015008 +n42014015009 +n42014015010 +n42014015011 +n42014015012 +n42014015013 +n42014015014 +n42014015015 +n42014015016 +n42014015017 +n42014016002 +n42014016001 +n42014016003 +n42014016004 +n42014016005 +n42014016006 +n42014016007 +n42014016008 +n42014016009 +n42014016010 +n42014016011 +n42014016012 +n42014017001 +n42014017002 +n42014017003 +n42014017004 +n42014017005 +n42014017006 +n42014017007 +n42014017008 +n42014017009 +n42014017010 +n42014017011 +n42014017012 +n42014017013 +n42014017014 +n42014017015 +n42014017016 +n42014017017 +n42014018001 +n42014018002 +n42014018003 +n42014018004 +n42014018005 +n42014018006 +n42014018007 +n42014018008 +n42014018009 +n42014018010 +n42014018011 +n42014018012 +n42014018013 +n42014018014 +n42014018015 +n42014018016 +n42014018017 +n42014018018 +n42014018019 +n42014018020 +n42014018021 +n42014018022 +n42014018023 +n42014019001 +n42014019002 +n42014019003 +n42014019004 +n42014019005 +n42014019007 +n42014019006 +n42014019008 +n42014019009 +n42014019010 +n42014019011 +n42014019012 +n42014019013 +n42014019014 +n42014019015 +n42014019016 +n42014020001 +n42014020002 +n42014020003 +n42014020004 +n42014020005 +n42014020006 +n42014020007 +n42014020008 +n42014020009 +n42014020010 +n42014020011 +n42014021001 +n42014021002 +n42014021003 +n42014021004 +n42014021005 +n42014021006 +n42014021007 +n42014021008 +n42014021009 +n42014021010 +n42014021011 +n42014021012 +n42014021013 +n42014021014 +n42014021015 +n42014021016 +n42014021017 +n42014021018 +n42014021019 +n42014021020 +n42014021021 +n42014021022 +n42014021023 +n42014021024 +n42014021025 +n42014021026 +n42014021027 +n42014021028 +n42014021029 +n42014021030 +n42014021031 +n42014021032 +n42014021033 +n42014021034 +n42014021035 +n42014021036 +n42014021037 +n42014022001 +n42014022002 +n42014022003 +n42014022004 +n42014022005 +n42014022006 +n42014022007 +n42014022008 +n42014022009 +n42014022010 +n42014022011 +n42014022012 +n42014023001 +n42014023002 +n42014023003 +n42014023004 +n42014023005 +n42014023006 +n42014023007 +n42014023008 +n42014023009 +n42014023010 +n42014023011 +n42014023012 +n42014023013 +n42014023014 +n42014023015 +n42014023016 +n42014023017 +n42014023018 +n42014023019 +n42014023020 +n42014023021 +n42014024002 +n42014024001 +n42014024003 +n42014024004 +n42014024005 +n42014024006 +n42014024007 +n42014024008 +n42014024009 +n42014024010 +n42014024011 +n42014024012 +n42014024013 +n42014024014 +n42014025002 +n42014025001 +n42014025003 +n42014025004 +n42014025005 +n42014025006 +n42014025007 +n42014025008 +n42014025009 +n42014025010 +n42014026001 +n42014026002 +n42014026003 +n42014026004 +n42014026005 +n42014026006 +n42014026007 +n42014026008 +n42014026009 +n42014026010 +n42014026011 +n42014026012 +n42014026013 +n42014026014 +n42014026015 +n42014026016 +n42014026017 +n42014026018 +n42014026019 +n42014026020 +n42014026021 +n42014026022 +n42014026023 +n42014026024 +n42014026025 +n42014026026 +n42014026028 +n42014026027 +n42014026029 +n42014026030 +n42014026031 +n42014026032 +n42014026033 +n42014026034 +n42014026035 +n42014026036 +n42014026037 +n42014027001 +n42014027002 +n42014027003 +n42014027004 +n42014027005 +n42014027006 +n42014027007 +n42014027008 +n42014027009 +n42014027010 +n42014027011 +n42014027012 +n42014027013 +n42014027014 +n42014027015 +n42014028002 +n42014028008 +n42014028001 +n42014028003 +n42014028004 +n42014028005 +n42014028006 +n42014028007 +n42014028009 +n42014028010 +n42014028011 +n42014028012 +n42014028013 +n42014028014 +n42014028015 +n42014028016 +n42014028017 +n42014029001 +n42014029002 +n42014029003 +n42014029004 +n42014029005 +n42014029006 +n42014029007 +n42014029008 +n42014029009 +n42014029010 +n42014029011 +n42014029012 +n42014029013 +n42014029014 +n42014029015 +n42014029016 +n42014030001 +n42014030002 +n42014030003 +n42014030004 +n42014030005 +n42014030006 +n42014030007 +n42014030008 +n42014030009 +n42014030010 +n42014030011 +n42014031001 +n42014031010 +n42014031002 +n42014031003 +n42014031004 +n42014031005 +n42014031006 +n42014031007 +n42014031008 +n42014031009 +n42014031011 +n42014031012 +n42014031013 +n42014031014 +n42014031015 +n42014031016 +n42014031017 +n42014031018 +n42014031019 +n42014031020 +n42014031021 +n42014031022 +n42014031023 +n42014031024 +n42014031025 +n42014031026 +n42014031027 +n42014032002 +n42014032001 +n42014032003 +n42014032004 +n42014032005 +n42014032006 +n42014032007 +n42014032008 +n42014032009 +n42014032010 +n42014032011 +n42014032012 +n42014032013 +n42014033002 +n42014033001 +n42014033003 +n42014033004 +n42014033005 +n42014033006 +n42014033007 +n42014033008 +n42014033009 +n42014033010 +n42014033011 +n42014033012 +n42014033013 +n42014033014 +n42014033015 +n42014033016 +n42014033017 +n42014034002 +n42014034001 +n42014034003 +n42014034004 +n42014034006 +n42014034005 +n42014034007 +n42014034008 +n42014034009 +n42014034010 +n42014034011 +n42014034012 +n42014034013 +n42014035001 +n42014035002 +n42014035003 +n42014035004 +n42014035005 +n42014035006 +n42014035007 +n42014035008 +n42014035009 +n42014035010 +n42014035011 +n42014035012 +n42014035013 +n42014035014 +n42014035015 +n42014035016 +n42015001002 +n42015001001 +n42015001004 +n42015001003 +n42015001005 +n42015001006 +n42015001007 +n42015001008 +n42015001009 +n42015001010 +n42015001011 +n42015001012 +n42015002001 +n42015002002 +n42015002004 +n42015002003 +n42015002005 +n42015002006 +n42015002007 +n42015002008 +n42015002009 +n42015002010 +n42015002011 +n42015002012 +n42015002013 +n42015002014 +n42015002015 +n42015002016 +n42015003002 +n42015003001 +n42015003003 +n42015003004 +n42015003005 +n42015003006 +n42015003007 +n42015003008 +n42015004001 +n42015004002 +n42015004003 +n42015004004 +n42015004005 +n42015004006 +n42015004007 +n42015004008 +n42015004009 +n42015004010 +n42015004011 +n42015004012 +n42015004013 +n42015004014 +n42015004015 +n42015004016 +n42015004017 +n42015004018 +n42015004019 +n42015004020 +n42015004021 +n42015004022 +n42015004023 +n42015004024 +n42015004025 +n42015004026 +n42015004027 +n42015004028 +n42015005001 +n42015005002 +n42015005003 +n42015005004 +n42015005005 +n42015005006 +n42015005007 +n42015005008 +n42015006001 +n42015006002 +n42015006003 +n42015006004 +n42015006005 +n42015006006 +n42015006007 +n42015006008 +n42015006009 +n42015006010 +n42015006011 +n42015006012 +n42015006013 +n42015006014 +n42015006015 +n42015006016 +n42015006017 +n42015006018 +n42015006019 +n42015006020 +n42015006021 +n42015006022 +n42015007001 +n42015007002 +n42015007003 +n42015007004 +n42015007005 +n42015007006 +n42015007007 +n42015007008 +n42015007009 +n42015007010 +n42015007011 +n42015007012 +n42015007013 +n42015007014 +n42015007015 +n42015007016 +n42015007017 +n42015007018 +n42015007019 +n42015007020 +n42015007021 +n42015007023 +n42015007022 +n42015008001 +n42015008002 +n42015008003 +n42015008004 +n42015008006 +n42015008005 +n42015008007 +n42015008008 +n42015008009 +n42015008010 +n42015008011 +n42015008012 +n42015008013 +n42015008014 +n42015008015 +n42015008016 +n42015008017 +n42015008018 +n42015008019 +n42015008020 +n42015008021 +n42015008022 +n42015008023 +n42015009001 +n42015009002 +n42015009003 +n42015009004 +n42015009005 +n42015009006 +n42015009007 +n42015009008 +n42015009009 +n42015009010 +n42015009011 +n42015009012 +n42015009013 +n42015009014 +n42015009015 +n42015009016 +n42015010001 +n42015010002 +n42015010003 +n42015010004 +n42015010005 +n42015010006 +n42015010007 +n42015010008 +n42015010009 +n42015010010 +n42015010011 +n42015010012 +n42015010013 +n42015010014 +n42015011002 +n42015011001 +n42015011003 +n42015011004 +n42015011005 +n42015011006 +n42015011007 +n42015012001 +n42015012002 +n42015012003 +n42015012004 +n42015012005 +n42015012006 +n42015012007 +n42015012008 +n42015012009 +n42015012010 +n42015012011 +n42015012012 +n42015012013 +n42015012014 +n42015012015 +n42015012017 +n42015012016 +n42015012018 +n42015012019 +n42015012020 +n42015012021 +n42015013001 +n42015013002 +n42015013003 +n42015013004 +n42015013005 +n42015013006 +n42015013007 +n42015013008 +n42015013009 +n42015013010 +n42015013011 +n42015013012 +n42015013013 +n42015013014 +n42015013015 +n42015013016 +n42015013017 +n42015013018 +n42015013019 +n42015013020 +n42015013021 +n42015013022 +n42015014002 +n42015014001 +n42015014003 +n42015014004 +n42015014005 +n42015014006 +n42015014007 +n42015014008 +n42015014009 +n42015014010 +n42015014011 +n42015014012 +n42015014013 +n42015014014 +n42015014015 +n42015015001 +n42015015002 +n42015015003 +n42015015004 +n42015015005 +n42015015006 +n42015015007 +n42015015008 +n42015015009 +n42015015010 +n42015015011 +n42015015012 +n42015015013 +n42015015014 +n42015015015 +n42015015016 +n42015015017 +n42015015018 +n42015016001 +n42015016002 +n42015016003 +n42015016004 +n42015016005 +n42015016006 +n42015016007 +n42015016008 +n42015016009 +n42015016010 +n42015016011 +n42015016012 +n42015016013 +n42015016014 +n42015016015 +n42015016016 +n42015016017 +n42015017003 +n42015017001 +n42015017002 +n42015017004 +n42015017005 +n42015017006 +n42015017007 +n42015017008 +n42015017009 +n42015017010 +n42015017011 +n42015017012 +n42015017014 +n42015017013 +n42015017015 +n42015017016 +n42015017017 +n42015018001 +n42015018002 +n42015018003 +n42015018004 +n42015018005 +n42015018006 +n42015018007 +n42015018008 +n42015018009 +n42015018010 +n42015018011 +n42015018012 +n42015018013 +n42015018014 +n42015018015 +n42015018016 +n42015018017 +n42015019001 +n42015019002 +n42015019003 +n42015019004 +n42015019005 +n42015019006 +n42015019007 +n42015019008 +n42015019009 +n42015019010 +n42015019011 +n42015019012 +n42015019013 +n42015020001 +n42015020002 +n42015020003 +n42015020004 +n42015020005 +n42015020006 +n42015020007 +n42015020009 +n42015020008 +n42015020010 +n42015020011 +n42015020012 +n42015020013 +n42015020014 +n42015020015 +n42015020016 +n42015020017 +n42015020018 +n42015020019 +n42015020020 +n42015020021 +n42015020022 +n42015020023 +n42015020024 +n42015020025 +n42015020026 +n42015020027 +n42015020028 +n42015020029 +n42015021002 +n42015021001 +n42015021003 +n42015021004 +n42015021005 +n42015021006 +n42015021007 +n42015021008 +n42015021009 +n42015021010 +n42015021011 +n42015021012 +n42015021013 +n42015021014 +n42015021015 +n42015021016 +n42015021017 +n42015021018 +n42015021019 +n42015022002 +n42015022001 +n42015022003 +n42015022004 +n42015022005 +n42015022006 +n42015022007 +n42015022008 +n42015022009 +n42015022010 +n42015022011 +n42015022012 +n42015022013 +n42015022014 +n42015022015 +n42015022016 +n42015022017 +n42015022018 +n42015022019 +n42015022020 +n42015022021 +n42015022022 +n42015022023 +n42015022024 +n42015022025 +n42015022026 +n42015022027 +n42015022028 +n42015023001 +n42015023002 +n42015023003 +n42015023004 +n42015023005 +n42015023006 +n42015023007 +n42015023008 +n42015023009 +n42015023010 +n42015024001 +n42015024002 +n42015024003 +n42015024004 +n42015024005 +n42015024006 +n42015024007 +n42015024008 +n42015024009 +n42015024010 +n42015024011 +n42015024012 +n42015024013 +n42015024014 +n42015024015 +n42015024016 +n42015025002 +n42015025001 +n42015025003 +n42015025004 +n42015025005 +n42015025006 +n42015025007 +n42015025008 +n42015025009 +n42015025010 +n42015025011 +n42015025012 +n42015025013 +n42015025014 +n42015025015 +n42015025016 +n42015025017 +n42015025018 +n42015025019 +n42015026001 +n42015026002 +n42015026003 +n42015026004 +n42015026005 +n42015026006 +n42015026008 +n42015026007 +n42015026009 +n42015026010 +n42015027002 +n42015027001 +n42015027003 +n42015027004 +n42015027005 +n42015027006 +n42015027007 +n42015027008 +n42015027009 +n42015027010 +n42015027011 +n42015027012 +n42015027013 +n42015027014 +n42015027015 +n42015027016 +n42015027017 +n42015027018 +n42015027019 +n42015027020 +n42015027021 +n42015027022 +n42015028002 +n42015028001 +n42015028003 +n42015028004 +n42015028005 +n42015028006 +n42015028008 +n42015028007 +n42015028009 +n42015028010 +n42015028011 +n42015028012 +n42015028013 +n42015029002 +n42015029001 +n42015029003 +n42015029004 +n42015029005 +n42015029006 +n42015029007 +n42015029008 +n42015029009 +n42015029010 +n42015029011 +n42015029012 +n42015029013 +n42015029014 +n42015029015 +n42015029016 +n42015029017 +n42015029018 +n42015029019 +n42015029020 +n42015029021 +n42015029022 +n42015029023 +n42015029024 +n42015029025 +n42015029026 +n42015029027 +n42015030002 +n42015030001 +n42015030003 +n42015030004 +n42015030005 +n42015030006 +n42015030007 +n42015030008 +n42015030009 +n42015030010 +n42015030011 +n42015030012 +n42015030013 +n42015030014 +n42015030015 +n42015030016 +n42015030017 +n42015030018 +n42015030019 +n42015031002 +n42015031001 +n42015031003 +n42015031004 +n42015031005 +n42015031006 +n42015031007 +n42015031008 +n42015031009 +n42015031010 +n42015031011 +n42015031012 +n42015031013 +n42015031014 +n42015031015 +n42015031016 +n42015032002 +n42015032001 +n42015032003 +n42015032004 +n42015032005 +n42015032006 +n42015032007 +n42015032008 +n42015032009 +n42015032010 +n42015032011 +n42015032012 +n42015032013 +n42015032014 +n42015032015 +n42015032016 +n42015032017 +n42015032018 +n42016001002 +n42016001001 +n42016001003 +n42016001004 +n42016001005 +n42016001006 +n42016001007 +n42016001008 +n42016001009 +n42016001010 +n42016001011 +n42016001012 +n42016001013 +n42016001014 +n42016001015 +n42016001016 +n42016001017 +n42016001018 +n42016001019 +n42016001020 +n42016001021 +n42016001022 +n42016002001 +n42016002002 +n42016002003 +n42016002004 +n42016002005 +n42016002006 +n42016002007 +n42016002008 +n42016002009 +n42016002010 +n42016002011 +n42016002012 +n42016002013 +n42016002014 +n42016002015 +n42016002016 +n42016002018 +n42016002017 +n42016002019 +n42016002020 +n42016002021 +n42016003002 +n42016003001 +n42016003003 +n42016003004 +n42016003005 +n42016003006 +n42016003007 +n42016003008 +n42016003009 +n42016003010 +n42016003011 +n42016003012 +n42016003013 +n42016003014 +n42016003015 +n42016003016 +n42016003017 +n42016003018 +n42016003019 +n42016003020 +n42016003021 +n42016003022 +n42016004001 +n42016004002 +n42016004003 +n42016004004 +n42016004005 +n42016004006 +n42016004007 +n42016004008 +n42016004009 +n42016004010 +n42016004011 +n42016004012 +n42016004013 +n42016004014 +n42016004015 +n42016005001 +n42016005002 +n42016005003 +n42016005004 +n42016005005 +n42016005006 +n42016005007 +n42016005008 +n42016005009 +n42016005010 +n42016005011 +n42016005012 +n42016005013 +n42016005014 +n42016005015 +n42016005016 +n42016005017 +n42016006002 +n42016006001 +n42016006003 +n42016006004 +n42016006005 +n42016006006 +n42016006008 +n42016006007 +n42016006009 +n42016006010 +n42016006011 +n42016006012 +n42016006013 +n42016006014 +n42016006015 +n42016006016 +n42016006017 +n42016006018 +n42016006019 +n42016007001 +n42016007002 +n42016007003 +n42016007005 +n42016007004 +n42016007006 +n42016007007 +n42016007009 +n42016007008 +n42016007010 +n42016007011 +n42016007012 +n42016007013 +n42016007014 +n42016007015 +n42016007016 +n42016007017 +n42016007018 +n42016007019 +n42016007020 +n42016007021 +n42016007022 +n42016008001 +n42016008002 +n42016008003 +n42016008004 +n42016008005 +n42016008006 +n42016008007 +n42016008008 +n42016008009 +n42016008010 +n42016008011 +n42016008012 +n42016008013 +n42016008014 +n42016008015 +n42016008016 +n42016008017 +n42016008018 +n42016008019 +n42016008020 +n42016008021 +n42016008022 +n42016008023 +n42016008024 +n42016008025 +n42016008026 +n42016008027 +n42016008028 +n42016008029 +n42016009001 +n42016009002 +n42016009003 +n42016009004 +n42016009005 +n42016009006 +n42016009007 +n42016009008 +n42016009009 +n42016009010 +n42016009011 +n42016009012 +n42016009013 +n42016009014 +n42016009015 +n42016009016 +n42016009017 +n42016009018 +n42016009019 +n42016009020 +n42016009021 +n42016010001 +n42016010002 +n42016010003 +n42016010004 +n42016010005 +n42016010006 +n42016010007 +n42016010008 +n42016010009 +n42016010010 +n42016010011 +n42016010012 +n42016010013 +n42016010014 +n42016010015 +n42016010016 +n42016010017 +n42016010018 +n42016010019 +n42016011002 +n42016011001 +n42016011003 +n42016011004 +n42016011005 +n42016011006 +n42016011007 +n42016011008 +n42016011009 +n42016011010 +n42016011011 +n42016011012 +n42016011013 +n42016011014 +n42016012001 +n42016012002 +n42016012003 +n42016012004 +n42016012005 +n42016012006 +n42016012007 +n42016012008 +n42016012009 +n42016012010 +n42016012011 +n42016012012 +n42016012013 +n42016013001 +n42016013002 +n42016013003 +n42016013004 +n42016013005 +n42016013006 +n42016013008 +n42016013007 +n42016013009 +n42016013010 +n42016013011 +n42016013012 +n42016013013 +n42016013014 +n42016013015 +n42016013016 +n42016013017 +n42016013018 +n42016013019 +n42016013020 +n42016013021 +n42016013022 +n42016013023 +n42016013024 +n42016013025 +n42016013026 +n42016013027 +n42016013028 +n42016014002 +n42016014001 +n42016014003 +n42016014004 +n42016014005 +n42016014006 +n42016014007 +n42016014008 +n42016014009 +n42016014010 +n42016014011 +n42016015001 +n42016015002 +n42016015003 +n42016015004 +n42016015005 +n42016015006 +n42016015007 +n42016015008 +n42016015009 +n42016015010 +n42016015011 +n42016015013 +n42016015012 +n42016015014 +n42016015015 +n42016015016 +n42016015017 +n42016015018 +n42016015019 +n42016015020 +n42016015021 +n42016015022 +n42016015023 +n42016015024 +n42016015025 +n42016015026 +n42016015027 +n42016016001 +n42016016002 +n42016016003 +n42016016004 +n42016016005 +n42016016006 +n42016016007 +n42016016008 +n42016016009 +n42016016010 +n42016016011 +n42016016012 +n42016016013 +n42016016014 +n42016016015 +n42016016016 +n42016016017 +n42016016018 +n42016016019 +n42016017002 +n42016017001 +n42016017003 +n42016017004 +n42016017005 +n42016017006 +n42016017007 +n42016017008 +n42016017009 +n42016017010 +n42016017011 +n42016017012 +n42016017013 +n42016017014 +n42016017015 +n42016018001 +n42016018002 +n42016018003 +n42016018004 +n42016018005 +n42016018006 +n42016018007 +n42016018008 +n42016018009 +n42016018010 +n42016018011 +n42016018012 +n42016018013 +n42016018014 +n42016018015 +n42016018016 +n42016018017 +n42016019002 +n42016019001 +n42016019003 +n42016019004 +n42016019005 +n42016019006 +n42016019007 +n42016019008 +n42016019009 +n42016019010 +n42016019011 +n42016019012 +n42016019013 +n42016019014 +n42016020002 +n42016020001 +n42016020003 +n42016020004 +n42016020005 +n42016020006 +n42016020007 +n42016020008 +n42016020009 +n42016020010 +n42016020011 +n42016021001 +n42016021002 +n42016021003 +n42016021004 +n42016021005 +n42016021006 +n42016021007 +n42016021008 +n42016021009 +n42016021010 +n42016021011 +n42016021012 +n42016021013 +n42016021014 +n42016021015 +n42016021016 +n42016021017 +n42016021018 +n42016021019 +n42016021020 +n42016022002 +n42016022001 +n42016022003 +n42016022004 +n42016022005 +n42016022006 +n42016022007 +n42016022008 +n42016022009 +n42016022010 +n42016022011 +n42016022012 +n42016022013 +n42016022014 +n42016022015 +n42016022017 +n42016022016 +n42016022018 +n42016022019 +n42016022020 +n42016022021 +n42016022022 +n42016023001 +n42016023002 +n42016023003 +n42016023004 +n42016023005 +n42016023006 +n42016023007 +n42016023008 +n42016023009 +n42016023010 +n42016023011 +n42016023012 +n42016023013 +n42016023014 +n42016023015 +n42016023016 +n42016023017 +n42016023018 +n42016023019 +n42016023020 +n42016023021 +n42016024001 +n42016024002 +n42016024003 +n42016024004 +n42016024005 +n42016024006 +n42016024007 +n42016024008 +n42016024009 +n42016024010 +n42016024011 +n42016024012 +n42016024013 +n42016024014 +n42016024015 +n42016024016 +n42016024017 +n42016024018 +n42016024019 +n42016024020 +n42016024021 +n42016024022 +n42016024023 +n42016024024 +n42016024025 +n42016024026 +n42016024027 +n42016024028 +n42016024029 +n42016024030 +n42016025002 +n42016025001 +n42016025003 +n42016025004 +n42016025005 +n42016025006 +n42016025007 +n42016025008 +n42016025009 +n42016025010 +n42016025011 +n42016025012 +n42016025013 +n42016025014 +n42016025015 +n42016025016 +n42016025017 +n42016025018 +n42016025019 +n42016025021 +n42016025020 +n42016025022 +n42016025023 +n42016025025 +n42016025024 +n42016025026 +n42016026001 +n42016026002 +n42016026003 +n42016026004 +n42016026005 +n42016026006 +n42016026007 +n42016026008 +n42016026009 +n42016026010 +n42016026011 +n42016026012 +n42016026013 +n42016026014 +n42016026015 +n42016026016 +n42016026017 +n42016026018 +n42016026019 +n42016026020 +n42016026021 +n42016026022 +n42016026023 +n42016026024 +n42016026025 +n42016027002 +n42016027001 +n42016027005 +n42016027003 +n42016027004 +n42016027006 +n42016027007 +n42016027008 +n42016027009 +n42016027010 +n42016027011 +n42016027012 +n42016027013 +n42016027014 +n42016027015 +n42016028002 +n42016028001 +n42016028003 +n42016028004 +n42016028005 +n42016028006 +n42016028007 +n42016028008 +n42016028009 +n42016028010 +n42016028011 +n42016028012 +n42016028013 +n42016028014 +n42016028015 +n42016028016 +n42016028017 +n42016028018 +n42016029002 +n42016029001 +n42016029003 +n42016029004 +n42016029005 +n42016029006 +n42016029007 +n42016029008 +n42016029009 +n42016029010 +n42016030002 +n42016030001 +n42016030003 +n42016030004 +n42016030005 +n42016030006 +n42016030007 +n42016030008 +n42016030009 +n42016030010 +n42016030011 +n42016030012 +n42016030013 +n42016030014 +n42016030015 +n42016031002 +n42016031001 +n42016031003 +n42016031004 +n42016031005 +n42016031006 +n42016031007 +n42016031008 +n42016031009 +n42016031010 +n42016031011 +n42016031012 +n42016031013 +n42016031014 +n42016031015 +n42016031016 +n42016031017 +n42017001002 +n42017001001 +n42017001003 +n42017001004 +n42017001005 +n42017001006 +n42017001007 +n42017001008 +n42017001009 +n42017001010 +n42017001011 +n42017001012 +n42017001013 +n42017001015 +n42017001014 +n42017001016 +n42017001017 +n42017001018 +n42017002001 +n42017002002 +n42017002003 +n42017002004 +n42017002005 +n42017002006 +n42017002007 +n42017002008 +n42017002009 +n42017002010 +n42017002011 +n42017002012 +n42017002013 +n42017002014 +n42017002015 +n42017002016 +n42017002017 +n42017002018 +n42017002019 +n42017002020 +n42017002021 +n42017002022 +n42017003001 +n42017003002 +n42017003003 +n42017003004 +n42017003005 +n42017003006 +n42017003007 +n42017003008 +n42017003009 +n42017003010 +n42017003011 +n42017003012 +n42017003013 +n42017003014 +n42017004001 +n42017004002 +n42017004003 +n42017004004 +n42017004005 +n42017004006 +n42017004007 +n42017004008 +n42017004009 +n42017004010 +n42017004011 +n42017004012 +n42017004013 +n42017004014 +n42017004015 +n42017004016 +n42017004017 +n42017005001 +n42017005002 +n42017005003 +n42017005004 +n42017005005 +n42017005006 +n42017005007 +n42017005008 +n42017005009 +n42017006002 +n42017006001 +n42017006003 +n42017006004 +n42017006005 +n42017006006 +n42017006007 +n42017006008 +n42017006009 +n42017006010 +n42017006012 +n42017006011 +n42017006013 +n42017006014 +n42017006015 +n42017006016 +n42017006017 +n42017006018 +n42017006019 +n42017006020 +n42017006021 +n42017006022 +n42017006024 +n42017006023 +n42017006025 +n42017007002 +n42017007001 +n42017007003 +n42017007004 +n42017007006 +n42017007005 +n42017007007 +n42017007008 +n42017007009 +n42017007010 +n42017007011 +n42017007012 +n42017007013 +n42017007014 +n42017007015 +n42017007016 +n42017007017 +n42017007018 +n42017007019 +n42017008001 +n42017008002 +n42017008003 +n42017008004 +n42017008005 +n42017008006 +n42017008007 +n42017008008 +n42017008009 +n42017008010 +n42017008011 +n42017008012 +n42017008013 +n42017008014 +n42017008015 +n42017008016 +n42017008017 +n42017008018 +n42017008019 +n42017008020 +n42017008021 +n42017008022 +n42017009001 +n42017009002 +n42017009003 +n42017009004 +n42017009005 +n42017009006 +n42017009007 +n42017009008 +n42017009009 +n42017010001 +n42017010002 +n42017010003 +n42017010004 +n42017010005 +n42017010006 +n42017010007 +n42017010008 +n42017010009 +n42017010010 +n42017010011 +n42017010012 +n42017010013 +n42017010014 +n42017010015 +n42017010017 +n42017010016 +n42017010018 +n42017011001 +n42017011002 +n42017011003 +n42017011004 +n42017011005 +n42017011006 +n42017011007 +n42017011008 +n42017011009 +n42017011010 +n42017011011 +n42017011012 +n42017011013 +n42017011014 +n42017011015 +n42017012001 +n42017012002 +n42017012003 +n42017012004 +n42017012005 +n42017012006 +n42017012007 +n42017012008 +n42017012009 +n42017012010 +n42017012011 +n42017012012 +n42017012013 +n42017013001 +n42017013002 +n42017013003 +n42017013004 +n42017013005 +n42017013006 +n42017013007 +n42017013008 +n42017013009 +n42017014001 +n42017014002 +n42017014003 +n42017014004 +n42017014005 +n42017014006 +n42017014007 +n42017014008 +n42017014009 +n42017014010 +n42017014011 +n42017014012 +n42017014013 +n42017014014 +n42017014015 +n42017014016 +n42017015002 +n42017015001 +n42017015003 +n42017015004 +n42017015005 +n42017015006 +n42017015007 +n42017015008 +n42017015009 +n42017015010 +n42017015011 +n42017015012 +n42017015013 +n42017015014 +n42017016001 +n42017016002 +n42017016003 +n42017016004 +n42017016005 +n42017016006 +n42017016007 +n42017016008 +n42017016009 +n42017016010 +n42017016011 +n42017016012 +n42017016013 +n42017016014 +n42017017002 +n42017017001 +n42017017003 +n42017017004 +n42017017005 +n42017017006 +n42017017007 +n42017017008 +n42017017009 +n42017017011 +n42017017010 +n42017017012 +n42017017013 +n42017018001 +n42017018002 +n42017018003 +n42017018004 +n42017018005 +n42017018006 +n42017018007 +n42017018008 +n42017018009 +n42017018010 +n42017018011 +n42017018012 +n42017019001 +n42017019002 +n42017019003 +n42017019004 +n42017019005 +n42017019006 +n42017019007 +n42017019008 +n42017019009 +n42017019010 +n42017020002 +n42017020001 +n42017020003 +n42017020004 +n42017020005 +n42017020006 +n42017020007 +n42017020008 +n42017020009 +n42017020010 +n42017020011 +n42017020012 +n42017020013 +n42017020014 +n42017020015 +n42017020016 +n42017020017 +n42017020018 +n42017020019 +n42017020020 +n42017020021 +n42017020022 +n42017020023 +n42017021001 +n42017021002 +n42017021003 +n42017021004 +n42017021005 +n42017021006 +n42017021008 +n42017021007 +n42017021009 +n42017021010 +n42017021011 +n42017021012 +n42017021013 +n42017021014 +n42017021015 +n42017022002 +n42017022001 +n42017022003 +n42017022004 +n42017022005 +n42017022006 +n42017022007 +n42017022008 +n42017022009 +n42017022010 +n42017022011 +n42017022012 +n42017022013 +n42017022014 +n42017022015 +n42017022016 +n42017022017 +n42017022018 +n42017022019 +n42017022020 +n42017023001 +n42017023002 +n42017023003 +n42017023004 +n42017023005 +n42017023006 +n42017023007 +n42017023008 +n42017023009 +n42017023010 +n42017023011 +n42017024002 +n42017024001 +n42017024003 +n42017024004 +n42017024005 +n42017024006 +n42017024007 +n42017024008 +n42017024009 +n42017024010 +n42017024011 +n42017024012 +n42017024013 +n42017024014 +n42017024015 +n42017024016 +n42017024017 +n42017024018 +n42017024019 +n42017024020 +n42017024021 +n42017024022 +n42017024023 +n42017024024 +n42017024025 +n42017025002 +n42017025003 +n42017025001 +n42017025004 +n42017025005 +n42017025006 +n42017025007 +n42017025008 +n42017025009 +n42017025010 +n42017025011 +n42017025012 +n42017026001 +n42017026002 +n42017026003 +n42017026004 +n42017026005 +n42017026006 +n42017026007 +n42017026008 +n42017026009 +n42017026010 +n42017026011 +n42017026012 +n42017026013 +n42017026014 +n42017026015 +n42017026016 +n42017026017 +n42017027001 +n42017027002 +n42017027003 +n42017027004 +n42017027005 +n42017027006 +n42017027007 +n42017027008 +n42017027009 +n42017027010 +n42017027011 +n42017027012 +n42017027013 +n42017027014 +n42017027015 +n42017027016 +n42017027017 +n42017027018 +n42017027019 +n42017028002 +n42017028001 +n42017028003 +n42017028004 +n42017028005 +n42017028006 +n42017028007 +n42017028008 +n42017028009 +n42017028010 +n42017028011 +n42017028012 +n42017028013 +n42017029002 +n42017029001 +n42017029003 +n42017029004 +n42017029005 +n42017029006 +n42017029007 +n42017029008 +n42017029009 +n42017029010 +n42017029011 +n42017029012 +n42017029013 +n42017029014 +n42017029015 +n42017029016 +n42017030001 +n42017030002 +n42017030003 +n42017030004 +n42017030005 +n42017030006 +n42017030007 +n42017030008 +n42017030009 +n42017030010 +n42017030011 +n42017031001 +n42017031002 +n42017031003 +n42017031004 +n42017031005 +n42017031006 +n42017031007 +n42017031008 +n42017031009 +n42017031010 +n42017031011 +n42017031012 +n42017031013 +n42017031014 +n42017031015 +n42017031016 +n42017031017 +n42017031018 +n42017031019 +n42017031020 +n42017031021 +n42017031022 +n42017031023 +n42017031024 +n42017031025 +n42017031026 +n42017031027 +n42017031028 +n42017031029 +n42017031030 +n42017032001 +n42017032002 +n42017032003 +n42017032004 +n42017033002 +n42017033001 +n42017033003 +n42017033004 +n42017033005 +n42017033006 +n42017033007 +n42017033008 +n42017033009 +n42017033010 +n42017033012 +n42017033011 +n42017033013 +n42017033014 +n42017033015 +n42017034001 +n42017034002 +n42017034003 +n42017034004 +n42017034005 +n42017034006 +n42017034007 +n42017034008 +n42017034009 +n42017034010 +n42017034011 +n42017034012 +n42017034013 +n42017034014 +n42017034015 +n42017034016 +n42017034017 +n42017035001 +n42017035003 +n42017035002 +n42017035004 +n42017035005 +n42017035006 +n42017035007 +n42017035008 +n42017035009 +n42017035011 +n42017035010 +n42017035012 +n42017035013 +n42017037001 +n42017037002 +n42017037003 +n42017037004 +n42017037005 +n42017037006 +n42017037008 +n42017037007 +n42017037009 +n42017037010 +n42017037011 +n42017037012 +n42017037013 +n42017037014 +n42017037015 +n42017037016 +n42017037017 +n42017037018 +n42018001002 +n42018001001 +n42018001003 +n42018001004 +n42018001005 +n42018001006 +n42018001007 +n42018001008 +n42018001009 +n42018001010 +n42018001011 +n42018001012 +n42018001013 +n42018002001 +n42018002002 +n42018002003 +n42018002004 +n42018002005 +n42018002006 +n42018002007 +n42018002008 +n42018002009 +n42018002010 +n42018002011 +n42018002012 +n42018002013 +n42018002014 +n42018002015 +n42018003002 +n42018003001 +n42018003003 +n42018003004 +n42018003005 +n42018003006 +n42018003007 +n42018003008 +n42018003009 +n42018003010 +n42018003011 +n42018003012 +n42018003013 +n42018003014 +n42018003015 +n42018003016 +n42018003017 +n42018003018 +n42018004001 +n42018004002 +n42018004003 +n42018004004 +n42018004005 +n42018004008 +n42018004006 +n42018004007 +n42018004009 +n42018004010 +n42018004011 +n42018004012 +n42018004013 +n42018004014 +n42018004015 +n42018004016 +n42018004017 +n42018004018 +n42018004019 +n42018004020 +n42018005002 +n42018005001 +n42018005003 +n42018005004 +n42018005005 +n42018005006 +n42018005007 +n42018005008 +n42018005009 +n42018005010 +n42018005011 +n42018005012 +n42018005013 +n42018005014 +n42018005015 +n42018005016 +n42018005017 +n42018005018 +n42018006002 +n42018006001 +n42018006003 +n42018006004 +n42018006005 +n42018006006 +n42018006007 +n42018006008 +n42018006009 +n42018006010 +n42018006011 +n42018007002 +n42018007004 +n42018007005 +n42018007001 +n42018007003 +n42018007006 +n42018007007 +n42018007008 +n42018007009 +n42018007010 +n42018007011 +n42018007012 +n42018007013 +n42018007014 +n42018007015 +n42018007016 +n42018007017 +n42018007018 +n42018007019 +n42018007020 +n42018007021 +n42018008001 +n42018008002 +n42018008003 +n42018008004 +n42018008005 +n42018008006 +n42018008007 +n42018008008 +n42018008009 +n42018008010 +n42018008011 +n42018008012 +n42018008013 +n42018008014 +n42018008015 +n42018008016 +n42018008017 +n42018008018 +n42018008019 +n42018008020 +n42018008021 +n42018008022 +n42018009002 +n42018009001 +n42018009003 +n42018009004 +n42018009005 +n42018009006 +n42018009007 +n42018009008 +n42018009009 +n42018009010 +n42018009011 +n42018009012 +n42018009013 +n42018009014 +n42018009015 +n42018009016 +n42018009017 +n42018009018 +n42018009019 +n42018010001 +n42018010002 +n42018010003 +n42018010004 +n42018010005 +n42018010006 +n42018010007 +n42018010008 +n42018010009 +n42018010010 +n42018010011 +n42018010012 +n42018010013 +n42018010014 +n42018011001 +n42018011002 +n42018011003 +n42018011004 +n42018011005 +n42018011006 +n42018011007 +n42018011008 +n42018011009 +n42018011010 +n42018011011 +n42018011012 +n42018011013 +n42018011014 +n42018011015 +n42018011016 +n42018011017 +n42018011018 +n42018011019 +n42018011020 +n42018011021 +n42018011022 +n42018011023 +n42018011025 +n42018011024 +n42018011026 +n42018011027 +n42018011028 +n42018012001 +n42018012002 +n42018012003 +n42018012004 +n42018012005 +n42018012006 +n42018012007 +n42018012008 +n42018013002 +n42018013001 +n42018013003 +n42018013004 +n42018013005 +n42018013006 +n42018013007 +n42018013008 +n42018013009 +n42018013010 +n42018013011 +n42018013012 +n42018013013 +n42018013014 +n42018013015 +n42018013016 +n42018013017 +n42018013018 +n42018013019 +n42018013020 +n42018013021 +n42018013022 +n42018013023 +n42018013024 +n42018013025 +n42018013026 +n42018014001 +n42018014002 +n42018014003 +n42018014004 +n42018014005 +n42018014006 +n42018014007 +n42018014008 +n42018014009 +n42018014010 +n42018014011 +n42018014012 +n42018014013 +n42018014014 +n42018014015 +n42018014016 +n42018014017 +n42018014019 +n42018014018 +n42018014020 +n42018014021 +n42018014022 +n42018015002 +n42018015001 +n42018015003 +n42018015004 +n42018015005 +n42018015006 +n42018015007 +n42018015008 +n42018015009 +n42018015011 +n42018015010 +n42018015012 +n42018015013 +n42018015014 +n42018015015 +n42018016002 +n42018016001 +n42018016003 +n42018016004 +n42018016005 +n42018016006 +n42018016007 +n42018016008 +n42018016009 +n42018016010 +n42018016011 +n42018016012 +n42018016013 +n42018016014 +n42018016015 +n42018016016 +n42018016018 +n42018016017 +n42018016019 +n42018016020 +n42018016021 +n42018016022 +n42018016023 +n42018016024 +n42018017001 +n42018017002 +n42018017003 +n42018017005 +n42018017004 +n42018017006 +n42018017007 +n42018017008 +n42018017009 +n42018017010 +n42018017011 +n42018017012 +n42018017013 +n42018017014 +n42018017015 +n42018017016 +n42018017017 +n42018017018 +n42018018001 +n42018018002 +n42018018003 +n42018018005 +n42018018004 +n42018018006 +n42018018007 +n42018018008 +n42018018009 +n42018018010 +n42018018011 +n42018018012 +n42018018013 +n42018019002 +n42018019001 +n42018019003 +n42018019004 +n42018019005 +n42018019006 +n42018019007 +n42018019008 +n42018019009 +n42018019010 +n42018019011 +n42018019012 +n42018019013 +n42018019014 +n42018019015 +n42018019016 +n42018020001 +n42018020002 +n42018020003 +n42018020004 +n42018020005 +n42018020006 +n42018020007 +n42018020008 +n42018020009 +n42018020010 +n42018020011 +n42018020012 +n42018020013 +n42018020014 +n42018020015 +n42018020016 +n42018020017 +n42018020018 +n42018021002 +n42018021001 +n42018021003 +n42018021004 +n42018021005 +n42018021006 +n42018021007 +n42018021008 +n42018022002 +n42018022001 +n42018022003 +n42018022004 +n42018022005 +n42018022006 +n42018022007 +n42018022008 +n42018022009 +n42018022010 +n42018022011 +n42018022012 +n42018022013 +n42018022014 +n42018022015 +n42018022016 +n42018022017 +n42018022018 +n42018022019 +n42018022020 +n42018022021 +n42018022022 +n42018022023 +n42018022024 +n42018022025 +n42018022026 +n42018022027 +n42018023002 +n42018023001 +n42018023003 +n42018023004 +n42018023005 +n42018023006 +n42018023008 +n42018023007 +n42018023009 +n42018023010 +n42018024002 +n42018024001 +n42018024003 +n42018024004 +n42018024005 +n42018024006 +n42018024007 +n42018024008 +n42018024009 +n42018024010 +n42018024011 +n42018024012 +n42018024013 +n42018024014 +n42018024015 +n42018024016 +n42018024017 +n42018024018 +n42018025002 +n42018025001 +n42018025003 +n42018025004 +n42018025005 +n42018025006 +n42018025007 +n42018025008 +n42018025009 +n42018025010 +n42018025011 +n42018025012 +n42018025013 +n42018025014 +n42018025015 +n42018025016 +n42018026002 +n42018026001 +n42018026003 +n42018026004 +n42018026005 +n42018026006 +n42018026007 +n42018026008 +n42018027002 +n42018027001 +n42018027003 +n42018027004 +n42018027005 +n42018027006 +n42018027007 +n42018027008 +n42018027009 +n42018027010 +n42018027011 +n42018027012 +n42018028002 +n42018028001 +n42018028003 +n42018028004 +n42018028005 +n42018028006 +n42018028007 +n42018028008 +n42018028009 +n42018028010 +n42018028011 +n42018029002 +n42018029001 +n42018029003 +n42018029004 +n42018029005 +n42018029006 +n42018029007 +n42018029008 +n42018029009 +n42018029010 +n42018029011 +n42018029012 +n42018029013 +n42018029014 +n42018029015 +n42018029016 +n42018029017 +n42018029018 +n42018029019 +n42018029020 +n42018029021 +n42018029022 +n42018029023 +n42018029024 +n42018029025 +n42018029026 +n42018030001 +n42018030002 +n42018030003 +n42018030004 +n42018030005 +n42018030006 +n42018030007 +n42018030008 +n42018030009 +n42018030010 +n42018030011 +n42018030012 +n42018030013 +n42018030014 +n42018030015 +n42018030016 +n42018030017 +n42018031002 +n42018031001 +n42018031003 +n42018031004 +n42018031005 +n42018031006 +n42018031007 +n42018031008 +n42018031009 +n42018031010 +n42018031011 +n42018031012 +n42018031013 +n42018031014 +n42018031015 +n42018031016 +n42018031017 +n42018031018 +n42018031019 +n42018031020 +n42018031021 +n42018031022 +n42018031023 +n42018032002 +n42018032001 +n42018032003 +n42018032004 +n42018032005 +n42018032006 +n42018032007 +n42018032008 +n42018032009 +n42018032010 +n42018033001 +n42018033002 +n42018033003 +n42018033004 +n42018033005 +n42018033006 +n42018033007 +n42018033008 +n42018033009 +n42018033010 +n42018034001 +n42018034002 +n42018034003 +n42018034004 +n42018034005 +n42018034006 +n42018034007 +n42018034008 +n42018034009 +n42018034010 +n42018034011 +n42018034012 +n42018034013 +n42018034014 +n42018034015 +n42018034016 +n42018034017 +n42018034018 +n42018035002 +n42018035001 +n42018035003 +n42018035004 +n42018035005 +n42018035006 +n42018035007 +n42018035008 +n42018035009 +n42018035010 +n42018035011 +n42018035012 +n42018035013 +n42018035014 +n42018035015 +n42018036002 +n42018036001 +n42018036003 +n42018036004 +n42018036005 +n42018036006 +n42018036007 +n42018036008 +n42018037002 +n42018037001 +n42018037003 +n42018037004 +n42018037005 +n42018037006 +n42018037007 +n42018037008 +n42018038001 +n42018038002 +n42018038003 +n42018038004 +n42018038005 +n42018038006 +n42018038007 +n42018038008 +n42018039001 +n42018039002 +n42018039003 +n42018039004 +n42018039005 +n42018039006 +n42018039007 +n42018039009 +n42018039008 +n42018039010 +n42018039011 +n42018039012 +n42018039013 +n42018039014 +n42018039015 +n42018039016 +n42018040002 +n42018040001 +n42018040003 +n42018040004 +n42018040005 +n42018040006 +n42018040007 +n42018040008 +n42018040009 +n42018040011 +n42018040010 +n42018040012 +n42018040013 +n42018040014 +n42018041001 +n42018041002 +n42018041004 +n42018041003 +n42018041006 +n42018041005 +n42018041007 +n42018041008 +n42018041009 +n42018041010 +n42018042001 +n42018042002 +n42018042003 +n42018042004 +n42018042005 +n42018042006 +n42018042007 +n42018042008 +n42018042009 +n42018042010 +n42018042011 +n42018043001 +n42018043002 +n42018043003 +n42018043004 +n42018043005 +n42018043006 +n42018043007 +n42018043008 +n42018043009 +n42018043010 +n42018043011 +n42018043012 +n42018043013 +n42018043014 +n42018043015 +n42018043016 +n42018043017 +n42018043018 +n42019001001 +n42019001002 +n42019001003 +n42019001004 +n42019001005 +n42019002001 +n42019002002 +n42019002003 +n42019002004 +n42019002005 +n42019002006 +n42019002007 +n42019002008 +n42019002009 +n42019002010 +n42019002011 +n42019002012 +n42019002013 +n42019003001 +n42019003002 +n42019003003 +n42019003004 +n42019003005 +n42019003006 +n42019003007 +n42019003008 +n42019003009 +n42019003010 +n42019003011 +n42019003012 +n42019003013 +n42019003014 +n42019003015 +n42019003016 +n42019003017 +n42019003018 +n42019004001 +n42019004002 +n42019004003 +n42019004004 +n42019004005 +n42019004006 +n42019004007 +n42019004008 +n42019004009 +n42019004010 +n42019004011 +n42019004012 +n42019004013 +n42019004015 +n42019004014 +n42019005001 +n42019005002 +n42019005003 +n42019005004 +n42019005005 +n42019005006 +n42019005007 +n42019005008 +n42019005009 +n42019005010 +n42019005011 +n42019005012 +n42019005013 +n42019005014 +n42019005015 +n42019005017 +n42019005016 +n42019005018 +n42019005019 +n42019005020 +n42019005021 +n42019005023 +n42019005024 +n42019005022 +n42019006001 +n42019006002 +n42019006003 +n42019006004 +n42019006005 +n42019006006 +n42019006007 +n42019007001 +n42019007002 +n42019007003 +n42019007004 +n42019007005 +n42019007006 +n42019007007 +n42019007008 +n42019007009 +n42019007010 +n42019007011 +n42019008002 +n42019008001 +n42019008003 +n42019008004 +n42019008005 +n42019008006 +n42019008007 +n42019008014 +n42019008008 +n42019008009 +n42019008010 +n42019008011 +n42019008012 +n42019008013 +n42019008015 +n42019008016 +n42019008017 +n42019008018 +n42019008019 +n42019008020 +n42019008021 +n42019008022 +n42019008023 +n42019008024 +n42019009002 +n42019009001 +n42019009003 +n42019009004 +n42019009005 +n42019009006 +n42019009007 +n42019009008 +n42019009009 +n42019009010 +n42019009011 +n42019009012 +n42019009013 +n42019009014 +n42019009015 +n42019009016 +n42019009017 +n42019009018 +n42019009019 +n42019010002 +n42019010001 +n42019010003 +n42019010004 +n42019010005 +n42019010006 +n42019010007 +n42019010008 +n42019010009 +n42019010010 +n42019010011 +n42019011002 +n42019011001 +n42019011003 +n42019011004 +n42019011005 +n42019011006 +n42019011007 +n42019011008 +n42019011009 +n42019011011 +n42019011010 +n42019011012 +n42019011013 +n42019011014 +n42019011015 +n42019011016 +n42019011017 +n42019011018 +n42019011019 +n42019011020 +n42019011021 +n42019011022 +n42019011023 +n42019011024 +n42019012002 +n42019012001 +n42019012003 +n42019012004 +n42019012005 +n42019012006 +n42019012007 +n42019012008 +n42019012009 +n42019012010 +n42019012011 +n42019012012 +n42019012013 +n42019012014 +n42019013002 +n42019013001 +n42019013003 +n42019013004 +n42019013005 +n42019013006 +n42019013007 +n42019013008 +n42019013009 +n42019013010 +n42019013011 +n42019013012 +n42019013013 +n42019013014 +n42019013015 +n42019013016 +n42019013017 +n42019014002 +n42019014001 +n42019014003 +n42019014004 +n42019014005 +n42019014006 +n42019014007 +n42019014008 +n42019014009 +n42019014010 +n42019014011 +n42019014012 +n42019014013 +n42019014014 +n42019014015 +n42019014016 +n42019014017 +n42019014018 +n42019015001 +n42019015002 +n42019015003 +n42019015004 +n42019015005 +n42019015006 +n42019015007 +n42019015008 +n42019015009 +n42019015010 +n42019015011 +n42019015012 +n42019015013 +n42019015014 +n42019015015 +n42019015016 +n42019015017 +n42019015018 +n42019015019 +n42019015020 +n42019015021 +n42019015022 +n42019015023 +n42019015024 +n42019015025 +n42019016002 +n42019016001 +n42019016003 +n42019016004 +n42019016005 +n42019016006 +n42019016007 +n42019016008 +n42019016009 +n42019016010 +n42019016012 +n42019016011 +n42019017001 +n42019017002 +n42019017003 +n42019017004 +n42019017005 +n42019017006 +n42019017007 +n42019017008 +n42019017009 +n42019017010 +n42019017011 +n42019017012 +n42019017013 +n42019017014 +n42019017015 +n42019017016 +n42019017017 +n42019018001 +n42019018002 +n42019018003 +n42019018004 +n42019018005 +n42019018009 +n42019018006 +n42019018007 +n42019018008 +n42019018010 +n42019018011 +n42019018012 +n42019019002 +n42019019001 +n42019019003 +n42019019004 +n42019019005 +n42019019006 +n42019019007 +n42019019009 +n42019019010 +n42019019008 +n42019020001 +n42019020002 +n42019020003 +n42019020004 +n42019020005 +n42019020006 +n42019020007 +n42019020008 +n42019020009 +n42019020010 +n42019020011 +n42019020012 +n42019020013 +n42019020014 +n42019020015 +n42019021002 +n42019021001 +n42019021003 +n42019021004 +n42019021005 +n42019021006 +n42019021007 +n42019021008 +n42019021009 +n42019021010 +n42019021011 +n42019021012 +n42019021013 +n42019021014 +n42019021015 +n42019021016 +n42019022001 +n42019022002 +n42019022003 +n42019022004 +n42019022005 +n42019022006 +n42019022007 +n42019022008 +n42019022009 +n42019022010 +n42019022011 +n42019022012 +n42019022013 +n42019022016 +n42019022014 +n42019022015 +n42019022017 +n42019022018 +n42019022019 +n42019022020 +n42019022021 +n42019022022 +n42019022023 +n42019022024 +n42019022025 +n42019023001 +n42019023002 +n42019023003 +n42019023004 +n42019023005 +n42019023006 +n42019023007 +n42019023008 +n42019023009 +n42019023010 +n42019023015 +n42019023011 +n42019023012 +n42019023013 +n42019023014 +n42019023016 +n42019023017 +n42019024001 +n42019024002 +n42019024003 +n42019024004 +n42019024005 +n42019024006 +n42019024007 +n42019024008 +n42019024009 +n42019024010 +n42019024011 +n42019024012 +n42019024013 +n42019024014 +n42019024015 +n42019024016 +n42019025001 +n42019025002 +n42019025003 +n42019025004 +n42019025005 +n42019025006 +n42019025007 +n42019026001 +n42019026002 +n42019026003 +n42019026004 +n42019026005 +n42019026006 +n42019026007 +n42019026009 +n42019026008 +n42019026010 +n42019026011 +n42019026012 +n42019026013 +n42019026014 +n42019026015 +n42019026016 +n42019027001 +n42019027002 +n42019027003 +n42019027004 +n42019027005 +n42019027006 +n42019027007 +n42019027008 +n42019027009 +n42019027010 +n42019027011 +n42019027012 +n42019027013 +n42019027014 +n42019027015 +n42019027016 +n42019027017 +n42019027018 +n42019027019 +n42019028001 +n42019028002 +n42019028003 +n42019028004 +n42019028005 +n42019028006 +n42019028007 +n42019028008 +n42019029001 +n42019029002 +n42019029003 +n42019029004 +n42019029005 +n42019029006 +n42019029007 +n42019029008 +n42019029009 +n42019029010 +n42019029011 +n42019029012 +n42019029013 +n42019029014 +n42019029015 +n42019029016 +n42019029017 +n42019029018 +n42019030001 +n42019030002 +n42019030003 +n42019030004 +n42019030005 +n42019030006 +n42019030007 +n42019030008 +n42019030009 +n42019030010 +n42019030012 +n42019030011 +n42019030013 +n42019030014 +n42019030015 +n42019030017 +n42019030016 +n42019030018 +n42019030019 +n42019030020 +n42019030021 +n42019030022 +n42019031001 +n42019031002 +n42019031003 +n42019031004 +n42019031005 +n42019031006 +n42019031007 +n42019031008 +n42019031009 +n42019031010 +n42019031011 +n42019031012 +n42019031013 +n42019031014 +n42019031015 +n42019031016 +n42019032002 +n42019032001 +n42019032003 +n42019032004 +n42019032005 +n42019032006 +n42019032007 +n42019032008 +n42019033002 +n42019033001 +n42019033003 +n42019033004 +n42019033005 +n42019033006 +n42019033007 +n42019033008 +n42019033009 +n42019033010 +n42019033011 +n42019033012 +n42019033013 +n42019033014 +n42019033015 +n42019034002 +n42019034001 +n42019034003 +n42019034004 +n42019034005 +n42019034006 +n42019034007 +n42019034008 +n42019034009 +n42019035001 +n42019035002 +n42019035003 +n42019035004 +n42019035005 +n42019035006 +n42019035007 +n42019035008 +n42019035009 +n42019035010 +n42019035011 +n42019035012 +n42019035013 +n42019035014 +n42019035015 +n42019035016 +n42019035017 +n42019036002 +n42019036001 +n42019036003 +n42019036004 +n42019036005 +n42019036006 +n42019036007 +n42019036008 +n42019036009 +n42019036010 +n42019037002 +n42019037001 +n42019037003 +n42019037004 +n42019037005 +n42019037006 +n42019037007 +n42019037008 +n42019037009 +n42019037010 +n42019037011 +n42019037012 +n42019037013 +n42019037014 +n42019037015 +n42019037016 +n42019037017 +n42019037018 +n42019037019 +n42019037020 +n42019037021 +n42019037022 +n42019037023 +n42019037024 +n42019037025 +n42019037026 +n42019037027 +n42019037028 +n42019038001 +n42019038002 +n42019038003 +n42019038004 +n42019038007 +n42019038008 +n42019038009 +n42019038005 +n42019038006 +n42019038010 +n42019038011 +n42019038012 +n42019038013 +n42019038014 +n42019038015 +n42019038016 +n42019039001 +n42019039002 +n42019039003 +n42019039004 +n42019039005 +n42019039006 +n42019039007 +n42019039008 +n42019039009 +n42019039010 +n42019039011 +n42019039012 +n42019039013 +n42019039014 +n42019039015 +n42019040001 +n42019040002 +n42019040003 +n42019040004 +n42019040005 +n42019040006 +n42019040007 +n42019040008 +n42019040009 +n42019040010 +n42019040011 +n42019041001 +n42019041002 +n42019041003 +n42019041004 +n42019041005 +n42019041006 +n42019041007 +n42019041008 +n42019041009 +n42019042001 +n42019042002 +n42019042003 +n42019042004 +n42019042005 +n42019042006 +n42019042007 +n42019042008 +n42019042009 +n42019042010 +n42019042011 +n42019042012 +n42019042013 +n42019042015 +n42019042014 +n42019042016 +n42019042017 +n42019042018 +n42019042019 +n42019043001 +n42019043002 +n42019043003 +n42019043004 +n42019043005 +n42019043006 +n42019043007 +n42019043008 +n42019043009 +n42019043010 +n42019043011 +n42019043012 +n42019043013 +n42019043014 +n42019043015 +n42019043016 +n42019043017 +n42019043018 +n42019043019 +n42019044001 +n42019044002 +n42019044003 +n42019044004 +n42019044005 +n42019044006 +n42019044007 +n42019044008 +n42019044009 +n42019044010 +n42019044011 +n42019044012 +n42019044013 +n42019044014 +n42019044015 +n42019044016 +n42019044017 +n42019044018 +n42019044019 +n42019044020 +n42019044021 +n42019044022 +n42019044023 +n42019044024 +n42019044025 +n42019044026 +n42019045001 +n42019045002 +n42019045003 +n42019045004 +n42019045005 +n42019045006 +n42019045007 +n42019045008 +n42019045009 +n42019046001 +n42019046002 +n42019046003 +n42019046004 +n42019046005 +n42019046006 +n42019046007 +n42019046008 +n42019046009 +n42019046010 +n42019046012 +n42019046011 +n42019046013 +n42019046014 +n42019046015 +n42019046016 +n42019047001 +n42019047002 +n42019047003 +n42019047004 +n42019047005 +n42019047006 +n42019047007 +n42019047008 +n42019047009 +n42019047011 +n42019047010 +n42019047012 +n42019047013 +n42019047014 +n42019047015 +n42019047016 +n42019047017 +n42019047018 +n42019047019 +n42019047020 +n42019047021 +n42019047022 +n42019047023 +n42019048001 +n42019048002 +n42019048003 +n42019048004 +n42019048005 +n42019048006 +n42019048009 +n42019048007 +n42019048008 +n42019048010 +n42019048011 +n42019048012 +n42019048013 +n42020001001 +n42020001002 +n42020001003 +n42020001004 +n42020001005 +n42020001006 +n42020001007 +n42020001008 +n42020001009 +n42020001010 +n42020001011 +n42020001012 +n42020001013 +n42020001014 +n42020001015 +n42020001016 +n42020001017 +n42020001018 +n42020001019 +n42020001020 +n42020001021 +n42020001022 +n42020001023 +n42020001024 +n42020002001 +n42020002002 +n42020002003 +n42020002004 +n42020002005 +n42020002006 +n42020002007 +n42020002008 +n42020002009 +n42020002010 +n42020002011 +n42020002012 +n42020002013 +n42020002014 +n42020002015 +n42020002016 +n42020002017 +n42020002018 +n42020002019 +n42020002020 +n42020002021 +n42020003002 +n42020003001 +n42020003003 +n42020003004 +n42020003005 +n42020003006 +n42020003007 +n42020003008 +n42020003009 +n42020003010 +n42020003011 +n42020003012 +n42020004001 +n42020004002 +n42020004003 +n42020004004 +n42020004005 +n42020004006 +n42020004007 +n42020004008 +n42020004009 +n42020005002 +n42020005001 +n42020005003 +n42020005004 +n42020005005 +n42020005006 +n42020005007 +n42020005008 +n42020005009 +n42020005010 +n42020005011 +n42020005012 +n42020005013 +n42020005014 +n42020005015 +n42020005016 +n42020005017 +n42020006002 +n42020006001 +n42020006003 +n42020006004 +n42020006005 +n42020006006 +n42020006007 +n42020006008 +n42020006009 +n42020006010 +n42020006012 +n42020006011 +n42020006013 +n42020006014 +n42020006015 +n42020006016 +n42020007001 +n42020007002 +n42020007003 +n42020007004 +n42020007005 +n42020008001 +n42020008002 +n42020008003 +n42020008004 +n42020008005 +n42020008006 +n42020008007 +n42020008008 +n42020008009 +n42020008010 +n42020008011 +n42020008012 +n42020008013 +n42020008014 +n42020009002 +n42020009001 +n42020009003 +n42020009004 +n42020009005 +n42020009006 +n42020009007 +n42020009008 +n42020009009 +n42020009010 +n42020009011 +n42020009012 +n42020009013 +n42020009014 +n42020009015 +n42020009016 +n42020009017 +n42020009018 +n42020009019 +n42020009020 +n42020010001 +n42020010002 +n42020010003 +n42020010004 +n42020010005 +n42020010006 +n42020010007 +n42020010008 +n42020010009 +n42020010010 +n42020010011 +n42020010012 +n42020010013 +n42020010014 +n42020010015 +n42020010017 +n42020010016 +n42020010018 +n42020010019 +n42020010020 +n42020010021 +n42020010022 +n42020011001 +n42020011002 +n42020011003 +n42020011005 +n42020011004 +n42020011007 +n42020011006 +n42020011008 +n42020011009 +n42020011010 +n42020011011 +n42020011012 +n42020011013 +n42020012001 +n42020012002 +n42020012003 +n42020012004 +n42020012006 +n42020012005 +n42020012007 +n42020012008 +n42020012009 +n42020012010 +n42020013002 +n42020013001 +n42020013003 +n42020013004 +n42020013005 +n42020013006 +n42020013007 +n42020013008 +n42020013009 +n42020013010 +n42020013011 +n42020013012 +n42020013013 +n42020013014 +n42020013015 +n42020013016 +n42020013017 +n42020014002 +n42020014001 +n42020014003 +n42020014004 +n42020014005 +n42020014006 +n42020014007 +n42020014008 +n42020014009 +n42020014010 +n42020014011 +n42020014012 +n42020014013 +n42020014014 +n42020014015 +n42020014016 +n42020014017 +n42020014018 +n42020014019 +n42020014020 +n42020015001 +n42020015002 +n42020015003 +n42020015004 +n42020015005 +n42020015006 +n42020015007 +n42020015009 +n42020015008 +n42020015010 +n42020015011 +n42020015012 +n42020015013 +n42020015014 +n42020015015 +n42020016001 +n42020016002 +n42020016003 +n42020016004 +n42020016005 +n42020016006 +n42020016007 +n42020016008 +n42020016009 +n42020016010 +n42020016011 +n42020016013 +n42020016012 +n42020016014 +n42020016015 +n42020016016 +n42020017002 +n42020017001 +n42020017003 +n42020017004 +n42020017005 +n42020017007 +n42020017006 +n42020017008 +n42020017009 +n42020017010 +n42020017011 +n42020017012 +n42020017013 +n42020017014 +n42020017015 +n42020017016 +n42020017017 +n42020017018 +n42020017019 +n42020017020 +n42020017021 +n42020018001 +n42020018002 +n42020018003 +n42020018004 +n42020018005 +n42020018006 +n42020018007 +n42020018008 +n42020018011 +n42020018012 +n42020018009 +n42020018010 +n42020018013 +n42020018014 +n42020018015 +n42020019001 +n42020019002 +n42020019003 +n42020019004 +n42020019005 +n42020019006 +n42020019007 +n42020019008 +n42020019009 +n42020019010 +n42020019011 +n42020019012 +n42020019013 +n42020019014 +n42020019015 +n42020019016 +n42020019017 +n42020019018 +n42020019019 +n42020019020 +n42020019022 +n42020019021 +n42020019023 +n42020019024 +n42020019025 +n42020019026 +n42020019027 +n42020019028 +n42020019029 +n42020020001 +n42020020002 +n42020020003 +n42020020004 +n42020020005 +n42020020006 +n42020020007 +n42020020008 +n42020020009 +n42020020010 +n42020020011 +n42020020012 +n42020020013 +n42020020014 +n42020020015 +n42020020016 +n42020020017 +n42020020018 +n42020020019 +n42020020020 +n42020020021 +n42020020022 +n42020021001 +n42020021002 +n42020021003 +n42020021004 +n42020021005 +n42020021006 +n42020021007 +n42020021008 +n42020021009 +n42020021010 +n42020021011 +n42020021012 +n42020021013 +n42020021014 +n42020021015 +n42020021016 +n42020021017 +n42020021018 +n42020021019 +n42020021020 +n42020021021 +n42020021022 +n42020021023 +n42020022001 +n42020022002 +n42020022003 +n42020022004 +n42020022005 +n42020022006 +n42020022007 +n42020023002 +n42020023001 +n42020023003 +n42020023004 +n42020023005 +n42020023006 +n42020023007 +n42020023008 +n42020024001 +n42020024002 +n42020024003 +n42020024005 +n42020024004 +n42020024006 +n42020024007 +n42020024008 +n42020024010 +n42020024009 +n42020024011 +n42020024012 +n42020025002 +n42020025001 +n42020025003 +n42020025004 +n42020025005 +n42020025006 +n42020025007 +n42020025008 +n42020025009 +n42020025010 +n42020025011 +n42020025012 +n42020025013 +n42020025014 +n42020025015 +n42020025016 +n42020026001 +n42020026002 +n42020026003 +n42020026004 +n42020026005 +n42020026006 +n42020026007 +n42020026008 +n42020026009 +n42020026010 +n42020026011 +n42020026012 +n42020026013 +n42020026014 +n42020026015 +n42020026016 +n42020027002 +n42020027001 +n42020027003 +n42020027004 +n42020027005 +n42020027006 +n42020027007 +n42020027008 +n42020027009 +n42020027010 +n42020027011 +n42020027012 +n42020028001 +n42020028002 +n42020028003 +n42020028004 +n42020028005 +n42020028006 +n42020028007 +n42020028008 +n42020028009 +n42020028010 +n42020028011 +n42020028012 +n42020028013 +n42020028014 +n42020028015 +n42020028016 +n42020028017 +n42020028018 +n42020028019 +n42020028020 +n42020028021 +n42020028022 +n42020028023 +n42020028024 +n42020028025 +n42020028026 +n42020028027 +n42020028028 +n42020029002 +n42020029001 +n42020029003 +n42020029004 +n42020029005 +n42020029006 +n42020029007 +n42020029008 +n42020029009 +n42020029010 +n42020029011 +n42020030001 +n42020030002 +n42020030003 +n42020031001 +n42020031002 +n42020031003 +n42020031004 +n42020031005 +n42020031007 +n42020031006 +n42020031008 +n42020031009 +n42020031010 +n42020031011 +n42020031012 +n42020031013 +n42020031014 +n42020031015 +n42020032001 +n42020032002 +n42020032003 +n42020032004 +n42020032005 +n42020033003 +n42020033001 +n42020033002 +n42020033004 +n42020033005 +n42020033006 +n42020033007 +n42020033008 +n42020033010 +n42020033009 +n42020033012 +n42020033011 +n42020033013 +n42020033014 +n42020033015 +n42020033016 +n42020034001 +n42020034002 +n42020034003 +n42020034004 +n42020034005 +n42020034006 +n42020034007 +n42020034008 +n42020034009 +n42020034010 +n42020034011 +n42020034012 +n42020034013 +n42020035002 +n42020035001 +n42020035003 +n42020035004 +n42020035005 +n42020035006 +n42020035007 +n42020035008 +n42020035009 +n42020035010 +n42020035011 +n42020035012 +n42020035013 +n42020035014 +n42020035015 +n42020035016 +n42020035017 +n42020036002 +n42020036001 +n42020036003 +n42020036004 +n42020036005 +n42020036007 +n42020036006 +n42020036008 +n42020036009 +n42020036010 +n42020036012 +n42020036011 +n42020036013 +n42020036014 +n42020036015 +n42020036016 +n42020037002 +n42020037001 +n42020037003 +n42020037004 +n42020037005 +n42020037006 +n42020037007 +n42020037008 +n42020037009 +n42020037010 +n42020037011 +n42020037012 +n42020037013 +n42020037014 +n42020037015 +n42020037016 +n42020037017 +n42020037018 +n42020037019 +n42020037020 +n42020037021 +n42020037022 +n42020037023 +n42020038002 +n42020038001 +n42020038003 +n42020038004 +n42020038005 +n42020038006 +n42020038007 +n42020038009 +n42020038008 +n42020038010 +n42020038011 +n42020039002 +n42020039001 +n42020039003 +n42020039004 +n42020039005 +n42020039006 +n42020039007 +n42020039008 +n42020039009 +n42020040002 +n42020040001 +n42020040003 +n42020040004 +n42020040005 +n42020040006 +n42020041002 +n42020041001 +n42020041003 +n42020041004 +n42020041005 +n42020041006 +n42020041007 +n42020041008 +n42020041009 +n42020041010 +n42020041011 +n42020042002 +n42020042001 +n42020042003 +n42020042004 +n42020042005 +n42020042006 +n42020042007 +n42020042008 +n42020042009 +n42020042010 +n42020042011 +n42020042012 +n42020042013 +n42020042014 +n42020042015 +n42020042016 +n42020043001 +n42020043002 +n42020043003 +n42020043004 +n42020043005 +n42020043006 +n42020043007 +n42020043008 +n42020043009 +n42020043010 +n42020044002 +n42020044001 +n42020044003 +n42020044004 +n42020044005 +n42020044006 +n42020044007 +n42020044008 +n42020044009 +n42020044010 +n42020045002 +n42020045001 +n42020045003 +n42020045004 +n42020045005 +n42020045006 +n42020045007 +n42020045008 +n42020046001 +n42020046002 +n42020046003 +n42020046004 +n42020046005 +n42020046006 +n42020046007 +n42020046008 +n42020046009 +n42020046010 +n42020046011 +n42020046012 +n42020046013 +n42020046014 +n42020046015 +n42020046016 +n42020046017 +n42020046018 +n42020046019 +n42020046020 +n42020046021 +n42020046022 +n42020046023 +n42020046024 +n42020046025 +n42020047001 +n42020047002 +n42020047003 +n42020047004 +n42020047005 +n42020047006 +n42020047007 +n42020047008 +n42020047009 +n42020047010 +n42020047011 +n42020047012 +n42020047013 +n42020047014 +n42021001002 +n42021001001 +n42021001003 +n42021001004 +n42021001005 +n42021001006 +n42021001007 +n42021001008 +n42021001009 +n42021001010 +n42021001011 +n42021001012 +n42021002002 +n42021002001 +n42021002003 +n42021002004 +n42021002005 +n42021002006 +n42021002007 +n42021002008 +n42021002009 +n42021003001 +n42021003002 +n42021003003 +n42021003004 +n42021003005 +n42021003006 +n42021003007 +n42021003008 +n42021003009 +n42021003010 +n42021003011 +n42021003012 +n42021003013 +n42021003014 +n42021004002 +n42021004001 +n42021004003 +n42021004004 +n42021004005 +n42021004006 +n42021004007 +n42021004008 +n42021004009 +n42021004010 +n42021004011 +n42021004013 +n42021004012 +n42021004014 +n42021004015 +n42021004016 +n42021004017 +n42021004018 +n42021004019 +n42021004020 +n42021004021 +n42021004022 +n42021004023 +n42021005001 +n42021005002 +n42021005003 +n42021005004 +n42021005005 +n42021005006 +n42021005007 +n42021005008 +n42021005009 +n42021005010 +n42021005011 +n42021005012 +n42021005013 +n42021006001 +n42021006002 +n42021006003 +n42021006004 +n42021006005 +n42021006006 +n42021006007 +n42021006008 +n42021006009 +n42021006011 +n42021006012 +n42021006010 +n42021006013 +n42021006014 +n42021006015 +n42021007002 +n42021007001 +n42021007003 +n42021007004 +n42021007005 +n42021007007 +n42021007006 +n42021007008 +n42021007009 +n42021007010 +n42021007011 +n42021007012 +n42021007013 +n42021007014 +n42021007015 +n42021007016 +n42021007017 +n42021008002 +n42021008001 +n42021008003 +n42021008004 +n42021008005 +n42021008006 +n42021008008 +n42021008007 +n42021008009 +n42021008010 +n42021008011 +n42021008012 +n42021008013 +n42021008014 +n42021008015 +n42021008016 +n42021008017 +n42021008018 +n42021008019 +n42021008020 +n42021008021 +n42021008022 +n42021008023 +n42021008024 +n42021009002 +n42021009001 +n42021009003 +n42021009004 +n42021009005 +n42021009006 +n42021009007 +n42021009008 +n42021009010 +n42021009009 +n42021009011 +n42021009012 +n42021009013 +n42021009014 +n42021009015 +n42021009016 +n42021009017 +n42021009018 +n42021010001 +n42021010002 +n42021010003 +n42021010004 +n42021010005 +n42021010006 +n42021010007 +n42021010008 +n42021010009 +n42021010010 +n42021010011 +n42021011002 +n42021011001 +n42021011003 +n42021011004 +n42021011005 +n42021011006 +n42021011007 +n42021011008 +n42021011009 +n42021011010 +n42021011012 +n42021011011 +n42021011013 +n42021011014 +n42021011015 +n42021011016 +n42021011017 +n42021011018 +n42021012002 +n42021012001 +n42021012003 +n42021012004 +n42021012005 +n42021012006 +n42021012007 +n42021012008 +n42021012009 +n42021012010 +n42021012011 +n42021012012 +n42021012013 +n42021012014 +n42021012015 +n42021012016 +n42021012017 +n42021012018 +n42021012019 +n42021012020 +n42021012021 +n42021012022 +n42021012023 +n42021012024 +n42021012025 +n42021012026 +n42021012027 +n42021013001 +n42021013002 +n42021013003 +n42021013004 +n42021014002 +n42021014001 +n42021014003 +n42021014004 +n42021014005 +n42021014006 +n42021014007 +n42021014008 +n42021014009 +n42021015002 +n42021015001 +n42021015003 +n42021015004 +n42021015005 +n42021015006 +n42021015007 +n42021015008 +n42021015009 +n42021015010 +n42021015011 +n42021015012 +n42021015013 +n42021015014 +n42021015015 +n42021015016 +n42021015017 +n42021016002 +n42021016001 +n42021016003 +n42021016004 +n42021016005 +n42021016006 +n42021016007 +n42021016008 +n42021016009 +n42021016010 +n42021016011 +n42021016012 +n42021016013 +n42021016014 +n42021016015 +n42021017001 +n42021017002 +n42021017003 +n42021017004 +n42021017005 +n42021017006 +n42021017007 +n42021017008 +n42021017009 +n42021018001 +n42021018002 +n42021018003 +n42021018004 +n42021018005 +n42021018006 +n42021018007 +n42021018008 +n42021018009 +n42021019001 +n42021019002 +n42021019003 +n42021019004 +n42021019005 +n42021019006 +n42021019007 +n42021019008 +n42021020002 +n42021020001 +n42021020003 +n42021020004 +n42021020005 +n42021020006 +n42021020007 +n42021020008 +n42021020009 +n42021020010 +n42021020011 +n42021020012 +n42021020013 +n42021020014 +n42021021001 +n42021021002 +n42021021003 +n42021021004 +n42021021005 +n42021021006 +n42021021007 +n42021021008 +n42021021009 +n42021021010 +n42021021011 +n42021021012 +n42021021013 +n42021021014 +n42021021015 +n42021021016 +n42021021017 +n42021021018 +n42021021019 +n42021021020 +n42021021021 +n42021021022 +n42021021023 +n42021021024 +n42021022001 +n42021022002 +n42021022003 +n42021022004 +n42021022005 +n42021022006 +n42021022007 +n42021022008 +n42021022009 +n42021022010 +n42021023001 +n42021023002 +n42021023003 +n42021023004 +n42021023005 +n42021023006 +n42021023007 +n42021023008 +n42021023009 +n42021023010 +n42021023011 +n42021023012 +n42021023014 +n42021023013 +n42021023015 +n42021023016 +n42021023017 +n42021023018 +n42021023019 +n42021023020 +n42021023021 +n42021023022 +n42021023023 +n42021023024 +n42021024001 +n42021024002 +n42021024003 +n42021024004 +n42021024005 +n42021024006 +n42021024007 +n42021024008 +n42021024009 +n42021024010 +n42021024011 +n42021024012 +n42021024013 +n42021024014 +n42021024015 +n42021024016 +n42021024017 +n42021024018 +n42021024019 +n42021024020 +n42021024021 +n42021025001 +n42021025002 +n42021025003 +n42021025004 +n42021025005 +n42021025006 +n42021025007 +n42021025008 +n42021025009 +n42021025010 +n42021025011 +n42021025012 +n42021025013 +n42021025014 +n42021025015 +n42021025016 +n42021025017 +n42021025018 +n42021025019 +n42021025020 +n42021025021 +n42021026001 +n42021026002 +n42021026003 +n42021026004 +n42021026005 +n42021026006 +n42021026007 +n42021026008 +n42021026009 +n42021026010 +n42021026012 +n42021026011 +n42021026013 +n42021026014 +n42021026015 +n42021026016 +n42021027001 +n42021027002 +n42021027003 +n42021027004 +n42021027005 +n42021027006 +n42021027007 +n42021027008 +n42021027009 +n42021027010 +n42021027011 +n42021027012 +n42021027013 +n42021027014 +n42021027015 +n42021028002 +n42021028001 +n42021028003 +n42021028004 +n42021028005 +n42021028006 +n42021028007 +n42021028008 +n42021028009 +n42021028010 +n42021028011 +n42021028012 +n42021028013 +n42021028014 +n42021028015 +n42021029001 +n42021029002 +n42021029003 +n42021029004 +n42021029005 +n42021029006 +n42021029007 +n42021029008 +n42021029009 +n42021029010 +n42021029011 +n42021030001 +n42021030002 +n42021030003 +n42021030004 +n42021030005 +n42021030006 +n42021030007 +n42021030008 +n42021030009 +n42021030010 +n42021030011 +n42021030012 +n42021030013 +n42021031001 +n42021031002 +n42021031003 +n42021031004 +n42021031005 +n42021031006 +n42021031007 +n42021031008 +n42021031009 +n42021031010 +n42021031011 +n42021031012 +n42021031013 +n42021031014 +n42021031015 +n42021032001 +n42021032002 +n42021032003 +n42021032004 +n42021032005 +n42021032006 +n42021032007 +n42021032008 +n42021032009 +n42021032010 +n42021032011 +n42021032012 +n42021032013 +n42021032014 +n42021033001 +n42021033002 +n42021033003 +n42021033004 +n42021033005 +n42021033006 +n42021033008 +n42021033007 +n42021033009 +n42021033010 +n42021033011 +n42021033012 +n42021033013 +n42021034002 +n42021034001 +n42021034003 +n42021034004 +n42021034005 +n42021034006 +n42021034007 +n42021034008 +n42021034009 +n42021034010 +n42021034011 +n42021034012 +n42021034013 +n42021034014 +n42021034015 +n42021034016 +n42021034017 +n42021034018 +n42021034019 +n42021034020 +n42021034021 +n42021034022 +n42021034023 +n42021034024 +n42021035001 +n42021035002 +n42021035004 +n42021035003 +n42021035005 +n42021035006 +n42021035007 +n42021035008 +n42021035009 +n42021035010 +n42021035011 +n42021035012 +n42021035013 +n42021036002 +n42021036001 +n42021036003 +n42021036004 +n42021036005 +n42021036006 +n42021036007 +n42021036008 +n42021036009 +n42021036010 +n42021036011 +n42021036012 +n42021036013 +n42021036014 +n42021036015 +n42021036016 +n42021036017 +n42021036018 +n42021036019 +n42021036020 +n42021036021 +n42021037002 +n42021037001 +n42021037008 +n42021037003 +n42021037004 +n42021037005 +n42021037006 +n42021037007 +n42021037010 +n42021037009 +n42021037011 +n42021037012 +n42021037013 +n42021037014 +n42021037015 +n42021037016 +n42021037017 +n42021037018 +n42021037019 +n42021038001 +n42021038002 +n42021038003 +n42021038004 +n42021038005 +n42021038006 +n42021038007 +n42021038008 +n42021038009 +n42021038010 +n42021038011 +n42021038012 +n42022001002 +n42022001001 +n42022001003 +n42022001004 +n42022001005 +n42022001006 +n42022001007 +n42022001008 +n42022001009 +n42022002001 +n42022002002 +n42022002003 +n42022002004 +n42022002005 +n42022002006 +n42022002007 +n42022002008 +n42022002009 +n42022002010 +n42022002011 +n42022002013 +n42022002012 +n42022002014 +n42022002015 +n42022003002 +n42022003001 +n42022003003 +n42022003004 +n42022003005 +n42022003006 +n42022003007 +n42022003008 +n42022003009 +n42022003010 +n42022003011 +n42022003012 +n42022003013 +n42022003014 +n42022004001 +n42022004002 +n42022004003 +n42022004004 +n42022004005 +n42022004006 +n42022004007 +n42022004008 +n42022004009 +n42022004010 +n42022004011 +n42022004012 +n42022005001 +n42022005002 +n42022005003 +n42022005004 +n42022005005 +n42022005006 +n42022005007 +n42022006001 +n42022006002 +n42022006003 +n42022006004 +n42022006005 +n42022006006 +n42022006007 +n42022006008 +n42022006009 +n42022006010 +n42022006011 +n42022007002 +n42022007001 +n42022007003 +n42022007004 +n42022007005 +n42022007006 +n42022007007 +n42022007008 +n42022007009 +n42022007010 +n42022007011 +n42022008001 +n42022008002 +n42022008003 +n42022008004 +n42022008005 +n42022008006 +n42022008007 +n42022008008 +n42022008009 +n42022008010 +n42022008011 +n42022008012 +n42022008013 +n42022009002 +n42022009001 +n42022009003 +n42022009004 +n42022009006 +n42022009005 +n42022009007 +n42022010002 +n42022010001 +n42022010003 +n42022010004 +n42022010005 +n42022010006 +n42022010007 +n42022010008 +n42022010009 +n42022010010 +n42022010011 +n42022010012 +n42022010013 +n42022010014 +n42022010015 +n42022010016 +n42022010017 +n42022010018 +n42022010019 +n42022010020 +n42022010021 +n42022010022 +n42022010023 +n42022010024 +n42022011001 +n42022011002 +n42022011003 +n42022011004 +n42022011005 +n42022011006 +n42022011007 +n42022011008 +n42022011009 +n42022011010 +n42022011011 +n42022011012 +n42022011013 +n42022011014 +n42022011015 +n42022011016 +n42022011017 +n42022011018 +n42022011019 +n42022011020 +n42022011021 +n42022011022 +n42022012001 +n42022012002 +n42022012003 +n42022012004 +n42022012005 +n42022012006 +n42022012007 +n42022012008 +n42022013002 +n42022013001 +n42022013003 +n42022013004 +n42022013005 +n42022013006 +n42022013007 +n42022013008 +n42022013009 +n42022013010 +n42022014001 +n42022014002 +n42022014003 +n42022014004 +n42022014005 +n42022014006 +n42022014007 +n42022014008 +n42022014009 +n42022014010 +n42022014011 +n42022015001 +n42022015002 +n42022015003 +n42022015004 +n42022015005 +n42022015006 +n42022015007 +n42022015008 +n42022015009 +n42022015010 +n42022015011 +n42022015012 +n42022015013 +n42022015014 +n42022015015 +n42022015016 +n42022016002 +n42022016001 +n42022016003 +n42022016004 +n42022016005 +n42022016006 +n42022016007 +n42022016008 +n42022016009 +n42022016010 +n42022016011 +n42022016012 +n42022016013 +n42022016014 +n42022016015 +n42022016016 +n42022016017 +n42022017001 +n42022017002 +n42022017003 +n42022017004 +n42022017005 +n42022017006 +n42022017007 +n42022017008 +n42022017009 +n42022017010 +n42022017011 +n42022018002 +n42022018001 +n42022018003 +n42022018004 +n42022018005 +n42022018006 +n42022018007 +n42022018008 +n42022018009 +n42022018010 +n42022018011 +n42022018012 +n42022018013 +n42022018014 +n42022018015 +n42022018016 +n42022018017 +n42022018018 +n42022018019 +n42022018020 +n42022018021 +n42022019001 +n42022019002 +n42022019003 +n42022019004 +n42022019005 +n42022019006 +n42022019007 +n42022019008 +n42022019009 +n42022019010 +n42022019011 +n42022019012 +n42022019013 +n42022019014 +n42022019015 +n42022019016 +n42022019017 +n42022019018 +n42022019019 +n42022019020 +n42022019021 +n42022019022 +n42022019023 +n42022019024 +n42022020001 +n42022020002 +n42022020003 +n42022020004 +n42022020005 +n42022020006 +n42022020007 +n42022020008 +n42022020012 +n42022020013 +n42022020014 +n42022020015 +n42022020016 +n42022020017 +n42022020018 +n42022020009 +n42022020010 +n42022020011 +n42022020019 +n42022020020 +n42022020021 +n42022020022 +n42022021001 +n42022021002 +n42022021003 +n42022021004 +n42022021005 +n42022021006 +n42022021007 +n42022021008 +n42022021009 +n42022021010 +n42022021011 +n42022021012 +n42022022001 +n42022022004 +n42022022002 +n42022022003 +n42022022005 +n42022022006 +n42022022007 +n42022022008 +n42022022009 +n42022022010 +n42022022011 +n42022022012 +n42022022013 +n42022022014 +n42022022015 +n42022022016 +n42022022017 +n42022022018 +n42022023001 +n42022023002 +n42022023003 +n42022023004 +n42022023005 +n42022023006 +n42022023007 +n42022023009 +n42022023008 +n42022023010 +n42022023011 +n42022023012 +n42022023013 +n42022023014 +n42022023016 +n42022023015 +n42022024002 +n42022024001 +n42022024005 +n42022024006 +n42022024003 +n42022024004 +n42022024007 +n42022024008 +n42022024009 +n42022024010 +n42022024011 +n42022024012 +n42022025002 +n42022025001 +n42022025003 +n42022025004 +n42022025005 +n42022025006 +n42022025007 +n42022025008 +n42022025009 +n42022025010 +n42022025011 +n42022025012 +n42022025013 +n42022025014 +n42022025015 +n42022025016 +n42022026002 +n42022026001 +n42022026003 +n42022026004 +n42022026005 +n42022026006 +n42022026007 +n42022026008 +n42022026009 +n42022026010 +n42022026011 +n42022026012 +n42022026013 +n42022026014 +n42022026015 +n42022026016 +n42022026017 +n42022026018 +n42022026019 +n42022027002 +n42022027001 +n42022027003 +n42022027004 +n42022027005 +n42022027006 +n42022027007 +n42022027008 +n42022027009 +n42022027010 +n42022027011 +n42022027013 +n42022027012 +n42022027014 +n42022027015 +n42022027016 +n42022027017 +n42022027018 +n42022027019 +n42022027020 +n42022028002 +n42022028001 +n42022028003 +n42022028004 +n42022028005 +n42022028006 +n42022028007 +n42022028008 +n42022028009 +n42022028010 +n42022028011 +n42022029001 +n42022029002 +n42022029003 +n42022029004 +n42022029005 +n42022029006 +n42022029007 +n42022029008 +n42022029009 +n42022029010 +n42022030001 +n42022030002 +n42022030003 +n42022030004 +n42022030005 +n42022030006 +n42022030007 +n42022030008 +n42022030009 +n42022030010 +n42022030011 +n42022030012 +n42022030013 +n42022030014 +n42022030015 +n42022030016 +n42022030017 +n42022030018 +n42022030019 +n42022030021 +n42022030022 +n42022030020 +n42022031001 +n42022031002 +n42022031003 +n42022031004 +n42022031005 +n42022031006 +n42022031007 +n42022031008 +n42022031009 +n42022031010 +n42022031011 +n42022031012 +n42022032002 +n42022032001 +n42022032003 +n42022032004 +n42022032005 +n42022032006 +n42022032007 +n42022032008 +n42022032009 +n42022032010 +n42022032011 +n42022032012 +n42022032013 +n42022032014 +n42022032015 +n42022032016 +n42022032017 +n42022032018 +n42022032019 +n42022033002 +n42022033001 +n42022033003 +n42022033004 +n42022033005 +n42022033006 +n42022033007 +n42022033008 +n42022033009 +n42022033010 +n42022033011 +n42022033012 +n42022033013 +n42022033014 +n42022033015 +n42022033016 +n42022034002 +n42022034001 +n42022034003 +n42022034004 +n42022034005 +n42022034006 +n42022034007 +n42022034008 +n42022034009 +n42022034010 +n42022034011 +n42022034012 +n42022034013 +n42022034015 +n42022034016 +n42022034014 +n42022035001 +n42022035002 +n42022035003 +n42022035004 +n42022035005 +n42022035006 +n42022035007 +n42022035008 +n42022035009 +n42022035010 +n42022035011 +n42022035012 +n42022035013 +n42022035014 +n42022035015 +n42022035017 +n42022035016 +n42022035018 +n42022035019 +n42022036002 +n42022036001 +n42022036003 +n42022036004 +n42022036005 +n42022036006 +n42022036007 +n42022036008 +n42022036009 +n42022036010 +n42022036011 +n42022036012 +n42022036013 +n42022036014 +n42022036015 +n42022036016 +n42022036017 +n42022036018 +n42022036019 +n42022036020 +n42022036021 +n42022036022 +n42022036023 +n42022037002 +n42022037001 +n42022037003 +n42022037004 +n42022037008 +n42022037005 +n42022037006 +n42022037007 +n42022037012 +n42022037013 +n42022037014 +n42022037015 +n42022037016 +n42022037009 +n42022037010 +n42022037011 +n42022037018 +n42022037017 +n42022037019 +n42022037020 +n42022037021 +n42022037022 +n42022037023 +n42022038002 +n42022038001 +n42022038003 +n42022038004 +n42022038005 +n42022038006 +n42022038007 +n42022038008 +n42022038010 +n42022038009 +n42022038011 +n42022038012 +n42022038013 +n42022038014 +n42022039001 +n42022039002 +n42022039003 +n42022039004 +n42022039005 +n42022039006 +n42022039007 +n42022039008 +n42022039009 +n42022039010 +n42022039011 +n42022039013 +n42022039012 +n42022039014 +n42022039015 +n42022039016 +n42022039017 +n42022040002 +n42022040001 +n42022040003 +n42022040004 +n42022040005 +n42022040006 +n42022040007 +n42022040008 +n42022040009 +n42022040010 +n42022040011 +n42022040012 +n42022041001 +n42022041002 +n42022041003 +n42022041004 +n42022041005 +n42022041006 +n42022041007 +n42022041008 +n42022041009 +n42022041010 +n42022041011 +n42022041012 +n42022041013 +n42022042001 +n42022042002 +n42022042003 +n42022042004 +n42022042005 +n42022042006 +n42022042007 +n42022042008 +n42022042009 +n42022042010 +n42022042011 +n42022042012 +n42022042013 +n42022042014 +n42022042015 +n42022042016 +n42022042017 +n42022042018 +n42022042019 +n42022043002 +n42022043001 +n42022043003 +n42022043004 +n42022043005 +n42022043006 +n42022043007 +n42022043008 +n42022044001 +n42022044002 +n42022044003 +n42022044004 +n42022044005 +n42022044006 +n42022044007 +n42022044008 +n42022044009 +n42022044010 +n42022044011 +n42022044012 +n42022044013 +n42022044014 +n42022044015 +n42022044016 +n42022044017 +n42022044018 +n42022045001 +n42022045002 +n42022045003 +n42022045004 +n42022045005 +n42022045006 +n42022045007 +n42022045008 +n42022045009 +n42022045010 +n42022045011 +n42022045012 +n42022045013 +n42022045014 +n42022045015 +n42022046001 +n42022046002 +n42022046003 +n42022046004 +n42022046005 +n42022046006 +n42022046007 +n42022046008 +n42022046009 +n42022046010 +n42022046011 +n42022046012 +n42022047001 +n42022047002 +n42022047003 +n42022047004 +n42022047005 +n42022047006 +n42022047007 +n42022047008 +n42022047009 +n42022047010 +n42022047011 +n42022047012 +n42022047013 +n42022047014 +n42022047015 +n42022047016 +n42022047017 +n42022047018 +n42022047019 +n42022047020 +n42022048002 +n42022048001 +n42022048003 +n42022048004 +n42022048005 +n42022048006 +n42022048007 +n42022048008 +n42022048009 +n42022048010 +n42022048011 +n42022049002 +n42022049003 +n42022049004 +n42022049005 +n42022049001 +n42022049006 +n42022049007 +n42022049008 +n42022049009 +n42022049010 +n42022049011 +n42022049012 +n42022049013 +n42022050001 +n42022050002 +n42022050003 +n42022050004 +n42022050005 +n42022050006 +n42022050007 +n42022050008 +n42022050009 +n42022050010 +n42022050011 +n42022050012 +n42022050013 +n42022050014 +n42022050015 +n42022050016 +n42022050017 +n42022051002 +n42022051001 +n42022051003 +n42022051004 +n42022051005 +n42022051006 +n42022051007 +n42022051008 +n42022051009 +n42022051010 +n42022051011 +n42022051012 +n42022051013 +n42022051014 +n42022052002 +n42022052001 +n42022052003 +n42022052004 +n42022052005 +n42022052006 +n42022052007 +n42022052008 +n42022052009 +n42022052010 +n42022052011 +n42022052012 +n42022052013 +n42022052014 +n42022052015 +n42022052016 +n42022052017 +n42022052018 +n42022052019 +n42022052020 +n42022052021 +n42022052022 +n42022052023 +n42022053001 +n42022053002 +n42022053003 +n42022053004 +n42022053005 +n42022053006 +n42022053007 +n42022053008 +n42022053009 +n42022053010 +n42022053011 +n42022053012 +n42022053013 +n42022053014 +n42022053015 +n42022053016 +n42022053017 +n42022053018 +n42022053019 +n42022053020 +n42022053021 +n42022053022 +n42022053023 +n42022053024 +n42022053025 +n42022053026 +n42022054002 +n42022054001 +n42022054003 +n42022054004 +n42022054005 +n42022054006 +n42022054007 +n42022054008 +n42022054009 +n42022054010 +n42022054011 +n42022054013 +n42022054012 +n42022054014 +n42022054015 +n42022054016 +n42022055002 +n42022055001 +n42022055003 +n42022055004 +n42022055005 +n42022055006 +n42022055007 +n42022055008 +n42022055009 +n42022055010 +n42022055011 +n42022055012 +n42022055013 +n42022055014 +n42022056002 +n42022056004 +n42022056005 +n42022056001 +n42022056003 +n42022056006 +n42022056007 +n42022056008 +n42022056009 +n42022056010 +n42022056011 +n42022056012 +n42022056013 +n42022056014 +n42022056015 +n42022056016 +n42022056017 +n42022056018 +n42022057002 +n42022057001 +n42022057003 +n42022057004 +n42022057005 +n42022057006 +n42022057007 +n42022057008 +n42022058001 +n42022058002 +n42022058003 +n42022058004 +n42022058005 +n42022058006 +n42022058007 +n42022058008 +n42022058009 +n42022058010 +n42022058011 +n42022058012 +n42022058014 +n42022058013 +n42022058015 +n42022058016 +n42022058017 +n42022058018 +n42022058019 +n42022059001 +n42022059002 +n42022059003 +n42022059004 +n42022059005 +n42022059006 +n42022059007 +n42022059008 +n42022059009 +n42022059010 +n42022059011 +n42022059012 +n42022059013 +n42022059014 +n42022059015 +n42022059016 +n42022059018 +n42022059017 +n42022059019 +n42022059020 +n42022060002 +n42022060001 +n42022060003 +n42022060004 +n42022060005 +n42022060006 +n42022060007 +n42022060008 +n42022060009 +n42022060010 +n42022060011 +n42022060012 +n42022060013 +n42022060014 +n42022060015 +n42022060016 +n42022061001 +n42022061002 +n42022061003 +n42022061004 +n42022061005 +n42022061006 +n42022061007 +n42022061008 +n42022061009 +n42022061010 +n42022061011 +n42022061012 +n42022061013 +n42022061014 +n42022061015 +n42022061016 +n42022061017 +n42022061018 +n42022061019 +n42022061020 +n42022061021 +n42022061022 +n42022061023 +n42022061024 +n42022061025 +n42022061026 +n42022062001 +n42022062002 +n42022062003 +n42022062004 +n42022062005 +n42022063001 +n42022063002 +n42022063003 +n42022063004 +n42022063005 +n42022063006 +n42022063007 +n42022063008 +n42022063009 +n42022064001 +n42022064002 +n42022064003 +n42022064004 +n42022064005 +n42022064006 +n42022064007 +n42022064008 +n42022064009 +n42022064010 +n42022064011 +n42022065001 +n42022065002 +n42022065003 +n42022065005 +n42022065004 +n42022065006 +n42022065007 +n42022066001 +n42022066002 +n42022066003 +n42022066004 +n42022066005 +n42022066006 +n42022066007 +n42022066008 +n42022066009 +n42022066011 +n42022066010 +n42022066012 +n42022066013 +n42022066014 +n42022066015 +n42022066016 +n42022066017 +n42022066018 +n42022066019 +n42022066020 +n42022067001 +n42022067002 +n42022067003 +n42022067004 +n42022067005 +n42022067006 +n42022067007 +n42022067008 +n42022067010 +n42022067009 +n42022067011 +n42022067012 +n42022067013 +n42022067014 +n42022067015 +n42022067016 +n42022067017 +n42022068002 +n42022068001 +n42022068003 +n42022068004 +n42022068005 +n42022068006 +n42022069004 +n42022069001 +n42022069002 +n42022069003 +n42022069005 +n42022069010 +n42022069006 +n42022069007 +n42022069008 +n42022069009 +n42022069011 +n42022069012 +n42022069013 +n42022069014 +n42022069015 +n42022069016 +n42022070002 +n42022070001 +n42022070003 +n42022070005 +n42022070004 +n42022070006 +n42022070007 +n42022070008 +n42022070009 +n42022070010 +n42022070012 +n42022070011 +n42022070013 +n42022070014 +n42022070015 +n42022070016 +n42022070017 +n42022070018 +n42022070019 +n42022070020 +n42022071002 +n42022071001 +n42022071003 +n42022071004 +n42022071005 +n42022071006 +n42022071007 +n42022071008 +n42022071010 +n42022071009 +n42022071011 +n42022071012 +n42022071013 +n42022071014 +n42022071015 +n42023001001 +n42023001002 +n42023001003 +n42023001004 +n42023001005 +n42023001006 +n42023001007 +n42023001008 +n42023001009 +n42023001010 +n42023001011 +n42023002002 +n42023002001 +n42023002003 +n42023002004 +n42023002005 +n42023002007 +n42023002006 +n42023002008 +n42023002009 +n42023002010 +n42023002011 +n42023002012 +n42023002013 +n42023002014 +n42023002015 +n42023002016 +n42023002017 +n42023002018 +n42023002019 +n42023002020 +n42023002021 +n42023002022 +n42023003002 +n42023003001 +n42023003003 +n42023003004 +n42023003005 +n42023003006 +n42023003007 +n42023003008 +n42023003009 +n42023003010 +n42023003011 +n42023003012 +n42023003014 +n42023003013 +n42023003015 +n42023003016 +n42023003017 +n42023003018 +n42023003019 +n42023004002 +n42023004001 +n42023004003 +n42023004004 +n42023004005 +n42023004006 +n42023004007 +n42023004008 +n42023004009 +n42023004010 +n42023004011 +n42023004012 +n42023004013 +n42023004014 +n42023004015 +n42023004016 +n42023004017 +n42023005002 +n42023005001 +n42023005003 +n42023005004 +n42023005005 +n42023005006 +n42023005007 +n42023005008 +n42023005009 +n42023005010 +n42023005011 +n42023005012 +n42023005013 +n42023005014 +n42023005015 +n42023005016 +n42023005017 +n42023005018 +n42023005019 +n42023005020 +n42023006002 +n42023006001 +n42023006003 +n42023006004 +n42023006005 +n42023006006 +n42023006007 +n42023006008 +n42023006009 +n42023007001 +n42023007002 +n42023007003 +n42023007004 +n42023007005 +n42023007006 +n42023007007 +n42023007008 +n42023007009 +n42023007010 +n42023007011 +n42023007012 +n42023007013 +n42023007014 +n42023007015 +n42023007016 +n42023007017 +n42023007018 +n42023007019 +n42023007020 +n42023007021 +n42023008002 +n42023008001 +n42023008003 +n42023008004 +n42023008005 +n42023008006 +n42023008007 +n42023008008 +n42023008010 +n42023008009 +n42023008014 +n42023008011 +n42023008012 +n42023008013 +n42023008015 +n42023008016 +n42023008017 +n42023008018 +n42023008019 +n42023008020 +n42023008021 +n42023008022 +n42023008023 +n42023008026 +n42023008024 +n42023008025 +n42023008027 +n42023008028 +n42023008029 +n42023009002 +n42023009001 +n42023009003 +n42023009004 +n42023009005 +n42023009006 +n42023009008 +n42023009007 +n42023009009 +n42023009010 +n42023009011 +n42023010002 +n42023010001 +n42023010003 +n42023010004 +n42023010005 +n42023010006 +n42023010007 +n42023010008 +n42023010009 +n42023010010 +n42023011002 +n42023011004 +n42023011005 +n42023011001 +n42023011003 +n42023011006 +n42023011007 +n42023011008 +n42023011009 +n42023011010 +n42023011011 +n42023011012 +n42023011013 +n42023011014 +n42023011015 +n42023011016 +n42023011017 +n42023011018 +n42023012002 +n42023012001 +n42023012003 +n42023012005 +n42023012004 +n42023012006 +n42023012007 +n42023012008 +n42023012009 +n42023012010 +n42023012011 +n42023012012 +n42023012013 +n42023012014 +n42023012015 +n42023012017 +n42023012016 +n42023012018 +n42023012019 +n42023012020 +n42023012021 +n42023012022 +n42023013002 +n42023013001 +n42023013003 +n42023013004 +n42023013005 +n42023013006 +n42023013007 +n42023013008 +n42023013009 +n42023013010 +n42023013011 +n42023014001 +n42023014002 +n42023014003 +n42023014004 +n42023014005 +n42023014006 +n42023014007 +n42023014008 +n42023014009 +n42023014010 +n42023014011 +n42023014012 +n42023014013 +n42023014014 +n42023014015 +n42023014016 +n42023014017 +n42023014018 +n42023014019 +n42023014020 +n42023014021 +n42023014022 +n42023014023 +n42023014024 +n42023014025 +n42023014026 +n42023014027 +n42023014028 +n42023014029 +n42023015001 +n42023015002 +n42023015003 +n42023015005 +n42023015004 +n42023015006 +n42023015007 +n42023015008 +n42023015009 +n42023015010 +n42023015011 +n42023015012 +n42023015013 +n42023015014 +n42023015015 +n42023015016 +n42023016002 +n42023016001 +n42023016003 +n42023016004 +n42023018002 +n42023018001 +n42023018003 +n42023018004 +n42023018005 +n42023018006 +n42023018008 +n42023018007 +n42023018009 +n42023018010 +n42023018011 +n42023019001 +n42023019002 +n42023019012 +n42023019003 +n42023019004 +n42023019005 +n42023019006 +n42023019007 +n42023019008 +n42023019009 +n42023019010 +n42023019011 +n42023019013 +n42023019014 +n42023019015 +n42023020002 +n42023020001 +n42023020003 +n42023020004 +n42023020005 +n42023020006 +n42023020007 +n42023020008 +n42023020009 +n42023020010 +n42023021002 +n42023021001 +n42023021003 +n42023021004 +n42023021005 +n42023021006 +n42023021007 +n42023022002 +n42023022001 +n42023022003 +n42023022004 +n42023022005 +n42023022006 +n42023022008 +n42023022007 +n42023022009 +n42023022010 +n42023022011 +n42023022012 +n42023022013 +n42023022014 +n42023022015 +n42023022016 +n42023022017 +n42023022019 +n42023022018 +n42023022020 +n42023022021 +n42023023002 +n42023023001 +n42023023003 +n42023023004 +n42023023005 +n42023023006 +n42023023007 +n42023023008 +n42023023009 +n42023023010 +n42023023011 +n42023023012 +n42023023013 +n42023024001 +n42023024002 +n42023024003 +n42023024004 +n42023024005 +n42023024006 +n42023024007 +n42023025002 +n42023025001 +n42023025003 +n42023025004 +n42023025005 +n42023025006 +n42023025007 +n42023025008 +n42023025009 +n42023025010 +n42023025011 +n42023025012 +n42023025014 +n42023025013 +n42023025015 +n42023025016 +n42023025017 +n42023025018 +n42023025019 +n42023026001 +n42023026002 +n42023026003 +n42023026004 +n42023026005 +n42023026006 +n42023026007 +n42023026008 +n42023026009 +n42023026010 +n42023026011 +n42023026012 +n42023026013 +n42023026014 +n42023026015 +n42023026016 +n42023026017 +n42023026018 +n42023026019 +n42023027002 +n42023027001 +n42023027003 +n42023027004 +n42023027005 +n42023027006 +n42023027007 +n42023027008 +n42023027009 +n42023027010 +n42023027011 +n42023027012 +n42023027013 +n42023027014 +n42023028002 +n42023028001 +n42023028003 +n42023028004 +n42023028005 +n42023028006 +n42023028007 +n42023028008 +n42023028009 +n42023028010 +n42023028011 +n42023028012 +n42023028013 +n42023028014 +n42023028015 +n42023028016 +n42023028017 +n42023028018 +n42023028019 +n42023028020 +n42023028021 +n42023029001 +n42023029002 +n42023029003 +n42023029004 +n42023029005 +n42023029006 +n42023029007 +n42023029008 +n42023029009 +n42023029010 +n42023029011 +n42023029012 +n42023029013 +n42023029014 +n42023029015 +n42023029016 +n42023029017 +n42023029018 +n42023029019 +n42023029020 +n42023029021 +n42023030001 +n42023030002 +n42023030003 +n42023030004 +n42023030005 +n42023030006 +n42023030007 +n42023030008 +n42023030009 +n42023030010 +n42023030011 +n42023030012 +n42023030013 +n42023031001 +n42023031002 +n42023031003 +n42023031004 +n42023031005 +n42023031006 +n42023031007 +n42023031008 +n42023031009 +n42023031010 +n42023031011 +n42023031012 +n42023032002 +n42023032001 +n42023032003 +n42023032004 +n42023032005 +n42023032006 +n42023032007 +n42023032008 +n42023032009 +n42023033001 +n42023033002 +n42023033003 +n42023033004 +n42023033005 +n42023033006 +n42023033007 +n42023033008 +n42023033009 +n42023033010 +n42023033011 +n42023033012 +n42023033013 +n42023033014 +n42023033015 +n42023033017 +n42023033016 +n42023033018 +n42023033019 +n42023033021 +n42023033020 +n42023033022 +n42023033023 +n42023034002 +n42023034001 +n42023034003 +n42023034004 +n42023034005 +n42023034006 +n42023034007 +n42023034009 +n42023034008 +n42023034010 +n42023034011 +n42023034012 +n42023034014 +n42023034013 +n42023034015 +n42023034016 +n42023034017 +n42023034018 +n42023034019 +n42023035001 +n42023035002 +n42023035003 +n42023035004 +n42023035005 +n42023035007 +n42023035006 +n42023035008 +n42023035009 +n42023035010 +n42023035011 +n42023035012 +n42023035013 +n42023035014 +n42023035015 +n42023035016 +n42023035017 +n42023035018 +n42023035019 +n42023035020 +n42023035021 +n42023035022 +n42023035023 +n42023035024 +n42023036002 +n42023036001 +n42023036003 +n42023036004 +n42023036005 +n42023036006 +n42023036007 +n42023036008 +n42023036009 +n42023036010 +n42023037001 +n42023037002 +n42023037003 +n42023037004 +n42023037005 +n42023037006 +n42023037007 +n42023037008 +n42023037009 +n42023037010 +n42023037011 +n42023038002 +n42023038001 +n42023038003 +n42023038004 +n42023038005 +n42023038006 +n42023038007 +n42023038008 +n42023038009 +n42023038010 +n42023038011 +n42023039002 +n42023039001 +n42023039003 +n42023039004 +n42023039005 +n42023039006 +n42023039007 +n42023039008 +n42023039009 +n42023039010 +n42023039011 +n42023039012 +n42023039013 +n42023039014 +n42023039015 +n42023039016 +n42023040002 +n42023040001 +n42023040003 +n42023040004 +n42023040005 +n42023040006 +n42023040007 +n42023040008 +n42023040009 +n42023040010 +n42023040011 +n42023040012 +n42023040013 +n42023040014 +n42023040015 +n42023040016 +n42023040017 +n42023040018 +n42023041001 +n42023041003 +n42023041002 +n42023041004 +n42023041006 +n42023041005 +n42023041007 +n42023041008 +n42023041009 +n42023041011 +n42023041010 +n42023041012 +n42023041013 +n42023041014 +n42023042001 +n42023042002 +n42023042003 +n42023042004 +n42023042005 +n42023042006 +n42023042007 +n42023042008 +n42023042009 +n42023042010 +n42023042011 +n42023043001 +n42023043002 +n42023043003 +n42023043004 +n42023043005 +n42023043006 +n42023043007 +n42023043008 +n42023043009 +n42023043010 +n42023043011 +n42023043012 +n42023043013 +n42023044001 +n42023044002 +n42023044003 +n42023044004 +n42023044005 +n42023044006 +n42023044007 +n42023044008 +n42023044009 +n42023044010 +n42023044011 +n42023044012 +n42023044013 +n42023044014 +n42023044015 +n42023044016 +n42023045001 +n42023045002 +n42023045003 +n42023045005 +n42023045004 +n42023045006 +n42023045007 +n42023045008 +n42023045009 +n42023045010 +n42023046001 +n42023046002 +n42023046003 +n42023046004 +n42023046005 +n42023046006 +n42023046007 +n42023046008 +n42023046009 +n42023046010 +n42023046011 +n42023046012 +n42023046013 +n42023046014 +n42023046015 +n42023046017 +n42023046016 +n42023046018 +n42023046019 +n42023047002 +n42023047003 +n42023047004 +n42023047001 +n42023047005 +n42023047006 +n42023047007 +n42023047008 +n42023047009 +n42023047010 +n42023047011 +n42023047012 +n42023047013 +n42023047014 +n42023047015 +n42023047016 +n42023048001 +n42023048002 +n42023048003 +n42023048004 +n42023048006 +n42023048007 +n42023048008 +n42023048009 +n42023048005 +n42023048010 +n42023048011 +n42023048012 +n42023048013 +n42023048014 +n42023048015 +n42023048016 +n42023049002 +n42023049001 +n42023049007 +n42023049008 +n42023049003 +n42023049004 +n42023049005 +n42023049006 +n42023049009 +n42023049010 +n42023049011 +n42023049012 +n42023049013 +n42023049014 +n42023049015 +n42023049016 +n42023049017 +n42023049018 +n42023050001 +n42023050002 +n42023050003 +n42023050004 +n42023050005 +n42023050007 +n42023050006 +n42023050008 +n42023050009 +n42023050010 +n42023050011 +n42023051001 +n42023051002 +n42023051003 +n42023051004 +n42023051005 +n42023051006 +n42023051007 +n42023051008 +n42023051009 +n42023051010 +n42023051011 +n42023051012 +n42023051013 +n42023051014 +n42023051015 +n42023051016 +n42023051017 +n42023051018 +n42023051019 +n42023051020 +n42023051021 +n42023052001 +n42023052002 +n42023052003 +n42023052004 +n42023052005 +n42023052006 +n42023052007 +n42023052008 +n42023052009 +n42023053001 +n42023053002 +n42023053003 +n42023053004 +n42023053005 +n42023053006 +n42023053007 +n42023053008 +n42023053009 +n42023053010 +n42023053011 +n42023053012 +n42023053013 +n42023053014 +n42023053017 +n42023053015 +n42023053016 +n42023054001 +n42023054002 +n42023054004 +n42023054003 +n42023054005 +n42023054006 +n42023054007 +n42023055002 +n42023055001 +n42023055003 +n42023055004 +n42023055005 +n42023055006 +n42023055007 +n42023055008 +n42023055009 +n42023055010 +n42023055011 +n42023055012 +n42023055013 +n42023055014 +n42023055015 +n42023055016 +n42023055017 +n42023055018 +n42023055019 +n42023055020 +n42023056002 +n42023056001 +n42023056003 +n42023056004 +n42023056005 +n42023056006 +n42023056007 +n42023056009 +n42023056008 +n42023056010 +n42023056011 +n42023056012 +n42023056013 +n42023056014 +n42024001002 +n42024001001 +n42024001003 +n42024001004 +n42024001005 +n42024001006 +n42024001007 +n42024001008 +n42024001009 +n42024001010 +n42024001011 +n42024001012 +n42024001013 +n42024001014 +n42024001015 +n42024002002 +n42024002001 +n42024002003 +n42024002004 +n42024002005 +n42024002006 +n42024002007 +n42024002008 +n42024003002 +n42024003001 +n42024003003 +n42024003004 +n42024003005 +n42024003006 +n42024003007 +n42024003008 +n42024003009 +n42024004001 +n42024004002 +n42024004003 +n42024004004 +n42024004005 +n42024004006 +n42024004007 +n42024004008 +n42024004009 +n42024004010 +n42024004011 +n42024004012 +n42024004013 +n42024004014 +n42024004015 +n42024004016 +n42024004017 +n42024005002 +n42024005001 +n42024005003 +n42024005004 +n42024005005 +n42024005006 +n42024005007 +n42024005008 +n42024005009 +n42024005010 +n42024005011 +n42024005012 +n42024005013 +n42024005014 +n42024005015 +n42024005016 +n42024005017 +n42024005018 +n42024005019 +n42024005020 +n42024005021 +n42024006001 +n42024006002 +n42024006003 +n42024006004 +n42024006005 +n42024006006 +n42024006007 +n42024006008 +n42024006009 +n42024006010 +n42024006011 +n42024006012 +n42024006013 +n42024006014 +n42024007001 +n42024007006 +n42024007007 +n42024007002 +n42024007003 +n42024007004 +n42024007005 +n42024007008 +n42024007009 +n42024007010 +n42024007011 +n42024007012 +n42024007013 +n42024007014 +n42024007015 +n42024007016 +n42024007017 +n42024007018 +n42024007019 +n42024008001 +n42024008002 +n42024008003 +n42024008004 +n42024008005 +n42024009001 +n42024009002 +n42024009003 +n42024009004 +n42024009005 +n42024009006 +n42024009007 +n42024009008 +n42024009009 +n42024009010 +n42024009011 +n42024009012 +n42024009013 +n42024009014 +n42024010002 +n42024010001 +n42024010003 +n42024010004 +n42024010005 +n42024010006 +n42024010007 +n42024010008 +n42024010009 +n42024010010 +n42024010011 +n42024010012 +n42024010013 +n42024010014 +n42024010015 +n42024010016 +n42024010017 +n42024010018 +n42024010019 +n42024010020 +n42024010021 +n42024011001 +n42024011002 +n42024011003 +n42024011004 +n42024011005 +n42024011006 +n42024011007 +n42024011008 +n42024011009 +n42024011010 +n42024011011 +n42024011012 +n42024012002 +n42024012001 +n42024012003 +n42024012004 +n42024012005 +n42024012006 +n42024012007 +n42024012008 +n42024012009 +n42024012010 +n42024012011 +n42024012012 +n42024012013 +n42024012014 +n42024012015 +n42024012016 +n42024012017 +n42024012018 +n42024012019 +n42024012020 +n42024012021 +n42024013001 +n42024013002 +n42024013003 +n42024013004 +n42024013005 +n42024013006 +n42024013007 +n42024013008 +n42024013009 +n42024013010 +n42024013011 +n42024013012 +n42024013013 +n42024013014 +n42024013015 +n42024013016 +n42024013017 +n42024013018 +n42024013019 +n42024013020 +n42024013021 +n42024014001 +n42024014002 +n42024014003 +n42024014004 +n42024014005 +n42024014006 +n42024014007 +n42024014008 +n42024014009 +n42024014010 +n42024015001 +n42024015002 +n42024015003 +n42024015004 +n42024015005 +n42024015006 +n42024015007 +n42024015008 +n42024015009 +n42024015010 +n42024015011 +n42024015012 +n42024015013 +n42024015014 +n42024016002 +n42024016001 +n42024016003 +n42024016004 +n42024016005 +n42024016006 +n42024016007 +n42024016008 +n42024016009 +n42024017002 +n42024017001 +n42024017003 +n42024017004 +n42024017005 +n42024017006 +n42024017007 +n42024017008 +n42024017009 +n42024017010 +n42024017011 +n42024017012 +n42024017013 +n42024017014 +n42024017015 +n42024017016 +n42024018002 +n42024018001 +n42024018003 +n42024018004 +n42024018005 +n42024018006 +n42024018007 +n42024018008 +n42024018009 +n42024018010 +n42024018011 +n42024018012 +n42024018013 +n42024018014 +n42024018015 +n42024018016 +n42024018017 +n42024018018 +n42024018019 +n42024018020 +n42024018021 +n42024018022 +n42024018023 +n42024019001 +n42024019002 +n42024019003 +n42024019004 +n42024019006 +n42024019005 +n42024019007 +n42024019008 +n42024019009 +n42024019010 +n42024019011 +n42024019012 +n42024019013 +n42024019014 +n42024019015 +n42024019016 +n42024019017 +n42024019018 +n42024019019 +n42024019020 +n42024019021 +n42024019022 +n42024019023 +n42024019024 +n42024019025 +n42024019026 +n42024019027 +n42024019028 +n42024019029 +n42024020002 +n42024020001 +n42024020003 +n42024020004 +n42024020005 +n42024020006 +n42024020007 +n42024020008 +n42024020009 +n42024020010 +n42024020011 +n42024020012 +n42024020013 +n42024020014 +n42024020015 +n42024020016 +n42024021002 +n42024021001 +n42024021003 +n42024021004 +n42024021005 +n42024021006 +n42024021007 +n42024021008 +n42024021009 +n42024021010 +n42024021011 +n42024021012 +n42024021013 +n42024021014 +n42024021015 +n42024021016 +n42024021017 +n42024021018 +n42024021019 +n42024021020 +n42024021021 +n42024021022 +n42024021023 +n42024021024 +n42024021025 +n42024022001 +n42024022002 +n42024022003 +n42024022004 +n42024022005 +n42024022006 +n42024022007 +n42024022008 +n42024022009 +n42024022010 +n42024022011 +n42024022012 +n42024022013 +n42024023001 +n42024023002 +n42024023003 +n42024023004 +n42024023005 +n42024023006 +n42024023007 +n42024023008 +n42024023009 +n42024023010 +n42024023011 +n42024023012 +n42024023013 +n42024023014 +n42024023015 +n42024023016 +n42024024001 +n42024024002 +n42024024003 +n42024024004 +n42024024005 +n42024024006 +n42024024007 +n42024024008 +n42024024009 +n42024024010 +n42024024011 +n42024024012 +n42024024013 +n42024024014 +n42024024015 +n42024024016 +n42024024017 +n42024024019 +n42024024018 +n42024024020 +n42024024021 +n42024025001 +n42024025002 +n42024025003 +n42024025004 +n42024025005 +n42024025006 +n42024025007 +n42024025008 +n42024025009 +n42024025010 +n42024025011 +n42024025012 +n42024025013 +n42024025014 +n42024025015 +n42024025016 +n42024025017 +n42024025018 +n42024025019 +n42024026001 +n42024026003 +n42024026002 +n42024026004 +n42024026005 +n42024026006 +n42024026007 +n42024026008 +n42024026009 +n42024026010 +n42024026011 +n42024026012 +n42024027001 +n42024027002 +n42024027003 +n42024027004 +n42024027005 +n42024027006 +n42024027007 +n42024027008 +n42024027009 +n42024027010 +n42024027011 +n42024027012 +n42024027013 +n42024027014 +n42024027015 +n42024027016 +n42024027017 +n42024027018 +n42024028001 +n42024028002 +n42024028003 +n42024028004 +n42024028005 +n42024028006 +n42024028007 +n42024028008 +n42024028009 +n42024028010 +n42024028011 +n42024028012 +n42024029001 +n42024029002 +n42024029003 +n42024029004 +n42024029005 +n42024029006 +n42024029007 +n42024029008 +n42024029009 +n42024029010 +n42024029011 +n42024029012 +n42024029013 +n42024029014 +n42024029015 +n42024029016 +n42024029017 +n42024029018 +n42024029019 +n42024029020 +n42024029021 +n42024029022 +n42024030001 +n42024030002 +n42024030003 +n42024030004 +n42024030005 +n42024030006 +n42024030007 +n42024030008 +n42024030009 +n42024030010 +n42024030011 +n42024030012 +n42024030013 +n42024030014 +n42024030015 +n42024030016 +n42024031002 +n42024031001 +n42024031004 +n42024031005 +n42024031003 +n42024031006 +n42024031007 +n42024031008 +n42024031009 +n42024031010 +n42024031011 +n42024031012 +n42024031013 +n42024031014 +n42024032001 +n42024032002 +n42024032003 +n42024032004 +n42024032005 +n42024032006 +n42024032007 +n42024032008 +n42024032009 +n42024032010 +n42024032011 +n42024032012 +n42024032013 +n42024032014 +n42024032015 +n42024032016 +n42024032017 +n42024032018 +n42024032019 +n42024032020 +n42024032021 +n42024032022 +n42024032023 +n42024033001 +n42024033002 +n42024033003 +n42024033004 +n42024033005 +n42024033006 +n42024033007 +n42024033008 +n42024033009 +n42024033010 +n42024033011 +n42024033012 +n42024033013 +n42024033014 +n42024033015 +n42024033016 +n42024033017 +n42024034001 +n42024034002 +n42024034003 +n42024034004 +n42024034005 +n42024034006 +n42024034007 +n42024034008 +n42024034009 +n42024035001 +n42024035002 +n42024035003 +n42024035004 +n42024035005 +n42024035006 +n42024035007 +n42024035008 +n42024035009 +n42024035010 +n42024035011 +n42024035012 +n42024035013 +n42024035014 +n42024035015 +n42024035016 +n42024036002 +n42024036001 +n42024036003 +n42024036004 +n42024036005 +n42024036006 +n42024036007 +n42024036008 +n42024036009 +n42024036010 +n42024036011 +n42024036012 +n42024036013 +n42024036014 +n42024037002 +n42024037001 +n42024037003 +n42024037004 +n42024037005 +n42024037006 +n42024037007 +n42024037008 +n42024038001 +n42024038002 +n42024038003 +n42024038004 +n42024038005 +n42024038006 +n42024038007 +n42024038008 +n42024038009 +n42024038010 +n42024038011 +n42024038012 +n42024038013 +n42024038014 +n42024038015 +n42024039001 +n42024039002 +n42024039003 +n42024039004 +n42024039005 +n42024039006 +n42024039007 +n42024039008 +n42024039009 +n42024039010 +n42024039011 +n42024039012 +n42024039013 +n42024039014 +n42024039015 +n42024039016 +n42024039017 +n42024039018 +n42024039019 +n42024039020 +n42024039021 +n42024039022 +n42024039023 +n42024039024 +n42024039025 +n42024039027 +n42024039026 +n42024040001 +n42024040002 +n42024040003 +n42024040004 +n42024040005 +n42024040006 +n42024040007 +n42024040008 +n42024040009 +n42024040010 +n42024041002 +n42024041001 +n42024041003 +n42024041004 +n42024041005 +n42024041006 +n42024041007 +n42024041008 +n42024041009 +n42024041010 +n42024041011 +n42024041012 +n42024041013 +n42024041014 +n42024041015 +n42024042002 +n42024042001 +n42024042003 +n42024042004 +n42024042005 +n42024042006 +n42024042007 +n42024043001 +n42024043002 +n42024043003 +n42024043004 +n42024043005 +n42024044002 +n42024044001 +n42024044003 +n42024044004 +n42024044005 +n42024044006 +n42024044007 +n42024044008 +n42024044009 +n42024044010 +n42024044011 +n42024044012 +n42024044013 +n42024044014 +n42024044015 +n42024044016 +n42024044017 +n42024044018 +n42024044019 +n42024044020 +n42024044021 +n42024044022 +n42024044023 +n42024044024 +n42024044025 +n42024044026 +n42024044027 +n42024044028 +n42024044029 +n42024044030 +n42024044031 +n42024044032 +n42024044033 +n42024045001 +n42024045002 +n42024045003 +n42024045004 +n42024045005 +n42024045006 +n42024045007 +n42024045008 +n42024045009 +n42024045010 +n42024045011 +n42024045012 +n42024046001 +n42024046002 +n42024046003 +n42024046004 +n42024046005 +n42024046006 +n42024046007 +n42024046008 +n42024046009 +n42024046010 +n42024046011 +n42024046012 +n42024046013 +n42024047001 +n42024047002 +n42024047003 +n42024047004 +n42024047005 +n42024047006 +n42024047007 +n42024047008 +n42024047009 +n42024047010 +n42024047011 +n42024047012 +n42024047013 +n42024047014 +n42024047015 +n42024047016 +n42024047017 +n42024048001 +n42024048002 +n42024048003 +n42024049001 +n42024049002 +n42024049003 +n42024049004 +n42024049005 +n42024049006 +n42024049007 +n42024049008 +n42024049009 +n42024049010 +n42024049011 +n42024049013 +n42024049012 +n42024049014 +n42024049015 +n42024049016 +n42024049017 +n42024049018 +n42024049019 +n42024049020 +n42024049021 +n42024049022 +n42024049023 +n42024050002 +n42024050001 +n42024050003 +n42024050004 +n42024050005 +n42024050006 +n42024050007 +n42024050008 +n42024050009 +n42024050010 +n42024050011 +n42024050012 +n42024050013 +n42024051001 +n42024051002 +n42024051003 +n42024051004 +n42024051005 +n42024051006 +n42024051007 +n42024051008 +n42024051009 +n42024051010 +n42024051011 +n42024051012 +n42024051013 +n42024051014 +n42024051015 +n42024052001 +n42024052002 +n42024052003 +n42024052004 +n42024052005 +n42024052006 +n42024052007 +n42024052008 +n42024052009 +n42024052010 +n42024053001 +n42024053002 +n42024053008 +n42024053003 +n42024053004 +n42024053005 +n42024053006 +n42024053007 +n42024053009 +n42024053010 +n43001001001 +n43001001002 +n43001001003 +n43001001004 +n43001001005 +n43001001006 +n43001001007 +n43001001008 +n43001001009 +n43001001010 +n43001001011 +n43001001012 +n43001001013 +n43001001014 +n43001001015 +n43001001016 +n43001001017 +n43001002001 +n43001002002 +n43001002003 +n43001002004 +n43001002005 +n43001002006 +n43001002007 +n43001003001 +n43001003002 +n43001003003 +n43001003004 +n43001003005 +n43001003006 +n43001003007 +n43001003008 +n43001003009 +n43001003010 +n43001003011 +n43001003012 +n43001004001 +n43001004002 +n43001004003 +n43001004004 +n43001004005 +n43001004006 +n43001004007 +n43001004008 +n43001004009 +n43001004010 +n43001004011 +n43001004012 +n43001005001 +n43001005002 +n43001005003 +n43001005004 +n43001005005 +n43001005006 +n43001005007 +n43001005008 +n43001005009 +n43001005010 +n43001005011 +n43001005012 +n43001005013 +n43001006001 +n43001006002 +n43001006003 +n43001006004 +n43001006005 +n43001006006 +n43001006007 +n43001006008 +n43001007001 +n43001007002 +n43001007003 +n43001007004 +n43001007005 +n43001007006 +n43001007007 +n43001007008 +n43001007009 +n43001007010 +n43001007011 +n43001007012 +n43001007013 +n43001007014 +n43001008001 +n43001008002 +n43001008003 +n43001008004 +n43001008005 +n43001008006 +n43001008007 +n43001008008 +n43001008009 +n43001008010 +n43001008011 +n43001009002 +n43001009003 +n43001009004 +n43001009005 +n43001009006 +n43001009007 +n43001009008 +n43001009009 +n43001009001 +n43001009010 +n43001009011 +n43001009012 +n43001009013 +n43001010001 +n43001010002 +n43001010003 +n43001010004 +n43001010005 +n43001010006 +n43001010007 +n43001010008 +n43001010009 +n43001010010 +n43001010011 +n43001010012 +n43001010013 +n43001010014 +n43001010015 +n43001010016 +n43001011001 +n43001011002 +n43001011003 +n43001011004 +n43001011005 +n43001011006 +n43001011007 +n43001011008 +n43001011009 +n43001011010 +n43001012002 +n43001012001 +n43001012003 +n43001012004 +n43001012005 +n43001012007 +n43001012008 +n43001012009 +n43001012010 +n43001012006 +n43001012011 +n43001012012 +n43001012013 +n43001012014 +n43001012015 +n43001012016 +n43001013001 +n43001013002 +n43001013003 +n43001013004 +n43001013005 +n43001013006 +n43001013007 +n43001013008 +n43001013009 +n43001013010 +n43001013011 +n43001013012 +n43001013013 +n43001013014 +n43001013015 +n43001013016 +n43001014001 +n43001014002 +n43001014003 +n43001014004 +n43001014005 +n43001014006 +n43001014007 +n43001014008 +n43001014009 +n43001014010 +n43001014011 +n43001014012 +n43001014013 +n43001014014 +n43001014015 +n43001014016 +n43001014017 +n43001014018 +n43001014019 +n43001014020 +n43001014021 +n43001014022 +n43001014023 +n43001015001 +n43001015002 +n43001015003 +n43001015004 +n43001015005 +n43001015006 +n43001015007 +n43001015008 +n43001015009 +n43001015010 +n43001015011 +n43001015012 +n43001015013 +n43001015014 +n43001015015 +n43001015016 +n43001015017 +n43001015018 +n43001015019 +n43001015020 +n43001015021 +n43001015022 +n43001016001 +n43001016002 +n43001016003 +n43001016004 +n43001016005 +n43001016006 +n43001016007 +n43001016008 +n43001016009 +n43001016010 +n43001016011 +n43001016012 +n43001017001 +n43001017002 +n43001017003 +n43001017004 +n43001017005 +n43001017006 +n43001017007 +n43001017008 +n43001017009 +n43001017010 +n43001017011 +n43001017012 +n43001017013 +n43001017014 +n43001017015 +n43001018001 +n43001018002 +n43001018003 +n43001018004 +n43001018005 +n43001018006 +n43001018007 +n43001018008 +n43001018009 +n43001018010 +n43001018011 +n43001018012 +n43001018013 +n43001018014 +n43001018015 +n43001019001 +n43001019002 +n43001019003 +n43001019004 +n43001019005 +n43001019006 +n43001019007 +n43001019008 +n43001019009 +n43001019010 +n43001019011 +n43001019012 +n43001019013 +n43001019014 +n43001019015 +n43001019016 +n43001019017 +n43001019018 +n43001019019 +n43001019020 +n43001019021 +n43001019022 +n43001019023 +n43001019024 +n43001020001 +n43001020002 +n43001020003 +n43001020004 +n43001020005 +n43001020006 +n43001020007 +n43001020008 +n43001020009 +n43001020010 +n43001020011 +n43001020012 +n43001020013 +n43001021001 +n43001021002 +n43001021003 +n43001021005 +n43001021004 +n43001021006 +n43001021007 +n43001021008 +n43001021009 +n43001021010 +n43001021011 +n43001021012 +n43001021013 +n43001021014 +n43001021015 +n43001021016 +n43001021017 +n43001021018 +n43001021019 +n43001022002 +n43001022001 +n43001022003 +n43001022004 +n43001022005 +n43001022006 +n43001022007 +n43001022008 +n43001022009 +n43001022010 +n43001022011 +n43001022012 +n43001022013 +n43001022014 +n43001022015 +n43001023001 +n43001023002 +n43001023003 +n43001023004 +n43001023005 +n43001023006 +n43001023007 +n43001023008 +n43001023009 +n43001023010 +n43001023011 +n43001023012 +n43001023013 +n43001023014 +n43001023015 +n43001023016 +n43001024001 +n43001024002 +n43001024003 +n43001024004 +n43001024005 +n43001024006 +n43001025001 +n43001025002 +n43001025003 +n43001025004 +n43001025005 +n43001025006 +n43001025008 +n43001025007 +n43001025009 +n43001025010 +n43001025011 +n43001025012 +n43001025013 +n43001025014 +n43001025015 +n43001025016 +n43001025017 +n43001025018 +n43001025019 +n43001025020 +n43001026001 +n43001026002 +n43001026003 +n43001026004 +n43001026005 +n43001026006 +n43001026007 +n43001026008 +n43001026009 +n43001026010 +n43001026011 +n43001026012 +n43001026013 +n43001026014 +n43001026015 +n43001026016 +n43001027001 +n43001027002 +n43001027003 +n43001027004 +n43001027005 +n43001027006 +n43001027007 +n43001027008 +n43001027009 +n43001027010 +n43001027011 +n43001027012 +n43001027013 +n43001027014 +n43001027015 +n43001027016 +n43001028001 +n43001028002 +n43001028003 +n43001028004 +n43001028005 +n43001028006 +n43001028007 +n43001028008 +n43001028009 +n43001028012 +n43001028010 +n43001028011 +n43001029001 +n43001029002 +n43001029003 +n43001029004 +n43001029005 +n43001029006 +n43001029007 +n43001029008 +n43001029009 +n43001029010 +n43001029011 +n43001029012 +n43001029013 +n43001029014 +n43001029015 +n43001029016 +n43001029017 +n43001029018 +n43001029019 +n43001029020 +n43001029021 +n43001030001 +n43001030002 +n43001030003 +n43001030004 +n43001030005 +n43001030006 +n43001030007 +n43001030008 +n43001030009 +n43001030010 +n43001030011 +n43001030012 +n43001030013 +n43001030014 +n43001030015 +n43001030016 +n43001030017 +n43001030018 +n43001031001 +n43001031002 +n43001031003 +n43001031004 +n43001031005 +n43001031006 +n43001031007 +n43001031008 +n43001031009 +n43001031010 +n43001031011 +n43001031012 +n43001031013 +n43001031014 +n43001031015 +n43001031016 +n43001032001 +n43001032002 +n43001032003 +n43001032004 +n43001032005 +n43001032006 +n43001032007 +n43001032008 +n43001032009 +n43001032010 +n43001032011 +n43001032012 +n43001032013 +n43001032014 +n43001032015 +n43001032016 +n43001032017 +n43001033001 +n43001033002 +n43001033003 +n43001033004 +n43001033005 +n43001033006 +n43001033007 +n43001033008 +n43001033009 +n43001033010 +n43001033011 +n43001033012 +n43001033013 +n43001033014 +n43001033017 +n43001033015 +n43001033016 +n43001033018 +n43001033019 +n43001033020 +n43001033021 +n43001033022 +n43001033023 +n43001033024 +n43001033025 +n43001033026 +n43001033027 +n43001033028 +n43001033029 +n43001033030 +n43001033031 +n43001033032 +n43001034001 +n43001034002 +n43001034003 +n43001034004 +n43001034005 +n43001034006 +n43001034007 +n43001034008 +n43001034009 +n43001034010 +n43001034011 +n43001035001 +n43001035002 +n43001035003 +n43001035004 +n43001035005 +n43001035006 +n43001035007 +n43001035008 +n43001035009 +n43001035010 +n43001035011 +n43001035012 +n43001036001 +n43001036002 +n43001036003 +n43001036004 +n43001036005 +n43001036006 +n43001036007 +n43001036008 +n43001036009 +n43001036010 +n43001036011 +n43001037001 +n43001037002 +n43001037003 +n43001037004 +n43001037005 +n43001037006 +n43001037007 +n43001037008 +n43001037009 +n43001037010 +n43001037011 +n43001038002 +n43001038003 +n43001038004 +n43001038001 +n43001038005 +n43001038006 +n43001038007 +n43001038008 +n43001038009 +n43001038010 +n43001038011 +n43001038012 +n43001038014 +n43001038013 +n43001038015 +n43001038016 +n43001038017 +n43001038018 +n43001038019 +n43001038020 +n43001038021 +n43001038022 +n43001038023 +n43001039001 +n43001039002 +n43001039003 +n43001039004 +n43001039005 +n43001039007 +n43001039006 +n43001039008 +n43001039009 +n43001039010 +n43001039011 +n43001039012 +n43001039013 +n43001039014 +n43001039015 +n43001039016 +n43001039017 +n43001039018 +n43001039019 +n43001039020 +n43001039021 +n43001039022 +n43001040001 +n43001040002 +n43001040003 +n43001040004 +n43001040005 +n43001040006 +n43001040007 +n43001040008 +n43001040009 +n43001040010 +n43001040011 +n43001040012 +n43001040013 +n43001040014 +n43001040015 +n43001040016 +n43001040017 +n43001041001 +n43001041002 +n43001041003 +n43001041004 +n43001041005 +n43001041006 +n43001041007 +n43001041008 +n43001041009 +n43001041010 +n43001041011 +n43001041012 +n43001041013 +n43001041014 +n43001041015 +n43001041016 +n43001041017 +n43001041018 +n43001042001 +n43001042002 +n43001042003 +n43001042004 +n43001042005 +n43001042006 +n43001042007 +n43001042008 +n43001042009 +n43001042010 +n43001042011 +n43001042012 +n43001042013 +n43001042014 +n43001042015 +n43001042016 +n43001042017 +n43001042018 +n43001042019 +n43001042020 +n43001042021 +n43001042022 +n43001043001 +n43001043002 +n43001043003 +n43001043004 +n43001043005 +n43001043006 +n43001043007 +n43001043008 +n43001043009 +n43001043010 +n43001043011 +n43001043012 +n43001043013 +n43001043014 +n43001043015 +n43001043016 +n43001043017 +n43001044002 +n43001044001 +n43001044003 +n43001044004 +n43001044005 +n43001044006 +n43001044007 +n43001044008 +n43001044009 +n43001044010 +n43001044011 +n43001044012 +n43001045001 +n43001045002 +n43001045003 +n43001045004 +n43001045005 +n43001045006 +n43001045007 +n43001045008 +n43001045009 +n43001045010 +n43001045011 +n43001045012 +n43001045013 +n43001045014 +n43001045015 +n43001045016 +n43001045017 +n43001045018 +n43001045019 +n43001045020 +n43001045021 +n43001045022 +n43001045023 +n43001045024 +n43001046001 +n43001046002 +n43001046003 +n43001046004 +n43001046005 +n43001046006 +n43001046010 +n43001046007 +n43001046008 +n43001046009 +n43001046011 +n43001046012 +n43001046013 +n43001046014 +n43001046015 +n43001046016 +n43001046017 +n43001047001 +n43001047002 +n43001047003 +n43001047004 +n43001047005 +n43001047006 +n43001047007 +n43001047008 +n43001047009 +n43001047010 +n43001047011 +n43001047012 +n43001047013 +n43001047014 +n43001047015 +n43001047016 +n43001047017 +n43001047018 +n43001047019 +n43001048001 +n43001048002 +n43001048003 +n43001048004 +n43001048005 +n43001048006 +n43001048007 +n43001048008 +n43001048009 +n43001048010 +n43001048011 +n43001048012 +n43001048013 +n43001048014 +n43001048015 +n43001048016 +n43001048017 +n43001048018 +n43001048019 +n43001048020 +n43001048022 +n43001048021 +n43001049001 +n43001049002 +n43001049003 +n43001049004 +n43001049005 +n43001049006 +n43001049007 +n43001049008 +n43001049009 +n43001049010 +n43001049011 +n43001049012 +n43001049014 +n43001049015 +n43001049013 +n43001050001 +n43001050002 +n43001050003 +n43001050004 +n43001050005 +n43001050006 +n43001050007 +n43001050008 +n43001050009 +n43001050010 +n43001050011 +n43001050012 +n43001050013 +n43001050014 +n43001050015 +n43001050016 +n43001050017 +n43001050018 +n43001051001 +n43001051002 +n43001051003 +n43001051004 +n43001051005 +n43001051006 +n43001051007 +n43001051008 +n43001051009 +n43001051010 +n43001051011 +n43001051012 +n43001051013 +n43001051014 +n43001051015 +n43001051016 +n43001051017 +n43001051018 +n43001051019 +n43001051020 +n43001051021 +n43001051022 +n43001051023 +n43001051024 +n43002001001 +n43002001002 +n43002001003 +n43002001004 +n43002001005 +n43002001006 +n43002001007 +n43002001008 +n43002001009 +n43002001010 +n43002001011 +n43002001012 +n43002001013 +n43002001014 +n43002001015 +n43002001016 +n43002001017 +n43002001018 +n43002002002 +n43002002001 +n43002002003 +n43002002004 +n43002002005 +n43002002006 +n43002002007 +n43002002008 +n43002002009 +n43002002010 +n43002002011 +n43002002012 +n43002003001 +n43002003002 +n43002003003 +n43002003004 +n43002003005 +n43002003006 +n43002003007 +n43002003008 +n43002003009 +n43002003010 +n43002003011 +n43002003012 +n43002003013 +n43002004001 +n43002004002 +n43002004003 +n43002004004 +n43002004005 +n43002004006 +n43002004007 +n43002004008 +n43002004009 +n43002004010 +n43002004011 +n43002004012 +n43002004013 +n43002004014 +n43002004015 +n43002005001 +n43002005002 +n43002005003 +n43002005004 +n43002005005 +n43002005006 +n43002005008 +n43002005009 +n43002005007 +n43002005010 +n43002005011 +n43002005012 +n43002006002 +n43002006001 +n43002006012 +n43002006003 +n43002006004 +n43002006005 +n43002006006 +n43002006007 +n43002006008 +n43002006009 +n43002006010 +n43002006011 +n43002006013 +n43002006014 +n43002006015 +n43002006016 +n43002006017 +n43002006018 +n43002007001 +n43002007002 +n43002007003 +n43002007004 +n43002007005 +n43002007006 +n43002007007 +n43002007008 +n43002007009 +n43002007010 +n43002007011 +n43002007012 +n43002007013 +n43002008001 +n43002008002 +n43002008003 +n43002008004 +n43002008005 +n43002008006 +n43002008007 +n43002008008 +n43002008009 +n43002008011 +n43002008010 +n43002008012 +n43002009002 +n43002009001 +n43002009003 +n43002009004 +n43002009005 +n43002009006 +n43002009007 +n43002009008 +n43002009009 +n43002009010 +n43002009011 +n43002009012 +n43002009013 +n43002009014 +n43002009016 +n43002009018 +n43002009015 +n43002009017 +n43002009019 +n43002009020 +n43002009021 +n43002009022 +n43002009023 +n43002009024 +n43002009025 +n43002009026 +n43002009027 +n43002010001 +n43002010002 +n43002010003 +n43002010004 +n43002010005 +n43002010006 +n43002010007 +n43002010008 +n43002010009 +n43002010010 +n43002010011 +n43002010012 +n43002010013 +n43002010014 +n43002010015 +n43002010016 +n43002010017 +n43002010018 +n43002010019 +n43002010020 +n43002010021 +n43002010022 +n43002011001 +n43002011003 +n43002011004 +n43002011005 +n43002011002 +n43002011006 +n43002011007 +n43002011008 +n43002011009 +n43002011010 +n43002011011 +n43002011012 +n43002011013 +n43002011014 +n43002011015 +n43002011016 +n43002011017 +n43002011018 +n43002011019 +n43002011020 +n43002011021 +n43002011022 +n43002011023 +n43002012001 +n43002012002 +n43002012003 +n43002012004 +n43002012005 +n43002012006 +n43002012007 +n43002012008 +n43002012009 +n43002012010 +n43002012011 +n43002012012 +n43002012013 +n43002012014 +n43002012015 +n43002012016 +n43002012017 +n43002012018 +n43002012019 +n43002012020 +n43002012021 +n43002012022 +n43002012023 +n43002013001 +n43002013002 +n43002013003 +n43002013004 +n43002013005 +n43002013006 +n43002013007 +n43002013008 +n43002013009 +n43002013010 +n43002013011 +n43002013012 +n43002013013 +n43002014001 +n43002014002 +n43002014003 +n43002014004 +n43002014005 +n43002014006 +n43002014007 +n43002014008 +n43002014009 +n43002014010 +n43002014011 +n43002014012 +n43002014013 +n43002014014 +n43002014015 +n43002014016 +n43002015001 +n43002015002 +n43002015003 +n43002015004 +n43002015005 +n43002015006 +n43002015007 +n43002015008 +n43002015009 +n43002015010 +n43002015012 +n43002015011 +n43002015013 +n43002015014 +n43002015015 +n43002015016 +n43002015017 +n43002015018 +n43002015019 +n43002015021 +n43002015022 +n43002015020 +n43002015023 +n43002015024 +n43002015025 +n43002015026 +n43002016001 +n43002016002 +n43002016003 +n43002016004 +n43002016005 +n43002016006 +n43002016007 +n43002016008 +n43002016009 +n43002016010 +n43002016011 +n43002016012 +n43002016013 +n43002016014 +n43002016015 +n43002016016 +n43002016017 +n43002016018 +n43002017001 +n43002017002 +n43002017003 +n43002017004 +n43002017005 +n43002017006 +n43002017007 +n43002017008 +n43002017009 +n43002017010 +n43002017011 +n43002017012 +n43002017013 +n43002017014 +n43002018002 +n43002018001 +n43002018003 +n43002018004 +n43002018005 +n43002018006 +n43002018007 +n43002018008 +n43002018009 +n43002018010 +n43002018011 +n43002018012 +n43002018013 +n43002018014 +n43002019001 +n43002019002 +n43002019003 +n43002019004 +n43002019005 +n43002019006 +n43002019007 +n43002019008 +n43002019009 +n43002019010 +n43002019011 +n43002019012 +n43002019013 +n43002019014 +n43002019015 +n43002020002 +n43002020001 +n43002020003 +n43002020004 +n43002020005 +n43002020006 +n43002020007 +n43002020008 +n43002020009 +n43002020010 +n43002020011 +n43002020012 +n43002020013 +n43002020014 +n43002020015 +n43002020016 +n43002020017 +n43002020018 +n43002020019 +n43002021002 +n43002021001 +n43002021003 +n43002021004 +n43002021005 +n43002021006 +n43002021007 +n43002021008 +n43002021009 +n43002022002 +n43002022001 +n43002022003 +n43002022004 +n43002022005 +n43002022006 +n43002022007 +n43002022008 +n43002022009 +n43002022010 +n43002022011 +n43002022012 +n43002022013 +n43002022014 +n43002022015 +n43002022016 +n43002022017 +n43002022018 +n43002022019 +n43002022020 +n43002022021 +n43002022022 +n43002022023 +n43002023002 +n43002023001 +n43002023003 +n43002023004 +n43002023005 +n43002023006 +n43002023007 +n43002023008 +n43002023009 +n43002023010 +n43002023011 +n43002023012 +n43002023013 +n43002023014 +n43002023015 +n43002023016 +n43002023017 +n43002023018 +n43002023019 +n43002023020 +n43002023021 +n43002023022 +n43002023023 +n43002023024 +n43002024002 +n43002024001 +n43002024003 +n43002024004 +n43002024005 +n43002024006 +n43002024007 +n43002024008 +n43002024009 +n43002024010 +n43002024011 +n43002024012 +n43002025001 +n43002025002 +n43002025003 +n43002025004 +n43002025005 +n43002025006 +n43002025007 +n43002025008 +n43002025009 +n43002025010 +n43002025011 +n43002025013 +n43002025012 +n43002025014 +n43002025015 +n43002025016 +n43002025017 +n43002025018 +n43002025019 +n43003001002 +n43003001001 +n43003001003 +n43003001004 +n43003001005 +n43003001006 +n43003001010 +n43003001011 +n43003001012 +n43003001007 +n43003001008 +n43003001009 +n43003002001 +n43003002002 +n43003002003 +n43003002004 +n43003002005 +n43003002006 +n43003002007 +n43003002008 +n43003002009 +n43003002010 +n43003002011 +n43003002012 +n43003002013 +n43003002014 +n43003002015 +n43003002017 +n43003002016 +n43003002018 +n43003002019 +n43003002020 +n43003002021 +n43003002023 +n43003002024 +n43003002025 +n43003002022 +n43003002026 +n43003002027 +n43003002028 +n43003002029 +n43003002030 +n43003002031 +n43003002032 +n43003003001 +n43003003002 +n43003003003 +n43003003004 +n43003003005 +n43003003006 +n43003003007 +n43003003008 +n43003003009 +n43003003010 +n43003003011 +n43003003012 +n43003003013 +n43003003014 +n43003003015 +n43003003016 +n43003003017 +n43003003018 +n43003003019 +n43003003020 +n43003003021 +n43003004001 +n43003004002 +n43003004003 +n43003004004 +n43003004005 +n43003004006 +n43003004007 +n43003004008 +n43003004009 +n43003004010 +n43003004011 +n43003004012 +n43003004013 +n43003004014 +n43003004015 +n43003004016 +n43003004017 +n43003004018 +n43003004019 +n43003004020 +n43003004021 +n43003004022 +n43003004023 +n43003005001 +n43003005002 +n43003005003 +n43003005004 +n43003005005 +n43003005006 +n43003005007 +n43003005008 +n43003005009 +n43003005010 +n43003005011 +n43003005012 +n43003005013 +n43003005014 +n43003005015 +n43003005016 +n43003005017 +n43003005018 +n43003005019 +n43003005020 +n43003005021 +n43003005022 +n43003006001 +n43003006002 +n43003006003 +n43003006004 +n43003006005 +n43003006006 +n43003006007 +n43003006008 +n43003006009 +n43003006010 +n43003006011 +n43003006012 +n43003006013 +n43003006014 +n43003006015 +n43003007001 +n43003007002 +n43003007003 +n43003007004 +n43003007005 +n43003007006 +n43003007007 +n43003007008 +n43003007009 +n43003008001 +n43003008002 +n43003008003 +n43003008004 +n43003008005 +n43003008006 +n43003008007 +n43003008008 +n43003008009 +n43003008010 +n43003008011 +n43003008012 +n43003008013 +n43003008014 +n43003008015 +n43003008016 +n43003008017 +n43003008018 +n43003008019 +n43003008020 +n43003008021 +n43003008022 +n43003008023 +n43003008024 +n43003008025 +n43003008026 +n43003009001 +n43003009002 +n43003009003 +n43003009004 +n43003009005 +n43003009006 +n43003009007 +n43003009008 +n43003009009 +n43003010001 +n43003010002 +n43003010003 +n43003010004 +n43003010005 +n43003010006 +n43003010007 +n43003010008 +n43003010009 +n43003010010 +n43003010011 +n43003010012 +n43003010013 +n43003010014 +n43003010015 +n43003011001 +n43003011002 +n43003011003 +n43003011004 +n43003011005 +n43003011006 +n43003011007 +n43003011008 +n43003011009 +n43003011010 +n43003011011 +n43003011012 +n43003011013 +n43003011014 +n43003011015 +n43003011016 +n43003011017 +n43003011018 +n43003012001 +n43003012002 +n43003012003 +n43003012004 +n43003012005 +n43003012006 +n43003012007 +n43003012008 +n43003012009 +n43003012010 +n43003012011 +n43003012012 +n43003012013 +n43003012014 +n43003012015 +n43003013001 +n43003013002 +n43003013003 +n43003013004 +n43003013005 +n43003013006 +n43003013007 +n43003013008 +n43003013009 +n43003013010 +n43003013011 +n43003013012 +n43003013013 +n43003013014 +n43003013015 +n43003013016 +n43003013017 +n43003014001 +n43003014002 +n43003014003 +n43003014004 +n43003014005 +n43003014006 +n43003014007 +n43003014008 +n43003014009 +n43003014010 +n43003014012 +n43003014011 +n43003014013 +n43003014014 +n43003014015 +n43003014016 +n43003015001 +n43003015002 +n43003015003 +n43003015004 +n43003015005 +n43003015006 +n43003015007 +n43003015008 +n43003015009 +n43003016002 +n43003016001 +n43003016003 +n43003016004 +n43003016005 +n43003016006 +n43003016007 +n43003016008 +n43003016009 +n43003016010 +n43003016011 +n43003016012 +n43003016013 +n43003016014 +n43003016015 +n43003016016 +n43003016017 +n43003016018 +n43003016019 +n43003016020 +n43003016021 +n43003016022 +n43003016023 +n43003016024 +n43003016025 +n43003017002 +n43003017001 +n43003017003 +n43003017004 +n43003017005 +n43003017006 +n43003017007 +n43003017008 +n43003017009 +n43003017010 +n43003017011 +n43003017012 +n43003017013 +n43003017014 +n43003017015 +n43003017016 +n43003017017 +n43003017018 +n43003017019 +n43003017020 +n43003017021 +n43003018001 +n43003018002 +n43003018003 +n43003018004 +n43003018005 +n43003018006 +n43003018007 +n43003018008 +n43003018009 +n43003018010 +n43003018011 +n43003018012 +n43003018013 +n43003018014 +n43003018015 +n43003018016 +n43003018017 +n43003018018 +n43003018019 +n43003018020 +n43003018021 +n43003018022 +n43003019002 +n43003019001 +n43003019003 +n43003019004 +n43003019005 +n43003019006 +n43003019007 +n43003019008 +n43003019009 +n43003019010 +n43003019011 +n43003019012 +n43003019013 +n43003019014 +n43003019015 +n43003019016 +n43003019017 +n43003019018 +n43003019019 +n43003019020 +n43003019021 +n43003019022 +n43003019024 +n43003019023 +n43003019026 +n43003019025 +n43003019027 +n43003019028 +n43003020002 +n43003020001 +n43003020003 +n43003020004 +n43003020005 +n43003020006 +n43003020007 +n43003020008 +n43003020009 +n43003020010 +n43003020011 +n43003020012 +n43003020013 +n43003020014 +n43003020015 +n43003020016 +n43003020017 +n43003020018 +n43003020019 +n43003020020 +n43003021002 +n43003021001 +n43003021003 +n43003021004 +n43003021005 +n43003021006 +n43003021007 +n43003021008 +n43003021009 +n43003021010 +n43003021011 +n43003021012 +n43003021013 +n43003021014 +n43003021015 +n43003021016 +n43003021017 +n43003021018 +n43003021019 +n43003022001 +n43003022002 +n43003022003 +n43003022004 +n43003022005 +n43003022006 +n43003022007 +n43003022008 +n43003022009 +n43003022010 +n43003022011 +n43003022012 +n43003022013 +n43003022014 +n43003022015 +n43003022016 +n43003022017 +n43003022018 +n43003022019 +n43003022020 +n43003023002 +n43003023001 +n43003023005 +n43003023003 +n43003023004 +n43003023006 +n43003023007 +n43003023008 +n43003023009 +n43003023010 +n43003023011 +n43003023012 +n43003023013 +n43003023014 +n43003023015 +n43003023016 +n43003023017 +n43003023018 +n43003023019 +n43003024002 +n43003024001 +n43003024003 +n43003024004 +n43003024005 +n43003024006 +n43003024007 +n43003024008 +n43003025002 +n43003025001 +n43003025003 +n43003025004 +n43003025005 +n43003025006 +n43003025007 +n43003025008 +n43003025009 +n43003025010 +n43003025011 +n43003026001 +n43003026002 +n43003026003 +n43003026004 +n43003026005 +n43003026006 +n43003026007 +n43003026008 +n43003026009 +n43003026010 +n43003026011 +n43003026012 +n43003026013 +n43003026014 +n43003026015 +n43003026016 +n43003026017 +n43003026018 +n43003026019 +n43003026020 +n43003026021 +n43003026022 +n43003026023 +n43003026024 +n43003026025 +n43003026026 +n43003026027 +n43003027001 +n43003027002 +n43003027003 +n43003027004 +n43003027005 +n43003027006 +n43003027007 +n43003027008 +n43003027009 +n43003027010 +n43003027011 +n43003027012 +n43003027013 +n43003027014 +n43003027015 +n43003027016 +n43003027017 +n43003028001 +n43003028002 +n43003028003 +n43003028004 +n43003028005 +n43003028006 +n43003028007 +n43003028008 +n43003028009 +n43003028010 +n43003028011 +n43003028012 +n43003028013 +n43003028014 +n43003028015 +n43003028016 +n43003028017 +n43003029001 +n43003029002 +n43003029003 +n43003029004 +n43003029005 +n43003029006 +n43003029008 +n43003029007 +n43003029009 +n43003029010 +n43003029011 +n43003029012 +n43003029013 +n43003029014 +n43003029015 +n43003029016 +n43003029017 +n43003029018 +n43003029019 +n43003029020 +n43003029021 +n43003029022 +n43003029023 +n43003029025 +n43003029024 +n43003029026 +n43003029027 +n43003029028 +n43003029029 +n43003029030 +n43003030002 +n43003030001 +n43003030003 +n43003030005 +n43003030004 +n43003030006 +n43003031001 +n43003031002 +n43003031003 +n43003031004 +n43003031005 +n43003031006 +n43003031007 +n43003031008 +n43003031009 +n43003031010 +n43003031011 +n43003031012 +n43003031013 +n43003031014 +n43003031015 +n43003031016 +n43003031017 +n43003031018 +n43003031019 +n43003031020 +n43003031021 +n43003031022 +n43003031023 +n43003031024 +n43003031025 +n43003031026 +n43003031027 +n43003031028 +n43003032001 +n43003032002 +n43003032003 +n43003032004 +n43003032005 +n43003032006 +n43003032007 +n43003032008 +n43003032009 +n43003032010 +n43003032011 +n43003032012 +n43003033001 +n43003033002 +n43003033003 +n43003033004 +n43003033005 +n43003033006 +n43003033007 +n43003033008 +n43003033009 +n43003033010 +n43003033011 +n43003034002 +n43003034001 +n43003034003 +n43003034004 +n43003034005 +n43003034006 +n43003034007 +n43003034008 +n43003034009 +n43003034010 +n43003034012 +n43003034011 +n43003034013 +n43003034014 +n43003034015 +n43003034016 +n43003034017 +n43003035001 +n43003035002 +n43003035003 +n43003035004 +n43003035005 +n43003035006 +n43003035007 +n43003035008 +n43003035009 +n43003035010 +n43003035011 +n43003035012 +n43003036001 +n43003036002 +n43003036003 +n43003036004 +n43003036005 +n43003036006 +n43003036007 +n43003036008 +n43003036010 +n43003036009 +n43003036011 +n43003036012 +n43003036013 +n43003036014 +n43003036015 +n43003036016 +n43003036017 +n43003036018 +n43003036019 +n43003036020 +n43003036021 +n43003036022 +n43003036023 +n43003036024 +n43004001002 +n43004001001 +n43004001003 +n43004001004 +n43004001005 +n43004001006 +n43004001007 +n43004001008 +n43004001009 +n43004001010 +n43004001011 +n43004001012 +n43004001013 +n43004001014 +n43004001015 +n43004001016 +n43004001017 +n43004001018 +n43004002001 +n43004002002 +n43004002003 +n43004002004 +n43004002005 +n43004002006 +n43004002007 +n43004002008 +n43004002009 +n43004003001 +n43004003002 +n43004003003 +n43004003004 +n43004003005 +n43004003006 +n43004003007 +n43004003008 +n43004003009 +n43004004002 +n43004004001 +n43004004003 +n43004004004 +n43004004005 +n43004004006 +n43004004007 +n43004005002 +n43004005001 +n43004005003 +n43004005004 +n43004005005 +n43004005006 +n43004005007 +n43004005008 +n43004005009 +n43004005010 +n43004005011 +n43004005012 +n43004005013 +n43004005014 +n43004005015 +n43004005016 +n43004005017 +n43004005018 +n43004006002 +n43004006001 +n43004006003 +n43004006004 +n43004006005 +n43004006006 +n43004006008 +n43004006007 +n43004006009 +n43004006010 +n43004006011 +n43004006012 +n43004006013 +n43004006014 +n43004006015 +n43004006016 +n43004006017 +n43004006018 +n43004006019 +n43004006020 +n43004006021 +n43004006022 +n43004007001 +n43004007002 +n43004007003 +n43004007004 +n43004007005 +n43004007006 +n43004007007 +n43004007008 +n43004007009 +n43004007010 +n43004007011 +n43004007012 +n43004007013 +n43004007014 +n43004008002 +n43004008001 +n43004008003 +n43004008004 +n43004008005 +n43004008006 +n43004008007 +n43004008008 +n43004008009 +n43004008010 +n43004008011 +n43004009002 +n43004009001 +n43004009003 +n43004009004 +n43004009005 +n43004009006 +n43004009007 +n43004009008 +n43004009009 +n43004009010 +n43004009011 +n43004009012 +n43004009013 +n43004009016 +n43004009017 +n43004009018 +n43004009014 +n43004009015 +n43004009020 +n43004009019 +n43004009021 +n43004009022 +n43004009023 +n43004010001 +n43004010002 +n43004010003 +n43004010004 +n43004010005 +n43004010006 +n43004010007 +n43004010008 +n43004010009 +n43004010010 +n43004010011 +n43004010012 +n43004010013 +n43004010014 +n43004010015 +n43004010016 +n43004010017 +n43004010018 +n43004010019 +n43004010020 +n43004010022 +n43004010021 +n43004010023 +n43004010024 +n43004010025 +n43004010027 +n43004010026 +n43004010028 +n43004010029 +n43004010030 +n43004011001 +n43004011002 +n43004011003 +n43004011004 +n43004011005 +n43004011006 +n43004011007 +n43004011008 +n43004011009 +n43004011010 +n43004011011 +n43004011013 +n43004011012 +n43004011014 +n43004011015 +n43004011016 +n43004011017 +n43004011018 +n43004012001 +n43004012002 +n43004012003 +n43004012004 +n43004012005 +n43004012006 +n43004012007 +n43004012008 +n43004012009 +n43004012010 +n43004012011 +n43004012012 +n43004012013 +n43004012014 +n43004012015 +n43004012016 +n43004012017 +n43004012018 +n43004012019 +n43004012020 +n43004012021 +n43004012022 +n43004012023 +n43004012024 +n43004012025 +n43004012026 +n43004013001 +n43004013002 +n43004013003 +n43004013004 +n43004013005 +n43004013006 +n43004013007 +n43004013008 +n43004013009 +n43004013010 +n43004013011 +n43004013012 +n43004013013 +n43004013014 +n43004014002 +n43004014003 +n43004014001 +n43004014004 +n43004014005 +n43004014006 +n43004014007 +n43004014008 +n43004014009 +n43004014010 +n43004014011 +n43004014012 +n43004014013 +n43004014014 +n43004014015 +n43004014016 +n43004014017 +n43004014018 +n43004014019 +n43004014020 +n43004014021 +n43004014022 +n43004014023 +n43004014024 +n43004014025 +n43004014026 +n43004014027 +n43004014028 +n43004014029 +n43004014030 +n43004014031 +n43004014032 +n43004015001 +n43004015002 +n43004015003 +n43004015004 +n43004015005 +n43004015006 +n43004015007 +n43004015008 +n43004015009 +n43004015010 +n43004015011 +n43004015012 +n43004015013 +n43004015014 +n43004015015 +n43004015016 +n43004015017 +n43004015018 +n43004016001 +n43004016002 +n43004016003 +n43004016004 +n43004016005 +n43004016006 +n43004016007 +n43004016008 +n43004016009 +n43004016010 +n43004017001 +n43004017002 +n43004017003 +n43004017004 +n43004017005 +n43004017006 +n43004017007 +n43004017008 +n43004017009 +n43004017010 +n43004017011 +n43004017012 +n43004017013 +n43004017014 +n43004017015 +n43004017016 +n43004017017 +n43004017018 +n43004018002 +n43004018001 +n43004018003 +n43004018004 +n43004018005 +n43004018007 +n43004018006 +n43004018008 +n43004018009 +n43004018010 +n43004018011 +n43004018012 +n43004018013 +n43004018014 +n43004018015 +n43004019001 +n43004019002 +n43004019003 +n43004019004 +n43004019005 +n43004019006 +n43004019007 +n43004019008 +n43004019009 +n43004019010 +n43004020001 +n43004020002 +n43004020003 +n43004020004 +n43004020005 +n43004020006 +n43004020007 +n43004020008 +n43004020009 +n43004020010 +n43004020011 +n43004020012 +n43004020013 +n43004020014 +n43004020015 +n43004020016 +n43004020017 +n43004020018 +n43004020019 +n43004020020 +n43004021001 +n43004021002 +n43004021003 +n43004021004 +n43004021005 +n43004021006 +n43004021007 +n43004021008 +n43004021009 +n43004021010 +n43004021011 +n43004021012 +n43004021013 +n43004021014 +n43004021015 +n43004021016 +n43004021017 +n43004021018 +n43004021019 +n43004021020 +n43004021021 +n43004021022 +n43004022001 +n43004022002 +n43004022003 +n43004022004 +n43004022005 +n43004022006 +n43004022007 +n43004022008 +n43004022009 +n43004022010 +n43004022011 +n43004022012 +n43004022013 +n43004022014 +n43004022015 +n43004022016 +n43004023001 +n43004023002 +n43004023003 +n43004023004 +n43004023005 +n43004023006 +n43004023007 +n43004023008 +n43004023009 +n43004023010 +n43004023011 +n43004023012 +n43004023013 +n43004023014 +n43004023015 +n43004023016 +n43004023017 +n43004023019 +n43004023018 +n43004023020 +n43004023021 +n43004023022 +n43004023023 +n43004023024 +n43004023025 +n43004023026 +n43004024001 +n43004024002 +n43004024003 +n43004024004 +n43004024005 +n43004024006 +n43004024007 +n43004024008 +n43004024009 +n43004024010 +n43004024012 +n43004024011 +n43004025001 +n43004025002 +n43004025003 +n43004025004 +n43004025005 +n43004025006 +n43004025007 +n43004025009 +n43004025010 +n43004025011 +n43004025008 +n43004025012 +n43004025013 +n43004025014 +n43004025015 +n43004025016 +n43004025017 +n43004026001 +n43004026002 +n43004026003 +n43004026004 +n43004026005 +n43004026007 +n43004026008 +n43004026009 +n43004026006 +n43004027001 +n43004027002 +n43004027003 +n43004027004 +n43004027005 +n43004027006 +n43004027007 +n43004027008 +n43004027009 +n43004027010 +n43004027011 +n43004027012 +n43004027013 +n43004027015 +n43004027014 +n43004027016 +n43004027017 +n43004027018 +n43004027019 +n43004027020 +n43004027021 +n43004027022 +n43004027023 +n43004028002 +n43004028001 +n43004028003 +n43004028004 +n43004028005 +n43004028006 +n43004028007 +n43004028008 +n43004028009 +n43004028010 +n43004028011 +n43004028012 +n43004028013 +n43004028014 +n43004028015 +n43004028016 +n43004029001 +n43004029002 +n43004029003 +n43004029004 +n43004029005 +n43004029006 +n43004029007 +n43004029008 +n43004029009 +n43004029010 +n43004029011 +n43004029012 +n43004029013 +n43004029014 +n43004030001 +n43004030002 +n43004030003 +n43004030004 +n43004030005 +n43004030006 +n43004030007 +n43004030008 +n43004031001 +n43004031002 +n43004031003 +n43004031004 +n43004031005 +n43004031006 +n43004031007 +n43004031008 +n43004031009 +n43004031010 +n43004032002 +n43004032001 +n43004032003 +n43004032004 +n43004032005 +n43004032006 +n43004032007 +n43004032008 +n43004032009 +n43004032010 +n43004032011 +n43004032012 +n43004033002 +n43004033001 +n43004033003 +n43004033004 +n43004033005 +n43004033006 +n43004033007 +n43004033008 +n43004033009 +n43004033010 +n43004033011 +n43004034001 +n43004034002 +n43004034003 +n43004034004 +n43004034005 +n43004034006 +n43004034007 +n43004034008 +n43004034009 +n43004034010 +n43004034011 +n43004034012 +n43004034013 +n43004034014 +n43004034015 +n43004034016 +n43004034017 +n43004034018 +n43004034019 +n43004035001 +n43004035002 +n43004035003 +n43004035004 +n43004035005 +n43004035006 +n43004035007 +n43004035008 +n43004035009 +n43004035010 +n43004035011 +n43004035012 +n43004035013 +n43004035014 +n43004035015 +n43004035016 +n43004035017 +n43004035018 +n43004035019 +n43004035020 +n43004035021 +n43004035022 +n43004035023 +n43004035024 +n43004035025 +n43004035026 +n43004035027 +n43004035028 +n43004036001 +n43004036002 +n43004036003 +n43004036004 +n43004036005 +n43004036006 +n43004036007 +n43004036008 +n43004036009 +n43004036010 +n43004036011 +n43004036014 +n43004036015 +n43004036012 +n43004036013 +n43004036016 +n43004036017 +n43004036018 +n43004037002 +n43004037001 +n43004037003 +n43004037004 +n43004037005 +n43004037006 +n43004037007 +n43004037008 +n43004037009 +n43004037010 +n43004037011 +n43004037012 +n43004037013 +n43004037014 +n43004037015 +n43004037016 +n43004038001 +n43004038002 +n43004038003 +n43004038004 +n43004038005 +n43004038006 +n43004038007 +n43004038008 +n43004038009 +n43004038010 +n43004038011 +n43004038012 +n43004038013 +n43004038014 +n43004038015 +n43004038016 +n43004038017 +n43004039002 +n43004039001 +n43004039003 +n43004039004 +n43004039005 +n43004039006 +n43004039010 +n43004039011 +n43004039007 +n43004039008 +n43004039009 +n43004039012 +n43004039013 +n43004039014 +n43004039015 +n43004039016 +n43004039017 +n43004039018 +n43004039019 +n43004039020 +n43004039021 +n43004039022 +n43004039023 +n43004040002 +n43004040001 +n43004040003 +n43004040004 +n43004040005 +n43004040006 +n43004040007 +n43004040008 +n43004040009 +n43004040010 +n43004040011 +n43004040012 +n43004040013 +n43004040014 +n43004040015 +n43004040016 +n43004040017 +n43004041001 +n43004041002 +n43004041003 +n43004041004 +n43004041005 +n43004041006 +n43004041007 +n43004041008 +n43004042002 +n43004042001 +n43004042003 +n43004042004 +n43004042005 +n43004042006 +n43004042007 +n43004042008 +n43004042009 +n43004042010 +n43004042011 +n43004042013 +n43004042012 +n43004042014 +n43004042015 +n43004042016 +n43004042017 +n43004042018 +n43004042019 +n43004042020 +n43004042021 +n43004042022 +n43004042023 +n43004042024 +n43004043002 +n43004043001 +n43004043003 +n43004043004 +n43004043005 +n43004043006 +n43004043007 +n43004043008 +n43004043009 +n43004043010 +n43004044002 +n43004044001 +n43004044003 +n43004044004 +n43004044005 +n43004044006 +n43004044007 +n43004044008 +n43004044009 +n43004044010 +n43004044011 +n43004044012 +n43004044013 +n43004045002 +n43004045001 +n43004045003 +n43004045004 +n43004045005 +n43004045006 +n43004045007 +n43004045008 +n43004045009 +n43004045010 +n43004045012 +n43004045011 +n43004045013 +n43004045014 +n43004045015 +n43004045016 +n43004045017 +n43004045018 +n43004045019 +n43004045022 +n43004045020 +n43004045021 +n43004045023 +n43004045024 +n43004045025 +n43004045026 +n43004046002 +n43004046001 +n43004046003 +n43004046004 +n43004046005 +n43004046006 +n43004046007 +n43004046008 +n43004046009 +n43004046010 +n43004046011 +n43004046012 +n43004046013 +n43004046014 +n43004046015 +n43004046016 +n43004046017 +n43004046018 +n43004046019 +n43004046020 +n43004046021 +n43004046022 +n43004046023 +n43004047001 +n43004047002 +n43004047003 +n43004047004 +n43004047005 +n43004047006 +n43004047007 +n43004047008 +n43004047009 +n43004047010 +n43004047011 +n43004047012 +n43004047013 +n43004047014 +n43004047015 +n43004047016 +n43004047017 +n43004047018 +n43004047019 +n43004047020 +n43004047021 +n43004047022 +n43004047023 +n43004047025 +n43004047024 +n43004047026 +n43004048002 +n43004048001 +n43004048003 +n43004048004 +n43004048005 +n43004048006 +n43004048007 +n43004048008 +n43004048009 +n43004048010 +n43004048011 +n43004048012 +n43004048013 +n43004048014 +n43004048015 +n43004049001 +n43004049002 +n43004049003 +n43004049004 +n43004049005 +n43004049006 +n43004049007 +n43004049008 +n43004049009 +n43004049010 +n43004049011 +n43004049012 +n43004050001 +n43004050002 +n43004050003 +n43004050004 +n43004050005 +n43004050006 +n43004050007 +n43004050008 +n43004050009 +n43004050010 +n43004050011 +n43004050012 +n43004050013 +n43004050014 +n43004050015 +n43004050016 +n43004050017 +n43004050018 +n43004050019 +n43004050020 +n43004050021 +n43004051002 +n43004051001 +n43004051003 +n43004051004 +n43004051005 +n43004051006 +n43004051007 +n43004051008 +n43004051009 +n43004051010 +n43004051011 +n43004051012 +n43004051013 +n43004051014 +n43004052002 +n43004052001 +n43004052003 +n43004052004 +n43004052005 +n43004052006 +n43004052007 +n43004052008 +n43004052009 +n43004052010 +n43004052012 +n43004052011 +n43004052013 +n43004052014 +n43004052015 +n43004052016 +n43004052017 +n43004052018 +n43004052019 +n43004052020 +n43004052021 +n43004053002 +n43004053001 +n43004053003 +n43004053004 +n43004053005 +n43004053006 +n43004053007 +n43004053008 +n43004053009 +n43004053010 +n43004053011 +n43004053012 +n43004053013 +n43004053014 +n43004053015 +n43004053016 +n43004053017 +n43004053018 +n43004053019 +n43004053020 +n43004053021 +n43004053022 +n43004053023 +n43004053024 +n43004053025 +n43004053026 +n43004054002 +n43004054003 +n43004054001 +n43004054004 +n43004054005 +n43004054006 +n43004054007 +n43004054008 +n43004054009 +n43004054010 +n43004054011 +n43004054012 +n43004054013 +n43004054014 +n43004054015 +n43005001001 +n43005001002 +n43005001003 +n43005001004 +n43005001005 +n43005001006 +n43005001007 +n43005001008 +n43005001009 +n43005001010 +n43005001011 +n43005002002 +n43005002001 +n43005002003 +n43005002004 +n43005002005 +n43005002006 +n43005002007 +n43005002008 +n43005002009 +n43005002010 +n43005002011 +n43005002012 +n43005002013 +n43005002014 +n43005002015 +n43005002016 +n43005003001 +n43005003002 +n43005003003 +n43005003004 +n43005003005 +n43005003006 +n43005003007 +n43005003008 +n43005003009 +n43005003010 +n43005003011 +n43005003012 +n43005003013 +n43005003014 +n43005004002 +n43005004001 +n43005004003 +n43005004004 +n43005004005 +n43005004006 +n43005004007 +n43005004008 +n43005004009 +n43005004010 +n43005004011 +n43005004012 +n43005004014 +n43005004013 +n43005004015 +n43005004016 +n43005004017 +n43005004018 +n43005004019 +n43005004020 +n43005004021 +n43005004022 +n43005004023 +n43005004024 +n43005004025 +n43005004026 +n43005004027 +n43005005002 +n43005005001 +n43005005003 +n43005005004 +n43005005005 +n43005005006 +n43005005007 +n43005005008 +n43005005009 +n43005005010 +n43005005011 +n43005005012 +n43005005013 +n43005005014 +n43005006003 +n43005006004 +n43005006001 +n43005006005 +n43005006002 +n43005006006 +n43005006007 +n43005006008 +n43005006009 +n43005006011 +n43005006010 +n43005006012 +n43005006013 +n43005006014 +n43005006015 +n43005006016 +n43005006017 +n43005007001 +n43005007002 +n43005007003 +n43005007004 +n43005007005 +n43005007006 +n43005007007 +n43005007008 +n43005007009 +n43005007010 +n43005007011 +n43005007012 +n43005007013 +n43005007014 +n43005007015 +n43005007016 +n43005007017 +n43005007018 +n43005007021 +n43005007019 +n43005007020 +n43005007022 +n43005007023 +n43005007024 +n43005007025 +n43005007026 +n43005007027 +n43005008001 +n43005008002 +n43005008003 +n43005008004 +n43005008005 +n43005008006 +n43005008007 +n43005008008 +n43005008009 +n43005008010 +n43005008011 +n43005009001 +n43005009002 +n43005009003 +n43005009004 +n43005009005 +n43005009006 +n43005009007 +n43005009008 +n43005009009 +n43005009010 +n43005009011 +n43005009012 +n43005009013 +n43005009015 +n43005009014 +n43005009016 +n43005009017 +n43005009018 +n43005009019 +n43005009020 +n43005010002 +n43005010001 +n43005010003 +n43005010004 +n43005010005 +n43005010006 +n43005010007 +n43005010008 +n43005010009 +n43005010010 +n43005010011 +n43005010012 +n43005010013 +n43005010014 +n43005010015 +n43005011002 +n43005011001 +n43005011003 +n43005011004 +n43005011005 +n43005011006 +n43005011007 +n43005011008 +n43005011009 +n43005011010 +n43005011011 +n43005011012 +n43005011013 +n43005011014 +n43005011015 +n43005011016 +n43005011017 +n43005012001 +n43005012002 +n43005012003 +n43005012004 +n43005012005 +n43005012006 +n43005012007 +n43005012008 +n43005012009 +n43005012010 +n43005012011 +n43005012012 +n43005013002 +n43005013001 +n43005013003 +n43005013004 +n43005013005 +n43005013006 +n43005013007 +n43005013009 +n43005013008 +n43005013010 +n43005013011 +n43005013012 +n43005013013 +n43005013014 +n43005013015 +n43005013016 +n43005014001 +n43005014002 +n43005014003 +n43005014004 +n43005014005 +n43005014006 +n43005014007 +n43005014008 +n43005014009 +n43005014010 +n43005014011 +n43005014012 +n43005014013 +n43005014014 +n43005014015 +n43005014016 +n43005014017 +n43005014018 +n43005014019 +n43005014020 +n43005014022 +n43005014021 +n43005014023 +n43005015001 +n43005015002 +n43005015003 +n43005015004 +n43005015005 +n43005015006 +n43005015007 +n43005015008 +n43005015009 +n43005015010 +n43005015011 +n43005015012 +n43005015013 +n43005015014 +n43005016001 +n43005016002 +n43005016003 +n43005016004 +n43005016005 +n43005016006 +n43005016007 +n43005016008 +n43005016009 +n43005016010 +n43005016011 +n43005016012 +n43005016013 +n43005017002 +n43005017001 +n43005017003 +n43005017004 +n43005017005 +n43005017006 +n43005017007 +n43005017008 +n43005017009 +n43005017010 +n43005017011 +n43005017012 +n43005018003 +n43005018001 +n43005018002 +n43005018004 +n43005018005 +n43005018006 +n43005018009 +n43005018007 +n43005018008 +n43005018010 +n43005018011 +n43005018012 +n43005018013 +n43005018014 +n43005018015 +n43005018016 +n43005018017 +n43005018018 +n43005018019 +n43005018020 +n43005018021 +n43005018022 +n43005018023 +n43005018024 +n43005018025 +n43005018026 +n43005018027 +n43005019002 +n43005019001 +n43005019003 +n43005019004 +n43005019005 +n43005019006 +n43005019007 +n43005019008 +n43005019009 +n43005019010 +n43005019011 +n43005019012 +n43005019013 +n43005019014 +n43005019015 +n43005019016 +n43005019017 +n43005019018 +n43005019019 +n43005019020 +n43005019021 +n43005019023 +n43005019022 +n43005019024 +n43005019025 +n43005019026 +n43005019028 +n43005019029 +n43005019027 +n43005019030 +n43005019031 +n43005019032 +n43005019033 +n43005019034 +n43005019035 +n43005019036 +n43005019037 +n43005020002 +n43005020001 +n43005020003 +n43005020004 +n43005020005 +n43005020006 +n43005020007 +n43005020009 +n43005020010 +n43005020008 +n43005020011 +n43005020012 +n43005020013 +n43005020014 +n43005020015 +n43005020016 +n43005020019 +n43005020017 +n43005020018 +n43005020020 +n43005020021 +n43005020022 +n43005021002 +n43005021001 +n43005021003 +n43005021004 +n43005021005 +n43005021006 +n43005021007 +n43005021008 +n43005021009 +n43005021010 +n43005021011 +n43005021012 +n43005021013 +n43005021014 +n43005021015 +n43005021016 +n43005022002 +n43005022001 +n43005022003 +n43005022004 +n43005022005 +n43005022006 +n43005022007 +n43005022008 +n43005022009 +n43005022010 +n43005022011 +n43005022012 +n43005022013 +n43005023001 +n43005023002 +n43005023003 +n43005023004 +n43005023005 +n43005023006 +n43005023007 +n43005023008 +n43005023009 +n43005023010 +n43005023011 +n43005023012 +n43005023013 +n43005023014 +n43005023015 +n43005023016 +n43005023017 +n43005023018 +n43005023019 +n43005023020 +n43005023021 +n43005024001 +n43005024002 +n43005024003 +n43005024004 +n43005024005 +n43005024006 +n43005024007 +n43005024008 +n43005024009 +n43005024010 +n43005024011 +n43005024012 +n43005024013 +n43005024014 +n43005024015 +n43005024016 +n43005024017 +n43005024018 +n43005024019 +n43005024020 +n43005024021 +n43005024022 +n43005024023 +n43005024024 +n43005024025 +n43005024026 +n43005024027 +n43005024028 +n43005024029 +n43005024030 +n43005024031 +n43005025001 +n43005025002 +n43005025003 +n43005025004 +n43005025005 +n43005025006 +n43005025007 +n43005025008 +n43005025009 +n43005025010 +n43005025011 +n43005025012 +n43005025013 +n43005025014 +n43005025015 +n43005025016 +n43005025017 +n43005025018 +n43005025019 +n43005025020 +n43005025021 +n43005025022 +n43005025023 +n43005025024 +n43005026002 +n43005026001 +n43005026003 +n43005026004 +n43005026005 +n43005026006 +n43005026007 +n43005026008 +n43005026009 +n43005026010 +n43005026011 +n43005026012 +n43005026013 +n43005026014 +n43005026015 +n43005026016 +n43005026017 +n43005027001 +n43005027002 +n43005027003 +n43005027004 +n43005027005 +n43005027006 +n43005027007 +n43005027008 +n43005027009 +n43005027010 +n43005028001 +n43005028002 +n43005028003 +n43005028004 +n43005028005 +n43005028006 +n43005028007 +n43005028008 +n43005028009 +n43005028010 +n43005028011 +n43005028012 +n43005028013 +n43005028014 +n43005028015 +n43005028016 +n43005028017 +n43005029001 +n43005029002 +n43005029003 +n43005029004 +n43005029005 +n43005029006 +n43005029007 +n43005029008 +n43005029009 +n43005029010 +n43005029011 +n43005029012 +n43005029013 +n43005029014 +n43005029015 +n43005029016 +n43005030001 +n43005030002 +n43005030003 +n43005030004 +n43005030005 +n43005030006 +n43005030007 +n43005030008 +n43005030009 +n43005030010 +n43005030011 +n43005030012 +n43005030013 +n43005030014 +n43005030015 +n43005030016 +n43005030017 +n43005030018 +n43005030019 +n43005030020 +n43005030021 +n43005030022 +n43005030023 +n43005030024 +n43005030025 +n43005030026 +n43005030027 +n43005030028 +n43005030029 +n43005030030 +n43005031001 +n43005031002 +n43005031003 +n43005031004 +n43005031005 +n43005031006 +n43005031007 +n43005031008 +n43005031009 +n43005031010 +n43005031011 +n43005032001 +n43005032002 +n43005032003 +n43005032004 +n43005032005 +n43005032006 +n43005032007 +n43005032008 +n43005032009 +n43005032010 +n43005032011 +n43005032012 +n43005032013 +n43005032014 +n43005032015 +n43005032016 +n43005032017 +n43005033001 +n43005033002 +n43005033003 +n43005033004 +n43005033005 +n43005033006 +n43005033007 +n43005033008 +n43005034002 +n43005034001 +n43005034003 +n43005034004 +n43005034005 +n43005034006 +n43005034007 +n43005034008 +n43005034009 +n43005034010 +n43005034011 +n43005034012 +n43005034013 +n43005034014 +n43005035001 +n43005035002 +n43005035003 +n43005035004 +n43005035005 +n43005035006 +n43005035007 +n43005035008 +n43005035010 +n43005035009 +n43005035011 +n43005035012 +n43005035013 +n43005035014 +n43005035015 +n43005035016 +n43005035017 +n43005035018 +n43005036002 +n43005036001 +n43005036003 +n43005036004 +n43005036005 +n43005036006 +n43005036007 +n43005036008 +n43005036010 +n43005036009 +n43005036011 +n43005036012 +n43005036013 +n43005036014 +n43005036015 +n43005036016 +n43005036017 +n43005036018 +n43005036019 +n43005036020 +n43005036021 +n43005036022 +n43005036023 +n43005036024 +n43005036025 +n43005036026 +n43005036027 +n43005036028 +n43005036029 +n43005036030 +n43005036031 +n43005036032 +n43005037001 +n43005037002 +n43005037003 +n43005037004 +n43005037005 +n43005037006 +n43005037007 +n43005037008 +n43005037009 +n43005037010 +n43005037011 +n43005037012 +n43005037013 +n43005037014 +n43005037015 +n43005037016 +n43005037017 +n43005037018 +n43005038001 +n43005038005 +n43005038006 +n43005038002 +n43005038003 +n43005038004 +n43005038007 +n43005038008 +n43005038009 +n43005038010 +n43005038011 +n43005038012 +n43005038013 +n43005038014 +n43005038015 +n43005038016 +n43005038017 +n43005039001 +n43005039002 +n43005039003 +n43005039004 +n43005039005 +n43005039006 +n43005039007 +n43005039008 +n43005039009 +n43005039010 +n43005039011 +n43005039012 +n43005039013 +n43005039014 +n43005039015 +n43005039016 +n43005039017 +n43005039018 +n43005040001 +n43005040002 +n43005040003 +n43005040004 +n43005040005 +n43005040006 +n43005040007 +n43005040008 +n43005040009 +n43005041001 +n43005041002 +n43005041003 +n43005041004 +n43005041005 +n43005042001 +n43005042002 +n43005042003 +n43005042004 +n43005042005 +n43005042006 +n43005042007 +n43005042008 +n43005042009 +n43005042010 +n43005042011 +n43005042012 +n43005043001 +n43005043002 +n43005043003 +n43005043004 +n43005043005 +n43005043006 +n43005043007 +n43005043008 +n43005043009 +n43005043010 +n43005043011 +n43005043012 +n43005043013 +n43005043014 +n43005043015 +n43005043016 +n43005043017 +n43005043018 +n43005043019 +n43005043020 +n43005043021 +n43005043022 +n43005044001 +n43005044002 +n43005044003 +n43005044004 +n43005044005 +n43005044006 +n43005044007 +n43005044008 +n43005044009 +n43005044010 +n43005044011 +n43005044012 +n43005044013 +n43005044014 +n43005044015 +n43005044016 +n43005044017 +n43005044018 +n43005045001 +n43005045002 +n43005045003 +n43005045004 +n43005045005 +n43005045006 +n43005045007 +n43005045008 +n43005045009 +n43005045010 +n43005045011 +n43005045012 +n43005045013 +n43005045014 +n43005045015 +n43005045016 +n43005045017 +n43005045018 +n43005046002 +n43005046001 +n43005046003 +n43005046004 +n43005046006 +n43005046005 +n43005046007 +n43005046009 +n43005046008 +n43005046010 +n43005046011 +n43005046012 +n43005047002 +n43005047001 +n43005047003 +n43005047004 +n43005047005 +n43005047006 +n43005047007 +n43005047008 +n43005047009 +n43005047010 +n43005047011 +n43005047012 +n43006001001 +n43006001002 +n43006001003 +n43006001004 +n43006001005 +n43006001006 +n43006001007 +n43006001008 +n43006001009 +n43006001010 +n43006001011 +n43006001012 +n43006002002 +n43006002001 +n43006002003 +n43006002004 +n43006002005 +n43006002006 +n43006002007 +n43006002008 +n43006002009 +n43006002010 +n43006002011 +n43006002012 +n43006002013 +n43006002014 +n43006003002 +n43006003001 +n43006003003 +n43006003004 +n43006003005 +n43006003006 +n43006003007 +n43006003008 +n43006003009 +n43006003010 +n43006003011 +n43006003012 +n43006003013 +n43006004002 +n43006004001 +n43006004003 +n43006004004 +n43006004005 +n43006004006 +n43006004007 +n43006004008 +n43006004009 +n43006005002 +n43006005005 +n43006005006 +n43006005001 +n43006005003 +n43006005004 +n43006005007 +n43006005008 +n43006005009 +n43006005010 +n43006005011 +n43006005012 +n43006005013 +n43006005014 +n43006005015 +n43006005016 +n43006005017 +n43006005018 +n43006005019 +n43006005020 +n43006005021 +n43006005022 +n43006005023 +n43006006002 +n43006006001 +n43006006003 +n43006006004 +n43006006005 +n43006006007 +n43006006006 +n43006006008 +n43006006009 +n43006006011 +n43006006010 +n43006007001 +n43006007002 +n43006007003 +n43006007004 +n43006007005 +n43006007006 +n43006007007 +n43006007008 +n43006007009 +n43006007010 +n43006007011 +n43006007012 +n43006007013 +n43006007014 +n43006007015 +n43006008001 +n43006008002 +n43006008003 +n43006008004 +n43006008005 +n43006008006 +n43006008007 +n43006008008 +n43006008009 +n43006008010 +n43006008011 +n43006008012 +n43006009001 +n43006009002 +n43006009003 +n43006009004 +n43006009005 +n43006009006 +n43006009007 +n43006009008 +n43006009009 +n43006009010 +n43006009011 +n43006009012 +n43006009013 +n43006009014 +n43006009015 +n43006009016 +n43006009017 +n43006010001 +n43006010002 +n43006010003 +n43006010004 +n43006010005 +n43006010006 +n43006010007 +n43006010009 +n43006010008 +n43006010010 +n43006010011 +n43006010012 +n43006010013 +n43006010014 +n43006010016 +n43006010015 +n43006010017 +n43006010018 +n43006010019 +n43006010020 +n43006010021 +n43006010022 +n43006011002 +n43006011001 +n43006011003 +n43006011004 +n43006011005 +n43006011006 +n43006011007 +n43006011008 +n43006011009 +n43006011010 +n43006011011 +n43006011012 +n43006011013 +n43006011014 +n43006011015 +n43006011016 +n43006011017 +n43006011018 +n43006012002 +n43006012001 +n43006012003 +n43006012004 +n43006012005 +n43006012006 +n43006012007 +n43006012008 +n43006012009 +n43006012010 +n43006012011 +n43006012012 +n43006012013 +n43006012014 +n43006012015 +n43006013002 +n43006013001 +n43006013003 +n43006013004 +n43006013005 +n43006013006 +n43006013007 +n43006013008 +n43006013009 +n43006013010 +n43006013011 +n43006013012 +n43006013013 +n43006013014 +n43006013015 +n43006013016 +n43006013017 +n43006014002 +n43006014001 +n43006014003 +n43006014004 +n43006014005 +n43006014006 +n43006014007 +n43006014008 +n43006014009 +n43006014010 +n43006014011 +n43006014012 +n43006014013 +n43006014014 +n43006014015 +n43006014016 +n43006014017 +n43006014018 +n43006014019 +n43006015002 +n43006015003 +n43006015004 +n43006015005 +n43006015006 +n43006015007 +n43006015008 +n43006015009 +n43006015010 +n43006015011 +n43006015012 +n43006015013 +n43006015014 +n43006015015 +n43006015016 +n43006015017 +n43006015001 +n43006015018 +n43006015019 +n43006016002 +n43006016001 +n43006016003 +n43006016004 +n43006016005 +n43006016006 +n43006016007 +n43006016008 +n43006016009 +n43006016010 +n43006016011 +n43006017001 +n43006017002 +n43006017003 +n43006017004 +n43006017005 +n43006017006 +n43006017007 +n43006017008 +n43006017009 +n43006017010 +n43006017011 +n43006017012 +n43006017013 +n43006017014 +n43006017015 +n43006017016 +n43006017017 +n43006017018 +n43006017019 +n43006017020 +n43006017021 +n43006018002 +n43006018001 +n43006018003 +n43006018004 +n43006018005 +n43006018006 +n43006018007 +n43006019002 +n43006019001 +n43006019003 +n43006019004 +n43006019005 +n43006019006 +n43006019007 +n43006019008 +n43006019009 +n43006019010 +n43006019011 +n43006019012 +n43006019013 +n43006019014 +n43006019015 +n43006019016 +n43006019017 +n43006019018 +n43006019019 +n43006019020 +n43006019021 +n43006019022 +n43006020002 +n43006020001 +n43006020003 +n43006020004 +n43006020005 +n43006020006 +n43006020007 +n43006020008 +n43006021002 +n43006021001 +n43006021003 +n43006021004 +n43006021005 +n43006021006 +n43006021007 +n43006021008 +n43006021009 +n43006021010 +n43006021011 +n43006021012 +n43006021013 +n43006021014 +n43006021015 +n43006021016 +n43006021017 +n43006021018 +n43006022001 +n43006022002 +n43006022003 +n43006022004 +n43006022005 +n43006022006 +n43006022007 +n43006022008 +n43006022009 +n43006022010 +n43006022011 +n43006022012 +n43006022013 +n43006022014 +n43006022015 +n43006022016 +n43006022017 +n43006022018 +n43006022019 +n43006022020 +n43006022021 +n43006022022 +n43006022023 +n43006022024 +n43006022025 +n43006022026 +n43006022027 +n43006022028 +n43006022029 +n43006022030 +n43006022031 +n43006022032 +n43006022033 +n43006022034 +n43006022035 +n43006022036 +n43006022037 +n43006023001 +n43006023003 +n43006023002 +n43006023004 +n43006023005 +n43006023006 +n43006023007 +n43006023008 +n43006023009 +n43006023010 +n43006023011 +n43006023012 +n43006023013 +n43006023014 +n43006023015 +n43006024002 +n43006024001 +n43006024003 +n43006024004 +n43006024005 +n43006024006 +n43006024007 +n43006024008 +n43006024009 +n43006024010 +n43006024011 +n43006024012 +n43006024013 +n43006024014 +n43006024015 +n43006024016 +n43006024017 +n43006024018 +n43006024019 +n43006024020 +n43006024021 +n43006024022 +n43006024023 +n43006024024 +n43006024025 +n43006024026 +n43006025001 +n43006025002 +n43006025003 +n43006025004 +n43006025005 +n43006025006 +n43006025007 +n43006025008 +n43006025009 +n43006025010 +n43006025011 +n43006025012 +n43006026001 +n43006026002 +n43006026003 +n43006026004 +n43006026005 +n43006026006 +n43006026007 +n43006026008 +n43006026009 +n43006026010 +n43006026011 +n43006026012 +n43006026013 +n43006026014 +n43006026015 +n43006026016 +n43006026017 +n43006026018 +n43006026019 +n43006026020 +n43006026021 +n43006026022 +n43006026023 +n43006026024 +n43006027001 +n43006027002 +n43006027003 +n43006027004 +n43006027005 +n43006027006 +n43006027007 +n43006027008 +n43006027009 +n43006027010 +n43006027011 +n43006027012 +n43006027013 +n43006027014 +n43006027015 +n43006027016 +n43006027017 +n43006027018 +n43006027019 +n43006027020 +n43006027021 +n43006027023 +n43006027022 +n43006027024 +n43006027025 +n43006027027 +n43006027028 +n43006027026 +n43006028002 +n43006028001 +n43006028003 +n43006028004 +n43006028005 +n43006028006 +n43006028007 +n43006028008 +n43006028009 +n43006028010 +n43006028011 +n43006028012 +n43006029001 +n43006029002 +n43006029003 +n43006029004 +n43006029005 +n43006029006 +n43006029007 +n43006029008 +n43006029009 +n43006029010 +n43006029011 +n43006029012 +n43006029013 +n43006029014 +n43006029015 +n43006029016 +n43006029017 +n43006030002 +n43006030001 +n43006030003 +n43006030005 +n43006030004 +n43006030008 +n43006030006 +n43006030007 +n43006030009 +n43006030010 +n43006030011 +n43006030012 +n43006030013 +n43006030014 +n43006030015 +n43006031001 +n43006031002 +n43006031003 +n43006031004 +n43006031005 +n43006031006 +n43006031007 +n43006031008 +n43006031009 +n43006031010 +n43006031011 +n43006031012 +n43006031013 +n43006031014 +n43006031015 +n43006031016 +n43006031017 +n43006031018 +n43006031019 +n43006032002 +n43006032001 +n43006032003 +n43006032004 +n43006032005 +n43006032006 +n43006032007 +n43006032008 +n43006032009 +n43006032010 +n43006032011 +n43006032012 +n43006032013 +n43006032014 +n43006032015 +n43006032016 +n43006032017 +n43006032018 +n43006032019 +n43006032020 +n43006032021 +n43006032022 +n43006032023 +n43006032024 +n43006032025 +n43006032026 +n43006032027 +n43006032028 +n43006032029 +n43006032030 +n43006032031 +n43006033002 +n43006033001 +n43006033003 +n43006033004 +n43006033005 +n43006033006 +n43006033007 +n43006033008 +n43006033009 +n43006033010 +n43006033011 +n43006033012 +n43006033013 +n43006033014 +n43006033015 +n43006033016 +n43006034002 +n43006034001 +n43006034003 +n43006034004 +n43006034005 +n43006034006 +n43006034007 +n43006034008 +n43006034009 +n43006034010 +n43006034011 +n43006035001 +n43006035002 +n43006035003 +n43006035004 +n43006035005 +n43006035006 +n43006035007 +n43006035008 +n43006035009 +n43006035010 +n43006035011 +n43006035012 +n43006035013 +n43006035014 +n43006035015 +n43006035016 +n43006035017 +n43006035018 +n43006035019 +n43006035020 +n43006035021 +n43006035022 +n43006035023 +n43006035024 +n43006035025 +n43006035026 +n43006036001 +n43006036002 +n43006036003 +n43006036004 +n43006036005 +n43006036006 +n43006036007 +n43006036008 +n43006036009 +n43006036010 +n43006037001 +n43006037002 +n43006037003 +n43006037004 +n43006037005 +n43006037006 +n43006037007 +n43006037008 +n43006037009 +n43006037010 +n43006037011 +n43006037012 +n43006037013 +n43006037014 +n43006037015 +n43006037016 +n43006037017 +n43006037018 +n43006038001 +n43006038002 +n43006038003 +n43006038004 +n43006038005 +n43006038006 +n43006038007 +n43006038008 +n43006038009 +n43006038010 +n43006038011 +n43006038012 +n43006038013 +n43006038014 +n43006038015 +n43006038016 +n43006038017 +n43006038018 +n43006039002 +n43006039001 +n43006039003 +n43006039004 +n43006039005 +n43006039006 +n43006039007 +n43006039008 +n43006039009 +n43006039010 +n43006039011 +n43006039012 +n43006039013 +n43006039014 +n43006039015 +n43006039016 +n43006039017 +n43006039018 +n43006039019 +n43006039020 +n43006039021 +n43006039022 +n43006039023 +n43006039024 +n43006040002 +n43006040001 +n43006040003 +n43006040004 +n43006040005 +n43006040006 +n43006040007 +n43006040008 +n43006040009 +n43006040010 +n43006040011 +n43006040012 +n43006040013 +n43006040014 +n43006040015 +n43006040016 +n43006040017 +n43006040018 +n43006040019 +n43006040020 +n43006040021 +n43006040022 +n43006040023 +n43006040024 +n43006040025 +n43006040026 +n43006040027 +n43006040028 +n43006040029 +n43006041002 +n43006041001 +n43006041003 +n43006041004 +n43006041005 +n43006041006 +n43006041007 +n43006041008 +n43006041009 +n43006041010 +n43006041011 +n43006041012 +n43006041013 +n43006041014 +n43006041015 +n43006041016 +n43006041017 +n43006042001 +n43006042002 +n43006042003 +n43006042004 +n43006042005 +n43006042006 +n43006042007 +n43006042008 +n43006042009 +n43006042010 +n43006042011 +n43006042012 +n43006042013 +n43006042014 +n43006042015 +n43006042016 +n43006042017 +n43006042018 +n43006042019 +n43006042020 +n43006042021 +n43006042022 +n43006042023 +n43006042024 +n43006042025 +n43006043001 +n43006043002 +n43006043003 +n43006043004 +n43006043005 +n43006043006 +n43006043007 +n43006043008 +n43006043009 +n43006044001 +n43006044002 +n43006044003 +n43006044004 +n43006044005 +n43006044006 +n43006044007 +n43006044008 +n43006044009 +n43006044010 +n43006044011 +n43006044012 +n43006044013 +n43006044014 +n43006044015 +n43006044016 +n43006044017 +n43006044018 +n43006044019 +n43006044020 +n43006044021 +n43006045001 +n43006045002 +n43006045003 +n43006045004 +n43006045005 +n43006045006 +n43006045007 +n43006045008 +n43006045009 +n43006045010 +n43006045011 +n43006045012 +n43006045013 +n43006045014 +n43006045015 +n43006045016 +n43006045017 +n43006045018 +n43006045019 +n43006045020 +n43006045021 +n43006046001 +n43006046002 +n43006046003 +n43006046004 +n43006046005 +n43006046006 +n43006046007 +n43006046008 +n43006046009 +n43006046010 +n43006046011 +n43006046012 +n43006046013 +n43006046014 +n43006046015 +n43006046016 +n43006046017 +n43006047001 +n43006047002 +n43006047003 +n43006047004 +n43006047005 +n43006047006 +n43006047007 +n43006047008 +n43006047009 +n43006048001 +n43006048002 +n43006048003 +n43006048004 +n43006048005 +n43006048006 +n43006049001 +n43006049002 +n43006049003 +n43006049004 +n43006049005 +n43006049006 +n43006049007 +n43006049008 +n43006049009 +n43006049010 +n43006049011 +n43006050001 +n43006050002 +n43006050003 +n43006050004 +n43006050005 +n43006050006 +n43006050007 +n43006050008 +n43006050009 +n43006050010 +n43006050011 +n43006050012 +n43006050013 +n43006050014 +n43006050015 +n43006050016 +n43006050017 +n43006051001 +n43006051002 +n43006051003 +n43006051004 +n43006051005 +n43006051006 +n43006051007 +n43006051008 +n43006051009 +n43006051010 +n43006051011 +n43006051012 +n43006051013 +n43006051014 +n43006051015 +n43006051016 +n43006051017 +n43006051018 +n43006051019 +n43006051020 +n43006051021 +n43006051022 +n43006051026 +n43006051023 +n43006051024 +n43006051025 +n43006051027 +n43006051028 +n43006051029 +n43006051030 +n43006051031 +n43006051032 +n43006051033 +n43006051034 +n43006051035 +n43006051036 +n43006051037 +n43006051038 +n43006052002 +n43006052001 +n43006052003 +n43006052004 +n43006052005 +n43006052006 +n43006052007 +n43006052008 +n43006052009 +n43006052010 +n43006052011 +n43006052012 +n43006052013 +n43006052014 +n43006052015 +n43006053002 +n43006053001 +n43006053003 +n43006053004 +n43006053005 +n43006053006 +n43006053007 +n43006053008 +n43006053009 +n43006053010 +n43006053011 +n43006053012 +n43006053013 +n43006053014 +n43006053015 +n43006053016 +n43006053017 +n43006053018 +n43006053019 +n43006053020 +n43006053021 +n43006053022 +n43006053023 +n43006053024 +n43006053025 +n43006053026 +n43006053027 +n43006053028 +n43006054001 +n43006054002 +n43006054003 +n43006054004 +n43006054005 +n43006054006 +n43006054007 +n43006054008 +n43006054009 +n43006054010 +n43006054011 +n43006054012 +n43006054013 +n43006054014 +n43006054015 +n43006054016 +n43006054017 +n43006054018 +n43006054019 +n43006055002 +n43006055001 +n43006055003 +n43006055004 +n43006055005 +n43006055007 +n43006055006 +n43006055008 +n43006055009 +n43006055010 +n43006055011 +n43006055012 +n43006055014 +n43006055013 +n43006056001 +n43006056002 +n43006056003 +n43006056004 +n43006056005 +n43006056006 +n43006056007 +n43006056008 +n43006056009 +n43006056010 +n43006056011 +n43006056012 +n43006056013 +n43006056014 +n43006056015 +n43006056016 +n43006057001 +n43006057002 +n43006057003 +n43006057004 +n43006057005 +n43006057006 +n43006057007 +n43006057008 +n43006057009 +n43006057010 +n43006057011 +n43006057012 +n43006057013 +n43006057014 +n43006057015 +n43006057016 +n43006057017 +n43006057018 +n43006057019 +n43006058001 +n43006058002 +n43006058003 +n43006058004 +n43006058005 +n43006058006 +n43006058007 +n43006058008 +n43006058009 +n43006058010 +n43006058011 +n43006058012 +n43006058013 +n43006058014 +n43006058015 +n43006058016 +n43006058017 +n43006058018 +n43006058019 +n43006058020 +n43006058021 +n43006058022 +n43006058023 +n43006058024 +n43006059001 +n43006059002 +n43006059003 +n43006059004 +n43006059005 +n43006059006 +n43006059007 +n43006060002 +n43006060001 +n43006060004 +n43006060005 +n43006060006 +n43006060007 +n43006060003 +n43006060008 +n43006060009 +n43006060010 +n43006060011 +n43006060012 +n43006060013 +n43006060014 +n43006060015 +n43006060016 +n43006060017 +n43006061002 +n43006061003 +n43006061004 +n43006061001 +n43006061005 +n43006061006 +n43006061007 +n43006061008 +n43006061009 +n43006061010 +n43006061011 +n43006061012 +n43006061013 +n43006061014 +n43006061015 +n43006061016 +n43006061017 +n43006061018 +n43006062002 +n43006062001 +n43006062003 +n43006062004 +n43006062005 +n43006062006 +n43006062007 +n43006062008 +n43006062009 +n43006062010 +n43006062011 +n43006062012 +n43006063001 +n43006063002 +n43006063003 +n43006063004 +n43006063005 +n43006063006 +n43006063007 +n43006063008 +n43006063009 +n43006063010 +n43006063011 +n43006063012 +n43006063013 +n43006063014 +n43006063015 +n43006063016 +n43006063017 +n43006063018 +n43006063019 +n43006063020 +n43006063021 +n43006064001 +n43006064002 +n43006064003 +n43006064004 +n43006064005 +n43006064006 +n43006064007 +n43006064008 +n43006064010 +n43006064009 +n43006064011 +n43006064012 +n43006064013 +n43006064014 +n43006064015 +n43006064016 +n43006064017 +n43006064018 +n43006064019 +n43006064020 +n43006064021 +n43006064022 +n43006064023 +n43006064024 +n43006064025 +n43006065001 +n43006065002 +n43006065003 +n43006065004 +n43006065005 +n43006065006 +n43006065007 +n43006065008 +n43006065009 +n43006065010 +n43006065011 +n43006065012 +n43006065013 +n43006065014 +n43006065015 +n43006065016 +n43006065017 +n43006065018 +n43006065019 +n43006065020 +n43006066001 +n43006066002 +n43006066003 +n43006066004 +n43006066005 +n43006066006 +n43006066007 +n43006066008 +n43006066009 +n43006066010 +n43006066011 +n43006066012 +n43006066013 +n43006066014 +n43006066015 +n43006067002 +n43006067001 +n43006067003 +n43006067004 +n43006067005 +n43006067006 +n43006067007 +n43006067008 +n43006067009 +n43006067010 +n43006067011 +n43006068001 +n43006068002 +n43006068003 +n43006068004 +n43006068005 +n43006068006 +n43006068007 +n43006068008 +n43006068009 +n43006068010 +n43006068011 +n43006068012 +n43006069001 +n43006069002 +n43006069003 +n43006069004 +n43006069005 +n43006069006 +n43006069007 +n43006069008 +n43006069009 +n43006069010 +n43006069011 +n43006069012 +n43006070001 +n43006070002 +n43006070003 +n43006070004 +n43006070005 +n43006070006 +n43006070007 +n43006070008 +n43006070009 +n43006070010 +n43006070011 +n43006070012 +n43006070013 +n43006070014 +n43006070015 +n43006070016 +n43006071002 +n43006071001 +n43006071003 +n43006071004 +n43006071005 +n43006071006 +n43006071008 +n43006071007 +n43006071009 +n43006071010 +n43006071011 +n43006071012 +n43006071013 +n43006071014 +n43006071015 +n43007001001 +n43007001002 +n43007001003 +n43007001004 +n43007001005 +n43007001006 +n43007001007 +n43007001008 +n43007001009 +n43007001011 +n43007001010 +n43007001012 +n43007001013 +n43007001014 +n43007001015 +n43007001016 +n43007001017 +n43007001018 +n43007001019 +n43007001022 +n43007001020 +n43007001021 +n43007002002 +n43007002001 +n43007002003 +n43007002004 +n43007002005 +n43007002006 +n43007002007 +n43007002008 +n43007002009 +n43007003002 +n43007003001 +n43007003003 +n43007003004 +n43007003005 +n43007003006 +n43007003007 +n43007003008 +n43007003009 +n43007003010 +n43007003011 +n43007003012 +n43007003013 +n43007003014 +n43007003015 +n43007003016 +n43007003017 +n43007003018 +n43007003019 +n43007003020 +n43007003021 +n43007003022 +n43007003023 +n43007003024 +n43007003025 +n43007004002 +n43007004001 +n43007004003 +n43007004004 +n43007004005 +n43007004006 +n43007004007 +n43007004008 +n43007004009 +n43007004010 +n43007004011 +n43007004012 +n43007004013 +n43007004014 +n43007004015 +n43007004016 +n43007004017 +n43007004018 +n43007004019 +n43007005002 +n43007005001 +n43007005003 +n43007005004 +n43007005005 +n43007005006 +n43007005007 +n43007005008 +n43007006002 +n43007006001 +n43007006003 +n43007006004 +n43007006005 +n43007006006 +n43007006007 +n43007006008 +n43007006009 +n43007006010 +n43007006011 +n43007006013 +n43007006012 +n43007006014 +n43007006015 +n43007006016 +n43007006017 +n43007006018 +n43007006019 +n43007007001 +n43007007002 +n43007007003 +n43007007004 +n43007007005 +n43007007006 +n43007007008 +n43007007007 +n43007007009 +n43007007010 +n43007007011 +n43007007012 +n43007007013 +n43007007014 +n43007007015 +n43007007016 +n43007007017 +n43007007018 +n43007007019 +n43007007020 +n43007008001 +n43007008002 +n43007008003 +n43007008004 +n43007008005 +n43007008006 +n43007008007 +n43007008008 +n43007008009 +n43007008010 +n43007008011 +n43007008012 +n43007008013 +n43007008014 +n43007008015 +n43007008016 +n43007008017 +n43007008018 +n43007009002 +n43007009001 +n43007009003 +n43007009004 +n43007009005 +n43007009006 +n43007009007 +n43007009008 +n43007010002 +n43007010001 +n43007010003 +n43007010004 +n43007010005 +n43007010006 +n43007010007 +n43007010008 +n43007010009 +n43007010010 +n43007010011 +n43007010012 +n43007010013 +n43007010014 +n43007010015 +n43007010016 +n43007010017 +n43007010018 +n43007010019 +n43007011002 +n43007011001 +n43007011003 +n43007011004 +n43007011005 +n43007011006 +n43007011007 +n43007011008 +n43007011009 +n43007011010 +n43007011011 +n43007011012 +n43007011013 +n43007012001 +n43007012002 +n43007012003 +n43007012004 +n43007012005 +n43007012006 +n43007012007 +n43007012008 +n43007012009 +n43007012011 +n43007012010 +n43007012012 +n43007012013 +n43007012014 +n43007012015 +n43007012017 +n43007012016 +n43007012018 +n43007012019 +n43007012020 +n43007012021 +n43007012022 +n43007012023 +n43007013002 +n43007013001 +n43007013003 +n43007013004 +n43007013005 +n43007013006 +n43007013007 +n43007013008 +n43007013009 +n43007013010 +n43007013011 +n43007014002 +n43007014001 +n43007014003 +n43007014004 +n43007014005 +n43007014006 +n43007014007 +n43007014008 +n43007014009 +n43007014010 +n43007014011 +n43007014012 +n43007015002 +n43007015001 +n43007015003 +n43007015004 +n43007015005 +n43007015006 +n43007015007 +n43007015008 +n43007015009 +n43007015010 +n43007015011 +n43007016002 +n43007016001 +n43007016003 +n43007016004 +n43007016005 +n43007016006 +n43007016007 +n43007016008 +n43007016009 +n43007016010 +n43007016011 +n43007016012 +n43007016013 +n43007016014 +n43007016015 +n43007016016 +n43007017001 +n43007017002 +n43007017003 +n43007017004 +n43007017005 +n43007017006 +n43007017007 +n43007017008 +n43007017009 +n43007017010 +n43007017011 +n43007017012 +n43007017013 +n43007017014 +n43007017015 +n43007017016 +n43007017017 +n43007017018 +n43007017019 +n43007017020 +n43007017021 +n43007018001 +n43007018002 +n43007018003 +n43007018004 +n43007018005 +n43007018006 +n43007018007 +n43007018008 +n43007018009 +n43007018011 +n43007018010 +n43007018012 +n43007018013 +n43007018014 +n43007018015 +n43007018016 +n43007018017 +n43007018018 +n43007018019 +n43007018020 +n43007018021 +n43007018022 +n43007018023 +n43007018024 +n43007018025 +n43007018026 +n43007019001 +n43007019002 +n43007019003 +n43007019004 +n43007019005 +n43007019006 +n43007019007 +n43007019008 +n43007019009 +n43007019010 +n43007019011 +n43007019012 +n43007019013 +n43007019014 +n43007019015 +n43007019017 +n43007019016 +n43007020001 +n43007020002 +n43007020003 +n43007020004 +n43007020005 +n43007020006 +n43007020007 +n43007020009 +n43007020008 +n43007021001 +n43007021002 +n43007021003 +n43007021004 +n43007021005 +n43007021006 +n43007021007 +n43007021008 +n43007021009 +n43007021010 +n43007021011 +n43007022001 +n43007022002 +n43007022003 +n43007022004 +n43007022005 +n43007022006 +n43007022007 +n43007022009 +n43007022008 +n43007022010 +n43007022011 +n43007022012 +n43007022013 +n43007022014 +n43007022015 +n43007022016 +n43007022017 +n43007022018 +n43007022019 +n43007022020 +n43007022021 +n43007022022 +n43007023001 +n43007023002 +n43007023003 +n43007023004 +n43007023005 +n43007023006 +n43007023007 +n43007023008 +n43007023009 +n43007023010 +n43007023011 +n43007023012 +n43007023013 +n43007023014 +n43007023015 +n43007023016 +n43007023017 +n43007023018 +n43007023019 +n43007023020 +n43007023021 +n43007024001 +n43007024002 +n43007024003 +n43007024004 +n43007024005 +n43007024006 +n43007024007 +n43007024008 +n43007024009 +n43007025002 +n43007025001 +n43007025003 +n43007025004 +n43007025005 +n43007025006 +n43007025007 +n43007025008 +n43007025009 +n43007025010 +n43007025012 +n43007025011 +n43007026001 +n43007026002 +n43007026003 +n43007026004 +n43007026005 +n43007026006 +n43007026007 +n43007026008 +n43007026009 +n43007026010 +n43007026011 +n43007026012 +n43007026013 +n43007026014 +n43007026015 +n43007026016 +n43007026017 +n43007026018 +n43007026019 +n43007027001 +n43007027002 +n43007027003 +n43007027004 +n43007027005 +n43007027007 +n43007027006 +n43007027008 +n43007027009 +n43007027010 +n43007027011 +n43007027012 +n43007027013 +n43007027014 +n43007028002 +n43007028001 +n43007028003 +n43007028004 +n43007028005 +n43007028006 +n43007028007 +n43007028008 +n43007028009 +n43007028010 +n43007028011 +n43007028012 +n43007028013 +n43007028014 +n43007028015 +n43007028016 +n43007028017 +n43007028018 +n43007028019 +n43007028020 +n43007028021 +n43007028022 +n43007028023 +n43007028024 +n43007028025 +n43007028026 +n43007028027 +n43007028028 +n43007028029 +n43007028030 +n43007028031 +n43007029001 +n43007029002 +n43007029003 +n43007029004 +n43007029005 +n43007029006 +n43007029007 +n43007029008 +n43007029009 +n43007029010 +n43007030002 +n43007030001 +n43007030003 +n43007030004 +n43007030005 +n43007030006 +n43007030007 +n43007030008 +n43007030009 +n43007030010 +n43007030011 +n43007030012 +n43007030013 +n43007030014 +n43007030015 +n43007030016 +n43007030017 +n43007031004 +n43007031001 +n43007031002 +n43007031003 +n43007031005 +n43007031006 +n43007031007 +n43007031008 +n43007031009 +n43007031010 +n43007031011 +n43007031012 +n43007031013 +n43007031014 +n43007031015 +n43007031016 +n43007031017 +n43007031018 +n43007031019 +n43007031020 +n43007031021 +n43007032001 +n43007032002 +n43007032003 +n43007032004 +n43007032005 +n43007032006 +n43007032007 +n43007032008 +n43007032009 +n43007032010 +n43007032011 +n43007032012 +n43007032013 +n43007032014 +n43007032015 +n43007032016 +n43007032017 +n43007032018 +n43007032019 +n43007032020 +n43007033002 +n43007033001 +n43007033003 +n43007033004 +n43007033005 +n43007033006 +n43007033007 +n43007033008 +n43007033009 +n43007033010 +n43007033011 +n43007033012 +n43007033013 +n43007033014 +n43007033015 +n43007033016 +n43007034001 +n43007034002 +n43007034003 +n43007034004 +n43007034005 +n43007034006 +n43007034007 +n43007034008 +n43007034009 +n43007034013 +n43007034010 +n43007034011 +n43007034012 +n43007035002 +n43007035001 +n43007035003 +n43007035004 +n43007035005 +n43007035006 +n43007035007 +n43007035010 +n43007035008 +n43007035009 +n43007035011 +n43007035012 +n43007035013 +n43007035014 +n43007035015 +n43007035016 +n43007035022 +n43007035017 +n43007035018 +n43007035019 +n43007035020 +n43007035021 +n43007035023 +n43007035024 +n43007035025 +n43007035026 +n43007035027 +n43007036001 +n43007036002 +n43007036003 +n43007036004 +n43007036005 +n43007036006 +n43007036007 +n43007036008 +n43007036009 +n43007036010 +n43007036011 +n43007036012 +n43007036013 +n43007036014 +n43007036015 +n43007036016 +n43007036020 +n43007036017 +n43007036018 +n43007036019 +n43007037002 +n43007037001 +n43007037003 +n43007037004 +n43007037005 +n43007037006 +n43007037007 +n43007037008 +n43007037009 +n43007037010 +n43007037011 +n43007037012 +n43007037013 +n43007037014 +n43007037015 +n43007037016 +n43007037017 +n43007037018 +n43007037019 +n43007037020 +n43007037021 +n43007037022 +n43007037023 +n43007038001 +n43007038002 +n43007038003 +n43007038004 +n43007038005 +n43007038006 +n43007038007 +n43007038008 +n43007038009 +n43007038015 +n43007038016 +n43007038010 +n43007038011 +n43007038012 +n43007038013 +n43007038014 +n43007039002 +n43007039001 +n43007039003 +n43007039004 +n43007039005 +n43007039006 +n43007039007 +n43007039009 +n43007039008 +n43007039010 +n43007039011 +n43007039012 +n43007039013 +n43007039015 +n43007039014 +n43007039016 +n43007039017 +n43007039018 +n43007039019 +n43007039020 +n43007039021 +n43007040004 +n43007040001 +n43007040002 +n43007040003 +n43007040005 +n43007040006 +n43007040007 +n43007040008 +n43007040009 +n43007040010 +n43007040011 +n43007040012 +n43007040013 +n43007040014 +n43007041001 +n43007041002 +n43007041003 +n43007041004 +n43007041005 +n43007041006 +n43007041008 +n43007041007 +n43007041009 +n43007041011 +n43007041010 +n43007041012 +n43007041013 +n43007041014 +n43007041015 +n43007041016 +n43007041017 +n43007042001 +n43007042002 +n43007042003 +n43007042004 +n43007042005 +n43007042006 +n43007042007 +n43007042008 +n43007042009 +n43007042010 +n43007042011 +n43007042012 +n43007042013 +n43007042014 +n43007042015 +n43007042016 +n43007042017 +n43007042018 +n43007042019 +n43007042020 +n43007043002 +n43007043001 +n43007043003 +n43007043004 +n43007043005 +n43007043006 +n43007043007 +n43007043008 +n43007044002 +n43007044001 +n43007044004 +n43007044005 +n43007044003 +n43007044006 +n43007044007 +n43007044008 +n43007044009 +n43007044010 +n43007044011 +n43007044012 +n43007044013 +n43007044014 +n43007045002 +n43007045001 +n43007045003 +n43007045004 +n43007045005 +n43007045006 +n43007045007 +n43007045008 +n43007045009 +n43007045010 +n43007045011 +n43007045012 +n43007045013 +n43007045014 +n43007045015 +n43007045016 +n43007045017 +n43007045018 +n43007046001 +n43007046002 +n43007046003 +n43007046004 +n43007046005 +n43007046006 +n43007046007 +n43007046008 +n43007046009 +n43007046011 +n43007046012 +n43007046010 +n43007047002 +n43007047001 +n43007047003 +n43007047004 +n43007047005 +n43007047006 +n43007047007 +n43007047008 +n43007047009 +n43007048001 +n43007048002 +n43007048003 +n43007048004 +n43007048005 +n43007048006 +n43007048007 +n43007048008 +n43007048009 +n43007048010 +n43007048011 +n43007048012 +n43007049001 +n43007049002 +n43007049003 +n43007049004 +n43007049005 +n43007049006 +n43007049007 +n43007049008 +n43007049009 +n43007049010 +n43007049011 +n43007050001 +n43007050003 +n43007050004 +n43007050002 +n43007050005 +n43007050006 +n43007050007 +n43007050008 +n43007050009 +n43007050011 +n43007050010 +n43007050012 +n43007050013 +n43007051001 +n43007051002 +n43007051003 +n43007051004 +n43007051005 +n43007051006 +n43007051007 +n43007051008 +n43007051009 +n43007051010 +n43007051011 +n43007051012 +n43007051013 +n43007051014 +n43007051015 +n43007051016 +n43007051017 +n43007052001 +n43007052002 +n43007052003 +n43007052004 +n43007052005 +n43007052006 +n43007052007 +n43007052008 +n43007052009 +n43007052010 +n43007052011 +n43007052012 +n43007052013 +n43007052014 +n43007052015 +n43007052016 +n43007052017 +n43007052018 +n43007052019 +n43007052020 +n43007052021 +n43007053001 +n43007053002 +n43007053003 +n43007053004 +n43007053005 +n43007053006 +n43007053007 +n43008001002 +n43008001001 +n43008001003 +n43008001004 +n43008001005 +n43008001006 +n43008001007 +n43008001008 +n43008002002 +n43008002001 +n43008002003 +n43008002004 +n43008002005 +n43008002006 +n43008002007 +n43008002008 +n43008002009 +n43008002010 +n43008002011 +n43008002012 +n43008002013 +n43008002014 +n43008002015 +n43008002016 +n43008002017 +n43008002018 +n43008003002 +n43008003001 +n43008003003 +n43008003004 +n43008003005 +n43008003006 +n43008003007 +n43008003008 +n43008003009 +n43008003010 +n43008003011 +n43008003012 +n43008003013 +n43008003014 +n43008003015 +n43008003016 +n43008003017 +n43008003018 +n43008004001 +n43008004002 +n43008004003 +n43008004004 +n43008004005 +n43008004006 +n43008004007 +n43008004008 +n43008004009 +n43008005002 +n43008005001 +n43008005003 +n43008005004 +n43008005005 +n43008005006 +n43008005007 +n43008005008 +n43008005009 +n43008005010 +n43008005012 +n43008005011 +n43008005013 +n43008005014 +n43008006002 +n43008006001 +n43008006003 +n43008006004 +n43008006005 +n43008006006 +n43008006007 +n43008006008 +n43008006009 +n43008006011 +n43008006010 +n43008006012 +n43008006013 +n43008006014 +n43008006015 +n43008006016 +n43008006017 +n43008006018 +n43008006019 +n43008006020 +n43008007002 +n43008007001 +n43008007003 +n43008007004 +n43008007005 +n43008007006 +n43008007007 +n43008007008 +n43008007009 +n43008007010 +n43008007011 +n43008007012 +n43008007013 +n43008007014 +n43008007015 +n43008007016 +n43008007017 +n43008007018 +n43008008001 +n43008008002 +n43008008003 +n43008008004 +n43008008005 +n43008008006 +n43008008007 +n43008008008 +n43008009002 +n43008009001 +n43008009003 +n43008009004 +n43008009005 +n43008009006 +n43008009007 +n43008009008 +n43008009009 +n43008009010 +n43008009011 +n43008009012 +n43008009013 +n43008009014 +n43008009015 +n43008009016 +n43008009017 +n43008009018 +n43008009019 +n43008009020 +n43008009021 +n43008009022 +n43008009023 +n43008009024 +n43008009025 +n43008009026 +n43008009027 +n43008009028 +n43008009029 +n43008010002 +n43008010003 +n43008010004 +n43008010001 +n43008010005 +n43008010006 +n43008010007 +n43008010008 +n43008010009 +n43008010010 +n43008010011 +n43008010012 +n43008010013 +n43008010014 +n43008010015 +n43008010016 +n43008010017 +n43008010018 +n43008010019 +n43008010020 +n43008010021 +n43008010022 +n43008010023 +n43008011002 +n43008011001 +n43008011003 +n43008011004 +n43008011005 +n43008011007 +n43008011006 +n43008011008 +n43008011009 +n43008011010 +n43008011011 +n43008011012 +n43008011013 +n43008011014 +n43008011015 +n43008011016 +n43008011017 +n43008011018 +n43008012002 +n43008012001 +n43008012003 +n43008012004 +n43008012005 +n43008012006 +n43008012007 +n43008012008 +n43008012009 +n43008012010 +n43008012011 +n43008012012 +n43008012013 +n43008012014 +n43008012015 +n43008012016 +n43008012017 +n43008012018 +n43008012019 +n43008012020 +n43008012021 +n43008012022 +n43008012023 +n43008012024 +n43008012025 +n43008012026 +n43008012027 +n43008012028 +n43008013002 +n43008013001 +n43008013003 +n43008013004 +n43008013005 +n43008013006 +n43008013007 +n43008013008 +n43008013009 +n43008013010 +n43008013011 +n43008013012 +n43008013013 +n43008013014 +n43008013015 +n43008014001 +n43008014002 +n43008014003 +n43008014004 +n43008014005 +n43008014006 +n43008014007 +n43008014008 +n43008014009 +n43008014010 +n43008014011 +n43008014012 +n43008014013 +n43008014014 +n43008014015 +n43008014016 +n43008014017 +n43008014018 +n43008014019 +n43008014020 +n43008014021 +n43008014022 +n43008014024 +n43008014023 +n43008014025 +n43008014026 +n43008014027 +n43008014028 +n43008014029 +n43008014030 +n43008014031 +n43008015001 +n43008015002 +n43008015003 +n43008015004 +n43008015005 +n43008015006 +n43008015007 +n43008015008 +n43008015009 +n43008016004 +n43008016002 +n43008016001 +n43008016003 +n43008016005 +n43008016006 +n43008016007 +n43008016008 +n43008016009 +n43008016010 +n43008016011 +n43008016012 +n43008016013 +n43008016014 +n43008016015 +n43008016016 +n43008016017 +n43008016018 +n43008016019 +n43008016020 +n43008016021 +n43008017005 +n43008017001 +n43008017002 +n43008017003 +n43008017004 +n43008017006 +n43008017007 +n43008017008 +n43008017009 +n43008017010 +n43008017011 +n43008017012 +n43008017013 +n43008017014 +n43008017015 +n43008018001 +n43008018002 +n43008018003 +n43008018004 +n43008018005 +n43008018006 +n43008018007 +n43008018008 +n43008018009 +n43008018010 +n43008018011 +n43008018012 +n43008018013 +n43008018014 +n43008019002 +n43008019001 +n43008019003 +n43008019004 +n43008019005 +n43008019006 +n43008019007 +n43008019008 +n43008019009 +n43008019010 +n43008019011 +n43008019012 +n43008019013 +n43008019014 +n43008019015 +n43008019016 +n43008019017 +n43008019018 +n43008019019 +n43008019020 +n43008019025 +n43008019021 +n43008019022 +n43008019023 +n43008019024 +n43008019026 +n43008020001 +n43008020002 +n43008020003 +n43008020004 +n43008020005 +n43008020006 +n43008020007 +n43008020008 +n43008020009 +n43008020010 +n43008020011 +n43008020012 +n43008020013 +n43008020014 +n43008020015 +n43008020016 +n43008020017 +n43008020018 +n43008020019 +n43008020020 +n43008020021 +n43008021002 +n43008021001 +n43008021003 +n43008021004 +n43008021005 +n43008021006 +n43008021007 +n43008021008 +n43008021009 +n43008021010 +n43008021011 +n43008021012 +n43008021013 +n43008021014 +n43008021015 +n43008021016 +n43008021017 +n43008021018 +n43008021022 +n43008021019 +n43008021020 +n43008021021 +n43008022002 +n43008022001 +n43008022003 +n43008022004 +n43008022005 +n43008022006 +n43008022007 +n43008022008 +n43008022009 +n43008022010 +n43008022011 +n43008022012 +n43008022016 +n43008022013 +n43008022014 +n43008022015 +n43008023001 +n43008023002 +n43008023003 +n43008023004 +n43008023005 +n43008023006 +n43008023007 +n43008023008 +n43008023009 +n43008023010 +n43008023011 +n43008023012 +n43008023013 +n43008023014 +n43008023015 +n43008023016 +n43008023017 +n43008023018 +n43008023019 +n43008023020 +n43008023021 +n43008023022 +n43008023023 +n43008023024 +n43008023025 +n43008023026 +n43008024002 +n43008024001 +n43008024003 +n43008024004 +n43008024005 +n43008024006 +n43008024007 +n43008024008 +n43008024009 +n43008024011 +n43008024010 +n43008024012 +n43008024013 +n43008024014 +n43008024015 +n43008024016 +n43008024017 +n43008024018 +n43008024019 +n43008024020 +n43008024021 +n43008025002 +n43008025001 +n43008025003 +n43008025004 +n43008025005 +n43008025006 +n43008025007 +n43008025008 +n43008025009 +n43008025010 +n43008025014 +n43008025013 +n43008025011 +n43008025012 +n43008025015 +n43008025016 +n43008025017 +n43008026002 +n43008026001 +n43008026003 +n43008026004 +n43008026005 +n43008026006 +n43008026007 +n43008026008 +n43008026009 +n43008026010 +n43008026011 +n43008026012 +n43008026013 +n43008026015 +n43008026014 +n43008026016 +n43008026017 +n43008026018 +n43008026019 +n43008026020 +n43008026021 +n43008026022 +n43008026023 +n43008027001 +n43008027002 +n43008027003 +n43008027004 +n43008027005 +n43008027006 +n43008027007 +n43008028002 +n43008028001 +n43008028003 +n43008028004 +n43008028005 +n43008028006 +n43008028007 +n43008028008 +n43008028009 +n43008028010 +n43008028011 +n43008028012 +n43008028013 +n43008028014 +n43008028015 +n43008028016 +n43008028017 +n43008028018 +n43008028019 +n43008028020 +n43008028021 +n43008028022 +n43008028023 +n43008028024 +n43008028025 +n43008028026 +n43008028027 +n43008028028 +n43008029001 +n43008029002 +n43008029003 +n43008029004 +n43008029005 +n43008029006 +n43008029007 +n43008029008 +n43008029009 +n43008029010 +n43008029011 +n43008029012 +n43008029013 +n43008029014 +n43008029015 +n43008029016 +n43008029017 +n43008029018 +n43008030001 +n43008030002 +n43008030003 +n43008030004 +n43008030005 +n43008030006 +n43008030007 +n43008031002 +n43008031001 +n43008031003 +n43008031004 +n43008031005 +n43008031006 +n43008031007 +n43008031008 +n43008031009 +n43008031010 +n43008031011 +n43008031012 +n43008031013 +n43008031014 +n43008031015 +n43008031016 +n43008031017 +n43008031018 +n43008031019 +n43008031020 +n43008031021 +n43008032001 +n43008032002 +n43008032003 +n43008032004 +n43008032005 +n43008032006 +n43008032007 +n43008032008 +n43008032009 +n43008033001 +n43008033002 +n43008033003 +n43008033004 +n43008033005 +n43008033006 +n43008033007 +n43008033008 +n43008033009 +n43008033010 +n43008033011 +n43008033012 +n43008033013 +n43008033014 +n43008033015 +n43008033016 +n43008034001 +n43008034002 +n43008034003 +n43008034004 +n43008034005 +n43008034006 +n43008034007 +n43008034008 +n43008034009 +n43008034010 +n43008034011 +n43008034012 +n43008034013 +n43008034014 +n43008034016 +n43008034015 +n43008034017 +n43008034018 +n43008035002 +n43008035001 +n43008035003 +n43008035004 +n43008035005 +n43008035006 +n43008035007 +n43008035008 +n43008035009 +n43008035010 +n43008035011 +n43008035012 +n43008035013 +n43008035014 +n43008035015 +n43008035016 +n43008035017 +n43008036002 +n43008036001 +n43008036003 +n43008036004 +n43008036005 +n43008036006 +n43008036007 +n43008036008 +n43008036009 +n43008037001 +n43008037002 +n43008037003 +n43008037004 +n43008037005 +n43008037006 +n43008037007 +n43008037008 +n43008037009 +n43008037010 +n43008037011 +n43008037012 +n43008037013 +n43008037014 +n43008037015 +n43008037016 +n43008037017 +n43008037018 +n43008038001 +n43008038002 +n43008038003 +n43008038004 +n43008038005 +n43008038006 +n43008038007 +n43008038010 +n43008038008 +n43008038009 +n43008038011 +n43008038012 +n43008038013 +n43008038014 +n43008038015 +n43008038016 +n43008039001 +n43008039002 +n43008039003 +n43008039004 +n43008039005 +n43008039006 +n43008039007 +n43008039008 +n43008039009 +n43008039010 +n43008039011 +n43008039012 +n43008039013 +n43008039014 +n43008039015 +n43008039016 +n43008039017 +n43008039018 +n43008039019 +n43008039020 +n43008039021 +n43008039022 +n43008039023 +n43008040002 +n43008040001 +n43008040003 +n43008040005 +n43008040004 +n43008040006 +n43008040007 +n43008040008 +n43008040009 +n43008040010 +n43008040011 +n43008040012 +n43008040013 +n43008040014 +n43008040015 +n43008040016 +n43008040017 +n43008040018 +n43008040019 +n43008040020 +n43008041001 +n43008041002 +n43008041003 +n43008041004 +n43008041005 +n43008041006 +n43008041007 +n43008041008 +n43008041009 +n43008041010 +n43008041011 +n43008041012 +n43008041013 +n43008041014 +n43008041015 +n43008041016 +n43008041018 +n43008041019 +n43008041017 +n43008042001 +n43008042002 +n43008042003 +n43008042004 +n43008042005 +n43008042006 +n43008042007 +n43008042008 +n43008042009 +n43008042010 +n43008042012 +n43008042011 +n43008042013 +n43008042015 +n43008042014 +n43008042016 +n43008042017 +n43008042018 +n43008042019 +n43008042020 +n43008042021 +n43008042023 +n43008042022 +n43008042024 +n43008042025 +n43008042026 +n43008042027 +n43008042028 +n43008042029 +n43008042030 +n43008043001 +n43008043002 +n43008043003 +n43008043004 +n43008043005 +n43008043006 +n43008043007 +n43008043008 +n43008043009 +n43008043010 +n43008043011 +n43008043012 +n43008043013 +n43008043014 +n43008043015 +n43008043016 +n43008044001 +n43008044002 +n43008044003 +n43008044004 +n43008044005 +n43008044006 +n43008044007 +n43008044008 +n43008044009 +n43008044010 +n43008044011 +n43008044012 +n43008044013 +n43008044015 +n43008044014 +n43008044016 +n43008044017 +n43008044018 +n43008044019 +n43008044020 +n43008044021 +n43008044022 +n43008044023 +n43008044024 +n43008044025 +n43008044026 +n43008044027 +n43008044028 +n43008044029 +n43008044030 +n43008044031 +n43008044032 +n43008044033 +n43008044034 +n43008044035 +n43008044036 +n43008044037 +n43008044038 +n43008044039 +n43008044040 +n43008044041 +n43008044042 +n43008044043 +n43008044044 +n43008044045 +n43008044046 +n43008044047 +n43008045002 +n43008045001 +n43008045003 +n43008045004 +n43008045005 +n43008045006 +n43008045007 +n43008045008 +n43008045009 +n43008046001 +n43008046002 +n43008046003 +n43008046004 +n43008046005 +n43008046006 +n43008046007 +n43008046008 +n43008046009 +n43008046010 +n43008046011 +n43008046012 +n43008046013 +n43008046014 +n43008046015 +n43008046016 +n43008047001 +n43008047002 +n43008047003 +n43008047004 +n43008047005 +n43008047006 +n43008047007 +n43008047008 +n43008047009 +n43008047010 +n43008047011 +n43008047012 +n43008047013 +n43008047014 +n43008047015 +n43008047016 +n43008047017 +n43008047018 +n43008047019 +n43008047020 +n43008047021 +n43008048001 +n43008048002 +n43008048003 +n43008048004 +n43008048005 +n43008048006 +n43008048007 +n43008048008 +n43008048009 +n43008048010 +n43008048011 +n43008048012 +n43008048013 +n43008048014 +n43008048015 +n43008048016 +n43008048017 +n43008049001 +n43008049002 +n43008049003 +n43008049004 +n43008049005 +n43008049006 +n43008049007 +n43008049008 +n43008049009 +n43008049010 +n43008049011 +n43008049012 +n43008049013 +n43008049014 +n43008049015 +n43008050002 +n43008050001 +n43008050003 +n43008050004 +n43008050005 +n43008050006 +n43008050007 +n43008050008 +n43008050009 +n43008050010 +n43008050011 +n43008050012 +n43008051001 +n43008051002 +n43008051003 +n43008051004 +n43008051005 +n43008051006 +n43008051007 +n43008051008 +n43008051009 +n43008051010 +n43008051011 +n43008051012 +n43008051013 +n43008051014 +n43008051015 +n43008051016 +n43008051017 +n43008052001 +n43008052002 +n43008052003 +n43008052004 +n43008052005 +n43008052006 +n43008052007 +n43008052008 +n43008052009 +n43008052010 +n43008052011 +n43008052012 +n43008052013 +n43008052014 +n43008052015 +n43008052016 +n43008052017 +n43008052018 +n43008052019 +n43008052020 +n43008052021 +n43008052022 +n43008052023 +n43008052024 +n43008052025 +n43008052026 +n43008052027 +n43008052028 +n43008052029 +n43008052030 +n43008053001 +n43008053002 +n43008053003 +n43008053004 +n43008053005 +n43008053006 +n43008053007 +n43008053008 +n43008053009 +n43008053010 +n43008053011 +n43008053012 +n43008053013 +n43008053014 +n43008053015 +n43008053016 +n43008053017 +n43008054001 +n43008054002 +n43008054003 +n43008054004 +n43008054005 +n43008054006 +n43008054007 +n43008054008 +n43008054009 +n43008054010 +n43008054011 +n43008054012 +n43008054013 +n43008054014 +n43008054015 +n43008054016 +n43008054017 +n43008054018 +n43008054019 +n43008054020 +n43008054021 +n43008054022 +n43008054023 +n43008054024 +n43008054025 +n43008055001 +n43008055002 +n43008055003 +n43008055004 +n43008055006 +n43008055005 +n43008055007 +n43008055008 +n43008055009 +n43008055010 +n43008055011 +n43008055012 +n43008055013 +n43008055014 +n43008055015 +n43008055016 +n43008055017 +n43008055018 +n43008055019 +n43008055020 +n43008055021 +n43008055022 +n43008055023 +n43008055024 +n43008055025 +n43008055026 +n43008056001 +n43008056002 +n43008056003 +n43008056004 +n43008056005 +n43008056006 +n43008056007 +n43008056008 +n43008056009 +n43008056010 +n43008056011 +n43008056012 +n43008056013 +n43008056014 +n43008056015 +n43008057002 +n43008057001 +n43008057003 +n43008057004 +n43008057005 +n43008057006 +n43008057007 +n43008057008 +n43008057009 +n43008057010 +n43008057011 +n43008057012 +n43008057013 +n43008058001 +n43008058002 +n43008058003 +n43008058004 +n43008058005 +n43008058006 +n43008058007 +n43008058008 +n43008058009 +n43008058010 +n43008058011 +n43008058012 +n43008059002 +n43008059001 +n43008059003 +n43008059004 +n43008059005 +n43008059006 +n43008059007 +n43008059009 +n43008059008 +n43008059010 +n43008059011 +n43008059012 +n43008059013 +n43008059014 +n43008059015 +n43009001001 +n43009001002 +n43009001003 +n43009001004 +n43009001005 +n43009001006 +n43009001007 +n43009002001 +n43009002002 +n43009002003 +n43009002004 +n43009002005 +n43009002006 +n43009002007 +n43009002008 +n43009002009 +n43009002010 +n43009002011 +n43009002012 +n43009002013 +n43009002014 +n43009002015 +n43009002016 +n43009002017 +n43009002018 +n43009003001 +n43009003002 +n43009003003 +n43009003004 +n43009003005 +n43009003006 +n43009003007 +n43009003008 +n43009003009 +n43009003010 +n43009003011 +n43009003012 +n43009003013 +n43009003014 +n43009003015 +n43009003016 +n43009003017 +n43009003018 +n43009004002 +n43009004001 +n43009004003 +n43009004004 +n43009004005 +n43009004006 +n43009004007 +n43009004008 +n43009004009 +n43009004010 +n43009004011 +n43009004012 +n43009004013 +n43009004014 +n43009004015 +n43009004016 +n43009004017 +n43009005001 +n43009005002 +n43009005003 +n43009005004 +n43009005005 +n43009005007 +n43009005006 +n43009005008 +n43009005009 +n43009006001 +n43009006002 +n43009006003 +n43009006004 +n43009006005 +n43009006006 +n43009006007 +n43009006008 +n43009006009 +n43009006010 +n43009006011 +n43009006012 +n43009006013 +n43009006014 +n43009006015 +n43009006016 +n43009006017 +n43009006018 +n43009007001 +n43009007002 +n43009007003 +n43009007004 +n43009007005 +n43009007006 +n43009007007 +n43009007008 +n43009007009 +n43009007010 +n43009007011 +n43009007012 +n43009007013 +n43009007015 +n43009007014 +n43009007016 +n43009007017 +n43009007018 +n43009007019 +n43009007020 +n43009008002 +n43009008001 +n43009008003 +n43009008004 +n43009008005 +n43009008006 +n43009008007 +n43009008008 +n43009008009 +n43009008010 +n43009008011 +n43009008012 +n43009008013 +n43009008014 +n43009008015 +n43009008016 +n43009008017 +n43009008018 +n43009008019 +n43009008020 +n43009009001 +n43009009002 +n43009009003 +n43009009004 +n43009009005 +n43009009006 +n43009009007 +n43009009008 +n43009009009 +n43009009010 +n43009009011 +n43009009012 +n43009009013 +n43009009014 +n43009009015 +n43009009016 +n43009009017 +n43009010002 +n43009010001 +n43009010003 +n43009010005 +n43009010004 +n43009010006 +n43009010007 +n43009010008 +n43009010009 +n43009011001 +n43009011002 +n43009011003 +n43009011004 +n43009011005 +n43009011006 +n43009011007 +n43009011008 +n43009011009 +n43009011010 +n43009011011 +n43009011012 +n43009011013 +n43009011014 +n43009011015 +n43009011016 +n43009011017 +n43009011018 +n43009011019 +n43009011020 +n43009011021 +n43009011022 +n43009011023 +n43009011024 +n43009011026 +n43009011025 +n43009011027 +n43009011028 +n43009011029 +n43009012001 +n43009012002 +n43009012003 +n43009012004 +n43009012005 +n43009012006 +n43009012007 +n43009012008 +n43009012009 +n43009013001 +n43009013002 +n43009013006 +n43009013007 +n43009013008 +n43009013003 +n43009013004 +n43009013005 +n43009014002 +n43009014001 +n43009014003 +n43009014004 +n43009014005 +n43009014006 +n43009014007 +n43009014008 +n43009014009 +n43009014010 +n43009014011 +n43009014012 +n43009014013 +n43009014014 +n43009014015 +n43009014016 +n43009015002 +n43009015001 +n43009015003 +n43009015004 +n43009015005 +n43009015006 +n43009015007 +n43009015008 +n43009015009 +n43009015011 +n43009015010 +n43009015012 +n43009015013 +n43009015014 +n43009015015 +n43009015017 +n43009015016 +n43009015018 +n43009015019 +n43009015020 +n43009015021 +n43009015022 +n43009015023 +n43009016002 +n43009016001 +n43009016003 +n43009016004 +n43009016005 +n43009016006 +n43009016007 +n43009016008 +n43009016010 +n43009016011 +n43009016009 +n43009016012 +n43009016013 +n43009016014 +n43009016015 +n43009016016 +n43009016017 +n43009016018 +n43009016019 +n43009016020 +n43009016021 +n43009016022 +n43009016023 +n43009016024 +n43009016025 +n43009016026 +n43009016027 +n43009016028 +n43009016029 +n43009016030 +n43009016031 +n43009016032 +n43009017002 +n43009017001 +n43009017003 +n43009017004 +n43009017005 +n43009017006 +n43009017007 +n43009017008 +n43009017009 +n43009017010 +n43009017011 +n43009017012 +n43009017013 +n43009017014 +n43009017015 +n43009017017 +n43009017016 +n43009017018 +n43009017019 +n43009017020 +n43009017021 +n43009018003 +n43009018001 +n43009018002 +n43009018004 +n43009018005 +n43009018006 +n43009018007 +n43009018008 +n43009018009 +n43009018010 +n43009018011 +n43009018012 +n43009018013 +n43009018014 +n43009018015 +n43009018016 +n43009018017 +n43009018018 +n43009018019 +n43009018020 +n43009019001 +n43009019002 +n43009019003 +n43009019004 +n43009019005 +n43009019006 +n43009019007 +n43009019008 +n43009019009 +n43009019010 +n43009019011 +n43009019012 +n43009019013 +n43009019014 +n43009019015 +n43009019017 +n43009019016 +n43009019018 +n43009019019 +n43009020002 +n43009020001 +n43009020003 +n43009020004 +n43009020005 +n43009020006 +n43009020007 +n43009020008 +n43009020009 +n43009020010 +n43009020011 +n43009020012 +n43009020013 +n43009020014 +n43009020015 +n43009020016 +n43009020017 +n43009020018 +n43009021002 +n43009021001 +n43009021003 +n43009021004 +n43009021005 +n43009021006 +n43009021007 +n43009021008 +n43009021009 +n43009021010 +n43009021011 +n43009021012 +n43009021013 +n43009021014 +n43009021015 +n43009021016 +n43009021017 +n43009021018 +n43009021019 +n43009021020 +n43009021021 +n43009021022 +n43009021023 +n43009022001 +n43009022002 +n43009022003 +n43009022004 +n43009022005 +n43009022006 +n43009022007 +n43009022008 +n43009022009 +n43009022011 +n43009022010 +n43009022012 +n43009022013 +n43009022014 +n43009022015 +n43009022016 +n43009022017 +n43009022018 +n43009022019 +n43009022020 +n43009022021 +n43009022022 +n43009023001 +n43009023002 +n43009023003 +n43009023004 +n43009023005 +n43009023006 +n43009023007 +n43009023008 +n43009023009 +n43009023010 +n43009023011 +n43009024002 +n43009024001 +n43009024003 +n43009024004 +n43009024005 +n43009024006 +n43009024007 +n43009024008 +n43009024009 +n43009024010 +n43009024011 +n43009024012 +n43009024013 +n43009024014 +n43009024015 +n43009024016 +n43009024017 +n43009024018 +n43009024019 +n43009024020 +n43009024021 +n43009024022 +n43009024023 +n43009024024 +n43009025002 +n43009025001 +n43009025003 +n43009025004 +n43009025005 +n43009025006 +n43009025007 +n43009025008 +n43009025009 +n43009025010 +n43009025011 +n43009025012 +n43009025013 +n43009025014 +n43009025015 +n43009026002 +n43009026001 +n43009026003 +n43009026004 +n43009026005 +n43009026006 +n43009026007 +n43009026008 +n43009026009 +n43009026010 +n43009026011 +n43009027001 +n43009027002 +n43009027003 +n43009027004 +n43009027005 +n43009027006 +n43009027007 +n43009027008 +n43009027009 +n43009027010 +n43009027011 +n43009027012 +n43009027013 +n43009027014 +n43009027015 +n43009027016 +n43009027017 +n43009027018 +n43009027019 +n43009028001 +n43009028002 +n43009028003 +n43009028004 +n43009028005 +n43009028006 +n43009028007 +n43009028009 +n43009028008 +n43009028011 +n43009028010 +n43009028012 +n43009028013 +n43009028015 +n43009028014 +n43009029001 +n43009029002 +n43009029003 +n43009029004 +n43009029005 +n43009029006 +n43009029007 +n43009029009 +n43009029008 +n43009029010 +n43009029011 +n43009029012 +n43009029013 +n43009030001 +n43009030002 +n43009030003 +n43009030004 +n43009030005 +n43009030006 +n43009030009 +n43009030007 +n43009030008 +n43009030010 +n43009030011 +n43009030012 +n43009030013 +n43009030014 +n43009030015 +n43009030016 +n43009030017 +n43009030018 +n43009030019 +n43009030020 +n43009030021 +n43009030022 +n43009030023 +n43009031001 +n43009031002 +n43009031003 +n43009031004 +n43009031005 +n43009031006 +n43009031007 +n43009031008 +n43009031009 +n43009031010 +n43009031011 +n43009031012 +n43009031013 +n43009031014 +n43009031015 +n43009031016 +n43009031017 +n43009031018 +n43009031019 +n43009032001 +n43009032002 +n43009032003 +n43009032004 +n43009032005 +n43009032006 +n43009032007 +n43009032008 +n43009032009 +n43009032010 +n43009032011 +n43009033001 +n43009033002 +n43009033003 +n43009033004 +n43009033005 +n43009033006 +n43009033007 +n43009033008 +n43009033009 +n43009033010 +n43009034001 +n43009034002 +n43009034003 +n43009034004 +n43009034005 +n43009034006 +n43009034007 +n43009034008 +n43009034009 +n43009034010 +n43009034011 +n43009034012 +n43009034013 +n43009034014 +n43009034015 +n43009034016 +n43009034017 +n43009035001 +n43009035002 +n43009035003 +n43009035004 +n43009035005 +n43009035006 +n43009035007 +n43009035008 +n43009035009 +n43009035010 +n43009035011 +n43009035012 +n43009035013 +n43009035014 +n43009035015 +n43009035016 +n43009035017 +n43009036001 +n43009036002 +n43009036003 +n43009036004 +n43009036005 +n43009036006 +n43009036007 +n43009036008 +n43009036009 +n43009036010 +n43009036011 +n43009036012 +n43009037001 +n43009037002 +n43009037003 +n43009037004 +n43009037005 +n43009037006 +n43009037007 +n43009037008 +n43009037009 +n43009037010 +n43009037011 +n43009037012 +n43009037013 +n43009037014 +n43009038002 +n43009038001 +n43009038003 +n43009038004 +n43009038005 +n43009038006 +n43009038007 +n43009038008 +n43009039001 +n43009039002 +n43009039003 +n43009039004 +n43009039005 +n43009039006 +n43009039007 +n43009039008 +n43009039009 +n43009039010 +n43009039011 +n43009039012 +n43009039013 +n43009039014 +n43009039015 +n43009039016 +n43009039017 +n43009039018 +n43009039019 +n43009039020 +n43009039021 +n43009039022 +n43009040001 +n43009040005 +n43009040002 +n43009040003 +n43009040004 +n43009040006 +n43009040007 +n43009040008 +n43009040009 +n43009040010 +n43009040011 +n43009040012 +n43009040013 +n43009040014 +n43009040015 +n43009040016 +n43009040017 +n43009041001 +n43009041002 +n43009041003 +n43009041004 +n43009041005 +n43009041006 +n43009041007 +n43009041009 +n43009041008 +n43009041010 +n43009041011 +n43009041013 +n43009041012 +n43009041014 +n43009041015 +n43009041016 +n43009041017 +n43009041018 +n43009041019 +n43009041020 +n43010001001 +n43010001002 +n43010001003 +n43010001004 +n43010001005 +n43010001006 +n43010001007 +n43010001008 +n43010001009 +n43010001010 +n43010001011 +n43010001012 +n43010001013 +n43010001014 +n43010001015 +n43010001016 +n43010001017 +n43010001018 +n43010001019 +n43010001020 +n43010001021 +n43010001022 +n43010001023 +n43010002002 +n43010002001 +n43010002003 +n43010002004 +n43010002005 +n43010002006 +n43010002008 +n43010002007 +n43010002009 +n43010002010 +n43010003001 +n43010003002 +n43010003003 +n43010003004 +n43010003005 +n43010003006 +n43010003007 +n43010003008 +n43010003009 +n43010003010 +n43010003011 +n43010003012 +n43010003013 +n43010003014 +n43010003015 +n43010003016 +n43010003017 +n43010003018 +n43010003019 +n43010003020 +n43010003021 +n43010004001 +n43010004002 +n43010004003 +n43010004004 +n43010004005 +n43010004006 +n43010004007 +n43010004008 +n43010004009 +n43010004010 +n43010004011 +n43010004012 +n43010004013 +n43010004014 +n43010004015 +n43010004016 +n43010004017 +n43010004018 +n43010005002 +n43010005001 +n43010005003 +n43010005004 +n43010005005 +n43010005006 +n43010005007 +n43010005008 +n43010005009 +n43010005010 +n43010005011 +n43010005012 +n43010005013 +n43010005014 +n43010005015 +n43010005016 +n43010006001 +n43010006002 +n43010006003 +n43010006004 +n43010006005 +n43010006006 +n43010006007 +n43010006009 +n43010006008 +n43010006010 +n43010006011 +n43010006012 +n43010006013 +n43010006014 +n43010006015 +n43010006016 +n43010007002 +n43010007001 +n43010007003 +n43010007004 +n43010007005 +n43010007006 +n43010007007 +n43010007008 +n43010007009 +n43010007010 +n43010007011 +n43010007012 +n43010007013 +n43010007014 +n43010007015 +n43010007016 +n43010008001 +n43010008002 +n43010008003 +n43010008004 +n43010008005 +n43010008006 +n43010008007 +n43010008008 +n43010008009 +n43010008010 +n43010008011 +n43010008012 +n43010008013 +n43010008014 +n43010008015 +n43010009001 +n43010009002 +n43010009003 +n43010009004 +n43010009007 +n43010009005 +n43010009006 +n43010009008 +n43010009009 +n43010009010 +n43010009011 +n43010009012 +n43010009013 +n43010009014 +n43010009015 +n43010009016 +n43010009017 +n43010010001 +n43010010002 +n43010010003 +n43010010004 +n43010010005 +n43010010006 +n43010010007 +n43010010008 +n43010010009 +n43010010010 +n43010010011 +n43010010012 +n43010010013 +n43010010014 +n43010010015 +n43010010016 +n43010010017 +n43010010018 +n43010010019 +n43010010020 +n43010011001 +n43010011002 +n43010011003 +n43010011004 +n43010011005 +n43010011006 +n43010011007 +n43010011008 +n43010011009 +n43010011010 +n43010011011 +n43010011012 +n43010011013 +n43010011014 +n43010011015 +n43010011016 +n43010011017 +n43010012001 +n43010012002 +n43010012003 +n43010012004 +n43010012005 +n43010012006 +n43010012007 +n43010012008 +n43010012009 +n43010012010 +n43010012011 +n43010012012 +n43010012013 +n43010012014 +n43010012015 +n43010012016 +n43010012017 +n43010012018 +n43010012019 +n43010012020 +n43010012021 +n43010012022 +n43010012023 +n43010012024 +n43010012025 +n43010012026 +n43010012027 +n43010012028 +n43010012029 +n43010013001 +n43010013002 +n43010013003 +n43010013004 +n43010013005 +n43010013006 +n43010013007 +n43010013008 +n43010013009 +n43010013010 +n43010014001 +n43010014002 +n43010014003 +n43010014004 +n43010014005 +n43010014006 +n43010014007 +n43010014008 +n43010014009 +n43010014010 +n43010014011 +n43010014012 +n43010014013 +n43010014014 +n43010014015 +n43010015001 +n43010015002 +n43010015003 +n43010015004 +n43010015005 +n43010015006 +n43010015007 +n43010015008 +n43010015009 +n43010015010 +n43010015011 +n43010015012 +n43010015013 +n43010015014 +n43010015015 +n43010015016 +n43010015017 +n43010016001 +n43010016002 +n43010016003 +n43010016004 +n43010016005 +n43010016006 +n43010016007 +n43010016008 +n43010016009 +n43010016010 +n43010016011 +n43010016012 +n43010016014 +n43010016015 +n43010016013 +n43010016016 +n43010016017 +n43010016018 +n43010016019 +n43010016020 +n43010016021 +n43010016022 +n43010016023 +n43010016024 +n43010016025 +n43010016026 +n43010017001 +n43010017002 +n43010017003 +n43010017004 +n43010017005 +n43010017006 +n43010017007 +n43010017008 +n43010017009 +n43010017010 +n43010017011 +n43010017012 +n43010017013 +n43010017014 +n43010017015 +n43010017016 +n43010018001 +n43010018002 +n43010018003 +n43010018004 +n43010018005 +n43010018006 +n43010018007 +n43010018008 +n43010018009 +n43010018010 +n43010018011 +n43010018012 +n43010018013 +n43010018014 +n43010018015 +n43010018016 +n43010018017 +n43010018018 +n43010018019 +n43010018020 +n43010018021 +n43010018022 +n43010018023 +n43010018024 +n43010018025 +n43010018026 +n43010018027 +n43010018028 +n43010018029 +n43010019001 +n43010019002 +n43010019003 +n43010019004 +n43010019005 +n43010019006 +n43010019007 +n43010019008 +n43010019009 +n43010019010 +n43010020002 +n43010020001 +n43010020003 +n43010020004 +n43010020005 +n43010020006 +n43010020007 +n43010020008 +n43010020009 +n43010020010 +n43010020011 +n43010020012 +n43010021001 +n43010021002 +n43010021003 +n43010021004 +n43010021005 +n43010021006 +n43010021007 +n43010021008 +n43010021009 +n43010021010 +n43010021011 +n43010021012 +n43010021013 +n43010021014 +n43010022001 +n43010022002 +n43010022003 +n43010022004 +n43010022005 +n43010022006 +n43010022007 +n43010022008 +n43010022009 +n43010023001 +n43010023002 +n43010023003 +n43010023004 +n43010023005 +n43010023006 +n43010023007 +n43010023008 +n43010023009 +n43010023010 +n43010023011 +n43010023012 +n43010024002 +n43010024001 +n43010024003 +n43010024004 +n43010024005 +n43010024006 +n43010024007 +n43010024008 +n43010024009 +n43010024010 +n43010024011 +n43010024012 +n43010024013 +n43010024014 +n43010024015 +n43010024016 +n43010024017 +n43010024018 +n43010024019 +n43010024020 +n43010024021 +n43010024022 +n43010025001 +n43010025002 +n43010025003 +n43010025004 +n43010025005 +n43010025006 +n43010025007 +n43010025008 +n43010025009 +n43010025010 +n43010025011 +n43010025012 +n43010025013 +n43010025014 +n43010025015 +n43010025016 +n43010025017 +n43010025018 +n43010025019 +n43010025020 +n43010025021 +n43010025022 +n43010025023 +n43010025024 +n43010026001 +n43010026002 +n43010026003 +n43010026004 +n43010026005 +n43010026006 +n43010026007 +n43010026008 +n43010026009 +n43010026010 +n43010026011 +n43010026012 +n43010027001 +n43010027002 +n43010027003 +n43010027004 +n43010027005 +n43010027006 +n43010027007 +n43010027008 +n43010027009 +n43010027010 +n43010027011 +n43010027012 +n43010027013 +n43010027014 +n43010028001 +n43010028002 +n43010028003 +n43010028004 +n43010028005 +n43010028006 +n43010028007 +n43010028008 +n43010028009 +n43010028010 +n43010028011 +n43010028012 +n43010028013 +n43010028014 +n43010028015 +n43010028016 +n43010028017 +n43010028018 +n43010028019 +n43010028020 +n43010028021 +n43010029001 +n43010029002 +n43010029003 +n43010029004 +n43010029005 +n43010029006 +n43010029007 +n43010029008 +n43010029009 +n43010029010 +n43010029011 +n43010029012 +n43010029013 +n43010029014 +n43010029015 +n43010029016 +n43010029017 +n43010029018 +n43010030001 +n43010030002 +n43010030003 +n43010030004 +n43010030005 +n43010030006 +n43010031001 +n43010031002 +n43010031003 +n43010031004 +n43010031005 +n43010031006 +n43010031007 +n43010031008 +n43010032001 +n43010032002 +n43010032003 +n43010032004 +n43010032005 +n43010032006 +n43010032009 +n43010032007 +n43010032008 +n43010032010 +n43010032011 +n43010032012 +n43010032013 +n43010032014 +n43010032015 +n43010032016 +n43010032017 +n43010032018 +n43010033001 +n43010033002 +n43010033003 +n43010033004 +n43010033005 +n43010033006 +n43010033007 +n43010033008 +n43010033009 +n43010033010 +n43010033011 +n43010033012 +n43010033013 +n43010033014 +n43010033015 +n43010033016 +n43010033017 +n43010033018 +n43010033019 +n43010033020 +n43010033021 +n43010034001 +n43010034002 +n43010034003 +n43010034004 +n43010034005 +n43010034006 +n43010034007 +n43010034008 +n43010034009 +n43010034010 +n43010034011 +n43010034012 +n43010034013 +n43010034014 +n43010034015 +n43010034016 +n43010035001 +n43010035002 +n43010035003 +n43010035004 +n43010035005 +n43010035006 +n43010035007 +n43010035008 +n43010035009 +n43010035010 +n43010035011 +n43010035012 +n43010035013 +n43010035014 +n43010035015 +n43010035016 +n43010035017 +n43010036001 +n43010036002 +n43010036003 +n43010036004 +n43010036005 +n43010036006 +n43010036007 +n43010036008 +n43010036009 +n43010036010 +n43010036011 +n43010036012 +n43010036013 +n43010036014 +n43010036015 +n43010036016 +n43010036017 +n43010036018 +n43010036019 +n43010037001 +n43010037002 +n43010037003 +n43010037004 +n43010037005 +n43010037006 +n43010037007 +n43010037008 +n43010037009 +n43010037010 +n43010037011 +n43010038002 +n43010038001 +n43010038003 +n43010038004 +n43010038005 +n43010038006 +n43010038007 +n43010038008 +n43010038009 +n43010038010 +n43010038011 +n43010038012 +n43010038013 +n43010038014 +n43010038015 +n43010038016 +n43010038017 +n43010038018 +n43010038019 +n43010038020 +n43010038021 +n43010038022 +n43010038023 +n43010039002 +n43010039001 +n43010039003 +n43010039005 +n43010039004 +n43010039006 +n43010039007 +n43010039008 +n43010039009 +n43010039010 +n43010039011 +n43010040001 +n43010040002 +n43010040003 +n43010040004 +n43010040005 +n43010040006 +n43010040007 +n43010040008 +n43010040009 +n43010040010 +n43010040011 +n43010040015 +n43010040012 +n43010040013 +n43010040014 +n43010040016 +n43010040017 +n43010040018 +n43010041001 +n43010041002 +n43010041003 +n43010041004 +n43010041005 +n43010041006 +n43010041007 +n43010041008 +n43010041010 +n43010041009 +n43010041011 +n43010041013 +n43010041012 +n43010041015 +n43010041014 +n43010041016 +n43010041017 +n43010041018 +n43010041019 +n43010041020 +n43010041021 +n43010041022 +n43010042001 +n43010042002 +n43010042003 +n43010042004 +n43010042005 +n43010042006 +n43011001002 +n43011001001 +n43011001003 +n43011001004 +n43011001005 +n43011001006 +n43011001007 +n43011001008 +n43011001009 +n43011001010 +n43011001011 +n43011001012 +n43011001013 +n43011001014 +n43011001015 +n43011001016 +n43011002002 +n43011002001 +n43011002003 +n43011002004 +n43011002005 +n43011002006 +n43011002007 +n43011002008 +n43011002009 +n43011002010 +n43011002011 +n43011002012 +n43011002013 +n43011002014 +n43011002015 +n43011002016 +n43011002017 +n43011002018 +n43011002019 +n43011002020 +n43011002021 +n43011003002 +n43011003001 +n43011003003 +n43011003004 +n43011003005 +n43011003006 +n43011003007 +n43011003008 +n43011003009 +n43011003010 +n43011003011 +n43011003012 +n43011004002 +n43011004001 +n43011004003 +n43011004004 +n43011004005 +n43011004006 +n43011004007 +n43011004008 +n43011004009 +n43011004010 +n43011004011 +n43011004012 +n43011004013 +n43011004014 +n43011004015 +n43011004016 +n43011004017 +n43011004018 +n43011004019 +n43011004020 +n43011004021 +n43011004022 +n43011004023 +n43011004024 +n43011004025 +n43011004026 +n43011005002 +n43011005001 +n43011005003 +n43011005004 +n43011005005 +n43011005006 +n43011005007 +n43011005008 +n43011005009 +n43011005010 +n43011005011 +n43011005012 +n43011005013 +n43011006002 +n43011006001 +n43011006003 +n43011006004 +n43011006005 +n43011006007 +n43011006006 +n43011006008 +n43011006009 +n43011006010 +n43011006011 +n43011006012 +n43011006013 +n43011006014 +n43011007001 +n43011007002 +n43011007003 +n43011007004 +n43011007005 +n43011007006 +n43011007007 +n43011007008 +n43011007009 +n43011007010 +n43011007011 +n43011008001 +n43011008002 +n43011008003 +n43011008004 +n43011008005 +n43011008006 +n43011008007 +n43011008008 +n43011008009 +n43011008010 +n43011008011 +n43011008012 +n43011008013 +n43011008014 +n43011008015 +n43011009001 +n43011009002 +n43011009003 +n43011009004 +n43011009005 +n43011009006 +n43011009007 +n43011009008 +n43011009009 +n43011009010 +n43011009011 +n43011009012 +n43011009013 +n43011009014 +n43011009015 +n43011009016 +n43011009017 +n43011009018 +n43011009019 +n43011009020 +n43011009021 +n43011009022 +n43011009023 +n43011010002 +n43011010001 +n43011010003 +n43011010004 +n43011010005 +n43011010006 +n43011010007 +n43011010008 +n43011010009 +n43011010010 +n43011010011 +n43011010012 +n43011010013 +n43011010014 +n43011010015 +n43011011001 +n43011011002 +n43011011003 +n43011011004 +n43011011005 +n43011011006 +n43011011007 +n43011011008 +n43011011009 +n43011011010 +n43011011011 +n43011011012 +n43011011013 +n43011011014 +n43011011015 +n43011011016 +n43011011017 +n43011012002 +n43011012001 +n43011012003 +n43011012004 +n43011012005 +n43011012006 +n43011012007 +n43011012008 +n43011012009 +n43011013002 +n43011013001 +n43011013003 +n43011013004 +n43011013005 +n43011013006 +n43011013007 +n43011013008 +n43011013010 +n43011013009 +n43011013011 +n43011013012 +n43011013013 +n43011013014 +n43011013015 +n43011013016 +n43011013017 +n43011013018 +n43011014002 +n43011014001 +n43011014003 +n43011014004 +n43011014005 +n43011014006 +n43011014007 +n43011014008 +n43011014009 +n43011015001 +n43011015002 +n43011015003 +n43011015004 +n43011015005 +n43011015006 +n43011015007 +n43011015008 +n43011015009 +n43011015010 +n43011015011 +n43011015012 +n43011015013 +n43011015014 +n43011016002 +n43011016001 +n43011016003 +n43011016004 +n43011016005 +n43011016006 +n43011016007 +n43011016008 +n43011016009 +n43011016010 +n43011016011 +n43011016012 +n43011016013 +n43011016014 +n43011016015 +n43011017002 +n43011017001 +n43011017003 +n43011017004 +n43011017005 +n43011017006 +n43011017007 +n43011017009 +n43011017008 +n43011017010 +n43011017011 +n43011017012 +n43011017013 +n43011018002 +n43011018001 +n43011018003 +n43011018004 +n43011018005 +n43011018006 +n43011018007 +n43011018008 +n43011018009 +n43011018010 +n43011019002 +n43011019001 +n43011019003 +n43011019004 +n43011019005 +n43011019006 +n43011019007 +n43011019008 +n43011019009 +n43011019010 +n43011019011 +n43011019012 +n43011019013 +n43011019014 +n43011019015 +n43011019016 +n43011019017 +n43011020002 +n43011020004 +n43011020005 +n43011020006 +n43011020007 +n43011020008 +n43011020001 +n43011020003 +n43011020009 +n43011020010 +n43011020012 +n43011020011 +n43011020013 +n43011020014 +n43011020015 +n43011020016 +n43011021002 +n43011021001 +n43011021003 +n43011021004 +n43011021005 +n43011021006 +n43011021007 +n43011021008 +n43011021009 +n43011021010 +n43011021012 +n43011021011 +n43011021013 +n43011021014 +n43011021015 +n43011021016 +n43011022001 +n43011022002 +n43011022003 +n43011022004 +n43011022006 +n43011022005 +n43011022007 +n43011022008 +n43011022009 +n43011022010 +n43011022011 +n43011022012 +n43011022013 +n43011023001 +n43011023002 +n43011023003 +n43011023004 +n43011023005 +n43011023006 +n43011023007 +n43011023008 +n43011024001 +n43011024002 +n43011024003 +n43011024004 +n43011024005 +n43011024006 +n43011024007 +n43011024008 +n43011024009 +n43011024010 +n43011024011 +n43011024012 +n43011024013 +n43011024014 +n43011025001 +n43011025002 +n43011025003 +n43011025004 +n43011025005 +n43011025006 +n43011025007 +n43011025008 +n43011025009 +n43011025010 +n43011025011 +n43011025012 +n43011025013 +n43011025014 +n43011025015 +n43011025016 +n43011025017 +n43011025018 +n43011026001 +n43011026002 +n43011026003 +n43011026004 +n43011026005 +n43011026006 +n43011026007 +n43011026008 +n43011026009 +n43011026010 +n43011026011 +n43011026012 +n43011026013 +n43011026014 +n43011026015 +n43011026016 +n43011027001 +n43011027002 +n43011027003 +n43011027004 +n43011027005 +n43011027006 +n43011027007 +n43011027008 +n43011027009 +n43011027010 +n43011027011 +n43011027012 +n43011027013 +n43011027014 +n43011027015 +n43011027016 +n43011027017 +n43011027018 +n43011027019 +n43011027020 +n43011028001 +n43011028002 +n43011028003 +n43011028004 +n43011028005 +n43011028006 +n43011028007 +n43011028008 +n43011028009 +n43011028010 +n43011028011 +n43011028012 +n43011028013 +n43011028014 +n43011028015 +n43011028016 +n43011028017 +n43011028018 +n43011029002 +n43011029001 +n43011029003 +n43011029004 +n43011029005 +n43011029006 +n43011029007 +n43011029008 +n43011029009 +n43011029010 +n43011030002 +n43011030001 +n43011030003 +n43011030004 +n43011030005 +n43011030006 +n43011030007 +n43011030008 +n43011030009 +n43011030010 +n43011030011 +n43011030012 +n43011030013 +n43011030014 +n43011030015 +n43011030016 +n43011030017 +n43011030018 +n43011030019 +n43011031002 +n43011031001 +n43011031003 +n43011031004 +n43011031005 +n43011031006 +n43011031007 +n43011031008 +n43011031009 +n43011031010 +n43011031011 +n43011031012 +n43011031013 +n43011031014 +n43011031015 +n43011031016 +n43011031017 +n43011031018 +n43011031019 +n43011031020 +n43011031021 +n43011031022 +n43011031023 +n43011031024 +n43011031025 +n43011031026 +n43011031027 +n43011031028 +n43011031029 +n43011031030 +n43011031031 +n43011031032 +n43011032002 +n43011032001 +n43011032003 +n43011032004 +n43011032005 +n43011032006 +n43011032007 +n43011032008 +n43011032009 +n43011032010 +n43011032011 +n43011032013 +n43011032012 +n43011032014 +n43011032015 +n43011032016 +n43011032017 +n43011032018 +n43011032019 +n43011032020 +n43011032021 +n43011032023 +n43011032022 +n43011032025 +n43011032024 +n43011032026 +n43011032027 +n43011033002 +n43011033001 +n43011033003 +n43011033004 +n43011033005 +n43011033006 +n43011033007 +n43011033008 +n43011033009 +n43011033010 +n43011033011 +n43011033012 +n43011033013 +n43011033014 +n43011033015 +n43011033016 +n43011033017 +n43011033018 +n43011034001 +n43011034002 +n43011034003 +n43011034004 +n43011034005 +n43011034006 +n43011034007 +n43011034008 +n43011034009 +n43011034010 +n43011034011 +n43011035001 +n43011035002 +n43011035003 +n43011036002 +n43011036001 +n43011036003 +n43011036004 +n43011036005 +n43011036006 +n43011036007 +n43011036008 +n43011037002 +n43011037001 +n43011037003 +n43011037004 +n43011037005 +n43011037006 +n43011037007 +n43011037008 +n43011037009 +n43011037010 +n43011037011 +n43011037012 +n43011037013 +n43011037014 +n43011037015 +n43011037016 +n43011037017 +n43011037018 +n43011037019 +n43011037020 +n43011038002 +n43011038001 +n43011038003 +n43011038004 +n43011038005 +n43011038006 +n43011038007 +n43011038008 +n43011038009 +n43011038010 +n43011038012 +n43011038011 +n43011038013 +n43011038014 +n43011038015 +n43011038016 +n43011038017 +n43011038018 +n43011039001 +n43011039002 +n43011039003 +n43011039004 +n43011039005 +n43011039006 +n43011039007 +n43011039008 +n43011039009 +n43011039010 +n43011039011 +n43011039012 +n43011039013 +n43011039014 +n43011039015 +n43011039016 +n43011039018 +n43011039017 +n43011039019 +n43011040001 +n43011040002 +n43011040003 +n43011040004 +n43011040005 +n43011040006 +n43011040007 +n43011040008 +n43011040009 +n43011040010 +n43011040011 +n43011040012 +n43011040013 +n43011040014 +n43011040015 +n43011041002 +n43011041001 +n43011041003 +n43011041004 +n43011041006 +n43011041005 +n43011041007 +n43011041008 +n43011041009 +n43011041010 +n43011041011 +n43011041012 +n43011041013 +n43011041014 +n43011041015 +n43011041016 +n43011041017 +n43011041018 +n43011041019 +n43011042002 +n43011042001 +n43011042003 +n43011042004 +n43011042005 +n43011042006 +n43011042007 +n43011042008 +n43011042009 +n43011042010 +n43011042011 +n43011042012 +n43011042013 +n43011042014 +n43011042015 +n43011042016 +n43011042017 +n43011042018 +n43011042019 +n43011042020 +n43011043001 +n43011043002 +n43011043003 +n43011043004 +n43011043005 +n43011043006 +n43011043007 +n43011043008 +n43011043009 +n43011044001 +n43011044002 +n43011044003 +n43011044004 +n43011044005 +n43011044006 +n43011044007 +n43011044008 +n43011044009 +n43011044010 +n43011044011 +n43011044012 +n43011044013 +n43011044014 +n43011044015 +n43011044016 +n43011044017 +n43011044018 +n43011044019 +n43011044020 +n43011044021 +n43011044022 +n43011044023 +n43011044024 +n43011044025 +n43011044026 +n43011045002 +n43011045001 +n43011045003 +n43011045004 +n43011045005 +n43011045006 +n43011045007 +n43011045008 +n43011045009 +n43011045010 +n43011045011 +n43011045012 +n43011045013 +n43011045014 +n43011045015 +n43011045016 +n43011045017 +n43011046002 +n43011046001 +n43011046003 +n43011046004 +n43011046005 +n43011046006 +n43011046007 +n43011046008 +n43011046009 +n43011046010 +n43011046011 +n43011046012 +n43011046013 +n43011046014 +n43011047002 +n43011047001 +n43011047003 +n43011047004 +n43011047005 +n43011047006 +n43011047007 +n43011047008 +n43011047009 +n43011047010 +n43011047011 +n43011047012 +n43011047013 +n43011047014 +n43011047015 +n43011047016 +n43011047017 +n43011047019 +n43011047018 +n43011048001 +n43011048002 +n43011048003 +n43011048004 +n43011048005 +n43011048006 +n43011048007 +n43011048008 +n43011048009 +n43011048010 +n43011048011 +n43011048012 +n43011048013 +n43011048014 +n43011048015 +n43011048016 +n43011048017 +n43011048018 +n43011048019 +n43011048020 +n43011048021 +n43011049002 +n43011049001 +n43011049003 +n43011049004 +n43011049005 +n43011049006 +n43011049007 +n43011049008 +n43011049009 +n43011049010 +n43011049011 +n43011049012 +n43011049013 +n43011049014 +n43011049015 +n43011049016 +n43011049017 +n43011050001 +n43011050002 +n43011050003 +n43011050004 +n43011050005 +n43011050006 +n43011050007 +n43011050008 +n43011050009 +n43011050010 +n43011050011 +n43011050012 +n43011050013 +n43011050014 +n43011050015 +n43011050016 +n43011050017 +n43011050018 +n43011051002 +n43011051001 +n43011051003 +n43011051004 +n43011051005 +n43011051006 +n43011051007 +n43011051008 +n43011051009 +n43011051010 +n43011051011 +n43011051012 +n43011051013 +n43011051014 +n43011051015 +n43011051016 +n43011051017 +n43011051018 +n43011051019 +n43011051020 +n43011052001 +n43011052002 +n43011052003 +n43011052004 +n43011052005 +n43011052006 +n43011052007 +n43011052008 +n43011052009 +n43011052010 +n43011052011 +n43011052012 +n43011052013 +n43011052014 +n43011052015 +n43011052016 +n43011052017 +n43011052018 +n43011053003 +n43011053001 +n43011053002 +n43011053004 +n43011053005 +n43011053006 +n43011053007 +n43011053008 +n43011053009 +n43011054002 +n43011054001 +n43011054003 +n43011054004 +n43011054005 +n43011054006 +n43011054007 +n43011054008 +n43011054009 +n43011054010 +n43011054011 +n43011054012 +n43011054013 +n43011054014 +n43011054015 +n43011054016 +n43011054017 +n43011054018 +n43011054019 +n43011054020 +n43011054021 +n43011054022 +n43011054023 +n43011054024 +n43011054025 +n43011054026 +n43011054027 +n43011055002 +n43011055001 +n43011055003 +n43011055004 +n43011055005 +n43011055006 +n43011055007 +n43011055008 +n43011055009 +n43011055010 +n43011055011 +n43011055012 +n43011055013 +n43011055014 +n43011055015 +n43011055016 +n43011055017 +n43011055018 +n43011055019 +n43011055020 +n43011055021 +n43011056002 +n43011056001 +n43011056003 +n43011056004 +n43011056005 +n43011056006 +n43011056007 +n43011056008 +n43011056009 +n43011056010 +n43011056011 +n43011056012 +n43011056013 +n43011056014 +n43011056015 +n43011056016 +n43011056017 +n43011056018 +n43011056019 +n43011056020 +n43011056021 +n43011056022 +n43011057002 +n43011057001 +n43011057003 +n43011057004 +n43011057005 +n43011057006 +n43011057007 +n43011057008 +n43011057009 +n43011057010 +n43011057011 +n43011057012 +n43011057013 +n43011057014 +n43011057015 +n43011057016 +n43011057017 +n43011057018 +n43012001002 +n43012001001 +n43012001003 +n43012001004 +n43012001005 +n43012001006 +n43012001007 +n43012001008 +n43012001009 +n43012001010 +n43012001011 +n43012001012 +n43012001013 +n43012001014 +n43012001015 +n43012001016 +n43012001017 +n43012001018 +n43012001019 +n43012002002 +n43012002001 +n43012002003 +n43012002004 +n43012002005 +n43012002006 +n43012002007 +n43012002008 +n43012002009 +n43012002011 +n43012002010 +n43012002012 +n43012002014 +n43012002013 +n43012002015 +n43012002016 +n43012002017 +n43012002018 +n43012002019 +n43012003002 +n43012003001 +n43012003003 +n43012003004 +n43012003005 +n43012003006 +n43012003007 +n43012003008 +n43012003009 +n43012003010 +n43012003011 +n43012003012 +n43012003013 +n43012003014 +n43012003015 +n43012003016 +n43012003017 +n43012003018 +n43012003019 +n43012003020 +n43012003021 +n43012003022 +n43012003024 +n43012003023 +n43012003025 +n43012003026 +n43012003027 +n43012003028 +n43012003029 +n43012003030 +n43012003031 +n43012004002 +n43012004001 +n43012004003 +n43012004004 +n43012004005 +n43012004006 +n43012004007 +n43012004008 +n43012004009 +n43012004010 +n43012004011 +n43012004012 +n43012004013 +n43012005001 +n43012005002 +n43012005003 +n43012005004 +n43012005005 +n43012005006 +n43012005007 +n43012005008 +n43012005009 +n43012005010 +n43012005011 +n43012005012 +n43012006002 +n43012006001 +n43012006003 +n43012006004 +n43012006005 +n43012006006 +n43012006007 +n43012006008 +n43012006009 +n43012006010 +n43012006011 +n43012006012 +n43012006013 +n43012006014 +n43012006015 +n43012006016 +n43012006017 +n43012006018 +n43012006019 +n43012006020 +n43012006021 +n43012007002 +n43012007001 +n43012007003 +n43012007004 +n43012007005 +n43012007006 +n43012007007 +n43012007008 +n43012007009 +n43012007010 +n43012007011 +n43012007012 +n43012007013 +n43012007014 +n43012007015 +n43012008003 +n43012008001 +n43012008002 +n43012008004 +n43012008005 +n43012008006 +n43012008007 +n43012008009 +n43012008008 +n43012008010 +n43012008011 +n43012008012 +n43012009002 +n43012009001 +n43012009003 +n43012009004 +n43012009005 +n43012009006 +n43012009007 +n43012009008 +n43012009009 +n43012009010 +n43012009011 +n43012009012 +n43012009013 +n43012009014 +n43012009015 +n43012009016 +n43012009017 +n43012009018 +n43012009019 +n43012009020 +n43012009021 +n43012009024 +n43012009022 +n43012009023 +n43012009025 +n43012009026 +n43012009027 +n43012009028 +n43012010002 +n43012010001 +n43012010003 +n43012010004 +n43012010005 +n43012010006 +n43012010007 +n43012010008 +n43012010009 +n43012011001 +n43012011002 +n43012011006 +n43012011007 +n43012011003 +n43012011004 +n43012011005 +n43012011008 +n43012011009 +n43012011010 +n43012011011 +n43012011012 +n43012012001 +n43012012002 +n43012012003 +n43012012004 +n43012012005 +n43012012006 +n43012012007 +n43012012008 +n43012012009 +n43012012010 +n43012012011 +n43012012012 +n43012012013 +n43012012014 +n43012012015 +n43012012016 +n43012013001 +n43012013002 +n43012013003 +n43012013004 +n43012013005 +n43012013006 +n43012013007 +n43012013008 +n43012013009 +n43012013010 +n43012013011 +n43012013012 +n43012013013 +n43012013014 +n43012013015 +n43012013016 +n43012013017 +n43012013018 +n43012013019 +n43012013020 +n43012013021 +n43012013022 +n43012013023 +n43012013024 +n43012014002 +n43012014001 +n43012014005 +n43012014003 +n43012014004 +n43012014006 +n43012014007 +n43012014008 +n43012014009 +n43012014010 +n43012014011 +n43012015001 +n43012015002 +n43012015003 +n43012015004 +n43012015005 +n43012015006 +n43012015007 +n43012015008 +n43012015009 +n43012015010 +n43012015011 +n43012015012 +n43012015013 +n43012016001 +n43012016002 +n43012016003 +n43012016004 +n43012016005 +n43012016006 +n43012016007 +n43012016008 +n43012016009 +n43012016010 +n43012016011 +n43012016012 +n43012016013 +n43012016014 +n43012016015 +n43012016016 +n43012016017 +n43012016020 +n43012016018 +n43012016019 +n43012016021 +n43012016022 +n43012016023 +n43012016024 +n43012017002 +n43012017001 +n43012017003 +n43012017004 +n43012017005 +n43012017006 +n43012017007 +n43012017008 +n43012017009 +n43012017010 +n43012017011 +n43012017012 +n43012017013 +n43012017014 +n43012017015 +n43012017016 +n43012017017 +n43012017018 +n43012017019 +n43012017020 +n43012018001 +n43012018002 +n43012018003 +n43012018004 +n43012018005 +n43012018006 +n43012018007 +n43012018008 +n43012018009 +n43012018010 +n43012018011 +n43012018012 +n43012018013 +n43012018014 +n43012019002 +n43012019001 +n43012019003 +n43012019004 +n43012019005 +n43012019006 +n43012019007 +n43012019008 +n43012019009 +n43012019010 +n43012019011 +n43012019012 +n43012019013 +n43012019014 +n43012019015 +n43012019016 +n43012019017 +n43012020002 +n43012020001 +n43012020003 +n43012020004 +n43012020005 +n43012020006 +n43012020007 +n43012020008 +n43012020009 +n43012020010 +n43012020011 +n43012020012 +n43012021002 +n43012021001 +n43012021003 +n43012021004 +n43012021005 +n43012021006 +n43012021007 +n43012021008 +n43012021009 +n43012021010 +n43012021011 +n43012021012 +n43012021013 +n43012021014 +n43012021015 +n43012021016 +n43012021017 +n43012021018 +n43012022001 +n43012022002 +n43012022003 +n43012022004 +n43012022005 +n43012022006 +n43012022007 +n43012022008 +n43012022009 +n43012022010 +n43012022011 +n43012022012 +n43012022013 +n43012022014 +n43012022015 +n43012023002 +n43012023001 +n43012023003 +n43012023004 +n43012023005 +n43012023006 +n43012023007 +n43012023008 +n43012023009 +n43012023010 +n43012023011 +n43012023012 +n43012023013 +n43012023014 +n43012023015 +n43012024001 +n43012024002 +n43012024003 +n43012024004 +n43012024005 +n43012024006 +n43012024007 +n43012024008 +n43012024009 +n43012024010 +n43012024011 +n43012024012 +n43012024013 +n43012024014 +n43012024015 +n43012024016 +n43012024017 +n43012024018 +n43012024020 +n43012024019 +n43012024021 +n43012024022 +n43012024023 +n43012024024 +n43012025001 +n43012025002 +n43012025003 +n43012025004 +n43012025005 +n43012025006 +n43012025007 +n43012025008 +n43012025009 +n43012025010 +n43012025011 +n43012025012 +n43012025013 +n43012025014 +n43012025015 +n43012025016 +n43012025017 +n43012025018 +n43012025019 +n43012025020 +n43012025021 +n43012025022 +n43012026001 +n43012026002 +n43012026003 +n43012026004 +n43012026005 +n43012026006 +n43012026007 +n43012026008 +n43012026009 +n43012026010 +n43012026011 +n43012026012 +n43012026013 +n43012026014 +n43012026015 +n43012026016 +n43012026017 +n43012026018 +n43012026019 +n43012026020 +n43012026021 +n43012026022 +n43012026023 +n43012026024 +n43012026025 +n43012027001 +n43012027002 +n43012027003 +n43012027004 +n43012027005 +n43012027006 +n43012027007 +n43012027008 +n43012027009 +n43012027010 +n43012027011 +n43012027012 +n43012027013 +n43012027014 +n43012027015 +n43012027016 +n43012027017 +n43012027018 +n43012027019 +n43012027020 +n43012027021 +n43012027022 +n43012027023 +n43012028001 +n43012028002 +n43012028003 +n43012028004 +n43012028005 +n43012028007 +n43012028006 +n43012028008 +n43012028009 +n43012028010 +n43012028011 +n43012028012 +n43012028013 +n43012028014 +n43012028015 +n43012028016 +n43012029002 +n43012029001 +n43012029003 +n43012029004 +n43012029005 +n43012029006 +n43012029007 +n43012029008 +n43012029009 +n43012029010 +n43012029011 +n43012029012 +n43012029013 +n43012029014 +n43012029015 +n43012030001 +n43012030002 +n43012030003 +n43012030004 +n43012030005 +n43012030006 +n43012030007 +n43012030008 +n43012030009 +n43012030010 +n43012030011 +n43012030012 +n43012030013 +n43012030014 +n43012031001 +n43012031003 +n43012031002 +n43012031004 +n43012031005 +n43012031006 +n43012031007 +n43012031008 +n43012031009 +n43012031010 +n43012031011 +n43012031012 +n43012031013 +n43012031014 +n43012032002 +n43012032001 +n43012032003 +n43012032004 +n43012032005 +n43012032006 +n43012032007 +n43012032008 +n43012032009 +n43012032010 +n43012033002 +n43012033001 +n43012033003 +n43012033004 +n43012033005 +n43012033006 +n43012033007 +n43012033008 +n43012034002 +n43012034001 +n43012034003 +n43012034004 +n43012034005 +n43012034006 +n43012034007 +n43012034008 +n43012034009 +n43012034010 +n43012034011 +n43012034012 +n43012034013 +n43012034014 +n43012034015 +n43012034016 +n43012034017 +n43012034018 +n43012034019 +n43012034020 +n43012034021 +n43012034022 +n43012034023 +n43012034024 +n43012034025 +n43012034026 +n43012034027 +n43012034028 +n43012034029 +n43012034030 +n43012034031 +n43012034032 +n43012034033 +n43012034034 +n43012034035 +n43012035002 +n43012035001 +n43012035003 +n43012035004 +n43012035005 +n43012035006 +n43012035007 +n43012035008 +n43012035009 +n43012035010 +n43012035011 +n43012035012 +n43012035013 +n43012035014 +n43012035015 +n43012035016 +n43012035017 +n43012035018 +n43012035019 +n43012035020 +n43012035021 +n43012035022 +n43012035023 +n43012035024 +n43012035025 +n43012035026 +n43012035027 +n43012035028 +n43012035029 +n43012035030 +n43012035031 +n43012035032 +n43012035033 +n43012036001 +n43012036002 +n43012036003 +n43012036004 +n43012036005 +n43012036006 +n43012036007 +n43012036008 +n43012036009 +n43012036010 +n43012036011 +n43012036012 +n43012036013 +n43012036014 +n43012036015 +n43012036016 +n43012036017 +n43012036018 +n43012036019 +n43012036020 +n43012037002 +n43012037003 +n43012037001 +n43012037004 +n43012037005 +n43012037006 +n43012037007 +n43012037008 +n43012037009 +n43012037010 +n43012037011 +n43012038001 +n43012038002 +n43012038003 +n43012038004 +n43012038005 +n43012038006 +n43012038007 +n43012038008 +n43012038009 +n43012038010 +n43012038011 +n43012038012 +n43012038013 +n43012038014 +n43012038015 +n43012038016 +n43012038017 +n43012038018 +n43012038019 +n43012038020 +n43012038021 +n43012039001 +n43012039002 +n43012039003 +n43012039004 +n43012039005 +n43012039006 +n43012039007 +n43012039008 +n43012039009 +n43012040001 +n43012040002 +n43012040003 +n43012040004 +n43012040005 +n43012040006 +n43012040007 +n43012040008 +n43012040009 +n43012040010 +n43012040011 +n43012040012 +n43012040013 +n43012040014 +n43012040015 +n43012040016 +n43012040017 +n43012040018 +n43012040019 +n43012040020 +n43012040021 +n43012040022 +n43012040023 +n43012041001 +n43012041002 +n43012041003 +n43012041004 +n43012041005 +n43012041006 +n43012041007 +n43012041008 +n43012041009 +n43012041010 +n43012041011 +n43012041012 +n43012042002 +n43012042001 +n43012042003 +n43012042004 +n43012042005 +n43012042006 +n43012042007 +n43012042008 +n43012042009 +n43012042010 +n43012042011 +n43012042012 +n43012042013 +n43012042014 +n43012042015 +n43012042016 +n43012042017 +n43012042018 +n43012042019 +n43012042020 +n43012043002 +n43012043001 +n43012043003 +n43012043004 +n43012043005 +n43012043006 +n43012043007 +n43012043008 +n43012043009 +n43012043010 +n43012043011 +n43012043012 +n43012044002 +n43012044001 +n43012044003 +n43012044004 +n43012044005 +n43012044006 +n43012044007 +n43012044008 +n43012044009 +n43012044010 +n43012044011 +n43012044012 +n43012044013 +n43012044014 +n43012044015 +n43012044016 +n43012044017 +n43012044018 +n43012045001 +n43012045002 +n43012045003 +n43012045004 +n43012045005 +n43012045006 +n43012045007 +n43012045008 +n43012046001 +n43012046002 +n43012046003 +n43012046004 +n43012046005 +n43012046006 +n43012046007 +n43012046008 +n43012046009 +n43012046010 +n43012046011 +n43012046012 +n43012046013 +n43012046014 +n43012046015 +n43012046016 +n43012046017 +n43012047001 +n43012047002 +n43012047003 +n43012047005 +n43012047004 +n43012047006 +n43012047007 +n43012047008 +n43012047009 +n43012047010 +n43012047011 +n43012047012 +n43012047013 +n43012047014 +n43012047016 +n43012047015 +n43012047017 +n43012047018 +n43012047019 +n43012047020 +n43012047021 +n43012047022 +n43012047023 +n43012047024 +n43012047025 +n43012047026 +n43012048001 +n43012048002 +n43012048003 +n43012048004 +n43012048005 +n43012048006 +n43012048007 +n43012048008 +n43012048009 +n43012048010 +n43012048011 +n43012048012 +n43012048013 +n43012048014 +n43012048015 +n43012048016 +n43012048017 +n43012048018 +n43012048019 +n43012048020 +n43012048021 +n43012048022 +n43012048023 +n43012048024 +n43012049001 +n43012049002 +n43012049003 +n43012049004 +n43012049005 +n43012049006 +n43012049007 +n43012049008 +n43012049009 +n43012049010 +n43012049011 +n43012049012 +n43012049013 +n43012049014 +n43012049015 +n43012049016 +n43012049017 +n43012049018 +n43012049019 +n43012049020 +n43012050001 +n43012050002 +n43012050003 +n43012050004 +n43012050005 +n43012050006 +n43012050007 +n43012050008 +n43012050009 +n43012050011 +n43012050010 +n43012050012 +n43012050013 +n43012050014 +n43012050015 +n43012050016 +n43012050017 +n43012050018 +n43012050019 +n43012050020 +n43013001002 +n43013001001 +n43013001003 +n43013001004 +n43013001005 +n43013001006 +n43013001008 +n43013001009 +n43013001007 +n43013001010 +n43013001011 +n43013001012 +n43013001013 +n43013001014 +n43013001015 +n43013001016 +n43013001017 +n43013001018 +n43013001019 +n43013001020 +n43013001021 +n43013001022 +n43013001023 +n43013001024 +n43013001025 +n43013001026 +n43013001027 +n43013001028 +n43013001029 +n43013001030 +n43013001031 +n43013001032 +n43013001033 +n43013001034 +n43013002001 +n43013002002 +n43013002003 +n43013002004 +n43013002005 +n43013002006 +n43013002007 +n43013002008 +n43013002009 +n43013002010 +n43013002011 +n43013002012 +n43013002013 +n43013002014 +n43013002015 +n43013002016 +n43013003001 +n43013003002 +n43013003003 +n43013003004 +n43013003005 +n43013003006 +n43013003007 +n43013003008 +n43013003009 +n43013003010 +n43013003011 +n43013003012 +n43013003013 +n43013003014 +n43013003015 +n43013003016 +n43013003017 +n43013003018 +n43013003019 +n43013003020 +n43013004001 +n43013004002 +n43013004003 +n43013004004 +n43013004005 +n43013004006 +n43013004007 +n43013004008 +n43013004009 +n43013004010 +n43013004011 +n43013004012 +n43013004013 +n43013005001 +n43013005002 +n43013005003 +n43013005004 +n43013005005 +n43013005006 +n43013005007 +n43013005008 +n43013005009 +n43013005010 +n43013005011 +n43013005012 +n43013005013 +n43013005014 +n43013005015 +n43013005016 +n43013005017 +n43013005018 +n43013005019 +n43013005020 +n43013006002 +n43013006001 +n43013006003 +n43013006004 +n43013006005 +n43013006006 +n43013006007 +n43013006008 +n43013006009 +n43013006011 +n43013006010 +n43013006012 +n43013006013 +n43013007001 +n43013007002 +n43013007003 +n43013007004 +n43013007005 +n43013007006 +n43013007007 +n43013007008 +n43013007009 +n43013007010 +n43013007011 +n43013007012 +n43013007014 +n43013007013 +n43013007015 +n43013007016 +n43013008001 +n43013008002 +n43013008003 +n43013008004 +n43013008005 +n43013008006 +n43013008007 +n43013008008 +n43013008009 +n43013008010 +n43013008011 +n43013008012 +n43013008013 +n43013008014 +n43013008015 +n43013008016 +n43013008017 +n43013008018 +n43013008019 +n43013008020 +n43013008021 +n43013008022 +n43013008023 +n43013008024 +n43013009001 +n43013009002 +n43013009003 +n43013009004 +n43013009005 +n43013009006 +n43013009007 +n43013009008 +n43013009009 +n43013009010 +n43013009011 +n43013009012 +n43013009013 +n43013009014 +n43013009015 +n43013009016 +n43013009017 +n43013010001 +n43013010002 +n43013010003 +n43013010004 +n43013010005 +n43013010006 +n43013010007 +n43013010008 +n43013010009 +n43013010010 +n43013010011 +n43013010012 +n43013010013 +n43013010014 +n43013010015 +n43013010016 +n43013010017 +n43013010018 +n43013010019 +n43013010020 +n43013010021 +n43013010022 +n43013010023 +n43013010024 +n43013011002 +n43013011001 +n43013011003 +n43013011004 +n43013011005 +n43013011006 +n43013011007 +n43013011008 +n43013011009 +n43013011010 +n43013011011 +n43013011012 +n43013011013 +n43013012002 +n43013012001 +n43013012003 +n43013012004 +n43013012005 +n43013012006 +n43013012007 +n43013012008 +n43013012009 +n43013012010 +n43013012011 +n43013012012 +n43013012013 +n43013012014 +n43013012015 +n43013012016 +n43013012017 +n43013012018 +n43013012019 +n43013012020 +n43013013001 +n43013013002 +n43013013003 +n43013013004 +n43013013005 +n43013013006 +n43013013007 +n43013013008 +n43013013009 +n43013013010 +n43013013011 +n43013013013 +n43013013012 +n43013014002 +n43013014001 +n43013014003 +n43013014008 +n43013014009 +n43013014010 +n43013014011 +n43013014012 +n43013014004 +n43013014005 +n43013014006 +n43013014007 +n43013014013 +n43013014014 +n43013014015 +n43013014017 +n43013014016 +n43013014018 +n43013014019 +n43013015002 +n43013015001 +n43013015003 +n43013015004 +n43013015005 +n43013015006 +n43013015007 +n43013015008 +n43013015009 +n43013015010 +n43013015011 +n43013015012 +n43013016001 +n43013016002 +n43013016003 +n43013016004 +n43013016005 +n43013016006 +n43013016007 +n43013016008 +n43013016009 +n43013016010 +n43013016011 +n43013016012 +n43013016013 +n43013016014 +n43013016015 +n43013016016 +n43013016017 +n43013017001 +n43013017002 +n43013017003 +n43013017004 +n43013017005 +n43013017006 +n43013017007 +n43013017008 +n43013018001 +n43013018002 +n43013018003 +n43013018004 +n43013018005 +n43013018006 +n43013018007 +n43013018008 +n43013018009 +n43013018010 +n43013018011 +n43013018012 +n43013018013 +n43013018014 +n43013018015 +n43013018016 +n43013018017 +n43013018018 +n43013018019 +n43013018020 +n43013018021 +n43013018022 +n43013018023 +n43013018024 +n43013018025 +n43013019001 +n43013019002 +n43013019003 +n43013019004 +n43013019005 +n43013019006 +n43013019007 +n43013019008 +n43013019009 +n43013019010 +n43013019011 +n43013019012 +n43013019013 +n43013019014 +n43013020001 +n43013020002 +n43013020003 +n43013020004 +n43013020005 +n43013020006 +n43013020007 +n43013020008 +n43013020009 +n43013020010 +n43013020011 +n43013020013 +n43013020012 +n43013020014 +n43013020015 +n43013020016 +n43013020017 +n43013020018 +n43013020019 +n43013021001 +n43013021002 +n43013021003 +n43013021004 +n43013021005 +n43013021006 +n43013021007 +n43013021008 +n43013021009 +n43013021010 +n43013021011 +n43013021012 +n43013021013 +n43013021014 +n43013021015 +n43013021016 +n43013021017 +n43013021018 +n43013021019 +n43013021020 +n43013022001 +n43013022002 +n43013022003 +n43013022004 +n43013022005 +n43013022006 +n43013022007 +n43013022008 +n43013022009 +n43013023001 +n43013023002 +n43013023003 +n43013023004 +n43013023005 +n43013023006 +n43013023007 +n43013023008 +n43013023009 +n43013023010 +n43013023011 +n43013023012 +n43013023013 +n43013023014 +n43013023015 +n43013023016 +n43013024002 +n43013024001 +n43013024003 +n43013024004 +n43013024005 +n43013024006 +n43013024007 +n43013024008 +n43013024009 +n43013024010 +n43013024011 +n43013024012 +n43013024013 +n43013024014 +n43013025002 +n43013025001 +n43013025003 +n43013025004 +n43013025005 +n43013025006 +n43013025007 +n43013025008 +n43013025009 +n43013025010 +n43013025011 +n43013025012 +n43013025013 +n43013026002 +n43013026001 +n43013026003 +n43013026004 +n43013026006 +n43013026005 +n43013026007 +n43013026008 +n43013026009 +n43013026010 +n43013026011 +n43013026012 +n43013026013 +n43013026014 +n43013026016 +n43013026015 +n43013026017 +n43013026018 +n43013026019 +n43013026020 +n43013026021 +n43013026022 +n43013026023 +n43013026024 +n43013027001 +n43013027002 +n43013027003 +n43013027004 +n43013027005 +n43013027006 +n43013027007 +n43013027008 +n43013027009 +n43013027010 +n43013027012 +n43013027011 +n43013027013 +n43013027014 +n43013027015 +n43013027016 +n43013027017 +n43013027018 +n43013028002 +n43013028004 +n43013028003 +n43013028005 +n43013028006 +n43013028001 +n43013028007 +n43013028008 +n43013028009 +n43013028010 +n43013029002 +n43013029001 +n43013029003 +n43013029004 +n43013029005 +n43013029006 +n43013029007 +n43013029008 +n43013029009 +n43013029010 +n43013029011 +n43013029012 +n43013029013 +n43013029014 +n43013029015 +n43013029016 +n43013029017 +n43013029018 +n43013029019 +n43013029020 +n43013029023 +n43013029021 +n43013029022 +n43013029024 +n43013029025 +n43013030002 +n43013030001 +n43013030003 +n43013030004 +n43013030005 +n43013030006 +n43013030007 +n43013030009 +n43013030008 +n43013030010 +n43013031002 +n43013031001 +n43013031003 +n43013031004 +n43013031005 +n43013031006 +n43013031007 +n43013031008 +n43013031009 +n43013031010 +n43013031011 +n43013031012 +n43013031013 +n43013031014 +n43013031015 +n43013031016 +n43013031017 +n43013032001 +n43013032002 +n43013032003 +n43013032004 +n43013032005 +n43013032006 +n43013032007 +n43013032008 +n43013032009 +n43013032010 +n43013032011 +n43013032012 +n43013032013 +n43013032014 +n43013032015 +n43013032016 +n43013032017 +n43013033001 +n43013033002 +n43013033003 +n43013033004 +n43013033005 +n43013033006 +n43013033007 +n43013033008 +n43013033009 +n43013033010 +n43013033011 +n43013033012 +n43013033013 +n43013033014 +n43013033015 +n43013033016 +n43013033017 +n43013033021 +n43013033018 +n43013033019 +n43013033020 +n43013033022 +n43013033023 +n43013033024 +n43013033025 +n43013034001 +n43013034002 +n43013034003 +n43013034004 +n43013034005 +n43013034006 +n43013034007 +n43013034008 +n43013034009 +n43013034010 +n43013034011 +n43013034012 +n43013034013 +n43013034014 +n43013034015 +n43013035001 +n43013035002 +n43013035003 +n43013035004 +n43013035005 +n43013035006 +n43013035007 +n43013035008 +n43013035009 +n43013035010 +n43013035011 +n43013035012 +n43013035013 +n43013036001 +n43013036002 +n43013036003 +n43013036004 +n43013036005 +n43013036006 +n43013036007 +n43013036008 +n43013036009 +n43013036010 +n43013036011 +n43013036014 +n43013036015 +n43013036016 +n43013036012 +n43013036013 +n43013036018 +n43013036017 +n43013036019 +n43013037001 +n43013037002 +n43013037003 +n43013037004 +n43013037005 +n43013037006 +n43013037007 +n43013037008 +n43013037009 +n43013037010 +n43013037011 +n43013037012 +n43013037013 +n43013037014 +n43013037015 +n43013037016 +n43013037017 +n43013038001 +n43013038002 +n43013038003 +n43013038004 +n43013038005 +n43013038006 +n43013038007 +n43013038008 +n43013038009 +n43013038010 +n43013038011 +n43013038012 +n43013038013 +n43013038014 +n43013038015 +n43013038016 +n43013038017 +n43013038018 +n43013038019 +n43013038020 +n43013038021 +n43014001001 +n43014001002 +n43014001003 +n43014001004 +n43014001005 +n43014001006 +n43014001007 +n43014001008 +n43014001009 +n43014001010 +n43014001011 +n43014001012 +n43014001013 +n43014002001 +n43014002002 +n43014002003 +n43014002004 +n43014002005 +n43014002006 +n43014002007 +n43014002008 +n43014002009 +n43014002011 +n43014002010 +n43014002012 +n43014002014 +n43014002013 +n43014002015 +n43014002016 +n43014002017 +n43014002018 +n43014002019 +n43014002020 +n43014003001 +n43014003002 +n43014003003 +n43014003004 +n43014003005 +n43014003006 +n43014003007 +n43014003008 +n43014003009 +n43014003010 +n43014003011 +n43014003012 +n43014003013 +n43014003014 +n43014003015 +n43014003016 +n43014003017 +n43014003018 +n43014003019 +n43014003020 +n43014003021 +n43014004001 +n43014004002 +n43014004003 +n43014004004 +n43014004005 +n43014004006 +n43014004007 +n43014005001 +n43014005002 +n43014005003 +n43014005004 +n43014005005 +n43014005006 +n43014005007 +n43014005008 +n43014005009 +n43014005010 +n43014005011 +n43014005012 +n43014006001 +n43014006002 +n43014006003 +n43014006004 +n43014006005 +n43014006006 +n43014006007 +n43014006008 +n43014006009 +n43014006010 +n43014006011 +n43014006012 +n43014006013 +n43014006014 +n43014006015 +n43014006016 +n43014006017 +n43014006018 +n43014006019 +n43014006020 +n43014006021 +n43014006022 +n43014007001 +n43014007002 +n43014007003 +n43014007008 +n43014007004 +n43014007005 +n43014007006 +n43014007007 +n43014007009 +n43014007010 +n43014007011 +n43014007012 +n43014007013 +n43014007014 +n43014007015 +n43014008001 +n43014008002 +n43014008003 +n43014008004 +n43014008005 +n43014008006 +n43014008007 +n43014008008 +n43014008009 +n43014008010 +n43014008011 +n43014009001 +n43014009002 +n43014009003 +n43014009004 +n43014009005 +n43014009006 +n43014009007 +n43014009008 +n43014009009 +n43014009010 +n43014009011 +n43014009012 +n43014009013 +n43014009014 +n43014009015 +n43014009016 +n43014009017 +n43014009018 +n43014009019 +n43014009020 +n43014009021 +n43014009022 +n43014009023 +n43014009024 +n43014009025 +n43014009026 +n43014009027 +n43014010001 +n43014010002 +n43014010003 +n43014010004 +n43014010005 +n43014010006 +n43014010007 +n43014010008 +n43014010009 +n43014010010 +n43014010011 +n43014010012 +n43014010013 +n43014010014 +n43014010015 +n43014010016 +n43014010017 +n43014010018 +n43014010019 +n43014010020 +n43014010021 +n43014010022 +n43014010023 +n43014010025 +n43014010024 +n43014010026 +n43014010027 +n43014010028 +n43014010029 +n43014010030 +n43014010031 +n43014010032 +n43014010033 +n43014011001 +n43014011002 +n43014011003 +n43014011004 +n43014011005 +n43014011006 +n43014011007 +n43014011008 +n43014011009 +n43014011010 +n43014011011 +n43014011012 +n43014011014 +n43014011013 +n43014011015 +n43014011016 +n43014011017 +n43014011018 +n43014011019 +n43014011020 +n43014012001 +n43014012002 +n43014012003 +n43014012004 +n43014012005 +n43014012006 +n43014012007 +n43014012008 +n43014012009 +n43014012010 +n43014012011 +n43014012012 +n43014012013 +n43014012014 +n43014012015 +n43014012016 +n43014012017 +n43014012018 +n43014012019 +n43014012020 +n43014012021 +n43014012022 +n43014012023 +n43014012024 +n43014012025 +n43014013001 +n43014013003 +n43014013004 +n43014013002 +n43014013005 +n43014013006 +n43014013007 +n43014013008 +n43014013009 +n43014013010 +n43014013011 +n43014013012 +n43014013013 +n43014013014 +n43014013015 +n43014013016 +n43014013017 +n43014013018 +n43014014001 +n43014014002 +n43014014003 +n43014014004 +n43014014005 +n43014014006 +n43014014007 +n43014014008 +n43014014009 +n43014014010 +n43014015001 +n43014015002 +n43014015003 +n43014015004 +n43014015005 +n43014015006 +n43014015007 +n43014015008 +n43014016001 +n43014016002 +n43014016003 +n43014016004 +n43014016005 +n43014016006 +n43014016007 +n43014016008 +n43014016009 +n43014016010 +n43014016011 +n43014016012 +n43014016013 +n43014016014 +n43014016015 +n43014016016 +n43014017001 +n43014017002 +n43014017003 +n43014017004 +n43014017005 +n43014017010 +n43014017006 +n43014017007 +n43014017008 +n43014017009 +n43014017011 +n43014017012 +n43014017013 +n43014017014 +n43014017015 +n43014017016 +n43014017017 +n43014017018 +n43014017019 +n43014017020 +n43014017021 +n43014017022 +n43014017023 +n43014017024 +n43014017025 +n43014017026 +n43014017027 +n43014018001 +n43014018002 +n43014018003 +n43014018004 +n43014018005 +n43014018006 +n43014018007 +n43014019003 +n43014019001 +n43014019002 +n43014019004 +n43014019005 +n43014019006 +n43014019007 +n43014019008 +n43014019010 +n43014019009 +n43014019011 +n43014019012 +n43014019013 +n43014019014 +n43014019015 +n43014019016 +n43014019017 +n43014019018 +n43014020001 +n43014020002 +n43014020003 +n43014020004 +n43014020005 +n43014020006 +n43014020007 +n43014020008 +n43014020009 +n43014020010 +n43014020011 +n43014020012 +n43014020013 +n43014020014 +n43014020015 +n43014020016 +n43014020017 +n43014020018 +n43014020019 +n43014021001 +n43014021002 +n43014021003 +n43014021004 +n43014021005 +n43014021006 +n43014021007 +n43014021008 +n43014021009 +n43014021010 +n43014021011 +n43014021012 +n43014021013 +n43014021015 +n43014021014 +n43014021016 +n43014021017 +n43014021018 +n43014021019 +n43014021020 +n43014021021 +n43014021022 +n43014021023 +n43014021024 +n43014021025 +n43014021026 +n43014021027 +n43014021028 +n43014021029 +n43014022001 +n43014022002 +n43014022003 +n43014022004 +n43014022005 +n43014022006 +n43014022007 +n43014022008 +n43014022009 +n43014022010 +n43014022011 +n43014022013 +n43014022012 +n43014022014 +n43014022015 +n43014022016 +n43014022017 +n43014022018 +n43014022019 +n43014023001 +n43014023002 +n43014023003 +n43014023004 +n43014023005 +n43014023006 +n43014023007 +n43014023008 +n43014023009 +n43014023010 +n43014023011 +n43014023012 +n43014023013 +n43014023014 +n43014023015 +n43014023016 +n43014023017 +n43014023018 +n43014023019 +n43014023020 +n43014023021 +n43014023022 +n43014023023 +n43014023024 +n43014023025 +n43014023026 +n43014023027 +n43014023028 +n43014024001 +n43014024002 +n43014024003 +n43014024004 +n43014024005 +n43014024006 +n43014024007 +n43014024008 +n43014024009 +n43014024010 +n43014024011 +n43014024012 +n43014024013 +n43014024014 +n43014024015 +n43014024016 +n43014024017 +n43014024018 +n43014024019 +n43014024020 +n43014024021 +n43014024022 +n43014025001 +n43014025002 +n43014025003 +n43014025004 +n43014025005 +n43014025006 +n43014026002 +n43014026001 +n43014026003 +n43014026004 +n43014026005 +n43014026006 +n43014026007 +n43014026008 +n43014026009 +n43014026010 +n43014026011 +n43014026012 +n43014026013 +n43014026014 +n43014026015 +n43014026016 +n43014026017 +n43014026018 +n43014026019 +n43014026020 +n43014026021 +n43014026022 +n43014026023 +n43014026024 +n43014026025 +n43014026026 +n43014026027 +n43014027001 +n43014027002 +n43014027003 +n43014027004 +n43014027005 +n43014027006 +n43014027007 +n43014027008 +n43014027009 +n43014027010 +n43014027011 +n43014027012 +n43014027013 +n43014027014 +n43014027015 +n43014027016 +n43014027017 +n43014027018 +n43014027019 +n43014027020 +n43014027021 +n43014027022 +n43014027023 +n43014028001 +n43014028002 +n43014028003 +n43014028004 +n43014028005 +n43014028006 +n43014028007 +n43014028008 +n43014028009 +n43014028010 +n43014028011 +n43014028012 +n43014028013 +n43014028015 +n43014028014 +n43014028016 +n43014028017 +n43014028018 +n43014028019 +n43014028020 +n43014028021 +n43014028022 +n43014028023 +n43014028024 +n43014028025 +n43014028026 +n43014029001 +n43014029002 +n43014029003 +n43014029004 +n43014029005 +n43014029006 +n43014029007 +n43014029008 +n43014029009 +n43014029010 +n43014030001 +n43014030002 +n43014030003 +n43014030004 +n43014030005 +n43014030007 +n43014030006 +n43014030008 +n43014030009 +n43014030010 +n43014030011 +n43014030012 +n43014030013 +n43014030014 +n43014030015 +n43014030016 +n43014030017 +n43014031001 +n43014031002 +n43014031003 +n43014031004 +n43014031005 +n43014031006 +n43014031007 +n43014031008 +n43014031009 +n43014031010 +n43014031011 +n43014031012 +n43014031013 +n43014031014 +n43014031015 +n43014031016 +n43014031017 +n43014031018 +n43014031019 +n43014031020 +n43015001001 +n43015001002 +n43015001003 +n43015001004 +n43015001005 +n43015001006 +n43015001007 +n43015001008 +n43015001009 +n43015001010 +n43015001011 +n43015001012 +n43015001013 +n43015002001 +n43015002002 +n43015002003 +n43015002004 +n43015002005 +n43015002006 +n43015002007 +n43015002008 +n43015002009 +n43015002010 +n43015002011 +n43015002012 +n43015002013 +n43015002014 +n43015002015 +n43015002016 +n43015002017 +n43015002018 +n43015002019 +n43015002020 +n43015003001 +n43015003002 +n43015003003 +n43015003004 +n43015003005 +n43015003006 +n43015003007 +n43015003008 +n43015003009 +n43015003010 +n43015004001 +n43015004002 +n43015004003 +n43015004004 +n43015004005 +n43015004006 +n43015004007 +n43015004008 +n43015004009 +n43015004010 +n43015004011 +n43015004012 +n43015004013 +n43015004014 +n43015004015 +n43015004016 +n43015004017 +n43015004018 +n43015004019 +n43015004020 +n43015004021 +n43015004022 +n43015004023 +n43015004024 +n43015004025 +n43015004026 +n43015004027 +n43015004028 +n43015004029 +n43015005001 +n43015005002 +n43015005003 +n43015005004 +n43015005005 +n43015005006 +n43015005007 +n43015005008 +n43015005009 +n43015005010 +n43015005011 +n43015005012 +n43015005013 +n43015005014 +n43015005015 +n43015005016 +n43015005017 +n43015005018 +n43015005019 +n43015005020 +n43015005021 +n43015005022 +n43015005023 +n43015005024 +n43015005025 +n43015006001 +n43015006002 +n43015006003 +n43015006004 +n43015006005 +n43015006006 +n43015006007 +n43015006008 +n43015006009 +n43015006010 +n43015006011 +n43015006012 +n43015006013 +n43015006014 +n43015006015 +n43015006016 +n43015006017 +n43015006018 +n43015006019 +n43015006020 +n43015006021 +n43015006022 +n43015006023 +n43015007001 +n43015007002 +n43015007003 +n43015007004 +n43015007005 +n43015007006 +n43015007007 +n43015007008 +n43015007009 +n43015007010 +n43015007011 +n43015007013 +n43015007012 +n43015007014 +n43015007015 +n43015007016 +n43015007017 +n43015007018 +n43015008001 +n43015008002 +n43015008003 +n43015008004 +n43015008005 +n43015008006 +n43015008007 +n43015008008 +n43015008009 +n43015008010 +n43015008011 +n43015008012 +n43015008013 +n43015008014 +n43015009001 +n43015009002 +n43015009003 +n43015009004 +n43015009005 +n43015009006 +n43015009007 +n43015009008 +n43015009009 +n43015009010 +n43015009011 +n43015009012 +n43015009013 +n43015009014 +n43015010001 +n43015010002 +n43015010003 +n43015010004 +n43015010005 +n43015010006 +n43015010007 +n43015010008 +n43015010009 +n43015010010 +n43015010011 +n43015010012 +n43015010013 +n43015010014 +n43015010015 +n43015010016 +n43015010017 +n43015010018 +n43015010019 +n43015010020 +n43015010022 +n43015010021 +n43015010023 +n43015010024 +n43015011001 +n43015011002 +n43015011003 +n43015011004 +n43015011005 +n43015011006 +n43015011007 +n43015011008 +n43015011009 +n43015011010 +n43015011011 +n43015011012 +n43015011013 +n43015011014 +n43015011015 +n43015011016 +n43015012001 +n43015012002 +n43015012003 +n43015012004 +n43015012005 +n43015012006 +n43015012007 +n43015012008 +n43015012009 +n43015012010 +n43015012011 +n43015012012 +n43015013001 +n43015013002 +n43015013003 +n43015013004 +n43015013005 +n43015013006 +n43015013007 +n43015013008 +n43015013009 +n43015013010 +n43015013011 +n43015013012 +n43015013013 +n43015013014 +n43015013015 +n43015014001 +n43015014002 +n43015014003 +n43015014004 +n43015014005 +n43015014006 +n43015014007 +n43015014008 +n43015014009 +n43015014010 +n43015015001 +n43015015002 +n43015015003 +n43015015004 +n43015015005 +n43015015006 +n43015015007 +n43015015008 +n43015015009 +n43015015010 +n43015015011 +n43015015012 +n43015015013 +n43015015014 +n43015015016 +n43015015015 +n43015015017 +n43015015018 +n43015015019 +n43015015020 +n43015015021 +n43015015022 +n43015015023 +n43015015024 +n43015015025 +n43015015026 +n43015015027 +n43015015028 +n43015016001 +n43015016002 +n43015016003 +n43015016004 +n43015016005 +n43015016006 +n43015016007 +n43015016008 +n43015016009 +n43015016010 +n43015016011 +n43015016012 +n43015016013 +n43015016014 +n43015016015 +n43015016016 +n43015016017 +n43015016018 +n43015016019 +n43015016020 +n43015016021 +n43015016022 +n43015016023 +n43015016025 +n43015016026 +n43015016024 +n43015016027 +n43015016028 +n43015016029 +n43015016030 +n43015016031 +n43015016032 +n43015016033 +n43015016034 +n43015016035 +n43015017001 +n43015017002 +n43015017003 +n43015017004 +n43015017005 +n43015017006 +n43015018001 +n43015018002 +n43015018003 +n43015018004 +n43015018005 +n43015018006 +n43015018007 +n43015018008 +n43015018009 +n43015018010 +n43015018011 +n43015019001 +n43015019002 +n43015019003 +n43015019004 +n43015019005 +n43015019008 +n43015019006 +n43015019007 +n43015019009 +n43015019010 +n43015019011 +n43015019013 +n43015019012 +n43015019014 +n43015019015 +n43015019016 +n43015019017 +n43015019018 +n43015019019 +n43015019020 +n43015019021 +n43015019022 +n43015019023 +n43015019024 +n43015019025 +n43015019026 +n43015019027 +n43015019028 +n43015019029 +n43015019030 +n43015019031 +n43015020001 +n43015020002 +n43015020003 +n43015020004 +n43015020005 +n43015020006 +n43015020007 +n43015020008 +n43015020009 +n43015020010 +n43015020011 +n43015020012 +n43015020013 +n43015020014 +n43015020015 +n43015020016 +n43015020017 +n43015020018 +n43015020019 +n43015020020 +n43015020021 +n43015020022 +n43015020023 +n43015020024 +n43015020025 +n43015020026 +n43015020027 +n43015020028 +n43015020029 +n43015021001 +n43015021002 +n43015021003 +n43015021004 +n43015021005 +n43015021006 +n43015021007 +n43015021008 +n43015021009 +n43015021010 +n43015021011 +n43015021012 +n43015021013 +n43015021014 +n43015021015 +n43015021016 +n43015022001 +n43015022002 +n43015022003 +n43015022004 +n43015022005 +n43015022006 +n43015022007 +n43015022008 +n43015022009 +n43015022011 +n43015022010 +n43015022012 +n43015022013 +n43015022014 +n43015022015 +n43015022016 +n43015022017 +n43015022018 +n43015023001 +n43015023002 +n43015023003 +n43015023004 +n43015023005 +n43015023006 +n43015023007 +n43015023008 +n43015024001 +n43015024002 +n43015024003 +n43015024004 +n43015024005 +n43015024006 +n43015024007 +n43015024008 +n43015024009 +n43015024010 +n43015024011 +n43015024012 +n43015024013 +n43015024014 +n43015024016 +n43015024015 +n43015024017 +n43015024018 +n43015024019 +n43015024020 +n43015024021 +n43015024022 +n43015024023 +n43015024024 +n43015024025 +n43015024026 +n43015025001 +n43015025002 +n43015025003 +n43015025004 +n43015025005 +n43015025006 +n43015025007 +n43015025008 +n43015025009 +n43015025010 +n43015025011 +n43015025012 +n43015025013 +n43015025014 +n43015025015 +n43015026001 +n43015026002 +n43015026003 +n43015026004 +n43015026005 +n43015026006 +n43015026007 +n43015026008 +n43015026009 +n43015026010 +n43015026011 +n43015026012 +n43015026013 +n43015026014 +n43015026015 +n43015026016 +n43015026017 +n43015026018 +n43015026019 +n43015026020 +n43015026021 +n43015026022 +n43015026023 +n43015026024 +n43015027003 +n43015027001 +n43015027002 +n43015027004 +n43015027005 +n43015027006 +n43015027007 +n43015027008 +n43015027009 +n43015027010 +n43016001001 +n43016001002 +n43016001003 +n43016001004 +n43016001005 +n43016001006 +n43016002001 +n43016002002 +n43016002003 +n43016002004 +n43016002005 +n43016002006 +n43016002007 +n43016002008 +n43016002009 +n43016002010 +n43016002011 +n43016002012 +n43016002013 +n43016002014 +n43016002015 +n43016002016 +n43016003001 +n43016003002 +n43016003003 +n43016003004 +n43016003005 +n43016003006 +n43016003007 +n43016003008 +n43016003009 +n43016003010 +n43016004001 +n43016004002 +n43016004003 +n43016004004 +n43016004005 +n43016004006 +n43016004007 +n43016004008 +n43016004009 +n43016004010 +n43016004011 +n43016004012 +n43016004013 +n43016004014 +n43016004015 +n43016004016 +n43016004018 +n43016004017 +n43016004019 +n43016004020 +n43016004021 +n43016004022 +n43016004023 +n43016004024 +n43016004025 +n43016004026 +n43016004027 +n43016005002 +n43016005001 +n43016005003 +n43016005004 +n43016005005 +n43016005006 +n43016005007 +n43016005008 +n43016005009 +n43016005010 +n43016005011 +n43016005012 +n43016005013 +n43016005014 +n43016005015 +n43016006001 +n43016006002 +n43016006003 +n43016006004 +n43016006005 +n43016006006 +n43016006007 +n43016006008 +n43016006009 +n43016006010 +n43016006011 +n43016007001 +n43016007002 +n43016007003 +n43016007004 +n43016007005 +n43016007006 +n43016007007 +n43016007008 +n43016007009 +n43016007010 +n43016007011 +n43016007013 +n43016007012 +n43016007014 +n43016007015 +n43016007016 +n43016007017 +n43016007018 +n43016007019 +n43016007020 +n43016007021 +n43016007022 +n43016007024 +n43016007023 +n43016007025 +n43016007026 +n43016007027 +n43016007028 +n43016007029 +n43016008001 +n43016008002 +n43016008003 +n43016008004 +n43016008005 +n43016008006 +n43016008007 +n43016008008 +n43016008009 +n43016008010 +n43016008011 +n43016008012 +n43016008013 +n43016008014 +n43016009003 +n43016009001 +n43016009002 +n43016009004 +n43016009005 +n43016009006 +n43016009007 +n43016009008 +n43016010003 +n43016010001 +n43016010002 +n43016010004 +n43016010005 +n43016010006 +n43016010007 +n43016010008 +n43016010009 +n43016010010 +n43016010011 +n43016010012 +n43016011002 +n43016011001 +n43016011003 +n43016011004 +n43016011005 +n43016011006 +n43016011007 +n43016011008 +n43016011009 +n43016011010 +n43016012001 +n43016012003 +n43016012002 +n43016012004 +n43016012005 +n43016012006 +n43016012007 +n43016012008 +n43016012009 +n43016012010 +n43016013002 +n43016013001 +n43016013003 +n43016013004 +n43016013005 +n43016013006 +n43016013007 +n43016013008 +n43016013009 +n43016013010 +n43016013011 +n43016013012 +n43016013013 +n43016013014 +n43016013016 +n43016013015 +n43016013017 +n43016013018 +n43016013019 +n43016013020 +n43016013021 +n43016013022 +n43016013023 +n43016013024 +n43016013025 +n43016013026 +n43016013027 +n43016013028 +n43016014001 +n43016014002 +n43016014003 +n43016014004 +n43016014005 +n43016014006 +n43016014007 +n43016014008 +n43016014009 +n43016014010 +n43016014011 +n43016015001 +n43016015002 +n43016015003 +n43016015004 +n43016015005 +n43016015006 +n43016015007 +n43016015008 +n43016015009 +n43016015010 +n43016015011 +n43016015012 +n43016015013 +n43016015014 +n43016015015 +n43016015016 +n43016015017 +n43016015018 +n43016016001 +n43016016002 +n43016016003 +n43016016004 +n43016016005 +n43016016006 +n43016016007 +n43016016008 +n43016016009 +n43016016010 +n43016016011 +n43016017002 +n43016017001 +n43016017003 +n43016017004 +n43016017005 +n43016017006 +n43016017007 +n43016017008 +n43016017009 +n43016017010 +n43016017011 +n43016017012 +n43016017013 +n43016017014 +n43016017015 +n43016017016 +n43016017017 +n43016017018 +n43016017019 +n43016017020 +n43016017021 +n43016017022 +n43016017023 +n43016017024 +n43016017025 +n43016017026 +n43016017027 +n43016017028 +n43016017029 +n43016017030 +n43016017031 +n43016018002 +n43016018001 +n43016018004 +n43016018005 +n43016018003 +n43016018006 +n43016018007 +n43016018008 +n43016018009 +n43016018010 +n43016018011 +n43016018012 +n43016018013 +n43016019001 +n43016019002 +n43016019003 +n43016019004 +n43016019005 +n43016019006 +n43016019007 +n43016019008 +n43016019009 +n43016019010 +n43016019011 +n43016019012 +n43016019013 +n43016019014 +n43016019015 +n43016019016 +n43016019017 +n43016019018 +n43016019019 +n43016019020 +n43016019021 +n43016019022 +n43016019023 +n43016019024 +n43016019025 +n43016019026 +n43016019027 +n43016020001 +n43016020002 +n43016020003 +n43016020004 +n43016020005 +n43016020006 +n43016020007 +n43016020008 +n43016020009 +n43016020011 +n43016020010 +n43016020012 +n43016020013 +n43016020014 +n43016020015 +n43016020016 +n43016020017 +n43016020018 +n43016020019 +n43016020020 +n43016020021 +n43016020022 +n43016021003 +n43016021001 +n43016021002 +n43016021004 +n43016021005 +n43016021006 +n43016021007 +n43016021008 +n43016021009 +n43016021010 +n43016021011 +n43016021013 +n43016021012 +n43016021014 +n43016021015 +n43016021016 +n43016021017 +n43016021018 +n43016021019 +n43016021020 +n43016021021 +n43016021022 +n43016021023 +n43016021024 +n43016021025 +n43016021026 +n43016021027 +n43016021028 +n43016021029 +n43016022003 +n43016022005 +n43016022001 +n43016022002 +n43016022004 +n43016022006 +n43016022007 +n43016022009 +n43016022008 +n43016022010 +n43016022011 +n43016022012 +n43016022013 +n43016022014 +n43016022015 +n43016022016 +n43016022017 +n43016022018 +n43016022019 +n43016022020 +n43016022021 +n43016022022 +n43016022023 +n43016022024 +n43016023001 +n43016023002 +n43016023003 +n43016023004 +n43016023005 +n43016023006 +n43016023007 +n43016023008 +n43016023009 +n43016023010 +n43016023011 +n43016023012 +n43016023013 +n43016023014 +n43016023015 +n43016023016 +n43016023017 +n43016023018 +n43016023019 +n43016023020 +n43016023021 +n43016023022 +n43016023023 +n43016023024 +n43016024001 +n43016024002 +n43016024003 +n43016024004 +n43016024005 +n43016024006 +n43016024007 +n43016024008 +n43016024009 +n43016024010 +n43016024011 +n43016024012 +n43016024013 +n43016024014 +n43016024015 +n43016024016 +n43016024017 +n43016024018 +n43016025001 +n43016025002 +n43016025003 +n43016025004 +n43016025005 +n43016025006 +n43016025007 +n43016025008 +n43016025009 +n43016025010 +n43016025011 +n43016025012 +n43016025013 +n43016025014 +n43016025015 +n43016025016 +n43016025017 +n43016025018 +n43016025019 +n43016025020 +n43016026001 +n43016026002 +n43016026003 +n43016026004 +n43016026005 +n43016026006 +n43016026007 +n43016026008 +n43016026009 +n43016026010 +n43016026011 +n43016026012 +n43016026013 +n43016026014 +n43016026015 +n43016026016 +n43016026017 +n43016026018 +n43016026019 +n43016026020 +n43016027002 +n43016027001 +n43016027003 +n43016027004 +n43016027005 +n43016027006 +n43016027007 +n43016027008 +n43016027009 +n43016027010 +n43016027011 +n43016027012 +n43016027013 +n43016027014 +n43016027015 +n43016027016 +n43016027017 +n43016027018 +n43016028001 +n43016028002 +n43016028003 +n43016028004 +n43016028005 +n43016028006 +n43016028007 +n43016028008 +n43016028009 +n43016028010 +n43016028011 +n43016028012 +n43016028013 +n43016028014 +n43016028015 +n43016028016 +n43016028017 +n43016028018 +n43016029001 +n43016029002 +n43016029003 +n43016029004 +n43016029005 +n43016029006 +n43016029007 +n43016029008 +n43016029009 +n43016029010 +n43016029011 +n43016029012 +n43016029013 +n43016030001 +n43016030002 +n43016030003 +n43016030004 +n43016030005 +n43016030006 +n43016030007 +n43016030008 +n43016030009 +n43016030010 +n43016030011 +n43016030012 +n43016030013 +n43016030014 +n43016030015 +n43016030016 +n43016030017 +n43016030018 +n43016030019 +n43016030020 +n43016031001 +n43016031002 +n43016031003 +n43016031004 +n43016031005 +n43016032001 +n43016032002 +n43016032003 +n43016032004 +n43016032005 +n43016032006 +n43016032007 +n43016032008 +n43016032009 +n43016032010 +n43016032011 +n43016032012 +n43016032013 +n43016032014 +n43016032015 +n43016032016 +n43016032017 +n43016032018 +n43016032019 +n43016032020 +n43016032021 +n43016032022 +n43016032023 +n43016032024 +n43016033001 +n43016033002 +n43016033003 +n43016033004 +n43016033005 +n43016033006 +n43016033007 +n43016033008 +n43016033009 +n43016033010 +n43016033011 +n43016033012 +n43016033013 +n43016033014 +n43016033015 +n43016033016 +n43016033017 +n43016033018 +n43016033019 +n43017001001 +n43017001002 +n43017001003 +n43017001004 +n43017001005 +n43017001006 +n43017001007 +n43017001008 +n43017001009 +n43017001010 +n43017001011 +n43017001012 +n43017001013 +n43017001014 +n43017001015 +n43017001016 +n43017001017 +n43017001018 +n43017001019 +n43017001020 +n43017001021 +n43017001022 +n43017001023 +n43017001024 +n43017001025 +n43017002001 +n43017002002 +n43017002003 +n43017002004 +n43017002005 +n43017002006 +n43017002007 +n43017002008 +n43017002009 +n43017002010 +n43017002011 +n43017002012 +n43017002013 +n43017002014 +n43017002015 +n43017003002 +n43017003001 +n43017003003 +n43017003004 +n43017003005 +n43017003006 +n43017003007 +n43017003008 +n43017003009 +n43017003010 +n43017003011 +n43017003012 +n43017003013 +n43017003014 +n43017003015 +n43017003016 +n43017003017 +n43017003018 +n43017004001 +n43017004002 +n43017004003 +n43017004004 +n43017004005 +n43017004006 +n43017004009 +n43017004007 +n43017004008 +n43017004010 +n43017004011 +n43017004012 +n43017004013 +n43017004014 +n43017005001 +n43017005006 +n43017005002 +n43017005003 +n43017005004 +n43017005005 +n43017005007 +n43017005008 +n43017005009 +n43017005010 +n43017005011 +n43017005012 +n43017005013 +n43017005014 +n43017005015 +n43017005016 +n43017005017 +n43017005018 +n43017005019 +n43017006001 +n43017006002 +n43017006003 +n43017006004 +n43017006005 +n43017006006 +n43017006007 +n43017006008 +n43017006009 +n43017006010 +n43017006011 +n43017006012 +n43017006013 +n43017006014 +n43017006015 +n43017006016 +n43017006017 +n43017006018 +n43017006019 +n43017006020 +n43017006021 +n43017006022 +n43017007001 +n43017007002 +n43017007003 +n43017007004 +n43017007005 +n43017007006 +n43017007007 +n43017007008 +n43017007009 +n43017007010 +n43017008001 +n43017008002 +n43017008003 +n43017008004 +n43017008005 +n43017008006 +n43017008007 +n43017008008 +n43017008009 +n43017008010 +n43017008011 +n43017008012 +n43017008013 +n43017008014 +n43017008015 +n43017008016 +n43017008017 +n43017008018 +n43017008019 +n43017008020 +n43017008021 +n43017008022 +n43017008023 +n43017008024 +n43017009001 +n43017009002 +n43017009003 +n43017009004 +n43017009005 +n43017009006 +n43017009007 +n43017009008 +n43017009009 +n43017009010 +n43017009011 +n43017009012 +n43017009013 +n43017009014 +n43017009015 +n43017009016 +n43017009017 +n43017010001 +n43017010002 +n43017010003 +n43017010004 +n43017010005 +n43017010006 +n43017010007 +n43017010008 +n43017010009 +n43017010010 +n43017010011 +n43017010012 +n43017010013 +n43017010014 +n43017011001 +n43017011002 +n43017011003 +n43017011004 +n43017011005 +n43017011006 +n43017011007 +n43017011008 +n43017011009 +n43017011010 +n43017011011 +n43017011012 +n43017011013 +n43017011014 +n43017011015 +n43017011016 +n43017011017 +n43017011018 +n43017011019 +n43017011020 +n43017011021 +n43017011022 +n43017011023 +n43017011024 +n43017011025 +n43017011026 +n43017011027 +n43017011028 +n43017011029 +n43017011030 +n43017011031 +n43017011032 +n43017012001 +n43017012002 +n43017012003 +n43017012004 +n43017012005 +n43017012006 +n43017012007 +n43017012008 +n43017012009 +n43017012010 +n43017012011 +n43017012012 +n43017012013 +n43017012014 +n43017012015 +n43017012016 +n43017012017 +n43017012018 +n43017012019 +n43017012020 +n43017012021 +n43017012022 +n43017012023 +n43017012024 +n43017012025 +n43017012026 +n43017012027 +n43017012028 +n43017012029 +n43017012030 +n43017012031 +n43017013002 +n43017013001 +n43017013003 +n43017013004 +n43017013005 +n43017013006 +n43017013007 +n43017013008 +n43017013009 +n43017013010 +n43017013011 +n43017013012 +n43017013013 +n43017013014 +n43017013015 +n43017013016 +n43017013017 +n43017013018 +n43017013019 +n43017013020 +n43017014001 +n43017014002 +n43017014003 +n43017014004 +n43017014005 +n43017014006 +n43017014007 +n43017014008 +n43017014009 +n43017014010 +n43017014011 +n43017014012 +n43017014013 +n43017014014 +n43017014015 +n43017014016 +n43017014017 +n43017014018 +n43017014019 +n43017014020 +n43017014021 +n43017014022 +n43017014023 +n43017014024 +n43017015001 +n43017015002 +n43017015003 +n43017015004 +n43017015005 +n43017015006 +n43017015007 +n43017015008 +n43017015009 +n43017015010 +n43017015011 +n43017015012 +n43017015013 +n43017015014 +n43017015015 +n43017016001 +n43017016002 +n43017016003 +n43017016004 +n43017016005 +n43017016006 +n43017016007 +n43017016008 +n43017016009 +n43017016010 +n43017016011 +n43017016012 +n43017017001 +n43017017002 +n43017017003 +n43017017004 +n43017017005 +n43017017006 +n43017017007 +n43017017008 +n43017017009 +n43017017010 +n43017017011 +n43017018001 +n43017018002 +n43017018003 +n43017018004 +n43017018005 +n43017018006 +n43017018007 +n43017018008 +n43017018009 +n43017018010 +n43017018011 +n43017018012 +n43017019001 +n43017019002 +n43017019003 +n43017019004 +n43017019005 +n43017019006 +n43017019007 +n43017019008 +n43017019011 +n43017019009 +n43017019010 +n43017019012 +n43017019013 +n43017020004 +n43017020001 +n43017020002 +n43017020003 +n43017020005 +n43017020006 +n43017020007 +n43017020008 +n43017020009 +n43017020010 +n43017020011 +n43017020012 +n43017020013 +n43017020014 +n43017020015 +n43017020016 +n43017020017 +n43017021001 +n43017021002 +n43017021003 +n43017021004 +n43017021005 +n43017021007 +n43017021006 +n43017021008 +n43017021009 +n43017021010 +n43017021011 +n43017021012 +n43017021013 +n43017021014 +n43017021015 +n43017021016 +n43017021017 +n43017021018 +n43017021019 +n43017021020 +n43017021021 +n43017021022 +n43017021023 +n43017021024 +n43017021025 +n43017021026 +n43017022001 +n43017022002 +n43017022003 +n43017022004 +n43017022005 +n43017022006 +n43017022007 +n43017022008 +n43017022009 +n43017022010 +n43017022011 +n43017022012 +n43017022013 +n43017022014 +n43017023001 +n43017023002 +n43017023003 +n43017023004 +n43017023005 +n43017023006 +n43017023007 +n43017023008 +n43017023009 +n43017023010 +n43017023011 +n43017023012 +n43017023013 +n43017023014 +n43017023015 +n43017023016 +n43017023017 +n43017023018 +n43017023019 +n43017023020 +n43017023021 +n43017023022 +n43017023023 +n43017023024 +n43017023025 +n43017023026 +n43017024001 +n43017024002 +n43017024003 +n43017024004 +n43017024005 +n43017024006 +n43017024007 +n43017024008 +n43017024009 +n43017024010 +n43017024011 +n43017024012 +n43017024013 +n43017024014 +n43017024015 +n43017024016 +n43017024017 +n43017024018 +n43017024019 +n43017024020 +n43017024021 +n43017024022 +n43017024023 +n43017024024 +n43017024025 +n43017024026 +n43017024027 +n43017024028 +n43017025001 +n43017025002 +n43017025003 +n43017025004 +n43017025005 +n43017025006 +n43017025007 +n43017025008 +n43017025010 +n43017025009 +n43017025011 +n43017025012 +n43017025013 +n43017025014 +n43017025015 +n43017025016 +n43017025017 +n43017025018 +n43017025019 +n43017026001 +n43017026002 +n43017026003 +n43017026004 +n43017026005 +n43017026006 +n43017026007 +n43017026008 +n43017026009 +n43017026010 +n43017026011 +n43017026012 +n43017026013 +n43017026014 +n43017026015 +n43017026016 +n43017026017 +n43017026018 +n43017026019 +n43017026020 +n43018001001 +n43018001002 +n43018001003 +n43018001004 +n43018001005 +n43018001006 +n43018001007 +n43018001008 +n43018001009 +n43018001010 +n43018001011 +n43018001012 +n43018001013 +n43018001014 +n43018001015 +n43018001016 +n43018001017 +n43018001018 +n43018001019 +n43018001020 +n43018001021 +n43018001022 +n43018001023 +n43018001024 +n43018002002 +n43018002001 +n43018002003 +n43018002004 +n43018002005 +n43018002006 +n43018002007 +n43018002008 +n43018002009 +n43018002010 +n43018002011 +n43018002012 +n43018002013 +n43018002014 +n43018002015 +n43018002016 +n43018002017 +n43018002018 +n43018003002 +n43018003001 +n43018003003 +n43018003004 +n43018003005 +n43018003006 +n43018003007 +n43018003008 +n43018003009 +n43018003010 +n43018003011 +n43018003012 +n43018003013 +n43018003014 +n43018003015 +n43018003016 +n43018003017 +n43018003018 +n43018003019 +n43018003020 +n43018003021 +n43018003022 +n43018003023 +n43018004002 +n43018004001 +n43018004003 +n43018004004 +n43018004005 +n43018004006 +n43018004007 +n43018004008 +n43018004009 +n43018004010 +n43018004011 +n43018004012 +n43018004013 +n43018004014 +n43018005001 +n43018005002 +n43018005003 +n43018005004 +n43018005005 +n43018005006 +n43018005007 +n43018005008 +n43018005009 +n43018005011 +n43018005010 +n43018005012 +n43018005013 +n43018005014 +n43018005015 +n43018005016 +n43018005017 +n43018005018 +n43018006002 +n43018006001 +n43018006003 +n43018006004 +n43018006005 +n43018006006 +n43018006007 +n43018006008 +n43018006009 +n43018006010 +n43018006011 +n43018006012 +n43018006013 +n43018007002 +n43018007001 +n43018007003 +n43018007004 +n43018007005 +n43018007006 +n43018007008 +n43018007007 +n43018007009 +n43018007010 +n43018007011 +n43018007012 +n43018008001 +n43018008002 +n43018008003 +n43018008004 +n43018008005 +n43018008006 +n43018008007 +n43018008009 +n43018008008 +n43018008010 +n43018008011 +n43018008012 +n43018008013 +n43018008014 +n43018009001 +n43018009002 +n43018009003 +n43018009004 +n43018009005 +n43018009006 +n43018009007 +n43018009008 +n43018009009 +n43018009010 +n43018009011 +n43018009012 +n43018009013 +n43018009014 +n43018009015 +n43018010002 +n43018010001 +n43018010003 +n43018010004 +n43018010005 +n43018010006 +n43018010007 +n43018010008 +n43018010009 +n43018010010 +n43018010011 +n43018010012 +n43018010013 +n43018010014 +n43018010015 +n43018010016 +n43018010017 +n43018010018 +n43018010019 +n43018010020 +n43018010022 +n43018010021 +n43018010023 +n43018010024 +n43018010025 +n43018010026 +n43018011002 +n43018011001 +n43018011003 +n43018011004 +n43018011005 +n43018011006 +n43018011007 +n43018011008 +n43018011009 +n43018011010 +n43018011011 +n43018011012 +n43018011013 +n43018011014 +n43018011015 +n43018011016 +n43018011017 +n43018011018 +n43018011019 +n43018011020 +n43018011021 +n43018011022 +n43018011023 +n43018012002 +n43018012001 +n43018012003 +n43018012004 +n43018012005 +n43018012006 +n43018012007 +n43018012008 +n43018012009 +n43018012010 +n43018012011 +n43018012012 +n43018012013 +n43018012014 +n43018012015 +n43018012016 +n43018012017 +n43018013001 +n43018013002 +n43018013003 +n43018013004 +n43018013005 +n43018013007 +n43018013006 +n43018013008 +n43018013009 +n43018013010 +n43018013011 +n43018013012 +n43018013013 +n43018013014 +n43018013015 +n43018013016 +n43018014002 +n43018014001 +n43018014003 +n43018014004 +n43018014005 +n43018014006 +n43018014007 +n43018014008 +n43018014009 +n43018014010 +n43018014011 +n43018014012 +n43018014013 +n43018014014 +n43018014015 +n43018015002 +n43018015001 +n43018015003 +n43018015004 +n43018015005 +n43018015006 +n43018015007 +n43018015008 +n43018015009 +n43018015011 +n43018015010 +n43018015012 +n43018015013 +n43018015014 +n43018015015 +n43018015016 +n43018015017 +n43018015018 +n43018015019 +n43018015020 +n43018015021 +n43018015022 +n43018015023 +n43018015024 +n43018015025 +n43018015026 +n43018016002 +n43018016001 +n43018016003 +n43018016004 +n43018016005 +n43018016006 +n43018016007 +n43018016008 +n43018016010 +n43018016009 +n43018016011 +n43018016012 +n43018016013 +n43018016014 +n43018016015 +n43018016016 +n43018016017 +n43018016018 +n43018016019 +n43018016020 +n43018016021 +n43018016022 +n43018016023 +n43018016024 +n43018016025 +n43018016026 +n43018017002 +n43018017001 +n43018017003 +n43018017004 +n43018017005 +n43018017006 +n43018017007 +n43018017008 +n43018017009 +n43018017010 +n43018017011 +n43018017012 +n43018017013 +n43018017014 +n43018017016 +n43018017017 +n43018017018 +n43018017015 +n43018017019 +n43018017020 +n43018017021 +n43018017022 +n43018018002 +n43018018001 +n43018018003 +n43018018004 +n43018018005 +n43018018006 +n43018018007 +n43018018008 +n43018018009 +n43018018010 +n43018018011 +n43018018012 +n43018018013 +n43018018014 +n43018018016 +n43018018017 +n43018018018 +n43018018019 +n43018018020 +n43018018021 +n43018018015 +n43018018022 +n43018018023 +n43018018024 +n43018019002 +n43018019001 +n43018019003 +n43018019004 +n43018019005 +n43018019006 +n43018019007 +n43018019008 +n43018019009 +n43018019010 +n43018019011 +n43018019012 +n43018019013 +n43018019014 +n43018019015 +n43018020001 +n43018020002 +n43018020003 +n43018020004 +n43018020005 +n43018020006 +n43018020007 +n43018020008 +n43018020009 +n43018020010 +n43018020011 +n43018020012 +n43018020013 +n43018020014 +n43018020015 +n43018020016 +n43018020017 +n43018020018 +n43018020019 +n43018020020 +n43018020021 +n43018020022 +n43018020023 +n43018020024 +n43018020025 +n43018020026 +n43018020027 +n43018021001 +n43018021002 +n43018021003 +n43018021004 +n43018021005 +n43018021006 +n43018021007 +n43018021008 +n43018021009 +n43018021010 +n43018021011 +n43018021012 +n43018021013 +n43018021014 +n43018021015 +n43018022002 +n43018022001 +n43018022003 +n43018022004 +n43018022005 +n43018022006 +n43018022007 +n43018022008 +n43018022009 +n43018022010 +n43018022011 +n43018022012 +n43018022013 +n43018022014 +n43018022015 +n43018022016 +n43018022017 +n43018023001 +n43018023002 +n43018023003 +n43018023004 +n43018023005 +n43018023006 +n43018023007 +n43018023008 +n43018023009 +n43018023010 +n43018023012 +n43018023011 +n43018023013 +n43018023014 +n43018023015 +n43018023016 +n43018024002 +n43018024001 +n43018024003 +n43018024004 +n43018024005 +n43018024006 +n43018024007 +n43018024008 +n43018024009 +n43018024010 +n43018025002 +n43018025003 +n43018025004 +n43018025001 +n43018025005 +n43018025006 +n43018025007 +n43018025009 +n43018025008 +n43018025010 +n43018025011 +n43018025012 +n43018025013 +n43018025014 +n43018025015 +n43018025016 +n43018025017 +n43018025018 +n43018025019 +n43018025020 +n43018025021 +n43018025022 +n43018025023 +n43018025024 +n43018026001 +n43018026002 +n43018026003 +n43018026004 +n43018026005 +n43018026006 +n43018026007 +n43018026009 +n43018026008 +n43018026010 +n43018026011 +n43018026012 +n43018026013 +n43018026014 +n43018026015 +n43018026016 +n43018026018 +n43018026017 +n43018026019 +n43018026020 +n43018026021 +n43018026022 +n43018026023 +n43018027002 +n43018027001 +n43018027003 +n43018027004 +n43018027005 +n43018027006 +n43018027007 +n43018027008 +n43018028002 +n43018028001 +n43018028003 +n43018028004 +n43018028005 +n43018028006 +n43018028007 +n43018028008 +n43018028009 +n43018028010 +n43018028012 +n43018028011 +n43018028013 +n43018028014 +n43018028015 +n43018028016 +n43018028017 +n43018028018 +n43018028019 +n43018028020 +n43018028021 +n43018028022 +n43018028023 +n43018028024 +n43018028025 +n43018028026 +n43018028027 +n43018029002 +n43018029001 +n43018029003 +n43018029004 +n43018029005 +n43018029006 +n43018029007 +n43018029008 +n43018029009 +n43018029010 +n43018029011 +n43018029013 +n43018029014 +n43018029015 +n43018029012 +n43018030001 +n43018030002 +n43018030003 +n43018030004 +n43018030005 +n43018030006 +n43018030007 +n43018030010 +n43018030008 +n43018030009 +n43018030012 +n43018030011 +n43018030013 +n43018030014 +n43018030015 +n43018031002 +n43018031001 +n43018031003 +n43018031004 +n43018031005 +n43018031006 +n43018031007 +n43018031008 +n43018031009 +n43018031010 +n43018031011 +n43018031012 +n43018031013 +n43018031014 +n43018031015 +n43018031016 +n43018031017 +n43018031018 +n43018031019 +n43018031020 +n43018031021 +n43018031022 +n43018031023 +n43018031024 +n43018032001 +n43018032002 +n43018032003 +n43018032004 +n43018032005 +n43018032006 +n43018032007 +n43018032008 +n43018032009 +n43018032010 +n43018032011 +n43018032012 +n43018032013 +n43018033002 +n43018033001 +n43018033003 +n43018033004 +n43018033005 +n43018033006 +n43018033007 +n43018033008 +n43018033009 +n43018033010 +n43018033011 +n43018033012 +n43018033013 +n43018033014 +n43018033015 +n43018033016 +n43018033017 +n43018033018 +n43018033019 +n43018033020 +n43018033021 +n43018034001 +n43018034002 +n43018034003 +n43018034004 +n43018034005 +n43018034006 +n43018034007 +n43018034008 +n43018034009 +n43018034010 +n43018034011 +n43018034012 +n43018034013 +n43018035001 +n43018035002 +n43018035003 +n43018035004 +n43018035005 +n43018035006 +n43018035007 +n43018035008 +n43018035009 +n43018035010 +n43018035011 +n43018035012 +n43018035013 +n43018035014 +n43018035015 +n43018035016 +n43018035017 +n43018035018 +n43018035019 +n43018036001 +n43018036002 +n43018036003 +n43018036004 +n43018036005 +n43018036006 +n43018036007 +n43018036008 +n43018036009 +n43018036010 +n43018036011 +n43018036012 +n43018036013 +n43018036014 +n43018036015 +n43018036016 +n43018036017 +n43018036018 +n43018036019 +n43018036020 +n43018036021 +n43018036022 +n43018036025 +n43018036023 +n43018036024 +n43018036026 +n43018036027 +n43018036028 +n43018036029 +n43018036030 +n43018036031 +n43018036032 +n43018036033 +n43018036035 +n43018036034 +n43018036036 +n43018036037 +n43018036038 +n43018036039 +n43018036040 +n43018036041 +n43018036042 +n43018037002 +n43018037001 +n43018037003 +n43018037004 +n43018037005 +n43018037006 +n43018037007 +n43018037008 +n43018037009 +n43018037010 +n43018037011 +n43018037012 +n43018037013 +n43018037014 +n43018037015 +n43018037016 +n43018037017 +n43018037018 +n43018037019 +n43018037020 +n43018037021 +n43018037022 +n43018037023 +n43018037024 +n43018037025 +n43018037026 +n43018037027 +n43018037028 +n43018037029 +n43018037030 +n43018037031 +n43018037032 +n43018037033 +n43018037034 +n43018037035 +n43018037036 +n43018037037 +n43018037038 +n43018037039 +n43018037040 +n43018037041 +n43018037042 +n43018038001 +n43018038002 +n43018038003 +n43018038004 +n43018038005 +n43018038006 +n43018038007 +n43018038008 +n43018038009 +n43018038010 +n43018038011 +n43018038012 +n43018038013 +n43018038014 +n43018038015 +n43018038016 +n43018038017 +n43018038018 +n43018038019 +n43018038020 +n43018038021 +n43018038022 +n43018038023 +n43018038024 +n43018039002 +n43018039001 +n43018039003 +n43018039004 +n43018039005 +n43018039006 +n43018039007 +n43018039008 +n43018039009 +n43018039010 +n43018039011 +n43018039013 +n43018039012 +n43018039014 +n43018039015 +n43018039016 +n43018039017 +n43018039018 +n43018039019 +n43018040002 +n43018040001 +n43018040003 +n43018040004 +n43018040005 +n43018040006 +n43018040007 +n43018040008 +n43018040009 +n43018040011 +n43018040010 +n43018040012 +n43018040013 +n43018040014 +n43019001002 +n43019001001 +n43019001003 +n43019001004 +n43019001005 +n43019001006 +n43019001007 +n43019001008 +n43019001009 +n43019002001 +n43019002002 +n43019002003 +n43019002004 +n43019002005 +n43019002006 +n43019002007 +n43019002008 +n43019002009 +n43019002010 +n43019002011 +n43019002012 +n43019002013 +n43019002014 +n43019002015 +n43019002016 +n43019003001 +n43019003002 +n43019003003 +n43019003004 +n43019003005 +n43019003006 +n43019003007 +n43019003008 +n43019003009 +n43019003010 +n43019003011 +n43019003012 +n43019003013 +n43019003014 +n43019003015 +n43019004001 +n43019004002 +n43019004003 +n43019004004 +n43019004005 +n43019004006 +n43019004007 +n43019004008 +n43019004009 +n43019004010 +n43019004011 +n43019004012 +n43019004013 +n43019004014 +n43019004015 +n43019004016 +n43019004017 +n43019004018 +n43019004019 +n43019004020 +n43019004021 +n43019004022 +n43019005002 +n43019005001 +n43019005003 +n43019005004 +n43019005005 +n43019005006 +n43019005007 +n43019005008 +n43019005009 +n43019005010 +n43019005011 +n43019005012 +n43019005013 +n43019005014 +n43019005015 +n43019005016 +n43019005017 +n43019005018 +n43019005019 +n43019006002 +n43019006001 +n43019006003 +n43019006004 +n43019006005 +n43019006006 +n43019006007 +n43019006008 +n43019006009 +n43019006010 +n43019006011 +n43019006012 +n43019006013 +n43019006014 +n43019006015 +n43019006016 +n43019006017 +n43019006018 +n43019006019 +n43019006020 +n43019006021 +n43019006022 +n43019006024 +n43019006023 +n43019006025 +n43019006026 +n43019006027 +n43019006028 +n43019006029 +n43019007001 +n43019007002 +n43019007003 +n43019007004 +n43019007005 +n43019007006 +n43019007007 +n43019007008 +n43019007009 +n43019007010 +n43019007011 +n43019007012 +n43019007013 +n43019007014 +n43019007015 +n43019007016 +n43019007017 +n43019007018 +n43019008002 +n43019008001 +n43019008003 +n43019008004 +n43019008005 +n43019008006 +n43019008007 +n43019008008 +n43019008009 +n43019008010 +n43019009001 +n43019009002 +n43019009003 +n43019009004 +n43019009005 +n43019009006 +n43019009007 +n43019009008 +n43019009009 +n43019009010 +n43019009011 +n43019009012 +n43019009013 +n43019009015 +n43019009014 +n43019009016 +n43019009017 +n43019009018 +n43019009019 +n43019009020 +n43019010002 +n43019010001 +n43019010003 +n43019010004 +n43019010005 +n43019010007 +n43019010006 +n43019010008 +n43019010009 +n43019010010 +n43019010011 +n43019010012 +n43019010013 +n43019010014 +n43019010015 +n43019010016 +n43019010017 +n43019010018 +n43019010019 +n43019010020 +n43019011001 +n43019011002 +n43019011003 +n43019011004 +n43019011005 +n43019011008 +n43019011006 +n43019011007 +n43019011009 +n43019011010 +n43019011011 +n43019011012 +n43019011013 +n43019011014 +n43019011015 +n43019011016 +n43019011017 +n43019011018 +n43019011019 +n43019011020 +n43019011021 +n43019011022 +n43019011023 +n43019012001 +n43019012002 +n43019012003 +n43019012004 +n43019012005 +n43019012006 +n43019012007 +n43019012009 +n43019012008 +n43019012010 +n43019012011 +n43019012012 +n43019012013 +n43019012014 +n43019012015 +n43019012016 +n43019012017 +n43019012018 +n43019012019 +n43019012020 +n43019012021 +n43019012022 +n43019012023 +n43019012024 +n43019012025 +n43019012026 +n43019012027 +n43019012028 +n43019013002 +n43019013001 +n43019013003 +n43019013004 +n43019013005 +n43019013006 +n43019013007 +n43019013008 +n43019013009 +n43019013010 +n43019013011 +n43019013012 +n43019013013 +n43019013014 +n43019013015 +n43019013016 +n43019013017 +n43019013018 +n43019013019 +n43019013021 +n43019013020 +n43019013022 +n43019014002 +n43019014001 +n43019014003 +n43019014004 +n43019014005 +n43019014006 +n43019014007 +n43019014008 +n43019014009 +n43019014010 +n43019014011 +n43019014012 +n43019014013 +n43019014014 +n43019014015 +n43019014016 +n43019014017 +n43019015002 +n43019015001 +n43019015003 +n43019015004 +n43019015005 +n43019015006 +n43019015007 +n43019015008 +n43019015009 +n43019015010 +n43019015011 +n43019015012 +n43019015013 +n43019015014 +n43019015015 +n43019015016 +n43019015017 +n43019015018 +n43019015019 +n43019015020 +n43019015021 +n43019015022 +n43019015023 +n43019015024 +n43019016002 +n43019016001 +n43019016003 +n43019016004 +n43019016005 +n43019016006 +n43019016007 +n43019016009 +n43019016008 +n43019016010 +n43019016011 +n43019017001 +n43019017002 +n43019017003 +n43019017004 +n43019017005 +n43019017006 +n43019017007 +n43019017008 +n43019017009 +n43019017010 +n43019017011 +n43019017012 +n43019017013 +n43019017014 +n43019017015 +n43019018001 +n43019018002 +n43019018003 +n43019018004 +n43019018005 +n43019018006 +n43019018007 +n43019018008 +n43019018009 +n43019018010 +n43019018011 +n43019018013 +n43019018012 +n43019018014 +n43019018015 +n43019019002 +n43019019001 +n43019019003 +n43019019004 +n43019019005 +n43019019006 +n43019019007 +n43019019008 +n43019019009 +n43019019010 +n43019019011 +n43019019013 +n43019019012 +n43019019014 +n43019019015 +n43019019016 +n43019019017 +n43019019018 +n43019019019 +n43019019020 +n43019019021 +n43019020002 +n43019020001 +n43019020003 +n43019020004 +n43019020006 +n43019020005 +n43019020007 +n43019020008 +n43019020009 +n43019020010 +n43019020014 +n43019020015 +n43019020011 +n43019020012 +n43019020013 +n43019020016 +n43019020017 +n43019020018 +n43019020019 +n43019020020 +n43019020021 +n43019020022 +n43019020023 +n43019020024 +n43019020025 +n43019021002 +n43019021001 +n43019021003 +n43019021004 +n43019021005 +n43019021006 +n43019021007 +n43019021008 +n43019021009 +n43019021010 +n43019021011 +n43019021012 +n43019021013 +n43019021014 +n43019021015 +n43019021016 +n43019021017 +n43019021018 +n43019021019 +n43019021021 +n43019021022 +n43019021020 +n43019022001 +n43019022002 +n43019022003 +n43019022004 +n43019022005 +n43019022006 +n43019023002 +n43019023004 +n43019023001 +n43019023003 +n43019023005 +n43019023006 +n43019023007 +n43019023008 +n43019023009 +n43019023010 +n43019023011 +n43019023012 +n43019023013 +n43019023014 +n43019023015 +n43019023016 +n43019023017 +n43019023018 +n43019023019 +n43019023020 +n43019023021 +n43019023023 +n43019023022 +n43019023024 +n43019023025 +n43019023026 +n43019023027 +n43019023028 +n43019023029 +n43019023030 +n43019023031 +n43019023032 +n43019024002 +n43019024001 +n43019024003 +n43019024004 +n43019024005 +n43019024006 +n43019024007 +n43019024008 +n43019024009 +n43019024010 +n43019024011 +n43019024012 +n43019024013 +n43019024014 +n43019024015 +n43019024016 +n43019024017 +n43019024018 +n43019024019 +n43019024020 +n43019024021 +n43019024022 +n43019024023 +n43019024024 +n43019024025 +n43019024026 +n43019024027 +n43019024028 +n43019024029 +n43019024032 +n43019024031 +n43019024030 +n43019024033 +n43019024034 +n43019024035 +n43019025002 +n43019025001 +n43019025003 +n43019025004 +n43019025005 +n43019025006 +n43019025007 +n43019025008 +n43019025009 +n43019025010 +n43019025011 +n43019025012 +n43019025013 +n43019025014 +n43019025015 +n43019025016 +n43019025017 +n43019025018 +n43019025019 +n43019025020 +n43019025021 +n43019025022 +n43019025023 +n43019025024 +n43019026002 +n43019026001 +n43019026003 +n43019026004 +n43019026005 +n43019026006 +n43019026007 +n43019026008 +n43019026009 +n43019026010 +n43019026011 +n43019026012 +n43019026013 +n43019026014 +n43019026015 +n43019026016 +n43019026017 +n43019026018 +n43019026019 +n43019027001 +n43019027002 +n43019027003 +n43019027004 +n43019027005 +n43019027006 +n43019027007 +n43019027008 +n43019027009 +n43019027010 +n43019027011 +n43019027012 +n43019027013 +n43019027014 +n43019027015 +n43019027016 +n43019027017 +n43019027018 +n43019027019 +n43019027020 +n43019028001 +n43019028002 +n43019028004 +n43019028005 +n43019028003 +n43019028006 +n43019028007 +n43019028008 +n43019028009 +n43019028010 +n43019028011 +n43019028012 +n43019028013 +n43019028014 +n43019028015 +n43019029001 +n43019029003 +n43019029004 +n43019029002 +n43019029006 +n43019029005 +n43019029007 +n43019029008 +n43019029009 +n43019029010 +n43019029011 +n43019029012 +n43019029013 +n43019029014 +n43019029015 +n43019030002 +n43019030001 +n43019030003 +n43019030004 +n43019030005 +n43019030006 +n43019030007 +n43019030008 +n43019030009 +n43019030010 +n43019030011 +n43019030012 +n43019030013 +n43019030014 +n43019030015 +n43019030016 +n43019031002 +n43019031001 +n43019031003 +n43019031004 +n43019031005 +n43019031006 +n43019031007 +n43019031008 +n43019031009 +n43019031010 +n43019031011 +n43019031012 +n43019031013 +n43019031014 +n43019031015 +n43019031016 +n43019031017 +n43019031019 +n43019031018 +n43019031020 +n43019031021 +n43019031022 +n43019031023 +n43019031024 +n43019031025 +n43019031026 +n43019031027 +n43019031028 +n43019031029 +n43019031030 +n43019031031 +n43019031032 +n43019031033 +n43019031034 +n43019031035 +n43019032002 +n43019032001 +n43019032003 +n43019032004 +n43019032005 +n43019032007 +n43019032009 +n43019032010 +n43019032011 +n43019032006 +n43019032008 +n43019032012 +n43019032013 +n43019032014 +n43019032015 +n43019032016 +n43019032017 +n43019033002 +n43019033001 +n43019033003 +n43019033004 +n43019033005 +n43019033006 +n43019033007 +n43019033008 +n43019033009 +n43019033010 +n43019033011 +n43019033012 +n43019033013 +n43019033014 +n43019033015 +n43019034001 +n43019034002 +n43019034003 +n43019034004 +n43019034005 +n43019034006 +n43019034007 +n43019034008 +n43019034009 +n43019034010 +n43019034011 +n43019034012 +n43019034013 +n43019034014 +n43019034015 +n43019035001 +n43019035002 +n43019035003 +n43019035004 +n43019035005 +n43019035006 +n43019035008 +n43019035007 +n43019035009 +n43019035010 +n43019035011 +n43019035012 +n43019035013 +n43019035014 +n43019035015 +n43019035016 +n43019035017 +n43019035018 +n43019035019 +n43019035020 +n43019036002 +n43019036001 +n43019036003 +n43019036004 +n43019036005 +n43019036006 +n43019036007 +n43019036008 +n43019036011 +n43019036009 +n43019036010 +n43019037001 +n43019037002 +n43019037003 +n43019037004 +n43019037005 +n43019037006 +n43019037007 +n43019037008 +n43019037009 +n43019038002 +n43019038001 +n43019038003 +n43019038004 +n43019038005 +n43019038006 +n43019038007 +n43019038008 +n43019038009 +n43019038010 +n43019038011 +n43019038012 +n43019038013 +n43019038015 +n43019038014 +n43019038016 +n43019038017 +n43019038018 +n43019038019 +n43019038020 +n43019038021 +n43019038022 +n43019038023 +n43019038024 +n43019038025 +n43019038026 +n43019038027 +n43019038028 +n43019038029 +n43019038030 +n43019038032 +n43019038031 +n43019038033 +n43019038034 +n43019038035 +n43019038036 +n43019038037 +n43019039002 +n43019039001 +n43019039003 +n43019039004 +n43019039005 +n43019039006 +n43019039007 +n43019039008 +n43019039009 +n43019039010 +n43019039011 +n43019039012 +n43019039013 +n43019039014 +n43019039015 +n43019039016 +n43019039017 +n43019039018 +n43019039019 +n43019040002 +n43019040001 +n43019040003 +n43019040004 +n43019040005 +n43019040006 +n43019040007 +n43019040008 +n43019040009 +n43019040010 +n43019040011 +n43019040012 +n43019040013 +n43019040014 +n43019040015 +n43019040016 +n43019040017 +n43019040018 +n43019040019 +n43019041002 +n43019041001 +n43019041003 +n43019041004 +n43019041005 +n43019041006 +n43019041007 +n43019041008 +n43019041009 +n43019041010 +n43019041011 +n43019041012 +n43019041013 +n43019041014 +n43019041015 +n43019041016 +n43019041017 +n43019041018 +n43019041019 +n43019041020 +n43019042002 +n43019042001 +n43019042003 +n43019042004 +n43019042005 +n43019042006 +n43019042007 +n43019042008 +n43019042009 +n43019042010 +n43019042011 +n43019042012 +n43019042013 +n43019042014 +n43019042015 +n43020001002 +n43020001001 +n43020001003 +n43020001004 +n43020001005 +n43020001006 +n43020001007 +n43020001008 +n43020001009 +n43020001010 +n43020001014 +n43020001015 +n43020001016 +n43020001011 +n43020001012 +n43020001013 +n43020001017 +n43020001018 +n43020001019 +n43020001020 +n43020001021 +n43020001022 +n43020001023 +n43020001024 +n43020002002 +n43020002001 +n43020002003 +n43020002004 +n43020002005 +n43020002006 +n43020002007 +n43020002008 +n43020002009 +n43020002010 +n43020002011 +n43020002012 +n43020002013 +n43020002014 +n43020002015 +n43020002016 +n43020002017 +n43020002018 +n43020002019 +n43020002020 +n43020002021 +n43020002022 +n43020002023 +n43020002024 +n43020002025 +n43020002026 +n43020002027 +n43020002028 +n43020002029 +n43020002030 +n43020002031 +n43020003002 +n43020003001 +n43020003003 +n43020003004 +n43020003005 +n43020003006 +n43020003007 +n43020003008 +n43020003009 +n43020003010 +n43020003011 +n43020003012 +n43020003013 +n43020004002 +n43020004001 +n43020004003 +n43020004004 +n43020004005 +n43020004006 +n43020004007 +n43020004008 +n43020004009 +n43020004010 +n43020004011 +n43020004012 +n43020004013 +n43020004014 +n43020004015 +n43020004016 +n43020004017 +n43020004018 +n43020004019 +n43020005001 +n43020005002 +n43020005003 +n43020005004 +n43020005005 +n43020005006 +n43020005008 +n43020005007 +n43020005009 +n43020006002 +n43020006001 +n43020006003 +n43020006004 +n43020006005 +n43020006006 +n43020006007 +n43020006008 +n43020006009 +n43020006010 +n43020006011 +n43020006012 +n43020006013 +n43020006014 +n43020006015 +n43020006016 +n43020006017 +n43020007001 +n43020007002 +n43020007003 +n43020007004 +n43020007005 +n43020007006 +n43020007007 +n43020007008 +n43020007009 +n43020007010 +n43020007011 +n43020007012 +n43020007013 +n43020007014 +n43020007015 +n43020007016 +n43020007017 +n43020007018 +n43020007019 +n43020007020 +n43020008002 +n43020008001 +n43020008003 +n43020008004 +n43020008005 +n43020008006 +n43020008007 +n43020008008 +n43020008009 +n43020008010 +n43020008011 +n43020008012 +n43020008013 +n43020008014 +n43020008015 +n43020008016 +n43020008017 +n43020009002 +n43020009001 +n43020009003 +n43020009004 +n43020009005 +n43020009006 +n43020009007 +n43020009008 +n43020009009 +n43020009010 +n43020009011 +n43020010002 +n43020010001 +n43020010003 +n43020010004 +n43020010005 +n43020010006 +n43020010007 +n43020011002 +n43020011001 +n43020011003 +n43020011004 +n43020011005 +n43020011006 +n43020011007 +n43020011008 +n43020011010 +n43020011009 +n43020011011 +n43020011012 +n43020011013 +n43020011014 +n43020011015 +n43020012001 +n43020012002 +n43020012003 +n43020012004 +n43020012005 +n43020012006 +n43020012007 +n43020012017 +n43020012018 +n43020012019 +n43020012020 +n43020012021 +n43020012022 +n43020012008 +n43020012009 +n43020012010 +n43020012011 +n43020012012 +n43020012013 +n43020012014 +n43020012015 +n43020012016 +n43020013001 +n43020013002 +n43020013003 +n43020013004 +n43020013005 +n43020013006 +n43020013007 +n43020013008 +n43020013009 +n43020013010 +n43020013011 +n43020013012 +n43020013013 +n43020013014 +n43020013015 +n43020013016 +n43020013017 +n43020013018 +n43020013019 +n43020013020 +n43020014001 +n43020014002 +n43020014003 +n43020014004 +n43020014005 +n43020014006 +n43020014007 +n43020014008 +n43020014009 +n43020014010 +n43020014011 +n43020014012 +n43020014013 +n43020014014 +n43020014015 +n43020014016 +n43020014017 +n43020015001 +n43020015002 +n43020015003 +n43020015004 +n43020015005 +n43020015006 +n43020015007 +n43020015008 +n43020015009 +n43020015010 +n43020015011 +n43020015012 +n43020015013 +n43020015014 +n43020015015 +n43020015016 +n43020015017 +n43020015018 +n43020015019 +n43020015020 +n43020015021 +n43020015022 +n43020015023 +n43020015024 +n43020015025 +n43020015026 +n43020015027 +n43020015028 +n43020015029 +n43020016001 +n43020016002 +n43020016003 +n43020016004 +n43020016005 +n43020016006 +n43020016007 +n43020016008 +n43020016009 +n43020016010 +n43020016011 +n43020016012 +n43020016013 +n43020017001 +n43020017002 +n43020017003 +n43020017004 +n43020017005 +n43020017006 +n43020017008 +n43020017007 +n43020017009 +n43020017010 +n43020017011 +n43020017012 +n43020017014 +n43020017013 +n43020017015 +n43020017016 +n43020017017 +n43020017018 +n43020017019 +n43020017020 +n43020017021 +n43020017022 +n43020017023 +n43020017024 +n43020017025 +n43020017026 +n43020017027 +n43020017028 +n43020017029 +n43020017030 +n43020017031 +n43020017032 +n43020017033 +n43020017034 +n43020017035 +n43020018001 +n43020018002 +n43020018003 +n43020018004 +n43020018005 +n43020018006 +n43020018007 +n43020018008 +n43020018009 +n43020018010 +n43020018011 +n43020018012 +n43020018013 +n43020018014 +n43020018015 +n43020019002 +n43020019001 +n43020019003 +n43020019004 +n43020019005 +n43020019006 +n43020019007 +n43020019008 +n43020019009 +n43020019010 +n43020019011 +n43020019012 +n43020019013 +n43020019014 +n43020019015 +n43020019016 +n43020019017 +n43020019018 +n43020019019 +n43020019020 +n43020019021 +n43020019022 +n43020019023 +n43020019024 +n43020019025 +n43020019026 +n43020019027 +n43020019028 +n43020019029 +n43020019030 +n43020019031 +n43020019032 +n43020019033 +n43020019034 +n43020019035 +n43020020001 +n43020020002 +n43020020003 +n43020020004 +n43020020005 +n43020020006 +n43020020007 +n43020020008 +n43020020009 +n43020020010 +n43020020011 +n43020020013 +n43020020012 +n43020020014 +n43020020015 +n43020020016 +n43020020017 +n43020020018 +n43020021002 +n43020021001 +n43020021003 +n43020021004 +n43020021005 +n43020021006 +n43020021007 +n43020021008 +n43020021009 +n43020021010 +n43020021011 +n43020021012 +n43020021013 +n43020021014 +n43020021015 +n43020021016 +n43020022001 +n43020022002 +n43020022003 +n43020022004 +n43020022005 +n43020022006 +n43020022007 +n43020022008 +n43020022009 +n43020022010 +n43020023001 +n43020023003 +n43020023002 +n43020023004 +n43020023005 +n43020023006 +n43020023007 +n43020023008 +n43020023009 +n43020023010 +n43020023011 +n43020024002 +n43020024001 +n43020024003 +n43020024004 +n43020024005 +n43020024006 +n43020024007 +n43020024008 +n43020024009 +n43020024010 +n43020024011 +n43020024012 +n43020024013 +n43020024014 +n43020024015 +n43020024016 +n43020025002 +n43020025001 +n43020025003 +n43020025004 +n43020025005 +n43020025006 +n43020025007 +n43020025008 +n43020025009 +n43020025011 +n43020025010 +n43020025012 +n43020025013 +n43020025014 +n43020025015 +n43020025016 +n43020025017 +n43020025018 +n43020025019 +n43020025020 +n43020025021 +n43020025022 +n43020025023 +n43020025024 +n43020025025 +n43020025026 +n43020025027 +n43020025028 +n43020025029 +n43020025030 +n43020025031 +n43020025032 +n43020025033 +n43020025034 +n43020025035 +n43020025036 +n43020025037 +n43020025038 +n43020025039 +n43020025040 +n43020025041 +n43020025042 +n43020025043 +n43020025044 +n43020025045 +n43020025046 +n43020026001 +n43020026002 +n43020026003 +n43020026004 +n43020026005 +n43020026006 +n43020026007 +n43020026008 +n43020026009 +n43020026010 +n43020026011 +n43020026012 +n43020026013 +n43020026014 +n43020026015 +n43020026016 +n43020026017 +n43020026018 +n43020026019 +n43020026020 +n43020026021 +n43020026022 +n43020026023 +n43020026024 +n43020026025 +n43020026026 +n43020026027 +n43020026028 +n43020026029 +n43020027001 +n43020027002 +n43020027003 +n43020027004 +n43020027005 +n43020027006 +n43020027007 +n43020027008 +n43020027009 +n43020027010 +n43020027011 +n43020027012 +n43020027013 +n43020027014 +n43020027015 +n43020027016 +n43020027017 +n43020027018 +n43020027019 +n43020027020 +n43020027021 +n43020027022 +n43020027023 +n43020027024 +n43020027025 +n43020027026 +n43020027027 +n43020027028 +n43020027029 +n43020027030 +n43020027031 +n43020028001 +n43020028002 +n43020028003 +n43020028004 +n43020028005 +n43020028006 +n43020028007 +n43020028008 +n43020028009 +n43020028010 +n43020028011 +n43020028012 +n43020029001 +n43020029002 +n43020029003 +n43020029004 +n43020029005 +n43020029006 +n43020029007 +n43020029008 +n43020029009 +n43020029010 +n43020029011 +n43020029012 +n43020029013 +n43020029014 +n43020030003 +n43020030002 +n43020030004 +n43020030001 +n43020030005 +n43020030006 +n43020030007 +n43020030008 +n43020030009 +n43020030010 +n43020030011 +n43020030012 +n43020030013 +n43020030014 +n43020030015 +n43020030016 +n43020030017 +n43020030018 +n43020030019 +n43020030020 +n43020031002 +n43020031001 +n43020031003 +n43020031004 +n43020031005 +n43020031006 +n43020031007 +n43020031008 +n43020031009 +n43020031010 +n43020031011 +n43020031012 +n43020031013 +n43020031014 +n43020031015 +n43020031016 +n43020031017 +n43020031018 +n43020031019 +n43020031020 +n43020031021 +n43020031022 +n43020031023 +n43021001001 +n43021001002 +n43021001003 +n43021001004 +n43021001005 +n43021001006 +n43021001007 +n43021001008 +n43021001009 +n43021001010 +n43021001011 +n43021001012 +n43021001013 +n43021001015 +n43021001014 +n43021001016 +n43021002001 +n43021002002 +n43021002003 +n43021002004 +n43021002005 +n43021002006 +n43021002007 +n43021002008 +n43021002009 +n43021002010 +n43021002011 +n43021002012 +n43021002013 +n43021002014 +n43021002015 +n43021002016 +n43021002017 +n43021002018 +n43021002019 +n43021002020 +n43021002021 +n43021002022 +n43021002023 +n43021002024 +n43021002025 +n43021002026 +n43021002027 +n43021003001 +n43021003002 +n43021003003 +n43021003004 +n43021003005 +n43021003006 +n43021003007 +n43021003008 +n43021003009 +n43021003010 +n43021003011 +n43021003012 +n43021003013 +n43021003014 +n43021003015 +n43021003016 +n43021003017 +n43021003018 +n43021003019 +n43021003020 +n43021003021 +n43021003022 +n43021003023 +n43021003024 +n43021003025 +n43021003026 +n43021004002 +n43021004001 +n43021004003 +n43021004004 +n43021004005 +n43021004006 +n43021004007 +n43021004008 +n43021004009 +n43021004011 +n43021004010 +n43021004012 +n43021004013 +n43021004014 +n43021004015 +n43021004016 +n43021004017 +n43021005002 +n43021005001 +n43021005003 +n43021005004 +n43021005005 +n43021005006 +n43021005007 +n43021005008 +n43021005009 +n43021005010 +n43021005011 +n43021005012 +n43021006002 +n43021006001 +n43021006003 +n43021006004 +n43021006005 +n43021006006 +n43021006007 +n43021006008 +n43021006009 +n43021006010 +n43021006011 +n43021006012 +n43021006013 +n43021006014 +n43021006015 +n43021006017 +n43021006016 +n43021006018 +n43021006019 +n43021006020 +n43021006021 +n43021006022 +n43021006023 +n43021006024 +n43021006025 +n43021006026 +n43021006027 +n43021007002 +n43021007001 +n43021007003 +n43021007004 +n43021007005 +n43021007006 +n43021007007 +n43021007008 +n43021007009 +n43021007010 +n43021007011 +n43021007012 +n43021007013 +n43021007014 +n43021007016 +n43021007015 +n43021007017 +n43021007018 +n43021007019 +n43021007020 +n43021007021 +n43021007022 +n43021007023 +n43021007024 +n43021007025 +n43021007027 +n43021007026 +n43021007028 +n43021007029 +n43021007030 +n43021007031 +n43021007032 +n43021007033 +n43021007034 +n43021008002 +n43021008001 +n43021008003 +n43021008004 +n43021008005 +n43021008006 +n43021008007 +n43021008009 +n43021008008 +n43021008010 +n43021008011 +n43021008012 +n43021008013 +n43021008014 +n43021008015 +n43021008016 +n43021008017 +n43021008018 +n43021008019 +n43021008020 +n43021008021 +n43021008022 +n43021008023 +n43021008024 +n43021009002 +n43021009001 +n43021009003 +n43021009004 +n43021009005 +n43021009006 +n43021009007 +n43021009008 +n43021009009 +n43021009010 +n43021009011 +n43021009012 +n43021009013 +n43021009014 +n43021010001 +n43021010002 +n43021010003 +n43021010004 +n43021010005 +n43021010006 +n43021010007 +n43021010008 +n43021010009 +n43021010010 +n43021010011 +n43021011001 +n43021011002 +n43021011003 +n43021011004 +n43021011005 +n43021011006 +n43021011007 +n43021011008 +n43021011009 +n43021011010 +n43021011011 +n43021011012 +n43021011013 +n43021011014 +n43021011015 +n43021011016 +n43021011017 +n43021011018 +n43021011019 +n43021011020 +n43021011021 +n43021011022 +n43021011023 +n43021012001 +n43021012002 +n43021012003 +n43021012004 +n43021012005 +n43021012006 +n43021012007 +n43021012009 +n43021012010 +n43021012008 +n43021012011 +n43021012012 +n43021012013 +n43021012014 +n43021012015 +n43021012016 +n43021012017 +n43021012018 +n43021012019 +n43021012020 +n43021013001 +n43021013002 +n43021013003 +n43021013004 +n43021013005 +n43021013006 +n43021013007 +n43021013008 +n43021013009 +n43021013010 +n43021013011 +n43021013012 +n43021013013 +n43021014001 +n43021014002 +n43021014003 +n43021014004 +n43021014005 +n43021014006 +n43021014007 +n43021014008 +n43021014009 +n43021014010 +n43021015002 +n43021015001 +n43021015003 +n43021015004 +n43021015005 +n43021015006 +n43021015007 +n43021015008 +n43021015009 +n43021015010 +n43021015011 +n43021015012 +n43021015013 +n43021015014 +n43021015015 +n43021015016 +n43021015017 +n43021015018 +n43021015019 +n43021015020 +n43021015021 +n43021015022 +n43021015023 +n43021015024 +n43021015025 +n43021015026 +n43021015027 +n43021015028 +n43021015029 +n43021015030 +n43021016001 +n43021016002 +n43021016003 +n43021016004 +n43021016005 +n43021016006 +n43021016007 +n43021016008 +n43021016009 +n43021016010 +n43021016011 +n43021016012 +n43021016013 +n43021016014 +n43021016015 +n43021016016 +n43021016017 +n43021016018 +n43021016019 +n43021016020 +n43021016021 +n43021016022 +n43021016023 +n43021017001 +n43021017002 +n43021017003 +n43021017004 +n43021017005 +n43021017006 +n43021017007 +n43021017008 +n43021017009 +n43021017010 +n43021017011 +n43021017012 +n43021017013 +n43021017014 +n43021017015 +n43021017016 +n43021017017 +n43021017018 +n43021017019 +n43021017020 +n43021017021 +n43021017022 +n43021017023 +n43021017024 +n43021017025 +n43021017026 +n43021017027 +n43021017028 +n43021017029 +n43021017030 +n43021017031 +n43021017032 +n43021017033 +n43021017034 +n43021017035 +n43021017036 +n43021017037 +n43021018001 +n43021018002 +n43021018003 +n43021018004 +n43021018005 +n43021018006 +n43021018007 +n43021018008 +n43021018009 +n43021018010 +n43021018011 +n43021018012 +n43021018013 +n43021018015 +n43021018014 +n43021018016 +n43021018017 +n43021018018 +n43021018019 +n43021018020 +n43021018021 +n43021018022 +n43021018023 +n43021018024 +n43021018025 +n43021018026 +n43021018027 +n43021018028 +n43021018029 +n43021019002 +n43021019001 +n43021019003 +n43021019004 +n43021019005 +n43021019006 +n43021019007 +n43021019008 +n43021019009 +n43021019010 +n43021019011 +n43021019012 +n43021019013 +n43021019014 +n43021019015 +n43021019016 +n43021020001 +n43021020002 +n43021020003 +n43021020004 +n43021020005 +n43021020006 +n43021020007 +n43021020008 +n43021020009 +n43021020010 +n43021020011 +n43021020012 +n43021020013 +n43021020014 +n43021020015 +n43021020016 +n43021020017 +n43021020018 +n43021020019 +n43021020020 +n43021020021 +n43021020022 +n43021020023 +n43021020024 +n43021020025 +n43021020026 +n43021020027 +n43021020028 +n43021020029 +n43021021002 +n43021021001 +n43021021003 +n43021021004 +n43021021005 +n43021021006 +n43021021007 +n43021021008 +n43021021009 +n43021021011 +n43021021010 +n43021021012 +n43021022001 +n43021022002 +n43021022003 +n43021022004 +n43021022005 +n43021022006 +n43021022008 +n43021022007 +n43021022009 +n43021022010 +n43021022011 +n43021022012 +n43021022013 +n43021022014 +n43021022015 +n43021022016 +n43021023002 +n43021023001 +n43021023003 +n43021023004 +n43021023005 +n43021023006 +n43021023007 +n43021023008 +n43021023009 +n43021023010 +n43021023011 +n43021023012 +n43021023013 +n43021023014 +n43021023017 +n43021023015 +n43021023016 +n43021023018 +n43021023019 +n43021023020 +n43021023021 +n43021023022 +n43021023023 +n43021023024 +n43021023025 +n43021023026 +n43021023028 +n43021023027 +n43021023029 +n43021023030 +n43021023031 +n43021023032 +n43021023033 +n43021024001 +n43021024002 +n43021024003 +n43021024004 +n43021024005 +n43021024006 +n43021024007 +n43021024008 +n43021024009 +n43021024010 +n43021024011 +n43021024012 +n43021024013 +n43021024014 +n43021024015 +n43021024016 +n43021024017 +n43021024018 +n43021024019 +n43021024020 +n43021025002 +n43021025001 +n43021025003 +n43021025004 +n43021025005 +n43021025006 +n43021025007 +n43021025008 +n43021025009 +n43021025011 +n43021025010 +n43021025012 +n43021025013 +n43021025014 +n43021025017 +n43021025015 +n43021025016 +n43021025018 +n43021025019 +n43021025020 +n43021025021 +n43021025022 +n43021025023 +n44001001008 +n44001001009 +n44001001002 +n44001001001 +n44001001003 +n44001001004 +n44001001005 +n44001001006 +n44001001007 +n44001001010 +n44001001015 +n44001001014 +n44001001016 +n44001001017 +n44001001011 +n44001001012 +n44001001013 +n44001002001 +n44001002002 +n44001002003 +n44001002004 +n44001002005 +n44001002006 +n44001002010 +n44001002011 +n44001002007 +n44001002008 +n44001002009 +n44001002012 +n44001003001 +n44001003002 +n44001003003 +n44001003004 +n44001003005 +n44001003006 +n44001003007 +n44001003008 +n44001003009 +n44001003010 +n44001003011 +n44001003012 +n44001003013 +n44001003014 +n44001003015 +n44001003016 +n44001003017 +n44001003018 +n44001003019 +n44001003020 +n44001003021 +n44001003022 +n44001003023 +n44001003024 +n44001003025 +n44001004001 +n44001004002 +n44001004003 +n44001004004 +n44001004005 +n44001004006 +n44001004007 +n44001004008 +n44001004009 +n44001004010 +n44001004011 +n44001004012 +n44001004013 +n44001004014 +n44001004015 +n44001004016 +n44001004017 +n44001005001 +n44001005003 +n44001005002 +n44001005004 +n44001005005 +n44001005007 +n44001005006 +n44001005008 +n44001005009 +n44001005011 +n44001005010 +n44001005012 +n44001005013 +n44001005014 +n44001005015 +n44001005016 +n44001006002 +n44001006003 +n44001006001 +n44001006004 +n44001006005 +n44001006006 +n44001006007 +n44001006008 +n44001006009 +n44001006010 +n44001006011 +n44001006012 +n44001006013 +n44001006014 +n44001006015 +n44001006016 +n44001006017 +n44001006018 +n44001007001 +n44001007002 +n44001007003 +n44001007004 +n44001007005 +n44001007006 +n44001007007 +n44001007008 +n44001007009 +n44001007010 +n44001007011 +n44001007012 +n44001007013 +n44001007014 +n44001007015 +n44001007016 +n44001007017 +n44001007018 +n44001008001 +n44001008002 +n44001008003 +n44001008004 +n44001008005 +n44001008006 +n44001008007 +n44001008008 +n44001008009 +n44001008010 +n44001008011 +n44001008012 +n44001008013 +n44001008015 +n44001008014 +n44001008016 +n44001008017 +n44001008018 +n44001008019 +n44001008020 +n44001008021 +n44001008022 +n44001008023 +n44001008024 +n44001008025 +n44001008026 +n44001008027 +n44001008028 +n44001009001 +n44001009002 +n44001009003 +n44001009004 +n44001009005 +n44001009006 +n44001009007 +n44001009008 +n44001009009 +n44001009010 +n44001009011 +n44001009012 +n44001009013 +n44001009014 +n44001010001 +n44001010002 +n44001010003 +n44001010004 +n44001010005 +n44001010006 +n44001010007 +n44001010008 +n44001010009 +n44001010010 +n44001010011 +n44001010012 +n44001010013 +n44001010014 +n44001010015 +n44001010016 +n44001010017 +n44001010018 +n44001011001 +n44001011002 +n44001011003 +n44001011004 +n44001011005 +n44001011006 +n44001011007 +n44001011008 +n44001011009 +n44001011010 +n44001011011 +n44001011012 +n44001011013 +n44001011014 +n44001011015 +n44001011016 +n44001011017 +n44001011018 +n44001011019 +n44001011020 +n44001011021 +n44001011022 +n44001011023 +n44001011024 +n44001011025 +n44001011026 +n44001011027 +n44001011028 +n44001011029 +n44001011030 +n44001011031 +n44001012001 +n44001012002 +n44001012003 +n44001012004 +n44001012005 +n44001012006 +n44001012007 +n44001012008 +n44001012009 +n44001012010 +n44001012011 +n44001012012 +n44001012013 +n44001012014 +n44001012016 +n44001012015 +n44001013001 +n44001013002 +n44001013003 +n44001013004 +n44001013005 +n44001013006 +n44001013007 +n44001013008 +n44001013009 +n44001013010 +n44001013012 +n44001013011 +n44001013013 +n44001013014 +n44001013015 +n44001013016 +n44001013017 +n44001013018 +n44001013019 +n44001013020 +n44001013021 +n44001013022 +n44001013023 +n44001013024 +n44001013025 +n44001013026 +n44001013027 +n44001013028 +n44001013029 +n44001013030 +n44001013031 +n44001013032 +n44001013033 +n44001013034 +n44001014001 +n44001014002 +n44001014003 +n44001014004 +n44001014005 +n44001014006 +n44001014007 +n44001014008 +n44001014009 +n44001014010 +n44001014011 +n44001014012 +n44001014013 +n44001014014 +n44001014015 +n44001014016 +n44001014017 +n44001014018 +n44001014019 +n44001014020 +n44001015001 +n44001015002 +n44001015003 +n44001015004 +n44001015005 +n44001015006 +n44001015008 +n44001015009 +n44001015010 +n44001015011 +n44001015007 +n44001015012 +n44001015014 +n44001015013 +n44001015015 +n44001015016 +n44001015017 +n44001015018 +n44001015019 +n44001015020 +n44001015021 +n44001015022 +n44001016001 +n44001016002 +n44001016003 +n44001016004 +n44001016005 +n44001016006 +n44001016007 +n44001016008 +n44001016009 +n44001016010 +n44001016011 +n44001016012 +n44001016013 +n44001016014 +n44001016015 +n44001016016 +n44001016017 +n44001016018 +n44001016019 +n44001016020 +n44001016021 +n44001016022 +n44001016023 +n44001017001 +n44001017002 +n44001017003 +n44001017004 +n44001017005 +n44001017006 +n44001017007 +n44001017008 +n44001017009 +n44001017010 +n44001017011 +n44001017012 +n44001018002 +n44001018003 +n44001018001 +n44001018004 +n44001018005 +n44001018006 +n44001018007 +n44001018008 +n44001018009 +n44001018010 +n44001018011 +n44001018012 +n44001018013 +n44001018014 +n44001018015 +n44001018016 +n44001018017 +n44001018018 +n44001018019 +n44001018020 +n44001019001 +n44001019002 +n44001019003 +n44001019004 +n44001019005 +n44001019006 +n44001019007 +n44001019008 +n44001019009 +n44001019010 +n44001019011 +n44001019012 +n44001019013 +n44001019014 +n44001019015 +n44001019016 +n44001019017 +n44001019018 +n44001019019 +n44001019020 +n44001019021 +n44001020002 +n44001020001 +n44001020003 +n44001020004 +n44001020005 +n44001020006 +n44001020007 +n44001020008 +n44001020009 +n44001020010 +n44001020011 +n44001020012 +n44001020013 +n44001020014 +n44001020015 +n44001020016 +n44001020017 +n44001020018 +n44001020019 +n44001020020 +n44001020021 +n44001020022 +n44001020023 +n44001021002 +n44001021001 +n44001021003 +n44001021006 +n44001021004 +n44001021005 +n44001021007 +n44001021008 +n44001021009 +n44001021010 +n44001021011 +n44001021012 +n44001021013 +n44001021014 +n44001021015 +n44001021016 +n44001021017 +n44001021018 +n44001022001 +n44001022002 +n44001022003 +n44001022004 +n44001022005 +n44001022006 +n44001022007 +n44001022008 +n44001022009 +n44001022010 +n44001022011 +n44001022012 +n44001022013 +n44001022014 +n44001022015 +n44001022016 +n44001022017 +n44001022018 +n44001022019 +n44001022020 +n44001022021 +n44001023001 +n44001023002 +n44001023003 +n44001023004 +n44001023005 +n44001023006 +n44001023007 +n44001023008 +n44001023009 +n44001023010 +n44001023011 +n44001023012 +n44001024001 +n44001024002 +n44001024003 +n44001024005 +n44001024006 +n44001024007 +n44001024004 +n44001024008 +n44001024009 +n44001024010 +n44001024011 +n44001024012 +n44001024013 +n44001024014 +n44001024015 +n44001025001 +n44001025002 +n44001025003 +n44001025004 +n44001025005 +n44001025006 +n44001025007 +n44001025008 +n44001025009 +n44001025010 +n44001025011 +n44001025012 +n44001025013 +n44001025014 +n44001025015 +n44001025016 +n44001025017 +n44001025018 +n44001026001 +n44001026002 +n44001026003 +n44001026004 +n44001026005 +n44001026006 +n44001026007 +n44001026008 +n44001026009 +n44001026010 +n44001026011 +n44001026012 +n44001026013 +n44001026014 +n44001026015 +n44001026016 +n44002001001 +n44002001002 +n44002001003 +n44002001004 +n44002001005 +n44002001006 +n44002001007 +n44002001008 +n44002001009 +n44002001010 +n44002001011 +n44002001012 +n44002001013 +n44002001014 +n44002002001 +n44002002002 +n44002002003 +n44002002004 +n44002002005 +n44002002006 +n44002002007 +n44002002008 +n44002002009 +n44002002010 +n44002002011 +n44002002012 +n44002002013 +n44002002014 +n44002002015 +n44002002016 +n44002002017 +n44002002018 +n44002002019 +n44002003001 +n44002003002 +n44002003003 +n44002003004 +n44002003005 +n44002003006 +n44002003007 +n44002003008 +n44002003009 +n44002003010 +n44002003011 +n44002003012 +n44002003013 +n44002004001 +n44002004002 +n44002004003 +n44002004004 +n44002004005 +n44002004006 +n44002004007 +n44002004008 +n44002004009 +n44002004010 +n44002004011 +n44002004012 +n44002004013 +n44002004014 +n44002004015 +n44002004016 +n44002005002 +n44002005001 +n44002005005 +n44002005003 +n44002005004 +n44002005006 +n44002005007 +n44002005008 +n44002005009 +n44002005010 +n44002005011 +n44002005012 +n44002005013 +n44002005014 +n44002005015 +n44002006002 +n44002006001 +n44002006003 +n44002006004 +n44002006005 +n44002006006 +n44002006007 +n44002006008 +n44002006009 +n44002006010 +n44002006011 +n44002006012 +n44002006013 +n44002006014 +n44002006015 +n44002006016 +n44002006017 +n44002006018 +n44002006019 +n44002007002 +n44002007001 +n44002007003 +n44002007004 +n44002007005 +n44002007007 +n44002007006 +n44002007008 +n44002007009 +n44002007011 +n44002007012 +n44002007010 +n44002007013 +n44002008001 +n44002008002 +n44002008003 +n44002008004 +n44002008005 +n44002008006 +n44002008007 +n44002008008 +n44002008009 +n44002008010 +n44002008011 +n44002008012 +n44002009001 +n44002009002 +n44002009003 +n44002009004 +n44002009005 +n44002009006 +n44002009007 +n44002009008 +n44002009009 +n44002009010 +n44002009012 +n44002009011 +n44002009013 +n44002009014 +n44002009015 +n44002009016 +n44002009017 +n44002009018 +n44002010002 +n44002010001 +n44002010003 +n44002010004 +n44002010005 +n44002010006 +n44002010007 +n44002010008 +n44002010009 +n44002010010 +n44002010011 +n44002010012 +n44002010013 +n44002010014 +n44002010015 +n44002010016 +n44002010017 +n44002011002 +n44002011001 +n44002011003 +n44002011004 +n44002011005 +n44002011006 +n44002011007 +n44002011008 +n44002011009 +n44002011010 +n44002011011 +n44002011012 +n44002011013 +n44002011014 +n44002011015 +n44002011016 +n44002011017 +n44002012002 +n44002012001 +n44002012003 +n44002012004 +n44002012005 +n44002012006 +n44002012007 +n44002012008 +n44002012009 +n44002012011 +n44002012012 +n44002012010 +n44002012013 +n44002013002 +n44002013001 +n44002013003 +n44002013004 +n44002013005 +n44002013006 +n44002013007 +n44002013008 +n44002014002 +n44002014001 +n44002014005 +n44002014006 +n44002014007 +n44002014003 +n44002014004 +n44002014008 +n44002014009 +n44002014010 +n44002014011 +n44002014012 +n44002014013 +n44002014014 +n44002014015 +n44002014016 +n44002014017 +n44002014018 +n44002014019 +n44002014020 +n44002014021 +n44002014022 +n44002014023 +n44002014024 +n44002014025 +n44002014026 +n44002014027 +n44002014028 +n44002014029 +n44002014030 +n44002015002 +n44002015001 +n44002015003 +n44002015004 +n44002015005 +n44002015006 +n44002015007 +n44002015009 +n44002015008 +n44002015010 +n44002015011 +n44002015012 +n44002015013 +n44002016001 +n44002016002 +n44002016003 +n44002016004 +n44002016005 +n44002016006 +n44002016007 +n44002016008 +n44002016009 +n44002017001 +n44002017002 +n44002017003 +n44002017004 +n44002017005 +n44002017006 +n44002017007 +n44002017008 +n44002017009 +n44002017010 +n44002017011 +n44002017012 +n44002017013 +n44002017014 +n44002017015 +n44002017016 +n44002017017 +n44002017018 +n44002017019 +n44002017020 +n44002017021 +n44002017022 +n44002017023 +n44002017024 +n44002017025 +n44002017026 +n44002017027 +n44002017028 +n44002017029 +n44002017030 +n44002017031 +n44002017032 +n44002017033 +n44002017034 +n44002017035 +n44002017036 +n44002017037 +n44002017038 +n44002018001 +n44002018002 +n44002018003 +n44002018004 +n44002018005 +n44002018006 +n44002018007 +n44002018008 +n44002018009 +n44002018010 +n44002018011 +n44002018012 +n44002018013 +n44002018014 +n44002018015 +n44002018016 +n44002018017 +n44002018018 +n44002018019 +n44002018020 +n44002018021 +n44002019001 +n44002019002 +n44002019003 +n44002019004 +n44002019005 +n44002019006 +n44002019007 +n44002019008 +n44002019009 +n44002019010 +n44002019011 +n44002019012 +n44002019013 +n44002019014 +n44002019015 +n44002019016 +n44002019017 +n44002019018 +n44002019019 +n44002020001 +n44002020002 +n44002020003 +n44002020004 +n44002020005 +n44002020006 +n44002020007 +n44002020008 +n44002020009 +n44002020010 +n44002020011 +n44002020012 +n44002020013 +n44002020014 +n44002020015 +n44002020016 +n44002020017 +n44002020018 +n44002021001 +n44002021002 +n44002021003 +n44002021005 +n44002021004 +n44002021006 +n44002021007 +n44002021008 +n44002021009 +n44002021010 +n44002022001 +n44002022002 +n44002022003 +n44002022004 +n44002022005 +n44002022006 +n44002022007 +n44002022008 +n44002022009 +n44002022010 +n44002022011 +n44002022012 +n44002022013 +n44002022014 +n44002022015 +n44002022016 +n44002022017 +n44002022018 +n44002022019 +n44002022020 +n44002022021 +n44002022022 +n44002022023 +n44002022024 +n44002022025 +n44002022026 +n44002022027 +n44002022028 +n44002022029 +n44002022030 +n44002022031 +n44002022032 +n44002022033 +n44002023001 +n44002023002 +n44002023003 +n44002023004 +n44002023005 +n44002023006 +n44002023007 +n44002023008 +n44002023009 +n44002023010 +n44002023011 +n44002023012 +n44002023013 +n44002023014 +n44002024001 +n44002024002 +n44002024003 +n44002024004 +n44002024005 +n44002024006 +n44002024007 +n44002024008 +n44002024009 +n44002024010 +n44002024011 +n44002024012 +n44002024013 +n44002024014 +n44002024015 +n44002024016 +n44002024017 +n44002025002 +n44002025001 +n44002025003 +n44002025004 +n44002025005 +n44002025006 +n44002025007 +n44002025008 +n44002025009 +n44002025010 +n44002025011 +n44002025012 +n44002025013 +n44002025014 +n44002025015 +n44002025016 +n44002025017 +n44002025018 +n44002025019 +n44002025020 +n44002026001 +n44002026002 +n44002026003 +n44002026004 +n44002026005 +n44002026006 +n44002026007 +n44002026008 +n44002026009 +n44002026010 +n44002026011 +n44002026013 +n44002026012 +n44002026014 +n44002026015 +n44002026016 +n44002026017 +n44002026018 +n44002026019 +n44002026020 +n44002027001 +n44002027002 +n44002027003 +n44002027004 +n44002027005 +n44002027006 +n44002027007 +n44002027008 +n44002027009 +n44002027010 +n44002027011 +n44002027012 +n44002027013 +n44002027014 +n44002027015 +n44002028001 +n44002028002 +n44002028003 +n44002028004 +n44002028005 +n44002028006 +n44002028007 +n44002028008 +n44002028009 +n44002028010 +n44002028011 +n44002029001 +n44002029002 +n44002029003 +n44002029004 +n44002029005 +n44002029006 +n44002029007 +n44002029008 +n44002029009 +n44002029010 +n44002029011 +n44002029012 +n44002029013 +n44002029014 +n44002029015 +n44002029016 +n44002029017 +n44002029018 +n44002029019 +n44002029020 +n44002029021 +n44002029022 +n44002029023 +n44002029024 +n44002029025 +n44002029026 +n44002029027 +n44002029028 +n44002030002 +n44002030001 +n44002030003 +n44002030004 +n44002030005 +n44002030006 +n44002030007 +n44002030008 +n44002030009 +n44002030010 +n44002030011 +n44002030012 +n44002030013 +n44002030014 +n44002030015 +n44002030016 +n44002030017 +n44002030018 +n44002030019 +n44002030020 +n44002030021 +n44002031001 +n44002031002 +n44002031003 +n44002031004 +n44002031005 +n44002031006 +n44002031007 +n44002031008 +n44002031009 +n44002031010 +n44002031011 +n44002031012 +n44002031013 +n44002031014 +n44002031015 +n44002031016 +n44002031017 +n44002031018 +n44002032001 +n44002032002 +n44002032003 +n44002032004 +n44002032005 +n44002032006 +n44002032007 +n44002032008 +n44002032009 +n44002032010 +n44002032011 +n44002033003 +n44002033001 +n44002033002 +n44002033004 +n44002033005 +n44002033006 +n44002033008 +n44002033007 +n44002033009 +n44002033010 +n44002033011 +n44002033012 +n44002033013 +n44002033014 +n44002033015 +n44002033016 +n44002033017 +n44002033018 +n44002033019 +n44002033020 +n44002033021 +n44002033022 +n44002033023 +n44002033024 +n44002033025 +n44002034002 +n44002034001 +n44002034003 +n44002034004 +n44002034005 +n44002034006 +n44002034007 +n44002034009 +n44002034008 +n44002034010 +n44002034011 +n44002034012 +n44002034013 +n44002034014 +n44002034015 +n44002034016 +n44002034017 +n44002034018 +n44002034019 +n44002035001 +n44002035002 +n44002035003 +n44002035004 +n44002035005 +n44002035006 +n44002035007 +n44002035008 +n44002035009 +n44002035010 +n44002036002 +n44002036001 +n44002036003 +n44002036004 +n44002036005 +n44002036006 +n44002036007 +n44002036008 +n44002036009 +n44002036011 +n44002036012 +n44002036013 +n44002036014 +n44002036015 +n44002036010 +n44002036016 +n44002036017 +n44002036018 +n44002036019 +n44002036020 +n44002036021 +n44002037002 +n44002037001 +n44002037003 +n44002037004 +n44002037005 +n44002037007 +n44002037006 +n44002037008 +n44002037009 +n44002037010 +n44002037011 +n44002037012 +n44002037013 +n44002037014 +n44002037015 +n44002037016 +n44002037017 +n44002037018 +n44002038002 +n44002038001 +n44002038003 +n44002038004 +n44002038005 +n44002038006 +n44002038007 +n44002038008 +n44002038009 +n44002038010 +n44002038011 +n44002038012 +n44002038013 +n44002038014 +n44002038015 +n44002038016 +n44002038017 +n44002038018 +n44002038019 +n44002038020 +n44002038021 +n44002038022 +n44002038023 +n44002038024 +n44002038025 +n44002038026 +n44002039002 +n44002039001 +n44002039003 +n44002039004 +n44002039005 +n44002039006 +n44002039007 +n44002039008 +n44002039009 +n44002039010 +n44002039011 +n44002039012 +n44002039013 +n44002039014 +n44002039016 +n44002039015 +n44002039017 +n44002039018 +n44002039019 +n44002039020 +n44002039021 +n44002040002 +n44002040001 +n44002040003 +n44002040004 +n44002040005 +n44002040006 +n44002040007 +n44002040008 +n44002040009 +n44002040010 +n44002040011 +n44002040012 +n44002040013 +n44002040014 +n44002040015 +n44002040016 +n44002041002 +n44002041003 +n44002041001 +n44002041004 +n44002041005 +n44002041006 +n44002041007 +n44002041008 +n44002041009 +n44002041010 +n44002041011 +n44002041012 +n44002041013 +n44002041014 +n44002041015 +n44002041016 +n44002041017 +n44002042002 +n44002042001 +n44002042003 +n44002042004 +n44002042005 +n44002042006 +n44002042007 +n44002042008 +n44002042009 +n44002042010 +n44002042011 +n44002042012 +n44002042013 +n44002042014 +n44002042015 +n44002042016 +n44002042017 +n44002043002 +n44002043001 +n44002043003 +n44002043004 +n44002043005 +n44002043007 +n44002043006 +n44002043008 +n44002043009 +n44002043010 +n44002043011 +n44002043012 +n44002043013 +n44002043014 +n44002044002 +n44002044001 +n44002044003 +n44002044004 +n44002044005 +n44002044006 +n44002044007 +n44002044008 +n44002044009 +n44002044010 +n44002045001 +n44002045002 +n44002045003 +n44002045004 +n44002045005 +n44002045006 +n44002045007 +n44002045008 +n44002045009 +n44002045010 +n44002045011 +n44002045012 +n44002045013 +n44002045014 +n44002045015 +n44002045016 +n44002046003 +n44002046001 +n44002046002 +n44002046004 +n44002046005 +n44002046006 +n44002046007 +n44002046008 +n44002046010 +n44002046009 +n44002046011 +n44002046012 +n44002046013 +n44002046014 +n44002046015 +n44002046016 +n44002046017 +n44002046018 +n44002046019 +n44002046020 +n44002047001 +n44002047002 +n44002047003 +n44002047004 +n44002047005 +n44002047006 +n44002047007 +n44002047008 +n44002047009 +n44002047010 +n44002047012 +n44002047011 +n44002047013 +n44002047014 +n44002047015 +n44002047016 +n44002047017 +n44002047018 +n44002047019 +n44002047020 +n44002047021 +n44003001002 +n44003001001 +n44003001003 +n44003001004 +n44003001005 +n44003001006 +n44003001007 +n44003001008 +n44003001009 +n44003001010 +n44003001011 +n44003001012 +n44003001013 +n44003001014 +n44003001015 +n44003002001 +n44003002002 +n44003002003 +n44003002004 +n44003002005 +n44003002006 +n44003002007 +n44003002008 +n44003002009 +n44003002010 +n44003002011 +n44003002012 +n44003002013 +n44003002014 +n44003002015 +n44003002016 +n44003002017 +n44003002018 +n44003002019 +n44003002020 +n44003002021 +n44003002022 +n44003002023 +n44003002024 +n44003002025 +n44003002026 +n44003002027 +n44003002028 +n44003002029 +n44003002030 +n44003002031 +n44003003001 +n44003003002 +n44003003003 +n44003003004 +n44003003005 +n44003003006 +n44003003007 +n44003003008 +n44003003009 +n44003003010 +n44003003011 +n44003003012 +n44003003013 +n44003004002 +n44003004003 +n44003004001 +n44003004004 +n44003004005 +n44003004006 +n44003004007 +n44003004008 +n44003004009 +n44003004010 +n44003004011 +n44003004012 +n44003005002 +n44003005001 +n44003005003 +n44003005004 +n44003005005 +n44003005006 +n44003005007 +n44003005008 +n44003005009 +n44003006002 +n44003006001 +n44003006003 +n44003006004 +n44003006005 +n44003006006 +n44003006007 +n44003006008 +n44003006009 +n44003006011 +n44003006010 +n44003006012 +n44003006013 +n44003006014 +n44003006015 +n44003006016 +n44003006017 +n44003006018 +n44003006019 +n44003006020 +n44003006021 +n44003006022 +n44003006023 +n44003007001 +n44003007002 +n44003007003 +n44003007004 +n44003007005 +n44003007006 +n44003007007 +n44003007008 +n44003007010 +n44003007009 +n44003007011 +n44003007012 +n44003007013 +n44003007014 +n44003007015 +n44003007016 +n44003007017 +n44003008001 +n44003008002 +n44003008003 +n44003008004 +n44003008005 +n44003008006 +n44003008007 +n44003008008 +n44003008009 +n44003008010 +n44003008011 +n44003008012 +n44003008013 +n44003008014 +n44003008015 +n44003008016 +n44003008017 +n44003008018 +n44003008019 +n44003009001 +n44003009002 +n44003009003 +n44003009004 +n44003009005 +n44003009006 +n44003009007 +n44003009008 +n44003009009 +n44003009010 +n44003009011 +n44003010002 +n44003010001 +n44003010003 +n44003010004 +n44003010005 +n44003010006 +n44003010007 +n44003010008 +n44003010009 +n44003010010 +n44003010011 +n44003010012 +n44003010013 +n44003010014 +n44003010015 +n44003010016 +n44003010017 +n44003010018 +n44003010019 +n44003010020 +n44003010021 +n44003010022 +n44003010023 +n44003010024 +n44003010025 +n44003010026 +n44003011002 +n44003011001 +n44003011003 +n44003011004 +n44003011005 +n44003011006 +n44003011007 +n44003011008 +n44003011009 +n44003011010 +n44003011011 +n44003011012 +n44003011013 +n44003011014 +n44003011015 +n44003011016 +n44003011017 +n44003011018 +n44003011019 +n44003011020 +n44003011021 +n44003012002 +n44003012001 +n44003012003 +n44003012004 +n44003012005 +n44003012006 +n44003012007 +n44003012008 +n44003012009 +n44003012010 +n44003012011 +n44003012012 +n44003012013 +n44003012014 +n44003012015 +n44003012016 +n44003012017 +n44003012018 +n44003012019 +n44003012020 +n44003012021 +n44003012022 +n44003012023 +n44003012024 +n44003012025 +n44003012026 +n44003012027 +n44003013001 +n44003013002 +n44003013003 +n44003013004 +n44003013005 +n44003013006 +n44003013007 +n44003013008 +n44003013009 +n44003013010 +n44003013011 +n44003013012 +n44003013013 +n44003013014 +n44003013015 +n44003013016 +n44003013017 +n44003013020 +n44003013018 +n44003013019 +n44003013021 +n44003013022 +n44003013023 +n44003013024 +n44003013025 +n44003013026 +n44003013027 +n44003013028 +n44003013029 +n44003014002 +n44003014001 +n44003014003 +n44003014004 +n44003014005 +n44003014006 +n44003014007 +n44003014008 +n44003014009 +n44003014010 +n44003014011 +n44003014012 +n44003014013 +n44003015002 +n44003015001 +n44003015003 +n44003015004 +n44003015005 +n44003015006 +n44003015007 +n44003015008 +n44003015009 +n44003015010 +n44003015011 +n44003015012 +n44003015013 +n44003015014 +n44003015015 +n44003015016 +n44003016001 +n44003016002 +n44003016003 +n44003016004 +n44003016005 +n44003016006 +n44003016007 +n44003016008 +n44003016009 +n44003016010 +n44003016011 +n44003016012 +n44003016013 +n44003016014 +n44003016015 +n44003016016 +n44003016017 +n44003016018 +n44003016019 +n44003016020 +n44003016021 +n44003016022 +n44003016023 +n44003016024 +n44003016025 +n44003016026 +n44003016027 +n44003016028 +n44003016029 +n44003016030 +n44003017001 +n44003017003 +n44003017002 +n44003017004 +n44003017005 +n44003017006 +n44003017007 +n44003017008 +n44003017009 +n44003017010 +n44003017011 +n44003017012 +n44003017013 +n44003018002 +n44003018001 +n44003018003 +n44003018004 +n44003018005 +n44003018006 +n44003018007 +n44003018008 +n44003018009 +n44003018010 +n44003018011 +n44003018012 +n44003018013 +n44003018014 +n44003018015 +n44003018016 +n44003019002 +n44003019001 +n44003019003 +n44003019004 +n44003019005 +n44003019006 +n44003019007 +n44003019008 +n44003019009 +n44003019010 +n44003020001 +n44003020002 +n44003020003 +n44003020004 +n44003020005 +n44003020006 +n44003020007 +n44003020008 +n44003020009 +n44003020010 +n44003020011 +n44003020012 +n44003020013 +n44003020014 +n44003020015 +n44003020016 +n44003021002 +n44003021004 +n44003021001 +n44003021003 +n44003021005 +n44003021006 +n44003021007 +n44003021008 +n44003021009 +n44003021010 +n44003021011 +n44003021012 +n44003021013 +n44003021014 +n44003021015 +n44003021016 +n44003021017 +n44003021018 +n44003021019 +n44003021020 +n44003021021 +n44003022002 +n44003022001 +n44003022003 +n44003022004 +n44003022005 +n44003022006 +n44003022007 +n44003022008 +n44003022009 +n44003022010 +n44003022011 +n44003022012 +n44003022013 +n44003022014 +n44003022015 +n44003022016 +n44003022017 +n44003022018 +n44003022019 +n44003022020 +n44003022022 +n44003022021 +n44003022023 +n44003022024 +n44003022025 +n44003023002 +n44003023001 +n44003023003 +n44003023004 +n44003023006 +n44003023005 +n44003023007 +n44003023008 +n44003023009 +n44003023010 +n44003023011 +n44003023012 +n44003023013 +n44003023014 +n44003023015 +n44003024003 +n44003024001 +n44003024002 +n44003024004 +n44003024005 +n44003024006 +n44003024007 +n44003024008 +n44003024009 +n44003024010 +n44003024011 +n44003024012 +n44003024013 +n44003024014 +n44003024015 +n44003024016 +n44003024017 +n44003025001 +n44003025002 +n44003025003 +n44003025004 +n44003025005 +n44003025006 +n44003025007 +n44003025008 +n44003025009 +n44003025010 +n44003025011 +n44003025012 +n44003025013 +n44003025014 +n44003025015 +n44003025016 +n44003025017 +n44003025018 +n44003025019 +n44003025020 +n44003025021 +n44003025022 +n44003025023 +n44003025024 +n44003025025 +n44003025026 +n44003025027 +n44003025028 +n44003025029 +n44003025030 +n44003025031 +n44003026001 +n44003026002 +n44003026004 +n44003026005 +n44003026003 +n44003026006 +n44003026007 +n44003026008 +n44003026009 +n44003026010 +n44003026011 +n44003026012 +n44003026013 +n44003026014 +n44003026015 +n44003026016 +n44003026017 +n44003026018 +n44003026019 +n44003026020 +n44004001002 +n44004001001 +n44004001003 +n44004001004 +n44004001005 +n44004001006 +n44004001007 +n44004001008 +n44004001009 +n44004001010 +n44004001011 +n44004001012 +n44004001013 +n44004001014 +n44004001015 +n44004001016 +n44004001017 +n44004001018 +n44004002001 +n44004002002 +n44004002003 +n44004002004 +n44004002005 +n44004002006 +n44004002007 +n44004002008 +n44004002009 +n44004002010 +n44004002011 +n44004002012 +n44004002013 +n44004002014 +n44004002015 +n44004002016 +n44004002017 +n44004003001 +n44004003002 +n44004003003 +n44004003004 +n44004003005 +n44004003006 +n44004003007 +n44004003008 +n44004003009 +n44004003010 +n44004003011 +n44004003012 +n44004003014 +n44004003013 +n44004003015 +n44004003016 +n44004004002 +n44004004001 +n44004004003 +n44004004004 +n44004004005 +n44004004006 +n44004004007 +n44004004008 +n44004004009 +n44004004010 +n44004004011 +n44004004012 +n44004004013 +n44004004014 +n44004004015 +n44004005002 +n44004005001 +n44004005003 +n44004005004 +n44004005005 +n44004005006 +n44004005007 +n44004005008 +n44004005009 +n44004005010 +n44004005011 +n44004005012 +n44004005013 +n44004005014 +n44004005015 +n44004005016 +n44004005017 +n44004006001 +n44004006002 +n44004006003 +n44004006004 +n44004006005 +n44004006006 +n44004006007 +n44004006008 +n44004006009 +n44004006010 +n44004006011 +n44004006012 +n44004006013 +n44004006014 +n44004006015 +n44004006016 +n44004007001 +n44004007002 +n44004007003 +n44004007004 +n44004007005 +n44004007006 +n44004007007 +n44004007008 +n44004007009 +n44004007010 +n44004007011 +n44004007012 +n44004007013 +n44004007014 +n44004007015 +n44004007016 +n44004007017 +n44004008001 +n44004008002 +n44004008003 +n44004008004 +n44004008005 +n44004008006 +n44004008007 +n44004008008 +n44004008009 +n44004008010 +n44004008011 +n44004008012 +n44004008013 +n44004009001 +n44004009002 +n44004009003 +n44004009004 +n44004009005 +n44004009006 +n44004009007 +n44004009008 +n44004009009 +n44004009010 +n44004009011 +n44004009012 +n44004010001 +n44004010002 +n44004010003 +n44004010004 +n44004010005 +n44004010006 +n44004010007 +n44004010008 +n44004010009 +n44004010010 +n44004010011 +n44004010012 +n44004010013 +n44004010014 +n44004010015 +n44004010016 +n44004010017 +n44004010018 +n44004010019 +n44004010020 +n44004010021 +n44004010022 +n44004010023 +n44004010024 +n44004010025 +n44004010026 +n44004010027 +n44004010028 +n44004010029 +n44004010030 +n44004010031 +n44004010032 +n44004010033 +n44004011001 +n44004011002 +n44004011003 +n44004011004 +n44004011005 +n44004011006 +n44004011007 +n44004011008 +n44004011009 +n44004011010 +n44004011011 +n44004011012 +n44004011013 +n44004011014 +n44004011015 +n44004012001 +n44004012002 +n44004012003 +n44004012004 +n44004012005 +n44004012006 +n44004012007 +n44004012008 +n44004012010 +n44004012009 +n44004012012 +n44004012014 +n44004012015 +n44004012016 +n44004012011 +n44004012013 +n44004012017 +n44004012018 +n44004012019 +n44004012020 +n44004012021 +n44004012022 +n44004012023 +n44004012024 +n44004012025 +n44004013002 +n44004013001 +n44004013003 +n44004013004 +n44004013005 +n44004013007 +n44004013008 +n44004013006 +n44004013009 +n44004013010 +n44004013011 +n44004013012 +n44004013013 +n44004013014 +n44004013015 +n44004013016 +n44004013017 +n44004013019 +n44004013018 +n44004013020 +n44004013021 +n44004013022 +n44004013023 +n44004013024 +n44004013025 +n44004014002 +n44004014004 +n44004014001 +n44004014003 +n44004014008 +n44004014009 +n44004014005 +n44004014006 +n44004014007 +n44004014010 +n44004014012 +n44004014011 +n44004015002 +n44004015001 +n44004015003 +n44004015004 +n44004015005 +n44004015006 +n44004015007 +n44004015008 +n44004015009 +n44004015010 +n44004016001 +n44004016002 +n44004016003 +n44004016004 +n44004016005 +n44004016006 +n44004016009 +n44004016008 +n44004016007 +n44004016010 +n44004016011 +n44004016012 +n44004016013 +n44004016014 +n44004016015 +n44004016016 +n44004016017 +n44004016018 +n44004016019 +n44004016020 +n44004016021 +n44004016022 +n44004016023 +n44004017001 +n44004017002 +n44004017003 +n44004017004 +n44004017005 +n44004017006 +n44004017007 +n44004017008 +n44004017009 +n44004017010 +n44004017011 +n44004017012 +n44004017013 +n44004017014 +n44004017015 +n44004017016 +n44004017017 +n44004017018 +n44004017019 +n44004018001 +n44004018002 +n44004018003 +n44004018004 +n44004018005 +n44004018006 +n44004018007 +n44004018008 +n44004018009 +n44004018010 +n44004018011 +n44004018012 +n44004018013 +n44004018014 +n44004019002 +n44004019001 +n44004019003 +n44004019004 +n44004019005 +n44004019006 +n44004019007 +n44004019008 +n44004019009 +n44004019010 +n44004019011 +n44004019012 +n44004019013 +n44004019014 +n44004019015 +n44004019016 +n44004019017 +n44004019018 +n44004019019 +n44004019020 +n44004019021 +n44004019022 +n44004020003 +n44004020001 +n44004020002 +n44004020004 +n44004020005 +n44004020006 +n44004020007 +n44004020008 +n44004020009 +n44004020010 +n44004021002 +n44004021001 +n44004021003 +n44004021004 +n44004021005 +n44004021006 +n44004021007 +n44004021008 +n44004021009 +n44004021010 +n44004021011 +n44004021012 +n44004021013 +n44004021014 +n44004021015 +n44004021016 +n44004021017 +n44004021018 +n44004021019 +n44004021020 +n44004021021 +n44004021022 +n44004022002 +n44004022001 +n44004022004 +n44004022005 +n44004022003 +n44004022006 +n44004022007 +n44004022008 +n44004022009 +n44004022010 +n44004022011 +n44004022012 +n44004022013 +n44004022014 +n44004022015 +n44004023002 +n44004023001 +n44004023003 +n44004023004 +n44004023005 +n44004023006 +n44004023007 +n44004023008 +n44004023009 +n44004023010 +n44004023011 +n44004023012 +n44004023013 +n44004023014 +n44004023015 +n44004023016 +n44004023017 +n44004024002 +n44004024001 +n44004024003 +n44004024004 +n44004024005 +n44004024006 +n44004024007 +n44004024008 +n44004024009 +n44004024010 +n44004024011 +n44004024012 +n44004024013 +n44004024014 +n44004024015 +n44004024016 +n44004024017 +n44004024018 +n44004024019 +n44004024020 +n44004024021 +n44004024022 +n44004024023 +n44004024024 +n44004024025 +n44004024026 +n44004024027 +n44004024028 +n44004025001 +n44004025002 +n44004025003 +n44004025004 +n44004025005 +n44004025006 +n44004025007 +n44004025008 +n44004025009 +n44004025010 +n44004025011 +n44004025012 +n44004025013 +n44004025014 +n44004025015 +n44004025016 +n44004025017 +n44004025018 +n44004025019 +n44004025020 +n44004026001 +n44004026002 +n44004026003 +n44004026004 +n44004026005 +n44004026006 +n44004026007 +n44004026008 +n44004026009 +n44004026010 +n44004026011 +n44004026012 +n44004026013 +n44004026014 +n44004026015 +n44004026016 +n44004026017 +n44004026018 +n44004026019 +n44004026020 +n44004027002 +n44004027001 +n44004027003 +n44004027004 +n44004027005 +n44004027006 +n44004027007 +n44004027008 +n44004027009 +n44004027010 +n44004027011 +n44004027012 +n44004027013 +n44004027014 +n44004027015 +n44004027016 +n44004027018 +n44004027017 +n44004027019 +n44004027020 +n44004027021 +n44004027022 +n44004027023 +n44004027024 +n44004027025 +n44004027026 +n44004028001 +n44004028002 +n44004028010 +n44004028003 +n44004028004 +n44004028005 +n44004028006 +n44004028007 +n44004028008 +n44004028009 +n44004029001 +n44004029004 +n44004029002 +n44004029003 +n44004029005 +n44004029006 +n44004029007 +n44004029008 +n44004029009 +n44004029010 +n44004029011 +n44004029012 +n44004029013 +n44004029014 +n44004029015 +n44004029016 +n44004029017 +n44004029018 +n44004029019 +n44004029020 +n44004029021 +n44004030001 +n44004030002 +n44004030003 +n44004030004 +n44004030005 +n44004030006 +n44004030007 +n44004030008 +n44004030009 +n44004030010 +n44004030011 +n44004030012 +n44004030013 +n44004030014 +n44004030015 +n44004030016 +n44004030017 +n44004030018 +n44004030019 +n44004030020 +n44004030021 +n44004031001 +n44004031002 +n44004031003 +n44004031004 +n44004031005 +n44004031006 +n44004031007 +n44004031008 +n44004031009 +n44004031010 +n44004031011 +n44004031012 +n44004031013 +n44004031014 +n44004031015 +n44004031016 +n44004031017 +n44004031018 +n44004031019 +n44004031020 +n44004031021 +n44004031022 +n44004031023 +n44004031024 +n44004032002 +n44004032001 +n44004032003 +n44004032004 +n44004032005 +n44004032007 +n44004032008 +n44004032009 +n44004032006 +n44004032010 +n44004032011 +n44004032012 +n44004032013 +n44004032014 +n44004032015 +n44004032016 +n44004032017 +n44004032019 +n44004032020 +n44004032018 +n44004032021 +n44004032022 +n44004032023 +n44004032024 +n44004032025 +n44004033001 +n44004033002 +n44004033003 +n44004033004 +n44004033005 +n44004033006 +n44004033009 +n44004033010 +n44004033011 +n44004033012 +n44004033013 +n44004033007 +n44004033008 +n44004033015 +n44004033014 +n44004033016 +n44004033017 +n44004033018 +n44004033019 +n44004033020 +n44004034002 +n44004034001 +n44004034003 +n44004034004 +n44004034005 +n44004034006 +n44004034007 +n44004034009 +n44004034008 +n44004034010 +n44004034011 +n44004034012 +n44004034013 +n44004034014 +n44004034015 +n44004034016 +n44004034017 +n44004034018 +n44004034019 +n44004034020 +n44004035001 +n44004035002 +n44004035003 +n44004035004 +n44004035005 +n44004035006 +n44004035007 +n44004035009 +n44004035008 +n44004035010 +n44004035011 +n44004035012 +n44004035013 +n44004035014 +n44004035015 +n44004036002 +n44004036001 +n44004036003 +n44004036004 +n44004036005 +n44004036006 +n44004036007 +n44004036008 +n44004036009 +n44004036010 +n44004036011 +n44004036012 +n44004036013 +n44004036014 +n44004036015 +n44004036016 +n44004036017 +n44004037001 +n44004037002 +n44004037003 +n44004037004 +n44004037005 +n44004037006 +n44004037007 +n44004037008 +n44004037009 +n44004037010 +n44004037011 +n44004037012 +n44004037013 +n44004037014 +n44005001002 +n44005001001 +n44005001003 +n44005001004 +n44005001005 +n44005001006 +n44005001007 +n44005001008 +n44005001009 +n44005001010 +n44005001011 +n44005001012 +n44005002001 +n44005002002 +n44005002003 +n44005002004 +n44005002005 +n44005002006 +n44005002007 +n44005002008 +n44005002009 +n44005002010 +n44005002011 +n44005002012 +n44005002013 +n44005002014 +n44005002015 +n44005002016 +n44005002017 +n44005002018 +n44005002019 +n44005003002 +n44005003001 +n44005003003 +n44005003004 +n44005003005 +n44005003006 +n44005003007 +n44005003008 +n44005003009 +n44005003010 +n44005003011 +n44005003012 +n44005003013 +n44005003014 +n44005003015 +n44005003016 +n44005003017 +n44005003018 +n44005003019 +n44005003020 +n44005003021 +n44005003022 +n44005003023 +n44005003024 +n44005003025 +n44005003026 +n44005004001 +n44005004002 +n44005004003 +n44005004004 +n44005004005 +n44005004006 +n44005004007 +n44005004008 +n44005004009 +n44005004010 +n44005004011 +n44005004012 +n44005004013 +n44005004014 +n44005004015 +n44005004016 +n44005004017 +n44005004018 +n44005004019 +n44005004020 +n44005004021 +n44005004022 +n44005004023 +n44005004024 +n44005004025 +n44005004026 +n44005004027 +n44005005002 +n44005005003 +n44005005004 +n44005005001 +n44005005005 +n44005005006 +n44005005007 +n44005005008 +n44005005009 +n44005005010 +n44005005011 +n44005005012 +n44005005013 +n44005005014 +n44005005015 +n44005005016 +n44005005017 +n44005006002 +n44005006001 +n44005006003 +n44005006004 +n44005006005 +n44005006006 +n44005006007 +n44005006008 +n44005006009 +n44005007002 +n44005007001 +n44005007003 +n44005007004 +n44005007005 +n44005007006 +n44005007007 +n44005007008 +n44005007009 +n44005007010 +n44005007011 +n44005007012 +n44005007013 +n44005007014 +n44005007015 +n44005008002 +n44005008001 +n44005008003 +n44005008004 +n44005008005 +n44005008006 +n44005008007 +n44005008008 +n44005008009 +n44005008010 +n44005008011 +n44005008012 +n44005008014 +n44005008013 +n44005008015 +n44005008016 +n44005008017 +n44005009002 +n44005009001 +n44005009003 +n44005009004 +n44005009005 +n44005009006 +n44005009007 +n44005009008 +n44005009009 +n44005009010 +n44005009011 +n44005009012 +n44005009013 +n44005009014 +n44005009015 +n44005009016 +n44005009017 +n44005009018 +n44005009019 +n44005009020 +n44005009021 +n44005009022 +n44005009023 +n44005009024 +n44005009025 +n44005009026 +n44005009027 +n44005010002 +n44005010001 +n44005010003 +n44005010004 +n44005010005 +n44005010006 +n44005010007 +n44005010008 +n44005010009 +n44005010011 +n44005010010 +n44005010012 +n44005010013 +n44005010014 +n44005010015 +n44005010016 +n44005010017 +n44005010018 +n44005010019 +n44005010020 +n44005010021 +n44005010022 +n44005010023 +n44005011001 +n44005011002 +n44005011003 +n44005011004 +n44005011005 +n44005011006 +n44005011007 +n44005011008 +n44005011009 +n44005011010 +n44005011011 +n44005011012 +n44005011013 +n44005011014 +n44005012002 +n44005012001 +n44005012003 +n44005012004 +n44005012005 +n44005012006 +n44005012007 +n44005012008 +n44005012009 +n44005012010 +n44005012011 +n44005012012 +n44005012013 +n44005012014 +n44005012015 +n44005012016 +n44005012017 +n44005012018 +n44005012019 +n44005012020 +n44005012021 +n44005012022 +n44005013002 +n44005013001 +n44005013003 +n44005013004 +n44005013005 +n44005013006 +n44005013007 +n44005013008 +n44005013009 +n44005013010 +n44005013011 +n44005013012 +n44005014002 +n44005014001 +n44005014003 +n44005014004 +n44005014005 +n44005014006 +n44005014007 +n44005014009 +n44005014008 +n44005014010 +n44005014011 +n44005015001 +n44005015002 +n44005015003 +n44005015004 +n44005015005 +n44005015006 +n44005015007 +n44005015008 +n44005015009 +n44005015010 +n44005015011 +n44005015012 +n44005015013 +n44005015014 +n44005015015 +n44005015016 +n44005015017 +n44005015018 +n44005015019 +n44005015020 +n44005015021 +n44005015022 +n44005015023 +n44005016002 +n44005016001 +n44005016003 +n44005016004 +n44005016005 +n44005016006 +n44005016007 +n44005016009 +n44005016008 +n44005016010 +n44005016011 +n44005016012 +n44005016013 +n44005016014 +n44005016015 +n44005016016 +n44005016017 +n44005016019 +n44005016018 +n44005017002 +n44005017001 +n44005017003 +n44005017004 +n44005017005 +n44005017006 +n44005017007 +n44005017008 +n44005017009 +n44005017010 +n44005017011 +n44005017012 +n44005017013 +n44005017014 +n44005017015 +n44005017016 +n44005018001 +n44005018002 +n44005018003 +n44005018004 +n44005018005 +n44005018006 +n44005018007 +n44005018008 +n44005018009 +n44005018010 +n44005018011 +n44005018012 +n44005018013 +n44005019002 +n44005019001 +n44005019003 +n44005019004 +n44005019005 +n44005019006 +n44005019007 +n44005019008 +n44005019009 +n44005019010 +n44005019012 +n44005019011 +n44005019013 +n44005019014 +n44005020001 +n44005020002 +n44005020003 +n44005020004 +n44005020005 +n44005020006 +n44005020007 +n44005020008 +n44005020009 +n44005020010 +n44005020011 +n44005020012 +n44005020013 +n44005020014 +n44005020015 +n44005021002 +n44005021001 +n44005021003 +n44005021004 +n44005021005 +n44005021006 +n44005021007 +n44005021008 +n44005021009 +n44005021010 +n44005021011 +n44005021013 +n44005021012 +n44005021014 +n44005021015 +n44005021016 +n44005021017 +n44005021018 +n44005021019 +n44005021020 +n44005021021 +n44005021022 +n44005021023 +n44005021024 +n44005021025 +n44005021026 +n44005021027 +n44005021028 +n44005021029 +n44005021030 +n44005021031 +n44005021032 +n44005021033 +n44005021034 +n44005021035 +n44005021036 +n44005022002 +n44005022001 +n44005022003 +n44005022004 +n44005022005 +n44005022006 +n44005022007 +n44005022008 +n44005022009 +n44005022010 +n44005022012 +n44005022011 +n44005022013 +n44005023001 +n44005023002 +n44005023005 +n44005023003 +n44005023004 +n44005023006 +n44005023007 +n44005023008 +n44005023009 +n44005023010 +n44005023011 +n44005023012 +n44005023013 +n44005023014 +n44005023015 +n44005023016 +n44005023018 +n44005023017 +n44005023019 +n44005023020 +n44005023021 +n44005024002 +n44005024001 +n44005024003 +n44005024004 +n44005024005 +n44005024006 +n44005024008 +n44005024007 +n44005024009 +n44005024010 +n44005024011 +n44005024012 +n44005024013 +n44005024014 +n44005024015 +n44005024016 +n44005024017 +n44005024019 +n44005024018 +n44005024020 +n44005024021 +n44005025002 +n44005025001 +n44005025003 +n44005025004 +n44005025005 +n44005025006 +n44005025007 +n44005025008 +n44005025009 +n44005025010 +n44005025011 +n44005025012 +n44005025013 +n44005025014 +n44005025015 +n44005025019 +n44005025016 +n44005025017 +n44005025018 +n44005025020 +n44005025021 +n44005025022 +n44005025023 +n44005026001 +n44005026002 +n44005026003 +n44005026004 +n44005026005 +n44005026006 +n44005026007 +n44005026008 +n44005026009 +n44005026010 +n44005026011 +n44005026012 +n44005026014 +n44005026013 +n44005026015 +n44005026016 +n44005026017 +n44005026018 +n44005027002 +n44005027001 +n44005027003 +n44005027004 +n44005027005 +n44005027006 +n44005027007 +n44005027008 +n44005027009 +n44005027010 +n44005027011 +n44005027012 +n44005028001 +n44005028002 +n44005028003 +n44005028004 +n44005028005 +n44005028006 +n44005028007 +n44005028008 +n44005028009 +n44005028010 +n44005028011 +n44005028012 +n44005028013 +n44005028014 +n44005028015 +n44005028016 +n44005028017 +n44005028018 +n44005028019 +n44005028020 +n44005028021 +n44005028022 +n44005028023 +n44005028024 +n44005028025 +n44005028026 +n44005028027 +n44005028028 +n44005029002 +n44005029001 +n44005029003 +n44005029004 +n44005029005 +n44005029006 +n44005029007 +n44005029009 +n44005029008 +n44005029010 +n44005029011 +n44005029012 +n44005029013 +n44005030001 +n44005030002 +n44005030003 +n44005030004 +n44005030005 +n44005030006 +n44005030007 +n44005030008 +n44005030009 +n44005030010 +n44005030011 +n44005030012 +n44005030013 +n44005031001 +n44005031002 +n44005031003 +n44005031004 +n44005031005 +n44005031006 +n44005031007 +n44005031008 +n44005031009 +n44005031010 +n44005031011 +n44005031012 +n44005031013 +n44005031014 +n44005031015 +n44005031016 +n44005031017 +n44005031018 +n44005032001 +n44005032002 +n44005032003 +n44005032004 +n44005032005 +n44005032006 +n44005032007 +n44005032008 +n44005032009 +n44005032010 +n44005032011 +n44005032012 +n44005032013 +n44005032014 +n44005032015 +n44005032016 +n44005032017 +n44005032018 +n44005032019 +n44005033002 +n44005033001 +n44005033003 +n44005033004 +n44005033005 +n44005033006 +n44005033007 +n44005033008 +n44005034002 +n44005034001 +n44005034003 +n44005034004 +n44005034005 +n44005034006 +n44005034007 +n44005034008 +n44005034009 +n44005034010 +n44005034011 +n44005034012 +n44005034013 +n44005034014 +n44005034015 +n44005034016 +n44005034017 +n44005034018 +n44005034019 +n44005034020 +n44005035002 +n44005035001 +n44005035003 +n44005035004 +n44005035005 +n44005035006 +n44005035007 +n44005035008 +n44005035009 +n44005035010 +n44005035011 +n44005035012 +n44005035013 +n44005035015 +n44005035014 +n44005036002 +n44005036001 +n44005036003 +n44005036004 +n44005036005 +n44005036006 +n44005036007 +n44005036008 +n44005036009 +n44005036010 +n44005036011 +n44005036012 +n44005036013 +n44005036014 +n44005036015 +n44005036016 +n44005036017 +n44005036018 +n44005036019 +n44005036020 +n44005036021 +n44005036022 +n44005036023 +n44005036024 +n44005036025 +n44005036026 +n44005036027 +n44005036028 +n44005036029 +n44005037001 +n44005037002 +n44005037003 +n44005037004 +n44005037005 +n44005037006 +n44005037007 +n44005037008 +n44005037009 +n44005037010 +n44005037011 +n44005037012 +n44005037013 +n44005037014 +n44005037015 +n44005037016 +n44005037017 +n44005037018 +n44005037019 +n44005037020 +n44005037021 +n44005037022 +n44005037023 +n44005037024 +n44005038001 +n44005038002 +n44005038003 +n44005038004 +n44005038005 +n44005038006 +n44005038007 +n44005038008 +n44005038009 +n44005038010 +n44005038011 +n44005038012 +n44005038013 +n44005038014 +n44005038015 +n44005038016 +n44005038017 +n44005038018 +n44005038019 +n44005038020 +n44005038021 +n44005038022 +n44005038023 +n44005038024 +n44005038025 +n44005038026 +n44005039002 +n44005039001 +n44005039003 +n44005039004 +n44005039005 +n44005039006 +n44005039007 +n44005039008 +n44005039009 +n44005039010 +n44005039011 +n44005039012 +n44005039013 +n44005039014 +n44005039016 +n44005039015 +n44005039017 +n44005040001 +n44005040002 +n44005040003 +n44005040004 +n44005040005 +n44005040006 +n44005040007 +n44005040008 +n44005040009 +n44005040010 +n44005040011 +n44005040012 +n44005040013 +n44005040014 +n44005040015 +n44005041002 +n44005041003 +n44005041001 +n44005041004 +n44005041005 +n44005041006 +n44005041007 +n44005041008 +n44005041009 +n44005041010 +n44005041011 +n44005041012 +n44005041013 +n44005041014 +n44005041015 +n44005042002 +n44005042001 +n44005042003 +n44005042004 +n44005042005 +n44005042006 +n44005042007 +n44005042008 +n44005042009 +n44005042010 +n44005042011 +n44005042012 +n44005042013 +n44005042014 +n44005042015 +n44005042016 +n44005042017 +n44006001002 +n44006001001 +n44006001003 +n44006001004 +n44006001005 +n44006001006 +n44006001007 +n44006001008 +n44006001009 +n44006001010 +n44006001011 +n44006001012 +n44006001013 +n44006001014 +n44006001015 +n44006001016 +n44006001017 +n44006001018 +n44006001019 +n44006001020 +n44006001021 +n44006001022 +n44006001023 +n44006001024 +n44006001025 +n44006002002 +n44006002003 +n44006002004 +n44006002001 +n44006002005 +n44006002006 +n44006002007 +n44006002008 +n44006002009 +n44006002010 +n44006002011 +n44006002012 +n44006002013 +n44006002014 +n44006002015 +n44006002016 +n44006002017 +n44006002018 +n44006002019 +n44006002020 +n44006003002 +n44006003003 +n44006003001 +n44006003004 +n44006003005 +n44006003006 +n44006003007 +n44006003008 +n44006003009 +n44006003010 +n44006003011 +n44006003012 +n44006003013 +n44006003014 +n44006003015 +n44006003016 +n44006003017 +n44006003018 +n44006004002 +n44006004001 +n44006004003 +n44006004004 +n44006004005 +n44006004006 +n44006004007 +n44006004008 +n44006004009 +n44006004010 +n44006005001 +n44006005002 +n44006005003 +n44006005004 +n44006005005 +n44006005006 +n44006005007 +n44006005008 +n44006005009 +n44006005010 +n44006005011 +n44006005012 +n44006005013 +n44006005014 +n44006005015 +n44006005016 +n44006005017 +n44006005018 +n44006005019 +n44006005020 +n44006005021 +n44006005022 +n44006005023 +n44006005024 +n44006005025 +n44006005026 +n44006005027 +n44006005028 +n44006005029 +n44006005030 +n44006005031 +n44006006001 +n44006006002 +n44006006003 +n44006006004 +n44006006005 +n44006006006 +n44006006007 +n44006006008 +n44006006009 +n44006006010 +n44006006011 +n44006007001 +n44006007002 +n44006007003 +n44006007004 +n44006007005 +n44006007006 +n44006007007 +n44006007008 +n44006007009 +n44006007010 +n44006007011 +n44006007012 +n44006007013 +n44006007014 +n44006007015 +n44006007017 +n44006007016 +n44006007018 +n44006007019 +n44006007020 +n44006007021 +n44006007022 +n44006007023 +n44006008002 +n44006008001 +n44006008003 +n44006008004 +n44006008005 +n44006008006 +n44006008007 +n44006008008 +n44006008009 +n44006008010 +n44006008011 +n44006008012 +n44006008013 +n44006008014 +n44006009002 +n44006009001 +n44006009003 +n44006009004 +n44006009005 +n44006009006 +n44006009007 +n44006009008 +n44006009009 +n44006009010 +n44006009011 +n44006009012 +n44006009013 +n44006009014 +n44006009015 +n44006009016 +n44006009017 +n44006009018 +n44006009019 +n44006009020 +n44006009021 +n44006009022 +n44006009023 +n44006010001 +n44006010002 +n44006010003 +n44006010004 +n44006010005 +n44006010006 +n44006010007 +n44006010008 +n44006010009 +n44006010010 +n44006010011 +n44006011001 +n44006011002 +n44006011003 +n44006011004 +n44006011005 +n44006011006 +n44006011007 +n44006011008 +n44006011009 +n44006011010 +n44006011011 +n44006011012 +n44006011013 +n44006011014 +n44006011015 +n44006012002 +n44006012001 +n44006012003 +n44006012004 +n44006012005 +n44006012006 +n44006012007 +n44006012008 +n44006012009 +n44006012010 +n44006012011 +n44006012012 +n44006012013 +n44006012014 +n44006012015 +n44006012016 +n44006012017 +n44006012018 +n44006012019 +n44006013002 +n44006013001 +n44006013003 +n44006013004 +n44006013005 +n44006013006 +n44006013007 +n44006013008 +n44006013009 +n44006013010 +n44006013011 +n44006013012 +n44006013013 +n44006013014 +n44006013015 +n44006013016 +n44006013017 +n44006013018 +n44006013019 +n44006013020 +n44006014002 +n44006014001 +n44006014003 +n44006014004 +n44006014005 +n44006014006 +n44006014007 +n44006014008 +n44006014009 +n44006014010 +n44006014011 +n44006014012 +n44006014013 +n44006014014 +n44006014015 +n44006014016 +n44006014017 +n44006014018 +n44006014019 +n44006014020 +n44006014021 +n44006015001 +n44006015002 +n44006015003 +n44006015004 +n44006015005 +n44006015006 +n44006015007 +n44006015008 +n44006015009 +n44006015010 +n44006015011 +n44006015012 +n44006015013 +n44006015014 +n44006015015 +n44006015016 +n44006015017 +n44007001002 +n44007001001 +n44007001003 +n44007001004 +n44007001005 +n44007001006 +n44007001007 +n44007001008 +n44007002002 +n44007002001 +n44007002003 +n44007002004 +n44007002005 +n44007002006 +n44007002007 +n44007002008 +n44007002009 +n44007002010 +n44007002011 +n44007002012 +n44007002013 +n44007002014 +n44007002015 +n44007002016 +n44007002017 +n44007002018 +n44007002019 +n44007002020 +n44007002021 +n44007002022 +n44007002023 +n44007002024 +n44007002025 +n44007002026 +n44007002027 +n44007003001 +n44007003002 +n44007003003 +n44007003004 +n44007003005 +n44007003006 +n44007003007 +n44007003008 +n44007003009 +n44007003010 +n44007003011 +n44007003012 +n44007003013 +n44007003014 +n44007003015 +n44007003016 +n44007003017 +n44007003018 +n44007003020 +n44007003019 +n44007003021 +n44007003022 +n44007004001 +n44007004002 +n44007004003 +n44007004004 +n44007004005 +n44007004006 +n44007004007 +n44007004008 +n44007004009 +n44007004010 +n44007004011 +n44007004012 +n44007004013 +n44007004014 +n44007004015 +n44007004016 +n44007004017 +n44007004018 +n44007004019 +n44007004020 +n44007004021 +n44007004022 +n44007004023 +n44007004024 +n44007004025 +n44007004026 +n44007005001 +n44007005002 +n44007005003 +n44007005004 +n44007005005 +n44007005006 +n44007005007 +n44007005008 +n44007005009 +n44007005010 +n44007005011 +n44007005012 +n44007005013 +n44007005014 +n44007005015 +n44007005016 +n44007005017 +n44007005018 +n44007005019 +n44007005020 +n44007005021 +n44007005022 +n44007005023 +n44007005024 +n44007005025 +n44007005026 +n44007005027 +n44007006002 +n44007006001 +n44007006003 +n44007006004 +n44007006005 +n44007006006 +n44007006007 +n44007006008 +n44007006009 +n44007006010 +n44007006011 +n44007006012 +n44007006013 +n44007006014 +n44007006015 +n44007006016 +n44007006018 +n44007006019 +n44007006017 +n44007006020 +n44007006021 +n44007007001 +n44007007002 +n44007007003 +n44007007005 +n44007007004 +n44007007006 +n44007007007 +n44007007008 +n44007007009 +n44007007010 +n44007007011 +n44007007012 +n44007007013 +n44007007014 +n44007007015 +n44007007016 +n44007007017 +n44007007018 +n44007007019 +n44007007020 +n44007007021 +n44007007022 +n44007008001 +n44007008002 +n44007008003 +n44007008004 +n44007008005 +n44007008006 +n44007008007 +n44007008008 +n44007008009 +n44007008010 +n44007008011 +n44007008012 +n44007008013 +n44007008014 +n44007008015 +n44007008016 +n44007008017 +n44007008018 +n44007008019 +n44007008020 +n44007008021 +n44007008022 +n44007008023 +n44007008024 +n44007008025 +n44007008026 +n44007009001 +n44007009002 +n44007009003 +n44007009004 +n44007009005 +n44007009006 +n44007009007 +n44007009008 +n44007009009 +n44007009010 +n44007009011 +n44007009012 +n44007009013 +n44007009014 +n44007009015 +n44007010001 +n44007010002 +n44007010003 +n44007010004 +n44007010005 +n44007010006 +n44007010007 +n44007010008 +n44007010009 +n44007010010 +n44007010011 +n44007010012 +n44007010013 +n44007010014 +n44007010015 +n44007010016 +n44007010017 +n44007010018 +n44007010019 +n44007010020 +n44007010021 +n44007010022 +n44007010023 +n44007010024 +n44007010025 +n44007010026 +n44007010027 +n44007010028 +n44007010029 +n44007011002 +n44007011001 +n44007011003 +n44007011004 +n44007011005 +n44007011006 +n44007011007 +n44007011008 +n44007011009 +n44007011010 +n44007011011 +n44007011012 +n44007011013 +n44007011014 +n44007011015 +n44007011016 +n44007011017 +n44007011018 +n44007011019 +n44007012002 +n44007012003 +n44007012001 +n44007012004 +n44007012005 +n44007012006 +n44007012007 +n44007012008 +n44007012009 +n44007012010 +n44007012011 +n44007012012 +n44007013001 +n44007013002 +n44007013003 +n44007013004 +n44007013005 +n44007013006 +n44007013007 +n44007013008 +n44007013009 +n44007013010 +n44007013011 +n44007013012 +n44007013013 +n44007013014 +n44007013015 +n44007013016 +n44007013017 +n44007014002 +n44007014001 +n44007014003 +n44007014004 +n44007014005 +n44007014006 +n44007014007 +n44007014008 +n44007014009 +n44007014010 +n44007014011 +n44007014012 +n44007014013 +n44007014014 +n44007014015 +n44007014016 +n44007015001 +n44007015002 +n44007015003 +n44007015004 +n44007015005 +n44007015006 +n44007015007 +n44007015008 +n44007015009 +n44007015010 +n44007015011 +n44007015012 +n44007016001 +n44007016002 +n44007016003 +n44007016004 +n44007016005 +n44007016006 +n44007016007 +n44007016008 +n44007016009 +n44007016010 +n44007016011 +n44007016012 +n44007016013 +n44007016014 +n44007016015 +n44007016016 +n44007016017 +n44007016018 +n44007016019 +n44007016020 +n44007017002 +n44007017001 +n44007017003 +n44007017004 +n44007017005 +n44007017006 +n44007017007 +n44007017008 +n44007017009 +n44007017010 +n44007017011 +n44007017012 +n44007017013 +n44007017015 +n44007017016 +n44007017014 +n44007017017 +n44007017018 +n44007017019 +n44007017020 +n44007018001 +n44007018002 +n44007018003 +n44007018006 +n44007018007 +n44007018004 +n44007018005 +n44007018008 +n44007018009 +n44007018010 +n44007018011 +n44007018012 +n44007019001 +n44007019002 +n44007019003 +n44007019004 +n44007019005 +n44007019006 +n44007019007 +n44007019008 +n44007019009 +n44007019010 +n44007019011 +n44007019012 +n44007019014 +n44007019013 +n44007019015 +n44007019016 +n44007019017 +n44007019018 +n44007020001 +n44007020002 +n44007020003 +n44007020004 +n44007020005 +n44007020006 +n44007020007 +n44007020008 +n44007020009 +n44007020010 +n44007020011 +n44007020012 +n44007020013 +n44007020014 +n44007020015 +n44007020016 +n44007020017 +n44007020018 +n44007020019 +n44007021002 +n44007021001 +n44007021003 +n44007021004 +n44007021005 +n44007021006 +n44007021007 +n44007021008 +n44007021009 +n44007021010 +n44007021011 +n44007021012 +n44007021013 +n44007021014 +n44007022001 +n44007022002 +n44007022003 +n44007022004 +n44007022005 +n44007022006 +n44007022008 +n44007022007 +n44007022009 +n44007022010 +n44007022011 +n44007022012 +n44007022013 +n44007022014 +n44007023002 +n44007023001 +n44007023003 +n44007023004 +n44007023005 +n44007023006 +n44007023007 +n44007023008 +n44007023009 +n44007023010 +n44007023011 +n44007023012 +n44007023013 +n44007023014 +n44007023015 +n44007023016 +n44007023017 +n44007023018 +n44007024001 +n44007024002 +n44007024003 +n44007024004 +n44007024005 +n44007024006 +n44007024007 +n44007024008 +n44007024009 +n44007024010 +n44007024011 +n44007024012 +n44007024013 +n44007025002 +n44007025001 +n44007025003 +n44007025004 +n44007025005 +n44007025006 +n44007025007 +n44007025008 +n44007025009 +n44007025010 +n44007025011 +n44007025012 +n44007025013 +n44007025014 +n44007025016 +n44007025015 +n44007025017 +n44007025018 +n44007026002 +n44007026001 +n44007026003 +n44007026004 +n44007026005 +n44007026006 +n44007026007 +n44007026008 +n44007026009 +n44007026010 +n44007026011 +n44007026012 +n44007026013 +n44007026014 +n44007026015 +n44007026016 +n44007026017 +n44007026018 +n44007026019 +n44007026020 +n44007027002 +n44007027001 +n44007027003 +n44007027004 +n44007027005 +n44007027006 +n44007027007 +n44007027008 +n44007027009 +n44007027010 +n44007027011 +n44007027012 +n44007027013 +n44007027014 +n44007027015 +n44007027016 +n44007028001 +n44007028002 +n44007028003 +n44007028004 +n44007028005 +n44007028006 +n44007028007 +n44007028008 +n44007028009 +n44007028010 +n44007028011 +n44007029002 +n44007029001 +n44007029003 +n44007029004 +n44007029005 +n44007029006 +n44007029007 +n44007029008 +n44007029009 +n44007029010 +n44007029011 +n44007029012 +n44007029013 +n44007029014 +n44007029015 +n44007029016 +n44007029017 +n44007030001 +n44007030002 +n44007030003 +n44007030004 +n44007030005 +n44007030006 +n44007030007 +n44007030008 +n44007030009 +n44007030010 +n44007030011 +n44007030012 +n44007030013 +n44007030014 +n44007030015 +n44007030016 +n44007030017 +n44007031002 +n44007031001 +n44007031003 +n44007031004 +n44007031005 +n44007031006 +n44007031007 +n44007031009 +n44007031008 +n44007031010 +n44007031011 +n44007031012 +n44007031013 +n44007031014 +n44007032001 +n44007032002 +n44007032003 +n44007032004 +n44007032005 +n44007032006 +n44007032007 +n44007032008 +n44007032009 +n44007032010 +n44007032011 +n44007032012 +n44007032013 +n44007032015 +n44007032014 +n44007032016 +n44007032017 +n44007032018 +n44007032019 +n44007032020 +n44007033002 +n44007033001 +n44007033003 +n44007033004 +n44007033005 +n44007033006 +n44007033007 +n44007033008 +n44007033009 +n44007033010 +n44007033011 +n44007033013 +n44007033012 +n44007033014 +n44007033015 +n44007033016 +n44007033017 +n44007033018 +n44007033019 +n44007033020 +n44007034001 +n44007034002 +n44007034003 +n44007034004 +n44007034005 +n44007034006 +n44007034007 +n44007034008 +n44007034009 +n44007034010 +n44007034011 +n44007034012 +n44007034013 +n44007034014 +n44007034015 +n44007034016 +n44007034017 +n44007034018 +n44007034019 +n44007034020 +n44007034021 +n44007034022 +n44007034023 +n44007034024 +n44007034025 +n44007034026 +n44007035001 +n44007035002 +n44007035003 +n44007035004 +n44007035005 +n44007035006 +n44007035007 +n44007035008 +n44007035009 +n44007035010 +n44007035011 +n44007035012 +n44007035013 +n44007035014 +n44007035015 +n44007035016 +n44007035017 +n44007035018 +n44007035019 +n44007035020 +n44007035021 +n44007035022 +n44007035023 +n44007035024 +n44007035025 +n44007035026 +n44007035027 +n44007035028 +n44007035029 +n44007036001 +n44007036002 +n44007036003 +n44007036004 +n44007036005 +n44007036006 +n44007036007 +n44007036008 +n44007036009 +n44007036010 +n44007036011 +n44007036012 +n44007036013 +n44007036014 +n44007036015 +n44007036016 +n44007036017 +n44007036018 +n44007036019 +n44007036020 +n44007037001 +n44007037002 +n44007037003 +n44007037004 +n44007037005 +n44007037006 +n44007037007 +n44007037008 +n44007037009 +n44007037010 +n44007037011 +n44007037012 +n44007037013 +n44007037014 +n44007037015 +n44007037016 +n44007037017 +n44007037018 +n44007037019 +n44007037020 +n44007038001 +n44007038002 +n44007038003 +n44007038004 +n44007038005 +n44007038006 +n44007038007 +n44007038008 +n44007038009 +n44007038010 +n44007038011 +n44007038012 +n44007038013 +n44007038014 +n44007038015 +n44007038016 +n44007038017 +n44007038018 +n44007038019 +n44007038020 +n44007038021 +n44007038022 +n44007038023 +n44007038024 +n44007038025 +n44007038026 +n44007038027 +n44007038028 +n44007038029 +n44007038030 +n44007039001 +n44007039002 +n44007039003 +n44007039004 +n44007039005 +n44007039006 +n44007039007 +n44007039008 +n44007039009 +n44007039010 +n44007039011 +n44007039012 +n44007039013 +n44007039014 +n44007039015 +n44007039016 +n44007039017 +n44007039018 +n44007040001 +n44007040002 +n44007040003 +n44007040004 +n44007040005 +n44007040006 +n44007040007 +n44007040008 +n44007040009 +n44007040011 +n44007040010 +n44007040012 +n44007040013 +n44007040014 +n44007040015 +n44007040016 +n44007040017 +n44007040018 +n44007040019 +n44007040020 +n44007040021 +n44007040022 +n44007040023 +n44007040024 +n44007041001 +n44007041002 +n44007041003 +n44007041004 +n44007041005 +n44007041006 +n44007041007 +n44007041008 +n44007041009 +n44007041010 +n44007041011 +n44007041012 +n44007041013 +n44007041014 +n44007041015 +n44007041016 +n44007041017 +n44007041018 +n44007041019 +n44007042002 +n44007042001 +n44007042003 +n44007042004 +n44007042005 +n44007042006 +n44007042007 +n44007042008 +n44007042009 +n44007042010 +n44007042011 +n44007042012 +n44007042013 +n44007042014 +n44007042015 +n44007042016 +n44007042017 +n44007042018 +n44007042019 +n44007042020 +n44007042021 +n44007042022 +n44007042023 +n44007042024 +n44007042025 +n44007042026 +n44007042027 +n44007042028 +n44007042029 +n44007042030 +n44007042031 +n44007043001 +n44007043002 +n44007043003 +n44007043004 +n44007043005 +n44007043006 +n44007043007 +n44007043008 +n44007043009 +n44007043010 +n44007043011 +n44007043012 +n44007043013 +n44007043014 +n44007043015 +n44007043016 +n44007043017 +n44007043018 +n44007043019 +n44007043020 +n44007043021 +n44007043022 +n44007043023 +n44007044001 +n44007044002 +n44007044003 +n44007044004 +n44007044005 +n44007044006 +n44007044007 +n44007044008 +n44007044009 +n44007044010 +n44007044011 +n44007044012 +n44007044013 +n44007044014 +n44007044015 +n44007044016 +n44007044017 +n44007044018 +n44007044019 +n44007044020 +n44007044021 +n44007044022 +n44007044023 +n44007044024 +n44007045001 +n44007045002 +n44007045003 +n44007045004 +n44007045005 +n44007045006 +n44007045007 +n44007045008 +n44007045009 +n44007045010 +n44007045011 +n44007045012 +n44007045013 +n44007045014 +n44007045015 +n44007045016 +n44007045017 +n44007045018 +n44007045019 +n44007045020 +n44007045021 +n44007045022 +n44007045023 +n44007045024 +n44007045025 +n44007045026 +n44007045027 +n44007046001 +n44007046002 +n44007046003 +n44007046004 +n44007046005 +n44007046006 +n44007046007 +n44007046008 +n44007046009 +n44007046010 +n44007046011 +n44007046012 +n44007046013 +n44007047002 +n44007047001 +n44007047003 +n44007047004 +n44007047005 +n44007048001 +n44007048002 +n44007048003 +n44007048004 +n44007048005 +n44007048006 +n44007048007 +n44007048008 +n44007048009 +n44007048010 +n44007048011 +n44007049001 +n44007049002 +n44007049003 +n44007049004 +n44007049006 +n44007049005 +n44007049007 +n44007049008 +n44007049009 +n44007049010 +n44007049011 +n44007049012 +n44007049013 +n44007049014 +n44007049015 +n44007049016 +n44007049017 +n44007049018 +n44007049019 +n44007049020 +n44007049021 +n44007049022 +n44007049023 +n44007050001 +n44007050002 +n44007050003 +n44007050004 +n44007050005 +n44007050006 +n44007050007 +n44007051001 +n44007051002 +n44007051003 +n44007051004 +n44007051005 +n44007051006 +n44007051007 +n44007051008 +n44007051009 +n44007051010 +n44007051011 +n44007051012 +n44007051013 +n44007051014 +n44007051015 +n44007051016 +n44007051017 +n44007051018 +n44007051019 +n44007051020 +n44007052001 +n44007052002 +n44007052003 +n44007052004 +n44007052005 +n44007052006 +n44007052007 +n44007052008 +n44007052009 +n44007052010 +n44007052011 +n44007052012 +n44007052013 +n44007052014 +n44007052015 +n44007052016 +n44007052017 +n44007052018 +n44007052019 +n44007052020 +n44007052021 +n44007052022 +n44007052023 +n44007052024 +n44007053001 +n44007053002 +n44007053003 +n44007053004 +n44007053005 +n44007053006 +n44007053007 +n44007053008 +n44007053009 +n44007053010 +n44007054002 +n44007054001 +n44007054003 +n44007054004 +n44007054005 +n44007054006 +n44007054007 +n44007054008 +n44007054009 +n44007054010 +n44007054011 +n44007054012 +n44007054013 +n44007055002 +n44007055001 +n44007055003 +n44007055004 +n44007055005 +n44007055006 +n44007055007 +n44007055008 +n44007055009 +n44007055010 +n44007055011 +n44007055012 +n44007055013 +n44007055014 +n44007055015 +n44007055016 +n44007055017 +n44007055018 +n44007055019 +n44007056001 +n44007056002 +n44007056003 +n44007056004 +n44007056005 +n44007056006 +n44007056007 +n44007056008 +n44007056009 +n44007056010 +n44007056011 +n44007056012 +n44007056013 +n44007056014 +n44007056016 +n44007056017 +n44007056015 +n44007057002 +n44007057001 +n44007057003 +n44007057004 +n44007057005 +n44007057006 +n44007057007 +n44007057008 +n44007057009 +n44007057010 +n44007057011 +n44007057012 +n44007057013 +n44007058001 +n44007058002 +n44007058003 +n44007058004 +n44007058005 +n44007058006 +n44007058007 +n44007058008 +n44007058009 +n44007058010 +n44007058011 +n44007058012 +n44007058013 +n44007058014 +n44007058015 +n44007058016 +n44007058017 +n44007058018 +n44007058019 +n44007059001 +n44007059002 +n44007059003 +n44007059004 +n44007059005 +n44007059006 +n44007059007 +n44007059008 +n44007059009 +n44007059010 +n44007059011 +n44007059012 +n44007059013 +n44007060002 +n44007060001 +n44007060003 +n44007060004 +n44007060005 +n44007060006 +n44007060007 +n44007060008 +n44007060009 +n44007060010 +n44007060011 +n44007060012 +n44007060013 +n44007060014 +n44007060015 +n44007060016 +n44007060017 +n44007060018 +n44008001002 +n44008001001 +n44008001003 +n44008001004 +n44008001005 +n44008001006 +n44008001007 +n44008001009 +n44008001008 +n44008001010 +n44008001011 +n44008001012 +n44008001013 +n44008001014 +n44008001015 +n44008001016 +n44008001017 +n44008001018 +n44008001019 +n44008001020 +n44008001021 +n44008001023 +n44008001022 +n44008001024 +n44008001025 +n44008001026 +n44008001027 +n44008001028 +n44008001029 +n44008001030 +n44008001031 +n44008001032 +n44008001033 +n44008001034 +n44008002002 +n44008002001 +n44008002003 +n44008002004 +n44008002005 +n44008002006 +n44008002007 +n44008002008 +n44008002009 +n44008002010 +n44008002011 +n44008002012 +n44008003002 +n44008003001 +n44008003003 +n44008003004 +n44008003005 +n44008003006 +n44008003007 +n44008003008 +n44008003009 +n44008003010 +n44008003011 +n44008003012 +n44008003013 +n44008003014 +n44008003015 +n44008003016 +n44008003017 +n44008004003 +n44008004002 +n44008004001 +n44008004004 +n44008004005 +n44008004006 +n44008004007 +n44008004008 +n44008005002 +n44008005001 +n44008005003 +n44008005004 +n44008005005 +n44008005006 +n44008005007 +n44008005008 +n44008005009 +n44008005010 +n44008005011 +n44008005012 +n44008006002 +n44008006001 +n44008006003 +n44008006004 +n44008006005 +n44008006006 +n44008006007 +n44008006008 +n44008006009 +n44008006010 +n44008006011 +n44008006012 +n44008006013 +n44008006014 +n44008006015 +n44008006016 +n44008006017 +n44008006018 +n44008006019 +n44008006020 +n44008007002 +n44008007001 +n44008007003 +n44008007004 +n44008007005 +n44008007006 +n44008007007 +n44008007008 +n44008007009 +n44008007010 +n44008007012 +n44008007011 +n44008007013 +n44008007014 +n44008007015 +n44008007016 +n44008008002 +n44008008001 +n44008008003 +n44008008004 +n44008008005 +n44008008006 +n44008008007 +n44008008008 +n44008009002 +n44008009001 +n44008009003 +n44008009004 +n44008009005 +n44008009006 +n44008009007 +n44008009008 +n44008009009 +n44008009010 +n44008009011 +n44008009012 +n44008009013 +n44008009014 +n44008009015 +n44008009016 +n44008009017 +n44008009018 +n44008009019 +n44008009021 +n44008009020 +n44008010001 +n44008010002 +n44008010003 +n44008010004 +n44008010005 +n44008010006 +n44008010007 +n44008010008 +n44008010009 +n44008010010 +n44008010011 +n44008010012 +n44008010013 +n44008010014 +n44008010015 +n44008010016 +n44008010017 +n44008011002 +n44008011001 +n44008011003 +n44008011004 +n44008011005 +n44008011006 +n44008011007 +n44008011008 +n44008011009 +n44008011010 +n44008011011 +n44008012002 +n44008012001 +n44008012003 +n44008012004 +n44008012005 +n44008012006 +n44008012007 +n44008012008 +n44008012009 +n44008012010 +n44008012011 +n44008012012 +n44008012013 +n44008012014 +n44008012015 +n44008012016 +n44008012017 +n44008012019 +n44008012018 +n44008012020 +n44008012021 +n44008013002 +n44008013001 +n44008013003 +n44008013004 +n44008013005 +n44008013006 +n44008013007 +n44008013008 +n44008013009 +n44008013010 +n44008013011 +n44008013012 +n44008013013 +n44008013014 +n44008013015 +n44008013016 +n44008013017 +n44008013018 +n44008013019 +n44008013020 +n44008014002 +n44008014003 +n44008014004 +n44008014005 +n44008014006 +n44008014001 +n44008014007 +n44008014008 +n44008014009 +n44008014010 +n44008014011 +n44008014012 +n44008014013 +n44008014014 +n44008014015 +n44008014016 +n44008014017 +n44008014018 +n44008014019 +n44008014020 +n44008015001 +n44008015002 +n44008015003 +n44008015004 +n44008015005 +n44008015006 +n44008015007 +n44008015008 +n44008015009 +n44008016002 +n44008016001 +n44008016003 +n44008016007 +n44008016004 +n44008016005 +n44008016006 +n44008016009 +n44008016008 +n44008016010 +n44008016011 +n44008016012 +n44008016013 +n44008016014 +n44008016015 +n44008016016 +n44008016017 +n44008017001 +n44008017002 +n44008017003 +n44008017004 +n44008017005 +n44008017006 +n44008017007 +n44008017008 +n44008017009 +n44008017010 +n44008018002 +n44008018003 +n44008018004 +n44008018001 +n44008018005 +n44008018006 +n44008018007 +n44008018008 +n44008018009 +n44008018010 +n44008018011 +n44008018012 +n44008018013 +n44008018014 +n44008018015 +n44008018016 +n44008018017 +n44008018018 +n44008019001 +n44008019002 +n44008019003 +n44008019004 +n44008019005 +n44008019006 +n44008019007 +n44008019009 +n44008019008 +n44008019010 +n44008019011 +n44008019012 +n44008019013 +n44008019014 +n44008019015 +n44008020002 +n44008020001 +n44008020003 +n44008020004 +n44008020005 +n44008020006 +n44008020007 +n44008020008 +n44008020009 +n44008020010 +n44008020011 +n44008020012 +n44008020013 +n44008020014 +n44008020019 +n44008020015 +n44008020016 +n44008020017 +n44008020018 +n44008020020 +n44008020021 +n44008020022 +n44008021001 +n44008021002 +n44008021003 +n44008021004 +n44008021005 +n44008021006 +n44008021007 +n44008021008 +n44008021009 +n44008021010 +n44008021012 +n44008021011 +n44008021013 +n44008021014 +n44008021015 +n44008021016 +n44008021017 +n44008021018 +n44008021019 +n44008021020 +n44008022002 +n44008022001 +n44008022003 +n44008022004 +n44008022005 +n44008022006 +n44008022007 +n44008022008 +n44008022009 +n44008022010 +n44008022011 +n44008022013 +n44008022012 +n44008022014 +n44008022015 +n44008022016 +n44008022017 +n44008022018 +n44008022019 +n44008022020 +n44008023002 +n44008023001 +n44008023003 +n44008023004 +n44008023005 +n44008023006 +n44008023007 +n44008023009 +n44008023010 +n44008023008 +n44008024002 +n44008024001 +n44008024003 +n44008024004 +n44008024005 +n44008024006 +n44008024007 +n44008024008 +n44008024009 +n44008024010 +n44008024011 +n44008024012 +n44008024013 +n44008024015 +n44008024016 +n44008024017 +n44008024014 +n44008024018 +n44008024019 +n44008025002 +n44008025003 +n44008025001 +n44008025004 +n44008025005 +n44008025006 +n44008025007 +n44008025008 +n44008025009 +n44008025010 +n44008025011 +n44008025012 +n44008025013 +n44008025015 +n44008025014 +n44008025016 +n44008025017 +n44008025018 +n44008025019 +n44008026002 +n44008026001 +n44008026003 +n44008026004 +n44008026005 +n44008026006 +n44008026007 +n44008026008 +n44008026009 +n44008026010 +n44008026011 +n44008026012 +n44008026013 +n44008026014 +n44008026015 +n44008026016 +n44008026017 +n44008026018 +n44008026019 +n44008026020 +n44008026021 +n44008026022 +n44008026023 +n44008026024 +n44008027001 +n44008027002 +n44008027003 +n44008027004 +n44008027005 +n44008027006 +n44008027007 +n44008027008 +n44008027009 +n44008027010 +n44008027011 +n44008027012 +n44008027013 +n44008027014 +n44008027015 +n44008027016 +n44008027017 +n44008027018 +n44008027019 +n44008027020 +n44008027021 +n44008027022 +n44008027023 +n44008027024 +n44008028001 +n44008028002 +n44008028003 +n44008028004 +n44008028005 +n44008028006 +n44008028007 +n44008028008 +n44008028009 +n44008028010 +n44008028011 +n44008028012 +n44008028013 +n44008028014 +n44008029002 +n44008029001 +n44008029003 +n44008029004 +n44008029005 +n44008029006 +n44008029007 +n44008029008 +n44008029009 +n44008029010 +n44008029011 +n44008029012 +n44008030002 +n44008030001 +n44008030003 +n44008030004 +n44008030005 +n44008030006 +n44008030007 +n44008030008 +n44008030009 +n44008030010 +n44008030011 +n44008030012 +n44008030013 +n44008030014 +n44008030015 +n44008030016 +n44008030017 +n44008031002 +n44008031001 +n44008031003 +n44008031005 +n44008031006 +n44008031004 +n44008031007 +n44008031008 +n44008031009 +n44008031010 +n44008031011 +n44008031012 +n44008031014 +n44008031013 +n44008031015 +n44008031016 +n44008031017 +n44008031018 +n44008031019 +n44008031020 +n44008032002 +n44008032001 +n44008032003 +n44008032004 +n44008032005 +n44008032006 +n44008032007 +n44008032008 +n44008032009 +n44008032010 +n44008032011 +n44008032012 +n44008032013 +n44008032014 +n44008032015 +n44008032016 +n44008032017 +n44008032018 +n44008032019 +n44008032020 +n44008032021 +n44008032022 +n44008032023 +n44008032024 +n44008032025 +n44008032026 +n44008032027 +n44008032028 +n44008033001 +n44008033002 +n44008033003 +n44008033004 +n44008033005 +n44008033006 +n44008033007 +n44008033008 +n44008033009 +n44008033010 +n44008033011 +n44008033012 +n44008033013 +n44008033014 +n44008033015 +n44008033016 +n44008033017 +n44008033018 +n44008033019 +n44008033020 +n44008034002 +n44008034001 +n44008034003 +n44008034004 +n44008034005 +n44008034006 +n44008034007 +n44008034008 +n44008034009 +n44008034010 +n44008034011 +n44008034012 +n44008034013 +n44008034014 +n44008034015 +n44008034016 +n44008034017 +n44008034018 +n44008034019 +n44008034020 +n44008034021 +n44008035002 +n44008035003 +n44008035004 +n44008035001 +n44008035005 +n44008035006 +n44008035007 +n44008035008 +n44008035009 +n44008035010 +n44008035011 +n44008035012 +n44008035013 +n44008035014 +n44008035015 +n44008035016 +n44008035017 +n44008036002 +n44008036001 +n44008036003 +n44008036004 +n44008036005 +n44008036006 +n44008036007 +n44008036008 +n44008036009 +n44008036010 +n44008036011 +n44008036012 +n44008036013 +n44008036014 +n44008036015 +n44008036016 +n44008036017 +n44008036018 +n44008036019 +n44008036020 +n44008038001 +n44008038002 +n44008038003 +n44008038004 +n44008038005 +n44008038006 +n44008038007 +n44008038008 +n44008038009 +n44008038010 +n44008038011 +n44008038013 +n44008038012 +n44008038014 +n44008038015 +n44008038016 +n44008038017 +n44008038018 +n44008038019 +n44008038020 +n44008039002 +n44008039001 +n44008039003 +n44008039004 +n44008039005 +n44008039006 +n44008039007 +n44008039008 +n44008039009 +n44008039010 +n44008039011 +n44008039012 +n44008039013 +n44008039014 +n44008039015 +n44008039016 +n44008039017 +n44008039018 +n44008039020 +n44008039019 +n44008039021 +n44008039022 +n44008039023 +n44008039024 +n44008040002 +n44008040001 +n44008040003 +n44008040004 +n44008040005 +n44008040006 +n44008040007 +n44008040008 +n44008040009 +n44008040010 +n44008040011 +n44008040012 +n44008040013 +n44008040014 +n44008040015 +n44008040016 +n44008040017 +n44009001002 +n44009001001 +n44009001003 +n44009001004 +n44009001005 +n44009001006 +n44009001007 +n44009001008 +n44009001009 +n44009001010 +n44009001011 +n44009001012 +n44009001013 +n44009001014 +n44009001015 +n44009001016 +n44009002001 +n44009002002 +n44009002003 +n44009002004 +n44009002005 +n44009002006 +n44009002007 +n44009002008 +n44009002009 +n44009002010 +n44009002011 +n44009002013 +n44009002012 +n44009002014 +n44009002015 +n44009002016 +n44009002018 +n44009002017 +n44009002019 +n44009002020 +n44009002021 +n44009002022 +n44009002023 +n44009002024 +n44009003002 +n44009003001 +n44009003003 +n44009003004 +n44009003005 +n44009003006 +n44009003007 +n44009003008 +n44009003009 +n44009003011 +n44009003010 +n44009003012 +n44009003013 +n44009003014 +n44009003015 +n44009003016 +n44009003017 +n44009004001 +n44009004002 +n44009004003 +n44009004004 +n44009004005 +n44009004006 +n44009004007 +n44009004008 +n44009004009 +n44009004010 +n44009004011 +n44009004012 +n44009004013 +n44009004014 +n44009005002 +n44009005001 +n44009005003 +n44009005004 +n44009005005 +n44009005007 +n44009005006 +n44009005008 +n44009005009 +n44009005010 +n44009005011 +n44009005012 +n44009005013 +n44009006001 +n44009006002 +n44009006003 +n44009006004 +n44009006005 +n44009006006 +n44009006007 +n44009006008 +n44009006009 +n44009006010 +n44009006011 +n44009006012 +n44009006013 +n44009006015 +n44009006014 +n44009007002 +n44009007001 +n44009007003 +n44009007004 +n44009007005 +n44009007006 +n44009007007 +n44009007008 +n44009007010 +n44009007009 +n44009007011 +n44009007012 +n44009007014 +n44009007013 +n44009007015 +n44009008002 +n44009008001 +n44009008003 +n44009008004 +n44009008005 +n44009008006 +n44009008008 +n44009008007 +n44009008009 +n44009008010 +n44009008011 +n44009008012 +n44009008013 +n44009008015 +n44009008014 +n44009008016 +n44009008017 +n44009008018 +n44009008019 +n44009009001 +n44009009002 +n44009009006 +n44009009003 +n44009009004 +n44009009005 +n44009009007 +n44009009008 +n44009009009 +n44009009010 +n44009009011 +n44009010002 +n44009010001 +n44009010003 +n44009010004 +n44009010007 +n44009010008 +n44009010005 +n44009010006 +n44009010009 +n44009010010 +n44009010011 +n44009010012 +n44009010013 +n44009010014 +n44009010015 +n44009010016 +n44009010017 +n44009010019 +n44009010018 +n44009010020 +n44009010021 +n44009010022 +n44009010023 +n44009011002 +n44009011001 +n44009011003 +n44009011004 +n44009011005 +n44009011006 +n44009011007 +n44009011008 +n44009011009 +n44009011010 +n44009011011 +n44009011012 +n44009011013 +n44009011014 +n44009011015 +n44009011016 +n44009011017 +n44009011018 +n44009011019 +n44009011020 +n44009011021 +n44009011023 +n44009011022 +n44009011024 +n44009012001 +n44009012002 +n44009012003 +n44009012004 +n44009012005 +n44009012006 +n44009012007 +n44009012008 +n44009012009 +n44009012010 +n44009012011 +n44009012012 +n44009013002 +n44009013001 +n44009013003 +n44009013004 +n44009013005 +n44009013006 +n44009013007 +n44009013008 +n44009013009 +n44009013010 +n44009013011 +n44009013012 +n44009013013 +n44009013014 +n44009013015 +n44009013016 +n44009013017 +n44009013018 +n44009013019 +n44009014001 +n44009014002 +n44009014003 +n44009014004 +n44009014005 +n44009014006 +n44009014007 +n44009014008 +n44009014009 +n44009014010 +n44009014011 +n44009014012 +n44009014013 +n44009014014 +n44009015002 +n44009015001 +n44009015003 +n44009015004 +n44009015005 +n44009015006 +n44009015007 +n44009015008 +n44009015009 +n44009015010 +n44009015011 +n44009015012 +n44009015013 +n44009015014 +n44009015015 +n44009015016 +n44009015017 +n44009015018 +n44009015019 +n44009015021 +n44009015020 +n44009015022 +n44009015023 +n44009015025 +n44009015024 +n44009015026 +n44009016002 +n44009016001 +n44009016003 +n44009016004 +n44009016005 +n44009016007 +n44009016008 +n44009016009 +n44009016010 +n44009016011 +n44009016012 +n44009016006 +n44009017002 +n44009017001 +n44009017003 +n44009017004 +n44009017005 +n44009017006 +n44009017007 +n44009017008 +n44009017009 +n44009017010 +n44009017011 +n44009017012 +n44009017013 +n44009017014 +n44009017015 +n44009017016 +n44009017017 +n44009017018 +n44009017019 +n44009017022 +n44009017023 +n44009017024 +n44009017025 +n44009017026 +n44009017027 +n44009017028 +n44009017029 +n44009017030 +n44009017020 +n44009017021 +n44009017031 +n44009017032 +n44009017033 +n44009017034 +n44009017035 +n44009017036 +n44009018001 +n44009018002 +n44009018003 +n44009018005 +n44009018004 +n44009018006 +n44009018007 +n44009018008 +n44009018009 +n44009018011 +n44009018010 +n44009018012 +n44009018013 +n44009018014 +n44009019001 +n44009019002 +n44009019003 +n44009019004 +n44009019006 +n44009019005 +n44009019007 +n44009019008 +n44009019009 +n44009019010 +n44009019011 +n44009019012 +n44009019013 +n44009020001 +n44009020002 +n44009020003 +n44009020004 +n44009020005 +n44009020006 +n44009020007 +n44009020008 +n44009020009 +n44009020010 +n44009020011 +n44009020012 +n44009020013 +n44009020014 +n44009020015 +n44009021002 +n44009021001 +n44009021003 +n44009021004 +n44009021005 +n44009021006 +n44009021007 +n44009021008 +n44009021009 +n44009021010 +n44009021011 +n44009021012 +n44009021013 +n44009021014 +n44009021015 +n44009021016 +n44009021017 +n44009021018 +n44009021019 +n44009021020 +n44009021021 +n44009021022 +n44009021023 +n44009021024 +n44009021025 +n44009021026 +n44009021027 +n44009021028 +n44009021029 +n44009021030 +n44009021031 +n44009022002 +n44009022001 +n44009022003 +n44009022004 +n44009022005 +n44009022006 +n44009022007 +n44009022008 +n44009022009 +n44009022010 +n44009022011 +n44009022012 +n44009022013 +n44009022014 +n44009022015 +n44009022016 +n44009022017 +n44009023002 +n44009023001 +n44009023003 +n44009023004 +n44009023005 +n44009023006 +n44009023007 +n44009023008 +n44009023009 +n44009023010 +n44009024002 +n44009024001 +n44009024003 +n44009024004 +n44009024005 +n44009024006 +n44009024007 +n44009024009 +n44009024008 +n44009024010 +n44009024011 +n44009024012 +n44009024014 +n44009024013 +n44009024015 +n44009024016 +n44009024017 +n44009024018 +n44009024019 +n44009025002 +n44009025001 +n44009025003 +n44009025004 +n44009025005 +n44009025006 +n44009025007 +n44009025008 +n44009025009 +n44009025010 +n44009025011 +n44009025012 +n44009025013 +n44009025014 +n44009026002 +n44009026001 +n44009026003 +n44009026004 +n44009026005 +n44009026006 +n44009026007 +n44009026008 +n44009026009 +n44009026010 +n44009026011 +n44009026012 +n44009026013 +n44009026014 +n44009026015 +n44009026016 +n44009026017 +n44009027002 +n44009027001 +n44009027003 +n44009027004 +n44009027005 +n44009027006 +n44009027007 +n44009027008 +n44009027009 +n44009027010 +n44009027011 +n44009027012 +n44009027013 +n44009027014 +n44009027015 +n44009027016 +n44009027017 +n44009027018 +n44009027019 +n44009027020 +n44009027021 +n44009027022 +n44009027023 +n44009027024 +n44009027025 +n44009027026 +n44009027027 +n44009027028 +n44009027029 +n44009027030 +n44009027031 +n44009028001 +n44009028002 +n44009028005 +n44009028006 +n44009028007 +n44009028003 +n44009028004 +n44009028008 +n44009028009 +n44009028010 +n44009028011 +n44009028012 +n44009028013 +n44009028014 +n44009028015 +n44009029002 +n44009029001 +n44009029003 +n44009029004 +n44009029005 +n44009029006 +n44009029007 +n44009029009 +n44009029008 +n44009029010 +n44009029011 +n44009029012 +n44009030002 +n44009030001 +n44009030003 +n44009030004 +n44009030005 +n44009030006 +n44009030007 +n44009030008 +n44009030009 +n44009030010 +n44009030011 +n44009030012 +n44009030013 +n44009031002 +n44009031003 +n44009031001 +n44009031004 +n44009031005 +n44009031006 +n44009031007 +n44009031008 +n44009031009 +n44009031010 +n44009031011 +n44009031012 +n44009031013 +n44009031014 +n44009031015 +n44009031016 +n44009031017 +n44009031018 +n44009031019 +n44009031020 +n44009031021 +n44009031022 +n44009031023 +n44009031024 +n44009031025 +n44009031026 +n44009031027 +n44009031028 +n44009032002 +n44009032001 +n44009032003 +n44009032004 +n44009032005 +n44009032006 +n44009032007 +n44009032008 +n44009032009 +n44009032010 +n44009032011 +n44009032012 +n44009032013 +n44009032014 +n44009033002 +n44009033001 +n44009033003 +n44009033004 +n44009033005 +n44009033006 +n44009033007 +n44009033008 +n44009033009 +n44009033010 +n44009033011 +n44009033012 +n44009033013 +n44009033014 +n44009033015 +n44009033016 +n44009034001 +n44009034002 +n44009034003 +n44009034004 +n44009034005 +n44009034006 +n44009034007 +n44009034008 +n44009034009 +n44009034010 +n44009034011 +n44009034012 +n44009034013 +n44009034014 +n44009034015 +n44009034016 +n44009034017 +n44009035001 +n44009035002 +n44009035003 +n44009035004 +n44009035005 +n44009035006 +n44009035007 +n44009035008 +n44009035009 +n44009035010 +n44009035011 +n44009035012 +n44009035013 +n44009035014 +n44009035015 +n44009036003 +n44009036001 +n44009036002 +n44009036005 +n44009036004 +n44009036006 +n44009036007 +n44009036008 +n44009036009 +n44009036010 +n44009036011 +n44009036012 +n44009036013 +n44009036014 +n44009036015 +n44009036016 +n44009036017 +n44009036018 +n44009036019 +n44009036020 +n44009036021 +n44009037002 +n44009037001 +n44009037003 +n44009037004 +n44009037005 +n44009037006 +n44009037007 +n44009037008 +n44009037009 +n44009037011 +n44009037010 +n44009037012 +n44009037013 +n44009037014 +n44009038002 +n44009038003 +n44009038004 +n44009038001 +n44009038005 +n44009038006 +n44009038007 +n44009038008 +n44009038009 +n44009038010 +n44009038011 +n44009038012 +n44009038013 +n44009038014 +n44009038015 +n44009038016 +n44009038017 +n44009038018 +n44009038019 +n44009038020 +n44009038021 +n44009038022 +n44009038023 +n44009038024 +n44009038025 +n44009039002 +n44009039001 +n44009039003 +n44009039004 +n44009039005 +n44009039006 +n44009039007 +n44009039008 +n44009039009 +n44009039010 +n44009039011 +n44009039012 +n44009039013 +n44009039014 +n44009039015 +n44009039016 +n44009039017 +n44009039018 +n44009039019 +n44009039020 +n44009039021 +n44009039022 +n44009039023 +n44009039024 +n44009039025 +n44009039026 +n44009039027 +n44009039028 +n44009039029 +n44009039030 +n44009040002 +n44009040005 +n44009040006 +n44009040001 +n44009040003 +n44009040004 +n44009040007 +n44009040008 +n44009040009 +n44009040010 +n44009040011 +n44009040012 +n44009040013 +n44009040014 +n44009040015 +n44009040016 +n44009040017 +n44009040018 +n44009040019 +n44009040021 +n44009040020 +n44009040022 +n44009040023 +n44009040024 +n44009040025 +n44009040026 +n44009040027 +n44009040028 +n44009040029 +n44009040030 +n44009041002 +n44009041001 +n44009041003 +n44009041004 +n44009041005 +n44009041006 +n44009041008 +n44009041007 +n44009041009 +n44009041010 +n44009041011 +n44009041012 +n44009041013 +n44009041014 +n44009041015 +n44009041016 +n44009042002 +n44009042001 +n44009042003 +n44009042004 +n44009042005 +n44009042006 +n44009042007 +n44009042008 +n44009042009 +n44009042010 +n44009042011 +n44009042012 +n44009042013 +n44009043002 +n44009043001 +n44009043003 +n44009043004 +n44009043005 +n44009043006 +n44009043007 +n44009043008 +n44009043009 +n44009043010 +n44009043011 +n44010001002 +n44010001001 +n44010001003 +n44010001004 +n44010001005 +n44010001006 +n44010001007 +n44010001008 +n44010001009 +n44010001010 +n44010001011 +n44010001012 +n44010001013 +n44010002001 +n44010002002 +n44010002003 +n44010002004 +n44010002005 +n44010002006 +n44010002007 +n44010002008 +n44010002009 +n44010002010 +n44010002011 +n44010002012 +n44010002013 +n44010002014 +n44010002015 +n44010002016 +n44010002017 +n44010002018 +n44010002019 +n44010002020 +n44010002021 +n44010003001 +n44010003002 +n44010003003 +n44010003004 +n44010003005 +n44010003006 +n44010003007 +n44010003008 +n44010003009 +n44010003010 +n44010003011 +n44010003012 +n44010003013 +n44010003014 +n44010003015 +n44010003016 +n44010003017 +n44010003018 +n44010003019 +n44010003020 +n44010004002 +n44010004001 +n44010004003 +n44010004004 +n44010004005 +n44010004006 +n44010004007 +n44010004008 +n44010004009 +n44010004010 +n44010004011 +n44010004013 +n44010004012 +n44010004014 +n44010004015 +n44010004016 +n44010004017 +n44010004018 +n44010004019 +n44010004020 +n44010004021 +n44010004022 +n44010004023 +n44010004024 +n44010004025 +n44010004026 +n44010004027 +n44010005001 +n44010005002 +n44010005003 +n44010005004 +n44010005005 +n44010005006 +n44010005007 +n44010005008 +n44010005009 +n44010005010 +n44010005011 +n44010005012 +n44010005013 +n44010006001 +n44010006002 +n44010006003 +n44010006004 +n44010006005 +n44010006006 +n44010006007 +n44010006008 +n44010006009 +n44010006010 +n44010006011 +n44010007002 +n44010007001 +n44010007003 +n44010007004 +n44010007005 +n44010007006 +n44010007007 +n44010007008 +n44010007009 +n44010007010 +n44010007011 +n44010007012 +n44010007013 +n44010007014 +n44010007015 +n44010007016 +n44010007017 +n44010007018 +n44010008001 +n44010008002 +n44010008003 +n44010008004 +n44010008005 +n44010008006 +n44010008007 +n44010008008 +n44010008009 +n44010009002 +n44010009001 +n44010009003 +n44010009004 +n44010009005 +n44010009006 +n44010009007 +n44010009008 +n44010009009 +n44010009010 +n44010009011 +n44010009012 +n44010009013 +n44010009014 +n44010009015 +n44010009016 +n44010009017 +n44010009018 +n44010010002 +n44010010001 +n44010010003 +n44010010004 +n44010010005 +n44010010006 +n44010010008 +n44010010007 +n44010010009 +n44010010010 +n44010010011 +n44010010012 +n44010010013 +n44010011001 +n44010011002 +n44010011003 +n44010011004 +n44010011005 +n44010011006 +n44010011007 +n44010011008 +n44010011009 +n44010011010 +n44010011011 +n44010011012 +n44010011013 +n44010011014 +n44010011015 +n44010011016 +n44010011017 +n44010011018 +n44010012001 +n44010012002 +n44010012003 +n44010012004 +n44010012005 +n44010012006 +n44010012007 +n44010012008 +n44010012009 +n44010012010 +n44010012011 +n44010012012 +n44010012013 +n44010012014 +n44010013001 +n44010013002 +n44010013003 +n44010013004 +n44010013005 +n44010013007 +n44010013006 +n44010013008 +n44010013009 +n44010013010 +n44010014002 +n44010014001 +n44010014003 +n44010014004 +n44010014005 +n44010014006 +n44010014007 +n44010014008 +n44010014009 +n44010014010 +n44010014011 +n44010014012 +n44010014013 +n44010015001 +n44010015002 +n44010015003 +n44010015004 +n44010015005 +n44010015006 +n44010015007 +n44010015008 +n44010015009 +n44010015010 +n44010015011 +n44010015012 +n44010015013 +n44010015014 +n44010016002 +n44010016001 +n44010016003 +n44010016004 +n44010016005 +n44010016006 +n44010016007 +n44010016008 +n44010016009 +n44010016010 +n44010016011 +n44010016012 +n44010016013 +n44010017002 +n44010017001 +n44010017003 +n44010017004 +n44010017005 +n44010017006 +n44010017007 +n44010017009 +n44010017008 +n44010017010 +n44010017011 +n44010017012 +n44010017013 +n44010017014 +n44010017015 +n44010017016 +n44010017017 +n44010017018 +n44010017019 +n44010017020 +n44010017021 +n44010017022 +n44010017023 +n44010017024 +n44010017025 +n44010017026 +n44010017027 +n44010017028 +n44010017029 +n44010017030 +n44010017031 +n44010018001 +n44010018002 +n44010018003 +n44010018004 +n44010018005 +n44010018006 +n44010018007 +n44010018008 +n44010018009 +n44010018010 +n44010019002 +n44010019001 +n44010019003 +n44010019004 +n44010019005 +n44010019006 +n44010019007 +n44010019008 +n44010019009 +n44010019010 +n44010019011 +n44010019012 +n44010019013 +n44010019014 +n44010019015 +n44010020001 +n44010020002 +n44010020003 +n44010020004 +n44010020005 +n44010020006 +n44010020007 +n44010020008 +n44010020009 +n44010020010 +n44010020011 +n44010020012 +n44010020013 +n44010021002 +n44010021001 +n44010021003 +n44010021004 +n44010021005 +n44010021006 +n44010021007 +n44010021008 +n44010021009 +n44010021010 +n44010021011 +n44010021012 +n44010021013 +n44010021014 +n44010021015 +n44010021016 +n44010021017 +n44010021018 +n44010022002 +n44010022001 +n44010022003 +n44010022004 +n44010022005 +n44010022006 +n44010022007 +n44010022008 +n44010022009 +n44010022010 +n44010022011 +n44010022013 +n44010022012 +n44010022014 +n44010022015 +n44010022016 +n44010022017 +n44010022018 +n44010022019 +n44010022020 +n44010022021 +n44010022022 +n44010022023 +n44010022024 +n44010022025 +n44010022026 +n44010022027 +n44010022028 +n44010022029 +n44010022030 +n44010022031 +n44010022032 +n44010022033 +n44010022034 +n44010023002 +n44010023001 +n44010023003 +n44010023004 +n44010023006 +n44010023005 +n44010023007 +n44010023008 +n44010023009 +n44010023010 +n44010023011 +n44010023012 +n44010023013 +n44010023014 +n44010023015 +n44010023016 +n44010023017 +n44010023018 +n44010023019 +n44010023020 +n44010024002 +n44010024001 +n44010024003 +n44010024004 +n44010024005 +n44010024006 +n44010024007 +n44010024009 +n44010024008 +n44010024010 +n44010024011 +n44010024012 +n44010024013 +n44010024014 +n44010024015 +n44010024016 +n44010024017 +n44010024018 +n44010024019 +n44010024020 +n44010024021 +n44010025002 +n44010025001 +n44010025003 +n44010025004 +n44010025005 +n44010025006 +n44010025007 +n44010025008 +n44010025009 +n44010025010 +n44010025011 +n44010025012 +n44010025013 +n44010025014 +n44010025015 +n44010025016 +n44010026002 +n44010026001 +n44010026003 +n44010026004 +n44010026005 +n44010026006 +n44010026007 +n44010026008 +n44010026009 +n44010026010 +n44010026011 +n44010026012 +n44010027001 +n44010027002 +n44010027003 +n44010027004 +n44010027005 +n44010027006 +n44010027007 +n44010027008 +n44010028002 +n44010028001 +n44010028003 +n44010028004 +n44010028005 +n44010028006 +n44010028007 +n44010028008 +n44010028009 +n44010028010 +n44010028011 +n44010028012 +n44010028013 +n44010028014 +n44010028015 +n44010028016 +n44010028017 +n44010028018 +n44010028019 +n44010028020 +n44010028025 +n44010028021 +n44010028022 +n44010028023 +n44010028024 +n44010029001 +n44010029002 +n44010029003 +n44010029004 +n44010029005 +n44010029007 +n44010029006 +n44010029008 +n44010029009 +n44010029010 +n44010029011 +n44010030001 +n44010030002 +n44010030003 +n44010030004 +n44010030005 +n44010030006 +n44010030007 +n44010030008 +n44010030009 +n44010030010 +n44010030011 +n44010030012 +n44010030015 +n44010030013 +n44010030014 +n44010030016 +n44010030017 +n44010030018 +n44010030019 +n44010030020 +n44010030021 +n44010030022 +n44010030023 +n44010030024 +n44010030025 +n44010030026 +n44010030027 +n44010030028 +n44010031001 +n44010031002 +n44010031003 +n44010031004 +n44010031005 +n44010031006 +n44010031007 +n44010031008 +n44010031009 +n44010031010 +n44010031011 +n44010031012 +n44010031013 +n44010031014 +n44010031015 +n44010032002 +n44010032001 +n44010032003 +n44010032004 +n44010032005 +n44010032006 +n44010032007 +n44010032008 +n44010032009 +n44010032010 +n44010032011 +n44010032012 +n44010032013 +n44010032014 +n44010032015 +n44010032016 +n44010032017 +n44010032018 +n44010033002 +n44010033001 +n44010033003 +n44010033004 +n44010033005 +n44010033007 +n44010033006 +n44010033008 +n44010033009 +n44010033010 +n44010033012 +n44010033011 +n44010033013 +n44010033014 +n44010033015 +n44010033016 +n44010033017 +n44010033018 +n44010033019 +n44010033020 +n44010033021 +n44010033022 +n44010033023 +n44010033024 +n44010033025 +n44010033026 +n44010034002 +n44010034003 +n44010034001 +n44010034004 +n44010034005 +n44010034006 +n44010034007 +n44010034008 +n44010034009 +n44010034010 +n44010034011 +n44010034012 +n44010034013 +n44010034014 +n44010034015 +n44010035001 +n44010035002 +n44010035003 +n44010035004 +n44010035005 +n44010035006 +n44010035007 +n44010035008 +n44010035009 +n44010035010 +n44010035011 +n44010035012 +n44010035013 +n44010036001 +n44010036002 +n44010036003 +n44010036004 +n44010036005 +n44010036006 +n44010036007 +n44010036008 +n44010036009 +n44010036010 +n44010036011 +n44010036012 +n44010036013 +n44010036014 +n44010036015 +n44010036016 +n44010037001 +n44010037002 +n44010037003 +n44010037005 +n44010037004 +n44010037006 +n44010037007 +n44010037008 +n44010037009 +n44010037010 +n44010037011 +n44010037012 +n44010037013 +n44010037014 +n44010037015 +n44010037016 +n44010037017 +n44010037018 +n44010037019 +n44010038001 +n44010038002 +n44010038003 +n44010038004 +n44010038005 +n44010038006 +n44010038007 +n44010038008 +n44010038009 +n44010038010 +n44010038011 +n44010038012 +n44010038013 +n44010038014 +n44010038015 +n44010038016 +n44010038017 +n44010038018 +n44010038019 +n44010038020 +n44010038021 +n44010038022 +n44010038023 +n44010038024 +n44010038025 +n44010038026 +n44010038027 +n44010038028 +n44010038029 +n44010038030 +n44010039001 +n44010039002 +n44010039003 +n44010039004 +n44010039005 +n44010039006 +n44010039008 +n44010039007 +n44010039009 +n44010039010 +n44010039011 +n44010039012 +n44010039013 +n44010039014 +n44010039015 +n44010039016 +n44010039017 +n44010039018 +n44010039019 +n44010039020 +n44010040001 +n44010040002 +n44010040003 +n44010040004 +n44010040005 +n44010040006 +n44010040007 +n44010040008 +n44010040009 +n44010040010 +n44010040011 +n44010040012 +n44010040013 +n44010041001 +n44010041002 +n44010041003 +n44010041004 +n44010041005 +n44010041006 +n44010041007 +n44010041008 +n44010041009 +n44010041010 +n44010041011 +n44010041012 +n44010041013 +n44010041014 +n44010041015 +n44010041016 +n44010041017 +n44010041018 +n44010041019 +n44010041020 +n44010041021 +n44010041022 +n44010041023 +n44010042001 +n44010042002 +n44010042003 +n44010042004 +n44010042005 +n44010042006 +n44010042007 +n44010042008 +n44010042009 +n44010042010 +n44010042011 +n44010042012 +n44010042013 +n44010042014 +n44010042015 +n44010042016 +n44010042017 +n44010042018 +n44010042019 +n44010042020 +n44010043001 +n44010043002 +n44010043003 +n44010043004 +n44010043005 +n44010043006 +n44010043007 +n44010043008 +n44010043009 +n44010043010 +n44010043011 +n44010043012 +n44010043013 +n44010043014 +n44010043015 +n44010043016 +n44010043017 +n44010044001 +n44010044002 +n44010044003 +n44010044004 +n44010044005 +n44010044006 +n44010044007 +n44010044008 +n44010044009 +n44010044010 +n44010044011 +n44010044012 +n44010044013 +n44010044014 +n44010044015 +n44010044016 +n44010044017 +n44010044018 +n44010045001 +n44010045002 +n44010045003 +n44010045004 +n44010045005 +n44010045006 +n44010045007 +n44010045008 +n44010045009 +n44010045010 +n44010045011 +n44010045012 +n44010045013 +n44010045014 +n44010045015 +n44010045016 +n44010045017 +n44010045018 +n44010045019 +n44010045020 +n44010045021 +n44010046002 +n44010046001 +n44010046003 +n44010046004 +n44010046005 +n44010046006 +n44010046007 +n44010046008 +n44010046009 +n44010046010 +n44010046011 +n44010046012 +n44010047001 +n44010047002 +n44010047003 +n44010047005 +n44010047004 +n44010047006 +n44010047007 +n44010047008 +n44010047009 +n44010047010 +n44010047011 +n44010047012 +n44010047013 +n44010047014 +n44010047015 +n44010047016 +n44010047017 +n44010047018 +n44010047019 +n44010048002 +n44010048001 +n44010048003 +n44010048004 +n44010048005 +n44010048006 +n44010048007 +n44010048008 +n44010048009 +n44010048010 +n44010048011 +n44010048012 +n44010048013 +n44010048014 +n44010048015 +n44011001002 +n44011001001 +n44011001003 +n44011001004 +n44011001005 +n44011001006 +n44011001007 +n44011001008 +n44011001009 +n44011001010 +n44011001011 +n44011001012 +n44011001013 +n44011001014 +n44011001015 +n44011001016 +n44011001017 +n44011001018 +n44011001019 +n44011001020 +n44011001021 +n44011002002 +n44011002001 +n44011002003 +n44011002004 +n44011002005 +n44011002006 +n44011002007 +n44011002008 +n44011002009 +n44011002010 +n44011002011 +n44011002012 +n44011003001 +n44011003002 +n44011003003 +n44011003004 +n44011003005 +n44011003006 +n44011003007 +n44011003008 +n44011003009 +n44011003010 +n44011004002 +n44011004001 +n44011004003 +n44011004004 +n44011004005 +n44011004006 +n44011004007 +n44011005001 +n44011005002 +n44011005006 +n44011005003 +n44011005004 +n44011005005 +n44011005007 +n44011005008 +n44011005009 +n44011005010 +n44011005011 +n44011005012 +n44011005013 +n44011005014 +n44011005015 +n44011005016 +n44011005017 +n44011005018 +n44011005019 +n44011005020 +n44011005021 +n44011005022 +n44011005023 +n44011005024 +n44011005025 +n44011005026 +n44011005027 +n44011006001 +n44011006002 +n44011006003 +n44011006004 +n44011006005 +n44011006006 +n44011006007 +n44011006008 +n44011006009 +n44011006010 +n44011006011 +n44011006012 +n44011006013 +n44011006014 +n44011006015 +n44011006016 +n44011006017 +n44011006018 +n44011006019 +n44011006020 +n44011006021 +n44011007002 +n44011007001 +n44011007003 +n44011007004 +n44011007005 +n44011007006 +n44011007008 +n44011007007 +n44011007009 +n44011007010 +n44011007011 +n44011008002 +n44011008001 +n44011008003 +n44011008004 +n44011008005 +n44011008006 +n44011008007 +n44011008008 +n44011008009 +n44011008010 +n44011008011 +n44011008012 +n44011008013 +n44011008014 +n44011009002 +n44011009001 +n44011009003 +n44011009004 +n44011009005 +n44011009006 +n44011009007 +n44011009008 +n44011009009 +n44011009010 +n44011009011 +n44011009012 +n44011009013 +n44011009014 +n44011009015 +n44011010002 +n44011010001 +n44011010003 +n44011010004 +n44011010005 +n44011010006 +n44011010007 +n44011010008 +n44011010009 +n44011010010 +n44011010011 +n44011010012 +n44011011001 +n44011011002 +n44011011003 +n44011011004 +n44011011005 +n44011011006 +n44011011007 +n44011011008 +n44011011009 +n44011011010 +n44011011011 +n44011011012 +n44011011013 +n44011011014 +n44011011015 +n44011011016 +n44011011017 +n44011012002 +n44011012001 +n44011012003 +n44011012004 +n44011012005 +n44011012006 +n44011012007 +n44011012008 +n44011012009 +n44011012011 +n44011012010 +n44011012012 +n44011012013 +n44011012014 +n44011012015 +n44011012016 +n44011012017 +n44011012018 +n44011012019 +n44011012020 +n44011012021 +n44011012022 +n44011012023 +n44011012024 +n44011012025 +n44011013002 +n44011013001 +n44011013003 +n44011013004 +n44011013005 +n44011013006 +n44011013007 +n44011013008 +n44011013009 +n44011013010 +n44011013011 +n44011013012 +n44011013013 +n44011013014 +n44011013015 +n44011013016 +n44011013017 +n44011013018 +n44011013019 +n44011013020 +n44011013021 +n44011013022 +n44011013023 +n44011014001 +n44011014002 +n44011014003 +n44011014004 +n44011014005 +n44011014006 +n44011014007 +n44011014008 +n44011014009 +n44011014010 +n44011014011 +n44011014012 +n44011014013 +n44011014014 +n44011015002 +n44011015001 +n44011015003 +n44011015004 +n44011015005 +n44011015006 +n44011015007 +n44011015008 +n44011015009 +n44011015010 +n44011015011 +n44011015012 +n44011015013 +n44011015014 +n44011015015 +n44011015016 +n44011015017 +n44011015018 +n44011015019 +n44011016002 +n44011016001 +n44011016003 +n44011016004 +n44011016005 +n44011016006 +n44011016007 +n44011016008 +n44011016010 +n44011016009 +n44011016011 +n44011016012 +n44011016014 +n44011016013 +n44011016015 +n44011016016 +n44011016017 +n44011016018 +n44011017002 +n44011017001 +n44011017003 +n44011017004 +n44011017005 +n44011017006 +n44011017007 +n44011017008 +n44011017009 +n44011017010 +n44011017011 +n44011017012 +n44011017013 +n44011017014 +n44011017015 +n44011017016 +n44011017017 +n44011017018 +n44011017019 +n44011017020 +n44011017021 +n44011017022 +n44011017023 +n44011017024 +n44011017025 +n44011018002 +n44011018001 +n44011018003 +n44011018004 +n44011018005 +n44011018006 +n44011018007 +n44011018008 +n44011018009 +n44011018010 +n44011018011 +n44011018012 +n44011018013 +n44011018014 +n44011018015 +n44011018016 +n44011018017 +n44011018018 +n44011018019 +n44011018020 +n44011019002 +n44011019003 +n44011019001 +n44011019004 +n44011019005 +n44011019006 +n44011019007 +n44011019008 +n44011019009 +n44011019010 +n44011019011 +n44011019012 +n44011019013 +n44011019014 +n44011019015 +n44011019016 +n44011019017 +n44011019018 +n44011019019 +n44011019020 +n44011019021 +n44011019022 +n44011019023 +n44011019024 +n44011019025 +n44011019026 +n44011020002 +n44011020001 +n44011020003 +n44011020004 +n44011020005 +n44011020006 +n44011020007 +n44011020008 +n44011020009 +n44011020010 +n44011020011 +n44011020012 +n44011020013 +n44011020014 +n44011020015 +n44011020016 +n44011020017 +n44011020018 +n44011020019 +n44011020020 +n44011020021 +n44011020022 +n44011021001 +n44011021002 +n44011021003 +n44011021004 +n44011021005 +n44011021006 +n44011021008 +n44011021007 +n44011021009 +n44011021010 +n44011021011 +n44011021012 +n44011021013 +n44011021014 +n44011021015 +n44011022002 +n44011022001 +n44011022003 +n44011022004 +n44011022014 +n44011022015 +n44011022005 +n44011022006 +n44011022007 +n44011022008 +n44011022009 +n44011022010 +n44011022011 +n44011022012 +n44011022013 +n44011022016 +n44011022017 +n44011022018 +n44011022019 +n44011022020 +n44011023001 +n44011023002 +n44011023003 +n44011023004 +n44011023005 +n44011023006 +n44011023007 +n44011023008 +n44011023009 +n44011023010 +n44011023011 +n44011023012 +n44011023013 +n44011023014 +n44011023015 +n44011023016 +n44011023017 +n44011023018 +n44011023019 +n44011023020 +n44011024001 +n44011024002 +n44011024003 +n44011024004 +n44011024005 +n44011024006 +n44011024007 +n44011024008 +n44011024009 +n44011024010 +n44011024011 +n44011024012 +n44011024013 +n44011024014 +n44011024015 +n44011024016 +n44011025002 +n44011025001 +n44011025003 +n44011025004 +n44011025005 +n44011025006 +n44011026001 +n44011026002 +n44011026003 +n44011026004 +n44011026005 +n44011026007 +n44011026006 +n44011026008 +n44011026009 +n44011026010 +n44011026011 +n44011026012 +n44011026013 +n44011026014 +n44011026015 +n44011026016 +n44011026017 +n44011026018 +n44011026019 +n44011026021 +n44011026020 +n44011026022 +n44011026023 +n44011026024 +n44011026025 +n44011026026 +n44011026027 +n44011027003 +n44011027001 +n44011027002 +n44011027004 +n44011027005 +n44011027006 +n44011027007 +n44011027008 +n44011027009 +n44011027010 +n44011027011 +n44011028002 +n44011028001 +n44011028003 +n44011028004 +n44011028005 +n44011028006 +n44011028007 +n44011028008 +n44011028009 +n44011028010 +n44011028011 +n44011028012 +n44011028013 +n44011028014 +n44011028015 +n44011028016 +n44011028017 +n44011028018 +n44011028019 +n44011028020 +n44011028021 +n44011028022 +n44011028023 +n44011029002 +n44011029001 +n44011029003 +n44011029004 +n44011029005 +n44011029006 +n44011029007 +n44011029008 +n44011029009 +n44011029010 +n44011029011 +n44011029012 +n44011029013 +n44011029014 +n44011029015 +n44011029016 +n44011029017 +n44011029018 +n44011030001 +n44011030002 +n44011030003 +n44011030004 +n44011030005 +n44011030006 +n44011030007 +n44011030008 +n44011030009 +n44011030010 +n44011030011 +n44011030012 +n44012001003 +n44012001001 +n44012001002 +n44012001004 +n44012001005 +n44012001006 +n44012001007 +n44012001008 +n44012001009 +n44012001010 +n44012001011 +n44012001012 +n44012001013 +n44012001014 +n44012001015 +n44012001016 +n44012001017 +n44012002002 +n44012002001 +n44012002003 +n44012002004 +n44012002005 +n44012002006 +n44012002007 +n44012003002 +n44012003001 +n44012003003 +n44012003004 +n44012003005 +n44012003006 +n44012003007 +n44012003008 +n44012003009 +n44012003010 +n44012003011 +n44012003013 +n44012003012 +n44012003014 +n44012003015 +n44012003016 +n44012004001 +n44012004002 +n44012004003 +n44012004004 +n44012004005 +n44012004006 +n44012004007 +n44012004008 +n44012004009 +n44012004010 +n44012004011 +n44012004012 +n44012004013 +n44012004014 +n44012004015 +n44012004016 +n44012004017 +n44012004018 +n44012004019 +n44012004020 +n44012005003 +n44012005002 +n44012005001 +n44012005004 +n44012005005 +n44012005006 +n44012005007 +n44012005008 +n44012005010 +n44012005009 +n44012005011 +n44012005013 +n44012005012 +n44012005014 +n44012005015 +n44012005016 +n44012005017 +n44012005018 +n44012005019 +n44012005020 +n44012005021 +n44012006002 +n44012006001 +n44012006003 +n44012006004 +n44012006005 +n44012006006 +n44012006007 +n44012006008 +n44012006009 +n44012006010 +n44012006012 +n44012006013 +n44012006011 +n44012006014 +n44012006015 +n44012006016 +n44012006017 +n44012006018 +n44012006019 +n44012006020 +n44012006022 +n44012006021 +n44012006023 +n44012006024 +n44012006025 +n44012006026 +n44012006027 +n44012006028 +n44012007001 +n44012007002 +n44012007003 +n44012007004 +n44012007005 +n44012007006 +n44012007007 +n44012007008 +n44012007009 +n44012007010 +n44012007011 +n44012007013 +n44012007012 +n44012007014 +n44012007015 +n44012007016 +n44012007017 +n44012007018 +n44012007019 +n44012007020 +n44012007021 +n44012007022 +n44012007023 +n44012007024 +n44012007025 +n44012007026 +n44012007027 +n44012007028 +n44012007029 +n44012007030 +n44012007031 +n44012008002 +n44012008001 +n44012008003 +n44012008004 +n44012008005 +n44012008006 +n44012008007 +n44012008008 +n44012008009 +n44012008010 +n44012008011 +n44012008012 +n44012008014 +n44012008013 +n44012008015 +n44012008016 +n44012008017 +n44012008018 +n44012008019 +n44012008020 +n44012008021 +n44012008022 +n44012008023 +n44012008024 +n44012008025 +n44012009001 +n44012009002 +n44012009003 +n44012009004 +n44012009005 +n44012009006 +n44012009007 +n44012009008 +n44012009009 +n44012009010 +n44012009011 +n44012009012 +n44012009013 +n44012009014 +n44012009016 +n44012009015 +n44012009017 +n44012009018 +n44012010002 +n44012010001 +n44012010003 +n44012010005 +n44012010006 +n44012010004 +n44012010007 +n44012010008 +n44012010009 +n44012010010 +n44012010011 +n44012010012 +n44012010013 +n44012010014 +n44012010015 +n44012010016 +n44012010017 +n44012010018 +n44012010019 +n44012010020 +n44012010021 +n44012010022 +n44012010023 +n44012010024 +n44012010025 +n44012010026 +n44012010027 +n44012010028 +n44012010029 +n44012010030 +n44012010031 +n44012010032 +n44012010033 +n44012011001 +n44012011002 +n44012011003 +n44012011004 +n44012011005 +n44012011006 +n44012011007 +n44012011008 +n44012011009 +n44012011010 +n44012011011 +n44012011012 +n44012011013 +n44012011014 +n44012011015 +n44012011016 +n44012011017 +n44012011018 +n44012011019 +n44012011020 +n44012011021 +n44012011022 +n44012011023 +n44012011024 +n44012011025 +n44012011026 +n44012011027 +n44012011028 +n44012011029 +n44012011030 +n44012011031 +n44012012002 +n44012012001 +n44012012003 +n44012012004 +n44012012005 +n44012012006 +n44012012007 +n44012012008 +n44012012009 +n44012012010 +n44012012011 +n44012012012 +n44012012013 +n44012012014 +n44012012015 +n44012012017 +n44012012016 +n44012012018 +n44012012019 +n44012012020 +n44012013002 +n44012013001 +n44012013003 +n44012013004 +n44012013005 +n44012013006 +n44012013007 +n44012013008 +n44012013010 +n44012013009 +n44012013011 +n44012013012 +n44012014001 +n44012014002 +n44012014003 +n44012014004 +n44012014005 +n44012014006 +n44012014007 +n44012014008 +n44012014009 +n44012014010 +n44012014011 +n44012014012 +n44012014013 +n44012014015 +n44012014014 +n44012014016 +n44012014017 +n44012014018 +n44012014019 +n44012014020 +n44012014021 +n44012014022 +n44012015002 +n44012015001 +n44012015003 +n44012015004 +n44012015005 +n44012015006 +n44012015008 +n44012015007 +n44012015009 +n44012015010 +n44012015011 +n44012015013 +n44012015012 +n44012015014 +n44012015015 +n44012015016 +n44012015017 +n44012015018 +n44012016002 +n44012016001 +n44012016003 +n44012016004 +n44012016005 +n44012016007 +n44012016006 +n44012016008 +n44012016009 +n44012016010 +n44012016011 +n44012017002 +n44012017001 +n44012017003 +n44012017004 +n44012017005 +n44012017006 +n44012017007 +n44012017008 +n44012017009 +n44012017010 +n44012017011 +n44012017012 +n44012017013 +n44012017014 +n44012017015 +n44012017016 +n44012017018 +n44012017017 +n44012017019 +n44012017020 +n44012017021 +n44012017022 +n44012017023 +n44012017024 +n44012017025 +n44012017026 +n44012017027 +n44012017028 +n44012017029 +n44012017030 +n44012018002 +n44012018001 +n44012018003 +n44012018004 +n44012018005 +n44012018006 +n44012018007 +n44012018008 +n44012018009 +n44012018010 +n44012018012 +n44012018011 +n44012018013 +n44012018014 +n44012018015 +n44012019002 +n44012019001 +n44012019003 +n44012019004 +n44012019005 +n44012019006 +n44012019007 +n44012019008 +n44012019009 +n44012019010 +n44012019011 +n44012019012 +n44012019013 +n44012019014 +n44012019015 +n44012019016 +n44012019017 +n44012019018 +n44012019019 +n44012019020 +n44012020002 +n44012020001 +n44012020003 +n44012020004 +n44012020005 +n44012020006 +n44012020008 +n44012020007 +n44012020009 +n44012020010 +n44012020011 +n44012020012 +n44012020013 +n44012020014 +n44012020015 +n44012020016 +n44012020017 +n44012020018 +n44012020019 +n44012020020 +n44012020021 +n44012020022 +n44012020023 +n44012020024 +n44012020025 +n44012020026 +n44012020027 +n44012020028 +n44012020029 +n44012020030 +n44012020031 +n44012021002 +n44012021001 +n44012021003 +n44012021004 +n44012021005 +n44012021006 +n44012021007 +n44012021008 +n44012021009 +n44012021010 +n44012021011 +n44012021012 +n44012021013 +n44012021014 +n44012021015 +n44012022002 +n44012022001 +n44012022003 +n44012022004 +n44012022005 +n44012022006 +n44012022007 +n44012022008 +n44012022009 +n44012023002 +n44012023001 +n44012023003 +n44012023004 +n44012023005 +n44012023006 +n44012023007 +n44012023008 +n44012023009 +n44012023010 +n44012023011 +n44012023012 +n44012023013 +n44012023014 +n44012023015 +n44012023016 +n44012023017 +n44012023018 +n44012024002 +n44012024001 +n44012024003 +n44012024004 +n44012024005 +n44012024006 +n44012024007 +n44012024008 +n44012025002 +n44012025001 +n44012025003 +n44012025004 +n44012025005 +n44012025006 +n44012025007 +n44012025008 +n44012025009 +n44012025010 +n44012025011 +n44012025012 +n44012025013 +n44012025014 +n44012025015 +n44013001002 +n44013001001 +n44013001003 +n44013001004 +n44013001005 +n44013001006 +n44013001007 +n44013001008 +n44013001009 +n44013001010 +n44013001011 +n44013001013 +n44013001012 +n44013001014 +n44013001015 +n44013001016 +n44013001017 +n44013001018 +n44013001019 +n44013001020 +n44013001021 +n44013001022 +n44013001023 +n44013001025 +n44013001024 +n44013001026 +n44013001027 +n44013001028 +n44013001029 +n44013001030 +n44013001031 +n44013002002 +n44013002001 +n44013002003 +n44013002004 +n44013002005 +n44013002006 +n44013002007 +n44013002008 +n44013002009 +n44013002010 +n44013002011 +n44013002012 +n44013002014 +n44013002013 +n44013002015 +n44013002016 +n44013002017 +n44013002018 +n44013002019 +n44013002020 +n44013002021 +n44013002022 +n44013002023 +n44013002024 +n44013002025 +n44013003001 +n44013003002 +n44013003003 +n44013003004 +n44013003005 +n44013003006 +n44013003007 +n44013003008 +n44013003009 +n44013003010 +n44013004002 +n44013004003 +n44013004001 +n44013004004 +n44013004005 +n44013004006 +n44013004007 +n44013004008 +n44013004009 +n44013004010 +n44013004011 +n44013004013 +n44013004012 +n44013004014 +n44013004015 +n44013004016 +n44013005001 +n44013005002 +n44013005003 +n44013005004 +n44013005005 +n44013005006 +n44013005007 +n44013005008 +n44013005009 +n44013005010 +n44013005011 +n44013005012 +n44013005013 +n44013005014 +n44013005016 +n44013005015 +n44013005017 +n44013005018 +n44013005019 +n44013006002 +n44013006001 +n44013006003 +n44013006004 +n44013006005 +n44013006006 +n44013006007 +n44013006008 +n44013006009 +n44013006010 +n44013006011 +n44013006012 +n44013006013 +n44013006014 +n44013006015 +n44013006016 +n44013007001 +n44013007002 +n44013007003 +n44013007004 +n44013007005 +n44013007006 +n44013007007 +n44013007008 +n44013007009 +n44013007010 +n44013007011 +n44013007012 +n44013007013 +n44013007014 +n44013007015 +n44013007016 +n44013007017 +n44013007018 +n44013007019 +n44013007020 +n44013008002 +n44013008001 +n44013008003 +n44013008004 +n44013008005 +n44013008006 +n44013008008 +n44013008007 +n44013008009 +n44013008010 +n44013008011 +n44013008012 +n44013008013 +n44013008014 +n44013008015 +n44013008016 +n44013008017 +n44013008018 +n44013008019 +n44013009002 +n44013009001 +n44013009003 +n44013009004 +n44013009005 +n44013009006 +n44013009007 +n44013009008 +n44013009009 +n44013009010 +n44013009011 +n44013010001 +n44013010002 +n44013010003 +n44013010004 +n44013010005 +n44013010006 +n44013010007 +n44013010008 +n44013010009 +n44013010010 +n44013010011 +n44013010012 +n44013010013 +n44013010014 +n44013010015 +n44013010016 +n44013010017 +n44013010018 +n44013010019 +n44013010020 +n44013010021 +n44013010022 +n44013011001 +n44013011002 +n44013011003 +n44013011004 +n44013011005 +n44013011006 +n44013011007 +n44013011008 +n44013011009 +n44013011010 +n44013011011 +n44013011012 +n44013011013 +n44013011014 +n44013011015 +n44013011016 +n44013011018 +n44013011017 +n44013011019 +n44013011020 +n44013011021 +n44013011022 +n44013011023 +n44013011024 +n44013011025 +n44013011026 +n44013011027 +n44013011028 +n44013012001 +n44013012003 +n44013012004 +n44013012002 +n44013012005 +n44013012006 +n44013012007 +n44013012008 +n44013012009 +n44013012010 +n44013012011 +n44013012012 +n44013012013 +n44013013002 +n44013013001 +n44013013003 +n44013013004 +n44013013005 +n44013013006 +n44013013007 +n44013013008 +n44013013009 +n44013013010 +n44013013011 +n44013013012 +n44013013013 +n44013013015 +n44013013014 +n44013013016 +n44013013017 +n44013013018 +n44013013019 +n44013013020 +n44013013021 +n44013014002 +n44013014001 +n44013014003 +n44013014004 +n44013014005 +n44013014006 +n44013014007 +n44013014008 +n44013014009 +n44013014010 +n44013014011 +n44013014012 +n44013014013 +n44013014014 +n44013014015 +n44013014016 +n44013014017 +n44013014018 +n44013014019 +n44013014020 +n44013014021 +n44013015002 +n44013015001 +n44013015003 +n44013015004 +n44013015005 +n44013015006 +n44013015007 +n44013015008 +n44013015009 +n44013015010 +n44013015011 +n44013015012 +n44013015013 +n44013015014 +n44013015015 +n44013015016 +n44013015017 +n44013015018 +n44013015020 +n44013015021 +n44013015022 +n44013015019 +n44013015023 +n44013015024 +n44013015025 +n44013015026 +n44013015027 +n44013015028 +n44013016002 +n44013016003 +n44013016001 +n44013016004 +n44013016005 +n44013016006 +n44013016007 +n44013016008 +n44013016009 +n44013016010 +n44013016011 +n44013016012 +n44013016013 +n44013016014 +n44013016015 +n44013016016 +n44013017001 +n44013017002 +n44013017003 +n44013017004 +n44013017005 +n44013017006 +n44013017007 +n44013017008 +n44013017009 +n44013017010 +n44013017011 +n44013017012 +n44013017013 +n44013017014 +n44013017015 +n44013017016 +n44013017017 +n44013017018 +n44013017019 +n44013017020 +n44013017021 +n44013017022 +n44013017023 +n44013017024 +n44013017025 +n44013017026 +n44013017027 +n44013017028 +n44013018001 +n44013018002 +n44013018003 +n44013018004 +n44013018005 +n44013018006 +n44013018007 +n44013018008 +n44013018009 +n44013019001 +n44013019002 +n44013019003 +n44013019004 +n44013019005 +n44013019006 +n44013019007 +n44013019008 +n44013019009 +n44013019010 +n44013019011 +n44013020001 +n44013020002 +n44013020003 +n44013020004 +n44013020005 +n44013020006 +n44013020007 +n44013020008 +n44013020009 +n44013020010 +n44013020011 +n44013020012 +n44013020013 +n44013021001 +n44013021002 +n44013021003 +n44013021004 +n44013021005 +n44013021006 +n44013021007 +n44013021008 +n44013021009 +n44013021010 +n44013021011 +n44013021012 +n44013021013 +n44013021014 +n44013021015 +n44013021016 +n44013021017 +n44013021018 +n44013022001 +n44013022002 +n44013022003 +n44013022004 +n44013022005 +n44013022006 +n44013022007 +n44013022008 +n44013022009 +n44013022010 +n44013022011 +n44013022012 +n44013022013 +n44013022014 +n44013022015 +n44013022016 +n44013022017 +n44013022018 +n44013022019 +n44013022020 +n44013022021 +n44013022022 +n44013022023 +n44013022024 +n44013022025 +n44013022026 +n44013022027 +n44013022028 +n44013022029 +n44013023002 +n44013023003 +n44013023004 +n44013023001 +n44013023005 +n44013023006 +n44013023007 +n44013023008 +n44013023009 +n44013023010 +n44013023011 +n44013023012 +n44013023013 +n44013024001 +n44013024002 +n44013024003 +n44013024004 +n44013024005 +n44013024006 +n44013024007 +n44013024008 +n44013024009 +n44013024010 +n44013024011 +n44013024012 +n44013024013 +n44013025002 +n44013025001 +n44013025003 +n44013025004 +n44013025005 +n44013025006 +n44013025007 +n44013025008 +n44013025009 +n44013025011 +n44013025010 +n44013025012 +n44013025013 +n44013025014 +n44013025015 +n44013025016 +n44013025017 +n44013025018 +n44013025019 +n44013025020 +n44013025021 +n44013025022 +n44013025023 +n44013025024 +n44013025025 +n44013025026 +n44013025027 +n44013025028 +n44013026001 +n44013026002 +n44013026003 +n44013026004 +n44013026005 +n44013026006 +n44013026007 +n44013026008 +n44013026009 +n44013026010 +n44013026011 +n44013026012 +n44013026013 +n44013026014 +n44013026015 +n44013026016 +n44013026017 +n44013026018 +n44013026019 +n44013027002 +n44013027001 +n44013027003 +n44013027004 +n44013027005 +n44013027006 +n44013027007 +n44013027008 +n44013027009 +n44013027010 +n44013027011 +n44013027012 +n44013027013 +n44013027014 +n44013027015 +n44013027016 +n44013027017 +n44013027018 +n44013027019 +n44013027020 +n44013027021 +n44013027022 +n44013027023 +n44013028001 +n44013028002 +n44013028003 +n44013028004 +n44013028005 +n44013028006 +n44013028007 +n44013028008 +n44013028009 +n44013029002 +n44013029001 +n44013029003 +n44013029004 +n44013029005 +n44013029006 +n44013029007 +n44013029008 +n44013029009 +n44013029010 +n44013029011 +n44013029012 +n44013029013 +n44013029014 +n44013029015 +n44013030002 +n44013030001 +n44013030003 +n44013030004 +n44013030005 +n44013030006 +n44013030007 +n44013031001 +n44013031002 +n44013031003 +n44013031004 +n44013031005 +n44013031006 +n44013031007 +n44013031008 +n44013031009 +n44013031010 +n44013031011 +n44013031012 +n44013031013 +n44013031014 +n44013031015 +n44013031016 +n44013031017 +n44013031018 +n44013031019 +n44013031020 +n44013031021 +n44013032001 +n44013032002 +n44013032003 +n44013032004 +n44013032005 +n44013032006 +n44013032007 +n44013032008 +n44013032010 +n44013032009 +n44013033001 +n44013033002 +n44013033003 +n44013033004 +n44013033005 +n44013033006 +n44013033007 +n44013033008 +n44013033009 +n44013033010 +n44013033011 +n44013033012 +n44013033013 +n44013033014 +n44013033015 +n44013033017 +n44013033018 +n44013033016 +n44013033019 +n44013033020 +n44013033021 +n44013033022 +n44013033023 +n44013033024 +n44013033025 +n44013033026 +n44013034002 +n44013034001 +n44013034003 +n44013034004 +n44013034005 +n44013034006 +n44013034007 +n44013034008 +n44013034009 +n44013034010 +n44013034011 +n44013034012 +n44013034013 +n44013034014 +n44013034015 +n44013034016 +n44013034017 +n44013034018 +n44013034019 +n44013034020 +n44013034021 +n44013035001 +n44013035002 +n44013035003 +n44013035004 +n44013035005 +n44013035006 +n44013035007 +n44013035008 +n44013035009 +n44013035010 +n44013035011 +n44013035012 +n44013036003 +n44013036002 +n44013036001 +n44013036004 +n44013036005 +n44013036006 +n44013036007 +n44013036008 +n44013036009 +n44013036010 +n44013036011 +n44013036012 +n44013036013 +n44013036014 +n44013036015 +n44013036016 +n44013036017 +n44013036018 +n44013036019 +n44013036020 +n44013037002 +n44013037001 +n44013037003 +n44013037004 +n44013037005 +n44013037006 +n44013037007 +n44013037008 +n44013038002 +n44013038001 +n44013038003 +n44013038004 +n44013038005 +n44013038006 +n44013038007 +n44013038008 +n44013038009 +n44013038010 +n44013038011 +n44013038012 +n44013038013 +n44013038014 +n44013038015 +n44013038016 +n44013038017 +n44013038018 +n44013038019 +n44013038020 +n44013038021 +n44013038022 +n44013038023 +n44013039001 +n44013039002 +n44013039003 +n44013039004 +n44013039005 +n44013039006 +n44013040002 +n44013040001 +n44013040003 +n44013040004 +n44013040005 +n44013040006 +n44013040007 +n44013040008 +n44013040009 +n44013041001 +n44013041002 +n44013041003 +n44013041004 +n44013041005 +n44013041006 +n44013041007 +n44013041008 +n44013041009 +n44013041010 +n44013041011 +n44013041012 +n44013041013 +n44013041014 +n44013041015 +n44013041016 +n44013041017 +n44013041018 +n44013041019 +n44013041020 +n44013041021 +n44013041022 +n44013041023 +n44013041024 +n44013042002 +n44013042001 +n44013042003 +n44013042004 +n44013042005 +n44013042006 +n44013042007 +n44013042008 +n44013042009 +n44013042010 +n44013042011 +n44013042012 +n44013042013 +n44013043002 +n44013043001 +n44013043003 +n44013043004 +n44013043005 +n44013043006 +n44013043007 +n44013043008 +n44013043009 +n44013043010 +n44013043011 +n44013043012 +n44013043013 +n44013043014 +n44013043015 +n44013043016 +n44013043017 +n44013043018 +n44013043019 +n44013043020 +n44013043021 +n44013043022 +n44013043023 +n44013043024 +n44013043025 +n44013043026 +n44013043027 +n44013044002 +n44013044001 +n44013044003 +n44013044004 +n44013044005 +n44013044006 +n44013044007 +n44013044008 +n44013044009 +n44013044010 +n44013044011 +n44013044012 +n44013044013 +n44013044014 +n44013045002 +n44013045003 +n44013045004 +n44013045001 +n44013045005 +n44013045006 +n44013045007 +n44013045008 +n44013045009 +n44013045010 +n44013045011 +n44013045012 +n44013045013 +n44013045014 +n44013045015 +n44013046002 +n44013046001 +n44013046003 +n44013046004 +n44013046005 +n44013046006 +n44013046007 +n44013046008 +n44013046010 +n44013046011 +n44013046009 +n44013046012 +n44013046013 +n44013046014 +n44013046015 +n44013046016 +n44013046017 +n44013046018 +n44013046019 +n44013046020 +n44013046021 +n44013046022 +n44013046024 +n44013046025 +n44013046023 +n44013046026 +n44013046027 +n44013046028 +n44013046029 +n44013046030 +n44013046031 +n44013046032 +n44013046033 +n44013047002 +n44013047001 +n44013047003 +n44013047004 +n44013047005 +n44013047006 +n44013047007 +n44013047008 +n44013047009 +n44013047010 +n44013047011 +n44013047012 +n44013047013 +n44013047014 +n44013047015 +n44013047016 +n44013047017 +n44013047018 +n44013047019 +n44013047020 +n44013048002 +n44013048001 +n44013048003 +n44013048004 +n44013048005 +n44013048006 +n44013048007 +n44013048008 +n44013048009 +n44013048010 +n44013048011 +n44013048012 +n44013048013 +n44013048014 +n44013048015 +n44013048016 +n44013048017 +n44013048018 +n44013048019 +n44013049002 +n44013049001 +n44013049003 +n44013049004 +n44013049005 +n44013049006 +n44013049007 +n44013049008 +n44013049009 +n44013049010 +n44013050002 +n44013050001 +n44013050003 +n44013050004 +n44013050005 +n44013050006 +n44013050007 +n44013050008 +n44013050009 +n44013050010 +n44013050011 +n44013050012 +n44013050013 +n44013050014 +n44013050015 +n44013050016 +n44013050017 +n44013050018 +n44013050019 +n44013050020 +n44013050021 +n44013050022 +n44013050023 +n44013050024 +n44013050025 +n44013050026 +n44013050027 +n44013050028 +n44013050029 +n44013051002 +n44013051001 +n44013051003 +n44013051004 +n44013051005 +n44013051006 +n44013051007 +n44013051008 +n44013051009 +n44013051010 +n44013051011 +n44013051012 +n44013052002 +n44013052001 +n44013052003 +n44013052004 +n44013052005 +n44013052006 +n44013052007 +n44013052008 +n44014001002 +n44014001001 +n44014001003 +n44014001004 +n44014001005 +n44014001006 +n44014001007 +n44014001008 +n44014001009 +n44014001010 +n44014001011 +n44014001012 +n44014001013 +n44014001014 +n44014001015 +n44014001016 +n44014001017 +n44014001018 +n44014001019 +n44014001021 +n44014001020 +n44014001022 +n44014001023 +n44014001024 +n44014001025 +n44014002002 +n44014002001 +n44014002003 +n44014002004 +n44014002005 +n44014002006 +n44014002007 +n44014002008 +n44014002009 +n44014002010 +n44014002011 +n44014002012 +n44014002013 +n44014002014 +n44014003003 +n44014003002 +n44014003001 +n44014003004 +n44014003005 +n44014003006 +n44014003007 +n44014003008 +n44014003009 +n44014003010 +n44014003011 +n44014003012 +n44014003013 +n44014003014 +n44014003015 +n44014003016 +n44014003017 +n44014003018 +n44014003019 +n44014003020 +n44014003021 +n44014003022 +n44014003023 +n44014003024 +n44014003025 +n44014003026 +n44014004002 +n44014004001 +n44014004003 +n44014004004 +n44014004005 +n44014004006 +n44014004007 +n44014004009 +n44014004008 +n44014004010 +n44014004011 +n44014004012 +n44014004013 +n44014004015 +n44014004014 +n44014004016 +n44014004017 +n44014004018 +n44014005002 +n44014005001 +n44014005003 +n44014005004 +n44014005005 +n44014005007 +n44014005006 +n44014005008 +n44014005009 +n44014005010 +n44014005011 +n44014005012 +n44014005013 +n44014005014 +n44014005015 +n44014005016 +n44014005017 +n44014006001 +n44014006002 +n44014006003 +n44014006004 +n44014006005 +n44014006006 +n44014006007 +n44014006008 +n44014006009 +n44014006010 +n44014006011 +n44014006012 +n44014006013 +n44014007001 +n44014007002 +n44014007003 +n44014008001 +n44014008002 +n44014008003 +n44014008004 +n44014008007 +n44014008008 +n44014008005 +n44014008006 +n44014008009 +n44014008010 +n44014008011 +n44014008012 +n44014008013 +n44014008014 +n44014008015 +n44014008016 +n44014008017 +n44014009001 +n44014009002 +n44014009003 +n44014009004 +n44014009005 +n44014009006 +n44014009007 +n44014009008 +n44014009009 +n44014009010 +n44014009011 +n44014009012 +n44014009013 +n44014009014 +n44014009015 +n44014010001 +n44014010002 +n44014010003 +n44014010004 +n44014010005 +n44014010006 +n44014010007 +n44014010008 +n44014010009 +n44014010010 +n44014010011 +n44014010012 +n44014010013 +n44014011002 +n44014011001 +n44014011003 +n44014011004 +n44014011005 +n44014011006 +n44014011007 +n44014011008 +n44014011009 +n44014011010 +n44014011011 +n44014011012 +n44014011013 +n44014011014 +n44014011015 +n44014011016 +n44014011017 +n44014011018 +n44014011019 +n44014011020 +n44014012002 +n44014012001 +n44014012003 +n44014012004 +n44014012005 +n44014012007 +n44014012006 +n44014012008 +n44014012009 +n44014012010 +n44014012011 +n44014012012 +n44014012013 +n44014012014 +n44014012015 +n44014012016 +n44014013002 +n44014013001 +n44014013003 +n44014013004 +n44014013005 +n44014013006 +n44014013007 +n44014013008 +n44014013009 +n44014013010 +n44014013011 +n44014013012 +n44014013013 +n44014013014 +n44014013015 +n44014013016 +n44014013017 +n44014013018 +n44014013019 +n44014013020 +n44014013021 +n44014013022 +n44014014002 +n44014014001 +n44014014003 +n44014014004 +n44014014005 +n44014014006 +n44014014007 +n44014014008 +n44014014009 +n44014014010 +n44014014011 +n44014014012 +n44014014013 +n44014014014 +n44014014015 +n44014014016 +n44014015001 +n44014015002 +n44014015003 +n44014015004 +n44014015005 +n44014015006 +n44014015007 +n44014015008 +n44014015009 +n44014015011 +n44014015012 +n44014015010 +n44014015013 +n44014015014 +n44014015015 +n44014015016 +n44014015017 +n44014015018 +n44014015019 +n44014015020 +n44014015021 +n44014015022 +n44014015023 +n44014015024 +n44014015025 +n44014015026 +n44014015027 +n44014015028 +n44014015029 +n44014015030 +n44014015031 +n44014015032 +n44014015033 +n44014015034 +n44014015035 +n44014015036 +n44014015037 +n44014016001 +n44014016002 +n44014016003 +n44014016004 +n44014016005 +n44014016006 +n44014016007 +n44014016008 +n44014016009 +n44014016010 +n44014016011 +n44014016012 +n44014016013 +n44014017001 +n44014017002 +n44014017003 +n44014017004 +n44014017005 +n44014017006 +n44014017007 +n44014017008 +n44014017009 +n44014017010 +n44014017011 +n44014017012 +n44014017013 +n44014017014 +n44014017015 +n44014017016 +n44014017017 +n44014017018 +n44014017019 +n44014017020 +n44014018001 +n44014018002 +n44014018003 +n44014018004 +n44014018005 +n44014018006 +n44014018007 +n44014018008 +n44014018009 +n44014018010 +n44014018011 +n44014019002 +n44014019001 +n44014019003 +n44014019004 +n44014019005 +n44014019006 +n44014019007 +n44014019008 +n44014019009 +n44014019010 +n44014019011 +n44014019012 +n44014019013 +n44014019014 +n44014019015 +n44014019016 +n44014019017 +n44014019018 +n44014019019 +n44014019020 +n44014019021 +n44014019022 +n44014020002 +n44014020001 +n44014020003 +n44014020004 +n44014020005 +n44014020006 +n44014020007 +n44014020008 +n44014020009 +n44014020010 +n44014020011 +n44014020012 +n44014020013 +n44014020014 +n44014020015 +n44014020016 +n44014020017 +n44014020018 +n44014020019 +n44014021002 +n44014021001 +n44014021003 +n44014021004 +n44014021005 +n44014021006 +n44014021007 +n44014021008 +n44014021009 +n44014021010 +n44014021011 +n44014021012 +n44014021013 +n44014021014 +n44014021015 +n44014021016 +n44014021017 +n44014021018 +n44014022001 +n44014022002 +n44014022003 +n44014022004 +n44014022005 +n44014022006 +n44014022007 +n44014022008 +n44014022009 +n44014022010 +n44014022011 +n44014022015 +n44014022012 +n44014022013 +n44014022014 +n44014022016 +n44014022017 +n44014022018 +n44014022019 +n44014022020 +n44014022021 +n44014022022 +n44014023002 +n44014023001 +n44014023003 +n44014023004 +n44014023005 +n44014023006 +n44014023007 +n44014023008 +n44014023009 +n44014023010 +n44014023011 +n44014023012 +n44014023013 +n44014023014 +n44014023015 +n44014023016 +n44014024001 +n44014024002 +n44014024003 +n44014024004 +n44014024005 +n44014024006 +n44014024007 +n44014024008 +n44014025001 +n44014025002 +n44014025003 +n44014025004 +n44014025005 +n44014025006 +n44014025007 +n44014025008 +n44014025009 +n44014026001 +n44014026002 +n44014026003 +n44014026004 +n44014026005 +n44014026006 +n44014026007 +n44014026008 +n44014026009 +n44014026010 +n44014026011 +n44014026012 +n44014026013 +n44014026014 +n44014026015 +n44014026016 +n44014027002 +n44014027001 +n44014027003 +n44014027004 +n44014027005 +n44014027006 +n44014027007 +n44014027008 +n44014027009 +n44014027010 +n44014027011 +n44014027012 +n44014027013 +n44014027014 +n44014027015 +n44014027016 +n44014027017 +n44014027018 +n44014027019 +n44014027020 +n44014028002 +n44014028001 +n44014028003 +n44014028004 +n44014028005 +n44014028006 +n44014028007 +n44014028008 +n44015001001 +n44015001002 +n44015001003 +n44015001004 +n44015001005 +n44015001006 +n44015001007 +n44015001008 +n44015001009 +n44015001010 +n44015001011 +n44015001012 +n44015001013 +n44015001014 +n44015001015 +n44015001016 +n44015001017 +n44015001018 +n44015001019 +n44015001020 +n44015002002 +n44015002001 +n44015002003 +n44015002004 +n44015002005 +n44015002006 +n44015002007 +n44015002008 +n44015002009 +n44015002010 +n44015002011 +n44015002012 +n44015002013 +n44015002014 +n44015002015 +n44015002016 +n44015002017 +n44015002018 +n44015002019 +n44015002020 +n44015002021 +n44015002022 +n44015002023 +n44015002024 +n44015002025 +n44015002026 +n44015002027 +n44015002028 +n44015002029 +n44015002030 +n44015002031 +n44015002032 +n44015002033 +n44015002034 +n44015002035 +n44015003002 +n44015003003 +n44015003001 +n44015003004 +n44015003005 +n44015003006 +n44015003007 +n44015003008 +n44015003009 +n44015003010 +n44015003011 +n44015003012 +n44015003013 +n44015003014 +n44015003015 +n44015003016 +n44015003017 +n44015003018 +n44015003019 +n44015003020 +n44015003021 +n44015003022 +n44015003023 +n44015003024 +n44015003025 +n44015004002 +n44015004001 +n44015004003 +n44015004004 +n44015004005 +n44015004006 +n44015004007 +n44015004008 +n44015004009 +n44015004010 +n44015004011 +n44015004012 +n44015004013 +n44015004014 +n44015004016 +n44015004015 +n44015004017 +n44015004018 +n44015004019 +n44015004020 +n44015004021 +n44015004022 +n44015005002 +n44015005001 +n44015005003 +n44015005004 +n44015005005 +n44015005006 +n44015005007 +n44015005008 +n44015005009 +n44015005010 +n44015005011 +n44015005012 +n44015005013 +n44015005014 +n44015005015 +n44015005017 +n44015005016 +n44015005018 +n44015005019 +n44015005020 +n44015005021 +n44015006002 +n44015006001 +n44015006003 +n44015006004 +n44015006005 +n44015006006 +n44015006007 +n44015006008 +n44015006009 +n44015006010 +n44015006011 +n44015006012 +n44015007002 +n44015007001 +n44015007003 +n44015007004 +n44015007005 +n44015007006 +n44015007007 +n44015007008 +n44015007009 +n44015007010 +n44015007011 +n44015007012 +n44015007013 +n44015007014 +n44015007015 +n44015007016 +n44015007017 +n44015007018 +n44015007019 +n44015007020 +n44015007021 +n44015007022 +n44015007023 +n44015007024 +n44015007025 +n44015007026 +n44015007027 +n44015007028 +n44015007029 +n44015007030 +n44015007031 +n44015007032 +n44015007033 +n44015007034 +n44015007035 +n44015008001 +n44015008002 +n44015008003 +n44015008004 +n44015008005 +n44015008006 +n44015008007 +n44015008008 +n44015008009 +n44015008010 +n44015008011 +n44015008012 +n44015008013 +n44015008014 +n44015009001 +n44015009002 +n44015009003 +n44015009004 +n44015009006 +n44015009005 +n44015009007 +n44015009008 +n44015009009 +n44015009010 +n44015009011 +n44015009012 +n44015009013 +n44015009014 +n44015010002 +n44015010001 +n44015010003 +n44015010004 +n44015010005 +n44015010006 +n44015010007 +n44015010008 +n44015010009 +n44015010010 +n44015010011 +n44015010012 +n44015010013 +n44015010014 +n44015010022 +n44015010015 +n44015010016 +n44015010017 +n44015010018 +n44015010019 +n44015010020 +n44015010021 +n44015011001 +n44015011008 +n44015011002 +n44015011003 +n44015011004 +n44015011005 +n44015011006 +n44015011007 +n44015011009 +n44015011010 +n44015011011 +n44015011012 +n44015011013 +n44015012002 +n44015012001 +n44015012003 +n44015012004 +n44015012005 +n44015012006 +n44015012007 +n44015012008 +n44015012009 +n44015012010 +n44015012011 +n44015012016 +n44015012017 +n44015012018 +n44015012012 +n44015012013 +n44015012014 +n44015012015 +n44015012019 +n44015012020 +n44015012021 +n44015012022 +n44015012023 +n44015013002 +n44015013001 +n44015013003 +n44015013004 +n44015013005 +n44015013006 +n44015013007 +n44015013008 +n44015013009 +n44015013010 +n44015013011 +n44015013012 +n44015014001 +n44015014002 +n44015014003 +n44015014004 +n44015014005 +n44015014006 +n44015014007 +n44015014008 +n44015014009 +n44015014010 +n44015014011 +n44015014012 +n44015014013 +n44015014014 +n44015015001 +n44015015002 +n44015015003 +n44015015004 +n44015015005 +n44015015006 +n44015015007 +n44015015008 +n44015015009 +n44015016001 +n44015016002 +n44015016003 +n44015016004 +n44015016005 +n44015016006 +n44015016007 +n44015016008 +n44015016009 +n44015016010 +n44015016011 +n44015016012 +n44015016013 +n44015016014 +n44015016015 +n44015016016 +n44015016017 +n44015016018 +n44015017001 +n44015017002 +n44015017003 +n44015017004 +n44015017005 +n44015017006 +n44015017007 +n44015017008 +n44015017009 +n44015017010 +n44015017011 +n44015017012 +n44015017013 +n44015017014 +n44015017015 +n44015017016 +n44015017017 +n44015017018 +n44015017019 +n44015017020 +n44015017021 +n44015017022 +n44015017023 +n44015017024 +n44015017025 +n44015018001 +n44015018002 +n44015018003 +n44015019001 +n44015019002 +n44015019003 +n44015019004 +n44015019005 +n44015019006 +n44015019007 +n44015019008 +n44015019009 +n44015019010 +n44015019011 +n44015019012 +n44015019013 +n44015020001 +n44015020002 +n44015020003 +n44015020004 +n44015020005 +n44015020006 +n44015020007 +n44015020008 +n44015020009 +n44015020010 +n44015020011 +n44015020012 +n44015020013 +n44015020014 +n44015020015 +n44015020016 +n44015020017 +n44015021002 +n44015021001 +n44015021003 +n44015021004 +n44015021005 +n44015021006 +n44015021007 +n44015021008 +n44015021009 +n44015021010 +n44015021011 +n44015021012 +n44015021013 +n44015021014 +n44015021015 +n44015021016 +n44015021017 +n44015021018 +n44015022001 +n44015022002 +n44015022003 +n44015022004 +n44015022005 +n44015022006 +n44015022007 +n44015022008 +n44015022009 +n44015022010 +n44015022011 +n44015022012 +n44015022013 +n44015022014 +n44015022015 +n44015022016 +n44015022017 +n44015022018 +n44015022019 +n44015022020 +n44015022021 +n44015022022 +n44015022023 +n44015022024 +n44015022025 +n44015022026 +n44015022027 +n44015022028 +n44015022029 +n44015022030 +n44015022031 +n44015022032 +n44015022033 +n44015022034 +n44015023001 +n44015023002 +n44015023003 +n44015023004 +n44015023005 +n44015023006 +n44015023007 +n44015023008 +n44015023009 +n44015023010 +n44015023011 +n44015023012 +n44015023013 +n44015023014 +n44015023015 +n44015023016 +n44015023017 +n44015023018 +n44015023019 +n44015023020 +n44015023021 +n44015023022 +n44015023023 +n44015024001 +n44015024002 +n44015024003 +n44015024004 +n44015024005 +n44015024006 +n44015024007 +n44015024008 +n44015024009 +n44015024010 +n44015024011 +n44015024012 +n44015024013 +n44015024014 +n44015024015 +n44015024016 +n44015025001 +n44015025002 +n44015025003 +n44015025004 +n44015025005 +n44015025006 +n44015025007 +n44015025008 +n44015025009 +n44015025010 +n44015025011 +n44015025012 +n44015025013 +n44015025014 +n44015025015 +n44015025016 +n44015026001 +n44015026002 +n44015026003 +n44015026004 +n44015026005 +n44015026006 +n44015026007 +n44015026008 +n44015026009 +n44015026010 +n44015026011 +n44015026012 +n44015026013 +n44015027002 +n44015027001 +n44015027003 +n44015027004 +n44015027005 +n44015027006 +n44015027007 +n44015027008 +n44015027009 +n44015027010 +n44015027011 +n44015027012 +n44015028002 +n44015028001 +n44015028003 +n44015028004 +n44015028005 +n44015028006 +n44015028007 +n44015028008 +n44015028009 +n44015028010 +n44015028013 +n44015028011 +n44015028012 +n44015028014 +n44015028015 +n44015028016 +n44015028017 +n44015029001 +n44015029002 +n44015029003 +n44015029004 +n44015029005 +n44015029006 +n44015029007 +n44015029008 +n44015029009 +n44015029010 +n44015029011 +n44015029012 +n44015029013 +n44015029014 +n44015029015 +n44015030002 +n44015030003 +n44015030001 +n44015030004 +n44015030005 +n44015030006 +n44015030007 +n44015030008 +n44015030009 +n44015030010 +n44015030011 +n44015030012 +n44015030013 +n44015030014 +n44015031002 +n44015031001 +n44015031003 +n44015031004 +n44015031005 +n44015031006 +n44015032002 +n44015032001 +n44015032003 +n44015032004 +n44015032005 +n44015032006 +n44015032007 +n44015032008 +n44015032009 +n44015032010 +n44015032011 +n44015032012 +n44015032013 +n44015032014 +n44015032015 +n44015032016 +n44015033002 +n44015033001 +n44015033003 +n44015033004 +n44015033005 +n44015033006 +n44015033007 +n44015033008 +n44015033009 +n44015033010 +n44015033011 +n44015033012 +n44015033013 +n44015035002 +n44015035001 +n44015035003 +n44015035004 +n44015035005 +n44015035006 +n44015035007 +n44015035008 +n44015035009 +n44015035010 +n44015035011 +n44015035012 +n44015035013 +n44015035014 +n44015035015 +n44015035016 +n44015035017 +n44015035018 +n44015036002 +n44015036001 +n44015036003 +n44015036004 +n44015036005 +n44015036006 +n44015036007 +n44015036008 +n44015036010 +n44015036009 +n44015036011 +n44015036012 +n44015036013 +n44015036014 +n44015036015 +n44015036016 +n44015036017 +n44015036018 +n44015036019 +n44015036020 +n44015036021 +n44015036022 +n44015036023 +n44015036024 +n44015036025 +n44015037002 +n44015037001 +n44015037003 +n44015037004 +n44015037005 +n44015037006 +n44015037007 +n44015037008 +n44015037009 +n44015037010 +n44015038002 +n44015038001 +n44015038003 +n44015038004 +n44015038005 +n44015038006 +n44015038007 +n44015038008 +n44015038009 +n44015038010 +n44015038011 +n44015038012 +n44015038013 +n44015038014 +n44015038015 +n44015038016 +n44015038017 +n44015038018 +n44015038019 +n44015039002 +n44015039001 +n44015039003 +n44015039004 +n44015039005 +n44015039006 +n44015039007 +n44015039008 +n44015039010 +n44015039009 +n44015039011 +n44015039012 +n44015039013 +n44015039014 +n44015039015 +n44015039016 +n44015039017 +n44015040002 +n44015040001 +n44015040003 +n44015040004 +n44015040005 +n44015040006 +n44015040007 +n44015040008 +n44015040009 +n44015040010 +n44015040011 +n44015040012 +n44015040013 +n44015041002 +n44015041001 +n44015041003 +n44015041004 +n44015041005 +n44015041006 +n44015041007 +n44015041008 +n44015041009 +n44016001002 +n44016001001 +n44016001003 +n44016001004 +n44016001005 +n44016001006 +n44016001007 +n44016001008 +n44016001009 +n44016001010 +n44016001013 +n44016001014 +n44016001011 +n44016001012 +n44016001015 +n44016001016 +n44016001017 +n44016001018 +n44016001019 +n44016001020 +n44016001022 +n44016001021 +n44016001023 +n44016002001 +n44016002002 +n44016002003 +n44016002004 +n44016002005 +n44016002006 +n44016002007 +n44016002008 +n44016002009 +n44016003002 +n44016003003 +n44016003004 +n44016003001 +n44016003005 +n44016003006 +n44016003007 +n44016003008 +n44016003009 +n44016003010 +n44016003011 +n44016003012 +n44016003013 +n44016003014 +n44016003015 +n44016003016 +n44016003017 +n44016003018 +n44016003019 +n44016003020 +n44016003022 +n44016003021 +n44016003023 +n44016003024 +n44016003025 +n44016003026 +n44016003027 +n44016003028 +n44016003029 +n44016004002 +n44016004001 +n44016004003 +n44016004004 +n44016004005 +n44016004006 +n44016004007 +n44016004008 +n44016004009 +n44016004010 +n44016004011 +n44016004012 +n44016004013 +n44016004014 +n44016004015 +n44016004016 +n44016004017 +n44016004018 +n44016004019 +n44016004020 +n44016005002 +n44016005003 +n44016005001 +n44016005004 +n44016005005 +n44016005006 +n44016005007 +n44016005008 +n44016005009 +n44016005010 +n44016005011 +n44016005012 +n44016005013 +n44016006002 +n44016006001 +n44016006003 +n44016006004 +n44016006005 +n44016006006 +n44016006007 +n44016006008 +n44016006009 +n44016006010 +n44016006011 +n44016006012 +n44016006013 +n44016006014 +n44016006015 +n44016006016 +n44016006017 +n44016006018 +n44016007002 +n44016007001 +n44016007003 +n44016007004 +n44016007005 +n44016007006 +n44016007007 +n44016007008 +n44016007009 +n44016007010 +n44016007011 +n44016007012 +n44016007013 +n44016007014 +n44016007015 +n44016007016 +n44016007017 +n44016008002 +n44016008001 +n44016008003 +n44016008004 +n44016008005 +n44016008006 +n44016008007 +n44016009001 +n44016009002 +n44016009003 +n44016009004 +n44016009005 +n44016009006 +n44016009007 +n44016009008 +n44016009009 +n44016009010 +n44016009011 +n44016009012 +n44016009013 +n44016009014 +n44016009015 +n44016009016 +n44016009017 +n44016009018 +n44016009019 +n44016009020 +n44016009021 +n44016009022 +n44016010002 +n44016010001 +n44016010003 +n44016010004 +n44016010005 +n44016010006 +n44016010007 +n44016010008 +n44016010009 +n44016010010 +n44016010011 +n44016010012 +n44016010013 +n44016010015 +n44016010016 +n44016010014 +n44016010017 +n44016010018 +n44016011002 +n44016011001 +n44016011003 +n44016011004 +n44016011005 +n44016011006 +n44016011007 +n44016011009 +n44016011008 +n44016011010 +n44016011011 +n44016011012 +n44016011013 +n44016012001 +n44016012002 +n44016012003 +n44016012004 +n44016012005 +n44016012006 +n44016012007 +n44016012008 +n44016012009 +n44016012010 +n44016012011 +n44016012013 +n44016012012 +n44016012018 +n44016012014 +n44016012015 +n44016012016 +n44016012017 +n44016012019 +n44016012020 +n44016013002 +n44016013001 +n44016013003 +n44016013004 +n44016013005 +n44016013006 +n44016013007 +n44016013008 +n44016013009 +n44016013010 +n44016013011 +n44016013012 +n44016013014 +n44016013015 +n44016013013 +n44016013016 +n44016013017 +n44016013018 +n44016013019 +n44016013020 +n44016013021 +n44016014001 +n44016014002 +n44016014003 +n44016014004 +n44016014005 +n44016014006 +n44016014007 +n44016014008 +n44016014009 +n44016014010 +n44016014011 +n44016014012 +n44016014013 +n44016014017 +n44016014018 +n44016014014 +n44016014015 +n44016014016 +n44016014019 +n44016014020 +n44016014021 +n44016014022 +n44016014023 +n44016015002 +n44016015001 +n44016015003 +n44016015004 +n44016015005 +n44016015006 +n44016015007 +n44016015008 +n44016015009 +n44016015010 +n44016015011 +n44016015012 +n44016015013 +n44016015014 +n44016015015 +n44016015016 +n44016015017 +n44016015018 +n44016015019 +n44016015020 +n44016015021 +n44016015022 +n44016015023 +n44016015024 +n44016015025 +n44016016002 +n44016016001 +n44016016003 +n44016016004 +n44016016005 +n44016016006 +n44016016007 +n44016016008 +n44016016009 +n44016016010 +n44016016011 +n44016016012 +n44016016013 +n44016016014 +n44016016015 +n44016016016 +n44016016017 +n44016016018 +n44016016019 +n44016016020 +n44016016021 +n44016016022 +n44016017001 +n44016017002 +n44016017003 +n44016017004 +n44016017005 +n44016017006 +n44016017007 +n44016017008 +n44016017009 +n44016017010 +n44016017011 +n44016017012 +n44016017013 +n44016017014 +n44016017015 +n44016017016 +n44016017017 +n44016017018 +n44016017019 +n44016017020 +n44016017021 +n44016017022 +n44016018002 +n44016018001 +n44016018003 +n44016018004 +n44016018005 +n44016018006 +n44016018008 +n44016018009 +n44016018007 +n44016018010 +n44016018011 +n44016018012 +n44016018013 +n44016018014 +n44016018015 +n44016018016 +n44016018017 +n44016018018 +n44016018019 +n44016018020 +n44016018021 +n44016018022 +n44016018023 +n44016018024 +n44016018025 +n44016018026 +n44016018027 +n44016018028 +n44016019002 +n44016019003 +n44016019004 +n44016019005 +n44016019001 +n44016019006 +n44016019007 +n44016019008 +n44016019009 +n44016019010 +n44016019011 +n44016019012 +n44016019013 +n44016019014 +n44016019015 +n44016019016 +n44016019017 +n44016019018 +n44016019019 +n44016019020 +n44016019021 +n44016019022 +n44016019023 +n44016019024 +n44016019025 +n44016020001 +n44016020002 +n44016020003 +n44016020004 +n44016020005 +n44016020006 +n44016020007 +n44016020008 +n44016020009 +n44016020010 +n44016020011 +n44016020012 +n44016020013 +n44016020014 +n44016020015 +n44016021001 +n44016021002 +n44016021003 +n44016021004 +n44016021008 +n44016021009 +n44016021010 +n44016021005 +n44016021006 +n44016021007 +n44016021011 +n44016021012 +n44016022001 +n44016022002 +n44016022003 +n44016022004 +n44016022005 +n44016022006 +n44016022007 +n44016022008 +n44016022009 +n44016022010 +n44016022011 +n44016022012 +n44016022013 +n44016022014 +n44016022015 +n44016023002 +n44016023003 +n44016023004 +n44016023001 +n44016023005 +n44016023006 +n44016023007 +n44016023008 +n44016023009 +n44016023010 +n44016023011 +n44016023012 +n44016023013 +n44016023014 +n44016024001 +n44016024002 +n44016024003 +n44016024004 +n44016024005 +n44016024006 +n44016024007 +n44016024008 +n44016024009 +n44016024010 +n44016024011 +n44016024012 +n44016024013 +n44016024015 +n44016024014 +n44016024016 +n44016024017 +n44016024018 +n44016025002 +n44016025001 +n44016025003 +n44016025004 +n44016025005 +n44016025006 +n44016025007 +n44016025008 +n44016025009 +n44016025010 +n44016025011 +n44016025013 +n44016025012 +n44016025014 +n44016025015 +n44016025016 +n44016026002 +n44016026001 +n44016026003 +n44016026005 +n44016026004 +n44016026006 +n44016026007 +n44016026008 +n44016026009 +n44016026010 +n44016026011 +n44016026013 +n44016026012 +n44016026014 +n44016026015 +n44016026016 +n44016026017 +n44016026018 +n44016026019 +n44016026020 +n44016026021 +n44016026022 +n44016027002 +n44016027004 +n44016027005 +n44016027001 +n44016027003 +n44016027006 +n44016027007 +n44016027008 +n44016027009 +n44016027010 +n44016027011 +n44016027012 +n44016027013 +n44016027014 +n44016027015 +n44016027016 +n44016027017 +n44016027018 +n44016027019 +n44016027020 +n44016027021 +n44016027022 +n44016028002 +n44016028001 +n44016028003 +n44016028004 +n44016028005 +n44016028006 +n44016028007 +n44016028010 +n44016028008 +n44016028009 +n44016028012 +n44016028011 +n44016028013 +n44016028014 +n44016029002 +n44016029001 +n44016029003 +n44016029004 +n44016029005 +n44016029006 +n44016029007 +n44016029008 +n44016029009 +n44016029010 +n44016029011 +n44016029012 +n44016030001 +n44016030002 +n44016030003 +n44016030004 +n44016030005 +n44016030006 +n44016030007 +n44016030008 +n44016030010 +n44016030009 +n44016030011 +n44016030012 +n44016031002 +n44016031001 +n44016031003 +n44016031004 +n44016031005 +n44016031006 +n44016031007 +n44016031008 +n44016031009 +n44016031010 +n44016031011 +n44016031012 +n44016031013 +n44016031014 +n44016031015 +n44016032001 +n44016032002 +n44016032003 +n44016032004 +n44016032005 +n44016032006 +n44016032007 +n44016032008 +n44016032009 +n44016032010 +n44016032011 +n44016032012 +n44016032013 +n44016032014 +n44016033001 +n44016033002 +n44016033003 +n44016033004 +n44016033005 +n44016033006 +n44016033007 +n44016033008 +n44016033009 +n44016033010 +n44016033011 +n44016033012 +n44016033013 +n44016033014 +n44016033015 +n44016033016 +n44016033017 +n44016033018 +n44016033019 +n44016033020 +n44016033021 +n44016034002 +n44016034001 +n44016034003 +n44016034004 +n44016034005 +n44016034006 +n44016034007 +n44016034008 +n44016034009 +n44016034010 +n44016034011 +n44016034012 +n44016034013 +n44016034014 +n44016035002 +n44016035001 +n44016035003 +n44016035004 +n44016035005 +n44016035006 +n44016035007 +n44016035008 +n44016035009 +n44016035010 +n44016035011 +n44016035012 +n44016035013 +n44016036002 +n44016036001 +n44016036003 +n44016036004 +n44016036005 +n44016036006 +n44016036007 +n44016036008 +n44016036009 +n44016036010 +n44016036011 +n44016036012 +n44016036013 +n44016036014 +n44016036015 +n44016036016 +n44016036018 +n44016036017 +n44016036019 +n44016036020 +n44016036021 +n44016036022 +n44016037002 +n44016037001 +n44016037003 +n44016037004 +n44016037005 +n44016037006 +n44016037007 +n44016037008 +n44016037009 +n44016037010 +n44016037011 +n44016037012 +n44016037013 +n44016037014 +n44016037015 +n44016037016 +n44016037017 +n44016037018 +n44016037019 +n44016037020 +n44016037021 +n44016037023 +n44016037022 +n44016037024 +n44016037025 +n44016037026 +n44016037027 +n44016037028 +n44016038002 +n44016038001 +n44016038003 +n44016038004 +n44016038005 +n44016038006 +n44016038007 +n44016038008 +n44016038009 +n44016038011 +n44016038010 +n44016038012 +n44016038013 +n44016038014 +n44016038015 +n44016039001 +n44016039002 +n44016039003 +n44016039004 +n44016039005 +n44016039006 +n44016039007 +n44016039008 +n44016039009 +n44016039010 +n44016039011 +n44016040002 +n44016040001 +n44016040003 +n44016040004 +n44016040005 +n44016040006 +n44016040007 +n44016040008 +n44016040009 +n44016040010 +n44016040011 +n44016040012 +n44016040013 +n44016040014 +n44016040015 +n44016040016 +n44017001002 +n44017001001 +n44017001003 +n44017001004 +n44017001005 +n44017001006 +n44017001007 +n44017001008 +n44017001009 +n44017001010 +n44017001011 +n44017001012 +n44017001013 +n44017001014 +n44017001015 +n44017002002 +n44017002001 +n44017002003 +n44017002004 +n44017002005 +n44017002006 +n44017002007 +n44017002008 +n44017002009 +n44017002010 +n44017002011 +n44017002012 +n44017002013 +n44017002014 +n44017002015 +n44017002016 +n44017002017 +n44017002018 +n44017003001 +n44017003002 +n44017003003 +n44017003004 +n44017003007 +n44017003005 +n44017003006 +n44017003008 +n44017003009 +n44017003010 +n44017003011 +n44017003012 +n44017003013 +n44017003014 +n44017003015 +n44017003016 +n44017003017 +n44017003018 +n44017003019 +n44017003020 +n44017003021 +n44017003022 +n44017003023 +n44017003024 +n44017004001 +n44017004002 +n44017004003 +n44017004004 +n44017004005 +n44017004006 +n44017004007 +n44017004008 +n44017004009 +n44017004010 +n44017004011 +n44017004012 +n44017004014 +n44017004013 +n44017004015 +n44017004016 +n44017004017 +n44017004018 +n44017004020 +n44017004019 +n44017004021 +n44017004022 +n44017004023 +n44017004024 +n44017005002 +n44017005003 +n44017005004 +n44017005001 +n44017005005 +n44017005006 +n44017005007 +n44017005008 +n44017005009 +n44017005010 +n44017005011 +n44017005012 +n44017005013 +n44017005014 +n44017005015 +n44017005016 +n44017005017 +n44017005018 +n44017005019 +n44017005020 +n44017005021 +n44017005022 +n44017005023 +n44017005024 +n44017005025 +n44017005026 +n44017005027 +n44017006003 +n44017006001 +n44017006002 +n44017006004 +n44017006005 +n44017006006 +n44017006007 +n44017006008 +n44017006009 +n44017006010 +n44017006011 +n44017006012 +n44017006013 +n44017006014 +n44017006015 +n44017006016 +n44017006017 +n44017006018 +n44017006019 +n44017006020 +n44017006021 +n44017006022 +n44017007001 +n44017007002 +n44017007003 +n44017007004 +n44017007005 +n44017007006 +n44017007007 +n44017007008 +n44017007009 +n44017007010 +n44017007011 +n44017007012 +n44017007013 +n44017007015 +n44017007016 +n44017007014 +n44017008002 +n44017008001 +n44017008003 +n44017008004 +n44017008005 +n44017008006 +n44017008007 +n44017008008 +n44017008009 +n44017009001 +n44017009002 +n44017009003 +n44017009004 +n44017009005 +n44017009006 +n44017009007 +n44017009008 +n44017009009 +n44017009010 +n44017009011 +n44017009012 +n44017010002 +n44017010001 +n44017010003 +n44017010004 +n44017010005 +n44017010006 +n44017010007 +n44017010009 +n44017010008 +n44017010010 +n44017010011 +n44017010012 +n44017010013 +n44017010014 +n44017010015 +n44017010016 +n44017010017 +n44017010018 +n44017010019 +n44017010020 +n44017010021 +n44017010022 +n44017010023 +n44017011002 +n44017011001 +n44017011003 +n44017011004 +n44017011005 +n44017011006 +n44017011007 +n44017011008 +n44017011009 +n44017011010 +n44017011011 +n44017011012 +n44017011013 +n44017011014 +n44017011015 +n44017011016 +n44017011017 +n44017011018 +n44017011019 +n44017011020 +n44017011021 +n44017011022 +n44017011023 +n44017011024 +n44017012002 +n44017012003 +n44017012001 +n44017012004 +n44017012005 +n44017012006 +n44017012007 +n44017012008 +n44017012009 +n44017012010 +n44017012011 +n44017012012 +n44017012013 +n44017012014 +n44017012015 +n44017012016 +n44017013002 +n44017013001 +n44017013003 +n44017013004 +n44017013005 +n44017013006 +n44017013007 +n44017013008 +n44017013009 +n44017013010 +n44017013011 +n44017013012 +n44017013013 +n44017013014 +n44017013015 +n44017013016 +n44017013017 +n44017013018 +n44017013019 +n44017013020 +n44017013021 +n44017013022 +n44017013023 +n44017013024 +n44017013025 +n44017013026 +n44017013027 +n44017013028 +n44017014002 +n44017014001 +n44017014003 +n44017014004 +n44017014005 +n44017014006 +n44017014007 +n44017014008 +n44017014009 +n44017014010 +n44017014011 +n44017014012 +n44017014013 +n44017014015 +n44017014014 +n44017014017 +n44017014016 +n44017014018 +n44017014019 +n44017014020 +n44017014021 +n44017014022 +n44017015002 +n44017015001 +n44017015003 +n44017015004 +n44017015005 +n44017015006 +n44017015007 +n44017015008 +n44017015009 +n44017015010 +n44017015011 +n44017015012 +n44017015013 +n44017015014 +n44017015015 +n44017015016 +n44017015017 +n44017015018 +n44017015019 +n44017015020 +n44017015021 +n44017015022 +n44017015023 +n44017015024 +n44017016002 +n44017016001 +n44017016003 +n44017016004 +n44017016005 +n44017016006 +n44017016007 +n44017016008 +n44017016009 +n44017016010 +n44017016011 +n44017016012 +n44017016013 +n44017016014 +n44017016015 +n44017016016 +n44017016017 +n44017016018 +n44017016019 +n44017017003 +n44017017002 +n44017017001 +n44017017004 +n44017017005 +n44017017006 +n44017017007 +n44017017008 +n44017017009 +n44017017010 +n44017017011 +n44017017012 +n44017017013 +n44017017014 +n44017017015 +n44017017016 +n44017017017 +n44017017018 +n44017017019 +n44017017020 +n44017017021 +n44017018002 +n44017018001 +n44017018003 +n44017018004 +n44017018005 +n44017018006 +n44017018007 +n44017018008 +n44017018009 +n44017018010 +n44017018011 +n44017018012 +n44017018013 +n44017018015 +n44017018016 +n44017018017 +n44017018018 +n44017018019 +n44017018014 +n44017018020 +n44017018022 +n44017018021 +n44017018025 +n44017018023 +n44017018024 +n44017018026 +n44017018027 +n44017018028 +n44017018029 +n44017018030 +n44017018031 +n44017018032 +n44017018033 +n44017018034 +n44017019002 +n44017019001 +n44017019003 +n44017019004 +n44017019005 +n44017019006 +n44017019007 +n44017019008 +n44017019009 +n44017019010 +n44017019011 +n44017019012 +n44017019013 +n44017019014 +n44017019015 +n44017019016 +n44017019017 +n44017019018 +n44017019019 +n44017019020 +n44017020002 +n44017020001 +n44017020003 +n44017020004 +n44017020005 +n44017020006 +n44017020007 +n44017020008 +n44017020010 +n44017020009 +n44017020011 +n44017020012 +n44017020015 +n44017020013 +n44017020014 +n44017021002 +n44017021001 +n44017021003 +n44017021004 +n44017021005 +n44017021006 +n44017021007 +n44017021008 +n44017021009 +n44017021010 +n44017021011 +n44017021012 +n44017021013 +n44017021014 +n44017021015 +n44017021016 +n44017021017 +n44017021018 +n44017022002 +n44017022001 +n44017022003 +n44017022004 +n44017022005 +n44017022006 +n44017022007 +n44017022008 +n44017022009 +n44017022010 +n44017022011 +n44017022012 +n44017022013 +n44017022014 +n44017022015 +n44017022016 +n44017022017 +n44017023002 +n44017023001 +n44017023003 +n44017023004 +n44017023005 +n44017023006 +n44017023007 +n44017023008 +n44017023009 +n44017023010 +n44017023011 +n44017023012 +n44017023013 +n44017023014 +n44017023015 +n44017023017 +n44017023016 +n44017023018 +n44017023019 +n44017023020 +n44017023021 +n44017023022 +n44017023023 +n44017024001 +n44017024002 +n44017024003 +n44017024004 +n44017024005 +n44017024006 +n44017024007 +n44017024008 +n44017024009 +n44017024010 +n44017024011 +n44017024012 +n44017024013 +n44017024014 +n44017024015 +n44017024017 +n44017024016 +n44017024018 +n44017024019 +n44017024020 +n44017024021 +n44017024022 +n44017025001 +n44017025002 +n44017025003 +n44017025004 +n44017025005 +n44017025006 +n44017025007 +n44017025008 +n44017025009 +n44017025010 +n44017025011 +n44017025012 +n44017025013 +n44017025014 +n44017025015 +n44017025016 +n44017026002 +n44017026001 +n44017026003 +n44017026004 +n44017026005 +n44017026006 +n44017026007 +n44017026008 +n44017026009 +n44017026010 +n44017026011 +n44017026012 +n44017026013 +n44017026014 +n44017026015 +n44017026016 +n44017026017 +n44017026018 +n44017026019 +n44017026020 +n44017026021 +n44017026022 +n44017027001 +n44017027002 +n44017027003 +n44017027004 +n44017027005 +n44017027006 +n44017027007 +n44017027008 +n44017027009 +n44017027010 +n44017027012 +n44017027011 +n44017027013 +n44017027014 +n44017027015 +n44017027016 +n44017027017 +n44017027018 +n44017027019 +n44017028003 +n44017028001 +n44017028002 +n44017028004 +n44017028005 +n44017028006 +n44017028007 +n44017028008 +n44017028009 +n44017028010 +n44017028011 +n44017028012 +n44017028013 +n44017028014 +n44017028015 +n44017028016 +n44017028018 +n44017028017 +n44017028019 +n44017028020 +n44017028021 +n44017029002 +n44017029003 +n44017029001 +n44017029004 +n44017029005 +n44017029006 +n44017029007 +n44017029008 +n44017029009 +n44017029010 +n44017029011 +n44017029012 +n44017029013 +n44017029014 +n44017029015 +n44017029016 +n44017029017 +n44017029018 +n44017029019 +n44017029020 +n44017029021 +n44017029022 +n44017030002 +n44017030003 +n44017030001 +n44017030004 +n44017030005 +n44017030006 +n44017030007 +n44017030008 +n44017030009 +n44017030010 +n44017030011 +n44017030012 +n44017030013 +n44017030014 +n44017030015 +n44017030016 +n44017030017 +n44017031001 +n44017031002 +n44017031003 +n44017031004 +n44017031005 +n44017031006 +n44017031007 +n44017031008 +n44017031009 +n44017031010 +n44017031011 +n44017031012 +n44017031013 +n44017031014 +n44017031015 +n44017031016 +n44017031017 +n44017031018 +n44017031019 +n44017031020 +n44017031021 +n44017031022 +n44017032002 +n44017032001 +n44017032003 +n44017032004 +n44017032006 +n44017032005 +n44017032007 +n44017032009 +n44017032008 +n44017032010 +n44017032011 +n44017032012 +n44017032013 +n44017032014 +n44017032015 +n44017032016 +n44017033001 +n44017033002 +n44017033003 +n44017033004 +n44017033005 +n44017033006 +n44017033007 +n44017034002 +n44017034001 +n44017034003 +n44017034004 +n44017034005 +n44017034006 +n44017034007 +n44017034008 +n44017034009 +n44017034010 +n44017034011 +n44017034012 +n44017034013 +n44017034014 +n44017034015 +n44017034016 +n44017034017 +n44017034018 +n44017034019 +n44017034020 +n44018001001 +n44018001002 +n44018001003 +n44018001004 +n44018001005 +n44018001006 +n44018001007 +n44018001008 +n44018001009 +n44018002001 +n44018002002 +n44018002003 +n44018002004 +n44018002005 +n44018002006 +n44018002007 +n44018002008 +n44018002009 +n44018002010 +n44018002011 +n44018002012 +n44018002013 +n44018002014 +n44018002015 +n44018002016 +n44018002017 +n44018002018 +n44018002019 +n44018002020 +n44018002021 +n44018002022 +n44018002023 +n44018002024 +n44018002025 +n44018002026 +n44018002027 +n44018002028 +n44018002029 +n44018002030 +n44018002031 +n44018003001 +n44018003002 +n44018003003 +n44018003004 +n44018003005 +n44018003006 +n44018003007 +n44018003008 +n44018003009 +n44018003010 +n44018003012 +n44018003011 +n44018003013 +n44018003014 +n44018003015 +n44018004002 +n44018004001 +n44018004003 +n44018004004 +n44018004005 +n44018004006 +n44018004007 +n44018004008 +n44018004009 +n44018004010 +n44018004011 +n44018004012 +n44018004013 +n44018005002 +n44018005001 +n44018005003 +n44018005004 +n44018005005 +n44018005006 +n44018005008 +n44018005007 +n44018005009 +n44018005010 +n44018005011 +n44018005012 +n44018005013 +n44018005014 +n44018005015 +n44018005016 +n44018005017 +n44018005018 +n44018005019 +n44018005020 +n44018005021 +n44018005022 +n44018005023 +n44018005024 +n44018006002 +n44018006001 +n44018006003 +n44018006004 +n44018006005 +n44018006006 +n44018006007 +n44018006008 +n44018006009 +n44018006010 +n44018006011 +n44018006012 +n44018006013 +n44018006014 +n44018006015 +n44018006016 +n44018006017 +n44018006018 +n44018006019 +n44018006020 +n44018006021 +n44018006022 +n44018006023 +n44018006024 +n44018006025 +n44018006026 +n44018006027 +n44018007001 +n44018007002 +n44018007003 +n44018007004 +n44018007005 +n44018007006 +n44018007007 +n44018007008 +n44018007009 +n44018007010 +n44018007011 +n44018007012 +n44018007013 +n44018007014 +n44018007015 +n44018007016 +n44018007017 +n44018007018 +n44018007019 +n44018007020 +n44018008002 +n44018008001 +n44018008003 +n44018008004 +n44018008005 +n44018008006 +n44018008007 +n44018008008 +n44018008009 +n44018008010 +n44018008011 +n44018008012 +n44018008013 +n44018008014 +n44018008015 +n44018008016 +n44018008017 +n44018008018 +n44018008019 +n44018008020 +n44018009002 +n44018009001 +n44018009003 +n44018009004 +n44018009005 +n44018009006 +n44018009007 +n44018009008 +n44018009009 +n44018009010 +n44018009011 +n44018009012 +n44018009013 +n44018009014 +n44018009015 +n44018009016 +n44018009017 +n44018010001 +n44018010002 +n44018010003 +n44018010004 +n44018010005 +n44018010006 +n44018010007 +n44018010008 +n44018010009 +n44018010010 +n44018010011 +n44018010012 +n44018010013 +n44018010014 +n44018010017 +n44018010015 +n44018010016 +n44018010018 +n44018010019 +n44018010020 +n44018010021 +n44018011002 +n44018011001 +n44018011003 +n44018011004 +n44018011005 +n44018011006 +n44018011007 +n44018011008 +n44018011009 +n44018011010 +n44018011011 +n44018011012 +n44018011013 +n44018012002 +n44018012001 +n44018012004 +n44018012003 +n44018012005 +n44018012006 +n44018012007 +n44018012008 +n44018012009 +n44018012010 +n44018012011 +n44018012012 +n44018012013 +n44018012014 +n44018012015 +n44018012016 +n44018012017 +n44018012018 +n44018013001 +n44018013002 +n44018013003 +n44018013004 +n44018013005 +n44018013006 +n44018013007 +n44018013008 +n44018013009 +n44018013010 +n44018013011 +n44018013012 +n44018014002 +n44018014001 +n44018014003 +n44018014004 +n44018014005 +n44018014006 +n44018014007 +n44018014008 +n44018014009 +n44018014010 +n44018014011 +n44018014012 +n44018014013 +n44018014015 +n44018014014 +n44018014016 +n44018014017 +n44018014018 +n44018014019 +n44018014020 +n44018014021 +n44018014022 +n44018014023 +n44018014026 +n44018014024 +n44018014025 +n44018014027 +n44018014028 +n44018015002 +n44018015001 +n44018015004 +n44018015003 +n44018015005 +n44018015006 +n44018015007 +n44018015008 +n44018015009 +n44018015010 +n44018015011 +n44018015012 +n44018015013 +n44018015014 +n44018015015 +n44018015019 +n44018015020 +n44018015017 +n44018015016 +n44018015018 +n44018015021 +n44018016001 +n44018016002 +n44018016003 +n44018016004 +n44018016005 +n44018016006 +n44018017002 +n44018017003 +n44018017001 +n44018017004 +n44018017005 +n44018017006 +n44018017007 +n44018017008 +n44018017009 +n44018017010 +n44018017011 +n44018017012 +n44018017013 +n44018017014 +n44018017015 +n44018017016 +n44018018002 +n44018018001 +n44018018003 +n44018018004 +n44018018005 +n44018018006 +n44018018007 +n44018018008 +n44018018009 +n44018018010 +n44018018011 +n44018018012 +n44018018013 +n44018018014 +n44018018015 +n44018018016 +n44018018017 +n44018018018 +n44018018019 +n44018018020 +n44018018021 +n44018018022 +n44018018023 +n44018018024 +n44018018025 +n44018018027 +n44018018026 +n44018018028 +n44018019002 +n44018019001 +n44018019003 +n44018019004 +n44018019005 +n44018019006 +n44018019007 +n44018019009 +n44018019008 +n44018019010 +n44018019011 +n44018019012 +n44018019013 +n44018019014 +n44018019015 +n44018019016 +n44018020002 +n44018020001 +n44018020003 +n44018020004 +n44018020005 +n44018020006 +n44018020007 +n44018020008 +n44018020009 +n44018021001 +n44018021002 +n44018021003 +n44018021004 +n44018021005 +n44018021006 +n44018021007 +n44018021008 +n44018021009 +n44018021010 +n44018021011 +n44018021012 +n44018021013 +n44018021014 +n44018021015 +n44018022001 +n44018022002 +n44018022003 +n44018022004 +n44018022005 +n44018022006 +n44018022007 +n44018022008 +n44018022009 +n44018022010 +n44018022011 +n44018022012 +n44018023001 +n44018023002 +n44018023003 +n44018023004 +n44018023005 +n44018023006 +n44018023007 +n44018023008 +n44018023009 +n44018023010 +n44018023011 +n44018023012 +n44018023013 +n44018023014 +n44018023015 +n44018023016 +n44018024002 +n44018024001 +n44018024003 +n44018024004 +n44018024005 +n44018024006 +n44018024007 +n44018024008 +n44018024009 +n44018024010 +n44018024014 +n44018024015 +n44018024016 +n44018024017 +n44018024018 +n44018024011 +n44018024012 +n44018024013 +n44018025001 +n44018025002 +n44018025003 +n44018025004 +n44018025005 +n44018025006 +n44018025007 +n44018025008 +n44018025009 +n44018025010 +n44018025011 +n44018025012 +n44018025013 +n44018025014 +n44018025015 +n44018025016 +n44018025017 +n44018025018 +n44018025019 +n44018025020 +n44018025021 +n44018025022 +n44018025023 +n44018025024 +n44018026002 +n44018026001 +n44018026003 +n44018026004 +n44018026005 +n44018026006 +n44018026007 +n44018026009 +n44018026008 +n44018026010 +n44018026011 +n44018026012 +n44018026013 +n44018026014 +n44018026015 +n44018026016 +n44018026017 +n44018026018 +n44018026019 +n44018026020 +n44018026021 +n44018026022 +n44018026023 +n44018027002 +n44018027001 +n44018027003 +n44018027004 +n44018027005 +n44018027006 +n44018027007 +n44018027008 +n44018027009 +n44018027010 +n44018027011 +n44018027012 +n44018027013 +n44018027014 +n44018027015 +n44018027016 +n44018027017 +n44018027018 +n44018027019 +n44018027020 +n44018027021 +n44018027022 +n44018027023 +n44018027024 +n44018028002 +n44018028001 +n44018028003 +n44018028004 +n44018028005 +n44018028006 +n44018028007 +n44018028008 +n44018028009 +n44018028010 +n44018028011 +n44018028012 +n44018028013 +n44018028014 +n44019001002 +n44019001001 +n44019001003 +n44019001004 +n44019001005 +n44019001006 +n44019001007 +n44019001008 +n44019001009 +n44019001010 +n44019001011 +n44019001012 +n44019001013 +n44019001014 +n44019001015 +n44019001016 +n44019001017 +n44019001018 +n44019001019 +n44019001020 +n44019001021 +n44019002002 +n44019002001 +n44019002003 +n44019002004 +n44019002005 +n44019002006 +n44019002007 +n44019002008 +n44019002009 +n44019002011 +n44019002010 +n44019002012 +n44019002013 +n44019002014 +n44019002015 +n44019002020 +n44019002016 +n44019002017 +n44019002018 +n44019002019 +n44019003002 +n44019003001 +n44019003005 +n44019003003 +n44019003004 +n44019003006 +n44019003008 +n44019003007 +n44019003009 +n44019003010 +n44019003011 +n44019003012 +n44019003013 +n44019004002 +n44019004001 +n44019004003 +n44019004004 +n44019004005 +n44019004006 +n44019004007 +n44019004008 +n44019004009 +n44019004010 +n44019004016 +n44019004017 +n44019004011 +n44019004012 +n44019004013 +n44019004014 +n44019004015 +n44019004018 +n44019004019 +n44019004020 +n44019004021 +n44019004022 +n44019005002 +n44019005001 +n44019005003 +n44019005004 +n44019005005 +n44019005006 +n44019005007 +n44019005008 +n44019005009 +n44019006001 +n44019006002 +n44019006003 +n44019006004 +n44019006005 +n44019006006 +n44019006007 +n44019006008 +n44019006009 +n44019006010 +n44019006011 +n44019006012 +n44019006013 +n44019006015 +n44019006014 +n44019006016 +n44019006017 +n44019006018 +n44019007002 +n44019007001 +n44019007003 +n44019007004 +n44019007005 +n44019007006 +n44019007007 +n44019008002 +n44019008001 +n44019008003 +n44019008004 +n44019008005 +n44019008006 +n44019008007 +n44019008008 +n44019008009 +n44019008010 +n44019008011 +n44019008012 +n44019008013 +n44019008014 +n44019008015 +n44019008016 +n44019008017 +n44019009002 +n44019009001 +n44019009003 +n44019009004 +n44019009005 +n44019009006 +n44019009007 +n44019009008 +n44019009009 +n44019009010 +n44019009011 +n44019009012 +n44019009013 +n44019009014 +n44019009015 +n44019009016 +n44019009017 +n44019009018 +n44019009019 +n44019009020 +n44019009021 +n44019009022 +n44019009023 +n44019009024 +n44019009025 +n44019010002 +n44019010001 +n44019010003 +n44019010004 +n44019010005 +n44019010006 +n44019010007 +n44019010008 +n44019010009 +n44019010010 +n44019010011 +n44019010012 +n44019010013 +n44019010014 +n44019010015 +n44019010016 +n44019010017 +n44019010019 +n44019010018 +n44019010020 +n44019010021 +n44019011002 +n44019011001 +n44019011003 +n44019011004 +n44019011005 +n44019011006 +n44019011007 +n44019011008 +n44019011009 +n44019011010 +n44019011011 +n44019011012 +n44019012001 +n44019012002 +n44019012003 +n44019012004 +n44019012005 +n44019012006 +n44019012007 +n44019012008 +n44019012009 +n44019012010 +n44019012011 +n44019012012 +n44019012013 +n44019012014 +n44019012015 +n44019012016 +n44019012017 +n44019012018 +n44019012019 +n44019012021 +n44019012020 +n44019012022 +n44019012023 +n44019012024 +n44019012025 +n44019013002 +n44019013001 +n44019013003 +n44019013004 +n44019013005 +n44019013006 +n44019013007 +n44019013008 +n44019013009 +n44019013010 +n44019013011 +n44019013012 +n44019013013 +n44019013014 +n44019013015 +n44019013016 +n44019013017 +n44019013018 +n44019013019 +n44019013020 +n44019013021 +n44019013022 +n44019013023 +n44019013024 +n44019013025 +n44019013026 +n44019013027 +n44019013028 +n44019013029 +n44019014002 +n44019014003 +n44019014004 +n44019014005 +n44019014006 +n44019014007 +n44019014008 +n44019014009 +n44019014001 +n44019014010 +n44019015002 +n44019015001 +n44019015003 +n44019015004 +n44019015005 +n44019015006 +n44019015007 +n44019015008 +n44019015009 +n44019015010 +n44019015011 +n44019015012 +n44019015013 +n44019015014 +n44019015015 +n44019015017 +n44019015016 +n44019015018 +n44019015019 +n44019016001 +n44019016002 +n44019016005 +n44019016006 +n44019016003 +n44019016004 +n44019016007 +n44019016008 +n44019016009 +n44019016010 +n44019016011 +n44019016012 +n44019016013 +n44019016014 +n44019016015 +n44019016016 +n44019016017 +n44019016018 +n44019016019 +n44019016020 +n44019016021 +n44019016022 +n44019016023 +n44019016024 +n44019016025 +n44019016026 +n44019016027 +n44019017002 +n44019017001 +n44019017003 +n44019017004 +n44019017005 +n44019017007 +n44019017006 +n44019017008 +n44019017009 +n44019017010 +n44019017011 +n44019017012 +n44019017013 +n44019017014 +n44019017015 +n44019017016 +n44019017017 +n44019017018 +n44019017019 +n44019017020 +n44019017021 +n44019017022 +n44019017023 +n44019017024 +n44019017025 +n44019017026 +n44019018002 +n44019018001 +n44019018003 +n44019018004 +n44019018005 +n44019018006 +n44019018007 +n44019018008 +n44019018009 +n44019018010 +n44019018011 +n44019019002 +n44019019001 +n44019019003 +n44019019004 +n44019019005 +n44019019006 +n44019019007 +n44019019008 +n44019019009 +n44019019010 +n44019019011 +n44019019012 +n44019019013 +n44019019014 +n44019019015 +n44019019016 +n44019019017 +n44019019018 +n44019019019 +n44019019020 +n44019019021 +n44019019022 +n44019020001 +n44019020002 +n44019020003 +n44019020004 +n44019020005 +n44019020006 +n44019020007 +n44019020008 +n44019020009 +n44019020010 +n44019021002 +n44019021001 +n44019021003 +n44019021004 +n44019021005 +n44019021006 +n44019021007 +n44019021008 +n44019021009 +n44019021010 +n44019021011 +n44019021012 +n44019021013 +n44019021014 +n44019021015 +n44019021016 +n44019021017 +n44019021018 +n44019021019 +n44019021020 +n44019021021 +n44019021022 +n44019021023 +n44019021024 +n44019021025 +n44019021026 +n44019021027 +n44019021028 +n44019021029 +n44019021030 +n44019022002 +n44019022001 +n44019022003 +n44019022004 +n44019022005 +n44019022006 +n44019022007 +n44019022008 +n44019022009 +n44019022010 +n44019022011 +n44019022012 +n44019022013 +n44019022014 +n44019022015 +n44019022016 +n44019022017 +n44019022018 +n44019023002 +n44019023001 +n44019023003 +n44019023004 +n44019023005 +n44019023006 +n44019023007 +n44019023008 +n44019023009 +n44019023010 +n44019023011 +n44019023012 +n44019024002 +n44019024003 +n44019024001 +n44019024004 +n44019024005 +n44019024006 +n44019024007 +n44019024008 +n44019024009 +n44019024010 +n44019024011 +n44019024012 +n44019024013 +n44019024014 +n44019024015 +n44019025001 +n44019025003 +n44019025004 +n44019025005 +n44019025006 +n44019025007 +n44019025008 +n44019025002 +n44019025009 +n44019025010 +n44019025011 +n44019025012 +n44019025013 +n44019025014 +n44019025015 +n44019025016 +n44019025017 +n44019025018 +n44019025019 +n44019025020 +n44019026001 +n44019026002 +n44019026003 +n44019026004 +n44019026005 +n44019026006 +n44019026007 +n44019026008 +n44019026009 +n44019026010 +n44019026011 +n44019026012 +n44019026013 +n44019026014 +n44019026015 +n44019026016 +n44019026017 +n44019026018 +n44019026019 +n44019026020 +n44019026021 +n44019026022 +n44019026023 +n44019026024 +n44019026025 +n44019026026 +n44019026027 +n44019026028 +n44019026029 +n44019027003 +n44019027001 +n44019027002 +n44019027004 +n44019027005 +n44019027006 +n44019027007 +n44019027008 +n44019027009 +n44019027010 +n44019027011 +n44019027012 +n44019027013 +n44019027014 +n44019027015 +n44019027016 +n44019027017 +n44019027018 +n44019027019 +n44019027020 +n44019027021 +n44019027022 +n44019027024 +n44019027023 +n44019027025 +n44019027026 +n44019027027 +n44019027028 +n44019027029 +n44019027030 +n44019027031 +n44019027032 +n44019027033 +n44019027034 +n44019027035 +n44019027036 +n44019027037 +n44019028002 +n44019028001 +n44019028003 +n44019028004 +n44019028005 +n44019028006 +n44019028007 +n44019028008 +n44019028009 +n44019028010 +n44019028011 +n44019028012 +n44019029001 +n44019029002 +n44019029003 +n44019029004 +n44019029005 +n44019029006 +n44019029008 +n44019029007 +n44019029009 +n44019029010 +n44019029011 +n44019029012 +n44019029013 +n44019029014 +n44019029015 +n44019029016 +n44019029017 +n44019029018 +n44019029019 +n44019030002 +n44019030001 +n44019030003 +n44019030004 +n44019030005 +n44019030006 +n44019030007 +n44019030008 +n44019030009 +n44019030010 +n44019030011 +n44019030012 +n44019031002 +n44019031001 +n44019031003 +n44019031004 +n44019031005 +n44019031006 +n44019031007 +n44019031008 +n44019031009 +n44019031010 +n44019031011 +n44019031012 +n44019031013 +n44019031014 +n44019031015 +n44019031016 +n44019031017 +n44019031018 +n44019032002 +n44019032003 +n44019032001 +n44019032004 +n44019032005 +n44019032006 +n44019032008 +n44019032009 +n44019032010 +n44019032007 +n44019032011 +n44019032012 +n44019032013 +n44019032014 +n44019032015 +n44019032016 +n44019032017 +n44019032018 +n44019032019 +n44019033002 +n44019033001 +n44019033003 +n44019033004 +n44019033005 +n44019033006 +n44019033007 +n44019033008 +n44019033009 +n44019033010 +n44019033012 +n44019033011 +n44019033013 +n44019033014 +n44019033015 +n44019033016 +n44019033017 +n44019033018 +n44019033019 +n44019033020 +n44019034002 +n44019034001 +n44019034003 +n44019034004 +n44019034005 +n44019034006 +n44019034008 +n44019034007 +n44019034009 +n44019034010 +n44019034011 +n44019034012 +n44019034013 +n44019034014 +n44019034015 +n44019034016 +n44019034017 +n44019034018 +n44019034019 +n44019035002 +n44019035003 +n44019035004 +n44019035001 +n44019035005 +n44019035006 +n44019035007 +n44019035008 +n44019035009 +n44019035011 +n44019035010 +n44019035013 +n44019035012 +n44019035014 +n44019035015 +n44019035016 +n44019035017 +n44019035018 +n44019035019 +n44019035021 +n44019035020 +n44019035022 +n44019035023 +n44019035024 +n44019035025 +n44019035026 +n44019035027 +n44019036002 +n44019036001 +n44019036003 +n44019036004 +n44019036005 +n44019036006 +n44019036007 +n44019036008 +n44019036009 +n44019036010 +n44019036011 +n44019036012 +n44019036013 +n44019037002 +n44019037001 +n44019037003 +n44019037004 +n44019037005 +n44019037006 +n44019037007 +n44019037008 +n44019037009 +n44019037010 +n44019037011 +n44019037012 +n44019038003 +n44019038002 +n44019038001 +n44019038004 +n44019038005 +n44019038006 +n44019038007 +n44019038008 +n44019038009 +n44019038010 +n44019038011 +n44019038012 +n44019038013 +n44019038014 +n44019038015 +n44019038016 +n44019038017 +n44019038018 +n44019038019 +n44019038020 +n44019039002 +n44019039001 +n44019039003 +n44019039004 +n44019039005 +n44019039006 +n44019039007 +n44019039008 +n44019039009 +n44019039010 +n44019040002 +n44019040001 +n44019040003 +n44019040004 +n44019040005 +n44019040006 +n44019040007 +n44019040008 +n44019040009 +n44019040010 +n44019040011 +n44019040012 +n44019040013 +n44019040014 +n44019040015 +n44019040016 +n44019040017 +n44019040018 +n44019040019 +n44019040020 +n44019040021 +n44019040022 +n44019040023 +n44019040024 +n44019040025 +n44019040026 +n44019040027 +n44020001002 +n44020001001 +n44020001003 +n44020001004 +n44020001005 +n44020001006 +n44020001008 +n44020001009 +n44020001007 +n44020001010 +n44020001011 +n44020001012 +n44020001013 +n44020001014 +n44020001015 +n44020001016 +n44020001017 +n44020001018 +n44020002002 +n44020002001 +n44020002003 +n44020002004 +n44020002005 +n44020002006 +n44020002007 +n44020002008 +n44020002009 +n44020002010 +n44020002011 +n44020002012 +n44020002013 +n44020002014 +n44020003002 +n44020003001 +n44020003003 +n44020003004 +n44020003005 +n44020003006 +n44020003007 +n44020003008 +n44020003009 +n44020003010 +n44020003011 +n44020003012 +n44020003013 +n44020003014 +n44020003015 +n44020003016 +n44020003017 +n44020003018 +n44020003019 +n44020003020 +n44020003021 +n44020004002 +n44020004001 +n44020004003 +n44020004004 +n44020004005 +n44020004006 +n44020004008 +n44020004007 +n44020004009 +n44020004010 +n44020004011 +n44020004012 +n44020004013 +n44020004014 +n44020004015 +n44020004016 +n44020004018 +n44020004017 +n44020004019 +n44020004020 +n44020004021 +n44020005002 +n44020005001 +n44020005003 +n44020005004 +n44020005005 +n44020005006 +n44020005007 +n44020006002 +n44020006001 +n44020006003 +n44020006004 +n44020006005 +n44020006006 +n44020006007 +n44020006008 +n44020006009 +n44020006010 +n44020006011 +n44020006012 +n44020006013 +n44020006014 +n44020006015 +n44020006016 +n44020006017 +n44020006018 +n44020006019 +n44020006020 +n44020006021 +n44020006022 +n44020006023 +n44020006024 +n44020007002 +n44020007001 +n44020007003 +n44020007004 +n44020007005 +n44020007006 +n44020007007 +n44020007008 +n44020007009 +n44020007010 +n44020007011 +n44020007012 +n44020007013 +n44020007014 +n44020007015 +n44020007016 +n44020007017 +n44020007018 +n44020007020 +n44020007019 +n44020007021 +n44020007022 +n44020007023 +n44020007024 +n44020008002 +n44020008001 +n44020008003 +n44020008004 +n44020008005 +n44020008006 +n44020008007 +n44020008008 +n44020008009 +n44020008010 +n44020009002 +n44020009003 +n44020009004 +n44020009005 +n44020009006 +n44020009001 +n44020009007 +n44020009008 +n44020009009 +n44020009010 +n44020009011 +n44020009012 +n44020009013 +n44020009014 +n44020009015 +n44020009016 +n44020009017 +n44020009018 +n44020009019 +n44020009020 +n44020009021 +n44020009022 +n44020009023 +n44020009024 +n44020009025 +n44020009026 +n44020009027 +n44020009028 +n44020009029 +n44020010002 +n44020010001 +n44020010003 +n44020010004 +n44020010005 +n44020010006 +n44020010007 +n44020010008 +n44020010009 +n44020010010 +n44020010011 +n44020010013 +n44020010012 +n44020010014 +n44020010015 +n44020010016 +n44020010017 +n44020010018 +n44020011002 +n44020011001 +n44020011003 +n44020011004 +n44020011005 +n44020011006 +n44020011007 +n44020011008 +n44020011011 +n44020011009 +n44020011010 +n44020011012 +n44020011013 +n44020011014 +n44020011015 +n44020011016 +n44020012002 +n44020012001 +n44020012003 +n44020012004 +n44020012005 +n44020012006 +n44020012007 +n44020012008 +n44020012009 +n44020013002 +n44020013001 +n44020013003 +n44020013004 +n44020013005 +n44020013006 +n44020013007 +n44020013008 +n44020013009 +n44020013010 +n44020013011 +n44020013012 +n44020013013 +n44020013014 +n44020013015 +n44020013017 +n44020013016 +n44020013018 +n44020013019 +n44020013020 +n44020013021 +n44020013022 +n44020014002 +n44020014001 +n44020014003 +n44020014004 +n44020014005 +n44020014006 +n44020014007 +n44020014008 +n44020014009 +n44020014010 +n44020014011 +n44020014012 +n44020015001 +n44020015002 +n44020015003 +n44020015004 +n44020015005 +n44020015006 +n44020015007 +n44020015009 +n44020015008 +n44020015010 +n44020015011 +n44020015012 +n44020015013 +n44020015015 +n44020015014 +n44020015016 +n44020015017 +n44020015018 +n44020015019 +n44020016002 +n44020016001 +n44020016003 +n44020016004 +n44020016005 +n44020016006 +n44020016007 +n44020016008 +n44020016009 +n44020016010 +n44020016011 +n44020016012 +n44020016013 +n44020016014 +n44020016015 +n44020016017 +n44020016016 +n44020016018 +n44020016019 +n44020016020 +n44020016021 +n44020016022 +n44020016023 +n44020016024 +n44020016025 +n44020016026 +n44020016027 +n44020016028 +n44020017002 +n44020017001 +n44020017003 +n44020017004 +n44020017005 +n44020017006 +n44020017007 +n44020017008 +n44020017009 +n44020017010 +n44020017011 +n44020017012 +n44020018002 +n44020018001 +n44020018003 +n44020018004 +n44020018005 +n44020018006 +n44020018007 +n44020018008 +n44020018009 +n44020018010 +n44020018011 +n44020018012 +n44020018013 +n44020018014 +n44020018015 +n44020018016 +n44020018017 +n44020018018 +n44020018019 +n44020018020 +n44020018021 +n44020018022 +n44020018023 +n44020018024 +n44020018025 +n44020019001 +n44020019002 +n44020019003 +n44020019004 +n44020019005 +n44020019006 +n44020019007 +n44020019008 +n44020019009 +n44020019010 +n44020019011 +n44020019012 +n44020019013 +n44020019014 +n44020019015 +n44020019016 +n44020019017 +n44020019018 +n44020020001 +n44020020003 +n44020020002 +n44020020004 +n44020020005 +n44020020006 +n44020020007 +n44020020008 +n44020020009 +n44020020010 +n44020020011 +n44020020012 +n44020020013 +n44020020014 +n44020020015 +n44020020016 +n44020021001 +n44020021003 +n44020021002 +n44020021004 +n44020021005 +n44020021006 +n44020021007 +n44020021008 +n44020021009 +n44020021010 +n44020021011 +n44020021012 +n44020021013 +n44020021014 +n44020021015 +n44020021016 +n44020022001 +n44020022002 +n44020022003 +n44020022004 +n44020022006 +n44020022007 +n44020022005 +n44020022008 +n44020022009 +n44020022010 +n44020022011 +n44020022012 +n44020022013 +n44020022014 +n44020022015 +n44020022016 +n44020022017 +n44020023001 +n44020023002 +n44020023003 +n44020023004 +n44020023005 +n44020023006 +n44020023007 +n44020023008 +n44020023009 +n44020023010 +n44020023011 +n44020023012 +n44020023013 +n44020023014 +n44020023015 +n44020023016 +n44020023017 +n44020024001 +n44020024002 +n44020024003 +n44020024004 +n44020024005 +n44020024006 +n44020024007 +n44020024008 +n44020024009 +n44020024010 +n44020024011 +n44020024012 +n44020024013 +n44020024014 +n44020024015 +n44020024016 +n44020024017 +n44020024018 +n44020024019 +n44020024020 +n44020024021 +n44020024022 +n44020024023 +n44020024024 +n44020024025 +n44020024026 +n44020024027 +n44020024028 +n44020024029 +n44020025001 +n44020025002 +n44020025003 +n44020025004 +n44020025005 +n44020025006 +n44020025007 +n44020025008 +n44020025009 +n44020025010 +n44020025011 +n44020025012 +n44020025013 +n44020025014 +n44020025015 +n44020025016 +n44020025017 +n44020025018 +n44020025019 +n44020026001 +n44020026002 +n44020026003 +n44020026004 +n44020026005 +n44020026006 +n44020026007 +n44020026008 +n44020026009 +n44020026010 +n44020026011 +n44020026012 +n44020026013 +n44020026014 +n44020027002 +n44020027001 +n44020027003 +n44020027004 +n44020027005 +n44020027006 +n44020027007 +n44020027008 +n44020027009 +n44020027010 +n44020027011 +n44020027012 +n44020028001 +n44020028002 +n44020028003 +n44020028004 +n44020028005 +n44020028006 +n44020028007 +n44020028008 +n44020028009 +n44020028010 +n44020028011 +n44020028012 +n44020028013 +n44020028014 +n44020028015 +n44020028016 +n44020028017 +n44020028018 +n44020028019 +n44020028020 +n44020028021 +n44020028022 +n44020028023 +n44020028024 +n44020028025 +n44020028026 +n44020028027 +n44020029001 +n44020029002 +n44020029003 +n44020029004 +n44020029005 +n44020029006 +n44020029007 +n44020029008 +n44020029009 +n44020029010 +n44020029011 +n44020029012 +n44020029013 +n44020029014 +n44020029015 +n44020029016 +n44020030001 +n44020030002 +n44020030003 +n44020030004 +n44020030005 +n44020030006 +n44020030007 +n44020030008 +n44020030009 +n44020030010 +n44020030011 +n44020030012 +n44020030013 +n44020030014 +n44020031001 +n44020031002 +n44020031003 +n44020031004 +n44020031005 +n44020031006 +n44020031007 +n44020031008 +n44020031009 +n44020031010 +n44020031011 +n44020031012 +n44020031013 +n44020031014 +n44020031015 +n44020032001 +n44020032002 +n44020032003 +n44020032004 +n44020032005 +n44020032006 +n44020032007 +n44020032008 +n44020032009 +n44020032010 +n44020032011 +n44020032012 +n44020032013 +n44020032014 +n44020032015 +n44020032016 +n44020032017 +n44020032018 +n44020032019 +n44020032020 +n44020032021 +n44020032022 +n44020032023 +n44020032024 +n44020033001 +n44020033002 +n44020033003 +n44020033004 +n44020033005 +n44020033006 +n44020033007 +n44020034001 +n44020034002 +n44020034003 +n44020034004 +n44020034005 +n44020034006 +n44020034007 +n44020034008 +n44020034009 +n44020034010 +n44020034011 +n44020034012 +n44020034013 +n44020034014 +n44020034015 +n44020035001 +n44020035002 +n44020035003 +n44020035004 +n44020035005 +n44020035006 +n44020035007 +n44020035008 +n44020035009 +n44020035010 +n44020035012 +n44020035011 +n44020035013 +n44020035014 +n44020035015 +n44020035016 +n44020035017 +n44020035018 +n44020035019 +n44020035020 +n44020035021 +n44020035022 +n44020035023 +n44020035024 +n44020035025 +n44020035026 +n44020036001 +n44020036002 +n44020036003 +n44020036004 +n44020036005 +n44020036006 +n44020036007 +n44020036008 +n44020036009 +n44020036010 +n44020036011 +n44020037002 +n44020037001 +n44020037004 +n44020037003 +n44020037005 +n44020037006 +n44020037007 +n44020037008 +n44020037009 +n44020037010 +n44020037011 +n44020037012 +n44020037013 +n44020037014 +n44020038001 +n44020038002 +n44020038003 +n44020038004 +n44020038005 +n44020038006 +n44020038007 +n44020038008 +n44020038009 +n44020038010 +n44020038011 +n44020038012 +n44020038013 +n44020038014 +n44020038016 +n44020038015 +n44020038017 +n44020038018 +n44020038019 +n44020038020 +n44021001002 +n44021001001 +n44021001003 +n44021001004 +n44021001005 +n44021001006 +n44021001007 +n44021001008 +n44021001009 +n44021001010 +n44021001011 +n44021001012 +n44021001013 +n44021001015 +n44021001014 +n44021001016 +n44021001017 +n44021001018 +n44021001019 +n44021001020 +n44021001021 +n44021001022 +n44021002001 +n44021002002 +n44021002003 +n44021002004 +n44021002005 +n44021002006 +n44021002007 +n44021002008 +n44021003002 +n44021003001 +n44021003003 +n44021003004 +n44021003005 +n44021003006 +n44021003007 +n44021003008 +n44021003009 +n44021003010 +n44021003011 +n44021003012 +n44021003013 +n44021003014 +n44021003015 +n44021003017 +n44021003016 +n44021003018 +n44021003019 +n44021003020 +n44021003021 +n44021003022 +n44021003023 +n44021004002 +n44021004001 +n44021004003 +n44021004004 +n44021004005 +n44021004006 +n44021004007 +n44021004008 +n44021004009 +n44021004010 +n44021004011 +n44021004012 +n44021004013 +n44021004014 +n44021004015 +n44021004016 +n44021004017 +n44021004018 +n44021004019 +n44021005002 +n44021005001 +n44021005003 +n44021005004 +n44021005005 +n44021005006 +n44021005007 +n44021005008 +n44021005009 +n44021005010 +n44021005011 +n44021005012 +n44021005013 +n44021005014 +n44021005015 +n44021005016 +n44021005017 +n44021005018 +n44021005019 +n44021005020 +n44021005021 +n44021005022 +n44021005023 +n44021005024 +n44021005025 +n44021005026 +n44021005027 +n44021005028 +n44021006001 +n44021006002 +n44021006003 +n44021006004 +n44021006005 +n44021006006 +n44021006007 +n44021006009 +n44021006008 +n44021006010 +n44021006011 +n44021006012 +n44021006013 +n44021007002 +n44021007001 +n44021007003 +n44021007004 +n44021007005 +n44021007006 +n44021007007 +n44021007008 +n44021007009 +n44021007010 +n44021007011 +n44021007012 +n44021007013 +n44021007014 +n44021007015 +n44021007016 +n44021007017 +n44021007018 +n44021007019 +n44021008002 +n44021008001 +n44021008003 +n44021008004 +n44021008005 +n44021008006 +n44021008007 +n44021008008 +n44021008009 +n44021008010 +n44021008011 +n44021008012 +n44021008013 +n44021008014 +n44021008015 +n44021008016 +n44021008017 +n44021008018 +n44021008019 +n44021008020 +n44021008021 +n44021008022 +n44021009002 +n44021009001 +n44021009003 +n44021009004 +n44021009005 +n44021009006 +n44021009007 +n44021010002 +n44021010001 +n44021010003 +n44021010004 +n44021010005 +n44021010006 +n44021010007 +n44021010008 +n44021010009 +n44021010010 +n44021010011 +n44021010012 +n44021011001 +n44021011002 +n44021011003 +n44021011004 +n44021011005 +n44021011006 +n44021011007 +n44021011008 +n44021011009 +n44021011010 +n44021011011 +n44021011012 +n44021011013 +n44021011014 +n44021011015 +n44021011016 +n44021011017 +n44021011018 +n44021011019 +n44021011020 +n44021011021 +n44021011022 +n44021011023 +n44021011024 +n44021011025 +n44021011026 +n44021011027 +n44021011028 +n44021011029 +n44021011030 +n44021011031 +n44021011032 +n44021011033 +n44021011034 +n44021011035 +n44021011036 +n44021011037 +n44021011038 +n44021011039 +n44021011040 +n44021011041 +n44021011042 +n44021012002 +n44021012001 +n44021012003 +n44021012004 +n44021012005 +n44021012007 +n44021012006 +n44021012008 +n44021012009 +n44021012010 +n44021012011 +n44021012012 +n44021012013 +n44021012014 +n44021012015 +n44021012016 +n44021013001 +n44021013002 +n44021013003 +n44021013004 +n44021013005 +n44021013006 +n44021013007 +n44021013008 +n44021013009 +n44021013010 +n44021013011 +n44021013012 +n44021013014 +n44021013013 +n44021013015 +n44021013016 +n44021013017 +n44021013018 +n44021013019 +n44021013020 +n44021013021 +n44021013022 +n44021013023 +n44021013024 +n44021013025 +n44021013026 +n44021013027 +n44021013028 +n44021013029 +n44021013030 +n44021014003 +n44021014001 +n44021014002 +n44021014004 +n44021014005 +n44021014006 +n44021014007 +n44021014008 +n44021014009 +n44021014010 +n44021014011 +n44021015002 +n44021015001 +n44021015003 +n44021015004 +n44021015005 +n44021015006 +n44021015007 +n44021015008 +n44021015009 +n44021016002 +n44021016001 +n44021016003 +n44021016004 +n44021016005 +n44021016006 +n44021016007 +n44021016008 +n44021016009 +n44021016010 +n44021016011 +n44021016012 +n44021016013 +n44021016014 +n44021016015 +n44021016016 +n44021016017 +n44021016018 +n44021017002 +n44021017001 +n44021017003 +n44021017004 +n44021017005 +n44021017006 +n44021017007 +n44021017008 +n44021017009 +n44021017010 +n44021018002 +n44021018001 +n44021018003 +n44021018004 +n44021018005 +n44021018006 +n44021018007 +n44021018008 +n44021018009 +n44021018010 +n44021018012 +n44021018013 +n44021018011 +n44021018014 +n44021018015 +n44021019001 +n44021019002 +n44021019003 +n44021019004 +n44021019005 +n44021019006 +n44021019007 +n44021019008 +n44021019009 +n44021019010 +n44021019011 +n44021019012 +n44021019013 +n44021019014 +n44021019015 +n44021019016 +n44021019017 +n44021019018 +n44021020002 +n44021020001 +n44021020003 +n44021020004 +n44021020005 +n44021020006 +n44021020008 +n44021020007 +n44021020009 +n44021020010 +n44021020011 +n44021020012 +n44021020013 +n44021020018 +n44021020019 +n44021020014 +n44021020015 +n44021020016 +n44021020017 +n44021020020 +n44021020021 +n44021020022 +n44021020023 +n44021020024 +n44021020025 +n44021021002 +n44021021001 +n44021021003 +n44021021004 +n44021021005 +n44021021007 +n44021021006 +n44021021008 +n44021021009 +n44021021010 +n44021021011 +n44021021012 +n44021021013 +n44021021014 +n44021021015 +n44021021016 +n44021021017 +n44021021018 +n44021021019 +n44021021020 +n44021021021 +n44021021022 +n44021021023 +n44021021024 +n44021021025 +n44021022002 +n44021022001 +n44021022003 +n44021022004 +n44021022005 +n44021022006 +n44021022007 +n44021023002 +n44021023001 +n44021023003 +n44021023004 +n44021023005 +n44021023006 +n44021023007 +n44021023008 +n44021023009 +n44021023010 +n44021023011 +n44021023012 +n44021023013 +n44021023014 +n44021024001 +n44021024002 +n44021024003 +n44021024004 +n44021024005 +n44021024006 +n44021024007 +n44021024008 +n44021024009 +n44021024010 +n44021024011 +n44021024012 +n44021024013 +n44021024014 +n44021024015 +n44021024016 +n44021024017 +n44021024018 +n44021024019 +n44021024020 +n44021024021 +n44021024022 +n44021024023 +n44021024024 +n44021024025 +n44021024026 +n44021024027 +n44021024028 +n44021024029 +n44021024030 +n44021025002 +n44021025001 +n44021025003 +n44021025004 +n44021025005 +n44021025006 +n44021025007 +n44021025008 +n44021025009 +n44021025010 +n44021025012 +n44021025011 +n44021025013 +n44021025014 +n44021025015 +n44021025016 +n44021025017 +n44021025018 +n44021025019 +n44021026001 +n44021026002 +n44021026003 +n44021026004 +n44021026005 +n44021026006 +n44021026007 +n44021026008 +n44021026009 +n44021026010 +n44021026011 +n44021026012 +n44021026013 +n44021026014 +n44021026015 +n44021026016 +n44021026017 +n44021026018 +n44021026019 +n44021026020 +n44021026021 +n44021026022 +n44021026023 +n44021026024 +n44021026025 +n44021026026 +n44021026027 +n44021026028 +n44021026029 +n44021026030 +n44021026031 +n44021026032 +n44021027002 +n44021027001 +n44021027003 +n44021027004 +n44021027005 +n44021027006 +n44021027007 +n44021027008 +n44021027009 +n44021027010 +n44021027011 +n44021027012 +n44021027013 +n44021027014 +n44021027015 +n44021027016 +n44021027017 +n44021027018 +n44021027019 +n44021027020 +n44021027021 +n44021027022 +n44021027023 +n44021027024 +n44021027025 +n44021027026 +n44021027027 +n44021028001 +n44021028002 +n44021028003 +n44021028004 +n44021028005 +n44021028006 +n44021028007 +n44021028008 +n44021028009 +n44021028010 +n44021028011 +n44021028012 +n44021028013 +n44021028014 +n44021028015 +n44021028016 +n44021028017 +n44021028018 +n44021028019 +n44021028020 +n44021028021 +n44021028022 +n44021028024 +n44021028023 +n44021028025 +n44021028026 +n44021028027 +n44021028028 +n44021028029 +n44021028030 +n44021028031 +n44021028032 +n44021028033 +n44021028034 +n44021028035 +n44021028036 +n44021029002 +n44021029001 +n44021029003 +n44021029004 +n44021029005 +n44021029006 +n44021029007 +n44021029008 +n44021029009 +n44021029010 +n44021029011 +n44021029013 +n44021029014 +n44021029012 +n44021029015 +n44021029016 +n44021029017 +n44021029018 +n44021029019 +n44021029020 +n44021030002 +n44021030001 +n44021030003 +n44021030004 +n44021030005 +n44021030006 +n44021030007 +n44021030008 +n44021030009 +n44021030010 +n44021030011 +n44021030012 +n44021030013 +n44021030014 +n44021030015 +n44021030016 +n44021030017 +n44021030018 +n44021030019 +n44021030020 +n44021030021 +n44021030022 +n44021030023 +n44021030024 +n44021031002 +n44021031001 +n44021031003 +n44021031004 +n44021031005 +n44021031006 +n44021031007 +n44021031008 +n44021031009 +n44021031010 +n44021031011 +n44021031012 +n44021031014 +n44021031013 +n44021032001 +n44021032002 +n44021032003 +n44021032004 +n44021032005 +n44021032006 +n44021032007 +n44021032008 +n44021032009 +n44021032011 +n44021032010 +n44021032012 +n44021032013 +n44021032014 +n44021032015 +n44021032016 +n44021032017 +n44021032018 +n44021032019 +n44021032020 +n44021032021 +n44021033001 +n44021033002 +n44021033003 +n44021033004 +n44021033005 +n44021033006 +n44021033007 +n44021033008 +n44021033009 +n44021033010 +n44021033011 +n44021033012 +n44021033013 +n44021033014 +n44021033015 +n44021033016 +n44021033017 +n44021033018 +n44021033019 +n44021034002 +n44021034001 +n44021034003 +n44021034004 +n44021034005 +n44021034006 +n44021034007 +n44021034008 +n44021034011 +n44021034009 +n44021034010 +n44021034012 +n44021034013 +n44021034014 +n44021034015 +n44021034016 +n44021034017 +n44021034018 +n44021034019 +n44021034020 +n44021034021 +n44021034022 +n44021034023 +n44021034024 +n44021035002 +n44021035001 +n44021035003 +n44021035004 +n44021035005 +n44021035006 +n44021035007 +n44021035008 +n44021035009 +n44021035010 +n44021035011 +n44021035012 +n44021035013 +n44021035014 +n44021035015 +n44021035016 +n44021035017 +n44021036002 +n44021036001 +n44021036003 +n44021036004 +n44021036005 +n44021036006 +n44021036007 +n44021036008 +n44021036009 +n44021037002 +n44021037001 +n44021037003 +n44021037004 +n44021037005 +n44021037006 +n44021037007 +n44021037008 +n44021037009 +n44021037010 +n44021037011 +n44021037012 +n44021037013 +n44021037014 +n44021037015 +n44021037016 +n44021037017 +n44021037018 +n44021037020 +n44021037019 +n44021037021 +n44021037022 +n44021037023 +n44021038002 +n44021038001 +n44021038003 +n44021038004 +n44021038005 +n44021038006 +n44021038007 +n44021038008 +n44021038009 +n44021038010 +n44021038011 +n44021038012 +n44021038013 +n44021038014 +n44021038015 +n44021038016 +n44021038017 +n44021038018 +n44021038019 +n44021038020 +n44021038021 +n44021038022 +n44021039002 +n44021039001 +n44021039003 +n44021039004 +n44021039007 +n44021039005 +n44021039008 +n44021039006 +n44021039009 +n44021039010 +n44021039011 +n44021039012 +n44021039013 +n44021039014 +n44021039015 +n44021039016 +n44021039018 +n44021039017 +n44021039019 +n44021039020 +n44021039021 +n44021039022 +n44021039023 +n44021039024 +n44021039025 +n44021040002 +n44021040001 +n44021040003 +n44021040004 +n44021040005 +n44021040006 +n44021040007 +n44021040008 +n44021040009 +n44021040010 +n44021040011 +n44021040012 +n44021040013 +n44021040014 +n44021040016 +n44021040015 +n44021040017 +n44021040018 +n44021040019 +n44021040020 +n44021040021 +n44021040022 +n44021040023 +n44022001001 +n44022001002 +n44022001003 +n44022001004 +n44022001005 +n44022001006 +n44022001007 +n44022001008 +n44022001009 +n44022001010 +n44022001011 +n44022002002 +n44022002001 +n44022002003 +n44022002004 +n44022002005 +n44022002006 +n44022002007 +n44022002008 +n44022002009 +n44022002010 +n44022002011 +n44022002012 +n44022002013 +n44022003001 +n44022003002 +n44022003003 +n44022003004 +n44022003005 +n44022003006 +n44022003007 +n44022003008 +n44022003009 +n44022003011 +n44022003010 +n44022003012 +n44022003013 +n44022003014 +n44022003015 +n44022003016 +n44022003017 +n44022003018 +n44022003019 +n44022003020 +n44022003021 +n44022003022 +n44022003023 +n44022003024 +n44022003025 +n44022003027 +n44022003026 +n44022003028 +n44022003029 +n44022003030 +n44022003031 +n44022003032 +n44022003033 +n44022003034 +n44022004001 +n44022004002 +n44022004003 +n44022004004 +n44022004005 +n44022004006 +n44022004007 +n44022004008 +n44022004009 +n44022004010 +n44022004011 +n44022004012 +n44022004014 +n44022004013 +n44022004015 +n44022004016 +n44022005001 +n44022005002 +n44022005003 +n44022005004 +n44022005005 +n44022005006 +n44022005007 +n44022005008 +n44022005009 +n44022005010 +n44022005011 +n44022005012 +n44022005013 +n44022005014 +n44022005015 +n44022005016 +n44022005017 +n44022005018 +n44022005019 +n44022005020 +n44022005021 +n44022005022 +n44022005023 +n44022005024 +n44022005025 +n44022005026 +n44022005027 +n44022005028 +n44022005029 +n44022005030 +n44022005031 +n44022006002 +n44022006001 +n44022006003 +n44022006004 +n44022006005 +n44022006006 +n44022006007 +n44022006008 +n44022006009 +n44022006010 +n44022006011 +n44022006012 +n44022006013 +n44022006014 +n44022006015 +n44022006016 +n44022006017 +n44022006018 +n44022006019 +n44022007002 +n44022007001 +n44022007003 +n44022007004 +n44022007005 +n44022007006 +n44022007007 +n44022007008 +n44022007009 +n44022007010 +n44022007011 +n44022007012 +n44022007013 +n44022007014 +n44022007015 +n44022008002 +n44022008001 +n44022008003 +n44022008004 +n44022008005 +n44022008006 +n44022008008 +n44022008007 +n44022008009 +n44022008010 +n44022008011 +n44022008012 +n44022008013 +n44022008014 +n44022008015 +n44022008016 +n44022008017 +n44022008018 +n44022009002 +n44022009007 +n44022009001 +n44022009003 +n44022009004 +n44022009005 +n44022009006 +n44022009008 +n44022009009 +n44022009011 +n44022009013 +n44022009014 +n44022009010 +n44022009012 +n44022009015 +n44022009016 +n44022009017 +n44022010002 +n44022010001 +n44022010003 +n44022010004 +n44022010005 +n44022010007 +n44022010006 +n44022010008 +n44022010009 +n44022010010 +n44022010011 +n44022010012 +n44022010013 +n44022010014 +n44022010015 +n44022010016 +n44022010017 +n44022010018 +n44022010019 +n44022010020 +n44022010021 +n44022010024 +n44022010022 +n44022010023 +n44022011002 +n44022011001 +n44022011003 +n44022011004 +n44022011005 +n44022011006 +n44022011007 +n44022011008 +n44022011009 +n44022011010 +n44022011011 +n44022011012 +n44022011013 +n44022011014 +n44022011015 +n44022011016 +n44022011017 +n44022011018 +n44022012002 +n44022012001 +n44022012003 +n44022012004 +n44022012005 +n44022012006 +n44022012007 +n44022012008 +n44022012009 +n44022012010 +n44022012011 +n44022012012 +n44022012013 +n44022012014 +n44022013001 +n44022013002 +n44022013003 +n44022013004 +n44022013005 +n44022013006 +n44022013007 +n44022013008 +n44022013009 +n44022013010 +n44022013011 +n44022013012 +n44022013013 +n44022013014 +n44022013015 +n44022013016 +n44022013017 +n44022014002 +n44022014001 +n44022014003 +n44022014004 +n44022014005 +n44022014006 +n44022014007 +n44022014008 +n44022014009 +n44022014010 +n44022014011 +n44022014012 +n44022014013 +n44022014014 +n44022014015 +n44022014016 +n44022014017 +n44022014018 +n44022014019 +n44022014020 +n44022014021 +n44022014022 +n44022014023 +n44022014024 +n44022014025 +n44022015001 +n44022015002 +n44022015004 +n44022015005 +n44022015006 +n44022015007 +n44022015003 +n44022015008 +n44022015009 +n44022015010 +n44022015011 +n44022016001 +n44022016002 +n44022016003 +n44022016004 +n44022016005 +n44022016006 +n44022016007 +n44022016008 +n44022016009 +n44022016010 +n44022016011 +n44022016012 +n44022016013 +n44022016014 +n44022016015 +n44022017002 +n44022017001 +n44022017003 +n44022017004 +n44022017005 +n44022017006 +n44022017007 +n44022017008 +n44022017009 +n44022017010 +n44022017011 +n44022017012 +n44022017013 +n44022017014 +n44022017015 +n44022017016 +n44022018001 +n44022018002 +n44022018003 +n44022018004 +n44022018005 +n44022018006 +n44022018007 +n44022018008 +n44022018009 +n44022018010 +n44022018011 +n44022018012 +n44022018013 +n44022018014 +n44022018015 +n44022018016 +n44022018017 +n44022018018 +n44022018019 +n44022019001 +n44022019002 +n44022019003 +n44022019004 +n44022019005 +n44022019006 +n44022019007 +n44022019008 +n44022019009 +n44022019010 +n44022019011 +n44022019012 +n44022019013 +n44022019014 +n44022019015 +n44022019016 +n44022019017 +n44022019018 +n44022020001 +n44022020002 +n44022020003 +n44022020004 +n44022020005 +n44022020006 +n44022020007 +n44022020008 +n44022020009 +n44022020010 +n44022020011 +n44022020012 +n44022020013 +n44022020014 +n44022020015 +n44022020016 +n44022020017 +n44022020018 +n44022020019 +n44022020020 +n44022020021 +n44022020022 +n44022021001 +n44022021002 +n44022021003 +n44022021004 +n44022021005 +n44022021006 +n44022021007 +n44022021008 +n44022021009 +n44022021010 +n44022021011 +n44022021012 +n44022022002 +n44022022001 +n44022022003 +n44022022004 +n44022022005 +n44022022006 +n44022022007 +n44022022008 +n44022022009 +n44022022010 +n44022022011 +n44022022012 +n44022022013 +n44022022014 +n44022022015 +n44022022016 +n44022022017 +n44022022018 +n44022022019 +n44022022021 +n44022022020 +n44022022022 +n44022022023 +n44022022024 +n44022023002 +n44022023001 +n44022023003 +n44022023004 +n44022023005 +n44022023006 +n44022023007 +n44022023008 +n44022023009 +n44022023010 +n44022023011 +n44022023012 +n44022023013 +n44022024001 +n44022024002 +n44022024003 +n44022024004 +n44022024005 +n44022024006 +n44022024007 +n44022024008 +n44022024009 +n44022024010 +n44022024011 +n44022024012 +n44022024013 +n44022024014 +n44022024015 +n44022024016 +n44022024017 +n44022024018 +n44022024019 +n44022024020 +n44022025002 +n44022025001 +n44022025003 +n44022025004 +n44022025005 +n44022025006 +n44022025007 +n44022025008 +n44022025009 +n44022025010 +n44022025011 +n44022025012 +n44022025013 +n44022025014 +n44022025015 +n44022025016 +n44022025017 +n44022025018 +n44022025021 +n44022025019 +n44022025020 +n44022026002 +n44022026001 +n44022026003 +n44022026004 +n44022026005 +n44022026006 +n44022026007 +n44022026008 +n44022026009 +n44022026011 +n44022026010 +n44022026012 +n44022026014 +n44022026013 +n44022026015 +n44022026016 +n44022026017 +n44022026018 +n44022027002 +n44022027001 +n44022027003 +n44022027004 +n44022027005 +n44022027006 +n44022027007 +n44022027008 +n44022027009 +n44022027010 +n44022027011 +n44022027013 +n44022027012 +n44022027014 +n44022027015 +n44022028002 +n44022028001 +n44022028003 +n44022028004 +n44022028005 +n44022028006 +n44022028007 +n44022028008 +n44022028009 +n44022028010 +n44022028011 +n44022028013 +n44022028012 +n44022028014 +n44022028015 +n44022028017 +n44022028016 +n44022028018 +n44022028019 +n44022029002 +n44022029001 +n44022029003 +n44022029004 +n44022029005 +n44022029006 +n44022029007 +n44022029008 +n44022029009 +n44022029013 +n44022029010 +n44022029011 +n44022029012 +n44022029014 +n44022029015 +n44022029016 +n44022029017 +n44022029018 +n44022029019 +n44022029020 +n44022029021 +n44022029022 +n44022029023 +n44022030002 +n44022030001 +n44022030003 +n44022030004 +n44022030005 +n44022030006 +n44022030007 +n44022030008 +n44022030009 +n44022030010 +n44022030011 +n44022030012 +n44022030013 +n44022030014 +n44022030015 +n44022030016 +n44022030017 +n44022030018 +n44022030019 +n44022030020 +n44022030021 +n44022030022 +n44022030023 +n44022030024 +n44022030025 +n44022030026 +n44022030027 +n44022030028 +n44022030029 +n44022030030 +n44022030031 +n44023001002 +n44023001003 +n44023001004 +n44023001001 +n44023001005 +n44023001006 +n44023001007 +n44023001008 +n44023001009 +n44023001010 +n44023001011 +n44023001012 +n44023001013 +n44023001014 +n44023001015 +n44023001016 +n44023001017 +n44023001018 +n44023001019 +n44023001020 +n44023002002 +n44023002001 +n44023002003 +n44023002004 +n44023002005 +n44023002006 +n44023002007 +n44023002008 +n44023002009 +n44023002010 +n44023002011 +n44023002012 +n44023003001 +n44023003002 +n44023003003 +n44023003004 +n44023003005 +n44023003006 +n44023003007 +n44023003008 +n44023003009 +n44023003010 +n44023003011 +n44023003012 +n44023003013 +n44023003014 +n44023003015 +n44023003016 +n44023003017 +n44023003018 +n44023003019 +n44023003020 +n44023003021 +n44023003022 +n44023003023 +n44023003024 +n44023003025 +n44023003026 +n44023004002 +n44023004001 +n44023004003 +n44023004004 +n44023004005 +n44023004006 +n44023004007 +n44023004008 +n44023004009 +n44023005002 +n44023005001 +n44023005003 +n44023005004 +n44023005005 +n44023005006 +n44023005007 +n44023005008 +n44023005009 +n44023005010 +n44023005012 +n44023005011 +n44023005013 +n44023005014 +n44023005015 +n44023005016 +n44023005017 +n44023005018 +n44023005019 +n44023005020 +n44023006002 +n44023006003 +n44023006004 +n44023006001 +n44023006005 +n44023006006 +n44023006007 +n44023006008 +n44023006009 +n44023006010 +n44023006012 +n44023006011 +n44023006013 +n44023006014 +n44023006015 +n44023006016 +n44023006017 +n44023006018 +n44023006019 +n44023006020 +n44023006021 +n44023006022 +n44023006023 +n44023006024 +n44023006025 +n44023006026 +n44023006027 +n44023006028 +n44023006029 +n44023006030 +n44023006031 +n44023007002 +n44023007001 +n44023007003 +n44023007004 +n44023007005 +n44023007006 +n44023007007 +n44023007008 +n44023007009 +n44023007010 +n44023007011 +n44023007012 +n44023007013 +n44023007014 +n44023008002 +n44023008001 +n44023008003 +n44023008004 +n44023008005 +n44023008006 +n44023008007 +n44023008008 +n44023008009 +n44023008010 +n44023008012 +n44023008011 +n44023008013 +n44023008014 +n44023008015 +n44023009002 +n44023009001 +n44023009003 +n44023009004 +n44023009005 +n44023009006 +n44023009007 +n44023009008 +n44023009009 +n44023009010 +n44023009011 +n44023009012 +n44023009013 +n44023009014 +n44023009015 +n44023009016 +n44023009017 +n44023009018 +n44023009019 +n44023009020 +n44023009021 +n44023009022 +n44023009024 +n44023009023 +n44023009025 +n44023009026 +n44023009027 +n44023009028 +n44023009029 +n44023010002 +n44023010001 +n44023010004 +n44023010003 +n44023010006 +n44023010007 +n44023010005 +n44023010008 +n44023010009 +n44023010010 +n44023010011 +n44023010012 +n44023010013 +n44023010014 +n44023010015 +n44023010016 +n44023010017 +n44023010018 +n44023010019 +n44023010020 +n44023010021 +n44023010022 +n44023010024 +n44023010023 +n44023010025 +n44023010026 +n44023010027 +n44023011002 +n44023011001 +n44023011003 +n44023011004 +n44023011005 +n44023011006 +n44023011007 +n44023011008 +n44023011009 +n44023011010 +n44023011012 +n44023011011 +n44023011013 +n44023011014 +n44023011015 +n44023011016 +n44023011017 +n44023011018 +n44023011019 +n44023011021 +n44023011020 +n44023011022 +n44023011023 +n44023011024 +n44023011025 +n44023012002 +n44023012001 +n44023012003 +n44023012004 +n44023012005 +n44023012006 +n44023012007 +n44023012008 +n44023012009 +n44023012010 +n44023012011 +n44023012012 +n44023012013 +n44023012014 +n44023012015 +n44023012016 +n44023012017 +n44023012018 +n44023012019 +n44023013002 +n44023013001 +n44023013003 +n44023013004 +n44023013005 +n44023013006 +n44023013007 +n44023013008 +n44023013009 +n44023014001 +n44023014002 +n44023014003 +n44023014004 +n44023014005 +n44023014006 +n44023014007 +n44023014008 +n44023014009 +n44023014010 +n44023014011 +n44023014012 +n44023014013 +n44023014014 +n44023014015 +n44023014016 +n44023014017 +n44023014018 +n44023015002 +n44023015001 +n44023015003 +n44023015004 +n44023015005 +n44023015006 +n44023015007 +n44023015008 +n44023015009 +n44023015010 +n44023015011 +n44023015012 +n44023015013 +n44023015014 +n44023015015 +n44023015016 +n44023015017 +n44023015018 +n44023015019 +n44023015020 +n44023015021 +n44023015023 +n44023015022 +n44023015024 +n44023015025 +n44023015026 +n44023015027 +n44023015028 +n44023015029 +n44023015030 +n44023015031 +n44023015032 +n44023016002 +n44023016003 +n44023016004 +n44023016005 +n44023016006 +n44023016007 +n44023016001 +n44023016008 +n44023016009 +n44023016010 +n44023016011 +n44023016012 +n44023016013 +n44023016014 +n44023016015 +n44023016016 +n44023016017 +n44023016018 +n44023017002 +n44023017003 +n44023017004 +n44023017001 +n44023017005 +n44023017006 +n44023017007 +n44023017008 +n44023017009 +n44023017010 +n44023017011 +n44023017012 +n44023017013 +n44023017014 +n44023017015 +n44023017017 +n44023017016 +n44023017018 +n44023017019 +n44023017020 +n44023018002 +n44023018003 +n44023018001 +n44023018004 +n44023018005 +n44023018006 +n44023018007 +n44023018008 +n44023018009 +n44023018010 +n44023018011 +n44023018012 +n44023018013 +n44023018014 +n44023018015 +n44023018016 +n44023018017 +n44023018018 +n44023018019 +n44023018020 +n44023018021 +n44023018022 +n44023018023 +n44023018024 +n44023018025 +n44023018026 +n44023018027 +n44023019002 +n44023019006 +n44023019007 +n44023019001 +n44023019003 +n44023019004 +n44023019005 +n44023019008 +n44023019009 +n44023019010 +n44023019011 +n44023019012 +n44023019013 +n44023019014 +n44023019015 +n44023019017 +n44023019018 +n44023019016 +n44023020002 +n44023020001 +n44023020003 +n44023020004 +n44023020005 +n44023020006 +n44023020007 +n44023020008 +n44023020009 +n44023020010 +n44023020011 +n44023020012 +n44023020013 +n44023020014 +n44023020015 +n44023020016 +n44023020017 +n44023020018 +n44023020019 +n44023020020 +n44023020021 +n44023020022 +n44023020023 +n44023020024 +n44023021002 +n44023021001 +n44023021003 +n44023021004 +n44023021005 +n44023021007 +n44023021006 +n44023021008 +n44023021009 +n44023021010 +n44023021011 +n44023021012 +n44023021013 +n44023021014 +n44023021015 +n44023021016 +n44023021017 +n44023021018 +n44023021019 +n44023021020 +n44023021021 +n44023021022 +n44023021023 +n44023021024 +n44023021025 +n44023021026 +n44023021027 +n44023021028 +n44023021029 +n44023021030 +n44023021031 +n44023021032 +n44023021033 +n44023022002 +n44023022003 +n44023022001 +n44023022004 +n44023022005 +n44023022006 +n44023022007 +n44023022008 +n44023022009 +n44023022010 +n44023022011 +n44023022012 +n44023022013 +n44023022014 +n44023022015 +n44023023001 +n44023023002 +n44023023003 +n44023023004 +n44023023005 +n44023023006 +n44023023007 +n44023023008 +n44023023009 +n44023023010 +n44023023015 +n44023023016 +n44023023017 +n44023023018 +n44023023019 +n44023023020 +n44023023011 +n44023023012 +n44023023013 +n44023023014 +n44023023021 +n44023023022 +n44023023023 +n44023023024 +n44023023025 +n44023024002 +n44023024001 +n44023024003 +n44023024004 +n44023024005 +n44023024006 +n44023024007 +n44023024008 +n44023024009 +n44023024010 +n44023024011 +n44023024012 +n44023025001 +n44023025002 +n44023025003 +n44023025004 +n44023025005 +n44023025006 +n44023026001 +n44023026002 +n44023026003 +n44023026004 +n44023026005 +n44023026006 +n44023026007 +n44023027001 +n44023027002 +n44023027003 +n44023027004 +n44023027005 +n44023027006 +n44023027007 +n44023027008 +n44023027009 +n44023027010 +n44023027011 +n44023027012 +n44023027013 +n44023027014 +n44023027015 +n44023027016 +n44023027017 +n44023027018 +n44023027019 +n44023027020 +n44023027021 +n44023028002 +n44023028001 +n44023028003 +n44023028004 +n44023028005 +n44023028006 +n44023028007 +n44023028008 +n44023028009 +n44023028010 +n44023028011 +n44023028012 +n44023028013 +n44023028014 +n44023029002 +n44023029001 +n44023029003 +n44023029004 +n44023029005 +n44023029006 +n44023029007 +n44023029008 +n44023029010 +n44023029009 +n44023029011 +n44023029012 +n44023029013 +n44023029014 +n44023029016 +n44023029015 +n44023030002 +n44023030001 +n44023030003 +n44023030004 +n44023030005 +n44023030006 +n44023030007 +n44023030008 +n44023030009 +n44023030010 +n44023030011 +n44023030012 +n44023030013 +n44023030014 +n44023030015 +n44023030016 +n44023030017 +n44023030018 +n44023030019 +n44023030020 +n44023030021 +n44023031002 +n44023031003 +n44023031001 +n44023031004 +n44023031005 +n44023031006 +n44023031007 +n44023031008 +n44023031009 +n44023031010 +n44023031011 +n44023031012 +n44023031013 +n44023031014 +n44023031015 +n44023031016 +n44023031017 +n44023032002 +n44023032001 +n44023032003 +n44023032004 +n44023032005 +n44023032006 +n44023032007 +n44023032008 +n44023032009 +n44023032010 +n44023032011 +n44023032012 +n44023032013 +n44023033001 +n44023033002 +n44023033003 +n44023033004 +n44023033005 +n44023033006 +n44023033007 +n44023033008 +n44023033009 +n44023033010 +n44023033011 +n44023033012 +n44023033013 +n44023033014 +n44023033015 +n44023033016 +n44023034002 +n44023034001 +n44023034003 +n44023034004 +n44023034005 +n44023034006 +n44023034007 +n44023034008 +n44023034009 +n44023034010 +n44023034011 +n44023034012 +n44023034013 +n44023035003 +n44023035001 +n44023035002 +n44023035004 +n44023035005 +n44023035006 +n44023035007 +n44023035008 +n44023035009 +n44023035010 +n44023035011 +n44023035012 +n44023035013 +n44023035014 +n44023035015 +n44023035016 +n44023035017 +n44024001002 +n44024001001 +n44024001003 +n44024001004 +n44024001005 +n44024001006 +n44024001007 +n44024001008 +n44024001009 +n44024001010 +n44024001011 +n44024001012 +n44024001013 +n44024001014 +n44024001015 +n44024001016 +n44024001017 +n44024001018 +n44024001019 +n44024001020 +n44024001021 +n44024001022 +n44024002002 +n44024002001 +n44024002003 +n44024002004 +n44024002005 +n44024002006 +n44024002007 +n44024002008 +n44024002009 +n44024002010 +n44024002011 +n44024002012 +n44024002013 +n44024002014 +n44024002015 +n44024002016 +n44024002017 +n44024002018 +n44024002019 +n44024002020 +n44024002021 +n44024002022 +n44024002023 +n44024003002 +n44024003001 +n44024003003 +n44024003004 +n44024003005 +n44024003008 +n44024003009 +n44024003010 +n44024003006 +n44024003007 +n44024004002 +n44024004001 +n44024004003 +n44024004004 +n44024004005 +n44024004006 +n44024004007 +n44024004008 +n44024004009 +n44024004010 +n44024004011 +n44024004012 +n44024004013 +n44024004014 +n44024004015 +n44024005002 +n44024005001 +n44024005003 +n44024005004 +n44024005005 +n44024005006 +n44024005007 +n44024005008 +n44024005009 +n44024005010 +n44024005011 +n44024005012 +n44024005013 +n44024005014 +n44024005015 +n44024005016 +n44024005018 +n44024005017 +n44024005019 +n44024005020 +n44024005021 +n44024005022 +n44024006001 +n44024006002 +n44024006003 +n44024006004 +n44024006006 +n44024006005 +n44024006007 +n44024006008 +n44024006009 +n44024008001 +n44024008002 +n44024008003 +n44024008004 +n44024008005 +n44024008006 +n44024008007 +n44024008008 +n44024008009 +n44024008010 +n44024008011 +n44024008012 +n44024008013 +n44024009002 +n44024009001 +n44024009003 +n44024009004 +n44024009005 +n44024009006 +n44024009007 +n44024009008 +n44024009009 +n44024010002 +n44024010001 +n44024010003 +n44024010004 +n44024010005 +n44024010006 +n44024010007 +n44024010008 +n44024010009 +n44024010010 +n44024010011 +n44024010012 +n44024010013 +n44024010014 +n44024010015 +n44024010016 +n44024010017 +n44024010018 +n44024010019 +n44024010020 +n44024010021 +n44024010022 +n44024010023 +n44024010024 +n44024011001 +n44024011002 +n44024011003 +n44024011004 +n44024011005 +n44024011006 +n44024011007 +n44024011008 +n44024011009 +n44024011010 +n44024011011 +n44024011012 +n44024011013 +n44024011014 +n44024011015 +n44024011016 +n44024012001 +n44024012006 +n44024012007 +n44024012008 +n44024012009 +n44024012010 +n44024012011 +n44024012012 +n44024012014 +n44024012013 +n44024012002 +n44024012003 +n44024012004 +n44024012005 +n44024012015 +n44024012016 +n44024012017 +n44024012018 +n44024012019 +n44024012020 +n44024012021 +n44024012022 +n44024013001 +n44024013003 +n44024013002 +n44024013004 +n44024013005 +n44024013006 +n44024013007 +n44024013008 +n44024013009 +n44024014002 +n44024014001 +n44024014003 +n44024014004 +n44024014005 +n44024014006 +n44024014007 +n44024014008 +n44024014009 +n44024014010 +n44024014011 +n44024014012 +n44024014013 +n44024014014 +n44024014015 +n44024014016 +n44024014017 +n44024014018 +n44024014019 +n44024014020 +n44024014021 +n44024014022 +n44024014023 +n44024014024 +n44024014025 +n44024014026 +n44024014027 +n44024014028 +n44024015002 +n44024015001 +n44024015003 +n44024015004 +n44024015005 +n44024015006 +n44024015007 +n44024015008 +n44024015009 +n44024015010 +n44024015012 +n44024015013 +n44024015011 +n44024015015 +n44024015014 +n44024015016 +n44024015017 +n44024016001 +n44024016002 +n44024016003 +n44024016004 +n44024016005 +n44024016006 +n44024016007 +n44024016008 +n44024016009 +n44024016010 +n44024016011 +n44024016012 +n44024016013 +n44024016014 +n44024016015 +n44024016016 +n44024017003 +n44024017001 +n44024017002 +n44024017004 +n44024017005 +n44024017006 +n44024017007 +n44024017008 +n44024017009 +n44024017010 +n44024017011 +n44024017012 +n44024017013 +n44024018001 +n44024018002 +n44024018003 +n44024018004 +n44024018005 +n44024018006 +n44024018007 +n44024018008 +n44024018009 +n44024018010 +n44024018011 +n44024018012 +n44024018013 +n44024018014 +n44024019002 +n44024019001 +n44024019003 +n44024019004 +n44024019005 +n44024019006 +n44024019007 +n44024019009 +n44024019010 +n44024019011 +n44024019012 +n44024019013 +n44024019008 +n44024019014 +n44024019015 +n44024019016 +n44024019017 +n44024019018 +n44024020001 +n44024020002 +n44024020003 +n44024020004 +n44024020005 +n44024020007 +n44024020006 +n44024020008 +n44024020009 +n44024020010 +n44024020011 +n44024020012 +n44024021001 +n44024021002 +n44024021003 +n44024021004 +n44024021005 +n44024021006 +n44024021007 +n44024021008 +n44024021009 +n44024021010 +n44024021011 +n44024021012 +n44024021013 +n44024021014 +n44024021015 +n44024021016 +n44024021017 +n44024021018 +n44024021019 +n44024022002 +n44024022001 +n44024022003 +n44024022004 +n44024022005 +n44024022006 +n44024022007 +n44024022008 +n44024022009 +n44024022010 +n44024022011 +n44024022012 +n44024022013 +n44024022014 +n44024022015 +n44024022016 +n44024022017 +n44024022018 +n44024022019 +n44024022020 +n44024022021 +n44024023001 +n44024023002 +n44024023003 +n44024023004 +n44024023005 +n44024023007 +n44024023006 +n44024023008 +n44024023009 +n44024023011 +n44024023010 +n44024023012 +n44024023013 +n44024023014 +n44024023015 +n44024023016 +n44024024002 +n44024024001 +n44024024003 +n44024024004 +n44024024006 +n44024024007 +n44024024005 +n44024024008 +n44024024009 +n44024024010 +n44024024011 +n44024024012 +n44024024013 +n44024024014 +n44024024015 +n44024024016 +n44024024017 +n44024024018 +n44024024019 +n44024024020 +n44024024021 +n44024024022 +n44024024023 +n44024024024 +n44024024025 +n44024024026 +n44024025002 +n44024025001 +n44024025003 +n44024025004 +n44024025005 +n44024025006 +n44024025007 +n44024025008 +n44024025009 +n44024025010 +n44024025011 +n44024025012 +n44024025013 +n44024025014 +n44024025015 +n44024025016 +n44024025017 +n44024025018 +n44024025019 +n44024025020 +n44024025021 +n44024025023 +n44024025022 +n44024025024 +n44024025025 +n44024025026 +n44024026001 +n44024026002 +n44024026003 +n44024026004 +n44024026005 +n44024026006 +n44024026007 +n44024026008 +n44024026009 +n44024026010 +n44024026011 +n44024026012 +n44024026013 +n44024026014 +n44024026015 +n44024026016 +n44024026017 +n44024027002 +n44024027001 +n44024027003 +n44024027004 +n44024027006 +n44024027007 +n44024027005 +n44024027008 +n44024027009 +n44024027011 +n44024027010 +n44024027012 +n44024027013 +n44024027014 +n44024027015 +n44024027016 +n44024027017 +n44024027018 +n44024027019 +n44024027020 +n44024027021 +n44025001002 +n44025001001 +n44025001003 +n44025001004 +n44025001005 +n44025001006 +n44025001007 +n44025001008 +n44025001009 +n44025001010 +n44025001011 +n44025001012 +n44025001013 +n44025002002 +n44025002001 +n44025002003 +n44025002004 +n44025002005 +n44025002006 +n44025002007 +n44025002008 +n44025002009 +n44025002010 +n44025002011 +n44025002012 +n44025002013 +n44025002014 +n44025002015 +n44025002016 +n44025003001 +n44025003002 +n44025003003 +n44025003004 +n44025003005 +n44025003006 +n44025003007 +n44025003008 +n44025003009 +n44025003010 +n44025003011 +n44025003012 +n44025003013 +n44025003014 +n44025003015 +n44025003016 +n44025004002 +n44025004003 +n44025004001 +n44025004004 +n44025004005 +n44025004006 +n44025004007 +n44025004008 +n44025004009 +n44025004010 +n44025004012 +n44025004011 +n44025004013 +n44025004014 +n44025004015 +n44025004016 +n44025005002 +n44025005005 +n44025005001 +n44025005003 +n44025005004 +n44025005006 +n44025005007 +n44025005015 +n44025005016 +n44025005008 +n44025005009 +n44025005014 +n44025005010 +n44025005011 +n44025005012 +n44025005013 +n44025006002 +n44025006001 +n44025006003 +n44025006004 +n44025006005 +n44025006006 +n44025006007 +n44025006008 +n44025006009 +n44025006010 +n44025006011 +n44025006012 +n44025006013 +n44025006014 +n44025006015 +n44025006016 +n44025006017 +n44025006018 +n44025006019 +n44025006020 +n44025006021 +n44025006022 +n44025006023 +n44025007002 +n44025007001 +n44025007003 +n44025007004 +n44025007005 +n44025007006 +n44025007007 +n44025007008 +n44025007009 +n44025007010 +n44025007011 +n44025007012 +n44025007013 +n44025007014 +n44025007015 +n44025007016 +n44025007019 +n44025007017 +n44025007018 +n44025008001 +n44025008002 +n44025008003 +n44025008004 +n44025008005 +n44025008006 +n44025008007 +n44025008008 +n44025008009 +n44025008010 +n44025008011 +n44025008012 +n44025008013 +n44025008014 +n44025008015 +n44025008016 +n44025008017 +n44025008018 +n44025008019 +n44025009003 +n44025009001 +n44025009002 +n44025009004 +n44025009005 +n44025009006 +n44025009007 +n44025009008 +n44025009009 +n44025009010 +n44025009011 +n44025009012 +n44025009013 +n44025009014 +n44025009015 +n44025009016 +n44025009017 +n44025009018 +n44025009019 +n44025009020 +n44025009021 +n44025009022 +n44025010002 +n44025010001 +n44025010003 +n44025010004 +n44025010006 +n44025010007 +n44025010008 +n44025010009 +n44025010005 +n44025010010 +n44025010011 +n44025010012 +n44025010014 +n44025010013 +n44025010015 +n44025010016 +n44025010017 +n44025010018 +n44025010019 +n44025010020 +n44025010021 +n44025010022 +n44025011003 +n44025011002 +n44025011001 +n44025011004 +n44025011005 +n44025011006 +n44025011007 +n44025011009 +n44025011008 +n44025011010 +n44025011011 +n44025011012 +n44025011013 +n44025011015 +n44025011014 +n44025011016 +n44025011017 +n44025011018 +n44025011019 +n44025011020 +n44025011021 +n44025011022 +n44025011024 +n44025011023 +n44025011025 +n44025011026 +n44025011027 +n44025011028 +n44025012001 +n44025012002 +n44025012003 +n44025012004 +n44025012005 +n44025012006 +n44025012007 +n44025012008 +n44025012009 +n44025012010 +n44025012011 +n44025012012 +n44025012013 +n44025013002 +n44025013001 +n44025013004 +n44025013003 +n44025013005 +n44025013006 +n44025013007 +n44025013008 +n44025013009 +n44025013010 +n44025013011 +n44025013012 +n44025013013 +n44025013014 +n44025013015 +n44025014002 +n44025014001 +n44025014003 +n44025014004 +n44025014005 +n44025014006 +n44025014007 +n44025014008 +n44025014009 +n44025014010 +n44025014011 +n44025014012 +n44025014013 +n44025014014 +n44025014015 +n44025014016 +n44025014017 +n44025014018 +n44025014019 +n44025014020 +n44025014021 +n44025014022 +n44025014023 +n44025015001 +n44025015002 +n44025015003 +n44025015004 +n44025015005 +n44025015006 +n44025015007 +n44025015008 +n44025015009 +n44025015010 +n44025015011 +n44025015012 +n44025015013 +n44025015014 +n44025015015 +n44025015016 +n44025015017 +n44025015018 +n44025016001 +n44025016002 +n44025016003 +n44025016004 +n44025016005 +n44025016006 +n44025016007 +n44025016008 +n44025016009 +n44025016010 +n44025016011 +n44025016012 +n44025016013 +n44025016014 +n44025016015 +n44025016016 +n44025016017 +n44025016018 +n44025016019 +n44025016020 +n44025016022 +n44025016021 +n44025016023 +n44025016024 +n44025016025 +n44025016026 +n44025016027 +n44025017002 +n44025017001 +n44025017003 +n44025017004 +n44025017005 +n44025017006 +n44025017007 +n44025017008 +n44025017009 +n44025017010 +n44025017011 +n44025017012 +n44025017013 +n44025017014 +n44025017015 +n44025017016 +n44025018001 +n44025018002 +n44025018003 +n44025018004 +n44025018005 +n44025018008 +n44025018006 +n44025018007 +n44025018009 +n44025018010 +n44025018011 +n44025018012 +n44025019002 +n44025019001 +n44025019003 +n44025019004 +n44025019005 +n44025019006 +n44025019007 +n44025019008 +n44025019009 +n44025019010 +n44025019011 +n44025019012 +n44025019013 +n44025019014 +n44025019015 +n44025019016 +n44025019020 +n44025019017 +n44025019018 +n44025019019 +n44025020002 +n44025020003 +n44025020001 +n44025020004 +n44025020005 +n44025020006 +n44025020007 +n44025020008 +n44025020009 +n44025020010 +n44025020011 +n44025020012 +n44025020013 +n44025020014 +n44025020015 +n44025020016 +n44025020017 +n44025021002 +n44025021001 +n44025021003 +n44025021004 +n44025021005 +n44025021006 +n44025021007 +n44025021008 +n44025021009 +n44025021010 +n44025021011 +n44025021012 +n44025021013 +n44025021014 +n44025021015 +n44025021016 +n44025021017 +n44025021018 +n44025021019 +n44025021020 +n44025022002 +n44025022001 +n44025022003 +n44025022004 +n44025022005 +n44025022006 +n44025022007 +n44025022008 +n44025022009 +n44025022010 +n44025022011 +n44025022013 +n44025022012 +n44025022014 +n44025022015 +n44025023002 +n44025023001 +n44025023003 +n44025023004 +n44025023005 +n44025023006 +n44025023007 +n44025023008 +n44025023009 +n44025023010 +n44025023011 +n44025023012 +n44025023013 +n44025023014 +n44025023015 +n44025023016 +n44025023017 +n44025023018 +n44025023019 +n44025023020 +n44025023021 +n44025023022 +n44025023023 +n44025023024 +n44025023025 +n44025023026 +n44025023027 +n44025023028 +n44025023029 +n44025023030 +n44025023031 +n44025023032 +n44025023033 +n44025023034 +n44025024001 +n44025024002 +n44025024003 +n44025024004 +n44025024005 +n44025024006 +n44025024007 +n44025024008 +n44025024009 +n44025024010 +n44025024011 +n44025024012 +n44025024013 +n44025024014 +n44025024015 +n44025024016 +n44025024017 +n44025024018 +n44025024019 +n44025024020 +n44025024021 +n44025024022 +n44025024023 +n44025024024 +n44025024025 +n44025024026 +n44025024027 +n44025024028 +n44025024029 +n44025024030 +n44025024031 +n44025024032 +n44025024033 +n44025024034 +n44025025002 +n44025025001 +n44025025003 +n44025025004 +n44025025005 +n44025025007 +n44025025006 +n44025025008 +n44025025010 +n44025025009 +n44025025011 +n44025025012 +n44025025013 +n44025025014 +n44025025015 +n44025025016 +n44025026001 +n44025026002 +n44025026003 +n44025026004 +n44025026005 +n44025026006 +n44025026007 +n44025026008 +n44025026009 +n44025026010 +n44025026011 +n44025026012 +n44025026013 +n44025026014 +n44025026015 +n44025026016 +n44025026017 +n44025026018 +n44025026019 +n44025026020 +n44025026021 +n44025026022 +n44025026023 +n44025026024 +n44025026025 +n44025026026 +n44025026027 +n44025027002 +n44025027001 +n44025027003 +n44025027004 +n44025027005 +n44025027006 +n44025027007 +n44025027008 +n44025027009 +n44025027010 +n44025027011 +n44025027012 +n44025027013 +n44026001002 +n44026001001 +n44026001003 +n44026001004 +n44026001005 +n44026001006 +n44026001007 +n44026001008 +n44026001009 +n44026001010 +n44026001011 +n44026001012 +n44026001013 +n44026001014 +n44026001015 +n44026001016 +n44026001017 +n44026001018 +n44026002007 +n44026002008 +n44026002001 +n44026002002 +n44026002003 +n44026002004 +n44026002005 +n44026002006 +n44026002009 +n44026002010 +n44026002011 +n44026002012 +n44026002013 +n44026002015 +n44026002016 +n44026002014 +n44026003001 +n44026003003 +n44026003004 +n44026003002 +n44026003005 +n44026003006 +n44026003007 +n44026003008 +n44026003010 +n44026003009 +n44026003011 +n44026003012 +n44026003013 +n44026003014 +n44026003015 +n44026003016 +n44026003017 +n44026004002 +n44026004003 +n44026004001 +n44026004004 +n44026004005 +n44026004006 +n44026004007 +n44026004008 +n44026004009 +n44026004010 +n44026004011 +n44026004012 +n44026004013 +n44026004014 +n44026004015 +n44026004017 +n44026004016 +n44026004018 +n44026004019 +n44026004020 +n44026004021 +n44026005001 +n44026005002 +n44026005003 +n44026005004 +n44026005005 +n44026005006 +n44026005007 +n44026005008 +n44026005009 +n44026005010 +n44026005011 +n44026005012 +n44026005013 +n44026005014 +n44026005015 +n44026005016 +n44026006001 +n44026006002 +n44026006003 +n44026006004 +n44026006005 +n44026006006 +n44026006007 +n44026006008 +n44026006009 +n44026006011 +n44026006012 +n44026006013 +n44026006014 +n44026006010 +n44026006015 +n44026006016 +n44026007001 +n44026007002 +n44026007013 +n44026007003 +n44026007004 +n44026007005 +n44026007006 +n44026007007 +n44026007008 +n44026007009 +n44026007010 +n44026007011 +n44026007012 +n44026007014 +n44026007015 +n44026007016 +n44026007017 +n44026007018 +n44026007019 +n44026007020 +n44026008001 +n44026008002 +n44026008003 +n44026008004 +n44026008005 +n44026008006 +n44026008007 +n44026008008 +n44026008009 +n44026008010 +n44026009002 +n44026009003 +n44026009001 +n44026009004 +n44026009005 +n44026009012 +n44026009006 +n44026009007 +n44026009008 +n44026009009 +n44026009010 +n44026009011 +n44026009013 +n44026009014 +n44026009015 +n44026010001 +n44026010002 +n44026010003 +n44026010004 +n44026010005 +n44026010006 +n44026010008 +n44026010007 +n44026010009 +n44026010010 +n44026010011 +n44026010012 +n44026010013 +n44026010014 +n44026010015 +n44026010016 +n44026010017 +n44026010018 +n44026010019 +n44026010020 +n44026010022 +n44026010021 +n44026010023 +n44026010024 +n44026010025 +n44026011001 +n44026011002 +n44026011003 +n44026011004 +n44026011005 +n44026011006 +n44026011007 +n44026011008 +n44026011009 +n44026011010 +n44026011012 +n44026011011 +n44026011013 +n44026011014 +n44026011015 +n44026011016 +n44026011017 +n44026011018 +n44026011019 +n44026011020 +n44026011021 +n44026012001 +n44026012002 +n44026012003 +n44026012004 +n44026012005 +n44026012006 +n44026012007 +n44026012008 +n44026012009 +n44026012010 +n44026012011 +n44026012012 +n44026012013 +n44026013001 +n44026013002 +n44026013003 +n44026013004 +n44026013005 +n44026013006 +n44026013008 +n44026013009 +n44026013010 +n44026013011 +n44026013012 +n44026013013 +n44026013014 +n44026013016 +n44026013015 +n44026013017 +n44026013018 +n44026013019 +n44026013020 +n44026013021 +n44026013007 +n44026014002 +n44026014001 +n44026014004 +n44026014003 +n44026014005 +n44026014006 +n44026014007 +n44026014008 +n44026014009 +n44026014010 +n44026014011 +n44026014012 +n44026014013 +n44026014014 +n44026014015 +n44026014016 +n44026014017 +n44026014018 +n44026014019 +n44026014020 +n44026014021 +n44026014022 +n44026014023 +n44026014024 +n44026014025 +n44026015002 +n44026015001 +n44026015003 +n44026015004 +n44026015005 +n44026015006 +n44026015008 +n44026015007 +n44026015009 +n44026015010 +n44026015011 +n44026015012 +n44026015013 +n44026015014 +n44026015015 +n44026015016 +n44026016001 +n44026016002 +n44026016003 +n44026016004 +n44026016005 +n44026016006 +n44026016007 +n44026016008 +n44026016011 +n44026016009 +n44026016010 +n44026016012 +n44026016013 +n44026016014 +n44026016015 +n44026016016 +n44026016017 +n44026016018 +n44026016020 +n44026016019 +n44026016021 +n44026016022 +n44026016024 +n44026016023 +n44026016025 +n44026016026 +n44026017001 +n44026017002 +n44026017003 +n44026017004 +n44026017005 +n44026017006 +n44026017007 +n44026017008 +n44026017009 +n44026017010 +n44026017011 +n44026017012 +n44026017013 +n44026017014 +n44026018001 +n44026018002 +n44026018003 +n44026018004 +n44026018005 +n44026018006 +n44026018007 +n44026018008 +n44026018009 +n44026018010 +n44026018011 +n44026018012 +n44026018013 +n44026018014 +n44026018015 +n44026018016 +n44026018017 +n44026018018 +n44026018019 +n44026018020 +n44026018021 +n44026018022 +n44026018023 +n44026018024 +n44026018025 +n44026018026 +n44026018027 +n44026018028 +n44026018029 +n44026018030 +n44026018031 +n44026019001 +n44026019002 +n44026019003 +n44026019004 +n44026019005 +n44026019006 +n44026019007 +n44026019008 +n44026019009 +n44026020001 +n44026020006 +n44026020002 +n44026020003 +n44026020004 +n44026020005 +n44026020007 +n44026020008 +n44026020010 +n44026020009 +n44026020011 +n44026020012 +n44026020013 +n44026020014 +n44026020015 +n44026020016 +n44026020017 +n44026020018 +n44026020019 +n44026020020 +n44026020021 +n44026020022 +n44026020023 +n44026020024 +n44026020025 +n44026020026 +n44026020027 +n44026020028 +n44026020029 +n44026021001 +n44026021002 +n44026021004 +n44026021003 +n44026021005 +n44026021006 +n44026021007 +n44026021008 +n44026021009 +n44026021010 +n44026022002 +n44026022003 +n44026022001 +n44026022004 +n44026022005 +n44026022006 +n44026022007 +n44026022008 +n44026022009 +n44026022010 +n44026022011 +n44026022012 +n44026022013 +n44026022015 +n44026022014 +n44026022016 +n44026022017 +n44026022018 +n44026022020 +n44026022019 +n44026022021 +n44026022026 +n44026022027 +n44026022022 +n44026022023 +n44026022024 +n44026022028 +n44026022029 +n44026022025 +n44026023001 +n44026023002 +n44026023003 +n44026023004 +n44026023005 +n44026023006 +n44026023007 +n44026023008 +n44026023009 +n44026023011 +n44026023010 +n44026023012 +n44026023014 +n44026023013 +n44026023015 +n44026023016 +n44026023017 +n44026023018 +n44026024002 +n44026024001 +n44026024003 +n44026024004 +n44026024005 +n44026024006 +n44026024007 +n44026024008 +n44026024009 +n44026024010 +n44026024011 +n44026024012 +n44026024013 +n44026024014 +n44026024016 +n44026024015 +n44026024017 +n44026024018 +n44026024019 +n44026025002 +n44026025001 +n44026025003 +n44026025006 +n44026025007 +n44026025008 +n44026025004 +n44026025005 +n44026025009 +n44026025010 +n44026025011 +n44026025012 +n44026025013 +n44026025014 +n44026026002 +n44026026001 +n44026026003 +n44026026004 +n44026026005 +n44026026006 +n44026026007 +n44026026008 +n44026026009 +n44026026010 +n44026026011 +n44026026013 +n44026026012 +n44026026014 +n44026026015 +n44026026016 +n44026026017 +n44026026018 +n44026026020 +n44026026019 +n44026026021 +n44026026024 +n44026026022 +n44026026023 +n44026026025 +n44026027002 +n44026027003 +n44026027001 +n44026027004 +n44026027005 +n44026027006 +n44026027007 +n44026027008 +n44026028002 +n44026028001 +n44026028003 +n44026028004 +n44026028005 +n44026028006 +n44026028007 +n44026028008 +n44026028009 +n44026028010 +n44026028011 +n44026028012 +n44026029002 +n44026029001 +n44026029003 +n44026029005 +n44026029004 +n44026029006 +n44026029007 +n44026029008 +n44026029009 +n44026029010 +n44026029011 +n44026029012 +n44026029013 +n44026029014 +n44026029015 +n44026029016 +n44026029017 +n44026029018 +n44026029019 +n44026029020 +n44026029021 +n44026029022 +n44026029023 +n44026029024 +n44026029025 +n44026029026 +n44026029027 +n44026029028 +n44026029029 +n44026029030 +n44026029031 +n44026029032 +n44026029033 +n44026030001 +n44026030002 +n44026030003 +n44026030004 +n44026030005 +n44026030006 +n44026030007 +n44026030009 +n44026030008 +n44026030010 +n44026030011 +n44026030012 +n44026030013 +n44026030014 +n44026031001 +n44026031002 +n44026031003 +n44026031004 +n44026031005 +n44026031006 +n44026031007 +n44026031008 +n44026031009 +n44026031010 +n44026031011 +n44026031012 +n44026031013 +n44026031014 +n44026031015 +n44026031016 +n44026032002 +n44026032001 +n44026032003 +n44026032004 +n44026032005 +n44026032006 +n44026032007 +n44026032008 +n44026032009 +n44026032010 +n44026032011 +n44026032012 +n44026032013 +n44026032014 +n44027001002 +n44027001001 +n44027001003 +n44027001004 +n44027001005 +n44027001006 +n44027001007 +n44027001008 +n44027001009 +n44027001010 +n44027001012 +n44027001011 +n44027001013 +n44027001014 +n44027001015 +n44027001016 +n44027001017 +n44027001018 +n44027001019 +n44027001020 +n44027001021 +n44027001022 +n44027002002 +n44027002001 +n44027002003 +n44027002004 +n44027002005 +n44027002006 +n44027002007 +n44027002008 +n44027002009 +n44027002010 +n44027002011 +n44027002012 +n44027002013 +n44027002014 +n44027002015 +n44027002016 +n44027002017 +n44027002018 +n44027002019 +n44027003002 +n44027003001 +n44027003003 +n44027003004 +n44027003005 +n44027003006 +n44027003008 +n44027003009 +n44027003010 +n44027003007 +n44027003011 +n44027003012 +n44027003013 +n44027003014 +n44027003015 +n44027003016 +n44027003017 +n44027003018 +n44027003019 +n44027003020 +n44027004001 +n44027004002 +n44027004003 +n44027004004 +n44027004005 +n44027004006 +n44027004007 +n44027004008 +n44027004009 +n44027004010 +n44027004011 +n44027005002 +n44027005001 +n44027005003 +n44027005004 +n44027005005 +n44027005006 +n44027005007 +n44027005008 +n44027005009 +n44027005010 +n44027005011 +n44027005012 +n44027005013 +n44027005014 +n44027005015 +n44027006003 +n44027006004 +n44027006001 +n44027006002 +n44027006005 +n44027006006 +n44027006007 +n44027006008 +n44027006009 +n44027006010 +n44027006011 +n44027006012 +n44027006013 +n44027006014 +n44027007003 +n44027007001 +n44027007002 +n44027007004 +n44027007005 +n44027007006 +n44027007007 +n44027007008 +n44027007009 +n44027007010 +n44027007011 +n44027007012 +n44027007013 +n44027007014 +n44027007015 +n44027007016 +n44027007017 +n44027007018 +n44027007019 +n44027007020 +n44027007021 +n44027008002 +n44027008001 +n44027008003 +n44027008004 +n44027008005 +n44027008006 +n44027008007 +n44027008008 +n44027008009 +n44027008010 +n44027008011 +n44027008012 +n44027008013 +n44027008015 +n44027008016 +n44027008014 +n44027009002 +n44027009001 +n44027009003 +n44027009004 +n44027009005 +n44027009006 +n44027009007 +n44027009008 +n44027009009 +n44027009010 +n44027009011 +n44027009012 +n44027009013 +n44027009014 +n44027009015 +n44027009016 +n44027009017 +n44027009018 +n44027009019 +n44027009020 +n44027010001 +n44027010002 +n44027010003 +n44027010004 +n44027010005 +n44027010006 +n44027010007 +n44027010008 +n44027010009 +n44027010010 +n44027010011 +n44027010012 +n44027010013 +n44027010014 +n44027010015 +n44027010016 +n44027010017 +n44027010018 +n44027010019 +n44027010020 +n44027010021 +n44027010022 +n44027010024 +n44027010023 +n44027010025 +n44027010026 +n44027011002 +n44027011001 +n44027011003 +n44027011004 +n44027011005 +n44027011006 +n44027011007 +n44027011008 +n44027011009 +n44027011010 +n44027011011 +n44027011012 +n44027011013 +n44027011014 +n44027011015 +n44027012002 +n44027012001 +n44027012003 +n44027012004 +n44027012005 +n44027012006 +n44027012007 +n44027012008 +n44027012009 +n44027012010 +n44027012011 +n44027012012 +n44027012013 +n44027012014 +n44027012015 +n44027012016 +n44027012017 +n44027012018 +n44027012019 +n44027012021 +n44027012022 +n44027012023 +n44027012024 +n44027012025 +n44027012026 +n44027012027 +n44027012028 +n44027012029 +n44027012020 +n44027013002 +n44027013001 +n44027013003 +n44027013004 +n44027013005 +n44027013006 +n44027013007 +n44027013008 +n44027013009 +n44027013010 +n44027013011 +n44027013012 +n44027014004 +n44027014001 +n44027014002 +n44027014003 +n44027014005 +n44027014006 +n44027014007 +n44027014008 +n44027014009 +n44027014010 +n44027014011 +n44027014012 +n44027015002 +n44027015001 +n44027015003 +n44027015004 +n44027015005 +n44027015006 +n44027015007 +n44027015008 +n44027015009 +n44027015010 +n44027015011 +n44027015012 +n44027016002 +n44027016004 +n44027016001 +n44027016003 +n44027016005 +n44027016006 +n44027016007 +n44027016008 +n44027016009 +n44027016010 +n44027016011 +n44027016012 +n44027017001 +n44027017002 +n44027017003 +n44027017004 +n44027017005 +n44027017006 +n44027017007 +n44027017009 +n44027017008 +n44027017010 +n44027017011 +n44027017012 +n44027017013 +n44027017014 +n44027017015 +n44027017016 +n44027017017 +n44027017018 +n44027017019 +n44027018002 +n44027018001 +n44027018003 +n44027018004 +n44027018005 +n44027018006 +n44027018007 +n44027018008 +n44027019001 +n44027019002 +n44027019003 +n44027019004 +n44027019005 +n44027019006 +n44027019007 +n44027019008 +n44027019009 +n44027020002 +n44027020001 +n44027020003 +n44027020004 +n44027020005 +n44027020006 +n44027020007 +n44027020008 +n44027020009 +n44027020011 +n44027020010 +n44027020012 +n44027020013 +n44027020014 +n44027020015 +n44027020016 +n44027020017 +n44027020018 +n44027020019 +n44027020020 +n44027020021 +n44027021002 +n44027021001 +n44027021003 +n44027021004 +n44027021005 +n44027021006 +n44027021007 +n44027021008 +n44027021009 +n44027021010 +n44027021011 +n44027021012 +n44027021015 +n44027021016 +n44027021014 +n44027021013 +n44027021017 +n44027021018 +n44027021019 +n44027021020 +n44027021021 +n44027021022 +n44027021023 +n44027021025 +n44027021024 +n44027021026 +n44027021027 +n44027021028 +n44027021029 +n44027021030 +n44027021031 +n44027022001 +n44027022002 +n44027022003 +n44027022004 +n44027022005 +n44027022006 +n44027022008 +n44027022007 +n44027022009 +n44027022010 +n44027022011 +n44027022012 +n44027022013 +n44027022014 +n44027022015 +n44027022016 +n44027023002 +n44027023001 +n44027023003 +n44027023004 +n44027023005 +n44027023006 +n44027023007 +n44027023008 +n44027023009 +n44027023010 +n44027023011 +n44027023012 +n44027023013 +n44027023014 +n44027024001 +n44027024002 +n44027024003 +n44027024004 +n44027024005 +n44027024006 +n44027024008 +n44027024007 +n44027024009 +n44027024010 +n44027024011 +n44027024012 +n44027024013 +n44027024014 +n44027024015 +n44027024016 +n44027024017 +n44027024018 +n44027024019 +n44027025001 +n44027025002 +n44027025003 +n44027025005 +n44027025004 +n44027025006 +n44027025007 +n44027025008 +n44027025009 +n44027025010 +n44027025011 +n44027025012 +n44027025013 +n44027025014 +n44027025015 +n44027026003 +n44027026005 +n44027026001 +n44027026002 +n44027026004 +n44027026006 +n44027026007 +n44027027002 +n44027027001 +n44027027003 +n44027027004 +n44027027005 +n44027027006 +n44027027007 +n44027027008 +n44027027009 +n44027027010 +n44027027011 +n44027027012 +n44027027013 +n44027027014 +n44027027015 +n44027027016 +n44027027017 +n44027027018 +n44027027019 +n44027027021 +n44027027020 +n44027028001 +n44027028002 +n44027028003 +n44027028004 +n44027028005 +n44027028007 +n44027028006 +n44027028008 +n44027028009 +n44027028010 +n44027028011 +n44027028012 +n44027028013 +n44027028014 +n44027029002 +n44027029001 +n44027029003 +n44027029004 +n44027029005 +n44027029006 +n44027029007 +n44027029008 +n44027029009 +n44027029010 +n44027029011 +n44027029012 +n44027029013 +n44027029014 +n44027029015 +n44027029016 +n44027030002 +n44027030001 +n44027030003 +n44027030004 +n44027030005 +n44027030006 +n44027030007 +n44027030008 +n44027030009 +n44027030010 +n44027030011 +n44027030012 +n44027030013 +n44027030014 +n44027030015 +n44027030016 +n44027030017 +n44027030018 +n44027030019 +n44027030020 +n44027030022 +n44027030021 +n44027031001 +n44027031002 +n44027031003 +n44027031004 +n44027031005 +n44027031006 +n44027031007 +n44027031008 +n44027031009 +n44027031010 +n44027031011 +n44027031012 +n44027031013 +n44027031014 +n44027031015 +n44027031016 +n44027031017 +n44027031018 +n44027031019 +n44027032001 +n44027032002 +n44027032003 +n44027032004 +n44027032005 +n44027032006 +n44027032007 +n44027032008 +n44027032009 +n44027032010 +n44027032011 +n44027032012 +n44027033002 +n44027033001 +n44027033003 +n44027033004 +n44027033005 +n44027033006 +n44027033007 +n44027033008 +n44027033009 +n44027033010 +n44027033011 +n44027033012 +n44027033013 +n44027033014 +n44027033016 +n44027033015 +n44027033017 +n44027033018 +n44027033019 +n44027033020 +n44027033021 +n44027034001 +n44027034002 +n44027034003 +n44027034004 +n44027034005 +n44027034007 +n44027034006 +n44027034008 +n44027034009 +n44027034010 +n44027034011 +n44027034012 +n44027034014 +n44027034013 +n44027034015 +n44027034016 +n44027034017 +n44027034018 +n44027034019 +n44027034020 +n44027035002 +n44027035001 +n44027035003 +n44027035004 +n44027035005 +n44027035006 +n44027035007 +n44027035008 +n44027035009 +n44027035010 +n44027035011 +n44027035012 +n44027035013 +n44027035014 +n44027035015 +n44027036002 +n44027036001 +n44027036003 +n44027036004 +n44027036005 +n44027036006 +n44027036007 +n44027036008 +n44027037002 +n44027037001 +n44027037003 +n44027037004 +n44027037005 +n44027037006 +n44027037007 +n44027037008 +n44027037009 +n44027037010 +n44027037011 +n44027038002 +n44027038001 +n44027038003 +n44027038004 +n44027038005 +n44027038006 +n44027038007 +n44027038008 +n44027038009 +n44027038010 +n44027038011 +n44027038012 +n44027039002 +n44027039001 +n44027039003 +n44027039004 +n44027039005 +n44027039006 +n44027039007 +n44027039008 +n44027039010 +n44027039012 +n44027039009 +n44027039011 +n44027039013 +n44027039014 +n44027039015 +n44027039016 +n44027039020 +n44027039021 +n44027039022 +n44027039017 +n44027039018 +n44027039019 +n44027040001 +n44027040002 +n44027040003 +n44027040004 +n44027040005 +n44027040006 +n44027040007 +n44027040008 +n44027040009 +n44027040010 +n44027040011 +n44027040012 +n44027040013 +n44027040014 +n44027040015 +n44027040016 +n44027040017 +n44027040018 +n44027040019 +n44027040020 +n44027040021 +n44027040022 +n44027040023 +n44027040024 +n44027041002 +n44027041001 +n44027041003 +n44027041004 +n44027041005 +n44027041006 +n44027041007 +n44027041008 +n44027041009 +n44027041011 +n44027041010 +n44027041012 +n44027041013 +n44027041014 +n44027041015 +n44027041017 +n44027041016 +n44027041018 +n44027041019 +n44027041020 +n44027041021 +n44027041022 +n44027042002 +n44027042001 +n44027042003 +n44027042004 +n44027042005 +n44027042006 +n44027042007 +n44027042008 +n44027042009 +n44027042010 +n44027042011 +n44027042012 +n44027042013 +n44027043002 +n44027043001 +n44027043003 +n44027043004 +n44027043005 +n44027043006 +n44027043007 +n44027043008 +n44027043009 +n44027043010 +n44027043011 +n44027043013 +n44027043012 +n44027043014 +n44027043015 +n44027043016 +n44027043017 +n44027043018 +n44027043019 +n44027043020 +n44027043021 +n44027043022 +n44027044001 +n44027044002 +n44027044003 +n44027044005 +n44027044004 +n44027044006 +n44027044007 +n44027044009 +n44027044008 +n44027044010 +n44027044011 +n44027044012 +n44027044013 +n44027044014 +n44027044015 +n44027044016 +n44027044017 +n44027044018 +n44027044019 +n44027044020 +n44027044021 +n44027044022 +n44027044023 +n44028001001 +n44028001002 +n44028001003 +n44028001004 +n44028001005 +n44028001006 +n44028001007 +n44028001008 +n44028001009 +n44028002002 +n44028002001 +n44028002003 +n44028002004 +n44028002006 +n44028002005 +n44028002007 +n44028002008 +n44028002009 +n44028002011 +n44028002010 +n44028002012 +n44028002013 +n44028002014 +n44028002015 +n44028002016 +n44028002017 +n44028002018 +n44028002019 +n44028002020 +n44028002021 +n44028002022 +n44028002023 +n44028002024 +n44028003002 +n44028003001 +n44028003003 +n44028003004 +n44028003005 +n44028003006 +n44028003007 +n44028003008 +n44028003009 +n44028003010 +n44028003011 +n44028003012 +n44028003013 +n44028003014 +n44028003015 +n44028003016 +n44028003017 +n44028003018 +n44028003019 +n44028003020 +n44028003021 +n44028004002 +n44028004001 +n44028004003 +n44028004004 +n44028004005 +n44028004006 +n44028004007 +n44028004008 +n44028004009 +n44028004010 +n44028004011 +n44028004012 +n44028004013 +n44028004014 +n44028004015 +n44028004016 +n44028004017 +n44028004018 +n44028004019 +n44028004020 +n44028004021 +n44028004022 +n44028004023 +n44028004024 +n44028004025 +n44028004026 +n44028004029 +n44028004027 +n44028004028 +n44028004030 +n44028004031 +n44028005002 +n44028005003 +n44028005001 +n44028005004 +n44028005005 +n44028005006 +n44028005007 +n44028005008 +n44028005009 +n44028005010 +n44028005011 +n44028005012 +n44028006002 +n44028006001 +n44028006003 +n44028006004 +n44028006005 +n44028006006 +n44028006007 +n44028006008 +n44028006009 +n44028006010 +n44028006013 +n44028006011 +n44028006012 +n44028006014 +n44028006015 +n44028006016 +n44028006017 +n44028006018 +n44028006019 +n44028006020 +n44028006021 +n44028006022 +n44028006023 +n44028006024 +n44028006025 +n44028006026 +n44028006027 +n44028007002 +n44028007001 +n44028007003 +n44028007004 +n44028007005 +n44028007006 +n44028007007 +n44028007008 +n44028007009 +n44028007010 +n44028007011 +n44028007012 +n44028007013 +n44028007014 +n44028007015 +n44028007016 +n44028007017 +n44028007018 +n44028007019 +n44028007020 +n44028007021 +n44028007022 +n44028008002 +n44028008001 +n44028008003 +n44028008004 +n44028008005 +n44028008006 +n44028008007 +n44028008008 +n44028008009 +n44028008010 +n44028008011 +n44028008012 +n44028008013 +n44028008016 +n44028008017 +n44028008018 +n44028008014 +n44028008015 +n44028008019 +n44028008020 +n44028008021 +n44028008022 +n44028008023 +n44028008024 +n44028009002 +n44028009001 +n44028009003 +n44028009004 +n44028009005 +n44028009006 +n44028009007 +n44028009008 +n44028009009 +n44028009010 +n44028009011 +n44028009012 +n44028009013 +n44028009014 +n44028009015 +n44028010001 +n44028010002 +n44028010003 +n44028010004 +n44028010005 +n44028010006 +n44028010007 +n44028010008 +n44028010009 +n44028010010 +n44028010011 +n44028010012 +n44028010013 +n44028011002 +n44028011001 +n44028011003 +n44028011004 +n44028011005 +n44028011006 +n44028011007 +n44028011008 +n44028011009 +n44028011010 +n44028011011 +n44028011012 +n44028011013 +n44028011014 +n44028012001 +n44028012002 +n44028012003 +n44028012004 +n44028012005 +n44028012006 +n44028012007 +n44028013001 +n44028013002 +n44028013003 +n44028013004 +n44028013005 +n44028013006 +n44028013007 +n44028013008 +n44028013009 +n44028013010 +n44028013011 +n44028013012 +n44028013013 +n44028013014 +n44028013015 +n44028014001 +n44028014002 +n44028014003 +n44028014004 +n44028014005 +n44028014006 +n44028014007 +n44028014008 +n44028014009 +n44028014010 +n44028014011 +n44028014012 +n44028014013 +n44028014014 +n44028014015 +n44028015001 +n44028015002 +n44028015003 +n44028015004 +n44028015005 +n44028015006 +n44028015007 +n44028015008 +n44028015009 +n44028015010 +n44028015011 +n44028015012 +n44028015013 +n44028015014 +n44028015015 +n44028015016 +n44028015017 +n44028015018 +n44028015019 +n44028015020 +n44028015021 +n44028015022 +n44028015023 +n44028015024 +n44028015025 +n44028015026 +n44028016002 +n44028016001 +n44028016003 +n44028016004 +n44028016005 +n44028016006 +n44028016007 +n44028016008 +n44028016009 +n44028016010 +n44028016011 +n44028016012 +n44028016013 +n44028016014 +n44028016015 +n44028016016 +n44028017002 +n44028017001 +n44028017003 +n44028017004 +n44028017005 +n44028017006 +n44028017007 +n44028017008 +n44028017009 +n44028017010 +n44028017011 +n44028017012 +n44028017014 +n44028017013 +n44028017015 +n44028017016 +n44028017017 +n44028017018 +n44028017020 +n44028017021 +n44028017019 +n44028017022 +n44028017023 +n44028017024 +n44028017025 +n44028017026 +n44028017027 +n44028017028 +n44028017029 +n44028017030 +n44028017031 +n44028017032 +n44028017033 +n44028017034 +n44028017035 +n44028017036 +n44028017037 +n44028017038 +n44028017039 +n44028017040 +n44028018001 +n44028018002 +n44028018003 +n44028018004 +n44028018005 +n44028018006 +n44028018007 +n44028018008 +n44028018009 +n44028018010 +n44028018011 +n44028018012 +n44028018013 +n44028019002 +n44028019001 +n44028019003 +n44028019004 +n44028019005 +n44028019006 +n44028019007 +n44028019008 +n44028019009 +n44028019010 +n44028019011 +n44028019012 +n44028019014 +n44028019015 +n44028019013 +n44028020003 +n44028020001 +n44028020002 +n44028020004 +n44028020005 +n44028020006 +n44028020007 +n44028020008 +n44028020009 +n44028020010 +n44028020012 +n44028020011 +n44028020013 +n44028020014 +n44028020015 +n44028020016 +n44028020017 +n44028020018 +n44028020019 +n44028020020 +n44028021002 +n44028021001 +n44028021003 +n44028021004 +n44028021005 +n44028021007 +n44028021006 +n44028021008 +n44028021009 +n44028021010 +n44028021011 +n44028021012 +n44028021013 +n44028021014 +n44028021015 +n44028021016 +n44028021017 +n44028021018 +n44028021019 +n44028021020 +n44028021021 +n44028021022 +n44028021023 +n44028021024 +n44028021025 +n44028021026 +n44028022002 +n44028022001 +n44028022003 +n44028022004 +n44028022005 +n44028022006 +n44028022007 +n44028022010 +n44028022009 +n44028022008 +n44028022011 +n44028022012 +n44028022013 +n44028022014 +n44028022015 +n44028022016 +n44028022017 +n44028022018 +n44028022019 +n44028023002 +n44028023001 +n44028023003 +n44028023004 +n44028023005 +n44028023006 +n44028023007 +n44028023008 +n44028023009 +n44028023010 +n44028023011 +n44028023012 +n44028023013 +n44028023014 +n44028023015 +n44028023016 +n44028023017 +n44028023018 +n44028023020 +n44028023019 +n44028023021 +n44028023022 +n44028023023 +n44028023024 +n44028023025 +n44028023026 +n44028023027 +n44028023028 +n44028023029 +n44028023030 +n44028023031 +n44028023032 +n44028023033 +n44028023034 +n44028023035 +n44028023036 +n44028024001 +n44028024003 +n44028024002 +n44028024004 +n44028024005 +n44028024006 +n44028024008 +n44028024007 +n44028024009 +n44028025002 +n44028025001 +n44028025003 +n44028025004 +n44028025005 +n44028025006 +n44028025007 +n44028025008 +n44028025009 +n44028025010 +n44028025011 +n44028025012 +n44028025013 +n44028025014 +n44028025015 +n44028025016 +n44028025017 +n44028025018 +n44028025019 +n44028025020 +n44028025021 +n44028025022 +n44028025023 +n44028025024 +n44028025025 +n44028025026 +n44028026001 +n44028026002 +n44028026003 +n44028026004 +n44028026005 +n44028026006 +n44028026007 +n44028026008 +n44028026009 +n44028026010 +n44028026011 +n44028026012 +n44028026013 +n44028026014 +n44028026015 +n44028026016 +n44028026017 +n44028026018 +n44028026019 +n44028026020 +n44028026021 +n44028027002 +n44028027001 +n44028027003 +n44028027004 +n44028027005 +n44028027006 +n44028027007 +n44028027008 +n44028027009 +n44028027010 +n44028027011 +n44028027012 +n44028027013 +n44028027014 +n44028027015 +n44028027016 +n44028027017 +n44028027018 +n44028027019 +n44028027020 +n44028027021 +n44028027022 +n44028027023 +n44028027024 +n44028027025 +n44028027026 +n44028027027 +n44028027028 +n44028027029 +n44028027030 +n44028027031 +n44028027032 +n44028027033 +n44028027034 +n44028027035 +n44028028002 +n44028028001 +n44028028003 +n44028028004 +n44028028005 +n44028028006 +n44028028007 +n44028028008 +n44028028009 +n44028028010 +n44028028011 +n44028028012 +n44028028013 +n44028028014 +n44028028015 +n44028028016 +n44028030002 +n44028030001 +n44028030003 +n44028030004 +n44028030005 +n44028030006 +n44028030007 +n44028030008 +n44028030009 +n44028030010 +n44028030011 +n44028030012 +n44028030013 +n44028030014 +n44028031001 +n44028031002 +n44028031003 +n44028031004 +n44028031005 +n44028031006 +n44028031007 +n44028031008 +n44028031009 +n44028031010 +n44028031011 +n44028031012 +n44028031013 +n44028031014 +n44028031015 +n44028031016 +n44028031017 +n45001001001 +n45001001002 +n45001001003 +n45001001004 +n45001001005 +n45001001006 +n45001001007 +n45001001008 +n45001001009 +n45001001010 +n45001002001 +n45001002002 +n45001002003 +n45001002004 +n45001002005 +n45001002006 +n45001002007 +n45001002008 +n45001002009 +n45001003001 +n45001003002 +n45001003003 +n45001003004 +n45001003005 +n45001003006 +n45001003007 +n45001003008 +n45001003009 +n45001003010 +n45001003011 +n45001004001 +n45001004002 +n45001004003 +n45001004004 +n45001004005 +n45001004006 +n45001004007 +n45001004008 +n45001004009 +n45001004010 +n45001004011 +n45001004012 +n45001004013 +n45001004014 +n45001004015 +n45001004016 +n45001004017 +n45001005001 +n45001005002 +n45001005003 +n45001005004 +n45001005005 +n45001005006 +n45001005007 +n45001005008 +n45001005009 +n45001005010 +n45001005011 +n45001005012 +n45001005013 +n45001005014 +n45001005015 +n45001005016 +n45001005017 +n45001006001 +n45001006002 +n45001006003 +n45001006004 +n45001006005 +n45001006006 +n45001006007 +n45001006008 +n45001007001 +n45001007002 +n45001007003 +n45001007004 +n45001007005 +n45001007006 +n45001007007 +n45001007008 +n45001007009 +n45001007011 +n45001007010 +n45001007012 +n45001007013 +n45001007014 +n45001007015 +n45001007016 +n45001007017 +n45001007018 +n45001007019 +n45001007020 +n45001007021 +n45001008002 +n45001008001 +n45001008003 +n45001008004 +n45001008005 +n45001008006 +n45001008007 +n45001008008 +n45001008009 +n45001008010 +n45001008011 +n45001008012 +n45001008013 +n45001008014 +n45001008015 +n45001008016 +n45001008017 +n45001008018 +n45001008019 +n45001008020 +n45001008021 +n45001009002 +n45001009001 +n45001009003 +n45001009004 +n45001009005 +n45001009006 +n45001009007 +n45001009008 +n45001009009 +n45001009010 +n45001009011 +n45001009012 +n45001009013 +n45001009014 +n45001009015 +n45001009016 +n45001009017 +n45001009018 +n45001009019 +n45001009020 +n45001009021 +n45001009022 +n45001009023 +n45001010001 +n45001010002 +n45001010003 +n45001010004 +n45001010005 +n45001010006 +n45001010007 +n45001010008 +n45001010009 +n45001010010 +n45001010011 +n45001010012 +n45001010013 +n45001010014 +n45001010015 +n45001010016 +n45001010017 +n45001010018 +n45001010019 +n45001011002 +n45001011001 +n45001011003 +n45001011004 +n45001011005 +n45001011007 +n45001011006 +n45001011008 +n45001011010 +n45001011009 +n45001011011 +n45001011012 +n45001011013 +n45001011014 +n45001012002 +n45001012001 +n45001012003 +n45001012004 +n45001012005 +n45001012006 +n45001012007 +n45001012008 +n45001012009 +n45001012010 +n45001012011 +n45001012013 +n45001012012 +n45001012014 +n45001012015 +n45001013003 +n45001013006 +n45001013001 +n45001013002 +n45001013004 +n45001013005 +n45001013007 +n45001013008 +n45001013009 +n45001013010 +n45001013011 +n45001013012 +n45001013013 +n45001013014 +n45001013015 +n45001013016 +n45001013017 +n45001013018 +n45001013019 +n45001013020 +n45001013021 +n45001013022 +n45001013023 +n45001013024 +n45001013025 +n45001013026 +n45001013027 +n45001013028 +n45001013029 +n45001013030 +n45001014002 +n45001014001 +n45001014003 +n45001014004 +n45001014006 +n45001014005 +n45001014007 +n45001014008 +n45001014009 +n45001014010 +n45001015001 +n45001015002 +n45001015003 +n45001015004 +n45001015005 +n45001015006 +n45001015007 +n45001015008 +n45001015009 +n45001015010 +n45001015011 +n45001016002 +n45001016001 +n45001016003 +n45001016004 +n45001016005 +n45001016007 +n45001016006 +n45001016008 +n45001016009 +n45001016010 +n45001016011 +n45001016012 +n45001016013 +n45001016014 +n45001016016 +n45001016015 +n45001016017 +n45001016018 +n45001016019 +n45001017002 +n45001017001 +n45001017003 +n45001017004 +n45001017005 +n45001017006 +n45001017007 +n45001017008 +n45001017009 +n45001017010 +n45001017011 +n45001017012 +n45001017014 +n45001017013 +n45001017015 +n45001017016 +n45001017017 +n45001017018 +n45001018002 +n45001018001 +n45001018003 +n45001018004 +n45001018005 +n45001018006 +n45001018007 +n45001018008 +n45001018009 +n45001018010 +n45001018011 +n45001018012 +n45001018013 +n45001018014 +n45001018015 +n45001018016 +n45001018017 +n45001018018 +n45001019001 +n45001019002 +n45001019003 +n45001019004 +n45001019005 +n45001019006 +n45001019007 +n45001019008 +n45001019009 +n45001019012 +n45001019010 +n45001019011 +n45001019013 +n45001019014 +n45001020002 +n45001020001 +n45001020003 +n45001020004 +n45001020012 +n45001020013 +n45001020014 +n45001020015 +n45001020016 +n45001020017 +n45001020018 +n45001020005 +n45001020006 +n45001020007 +n45001020008 +n45001020009 +n45001020010 +n45001020011 +n45001020019 +n45001020020 +n45001020021 +n45001020022 +n45001020023 +n45001021001 +n45001021002 +n45001021003 +n45001021004 +n45001021005 +n45001021006 +n45001021007 +n45001021008 +n45001021009 +n45001021010 +n45001021011 +n45001021012 +n45001021013 +n45001021014 +n45001021015 +n45001021016 +n45001021017 +n45001021018 +n45001021019 +n45001021020 +n45001021021 +n45001021022 +n45001022001 +n45001022002 +n45001022003 +n45001022004 +n45001023001 +n45001023002 +n45001023003 +n45001023004 +n45001023005 +n45001023006 +n45001023007 +n45001023008 +n45001023009 +n45001023010 +n45001023011 +n45001023012 +n45001023013 +n45001023014 +n45001023015 +n45001023016 +n45001023017 +n45001023018 +n45001024001 +n45001024002 +n45001024003 +n45001024004 +n45001024005 +n45001024006 +n45001024007 +n45001024008 +n45001024009 +n45001024010 +n45001024011 +n45001024012 +n45001024013 +n45001024014 +n45001024015 +n45001024016 +n45001024017 +n45001024018 +n45001024019 +n45001024020 +n45001025001 +n45001025002 +n45001025003 +n45001025004 +n45001025005 +n45001025006 +n45001025007 +n45001025008 +n45001025009 +n45001025010 +n45001025011 +n45001025012 +n45001025013 +n45001025014 +n45001025015 +n45001025016 +n45001025017 +n45001025018 +n45001025019 +n45001025020 +n45001025021 +n45001025022 +n45001025023 +n45001025024 +n45001025025 +n45001026001 +n45001026002 +n45001026003 +n45001026004 +n45001026005 +n45001026006 +n45001026007 +n45001026008 +n45001026009 +n45001026012 +n45001026011 +n45001026010 +n45001026013 +n45001026014 +n45001026015 +n45001026016 +n45001026017 +n45001026018 +n45001026019 +n45001026020 +n45001026021 +n45001026022 +n45001027002 +n45001027001 +n45001027003 +n45001027004 +n45001027005 +n45001027006 +n45001027007 +n45001027008 +n45001027009 +n45001027010 +n45001027011 +n45001027012 +n45001027013 +n45001027014 +n45001027015 +n45001027016 +n45001027017 +n45001027018 +n45001027019 +n45001027020 +n45001027021 +n45001027022 +n45001027023 +n45001027024 +n45001027025 +n45001027026 +n45001027027 +n45001027028 +n45001027029 +n45001027030 +n45001027031 +n45001027032 +n45001027033 +n45001027034 +n45001027035 +n45001028001 +n45001028002 +n45001028003 +n45001028004 +n45001028005 +n45001028006 +n45001028007 +n45001028008 +n45001028009 +n45001028010 +n45001028011 +n45001028012 +n45001028013 +n45001028014 +n45001028015 +n45001028016 +n45001028017 +n45001028018 +n45001028019 +n45001028020 +n45001029001 +n45001029002 +n45001029003 +n45001029004 +n45001029005 +n45001029006 +n45001029007 +n45001029008 +n45001029009 +n45001029010 +n45001029011 +n45001029012 +n45001029013 +n45001030001 +n45001030002 +n45001030003 +n45001030004 +n45001030005 +n45001030006 +n45001030007 +n45001030008 +n45001030009 +n45001031001 +n45001031002 +n45001031003 +n45001031004 +n45001032001 +n45001032002 +n45001032003 +n45001032004 +n45001032005 +n45001032006 +n45001032007 +n45001032008 +n45001032009 +n45001032010 +n45001032011 +n45001032012 +n45001032013 +n45001032014 +n45001032015 +n45001032016 +n45001032017 +n45001032018 +n45001032019 +n45001032020 +n45001032021 +n45001032022 +n45001032023 +n45002001001 +n45002001002 +n45002001003 +n45002001004 +n45002001005 +n45002001006 +n45002001007 +n45002001008 +n45002001011 +n45002001009 +n45002001010 +n45002001012 +n45002001013 +n45002001014 +n45002001015 +n45002001016 +n45002001018 +n45002001017 +n45002001019 +n45002001020 +n45002001021 +n45002001022 +n45002002002 +n45002002001 +n45002002003 +n45002002004 +n45002002005 +n45002002006 +n45002002007 +n45002002008 +n45002002009 +n45002002010 +n45002002011 +n45002002012 +n45002002013 +n45002002014 +n45002002015 +n45002003002 +n45002003001 +n45002003003 +n45002003004 +n45002003005 +n45002003006 +n45002003007 +n45002003008 +n45002003009 +n45002003010 +n45002003011 +n45002003012 +n45002003013 +n45002003014 +n45002003015 +n45002003016 +n45002003017 +n45002003018 +n45002003019 +n45002003020 +n45002003021 +n45002004001 +n45002004002 +n45002004003 +n45002004004 +n45002004005 +n45002004006 +n45002004007 +n45002004008 +n45002004009 +n45002004010 +n45002004011 +n45002004012 +n45002004013 +n45002004014 +n45002004015 +n45002004016 +n45002004017 +n45002004018 +n45002004019 +n45002004020 +n45002004021 +n45002004022 +n45002004023 +n45002005002 +n45002005001 +n45002005003 +n45002005004 +n45002005005 +n45002005006 +n45002005007 +n45002005008 +n45002005009 +n45002005010 +n45002005011 +n45002005012 +n45002005013 +n45002005014 +n45002005015 +n45002005016 +n45002005017 +n45002005018 +n45002005019 +n45002006001 +n45002006002 +n45002006003 +n45002006004 +n45002006005 +n45002006006 +n45002006007 +n45002007002 +n45002007001 +n45002007003 +n45002007004 +n45002007005 +n45002007006 +n45002007007 +n45002007008 +n45002007009 +n45002007010 +n45002007011 +n45002007012 +n45002007013 +n45002007014 +n45002008002 +n45002008001 +n45002008003 +n45002008004 +n45002008005 +n45002008006 +n45002008007 +n45002008008 +n45002008010 +n45002008009 +n45002008011 +n45002008012 +n45002008013 +n45002008014 +n45002008015 +n45002009001 +n45002009002 +n45002009003 +n45002009004 +n45002009005 +n45002009006 +n45002009007 +n45002009008 +n45002009009 +n45002009010 +n45002009011 +n45002009013 +n45002009012 +n45002009014 +n45002009015 +n45002009016 +n45002010002 +n45002010001 +n45002010003 +n45002010004 +n45002010005 +n45002010006 +n45002010007 +n45002010008 +n45002010009 +n45002010010 +n45002010011 +n45002010013 +n45002010012 +n45002010014 +n45002010015 +n45002010016 +n45002011002 +n45002011001 +n45002011003 +n45002011004 +n45002011005 +n45002011006 +n45002011007 +n45002012002 +n45002012001 +n45002012003 +n45002012004 +n45002012005 +n45002012006 +n45002012007 +n45002012008 +n45002012009 +n45002012010 +n45002012011 +n45002012012 +n45002012013 +n45002012014 +n45002012015 +n45002013002 +n45002013001 +n45002013003 +n45002013004 +n45002013005 +n45002013006 +n45002013007 +n45002013008 +n45002013009 +n45002013010 +n45002013011 +n45002013012 +n45002013013 +n45002013014 +n45002014002 +n45002014001 +n45002014003 +n45002014004 +n45002014005 +n45002014006 +n45002014007 +n45002014008 +n45002014009 +n45002014010 +n45002014011 +n45002014012 +n45002014013 +n45002014014 +n45002014015 +n45002014016 +n45002014017 +n45002014018 +n45002014019 +n45002015001 +n45002015002 +n45002015003 +n45002015004 +n45002015005 +n45002015006 +n45002015007 +n45002015008 +n45002015009 +n45002015010 +n45002015011 +n45002015012 +n45002015013 +n45002015014 +n45002015015 +n45002015016 +n45002015017 +n45002015018 +n45002015019 +n45002015020 +n45002015021 +n45002015022 +n45002015023 +n45002015024 +n45002016003 +n45002016001 +n45002016002 +n45002016004 +n45002016005 +n45002016006 +n45002016007 +n45002016008 +n45002016009 +n45002016010 +n45002016011 +n45002016012 +n45002016013 +n45002016014 +n45002016015 +n45002016016 +n45002016017 +n45002017002 +n45002017001 +n45002017003 +n45002017004 +n45002017005 +n45002017006 +n45002017007 +n45002017008 +n45002017009 +n45002017010 +n45002017011 +n45002017012 +n45002018001 +n45002018002 +n45002018003 +n45002018004 +n45002018005 +n45002018006 +n45002018007 +n45002018008 +n45002018009 +n45002018010 +n45002018011 +n45002018012 +n45002019002 +n45002019001 +n45002019003 +n45002019005 +n45002019004 +n45002019006 +n45002019007 +n45002019008 +n45002019009 +n45002019010 +n45002020001 +n45002020002 +n45002020003 +n45002020004 +n45002020005 +n45002020006 +n45002020007 +n45002020008 +n45002020009 +n45002020010 +n45002020011 +n45002020012 +n45002020013 +n45002020014 +n45002020015 +n45002021002 +n45002021001 +n45002021003 +n45002021004 +n45002021005 +n45002021006 +n45002021007 +n45002021008 +n45002021009 +n45002021010 +n45002021011 +n45002021012 +n45002022001 +n45002022002 +n45002022003 +n45002022004 +n45002022005 +n45002022006 +n45002022007 +n45002022008 +n45002022009 +n45002022010 +n45002023001 +n45002023002 +n45002023003 +n45002023004 +n45002023005 +n45002023006 +n45002023007 +n45002023008 +n45002023009 +n45002023010 +n45002023011 +n45002023012 +n45002024002 +n45002024001 +n45002024003 +n45002024004 +n45002024005 +n45002024006 +n45002024007 +n45002024008 +n45002024009 +n45002024010 +n45002024011 +n45002024012 +n45002024013 +n45002025003 +n45002025002 +n45002025001 +n45002025004 +n45002025005 +n45002025006 +n45002025007 +n45002025009 +n45002025008 +n45002025010 +n45002025011 +n45002025012 +n45002025013 +n45002025014 +n45002025015 +n45002025016 +n45002025017 +n45002026002 +n45002026001 +n45002026003 +n45002026004 +n45002026005 +n45002026006 +n45002026007 +n45002026008 +n45002026009 +n45002026010 +n45002026011 +n45002026012 +n45002026013 +n45002026014 +n45002026015 +n45002026016 +n45002027001 +n45002027002 +n45002027003 +n45002027004 +n45002027005 +n45002027006 +n45002027007 +n45002027008 +n45002027009 +n45002027010 +n45002027011 +n45002027012 +n45002027013 +n45002027014 +n45002027015 +n45002027016 +n45002027017 +n45002028002 +n45002028001 +n45002028003 +n45002028004 +n45002028005 +n45002028006 +n45002028007 +n45002028008 +n45002028009 +n45002028010 +n45002028011 +n45002028012 +n45002028013 +n45002028014 +n45002028015 +n45002028016 +n45002029001 +n45002029002 +n45002029003 +n45002029004 +n45002029005 +n45002029006 +n45002029007 +n45002029008 +n45002029009 +n45002029010 +n45002029011 +n45002029012 +n45002029013 +n45002029014 +n45002029015 +n45002029016 +n45002029017 +n45002029018 +n45002029019 +n45002029020 +n45002029021 +n45002029022 +n45002029023 +n45003001002 +n45003001001 +n45003001003 +n45003001004 +n45003001005 +n45003001006 +n45003001007 +n45003001008 +n45003001009 +n45003001010 +n45003001011 +n45003001012 +n45003002001 +n45003002002 +n45003002003 +n45003002004 +n45003002007 +n45003002006 +n45003002005 +n45003002008 +n45003002009 +n45003002010 +n45003002011 +n45003002012 +n45003002013 +n45003003002 +n45003003001 +n45003003003 +n45003003004 +n45003003005 +n45003003006 +n45003003007 +n45003003008 +n45003003009 +n45003003010 +n45003003011 +n45003003012 +n45003003013 +n45003003014 +n45003004001 +n45003004002 +n45003004004 +n45003004003 +n45003004005 +n45003004006 +n45003004007 +n45003004009 +n45003004008 +n45003004010 +n45003004011 +n45003004012 +n45003004013 +n45003004014 +n45003004015 +n45003004016 +n45003004017 +n45003004018 +n45003004019 +n45003004020 +n45003004021 +n45003004022 +n45003004023 +n45003004024 +n45003004025 +n45003004026 +n45003005002 +n45003005001 +n45003005003 +n45003005004 +n45003005005 +n45003005006 +n45003005007 +n45003005008 +n45003005009 +n45003005010 +n45003005011 +n45003005012 +n45003005013 +n45003005014 +n45003005015 +n45003005016 +n45003005017 +n45003005018 +n45003005019 +n45003005020 +n45003005021 +n45003006001 +n45003006002 +n45003006003 +n45003006004 +n45003006005 +n45003006006 +n45003006007 +n45003006008 +n45003006009 +n45003007002 +n45003007001 +n45003007003 +n45003007004 +n45003007005 +n45003007006 +n45003007007 +n45003007008 +n45003007009 +n45003007010 +n45003007011 +n45003007012 +n45003007013 +n45003007014 +n45003007015 +n45003007016 +n45003007017 +n45003007018 +n45003007019 +n45003007020 +n45003007021 +n45003008001 +n45003008002 +n45003008003 +n45003008004 +n45003008005 +n45003008006 +n45003008007 +n45003008008 +n45003008009 +n45003008010 +n45003008011 +n45003008012 +n45003008013 +n45003008014 +n45003008015 +n45003008016 +n45003008017 +n45003008018 +n45003008019 +n45003008020 +n45003008021 +n45003008022 +n45003008023 +n45003009002 +n45003009001 +n45003009003 +n45003009004 +n45003009005 +n45003009007 +n45003009006 +n45003009009 +n45003009008 +n45003009010 +n45003009011 +n45003009012 +n45003009013 +n45003009014 +n45003009015 +n45003010001 +n45003010002 +n45003010003 +n45003010004 +n45003010005 +n45003010006 +n45003010007 +n45003010008 +n45003011001 +n45003011002 +n45003011003 +n45003011004 +n45003011005 +n45003011006 +n45003011007 +n45003011008 +n45003011009 +n45003011010 +n45003012001 +n45003012002 +n45003012003 +n45003012004 +n45003012005 +n45003012006 +n45003012007 +n45003012008 +n45003012009 +n45003012010 +n45003012011 +n45003012012 +n45003012013 +n45003013001 +n45003013002 +n45003013003 +n45003013004 +n45003013005 +n45003013006 +n45003013007 +n45003013008 +n45003013009 +n45003013010 +n45003013011 +n45003013012 +n45003013013 +n45003013014 +n45003013015 +n45003014001 +n45003014002 +n45003014003 +n45003014004 +n45003014005 +n45003014006 +n45003014007 +n45003015001 +n45003015002 +n45003015003 +n45003015004 +n45003015005 +n45003015006 +n45003016001 +n45003016002 +n45003016003 +n45003016004 +n45003016005 +n45003016006 +n45003016007 +n45003017001 +n45003017002 +n45003017003 +n45003017004 +n45003017005 +n45003018001 +n45003018002 +n45003018003 +n45003018004 +n45003018005 +n45003018006 +n45003018007 +n45003018008 +n45003019002 +n45003019001 +n45003019003 +n45003019004 +n45003019005 +n45003019006 +n45003019007 +n45003019008 +n45003019009 +n45003019010 +n45003019011 +n45003019012 +n45003019013 +n45003019014 +n45003019015 +n45003019016 +n45003019017 +n45003019018 +n45003019019 +n45003019020 +n45003019021 +n45003019022 +n45003019023 +n45003019024 +n45003020001 +n45003020002 +n45003020003 +n45003020004 +n45003020005 +n45003020006 +n45003020007 +n45003020008 +n45003020009 +n45003020010 +n45003020012 +n45003020011 +n45003020013 +n45003020014 +n45003020015 +n45003021002 +n45003021001 +n45003021003 +n45003021004 +n45003021005 +n45003021006 +n45003021007 +n45003021008 +n45003021009 +n45003021010 +n45003021011 +n45003021012 +n45003021013 +n45003021014 +n45003022002 +n45003022001 +n45003022003 +n45003022004 +n45003022005 +n45003022006 +n45003022007 +n45003022008 +n45003022009 +n45003022010 +n45003022011 +n45003022013 +n45003022012 +n45003022014 +n45003022015 +n45003023002 +n45003023001 +n45003023003 +n45003023004 +n45003023005 +n45003023006 +n45003023007 +n45003023008 +n45003023009 +n45003024001 +n45003024002 +n45003024003 +n45003024004 +n45003024005 +n45003024006 +n45003024007 +n45003024008 +n45003024009 +n45003024010 +n45003024011 +n45003024012 +n45003025001 +n45003025002 +n45003025003 +n45003025004 +n45003025005 +n45003025006 +n45003025007 +n45003025008 +n45003025009 +n45003025010 +n45003025011 +n45003025012 +n45003025013 +n45003025014 +n45003025015 +n45003025016 +n45003025017 +n45003025018 +n45003025019 +n45003025020 +n45003025021 +n45003025022 +n45003026001 +n45003026002 +n45003026003 +n45003026004 +n45003026005 +n45003026006 +n45003026007 +n45003026008 +n45003026009 +n45003026010 +n45003026011 +n45003026012 +n45003026013 +n45003026014 +n45003026015 +n45003026016 +n45003026017 +n45003026018 +n45003026019 +n45003026020 +n45003026021 +n45003026022 +n45003026023 +n45003026024 +n45003026025 +n45003026026 +n45003027002 +n45003027001 +n45003027003 +n45003027004 +n45003027005 +n45003027006 +n45003027007 +n45003027008 +n45003027009 +n45003027010 +n45003027011 +n45003027012 +n45003027013 +n45003027014 +n45003027015 +n45003028002 +n45003028001 +n45003028003 +n45003028004 +n45003028005 +n45003028006 +n45003028007 +n45003028008 +n45003029001 +n45003029002 +n45003029003 +n45003029004 +n45003029005 +n45003029006 +n45003029007 +n45003029008 +n45003029009 +n45003029010 +n45003029011 +n45003030001 +n45003030002 +n45003030003 +n45003030004 +n45003030005 +n45003030006 +n45003030007 +n45003030008 +n45003030009 +n45003030010 +n45003030011 +n45003030012 +n45003030013 +n45003030014 +n45003031002 +n45003031001 +n45003031003 +n45003031004 +n45003031005 +n45003031006 +n45003031007 +n45003031008 +n45003031009 +n45003031010 +n45003031011 +n45004001002 +n45004001003 +n45004001001 +n45004001004 +n45004001005 +n45004001006 +n45004001007 +n45004001008 +n45004001009 +n45004001010 +n45004002002 +n45004002001 +n45004002003 +n45004002004 +n45004002005 +n45004002006 +n45004002007 +n45004002008 +n45004002009 +n45004002010 +n45004002011 +n45004002012 +n45004003002 +n45004003001 +n45004003003 +n45004003004 +n45004003005 +n45004003007 +n45004003006 +n45004003008 +n45004003009 +n45004003010 +n45004003011 +n45004003012 +n45004003013 +n45004003014 +n45004003015 +n45004004002 +n45004004001 +n45004004003 +n45004004004 +n45004004005 +n45004004007 +n45004004006 +n45004004008 +n45004004009 +n45004004010 +n45004004011 +n45004004012 +n45004005002 +n45004005001 +n45004005003 +n45004005004 +n45004005006 +n45004005005 +n45004005007 +n45004005008 +n45004005009 +n45004005010 +n45004005011 +n45004005012 +n45004005013 +n45004005014 +n45004005015 +n45004005016 +n45004005017 +n45004006001 +n45004006002 +n45004006003 +n45004006004 +n45004006005 +n45004006006 +n45004006007 +n45004006008 +n45004006009 +n45004006010 +n45004006011 +n45004006012 +n45004006013 +n45004006014 +n45004006015 +n45004007001 +n45004007002 +n45004007004 +n45004007005 +n45004007003 +n45004007006 +n45004007007 +n45004007009 +n45004007010 +n45004007008 +n45004008001 +n45004008002 +n45004008003 +n45004008004 +n45004008005 +n45004008006 +n45004008007 +n45004008008 +n45004009003 +n45004009001 +n45004009002 +n45004009004 +n45004009005 +n45004009006 +n45004009007 +n45004009008 +n45004009009 +n45004009010 +n45004009011 +n45004009012 +n45004009014 +n45004009013 +n45004009015 +n45004009016 +n45004009017 +n45004009018 +n45004009019 +n45004009020 +n45004009021 +n45004010002 +n45004010001 +n45004010003 +n45004010006 +n45004010004 +n45004010005 +n45004010007 +n45004010008 +n45004010009 +n45004010010 +n45004010011 +n45004010012 +n45004010013 +n45004010014 +n45004010015 +n45004011001 +n45004011003 +n45004011002 +n45004011004 +n45004011005 +n45004011006 +n45004011007 +n45004011008 +n45004011009 +n45004011010 +n45004011011 +n45004011012 +n45004011013 +n45004011014 +n45004011015 +n45004011016 +n45004011017 +n45004011018 +n45004011019 +n45004011020 +n45004011021 +n45004011022 +n45004011023 +n45004011024 +n45004011025 +n45004011026 +n45004011027 +n45004011028 +n45004011029 +n45004012001 +n45004012002 +n45004012003 +n45004012004 +n45004012005 +n45004012006 +n45004012007 +n45004012008 +n45004012009 +n45004012010 +n45004012011 +n45004012012 +n45004012013 +n45004012014 +n45004012015 +n45004012016 +n45004012017 +n45004012018 +n45004012019 +n45004012020 +n45004012021 +n45004012022 +n45004013002 +n45004013001 +n45004013003 +n45004013004 +n45004013005 +n45004013006 +n45004013013 +n45004013014 +n45004013017 +n45004013015 +n45004013016 +n45004013007 +n45004013008 +n45004013009 +n45004013010 +n45004013011 +n45004013012 +n45004013018 +n45004013019 +n45004013020 +n45004013021 +n45004014002 +n45004014001 +n45004014003 +n45004014004 +n45004014005 +n45004014006 +n45004014007 +n45004014008 +n45004014009 +n45004014010 +n45004014011 +n45004014012 +n45004014013 +n45004015002 +n45004015001 +n45004015003 +n45004015004 +n45004015005 +n45004015007 +n45004015006 +n45004015008 +n45004015009 +n45004015010 +n45004015011 +n45004015012 +n45004016001 +n45004016002 +n45004016003 +n45004016004 +n45004016005 +n45004016006 +n45004016007 +n45004016008 +n45004016009 +n45004016010 +n45004016011 +n45004016012 +n45004016013 +n45004016014 +n45004016015 +n45004016016 +n45004016017 +n45004016018 +n45004016019 +n45004016020 +n45004016021 +n45004016022 +n45004016023 +n45004016024 +n45004016025 +n45004016026 +n45004016027 +n45004016028 +n45004016029 +n45004016030 +n45004016031 +n45004016032 +n45004016033 +n45004017009 +n45004017010 +n45004017011 +n45004017012 +n45004017013 +n45004017014 +n45004017015 +n45004017016 +n45004017017 +n45004017018 +n45004017019 +n45004017020 +n45004017021 +n45004017022 +n45004017023 +n45004017001 +n45004017002 +n45004017003 +n45004017004 +n45004017005 +n45004017006 +n45004017007 +n45004017008 +n45004018001 +n45004018002 +n45004018003 +n45004018004 +n45004018005 +n45004018006 +n45004018007 +n45004018008 +n45004018009 +n45004018010 +n45004018011 +n45004018012 +n45004018013 +n45004018014 +n45004018015 +n45004018016 +n45004018017 +n45004018018 +n45004018019 +n45004018020 +n45004018021 +n45004019001 +n45004019002 +n45004019003 +n45004019004 +n45004019005 +n45004019006 +n45004019007 +n45004019008 +n45004019009 +n45004019010 +n45004019011 +n45004019012 +n45004019013 +n45004019014 +n45004019015 +n45004019016 +n45004019017 +n45004019018 +n45004019019 +n45004020002 +n45004020001 +n45004020003 +n45004020004 +n45004020005 +n45004020006 +n45004020007 +n45004020008 +n45004020009 +n45004020010 +n45004020011 +n45004020012 +n45004020013 +n45004020014 +n45004020015 +n45004020016 +n45004020017 +n45004020018 +n45004021001 +n45004021002 +n45004021003 +n45004021007 +n45004021006 +n45004021004 +n45004021005 +n45004021008 +n45004021009 +n45004022001 +n45004022002 +n45004022003 +n45004022004 +n45004022005 +n45004022006 +n45004023003 +n45004023001 +n45004023002 +n45004023004 +n45004023005 +n45004023006 +n45004023007 +n45004023008 +n45004023009 +n45004024001 +n45004024002 +n45004024003 +n45004024004 +n45004024005 +n45004024007 +n45004024006 +n45004024008 +n45004024009 +n45004024010 +n45004024011 +n45004024012 +n45004024017 +n45004024018 +n45004024013 +n45004024014 +n45004024015 +n45004024016 +n45004025001 +n45004025002 +n45004025003 +n45004025004 +n45004025005 +n45004025006 +n45004025007 +n45004025008 +n45004025009 +n45004025010 +n45004025011 +n45004025012 +n45005001002 +n45005001001 +n45005001003 +n45005001004 +n45005001005 +n45005001006 +n45005001007 +n45005001008 +n45005001009 +n45005001010 +n45005001011 +n45005001012 +n45005001013 +n45005001014 +n45005001015 +n45005002001 +n45005002002 +n45005002003 +n45005002004 +n45005002005 +n45005002006 +n45005002007 +n45005002008 +n45005002009 +n45005002010 +n45005002011 +n45005002012 +n45005002013 +n45005002014 +n45005002015 +n45005002016 +n45005002017 +n45005002018 +n45005002019 +n45005002020 +n45005002021 +n45005002022 +n45005002023 +n45005003003 +n45005003001 +n45005003002 +n45005003004 +n45005003005 +n45005003006 +n45005003007 +n45005003008 +n45005003009 +n45005003010 +n45005003011 +n45005003012 +n45005003013 +n45005003014 +n45005003015 +n45005004002 +n45005004001 +n45005004003 +n45005004004 +n45005004006 +n45005004005 +n45005004007 +n45005004008 +n45005005002 +n45005005001 +n45005005003 +n45005005004 +n45005005005 +n45005005006 +n45005005007 +n45005005008 +n45005005009 +n45005005010 +n45005005011 +n45005005012 +n45005005013 +n45005005014 +n45005005015 +n45005005016 +n45005005017 +n45005005018 +n45005005019 +n45005005020 +n45005005021 +n45005006002 +n45005006001 +n45005006003 +n45005006004 +n45005006005 +n45005006006 +n45005006007 +n45005006008 +n45005006009 +n45005006010 +n45005006011 +n45005006012 +n45005007002 +n45005007001 +n45005007003 +n45005007004 +n45005007005 +n45005007006 +n45005007008 +n45005007007 +n45005007009 +n45005007010 +n45005007011 +n45005007012 +n45005007013 +n45005007014 +n45005007015 +n45005008002 +n45005008001 +n45005008003 +n45005008004 +n45005008005 +n45005008006 +n45005008007 +n45005008008 +n45005008009 +n45005008010 +n45005008011 +n45005008012 +n45005008013 +n45005008014 +n45005008015 +n45005008016 +n45005008017 +n45005008018 +n45005009002 +n45005009001 +n45005009003 +n45005009004 +n45005009005 +n45005009006 +n45005009007 +n45005009008 +n45005009009 +n45005009010 +n45005009011 +n45005009012 +n45005009013 +n45005009014 +n45005009015 +n45005010002 +n45005010001 +n45005010003 +n45005010004 +n45005010005 +n45005010006 +n45005010007 +n45005010008 +n45005010009 +n45005010010 +n45005010011 +n45005010012 +n45005010013 +n45005010014 +n45005010015 +n45005010016 +n45005010017 +n45005010018 +n45005010019 +n45005010020 +n45005010021 +n45005011003 +n45005011001 +n45005011002 +n45005011004 +n45005011005 +n45005011006 +n45005011007 +n45005011008 +n45005011009 +n45005011010 +n45005011011 +n45005011012 +n45005011013 +n45005011014 +n45005011015 +n45005011016 +n45005011017 +n45005011018 +n45005011019 +n45005011020 +n45005011021 +n45005012001 +n45005012002 +n45005012003 +n45005012004 +n45005012005 +n45005012006 +n45005012007 +n45005012008 +n45005012009 +n45005012010 +n45005012011 +n45005012012 +n45005012013 +n45005012014 +n45005012015 +n45005012016 +n45005012017 +n45005012018 +n45005012019 +n45005012020 +n45005012021 +n45005012022 +n45005012023 +n45005012024 +n45005012025 +n45005012026 +n45005012027 +n45005012028 +n45005012029 +n45005012030 +n45005013002 +n45005013001 +n45005013003 +n45005013004 +n45005013005 +n45005013006 +n45005013007 +n45005013009 +n45005013008 +n45005013010 +n45005013011 +n45005013012 +n45005013013 +n45005013014 +n45005014001 +n45005014002 +n45005014003 +n45005014004 +n45005014005 +n45005014006 +n45005014007 +n45005014008 +n45005014009 +n45005014010 +n45005014011 +n45005014012 +n45005014013 +n45005014014 +n45005014015 +n45005014016 +n45005014017 +n45005014018 +n45005014019 +n45005014020 +n45005014021 +n45005014022 +n45005014023 +n45005014024 +n45005015001 +n45005015002 +n45005015003 +n45005015004 +n45005015005 +n45005015006 +n45005015007 +n45005015008 +n45005015009 +n45005015011 +n45005015010 +n45005015012 +n45005015013 +n45005015014 +n45005015015 +n45005015016 +n45005015017 +n45005015018 +n45005015019 +n45005015020 +n45005015021 +n45005015022 +n45005015023 +n45005015024 +n45005015025 +n45005015026 +n45005015027 +n45005015028 +n45005015029 +n45005015030 +n45005015031 +n45005015032 +n45005015033 +n45005015034 +n45005015035 +n45005015036 +n45005015037 +n45005015038 +n45005015039 +n45005016001 +n45005016002 +n45005016003 +n45005016004 +n45005016005 +n45005016006 +n45005016007 +n45005016008 +n45005016011 +n45005016010 +n45005016009 +n45005016012 +n45005016013 +n45005016014 +n45005016015 +n45005016016 +n45005016018 +n45005016017 +n45005016019 +n45005016020 +n45005016021 +n45005016022 +n45005016023 +n45005016024 +n45005017002 +n45005017001 +n45005017003 +n45005017004 +n45005017005 +n45005017006 +n45005017007 +n45005017008 +n45005017009 +n45005017010 +n45005017011 +n45005017012 +n45005017013 +n45005017014 +n45005017015 +n45005017016 +n45005017017 +n45005017018 +n45005017019 +n45005017020 +n45005017021 +n45005017022 +n45005017023 +n45005017024 +n45005017025 +n45005017026 +n45005017027 +n45005017028 +n45005017029 +n45005017030 +n45005017031 +n45005017032 +n45005017033 +n45005018001 +n45005018002 +n45005018003 +n45005018004 +n45005018005 +n45005018006 +n45005018007 +n45005018008 +n45005018009 +n45005018010 +n45005018011 +n45005018012 +n45005018013 +n45005018014 +n45005018015 +n45005018016 +n45005018017 +n45005018018 +n45005018019 +n45005018020 +n45005018021 +n45005018022 +n45005019002 +n45005019001 +n45005019003 +n45005019004 +n45005019005 +n45005019006 +n45005019007 +n45005019008 +n45005019009 +n45005019010 +n45005019011 +n45005019012 +n45005019013 +n45005019014 +n45005019015 +n45005019016 +n45005019017 +n45005019018 +n45005019019 +n45005019020 +n45005019021 +n45005019022 +n45005019023 +n45005020002 +n45005020001 +n45005020003 +n45005020004 +n45005020005 +n45005020006 +n45005020007 +n45005020009 +n45005020008 +n45005020010 +n45005020011 +n45005020012 +n45005020013 +n45005020014 +n45005020015 +n45005021001 +n45005021002 +n45005021003 +n45005021004 +n45005021005 +n45005021006 +n45005021007 +n45005021008 +n45005021009 +n45005021010 +n45005021011 +n45005021012 +n45005021013 +n45005021014 +n45005021015 +n45005021016 +n45005021017 +n45005021018 +n45005021019 +n45005021020 +n45005021021 +n45005021022 +n45005021023 +n45005021024 +n45006001002 +n45006001001 +n45006001003 +n45006001004 +n45006001005 +n45006001006 +n45006001007 +n45006001008 +n45006001009 +n45006001010 +n45006002001 +n45006002002 +n45006002003 +n45006002004 +n45006002005 +n45006002006 +n45006002007 +n45006002008 +n45006002009 +n45006002010 +n45006002011 +n45006003001 +n45006003002 +n45006003003 +n45006003004 +n45006003005 +n45006003006 +n45006003007 +n45006003008 +n45006003009 +n45006003010 +n45006003011 +n45006003012 +n45006003013 +n45006004002 +n45006004001 +n45006004003 +n45006004004 +n45006004005 +n45006004006 +n45006004007 +n45006004008 +n45006004009 +n45006004010 +n45006004011 +n45006004012 +n45006004013 +n45006004014 +n45006004015 +n45006004016 +n45006004017 +n45006004018 +n45006004019 +n45006004020 +n45006004021 +n45006004022 +n45006004023 +n45006004024 +n45006004025 +n45006004026 +n45006004027 +n45006005002 +n45006005001 +n45006005003 +n45006005004 +n45006005005 +n45006005006 +n45006005007 +n45006005008 +n45006005009 +n45006005010 +n45006005011 +n45006005012 +n45006005013 +n45006005014 +n45006006001 +n45006006002 +n45006006003 +n45006006004 +n45006006005 +n45006006006 +n45006006007 +n45006006008 +n45006006009 +n45006006010 +n45006006011 +n45006006012 +n45006006013 +n45006006014 +n45006006015 +n45006006016 +n45006006017 +n45006006018 +n45006006019 +n45006006020 +n45006007002 +n45006007001 +n45006007003 +n45006007004 +n45006007005 +n45006007006 +n45006007007 +n45006008002 +n45006008001 +n45006008003 +n45006008004 +n45006008005 +n45006008006 +n45006008007 +n45006008008 +n45006008009 +n45006008010 +n45006009001 +n45006009002 +n45006009003 +n45006009004 +n45006009005 +n45006009006 +n45006009007 +n45006009008 +n45006009009 +n45006009010 +n45006009011 +n45006009012 +n45006010002 +n45006010001 +n45006010003 +n45006010004 +n45006010005 +n45006010006 +n45006010007 +n45006010009 +n45006010008 +n45006010010 +n45006010011 +n45006010012 +n45006010013 +n45006011001 +n45006011002 +n45006011003 +n45006011004 +n45006011005 +n45006011006 +n45006011008 +n45006011007 +n45006011009 +n45006011010 +n45006011012 +n45006011011 +n45006011013 +n45006011014 +n45006011015 +n45006011016 +n45006011017 +n45006012002 +n45006012001 +n45006012003 +n45006012004 +n45006012005 +n45006012006 +n45006012007 +n45006012008 +n45006012009 +n45006012010 +n45006012011 +n45006012012 +n45006012013 +n45006012014 +n45006012015 +n45006012016 +n45006013001 +n45006013002 +n45006013003 +n45006013004 +n45006013005 +n45006013006 +n45006013007 +n45006013008 +n45006013009 +n45006013010 +n45006013011 +n45006013012 +n45006013013 +n45006013014 +n45006013015 +n45006013016 +n45006013017 +n45006013018 +n45006013019 +n45006013020 +n45006013021 +n45006013022 +n45006013023 +n45006013024 +n45006013025 +n45006013026 +n45006014002 +n45006014001 +n45006014003 +n45006014004 +n45006014005 +n45006014007 +n45006014006 +n45006014008 +n45006014009 +n45006014010 +n45006014011 +n45006014012 +n45006014013 +n45006015002 +n45006015001 +n45006015003 +n45006015004 +n45006015005 +n45006015006 +n45006015007 +n45006015008 +n45006015009 +n45006015010 +n45006015011 +n45006015012 +n45006015013 +n45006016001 +n45006016002 +n45006016003 +n45006016004 +n45006016005 +n45006016006 +n45006016007 +n45006016008 +n45006016009 +n45006016010 +n45006016011 +n45006016012 +n45006016013 +n45006016014 +n45006016015 +n45006016016 +n45006016017 +n45006016018 +n45006016019 +n45006016020 +n45006016021 +n45006017002 +n45006017001 +n45006017003 +n45006017004 +n45006017005 +n45006017006 +n45006017007 +n45006017008 +n45006017009 +n45006017011 +n45006017010 +n45006017012 +n45006017013 +n45006017014 +n45006017015 +n45006017016 +n45006017017 +n45006017018 +n45006018002 +n45006018001 +n45006018003 +n45006018004 +n45006018005 +n45006018006 +n45006018007 +n45006018008 +n45006019001 +n45006019002 +n45006019003 +n45006019004 +n45006019005 +n45006019006 +n45006019007 +n45006019008 +n45006019010 +n45006019009 +n45006019011 +n45006019012 +n45006019013 +n45006019014 +n45006019015 +n45006019016 +n45006019017 +n45006019018 +n45006019019 +n45006019020 +n45006019021 +n45006019022 +n45006019023 +n45006019024 +n45006019025 +n45006019026 +n45006019027 +n45006019028 +n45006019029 +n45006019030 +n45006019031 +n45006019032 +n45006019033 +n45006019034 +n45006020002 +n45006020001 +n45006020003 +n45006020005 +n45006020006 +n45006020004 +n45006020007 +n45006020008 +n45006020009 +n45006020010 +n45006021002 +n45006021001 +n45006021003 +n45006021004 +n45006021005 +n45006021006 +n45006021007 +n45006021008 +n45006021009 +n45006021011 +n45006021010 +n45006021012 +n45006021013 +n45006021014 +n45006022002 +n45006022001 +n45006022003 +n45006022004 +n45006022005 +n45006022006 +n45006022008 +n45006022007 +n45006022009 +n45006022010 +n45006022011 +n45006022012 +n45006022013 +n45006022014 +n45006022015 +n45006022016 +n45006022018 +n45006022017 +n45006022019 +n45006022020 +n45006022021 +n45006023002 +n45006023001 +n45006023003 +n45006023004 +n45006023005 +n45006023006 +n45006023008 +n45006023007 +n45006023009 +n45006023010 +n45006023011 +n45006023012 +n45006023013 +n45006023014 +n45006023015 +n45006023016 +n45006023017 +n45006023018 +n45006023019 +n45007001001 +n45007001003 +n45007001002 +n45007001005 +n45007001004 +n45007001006 +n45007001007 +n45007001008 +n45007001009 +n45007001010 +n45007001011 +n45007001012 +n45007001013 +n45007001014 +n45007001015 +n45007001016 +n45007001017 +n45007002002 +n45007002001 +n45007002003 +n45007002004 +n45007002005 +n45007002006 +n45007002007 +n45007002008 +n45007002009 +n45007002011 +n45007002010 +n45007002012 +n45007002013 +n45007002014 +n45007002015 +n45007002016 +n45007002017 +n45007002018 +n45007002019 +n45007002020 +n45007003001 +n45007003002 +n45007003003 +n45007003004 +n45007003005 +n45007003006 +n45007003007 +n45007003008 +n45007003009 +n45007003010 +n45007003011 +n45007003013 +n45007003012 +n45007003014 +n45007003015 +n45007003016 +n45007003017 +n45007003018 +n45007003019 +n45007003020 +n45007003021 +n45007003022 +n45007003023 +n45007003024 +n45007003025 +n45007003026 +n45007003027 +n45007003028 +n45007003029 +n45007004001 +n45007004002 +n45007004003 +n45007004004 +n45007004005 +n45007004006 +n45007004007 +n45007004008 +n45007004009 +n45007004010 +n45007004011 +n45007004012 +n45007004013 +n45007004014 +n45007004015 +n45007004016 +n45007004017 +n45007004018 +n45007004019 +n45007004020 +n45007004021 +n45007004022 +n45007004023 +n45007004024 +n45007004025 +n45007004026 +n45007005002 +n45007005001 +n45007005003 +n45007005004 +n45007005005 +n45007005006 +n45007005007 +n45007005008 +n45007005009 +n45007005010 +n45007005011 +n45007005012 +n45007005013 +n45007005014 +n45007005015 +n45007005016 +n45007005017 +n45007005018 +n45007005019 +n45007005020 +n45007005021 +n45007005022 +n45007005023 +n45007005024 +n45007006002 +n45007006001 +n45007006003 +n45007006004 +n45007006005 +n45007006006 +n45007006007 +n45007006008 +n45007006009 +n45007006010 +n45007006011 +n45007006012 +n45007006013 +n45007006014 +n45007006015 +n45007006016 +n45007006017 +n45007006018 +n45007006019 +n45007006020 +n45007007002 +n45007007001 +n45007007003 +n45007007004 +n45007007005 +n45007007006 +n45007007007 +n45007007008 +n45007007009 +n45007007010 +n45007007011 +n45007007012 +n45007007013 +n45007007014 +n45007007015 +n45007007016 +n45007007017 +n45007007020 +n45007007019 +n45007007018 +n45007007021 +n45007007022 +n45007007023 +n45007007024 +n45007007025 +n45007007026 +n45007007027 +n45007007028 +n45007007029 +n45007007030 +n45007008002 +n45007008001 +n45007008003 +n45007008004 +n45007008005 +n45007008006 +n45007008007 +n45007008008 +n45007008009 +n45007008010 +n45007008011 +n45007008012 +n45007008013 +n45007008015 +n45007008014 +n45007008016 +n45007008017 +n45007008018 +n45007009002 +n45007009001 +n45007009003 +n45007009004 +n45007009005 +n45007009006 +n45007009008 +n45007009007 +n45007009009 +n45007009010 +n45007009011 +n45007009012 +n45007009013 +n45007010002 +n45007010001 +n45007010003 +n45007010004 +n45007010005 +n45007010006 +n45007010007 +n45007010008 +n45007010009 +n45007010010 +n45007010011 +n45007010012 +n45007010013 +n45007010014 +n45007011002 +n45007011001 +n45007011003 +n45007011004 +n45007011005 +n45007011006 +n45007011007 +n45007011008 +n45007011009 +n45007011010 +n45007011011 +n45007011012 +n45007011013 +n45007011014 +n45007012001 +n45007012003 +n45007012002 +n45007012004 +n45007012005 +n45007012006 +n45007012007 +n45007012008 +n45007012009 +n45007012010 +n45007012011 +n45007012012 +n45007012013 +n45007013002 +n45007013001 +n45007013003 +n45007013004 +n45007013005 +n45007013006 +n45007013007 +n45007013008 +n45007013009 +n45007013010 +n45007013011 +n45007013012 +n45007013013 +n45007013014 +n45007013015 +n45007013016 +n45007013017 +n45007013018 +n45007013019 +n45007013020 +n45007013021 +n45007013022 +n45007013023 +n45007013024 +n45007013025 +n45007013026 +n45007013027 +n45007013028 +n45007013029 +n45007013030 +n45007014002 +n45007014001 +n45007014003 +n45007014004 +n45007014005 +n45007014006 +n45007014007 +n45007014009 +n45007014008 +n45007014010 +n45007014011 +n45007014012 +n45007014013 +n45007014014 +n45007014015 +n45007015002 +n45007015001 +n45007015003 +n45007015004 +n45007015005 +n45007015007 +n45007015006 +n45007015008 +n45007015009 +n45007015010 +n45007015011 +n45007015012 +n45007015013 +n45007015014 +n45007015015 +n45007015016 +n45007016002 +n45007016001 +n45007016003 +n45007016004 +n45007016005 +n45007016006 +n45007016007 +n45007016008 +n45007016009 +n45007016010 +n45007016011 +n45007016012 +n45007017002 +n45007017001 +n45007017003 +n45007017004 +n45007017005 +n45007017006 +n45007017007 +n45007017008 +n45007017009 +n45007017010 +n45007017011 +n45007017012 +n45007018002 +n45007018001 +n45007018003 +n45007018004 +n45007018005 +n45007018006 +n45007018007 +n45007018008 +n45007018009 +n45007018010 +n45007018011 +n45007018012 +n45007018013 +n45007018014 +n45007018016 +n45007018015 +n45007018017 +n45007018018 +n45007018019 +n45007018021 +n45007018020 +n45007018022 +n45007018023 +n45007018024 +n45007018025 +n45007019002 +n45007019001 +n45007019003 +n45007019004 +n45007019006 +n45007019005 +n45007019007 +n45007019008 +n45007019009 +n45007019010 +n45007019011 +n45007019012 +n45007019013 +n45007020002 +n45007020001 +n45007020003 +n45007020004 +n45007020005 +n45007020007 +n45007020006 +n45007020008 +n45007020009 +n45007020010 +n45007020011 +n45007020012 +n45007020013 +n45007020014 +n45007020015 +n45007020016 +n45007020017 +n45007020018 +n45007021002 +n45007021001 +n45007021003 +n45007021004 +n45007021007 +n45007021005 +n45007021006 +n45007021008 +n45007021009 +n45007021010 +n45007021011 +n45007021012 +n45007021013 +n45007021014 +n45007021015 +n45007022002 +n45007022001 +n45007022003 +n45007022004 +n45007022005 +n45007022006 +n45007022007 +n45007022008 +n45007022009 +n45007022010 +n45007023002 +n45007023001 +n45007023003 +n45007023004 +n45007023005 +n45007023006 +n45007023007 +n45007023008 +n45007023009 +n45007023010 +n45007023011 +n45007023012 +n45007023013 +n45007023014 +n45007023015 +n45007023016 +n45007023017 +n45007023018 +n45007023019 +n45007023020 +n45007023021 +n45007023022 +n45007023023 +n45007023024 +n45007023025 +n45007023026 +n45007023027 +n45007023028 +n45007024001 +n45007024003 +n45007024002 +n45007024004 +n45007024005 +n45007024006 +n45007024007 +n45007024008 +n45007024009 +n45007024010 +n45007024011 +n45007024012 +n45007025001 +n45007025002 +n45007025003 +n45007025004 +n45007025005 +n45007025006 +n45007025007 +n45007025008 +n45007025009 +n45007025010 +n45007025011 +n45007025015 +n45007025012 +n45007025013 +n45007025014 +n45007025016 +n45007025017 +n45007025018 +n45007025019 +n45007025021 +n45007025020 +n45007025022 +n45007025023 +n45007025024 +n45008001002 +n45008001001 +n45008001004 +n45008001003 +n45008001005 +n45008001006 +n45008001007 +n45008001008 +n45008002002 +n45008002001 +n45008002003 +n45008002004 +n45008002005 +n45008002006 +n45008002007 +n45008002008 +n45008002009 +n45008002010 +n45008002011 +n45008002012 +n45008002013 +n45008002014 +n45008002015 +n45008002016 +n45008002017 +n45008002018 +n45008002019 +n45008002020 +n45008003002 +n45008003001 +n45008003003 +n45008003004 +n45008003005 +n45008003006 +n45008003007 +n45008003008 +n45008003009 +n45008003010 +n45008003011 +n45008003012 +n45008003013 +n45008003014 +n45008003015 +n45008003016 +n45008003017 +n45008003018 +n45008003019 +n45008003020 +n45008003021 +n45008003022 +n45008003023 +n45008003024 +n45008003025 +n45008003026 +n45008003027 +n45008003028 +n45008003029 +n45008003030 +n45008004001 +n45008004002 +n45008004003 +n45008004004 +n45008004005 +n45008004006 +n45008004007 +n45008004008 +n45008004009 +n45008004013 +n45008004010 +n45008004011 +n45008004012 +n45008004014 +n45008004015 +n45008004016 +n45008005002 +n45008005001 +n45008005003 +n45008005004 +n45008005005 +n45008005006 +n45008005007 +n45008005008 +n45008005009 +n45008005011 +n45008005010 +n45008005012 +n45008005013 +n45008005014 +n45008005015 +n45008005016 +n45008006002 +n45008006001 +n45008006003 +n45008006004 +n45008006005 +n45008006006 +n45008006008 +n45008006007 +n45008006009 +n45008006010 +n45008006011 +n45008006012 +n45008006013 +n45008006014 +n45008007001 +n45008007002 +n45008007003 +n45008007004 +n45008007005 +n45008007006 +n45008007007 +n45008007008 +n45008007010 +n45008007009 +n45008007011 +n45008007012 +n45008007013 +n45008007014 +n45008007015 +n45008007017 +n45008007016 +n45008007018 +n45008008002 +n45008008001 +n45008008003 +n45008008004 +n45008008005 +n45008008006 +n45008008007 +n45008008008 +n45008008009 +n45008009002 +n45008009001 +n45008009004 +n45008009003 +n45008009005 +n45008009006 +n45008009007 +n45008009008 +n45008009009 +n45008009010 +n45008009011 +n45008009012 +n45008009013 +n45008009014 +n45008009015 +n45008009017 +n45008009016 +n45008009018 +n45008009019 +n45008009020 +n45008009021 +n45008009022 +n45008009023 +n45008009024 +n45008009025 +n45008009026 +n45008010002 +n45008010001 +n45008010003 +n45008010004 +n45008010005 +n45008010007 +n45008010006 +n45008010008 +n45008010009 +n45008010010 +n45008010011 +n45008010013 +n45008010012 +n45008010014 +n45008010015 +n45008010016 +n45008010017 +n45008011002 +n45008011001 +n45008011003 +n45008011004 +n45008011005 +n45008011006 +n45008011007 +n45008011008 +n45008011009 +n45008011010 +n45008011011 +n45008011012 +n45008011013 +n45008011014 +n45008011015 +n45008011016 +n45008011017 +n45008011018 +n45008011019 +n45008011020 +n45008011021 +n45008011022 +n45008011023 +n45008011024 +n45008011025 +n45008011026 +n45008011027 +n45008011028 +n45008011031 +n45008011032 +n45008011029 +n45008011030 +n45008012001 +n45008012002 +n45008012003 +n45008012004 +n45008012005 +n45008012006 +n45008012007 +n45008012008 +n45008012009 +n45008012010 +n45008012011 +n45008012012 +n45008013002 +n45008013001 +n45008013003 +n45008013004 +n45008013005 +n45008013006 +n45008013007 +n45008013009 +n45008013008 +n45008013010 +n45008013011 +n45008013012 +n45008013013 +n45008013014 +n45008013015 +n45008013016 +n45008014002 +n45008014001 +n45008014003 +n45008014004 +n45008014005 +n45008014006 +n45008014007 +n45008014009 +n45008014008 +n45008015002 +n45008015001 +n45008015003 +n45008015004 +n45008015005 +n45008015006 +n45008015007 +n45008015008 +n45008015009 +n45008015010 +n45008015011 +n45008015012 +n45008015013 +n45008015014 +n45008015015 +n45008015016 +n45008015017 +n45008015018 +n45008016001 +n45008016002 +n45008016003 +n45008016004 +n45008016005 +n45008016006 +n45008016007 +n45008016008 +n45008016009 +n45008016010 +n45008016011 +n45008017002 +n45008017001 +n45008017003 +n45008017004 +n45008017005 +n45008017007 +n45008017006 +n45008017008 +n45008017010 +n45008017009 +n45008017011 +n45008017012 +n45008017013 +n45008017014 +n45008017015 +n45008017016 +n45008018002 +n45008018001 +n45008018003 +n45008018004 +n45008018005 +n45008018006 +n45008018007 +n45008018008 +n45008018009 +n45008018010 +n45008018011 +n45008018012 +n45008018013 +n45008018015 +n45008018016 +n45008018017 +n45008018014 +n45008019002 +n45008019001 +n45008019003 +n45008019004 +n45008019005 +n45008019006 +n45008019007 +n45008019008 +n45008019009 +n45008019010 +n45008019011 +n45008019012 +n45008020002 +n45008020001 +n45008020003 +n45008020004 +n45008020005 +n45008020006 +n45008020007 +n45008020008 +n45008020009 +n45008020010 +n45008020011 +n45008020012 +n45008020013 +n45008020014 +n45008021001 +n45008021002 +n45008021003 +n45008021004 +n45008021005 +n45008021006 +n45008021007 +n45008021008 +n45008021009 +n45008021010 +n45008021011 +n45008021012 +n45008021013 +n45008021014 +n45008021015 +n45008021016 +n45008021017 +n45008021018 +n45008021019 +n45008021020 +n45008022002 +n45008022001 +n45008022003 +n45008022004 +n45008022005 +n45008022006 +n45008022007 +n45008022008 +n45008022009 +n45008022010 +n45008022011 +n45008022012 +n45008023003 +n45008023001 +n45008023002 +n45008023004 +n45008023005 +n45008023006 +n45008023007 +n45008023008 +n45008023009 +n45008023010 +n45008023011 +n45008023012 +n45008023013 +n45008023014 +n45008023015 +n45008023016 +n45008023017 +n45008023019 +n45008023018 +n45008023020 +n45008023021 +n45008023022 +n45008023023 +n45008023024 +n45008024002 +n45008024001 +n45008024003 +n45008024004 +n45008024006 +n45008024005 +n45008024007 +n45008024008 +n45008024009 +n45008024010 +n45008024012 +n45008024011 +n45008024013 +n45008024014 +n45008024015 +n45008024016 +n45008025002 +n45008025001 +n45008025003 +n45008025004 +n45008025005 +n45008025006 +n45008025007 +n45008025008 +n45008025009 +n45008026002 +n45008026001 +n45008026003 +n45008026004 +n45008026005 +n45008026006 +n45008026007 +n45008026008 +n45008026009 +n45008026011 +n45008026010 +n45008026012 +n45008026013 +n45008026014 +n45008026015 +n45008026016 +n45008026017 +n45008026018 +n45008026019 +n45008026020 +n45008026021 +n45008026022 +n45008026023 +n45008026024 +n45008027002 +n45008027001 +n45008027003 +n45008027004 +n45008027005 +n45008027006 +n45008027007 +n45008027008 +n45008027009 +n45008027010 +n45008027011 +n45008027012 +n45008027013 +n45008027014 +n45008027015 +n45008027016 +n45008027017 +n45008028002 +n45008028001 +n45008028003 +n45008028004 +n45008028005 +n45008028006 +n45008028007 +n45008028008 +n45008028009 +n45008028010 +n45008028011 +n45008028012 +n45008028013 +n45008028014 +n45008028015 +n45008028016 +n45008029001 +n45008029002 +n45008029003 +n45008029004 +n45008029005 +n45008029006 +n45008029007 +n45008029008 +n45008029009 +n45008029010 +n45008029011 +n45008029012 +n45008029013 +n45008029014 +n45008029015 +n45008029016 +n45008029017 +n45008029018 +n45008029019 +n45008030002 +n45008030001 +n45008030003 +n45008030004 +n45008030005 +n45008030006 +n45008030007 +n45008030008 +n45008030009 +n45008030010 +n45008030011 +n45008030012 +n45008030014 +n45008030013 +n45008030015 +n45008030016 +n45008030017 +n45008030018 +n45008031002 +n45008031001 +n45008031003 +n45008031004 +n45008031005 +n45008031006 +n45008031007 +n45008031008 +n45008031009 +n45008031010 +n45008031011 +n45008031012 +n45008031013 +n45008032002 +n45008032001 +n45008032003 +n45008032004 +n45008032005 +n45008032006 +n45008032007 +n45008032008 +n45008032009 +n45008032010 +n45008032011 +n45008032012 +n45008032013 +n45008032014 +n45008032015 +n45008032016 +n45008032017 +n45008032018 +n45008032019 +n45008032020 +n45008032021 +n45008032022 +n45008033001 +n45008033002 +n45008033003 +n45008033004 +n45008033005 +n45008033006 +n45008033007 +n45008033008 +n45008034001 +n45008034002 +n45008034003 +n45008034004 +n45008034005 +n45008034006 +n45008034007 +n45008034009 +n45008034008 +n45008034010 +n45008034011 +n45008034012 +n45008034013 +n45008034014 +n45008034015 +n45008034016 +n45008034017 +n45008034018 +n45008034019 +n45008034020 +n45008034021 +n45008035001 +n45008035002 +n45008035003 +n45008035004 +n45008035005 +n45008035006 +n45008035007 +n45008035008 +n45008035009 +n45008035010 +n45008035011 +n45008035012 +n45008035013 +n45008035014 +n45008035015 +n45008035016 +n45008035017 +n45008035018 +n45008035019 +n45008035020 +n45008035021 +n45008036001 +n45008036002 +n45008036003 +n45008036004 +n45008036005 +n45008036006 +n45008036007 +n45008036008 +n45008036009 +n45008036010 +n45008036011 +n45008036012 +n45008036013 +n45008037001 +n45008037002 +n45008037003 +n45008037004 +n45008037005 +n45008037006 +n45008037007 +n45008037008 +n45008037009 +n45008038002 +n45008038001 +n45008038003 +n45008038004 +n45008038005 +n45008038006 +n45008038007 +n45008038008 +n45008038009 +n45008038010 +n45008038011 +n45008038012 +n45008038013 +n45008038014 +n45008038015 +n45008038016 +n45008038017 +n45008039001 +n45008039002 +n45008039003 +n45008039004 +n45008039005 +n45008039006 +n45008039007 +n45008039008 +n45008039009 +n45008039010 +n45008039011 +n45008039012 +n45008039013 +n45008039014 +n45008039015 +n45008039016 +n45008039017 +n45008039018 +n45008039019 +n45008039020 +n45008039021 +n45008039022 +n45008039023 +n45009001001 +n45009001002 +n45009001003 +n45009001004 +n45009001005 +n45009001006 +n45009001007 +n45009001008 +n45009001009 +n45009001010 +n45009001011 +n45009001012 +n45009001013 +n45009001014 +n45009002001 +n45009002002 +n45009002003 +n45009002004 +n45009002005 +n45009002006 +n45009002007 +n45009002008 +n45009002009 +n45009002010 +n45009002011 +n45009003002 +n45009003001 +n45009003005 +n45009003006 +n45009003003 +n45009003004 +n45009003007 +n45009003008 +n45009003009 +n45009003010 +n45009003011 +n45009003012 +n45009003013 +n45009003014 +n45009003015 +n45009003016 +n45009003017 +n45009003018 +n45009004001 +n45009004002 +n45009004003 +n45009004004 +n45009004005 +n45009004006 +n45009004007 +n45009004008 +n45009004009 +n45009004010 +n45009004011 +n45009004012 +n45009004013 +n45009004014 +n45009004015 +n45009004016 +n45009004017 +n45009004018 +n45009004019 +n45009004020 +n45009004021 +n45009005001 +n45009005002 +n45009005003 +n45009005004 +n45009005005 +n45009005006 +n45009005007 +n45009005008 +n45009005009 +n45009005010 +n45009005011 +n45009005012 +n45009005013 +n45009005014 +n45009005015 +n45009005016 +n45009005017 +n45009005018 +n45009005019 +n45009005020 +n45009005021 +n45009006003 +n45009006001 +n45009006002 +n45009006004 +n45009006005 +n45009006006 +n45009006007 +n45009006008 +n45009006009 +n45009006011 +n45009006010 +n45009006012 +n45009006013 +n45009006014 +n45009006015 +n45009006016 +n45009006017 +n45009007001 +n45009007002 +n45009007003 +n45009007004 +n45009007005 +n45009007006 +n45009007007 +n45009007008 +n45009007009 +n45009007010 +n45009007011 +n45009007012 +n45009007013 +n45009008001 +n45009008002 +n45009008003 +n45009008004 +n45009008005 +n45009008006 +n45009008007 +n45009008008 +n45009008009 +n45009008010 +n45009008011 +n45009008012 +n45009008013 +n45009008014 +n45009008015 +n45009008016 +n45009008017 +n45009008018 +n45009008019 +n45009009002 +n45009009001 +n45009009003 +n45009009004 +n45009009005 +n45009009006 +n45009009007 +n45009009008 +n45009009009 +n45009009010 +n45009009011 +n45009009012 +n45009009013 +n45009009014 +n45009009015 +n45009010003 +n45009010001 +n45009010002 +n45009010004 +n45009010005 +n45009010006 +n45009010009 +n45009010010 +n45009010007 +n45009010008 +n45009010011 +n45009010012 +n45009010013 +n45009010014 +n45009011002 +n45009011001 +n45009011003 +n45009011004 +n45009011005 +n45009011006 +n45009011007 +n45009011008 +n45009011009 +n45009011010 +n45009011011 +n45009011012 +n45009011013 +n45009011014 +n45009011015 +n45009011016 +n45009011017 +n45009012001 +n45009012002 +n45009012003 +n45009012004 +n45009012005 +n45009012006 +n45009012007 +n45009012008 +n45009012009 +n45009012010 +n45009012011 +n45009012012 +n45009012013 +n45009012014 +n45009012015 +n45009013001 +n45009013002 +n45009013003 +n45009013004 +n45009013005 +n45009013007 +n45009013006 +n45009013008 +n45009013009 +n45009014002 +n45009014001 +n45009014003 +n45009014004 +n45009014005 +n45009014006 +n45009014007 +n45009014008 +n45009014009 +n45009014010 +n45009015003 +n45009015001 +n45009015002 +n45009015004 +n45009015005 +n45009015007 +n45009015006 +n45009015008 +n45009015009 +n45009015010 +n45009015012 +n45009015011 +n45009015013 +n45009016001 +n45009016002 +n45009016003 +n45009016004 +n45009016005 +n45009016006 +n45009016007 +n45009016008 +n45009016009 +n45009016010 +n45009016011 +n45009016012 +n45009017002 +n45009017001 +n45009017003 +n45009017004 +n45009017005 +n45009017006 +n45009017007 +n45009017008 +n45009017009 +n45009017010 +n45009017011 +n45009017012 +n45009017013 +n45009017014 +n45009017015 +n45009017016 +n45009017017 +n45009017018 +n45009017019 +n45009017020 +n45009017021 +n45009017022 +n45009017023 +n45009017024 +n45009017025 +n45009017026 +n45009017027 +n45009017028 +n45009017029 +n45009018001 +n45009018002 +n45009018003 +n45009018004 +n45009018005 +n45009018007 +n45009018006 +n45009018008 +n45009018009 +n45009019003 +n45009019001 +n45009019002 +n45009019004 +n45009019005 +n45009019006 +n45009019008 +n45009019007 +n45009019009 +n45009019010 +n45009019011 +n45009019012 +n45009020001 +n45009020002 +n45009020003 +n45009020005 +n45009020006 +n45009020004 +n45009020007 +n45009020008 +n45009020009 +n45009020010 +n45009020011 +n45009020012 +n45009020013 +n45009020014 +n45009020015 +n45009020016 +n45009020017 +n45009020018 +n45009020019 +n45009020020 +n45009021001 +n45009021002 +n45009021003 +n45009021005 +n45009021006 +n45009021004 +n45009021007 +n45009021008 +n45009021009 +n45009021010 +n45009021011 +n45009021012 +n45009021013 +n45009021018 +n45009021015 +n45009021014 +n45009021016 +n45009021017 +n45009021020 +n45009021019 +n45009021021 +n45009021022 +n45009022002 +n45009022001 +n45009022004 +n45009022005 +n45009022003 +n45009022006 +n45009022007 +n45009022008 +n45009022009 +n45009022010 +n45009022011 +n45009022012 +n45009022013 +n45009022014 +n45009022015 +n45009022016 +n45009022017 +n45009022018 +n45009022019 +n45009022020 +n45009022021 +n45009022022 +n45009023001 +n45009023002 +n45009023003 +n45009023004 +n45009023005 +n45009023006 +n45009023007 +n45009023008 +n45009023009 +n45009023010 +n45009023011 +n45009023012 +n45009023013 +n45009023014 +n45009023015 +n45009024001 +n45009024002 +n45009024003 +n45009024004 +n45009024005 +n45009024006 +n45009024007 +n45009024008 +n45009024009 +n45009024010 +n45009024011 +n45009024012 +n45009025001 +n45009025002 +n45009025003 +n45009025004 +n45009025005 +n45009025006 +n45009025007 +n45009025008 +n45009025009 +n45009025010 +n45009025011 +n45009025012 +n45009025013 +n45009025014 +n45009025015 +n45009025016 +n45009025017 +n45009025018 +n45009026001 +n45009026002 +n45009026003 +n45009026004 +n45009026005 +n45009026006 +n45009026007 +n45009026008 +n45009026009 +n45009026010 +n45009026011 +n45009026012 +n45009026013 +n45009026014 +n45009026015 +n45009026016 +n45009026017 +n45009027002 +n45009027001 +n45009027003 +n45009027004 +n45009027005 +n45009027006 +n45009027007 +n45009027008 +n45009027009 +n45009027010 +n45009027011 +n45009027012 +n45009027013 +n45009027014 +n45009027015 +n45009027016 +n45009027017 +n45009027018 +n45009027019 +n45009027020 +n45009027021 +n45009028002 +n45009028001 +n45009028003 +n45009028004 +n45009028005 +n45009028006 +n45009028007 +n45009028008 +n45009028009 +n45009028010 +n45009029001 +n45009029002 +n45009029003 +n45009029004 +n45009029005 +n45009029006 +n45009029007 +n45009029008 +n45009029009 +n45009029010 +n45009029011 +n45009029014 +n45009029012 +n45009029013 +n45009029015 +n45009029016 +n45009029019 +n45009029017 +n45009029018 +n45009029020 +n45009030002 +n45009030001 +n45009030003 +n45009030004 +n45009030005 +n45009030006 +n45009030007 +n45009030008 +n45009030009 +n45009030010 +n45009030011 +n45009030013 +n45009030012 +n45009030014 +n45009030015 +n45009030016 +n45009031002 +n45009031001 +n45009031003 +n45009031004 +n45009031005 +n45009031006 +n45009031007 +n45009031008 +n45009031009 +n45009032001 +n45009032002 +n45009032003 +n45009032004 +n45009032005 +n45009032006 +n45009032007 +n45009032008 +n45009032009 +n45009032010 +n45009032011 +n45009032012 +n45009032013 +n45009032014 +n45009032015 +n45009033001 +n45009033002 +n45009033003 +n45009033004 +n45009033005 +n45009033006 +n45009033007 +n45009033008 +n45009033009 +n45009033010 +n45009033011 +n45009033012 +n45009033013 +n45009033014 +n45009033015 +n45009033016 +n45009033017 +n45009033018 +n45010001001 +n45010001003 +n45010001002 +n45010001004 +n45010001005 +n45010001006 +n45010001007 +n45010001008 +n45010001009 +n45010001010 +n45010001011 +n45010001012 +n45010001013 +n45010001014 +n45010001015 +n45010001016 +n45010001017 +n45010002002 +n45010002001 +n45010002003 +n45010002004 +n45010002005 +n45010002006 +n45010002007 +n45010002008 +n45010002009 +n45010002010 +n45010002011 +n45010003002 +n45010003001 +n45010003003 +n45010003004 +n45010003005 +n45010003006 +n45010003007 +n45010003008 +n45010003009 +n45010003011 +n45010003010 +n45010003012 +n45010003013 +n45010003014 +n45010003015 +n45010003016 +n45010003017 +n45010004002 +n45010004001 +n45010004003 +n45010004004 +n45010004005 +n45010004006 +n45010004007 +n45010004008 +n45010004009 +n45010005002 +n45010005001 +n45010005003 +n45010005004 +n45010005005 +n45010005006 +n45010005007 +n45010005008 +n45010005009 +n45010005010 +n45010005011 +n45010005012 +n45010005013 +n45010005014 +n45010005015 +n45010006002 +n45010006001 +n45010006003 +n45010006004 +n45010006005 +n45010006006 +n45010006007 +n45010006008 +n45010006009 +n45010006010 +n45010006011 +n45010006012 +n45010006013 +n45010006014 +n45010006015 +n45010006016 +n45010006017 +n45010006018 +n45010006019 +n45010006020 +n45010006021 +n45010006022 +n45010007001 +n45010007002 +n45010007003 +n45010007004 +n45010007005 +n45010007006 +n45010007007 +n45010007008 +n45010007009 +n45010007010 +n45010007011 +n45010007012 +n45010008001 +n45010008002 +n45010008003 +n45010008004 +n45010008005 +n45010008006 +n45010008007 +n45010008008 +n45010008009 +n45010008010 +n45010008011 +n45010008012 +n45010008013 +n45010008014 +n45010008015 +n45010008016 +n45010008017 +n45010008018 +n45010008019 +n45010008020 +n45010008021 +n45010008022 +n45010008023 +n45010008024 +n45010008025 +n45010009001 +n45010009002 +n45010009003 +n45010009004 +n45010009005 +n45010009006 +n45010009007 +n45010009008 +n45010009009 +n45010009010 +n45010009011 +n45010009012 +n45010009013 +n45010009014 +n45010009015 +n45010009016 +n45010009017 +n45010009018 +n45010009019 +n45010009020 +n45010009021 +n45010009022 +n45010009023 +n45010010002 +n45010010001 +n45010010003 +n45010010004 +n45010010005 +n45010010007 +n45010010006 +n45010010008 +n45010010009 +n45010010010 +n45010011002 +n45010011001 +n45010011003 +n45010011004 +n45010011005 +n45010011006 +n45010011007 +n45010011008 +n45010011009 +n45010011010 +n45010011011 +n45010012002 +n45010012001 +n45010012003 +n45010012004 +n45010012006 +n45010012005 +n45010012007 +n45010012008 +n45010012010 +n45010012009 +n45010012011 +n45010012012 +n45010012013 +n45010012014 +n45010012015 +n45010012016 +n45010012017 +n45010012018 +n45010012019 +n45010013002 +n45010013001 +n45010013004 +n45010013003 +n45010013005 +n45010013006 +n45010013007 +n45010013008 +n45010013009 +n45010014002 +n45010014001 +n45010014003 +n45010014004 +n45010014005 +n45010014006 +n45010014007 +n45010014009 +n45010014008 +n45010014010 +n45010014011 +n45010014012 +n45010014013 +n45010014015 +n45010014014 +n45010014016 +n45010014017 +n45010014018 +n45010015002 +n45010015001 +n45010015003 +n45010015004 +n45010015005 +n45010015006 +n45010015007 +n45010015008 +n45010015009 +n45010015010 +n45010015011 +n45010015012 +n45010015013 +n45010015014 +n45010015015 +n45010016001 +n45010016002 +n45010016003 +n45010016004 +n45010016005 +n45010016006 +n45010016008 +n45010016007 +n45010016009 +n45010016010 +n45010016011 +n45010016012 +n45010016013 +n45010016014 +n45010016015 +n45010017001 +n45010017002 +n45010017003 +n45010017004 +n45010017005 +n45010017007 +n45010017006 +n45010017008 +n45010017009 +n45010017010 +n45010017011 +n45010018001 +n45010018002 +n45010018003 +n45010018004 +n45010018005 +n45010018006 +n45010018007 +n45010018008 +n45010018009 +n45010018010 +n45010018011 +n45010018012 +n45010018013 +n45010018014 +n45010018015 +n45010018016 +n45010018017 +n45010018018 +n45010018019 +n45010018020 +n45010018021 +n45010018022 +n45010018023 +n45010019001 +n45010019002 +n45010019003 +n45010019004 +n45010019005 +n45010019006 +n45010019007 +n45010019008 +n45010019009 +n45010019010 +n45010019011 +n45010019012 +n45010019013 +n45010019014 +n45010019015 +n45010019016 +n45010019017 +n45010019018 +n45010019019 +n45010019020 +n45010020002 +n45010020001 +n45010020003 +n45010020004 +n45010020005 +n45010020006 +n45010020007 +n45010020008 +n45010020009 +n45010020010 +n45010020011 +n45010020012 +n45010020013 +n45010020014 +n45010020015 +n45010020016 +n45010021002 +n45010021001 +n45010021003 +n45010021004 +n45010021005 +n45010021006 +n45010021007 +n45010021008 +n45010021009 +n45010021010 +n45010021011 +n45010021012 +n45010021013 +n45010021014 +n45010021015 +n45010021016 +n45010021017 +n45011001002 +n45011001001 +n45011001003 +n45011001004 +n45011001005 +n45011001006 +n45011001007 +n45011001008 +n45011001009 +n45011001010 +n45011001011 +n45011001013 +n45011001012 +n45011001014 +n45011001015 +n45011001016 +n45011001017 +n45011001018 +n45011001019 +n45011001020 +n45011001021 +n45011002001 +n45011002002 +n45011002003 +n45011002004 +n45011002005 +n45011002006 +n45011002007 +n45011002008 +n45011002009 +n45011002010 +n45011002011 +n45011002012 +n45011002013 +n45011002014 +n45011002015 +n45011002016 +n45011002017 +n45011002018 +n45011002019 +n45011002020 +n45011002021 +n45011002022 +n45011002023 +n45011002024 +n45011002025 +n45011003001 +n45011003002 +n45011003003 +n45011003004 +n45011003005 +n45011003006 +n45011003007 +n45011003008 +n45011003009 +n45011003010 +n45011003011 +n45011003012 +n45011003013 +n45011003014 +n45011003015 +n45011003016 +n45011003017 +n45011004001 +n45011004002 +n45011004003 +n45011004004 +n45011004005 +n45011004006 +n45011004007 +n45011004008 +n45011004009 +n45011004010 +n45011004011 +n45011004012 +n45011004013 +n45011004014 +n45011004015 +n45011004016 +n45011005002 +n45011005001 +n45011005003 +n45011005004 +n45011005005 +n45011005006 +n45011005007 +n45011005008 +n45011005009 +n45011005010 +n45011005011 +n45011005012 +n45011006002 +n45011006001 +n45011006003 +n45011006004 +n45011006005 +n45011006006 +n45011006007 +n45011006008 +n45011006009 +n45011006010 +n45011006011 +n45011006012 +n45011007002 +n45011007001 +n45011007003 +n45011007004 +n45011007005 +n45011007006 +n45011007007 +n45011007008 +n45011007010 +n45011007009 +n45011007011 +n45011007012 +n45011007014 +n45011007013 +n45011007015 +n45011007016 +n45011008001 +n45011008002 +n45011008003 +n45011008004 +n45011008005 +n45011008006 +n45011008007 +n45011008008 +n45011008009 +n45011008010 +n45011008011 +n45011008012 +n45011008013 +n45011008014 +n45011008015 +n45011008016 +n45011008017 +n45011008018 +n45011008019 +n45011008020 +n45011008021 +n45011009001 +n45011009002 +n45011009003 +n45011009004 +n45011009005 +n45011009006 +n45011009007 +n45011009008 +n45011009009 +n45011009010 +n45011009011 +n45011009012 +n45011009013 +n45011009014 +n45011009015 +n45011009016 +n45011009017 +n45011009018 +n45011009019 +n45011010001 +n45011010002 +n45011010003 +n45011010004 +n45011010005 +n45011010006 +n45011010007 +n45011010008 +n45011010009 +n45011010010 +n45011010011 +n45011010012 +n45011010013 +n45011010014 +n45011011002 +n45011011001 +n45011011003 +n45011011004 +n45011011005 +n45011011006 +n45011011007 +n45011011008 +n45011011009 +n45011011010 +n45011011011 +n45011011012 +n45011011013 +n45011011014 +n45011011015 +n45011011016 +n45011011017 +n45011011018 +n45011011019 +n45011011020 +n45011012002 +n45011012001 +n45011012003 +n45011012004 +n45011012005 +n45011012006 +n45011012007 +n45011012008 +n45011012009 +n45011012010 +n45011012011 +n45011012012 +n45011012013 +n45011012014 +n45011012015 +n45011012016 +n45011012017 +n45011012018 +n45011013002 +n45011013003 +n45011013001 +n45011013004 +n45011013005 +n45011013008 +n45011013009 +n45011013006 +n45011013007 +n45011013010 +n45011013011 +n45011013012 +n45011013013 +n45011013014 +n45011013015 +n45011013016 +n45011013017 +n45011014001 +n45011014002 +n45011014003 +n45011014004 +n45011014005 +n45011014006 +n45011014007 +n45011014008 +n45011014009 +n45011014010 +n45011014011 +n45011015002 +n45011015001 +n45011015003 +n45011015004 +n45011015005 +n45011015006 +n45011015007 +n45011015008 +n45011015009 +n45011015010 +n45011015011 +n45011015012 +n45011015013 +n45011015014 +n45011015015 +n45011016002 +n45011016001 +n45011016003 +n45011016004 +n45011016005 +n45011016006 +n45011016007 +n45011016008 +n45011016009 +n45011016010 +n45011016011 +n45011016012 +n45011016013 +n45011016014 +n45011016015 +n45011016016 +n45011017002 +n45011017001 +n45011017003 +n45011017004 +n45011017005 +n45011017006 +n45011017008 +n45011017007 +n45011017009 +n45011017010 +n45011017011 +n45011017012 +n45011017013 +n45011017014 +n45011017015 +n45011017016 +n45011017017 +n45011017018 +n45011017019 +n45011017020 +n45011017021 +n45011017022 +n45011018001 +n45011018002 +n45011018003 +n45011018004 +n45011018006 +n45011018005 +n45011018007 +n45011018008 +n45011018009 +n45011018010 +n45011018011 +n45011018012 +n45011018013 +n45011018014 +n45011018015 +n45011018016 +n45011019002 +n45011019001 +n45011019003 +n45011019004 +n45011019005 +n45011019006 +n45011019007 +n45011020001 +n45011020002 +n45011020003 +n45011020004 +n45011020006 +n45011020005 +n45011020007 +n45011020008 +n45011020009 +n45011020010 +n45011020011 +n45011020012 +n45011020013 +n45011020014 +n45011021002 +n45011021001 +n45011021003 +n45011021004 +n45011021005 +n45011021006 +n45011021007 +n45011021008 +n45011021009 +n45011021010 +n45011021011 +n45011021012 +n45011021013 +n45011022002 +n45011022001 +n45011022003 +n45011022004 +n45011022005 +n45011022006 +n45011022008 +n45011022007 +n45011022009 +n45011022010 +n45011022011 +n45011022013 +n45011022012 +n45011022014 +n45011022015 +n45011022016 +n45011022017 +n45011022018 +n45011022019 +n45011022020 +n45011022021 +n45011022022 +n45011022023 +n45011022024 +n45011023002 +n45011023001 +n45011023003 +n45011023004 +n45011023005 +n45011023006 +n45011023007 +n45011023008 +n45011023010 +n45011023009 +n45011023011 +n45011023012 +n45011023013 +n45011023014 +n45011023015 +n45011023016 +n45011024002 +n45011024001 +n45011024003 +n45011024004 +n45011024005 +n45011024006 +n45011024007 +n45011024009 +n45011024008 +n45011024010 +n45011024011 +n45011024012 +n45011024013 +n45011024014 +n45011024015 +n45011024016 +n45011024017 +n45011024018 +n45011024019 +n45011024020 +n45011024021 +n45011024022 +n45011024023 +n45011024024 +n45011024025 +n45011025002 +n45011025006 +n45011025001 +n45011025003 +n45011025004 +n45011025005 +n45011025007 +n45011025008 +n45011025009 +n45011025010 +n45011025011 +n45011025012 +n45011025013 +n45011025014 +n45011025015 +n45011025016 +n45011025017 +n45011025018 +n45011025019 +n45011025020 +n45011025021 +n45011025022 +n45011025023 +n45011025024 +n45011025025 +n45011025026 +n45011025027 +n45011025028 +n45011025029 +n45011026001 +n45011026002 +n45011026003 +n45011026004 +n45011026005 +n45011026006 +n45011026007 +n45011026008 +n45011026009 +n45011026010 +n45011026011 +n45011026012 +n45011026013 +n45011026014 +n45011026015 +n45011026016 +n45011027001 +n45011027002 +n45011027003 +n45011027004 +n45011027005 +n45011027006 +n45011027007 +n45011027008 +n45011027009 +n45011027010 +n45011027011 +n45011027012 +n45011028002 +n45011028001 +n45011028003 +n45011028004 +n45011028005 +n45011028006 +n45011028007 +n45011028009 +n45011028008 +n45011028010 +n45011028011 +n45011028012 +n45011028013 +n45011028014 +n45011028015 +n45011029002 +n45011029001 +n45011029003 +n45011029004 +n45011029005 +n45011029006 +n45011029007 +n45011029008 +n45011029009 +n45011030002 +n45011030001 +n45011030003 +n45011030004 +n45011030005 +n45011030006 +n45011030007 +n45011030009 +n45011030008 +n45011030010 +n45011030011 +n45011030012 +n45011030013 +n45011031001 +n45011031002 +n45011031003 +n45011031004 +n45011031005 +n45011031006 +n45011031007 +n45011031008 +n45011031009 +n45011031010 +n45011031011 +n45011031012 +n45011031013 +n45011032002 +n45011032001 +n45011032003 +n45011032004 +n45011032005 +n45011032006 +n45011032007 +n45011032008 +n45011032009 +n45011032010 +n45011032011 +n45011032012 +n45011033001 +n45011033002 +n45011033003 +n45011033004 +n45011033005 +n45011033006 +n45011033007 +n45011033008 +n45011033009 +n45011033010 +n45011033011 +n45011033012 +n45011033013 +n45011033014 +n45011033015 +n45011033016 +n45011033017 +n45011033018 +n45011034002 +n45011034001 +n45011034003 +n45011034004 +n45011034005 +n45011034006 +n45011034007 +n45011034008 +n45011034009 +n45011034010 +n45011035001 +n45011035002 +n45011035003 +n45011035004 +n45011035005 +n45011035006 +n45011035007 +n45011036001 +n45011036002 +n45011036003 +n45011036004 +n45011036005 +n45011036006 +n45011036007 +n45011036008 +n45011036009 +n45011036010 +n45011036011 +n45011036012 +n45011036013 +n45011036014 +n45011036015 +n45011036016 +n45011036017 +n45011036018 +n45012001002 +n45012001004 +n45012001001 +n45012001005 +n45012001006 +n45012001007 +n45012001008 +n45012001009 +n45012001003 +n45012001010 +n45012001011 +n45012001012 +n45012001013 +n45012001014 +n45012001015 +n45012001016 +n45012001017 +n45012001018 +n45012001019 +n45012001020 +n45012001021 +n45012001022 +n45012001023 +n45012002001 +n45012002002 +n45012002003 +n45012002004 +n45012002005 +n45012002006 +n45012002007 +n45012002008 +n45012002009 +n45012002010 +n45012002011 +n45012002012 +n45012002013 +n45012002014 +n45012002015 +n45012002016 +n45012002017 +n45012002018 +n45012002019 +n45012002020 +n45012002021 +n45012002022 +n45012002023 +n45012002024 +n45012002025 +n45012002026 +n45012002027 +n45012003002 +n45012003001 +n45012003003 +n45012003004 +n45012003005 +n45012003006 +n45012003007 +n45012003008 +n45012003009 +n45012003010 +n45012003011 +n45012003012 +n45012003013 +n45012003014 +n45012003015 +n45012003016 +n45012003017 +n45012003019 +n45012003018 +n45012003020 +n45012003021 +n45012003022 +n45012003023 +n45012003024 +n45012003026 +n45012003025 +n45012003027 +n45012003028 +n45012003029 +n45012003030 +n45012003031 +n45012004002 +n45012004001 +n45012004003 +n45012004004 +n45012004005 +n45012004006 +n45012004007 +n45012004008 +n45012004010 +n45012004009 +n45012004011 +n45012004012 +n45012004013 +n45012004014 +n45012004015 +n45012004017 +n45012004016 +n45012005001 +n45012005002 +n45012005003 +n45012005004 +n45012005005 +n45012005006 +n45012005007 +n45012005008 +n45012005010 +n45012005009 +n45012005011 +n45012005012 +n45012005013 +n45012005014 +n45012006002 +n45012006001 +n45012006003 +n45012006010 +n45012006004 +n45012006005 +n45012006006 +n45012006007 +n45012006008 +n45012006009 +n45012006011 +n45012006012 +n45012006013 +n45012006014 +n45012006015 +n45012006016 +n45012006017 +n45012007001 +n45012007002 +n45012007003 +n45012007004 +n45012007005 +n45012007006 +n45012007007 +n45012007008 +n45012007009 +n45012007010 +n45012007011 +n45012008001 +n45012008002 +n45012008003 +n45012008004 +n45012008005 +n45012008006 +n45012008007 +n45012008008 +n45012008009 +n45012008010 +n45012008011 +n45012008012 +n45012008013 +n45012008014 +n45012008015 +n45012008016 +n45012008017 +n45012008018 +n45012009001 +n45012009002 +n45012009003 +n45012009004 +n45012009005 +n45012009006 +n45012009007 +n45012009008 +n45012009009 +n45012010001 +n45012010002 +n45012010003 +n45012010004 +n45012010005 +n45012010006 +n45012010007 +n45012010008 +n45012010009 +n45012011001 +n45012011002 +n45012011003 +n45012011004 +n45012011005 +n45012011006 +n45012011007 +n45012011008 +n45012011009 +n45012011010 +n45012012001 +n45012012002 +n45012012003 +n45012012004 +n45012012005 +n45012012006 +n45012012007 +n45012012008 +n45012012009 +n45012013001 +n45012013002 +n45012013003 +n45012013004 +n45012013005 +n45012013006 +n45012013007 +n45012013008 +n45012014001 +n45012014002 +n45012014003 +n45012014004 +n45012014005 +n45012014006 +n45012014007 +n45012015001 +n45012015002 +n45012015003 +n45012015004 +n45012015005 +n45012015006 +n45012016001 +n45012016002 +n45012016003 +n45012016004 +n45012016005 +n45012016006 +n45012016007 +n45012016008 +n45012016009 +n45012016010 +n45012016011 +n45012016012 +n45012016013 +n45012016014 +n45012016015 +n45012016016 +n45012016017 +n45012016018 +n45012017001 +n45012017002 +n45012017003 +n45012017004 +n45012017005 +n45012017006 +n45012017007 +n45012017008 +n45012017009 +n45012017010 +n45012018001 +n45012018002 +n45012018003 +n45012018004 +n45012018005 +n45012018006 +n45012018007 +n45012018008 +n45012018009 +n45012019004 +n45012019001 +n45012019002 +n45012019003 +n45012019005 +n45012019006 +n45012019007 +n45012019008 +n45012019009 +n45012019011 +n45012019010 +n45012019012 +n45012019013 +n45012019014 +n45012019015 +n45012019016 +n45012019017 +n45012020001 +n45012020002 +n45012020003 +n45012020004 +n45012020005 +n45012020006 +n45012020007 +n45012020008 +n45012020009 +n45012020010 +n45012020011 +n45012020012 +n45012020014 +n45012020013 +n45012020015 +n45012020016 +n45012020017 +n45012020018 +n45012020019 +n45012020020 +n45012020021 +n45012020022 +n45012021001 +n45012021002 +n45012021003 +n45012021004 +n45012021005 +n45012021006 +n45012021007 +n45012021008 +n45012021009 +n45012021010 +n45012021011 +n45012021012 +n45013001001 +n45013001002 +n45013001003 +n45013001004 +n45013001005 +n45013001007 +n45013001006 +n45013001008 +n45013001009 +n45013001010 +n45013001011 +n45013001012 +n45013001013 +n45013001015 +n45013001014 +n45013001016 +n45013001017 +n45013001018 +n45013001019 +n45013001020 +n45013002001 +n45013002002 +n45013002003 +n45013002004 +n45013002005 +n45013002006 +n45013002007 +n45013002008 +n45013002009 +n45013002010 +n45013002012 +n45013002011 +n45013002013 +n45013002014 +n45013002015 +n45013002016 +n45013003002 +n45013003001 +n45013003003 +n45013003005 +n45013003006 +n45013003004 +n45013003007 +n45013003008 +n45013003009 +n45013003010 +n45013003011 +n45013003012 +n45013003014 +n45013003013 +n45013003015 +n45013003016 +n45013003017 +n45013003018 +n45013003019 +n45013003020 +n45013003021 +n45013003022 +n45013003023 +n45013003024 +n45013003025 +n45013003026 +n45013004002 +n45013004001 +n45013004003 +n45013004004 +n45013004005 +n45013004006 +n45013004007 +n45013004008 +n45013004010 +n45013004009 +n45013004011 +n45013004012 +n45013004013 +n45013004014 +n45013004016 +n45013004015 +n45013004017 +n45013004018 +n45013004019 +n45013004020 +n45013004022 +n45013004021 +n45013004023 +n45013004024 +n45013004025 +n45013004026 +n45013004027 +n45013004028 +n45013004029 +n45013004030 +n45013004031 +n45013005001 +n45013005002 +n45013005003 +n45013005004 +n45013005005 +n45013005006 +n45013005007 +n45013005008 +n45013005009 +n45013005010 +n45013005011 +n45013005012 +n45013005013 +n45013006003 +n45013006001 +n45013006002 +n45013006004 +n45013006005 +n45013006006 +n45013006008 +n45013006007 +n45013006009 +n45013006010 +n45013006011 +n45013006012 +n45013006013 +n45013006014 +n45013007001 +n45013007002 +n45013007003 +n45013007004 +n45013007005 +n45013007006 +n45013007007 +n45013007008 +n45013007009 +n45013007010 +n45013007011 +n45013007012 +n45013007013 +n45013007014 +n45013007015 +n45013007016 +n45013007017 +n45013007018 +n45013007019 +n45013007020 +n45013007021 +n45013007022 +n45013007023 +n45013007024 +n45013008001 +n45013008002 +n45013008003 +n45013008004 +n45013008005 +n45013008006 +n45013008007 +n45013008008 +n45013008010 +n45013008009 +n45013008011 +n45013008012 +n45013008013 +n45013008014 +n45013008015 +n45013009002 +n45013009001 +n45013009003 +n45013009004 +n45013009005 +n45013009006 +n45013009007 +n45013009008 +n45013009009 +n45013009010 +n45013009011 +n45013009012 +n45013009013 +n45013009014 +n45013009015 +n45013009016 +n45013009017 +n45013009018 +n45013009019 +n45013009020 +n45013009021 +n45013009022 +n45013009023 +n45013009024 +n45013009025 +n45013009026 +n45013009027 +n45013009028 +n45013010001 +n45013010002 +n45013010003 +n45013010004 +n45013010005 +n45013010006 +n45013010007 +n45013010009 +n45013010008 +n45013010010 +n45013010011 +n45013010012 +n45013011001 +n45013011003 +n45013011002 +n45013011004 +n45013011005 +n45013011006 +n45013011007 +n45013011008 +n45013011009 +n45013011010 +n45013011011 +n45013011012 +n45013011014 +n45013011013 +n45013011015 +n45013011016 +n45013011017 +n45013011018 +n45013011019 +n45013011020 +n45013011021 +n45013012001 +n45013012002 +n45013012003 +n45013012005 +n45013012004 +n45013012006 +n45013012007 +n45013012009 +n45013012008 +n45013012010 +n45013012011 +n45013012012 +n45013012013 +n45013012015 +n45013012014 +n45013012016 +n45013012017 +n45013012018 +n45013012019 +n45013013001 +n45013013002 +n45013013003 +n45013013004 +n45013013005 +n45013013006 +n45013013007 +n45013013008 +n45013013009 +n45013013010 +n45013013011 +n45013013012 +n45013013013 +n45013013014 +n45013013015 +n45013013016 +n45013013017 +n45013014001 +n45013014002 +n45013014003 +n45013014004 +n45013014005 +n45013014006 +n45013014007 +n45013014008 +n45013014009 +n45013014010 +n45013014011 +n45013014012 +n45013014013 +n45013014014 +n45014001002 +n45014001001 +n45014001003 +n45014001004 +n45014001005 +n45014001006 +n45014001007 +n45014001008 +n45014001009 +n45014001010 +n45014002002 +n45014002001 +n45014002003 +n45014002004 +n45014002005 +n45014002007 +n45014002006 +n45014002008 +n45014002009 +n45014002010 +n45014003001 +n45014003002 +n45014003003 +n45014003004 +n45014003005 +n45014003006 +n45014003007 +n45014003009 +n45014003008 +n45014003010 +n45014003011 +n45014003012 +n45014003013 +n45014003014 +n45014003015 +n45014003018 +n45014003016 +n45014003017 +n45014003019 +n45014003020 +n45014004001 +n45014004002 +n45014004003 +n45014004004 +n45014004005 +n45014004006 +n45014004007 +n45014004008 +n45014004009 +n45014004010 +n45014004011 +n45014004012 +n45014004013 +n45014004015 +n45014004014 +n45014004017 +n45014004016 +n45014004018 +n45014004019 +n45014004020 +n45014004021 +n45014005003 +n45014005002 +n45014005001 +n45014005004 +n45014005005 +n45014005006 +n45014005007 +n45014005009 +n45014005008 +n45014005010 +n45014005011 +n45014005012 +n45014005013 +n45014005014 +n45014005015 +n45014005016 +n45014005017 +n45014005018 +n45014006001 +n45014006002 +n45014006003 +n45014006004 +n45014006005 +n45014006006 +n45014006007 +n45014006008 +n45014006009 +n45014006010 +n45014006011 +n45014006013 +n45014006012 +n45014006014 +n45014006015 +n45014006016 +n45014006017 +n45014006018 +n45014006019 +n45014006020 +n45014006021 +n45014006022 +n45014006023 +n45014006024 +n45014006025 +n45014006026 +n45014007002 +n45014007001 +n45014007003 +n45014007004 +n45014007005 +n45014007006 +n45014007007 +n45014007008 +n45014007009 +n45014008003 +n45014008002 +n45014008001 +n45014008004 +n45014008005 +n45014008006 +n45014008007 +n45014008009 +n45014008008 +n45014008010 +n45014008011 +n45014008012 +n45014008013 +n45014008016 +n45014008015 +n45014008014 +n45014008017 +n45014008019 +n45014008018 +n45014008020 +n45014008021 +n45014008022 +n45014008023 +n45014009003 +n45014009001 +n45014009002 +n45014009004 +n45014009005 +n45014009006 +n45014009007 +n45014009008 +n45014009009 +n45014009010 +n45014009011 +n45014009012 +n45014009013 +n45014010002 +n45014010001 +n45014010003 +n45014010004 +n45014010005 +n45014010006 +n45014010007 +n45014010008 +n45014010009 +n45014010010 +n45014010011 +n45014010012 +n45014010013 +n45014010014 +n45014010015 +n45014010017 +n45014010016 +n45014010018 +n45014010019 +n45014010020 +n45014010021 +n45014010022 +n45014011002 +n45014011001 +n45014011003 +n45014011004 +n45014011005 +n45014011006 +n45014011007 +n45014011008 +n45014011009 +n45014011010 +n45014011011 +n45014011012 +n45014011013 +n45014011014 +n45014011015 +n45014011016 +n45014011017 +n45014012001 +n45014012002 +n45014012003 +n45014012004 +n45014012005 +n45014012006 +n45014012007 +n45014012008 +n45014012009 +n45014012010 +n45014013002 +n45014013001 +n45014013003 +n45014013004 +n45014013005 +n45014013006 +n45014013007 +n45014013008 +n45014013009 +n45014013010 +n45014013011 +n45014013013 +n45014013014 +n45014013012 +n45014013015 +n45014013016 +n45014014001 +n45014014002 +n45014014003 +n45014014004 +n45014014005 +n45014014006 +n45014014007 +n45014014008 +n45014014009 +n45014014010 +n45014014011 +n45014014012 +n45014014013 +n45014014014 +n45014014015 +n45014014016 +n45014014017 +n45014014018 +n45014014019 +n45014014020 +n45014015002 +n45014015001 +n45014015003 +n45014015004 +n45014015005 +n45014015006 +n45014015007 +n45014015008 +n45014015009 +n45014015010 +n45014015011 +n45014015012 +n45014015013 +n45014015014 +n45014015015 +n45014015016 +n45014015017 +n45014015018 +n45014015019 +n45014015020 +n45014015021 +n45014015022 +n45014016003 +n45014016001 +n45014016002 +n45014016004 +n45014016005 +n45014016006 +n45014017002 +n45014017001 +n45014017003 +n45014017004 +n45014017005 +n45014017006 +n45014017007 +n45014017008 +n45014017009 +n45014017010 +n45014017011 +n45014017012 +n45014017013 +n45014017014 +n45014017015 +n45014017016 +n45014017017 +n45014017018 +n45014017019 +n45014018002 +n45014018001 +n45014018003 +n45014018004 +n45014018005 +n45014018006 +n45014018007 +n45014018008 +n45014018009 +n45014018010 +n45014018011 +n45014018012 +n45014018013 +n45014018014 +n45014019001 +n45014019002 +n45014019006 +n45014019003 +n45014019004 +n45014019005 +n45014019007 +n45014019008 +n45014019009 +n45014019010 +n45014019011 +n45014019012 +n45014019013 +n45014020001 +n45014020002 +n45014020003 +n45014020004 +n45014020005 +n45014020006 +n45014020007 +n45014020008 +n45014020010 +n45014020009 +n45014020011 +n45014020012 +n45014020013 +n45014020014 +n45014020015 +n45014020016 +n45014020017 +n45014020018 +n45014020019 +n45014021001 +n45014021002 +n45014021003 +n45014021004 +n45014021005 +n45014021006 +n45014021007 +n45014021008 +n45014021009 +n45014021010 +n45014021011 +n45014021012 +n45014021013 +n45014021014 +n45014021015 +n45014022001 +n45014022002 +n45014022003 +n45014022004 +n45014022005 +n45014022006 +n45014022007 +n45014022008 +n45014022009 +n45014022010 +n45014022011 +n45014022012 +n45014022013 +n45014022014 +n45014022015 +n45014022016 +n45014022017 +n45014022018 +n45014023002 +n45014023004 +n45014023001 +n45014023003 +n45014023005 +n45014023006 +n45014023007 +n45014023008 +n45014023009 +n45014023010 +n45014023012 +n45014023011 +n45014023013 +n45014023014 +n45014023015 +n45014023016 +n45014023017 +n45014023018 +n45015001002 +n45015001001 +n45015001003 +n45015001004 +n45015001005 +n45015001006 +n45015001007 +n45015001008 +n45015001009 +n45015001010 +n45015001011 +n45015001012 +n45015001013 +n45015001014 +n45015002001 +n45015002002 +n45015002003 +n45015002004 +n45015002005 +n45015002006 +n45015002007 +n45015002008 +n45015002009 +n45015002010 +n45015003002 +n45015003001 +n45015003003 +n45015003004 +n45015003005 +n45015003006 +n45015003007 +n45015003008 +n45015003009 +n45015003010 +n45015003011 +n45015003012 +n45015003013 +n45015003014 +n45015003015 +n45015003016 +n45015003017 +n45015003018 +n45015004002 +n45015004001 +n45015004003 +n45015004004 +n45015004005 +n45015004006 +n45015004007 +n45015004008 +n45015004009 +n45015004010 +n45015004011 +n45015004012 +n45015004013 +n45015004014 +n45015004015 +n45015004016 +n45015004017 +n45015004018 +n45015004019 +n45015004020 +n45015004021 +n45015005002 +n45015005001 +n45015005003 +n45015005004 +n45015005005 +n45015005006 +n45015005007 +n45015005008 +n45015005009 +n45015005010 +n45015005011 +n45015005012 +n45015005013 +n45015005014 +n45015005015 +n45015005016 +n45015005017 +n45015005018 +n45015006001 +n45015006002 +n45015006003 +n45015006004 +n45015006005 +n45015006006 +n45015006007 +n45015006008 +n45015006009 +n45015006010 +n45015006011 +n45015006012 +n45015006013 +n45015006014 +n45015006015 +n45015007001 +n45015007002 +n45015007003 +n45015007004 +n45015007005 +n45015007006 +n45015007007 +n45015007008 +n45015007009 +n45015007010 +n45015007011 +n45015007012 +n45015007013 +n45015008002 +n45015008001 +n45015008003 +n45015008004 +n45015008006 +n45015008005 +n45015008007 +n45015008008 +n45015008009 +n45015008010 +n45015008011 +n45015008012 +n45015008013 +n45015008014 +n45015008015 +n45015008016 +n45015009002 +n45015009001 +n45015009003 +n45015009004 +n45015009005 +n45015009006 +n45015009007 +n45015009008 +n45015009009 +n45015009010 +n45015009011 +n45015009012 +n45015009013 +n45015009014 +n45015009015 +n45015009016 +n45015009017 +n45015009018 +n45015009019 +n45015009020 +n45015009021 +n45015010001 +n45015010002 +n45015010003 +n45015010005 +n45015010004 +n45015010006 +n45015010007 +n45015010008 +n45015010009 +n45015011001 +n45015011002 +n45015011004 +n45015011005 +n45015011006 +n45015011003 +n45015011007 +n45015011008 +n45015011009 +n45015011010 +n45015011011 +n45015011012 +n45015011013 +n45015011014 +n45015012001 +n45015012002 +n45015012003 +n45015012004 +n45015012005 +n45015012006 +n45015012007 +n45015012008 +n45015012009 +n45015012010 +n45015012011 +n45015012012 +n45015012013 +n45015012014 +n45015012015 +n45015012016 +n45015012017 +n45015012018 +n45015013002 +n45015013001 +n45015013003 +n45015013004 +n45015013005 +n45015013006 +n45015013007 +n45015013008 +n45015013009 +n45015013010 +n45015013011 +n45015013012 +n45015013013 +n45015013014 +n45015013015 +n45015013016 +n45015013017 +n45015013018 +n45015013019 +n45015013020 +n45015013021 +n45015013022 +n45015013023 +n45015013024 +n45015013025 +n45015014002 +n45015014003 +n45015014004 +n45015014001 +n45015014005 +n45015014006 +n45015014007 +n45015014008 +n45015014009 +n45015014010 +n45015014011 +n45015014012 +n45015014013 +n45015014014 +n45015014015 +n45015014016 +n45015014017 +n45015014018 +n45015014019 +n45015014020 +n45015014021 +n45015014022 +n45015014023 +n45015015002 +n45015015001 +n45015015003 +n45015015004 +n45015015005 +n45015015006 +n45015015007 +n45015015008 +n45015015009 +n45015015010 +n45015015011 +n45015015012 +n45015015013 +n45015015014 +n45015015015 +n45015015016 +n45015015017 +n45015015018 +n45015016001 +n45015016002 +n45015016003 +n45015016004 +n45015016005 +n45015016006 +n45015016007 +n45015016008 +n45015016009 +n45015016010 +n45015016011 +n45015016012 +n45015016013 +n45015016014 +n45015016015 +n45015016016 +n45015016017 +n45015016018 +n45015016019 +n45015016020 +n45015016021 +n45015016022 +n45015016023 +n45015016024 +n45015016025 +n45015016026 +n45015017002 +n45015017001 +n45015017003 +n45015017004 +n45015017005 +n45015017006 +n45015017007 +n45015017008 +n45015017009 +n45015017010 +n45015017011 +n45015018002 +n45015018001 +n45015018003 +n45015018005 +n45015018004 +n45015018006 +n45015018007 +n45015018008 +n45015018009 +n45015018010 +n45015018011 +n45015018012 +n45015018013 +n45015018014 +n45015018015 +n45015018016 +n45015018017 +n45015019001 +n45015019002 +n45015019003 +n45015019004 +n45015019005 +n45015019006 +n45015019007 +n45015019008 +n45015019009 +n45015019010 +n45015019011 +n45015019012 +n45015019013 +n45015019014 +n45015019015 +n45015019016 +n45015019017 +n45015019018 +n45015019019 +n45015019020 +n45015019021 +n45015019022 +n45015019023 +n45015020002 +n45015020001 +n45015020003 +n45015020004 +n45015020005 +n45015020006 +n45015020007 +n45015020008 +n45015020009 +n45015020010 +n45015020011 +n45015020012 +n45015020013 +n45015020014 +n45015021001 +n45015021002 +n45015021003 +n45015021004 +n45015021005 +n45015021006 +n45015021007 +n45015021008 +n45015021009 +n45015021010 +n45015021011 +n45015021012 +n45015021013 +n45015021014 +n45015022001 +n45015022002 +n45015022003 +n45015022004 +n45015022005 +n45015022006 +n45015022007 +n45015022008 +n45015022009 +n45015023002 +n45015023001 +n45015023003 +n45015023004 +n45015023005 +n45015023006 +n45015023007 +n45015023008 +n45015023009 +n45015023011 +n45015023010 +n45015023012 +n45015023013 +n45015023014 +n45015023015 +n45015023016 +n45015023017 +n45015023018 +n45015023019 +n45015024001 +n45015024002 +n45015024003 +n45015024004 +n45015024005 +n45015024006 +n45015024008 +n45015024007 +n45015024009 +n45015024010 +n45015024011 +n45015024012 +n45015024013 +n45015024014 +n45015024015 +n45015024016 +n45015024017 +n45015024018 +n45015024019 +n45015024020 +n45015024021 +n45015024022 +n45015025002 +n45015025001 +n45015025003 +n45015025004 +n45015025005 +n45015025006 +n45015025007 +n45015025008 +n45015026002 +n45015026001 +n45015026003 +n45015026004 +n45015026005 +n45015026006 +n45015026007 +n45015026008 +n45015026009 +n45015026010 +n45015026011 +n45015026012 +n45015026013 +n45015026014 +n45015026015 +n45015026016 +n45015027002 +n45015027001 +n45015027003 +n45015027004 +n45015027005 +n45015027006 +n45015027008 +n45015027007 +n45015027009 +n45015027010 +n45015027011 +n45015027012 +n45015027013 +n45015027014 +n45015027015 +n45015027016 +n45015027017 +n45015027018 +n45015027019 +n45015027020 +n45015027021 +n45015028002 +n45015028001 +n45015028003 +n45015028004 +n45015028005 +n45015028006 +n45015028007 +n45015028008 +n45015028009 +n45015028010 +n45015028011 +n45015028012 +n45015028013 +n45015028014 +n45015029002 +n45015029001 +n45015029003 +n45015029004 +n45015029005 +n45015029006 +n45015029007 +n45015029008 +n45015029009 +n45015029010 +n45015029011 +n45015030002 +n45015030004 +n45015030001 +n45015030005 +n45015030006 +n45015030007 +n45015030008 +n45015030009 +n45015030010 +n45015030011 +n45015030012 +n45015030013 +n45015030014 +n45015030015 +n45015030016 +n45015030003 +n45015030017 +n45015030018 +n45015030019 +n45015030020 +n45015030021 +n45015030022 +n45015030023 +n45015030024 +n45015030025 +n45015030026 +n45015031001 +n45015031002 +n45015031003 +n45015031004 +n45015031005 +n45015031006 +n45015031007 +n45015031008 +n45015031009 +n45015031010 +n45015031011 +n45015031012 +n45015031013 +n45015031014 +n45015031015 +n45015031016 +n45015031017 +n45015031018 +n45015031019 +n45015032001 +n45015032002 +n45015032003 +n45015032004 +n45015032005 +n45015032006 +n45015032007 +n45015032008 +n45015032009 +n45015032010 +n45015032011 +n45015033002 +n45015033001 +n45015033003 +n45015033004 +n45015033005 +n45015033006 +n45015033007 +n45015033008 +n45015033009 +n45016001002 +n45016001001 +n45016001003 +n45016001004 +n45016001005 +n45016001006 +n45016001007 +n45016001008 +n45016001009 +n45016001010 +n45016001011 +n45016001012 +n45016001013 +n45016001014 +n45016002001 +n45016002002 +n45016002003 +n45016002004 +n45016002005 +n45016002006 +n45016002007 +n45016002008 +n45016002009 +n45016002010 +n45016002011 +n45016002012 +n45016002014 +n45016002013 +n45016002015 +n45016002016 +n45016002017 +n45016002019 +n45016002018 +n45016002020 +n45016002023 +n45016002021 +n45016002022 +n45016002024 +n45016002025 +n45016002026 +n45016003001 +n45016003002 +n45016003003 +n45016003004 +n45016003005 +n45016003006 +n45016003007 +n45016003008 +n45016003009 +n45016003010 +n45016004001 +n45016004002 +n45016004003 +n45016004004 +n45016004005 +n45016004006 +n45016004007 +n45016004008 +n45016004009 +n45016004010 +n45016004014 +n45016004011 +n45016004012 +n45016004013 +n45016004015 +n45016004016 +n45016004017 +n45016004018 +n45016004019 +n45016004020 +n45016004021 +n45016005001 +n45016005002 +n45016005003 +n45016005004 +n45016005005 +n45016005006 +n45016005007 +n45016005008 +n45016005009 +n45016005010 +n45016005011 +n45016005012 +n45016005013 +n45016005014 +n45016005015 +n45016005016 +n45016005017 +n45016005018 +n45016006001 +n45016006002 +n45016006003 +n45016006004 +n45016006005 +n45016006006 +n45016006007 +n45016007001 +n45016007002 +n45016007003 +n45016007004 +n45016007005 +n45016007006 +n45016007007 +n45016007008 +n45016007009 +n45016007010 +n45016007011 +n45016007012 +n45016007013 +n45016007014 +n45016007015 +n45016007016 +n45016007017 +n45016007018 +n45016007019 +n45016007020 +n45016007021 +n45016007022 +n45016007023 +n45016008001 +n45016008002 +n45016008003 +n45016008004 +n45016008005 +n45016008006 +n45016008007 +n45016009001 +n45016009002 +n45016009003 +n45016009004 +n45016009005 +n45016009006 +n45016009007 +n45016009008 +n45016009009 +n45016009010 +n45016009011 +n45016009012 +n45016010001 +n45016010002 +n45016010003 +n45016010004 +n45016010005 +n45016010006 +n45016010007 +n45016010008 +n45016010009 +n45016010010 +n45016010011 +n45016011001 +n45016011002 +n45016011003 +n45016011004 +n45016011005 +n45016011006 +n45016011007 +n45016011008 +n45016011009 +n45016011010 +n45016011011 +n45016011012 +n45016011013 +n45016011014 +n45016012001 +n45016012002 +n45016012003 +n45016012004 +n45016012005 +n45016012006 +n45016012007 +n45016012008 +n45016012009 +n45016012010 +n45016012011 +n45016012012 +n45016012013 +n45016012014 +n45016012015 +n45016012016 +n45016012017 +n45016013001 +n45016013002 +n45016013003 +n45016013004 +n45016013005 +n45016013006 +n45016013007 +n45016013008 +n45016013009 +n45016013010 +n45016013011 +n45016013012 +n45016014001 +n45016014002 +n45016014003 +n45016014004 +n45016014005 +n45016014006 +n45016014007 +n45016014008 +n45016014009 +n45016014010 +n45016014011 +n45016015001 +n45016015002 +n45016015003 +n45016015004 +n45016015005 +n45016015006 +n45016015007 +n45016015008 +n45016015009 +n45016015010 +n45016015011 +n45016015012 +n45016015013 +n45016015014 +n45016015015 +n45016015016 +n45016015017 +n45016016001 +n45016016002 +n45016016003 +n45016016004 +n45016016005 +n45016016006 +n45016016007 +n45016016008 +n45016016009 +n45016016010 +n45016016011 +n45016016012 +n45016017002 +n45016017004 +n45016017001 +n45016017003 +n45016017005 +n45016017006 +n45016017007 +n45016017008 +n45016017009 +n45016017010 +n45016017011 +n45016017012 +n45016017013 +n45016017014 +n45016017015 +n45016017016 +n45016017017 +n45016017018 +n45016017019 +n45016017020 +n45016017021 +n45016017022 +n45016018002 +n45016018001 +n45016018003 +n45016018004 +n45016018005 +n45016018006 +n45016018007 +n45016018008 +n45016018009 +n45016018010 +n45016018011 +n45016018012 +n45016018013 +n45016018014 +n45016018015 +n45016018016 +n45016018017 +n45016018018 +n45016018019 +n45016018020 +n45016018021 +n45016018022 +n45016018023 +n45016018024 +n45016019002 +n45016019001 +n45016019003 +n45016019004 +n45016019005 +n45016019006 +n45016019007 +n45016019010 +n45016019008 +n45016019009 +n45016019011 +n45016019013 +n45016019012 +n45016019014 +n45016019015 +n45016019016 +n45016019017 +n45016019018 +n45016019019 +n45016019021 +n45016019020 +n45016019022 +n45016019023 +n45016019024 +n45016020002 +n45016020001 +n45016020003 +n45016020004 +n45016020005 +n45016020006 +n45016020007 +n45016020008 +n45016020009 +n45016020010 +n45016020011 +n45016020012 +n45016020013 +n45016020014 +n45016020015 +n45016020016 +n45016020017 +n45016020018 +n45016020019 +n45016020020 +n45016020021 +n45016020022 +n45016021001 +n45016021002 +n45016021003 +n45016021004 +n45016021005 +n45016021006 +n45016021007 +n45016021008 +n45016021009 +n45016021010 +n45016021011 +n45016021012 +n45016021013 +n45016021014 +n45016021015 +n45016022001 +n45016022002 +n45016022003 +n45016022004 +n45016022005 +n45016022006 +n45016022007 +n45016022008 +n45016022009 +n45016022010 +n45016023001 +n45016023002 +n45016023003 +n45016023004 +n45016023005 +n45016023006 +n45016023007 +n45016023008 +n45016023009 +n45016023010 +n45016023011 +n45016023012 +n45016023013 +n45016023014 +n45016023015 +n45016023016 +n45016023017 +n45016023018 +n45016023019 +n45016023020 +n45016023021 +n45016025002 +n45016025001 +n45016025003 +n45016025004 +n45016025005 +n45016025006 +n45016025007 +n45016025008 +n45016025009 +n45016025010 +n45016025011 +n45016025012 +n45016025013 +n45016025014 +n45016025015 +n45016025016 +n45016025017 +n45016025018 +n45016025019 +n45016025020 +n45016026002 +n45016026001 +n45016026003 +n45016026005 +n45016026004 +n45016026006 +n45016026007 +n45016026008 +n45016026009 +n45016026010 +n45016026011 +n45016026012 +n45016026013 +n45016026014 +n45016026015 +n45016026016 +n45016026017 +n45016026018 +n45016026019 +n45016026020 +n45016027001 +n45016027002 +n45016027003 +n45016027004 +n45016027005 +n45016027006 +n45016027007 +n45016027008 +n45016027009 +n45016027010 +n45016027011 +n45016027012 +n45016027013 +n45016027014 +n45016027015 +n46001001001 +n46001001002 +n46001001003 +n46001001004 +n46001001005 +n46001001006 +n46001001007 +n46001001008 +n46001001009 +n46001001010 +n46001001011 +n46001001012 +n46001002001 +n46001002002 +n46001002003 +n46001002004 +n46001002005 +n46001002006 +n46001002007 +n46001002008 +n46001002009 +n46001002010 +n46001002011 +n46001002012 +n46001002013 +n46001002014 +n46001002015 +n46001002016 +n46001002017 +n46001002018 +n46001002019 +n46001002020 +n46001002021 +n46001002022 +n46001002023 +n46001002024 +n46001002025 +n46001002026 +n46001002027 +n46001002028 +n46001002029 +n46001002030 +n46001002031 +n46001003002 +n46001003001 +n46001003003 +n46001003004 +n46001003005 +n46001003006 +n46001003007 +n46001003008 +n46001003009 +n46001003010 +n46001003011 +n46001003012 +n46001004001 +n46001004002 +n46001004003 +n46001004004 +n46001004005 +n46001004006 +n46001004007 +n46001004008 +n46001004009 +n46001004010 +n46001004011 +n46001004012 +n46001004013 +n46001004014 +n46001004015 +n46001004016 +n46001004017 +n46001005001 +n46001005002 +n46001005003 +n46001005004 +n46001005005 +n46001005006 +n46001005007 +n46001005008 +n46001005009 +n46001005010 +n46001005011 +n46001005012 +n46001006001 +n46001006002 +n46001006003 +n46001006004 +n46001006005 +n46001006006 +n46001006007 +n46001006008 +n46001007001 +n46001007002 +n46001007003 +n46001007004 +n46001007005 +n46001007006 +n46001007007 +n46001007008 +n46001007009 +n46001007010 +n46001007011 +n46001007012 +n46001007013 +n46001007014 +n46001007015 +n46001008001 +n46001008002 +n46001008003 +n46001008004 +n46001008005 +n46001008006 +n46001008007 +n46001008008 +n46001008009 +n46001008010 +n46001008011 +n46001008012 +n46001008013 +n46001008014 +n46001008015 +n46001009001 +n46001009002 +n46001009003 +n46001009004 +n46001009005 +n46001009006 +n46001009007 +n46001009008 +n46001009009 +n46001009010 +n46001009011 +n46001009012 +n46001009013 +n46001009014 +n46001009015 +n46001009016 +n46001010002 +n46001010004 +n46001010001 +n46001010003 +n46001010005 +n46001010006 +n46001010007 +n46001010008 +n46001010009 +n46001010010 +n46001010011 +n46001010012 +n46001010013 +n46001010014 +n46001010015 +n46001010016 +n46001010017 +n46001010018 +n46001010019 +n46001010020 +n46001010021 +n46001010022 +n46001010023 +n46001010025 +n46001010024 +n46001010026 +n46001010027 +n46001010028 +n46001010029 +n46001010030 +n46001010031 +n46001010032 +n46001010033 +n46001010034 +n46001010035 +n46001011002 +n46001011006 +n46001011007 +n46001011001 +n46001011003 +n46001011004 +n46001011005 +n46001011008 +n46001011009 +n46001011010 +n46001011011 +n46001011012 +n46001011013 +n46001011014 +n46001011015 +n46001012002 +n46001012001 +n46001012003 +n46001012004 +n46001012005 +n46001012006 +n46001012007 +n46001012009 +n46001012008 +n46001012010 +n46001012011 +n46001012013 +n46001012012 +n46001012014 +n46001012016 +n46001012015 +n46001012017 +n46001012019 +n46001012018 +n46001012020 +n46001013001 +n46001013002 +n46001013003 +n46001013004 +n46001013005 +n46001013006 +n46001013007 +n46001013008 +n46001013009 +n46001013010 +n46001013011 +n46001013012 +n46001013013 +n46001013014 +n46001014001 +n46001014002 +n46001014003 +n46001014004 +n46001014005 +n46001014006 +n46001014007 +n46001014008 +n46001014009 +n46001014010 +n46001015001 +n46001015002 +n46001015003 +n46001015004 +n46001015005 +n46001015006 +n46001015007 +n46001015008 +n46001015009 +n46001015010 +n46001016002 +n46001016001 +n46001016003 +n46001016004 +n46001016005 +n46001016006 +n46001016007 +n46001016008 +n46001016009 +n46001016010 +n46001016011 +n46001016012 +n46001016013 +n46001017002 +n46001017003 +n46001017004 +n46001017005 +n46001017001 +n46001017006 +n46001017007 +n46001017008 +n46001017009 +n46001017010 +n46001017011 +n46001017012 +n46001017013 +n46001017014 +n46001017015 +n46001017016 +n46001017017 +n46001017018 +n46001017019 +n46001018003 +n46001018008 +n46001018001 +n46001018002 +n46001018004 +n46001018005 +n46001018006 +n46001018007 +n46001018009 +n46001018010 +n46001018011 +n46001018013 +n46001018012 +n46001018014 +n46001018015 +n46001018016 +n46001018017 +n46001018018 +n46001019002 +n46001019001 +n46001019003 +n46001019004 +n46001019005 +n46001019006 +n46001019007 +n46001019008 +n46001019009 +n46001019010 +n46001019011 +n46001019012 +n46001019013 +n46001020001 +n46001020002 +n46001020003 +n46001020004 +n46001020005 +n46001020006 +n46001020007 +n46001020008 +n46001020009 +n46001020010 +n46001020011 +n46001020012 +n46001020013 +n46001020014 +n46001020015 +n46001020016 +n46001020017 +n46001021002 +n46001021001 +n46001021003 +n46001021004 +n46001021005 +n46001021006 +n46001021007 +n46001021008 +n46001021009 +n46001021010 +n46001021011 +n46001021012 +n46001021013 +n46001021014 +n46001021015 +n46001021016 +n46001021017 +n46001021018 +n46001021019 +n46001021020 +n46001021021 +n46001021022 +n46001021023 +n46001021024 +n46001021025 +n46001021026 +n46001021027 +n46001022001 +n46001022002 +n46001022003 +n46001022004 +n46001022005 +n46001022006 +n46001022007 +n46001022008 +n46001022009 +n46001023002 +n46001023001 +n46001023003 +n46001023004 +n46001023005 +n46001023007 +n46001023006 +n46001023008 +n46001023010 +n46001023009 +n46001023011 +n46001024002 +n46001024001 +n46001024003 +n46001024004 +n46001024006 +n46001024005 +n46001024007 +n46001024008 +n46001024009 +n46001024010 +n46001024011 +n46001024012 +n46001024013 +n46001024014 +n46001025001 +n46001025002 +n46001025003 +n46001025004 +n46001025005 +n46001025006 +n46001025007 +n46001025008 +n46001025009 +n46001025010 +n46001025011 +n46001025012 +n46001025013 +n46001025014 +n46001025015 +n46001025016 +n46001025017 +n46001026002 +n46001026006 +n46001026001 +n46001026003 +n46001026004 +n46001026005 +n46001026007 +n46001026008 +n46001026009 +n46001026010 +n46001026011 +n46001026012 +n46001026013 +n46001026014 +n46001026015 +n46001026016 +n46001026017 +n46001026018 +n46001027001 +n46001027002 +n46001027003 +n46001027004 +n46001027005 +n46001027006 +n46001027007 +n46001027008 +n46001027009 +n46001027010 +n46001027011 +n46001027012 +n46001027013 +n46001027014 +n46001027015 +n46001027016 +n46001027017 +n46001027018 +n46001027019 +n46001027020 +n46001027021 +n46001027022 +n46001027023 +n46001027024 +n46001028001 +n46001028002 +n46001028003 +n46001028004 +n46001028005 +n46001028006 +n46001028007 +n46001028008 +n46001028012 +n46001028013 +n46001028014 +n46001028009 +n46001028010 +n46001028011 +n46001028015 +n46001028016 +n46001028017 +n46001028018 +n46001029001 +n46001029002 +n46001029003 +n46001029004 +n46001029005 +n46001029006 +n46001029007 +n46001029008 +n46001030003 +n46001030001 +n46001030002 +n46001030004 +n46001030005 +n46001030006 +n46001030007 +n46001030008 +n46001030009 +n46001030010 +n46001030012 +n46001030013 +n46001030014 +n46001030011 +n46001030016 +n46001030015 +n46001030017 +n46001030018 +n46001030019 +n46001030020 +n46001031001 +n46001031002 +n46001031003 +n46001031004 +n46001031005 +n46001031006 +n46001031007 +n46001031008 +n46002001005 +n46002001001 +n46002001002 +n46002001003 +n46002001004 +n46002001006 +n46002001007 +n46002001008 +n46002001009 +n46002001010 +n46002001011 +n46002001012 +n46002001013 +n46002001014 +n46002001015 +n46002001016 +n46002001017 +n46002001018 +n46002002002 +n46002002001 +n46002002003 +n46002002004 +n46002002005 +n46002002006 +n46002002007 +n46002002008 +n46002002009 +n46002002010 +n46002002011 +n46002002012 +n46002002013 +n46002002014 +n46002003001 +n46002003002 +n46002003003 +n46002003004 +n46002003005 +n46002003006 +n46002003007 +n46002003008 +n46002003009 +n46002003010 +n46002003011 +n46002003012 +n46002003013 +n46002004001 +n46002004002 +n46002004003 +n46002004004 +n46002004005 +n46002004006 +n46002004007 +n46002004008 +n46002004009 +n46002004010 +n46002004011 +n46002004012 +n46002004013 +n46002004014 +n46002004015 +n46002004016 +n46002004017 +n46002004018 +n46002004019 +n46002005001 +n46002005002 +n46002005003 +n46002005004 +n46002005006 +n46002005005 +n46002005007 +n46002005008 +n46002005009 +n46002005010 +n46002005011 +n46002005012 +n46002005013 +n46002006002 +n46002006001 +n46002006003 +n46002006004 +n46002006005 +n46002006006 +n46002006008 +n46002006009 +n46002006007 +n46002006010 +n46002006011 +n46002006012 +n46002006013 +n46002006014 +n46002006015 +n46002006016 +n46002006017 +n46002006018 +n46002006019 +n46002006020 +n46002007001 +n46002007002 +n46002007003 +n46002007004 +n46002007005 +n46002007006 +n46002007007 +n46002007008 +n46002007009 +n46002007010 +n46002007011 +n46002007012 +n46002007013 +n46002007014 +n46002007015 +n46002007016 +n46002007017 +n46002007018 +n46002008001 +n46002008002 +n46002008003 +n46002008004 +n46002008005 +n46002008006 +n46002008007 +n46002008008 +n46002008010 +n46002008009 +n46002008011 +n46002008013 +n46002008012 +n46002008014 +n46002008015 +n46002008016 +n46002008017 +n46002008018 +n46002009001 +n46002009002 +n46002009003 +n46002009004 +n46002009005 +n46002009006 +n46002009007 +n46002009008 +n46002009009 +n46002009010 +n46002009011 +n46002009012 +n46002009013 +n46002009014 +n46002009015 +n46002009016 +n46002009017 +n46002009018 +n46002009019 +n46002009020 +n46002009021 +n46002009022 +n46002009023 +n46002009024 +n46002010002 +n46002010001 +n46002010003 +n46002010004 +n46002010005 +n46002010006 +n46002010007 +n46002010008 +n46002010010 +n46002010009 +n46002010011 +n46002010012 +n46002010013 +n46002010014 +n46002010015 +n46002010016 +n46002010017 +n46002010018 +n46002011002 +n46002011001 +n46002011004 +n46002011003 +n46002011005 +n46002011006 +n46002011007 +n46002011008 +n46002011009 +n46002011010 +n46002011011 +n46002011012 +n46002011013 +n46002011014 +n46002011015 +n46002011016 +n46002011017 +n46002011018 +n46002011019 +n46002011020 +n46002011021 +n46002011022 +n46002011023 +n46002011024 +n46002011025 +n46002011026 +n46002011027 +n46002011028 +n46002011029 +n46002012002 +n46002012003 +n46002012001 +n46002012004 +n46002012005 +n46002012006 +n46002012007 +n46002012008 +n46002012009 +n46002012010 +n46002012011 +n46002012012 +n46002012013 +n46002012014 +n46002012015 +n46002012016 +n46002012017 +n46002012018 +n46002012019 +n46002012020 +n46002012021 +n46002012022 +n46002012023 +n46002013001 +n46002013002 +n46002013003 +n46002013004 +n46002013005 +n46002013006 +n46002013007 +n46002013008 +n46002013009 +n46002013010 +n46002013011 +n46002013012 +n46002013013 +n46002013014 +n46002013015 +n46002013016 +n46002014002 +n46002014001 +n46002014003 +n46002014004 +n46002014005 +n46002014006 +n46002014007 +n46002014008 +n46002014009 +n46002014010 +n46002014012 +n46002014011 +n46002014013 +n46002014014 +n46002014015 +n46002014016 +n46002014017 +n46002014018 +n46002014019 +n46002014020 +n46002014021 +n46002015002 +n46002015001 +n46002015003 +n46002015004 +n46002015005 +n46002015006 +n46002015008 +n46002015007 +n46002015009 +n46002015010 +n46002015011 +n46002016002 +n46002016001 +n46002016003 +n46002016004 +n46002016005 +n46002016006 +n46002016007 +n46002016008 +n46002016010 +n46002016009 +n46002016011 +n46002016012 +n46002016013 +n46003001002 +n46003001001 +n46003001004 +n46003001003 +n46003001005 +n46003001006 +n46003001007 +n46003001008 +n46003001009 +n46003001010 +n46003001011 +n46003001012 +n46003001013 +n46003001014 +n46003001015 +n46003002001 +n46003002002 +n46003002003 +n46003002004 +n46003002005 +n46003002007 +n46003002006 +n46003002008 +n46003002009 +n46003002010 +n46003002011 +n46003002012 +n46003002013 +n46003003002 +n46003003001 +n46003003003 +n46003003004 +n46003003006 +n46003003005 +n46003003007 +n46003003008 +n46003003009 +n46003003010 +n46003003011 +n46003003012 +n46003003013 +n46003003014 +n46003003015 +n46003003016 +n46003003017 +n46003003018 +n46003004002 +n46003004001 +n46003004006 +n46003004003 +n46003004004 +n46003004005 +n46003004007 +n46003004008 +n46003004010 +n46003004009 +n46003004011 +n46003004012 +n46003004013 +n46003004014 +n46003004015 +n46003005002 +n46003005001 +n46003005003 +n46003005004 +n46003005006 +n46003005005 +n46003005007 +n46003005008 +n46003005009 +n46003005010 +n46003005011 +n46003005012 +n46003005015 +n46003005013 +n46003005014 +n46003005016 +n46003005017 +n46003005018 +n46003006001 +n46003006002 +n46003006003 +n46003006004 +n46003006005 +n46003006006 +n46003006007 +n46003006008 +n46003007001 +n46003007002 +n46003007003 +n46003007004 +n46003007005 +n46003007006 +n46003007007 +n46003007008 +n46003007009 +n46003007010 +n46003007011 +n46003007012 +n46003007013 +n46003008003 +n46003008001 +n46003008002 +n46003008004 +n46003008005 +n46003008006 +n46003008007 +n46003008008 +n46003008010 +n46003008009 +n46003008011 +n46003008012 +n46003008013 +n46003008014 +n46003008015 +n46003008016 +n46003008017 +n46003008018 +n46003009002 +n46003009003 +n46003009001 +n46003009004 +n46003009005 +n46003009006 +n46003009007 +n46003009008 +n46003009009 +n46003010001 +n46003010002 +n46003010003 +n46003010004 +n46003010005 +n46003010006 +n46003010007 +n46003010008 +n46003010009 +n46003010010 +n46003010011 +n46003010012 +n46003010013 +n46003010015 +n46003010014 +n46003010016 +n46003010018 +n46003010017 +n46003010019 +n46003010020 +n46003010021 +n46003011002 +n46003011004 +n46003011005 +n46003011001 +n46003011003 +n46003011006 +n46003011007 +n46003011008 +n46003011009 +n46003011010 +n46003011011 +n46003011012 +n46003011013 +n46003012002 +n46003012001 +n46003012003 +n46003012004 +n46003012005 +n46003012006 +n46003012007 +n46003012008 +n46003012009 +n46003012010 +n46003012011 +n46003012012 +n46003012013 +n46003012014 +n46003013001 +n46003013002 +n46003013003 +n46003013004 +n46003013005 +n46003013007 +n46003013006 +n46003013008 +n46003013009 +n46003013010 +n46003013011 +n46003013012 +n46003013013 +n46003013014 +n46003013015 +n46003013016 +n46003013017 +n46003013018 +n46003013019 +n46003013020 +n46003013021 +n46003013022 +n46003013023 +n46003014001 +n46003014005 +n46003014002 +n46003014003 +n46003014004 +n46003014006 +n46003014007 +n46003014008 +n46003014009 +n46003015001 +n46003015002 +n46003015003 +n46003015004 +n46003015005 +n46003015006 +n46003015008 +n46003015007 +n46003015009 +n46003015011 +n46003015012 +n46003015010 +n46003015013 +n46003015014 +n46003016001 +n46003016002 +n46003016003 +n46003016004 +n46003016005 +n46003016006 +n46003016007 +n46003016008 +n46003016009 +n46003016010 +n46003016011 +n46003016012 +n46003016013 +n46003016014 +n46003017001 +n46003017002 +n46003017003 +n46003017004 +n46003017005 +n46003017006 +n46003017007 +n46003017008 +n46003017009 +n46003017010 +n46003017011 +n46003017013 +n46003017012 +n46003017014 +n46003017015 +n46003017016 +n46003017017 +n46003017018 +n46003017019 +n46003017020 +n46003017021 +n46003018001 +n46003018002 +n46003018003 +n46003018004 +n46003018005 +n46003018006 +n46003018007 +n46003018008 +n46003018009 +n46003018010 +n46003018011 +n46003018012 +n46003018013 +n46003018014 +n46003018015 +n46003018016 +n46003018017 +n46003018018 +n46003018019 +n46003019002 +n46003019001 +n46003019003 +n46003019004 +n46003019005 +n46003019006 +n46003019007 +n46003019008 +n46003019009 +n46003019010 +n46003019011 +n46003019013 +n46003019012 +n46003019014 +n46003019015 +n46003019016 +n46003019017 +n46003019018 +n46003019019 +n46003019020 +n46003019021 +n46003020001 +n46003020002 +n46003020003 +n46003020004 +n46003020005 +n46003020006 +n46003020007 +n46003020008 +n46003020009 +n46003020010 +n46003020011 +n46003021001 +n46003021002 +n46003021003 +n46003021004 +n46003021005 +n46003021007 +n46003021006 +n46003021008 +n46003021009 +n46003022001 +n46003022002 +n46003022003 +n46003022004 +n46003022005 +n46003022006 +n46003022007 +n46003022008 +n46003022009 +n46003022010 +n46003022011 +n46003022012 +n46003022013 +n46003022014 +n46003022015 +n46003022016 +n46003022017 +n46003022018 +n46003023002 +n46003023001 +n46003023003 +n46003023005 +n46003023004 +n46003023006 +n46004001001 +n46004001002 +n46004001003 +n46004001004 +n46004001005 +n46004001006 +n46004001007 +n46004001008 +n46004001009 +n46004001010 +n46004001011 +n46004002001 +n46004002002 +n46004002003 +n46004002004 +n46004002005 +n46004002006 +n46004002007 +n46004002008 +n46004002009 +n46004002010 +n46004003002 +n46004003001 +n46004003003 +n46004003004 +n46004003005 +n46004003006 +n46004003009 +n46004003007 +n46004003008 +n46004003010 +n46004003011 +n46004003012 +n46004003013 +n46004003014 +n46004003015 +n46004003016 +n46004003017 +n46004004002 +n46004004001 +n46004004003 +n46004004004 +n46004004005 +n46004004006 +n46004004007 +n46004004008 +n46004004009 +n46004004011 +n46004004010 +n46004004012 +n46004004013 +n46004004014 +n46004004015 +n46004005001 +n46004005002 +n46004005003 +n46004005004 +n46004005005 +n46004005006 +n46004005007 +n46004005008 +n46004005009 +n46004005010 +n46004005011 +n46004005012 +n46004005013 +n46004005014 +n46004005015 +n46004005016 +n46004005017 +n46004005018 +n46004005019 +n46004005020 +n46004005021 +n46004005022 +n46004005023 +n46004005024 +n46004005025 +n46004005026 +n46004005027 +n46004005028 +n46004005029 +n46004005030 +n46004005031 +n46004005032 +n46004005033 +n46004006002 +n46004006003 +n46004006001 +n46004006004 +n46004006005 +n46004006006 +n46004006007 +n46004006008 +n46004006009 +n46004006010 +n46004006011 +n46004006012 +n46004006013 +n46004006014 +n46004006015 +n46004006016 +n46004006017 +n46004006018 +n46004006019 +n46004006020 +n46004006021 +n46004006022 +n46004006023 +n46004006024 +n46004006025 +n46004006026 +n46004006027 +n46004006028 +n46004006029 +n46004007002 +n46004007001 +n46004007003 +n46004007004 +n46004007006 +n46004007007 +n46004007005 +n46004007008 +n46004007009 +n46004007010 +n46004007012 +n46004007011 +n46004007013 +n46004007014 +n46004007015 +n46004007016 +n46004007017 +n46004007018 +n46004007019 +n46004008001 +n46004008002 +n46004008003 +n46004008004 +n46004008005 +n46004008006 +n46004008007 +n46004008008 +n46004008009 +n46004008010 +n46004008011 +n46004008012 +n46004008013 +n46004008014 +n46004008015 +n46004008016 +n46004008017 +n46004009002 +n46004009001 +n46004009003 +n46004009004 +n46004009005 +n46004009006 +n46004009007 +n46004009008 +n46004009009 +n46004009010 +n46004009011 +n46004009012 +n46004009013 +n46004009014 +n46004009015 +n46004009016 +n46004009017 +n46004009018 +n46004009019 +n46004009020 +n46004010001 +n46004010002 +n46004010003 +n46004010004 +n46004010006 +n46004010005 +n46004010007 +n46004010008 +n46004010009 +n46004010010 +n46004010011 +n46004010013 +n46004010012 +n46004010014 +n46004010015 +n46004010016 +n46004010018 +n46004010017 +n46004010019 +n46004011001 +n46004011002 +n46004011003 +n46004011004 +n46004011005 +n46004011006 +n46004011007 +n46004011008 +n46004011009 +n46004011010 +n46004011011 +n46004011012 +n46004011013 +n46004011014 +n46004012001 +n46004012002 +n46004012003 +n46004012004 +n46004012005 +n46004012006 +n46004012007 +n46004012008 +n46004012009 +n46004012010 +n46004013001 +n46004013002 +n46004013003 +n46004013004 +n46004013005 +n46004013006 +n46004013008 +n46004013009 +n46004013007 +n46004013010 +n46004013011 +n46004014001 +n46004014002 +n46004014003 +n46004014004 +n46004014005 +n46004014006 +n46004014007 +n46004014008 +n46004014009 +n46004014010 +n46004014011 +n46004015002 +n46004015001 +n46004015003 +n46004015004 +n46004015005 +n46004015006 +n46004015007 +n46004015008 +n46004015009 +n46004015010 +n46004015011 +n46004015013 +n46004015012 +n46004015014 +n46004015015 +n46004015016 +n46004015017 +n46004015018 +n46004015019 +n46004015020 +n46004015021 +n46004016002 +n46004016001 +n46004016003 +n46004016004 +n46004016005 +n46004016006 +n46004017001 +n46004017002 +n46004017003 +n46004017004 +n46004017005 +n46004017006 +n46004017007 +n46004017008 +n46004017009 +n46004017010 +n46004017011 +n46004017012 +n46004017013 +n46004017014 +n46004017015 +n46004017016 +n46004017017 +n46004017018 +n46004017019 +n46004017020 +n46004017021 +n46004017022 +n46004017023 +n46004017024 +n46004017025 +n46004017026 +n46004017027 +n46004017028 +n46004017029 +n46004017030 +n46004017031 +n46004018004 +n46004018001 +n46004018002 +n46004018003 +n46004018005 +n46004018006 +n46004018007 +n46004018008 +n46004018009 +n46004019002 +n46004019001 +n46004019003 +n46004019004 +n46004019005 +n46004019006 +n46004019007 +n46004019008 +n46004019009 +n46004019010 +n46004019011 +n46004019012 +n46004019013 +n46004019014 +n46004019015 +n46004019016 +n46004019017 +n46004019018 +n46004019019 +n46004020002 +n46004020001 +n46004020003 +n46004020004 +n46004020005 +n46004020006 +n46004020007 +n46004020008 +n46004020009 +n46004020010 +n46004020011 +n46004021001 +n46004021002 +n46004021003 +n46004021004 +n46004021005 +n46004021006 +n46004021007 +n46004021008 +n46004021009 +n46004021010 +n46004021012 +n46004021011 +n46004021013 +n46005001001 +n46005001002 +n46005001003 +n46005001004 +n46005001005 +n46005001006 +n46005001007 +n46005001008 +n46005001009 +n46005001010 +n46005001011 +n46005001012 +n46005001013 +n46005001014 +n46005001016 +n46005001015 +n46005001017 +n46005001018 +n46005001019 +n46005002001 +n46005002002 +n46005002003 +n46005002004 +n46005002005 +n46005002006 +n46005002007 +n46005002008 +n46005002009 +n46005002010 +n46005002011 +n46005002012 +n46005002013 +n46005002014 +n46005002015 +n46005002016 +n46005002017 +n46005002018 +n46005003003 +n46005003001 +n46005003002 +n46005003004 +n46005003005 +n46005003006 +n46005003008 +n46005003007 +n46005003009 +n46005003010 +n46005003011 +n46005003012 +n46005003013 +n46005003014 +n46005003015 +n46005003016 +n46005003017 +n46005003018 +n46005004001 +n46005004002 +n46005004003 +n46005004004 +n46005004005 +n46005004006 +n46005004007 +n46005004008 +n46005004009 +n46005004010 +n46005004011 +n46005004012 +n46005004013 +n46005004014 +n46005004015 +n46005004016 +n46005004017 +n46005004018 +n46005004019 +n46005005001 +n46005005002 +n46005005003 +n46005005004 +n46005005005 +n46005005006 +n46005005007 +n46005005008 +n46005005009 +n46005005010 +n46005005011 +n46005005012 +n46005005013 +n46005005014 +n46005005015 +n46005005016 +n46005005017 +n46005005018 +n46005006001 +n46005006002 +n46005006003 +n46005006004 +n46005006005 +n46005006006 +n46005006007 +n46005006008 +n46005006009 +n46005006010 +n46005006011 +n46005006012 +n46005006013 +n46005006014 +n46005007001 +n46005007002 +n46005007003 +n46005007004 +n46005007005 +n46005007006 +n46005007007 +n46005007008 +n46005007009 +n46005007010 +n46005007011 +n46005007013 +n46005007012 +n46005007014 +n46005007015 +n46005007016 +n46005007018 +n46005007017 +n46005008001 +n46005008002 +n46005008003 +n46005008004 +n46005008005 +n46005008006 +n46005008007 +n46005008008 +n46005008009 +n46005008010 +n46005008011 +n46005008012 +n46005008013 +n46005008014 +n46005008015 +n46005008016 +n46005008017 +n46005008018 +n46005009001 +n46005009002 +n46005009003 +n46005009004 +n46005009005 +n46005009006 +n46005009007 +n46005009008 +n46005010001 +n46005010002 +n46005010003 +n46005010004 +n46005010005 +n46005010006 +n46005010007 +n46005010008 +n46005010009 +n46005010010 +n46005010011 +n46005010012 +n46005010013 +n46005010014 +n46005010015 +n46005010017 +n46005010016 +n46005010018 +n46005010019 +n46005010020 +n46005010021 +n46005011002 +n46005011001 +n46005011003 +n46005011004 +n46005011005 +n46005011006 +n46005011007 +n46005011008 +n46005011009 +n46005011010 +n46005011011 +n46005011012 +n46005011013 +n46005011014 +n46005011015 +n46005011016 +n46005011017 +n46005011018 +n46005011019 +n46005011020 +n46005011021 +n46005011022 +n46005011023 +n46005011024 +n46005011025 +n46005011026 +n46005012002 +n46005012001 +n46005012003 +n46005012004 +n46005012005 +n46005012006 +n46005012007 +n46005012008 +n46005012009 +n46005012010 +n46005012011 +n46005013002 +n46005013001 +n46005013003 +n46005013004 +n46005013005 +n46005013006 +n46005013007 +n46005013008 +n46005013009 +n46005013010 +n46005013011 +n46005013012 +n46006001001 +n46006001002 +n46006001003 +n46006001004 +n46006001005 +n46006001006 +n46006001007 +n46006001008 +n46006001009 +n46006001010 +n46006001011 +n46006001012 +n46006001013 +n46006001014 +n46006001015 +n46006001016 +n46006001017 +n46006002001 +n46006002002 +n46006002003 +n46006002004 +n46006002005 +n46006002006 +n46006002007 +n46006002008 +n46006002009 +n46006002010 +n46006002011 +n46006002012 +n46006002013 +n46006002014 +n46006002015 +n46006002016 +n46006002017 +n46006002018 +n46006002019 +n46006002020 +n46006003001 +n46006003002 +n46006003003 +n46006003004 +n46006003005 +n46006003006 +n46006003007 +n46006004002 +n46006004003 +n46006004005 +n46006004001 +n46006004004 +n46006004006 +n46006004007 +n46006004008 +n46006004009 +n46006004010 +n46006004011 +n46006004012 +n46006004013 +n46006005001 +n46006005002 +n46006005003 +n46006005004 +n46006005006 +n46006005005 +n46006005007 +n46006005008 +n46006005009 +n46006005010 +n46006005011 +n46006005012 +n46006005013 +n46006005014 +n46006005015 +n46006005016 +n46006005017 +n46006005018 +n46006005019 +n46006006001 +n46006006002 +n46006006003 +n46006006004 +n46006006005 +n46006006006 +n46006006007 +n46006006008 +n46006006009 +n46006007002 +n46006007003 +n46006007001 +n46006007004 +n46006007005 +n46006007006 +n46006007007 +n46006007008 +n46006007009 +n46006007010 +n46006007011 +n46006007012 +n46006007013 +n46006007014 +n46006007015 +n46006007016 +n46006007017 +n46006007018 +n46006007019 +n46006007020 +n46006007021 +n46006007022 +n46006008001 +n46006008002 +n46006008003 +n46006008004 +n46006008005 +n46006008006 +n46006008007 +n46006008008 +n46006009001 +n46006009002 +n46006009003 +n46006009004 +n46006009005 +n46006009006 +n46006009007 +n46006009008 +n46006009009 +n46006009010 +n46006009011 +n46006009012 +n46006009013 +n46006009014 +n46006009015 +n46006009016 +n46006009017 +n46006009018 +n46006009019 +n46006009020 +n46006009021 +n46006010001 +n46006010002 +n46006010003 +n46006010004 +n46006010005 +n46006010006 +n46006010007 +n46006010008 +n46006010009 +n46006010010 +n46006010011 +n46006010012 +n46006010013 +n46006011001 +n46006011002 +n46006011003 +n46006011004 +n46006011005 +n46006011006 +n46006011007 +n46006011008 +n46006011009 +n46006011010 +n46006011011 +n46006011012 +n46006011013 +n46006011014 +n46006011015 +n46006011016 +n46006011017 +n46006011018 +n46006011019 +n46006011020 +n46006011021 +n46006011022 +n46006011023 +n46006011024 +n46006012001 +n46006012002 +n46006012003 +n46006012004 +n46006012005 +n46006012006 +n46006012007 +n46006012008 +n46006012009 +n46006012010 +n46006012011 +n46006012012 +n46006012013 +n46006012014 +n46006012015 +n46006012016 +n46006013001 +n46006013002 +n46006013003 +n46006013004 +n46006013005 +n46006013006 +n46006013007 +n46006013008 +n46006013009 +n46006013011 +n46006013010 +n46006013012 +n46006013013 +n46006013014 +n46006013015 +n46006013016 +n46006013017 +n46006013019 +n46006013018 +n46006013020 +n46006013021 +n46006013022 +n46006013023 +n46006013024 +n46006013025 +n46006013026 +n46006013027 +n46006013028 +n46006013029 +n46006013030 +n46006013031 +n46006014002 +n46006014001 +n46006014003 +n46006014004 +n46006014005 +n46006014006 +n46006014007 +n46006014008 +n46006014009 +n46006014010 +n46006014011 +n46006014012 +n46006014013 +n46006014014 +n46006015001 +n46006015002 +n46006015003 +n46006015004 +n46006015005 +n46006015006 +n46006015007 +n46006015008 +n46006015009 +n46006015011 +n46006015010 +n46006015012 +n46006015013 +n46006015014 +n46006015015 +n46006015016 +n46006015017 +n46006015018 +n46006015019 +n46006015020 +n46006016001 +n46006016002 +n46006016003 +n46006016004 +n46006016005 +n46006016006 +n46006016007 +n46006016008 +n46006016009 +n46006016010 +n46006016011 +n46006016013 +n46006016014 +n46006016012 +n46006016015 +n46006016016 +n46006016017 +n46006016018 +n46006016019 +n46006017002 +n46006017001 +n46006017003 +n46006017004 +n46006017005 +n46006017006 +n46006017007 +n46006017008 +n46006018001 +n46006018002 +n46006018003 +n46006018004 +n46006018005 +n46006018007 +n46006018006 +n46006018008 +n46006018009 +n46006018010 +n46006018011 +n46006018012 +n46006018013 +n46006018015 +n46006018014 +n46006018016 +n46006018017 +n46006018018 +n46006018019 +n46006018020 +n46006018021 +n46006019001 +n46006019002 +n46006019003 +n46006019004 +n46006019005 +n46006019006 +n46006019007 +n46006019008 +n46006019009 +n46006019010 +n46006019011 +n46006019012 +n46006019013 +n46006019014 +n46006019015 +n46006019016 +n46006019017 +n46006019018 +n46006019019 +n46006019020 +n46006019021 +n46006019022 +n46006020002 +n46006020001 +n46006020003 +n46006020005 +n46006020004 +n46006020006 +n46006020007 +n46006020008 +n46006020009 +n46006020010 +n46006020011 +n46007001002 +n46007001001 +n46007001003 +n46007001004 +n46007001005 +n46007001006 +n46007001007 +n46007001008 +n46007001009 +n46007002002 +n46007002001 +n46007002003 +n46007002004 +n46007002005 +n46007002006 +n46007002007 +n46007002008 +n46007002009 +n46007002010 +n46007002011 +n46007002012 +n46007002013 +n46007002014 +n46007002015 +n46007003001 +n46007003002 +n46007003003 +n46007003004 +n46007003005 +n46007003006 +n46007003007 +n46007003009 +n46007003008 +n46007003010 +n46007003011 +n46007003012 +n46007003013 +n46007003014 +n46007004001 +n46007004002 +n46007004003 +n46007004004 +n46007004005 +n46007004006 +n46007004007 +n46007004008 +n46007004009 +n46007004010 +n46007004012 +n46007004011 +n46007004013 +n46007004014 +n46007004015 +n46007004016 +n46007004017 +n46007004018 +n46007004019 +n46007004020 +n46007004021 +n46007004022 +n46007004023 +n46007005001 +n46007005002 +n46007005003 +n46007005004 +n46007005005 +n46007005006 +n46007005007 +n46007005008 +n46007005009 +n46007005010 +n46007005011 +n46007005012 +n46007005013 +n46007005014 +n46007005015 +n46007005016 +n46007005017 +n46007005018 +n46007005019 +n46007005020 +n46007005021 +n46007005022 +n46007005023 +n46007005024 +n46007005025 +n46007005026 +n46007005027 +n46007005028 +n46007005029 +n46007005030 +n46007006002 +n46007006001 +n46007006003 +n46007006004 +n46007006005 +n46007006006 +n46007006007 +n46007006008 +n46007007002 +n46007007001 +n46007007003 +n46007007004 +n46007007005 +n46007007006 +n46007007007 +n46007007008 +n46007007009 +n46007007010 +n46007007012 +n46007007011 +n46007007013 +n46007007014 +n46007007015 +n46007007017 +n46007007016 +n46007007018 +n46007007020 +n46007007019 +n46007007021 +n46007008002 +n46007008001 +n46007008003 +n46007008004 +n46007008005 +n46007008006 +n46007008007 +n46007008008 +n46007008009 +n46007008010 +n46007008011 +n46007008012 +n46007008013 +n46007009002 +n46007009001 +n46007009003 +n46007009004 +n46007009005 +n46007009007 +n46007009006 +n46007009008 +n46007009009 +n46007009010 +n46007009011 +n46007010002 +n46007010001 +n46007010003 +n46007010004 +n46007010005 +n46007010006 +n46007010007 +n46007010008 +n46007010009 +n46007010010 +n46007010011 +n46007010012 +n46007010013 +n46007010014 +n46007011002 +n46007011001 +n46007011003 +n46007011004 +n46007011005 +n46007011006 +n46007011007 +n46007011008 +n46007011009 +n46007011010 +n46007011011 +n46007011012 +n46007011013 +n46007011014 +n46007011015 +n46007012002 +n46007012001 +n46007012003 +n46007012004 +n46007012005 +n46007012006 +n46007012007 +n46007012008 +n46007012009 +n46007012010 +n46007012011 +n46007012013 +n46007012012 +n46007012014 +n46007012015 +n46007012016 +n46007012017 +n46007012018 +n46007012019 +n46007012020 +n46007012021 +n46007012022 +n46007012023 +n46007013001 +n46007013002 +n46007013003 +n46007013004 +n46007013005 +n46007013006 +n46007013007 +n46007013008 +n46007013009 +n46007013010 +n46007013011 +n46007013012 +n46007013013 +n46007013014 +n46007013015 +n46007013016 +n46007014002 +n46007014001 +n46007014003 +n46007014004 +n46007014005 +n46007014006 +n46007014007 +n46007014008 +n46007014009 +n46007014010 +n46007014011 +n46007014012 +n46007014013 +n46007014014 +n46007014015 +n46007014016 +n46007014017 +n46007014018 +n46007014020 +n46007014019 +n46007014021 +n46007014022 +n46007014023 +n46007014024 +n46007014025 +n46007014027 +n46007014026 +n46007014028 +n46007014029 +n46007015002 +n46007015001 +n46007015003 +n46007015004 +n46007015005 +n46007015006 +n46007015007 +n46007015008 +n46007015009 +n46007015010 +n46007015011 +n46007015012 +n46007015013 +n46007015014 +n46007015015 +n46007015016 +n46007015018 +n46007015017 +n46007015019 +n46007015020 +n46007015021 +n46007015022 +n46007015023 +n46007016002 +n46007016004 +n46007016001 +n46007016003 +n46007016005 +n46007016006 +n46007016007 +n46007016008 +n46007016009 +n46007016012 +n46007016010 +n46007016011 +n46007016013 +n46007016014 +n46007016015 +n46007016016 +n46007017001 +n46007017002 +n46007017004 +n46007017003 +n46007017005 +n46007017006 +n46007017007 +n46007017009 +n46007017008 +n46007017010 +n46007017011 +n46007017012 +n46007017013 +n46007017014 +n46007017015 +n46007017016 +n46007017017 +n46007017018 +n46007017019 +n46007017020 +n46007017021 +n46007018001 +n46007018002 +n46007018003 +n46007018004 +n46007018005 +n46007018006 +n46007018007 +n46007018008 +n46007018009 +n46007018010 +n46007018011 +n46007019001 +n46007019002 +n46007019003 +n46007019004 +n46007019005 +n46007019006 +n46007019007 +n46007019008 +n46007019009 +n46007019010 +n46007019011 +n46007019012 +n46007019013 +n46007020001 +n46007020002 +n46007020003 +n46007020004 +n46007020005 +n46007020006 +n46007020007 +n46007020008 +n46007020009 +n46007021001 +n46007021002 +n46007021003 +n46007021004 +n46007021005 +n46007021006 +n46007021007 +n46007021008 +n46007021009 +n46007021010 +n46007021011 +n46007021012 +n46007021013 +n46007022002 +n46007022001 +n46007022003 +n46007022004 +n46007022005 +n46007022006 +n46007022007 +n46007022008 +n46007022009 +n46007022010 +n46007022011 +n46007022012 +n46007022013 +n46007022015 +n46007022014 +n46007022016 +n46007023001 +n46007023002 +n46007023003 +n46007023004 +n46007023005 +n46007023006 +n46007024005 +n46007024001 +n46007024002 +n46007024003 +n46007024004 +n46007024006 +n46007024007 +n46007024008 +n46007024009 +n46007024010 +n46007025002 +n46007025001 +n46007025003 +n46007025004 +n46007025005 +n46007025006 +n46007025007 +n46007025008 +n46007025010 +n46007025009 +n46007025011 +n46007025012 +n46007025013 +n46007025014 +n46007025015 +n46007025016 +n46007025017 +n46007026002 +n46007026001 +n46007026003 +n46007026004 +n46007026005 +n46007026006 +n46007026007 +n46007026008 +n46007026009 +n46007026010 +n46007026011 +n46007026012 +n46007026013 +n46007026014 +n46007026015 +n46007027001 +n46007027002 +n46007027003 +n46007027004 +n46007027005 +n46007027006 +n46007027007 +n46007027008 +n46007027009 +n46007027010 +n46007027011 +n46007028002 +n46007028001 +n46007028003 +n46007028004 +n46007028005 +n46007028006 +n46007028007 +n46007028008 +n46007028009 +n46007028010 +n46007028011 +n46007028012 +n46007028013 +n46007028015 +n46007028014 +n46007028016 +n46007028017 +n46007028018 +n46007028019 +n46007028020 +n46007028022 +n46007028021 +n46007028023 +n46007028024 +n46007029002 +n46007029004 +n46007029001 +n46007029003 +n46007029005 +n46007029006 +n46007029007 +n46007029008 +n46007029009 +n46007029010 +n46007029011 +n46007029012 +n46007029013 +n46007029014 +n46007029015 +n46007029016 +n46007029017 +n46007029018 +n46007029019 +n46007030001 +n46007030002 +n46007030003 +n46007030004 +n46007030005 +n46007030006 +n46007030007 +n46007030008 +n46007030009 +n46007030010 +n46007030011 +n46007030012 +n46007030013 +n46007030014 +n46007030015 +n46007030016 +n46007030017 +n46007030018 +n46007031001 +n46007031002 +n46007031003 +n46007031004 +n46007031005 +n46007031006 +n46007031007 +n46007031008 +n46007031010 +n46007031009 +n46007031011 +n46007031012 +n46007031013 +n46007031014 +n46007031015 +n46007032002 +n46007032001 +n46007032003 +n46007032004 +n46007032005 +n46007032006 +n46007032007 +n46007032008 +n46007032009 +n46007032010 +n46007032011 +n46007032012 +n46007032013 +n46007032014 +n46007032015 +n46007033002 +n46007033001 +n46007033003 +n46007033004 +n46007033005 +n46007033006 +n46007033007 +n46007033008 +n46007033009 +n46007033010 +n46007033011 +n46007034001 +n46007034002 +n46007034003 +n46007034004 +n46007034005 +n46007034006 +n46007034007 +n46007034008 +n46007034009 +n46007034010 +n46007034011 +n46007034012 +n46007034013 +n46007034014 +n46007034015 +n46007034016 +n46007034017 +n46007034018 +n46007034019 +n46007034020 +n46007034021 +n46007034022 +n46007034023 +n46007034025 +n46007034024 +n46007034026 +n46007034027 +n46007034028 +n46007034029 +n46007034030 +n46007034031 +n46007034032 +n46007034033 +n46007034034 +n46007035002 +n46007035001 +n46007035003 +n46007035004 +n46007035005 +n46007035006 +n46007035007 +n46007035008 +n46007035009 +n46007035010 +n46007035011 +n46007035012 +n46007035013 +n46007035014 +n46007035015 +n46007035016 +n46007035017 +n46007035018 +n46007035019 +n46007035020 +n46007035021 +n46007035022 +n46007036002 +n46007036001 +n46007036003 +n46007036004 +n46007036005 +n46007036006 +n46007036007 +n46007036008 +n46007036009 +n46007036010 +n46007036011 +n46007036012 +n46007036013 +n46007036014 +n46007036015 +n46007036016 +n46007036017 +n46007036018 +n46007036019 +n46007036020 +n46007036021 +n46007036022 +n46007037002 +n46007037001 +n46007037003 +n46007037004 +n46007037005 +n46007037006 +n46007037007 +n46007037008 +n46007037009 +n46007037010 +n46007037011 +n46007037013 +n46007037012 +n46007037014 +n46007037015 +n46007037016 +n46007037017 +n46007037018 +n46007037019 +n46007037020 +n46007037021 +n46007037022 +n46007037023 +n46007037024 +n46007037025 +n46007037026 +n46007037027 +n46007037028 +n46007037029 +n46007037030 +n46007037031 +n46007038001 +n46007038002 +n46007038003 +n46007038004 +n46007038005 +n46007038006 +n46007038007 +n46007038008 +n46007038009 +n46007038010 +n46007038011 +n46007038012 +n46007038013 +n46007038014 +n46007038015 +n46007039001 +n46007039002 +n46007039003 +n46007039004 +n46007039005 +n46007039006 +n46007039007 +n46007039008 +n46007039009 +n46007039011 +n46007039010 +n46007039012 +n46007039013 +n46007039014 +n46007039015 +n46007039016 +n46007039017 +n46007039018 +n46007039019 +n46007039020 +n46007039021 +n46007039022 +n46007040002 +n46007040001 +n46007040003 +n46007040004 +n46007040005 +n46007040006 +n46007040007 +n46007040008 +n46007040009 +n46007040010 +n46007040012 +n46007040011 +n46007040013 +n46007040014 +n46007040015 +n46007040016 +n46008001002 +n46008001001 +n46008001003 +n46008001004 +n46008001005 +n46008001006 +n46008001007 +n46008001008 +n46008001009 +n46008001010 +n46008001011 +n46008001012 +n46008001014 +n46008001013 +n46008001015 +n46008001016 +n46008002001 +n46008002002 +n46008002003 +n46008002004 +n46008002005 +n46008002006 +n46008002007 +n46008002008 +n46008002009 +n46008002010 +n46008003002 +n46008003001 +n46008003003 +n46008003004 +n46008003005 +n46008003006 +n46008003007 +n46008003008 +n46008003009 +n46008003010 +n46008004004 +n46008004001 +n46008004002 +n46008004003 +n46008004005 +n46008004006 +n46008004007 +n46008004008 +n46008004009 +n46008004010 +n46008004011 +n46008004012 +n46008004013 +n46008004014 +n46008004015 +n46008004016 +n46008004017 +n46008004018 +n46008004019 +n46008005002 +n46008005003 +n46008005001 +n46008005004 +n46008005005 +n46008005006 +n46008005007 +n46008005008 +n46008005009 +n46008005010 +n46008005011 +n46008005012 +n46008005013 +n46008005014 +n46008005015 +n46008005016 +n46008005017 +n46008005018 +n46008005019 +n46008006001 +n46008006002 +n46008006003 +n46008006004 +n46008006005 +n46008006006 +n46008006007 +n46008006008 +n46008006009 +n46008006010 +n46008006011 +n46008006012 +n46008006013 +n46008006014 +n46008006015 +n46008006016 +n46008006017 +n46008006018 +n46008006019 +n46008006020 +n46008006021 +n46008006022 +n46008006023 +n46008006024 +n46008006025 +n46008006026 +n46008006027 +n46008007001 +n46008007002 +n46008007003 +n46008007004 +n46008007005 +n46008007006 +n46008007008 +n46008007007 +n46008007009 +n46008007010 +n46008007011 +n46008007012 +n46008007013 +n46008007014 +n46008007015 +n46008007016 +n46008007017 +n46008007018 +n46008007019 +n46008007020 +n46008007021 +n46008007022 +n46008007023 +n46008007024 +n46008008002 +n46008008001 +n46008008003 +n46008008004 +n46008008005 +n46008008006 +n46008008007 +n46008008008 +n46008008009 +n46008008010 +n46008008011 +n46008008012 +n46008008013 +n46008008014 +n46008008015 +n46008008016 +n46008009002 +n46008009001 +n46008009003 +n46008009004 +n46008009005 +n46008009006 +n46008009007 +n46008009008 +n46008009009 +n46008009010 +n46008009011 +n46008009012 +n46008010002 +n46008010001 +n46008010003 +n46008010004 +n46008010005 +n46008010006 +n46008010007 +n46008010008 +n46008010009 +n46008010010 +n46008010011 +n46008010012 +n46008010013 +n46008010014 +n46008010015 +n46008010016 +n46008010017 +n46008010018 +n46008010019 +n46008010020 +n46008010021 +n46008010022 +n46008010023 +n46008011002 +n46008011001 +n46008011005 +n46008011006 +n46008011007 +n46008011008 +n46008011003 +n46008011004 +n46008011009 +n46008011010 +n46008011011 +n46008011012 +n46008011013 +n46008011014 +n46008012002 +n46008012001 +n46008012003 +n46008012004 +n46008012005 +n46008012006 +n46008012007 +n46008012008 +n46008012009 +n46008012010 +n46008012011 +n46008012012 +n46008012013 +n46008012014 +n46008012015 +n46008013001 +n46008013002 +n46008013003 +n46008013004 +n46008013005 +n46008013006 +n46008013007 +n46008013008 +n46008013009 +n46008013010 +n46008013011 +n46008013012 +n46008013013 +n46008013014 +n46008013015 +n46008013016 +n46008013017 +n46008013018 +n46008013019 +n46008013020 +n46009001001 +n46009001002 +n46009001003 +n46009001004 +n46009001005 +n46009001006 +n46009001007 +n46009001008 +n46009001009 +n46009001010 +n46009001011 +n46009001012 +n46009001013 +n46009001014 +n46009001015 +n46009001016 +n46009001017 +n46009001018 +n46009001019 +n46009001020 +n46009002001 +n46009002002 +n46009002003 +n46009002004 +n46009002005 +n46009002006 +n46009002007 +n46009002008 +n46009002009 +n46009002011 +n46009002010 +n46009002012 +n46009002013 +n46009002014 +n46009002015 +n46009002016 +n46009002017 +n46009002018 +n46009002019 +n46009003001 +n46009003002 +n46009003003 +n46009003004 +n46009003005 +n46009003006 +n46009003007 +n46009003008 +n46009004001 +n46009004002 +n46009004003 +n46009004004 +n46009004005 +n46009004006 +n46009004007 +n46009005001 +n46009005002 +n46009005003 +n46009005004 +n46009005005 +n46009005006 +n46009005007 +n46009005008 +n46009005009 +n46009005010 +n46009005011 +n46009005012 +n46009005013 +n46009005014 +n46009005015 +n46009005016 +n46009005017 +n46009005018 +n46009005019 +n46009006001 +n46009006002 +n46009006003 +n46009006004 +n46009006005 +n46009006006 +n46009006007 +n46009006008 +n46009006009 +n46009006010 +n46009007001 +n46009007002 +n46009007003 +n46009007004 +n46009007005 +n46009007006 +n46009007007 +n46009007008 +n46009007009 +n46009007010 +n46009007011 +n46009007012 +n46009007013 +n46009007014 +n46009007015 +n46009007016 +n46009007017 +n46009007018 +n46009007019 +n46009007020 +n46009007021 +n46009007022 +n46009007023 +n46009007024 +n46009007025 +n46009007026 +n46009008001 +n46009008002 +n46009008003 +n46009008004 +n46009008005 +n46009008006 +n46009008007 +n46009008008 +n46009008009 +n46009008010 +n46009008011 +n46009008012 +n46009009002 +n46009009001 +n46009009003 +n46009009004 +n46009009005 +n46009009006 +n46009009007 +n46009009008 +n46009009009 +n46009009010 +n46009009011 +n46009009012 +n46009009013 +n46009009014 +n46009009015 +n46009009016 +n46009010001 +n46009010002 +n46009010003 +n46009010004 +n46009010005 +n46009010008 +n46009010006 +n46009010007 +n46009010009 +n46009010010 +n46009010011 +n46009010012 +n46009010013 +n46009010016 +n46009010014 +n46009010015 +n46009010017 +n46009010018 +n46009010019 +n46009010020 +n46009010021 +n46009010022 +n46009010023 +n46009011001 +n46009011002 +n46009011003 +n46009011004 +n46009011005 +n46009011006 +n46009011007 +n46009011008 +n46009011009 +n46009011010 +n46009011011 +n46009011012 +n46009011013 +n46009012001 +n46009012002 +n46009012003 +n46009012004 +n46009012005 +n46009012006 +n46009012007 +n46009012008 +n46009012009 +n46009012010 +n46009012011 +n46009012012 +n46009012013 +n46009012014 +n46009012015 +n46009012016 +n46009012017 +n46009012018 +n46009012019 +n46009012020 +n46009012021 +n46009012022 +n46009012023 +n46009012024 +n46009012025 +n46009012026 +n46009012027 +n46009013001 +n46009013002 +n46009013003 +n46009013004 +n46009013005 +n46009013006 +n46009013007 +n46009013008 +n46009013009 +n46009013010 +n46009013011 +n46009013012 +n46009013013 +n46009013014 +n46009013015 +n46009013016 +n46009013017 +n46009013018 +n46009013019 +n46009014001 +n46009014002 +n46009014003 +n46009014004 +n46009014005 +n46009014006 +n46009014007 +n46009014008 +n46009014009 +n46009014010 +n46009014011 +n46009014012 +n46009014013 +n46009015002 +n46009015001 +n46009015003 +n46009015004 +n46009015005 +n46009015006 +n46009015009 +n46009015007 +n46009015008 +n46009015010 +n46009015011 +n46009015012 +n46009015013 +n46009015014 +n46009015015 +n46009015017 +n46009015016 +n46009015018 +n46009015019 +n46009015020 +n46009015021 +n46009015022 +n46009015023 +n46009015024 +n46009015025 +n46009015026 +n46009016002 +n46009016001 +n46009016003 +n46009016004 +n46009016005 +n46009016006 +n46009016007 +n46009016009 +n46009016008 +n46009016010 +n46009016011 +n46009016013 +n46009016012 +n46009016014 +n46009016015 +n46009016016 +n46009016017 +n46009016018 +n46009017002 +n46009017001 +n46009017003 +n46009017004 +n46009017005 +n46009017006 +n46009017007 +n46009017009 +n46009017008 +n46009017010 +n46009017011 +n46009017012 +n46009018002 +n46009018001 +n46009018004 +n46009018003 +n46009018005 +n46009018006 +n46009018007 +n46009018008 +n46009018009 +n46009018010 +n46009018011 +n46009018012 +n46009018013 +n46009018014 +n46009018015 +n46009018016 +n46009018017 +n46009018018 +n46009018019 +n46009018020 +n46009018021 +n46009018022 +n46009019002 +n46009019001 +n46009019003 +n46009019004 +n46009019005 +n46009019006 +n46009019007 +n46009019008 +n46009019009 +n46009019010 +n46009019011 +n46009019012 +n46009020001 +n46009020002 +n46009020003 +n46009020004 +n46009020005 +n46009020006 +n46009020007 +n46009020008 +n46009020009 +n46009020010 +n46009020011 +n46009020012 +n46009020013 +n46009020014 +n46009020015 +n46009020016 +n46009020017 +n46009020018 +n46009020019 +n46009020020 +n46009020021 +n46009020022 +n46009020023 +n46009020024 +n46009020025 +n46009021001 +n46009021002 +n46009021003 +n46009021004 +n46009021005 +n46009021006 +n46009021007 +n46009021008 +n46009021009 +n46009021010 +n46009021011 +n46009021012 +n46009021013 +n46009021014 +n46009021015 +n46009022001 +n46009022002 +n46009022003 +n46009022004 +n46009022005 +n46009022006 +n46009022007 +n46009022008 +n46009022009 +n46009022010 +n46009022011 +n46009022012 +n46009022013 +n46009022014 +n46009022015 +n46009022016 +n46009023002 +n46009023001 +n46009023003 +n46009023004 +n46009023005 +n46009023006 +n46009023007 +n46009023008 +n46009023009 +n46009023010 +n46009024001 +n46009024002 +n46009024003 +n46009024004 +n46009024005 +n46009024006 +n46009024007 +n46009024009 +n46009024008 +n46009024010 +n46009024012 +n46009024011 +n46009024013 +n46009024014 +n46009024015 +n46009024016 +n46009024017 +n46009024018 +n46009024019 +n46009025002 +n46009025001 +n46009025003 +n46009025004 +n46009025005 +n46009025006 +n46009025009 +n46009025008 +n46009025007 +n46009025010 +n46009025011 +n46009025012 +n46009025013 +n46009025015 +n46009025014 +n46009025016 +n46009026002 +n46009026001 +n46009026003 +n46009026004 +n46009026005 +n46009026006 +n46009026007 +n46009026008 +n46009026009 +n46009026010 +n46009026011 +n46009026012 +n46009026013 +n46009027001 +n46009027002 +n46009027003 +n46009027004 +n46009027005 +n46009027006 +n46009027007 +n46009027008 +n46009027009 +n46009027010 +n46009027011 +n46009027012 +n46009027013 +n46009027014 +n46010001003 +n46010001006 +n46010001001 +n46010001002 +n46010001004 +n46010001005 +n46010001007 +n46010001008 +n46010001009 +n46010001010 +n46010001011 +n46010001012 +n46010001013 +n46010001014 +n46010001015 +n46010001016 +n46010001017 +n46010001018 +n46010001019 +n46010001020 +n46010001021 +n46010002001 +n46010002002 +n46010002003 +n46010002004 +n46010002005 +n46010002006 +n46010002007 +n46010002008 +n46010002009 +n46010002010 +n46010002011 +n46010002012 +n46010002013 +n46010003001 +n46010003002 +n46010003003 +n46010003004 +n46010003005 +n46010003006 +n46010003007 +n46010004001 +n46010004002 +n46010004003 +n46010004004 +n46010004005 +n46010004007 +n46010004006 +n46010004009 +n46010004008 +n46010004010 +n46010004011 +n46010004012 +n46010004013 +n46010004016 +n46010004014 +n46010004015 +n46010004017 +n46010004018 +n46010004019 +n46010005001 +n46010005002 +n46010005003 +n46010005004 +n46010005005 +n46010005006 +n46010005007 +n46010005008 +n46010005009 +n46010005011 +n46010005010 +n46010005012 +n46010005013 +n46010005014 +n46010006002 +n46010006001 +n46010006003 +n46010006004 +n46010006005 +n46010006006 +n46010006007 +n46010006008 +n46010006009 +n46010006010 +n46010006011 +n46010006012 +n46010006013 +n46010006014 +n46010006015 +n46010007001 +n46010007002 +n46010007003 +n46010007004 +n46010007005 +n46010007006 +n46010007007 +n46010007008 +n46010007009 +n46010007010 +n46010007011 +n46010007012 +n46010007013 +n46010007014 +n46010007015 +n46010007016 +n46010007017 +n46010008001 +n46010008002 +n46010008003 +n46010008004 +n46010008005 +n46010008006 +n46010008007 +n46010008008 +n46010008009 +n46010008010 +n46010008011 +n46010008012 +n46010009001 +n46010009002 +n46010009003 +n46010009004 +n46010009005 +n46010009006 +n46010009007 +n46010009008 +n46010009009 +n46010009010 +n46010009011 +n46010009012 +n46010009013 +n46010010001 +n46010010002 +n46010010003 +n46010010004 +n46010010005 +n46010010006 +n46010010007 +n46010010008 +n46010010009 +n46010010010 +n46010010011 +n46010011002 +n46010011001 +n46010011003 +n46010011004 +n46010011005 +n46010011007 +n46010011006 +n46010011008 +n46010011009 +n46010011010 +n46010011011 +n46010011012 +n46010011013 +n46010011014 +n46010011015 +n46010011016 +n46010011017 +n46010012001 +n46010012002 +n46010012003 +n46010012004 +n46010012005 +n46010012006 +n46010012007 +n46010013001 +n46010013002 +n46010013003 +n46010013004 +n46010013005 +n46010013006 +n46010013007 +n46010013009 +n46010013008 +n46010013010 +n46010013011 +n46010013012 +n46010013013 +n46010013014 +n46010013015 +n46010013016 +n46010013017 +n46010013018 +n46010013019 +n46010013020 +n46010013021 +n46010013022 +n46010013023 +n46010013024 +n46010013025 +n46010013026 +n46010013027 +n46010013028 +n46010013029 +n46010013030 +n46010014001 +n46010014002 +n46010014003 +n46010014004 +n46010014005 +n46010014006 +n46010014007 +n46010015001 +n46010015002 +n46010015003 +n46010015004 +n46010015005 +n46010015006 +n46010015007 +n46010016001 +n46010016002 +n46010016003 +n46010016004 +n46010016005 +n46010016006 +n46010016007 +n46010016009 +n46010016008 +n46010016010 +n46010016011 +n46010016012 +n46010016013 +n46010016014 +n46010016015 +n46010016016 +n46010016017 +n46010016018 +n46010016019 +n46010016020 +n46010016021 +n46010016022 +n46010016023 +n46010016024 +n46010017001 +n46010017002 +n46010017003 +n46010017004 +n46010017005 +n46010017006 +n46010017007 +n46010017008 +n46010017010 +n46010017009 +n46010017011 +n46010017012 +n46010017013 +n46010017014 +n46010017015 +n46010017016 +n46010018001 +n46010018002 +n46010018003 +n46010018004 +n46010018005 +n46010018006 +n46010018007 +n46010018008 +n46010018009 +n46010018010 +n46010018011 +n46010018012 +n46010018013 +n46010018014 +n46010019002 +n46010019001 +n46010019003 +n46010019004 +n46010019005 +n46010019006 +n46010019007 +n46010019008 +n46010019009 +n46010019010 +n46010019011 +n46010019012 +n46010020001 +n46010020002 +n46010020003 +n46010020004 +n46010020005 +n46010020006 +n46010020007 +n46010020008 +n46010020009 +n46010020012 +n46010020010 +n46010020011 +n46010020013 +n46010020014 +n46010020015 +n46010020016 +n46010020017 +n46010021001 +n46010021002 +n46010021003 +n46010021004 +n46010021005 +n46010021006 +n46010021007 +n46010021008 +n46010021009 +n46010021010 +n46010021011 +n46010021012 +n46010021013 +n46010021014 +n46010021015 +n46010021016 +n46010022001 +n46010022002 +n46010022003 +n46010022004 +n46010022005 +n46010022006 +n46010022007 +n46010022008 +n46010023001 +n46010023002 +n46010023003 +n46010023004 +n46010023005 +n46010023006 +n46010023007 +n46010023008 +n46010023009 +n46010023010 +n46010023011 +n46010023012 +n46010024001 +n46010024002 +n46010024003 +n46010024004 +n46010024005 +n46010024006 +n46010024007 +n46010024008 +n46010025001 +n46010025002 +n46010025003 +n46010025004 +n46010025005 +n46010025006 +n46010025007 +n46010025008 +n46010025009 +n46010025010 +n46010025011 +n46010026003 +n46010026001 +n46010026002 +n46010026004 +n46010026005 +n46010026006 +n46010026007 +n46010026008 +n46010026009 +n46010027001 +n46010027002 +n46010027005 +n46010027006 +n46010027003 +n46010027004 +n46010027007 +n46010027008 +n46010027009 +n46010027010 +n46010027011 +n46010027012 +n46010027013 +n46010027014 +n46010027015 +n46010027016 +n46010027017 +n46010027018 +n46010027019 +n46010028002 +n46010028001 +n46010028003 +n46010028004 +n46010028005 +n46010028006 +n46010028007 +n46010028008 +n46010028009 +n46010028010 +n46010028011 +n46010028012 +n46010028013 +n46010028014 +n46010028015 +n46010028016 +n46010028017 +n46010029002 +n46010029003 +n46010029001 +n46010029004 +n46010029005 +n46010029006 +n46010029007 +n46010029008 +n46010029009 +n46010029010 +n46010029013 +n46010029011 +n46010029012 +n46010029014 +n46010029015 +n46010029016 +n46010029017 +n46010029018 +n46010029019 +n46010029020 +n46010030001 +n46010030002 +n46010030003 +n46010030004 +n46010030005 +n46010030006 +n46010030007 +n46010030008 +n46010030009 +n46010030010 +n46010031002 +n46010031001 +n46010031003 +n46010031004 +n46010031005 +n46010031006 +n46010031007 +n46010031008 +n46010031009 +n46010031010 +n46010031011 +n46010031012 +n46010031013 +n46010032001 +n46010032004 +n46010032002 +n46010032003 +n46010032005 +n46010032006 +n46010032007 +n46010032008 +n46010032009 +n46010032010 +n46010032011 +n46010033001 +n46010033002 +n46010033003 +n46010033004 +n46010033005 +n46010033007 +n46010033006 +n46010033008 +n46010033009 +n46010033010 +n46010033011 +n46010033012 +n46010033013 +n46010033014 +n46010033015 +n46010033016 +n46011001001 +n46011001002 +n46011001003 +n46011001004 +n46011001005 +n46011001006 +n46011002002 +n46011002001 +n46011002003 +n46011002004 +n46011002005 +n46011002006 +n46011002007 +n46011002008 +n46011002009 +n46011002010 +n46011002011 +n46011002012 +n46011002013 +n46011002014 +n46011003002 +n46011003001 +n46011003003 +n46011003004 +n46011003005 +n46011003006 +n46011003007 +n46011003008 +n46011003009 +n46011003010 +n46011003011 +n46011003012 +n46011003014 +n46011003013 +n46011003015 +n46011003016 +n46011003017 +n46011003019 +n46011003018 +n46011003020 +n46011003021 +n46011003022 +n46011003023 +n46011004001 +n46011004002 +n46011004003 +n46011004004 +n46011004005 +n46011004006 +n46011004007 +n46011004008 +n46011004009 +n46011004010 +n46011004011 +n46011004012 +n46011005002 +n46011005001 +n46011005003 +n46011005004 +n46011005005 +n46011005006 +n46011005007 +n46011005008 +n46011005009 +n46011005010 +n46011005011 +n46011005012 +n46011005013 +n46011005015 +n46011005016 +n46011005014 +n46011005017 +n46011005018 +n46011005019 +n46011005020 +n46011005021 +n46011006002 +n46011006001 +n46011006003 +n46011006004 +n46011006005 +n46011006006 +n46011006007 +n46011006009 +n46011006008 +n46011006010 +n46011006011 +n46011006012 +n46011006013 +n46011006014 +n46011006015 +n46011006016 +n46011007003 +n46011007002 +n46011007001 +n46011007004 +n46011007005 +n46011007006 +n46011007007 +n46011007008 +n46011007009 +n46011007010 +n46011007011 +n46011007012 +n46011007013 +n46011007016 +n46011007014 +n46011007015 +n46011007017 +n46011007018 +n46011007019 +n46011008002 +n46011008001 +n46011008003 +n46011008004 +n46011008005 +n46011008006 +n46011008007 +n46011008008 +n46011008009 +n46011008010 +n46011009002 +n46011009001 +n46011009003 +n46011009004 +n46011009005 +n46011009006 +n46011009007 +n46011009008 +n46011009009 +n46011009010 +n46011009011 +n46011009012 +n46011009013 +n46011010001 +n46011010002 +n46011010003 +n46011010004 +n46011010005 +n46011010006 +n46011010007 +n46011010008 +n46011010009 +n46011010010 +n46011010011 +n46011010012 +n46011010013 +n46011011001 +n46011011002 +n46011011003 +n46011011004 +n46011011005 +n46011011006 +n46011011007 +n46011011008 +n46011011009 +n46011011010 +n46011011011 +n46011012002 +n46011012001 +n46011012003 +n46011012004 +n46011012005 +n46011012006 +n46011012007 +n46011012008 +n46011012009 +n46011012010 +n46011012011 +n46011012012 +n46011012013 +n46011012014 +n46011012016 +n46011012015 +n46011012017 +n46011012018 +n46011012019 +n46011012020 +n46011013001 +n46011013002 +n46011013003 +n46011013004 +n46011013005 +n46011013006 +n46011013007 +n46011013008 +n46011013009 +n46011013010 +n46011013011 +n46011014001 +n46011014002 +n46011014003 +n46011014004 +n46011014005 +n46011014006 +n46011014007 +n46011014009 +n46011014010 +n46011014008 +n46011014011 +n46011014012 +n46011014013 +n46011014014 +n46011015002 +n46011015003 +n46011015001 +n46011015004 +n46011015005 +n46011015006 +n46011015007 +n46011015008 +n46011015009 +n46011015010 +n46011015011 +n46011015012 +n46011015013 +n46011015014 +n46011016002 +n46011016001 +n46011016003 +n46011016004 +n46011016005 +n46011016006 +n46011016007 +n46011016008 +n46011016009 +n46011016010 +n46011016011 +n46011016012 +n46011016013 +n46011016014 +n46011016015 +n46011016016 +n46011017002 +n46011017001 +n46011017003 +n46011017004 +n46011017005 +n46011017006 +n46011017007 +n46011017008 +n46011017009 +n46011017010 +n46011017011 +n46011017012 +n46011017013 +n46011017014 +n46011017015 +n46011018003 +n46011018002 +n46011018001 +n46011018004 +n46011018005 +n46011018006 +n46011018007 +n46011018008 +n46011018009 +n46011018010 +n46011018011 +n46011018012 +n46011018013 +n46011018014 +n46011018015 +n46011018016 +n46011019002 +n46011019001 +n46011019003 +n46011019004 +n46011019005 +n46011019006 +n46011019007 +n46011019008 +n46011019009 +n46011019010 +n46011019011 +n46011019012 +n46011019013 +n46011019014 +n46011019015 +n46011020002 +n46011020001 +n46011020003 +n46011020004 +n46011020005 +n46011020006 +n46011020007 +n46011020008 +n46011020009 +n46011020010 +n46011020011 +n46011021002 +n46011021001 +n46011021003 +n46011021004 +n46011021005 +n46011021006 +n46011021007 +n46011021008 +n46011021009 +n46011021010 +n46011021012 +n46011021011 +n46011021013 +n46011021015 +n46011021014 +n46011021016 +n46011022002 +n46011022001 +n46011022003 +n46011022004 +n46011022005 +n46011022006 +n46011022007 +n46011022008 +n46011022009 +n46011022010 +n46011022011 +n46011022012 +n46011022013 +n46011022014 +n46011022015 +n46011022016 +n46011022017 +n46011022018 +n46011022019 +n46011022020 +n46011022021 +n46011022022 +n46011022023 +n46011022024 +n46011022025 +n46011022026 +n46011022027 +n46011022028 +n46011022029 +n46011022030 +n46011023002 +n46011023001 +n46011023003 +n46011023004 +n46011023005 +n46011023006 +n46011023007 +n46011023008 +n46011023009 +n46011023010 +n46011023011 +n46011023012 +n46011023013 +n46011023014 +n46011023015 +n46011023016 +n46011023017 +n46011023018 +n46011023019 +n46011023020 +n46011023021 +n46011024001 +n46011024002 +n46011024003 +n46011024004 +n46011024005 +n46011024006 +n46011024008 +n46011024007 +n46011024009 +n46011024010 +n46011024011 +n46011024012 +n46011024013 +n46011024014 +n46011024015 +n46011024016 +n46011024017 +n46011024018 +n46011024019 +n46011025001 +n46011025002 +n46011025003 +n46011025004 +n46011025005 +n46011025006 +n46011025007 +n46011025008 +n46011025009 +n46011025010 +n46011025011 +n46011025012 +n46011025013 +n46011025014 +n46011025015 +n46011025016 +n46011025017 +n46011025018 +n46011025019 +n46011025020 +n46011025021 +n46011025022 +n46011025023 +n46011025024 +n46011025025 +n46011025026 +n46011025027 +n46011025028 +n46011026002 +n46011026001 +n46011026003 +n46011026004 +n46011026005 +n46011026006 +n46011026007 +n46011026008 +n46011026009 +n46011026010 +n46011026011 +n46011026012 +n46011026013 +n46011026014 +n46011026015 +n46011026016 +n46011026017 +n46011026018 +n46011026019 +n46011027001 +n46011027003 +n46011027002 +n46011027004 +n46011027005 +n46011027006 +n46011027007 +n46011027008 +n46011027009 +n46011027010 +n46011027011 +n46011027012 +n46011027013 +n46011027014 +n46011027015 +n46011027016 +n46011027017 +n46011027018 +n46011027019 +n46011027020 +n46011027021 +n46011027022 +n46011028002 +n46011028001 +n46011028003 +n46011028004 +n46011028005 +n46011028006 +n46011028007 +n46011028008 +n46011028009 +n46011028010 +n46011028011 +n46011028012 +n46011028013 +n46011028014 +n46011028015 +n46011029002 +n46011029001 +n46011029003 +n46011029004 +n46011029005 +n46011029006 +n46011029007 +n46011029008 +n46011029009 +n46011029010 +n46011029011 +n46011029012 +n46011029013 +n46011029014 +n46011030001 +n46011030002 +n46011030003 +n46011030004 +n46011030005 +n46011030006 +n46011030007 +n46011030008 +n46011030009 +n46011030010 +n46011030011 +n46011031002 +n46011031001 +n46011031003 +n46011031004 +n46011031006 +n46011031005 +n46011031007 +n46011032002 +n46011032001 +n46011032003 +n46011032004 +n46011032005 +n46011032006 +n46011032007 +n46011032008 +n46011032009 +n46011032010 +n46011032011 +n46011032012 +n46011033001 +n46011033002 +n46011033003 +n46011033004 +n46011033005 +n46011033006 +n46011033007 +n46011033008 +n46011033009 +n46011034001 +n46011034002 +n46011034003 +n46011034004 +n46011034005 +n46011034006 +n46011034007 +n46011034008 +n46011034009 +n46011034010 +n46011034011 +n46011034013 +n46011034012 +n46011034014 +n46011034015 +n46011034016 +n46011034017 +n46011034018 +n46012001002 +n46012001005 +n46012001001 +n46012001003 +n46012001004 +n46012001006 +n46012001007 +n46012001008 +n46012001009 +n46012002001 +n46012002002 +n46012002003 +n46012002004 +n46012002005 +n46012002006 +n46012002007 +n46012002008 +n46012002009 +n46012002010 +n46012002011 +n46012002012 +n46012002013 +n46012002014 +n46012003001 +n46012003002 +n46012003003 +n46012003004 +n46012003005 +n46012003006 +n46012003007 +n46012003008 +n46012003009 +n46012003010 +n46012003011 +n46012003012 +n46012003013 +n46012003014 +n46012003015 +n46012003016 +n46012003017 +n46012003018 +n46012003019 +n46012003020 +n46012003021 +n46012003022 +n46012003023 +n46012004002 +n46012004001 +n46012004003 +n46012004004 +n46012004006 +n46012004005 +n46012004007 +n46012004008 +n46012005001 +n46012005002 +n46012005003 +n46012005004 +n46012005005 +n46012005006 +n46012005007 +n46012005008 +n46012006001 +n46012006002 +n46012006003 +n46012006004 +n46012006006 +n46012006005 +n46012006007 +n46012006008 +n46012006009 +n46012006010 +n46012006011 +n46012006012 +n46012006013 +n46012006014 +n46012007002 +n46012007001 +n46012007003 +n46012007004 +n46012007005 +n46012007006 +n46012007007 +n46012007008 +n46012007009 +n46012007010 +n46012008003 +n46012008002 +n46012008001 +n46012008004 +n46012008005 +n46012008006 +n46012008007 +n46012008008 +n46012008009 +n46012008011 +n46012008010 +n46012008012 +n46012008013 +n46012008014 +n46012008015 +n46012008016 +n46012008017 +n46012009001 +n46012009002 +n46012009003 +n46012009004 +n46012009005 +n46012009006 +n46012009008 +n46012009007 +n46012009009 +n46012009010 +n46012009011 +n46012009012 +n46012009013 +n46012009014 +n46012010002 +n46012010001 +n46012010003 +n46012010004 +n46012010006 +n46012010005 +n46012010007 +n46012010009 +n46012010008 +n46012010010 +n46012010011 +n46012010012 +n46012010013 +n46012010014 +n46012010016 +n46012010015 +n46012010017 +n46012010018 +n46012011002 +n46012011001 +n46012011003 +n46012011004 +n46012011005 +n46012011006 +n46012011007 +n46012011008 +n46012011009 +n46012011010 +n46012011011 +n46012011012 +n46012011013 +n46012011014 +n46012011015 +n46012012002 +n46012012001 +n46012012003 +n46012012004 +n46012012005 +n46012012006 +n46012012007 +n46012012008 +n46012012009 +n46012012010 +n46012012012 +n46012012011 +n46012012013 +n46012012014 +n46012012015 +n46012012016 +n46012012017 +n46012012018 +n46012012019 +n46012012021 +n46012012020 +n46012012022 +n46012012023 +n46012012024 +n46012012025 +n46012013002 +n46012013001 +n46012013003 +n46012013004 +n46012013005 +n46012013006 +n46012013007 +n46012013008 +n46012013009 +n46012013010 +n46012013011 +n46012013012 +n46012013013 +n46012013014 +n46012013015 +n46012013016 +n46012013017 +n46012013018 +n46012013019 +n46012013020 +n46012013021 +n46012013022 +n46012013023 +n46012013024 +n46012014002 +n46012014001 +n46012014003 +n46012014004 +n46012014006 +n46012014005 +n46012014007 +n46012014008 +n46012014009 +n46012014010 +n46012015001 +n46012015002 +n46012015003 +n46012015004 +n46012015005 +n46012015006 +n46012015007 +n46012015008 +n46012015009 +n46012015010 +n46012015011 +n46012015012 +n46012015013 +n46012015014 +n46012015015 +n46012015016 +n46012015017 +n46012015018 +n46012015019 +n46012015020 +n46012015021 +n46012016001 +n46012016002 +n46012016003 +n46012016004 +n46012016005 +n46012016006 +n46012016007 +n46012016008 +n46012016009 +n46012016010 +n46012016011 +n46012016012 +n46012016013 +n46012016014 +n46012016015 +n46012016016 +n46012016017 +n46012016018 +n46012016019 +n46012016020 +n46012016021 +n46012016022 +n46012017001 +n46012017002 +n46012017003 +n46012017004 +n46012017005 +n46012017006 +n46012017007 +n46012017008 +n46012017009 +n46012017010 +n46012017011 +n46012017012 +n46012017013 +n46012017014 +n46012018002 +n46012018001 +n46012018003 +n46012018004 +n46012018005 +n46012018006 +n46012018007 +n46012018008 +n46012018009 +n46012018010 +n46012018011 +n46012018012 +n46012018013 +n46012018014 +n46012018015 +n46012019002 +n46012019001 +n46012019003 +n46012019004 +n46012019005 +n46012019006 +n46012019007 +n46012019008 +n46012019009 +n46012019010 +n46012020002 +n46012020004 +n46012020001 +n46012020003 +n46012020005 +n46012020007 +n46012020006 +n46012020008 +n46012021003 +n46012021001 +n46012021002 +n46012021004 +n46012021005 +n46012021006 +n46012021007 +n46012021008 +n46012021009 +n46012021010 +n46012021011 +n46012021012 +n46012021013 +n46012021014 +n46012021015 +n46012021016 +n46012021017 +n46012021018 +n46012021019 +n46012021020 +n46012021021 +n46012021022 +n46012022001 +n46012022002 +n46012022003 +n46012022004 +n46012022005 +n46012022009 +n46012022010 +n46012022006 +n46012022007 +n46012022008 +n46012022011 +n46012022012 +n46012023001 +n46012023002 +n46012023005 +n46012023004 +n46012023006 +n46012023007 +n46012023003 +n46012023008 +n46012023009 +n46012023010 +n46012023011 +n46012023012 +n46012023013 +n46012023014 +n46012023015 +n46012023016 +n46012023017 +n46012023018 +n46012024002 +n46012024001 +n46012024003 +n46012024004 +n46012024005 +n46012024006 +n46012024007 +n46012024008 +n46012024009 +n46012024010 +n46012024011 +n46012024012 +n46012024013 +n46012024014 +n46012024015 +n46012024017 +n46012024016 +n46012024018 +n46012025001 +n46012025002 +n46012025003 +n46012025004 +n46012025005 +n46012025006 +n46012025007 +n46012025008 +n46012025009 +n46012025010 +n46012025011 +n46012025012 +n46012025013 +n46012025014 +n46012025015 +n46012026001 +n46012026002 +n46012026003 +n46012026004 +n46012026005 +n46012026006 +n46012026007 +n46012026008 +n46012026009 +n46012026010 +n46012026011 +n46012026012 +n46012026013 +n46012026014 +n46012026015 +n46012026016 +n46012027002 +n46012027001 +n46012027003 +n46012027004 +n46012027005 +n46012027006 +n46012027007 +n46012027008 +n46012027009 +n46012028001 +n46012028003 +n46012028002 +n46012028004 +n46012028005 +n46012028006 +n46012028007 +n46012028008 +n46012028009 +n46012028010 +n46012028011 +n46012028012 +n46012028013 +n46012028014 +n46012028015 +n46012028016 +n46012028017 +n46012028018 +n46012028019 +n46012028020 +n46012028021 +n46012028022 +n46012028023 +n46012028024 +n46012029001 +n46012029002 +n46012029003 +n46012029004 +n46012029005 +n46012029006 +n46012029007 +n46012029008 +n46012029009 +n46012029010 +n46012029011 +n46012029012 +n46012030001 +n46012030002 +n46012030004 +n46012030003 +n46012030005 +n46012030006 +n46012030007 +n46012030008 +n46012030009 +n46012030010 +n46012030011 +n46012030012 +n46012031002 +n46012031001 +n46012031003 +n46012031004 +n46012031005 +n46012031006 +n46012031007 +n46012031008 +n46012031009 +n46012031010 +n46012031011 +n46012031012 +n46012031013 +n46013001001 +n46013001002 +n46013001003 +n46013001004 +n46013001005 +n46013001007 +n46013001008 +n46013001009 +n46013001006 +n46013001011 +n46013001010 +n46013001012 +n46013001013 +n46013001014 +n46013001015 +n46013001016 +n46013001017 +n46013001018 +n46013001019 +n46013002001 +n46013002002 +n46013002003 +n46013002004 +n46013002005 +n46013002006 +n46013002007 +n46013002008 +n46013002009 +n46013002010 +n46013002011 +n46013002012 +n46013002013 +n46013002014 +n46013002015 +n46013002016 +n46013002017 +n46013002018 +n46013002019 +n46013002020 +n46013002021 +n46013002022 +n46013002024 +n46013002023 +n46013002025 +n46013002026 +n46013002027 +n46013002028 +n46013003001 +n46013003002 +n46013003003 +n46013003004 +n46013003005 +n46013003006 +n46013003007 +n46013003008 +n46013003009 +n46013003010 +n46013003011 +n46013003012 +n46013003013 +n46013003014 +n46013003015 +n46013003017 +n46013003016 +n46013003018 +n46013003019 +n46013003020 +n46013003021 +n46013004001 +n46013004002 +n46013004003 +n46013004004 +n46013004005 +n46013004006 +n46013004007 +n46013004008 +n46013004009 +n46013004010 +n46013004011 +n46013004012 +n46013004013 +n46013004014 +n46013005001 +n46013005002 +n46013005003 +n46013005004 +n46013005005 +n46013005006 +n46013005007 +n46013005008 +n46013005009 +n46013005010 +n46013005011 +n46013005012 +n46013006001 +n46013006002 +n46013006003 +n46013006004 +n46013006005 +n46013006007 +n46013006006 +n46013006008 +n46013006009 +n46013007001 +n46013007002 +n46013007003 +n46013007004 +n46013007005 +n46013007006 +n46013007007 +n46013007008 +n46013008001 +n46013008002 +n46013008003 +n46013008004 +n46013008006 +n46013008005 +n46013008007 +n46013008008 +n46013008009 +n46013008010 +n46013008011 +n46013008012 +n46013008013 +n46013008014 +n46013009003 +n46013009001 +n46013009002 +n46013009004 +n46013009005 +n46013009006 +n46013009007 +n46013009008 +n46013010002 +n46013010001 +n46013010003 +n46013010004 +n46013010005 +n46013010006 +n46013010007 +n46013010008 +n46013010009 +n46013011001 +n46013011002 +n46013011003 +n46013011004 +n46013011005 +n46013011006 +n46013011007 +n46013011008 +n46013011009 +n46013011010 +n46013011011 +n46013011012 +n46013011013 +n46013011014 +n46013011015 +n46013011016 +n46013011017 +n46013011018 +n46013011019 +n46013012002 +n46013012001 +n46013012003 +n46013012004 +n46013012005 +n46013012006 +n46013012007 +n46013012009 +n46013012008 +n46013012010 +n46013012011 +n46013012012 +n46013012013 +n46013012014 +n46013012015 +n46013012016 +n46013012018 +n46013012017 +n46013012019 +n46013012020 +n46013012021 +n46013012022 +n46013013002 +n46013013001 +n46013013003 +n46013013004 +n46013013005 +n46013013006 +n46013013007 +n46013013008 +n46013013009 +n46013013011 +n46013013010 +n46013013012 +n46013013013 +n46013013014 +n46014001001 +n46014001002 +n46014001003 +n46014001005 +n46014001004 +n46014001006 +n46014001007 +n46014001009 +n46014001010 +n46014001008 +n46014001011 +n46014002002 +n46014002001 +n46014002003 +n46014002004 +n46014002005 +n46014002006 +n46014002007 +n46014002008 +n46014002009 +n46014002011 +n46014002010 +n46014002012 +n46014002014 +n46014002013 +n46014002015 +n46014002016 +n46014003002 +n46014003001 +n46014003003 +n46014003004 +n46014003005 +n46014003006 +n46014003007 +n46014003008 +n46014003009 +n46014003010 +n46014004001 +n46014004002 +n46014004003 +n46014004004 +n46014004005 +n46014004007 +n46014004006 +n46014004008 +n46014004009 +n46014004010 +n46014005002 +n46014005001 +n46014005003 +n46014005004 +n46014005005 +n46014005006 +n46014005008 +n46014005009 +n46014005007 +n46014005010 +n46014005012 +n46014005011 +n46014005013 +n46014005014 +n46014005015 +n46014005016 +n46014005017 +n46014005018 +n46014005020 +n46014005019 +n46014005021 +n46014005022 +n46014005023 +n46014005024 +n46014005025 +n46014005026 +n46014005027 +n46014006002 +n46014006003 +n46014006004 +n46014006001 +n46014006005 +n46014006006 +n46014006007 +n46014006008 +n46014006009 +n46014006010 +n46014006011 +n46014006012 +n46014006013 +n46014006014 +n46014006015 +n46014006016 +n46014006017 +n46014006018 +n46014006019 +n46014006020 +n46014006021 +n46014006022 +n46014006023 +n46014006024 +n46014006025 +n46014006026 +n46014006027 +n46014007001 +n46014007002 +n46014007003 +n46014007004 +n46014007005 +n46014007006 +n46014007007 +n46014007008 +n46014007009 +n46014007010 +n46014007011 +n46014007012 +n46014007013 +n46014007014 +n46014007015 +n46014007016 +n46014007017 +n46014007018 +n46014007019 +n46014007020 +n46014007021 +n46014007022 +n46014008002 +n46014008003 +n46014008001 +n46014008005 +n46014008004 +n46014008006 +n46014008007 +n46014008008 +n46014008009 +n46014008010 +n46014008011 +n46014009001 +n46014009007 +n46014009002 +n46014009003 +n46014009004 +n46014009005 +n46014009006 +n46014009008 +n46014009009 +n46014009010 +n46014009011 +n46014009012 +n46014009013 +n46014009014 +n46014009015 +n46014009017 +n46014009018 +n46014009019 +n46014009016 +n46014009020 +n46014010002 +n46014010003 +n46014010001 +n46014010004 +n46014010005 +n46014010006 +n46014010007 +n46014010008 +n46014010009 +n46014010010 +n46014010011 +n46014011002 +n46014011001 +n46014011003 +n46014011004 +n46014011005 +n46014011006 +n46014011007 +n46014011008 +n46014011009 +n46014011010 +n46014011011 +n46014011012 +n46014011013 +n46014011014 +n46014011015 +n46014011016 +n46014011017 +n46014011018 +n46014012001 +n46014012002 +n46014012003 +n46014012004 +n46014012005 +n46014012007 +n46014012006 +n46014012008 +n46014012009 +n46014012010 +n46014012011 +n46014012012 +n46014012013 +n46014012014 +n46014012015 +n46014013001 +n46014013002 +n46014013003 +n46014013004 +n46014013005 +n46014013006 +n46014013007 +n46014014002 +n46014014001 +n46014014003 +n46014014004 +n46014014005 +n46014014006 +n46014014007 +n46014014008 +n46014014010 +n46014014009 +n46014014011 +n46014014012 +n46014014013 +n46014014014 +n46014015002 +n46014015001 +n46014015003 +n46014015004 +n46014015005 +n46014015006 +n46014015008 +n46014015007 +n46014015009 +n46014015010 +n46014015011 +n46014015012 +n46014015013 +n46014015014 +n46014015016 +n46014015015 +n46014015017 +n46014015018 +n46014015019 +n46014016001 +n46014016002 +n46014016003 +n46014016004 +n46014016005 +n46014016006 +n46014016007 +n46014016008 +n46014016009 +n46014016010 +n46014016011 +n46014016012 +n46014016013 +n46014016014 +n46014016015 +n46014016016 +n46014016017 +n46014016018 +n46014016019 +n46014016020 +n46014016021 +n46014016022 +n46014016023 +n46014017003 +n46014017002 +n46014017001 +n46014017004 +n46014017005 +n46014017006 +n46014017007 +n46014017008 +n46014017009 +n46014017010 +n46014018001 +n46014018002 +n46014018003 +n46014018004 +n46014018005 +n46014018006 +n46014018007 +n46014018008 +n46014019001 +n46014019002 +n46014019003 +n46014019004 +n46014019005 +n46014019006 +n46014019007 +n46014019008 +n46014019009 +n46014019010 +n46014019011 +n46014019012 +n46014019013 +n46014019014 +n46014019015 +n46014019016 +n46014019017 +n46014019018 +n46014019019 +n46014020001 +n46014020002 +n46014020003 +n46014020004 +n46014020005 +n46014020006 +n46014020007 +n46014020008 +n46014020009 +n46014020010 +n46014020012 +n46014020011 +n46014020013 +n46014020014 +n46014020015 +n46014021001 +n46014021002 +n46014021003 +n46014021004 +n46014021005 +n46014021006 +n46014021007 +n46014021008 +n46014021009 +n46014021010 +n46014021011 +n46014021012 +n46014021013 +n46014021014 +n46014021015 +n46014021016 +n46014021017 +n46014021018 +n46014021019 +n46014021020 +n46014021021 +n46014021022 +n46014022001 +n46014022002 +n46014022003 +n46014022004 +n46014022005 +n46014022006 +n46014022007 +n46014022008 +n46014022009 +n46014022010 +n46014022011 +n46014022012 +n46014022014 +n46014022013 +n46014022015 +n46014022016 +n46014022017 +n46014022018 +n46014022019 +n46014022020 +n46014022021 +n46014023002 +n46014023001 +n46014023003 +n46014023004 +n46014023005 +n46014023006 +n46014023007 +n46014023008 +n46014023009 +n46014023010 +n46014023011 +n46014023012 +n46014023013 +n46014023015 +n46014023014 +n46014023016 +n46014023017 +n46014023018 +n46014023019 +n46014023020 +n46014023021 +n46014023022 +n46014024002 +n46014024001 +n46014024003 +n46014024004 +n46014024006 +n46014024005 +n46014024007 +n46014024008 +n46014024009 +n46014024010 +n46014024011 +n46014024012 +n46014024013 +n46014024014 +n46014024015 +n46014024016 +n46014025001 +n46014025002 +n46014025003 +n46014025004 +n46014025005 +n46014025006 +n46014025007 +n46014025008 +n46014025009 +n46014025010 +n46014025011 +n46014025012 +n46014025013 +n46014025014 +n46014025015 +n46014025016 +n46014025017 +n46014025018 +n46014025019 +n46014025020 +n46014025021 +n46014025022 +n46014025023 +n46014026002 +n46014026001 +n46014026003 +n46014026004 +n46014026005 +n46014026006 +n46014026007 +n46014026008 +n46014026009 +n46014026010 +n46014026011 +n46014026012 +n46014026013 +n46014026014 +n46014026015 +n46014026016 +n46014026017 +n46014026018 +n46014026019 +n46014026020 +n46014026021 +n46014027001 +n46014027002 +n46014027003 +n46014027004 +n46014027005 +n46014027006 +n46014027007 +n46014027008 +n46014027009 +n46014027010 +n46014027011 +n46014027012 +n46014027013 +n46014027014 +n46014027015 +n46014027016 +n46014028002 +n46014028001 +n46014028003 +n46014028004 +n46014028005 +n46014028006 +n46014028007 +n46014028008 +n46014028010 +n46014028011 +n46014028009 +n46014028012 +n46014028013 +n46014028014 +n46014029002 +n46014029001 +n46014029003 +n46014029004 +n46014029005 +n46014029006 +n46014029007 +n46014029008 +n46014029009 +n46014029010 +n46014030002 +n46014030001 +n46014030003 +n46014030005 +n46014030004 +n46014030006 +n46014030007 +n46014030008 +n46014031002 +n46014031001 +n46014031003 +n46014031004 +n46014031005 +n46014031006 +n46014031007 +n46014031008 +n46014031009 +n46014031010 +n46014031011 +n46014031012 +n46014032001 +n46014032002 +n46014032003 +n46014032004 +n46014032005 +n46014033002 +n46014033001 +n46014033003 +n46014033004 +n46014033005 +n46014033006 +n46014033007 +n46014033008 +n46014033009 +n46014033010 +n46014033011 +n46014033012 +n46014033013 +n46014033014 +n46014033015 +n46014034001 +n46014034002 +n46014034003 +n46014034004 +n46014034005 +n46014034006 +n46014034008 +n46014034007 +n46014034009 +n46014034010 +n46014034011 +n46014034012 +n46014034013 +n46014034014 +n46014034015 +n46014034016 +n46014034017 +n46014034018 +n46014035002 +n46014035001 +n46014035003 +n46014035004 +n46014035005 +n46014035006 +n46014035007 +n46014035008 +n46014035009 +n46014035010 +n46014035011 +n46014035013 +n46014035012 +n46014035014 +n46014035015 +n46014035016 +n46014035017 +n46014035018 +n46014036001 +n46014036002 +n46014036003 +n46014036004 +n46014036005 +n46014036006 +n46014036007 +n46014036008 +n46014036009 +n46014036010 +n46014036011 +n46014036012 +n46014036013 +n46014037001 +n46014037002 +n46014037003 +n46014037005 +n46014037004 +n46014037006 +n46014037007 +n46014037008 +n46014037009 +n46014037010 +n46014037011 +n46014037012 +n46014037013 +n46014037015 +n46014037014 +n46014038002 +n46014038001 +n46014038003 +n46014038004 +n46014038005 +n46014039001 +n46014039002 +n46014039003 +n46014039004 +n46014039005 +n46014039006 +n46014039007 +n46014039008 +n46014039009 +n46014039012 +n46014039010 +n46014039011 +n46014040002 +n46014040001 +n46014040003 +n46014040004 +n46014040005 +n46014040006 +n46014040007 +n46015001002 +n46015001004 +n46015001001 +n46015001003 +n46015001005 +n46015001006 +n46015001007 +n46015001008 +n46015001009 +n46015001010 +n46015001011 +n46015001012 +n46015001013 +n46015001014 +n46015001015 +n46015001016 +n46015002001 +n46015002002 +n46015002003 +n46015002004 +n46015002005 +n46015002006 +n46015002007 +n46015002008 +n46015002009 +n46015002010 +n46015002011 +n46015002012 +n46015002013 +n46015002014 +n46015002015 +n46015003002 +n46015003001 +n46015003003 +n46015003004 +n46015003005 +n46015003006 +n46015003007 +n46015003008 +n46015003009 +n46015003010 +n46015003011 +n46015003012 +n46015003013 +n46015003014 +n46015003015 +n46015003016 +n46015003017 +n46015003018 +n46015004001 +n46015004002 +n46015004003 +n46015004004 +n46015004005 +n46015004006 +n46015004007 +n46015004008 +n46015004009 +n46015004010 +n46015004011 +n46015004012 +n46015004013 +n46015005001 +n46015005002 +n46015005003 +n46015005004 +n46015005005 +n46015005006 +n46015005007 +n46015006001 +n46015006002 +n46015006003 +n46015006004 +n46015006005 +n46015006006 +n46015006007 +n46015006008 +n46015006009 +n46015006010 +n46015006011 +n46015006012 +n46015006013 +n46015006015 +n46015006014 +n46015006016 +n46015007001 +n46015007002 +n46015007003 +n46015007004 +n46015007005 +n46015007006 +n46015007007 +n46015008002 +n46015008001 +n46015008003 +n46015008007 +n46015008008 +n46015008004 +n46015008005 +n46015008006 +n46015009002 +n46015009001 +n46015009003 +n46015009004 +n46015009005 +n46015009006 +n46015009007 +n46015009008 +n46015009009 +n46015009010 +n46015009011 +n46015009012 +n46015009013 +n46015009014 +n46015009015 +n46015009016 +n46015009017 +n46015009018 +n46015009019 +n46015010002 +n46015010001 +n46015010003 +n46015010004 +n46015010005 +n46015010006 +n46015010007 +n46015010008 +n46015010009 +n46015010010 +n46015010011 +n46015010012 +n46015010013 +n46015010014 +n46015010015 +n46015010016 +n46015010017 +n46015010018 +n46015010019 +n46015010020 +n46015010021 +n46015010024 +n46015010022 +n46015010023 +n46015010025 +n46015010026 +n46015010027 +n46015010028 +n46015010029 +n46015010030 +n46015010031 +n46015011002 +n46015011001 +n46015011003 +n46015011004 +n46015011005 +n46015011006 +n46015011007 +n46015011008 +n46015011009 +n46015011010 +n46015012002 +n46015012001 +n46015012003 +n46015012004 +n46015012005 +n46015012006 +n46015012007 +n46015012008 +n46015012009 +n46015012010 +n46015012011 +n46015012012 +n46015012013 +n46015012014 +n46015012015 +n46015012016 +n46015012017 +n46015012018 +n46015013002 +n46015013001 +n46015013003 +n46015013004 +n46015013005 +n46015013006 +n46015013007 +n46015013008 +n46015013009 +n46015014002 +n46015014001 +n46015014003 +n46015014004 +n46015014005 +n46015014007 +n46015014006 +n46015014008 +n46015014009 +n46015014010 +n46015014011 +n46015014012 +n46015014013 +n46015014014 +n46015014015 +n46015015002 +n46015015001 +n46015015003 +n46015015004 +n46015015005 +n46015015006 +n46015015007 +n46015015008 +n46015015009 +n46015015010 +n46015015011 +n46015015012 +n46015015013 +n46015015014 +n46015015015 +n46015015016 +n46015015017 +n46015015018 +n46015015019 +n46015015020 +n46015015021 +n46015015022 +n46015015023 +n46015016002 +n46015016001 +n46015016003 +n46015016004 +n46015016005 +n46015016006 +n46015016007 +n46015016008 +n46015017002 +n46015017001 +n46015017003 +n46015017004 +n46015017005 +n46015017006 +n46015017007 +n46015017008 +n46015017009 +n46015017010 +n46015017011 +n46015017012 +n46015017013 +n46015017014 +n46015017015 +n46015018001 +n46015018002 +n46015018003 +n46015018004 +n46015018005 +n46015018006 +n46015018007 +n46015019001 +n46015019002 +n46015019003 +n46015019004 +n46015019005 +n46015019006 +n46015019007 +n46015019008 +n46015019009 +n46015019010 +n46015019011 +n46015019012 +n46015019013 +n46015019014 +n46015020002 +n46015020001 +n46015020004 +n46015020005 +n46015020006 +n46015020003 +n46015020007 +n46015020008 +n46015020009 +n46015021002 +n46015021001 +n46015021003 +n46015021004 +n46015021005 +n46015021006 +n46015021007 +n46015021008 +n46015021009 +n46015021010 +n46015022002 +n46015022001 +n46015022003 +n46015022004 +n46015022005 +n46015022006 +n46015022007 +n46015022008 +n46015022009 +n46015022010 +n46015022011 +n46015022012 +n46015022013 +n46015022014 +n46015023002 +n46015023001 +n46015023003 +n46015023004 +n46015023005 +n46015023006 +n46015023007 +n46015023008 +n46015023009 +n46015023010 +n46015023011 +n46015023012 +n46015023013 +n46015023014 +n46015023015 +n46015023016 +n46015024001 +n46015024002 +n46015024003 +n46015024004 +n46015024005 +n46015024006 +n46015024007 +n46015024008 +n46015024009 +n46015024010 +n46015024011 +n46015024012 +n46015024013 +n46015024014 +n46015024015 +n46015024016 +n46015024017 +n46015024018 +n46015024019 +n46015024020 +n46015025002 +n46015025001 +n46015025003 +n46015025004 +n46015025005 +n46015025006 +n46015025007 +n46015025008 +n46015025009 +n46015025010 +n46015025011 +n46015025012 +n46015025013 +n46015025014 +n46015026001 +n46015026002 +n46015026004 +n46015026005 +n46015026003 +n46015027002 +n46015027001 +n46015027003 +n46015027004 +n46015027005 +n46015027006 +n46015027007 +n46015027009 +n46015027008 +n46015027010 +n46015027011 +n46015027012 +n46015027013 +n46015027014 +n46015027015 +n46015027016 +n46015027017 +n46015027018 +n46015027019 +n46015027020 +n46015027021 +n46015028002 +n46015028001 +n46015028003 +n46015028004 +n46015028005 +n46015028006 +n46015028007 +n46015028008 +n46015028009 +n46015028010 +n46015028011 +n46015028012 +n46015028013 +n46015028014 +n46015028015 +n46015028016 +n46015028017 +n46015028018 +n46015028019 +n46015028020 +n46015028021 +n46015028022 +n46015028023 +n46015028024 +n46015029001 +n46015029002 +n46015029003 +n46015029004 +n46015029005 +n46015029006 +n46015029007 +n46015029008 +n46015029009 +n46015029010 +n46015029011 +n46015029012 +n46015029013 +n46015029014 +n46015029015 +n46015029016 +n46015029017 +n46015029018 +n46015030001 +n46015030002 +n46015030003 +n46015030004 +n46015030005 +n46015030006 +n46015031008 +n46015031001 +n46015031002 +n46015031003 +n46015031004 +n46015031005 +n46015031006 +n46015031007 +n46015031009 +n46015031010 +n46015031011 +n46015031012 +n46015031013 +n46015031014 +n46015031015 +n46015031016 +n46015032001 +n46015032002 +n46015032003 +n46015032004 +n46015032005 +n46015032006 +n46015032007 +n46015032008 +n46015032009 +n46015032010 +n46015032011 +n46015032012 +n46015032013 +n46015032014 +n46015032015 +n46015032016 +n46015032017 +n46015032019 +n46015032018 +n46015032020 +n46015033001 +n46015033002 +n46015033003 +n46015033004 +n46015033005 +n46015033006 +n46015033007 +n46015034001 +n46015034002 +n46015034003 +n46015034004 +n46015034005 +n46015034007 +n46015034006 +n46015034008 +n46015034009 +n46015034010 +n46015034011 +n46015034012 +n46015034013 +n46015034014 +n46015035001 +n46015035002 +n46015035003 +n46015035004 +n46015035005 +n46015035006 +n46015035007 +n46015035009 +n46015035008 +n46015035010 +n46015035011 +n46015036001 +n46015036003 +n46015036002 +n46015036004 +n46015036005 +n46015036006 +n46015036007 +n46015036008 +n46015036009 +n46015037001 +n46015037002 +n46015037003 +n46015037004 +n46015037005 +n46015037006 +n46015037007 +n46015037008 +n46015037009 +n46015037010 +n46015037011 +n46015037012 +n46015037013 +n46015037014 +n46015037015 +n46015037016 +n46015037017 +n46015037018 +n46015037019 +n46015038002 +n46015038001 +n46015038003 +n46015038004 +n46015038005 +n46015038006 +n46015038007 +n46015038008 +n46015038009 +n46015038010 +n46015038011 +n46015038012 +n46015038013 +n46015038014 +n46015039001 +n46015039002 +n46015039003 +n46015039004 +n46015039005 +n46015039006 +n46015039007 +n46015039009 +n46015039008 +n46015039010 +n46015039012 +n46015039011 +n46015039013 +n46015039014 +n46015039016 +n46015039015 +n46015039017 +n46015039018 +n46015039020 +n46015039019 +n46015039021 +n46015040001 +n46015040002 +n46015040003 +n46015040004 +n46015040005 +n46015040006 +n46015040007 +n46015040009 +n46015040008 +n46015040010 +n46015040011 +n46015040012 +n46015040013 +n46015040015 +n46015040014 +n46015040016 +n46015040017 +n46015040018 +n46015041001 +n46015041002 +n46015041003 +n46015041004 +n46015041005 +n46015041006 +n46015041007 +n46015041008 +n46015041009 +n46015041010 +n46015041011 +n46015041013 +n46015041012 +n46015041014 +n46015041015 +n46015041016 +n46015041017 +n46015042001 +n46015042002 +n46015042003 +n46015042004 +n46015042005 +n46015042006 +n46015042007 +n46015042008 +n46015042009 +n46015042010 +n46015042011 +n46015042012 +n46015043001 +n46015043002 +n46015043003 +n46015043004 +n46015043005 +n46015043006 +n46015043007 +n46015043008 +n46015043009 +n46015043010 +n46015043011 +n46015043012 +n46015044001 +n46015044002 +n46015044003 +n46015044004 +n46015044005 +n46015044006 +n46015044007 +n46015044008 +n46015044009 +n46015044010 +n46015044011 +n46015044012 +n46015044013 +n46015045001 +n46015045002 +n46015045003 +n46015045004 +n46015045005 +n46015045006 +n46015045007 +n46015045008 +n46015045009 +n46015045010 +n46015045011 +n46015045012 +n46015045013 +n46015045014 +n46015045015 +n46015045016 +n46015045017 +n46015046001 +n46015046002 +n46015046003 +n46015046004 +n46015046005 +n46015046006 +n46015046007 +n46015046008 +n46015046009 +n46015046010 +n46015046011 +n46015047001 +n46015047002 +n46015047003 +n46015047004 +n46015047005 +n46015047006 +n46015047007 +n46015047008 +n46015047009 +n46015047010 +n46015047011 +n46015048001 +n46015048002 +n46015048003 +n46015048004 +n46015048005 +n46015048006 +n46015048007 +n46015048008 +n46015048009 +n46015048010 +n46015048011 +n46015048012 +n46015048013 +n46015048014 +n46015048015 +n46015049001 +n46015049002 +n46015049003 +n46015049004 +n46015049005 +n46015049006 +n46015049007 +n46015049008 +n46015049009 +n46015049010 +n46015049011 +n46015049012 +n46015049013 +n46015050002 +n46015050001 +n46015050003 +n46015050004 +n46015050005 +n46015050006 +n46015050007 +n46015050008 +n46015050009 +n46015050010 +n46015050011 +n46015050012 +n46015050013 +n46015050014 +n46015050015 +n46015050016 +n46015050017 +n46015050018 +n46015050019 +n46015051001 +n46015051002 +n46015051003 +n46015051004 +n46015051005 +n46015051006 +n46015051007 +n46015051009 +n46015051008 +n46015051010 +n46015052001 +n46015052002 +n46015052003 +n46015052004 +n46015052005 +n46015052006 +n46015052007 +n46015052008 +n46015052009 +n46015052011 +n46015052010 +n46015052012 +n46015052013 +n46015052014 +n46015052015 +n46015052016 +n46015052017 +n46015052018 +n46015052019 +n46015053002 +n46015053001 +n46015053003 +n46015053004 +n46015053005 +n46015053006 +n46015053007 +n46015053008 +n46015053009 +n46015053010 +n46015053011 +n46015053012 +n46015053013 +n46015054002 +n46015054001 +n46015054003 +n46015054004 +n46015054005 +n46015054006 +n46015054007 +n46015054008 +n46015054009 +n46015054010 +n46015054011 +n46015054012 +n46015054013 +n46015054014 +n46015054015 +n46015054016 +n46015054017 +n46015054018 +n46015054019 +n46015054020 +n46015054021 +n46015054022 +n46015054023 +n46015054024 +n46015055003 +n46015055001 +n46015055002 +n46015055004 +n46015055005 +n46015055008 +n46015055006 +n46015055007 +n46015055009 +n46015055010 +n46015056002 +n46015056001 +n46015056003 +n46015056004 +n46015056005 +n46015056006 +n46015056007 +n46015056009 +n46015056008 +n46015056010 +n46015056011 +n46015056012 +n46015056013 +n46015056014 +n46015057002 +n46015057004 +n46015057001 +n46015057003 +n46015057005 +n46015057006 +n46015057007 +n46015057008 +n46015057009 +n46015057010 +n46015057011 +n46015057012 +n46015057013 +n46015057014 +n46015057015 +n46015058001 +n46015058002 +n46015058003 +n46015058004 +n46015058006 +n46015058005 +n46015058007 +n46015058008 +n46015058009 +n46015058010 +n46015058011 +n46015058012 +n46015058013 +n46015058014 +n46015058015 +n46015058016 +n46015058017 +n46015058018 +n46015058019 +n46015058020 +n46015058021 +n46015058022 +n46015058023 +n46015058024 +n46016001002 +n46016001001 +n46016001003 +n46016001004 +n46016001005 +n46016001006 +n46016001007 +n46016001008 +n46016001009 +n46016001010 +n46016001011 +n46016001012 +n46016001013 +n46016001014 +n46016001015 +n46016001016 +n46016001017 +n46016001018 +n46016002001 +n46016002002 +n46016002003 +n46016002004 +n46016002005 +n46016002006 +n46016002007 +n46016002008 +n46016002009 +n46016002011 +n46016002012 +n46016002010 +n46016002013 +n46016002014 +n46016002015 +n46016002016 +n46016002017 +n46016002018 +n46016002019 +n46016002020 +n46016003002 +n46016003001 +n46016003003 +n46016003005 +n46016003004 +n46016003006 +n46016003007 +n46016003008 +n46016003009 +n46016003010 +n46016003011 +n46016003012 +n46016003013 +n46016003014 +n46016003015 +n46016003016 +n46016004002 +n46016004001 +n46016004003 +n46016004004 +n46016004005 +n46016004006 +n46016004007 +n46016004008 +n46016004009 +n46016004010 +n46016005002 +n46016005001 +n46016005003 +n46016005004 +n46016005005 +n46016005006 +n46016005007 +n46016005009 +n46016005008 +n46016005010 +n46016006003 +n46016006001 +n46016006002 +n46016006004 +n46016006005 +n46016006006 +n46016006007 +n46016006008 +n46016006009 +n46016006010 +n46016006011 +n46016006012 +n46016006014 +n46016006013 +n46016006015 +n46016007003 +n46016007001 +n46016007002 +n46016007004 +n46016007005 +n46016007006 +n46016007007 +n46016007008 +n46016007010 +n46016007009 +n46016007011 +n46016007012 +n46016007013 +n46016007014 +n46016007015 +n46016007016 +n46016007017 +n46016007018 +n46016007019 +n46016008002 +n46016008001 +n46016008003 +n46016008004 +n46016008005 +n46016008006 +n46016008007 +n46016009002 +n46016009003 +n46016009004 +n46016009001 +n46016009005 +n46016009006 +n46016009007 +n46016009008 +n46016009009 +n46016009010 +n46016010002 +n46016010001 +n46016010003 +n46016010004 +n46016010005 +n46016010006 +n46016010007 +n46016010008 +n46016010009 +n46016010010 +n46016010012 +n46016010011 +n46016010013 +n46016010014 +n46016010015 +n46016010016 +n46016010017 +n46016011003 +n46016011001 +n46016011002 +n46016011004 +n46016011005 +n46016011007 +n46016011006 +n46016011008 +n46016011009 +n46016011010 +n46016011011 +n46016011012 +n46016011013 +n46016011014 +n46016011016 +n46016011015 +n46016011017 +n46016011018 +n46016011019 +n46016011020 +n46016012002 +n46016012001 +n46016012003 +n46016012004 +n46016012005 +n46016012006 +n46016012007 +n46016012008 +n46016012009 +n46016012010 +n46016012011 +n46016012012 +n46016012013 +n46016012014 +n46016012015 +n46016012016 +n46016012017 +n46016012018 +n46016012019 +n46016012020 +n46016012021 +n46016012022 +n46016012023 +n46016012025 +n46016012024 +n46016012026 +n46016012027 +n46016013001 +n46016013002 +n46016013003 +n46016013004 +n46016013005 +n46016013006 +n46016013007 +n46016014001 +n46016014002 +n46016014003 +n46016014004 +n46016014005 +n46016015002 +n46016015001 +n46016015003 +n46016015004 +n46016015005 +n46016015006 +n46016015007 +n46016015008 +n46016015009 +n46016015010 +n46016015011 +n46016015012 +n46016015013 +n46016015014 +n46016015015 +n46016015016 +n46016015017 +n46016015018 +n46016015019 +n46016015020 +n46016016001 +n46016016002 +n46016016003 +n46016016004 +n46016016005 +n46016016006 +n46016016007 +n46016016008 +n46016016009 +n46016016010 +n46016016011 +n46016016012 +n46016017002 +n46016017001 +n46016017003 +n46016017004 +n46016017005 +n46016017006 +n46016017007 +n46016017008 +n46016017009 +n46016017010 +n46016017011 +n46016017012 +n46016017013 +n46016017014 +n46016017015 +n46016017016 +n46016018002 +n46016018001 +n46016018003 +n46016018004 +n46016018005 +n46016018006 +n46016018007 +n46016018008 +n46016018010 +n46016018009 +n46016018011 +n46016018012 +n46016019001 +n46016019002 +n46016019003 +n46016019004 +n46016019005 +n46016019006 +n46016019007 +n46016019008 +n46016019009 +n46016019010 +n46016019011 +n46016019012 +n46016019013 +n46016019014 +n46016019015 +n46016019016 +n46016019017 +n46016019018 +n46016019019 +n46016019020 +n46016020001 +n46016020002 +n46016020003 +n46016020004 +n46016020005 +n46016020006 +n46016020007 +n46016020008 +n46016020009 +n46016020010 +n46016021001 +n46016021002 +n46016021003 +n46016021004 +n46016021005 +n46016021006 +n46016022001 +n46016022002 +n46016022003 +n46016022004 +n46016022005 +n46016022006 +n46016022007 +n46016022008 +n46016022009 +n46016022010 +n46016023001 +n46016023002 +n46016023003 +n46016023004 +n46016023005 +n46016023006 +n46016023007 +n46016024001 +n46016024002 +n46016024003 +n46016024004 +n46016024005 +n46016024006 +n46016024007 +n46016024008 +n46016024009 +n47001001001 +n47001001002 +n47001001003 +n47001001004 +n47001001005 +n47001001006 +n47001001007 +n47001001008 +n47001001009 +n47001001010 +n47001001011 +n47001001012 +n47001001013 +n47001001014 +n47001001015 +n47001001016 +n47001001017 +n47001001018 +n47001001019 +n47001001020 +n47001001021 +n47001001022 +n47001001023 +n47001001024 +n47001001025 +n47001001026 +n47001001027 +n47001001028 +n47001001029 +n47001002002 +n47001002001 +n47001002003 +n47001002004 +n47001002005 +n47001002006 +n47001002007 +n47001002008 +n47001002009 +n47001002010 +n47001002011 +n47001002012 +n47001003001 +n47001003002 +n47001003003 +n47001003004 +n47001003005 +n47001003006 +n47001003007 +n47001003008 +n47001003009 +n47001003010 +n47001003011 +n47001003012 +n47001003013 +n47001003014 +n47001003015 +n47001003016 +n47001003017 +n47001003018 +n47001004001 +n47001004002 +n47001004003 +n47001004004 +n47001004005 +n47001004006 +n47001004007 +n47001004008 +n47001004009 +n47001004010 +n47001004011 +n47001004012 +n47001004013 +n47001004014 +n47001004015 +n47001004016 +n47001004017 +n47001004018 +n47001004019 +n47001004020 +n47001004021 +n47001004022 +n47001004023 +n47001004024 +n47001004025 +n47001004026 +n47001005001 +n47001005002 +n47001005003 +n47001005004 +n47001005005 +n47001005006 +n47001005007 +n47001005008 +n47001005009 +n47001005010 +n47001005011 +n47001005012 +n47001005013 +n47001005014 +n47001005015 +n47001005016 +n47001005017 +n47001005018 +n47001006002 +n47001006001 +n47001006003 +n47001006004 +n47001006005 +n47001006006 +n47001006007 +n47001006008 +n47001006009 +n47001006010 +n47001006011 +n47001006012 +n47001006013 +n47001006014 +n47001006015 +n47001006016 +n47001006017 +n47001006018 +n47001006019 +n47001006020 +n47001006021 +n47001006022 +n47001006023 +n47001006024 +n47001006025 +n47001006026 +n47001007001 +n47001007002 +n47001007003 +n47001007004 +n47001007005 +n47001007006 +n47001007007 +n47001007008 +n47001007009 +n47001007010 +n47001007012 +n47001007011 +n47001007013 +n47001007014 +n47001007015 +n47001007016 +n47001007017 +n47001007018 +n47001008002 +n47001008006 +n47001008001 +n47001008003 +n47001008004 +n47001008005 +n47001008007 +n47001008008 +n47001008009 +n47001008010 +n47001008011 +n47001008012 +n47001008013 +n47001008014 +n47001008015 +n47001008016 +n47001008017 +n47001008018 +n47001008019 +n47001008020 +n47001008021 +n47001008022 +n47001008023 +n47001008024 +n47001008025 +n47001008026 +n47001008027 +n47001009001 +n47001009002 +n47001009003 +n47001009004 +n47001009005 +n47001009006 +n47001009007 +n47001009008 +n47001009009 +n47001009010 +n47001009011 +n47001009012 +n47001009013 +n47001009014 +n47001009015 +n47001009016 +n47001009017 +n47001009018 +n47001009019 +n47001009020 +n47001009021 +n47001009022 +n47001009023 +n47001010001 +n47001010002 +n47001010003 +n47001010004 +n47001010005 +n47001010006 +n47001010007 +n47001010008 +n47001010009 +n47001010010 +n47001010011 +n47001010012 +n47001010013 +n47001010014 +n47001010015 +n47001011001 +n47001011002 +n47001011003 +n47001011004 +n47001011005 +n47001011006 +n47001011007 +n47001011008 +n47001011009 +n47001011010 +n47001011011 +n47001011012 +n47001011013 +n47001011014 +n47001011015 +n47001011016 +n47001011017 +n47001011018 +n47001011019 +n47001011020 +n47001012002 +n47001012001 +n47001012003 +n47001012004 +n47001012005 +n47001012006 +n47001012007 +n47001012008 +n47001012009 +n47001012010 +n47001012011 +n47001012012 +n47001012013 +n47001012014 +n47001012015 +n47001012016 +n47001012017 +n47001012018 +n47001012019 +n47001012020 +n47001012021 +n47001012022 +n47001012023 +n47001012024 +n47001012025 +n47001012026 +n47001012027 +n47001012028 +n47001012029 +n47001012030 +n47001012032 +n47001012031 +n47001012033 +n47001012034 +n47001013002 +n47001013004 +n47001013005 +n47001013001 +n47001013003 +n47001013006 +n47001013007 +n47001013008 +n47001013009 +n47001013010 +n47001013011 +n47001013012 +n47001013014 +n47001013013 +n47001013015 +n47001013016 +n47001013017 +n47001013018 +n47001014001 +n47001014002 +n47001014003 +n47001014004 +n47001014005 +n47001014006 +n47001014007 +n47001014008 +n47001014009 +n47001014010 +n47001014011 +n47001014012 +n47001014013 +n47001014014 +n47001014015 +n47001014016 +n47001014017 +n47001014018 +n47001014019 +n47001014020 +n47001014021 +n47001015001 +n47001015002 +n47001015003 +n47001015004 +n47001015005 +n47001015006 +n47001015007 +n47001015008 +n47001015009 +n47001015010 +n47001015011 +n47001015012 +n47001015013 +n47001016001 +n47001016002 +n47001016003 +n47001016004 +n47001016005 +n47001016006 +n47001016007 +n47001016008 +n47001016009 +n47001016010 +n47001016011 +n47001016012 +n47001016013 +n47001016014 +n47001016015 +n47001016016 +n47001016017 +n47001016018 +n47001016019 +n47001016020 +n47001017002 +n47001017001 +n47001017003 +n47001017005 +n47001017004 +n47001017006 +n47001017007 +n47001017008 +n47001017009 +n47001017010 +n47001017011 +n47001017012 +n47001017013 +n47001017014 +n47001017015 +n47001017016 +n47001017017 +n47001017018 +n47001017019 +n47001017020 +n47001017021 +n47001017022 +n47001017023 +n47001017024 +n47001017025 +n47001018002 +n47001018001 +n47001018003 +n47001018004 +n47001018005 +n47001018006 +n47001018007 +n47001018008 +n47001018009 +n47001018010 +n47001018011 +n47001018012 +n47001018013 +n47001018014 +n47001018015 +n47001018016 +n47001019004 +n47001019001 +n47001019002 +n47001019003 +n47001019005 +n47001019006 +n47001019007 +n47001019008 +n47001019009 +n47001019010 +n47001019011 +n47001019012 +n47001019013 +n47001019014 +n47001019015 +n47001019016 +n47001019017 +n47001019018 +n47001019019 +n47001019020 +n47001019021 +n47001019022 +n47001019023 +n47001019024 +n47001019025 +n47001019026 +n47001019027 +n47001019028 +n47001019029 +n47001020002 +n47001020001 +n47001020003 +n47001020004 +n47001020005 +n47001020006 +n47001020007 +n47001020008 +n47001020009 +n47001020010 +n47001020011 +n47001020012 +n47001020013 +n47001020014 +n47001020015 +n47001020016 +n47001020017 +n47001020018 +n47001020019 +n47001020020 +n47001021002 +n47001021001 +n47001021003 +n47001021004 +n47001021005 +n47001021006 +n47001021007 +n47001021008 +n47001021009 +n47001021010 +n47001021011 +n47001021012 +n47001022001 +n47001022002 +n47001022003 +n47001022004 +n47001022005 +n47001022006 +n47001022007 +n47001022008 +n47001022009 +n47001022010 +n47001022011 +n47001022012 +n47001022013 +n47001022014 +n47001023002 +n47001023001 +n47001023003 +n47001023004 +n47001023005 +n47001023006 +n47001023007 +n47001023008 +n47001023009 +n47001023010 +n47001023011 +n47001023012 +n47001023013 +n47001023014 +n47001023015 +n47001023016 +n47001023017 +n47001024002 +n47001024001 +n47001024003 +n47001024004 +n47001024005 +n47001024006 +n47001024007 +n47001024008 +n47001024009 +n47001024010 +n47001024011 +n47001024012 +n47001024014 +n47001024013 +n47001024015 +n47001024016 +n47002001002 +n47002001001 +n47002001003 +n47002001004 +n47002001005 +n47002001006 +n47002001007 +n47002001008 +n47002001009 +n47002001010 +n47002001011 +n47002001012 +n47002002002 +n47002002001 +n47002002003 +n47002002004 +n47002002005 +n47002002006 +n47002002007 +n47002002008 +n47002002009 +n47002002010 +n47002002011 +n47002002012 +n47002002013 +n47002002014 +n47002002015 +n47002002016 +n47002003001 +n47002003002 +n47002003003 +n47002003004 +n47002003005 +n47002003006 +n47002003007 +n47002003008 +n47002003009 +n47002003010 +n47002003011 +n47002003013 +n47002003014 +n47002003012 +n47002003015 +n47002003016 +n47002003017 +n47002003018 +n47002003019 +n47002003020 +n47002003021 +n47002003022 +n47002003023 +n47002003024 +n47002003025 +n47002004002 +n47002004001 +n47002004003 +n47002004004 +n47002004005 +n47002004006 +n47002004007 +n47002004008 +n47002004009 +n47002004010 +n47002004011 +n47002004012 +n47002004013 +n47002004014 +n47002004015 +n47002004016 +n47002004019 +n47002004020 +n47002004017 +n47002004018 +n47002004021 +n47002004022 +n47002004023 +n47002004024 +n47002004025 +n47002005002 +n47002005001 +n47002005003 +n47002005004 +n47002005005 +n47002005006 +n47002005007 +n47002005008 +n47002005009 +n47002005010 +n47002005014 +n47002005015 +n47002005011 +n47002005012 +n47002005013 +n47002006001 +n47002006002 +n47002006003 +n47002006004 +n47002006005 +n47002006006 +n47002006007 +n47002006008 +n47002006009 +n47002006010 +n47002007001 +n47002007002 +n47002007003 +n47002007004 +n47002007005 +n47002007006 +n47002007007 +n47002007008 +n47002007009 +n47002007010 +n47002007011 +n47002007012 +n47002007013 +n47002007014 +n47002007015 +n47002008001 +n47002008002 +n47002008003 +n47002008004 +n47002008005 +n47002008006 +n47002008007 +n47002009003 +n47002009001 +n47002009002 +n47002009004 +n47002009005 +n47002009006 +n47002009007 +n47002009008 +n47002009009 +n47002009010 +n47002009011 +n47002009012 +n47002009013 +n47002009014 +n47002009015 +n47002010002 +n47002010001 +n47002010003 +n47002010004 +n47002010005 +n47002010007 +n47002010006 +n47002010008 +n47002010009 +n47002010010 +n47002010011 +n47002010012 +n47002010013 +n47002010014 +n47002010015 +n47002010016 +n47002010017 +n47002010018 +n47002011001 +n47002011002 +n47002011003 +n47002011004 +n47002011005 +n47002011006 +n47002011008 +n47002011007 +n47002011009 +n47002011010 +n47002011011 +n47002011012 +n47002012002 +n47002012001 +n47002012003 +n47002012004 +n47002012005 +n47002012006 +n47002012007 +n47002012008 +n47002012009 +n47002012010 +n47002012011 +n47002012012 +n47002012013 +n47002012014 +n47002012015 +n47002012016 +n47002013001 +n47002013002 +n47002013003 +n47002013004 +n47002013005 +n47002013006 +n47002013007 +n47002013008 +n47002013009 +n47002013010 +n47002013011 +n47002013012 +n47002013013 +n47002013014 +n47002013015 +n47002013016 +n47002013017 +n47002013018 +n47002013019 +n47002013020 +n47002014002 +n47002014004 +n47002014001 +n47002014003 +n47002014005 +n47002014006 +n47002014007 +n47002014008 +n47002014009 +n47002014010 +n47002014011 +n47002014012 +n47002014013 +n47002014014 +n47002014015 +n47002014016 +n47002014017 +n47002014018 +n47002014019 +n47002014020 +n47002014021 +n47002014022 +n47002014023 +n47002015001 +n47002015002 +n47002015003 +n47002015004 +n47002015005 +n47002015006 +n47002015007 +n47002015008 +n47002015009 +n47002015010 +n47002015011 +n47002015012 +n47002015013 +n47002016002 +n47002016001 +n47002016003 +n47002016004 +n47002016005 +n47002016006 +n47002016007 +n47002016009 +n47002016008 +n47002016010 +n47002016011 +n47002016012 +n47002016013 +n47002016014 +n47002016015 +n47002016016 +n47002016017 +n47002016018 +n47002016019 +n47002017002 +n47002017001 +n47002017003 +n47002017007 +n47002017008 +n47002017009 +n47002017010 +n47002017011 +n47002017004 +n47002017005 +n47002017006 +n47002017012 +n47002017013 +n47002017014 +n47002017015 +n47002017016 +n47002017017 +n47002017018 +n47002017019 +n47002017020 +n47002017021 +n47002017022 +n47002017023 +n47002017024 +n47003001001 +n47003001002 +n47003001003 +n47003001004 +n47003001005 +n47003001006 +n47003001007 +n47003001008 +n47003001009 +n47003001010 +n47003001011 +n47003001012 +n47003001013 +n47003001014 +n47003001015 +n47003001016 +n47003002001 +n47003002002 +n47003002003 +n47003002004 +n47003002005 +n47003002006 +n47003002007 +n47003002008 +n47003002009 +n47003002010 +n47003002011 +n47003002012 +n47003002013 +n47003002014 +n47003002015 +n47003002016 +n47003003001 +n47003003002 +n47003003003 +n47003003004 +n47003003005 +n47003003006 +n47003003007 +n47003003008 +n47003003009 +n47003003010 +n47003003011 +n47003003012 +n47003003013 +n47003003014 +n47003003015 +n47003003016 +n47003003017 +n47003003018 +n47003003019 +n47003003020 +n47003003021 +n47003003022 +n47003003023 +n47003003024 +n47003004002 +n47003004001 +n47003004003 +n47003004004 +n47003004005 +n47003004006 +n47003004007 +n47003004008 +n47003004009 +n47003004010 +n47003005001 +n47003005002 +n47003005003 +n47003005004 +n47003005005 +n47003005006 +n47003005007 +n47003005008 +n47003005009 +n47003005010 +n47003005011 +n47003005012 +n47003005013 +n47003005014 +n47003005015 +n47003005016 +n47003005017 +n47003005018 +n47003006001 +n47003006002 +n47003006003 +n47003006004 +n47003006005 +n47003006006 +n47003006007 +n47003006008 +n47003006009 +n47003006010 +n47003006011 +n47003006013 +n47003006012 +n47003006014 +n47003006015 +n47003006017 +n47003006016 +n47003006018 +n47003006019 +n47003007002 +n47003007001 +n47003007003 +n47003007004 +n47003007005 +n47003007006 +n47003007007 +n47003007008 +n47003007009 +n47003007010 +n47003007011 +n47003007012 +n47003007013 +n47003007014 +n47003007015 +n47003007016 +n47003007018 +n47003007019 +n47003007020 +n47003007017 +n47003007021 +n47003007022 +n47003007023 +n47003007024 +n47003007025 +n47003007026 +n47003007027 +n47003007028 +n47003007029 +n47003007030 +n47003007031 +n47003007032 +n47003008001 +n47003008002 +n47003008003 +n47003008004 +n47003008005 +n47003008006 +n47003008007 +n47003008008 +n47003008009 +n47003008010 +n47003009002 +n47003009001 +n47003009003 +n47003009004 +n47003009005 +n47003009006 +n47003009007 +n47003009008 +n47003009009 +n47003009010 +n47003009011 +n47003009012 +n47003009013 +n47003009014 +n47003009015 +n47003010002 +n47003010001 +n47003010003 +n47003010004 +n47003010005 +n47003010006 +n47003010007 +n47003010008 +n47003010009 +n47003010010 +n47003010011 +n47003010012 +n47003010013 +n47003010014 +n47003011002 +n47003011001 +n47003011003 +n47003011004 +n47003011005 +n47003011006 +n47003011007 +n47003011008 +n47003011009 +n47003011010 +n47003011011 +n47003011012 +n47003012002 +n47003012001 +n47003012003 +n47003012004 +n47003012005 +n47003012006 +n47003012007 +n47003013001 +n47003013002 +n47003013003 +n47003013004 +n47003013005 +n47003013006 +n47003013007 +n47003013008 +n47003013009 +n47003013010 +n47003013011 +n47003013012 +n47003013013 +n47003013014 +n47003013015 +n47003013016 +n47003013017 +n47003013018 +n47003013019 +n47003013020 +n47003013021 +n47003013022 +n47003014001 +n47003014002 +n47003014003 +n47003014004 +n47003014005 +n47003014007 +n47003014006 +n47003014008 +n47003014009 +n47003014010 +n47003014011 +n47003014012 +n47003014013 +n47003014014 +n47003014015 +n47003014016 +n47003014017 +n47003014018 +n47003014019 +n47003014020 +n47003014021 +n47003014022 +n47003014023 +n47003014024 +n47003014025 +n47003014026 +n47003015001 +n47003015002 +n47003015003 +n47003015005 +n47003015004 +n47003015006 +n47003015007 +n47003015008 +n47003015009 +n47003015010 +n47003015011 +n47003015012 +n47003015013 +n47003016002 +n47003016001 +n47003016003 +n47003016004 +n47003016005 +n47003016006 +n47003016007 +n47003016008 +n47003016009 +n47003017002 +n47003017001 +n47003017003 +n47003017004 +n47003017005 +n47003017006 +n47003017008 +n47003017007 +n47003017009 +n47003017010 +n47003017011 +n47003017012 +n47003018002 +n47003018001 +n47003018003 +n47003018004 +n47003018005 +n47003018006 +n47003018007 +n47003018008 +n47003018009 +n47003018010 +n47003018011 +n47003018012 +n47003018013 +n47003018014 +n47003018015 +n47003018016 +n47003018017 +n47003018018 +n47003018019 +n47003018020 +n47003018021 +n47004001001 +n47004001002 +n47004001003 +n47004001004 +n47004001005 +n47004001006 +n47004001007 +n47004001008 +n47004001009 +n47004001010 +n47004002001 +n47004002002 +n47004002003 +n47004002004 +n47004002005 +n47004002006 +n47004002007 +n47004002008 +n47004002009 +n47004002010 +n47004002011 +n47004002012 +n47004002013 +n47004002014 +n47004002015 +n47004002016 +n47004002017 +n47004002018 +n47004002019 +n47004002020 +n47004002021 +n47004002022 +n47004002023 +n47004002024 +n47004002025 +n47004002026 +n47004002027 +n47004002028 +n47004002029 +n47004002030 +n47004003002 +n47004003001 +n47004003003 +n47004003004 +n47004003005 +n47004003006 +n47004003007 +n47004003008 +n47004003009 +n47004003010 +n47004003011 +n47004003012 +n47004003013 +n47004004001 +n47004004002 +n47004004003 +n47004004004 +n47004004005 +n47004004006 +n47004004007 +n47004004008 +n47004004009 +n47004004010 +n47004004011 +n47004004012 +n47004004013 +n47004004014 +n47004004015 +n47004004016 +n47004004017 +n47004004018 +n47004004019 +n47004004020 +n47004004021 +n47004004022 +n47004004023 +n47004004024 +n47004004025 +n47004004026 +n47004004027 +n47004004028 +n47004004029 +n47004005002 +n47004005001 +n47004005003 +n47004005004 +n47004005005 +n47004005006 +n47004005007 +n47004005008 +n47004005010 +n47004005009 +n47004005011 +n47004005012 +n47004005013 +n47004005014 +n47004006001 +n47004006002 +n47004006003 +n47004006004 +n47004006005 +n47004006006 +n47004006007 +n47004006008 +n47004006009 +n47004006010 +n47004006011 +n47004006012 +n47004006013 +n47004006014 +n47004006015 +n47004006016 +n47004006017 +n47004006018 +n47004006019 +n47004006020 +n47004006021 +n47004006022 +n47004006023 +n47004006024 +n47004006025 +n47004006026 +n47004007002 +n47004007001 +n47004007003 +n47004007004 +n47004007005 +n47004007006 +n47004007007 +n47004007008 +n47004007009 +n47004007010 +n47004007011 +n47004007012 +n47004007013 +n47004007014 +n47004007015 +n47004007016 +n47004007017 +n47004007018 +n47004007019 +n47004007020 +n47004008001 +n47004008002 +n47004008003 +n47004008004 +n47004008005 +n47004008006 +n47004008007 +n47004008008 +n47004008009 +n47004008010 +n47004009001 +n47004009002 +n47004009003 +n47004009004 +n47004009005 +n47004009006 +n47004009007 +n47004009008 +n47004010001 +n47004010002 +n47004010003 +n47004010004 +n47004010005 +n47004010006 +n47004010007 +n47004010008 +n47004010009 +n47004010010 +n47004010011 +n47004010012 +n47004010013 +n47004010014 +n47004010015 +n47004010016 +n47004010017 +n47004010018 +n47004010019 +n47004010020 +n47004011002 +n47004011001 +n47004011003 +n47004011004 +n47004011005 +n47004011006 +n47004011007 +n47004011008 +n47004011009 +n47004011010 +n47004011011 +n47004011012 +n47004011013 +n47004011014 +n47004011015 +n47004011016 +n47004011017 +n47004011018 +n47004011019 +n47004011020 +n47004011021 +n47004011022 +n47004012001 +n47004012002 +n47004012003 +n47004012004 +n47004012005 +n47004012006 +n47004012008 +n47004012007 +n47004012009 +n47004012010 +n47004012011 +n47004013002 +n47004013001 +n47004013003 +n47004013004 +n47004013005 +n47004013006 +n47004013007 +n47004013008 +n47004013009 +n47004013010 +n47004013011 +n47004013012 +n47004013013 +n47004013014 +n47004013015 +n47004013016 +n47004013017 +n47004013018 +n47004013019 +n47004014001 +n47004014002 +n47004014003 +n47004014004 +n47004014005 +n47004014006 +n47004014007 +n47004014008 +n47004014009 +n47004014010 +n47004014011 +n47004014012 +n47004014013 +n47004014014 +n47004014015 +n47004014016 +n47004015002 +n47004015001 +n47004015003 +n47004015004 +n47004015005 +n47004015006 +n47004015007 +n47004015008 +n47004015009 +n47004015010 +n47004015011 +n47004015012 +n47004015013 +n47004015014 +n47004015015 +n47004015016 +n47004015017 +n47004015018 +n47004015019 +n47004015020 +n47004016001 +n47004016002 +n47004016003 +n47004016004 +n47004016005 +n47004016006 +n47004016007 +n47004016008 +n47004016009 +n47004016010 +n47004016011 +n47004016012 +n47004016013 +n47004016014 +n47004016015 +n47004016016 +n47004016017 +n47004016018 +n47004016019 +n47004017002 +n47004017001 +n47004017003 +n47004017004 +n47004017005 +n47004017006 +n47004017007 +n47004017008 +n47004017009 +n47004017010 +n47004017011 +n47004017012 +n47004017013 +n47004017014 +n47004017015 +n47004018001 +n47004018002 +n47004018003 +n47004018004 +n47004018005 +n47004018006 +n47004018007 +n47004018008 +n47004018009 +n47004018011 +n47004018010 +n47004018012 +n47004018013 +n47004018015 +n47004018014 +n47004018016 +n47004018017 +n47004018018 +n47005001002 +n47005001001 +n47005001003 +n47005001004 +n47005001005 +n47005001006 +n47005001007 +n47005001008 +n47005001009 +n47005001010 +n47005001011 +n47005001013 +n47005001014 +n47005001015 +n47005001012 +n47005001016 +n47005001017 +n47005001018 +n47005001019 +n47005001020 +n47005001021 +n47005002002 +n47005002001 +n47005002003 +n47005002004 +n47005002005 +n47005002006 +n47005002007 +n47005002008 +n47005002009 +n47005002010 +n47005002011 +n47005002012 +n47005002013 +n47005003001 +n47005003002 +n47005003003 +n47005003004 +n47005003005 +n47005003006 +n47005003007 +n47005004002 +n47005004001 +n47005004003 +n47005004004 +n47005004005 +n47005004006 +n47005004007 +n47005004008 +n47005004009 +n47005004010 +n47005004011 +n47005004013 +n47005004012 +n47005004014 +n47005004015 +n47005004016 +n47005004017 +n47005004018 +n47005004019 +n47005004020 +n47005004021 +n47005004022 +n47005004023 +n47005005002 +n47005005001 +n47005005003 +n47005005004 +n47005005005 +n47005005006 +n47005005007 +n47005005008 +n47005005009 +n47005005010 +n47005005011 +n47005005012 +n47005005013 +n47005005014 +n47005005015 +n47005006002 +n47005006001 +n47005006003 +n47005006004 +n47005006005 +n47005006006 +n47005006007 +n47005006008 +n47005006009 +n47005006010 +n47005006011 +n47005006012 +n47005006013 +n47005006014 +n47005007003 +n47005007001 +n47005007002 +n47005007004 +n47005007005 +n47005007006 +n47005007007 +n47005008002 +n47005008001 +n47005008003 +n47005008004 +n47005008005 +n47005008006 +n47005008007 +n47005008008 +n47005008009 +n47005008010 +n47005008011 +n47005008012 +n47005008013 +n47005008014 +n47005009001 +n47005009002 +n47005009003 +n47005009004 +n47005009005 +n47005009006 +n47005009007 +n47005009008 +n47005009009 +n47005009010 +n47005010002 +n47005010001 +n47005010003 +n47005010004 +n47005010005 +n47005010007 +n47005010008 +n47005010009 +n47005010010 +n47005010011 +n47005010006 +n47005010012 +n47005010013 +n47005010014 +n47005010015 +n47005010016 +n47005010017 +n47005010018 +n47005010019 +n47005010020 +n47005010021 +n47005010022 +n47005010023 +n47005010024 +n47005010025 +n47005011002 +n47005011001 +n47005011003 +n47005011004 +n47005011005 +n47005011006 +n47005011007 +n47005011008 +n47005011010 +n47005011009 +n47005011011 +n47005011013 +n47005011012 +n47005011014 +n47005011015 +n47005011016 +n47005011017 +n47005011018 +n47005011019 +n47005012001 +n47005012002 +n47005012003 +n47005012004 +n47005012005 +n47005012006 +n47005012007 +n47005012010 +n47005012008 +n47005012009 +n47005012011 +n47005012012 +n47005012013 +n47005012014 +n47005012015 +n47005012016 +n47005012017 +n47005012018 +n47005012019 +n47005012020 +n47005012021 +n47005012022 +n47005012023 +n47005013002 +n47005013001 +n47005013003 +n47005013004 +n47005013005 +n47005013006 +n47005013007 +n47005014002 +n47005014001 +n47005014003 +n47005014004 +n47005014005 +n47005014006 +n47005014007 +n47005014008 +n47005014009 +n47005014010 +n47005014011 +n47005014012 +n47005014013 +n47005014014 +n47005014015 +n47005014016 +n47005014017 +n47005014018 +n47005015001 +n47005015002 +n47005015003 +n47005015004 +n47005015005 +n47005015006 +n47005015007 +n47005015010 +n47005015008 +n47005015009 +n47005015011 +n47005015012 +n47005015013 +n47005015014 +n47005015015 +n47005015016 +n47005015017 +n47005016001 +n47005016002 +n47005016003 +n47005016004 +n47005016005 +n47005016006 +n47005016007 +n47005016008 +n47005016009 +n47005016010 +n47005016011 +n47005016012 +n47005016013 +n47005016014 +n47005016015 +n47005016016 +n47005016017 +n47005016018 +n47005016019 +n47005017001 +n47005017002 +n47005017003 +n47005017004 +n47005017005 +n47005017006 +n47005017007 +n47005017008 +n47005017009 +n47005017010 +n47005017011 +n47005017012 +n47005017013 +n47005018002 +n47005018001 +n47005018003 +n47005018004 +n47005018005 +n47005018006 +n47005018007 +n47005018008 +n47005018009 +n47005018010 +n47005018011 +n47005018012 +n47005018013 +n47005018014 +n47005018015 +n47005018016 +n47005018017 +n47005018018 +n47005018019 +n47005019001 +n47005019002 +n47005019003 +n47005019004 +n47005019008 +n47005019005 +n47005019006 +n47005019007 +n47005019009 +n47005019010 +n47005019011 +n47005019012 +n47005019013 +n47005019014 +n47005019015 +n47005019016 +n47005019017 +n47005019018 +n47005019019 +n47005019020 +n47005019021 +n47005019022 +n47005019023 +n47005020003 +n47005020001 +n47005020002 +n47005020004 +n47005020005 +n47005020006 +n47005020007 +n47005020008 +n47005020009 +n47005020010 +n47005020011 +n47005020012 +n47005020013 +n47005020014 +n47005020015 +n47005020016 +n47005021001 +n47005021002 +n47005021003 +n47005021004 +n47005021005 +n47005021006 +n47005021007 +n47005021008 +n47005021009 +n47005021010 +n47005021011 +n47005021012 +n47005021013 +n47005021014 +n47005021015 +n47006001002 +n47006001001 +n47006001003 +n47006001004 +n47006001005 +n47006001006 +n47006001007 +n47006001008 +n47006001009 +n47006001010 +n47006001011 +n47006001012 +n47006001013 +n47006002002 +n47006002001 +n47006002003 +n47006002004 +n47006002005 +n47006002006 +n47006002007 +n47006002008 +n47006002009 +n47006002010 +n47006002011 +n47006002012 +n47006002013 +n47006002014 +n47006002015 +n47006002016 +n47006002017 +n47006002018 +n47006002019 +n47006002020 +n47006003001 +n47006003005 +n47006003002 +n47006003003 +n47006003004 +n47006003006 +n47006003007 +n47006003008 +n47006003009 +n47006003010 +n47006004001 +n47006004002 +n47006004003 +n47006004004 +n47006004005 +n47006004006 +n47006004007 +n47006004008 +n47006004009 +n47006004010 +n47006004011 +n47006004012 +n47006004013 +n47006004014 +n47006004015 +n47006004016 +n47006004017 +n47006005001 +n47006005002 +n47006005003 +n47006005004 +n47006005005 +n47006005006 +n47006005007 +n47006005008 +n47006005009 +n47006005010 +n47006005011 +n47006005012 +n47006006001 +n47006006002 +n47006006003 +n47006006004 +n47006006005 +n47006006006 +n47006006007 +n47006006008 +n47006006009 +n47006006010 +n47006006011 +n47006006012 +n47006006013 +n47006006014 +n47006007001 +n47006007002 +n47006007003 +n47006007004 +n47006007005 +n47006007006 +n47006007007 +n47006007008 +n47006007009 +n47006007010 +n47006007011 +n47006007012 +n47006007013 +n47006007014 +n47006007015 +n47006008001 +n47006008002 +n47006008003 +n47006008004 +n47006008005 +n47006008006 +n47006008007 +n47006008008 +n47006008009 +n47006008010 +n47006008011 +n47006008012 +n47006009001 +n47006009002 +n47006009003 +n47006009004 +n47006009005 +n47006009006 +n47006009007 +n47006009008 +n47006009009 +n47006009010 +n47006009011 +n47006009012 +n47006009013 +n47006009014 +n47006010001 +n47006010002 +n47006010004 +n47006010003 +n47006010005 +n47006010006 +n47006010007 +n47006010009 +n47006010008 +n47006010010 +n47006010011 +n47006010012 +n47006010013 +n47006010014 +n47006010015 +n47006010016 +n47006011007 +n47006011001 +n47006011002 +n47006011003 +n47006011004 +n47006011005 +n47006011006 +n47006011008 +n47006011009 +n47006011010 +n47006011011 +n47006012001 +n47006012002 +n47006012003 +n47006012004 +n47006012006 +n47006012005 +n47006012007 +n47006012008 +n47006012009 +n47006012010 +n47006013002 +n47006013001 +n47006013003 +n47006013004 +n47006013005 +n47006013006 +n47006013007 +n47006013008 +n47006013009 +n47006013010 +n47006014001 +n47006014002 +n47006014003 +n47006014004 +n47006014006 +n47006014005 +n47006014007 +n47006014008 +n47006014009 +n47006014010 +n47006014011 +n47006014012 +n47006014013 +n47006014014 +n47006014015 +n47006014016 +n47006015002 +n47006015001 +n47006015003 +n47006015004 +n47006015005 +n47006015006 +n47006015007 +n47006015008 +n47006015009 +n47006015010 +n47006015011 +n47006015012 +n47006016002 +n47006016001 +n47006016003 +n47006016004 +n47006016005 +n47006016006 +n47006016007 +n47006016009 +n47006016008 +n47006016010 +n47006016011 +n47006016013 +n47006016012 +n47006016014 +n47006016015 +n47006016016 +n47006016017 +n47006016018 +n47006016019 +n47006016020 +n47006016021 +n47006016022 +n47006016023 +n47006016024 +n47006016025 +n47006016026 +n47006016027 +n47006016028 +n47006016029 +n47006016030 +n47006016031 +n47006016032 +n47006017001 +n47006017002 +n47006017003 +n47006017004 +n47006017005 +n47006017006 +n47006017007 +n47006017010 +n47006017011 +n47006017012 +n47006017013 +n47006017008 +n47006017009 +n47006017014 +n47006017015 +n47006017016 +n47006018001 +n47006018002 +n47006018003 +n47006018004 +n47006018005 +n47006018006 +n47006018007 +n47006018008 +n47006018009 +n47006018010 +n47006018011 +n47006018012 +n47006018013 +n47006018014 +n47006018015 +n47006018016 +n47007001002 +n47007001006 +n47007001003 +n47007001001 +n47007001004 +n47007001005 +n47007001007 +n47007001008 +n47007001009 +n47007001010 +n47007001011 +n47007001012 +n47007001013 +n47007001014 +n47007001015 +n47007001016 +n47007001017 +n47007001018 +n47007001019 +n47007002001 +n47007002002 +n47007002003 +n47007002004 +n47007002005 +n47007002006 +n47007002007 +n47007002008 +n47007003001 +n47007003002 +n47007003003 +n47007003004 +n47007003006 +n47007003005 +n47007003007 +n47007003008 +n47007003009 +n47007003010 +n47007003011 +n47007003012 +n47007003013 +n47007003014 +n47007003015 +n47007003016 +n47007003017 +n47007004001 +n47007004002 +n47007004003 +n47007004004 +n47007004005 +n47007004006 +n47007004007 +n47007004008 +n47007004009 +n47007004010 +n47007004011 +n47007004012 +n47007004013 +n47007004014 +n47007004015 +n47007004016 +n47007004017 +n47007004018 +n47007004019 +n47007004020 +n47007004021 +n47007005002 +n47007005001 +n47007005003 +n47007005004 +n47007005005 +n47007005006 +n47007005007 +n47007005008 +n47007005009 +n47007005010 +n47007005011 +n47007005012 +n47007005013 +n47007005014 +n47007005015 +n47007005016 +n47007005017 +n47007005018 +n47007005019 +n47007005020 +n47007006001 +n47007006002 +n47007006003 +n47007006004 +n47007006005 +n47007006008 +n47007006009 +n47007006006 +n47007006007 +n47007006010 +n47007006011 +n47007006012 +n47007006013 +n47007007003 +n47007007001 +n47007007002 +n47007007004 +n47007007005 +n47007007006 +n47007007007 +n47007007008 +n47007007009 +n47007007010 +n47007007011 +n47007007012 +n47007007013 +n47007007014 +n47007007015 +n47007007016 +n47007007017 +n47007007018 +n47007007019 +n47007007020 +n47007007021 +n47007007022 +n47007007023 +n47007007024 +n47007007025 +n47007007026 +n47007007027 +n47007007028 +n47007007029 +n47007007030 +n47007007031 +n47007007032 +n47007007033 +n47007008001 +n47007008002 +n47007008003 +n47007008004 +n47007008005 +n47007008006 +n47007008007 +n47007008008 +n47007008009 +n47007008010 +n47007008011 +n47007008012 +n47007008013 +n47007008014 +n47007008015 +n47007008016 +n47007008017 +n47007008018 +n47007008019 +n47007008020 +n47007008021 +n47007008022 +n47007008023 +n47007008024 +n47007009001 +n47007009002 +n47007009003 +n47007009004 +n47007009005 +n47007009006 +n47007009007 +n47007009008 +n47007009009 +n47007009010 +n47007009012 +n47007009011 +n47007009013 +n47007009014 +n47007009015 +n47007009016 +n47007009017 +n47007009018 +n47007009019 +n47007009020 +n47007010002 +n47007010001 +n47007010003 +n47007010004 +n47007010005 +n47007010006 +n47007010007 +n47007010008 +n47007010009 +n47007010010 +n47007010012 +n47007010011 +n47007010013 +n47007010014 +n47007010015 +n47007010016 +n47007010017 +n47007011002 +n47007011001 +n47007011003 +n47007011004 +n47007011005 +n47007011006 +n47007011007 +n47007011008 +n47007011010 +n47007011011 +n47007011009 +n47007011012 +n47007011013 +n47007011014 +n47007011015 +n47007011016 +n47007011017 +n47007011018 +n47007011019 +n47007011020 +n47007011021 +n47007011022 +n47007011023 +n47007011024 +n47007011025 +n47007011026 +n47007011027 +n47007011028 +n47007011029 +n47007011030 +n47007011031 +n47007011032 +n47007012001 +n47007012002 +n47007012003 +n47007012004 +n47007012005 +n47007012006 +n47007012007 +n47007012008 +n47007012009 +n47007012010 +n47007012011 +n47007012012 +n47007012013 +n47007012014 +n47007012015 +n47007012016 +n47007012017 +n47007012018 +n47007012019 +n47007012020 +n47007012021 +n47007012022 +n47007012023 +n47007012024 +n47007012025 +n47007012026 +n47007012027 +n47007012028 +n47007013001 +n47007013002 +n47007013003 +n47007013005 +n47007013004 +n47007013006 +n47007013007 +n47007013008 +n47007013009 +n47007013010 +n47007013011 +n47007013012 +n47007013013 +n47007013014 +n47007013015 +n47007013016 +n47007013017 +n47007013018 +n47007013019 +n47007013020 +n47007013021 +n47007013022 +n47007013023 +n47007014001 +n47007014002 +n47007014003 +n47007014004 +n47007014005 +n47007014006 +n47007014007 +n47007014008 +n47007014009 +n47007014010 +n47007014011 +n47007014012 +n47007014013 +n47007014014 +n47007014015 +n47007014016 +n47007014017 +n47007014018 +n47007014019 +n47007014020 +n47007014021 +n47007014022 +n47007014023 +n47007014024 +n47007014025 +n47007015001 +n47007015002 +n47007015003 +n47007015004 +n47007015005 +n47007015006 +n47007015007 +n47007015008 +n47007015009 +n47007015010 +n47007015011 +n47007015012 +n47007015013 +n47007015014 +n47007015015 +n47007015016 +n47007015017 +n47007015018 +n47007015019 +n47007015020 +n47007016001 +n47007016002 +n47007016003 +n47007016004 +n47007016005 +n47007016006 +n47007016007 +n47008001002 +n47008001004 +n47008001001 +n47008001003 +n47008001005 +n47008001006 +n47008001007 +n47008001008 +n47008001009 +n47008001010 +n47008001011 +n47008001012 +n47008001013 +n47008001014 +n47008001015 +n47008002001 +n47008002002 +n47008002003 +n47008002004 +n47008002005 +n47008002006 +n47008002007 +n47008002008 +n47008002009 +n47008002010 +n47008002011 +n47008002012 +n47008002013 +n47008002014 +n47008002015 +n47008002016 +n47008002017 +n47008002018 +n47008002019 +n47008002020 +n47008002021 +n47008002022 +n47008002023 +n47008003004 +n47008003001 +n47008003002 +n47008003003 +n47008003005 +n47008003006 +n47008003007 +n47008003008 +n47008004001 +n47008004002 +n47008004003 +n47008004004 +n47008004005 +n47008004006 +n47008004007 +n47008004008 +n47008004009 +n47008004010 +n47008004011 +n47008004012 +n47008004013 +n47008004014 +n47008004015 +n47008004016 +n47008005001 +n47008005002 +n47008005003 +n47008005004 +n47008005005 +n47008005006 +n47008005007 +n47008005008 +n47008005009 +n47008005010 +n47008005011 +n47008005012 +n47008005013 +n47008005014 +n47008005015 +n47008006001 +n47008006002 +n47008006003 +n47008006004 +n47008006005 +n47008006006 +n47008006007 +n47008006008 +n47008006009 +n47008006010 +n47008006011 +n47008006012 +n47008006013 +n47008006014 +n47008006015 +n47008006016 +n47008006017 +n47008007001 +n47008007002 +n47008007003 +n47008007004 +n47008007005 +n47008007006 +n47008007007 +n47008007008 +n47008007009 +n47008007010 +n47008007011 +n47008007012 +n47008007013 +n47008007014 +n47008007015 +n47008007016 +n47008007017 +n47008007018 +n47008007019 +n47008007020 +n47008007021 +n47008007022 +n47008007023 +n47008007024 +n47008007025 +n47008007026 +n47008007027 +n47008008001 +n47008008002 +n47008008003 +n47008008004 +n47008008005 +n47008008006 +n47008008007 +n47008008008 +n47008008009 +n47008008010 +n47008008011 +n47008008012 +n47008008013 +n47008008014 +n47008008015 +n47008008016 +n47008009002 +n47008009001 +n47008009003 +n47008009004 +n47008009005 +n47008009006 +n47008009007 +n47008009008 +n47008009009 +n47008009010 +n47008009011 +n47008009012 +n47008009013 +n47008009014 +n47008009015 +n47008009016 +n47008009017 +n47008009018 +n47008009019 +n47008009020 +n47008009021 +n47008010001 +n47008010002 +n47008010003 +n47008010004 +n47008010005 +n47008010007 +n47008010006 +n47008010008 +n47008010009 +n47008010010 +n47008010011 +n47008010012 +n47008010013 +n47008010014 +n47008010015 +n47008010016 +n47008010017 +n47008010018 +n47008010019 +n47008010020 +n47008010021 +n47008011002 +n47008011001 +n47008011003 +n47008011004 +n47008011005 +n47008011006 +n47008011007 +n47008011008 +n47008011009 +n47008011010 +n47008011011 +n47008011012 +n47008011013 +n47008011014 +n47008011015 +n47008011016 +n47008011017 +n47008011018 +n47008011019 +n47008012002 +n47008012001 +n47008012003 +n47008012004 +n47008012005 +n47008012006 +n47008012007 +n47008012008 +n47008012009 +n47008012010 +n47008012011 +n47008012012 +n47008012013 +n47008013002 +n47008013001 +n47008013003 +n47008013004 +n47008013005 +n47008013006 +n47008013007 +n47008013008 +n47008013009 +n47008013010 +n47008014001 +n47008014002 +n47008014003 +n47008014004 +n47008014005 +n47008014006 +n47008014007 +n47008014008 +n47008014009 +n47008014010 +n47008014011 +n47008014012 +n47008014013 +n47008014014 +n47008014015 +n47008014016 +n47008014017 +n47008014018 +n47008014019 +n47008014020 +n47008014021 +n47008014022 +n47008014023 +n47008014024 +n47008015001 +n47008015002 +n47008015003 +n47008015004 +n47008015005 +n47008015006 +n47008015007 +n47008015008 +n47008015009 +n47008015010 +n47008015011 +n47008015012 +n47008015013 +n47008016002 +n47008016001 +n47008016003 +n47008016004 +n47008016005 +n47008016006 +n47008016007 +n47008016008 +n47008016009 +n47008016010 +n47008016011 +n47008016012 +n47008016013 +n47008016014 +n47008016015 +n47008017001 +n47008017003 +n47008017002 +n47008017004 +n47008017005 +n47008017007 +n47008017006 +n47008017008 +n47008017009 +n47008017010 +n47008017011 +n47008017012 +n47008018002 +n47008018001 +n47008018003 +n47008018004 +n47008018005 +n47008018006 +n47008018007 +n47008018008 +n47008018009 +n47008018010 +n47008018011 +n47008018012 +n47008018013 +n47008018014 +n47008018015 +n47008018016 +n47008019003 +n47008019001 +n47008019002 +n47008019004 +n47008019005 +n47008019006 +n47008019007 +n47008019008 +n47008019009 +n47008019010 +n47008019011 +n47008019012 +n47008019013 +n47008019014 +n47008019015 +n47008019016 +n47008019017 +n47008019018 +n47008019019 +n47008019020 +n47008019021 +n47008019022 +n47008019023 +n47008019024 +n47008019025 +n47008019026 +n47008019027 +n47008019028 +n47008020001 +n47008020002 +n47008020003 +n47008020004 +n47008020005 +n47008020006 +n47008020007 +n47008020008 +n47008020009 +n47008020010 +n47008020011 +n47008020012 +n47008020013 +n47008020014 +n47008021002 +n47008021001 +n47008021003 +n47008021004 +n47008021005 +n47008021006 +n47008021007 +n47008021008 +n47008021009 +n47008021010 +n47008021011 +n47008022002 +n47008022001 +n47008022003 +n47008022004 +n47008022005 +n47008022006 +n47008022007 +n47008022008 +n47008022009 +n47008022010 +n47008022011 +n47008022012 +n47008022013 +n47008022015 +n47008022014 +n47008022016 +n47008022017 +n47008022018 +n47008022019 +n47008022020 +n47008022021 +n47008022022 +n47008023001 +n47008023002 +n47008023003 +n47008023004 +n47008023005 +n47008023006 +n47008023007 +n47008023008 +n47008023009 +n47008023010 +n47008023011 +n47008023012 +n47008023013 +n47008023014 +n47008023015 +n47008023016 +n47008024002 +n47008024001 +n47008024003 +n47008024004 +n47008024005 +n47008024006 +n47008024007 +n47008024008 +n47008024009 +n47008024010 +n47008024011 +n47008024012 +n47008024013 +n47008024014 +n47008024015 +n47008024016 +n47008024017 +n47008024018 +n47009001003 +n47009001002 +n47009001001 +n47009001004 +n47009001005 +n47009001006 +n47009001007 +n47009001008 +n47009001009 +n47009001010 +n47009001011 +n47009001012 +n47009001013 +n47009001014 +n47009001015 +n47009002002 +n47009002001 +n47009002003 +n47009002004 +n47009002005 +n47009002006 +n47009002007 +n47009002008 +n47009002009 +n47009002010 +n47009002011 +n47009002012 +n47009002013 +n47009002014 +n47009002015 +n47009002016 +n47009002017 +n47009002018 +n47009002019 +n47009002020 +n47009002021 +n47009002022 +n47009003002 +n47009003001 +n47009003003 +n47009003004 +n47009003005 +n47009003006 +n47009003007 +n47009003008 +n47009003009 +n47009003010 +n47009003011 +n47009003012 +n47009003013 +n47009003014 +n47009003015 +n47009003016 +n47009003017 +n47009003018 +n47009003019 +n47009003020 +n47009003021 +n47009003022 +n47009004001 +n47009004002 +n47009004003 +n47009004004 +n47009004005 +n47009004006 +n47009004007 +n47009004008 +n47009004009 +n47009004010 +n47009004011 +n47009004012 +n47009004013 +n47009004014 +n47009004015 +n47009004016 +n47009004017 +n47009004018 +n47009004019 +n47009004020 +n47009004021 +n47009005002 +n47009005001 +n47009005003 +n47009005004 +n47009005005 +n47009005006 +n47009005007 +n47009005008 +n47009005009 +n47009005010 +n47009005011 +n47009005012 +n47009005013 +n47009005014 +n47009005015 +n47009005016 +n47009005017 +n47009005018 +n47009005019 +n47009005020 +n47009005021 +n47009005022 +n47009005023 +n47009005024 +n47009005025 +n47009005026 +n47009006002 +n47009006001 +n47009006003 +n47009006004 +n47009006005 +n47009006006 +n47009006007 +n47009006008 +n47009006009 +n47009006010 +n47009006011 +n47009006012 +n47009006013 +n47009006014 +n47009006015 +n47009006016 +n47009006017 +n47009007001 +n47009007002 +n47009007003 +n47009007004 +n47009007005 +n47009007006 +n47009007007 +n47009007008 +n47009007009 +n47009007010 +n47009007011 +n47009007013 +n47009007012 +n47009007014 +n47009007015 +n47009007016 +n47009007017 +n47009008002 +n47009008001 +n47009008003 +n47009008004 +n47009008005 +n47009008006 +n47009008007 +n47009008008 +n47009008009 +n47009008010 +n47009008011 +n47009008012 +n47009008013 +n47009008014 +n47009008015 +n47009008016 +n47009008017 +n47009008018 +n47009008019 +n47009008020 +n47009008021 +n47009009001 +n47009009002 +n47009009003 +n47009009004 +n47009009005 +n47009009006 +n47009009007 +n47009009008 +n47009009009 +n47009009010 +n47009009011 +n47009009012 +n47009009013 +n47009010002 +n47009010001 +n47009010003 +n47009010004 +n47009010005 +n47009010006 +n47009010007 +n47009010008 +n47009010009 +n47009010010 +n47009010011 +n47009010012 +n47009010013 +n47009010014 +n47009010015 +n47009010016 +n47009010017 +n47009010018 +n47009010019 +n47009010020 +n47009010021 +n47009010022 +n47009010023 +n47009011001 +n47009011002 +n47009011003 +n47009011004 +n47009011005 +n47009011006 +n47009011007 +n47009011008 +n47009011009 +n47009011010 +n47009011011 +n47009011012 +n47009011013 +n47009012001 +n47009012002 +n47009012003 +n47009012004 +n47009012005 +n47009012006 +n47009012007 +n47009012008 +n47009012009 +n47009012010 +n47009012011 +n47009012012 +n47009012013 +n47009012014 +n47009012015 +n47009012016 +n47009012017 +n47009012018 +n47009012019 +n47009012020 +n47009012021 +n47009012022 +n47009013001 +n47009013002 +n47009013003 +n47009013004 +n47009013005 +n47009013006 +n47009013007 +n47009013008 +n47009013009 +n47009013010 +n47009013011 +n47009013012 +n47009013013 +n47009013014 +n47009013015 +n47009013016 +n47009013017 +n47009013018 +n47009013019 +n47009013020 +n47009013021 +n47009013022 +n47009013023 +n47009013024 +n47009013025 +n47009013026 +n47009013027 +n47009013028 +n47009013029 +n47009014001 +n47009014002 +n47009014003 +n47009014004 +n47009014005 +n47009014006 +n47009014007 +n47009014008 +n47009014009 +n47009014010 +n47009014011 +n47009014012 +n47009014013 +n47009014014 +n47009014015 +n47009015001 +n47009015002 +n47009015003 +n47009015004 +n47009015005 +n47009015006 +n47009015007 +n47009015008 +n47010001002 +n47010001001 +n47010001003 +n47010001004 +n47010001005 +n47010001006 +n47010001007 +n47010001008 +n47010001009 +n47010001010 +n47010001011 +n47010001012 +n47010001013 +n47010001014 +n47010001017 +n47010001015 +n47010001016 +n47010001018 +n47010001019 +n47010001020 +n47010001022 +n47010001021 +n47010001023 +n47010001024 +n47010001025 +n47010002002 +n47010002001 +n47010002003 +n47010002004 +n47010002005 +n47010002006 +n47010002007 +n47010002008 +n47010002009 +n47010002010 +n47010002011 +n47010002012 +n47010002013 +n47010002014 +n47010002015 +n47010002016 +n47010002017 +n47010002018 +n47010002019 +n47010002020 +n47010003003 +n47010003001 +n47010003002 +n47010003004 +n47010003005 +n47010003006 +n47010003007 +n47010003008 +n47010004002 +n47010004001 +n47010004003 +n47010004004 +n47010004005 +n47010004006 +n47010004007 +n47010004008 +n47010004009 +n47010004010 +n47010004011 +n47010004012 +n47010004013 +n47010004014 +n47010004015 +n47010004017 +n47010004016 +n47010005001 +n47010005002 +n47010005003 +n47010005004 +n47010005005 +n47010005006 +n47010005007 +n47010005008 +n47010005009 +n47010005010 +n47010005011 +n47010005012 +n47010005013 +n47010005014 +n47010005015 +n47010005016 +n47010005017 +n47010005018 +n47010006001 +n47010006002 +n47010006003 +n47010006004 +n47010006005 +n47010006006 +n47010006007 +n47010006008 +n47010006009 +n47010006010 +n47010006011 +n47010006012 +n47010007001 +n47010007002 +n47010007003 +n47010007004 +n47010007005 +n47010007006 +n47010007007 +n47010007008 +n47010007009 +n47010007010 +n47010007011 +n47010007012 +n47010007013 +n47010007014 +n47010007015 +n47010007016 +n47010007017 +n47010007018 +n47010007019 +n47010007020 +n47010007021 +n47010007022 +n47010008003 +n47010008001 +n47010008002 +n47010008004 +n47010008005 +n47010008006 +n47010008007 +n47010008008 +n47010008009 +n47010008010 +n47010008011 +n47010008012 +n47010008013 +n47010008014 +n47010008015 +n47010008016 +n47010008017 +n47010008018 +n47010008019 +n47010008020 +n47010008021 +n47010008022 +n47010008023 +n47010009001 +n47010009002 +n47010009003 +n47010009004 +n47010009005 +n47010009006 +n47010009007 +n47010009008 +n47010009009 +n47010009010 +n47010010001 +n47010010005 +n47010010004 +n47010010002 +n47010010003 +n47010010006 +n47010010007 +n47010010008 +n47010010010 +n47010010009 +n47010010011 +n47010010012 +n47010010013 +n47010010014 +n47010010015 +n47010010016 +n47010010017 +n47010010018 +n47010011001 +n47010011002 +n47010011003 +n47010011004 +n47010011005 +n47010011006 +n47010011007 +n47010011008 +n47010011009 +n47010011010 +n47010011011 +n47010011012 +n47010011013 +n47010011014 +n47010011015 +n47010011016 +n47010011017 +n47010012002 +n47010012001 +n47010012003 +n47010012004 +n47010012005 +n47010012006 +n47010012007 +n47010012008 +n47010012009 +n47010012010 +n47010012011 +n47010012012 +n47010012013 +n47010012014 +n47010012015 +n47010012016 +n47010012017 +n47010012018 +n47010012019 +n47010012020 +n47010012021 +n47010012022 +n47010012023 +n47010013002 +n47010013001 +n47010013003 +n47010013004 +n47010013005 +n47010013006 +n47010013007 +n47010013008 +n47010013009 +n47010013010 +n47010013011 +n47010013012 +n47010013013 +n47010013014 +n47010013015 +n47010013016 +n47010013017 +n47010013018 +n47010013019 +n47010013020 +n47010013021 +n47010013022 +n47010013023 +n47010014002 +n47010014001 +n47010014003 +n47010014004 +n47010014005 +n47010014006 +n47010014007 +n47010014008 +n47010014009 +n47010014011 +n47010014010 +n47010014012 +n47010014013 +n47010014014 +n47010014015 +n47010014016 +n47010014017 +n47010014018 +n47010014019 +n47010015001 +n47010015002 +n47010015003 +n47010015004 +n47010015005 +n47010015006 +n47010015007 +n47010015008 +n47010015010 +n47010015009 +n47010015011 +n47010015012 +n47010015013 +n47010015014 +n47010015015 +n47010015016 +n47010015017 +n47010015018 +n47010015019 +n47010015020 +n47010015021 +n47010015022 +n47010015023 +n47010015024 +n47010016001 +n47010016002 +n47010016003 +n47010016004 +n47010016005 +n47010016006 +n47010016007 +n47010016008 +n47010016009 +n47010016010 +n47010016011 +n47010016012 +n47010016013 +n47010017002 +n47010017001 +n47010017003 +n47010017004 +n47010017005 +n47010017006 +n47010018002 +n47010018001 +n47010018003 +n47010018004 +n47010018005 +n47010018006 +n47010018007 +n47010018008 +n47010018009 +n47010018010 +n47010018011 +n47010018012 +n47010018013 +n47011001001 +n47011001002 +n47011001003 +n47011001004 +n47011001005 +n47011001006 +n47011001007 +n47011001008 +n47011001009 +n47011001010 +n47011002002 +n47011002001 +n47011002003 +n47011002004 +n47011002005 +n47011002007 +n47011002006 +n47011002008 +n47011002009 +n47011002010 +n47011002011 +n47011002012 +n47011002013 +n47011002014 +n47011002015 +n47011003002 +n47011003001 +n47011003003 +n47011003004 +n47011003005 +n47011003006 +n47011003007 +n47011003008 +n47011003009 +n47011003010 +n47011003011 +n47011003012 +n47011003013 +n47011003014 +n47011003015 +n47011003016 +n47011003017 +n47011003018 +n47011003019 +n47011003020 +n47011003021 +n47011003022 +n47011003023 +n47011003024 +n47011003025 +n47011003026 +n47011004003 +n47011004002 +n47011004001 +n47011004004 +n47011004005 +n47011004008 +n47011004006 +n47011004007 +n47011004009 +n47011004010 +n47011004011 +n47011004012 +n47011004015 +n47011004013 +n47011004014 +n47011004016 +n47011004017 +n47011004018 +n47011004019 +n47011004020 +n47011004021 +n47011004022 +n47011004023 +n47011004024 +n47011004025 +n47011004026 +n47011005002 +n47011005001 +n47011005003 +n47011005004 +n47011005005 +n47011005006 +n47011005007 +n47011006002 +n47011006001 +n47011006003 +n47011006004 +n47011006005 +n47011006006 +n47011006007 +n47011006008 +n47011006009 +n47011006010 +n47011006011 +n47011006012 +n47011006013 +n47011006014 +n47011006015 +n47011006016 +n47011006017 +n47011006018 +n47011007001 +n47011007002 +n47011007003 +n47011007004 +n47011007005 +n47011007006 +n47011007007 +n47011007008 +n47011007009 +n47011007010 +n47011007011 +n47011007012 +n47011007013 +n47011007014 +n47011007015 +n47011007016 +n47011008001 +n47011008002 +n47011008003 +n47011008004 +n47011008005 +n47011008006 +n47011008007 +n47011008008 +n47011008009 +n47011009001 +n47011009002 +n47011009003 +n47011009004 +n47011009005 +n47011009006 +n47011009007 +n47011009008 +n47011009009 +n47011009011 +n47011009010 +n47011009012 +n47011009013 +n47011009014 +n47011009015 +n47011009016 +n47011009017 +n47011009018 +n47011009019 +n47011009020 +n47011009021 +n47011009022 +n47011009023 +n47011009024 +n47011009025 +n47011009026 +n47011009027 +n47011009028 +n47011010001 +n47011010002 +n47011010003 +n47011010004 +n47011010005 +n47011010006 +n47011010007 +n47011010008 +n47011010009 +n47011010010 +n47011010011 +n47011010012 +n47011010013 +n47011010014 +n47011010015 +n47011010016 +n47011010017 +n47011010018 +n47011011001 +n47011011002 +n47011011003 +n47011011004 +n47011011005 +n47011011006 +n47011011007 +n47011011008 +n47011011009 +n47011012002 +n47011012001 +n47011012003 +n47011012004 +n47011012005 +n47011012006 +n47011012007 +n47011012008 +n47011012009 +n47011012010 +n47011012011 +n47011012012 +n47011012013 +n47011012014 +n47011012015 +n47011012016 +n47011012017 +n47011012018 +n47011012019 +n47011012020 +n47011013002 +n47011013001 +n47011013003 +n47011013004 +n47011013005 +n47011013006 +n47011013007 +n47011013008 +n47011013009 +n47011013010 +n47011014001 +n47011014002 +n47011014003 +n47011014005 +n47011014004 +n47011014006 +n47011014007 +n47011014008 +n47011014009 +n47011014010 +n47011014011 +n47011015003 +n47011015001 +n47011015002 +n47011015004 +n47011015005 +n47011015006 +n47011015007 +n47011015008 +n47011015009 +n47011015010 +n47011015011 +n47011015012 +n47011015013 +n47011015014 +n47011015015 +n47011015016 +n47011015017 +n47011015018 +n47011015019 +n47011015020 +n47011016001 +n47011016002 +n47011016003 +n47011016004 +n47011016006 +n47011016005 +n47011016007 +n47011016008 +n47011016010 +n47011016009 +n47011016011 +n47011016012 +n47011016013 +n47011016014 +n47011016015 +n47011016016 +n47011016017 +n47011016018 +n47011016019 +n47011016020 +n47011016021 +n47011017001 +n47011017002 +n47011017003 +n47011017004 +n47011017005 +n47011017006 +n47011017007 +n47011017008 +n47011017009 +n47011017010 +n47011017011 +n47011017012 +n47011017013 +n47011017014 +n47011017015 +n47011017016 +n47011018001 +n47011018002 +n47011018003 +n47011018004 +n47011018005 +n47011018006 +n47011018007 +n47011018008 +n47011019002 +n47011019001 +n47011019003 +n47011019004 +n47011019005 +n47011019006 +n47011019007 +n47011020002 +n47011020001 +n47011020003 +n47011020004 +n47011020005 +n47011020006 +n47011020007 +n47011020008 +n47011020009 +n47011020010 +n47011020011 +n47011020012 +n47011020013 +n47011020014 +n47011020015 +n47011020016 +n47011020017 +n47011020018 +n47011020019 +n47011020020 +n47011020021 +n47011021001 +n47011021002 +n47011021003 +n47011021004 +n47011021005 +n47011021006 +n47011021007 +n47011021010 +n47011021011 +n47011021008 +n47011021009 +n47011021012 +n47011021013 +n47011021014 +n47011021015 +n47011021016 +n47011021017 +n47011021018 +n47011022001 +n47011022002 +n47011022003 +n47011022004 +n47011022005 +n47011022006 +n47011022007 +n47011022008 +n47011022009 +n47011022010 +n47011023001 +n47011023002 +n47011023003 +n47011023004 +n47011023005 +n47011023006 +n47011023007 +n47011023008 +n47011023009 +n47011023010 +n47011023011 +n47011023012 +n47011023013 +n47011023014 +n47011023015 +n47011023016 +n47011023017 +n47011023018 +n47011023019 +n47011024001 +n47011024002 +n47011024003 +n47011024004 +n47011024005 +n47011024006 +n47011024007 +n47011025001 +n47011025002 +n47011025003 +n47011025004 +n47011025005 +n47011025006 +n47011025007 +n47011025008 +n47011025009 +n47011025010 +n47011025011 +n47011026001 +n47011026002 +n47011026003 +n47011026004 +n47011026005 +n47011026006 +n47011026007 +n47011026008 +n47011026009 +n47011026010 +n47011026011 +n47011026012 +n47011026013 +n47011026014 +n47011026015 +n47011026016 +n47011026017 +n47011026018 +n47011026019 +n47011026020 +n47011026021 +n47011026022 +n47011026023 +n47011026024 +n47011027001 +n47011027002 +n47011027003 +n47011027004 +n47011027005 +n47011027006 +n47011027007 +n47011027008 +n47011027009 +n47011027010 +n47011027011 +n47011027012 +n47011027013 +n47011027014 +n47011027015 +n47011027016 +n47011027017 +n47011028001 +n47011028002 +n47011028003 +n47011028004 +n47011028005 +n47011028006 +n47011028007 +n47011028008 +n47011028009 +n47011028010 +n47011028011 +n47011028012 +n47011028013 +n47011028014 +n47011029001 +n47011029002 +n47011029003 +n47011029004 +n47011029005 +n47011029006 +n47011029007 +n47011029008 +n47011029009 +n47011029010 +n47011029011 +n47011030001 +n47011030002 +n47011030003 +n47011030004 +n47011030005 +n47011030006 +n47011030007 +n47011030008 +n47011031001 +n47011031002 +n47011031003 +n47011031004 +n47011031005 +n47011031006 +n47011031007 +n47011031009 +n47011031010 +n47011031011 +n47011031012 +n47011031013 +n47011031014 +n47011031008 +n47011031015 +n47011031016 +n47011031017 +n47011032001 +n47011032002 +n47011032003 +n47011032004 +n47011032005 +n47011032006 +n47011032007 +n47011032008 +n47011032009 +n47011032010 +n47011032011 +n47011032012 +n47011032013 +n47011033001 +n47011033002 +n47011033003 +n47011033004 +n47011033005 +n47011033006 +n47011033007 +n47011033008 +n47011033009 +n47011033010 +n47011033011 +n47011033012 +n47011033013 +n47011033014 +n47012001001 +n47012001002 +n47012001005 +n47012001003 +n47012001004 +n47012001007 +n47012001006 +n47012001008 +n47012001009 +n47012001010 +n47012001011 +n47012001012 +n47012002001 +n47012002002 +n47012002003 +n47012002004 +n47012002008 +n47012002009 +n47012002010 +n47012002011 +n47012002012 +n47012002013 +n47012002014 +n47012002015 +n47012002016 +n47012002017 +n47012002018 +n47012002019 +n47012002020 +n47012002021 +n47012002005 +n47012002006 +n47012002007 +n47012002022 +n47012002023 +n47012002024 +n47012002025 +n47012002026 +n47012002027 +n47012003001 +n47012003002 +n47012003003 +n47012003004 +n47012003005 +n47012003006 +n47012003007 +n47012003008 +n47012003009 +n47012003010 +n47012003011 +n47012003012 +n47012003013 +n47012003014 +n47012003015 +n47012003016 +n47012003017 +n47012004001 +n47012004002 +n47012004003 +n47012004004 +n47012004005 +n47012004006 +n47012004007 +n47012004008 +n47012004009 +n47012004010 +n47012004014 +n47012004011 +n47012004012 +n47012004013 +n47012005001 +n47012005002 +n47012005003 +n47012005004 +n47012005006 +n47012005005 +n47012005007 +n47012005008 +n47012005009 +n47012005010 +n47012005011 +n47012005012 +n47012005013 +n47012005014 +n47012006002 +n47012006001 +n47012006003 +n47012006004 +n47012006005 +n47012006006 +n47012006007 +n47012006009 +n47012006008 +n47012006010 +n47012006012 +n47012006011 +n47012006013 +n47012006014 +n47012006015 +n47012006016 +n47012006017 +n47012006018 +n47012006019 +n47012006020 +n47012006021 +n47012006022 +n47012006023 +n47012006024 +n47012006025 +n47012007001 +n47012007002 +n47012007003 +n47012007004 +n47012007005 +n47012007006 +n47012007007 +n47012007008 +n47012007009 +n47012007010 +n47012007011 +n47012007012 +n47012007013 +n47012007014 +n47012007015 +n47012007016 +n47012007017 +n47012007018 +n47012007019 +n47012007020 +n47012007021 +n47012007022 +n47012008001 +n47012008002 +n47012008003 +n47012008004 +n47012008005 +n47012008006 +n47012008007 +n47012008008 +n47012008009 +n47012008010 +n47012009001 +n47012009002 +n47012009003 +n47012009004 +n47012009005 +n47012009006 +n47012009007 +n47012009008 +n47012009010 +n47012009009 +n47012009011 +n47012009012 +n47012009013 +n47012009014 +n47012009016 +n47012009015 +n47012009017 +n47012009018 +n47012009019 +n47012009020 +n47012009021 +n47012009022 +n47012009023 +n47012009024 +n47012009025 +n47012009026 +n47012009027 +n47012009028 +n47012009029 +n47012010001 +n47012010002 +n47012010003 +n47012010004 +n47012010005 +n47012010006 +n47012010007 +n47012010008 +n47012010009 +n47012010010 +n47012010011 +n47012010012 +n47012010013 +n47012010014 +n47012010016 +n47012010015 +n47012010017 +n47012010018 +n47012010019 +n47012010020 +n47012011001 +n47012011002 +n47012011003 +n47012011004 +n47012011005 +n47012011007 +n47012011006 +n47012011008 +n47012011009 +n47012011010 +n47012011011 +n47012011013 +n47012011012 +n47012011014 +n47012011015 +n47012011016 +n47012011017 +n47012011018 +n47012011019 +n47012011020 +n47012011021 +n47012012002 +n47012012001 +n47012012003 +n47012012004 +n47012012005 +n47012012006 +n47012012007 +n47012012008 +n47012012009 +n47012012010 +n47012012011 +n47012012013 +n47012012012 +n47012012014 +n47012012015 +n47012012016 +n47012012017 +n47012013002 +n47012013001 +n47012013003 +n47012013004 +n47012013005 +n47012013006 +n47012013007 +n47012013008 +n47012013009 +n47012013010 +n47012013011 +n47012013012 +n47012013013 +n47012013014 +n47012013015 +n47012013016 +n47012013017 +n47012013018 +n47012013019 +n47012013020 +n47012013021 +n47012013022 +n47012014001 +n47012014002 +n47012014003 +n47012014004 +n47012014005 +n47012014006 +n47012014007 +n47012014008 +n47012014009 +n47012014010 +n47012014011 +n47012014013 +n47012014012 +n47012014014 +n47012014015 +n47012014016 +n47012014017 +n47012014018 +n47012014020 +n47012014019 +n47012014021 +n47012014022 +n47012014023 +n47012014024 +n47012014025 +n47012014026 +n47012014027 +n47012014028 +n47012014029 +n47012014030 +n47012014031 +n47012015002 +n47012015001 +n47012015003 +n47012015004 +n47012015005 +n47012015006 +n47012015007 +n47012015008 +n47012015009 +n47012015010 +n47012015011 +n47012015012 +n47012015013 +n47012015014 +n47012015015 +n47012015016 +n47012016002 +n47012016001 +n47012016003 +n47012016004 +n47012016005 +n47012016006 +n47012016007 +n47012016008 +n47012016009 +n47012016010 +n47012016011 +n47012016012 +n47012017001 +n47012017002 +n47012017003 +n47012017004 +n47012017005 +n47012017006 +n47012017007 +n47012017008 +n47012017009 +n47012017010 +n47012018001 +n47012018002 +n47012018003 +n47012018004 +n47012018005 +n47012018006 +n47012018007 +n47012018008 +n47012018009 +n47012018010 +n47012018011 +n47012018012 +n47012018013 +n47012018014 +n47012018015 +n47012018016 +n47012018017 +n47012018018 +n47012018019 +n47012019001 +n47012019002 +n47012019003 +n47012019004 +n47012019005 +n47012019006 +n47012019007 +n47012019008 +n47012019009 +n47012019010 +n47012019012 +n47012019014 +n47012019011 +n47012019013 +n47012019015 +n47012019016 +n47012019017 +n47012019018 +n47012020002 +n47012020001 +n47012020003 +n47012020004 +n47012020005 +n47012020006 +n47012020007 +n47012020008 +n47012020009 +n47012020010 +n47012020011 +n47012020012 +n47012020013 +n47012020014 +n47012020015 +n47012020016 +n47012020017 +n47012020018 +n47012020019 +n47012020020 +n47012020021 +n47012020022 +n47012020023 +n47012020024 +n47012020025 +n47012020026 +n47012021001 +n47012021002 +n47012021003 +n47012021004 +n47012021005 +n47012021006 +n47012021007 +n47012021008 +n47012021009 +n47012021010 +n47012021011 +n47012021012 +n47012021013 +n47012021014 +n47012021015 +n47012021016 +n47012021017 +n47012021018 +n47012021019 +n47012021020 +n47012021021 +n47012021022 +n47012021023 +n47012021024 +n47012021025 +n47012021026 +n47012021027 +n47012021028 +n47013001001 +n47013001002 +n47013001003 +n47013001004 +n47013001005 +n47013001006 +n47013001007 +n47013001008 +n47013001009 +n47013001010 +n47013001011 +n47013001012 +n47013001013 +n47013001014 +n47013002001 +n47013002002 +n47013002003 +n47013002004 +n47013002005 +n47013002006 +n47013002007 +n47013002008 +n47013002009 +n47013002010 +n47013002011 +n47013002012 +n47013002013 +n47013002014 +n47013002015 +n47013002016 +n47013002017 +n47013002018 +n47013002019 +n47013002020 +n47013002021 +n47013002022 +n47013002023 +n47013002024 +n47013003001 +n47013003003 +n47013003002 +n47013003004 +n47013003005 +n47013003006 +n47013003007 +n47013003008 +n47013003009 +n47013003010 +n47013003011 +n47013003012 +n47013003013 +n47013003014 +n47013003015 +n47013003016 +n47013003017 +n47013004002 +n47013004001 +n47013004003 +n47013004004 +n47013004005 +n47013004006 +n47013004007 +n47013004008 +n47013004009 +n47013004010 +n47013004012 +n47013004011 +n47013004013 +n47013004014 +n47013004015 +n47013004016 +n47013004017 +n47013004018 +n47013004019 +n47013004020 +n47013004021 +n47013004022 +n47013004023 +n47013004024 +n47013004025 +n47013005001 +n47013005002 +n47013005003 +n47013005004 +n47013005005 +n47013005006 +n47013005007 +n47013005008 +n47013005009 +n47013005010 +n47013005011 +n47013005012 +n47013005013 +n47013005014 +n47013005015 +n47013005016 +n47013005017 +n47013005018 +n47013005019 +n47013005020 +n47013005021 +n47013005022 +n47013006002 +n47013006001 +n47013006003 +n47013006004 +n47013006005 +n47013006006 +n47013006007 +n47013006008 +n47013006009 +n47013007002 +n47013007001 +n47013007003 +n47013007004 +n47013007005 +n47013007006 +n47013007007 +n47013007008 +n47013007009 +n47013007010 +n47013007011 +n47013007012 +n47013007013 +n47013007014 +n47013007015 +n47013007016 +n47013007017 +n47013007018 +n47013007019 +n47013007020 +n47013007021 +n47013007023 +n47013007022 +n47013007024 +n47013007025 +n47013007026 +n47013008002 +n47013008001 +n47013008003 +n47013008004 +n47013008005 +n47013008006 +n47013008007 +n47013008008 +n47013008009 +n47013008010 +n47013008011 +n47013009002 +n47013009001 +n47013009003 +n47013009004 +n47013009005 +n47013009007 +n47013009006 +n47013009008 +n47013009009 +n47013009011 +n47013009012 +n47013009010 +n47013009013 +n47013009014 +n47013009015 +n47013010001 +n47013010002 +n47013010003 +n47013010004 +n47013010005 +n47013010006 +n47013010007 +n47013010008 +n47013010009 +n47013010010 +n47013010011 +n47013010012 +n47013010013 +n47013010014 +n47013010015 +n47013010016 +n47013010017 +n47013010018 +n47013010019 +n47013010020 +n47013010021 +n47013010022 +n47013010023 +n47013010024 +n47013011002 +n47013011001 +n47013011003 +n47013011004 +n47013011005 +n47013011006 +n47013011007 +n47013011008 +n47013011009 +n47013011010 +n47013011011 +n47013011012 +n47013011013 +n47013011014 +n47013011015 +n47013011016 +n47013011017 +n47013011018 +n47013011019 +n47013012001 +n47013012002 +n47013012003 +n47013012004 +n47013012005 +n47013012006 +n47013012007 +n47013012008 +n47013012009 +n47013012010 +n47013013001 +n47013013002 +n47013013003 +n47013013004 +n47013013005 +n47013013006 +n47013013007 +n47013013008 +n47013013009 +n47013013010 +n47013013011 +n47013013012 +n47013013013 +n47013013014 +n47013013015 +n47013013016 +n47013013017 +n47013013018 +n47013013019 +n47013013020 +n48001001001 +n48001001002 +n48001001003 +n48001001004 +n48001001005 +n48001001006 +n48001001007 +n48001001008 +n48001001009 +n48001001010 +n48001001011 +n48001001012 +n48001001013 +n48001001014 +n48001001015 +n48001001016 +n48001001017 +n48001001018 +n48001001019 +n48001001020 +n48001002001 +n48001002002 +n48001002003 +n48001002004 +n48001002005 +n48001002006 +n48001002007 +n48001002008 +n48001002009 +n48001002010 +n48001003002 +n48001003001 +n48001003003 +n48001003004 +n48001003005 +n48001003006 +n48001003007 +n48001003008 +n48001003009 +n48001003010 +n48001003011 +n48001003012 +n48001004001 +n48001004002 +n48001004003 +n48001004004 +n48001004005 +n48001004006 +n48001004007 +n48001004008 +n48001004009 +n48001004010 +n48001004011 +n48001004012 +n48001004013 +n48001004014 +n48001004015 +n48001004016 +n48001004017 +n48001004018 +n48001004019 +n48001004020 +n48001004021 +n48001004022 +n48001004023 +n48001004024 +n48001005001 +n48001005002 +n48001005003 +n48001005004 +n48001005005 +n48001005006 +n48001005007 +n48001005008 +n48001005009 +n48001006001 +n48001006002 +n48001006003 +n48001006004 +n48001006005 +n48001006006 +n48001006007 +n48001006008 +n48001006009 +n48001006010 +n48001006011 +n48001006012 +n48001006013 +n48001006014 +n48001006015 +n48001007001 +n48001007002 +n48001007003 +n48001007004 +n48001007005 +n48001007006 +n48001007007 +n48001007008 +n48001007009 +n48001007010 +n48001007011 +n48001007012 +n48001007013 +n48001007014 +n48001007015 +n48001007016 +n48001007017 +n48001007018 +n48001008001 +n48001008002 +n48001008003 +n48001008004 +n48001008005 +n48001008006 +n48001008007 +n48001008008 +n48001008009 +n48001008010 +n48001008011 +n48001008012 +n48001008013 +n48001008014 +n48001008015 +n48001008016 +n48001009001 +n48001009002 +n48001009003 +n48001009004 +n48001009005 +n48001009006 +n48001009007 +n48001009008 +n48001009009 +n48001009010 +n48001009011 +n48001009012 +n48001009013 +n48001009014 +n48001009015 +n48001010002 +n48001010001 +n48001010004 +n48001010003 +n48001010005 +n48001010006 +n48001010007 +n48001010008 +n48001010009 +n48001010010 +n48001010011 +n48001010012 +n48001010013 +n48001010014 +n48001010015 +n48001010019 +n48001010016 +n48001010017 +n48001010018 +n48001010020 +n48001011002 +n48001011004 +n48001011001 +n48001011003 +n48001011005 +n48001011006 +n48001011007 +n48001011008 +n48001011009 +n48001011010 +n48001011011 +n48001011012 +n48001011013 +n48001011014 +n48001011015 +n48001012002 +n48001012001 +n48001012003 +n48001012004 +n48001012005 +n48001012006 +n48001012007 +n48001012008 +n48001012009 +n48001012010 +n48001012011 +n48001012012 +n48001012013 +n48001012014 +n48001013002 +n48001013001 +n48001013003 +n48001013004 +n48001013005 +n48001013006 +n48001013007 +n48001013008 +n48001013009 +n48001013010 +n48001013011 +n48001013012 +n48001013013 +n48001013014 +n48001013015 +n48001013016 +n48001013017 +n48001013018 +n48001013019 +n48001013020 +n48001014001 +n48001014002 +n48001014003 +n48001014004 +n48001014005 +n48001014006 +n48001014007 +n48001014008 +n48001014009 +n48001014010 +n48001014011 +n48001014012 +n48001014013 +n48001014015 +n48001014014 +n48001014016 +n48001014017 +n48001014018 +n48001014019 +n48001015002 +n48001015001 +n48001015003 +n48001015004 +n48001015005 +n48001015006 +n48001015007 +n48001015008 +n48001015009 +n48001015010 +n48001015011 +n48001015012 +n48001015013 +n48001015014 +n48001015015 +n48001015016 +n48001016001 +n48001016002 +n48001016003 +n48001016004 +n48001016005 +n48001016006 +n48001016007 +n48001016008 +n48001016009 +n48001016010 +n48001016011 +n48001016012 +n48001016013 +n48001016014 +n48001016015 +n48001016016 +n48001016017 +n48001016018 +n48001017001 +n48001017002 +n48001017003 +n48001017004 +n48001017005 +n48001017006 +n48001017007 +n48001017008 +n48001017009 +n48001017010 +n48001017011 +n48001017012 +n48001017013 +n48001017014 +n48001017015 +n48001017016 +n48001017017 +n48001017018 +n48001018001 +n48001018002 +n48001018003 +n48001018004 +n48001018005 +n48001018006 +n48001018007 +n48001018008 +n48001018009 +n48001018010 +n48001018011 +n48001018012 +n48001018013 +n48001018014 +n48001018015 +n48001019002 +n48001019001 +n48001019003 +n48001019004 +n48001019005 +n48001019006 +n48001019007 +n48001019008 +n48001019009 +n48001019010 +n48001019011 +n48001019012 +n48001019013 +n48001020002 +n48001020001 +n48001020003 +n48001020004 +n48001020005 +n48001020006 +n48001020007 +n48001020008 +n48001020009 +n48001020010 +n48001020011 +n48001021001 +n48001021002 +n48001021003 +n48001021004 +n48001021005 +n48001021006 +n48001021007 +n48001021008 +n48001021009 +n48001021010 +n48001022002 +n48001022001 +n48001022003 +n48001022004 +n48001022005 +n48001022006 +n48001022007 +n48001022008 +n48001022009 +n48001022010 +n48001022011 +n48001022012 +n48001023002 +n48001023001 +n48001023003 +n48001023004 +n48001023005 +n48001023006 +n48001023007 +n48001023008 +n48001023009 +n48001023010 +n48001023011 +n48001023012 +n48001023013 +n48001023014 +n48001023015 +n48001023016 +n48001024001 +n48001024002 +n48001024003 +n48001024004 +n48001024005 +n48001024006 +n48002001001 +n48002001002 +n48002001003 +n48002001004 +n48002001005 +n48002001006 +n48002001007 +n48002001008 +n48002001009 +n48002001010 +n48002001011 +n48002001012 +n48002001013 +n48002002002 +n48002002001 +n48002002003 +n48002002004 +n48002002005 +n48002002006 +n48002002007 +n48002002008 +n48002002009 +n48002002010 +n48002002011 +n48002002012 +n48002002013 +n48002002014 +n48002002017 +n48002002015 +n48002002016 +n48002002018 +n48002002019 +n48002002020 +n48002002021 +n48002002022 +n48002002023 +n48002002024 +n48002002025 +n48002002026 +n48002003001 +n48002003002 +n48002003003 +n48002003004 +n48002003005 +n48002003006 +n48002003007 +n48002003008 +n48002003009 +n48002003010 +n48002004002 +n48002004001 +n48002004003 +n48002004004 +n48002004005 +n48002004006 +n48002004007 +n48002004008 +n48002004009 +n48002004010 +n48002004011 +n48002004012 +n48002004013 +n48002004014 +n48002004015 +n48002004016 +n48002004017 +n48002004018 +n48002004019 +n48002005001 +n48002005002 +n48002005003 +n48002005004 +n48002005005 +n48002005006 +n48002005007 +n48002005008 +n48002005009 +n48002005010 +n48002005011 +n48002005012 +n48002005013 +n48002005014 +n48002005015 +n48002006002 +n48002006001 +n48002006003 +n48002006004 +n48002006005 +n48002006006 +n48002006007 +n48002006008 +n48002006009 +n48002006010 +n48002006011 +n48002006012 +n48002006013 +n48002006016 +n48002006014 +n48002006015 +n48002006017 +n48002006018 +n48002006020 +n48002006019 +n48002006021 +n48002006022 +n48002006023 +n48002006024 +n48002007001 +n48002007002 +n48002007003 +n48002007004 +n48002007005 +n48002007006 +n48002007007 +n48002007008 +n48002007009 +n48002007010 +n48002007011 +n48002007012 +n48002007013 +n48002008002 +n48002008001 +n48002008003 +n48002008004 +n48002008005 +n48002008006 +n48002008007 +n48002008008 +n48002008009 +n48002008010 +n48002008011 +n48002008012 +n48002008013 +n48002008014 +n48002009001 +n48002009002 +n48002009003 +n48002009004 +n48002009005 +n48002009006 +n48002009007 +n48002009008 +n48002009009 +n48002009010 +n48002009011 +n48002009012 +n48002009013 +n48002009014 +n48002009015 +n48002009016 +n48002009017 +n48002009022 +n48002009018 +n48002009019 +n48002009020 +n48002009021 +n48002009023 +n48002009024 +n48002009025 +n48002009026 +n48002009027 +n48002009029 +n48002009028 +n48002009030 +n48002009031 +n48002009032 +n48002010001 +n48002010004 +n48002010002 +n48002010003 +n48002010005 +n48002010006 +n48002010007 +n48002010008 +n48002010009 +n48002010010 +n48002010011 +n48002011002 +n48002011001 +n48002011003 +n48002011004 +n48002011005 +n48002011006 +n48002011007 +n48002011008 +n48002011009 +n48002011010 +n48002011011 +n48002011012 +n48002011013 +n48002012003 +n48002012001 +n48002012002 +n48002012004 +n48002012005 +n48002012006 +n48002012007 +n48002012008 +n48002012009 +n48002012010 +n48002012011 +n48002012013 +n48002012012 +n48002012014 +n48002012015 +n48002012016 +n48002012017 +n48002012018 +n48002012019 +n48002012020 +n48002012021 +n48002012022 +n48002013001 +n48002013002 +n48002013003 +n48002013004 +n48002013005 +n48002013006 +n48002013007 +n48002013008 +n48002013009 +n48002013010 +n48002013011 +n48002013012 +n48002013013 +n48002013014 +n48002014001 +n48002014002 +n48002014003 +n48002014004 +n48002014005 +n48002014006 +n48002014007 +n48002014008 +n48002014009 +n48002014010 +n48002014011 +n48002014012 +n48002014013 +n48002014014 +n48002014015 +n48002014016 +n48002014017 +n48002014018 +n48002014019 +n48002014020 +n48002014021 +n48002014022 +n48002014023 +n48002014024 +n48002014025 +n48002014026 +n48002014029 +n48002014027 +n48002014028 +n48002014030 +n48002015001 +n48002015002 +n48002015003 +n48002015004 +n48002015005 +n48002015006 +n48002015007 +n48002015008 +n48002016002 +n48002016001 +n48002016003 +n48002016004 +n48002016005 +n48002016006 +n48002016007 +n48002016008 +n48002016009 +n48002016010 +n48002016011 +n48002016012 +n48002016013 +n48002016014 +n48002016015 +n48002016016 +n48002016017 +n48002016018 +n48002016019 +n48002016020 +n48002016021 +n48002016022 +n48002016023 +n48002016024 +n48002016025 +n48002016026 +n48002016027 +n48002016028 +n48002016029 +n48002016030 +n48002016031 +n48002016032 +n48002016033 +n48002016034 +n48002016035 +n48002016036 +n48002016037 +n48002016038 +n48002016039 +n48002017002 +n48002017001 +n48002017003 +n48002017004 +n48002017005 +n48002017006 +n48002017007 +n48002017008 +n48002017009 +n48002017010 +n48002017011 +n48002017012 +n48002017013 +n48002017014 +n48002017015 +n48002017016 +n48002018002 +n48002018001 +n48002018003 +n48002018004 +n48002018005 +n48002018006 +n48002018007 +n48002018008 +n48002018009 +n48002018010 +n48002019002 +n48002019001 +n48002019003 +n48002019004 +n48002019005 +n48002019006 +n48002019007 +n48002019008 +n48002019009 +n48002019010 +n48002019011 +n48002020002 +n48002020001 +n48002020003 +n48002020004 +n48002020006 +n48002020005 +n48002020007 +n48002020008 +n48002020009 +n48002020011 +n48002020010 +n48002020012 +n48002020013 +n48002020014 +n48002020015 +n48002020018 +n48002020016 +n48002020017 +n48002020019 +n48002020020 +n48002020021 +n48002020022 +n48002020023 +n48002020024 +n48002020025 +n48002020026 +n48002020027 +n48002020028 +n48002020029 +n48002020030 +n48002020031 +n48002021001 +n48002021002 +n48002021003 +n48002021004 +n48002021005 +n48002021006 +n48002021008 +n48002021007 +n48002021009 +n48002021010 +n48002021011 +n48002021012 +n48002021013 +n48002021014 +n48002021015 +n48003001001 +n48003001002 +n48003001003 +n48003001004 +n48003001005 +n48003001006 +n48003001007 +n48003001008 +n48003001009 +n48003001010 +n48003001011 +n48003001012 +n48003001013 +n48003002003 +n48003002001 +n48003002002 +n48003002004 +n48003002005 +n48003002006 +n48003002010 +n48003002011 +n48003002012 +n48003002007 +n48003002008 +n48003002009 +n48003002013 +n48003002014 +n48003002015 +n48003002016 +n48003003001 +n48003003002 +n48003003003 +n48003003004 +n48003003005 +n48003003006 +n48003003007 +n48003003008 +n48003004001 +n48003004002 +n48003004003 +n48003004004 +n48003004005 +n48003004006 +n48003004007 +n48003005002 +n48003005001 +n48003005003 +n48003005004 +n48003005005 +n48003005006 +n48003005007 +n48003005008 +n48003005009 +n48003005010 +n48003005011 +n48003005012 +n48003005013 +n48003005014 +n48003005015 +n48003005016 +n48003005017 +n48003005018 +n48003006001 +n48003006002 +n48003006003 +n48003006004 +n48003006005 +n48003006006 +n48003006007 +n48003006008 +n48003006009 +n48003006010 +n48003007002 +n48003007001 +n48003007003 +n48003007004 +n48003007005 +n48003007006 +n48003007007 +n48003007008 +n48003007010 +n48003007009 +n48003008002 +n48003008003 +n48003008004 +n48003008001 +n48003008005 +n48003008006 +n48003008007 +n48003008008 +n48003008009 +n48003008010 +n48003008011 +n48003008012 +n48003008013 +n48003008014 +n48003008015 +n48003008016 +n48003008017 +n48003008018 +n48003008019 +n48003008020 +n48003008021 +n48003008022 +n48003009001 +n48003009002 +n48003009003 +n48003009004 +n48003009005 +n48003009006 +n48003009007 +n48003009008 +n48003009009 +n48003010002 +n48003010001 +n48003010003 +n48003010004 +n48003010005 +n48003010006 +n48003010007 +n48003010008 +n48003010009 +n48003010011 +n48003010010 +n48003010012 +n48003010013 +n48003010014 +n48003010015 +n48003010016 +n48003010017 +n48003010018 +n48003010019 +n48003010020 +n48003010021 +n48003010022 +n48003010023 +n48003010024 +n48003010025 +n48003010026 +n48003010027 +n48003010028 +n48003011002 +n48003011001 +n48003011003 +n48003011004 +n48003011005 +n48003011006 +n48003011007 +n48003011008 +n48003011009 +n48003011010 +n48003011011 +n48003011012 +n48003011013 +n48003011014 +n48003011015 +n48003011016 +n48003012002 +n48003012001 +n48003012003 +n48003012004 +n48003012005 +n48003012006 +n48003012007 +n48003012008 +n48003012009 +n48003012010 +n48003012011 +n48003012012 +n48003012013 +n48003012014 +n48003013001 +n48003013002 +n48003013003 +n48003013004 +n48003013005 +n48003013006 +n48003013007 +n48003013008 +n48003013009 +n48003013010 +n48003013011 +n48003013012 +n48003013013 +n48003013014 +n48003013015 +n48003013016 +n48003013017 +n48003013018 +n48003013019 +n48003013020 +n48003014001 +n48003014002 +n48003014003 +n48003014004 +n48003014005 +n48003014006 +n48003014007 +n48003014008 +n48003014009 +n48003014010 +n48003014011 +n48003014012 +n48003014013 +n48003014014 +n48003014015 +n48003014016 +n48003014017 +n48003014018 +n48003014019 +n48003014020 +n48003014021 +n48003015001 +n48003015002 +n48003015003 +n48003015004 +n48003015005 +n48003015006 +n48003015007 +n48003015008 +n48003015009 +n48003015010 +n48003015011 +n48003015012 +n48003016002 +n48003016004 +n48003016005 +n48003016006 +n48003016001 +n48003016003 +n48003016007 +n48003016008 +n48003016009 +n48003016010 +n48003016011 +n48003016012 +n48003016013 +n48003016014 +n48003016015 +n48003016016 +n48003016017 +n48003016018 +n48003016019 +n48003016020 +n48003016021 +n48003016022 +n48003016023 +n48003016024 +n48003016025 +n48003016026 +n48003016027 +n48003016028 +n48003016029 +n48003017002 +n48003017001 +n48003017003 +n48003017004 +n48003017005 +n48003017006 +n48003017007 +n48003017008 +n48003017009 +n48003017010 +n48003017011 +n48003017012 +n48003017013 +n48003017014 +n48003017015 +n48003017016 +n48003017017 +n48003017018 +n48003017019 +n48003017020 +n48003017021 +n48003017022 +n48003017023 +n48003018002 +n48003018001 +n48003018003 +n48003018004 +n48003018005 +n48003018006 +n48003018007 +n48003018008 +n48003018009 +n48003018011 +n48003018010 +n48003018012 +n48003018013 +n48003018014 +n48003018015 +n48003018016 +n48003018017 +n48003019002 +n48003019001 +n48003019003 +n48003019004 +n48003019005 +n48003019006 +n48003019007 +n48003019008 +n48003019009 +n48003019010 +n48003019011 +n48003019012 +n48003019013 +n48003019014 +n48003019015 +n48003019016 +n48003019017 +n48003019018 +n48003019019 +n48003019020 +n48003019021 +n48003020002 +n48003020001 +n48003020003 +n48003020004 +n48003020005 +n48003020006 +n48003020008 +n48003020007 +n48003020009 +n48003020010 +n48003020011 +n48003021002 +n48003021001 +n48003021003 +n48003021004 +n48003021005 +n48003021006 +n48003021007 +n48003021008 +n48003021009 +n48003021010 +n48003021012 +n48003021011 +n48003021013 +n48003021014 +n48003021015 +n48003021016 +n48003021017 +n48003021021 +n48003021018 +n48003021019 +n48003021020 +n48003021022 +n48003021023 +n48003021024 +n48003022001 +n48003022002 +n48003022003 +n48003022004 +n48003022005 +n48003022006 +n48003022007 +n48003022008 +n48003022009 +n48003022010 +n48003022011 +n48003022012 +n48003022013 +n48003022014 +n48003022015 +n48003022016 +n48003022017 +n48003022018 +n48003023003 +n48003023001 +n48003023002 +n48003023004 +n48003023005 +n48003023006 +n48003023007 +n48003023008 +n48003023009 +n48003023010 +n48003023011 +n48003023012 +n48003023013 +n48003023015 +n48003023014 +n48003024001 +n48003024002 +n48003024003 +n48003024004 +n48003024005 +n48003024006 +n48003024007 +n48003024008 +n48003024009 +n48003024010 +n48003024011 +n48003024012 +n48003025002 +n48003025001 +n48003025003 +n48003025004 +n48003025005 +n48003025006 +n48003025007 +n48003025008 +n48003026002 +n48003026001 +n48003026003 +n48003026004 +n48003026005 +n48003026006 +n48003026007 +n48003026008 +n48003026009 +n48003026010 +n48003026011 +n48003027002 +n48003027001 +n48003027003 +n48003027004 +n48003027005 +n48003027006 +n48003027007 +n48003028001 +n48003028002 +n48003028003 +n48003028004 +n48003028005 +n48003028006 +n48003028007 +n48003028008 +n48003028009 +n48003028010 +n48003028011 +n48003028012 +n48003028013 +n48003028014 +n48003028015 +n48003028017 +n48003028016 +n48003028018 +n48003028019 +n48003028020 +n48003028021 +n48003028022 +n48003028023 +n48003029002 +n48003029001 +n48003029003 +n48003029004 +n48003029005 +n48003029006 +n48003029007 +n48003029008 +n48003029009 +n48003029010 +n48003029011 +n48003029012 +n48004001002 +n48004001001 +n48004001003 +n48004001004 +n48004001005 +n48004001006 +n48004001007 +n48004001008 +n48004001009 +n48004001010 +n48004001011 +n48004001012 +n48004001013 +n48004001014 +n48004001015 +n48004002001 +n48004002002 +n48004002003 +n48004002005 +n48004002006 +n48004002004 +n48004002007 +n48004002008 +n48004002009 +n48004002010 +n48004002011 +n48004003001 +n48004003002 +n48004003003 +n48004003004 +n48004003005 +n48004003006 +n48004003007 +n48004003008 +n48004003009 +n48004003010 +n48004003011 +n48004003012 +n48004003013 +n48004004002 +n48004004001 +n48004004003 +n48004004004 +n48004004005 +n48004004006 +n48004004007 +n48004004008 +n48004004009 +n48004004010 +n48004004011 +n48004004012 +n48004004013 +n48004004014 +n48004004015 +n48004004016 +n48004004017 +n48004004018 +n48004004019 +n48004005001 +n48004005002 +n48004005003 +n48004005004 +n48004005005 +n48004005006 +n48004005007 +n48004005008 +n48004005009 +n48004006002 +n48004006001 +n48004006003 +n48004006004 +n48004006005 +n48004006006 +n48004006007 +n48004006008 +n48004006009 +n48004006010 +n48004006011 +n48004006012 +n48004006013 +n48004006014 +n48004006015 +n48004006016 +n48004006017 +n48004006018 +n48004006019 +n48004006020 +n48004007001 +n48004007003 +n48004007002 +n48004007004 +n48004007005 +n48004007006 +n48004007008 +n48004007007 +n48004007009 +n48004007010 +n48004007011 +n48004007012 +n48004007013 +n48004008001 +n48004008003 +n48004008002 +n48004008004 +n48004008005 +n48004008006 +n48004008007 +n48004008008 +n48004008009 +n48004008010 +n48004008011 +n48004008012 +n48004009002 +n48004009001 +n48004009003 +n48004009004 +n48004009006 +n48004009005 +n48004009007 +n48004009008 +n48004009009 +n48004009010 +n48004009011 +n48004009012 +n48004009013 +n48004009014 +n48004009015 +n48004009016 +n48004009017 +n48004009018 +n48004009019 +n48004009020 +n48004009021 +n48004009022 +n48004009023 +n48004010002 +n48004010001 +n48004010003 +n48004010004 +n48004010005 +n48004010006 +n48004010007 +n48004010008 +n48004011001 +n48004011002 +n48004011003 +n48004011004 +n48004011005 +n48004011006 +n48004011007 +n48004011008 +n48004012001 +n48004012002 +n48004012003 +n48004012004 +n48004012005 +n48004012006 +n48004012007 +n48004012008 +n48004012009 +n48004012010 +n48004012011 +n48004012012 +n48004012013 +n48004013002 +n48004013001 +n48004013003 +n48004013004 +n48004013005 +n48004013006 +n48004013007 +n48004013008 +n48004013009 +n48004013010 +n48004013011 +n48004014001 +n48004014009 +n48004014002 +n48004014003 +n48004014004 +n48004014005 +n48004014006 +n48004014007 +n48004014008 +n48004014010 +n48004014011 +n48004014012 +n48004014013 +n48004014014 +n48004014015 +n48004014016 +n48004014017 +n48004014018 +n48004014019 +n48004014020 +n48004014021 +n48004015002 +n48004015001 +n48004015003 +n48004015004 +n48004015005 +n48004015007 +n48004015006 +n48004015008 +n48004015009 +n48004015010 +n48004015011 +n48004015012 +n48004015013 +n48004015014 +n48004015015 +n48004015016 +n48004015017 +n48004016001 +n48004016002 +n48004016003 +n48004016004 +n48004016005 +n48004016006 +n48004017001 +n48004017002 +n48004017003 +n48004017004 +n48004017005 +n48004017006 +n48004017007 +n48004017008 +n48004017009 +n48004017010 +n48004017011 +n48004018002 +n48004018001 +n48004018003 +n48004018004 +n48004018005 +n48004018006 +n48004018007 +n48004018008 +n48004018009 +n48004018010 +n48004018011 +n48004018012 +n48004018013 +n48004018014 +n48004018015 +n48004019001 +n48004019002 +n48004019003 +n48004019004 +n48004019005 +n48004019006 +n48004019007 +n48004019008 +n48004019009 +n48004019010 +n48004019011 +n48004020002 +n48004020001 +n48004020003 +n48004020004 +n48004020005 +n48004020006 +n48004020007 +n48004020008 +n48004020009 +n48004020010 +n48004020011 +n48004020012 +n48004020013 +n48004020014 +n48004020015 +n48004021001 +n48004021002 +n48004021003 +n48004021004 +n48004021005 +n48004021007 +n48004021006 +n48004021008 +n48004021009 +n48004021010 +n48004021011 +n48004022002 +n48004022001 +n48004022003 +n48004022004 +n48004022007 +n48004022005 +n48004022006 +n48004022008 +n48004022009 +n48004022010 +n48004022011 +n48004022012 +n48004022013 +n48004022014 +n48004022015 +n48004022016 +n48004023001 +n48004023003 +n48004023002 +n48004023004 +n48004023005 +n48004023006 +n48004023007 +n48004023008 +n48004023009 +n48004023011 +n48004023010 +n48004023012 +n48004023013 +n48004023014 +n48004023015 +n48004023016 +n48004023017 +n48004024001 +n48004024002 +n48004024003 +n48004024005 +n48004024004 +n48004024006 +n48004024007 +n48004024008 +n48004024010 +n48004024009 +n48004024011 +n48004024012 +n48004024013 +n48004024014 +n48004024015 +n48004024016 +n48004024017 +n48004024018 +n48004024019 +n48004025002 +n48004025001 +n48004025003 +n48004025004 +n48004025005 +n48004025006 +n48004025007 +n48004025008 +n48004025009 +n48004025011 +n48004025010 +n48004025012 +n48004025013 +n48004025014 +n48004025016 +n48004025015 +n48004025017 +n48004025018 +n48004025019 +n48004025020 +n48004026002 +n48004026001 +n48004026003 +n48004026004 +n48004026005 +n48004026006 +n48004026007 +n48004026008 +n48004026009 +n48004026010 +n48004027002 +n48004027001 +n48004027003 +n48004027004 +n48004027005 +n48004027006 +n48004027007 +n48004027008 +n48004027009 +n48004027010 +n48004027011 +n48004027012 +n48004027013 +n48004027014 +n48004027015 +n48004027016 +n48004027017 +n48004027018 +n48004027019 +n48004027020 +n48004027021 +n48004027022 +n48004027023 +n48004027024 +n48004027025 +n48004028002 +n48004028003 +n48004028001 +n48004028004 +n48004028005 +n48004028006 +n48004028007 +n48004028008 +n48004029001 +n48004029002 +n48004029003 +n48004029004 +n48004029005 +n48004029006 +n48004029007 +n48004029008 +n48004029009 +n48004029010 +n48004029011 +n48004029012 +n48004029013 +n48004029014 +n48004030001 +n48004030002 +n48004030003 +n48004030004 +n48004030005 +n48004030006 +n48004030007 +n48004030008 +n48004030009 +n48004030010 +n48004030011 +n48004030012 +n48004030014 +n48004030013 +n48004030015 +n48004030016 +n48004030017 +n48004030018 +n48004030019 +n48004030020 +n48004030021 +n48004030022 +n48004030023 +n48004030024 +n48004030025 +n48004031001 +n48004031002 +n48004031004 +n48004031003 +n48004031005 +n48004031006 +n48004031007 +n48004031008 +n48004031009 +n48005001001 +n48005001002 +n48005001003 +n48005001004 +n48005001005 +n48005001007 +n48005001006 +n48005001008 +n48005001009 +n48005001010 +n48005001011 +n48005001012 +n48005001013 +n48005002001 +n48005002002 +n48005002003 +n48005002004 +n48005002005 +n48005002006 +n48005002007 +n48005002008 +n48005002009 +n48005002010 +n48005002011 +n48005002012 +n48005003002 +n48005003001 +n48005003003 +n48005003004 +n48005003005 +n48005003006 +n48005003007 +n48005003008 +n48005003009 +n48005003010 +n48005003011 +n48005003012 +n48005003013 +n48005004001 +n48005004002 +n48005004003 +n48005004004 +n48005004005 +n48005004006 +n48005004007 +n48005004008 +n48005004009 +n48005004010 +n48005005002 +n48005005001 +n48005005003 +n48005005004 +n48005005005 +n48005005006 +n48005005007 +n48005005008 +n48005006002 +n48005006001 +n48005006003 +n48005006004 +n48005006005 +n48005006006 +n48005006009 +n48005006010 +n48005006007 +n48005006008 +n48005006011 +n48005006012 +n48005006013 +n48005006014 +n48005006015 +n48005007001 +n48005007002 +n48005007003 +n48005007005 +n48005007004 +n48005007006 +n48005007007 +n48005007008 +n48005008001 +n48005008002 +n48005008003 +n48005008004 +n48005008005 +n48005008006 +n48005008007 +n48005009001 +n48005009002 +n48005009003 +n48005009004 +n48005009005 +n48005009006 +n48005010001 +n48005010002 +n48005010003 +n48005010004 +n48005010005 +n48005010006 +n48005010007 +n48005010008 +n48005010009 +n48005010010 +n48005010012 +n48005010011 +n48005010013 +n48005010014 +n48005010015 +n48005010016 +n48005010017 +n48005010019 +n48005010018 +n48005010020 +n48005011002 +n48005011003 +n48005011004 +n48005011001 +n48005011005 +n48005011006 +n48005011007 +n48005011008 +n48005011009 +n48005011010 +n48005011011 +n48005011012 +n48005011013 +n48005011014 +n48005011015 +n48005011016 +n48005012001 +n48005012002 +n48005012003 +n48005012004 +n48005012005 +n48005012006 +n48005013002 +n48005013001 +n48005013003 +n48005013004 +n48005013005 +n48005013006 +n48005013007 +n48005013008 +n48005013009 +n48005013010 +n48005013011 +n48005013012 +n48005013013 +n48005013014 +n48005013015 +n48005013016 +n48005013017 +n48005013018 +n48005013019 +n48005013020 +n48005014002 +n48005014001 +n48005014003 +n48005014004 +n48005014008 +n48005014005 +n48005014006 +n48005014007 +n48005014009 +n48005014010 +n48005014011 +n48005014012 +n48005014013 +n48005014014 +n48005014015 +n48005014016 +n48005015002 +n48005015001 +n48005015003 +n48005015004 +n48005015005 +n48005015006 +n48005015007 +n48005015008 +n48005015009 +n48005015010 +n48005015011 +n48005016002 +n48005016001 +n48005016003 +n48005016004 +n48005016005 +n48005016006 +n48005016007 +n48005016008 +n48005016009 +n48005016010 +n48005017002 +n48005017001 +n48005017003 +n48005017004 +n48005017005 +n48005017006 +n48005017007 +n48005017009 +n48005017008 +n48005017010 +n48005017011 +n48005017012 +n48005017013 +n48005017015 +n48005017014 +n48005017016 +n48005017017 +n48005017018 +n48005017019 +n48005017021 +n48005017020 +n48005017022 +n48005017023 +n48005017024 +n48005018002 +n48005018001 +n48005018003 +n48005018004 +n48005018005 +n48005018006 +n48005018007 +n48005018008 +n48005019002 +n48005019001 +n48005019003 +n48005019004 +n48005019005 +n48005019006 +n48005019007 +n48005019008 +n48005019009 +n48005019010 +n48005019011 +n48005019012 +n48005020001 +n48005020002 +n48005020003 +n48005020004 +n48005020005 +n48005020006 +n48005020007 +n48005020008 +n48005020009 +n48005021001 +n48005021002 +n48005021003 +n48005021004 +n48005021005 +n48005021006 +n48005021007 +n48005021008 +n48005021009 +n48005021010 +n48005021011 +n48005021012 +n48005021013 +n48005021014 +n48005021015 +n48005021016 +n48005021017 +n48005021018 +n48005021019 +n48005021020 +n48005021021 +n48005022002 +n48005022001 +n48005022003 +n48005022004 +n48005022005 +n48005022006 +n48005022007 +n48005022008 +n48005022009 +n48005022010 +n48005022011 +n48005022012 +n48005022013 +n48005023001 +n48005023002 +n48005023003 +n48005023004 +n48005023005 +n48005023006 +n48005023007 +n48005023008 +n48005024002 +n48005024001 +n48005024003 +n48005024004 +n48005024005 +n48005024006 +n48005024007 +n48005024008 +n48005024009 +n48005024010 +n48005024011 +n48005024012 +n48005024013 +n48005024014 +n48005025001 +n48005025002 +n48005025003 +n48005025004 +n48005025005 +n48005025006 +n48005026001 +n48005026002 +n48005026003 +n48005026004 +n48005026005 +n48005026006 +n48005026007 +n48006001001 +n48006001002 +n48006001003 +n48006001004 +n48006001005 +n48006001006 +n48006001007 +n48006001008 +n48006001009 +n48006001010 +n48006001011 +n48006001012 +n48006001013 +n48006001014 +n48006001015 +n48006001016 +n48006001017 +n48006001018 +n48006001019 +n48006001020 +n48006001021 +n48006001022 +n48006001023 +n48006002001 +n48006002002 +n48006002003 +n48006002004 +n48006002005 +n48006002006 +n48006002007 +n48006002008 +n48006002009 +n48006002010 +n48006002011 +n48006003002 +n48006003001 +n48006003003 +n48006003004 +n48006003005 +n48006003006 +n48006003007 +n48006003008 +n48006003009 +n48006003010 +n48006004002 +n48006004001 +n48006004003 +n48006004004 +n48006004005 +n48006004006 +n48006004007 +n48006004008 +n48006004009 +n48006004010 +n48006004011 +n48006004012 +n48006004013 +n48006004014 +n48006004015 +n48006004016 +n48006004017 +n48006004018 +n48006004019 +n48006005002 +n48006005001 +n48006005003 +n48006005004 +n48006005005 +n48006005006 +n48006006002 +n48006006001 +n48006006003 +n48006006004 +n48006006005 +n48006006006 +n48006006007 +n48006006008 +n48006006009 +n48006006010 +n48006006011 +n48006007001 +n48006007002 +n48006007003 +n48006007004 +n48006007005 +n48006007007 +n48006007008 +n48006007006 +n48006007009 +n48006007010 +n48006007011 +n48006007012 +n48006007013 +n48006008001 +n48006008002 +n48006008003 +n48006008004 +n48006008005 +n48006008006 +n48006008007 +n48006008008 +n48006008009 +n48006008010 +n48006008011 +n48006008012 +n48006008014 +n48006008013 +n48006008015 +n48006008016 +n48006008017 +n48006008018 +n48006008019 +n48006008020 +n48006008021 +n48006008022 +n48006008023 +n48006008024 +n48006009002 +n48006009001 +n48006009003 +n48006009004 +n48006009005 +n48006009006 +n48006009008 +n48006009007 +n48006009009 +n48006009010 +n48006009011 +n48006009012 +n48006010001 +n48006010002 +n48006010003 +n48006010004 +n48006010005 +n48006010006 +n48006010007 +n48006010008 +n48006010009 +n48006010010 +n48006010012 +n48006010011 +n48006010013 +n48006010014 +n48006010015 +n48006010016 +n48006010017 +n48006011001 +n48006011002 +n48006011004 +n48006011003 +n48006011005 +n48006011006 +n48006011007 +n48006011008 +n48006012001 +n48006012002 +n48006012003 +n48006012004 +n48006012005 +n48006012006 +n48006012007 +n48006012008 +n48006012009 +n48006012011 +n48006012010 +n48006012012 +n48006012013 +n48006012014 +n48006012015 +n48006012016 +n48006012017 +n48006013002 +n48006013001 +n48006013003 +n48006013004 +n48006013005 +n48006013006 +n48006013007 +n48006013008 +n48006013009 +n48006013010 +n48006013011 +n48006013012 +n48006013013 +n48006013014 +n48006013015 +n48006013016 +n48006013017 +n48006014002 +n48006014001 +n48006014003 +n48006014004 +n48006014005 +n48006014006 +n48006014007 +n48006014008 +n48006014009 +n48006014010 +n48006014011 +n48006014012 +n48006014013 +n48006014014 +n48006014015 +n48006014016 +n48006014017 +n48006014018 +n48006014019 +n48006014020 +n48006014021 +n48006014022 +n48006015002 +n48006015004 +n48006015005 +n48006015001 +n48006015003 +n48006015006 +n48006015007 +n48006015008 +n48006015009 +n48006015010 +n48006016001 +n48006016002 +n48006016003 +n48006016004 +n48006016005 +n48006016006 +n48006016007 +n48006016010 +n48006016011 +n48006016008 +n48006016009 +n48006016012 +n48006016013 +n48006016014 +n48006016015 +n48006016016 +n48006016017 +n48006017001 +n48006017002 +n48006017003 +n48006017004 +n48006017005 +n48006017006 +n48006017008 +n48006017007 +n48006017009 +n48006017010 +n48006017011 +n48006017012 +n48006017013 +n48006017014 +n48006017015 +n48006017016 +n48006017017 +n48006018001 +n48006018002 +n48006018003 +n48006018004 +n48006018005 +n48006018006 +n48006018007 +n48006018008 +n48006018009 +n48006018010 +n48006018011 +n48006018012 +n48006018013 +n49001001001 +n49001001002 +n49001001003 +n49001001004 +n49001001005 +n49001001006 +n49001001007 +n49001001008 +n49001001009 +n49001001010 +n49001001011 +n49001001012 +n49001001013 +n49001001014 +n49001001015 +n49001001016 +n49001001017 +n49001001018 +n49001002002 +n49001002001 +n49001002003 +n49001002004 +n49001002005 +n49001002006 +n49001002007 +n49001002008 +n49001002009 +n49001002010 +n49001002011 +n49001002012 +n49001003001 +n49001003002 +n49001003003 +n49001003004 +n49001003005 +n49001003006 +n49001003007 +n49001003008 +n49001003009 +n49001003010 +n49001003011 +n49001003012 +n49001003013 +n49001003014 +n49001003015 +n49001003016 +n49001003017 +n49001003018 +n49001003019 +n49001003020 +n49001003021 +n49001003022 +n49001004001 +n49001004002 +n49001004003 +n49001004004 +n49001004005 +n49001004006 +n49001004007 +n49001004008 +n49001004009 +n49001004010 +n49001004011 +n49001004012 +n49001004013 +n49001004014 +n49001004015 +n49001004016 +n49001004017 +n49001005001 +n49001005002 +n49001005003 +n49001005004 +n49001005005 +n49001005006 +n49001005007 +n49001005008 +n49001005009 +n49001005010 +n49001005011 +n49001005012 +n49001005013 +n49001005014 +n49001005015 +n49001006001 +n49001006002 +n49001006003 +n49001006004 +n49001006005 +n49001006006 +n49001006007 +n49001006008 +n49001006009 +n49001006010 +n49001006011 +n49001006012 +n49001007001 +n49001007002 +n49001007003 +n49001007004 +n49001007005 +n49001007006 +n49001007007 +n49001007008 +n49001007009 +n49001007010 +n49001007011 +n49001007012 +n49001007013 +n49001007014 +n49001007015 +n49001007016 +n49001007017 +n49001007018 +n49001007019 +n49001008001 +n49001008002 +n49001008003 +n49001008004 +n49001008005 +n49001008006 +n49001008007 +n49001008008 +n49001008009 +n49001009001 +n49001009002 +n49001009003 +n49001009004 +n49001009005 +n49001009006 +n49001009007 +n49001009008 +n49001009009 +n49001009010 +n49001009011 +n49001009012 +n49001009013 +n49001009014 +n49001009015 +n49001010001 +n49001010002 +n49001010003 +n49001010004 +n49001010005 +n49001010006 +n49001010007 +n49001010008 +n49001010009 +n49001010010 +n49001010011 +n49001010012 +n49001010013 +n49001010014 +n49001010015 +n49001010016 +n49001010017 +n49001010018 +n49001010019 +n49001010020 +n49001010021 +n49001010022 +n49001010023 +n49001011001 +n49001011002 +n49001011003 +n49001011004 +n49001011005 +n49001011006 +n49001011007 +n49001011008 +n49001011009 +n49001011010 +n49001011011 +n49001011012 +n49001011013 +n49001011014 +n49001011015 +n49001011016 +n49001011017 +n49001012001 +n49001012002 +n49001012003 +n49001012005 +n49001012006 +n49001012007 +n49001012008 +n49001012004 +n49001012009 +n49001012010 +n49001012011 +n49001012012 +n49001012013 +n49001013001 +n49001013002 +n49001013003 +n49001013004 +n49001013005 +n49001013006 +n49001013007 +n49001013008 +n49001013009 +n49001013010 +n49001013011 +n49001013012 +n49001013013 +n49001013014 +n49001013015 +n49001013016 +n49001013017 +n49001013018 +n49001013019 +n49001013020 +n49001013021 +n49001013022 +n49001013023 +n49001013024 +n49001013025 +n49001014001 +n49001014002 +n49001014003 +n49001014004 +n49001014005 +n49001014006 +n49001014007 +n49001014008 +n49001014009 +n49001014010 +n49001014011 +n49001014012 +n49001014013 +n49001014014 +n49001014015 +n49001015001 +n49001015002 +n49001015003 +n49001015004 +n49001015005 +n49001015006 +n49001015007 +n49001015008 +n49001015009 +n49001015010 +n49001015011 +n49001015012 +n49001015013 +n49001015014 +n49001015015 +n49001015016 +n49001015017 +n49001015018 +n49001015019 +n49001015020 +n49001016001 +n49001016002 +n49001016003 +n49001016004 +n49001016005 +n49001016006 +n49001016007 +n49001016008 +n49001016009 +n49001016010 +n49001016011 +n49001017001 +n49001017002 +n49001017003 +n49001017004 +n49001017005 +n49001017006 +n49001017007 +n49001017008 +n49001017009 +n49001017010 +n49001017011 +n49001017012 +n49001017013 +n49001017014 +n49001017015 +n49001017016 +n49001017017 +n49001017018 +n49001017019 +n49001017020 +n49001017021 +n49001018001 +n49001018002 +n49001018003 +n49001018004 +n49001018005 +n49001018006 +n49001018007 +n49001018008 +n49001018009 +n49001018010 +n49001018011 +n49001018012 +n49001018013 +n49001018014 +n49001018015 +n49001018016 +n49001018017 +n49001018018 +n49001018019 +n49001018020 +n49001018021 +n49001018022 +n49001018023 +n49001018024 +n49001018025 +n49001018026 +n49001018027 +n49001018028 +n49001019001 +n49001019002 +n49001019003 +n49001019004 +n49001019005 +n49001019006 +n49001019007 +n49001019008 +n49001019009 +n49001019010 +n49001019011 +n49001019012 +n49001019013 +n49001019014 +n49001019015 +n49001019016 +n49001019017 +n49001019018 +n49001019019 +n49001019020 +n49001020001 +n49001020002 +n49001020003 +n49001020004 +n49001020005 +n49001020006 +n49001020007 +n49001020008 +n49001020009 +n49001020010 +n49001020011 +n49001020012 +n49001020013 +n49001020014 +n49001020015 +n49001020016 +n49001020017 +n49001021001 +n49001021002 +n49001021003 +n49001021004 +n49001021005 +n49001021006 +n49001021007 +n49001021008 +n49001021009 +n49001021010 +n49001021011 +n49001021012 +n49001021013 +n49001021014 +n49001021015 +n49001021016 +n49001021017 +n49001021018 +n49001021019 +n49001021020 +n49001021021 +n49001021022 +n49001021023 +n49001021024 +n49001022001 +n49001022002 +n49001022003 +n49001022004 +n49001022005 +n49001022006 +n49001022007 +n49001022008 +n49001022009 +n49001022010 +n49001022011 +n49001022012 +n49001022013 +n49001022014 +n49001022015 +n49001023001 +n49001023002 +n49001023003 +n49001023004 +n49001023005 +n49001023006 +n49001023007 +n49001023008 +n49001023009 +n49001023010 +n49001023011 +n49001023012 +n49001023013 +n49002001001 +n49002001002 +n49002001003 +n49002001004 +n49002001005 +n49002001006 +n49002001007 +n49002001008 +n49002001009 +n49002001010 +n49002002001 +n49002002002 +n49002002003 +n49002002004 +n49002002005 +n49002002006 +n49002002007 +n49002002008 +n49002002009 +n49002002010 +n49002002011 +n49002002012 +n49002002013 +n49002002014 +n49002002015 +n49002002016 +n49002002017 +n49002002018 +n49002002019 +n49002002020 +n49002002021 +n49002002022 +n49002002023 +n49002002024 +n49002002025 +n49002002026 +n49002002027 +n49002003001 +n49002003002 +n49002003003 +n49002003004 +n49002003005 +n49002003006 +n49002003007 +n49002003008 +n49002003009 +n49002003010 +n49002003011 +n49002003012 +n49002003013 +n49002003014 +n49002003015 +n49002003016 +n49002003017 +n49002003018 +n49002003019 +n49002003020 +n49002003021 +n49002003022 +n49002003023 +n49002003024 +n49002003026 +n49002003025 +n49002003027 +n49002003028 +n49002003029 +n49002003030 +n49002004002 +n49002004001 +n49002004003 +n49002004004 +n49002004005 +n49002004006 +n49002004007 +n49002004008 +n49002004009 +n49002004010 +n49002004011 +n49002004012 +n49002004013 +n49002004014 +n49002004015 +n49002005001 +n49002005002 +n49002005003 +n49002005004 +n49002005005 +n49002005006 +n49002005007 +n49002005008 +n49002005009 +n49002005010 +n49002005011 +n49002005012 +n49002006001 +n49002006002 +n49002006003 +n49002006004 +n49002006005 +n49002006006 +n49002006007 +n49002006008 +n49002006009 +n49002006010 +n49002007001 +n49002007002 +n49002007003 +n49002007004 +n49002007005 +n49002007006 +n49002007007 +n49002007008 +n49002007009 +n49002007010 +n49002007011 +n49002007012 +n49002007013 +n49002007014 +n49002007015 +n49002007016 +n49002007017 +n49002007018 +n49002007019 +n49002007020 +n49002008002 +n49002008001 +n49002008003 +n49002008004 +n49002008005 +n49002008006 +n49002008007 +n49002008008 +n49002008009 +n49002008010 +n49002008011 +n49002008012 +n49002008013 +n49002008014 +n49002008015 +n49002009001 +n49002009002 +n49002009003 +n49002009004 +n49002009005 +n49002009006 +n49002009007 +n49002010002 +n49002010003 +n49002010001 +n49002010004 +n49002010005 +n49002010006 +n49002010007 +n49002010008 +n49002010009 +n49002010010 +n49002010011 +n49002010012 +n49002010013 +n49002010014 +n49002010015 +n49002010016 +n49002010017 +n49002010018 +n49002010019 +n49002011001 +n49002011002 +n49002011003 +n49002011004 +n49002011005 +n49002011006 +n49002011007 +n49002011008 +n49002011009 +n49002011010 +n49002011011 +n49002011012 +n49002011013 +n49002011014 +n49002011015 +n49002011016 +n49002011017 +n49002011018 +n49002011019 +n49002012001 +n49002012002 +n49002012003 +n49002012004 +n49002012005 +n49002012006 +n49002012007 +n49002012008 +n49002012009 +n49002012010 +n49002012011 +n49002012012 +n49002012013 +n49002012014 +n49002012015 +n49002012016 +n49002012017 +n49002012018 +n49002012019 +n49002012020 +n49002012021 +n49002012022 +n49002012023 +n49002012024 +n49002012025 +n49002012026 +n49002013002 +n49002013001 +n49002013003 +n49002013004 +n49002013005 +n49002013006 +n49002013007 +n49002013008 +n49002013009 +n49002013010 +n49002013011 +n49002013012 +n49002013013 +n49002013014 +n49002013015 +n49002013016 +n49002013017 +n49002014002 +n49002014001 +n49002014003 +n49002014004 +n49002014005 +n49002014006 +n49002014007 +n49002014008 +n49002014009 +n49002014010 +n49002014011 +n49002014012 +n49002014013 +n49002014014 +n49002014015 +n49002014016 +n49002014018 +n49002014019 +n49002014017 +n49002014020 +n49002014021 +n49002014022 +n49002014023 +n49002015001 +n49002015002 +n49002015003 +n49002015004 +n49002015005 +n49002015006 +n49002015007 +n49002015008 +n49002015009 +n49002015010 +n49002015011 +n49002015012 +n49002015013 +n49002015014 +n49002015015 +n49002015016 +n49002015017 +n49002015018 +n49002015019 +n49002016001 +n49002016002 +n49002016003 +n49002016004 +n49002016005 +n49002016006 +n49002016007 +n49002016008 +n49002016009 +n49002016010 +n49002016011 +n49002016012 +n49002016013 +n49002016014 +n49002016015 +n49002016016 +n49002016017 +n49002017001 +n49002017002 +n49002017003 +n49002017004 +n49002017005 +n49002017006 +n49002017007 +n49002017008 +n49002017009 +n49002017010 +n49002017011 +n49002018001 +n49002018002 +n49002018003 +n49002018004 +n49002018005 +n49002018006 +n49002018007 +n49002018008 +n49002018009 +n49002018010 +n49002018011 +n49002018012 +n49002018013 +n49002018014 +n49002019001 +n49002019002 +n49002019003 +n49002019004 +n49002019005 +n49002019006 +n49002019007 +n49002019008 +n49002019009 +n49002019010 +n49002019011 +n49002019012 +n49002019013 +n49002019014 +n49002019015 +n49002019016 +n49002020001 +n49002020002 +n49002020003 +n49002020004 +n49002020005 +n49002020006 +n49002020007 +n49002020008 +n49002020009 +n49002020010 +n49002020011 +n49002020012 +n49002020013 +n49002021001 +n49002021002 +n49002021003 +n49002021004 +n49002021005 +n49002021006 +n49002021007 +n49002021008 +n49002021009 +n49002021010 +n49002021011 +n49002022001 +n49002022002 +n49002022003 +n49002022004 +n49002022005 +n49002022006 +n49002022007 +n49002022008 +n49002022009 +n49002022010 +n49002022011 +n49003001001 +n49003001002 +n49003001003 +n49003001004 +n49003001005 +n49003001006 +n49003001007 +n49003001008 +n49003001009 +n49003001010 +n49003001011 +n49003001012 +n49003001013 +n49003002001 +n49003002002 +n49003002003 +n49003002004 +n49003002005 +n49003002006 +n49003002007 +n49003002008 +n49003002009 +n49003002010 +n49003002011 +n49003002012 +n49003002013 +n49003002014 +n49003003001 +n49003003002 +n49003003003 +n49003003004 +n49003003005 +n49003003006 +n49003003007 +n49003003008 +n49003003009 +n49003003010 +n49003003011 +n49003004001 +n49003004002 +n49003004003 +n49003004004 +n49003004005 +n49003004006 +n49003004007 +n49003004008 +n49003004009 +n49003004010 +n49003004011 +n49003004012 +n49003004013 +n49003005001 +n49003005002 +n49003005003 +n49003005004 +n49003005005 +n49003005006 +n49003005007 +n49003005008 +n49003005009 +n49003005010 +n49003005011 +n49003005012 +n49003005013 +n49003005014 +n49003005015 +n49003005016 +n49003005017 +n49003005018 +n49003005019 +n49003005020 +n49003006001 +n49003006002 +n49003006003 +n49003006004 +n49003006005 +n49003006006 +n49003006007 +n49003006008 +n49003006009 +n49003006010 +n49003006011 +n49003006012 +n49003006013 +n49003006014 +n49003006015 +n49003006016 +n49003007001 +n49003007003 +n49003007002 +n49003007004 +n49003007005 +n49003007006 +n49003007007 +n49003007008 +n49003007009 +n49003007010 +n49003007011 +n49003007012 +n49003007013 +n49003007014 +n49003007015 +n49003007016 +n49003007017 +n49003007018 +n49003007019 +n49003008001 +n49003008002 +n49003008003 +n49003008004 +n49003008005 +n49003008006 +n49003008007 +n49003008008 +n49003008009 +n49003008010 +n49003008011 +n49003008012 +n49003008013 +n49003008014 +n49003008015 +n49003008016 +n49003008017 +n49003009001 +n49003009002 +n49003009003 +n49003009004 +n49003009005 +n49003009006 +n49003009007 +n49003009008 +n49003009009 +n49003009010 +n49003009011 +n49003009012 +n49003009013 +n49003009014 +n49003009015 +n49003009016 +n49003009017 +n49003009018 +n49003009019 +n49003010001 +n49003010002 +n49003010003 +n49003010004 +n49003010005 +n49003010006 +n49003010007 +n49003010008 +n49003010009 +n49003010010 +n49003010011 +n49003010012 +n49003010013 +n49003010014 +n49003010015 +n49003010016 +n49003010017 +n49003010018 +n49003010019 +n49003011001 +n49003011002 +n49003011003 +n49003011004 +n49003011005 +n49003011006 +n49003011007 +n49003011008 +n49003011009 +n49003011010 +n49003011011 +n49003011012 +n49003011013 +n49003012001 +n49003012002 +n49003012003 +n49003012004 +n49003012005 +n49003012006 +n49003012007 +n49003012008 +n49003012009 +n49003012010 +n49003012011 +n49003012012 +n49003012013 +n49003013001 +n49003013002 +n49003013003 +n49003013004 +n49003013005 +n49003013006 +n49003013007 +n49003013008 +n49003013009 +n49003013010 +n49003013011 +n49003013012 +n49003013013 +n49003013014 +n49003014001 +n49003014002 +n49003014003 +n49003014004 +n49003014005 +n49003014006 +n49003014007 +n49003014008 +n49003014009 +n49003015001 +n49003015002 +n49003015003 +n49003015004 +n49003015005 +n49003015006 +n49003015007 +n49003015008 +n49003015009 +n49003015010 +n49003016001 +n49003016002 +n49003016003 +n49003016004 +n49003016005 +n49003016006 +n49003016007 +n49003016008 +n49003016009 +n49003016010 +n49003016011 +n49003016012 +n49003016013 +n49003016014 +n49003016015 +n49003016016 +n49003016017 +n49003016018 +n49003016019 +n49003017001 +n49003017002 +n49003017003 +n49003017004 +n49003017005 +n49003017006 +n49003017007 +n49003017008 +n49003017009 +n49003017010 +n49003017011 +n49003017012 +n49003017013 +n49003017014 +n49003017015 +n49003018001 +n49003018002 +n49003018003 +n49003018004 +n49003018005 +n49003018006 +n49003018007 +n49003018008 +n49003018009 +n49003018010 +n49003018011 +n49003018012 +n49003018013 +n49003018014 +n49003018015 +n49003018016 +n49003019002 +n49003019001 +n49003019003 +n49003019004 +n49003019005 +n49003019006 +n49003019007 +n49003019008 +n49003019009 +n49003019010 +n49003019011 +n49003019012 +n49003019013 +n49003019014 +n49003019015 +n49003019016 +n49003019017 +n49003020002 +n49003020001 +n49003020003 +n49003020006 +n49003020007 +n49003020004 +n49003020005 +n49003020008 +n49003020009 +n49003020010 +n49003020011 +n49003020012 +n49003020013 +n49003020014 +n49003020015 +n49003020016 +n49003020017 +n49003020018 +n49003021001 +n49003021002 +n49003021003 +n49003021004 +n49003021005 +n49003021006 +n49003021007 +n49003021008 +n49003021009 +n49003021010 +n49003021011 +n49003021012 +n49003021013 +n49003021014 +n49003021015 +n49003021016 +n49003021017 +n49003021018 +n49003021019 +n49004001002 +n49004001001 +n49004001003 +n49004001004 +n49004001005 +n49004001006 +n49004001007 +n49004001008 +n49004001009 +n49004001010 +n49004001011 +n49004001012 +n49004001013 +n49004001014 +n49004002001 +n49004002002 +n49004002003 +n49004002004 +n49004002005 +n49004002006 +n49004002007 +n49004002008 +n49004002009 +n49004002010 +n49004002011 +n49004003001 +n49004003002 +n49004003003 +n49004003004 +n49004003005 +n49004003006 +n49004003007 +n49004003008 +n49004003009 +n49004003010 +n49004003011 +n49004004001 +n49004004002 +n49004004003 +n49004004004 +n49004004005 +n49004004006 +n49004004007 +n49004004008 +n49004004009 +n49004004010 +n49004004011 +n49004004012 +n49004004013 +n49004004014 +n49004005001 +n49004005002 +n49004005003 +n49004005004 +n49004005005 +n49004005006 +n49004006001 +n49004006002 +n49004006003 +n49004006004 +n49004006005 +n49004006006 +n49004006007 +n49004006008 +n49004006009 +n49004006010 +n49004006011 +n49004006012 +n49004006013 +n49004006014 +n49004007002 +n49004007001 +n49004007003 +n49004007004 +n49004007005 +n49004007006 +n49004007007 +n49004007008 +n49004007009 +n49004007010 +n49004007011 +n49004007012 +n49004007013 +n49004007014 +n49004008001 +n49004008002 +n49004008003 +n49004008004 +n49004008005 +n49004008006 +n49004008007 +n49004008008 +n49004008009 +n49004008010 +n49004008011 +n49004009002 +n49004009001 +n49004009003 +n49004009004 +n49004009005 +n49004009006 +n49004009007 +n49004009008 +n49004009009 +n49004009010 +n49004009011 +n49004009012 +n49004009013 +n49004009014 +n49004009015 +n49004009016 +n49004010001 +n49004010002 +n49004010003 +n49004010004 +n49004010005 +n49004010006 +n49004010007 +n49004010008 +n49004010009 +n49004010010 +n49004010011 +n49004010012 +n49004010013 +n49004010014 +n49004010015 +n49004011001 +n49004011002 +n49004011003 +n49004011005 +n49004011004 +n49004011006 +n49004011008 +n49004011007 +n49004011009 +n49004011011 +n49004011010 +n49004011012 +n49004011014 +n49004011013 +n49004011015 +n49004011016 +n49004011017 +n49004012001 +n49004012002 +n49004012003 +n49004012004 +n49004012005 +n49004012006 +n49004012007 +n49004012008 +n49004012009 +n49004012010 +n49004012011 +n49004012012 +n49004012013 +n49004012014 +n49004013001 +n49004013002 +n49004013003 +n49004013004 +n49004013005 +n49004013006 +n49004013007 +n49004013008 +n49004013009 +n49004013010 +n49004013011 +n49004013012 +n49004013013 +n49004013014 +n49004013015 +n49004013016 +n49004013017 +n49004013018 +n49004013019 +n49004013020 +n49004013021 +n49004013022 +n49004013023 +n49004013024 +n49004013025 +n49004013026 +n49004014001 +n49004014002 +n49004014003 +n49004014004 +n49004014005 +n49004014006 +n49004014007 +n49004014008 +n49004014009 +n49004014010 +n49004014011 +n49004014012 +n49004014013 +n49004014014 +n49004014015 +n49004014016 +n49004014017 +n49004014018 +n49004014019 +n49004014020 +n49004014021 +n49004014022 +n49004014023 +n49004015002 +n49004015001 +n49004015003 +n49004015004 +n49004015005 +n49004015008 +n49004015009 +n49004015006 +n49004015007 +n49004015010 +n49004015011 +n49004015012 +n49004015013 +n49004015014 +n49004016001 +n49004016002 +n49004016003 +n49004016004 +n49004016005 +n49004016006 +n49004016007 +n49004016008 +n49004016009 +n49004016010 +n49004016011 +n49004016012 +n49004016013 +n49004016014 +n49004016015 +n49004016016 +n49004016017 +n49004016018 +n49004016019 +n49004016020 +n49004016021 +n49004016022 +n49004016023 +n49004016024 +n49004016025 +n49004016026 +n49004016027 +n49004016028 +n49004016029 +n49004016030 +n49004017002 +n49004017001 +n49004017003 +n49004017004 +n49004017005 +n49004017006 +n49004017007 +n49004017008 +n49004017009 +n49004017010 +n49004017011 +n49004017012 +n49004017013 +n49004017014 +n49004017015 +n49004017016 +n49004017017 +n49004017018 +n49004017019 +n49004017020 +n49004018001 +n49004018004 +n49004018002 +n49004018003 +n49004018005 +n49004018006 +n49004018007 +n49004018008 +n49004018009 +n49004018010 +n49004018011 +n49004018012 +n49004018013 +n49004018014 +n49004018015 +n49004018016 +n49004018017 +n49004018018 +n49004018019 +n49004018020 +n49004018021 +n49004018022 +n49004019001 +n49004019002 +n49004019003 +n49004019004 +n49004019005 +n49004019006 +n49004019007 +n49004019008 +n49004019009 +n49004019010 +n49004019011 +n49004019012 +n49004020002 +n49004020001 +n49004020003 +n49004020004 +n49004020005 +n49004020006 +n49004020007 +n49004021001 +n49004021002 +n49004021003 +n49004021004 +n49004021005 +n49004021006 +n49004021007 +n49004021008 +n49004021009 +n49004021010 +n49004021011 +n49004021012 +n49004021013 +n49004021014 +n49004022001 +n49004022002 +n49004022003 +n49004022004 +n49004022005 +n49004022006 +n49004022007 +n49004022008 +n49004022009 +n49004022010 +n49004022011 +n49004022012 +n49004022013 +n49004022014 +n49004022015 +n49004022016 +n49004023002 +n49004023001 +n49004023003 +n49004023004 +n49004023005 +n49004023006 +n49004023007 +n49004024001 +n49004024002 +n49004024003 +n49004024004 +n49004024005 +n49004024006 +n49004024007 +n49004024008 +n49004024009 +n49004024010 +n49004024011 +n49004024012 +n49004024013 +n49004024014 +n49004024015 +n49004025001 +n49004025002 +n49004025003 +n49004025004 +n49004025005 +n49004025006 +n49004025007 +n49004025008 +n49004025009 +n49004025010 +n49004025011 +n49004025012 +n49004025013 +n49004025014 +n49004025015 +n49004026001 +n49004026002 +n49004026003 +n49004026004 +n49004026005 +n49004026006 +n49004026007 +n49004026008 +n49004026009 +n49004026010 +n49004026011 +n49004027001 +n49004027002 +n49004027003 +n49004027004 +n49004027005 +n49004028001 +n49004028002 +n49004028003 +n49004028004 +n49004028006 +n49004028005 +n49004028007 +n49004028008 +n49004028009 +n49004028010 +n49004028011 +n49004028012 +n49004028013 +n49004028014 +n49004028015 +n49004028016 +n49004028017 +n49004028018 +n49004028019 +n49004029001 +n49004029002 +n49004029003 +n49004029004 +n49004029005 +n49004029006 +n49004029007 +n49004029008 +n49004029009 +n49004029010 +n49004029011 +n49004029012 +n49004029013 +n49004029014 +n49004029015 +n49004029016 +n49004029017 +n49004029018 +n49004029019 +n49004029020 +n49004029021 +n49004029022 +n49004030001 +n49004030002 +n49004030003 +n49004030004 +n49004030005 +n49004030006 +n49004030007 +n49004030008 +n49004030009 +n49004030010 +n49004030011 +n49004030012 +n49004030013 +n49004030014 +n49004030015 +n49004031001 +n49004031002 +n49004031003 +n49004031004 +n49004031005 +n49004031006 +n49004031007 +n49004031008 +n49004031009 +n49004031010 +n49004031011 +n49004031012 +n49004031013 +n49004031014 +n49004031015 +n49004031016 +n49004032002 +n49004032001 +n49004032003 +n49004032004 +n49004032005 +n49004032006 +n49004032007 +n49004032008 +n49004032009 +n49004032010 +n49004032011 +n49004032012 +n49004032013 +n49004032014 +n49004032015 +n49004032016 +n49005001002 +n49005001001 +n49005001003 +n49005001004 +n49005001005 +n49005001006 +n49005001007 +n49005001008 +n49005002001 +n49005002002 +n49005002003 +n49005002004 +n49005002005 +n49005002006 +n49005002007 +n49005002008 +n49005002009 +n49005002010 +n49005002011 +n49005002012 +n49005002013 +n49005002014 +n49005002015 +n49005002016 +n49005002017 +n49005002018 +n49005002019 +n49005002020 +n49005002021 +n49005002022 +n49005002023 +n49005003002 +n49005003001 +n49005003003 +n49005003004 +n49005003005 +n49005003006 +n49005003007 +n49005003008 +n49005003009 +n49005003010 +n49005003011 +n49005003012 +n49005003013 +n49005003014 +n49005004001 +n49005004002 +n49005004003 +n49005004004 +n49005004005 +n49005004006 +n49005004007 +n49005004008 +n49005004009 +n49005004010 +n49005004011 +n49005004012 +n49005005002 +n49005005001 +n49005005003 +n49005005004 +n49005005005 +n49005005006 +n49005005007 +n49005005008 +n49005005009 +n49005005010 +n49005005011 +n49005005012 +n49005005013 +n49005005014 +n49005005015 +n49005005016 +n49005005017 +n49005005018 +n49005005019 +n49005005020 +n49005005021 +n49005005022 +n49005005023 +n49005005024 +n49005006001 +n49005006002 +n49005006003 +n49005006004 +n49005006005 +n49005006008 +n49005006006 +n49005006007 +n49005006009 +n49005006010 +n49005006011 +n49005006012 +n49005006013 +n49005006014 +n49005006015 +n49005006016 +n49005006017 +n49005006018 +n49005007002 +n49005007001 +n49005007003 +n49005007004 +n49005007005 +n49005008002 +n49005008001 +n49005008003 +n49005008004 +n49005008006 +n49005008005 +n49005008007 +n49005008008 +n49005008009 +n49005008010 +n49005008011 +n49005008012 +n49005008013 +n49005009002 +n49005009001 +n49005009003 +n49005009004 +n49005009005 +n49005009006 +n49005009007 +n49005009008 +n49005009009 +n49005009010 +n49005009011 +n49005009012 +n49005010001 +n49005010002 +n49005010003 +n49005010004 +n49005010005 +n49005010006 +n49005011001 +n49005011002 +n49005011003 +n49005011004 +n49005011005 +n49005011006 +n49005011007 +n49005011008 +n49005011009 +n49005011011 +n49005011010 +n49005011012 +n49005011013 +n49005012002 +n49005012001 +n49005012003 +n49005012004 +n49005012005 +n49005012006 +n49005012007 +n49005012008 +n49005012009 +n49005012010 +n49005013002 +n49005013001 +n49005013003 +n49005013004 +n49005013005 +n49005013006 +n49005013007 +n49005013008 +n49005013010 +n49005013009 +n49005013011 +n49005013012 +n49005013013 +n49005013014 +n49005014001 +n49005014002 +n49005014003 +n49005014004 +n49005014005 +n49005014006 +n49005014007 +n49005014008 +n49005014009 +n49005014010 +n49005014011 +n49005014012 +n49005014013 +n49005014014 +n49005014015 +n49005015002 +n49005015001 +n49005015003 +n49005015004 +n49005015005 +n49005015006 +n49005015007 +n49005015008 +n49005015009 +n49005015010 +n49005015011 +n49005016001 +n49005016002 +n49005016003 +n49005016004 +n49005016005 +n49005016006 +n49005016007 +n49005016008 +n49005017001 +n49005017002 +n49005017003 +n49005017004 +n49005017005 +n49005017006 +n49005017007 +n49005017008 +n49005017009 +n49005017010 +n49005017011 +n49005017012 +n49005018001 +n49005018002 +n49005018003 +n49005018004 +n49005018005 +n49005018006 +n49005018007 +n49005018008 +n49005018009 +n49005018010 +n49005018011 +n49005018012 +n49005019001 +n49005019002 +n49005019003 +n49005019004 +n49005019005 +n49005019006 +n49005019007 +n49005019008 +n49005019009 +n49005019010 +n49005019011 +n49005019012 +n49005019013 +n49005019014 +n49005019015 +n49005019016 +n49005020001 +n49005020002 +n49005020003 +n49005020004 +n49005020005 +n49005020006 +n49005020007 +n49005020008 +n49005020009 +n49005020010 +n49005020011 +n49005020012 +n49005020013 +n49005020014 +n49005020015 +n49005021001 +n49005021002 +n49005021003 +n49005021004 +n49005021005 +n49005022001 +n49005022002 +n49005022003 +n49005022004 +n49005022005 +n49005022006 +n49005022007 +n49005022008 +n49005023001 +n49005023002 +n49005023003 +n49005023004 +n49005023005 +n49005023006 +n49005023007 +n49005023008 +n49005023009 +n49005023010 +n49005023011 +n49005023012 +n49005023013 +n49005023014 +n49005023015 +n49005023016 +n49005023017 +n49005024001 +n49005024002 +n49005024003 +n49005024004 +n49005024005 +n49005024006 +n49005024007 +n49005024008 +n49005024009 +n49005024010 +n49005024011 +n49005024012 +n49005024013 +n49005024014 +n49005024015 +n49005025001 +n49005025002 +n49005025003 +n49005025004 +n49005025005 +n49005025006 +n49005025007 +n49005025008 +n49005025009 +n49005025010 +n49005025011 +n49005025012 +n49005025013 +n49005025014 +n49005025015 +n49005025016 +n49005025017 +n49005026001 +n49005026002 +n49005026003 +n49005026004 +n49005026005 +n49005026006 +n49005026007 +n49005026008 +n49005026009 +n49005026010 +n49005027001 +n49005027002 +n49005027003 +n49005027004 +n49005027006 +n49005027007 +n49005027005 +n49005027008 +n49005027009 +n49005027010 +n49005027011 +n49005027012 +n49005027013 +n49005027014 +n49005027015 +n49005027016 +n49005027017 +n49005027018 +n49005027019 +n49005027020 +n49005027021 +n49005027022 +n49005028001 +n49005028002 +n49005028003 +n49005028004 +n49005028005 +n49005028006 +n49005028007 +n49005028008 +n49005028009 +n49005028010 +n49005028011 +n49005028012 +n49005028013 +n49005028014 +n49005028015 +n49005028016 +n49005028017 +n49005028018 +n49005028019 +n49005028020 +n49005029002 +n49005029001 +n49005029003 +n49005029004 +n49005029005 +n49005029006 +n49005029007 +n49005029008 +n49005029009 +n49005029010 +n49005029011 +n49005029012 +n49005029013 +n49005029014 +n49005029015 +n49005029016 +n49005029017 +n49005029018 +n49005030001 +n49005030003 +n49005030002 +n49005030004 +n49005030005 +n49005030006 +n49005031001 +n49005031002 +n49005031003 +n49005031004 +n49005031005 +n49005031006 +n49005031007 +n49005031008 +n49005031009 +n49005031010 +n49005031011 +n49005031012 +n49005031013 +n49005031014 +n49005031015 +n49005031016 +n49005031017 +n49005031018 +n49005031019 +n49005031020 +n49005031021 +n49005031022 +n49005032001 +n49005032002 +n49005032003 +n49005032004 +n49005032005 +n49005032007 +n49005032006 +n49005032008 +n49005032009 +n49005032010 +n49005032011 +n49005032012 +n49005032013 +n49005032014 +n49005033001 +n49005033002 +n49005033003 +n49005033004 +n49005033005 +n49005033006 +n49005033007 +n49005033008 +n49005033009 +n49005033010 +n49005033011 +n49005033012 +n49005033013 +n49005033014 +n49005033016 +n49005033015 +n49005033017 +n49005033018 +n49005033019 +n49005033020 +n49005033021 +n49006001001 +n49006001002 +n49006001003 +n49006001004 +n49006001005 +n49006001006 +n49006001007 +n49006001008 +n49006001010 +n49006001009 +n49006001011 +n49006001012 +n49006002001 +n49006002002 +n49006002003 +n49006002004 +n49006002005 +n49006002006 +n49006002007 +n49006002008 +n49006002009 +n49006002010 +n49006002011 +n49006002012 +n49006002013 +n49006003001 +n49006003002 +n49006003003 +n49006003004 +n49006003005 +n49006003006 +n49006003007 +n49006003008 +n49006003009 +n49006003010 +n49006004001 +n49006004002 +n49006004003 +n49006004004 +n49006004005 +n49006004006 +n49006004007 +n49006004008 +n49006004009 +n49006004010 +n49006004011 +n49006004012 +n49006004013 +n49006004014 +n49006004015 +n49006004016 +n49006005001 +n49006005002 +n49006005003 +n49006005004 +n49006005005 +n49006005006 +n49006005007 +n49006005008 +n49006005009 +n49006005010 +n49006005011 +n49006005012 +n49006005013 +n49006005014 +n49006005015 +n49006005016 +n49006005017 +n49006005018 +n49006005019 +n49006006001 +n49006006002 +n49006006003 +n49006006004 +n49006006005 +n49006006006 +n49006006007 +n49006006008 +n49006006009 +n49006006010 +n49006006011 +n49006006012 +n49006006013 +n49006006014 +n49006006015 +n49006006016 +n49006007001 +n49006007002 +n49006007003 +n49006007004 +n49006007005 +n49006007006 +n49006007007 +n49006007008 +n49006007009 +n49006008001 +n49006008002 +n49006008004 +n49006008003 +n49006008005 +n49006008007 +n49006008006 +n49006008008 +n49006008009 +n49006008010 +n49006008011 +n49006008012 +n49006008013 +n49006008014 +n49006008015 +n49006009001 +n49006009002 +n49006009003 +n49006009004 +n49006009005 +n49006009006 +n49006009007 +n49006009008 +n49006009009 +n49006009010 +n49006009011 +n49006009012 +n49006009013 +n49006009014 +n49006009015 +n49006009016 +n49006009017 +n49006009018 +n49006009019 +n49006009020 +n49006009021 +n49006009022 +n49006009023 +n49006009024 +n49006009025 +n49006009026 +n49006009027 +n49006009028 +n49006010001 +n49006010002 +n49006010003 +n49006010004 +n49006010005 +n49006010006 +n49006010007 +n49006010008 +n49006010009 +n49006010010 +n49006010011 +n49006010012 +n49006011001 +n49006011002 +n49006011003 +n49006011004 +n49006011005 +n49006011006 +n49006011007 +n49006011008 +n49006011009 +n49006011010 +n49006011011 +n49006011012 +n49006011013 +n49006011014 +n49006011015 +n49006012001 +n49006012003 +n49006012004 +n49006012005 +n49006012006 +n49006012002 +n49006012007 +n49006012008 +n49006012009 +n49006012010 +n49006012011 +n49006012012 +n49006012013 +n49006012014 +n49006012015 +n49006012016 +n49006012017 +n49006012018 +n49006012019 +n49006012020 +n49006012021 +n49006012022 +n49006012023 +n49006012024 +n49006012025 +n49006012026 +n49006012027 +n49006012028 +n49006012029 +n49006012030 +n49006012031 +n49006013001 +n49006013002 +n49006013003 +n49006013004 +n49006013005 +n49006013006 +n49006013007 +n49006013008 +n49006013009 +n49006013010 +n49006013011 +n49006013012 +n49006013013 +n49006013014 +n49006013015 +n49006013016 +n49006013017 +n49006013018 +n49006013019 +n49006014002 +n49006014001 +n49006014003 +n49006014004 +n49006014005 +n49006014006 +n49006014007 +n49006014008 +n49006014009 +n49006014010 +n49006014011 +n49006014012 +n49006014013 +n49006014014 +n49006015001 +n49006015002 +n49006015003 +n49006015004 +n49006015005 +n49006015006 +n49006015007 +n49006015008 +n49006015009 +n49006015010 +n49006016001 +n49006016002 +n49006016003 +n49006016004 +n49006016005 +n49006016006 +n49006016007 +n49006016008 +n49006016009 +n49006016010 +n49006016011 +n49006016012 +n49006016013 +n49006016014 +n49006016015 +n49006016016 +n49006016017 +n49006016018 +n49006017001 +n49006017006 +n49006017002 +n49006017003 +n49006017004 +n49006017005 +n49006017007 +n49006017008 +n49006017009 +n49006017010 +n49006017011 +n49006017012 +n49006017013 +n49006017014 +n49006017015 +n49006018001 +n49006018002 +n49006018003 +n49006018004 +n49006018005 +n49006018006 +n49006018007 +n49006018008 +n49006018009 +n49006018010 +n49006018011 +n49006018012 +n49006018013 +n49006018014 +n49006018015 +n49006018016 +n49006018017 +n49006018018 +n49006018019 +n49006018020 +n49006018021 +n49006018022 +n49006018023 +n49006018024 +n49006019001 +n49006019002 +n49006019003 +n49006019004 +n49006019005 +n49006019006 +n49006019007 +n49006019008 +n49006019009 +n49006019010 +n49006019011 +n49006019012 +n49006019013 +n49006019014 +n49006019015 +n49006019016 +n49006019017 +n49006019018 +n49006019019 +n49006020001 +n49006020002 +n49006020003 +n49006020004 +n49006020005 +n49006020006 +n49006020007 +n49006020008 +n49006020009 +n49006020010 +n49006020011 +n49006020012 +n49006020013 +n49006021002 +n49006021001 +n49006021003 +n49006021004 +n49006021005 +n49006021006 +n49006021007 +n49006021008 +n49006021009 +n49006021010 +n49006021011 +n49006021012 +n49006021013 +n49006021014 +n49006021015 +n49006021016 +n49006021017 +n49006021018 +n49006021019 +n49006021020 +n49006021021 +n49006021022 +n49006022001 +n49006022002 +n49006022003 +n49006022004 +n49006022005 +n49006022006 +n49006022007 +n49006022008 +n49006022009 +n49006022010 +n49006022011 +n49006022012 +n49006022013 +n49006022014 +n49006022015 +n49006022016 +n49006022017 +n49006023002 +n49006023003 +n49006023001 +n49006023004 +n49006023005 +n49006023006 +n49006023007 +n49006023008 +n49006023009 +n49006023010 +n49006023011 +n49006023012 +n49006023013 +n49006023014 +n49006024001 +n49006024002 +n49006024003 +n49006024004 +n49006024005 +n49006024006 +n49006024007 +n49006024008 +n49006024009 +n49006024010 +n49006024011 +n49006024012 +n49006024013 +n50001001001 +n50001001002 +n50001001003 +n50001001004 +n50001001005 +n50001001006 +n50001001007 +n50001001008 +n50001001009 +n50001001010 +n50001001011 +n50001001012 +n50001001013 +n50001001014 +n50001001015 +n50001001016 +n50001001017 +n50001001018 +n50001001019 +n50001001020 +n50001002002 +n50001002001 +n50001002003 +n50001002004 +n50001002005 +n50001002006 +n50001002007 +n50001002008 +n50001002009 +n50001002010 +n50001002011 +n50001002012 +n50001003001 +n50001003002 +n50001003003 +n50001003004 +n50001003005 +n50001003006 +n50001003007 +n50001003008 +n50001003009 +n50001004001 +n50001004002 +n50001004003 +n50001004004 +n50001004005 +n50001004006 +n50001004007 +n50001004008 +n50001004009 +n50001004010 +n50001004011 +n50001004012 +n50001004013 +n50001005001 +n50001005002 +n50001005003 +n50001005004 +n50001005005 +n50001005006 +n50001005007 +n50001005008 +n50001005009 +n50001005010 +n50001005011 +n50001005012 +n50001005013 +n50001005014 +n50001006001 +n50001006002 +n50001006003 +n50001006004 +n50001006005 +n50001006006 +n50001006007 +n50001006008 +n50001006009 +n50001006010 +n50001006011 +n50001006012 +n50001006013 +n50001006014 +n50001006015 +n50001007001 +n50001007002 +n50001007003 +n50001007004 +n50001007005 +n50001007006 +n50001007007 +n50001007008 +n50001007009 +n50001007010 +n50001007011 +n50001007012 +n50001007013 +n50001007014 +n50001007015 +n50001007016 +n50001007017 +n50001007019 +n50001007018 +n50001007020 +n50001007021 +n50001007022 +n50001007023 +n50001007024 +n50001007025 +n50001007026 +n50001007027 +n50001007028 +n50001007029 +n50001007030 +n50001007031 +n50001007032 +n50001007033 +n50001007034 +n50001007035 +n50001007036 +n50001007037 +n50001008002 +n50001008001 +n50001008003 +n50001008004 +n50001008005 +n50001008006 +n50001008007 +n50001008008 +n50001008009 +n50001008010 +n50001008011 +n50001008012 +n50001008013 +n50001009001 +n50001009002 +n50001009003 +n50001009004 +n50001009005 +n50001009006 +n50001009007 +n50001009008 +n50001009009 +n50001009010 +n50001009011 +n50001009012 +n50001009013 +n50001009014 +n50001009015 +n50001009016 +n50001009017 +n50001010001 +n50001010002 +n50001010003 +n50001010004 +n50001010005 +n50001010006 +n50001010007 +n50001010008 +n50001010009 +n50001010010 +n50001010011 +n50001010012 +n50001010013 +n50001010014 +n50001011001 +n50001011002 +n50001011003 +n50001011004 +n50001011005 +n50001011006 +n50001011007 +n50001011008 +n50001011009 +n50001011010 +n50001011011 +n50001011012 +n50001012002 +n50001012005 +n50001012004 +n50001012001 +n50001012003 +n50001012006 +n50001012007 +n50001012008 +n50001012009 +n50001012010 +n50001012011 +n50001012012 +n50001012013 +n50001012014 +n50001012015 +n50001013001 +n50001013002 +n50001013003 +n50001013004 +n50001013005 +n50001013006 +n50001013007 +n50001013008 +n50001013009 +n50001013010 +n50001013011 +n50001013012 +n50001013013 +n50001013014 +n50001013015 +n50001013016 +n50001014001 +n50001014002 +n50001014003 +n50001014004 +n50001014005 +n50001014006 +n50001014007 +n50001014008 +n50001014009 +n50001014010 +n50001014011 +n50001014012 +n50001014013 +n50001014014 +n50001014015 +n50001014016 +n50001014017 +n50001014018 +n50001014019 +n50001015002 +n50001015001 +n50001015003 +n50001015004 +n50001015005 +n50001015006 +n50001015007 +n50001015009 +n50001015008 +n50001015010 +n50001015011 +n50001015012 +n50001015013 +n50001015014 +n50001015015 +n50001016002 +n50001016001 +n50001016003 +n50001016004 +n50001016005 +n50001016006 +n50001016007 +n50001016008 +n50001016009 +n50001016010 +n50001016011 +n50001017002 +n50001017001 +n50001017003 +n50001017004 +n50001017005 +n50001017006 +n50001017007 +n50001017008 +n50001017009 +n50001017010 +n50001017011 +n50001017012 +n50001017013 +n50001017014 +n50001017015 +n50001018002 +n50001018001 +n50001018003 +n50001018004 +n50001018005 +n50001018006 +n50001018007 +n50001018008 +n50001018009 +n50001018010 +n50001018011 +n50001018012 +n50001018013 +n50001018014 +n50001018015 +n50001018016 +n50001018017 +n50001018018 +n50001018019 +n50001019002 +n50001019001 +n50001019003 +n50001019004 +n50001019005 +n50001019006 +n50001019007 +n50001019008 +n50001019009 +n50001019010 +n50001019011 +n50001019012 +n50001019013 +n50001019014 +n50001019015 +n50001019016 +n50001019017 +n50001019018 +n50001020001 +n50001020002 +n50001020003 +n50001020004 +n50001020005 +n50001020006 +n50001020007 +n50001020008 +n50001020009 +n50001020010 +n50001020011 +n50001020012 +n50001020013 +n50001020014 +n50001020015 +n50001020016 +n50001020017 +n50001020018 +n50001020019 +n50001020020 +n50001020021 +n50001020022 +n50001020023 +n50001020024 +n50001020025 +n50001020026 +n50001020027 +n50001020028 +n50001020029 +n50001020030 +n50001021002 +n50001021001 +n50001021003 +n50001021004 +n50001021005 +n50001021006 +n50001021007 +n50001021008 +n50001021009 +n50001022002 +n50001022001 +n50001022003 +n50001022004 +n50001022005 +n50001022006 +n50001022007 +n50001022008 +n50001022009 +n50001022010 +n50001022011 +n50001022012 +n50001022013 +n50001022014 +n50001022015 +n50001023002 +n50001023001 +n50001023003 +n50001023004 +n50001023005 +n50001023006 +n50001023007 +n50001023008 +n50001023009 +n50001023010 +n50001023011 +n50001023012 +n50001023013 +n50001023014 +n50001023015 +n50001023017 +n50001023016 +n50001023018 +n50001023019 +n50001024002 +n50001024001 +n50001024003 +n50001024004 +n50001024005 +n50001024006 +n50001024007 +n50001024008 +n50001025001 +n50001025002 +n50001025003 +n50001025004 +n50001025005 +n50001025006 +n50001025007 +n50001025008 +n50001025009 +n50001025010 +n50001025011 +n50001025012 +n50001025013 +n50001025014 +n50001025015 +n50001025016 +n50001025017 +n50001025018 +n50001026001 +n50001026002 +n50001026003 +n50001026004 +n50001026005 +n50001026006 +n50001026007 +n50001026008 +n50001026009 +n50001026010 +n50001026011 +n50001026012 +n50001026013 +n50001026014 +n50001026015 +n50001026016 +n50001026017 +n50001027001 +n50001027002 +n50001027003 +n50001027004 +n50001027005 +n50001027006 +n50001027007 +n50001027008 +n50001027009 +n50001027010 +n50001027011 +n50001027012 +n50001027013 +n50001027014 +n50001027015 +n50001027016 +n50001027017 +n50001027018 +n50001027019 +n50001027020 +n50001027021 +n50001027022 +n50001027023 +n50001027024 +n50001027025 +n50001027026 +n50001027027 +n50001027028 +n50001027029 +n50001027030 +n50001027031 +n50001028001 +n50001028002 +n50001028003 +n50001028004 +n50001028005 +n50001028006 +n50001028007 +n50001028008 +n50001028009 +n50001028010 +n50001028011 +n50001028012 +n50001028013 +n50001028015 +n50001028014 +n50001028016 +n50001028017 +n50001028018 +n50001028019 +n50001028020 +n50001029001 +n50001029002 +n50001029003 +n50001029004 +n50001029005 +n50001029006 +n50001029007 +n50001029008 +n50001029009 +n50001029010 +n50001029011 +n50001029012 +n50001029013 +n50001029014 +n50001029015 +n50001029016 +n50001029017 +n50001029018 +n50001030004 +n50001030001 +n50001030002 +n50001030003 +n50001030005 +n50001030006 +n50001030007 +n50001030008 +n50001030009 +n50001030010 +n50001030011 +n50001030012 +n50001030013 +n50002001003 +n50002001001 +n50002001002 +n50002001004 +n50002001005 +n50002001006 +n50002001007 +n50002001008 +n50002001009 +n50002001010 +n50002001011 +n50002001012 +n50002001013 +n50002001014 +n50002001015 +n50002001016 +n50002001017 +n50002001018 +n50002001019 +n50002002001 +n50002002002 +n50002002003 +n50002002004 +n50002002005 +n50002002006 +n50002002007 +n50002002008 +n50002002009 +n50002002010 +n50002002011 +n50002002012 +n50002002013 +n50002002014 +n50002002015 +n50002002016 +n50002003001 +n50002003002 +n50002003003 +n50002003004 +n50002003005 +n50002003006 +n50002003007 +n50002003008 +n50002003009 +n50002003010 +n50002003011 +n50002003012 +n50002003013 +n50002004001 +n50002004002 +n50002004003 +n50002004004 +n50002004005 +n50002004006 +n50002004007 +n50002004008 +n50002004009 +n50002004010 +n50002005001 +n50002005002 +n50002005003 +n50002005004 +n50002005005 +n50002005006 +n50002005007 +n50002005008 +n50002005009 +n50002006001 +n50002006002 +n50002006003 +n50002006004 +n50002006005 +n50002006006 +n50002006007 +n50002006008 +n50002006009 +n50002006010 +n50002006011 +n50002006012 +n50002007001 +n50002007002 +n50002007003 +n50002007004 +n50002007005 +n50002007006 +n50002007007 +n50002007008 +n50002007009 +n50002007010 +n50002007011 +n50002007012 +n50002007013 +n50002007014 +n50002007015 +n50002008001 +n50002008002 +n50002008003 +n50002008004 +n50002008005 +n50002008006 +n50002008008 +n50002008007 +n50002008009 +n50002009001 +n50002009002 +n50002009003 +n50002009004 +n50002009005 +n50002009006 +n50002009007 +n50002009008 +n50002009009 +n50002009010 +n50002009011 +n50002009012 +n50002009013 +n50002009014 +n50002009015 +n50002010001 +n50002010002 +n50002010003 +n50002010004 +n50002010005 +n50002010008 +n50002010006 +n50002010007 +n50002010009 +n50002010010 +n50002010011 +n50002010012 +n50002010013 +n50002011001 +n50002011002 +n50002011003 +n50002011004 +n50002011005 +n50002011006 +n50002011007 +n50002011008 +n50002011009 +n50002011010 +n50002011011 +n50002011012 +n50002012001 +n50002012002 +n50002012003 +n50002012004 +n50002012005 +n50002012006 +n50002012008 +n50002012007 +n50002012009 +n50002012010 +n50002012011 +n50002012012 +n50002012013 +n50002012014 +n50002012015 +n50002012016 +n50002012017 +n50002012018 +n50002012019 +n50002012020 +n50002012021 +n50002012022 +n50002012023 +n50002012024 +n50002012025 +n50002012026 +n50002012027 +n50002012028 +n50002012029 +n50002013002 +n50002013001 +n50002013003 +n50002013004 +n50002013005 +n50002013006 +n50002013007 +n50002013008 +n50002013009 +n50002013010 +n50002013011 +n50002013012 +n50002013013 +n50002013014 +n50002013015 +n50002013016 +n50002014001 +n50002014002 +n50002014003 +n50002014004 +n50002014005 +n50002014006 +n50002015001 +n50002015002 +n50002015003 +n50002015004 +n50002015005 +n50002015006 +n50002015007 +n50002015008 +n50002015009 +n50002015010 +n50002015011 +n50002015012 +n50002015013 +n50002015014 +n50002015015 +n50002015016 +n50002015017 +n50002015018 +n50002015019 +n50002015020 +n50002016001 +n50002016002 +n50002016003 +n50002016004 +n50002016005 +n50002016006 +n50002016007 +n50002016008 +n50002016009 +n50002016010 +n50002016011 +n50002016012 +n50002016013 +n50002016014 +n50002016015 +n50002016016 +n50002016017 +n50002016018 +n50002017001 +n50002017002 +n50002017003 +n50002017004 +n50002017005 +n50002017006 +n50002017007 +n50002017008 +n50002017009 +n50002017010 +n50002017011 +n50002017012 +n50002017013 +n50002017014 +n50002017015 +n50002017016 +n50002017017 +n50002018002 +n50002018001 +n50002018003 +n50002018004 +n50002018005 +n50002018006 +n50002018007 +n50002018008 +n50002018009 +n50002019002 +n50002019001 +n50002019003 +n50002019004 +n50002019005 +n50002019006 +n50002019007 +n50002019008 +n50002019009 +n50002019010 +n50002019011 +n50002019012 +n50002019013 +n50002019014 +n50002019015 +n50002019016 +n50002020002 +n50002020001 +n50002020004 +n50002020003 +n50002020005 +n50002020006 +n50002020007 +n50002020008 +n50002020009 +n50002020010 +n50002021003 +n50002021001 +n50002021002 +n50002021004 +n50002021005 +n50002021006 +n50002021007 +n50002021008 +n50002021009 +n50002021010 +n50002022002 +n50002022001 +n50002022003 +n50002022004 +n50002022005 +n50002022006 +n50002022007 +n50002022008 +n50002022009 +n50002022010 +n50002022011 +n50002022012 +n50002022013 +n50002022014 +n50002022015 +n50002023003 +n50002023002 +n50002023004 +n50002023001 +n50002023005 +n50002023006 +n50002023007 +n50002023008 +n50002023009 +n50002023010 +n50002023011 +n50002023012 +n50002024002 +n50002024001 +n50002024003 +n50002024004 +n50002024005 +n50002024006 +n50002024007 +n50002024008 +n50002024009 +n50002025002 +n50002025003 +n50002025001 +n50002025004 +n50002025005 +n50002025006 +n50002025007 +n50002025008 +n50002025009 +n50002025010 +n50002025011 +n50002025013 +n50002025012 +n50002025014 +n50002025015 +n50002025016 +n50002025017 +n50002025018 +n50002025019 +n50002025020 +n50002025021 +n50002025022 +n50002026001 +n50002026002 +n50002026003 +n50002026004 +n50002026005 +n50002026006 +n50002026007 +n50002026008 +n50002026009 +n50002026010 +n50002026011 +n50002027002 +n50002027001 +n50002027003 +n50002027004 +n50002027005 +n50002027006 +n50002027007 +n50002027008 +n50002027009 +n50002027010 +n50002027013 +n50002027011 +n50002027012 +n50002027014 +n50002027015 +n50002027016 +n50002027017 +n50002027018 +n50002027019 +n50002027020 +n50002027021 +n50002027022 +n50002027023 +n50002028002 +n50002028001 +n50002028003 +n50002028004 +n50002028005 +n50002028006 +n50002028007 +n50002028008 +n50002028009 +n50002028010 +n50002028011 +n50002028012 +n50002029002 +n50002029001 +n50002029003 +n50002029004 +n50002029005 +n50002029006 +n50002029007 +n50002029008 +n50002029009 +n50002029010 +n50002029011 +n50002029012 +n50002029013 +n50002030001 +n50002030002 +n50002030003 +n50002030004 +n50002030005 +n50002030006 +n50002030007 +n50002030008 +n50002030009 +n50002030010 +n50002030011 +n50002030012 +n50002030013 +n50002030014 +n50002030015 +n50002030016 +n50002030017 +n50002030018 +n50002030019 +n50002030020 +n50003001003 +n50003001004 +n50003001001 +n50003001002 +n50003001005 +n50003001006 +n50003001007 +n50003001008 +n50003001009 +n50003001010 +n50003001011 +n50003001013 +n50003001012 +n50003001014 +n50003001015 +n50003001017 +n50003001016 +n50003001018 +n50003002001 +n50003002002 +n50003002003 +n50003002004 +n50003002005 +n50003002006 +n50003002007 +n50003002008 +n50003002009 +n50003002010 +n50003003002 +n50003003003 +n50003003004 +n50003003005 +n50003003001 +n50003003006 +n50003003007 +n50003003008 +n50003003009 +n50003003010 +n50003003011 +n50003003012 +n50003003013 +n50003003014 +n50003003015 +n50003003016 +n50003003017 +n50003003018 +n50003003019 +n50003004001 +n50003004002 +n50003004003 +n50003004004 +n50003004005 +n50003004006 +n50003004007 +n50003004008 +n50003004009 +n50003004011 +n50003004010 +n50003004012 +n50003004013 +n50003004014 +n50003004015 +n50003004016 +n50003005001 +n50003005002 +n50003005003 +n50003005004 +n50003005005 +n50003005006 +n50003005007 +n50003005008 +n50003005009 +n50003005010 +n50003005011 +n50003005012 +n50003005013 +n50003006001 +n50003006002 +n50003006003 +n50003006004 +n50003006005 +n50003006006 +n50003006007 +n50003006008 +n50003006009 +n50003006010 +n50003006011 +n50003006012 +n50003007001 +n50003007002 +n50003007003 +n50003007004 +n50003007005 +n50003007006 +n50003007007 +n50003007008 +n50003007009 +n50003007010 +n50003007011 +n50003008001 +n50003008002 +n50003008003 +n50003008004 +n50003008005 +n50003008006 +n50003008007 +n50003008008 +n50003008009 +n50003008010 +n50003008011 +n50003008012 +n50003008013 +n50003008014 +n50003008015 +n50003008016 +n50003008017 +n50003008018 +n50003008019 +n50003008020 +n50003008021 +n50003008022 +n50003008023 +n50003008024 +n50003008025 +n50003008026 +n50003008027 +n50003008028 +n50003008029 +n50003008030 +n50003009001 +n50003009002 +n50003009003 +n50003009004 +n50003009006 +n50003009005 +n50003009007 +n50003009008 +n50003009009 +n50003009010 +n50003009011 +n50003009012 +n50003009013 +n50003009014 +n50003009015 +n50003009016 +n50003009017 +n50003009018 +n50003009019 +n50003009020 +n50003009021 +n50003009022 +n50003009023 +n50003010001 +n50003010002 +n50003010003 +n50003010004 +n50003010005 +n50003010006 +n50003010007 +n50003010008 +n50003010009 +n50003010010 +n50003010011 +n50003010012 +n50003010013 +n50003010014 +n50003010015 +n50003010016 +n50003010017 +n50003011001 +n50003011002 +n50003011003 +n50003011004 +n50003011005 +n50003011006 +n50003011007 +n50003011008 +n50003011009 +n50003012001 +n50003012002 +n50003012003 +n50003012004 +n50003012005 +n50003012006 +n50003012007 +n50003012009 +n50003012008 +n50003012010 +n50003012011 +n50003012012 +n50003012013 +n50003012014 +n50003012015 +n50003012016 +n50003012017 +n50003012018 +n50003012019 +n50003013001 +n50003013002 +n50003013004 +n50003013005 +n50003013003 +n50003013006 +n50003013008 +n50003013007 +n50003013010 +n50003013009 +n50003013011 +n50003013012 +n50003013014 +n50003013013 +n50003013015 +n50003013016 +n50003014001 +n50003014002 +n50003014003 +n50003014004 +n50003014005 +n50003014006 +n50003014007 +n50003014008 +n50003014009 +n50003014010 +n50003014011 +n50003014012 +n50003014013 +n50003014014 +n50003015002 +n50003015001 +n50003015003 +n50003015004 +n50003015005 +n50003015006 +n50003015007 +n50003015008 +n50003015009 +n50003015010 +n50003015011 +n50003015012 +n50003015013 +n50003015014 +n50003015015 +n50003015016 +n50003016001 +n50003016002 +n50003016003 +n50003016004 +n50003016005 +n50003016006 +n50003016007 +n50003017004 +n50003017001 +n50003017002 +n50003017003 +n50003017005 +n50003017006 +n50003017007 +n50003017008 +n50003017009 +n50003017010 +n50003017011 +n50003017012 +n50003017013 +n50003018002 +n50003018001 +n50003018003 +n50003018004 +n50003018005 +n50003018006 +n50003018007 +n50003018009 +n50003018008 +n50003018010 +n50003018011 +n50003018012 +n50003018013 +n50003018014 +n50003018015 +n50003018016 +n50003018017 +n50003018018 +n50003019001 +n50003019002 +n50003019003 +n50003019004 +n50003019005 +n50003019006 +n50003019007 +n50003019008 +n50003019009 +n50003019010 +n50003019011 +n50003019012 +n50003019013 +n50003019014 +n50003019015 +n50003019016 +n50003019017 +n50003019018 +n50003019019 +n50003019020 +n50003020002 +n50003020001 +n50003020003 +n50003020004 +n50003020005 +n50003020006 +n50003020007 +n50003020008 +n50003020009 +n50003020010 +n50003020012 +n50003020011 +n50003020013 +n50003020014 +n50003020015 +n50003021001 +n50003021002 +n50003021003 +n50003021004 +n50003021005 +n50003021006 +n50003021007 +n50003021008 +n50003021009 +n50003021010 +n50003021011 +n50003021012 +n50003021013 +n50003021014 +n50003021015 +n50003021016 +n50003021017 +n50003021018 +n50003021019 +n50003021020 +n50003021021 +n50003021022 +n50003021023 +n50003021024 +n50004001001 +n50004001002 +n50004001003 +n50004001004 +n50004001005 +n50004001006 +n50004001007 +n50004001008 +n50004001009 +n50004001010 +n50004001011 +n50004001012 +n50004001013 +n50004001014 +n50004001015 +n50004002001 +n50004002002 +n50004002003 +n50004002004 +n50004002005 +n50004002006 +n50004002007 +n50004002008 +n50004002009 +n50004002010 +n50004003001 +n50004003002 +n50004003003 +n50004003004 +n50004003005 +n50004003006 +n50004003007 +n50004003008 +n50004003009 +n50004003010 +n50004003011 +n50004003012 +n50004003013 +n50004003014 +n50004003015 +n50004003016 +n50004003017 +n50004003018 +n50004003019 +n50004003020 +n50004003021 +n50004003022 +n50004003023 +n50004003024 +n50004003025 +n50004003026 +n50004003027 +n50004003028 +n50004004001 +n50004004002 +n50004004003 +n50004004004 +n50004004005 +n50004004006 +n50004004007 +n50004005001 +n50004005002 +n50004005003 +n50004005004 +n50004005005 +n50004005006 +n50004005007 +n50004005008 +n50004005009 +n50004006001 +n50004006002 +n50004006003 +n50004006004 +n50004006005 +n50004006006 +n50004006007 +n50004006008 +n50004006009 +n50004006010 +n50004006011 +n50004006012 +n50004006013 +n50004006014 +n50004006015 +n50004006016 +n50004006017 +n50004006018 +n50004006019 +n50004007001 +n50004007002 +n50004007003 +n50004007004 +n50004007005 +n50004007006 +n50004007007 +n50004007008 +n50004007009 +n50004007010 +n50004007011 +n50004007012 +n50004007013 +n50004007014 +n50004007015 +n50004007016 +n50004007017 +n50004007018 +n50004007019 +n50004007020 +n50004008003 +n50004008001 +n50004008002 +n50004008004 +n50004008005 +n50004008006 +n50004008007 +n50004008008 +n50004008009 +n50004008010 +n50004008011 +n50004008012 +n50004008013 +n50004008014 +n50004008015 +n50004008016 +n50004008017 +n50004008018 +n50004008019 +n50004008020 +n50004008021 +n50004008022 +n50004008023 +n50004008024 +n50004008025 +n50004009001 +n50004009002 +n50004009003 +n50004009004 +n50004009005 +n50004009006 +n50004009007 +n50004009008 +n50004009009 +n50004009010 +n50004009011 +n50004009012 +n50004009013 +n50004009014 +n50004009015 +n50004009016 +n50004009017 +n50004009018 +n50004009019 +n50004009020 +n50004009021 +n50004010002 +n50004010001 +n50004010003 +n50004010004 +n50004010005 +n50004010006 +n50004010007 +n50004010008 +n50004010009 +n50004010010 +n50004010011 +n50004010012 +n50004010013 +n50004010014 +n50004010015 +n50004010016 +n50004010017 +n50004010019 +n50004010018 +n50004011001 +n50004011002 +n50004011003 +n50004011004 +n50004011005 +n50004011007 +n50004011006 +n50004011008 +n50004011009 +n50004011010 +n50004011011 +n50004011012 +n50004011013 +n50004012001 +n50004012002 +n50004012003 +n50004012004 +n50004012005 +n50004012006 +n50004012007 +n50004012008 +n50004012009 +n50004012010 +n50004012011 +n50004012012 +n50004012013 +n50004012014 +n50004012015 +n50004012016 +n50004012017 +n50004012018 +n50004012019 +n50004012020 +n50004013001 +n50004013002 +n50004013003 +n50004013004 +n50004013005 +n50004013006 +n50004014001 +n50004014002 +n50004014003 +n50004014004 +n50004014005 +n50004014006 +n50004014007 +n50004015002 +n50004015005 +n50004015001 +n50004015003 +n50004015004 +n50004015006 +n50004015011 +n50004015012 +n50004015013 +n50004015014 +n50004015007 +n50004015008 +n50004015009 +n50004015010 +n50004015015 +n50004015017 +n50004015016 +n50004015018 +n50004015019 +n50004015020 +n50004015021 +n50004015022 +n50004015023 +n50004015024 +n50004015025 +n50004015026 +n50004015027 +n50004016001 +n50004016002 +n50004016003 +n50004016004 +n50004016005 +n50004016006 +n50004016007 +n50004016008 +n50004016009 +n50004016010 +n50004016011 +n50004016012 +n50004016013 +n50004017001 +n50004017002 +n50004017003 +n50004017004 +n50004017005 +n50004017006 +n50004017007 +n50004017008 +n50004017009 +n50004017010 +n50004017011 +n50004017012 +n50004017013 +n50004017014 +n50004018002 +n50004018001 +n50004018003 +n50004018004 +n50004018005 +n50004018006 +n50004018007 +n50004018008 +n50004018009 +n50004018010 +n50004018011 +n50004018012 +n50004018013 +n50004018014 +n50004018015 +n50004018016 +n50004018017 +n50004018018 +n50004018019 +n50004019002 +n50004019001 +n50004019003 +n50004019004 +n50004019005 +n50004019006 +n50004019007 +n50004019008 +n50004019009 +n50004019010 +n50004019011 +n50004019012 +n50004019013 +n50004019014 +n50004019015 +n50004019016 +n50004019017 +n50004020002 +n50004020001 +n50004020003 +n50004020004 +n50004020005 +n50004020006 +n50004020007 +n50004020008 +n50004020009 +n50004020010 +n50004020011 +n50004020012 +n50004020013 +n50004020014 +n50004021001 +n50004021002 +n50004021003 +n50004021004 +n50004021005 +n50004021006 +n50004021007 +n50004021008 +n50004021009 +n50004021010 +n50004021011 +n50004021012 +n50004022001 +n50004022002 +n50004022003 +n50004022004 +n50004022005 +n50004022007 +n50004022006 +n50004022008 +n50004022009 +n50004022010 +n50004022011 +n50004022012 +n50004023001 +n50004023002 +n50004023003 +n50004023004 +n50004023005 +n50004023006 +n50004023007 +n50004023008 +n50004023009 +n50004023010 +n51001001001 +n51001001002 +n51001001003 +n51001001004 +n51001001005 +n51001001006 +n51001001007 +n51001001008 +n51001001009 +n51001001010 +n51001001011 +n51001002001 +n51001002002 +n51001002003 +n51001002004 +n51001002005 +n51001002006 +n51001002007 +n51001002008 +n51001002009 +n51001002011 +n51001002010 +n51001002012 +n51001002013 +n51001002014 +n51001002015 +n51001002016 +n51001002017 +n51001003001 +n51001003002 +n51001003003 +n51001003004 +n51001003005 +n51001003006 +n51001003007 +n51001003008 +n51001003009 +n51001003010 +n51001003011 +n51001003012 +n51001003013 +n51001004001 +n51001004002 +n51001004003 +n51001004004 +n51001004005 +n51001004006 +n51001004007 +n51001004008 +n51001004009 +n51001004010 +n51001004011 +n51001004012 +n51001004013 +n51001004014 +n51001004015 +n51001004016 +n51001005001 +n51001005002 +n51001005003 +n51001005004 +n51001005005 +n51001005006 +n51001005007 +n51001005008 +n51001005009 +n51001005010 +n51001005011 +n51001005012 +n51001005013 +n51001005014 +n51001005015 +n51001005016 +n51001005017 +n51001005018 +n51001006001 +n51001006002 +n51001006003 +n51001006004 +n51001006005 +n51001006006 +n51001006007 +n51001006008 +n51001006009 +n51001006010 +n51001006011 +n51001006012 +n51001006013 +n51001006014 +n51001006015 +n51001006016 +n51001006017 +n51001006018 +n51001006019 +n51001006020 +n51001006021 +n51001006022 +n51001006023 +n51001006024 +n51001006025 +n51001006026 +n51001006027 +n51001006028 +n51001006029 +n51001006030 +n51001007001 +n51001007002 +n51001007003 +n51001007004 +n51001007005 +n51001007006 +n51001007007 +n51001007008 +n51001007009 +n51001007010 +n51001007011 +n51001007012 +n51001007013 +n51001007014 +n51001007015 +n51001007016 +n51001008001 +n51001008002 +n51001008003 +n51001008004 +n51001008005 +n51001008006 +n51001008007 +n51001008008 +n51001008009 +n51001009001 +n51001009002 +n51001009003 +n51001009004 +n51001009005 +n51001009006 +n51001009007 +n51001009008 +n51001009009 +n51001009010 +n51001009011 +n51001009012 +n51001009013 +n51001009014 +n51001009015 +n51001009016 +n51001009017 +n51001009018 +n51001009019 +n51001009020 +n51001009021 +n51001009022 +n51001009023 +n51001009024 +n51001009025 +n51001009026 +n51001009027 +n51001009028 +n51001010001 +n51001010002 +n51001010003 +n51001010004 +n51001010005 +n51001010006 +n51001010007 +n51001010008 +n51001010009 +n51001010010 +n51001010011 +n51001010012 +n51001010013 +n51001010014 +n51001010015 +n51001010016 +n51001010017 +n51001010018 +n51001011001 +n51001011002 +n51001011003 +n51001011004 +n51001011005 +n51001011006 +n51001011007 +n51001011008 +n51001011009 +n51001011010 +n51001011011 +n51001011012 +n51001011013 +n51001011014 +n51001011015 +n51001011016 +n51001011017 +n51001012001 +n51001012002 +n51001012003 +n51001012004 +n51001012005 +n51001012006 +n51001012007 +n51001012008 +n51001012009 +n51001012010 +n51001012011 +n51001012012 +n51001012013 +n51001012014 +n51001012015 +n51001012016 +n51001013001 +n51001013002 +n51001013003 +n51001013004 +n51001013005 +n51001013006 +n51001013007 +n51001013008 +n51001013009 +n51001013010 +n51001013011 +n51001013012 +n51001013013 +n51001013014 +n51001013015 +n51001013016 +n51001013017 +n51001013018 +n51001014001 +n51001014002 +n51001014003 +n51001014004 +n51001014005 +n51001014006 +n51001014007 +n51001014008 +n51001014009 +n51001015001 +n51001015002 +n51001015003 +n51001015004 +n51001015005 +n51001015006 +n51001015007 +n51001015008 +n51001015009 +n51001015010 +n51001016001 +n51001016002 +n51001016003 +n51001016004 +n51001016005 +n51001016006 +n51001016007 +n51001016008 +n51001016009 +n51001016010 +n51001016011 +n51001016012 +n51001016013 +n51001016014 +n51001016015 +n51001016016 +n51001016017 +n51001016018 +n51001016019 +n51001016020 +n51001016021 +n51001016022 +n51001016023 +n51001016024 +n51001016025 +n51001016026 +n51001016027 +n51001016028 +n51001016029 +n51001016030 +n51001016031 +n51001016032 +n51001016033 +n51001016034 +n51001017001 +n51001017002 +n51001017003 +n51001017004 +n51001017005 +n51001017006 +n51001017007 +n51001017008 +n51001017009 +n51001017010 +n51001017011 +n51001018001 +n51001018002 +n51001018003 +n51001018004 +n51001018005 +n51001018006 +n51001018007 +n51001018008 +n51001018009 +n51001018010 +n51001018011 +n51001018012 +n51001018013 +n51001018014 +n51001018015 +n51001018016 +n51001018017 +n51001018018 +n51001018021 +n51001018019 +n51001018020 +n51001018022 +n51001019001 +n51001019004 +n51001019002 +n51001019003 +n51001019005 +n51001019006 +n51001019007 +n51001019008 +n51001020001 +n51001020002 +n51001020003 +n51001020004 +n51001020005 +n51001020006 +n51001020007 +n51001020008 +n51001020009 +n51001020010 +n51001020011 +n51001020012 +n51001020013 +n51001020014 +n51001020015 +n51001020016 +n51001020017 +n51001020018 +n51001020019 +n51001020020 +n51001020021 +n51001020022 +n51001020023 +n51001020024 +n51001020025 +n51001020026 +n51001020027 +n51001021001 +n51001021002 +n51001021003 +n51001021004 +n51001021005 +n51001021006 +n51001021007 +n51001021008 +n51001021009 +n51001021010 +n51001021011 +n51001021012 +n51001021013 +n51001021014 +n51001022002 +n51001022001 +n51001022003 +n51001022004 +n51001022005 +n51001022006 +n51001022007 +n51001022008 +n51001022009 +n51001022010 +n51001022011 +n51001022012 +n51001022013 +n51001022014 +n51001022015 +n51001022016 +n51001022017 +n51001022018 +n51001022019 +n51001022020 +n51001022021 +n51001023001 +n51001023002 +n51001023003 +n51001023004 +n51001023005 +n51001023006 +n51001023007 +n51001023008 +n51001023009 +n51001023010 +n51001023011 +n51001023012 +n51001023013 +n51001023014 +n51001023015 +n51001023016 +n51001023017 +n51001023018 +n51001023019 +n51001023020 +n51001023021 +n51001023022 +n51001023023 +n51001023024 +n51001023025 +n51001023026 +n51001023027 +n51001023028 +n51001023032 +n51001023029 +n51001023030 +n51001023031 +n51001024001 +n51001024002 +n51001024003 +n51001024004 +n51001024005 +n51001024006 +n51001024007 +n51001024008 +n51001024009 +n51001024010 +n51001024011 +n51001024012 +n51001024013 +n51001024014 +n51001024015 +n51001024016 +n51001024017 +n51001024018 +n51001024019 +n51001024020 +n51001024021 +n51001024022 +n51001024023 +n51001024024 +n51001024025 +n51001024026 +n51001024027 +n51001025001 +n51001025004 +n51001025002 +n51001025003 +n51001025005 +n51001025006 +n51001025007 +n51001025008 +n51001025009 +n51001025010 +n51001025011 +n51001025012 +n51001025013 +n51001025014 +n51001025015 +n51001025016 +n51001025017 +n51001025018 +n51001025019 +n51001026001 +n51001026002 +n51001026003 +n51001026004 +n51001026005 +n51001026006 +n51001026007 +n51001026008 +n51001026009 +n51001026010 +n51001026011 +n51001026013 +n51001026012 +n51001026014 +n51001026015 +n51001026016 +n51001026017 +n51001027001 +n51001027002 +n51001027003 +n51001027004 +n51001027005 +n51001027006 +n51001027007 +n51001027008 +n51001027009 +n51001027010 +n51001027011 +n51001027012 +n51001027013 +n51001027014 +n51001027015 +n51001027016 +n51001027017 +n51001027018 +n51001027019 +n51001027020 +n51001027021 +n51001027022 +n51001027023 +n51001027024 +n51001027025 +n51001028001 +n51001028002 +n51001028003 +n51001028004 +n51001028005 +n51001028006 +n51001028007 +n51001028008 +n51001028009 +n51001028010 +n51001028011 +n51001028012 +n51001028013 +n51001028014 +n51001028015 +n51001028016 +n51001028017 +n51001028018 +n51001028019 +n51001028020 +n51001029001 +n51001029002 +n51001029003 +n51001029004 +n51001029005 +n51001029006 +n51001029007 +n51001029008 +n51001029009 +n51001029010 +n51001029011 +n51001029012 +n51001029013 +n51001029014 +n51001029015 +n51002001002 +n51002001001 +n51002001003 +n51002001004 +n51002001005 +n51002001006 +n51002001007 +n51002001008 +n51002001009 +n51002001010 +n51002001011 +n51002001012 +n51002001013 +n51002001014 +n51002001015 +n51002001016 +n51002001017 +n51002001018 +n51002001019 +n51002001020 +n51002001021 +n51002001022 +n51002002001 +n51002002002 +n51002002003 +n51002002004 +n51002002005 +n51002002006 +n51002002007 +n51002002008 +n51002002009 +n51002002010 +n51002002011 +n51002002012 +n51002002013 +n51002002014 +n51002002015 +n51002002016 +n51002002017 +n51002002018 +n51002002019 +n51002002020 +n51002002021 +n51002002022 +n51002002023 +n51002003001 +n51002003002 +n51002003003 +n51002003004 +n51002003005 +n51002003006 +n51002003007 +n51002003008 +n51002003009 +n51002003010 +n51002003011 +n51002004001 +n51002004002 +n51002004003 +n51002004004 +n51002004005 +n51002004006 +n51002004007 +n51002004008 +n51002005002 +n51002005001 +n51002005003 +n51002005004 +n51002005005 +n51002005006 +n51002005007 +n51002005008 +n51002005009 +n51002005010 +n51002005011 +n51002005012 +n51002005013 +n51002005014 +n51002005015 +n51002005016 +n51002005017 +n51002005018 +n51002005019 +n51002005020 +n51002005021 +n51002005022 +n51002005023 +n51002005024 +n51002005025 +n51002005026 +n51002006002 +n51002006001 +n51002006003 +n51002006004 +n51002006005 +n51002006006 +n51002006007 +n51002006008 +n51002006009 +n51002006010 +n51002006011 +n51002007001 +n51002007002 +n51002007003 +n51002007004 +n51002007005 +n51002007006 +n51002007007 +n51002007008 +n51002007009 +n51002007010 +n51002007011 +n51002007012 +n51002007013 +n51002007014 +n51002008001 +n51002008002 +n51002008003 +n51002008005 +n51002008006 +n51002008007 +n51002008004 +n51002008008 +n51002008009 +n51002008010 +n51002008011 +n51002008012 +n51002008013 +n51002008014 +n51002008015 +n51002008016 +n51002008017 +n51002008018 +n51002008019 +n51002008020 +n51002008021 +n51002008022 +n51002008023 +n51002008024 +n51002008025 +n51002008026 +n51002008027 +n51002009001 +n51002009002 +n51002009003 +n51002009004 +n51002009005 +n51002009006 +n51002009007 +n51002009008 +n51002009009 +n51002009010 +n51002010001 +n51002010002 +n51002010005 +n51002010003 +n51002010004 +n51002010006 +n51002010007 +n51002010008 +n51002010009 +n51002010010 +n51002010011 +n51002010012 +n51002010013 +n51002011001 +n51002011002 +n51002011003 +n51002011004 +n51002011005 +n51002011006 +n51002011007 +n51002011008 +n51002011009 +n51002011010 +n51002011011 +n51002011012 +n51002011013 +n51002011014 +n51002011015 +n51002011016 +n51002011017 +n51002011018 +n51002012001 +n51002012002 +n51002012003 +n51002012004 +n51002012005 +n51002012006 +n51002012007 +n51002012008 +n51002012009 +n51002012010 +n51002012011 +n51002012012 +n51002012013 +n51002012014 +n51002012015 +n51002012016 +n51002012017 +n51002012018 +n51002012019 +n51002012020 +n51002012021 +n51002013001 +n51002013002 +n51002013003 +n51002013004 +n51002013005 +n51002013006 +n51002013007 +n51002013008 +n51002013009 +n51002013010 +n51002013011 +n51002013012 +n51002013013 +n51002013014 +n51002013015 +n51002013016 +n51002013017 +n51002013018 +n51002013019 +n51002013020 +n51002013021 +n51002014001 +n51002014002 +n51002014003 +n51002014004 +n51002014005 +n51002014006 +n51002014007 +n51002014008 +n51002014009 +n51002014010 +n51002014011 +n51002014012 +n51002014013 +n51002014014 +n51002014015 +n51002014016 +n51002014017 +n51002014018 +n51002014019 +n51002014020 +n51002014021 +n51002015001 +n51002015002 +n51002015003 +n51002015004 +n51002015005 +n51002015006 +n51002015007 +n51002015008 +n51002015009 +n51002015010 +n51002015011 +n51002015012 +n51002015013 +n51002016002 +n51002016001 +n51002016003 +n51002016004 +n51002016005 +n51002016006 +n51002016007 +n51002016008 +n51002016009 +n51002016010 +n51002016011 +n51002016012 +n51002016013 +n51002016014 +n51002016015 +n51002016016 +n51002016017 +n51002016018 +n51002017001 +n51002017002 +n51002017003 +n51002017004 +n51002017005 +n51002017007 +n51002017006 +n51002017008 +n51002017009 +n51002017010 +n51002018001 +n51002018002 +n51002018003 +n51002018004 +n51002018005 +n51002018006 +n51002018007 +n51002018008 +n51002018009 +n51002018010 +n51002018011 +n51002018012 +n51002018013 +n51002018014 +n51002018015 +n51002018016 +n51002018017 +n51002018018 +n51002018019 +n51002018020 +n51002018021 +n51002019001 +n51002019002 +n51002019003 +n51002019004 +n51002019005 +n51002019006 +n51002019007 +n51002019008 +n51002019009 +n51002019010 +n51002019011 +n51002019012 +n51002019013 +n51002019014 +n51002019015 +n51002019016 +n51002019017 +n51002019018 +n51002019019 +n51002019020 +n51002019021 +n51002019022 +n51002019023 +n51002020001 +n51002020002 +n51002020003 +n51002020004 +n51002020005 +n51002020006 +n51002020007 +n51002020008 +n51002020009 +n51002020010 +n51002020011 +n51002020012 +n51002020013 +n51002020014 +n51002020015 +n51002021001 +n51002021002 +n51002021003 +n51002021004 +n51002021005 +n51002021006 +n51002022001 +n51002022002 +n51002022003 +n51002022004 +n51002022005 +n51002022006 +n51002022007 +n51002022008 +n51002022009 +n51002022010 +n51002022011 +n51002022012 +n51002022013 +n51002022014 +n51002023001 +n51002023002 +n51002023004 +n51002023005 +n51002023003 +n51002023006 +n51002023007 +n51002023008 +n51002023009 +n51002023010 +n51002023011 +n51002023012 +n51002023013 +n51002023014 +n51002023015 +n51002023016 +n51002023017 +n51002023018 +n51002023019 +n51002023020 +n51002023021 +n51003001002 +n51003001001 +n51003001003 +n51003001004 +n51003001005 +n51003001006 +n51003001007 +n51003001008 +n51003001009 +n51003001010 +n51003001011 +n51003001012 +n51003001017 +n51003001013 +n51003001014 +n51003001015 +n51003001016 +n51003002001 +n51003002002 +n51003002003 +n51003002004 +n51003002005 +n51003002006 +n51003002007 +n51003002008 +n51003003002 +n51003003001 +n51003003003 +n51003003004 +n51003003005 +n51003003006 +n51003003007 +n51003003008 +n51003003009 +n51003003010 +n51003003011 +n51003003012 +n51003003013 +n51003004001 +n51003004004 +n51003004002 +n51003004003 +n51003004005 +n51003004006 +n51003004007 +n51003004008 +n51003004009 +n51003004010 +n51003004011 +n51003004012 +n51003004013 +n51003004014 +n51003004015 +n51003005002 +n51003005001 +n51003005003 +n51003005004 +n51003005005 +n51003005006 +n51003005007 +n51003005008 +n51003005009 +n51003005010 +n51003005011 +n51003005012 +n51003005013 +n51003005014 +n51003005015 +n51003005016 +n51003005017 +n51003005018 +n51003005019 +n51003006001 +n51003006002 +n51003006003 +n51003006004 +n51003006005 +n51003006006 +n51003006007 +n51003007001 +n51003007002 +n51003007003 +n51003007004 +n51003007005 +n51003007006 +n51003007007 +n51003007008 +n51003007009 +n51003007010 +n51003008002 +n51003008001 +n51003008003 +n51003008004 +n51003008005 +n51003008006 +n51003008007 +n51003008008 +n51003008009 +n51003008010 +n51003008011 +n51003008012 +n51003008013 +n51003008014 +n51003008015 +n51003008016 +n51003009001 +n51003009002 +n51003009003 +n51003009004 +n51003009005 +n51003009006 +n51003009007 +n51003009008 +n51003009009 +n51003009010 +n51003009011 +n51003009012 +n51003010001 +n51003010002 +n51003010003 +n51003010004 +n51003010005 +n51003010006 +n51003010007 +n51003010008 +n51003010009 +n51003010010 +n51003010011 +n51003010012 +n51003010013 +n51003011001 +n51003011002 +n51003011003 +n51003011004 +n51003011005 +n51003011006 +n51003011007 +n51003011008 +n51003011009 +n51003011010 +n51003011011 +n51003011012 +n51003011013 +n51003011014 +n51003011015 +n51003011016 +n51003011017 +n51003011018 +n51003011019 +n51003012002 +n51003012001 +n51003012003 +n51003012004 +n51003012005 +n51003012006 +n51003012007 +n51003012008 +n51003012009 +n51003012010 +n51003012011 +n51003012012 +n51003012013 +n51003012014 +n51003012015 +n51003013001 +n51003013002 +n51003013003 +n51003013004 +n51003013005 +n51003013006 +n51003013007 +n51003013008 +n51003013009 +n51003013010 +n51003013011 +n51003013012 +n51003013013 +n51003013014 +n51003013015 +n51003013016 +n51003013017 +n51003013018 +n51003013019 +n51003013020 +n51003014003 +n51003014001 +n51003014002 +n51003014004 +n51003014005 +n51003014006 +n51003014007 +n51003014008 +n51003014009 +n51003014010 +n51003014011 +n51003015001 +n51003015002 +n51003015003 +n51003015004 +n51003015005 +n51003015006 +n51003015007 +n51003015008 +n51003015009 +n51003015010 +n51003015011 +n51003015012 +n51003015013 +n51003015014 +n51003015015 +n51003015016 +n51003015017 +n51003015018 +n51003015019 +n51003015020 +n51003016001 +n51003016002 +n51003016003 +n51003016004 +n51003016005 +n51003016006 +n51003016007 +n51003016008 +n51003016009 +n51003016010 +n51003016011 +n51003016012 +n51003016013 +n51003016014 +n51003016015 +n51003016016 +n51003016017 +n51003016018 +n51003016019 +n51003016020 +n51003016021 +n51003016022 +n51003016023 +n51003016024 +n51003016025 +n51003016026 +n51003016027 +n51003016028 +n51003016029 +n51003017001 +n51003017002 +n51003017004 +n51003017005 +n51003017003 +n51003017006 +n51003017007 +n51003017008 +n51003017009 +n51003017010 +n51003017011 +n51003017012 +n51003017013 +n51003017014 +n51003017015 +n51003017016 +n51003017017 +n51003017018 +n51003017019 +n51003017020 +n51003017021 +n51003017022 +n51003018001 +n51003018002 +n51003018003 +n51003018004 +n51003018005 +n51003018006 +n51003018007 +n51003018008 +n51003018009 +n51003019001 +n51003019002 +n51003019003 +n51003019004 +n51003019005 +n51003019006 +n51003019007 +n51003019008 +n51003019009 +n51003019010 +n51003020001 +n51003020002 +n51003020003 +n51003020004 +n51003020005 +n51003020006 +n51003020007 +n51003020009 +n51003020008 +n51003020010 +n51003020011 +n51003020012 +n51003020013 +n51003021001 +n51003021002 +n51003021003 +n51003021004 +n51003021005 +n51003021006 +n51003021007 +n51003021008 +n51003021009 +n51003021010 +n51003022001 +n51003022002 +n51003022003 +n51003022004 +n51003022005 +n51003022006 +n51003022007 +n51003022008 +n51003022009 +n51003022010 +n51003022011 +n51003022012 +n51003022013 +n51003022014 +n51003022015 +n51003022016 +n51003022017 +n51003022018 +n51003022019 +n51003022020 +n51003022021 +n51003023002 +n51003023001 +n51003023003 +n51003023004 +n51003023005 +n51003023006 +n51003023007 +n51003023008 +n51003023009 +n51003023010 +n51003023011 +n51003023012 +n51003024001 +n51003024002 +n51003024003 +n51003024004 +n51003024005 +n51003024006 +n51003024007 +n51003024008 +n51003024009 +n51003024010 +n51003024011 +n51003024012 +n51003024013 +n51003025002 +n51003025001 +n51003025003 +n51003025004 +n51003025005 +n51003025006 +n51003025007 +n51003025008 +n51003025009 +n51003025010 +n51004001001 +n51004001002 +n51004001003 +n51004001004 +n51004001005 +n51004001006 +n51004001007 +n51004001008 +n51004001009 +n51004001010 +n51004001011 +n51004001012 +n51004001013 +n51004001014 +n51004001015 +n51004001016 +n51004001017 +n51004001018 +n51004002001 +n51004002002 +n51004002003 +n51004002004 +n51004002005 +n51004002006 +n51004002007 +n51004002008 +n51004003001 +n51004003002 +n51004003003 +n51004003004 +n51004003005 +n51004003006 +n51004003007 +n51004003008 +n51004003009 +n51004003010 +n51004003011 +n51004003012 +n51004003013 +n51004003014 +n51004003015 +n51004003016 +n51004003017 +n51004003018 +n51004003019 +n51004003020 +n51004003021 +n51004003022 +n51004004001 +n51004004002 +n51004004003 +n51004004004 +n51004004005 +n51004004006 +n51004004007 +n51004005001 +n51004005002 +n51004005003 +n51004005004 +n51004005005 +n51004005006 +n51004005007 +n51004005008 +n51004005009 +n51004006001 +n51004006002 +n51004006003 +n51004006004 +n51004006005 +n51004006006 +n51004006007 +n51004006008 +n51004006009 +n51004006010 +n51004006011 +n51004006012 +n51004006013 +n51004006014 +n51004006015 +n51004007001 +n51004007002 +n51004007003 +n51004007004 +n51004007005 +n51004007006 +n51004007007 +n51004007008 +n51004007009 +n51004007010 +n51004007011 +n51004007012 +n51004007013 +n51004007014 +n51004007015 +n51004007016 +n51004007017 +n51004008001 +n51004008002 +n51004008003 +n51004008004 +n51004008005 +n51004008006 +n51004008007 +n51004008008 +n51004008009 +n51004008010 +n51004008011 +n51004008012 +n51004008013 +n51004008014 +n51004008015 +n51004008016 +n51004008017 +n51004009001 +n51004009002 +n51004009003 +n51004009004 +n51004009005 +n51004009006 +n51004009007 +n51004009008 +n51004009009 +n51004009010 +n51004009011 +n51004009013 +n51004009014 +n51004009012 +n51004009015 +n51004009016 +n51004010001 +n51004010002 +n51004010003 +n51004010004 +n51004010005 +n51004010006 +n51004010007 +n51004010008 +n51004010009 +n51004010010 +n51004010011 +n51004010012 +n51004010013 +n51004010014 +n51004010015 +n51004010016 +n51004010017 +n51004010018 +n51004010019 +n51004010020 +n51004010021 +n51004011001 +n51004011002 +n51004011003 +n51004011004 +n51004011005 +n51004011006 +n51004011007 +n51004011008 +n51004011009 +n51004011010 +n51004011011 +n51004011012 +n51004011013 +n51004011014 +n51004011015 +n51004011016 +n51004011017 +n51004011018 +n51004011019 +n51004011020 +n51004011021 +n51004012001 +n51004012002 +n51004012003 +n51004012004 +n51004012005 +n51004012006 +n51004012007 +n51004012008 +n51004012009 +n51004012010 +n51004012011 +n51004012012 +n51004012013 +n51004012014 +n51004012015 +n51004012016 +n51004012017 +n51004012018 +n51004012019 +n51004012020 +n51004012021 +n51004012022 +n51004012023 +n51004012024 +n51004012025 +n51004012026 +n51004013002 +n51004013001 +n51004013003 +n51004013004 +n51004013005 +n51004013006 +n51004013007 +n51004013008 +n51004013009 +n51004013010 +n51004013011 +n51004013012 +n51004013013 +n51004013014 +n51004013015 +n51004013016 +n51004013017 +n51004014001 +n51004014002 +n51004014003 +n51004014004 +n51004014005 +n51004014006 +n51004014007 +n51004014008 +n51004014009 +n51004015001 +n51004015002 +n51004015003 +n51004015004 +n51004015005 +n51004015006 +n51004015007 +n51004015008 +n51004015009 +n51004015010 +n51004015011 +n51004015012 +n51004015013 +n51004016001 +n51004016002 +n51004016003 +n51004016004 +n51004016005 +n51004016006 +n51004016007 +n51004016008 +n51004016009 +n51004016010 +n51004016011 +n51004016012 +n51004016013 +n51004016014 +n51004016015 +n51004016016 +n51004016020 +n51004016017 +n51004016018 +n51004016019 +n51004016021 +n51004016022 +n51004016023 +n51004017001 +n51004017002 +n51004017003 +n51004017004 +n51004017005 +n51004017006 +n51004017007 +n51004017008 +n51004017009 +n51004017010 +n51004017011 +n51004017012 +n51004017013 +n51004018001 +n51004018002 +n51004018003 +n51004018004 +n51004018005 +n51004018006 +n51004018007 +n51004018008 +n51004018009 +n51004018010 +n51004018011 +n51004018012 +n51004018013 +n51004018014 +n52001001001 +n52001001002 +n52001001003 +n52001001004 +n52001001005 +n52001001006 +n52001001007 +n52001001008 +n52001001009 +n52001001010 +n52001001011 +n52001001012 +n52001001013 +n52001001014 +n52001001015 +n52001001017 +n52001001016 +n52001001018 +n52001001019 +n52001002001 +n52001002002 +n52001002003 +n52001002004 +n52001002005 +n52001002006 +n52001002007 +n52001002008 +n52001002009 +n52001002010 +n52001002011 +n52001002012 +n52001002013 +n52001002014 +n52001003001 +n52001003002 +n52001003003 +n52001003004 +n52001003005 +n52001003006 +n52001003007 +n52001003008 +n52001003009 +n52001003010 +n52001003011 +n52001003012 +n52001003013 +n52001003014 +n52001003015 +n52001003016 +n52001003017 +n52001003018 +n52001003019 +n52001003020 +n52001003021 +n52001003022 +n52001003023 +n52001003024 +n52001003025 +n52001003026 +n52001003027 +n52001004001 +n52001004007 +n52001004008 +n52001004009 +n52001004002 +n52001004003 +n52001004004 +n52001004005 +n52001004006 +n52001005001 +n52001005002 +n52001005003 +n52001005004 +n52001005006 +n52001005007 +n52001005008 +n52001005005 +n52001005009 +n52001005010 +n52001005011 +n52001005012 +n52001005013 +n52001005014 +n52001005015 +n52001005016 +n52001005017 +n52001005018 +n52001005019 +n52001005020 +n52001005021 +n52001005022 +n52001005023 +n52001005024 +n52001005025 +n52001005026 +n52001005027 +n52001005028 +n52001005029 +n52001005030 +n52001006001 +n52001006002 +n52001006005 +n52001006003 +n52001006004 +n52001006006 +n52001006007 +n52001006008 +n52001006009 +n52001006010 +n52001006011 +n52001006012 +n52001006013 +n52001006014 +n52001006015 +n52001006016 +n52001006017 +n52001006018 +n52001007001 +n52001007002 +n52001007003 +n52001007004 +n52001007005 +n52001007006 +n52001007007 +n52001007008 +n52001007009 +n52001007010 +n52001007011 +n52001007012 +n52001007013 +n52001007014 +n52001008003 +n52001008001 +n52001008002 +n52001008004 +n52001008005 +n52001008006 +n52001008007 +n52001008008 +n52001008009 +n52001008010 +n52001008011 +n52001008012 +n52001008013 +n52001008014 +n52001008015 +n52001008016 +n52001008017 +n52001008018 +n52001008019 +n52001008020 +n52001008021 +n52001008022 +n52001008023 +n52001008024 +n52001008025 +n52001008026 +n52001008027 +n52001008028 +n52001008029 +n52001008030 +n52001008031 +n52001008032 +n52001008033 +n52001008034 +n52001009002 +n52001009001 +n52001009003 +n52001009004 +n52001009005 +n52001009006 +n52001009007 +n52001009008 +n52001009009 +n52001009010 +n52001009011 +n52001009012 +n52001009013 +n52001009014 +n52001009015 +n52001009016 +n52001009017 +n52001009018 +n52001009019 +n52001009020 +n52001009021 +n52001009022 +n52001009023 +n52001009024 +n52001010001 +n52001010002 +n52001010006 +n52001010007 +n52001010008 +n52001010003 +n52001010004 +n52001010005 +n52001010009 +n52001010010 +n52001010011 +n52001010012 +n52001010013 +n52001010014 +n52001010015 +n52001010016 +n52001010017 +n52001010018 +n52001010019 +n52001010020 +n52001010021 +n52001010022 +n52002001002 +n52002001004 +n52002001001 +n52002001003 +n52002001005 +n52002001006 +n52002001007 +n52002001008 +n52002001009 +n52002001010 +n52002001011 +n52002001012 +n52002001013 +n52002001014 +n52002002001 +n52002002002 +n52002002003 +n52002002004 +n52002002007 +n52002002008 +n52002002005 +n52002002006 +n52002002009 +n52002002010 +n52002002011 +n52002002012 +n52002002013 +n52002002014 +n52002002015 +n52002002016 +n52002002017 +n52002002018 +n52002002019 +n52002002020 +n52002002021 +n52002002022 +n52002002023 +n52002003002 +n52002003001 +n52002003003 +n52002003004 +n52002003005 +n52002003006 +n52002003007 +n52002003008 +n52002003009 +n52002003010 +n52002003011 +n52002003012 +n52002003013 +n52002004001 +n52002004002 +n52002004003 +n52002004004 +n52002004005 +n52002004006 +n52002004007 +n52002004008 +n52002004009 +n52002004010 +n52002004011 +n52002004013 +n52002004015 +n52002004012 +n52002004014 +n52002004016 +n52002004017 +n52002004018 +n52002004019 +n52002004020 +n52002004021 +n52002004022 +n52002005002 +n52002005001 +n52002005003 +n52002005004 +n52002005005 +n52002005006 +n52002005007 +n52002005008 +n52002005009 +n52002005010 +n52002005011 +n52002005012 +n52002005013 +n52002005014 +n52002005015 +n52002006001 +n52002006002 +n52002006003 +n52002006004 +n52002006005 +n52002006006 +n52002006007 +n52002006008 +n52002006009 +n52002006010 +n52002006011 +n52002007001 +n52002007002 +n52002007003 +n52002007004 +n52002007005 +n52002007006 +n52002007007 +n52002007008 +n52002007009 +n52002007010 +n52002007011 +n52002007012 +n52002007013 +n52002007014 +n52002007015 +n52002007016 +n52002007017 +n52002007018 +n52002007019 +n52002007020 +n52002008001 +n52002008002 +n52002008003 +n52002008004 +n52002008005 +n52002008006 +n52002008007 +n52002008008 +n52002008009 +n52002008010 +n52002008011 +n52002008012 +n52002008013 +n52002008014 +n52002008015 +n52002008016 +n52002008017 +n52002008018 +n52002008019 +n52002008020 +n52002008021 +n52002009002 +n52002009003 +n52002009001 +n52002009004 +n52002009005 +n52002009006 +n52002009007 +n52002009008 +n52002009009 +n52002009010 +n52002009011 +n52002009012 +n52002009013 +n52002009014 +n52002009015 +n52002009016 +n52002009017 +n52002009018 +n52002009019 +n52002009020 +n52002009021 +n52002009022 +n52002009023 +n52002009024 +n52002009025 +n52002009026 +n52002010002 +n52002010001 +n52002010003 +n52002010004 +n52002010005 +n52002010006 +n52002010007 +n52002010008 +n52002010009 +n52002010010 +n52002010011 +n52002010012 +n52002010013 +n52002010014 +n52002010015 +n52002011001 +n52002011002 +n52002011003 +n52002011004 +n52002011005 +n52002011006 +n52002011007 +n52002011008 +n52002011009 +n52002011010 +n52002012001 +n52002012003 +n52002012004 +n52002012005 +n52002012006 +n52002012002 +n52002012007 +n52002012008 +n52002012009 +n52002012010 +n52002012011 +n52002012012 +n52002012013 +n52002012014 +n52002012015 +n52002012016 +n52002012017 +n52002012018 +n52002012019 +n52002012020 +n52002012021 +n52002012022 +n52002013001 +n52002013002 +n52002013003 +n52002013004 +n52002013005 +n52002013006 +n52002013007 +n52002013008 +n52002013009 +n52002013010 +n52002013011 +n52002013012 +n52002013013 +n52002013014 +n52002013015 +n52002013016 +n52002013017 +n52002013018 +n52002013019 +n52002013020 +n52002013021 +n52002013022 +n52002013023 +n52002013024 +n52002013025 +n52002013026 +n52002013027 +n52002013028 +n52002013029 +n52002013030 +n52002013031 +n52002013032 +n52002013033 +n52002013034 +n52002014002 +n52002014005 +n52002014001 +n52002014004 +n52002014003 +n52002014006 +n52002014007 +n52002014008 +n52002014009 +n52002014010 +n52002014011 +n52002014012 +n52002014013 +n52002014014 +n52002014015 +n52002014016 +n52002014017 +n52002014018 +n52002014019 +n52002014020 +n52002014021 +n52002014022 +n52002014023 +n52002014024 +n52002014025 +n52002014026 +n52002014027 +n52002014028 +n52002014029 +n52002014030 +n52002014031 +n52002014032 +n52002014033 +n52002015001 +n52002015005 +n52002015002 +n52002015003 +n52002015004 +n52002015006 +n52002015007 +n52002015008 +n52002015009 +n52002015010 +n52002015011 +n52002015012 +n52002015013 +n52002015014 +n52002015015 +n52002015016 +n52002015017 +n52002015018 +n52002015019 +n52002015020 +n52002016001 +n52002016002 +n52002016003 +n52002016004 +n52002016005 +n52002016006 +n52002016007 +n52002016008 +n52002016009 +n52002016010 +n52002016011 +n52002016012 +n52002016013 +n52002016014 +n52002016016 +n52002016015 +n52002016017 +n52002016018 +n52002016019 +n52002016020 +n52002016021 +n52002016022 +n52002017002 +n52002017003 +n52002017001 +n52002017004 +n52002017005 +n52002017006 +n52002017007 +n52002017008 +n52002017009 +n52002017010 +n52002017011 +n52002017012 +n52002017013 +n52002017014 +n52002017015 +n52002017016 +n52002017017 +n52002017018 +n52002017019 +n52002017020 +n52002017021 +n52002018001 +n52002018002 +n52002018003 +n52002018004 +n52002018005 +n52002018007 +n52002018006 +n52002018008 +n52002018009 +n52002018010 +n52002018011 +n52002018012 +n52002018013 +n52002018014 +n52002018015 +n52002018016 +n52002018017 +n52002019002 +n52002019001 +n52002019003 +n52002019004 +n52002019005 +n52002019006 +n52002019007 +n52002019008 +n52002019009 +n52002019010 +n52002019011 +n52002019012 +n52002019013 +n52002019014 +n52002019015 +n52002019016 +n52002019017 +n52002019018 +n52002019019 +n52002019020 +n52002019021 +n52002019022 +n52002020002 +n52002020001 +n52002020003 +n52002020004 +n52002020005 +n52002020006 +n52002020007 +n52002020008 +n52002020009 +n52003001001 +n52003001002 +n52003001003 +n52003001004 +n52003001005 +n52003001006 +n52003001007 +n52003001008 +n52003002001 +n52003002002 +n52003002003 +n52003002004 +n52003002005 +n52003002006 +n52003002007 +n52003002008 +n52003002009 +n52003002010 +n52003002011 +n52003002012 +n52003002013 +n52003002014 +n52003002015 +n52003002016 +n52003002017 +n52003002018 +n52003002020 +n52003002021 +n52003002019 +n52003002022 +n52003002023 +n52003002024 +n52003002025 +n52003003001 +n52003003002 +n52003003003 +n52003003004 +n52003003005 +n52003003006 +n52003003007 +n52003003009 +n52003003008 +n52003003010 +n52003003011 +n52003003012 +n52003003013 +n52003003014 +n52003004002 +n52003004001 +n52003004003 +n52003004004 +n52003004005 +n52003004006 +n52003004007 +n52003004008 +n52003004009 +n52003004010 +n52003004011 +n52003004012 +n52003004013 +n52003004014 +n52003004015 +n52003004016 +n52003005001 +n52003005002 +n52003005003 +n52003005004 +n52003005005 +n52003005006 +n52003005007 +n52003005008 +n52003005009 +n52003005010 +n52003005011 +n52003005012 +n52003005013 +n52003005014 +n52003005015 +n52003005016 +n52003005017 +n52003005018 +n52003005019 +n52003005020 +n52003005021 +n52003005022 +n52003005023 +n52003005024 +n52003005025 +n52003006002 +n52003006001 +n52003006003 +n52003006004 +n52003006005 +n52003006006 +n52003006007 +n52003006008 +n52003006009 +n52003006010 +n52003006011 +n52003006012 +n52003006013 +n52003006014 +n52003006015 +n52003006016 +n52003006017 +n52003006018 +n52003006019 +n52003006020 +n52003006021 +n52003006022 +n52003006023 +n52003006024 +n52003006025 +n52003006026 +n52003006027 +n52003006028 +n52003006029 +n52003006030 +n52003006031 +n52003007004 +n52003007001 +n52003007002 +n52003007003 +n52003007005 +n52003007006 +n52003007007 +n52003007008 +n52003007009 +n52003007010 +n52003007011 +n52003007012 +n52003007013 +n52003007014 +n52003007015 +n52003007016 +n52003007017 +n52003008001 +n52003008002 +n52003008003 +n52003008004 +n52003008005 +n52003008006 +n52003008007 +n52003008008 +n52003009002 +n52003009004 +n52003009001 +n52003009003 +n52003009005 +n52003009006 +n52003009007 +n52003009008 +n52003009009 +n52003009010 +n52003009011 +n52003009012 +n52003009013 +n52003009014 +n52003009015 +n52003009016 +n52003009017 +n52003009018 +n52003009019 +n52003009020 +n52003009021 +n52003010001 +n52003010002 +n52003010003 +n52003010004 +n52003010005 +n52003010006 +n52003010007 +n52003010008 +n52003010009 +n52003010010 +n52003010011 +n52003010012 +n52003010013 +n52003010014 +n52003010015 +n52003010016 +n52003010017 +n52003010018 +n52003011002 +n52003011001 +n52003011003 +n52003011004 +n52003011005 +n52003011006 +n52003011007 +n52003011008 +n52003011009 +n52003011010 +n52003011011 +n52003011012 +n52003011013 +n52003011014 +n52003011015 +n52003011016 +n52003011017 +n52003011018 +n52003012002 +n52003012001 +n52003012003 +n52003012004 +n52003012005 +n52003012006 +n52003012007 +n52003012008 +n52003012009 +n52003012010 +n52003012011 +n52003012012 +n52003012013 +n52003012014 +n52003012015 +n52003012016 +n52003012017 +n52003012018 +n52003012019 +n52003013001 +n52003013002 +n52003013003 +n52003013004 +n52003013005 +n52003013006 +n52003013007 +n52003013008 +n52003013009 +n52003013010 +n52003013011 +n52003013012 +n52003013013 +n52003013014 +n52003013015 +n52003013016 +n52003013017 +n52003013018 +n52003013019 +n52003013020 +n52003013021 +n52003013022 +n52003013023 +n52003013024 +n52003013025 +n52003013026 +n52003013027 +n52004001002 +n52004001003 +n52004001001 +n52004001004 +n52004001006 +n52004001007 +n52004001005 +n52004001008 +n52004001009 +n52004001010 +n52004001011 +n52004001012 +n52004001013 +n52004001014 +n52004001015 +n52004001016 +n52004001017 +n52004001018 +n52004001019 +n52004001020 +n52004001021 +n52004001022 +n52004001023 +n52004001024 +n52004001025 +n52004001026 +n52004001027 +n52004001028 +n52004001029 +n52004002002 +n52004002001 +n52004002003 +n52004002004 +n52004002005 +n52004002006 +n52004002007 +n52004002008 +n52004002009 +n52004002010 +n52004003002 +n52004003001 +n52004003003 +n52004003004 +n52004003005 +n52004003006 +n52004003007 +n52004003008 +n52004003009 +n52004003010 +n52004003011 +n52004003012 +n52004003013 +n52004003014 +n52004004001 +n52004004002 +n52004004003 +n52004004004 +n52004004005 +n52004004006 +n52004004007 +n52004004008 +n52004004009 +n52004004010 +n52004004011 +n52004005001 +n52004005002 +n52004005003 +n52004005004 +n52004005005 +n52004005006 +n52004005007 +n52004005008 +n52004005009 +n52004005010 +n52004005011 +n52004005012 +n52004005013 +n52004006001 +n52004006002 +n52004006003 +n52004006004 +n52004006005 +n52004006006 +n52004006007 +n52004006008 +n52004006009 +n52004006010 +n52004006011 +n52004006012 +n52004006013 +n52004006014 +n52004006015 +n52004006016 +n52004006017 +n52004006018 +n52004006019 +n52004006020 +n52004006021 +n52004006022 +n52004006023 +n52004007002 +n52004007001 +n52004007003 +n52004007004 +n52004007005 +n52004007006 +n52004007007 +n52004007008 +n52004007009 +n52004007010 +n52004007011 +n52004008001 +n52004008002 +n52004008003 +n52004008006 +n52004008004 +n52004008005 +n52004008007 +n52004008008 +n52004008009 +n52004008010 +n52004008011 +n52004008012 +n52004008013 +n52004008014 +n52004008015 +n52004008016 +n52004008017 +n52004008018 +n52004008019 +n52004009002 +n52004009001 +n52004009003 +n52004009004 +n52004009005 +n52004009006 +n52004009007 +n52004009008 +n52004009009 +n52004009011 +n52004009010 +n52004009012 +n52004009013 +n52004009014 +n52004009015 +n52004009016 +n52004009017 +n52004009018 +n52004010002 +n52004010001 +n52004010003 +n52004010004 +n52004010005 +n52004010006 +n52004010007 +n52004010008 +n52004010009 +n52004010010 +n52004010011 +n52004010012 +n52004010014 +n52004010016 +n52004010013 +n52004010015 +n52004010017 +n52004010018 +n52004011001 +n52004011002 +n52004011003 +n52004011004 +n52004011005 +n52004011006 +n52004011007 +n52004011008 +n52004011009 +n52004011010 +n52004011011 +n52004011012 +n52004011013 +n52004011014 +n52004011015 +n52004012001 +n52004012002 +n52004012003 +n52004012004 +n52004012005 +n52004012006 +n52004012007 +n52004012008 +n52004012009 +n52004012010 +n52004013003 +n52004013006 +n52004013001 +n52004013002 +n52004013004 +n52004013005 +n52004013007 +n52004013008 +n52004013009 +n52004013010 +n52004013011 +n52004013012 +n52004013013 +n52004013014 +n52004013015 +n52004013016 +n52004013017 +n52004013018 +n52004013019 +n52004013020 +n52004014002 +n52004014001 +n52004014003 +n52004014004 +n52004014005 +n52004014006 +n52004014007 +n52004014008 +n52004014009 +n52004014010 +n52004014011 +n52004014012 +n52004014013 +n52004014014 +n52004014015 +n52004014016 +n52004014017 +n52004014018 +n52004014019 +n52004014020 +n52004015002 +n52004015001 +n52004015003 +n52004015004 +n52004015005 +n52004015006 +n52004015007 +n52004015008 +n52004015009 +n52004015010 +n52004015011 +n52004015012 +n52004015013 +n52004015014 +n52004015015 +n52004015016 +n52004015017 +n52004015018 +n52004015019 +n52004015020 +n52004015021 +n52004015022 +n52004015023 +n52004016001 +n52004016002 +n52004016003 +n52004016004 +n52004016005 +n52004016006 +n52004016007 +n52004016008 +n52004016009 +n52004016010 +n52004016011 +n52004016012 +n52004016013 +n52004016014 +n52004016015 +n52004016016 +n52004016017 +n52004016018 +n52004016019 +n52004016020 +n52004016021 +n52004016022 +n52004016023 +n52004017001 +n52004017002 +n52004017003 +n52004017004 +n52004017005 +n52004017006 +n52004017007 +n52004017008 +n52004017009 +n52004017010 +n52004017011 +n52004017012 +n52004017013 +n52004017014 +n52004017015 +n52004017016 +n52004017017 +n52004017018 +n52004017019 +n52004017020 +n52004017021 +n52004017022 +n52004017023 +n52004017024 +n52004018001 +n52004018002 +n52004018003 +n52004018004 +n52004018005 +n52004018006 +n52004018007 +n52005001002 +n52005001008 +n52005001001 +n52005001003 +n52005001004 +n52005001005 +n52005001006 +n52005001007 +n52005001009 +n52005001010 +n52005001011 +n52005001012 +n52005001013 +n52005002002 +n52005002001 +n52005002003 +n52005002004 +n52005002005 +n52005002008 +n52005002009 +n52005002010 +n52005002011 +n52005002006 +n52005002007 +n52005002012 +n52005002013 +n52005003001 +n52005003002 +n52005003003 +n52005003004 +n52005003005 +n52005003006 +n52005003007 +n52005003010 +n52005003008 +n52005003009 +n52005003011 +n52005003012 +n52005003013 +n52005003014 +n52005003015 +n52005003016 +n52005003017 +n52005003018 +n52005003019 +n52005003020 +n52005003021 +n52005004002 +n52005004003 +n52005004001 +n52005004004 +n52005004005 +n52005004006 +n52005004007 +n52005004008 +n52005004009 +n52005004010 +n52005004011 +n52005004014 +n52005004012 +n52005004013 +n52005005002 +n52005005001 +n52005005003 +n52005005006 +n52005005004 +n52005005005 +n52005005007 +n52005005008 +n52005005009 +n52005005010 +n52005005011 +n52005005012 +n52005005013 +n52005005014 +n52005006001 +n52005006002 +n52005006003 +n52005006004 +n52005006005 +n52005006006 +n52005006007 +n52005006008 +n52005006009 +n52005006010 +n52005006011 +n52005007002 +n52005007001 +n52005007003 +n52005007004 +n52005007005 +n52005007006 +n52005007007 +n52005007008 +n52005007009 +n52005007010 +n52005008002 +n52005008001 +n52005008003 +n52005008004 +n52005008005 +n52005008006 +n52005008007 +n52005008008 +n52005008009 +n52005008010 +n52005008011 +n52005008012 +n52005008013 +n52005008014 +n52005009001 +n52005009002 +n52005009003 +n52005009004 +n52005009005 +n52005009006 +n52005009007 +n52005009008 +n52005009009 +n52005009010 +n52005009011 +n52005009012 +n52005009013 +n52005009014 +n52005009015 +n52005009016 +n52005009017 +n52005009018 +n52005010001 +n52005010002 +n52005010003 +n52005010004 +n52005010005 +n52005010006 +n52005010007 +n52005010008 +n52005010009 +n52005010010 +n52005010011 +n52005010012 +n52005010013 +n52005011001 +n52005011002 +n52005011003 +n52005011004 +n52005011005 +n52005011006 +n52005011007 +n52005011008 +n52005011009 +n52005011010 +n52005011011 +n52005012002 +n52005012004 +n52005012001 +n52005012003 +n52005012005 +n52005012006 +n52005012007 +n52005012008 +n52005012009 +n52005012010 +n52005012011 +n52005012012 +n52005012013 +n52005012014 +n52005012015 +n52005012016 +n52005012017 +n52005013001 +n52005013002 +n52005013003 +n52005013004 +n52005013005 +n52005013006 +n52005013007 +n52005013008 +n52005013009 +n52005013010 +n52005013011 +n52005013012 +n52005013013 +n52005014002 +n52005014004 +n52005014001 +n52005014003 +n52005014005 +n52005014006 +n52005014007 +n52005014008 +n52005014009 +n52005014010 +n52005014011 +n52005014012 +n52005014013 +n52005014014 +n52005014015 +n52005014016 +n52005015001 +n52005015002 +n52005015003 +n52005015004 +n52005015005 +n52005015006 +n52005015007 +n52005015008 +n52005015009 +n52005015010 +n52005015011 +n52005015012 +n52005015013 +n52005015014 +n52005015015 +n52005015016 +n52005015017 +n52005015018 +n52005016001 +n52005016002 +n52005017001 +n52005017002 +n52005018001 +n52005018002 +n52005018003 +n52005018005 +n52005018004 +n52005018006 +n52005018007 +n52005018008 +n52005018009 +n52005018010 +n52005018011 +n52005018012 +n52005019001 +n52005019002 +n52005019003 +n52005019004 +n52005020001 +n52005020002 +n52005020003 +n52005021002 +n52005021001 +n52005021003 +n52005021004 +n52005021005 +n52005021006 +n52005022001 +n52005022002 +n52005022003 +n52005022004 +n52005022005 +n52005023002 +n52005023001 +n52005023003 +n52005023004 +n52005023005 +n52005023006 +n52005023007 +n52005023008 +n52005023009 +n52005023010 +n52005023011 +n52005023012 +n52005023013 +n52005023014 +n52005023015 +n52005023016 +n52005023017 +n52005023018 +n52005023019 +n52005023020 +n52005023021 +n52005023022 +n52005023023 +n52005023024 +n52005023025 +n52005023026 +n52005023027 +n52005023028 +n52005023029 +n52005023030 +n52005024001 +n52005024002 +n52005024003 +n52005024004 +n52005024005 +n52005024006 +n52005024007 +n52005025001 +n52005025002 +n52005025003 +n52005025004 +n52005026001 +n52005026002 +n52005026003 +n52005026004 +n52005026005 +n52005026006 +n52005026007 +n52005027001 +n52005027002 +n52005027003 +n52005027004 +n52005027005 +n52005027006 +n52005027007 +n52005027008 +n52005027009 +n52005027010 +n52005028001 +n52005028002 +n52005028003 +n52005028004 +n52005028005 +n52005028006 +n52005028007 +n52005028008 +n52005028009 +n53001001001 +n53001001002 +n53001001003 +n53001001004 +n53001001005 +n53001001006 +n53001001007 +n53001001008 +n53001001009 +n53001001010 +n53001001011 +n53001001012 +n53001001013 +n53001001014 +n53001001015 +n53001001016 +n53001002002 +n53001002001 +n53001002003 +n53001002004 +n53001002005 +n53001002006 +n53001002007 +n53001002008 +n53001002009 +n53001002010 +n53001002011 +n53001003008 +n53001003002 +n53001003001 +n53001003003 +n53001003004 +n53001003005 +n53001003006 +n53001003007 +n53001003009 +n53001003010 +n53001003011 +n53001003012 +n53001003013 +n53001003014 +n53001003015 +n53001003016 +n53001003017 +n53001003018 +n53001003019 +n53001003020 +n53001003021 +n53001003022 +n53001003023 +n53001003024 +n53001003025 +n53001003026 +n53001004001 +n53001004002 +n53001004003 +n53001004004 +n53001004005 +n53001004006 +n53001004007 +n53001004008 +n53001004009 +n53001004010 +n53001004011 +n53001004012 +n53001004013 +n53001004014 +n53001004015 +n53001004016 +n53001004017 +n53001004018 +n53001004019 +n53001004020 +n53001004021 +n53001004022 +n53001004023 +n53001004024 +n53001004025 +n53001004026 +n53001004027 +n53001005001 +n53001005002 +n53001005003 +n53001005004 +n53001005005 +n53001005006 +n53001005007 +n53001005008 +n53001005009 +n53001005010 +n53001005011 +n53001005012 +n53001005013 +n53001005014 +n53001005015 +n53001005016 +n53001005017 +n53001005018 +n53001006001 +n53001006002 +n53001006003 +n53001006004 +n53001006005 +n53001006006 +n53001006007 +n53001006008 +n53001006009 +n53001007001 +n53001007002 +n53001007003 +n53001007004 +n53001007005 +n53001007006 +n53001007007 +n53001007008 +n53001007009 +n53001007010 +n53001007011 +n53001007012 +n53001007013 +n53001007014 +n53001007015 +n53001007016 +n53001007017 +n53001007018 +n53001007019 +n53001008001 +n53001008002 +n53001008003 +n53001008004 +n53001008005 +n53001008006 +n53001008007 +n53001008008 +n53001008009 +n53001008010 +n53001008011 +n53001008012 +n53001008013 +n53001008014 +n53001008015 +n53001008016 +n53001008017 +n53001008018 +n53001008019 +n53001009001 +n53001009003 +n53001009002 +n53001009004 +n53001009005 +n53001009006 +n53001009007 +n53001009008 +n53001009009 +n53001009010 +n53001009011 +n53001009012 +n53001009013 +n53001009014 +n53001009015 +n53001009016 +n53001010001 +n53001010002 +n53001010003 +n53001010004 +n53001010005 +n53001010006 +n53001010007 +n53001010008 +n53001010009 +n53001010010 +n53001010011 +n53001010012 +n53001010013 +n53001010021 +n53001010022 +n53001010023 +n53001010024 +n53001010014 +n53001010015 +n53001010016 +n53001010017 +n53001010018 +n53001010019 +n53001010020 +n53001011001 +n53001011002 +n53001011003 +n53001011004 +n53001011005 +n53001011006 +n53001011007 +n53001011008 +n53001011009 +n53001011010 +n53001011011 +n53001011012 +n53001011013 +n53001011014 +n53001011015 +n53001011016 +n53001011017 +n53001011018 +n53001011019 +n53001011020 +n53001011021 +n53001011022 +n53001011023 +n53001011024 +n53001011025 +n53001012001 +n53001012002 +n53001012003 +n53001012004 +n53001012005 +n53001012006 +n53001012007 +n53001012008 +n53001012009 +n53001012010 +n53001012011 +n53001012012 +n53001012013 +n53001012014 +n53001012015 +n53001012016 +n53001012017 +n53001012018 +n53001012019 +n53001012020 +n53001012021 +n53001012022 +n53001012023 +n53001012024 +n53002001002 +n53002001004 +n53002001001 +n53002001003 +n53002001005 +n53002001006 +n53002001007 +n53002001008 +n53002001009 +n53002001010 +n53002001011 +n53002001012 +n53002001013 +n53002001014 +n53002001015 +n53002001016 +n53002001017 +n53002002001 +n53002002002 +n53002002003 +n53002002004 +n53002002005 +n53002002006 +n53002002007 +n53002002008 +n53002002009 +n53002002010 +n53002002011 +n53002002012 +n53002002013 +n53002002014 +n53002002015 +n53002002016 +n53002002017 +n53002002018 +n53002002019 +n53002002020 +n53002002021 +n53002002022 +n53002002023 +n53002002024 +n53002002025 +n53002002026 +n53002002027 +n53002002028 +n53002002029 +n53002002030 +n53002003001 +n53002003002 +n53002003003 +n53002003004 +n53002003005 +n53002003006 +n53002003007 +n53002003008 +n53002003009 +n53002003010 +n53002003011 +n53002003012 +n53002003013 +n53002003014 +n53002003015 +n53002003016 +n53002003017 +n53002003018 +n53002003019 +n53002003020 +n53002003021 +n53002003022 +n53002003023 +n53002003024 +n53002004001 +n53002004002 +n53002004003 +n53002004004 +n53002004005 +n53002004006 +n53002004007 +n53002004008 +n53002004009 +n53002004010 +n53002004011 +n53002004012 +n53002004013 +n53002004014 +n53002004015 +n53002004016 +n53002004017 +n53002004018 +n53002004019 +n53002004020 +n53002004021 +n53002004022 +n53002004023 +n53002005001 +n53002005002 +n53002005003 +n53002005004 +n53002005005 +n53002005006 +n53002005007 +n53002005008 +n53002005009 +n53002005010 +n53002006001 +n53002006002 +n53002006003 +n53002006004 +n53002006005 +n53002006006 +n53002006007 +n53002006008 +n53002006009 +n53002006010 +n53002006011 +n53002006012 +n53002006013 +n53002007002 +n53002007001 +n53002007003 +n53002007006 +n53002007007 +n53002007004 +n53002007005 +n53002007008 +n53002007009 +n53002007010 +n53002007011 +n53002007012 +n53002007013 +n53002007014 +n53002007015 +n53002008001 +n53002008002 +n53002008003 +n53002008004 +n53002008005 +n53002008006 +n53002008007 +n53002008008 +n53002008009 +n53002008010 +n53002008011 +n53002008012 +n53002008013 +n53002008014 +n53002008015 +n53002008016 +n53002008017 +n53002008018 +n53002008019 +n53002008020 +n53002008021 +n53002008022 +n53002009001 +n53002009003 +n53002009004 +n53002009002 +n53002009005 +n53002009006 +n53002009007 +n53002009008 +n53002009009 +n53002009010 +n53002009011 +n53002009012 +n53002009013 +n53002009014 +n53002009015 +n53002009016 +n53002010001 +n53002010002 +n53002010003 +n53002010004 +n53002010005 +n53002010006 +n53002010007 +n53002010008 +n53002010009 +n53002010010 +n53002010011 +n53002010012 +n53002010013 +n53002010014 +n53002010015 +n53002010016 +n53002010017 +n53002010018 +n53002010019 +n53002011001 +n53002011002 +n53002011003 +n53002011004 +n53002011005 +n53002011006 +n53002011007 +n53002011008 +n53002011009 +n53002011010 +n53002011011 +n53002011012 +n53002011013 +n53002011014 +n53002011015 +n53002012001 +n53002012002 +n53002012003 +n53002012004 +n53002012005 +n53002012006 +n53002012007 +n53002012008 +n53002012009 +n53002012010 +n53002012011 +n53002012012 +n53002013002 +n53002013001 +n53002013003 +n53002013004 +n53002013005 +n53002013006 +n53002013007 +n53002013008 +n53002013009 +n53002013010 +n53002013011 +n53002013012 +n53002013013 +n53002013014 +n53002013015 +n53002013016 +n53002013017 +n53002013018 +n53002013019 +n53002013020 +n53002013021 +n53002013022 +n53002013023 +n53002013024 +n53002013025 +n53002013026 +n53002013027 +n53002013028 +n53002014001 +n53002014002 +n53002014003 +n53002014004 +n53002014005 +n53002014006 +n53002014007 +n53002014008 +n53002014009 +n53002014010 +n53002014011 +n53002014012 +n53002014013 +n53002014014 +n53002014015 +n53002014016 +n53002014017 +n53002015001 +n53002015002 +n53002015003 +n53002015004 +n53002015005 +n53002015006 +n53002015007 +n53002015008 +n53002015009 +n53002015010 +n53002015011 +n53002015012 +n53002015013 +n53002015014 +n53002015015 +n53002015016 +n53002015017 +n53002016002 +n53002016001 +n53002016003 +n53002016004 +n53002016005 +n53002016006 +n53002016007 +n53002016008 +n53002016009 +n53002016010 +n53002016011 +n53002016012 +n53002016013 +n53002016014 +n53002016015 +n53002016016 +n53002016017 +n53002016018 +n53002016019 +n53002016020 +n53002016021 +n53002016022 +n53002016023 +n53002016024 +n53002016025 +n53002017001 +n53002017002 +n53002017003 +n53002017004 +n53002017005 +n53002017006 +n53002017007 +n53002017008 +n53002017009 +n53002017010 +n53002017011 +n53002017012 +n53003001004 +n53003001001 +n53003001002 +n53003001003 +n53003001005 +n53003001006 +n53003001007 +n53003001008 +n53003001009 +n53003001010 +n53003001011 +n53003001012 +n53003001013 +n53003001014 +n53003001015 +n53003001016 +n53003001017 +n53003001018 +n53003002001 +n53003002002 +n53003002003 +n53003002004 +n53003002005 +n53003002006 +n53003002007 +n53003002008 +n53003002009 +n53003002011 +n53003002010 +n53003002012 +n53003002013 +n53003002014 +n53003003002 +n53003003001 +n53003003003 +n53003003004 +n53003003005 +n53003003006 +n53003003007 +n53003003008 +n53003003009 +n53003003010 +n53003003011 +n53003003012 +n53003003013 +n53003004002 +n53003004001 +n53003004003 +n53003004004 +n53003004005 +n53003004006 +n53003004007 +n53003004008 +n53003004009 +n53003004010 +n53003004011 +n53003004012 +n53003004013 +n53003005002 +n53003005001 +n53003005003 +n53003005004 +n53003005005 +n53003005006 +n53003005007 +n53003005008 +n53003005009 +n53003005010 +n53003005011 +n53003005012 +n53003005013 +n53003005014 +n53003005015 +n53003005016 +n53003005017 +n53003005018 +n53003006002 +n53003006004 +n53003006001 +n53003006003 +n53003006005 +n53003006006 +n53003006007 +n53003006008 +n53003006009 +n53003006010 +n53003006011 +n53003006012 +n53003006013 +n53003006014 +n53003006015 +n53003006016 +n53003006017 +n53003006018 +n53003006019 +n53003006020 +n53003006021 +n53003006022 +n53003006023 +n53003006024 +n53003006025 +n53003006026 +n53003007002 +n53003007001 +n53003007003 +n53003007004 +n53003007005 +n53003007006 +n53003007007 +n53003007008 +n53003007009 +n53003007010 +n53003007011 +n53003007012 +n53003008001 +n53003008002 +n53003008003 +n53003008004 +n53003008005 +n53003008006 +n53003008007 +n53003008008 +n53003008009 +n53003008010 +n53003008011 +n53003008012 +n53003008013 +n53003008014 +n53003008015 +n53003008016 +n53003008017 +n53003008018 +n53003008019 +n53003008020 +n53003008021 +n53003009001 +n53003009002 +n53003009003 +n53003009004 +n53003009005 +n53003009006 +n53003009007 +n53003009008 +n53003009009 +n53003009010 +n53003009011 +n53003009012 +n53003009013 +n53003009014 +n53003009015 +n53003010002 +n53003010001 +n53003010003 +n53003010004 +n53003010005 +n53003010006 +n53003010007 +n53003010008 +n53003010009 +n53003010010 +n53003010011 +n53003010012 +n53003010013 +n53003010014 +n53003010015 +n53003010016 +n53003010017 +n53003011002 +n53003011001 +n53003011003 +n53003011004 +n53003011005 +n53003011006 +n53003011007 +n53003011008 +n53003011009 +n53003011010 +n53003011011 +n53003012002 +n53003012001 +n53003012003 +n53003012004 +n53003012005 +n53003012006 +n53003012007 +n53003012008 +n53003012009 +n53003012010 +n53003012011 +n53003012012 +n53003012013 +n53003012014 +n53003012015 +n53003012016 +n53003012017 +n53003012018 +n53003013002 +n53003013003 +n53003013001 +n53003013004 +n53003013005 +n53003013006 +n53003014002 +n53003014001 +n53003014003 +n53003014004 +n53003014005 +n53003014006 +n53003014007 +n53003014008 +n53003014009 +n53003014010 +n53003014011 +n53003014012 +n53003014013 +n53003014014 +n53003014015 +n53003014016 +n53003014017 +n53003014018 +n53003015001 +n53003015002 +n53003015003 +n53003015004 +n53003015005 +n53003015006 +n53003015007 +n53003015008 +n53003015009 +n53003016002 +n53003016001 +n53003016003 +n53003016004 +n53003016005 +n53003016006 +n53003016007 +n53003016008 +n53003016009 +n53003016010 +n53003016011 +n53003016012 +n53003016013 +n53003016014 +n53003016015 +n53003016016 +n53003016017 +n53003016018 +n53003016019 +n53003016020 +n53003017001 +n53003017002 +n53003017003 +n53003017004 +n53003017005 +n53003017006 +n53003017007 +n53003017008 +n53003017009 +n53003017010 +n53003017011 +n53003017012 +n53003017013 +n53003017014 +n53003018001 +n53003018002 +n53003018003 +n53003018004 +n53003018005 +n53003018006 +n53003018007 +n53003018008 +n53003018009 +n53003018010 +n54001001001 +n54001001002 +n54001001003 +n54001001004 +n54001001005 +n54001001006 +n54001001007 +n54001001008 +n54001001009 +n54001001010 +n54001001011 +n54001001012 +n54001001013 +n54001001014 +n54001001015 +n54001002001 +n54001002002 +n54001002003 +n54001002004 +n54001002005 +n54001002006 +n54001002007 +n54001002008 +n54001002009 +n54001002010 +n54001002011 +n54001002012 +n54001002013 +n54001002014 +n54001002015 +n54001002016 +n54001002017 +n54001003001 +n54001003002 +n54001003003 +n54001003004 +n54001003005 +n54001003006 +n54001003007 +n54001003008 +n54001003009 +n54001003010 +n54001003011 +n54001003012 +n54001003013 +n54001003014 +n54001004001 +n54001004002 +n54001004003 +n54001004004 +n54001004005 +n54001004006 +n54001004007 +n54001004008 +n54001004009 +n54001004010 +n54001004011 +n54001004012 +n54001004013 +n54001004014 +n54001004015 +n54001004016 +n54001005002 +n54001005001 +n54001005003 +n54001005004 +n54001005005 +n54001005006 +n54001005007 +n54001005008 +n54001005009 +n54001005010 +n54001005011 +n54001005012 +n54001005013 +n54001005014 +n54001005015 +n54001005016 +n54001006001 +n54001006003 +n54001006002 +n54001006004 +n54001006005 +n54001006006 +n54001007001 +n54001007002 +n54001007003 +n54001007004 +n54001007005 +n54001007006 +n54001007007 +n54001007008 +n54001007009 +n54001007010 +n54001007011 +n54001007012 +n54001008002 +n54001008001 +n54001008003 +n54001008004 +n54001008005 +n54001008006 +n54001008007 +n54001008008 +n54001008009 +n54001008010 +n54001008011 +n54001009001 +n54001009002 +n54001009003 +n54001009006 +n54001009004 +n54001009005 +n54001009007 +n54001009009 +n54001009008 +n54001009010 +n54001009011 +n54001009012 +n54001009013 +n54001009014 +n54001009015 +n54001009016 +n54001009017 +n54001009018 +n54001009019 +n54001009020 +n54001009021 +n54001010001 +n54001010002 +n54001010003 +n54001010004 +n54001010005 +n54001010006 +n54001010007 +n54001010008 +n54001010009 +n54001010013 +n54001010010 +n54001010011 +n54001010012 +n54001011001 +n54001011002 +n54001011003 +n54001011004 +n54001011005 +n54001011006 +n54001011007 +n54001011008 +n54001011009 +n54001011010 +n54001011011 +n54001012001 +n54001012002 +n54001012003 +n54001012004 +n54001012005 +n54001012006 +n54001012007 +n54001012008 +n54001012009 +n54001012010 +n54001012011 +n54001012012 +n54001012013 +n54001012014 +n54001012015 +n54001012016 +n54001012017 +n54001013001 +n54001013002 +n54001013003 +n54001013004 +n54001013005 +n54001013006 +n54001013007 +n54001013008 +n54001013009 +n54001013010 +n54001013011 +n54001013012 +n54001013013 +n54001013014 +n54001013015 +n54001014002 +n54001014001 +n54001014003 +n54001014004 +n54001014005 +n54001014006 +n54001014007 +n54001014008 +n54001014009 +n54001014010 +n54001014011 +n54001014012 +n54001014013 +n54001014014 +n54001014015 +n54001015002 +n54001015003 +n54001015001 +n54001015004 +n54001015005 +n54001015006 +n54001015007 +n54001015008 +n54001015009 +n54001015010 +n54001015011 +n54001015012 +n54001015013 +n54001015014 +n54001015015 +n54001015016 +n54001015017 +n54001015018 +n54001015019 +n54001015020 +n54001016001 +n54001016002 +n54001016003 +n54001016004 +n54001016005 +n54001016006 +n54001016007 +n54001016008 +n54001016009 +n54001016010 +n54001016011 +n54001016012 +n54001016013 +n54001016014 +n54001016015 +n54001016016 +n54001016017 +n54001016018 +n54001016019 +n54001016020 +n54001016021 +n54001016022 +n54001016023 +n54001016024 +n54001017002 +n54001017001 +n54001017003 +n54001017004 +n54001017005 +n54001017006 +n54001017007 +n54001017008 +n54001017009 +n54001017010 +n54001017011 +n54001017012 +n54001017013 +n54001017014 +n54001017015 +n54001017016 +n54001017017 +n54001017018 +n54001018006 +n54001018007 +n54001018001 +n54001018002 +n54001018003 +n54001018004 +n54001018005 +n54001018008 +n54001018009 +n54001018010 +n54001018011 +n54001018012 +n54001018013 +n54001018014 +n54001018015 +n54001018016 +n54001018017 +n54001018018 +n54001018019 +n54001018020 +n54001019001 +n54001019002 +n54001019003 +n54001019004 +n54001019005 +n54001019006 +n54001019008 +n54001019007 +n54001019009 +n54001019010 +n54001019011 +n54001019012 +n54001020001 +n54001020002 +n54001020003 +n54001020004 +n54001020005 +n54001020006 +n54001020007 +n54001020008 +n54001020009 +n54001020010 +n54001020011 +n54001020012 +n54001020013 +n54002001002 +n54002001001 +n54002001003 +n54002001004 +n54002001005 +n54002001006 +n54002001007 +n54002001008 +n54002001009 +n54002001010 +n54002001011 +n54002001012 +n54002002001 +n54002002002 +n54002002003 +n54002002004 +n54002002005 +n54002002006 +n54002002007 +n54002002008 +n54002002009 +n54002002010 +n54002002011 +n54002002012 +n54002002013 +n54002002014 +n54002002015 +n54002002016 +n54002002017 +n54002002018 +n54002002019 +n54002003001 +n54002003002 +n54002003003 +n54002003004 +n54002003005 +n54002003006 +n54002003007 +n54002003008 +n54002003009 +n54002004001 +n54002004004 +n54002004002 +n54002004003 +n54002004005 +n54002004006 +n54002004007 +n54002004008 +n54002004009 +n54002004010 +n54002005002 +n54002005001 +n54002005003 +n54002005004 +n54002005005 +n54002005006 +n54002005007 +n54002005008 +n54002005009 +n54002005010 +n54002005011 +n54002005012 +n54002006001 +n54002006002 +n54002006003 +n54002006004 +n54002006005 +n54002006006 +n54002006007 +n54002006008 +n54002006009 +n54002006010 +n54002007001 +n54002007002 +n54002007003 +n54002007004 +n54002007005 +n54002007006 +n54002007007 +n54002007012 +n54002007013 +n54002007014 +n54002007015 +n54002007016 +n54002007017 +n54002007008 +n54002007009 +n54002007010 +n54002007011 +n54002008002 +n54002008001 +n54002008003 +n54002008004 +n54002008005 +n54002008006 +n54002008007 +n54002008008 +n54002008009 +n54002008010 +n54002008011 +n54002008012 +n54002008013 +n54002008014 +n54002008015 +n54002009001 +n54002009002 +n54002009003 +n54002009004 +n54002009005 +n54002009006 +n54002009007 +n54002009008 +n54002009009 +n54002009010 +n54002009011 +n54002009012 +n54002009013 +n54002009014 +n54002009015 +n54002009016 +n54002009017 +n54002009018 +n54002009019 +n54002009020 +n54002009021 +n54002010001 +n54002010007 +n54002010002 +n54002010003 +n54002010004 +n54002010005 +n54002010006 +n54002010008 +n54002010009 +n54002011001 +n54002011002 +n54002011003 +n54002011004 +n54002011005 +n54002011006 +n54002011007 +n54002012002 +n54002012005 +n54002012004 +n54002012001 +n54002012003 +n54002012006 +n54002012007 +n54002012008 +n54002012009 +n54002012010 +n54002012011 +n54002012012 +n54002013002 +n54002013001 +n54002013003 +n54002013004 +n54002013005 +n54002013006 +n54002014001 +n54002014002 +n54002014003 +n54002014004 +n54002014006 +n54002014005 +n54002014007 +n54002014008 +n54002014009 +n54002014010 +n54002014011 +n54002015002 +n54002015001 +n54002015003 +n54002015004 +n54002015005 +n54002015006 +n54002015007 +n54002015008 +n54002015009 +n54002015010 +n54002015011 +n54002015012 +n54002015013 +n54002015014 +n54002015015 +n54003001001 +n54003001002 +n54003001003 +n54003001004 +n54003001005 +n54003001006 +n54003001007 +n54003001008 +n54003001009 +n54003001010 +n54003002002 +n54003002001 +n54003002003 +n54003002004 +n54003002006 +n54003002005 +n54003002007 +n54003002008 +n54003002009 +n54003002010 +n54003002011 +n54003002012 +n54003002013 +n54003002014 +n54003003001 +n54003003002 +n54003003003 +n54003003004 +n54003003005 +n54003003006 +n54003003007 +n54003003008 +n54003004001 +n54003004002 +n54003004003 +n54003004004 +n54003004005 +n54003004006 +n54003004007 +n54003004008 +n54003004009 +n54003004010 +n54003004011 +n54003004012 +n54003005002 +n54003005001 +n54003005003 +n54003005004 +n54003005005 +n54003005006 +n54003005007 +n54003005008 +n54003005009 +n54003005010 +n54003005011 +n54003005012 +n54003005013 +n54003006001 +n54003006002 +n54003006003 +n54003006004 +n54003006005 +n54003006006 +n54003006007 +n54003006009 +n54003006010 +n54003006008 +n54003007002 +n54003007001 +n54003007003 +n54003007004 +n54003007005 +n54003007006 +n54003007007 +n54003007008 +n54003007009 +n54003007010 +n54003007011 +n54003007014 +n54003007012 +n54003007013 +n54003007015 +n54003007016 +n54003007017 +n54003007018 +n54003008002 +n54003008001 +n54003008003 +n54003008004 +n54003008005 +n54003008006 +n54003008007 +n54003008008 +n54003008009 +n54003008010 +n54003008011 +n54003009001 +n54003009002 +n54003009003 +n54003009004 +n54003009005 +n54003009006 +n54003009007 +n54003009008 +n54003010003 +n54003010001 +n54003010002 +n54003010004 +n54003010005 +n54003010006 +n54003010007 +n54003010008 +n54003010009 +n54003011002 +n54003011001 +n54003011003 +n54003011004 +n54003011005 +n54003011006 +n54003011007 +n54003011008 +n54003011009 +n54003012001 +n54003012002 +n54003012003 +n54003012004 +n54003012005 +n54003012007 +n54003012008 +n54003012006 +n54003012009 +n54003012010 +n54003012011 +n54003012012 +n54003013002 +n54003013001 +n54003013003 +n54003013004 +n54003013005 +n54003013007 +n54003013006 +n54003013008 +n54003013009 +n54003013010 +n54003013011 +n54003013012 +n54003013013 +n54003013014 +n54003013015 +n54003013016 +n54003013017 +n54003014001 +n54003014002 +n54003014003 +n54003014004 +n54003014005 +n54003014006 +n54003014007 +n54003014008 +n54003015002 +n54003015001 +n54003015003 +n54003015004 +n54003015005 +n54003015006 +n54003015007 +n54003015011 +n54003015008 +n54003015009 +n54003015010 +n54003015012 +n54003015013 +n54003015014 +n54003015015 +n54003015016 +n54003015017 +n54003015018 +n54003015019 +n54003015020 +n54003015021 +n54003016001 +n54003016002 +n54003016003 +n54003016004 +n54003016005 +n54003016006 +n54003016007 +n54003016008 +n54003016009 +n54003016010 +n54003016011 +n54003016012 +n54003016013 +n54003016014 +n54003016015 +n54003016016 +n54003016017 +n54003016018 +n54003016019 +n54003016020 +n54003016021 +n54003016022 +n54003016023 +n54003016024 +n54003016025 +n54003016026 +n54004001002 +n54004001001 +n54004001003 +n54004001004 +n54004001005 +n54004001006 +n54004001007 +n54004001008 +n54004001009 +n54004001010 +n54004001011 +n54004001012 +n54004001013 +n54004001014 +n54004001015 +n54004001016 +n54004001017 +n54004001018 +n54004001019 +n54004002001 +n54004002002 +n54004002003 +n54004002004 +n54004002005 +n54004002006 +n54004002007 +n54004003001 +n54004003002 +n54004003003 +n54004003004 +n54004003005 +n54004003006 +n54004003007 +n54004003008 +n54004003009 +n54004003010 +n54004003011 +n54004003012 +n54004003013 +n54004003014 +n54004003015 +n54004003016 +n54004003017 +n54004003018 +n54004004001 +n54004004002 +n54004004003 +n54004004004 +n54004004005 +n54004004006 +n54004004007 +n54004004008 +n54004004009 +n54004004010 +n54004004011 +n54004005002 +n54004005001 +n54004005003 +n54004005004 +n54004005005 +n54004005006 +n54004005007 +n54004006001 +n54004006002 +n54004006003 +n54004006004 +n54004006006 +n54004006005 +n54004006007 +n54004006008 +n54004006009 +n54004006010 +n54004006011 +n54004006012 +n54004006013 +n54004006014 +n54004006015 +n54004006016 +n54004006017 +n54004006018 +n54004006019 +n54004006020 +n54004007002 +n54004007001 +n54004007003 +n54004007004 +n54004007005 +n54004007006 +n54004007007 +n54004007009 +n54004007008 +n54004007010 +n54004007011 +n54004007012 +n54004008002 +n54004008001 +n54004008003 +n54004008004 +n54004008005 +n54004008006 +n54004008007 +n54004008008 +n54004008010 +n54004008009 +n54004008011 +n54004008012 +n54004008013 +n54004008014 +n54004008015 +n54004008017 +n54004008016 +n54004008018 +n54004008019 +n54004008020 +n54004008021 +n54004008022 +n54004008023 +n54004009002 +n54004009003 +n54004009001 +n54004009004 +n54004009005 +n54004009006 +n54004009007 +n54004010003 +n54004010001 +n54004010002 +n54004010004 +n54004010005 +n54004010006 +n54004010007 +n54004010008 +n54004010009 +n54004010010 +n54004010011 +n54004010012 +n54004010013 +n54004010014 +n54004010015 +n54004010016 +n54004010017 +n54004010018 +n54004011002 +n54004011001 +n54004011003 +n54004011004 +n54004012001 +n54004012002 +n54004012003 +n54004012004 +n54004012005 +n54004012006 +n54004012008 +n54004012007 +n54004012009 +n54004012010 +n54004012011 +n54004012012 +n54004012013 +n54004012014 +n54004012015 +n54004012016 +n54004012017 +n54004012018 +n54004012019 +n54004012020 +n54004013001 +n54004013002 +n54004013003 +n54004013004 +n54004013005 +n54004013006 +n54004013007 +n54004013008 +n54004013009 +n54004014001 +n54004014002 +n54004014003 +n54004014004 +n54004014005 +n54004014006 +n54004014007 +n54004014008 +n54004014009 +n54004014010 +n54004014011 +n54004014012 +n54004014013 +n54004014014 +n54004014015 +n54004014016 +n54004014017 +n54004015001 +n54004015002 +n54004015003 +n54004015004 +n54004015005 +n54004015006 +n54004015007 +n54004015008 +n54004015009 +n54004015010 +n54004015011 +n54004015012 +n54004016001 +n54004016002 +n54004016003 +n54004016004 +n54004016005 +n54004016006 +n54004016007 +n54004016009 +n54004016008 +n54004016010 +n54004016013 +n54004016011 +n54004016012 +n54004016014 +n54004016015 +n54004016016 +n54004016017 +n54005001001 +n54005001002 +n54005001003 +n54005001004 +n54005001005 +n54005001006 +n54005001007 +n54005001008 +n54005001009 +n54005001010 +n54005002001 +n54005002002 +n54005002003 +n54005002004 +n54005002005 +n54005002006 +n54005002007 +n54005002008 +n54005002009 +n54005003002 +n54005003001 +n54005003003 +n54005003004 +n54005003005 +n54005004002 +n54005004001 +n54005004003 +n54005004004 +n54005004005 +n54005004006 +n54005004007 +n54005004008 +n54005004009 +n54005004010 +n54005004011 +n54005004012 +n54005004013 +n54005004014 +n54005004015 +n54005004016 +n54005004017 +n54005004018 +n54005004019 +n54005004021 +n54005004020 +n54005004022 +n54005004023 +n54005004024 +n54005004025 +n54005004026 +n54005005002 +n54005005001 +n54005005003 +n54005005004 +n54005005005 +n54005005006 +n54005005007 +n54005005008 +n54005005009 +n54005005010 +n54005005011 +n54005005012 +n54005005013 +n54005005014 +n54005005015 +n54005005016 +n54005005017 +n54005005018 +n54005005019 +n54005006002 +n54005006001 +n54005006003 +n54005006004 +n54005006005 +n54005007001 +n54005007002 +n54005007003 +n54005007004 +n54005007005 +n54005007006 +n54005008002 +n54005008001 +n54005008003 +n54005008004 +n54005008005 +n54005008006 +n54005008007 +n54005008008 +n54005008009 +n54005008010 +n54005008011 +n54005008012 +n54005008013 +n54005008014 +n54005008015 +n54005008016 +n54005008017 +n54005009001 +n54005009002 +n54005009003 +n54005009004 +n54005009005 +n54005009006 +n54005009007 +n54005009008 +n54005009009 +n54005009010 +n54005010001 +n54005010002 +n54005010003 +n54005010004 +n54005010005 +n54005010006 +n54005010007 +n54005010008 +n54005010009 +n54005010010 +n54005010011 +n54005010012 +n54005010013 +n54005010014 +n54005010015 +n54005010016 +n54005010017 +n54005010018 +n54005010019 +n54005010020 +n54005011002 +n54005011001 +n54005011003 +n54005011004 +n54005011006 +n54005011005 +n54005011007 +n54005011008 +n54005011009 +n54005011010 +n54005011011 +n54005012001 +n54005012002 +n54005012003 +n54005012004 +n54005012005 +n54005012006 +n54005012007 +n54005013002 +n54005013001 +n54005013003 +n54005013004 +n54005013005 +n54005013006 +n54005013007 +n54005013008 +n54005013011 +n54005013009 +n54005013010 +n54005013012 +n54005013013 +n54005013014 +n54005013015 +n54005013016 +n54005013017 +n54005013018 +n54005013019 +n54005013020 +n54005013021 +n54005014002 +n54005014001 +n54005014003 +n54005014004 +n54005014005 +n54005014006 +n54005014007 +n54005014008 +n54005014009 +n54005014010 +n54005014011 +n54005014012 +n54005014013 +n54005015002 +n54005015001 +n54005015003 +n54005015004 +n54005015005 +n54005015006 +n54005015007 +n54005016001 +n54005016002 +n54005016003 +n54005016004 +n54005016005 +n54005016006 +n54005016007 +n54005016008 +n54005016009 +n54005016010 +n54005016011 +n54005016012 +n54005016013 +n54005016014 +n54005016015 +n54005016016 +n54005016017 +n54005017001 +n54005017002 +n54005017003 +n54005017004 +n54005017005 +n54005017006 +n54005017007 +n54005017008 +n54005017009 +n54005017010 +n54005017011 +n54005017012 +n54005017013 +n54005017014 +n54005018002 +n54005018001 +n54005018003 +n54005018004 +n54005018005 +n54005018006 +n54005018007 +n54005018008 +n54005018009 +n54005018010 +n54005018011 +n54005018012 +n54005018013 +n54005018014 +n54005018015 +n54005019001 +n54005019002 +n54005019003 +n54005019004 +n54005019005 +n54005019006 +n54005019007 +n54005019008 +n54005019009 +n54005019010 +n54005019011 +n54005019012 +n54005019013 +n54005020001 +n54005020002 +n54005020003 +n54005020004 +n54005020005 +n54005020006 +n54005020007 +n54005020008 +n54005020009 +n54005020010 +n54005020011 +n54005021001 +n54005021002 +n54005021003 +n54005021004 +n54005021005 +n54005021006 +n54005021007 +n54005021008 +n54005021009 +n54005021010 +n54005021011 +n54005021012 +n54005021013 +n54005021014 +n54005021015 +n54005021016 +n54005021017 +n54005021018 +n54005021019 +n54005021020 +n54005022001 +n54005022002 +n54005022003 +n54005022004 +n54005022005 +n54005022006 +n54005022007 +n54005022008 +n54005022009 +n54005022010 +n54005022011 +n54005023001 +n54005023002 +n54005023003 +n54005023004 +n54005023005 +n54005023006 +n54005023007 +n54005023008 +n54005023009 +n54005023010 +n54005023011 +n54005023012 +n54005023013 +n54005023014 +n54005024001 +n54005024002 +n54005024003 +n54005024004 +n54005024005 +n54005024006 +n54005024007 +n54005024008 +n54005024009 +n54005024011 +n54005024010 +n54005024012 +n54005024013 +n54005025001 +n54005025002 +n54005025003 +n54005025004 +n54005025005 +n54005025006 +n54005025007 +n54005025008 +n54005025009 +n54005025010 +n54005025011 +n54005025012 +n54005025013 +n54005025014 +n54006001001 +n54006001002 +n54006001003 +n54006001004 +n54006001005 +n54006001006 +n54006001007 +n54006001008 +n54006001009 +n54006001010 +n54006001011 +n54006001012 +n54006001013 +n54006001014 +n54006001015 +n54006001016 +n54006001017 +n54006001018 +n54006001019 +n54006001020 +n54006001021 +n54006001022 +n54006002002 +n54006002001 +n54006002004 +n54006002003 +n54006002005 +n54006002006 +n54006002007 +n54006002008 +n54006002009 +n54006002010 +n54006002011 +n54006002012 +n54006002013 +n54006002014 +n54006002016 +n54006002015 +n54006002017 +n54006002018 +n54006002019 +n54006002020 +n54006002021 +n54006002022 +n54006002023 +n54006002024 +n54006002025 +n54006002026 +n54006003001 +n54006003002 +n54006003003 +n54006003004 +n54006003005 +n54006003006 +n54006003007 +n54006003008 +n54006003009 +n54006003010 +n54006003011 +n54006003012 +n54006003013 +n54006003014 +n54006003015 +n54006003016 +n54006003017 +n54006003018 +n54006003019 +n54006004001 +n54006004002 +n54006004003 +n54006004004 +n54006004005 +n54006004006 +n54006004007 +n54006004008 +n54006004009 +n54006004010 +n54006004011 +n54006004012 +n54006004013 +n54006004014 +n54006004015 +n54006004016 +n54006004017 +n54006005001 +n54006005003 +n54006005002 +n54006005004 +n54006005005 +n54006005006 +n54006005007 +n54006005008 +n54006005009 +n54006005010 +n54006005011 +n54006005012 +n54006005013 +n54006005014 +n54006006002 +n54006006001 +n54006006003 +n54006006004 +n54006006005 +n54006006006 +n54006006007 +n54006006008 +n54006007002 +n54006007001 +n54006007003 +n54006007004 +n54006007005 +n54006007006 +n54006007007 +n54006007008 +n54006007009 +n54006007010 +n54006007011 +n54006008002 +n54006008001 +n54006008003 +n54006008004 +n54006008005 +n54006008006 +n54006008007 +n54006009002 +n54006009001 +n54006009003 +n54006009004 +n54006009005 +n54006009006 +n54006009007 +n54006009008 +n54006009009 +n54006009010 +n54006009011 +n54006009012 +n54006009013 +n54006009014 +n54006009015 +n54006009016 +n54006009017 +n54006009018 +n54006009019 +n54006009020 +n54006009021 +n54006009022 +n54006009023 +n54006010002 +n54006010001 +n54006010003 +n54006010004 +n54006010005 +n54006010006 +n54006010007 +n54006010008 +n54006010009 +n54006010011 +n54006010010 +n54006010012 +n54006010013 +n54006010014 +n54006010015 +n54006010016 +n54006010017 +n54006010018 +n54006010019 +n54006010020 +n54006011002 +n54006011003 +n54006011004 +n54006011005 +n54006011001 +n54006011006 +n54006011007 +n54006011009 +n54006011008 +n54006011010 +n54006011011 +n54006011012 +n54006011013 +n54006011014 +n54006011015 +n54006012001 +n54006012002 +n54006012003 +n54006012004 +n54006012005 +n54006012006 +n54006012007 +n54006012008 +n54006012009 +n54006012010 +n54006012011 +n54006012012 +n54006012013 +n54006012014 +n54006012015 +n54006012016 +n54006012017 +n54006012018 +n54006012019 +n54006012020 +n54006012021 +n54006013001 +n54006013002 +n54006013003 +n54006013004 +n54006013005 +n54006013006 +n54006013007 +n54006013008 +n54006013009 +n54006013010 +n54006013011 +n54006013012 +n54006013013 +n54006013014 +n54006013015 +n54006013016 +n54006013017 +n54006013018 +n54006013019 +n54006014001 +n54006014002 +n54006014003 +n54006014004 +n54006014005 +n54006014006 +n54006014007 +n54006014008 +n54006014009 +n54006014010 +n54006014011 +n54006014012 +n54006014013 +n54006014014 +n54006015001 +n54006015002 +n54006015003 +n54006015004 +n54006015005 +n54006015006 +n54006015007 +n54006015008 +n54006015009 +n54006015010 +n54006015011 +n54006015012 +n54006015013 +n54006015014 +n54006015015 +n54006015016 +n54006015017 +n54006016001 +n54006016002 +n54006016003 +n54006016004 +n54006016005 +n54006016007 +n54006016006 +n54006016008 +n54006016009 +n54006016010 +n54006016011 +n54006016012 +n54006016013 +n54006016014 +n54006016015 +n54006016016 +n54006016017 +n54006016018 +n54006016019 +n54006016020 +n54006017001 +n54006017002 +n54006017003 +n54006017004 +n54006017005 +n54006017006 +n54006017007 +n54006017008 +n54006017009 +n54006017010 +n54006017011 +n54006017012 +n54006017013 +n54006017014 +n54006017015 +n54006017016 +n54006017017 +n54006017018 +n54006017019 +n54006017020 +n54006017021 +n54006017022 +n54006017023 +n54006017024 +n54006018001 +n54006018002 +n54006018003 +n54006018004 +n54006018005 +n54006018006 +n54006018007 +n54006018008 +n54006019001 +n54006019002 +n54006019003 +n54006019004 +n54006019005 +n54006019006 +n54006019007 +n54006019008 +n54006019009 +n54006019010 +n54006019011 +n54006019012 +n54006020001 +n54006020002 +n54006020003 +n54006020004 +n54006020005 +n54006020006 +n54006020007 +n54006020008 +n54006020009 +n54006020010 +n54006020011 +n54006020012 +n54006020013 +n54006020014 +n54006021001 +n54006021003 +n54006021002 +n54006021004 +n54006021005 +n54006021006 +n54006021007 +n54006021008 +n54006021009 +n54006021010 +n54006021011 +n55001001001 +n55001001002 +n55001001003 +n55001001004 +n55001001005 +n55001001006 +n55001001007 +n55001001008 +n55001001009 +n55001001010 +n55001001011 +n55001001012 +n55001001013 +n55001001014 +n55001002001 +n55001002002 +n55001002003 +n55001002004 +n55001002005 +n55001002006 +n55001002007 +n55001002008 +n55001002009 +n55001002010 +n55001002011 +n55001002012 +n55001002013 +n55001002014 +n55001002015 +n55001003001 +n55001003002 +n55001003003 +n55001003004 +n55001003005 +n55001003006 +n55001003007 +n55001003008 +n55001003009 +n55001003010 +n55001003011 +n55001003012 +n55001003013 +n55001003014 +n55001003015 +n55001003016 +n55001003017 +n55001003018 +n55001003019 +n55001003020 +n55001003021 +n55001003022 +n55001003023 +n55001003024 +n55001003025 +n55001004001 +n55001004002 +n55001004003 +n55001004004 +n55001004005 +n55001004006 +n55001004007 +n55001004008 +n55001004009 +n55001004010 +n55001005002 +n55001005001 +n55001005003 +n55001005004 +n55001005005 +n55001005006 +n55001005007 +n55001005008 +n55001005009 +n55001005010 +n55001005011 +n55001005012 +n55001005013 +n55001005014 +n55001005015 +n55001005016 +n55001005017 +n55001005018 +n55001005019 +n55001005020 +n55001005022 +n55001005021 +n55001005023 +n55001005024 +n55001005025 +n55001005026 +n55001006001 +n55001006002 +n55001006003 +n55001006004 +n55001006005 +n55001006006 +n55001006007 +n55001006008 +n55001006009 +n55001006010 +n55001006011 +n55001006012 +n55001006013 +n55001006014 +n55001006015 +n55001006016 +n55001006017 +n55001006018 +n55001006019 +n55001006020 +n55001007002 +n55001007001 +n55001007003 +n55001007004 +n55001007005 +n55001007006 +n55001007007 +n55001007008 +n55001007009 +n55001007010 +n55001007011 +n55001007012 +n55001007013 +n55001007014 +n55001008002 +n55001008001 +n55001008003 +n55001008004 +n55001008005 +n55001008006 +n55001008007 +n55001008008 +n55001008009 +n55001008010 +n55001008011 +n55001008012 +n55001008013 +n55001008014 +n55001008015 +n55001008016 +n55001008017 +n55001008018 +n55001008019 +n55001008020 +n55001009001 +n55001009002 +n55001009003 +n55001009004 +n55001009005 +n55001009006 +n55001009007 +n55001009008 +n55001009009 +n55001009010 +n55001009011 +n55001009012 +n55001009013 +n55001009014 +n55001009015 +n55001009016 +n55001009017 +n55001009018 +n55001009019 +n55001009020 +n55001009021 +n55001009022 +n55001009023 +n55001009024 +n55001009025 +n55001009026 +n55001009027 +n55001010002 +n55001010001 +n55001010003 +n55001010004 +n55001010005 +n55001010006 +n55001010007 +n55001010008 +n55001010009 +n55001010010 +n55001010011 +n55001010013 +n55001010012 +n55001010014 +n55001010015 +n55001010017 +n55001010016 +n55001010018 +n55001010019 +n55001010020 +n55001010021 +n55001010022 +n55001010023 +n55001011001 +n55001011002 +n55001011003 +n55001011004 +n55001011005 +n55001011006 +n55001011007 +n55001011008 +n55001011009 +n55001012001 +n55001012002 +n55001012003 +n55001012004 +n55001012005 +n55001012006 +n55001012007 +n55001012008 +n55001012009 +n55001012011 +n55001012010 +n55001012012 +n55001012013 +n55001012014 +n55001012015 +n55001012016 +n55001012018 +n55001012017 +n55001012019 +n55001012020 +n55001012021 +n55001012022 +n55001012023 +n55001012024 +n55001012025 +n55001012026 +n55001013002 +n55001013001 +n55001013003 +n55001013004 +n55001013005 +n55001013006 +n55001013007 +n55001013008 +n55001013009 +n55001013010 +n55001013011 +n55001013012 +n55001013013 +n55001013014 +n55001013015 +n55001013016 +n55001014001 +n55001014002 +n55001014003 +n55001014004 +n55001014005 +n55001014006 +n55001014007 +n55001014008 +n55001014009 +n55001014010 +n55001014011 +n55001015001 +n55001015002 +n55001015003 +n55001015004 +n55001015005 +n55001015006 +n55001015007 +n55001015008 +n55001015009 +n55001015010 +n55001015011 +n55001015012 +n55001015013 +n55001015014 +n55001015015 +n55001016001 +n55001016002 +n55001016003 +n55001016004 +n55001016005 +n55001016006 +n55001016007 +n55001016008 +n55001016009 +n55001016010 +n55001016011 +n55001016012 +n55001016016 +n55001016013 +n55001016014 +n55001016015 +n55001016017 +n55001017001 +n55001017002 +n55001017003 +n55001017004 +n55001017005 +n55001017006 +n55001017007 +n55001017008 +n55001017009 +n55001018001 +n55001018002 +n55001018003 +n55001018004 +n55001018005 +n55001018006 +n55001018007 +n55001018008 +n55001018009 +n55001018010 +n55001018011 +n55001018012 +n55001018013 +n55001018014 +n55001018015 +n55001018016 +n55001018017 +n55001018018 +n55001018019 +n55001018020 +n55002001002 +n55002001003 +n55002001004 +n55002001001 +n55002001005 +n55002001006 +n55002001007 +n55002001008 +n55002001009 +n55002001010 +n55002001011 +n55002001012 +n55002002001 +n55002002002 +n55002002003 +n55002002004 +n55002002005 +n55002002006 +n55002002007 +n55002002008 +n55002002009 +n55002002010 +n55002002011 +n55002002012 +n55002002013 +n55002002014 +n55002002015 +n55002002016 +n55002002017 +n55002002018 +n55002003001 +n55002003002 +n55002003003 +n55002003004 +n55002003005 +n55002003006 +n55002004001 +n55002004002 +n55002004003 +n55002004004 +n55002004005 +n55002004006 +n55002004007 +n55002004008 +n55002004009 +n55002004010 +n55002004011 +n55002005002 +n55002005001 +n55002005003 +n55002005004 +n55002005005 +n55002005006 +n55002005007 +n55002005008 +n55002005009 +n55002005010 +n55002005011 +n55002006004 +n55002006001 +n55002006002 +n55002006003 +n55002006005 +n55002006006 +n55002006007 +n55002006008 +n55002007001 +n55002007002 +n55002007003 +n55002007005 +n55002007004 +n55002007006 +n55002007007 +n55002007008 +n55002007009 +n55002007010 +n55002007011 +n55002008001 +n55002008002 +n55002008003 +n55002008004 +n55002008005 +n55002008006 +n55002008007 +n55002008008 +n55002008009 +n55002008010 +n55002008011 +n55002008012 +n55002008013 +n55002009001 +n55002009002 +n55002009003 +n55002009004 +n55002009005 +n55002009006 +n55002009007 +n55002009008 +n55002009009 +n55002009010 +n55002009011 +n55002009012 +n55002009013 +n55002009014 +n55002010001 +n55002010002 +n55002010003 +n55002010004 +n55002010005 +n55002010006 +n55002010007 +n55002010008 +n55002010009 +n55002010010 +n55002010012 +n55002010011 +n55002010013 +n55002010014 +n55002010015 +n55002010016 +n55002010017 +n55002010018 +n55002010019 +n55002011001 +n55002011002 +n55002011003 +n55002011005 +n55002011004 +n55002011006 +n55002011007 +n55002011008 +n55002012001 +n55002012002 +n55002012003 +n55002012004 +n55002012005 +n55002012006 +n55002012007 +n55002012008 +n55002012009 +n55002013001 +n55002013002 +n55002013003 +n55002013004 +n55002013005 +n55002013007 +n55002013006 +n55002013008 +n55002013009 +n55002013010 +n55002014001 +n55002014002 +n55002014003 +n55002014004 +n55002014005 +n55002014006 +n55002014007 +n55002014008 +n55002014009 +n55002014010 +n55002014011 +n55002014012 +n55002014013 +n55002014014 +n55002014015 +n55002015001 +n55002015004 +n55002015002 +n55002015003 +n55002015005 +n55002015006 +n55002015007 +n55002015008 +n55002015009 +n55002015010 +n55002015011 +n55002015012 +n55002015013 +n55002016002 +n55002016001 +n55002016003 +n55002016004 +n55002016005 +n55002016008 +n55002016006 +n55002016007 +n55002016010 +n55002016009 +n55002017001 +n55002017002 +n55002017003 +n55002017004 +n55002017005 +n55002017006 +n55002017007 +n55002017008 +n55002017009 +n55002017010 +n55002017011 +n55002017012 +n55002017013 +n55002018001 +n55002018002 +n55002018003 +n55002018004 +n55002018005 +n55002018006 +n55002018007 +n55002018008 +n55002018009 +n55002018010 +n55002018011 +n55002018012 +n55002018013 +n55002018014 +n55002019002 +n55002019001 +n55002019003 +n55002019004 +n55002019005 +n55002019006 +n55002019007 +n55002019008 +n55002019009 +n55002019010 +n55002019011 +n55002019012 +n55002019013 +n55002019014 +n55002019015 +n55002019016 +n55002019017 +n55002019018 +n55002019019 +n55002019020 +n55002019021 +n55002019022 +n55002019023 +n55002019024 +n55002019025 +n55002019026 +n55002020003 +n55002020001 +n55002020002 +n55002020004 +n55002020006 +n55002020005 +n55002020007 +n55002020008 +n55002020009 +n55002020010 +n55002020011 +n55002020012 +n55002020013 +n55002020014 +n55002020015 +n55002020016 +n55002020017 +n55002020019 +n55002020018 +n55002020020 +n55002020021 +n55002020023 +n55002020022 +n55002020024 +n55002020025 +n55002021002 +n55002021001 +n55002021003 +n55002021004 +n55002021005 +n55002021006 +n55002021007 +n55002021008 +n55002021009 +n55002021010 +n55002021011 +n55002021012 +n55002021013 +n55002021014 +n55002021015 +n55002021016 +n55002021017 +n55002021018 +n55002021019 +n55002021020 +n55002022002 +n55002022001 +n55002022003 +n55002022004 +n55002022005 +n55002022007 +n55002022006 +n55002022008 +n55002022009 +n55002022010 +n55002022011 +n55002022012 +n55002022013 +n55002022014 +n55002022015 +n55002022016 +n55002022017 +n55002022018 +n55002022019 +n55002023002 +n55002023001 +n55002023003 +n55002023004 +n55002023005 +n55002023006 +n55002023007 +n55002023008 +n55002023009 +n55002023010 +n55002023011 +n55002024002 +n55002024005 +n55002024001 +n55002024003 +n55002024004 +n55002024006 +n55002024007 +n55002024009 +n55002024008 +n55002024010 +n55002024011 +n55002024012 +n55002024013 +n55002025001 +n55002025002 +n55002025003 +n55002025004 +n55002025005 +n55002025006 +n55002025007 +n55002025008 +n55002025009 +n55002025010 +n55002025011 +n55002025012 +n55002025013 +n55002025014 +n55002025015 +n55002026001 +n55002026002 +n55002026003 +n55002026004 +n55002026005 +n55002026006 +n55002026007 +n55002026008 +n55002026009 +n55002026010 +n55002026011 +n55002026012 +n55002026013 +n55002026014 +n55003001002 +n55003001001 +n55003001003 +n55003001004 +n55003001005 +n55003001006 +n55003001007 +n55003001008 +n55003001009 +n55003001010 +n55003002002 +n55003002001 +n55003002003 +n55003002004 +n55003002005 +n55003002006 +n55003002007 +n55003002008 +n55003002009 +n55003002010 +n55003002011 +n55003002012 +n55003002013 +n55003003001 +n55003003002 +n55003003003 +n55003003004 +n55003003005 +n55003003006 +n55003004001 +n55003004002 +n55003004003 +n55003004004 +n55003004005 +n55003004006 +n55003004007 +n55003005001 +n55003005002 +n55003005003 +n55003005005 +n55003005004 +n55003005006 +n55003005007 +n55003005008 +n55003005009 +n55003005010 +n55003005011 +n55003006003 +n55003006001 +n55003006002 +n55003006004 +n55003006005 +n55003006006 +n55003006007 +n55003006008 +n55003006009 +n55003006010 +n55003006011 +n55003006012 +n55003006013 +n55003006014 +n55003006015 +n55003006016 +n55003006017 +n55003007001 +n55003007002 +n55003007003 +n55003007004 +n55003007005 +n55003007006 +n55003007007 +n55003007008 +n55003007009 +n55003008003 +n55003008001 +n55003008002 +n55003008004 +n55003008005 +n55003008006 +n55003008007 +n55003008008 +n55003008009 +n55003008010 +n55003008011 +n55003008012 +n55003008013 +n55003008014 +n55003008015 +n55003008016 +n55003008017 +n55003008018 +n55003008019 +n55003008020 +n55003008021 +n55003008022 +n55003009001 +n55003009002 +n55003009003 +n55003009004 +n55003009005 +n55003009007 +n55003009006 +n55003009008 +n55003009009 +n55003009010 +n55003009011 +n55003009012 +n55003009013 +n55003009014 +n55003009015 +n55003009016 +n55003009017 +n55003010002 +n55003010001 +n55003010003 +n55003010004 +n55003010005 +n55003010006 +n55003010007 +n55003010008 +n55003010009 +n55003010010 +n55003010011 +n55003010012 +n55003010013 +n55003010014 +n55003010015 +n55003010016 +n55003010017 +n55003010018 +n55003011001 +n55003011002 +n55003011003 +n55003011004 +n55003011005 +n55003011006 +n55003011007 +n55003011008 +n55003011009 +n55003011010 +n55003011011 +n55003011012 +n55003011013 +n55003011014 +n55003011015 +n55003011016 +n55003011017 +n55003011018 +n55003011019 +n55003011020 +n55003011021 +n55003011022 +n55003011023 +n55003012003 +n55003012001 +n55003012002 +n55003012004 +n55003012005 +n55003012006 +n55003012007 +n55003012008 +n55003012009 +n55003012010 +n55003012011 +n55003013002 +n55003013001 +n55003013003 +n55003013004 +n55003013005 +n55003013006 +n55003013007 +n55003013008 +n55003013009 +n55003013010 +n55003013011 +n55003013012 +n55003014002 +n55003014001 +n55003014003 +n55003014004 +n55003014005 +n55003014006 +n55003014007 +n55003014008 +n55003014009 +n55003014010 +n55003014011 +n55003014012 +n55003015001 +n55003015002 +n55003015003 +n55003015004 +n55003015007 +n55003015005 +n55003015006 +n55003015008 +n55003015009 +n55003015010 +n55003015011 +n55003015012 +n55003015013 +n55003015014 +n55003015015 +n55003015016 +n55003015017 +n55003015018 +n55003015019 +n55003016001 +n55003016002 +n55003016003 +n55003016004 +n55003016005 +n55003016006 +n55003016007 +n55003016008 +n55003016009 +n55003016010 +n55003016011 +n55003016012 +n55003016013 +n55003016014 +n55003016015 +n55003016016 +n55003017001 +n55003017002 +n55003017003 +n55003017004 +n55003017005 +n55003017006 +n55003017007 +n55003017008 +n55003017009 +n55003017010 +n55003017011 +n55003017012 +n55004001001 +n55004001002 +n55004001003 +n55004001004 +n55004001005 +n55004001006 +n55004001007 +n55004001008 +n55004001009 +n55004001010 +n55004001011 +n55004001012 +n55004001013 +n55004001014 +n55004001015 +n55004001016 +n55004001017 +n55004001018 +n55004001019 +n55004001020 +n55004001021 +n55004002001 +n55004002002 +n55004002003 +n55004002004 +n55004002005 +n55004002006 +n55004002007 +n55004002008 +n55004002009 +n55004002010 +n55004002011 +n55004002012 +n55004002013 +n55004002014 +n55004003002 +n55004003001 +n55004003003 +n55004003004 +n55004003008 +n55004003005 +n55004003006 +n55004003007 +n55004003009 +n55004003010 +n55004003011 +n55004003012 +n55004003013 +n55004003014 +n55004003015 +n55004003016 +n55004003017 +n55004003018 +n55004003019 +n55004003020 +n55004004001 +n55004004003 +n55004004002 +n55004004004 +n55004004005 +n55004004006 +n55004004007 +n55004004008 +n55004004010 +n55004004009 +n55004004011 +n55004004012 +n55004004013 +n55004005002 +n55004005001 +n55004005003 +n55004005004 +n55004005005 +n55004005006 +n55004005008 +n55004005007 +n55004005009 +n55004005010 +n55004005011 +n55004005012 +n55004005013 +n55004006002 +n55004006001 +n55004006003 +n55004006004 +n55004006005 +n55004006006 +n55004006007 +n55004006008 +n55004006009 +n55004006010 +n55004006011 +n55004007001 +n55004007002 +n55004007003 +n55004007004 +n55004007005 +n55004007006 +n55004007007 +n55004007008 +n55004007009 +n55004007010 +n55004008001 +n55004008002 +n55004008003 +n55004008004 +n55004008005 +n55004008006 +n55004008007 +n55004008008 +n55004008009 +n55004008010 +n55004008011 +n55004008012 +n55004008017 +n55004008018 +n55004008019 +n55004008013 +n55004008014 +n55004008015 +n55004008016 +n55004008022 +n55004008020 +n55004008021 +n55004008023 +n55004008024 +n55004008025 +n55004008026 +n55004008027 +n55004008028 +n55004008029 +n55004008030 +n55004008031 +n55004009001 +n55004009002 +n55004009003 +n55004009004 +n55004009005 +n55004010002 +n55004010001 +n55004010003 +n55004010004 +n55004010005 +n55004010006 +n55004010007 +n55004010008 +n55004010009 +n55004010010 +n55004010011 +n55004010012 +n55004010013 +n55004010014 +n55004010015 +n55004010016 +n55004010017 +n55004010018 +n55004011001 +n55004011002 +n55004011003 +n55004011004 +n55004011005 +n55004011006 +n55004011007 +n55004011008 +n55004011009 +n55004011010 +n55004011012 +n55004011011 +n55004011013 +n55004011014 +n55004011015 +n55004011016 +n55004012002 +n55004012001 +n55004012003 +n55004012004 +n55004012005 +n55004013001 +n55004013002 +n55004013003 +n55004013004 +n55004013005 +n55004013006 +n55004013007 +n55004013008 +n55004013009 +n55004013010 +n55004013011 +n55004013012 +n55004013013 +n55004013014 +n55004013015 +n55004013016 +n55004014001 +n55004014002 +n55004014003 +n55004014004 +n55004014006 +n55004014005 +n55004014007 +n55004014008 +n55004014009 +n55004014010 +n55004014011 +n55004014012 +n55004014013 +n55004014014 +n55004014015 +n55004015001 +n55004015002 +n55004015003 +n55004015004 +n55004015006 +n55004015005 +n55004015007 +n55004015008 +n55004015009 +n55004015010 +n55004016001 +n55004016002 +n55004016003 +n55004016004 +n55004016005 +n55004016006 +n55004016007 +n55004016008 +n55004016009 +n55004016010 +n55004016011 +n55004016012 +n55004016013 +n55004016014 +n55004016015 +n55004017002 +n55004017001 +n55004017003 +n55004017004 +n55004017005 +n55004017006 +n55004017007 +n55004017008 +n55004017009 +n55004017010 +n55004017011 +n55004017012 +n55004017013 +n55004017014 +n55004017015 +n55004017016 +n55004017017 +n55004017018 +n55004017019 +n55004017020 +n55004017021 +n55004017022 +n55004017023 +n55004017024 +n55004018001 +n55004018002 +n55004018003 +n55004018004 +n55004018005 +n55004018006 +n55004018007 +n55004018008 +n55004018009 +n55004018010 +n55004018011 +n55004018012 +n55004018013 +n55004018014 +n55004018015 +n55004018016 +n55004018017 +n55004018018 +n55004018019 +n55004018020 +n55004018021 +n55004018022 +n55004018023 +n55004018024 +n55004018025 +n55004019001 +n55004019002 +n55004019003 +n55004019004 +n55004019005 +n55004019006 +n55004019007 +n55004019008 +n55004020001 +n55004020002 +n55004020003 +n55004020004 +n55004020006 +n55004020005 +n55004020007 +n55004020008 +n55004020009 +n55004020010 +n55004021001 +n55004021002 +n55004021003 +n55004021004 +n55004021005 +n55004021006 +n55004021007 +n55004021008 +n55004021009 +n55004021010 +n55004021011 +n55004021012 +n55004021013 +n55004021014 +n55004021015 +n55004021016 +n55004021017 +n55004022001 +n55004022002 +n55004022003 +n55004022004 +n55004022005 +n55004022006 +n55004022007 +n55004022008 +n55004022009 +n55004022010 +n56001001001 +n56001001002 +n56001001003 +n56001001005 +n56001001004 +n56001001006 +n56001001007 +n56001001008 +n56001001009 +n56001001010 +n56001001011 +n56001001012 +n56001001013 +n56001001014 +n56001001015 +n56001001016 +n56001001017 +n56001002001 +n56001002002 +n56001002003 +n56001002004 +n56001002005 +n56001002006 +n56001002007 +n56001002008 +n56001002009 +n56001002010 +n56001002011 +n56001002012 +n56001003002 +n56001003001 +n56001003003 +n56001003004 +n56001003005 +n56001003006 +n56001003007 +n56001003008 +n56001003009 +n56001003010 +n56001003011 +n56001003012 +n56001003013 +n56001003014 +n56001003015 +n56001003016 +n56001003017 +n56001003018 +n56001004001 +n56001004002 +n56001004003 +n56001004004 +n56001004005 +n56001004006 +n56001004007 +n56001004008 +n56001004009 +n56001004010 +n56001004011 +n56001004012 +n56001004013 +n56001004014 +n56001004015 +n56001004016 +n56001004017 +n56001004018 +n56001005001 +n56001005002 +n56001005003 +n56001005004 +n56001005005 +n56001005006 +n56001005007 +n56001005008 +n56001005009 +n56001005010 +n56001005011 +n56001005012 +n56001005013 +n56001005014 +n56001005015 +n56001005016 +n56001005017 +n56001005018 +n56001005019 +n56001006001 +n56001006002 +n56001006003 +n56001006004 +n56001006005 +n56001006006 +n56001006007 +n56001006009 +n56001006008 +n56001006010 +n56001006011 +n56001006012 +n56001006013 +n56001006014 +n56001006015 +n56001006016 +n56001007002 +n56001007001 +n56001007003 +n56001007004 +n56001007006 +n56001007007 +n56001007008 +n56001007009 +n56001007005 +n56001007010 +n56001007011 +n56001007012 +n56001007013 +n56001007014 +n56001007015 +n56001007016 +n56001007017 +n56001007018 +n56001007019 +n56001008001 +n56001008002 +n56001008003 +n56001008004 +n56001008005 +n56001008006 +n56001008007 +n56001009001 +n56001009002 +n56001009003 +n56001009004 +n56001009005 +n56001009006 +n56001009007 +n56001009008 +n56001009010 +n56001009009 +n56001009011 +n56001009012 +n56001009013 +n56001009014 +n56001009015 +n56001009016 +n56001009017 +n56001009018 +n56001009019 +n56001009020 +n56001009021 +n56001010002 +n56001010001 +n56001010003 +n56001010004 +n56001010005 +n56001010006 +n56001010007 +n56001010008 +n56001010009 +n56001010010 +n56001010011 +n56001010012 +n56001011001 +n56001011003 +n56001011002 +n56001011004 +n56001011005 +n56001011006 +n56001011007 +n56001011008 +n56001011009 +n56001011010 +n56001011011 +n56001011012 +n56001011013 +n56001011014 +n56001012001 +n56001012002 +n56001012003 +n56001012004 +n56001012005 +n56001012006 +n56001012007 +n56001012008 +n56001012009 +n56001012010 +n56001012011 +n56001012012 +n56001012013 +n56001012014 +n56001013001 +n56001013002 +n56001013003 +n56001013004 +n56001013005 +n56001013006 +n56001013007 +n56001013008 +n56001013009 +n56001013010 +n56001013011 +n56001013012 +n56001013013 +n56001013014 +n56001013015 +n56001013016 +n56001014001 +n56001014002 +n56001014003 +n56001014004 +n56001014005 +n56001014006 +n56001014007 +n56001014008 +n56001014009 +n56001014010 +n56001015001 +n56001015002 +n56001015003 +n56001015004 +n56001015006 +n56001015005 +n56001015007 +n56001015008 +n56001015009 +n56001015010 +n56001015011 +n56001015012 +n56001015013 +n56001015014 +n56001015015 +n56001015016 +n56001015017 +n56001015018 +n56001015019 +n56001015020 +n56001016001 +n56001016003 +n56001016002 +n56001016005 +n56001016004 +n56001016006 +n56001016007 +n56001016009 +n56001016008 +n56001016010 +n56001016011 +n56001016012 +n56001016013 +n56001016014 +n56001016015 +n56001016016 +n56001016017 +n56002001002 +n56002001001 +n56002001003 +n56002001004 +n56002001005 +n56002001006 +n56002001007 +n56002001008 +n56002002001 +n56002002003 +n56002002002 +n56002002004 +n56002002005 +n56002002006 +n56002002007 +n56002002008 +n56002002009 +n56002002010 +n56002002011 +n56002002012 +n56002003001 +n56002003002 +n56002003003 +n56002003004 +n56002003005 +n56002003006 +n56002003007 +n56002003008 +n56002003009 +n56002003010 +n56002003011 +n56002003012 +n56002004001 +n56002004002 +n56002004003 +n56002004004 +n56002004006 +n56002004005 +n56002004007 +n56002005001 +n56002005002 +n56002005003 +n56002005004 +n56002005005 +n56002005006 +n56002005007 +n56002005008 +n56002005009 +n56002005010 +n56002005011 +n56002005012 +n56002005013 +n56002005014 +n56002005015 +n56002006001 +n56002006002 +n56002006003 +n56002006004 +n56002006005 +n56002007001 +n56002007002 +n56002007003 +n56002007004 +n56002007005 +n56002007006 +n56002007007 +n56002007008 +n56002007009 +n56002007010 +n56002007011 +n56002007012 +n56002008001 +n56002008002 +n56002008003 +n56002008004 +n56002008005 +n56002008006 +n56002008007 +n56002008008 +n56002008010 +n56002008011 +n56002008012 +n56002008013 +n56002008009 +n56002008014 +n56002009001 +n56002009002 +n56002009003 +n56002009004 +n56002009005 +n56002009006 +n56002009007 +n56002009008 +n56002009009 +n56002009010 +n56002010001 +n56002010002 +n56002010003 +n56002010004 +n56002010005 +n56002010007 +n56002010006 +n56002010008 +n56002010009 +n56002010010 +n56002010011 +n56002010012 +n56002010013 +n56002010014 +n56002010015 +n56002010016 +n56002010017 +n56002010018 +n56002011002 +n56002011001 +n56002011003 +n56002011004 +n56002011005 +n56002011006 +n56002011007 +n56002011008 +n56002011009 +n56002012001 +n56002012002 +n56002012003 +n56002012004 +n56002012005 +n56002012006 +n56002012007 +n56002012008 +n56002012009 +n56002012010 +n56002012011 +n56002012012 +n56002012013 +n56002012014 +n56002012015 +n56002012016 +n56002012017 +n56002012018 +n56002012019 +n56002012020 +n56002013001 +n56002013002 +n56002013003 +n56002013004 +n56002013005 +n56002013006 +n56002013007 +n56002013008 +n56002013009 +n56002013010 +n56002013011 +n56002013012 +n56002013013 +n56002013014 +n56002013015 +n56002013016 +n56002014001 +n56002014002 +n56002014003 +n56002014004 +n56002014005 +n56002014006 +n56002014007 +n56002014008 +n56002014009 +n56002014010 +n56002014011 +n56002014012 +n56002014013 +n56002014014 +n56002014015 +n56002014016 +n56002014017 +n56002014018 +n56002014019 +n56002015001 +n56002015002 +n56002015003 +n56002015004 +n56002015005 +n56002015006 +n56002015007 +n56002015008 +n56002015009 +n56002015010 +n56002015011 +n56002015012 +n56003001001 +n56003001002 +n56003001003 +n56003001004 +n56003001005 +n56003001006 +n56003001007 +n56003001008 +n56003001009 +n56003001010 +n56003001011 +n56003001012 +n56003002001 +n56003002002 +n56003002003 +n56003002004 +n56003002005 +n56003002006 +n56003002008 +n56003002007 +n56003002009 +n56003002010 +n56003002011 +n56003003002 +n56003003001 +n56003003003 +n56003003004 +n56003003005 +n56003003006 +n56003003007 +n56003003008 +n56003003009 +n56003003010 +n56003003011 +n56003003012 +n56003003013 +n56003003014 +n56003003015 +n56003003016 +n56003003017 +n56003003018 +n56003003019 +n56003003020 +n56003003021 +n56003004002 +n56003004001 +n56003004003 +n56003004004 +n56003004005 +n56003004006 +n56003004007 +n56003004009 +n56003004010 +n56003004011 +n56003004012 +n56003004008 +n56003005001 +n56003005002 +n56003005003 +n56003005004 +n56003005005 +n56003005006 +n56003005007 +n56003005008 +n56003005009 +n56003005010 +n56003005011 +n56003005012 +n56003005013 +n56003005014 +n56003005015 +n56003005016 +n56003005017 +n56003005018 +n56003005019 +n56003005020 +n56003005021 +n56003005022 +n56003005023 +n56003006001 +n56003006002 +n56003006003 +n56003006004 +n56003006005 +n56003006006 +n56003006007 +n56003006008 +n56003006009 +n56003006010 +n56003006011 +n56003007001 +n56003007002 +n56003007003 +n56003007004 +n56003007005 +n56003007006 +n56003007007 +n56003007008 +n56003007009 +n56003007010 +n56003007011 +n56003008001 +n56003008002 +n56003008003 +n56003008004 +n56003008005 +n56003008006 +n56003008007 +n56003008008 +n56003008009 +n56003008010 +n56003008011 +n56003008012 +n56003008013 +n56003008014 +n56003008015 +n56003008016 +n56003008017 +n56003008018 +n56003008019 +n56003008020 +n56003008021 +n56003008022 +n56003008023 +n56003008024 +n56003009002 +n56003009001 +n56003009003 +n56003009004 +n56003009005 +n56003009006 +n56003009007 +n56003009008 +n56003009009 +n56003009010 +n56003009011 +n56003009013 +n56003009012 +n56003009014 +n56003009015 +n56003009016 +n56003010001 +n56003010002 +n56003010003 +n56003010004 +n56003010005 +n56003010006 +n56003010007 +n56003010008 +n56003011001 +n56003011002 +n56003011004 +n56003011005 +n56003011003 +n56003011006 +n56003011007 +n56003011008 +n56003011009 +n56003012001 +n56003012002 +n56003012004 +n56003012005 +n56003012003 +n56003012006 +n56003012007 +n56003012008 +n56003012009 +n56003012010 +n56003012011 +n56003012012 +n56003012013 +n56003012015 +n56003012014 +n56003012017 +n56003012016 +n56003013001 +n56003013002 +n56003013003 +n56003013004 +n56003013005 +n56003013006 +n56003013007 +n56003013008 +n56003013009 +n56003013010 +n56003013011 +n56003014002 +n56003014001 +n56003014003 +n56003014004 +n56003014005 +n56003014006 +n56003014007 +n56003014008 +n56003014009 +n56003014010 +n56003014011 +n56003014012 +n56003014013 +n56003014014 +n56003014015 +n56003014016 +n56003015001 +n56003015002 +n56003015003 +n56003015004 +n56003015005 +n56003015006 +n56003015007 +n56003015008 +n56003015009 +n56003015010 +n56003015011 +n56003015012 +n56003015013 +n56003015014 +n56003015015 +n56003015016 +n56003015017 +n57001001001 +n57001001002 +n57001001003 +n57001001004 +n57001001005 +n57001001006 +n57001001007 +n57001001008 +n57001001009 +n57001001010 +n57001001011 +n57001001012 +n57001001013 +n57001001014 +n57001002001 +n57001002002 +n57001002003 +n57001002004 +n57001002005 +n57001002006 +n57001002007 +n57001002008 +n57001002009 +n57001002010 +n57001002011 +n57001002012 +n57001002013 +n57001002014 +n57001002015 +n57001003002 +n57001003001 +n57001003003 +n57001003004 +n57001003005 +n57001003006 +n57001003007 +n57001003008 +n57001003009 +n57001003010 +n57001003011 +n57001003012 +n57001004001 +n57001004002 +n57001004003 +n57001004004 +n57001004005 +n57001004006 +n57001004007 +n57001004008 +n57001004009 +n57001004010 +n57001004011 +n57001004012 +n57001005001 +n57001005002 +n57001005003 +n57001005004 +n57001005005 +n57001005006 +n57001005007 +n57001005008 +n57001005009 +n57001005010 +n57001005011 +n57001005012 +n57001005013 +n57001005014 +n57001005015 +n57001005016 +n57001005017 +n57001005018 +n57001006001 +n57001006002 +n57001006003 +n57001006004 +n57001006005 +n57001006006 +n57001006007 +n57001006008 +n57001006009 +n57001006010 +n57001006011 +n57001006012 +n57001006013 +n57001006014 +n57001006015 +n57001006016 +n57001006017 +n57001007002 +n57001007001 +n57001007003 +n57001007005 +n57001007006 +n57001007004 +n57001007007 +n57001007008 +n57001007009 +n57001007010 +n57001007011 +n57001007012 +n57001007013 +n57001007014 +n57001007015 +n57001007016 +n57001007017 +n57001007018 +n57001007019 +n57001008001 +n57001008002 +n57001008003 +n57001008004 +n57001008005 +n57001008006 +n57001008007 +n57001008008 +n57001008009 +n57001008010 +n57001009001 +n57001009002 +n57001009003 +n57001009004 +n57001009005 +n57001009006 +n57001009007 +n57001009008 +n57001009009 +n57001009010 +n57001009012 +n57001009011 +n57001009013 +n57001009014 +n57001009015 +n57001009016 +n57001010001 +n57001010002 +n57001010003 +n57001010004 +n57001010005 +n57001010006 +n57001010008 +n57001010009 +n57001010010 +n57001010011 +n57001010007 +n57001010012 +n57001011001 +n57001011002 +n57001011003 +n57001011004 +n57001011006 +n57001011005 +n57001011007 +n57001011008 +n57001011009 +n57001011010 +n57001011011 +n57001012002 +n57001012003 +n57001012001 +n57001012004 +n57001012005 +n57001012006 +n57001012007 +n57001012008 +n57001012009 +n57001013002 +n57001013003 +n57001013001 +n57001013004 +n57001013005 +n57001013006 +n57001013007 +n57001013008 +n57001013009 +n57001013010 +n57001013011 +n57001013012 +n57001013013 +n57001013014 +n57001013015 +n57001013016 +n57001014002 +n57001014001 +n57001014003 +n57001014004 +n57001014005 +n57001014006 +n57001014008 +n57001014007 +n57001014009 +n57001014010 +n57001014011 +n57001014012 +n57001014013 +n57001014014 +n57001014015 +n57001014016 +n57001014017 +n57001014018 +n57001014019 +n57001014020 +n57001015002 +n57001015001 +n57001015003 +n57001015004 +n57001015005 +n57001015006 +n57001015007 +n57001015008 +n57001015009 +n57001015010 +n57001015011 +n57001016001 +n57001016002 +n57001016003 +n57001016004 +n57001016005 +n57001016006 +n57001016007 +n57001016008 +n57001016009 +n57001016010 +n57001016012 +n57001016011 +n57001016013 +n57001016014 +n57001016015 +n57001016016 +n57001016017 +n57001016018 +n57001016019 +n57001016020 +n57001017002 +n57001017001 +n57001017003 +n57001017004 +n57001017005 +n57001017006 +n57001017007 +n57001017008 +n57001017009 +n57001018002 +n57001018001 +n57001018003 +n57001018005 +n57001018004 +n57001018006 +n57001018007 +n57001018008 +n57001018009 +n57001018010 +n57001019001 +n57001019002 +n57001019003 +n57001019004 +n57001019005 +n57001019006 +n57001019007 +n57001019008 +n57001019009 +n57001019010 +n57001019011 +n57001019012 +n57001019013 +n57001019014 +n57001019015 +n57001019016 +n57001019017 +n57001020001 +n57001020002 +n57001020003 +n57001020004 +n57001020005 +n57001020006 +n57001020007 +n57001020008 +n57001020009 +n57001020010 +n57001020011 +n57001020012 +n57001020013 +n57001021001 +n57001021002 +n57001021003 +n57001021004 +n57001021005 +n57001021006 +n57001021007 +n57001021008 +n57001021009 +n57001021010 +n57001021011 +n57001021012 +n57001021013 +n57001022002 +n57001022001 +n57001022003 +n57001022004 +n57001022005 +n57001022006 +n57001022008 +n57001022007 +n57001022009 +n57001022010 +n57001022011 +n57001022012 +n57001022013 +n57001022014 +n57001022015 +n57001023001 +n57001023002 +n57001023003 +n57001023004 +n57001023005 +n57001023006 +n57001023007 +n57001023008 +n57001023009 +n57001024001 +n57001024002 +n57001024003 +n57001024004 +n57001024005 +n57001024006 +n57001024007 +n57001025001 +n57001025002 +n57001025003 +n57001025004 +n57001025005 +n57001025006 +n57001025007 +n57001025008 +n57001025009 +n57001025010 +n58001001001 +n58001001002 +n58001001003 +n58001001004 +n58001001007 +n58001001008 +n58001001009 +n58001001010 +n58001001011 +n58001001012 +n58001001005 +n58001001006 +n58001002001 +n58001002002 +n58001002003 +n58001002004 +n58001002005 +n58001002006 +n58001002007 +n58001002008 +n58001002009 +n58001002010 +n58001002011 +n58001002012 +n58001002013 +n58001002014 +n58001002015 +n58001002016 +n58001002017 +n58001002018 +n58001002019 +n58001003001 +n58001003002 +n58001003003 +n58001003004 +n58001003005 +n58001003006 +n58001003007 +n58001003008 +n58001003009 +n58001003010 +n58001003012 +n58001003011 +n58001003013 +n58001003014 +n58001003015 +n58001003016 +n58001003017 +n58001003018 +n58001003019 +n58001003020 +n58001003021 +n58001003022 +n58001003023 +n58001003024 +n58001003025 +n58001003026 +n58001003027 +n58001003028 +n58001003029 +n58001003030 +n58001004001 +n58001004002 +n58001004003 +n58001004004 +n58001004005 +n58001004006 +n58001004007 +n58001004011 +n58001004008 +n58001004009 +n58001004010 +n58001005002 +n58001005001 +n58001005005 +n58001005006 +n58001005003 +n58001005004 +n58001005007 +n58001005008 +n58001005009 +n58001005010 +n58001005011 +n58001005012 +n58001005013 +n58001005014 +n58001005015 +n58001005016 +n58001005017 +n58001005018 +n58001005019 +n58001005020 +n58001005021 +n58001005022 +n58001005023 +n58001005024 +n58001005025 +n58001005026 +n58001005027 +n58001006002 +n58001006001 +n58001006003 +n58001006004 +n58001006005 +n58001006006 +n58001006007 +n58001006008 +n58001006009 +n58001006010 +n58001006011 +n58001006012 +n58001006013 +n58001006014 +n58001006015 +n58001006016 +n58001007001 +n58001007003 +n58001007002 +n58001007004 +n58001007005 +n58001007006 +n58001007007 +n58001007008 +n58001007009 +n58001007010 +n58001007011 +n58001007012 +n58001007013 +n58001007014 +n58001007015 +n58001007016 +n58001007017 +n58001007018 +n58001008002 +n58001008001 +n58001008003 +n58001008004 +n58001008008 +n58001008009 +n58001008005 +n58001008006 +n58001008007 +n58001008010 +n58001008011 +n58001008012 +n58001008013 +n58001008014 +n58001008015 +n58001008016 +n58001008017 +n58001008018 +n58001008019 +n58001008020 +n58001008021 +n58001008022 +n58001008023 +n58001009001 +n58001009002 +n58001009003 +n58001009004 +n58001009005 +n58001009006 +n58001009007 +n58001009008 +n58001009009 +n58001009010 +n58001009011 +n58001009012 +n58001009013 +n58001009014 +n58001009015 +n58001009016 +n58001009017 +n58001009018 +n58001009019 +n58001009020 +n58001010001 +n58001010005 +n58001010002 +n58001010003 +n58001010004 +n58001010006 +n58001010007 +n58001010008 +n58001010009 +n58001010010 +n58001010011 +n58001010012 +n58001010013 +n58001010014 +n58001010015 +n58001010016 +n58001011001 +n58001011002 +n58001011004 +n58001011003 +n58001011005 +n58001011006 +n58001011007 +n58001011010 +n58001011008 +n58001011009 +n58001012001 +n58001012002 +n58001012003 +n58001012004 +n58001012005 +n58001012006 +n58001012007 +n58001012008 +n58001012009 +n58001012011 +n58001012010 +n58001012012 +n58001012013 +n58001012014 +n58001012015 +n58001012016 +n58001012017 +n58001012018 +n58001012019 +n58001012020 +n58001013003 +n58001013001 +n58001013002 +n58001013004 +n58001013005 +n58001013006 +n58001013007 +n58001013008 +n58001013009 +n58001013010 +n58001013011 +n58001013012 +n58001013013 +n58001013014 +n58001013015 +n58001013016 +n58001013017 +n58001013018 +n58001013019 +n58001013020 +n58001013021 +n58001014001 +n58001014002 +n58001014003 +n58001014004 +n58001014005 +n58001014006 +n58001014007 +n58001014008 +n58001014009 +n58001014010 +n58001014011 +n58001014012 +n58001014013 +n58002001001 +n58002001002 +n58002001003 +n58002001004 +n58002001005 +n58002001006 +n58002001007 +n58002001008 +n58002001009 +n58002001010 +n58002001011 +n58002002002 +n58002002001 +n58002002003 +n58002002004 +n58002002005 +n58002002006 +n58002002007 +n58002002008 +n58002002009 +n58002002010 +n58002002011 +n58002002012 +n58002002013 +n58002002014 +n58002002015 +n58002002016 +n58002002017 +n58002003001 +n58002003002 +n58002003003 +n58002003005 +n58002003004 +n58002003006 +n58002003007 +n58002003008 +n58002003009 +n58002003010 +n58002003011 +n58002003012 +n58002003013 +n58002003014 +n58002003015 +n58002003016 +n58002003017 +n58002003018 +n58002003019 +n58002004001 +n58002004002 +n58002004003 +n58002004005 +n58002004004 +n58002004006 +n58002004007 +n58002004008 +n58002004009 +n58002004010 +n58002004011 +n58002004012 +n58002004013 +n58002004014 +n58002004015 +n58002004016 +n58002004017 +n58002004018 +n58002005002 +n58002005001 +n58002005003 +n58002005004 +n58002005005 +n58002005006 +n58002005007 +n58002005008 +n58002005009 +n58002005010 +n58002005011 +n58002006002 +n58002006001 +n58002006003 +n58002006004 +n58002006005 +n58002006006 +n58002006007 +n58002006008 +n58002006009 +n58002006010 +n58002006011 +n58002006012 +n58002006013 +n58002006014 +n58002006015 +n58002006016 +n58002006017 +n58002007001 +n58002007002 +n58002007003 +n58002007004 +n58002007005 +n58002007006 +n58002007007 +n58002007008 +n58002007009 +n58002007010 +n58002007011 +n58002008001 +n58002008002 +n58002008003 +n58002008004 +n58002008005 +n58002008006 +n58002008009 +n58002008007 +n58002008008 +n58002008010 +n58002008011 +n58002008012 +n58002008013 +n58002008014 +n58002008015 +n58002008016 +n58002008017 +n58002008019 +n58002008018 +n58002008020 +n58002008021 +n58002008022 +n58002008023 +n58002008024 +n58002008025 +n58002009002 +n58002009008 +n58002009001 +n58002009003 +n58002009004 +n58002009005 +n58002009006 +n58002009007 +n58002009009 +n58002009010 +n58002009011 +n58002009012 +n58002009013 +n58002009014 +n58002009015 +n58002009016 +n58002009017 +n58002009018 +n58002009019 +n58002009020 +n58002009021 +n58002009022 +n58002009023 +n58002009024 +n58002009025 +n58002010002 +n58002010001 +n58002010003 +n58002010004 +n58002010005 +n58002010006 +n58002010007 +n58002010008 +n58002010009 +n58002010010 +n58002010011 +n58002010012 +n58002010013 +n58002010014 +n58002010015 +n58002010016 +n58002010017 +n58002010018 +n58002010019 +n58002010020 +n58002010021 +n58002010022 +n58002010023 +n58002010024 +n58002010025 +n58002011003 +n58002011002 +n58002011001 +n58002011004 +n58002011005 +n58002011006 +n58002011007 +n58002011008 +n58002011009 +n58002011010 +n58002011011 +n58002011012 +n58002011013 +n58002011014 +n58002011015 +n58002011016 +n58002011017 +n58002011018 +n58002012001 +n58002012002 +n58002012003 +n58002012004 +n58002012005 +n58002012006 +n58002012007 +n58002012008 +n58002012009 +n58002012010 +n58002012011 +n58002012012 +n58002012013 +n58002013001 +n58002013002 +n58002013003 +n58002013004 +n58002013005 +n58002013006 +n58002013007 +n58002013008 +n58002013009 +n58002013010 +n58002013011 +n58002013012 +n58002013013 +n58002013014 +n58002013015 +n58002013016 +n58002013017 +n58002013018 +n58002013019 +n58002014002 +n58002014001 +n58002014003 +n58002014004 +n58002014005 +n58002014006 +n58002014007 +n58002014008 +n58002014009 +n58002014010 +n58002014011 +n58002014012 +n58002014013 +n58002014014 +n58002014015 +n58002014016 +n58002014017 +n58002014018 +n58002014019 +n58002014020 +n58002014021 +n58002014022 +n58002014024 +n58002014025 +n58002014023 +n58002014026 +n58002014027 +n58002014028 +n58002014029 +n58002015001 +n58002015002 +n58002015003 +n58002015004 +n58002015005 +n58002015006 +n58002015007 +n58002015008 +n58002015009 +n58002015010 +n58002015011 +n58002015013 +n58002015012 +n58002016002 +n58002016001 +n58002016003 +n58002016004 +n58002016005 +n58002016006 +n58002016007 +n58002016008 +n58002016009 +n58002017001 +n58002017002 +n58002017003 +n58002017004 +n58002017005 +n58002017006 +n58002017007 +n58002017008 +n58002017010 +n58002017009 +n58002017011 +n58002017012 +n58002017013 +n58002017014 +n58002017015 +n58002017016 +n58002017017 +n58002017018 +n58002017019 +n58002017020 +n58002017021 +n58002017022 +n58002017023 +n58002017024 +n58002018003 +n58002018001 +n58002018002 +n58002018004 +n58002018005 +n58002018006 +n58002018007 +n58002018008 +n58002018009 +n58002018010 +n58003001001 +n58003001002 +n58003001003 +n58003001004 +n58003001005 +n58003001006 +n58003001007 +n58003001008 +n58003001009 +n58003001010 +n58003001011 +n58003001012 +n58003001013 +n58003001014 +n58003001015 +n58003002001 +n58003002002 +n58003002003 +n58003002004 +n58003002005 +n58003002006 +n58003002007 +n58003002008 +n58003002009 +n58003002010 +n58003002011 +n58003002012 +n58003002013 +n58003003002 +n58003003001 +n58003003004 +n58003003003 +n58003003005 +n58003003006 +n58003003007 +n58003003008 +n58003003009 +n58003003010 +n58003003011 +n58003003012 +n58003003013 +n58003003014 +n58003003015 +n58003003016 +n58003003017 +n58003004002 +n58003004001 +n58003004003 +n58003004004 +n58003004005 +n58003004006 +n58003004008 +n58003004007 +n58003004009 +n58003004010 +n58003004011 +n58003005001 +n58003005003 +n58003005002 +n58003005004 +n58003005005 +n58003005006 +n58003005007 +n58003005008 +n58003005009 +n58003005010 +n58003005011 +n58003005012 +n58003005013 +n58003005014 +n58003005015 +n58003006002 +n58003006001 +n58003006003 +n58003006004 +n58003006005 +n58003006006 +n58003006007 +n58003006008 +n58003006009 +n58003006010 +n58003006011 +n58003006012 +n58003006013 +n58003006014 +n58003006015 +n58003006016 +n58003006017 +n58003006018 +n58003006019 +n58003006020 +n58003006021 +n58003006022 +n58003006023 +n58003006024 +n58003007001 +n58003007002 +n58003007003 +n58003007004 +n58003007005 +n58003007006 +n58003007007 +n58003007009 +n58003007008 +n58003007010 +n58003007011 +n58003007012 +n58003007013 +n58003008001 +n58003008002 +n58003008003 +n58003008004 +n58003008005 +n58003008006 +n58003008007 +n58003008008 +n58003008009 +n58003008010 +n58003008011 +n58003008012 +n58003008013 +n58003008014 +n58003008015 +n58003008016 +n58003008017 +n58003009001 +n58003009002 +n58003009003 +n58003009004 +n58003009005 +n58003009006 +n58003009007 +n58003009008 +n58003009009 +n58003009010 +n58003009011 +n58003009012 +n58003010001 +n58003010002 +n58003010003 +n58003010004 +n58003010005 +n58003010006 +n58003010007 +n58003010008 +n58003010009 +n58003010010 +n58003010011 +n58003010012 +n58003010013 +n58003010015 +n58003010014 +n58003010016 +n58003010017 +n58003010018 +n58003010019 +n58003010020 +n58003011001 +n58003011002 +n58003011003 +n58003011004 +n58003011005 +n58003011006 +n58003011007 +n58003011008 +n58003011009 +n58003011010 +n58003011011 +n58003011012 +n58003012001 +n58003012002 +n58003012003 +n58003012004 +n58003012005 +n58003012006 +n58003012007 +n58003012008 +n58003012009 +n58003012010 +n58003012011 +n58003012012 +n58003012013 +n58003012014 +n58003012015 +n58003012016 +n58003012017 +n58003013001 +n58003013002 +n58003013003 +n58003013004 +n58003013005 +n58003013006 +n58003013007 +n58003013008 +n58003013009 +n58003013010 +n58003013011 +n58003013012 +n58003013013 +n58003013014 +n58003013015 +n58003013016 +n58003013017 +n58003013018 +n58003013019 +n58003013020 +n58003014002 +n58003014001 +n58003014003 +n58003014004 +n58003014005 +n58003014006 +n58003014007 +n58003014008 +n58003014009 +n58003014010 +n58003014011 +n58003014012 +n58003014013 +n58003014014 +n58003015001 +n58003015002 +n58003015003 +n58003015005 +n58003015004 +n58003015006 +n58003015007 +n58003015008 +n58003015009 +n58003015010 +n58003015011 +n58003015012 +n58003015013 +n58003015014 +n58003015015 +n58003015016 +n58003015017 +n58003015018 +n58003016002 +n58003016001 +n58003016003 +n58003016004 +n58003016005 +n58003016006 +n58003016007 +n58003016008 +n58003016009 +n58003016010 +n58003016011 +n58003016012 +n58003016013 +n58003017002 +n58003017001 +n58003017003 +n58003017004 +n58003017005 +n58003017006 +n58003017007 +n58003017008 +n58003017009 +n58003017010 +n58003017011 +n58003017012 +n58003017013 +n58003017014 +n58003017015 +n58003018002 +n58003018001 +n58003018003 +n58003018004 +n58003018005 +n58003018006 +n58003018007 +n58003018008 +n58003018009 +n58003018010 +n58003018011 +n58003018012 +n58003018013 +n58003019001 +n58003019002 +n58003019003 +n58003019004 +n58003019005 +n58003019006 +n58003019007 +n58003019008 +n58004001002 +n58004001001 +n58004001003 +n58004001004 +n58004001005 +n58004001006 +n58004001007 +n58004001008 +n58004001009 +n58004001010 +n58004001011 +n58004001012 +n58004001013 +n58004001014 +n58004001015 +n58004001016 +n58004002002 +n58004002001 +n58004002003 +n58004002004 +n58004002005 +n58004002006 +n58004002007 +n58004002008 +n58004002009 +n58004002010 +n58004002011 +n58004002012 +n58004002013 +n58004002014 +n58004002015 +n58004002016 +n58004002017 +n58004002018 +n58004002019 +n58004002020 +n58004003002 +n58004003001 +n58004003003 +n58004003004 +n58004003005 +n58004003006 +n58004003007 +n58004003008 +n58004003009 +n58004003010 +n58004003011 +n58004003012 +n58004003013 +n58004003014 +n58004003015 +n58004003016 +n58004003017 +n58004003018 +n58004003019 +n58004003020 +n58004003021 +n58004003022 +n58004003023 +n58004003024 +n58004003025 +n58004003026 +n58004003027 +n58004003028 +n58004004002 +n58004004001 +n58004004003 +n58004004004 +n58004004005 +n58004004006 +n58004004007 +n58004004008 +n58004004009 +n58004004010 +n58004004011 +n58004004012 +n58004004013 +n58004004014 +n58004004015 +n58004004016 +n58004004017 +n58004004018 +n58004004019 +n58004004020 +n58004004021 +n58004005001 +n58004005002 +n58004005003 +n58004005004 +n58004005005 +n58004005006 +n58004005007 +n58004005008 +n58004005009 +n58004005010 +n58004006002 +n58004006001 +n58004006003 +n58004006004 +n58004006005 +n58004006006 +n58004006007 +n58004006008 +n58004006009 +n58004006010 +n58004006011 +n58004006012 +n58004006013 +n58004006014 +n58004006015 +n58004007001 +n58004007003 +n58004007002 +n58004007004 +n58004007005 +n58004007006 +n58004007007 +n58004007008 +n58004007009 +n58004007010 +n58004007011 +n58004007012 +n58004007013 +n58004007015 +n58004007014 +n58004007016 +n58004007017 +n58004007018 +n58004007019 +n58004007020 +n58004007021 +n58004007022 +n58004007023 +n58004007024 +n58004008002 +n58004008001 +n58004008003 +n58004008004 +n58004008005 +n58004008007 +n58004008006 +n58004008008 +n58004008009 +n58004008013 +n58004008010 +n58004008011 +n58004008012 +n58004009001 +n58004009002 +n58004009003 +n58004009004 +n58004009005 +n58004009006 +n58004009007 +n58004010002 +n58004010001 +n58004010003 +n58004010004 +n58004010005 +n58004010006 +n58004010007 +n58004010008 +n58004010009 +n58004010010 +n58004010011 +n58004010012 +n58004010013 +n58004010014 +n58004010015 +n58004010016 +n58004010017 +n58004010018 +n58004010019 +n58004010020 +n58004011002 +n58004011001 +n58004011003 +n58004011004 +n58004011005 +n58004011006 +n58004011007 +n58004011008 +n58004011009 +n58004011010 +n58004011011 +n58004011012 +n58004011014 +n58004011016 +n58004011017 +n58004011013 +n58004011015 +n58004012002 +n58004012003 +n58004012004 +n58004012005 +n58004012006 +n58004012001 +n58004012007 +n58004012008 +n58004012009 +n58004012010 +n58004012011 +n58004012012 +n58004012013 +n58004012014 +n58004012015 +n58004012016 +n58004012017 +n58004012018 +n58004012019 +n58004012020 +n58004012021 +n58004012023 +n58004012022 +n58004012024 +n58004012025 +n58004012026 +n58004012027 +n58004012028 +n58004012029 +n58004012030 +n58004012031 +n58004013001 +n58004013002 +n58004013003 +n58004013004 +n58004013005 +n58004013006 +n58004013007 +n58004013009 +n58004013008 +n58004013010 +n58004013011 +n58004013012 +n58004013013 +n58004013014 +n58004013015 +n58004013016 +n58004013017 +n58004013018 +n58004013019 +n58004013020 +n58004014002 +n58004014001 +n58004014003 +n58004014004 +n58004014005 +n58004014006 +n58004014007 +n58004014008 +n58004014009 +n58004014010 +n58004014011 +n58004014012 +n58004014013 +n58004014014 +n58004014015 +n58004015002 +n58004015003 +n58004015004 +n58004015001 +n58004015005 +n58004015006 +n58004015007 +n58004015008 +n58004015009 +n58004015010 +n58004015012 +n58004015011 +n58004015013 +n58004015014 +n58004015015 +n58004015016 +n58004015017 +n58004015018 +n58004016002 +n58004016001 +n58004016003 +n58004016004 +n58004016005 +n58004016006 +n58004016007 +n58004016008 +n58004016009 +n58004016010 +n58004016011 +n58004016012 +n58004016013 +n58004016014 +n58004016015 +n58004016016 +n58004016017 +n58005001002 +n58005001001 +n58005001003 +n58005001004 +n58005001005 +n58005001006 +n58005001007 +n58005001008 +n58005001009 +n58005001010 +n58005001011 +n58005001012 +n58005001013 +n58005001014 +n58005001015 +n58005001017 +n58005001016 +n58005001018 +n58005001019 +n58005001020 +n58005001021 +n58005002002 +n58005002001 +n58005002003 +n58005002004 +n58005002005 +n58005002006 +n58005002007 +n58005002008 +n58005002009 +n58005002010 +n58005002011 +n58005003001 +n58005003002 +n58005003003 +n58005003004 +n58005003005 +n58005003006 +n58005003007 +n58005003008 +n58005003009 +n58005003010 +n58005003011 +n58005003012 +n58005003013 +n58005003014 +n58005003015 +n58005004001 +n58005004002 +n58005004003 +n58005004004 +n58005004005 +n58005004006 +n58005004007 +n58005004008 +n58005004009 +n58005004010 +n58005004011 +n58005004012 +n58005004013 +n58005004014 +n58005004015 +n58005005001 +n58005005002 +n58005005003 +n58005005004 +n58005005005 +n58005005006 +n58005005007 +n58005005008 +n58005005009 +n58005005010 +n58005005011 +n58005005012 +n58005005013 +n58005005014 +n58005005015 +n58005005016 +n58005005017 +n58005005018 +n58005005019 +n58005005020 +n58005005021 +n58005005022 +n58005006001 +n58005006002 +n58005006003 +n58005006004 +n58005006005 +n58005006006 +n58005006007 +n58005006008 +n58005006009 +n58005006010 +n58005006011 +n58005006012 +n58005006013 +n58005006014 +n58005007001 +n58005007002 +n58005007003 +n58005007004 +n58005007005 +n58005007006 +n58005007007 +n58005007009 +n58005007008 +n58005007010 +n58005007011 +n58005007012 +n58005007013 +n58005007014 +n58005007015 +n58005007016 +n58005007017 +n58005007018 +n58005007019 +n58005007020 +n58005007021 +n58005007022 +n58005007023 +n58005007024 +n58005007025 +n58005007026 +n58005007027 +n58005007028 +n58005007029 +n58005008001 +n58005008002 +n58005008003 +n58005008004 +n58005008005 +n58005008006 +n58005008007 +n58005008008 +n58005008009 +n58005009001 +n58005009002 +n58005009003 +n58005009004 +n58005009005 +n58005009006 +n58005009007 +n58005009008 +n58005009009 +n58005009010 +n58005010001 +n58005010002 +n58005010003 +n58005010004 +n58005010005 +n58005010006 +n58005010007 +n58005010008 +n58005010009 +n58005011001 +n58005011002 +n58005011003 +n58005011004 +n58005011005 +n58005011006 +n58005011007 +n58005011008 +n58005011009 +n58005011010 +n58005011011 +n58005011012 +n58005011013 +n58005011014 +n58005012002 +n58005012001 +n58005012003 +n58005012004 +n58005012005 +n58005012006 +n58005012007 +n58005012008 +n58005012009 +n58005012011 +n58005012010 +n58005012012 +n58005012013 +n58005012014 +n58005012015 +n58005012016 +n58005012017 +n58005012018 +n58005012019 +n58005012020 +n58005012021 +n58005012022 +n58005012023 +n58005012024 +n58005012025 +n58005012027 +n58005012026 +n58005012028 +n58005012029 +n58005012030 +n58005012031 +n58005013002 +n58005013001 +n58005013003 +n58005013004 +n58005013005 +n58005013006 +n58005013007 +n58005013008 +n58005013010 +n58005013009 +n58005013011 +n58005014002 +n58005014003 +n58005014004 +n58005014005 +n58005014006 +n58005014001 +n58005014007 +n58005014008 +n58005014009 +n58005014010 +n58005014011 +n58005014012 +n58005014013 +n58005014014 +n58005014015 +n58005014016 +n58005014018 +n58005014017 +n58005014019 +n58005014020 +n58006001001 +n58006001002 +n58006001003 +n58006001004 +n58006001005 +n58006001006 +n58006001007 +n58006001008 +n58006001009 +n58006001010 +n58006001011 +n58006001012 +n58006001013 +n58006001014 +n58006001016 +n58006001015 +n58006001017 +n58006001018 +n58006001019 +n58006001020 +n58006001021 +n58006001022 +n58006001023 +n58006001024 +n58006002002 +n58006002001 +n58006002004 +n58006002003 +n58006002005 +n58006002006 +n58006002007 +n58006002008 +n58006002009 +n58006002010 +n58006003001 +n58006003002 +n58006003003 +n58006003004 +n58006003005 +n58006003006 +n58006003007 +n58006004002 +n58006004001 +n58006004003 +n58006004004 +n58006004005 +n58006004007 +n58006004006 +n58006004008 +n58006004009 +n58006004010 +n58006004011 +n58006004012 +n58006004013 +n58006004015 +n58006004016 +n58006004014 +n58006005001 +n58006005003 +n58006005002 +n58006005004 +n58006005005 +n58006005007 +n58006005006 +n58006005008 +n58006005009 +n58006006001 +n58006006002 +n58006006003 +n58006006004 +n58006006005 +n58006006006 +n58006006007 +n58006006008 +n58006006009 +n58006006010 +n58006006011 +n58006006012 +n58006006013 +n58006006014 +n58006007002 +n58006007001 +n58006007003 +n58006007004 +n58006007005 +n58006007006 +n58006007007 +n58006007008 +n58006007009 +n58006007010 +n58006007011 +n58006007012 +n58006007013 +n58006007014 +n58006007015 +n58006007016 +n58006007017 +n58006007018 +n58006007019 +n58006007020 +n58006007021 +n58006007022 +n58006007023 +n58006007024 +n58006008002 +n58006008001 +n58006008003 +n58006008004 +n58006008005 +n58006008006 +n58006008007 +n58006008008 +n58006008009 +n58006008010 +n58006008011 +n58006008012 +n58006008013 +n58006008014 +n58006009002 +n58006009005 +n58006009001 +n58006009003 +n58006009004 +n58006009006 +n58006009007 +n58006009008 +n58006009009 +n58006009010 +n58006009011 +n58006009012 +n58006009013 +n58006009014 +n58006010002 +n58006010001 +n58006010003 +n58006010004 +n58006010005 +n58006010006 +n58006010007 +n58006010008 +n58006010009 +n58006010010 +n58006010011 +n58006010012 +n58006010013 +n58006010014 +n58006010015 +n58006010016 +n58006010017 +n58006010018 +n58006010019 +n58006010022 +n58006010023 +n58006010020 +n58006010021 +n58006011002 +n58006011001 +n58006011003 +n58006011004 +n58006011005 +n58006011006 +n58006011008 +n58006011007 +n58006011009 +n58006011010 +n58006011011 +n58006011012 +n58006011013 +n58006011014 +n58006011015 +n58006012001 +n58006012002 +n58006012003 +n58006012004 +n58006012006 +n58006012005 +n58006012007 +n58006012008 +n58006012009 +n58006012010 +n58006012011 +n58006012012 +n58006012013 +n58006012014 +n58006013002 +n58006013001 +n58006013003 +n58006013004 +n58006013005 +n58006013006 +n58006013007 +n58006013008 +n58006013009 +n58006013011 +n58006013012 +n58006013010 +n58006013013 +n58006013014 +n58006013015 +n58006014001 +n58006014002 +n58006014003 +n58006014004 +n58006014005 +n58006014006 +n58006014007 +n58006014008 +n58006014009 +n58006014010 +n58006015001 +n58006015002 +n58006015003 +n58006015004 +n58006015005 +n58006015006 +n58006016002 +n58006016001 +n58006016003 +n58006016004 +n58006016005 +n58006016006 +n58006016007 +n58006016009 +n58006016008 +n58006016010 +n58006016011 +n58006016012 +n58006016013 +n58006016014 +n58006016015 +n58006017001 +n58006017002 +n58006017003 +n58006017004 +n58006017007 +n58006017008 +n58006017009 +n58006017010 +n58006017011 +n58006017012 +n58006017013 +n58006017014 +n58006017015 +n58006017016 +n58006017005 +n58006017006 +n58006017017 +n58006017018 +n58006018001 +n58006018002 +n58006018003 +n58006018004 +n58006018005 +n58006018006 +n58006018007 +n58006018008 +n58006018009 +n58006018010 +n58006018011 +n58006018012 +n58006018013 +n58006018014 +n58006018015 +n58006018016 +n58006018017 +n58006018018 +n58006018019 +n58006019001 +n58006019004 +n58006019002 +n58006019003 +n58006019005 +n58006019006 +n58006019008 +n58006019007 +n58006019009 +n58006019010 +n58006019011 +n58006019012 +n58006019013 +n58006019014 +n58006019015 +n58006019016 +n58006019017 +n58006020001 +n58006020002 +n58006020006 +n58006020003 +n58006020004 +n58006020005 +n58006020007 +n58006020008 +n58006020009 +n58006020010 +n58006020011 +n58006020012 +n58006020013 +n58006020014 +n58006020015 +n58007001002 +n58007001001 +n58007001003 +n58007001004 +n58007001005 +n58007001006 +n58007001007 +n58007001008 +n58007001009 +n58007001010 +n58007001011 +n58007001012 +n58007001013 +n58007001014 +n58007001015 +n58007001016 +n58007001017 +n58007001018 +n58007001019 +n58007001020 +n58007001021 +n58007001022 +n58007001023 +n58007002001 +n58007002002 +n58007002003 +n58007002004 +n58007002005 +n58007002006 +n58007002007 +n58007002009 +n58007002008 +n58007002010 +n58007002011 +n58007002012 +n58007002014 +n58007002013 +n58007002015 +n58007002016 +n58007002017 +n58007002018 +n58007002019 +n58007002020 +n58007002021 +n58007003001 +n58007003002 +n58007003003 +n58007003004 +n58007003005 +n58007003006 +n58007003007 +n58007003008 +n58007003009 +n58007003010 +n58007003012 +n58007003011 +n58007003013 +n58007003014 +n58007003015 +n58007003016 +n58007003017 +n58007003018 +n58007003019 +n58007003020 +n58007003021 +n58007004002 +n58007004001 +n58007004003 +n58007004004 +n58007004005 +n58007004006 +n58007004007 +n58007004012 +n58007004013 +n58007004008 +n58007004009 +n58007004010 +n58007004011 +n58007005001 +n58007005003 +n58007005002 +n58007005004 +n58007005005 +n58007005006 +n58007005007 +n58007005008 +n58007005009 +n58007005010 +n58007005011 +n58007005012 +n58007005013 +n58007005016 +n58007005017 +n58007005018 +n58007005014 +n58007005015 +n58007005019 +n58007005020 +n58007005021 +n58007005022 +n58007005023 +n58007005024 +n58007005025 +n58007005026 +n58007005027 +n58007005028 +n58007005029 +n58007006002 +n58007006001 +n58007006003 +n58007006004 +n58007006005 +n58007006006 +n58007006007 +n58007006008 +n58007006009 +n58007006010 +n58007006011 +n58007006012 +n58007006013 +n58007006014 +n58007007002 +n58007007001 +n58007007003 +n58007007004 +n58007007005 +n58007007006 +n58007007007 +n58007007008 +n58007007009 +n58007007010 +n58007008001 +n58007008003 +n58007008002 +n58007008004 +n58007008005 +n58007008006 +n58007008007 +n58007008009 +n58007008008 +n58007008010 +n58007008011 +n58007008012 +n58007009001 +n58007009002 +n58007009003 +n58007009004 +n58007009005 +n58007009006 +n58007009007 +n58007009008 +n58007009009 +n58007009010 +n58007009011 +n58007009012 +n58007010002 +n58007010001 +n58007010003 +n58007010004 +n58007010005 +n58007010006 +n58007010007 +n58007010008 +n58007010009 +n58007010010 +n58007010011 +n58007010012 +n58007011002 +n58007011003 +n58007011001 +n58007011004 +n58007011005 +n58007011006 +n58007011007 +n58007011008 +n58007011009 +n58007011012 +n58007011010 +n58007011011 +n58007011013 +n58007011014 +n58007011015 +n58007011016 +n58007011017 +n58007011018 +n58007011019 +n58007011020 +n58007011021 +n58007011022 +n58007011024 +n58007011023 +n58007011025 +n58007011026 +n58007011027 +n58007011028 +n58007011029 +n58007011030 +n58007011031 +n58007011032 +n58007012002 +n58007012001 +n58007012003 +n58007012004 +n58007012005 +n58007012006 +n58007012007 +n58007012008 +n58007012009 +n58007012010 +n58007013003 +n58007013001 +n58007013002 +n58007013004 +n58007013005 +n58007013006 +n58007013007 +n58007013008 +n58007013009 +n58007013010 +n58007013011 +n58007013012 +n58007013013 +n58007013014 +n58007014002 +n58007014001 +n58007014003 +n58007014004 +n58007014005 +n58007014006 +n58007014007 +n58007014008 +n58007014009 +n58007014010 +n58007014011 +n58007014012 +n58007014013 +n58007014014 +n58007014015 +n58007014016 +n58007014017 +n58007015001 +n58007015002 +n58007015003 +n58007015004 +n58007015005 +n58007015006 +n58007015007 +n58007015008 +n58007015009 +n58007015010 +n58007015011 +n58007015012 +n58007015013 +n58007016001 +n58007016007 +n58007016002 +n58007016003 +n58007016004 +n58007016005 +n58007016006 +n58007016008 +n58007016009 +n58007016010 +n58007016011 +n58007016012 +n58007017002 +n58007017001 +n58007017003 +n58007017004 +n58007017005 +n58007017006 +n58007017007 +n58007017008 +n58007017009 +n58007017010 +n58007017011 +n58007017012 +n58007018003 +n58007018002 +n58007018001 +n58007018005 +n58007018006 +n58007018004 +n58007018007 +n58007018008 +n58007018009 +n58007018010 +n58007018011 +n58007018012 +n58007019002 +n58007019001 +n58007019003 +n58007019004 +n58007019005 +n58007019007 +n58007019006 +n58007019008 +n58007019009 +n58007019010 +n58007019011 +n58007019012 +n58007019013 +n58007019014 +n58007020001 +n58007020002 +n58007020003 +n58007020004 +n58007020005 +n58007020006 +n58007020009 +n58007020008 +n58007020007 +n58007020010 +n58007020011 +n58007020012 +n58007020014 +n58007020013 +n58007021002 +n58007021001 +n58007021003 +n58007021004 +n58007021005 +n58007021006 +n58007021007 +n58007021008 +n58007021009 +n58007021010 +n58007021011 +n58007021012 +n58007021013 +n58007021014 +n58007021015 +n58007021016 +n58007021017 +n58007021018 +n58007021019 +n58007022001 +n58007022002 +n58007022003 +n58007022004 +n58007022005 +n58007022007 +n58007022006 +n58007022008 +n58007023001 +n58007023003 +n58007023002 +n58007023004 +n58007023005 +n58007023006 +n58007023007 +n58007023008 +n58007023009 +n58007023010 +n58007023011 +n58007023012 +n58007024002 +n58007024001 +n58007024003 +n58007024004 +n58007024005 +n58007024006 +n58007024007 +n58007024008 +n58007024009 +n58007024010 +n58007024011 +n58007024012 +n58007024013 +n58007025001 +n58007025002 +n58007025007 +n58007025003 +n58007025004 +n58007025005 +n58007025006 +n58007025008 +n58007025009 +n58007025010 +n58007025011 +n58007025012 +n58007025013 +n58007025014 +n58007025015 +n58007025016 +n58007025017 +n58007025018 +n58007025019 +n58007025020 +n58007026002 +n58007026003 +n58007026004 +n58007026005 +n58007026001 +n58007026006 +n58007026007 +n58007026008 +n58007026009 +n58007026010 +n58007026011 +n58007026012 +n58007026013 +n58007026014 +n58007026015 +n58007026016 +n58007026017 +n58007026018 +n58007027001 +n58007027002 +n58007027003 +n58007027004 +n58007027005 +n58007027006 +n58007027007 +n58007027008 +n58007027009 +n58007027010 +n58007027011 +n58007027012 +n58007027013 +n58007027014 +n58007027015 +n58007027016 +n58007027017 +n58007027018 +n58007027019 +n58007027020 +n58007027022 +n58007027021 +n58007027023 +n58007027024 +n58007027025 +n58007027026 +n58007028003 +n58007028001 +n58007028002 +n58007028004 +n58007028005 +n58007028006 +n58007028007 +n58007028008 +n58007028011 +n58007028009 +n58007028010 +n58007028012 +n58007028013 +n58007028014 +n58007028015 +n58007028016 +n58007028017 +n58007028018 +n58007028019 +n58007028020 +n58007028021 +n58007028022 +n58008001002 +n58008001001 +n58008001003 +n58008001004 +n58008001005 +n58008001007 +n58008001006 +n58008001008 +n58008001009 +n58008001010 +n58008001011 +n58008001012 +n58008001013 +n58008001014 +n58008001015 +n58008001016 +n58008001017 +n58008001018 +n58008001019 +n58008002003 +n58008002001 +n58008002002 +n58008002004 +n58008002005 +n58008002006 +n58008002007 +n58008002008 +n58008002009 +n58008002010 +n58008002011 +n58008002012 +n58008002013 +n58008002014 +n58008003002 +n58008003001 +n58008003003 +n58008003004 +n58008003005 +n58008003006 +n58008003008 +n58008003007 +n58008003009 +n58008003010 +n58008003011 +n58008003012 +n58008003013 +n58008003014 +n58008003016 +n58008003017 +n58008003015 +n58008003018 +n58008003019 +n58008004003 +n58008004002 +n58008004001 +n58008004004 +n58008004005 +n58008004006 +n58008004008 +n58008004007 +n58008004009 +n58008004010 +n58008004011 +n58008004012 +n58008004013 +n58008004014 +n58008004015 +n58008004016 +n58008004017 +n58008005001 +n58008005002 +n58008005003 +n58008005004 +n58008005006 +n58008005007 +n58008005005 +n58008005008 +n58008005009 +n58008005010 +n58008005011 +n58008005012 +n58008005013 +n58008005014 +n58008005016 +n58008005017 +n58008005015 +n58008005018 +n58008005019 +n58008005020 +n58008005021 +n58008005022 +n58008005023 +n58008005024 +n58008005025 +n58008005026 +n58008005027 +n58008005028 +n58008006002 +n58008006001 +n58008006003 +n58008006005 +n58008006004 +n58008006006 +n58008006007 +n58008006009 +n58008006011 +n58008006008 +n58008006010 +n58008006012 +n58008006013 +n58008006014 +n58008006015 +n58008006016 +n58008007002 +n58008007001 +n58008007003 +n58008007004 +n58008007005 +n58008007006 +n58008007007 +n58008007009 +n58008007008 +n58008007010 +n58008007012 +n58008007011 +n58008008002 +n58008008001 +n58008008003 +n58008008004 +n58008008005 +n58008008006 +n58008008007 +n58008008008 +n58008008009 +n58008008010 +n58008008011 +n58008008012 +n58008008013 +n58008008014 +n58008008015 +n58008008016 +n58008008017 +n58008008018 +n58008008019 +n58008008020 +n58008008021 +n58008008022 +n58008009001 +n58008009002 +n58008009003 +n58008009004 +n58008009005 +n58008009006 +n58008009007 +n58008009008 +n58008009009 +n58008009010 +n58008009011 +n58008009012 +n58008009013 +n58008009014 +n58008009015 +n58008009016 +n58008009017 +n58008009018 +n58008009019 +n58008009020 +n58008009021 +n58008009022 +n58008009023 +n58008009024 +n58008009025 +n58008009026 +n58008009027 +n58008009028 +n58008009029 +n58008009030 +n58008009031 +n58008009032 +n58008009033 +n58008009034 +n58008010001 +n58008010002 +n58008010003 +n58008010004 +n58008010005 +n58008010006 +n58008010007 +n58008010008 +n58008010009 +n58008010010 +n58008010011 +n58008010012 +n58008010013 +n58008010014 +n58008010015 +n58008010016 +n58008010017 +n58008010018 +n58008010019 +n58008010020 +n58008010021 +n58008010022 +n58008010023 +n58008010024 +n58008010025 +n58008010026 +n58008010027 +n58008010028 +n58008010029 +n58008010030 +n58008010031 +n58008010032 +n58008010033 +n58008010034 +n58008010035 +n58008010036 +n58008010037 +n58008010038 +n58008010039 +n58008011001 +n58008011002 +n58008011003 +n58008011004 +n58008011005 +n58008011006 +n58008011007 +n58008011008 +n58008011009 +n58008011010 +n58008011011 +n58008011012 +n58008011013 +n58008011014 +n58008011015 +n58008011016 +n58008011017 +n58008011018 +n58008011019 +n58008011020 +n58008011021 +n58008011022 +n58008011023 +n58008011024 +n58008011025 +n58008011026 +n58008012001 +n58008012002 +n58008012003 +n58008012004 +n58008012005 +n58008012006 +n58008012007 +n58008012008 +n58008012009 +n58008012010 +n58008012011 +n58008012012 +n58008012013 +n58008012014 +n58008013001 +n58008013002 +n58008013003 +n58008013004 +n58008013005 +n58008013006 +n58008013007 +n58008013009 +n58008013008 +n58008013010 +n58008013011 +n58008013012 +n58008013013 +n58008013014 +n58009001002 +n58009001003 +n58009001001 +n58009001004 +n58009001005 +n58009001006 +n58009001007 +n58009001008 +n58009001010 +n58009001009 +n58009001011 +n58009001012 +n58009002002 +n58009002003 +n58009002001 +n58009002004 +n58009002005 +n58009002006 +n58009002007 +n58009002009 +n58009002008 +n58009002010 +n58009002011 +n58009002012 +n58009002013 +n58009002014 +n58009002015 +n58009002016 +n58009002017 +n58009002018 +n58009002019 +n58009002020 +n58009002021 +n58009003002 +n58009003001 +n58009003003 +n58009003004 +n58009003005 +n58009003006 +n58009003007 +n58009003008 +n58009003009 +n58009003010 +n58009004002 +n58009004001 +n58009004003 +n58009004004 +n58009004005 +n58009004006 +n58009004007 +n58009004008 +n58009004009 +n58009004010 +n58009004011 +n58009004012 +n58009004013 +n58009004014 +n58009004015 +n58009004016 +n58009004017 +n58009004018 +n58009004019 +n58009004020 +n58009004021 +n58009004022 +n58009004023 +n58009004024 +n58009004025 +n58009004026 +n58009004027 +n58009004028 +n58009004029 +n58009005002 +n58009005001 +n58009005003 +n58009005004 +n58009005005 +n58009005006 +n58009005007 +n58009005008 +n58009005009 +n58009005010 +n58009005011 +n58009005012 +n58009005013 +n58009005014 +n58009005015 +n58009005016 +n58009006002 +n58009006001 +n58009006003 +n58009006004 +n58009006006 +n58009006005 +n58009006007 +n58009006008 +n58009006009 +n58009006010 +n58009006011 +n58009006012 +n58009006013 +n58009006014 +n58009006015 +n58009006016 +n58009006017 +n58009007002 +n58009007001 +n58009007003 +n58009007004 +n58009007005 +n58009007006 +n58009007007 +n58009007008 +n58009007009 +n58009007010 +n58009007011 +n58009007012 +n58009007013 +n58009007014 +n58009007015 +n58009007016 +n58009007017 +n58009007018 +n58009007019 +n58009007020 +n58009007021 +n58009007022 +n58009008001 +n58009008002 +n58009008003 +n58009008004 +n58009008005 +n58009008006 +n58009008007 +n58009008008 +n58009008009 +n58009008010 +n58009008011 +n58009008012 +n58009008013 +n58009008014 +n58009008015 +n58009008016 +n58009008017 +n58009008018 +n58009009001 +n58009009002 +n58009009003 +n58009009004 +n58009009005 +n58009009006 +n58009009007 +n58009009008 +n58009009009 +n58009009011 +n58009009010 +n58009009012 +n58009009013 +n58009009014 +n58009009015 +n58009009016 +n58009009017 +n58009009018 +n58009009019 +n58009009020 +n58009009021 +n58009010001 +n58009010002 +n58009010003 +n58009010004 +n58009010005 +n58009010006 +n58009010007 +n58009010008 +n58009010009 +n58009010010 +n58009010011 +n58009010012 +n58009010013 +n58009010014 +n58009011002 +n58009011003 +n58009011001 +n58009011004 +n58009011005 +n58009011006 +n58009011007 +n58009011008 +n58009011009 +n58009011010 +n58009011011 +n58009011012 +n58009011013 +n58009011014 +n58009011015 +n58009011016 +n58009011017 +n58009011018 +n58009011019 +n58009011020 +n58009011021 +n58009012001 +n58009012002 +n58009012003 +n58009012004 +n58009012005 +n58009012006 +n58009012008 +n58009012007 +n58009012009 +n58009012010 +n58009012011 +n58009012012 +n58009012013 +n58009012014 +n58009012015 +n58009012016 +n58009012017 +n58009012018 +n58009012019 +n58009013002 +n58009013001 +n58009013003 +n58009013004 +n58009013005 +n58009013006 +n58009013007 +n58009013008 +n58009013009 +n58009013010 +n58009013011 +n58009013012 +n58009013013 +n58009013014 +n58009013015 +n58009013016 +n58009013017 +n58009013018 +n58009013019 +n58009014001 +n58009014002 +n58009014003 +n58009014004 +n58009014005 +n58009014006 +n58009014007 +n58009014008 +n58009014009 +n58009014010 +n58009014011 +n58009014012 +n58009014013 +n58009014014 +n58009014015 +n58009014016 +n58009014017 +n58009014018 +n58009014019 +n58009014020 +n58009014021 +n58009014022 +n58009014023 +n58009014024 +n58009014025 +n58009014026 +n58009014027 +n58009015001 +n58009015002 +n58009015003 +n58009015004 +n58009015005 +n58009015006 +n58009015007 +n58009015008 +n58009015009 +n58009015010 +n58009015011 +n58009015012 +n58009015013 +n58009015014 +n58009015015 +n58009015016 +n58009015017 +n58009015018 +n58009015021 +n58009015022 +n58009015023 +n58009015019 +n58009015020 +n58009015024 +n58009015025 +n58009015026 +n58009016002 +n58009016001 +n58009016003 +n58009016005 +n58009016006 +n58009016004 +n58009016007 +n58009016008 +n58009017002 +n58009017001 +n58009017003 +n58009017004 +n58009017005 +n58009017006 +n58009017007 +n58009017008 +n58009017009 +n58009017010 +n58009017011 +n58009017012 +n58009017013 +n58009018001 +n58009018002 +n58009018003 +n58009018004 +n58009018005 +n58009018006 +n58009018007 +n58009019002 +n58009019001 +n58009019003 +n58009019004 +n58009019005 +n58009019006 +n58009019007 +n58009019008 +n58009019009 +n58009019010 +n58009019011 +n58009019012 +n58009019013 +n58009019014 +n58009019015 +n58009019016 +n58009019017 +n58009019018 +n58009019019 +n58009019020 +n58009019021 +n58009019022 +n58009019023 +n58009019024 +n58009019025 +n58009019026 +n58009019027 +n58009019029 +n58009019028 +n58009019030 +n58009019031 +n58009019032 +n58009019033 +n58009019034 +n58009019035 +n58009019036 +n58009020001 +n58009020002 +n58009020003 +n58009020004 +n58009020005 +n58009020006 +n58009020007 +n58009020008 +n58009020009 +n58009020010 +n58009020011 +n58009020012 +n58009021004 +n58009021001 +n58009021002 +n58009021003 +n58009021005 +n58009021006 +n58009021007 +n58009021008 +n58009021009 +n58009021010 +n58009021011 +n58009021012 +n58009021013 +n58009021014 +n58009022001 +n58009022002 +n58009022003 +n58009022004 +n58009022005 +n58009022006 +n58009022007 +n58009022008 +n58009022009 +n58009022010 +n58009022011 +n58009022012 +n58009022013 +n58009022014 +n58009022015 +n58009023002 +n58009023001 +n58009023004 +n58009023003 +n58009023005 +n58009023006 +n58009023007 +n58009023008 +n58009023009 +n58009023010 +n58009023011 +n58009023013 +n58009023012 +n58009023014 +n58009023015 +n58009023017 +n58009023016 +n58009023018 +n58009023019 +n58009024002 +n58009024005 +n58009024007 +n58009024001 +n58009024003 +n58009024004 +n58009024006 +n58009024008 +n58009024009 +n58009024010 +n58009024011 +n58009024012 +n58009024013 +n58009024014 +n58009024015 +n58009024016 +n58009024017 +n58009024018 +n58009024019 +n58009024020 +n58009024021 +n58009024022 +n58009024023 +n58009025001 +n58009025002 +n58009025003 +n58009025004 +n58009025005 +n58009025006 +n58009025007 +n58009025008 +n58009025009 +n58009025010 +n58009025011 +n58009025012 +n58009025013 +n58009025014 +n58009025015 +n58009025016 +n58009025017 +n58009026001 +n58009026002 +n58009026003 +n58009026004 +n58009026005 +n58009026006 +n58009026007 +n58009026008 +n58009026010 +n58009026009 +n58009026011 +n58009026012 +n58009026013 +n58009026014 +n58009026015 +n58009026016 +n58009026017 +n58009026018 +n58009026019 +n58009026020 +n58009026021 +n58009026022 +n58009026023 +n58009026024 +n58009027001 +n58009027002 +n58009027003 +n58009027004 +n58009027005 +n58009027006 +n58009027007 +n58009027008 +n58009027010 +n58009027009 +n58009027011 +n58009027012 +n58009028001 +n58009028002 +n58009028003 +n58009028004 +n58009028005 +n58009028006 +n58009028007 +n58009028008 +n58009028009 +n58009028011 +n58009028010 +n58009028012 +n58009028013 +n58009028014 +n58009028015 +n58009028016 +n58009028017 +n58009028018 +n58009028019 +n58009028020 +n58009028021 +n58010001002 +n58010001004 +n58010001005 +n58010001003 +n58010001001 +n58010001006 +n58010001007 +n58010001008 +n58010001009 +n58010001010 +n58010001011 +n58010001012 +n58010001013 +n58010001014 +n58010001015 +n58010001016 +n58010001017 +n58010001018 +n58010001019 +n58010001020 +n58010001021 +n58010001022 +n58010001023 +n58010001024 +n58010001025 +n58010001026 +n58010001027 +n58010001028 +n58010001029 +n58010002001 +n58010002002 +n58010002003 +n58010002004 +n58010002005 +n58010002006 +n58010002007 +n58010002008 +n58010002009 +n58010002010 +n58010002011 +n58010002012 +n58010002013 +n58010002014 +n58010002015 +n58010002016 +n58010003001 +n58010003002 +n58010003003 +n58010003004 +n58010003005 +n58010003006 +n58010003007 +n58010004002 +n58010004001 +n58010004003 +n58010004004 +n58010004005 +n58010004006 +n58010004007 +n58010004008 +n58010005001 +n58010005002 +n58010005003 +n58010005004 +n58010005005 +n58010005006 +n58010005007 +n58010005008 +n58010005009 +n58010005010 +n58010005011 +n58010005013 +n58010005012 +n58010005014 +n58010005015 +n58010006001 +n58010006002 +n58010006003 +n58010006004 +n58010006005 +n58010006006 +n58010007001 +n58010007002 +n58010007013 +n58010007014 +n58010007003 +n58010007005 +n58010007006 +n58010007007 +n58010007008 +n58010007009 +n58010007010 +n58010007004 +n58010007011 +n58010007012 +n58010007015 +n58010007016 +n58010007017 +n58010008001 +n58010008002 +n58010008003 +n58010008004 +n58010008005 +n58010008006 +n58010008007 +n58010008008 +n58010008009 +n58010008010 +n58010008011 +n58010008012 +n58010008013 +n58010008014 +n58010008015 +n58010008016 +n58010008017 +n58010008018 +n58010008019 +n58010009001 +n58010009002 +n58010009003 +n58010009004 +n58010009005 +n58010009006 +n58010009007 +n58010009008 +n58010009009 +n58010009010 +n58010009011 +n58010009012 +n58010009013 +n58010009014 +n58010009015 +n58010009016 +n58010010001 +n58010010002 +n58010010003 +n58010010004 +n58010010005 +n58010010006 +n58010010007 +n58010010008 +n58010010009 +n58010010010 +n58010010011 +n58010010012 +n58010010013 +n58010011001 +n58010011003 +n58010011002 +n58010011004 +n58010011005 +n58010011006 +n58010011007 +n58010011008 +n58010011009 +n58010011012 +n58010011013 +n58010011010 +n58010011011 +n58010011014 +n58010011015 +n58010011016 +n58010011017 +n58010011018 +n58010011019 +n58010012002 +n58010012001 +n58010012003 +n58010012007 +n58010012004 +n58010012005 +n58010012006 +n58010012008 +n58010012009 +n58010012010 +n58010012011 +n58010012012 +n58010012013 +n58010012014 +n58010012015 +n58010013001 +n58010013002 +n58010013003 +n58010013004 +n58010013005 +n58010013006 +n58010013007 +n58010013008 +n58010013009 +n58010013010 +n58010013011 +n58010013012 +n58010014002 +n58010014001 +n58010014003 +n58010014004 +n58010014005 +n58010014006 +n58010014007 +n58010014008 +n58010014009 +n58010015002 +n58010015001 +n58010015003 +n58010015004 +n58010015005 +n58010015006 +n58010015007 +n58010015008 +n58010015010 +n58010015009 +n58010015011 +n58010015012 +n58010016001 +n58010016002 +n58010016003 +n58010016004 +n58010016005 +n58010016006 +n58010016007 +n58010016008 +n58010016009 +n58010016010 +n58010016011 +n58010016012 +n58010016013 +n58010016014 +n58010016015 +n58010016016 +n58010016017 +n58010016018 +n58010016019 +n58010016020 +n58010016021 +n58010016022 +n58010016023 +n58010016024 +n58010016025 +n58010016026 +n58010017001 +n58010017002 +n58010017003 +n58010017004 +n58010017005 +n58010017006 +n58010017007 +n58010017008 +n58010017009 +n58010017010 +n58010017011 +n58010017012 +n58010018002 +n58010018001 +n58010018003 +n58010018004 +n58010018005 +n58010018006 +n58010018007 +n58010018008 +n58010019002 +n58010019003 +n58010019001 +n58010019004 +n58010019005 +n58010019006 +n58010019007 +n58010019008 +n58010019009 +n58010019010 +n58010019011 +n58010019012 +n58010019013 +n58010020001 +n58010020002 +n58010020003 +n58010020004 +n58010020005 +n58010020006 +n58010020007 +n58010020008 +n58010020009 +n58010020010 +n58010020011 +n58010020012 +n58010020013 +n58010020014 +n58010020015 +n58010021001 +n58010021002 +n58010021003 +n58010021004 +n58010021005 +n58010021006 +n58010021007 +n58010021008 +n58010022001 +n58010022002 +n58010022003 +n58010022004 +n58010022005 +n58010022006 +n58010022007 +n58010022008 +n58010022009 +n58010022010 +n58010022011 +n58010022012 +n58010022013 +n58010022014 +n58010022015 +n58010022016 +n58010022017 +n58010022018 +n58010022019 +n58010023001 +n58010023002 +n58010023003 +n58010023004 +n58010023005 +n58010023006 +n58010023008 +n58010023007 +n58010023009 +n58010023010 +n58010024001 +n58010024002 +n58010024003 +n58010024004 +n58010024005 +n58010024006 +n58010024007 +n58010024008 +n58010024009 +n58010025001 +n58010025002 +n58010025003 +n58010025004 +n58010025005 +n58010025006 +n58010025007 +n58010025008 +n58010025009 +n58010025010 +n58010025013 +n58010025011 +n58010025012 +n58010025014 +n58010025015 +n58010025016 +n58010025017 +n58010025018 +n58010026002 +n58010026001 +n58010026003 +n58010026004 +n58010026005 +n58010026006 +n58010026007 +n58010026008 +n58010026009 +n58010026010 +n58010026011 +n58010026012 +n58010026013 +n58010026014 +n58010026015 +n58010026016 +n58010027002 +n58010027001 +n58010027003 +n58010027004 +n58010027005 +n58010027006 +n58010027008 +n58010027007 +n58010027010 +n58010027009 +n58010027011 +n58010027012 +n58010028002 +n58010028001 +n58010028003 +n58010028004 +n58010028005 +n58010028006 +n58010028007 +n58010028008 +n58010028009 +n58010028010 +n58010028011 +n58010028012 +n58010029001 +n58010029002 +n58010029003 +n58010029005 +n58010029004 +n58010029006 +n58010029007 +n58010029008 +n58010029009 +n58010029010 +n58010029011 +n58010029012 +n58010029017 +n58010029018 +n58010029013 +n58010029014 +n58010029015 +n58010029016 +n58010029019 +n58010029020 +n58010029021 +n58010029022 +n58010029023 +n58010029024 +n58010029025 +n58010029026 +n58010029027 +n58010030002 +n58010030001 +n58010030003 +n58010030004 +n58010030005 +n58010030006 +n58010030007 +n58010030008 +n58010030009 +n58010030010 +n58010030011 +n58010030012 +n58010030013 +n58010030014 +n58010030015 +n58010031001 +n58010031002 +n58010031003 +n58010031004 +n58010031005 +n58010031006 +n58010031007 +n58010032002 +n58010032001 +n58010032003 +n58010032004 +n58010032005 +n58010032006 +n58010032007 +n58010032008 +n58010032011 +n58010032009 +n58010032010 +n58010032012 +n58010033002 +n58010033001 +n58010033004 +n58010033003 +n58010033005 +n58010033006 +n58010033007 +n58010033009 +n58010033008 +n58010033010 +n58010033011 +n58010033012 +n58010033013 +n58010033014 +n58010034002 +n58010034001 +n58010034003 +n58010034004 +n58010034005 +n58010034006 +n58010034007 +n58010034008 +n58010034009 +n58010034010 +n58010034011 +n58010034012 +n58010034013 +n58010034014 +n58010034015 +n58010034016 +n58010034017 +n58010034019 +n58010034018 +n58010034020 +n58010034021 +n58010035003 +n58010035001 +n58010035002 +n58010035004 +n58010035005 +n58010035006 +n58010035007 +n58010035008 +n58010035009 +n58010035010 +n58010036002 +n58010036001 +n58010036004 +n58010036003 +n58010036005 +n58010036006 +n58010036007 +n58010036008 +n58010036009 +n58010036010 +n58010036011 +n58010036012 +n58010036013 +n58010037002 +n58010037001 +n58010037003 +n58010037004 +n58010037005 +n58010037006 +n58010037007 +n58010037008 +n58010037009 +n58010037010 +n58010037011 +n58010038002 +n58010038001 +n58010038003 +n58010038004 +n58010038005 +n58010038006 +n58010038007 +n58010038008 +n58010038009 +n58010038010 +n58010038011 +n58010038012 +n58010038013 +n58010038014 +n58010038015 +n58010038016 +n58010038017 +n58010039002 +n58010039001 +n58010039004 +n58010039003 +n58010039005 +n58010039006 +n58010039007 +n58010039008 +n58010039009 +n58010039010 +n58010039011 +n58010039012 +n58011001002 +n58011001001 +n58011001003 +n58011001004 +n58011001005 +n58011001007 +n58011001006 +n58011001008 +n58011001009 +n58011002003 +n58011002001 +n58011002002 +n58011002004 +n58011002005 +n58011002006 +n58011003001 +n58011003002 +n58011003003 +n58011003004 +n58011003005 +n58011003006 +n58011003007 +n58011003008 +n58011003009 +n58011003010 +n58011003011 +n58011003012 +n58011003013 +n58011003014 +n58011003015 +n58011004001 +n58011004004 +n58011004002 +n58011004003 +n58011004005 +n58011004006 +n58011004007 +n58011004008 +n58011004009 +n58011004010 +n58011004011 +n58011004012 +n58011004013 +n58011004014 +n58011004015 +n58011004016 +n58011004017 +n58011004018 +n58011004019 +n58011004020 +n58011004021 +n58011004022 +n58011004023 +n58011004024 +n58011004025 +n58011004026 +n58011004027 +n58011005001 +n58011005002 +n58011005003 +n58011005004 +n58011005005 +n58011005006 +n58011005007 +n58011005008 +n58011005009 +n58011005010 +n58011005011 +n58011005012 +n58011005013 +n58011005014 +n58011005015 +n58011005017 +n58011005016 +n58011005018 +n58011005019 +n58011005020 +n58011005021 +n58011005022 +n58011005023 +n58011006002 +n58011006001 +n58011006003 +n58011006004 +n58011006005 +n58011006007 +n58011006008 +n58011006006 +n58011006009 +n58011006010 +n58011006011 +n58011006012 +n58011006013 +n58011006014 +n58011006015 +n58011006016 +n58011006017 +n58011006018 +n58011006019 +n58011006020 +n58011007001 +n58011007003 +n58011007002 +n58011007004 +n58011007005 +n58011007006 +n58011007007 +n58011007008 +n58011007009 +n58011007010 +n58011007011 +n58011007012 +n58011007013 +n58011007014 +n58011007015 +n58011007016 +n58011007017 +n58011007018 +n58011007019 +n58011007020 +n58011007021 +n58011007022 +n58011007023 +n58011007024 +n58011007025 +n58011007027 +n58011007026 +n58011008001 +n58011008002 +n58011008003 +n58011008004 +n58011008005 +n58011008006 +n58011008007 +n58011008009 +n58011008008 +n58011008010 +n58011008011 +n58011008012 +n58011008013 +n58011008014 +n58011008015 +n58011008016 +n58011008017 +n58011008018 +n58011009001 +n58011009002 +n58011009003 +n58011009004 +n58011009005 +n58011009006 +n58011009007 +n58011009008 +n58011009009 +n58011009010 +n58011009011 +n58011009012 +n58011009013 +n58011009014 +n58011009015 +n58011009016 +n58011009017 +n58011009018 +n58011009019 +n58011009020 +n58011009021 +n58011010002 +n58011010001 +n58011010003 +n58011010004 +n58011010005 +n58011010006 +n58011010007 +n58011010008 +n58011010009 +n58011010010 +n58011010011 +n58011010012 +n58011010013 +n58011011001 +n58011011002 +n58011011003 +n58011011004 +n58011011005 +n58011011006 +n58011011007 +n58011011008 +n58011011009 +n58011011010 +n58011011011 +n58011011012 +n58011011013 +n58011011014 +n58011011015 +n58011011016 +n58011011017 +n58011011018 +n58011012001 +n58011012002 +n58011012003 +n58011012004 +n58011012008 +n58011012005 +n58011012006 +n58011012007 +n58011012009 +n58011012010 +n58011012011 +n58011012012 +n58011012013 +n58011012014 +n58011012015 +n58011012016 +n58011012017 +n58011012018 +n58011012019 +n58011012020 +n58011012021 +n58011012022 +n58011012023 +n58011012024 +n58011012025 +n58011012026 +n58011012027 +n58011013001 +n58011013002 +n58011013003 +n58011013004 +n58011013005 +n58011013006 +n58011013007 +n58011013008 +n58011013009 +n58011013010 +n58011013011 +n58011013012 +n58011013013 +n58011013014 +n58011013015 +n58011013016 +n58011013017 +n58011013018 +n58011013019 +n58011013020 +n58011013021 +n58011013022 +n58011013023 +n58011013024 +n58011013025 +n58011014002 +n58011014001 +n58011014003 +n58011014004 +n58011014005 +n58011014006 +n58011014007 +n58011014008 +n58011015001 +n58011015003 +n58011015002 +n58011015005 +n58011015004 +n58011015006 +n58011015007 +n58011015008 +n58011015010 +n58011015009 +n58011015011 +n58011015012 +n58011016002 +n58011016001 +n58011016004 +n58011016003 +n58011016005 +n58011016006 +n58011016007 +n58011016008 +n58011016009 +n58011016010 +n58011016011 +n58011016012 +n58011016013 +n58011016014 +n58011016016 +n58011016015 +n58011016018 +n58011016017 +n58011016019 +n58011016020 +n58011017001 +n58011017002 +n58011017003 +n58011017004 +n58011017005 +n58011017006 +n58011017007 +n58011017008 +n58011017009 +n58011017010 +n58011017011 +n58011017012 +n58011017013 +n58011017014 +n58011018001 +n58011018002 +n58011018003 +n58011018004 +n58011018005 +n58011018006 +n58011018007 +n58011018008 +n58011018009 +n58011019001 +n58011019002 +n58011019003 +n58011019004 +n58011019005 +n58011019006 +n58011019007 +n58011019008 +n58011019009 +n58011019010 +n58011019011 +n58011019012 +n58011019013 +n58011019014 +n58011019015 +n58011020001 +n58011020002 +n58011020003 +n58011020004 +n58011020005 +n58011020006 +n58011020007 +n58011020008 +n58011020009 +n58011020010 +n58011020011 +n58011021001 +n58011021002 +n58011021003 +n58011021004 +n58011021005 +n58011021006 +n58011021007 +n58011021008 +n58011021009 +n58011021010 +n58011021011 +n58011021012 +n58011021013 +n58011021014 +n58011021015 +n58011021016 +n58011022001 +n58011022002 +n58011022003 +n58011022004 +n58011022005 +n58011022006 +n58011022007 +n58011022008 +n58011022009 +n58011022010 +n58011022011 +n58011022012 +n58011022013 +n58011022014 +n58011022015 +n58011022016 +n58011023001 +n58011023002 +n58011023003 +n58011023004 +n58011023005 +n58011023006 +n58011023007 +n58011023008 +n58011023009 +n58011023010 +n58011023011 +n58011023012 +n58011023013 +n58011023014 +n58011023015 +n58011023016 +n58011023017 +n58011023018 +n58011023019 +n58011023020 +n58011023021 +n58011024001 +n58011024002 +n58011024003 +n58011024004 +n58011024005 +n58011024006 +n58011024007 +n58011024008 +n58011024009 +n58011025002 +n58011025001 +n58011025003 +n58011025004 +n58011025005 +n58011025006 +n58011025007 +n58011025008 +n58011025009 +n58011025010 +n58011025011 +n58011025012 +n58011026001 +n58011026002 +n58011026003 +n58011026004 +n58011026005 +n58011026006 +n58011026007 +n58011026008 +n58011026009 +n58011026010 +n58011026012 +n58011026011 +n58011026013 +n58011026014 +n58011026015 +n58011027001 +n58011027002 +n58011027003 +n58011027004 +n58011027005 +n58011027006 +n58011027007 +n58011027008 +n58011027009 +n58011027011 +n58011027010 +n58011027012 +n58011027013 +n58011027014 +n58011027015 +n58011028001 +n58011028002 +n58011028003 +n58011028004 +n58011028005 +n58011028006 +n58011028007 +n58011028008 +n58011028009 +n58011028010 +n58011028011 +n58011028012 +n58011028013 +n58011028014 +n58011028015 +n58011028016 +n58011028017 +n58011029001 +n58011029002 +n58011029003 +n58011029004 +n58011029005 +n58011029006 +n58011029007 +n58011029008 +n58011029009 +n58011029010 +n58011029011 +n58011029012 +n58011029013 +n58011029014 +n58011029015 +n58011030001 +n58011030002 +n58011030003 +n58011030004 +n58011030005 +n58011030006 +n58011030007 +n58011030008 +n58011030009 +n58011031001 +n58011031002 +n58011031003 +n58011031004 +n58011031005 +n58011031006 +n58011031007 +n58011031008 +n58011031009 +n58011031010 +n58011031011 +n58011031012 +n58011031013 +n58011032001 +n58011032002 +n58011032003 +n58011032004 +n58011032007 +n58011032005 +n58011032009 +n58011032010 +n58011032006 +n58011032008 +n58011032011 +n58011032012 +n58011032013 +n58011032014 +n58011032015 +n58011032017 +n58011032016 +n58011032018 +n58011032019 +n58011032020 +n58011032021 +n58011032022 +n58011033001 +n58011033002 +n58011033003 +n58011033004 +n58011033005 +n58011033006 +n58011033007 +n58011033008 +n58011033009 +n58011033010 +n58011033011 +n58011033012 +n58011034001 +n58011034002 +n58011034003 +n58011034004 +n58011034005 +n58011034006 +n58011034007 +n58011034008 +n58011034009 +n58011034010 +n58011034011 +n58011034012 +n58011034013 +n58011034014 +n58011034016 +n58011034015 +n58011035001 +n58011035002 +n58011035003 +n58011035004 +n58011035005 +n58011035006 +n58011035007 +n58011035009 +n58011035008 +n58011035010 +n58011035011 +n58011035012 +n58011035013 +n58011035014 +n58011035015 +n58011035016 +n58011035017 +n58011035018 +n58011036002 +n58011036001 +n58011036003 +n58011036004 +n58011036005 +n58011036006 +n58011036007 +n58011036009 +n58011036008 +n58011036010 +n58011036011 +n58011036012 +n58011037001 +n58011037002 +n58011037003 +n58011037004 +n58011037005 +n58011037006 +n58011037007 +n58011037008 +n58011037009 +n58011037010 +n58011037011 +n58011037012 +n58011037013 +n58011037014 +n58011037015 +n58011037016 +n58011038009 +n58011038007 +n58011038008 +n58011038010 +n58011038011 +n58011038012 +n58011038013 +n58011038014 +n58011038015 +n58011038016 +n58011038017 +n58011038018 +n58011038001 +n58011038002 +n58011038003 +n58011038004 +n58011038005 +n58011038006 +n58011039001 +n58011039002 +n58011039003 +n58011039004 +n58011039005 +n58011039006 +n58011039007 +n58011039008 +n58011039009 +n58011039010 +n58011039011 +n58011040001 +n58011040002 +n58011040003 +n58011040004 +n58011040005 +n58011040006 +n58011040007 +n58011040008 +n58011040009 +n58011040010 +n58011040011 +n58011040012 +n58012001001 +n58012001002 +n58012001003 +n58012001005 +n58012001004 +n58012001006 +n58012001007 +n58012001008 +n58012001009 +n58012001011 +n58012001010 +n58012001012 +n58012001013 +n58012001014 +n58012001015 +n58012001016 +n58012001017 +n58012001018 +n58012001019 +n58012001020 +n58012001021 +n58012001022 +n58012001023 +n58012002001 +n58012002002 +n58012002003 +n58012002004 +n58012002005 +n58012002006 +n58012002007 +n58012002008 +n58012002009 +n58012002010 +n58012002011 +n58012002012 +n58012002013 +n58012002014 +n58012002015 +n58012002016 +n58012002017 +n58012002018 +n58012002019 +n58012002022 +n58012002020 +n58012002021 +n58012002023 +n58012002024 +n58012002025 +n58012002026 +n58012002027 +n58012003002 +n58012003001 +n58012003003 +n58012003005 +n58012003004 +n58012003006 +n58012003007 +n58012003008 +n58012003009 +n58012003010 +n58012003011 +n58012003012 +n58012003013 +n58012003014 +n58012003015 +n58012003016 +n58012003017 +n58012003018 +n58012004001 +n58012004002 +n58012004003 +n58012004004 +n58012004005 +n58012004006 +n58012004007 +n58012004008 +n58012005001 +n58012005002 +n58012005003 +n58012005004 +n58012005005 +n58012005006 +n58012005007 +n58012005008 +n58012005009 +n58012005010 +n58012005011 +n58012005012 +n58012005013 +n58012005014 +n58012005015 +n58012005016 +n58012005017 +n58012005018 +n58012005019 +n58012005020 +n58012006002 +n58012006001 +n58012006003 +n58012006004 +n58012006005 +n58012006007 +n58012006006 +n58012006008 +n58012006009 +n58012006010 +n58012006011 +n58012007001 +n58012007002 +n58012007003 +n58012007004 +n58012007005 +n58012007006 +n58012007007 +n58012007008 +n58012007009 +n58012007011 +n58012007010 +n58012007012 +n58012007013 +n58012007014 +n58012007015 +n58012007016 +n58012008002 +n58012008001 +n58012008004 +n58012008003 +n58012008005 +n58012008006 +n58012008007 +n58012008008 +n58012008009 +n58012008010 +n58012008011 +n58012008012 +n58012008013 +n58012008014 +n58012008015 +n58012009003 +n58012009001 +n58012009002 +n58012009004 +n58012009005 +n58012009006 +n58012009007 +n58012009008 +n58012009009 +n58012009010 +n58012009011 +n58012009012 +n58012009013 +n58012009014 +n58012009015 +n58012009016 +n58012009017 +n58012009018 +n58012009019 +n58012009020 +n58012009021 +n58012010003 +n58012010002 +n58012010001 +n58012010004 +n58012010005 +n58012010006 +n58012010007 +n58012010008 +n58012010009 +n58012010010 +n58012010011 +n58012010013 +n58012010012 +n58012010014 +n58012010015 +n58012010016 +n58012010017 +n58012010018 +n58012010019 +n58012010020 +n58012010021 +n58012010022 +n58012011002 +n58012011001 +n58012011003 +n58012011005 +n58012011004 +n58012011006 +n58012011007 +n58012011009 +n58012011008 +n58012011010 +n58012011011 +n58012011012 +n58012011013 +n58012011015 +n58012011014 +n58012011016 +n58012011017 +n58012011023 +n58012011018 +n58012011019 +n58012011020 +n58012011021 +n58012011022 +n58012012001 +n58012012002 +n58012012003 +n58012012004 +n58012012005 +n58012012006 +n58012012007 +n58012012008 +n58012012009 +n58012013001 +n58012013002 +n58012013003 +n58012013004 +n58012013005 +n58012013006 +n58012013007 +n58012013008 +n58012013009 +n58012013010 +n58012013011 +n58012013012 +n58012013014 +n58012013013 +n58012013015 +n58012014002 +n58012014003 +n58012014004 +n58012014001 +n58012014005 +n58012014006 +n58012014007 +n58012014008 +n58012014009 +n58012014010 +n58012014011 +n58012014012 +n58012014013 +n58012015001 +n58012015002 +n58012015003 +n58012015004 +n58012015005 +n58012015006 +n58012015007 +n58012015008 +n58012015009 +n58012015010 +n58012015011 +n58012015012 +n58012015013 +n58012015014 +n58012015015 +n58012015016 +n58012015017 +n58012015018 +n58012015019 +n58012015020 +n58012015021 +n58012015022 +n58012016001 +n58012016002 +n58012016003 +n58012016004 +n58012016005 +n58012016006 +n58012016007 +n58012016008 +n58012016009 +n58012016010 +n58012016011 +n58012016012 +n58012016013 +n58012016014 +n58012016015 +n58012017002 +n58012017001 +n58012017003 +n58012017004 +n58012017005 +n58012017006 +n58012017007 +n58012017008 +n58012017009 +n58012017010 +n58012017012 +n58012017011 +n58012017013 +n58012017014 +n58012017015 +n58012017016 +n58012017017 +n58012017018 +n58012017019 +n58012017020 +n58012018002 +n58012018001 +n58012018003 +n58012018004 +n58012018005 +n58012018006 +n58012018007 +n58012018008 +n58012018009 +n58012018010 +n58012018011 +n58012018012 +n58012018013 +n58012019001 +n58012019002 +n58012019003 +n58012019004 +n58012019005 +n58012019006 +n58012019007 +n58012019008 +n58012019009 +n58012019010 +n58012019011 +n58012019012 +n58012019013 +n58012019014 +n58012020003 +n58012020001 +n58012020002 +n58012020004 +n58012020005 +n58012020006 +n58012020007 +n58012020008 +n58012020009 +n58012020010 +n58012020011 +n58012021001 +n58012021002 +n58012021003 +n58012021004 +n58012021005 +n58012021006 +n58012021007 +n58012021008 +n58012021010 +n58012021009 +n58012021011 +n58012021012 +n58012022001 +n58012022002 +n58012022003 +n58012022004 +n58012022005 +n58012022006 +n58012022007 +n58012022008 +n58012022009 +n58012022010 +n58012022011 +n58012022012 +n58012022013 +n58012022014 +n58012023001 +n58012023002 +n58012023003 +n58012023004 +n58012023005 +n58012023006 +n58012023007 +n58012023008 +n58012023010 +n58012023009 +n58012023011 +n58012023012 +n58012023013 +n58012023014 +n58012024001 +n58012024002 +n58012024003 +n58012024004 +n58012024005 +n58012024006 +n58012024007 +n58012024008 +n58012024009 +n58012024010 +n58012024011 +n58012024012 +n58012024013 +n58012025001 +n58012025002 +n58012025003 +n58012025004 +n58012025005 +n58012025007 +n58012025006 +n58012025009 +n58012025010 +n58012025008 +n58012025013 +n58012025014 +n58012025011 +n58012025012 +n58012025015 +n58012025016 +n58012025017 +n58012025018 +n58012025019 +n58012025020 +n58012025021 +n58012025022 +n58012025023 +n58012026001 +n58012026002 +n58012026003 +n58012026004 +n58012026005 +n58012026006 +n58012026007 +n58012026009 +n58012026008 +n58012026010 +n58012026011 +n58012026012 +n58012026013 +n58012026014 +n58012026015 +n58012026016 +n58012026017 +n58012026018 +n58012026019 +n58012026020 +n58012026021 +n58012026022 +n58012026023 +n58012027002 +n58012027001 +n58012027003 +n58012027004 +n58012027005 +n58012027006 +n58012027007 +n58012027008 +n58012027009 +n58012027010 +n58012027011 +n58012027012 +n58012027013 +n58012027014 +n58012027015 +n58012027016 +n58012028001 +n58012028002 +n58012028003 +n58012028004 +n58012028005 +n58012028006 +n58012028007 +n58012028008 +n58012028009 +n58012028010 +n58012028011 +n58012028012 +n58012028013 +n58012028014 +n58012028015 +n58012028016 +n58012029002 +n58012029001 +n58012029003 +n58012029004 +n58012029005 +n58012029006 +n58012029007 +n58013001001 +n58013001002 +n58013001003 +n58013002001 +n58013002002 +n58013002003 +n58013002004 +n58013002007 +n58013002005 +n58013002006 +n58013002008 +n58013002009 +n58013002010 +n58013002011 +n58013003001 +n58013003002 +n58013003003 +n58013003004 +n58013003005 +n58013003006 +n58013003007 +n58013003008 +n58013003009 +n58013003010 +n58013003011 +n58013003012 +n58013003013 +n58013004001 +n58013004002 +n58013004003 +n58013004004 +n58013004005 +n58013004006 +n58013004007 +n58013004008 +n58013004009 +n58013004011 +n58013004010 +n58013004012 +n58013004013 +n58013004014 +n58013004015 +n58013004016 +n58013005001 +n58013005002 +n58013005003 +n58013005004 +n58013005005 +n58013005006 +n58013005008 +n58013005007 +n58013005009 +n58013005010 +n58013005011 +n58013005012 +n58013005013 +n58013005014 +n58013005015 +n58013005016 +n58013005017 +n58013005018 +n58013006001 +n58013006002 +n58013006003 +n58013006004 +n58013006005 +n58013006006 +n58013006007 +n58013006008 +n58013006009 +n58013006010 +n58013006011 +n58013006012 +n58013006013 +n58013007001 +n58013007002 +n58013007003 +n58013007004 +n58013007005 +n58013007006 +n58013007007 +n58013007008 +n58013007009 +n58013007010 +n58013007011 +n58013007012 +n58013007014 +n58013007015 +n58013007016 +n58013007017 +n58013007013 +n58013007018 +n58013007019 +n58013007020 +n58013008001 +n58013008002 +n58013008003 +n58013008004 +n58013008005 +n58013008006 +n58013008007 +n58013008008 +n58013008009 +n58013008010 +n58013008011 +n58013009001 +n58013009002 +n58013009003 +n58013009004 +n58013009005 +n58013009006 +n58013009008 +n58013009007 +n58013009009 +n58013009010 +n58013009011 +n58013009012 +n58013009013 +n58013009014 +n58013009015 +n58013009016 +n58013009017 +n58013009018 +n58013009019 +n58013009020 +n58013010001 +n58013010002 +n58013010003 +n58013010004 +n58013010005 +n58013010006 +n58013010007 +n58013010008 +n58013010009 +n58013010010 +n58013010011 +n58013010012 +n58013011002 +n58013011003 +n58013011001 +n58013011004 +n58013011005 +n58013011006 +n58013011007 +n58013011008 +n58013011009 +n58013011010 +n58013011011 +n58013011012 +n58013011013 +n58013011014 +n58013011015 +n58013011016 +n58013011017 +n58013011018 +n58013011019 +n58013011020 +n58013011021 +n58013012001 +n58013012002 +n58013012003 +n58013012004 +n58013012005 +n58013012006 +n58013012007 +n58013012008 +n58013012009 +n58013012010 +n58013012011 +n58013012012 +n58013012013 +n58013012014 +n58013012015 +n58013013001 +n58013013002 +n58013013003 +n58013013004 +n58013013005 +n58013013006 +n58013013007 +n58013013008 +n58013013009 +n58013013010 +n58013013011 +n58013014002 +n58013014001 +n58013014003 +n58013014004 +n58013014005 +n58013014006 +n58013014007 +n58013014008 +n58013014009 +n58013014010 +n58013015003 +n58013015001 +n58013015002 +n58013015004 +n58013015007 +n58013015008 +n58013015009 +n58013015010 +n58013015005 +n58013015006 +n58013015011 +n58013015012 +n58013015013 +n58013015014 +n58013015015 +n58013015016 +n58013015017 +n58013015018 +n58013016002 +n58013016001 +n58013016003 +n58013016004 +n58013016005 +n58013016006 +n58013016007 +n58013016009 +n58013016008 +n58013016010 +n58013016011 +n58013016012 +n58013016013 +n58013017001 +n58013017002 +n58013017003 +n58013017004 +n58013017005 +n58013017006 +n58013017008 +n58013017007 +n58013017009 +n58013017010 +n58013017011 +n58013017012 +n58013017013 +n58013017014 +n58013017015 +n58013017016 +n58013017017 +n58013017018 +n58013017019 +n58013017020 +n58013017021 +n58013017022 +n58013017023 +n58013017024 +n58013017026 +n58013017025 +n58013017027 +n58013017028 +n58013018001 +n58013018002 +n58013018003 +n58013018005 +n58013018004 +n58013018006 +n58013018007 +n58013018008 +n58013018009 +n58013018010 +n58013018011 +n58013018012 +n58013018014 +n58013018013 +n58013019002 +n58013019001 +n58013019003 +n58013019004 +n58013019005 +n58013019006 +n58013019007 +n58013019008 +n58013019009 +n58013020002 +n58013020001 +n58013020003 +n58013020004 +n58013020005 +n58013020006 +n58013020007 +n58013020008 +n58013020009 +n58013020016 +n58013020017 +n58013020018 +n58013020019 +n58013020010 +n58013020011 +n58013020012 +n58013020013 +n58013020014 +n58013020015 +n58013020020 +n58013020021 +n58013020022 +n58013020023 +n58013021001 +n58013021002 +n58013021003 +n58013021004 +n58013021005 +n58013021006 +n58013021007 +n58013021008 +n58013021009 +n58013021010 +n58013021011 +n58013021012 +n58013021013 +n58013021014 +n58013021015 +n58013021016 +n58013021017 +n58013021018 +n58013021019 +n58013021020 +n58013021021 +n58013021022 +n58013021023 +n58013021024 +n58013021025 +n58013021026 +n58013021027 +n58013021028 +n58013021029 +n58013021030 +n58013022002 +n58013022001 +n58013022003 +n58013022004 +n58013022005 +n58013022006 +n58013022007 +n58013022008 +n58013022009 +n58013022011 +n58013022010 +n58013022012 +n58013022013 +n58013022014 +n58013022015 +n58013023001 +n58013023002 +n58013023003 +n58013023004 +n58013023005 +n58013023006 +n58013023007 +n58013023008 +n58013023009 +n58013023010 +n58013023011 +n58013023012 +n58013023013 +n58013024001 +n58013024002 +n58013024003 +n58013024004 +n58013024005 +n58013024006 +n58013024007 +n58013024008 +n58013024009 +n58013024010 +n58013024011 +n58013024012 +n58013024013 +n58013024014 +n58013024015 +n58013025001 +n58013025002 +n58013025003 +n58013025004 +n58013025005 +n59001001001 +n59001001002 +n59001001003 +n59001001004 +n59001001005 +n59001001006 +n59001001007 +n59001001008 +n59001001009 +n59001001010 +n59001001011 +n59001001012 +n59001001013 +n59001001014 +n59001001015 +n59001002004 +n59001002005 +n59001002001 +n59001002002 +n59001002003 +n59001002006 +n59001002007 +n59001002009 +n59001002008 +n59001003001 +n59001003002 +n59001003003 +n59001003004 +n59001003005 +n59001003006 +n59001003007 +n59001003008 +n59001003009 +n59001004002 +n59001004001 +n59001004003 +n59001004004 +n59001004005 +n59001004006 +n59001004007 +n59001004008 +n59001004009 +n59001004010 +n59001004011 +n59001004012 +n59001004013 +n59001004014 +n59001005002 +n59001005001 +n59001005003 +n59001005004 +n59001005005 +n59001005006 +n59001005007 +n59001005008 +n59001005009 +n59001005010 +n59001005012 +n59001005013 +n59001005014 +n59001005015 +n59001005016 +n59001005011 +n59001005017 +n59001005018 +n59001005019 +n59001006002 +n59001006001 +n59001006003 +n59001006004 +n59001006005 +n59001006006 +n59001006008 +n59001006007 +n59001006009 +n59001006010 +n59001006011 +n59001006012 +n59001006013 +n59001006014 +n59001006015 +n59001007002 +n59001007001 +n59001007003 +n59001007004 +n59001007005 +n59001007006 +n59001007007 +n59001007008 +n59001007009 +n59001007010 +n59001007011 +n59001007012 +n59001008001 +n59001008002 +n59001008003 +n59001008004 +n59001008005 +n59001008006 +n59001008007 +n59001008008 +n59001009002 +n59001009001 +n59001009003 +n59001009004 +n59001009005 +n59001009006 +n59001009007 +n59001009008 +n59001009009 +n59001009010 +n59001010002 +n59001010001 +n59001010003 +n59001010004 +n59001010005 +n59001010006 +n59001010007 +n59001010008 +n59001010009 +n59001010010 +n59001010011 +n59001010012 +n59001011002 +n59001011001 +n59001011003 +n59001011004 +n59001011005 +n59001011006 +n59001011007 +n59001011008 +n59001011009 +n59001011010 +n59001011011 +n59001011012 +n59001011013 +n59001011014 +n59001011015 +n59001011016 +n59001011017 +n59001011018 +n59001011019 +n59001011020 +n59001011021 +n59001011022 +n59001011023 +n59001011024 +n59001011025 +n59001011026 +n59001011027 +n59001011028 +n59001011029 +n59001011030 +n59001011031 +n59001011032 +n59001012001 +n59001012002 +n59001012003 +n59001012004 +n59001012005 +n59001012006 +n59001012007 +n59001012008 +n59001012009 +n59001012010 +n59001012011 +n59001012012 +n59001012013 +n59001012014 +n59001012015 +n59001012016 +n59001012017 +n59001012018 +n59001013001 +n59001013002 +n59001013003 +n59001013004 +n59001013005 +n59001013006 +n59001013007 +n59001013009 +n59001013008 +n59001013010 +n59001013011 +n59001013012 +n59001013013 +n59001013015 +n59001013014 +n59001013016 +n59001013017 +n59001014002 +n59001014001 +n59001014003 +n59001014004 +n59001014005 +n59001014006 +n59001014007 +n59001014008 +n59001014009 +n59001014010 +n59001015001 +n59001015002 +n59001015003 +n59001015004 +n59001015005 +n59001015006 +n59001015008 +n59001015007 +n59001015009 +n59001015010 +n59001015011 +n59001015012 +n59001016001 +n59001016002 +n59001016003 +n59001016004 +n59001016005 +n59001017001 +n59001017002 +n59001017003 +n59001017004 +n59001017005 +n59001017006 +n59001017007 +n59001017008 +n59001017009 +n59001017010 +n59001017011 +n59001017012 +n59001017013 +n59001017014 +n59001017015 +n59001017016 +n59001017017 +n59001017018 +n59001017019 +n59001017020 +n59001017021 +n59001017022 +n59001017023 +n59001018001 +n59001018002 +n59001018003 +n59001018004 +n59001018005 +n59001018006 +n59001018007 +n59001018008 +n59001018009 +n59001018010 +n59001018011 +n59001018012 +n59001018013 +n59001018014 +n59001019001 +n59001019002 +n59001019003 +n59001019004 +n59001019006 +n59001019005 +n59001019007 +n59001019008 +n59001019009 +n59001019010 +n59001019011 +n59001019012 +n59001019013 +n59001019014 +n59001019015 +n59001019016 +n59001019017 +n59001019018 +n59001019019 +n59001020002 +n59001020001 +n59001020003 +n59001020004 +n59001020005 +n59001020006 +n59001020007 +n59001021001 +n59001021002 +n59001021003 +n59001021004 +n59001021005 +n59001021006 +n59001021007 +n59001021008 +n59001021009 +n59001021010 +n59001021011 +n59001021012 +n59001021013 +n59001021014 +n59001021015 +n59001021016 +n59001021017 +n59001021018 +n59001021019 +n59001022002 +n59001022001 +n59001022003 +n59001022004 +n59001022005 +n59001022006 +n59001022007 +n59001022008 +n59001022009 +n59001022010 +n59001023001 +n59001023002 +n59001023003 +n59001023004 +n59001023005 +n59001023006 +n59001023007 +n59001023008 +n59001023009 +n59001023010 +n59001023011 +n59001023012 +n59001023013 +n59001023014 +n59001023015 +n59001023016 +n59001023017 +n59001023018 +n59001023019 +n59001023020 +n59001024002 +n59001024001 +n59001024003 +n59001024004 +n59001024005 +n59001024006 +n59001024007 +n59001024008 +n59001024009 +n59001024010 +n59001025002 +n59001025001 +n59001025003 +n59001025004 +n59001025005 +n59001025006 +n59001025007 +n59001025008 +n59001025009 +n59001025010 +n59001025011 +n59001025015 +n59001025012 +n59001025013 +n59001025014 +n59001025016 +n59001025017 +n59001025018 +n59001025019 +n59001025020 +n59001025021 +n59001025022 +n59001025023 +n59001025024 +n59001025025 +n59001026001 +n59001026002 +n59001026003 +n59001026004 +n59001026005 +n59001026006 +n59001026007 +n59001026008 +n59001026009 +n59001026010 +n59001026011 +n59001026012 +n59001026013 +n59001026014 +n59001026016 +n59001026017 +n59001026015 +n59001027001 +n59001027002 +n59001027003 +n59001027004 +n59001027005 +n59001027006 +n59001027007 +n59001027008 +n59001027009 +n59001027011 +n59001027010 +n59001027012 +n59001027013 +n59001027014 +n59001027015 +n59001027016 +n59001027017 +n59001027018 +n59001027019 +n59001027020 +n59001027021 +n59001027022 +n59001027023 +n59001027024 +n59001027025 +n59002001001 +n59002001002 +n59002001003 +n59002001004 +n59002001005 +n59002001006 +n59002001007 +n59002001008 +n59002001009 +n59002001010 +n59002001011 +n59002001012 +n59002001013 +n59002001014 +n59002001015 +n59002002002 +n59002002001 +n59002002003 +n59002002004 +n59002002005 +n59002002006 +n59002002007 +n59002002008 +n59002002009 +n59002002010 +n59002002011 +n59002002013 +n59002002012 +n59002002014 +n59002002015 +n59002002016 +n59002002017 +n59002002018 +n59002003002 +n59002003001 +n59002003003 +n59002003004 +n59002003005 +n59002003006 +n59002003007 +n59002003008 +n59002003009 +n59002003010 +n59002003011 +n59002003012 +n59002003013 +n59002003014 +n59002003015 +n59002003016 +n59002003017 +n59002003018 +n59002003019 +n59002003020 +n59002003021 +n59002003022 +n59002003023 +n59002003024 +n59002003025 +n59002003026 +n59002003027 +n59002003028 +n59002004001 +n59002004002 +n59002004003 +n59002004004 +n59002004005 +n59002004006 +n59002004007 +n59002004008 +n59002004009 +n59002005001 +n59002005002 +n59002005003 +n59002005004 +n59002005005 +n59002005006 +n59002005007 +n59002005008 +n59002005009 +n59002005010 +n59002005011 +n59002005012 +n59002005013 +n59002005014 +n59002005015 +n59002005016 +n59002005017 +n59002005018 +n59002005019 +n59002005020 +n59002005021 +n59002005022 +n59002005023 +n59002005024 +n59002006002 +n59002006001 +n59002006003 +n59002006004 +n59002006005 +n59002006006 +n59002006007 +n59002006008 +n59002006009 +n59002006010 +n59002006011 +n59002006012 +n59002006013 +n59002006014 +n59002006015 +n59002006016 +n59002007001 +n59002007002 +n59002007003 +n59002007004 +n59002007005 +n59002007006 +n59002007007 +n59002007008 +n59002007009 +n59002007010 +n59002008001 +n59002008002 +n59002008003 +n59002008005 +n59002008004 +n59002008006 +n59002008007 +n59002008008 +n59002008009 +n59002008010 +n59002008011 +n59002008012 +n59002008013 +n59002008014 +n59002008015 +n59002008016 +n59002009002 +n59002009001 +n59002009003 +n59002009004 +n59002009005 +n59002009006 +n59002009007 +n59002009008 +n59002009009 +n59002009010 +n59002009011 +n59002010002 +n59002010001 +n59002010003 +n59002010004 +n59002010005 +n59002010006 +n59002010008 +n59002010007 +n59002010009 +n59002010010 +n59002010011 +n59002010012 +n59002010013 +n59002011002 +n59002011001 +n59002011003 +n59002011004 +n59002011005 +n59002011006 +n59002011007 +n59002011008 +n59002011009 +n59002011011 +n59002011010 +n59002011012 +n59002011013 +n59002011015 +n59002011014 +n59002011016 +n59002011017 +n59002011018 +n59002012001 +n59002012002 +n59002012003 +n59002012004 +n59002012005 +n59002012006 +n59002012007 +n59002012008 +n59002012009 +n59002012011 +n59002012010 +n59002013002 +n59002013001 +n59002013003 +n59002013004 +n59002013005 +n59002013006 +n59002013007 +n59002013008 +n59002013009 +n59002013010 +n59002013011 +n59002014004 +n59002014005 +n59002014001 +n59002014002 +n59002014003 +n59002014006 +n59002014007 +n59002014010 +n59002014008 +n59002014009 +n59002014012 +n59002014011 +n59002014013 +n59002014014 +n59002014015 +n59002014016 +n59002014017 +n59002014018 +n59002014019 +n59002014020 +n59002015001 +n59002015002 +n59002015003 +n59002015004 +n59002015005 +n59002015006 +n59002015007 +n59002015008 +n59002015009 +n59002015010 +n59002015011 +n59002016002 +n59002016001 +n59002016004 +n59002016003 +n59002016005 +n59002016006 +n59002016007 +n59002016008 +n59002016009 +n59002016010 +n59002016011 +n59002016012 +n59002016015 +n59002016013 +n59002016014 +n59002016016 +n59002016017 +n59002016018 +n59002016019 +n59002016020 +n59002016021 +n59002016022 +n59002016023 +n59002017001 +n59002017002 +n59002017003 +n59002017004 +n59002017005 +n59002017006 +n59002017007 +n59002017008 +n59002017009 +n59002017010 +n59002017011 +n59002017012 +n59002018001 +n59002018002 +n59002018003 +n59002018004 +n59002018005 +n59002018006 +n59002018007 +n59002018008 +n59002018009 +n59002018010 +n59002018011 +n59002018012 +n59002018013 +n59002018014 +n59002018015 +n59002018016 +n59002018017 +n59002018018 +n59002018019 +n59002018020 +n59002018021 +n59002018022 +n59002018023 +n59002018024 +n59002018025 +n59002018026 +n59002019001 +n59002019002 +n59002019003 +n59002019004 +n59002019005 +n59002019006 +n59002019007 +n59002019008 +n59002019009 +n59002019010 +n59002019011 +n59002019012 +n59002019013 +n59002019014 +n59002019015 +n59002020002 +n59002020004 +n59002020005 +n59002020006 +n59002020001 +n59002020003 +n59002020007 +n59002020008 +n59002020009 +n59002020010 +n59002020011 +n59002020012 +n59002020013 +n59002020014 +n59002021001 +n59002021002 +n59002021003 +n59002021004 +n59002021005 +n59002021006 +n59002021007 +n59002021008 +n59002021009 +n59002021010 +n59002021011 +n59002021012 +n59002021013 +n59002021014 +n59002021015 +n59002021016 +n59002022001 +n59002022002 +n59002022003 +n59002022004 +n59002022005 +n59002022006 +n59002022007 +n59002022008 +n59002022009 +n59002022010 +n59002022011 +n59002022012 +n59002022013 +n59002022014 +n59002022015 +n59002023001 +n59002023002 +n59002023003 +n59002023004 +n59002023005 +n59002023006 +n59002023008 +n59002023007 +n59002023009 +n59002023010 +n59002023011 +n59002023012 +n59002023013 +n59002023014 +n59002023015 +n59002023016 +n59002023017 +n59002023018 +n59002023019 +n59002023020 +n59002024001 +n59002024002 +n59002024003 +n59002024004 +n59002024005 +n59002024006 +n59002024007 +n59002024008 +n59002024009 +n59002024010 +n59002024011 +n59002025002 +n59002025001 +n59002025003 +n59002025004 +n59002025005 +n59002025006 +n59002025007 +n59002025008 +n59002025009 +n59002025010 +n59002025011 +n59002025012 +n59002025013 +n59002025014 +n59002025015 +n59002025016 +n59002025017 +n59002026002 +n59002026001 +n59002026003 +n59002026004 +n59002026005 +n59002026006 +n59002026007 +n59002026008 +n59002026009 +n59002026010 +n59002026011 +n59002026012 +n59002026013 +n59002026014 +n59002026015 +n59002026016 +n59003001005 +n59003001006 +n59003001001 +n59003001002 +n59003001003 +n59003001004 +n59003001007 +n59003001008 +n59003001009 +n59003001010 +n59003001011 +n59003002002 +n59003002001 +n59003002003 +n59003002004 +n59003002005 +n59003002006 +n59003002007 +n59003002008 +n59003002009 +n59003002010 +n59003002011 +n59003002012 +n59003002013 +n59003002014 +n59003002015 +n59003002016 +n59003002017 +n59003002018 +n59003002019 +n59003003002 +n59003003001 +n59003003003 +n59003003004 +n59003003005 +n59003003006 +n59003003007 +n59003003008 +n59003003009 +n59003003010 +n59003003011 +n59003003012 +n59003003013 +n59003003014 +n59003003015 +n59003003016 +n59003003017 +n59003003018 +n59003003019 +n59003003020 +n59003003021 +n59003004001 +n59003004002 +n59003004003 +n59003004004 +n59003004005 +n59003004006 +n59003004007 +n59003004008 +n59003004009 +n59003004010 +n59003004011 +n59003004012 +n59003004013 +n59003004014 +n59003004015 +n59003004016 +n59003004017 +n59003004018 +n59003004019 +n59003004020 +n59003004021 +n59003005001 +n59003005002 +n59003005003 +n59003005004 +n59003005005 +n59003005006 +n59003005007 +n59003005008 +n59003005009 +n59003005010 +n59003005011 +n59003005012 +n59003005013 +n59003005014 +n59003005015 +n59003005016 +n59003006001 +n59003006002 +n59003006003 +n59003006004 +n59003006005 +n59003006006 +n59003006007 +n59003006008 +n59003006009 +n59003006010 +n59003006011 +n59003006012 +n59003006013 +n59003006014 +n59003006015 +n59003006016 +n59003006017 +n59003006018 +n59003006019 +n59003006020 +n59003006021 +n59003006022 +n59003006023 +n59003006024 +n59003006025 +n59003006026 +n59003006027 +n59003006028 +n59003006029 +n59003006030 +n59003006031 +n59003007002 +n59003007001 +n59003007003 +n59003007005 +n59003007004 +n59003007006 +n59003007007 +n59003007009 +n59003007008 +n59003007010 +n59003007011 +n59003007012 +n59003007013 +n59003007014 +n59003007015 +n59003007016 +n59003007017 +n59003007018 +n59003008002 +n59003008001 +n59003008003 +n59003008005 +n59003008006 +n59003008004 +n59003008007 +n59003008008 +n59003008009 +n59003008010 +n59003008011 +n59003008012 +n59003009001 +n59003009002 +n59003009003 +n59003009004 +n59003009005 +n59003009006 +n59003009007 +n59003009008 +n59003009009 +n59003009010 +n59003009011 +n59003009012 +n59003009013 +n59003009014 +n59003009015 +n59003009016 +n59003009017 +n59003009018 +n59003010001 +n59003010002 +n59003010003 +n59003010004 +n59003010005 +n59003010006 +n59003010007 +n59003010008 +n59003010011 +n59003010012 +n59003010009 +n59003010010 +n59003010013 +n59003010014 +n59003010015 +n59003011001 +n59003011002 +n59003011003 +n59003011004 +n59003011005 +n59003011006 +n59003011007 +n59003011008 +n59003011009 +n59003011010 +n59003011011 +n59003011012 +n59003011013 +n59003012003 +n59003012004 +n59003012001 +n59003012002 +n59003012005 +n59003012006 +n59003012007 +n59003012008 +n59003012009 +n59003012010 +n59003012011 +n59003012012 +n59003012014 +n59003012013 +n59003012015 +n59003013001 +n59003013002 +n59003013003 +n59003013004 +n59003013005 +n59003013006 +n59003013007 +n59003013008 +n59003013009 +n59003013010 +n59003013011 +n59003013012 +n59003013013 +n59003013014 +n59003013015 +n59003013016 +n59003013017 +n59003014002 +n59003014001 +n59003014005 +n59003014003 +n59003014004 +n59003014006 +n59003014007 +n59003014008 +n59003014009 +n59003014010 +n59003014011 +n59003014012 +n59003014013 +n59003014014 +n59003014015 +n59003014016 +n59003014017 +n59003014018 +n59003015001 +n59003015002 +n59003015003 +n59003015004 +n59003015005 +n59003015006 +n59003015007 +n59003015008 +n59003015009 +n59003015010 +n59003015011 +n59003016002 +n59003016001 +n59003016003 +n59003016004 +n59003016005 +n59003016006 +n59003016007 +n59003016008 +n59003016009 +n59003016010 +n59003016011 +n59003017002 +n59003017001 +n59003017003 +n59003017004 +n59003017005 +n59003017006 +n59003017007 +n59003017008 +n59003017009 +n59003017010 +n59003017011 +n59003017012 +n59003017013 +n59003017014 +n59003017015 +n59003017016 +n59003017017 +n59003017018 +n59003017019 +n59003018002 +n59003018001 +n59003018003 +n59003018004 +n59003018005 +n59003018006 +n59003018007 +n59003018008 +n59003018009 +n59004001001 +n59004001002 +n59004001003 +n59004001004 +n59004001005 +n59004001006 +n59004001007 +n59004001008 +n59004001009 +n59004001010 +n59004001011 +n59004001012 +n59004001013 +n59004001014 +n59004001015 +n59004001016 +n59004001017 +n59004001018 +n59004001019 +n59004002001 +n59004002002 +n59004002003 +n59004002004 +n59004002005 +n59004002006 +n59004002007 +n59004002008 +n59004002009 +n59004002010 +n59004002011 +n59004002012 +n59004002013 +n59004002014 +n59004002015 +n59004002016 +n59004002017 +n59004002018 +n59004002019 +n59004002020 +n59004002021 +n59004003001 +n59004003002 +n59004003003 +n59004003004 +n59004003005 +n59004003006 +n59004003007 +n59004003008 +n59004003009 +n59004003010 +n59004003011 +n59004003012 +n59004003013 +n59004004001 +n59004004002 +n59004004003 +n59004004004 +n59004004005 +n59004004006 +n59004004007 +n59004004008 +n59004004009 +n59004004010 +n59004004011 +n59004004012 +n59004004015 +n59004004014 +n59004004013 +n59004004016 +n59004004018 +n59004004017 +n59004004019 +n59004004020 +n59004004021 +n59004004022 +n59004004023 +n59004004024 +n59004005001 +n59004005002 +n59004005003 +n59004005004 +n59004005005 +n59004005006 +n59004005007 +n59004005008 +n59004005009 +n59004005010 +n59004005011 +n59004005012 +n59004005013 +n59004005014 +n59004005015 +n59004005016 +n59004006002 +n59004006001 +n59004006004 +n59004006003 +n59004006005 +n59004006006 +n59004006007 +n59004006008 +n59004006009 +n59004006010 +n59004006012 +n59004006011 +n59004006013 +n59004006014 +n59004007002 +n59004007001 +n59004007003 +n59004007004 +n59004007006 +n59004007005 +n59004007007 +n59004007008 +n59004007009 +n59004007010 +n59004007011 +n59004007012 +n59004008001 +n59004008002 +n59004008003 +n59004008004 +n59004008005 +n59004008006 +n59004008007 +n59004008008 +n59004008009 +n59004008010 +n59004008011 +n59004008012 +n59004008013 +n59004008014 +n59004008015 +n59004008016 +n59004008017 +n59004008018 +n59004009001 +n59004009002 +n59004009003 +n59004009004 +n59004009005 +n59004009006 +n59004009007 +n59004009008 +n59004009009 +n59004009010 +n59004009011 +n59004010001 +n59004010002 +n59004010003 +n59004010004 +n59004010005 +n59004010006 +n59004011001 +n59004011002 +n59004011003 +n59004011004 +n59004011005 +n59004011006 +n59004011007 +n59004011008 +n59004011009 +n59004011010 +n59004011011 +n59004011012 +n59004011013 +n59004011014 +n59004011015 +n59004011016 +n59004011017 +n59004011019 +n59004011018 +n59004011020 +n59004011021 +n59004011023 +n59004011022 +n59004011024 +n59004011025 +n59004011026 +n59004011027 +n59004012001 +n59004012002 +n59004012003 +n59004012004 +n59004012005 +n59004012006 +n59004012007 +n59004012008 +n59004012009 +n59004012010 +n59004012012 +n59004012011 +n59004012013 +n59004012014 +n59004012015 +n59004012016 +n59004012017 +n59004012018 +n59004013001 +n59004013002 +n59004013003 +n59004013004 +n59004013005 +n59004013006 +n59004013007 +n59004013008 +n59004013009 +n59004013010 +n59004013011 +n59004013012 +n59004013013 +n59004013014 +n59004013015 +n59004013016 +n59004013017 +n59004013018 +n59004013019 +n59004013020 +n59004014001 +n59004014002 +n59004014003 +n59004014004 +n59004014005 +n59004014006 +n59004014007 +n59004014008 +n59004014009 +n59004014011 +n59004014012 +n59004014010 +n59004014013 +n59004014014 +n59004014015 +n59004014016 +n59004014017 +n59004014018 +n59004014019 +n59004015001 +n59004015002 +n59004015003 +n59004015004 +n59004015005 +n59004015006 +n59004015007 +n59004015008 +n59004015009 +n59004015010 +n59004015011 +n59004015012 +n59004015013 +n59004015014 +n59004015015 +n59004016002 +n59004016001 +n59004016003 +n59004016004 +n59004016005 +n59004016006 +n59004016007 +n59004016008 +n59004016009 +n59004016010 +n59004016011 +n59004016012 +n59004017002 +n59004017001 +n59004017003 +n59004017004 +n59004017005 +n59004017006 +n59004017007 +n59004017008 +n59004017009 +n59004017010 +n59005001001 +n59005001002 +n59005001003 +n59005001004 +n59005001005 +n59005001006 +n59005001007 +n59005001008 +n59005001009 +n59005001010 +n59005001011 +n59005001012 +n59005002001 +n59005002002 +n59005002003 +n59005002004 +n59005002005 +n59005002006 +n59005002007 +n59005002008 +n59005002009 +n59005002010 +n59005003001 +n59005003002 +n59005003003 +n59005003004 +n59005003005 +n59005003006 +n59005003007 +n59005003008 +n59005003009 +n59005003010 +n59005003011 +n59005003012 +n59005003013 +n59005003014 +n59005003015 +n59005003016 +n59005003017 +n59005003018 +n59005003019 +n59005003020 +n59005003021 +n59005003022 +n59005003023 +n59005003024 +n59005003025 +n59005003026 +n59005004001 +n59005004002 +n59005004003 +n59005004004 +n59005004005 +n59005004006 +n59005004007 +n59005004008 +n59005004009 +n59005004010 +n59005004011 +n59005004012 +n59005004013 +n59005004014 +n59005004015 +n59005004016 +n59005004017 +n59005004018 +n59005004019 +n59005004020 +n59005004021 +n59005004022 +n59005004023 +n59005004024 +n59005004025 +n59005004026 +n59005005001 +n59005005002 +n59005005003 +n59005005004 +n59005005005 +n59005005006 +n59005005007 +n59005005008 +n59005005009 +n59005005010 +n59005005011 +n59005005012 +n59005005013 +n59005006001 +n59005006002 +n59005006003 +n59005006004 +n59005006005 +n59005006006 +n59005006007 +n59005007002 +n59005007003 +n59005007001 +n59005007004 +n59005007005 +n59005007006 +n59005007007 +n59005007008 +n59005007009 +n59005007010 +n59005007011 +n59005007012 +n59005007013 +n59005007014 +n59005007015 +n59005007016 +n59005007017 +n59005007018 +n59005007019 +n59005007020 +n59005007021 +n59005007022 +n59005007023 +n59005007024 +n59005007025 +n59005008001 +n59005008002 +n59005008003 +n59005008004 +n59005008005 +n59005008006 +n59005008007 +n59005008008 +n59005008009 +n59005008010 +n59005008011 +n59005008012 +n59005008013 +n59005009003 +n59005009001 +n59005009002 +n59005009004 +n59005009005 +n59005009006 +n59005009007 +n59005009008 +n59005009009 +n59005009010 +n59005009011 +n59005009012 +n59005009013 +n59005009014 +n59005009015 +n59005010003 +n59005010002 +n59005010001 +n59005010004 +n59005010005 +n59005010006 +n59005010007 +n59005010008 +n59005010009 +n59005010010 +n59005010011 +n59005010012 +n59005010013 +n59005010014 +n59005010015 +n59005010016 +n59005011001 +n59005011002 +n59005011003 +n59005011004 +n59005011005 +n59005011006 +n59005011007 +n59005011008 +n59005011009 +n59005011010 +n59005011011 +n59005011012 +n59005011013 +n59005011014 +n59005011016 +n59005011017 +n59005011018 +n59005011015 +n59005011019 +n59005011020 +n59005012003 +n59005012004 +n59005012005 +n59005012001 +n59005012002 +n59005012006 +n59005012007 +n59005012008 +n59005012009 +n59005012010 +n59005012011 +n59005012012 +n59005012013 +n59005012014 +n59005012015 +n59005012016 +n59005012017 +n59005012019 +n59005012018 +n59005012020 +n59005012021 +n59005012022 +n59005012023 +n59005012024 +n59005012025 +n59005012026 +n59005012027 +n59005012028 +n59005012029 +n59005012030 +n59005012031 +n59005012032 +n59005013001 +n59005013002 +n59005013003 +n59005013004 +n59005013005 +n59005013006 +n59005013007 +n59005013008 +n59005014001 +n59005014002 +n59005014003 +n59005014004 +n59005014005 +n59005014006 +n59005014007 +n59005014008 +n59005014009 +n59005014010 +n59005014011 +n59005014012 +n59005014013 +n59005014014 +n59005014015 +n59005014016 +n59005014017 +n59005014018 +n59005014019 +n59005014020 +n59005015001 +n59005015002 +n59005015003 +n59005015004 +n59005015005 +n59005015006 +n59005015007 +n59005015008 +n59005015009 +n59005015010 +n59005015011 +n59005015012 +n59005015013 +n59005015014 +n59005015015 +n59005015016 +n59005015017 +n59005015018 +n59005015019 +n59005016002 +n59005016001 +n59005016003 +n59005016004 +n59005016005 +n59005016006 +n59005016007 +n59005016008 +n59005016009 +n59005016010 +n59005016011 +n59005016012 +n59005016013 +n59005016014 +n59005016015 +n59005016016 +n59005017001 +n59005017003 +n59005017002 +n59005017004 +n59005017005 +n59005017006 +n59005017007 +n59005017008 +n59005017009 +n59005017010 +n59005017011 +n59005017012 +n59005017013 +n59005017014 +n59005017015 +n59005017016 +n59005017017 +n59005017018 +n59005017019 +n59005017020 +n59005017021 +n59005017022 +n59005018001 +n59005018002 +n59005018003 +n59005018004 +n59005018005 +n59005018006 +n59005018007 +n59005018008 +n59005018009 +n59005018010 +n59005018011 +n59005018012 +n59005018013 +n59005018014 +n59005018015 +n59005019001 +n59005019002 +n59005019003 +n59005019004 +n59005019005 +n59005019006 +n59005019007 +n59005019008 +n59005019009 +n59005019010 +n59005019011 +n59005019012 +n59005019013 +n59005019014 +n59005020001 +n59005020002 +n59005020003 +n59005020004 +n59005020005 +n59005020006 +n59005020007 +n59005020008 +n59005020009 +n59005020010 +n59005020011 +n59005020012 +n59005020013 +n59005020014 +n59005020015 +n59005020016 +n59005020017 +n59005020018 +n60001001001 +n60001001002 +n60001001003 +n60001001004 +n60001001005 +n60001001006 +n60001001007 +n60001001008 +n60001001009 +n60001001010 +n60001001011 +n60001001012 +n60001001013 +n60001002001 +n60001002002 +n60001002003 +n60001002004 +n60001002005 +n60001002006 +n60001002007 +n60001002008 +n60001002009 +n60001002010 +n60001002011 +n60001002012 +n60001002013 +n60001002014 +n60001002015 +n60001002017 +n60001002018 +n60001002016 +n60001002019 +n60001003001 +n60001003002 +n60001003003 +n60001003004 +n60001003005 +n60001003006 +n60001003007 +n60001003008 +n60001003009 +n60001003010 +n60001003011 +n60001003012 +n60001003013 +n60001003014 +n60001003015 +n60001003016 +n60001003017 +n60001003018 +n60001003019 +n60001003020 +n60001003021 +n60001003022 +n60001003023 +n60001003024 +n60001003025 +n60001003026 +n60001003027 +n60001004001 +n60001004002 +n60001004003 +n60001004004 +n60001004005 +n60001004006 +n60001004007 +n60001004008 +n60001004009 +n60001004010 +n60001004011 +n60001004012 +n60001005001 +n60001005002 +n60001005003 +n60001005004 +n60001005005 +n60001005006 +n60001005007 +n60001005008 +n60001005009 +n60001005010 +n60001005011 +n60001005012 +n60001005013 +n60001005014 +n60001006001 +n60001006002 +n60001006003 +n60001006006 +n60001006004 +n60001006005 +n60001006007 +n60001006008 +n60001006009 +n60001006010 +n60001006011 +n60001007001 +n60001007002 +n60001007003 +n60001007004 +n60001007005 +n60001007006 +n60001007007 +n60001007008 +n60001007009 +n60001007010 +n60001007013 +n60001007011 +n60001007012 +n60001007014 +n60001007015 +n60001007016 +n60001007017 +n60001007018 +n60001007019 +n60001007020 +n60001007021 +n60001007022 +n60001007023 +n60001007024 +n60001007025 +n60001008001 +n60001008002 +n60001008003 +n60001008004 +n60001008011 +n60001008005 +n60001008006 +n60001008007 +n60001008008 +n60001008009 +n60001008010 +n60001008012 +n60001008013 +n60001008014 +n60001008015 +n60001008016 +n60001009001 +n60001009002 +n60001009003 +n60001009004 +n60001009005 +n60001009006 +n60001009007 +n60001010001 +n60001010002 +n60001010003 +n60001010004 +n60001010005 +n60001010006 +n60001010007 +n60001010008 +n60001010009 +n60001010010 +n60001010011 +n60001010012 +n60001010013 +n60001010014 +n60001011001 +n60001011002 +n60001011003 +n60001011004 +n60001011005 +n60001011006 +n60001011007 +n60001011008 +n60001011009 +n60001011010 +n60001011011 +n60001011012 +n60001011013 +n60001011014 +n60001011015 +n60001011016 +n60001011017 +n60001011018 +n60001011019 +n60001011020 +n60001011021 +n60001011022 +n60001012001 +n60001012002 +n60001012003 +n60001012004 +n60001012005 +n60001012007 +n60001012006 +n60001012008 +n60001012009 +n60001012010 +n60001012011 +n60001012012 +n60001012013 +n60001012014 +n60001012015 +n60001012016 +n60001012017 +n60001012018 +n60001012019 +n60001012020 +n60001012021 +n60001012022 +n60001012023 +n60001012024 +n60001012025 +n60001012028 +n60001012026 +n60001012027 +n60001013001 +n60001013002 +n60001013003 +n60001013004 +n60001013005 +n60001013006 +n60001013007 +n60001013008 +n60001013009 +n60001013010 +n60001013011 +n60001013012 +n60001013013 +n60001013014 +n60001013015 +n60001013016 +n60001013017 +n60001013018 +n60001013019 +n60001014001 +n60001014002 +n60001014003 +n60001014004 +n60001014005 +n60001014006 +n60001014007 +n60001014008 +n60001014009 +n60001014010 +n60001014011 +n60001014012 +n60001015001 +n60001015002 +n60001015003 +n60001015004 +n60001015005 +n60001015006 +n60001015007 +n60001015008 +n60001015009 +n60001015010 +n60001015011 +n60001015012 +n60001015013 +n60001016001 +n60001016002 +n60001016003 +n60001016004 +n60001016005 +n60001016006 +n60001016007 +n60001017001 +n60001017002 +n60001017003 +n60001017004 +n60001017005 +n60001017006 +n60001017007 +n60001017008 +n60001017009 +n60001017010 +n60001017011 +n60001017012 +n60001017013 +n60001017014 +n60001017015 +n60001017016 +n60001017017 +n60001017018 +n60001017019 +n60001018001 +n60001018002 +n60001018003 +n60001018004 +n60001018005 +n60001018006 +n60001018007 +n60001018008 +n60001018009 +n60001018010 +n60001018011 +n60001018012 +n60001018013 +n60001018014 +n60001019001 +n60001019002 +n60001019003 +n60001019004 +n60001019005 +n60001019006 +n60001019007 +n60001019008 +n60001019009 +n60001020002 +n60001020001 +n60001020003 +n60001020004 +n60001020005 +n60001020007 +n60001020006 +n60001020008 +n60001020009 +n60001020010 +n60001020011 +n60001020012 +n60001020013 +n60001021001 +n60001021002 +n60001021003 +n60001021004 +n60001021005 +n60001021006 +n60001021007 +n60001021008 +n60001021009 +n60001021010 +n60001021011 +n60001021012 +n60001021013 +n60001021014 +n60001021015 +n60001021016 +n60001021017 +n60001021018 +n60001021019 +n60001021020 +n60001021021 +n60001021022 +n60001021023 +n60001021024 +n60001022001 +n60001022002 +n60001022003 +n60001022004 +n60001022005 +n60001022006 +n60001022007 +n60001022008 +n60001022009 +n60001022010 +n60001022011 +n60001022012 +n60001022013 +n60001022014 +n60001022015 +n60001022016 +n60001022017 +n60001023001 +n60001023002 +n60001023003 +n60001023004 +n60001023005 +n60001023006 +n60001023007 +n60001023008 +n60001023009 +n60001023011 +n60001023010 +n60001023012 +n60001023013 +n60001024001 +n60001024002 +n60001024003 +n60001024004 +n60001024005 +n60001024006 +n60001024007 +n60001024008 +n60001024009 +n60001024010 +n60001024011 +n60001024012 +n60001024013 +n60001024014 +n60001024015 +n60001024016 +n60001024017 +n60001024018 +n60001024019 +n60001025002 +n60001025001 +n60001025003 +n60001025004 +n60001025005 +n60001025006 +n60001025007 +n60001025008 +n60001025010 +n60001025009 +n60001025011 +n60001025012 +n60001025013 +n60001025014 +n60001025015 +n60001025016 +n60001025017 +n60002001002 +n60002001001 +n60002001003 +n60002001004 +n60002001005 +n60002001006 +n60002001007 +n60002001008 +n60002001009 +n60002001010 +n60002001011 +n60002001012 +n60002001013 +n60002001014 +n60002002001 +n60002002002 +n60002002003 +n60002002004 +n60002002005 +n60002002006 +n60002002007 +n60002002008 +n60002002009 +n60002002010 +n60002002011 +n60002002012 +n60002002013 +n60002002014 +n60002003001 +n60002003002 +n60002003003 +n60002003004 +n60002003005 +n60002003006 +n60002004003 +n60002004001 +n60002004002 +n60002004004 +n60002004005 +n60002004008 +n60002004006 +n60002004007 +n60002004009 +n60002004011 +n60002004010 +n60002004012 +n60002004013 +n60002004014 +n60002005001 +n60002005002 +n60002005003 +n60002005004 +n60002005005 +n60002005006 +n60002005007 +n60002005008 +n60002005009 +n60002005010 +n60002005011 +n60002005012 +n60002005013 +n60002005014 +n60002005015 +n60002005016 +n60002005017 +n60002005018 +n60002005019 +n60002006001 +n60002006002 +n60002006003 +n60002006004 +n60002006005 +n60002006006 +n60002006007 +n60002006008 +n60002006009 +n60002006010 +n60002006011 +n60002006012 +n60002006013 +n60002006014 +n60002006015 +n60002006016 +n60002006017 +n60002006018 +n60002006019 +n60002006020 +n60002007002 +n60002007003 +n60002007004 +n60002007001 +n60002007005 +n60002007006 +n60002007008 +n60002007007 +n60002007009 +n60002007010 +n60002007011 +n60002007012 +n60002007013 +n60002007014 +n60002007015 +n60002007016 +n60002007017 +n60002007018 +n60002008001 +n60002008002 +n60002008003 +n60002008004 +n60002008005 +n60002008006 +n60002008007 +n60002008008 +n60002008009 +n60002008010 +n60002008011 +n60002008012 +n60002008013 +n60002008014 +n60002008015 +n60002009002 +n60002009001 +n60002009003 +n60002009004 +n60002009005 +n60002009006 +n60002009007 +n60002009008 +n60002009009 +n60002009010 +n60002009011 +n60002009012 +n60002009015 +n60002009013 +n60002009014 +n60002009016 +n60002009017 +n60002009018 +n60002009019 +n60002009020 +n60002009021 +n60002009022 +n60002009023 +n60002009024 +n60002009025 +n60002010001 +n60002010002 +n60002010003 +n60002010004 +n60002010006 +n60002010005 +n60002010007 +n60002010008 +n60002010009 +n60002010010 +n60002010011 +n60002010013 +n60002010012 +n60002010014 +n60002011001 +n60002011002 +n60002011003 +n60002011004 +n60002011005 +n60002011006 +n60002011007 +n60002011008 +n60002011009 +n60002011010 +n60002011011 +n60002011012 +n60002011013 +n60002011014 +n60002011015 +n60002012001 +n60002012002 +n60002012003 +n60002012004 +n60002012005 +n60002012006 +n60002012007 +n60002012008 +n60002012009 +n60002012010 +n60002012011 +n60002012012 +n60002012013 +n60002012014 +n60002012015 +n60002012016 +n60002012017 +n60002012018 +n60002012019 +n60002012020 +n60002012021 +n60002012022 +n60002012023 +n60002012024 +n60002012025 +n60002012026 +n60002013001 +n60002013005 +n60002013006 +n60002013007 +n60002013002 +n60002013003 +n60002013004 +n60002013008 +n60002013009 +n60002013010 +n60002013011 +n60002014001 +n60002014002 +n60002014003 +n60002014004 +n60002014005 +n60002014006 +n60002014007 +n60002014008 +n60002014009 +n60002014011 +n60002014010 +n60002014012 +n60002015001 +n60002015002 +n60002015003 +n60002015004 +n60002015005 +n60002015006 +n60002015007 +n60002015008 +n60002015009 +n60002015010 +n60002015011 +n60002015012 +n60002015013 +n60002015014 +n60002016001 +n60002016002 +n60002016003 +n60002016004 +n60002016005 +n60002016007 +n60002016006 +n60002016008 +n60002016009 +n60002016010 +n60002016011 +n60002016012 +n60002016013 +n60002016014 +n60002016015 +n60002017001 +n60002017002 +n60002017003 +n60002017004 +n60002017005 +n60002017006 +n60002017007 +n60002017008 +n60002017009 +n60002017010 +n60002017011 +n60002018001 +n60002018002 +n60002018003 +n60002018004 +n60002018005 +n60002018006 +n60002018007 +n60002018008 +n60002018009 +n60002018010 +n60002018011 +n60002018012 +n60002018013 +n60002018014 +n60002018015 +n60002018016 +n60002018017 +n60002018018 +n60002019002 +n60002019001 +n60002019003 +n60002019004 +n60002019005 +n60002019006 +n60002019007 +n60002019008 +n60002019009 +n60002019010 +n60002019011 +n60002019012 +n60002020002 +n60002020001 +n60002020003 +n60002020004 +n60002020005 +n60002020006 +n60002020007 +n60002020008 +n60002020009 +n60002020010 +n60002020011 +n60002020012 +n60002020013 +n60002020014 +n60002020015 +n60002020016 +n60002020017 +n60002020018 +n60002021003 +n60002021001 +n60002021002 +n60002021004 +n60002021005 +n60002021006 +n60002021007 +n60002021008 +n60002021009 +n60002021010 +n60002021011 +n60002021012 +n60002021013 +n60002021014 +n60002021015 +n60002021016 +n60002021017 +n60002021018 +n60002022001 +n60002022002 +n60002022003 +n60002022004 +n60002022005 +n60002022006 +n60002022007 +n60002022008 +n60002022009 +n60002022010 +n60002022011 +n60002023001 +n60002023002 +n60002023003 +n60002023004 +n60002023005 +n60002023006 +n60002023007 +n60002023009 +n60002023008 +n60002023010 +n60002023011 +n60002023012 +n60002024001 +n60002024005 +n60002024002 +n60002024003 +n60002024004 +n60002024006 +n60002024007 +n60002024008 +n60002024009 +n60002024010 +n60002024011 +n60002024012 +n60002024013 +n60002024014 +n60002024015 +n60002024016 +n60002024017 +n60002024018 +n60002024019 +n60002024020 +n60002024021 +n60002024022 +n60002024023 +n60002024024 +n60002025002 +n60002025001 +n60002025003 +n60002025004 +n60002025005 +n60002025006 +n60002025007 +n60002025008 +n60002025009 +n60002025010 +n60002025011 +n60002025012 +n60002025013 +n60002025014 +n60002025015 +n60002025016 +n60003001002 +n60003001001 +n60003001003 +n60003001004 +n60003001005 +n60003001006 +n60003001007 +n60003001009 +n60003001008 +n60003001010 +n60003001011 +n60003001012 +n60003001013 +n60003001014 +n60003001015 +n60003001016 +n60003001017 +n60003001018 +n60003001019 +n60003001020 +n60003001021 +n60003002001 +n60003002002 +n60003002003 +n60003002004 +n60003002005 +n60003002006 +n60003002007 +n60003003001 +n60003003002 +n60003003003 +n60003003004 +n60003003005 +n60003003006 +n60003003007 +n60003003008 +n60003003009 +n60003003010 +n60003003011 +n60003003012 +n60003003013 +n60003003014 +n60003004001 +n60003004002 +n60003004003 +n60003004004 +n60003004005 +n60003004006 +n60003004007 +n60003004008 +n60003004009 +n60003004010 +n60003004011 +n60003004012 +n60003004013 +n60003004014 +n60003004015 +n60003004016 +n60003004017 +n60003004018 +n60003004019 +n60003004020 +n60003005002 +n60003005001 +n60003005003 +n60003005004 +n60003005005 +n60003005006 +n60003005007 +n60003005008 +n60003005009 +n60003005010 +n60003005011 +n60003005012 +n60003005013 +n60003005014 +n60003005015 +n60003005016 +n60003005017 +n60003006001 +n60003006002 +n60003006003 +n60003006004 +n60003006005 +n60003006006 +n60003006007 +n60003006008 +n60003006009 +n60003006011 +n60003006010 +n60003006012 +n60003006013 +n60003006014 +n60003006015 +n60003006016 +n60003006017 +n60003007001 +n60003007002 +n60003007003 +n60003007004 +n60003007005 +n60003007006 +n60003007007 +n60003007008 +n60003007009 +n60003007010 +n60003007011 +n60003007012 +n60003007013 +n60003007014 +n60003007015 +n60003007016 +n60003007017 +n60003007018 +n60003007019 +n60003007020 +n60003007021 +n60003007022 +n60003007023 +n60003007024 +n60003007025 +n60003008002 +n60003008001 +n60003008003 +n60003008004 +n60003008005 +n60003008006 +n60003008007 +n60003008008 +n60003008009 +n60003009001 +n60003009002 +n60003009003 +n60003009004 +n60003009005 +n60003009006 +n60003009007 +n60003009008 +n60003009009 +n60003009011 +n60003009010 +n60003009012 +n60003009013 +n60003009014 +n60003009015 +n60003009016 +n60003009017 +n60003009018 +n60003009019 +n60003010002 +n60003010001 +n60003010003 +n60003010004 +n60003010005 +n60003010006 +n60003010007 +n60003010008 +n60003010009 +n60003010010 +n60003010011 +n60003010012 +n60003010013 +n60003010014 +n60003010015 +n60003010016 +n60003010017 +n60003010018 +n60003010019 +n60003010020 +n60003011002 +n60003011001 +n60003011003 +n60003011004 +n60003011005 +n60003011006 +n60003011007 +n60003011008 +n60003011009 +n60003011010 +n60003011011 +n60003011012 +n60003012001 +n60003012002 +n60003012003 +n60003012004 +n60003012005 +n60003012006 +n60003012007 +n60003012008 +n60003012009 +n60003012010 +n60003012011 +n60003012013 +n60003012012 +n60003012014 +n60003012015 +n60003012016 +n60003012017 +n60003013001 +n60003013002 +n60003013003 +n60003013004 +n60003013005 +n60003013006 +n60003013007 +n60003013008 +n60003013009 +n60003013010 +n60003014001 +n60003014002 +n60003014003 +n60003014004 +n60003014005 +n60003014006 +n60003014007 +n60003014009 +n60003014008 +n60003014010 +n60003014011 +n60003014012 +n60003014013 +n60003014014 +n60003014015 +n60003015002 +n60003015001 +n60003015003 +n60003015004 +n60003015005 +n60003015006 +n60003015007 +n60003015008 +n60003015009 +n60003015010 +n60003015011 +n60003015012 +n60003015013 +n60003015014 +n60003015015 +n60003015016 +n60003015017 +n60003015018 +n60003015019 +n60003015020 +n60003015021 +n60003015022 +n60003015023 +n60003016001 +n60003016002 +n60003016003 +n60003016004 +n60003016005 +n60003016006 +n60003016008 +n60003016007 +n60003016009 +n60003016010 +n60003016011 +n60003016012 +n60003016013 +n60003016014 +n60003016015 +n60003016016 +n60003016017 +n60003016018 +n60003016019 +n60003016020 +n60003016021 +n60003017002 +n60003017001 +n60003017003 +n60003017004 +n60003017005 +n60003017006 +n60003017007 +n60003017008 +n60003017009 +n60003017010 +n60003017011 +n60003017012 +n60003018001 +n60003018002 +n60003018003 +n60003018004 +n60003018005 +n60003018006 +n60003018007 +n60003018008 +n60003018009 +n60003018010 +n60003018011 +n60003018012 +n60003018013 +n60003018014 +n60003018015 +n60003018017 +n60003018016 +n60003018018 +n60003018020 +n60003018019 +n60003018021 +n60003019001 +n60003019002 +n60003019008 +n60003019009 +n60003019003 +n60003019004 +n60003019005 +n60003019006 +n60003019007 +n60003020001 +n60003020002 +n60003020003 +n60003020004 +n60003020005 +n60003020006 +n60003020007 +n60003020008 +n60003020009 +n60003020010 +n60003020011 +n60003020012 +n60003020013 +n60003020014 +n60003020015 +n60003020016 +n60003020017 +n60003020018 +n60003020019 +n60003020020 +n60003020021 +n60003020022 +n60003020023 +n60003021001 +n60003021002 +n60003021003 +n60003021005 +n60003021006 +n60003021004 +n60003021007 +n60003021008 +n60003021009 +n60003021010 +n60003021011 +n60003021012 +n60003021013 +n60003021014 +n60003021015 +n60003021016 +n60003021017 +n60003021018 +n60003021019 +n60003021020 +n60003021021 +n60003022001 +n60003022002 +n60003022003 +n60003022004 +n60003022005 +n60003022006 +n60003022007 +n60003022008 +n60003022009 +n60003022010 +n60003022011 +n60003022012 +n60003022013 +n60003022014 +n60003022015 +n60004001002 +n60004001001 +n60004001003 +n60004001004 +n60004001005 +n60004001006 +n60004001007 +n60004001008 +n60004001009 +n60004001010 +n60004002001 +n60004002002 +n60004002003 +n60004002004 +n60004002005 +n60004002006 +n60004002007 +n60004002008 +n60004002009 +n60004002010 +n60004002011 +n60004002012 +n60004002014 +n60004002013 +n60004001011 +n60004001012 +n60004001013 +n60004001014 +n60004001015 +n60004001016 +n60004003002 +n60004003001 +n60004003003 +n60004003004 +n60004003005 +n60004003006 +n60004003007 +n60004003008 +n60004003009 +n60004003010 +n60004003011 +n60004003012 +n60004003013 +n60004003014 +n60004003015 +n60004003016 +n60004003017 +n60004003018 +n60004003019 +n60004003020 +n60004004001 +n60004004002 +n60004004003 +n60004004004 +n60004004005 +n60004004006 +n60004004007 +n60004004008 +n60004004009 +n60004004010 +n60004004011 +n60004004012 +n60004004013 +n60004005001 +n60004005002 +n60004005003 +n60004005004 +n60004005005 +n60004005006 +n60004005007 +n60004005008 +n60004005009 +n60004005010 +n60004006003 +n60004006001 +n60004006002 +n60004006004 +n60004006005 +n60004006006 +n60004006007 +n60004006009 +n60004006008 +n60004006010 +n60004006011 +n60004006012 +n60004006014 +n60004006013 +n60004006015 +n60004006016 +n60004006017 +n60004007002 +n60004007001 +n60004007003 +n60004007004 +n60004007005 +n60004007007 +n60004007006 +n60004007008 +n60004007009 +n60004007010 +n60004007011 +n60004008001 +n60004008002 +n60004008003 +n60004008004 +n60004008005 +n60004008006 +n60004008007 +n60004008008 +n60004008009 +n60004008010 +n60004008011 +n60004008012 +n60004008013 +n60004009001 +n60004009002 +n60004009003 +n60004009004 +n60004009005 +n60004010001 +n60004010002 +n60004010003 +n60004010004 +n60004010005 +n60004010006 +n60004010007 +n60004010008 +n60004010009 +n60004010010 +n60004010011 +n60004010012 +n60004010013 +n60004010014 +n60004011001 +n60004011002 +n60004011003 +n60004011004 +n60004011005 +n60004011006 +n60004011007 +n60004011008 +n60004011009 +n60004011010 +n60004011011 +n60004011012 +n60004011013 +n60004011014 +n60004011015 +n60004011016 +n60004011017 +n60004011018 +n60004011019 +n60004011020 +n60004011021 +n60004011022 +n60004011023 +n60004011024 +n60004011025 +n60004011026 +n60004011027 +n60004011028 +n60004011029 +n60004011030 +n60004011031 +n60004011032 +n60004011033 +n60004011034 +n60004011035 +n60004011036 +n60004011037 +n60004011038 +n60004012001 +n60004012002 +n60004012003 +n60004012004 +n60004012005 +n60004012006 +n60004012007 +n60004012008 +n60004012009 +n60004012010 +n60004012011 +n60004012012 +n60004012013 +n60004012014 +n60004012015 +n60004013001 +n60004013002 +n60004013003 +n60004013004 +n60004013005 +n60004013006 +n60004013007 +n60004013008 +n60004013009 +n60004013010 +n60004013011 +n60004013012 +n60004013013 +n60004013014 +n60004013015 +n60004013016 +n60004013017 +n60004013018 +n60004014001 +n60004014002 +n60004014003 +n60004014004 +n60004014005 +n60004014006 +n60004014007 +n60004014008 +n60004014009 +n60004014010 +n60004014011 +n60004014012 +n60004014013 +n60004014014 +n60004014015 +n60004014016 +n60004014017 +n60004014018 +n60004015002 +n60004015001 +n60004015003 +n60004015004 +n60004015005 +n60004015006 +n60004015007 +n60004015008 +n60004015009 +n60004015010 +n60004015011 +n60004015012 +n60004015013 +n60004015014 +n60004016002 +n60004016001 +n60004016003 +n60004016004 +n60004016005 +n60004016006 +n60004016008 +n60004016007 +n60004016009 +n60004016010 +n60004016011 +n60004016012 +n60004016013 +n60004016014 +n60004017001 +n60004017002 +n60004017003 +n60004017004 +n60004017005 +n60004017006 +n60004017007 +n60004017008 +n60004017009 +n60004017010 +n60004017011 +n60004017012 +n60004017014 +n60004017013 +n60004017015 +n60004017016 +n60004017017 +n60004017018 +n60004017019 +n60004017020 +n60004017021 +n60004017022 +n60004017023 +n60004017024 +n60004017025 +n60004017026 +n60004018001 +n60004018002 +n60004018003 +n60004018004 +n60004018005 +n60004018006 +n60004018007 +n60004018008 +n60004018009 +n60004018010 +n60004018011 +n60004018012 +n60004019001 +n60004019002 +n60004019003 +n60004019004 +n60004019005 +n60004019006 +n60004019007 +n60004019008 +n60004019009 +n60004019010 +n60004019011 +n60004019012 +n60004019013 +n60004019014 +n60004019015 +n60004019016 +n60004019017 +n60005001002 +n60005001001 +n60005001003 +n60005001004 +n60005001005 +n60005001006 +n60005001007 +n60005001008 +n60005001009 +n60005001010 +n60005001011 +n60005001012 +n60005001013 +n60005001015 +n60005001014 +n60005001016 +n60005001017 +n60005001018 +n60005001019 +n60005001020 +n60005002001 +n60005002002 +n60005002003 +n60005002004 +n60005002005 +n60005002006 +n60005002007 +n60005002008 +n60005002009 +n60005002010 +n60005002011 +n60005002012 +n60005002013 +n60005002014 +n60005002015 +n60005002016 +n60005002017 +n60005003001 +n60005003002 +n60005003003 +n60005003004 +n60005003005 +n60005003006 +n60005003008 +n60005003007 +n60005003009 +n60005003010 +n60005004001 +n60005004002 +n60005004003 +n60005004004 +n60005004005 +n60005004006 +n60005004007 +n60005004008 +n60005004009 +n60005004010 +n60005005002 +n60005005001 +n60005005003 +n60005005004 +n60005005006 +n60005005005 +n60005005007 +n60005005008 +n60005005009 +n60005005010 +n60005005011 +n60005005012 +n60005005013 +n60005005014 +n60005005015 +n60005005017 +n60005005016 +n60005005018 +n60005005019 +n60005006002 +n60005006001 +n60005006003 +n60005006004 +n60005006005 +n60005006006 +n60005006007 +n60005006008 +n60005006009 +n60005006010 +n60005006011 +n60005006012 +n60005006013 +n60005007001 +n60005007002 +n60005007003 +n60005007004 +n60005007005 +n60005007006 +n60005007007 +n60005007008 +n60005007009 +n60005007010 +n60005007011 +n60005007012 +n60005008001 +n60005008002 +n60005008003 +n60005008004 +n60005008005 +n60005008006 +n60005008007 +n60005008008 +n60005008009 +n60005008010 +n60005008011 +n60005008012 +n60005008013 +n60005009001 +n60005009002 +n60005009003 +n60005009004 +n60005009005 +n60005009006 +n60005009007 +n60005009008 +n60005009009 +n60005009010 +n60005009011 +n60005009012 +n60005009013 +n60005009014 +n60005009015 +n60005009016 +n60005009017 +n60005010002 +n60005010001 +n60005010003 +n60005010004 +n60005010005 +n60005010006 +n60005010007 +n60005010008 +n60005010009 +n60005010010 +n60005010011 +n60005010012 +n60005010013 +n60005010014 +n60005010015 +n60005010016 +n60005010017 +n60005010018 +n60005010019 +n60005010020 +n60005010021 +n60005010022 +n60005011001 +n60005011002 +n60005011003 +n60005011004 +n60005011005 +n60005011006 +n60005011007 +n60005011008 +n60005011009 +n60005012003 +n60005012001 +n60005012002 +n60005012004 +n60005012005 +n60005012006 +n60005012007 +n60005012008 +n60005012009 +n60005012010 +n60005012011 +n60005012012 +n60005012013 +n60005012014 +n60005012015 +n60005012016 +n60005012017 +n60005012018 +n60005012019 +n60005012020 +n60005012021 +n60005012022 +n60005012023 +n60005013001 +n60005013002 +n60005013003 +n60005013004 +n60005013005 +n60005013006 +n60005013007 +n60005013008 +n60005013009 +n60005013010 +n60005013011 +n60005014001 +n60005014002 +n60005014003 +n60005014004 +n60005014005 +n60005014006 +n60005014007 +n60005014008 +n60005014009 +n60005014010 +n60005014011 +n61001001001 +n61001001002 +n61001001003 +n61001001004 +n61001001005 +n61001001006 +n61001001007 +n61001001008 +n61001001010 +n61001001011 +n61001001009 +n61001001012 +n61001001013 +n61001001014 +n61001001015 +n61001001016 +n61001001017 +n61001001018 +n61001001019 +n61001001020 +n61001001021 +n61001002001 +n61001002003 +n61001002004 +n61001002002 +n61001002005 +n61001002006 +n61001002007 +n61001002008 +n61001002009 +n61001002010 +n61001002011 +n61001002012 +n61001002013 +n61001002014 +n61001003001 +n61001003004 +n61001003005 +n61001003006 +n61001003007 +n61001003008 +n61001003002 +n61001003003 +n61001003009 +n61001003010 +n61001003011 +n61001003012 +n61001003013 +n61001003014 +n61001003015 +n61001003016 +n61001003017 +n61001003018 +n61001003019 +n61001003020 +n61001003021 +n61001003022 +n61001003023 +n61001003024 +n61001004001 +n61001004002 +n61001004003 +n61001004004 +n61001004005 +n61001004006 +n61001004008 +n61001004007 +n61001004009 +n61001004010 +n61001004011 +n61001004012 +n61001004013 +n61001004015 +n61001004014 +n61001004016 +n61001004017 +n61001004018 +n61001004019 +n61001004020 +n61001004021 +n61001004022 +n61001004023 +n61001004024 +n61001005004 +n61001005001 +n61001005002 +n61001005003 +n61001005005 +n61001005006 +n61001005007 +n61001005008 +n61001005009 +n61001005010 +n61001005011 +n61001005012 +n61001005013 +n61001005014 +n61001005016 +n61001005015 +n61001005017 +n61001005018 +n61001005019 +n61001005020 +n61001006002 +n61001006001 +n61001006003 +n61001006004 +n61001006005 +n61001006006 +n61001006008 +n61001006007 +n61001006009 +n61001006010 +n61001006011 +n61001006012 +n61001006014 +n61001006013 +n61001006015 +n61001006016 +n61001006017 +n61001006018 +n61001007002 +n61001007001 +n61001007003 +n61001007004 +n61001007005 +n61001007006 +n61001007008 +n61001007007 +n61001007009 +n61001007010 +n61001007011 +n61001007012 +n61001008002 +n61001008001 +n61001008003 +n61001008004 +n61001008005 +n61001008006 +n61001008007 +n61001008008 +n61001008009 +n61001008010 +n61001008011 +n61001008012 +n61001008013 +n61001008014 +n61001008015 +n61001008016 +n61001008017 +n61001008018 +n61001008019 +n61001009002 +n61001009001 +n61001009003 +n61001009004 +n61001009005 +n61001009006 +n61001009007 +n61001009008 +n61001009010 +n61001009009 +n61001009011 +n61001009012 +n61001009013 +n61001009014 +n61001009015 +n61001009016 +n61001010001 +n61001010003 +n61001010002 +n61001010004 +n61001010005 +n61001010006 +n61001010007 +n61001010008 +n61001010009 +n61001010010 +n61001010011 +n61001010013 +n61001010012 +n61001010014 +n61001010015 +n61001010016 +n61001010017 +n61001010018 +n61001011002 +n61001011001 +n61001011003 +n61001011004 +n61001011005 +n61001011006 +n61001011007 +n61001011008 +n61001011009 +n61001011010 +n61001011011 +n61001011012 +n61001011013 +n61001011014 +n61001011015 +n61001011016 +n61001011017 +n61001011018 +n61001012001 +n61001012002 +n61001012003 +n61001012004 +n61001012005 +n61001012006 +n61001012007 +n61001012008 +n61001012009 +n61001012010 +n61001012011 +n61001012012 +n61001012013 +n61001012014 +n61001012015 +n61001013002 +n61001013001 +n61001013003 +n61001013004 +n61001013005 +n61001013006 +n61001013007 +n61001013008 +n61001013009 +n61001013010 +n61001013011 +n61001013012 +n61001013013 +n61001013014 +n61001014001 +n61001014002 +n61001014003 +n61001014004 +n61001014005 +n61001014006 +n61001014007 +n61001014008 +n61001014009 +n61001014010 +n61001014011 +n61001014012 +n61001014013 +n61001014014 +n61001014015 +n61001014016 +n61001014017 +n61001014018 +n61001015002 +n61001015001 +n61001015003 +n61001015004 +n61001015005 +n61001015006 +n61001015007 +n61001015008 +n61001015009 +n61001015010 +n61001015011 +n61001015012 +n61001015013 +n61001015014 +n61001016002 +n61001016001 +n61001016003 +n61001016004 +n61001016005 +n61001016006 +n61001016007 +n61001016008 +n61001016009 +n61001016010 +n61001016011 +n61001016012 +n61001016013 +n61001016014 +n61001016015 +n61001016016 +n61001016017 +n61001016019 +n61001016018 +n61001016020 +n61001016021 +n61001016022 +n61001017002 +n61001017001 +n61001017003 +n61001017004 +n61001017005 +n61001017006 +n61001017007 +n61001017008 +n61001017009 +n61001017012 +n61001017010 +n61001017011 +n61001017013 +n61001017014 +n61001017015 +n61001017016 +n61001017017 +n61001017018 +n61001017019 +n61001017020 +n61001017021 +n61001017022 +n61001017023 +n61001017024 +n61001017025 +n61001017026 +n61001017027 +n61001017028 +n61001018001 +n61001018002 +n61001018003 +n61001018004 +n61001018005 +n61001018006 +n61001018007 +n61001018008 +n61001018009 +n61001018010 +n61001018011 +n61001018012 +n61001018013 +n61001018014 +n61001018015 +n61001018016 +n61001019001 +n61001019002 +n61001019003 +n61001019004 +n61001019005 +n61001019006 +n61001019008 +n61001019009 +n61001019007 +n61001019010 +n61001019011 +n61001019012 +n61001019013 +n61001019014 +n61001019015 +n61001019016 +n61001019017 +n61001019018 +n61001019019 +n61001019020 +n61001019021 +n61001019022 +n61001019023 +n61001019024 +n61001019025 +n61001019026 +n61001019027 +n61001020001 +n61001020002 +n61001020003 +n61001020004 +n61001020005 +n61001020006 +n61001020007 +n61001020008 +n61001020009 +n61001020010 +n61001020011 +n61001021002 +n61001021001 +n61001021003 +n61001021004 +n61001021005 +n61001021006 +n61001021007 +n61001021008 +n61001021009 +n61001021010 +n61001021011 +n61001021012 +n61001021013 +n61001021014 +n61001021015 +n61001021016 +n61002001002 +n61002001001 +n61002001003 +n61002001004 +n61002001005 +n61002001006 +n61002001007 +n61002001008 +n61002001009 +n61002001010 +n61002001011 +n61002001012 +n61002001013 +n61002001014 +n61002001015 +n61002001016 +n61002001017 +n61002001018 +n61002001019 +n61002001020 +n61002001021 +n61002001022 +n61002001023 +n61002001024 +n61002001025 +n61002001026 +n61002001027 +n61002002001 +n61002002002 +n61002002003 +n61002002004 +n61002002005 +n61002002006 +n61002002007 +n61002002008 +n61002002009 +n61002002010 +n61002002011 +n61002002012 +n61002002013 +n61002003001 +n61002003002 +n61002003003 +n61002003004 +n61002003005 +n61002003006 +n61002003007 +n61002003008 +n61002003009 +n61002003010 +n61002003011 +n61002003012 +n61002003013 +n61002003014 +n61002003015 +n61002003016 +n61002003017 +n61002003018 +n61002003019 +n61002004002 +n61002004001 +n61002004003 +n61002004004 +n61002004005 +n61002004006 +n61002004007 +n61002004008 +n61002004009 +n61002004010 +n61002004011 +n61002004012 +n61002004013 +n61002004014 +n61002004015 +n61002004016 +n61002005001 +n61002005002 +n61002005003 +n61002005004 +n61002005005 +n61002005006 +n61002005007 +n61002005008 +n61002005009 +n61002005010 +n61002005011 +n61002005012 +n61002005013 +n61002005014 +n61002005015 +n61002006001 +n61002006002 +n61002006003 +n61002006004 +n61002006005 +n61002006006 +n61002006007 +n61002006008 +n61002006009 +n61002006010 +n61002006011 +n61002006012 +n61002007001 +n61002007002 +n61002007003 +n61002007004 +n61002007005 +n61002007006 +n61002007007 +n61002007008 +n61002007009 +n61002007010 +n61002007011 +n61002007012 +n61002008002 +n61002008001 +n61002008003 +n61002008004 +n61002008005 +n61002008006 +n61002008007 +n61002008008 +n61002008009 +n61002008010 +n61002008011 +n61002008012 +n61002008013 +n61002008014 +n61002008015 +n61002008016 +n61002008017 +n61002009001 +n61002009002 +n61002009003 +n61002009004 +n61002009005 +n61002009006 +n61002009008 +n61002009007 +n61002009009 +n61002009010 +n61002009011 +n61002009012 +n61002009013 +n61002010002 +n61002010001 +n61002010003 +n61002010004 +n61002010005 +n61002010006 +n61002010007 +n61002010008 +n61002010009 +n61002010010 +n61002010011 +n61002010012 +n61002010013 +n61002010014 +n61002010015 +n61002010018 +n61002010016 +n61002010017 +n61002011001 +n61002011002 +n61002011003 +n61002011004 +n61002011005 +n61002011006 +n61002011007 +n61002011008 +n61002011009 +n61002011010 +n61002011011 +n61002011012 +n61002011013 +n61002011014 +n61002011015 +n61002012002 +n61002012001 +n61002012003 +n61002012004 +n61002012005 +n61002012006 +n61002012007 +n61002012008 +n61002012009 +n61002012010 +n61002012011 +n61002012012 +n61002012013 +n61002012014 +n61002012015 +n61002012016 +n61002012017 +n61002012018 +n61002012019 +n61002012020 +n61002012021 +n61002013001 +n61002013002 +n61002013003 +n61002013004 +n61002013005 +n61002013006 +n61002013007 +n61002013008 +n61002013009 +n61002013010 +n61002013011 +n61002013012 +n61002013013 +n61002013014 +n61002013015 +n61002013016 +n61002013017 +n61002013018 +n61002013019 +n61002014002 +n61002014001 +n61002014003 +n61002014004 +n61002014005 +n61002014006 +n61002014007 +n61002014008 +n61002014009 +n61002014010 +n61002014011 +n61002014012 +n61002014013 +n61002014014 +n61002014015 +n61002014016 +n61002015001 +n61002015002 +n61002015003 +n61002015004 +n61002015005 +n61002015006 +n61002015007 +n61002015008 +n61002015009 +n61002015010 +n61002015011 +n61002015012 +n61002015013 +n61002015014 +n61002015015 +n61002016002 +n61002016001 +n61002016004 +n61002016005 +n61002016003 +n61002016006 +n61002016007 +n61002016008 +n61002016009 +n61002016010 +n61002016011 +n61002016012 +n61002016013 +n61002016014 +n61002016015 +n61002016016 +n61002017001 +n61002017002 +n61002017003 +n61002017004 +n61002017005 +n61002017006 +n61002017007 +n61002017008 +n61002017009 +n61002017010 +n61002017011 +n61002017012 +n61002017013 +n61002017014 +n61002017015 +n61002018002 +n61002018001 +n61002018003 +n61002018004 +n61002018005 +n61002018006 +n61002018007 +n61002018008 +n61002018009 +n61002018010 +n61002018011 +n61002018012 +n61002018013 +n61002018014 +n61002018015 +n61002018016 +n61002019001 +n61002019002 +n61002019003 +n61002019004 +n61002019006 +n61002019005 +n61002019007 +n61002019008 +n61002019010 +n61002019009 +n61002019011 +n61002019012 +n61002019013 +n61002019014 +n61002020002 +n61002020001 +n61002020003 +n61002020004 +n61002020005 +n61002020006 +n61002020007 +n61002020008 +n61002020009 +n61002020010 +n61002020011 +n61002020012 +n61002020013 +n61002020014 +n61002020015 +n61002020017 +n61002020016 +n61002020018 +n61002020019 +n61002020020 +n61002020021 +n61002020022 +n61002020023 +n61002020024 +n61002020025 +n61002020026 +n61002020027 +n61002021002 +n61002021001 +n61002021003 +n61002021004 +n61002021005 +n61002021006 +n61002021007 +n61002021008 +n61002021009 +n61002021010 +n61002021011 +n61002021012 +n61002021013 +n61002021014 +n61002021015 +n61002021016 +n61002021017 +n61002021018 +n61002021019 +n61002022001 +n61002022002 +n61002022003 +n61002022004 +n61002022005 +n61002022006 +n61002022007 +n61002022008 +n61002022009 +n61002022010 +n61002022011 +n61002022012 +n61002022013 +n61002022014 +n61002022015 +n61002022016 +n61002022017 +n61002022018 +n61003001003 +n61003001002 +n61003001001 +n61003001004 +n61003001007 +n61003001005 +n61003001006 +n61003001008 +n61003001009 +n61003001010 +n61003001012 +n61003001013 +n61003001011 +n61003001014 +n61003001015 +n61003001016 +n61003002001 +n61003002002 +n61003002003 +n61003002005 +n61003002006 +n61003002007 +n61003002008 +n61003002004 +n61003002009 +n61003002010 +n61003002011 +n61003002012 +n61003002013 +n61003002014 +n61003002015 +n61003002016 +n61003002017 +n61003002018 +n61003003001 +n61003003002 +n61003003003 +n61003003004 +n61003003005 +n61003003006 +n61003003007 +n61003003008 +n61003003009 +n61003003010 +n61003003011 +n61003003012 +n61003003013 +n61003003014 +n61003003015 +n61003003016 +n61003003017 +n61003003018 +n61003004001 +n61003004002 +n61003004003 +n61003004004 +n61003004005 +n61003004006 +n61003004007 +n61003004008 +n61003004009 +n61003004012 +n61003004010 +n61003004011 +n61003004013 +n61003004014 +n61003004015 +n61003004016 +n61003004017 +n61003004018 +n61003004019 +n61003004020 +n61003004021 +n61003005002 +n61003005001 +n61003005003 +n61003005004 +n61003005005 +n61003005006 +n61003005007 +n61003005008 +n61003005009 +n61003005010 +n61003005011 +n61003005012 +n61003005013 +n61003005014 +n61003005015 +n61003005016 +n61003005017 +n61003005018 +n61003005019 +n61003005020 +n61003005021 +n61003006001 +n61003006002 +n61003006003 +n61003006004 +n61003006005 +n61003006006 +n61003006007 +n61003006008 +n61003007002 +n61003007001 +n61003007003 +n61003007004 +n61003007005 +n61003007006 +n61003007007 +n61003007008 +n61003007009 +n61003007010 +n61003007011 +n61003007012 +n61003007013 +n61003007014 +n61003007015 +n61003007016 +n61003007017 +n61003007018 +n61003007019 +n61003007020 +n61003007021 +n61003007022 +n61003008002 +n61003008007 +n61003008001 +n61003008003 +n61003008004 +n61003008005 +n61003008006 +n61003008008 +n61003008009 +n61003008010 +n61003008011 +n61003008012 +n61003008013 +n61003008014 +n61003008015 +n61003008016 +n61003008017 +n61003008018 +n61003008019 +n61003008020 +n61003008021 +n61003009001 +n61003009002 +n61003009003 +n61003009004 +n61003009005 +n61003009006 +n61003009007 +n61003009008 +n61003009009 +n61003009010 +n61003009011 +n61003009012 +n61003009013 +n61003009015 +n61003009014 +n61003009016 +n61003009017 +n61003009018 +n61003009019 +n61003009020 +n61003009021 +n61003009022 +n61003010002 +n61003010001 +n61003010003 +n61003010004 +n61003010005 +n61003010006 +n61003010007 +n61003010008 +n61003010009 +n61003010010 +n61003010011 +n61003010012 +n61003010014 +n61003010013 +n61003010015 +n61003010016 +n61003010017 +n61003010018 +n61003010019 +n61003010020 +n61003010021 +n61003010022 +n61003010023 +n61003010024 +n61003011002 +n61003011001 +n61003011003 +n61003011004 +n61003011006 +n61003011005 +n61003011007 +n61003011008 +n61003011009 +n61003011010 +n61003011011 +n61003011012 +n61003011013 +n61003012001 +n61003012002 +n61003012003 +n61003012004 +n61003012005 +n61003012006 +n61003012007 +n61003012008 +n61003012009 +n61003012010 +n61003012011 +n61003012012 +n61003012013 +n61003012014 +n61003012015 +n61003012016 +n61003012017 +n61003012018 +n61003013002 +n61003013001 +n61003013003 +n61003013004 +n61003013005 +n61003013006 +n61003013007 +n61003013008 +n61003013009 +n61003013010 +n61003013011 +n61003013012 +n61003013013 +n61003013014 +n61003013015 +n61003014001 +n61003014002 +n61003014003 +n61003014004 +n61003014005 +n61003014006 +n61003014007 +n61003014008 +n61003014009 +n61003014010 +n61003014011 +n61003014012 +n61003015001 +n61003015002 +n61003015003 +n61003015004 +n61003015005 +n61003015006 +n61003015007 +n61003015008 +n61003015009 +n61003015010 +n61003015011 +n61003015012 +n61003015013 +n61003015014 +n61003015015 +n61003015016 +n61003015017 +n61003015018 +n61003015019 +n61003015020 +n61003015021 +n61003015022 +n61003016001 +n61003016002 +n61003016003 +n61003016004 +n61003016005 +n61003016006 +n61003016007 +n61003016008 +n61003016009 +n61003016010 +n61003016011 +n61003016012 +n61003016013 +n61003016014 +n61003016015 +n61003016016 +n61003016017 +n61003016018 +n61003016019 +n61003016020 +n61003016021 +n61003016022 +n61003016023 +n61003016024 +n61003016025 +n61003016026 +n61003016027 +n61003016028 +n61003016029 +n61003016030 +n61003016031 +n61003017002 +n61003017003 +n61003017001 +n61003017004 +n61003017005 +n61003017006 +n61003017007 +n61003017008 +n61003017009 +n61003017010 +n61003017011 +n61003017012 +n61003017013 +n61003017014 +n61003017015 +n61003017016 +n61003018002 +n61003018001 +n61003018003 +n61003018004 +n61003018005 +n61003018006 +n61003018007 +n61003018008 +n61003018009 +n61003018010 +n61003018011 +n61003018012 +n61003018013 +n61003018014 +n61003018015 +n61003018016 +n61003018017 +n61003018018 +n61003018019 +n61003018020 +n61003018021 +n61003018022 +n62001001001 +n62001001002 +n62001001003 +n62001001004 +n62001001005 +n62001001006 +n62001001007 +n62001001008 +n62001001009 +n62001001010 +n62001001011 +n62001001012 +n62001001013 +n62001001014 +n62001001015 +n62001001016 +n62001001017 +n62001001018 +n62001001019 +n62001001020 +n62001001021 +n62001001022 +n62001001023 +n62001002001 +n62001002002 +n62001002003 +n62001002004 +n62001002005 +n62001002006 +n62001002007 +n62001002008 +n62001002009 +n62001002010 +n62001002011 +n62001002012 +n62001002013 +n62001002014 +n62001002015 +n62001002016 +n62001002017 +n62001002018 +n62001002019 +n62001002020 +n62001002021 +n62001002022 +n62001002023 +n62001003001 +n62001003002 +n62001003003 +n62001003004 +n62001003005 +n62001003006 +n62001003007 +n62001003008 +n62001003009 +n62001003010 +n62001003011 +n62001003012 +n62001003013 +n62001003014 +n62001003018 +n62001003015 +n62001003016 +n62001003017 +n62001003019 +n62001003020 +n62001003021 +n62001003022 +n62001003023 +n62001003024 +n62001003025 +n62001003026 +n62001003027 +n62001003028 +n62001003029 +n62001003030 +n62001004001 +n62001004002 +n62001004003 +n62001004004 +n62001004005 +n62001004006 +n62001004007 +n62001004008 +n62001004009 +n62001004010 +n62001005001 +n62001005002 +n62001005003 +n62001005004 +n62001005005 +n62001005006 +n62001005007 +n62001005008 +n62001005009 +n62001005010 +n62001005011 +n62001005012 +n62001005013 +n62001005014 +n62001005015 +n62001005016 +n62001005017 +n62001005018 +n62001005020 +n62001005021 +n62001005022 +n62001005023 +n62001005019 +n62001005024 +n62001006001 +n62001006002 +n62001006003 +n62001006004 +n62001006005 +n62001006006 +n62001006007 +n62001006008 +n62001006009 +n62001006010 +n62001006011 +n62001006012 +n62001006013 +n62001006014 +n62001006015 +n62001006016 +n62001006017 +n62001006018 +n62001007002 +n62001007001 +n62001007003 +n62001007004 +n62001007005 +n62001007006 +n62001007007 +n62001007008 +n62001007009 +n62001007010 +n62001007011 +n62001007012 +n62001007013 +n62001007014 +n62001007015 +n62001007016 +n62001007017 +n62001007018 +n62001007019 +n62001007020 +n62001007021 +n62001007022 +n62001007023 +n62001007024 +n62001007025 +n62001007026 +n62001007027 +n62001007028 +n62001008001 +n62001008002 +n62001008003 +n62001008004 +n62001008005 +n62001008006 +n62001008007 +n62001008008 +n62001008009 +n62001008010 +n62001008011 +n62001008012 +n62001008013 +n62001008014 +n62001008015 +n62001009001 +n62001009002 +n62001009003 +n62001009004 +n62001009005 +n62001009007 +n62001009006 +n62001009008 +n62001009009 +n62001009010 +n62001009011 +n62001009012 +n62001009013 +n62001009014 +n62001009015 +n62001009016 +n62001009017 +n62001009018 +n62001009019 +n62001009020 +n62001010001 +n62001010002 +n62001010003 +n62001010004 +n62001010005 +n62001010006 +n62001010007 +n62001010008 +n62001010009 +n62001010010 +n62001010011 +n62001010012 +n62001010013 +n62001010014 +n62001010015 +n62001010016 +n62002001001 +n62002001002 +n62002001003 +n62002001004 +n62002001005 +n62002001006 +n62002001007 +n62002001008 +n62002001009 +n62002001010 +n62002001011 +n62002001012 +n62002001014 +n62002001015 +n62002001016 +n62002001017 +n62002001013 +n62002001018 +n62002001019 +n62002001020 +n62002002001 +n62002002002 +n62002002003 +n62002002004 +n62002002005 +n62002002006 +n62002002007 +n62002002008 +n62002002013 +n62002002009 +n62002002010 +n62002002011 +n62002002012 +n62002002014 +n62002002015 +n62002002016 +n62002002017 +n62002002018 +n62002002019 +n62002002020 +n62002003001 +n62002003002 +n62002003003 +n62002003004 +n62002003005 +n62002003006 +n62002003007 +n62002003008 +n62002003009 +n62002003010 +n62002003011 +n62002003012 +n62002004001 +n62002004002 +n62002004003 +n62002004004 +n62002004005 +n62002004006 +n62002004007 +n62002004008 +n62002004009 +n62002004010 +n62002004011 +n62002004012 +n62002004013 +n62002004014 +n62002004015 +n62002004016 +n62002004017 +n62002004018 +n62002004019 +n62002004020 +n62002005002 +n62002005003 +n62002005001 +n62002005004 +n62002005005 +n62002005006 +n62002005007 +n62002005008 +n62002005009 +n62002005010 +n62002005011 +n62002005012 +n62002005013 +n62002005014 +n62002005015 +n62002005016 +n62002005017 +n62002005018 +n62002005019 +n62002005020 +n62002005021 +n62002005022 +n62002006001 +n62002006002 +n62002006003 +n62002006004 +n62002006005 +n62002006007 +n62002006008 +n62002006009 +n62002006006 +n62002006010 +n62002006011 +n62002006012 +n62002006013 +n62002007001 +n62002007005 +n62002007006 +n62002007002 +n62002007003 +n62002007004 +n62002007007 +n62002007008 +n62002007009 +n62002007010 +n62002007011 +n62002007012 +n62002007013 +n62002007014 +n62002007015 +n62002007016 +n62002007017 +n62002007018 +n62002007019 +n62002007020 +n62002007021 +n62002007022 +n62002008001 +n62002008002 +n62002008003 +n62002008004 +n62002008005 +n62002008006 +n62002008007 +n62002008008 +n62002008009 +n62002008010 +n62002008011 +n62002008012 +n62002008013 +n62002008014 +n62002008015 +n62002008016 +n62002008017 +n62002008018 +n62002008019 +n62002008020 +n62002008021 +n62002008022 +n62002008023 +n62002008024 +n62002009001 +n62002009002 +n62002009003 +n62002009004 +n62002009005 +n62002009006 +n62002009007 +n62002009008 +n62002009009 +n62002009010 +n62002009011 +n62002009012 +n62002009013 +n62002009014 +n62002009015 +n62002009016 +n62002009017 +n62002010001 +n62002010002 +n62002010003 +n62002010004 +n62002010005 +n62002010006 +n62002010007 +n62002010008 +n62002010009 +n62002010010 +n62002010011 +n62002010012 +n62002010013 +n62002010014 +n62002010015 +n62002011002 +n62002011001 +n62002011003 +n62002011004 +n62002011005 +n62002011006 +n62002011007 +n62002011008 +n62002011009 +n62002011010 +n62002011011 +n62002011012 +n62002011013 +n62002011014 +n62002011015 +n62002011016 +n62002011017 +n62002011018 +n62002011019 +n62002011020 +n62002011021 +n62002011022 +n62002011023 +n62002011024 +n62002011025 +n62002011026 +n62002011027 +n62002012003 +n62002012001 +n62002012002 +n62002012004 +n62002012005 +n62002012006 +n62002012007 +n62002012008 +n62002012009 +n62002012010 +n62002012011 +n62002012012 +n62002013003 +n62002013001 +n62002013002 +n62002013004 +n62002013005 +n62002013006 +n62002013007 +n62002013008 +n62002013011 +n62002013009 +n62002013010 +n62002013012 +n62002013013 +n62002013014 +n62002013015 +n62002014003 +n62002014001 +n62002014002 +n62002014004 +n62002014005 +n62002014006 +n62002014007 +n62002014010 +n62002014008 +n62002014009 +n62002014011 +n62002014012 +n62002014013 +n62002014014 +n62002014015 +n62002014018 +n62002014016 +n62002014017 +n62002014019 +n62002014020 +n62002014021 +n62002014022 +n62002014023 +n62002014024 +n62002014025 +n62002014026 +n62002014027 +n62002014028 +n62002014029 +n62002014030 +n62002014031 +n62002014032 +n62002014033 +n62002015001 +n62002015002 +n62002015003 +n62002015004 +n62002015005 +n62002015006 +n62002015007 +n62002015008 +n62002015009 +n62002015010 +n62002015011 +n62002015012 +n62002015013 +n62002015014 +n62002015015 +n62002015016 +n62002015017 +n62002015018 +n62002015019 +n62002015020 +n62002015021 +n62002015022 +n62002016001 +n62002016021 +n62002016002 +n62002016003 +n62002016004 +n62002016005 +n62002016006 +n62002016007 +n62002016008 +n62002016009 +n62002016010 +n62002016011 +n62002016012 +n62002016013 +n62002016014 +n62002016015 +n62002016016 +n62002016017 +n62002016018 +n62002016019 +n62002016020 +n62002016022 +n62002016023 +n62002016024 +n62002016025 +n62002016026 +n62002016027 +n62002016028 +n62002016029 +n62002016030 +n62002017001 +n62002017004 +n62002017002 +n62002017003 +n62002017005 +n62002017006 +n62002017007 +n62002017008 +n62002017010 +n62002017009 +n62002017011 +n62002017012 +n62002017013 +n62002017014 +n62002017015 +n62002017016 +n62002017017 +n62002017018 +n62002017019 +n62002018001 +n62002018002 +n62002018003 +n62002018004 +n62002018005 +n62002018006 +n62002018007 +n62002018008 +n62002018009 +n62002018010 +n62002018011 +n62002018012 +n62002018013 +n62002018014 +n62002018015 +n62002018016 +n62002018017 +n62002018018 +n62002018019 +n62002018020 +n62002018021 +n62002019001 +n62002019002 +n62002019003 +n62002019004 +n62002019005 +n62002019006 +n62002019007 +n62002019008 +n62002019010 +n62002019009 +n62002019011 +n62002019012 +n62002019013 +n62002019015 +n62002019014 +n62002019016 +n62002019017 +n62002019018 +n62002019019 +n62002019020 +n62002019021 +n62002019022 +n62002019023 +n62002019024 +n62002019025 +n62002019026 +n62002020001 +n62002020002 +n62002020003 +n62002020004 +n62002020005 +n62002020006 +n62002020007 +n62002020008 +n62002020009 +n62002020010 +n62002021002 +n62002021003 +n62002021001 +n62002021004 +n62002021005 +n62002021006 +n62002021007 +n62002021008 +n62002021009 +n62002021010 +n62002021011 +n62002021012 +n62002021013 +n62002021014 +n62002021015 +n62002021016 +n62002021017 +n62002021018 +n62002021019 +n62002021020 +n62002021021 +n62002022001 +n62002022002 +n62002022003 +n62002022004 +n62002022005 +n62002022006 +n62002022007 +n62002022008 +n62002022009 +n62002022010 +n62002022011 +n62002022012 +n62002022013 +n62002022014 +n62002022015 +n62002022016 +n62002022017 +n62002022018 +n62002022019 +n62002022020 +n62002022021 +n62002022022 +n62002022023 +n62002022024 +n62002022025 +n62002023001 +n62002023002 +n62002023003 +n62002023004 +n62002023005 +n62002023006 +n62002023007 +n62002023008 +n62002023009 +n62002023010 +n62002023011 +n62002023012 +n62002023013 +n62002023014 +n62002023015 +n62002023016 +n62002023017 +n62002024001 +n62002024002 +n62002024003 +n62002024004 +n62002024005 +n62002024006 +n62002024007 +n62002024008 +n62002024009 +n62002024010 +n62002024011 +n62002024012 +n62002024013 +n62002024014 +n62002024015 +n62002024016 +n62002024017 +n62002024018 +n62002024019 +n62002024020 +n62002024021 +n62002024022 +n62002024023 +n62002024024 +n62002024025 +n62002024026 +n62002025001 +n62002025002 +n62002025003 +n62002025004 +n62002025005 +n62002025006 +n62002025007 +n62002025008 +n62002025009 +n62002025010 +n62002025011 +n62002025012 +n62002025013 +n62002026001 +n62002026002 +n62002026003 +n62002026004 +n62002026005 +n62002026006 +n62002026007 +n62002027001 +n62002027002 +n62002027003 +n62002027004 +n62002027005 +n62002027006 +n62002027007 +n62002027008 +n62002027009 +n62002027010 +n62002027011 +n62002027012 +n62002027013 +n62002027014 +n62002027015 +n62002027016 +n62002027017 +n62002027018 +n62002027019 +n62002027020 +n62002027021 +n62002027022 +n62002027023 +n62002027024 +n62002027025 +n62002027026 +n62002027027 +n62002027028 +n62002027029 +n62002027030 +n62002027031 +n62002027032 +n62002027033 +n62002027034 +n62002027035 +n62002027036 +n62002027037 +n62002027038 +n62002027039 +n62002027040 +n62002027041 +n62002027042 +n62002028001 +n62002028003 +n62002028002 +n62002028004 +n62002028005 +n62002028006 +n62002028007 +n62002028008 +n62002028009 +n62002028010 +n62002028011 +n62002028012 +n62002028013 +n62002028014 +n62002028015 +n62002028016 +n62002028017 +n62002028018 +n62002028019 +n62002028020 +n62002029001 +n62002029002 +n62002029003 +n62002029004 +n62002029005 +n62002029006 +n62002029007 +n62002029008 +n62002029009 +n62002029010 +n62002029011 +n62002029012 +n62002029013 +n62002029014 +n62002029015 +n62002029016 +n62003001001 +n62003001002 +n62003001003 +n62003001004 +n62003001005 +n62003001006 +n62003001007 +n62003001008 +n62003001009 +n62003001010 +n62003001011 +n62003001012 +n62003001013 +n62003001014 +n62003001015 +n62003001016 +n62003001017 +n62003001018 +n62003001019 +n62003001020 +n62003001021 +n62003001022 +n62003001023 +n62003001024 +n62003002001 +n62003002002 +n62003002003 +n62003002004 +n62003002005 +n62003002006 +n62003002007 +n62003002008 +n62003002009 +n62003002010 +n62003002011 +n62003002012 +n62003002013 +n62003002014 +n62003002015 +n62003002016 +n62003002017 +n62003002018 +n62003002019 +n62003002020 +n62003002021 +n62003002022 +n62003003001 +n62003003002 +n62003003003 +n62003003004 +n62003003005 +n62003003006 +n62003003007 +n62003003008 +n62003003009 +n62003003010 +n62003003011 +n62003003012 +n62003003013 +n62003003014 +n62003003015 +n62003004001 +n62003004002 +n62003004003 +n62003004004 +n62003004005 +n62003004006 +n62003004007 +n62003004008 +n62003004009 +n62003004010 +n62003004011 +n62003004012 +n62003004013 +n62003004014 +n62003004015 +n62003005001 +n62003005002 +n62003005003 +n62003005004 +n62003005005 +n62003005006 +n62003005007 +n62003005008 +n62003005009 +n62003005010 +n62003005011 +n62003005012 +n62003005013 +n62003005014 +n62003005015 +n62003006001 +n62003006002 +n62003006003 +n62003006004 +n62003006005 +n62003006006 +n62003006007 +n62003006008 +n62003006009 +n62003006010 +n62003006011 +n62003006012 +n62003006013 +n62003006014 +n62003006015 +n62003006016 +n62003007001 +n62003007002 +n62003007003 +n62003007004 +n62003007005 +n62003007006 +n62003007007 +n62003007008 +n62003007009 +n62003007010 +n62003007011 +n62003007012 +n62003007013 +n62003007014 +n62003008001 +n62003008002 +n62003008003 +n62003008004 +n62003008005 +n62003008006 +n62003008007 +n62003008008 +n62003008009 +n62003008010 +n62003008011 +n62003008012 +n62003008013 +n62003008014 +n62003008015 +n62003008016 +n62003008017 +n62003008018 +n62003008019 +n62003008020 +n62003008021 +n62003008022 +n62003008023 +n62003008024 +n62003008025 +n62003008026 +n62003008027 +n62003009001 +n62003009002 +n62003009003 +n62003009004 +n62003009005 +n62003009006 +n62003009007 +n62003009008 +n62003009009 +n62003009010 +n62003009011 +n62003009012 +n62003009013 +n62003009014 +n62003009015 +n62003009016 +n62003009017 +n62003009018 +n62003009019 +n62003009020 +n62003009021 +n62003009022 +n62003009023 +n62003009024 +n62003010001 +n62003010002 +n62003010003 +n62003010004 +n62003010005 +n62003010006 +n62003010007 +n62003010008 +n62003010009 +n62003010010 +n62003010011 +n62003010012 +n62003010013 +n62003010014 +n62003010015 +n62003010016 +n62003010017 +n62003010018 +n62003010019 +n62003010020 +n62003010021 +n62003010022 +n62003010023 +n62003010024 +n62003010025 +n62003010026 +n62003010027 +n62003010028 +n62003010029 +n62003010030 +n62003011001 +n62003011002 +n62003011003 +n62003011004 +n62003011005 +n62003011006 +n62003011007 +n62003011008 +n62003011009 +n62003011010 +n62003011011 +n62003011012 +n62003012001 +n62003012002 +n62003012003 +n62003012004 +n62003012005 +n62003012006 +n62003012007 +n62003012008 +n62003012009 +n62003012010 +n62003012011 +n62003012012 +n62003012013 +n62003012014 +n62003012015 +n62003012016 +n62003012017 +n62003012018 +n62003012019 +n62003012020 +n62003012021 +n62003012022 +n62003012023 +n62003012025 +n62003012024 +n62003012026 +n62003012027 +n62003012028 +n62003012029 +n62003013003 +n62003013001 +n62003013002 +n62003013004 +n62003013005 +n62003013006 +n62003013007 +n62003013008 +n62003014001 +n62003014002 +n62003014003 +n62003014004 +n62003014005 +n62003014006 +n62003014007 +n62003014008 +n62003014009 +n62003014010 +n62003014011 +n62003014012 +n62003014013 +n62003014014 +n62003014015 +n62003014016 +n62003014017 +n62003014018 +n62003014019 +n62003014020 +n62003014021 +n62003015001 +n62003015002 +n62003015003 +n62003015004 +n62003015005 +n62003015006 +n62003015007 +n62003015008 +n62003015009 +n62003015010 +n62003015011 +n62003015012 +n62003015013 +n62003015014 +n62003015015 +n62003015016 +n62003015017 +n62003015018 +n62003015019 +n62003015020 +n62003016001 +n62003016002 +n62003016003 +n62003016004 +n62003016005 +n62003016006 +n62003016007 +n62003016008 +n62003016009 +n62003016010 +n62003016011 +n62003016012 +n62003016013 +n62003016014 +n62003016015 +n62003016016 +n62003016017 +n62003016018 +n62003016019 +n62003016020 +n62003016021 +n62003016022 +n62003017002 +n62003017003 +n62003017001 +n62003017004 +n62003017005 +n62003017006 +n62003017007 +n62003017008 +n62003017009 +n62003017010 +n62003017011 +n62003017012 +n62003017013 +n62003017014 +n62003017015 +n62003017016 +n62003017017 +n62003017018 +n62003017019 +n62003017020 +n62003017021 +n62003017022 +n62003017023 +n62003017024 +n62003017025 +n62003017026 +n62003017027 +n62003017028 +n62003017029 +n62003017030 +n62003018001 +n62003018003 +n62003018002 +n62003018004 +n62003018005 +n62003018006 +n62003018007 +n62003018008 +n62003018009 +n62003018010 +n62003018011 +n62003018012 +n62003019001 +n62003019002 +n62003019003 +n62003019004 +n62003019005 +n62003019006 +n62003019007 +n62003019008 +n62003019009 +n62003019010 +n62003019011 +n62003019012 +n62003019013 +n62003019014 +n62003019015 +n62003020001 +n62003020002 +n62003020003 +n62003020004 +n62003020005 +n62003020006 +n62003020007 +n62003020008 +n62003020009 +n62003020010 +n62003020011 +n62003020012 +n62003020013 +n62003020014 +n62003020015 +n62003020016 +n62003020017 +n62003021001 +n62003021002 +n62003021003 +n62003021004 +n62003021005 +n62003021006 +n62003021007 +n62003021008 +n62003021009 +n62003021010 +n62003021011 +n62003022001 +n62003022003 +n62003022002 +n62003022004 +n62003022005 +n62003022006 +n62003022007 +n62003022008 +n62003022009 +n62003022010 +n62003022011 +n62003022012 +n62003022013 +n62003022014 +n62003022015 +n62003022016 +n62003022017 +n62003022018 +n62003023001 +n62003023002 +n62003023003 +n62003023004 +n62003023005 +n62003023006 +n62003023007 +n62003023008 +n62003023009 +n62003023010 +n62003023011 +n62003023012 +n62003023013 +n62003023014 +n62003023015 +n62003023016 +n62003023017 +n62003023018 +n62003023019 +n62003023020 +n62003023021 +n62003023022 +n62003024001 +n62003024002 +n62003024003 +n62003024004 +n62003024005 +n62003024006 +n62003024007 +n62003024008 +n62003024009 +n62003024010 +n62003024011 +n62003024012 +n62003024013 +n62003024014 +n62003024015 +n62003024016 +n62003024017 +n62003024018 +n62003024019 +n62003024020 +n62003024021 +n62003024022 +n62003024023 +n62003024024 +n62003024025 +n62003024026 +n62003024027 +n62004001001 +n62004001002 +n62004001003 +n62004001004 +n62004001005 +n62004001006 +n62004001007 +n62004001008 +n62004001009 +n62004001010 +n62004001011 +n62004001012 +n62004001013 +n62004001014 +n62004001015 +n62004001016 +n62004001017 +n62004001018 +n62004001019 +n62004001020 +n62004001021 +n62004002001 +n62004002002 +n62004002003 +n62004002004 +n62004002005 +n62004002006 +n62004002007 +n62004002008 +n62004002009 +n62004002010 +n62004002011 +n62004002012 +n62004002013 +n62004002014 +n62004002015 +n62004002016 +n62004002017 +n62004002018 +n62004002019 +n62004002020 +n62004003001 +n62004003002 +n62004003003 +n62004003004 +n62004003005 +n62004003006 +n62004003007 +n62004003008 +n62004003009 +n62004003010 +n62004003011 +n62004003012 +n62004003013 +n62004003014 +n62004003015 +n62004003016 +n62004003017 +n62004003018 +n62004003019 +n62004003020 +n62004003021 +n62004003022 +n62004003023 +n62004003024 +n62004003025 +n62004003026 +n62004003027 +n62004003028 +n62004003029 +n62004003030 +n62004004006 +n62004004001 +n62004004002 +n62004004003 +n62004004004 +n62004004005 +n62004004007 +n62004004008 +n62004004009 +n62004004010 +n62004004011 +n62004004012 +n62004004013 +n62004004014 +n62004004015 +n62004004016 +n62004004017 +n62004004018 +n62004004019 +n62004004020 +n62004005001 +n62004005002 +n62004005003 +n62004005004 +n62004005005 +n62004005006 +n62004005007 +n62004005008 +n62004005009 +n62004005010 +n62004005011 +n62004005012 +n62004005013 +n62004005014 +n62004005015 +n62004005016 +n62004006001 +n62004006002 +n62004006003 +n62004006004 +n62004006005 +n62004006006 +n62004006007 +n62004006008 +n62004006009 +n62004006010 +n62004006011 +n62004006012 +n62004006013 +n62004006014 +n62004006015 +n62004006016 +n62004006017 +n62004006018 +n62004006019 +n62004006020 +n62004006021 +n62004006022 +n62004006023 +n62004006024 +n62004006025 +n62004006026 +n62004006027 +n62004006028 +n62004006029 +n62004006030 +n62004006031 +n62004006032 +n62004007001 +n62004007002 +n62004007003 +n62004007004 +n62004007005 +n62004007006 +n62004007007 +n62004007008 +n62004007009 +n62004007010 +n62004007011 +n62004007012 +n62004007013 +n62004007014 +n62004007015 +n62004007016 +n62004007017 +n62004007018 +n62004007019 +n62004007020 +n62004007021 +n62004007022 +n62004008001 +n62004008002 +n62004008003 +n62004008004 +n62004008005 +n62004008006 +n62004008007 +n62004008008 +n62004008009 +n62004008010 +n62004008011 +n62004008012 +n62004009001 +n62004009002 +n62004009003 +n62004009004 +n62004009005 +n62004009006 +n62004009007 +n62004009008 +n62004009009 +n62004009010 +n62004009011 +n62004009012 +n62004009013 +n62004009014 +n62004009015 +n62004009016 +n62004009017 +n62004009018 +n62004009019 +n62004009020 +n62004009021 +n62004009022 +n62004009023 +n62004009024 +n62004009025 +n62004010001 +n62004010002 +n62004010003 +n62004010004 +n62004010005 +n62004010006 +n62004010007 +n62004010008 +n62004010009 +n62004010010 +n62004010011 +n62004010012 +n62004010013 +n62004010014 +n62004010015 +n62004010016 +n62004010017 +n62004010018 +n62004010019 +n62004010020 +n62004010021 +n62004010022 +n62004010023 +n62004010024 +n62004010025 +n62004010026 +n62004011001 +n62004011002 +n62004011003 +n62004011004 +n62004011005 +n62004011006 +n62004011007 +n62004011008 +n62004011009 +n62004011010 +n62004011011 +n62004011012 +n62004012001 +n62004012002 +n62004012003 +n62004012004 +n62004012005 +n62004012006 +n62004012007 +n62004012008 +n62004012009 +n62004012010 +n62004012011 +n62004012012 +n62004012013 +n62004012014 +n62004012015 +n62004012016 +n62004012018 +n62004012019 +n62004012017 +n62004012020 +n62004013001 +n62004013002 +n62004013003 +n62004013004 +n62004013005 +n62004013006 +n62004013007 +n62004013008 +n62004013009 +n62004013010 +n62004013011 +n62004013012 +n62004013013 +n62004013014 +n62004013015 +n62004013016 +n62004013017 +n62004013018 +n62004014001 +n62004014002 +n62004014003 +n62004014004 +n62004014005 +n62004014006 +n62004014007 +n62004014008 +n62004014009 +n62004014010 +n62004014011 +n62004014012 +n62004014013 +n62004014014 +n62004015002 +n62004015001 +n62004015003 +n62004015004 +n62004015005 +n62004015006 +n62004015007 +n62004015008 +n62004015009 +n62004015010 +n62004015011 +n62004015012 +n62004015013 +n62004015014 +n62004015015 +n62004015016 +n62004015017 +n62004015018 +n62004015019 +n62004015020 +n62004016001 +n62004016002 +n62004016003 +n62004016004 +n62004016005 +n62004016006 +n62004016007 +n62004016008 +n62004016009 +n62004016010 +n62004016011 +n62004016012 +n62004016013 +n62004016014 +n62004016015 +n62004016016 +n62004016017 +n62004016018 +n62004016019 +n62004016020 +n62004016021 +n62004016022 +n62004016023 +n62004016024 +n62004016025 +n62004016026 +n62004016027 +n62004016028 +n62004016029 +n62004016030 +n62004016031 +n62004016032 +n62004016033 +n62004017001 +n62004017002 +n62004017003 +n62004017004 +n62004017005 +n62004017006 +n62004017007 +n62004017008 +n62004017009 +n62004017010 +n62004017011 +n62004017012 +n62004017013 +n62004017014 +n62004017015 +n62004017016 +n62004017017 +n62004017018 +n62004017019 +n62004017020 +n62004017021 +n62004017022 +n62004017023 +n62004017024 +n62004017025 +n62004017026 +n62004018001 +n62004018002 +n62004018003 +n62004018004 +n62004018005 +n62004018006 +n62004018007 +n62004018008 +n62004018009 +n62004018010 +n62004018011 +n62004018012 +n62004018013 +n62004018014 +n62004018015 +n62004018016 +n62004018017 +n62004018018 +n62004018019 +n62004018021 +n62004018020 +n62004018022 +n62004018023 +n62004018024 +n62004018025 +n62004018026 +n62004018027 +n62004019001 +n62004019002 +n62004019003 +n62004019004 +n62004019005 +n62004019006 +n62004019007 +n62004020001 +n62004020002 +n62004020003 +n62004020004 +n62004020005 +n62004020006 +n62004020007 +n62004020008 +n62004020009 +n62004020010 +n62004020011 +n62004020012 +n62004020013 +n62004020014 +n62004020016 +n62004020015 +n62004020017 +n62004020018 +n62004020019 +n62004020020 +n62004020021 +n62004020022 +n62004020023 +n62004020029 +n62004020030 +n62004020024 +n62004020025 +n62004020026 +n62004020027 +n62004020028 +n62004020031 +n62004021001 +n62004021002 +n62004021003 +n62004021004 +n62004021005 +n62004021006 +n62004021007 +n62004021008 +n62004021009 +n62004021010 +n62004021011 +n62004021012 +n62004021013 +n62004021014 +n62004021015 +n62004021016 +n62004021017 +n62005001001 +n62005001002 +n62005001003 +n62005001004 +n62005001005 +n62005001006 +n62005001007 +n62005001008 +n62005001009 +n62005001010 +n62005001011 +n62005001012 +n62005001013 +n62005001014 +n62005001015 +n62005001016 +n62005001017 +n62005001018 +n62005001019 +n62005001020 +n62005001021 +n62005001022 +n62005001023 +n62005002001 +n62005002002 +n62005002003 +n62005002004 +n62005002005 +n62005002006 +n62005002007 +n62005002008 +n62005002009 +n62005002010 +n62005002011 +n62005002012 +n62005002013 +n62005002014 +n62005002015 +n62005002016 +n62005002017 +n62005002018 +n62005003002 +n62005003001 +n62005003003 +n62005003004 +n62005003005 +n62005003006 +n62005003007 +n62005003008 +n62005003009 +n62005003010 +n62005003011 +n62005003012 +n62005003013 +n62005003014 +n62005003015 +n62005003016 +n62005003017 +n62005003018 +n62005003019 +n62005004001 +n62005004002 +n62005004003 +n62005004004 +n62005004005 +n62005004006 +n62005004007 +n62005004008 +n62005004009 +n62005004010 +n62005004011 +n62005004012 +n62005004013 +n62005004014 +n62005004015 +n62005004016 +n62005004017 +n62005004018 +n62005004019 +n62005004020 +n62005004021 +n62005004022 +n62005005001 +n62005005002 +n62005005003 +n62005005004 +n62005005005 +n62005005006 +n62005005007 +n62005005008 +n62005005009 +n62005005010 +n62005005011 +n62005005012 +n62005005013 +n62005005014 +n62005005015 +n62005005016 +n62005005017 +n62005006001 +n62005006002 +n62005006003 +n62005006004 +n62005006005 +n62005006006 +n62005006007 +n62005006008 +n62005006009 +n62005006010 +n62005006011 +n62005006012 +n62005006013 +n62005006014 +n62005006015 +n62005006016 +n62005006017 +n62005006018 +n62005006019 +n62005006020 +n62005006021 +n62005006022 +n62005006023 +n62005006024 +n62005006025 +n62005006026 +n62005006027 +n62005006028 +n62005006029 +n62005006030 +n62005006031 +n62005006032 +n62005006033 +n62005006034 +n62005006035 +n62005007001 +n62005007002 +n62005007003 +n62005007004 +n62005007005 +n62005008001 +n62005008002 +n62005008003 +n62005008004 +n62005008005 +n62005008006 +n62005008007 +n62005008008 +n62005008009 +n62005008010 +n62005008011 +n62005008012 +n62005008013 +n62005008014 +n62005008015 +n62005009001 +n62005009002 +n62005009003 +n62005009004 +n62005009005 +n62005009006 +n62005009007 +n62005009008 +n62005009009 +n62005009010 +n62005009011 +n62005009012 +n62005009013 +n62005009014 +n62005009015 +n62005009016 +n62005009017 +n62005009018 +n62005009019 +n62005009020 +n62005009021 +n62005009022 +n62005009023 +n62005009024 +n62005009025 +n62005010001 +n62005010002 +n62005010003 +n62005010004 +n62005010005 +n62005010006 +n62005010007 +n62005010008 +n62005010009 +n62005010010 +n62005010011 +n62005010012 +n62005010013 +n62005010014 +n62005010015 +n62005010016 +n62005010017 +n62005010018 +n62005010019 +n62005010020 +n62005010021 +n62005010022 +n62005010023 +n62005010024 +n62005010025 +n62005010026 +n62005010027 +n62005010028 +n62005010029 +n62005010030 +n62005010031 +n62005010032 +n62005010033 +n62005010034 +n62005011001 +n62005011002 +n62005011003 +n62005011004 +n62005011005 +n62005011006 +n62005011007 +n62005011008 +n62005011009 +n62005011010 +n62005011011 +n62005011012 +n62005011013 +n62005011014 +n62005011015 +n62005011016 +n62005011017 +n62005011018 +n62005011019 +n62005011020 +n62005011021 +n62005012001 +n62005012002 +n62005012003 +n62005012004 +n62005012005 +n62005012006 +n62005012007 +n62005012008 +n62005012009 +n62005012010 +n62005012011 +n62005012012 +n62005012013 +n62005012014 +n62005012015 +n62005012016 +n62005012017 +n62005012018 +n62005013001 +n62005013002 +n62005013003 +n62005013010 +n62005013011 +n62005013012 +n62005013013 +n62005013014 +n62005013015 +n62005013016 +n62005013017 +n62005013018 +n62005013004 +n62005013005 +n62005013006 +n62005013007 +n62005013009 +n62005013008 +n62005014001 +n62005014002 +n62005014003 +n62005014004 +n62005014005 +n62005014006 +n62005014007 +n62005014008 +n62005014009 +n62005014010 +n62005014011 +n62005014012 +n62005014013 +n62005014014 +n62005014015 +n62005014016 +n62005014017 +n62005014018 +n62005014019 +n62005015001 +n62005015002 +n62005015003 +n62005015004 +n62005015005 +n62005015006 +n62005015008 +n62005015007 +n62005015009 +n62005015010 +n62005015011 +n62005015012 +n62005015013 +n62005015014 +n62005015015 +n62005015016 +n62005015017 +n62005015018 +n62005016001 +n62005016002 +n62005016003 +n62005016004 +n62005016005 +n62005016006 +n62005016007 +n62005016008 +n62005016009 +n62005016010 +n62005016011 +n62005016012 +n62005016013 +n62005016014 +n62005016016 +n62005016015 +n62005016017 +n62005016018 +n62005016019 +n62005016020 +n62005016021 +n62005016022 +n62005016023 +n62005016024 +n62005016025 +n62005016026 +n62005016027 +n62005016028 +n62005016029 +n62005016030 +n62005016031 +n62005017001 +n62005017002 +n62005017003 +n62005017004 +n62005017005 +n62005017006 +n62005017007 +n62005017008 +n62005017009 +n62005017010 +n62005018001 +n62005018002 +n62005018003 +n62005018004 +n62005018005 +n62005018006 +n62005018007 +n62005018008 +n62005018009 +n62005018010 +n62005018011 +n62005018012 +n62005018013 +n62005018014 +n62005018015 +n62005018016 +n62005018017 +n62005018018 +n62005018019 +n62005018020 +n62005018021 +n62005018022 +n62005018023 +n62005018024 +n62005019001 +n62005019002 +n62005019003 +n62005019004 +n62005019005 +n62005019006 +n62005019007 +n62005019008 +n62005019009 +n62005019010 +n62005019011 +n62005019012 +n62005019013 +n62005019014 +n62005020002 +n62005020001 +n62005020003 +n62005020004 +n62005020005 +n62005020006 +n62005020007 +n62005020008 +n62005020009 +n62005020010 +n62005020011 +n62005020012 +n62005020013 +n62005020014 +n62005020015 +n62005020016 +n62005020017 +n62005020018 +n62005020019 +n62005020020 +n62005020021 +n62005020022 +n62005020023 +n62005020024 +n62005020025 +n62005020026 +n62005020027 +n62005020028 +n62005020029 +n62005020030 +n62005020031 +n62005020032 +n62005020033 +n62005020034 +n62005020035 +n62005021001 +n62005021002 +n62005021003 +n62005021004 +n62005021005 +n62005021006 +n63001001001 +n63001001002 +n63001001003 +n63001001004 +n63001001005 +n63001001006 +n63001001007 +n63001001008 +n63001001009 +n63001001011 +n63001001012 +n63001001013 +n63001001010 +n63001001014 +n63001001015 +n63001001016 +n63001001017 +n63001001018 +n63001001019 +n63001001020 +n63001001021 +n63001001022 +n63001001023 +n63001001024 +n63001002001 +n63001002002 +n63001002003 +n63001002004 +n63001002005 +n63001002006 +n63001002007 +n63001002008 +n63001002009 +n63001002010 +n63001002011 +n63001002012 +n63001002013 +n63001002014 +n63001003001 +n63001003002 +n63001003003 +n63001003004 +n63001003005 +n63001003006 +n63001003007 +n63001003008 +n63001003009 +n63001003010 +n63001003011 +n63001003012 +n63001003013 +n63001003014 +n63001003015 +n63001003016 +n63001003017 +n63001003018 +n63001003019 +n63001003020 +n63001003021 +n63001004001 +n63001004002 +n63001004003 +n63001004004 +n63001004005 +n63001004006 +n63001004007 +n63001004008 +n63001004009 +n63001004010 +n63001004011 +n63001004012 +n63001004013 +n63001004014 +n63001004015 +n63001004016 +n63001004017 +n63001005001 +n63001005005 +n63001005002 +n63001005003 +n63001005004 +n63001005009 +n63001005010 +n63001005006 +n63001005007 +n63001005008 +n63001005011 +n63001005012 +n63001005013 +n63001005014 +n63001005015 +n63001005016 +n63001005017 +n63001005018 +n63001005019 +n63001006001 +n63001006002 +n63001006003 +n63001006004 +n63001006005 +n63001006006 +n63001006007 +n63001006008 +n63001006009 +n63001006010 +n63001006011 +n63001006012 +n63001006013 +n63001006014 +n63001006015 +n63001006016 +n63001006017 +n63001006018 +n63001006019 +n63001006020 +n63001006021 +n63001006022 +n63001006023 +n63001007001 +n63001007004 +n63001007005 +n63001007006 +n63001007007 +n63001007002 +n63001007003 +n63001007008 +n63001007009 +n63001007010 +n63001007011 +n63001007012 +n63001007013 +n63001007014 +n63001007015 +n63001007016 +n63001007017 +n63001007018 +n63001007019 +n63001007020 +n63001007021 +n63001007022 +n63001008001 +n63001008002 +n63001008003 +n63001008004 +n63001008005 +n63001008006 +n63001008007 +n63001008008 +n63001008009 +n63001008010 +n63001008011 +n63001009001 +n63001009002 +n63001009003 +n63001009004 +n63001009005 +n63001009006 +n63001009007 +n63001009008 +n63001009009 +n63001009010 +n63001009011 +n63001009012 +n63001009013 +n63001009014 +n63001009015 +n63001009016 +n63001009017 +n63001009018 +n63001009019 +n63001009020 +n63001009021 +n63001009022 +n63001009023 +n63001009024 +n63001009025 +n63001009026 +n63001009027 +n63001010001 +n63001010002 +n63001010003 +n63001010004 +n63001010005 +n63001010006 +n63001010007 +n63001010008 +n63001010009 +n63001010010 +n63001010011 +n63001010012 +n63001010013 +n63001010014 +n63001010015 +n63001010016 +n63001010017 +n63001010018 +n63001010019 +n63001010020 +n63001010021 +n63001011003 +n63001011001 +n63001011002 +n63001011004 +n63001011005 +n63001011006 +n63001011007 +n63001011008 +n63001011009 +n63001011010 +n63001011011 +n63001012002 +n63001012001 +n63001012003 +n63001012004 +n63001012005 +n63001012006 +n63001012007 +n63001012008 +n63001012009 +n63001012010 +n63001012011 +n63001012012 +n63001012013 +n63001012014 +n63001012015 +n63001012016 +n63001012017 +n63001012018 +n63001012019 +n63001012020 +n63001012021 +n63001012022 +n63001012023 +n63001012024 +n63001012025 +n63001012026 +n63001013001 +n63001013002 +n63001013003 +n63001013004 +n63001013005 +n63001013006 +n63001013007 +n63001013008 +n63001013009 +n64001001001 +n64001001002 +n64001001003 +n64001001004 +n64001001005 +n64001001006 +n64001001007 +n64001001008 +n64001001009 +n64001001010 +n64001002001 +n64001002002 +n64001002003 +n64001002004 +n64001002005 +n64001002006 +n64001002007 +n64001002008 +n64001002009 +n64001002010 +n64001002011 +n64001002012 +n64001002013 +n64001003002 +n64001003001 +n64001003003 +n64001003004 +n64001003005 +n64001003006 +n64001003007 +n64001003008 +n64001003009 +n64001003010 +n64001003011 +n64001003012 +n64001003013 +n64001003014 +n64001003015 +n64001004001 +n64001004005 +n64001004002 +n64001004003 +n64001004004 +n64001004006 +n64001004007 +n64001004008 +n64001004009 +n64001004010 +n64001004011 +n64001004012 +n64001004013 +n64001004014 +n64001005001 +n64001005002 +n64001005003 +n64001005005 +n64001005004 +n64001005006 +n64001005007 +n64001005008 +n64001005009 +n64001005010 +n64001005011 +n64001005012 +n64001006001 +n64001006002 +n64001006003 +n64001006004 +n64001006005 +n64001006006 +n64001006007 +n64001006008 +n64001006009 +n64001006010 +n64001006011 +n64001006012 +n64001006013 +n64001006014 +n64001007002 +n64001007001 +n64001007003 +n64001007004 +n64001007005 +n64001007006 +n64001007007 +n64001007008 +n64001007009 +n64001007010 +n64001008002 +n64001008001 +n64001008003 +n64001008004 +n64001008005 +n64001008006 +n64001008007 +n64001008008 +n64001008009 +n64001008010 +n64001008011 +n64001009001 +n64001009002 +n64001009003 +n64001009004 +n64001009005 +n64001009006 +n64001009007 +n64001009008 +n64001009009 +n64001009010 +n64001009011 +n64001009012 +n64001010001 +n64001010002 +n64001010003 +n64001010004 +n64001010005 +n64001010006 +n64001010007 +n64001010008 +n64001010009 +n64001010010 +n64001010011 +n64001010012 +n64001010013 +n64001010014 +n64001010015 +n64001010016 +n64001010017 +n64001010018 +n64001010019 +n64001010020 +n64001010021 +n64001010022 +n64001010023 +n64001010024 +n64001010025 +n64001010026 +n64001010027 +n64001010028 +n64001010029 +n64001010030 +n64001010031 +n64001010032 +n64001010033 +n64001011001 +n64001011002 +n64001011003 +n64001011004 +n64001011005 +n64001011006 +n64001011007 +n64001011008 +n64001011009 +n64001011010 +n64001011011 +n64001011012 +n64001011013 +n64001011014 +n64001011015 +n64001011016 +n64001011017 +n64001011018 +n64001011019 +n64001011020 +n64001012001 +n64001012002 +n64001012003 +n64001012004 +n64001012005 +n64001012006 +n64001012007 +n64001012008 +n64001012009 +n64001012012 +n64001012010 +n64001012011 +n64001012013 +n64001012014 +n64001012015 +n64001012016 +n64001012017 +n64001012018 +n64001012019 +n64001012020 +n64001012021 +n64001013002 +n64001013001 +n64001013003 +n64001013004 +n64001013005 +n64001013006 +n64001013007 +n64001013008 +n64001013009 +n64001013010 +n64001013011 +n64001013012 +n64001013013 +n64001014002 +n64001014001 +n64001014003 +n64001014004 +n64001014005 +n64001014006 +n64001014007 +n64001014008 +n64001014009 +n64001014010 +n64001015001 +n64001015002 +n64001015003 +n64001015004 +n64001015005 +n64001015006 +n64001015007 +n64001015008 +n64001015009 +n64001015010 +n64001015011 +n65001001001 +n65001001002 +n65001001003 +n65001001004 +n65001001006 +n65001001005 +n65001001007 +n65001001008 +n65001001009 +n65001001010 +n65001001011 +n65001001012 +n65001001013 +n65001001014 +n65001001015 +n65001001016 +n65001001017 +n65001002002 +n65001002001 +n65001002003 +n65001002004 +n65001002005 +n65001002006 +n65001002007 +n65001003001 +n65001003002 +n65001003003 +n65001003004 +n65001003005 +n65001003006 +n65001003007 +n65001003008 +n65001003009 +n65001003010 +n65001003011 +n65001003012 +n65001003013 +n65001003014 +n65001003015 +n65001003016 +n65001003017 +n65001003018 +n65001003019 +n65001003020 +n65001003021 +n65001003022 +n65001003023 +n65001004002 +n65001004001 +n65001004003 +n65001004004 +n65001004005 +n65001004006 +n65001004007 +n65001004008 +n65001004009 +n65001004010 +n65001004011 +n65001004012 +n65001004013 +n65001004014 +n65001004015 +n65001004016 +n65001004017 +n65001004018 +n65001004019 +n65001004020 +n65001004021 +n65001004022 +n65001004023 +n65001004024 +n65001004025 +n65001004026 +n65001004027 +n65001004028 +n65001004029 +n65001004030 +n65001005002 +n65001005004 +n65001005005 +n65001005006 +n65001005007 +n65001005001 +n65001005003 +n65001005008 +n65001005009 +n65001005010 +n65001005011 +n65001005012 +n65001005013 +n65001005014 +n65001005015 +n65001005016 +n65001005017 +n65001005018 +n65001005019 +n65001005020 +n65001006002 +n65001006001 +n65001006003 +n65001006004 +n65001006005 +n65001006006 +n65001006007 +n65001006008 +n65001006009 +n65001006010 +n65001006011 +n65001006012 +n65001006013 +n65001006014 +n65001006015 +n65001006016 +n65001006017 +n65001006018 +n65001006019 +n65001006020 +n65001006021 +n65001006022 +n65001007001 +n65001007002 +n65001007003 +n65001007004 +n65001007005 +n65001007006 +n65001007007 +n65001007008 +n65001007009 +n65001007010 +n65001007011 +n65001007012 +n65001007013 +n65001007014 +n65001007015 +n65001007016 +n65001007017 +n65001007018 +n65001007019 +n65001007020 +n65001007021 +n65001007022 +n65001007023 +n65001007024 +n65001007025 +n65001008002 +n65001008001 +n65001008003 +n65001008004 +n65001008005 +n65001008007 +n65001008006 +n65001008008 +n65001008010 +n65001008009 +n65001008011 +n65001008013 +n65001008012 +n65001008014 +n65001009002 +n65001009006 +n65001009007 +n65001009008 +n65001009009 +n65001009010 +n65001009011 +n65001009012 +n65001009013 +n65001009014 +n65001009015 +n65001009001 +n65001009003 +n65001009004 +n65001009005 +n65001009016 +n65001009017 +n65001009019 +n65001009018 +n65001009020 +n65001009021 +n65001009022 +n65001009023 +n65001009024 +n65001010002 +n65001010004 +n65001010001 +n65001010003 +n65001010005 +n65001010006 +n65001010007 +n65001010009 +n65001010008 +n65001010010 +n65001010011 +n65001010012 +n65001010013 +n65001010014 +n65001010015 +n65001010016 +n65001010017 +n65001010018 +n65001011001 +n65001011002 +n65001011003 +n65001011004 +n65001011005 +n65001011006 +n65001011007 +n65001011008 +n65001011009 +n65001011010 +n65001011011 +n65001011012 +n65001011013 +n65001011014 +n65001011015 +n65001011016 +n65001011017 +n65001011018 +n65001011019 +n65001011020 +n65001011021 +n65001012001 +n65001012002 +n65001012003 +n65001012004 +n65001012005 +n65001012006 +n65001012007 +n65001012008 +n65001012009 +n65001012010 +n65001012011 +n65001012012 +n65001012013 +n65001012014 +n65001012015 +n65001012016 +n65001012017 +n65001012018 +n65001012019 +n65001012020 +n65001012021 +n65001012022 +n65001012023 +n65001013001 +n65001013002 +n65001013003 +n65001013004 +n65001013005 +n65001013006 +n65001013007 +n65001013008 +n65001013009 +n65001013010 +n65001013011 +n65001013012 +n65001013013 +n65001013014 +n65001013015 +n65001013016 +n65001013017 +n65001014002 +n65001014001 +n65001014003 +n65001014004 +n65001014005 +n65001014006 +n65001014007 +n65001014008 +n65001014009 +n65001014010 +n65001014011 +n65001014012 +n65001014013 +n65001014014 +n65001014015 +n65001014016 +n65001015001 +n65001015002 +n65001015003 +n65001015004 +n65001015005 +n65001015006 +n65001015007 +n65001015008 +n65001015009 +n65001015010 +n65001015011 +n65001015012 +n65001015013 +n65001015014 +n65001015015 +n65001015016 +n65001015017 +n65001015018 +n65001015019 +n65001015020 +n65001015021 +n65001015022 +n65001015023 +n65001015024 +n65001015025 +n65001015026 +n65001015027 +n65001015028 +n65001016001 +n65001016002 +n65001016003 +n65001016004 +n65001016005 +n65001016006 +n65001016007 +n65001016008 +n65001016009 +n65001016010 +n65001016011 +n65001016012 +n65001016013 +n65001016014 +n65001016015 +n65001016016 +n65001016017 +n65001016018 +n65001016019 +n65001017002 +n65001017003 +n65001017001 +n65001017004 +n65001017005 +n65001017006 +n65001017007 +n65001017008 +n65001017009 +n65001017010 +n65001017011 +n65001017012 +n65001017013 +n65001017014 +n65001017015 +n65001017016 +n65001018001 +n65001018002 +n65001018003 +n65001018004 +n65001018005 +n65001018006 +n65001018007 +n65001018008 +n65001018009 +n65001018014 +n65001018010 +n65001018011 +n65001018012 +n65001018013 +n65001018015 +n65001018016 +n65001019001 +n65001019002 +n65001019003 +n65001019004 +n65001019005 +n65001019006 +n65001019007 +n65001019008 +n65001020002 +n65001020003 +n65001020001 +n65001020004 +n65001020005 +n65001020006 +n65001020007 +n65001020008 +n65001020009 +n65001020010 +n65001020011 +n65001020012 +n65001020013 +n65001021001 +n65001021002 +n65001021003 +n65001021004 +n65001021005 +n65001021006 +n65001021007 +n65001021008 +n65001021009 +n65001021010 +n65001021011 +n65001021012 +n65001021013 +n65001021014 +n65001021015 +n65001021016 +n65001022001 +n65001022003 +n65001022002 +n65001022005 +n65001022004 +n65001023001 +n65001023002 +n65001023003 +n65001023004 +n65001023006 +n65001023005 +n65001023007 +n65001023008 +n65001023009 +n65001023010 +n65001023011 +n65001023012 +n65001023013 +n65001023014 +n65001023015 +n65001023016 +n65001023017 +n65001024002 +n65001024001 +n65001024003 +n65001024004 +n65001024005 +n65001024006 +n65001024007 +n65001024008 +n65001024009 +n65001024010 +n65001024011 +n65001024012 +n65001024013 +n65001024014 +n65001024015 +n65001025001 +n65001025002 +n65001025003 +n65001025004 +n65001025005 +n65001025006 +n65001025007 +n65001025008 +n65001025009 +n65001025010 +n65001025011 +n65001025012 +n65001025013 +n65001025014 +n65001025015 +n65001025016 +n65001025017 +n65001025018 +n65001025019 +n65001025020 +n65001025021 +n65001025022 +n65001025023 +n65001025024 +n65001025025 +n65001025026 +n65001025027 +n66001001001 +n66001001002 +n66001001003 +n66001001004 +n66001001005 +n66001001006 +n66001001007 +n66001001008 +n66001001009 +n66001001010 +n66001001011 +n66001001012 +n66001001013 +n66001001015 +n66001001016 +n66001001017 +n66001001014 +n66001001018 +n66001001019 +n66001001020 +n66001001021 +n66001001022 +n66001001023 +n66001001024 +n66001001025 +n66001001026 +n66001001027 +n66001001028 +n66001002001 +n66001002002 +n66001002003 +n66001002004 +n66001002005 +n66001002006 +n66001002007 +n66001002008 +n66001002009 +n66001002010 +n66001002011 +n66001002012 +n66001002013 +n66001003001 +n66001003002 +n66001003003 +n66001003004 +n66001003005 +n66001003006 +n66001003007 +n66001003008 +n66001003009 +n66001003010 +n66001003011 +n66001003012 +n66001003013 +n66001003014 +n66001003015 +n66001003016 +n66001003018 +n66001003017 +n66001003019 +n66001003020 +n66001004001 +n66001004002 +n66001004003 +n66001004004 +n66001004005 +n66001004006 +n66001004007 +n66001004008 +n66001004009 +n66001004011 +n66001004012 +n66001004010 +n66001004013 +n66001004014 +n66001004015 +n66001004016 +n66001004017 +n66001004018 +n66001004019 +n66001004020 +n66001004021 +n66001004022 +n66001004023 +n66001004024 +n66001004025 +n66001004026 +n66001004027 +n66001004028 +n66001004029 +n66001004030 +n66001004031 +n66001005001 +n66001005002 +n66001005003 +n66001005004 +n66001005005 +n66001005006 +n66001005007 +n66001005008 +n66001005009 +n66001005010 +n66001005011 +n66001005012 +n66001005013 +n66001005014 +n66001005015 +n66001005016 +n66001005017 +n66001005018 +n66001005019 +n66001005020 +n66001005021 +n66001005022 +n66001005023 +n66001005024 +n66001005025 +n66001005026 +n66001005027 +n66001005028 +n66001005029 +n66001005030 +n66001005031 +n66001005032 +n66001005033 +n66001006001 +n66001006002 +n66001006003 +n66001006004 +n66001006005 +n66001006006 +n66001006007 +n66001006008 +n66001006009 +n66001006010 +n66001006011 +n66001006012 +n66001006013 +n66001006014 +n66001006015 +n66001006016 +n66001006017 +n66001006018 +n66001006019 +n66001006020 +n66001006021 +n66001006022 +n66001007001 +n66001007002 +n66001007003 +n66001007004 +n66001007005 +n66001007006 +n66001007007 +n66001007008 +n66001007009 +n66001007010 +n66001007011 +n66001007012 +n66001007013 +n66001007014 +n66001007015 +n66001007016 +n66001007017 +n66001007018 +n66001007019 +n66001007020 +n66001007021 +n66001007022 +n66001007023 +n66001007024 +n66001007025 +n66001008001 +n66001008002 +n66001008003 +n66001008004 +n66001008005 +n66001008006 +n66001008007 +n66001008008 +n66001008009 +n66001008010 +n66001008011 +n66001008012 +n66001008013 +n66001008014 +n66001008015 +n66001008016 +n66001008017 +n66001008018 +n66001008019 +n66001008020 +n66001008021 +n66001009001 +n66001009002 +n66001009003 +n66001009004 +n66001009005 +n66001009006 +n66001009007 +n66001009008 +n66001009009 +n66001009010 +n66001009011 +n66001009012 +n66001009013 +n66001009014 +n66001009015 +n66001009016 +n66001009017 +n66001009018 +n66001009019 +n66001009020 +n66001009021 +n66001009022 +n66001009023 +n66001009024 +n66001009025 +n66001009026 +n66001009027 +n66001009028 +n66001009029 +n66001009030 +n66001009031 +n66001009032 +n66001010001 +n66001010002 +n66001010003 +n66001010004 +n66001010005 +n66001010006 +n66001010007 +n66001010008 +n66001010009 +n66001010010 +n66001010011 +n66001010012 +n66001010013 +n66001010014 +n66001010015 +n66001011001 +n66001011002 +n66001011003 +n66001011004 +n66001011005 +n66001011006 +n66001011007 +n66001011008 +n66001011009 +n66001011010 +n66001011011 +n66001011012 +n66001011013 +n66001011014 +n66001011015 +n66001011016 +n66001011017 +n66001011018 +n66001011019 +n66001011020 +n66001011021 +n66001011022 +n66001011023 +n66001011024 +n66001011025 +n66001011026 +n66001011027 +n66001011028 +n66001011029 +n66001011030 +n66001011031 +n66001012001 +n66001012002 +n66001012003 +n66001012004 +n66001012005 +n66001012006 +n66001012007 +n66001012008 +n66001012009 +n66001012010 +n66001012011 +n66001012012 +n66001012013 +n66001012014 +n66001012015 +n66001013001 +n66001013002 +n66001013003 +n66001013004 +n66001013005 +n66001013006 +n66001013007 +n66001013008 +n66001013009 +n66001013010 +n66001013011 +n66001013012 +n66001013013 +n66001013014 +n66001013015 +n66001013016 +n66001013017 +n66001014002 +n66001014001 +n66001014003 +n66001014004 +n66001014005 +n66001014006 +n66001014007 +n66001014008 +n66001014009 +n66001014010 +n66001014011 +n66001014012 +n66001014013 +n66001014014 +n66001014015 +n66001014016 +n66001014017 +n66001014018 +n66001014019 +n66001014020 +n66001015001 +n66001015002 +n66001015003 +n66001015004 +n66001015005 +n66001015006 +n66001015007 +n66001015008 +n66001015009 +n66001015010 +n66001015011 +n66001015012 +n66001015013 +n66001015014 +n66001015015 +n66001015016 +n66001015017 +n66001015018 +n66001016001 +n66001016002 +n66001016003 +n66001016004 +n66001016005 +n66001016006 +n66001016007 +n66001016008 +n66001016009 +n66001016010 +n66001016011 +n66001016012 +n66001016013 +n66001016014 +n66001016015 +n66001016016 +n66001016017 +n66001016018 +n66001016019 +n66001016020 +n66001016021 +n66001016022 +n66001016023 +n66001016024 +n66001016025 +n66001016026 +n66001016027 +n66001016028 +n66001016029 +n66001016030 +n66001017001 +n66001017002 +n66001017003 +n66001017004 +n66001017005 +n66001017006 +n66001017007 +n66001017008 +n66001017009 +n66001017010 +n66001017011 +n66001017012 +n66001017013 +n66001017014 +n66001017015 +n66001017016 +n66001017017 +n66001017018 +n66001017019 +n66001017020 +n66001017021 +n66001017022 +n66001017023 +n66001017024 +n66001017025 +n66001017026 +n66001017027 +n66001017028 +n66001018001 +n66001018002 +n66001018003 +n66001018004 +n66001018005 +n66001018006 +n66001018007 +n66001018008 +n66001018009 +n66001018010 +n66001018011 +n66001018012 +n66001018013 +n66001018014 +n66001018015 +n66001018016 +n66001018017 +n66001018018 +n66001018019 +n66001018020 +n66001018021 +n66001018022 +n66001018023 +n66001018024 +n66001019002 +n66001019001 +n66001019003 +n66001019004 +n66001019005 +n66001019006 +n66001019007 +n66001019008 +n66001019009 +n66001019010 +n66001019011 +n66001019012 +n66001019013 +n66001020001 +n66001020002 +n66001020003 +n66001020004 +n66001020005 +n66001020006 +n66001020007 +n66001020008 +n66001020009 +n66001020010 +n66001020011 +n66001020012 +n66001020013 +n66001020014 +n66001020015 +n66001020016 +n66001020017 +n66001020018 +n66001020019 +n66001020020 +n66001020021 +n66001020022 +n66001020023 +n66001020024 +n66001020025 +n66001020026 +n66001020027 +n66001020028 +n66001020029 +n66001020030 +n66001020031 +n66001020032 +n66001020033 +n66002001001 +n66002001002 +n66002001003 +n66002001004 +n66002001005 +n66002001006 +n66002001007 +n66002001008 +n66002001009 +n66002001010 +n66002001011 +n66002001012 +n66002001013 +n66002001014 +n66002001015 +n66002001016 +n66002001017 +n66002001018 +n66002001019 +n66002001020 +n66002001021 +n66002001022 +n66002001023 +n66002001024 +n66002001025 +n66002001026 +n66002001027 +n66002002001 +n66002002002 +n66002002003 +n66002002004 +n66002002005 +n66002002006 +n66002002007 +n66002002008 +n66002002009 +n66002002010 +n66002002011 +n66002002012 +n66002002013 +n66002002014 +n66002002015 +n66002002016 +n66002002017 +n66002002018 +n66002002019 +n66002002020 +n66002002021 +n66002002022 +n66002002023 +n66002002024 +n66002002025 +n66002002026 +n66002002027 +n66002002028 +n66002002029 +n66002002030 +n66002003001 +n66002003002 +n66002003003 +n66002003004 +n66002003005 +n66002003006 +n66002003007 +n66002003008 +n66002003009 +n66002003010 +n66002003011 +n66002003012 +n66002004001 +n66002004002 +n66002004003 +n66002004004 +n66002004005 +n66002004006 +n66002004007 +n66002004008 +n66002004009 +n66002004010 +n66002004011 +n66002005002 +n66002005001 +n66002005003 +n66002005004 +n66002005005 +n66002005006 +n66002005007 +n66002005008 +n66002005009 +n66002005010 +n66002005011 +n66002005013 +n66002005012 +n66002005014 +n66002005015 +n66002005016 +n66002005017 +n66002005018 +n66002005019 +n66002005020 +n66002005021 +n66002005022 +n66002005023 +n66002005024 +n66002005025 +n66002005026 +n66002005027 +n66002005028 +n66002006001 +n66002006002 +n66002006003 +n66002006004 +n66002006005 +n66002006006 +n66002006007 +n66002006008 +n66002006009 +n66002006010 +n66002006011 +n66002006012 +n66002007001 +n66002007002 +n66002007003 +n66002007004 +n66002007005 +n66002007006 +n66002007007 +n66002007008 +n66002007009 +n66002007010 +n66002007011 +n66002007012 +n66002007013 +n66002007014 +n66002007015 +n66002007016 +n66002007017 +n66002007018 +n66002007019 +n66002007020 +n66002007021 +n66002007022 +n66002007023 +n66002007024 +n66002007025 +n66002007026 +n66002007027 +n66002008001 +n66002008002 +n66002008003 +n66002008004 +n66002008005 +n66002008006 +n66002008007 +n66002008008 +n66002008009 +n66002008010 +n66002008011 +n66002008012 +n66002008013 +n66002008014 +n66002008015 +n66002008016 +n66002008017 +n66002008018 +n66002008019 +n66002008020 +n66002009001 +n66002009002 +n66002009003 +n66002009004 +n66002009005 +n66002009006 +n66002009007 +n66002009008 +n66002009009 +n66002009010 +n66002009011 +n66002009012 +n66002009013 +n66002009014 +n66002009015 +n66002009016 +n66002009017 +n66002009018 +n66002009019 +n66002009020 +n66002009021 +n66002009022 +n66002009023 +n66002009024 +n66002009025 +n66002009026 +n66002010001 +n66002010002 +n66002010003 +n66002010005 +n66002010004 +n66002010006 +n66002010007 +n66002010009 +n66002010010 +n66002010008 +n66002010011 +n66002010012 +n66002010013 +n66002010014 +n66002010015 +n66002010016 +n66002010017 +n66002010018 +n66002010019 +n66002010020 +n66002010021 +n66002010022 +n66002010023 +n66002010024 +n66002010025 +n66002010026 +n66002010027 +n66002010028 +n66002010029 +n66002010030 +n66002010031 +n66002010032 +n66002011001 +n66002011002 +n66002011003 +n66002011004 +n66002011005 +n66002011006 +n66002011007 +n66002011008 +n66002011009 +n66002011010 +n66002011011 +n66002011012 +n66002011013 +n66002011014 +n66002011015 +n66002011016 +n66002011017 +n66002011018 +n66002011019 +n66002011020 +n66002012001 +n66002012002 +n66002012003 +n66002012004 +n66002012005 +n66002012006 +n66002012007 +n66002012008 +n66002012009 +n66002012010 +n66002012011 +n66002012012 +n66002012013 +n66002012014 +n66002012015 +n66002012016 +n66002012017 +n66002012018 +n66002013001 +n66002013002 +n66002013003 +n66002013004 +n66002013005 +n66002013006 +n66002013007 +n66002013008 +n66002013009 +n66002013010 +n66002013011 +n66002013012 +n66002013013 +n66002013014 +n66002013015 +n66002013016 +n66002013017 +n66002013018 +n66002013019 +n66002013020 +n66002013021 +n66002013022 +n66002013023 +n66002013024 +n66002013025 +n66002013026 +n66002013027 +n66002013028 +n66002013029 +n66002013030 +n66002013031 +n66002013032 +n66002013033 +n66002013034 +n66002013035 +n66002013036 +n66002013037 +n66002013038 +n66002014001 +n66002014002 +n66002014003 +n66002014004 +n66002014005 +n66002014006 +n66002014007 +n66002014008 +n66002014009 +n66002014010 +n66002014011 +n66002014012 +n66002014013 +n66002014014 +n66002014015 +n66002014016 +n66002014017 +n66002014018 +n66002014019 +n66002014020 +n66002014021 +n66002014022 +n66002014023 +n66002014024 +n66002014025 +n66002014026 +n66002015001 +n66002015002 +n66002015003 +n66002015004 +n66002015005 +n66002015006 +n66002015007 +n66002015008 +n66002015009 +n66002015010 +n66002016002 +n66002016001 +n66002016004 +n66002016003 +n66002016005 +n66002016006 +n66002016007 +n66002016008 +n66002016009 +n66002016010 +n66002016011 +n66002016012 +n66002016013 +n66002016014 +n66002016015 +n66002016016 +n66002016017 +n66002016018 +n66002017001 +n66002017002 +n66002017003 +n66002017004 +n66002017005 +n66002017006 +n66002017007 +n66002017008 +n66002017009 +n66002017010 +n66002017011 +n66002017012 +n66002017013 +n66002017014 +n66002017015 +n66002017016 +n66002017017 +n66002017018 +n66002017019 +n66002017020 +n66002017021 +n66002017022 +n66002017023 +n66002017024 +n66002017025 +n66002017026 +n66002017027 +n66002017030 +n66002017028 +n66002017029 +n66002017031 +n66002017032 +n66002017033 +n66002017034 +n66002017035 +n66002017036 +n66002017037 +n66002018001 +n66002018002 +n66002018003 +n66002018004 +n66002018005 +n66002018006 +n66002018007 +n66002018008 +n66002018009 +n66002018010 +n66002018011 +n66002018012 +n66002018013 +n66002018014 +n66002018015 +n66002018016 +n66002018017 +n66002018018 +n66002018019 +n66002018020 +n66002018021 +n66002018022 +n66002018023 +n66002018024 +n66002018025 +n66002018026 +n66002018027 +n66002018028 +n66002019001 +n66002019002 +n66002019003 +n66002019004 +n66002019005 +n66002019006 +n66002019007 +n66002019008 +n66002019009 +n66002019010 +n66002019011 +n66002019012 +n66002019013 +n66002019014 +n66002019015 +n66002019016 +n66002019017 +n66002019018 +n66002019019 +n66002019020 +n66002019021 +n66002019022 +n66002019023 +n66002019024 +n66002019025 +n66002019026 +n66002020001 +n66002020002 +n66002020003 +n66002020004 +n66002020005 +n66002020006 +n66002020007 +n66002020008 +n66002020009 +n66002020010 +n66002020011 +n66002020012 +n66002020013 +n66002020014 +n66002020015 +n66002020016 +n66002020017 +n66002020018 +n66002020019 +n66002020020 +n66002020021 +n66002020022 +n66002020023 +n66002020024 +n66002021001 +n66002021002 +n66002021003 +n66002021004 +n66002021005 +n66002021006 +n66002021007 +n66002021008 +n66002021009 +n66002021010 +n66002021011 +n66002021012 +n66002021013 +n66002021014 +n66002022001 +n66002022002 +n66002022003 +n66002022004 +n66002022005 +n66002022006 +n66002022007 +n66002022008 +n66002022009 +n66002022010 +n66002022011 +n66002022012 +n66002022013 +n66002022014 +n66002022015 +n66002022016 +n66002022017 +n66002022018 +n66002022019 +n66002022020 +n66002023001 +n66002023002 +n66002023003 +n66002023004 +n66002023005 +n66002023006 +n66002023007 +n66002023008 +n66002023009 +n66002023010 +n66002023011 +n66002023012 +n66002023013 +n66002023014 +n66002023015 +n66002023016 +n66002023017 +n66002023018 +n66002023019 +n66002023020 +n66002023021 +n66002023022 +n66002023023 +n66002023024 +n66002023025 +n66002023026 +n66002023027 +n66002023028 +n66002024002 +n66002024003 +n66002024001 +n66002024004 +n66002024005 +n66002024006 +n66002024007 +n66002024008 +n66002024009 +n66002024010 +n66002024011 +n66002024012 +n66002024013 +n66002024014 +n66002024015 +n66002024016 +n66002024017 +n66002024018 +n66002024019 +n66002024020 +n66002024021 +n66002024022 +n66002024023 +n66002024024 +n66002024025 +n66002024026 +n66002024027 +n66002024028 +n66002024029 +n66002025001 +n66002025002 +n66002025003 +n66002025004 +n66002025005 +n66002025007 +n66002025006 +n66002025008 +n66002026001 +n66002026002 +n66002026003 +n66002026004 +n66002026005 +n66002026006 +n66002026007 +n66002026008 +n66002026009 +n66002026010 +n66002026011 +n66002026012 +n66002026013 +n66002026014 +n66002026015 +n66002026016 +n66002026017 +n66002027001 +n66002027002 +n66002027003 +n66002027004 +n66002027005 +n66002027006 +n66002027007 +n66002027008 +n66002027009 +n66002027010 +n66002027011 +n66002027012 +n66002028001 +n66002028002 +n66002028003 +n66002028004 +n66002028005 +n66002028006 +n66002028007 +n66002028008 +n66002028009 +n66002028010 +n66002028011 +n66002028012 +n66002028013 +n66002028014 +n66002029001 +n66002029002 +n66002029003 +n66002029004 +n66002029005 +n66002029006 +n66002029007 +n66002029008 +n66002029009 +n66002029010 +n66003001001 +n66003001002 +n66003001003 +n66003001004 +n66003001005 +n66003001006 +n66003001007 +n66003001008 +n66003001009 +n66003001010 +n66003001011 +n66003001012 +n66003001013 +n66003001014 +n66003001015 +n66003001016 +n66003001017 +n66003001018 +n66003001019 +n66003001020 +n66003001021 +n66003001022 +n66003001023 +n66003001024 +n66003001025 +n66003001026 +n66003001027 +n66003001028 +n66003001029 +n66003001030 +n66003001031 +n66003001032 +n66003001033 +n66003002001 +n66003002002 +n66003002003 +n66003002004 +n66003002005 +n66003002006 +n66003002007 +n66003002008 +n66003002009 +n66003002011 +n66003002010 +n66003002012 +n66003002013 +n66003002014 +n66003002015 +n66003002016 +n66003002017 +n66003002018 +n66003002019 +n66003003002 +n66003003001 +n66003003003 +n66003003004 +n66003003005 +n66003003006 +n66003003007 +n66003003008 +n66003003009 +n66003003010 +n66003003012 +n66003003011 +n66003003013 +n66003003014 +n66003003015 +n66003003016 +n66003003017 +n66003003018 +n66003003019 +n66003003020 +n66003003021 +n66003003022 +n66003003023 +n66003003024 +n66003003025 +n66003003026 +n66003004001 +n66003004002 +n66003004003 +n66003004004 +n66003004005 +n66003004006 +n66003004007 +n66003004008 +n66003004009 +n66003004010 +n66003004011 +n66003004012 +n66003004013 +n66003004014 +n66003004015 +n66003004016 +n66003004017 +n66003004018 +n66003004019 +n66003004020 +n66003004021 +n66003005001 +n66003005002 +n66003005003 +n66003005004 +n66003005005 +n66003005006 +n66003005007 +n66003005008 +n66003005009 +n66003005010 +n66003005011 +n66003005012 +n66003005013 +n66003005014 +n66003005015 +n66003005016 +n66003005017 +n66003005018 +n66003005019 +n66003005020 +n66003005021 +n66003005022 +n66003005023 +n66003005024 +n66003005025 +n66003005026 +n66003005027 +n66003005028 +n66003005029 +n66003005030 +n66003005031 +n66003005032 +n66003005033 +n66003006001 +n66003006002 +n66003006003 +n66003006004 +n66003006005 +n66003006006 +n66003006007 +n66003006008 +n66003006009 +n66003006010 +n66003007001 +n66003007002 +n66003007003 +n66003007004 +n66003007005 +n66003007006 +n66003007007 +n66003007008 +n66003007009 +n66003007010 +n66003007011 +n66003007012 +n66003007013 +n66003007014 +n66003007015 +n66003007016 +n66003007017 +n66003007018 +n66003007019 +n66003007020 +n66003007021 +n66003007022 +n66003007023 +n66003007024 +n66003007025 +n66003007026 +n66003007027 +n66003007028 +n66003007029 +n66003008001 +n66003008002 +n66003008003 +n66003008004 +n66003008005 +n66003008006 +n66003008007 +n66003008008 +n66003008009 +n66003008010 +n66003008011 +n66003008015 +n66003008014 +n66003008012 +n66003008013 +n66003008016 +n66003008017 +n66003008019 +n66003008018 +n66003008020 +n66003008021 +n66003008022 +n66003008023 +n66003008024 +n66003008025 +n66003008026 +n66003008027 +n66003008028 +n66003008029 +n66003008030 +n66003009001 +n66003009002 +n66003009003 +n66003009004 +n66003009005 +n66003009006 +n66003009007 +n66003009008 +n66003009009 +n66003009010 +n66003009011 +n66003009012 +n66003009013 +n66003009014 +n66003009015 +n66003009016 +n66003009017 +n66003009018 +n66003009019 +n66003009020 +n66003009021 +n66003009022 +n66003009023 +n66003009024 +n66003009025 +n66003009026 +n66003009027 +n66003009028 +n66003009029 +n66003009030 +n66003009031 +n66003009032 +n66003009033 +n66003009034 +n66003010001 +n66003010002 +n66003010003 +n66003010004 +n66003010005 +n66003010006 +n66003010007 +n66003010008 +n66003010009 +n66003010010 +n66003010011 +n66003010012 +n66003010013 +n66003010014 +n66003010015 +n66003010016 +n66003010017 +n66003010018 +n66003010019 +n66003010020 +n66003010021 +n66003010022 +n66003010023 +n66003010024 +n66003010025 +n66003010026 +n66003010027 +n66003010028 +n66003011001 +n66003011002 +n66003011003 +n66003011004 +n66003011005 +n66003011006 +n66003011007 +n66003011008 +n66003011009 +n66003011010 +n66003011011 +n66003012001 +n66003012002 +n66003012003 +n66003012004 +n66003012005 +n66003012006 +n66003012007 +n66003012008 +n66003012009 +n66003012010 +n66003012011 +n66003012012 +n66003012013 +n66003012014 +n66003012015 +n66003012016 +n66003012017 +n66003012018 +n66003012019 +n66003012020 +n66003012021 +n66003012022 +n66003012023 +n66003012024 +n66003012025 +n66003012026 +n66003012027 +n66003012028 +n66003012029 +n66003012030 +n66003012031 +n66003012032 +n66003012033 +n66003012034 +n66003012035 +n66003012036 +n66003012037 +n66003012038 +n66003012039 +n66003012040 +n66003012041 +n66003012042 +n66003012043 +n66003012044 +n66003012045 +n66003012046 +n66003012047 +n66003012048 +n66003012049 +n66003012050 +n66003012051 +n66003012052 +n66003013001 +n66003013002 +n66003013003 +n66003013004 +n66003013005 +n66003013006 +n66003013007 +n66003013008 +n66003013009 +n66003013010 +n66003014001 +n66003014002 +n66003014003 +n66003014004 +n66003014005 +n66003014006 +n66003014007 +n66003014008 +n66003014009 +n66003014010 +n66003014011 +n66003014012 +n66003014013 +n66003014014 +n66003014015 +n66003014016 +n66003014017 +n66003014018 +n66003014019 +n66003014020 +n66003014021 +n66003014022 +n66003014023 +n66003014024 +n66003015001 +n66003015002 +n66003015003 +n66003015004 +n66003015005 +n66003015008 +n66003015006 +n66003015007 +n66003015009 +n66003015010 +n66003015011 +n66003015013 +n66003015012 +n66003015014 +n66003015015 +n66003016001 +n66003016002 +n66003016003 +n66003016004 +n66003016005 +n66003016006 +n66003016007 +n66003016008 +n66003016009 +n66003016010 +n66003016011 +n66003016012 +n66003016013 +n66003016014 +n66003016015 +n66003016016 +n66003017001 +n66003017002 +n66003017003 +n66003017004 +n66003017005 +n66003017006 +n66003017007 +n66003017008 +n66003017009 +n66003017010 +n66003017011 +n66003017012 +n66003017013 +n66003017014 +n66003017015 +n66003017016 +n66003017017 +n66003017018 +n66003017019 +n66003017020 +n66003017021 +n66003017022 +n66003017023 +n66003017024 +n66003017025 +n66003017026 +n66003017027 +n66003018001 +n66003018002 +n66003018003 +n66003018004 +n66003018005 +n66003018006 +n66003018007 +n66003018008 +n66003018009 +n66003018010 +n66003018011 +n66003018012 +n66003018013 +n66003018014 +n66003018015 +n66003018016 +n66003018017 +n66003018018 +n66003018019 +n66003018020 +n66003018021 +n66003018022 +n66003018023 +n66003018024 +n66003018025 +n66003018026 +n66003018027 +n66003018028 +n66003018029 +n66003018030 +n66003018031 +n66003018032 +n66003019001 +n66003019003 +n66003019002 +n66003019004 +n66003019005 +n66003019006 +n66003019007 +n66003019009 +n66003019008 +n66003019010 +n66003019011 +n66003020001 +n66003020002 +n66003020003 +n66003020004 +n66003020005 +n66003020006 +n66003020007 +n66003020008 +n66003020009 +n66003020010 +n66003020011 +n66003020012 +n66003020013 +n66003020014 +n66003020015 +n66003020016 +n66003020017 +n66003020018 +n66003020019 +n66003020020 +n66003020021 +n66003020022 +n66003020023 +n66003020024 +n66003020025 +n66003020026 +n66003020027 +n66003020028 +n66003021001 +n66003021002 +n66003021003 +n66003021004 +n66003021005 +n66003021006 +n66003021007 +n66003021008 +n66003021009 +n66003021010 +n66003021011 +n66003021012 +n66003021013 +n66003021014 +n66003021015 +n66003021016 +n66003021017 +n66003021018 +n66003021019 +n66003021020 +n66003021021 +n66003021022 +n66003021023 +n66003021024 +n66003022001 +n66003022002 +n66003022003 +n66003022004 +n66003022005 +n66003022006 +n66003022007 +n66003022008 +n66003022009 +n66003022010 +n66004001001 +n66004001002 +n66004001003 +n66004001004 +n66004001005 +n66004001006 +n66004001007 +n66004001008 +n66004001009 +n66004001010 +n66004001011 +n66004001012 +n66004001013 +n66004001014 +n66004001015 +n66004001016 +n66004001017 +n66004001018 +n66004001019 +n66004001020 +n66004001021 +n66004001022 +n66004001023 +n66004001024 +n66004001025 +n66004001026 +n66004001027 +n66004001028 +n66004001029 +n66004001031 +n66004001032 +n66004001033 +n66004001030 +n66004002001 +n66004002002 +n66004002003 +n66004002004 +n66004002005 +n66004002006 +n66004002007 +n66004002008 +n66004002009 +n66004002010 +n66004002011 +n66004002012 +n66004002013 +n66004002014 +n66004002015 +n66004002016 +n66004003001 +n66004003002 +n66004003003 +n66004003004 +n66004003005 +n66004003006 +n66004003007 +n66004003008 +n66004003009 +n66004003010 +n66004003011 +n66004003012 +n66004003013 +n66004003014 +n66004003015 +n66004003016 +n66004003017 +n66004004001 +n66004004002 +n66004004003 +n66004004004 +n66004004005 +n66004004006 +n66004004007 +n66004004008 +n66004004009 +n66004004010 +n66004004011 +n66004004012 +n66004004013 +n66004004014 +n66004004015 +n66004004016 +n66004004017 +n66004004018 +n66004004019 +n66004004020 +n66004004021 +n66004004022 +n66004004023 +n66004004024 +n66004004025 +n66004004026 +n66004005001 +n66004005002 +n66004005003 +n66004005004 +n66004005005 +n66004005006 +n66004005007 +n66004005008 +n66004005009 +n66004005010 +n66004005011 +n66004005012 +n66004005013 +n66004005014 +n66004005015 +n66004005016 +n66004005017 +n66004005018 +n66004005019 +n66004005020 +n66004005021 +n66004005022 +n66004005023 +n66004005024 +n66004005025 +n66004006001 +n66004006002 +n66004006003 +n66004006004 +n66004006005 +n66004006006 +n66004006007 +n66004006008 +n66004006009 +n66004006010 +n66004006011 +n66004006012 +n66004006013 +n66004006014 +n66004006015 +n66004006016 +n66004006017 +n66004006018 +n66004006019 +n66004006020 +n66004006021 +n66004006022 +n66004006023 +n66004006024 +n66004006025 +n66004007001 +n66004007002 +n66004007003 +n66004007004 +n66004007005 +n66004007006 +n66004007007 +n66004007008 +n66004007009 +n66004007010 +n66004007011 +n66004007012 +n66004007013 +n66004007014 +n66004007015 +n66004007016 +n66004007017 +n66004007018 +n66004007019 +n66004007020 +n66004007021 +n66004007022 +n66004007023 +n66004007024 +n66004007025 +n66004007026 +n66004007027 +n66004007028 +n66004007029 +n66004008001 +n66004008002 +n66004008003 +n66004008004 +n66004008005 +n66004008006 +n66004008007 +n66004008008 +n66004008009 +n66004008010 +n66004008011 +n66004008012 +n66004008013 +n66004008014 +n66004008015 +n66004008016 +n66004008017 +n66004008018 +n66004008019 +n66004008020 +n66004008021 +n66004008022 +n66004008023 +n66004008024 +n66004008025 +n66004008026 +n66004008027 +n66004008028 +n66004008029 +n66004008030 +n66004008031 +n66004008032 +n66004008033 +n66004008034 +n66004008035 +n66004008036 +n66004008037 +n66004008038 +n66004008039 +n66004008040 +n66004008041 +n66004009001 +n66004009002 +n66004009003 +n66004009004 +n66004009005 +n66004009006 +n66004009007 +n66004009008 +n66004009009 +n66004009010 +n66004009011 +n66004009012 +n66004009013 +n66004009014 +n66004009015 +n66004009016 +n66004009017 +n66004009018 +n66004009019 +n66004009020 +n66004009021 +n66004009022 +n66004010001 +n66004010002 +n66004010003 +n66004010004 +n66004010005 +n66004010006 +n66004010007 +n66004010008 +n66004010009 +n66004010010 +n66004010011 +n66004010012 +n66004010013 +n66004010014 +n66004010015 +n66004010016 +n66004010017 +n66004010018 +n66004010019 +n66004010020 +n66004010021 +n66004010022 +n66004010023 +n66004010024 +n66004010025 +n66004010026 +n66004010027 +n66004010028 +n66004010029 +n66004011003 +n66004011004 +n66004011005 +n66004011006 +n66004011007 +n66004011008 +n66004011001 +n66004011002 +n66004011009 +n66004011010 +n66004011011 +n66004011012 +n66004011013 +n66004011014 +n66004011015 +n66004011016 +n66004011017 +n66004011018 +n66004011019 +n66004011020 +n66004011021 +n66004011022 +n66004011023 +n66004011024 +n66004011025 +n66004011026 +n66004011027 +n66004011028 +n66004011029 +n66004011030 +n66005001001 +n66005001002 +n66005001003 +n66005001004 +n66005001005 +n66005001006 +n66005001007 +n66005001008 +n66005001009 +n66005001010 +n66005001011 +n66005001012 +n66005001013 +n66005001014 +n66005001015 +n66005001016 +n66005001017 +n66005001018 +n66005002001 +n66005002002 +n66005002003 +n66005002004 +n66005002005 +n66005002006 +n66005002007 +n66005002008 +n66005002009 +n66005002010 +n66005002011 +n66005002012 +n66005002013 +n66005002014 +n66005002015 +n66005002016 +n66005002017 +n66005002018 +n66005003001 +n66005003003 +n66005003002 +n66005003004 +n66005003005 +n66005003006 +n66005003007 +n66005003008 +n66005003009 +n66005003010 +n66005003011 +n66005003012 +n66005003013 +n66005003014 +n66005003015 +n66005003016 +n66005003017 +n66005003018 +n66005003019 +n66005003020 +n66005004001 +n66005004002 +n66005004003 +n66005004004 +n66005004005 +n66005004006 +n66005004007 +n66005004008 +n66005004009 +n66005004010 +n66005004011 +n66005004012 +n66005004013 +n66005005001 +n66005005002 +n66005005003 +n66005005004 +n66005005005 +n66005005006 +n66005005007 +n66005005008 +n66005005009 +n66005005010 +n66005005011 +n66005005012 +n66005005013 +n66005005014 +n66005005015 +n66005005016 +n66005005017 +n66005005018 +n66005005019 +n66005005020 +n66005005021 +n66005005022 +n66005005023 +n66005005024 +n66005005025 +n66005005026 +n66005005027 +n66005005028 +n66005005029 +n66005006001 +n66005006002 +n66005006003 +n66005006004 +n66005006005 +n66005006006 +n66005006007 +n66005006008 +n66005006009 +n66005006010 +n66005006011 +n66005006012 +n66005006013 +n66005006014 +n66005006015 +n66005006016 +n66005006017 +n66005006018 +n66005006019 +n66005006020 +n66005006021 +n66005006022 +n66005006023 +n66005006024 +n66005006025 +n66005006026 +n66005006027 +n66005006028 +n66005006029 +n66005006030 +n66005006031 +n66005006032 +n66005006033 +n66005006034 +n66005006035 +n66005006036 +n66005006037 +n66005007001 +n66005007002 +n66005007003 +n66005007004 +n66005007005 +n66005007006 +n66005007007 +n66005007008 +n66005007009 +n66005007010 +n66005007011 +n66005007012 +n66005008001 +n66005008002 +n66005008003 +n66005008004 +n66005008005 +n66005008006 +n66005008007 +n66005008008 +n66005008009 +n66005008010 +n66005008011 +n66005008012 +n66005008013 +n66005008014 +n66005008015 +n66005008016 +n66005008017 +n66005008018 +n66005008019 +n66005008020 +n66005008021 +n66005008022 +n66005008023 +n66005008024 +n66005008025 +n66005008026 +n66005008027 +n66005008028 +n66005008029 +n66005008030 +n66005008031 +n66005009001 +n66005009002 +n66005009003 +n66005009004 +n66005009005 +n66005009006 +n66005009007 +n66005009008 +n66005009009 +n66005009010 +n66005009011 +n66005009012 +n66005009013 +n66005009014 +n66005009015 +n66005009016 +n66005009017 +n66005009018 +n66005009019 +n66005009020 +n66005009021 +n66005009022 +n66005009023 +n66005009024 +n66005009025 +n66005009026 +n66005009027 +n66005009028 +n66005009029 +n66005009030 +n66005009031 +n66005009032 +n66005009033 +n66005009034 +n66005010001 +n66005010002 +n66005010003 +n66005010004 +n66005010005 +n66005010006 +n66005010007 +n66005010008 +n66005010009 +n66005010010 +n66005010011 +n66005010012 +n66005010013 +n66005010014 +n66005011001 +n66005011002 +n66005011003 +n66005011004 +n66005011005 +n66005011006 +n66005011007 +n66005011008 +n66005011009 +n66005011010 +n66005011011 +n66005011012 +n66005011013 +n66005011014 +n66005011015 +n66005011016 +n66005011017 +n66005011018 +n66005011019 +n66005011020 +n66005011021 +n66005011022 +n66005011023 +n66005011024 +n66005011025 +n66005011026 +n66005012001 +n66005012002 +n66005012003 +n66005012004 +n66005012005 +n66005012006 +n66005012007 +n66005012008 +n66005012009 +n66005012010 +n66005012011 +n66005012012 +n66005012013 +n66005012014 +n66005012015 +n66005012016 +n66005012017 +n66005012018 +n66005012019 +n66005012020 +n66005012021 +n66005012022 +n66005012023 +n66005012024 +n66005013001 +n66005013002 +n66005013003 +n66005013004 +n66005013005 +n66005013006 +n66005013007 +n66005013008 +n66005013009 +n66005013010 +n66005013011 +n66005013012 +n66005013013 +n66005013014 +n66005013015 +n66005013016 +n66005013017 +n66005013018 +n66005013019 +n66005013020 +n66005013021 +n66005013022 +n66005013023 +n66005013024 +n66005013025 +n66005013027 +n66005013026 +n66005013028 +n66005013029 +n66005013030 +n66005013031 +n66005013032 +n66005013033 +n66005013034 +n66005013035 +n66005013036 +n66005013037 +n66005013038 +n66005013039 +n66005013040 +n66005013041 +n66005013042 +n66005013043 +n66005013044 +n66005013045 +n66005013046 +n66005013047 +n66005013048 +n66005013049 +n66005013050 +n66005013051 +n66005014001 +n66005014002 +n66005014003 +n66005014004 +n66005014005 +n66005014006 +n66005014007 +n66005014008 +n66005014009 +n66005014010 +n66005014011 +n66005014012 +n66006001001 +n66006001002 +n66006001003 +n66006001004 +n66006001005 +n66006001006 +n66006001007 +n66006001008 +n66006001009 +n66006001010 +n66006001011 +n66006001012 +n66006001013 +n66006001014 +n66006001015 +n66006001016 +n66006001017 +n66006001018 +n66006001019 +n66006001020 +n66006001021 +n66006001022 +n66006001023 +n66006002001 +n66006002002 +n66006002003 +n66006002004 +n66006002005 +n66006002006 +n66006002007 +n66006002008 +n66006002009 +n66006002010 +n66006002011 +n66006002012 +n66006002013 +n66006002014 +n66006002015 +n66006002016 +n66006002017 +n66006002018 +n66006002019 +n66006002020 +n66006002021 +n66006002022 +n66006002023 +n66006003001 +n66006003002 +n66006003003 +n66006003004 +n66006003005 +n66006003006 +n66006003007 +n66006003008 +n66006003009 +n66006003010 +n66006003011 +n66006003012 +n66006003013 +n66006004001 +n66006004002 +n66006004003 +n66006004004 +n66006004005 +n66006004006 +n66006004007 +n66006004008 +n66006004009 +n66006004010 +n66006004011 +n66006004012 +n66006004013 +n66006004014 +n66006004015 +n66006004016 +n66006004017 +n66006004018 +n66006004019 +n66006004020 +n66006004021 +n66006004022 +n66006004023 +n66006004024 +n66006004025 +n66006004026 +n66006004027 +n66006005001 +n66006005002 +n66006005003 +n66006005004 +n66006005005 +n66006005006 +n66006005007 +n66006005008 +n66006005009 +n66006005010 +n66006005011 +n66006005012 +n66006005013 +n66006005014 +n66006005015 +n66006005016 +n66006005017 +n66006005018 +n66006005019 +n66006005020 +n66006005021 +n66006005022 +n66006005023 +n66006005024 +n66006005025 +n66006005026 +n66006005027 +n66006005028 +n66006005029 +n66006005030 +n66006006001 +n66006006002 +n66006006003 +n66006006004 +n66006006005 +n66006006006 +n66006006007 +n66006006008 +n66006006009 +n66006006010 +n66006006011 +n66006006012 +n66006006013 +n66006006014 +n66006006015 +n66006006016 +n66006006017 +n66006006018 +n66006006019 +n66006006020 +n66006006021 +n66006006022 +n66006006023 +n66006006024 +n66006006025 +n66006006026 +n66006007001 +n66006007002 +n66006007003 +n66006007004 +n66006007005 +n66006007006 +n66006007007 +n66006007008 +n66006007009 +n66006007010 +n66006007011 +n66006007012 +n66006007013 +n66006007014 +n66006008001 +n66006008002 +n66006008003 +n66006008004 +n66006008005 +n66006008006 +n66006008007 +n66006008008 +n66006008009 +n66006008010 +n66006008011 +n66006008012 +n66006008013 +n66006008014 +n66006008015 +n66006008016 +n66006008017 +n66006008018 +n66006008019 +n66006008020 +n66006008021 +n66006008022 +n66006008023 +n66006008024 +n66006008025 +n66006008026 +n66006008027 +n66006008028 +n66006008029 +n66006008030 +n66006008031 +n66006008032 +n66006008033 +n66006008034 +n66006008035 +n66006008036 +n66006008037 +n66006008038 +n66006008039 +n66006008040 +n66006008041 +n66006008042 +n66006008043 +n66006008044 +n66006008045 +n66006009001 +n66006009002 +n66006009003 +n66006009004 +n66006009005 +n66006009006 +n66006009007 +n66006009008 +n66006009009 +n66006009010 +n66006009011 +n66006009012 +n66006009013 +n66006009014 +n66006009015 +n66006009016 +n66006009017 +n66006009018 +n66006009019 +n66006009020 +n66006009021 +n66006009022 +n66006009023 +n66006009024 +n66006009025 +n66006010001 +n66006010002 +n66006010003 +n66006010004 +n66006010005 +n66006010008 +n66006010009 +n66006010010 +n66006010011 +n66006010012 +n66006010013 +n66006010006 +n66006010007 +n66006010014 +n66006010015 +n66006010016 +n66006010017 +n66006010018 +n66006010019 +n66006010020 +n66006010021 +n66006010022 +n66006010023 +n66006010024 +n66006010025 +n66006010026 +n66006011001 +n66006011002 +n66006011003 +n66006011004 +n66006011005 +n66006011006 +n66006011007 +n66006011008 +n66006011009 +n66006011010 +n66006011011 +n66006011012 +n66006011013 +n66006011014 +n66006011015 +n66006011016 +n66006011017 +n66006011018 +n66006011019 +n66006011020 +n66006011021 +n66006011022 +n66006011023 +n66006011024 +n66006011025 +n66006011026 +n66006011027 +n66006011028 +n66006011029 +n66006011030 +n66006012001 +n66006012002 +n66006012003 +n66006012004 +n66006012005 +n66006012006 +n66006012007 +n66006012008 +n66006012009 +n66006012010 +n66006012011 +n66006012012 +n66006012013 +n66006012014 +n66006012015 +n66006012016 +n66006012017 +n66006012018 +n66006012019 +n66006012020 +n66006012021 +n66006012022 +n66006012023 +n66006012024 +n66006012025 +n66006012026 +n66006012027 +n66006013001 +n66006013002 +n66006013003 +n66006013004 +n66006013005 +n66006013006 +n66006013007 +n66006013008 +n66006013009 +n66006013010 +n66006013011 +n66006013012 +n66006013013 +n66006013014 +n66006013015 +n66006013016 +n66006013017 +n66006013018 +n66006013019 +n66006014001 +n66006014002 +n66006014003 +n66006014004 +n66006014005 +n66006014006 +n66006014007 +n66006014008 +n66006014009 +n66006014010 +n66006014011 +n66006014012 +n66006014013 +n66006014014 +n66006014015 +n66006014016 +n66006014017 +n66006015001 +n66006015002 +n66006015003 +n66006015004 +n66006015005 +n66006015006 +n66006015007 +n66006015008 +n66006015009 +n66006015010 +n66006015011 +n66006015012 +n66006015013 +n66006015014 +n66006015015 +n66006015016 +n66006015017 +n66006015018 +n66006015019 +n66006015020 +n66006015021 +n66006015022 +n66006015023 +n66006015024 +n66006015025 +n66006015026 +n66006015027 +n66006015028 +n66006015029 +n66006015030 +n66006015031 +n66006015032 +n66006015033 +n66006016001 +n66006016002 +n66006016003 +n66006016004 +n66006016005 +n66006016006 +n66006016007 +n66006016008 +n66006016009 +n66006016010 +n66006016011 +n66006016012 +n66006016013 +n66006016014 +n66006016015 +n66006016016 +n66006016017 +n66006016018 +n66006016019 +n66006016020 +n66006016021 +n66006016022 +n66006016023 +n66006016024 +n66006016025 +n66006016026 +n66006017001 +n66006017002 +n66006017003 +n66006017004 +n66006017005 +n66006017006 +n66006017007 +n66006017008 +n66006017009 +n66006017010 +n66006017011 +n66006017012 +n66006017013 +n66007001001 +n66007001002 +n66007001003 +n66007001004 +n66007001005 +n66007001006 +n66007001007 +n66007001008 +n66007001009 +n66007001010 +n66007001011 +n66007001012 +n66007001013 +n66007001014 +n66007001015 +n66007001016 +n66007001017 +n66007001018 +n66007001019 +n66007001020 +n66007001021 +n66007001022 +n66007001023 +n66007001024 +n66007001025 +n66007001026 +n66007001027 +n66007001028 +n66007001029 +n66007001030 +n66007001031 +n66007001032 +n66007001033 +n66007002001 +n66007002002 +n66007002003 +n66007002004 +n66007002005 +n66007002006 +n66007002007 +n66007002008 +n66007002009 +n66007002010 +n66007002011 +n66007002012 +n66007002013 +n66007002014 +n66007002015 +n66007002016 +n66007002017 +n66007002018 +n66007002019 +n66007002020 +n66007002022 +n66007002021 +n66007002023 +n66007002024 +n66007002025 +n66007002026 +n66007002027 +n66007002028 +n66007003001 +n66007003002 +n66007003003 +n66007003004 +n66007003005 +n66007003006 +n66007003007 +n66007003008 +n66007003009 +n66007003010 +n66007003011 +n66007003012 +n66007003013 +n66007003014 +n66007003015 +n66007003016 +n66007003017 +n66007003018 +n66007003019 +n66007003020 +n66007003021 +n66007003022 +n66007004001 +n66007004002 +n66007004003 +n66007004004 +n66007004005 +n66007004006 +n66007004007 +n66007004008 +n66007004009 +n66007004010 +n66007004011 +n66007004012 +n66007004013 +n66007004014 +n66007004015 +n66007004016 +n66007005001 +n66007005002 +n66007005003 +n66007005004 +n66007005005 +n66007005006 +n66007005007 +n66007005008 +n66007005009 +n66007005010 +n66007005011 +n66007005012 +n66007005013 +n66007005014 +n66007005015 +n66007005016 +n66007006001 +n66007006002 +n66007006003 +n66007006004 +n66007006005 +n66007006006 +n66007006007 +n66007006008 +n66007006009 +n66007006010 +n66007006011 +n66007006012 +n66007006013 +n66007006014 +n66007006015 +n66007007001 +n66007007002 +n66007007003 +n66007007004 +n66007007005 +n66007007006 +n66007007007 +n66007007008 +n66007007009 +n66007007010 +n66007007011 +n66007007012 +n66007007013 +n66007007014 +n66007007015 +n66007008001 +n66007008002 +n66007008003 +n66007008004 +n66007008005 +n66007008006 +n66007008007 +n66007008008 +n66007008009 +n66007008010 +n66007008011 +n66007008012 +n66007008013 +n66007008014 +n66007008015 +n66007008016 +n66007009001 +n66007009002 +n66007009003 +n66007009004 +n66007009005 +n66007009006 +n66007009007 +n66007009008 +n66007009010 +n66007009009 +n66007009011 +n66007009012 +n66007009013 +n66007009014 +n66007009015 +n66007009016 +n66007009017 +n66007009018 +n66007009019 +n66007009020 +n66007009021 +n66007009022 +n66007009023 +n66007009024 +n66007009025 +n66007009026 +n66007009027 +n66007009028 +n66007009029 +n66007009030 +n66007009031 +n66007009032 +n66007009033 +n66007009034 +n66007009035 +n66007009036 +n66007009037 +n66007009038 +n66007010001 +n66007010002 +n66007010003 +n66007010004 +n66007010005 +n66007010006 +n66007010007 +n66007010008 +n66007010009 +n66007010010 +n66007010011 +n66007010012 +n66007010013 +n66007010014 +n66007010015 +n66007010016 +n66007010017 +n66007010018 +n66007011001 +n66007011002 +n66007011003 +n66007011004 +n66007011005 +n66007011006 +n66007011007 +n66007011008 +n66007011009 +n66007011010 +n66007011011 +n66007011012 +n66007011013 +n66007011014 +n66007011015 +n66007011016 +n66007011017 +n66007011018 +n66007011019 +n66007011020 +n66007011021 +n66007011022 +n66007011023 +n66007011024 +n66007011025 +n66007011026 +n66007011027 +n66007011028 +n66007012001 +n66007012002 +n66007012003 +n66007012004 +n66007012005 +n66007012006 +n66007012007 +n66007012008 +n66007012009 +n66007012010 +n66007012011 +n66007012012 +n66007012013 +n66007012014 +n66007012015 +n66007012016 +n66007012017 +n66007012018 +n66007012019 +n66007012020 +n66007012021 +n66007012022 +n66007012023 +n66007012024 +n66007012025 +n66007012026 +n66007012027 +n66007012028 +n66007012029 +n66007012030 +n66007012031 +n66007013001 +n66007013002 +n66007013003 +n66007013004 +n66007013005 +n66007013006 +n66007013007 +n66007013008 +n66007013009 +n66007013010 +n66007013011 +n66007013012 +n66007013013 +n66007013014 +n66007013015 +n66007013016 +n66007013017 +n66007013018 +n66007013019 +n66007013020 +n66007014001 +n66007014002 +n66007014003 +n66007014004 +n66007014005 +n66007014006 +n66007014007 +n66007014008 +n66007014009 +n66007014010 +n66007014011 +n66007014012 +n66007014013 +n66007014014 +n66007014015 +n66007014016 +n66007014017 +n66007014018 +n66007014019 +n66007014020 +n66007014021 +n66007014022 +n66007014023 +n66007014024 +n66007014025 +n66007014026 +n66007014027 +n66007014028 +n66007014029 +n66007014030 +n66007014031 +n66007014032 +n66007015001 +n66007015002 +n66007015003 +n66007015004 +n66007015005 +n66007015006 +n66007015007 +n66007015008 +n66007015009 +n66007015010 +n66007015011 +n66007015012 +n66007015013 +n66007015014 +n66007015015 +n66007015016 +n66007015017 +n66007015018 +n66007015019 +n66007015020 +n66007015021 +n66007015022 +n66007015023 +n66007015024 +n66007015025 +n66007015026 +n66007015027 +n66007016001 +n66007016002 +n66007016003 +n66007016004 +n66007016005 +n66007016006 +n66007016007 +n66007016008 +n66007016009 +n66007016010 +n66007016011 +n66007016012 +n66007016013 +n66007016014 +n66007016015 +n66007016016 +n66007017001 +n66007017002 +n66007017003 +n66007017004 +n66007017005 +n66007017006 +n66007017007 +n66007017008 +n66007017009 +n66007017010 +n66007017011 +n66007017012 +n66007017013 +n66007017014 +n66007017015 +n66007017016 +n66007017017 +n66007017018 +n66007017019 +n66007017020 +n66007017021 +n66007017022 +n66007017023 +n66007017024 +n66007017025 +n66007017026 +n66007017027 +n66008001001 +n66008001002 +n66008001003 +n66008001004 +n66008001005 +n66008001006 +n66008001007 +n66008001008 +n66008001009 +n66008001010 +n66008001011 +n66008001012 +n66008001013 +n66008001014 +n66008002001 +n66008002002 +n66008002003 +n66008002004 +n66008002005 +n66008002006 +n66008002007 +n66008002008 +n66008002009 +n66008002010 +n66008002011 +n66008002012 +n66008002013 +n66008002014 +n66008002015 +n66008003001 +n66008003002 +n66008003003 +n66008003004 +n66008003005 +n66008003006 +n66008003007 +n66008003008 +n66008003009 +n66008003010 +n66008003011 +n66008003012 +n66008003013 +n66008003014 +n66008003015 +n66008003016 +n66008003017 +n66008003018 +n66008003019 +n66008003020 +n66008003021 +n66008003022 +n66008003023 +n66008003024 +n66008003025 +n66008003026 +n66008003027 +n66008003028 +n66008003029 +n66008003030 +n66008003031 +n66008003032 +n66008003033 +n66008004001 +n66008004002 +n66008004003 +n66008004004 +n66008004005 +n66008004006 +n66008004007 +n66008004008 +n66008004009 +n66008004010 +n66008004011 +n66008004012 +n66008004013 +n66008004014 +n66008004015 +n66008004016 +n66008004017 +n66008005001 +n66008005002 +n66008005003 +n66008005004 +n66008005005 +n66008005006 +n66008005007 +n66008005008 +n66008005009 +n66008005010 +n66008005011 +n66008005012 +n66008005013 +n66008005014 +n66008005015 +n66008005016 +n66008005017 +n66008005018 +n66008005019 +n66008005020 +n66008005021 +n66008005022 +n66008005023 +n66008005024 +n66008005025 +n66008005026 +n66008005027 +n66008005028 +n66008006001 +n66008006002 +n66008006003 +n66008006004 +n66008006005 +n66008006006 +n66008006007 +n66008006008 +n66008006009 +n66008006010 +n66008006011 +n66008006012 +n66008006013 +n66008007001 +n66008007002 +n66008007003 +n66008007004 +n66008007005 +n66008007006 +n66008007007 +n66008007008 +n66008007009 +n66008007010 +n66008007011 +n66008007012 +n66008007013 +n66008007014 +n66008007015 +n66008007016 +n66008007017 +n66008007018 +n66008007019 +n66008007020 +n66008007021 +n66008007022 +n66008007023 +n66008007024 +n66008007025 +n66008007026 +n66008007027 +n66008007028 +n66008007029 +n66008007030 +n66008007031 +n66008007032 +n66008007033 +n66008007034 +n66008008001 +n66008008002 +n66008008003 +n66008008004 +n66008008005 +n66008008006 +n66008008007 +n66008008008 +n66008008009 +n66008008010 +n66008008011 +n66008008012 +n66008008013 +n66008008014 +n66008008015 +n66008008016 +n66008008017 +n66008008018 +n66008008019 +n66008008020 +n66008008021 +n66008008022 +n66008009001 +n66008009002 +n66008009003 +n66008009004 +n66008009005 +n66008009006 +n66008009007 +n66008009008 +n66008009009 +n66008009010 +n66008009011 +n66008009012 +n66008009013 +n66008009014 +n66008009015 +n66008009016 +n66008009017 +n66008009018 +n66008009019 +n66008010001 +n66008010002 +n66008010003 +n66008010004 +n66008010005 +n66008010006 +n66008010007 +n66008010008 +n66008010009 +n66008010010 +n66008010011 +n66008010012 +n66008010013 +n66008010014 +n66008010015 +n66008010016 +n66008010017 +n66008010018 +n66008010019 +n66008010020 +n66008010021 +n66008010022 +n66008010023 +n66008010024 +n66008010025 +n66008010026 +n66008010027 +n66008010028 +n66008011001 +n66008011002 +n66008011003 +n66008011004 +n66008011005 +n66008011006 +n66008011007 +n66008011008 +n66008011009 +n66008011010 +n66008011011 +n66008011012 +n66008011013 +n66008011014 +n66008011015 +n66008011016 +n66008011017 +n66008011018 +n66008011019 +n66008011020 +n66008011021 +n66008011022 +n66008011023 +n66008011024 +n66008011025 +n66008011026 +n66008012001 +n66008012002 +n66008012003 +n66008012004 +n66008012005 +n66008012006 +n66008012007 +n66008012008 +n66008012009 +n66008012010 +n66008012011 +n66008012012 +n66008012013 +n66008012014 +n66008012015 +n66008012016 +n66008012017 +n66008012018 +n66008012019 +n66008012020 +n66008012021 +n66008012022 +n66008012023 +n66008012024 +n66008012025 +n66008012026 +n66008012027 +n66008012028 +n66008012029 +n66008012030 +n66008012031 +n66008012032 +n66008012033 +n66008012034 +n66008012035 +n66008012036 +n66008012037 +n66008012038 +n66008013001 +n66008013002 +n66008013003 +n66008013004 +n66008013005 +n66008013006 +n66008013007 +n66008013008 +n66008013009 +n66008013010 +n66008013011 +n66008013012 +n66008013013 +n66008013014 +n66008013015 +n66008013016 +n66008013017 +n66008013018 +n66008013019 +n66008013020 +n66008013021 +n66008013022 +n66008013023 +n66008013024 +n66008013025 +n66008013026 +n66008013027 +n66008013028 +n66008013029 +n66008013030 +n66008013031 +n66008013032 +n66009001001 +n66009001002 +n66009001003 +n66009001004 +n66009001005 +n66009001006 +n66009001007 +n66009001008 +n66009001009 +n66009001010 +n66009001011 +n66009001012 +n66009001013 +n66009001014 +n66009001015 +n66009001016 +n66009001017 +n66009001018 +n66009001019 +n66009001020 +n66009001021 +n66009001022 +n66009001023 +n66009001024 +n66009002001 +n66009002002 +n66009002003 +n66009002004 +n66009002005 +n66009002006 +n66009002007 +n66009002008 +n66009002009 +n66009002010 +n66009002011 +n66009002012 +n66009002013 +n66009002014 +n66009002015 +n66009002016 +n66009002017 +n66009002018 +n66009002019 +n66009002020 +n66009002021 +n66009002022 +n66009002023 +n66009002024 +n66009002025 +n66009002026 +n66009002027 +n66009002028 +n66009003001 +n66009003002 +n66009003003 +n66009003004 +n66009003005 +n66009003006 +n66009003007 +n66009003008 +n66009003009 +n66009003010 +n66009003011 +n66009003012 +n66009003013 +n66009003014 +n66009003015 +n66009003016 +n66009003017 +n66009003018 +n66009003019 +n66009003020 +n66009004001 +n66009004002 +n66009004003 +n66009004004 +n66009004005 +n66009004006 +n66009004007 +n66009004008 +n66009004009 +n66009004010 +n66009004011 +n66009004012 +n66009004013 +n66009004014 +n66009004015 +n66009004016 +n66009004017 +n66009004018 +n66009004019 +n66009004020 +n66009004021 +n66009004022 +n66009004023 +n66009004024 +n66009004025 +n66009004026 +n66009004027 +n66009004028 +n66009004029 +n66009004030 +n66009005001 +n66009005002 +n66009005003 +n66009005004 +n66009005005 +n66009005006 +n66009005007 +n66009005008 +n66009005009 +n66009005010 +n66009005011 +n66009005012 +n66009005013 +n66009005014 +n66009005015 +n66009005016 +n66009005017 +n66009005018 +n66009005019 +n66009005020 +n66009005021 +n66009005022 +n66009006001 +n66009006002 +n66009006003 +n66009006004 +n66009006005 +n66009006006 +n66009006007 +n66009006008 +n66009006009 +n66009006010 +n66009006011 +n66009006012 +n66009006013 +n66009006014 +n66009006015 +n66009006016 +n66009006017 +n66009006018 +n66009006019 +n66009006020 +n66009006021 +n66009006022 +n66009006023 +n66009006024 +n66009007001 +n66009007002 +n66009007003 +n66009007004 +n66009007005 +n66009007006 +n66009007007 +n66009007008 +n66009007009 +n66009007010 +n66009007011 +n66009007012 +n66009007013 +n66009007014 +n66009007015 +n66009007016 +n66009007017 +n66009007018 +n66009007019 +n66009007020 +n66009007021 +n66009007022 +n66009007023 +n66009007024 +n66009007025 +n66009007026 +n66009008001 +n66009008002 +n66009008003 +n66009008004 +n66009008005 +n66009008006 +n66009008007 +n66009008008 +n66009008009 +n66009008010 +n66009008011 +n66009008012 +n66009008013 +n66009009001 +n66009009002 +n66009009003 +n66009009004 +n66009009005 +n66009009006 +n66009009007 +n66009009008 +n66009009009 +n66009009010 +n66009009011 +n66009009012 +n66009009013 +n66009009014 +n66009009015 +n66009009016 +n66009009017 +n66009009018 +n66009009019 +n66009009020 +n66009010001 +n66009010002 +n66009010003 +n66009010004 +n66009010005 +n66009010006 +n66009010007 +n66009010008 +n66009010009 +n66009010010 +n66009010011 +n66009010012 +n66009010013 +n66009010014 +n66009010015 +n66009010016 +n66009010017 +n66009010018 +n66009010019 +n66009010020 +n66009011001 +n66009011002 +n66009011003 +n66009011004 +n66009011005 +n66009011006 +n66009011007 +n66009011008 +n66009011009 +n66009011010 +n66009011011 +n66009011012 +n66009011013 +n66009011014 +n66009011015 +n66009011016 +n66009011017 +n66009011018 +n66009011019 +n66009012001 +n66009012002 +n66009012003 +n66009012004 +n66009012005 +n66009012006 +n66009012007 +n66009012008 +n66009012009 +n66009012010 +n66009012011 +n66009012012 +n66009013001 +n66009013002 +n66009013003 +n66009013004 +n66009013005 +n66009013006 +n66009013007 +n66009013008 +n66009013009 +n66009013010 +n66009013011 +n66009013012 +n66009013013 +n66009013014 +n66009013015 +n66009013016 +n66009013017 +n66009013018 +n66009013019 +n66009013020 +n66009013021 +n66009014001 +n66009014002 +n66009014003 +n66009014004 +n66009014005 +n66009014006 +n66009014007 +n66009014008 +n66009014009 +n66009014010 +n66009014011 +n66009014012 +n66009014013 +n66009014014 +n66009014015 +n66009014016 +n66009014017 +n66009014018 +n66009014019 +n66009014020 +n66009015001 +n66009015002 +n66009015003 +n66009015004 +n66009015005 +n66009015006 +n66009015007 +n66009015008 +n66009015009 +n66009015010 +n66009015011 +n66009015012 +n66009015013 +n66009015014 +n66009015015 +n66009015016 +n66009015017 +n66009015018 +n66009015019 +n66009015020 +n66009015021 +n66009015022 +n66009016001 +n66009016002 +n66009016003 +n66009016004 +n66009016005 +n66009016006 +n66009016007 +n66009016008 +n66009016009 +n66009016010 +n66009016011 +n66009016012 +n66009016013 +n66009017001 +n66009017002 +n66009017003 +n66009017004 +n66009017005 +n66009017006 +n66009017007 +n66009017008 +n66009017009 +n66009017010 +n66009017011 +n66009017012 +n66009017013 +n66009017014 +n66009017015 +n66009017016 +n66009017017 +n66009017018 +n66009017019 +n66009017020 +n66009017021 +n66009017022 +n66009017023 +n66009017024 +n66009017025 +n66009017026 +n66009017027 +n66009017028 +n66009017029 +n66009017030 +n66009017031 +n66009017032 +n66009017033 +n66009017034 +n66009017035 +n66009017036 +n66009017037 +n66009017038 +n66009017039 +n66009018006 +n66009018007 +n66009018008 +n66009018009 +n66009018010 +n66009018001 +n66009018002 +n66009018003 +n66009018004 +n66009018005 +n66009018011 +n66009018012 +n66009018013 +n66009018014 +n66009018015 +n66009018016 +n66009018017 +n66009018018 +n66009018019 +n66009018020 +n66009018021 +n66009018022 +n66009018023 +n66009018024 +n66009018025 +n66009019002 +n66009019001 +n66009019003 +n66009019004 +n66009019005 +n66009019010 +n66009019006 +n66009019007 +n66009019008 +n66009019009 +n66009019011 +n66009019012 +n66009019013 +n66009019014 +n66009019015 +n66009019017 +n66009019016 +n66009019018 +n66009019019 +n66009019020 +n66009019021 +n66009019022 +n66009019023 +n66009019024 +n66009019025 +n66009019026 +n66009019027 +n66009020001 +n66009020002 +n66009020003 +n66009020004 +n66009020005 +n66009020006 +n66009020007 +n66009020008 +n66009020009 +n66009020010 +n66009020011 +n66009020012 +n66009020013 +n66009020014 +n66009020015 +n66009020016 +n66009020017 +n66009020018 +n66009020019 +n66009020020 +n66009020021 +n66009020022 +n66009020023 +n66009020024 +n66009020025 +n66009020026 +n66009020027 +n66009020028 +n66009020029 +n66009020030 +n66009020031 +n66009020032 +n66009020033 +n66009020034 +n66009020035 +n66009020036 +n66009020037 +n66009020038 +n66009020039 +n66009020040 +n66009020041 +n66009020042 +n66009020043 +n66009020046 +n66009020044 +n66009020045 +n66009020047 +n66009020048 +n66009020049 +n66009020050 +n66009021001 +n66009021002 +n66009021003 +n66009021004 +n66009021005 +n66009021006 +n66009021007 +n66009021008 +n66009021009 +n66009021010 +n66009021011 +n66009021012 +n66009021013 +n66009021014 +n66009021015 +n66009021016 +n66009021017 +n66009021018 +n66009021019 +n66009021020 +n66009021021 +n66009021022 +n66010001001 +n66010001002 +n66010001003 +n66010001004 +n66010001005 +n66010001006 +n66010001007 +n66010001008 +n66010001009 +n66010001010 +n66010001011 +n66010001012 +n66010001013 +n66010001014 +n66010001015 +n66010001016 +n66010001017 +n66010001018 +n66010001019 +n66010001020 +n66010001021 +n66010001022 +n66010001023 +n66010001024 +n66010001025 +n66010001026 +n66010001027 +n66010001028 +n66010001029 +n66010001030 +n66010001031 +n66010001032 +n66010002001 +n66010002002 +n66010002003 +n66010002004 +n66010002005 +n66010002006 +n66010002007 +n66010002008 +n66010002009 +n66010002010 +n66010002011 +n66010002012 +n66010002013 +n66010002014 +n66010002015 +n66010002016 +n66010002017 +n66010002018 +n66010002020 +n66010002019 +n66010002021 +n66010002022 +n66010002023 +n66010002024 +n66010003001 +n66010003002 +n66010003003 +n66010003004 +n66010003005 +n66010003006 +n66010003007 +n66010003008 +n66010003009 +n66010003010 +n66010003011 +n66010003012 +n66010003013 +n66010003014 +n66010003015 +n66010003016 +n66010003017 +n66010004001 +n66010004002 +n66010004003 +n66010004004 +n66010004005 +n66010004006 +n66010004007 +n66010004008 +n66010004009 +n66010004010 +n66010004011 +n66010004012 +n66010004013 +n66010004014 +n66010004015 +n66010004016 +n66010004017 +n66010004018 +n66010004019 +n66010004020 +n66010004021 +n66010004022 +n66010004023 +n66010004024 +n66010004025 +n66010005001 +n66010005002 +n66010005003 +n66010005004 +n66010005006 +n66010005007 +n66010005008 +n66010005009 +n66010005010 +n66010005011 +n66010005012 +n66010005013 +n66010005005 +n66010005014 +n66010005015 +n66010005016 +n66010005017 +n66010005018 +n66010005019 +n66010005020 +n66010005021 +n66010005022 +n66010006001 +n66010006002 +n66010006003 +n66010006004 +n66010006005 +n66010006006 +n66010006007 +n66010006008 +n66010006009 +n66010006010 +n66010006011 +n66010006012 +n66010006013 +n66010006014 +n66010006015 +n66010006016 +n66010006017 +n66010006018 +n66010006019 +n66010006020 +n66010006021 +n66010006022 +n66010006023 +n66010006024 +n66010006025 +n66010006026 +n66010006027 +n66010006028 +n66010006029 +n66010006030 +n66010006031 +n66010006032 +n66010006033 +n66010006034 +n66010006035 +n66010006036 +n66010007001 +n66010007002 +n66010007003 +n66010007004 +n66010007005 +n66010007006 +n66010007007 +n66010007008 +n66010007009 +n66010007010 +n66010007011 +n66010007012 +n66010007013 +n66010007014 +n66010007015 +n66010007016 +n66010007017 +n66010007018 +n66010007019 +n66010007020 +n66010007021 +n66010007022 +n66010007023 +n66010007024 +n66010007025 +n66010008001 +n66010008002 +n66010008003 +n66010008004 +n66010008005 +n66010008006 +n66010008007 +n66010008008 +n66010008009 +n66010008010 +n66010008011 +n66010008012 +n66010008013 +n66010008014 +n66010008015 +n66010008016 +n66010008017 +n66010008018 +n66010008019 +n66010008020 +n66010008021 +n66010008022 +n66010008023 +n66010008024 +n66010008025 +n66010008026 +n66010008027 +n66010008028 +n66010008029 +n66010008030 +n66010008031 +n66010008032 +n66010008033 +n66010008034 +n66010009001 +n66010009002 +n66010009003 +n66010009004 +n66010009005 +n66010009006 +n66010009007 +n66010009008 +n66010009009 +n66010009010 +n66010009011 +n66010009012 +n66010009013 +n66010009014 +n66010009015 +n66010009016 +n66010009017 +n66010009018 +n66010009019 +n66010009020 +n66010009021 +n66010009022 +n66010009023 +n66010009024 +n66010009025 +n66010009026 +n66010009027 +n66010009028 +n66010009029 +n66010009030 +n66010009031 +n66010009032 +n66010010001 +n66010010002 +n66010010003 +n66010010004 +n66010010005 +n66010010006 +n66010010007 +n66010010008 +n66010010009 +n66010010010 +n66010010011 +n66010010012 +n66010010013 +n66010010014 +n66010010015 +n66010010016 +n66010010017 +n66010010018 +n66010010019 +n66010010020 +n66010010021 +n66010010022 +n66010010023 +n66010010024 +n66010010025 +n66010010026 +n66010010027 +n66010010028 +n66010010029 +n66010011001 +n66010011002 +n66010011003 +n66010011004 +n66010011005 +n66010011006 +n66010011007 +n66010011008 +n66010011009 +n66010011010 +n66010011011 +n66010011012 +n66010011013 +n66010011014 +n66010011015 +n66010011016 +n66011001001 +n66011001002 +n66011001003 +n66011001004 +n66011001005 +n66011001006 +n66011001007 +n66011001008 +n66011001009 +n66011001010 +n66011001011 +n66011001012 +n66011001013 +n66011001014 +n66011001015 +n66011001016 +n66011001017 +n66011001018 +n66011001019 +n66011001020 +n66011001021 +n66011001022 +n66011002001 +n66011002002 +n66011002003 +n66011002004 +n66011002005 +n66011002006 +n66011002007 +n66011002008 +n66011002009 +n66011002010 +n66011002011 +n66011002012 +n66011002013 +n66011002014 +n66011002015 +n66011002016 +n66011002017 +n66011002018 +n66011002019 +n66011002020 +n66011002021 +n66011002022 +n66011002023 +n66011002024 +n66011002025 +n66011002026 +n66011003001 +n66011003002 +n66011003003 +n66011003004 +n66011003005 +n66011003006 +n66011003007 +n66011003008 +n66011003009 +n66011003010 +n66011003011 +n66011003012 +n66011003013 +n66011003014 +n66011004001 +n66011004002 +n66011004003 +n66011004004 +n66011004005 +n66011004006 +n66011004007 +n66011004008 +n66011004009 +n66011004010 +n66011004011 +n66011004012 +n66011004013 +n66011004014 +n66011004015 +n66011004016 +n66011005001 +n66011005002 +n66011005003 +n66011005005 +n66011005004 +n66011005006 +n66011005007 +n66011005008 +n66011005009 +n66011005010 +n66011005011 +n66011005012 +n66011005013 +n66011005014 +n66011005015 +n66011005016 +n66011005017 +n66011005018 +n66011005019 +n66011005020 +n66011005021 +n66011005022 +n66011005023 +n66011005024 +n66011005025 +n66011005026 +n66011005027 +n66011006001 +n66011006002 +n66011006003 +n66011006004 +n66011006005 +n66011006006 +n66011006007 +n66011006008 +n66011006009 +n66011006010 +n66011006011 +n66011006012 +n66011006013 +n66011006014 +n66011006015 +n66011006016 +n66011006017 +n66011006018 +n66011006019 +n66011006020 +n66011006021 +n66011006022 +n66011006023 +n66011006024 +n66011006025 +n66011006026 +n66011006027 +n66011006028 +n66011006029 +n66011006030 +n66011006031 +n66011006032 +n66011006033 +n66011006034 +n66011006035 +n66011006036 +n66011007001 +n66011007002 +n66011007003 +n66011007004 +n66011007005 +n66011007006 +n66011007007 +n66011007008 +n66011007009 +n66011007010 +n66011007011 +n66011007012 +n66011007013 +n66011007014 +n66011007015 +n66011007016 +n66011007017 +n66011007018 +n66011007019 +n66011007020 +n66011007021 +n66011007022 +n66011007023 +n66011008001 +n66011008002 +n66011008003 +n66011008004 +n66011008005 +n66011008006 +n66011008007 +n66011008008 +n66011008009 +n66011008010 +n66011008011 +n66011008012 +n66011008013 +n66011008014 +n66011008015 +n66011008016 +n66011008017 +n66011008018 +n66011008019 +n66011008020 +n66011008021 +n66011008022 +n66011008023 +n66011009001 +n66011009002 +n66011009003 +n66011009004 +n66011009005 +n66011009006 +n66011009007 +n66011009008 +n66011009009 +n66011009010 +n66011009011 +n66011009012 +n66011009013 +n66011009014 +n66011009015 +n66011009016 +n66011009017 +n66011009018 +n66011009019 +n66011009023 +n66011009024 +n66011009020 +n66011009021 +n66011009022 +n66011009025 +n66011009026 +n66011009027 +n66011010001 +n66011010002 +n66011010003 +n66011010004 +n66011010005 +n66011010006 +n66011010007 +n66011010008 +n66011010009 +n66011010010 +n66011010011 +n66011010012 +n66011010013 +n66011010014 +n66011010015 +n66011010016 +n66011010017 +n66011010018 +n66011010019 +n66011010020 +n66011010021 +n66011010022 +n66011010023 +n66011010024 +n66011010025 +n66011010026 +n66011011001 +n66011011002 +n66011011003 +n66011011004 +n66011011006 +n66011011007 +n66011011005 +n66011011008 +n66011011009 +n66011011010 +n66011011011 +n66011011012 +n66011011013 +n66011011014 +n66011011015 +n66011011016 +n66011011017 +n66011011018 +n66011011019 +n66011011020 +n66011011021 +n66011011022 +n66011011023 +n66011011024 +n66011011025 +n66011011026 +n66011011027 +n66011011028 +n66011011029 +n66011012001 +n66011012002 +n66011012003 +n66011012004 +n66011012005 +n66011012006 +n66011012007 +n66011012008 +n66011012009 +n66011012010 +n66011012011 +n66011012012 +n66011012013 +n66011012014 +n66011012015 +n66011012016 +n66011012017 +n66011012018 +n66011012019 +n66011012020 +n66011012021 +n66011012022 +n66011012023 +n66011012024 +n66011012025 +n66011013001 +n66011013002 +n66011013003 +n66011013004 +n66011013005 +n66011013006 +n66011013007 +n66011013008 +n66011013009 +n66011013010 +n66011013011 +n66011013012 +n66011013013 +n66011013014 +n66011013015 +n66011013016 +n66011013017 +n66011013018 +n66011013019 +n66011013020 +n66011013021 +n66011013022 +n66011013023 +n66011013024 +n66011013025 +n66011013026 +n66011013027 +n66011013028 +n66011013029 +n66011013030 +n66011013031 +n66011013032 +n66011013033 +n66011013034 +n66011013035 +n66011014001 +n66011014002 +n66011014003 +n66011014004 +n66011014005 +n66011014006 +n66011014007 +n66011014008 +n66011014009 +n66011014010 +n66011014011 +n66011014012 +n66011015001 +n66011015002 +n66011015003 +n66011015004 +n66011015005 +n66011015006 +n66011015007 +n66011015008 +n66011015009 +n66011015010 +n66011015011 +n66011015012 +n66011015013 +n66011015014 +n66011015015 +n66011015016 +n66011015017 +n66011015018 +n66011015019 +n66011015020 +n66011015021 +n66011015022 +n66011015023 +n66011015024 +n66011015025 +n66011015026 +n66011015027 +n66011015028 +n66011015029 +n66011015030 +n66011015031 +n66011015032 +n66011016001 +n66011016002 +n66011016003 +n66011016004 +n66011016005 +n66011016006 +n66011016007 +n66011016008 +n66011016009 +n66011016010 +n66011016011 +n66011016012 +n66011016013 +n66011016014 +n66011016015 +n66011016016 +n66011016017 +n66011016018 +n66011016019 +n66011016020 +n66011016021 +n66011016022 +n66011016023 +n66011017001 +n66011017002 +n66011017003 +n66011017004 +n66011017005 +n66011017006 +n66011017007 +n66011017008 +n66011017009 +n66011017010 +n66011017011 +n66011017012 +n66011017013 +n66011017014 +n66011017015 +n66011017016 +n66011017017 +n66011017018 +n66011017019 +n66011017020 +n66011017021 +n66011017022 +n66011018001 +n66011018002 +n66011018003 +n66011018004 +n66011018005 +n66011018006 +n66011018007 +n66011018008 +n66011018009 +n66011018010 +n66011018011 +n66011018012 +n66011018013 +n66011018014 +n66011018015 +n66011018016 +n66011018017 +n66011018018 +n66011018019 +n66011018020 +n66011018021 +n66011018022 +n66011018023 +n66011018024 +n66011018025 +n66011018026 +n66011018027 +n66011018028 +n66011018029 +n66011018030 +n66011018031 +n66011018032 +n66011018033 +n66011018034 +n66011018035 +n66011018036 +n66011018037 +n66011018038 +n66011018039 +n66011018040 +n66011018041 +n66011018042 +n66011018043 +n66011018044 +n66011019001 +n66011019002 +n66011019003 +n66011019004 +n66011019005 +n66011019006 +n66011019007 +n66011019008 +n66011019009 +n66011019010 +n66011019011 +n66011019012 +n66011019013 +n66011019014 +n66011019015 +n66011019016 +n66011019017 +n66011019018 +n66011019019 +n66011019020 +n66011019021 +n66011019022 +n66011019023 +n66011019024 +n66011019025 +n66011019026 +n66011019027 +n66011019028 +n66011019029 +n66011019030 +n66011019031 +n66011019032 +n66011019033 +n66012001001 +n66012001002 +n66012001003 +n66012001004 +n66012001005 +n66012001006 +n66012001007 +n66012001008 +n66012001009 +n66012001010 +n66012001011 +n66012001012 +n66012001013 +n66012001014 +n66012001015 +n66012001016 +n66012001017 +n66012001018 +n66012001019 +n66012001020 +n66012001021 +n66012001022 +n66012001023 +n66012001024 +n66012001025 +n66012001026 +n66012002001 +n66012002002 +n66012002003 +n66012002004 +n66012002005 +n66012002006 +n66012002007 +n66012002008 +n66012002009 +n66012002010 +n66012003001 +n66012003002 +n66012003003 +n66012003004 +n66012003005 +n66012003006 +n66012003007 +n66012003008 +n66012003009 +n66012003010 +n66012003011 +n66012003012 +n66012003013 +n66012003014 +n66012003015 +n66012003016 +n66012003017 +n66012003018 +n66012003019 +n66012003020 +n66012003021 +n66012003022 +n66012003023 +n66012003024 +n66012003025 +n66012004001 +n66012004002 +n66012004003 +n66012004004 +n66012004005 +n66012004006 +n66012004007 +n66012004008 +n66012004009 +n66012004010 +n66012004011 +n66012004012 +n66012004013 +n66012004014 +n66012004015 +n66012004016 +n66012004017 +n66012004018 +n66012004019 +n66012004020 +n66012004021 +n66012004022 +n66012004023 +n66012004024 +n66012004025 +n66012004026 +n66012004027 +n66012004028 +n66012004029 +n66012004030 +n66012004031 +n66012004032 +n66012004033 +n66012004034 +n66012005001 +n66012005002 +n66012005003 +n66012005004 +n66012005005 +n66012005006 +n66012005007 +n66012005008 +n66012005009 +n66012005010 +n66012005011 +n66012005012 +n66012005013 +n66012005014 +n66012005015 +n66012005016 +n66012005017 +n66012005018 +n66012005019 +n66012005020 +n66012005021 +n66012005022 +n66012005023 +n66012005024 +n66012005025 +n66012005026 +n66012006001 +n66012006002 +n66012006003 +n66012006004 +n66012006005 +n66012006006 +n66012006007 +n66012006008 +n66012006009 +n66012006010 +n66012006011 +n66012006012 +n66012006013 +n66012006014 +n66012006015 +n66012006016 +n66012006017 +n66012006018 +n66012006019 +n66012006020 +n66012006021 +n66012006022 +n66012006023 +n66012007001 +n66012007002 +n66012007003 +n66012007004 +n66012007005 +n66012007006 +n66012007007 +n66012007008 +n66012007009 +n66012007010 +n66012007011 +n66012007012 +n66012007013 +n66012007014 +n66012007015 +n66012007016 +n66012007017 +n66012007018 +n66012007021 +n66012007019 +n66012007020 +n66012007022 +n66012007023 +n66012007024 +n66012007025 +n66012008001 +n66012008002 +n66012008003 +n66012008004 +n66012008005 +n66012008007 +n66012008006 +n66012008008 +n66012008009 +n66012008010 +n66012008011 +n66012009001 +n66012009002 +n66012009003 +n66012009004 +n66012009005 +n66012009006 +n66012009007 +n66012009008 +n66012009009 +n66012009010 +n66012009011 +n66012009012 +n66012009013 +n66012009014 +n66012009015 +n66012009016 +n66012009017 +n66012009018 +n66012009019 +n66012009020 +n66012009021 +n66012009022 +n66012009023 +n66012009024 +n66012009025 +n66012009026 +n66012009027 +n66012009028 +n66012009029 +n66012009030 +n66012009031 +n66012009032 +n66012010001 +n66012010002 +n66012010003 +n66012010004 +n66012010005 +n66012010006 +n66012010007 +n66012010008 +n66012010009 +n66012010010 +n66012010011 +n66012010012 +n66012010013 +n66012010014 +n66012010015 +n66012010016 +n66012010017 +n66012010018 +n66012010019 +n66012010020 +n66012010021 +n66012010022 +n66012010023 +n66012010024 +n66012010025 +n66012010026 +n66012010027 +n66012010028 +n66012010029 +n66012010030 +n66012010031 +n66012010032 +n66012010033 +n66012010034 +n66012010035 +n66012010036 +n66012010037 +n66012010038 +n66012010039 +n66012010040 +n66012010041 +n66012010042 +n66012010043 +n66012010044 +n66012011001 +n66012011002 +n66012011003 +n66012011004 +n66012011005 +n66012011006 +n66012011007 +n66012011008 +n66012011009 +n66012011010 +n66012011011 +n66012011012 +n66012011013 +n66012011014 +n66012011015 +n66012011016 +n66012011017 +n66012011018 +n66012011019 +n66012011020 +n66012011021 +n66012011022 +n66012011023 +n66012011024 +n66012012001 +n66012012002 +n66012012003 +n66012012004 +n66012012005 +n66012012006 +n66012012007 +n66012012008 +n66012012009 +n66012012010 +n66012012011 +n66012012012 +n66012012013 +n66012012014 +n66012012015 +n66012012016 +n66012012017 +n66012012018 +n66012012019 +n66012012020 +n66012012021 +n66012012022 +n66012012023 +n66012012024 +n66012012025 +n66012012026 +n66012012027 +n66012012028 +n66012012029 +n66012013001 +n66012013002 +n66012013003 +n66012013004 +n66012013005 +n66012013006 +n66012013007 +n66012013008 +n66012013009 +n66012013010 +n66012013011 +n66012013012 +n66012013013 +n66012013014 +n66012013015 +n66012013016 +n66012013017 +n66012014001 +n66012014002 +n66012014003 +n66012014004 +n66012014005 +n66012014006 +n66012014007 +n66012014008 +n66012014009 +n66012014010 +n66012014011 +n66012014012 +n66012014013 +n66012014014 +n66012014015 +n66012014016 +n66012014017 +n66012014018 +n66012014019 +n66012014020 +n66012014021 +n66012014022 +n66012014023 +n66012014024 +n66012014025 +n66012014026 +n66012014027 +n66012014028 +n66012014029 +n66012014030 +n66012014031 +n66012014032 +n66012014033 +n66012015001 +n66012015002 +n66012015003 +n66012015004 +n66012015005 +n66012015006 +n66012015007 +n66012015008 +n66012015009 +n66012015010 +n66012015011 +n66012015012 +n66012015013 +n66012015014 +n66012015015 +n66012015016 +n66012015017 +n66012015018 +n66012016001 +n66012016002 +n66012016003 +n66012016004 +n66012016005 +n66012016006 +n66012016007 +n66012016008 +n66012016009 +n66012016010 +n66012016011 +n66012016012 +n66012016013 +n66012016014 +n66012016015 +n66012016016 +n66012016017 +n66012016018 +n66012016019 +n66012016020 +n66012016021 +n66012016022 +n66012016023 +n66012016024 +n66012016025 +n66012017001 +n66012017002 +n66012017003 +n66012017004 +n66012017005 +n66012017006 +n66012017007 +n66012017008 +n66012017009 +n66012017010 +n66012017011 +n66012017012 +n66012017013 +n66012017014 +n66012017015 +n66012017016 +n66012017017 +n66012017018 +n66012017019 +n66012017020 +n66012017021 +n66012017022 +n66012017023 +n66012017024 +n66012017025 +n66012017026 +n66012017027 +n66012017028 +n66012018001 +n66012018002 +n66012018003 +n66012018004 +n66012018005 +n66012018006 +n66012018007 +n66013001001 +n66013001002 +n66013001003 +n66013001004 +n66013001005 +n66013001006 +n66013001007 +n66013001008 +n66013001009 +n66013001010 +n66013001011 +n66013001012 +n66013001013 +n66013001014 +n66013001015 +n66013001016 +n66013001017 +n66013001018 +n66013001019 +n66013001020 +n66013001021 +n66013001022 +n66013001023 +n66013001024 +n66013001025 +n66013001026 +n66013001027 +n66013002001 +n66013002002 +n66013002003 +n66013002004 +n66013002005 +n66013002006 +n66013002007 +n66013002008 +n66013002009 +n66013002010 +n66013002011 +n66013002012 +n66013002013 +n66013002014 +n66013002015 +n66013002016 +n66013002017 +n66013002018 +n66013002019 +n66013002020 +n66013002021 +n66013002022 +n66013002023 +n66013002024 +n66013002025 +n66013002026 +n66013002027 +n66013002028 +n66013002029 +n66013002030 +n66013002031 +n66013002032 +n66013002033 +n66013002034 +n66013002035 +n66013002036 +n66013003001 +n66013003002 +n66013003003 +n66013003004 +n66013003005 +n66013003006 +n66013003007 +n66013003008 +n66013003009 +n66013003010 +n66013003011 +n66013003012 +n66013003013 +n66013003014 +n66013003015 +n66013003016 +n66013003017 +n66013003018 +n66013003019 +n66013003020 +n66013003021 +n66013003022 +n66013003023 +n66013003024 +n66013003025 +n66013004001 +n66013004002 +n66013004003 +n66013004004 +n66013004005 +n66013004006 +n66013004007 +n66013004008 +n66013004009 +n66013004010 +n66013004011 +n66013004012 +n66013004013 +n66013004014 +n66013004015 +n66013004016 +n66013004017 +n66013004018 +n66013004019 +n66013004020 +n66013004021 +n66013004022 +n66013004023 +n66013004024 +n66013004025 +n66013005001 +n66013005002 +n66013005003 +n66013005004 +n66013005005 +n66013005006 +n66013005007 +n66013005008 +n66013005009 +n66013005010 +n66013005011 +n66013005012 +n66013005013 +n66013005014 +n66013005015 +n66013005016 +n66013006001 +n66013006002 +n66013006003 +n66013006004 +n66013006005 +n66013006006 +n66013006007 +n66013006008 +n66013006009 +n66013006010 +n66013006011 +n66013006012 +n66013006013 +n66013006014 +n66013006015 +n66013006016 +n66013006017 +n66013006018 +n66013006019 +n66013006020 +n66013006021 +n66013006022 +n66013006023 +n66013007001 +n66013007002 +n66013007003 +n66013007004 +n66013007005 +n66013007006 +n66013007007 +n66013007008 +n66013007009 +n66013007010 +n66013007011 +n66013007012 +n66013007013 +n66013007014 +n66013007015 +n66013007016 +n66013007017 +n66013007018 +n66013007019 +n66013007020 +n66013007021 +n66013007022 +n66013007023 +n66013007024 +n66013008001 +n66013008002 +n66013008003 +n66013008004 +n66013008005 +n66013008006 +n66013008007 +n66013008008 +n66013008009 +n66013008011 +n66013008012 +n66013008010 +n66013008013 +n66013008014 +n66013008015 +n66013008016 +n66013008017 +n66013008018 +n66013008019 +n66013008020 +n66013008021 +n66013008022 +n66013008023 +n66013008024 +n66013008025 +n66013008026 +n66013008027 +n66013009001 +n66013009002 +n66013009003 +n66013009004 +n66013009005 +n66013010001 +n66013010002 +n66013010003 +n66013010004 +n66013010005 +n66013010006 +n66013010007 +n66013010008 +n66013010009 +n66013010010 +n66013010011 +n66013010012 +n66013010013 +n66013010014 +n66013010015 +n66013010016 +n66013010017 +n66013010018 +n66013010019 +n66013010020 +n66013010021 +n66013010022 +n66013010023 +n66013010024 +n66013010025 +n66013010026 +n66013011001 +n66013011002 +n66013011003 +n66013011004 +n66013011005 +n66013011006 +n66013011007 +n66013011008 +n66013011009 +n66013011010 +n66013011011 +n66013011012 +n66013011013 +n66013011014 +n66013011015 +n66013011016 +n66013011017 +n66013011018 +n66013012001 +n66013012002 +n66013012003 +n66013012004 +n66013012005 +n66013012006 +n66013012007 +n66013012008 +n66013012009 +n66013012010 +n66013012011 +n66013012012 +n66013012013 +n66013012014 +n66013012015 +n66013012016 +n66013012017 +n66013012018 +n66013012019 +n66013012020 +n66013012021 +n66013012022 +n66013012023 +n66013012024 +n66013012025 +n66013012026 +n66013012027 +n66013012028 +n66013012029 +n66013012030 +n66013012031 +n66013012032 +n66013013001 +n66013013002 +n66013013003 +n66013013004 +n66013013005 +n66013013006 +n66013013008 +n66013013007 +n66013013009 +n66013013010 +n66013013011 +n66013013012 +n66013013013 +n66013013014 +n66013013015 +n66013013016 +n66013013017 +n66013013018 +n66013014001 +n66013014002 +n66013014003 +n66013014004 +n66013014005 +n66013014006 +n66013014007 +n66013014008 +n66013014009 +n66013014010 +n66013014011 +n66013014012 +n66013014013 +n66013014014 +n66013014015 +n66013014016 +n66013014017 +n66013014018 +n66013014019 +n66013014020 +n66013014021 +n66013014022 +n66013014023 +n66013014024 +n66013014025 +n66013014026 +n66013014027 +n66013014028 +n66013014029 +n66013014030 +n66013014031 +n66013014032 +n66013014033 +n66013014034 +n66013014035 +n66013015001 +n66013015002 +n66013015003 +n66013015004 +n66013015005 +n66013015006 +n66013015007 +n66013015008 +n66013015009 +n66013015010 +n66013015011 +n66013015012 +n66013015013 +n66013015014 +n66013015015 +n66013015016 +n66013015017 +n66013015018 +n66013015019 +n66013015021 +n66013015020 +n66013015022 +n66013015023 +n66013015024 +n66013015025 +n66013015026 +n66013015027 +n66013015028 +n66013016001 +n66013016002 +n66013016003 +n66013016004 +n66013016005 +n66013016006 +n66013016007 +n66013016008 +n66013016009 +n66013016010 +n66013016011 +n66013016012 +n66013016013 +n66013016014 +n66013016015 +n66013016016 +n66013016017 +n66013016018 +n66013016019 +n66013016020 +n66013016021 +n66013016022 +n66013016023 +n66013016024 +n66013016025 +n66013016026 +n66013016027 +n66013016028 +n66013016029 +n66013016030 +n66013016031 +n66013016032 +n66013016033 +n66013016034 +n66013016035 +n66013017001 +n66013017002 +n66013017003 +n66013017004 +n66013017005 +n66013017006 +n66013017007 +n66013017008 +n66013017009 +n66013017010 +n66013017011 +n66013017012 +n66013017013 +n66013017014 +n66013017015 +n66013017016 +n66013017017 +n66013017018 +n66013017019 +n66013017020 +n66013017021 +n66013017022 +n66013017023 +n66013017024 +n66013018001 +n66013018002 +n66013018003 +n66013018004 +n66013018005 +n66013018006 +n66013018007 +n66013018008 +n66013018009 +n66013018010 +n66013018011 +n66013018012 +n66013018014 +n66013018013 +n66013018015 +n66013018016 +n66013018017 +n66013018018 +n66013018019 +n66013018020 +n66013018021 +n66013018022 +n66013018023 +n66014001001 +n66014001002 +n66014001003 +n66014001004 +n66014001005 +n66014001006 +n66014001007 +n66014001008 +n66014001009 +n66014001010 +n66014001011 +n66014001012 +n66014001013 +n66014001014 +n66014001015 +n66014001016 +n66014001017 +n66014001018 +n66014001019 +n66014001020 +n66014001021 +n66014001022 +n66014001023 +n66014001024 +n66014001025 +n66014001026 +n66014001027 +n66014001028 +n66014001029 +n66014001030 +n66014001031 +n66014001032 +n66014001033 +n66014002001 +n66014002002 +n66014002003 +n66014002004 +n66014002005 +n66014002006 +n66014002007 +n66014002008 +n66014002009 +n66014002010 +n66014002011 +n66014002012 +n66014002013 +n66014002014 +n66014002015 +n66014002016 +n66014002017 +n66014002018 +n66014002019 +n66014002020 +n66014002021 +n66014002022 +n66014002023 +n66014002024 +n66014002025 +n66014002026 +n66014002027 +n66014003001 +n66014003002 +n66014003003 +n66014003004 +n66014003005 +n66014003006 +n66014003007 +n66014003008 +n66014003009 +n66014003010 +n66014003011 +n66014003012 +n66014003013 +n66014003014 +n66014003015 +n66014003016 +n66014003017 +n66014003018 +n66014003019 +n66014003020 +n66014003021 +n66014003022 +n66014003023 +n66014003024 +n66014003025 +n66014003026 +n66014003027 +n66014003028 +n66014003029 +n66014003030 +n66014003031 +n66014003032 +n66014003033 +n66014004001 +n66014004002 +n66014004003 +n66014004004 +n66014004005 +n66014004006 +n66014004007 +n66014004009 +n66014004008 +n66014004010 +n66014004011 +n66014004012 +n66014004013 +n66014004014 +n66014004015 +n66014004017 +n66014004016 +n66014004018 +n66014004019 +n66014004020 +n66014004021 +n66014004022 +n66014004023 +n66014004024 +n66014004025 +n66014004026 +n66014004027 +n66014004028 +n66014004029 +n66014005001 +n66014005002 +n66014005003 +n66014005004 +n66014005005 +n66014005006 +n66014005007 +n66014005008 +n66014005009 +n66014005010 +n66014006001 +n66014006002 +n66014006003 +n66014006004 +n66014006005 +n66014006006 +n66014006007 +n66014006008 +n66014006009 +n66014006010 +n66014006011 +n66014006012 +n66014006013 +n66014006014 +n66014006015 +n66014006016 +n66014006017 +n66014006018 +n66014006019 +n66014006020 +n66014006021 +n66014006022 +n66014006023 +n66014006024 +n66014006025 +n66014006026 +n66014006027 +n66014007001 +n66014007002 +n66014007003 +n66014007004 +n66014007005 +n66014007006 +n66014007007 +n66014007008 +n66014007009 +n66014007010 +n66014007011 +n66014007012 +n66014007013 +n66014007014 +n66014007015 +n66014007016 +n66014007017 +n66014007018 +n66014007019 +n66014007020 +n66014007021 +n66014007022 +n66014007023 +n66014007024 +n66014007025 +n66014007026 +n66014007027 +n66014007028 +n66014007029 +n66014007030 +n66014007031 +n66014007032 +n66014008001 +n66014008002 +n66014008003 +n66014008004 +n66014008005 +n66014008006 +n66014008007 +n66014008008 +n66014008009 +n66014008010 +n66014008011 +n66014008012 +n66014008013 +n66014008014 +n66014008015 +n66014008016 +n66014008017 +n66014008018 +n66014008019 +n66014008020 +n66014008021 +n66014008022 +n66014008023 +n66014008024 +n66014009001 +n66014009002 +n66014009003 +n66014009004 +n66014009005 +n66014009006 +n66014009007 +n66014009008 +n66014009009 +n66014009010 +n66014009011 +n66014009012 +n66014009013 +n66014009014 +n66014009015 +n66014009016 +n66014009017 +n66014009018 +n66014009019 +n66014009020 +n66014009021 +n66014009022 +n66014009023 +n66014009024 +n66014009025 +n66014009026 +n66014009027 +n66014009028 +n66014009029 +n66014009030 +n66014009031 +n66014010001 +n66014010002 +n66014010003 +n66014010004 +n66014010005 +n66014010006 +n66014010007 +n66014010008 +n66014010009 +n66014010010 +n66014010011 +n66014010012 +n66014010013 +n66014010014 +n66014010015 +n66014010016 +n66014010017 +n66014010018 +n66014010019 +n66014010020 +n66014010021 +n66014010022 +n66014010023 +n66014010024 +n66014010025 +n66014010026 +n66014010027 +n66014010028 +n66014010029 +n66014010030 +n66014010031 +n66014010032 +n66014011001 +n66014011002 +n66014011003 +n66014011004 +n66014011005 +n66014011006 +n66014011007 +n66014011008 +n66014011009 +n66014011010 +n66014011011 +n66014011012 +n66014011013 +n66014011014 +n66014011015 +n66014011016 +n66014011017 +n66014011018 +n66014011019 +n66014011020 +n66014011021 +n66014011022 +n66014011023 +n66014011024 +n66014011025 +n66014011026 +n66014011027 +n66014011028 +n66014011029 +n66014011030 +n66014011031 +n66014011032 +n66014011033 +n66014011034 +n66014012001 +n66014012006 +n66014012002 +n66014012003 +n66014012004 +n66014012005 +n66014012007 +n66014012008 +n66014012009 +n66014012010 +n66014012011 +n66014012012 +n66014012013 +n66014012014 +n66014012015 +n66014012016 +n66014013001 +n66014013002 +n66014013003 +n66014013004 +n66014013005 +n66014013006 +n66014013007 +n66014013008 +n66014013009 +n66014013010 +n66014013011 +n66014013012 +n66014013013 +n66014013014 +n66014013015 +n66014013016 +n66014013017 +n66014013018 +n66014013019 +n66014013020 +n66014013021 +n66014013022 +n66014013023 +n66014013024 +n66014013025 +n66014013026 +n66014013028 +n66014013027 +n66014013029 +n66014013030 +n66014013031 +n66014013032 +n66014013033 +n66014014001 +n66014014002 +n66014014003 +n66014014004 +n66014014005 +n66014014006 +n66014014007 +n66014014008 +n66014014009 +n66014014010 +n66014014011 +n66014014012 +n66014014013 +n66014014014 +n66014014015 +n66014014016 +n66014014017 +n66014014018 +n66014014019 +n66014014020 +n66014014021 +n66014014022 +n66014014023 +n66014014024 +n66014014025 +n66014014026 +n66014014027 +n66014014028 +n66014015001 +n66014015002 +n66014015003 +n66014015004 +n66014015005 +n66014015006 +n66014015007 +n66014015008 +n66014015009 +n66014015010 +n66014015011 +n66014015012 +n66014015013 +n66014015014 +n66014015015 +n66014015016 +n66014015017 +n66014015018 +n66014015019 +n66014015020 +n66014015021 +n66014015022 +n66014015023 +n66014015024 +n66014015025 +n66014015026 +n66014015027 +n66014015028 +n66014015029 +n66014015030 +n66014015031 +n66014015032 +n66014015033 +n66014016001 +n66014016002 +n66014016003 +n66014016004 +n66014016005 +n66014016006 +n66014016007 +n66014016008 +n66014016009 +n66014016010 +n66014016011 +n66014016012 +n66014016013 +n66014016014 +n66014016015 +n66014016016 +n66014016017 +n66014017001 +n66014017002 +n66014017003 +n66014017004 +n66014017005 +n66014017006 +n66014017007 +n66014017008 +n66014017009 +n66014017010 +n66014017011 +n66014017012 +n66014017013 +n66014017014 +n66014017015 +n66014017016 +n66014018001 +n66014018002 +n66014018003 +n66014018008 +n66014018009 +n66014018010 +n66014018011 +n66014018012 +n66014018013 +n66014018004 +n66014018005 +n66014018006 +n66014018007 +n66014018014 +n66014018015 +n66014018016 +n66014018017 +n66014018018 +n66014018019 +n66014018020 +n66014018021 +n66014018022 +n66014018023 +n66014018024 +n66014018025 +n66014018026 +n66014018027 +n66014018028 +n66014018029 +n66014018030 +n66014018031 +n66014018032 +n66014018033 +n66014018034 +n66014018035 +n66014018036 +n66014018037 +n66014018038 +n66014018039 +n66014018040 +n66014018041 +n66014018042 +n66014018043 +n66014019001 +n66014019002 +n66014019003 +n66014019004 +n66014019005 +n66014019006 +n66014019007 +n66014019008 +n66014019009 +n66014019010 +n66014019011 +n66014019012 +n66014019013 +n66014019014 +n66014019015 +n66014019016 +n66014019017 +n66014019018 +n66014019019 +n66014019020 +n66014019021 +n66014019022 +n66014019023 +n66014019024 +n66014019025 +n66014019026 +n66014019027 +n66014020001 +n66014020002 +n66014020003 +n66014020004 +n66014020005 +n66014020006 +n66014020007 +n66014020008 +n66014020009 +n66014020010 +n66014020011 +n66014020012 +n66014020013 +n66014020014 +n66014020015 +n66014020016 +n66014020017 +n66014020018 +n66014020019 +n66014020020 +n66014020021 +n66014020022 +n66015001001 +n66015001002 +n66015001003 +n66015001004 +n66015001005 +n66015001006 +n66015001007 +n66015001008 +n66015001009 +n66015001010 +n66015001011 +n66015001012 +n66015001013 +n66015001014 +n66015001015 +n66015001016 +n66015001017 +n66015001018 +n66015001019 +n66015001020 +n66015001021 +n66015001022 +n66015001023 +n66015001024 +n66015001025 +n66015002001 +n66015002002 +n66015002003 +n66015002004 +n66015002005 +n66015002006 +n66015002007 +n66015002008 +n66015002009 +n66015002010 +n66015002011 +n66015002012 +n66015002013 +n66015002014 +n66015002015 +n66015002016 +n66015002017 +n66015002018 +n66015002019 +n66015002020 +n66015002021 +n66015002022 +n66015002023 +n66015002024 +n66015002025 +n66015002026 +n66015002027 +n66015002028 +n66015002029 +n66015002030 +n66015002031 +n66015002032 +n66015002033 +n66015002034 +n66015002035 +n66015003001 +n66015003002 +n66015003003 +n66015003004 +n66015003005 +n66015003006 +n66015003007 +n66015003008 +n66015003009 +n66015003010 +n66015003011 +n66015003012 +n66015003013 +n66015003014 +n66015003015 +n66015003016 +n66015003017 +n66015003018 +n66015003019 +n66015003020 +n66015003021 +n66015003022 +n66015003023 +n66015003024 +n66015003025 +n66015003026 +n66015003027 +n66015003028 +n66015003029 +n66015003030 +n66015003031 +n66015003032 +n66015003033 +n66015003034 +n66015003035 +n66015003036 +n66015004001 +n66015004002 +n66015004003 +n66015004004 +n66015004005 +n66015004006 +n66015004007 +n66015004008 +n66015004009 +n66015004010 +n66015004011 +n66015004012 +n66015004013 +n66015004014 +n66015004015 +n66015004016 +n66015004017 +n66015004018 +n66015004019 +n66015004020 +n66015004021 +n66015004022 +n66015004023 +n66015004024 +n66015004025 +n66015004026 +n66015004027 +n66015005001 +n66015005002 +n66015005003 +n66015005004 +n66015005005 +n66015005006 +n66015005007 +n66015005008 +n66015005009 +n66015005010 +n66015005011 +n66015005012 +n66015005013 +n66015005014 +n66015005015 +n66015006001 +n66015006002 +n66015006003 +n66015006004 +n66015006005 +n66015006006 +n66015006007 +n66015006008 +n66015006009 +n66015006010 +n66015006011 +n66015006012 +n66015006013 +n66015006014 +n66015006015 +n66015006016 +n66015006017 +n66015006018 +n66015006019 +n66015006020 +n66015006021 +n66015006022 +n66015006023 +n66015006024 +n66015007001 +n66015007002 +n66015007003 +n66015007004 +n66015007005 +n66015007006 +n66015007007 +n66015007008 +n66015007009 +n66015007010 +n66015007011 +n66015007012 +n66015007013 +n66015007014 +n66015007015 +n66015007016 +n66015007017 +n66015007018 +n66015007019 +n66015007020 +n66015007021 +n66015007022 +n66015007023 +n66015007024 +n66015007025 +n66015008001 +n66015008002 +n66015008003 +n66015008004 +n66015008005 +n66015008006 +n66015008007 +n66015008008 +n66015008009 +n66015008010 +n66015008011 +n66015008012 +n66015008013 +n66015008014 +n66015008015 +n66015008016 +n66015008017 +n66015008018 +n66015008019 +n66015008020 +n66015008021 +n66015008022 +n66015008023 +n66015008024 +n66015008025 +n66015008026 +n66015008027 +n66015008028 +n66015008029 +n66015008030 +n66016001001 +n66016001002 +n66016001003 +n66016001004 +n66016001005 +n66016001006 +n66016001007 +n66016001008 +n66016001009 +n66016001010 +n66016001011 +n66016001012 +n66016001013 +n66016001014 +n66016001015 +n66016001016 +n66016001017 +n66016001018 +n66016001019 +n66016001020 +n66016001021 +n66016001022 +n66016001023 +n66016001024 +n66016002001 +n66016002002 +n66016002003 +n66016002004 +n66016002005 +n66016002006 +n66016002007 +n66016002008 +n66016002009 +n66016002010 +n66016002011 +n66016002012 +n66016002013 +n66016002014 +n66016002015 +n66016002016 +n66016002017 +n66016002018 +n66016002019 +n66016002020 +n66016002021 +n66016002022 +n66016002023 +n66016002024 +n66016002025 +n66016002026 +n66016002027 +n66016002028 +n66016002029 +n66016002030 +n66016002031 +n66016002032 +n66016002033 +n66016003001 +n66016003002 +n66016003003 +n66016003004 +n66016003005 +n66016003006 +n66016003007 +n66016003008 +n66016003009 +n66016003010 +n66016003011 +n66016003012 +n66016003013 +n66016003014 +n66016003015 +n66016003016 +n66016003017 +n66016003018 +n66016003019 +n66016003021 +n66016003022 +n66016003023 +n66016003024 +n66016003020 +n66016004001 +n66016004002 +n66016004003 +n66016004004 +n66016004005 +n66016004006 +n66016004007 +n66016004008 +n66016004009 +n66016004010 +n66016004011 +n66016004012 +n66016004013 +n66016004014 +n66016004015 +n66016004016 +n66016004017 +n66016004018 +n66016005001 +n66016005002 +n66016005003 +n66016005004 +n66016005005 +n66016005006 +n66016005007 +n66016005008 +n66016005009 +n66016005010 +n66016005011 +n66016005012 +n66016005013 +n66016005014 +n66016005015 +n66016005016 +n66016005017 +n66016005018 +n66016005019 +n66016006001 +n66016006002 +n66016006003 +n66016006004 +n66016006005 +n66016006006 +n66016006007 +n66016006008 +n66016006009 +n66016006010 +n66016006011 +n66016006012 +n66016006013 +n66016007001 +n66016007002 +n66016007003 +n66016007004 +n66016007005 +n66016007006 +n66016007007 +n66016007008 +n66016007009 +n66016007010 +n66016007011 +n66016007012 +n66016007013 +n66016007014 +n66016007015 +n66016007016 +n66016007017 +n66016008001 +n66016008002 +n66016008003 +n66016008004 +n66016008005 +n66016008006 +n66016008007 +n66016008008 +n66016008009 +n66016008010 +n66016008011 +n66016008012 +n66016008013 +n66016008014 +n66016008015 +n66016008016 +n66016008017 +n66016008018 +n66016009001 +n66016009002 +n66016009003 +n66016009004 +n66016009005 +n66016009006 +n66016009007 +n66016009008 +n66016009009 +n66016009010 +n66016009011 +n66016009012 +n66016009013 +n66016009014 +n66016009015 +n66016009016 +n66016009017 +n66016009018 +n66016009019 +n66016009020 +n66016009021 +n66016009022 +n66016009023 +n66016009024 +n66016009025 +n66016009026 +n66016010001 +n66016010002 +n66016010003 +n66016010004 +n66016010005 +n66016010006 +n66016010007 +n66016010008 +n66016010009 +n66016010010 +n66016010011 +n66016010012 +n66016010013 +n66016010014 +n66016010015 +n66016010016 +n66016010017 +n66016010018 +n66016010019 +n66016010020 +n66016010021 +n66016010022 +n66016010023 +n66016010024 +n66016010025 +n66016010026 +n66016011001 +n66016011002 +n66016011003 +n66016011004 +n66016011005 +n66016011006 +n66016011007 +n66016011008 +n66016011009 +n66016011010 +n66016011011 +n66016011012 +n66016011013 +n66016011014 +n66016011015 +n66016011016 +n66016011017 +n66016011018 +n66016011019 +n66016011020 +n66016011021 +n66016011022 +n66016012001 +n66016012002 +n66016012003 +n66016012004 +n66016012005 +n66016012006 +n66016012007 +n66016012008 +n66016012009 +n66016012010 +n66016012011 +n66016012012 +n66016012013 +n66016012014 +n66016012015 +n66016012016 +n66016012017 +n66016012018 +n66016012019 +n66016012020 +n66016012021 +n66016012022 +n66016012023 +n66016012024 +n66016012025 +n66016012026 +n66016012027 +n66016012028 +n66016013001 +n66016013002 +n66016013003 +n66016013004 +n66016013005 +n66016013006 +n66016013007 +n66016013008 +n66016013009 +n66016013010 +n66016013011 +n66016013012 +n66016013013 +n66016013014 +n66016013015 +n66016013016 +n66016013017 +n66016013018 +n66016013019 +n66016013020 +n66016013021 +n66016013022 +n66016013023 +n66016013024 +n66016014002 +n66016014001 +n66016014003 +n66016014004 +n66016014005 +n66016014006 +n66016014007 +n66016014008 +n66016014009 +n66016014010 +n66016014011 +n66016014012 +n66016014013 +n66016014014 +n66016014015 +n66016014016 +n66016014017 +n66016014018 +n66016014019 +n66016014020 +n66016014021 +n66016014022 +n66016014023 +n66016014024 +n66016014025 +n66016014026 +n66016014027 +n66016015001 +n66016015002 +n66016015003 +n66016015004 +n66016015005 +n66016015006 +n66016015007 +n66016015008 +n66016015009 +n66016015010 +n66016015011 +n66016015012 +n66016015013 +n66016015014 +n66016015015 +n66016015016 +n66016015017 +n66016015018 +n66016015019 +n66016015020 +n66016015021 +n66016016001 +n66016016002 +n66016016003 +n66016016004 +n66016016005 +n66016016006 +n66016016007 +n66016016008 +n66016016009 +n66016016010 +n66016017001 +n66016017002 +n66016017003 +n66016017004 +n66016017005 +n66016017006 +n66016017007 +n66016017008 +n66016017009 +n66016017010 +n66016017011 +n66016017012 +n66016017013 +n66016017014 +n66016017015 +n66016017016 +n66016017017 +n66016017018 +n66016017019 +n66016017020 +n66016017021 +n66016017022 +n66016018001 +n66016018002 +n66016018003 +n66016018004 +n66016018005 +n66016018006 +n66016018007 +n66016018008 +n66016018009 +n66016018011 +n66016018010 +n66016018012 +n66016018013 +n66016018014 +n66016018015 +n66016018016 +n66016018017 +n66016018018 +n66016018019 +n66016018020 +n66016018021 +n66016018022 +n66016018023 +n66016018024 +n66016018025 +n66016019001 +n66016019002 +n66016019003 +n66016019004 +n66016019005 +n66016019006 +n66016019007 +n66016019008 +n66016019009 +n66016019010 +n66016019011 +n66016019012 +n66016019013 +n66016019014 +n66016019015 +n66016019016 +n66016019017 +n66016019018 +n66016019019 +n66016019020 +n66016019021 +n66016019022 +n66016019023 +n66016019024 +n66016019025 +n66016019026 +n66016019027 +n66016019028 +n66016019029 +n66016019030 +n66016019031 +n66016019032 +n66016019033 +n66016019034 +n66016020001 +n66016020002 +n66016020003 +n66016020004 +n66016020005 +n66016020006 +n66016020007 +n66016020008 +n66016021001 +n66016021002 +n66016021003 +n66016021004 +n66016021005 +n66016021006 +n66016021007 +n66016021008 +n66016021009 +n66016021010 +n66016021011 +n66016021012 +n66016021013 +n66016021014 +n66016021015 +n66016021016 +n66016021017 +n66016021018 +n66016021019 +n66016021020 +n66016021021 +n66016021022 +n66016021023 +n66016021024 +n66016021025 +n66016021026 +n66016021027 +n66016021028 +n66016021029 +n66016021030 +n66017001001 +n66017001002 +n66017001003 +n66017001004 +n66017001005 +n66017001006 +n66017001007 +n66017001008 +n66017001009 +n66017001010 +n66017001011 +n66017001012 +n66017001013 +n66017001014 +n66017001015 +n66017001016 +n66017001017 +n66017001018 +n66017001019 +n66017001020 +n66017001021 +n66017001022 +n66017001023 +n66017001024 +n66017001025 +n66017001026 +n66017001027 +n66017001028 +n66017001029 +n66017001030 +n66017001031 +n66017002001 +n66017002002 +n66017002003 +n66017002004 +n66017002005 +n66017002006 +n66017002007 +n66017002008 +n66017002009 +n66017002010 +n66017002011 +n66017002012 +n66017002013 +n66017002014 +n66017002015 +n66017002016 +n66017002017 +n66017002018 +n66017002019 +n66017003001 +n66017003002 +n66017003003 +n66017003004 +n66017003005 +n66017003006 +n66017003007 +n66017003008 +n66017003009 +n66017003010 +n66017003011 +n66017003012 +n66017003013 +n66017003014 +n66017003015 +n66017003016 +n66017003017 +n66017003018 +n66017003019 +n66017003020 +n66017003021 +n66017003022 +n66017003023 +n66017004001 +n66017004002 +n66017004003 +n66017004004 +n66017004005 +n66017004006 +n66017004007 +n66017004008 +n66017004009 +n66017004010 +n66017004011 +n66017004012 +n66017004013 +n66017004014 +n66017004015 +n66017004016 +n66017004017 +n66017004020 +n66017004021 +n66017004022 +n66017004023 +n66017004018 +n66017004019 +n66017004024 +n66017004025 +n66017004026 +n66017004027 +n66017004028 +n66017004029 +n66017004030 +n66017004031 +n66017005001 +n66017005002 +n66017005003 +n66017005004 +n66017005005 +n66017005007 +n66017005006 +n66017005008 +n66017005009 +n66017005010 +n66017005011 +n66017005012 +n66017005013 +n66017005014 +n66017005015 +n66017005016 +n66017005017 +n66017005018 +n66017005019 +n66017005020 +n66017006001 +n66017006002 +n66017006003 +n66017006004 +n66017006005 +n66017006006 +n66017006007 +n66017006008 +n66017006009 +n66017006010 +n66017006011 +n66017006012 +n66017006013 +n66017006014 +n66017006015 +n66017006016 +n66017006017 +n66017006018 +n66017006019 +n66017006020 +n66017006021 +n66017006022 +n66017006023 +n66017007001 +n66017007002 +n66017007003 +n66017007004 +n66017007005 +n66017007006 +n66017007007 +n66017007008 +n66017007009 +n66017007010 +n66017007011 +n66017007012 +n66017007013 +n66017007014 +n66017007015 +n66017007016 +n66017007017 +n66017007018 +n66017007019 +n66017007020 +n66017007021 +n66017007022 +n66017007023 +n66017007024 +n66017007025 +n66017007026 +n66017007027 +n66017007028 +n66017007029 +n66017007030 +n66017008001 +n66017008002 +n66017008003 +n66017008004 +n66017008005 +n66017008006 +n66017008007 +n66017008008 +n66017008009 +n66017008010 +n66017008011 +n66017008012 +n66017008013 +n66017008014 +n66017008015 +n66017008016 +n66017008017 +n66017008018 +n66017008019 +n66017008020 +n66017008021 +n66017008022 +n66017008023 +n66017008024 +n66017008025 +n66017008026 +n66017008029 +n66017008030 +n66017008027 +n66017008028 +n66017008031 +n66017008032 +n66017008033 +n66017008034 +n66017008035 +n66017008036 +n66017008037 +n66017008038 +n66017008039 +n66017008040 +n66017008041 +n66017008042 +n66017008043 +n66017008044 +n66017008045 +n66017008046 +n66017008047 +n66017008048 +n66017009001 +n66017009002 +n66017009003 +n66017009004 +n66017009005 +n66017009006 +n66017009007 +n66017009008 +n66017009009 +n66017009010 +n66017009011 +n66017009012 +n66017009013 +n66017009014 +n66017009015 +n66017009016 +n66017009017 +n66017009018 +n66017009019 +n66017009020 +n66017009021 +n66017009022 +n66017010001 +n66017010002 +n66017010003 +n66017010004 +n66017010005 +n66017010006 +n66017010007 +n66017010008 +n66017010009 +n66017010010 +n66017010011 +n66017010012 +n66017010013 +n66017010014 +n66017010015 +n66017010017 +n66017010016 +n66017011001 +n66017011002 +n66017011003 +n66017011004 +n66017011005 +n66017011006 +n66017011007 +n66017011008 +n66017011009 +n66017011010 +n66017011011 +n66017011012 +n66017011013 +n66017011014 +n66017011015 +n66017011016 +n66017011017 +n66017011018 +n66017011019 +n66017011020 +n66017011021 +n66017012001 +n66017012002 +n66017012003 +n66017012004 +n66017012005 +n66017012006 +n66017012009 +n66017012007 +n66017012008 +n66017012010 +n66017012011 +n66017012012 +n66017012013 +n66017012014 +n66017012015 +n66017012016 +n66017012017 +n66017012018 +n66017012019 +n66017012020 +n66017012021 +n66017012022 +n66017012023 +n66017013001 +n66017013002 +n66017013003 +n66017013004 +n66017013005 +n66017013006 +n66017013007 +n66017013008 +n66017013009 +n66017013010 +n66017013011 +n66017013012 +n66017013013 +n66017014001 +n66017014002 +n66017014003 +n66017014004 +n66017014005 +n66017014006 +n66017014007 +n66017014008 +n66017014009 +n66017014010 +n66017014011 +n66017014014 +n66017014012 +n66017014013 +n66017014015 +n66017014016 +n66017014017 +n66017014018 +n66017014019 +n66017014020 +n66017014021 +n66017014022 +n66017014023 +n66017014024 +n66017014025 +n66017014026 +n66017015001 +n66017015002 +n66017015003 +n66017015004 +n66017015005 +n66017015006 +n66017015007 +n66017015008 +n66017015009 +n66017015010 +n66017015011 +n66017015015 +n66017015012 +n66017015013 +n66017015014 +n66017015016 +n66017015017 +n66017015018 +n66017015019 +n66017016001 +n66017016002 +n66017016003 +n66017016004 +n66017016005 +n66017016006 +n66017016007 +n66017016008 +n66017016009 +n66017016010 +n66017016011 +n66017016012 +n66017016013 +n66017016014 +n66017016016 +n66017016017 +n66017016015 +n66017016018 +n66017016019 +n66017016020 +n66017016021 +n66017016022 +n66017016023 +n66017016024 +n66017016025 +n66017016026 +n66017016027 +n66017016028 +n66017016029 +n66017017002 +n66017017001 +n66017017003 +n66017017004 +n66017017005 +n66017017006 +n66017017007 +n66017017008 +n66017017009 +n66017017010 +n66017017011 +n66017017012 +n66017017013 +n66017017014 +n66017017015 +n66017017016 +n66017017017 +n66017017018 +n66017017019 +n66017017020 +n66017017021 +n66017017022 +n66017017023 +n66017017024 +n66017017025 +n66017017026 +n66017017027 +n66017017028 +n66017017029 +n66017018001 +n66017018002 +n66017018003 +n66017018004 +n66017018005 +n66017018006 +n66017018007 +n66017018008 +n66017018009 +n66017018010 +n66017018011 +n66017018012 +n66017018013 +n66017018014 +n66017018015 +n66017018016 +n66017018017 +n66017018018 +n66018001001 +n66018001002 +n66018001003 +n66018001004 +n66018001005 +n66018001006 +n66018001007 +n66018001008 +n66018001009 +n66018001010 +n66018001011 +n66018001012 +n66018001013 +n66018001014 +n66018001015 +n66018001016 +n66018001017 +n66018001018 +n66018001019 +n66018001020 +n66018002001 +n66018002002 +n66018002003 +n66018002004 +n66018002005 +n66018002006 +n66018002007 +n66018002008 +n66018002009 +n66018002010 +n66018002011 +n66018002012 +n66018002013 +n66018002014 +n66018002015 +n66018002016 +n66018002017 +n66018002018 +n66018002019 +n66018002020 +n66018002021 +n66018002022 +n66018002023 +n66018002024 +n66018002025 +n66018002026 +n66018002027 +n66018003001 +n66018003002 +n66018003003 +n66018003004 +n66018003005 +n66018003006 +n66018003007 +n66018003008 +n66018003009 +n66018003010 +n66018003011 +n66018003012 +n66018003013 +n66018003014 +n66018003015 +n66018003016 +n66018003017 +n66018003018 +n66018003019 +n66018003020 +n66018003021 +n66018003022 +n66018003023 +n66018003024 +n66018003025 +n66018003026 +n66018003027 +n66018003028 +n66018003029 +n66018003030 +n66018003031 +n66018003032 +n66018003033 +n66018004001 +n66018004002 +n66018004003 +n66018004004 +n66018004005 +n66018004006 +n66018004007 +n66018004008 +n66018004010 +n66018004011 +n66018004012 +n66018004009 +n66018004013 +n66018004014 +n66018004015 +n66018004016 +n66018004017 +n66018004018 +n66018004019 +n66018004020 +n66018004021 +n66018004026 +n66018004022 +n66018004023 +n66018004024 +n66018004025 +n66018004027 +n66018004028 +n66018005001 +n66018005002 +n66018005003 +n66018005004 +n66018005005 +n66018005006 +n66018005007 +n66018005008 +n66018005009 +n66018005010 +n66018005011 +n66018005012 +n66018005013 +n66018005014 +n66018005015 +n66018006001 +n66018006002 +n66018006003 +n66018006004 +n66018006005 +n66018006006 +n66018006007 +n66018006008 +n66018006009 +n66018006010 +n66018006011 +n66018006012 +n66018006013 +n66018006014 +n66018006015 +n66018006016 +n66018006017 +n66018006018 +n66018006019 +n66018006020 +n66018006021 +n66018006022 +n66018007001 +n66018007002 +n66018007003 +n66018007004 +n66018007005 +n66018007006 +n66018007009 +n66018007010 +n66018007011 +n66018007007 +n66018007008 +n66018007012 +n66018007013 +n66018007014 +n66018007015 +n66018007016 +n66018007017 +n66018007018 +n66018007019 +n66018007020 +n66018007021 +n66018007022 +n66018007023 +n66018007024 +n66018007025 +n66018007026 +n66018007027 +n66018007028 +n66018007029 +n66018008001 +n66018008002 +n66018008003 +n66018008004 +n66018008005 +n66018008006 +n66018008007 +n66018008008 +n66018008009 +n66018008010 +n66018008011 +n66018008012 +n66018008013 +n66018008014 +n66018008015 +n66018008016 +n66018008017 +n66018008018 +n66018008019 +n66018008020 +n66018008021 +n66018008022 +n66018008023 +n66018008024 +n66018008025 +n66018008026 +n66018009001 +n66018009002 +n66018009003 +n66018009004 +n66018009005 +n66018009006 +n66018009007 +n66018009008 +n66018009009 +n66018009010 +n66018009011 +n66018009012 +n66018009013 +n66018009014 +n66018009015 +n66018009016 +n66018009017 +n66018009018 +n66018009019 +n66018009020 +n66018009021 +n66018009022 +n66018009023 +n66018010001 +n66018010002 +n66018010003 +n66018010004 +n66018010005 +n66018010006 +n66018010007 +n66018010008 +n66018010009 +n66018010010 +n66018010011 +n66018010012 +n66018010013 +n66018010014 +n66018010015 +n66018010016 +n66018010017 +n66018010018 +n66018010019 +n66018010020 +n66018010021 +n66018010022 +n66018010023 +n66018010024 +n66018010025 +n66018010026 +n66018010027 +n66018010028 +n66018011001 +n66018011002 +n66018011003 +n66018011004 +n66018011005 +n66018011006 +n66018011007 +n66018011008 +n66018011009 +n66018011010 +n66018011011 +n66018011015 +n66018011016 +n66018011017 +n66018011012 +n66018011013 +n66018011014 +n66018012001 +n66018012002 +n66018012003 +n66018012004 +n66018012005 +n66018012006 +n66018012007 +n66018012008 +n66018012009 +n66018012010 +n66018012011 +n66018012012 +n66018012013 +n66018012014 +n66018012015 +n66018012016 +n66018012017 +n66018012018 +n66018012019 +n66018012020 +n66018012021 +n66018012022 +n66018012023 +n66018012024 +n66018012025 +n66018012026 +n66018012027 +n66018012028 +n66018012029 +n66018012030 +n66018012031 +n66018012032 +n66018012033 +n66018012034 +n66018012035 +n66018012036 +n66018012037 +n66018013001 +n66018013002 +n66018013003 +n66018013004 +n66018013005 +n66018013006 +n66018013007 +n66018013008 +n66018013009 +n66018013010 +n66018013011 +n66018013012 +n66018013013 +n66018013014 +n66018013015 +n66018013016 +n66018013017 +n66018013018 +n66018013019 +n66018013020 +n66018013021 +n66018013022 +n66018013023 +n66018013024 +n66018013025 +n66018013026 +n66018013027 +n66018013028 +n66018013029 +n66018013030 +n66018013031 +n66018014001 +n66018014002 +n66018014003 +n66018014004 +n66018014005 +n66018014006 +n66018014007 +n66018014008 +n66018014009 +n66018014010 +n66018014011 +n66018014012 +n66018014013 +n66018014014 +n66018014015 +n66018014016 +n66018014017 +n66018014018 +n66018014019 +n66018014020 +n66018014021 +n66018014022 +n66018014023 +n66018014024 +n66018014025 +n66018014026 +n66018014027 +n66018015001 +n66018015002 +n66018015003 +n66018015004 +n66018015005 +n66018015006 +n66018015007 +n66018015008 +n66018015009 +n66018015010 +n66018015011 +n66018015012 +n66018015013 +n66018015014 +n66018015015 +n66018015016 +n66018015017 +n66018015018 +n66018015019 +n66018016001 +n66018016002 +n66018016003 +n66018016004 +n66018016005 +n66018016006 +n66018016007 +n66018016008 +n66018016009 +n66018016010 +n66018016011 +n66018016012 +n66018016013 +n66018016014 +n66018016015 +n66018016016 +n66018016017 +n66018016018 +n66018016019 +n66018016020 +n66018016021 +n66018016022 +n66018016023 +n66018017001 +n66018017002 +n66018017003 +n66018017004 +n66018017005 +n66018017006 +n66018017007 +n66018017008 +n66018017009 +n66018017010 +n66018017011 +n66018017012 +n66018017013 +n66018017014 +n66018017015 +n66018017016 +n66018017017 +n66018017018 +n66018017019 +n66018017020 +n66018017021 +n66018017022 +n66018017023 +n66018017024 +n66018017025 +n66018017026 +n66018018001 +n66018018002 +n66018018003 +n66018018004 +n66018018005 +n66018018006 +n66018018007 +n66018018008 +n66018018009 +n66018018010 +n66018018011 +n66018018012 +n66018018013 +n66018018014 +n66018018015 +n66018019001 +n66018019002 +n66018019003 +n66018019004 +n66018019005 +n66018019006 +n66018019007 +n66018019008 +n66018019009 +n66018019010 +n66018019011 +n66018019012 +n66018019013 +n66018019014 +n66018019015 +n66018019016 +n66018019017 +n66018019018 +n66018019019 +n66018019020 +n66018019021 +n66018019022 +n66018019023 +n66018019024 +n66018019025 +n66018019026 +n66018019027 +n66018019028 +n66018019029 +n66018019030 +n66018019031 +n66018019032 +n66018019033 +n66018019034 +n66018019035 +n66018019036 +n66018019037 +n66018019038 +n66018020001 +n66018020002 +n66018020003 +n66018020004 +n66018020005 +n66018020006 +n66018020007 +n66018020008 +n66018020009 +n66018020010 +n66018020011 +n66018020012 +n66018020013 +n66018020014 +n66018020015 +n66018020016 +n66018020017 +n66018020018 +n66018020019 +n66018020020 +n66018020021 +n66018020022 +n66018021001 +n66018021002 +n66018021003 +n66018021004 +n66018021005 +n66018021006 +n66018021007 +n66018021008 +n66018021009 +n66018021010 +n66018021011 +n66018021012 +n66018021013 +n66018021014 +n66018021015 +n66018021016 +n66018021017 +n66018021018 +n66018021019 +n66018021020 +n66018021021 +n66018021022 +n66018021023 +n66018021024 +n66018021025 +n66018021026 +n66018021027 +n66018022001 +n66018022002 +n66018022003 +n66018022004 +n66018022005 +n66018022006 +n66018022007 +n66018022008 +n66018022009 +n66018022010 +n66018022011 +n66018022012 +n66018022013 +n66018022014 +n66018022015 +n66018022016 +n66018022017 +n66018022018 +n66018022019 +n66018022020 +n66018022021 +n66018022022 +n66018022023 +n66018022024 +n66018022025 +n66018022026 +n66018022027 +n66018022028 +n66018022029 +n66018022030 +n66018022031 +n66018022032 +n66018022033 +n66018022034 +n66018022035 +n66018023001 +n66018023002 +n66018023003 +n66018023004 +n66018023005 +n66018023006 +n66018023007 +n66018023008 +n66018023009 +n66018023010 +n66018023011 +n66018023012 +n66018023013 +n66018023014 +n66018023015 +n66018023016 +n66018023017 +n66018023018 +n66018023019 +n66018023020 +n66018023021 +n66018023022 +n66018023023 +n66018023024 +n66018023025 +n66018023026 +n66018023027 +n66018023028 +n66018023029 +n66018023030 +n66018023031 +n66018023032 +n66018023033 +n66018023034 +n66018023035 +n66018023036 +n66018023037 +n66018023038 +n66018024001 +n66018024002 +n66018024003 +n66018024008 +n66018024004 +n66018024005 +n66018024006 +n66018024007 +n66018024009 +n66018024010 +n66018024011 +n66018024012 +n66018024013 +n66018024014 +n66018024015 +n66019001001 +n66019001002 +n66019001003 +n66019001004 +n66019001005 +n66019001006 +n66019001007 +n66019001008 +n66019001009 +n66019001010 +n66019001011 +n66019001012 +n66019001013 +n66019001014 +n66019001015 +n66019001016 +n66019001017 +n66019001018 +n66019001019 +n66019001020 +n66019001021 +n66019001022 +n66019001023 +n66019001024 +n66019002001 +n66019002002 +n66019002003 +n66019002004 +n66019002005 +n66019002006 +n66019002007 +n66019002008 +n66019002009 +n66019002010 +n66019002011 +n66019002012 +n66019002013 +n66019002014 +n66019002015 +n66019002016 +n66019002017 +n66019002018 +n66019002019 +n66019002020 +n66019002021 +n66019002022 +n66019002023 +n66019002024 +n66019002025 +n66019002026 +n66019002027 +n66019002028 +n66019002029 +n66019002030 +n66019002031 +n66019003001 +n66019003002 +n66019003003 +n66019003004 +n66019003005 +n66019003006 +n66019003007 +n66019003008 +n66019003009 +n66019003010 +n66019003011 +n66019003012 +n66019003013 +n66019003014 +n66019004001 +n66019004002 +n66019004003 +n66019004004 +n66019004005 +n66019004006 +n66019004007 +n66019004008 +n66019004009 +n66019004010 +n66019004011 +n66019004012 +n66019004013 +n66019004014 +n66019004015 +n66019004016 +n66019004017 +n66019004018 +n66019004019 +n66019004020 +n66019004021 +n66019004022 +n66019004023 +n66019005001 +n66019005002 +n66019005003 +n66019005004 +n66019005005 +n66019005006 +n66019005007 +n66019005008 +n66019005009 +n66019005010 +n66019005011 +n66019005012 +n66019005013 +n66019005014 +n66019005015 +n66019005016 +n66019005017 +n66019005018 +n66019005019 +n66019005020 +n66019005021 +n66019005022 +n66019005023 +n66019006001 +n66019006002 +n66019006003 +n66019006004 +n66019006005 +n66019006006 +n66019006007 +n66019006008 +n66019006009 +n66019006010 +n66019006011 +n66019006012 +n66019006013 +n66019006014 +n66019006015 +n66019006016 +n66019006017 +n66019006018 +n66019006019 +n66019006020 +n66019006021 +n66019006022 +n66019006023 +n66019006024 +n66019006025 +n66019006026 +n66019007001 +n66019007002 +n66019007003 +n66019007004 +n66019007005 +n66019007006 +n66019007007 +n66019007008 +n66019007009 +n66019007010 +n66019007011 +n66019007012 +n66019007013 +n66019007014 +n66019007015 +n66019007016 +n66019007017 +n66019007018 +n66019007019 +n66019007020 +n66019008001 +n66019008002 +n66019008003 +n66019008004 +n66019008005 +n66019008006 +n66019008007 +n66019008008 +n66019008010 +n66019008009 +n66019008011 +n66019008012 +n66019008013 +n66019008014 +n66019008015 +n66019008016 +n66019009001 +n66019009002 +n66019009003 +n66019009004 +n66019009005 +n66019009006 +n66019009007 +n66019009008 +n66019009009 +n66019009010 +n66019009011 +n66019009012 +n66019009013 +n66019009014 +n66019009015 +n66019009016 +n66019009017 +n66019009018 +n66019009019 +n66019009020 +n66019009021 +n66019009022 +n66019009023 +n66019009024 +n66019010001 +n66019010002 +n66019010003 +n66019010004 +n66019010005 +n66019010006 +n66019010007 +n66019010008 +n66019010009 +n66019010010 +n66019010011 +n66019010012 +n66019010013 +n66019010016 +n66019010014 +n66019010015 +n66019010017 +n66019010018 +n66019010019 +n66019010020 +n66019010021 +n66019010022 +n66019010023 +n66019010024 +n66019010025 +n66019010026 +n66019010027 +n66019010028 +n66019010030 +n66019010029 +n66019010031 +n66019010032 +n66019010033 +n66019010034 +n66019010035 +n66019010036 +n66019010037 +n66019011001 +n66019011002 +n66019011003 +n66019011004 +n66019011005 +n66019011006 +n66019011007 +n66019011008 +n66019011009 +n66019011010 +n66019011011 +n66019011012 +n66019011013 +n66019011014 +n66019011015 +n66019011016 +n66019011017 +n66019011018 +n66019011019 +n66019011020 +n66019011021 +n66019011022 +n66019011023 +n66019011024 +n66019012002 +n66019012001 +n66019012003 +n66019012004 +n66019012005 +n66019012006 +n66019012007 +n66019012008 +n66019012009 +n66019012010 +n66019012011 +n66019012012 +n66019012013 +n66019012014 +n66019012015 +n66019012016 +n66019012017 +n66019012018 +n66019012019 +n66019012020 +n66019012021 +n66019012022 +n66019013001 +n66019013002 +n66019013003 +n66019013004 +n66019013005 +n66019013006 +n66019013007 +n66019013008 +n66019013009 +n66019013010 +n66019013011 +n66019013012 +n66019013013 +n66019013014 +n66019014001 +n66019014002 +n66019014003 +n66019014004 +n66019014005 +n66019014006 +n66019014007 +n66019014008 +n66019014009 +n66019014010 +n66019014011 +n66019014012 +n66019014013 +n66019014014 +n66019014015 +n66019014016 +n66019015001 +n66019015002 +n66019015003 +n66019015004 +n66019015005 +n66019015006 +n66019015007 +n66019015008 +n66019015009 +n66019015010 +n66019015011 +n66019015012 +n66019015013 +n66019015014 +n66019015015 +n66019015016 +n66019015017 +n66019015018 +n66019015019 +n66019015020 +n66019015021 +n66019015022 +n66019015023 +n66019015024 +n66019015025 +n66019015026 +n66019015027 +n66019015028 +n66019015029 +n66019015030 +n66019015031 +n66019015032 +n66019015033 +n66019015034 +n66019015035 +n66019015036 +n66019016001 +n66019016002 +n66019016003 +n66019016004 +n66019016005 +n66019016006 +n66019016007 +n66019016008 +n66019016009 +n66019016010 +n66019016011 +n66019016012 +n66019016013 +n66019016014 +n66019016015 +n66019016016 +n66019016017 +n66019017001 +n66019017002 +n66019017003 +n66019017004 +n66019017005 +n66019017006 +n66019017007 +n66019017008 +n66019017009 +n66019017010 +n66019017011 +n66019017012 +n66019017013 +n66019017014 +n66019017015 +n66019017016 +n66019017017 +n66019017018 +n66019017019 +n66019017020 +n66019017021 +n66019017022 +n66019017023 +n66019017024 +n66019017025 +n66019017026 +n66019017027 +n66019017028 +n66019017029 +n66019017030 +n66019018001 +n66019018002 +n66019018003 +n66019018004 +n66019018005 +n66019018006 +n66019018007 +n66019018008 +n66019018009 +n66019018010 +n66019018011 +n66019018012 +n66019018013 +n66019018014 +n66019018015 +n66019018016 +n66019018017 +n66019018018 +n66019018019 +n66019018020 +n66019018021 +n66019018023 +n66019018022 +n66019018024 +n66019018025 +n66019018026 +n66019018027 +n66019018028 +n66019018029 +n66019019001 +n66019019002 +n66019019003 +n66019019004 +n66019019005 +n66019019006 +n66019019007 +n66019019008 +n66019019009 +n66019019010 +n66019019011 +n66019019012 +n66019019013 +n66019019014 +n66019019015 +n66019019016 +n66019019017 +n66019019018 +n66019019019 +n66019019020 +n66019019021 +n66019019022 +n66019019023 +n66019019024 +n66019019025 +n66019019026 +n66019019027 +n66019019028 +n66019020001 +n66019020002 +n66019020003 +n66019020004 +n66019020005 +n66019020006 +n66019020007 +n66019020008 +n66019020009 +n66019020010 +n66019020011 +n66019020012 +n66019020013 +n66019020014 +n66019020015 +n66019020016 +n66019020017 +n66019020018 +n66019020019 +n66019020020 +n66019020021 +n66019020022 +n66019020023 +n66019020024 +n66019020025 +n66019020026 +n66019020027 +n66019020028 +n66019020029 +n66019020030 +n66019020031 +n66019020032 +n66019020033 +n66019020034 +n66019020035 +n66019020036 +n66019020037 +n66019020038 +n66019020039 +n66019020040 +n66019020041 +n66019020042 +n66019020043 +n66019021001 +n66019021002 +n66019021003 +n66019021004 +n66019021005 +n66019021006 +n66019021007 +n66019021008 +n66019021009 +n66019021010 +n66019021011 +n66019021012 +n66019021013 +n66019021014 +n66019021015 +n66019021016 +n66019021017 +n66019021018 +n66019021019 +n66019021020 +n66019021021 +n66019021022 +n66019021023 +n66019021024 +n66019021025 +n66019021026 +n66019021027 +n66020001001 +n66020001002 +n66020001003 +n66020001004 +n66020001005 +n66020001006 +n66020001007 +n66020001008 +n66020001009 +n66020001010 +n66020001011 +n66020001012 +n66020001013 +n66020001014 +n66020001015 +n66020001016 +n66020001017 +n66020001018 +n66020001019 +n66020002001 +n66020002002 +n66020002003 +n66020002004 +n66020002005 +n66020002006 +n66020002007 +n66020002008 +n66020002009 +n66020002010 +n66020002011 +n66020002012 +n66020002013 +n66020002014 +n66020002015 +n66020002016 +n66020002017 +n66020002018 +n66020002019 +n66020003001 +n66020003002 +n66020003003 +n66020003004 +n66020003005 +n66020003006 +n66020003007 +n66020003008 +n66020003009 +n66020003010 +n66020003011 +n66020003012 +n66020003013 +n66020003014 +n66020003015 +n66020003016 +n66020003017 +n66020003018 +n66020003019 +n66020003020 +n66020003021 +n66020003022 +n66020003023 +n66020003024 +n66020003025 +n66020003026 +n66020003027 +n66020003028 +n66020003029 +n66020003030 +n66020004001 +n66020004002 +n66020004003 +n66020004004 +n66020004005 +n66020004006 +n66020004007 +n66020004008 +n66020004009 +n66020004010 +n66020004011 +n66020004012 +n66020004013 +n66020004014 +n66020004015 +n66020004016 +n66020004017 +n66020004018 +n66020004019 +n66020004020 +n66020004021 +n66020004022 +n66020004023 +n66020004024 +n66020004025 +n66020004026 +n66020004027 +n66020004028 +n66020004029 +n66020004030 +n66020004031 +n66020004032 +n66020004033 +n66020004034 +n66020004035 +n66020004036 +n66020004037 +n66020004038 +n66020004039 +n66020004040 +n66020004041 +n66020004042 +n66020004043 +n66020004044 +n66020004045 +n66020004046 +n66020004047 +n66020004048 +n66020004049 +n66020004050 +n66020004051 +n66020004052 +n66020004053 +n66020004054 +n66020004055 +n66020004056 +n66020004057 +n66020004058 +n66020005001 +n66020005002 +n66020005003 +n66020005004 +n66020005005 +n66020005006 +n66020005007 +n66020005008 +n66020005009 +n66020005010 +n66020005011 +n66020005012 +n66020005013 +n66020005014 +n66020005015 +n66020005016 +n66020006001 +n66020006002 +n66020006003 +n66020006004 +n66020006005 +n66020006006 +n66020006007 +n66020006008 +n66020006009 +n66020006010 +n66020006011 +n66020006012 +n66020006013 +n66020006014 +n66020006015 +n66020006016 +n66020006017 +n66020006018 +n66020006019 +n66020006020 +n66020006021 +n66020006022 +n66020006023 +n66020006024 +n66020006025 +n66020006026 +n66020006027 +n66020006028 +n66020006029 +n66020006030 +n66020006031 +n66020006032 +n66020006033 +n66020006034 +n66020007001 +n66020007002 +n66020007003 +n66020007004 +n66020007005 +n66020007006 +n66020007007 +n66020007008 +n66020007009 +n66020007010 +n66020007011 +n66020007012 +n66020007013 +n66020008001 +n66020008002 +n66020008003 +n66020008004 +n66020008005 +n66020008006 +n66020008007 +n66020008008 +n66020008009 +n66020008010 +n66020008011 +n66020008012 +n66020008013 +n66020008014 +n66020008015 +n66020008016 +n66020008017 +n66020008018 +n66020008019 +n66020008020 +n66020008021 +n66020008022 +n66020008023 +n66020008024 +n66020008025 +n66020008026 +n66020008027 +n66020008028 +n66020008029 +n66020008030 +n66020009001 +n66020009002 +n66020009003 +n66020009004 +n66020009005 +n66020009006 +n66020009007 +n66020009008 +n66020009009 +n66020009010 +n66020009011 +n66020009012 +n66020009013 +n66020009014 +n66020009015 +n66020009016 +n66020009017 +n66020009018 +n66020009019 +n66020009020 +n66020009021 +n66020009022 +n66020009023 +n66020009024 +n66020009025 +n66020009026 +n66020009027 +n66020010001 +n66020010002 +n66020010003 +n66020010004 +n66020010005 +n66020010006 +n66020010007 +n66020010008 +n66020010009 +n66020010010 +n66020010011 +n66020010012 +n66020010013 +n66020010014 +n66020010015 +n66020010016 +n66020010017 +n66020010018 +n66020010019 +n66020010020 +n66020010021 +n66020010022 +n66020010023 +n66020010024 +n66020010025 +n66020010026 +n66020010027 +n66020010028 +n66020010029 +n66020010030 +n66020010031 +n66020011001 +n66020011002 +n66020011003 +n66020011004 +n66020011005 +n66020011006 +n66020011007 +n66020011008 +n66020011009 +n66020011010 +n66020011012 +n66020011011 +n66020011013 +n66020011014 +n66020011015 +n66020011016 +n66020011017 +n66020011018 +n66020011019 +n66020011020 +n66020011021 +n66020011022 +n66020011023 +n66020011024 +n66020011025 +n66020012001 +n66020012002 +n66020012003 +n66020012004 +n66020012005 +n66020012006 +n66020012007 +n66020012008 +n66020012009 +n66020012010 +n66020012011 +n66020012012 +n66020012013 +n66020012014 +n66020012015 +n66020012016 +n66020012017 +n66020012018 +n66020012019 +n66020012020 +n66020012021 +n66020012022 +n66020012023 +n66020012024 +n66020012025 +n66020012026 +n66020012027 +n66020012028 +n66020012029 +n66020012030 +n66020012031 +n66020012032 +n66020012033 +n66020012034 +n66020012035 +n66020012036 +n66020012037 +n66020012038 +n66020013001 +n66020013002 +n66020013003 +n66020013004 +n66020013005 +n66020013006 +n66020013007 +n66020013008 +n66020013009 +n66020013010 +n66020013011 +n66020013012 +n66020013013 +n66020013014 +n66020013015 +n66020013016 +n66020013017 +n66020013018 +n66020013019 +n66020013020 +n66020013021 +n66020013022 +n66020013023 +n66020013024 +n66020013025 +n66020013026 +n66020013027 +n66020013028 +n66020014001 +n66020014002 +n66020014003 +n66020014004 +n66020014005 +n66020014006 +n66020014007 +n66020014008 +n66020014009 +n66020014010 +n66020014011 +n66020014012 +n66020014013 +n66020014014 +n66020014015 +n66020014016 +n66020014017 +n66020014019 +n66020014020 +n66020014021 +n66020014022 +n66020014018 +n66020015001 +n66020015002 +n66020015003 +n66020015004 +n66020015005 +n66020015006 +n66020015007 +n66020015008 +n66020015009 +n66020015010 +n66020015011 +n66020015012 +n66020015013 +n66020015014 +n66020015015 +n66020015016 +n66020015017 +n66021001001 +n66021001002 +n66021001003 +n66021001004 +n66021001005 +n66021001006 +n66021001007 +n66021001009 +n66021001008 +n66021001010 +n66021001011 +n66021001012 +n66021001013 +n66021001014 +n66021001015 +n66021001016 +n66021001017 +n66021001018 +n66021001019 +n66021001020 +n66021001021 +n66021001022 +n66021002001 +n66021002008 +n66021002002 +n66021002003 +n66021002004 +n66021002005 +n66021002006 +n66021002007 +n66021002009 +n66021002010 +n66021002011 +n66021002012 +n66021002013 +n66021002014 +n66021002015 +n66021002016 +n66021002017 +n66021002018 +n66021002019 +n66021002020 +n66021002021 +n66021002022 +n66021003001 +n66021003002 +n66021003003 +n66021003004 +n66021003005 +n66021003006 +n66021003007 +n66021003008 +n66021003009 +n66021003010 +n66021003011 +n66021003012 +n66021003013 +n66021003014 +n66021003015 +n66021003016 +n66021003017 +n66021003018 +n66021003019 +n66021003020 +n66021003021 +n66021003022 +n66021003023 +n66021003024 +n66021003025 +n66021003026 +n66021003027 +n66021003028 +n66021003029 +n66021003030 +n66021003031 +n66021003032 +n66021004001 +n66021004002 +n66021004003 +n66021004004 +n66021004005 +n66021004006 +n66021004007 +n66021004008 +n66021004009 +n66021004010 +n66021004011 +n66021004012 +n66021004013 +n66021004014 +n66021004015 +n66021004016 +n66021004017 +n66021004018 +n66021004019 +n66021004020 +n66021004021 +n66021004022 +n66021004023 +n66021004024 +n66021004025 +n66021004026 +n66021004027 +n66021005001 +n66021005002 +n66021005003 +n66021005004 +n66021005005 +n66021005006 +n66021005007 +n66021005008 +n66021005009 +n66021005010 +n66021005011 +n66021005012 +n66021005013 +n66021005014 +n66021005015 +n66021005016 +n66021005017 +n66021005018 +n66021005019 +n66021005020 +n66021005021 +n66021005022 +n66021006001 +n66021006002 +n66021006003 +n66021006004 +n66021006005 +n66021006006 +n66021006007 +n66021006008 +n66021006009 +n66021006010 +n66021006011 +n66021006012 +n66021006013 +n66021006014 +n66021006015 +n66021006016 +n66021006017 +n66021006018 +n66021006019 +n66021006020 +n66021006021 +n66021006022 +n66021006023 +n66021006024 +n66021006025 +n66021006026 +n66021006027 +n66021007001 +n66021007002 +n66021007003 +n66021007004 +n66021007005 +n66021007006 +n66021007007 +n66021007008 +n66021007009 +n66021007010 +n66021007011 +n66021007012 +n66021007013 +n66021008002 +n66021008001 +n66021008003 +n66021008004 +n66021008005 +n66021008006 +n66021008007 +n66021008008 +n66021008009 +n66021008010 +n66021008011 +n66021008012 +n66021008013 +n66021008014 +n66021008015 +n66021008016 +n66021008017 +n66021008018 +n66021008019 +n66021008020 +n66021008021 +n66021008022 +n66021008023 +n66021008024 +n66021008025 +n66021008026 +n66021008027 +n66021008028 +n66021008029 +n66021008030 +n66021008031 +n66021008032 +n66021008033 +n66021008034 +n66021008035 +n66021008036 +n66021009001 +n66021009002 +n66021009003 +n66021009004 +n66021009005 +n66021009006 +n66021009007 +n66021009008 +n66021009009 +n66021009010 +n66021009011 +n66021009012 +n66021009013 +n66021009014 +n66021009015 +n66021009016 +n66021009017 +n66021009018 +n66021009019 +n66021009020 +n66021009021 +n66021009022 +n66021009023 +n66021009024 +n66021009025 +n66021009026 +n66021009027 +n66021009028 +n66021009029 +n66021009030 +n66021009031 +n66021009032 +n66021009033 +n66021010001 +n66021010002 +n66021010003 +n66021010004 +n66021010005 +n66021010006 +n66021010007 +n66021010008 +n66021010009 +n66021010010 +n66021010011 +n66021010012 +n66021010013 +n66021010014 +n66021010015 +n66021010016 +n66021010017 +n66021010018 +n66021010019 +n66021010020 +n66021010021 +n66021010022 +n66021010023 +n66021010024 +n66021010025 +n66021011001 +n66021011002 +n66021011003 +n66021011004 +n66021011005 +n66021011006 +n66021011007 +n66021011008 +n66021011009 +n66021011010 +n66021011011 +n66021011012 +n66021011013 +n66021011014 +n66021011015 +n66021012001 +n66021012002 +n66021012003 +n66021012004 +n66021012005 +n66021012006 +n66021012007 +n66021012008 +n66021012009 +n66021012010 +n66021012011 +n66021012012 +n66021012013 +n66021012014 +n66021012015 +n66021012017 +n66021012016 +n66021012018 +n66021012019 +n66021012020 +n66021012021 +n66021012022 +n66021012023 +n66021012024 +n66021013001 +n66021013002 +n66021013003 +n66021013004 +n66021013005 +n66021013006 +n66021013007 +n66021013008 +n66021013009 +n66021013010 +n66021013011 +n66021013012 +n66021013013 +n66021013014 +n66021013015 +n66021013016 +n66021013017 +n66021013018 +n66021013019 +n66021014001 +n66021014002 +n66021014003 +n66021014004 +n66021014005 +n66021014006 +n66021014007 +n66021014008 +n66021014009 +n66021014010 +n66021014011 +n66021014012 +n66021014013 +n66021014014 +n66021014015 +n66021014016 +n66021014017 +n66021014018 +n66021015001 +n66021015002 +n66021015003 +n66021015004 +n66021015005 +n66021015006 +n66021015007 +n66021015008 +n66021015009 +n66021015010 +n66021015011 +n66021015012 +n66021015013 +n66021015014 +n66021015015 +n66021015016 +n66021015017 +n66021015018 +n66021015019 +n66021015020 +n66021015021 +n66021016001 +n66021016002 +n66021016003 +n66021016004 +n66021016005 +n66021016006 +n66021016007 +n66021016008 +n66021016009 +n66021016010 +n66021016011 +n66021016012 +n66021016013 +n66021016014 +n66021016015 +n66021016016 +n66021016017 +n66021016018 +n66021016019 +n66021016020 +n66021016021 +n66021016022 +n66021016023 +n66021016024 +n66021016025 +n66021016026 +n66021016027 +n66021016028 +n66021016029 +n66021016030 +n66021016031 +n66021016032 +n66021016033 +n66021017001 +n66021017002 +n66021017003 +n66021017004 +n66021017005 +n66021017006 +n66021017007 +n66021017008 +n66021017009 +n66021017010 +n66021017011 +n66021017012 +n66021017013 +n66021017014 +n66021018001 +n66021018002 +n66021018003 +n66021018004 +n66021018005 +n66021018006 +n66021018007 +n66021018008 +n66021018009 +n66021018010 +n66021018011 +n66021018012 +n66021018013 +n66021018014 +n66021018015 +n66021019001 +n66021019002 +n66021019003 +n66021019004 +n66021019005 +n66021019006 +n66021019007 +n66021019008 +n66021019009 +n66021019010 +n66021019011 +n66021019012 +n66021019013 +n66021019014 +n66021019015 +n66021019016 +n66021019017 +n66021019018 +n66021019019 +n66021019020 +n66021019021 +n66021019022 +n66021019023 +n66021019024 +n66021020001 +n66021020002 +n66021020003 +n66021020004 +n66021020005 +n66021020006 +n66021020007 +n66021020008 +n66021020009 +n66021020010 +n66021020011 +n66021020012 +n66021020013 +n66021020014 +n66021020015 +n66021020016 +n66021020017 +n66021020018 +n66021020019 +n66021020020 +n66021020021 +n66021020022 +n66021020023 +n66021020024 +n66021021001 +n66021021002 +n66021021003 +n66021021004 +n66021021005 +n66021021006 +n66021021007 +n66021021008 +n66021021009 +n66021021010 +n66021021011 +n66021021012 +n66021021013 +n66021021014 +n66021021015 +n66021021016 +n66021021017 +n66021021018 +n66021021019 +n66021021020 +n66021021021 +n66021021022 +n66021021023 +n66021021024 +n66021021025 +n66021022001 +n66021022002 +n66021022003 +n66021022004 +n66021022005 +n66021022006 +n66021022008 +n66021022007 +n66021022009 +n66021022010 +n66021022011 +n66021022012 +n66021022013 +n66021022017 +n66021022018 +n66021022019 +n66021022014 +n66021022015 +n66021022016 +n66021023001 +n66021023002 +n66021023003 +n66021023004 +n66021023006 +n66021023005 +n66021023007 +n66021023008 +n66021023009 +n66021023010 +n66021023011 +n66021023012 +n66021023013 +n66021023014 +n66021023016 +n66021023015 +n66021023017 +n66021023018 +n66021023019 +n66021023020 +n66021023021 +n66021023022 +n66021023023 +n66021023024 +n66021023025 +n66021023026 +n66021023027 +n66021024001 +n66021024002 +n66021024003 +n66021024004 +n66021024005 +n66021024006 +n66021024007 +n66021024008 +n66021024009 +n66021024010 +n66021024011 +n66021024012 +n66021024013 +n66021024014 +n66021024015 +n66021024016 +n66021024017 +n66021024018 +n66021024019 +n66021025001 +n66021025002 +n66021025003 +n66021025004 +n66021025005 +n66021025006 +n66021025007 +n66021025008 +n66021025010 +n66021025009 +n66021025011 +n66021025012 +n66021025013 +n66021026001 +n66021026002 +n66021026003 +n66021026004 +n66021026005 +n66021026006 +n66021026007 +n66021026008 +n66021026009 +n66021026010 +n66021026011 +n66021027001 +n66021027002 +n66021027003 +n66021027004 +n66021027005 +n66021027006 +n66021027007 +n66021027008 +n66021027009 +n66021027010 +n66021027011 +n66021027012 +n66021027013 +n66021027014 +n66021027015 +n66021027016 +n66021027017 +n66021027018 +n66021027019 +n66021027020 +n66021027021 +n66021027022 +n66021027023 +n66021027024 +n66021027025 +n66022001001 +n66022001002 +n66022001003 +n66022001004 +n66022001005 +n66022001006 +n66022001007 +n66022001008 +n66022001009 +n66022001010 +n66022001011 +n66022001012 +n66022001013 +n66022001014 +n66022001015 +n66022001016 +n66022001017 +n66022001018 +n66022002001 +n66022002002 +n66022002003 +n66022002004 +n66022002005 +n66022002006 +n66022002007 +n66022002008 +n66022002009 +n66022002010 +n66022002011 +n66022002012 +n66022002013 +n66022002014 +n66022002015 +n66022002016 +n66022002017 +n66022002018 +n66022002019 +n66022002020 +n66022002021 +n66022002022 +n66022002023 +n66022002024 +n66022002025 +n66022002026 +n66022002027 +n66022002028 +n66022002029 +n66022002030 +n66022002031 +n66022002032 +n66022003001 +n66022003002 +n66022003003 +n66022003004 +n66022003005 +n66022003006 +n66022003007 +n66022003008 +n66022003009 +n66022003010 +n66022003011 +n66022003012 +n66022003013 +n66022003014 +n66022003015 +n66022003016 +n66022003017 +n66022003018 +n66022003019 +n66022003020 +n66022003021 +n66022003022 +n66022003023 +n66022004001 +n66022004002 +n66022004003 +n66022004004 +n66022004005 +n66022004006 +n66022004007 +n66022004008 +n66022004009 +n66022004010 +n66022004011 +n66022004012 +n66022004013 +n66022005001 +n66022005002 +n66022005003 +n66022005004 +n66022005005 +n66022005006 +n66022005007 +n66022005008 +n66022005009 +n66022005010 +n66022005011 +n66022005012 +n66022005013 +n66022005014 +n66022005015 +n66022005016 +n66022005017 +n66022005018 +n66022005019 +n66022005020 +n66022005021 +n66022005022 +n66022005023 +n66022005024 +n66022005025 +n66022005026 +n66022005027 +n66022005028 +n66022006001 +n66022006002 +n66022006003 +n66022006004 +n66022006005 +n66022006006 +n66022006007 +n66022006008 +n66022006009 +n66022006010 +n66022006011 +n66022006012 +n66022006013 +n66022006014 +n66022006015 +n66022006016 +n66022006017 +n66022006018 +n66022006019 +n66022006020 +n66022006021 +n66022006022 +n66022006023 +n66022006024 +n66022006025 +n66022006026 +n66022006027 +n66022006029 +n66022006030 +n66022006031 +n66022006028 +n66022007001 +n66022007002 +n66022007003 +n66022007004 +n66022007005 +n66022007006 +n66022007007 +n66022007008 +n66022007009 +n66022007010 +n66022007011 +n66022007012 +n66022007013 +n66022007014 +n66022008001 +n66022008002 +n66022008003 +n66022008004 +n66022008005 +n66022008006 +n66022008007 +n66022008008 +n66022008009 +n66022008010 +n66022008011 +n66022008012 +n66022008013 +n66022008014 +n66022008015 +n66022008016 +n66022008017 +n66022008018 +n66022008019 +n66022008020 +n66022008021 +n66022008022 +n66022008023 +n66022009001 +n66022009002 +n66022009003 +n66022009004 +n66022009005 +n66022009008 +n66022009006 +n66022009007 +n66022009009 +n66022009010 +n66022009011 +n66022009012 +n66022009013 +n66022009014 +n66022009015 +n66022009016 +n66022009017 +n66022009018 +n66022009019 +n66022009020 +n66022009021 +n66022009022 +n66022009023 +n66022009024 +n66022009025 +n66022010001 +n66022010002 +n66022010003 +n66022010004 +n66022010005 +n66022010006 +n66022010007 +n66022010008 +n66022010009 +n66022010010 +n66022010011 +n66022010012 +n66022010015 +n66022010013 +n66022010014 +n66022010016 +n66022010017 +n66022011001 +n66022011002 +n66022011003 +n66022011004 +n66022011005 +n66022011006 +n66022011007 +n66022011008 +n66022011009 +n66022011010 +n66022011011 +n66022011012 +n66022011013 +n66022011014 +n66022011015 +n66022011016 +n66022011017 +n66022011018 +n66022011019 +n66022011020 +n66022012001 +n66022012002 +n66022012003 +n66022012004 +n66022012005 +n66022012006 +n66022012007 +n66022012008 +n66022012009 +n66022012010 +n66022012011 +n66022012012 +n66022012013 +n66022012014 +n66022012016 +n66022012015 +n66022013001 +n66022013002 +n66022013003 +n66022013004 +n66022013005 +n66022013006 +n66022013007 +n66022013008 +n66022013009 +n66022013010 +n66022013011 +n66022013012 +n66022013013 +n66022013014 +n66022013015 +n66022013016 +n66022014001 +n66022014002 +n66022014003 +n66022014004 +n66022014005 +n66022014006 +n66022014007 +n66022014008 +n66022014009 +n66022014010 +n66022014011 +n66022014012 +n66022014013 +n66022014014 +n66022014015 +n66022014016 +n66022014017 +n66022014018 +n66022014019 +n66022014020 +n66022014021 +n66022014022 +n66022014023 +n66022015001 +n66022015002 +n66022015003 +n66022015004 +n66022015005 +n66022015006 +n66022015007 +n66022015008 +n66022015009 +n66022015010 +n66022015011 +n66022015012 +n66022015013 +n66022015014 +n66022015015 +n66022015016 +n66022015017 +n66022015018 +n66022015019 +n66022015020 +n66022015021 +n66022016001 +n66022016002 +n66022016003 +n66022016004 +n66022016005 +n66022016006 +n66022016007 +n66022016008 +n66022016009 +n66022016010 +n66022016011 +n66022016012 +n66022016013 +n66022016014 +n66022016015 +n66022016016 +n66022016017 +n66022016018 +n66022016019 +n66022016020 +n66022016021 +n66022016022 +n66022016023 +n66022016024 +n66022016025 +n66022016026 +n66022017001 +n66022017002 +n66022017003 +n66022017004 +n66022017005 +n66022017006 +n66022017007 +n66022017008 +n66022017009 +n66022017010 +n66022017011 +n66022017012 +n66022017013 +n66022017014 +n66022017015 +n66022017016 +n66022017017 +n66022017018 +n66022017019 +n66022017020 +n66022017021 +n66022017022 +n66022017023 +n66022018001 +n66022018002 +n66022018003 +n66022018004 +n66022018005 +n66022018006 +n66022018007 +n66022018008 +n66022018009 +n66022018010 +n66022018011 +n66022018012 +n66022018013 +n66022018014 +n66022018015 +n66022018016 +n66022018017 +n66022018018 +n66022018019 +n66022018020 +n66022018021 +n66022018022 +n66022018023 +n66022018024 +n66022018025 +n66022018026 +n66022018027 +n66022018028 +n66022018029 +n66022018030 +n66022019001 +n66022019002 +n66022019003 +n66022019004 +n66022019005 +n66022019006 +n66022019007 +n66022019008 +n66022019009 +n66022019010 +n66022019011 +n66022019012 +n66022019013 +n66022019014 +n66022019015 +n66022019016 +n66022019017 +n66022019018 +n66022019019 +n66022019020 +n66022019021 +n66022019022 +n66022019023 +n66022019024 +n66022019025 +n66022019026 +n66022019027 +n66022019028 +n66022019029 +n66022019030 +n66022019031 +n66022019032 +n66022019033 +n66022019034 +n66022019035 +n66022020001 +n66022020002 +n66022020003 +n66022020004 +n66022020005 +n66022020006 +n66022020007 +n66022020008 +n66022020009 +n66022020010 +n66022020011 +n66022021001 +n66022021002 +n66022021003 +n66022021004 +n66022021005 +n66022021006 +n66022021007 diff --git a/tf/0.1.1/junction.tf b/tf/0.1.1/junction.tf new file mode 100644 index 0000000..d56301f --- /dev/null +++ b/tf/0.1.1/junction.tf @@ -0,0 +1,17935 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Type of junction +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +154034 coordinate +154037 coordinate +154040 coordinate +154047 coordinate +154055 coordinate +154058 coordinate +154061 coordinate +154064 coordinate +154067 coordinate +154070 coordinate +154075 coordinate +154080 coordinate +154083 coordinate +154090 coordinate +154096 coordinate +154099 coordinate +154102 coordinate +154105 coordinate +154108 coordinate +154111 coordinate +154114 coordinate +154117 coordinate +154120 coordinate +154123 coordinate +154126 coordinate +154129 coordinate +154132 coordinate +154144 coordinate +154150 coordinate +154153 coordinate +154156 coordinate +154159 coordinate +154162 coordinate +154165 coordinate +154168 coordinate +154171 coordinate +154174 coordinate +154177 coordinate +154180 coordinate +154194 coordinate +154203 coordinate +154211 coordinate +154234 subordinate +154236 subordinate +subordinate +154247 subordinate +coordinate +154250 coordinate +subordinate +subordinate +154261 coordinate +154266 subordinate +154270 subordinate +154277 coordinate +coordinate +154284 subordinate +154296 subordinate +154304 coordinate +154308 coordinate +154310 coordinate +154316 subordinate +154322 coordinate +coordinate +154326 subordinate +154330 subordinate +154334 coordinate +coordinate +154339 coordinate +154341 subordinate +154343 coordinate +154366 subordinate +154371 coordinate +154377 coordinate +subordinate +154382 coordinate +coordinate +subordinate +154388 coordinate +154392 coordinate +subordinate +154401 subordinate +154428 subordinate +154436 coordinate +subordinate +154444 subordinate +154447 subordinate +154450 coordinate +subordinate +154455 coordinate +154458 subordinate +154461 subordinate +subordinate +154466 coordinate +subordinate +154477 subordinate +subordinate +154480 subordinate +154485 subordinate +154491 coordinate +subordinate +154502 coordinate +subordinate +154505 coordinate +subordinate +154516 subordinate +154518 subordinate +154536 coordinate +subordinate +154544 coordinate +154547 coordinate +154550 subordinate +154554 subordinate +154562 coordinate +subordinate +154570 coordinate +154573 coordinate +154578 subordinate +154591 coordinate +154598 coordinate +subordinate +154636 coordinate +154641 subordinate +154643 subordinate +154657 coordinate +subordinate +154665 coordinate +154669 subordinate +154678 coordinate +subordinate +154686 coordinate +154700 subordinate +154704 coordinate +subordinate +154713 subordinate +154716 subordinate +154718 subordinate +154723 subordinate +154733 subordinate +154742 subordinate +154770 coordinate +coordinate +154779 coordinate +154785 coordinate +154793 coordinate +154805 coordinate +154810 subordinate +154816 subordinate +154822 subordinate +154828 subordinate +154832 subordinate +154851 subordinate +154867 coordinate +154870 subordinate +154873 coordinate +154878 coordinate +154887 subordinate +154897 coordinate +154904 coordinate +154908 coordinate +coordinate +154915 coordinate +154935 coordinate +subordinate +154939 coordinate +154944 subordinate +154949 subordinate +subordinate +subordinate +154958 subordinate +154968 coordinate +subordinate +154972 subordinate +154994 subordinate +155000 subordinate +155008 subordinate +155013 subordinate +155024 subordinate +155027 coordinate +155031 coordinate +155035 subordinate +155040 coordinate +155046 coordinate +coordinate +155056 subordinate +155065 coordinate +155070 coordinate +155087 coordinate +155093 coordinate +coordinate +155109 subordinate +subordinate +155120 coordinate +155125 coordinate +155129 coordinate +155133 coordinate +155135 coordinate +155148 subordinate +155150 subordinate +155160 subordinate +155181 coordinate +155201 subordinate +coordinate +155208 subordinate +155215 subordinate +155220 subordinate +155240 coordinate +155243 coordinate +155248 subordinate +155253 subordinate +subordinate +155280 subordinate +155292 subordinate +coordinate +155298 coordinate +155303 coordinate +155321 coordinate +155327 subordinate +155331 subordinate +155333 subordinate +155336 coordinate +155355 subordinate +155369 subordinate +155372 subordinate +155379 subordinate +155388 subordinate +155393 subordinate +155403 subordinate +155408 subordinate +155415 subordinate +155422 subordinate +155430 subordinate +155438 subordinate +coordinate +155441 coordinate +155443 coordinate +155446 subordinate +155450 coordinate +155452 coordinate +155454 subordinate +155475 subordinate +155481 subordinate +subordinate +subordinate +155493 subordinate +subordinate +155498 coordinate +coordinate +155501 coordinate +155504 coordinate +coordinate +155509 coordinate +155521 subordinate +coordinate +155527 coordinate +155538 subordinate +155545 coordinate +subordinate +coordinate +155555 subordinate +155570 subordinate +155575 subordinate +155577 coordinate +155584 coordinate +155595 coordinate +155597 coordinate +155609 subordinate +155626 coordinate +155628 coordinate +subordinate +155637 coordinate +155645 coordinate +subordinate +155653 coordinate +subordinate +155665 subordinate +155677 coordinate +155683 coordinate +155689 coordinate +subordinate +155699 subordinate +155704 coordinate +155708 coordinate +155712 coordinate +155722 subordinate +155749 subordinate +155754 coordinate +155756 coordinate +155761 subordinate +155763 coordinate +155768 coordinate +155777 subordinate +155781 coordinate +155783 coordinate +155788 subordinate +155790 coordinate +155795 coordinate +155804 subordinate +155813 coordinate +155821 subordinate +155823 coordinate +subordinate +155826 subordinate +155833 coordinate +155835 coordinate +155846 coordinate +155851 subordinate +155855 coordinate +155860 subordinate +155865 coordinate +155869 subordinate +155879 subordinate +subordinate +155889 subordinate +155904 coordinate +155907 coordinate +155912 subordinate +155930 subordinate +coordinate +155933 coordinate +155947 coordinate +155951 coordinate +155954 subordinate +155961 coordinate +155965 coordinate +155974 coordinate +155978 coordinate +155983 subordinate +155991 subordinate +coordinate +155999 coordinate +156007 subordinate +156021 subordinate +156035 subordinate +156043 subordinate +156055 subordinate +156067 subordinate +156072 subordinate +156082 subordinate +156104 subordinate +156124 subordinate +156130 subordinate +subordinate +156141 subordinate +156154 subordinate +156156 coordinate +156161 coordinate +subordinate +156185 subordinate +156187 subordinate +156201 subordinate +156204 subordinate +156220 coordinate +156223 coordinate +156226 coordinate +156245 subordinate +156252 coordinate +156254 coordinate +156261 subordinate +156274 subordinate +156285 subordinate +156287 subordinate +subordinate +156291 subordinate +156296 subordinate +156298 subordinate +156310 coordinate +subordinate +156315 coordinate +156319 subordinate +coordinate +156322 subordinate +coordinate +156345 coordinate +156349 coordinate +156357 coordinate +156362 coordinate +156385 subordinate +156395 subordinate +156405 subordinate +156414 subordinate +156417 subordinate +156419 coordinate +coordinate +156423 coordinate +156426 coordinate +coordinate +156429 coordinate +156433 subordinate +coordinate +156436 coordinate +156441 coordinate +156444 subordinate +coordinate +156447 coordinate +156449 coordinate +156452 subordinate +156456 coordinate +156460 coordinate +156470 subordinate +coordinate +coordinate +156474 coordinate +156476 coordinate +156479 coordinate +156492 subordinate +subordinate +156500 subordinate +156510 coordinate +156512 coordinate +156523 subordinate +156529 subordinate +156533 subordinate +coordinate +156536 coordinate +156548 coordinate +156550 coordinate +156552 coordinate +156571 coordinate +156578 coordinate +156587 subordinate +156597 subordinate +156602 coordinate +subordinate +156607 coordinate +subordinate +156614 coordinate +156624 coordinate +156652 coordinate +156658 coordinate +subordinate +156669 coordinate +156673 coordinate +156679 coordinate +156684 coordinate +subordinate +156689 coordinate +coordinate +156692 coordinate +coordinate +coordinate +156696 coordinate +coordinate +coordinate +156700 coordinate +156702 subordinate +coordinate +156708 coordinate +156712 coordinate +156735 subordinate +subordinate +subordinate +156756 subordinate +156775 subordinate +coordinate +coordinate +156780 coordinate +156788 coordinate +156793 subordinate +coordinate +coordinate +156798 coordinate +156806 coordinate +156815 coordinate +156820 coordinate +156830 coordinate +156833 coordinate +156837 coordinate +156842 coordinate +156848 coordinate +156850 subordinate +156853 coordinate +156855 subordinate +156859 coordinate +156862 subordinate +156865 coordinate +156875 coordinate +156886 coordinate +156908 coordinate +156912 coordinate +156916 coordinate +156935 subordinate +coordinate +156941 coordinate +156953 coordinate +156956 coordinate +156959 coordinate +156962 coordinate +156966 coordinate +156968 subordinate +156977 coordinate +156982 coordinate +156993 coordinate +156996 coordinate +156999 coordinate +157002 coordinate +157006 coordinate +157008 coordinate +157017 subordinate +157030 subordinate +coordinate +subordinate +157034 coordinate +157036 subordinate +157050 subordinate +157055 subordinate +157057 subordinate +157061 subordinate +157080 coordinate +157083 coordinate +157086 coordinate +157098 subordinate +coordinate +157108 subordinate +157112 subordinate +157116 subordinate +157127 coordinate +coordinate +157130 coordinate +157136 coordinate +157141 subordinate +157144 coordinate +coordinate +157149 coordinate +157151 coordinate +coordinate +157156 coordinate +157158 coordinate +coordinate +157165 coordinate +157169 coordinate +subordinate +157189 coordinate +157194 coordinate +157230 subordinate +157243 subordinate +157247 subordinate +157255 coordinate +157259 coordinate +157264 coordinate +157266 coordinate +157273 subordinate +157277 coordinate +157280 coordinate +157286 subordinate +157294 coordinate +157298 coordinate +157304 subordinate +157306 subordinate +157312 subordinate +157316 subordinate +157323 coordinate +coordinate +157327 coordinate +157332 coordinate +157336 subordinate +157345 subordinate +coordinate +157348 coordinate +157356 coordinate +157358 coordinate +subordinate +157378 subordinate +subordinate +157389 subordinate +157402 coordinate +subordinate +157409 coordinate +157419 subordinate +157439 subordinate +subordinate +157446 subordinate +subordinate +157464 subordinate +157472 subordinate +157480 subordinate +157493 subordinate +157499 coordinate +157507 coordinate +157513 coordinate +157517 coordinate +subordinate +157529 coordinate +157537 subordinate +157539 subordinate +157546 coordinate +subordinate +157550 coordinate +157558 subordinate +157564 subordinate +157585 subordinate +157605 coordinate +157607 coordinate +157609 coordinate +157618 subordinate +157625 coordinate +157629 coordinate +157636 subordinate +157643 coordinate +subordinate +157647 coordinate +157657 coordinate +subordinate +157662 subordinate +157665 subordinate +157672 subordinate +157686 subordinate +157695 subordinate +157710 subordinate +157712 coordinate +157716 coordinate +157723 subordinate +157725 subordinate +coordinate +157728 coordinate +157732 coordinate +subordinate +coordinate +157741 coordinate +157747 coordinate +157759 subordinate +157761 subordinate +157769 subordinate +157773 coordinate +157784 coordinate +157790 coordinate +157802 subordinate +coordinate +157806 coordinate +157809 coordinate +157814 coordinate +157819 coordinate +157824 subordinate +157828 coordinate +157832 coordinate +coordinate +subordinate +157839 coordinate +157843 coordinate +subordinate +157847 coordinate +157854 subordinate +157856 subordinate +157867 subordinate +157875 subordinate +coordinate +157878 coordinate +157896 subordinate +coordinate +157903 coordinate +subordinate +coordinate +157908 coordinate +157913 subordinate +coordinate +157916 coordinate +157924 subordinate +157926 coordinate +subordinate +157931 coordinate +157949 subordinate +coordinate +157963 coordinate +157971 subordinate +158001 subordinate +158012 subordinate +158047 subordinate +coordinate +158053 coordinate +158058 coordinate +158066 subordinate +158070 subordinate +158076 subordinate +158078 subordinate +158085 coordinate +158088 coordinate +158097 subordinate +158104 subordinate +158110 subordinate +subordinate +coordinate +158114 coordinate +158128 coordinate +158133 coordinate +158173 subordinate +158176 coordinate +158180 coordinate +158196 subordinate +158205 coordinate +subordinate +coordinate +coordinate +coordinate +158253 subordinate +158258 subordinate +158267 subordinate +158275 subordinate +158284 coordinate +158286 coordinate +158290 subordinate +158306 coordinate +158313 coordinate +158319 subordinate +158327 subordinate +158330 coordinate +158333 subordinate +158343 coordinate +158346 coordinate +158367 subordinate +158371 coordinate +158373 coordinate +158380 subordinate +158384 coordinate +158387 coordinate +158398 coordinate +coordinate +158402 coordinate +158404 coordinate +coordinate +158408 coordinate +158428 subordinate +158446 subordinate +158452 coordinate +158456 coordinate +158462 coordinate +158464 subordinate +158470 coordinate +158478 subordinate +158492 subordinate +158499 subordinate +158507 subordinate +158518 coordinate +158521 coordinate +subordinate +158529 subordinate +158599 subordinate +158604 coordinate +subordinate +coordinate +158610 coordinate +subordinate +coordinate +158617 coordinate +158622 coordinate +158627 coordinate +158650 subordinate +coordinate +158655 coordinate +158659 coordinate +158665 coordinate +158673 coordinate +158677 coordinate +158684 coordinate +158691 coordinate +158721 subordinate +158723 subordinate +158739 subordinate +158745 subordinate +158750 coordinate +158754 coordinate +158758 subordinate +158761 subordinate +subordinate +158767 coordinate +158769 coordinate +coordinate +158772 coordinate +158774 coordinate +158776 coordinate +158780 subordinate +158794 subordinate +158799 subordinate +158804 subordinate +158807 subordinate +158847 coordinate +158854 coordinate +158864 coordinate +158876 coordinate +158890 subordinate +subordinate +158896 subordinate +158910 subordinate +158915 subordinate +158918 coordinate +158920 coordinate +158922 coordinate +158924 coordinate +158928 coordinate +subordinate +158938 coordinate +158942 subordinate +coordinate +158945 coordinate +158967 subordinate +158976 subordinate +158986 subordinate +159003 coordinate +159009 coordinate +159023 subordinate +159038 coordinate +159043 coordinate +159049 subordinate +159061 subordinate +coordinate +159067 coordinate +159075 subordinate +159079 coordinate +159084 coordinate +159088 subordinate +159094 subordinate +159098 subordinate +159100 subordinate +159110 coordinate +159112 coordinate +159116 coordinate +159121 coordinate +159124 subordinate +coordinate +159130 coordinate +159136 coordinate +159140 coordinate +159155 coordinate +159159 coordinate +subordinate +coordinate +159163 coordinate +159168 subordinate +159172 subordinate +subordinate +159183 subordinate +coordinate +159186 coordinate +159191 coordinate +159203 coordinate +subordinate +159207 coordinate +159210 subordinate +159220 coordinate +159227 coordinate +159239 subordinate +subordinate +subordinate +coordinate +159244 coordinate +159259 subordinate +159268 subordinate +159275 subordinate +159278 subordinate +159286 coordinate +159291 subordinate +159295 coordinate +159297 coordinate +159304 subordinate +159315 coordinate +159319 subordinate +159324 subordinate +159328 subordinate +159333 subordinate +159337 coordinate +159339 coordinate +coordinate +159348 subordinate +159370 coordinate +159375 coordinate +159379 coordinate +159381 coordinate +159383 coordinate +159390 coordinate +159392 subordinate +159394 coordinate +159396 subordinate +159398 subordinate +159410 subordinate +159416 subordinate +subordinate +159424 coordinate +159437 subordinate +159442 subordinate +159451 subordinate +159455 coordinate +159458 subordinate +159461 coordinate +159466 subordinate +159472 subordinate +159485 subordinate +159499 subordinate +159503 subordinate +159512 subordinate +coordinate +159519 coordinate +159523 subordinate +159532 coordinate +159538 coordinate +159546 coordinate +159552 coordinate +159588 coordinate +coordinate +159592 coordinate +159596 coordinate +coordinate +159600 coordinate +159613 subordinate +subordinate +159625 coordinate +159632 coordinate +159655 coordinate +159660 coordinate +159673 subordinate +159678 subordinate +159680 coordinate +159687 subordinate +159696 subordinate +159718 coordinate +159720 coordinate +159728 coordinate +159730 subordinate +159739 coordinate +159741 coordinate +159749 coordinate +159751 subordinate +159756 subordinate +159766 subordinate +159771 coordinate +159774 subordinate +159776 coordinate +159788 subordinate +subordinate +coordinate +159792 coordinate +159794 coordinate +159797 coordinate +coordinate +159800 coordinate +159807 coordinate +subordinate +159810 coordinate +159832 subordinate +subordinate +159845 subordinate +subordinate +159849 subordinate +159853 coordinate +159857 coordinate +159863 subordinate +159900 subordinate +159907 coordinate +159910 subordinate +subordinate +subordinate +159915 coordinate +159938 coordinate +coordinate +159943 coordinate +subordinate +159947 coordinate +coordinate +159955 coordinate +coordinate +159962 coordinate +coordinate +159967 coordinate +159972 coordinate +coordinate +159977 coordinate +coordinate +159981 coordinate +159983 coordinate +coordinate +159990 coordinate +159994 coordinate +159996 coordinate +159998 coordinate +160006 subordinate +160014 subordinate +160017 coordinate +subordinate +160025 coordinate +160031 coordinate +160033 coordinate +160035 coordinate +160039 subordinate +160046 subordinate +coordinate +subordinate +160050 coordinate +subordinate +160063 coordinate +coordinate +160066 coordinate +160069 coordinate +coordinate +subordinate +160073 coordinate +160079 coordinate +160085 coordinate +160088 coordinate +160092 coordinate +coordinate +160096 coordinate +160099 coordinate +160102 coordinate +160104 coordinate +160108 coordinate +160113 subordinate +160115 coordinate +160120 subordinate +160127 coordinate +coordinate +160132 subordinate +subordinate +160135 coordinate +160137 coordinate +coordinate +subordinate +160141 coordinate +160152 coordinate +160157 coordinate +160159 coordinate +160162 coordinate +160184 coordinate +160187 coordinate +160192 coordinate +coordinate +160196 coordinate +160212 coordinate +160217 coordinate +160228 coordinate +160241 coordinate +160244 coordinate +160247 coordinate +160249 coordinate +160251 coordinate +160253 coordinate +160255 coordinate +160265 subordinate +160273 coordinate +160281 coordinate +160286 coordinate +160291 subordinate +coordinate +160295 coordinate +160301 subordinate +160328 subordinate +160335 subordinate +160341 subordinate +160352 coordinate +coordinate +160356 coordinate +160362 coordinate +160378 subordinate +160385 coordinate +160391 subordinate +coordinate +160395 coordinate +160397 subordinate +coordinate +160403 coordinate +160417 subordinate +160422 subordinate +160425 coordinate +160434 subordinate +160445 subordinate +160449 subordinate +160468 subordinate +160494 coordinate +160500 coordinate +160509 coordinate +160513 coordinate +160519 subordinate +coordinate +160523 coordinate +160530 coordinate +160537 coordinate +coordinate +160550 coordinate +160572 subordinate +160585 subordinate +160589 coordinate +subordinate +160592 coordinate +160597 coordinate +subordinate +160600 coordinate +160609 subordinate +160614 coordinate +subordinate +160618 subordinate +160620 subordinate +160622 coordinate +160630 subordinate +coordinate +160635 coordinate +160639 coordinate +subordinate +coordinate +subordinate +subordinate +160647 coordinate +160651 coordinate +160661 coordinate +160664 coordinate +coordinate +160671 coordinate +160697 subordinate +160715 subordinate +160723 subordinate +160730 subordinate +subordinate +coordinate +160750 coordinate +160754 coordinate +160784 subordinate +160801 coordinate +160818 coordinate +160822 coordinate +160829 coordinate +160831 subordinate +160834 coordinate +160848 subordinate +160853 subordinate +subordinate +160857 subordinate +160863 coordinate +160874 coordinate +160877 subordinate +160879 subordinate +subordinate +160885 subordinate +160898 coordinate +subordinate +160907 subordinate +160909 coordinate +subordinate +160916 coordinate +160921 coordinate +160924 coordinate +160930 coordinate +subordinate +160936 coordinate +160938 coordinate +subordinate +160944 subordinate +160953 subordinate +160960 coordinate +subordinate +160964 coordinate +coordinate +160968 coordinate +160980 coordinate +160983 coordinate +160989 subordinate +subordinate +160999 subordinate +161001 subordinate +161008 subordinate +161020 coordinate +subordinate +subordinate +161026 subordinate +161033 subordinate +161037 coordinate +coordinate +subordinate +161043 coordinate +161049 coordinate +coordinate +161052 coordinate +161054 coordinate +161058 subordinate +161075 subordinate +coordinate +161081 coordinate +161085 subordinate +161090 subordinate +161095 subordinate +161109 subordinate +161113 subordinate +161122 subordinate +161128 coordinate +161130 subordinate +subordinate +161138 coordinate +161154 subordinate +161159 subordinate +161161 subordinate +161172 coordinate +subordinate +161179 coordinate +161185 coordinate +subordinate +161189 coordinate +subordinate +subordinate +161198 coordinate +161200 subordinate +161227 subordinate +161234 coordinate +coordinate +subordinate +161246 coordinate +161261 subordinate +161281 subordinate +161285 subordinate +161300 coordinate +161306 coordinate +161315 subordinate +161322 subordinate +161347 coordinate +161352 coordinate +161359 subordinate +161364 subordinate +161368 coordinate +161370 coordinate +161372 coordinate +161387 subordinate +161393 subordinate +161398 subordinate +161417 subordinate +161422 subordinate +161436 coordinate +161445 coordinate +161468 coordinate +161473 coordinate +161481 subordinate +161492 subordinate +161511 subordinate +161518 subordinate +161523 subordinate +161527 subordinate +161538 subordinate +161545 subordinate +161547 subordinate +coordinate +161553 coordinate +161562 subordinate +161577 subordinate +161588 subordinate +161600 coordinate +subordinate +161608 coordinate +subordinate +161615 coordinate +coordinate +161618 subordinate +161624 coordinate +161629 coordinate +subordinate +subordinate +161633 subordinate +subordinate +161650 subordinate +161654 coordinate +161659 subordinate +coordinate +161663 coordinate +subordinate +161667 subordinate +161679 subordinate +subordinate +161698 coordinate +subordinate +161701 subordinate +161710 coordinate +subordinate +161713 coordinate +coordinate +161717 coordinate +161723 coordinate +coordinate +161726 coordinate +161728 coordinate +161732 subordinate +161748 coordinate +subordinate +161754 coordinate +161761 subordinate +161765 subordinate +subordinate +161773 subordinate +161788 subordinate +subordinate +161794 coordinate +subordinate +161800 coordinate +161806 coordinate +161813 subordinate +161819 subordinate +161824 subordinate +161827 subordinate +161851 subordinate +161862 coordinate +coordinate +161869 coordinate +161872 coordinate +coordinate +161879 coordinate +161885 coordinate +161888 coordinate +161899 coordinate +subordinate +161905 coordinate +161916 subordinate +161927 subordinate +161936 coordinate +161940 coordinate +161942 coordinate +161951 subordinate +161955 subordinate +161969 subordinate +161976 subordinate +coordinate +161981 coordinate +161993 coordinate +161995 coordinate +162002 coordinate +162006 coordinate +162013 coordinate +coordinate +subordinate +162023 coordinate +subordinate +162049 subordinate +coordinate +162053 coordinate +162060 coordinate +162062 coordinate +162068 subordinate +162070 subordinate +162080 subordinate +162090 subordinate +coordinate +162094 coordinate +162104 subordinate +subordinate +162108 coordinate +162110 coordinate +162114 coordinate +162118 coordinate +subordinate +162121 subordinate +162125 coordinate +subordinate +162136 subordinate +coordinate +162141 coordinate +162145 coordinate +162152 coordinate +162156 subordinate +162166 coordinate +162182 subordinate +162184 subordinate +162194 coordinate +162206 coordinate +162213 coordinate +162216 coordinate +coordinate +162223 coordinate +162233 subordinate +162238 subordinate +162244 subordinate +162247 subordinate +162251 coordinate +162253 coordinate +162255 coordinate +162278 coordinate +subordinate +162284 coordinate +162288 coordinate +162292 subordinate +162294 coordinate +162296 coordinate +162300 subordinate +162304 subordinate +162319 subordinate +162334 subordinate +162338 subordinate +162341 coordinate +coordinate +162344 coordinate +162350 coordinate +162352 coordinate +coordinate +coordinate +162356 subordinate +162361 subordinate +162378 subordinate +coordinate +162388 subordinate +162390 coordinate +162392 coordinate +162395 coordinate +162399 coordinate +162405 coordinate +162409 coordinate +subordinate +162414 subordinate +162422 subordinate +162433 coordinate +162436 coordinate +162449 subordinate +162454 subordinate +162468 coordinate +162470 subordinate +162480 coordinate +162482 coordinate +162492 coordinate +162496 subordinate +162500 coordinate +162502 coordinate +162514 coordinate +162572 subordinate +162574 coordinate +subordinate +162578 coordinate +162581 subordinate +162584 coordinate +subordinate +162589 subordinate +162610 coordinate +subordinate +162621 subordinate +coordinate +162624 coordinate +162648 subordinate +162668 subordinate +162670 coordinate +162676 coordinate +162689 coordinate +subordinate +162693 coordinate +162703 subordinate +162710 coordinate +162712 coordinate +162716 coordinate +subordinate +162723 coordinate +subordinate +162737 subordinate +162740 coordinate +162742 coordinate +162746 coordinate +subordinate +162751 coordinate +subordinate +162786 subordinate +coordinate +162791 coordinate +162795 coordinate +162801 coordinate +subordinate +162809 subordinate +subordinate +162815 coordinate +162818 coordinate +162833 subordinate +162842 subordinate +162855 subordinate +162864 subordinate +162871 subordinate +162881 subordinate +162888 subordinate +162900 coordinate +subordinate +162908 coordinate +subordinate +162921 subordinate +162952 subordinate +162956 coordinate +162961 coordinate +162971 coordinate +162983 subordinate +162991 subordinate +163000 subordinate +163003 subordinate +coordinate +163012 subordinate +163014 coordinate +163018 subordinate +163022 coordinate +163025 coordinate +163029 coordinate +subordinate +163036 coordinate +163041 coordinate +subordinate +163052 coordinate +subordinate +163058 subordinate +163062 subordinate +163067 coordinate +163070 coordinate +163074 coordinate +163076 coordinate +163078 subordinate +163081 subordinate +163087 coordinate +163090 subordinate +163094 coordinate +subordinate +163103 subordinate +163114 subordinate +163118 subordinate +163123 subordinate +163127 subordinate +163132 subordinate +163144 subordinate +163156 subordinate +163161 coordinate +163165 coordinate +163176 coordinate +163179 coordinate +163183 subordinate +coordinate +163189 subordinate +163197 subordinate +163211 coordinate +coordinate +163219 coordinate +163223 coordinate +163230 coordinate +coordinate +163236 subordinate +163242 subordinate +coordinate +163246 coordinate +163251 coordinate +163255 subordinate +163259 coordinate +163266 subordinate +163268 coordinate +163274 coordinate +163280 subordinate +163288 subordinate +163293 coordinate +163296 coordinate +163300 coordinate +163306 coordinate +163312 coordinate +163323 subordinate +163328 subordinate +coordinate +163332 coordinate +163343 coordinate +163346 coordinate +subordinate +163350 subordinate +163358 subordinate +163363 subordinate +163369 subordinate +163381 coordinate +163383 subordinate +subordinate +163400 coordinate +coordinate +coordinate +coordinate +coordinate +coordinate +163415 subordinate +163428 subordinate +subordinate +163431 coordinate +coordinate +163435 coordinate +163440 coordinate +163442 coordinate +163445 coordinate +163452 subordinate +163454 subordinate +163456 subordinate +163477 coordinate +subordinate +163482 coordinate +163490 subordinate +163495 subordinate +163499 subordinate +163502 coordinate +163505 coordinate +163509 subordinate +163513 coordinate +163515 coordinate +163517 subordinate +163532 subordinate +subordinate +163543 subordinate +163551 coordinate +163553 subordinate +163565 coordinate +163570 coordinate +163573 coordinate +163584 subordinate +163591 subordinate +163602 subordinate +163606 subordinate +163613 coordinate +163618 coordinate +subordinate +163627 subordinate +163635 coordinate +subordinate +163639 subordinate +163648 subordinate +163666 coordinate +163669 coordinate +163671 subordinate +163679 subordinate +163687 subordinate +163700 subordinate +163705 coordinate +163710 coordinate +163723 subordinate +163732 coordinate +163735 coordinate +163739 subordinate +163743 subordinate +163748 subordinate +subordinate +163758 subordinate +163761 coordinate +163764 coordinate +163769 coordinate +subordinate +subordinate +163783 coordinate +coordinate +coordinate +163793 coordinate +coordinate +163797 coordinate +163802 coordinate +163804 coordinate +163806 coordinate +163808 coordinate +163820 subordinate +coordinate +163823 coordinate +163838 subordinate +coordinate +163842 coordinate +163851 subordinate +163854 subordinate +163856 subordinate +163860 subordinate +163868 coordinate +163872 coordinate +coordinate +163881 subordinate +163883 coordinate +163890 subordinate +163899 subordinate +163903 coordinate +163908 coordinate +163912 coordinate +163916 coordinate +subordinate +163919 subordinate +163923 coordinate +subordinate +163926 subordinate +163929 subordinate +163933 subordinate +coordinate +163936 coordinate +coordinate +163939 coordinate +163956 subordinate +163972 subordinate +163984 coordinate +subordinate +163990 subordinate +164001 coordinate +subordinate +164007 coordinate +coordinate +164010 coordinate +164015 subordinate +coordinate +164019 coordinate +164030 coordinate +164037 coordinate +subordinate +coordinate +164041 coordinate +164044 subordinate +164049 subordinate +164063 subordinate +164077 subordinate +164087 coordinate +164089 subordinate +coordinate +164092 coordinate +164095 subordinate +164102 coordinate +164106 coordinate +164111 coordinate +164119 coordinate +coordinate +164124 coordinate +164144 subordinate +164177 coordinate +164181 coordinate +164190 coordinate +164210 coordinate +164215 coordinate +164221 coordinate +164225 coordinate +164230 subordinate +164240 coordinate +164265 subordinate +164269 coordinate +subordinate +164275 coordinate +164279 subordinate +164285 coordinate +coordinate +subordinate +164297 subordinate +164311 subordinate +164319 subordinate +164326 subordinate +coordinate +164329 coordinate +164331 coordinate +164334 coordinate +164340 coordinate +164342 coordinate +164350 subordinate +164354 subordinate +164362 subordinate +164371 coordinate +164375 coordinate +164381 subordinate +164387 subordinate +164398 coordinate +164401 coordinate +164409 coordinate +164419 coordinate +164428 subordinate +164434 subordinate +164452 subordinate +164464 subordinate +164468 coordinate +164472 subordinate +164478 subordinate +164481 subordinate +164512 coordinate +coordinate +coordinate +164519 coordinate +164521 coordinate +164527 coordinate +subordinate +164537 coordinate +164539 coordinate +164541 coordinate +164544 coordinate +164546 coordinate +164548 coordinate +164553 subordinate +164561 subordinate +164573 coordinate +164575 coordinate +164577 coordinate +164580 coordinate +164586 coordinate +164601 subordinate +164610 coordinate +164612 coordinate +164618 coordinate +subordinate +164623 coordinate +164628 subordinate +164640 coordinate +164664 coordinate +164667 coordinate +164675 coordinate +164681 coordinate +164683 subordinate +164689 coordinate +164699 subordinate +164708 subordinate +164718 subordinate +subordinate +164722 subordinate +164727 subordinate +164743 coordinate +164746 subordinate +164752 coordinate +subordinate +164780 subordinate +164783 coordinate +164788 coordinate +164796 subordinate +164804 coordinate +164807 coordinate +subordinate +164814 coordinate +164823 coordinate +164826 coordinate +164832 coordinate +164838 coordinate +subordinate +164848 subordinate +164853 subordinate +164861 subordinate +164866 subordinate +subordinate +164871 subordinate +164878 subordinate +164888 subordinate +164907 coordinate +164909 coordinate +164912 subordinate +164915 subordinate +164930 coordinate +164932 coordinate +164941 subordinate +164948 coordinate +subordinate +164951 coordinate +164956 subordinate +164985 coordinate +164988 coordinate +164995 coordinate +subordinate +164998 coordinate +subordinate +165002 coordinate +165007 subordinate +subordinate +165010 coordinate +165016 subordinate +subordinate +165019 coordinate +165025 coordinate +165036 coordinate +165038 subordinate +165040 coordinate +subordinate +165070 subordinate +165074 subordinate +165077 subordinate +coordinate +165081 coordinate +165088 coordinate +165095 coordinate +165127 coordinate +165130 coordinate +165134 subordinate +165155 subordinate +165196 subordinate +165199 coordinate +165207 coordinate +165240 subordinate +165251 subordinate +165257 coordinate +subordinate +165260 coordinate +165264 subordinate +165285 coordinate +165287 subordinate +165292 coordinate +165299 coordinate +165301 coordinate +165305 coordinate +coordinate +165309 coordinate +165315 coordinate +165318 subordinate +165332 coordinate +coordinate +165337 coordinate +165340 coordinate +165357 subordinate +165364 subordinate +coordinate +165369 coordinate +165378 subordinate +165386 subordinate +165399 coordinate +subordinate +165402 coordinate +subordinate +165413 subordinate +165420 subordinate +coordinate +165423 coordinate +subordinate +165434 subordinate +coordinate +165440 subordinate +165444 subordinate +165456 coordinate +subordinate +165462 coordinate +subordinate +165476 coordinate +165479 coordinate +165488 coordinate +subordinate +165494 coordinate +subordinate +165507 coordinate +165510 coordinate +165568 subordinate +coordinate +165577 coordinate +165591 subordinate +165600 coordinate +165603 coordinate +165612 subordinate +coordinate +165621 coordinate +165634 subordinate +165646 subordinate +165649 subordinate +165652 coordinate +165654 coordinate +165662 subordinate +165664 coordinate +165667 coordinate +165678 subordinate +coordinate +coordinate +165685 coordinate +165693 subordinate +165740 coordinate +165745 coordinate +coordinate +165752 coordinate +165757 subordinate +165800 coordinate +165803 coordinate +165808 coordinate +165819 coordinate +165832 subordinate +165835 subordinate +165843 coordinate +165845 subordinate +165849 coordinate +165852 subordinate +165859 subordinate +165886 coordinate +165888 coordinate +165900 subordinate +165909 coordinate +165917 coordinate +165921 subordinate +165932 coordinate +subordinate +165935 coordinate +165940 coordinate +coordinate +165944 coordinate +165947 coordinate +165958 coordinate +coordinate +165962 coordinate +165964 coordinate +165975 coordinate +165977 coordinate +165979 coordinate +165983 coordinate +165986 coordinate +166007 coordinate +166019 coordinate +166026 subordinate +subordinate +166053 subordinate +166063 subordinate +166083 subordinate +166094 coordinate +166101 coordinate +166107 subordinate +166124 coordinate +166127 coordinate +166132 coordinate +166136 coordinate +166140 subordinate +subordinate +subordinate +subordinate +166166 subordinate +166169 subordinate +coordinate +166174 coordinate +166189 coordinate +166197 coordinate +166202 coordinate +166207 coordinate +166214 coordinate +166222 coordinate +166228 coordinate +subordinate +166244 coordinate +166250 coordinate +166270 subordinate +coordinate +166275 coordinate +166283 subordinate +subordinate +166298 subordinate +166303 coordinate +166309 coordinate +166330 subordinate +166336 subordinate +166349 subordinate +coordinate +166365 subordinate +166372 subordinate +coordinate +166376 coordinate +166389 coordinate +166391 coordinate +166397 coordinate +166399 coordinate +166422 coordinate +166425 coordinate +166427 subordinate +166436 subordinate +166465 subordinate +subordinate +166483 subordinate +166495 coordinate +coordinate +subordinate +166501 coordinate +166508 coordinate +166522 coordinate +coordinate +166525 coordinate +166546 subordinate +166555 coordinate +166559 coordinate +166564 subordinate +166582 coordinate +166584 coordinate +166597 coordinate +166602 coordinate +166616 subordinate +166629 coordinate +166633 coordinate +166637 coordinate +166639 subordinate +166643 coordinate +coordinate +166650 coordinate +166666 subordinate +166676 subordinate +166684 subordinate +coordinate +coordinate +coordinate +subordinate +166692 coordinate +166697 coordinate +166700 coordinate +166703 coordinate +166705 coordinate +166711 coordinate +166714 coordinate +subordinate +166722 coordinate +166733 coordinate +166737 subordinate +166739 coordinate +166747 coordinate +166755 coordinate +166760 subordinate +166798 subordinate +166835 subordinate +166849 subordinate +coordinate +subordinate +166853 coordinate +subordinate +166856 coordinate +subordinate +subordinate +166868 subordinate +166879 coordinate +subordinate +166882 coordinate +subordinate +166885 subordinate +coordinate +subordinate +166892 coordinate +166894 subordinate +166900 coordinate +166904 coordinate +166912 coordinate +coordinate +166918 coordinate +166925 subordinate +166948 subordinate +coordinate +166957 coordinate +166967 coordinate +166975 subordinate +coordinate +166982 coordinate +166984 coordinate +166989 coordinate +167009 subordinate +167015 coordinate +coordinate +167018 coordinate +subordinate +coordinate +coordinate +167023 coordinate +coordinate +coordinate +167027 coordinate +coordinate +coordinate +167031 coordinate +coordinate +coordinate +167035 coordinate +coordinate +coordinate +167040 coordinate +167048 coordinate +167050 coordinate +coordinate +subordinate +167054 coordinate +167056 coordinate +coordinate +167059 coordinate +167061 coordinate +167063 coordinate +coordinate +subordinate +167067 coordinate +167069 coordinate +coordinate +167072 coordinate +167074 coordinate +167076 coordinate +subordinate +subordinate +subordinate +167083 coordinate +167088 subordinate +167094 subordinate +167124 coordinate +coordinate +167127 coordinate +subordinate +coordinate +coordinate +167132 coordinate +coordinate +coordinate +167136 coordinate +coordinate +coordinate +167140 coordinate +coordinate +coordinate +167146 coordinate +167154 coordinate +subordinate +subordinate +subordinate +167159 subordinate +167166 coordinate +167174 subordinate +167181 coordinate +167185 coordinate +167195 subordinate +167206 coordinate +167211 coordinate +167220 coordinate +167237 subordinate +coordinate +167241 coordinate +167250 subordinate +167265 coordinate +subordinate +167270 coordinate +167278 subordinate +167288 subordinate +coordinate +167291 coordinate +167295 subordinate +167307 coordinate +167311 coordinate +167315 subordinate +167329 subordinate +167337 subordinate +167348 subordinate +167352 subordinate +167363 subordinate +167376 subordinate +167382 coordinate +167404 coordinate +167408 subordinate +167411 coordinate +167435 subordinate +subordinate +167444 subordinate +167456 coordinate +167462 subordinate +167465 coordinate +167477 subordinate +167483 subordinate +167498 coordinate +167500 subordinate +coordinate +167503 coordinate +167506 subordinate +167518 subordinate +coordinate +167521 coordinate +167527 subordinate +167554 subordinate +167564 subordinate +167582 coordinate +167585 coordinate +167590 coordinate +167599 subordinate +167603 subordinate +167616 subordinate +subordinate +167623 subordinate +subordinate +167635 coordinate +167640 subordinate +167646 subordinate +subordinate +167651 subordinate +167658 subordinate +coordinate +167661 coordinate +167670 coordinate +167672 coordinate +167677 subordinate +167688 subordinate +167693 coordinate +coordinate +subordinate +coordinate +subordinate +167701 coordinate +coordinate +167706 coordinate +subordinate +167712 subordinate +167718 coordinate +167720 coordinate +167722 subordinate +167727 coordinate +167730 coordinate +167734 subordinate +167742 subordinate +167744 subordinate +167752 subordinate +subordinate +167755 subordinate +167762 subordinate +subordinate +167765 subordinate +167770 coordinate +167778 coordinate +167780 coordinate +167782 coordinate +167785 coordinate +167802 coordinate +167807 coordinate +167829 subordinate +167835 subordinate +167840 coordinate +167850 coordinate +subordinate +167856 coordinate +167860 coordinate +167864 subordinate +167869 coordinate +subordinate +167887 subordinate +167897 coordinate +subordinate +167902 coordinate +167912 subordinate +167921 coordinate +167924 subordinate +167930 subordinate +167932 coordinate +167936 subordinate +167938 coordinate +167940 coordinate +167944 subordinate +167952 subordinate +167971 coordinate +167979 coordinate +subordinate +167983 subordinate +167997 subordinate +167999 coordinate +168006 subordinate +168009 subordinate +coordinate +168015 coordinate +168021 subordinate +168042 subordinate +168052 coordinate +168057 subordinate +coordinate +168066 coordinate +168087 subordinate +168091 coordinate +coordinate +168097 coordinate +168099 coordinate +168129 subordinate +168137 coordinate +168156 subordinate +168165 subordinate +168171 subordinate +coordinate +168191 subordinate +subordinate +168196 subordinate +168211 subordinate +subordinate +168216 coordinate +subordinate +168219 coordinate +168230 subordinate +168238 subordinate +168250 coordinate +subordinate +168256 coordinate +subordinate +168262 subordinate +168266 subordinate +168270 subordinate +168275 subordinate +168301 coordinate +168314 coordinate +168321 subordinate +168356 subordinate +168364 subordinate +168371 subordinate +168381 subordinate +168390 subordinate +168421 subordinate +168434 coordinate +168437 coordinate +168442 subordinate +168445 subordinate +168483 coordinate +168485 coordinate +subordinate +168500 subordinate +168514 coordinate +168518 subordinate +168521 subordinate +168527 subordinate +168537 coordinate +subordinate +168541 coordinate +subordinate +168548 coordinate +168553 coordinate +subordinate +168562 coordinate +subordinate +168567 coordinate +168574 coordinate +168576 subordinate +168578 coordinate +168581 coordinate +168585 coordinate +168592 subordinate +168595 subordinate +168599 subordinate +168605 subordinate +168608 subordinate +168613 subordinate +168615 subordinate +168620 subordinate +subordinate +168625 coordinate +subordinate +168629 subordinate +168631 coordinate +subordinate +168653 coordinate +168656 coordinate +168663 subordinate +coordinate +168673 coordinate +168676 coordinate +168679 coordinate +168682 subordinate +168686 coordinate +168692 subordinate +168700 subordinate +168703 coordinate +168710 coordinate +168719 subordinate +168762 subordinate +168776 subordinate +168784 subordinate +coordinate +168787 coordinate +168789 coordinate +168791 coordinate +168802 subordinate +168807 subordinate +168813 coordinate +168822 coordinate +168825 coordinate +168828 coordinate +168831 coordinate +coordinate +168837 subordinate +168839 coordinate +subordinate +168850 coordinate +168861 subordinate +168877 subordinate +168883 subordinate +168918 subordinate +168926 subordinate +168930 coordinate +subordinate +168937 coordinate +168947 coordinate +subordinate +168985 subordinate +168992 subordinate +168998 coordinate +coordinate +subordinate +169009 coordinate +169023 subordinate +169027 subordinate +169029 subordinate +169047 subordinate +169056 coordinate +169058 subordinate +coordinate +169062 coordinate +169065 coordinate +169070 coordinate +169075 coordinate +169082 coordinate +169089 coordinate +169094 subordinate +169110 subordinate +169113 subordinate +169124 subordinate +169129 coordinate +169143 subordinate +169150 subordinate +169161 coordinate +subordinate +169166 coordinate +169190 subordinate +169200 subordinate +coordinate +169205 coordinate +169215 subordinate +169221 subordinate +169225 coordinate +169227 coordinate +169232 subordinate +169234 subordinate +169247 coordinate +coordinate +169259 coordinate +subordinate +169262 coordinate +169266 subordinate +169280 subordinate +169295 subordinate +169351 subordinate +169359 coordinate +169369 coordinate +169374 subordinate +169381 subordinate +coordinate +coordinate +169386 coordinate +169392 coordinate +169405 subordinate +subordinate +169413 coordinate +169415 coordinate +169425 coordinate +169430 coordinate +169437 subordinate +169440 subordinate +coordinate +169444 coordinate +169470 coordinate +169474 subordinate +169478 coordinate +coordinate +169483 coordinate +169495 subordinate +coordinate +169505 coordinate +169508 coordinate +169513 coordinate +169515 coordinate +169521 subordinate +169526 subordinate +169542 coordinate +169545 coordinate +subordinate +169551 subordinate +169556 coordinate +subordinate +169568 subordinate +169573 coordinate +169577 subordinate +169594 subordinate +169607 coordinate +subordinate +169610 coordinate +169612 subordinate +169617 coordinate +169625 coordinate +169635 subordinate +169648 coordinate +169650 coordinate +169658 subordinate +coordinate +169661 coordinate +169667 subordinate +subordinate +169678 coordinate +169684 coordinate +169698 subordinate +169712 coordinate +169715 subordinate +169717 coordinate +169722 subordinate +subordinate +169728 coordinate +169731 coordinate +169759 coordinate +169761 subordinate +169764 coordinate +coordinate +169769 subordinate +169772 subordinate +169776 coordinate +169778 subordinate +169780 coordinate +169788 coordinate +169794 coordinate +coordinate +169809 subordinate +169811 subordinate +169814 subordinate +169819 subordinate +coordinate +169828 coordinate +169834 subordinate +coordinate +169837 coordinate +169842 subordinate +subordinate +169847 coordinate +subordinate +subordinate +169860 coordinate +169864 coordinate +169868 coordinate +subordinate +169876 coordinate +169879 coordinate +169882 coordinate +169886 subordinate +169892 coordinate +subordinate +subordinate +coordinate +169897 coordinate +169899 subordinate +subordinate +subordinate +169904 coordinate +169924 coordinate +subordinate +subordinate +169932 coordinate +169937 subordinate +169940 subordinate +169945 coordinate +subordinate +subordinate +169954 coordinate +subordinate +169964 subordinate +169977 subordinate +coordinate +169989 subordinate +169991 subordinate +170012 coordinate +170021 coordinate +170023 coordinate +coordinate +170028 coordinate +170030 coordinate +170037 subordinate +170047 coordinate +170051 coordinate +170058 coordinate +170060 coordinate +subordinate +170064 subordinate +subordinate +coordinate +170068 coordinate +170081 coordinate +170086 coordinate +170090 coordinate +subordinate +subordinate +170104 subordinate +170108 coordinate +subordinate +170114 coordinate +170125 subordinate +coordinate +170128 coordinate +170153 subordinate +170156 coordinate +170160 coordinate +170165 coordinate +subordinate +coordinate +170180 coordinate +170184 coordinate +170194 coordinate +170207 subordinate +170210 subordinate +170217 subordinate +170223 subordinate +170227 coordinate +170241 subordinate +coordinate +170250 coordinate +170255 coordinate +coordinate +170263 subordinate +coordinate +170268 coordinate +coordinate +170272 coordinate +170275 coordinate +170282 coordinate +subordinate +170289 coordinate +170292 subordinate +subordinate +170301 subordinate +170309 subordinate +coordinate +170312 coordinate +170320 coordinate +170328 coordinate +170335 subordinate +subordinate +170339 coordinate +170348 coordinate +170353 coordinate +170374 subordinate +subordinate +170386 subordinate +170404 subordinate +170406 coordinate +170408 coordinate +170410 coordinate +170412 coordinate +170419 subordinate +170421 subordinate +170433 coordinate +170435 coordinate +170441 subordinate +170447 subordinate +170483 subordinate +subordinate +170497 subordinate +170501 subordinate +170504 subordinate +subordinate +170509 coordinate +170513 subordinate +subordinate +170516 coordinate +170527 subordinate +170531 coordinate +coordinate +170536 coordinate +subordinate +170539 coordinate +170546 coordinate +subordinate +170550 coordinate +subordinate +subordinate +coordinate +170555 coordinate +subordinate +170561 coordinate +170564 coordinate +coordinate +170568 coordinate +coordinate +170580 coordinate +170612 subordinate +subordinate +subordinate +170618 subordinate +170621 subordinate +170635 coordinate +170638 coordinate +170648 subordinate +170651 subordinate +170656 subordinate +170658 subordinate +170665 subordinate +170669 subordinate +170674 subordinate +coordinate +170679 coordinate +coordinate +subordinate +coordinate +170687 subordinate +subordinate +170696 subordinate +170699 coordinate +170722 coordinate +subordinate +170732 coordinate +170740 coordinate +170748 coordinate +subordinate +170751 subordinate +170755 coordinate +170772 subordinate +170782 subordinate +170810 subordinate +170816 coordinate +170819 subordinate +subordinate +subordinate +170826 coordinate +170837 coordinate +170849 subordinate +170858 coordinate +coordinate +170863 coordinate +coordinate +170867 coordinate +170869 coordinate +coordinate +coordinate +170878 coordinate +170884 coordinate +170887 subordinate +170890 coordinate +170895 coordinate +coordinate +170900 coordinate +coordinate +coordinate +170905 coordinate +170907 coordinate +170909 coordinate +coordinate +170916 coordinate +coordinate +subordinate +170922 coordinate +170933 subordinate +subordinate +170939 subordinate +170951 coordinate +170958 coordinate +170965 subordinate +coordinate +coordinate +subordinate +170970 coordinate +170972 coordinate +coordinate +subordinate +170976 coordinate +170978 coordinate +170980 coordinate +170985 coordinate +170989 coordinate +171000 coordinate +171008 coordinate +171010 subordinate +171012 coordinate +171015 coordinate +171030 coordinate +subordinate +subordinate +171036 coordinate +coordinate +171040 coordinate +171057 coordinate +171062 coordinate +coordinate +171077 subordinate +171080 coordinate +171092 coordinate +171095 coordinate +171097 coordinate +171112 subordinate +coordinate +171117 coordinate +171123 subordinate +171132 subordinate +171135 subordinate +171137 coordinate +coordinate +subordinate +171144 subordinate +subordinate +171155 coordinate +subordinate +171160 coordinate +171167 coordinate +171171 subordinate +171182 subordinate +coordinate +171188 coordinate +coordinate +171195 coordinate +171201 subordinate +171206 coordinate +coordinate +coordinate +171215 subordinate +171219 subordinate +171225 coordinate +171230 coordinate +171238 coordinate +subordinate +subordinate +171252 subordinate +coordinate +171255 coordinate +171259 coordinate +171261 subordinate +subordinate +subordinate +171277 subordinate +subordinate +171282 coordinate +171285 coordinate +171304 subordinate +171307 subordinate +171311 coordinate +171317 coordinate +171321 coordinate +171325 subordinate +subordinate +171333 subordinate +171339 coordinate +171345 subordinate +171350 coordinate +subordinate +171362 coordinate +171365 coordinate +171376 coordinate +171384 subordinate +171421 coordinate +171423 subordinate +171427 coordinate +171431 coordinate +coordinate +171436 coordinate +171439 coordinate +subordinate +171444 coordinate +171456 coordinate +171460 coordinate +coordinate +subordinate +171466 coordinate +171468 coordinate +171470 subordinate +171505 subordinate +171510 subordinate +171521 subordinate +171531 subordinate +171539 coordinate +subordinate +171547 coordinate +coordinate +171556 coordinate +171562 coordinate +171566 coordinate +171576 subordinate +171584 coordinate +171588 coordinate +coordinate +subordinate +171597 subordinate +coordinate +171600 coordinate +171602 coordinate +171613 coordinate +171619 subordinate +subordinate +171634 subordinate +171639 coordinate +171642 coordinate +171649 coordinate +subordinate +coordinate +171654 coordinate +171658 coordinate +coordinate +171661 coordinate +subordinate +171665 subordinate +171668 coordinate +171672 coordinate +171683 coordinate +171689 coordinate +171693 subordinate +171695 coordinate +coordinate +subordinate +171702 coordinate +171710 subordinate +171713 subordinate +coordinate +171716 coordinate +171724 coordinate +171727 coordinate +171732 subordinate +coordinate +171738 coordinate +171742 coordinate +171747 coordinate +coordinate +171750 coordinate +171753 subordinate +171757 subordinate +171768 subordinate +171775 coordinate +171791 subordinate +171793 subordinate +171797 subordinate +171809 coordinate +subordinate +171818 subordinate +171824 coordinate +171826 subordinate +171829 subordinate +subordinate +171832 coordinate +171834 coordinate +171846 coordinate +171849 coordinate +171870 subordinate +subordinate +171880 subordinate +171883 subordinate +171894 coordinate +171900 coordinate +coordinate +171904 subordinate +171909 subordinate +171915 coordinate +171918 coordinate +171925 coordinate +subordinate +171937 coordinate +subordinate +171943 subordinate +171959 coordinate +171962 coordinate +171964 subordinate +171979 subordinate +171983 coordinate +coordinate +171986 coordinate +171991 coordinate +171999 subordinate +172006 subordinate +172009 coordinate +172011 coordinate +172017 coordinate +172056 subordinate +172072 subordinate +172075 subordinate +subordinate +172089 subordinate +172093 coordinate +172096 coordinate +subordinate +172100 coordinate +172113 subordinate +172115 coordinate +coordinate +coordinate +coordinate +172122 coordinate +coordinate +172125 coordinate +172131 coordinate +172137 subordinate +172140 coordinate +172143 coordinate +172146 coordinate +172148 subordinate +172161 subordinate +172163 subordinate +172165 coordinate +172168 coordinate +coordinate +172172 coordinate +172180 subordinate +172187 coordinate +172193 coordinate +172208 subordinate +172214 subordinate +172223 coordinate +172226 subordinate +172239 subordinate +172247 subordinate +172255 coordinate +coordinate +172259 coordinate +subordinate +172262 coordinate +172266 coordinate +coordinate +172270 subordinate +172275 coordinate +172277 coordinate +coordinate +subordinate +172281 coordinate +172289 subordinate +172302 coordinate +coordinate +172309 coordinate +172321 coordinate +subordinate +172325 coordinate +172332 subordinate +172341 subordinate +172357 subordinate +172373 subordinate +172381 subordinate +172385 subordinate +172387 subordinate +172393 coordinate +subordinate +172398 coordinate +coordinate +coordinate +172405 coordinate +172408 coordinate +172415 coordinate +subordinate +172420 coordinate +172424 coordinate +172429 coordinate +172434 coordinate +172436 subordinate +coordinate +172439 coordinate +172445 coordinate +172451 coordinate +172453 subordinate +coordinate +172462 coordinate +subordinate +172475 coordinate +coordinate +subordinate +172479 coordinate +172481 coordinate +coordinate +172487 coordinate +172491 coordinate +subordinate +172495 coordinate +172499 subordinate +172502 subordinate +172504 coordinate +subordinate +172511 subordinate +172516 coordinate +172519 coordinate +172523 subordinate +subordinate +172530 subordinate +172534 subordinate +172536 subordinate +172541 coordinate +subordinate +172546 coordinate +subordinate +172559 subordinate +172567 subordinate +172583 coordinate +coordinate +subordinate +172592 subordinate +172596 coordinate +172599 coordinate +172603 subordinate +172605 coordinate +172611 coordinate +172613 coordinate +172617 coordinate +172622 coordinate +172635 subordinate +coordinate +172647 subordinate +172652 subordinate +172655 subordinate +172661 coordinate +172667 coordinate +172673 subordinate +172675 subordinate +172680 subordinate +172687 subordinate +172693 subordinate +172699 subordinate +subordinate +172706 coordinate +172708 subordinate +coordinate +172711 coordinate +172715 coordinate +172727 coordinate +172732 coordinate +172741 subordinate +coordinate +172745 coordinate +172752 coordinate +subordinate +172758 coordinate +172766 coordinate +subordinate +172772 coordinate +subordinate +172778 subordinate +subordinate +172782 subordinate +172786 coordinate +subordinate +172789 subordinate +172811 subordinate +172822 subordinate +coordinate +172839 coordinate +172845 subordinate +subordinate +172848 subordinate +172853 coordinate +172855 subordinate +subordinate +172860 subordinate +172873 coordinate +172882 coordinate +172896 coordinate +coordinate +172902 coordinate +172907 coordinate +subordinate +172912 subordinate +172927 subordinate +172934 coordinate +172942 coordinate +172960 subordinate +172964 subordinate +172969 subordinate +172985 subordinate +172988 coordinate +172992 coordinate +172997 subordinate +173000 subordinate +173002 coordinate +173014 subordinate +173038 subordinate +173040 subordinate +coordinate +173045 coordinate +coordinate +173050 coordinate +173083 coordinate +173088 coordinate +173093 subordinate +173100 coordinate +subordinate +173103 subordinate +173105 coordinate +subordinate +173110 subordinate +173118 subordinate +173143 subordinate +173146 subordinate +subordinate +coordinate +173153 coordinate +173158 coordinate +173188 subordinate +173192 subordinate +coordinate +173198 coordinate +173203 subordinate +173219 coordinate +173230 coordinate +subordinate +173241 coordinate +subordinate +173246 coordinate +coordinate +subordinate +173255 subordinate +173259 coordinate +173263 coordinate +coordinate +173270 coordinate +173288 subordinate +coordinate +173292 coordinate +173296 coordinate +173302 coordinate +subordinate +173305 subordinate +173312 subordinate +coordinate +173316 coordinate +subordinate +173322 subordinate +173340 subordinate +173355 subordinate +173361 coordinate +coordinate +subordinate +173366 subordinate +173368 coordinate +173373 subordinate +173375 coordinate +173384 subordinate +subordinate +173390 coordinate +coordinate +173393 coordinate +173395 coordinate +173409 subordinate +173421 coordinate +173424 coordinate +subordinate +subordinate +173430 subordinate +173434 subordinate +173445 subordinate +173451 subordinate +subordinate +173458 coordinate +subordinate +173463 subordinate +173491 subordinate +173501 subordinate +173506 coordinate +subordinate +173509 coordinate +subordinate +173516 subordinate +173530 subordinate +173552 coordinate +173560 coordinate +subordinate +173569 subordinate +173573 subordinate +173580 subordinate +173585 subordinate +subordinate +173590 coordinate +173596 coordinate +coordinate +173599 coordinate +173601 coordinate +173633 subordinate +173641 coordinate +173645 coordinate +coordinate +173658 subordinate +173661 subordinate +173677 subordinate +coordinate +173683 coordinate +coordinate +173693 coordinate +173695 coordinate +173706 subordinate +subordinate +173711 coordinate +subordinate +coordinate +173715 coordinate +173725 subordinate +coordinate +173729 coordinate +173735 subordinate +173742 subordinate +subordinate +173746 coordinate +173748 coordinate +173752 coordinate +173756 subordinate +173758 subordinate +173764 subordinate +173775 subordinate +coordinate +173780 coordinate +173812 subordinate +173836 subordinate +173838 subordinate +173846 coordinate +173856 coordinate +173863 coordinate +173870 subordinate +173876 subordinate +173880 coordinate +173883 coordinate +173889 subordinate +173894 coordinate +subordinate +173897 coordinate +173901 coordinate +173903 coordinate +173905 coordinate +173909 subordinate +173911 subordinate +173915 coordinate +subordinate +173931 coordinate +subordinate +173934 coordinate +173946 subordinate +173948 subordinate +173950 subordinate +173973 subordinate +173978 coordinate +173980 subordinate +173989 coordinate +173991 coordinate +173997 coordinate +174000 coordinate +174002 subordinate +174004 subordinate +174009 subordinate +174012 subordinate +coordinate +174017 coordinate +174022 coordinate +174025 subordinate +174027 coordinate +subordinate +174045 subordinate +174050 coordinate +subordinate +174054 coordinate +174056 coordinate +174059 coordinate +174069 coordinate +174073 subordinate +174093 coordinate +subordinate +174097 coordinate +subordinate +174101 subordinate +174111 subordinate +174116 coordinate +174119 coordinate +174121 coordinate +174125 coordinate +174128 subordinate +174132 subordinate +subordinate +174143 subordinate +174148 subordinate +174175 coordinate +174178 coordinate +174183 subordinate +coordinate +174186 coordinate +174191 subordinate +174199 coordinate +174201 subordinate +174205 coordinate +174216 subordinate +174225 subordinate +174227 subordinate +174231 coordinate +subordinate +174242 coordinate +174249 coordinate +174256 coordinate +174258 coordinate +subordinate +174265 coordinate +174268 coordinate +subordinate +174277 subordinate +174295 coordinate +subordinate +174302 subordinate +subordinate +174312 coordinate +subordinate +174318 subordinate +174320 coordinate +subordinate +174330 coordinate +coordinate +subordinate +174335 coordinate +174343 coordinate +174350 coordinate +174353 subordinate +174361 subordinate +subordinate +coordinate +174368 coordinate +subordinate +174373 subordinate +174384 subordinate +174406 subordinate +coordinate +174413 coordinate +174420 subordinate +174425 coordinate +subordinate +174430 coordinate +subordinate +174445 subordinate +174450 coordinate +subordinate +174455 coordinate +subordinate +174465 subordinate +174470 coordinate +subordinate +174477 coordinate +subordinate +174484 coordinate +174488 coordinate +174500 subordinate +174505 coordinate +174508 coordinate +174513 coordinate +subordinate +174524 coordinate +coordinate +174528 coordinate +174530 subordinate +174536 subordinate +174539 subordinate +174544 subordinate +174550 subordinate +coordinate +174554 coordinate +174574 coordinate +174582 coordinate +174589 coordinate +coordinate +174595 subordinate +174608 coordinate +subordinate +174611 coordinate +174615 coordinate +174620 subordinate +subordinate +174628 subordinate +174636 coordinate +subordinate +174644 subordinate +174649 subordinate +174658 subordinate +174664 subordinate +174670 subordinate +subordinate +174680 subordinate +coordinate +174683 coordinate +174689 subordinate +174700 subordinate +174706 coordinate +coordinate +coordinate +coordinate +coordinate +coordinate +174728 coordinate +174730 subordinate +174736 coordinate +174739 coordinate +subordinate +174742 coordinate +174745 coordinate +174748 coordinate +174754 subordinate +174757 subordinate +174759 subordinate +174765 subordinate +174789 subordinate +174794 subordinate +174800 coordinate +subordinate +174807 coordinate +174819 subordinate +174822 subordinate +174826 coordinate +174829 coordinate +174832 subordinate +174840 coordinate +174842 coordinate +174850 subordinate +174864 subordinate +coordinate +174878 coordinate +174888 coordinate +174891 coordinate +174896 coordinate +coordinate +174900 subordinate +174903 coordinate +174907 coordinate +coordinate +174910 coordinate +174916 subordinate +174921 subordinate +174927 coordinate +174936 coordinate +coordinate +174939 coordinate +174942 coordinate +coordinate +174945 coordinate +174947 coordinate +174949 coordinate +174951 coordinate +174967 subordinate +174973 subordinate +174980 subordinate +coordinate +174985 coordinate +174995 subordinate +174998 subordinate +coordinate +175004 coordinate +175017 coordinate +coordinate +175023 coordinate +175028 coordinate +coordinate +175037 subordinate +175039 coordinate +175043 subordinate +175045 subordinate +175052 subordinate +175057 coordinate +175060 subordinate +175063 coordinate +175070 coordinate +175072 coordinate +coordinate +subordinate +175076 subordinate +175080 coordinate +subordinate +175083 subordinate +175087 subordinate +coordinate +175093 subordinate +175095 coordinate +coordinate +175098 coordinate +175111 coordinate +175114 coordinate +175136 subordinate +coordinate +175159 subordinate +175168 coordinate +coordinate +coordinate +175174 subordinate +175177 subordinate +175183 subordinate +175186 subordinate +175206 coordinate +175208 coordinate +175215 subordinate +175225 coordinate +175233 coordinate +175240 coordinate +subordinate +175243 subordinate +175249 coordinate +175251 coordinate +175260 coordinate +175264 coordinate +175268 coordinate +175270 coordinate +coordinate +subordinate +175277 coordinate +175285 subordinate +175291 subordinate +175299 coordinate +175304 coordinate +coordinate +175309 coordinate +175314 coordinate +175320 coordinate +subordinate +175335 coordinate +subordinate +175341 coordinate +subordinate +175345 subordinate +175350 coordinate +175365 subordinate +175380 subordinate +175382 subordinate +175388 coordinate +175390 subordinate +175393 subordinate +175395 subordinate +175400 subordinate +175417 coordinate +subordinate +175421 subordinate +175432 coordinate +175452 coordinate +175456 coordinate +175466 coordinate +175471 coordinate +175477 coordinate +175479 subordinate +175481 subordinate +175484 subordinate +175494 subordinate +175500 subordinate +subordinate +175507 subordinate +175517 subordinate +175531 coordinate +175533 coordinate +175537 coordinate +coordinate +175545 subordinate +175553 subordinate +175560 coordinate +175566 subordinate +subordinate +175571 subordinate +175574 subordinate +175595 coordinate +175606 coordinate +175614 subordinate +175620 coordinate +coordinate +175624 coordinate +175633 coordinate +175639 coordinate +175648 coordinate +175658 coordinate +175666 subordinate +175668 subordinate +175673 subordinate +175690 coordinate +175692 coordinate +175694 coordinate +175696 coordinate +175698 coordinate +175700 coordinate +175708 subordinate +175718 coordinate +subordinate +175721 coordinate +175729 coordinate +175731 coordinate +175735 coordinate +175739 coordinate +175744 coordinate +175746 coordinate +175769 coordinate +175773 coordinate +175778 coordinate +subordinate +175781 coordinate +175791 coordinate +coordinate +175794 coordinate +175797 coordinate +175812 coordinate +175815 coordinate +175822 coordinate +subordinate +175825 coordinate +175836 subordinate +175848 subordinate +175852 subordinate +175858 coordinate +175863 subordinate +coordinate +175867 coordinate +175874 coordinate +subordinate +175877 coordinate +175879 coordinate +175881 coordinate +175885 subordinate +175892 subordinate +175914 coordinate +175917 coordinate +175928 coordinate +175932 subordinate +175934 coordinate +175941 subordinate +coordinate +175945 coordinate +175947 coordinate +175949 coordinate +175954 coordinate +175963 coordinate +175966 coordinate +subordinate +175971 coordinate +175974 coordinate +subordinate +175994 subordinate +subordinate +175999 subordinate +176007 subordinate +coordinate +176011 coordinate +176019 subordinate +176021 coordinate +176023 coordinate +176025 coordinate +176027 coordinate +176059 coordinate +176061 coordinate +176067 subordinate +176071 subordinate +176083 subordinate +176087 coordinate +176093 coordinate +176123 subordinate +176138 coordinate +coordinate +176141 coordinate +176144 coordinate +176165 subordinate +176185 subordinate +176189 subordinate +176191 subordinate +176215 subordinate +176224 coordinate +176227 coordinate +176246 coordinate +subordinate +176250 coordinate +176267 coordinate +176272 coordinate +176278 subordinate +176292 subordinate +176301 subordinate +176320 coordinate +176325 coordinate +176331 subordinate +176386 coordinate +176391 subordinate +176393 subordinate +176405 coordinate +176413 coordinate +176418 subordinate +176425 coordinate +subordinate +176428 coordinate +176434 coordinate +176437 coordinate +176451 coordinate +176454 coordinate +176457 coordinate +176467 subordinate +176476 subordinate +subordinate +176480 coordinate +subordinate +coordinate +176490 subordinate +coordinate +176494 coordinate +176501 coordinate +coordinate +176505 coordinate +176507 coordinate +coordinate +176511 coordinate +176532 subordinate +subordinate +176537 subordinate +176549 coordinate +coordinate +176555 coordinate +subordinate +176561 coordinate +176567 subordinate +176595 coordinate +176605 coordinate +176611 subordinate +176638 coordinate +176642 coordinate +176648 subordinate +subordinate +176659 coordinate +176668 coordinate +176673 coordinate +176679 coordinate +176688 subordinate +176700 coordinate +176703 coordinate +176723 subordinate +coordinate +176728 coordinate +176737 subordinate +subordinate +subordinate +176752 subordinate +176756 coordinate +176762 coordinate +176783 subordinate +176796 subordinate +coordinate +176799 subordinate +coordinate +176804 coordinate +176833 subordinate +subordinate +176839 subordinate +176858 subordinate +176883 subordinate +176890 subordinate +176911 subordinate +coordinate +176916 coordinate +176935 coordinate +coordinate +176942 subordinate +subordinate +176945 coordinate +176948 subordinate +176951 subordinate +176962 subordinate +176969 subordinate +176983 subordinate +176987 coordinate +subordinate +176990 coordinate +subordinate +176995 subordinate +177003 subordinate +subordinate +177011 subordinate +177013 subordinate +177018 coordinate +177025 coordinate +177029 coordinate +177031 subordinate +177035 coordinate +177038 subordinate +177059 subordinate +177066 coordinate +coordinate +177070 coordinate +177074 coordinate +177077 subordinate +177079 coordinate +177108 subordinate +coordinate +177130 subordinate +177132 coordinate +177138 subordinate +177141 coordinate +177153 subordinate +177161 coordinate +subordinate +subordinate +177165 coordinate +177176 coordinate +subordinate +subordinate +177180 coordinate +177209 subordinate +177217 subordinate +177232 coordinate +177235 coordinate +177238 coordinate +177250 subordinate +177264 subordinate +subordinate +subordinate +177272 subordinate +subordinate +177283 coordinate +177296 subordinate +177300 coordinate +177309 coordinate +subordinate +coordinate +177313 coordinate +177322 coordinate +177324 coordinate +177328 coordinate +subordinate +177333 coordinate +177338 subordinate +177355 coordinate +coordinate +177360 coordinate +coordinate +177363 coordinate +subordinate +177372 subordinate +177377 coordinate +177379 coordinate +177381 subordinate +177386 coordinate +177389 coordinate +177394 subordinate +subordinate +177401 coordinate +177403 subordinate +subordinate +177406 subordinate +177411 coordinate +subordinate +177416 coordinate +177422 coordinate +177425 coordinate +177450 coordinate +subordinate +177457 coordinate +177475 subordinate +177478 subordinate +177480 coordinate +177482 coordinate +177487 subordinate +subordinate +177491 coordinate +177495 coordinate +177498 coordinate +177502 coordinate +177507 subordinate +177513 coordinate +177519 subordinate +177523 subordinate +177529 subordinate +177532 coordinate +177535 subordinate +177539 coordinate +177543 subordinate +177548 subordinate +177552 coordinate +177554 subordinate +177557 coordinate +coordinate +177560 coordinate +subordinate +177566 coordinate +177571 coordinate +177582 coordinate +177592 coordinate +coordinate +177598 coordinate +177604 coordinate +177616 coordinate +177620 coordinate +177623 coordinate +177628 subordinate +177636 coordinate +177642 coordinate +177654 subordinate +177664 coordinate +177666 coordinate +177669 coordinate +177684 coordinate +177686 coordinate +subordinate +coordinate +177696 coordinate +177705 subordinate +177718 subordinate +177722 coordinate +subordinate +coordinate +177726 coordinate +177730 coordinate +177735 coordinate +177745 coordinate +177752 subordinate +subordinate +177755 subordinate +177769 coordinate +177771 coordinate +177782 subordinate +177803 subordinate +177808 subordinate +coordinate +177832 subordinate +177836 subordinate +177840 coordinate +177842 subordinate +177850 subordinate +177853 coordinate +177866 subordinate +177883 subordinate +subordinate +177908 subordinate +177912 subordinate +177919 subordinate +177936 subordinate +177942 subordinate +177945 subordinate +177958 subordinate +177967 coordinate +177969 subordinate +subordinate +177977 subordinate +177979 subordinate +177983 coordinate +177990 coordinate +177996 coordinate +177998 coordinate +subordinate +178012 coordinate +178016 coordinate +178018 coordinate +subordinate +178024 coordinate +178026 subordinate +178028 coordinate +178031 coordinate +178035 coordinate +178038 subordinate +178046 subordinate +178048 subordinate +178055 subordinate +178071 coordinate +178073 subordinate +178075 coordinate +178079 coordinate +178081 coordinate +178085 subordinate +178091 coordinate +178094 coordinate +178113 coordinate +178116 coordinate +178124 subordinate +coordinate +178135 coordinate +178138 coordinate +178141 subordinate +178148 subordinate +178155 subordinate +178166 subordinate +coordinate +178169 coordinate +178202 subordinate +178218 subordinate +178223 subordinate +coordinate +178226 coordinate +subordinate +178235 subordinate +178240 subordinate +178274 subordinate +178294 coordinate +subordinate +subordinate +178300 coordinate +178313 subordinate +178317 coordinate +subordinate +178332 subordinate +178336 coordinate +178343 coordinate +178350 subordinate +178357 subordinate +178365 coordinate +subordinate +subordinate +178370 coordinate +178377 coordinate +178392 subordinate +178407 subordinate +subordinate +178435 subordinate +178440 subordinate +178445 coordinate +subordinate +178449 subordinate +178452 subordinate +178455 coordinate +178496 subordinate +178501 subordinate +178505 subordinate +178512 subordinate +178516 subordinate +178526 subordinate +178530 subordinate +coordinate +178533 coordinate +178539 coordinate +178541 coordinate +178547 subordinate +178552 subordinate +178556 subordinate +178562 coordinate +subordinate +178573 subordinate +178576 subordinate +178581 subordinate +178590 coordinate +178593 coordinate +178595 coordinate +178597 coordinate +178608 coordinate +178612 coordinate +178614 coordinate +coordinate +178617 subordinate +178621 coordinate +coordinate +178625 coordinate +178630 coordinate +coordinate +178640 coordinate +178646 subordinate +178648 coordinate +178651 coordinate +178656 subordinate +178690 subordinate +178694 subordinate +178697 subordinate +178705 subordinate +subordinate +178710 subordinate +178718 coordinate +178728 subordinate +178733 coordinate +coordinate +178739 coordinate +178747 subordinate +178759 subordinate +coordinate +178763 coordinate +178789 subordinate +178809 subordinate +178818 coordinate +subordinate +178821 coordinate +178832 subordinate +coordinate +178837 coordinate +178842 coordinate +178859 coordinate +178862 coordinate +178867 coordinate +178874 coordinate +178890 subordinate +178892 coordinate +178896 coordinate +178901 subordinate +178912 coordinate +178914 coordinate +178923 subordinate +178926 coordinate +178933 coordinate +subordinate +coordinate +178938 coordinate +178942 subordinate +coordinate +178945 coordinate +subordinate +178948 subordinate +178951 subordinate +178962 coordinate +178967 coordinate +178976 coordinate +subordinate +subordinate +178988 coordinate +178991 coordinate +178998 subordinate +179026 subordinate +179032 coordinate +179048 subordinate +179055 coordinate +179062 subordinate +179073 coordinate +179089 subordinate +179095 coordinate +coordinate +179099 coordinate +179101 coordinate +179106 coordinate +179108 coordinate +179111 coordinate +179120 coordinate +179127 coordinate +179138 subordinate +179142 subordinate +179145 coordinate +179149 coordinate +179157 subordinate +179172 coordinate +179178 subordinate +179203 coordinate +subordinate +179214 coordinate +179219 coordinate +179227 subordinate +179233 coordinate +179239 coordinate +179243 coordinate +179248 coordinate +subordinate +179252 coordinate +subordinate +179272 subordinate +179301 coordinate +179306 coordinate +179315 subordinate +179330 subordinate +coordinate +179334 coordinate +179338 coordinate +179357 coordinate +179360 coordinate +179362 coordinate +subordinate +179365 coordinate +subordinate +179372 subordinate +179381 subordinate +179388 coordinate +179393 coordinate +179400 coordinate +179407 coordinate +179423 coordinate +179433 coordinate +subordinate +179437 coordinate +179446 subordinate +179450 coordinate +179452 coordinate +179474 subordinate +179478 subordinate +179488 coordinate +coordinate +179493 coordinate +179497 coordinate +subordinate +179503 coordinate +179509 coordinate +179532 subordinate +179539 coordinate +179545 coordinate +179553 subordinate +179556 coordinate +179558 coordinate +179562 coordinate +179569 subordinate +179587 subordinate +coordinate +179593 coordinate +179605 subordinate +179608 subordinate +179623 subordinate +179625 subordinate +179643 subordinate +179659 coordinate +coordinate +179663 coordinate +179665 coordinate +179684 subordinate +179695 subordinate +179724 subordinate +179730 subordinate +179739 coordinate +179745 coordinate +179753 coordinate +179755 coordinate +179758 subordinate +179768 subordinate +coordinate +179771 coordinate +179780 coordinate +coordinate +179784 coordinate +179787 coordinate +179813 subordinate +coordinate +179816 coordinate +179825 subordinate +coordinate +179831 coordinate +179834 coordinate +179844 subordinate +179854 coordinate +179857 coordinate +179869 coordinate +subordinate +179872 coordinate +179880 subordinate +179887 subordinate +179914 subordinate +179922 subordinate +179932 subordinate +179938 subordinate +179960 subordinate +179970 subordinate +coordinate +179982 subordinate +179985 coordinate +180007 coordinate +coordinate +180013 subordinate +180017 coordinate +180030 subordinate +subordinate +180045 coordinate +180064 coordinate +coordinate +180078 subordinate +180114 coordinate +180123 coordinate +180135 subordinate +180137 coordinate +180143 subordinate +180159 coordinate +subordinate +180163 subordinate +180170 coordinate +180175 subordinate +180183 coordinate +180186 subordinate +180189 coordinate +180199 subordinate +180215 coordinate +180218 coordinate +subordinate +180221 coordinate +180238 subordinate +180242 coordinate +180248 coordinate +180251 coordinate +180259 coordinate +180265 coordinate +subordinate +subordinate +180272 coordinate +180279 coordinate +subordinate +180282 subordinate +180290 subordinate +coordinate +180298 coordinate +180300 coordinate +180316 coordinate +subordinate +180330 subordinate +180337 subordinate +180342 subordinate +180356 coordinate +180359 coordinate +180362 coordinate +180395 subordinate +coordinate +180400 coordinate +180403 coordinate +180412 coordinate +180433 subordinate +180459 coordinate +coordinate +180463 coordinate +180468 coordinate +coordinate +180473 coordinate +180489 subordinate +subordinate +180495 subordinate +180499 subordinate +180518 subordinate +180535 coordinate +180538 subordinate +180541 coordinate +180553 subordinate +180555 coordinate +180562 coordinate +180568 coordinate +180570 subordinate +180589 subordinate +180597 coordinate +coordinate +180600 coordinate +180602 coordinate +180609 coordinate +180621 subordinate +180625 coordinate +180632 subordinate +180643 coordinate +180649 subordinate +coordinate +180654 coordinate +180660 coordinate +180667 subordinate +180677 subordinate +180707 coordinate +180710 coordinate +subordinate +coordinate +180715 coordinate +180740 subordinate +180742 subordinate +180900 coordinate +180906 coordinate +180911 subordinate +180918 coordinate +180923 coordinate +180932 subordinate +180954 subordinate +180975 subordinate +coordinate +180978 coordinate +subordinate +180985 subordinate +180990 subordinate +180994 coordinate +180999 coordinate +181004 coordinate +coordinate +181008 coordinate +181017 subordinate +181025 coordinate +181033 coordinate +181044 subordinate +181055 subordinate +181083 subordinate +181088 coordinate +181094 coordinate +coordinate +181106 coordinate +subordinate +181111 coordinate +181116 coordinate +subordinate +181129 subordinate +subordinate +coordinate +coordinate +181134 coordinate +coordinate +subordinate +181138 coordinate +181144 subordinate +181146 subordinate +181172 coordinate +coordinate +181175 coordinate +181201 subordinate +subordinate +181225 coordinate +181251 subordinate +181260 coordinate +181271 subordinate +181277 coordinate +181281 subordinate +181283 coordinate +coordinate +subordinate +181289 coordinate +181298 subordinate +subordinate +181303 subordinate +181326 subordinate +181333 coordinate +181337 subordinate +181352 subordinate +181366 coordinate +181368 coordinate +181374 subordinate +181378 subordinate +181382 coordinate +181385 coordinate +181392 subordinate +coordinate +181400 coordinate +181413 subordinate +181422 coordinate +181428 coordinate +181433 coordinate +subordinate +181438 coordinate +181442 subordinate +181449 subordinate +subordinate +181456 subordinate +181465 subordinate +coordinate +181477 subordinate +subordinate +181480 subordinate +subordinate +181488 subordinate +181494 coordinate +coordinate +181498 coordinate +181501 coordinate +181511 subordinate +181519 subordinate +181536 coordinate +181539 coordinate +181545 coordinate +181551 coordinate +subordinate +181560 subordinate +181566 coordinate +subordinate +181573 subordinate +181577 coordinate +subordinate +181586 subordinate +subordinate +181592 coordinate +181596 coordinate +181603 subordinate +181606 coordinate +subordinate +181611 coordinate +181619 coordinate +subordinate +181624 coordinate +181637 subordinate +181641 coordinate +181643 coordinate +181646 subordinate +subordinate +181651 subordinate +181659 subordinate +181665 coordinate +181678 coordinate +181702 subordinate +181706 subordinate +181711 coordinate +181725 subordinate +181727 subordinate +181733 subordinate +181735 subordinate +181739 subordinate +181752 coordinate +subordinate +181755 coordinate +coordinate +subordinate +181760 coordinate +181764 subordinate +subordinate +181771 coordinate +181776 coordinate +181778 subordinate +coordinate +181781 coordinate +181788 coordinate +181793 coordinate +181803 coordinate +181806 coordinate +181836 coordinate +subordinate +coordinate +181840 coordinate +181845 subordinate +subordinate +181849 subordinate +181863 subordinate +181873 subordinate +181884 subordinate +181886 subordinate +181893 subordinate +181896 subordinate +181913 coordinate +181915 coordinate +181917 coordinate +181926 subordinate +181933 coordinate +181935 coordinate +subordinate +181945 subordinate +181947 subordinate +subordinate +181953 subordinate +181958 coordinate +181960 coordinate +coordinate +181964 coordinate +181971 coordinate +181974 coordinate +coordinate +subordinate +181978 subordinate +181987 subordinate +subordinate +182030 subordinate +182034 coordinate +182038 coordinate +182043 coordinate +subordinate +coordinate +182052 coordinate +182054 coordinate +182058 coordinate +182064 coordinate +182075 subordinate +subordinate +182081 subordinate +182087 coordinate +182091 subordinate +182104 subordinate +182113 subordinate +182115 coordinate +182118 coordinate +182135 subordinate +coordinate +182142 coordinate +coordinate +182145 coordinate +182157 subordinate +182166 subordinate +182176 subordinate +182184 subordinate +182189 subordinate +182196 subordinate +182204 coordinate +182210 coordinate +subordinate +182216 coordinate +182221 subordinate +subordinate +182238 subordinate +coordinate +182245 coordinate +182248 coordinate +182250 coordinate +182269 subordinate +subordinate +182274 coordinate +182285 coordinate +182287 coordinate +182293 subordinate +182303 subordinate +182305 coordinate +182307 coordinate +182309 coordinate +182311 coordinate +182315 subordinate +182323 coordinate +182325 coordinate +182331 coordinate +182342 subordinate +182348 subordinate +182360 subordinate +182362 coordinate +182366 coordinate +182400 coordinate +subordinate +182406 coordinate +182428 subordinate +coordinate +182431 coordinate +182448 subordinate +182450 subordinate +coordinate +182454 coordinate +182458 subordinate +182468 subordinate +182477 subordinate +182483 subordinate +182488 coordinate +subordinate +182492 coordinate +subordinate +coordinate +182496 coordinate +182498 coordinate +182501 subordinate +subordinate +182510 coordinate +182515 coordinate +182536 subordinate +182545 subordinate +182553 subordinate +coordinate +182556 coordinate +182561 subordinate +182565 subordinate +182578 coordinate +182581 coordinate +182584 coordinate +182587 coordinate +182593 coordinate +182601 coordinate +182611 coordinate +182613 subordinate +182615 coordinate +182633 subordinate +182638 subordinate +182648 subordinate +182661 subordinate +182663 subordinate +subordinate +182671 subordinate +182675 subordinate +coordinate +coordinate +182681 coordinate +182683 coordinate +subordinate +182688 coordinate +182692 coordinate +182695 subordinate +182703 subordinate +182709 coordinate +182711 coordinate +182716 coordinate +182718 coordinate +182722 coordinate +182724 coordinate +182727 coordinate +182729 coordinate +182734 subordinate +coordinate +coordinate +coordinate +182744 subordinate +182753 subordinate +182760 coordinate +182764 coordinate +182766 subordinate +182773 coordinate +182783 coordinate +182797 subordinate +182813 coordinate +182819 coordinate +subordinate +182832 coordinate +182837 coordinate +182850 coordinate +182853 coordinate +182858 coordinate +182868 coordinate +182874 subordinate +182882 coordinate +subordinate +182887 coordinate +subordinate +182895 coordinate +182898 coordinate +182902 coordinate +182908 subordinate +182910 coordinate +182912 coordinate +182914 coordinate +182920 coordinate +182927 coordinate +subordinate +182937 coordinate +182939 coordinate +182941 subordinate +182946 coordinate +182949 coordinate +182951 coordinate +182959 subordinate +182974 subordinate +subordinate +182980 subordinate +182988 subordinate +subordinate +182995 subordinate +183002 subordinate +183004 subordinate +coordinate +183009 coordinate +183039 subordinate +183044 coordinate +183046 coordinate +183052 coordinate +183055 subordinate +183061 coordinate +coordinate +183066 coordinate +183068 coordinate +coordinate +183073 coordinate +183075 coordinate +coordinate +183082 coordinate +183086 coordinate +subordinate +183091 subordinate +183094 subordinate +183103 subordinate +183108 subordinate +183117 coordinate +183120 subordinate +183122 coordinate +183132 subordinate +183138 coordinate +coordinate +183141 subordinate +183147 coordinate +183149 coordinate +183157 coordinate +subordinate +183167 coordinate +coordinate +subordinate +183172 coordinate +183183 coordinate +coordinate +183187 coordinate +subordinate +183190 coordinate +183196 coordinate +183198 coordinate +183202 coordinate +183207 coordinate +183236 subordinate +183246 coordinate +183250 coordinate +183254 subordinate +183263 coordinate +183267 coordinate +183270 coordinate +183280 coordinate +183282 subordinate +183286 subordinate +183288 subordinate +subordinate +183294 coordinate +coordinate +coordinate +coordinate +183299 coordinate +coordinate +coordinate +coordinate +183306 subordinate +183321 subordinate +183326 subordinate +183331 subordinate +183334 subordinate +183344 subordinate +183350 subordinate +183393 subordinate +183395 subordinate +183409 subordinate +183414 coordinate +183420 coordinate +183427 coordinate +183430 coordinate +183434 coordinate +183436 coordinate +183438 coordinate +183440 coordinate +183444 coordinate +183447 subordinate +coordinate +183450 coordinate +183456 coordinate +183460 subordinate +coordinate +183463 coordinate +183495 subordinate +183510 coordinate +coordinate +183519 subordinate +coordinate +183523 coordinate +183527 subordinate +subordinate +183533 coordinate +183539 coordinate +183543 coordinate +183548 subordinate +183558 subordinate +183568 subordinate +183572 subordinate +183577 subordinate +183592 coordinate +183596 coordinate +183600 subordinate +183607 subordinate +183619 subordinate +183633 coordinate +183636 coordinate +coordinate +183642 coordinate +183647 coordinate +183649 coordinate +183651 subordinate +subordinate +183657 coordinate +183661 coordinate +183674 subordinate +183678 subordinate +183713 coordinate +183717 subordinate +183724 coordinate +183763 coordinate +183766 coordinate +183782 coordinate +183789 coordinate +183791 coordinate +183798 coordinate +183802 coordinate +subordinate +183810 coordinate +183815 coordinate +subordinate +183821 coordinate +183827 coordinate +subordinate +183832 subordinate +183836 subordinate +183849 coordinate +subordinate +183861 subordinate +coordinate +subordinate +183865 coordinate +subordinate +183888 coordinate +183891 coordinate +183897 subordinate +subordinate +183902 coordinate +183906 subordinate +subordinate +subordinate +183914 coordinate +183917 coordinate +183932 coordinate +183939 subordinate +183941 coordinate +183950 subordinate +coordinate +subordinate +183959 coordinate +183964 coordinate +coordinate +subordinate +183968 coordinate +183974 subordinate +183981 coordinate +183985 coordinate +183988 coordinate +183991 coordinate +183996 subordinate +184000 coordinate +184009 subordinate +subordinate +184015 coordinate +184023 coordinate +subordinate +184037 subordinate +subordinate +184042 subordinate +184066 coordinate +coordinate +184070 coordinate +184092 coordinate +184097 coordinate +coordinate +184100 coordinate +184104 subordinate +184114 subordinate +184124 coordinate +184126 coordinate +184136 subordinate +184143 subordinate +coordinate +184151 coordinate +184166 subordinate +184174 subordinate +184178 coordinate +184181 coordinate +coordinate +184185 coordinate +184191 coordinate +subordinate +184194 subordinate +184216 subordinate +184222 coordinate +184225 coordinate +184228 subordinate +184230 coordinate +subordinate +184248 subordinate +184256 subordinate +184265 subordinate +184273 subordinate +184281 coordinate +184283 subordinate +184289 coordinate +coordinate +184297 coordinate +184301 coordinate +184304 subordinate +184308 coordinate +184318 coordinate +coordinate +subordinate +184324 coordinate +184328 coordinate +subordinate +184335 subordinate +coordinate +184338 coordinate +184344 coordinate +184362 subordinate +184365 subordinate +184370 subordinate +184380 subordinate +184387 coordinate +184392 coordinate +subordinate +184398 subordinate +184402 subordinate +184414 subordinate +184419 coordinate +184423 coordinate +184428 subordinate +184432 subordinate +184437 subordinate +coordinate +184444 coordinate +184455 coordinate +184458 subordinate +184464 subordinate +184466 subordinate +184472 coordinate +184491 coordinate +184494 coordinate +184502 subordinate +subordinate +184508 coordinate +184513 subordinate +184515 coordinate +coordinate +subordinate +subordinate +184525 coordinate +184552 subordinate +184556 coordinate +184558 coordinate +184562 subordinate +184565 subordinate +184568 subordinate +184589 coordinate +coordinate +184600 subordinate +184610 coordinate +coordinate +184615 coordinate +184617 coordinate +subordinate +subordinate +184628 subordinate +184634 coordinate +subordinate +184644 subordinate +184646 coordinate +subordinate +coordinate +184653 coordinate +184659 coordinate +184665 coordinate +184667 coordinate +184669 coordinate +184671 coordinate +184673 coordinate +184677 coordinate +coordinate +184684 coordinate +184686 coordinate +184688 coordinate +184692 subordinate +184706 subordinate +184709 subordinate +184715 coordinate +184722 coordinate +184747 coordinate +184749 coordinate +184756 subordinate +184760 subordinate +184762 subordinate +184766 subordinate +184770 subordinate +184775 subordinate +184779 coordinate +subordinate +184786 coordinate +184794 subordinate +184798 subordinate +184804 subordinate +coordinate +subordinate +184813 coordinate +184815 subordinate +184823 subordinate +184829 coordinate +184831 coordinate +184837 subordinate +184839 subordinate +184861 coordinate +184863 coordinate +184867 coordinate +subordinate +184875 subordinate +184879 coordinate +184881 coordinate +184883 subordinate +184888 coordinate +coordinate +184891 coordinate +184893 coordinate +184908 coordinate +184911 coordinate +184914 subordinate +184919 subordinate +184921 coordinate +184925 coordinate +184938 subordinate +184942 subordinate +184950 subordinate +subordinate +184955 subordinate +coordinate +184961 coordinate +184968 coordinate +184970 coordinate +184979 subordinate +subordinate +184983 coordinate +184985 coordinate +184990 coordinate +184994 subordinate +184996 subordinate +185010 subordinate +coordinate +185015 coordinate +185033 subordinate +185054 subordinate +185070 subordinate +185076 subordinate +185084 coordinate +185090 coordinate +185093 subordinate +185102 subordinate +185108 subordinate +185122 subordinate +185146 coordinate +subordinate +185149 coordinate +185153 coordinate +185155 coordinate +185157 coordinate +subordinate +subordinate +185164 coordinate +185166 coordinate +185198 coordinate +185200 coordinate +185205 subordinate +185228 subordinate +185233 subordinate +185236 coordinate +185238 coordinate +185240 coordinate +185243 coordinate +185245 subordinate +185255 coordinate +185259 subordinate +185268 subordinate +coordinate +185273 coordinate +185282 coordinate +185285 coordinate +185289 coordinate +185295 coordinate +185298 coordinate +185314 subordinate +185326 subordinate +185330 subordinate +185336 coordinate +coordinate +185345 subordinate +185347 coordinate +subordinate +185364 coordinate +185366 subordinate +185371 subordinate +185377 coordinate +subordinate +185386 coordinate +subordinate +185400 subordinate +185405 coordinate +subordinate +185411 coordinate +185413 subordinate +185422 subordinate +subordinate +185439 coordinate +185445 coordinate +185451 subordinate +185454 subordinate +subordinate +185460 subordinate +185468 subordinate +185477 subordinate +coordinate +185482 coordinate +185486 subordinate +185501 subordinate +185508 coordinate +coordinate +185512 coordinate +185517 coordinate +185521 subordinate +185532 subordinate +subordinate +185540 coordinate +subordinate +185546 coordinate +subordinate +185559 coordinate +subordinate +185571 subordinate +coordinate +185576 coordinate +185585 coordinate +185590 coordinate +185600 subordinate +185607 coordinate +185610 coordinate +185619 subordinate +185628 subordinate +185633 coordinate +coordinate +coordinate +coordinate +185638 coordinate +185656 subordinate +185664 subordinate +185673 subordinate +185679 subordinate +185693 coordinate +185697 coordinate +185699 coordinate +185703 coordinate +185719 coordinate +185723 coordinate +185725 subordinate +185730 coordinate +185752 coordinate +185757 coordinate +185769 subordinate +185779 subordinate +185785 subordinate +coordinate +185792 coordinate +185805 coordinate +185809 coordinate +185836 subordinate +185838 subordinate +subordinate +185844 coordinate +185859 coordinate +185863 subordinate +coordinate +185868 subordinate +185871 coordinate +185874 subordinate +185881 coordinate +185902 subordinate +coordinate +185908 coordinate +185914 subordinate +185917 coordinate +185922 coordinate +subordinate +coordinate +185928 subordinate +185931 coordinate +185935 subordinate +185939 subordinate +185941 subordinate +185946 subordinate +185956 subordinate +185961 coordinate +coordinate +185966 subordinate +subordinate +185969 coordinate +185971 coordinate +coordinate +subordinate +185975 coordinate +185980 subordinate +185984 subordinate +185997 subordinate +185999 coordinate +186028 subordinate +186034 coordinate +186036 coordinate +186040 subordinate +subordinate +186049 subordinate +186052 coordinate +186060 subordinate +coordinate +186063 coordinate +subordinate +186068 coordinate +186075 coordinate +subordinate +186081 subordinate +coordinate +186086 coordinate +186090 coordinate +186092 subordinate +186095 coordinate +subordinate +186098 coordinate +coordinate +subordinate +186103 subordinate +186107 coordinate +coordinate +subordinate +186115 coordinate +186119 coordinate +186122 subordinate +186128 coordinate +186130 coordinate +186139 subordinate +186161 coordinate +186163 coordinate +186177 subordinate +186185 subordinate +186187 subordinate +186203 subordinate +186211 subordinate +186220 subordinate +186228 coordinate +186233 coordinate +coordinate +186237 coordinate +186254 subordinate +186262 subordinate +186264 subordinate +186273 subordinate +186298 subordinate +186301 subordinate +186311 coordinate +186315 coordinate +186323 subordinate +coordinate +186329 coordinate +subordinate +186333 subordinate +186335 coordinate +coordinate +coordinate +186340 coordinate +186346 coordinate +subordinate +subordinate +186353 subordinate +subordinate +186364 subordinate +subordinate +186370 coordinate +coordinate +186373 coordinate +coordinate +coordinate +186377 coordinate +coordinate +coordinate +186381 coordinate +186383 subordinate +coordinate +186389 coordinate +186393 coordinate +186415 subordinate +subordinate +subordinate +186433 coordinate +186436 coordinate +186465 subordinate +186472 subordinate +186476 coordinate +186479 subordinate +186482 coordinate +186489 subordinate +186497 subordinate +subordinate +186505 subordinate +186519 subordinate +186523 subordinate +186531 subordinate +186533 subordinate +186544 subordinate +186546 subordinate +186554 coordinate +186559 coordinate +186565 coordinate +186572 subordinate +186578 coordinate +186581 subordinate +186584 subordinate +186594 subordinate +subordinate +coordinate +186598 coordinate +186601 coordinate +coordinate +186604 coordinate +186610 coordinate +subordinate +186613 coordinate +186626 subordinate +186646 subordinate +coordinate +186652 coordinate +186667 coordinate +186671 subordinate +186675 subordinate +186677 subordinate +186688 coordinate +186690 coordinate +186700 coordinate +186702 subordinate +186707 subordinate +186715 coordinate +186717 coordinate +186725 coordinate +186727 subordinate +186736 coordinate +coordinate +subordinate +186741 coordinate +186745 coordinate +186750 subordinate +186764 subordinate +186775 subordinate +186793 subordinate +186797 subordinate +186802 subordinate +subordinate +186813 subordinate +186818 subordinate +186823 subordinate +186825 subordinate +186834 coordinate +186844 coordinate +186860 subordinate +coordinate +186872 subordinate +coordinate +186881 coordinate +186891 subordinate +186900 subordinate +186915 subordinate +coordinate +186922 coordinate +186930 subordinate +186935 subordinate +186945 subordinate +coordinate +186950 coordinate +186958 subordinate +coordinate +186964 coordinate +186971 coordinate +186973 coordinate +186979 subordinate +186981 coordinate +186983 coordinate +186992 coordinate +186997 coordinate +187003 subordinate +187046 coordinate +187048 coordinate +187059 subordinate +coordinate +187062 coordinate +187064 subordinate +subordinate +187076 subordinate +subordinate +187094 subordinate +187101 subordinate +coordinate +subordinate +187109 coordinate +subordinate +187127 coordinate +187130 coordinate +187132 subordinate +187145 subordinate +187185 subordinate +187215 subordinate +187232 subordinate +187241 subordinate +coordinate +187244 coordinate +187246 coordinate +187255 subordinate +subordinate +187267 subordinate +187285 coordinate +187287 coordinate +187291 subordinate +187318 subordinate +subordinate +187328 coordinate +coordinate +coordinate +187334 coordinate +187336 coordinate +187351 subordinate +187355 coordinate +coordinate +coordinate +coordinate +187365 coordinate +187372 coordinate +subordinate +187378 coordinate +187380 coordinate +187391 coordinate +187393 subordinate +187395 coordinate +187397 subordinate +187401 coordinate +187405 coordinate +187415 coordinate +187417 coordinate +187422 coordinate +187433 subordinate +subordinate +187442 subordinate +187462 subordinate +187468 subordinate +187472 subordinate +coordinate +187475 coordinate +187483 coordinate +187485 subordinate +coordinate +187488 coordinate +187490 coordinate +187508 coordinate +187512 coordinate +187519 subordinate +187522 subordinate +187526 coordinate +187531 coordinate +187536 subordinate +187543 coordinate +187545 coordinate +187559 coordinate +coordinate +187563 subordinate +187565 coordinate +187567 subordinate +187569 coordinate +187571 subordinate +187580 coordinate +187582 coordinate +187589 subordinate +subordinate +187597 coordinate +187599 coordinate +187601 coordinate +subordinate +187606 subordinate +coordinate +187616 coordinate +187624 subordinate +187626 subordinate +187631 subordinate +187639 subordinate +subordinate +187651 coordinate +187656 coordinate +187684 subordinate +subordinate +187701 subordinate +187711 subordinate +187713 coordinate +subordinate +187726 coordinate +187740 coordinate +coordinate +187743 coordinate +187756 coordinate +187762 coordinate +187773 coordinate +187775 coordinate +187783 subordinate +187790 coordinate +subordinate +187797 subordinate +187801 coordinate +subordinate +187804 coordinate +187806 subordinate +187811 subordinate +187817 coordinate +187820 coordinate +187832 coordinate +187835 coordinate +187838 coordinate +coordinate +187842 coordinate +187844 coordinate +coordinate +187848 coordinate +187851 coordinate +coordinate +187857 coordinate +187866 coordinate +187868 subordinate +subordinate +187875 coordinate +187879 coordinate +187881 subordinate +187886 coordinate +187890 coordinate +subordinate +187899 coordinate +187913 subordinate +187920 subordinate +187923 coordinate +187927 coordinate +187931 coordinate +187940 subordinate +187950 subordinate +187963 subordinate +187973 subordinate +187981 subordinate +187991 coordinate +187998 coordinate +188013 subordinate +188021 coordinate +subordinate +188027 coordinate +coordinate +subordinate +188032 coordinate +188041 coordinate +188044 subordinate +subordinate +188050 coordinate +188061 subordinate +188068 subordinate +coordinate +188072 coordinate +188076 coordinate +subordinate +188084 subordinate +188097 coordinate +188099 subordinate +188104 coordinate +coordinate +subordinate +188108 coordinate +subordinate +188115 coordinate +subordinate +188127 coordinate +188130 coordinate +coordinate +188133 coordinate +188138 subordinate +188152 subordinate +188155 coordinate +188157 subordinate +188159 coordinate +188166 coordinate +188173 coordinate +188184 coordinate +subordinate +188190 subordinate +188193 subordinate +188215 coordinate +188229 coordinate +188234 coordinate +188240 coordinate +subordinate +188245 coordinate +188247 coordinate +188250 coordinate +188268 subordinate +188273 subordinate +188280 subordinate +coordinate +188283 coordinate +188299 subordinate +188306 coordinate +subordinate +188309 coordinate +188314 subordinate +188316 coordinate +coordinate +188320 coordinate +188323 coordinate +subordinate +coordinate +188327 coordinate +188334 subordinate +188341 coordinate +coordinate +188345 coordinate +188347 coordinate +188372 subordinate +subordinate +coordinate +188386 coordinate +188390 coordinate +188400 coordinate +188408 coordinate +188412 coordinate +188427 subordinate +subordinate +188433 subordinate +188437 coordinate +subordinate +coordinate +188441 coordinate +188445 coordinate +188450 subordinate +188457 subordinate +subordinate +188468 coordinate +188471 coordinate +188476 coordinate +188487 coordinate +188499 subordinate +188504 subordinate +188522 subordinate +188535 subordinate +188544 subordinate +188547 subordinate +188554 coordinate +subordinate +188557 coordinate +188563 coordinate +188570 coordinate +188578 subordinate +188586 subordinate +subordinate +188594 subordinate +188601 coordinate +coordinate +188608 subordinate +188615 coordinate +188617 subordinate +188625 subordinate +188627 subordinate +188632 subordinate +188635 subordinate +188648 subordinate +coordinate +188654 coordinate +188666 subordinate +188682 coordinate +188685 coordinate +188690 subordinate +188698 subordinate +subordinate +188701 subordinate +188712 subordinate +188714 subordinate +188723 coordinate +coordinate +188728 coordinate +188730 coordinate +188742 subordinate +188747 subordinate +188753 coordinate +188755 coordinate +subordinate +subordinate +188760 subordinate +188766 coordinate +188770 coordinate +subordinate +188774 subordinate +188779 coordinate +188781 coordinate +188783 subordinate +188787 subordinate +188793 subordinate +188798 coordinate +188806 coordinate +188818 coordinate +subordinate +188821 coordinate +188829 coordinate +188836 subordinate +188838 subordinate +188857 coordinate +188861 subordinate +188865 subordinate +coordinate +188869 coordinate +188890 subordinate +188894 subordinate +coordinate +188899 coordinate +188901 subordinate +188910 subordinate +subordinate +subordinate +188918 subordinate +188920 coordinate +188922 coordinate +subordinate +188928 subordinate +188932 coordinate +188935 subordinate +188937 coordinate +subordinate +188944 subordinate +subordinate +188948 subordinate +188951 subordinate +188963 subordinate +188967 subordinate +188980 subordinate +188990 subordinate +189007 subordinate +189017 subordinate +189029 coordinate +189031 coordinate +189045 subordinate +coordinate +189049 coordinate +189053 coordinate +189064 subordinate +189068 coordinate +subordinate +189073 subordinate +189075 coordinate +subordinate +189087 subordinate +189097 coordinate +189103 subordinate +189105 coordinate +189118 subordinate +189121 subordinate +189125 coordinate +189127 coordinate +189130 coordinate +189132 subordinate +189136 subordinate +189144 subordinate +189160 subordinate +189177 subordinate +189187 coordinate +189191 subordinate +189197 coordinate +189200 subordinate +189204 coordinate +189212 coordinate +subordinate +189217 coordinate +subordinate +189225 coordinate +189229 subordinate +189233 coordinate +subordinate +189243 coordinate +189247 subordinate +189250 coordinate +189256 coordinate +189259 coordinate +subordinate +189276 subordinate +189281 subordinate +189288 subordinate +189295 coordinate +189301 coordinate +189303 coordinate +subordinate +189309 coordinate +189323 subordinate +189334 coordinate +coordinate +189339 coordinate +189341 coordinate +coordinate +189347 coordinate +189351 coordinate +coordinate +189359 coordinate +subordinate +189362 subordinate +189364 coordinate +189369 coordinate +189371 coordinate +189374 coordinate +189378 subordinate +189390 coordinate +189392 subordinate +subordinate +189399 coordinate +subordinate +189403 subordinate +189410 coordinate +189421 subordinate +subordinate +189426 coordinate +189428 coordinate +subordinate +189435 subordinate +189439 subordinate +189442 coordinate +coordinate +189446 coordinate +189449 coordinate +189452 subordinate +189460 subordinate +189477 coordinate +189480 coordinate +189486 subordinate +coordinate +189489 coordinate +189491 subordinate +coordinate +coordinate +189498 coordinate +189500 coordinate +coordinate +189503 coordinate +189513 coordinate +189515 coordinate +subordinate +subordinate +189524 subordinate +189534 subordinate +subordinate +189544 subordinate +189552 subordinate +189554 subordinate +189561 subordinate +189570 subordinate +189591 coordinate +189595 coordinate +subordinate +189610 coordinate +189614 coordinate +189626 subordinate +189651 subordinate +189657 coordinate +189664 coordinate +189674 subordinate +189684 subordinate +189693 subordinate +189696 subordinate +189698 coordinate +coordinate +189702 coordinate +189705 coordinate +coordinate +189708 coordinate +189712 subordinate +coordinate +189715 coordinate +189719 coordinate +189722 subordinate +189724 coordinate +189730 coordinate +189736 coordinate +189741 subordinate +189756 coordinate +189762 coordinate +189767 coordinate +subordinate +189774 coordinate +189780 coordinate +189784 coordinate +189788 coordinate +189790 coordinate +189793 subordinate +189798 coordinate +189801 coordinate +189804 subordinate +189811 subordinate +189815 subordinate +coordinate +189818 coordinate +subordinate +189832 subordinate +189838 subordinate +coordinate +189842 coordinate +189851 coordinate +189855 coordinate +189859 coordinate +189862 subordinate +189865 subordinate +189869 coordinate +189877 subordinate +189881 coordinate +189885 subordinate +coordinate +189892 coordinate +189896 subordinate +189907 coordinate +189914 coordinate +189919 coordinate +189921 coordinate +189932 subordinate +coordinate +189936 subordinate +189939 coordinate +189951 subordinate +189958 subordinate +189963 subordinate +189988 subordinate +189996 subordinate +190001 subordinate +subordinate +190011 coordinate +190016 coordinate +subordinate +190023 subordinate +coordinate +190030 coordinate +190034 coordinate +190043 coordinate +190045 subordinate +190050 coordinate +190052 subordinate +190058 subordinate +coordinate +190063 coordinate +190080 subordinate +190085 coordinate +190090 coordinate +190092 coordinate +190096 coordinate +190101 coordinate +190106 subordinate +190109 subordinate +190111 subordinate +190114 subordinate +190117 subordinate +190119 coordinate +190122 coordinate +190127 subordinate +190129 subordinate +coordinate +190132 coordinate +190134 coordinate +190143 subordinate +190149 subordinate +subordinate +190158 subordinate +subordinate +190177 coordinate +190187 coordinate +190197 subordinate +190199 subordinate +190212 coordinate +190218 subordinate +190223 coordinate +190228 subordinate +190235 subordinate +190239 coordinate +190243 coordinate +190246 subordinate +subordinate +190250 subordinate +190258 subordinate +190265 coordinate +190277 coordinate +190285 coordinate +190287 coordinate +190302 coordinate +subordinate +190311 coordinate +190322 coordinate +190324 coordinate +190329 subordinate +190331 subordinate +190349 subordinate +coordinate +190352 coordinate +190360 subordinate +190373 coordinate +subordinate +coordinate +coordinate +coordinate +coordinate +190380 subordinate +190385 coordinate +coordinate +190389 coordinate +190392 subordinate +190398 coordinate +coordinate +coordinate +coordinate +coordinate +coordinate +190410 coordinate +190415 coordinate +190420 subordinate +190427 coordinate +190431 subordinate +coordinate +190436 coordinate +190441 subordinate +190443 coordinate +190454 coordinate +subordinate +190457 subordinate +190461 coordinate +subordinate +190473 coordinate +190476 coordinate +190484 coordinate +190487 coordinate +190492 subordinate +190510 subordinate +coordinate +190513 coordinate +190519 subordinate +coordinate +190523 coordinate +190527 coordinate +190532 coordinate +190542 coordinate +190550 subordinate +coordinate +190555 coordinate +190564 subordinate +190566 subordinate +190579 coordinate +190593 coordinate +190604 subordinate +190627 coordinate +190636 subordinate +190638 coordinate +190641 coordinate +190646 subordinate +190653 subordinate +coordinate +subordinate +190661 coordinate +subordinate +190672 subordinate +190676 coordinate +190678 subordinate +subordinate +190684 coordinate +190697 subordinate +190703 subordinate +coordinate +190709 coordinate +190718 subordinate +190722 subordinate +190731 coordinate +subordinate +190736 coordinate +190738 subordinate +190747 subordinate +190753 subordinate +190764 subordinate +190775 subordinate +190781 coordinate +coordinate +coordinate +coordinate +coordinate +190800 subordinate +190804 coordinate +coordinate +coordinate +190808 subordinate +190810 coordinate +190812 coordinate +190816 coordinate +190823 subordinate +190825 subordinate +190829 subordinate +190842 subordinate +coordinate +subordinate +190848 coordinate +190860 subordinate +190875 subordinate +190885 subordinate +190896 coordinate +190901 coordinate +190911 subordinate +190928 subordinate +coordinate +coordinate +coordinate +190934 coordinate +190936 coordinate +190938 coordinate +190940 coordinate +subordinate +190943 coordinate +190950 coordinate +190953 coordinate +190958 coordinate +190973 subordinate +190977 subordinate +subordinate +subordinate +191012 subordinate +191014 subordinate +191022 subordinate +191041 coordinate +191043 coordinate +subordinate +191051 subordinate +191056 subordinate +191061 coordinate +191063 subordinate +191065 coordinate +191067 coordinate +191071 coordinate +191073 subordinate +191081 subordinate +191086 subordinate +191091 subordinate +191093 subordinate +subordinate +191099 subordinate +191103 subordinate +191109 subordinate +191111 subordinate +subordinate +191119 coordinate +subordinate +191122 coordinate +subordinate +191127 subordinate +191133 subordinate +191137 subordinate +191142 coordinate +191150 coordinate +191152 subordinate +191164 subordinate +191173 subordinate +191183 subordinate +191187 coordinate +191196 subordinate +191205 subordinate +coordinate +191208 coordinate +191212 coordinate +subordinate +191222 subordinate +191226 coordinate +191230 coordinate +191234 subordinate +191243 subordinate +191247 subordinate +191254 subordinate +subordinate +191260 subordinate +191275 subordinate +191278 subordinate +191312 subordinate +191320 coordinate +subordinate +191323 coordinate +subordinate +191340 subordinate +coordinate +subordinate +191344 coordinate +subordinate +191347 coordinate +191355 subordinate +191363 coordinate +191367 coordinate +191382 coordinate +191387 coordinate +191392 subordinate +191396 coordinate +191403 subordinate +191406 coordinate +191411 subordinate +subordinate +191420 subordinate +191438 coordinate +subordinate +191441 subordinate +191447 coordinate +subordinate +191465 subordinate +191469 subordinate +191491 coordinate +191495 coordinate +subordinate +191526 subordinate +subordinate +191536 subordinate +191544 coordinate +191547 coordinate +191565 subordinate +191569 subordinate +191576 subordinate +191578 subordinate +191584 coordinate +subordinate +191599 coordinate +191602 coordinate +coordinate +191607 coordinate +191609 coordinate +191611 coordinate +191619 coordinate +191623 subordinate +191631 subordinate +191634 subordinate +191646 coordinate +191659 coordinate +191664 subordinate +191666 coordinate +191677 subordinate +191680 subordinate +191690 coordinate +191695 coordinate +191697 coordinate +191705 coordinate +191710 coordinate +191714 coordinate +191722 subordinate +191725 coordinate +191729 coordinate +191734 coordinate +191743 coordinate +191752 coordinate +191762 subordinate +191764 subordinate +191768 subordinate +subordinate +191781 subordinate +191788 coordinate +191790 coordinate +191792 coordinate +191800 subordinate +191809 subordinate +191813 subordinate +191818 subordinate +191824 subordinate +191828 subordinate +191848 subordinate +191857 subordinate +191862 subordinate +191873 coordinate +coordinate +191876 coordinate +191880 coordinate +191885 subordinate +191890 subordinate +191905 coordinate +191921 coordinate +191926 subordinate +191933 coordinate +191946 subordinate +191948 subordinate +subordinate +191951 subordinate +191953 subordinate +subordinate +191970 coordinate +191974 coordinate +coordinate +coordinate +191982 coordinate +subordinate +191985 coordinate +191989 subordinate +192008 coordinate +192011 coordinate +192018 coordinate +subordinate +192024 coordinate +subordinate +192032 subordinate +192038 subordinate +192044 subordinate +coordinate +192047 subordinate +192049 coordinate +192051 coordinate +192056 coordinate +192067 subordinate +192071 coordinate +192077 coordinate +coordinate +192082 coordinate +192097 subordinate +192104 coordinate +192112 coordinate +192115 subordinate +coordinate +192120 coordinate +192132 subordinate +192134 subordinate +coordinate +192137 coordinate +192139 subordinate +192152 subordinate +192164 coordinate +192166 coordinate +192168 subordinate +192172 subordinate +192180 subordinate +192186 subordinate +192203 subordinate +192213 coordinate +192215 coordinate +192232 coordinate +subordinate +192236 coordinate +192250 coordinate +192255 coordinate +192261 subordinate +192264 subordinate +192272 coordinate +subordinate +192290 coordinate +192298 coordinate +192334 coordinate +192339 subordinate +subordinate +192355 coordinate +192357 coordinate +192366 subordinate +192373 coordinate +subordinate +192376 coordinate +192381 coordinate +coordinate +192385 coordinate +192387 coordinate +192396 coordinate +192406 coordinate +192413 coordinate +subordinate +192419 subordinate +192435 subordinate +subordinate +192438 subordinate +192443 subordinate +coordinate +192446 coordinate +192453 coordinate +192461 coordinate +192464 coordinate +192488 subordinate +subordinate +192499 coordinate +192506 coordinate +192511 coordinate +192517 subordinate +192539 coordinate +192544 coordinate +192548 coordinate +192551 coordinate +192556 coordinate +192560 subordinate +192567 coordinate +192573 coordinate +192591 subordinate +192598 subordinate +192611 subordinate +192613 coordinate +192615 coordinate +192619 subordinate +192635 subordinate +192637 subordinate +192645 subordinate +subordinate +subordinate +192662 subordinate +192666 coordinate +192672 coordinate +192680 coordinate +192694 subordinate +192714 subordinate +coordinate +192720 subordinate +192722 coordinate +192730 coordinate +192736 coordinate +192738 subordinate +192750 subordinate +192773 subordinate +192783 subordinate +192791 subordinate +192800 coordinate +192802 coordinate +subordinate +192807 coordinate +192809 coordinate +192821 subordinate +192831 subordinate +192834 subordinate +192850 subordinate +192879 subordinate +192885 coordinate +192887 subordinate +192889 subordinate +192891 coordinate +192897 subordinate +192899 coordinate +192901 coordinate +192909 subordinate +192923 subordinate +192931 subordinate +subordinate +192934 coordinate +192936 coordinate +192950 subordinate +192957 coordinate +subordinate +subordinate +192961 coordinate +192985 coordinate +193008 subordinate +193010 coordinate +193018 coordinate +193027 subordinate +193035 subordinate +193045 subordinate +193050 coordinate +193055 coordinate +193061 coordinate +193063 coordinate +coordinate +193071 coordinate +193110 coordinate +193112 subordinate +subordinate +193117 subordinate +193127 coordinate +193129 subordinate +193145 subordinate +193158 subordinate +193167 subordinate +193182 subordinate +subordinate +193189 subordinate +193212 coordinate +193218 coordinate +193224 subordinate +193252 subordinate +193267 subordinate +193271 subordinate +193276 coordinate +193281 coordinate +subordinate +193289 subordinate +193295 subordinate +coordinate +193299 coordinate +193305 subordinate +193309 subordinate +193314 coordinate +193319 subordinate +193323 coordinate +coordinate +subordinate +193328 subordinate +193331 subordinate +193339 subordinate +193341 subordinate +193349 coordinate +coordinate +193357 coordinate +193359 subordinate +193373 subordinate +193383 coordinate +193391 coordinate +193399 subordinate +193406 subordinate +193414 subordinate +193423 subordinate +193452 coordinate +subordinate +193455 coordinate +193468 coordinate +193473 coordinate +193480 subordinate +coordinate +subordinate +193486 coordinate +193493 subordinate +193500 subordinate +193525 subordinate +193533 subordinate +193537 subordinate +193541 coordinate +subordinate +193546 coordinate +193556 subordinate +subordinate +193561 subordinate +193565 coordinate +193570 subordinate +193572 coordinate +subordinate +193583 subordinate +193589 subordinate +193591 coordinate +193599 coordinate +193606 subordinate +193614 subordinate +193621 subordinate +193659 subordinate +193666 subordinate +193675 subordinate +193678 subordinate +coordinate +193683 coordinate +subordinate +193686 coordinate +subordinate +193701 subordinate +193723 subordinate +193727 subordinate +193735 subordinate +193750 subordinate +193761 subordinate +193764 subordinate +coordinate +193769 subordinate +193775 coordinate +subordinate +subordinate +193795 subordinate +193800 subordinate +coordinate +193806 coordinate +subordinate +193824 subordinate +subordinate +193831 subordinate +193840 coordinate +193843 subordinate +subordinate +193848 coordinate +subordinate +193855 subordinate +193858 coordinate +193861 subordinate +193872 subordinate +193878 coordinate +193880 coordinate +193888 subordinate +193898 subordinate +subordinate +193923 subordinate +193927 coordinate +193929 subordinate +subordinate +193932 coordinate +193938 subordinate +193944 coordinate +193954 coordinate +193962 subordinate +subordinate +193967 subordinate +193970 subordinate +193988 subordinate +193998 coordinate +194001 coordinate +194022 subordinate +194028 coordinate +194036 subordinate +194048 subordinate +194053 subordinate +194066 coordinate +194069 coordinate +194079 subordinate +subordinate +194084 subordinate +194091 subordinate +194103 subordinate +194114 subordinate +subordinate +coordinate +194121 subordinate +194141 subordinate +194152 subordinate +194154 subordinate +194159 subordinate +194164 coordinate +194166 coordinate +194169 subordinate +194171 subordinate +194173 coordinate +194181 subordinate +194198 coordinate +194202 coordinate +coordinate +194213 coordinate +194220 subordinate +194232 subordinate +194237 subordinate +194251 subordinate +194255 subordinate +194258 subordinate +194274 subordinate +194284 subordinate +subordinate +194305 coordinate +subordinate +194312 coordinate +coordinate +subordinate +194316 coordinate +194325 coordinate +194328 coordinate +194332 coordinate +subordinate +194343 subordinate +194348 coordinate +subordinate +194368 subordinate +194374 coordinate +subordinate +194380 coordinate +subordinate +194399 subordinate +194404 coordinate +194406 coordinate +194419 coordinate +coordinate +194425 subordinate +194431 subordinate +coordinate +194440 coordinate +194442 coordinate +194448 coordinate +194452 coordinate +subordinate +194483 coordinate +194489 coordinate +194493 coordinate +194495 subordinate +194499 coordinate +subordinate +subordinate +194506 subordinate +194513 coordinate +194523 subordinate +194528 coordinate +194542 coordinate +194544 coordinate +194547 coordinate +194549 subordinate +194551 coordinate +194566 subordinate +194573 subordinate +194575 subordinate +194578 coordinate +194580 coordinate +194614 subordinate +coordinate +194624 coordinate +194632 subordinate +194644 subordinate +194654 subordinate +coordinate +194659 coordinate +194662 subordinate +194667 subordinate +194671 coordinate +194678 coordinate +coordinate +194682 subordinate +194686 coordinate +194703 subordinate +194706 subordinate +coordinate +194710 coordinate +194717 subordinate +194732 coordinate +194738 coordinate +subordinate +194748 subordinate +coordinate +194752 coordinate +194769 coordinate +subordinate +194773 coordinate +subordinate +194778 coordinate +194782 coordinate +194800 subordinate +194804 subordinate +194809 coordinate +subordinate +194815 coordinate +subordinate +194825 coordinate +194828 coordinate +194837 subordinate +194847 coordinate +194856 subordinate +coordinate +194859 coordinate +subordinate +194865 coordinate +194868 coordinate +194885 coordinate +194887 coordinate +194893 subordinate +subordinate +194898 subordinate +194907 coordinate +194911 coordinate +194923 subordinate +194935 subordinate +194939 subordinate +194964 subordinate +coordinate +coordinate +194969 coordinate +194974 coordinate +194986 subordinate +195003 subordinate +195008 coordinate +195012 coordinate +subordinate +195023 coordinate +195026 coordinate +195032 coordinate +subordinate +195038 coordinate +195046 coordinate +195050 coordinate +195055 coordinate +195064 coordinate +195067 coordinate +195073 coordinate +195076 coordinate +195084 coordinate +195089 coordinate +195095 subordinate +195103 subordinate +195107 subordinate +195111 coordinate +195113 coordinate +subordinate +195130 coordinate +195134 coordinate +195138 coordinate +195142 coordinate +195146 coordinate +195152 subordinate +195175 coordinate +coordinate +195179 coordinate +195182 coordinate +195196 coordinate +195199 coordinate +195210 subordinate +195213 subordinate +195252 subordinate +195265 coordinate +195267 coordinate +195298 subordinate +195314 subordinate +195320 subordinate +195326 coordinate +195332 subordinate +195348 subordinate +195371 coordinate +195373 subordinate +195401 subordinate +195403 coordinate +195405 coordinate +195407 subordinate +195411 subordinate +195419 coordinate +subordinate +195425 coordinate +195429 coordinate +195435 subordinate +195441 subordinate +195453 coordinate +195463 coordinate +195474 subordinate +subordinate +195486 coordinate +195489 subordinate +195491 coordinate +195497 subordinate +coordinate +195500 coordinate +subordinate +195510 subordinate +subordinate +195515 coordinate +195517 coordinate +195521 coordinate +coordinate +195524 coordinate +subordinate +195527 coordinate +195546 coordinate +195549 coordinate +195552 coordinate +195570 subordinate +195582 coordinate +195584 subordinate +195588 coordinate +coordinate +195607 coordinate +195613 subordinate +coordinate +195618 coordinate +195630 subordinate +195637 coordinate +195639 coordinate +195642 coordinate +subordinate +195658 coordinate +195665 subordinate +195681 coordinate +195702 subordinate +coordinate +195706 coordinate +195719 coordinate +195727 coordinate +195785 subordinate +195802 coordinate +195804 coordinate +195813 subordinate +coordinate +195818 subordinate +195820 coordinate +195824 coordinate +195831 coordinate +195838 coordinate +195845 subordinate +195853 coordinate +coordinate +195863 coordinate +195867 coordinate +195873 coordinate +195886 coordinate +195892 coordinate +195897 coordinate +195903 coordinate +195906 subordinate +195916 coordinate +coordinate +195919 subordinate +195930 coordinate +coordinate +195936 coordinate +195966 coordinate +195973 subordinate +195976 coordinate +195980 coordinate +195984 coordinate +195992 coordinate +195999 coordinate +196014 subordinate +196023 coordinate +196035 subordinate +196046 subordinate +196054 coordinate +196060 coordinate +subordinate +196068 subordinate +subordinate +196085 coordinate +196097 subordinate +196103 subordinate +196108 coordinate +196116 subordinate +196118 subordinate +196128 subordinate +subordinate +196132 subordinate +coordinate +196140 coordinate +196148 subordinate +196153 subordinate +196160 coordinate +196166 coordinate +196177 subordinate +196180 coordinate +196182 subordinate +196184 coordinate +coordinate +196191 coordinate +196193 coordinate +196203 coordinate +196207 subordinate +196210 coordinate +196214 coordinate +196219 coordinate +196226 coordinate +coordinate +subordinate +196230 coordinate +subordinate +196233 coordinate +196239 subordinate +coordinate +196243 coordinate +196245 subordinate +subordinate +196254 subordinate +196267 subordinate +196273 subordinate +196278 subordinate +196291 subordinate +196297 subordinate +coordinate +196304 coordinate +196315 subordinate +196317 coordinate +subordinate +196331 subordinate +196345 coordinate +196350 coordinate +196352 coordinate +196356 coordinate +196359 subordinate +196366 coordinate +196372 coordinate +196376 subordinate +196393 subordinate +196398 coordinate +196409 coordinate +coordinate +196413 coordinate +196424 subordinate +196426 coordinate +coordinate +196429 coordinate +196447 coordinate +196460 coordinate +196462 coordinate +196466 coordinate +196471 subordinate +196473 subordinate +196483 coordinate +196486 coordinate +196504 coordinate +196506 coordinate +196520 subordinate +coordinate +196523 coordinate +196531 coordinate +196539 coordinate +196556 coordinate +196572 subordinate +196577 subordinate +196582 coordinate +196586 coordinate +196600 coordinate +196605 coordinate +196621 coordinate +196626 coordinate +196628 subordinate +coordinate +196632 coordinate +196636 coordinate +196639 coordinate +196645 subordinate +196656 subordinate +196673 subordinate +196686 subordinate +196691 subordinate +196700 subordinate +196710 subordinate +196714 subordinate +subordinate +196717 subordinate +196720 coordinate +196725 subordinate +196731 subordinate +196735 subordinate +196737 coordinate +196740 coordinate +196743 subordinate +196749 coordinate +196751 coordinate +196767 coordinate +196770 coordinate +coordinate +196774 coordinate +196783 coordinate +196787 coordinate +196795 coordinate +coordinate +subordinate +196807 coordinate +196814 subordinate +196826 subordinate +coordinate +196829 coordinate +subordinate +196836 coordinate +196840 coordinate +196843 coordinate +196857 subordinate +coordinate +196861 coordinate +subordinate +196874 coordinate +196888 subordinate +196897 subordinate +196908 subordinate +196911 subordinate +196913 subordinate +196921 coordinate +196923 coordinate +196925 subordinate +196933 subordinate +196939 coordinate +196942 coordinate +subordinate +196961 subordinate +196973 coordinate +196978 coordinate +196981 subordinate +196987 coordinate +196989 coordinate +196994 coordinate +coordinate +197000 coordinate +197013 subordinate +197019 coordinate +197023 coordinate +197038 subordinate +197046 subordinate +197052 subordinate +197054 coordinate +197060 coordinate +197068 coordinate +197070 coordinate +197075 coordinate +197086 coordinate +197090 coordinate +197094 subordinate +197108 coordinate +197112 coordinate +197117 subordinate +subordinate +197121 coordinate +197123 coordinate +197145 subordinate +197150 subordinate +197154 subordinate +197163 coordinate +197177 subordinate +coordinate +197208 subordinate +197212 subordinate +197214 subordinate +197219 subordinate +197244 coordinate +197255 coordinate +197259 coordinate +197261 coordinate +197265 subordinate +subordinate +197274 subordinate +197285 subordinate +subordinate +197299 coordinate +197306 coordinate +197349 coordinate +197361 subordinate +197369 coordinate +197374 coordinate +197387 subordinate +197404 subordinate +197406 coordinate +197411 coordinate +197417 subordinate +197427 subordinate +197437 subordinate +coordinate +subordinate +197446 subordinate +197457 subordinate +197462 coordinate +197464 subordinate +197472 coordinate +197476 coordinate +197480 coordinate +197483 coordinate +coordinate +197488 coordinate +197502 coordinate +197504 coordinate +subordinate +197515 coordinate +197519 coordinate +197528 coordinate +197530 coordinate +197536 subordinate +197538 subordinate +197546 coordinate +197556 subordinate +197560 coordinate +197576 subordinate +197592 subordinate +197595 subordinate +coordinate +197598 coordinate +197602 subordinate +197607 coordinate +197617 subordinate +197620 subordinate +subordinate +197633 coordinate +coordinate +197638 coordinate +197640 subordinate +197646 subordinate +197651 subordinate +coordinate +197656 coordinate +197660 subordinate +197664 coordinate +197666 coordinate +197674 subordinate +197691 coordinate +197694 coordinate +197698 coordinate +197703 coordinate +coordinate +197707 coordinate +197719 coordinate +197721 coordinate +197723 subordinate +coordinate +197732 coordinate +197739 subordinate +197744 subordinate +197749 subordinate +197751 subordinate +197760 coordinate +197769 coordinate +197785 subordinate +197790 subordinate +197797 subordinate +coordinate +197802 coordinate +197810 subordinate +197817 coordinate +197831 coordinate +197834 coordinate +197839 coordinate +197845 subordinate +197848 coordinate +197853 coordinate +197855 coordinate +197857 coordinate +subordinate +197879 subordinate +197893 subordinate +197897 coordinate +197899 coordinate +197902 coordinate +197906 subordinate +197917 subordinate +subordinate +197930 subordinate +197933 subordinate +197936 coordinate +197948 coordinate +197955 coordinate +197959 subordinate +197967 coordinate +subordinate +subordinate +197972 coordinate +197997 subordinate +198001 subordinate +198007 subordinate +198029 subordinate +198039 coordinate +198043 coordinate +198059 subordinate +coordinate +198072 subordinate +198076 subordinate +198078 subordinate +subordinate +subordinate +198089 subordinate +198111 coordinate +198117 subordinate +198137 coordinate +198141 coordinate +subordinate +198154 subordinate +198162 subordinate +198164 subordinate +198168 coordinate +198170 coordinate +198184 subordinate +198201 subordinate +coordinate +198204 coordinate +198206 subordinate +198215 subordinate +coordinate +198222 coordinate +subordinate +198231 coordinate +coordinate +198234 coordinate +198238 coordinate +198240 subordinate +198245 coordinate +subordinate +198252 subordinate +coordinate +198258 coordinate +198262 coordinate +198272 coordinate +subordinate +198277 coordinate +198295 coordinate +198299 subordinate +198301 coordinate +198303 coordinate +198309 coordinate +198332 coordinate +198334 coordinate +198337 coordinate +198341 coordinate +198343 subordinate +198348 subordinate +198355 coordinate +198365 coordinate +subordinate +coordinate +subordinate +coordinate +198373 coordinate +198394 subordinate +198405 subordinate +198411 coordinate +198421 subordinate +198430 subordinate +coordinate +198433 coordinate +198450 subordinate +198459 coordinate +198464 coordinate +198481 coordinate +198485 coordinate +198504 coordinate +198510 coordinate +198521 coordinate +198523 coordinate +198527 coordinate +198529 subordinate +198533 coordinate +198538 subordinate +198543 coordinate +subordinate +198548 coordinate +198564 subordinate +coordinate +198568 coordinate +198581 coordinate +198585 coordinate +198588 coordinate +198592 coordinate +198632 coordinate +198640 subordinate +198643 subordinate +198665 coordinate +198669 coordinate +198677 subordinate +198700 coordinate +198707 coordinate +198717 subordinate +coordinate +198721 coordinate +198736 subordinate +198762 subordinate +198764 subordinate +198774 subordinate +198776 coordinate +198783 coordinate +198793 coordinate +198797 coordinate +198807 coordinate +198812 coordinate +198821 coordinate +198825 coordinate +198834 subordinate +198838 subordinate +198856 subordinate +coordinate +198860 coordinate +198871 subordinate +198881 subordinate +198886 subordinate +198902 subordinate +subordinate +198907 subordinate +198919 coordinate +198924 coordinate +198937 coordinate +198941 coordinate +198951 subordinate +198954 subordinate +198960 coordinate +198968 coordinate +198978 subordinate +198987 coordinate +198991 coordinate +coordinate +199004 coordinate +199009 coordinate +199019 subordinate +199021 subordinate +199035 subordinate +subordinate +199040 subordinate +subordinate +199059 coordinate +199061 coordinate +199065 subordinate +199076 coordinate +199079 coordinate +subordinate +199085 subordinate +199099 coordinate +199104 coordinate +199111 coordinate +199113 subordinate +199115 coordinate +199133 subordinate +199139 subordinate +199146 subordinate +199159 coordinate +199182 coordinate +199184 coordinate +199200 coordinate +199204 coordinate +199211 subordinate +199215 coordinate +199219 coordinate +199223 coordinate +199229 subordinate +subordinate +199237 coordinate +199241 coordinate +199261 coordinate +199263 coordinate +199277 subordinate +199284 subordinate +199287 coordinate +199291 coordinate +199294 coordinate +199301 subordinate +coordinate +199305 coordinate +199309 coordinate +199314 subordinate +199318 subordinate +199324 subordinate +199329 coordinate +199331 coordinate +199342 subordinate +subordinate +199347 coordinate +199349 coordinate +199366 subordinate +199372 coordinate +subordinate +199380 coordinate +199387 coordinate +199390 coordinate +199399 subordinate +199405 coordinate +subordinate +199412 subordinate +199418 coordinate +199428 subordinate +199432 subordinate +199435 coordinate +199442 coordinate +199449 subordinate +199455 coordinate +199459 coordinate +199465 coordinate +coordinate +199468 coordinate +199470 coordinate +subordinate +subordinate +199480 subordinate +199482 subordinate +199486 subordinate +coordinate +199493 coordinate +199502 coordinate +coordinate +199505 coordinate +199507 coordinate +subordinate +subordinate +199513 coordinate +199523 coordinate +199527 subordinate +199529 coordinate +199532 coordinate +199540 subordinate +199545 subordinate +199556 subordinate +199563 subordinate +199569 subordinate +199613 coordinate +199616 subordinate +199618 coordinate +199624 coordinate +199639 subordinate +199652 coordinate +199658 coordinate +199677 subordinate +199686 subordinate +coordinate +199690 coordinate +subordinate +199694 coordinate +199704 coordinate +199727 coordinate +199731 coordinate +199736 coordinate +subordinate +199741 coordinate +199748 subordinate +199752 subordinate +199758 subordinate +199764 subordinate +199772 subordinate +199774 subordinate +subordinate +199780 subordinate +199788 subordinate +subordinate +199791 subordinate +199801 subordinate +199807 coordinate +subordinate +coordinate +199811 coordinate +199815 subordinate +199821 coordinate +coordinate +199825 coordinate +199832 subordinate +coordinate +199835 coordinate +199858 coordinate +199860 coordinate +199872 coordinate +199879 coordinate +199894 coordinate +199900 subordinate +199908 coordinate +199910 coordinate +199915 coordinate +199917 coordinate +199928 subordinate +199934 subordinate +coordinate +199937 coordinate +199957 coordinate +199962 coordinate +199966 subordinate +199977 coordinate +199979 coordinate +199985 subordinate +199997 subordinate +200004 subordinate +200012 coordinate +200014 coordinate +200016 coordinate +200021 subordinate +subordinate +200033 subordinate +subordinate +200065 subordinate +200087 coordinate +subordinate +200112 subordinate +200119 coordinate +200121 coordinate +coordinate +200125 coordinate +200127 subordinate +200138 subordinate +200152 subordinate +200155 subordinate +200161 coordinate +200164 coordinate +coordinate +200168 coordinate +200175 coordinate +200178 coordinate +200213 subordinate +200224 subordinate +200226 subordinate +200233 subordinate +200240 subordinate +200245 coordinate +200256 subordinate +200266 subordinate +200296 subordinate +200302 subordinate +coordinate +200307 coordinate +200309 coordinate +200311 coordinate +200319 subordinate +subordinate +200326 coordinate +200332 coordinate +subordinate +200340 coordinate +200347 subordinate +200353 subordinate +200359 subordinate +coordinate +200362 coordinate +200370 subordinate +200381 subordinate +200397 subordinate +200402 coordinate +200410 coordinate +200412 coordinate +200416 coordinate +coordinate +200419 coordinate +200423 coordinate +200433 coordinate +200435 coordinate +200442 subordinate +200457 coordinate +coordinate +200460 coordinate +200466 subordinate +200491 subordinate +200508 coordinate +200510 coordinate +200513 coordinate +200522 coordinate +coordinate +200525 coordinate +200535 subordinate +200540 coordinate +coordinate +200543 coordinate +200550 coordinate +200553 coordinate +200560 subordinate +200566 subordinate +200571 coordinate +200573 coordinate +200579 subordinate +200598 subordinate +200602 coordinate +200604 coordinate +200606 coordinate +200610 coordinate +subordinate +200618 subordinate +200624 subordinate +200628 subordinate +subordinate +200633 subordinate +200640 coordinate +subordinate +200643 coordinate +200647 coordinate +200663 subordinate +200667 coordinate +coordinate +200670 coordinate +200672 coordinate +subordinate +200689 coordinate +200691 coordinate +200699 coordinate +200701 coordinate +200717 coordinate +200723 coordinate +200730 coordinate +200734 coordinate +200737 subordinate +coordinate +200740 coordinate +200759 subordinate +coordinate +200765 coordinate +200778 coordinate +200783 coordinate +coordinate +200786 coordinate +200799 subordinate +200805 subordinate +200818 subordinate +200831 subordinate +200833 coordinate +200835 coordinate +200837 subordinate +coordinate +200845 coordinate +200859 coordinate +200866 coordinate +200871 coordinate +200876 coordinate +200880 coordinate +200897 subordinate +200905 subordinate +200943 subordinate +200957 coordinate +200959 coordinate +200961 subordinate +200965 subordinate +200970 coordinate +200974 coordinate +200977 coordinate +200991 coordinate +201004 coordinate +201014 coordinate +201016 subordinate +coordinate +201019 coordinate +201031 subordinate +201035 subordinate +201037 subordinate +201040 coordinate +201044 coordinate +201047 coordinate +201058 subordinate +201066 coordinate +201074 subordinate +201081 coordinate +201083 coordinate +201106 subordinate +coordinate +201111 coordinate +201116 coordinate +201133 subordinate +201153 coordinate +201160 coordinate +coordinate +201163 coordinate +201175 coordinate +201178 coordinate +coordinate +201184 coordinate +coordinate +201190 coordinate +201193 coordinate +201195 subordinate +201201 coordinate +201205 subordinate +201212 coordinate +201215 coordinate +201218 subordinate +201230 subordinate +subordinate +201246 coordinate +coordinate +201249 subordinate +201252 coordinate +201254 coordinate +201263 subordinate +201266 coordinate +coordinate +coordinate +201270 coordinate +201272 coordinate +201277 subordinate +201279 subordinate +coordinate +201282 coordinate +201284 coordinate +201288 subordinate +coordinate +201291 coordinate +201309 coordinate +coordinate +201315 subordinate +201318 subordinate +201321 coordinate +201324 coordinate +201326 coordinate +coordinate +201330 coordinate +subordinate +coordinate +201334 coordinate +201339 coordinate +201345 coordinate +201348 coordinate +201351 subordinate +201373 coordinate +subordinate +201376 coordinate +coordinate +201381 coordinate +201394 subordinate +201397 coordinate +201400 coordinate +201404 coordinate +subordinate +201407 coordinate +subordinate +201430 coordinate +201432 coordinate +201439 subordinate +201442 subordinate +201451 coordinate +201453 coordinate +201464 coordinate +201474 subordinate +201481 coordinate +201483 coordinate +201500 subordinate +201515 coordinate +201520 coordinate +201525 coordinate +201535 subordinate +201537 coordinate +subordinate +201552 subordinate +201569 coordinate +coordinate +201574 coordinate +201577 coordinate +subordinate +subordinate +201595 subordinate +201603 coordinate +subordinate +201608 subordinate +coordinate +201612 coordinate +201623 subordinate +201634 subordinate +201642 coordinate +201644 coordinate +201656 subordinate +201666 coordinate +201676 coordinate +201680 coordinate +201687 coordinate +201690 coordinate +201692 subordinate +201704 subordinate +201720 coordinate +201723 coordinate +201740 subordinate +201744 subordinate +201748 coordinate +201753 coordinate +201759 subordinate +201800 coordinate +subordinate +201804 coordinate +201814 subordinate +201818 subordinate +201827 subordinate +201831 subordinate +201836 coordinate +201841 coordinate +201846 coordinate +201849 subordinate +201857 subordinate +201879 coordinate +coordinate +201886 subordinate +201890 coordinate +201903 subordinate +201908 subordinate +201910 subordinate +201933 subordinate +201959 subordinate +201967 subordinate +201998 coordinate +202002 subordinate +202005 coordinate +202009 coordinate +202011 coordinate +202039 coordinate +subordinate +202042 coordinate +202048 coordinate +202051 coordinate +202055 coordinate +subordinate +subordinate +202059 coordinate +202064 coordinate +202068 coordinate +202081 coordinate +202086 coordinate +202091 coordinate +202093 coordinate +202100 subordinate +202105 subordinate +subordinate +subordinate +subordinate +202116 subordinate +202125 subordinate +subordinate +coordinate +202129 coordinate +202132 subordinate +202134 coordinate +coordinate +202138 coordinate +202146 coordinate +202148 coordinate +202170 subordinate +202173 subordinate +202178 subordinate +202185 coordinate +202187 coordinate +202205 subordinate +202214 subordinate +202226 coordinate +202233 coordinate +202236 subordinate +202255 subordinate +202261 coordinate +202264 subordinate +202270 coordinate +202277 coordinate +202279 coordinate +subordinate +202290 coordinate +202294 coordinate +subordinate +202300 coordinate +202306 coordinate +subordinate +202311 coordinate +202321 subordinate +202328 subordinate +202330 coordinate +202333 coordinate +coordinate +202337 coordinate +202351 subordinate +202355 coordinate +202360 subordinate +202362 coordinate +202367 coordinate +202373 coordinate +202377 subordinate +202382 subordinate +coordinate +202387 coordinate +coordinate +202391 coordinate +subordinate +202412 coordinate +202425 subordinate +202432 coordinate +202444 subordinate +202448 coordinate +202453 subordinate +202473 subordinate +subordinate +202477 subordinate +202495 coordinate +coordinate +202498 coordinate +202501 coordinate +202511 coordinate +202513 subordinate +202522 coordinate +202547 subordinate +202549 coordinate +202555 coordinate +202561 coordinate +subordinate +202565 coordinate +subordinate +202568 coordinate +subordinate +202580 subordinate +202587 subordinate +coordinate +202592 coordinate +202605 coordinate +coordinate +202610 coordinate +subordinate +202626 subordinate +coordinate +202632 coordinate +202637 coordinate +202654 coordinate +202661 subordinate +202675 subordinate +202688 subordinate +202693 coordinate +202698 coordinate +202700 subordinate +202704 coordinate +202708 coordinate +202718 subordinate +coordinate +202724 coordinate +202732 subordinate +202757 subordinate +202763 coordinate +202770 coordinate +202774 subordinate +202778 coordinate +202781 coordinate +202785 coordinate +202789 coordinate +202800 subordinate +202811 subordinate +202815 subordinate +202821 subordinate +202825 coordinate +202831 coordinate +202845 subordinate +202847 coordinate +202857 subordinate +202891 coordinate +202893 coordinate +202901 coordinate +202903 coordinate +subordinate +202910 coordinate +202914 coordinate +202918 coordinate +202934 subordinate +202944 subordinate +202963 subordinate +202984 subordinate +202987 subordinate +203000 subordinate +203006 subordinate +203010 coordinate +203012 coordinate +subordinate +203032 coordinate +203036 coordinate +203042 subordinate +203047 coordinate +203051 coordinate +203055 subordinate +203057 coordinate +coordinate +203061 coordinate +203064 coordinate +203066 coordinate +203070 subordinate +coordinate +203075 coordinate +203080 coordinate +203087 coordinate +203092 subordinate +203106 coordinate +203110 coordinate +coordinate +203117 coordinate +203122 coordinate +203133 subordinate +203145 subordinate +coordinate +203150 coordinate +203153 subordinate +coordinate +203157 subordinate +203159 coordinate +subordinate +203166 coordinate +203168 coordinate +203182 subordinate +coordinate +203190 subordinate +203192 coordinate +203194 coordinate +203208 subordinate +203225 subordinate +203231 subordinate +203241 coordinate +203249 subordinate +203255 coordinate +203261 coordinate +203263 coordinate +203266 coordinate +203272 coordinate +203275 coordinate +subordinate +203279 coordinate +203283 coordinate +subordinate +coordinate +203290 coordinate +203308 coordinate +203312 coordinate +subordinate +203315 coordinate +203329 subordinate +203337 coordinate +203340 coordinate +203350 coordinate +coordinate +203354 subordinate +subordinate +203358 coordinate +203360 coordinate +coordinate +203363 coordinate +203376 subordinate +coordinate +203381 coordinate +203385 coordinate +203388 subordinate +203391 coordinate +subordinate +203400 subordinate +203406 subordinate +203416 subordinate +203424 subordinate +203431 coordinate +203435 coordinate +203441 subordinate +203445 subordinate +203452 subordinate +203476 subordinate +203484 coordinate +203487 subordinate +203490 coordinate +203497 coordinate +subordinate +203501 coordinate +coordinate +203516 subordinate +subordinate +203535 coordinate +203541 subordinate +203545 subordinate +203559 coordinate +203562 coordinate +203566 coordinate +subordinate +203570 coordinate +203584 subordinate +203591 subordinate +203597 subordinate +203602 coordinate +subordinate +203608 coordinate +203614 subordinate +203623 subordinate +203626 coordinate +203631 coordinate +203637 subordinate +203640 coordinate +203645 coordinate +203652 coordinate +203654 coordinate +203660 subordinate +subordinate +203672 subordinate +203683 subordinate +203693 coordinate +subordinate +subordinate +203697 coordinate +203703 subordinate +203722 subordinate +203747 subordinate +203752 subordinate +203757 subordinate +coordinate +203760 coordinate +coordinate +203763 coordinate +203766 subordinate +subordinate +203772 subordinate +203778 subordinate +203795 subordinate +203800 subordinate +203807 coordinate +203810 coordinate +203815 coordinate +203818 coordinate +203823 coordinate +203827 coordinate +203842 coordinate +203846 coordinate +203859 subordinate +203867 coordinate +203871 coordinate +203878 subordinate +203893 coordinate +203898 coordinate +203901 subordinate +203915 subordinate +203922 subordinate +203930 subordinate +203937 coordinate +203945 subordinate +203955 subordinate +203957 subordinate +coordinate +203960 coordinate +203964 subordinate +coordinate +203968 coordinate +203978 coordinate +203982 coordinate +203984 subordinate +204009 coordinate +204013 coordinate +204026 coordinate +204028 coordinate +204032 subordinate +204035 coordinate +204040 subordinate +coordinate +204043 coordinate +204047 coordinate +204051 coordinate +coordinate +204054 subordinate +204059 coordinate +204063 coordinate +coordinate +204067 coordinate +204078 coordinate +204083 coordinate +204086 subordinate +204089 subordinate +204106 coordinate +204108 coordinate +204110 subordinate +204121 subordinate +204125 coordinate +204129 coordinate +204135 coordinate +204137 coordinate +204142 subordinate +204145 subordinate +204149 subordinate +204154 subordinate +subordinate +204157 subordinate +204159 subordinate +204165 subordinate +204172 coordinate +204175 coordinate +204180 coordinate +204183 coordinate +204185 subordinate +204194 coordinate +204199 coordinate +204211 subordinate +204213 coordinate +204220 subordinate +204239 subordinate +204242 subordinate +204246 subordinate +204265 subordinate +204267 subordinate +204271 subordinate +204278 coordinate +204280 coordinate +204282 coordinate +204286 coordinate +204290 subordinate +coordinate +204294 coordinate +204298 coordinate +subordinate +204302 coordinate +204310 coordinate +204313 coordinate +204318 subordinate +204331 subordinate +204339 subordinate +coordinate +204346 coordinate +204353 subordinate +coordinate +204360 coordinate +204371 subordinate +204388 subordinate +subordinate +204393 subordinate +204395 subordinate +204402 subordinate +204404 subordinate +204410 coordinate +coordinate +coordinate +204414 coordinate +204417 subordinate +204419 coordinate +coordinate +204422 coordinate +204424 coordinate +204428 subordinate +204439 subordinate +204443 subordinate +204452 subordinate +204462 subordinate +coordinate +204467 coordinate +204484 subordinate +204489 subordinate +204504 subordinate +204510 subordinate +coordinate +204513 coordinate +204563 subordinate +204584 subordinate +204590 subordinate +204601 subordinate +204608 subordinate +coordinate +204612 coordinate +204617 subordinate +204619 subordinate +204630 subordinate +204635 coordinate +204648 subordinate +204659 subordinate +204662 subordinate +204665 subordinate +204672 subordinate +204677 subordinate +204688 coordinate +204692 subordinate +204695 coordinate +204699 subordinate +coordinate +204704 coordinate +204706 coordinate +204710 subordinate +204717 coordinate +subordinate +204720 coordinate +subordinate +204727 subordinate +204737 subordinate +coordinate +coordinate +204741 coordinate +subordinate +204744 coordinate +204751 subordinate +coordinate +204756 coordinate +204761 subordinate +204766 coordinate +204770 coordinate +204773 coordinate +coordinate +204776 coordinate +204778 coordinate +coordinate +204781 coordinate +204793 coordinate +coordinate +204796 coordinate +204798 coordinate +coordinate +204801 coordinate +204803 coordinate +subordinate +204816 subordinate +204822 subordinate +204831 coordinate +coordinate +204834 coordinate +204836 coordinate +coordinate +204839 coordinate +204847 coordinate +coordinate +204850 coordinate +204852 coordinate +204855 coordinate +204857 coordinate +204864 subordinate +204867 subordinate +204874 subordinate +204880 subordinate +204887 coordinate +204890 coordinate +coordinate +coordinate +204894 coordinate +204898 coordinate +204913 subordinate +204928 coordinate +204930 coordinate +204932 subordinate +204944 coordinate +204946 coordinate +204951 coordinate +204971 subordinate +coordinate +204982 coordinate +204986 coordinate +204990 coordinate +204993 coordinate +205001 coordinate +205004 coordinate +205009 coordinate +205025 coordinate +205027 coordinate +205038 subordinate +205044 subordinate +205049 coordinate +205053 coordinate +205058 coordinate +205061 subordinate +205074 subordinate +205083 subordinate +205099 subordinate +205105 subordinate +205110 subordinate +205137 coordinate +205139 coordinate +205148 subordinate +205151 subordinate +coordinate +205157 coordinate +coordinate +205174 coordinate +205177 coordinate +205179 subordinate +205181 subordinate +coordinate +205184 coordinate +205188 coordinate +205191 coordinate +205197 coordinate +205201 coordinate +205218 subordinate +205221 coordinate +205223 subordinate +205226 coordinate +205233 coordinate +205235 coordinate +205241 subordinate +205246 subordinate +205251 coordinate +205258 subordinate +subordinate +205266 coordinate +205270 coordinate +205278 subordinate +205288 coordinate +205297 subordinate +205312 subordinate +205323 subordinate +205332 coordinate +205334 coordinate +205352 subordinate +205373 coordinate +205376 coordinate +205379 subordinate +205387 coordinate +205391 subordinate +205400 subordinate +205402 subordinate +205408 subordinate +205415 coordinate +coordinate +205420 coordinate +205422 coordinate +205427 coordinate +205429 coordinate +205433 coordinate +205444 subordinate +205470 subordinate +205478 subordinate +205496 coordinate +subordinate +205528 coordinate +205532 coordinate +205553 subordinate +subordinate +205556 subordinate +205568 coordinate +205570 subordinate +205572 coordinate +coordinate +205578 coordinate +205607 coordinate +205618 coordinate +205620 coordinate +205624 subordinate +205640 subordinate +205655 coordinate +coordinate +205661 coordinate +205668 coordinate +205675 coordinate +coordinate +205685 coordinate +205688 coordinate +205716 subordinate +205718 subordinate +205720 coordinate +205749 coordinate +205760 coordinate +205771 subordinate +205778 subordinate +205787 coordinate +205789 subordinate +205794 coordinate +205796 subordinate +205802 subordinate +205824 coordinate +205836 subordinate +205838 subordinate +205842 subordinate +205869 subordinate +coordinate +205872 coordinate +205877 coordinate +205889 coordinate +205894 subordinate +205903 coordinate +205905 coordinate +205913 subordinate +205921 subordinate +subordinate +205924 subordinate +205928 coordinate +205933 coordinate +coordinate +205945 coordinate +205948 coordinate +205978 subordinate +205990 subordinate +205993 coordinate +206013 coordinate +206016 coordinate +206021 subordinate +206038 coordinate +subordinate +206049 subordinate +206055 subordinate +206064 coordinate +coordinate +206074 coordinate +206078 coordinate +206082 coordinate +coordinate +206085 subordinate +206090 coordinate +206093 coordinate +coordinate +206109 coordinate +206125 subordinate +206143 subordinate +206158 coordinate +206160 coordinate +206162 subordinate +206168 coordinate +206173 subordinate +206175 subordinate +206181 subordinate +206186 coordinate +206188 coordinate +coordinate +206211 coordinate +subordinate +206214 coordinate +subordinate +206223 subordinate +206234 subordinate +206243 subordinate +206255 coordinate +206257 subordinate +206262 coordinate +206266 subordinate +coordinate +206269 coordinate +206307 subordinate +206312 subordinate +206320 subordinate +206330 coordinate +206332 coordinate +coordinate +206339 coordinate +206344 coordinate +206348 coordinate +206370 subordinate +coordinate +206379 coordinate +206395 coordinate +206404 subordinate +206409 subordinate +206412 coordinate +coordinate +206417 coordinate +206423 coordinate +206440 coordinate +206448 coordinate +206452 coordinate +206460 coordinate +206463 coordinate +206487 subordinate +206524 subordinate +subordinate +subordinate +206536 subordinate +206546 subordinate +206554 subordinate +206561 subordinate +subordinate +subordinate +subordinate +206572 subordinate +206580 coordinate +206584 coordinate +206588 coordinate +206591 coordinate +206593 coordinate +206609 subordinate +subordinate +coordinate +206614 coordinate +coordinate +206621 coordinate +206628 coordinate +206632 coordinate +206640 subordinate +206657 subordinate +206665 subordinate +coordinate +206670 coordinate +206687 coordinate +206689 coordinate +206701 subordinate +206710 coordinate +206719 subordinate +206721 subordinate +206725 coordinate +206731 coordinate +206746 subordinate +subordinate +206753 coordinate +206764 coordinate +subordinate +206772 coordinate +coordinate +206775 coordinate +206789 coordinate +206794 coordinate +subordinate +206799 coordinate +206806 coordinate +206816 coordinate +coordinate +206822 coordinate +206826 coordinate +coordinate +subordinate +subordinate +206832 coordinate +206836 coordinate +206839 subordinate +206841 coordinate +206847 subordinate +coordinate +206859 coordinate +206862 coordinate +206868 coordinate +206878 coordinate +coordinate +206881 coordinate +206888 subordinate +206900 subordinate +206905 subordinate +coordinate +206910 coordinate +206915 subordinate +206920 coordinate +206924 coordinate +206936 coordinate +206940 coordinate +subordinate +206944 coordinate +subordinate +206949 coordinate +coordinate +subordinate +206973 subordinate +206975 subordinate +206982 subordinate +206986 subordinate +206990 coordinate +206993 subordinate +206997 coordinate +coordinate +207025 coordinate +207028 coordinate +207033 coordinate +207040 coordinate +207042 subordinate +207049 coordinate +207052 coordinate +coordinate +207062 subordinate +207072 subordinate +207082 subordinate +207088 coordinate +subordinate +207116 subordinate +207129 subordinate +coordinate +207138 coordinate +207146 coordinate +207157 coordinate +207163 coordinate +207167 coordinate +207173 coordinate +coordinate +207184 coordinate +coordinate +coordinate +207190 coordinate +207194 coordinate +coordinate +207199 coordinate +207204 coordinate +coordinate +coordinate +207209 coordinate +207225 subordinate +207230 coordinate +207232 coordinate +207252 coordinate +207262 coordinate +subordinate +subordinate +207306 subordinate +207314 coordinate +coordinate +207317 coordinate +207321 coordinate +207352 coordinate +207360 coordinate +207364 coordinate +207366 coordinate +subordinate +207394 subordinate +207396 coordinate +207407 subordinate +coordinate +207411 coordinate +207423 subordinate +207426 subordinate +coordinate +207429 coordinate +207431 coordinate +207442 coordinate +207445 coordinate +207477 coordinate +207479 coordinate +coordinate +coordinate +207484 coordinate +207486 coordinate +207493 subordinate +207499 subordinate +207571 subordinate +coordinate +207574 coordinate +subordinate +207579 subordinate +coordinate +207584 coordinate +207586 coordinate +subordinate +207591 subordinate +subordinate +207598 subordinate +207602 subordinate +207604 subordinate +207611 coordinate +207626 subordinate +207639 subordinate +207641 subordinate +207662 coordinate +207665 subordinate +207667 subordinate +207672 coordinate +207699 subordinate +207702 subordinate +207707 subordinate +207717 subordinate +subordinate +207727 subordinate +207733 subordinate +207739 subordinate +coordinate +207744 coordinate +207753 subordinate +subordinate +coordinate +207758 coordinate +207765 subordinate +207767 coordinate +207769 coordinate +207780 subordinate +207794 subordinate +207806 coordinate +207813 coordinate +207832 coordinate +subordinate +subordinate +207836 coordinate +207844 subordinate +207862 subordinate +207874 subordinate +207876 subordinate +207889 subordinate +207895 subordinate +207940 coordinate +207944 subordinate +207949 coordinate +207961 subordinate +207977 subordinate +coordinate +207982 coordinate +207991 coordinate +207996 coordinate +coordinate +subordinate +208000 coordinate +208010 subordinate +subordinate +208026 coordinate +coordinate +208031 coordinate +208036 coordinate +208046 subordinate +208056 subordinate +208084 subordinate +208094 subordinate +208104 subordinate +208112 coordinate +coordinate +208115 coordinate +208119 coordinate +208141 subordinate +208144 coordinate +208153 coordinate +208155 subordinate +208157 subordinate +208159 coordinate +208164 coordinate +coordinate +208169 subordinate +208172 subordinate +208174 subordinate +208197 coordinate +208200 coordinate +208202 subordinate +208204 subordinate +208210 coordinate +208212 coordinate +208262 subordinate +208268 subordinate +208277 coordinate +208279 coordinate +208284 subordinate +208288 subordinate +208295 coordinate +subordinate +208312 coordinate +208314 coordinate +208320 coordinate +208323 subordinate +208326 subordinate +208330 coordinate +208346 coordinate +208353 coordinate +coordinate +208362 coordinate +208366 coordinate +208371 coordinate +208388 coordinate +208393 coordinate +208397 coordinate +208407 coordinate +208411 coordinate +208415 subordinate +208426 subordinate +208445 subordinate +208459 subordinate +208465 subordinate +208471 subordinate +208475 subordinate +208479 subordinate +subordinate +208496 subordinate +208500 coordinate +coordinate +208506 coordinate +208510 coordinate +208516 subordinate +coordinate +208522 coordinate +subordinate +208539 subordinate +208548 coordinate +208553 coordinate +208563 subordinate +coordinate +208570 subordinate +208578 subordinate +208586 coordinate +208589 coordinate +208602 subordinate +coordinate +208608 coordinate +208624 coordinate +208637 subordinate +208663 coordinate +subordinate +208685 coordinate +coordinate +208688 coordinate +208699 coordinate +208707 coordinate +208710 coordinate +208727 coordinate +208731 coordinate +208743 coordinate +208749 coordinate +208775 coordinate +208778 coordinate +208787 coordinate +208794 coordinate +coordinate +208803 subordinate +208808 subordinate +coordinate +208814 coordinate +208820 subordinate +coordinate +208824 coordinate +208856 subordinate +208876 subordinate +subordinate +208880 subordinate +208883 subordinate +208887 subordinate +208896 subordinate +subordinate +208904 coordinate +208920 subordinate +208926 coordinate +208933 coordinate +coordinate +coordinate +subordinate +208938 coordinate +208940 coordinate +208944 subordinate +coordinate +208947 coordinate +208949 coordinate +208954 coordinate +coordinate +208958 subordinate +coordinate +208961 coordinate +208977 coordinate +209003 subordinate +209012 coordinate +209015 coordinate +subordinate +subordinate +209041 coordinate +209047 subordinate +209051 coordinate +coordinate +209057 coordinate +subordinate +209072 coordinate +209085 coordinate +209102 subordinate +209111 subordinate +209130 subordinate +209132 coordinate +209138 coordinate +209143 subordinate +209145 subordinate +209171 subordinate +209176 subordinate +209234 subordinate +209237 subordinate +209259 subordinate +209263 coordinate +209266 coordinate +209274 coordinate +coordinate +209278 coordinate +209284 subordinate +209288 coordinate +209294 coordinate +209302 coordinate +coordinate +209306 subordinate +209316 coordinate +209324 subordinate +209328 coordinate +subordinate +209332 subordinate +209341 subordinate +209351 subordinate +209404 subordinate +209415 subordinate +209419 coordinate +subordinate +coordinate +209431 coordinate +209434 coordinate +209444 subordinate +subordinate +209451 subordinate +209455 subordinate +subordinate +209468 coordinate +subordinate +209477 coordinate +subordinate +209483 subordinate +209488 subordinate +209496 subordinate +subordinate +209510 subordinate +209515 subordinate +209518 subordinate +coordinate +209521 coordinate +209525 subordinate +subordinate +subordinate +209533 subordinate +subordinate +209540 subordinate +209561 coordinate +subordinate +209566 coordinate +subordinate +209576 coordinate +subordinate +209608 coordinate +209611 coordinate +209613 coordinate +209618 coordinate +209651 subordinate +subordinate +subordinate +209663 coordinate +209669 coordinate +209672 subordinate +209680 coordinate +209684 coordinate +209698 coordinate +209705 coordinate +coordinate +209710 coordinate +209718 coordinate +209727 coordinate +coordinate +subordinate +209733 coordinate +209737 coordinate +209747 coordinate +209759 coordinate +subordinate +209764 subordinate +209770 coordinate +209779 subordinate +209797 coordinate +209800 subordinate +209803 coordinate +209811 coordinate +coordinate +209815 subordinate +209821 coordinate +209829 coordinate +subordinate +209846 subordinate +coordinate +209852 coordinate +209860 coordinate +subordinate +209863 coordinate +subordinate +209870 subordinate +209879 coordinate +coordinate +209886 subordinate +209889 subordinate +209901 coordinate +subordinate +209905 coordinate +subordinate +209910 coordinate +209915 coordinate +209918 subordinate +209942 subordinate +209944 subordinate +209948 coordinate +209958 coordinate +209962 coordinate +209967 coordinate +209971 coordinate +subordinate +209974 subordinate +209976 coordinate +subordinate +210015 coordinate +210018 subordinate +210020 coordinate +210025 subordinate +210031 subordinate +210033 coordinate +210039 coordinate +210044 subordinate +210047 subordinate +210059 subordinate +210063 subordinate +210071 coordinate +subordinate +210085 coordinate +coordinate +210091 coordinate +210097 coordinate +210105 subordinate +210107 coordinate +210109 coordinate +subordinate +210122 coordinate +subordinate +210129 coordinate +210133 coordinate +subordinate +210149 coordinate +210152 subordinate +210158 subordinate +210164 subordinate +210168 coordinate +subordinate +coordinate +210175 coordinate +210180 coordinate +subordinate +210186 subordinate +210203 subordinate +210206 coordinate +210216 coordinate +210222 subordinate +210236 subordinate +210245 coordinate +subordinate +210252 coordinate +210257 coordinate +subordinate +210267 subordinate +210272 coordinate +subordinate +210275 coordinate +210284 subordinate +210295 coordinate +210298 coordinate +210303 coordinate +210308 coordinate +210320 coordinate +subordinate +210323 coordinate +subordinate +210328 coordinate +subordinate +210336 subordinate +210341 subordinate +210352 subordinate +210362 subordinate +subordinate +210369 coordinate +210371 coordinate +coordinate +210374 subordinate +210376 coordinate +210381 coordinate +210390 coordinate +210393 coordinate +210395 coordinate +210397 subordinate +210404 coordinate +210409 coordinate +210411 subordinate +coordinate +210414 subordinate +210424 coordinate +210427 subordinate +210429 subordinate +210435 coordinate +210437 coordinate +coordinate +subordinate +210441 subordinate +subordinate +210448 coordinate +210454 subordinate +210459 subordinate +subordinate +210472 subordinate +coordinate +210475 coordinate +subordinate +210493 subordinate +210504 subordinate +210509 subordinate +subordinate +210524 subordinate +210544 coordinate +210550 coordinate +210571 coordinate +subordinate +210577 coordinate +210582 coordinate +coordinate +210589 coordinate +210608 coordinate +210624 subordinate +210627 coordinate +subordinate +210641 subordinate +210650 coordinate +210658 coordinate +coordinate +subordinate +210662 coordinate +coordinate +210667 coordinate +210674 subordinate +210683 subordinate +210687 coordinate +210694 coordinate +210701 subordinate +210711 subordinate +210731 coordinate +210738 subordinate +210741 subordinate +210743 subordinate +210749 coordinate +210758 coordinate +210766 subordinate +210772 coordinate +210785 coordinate +coordinate +coordinate +210790 coordinate +210794 subordinate +coordinate +210798 coordinate +210810 coordinate +210816 coordinate +210831 coordinate +coordinate +210835 coordinate +210846 coordinate +coordinate +coordinate +210851 coordinate +210856 coordinate +210859 coordinate +210866 subordinate +210872 coordinate +coordinate +210877 coordinate +210883 coordinate +coordinate +210891 coordinate +subordinate +210902 coordinate +coordinate +210910 coordinate +210913 coordinate +210919 subordinate +subordinate +210927 coordinate +210933 coordinate +210940 coordinate +subordinate +210953 coordinate +210958 coordinate +coordinate +210965 coordinate +210968 coordinate +210982 subordinate +210996 subordinate +211004 subordinate +211018 coordinate +211022 coordinate +211035 coordinate +211039 coordinate +211044 coordinate +211048 coordinate +211057 subordinate +211063 subordinate +211072 coordinate +subordinate +subordinate +211076 coordinate +211079 subordinate +211084 coordinate +211093 coordinate +211097 coordinate +211100 subordinate +subordinate +211103 coordinate +211126 subordinate +subordinate +211133 coordinate +211138 coordinate +211162 subordinate +211168 subordinate +211184 subordinate +subordinate +211197 subordinate +211205 coordinate +coordinate +subordinate +211216 coordinate +211220 coordinate +subordinate +211252 subordinate +211280 subordinate +211305 subordinate +subordinate +211308 coordinate +subordinate +211313 coordinate +coordinate +211316 coordinate +211336 subordinate +211340 coordinate +coordinate +211346 coordinate +211349 coordinate +211359 coordinate +211362 coordinate +subordinate +211398 subordinate +211413 subordinate +211417 subordinate +211423 subordinate +211443 coordinate +211447 coordinate +subordinate +211464 coordinate +211467 coordinate +211474 coordinate +211479 coordinate +211503 subordinate +211528 coordinate +211533 coordinate +211537 coordinate +subordinate +211542 coordinate +211548 coordinate +subordinate +211551 subordinate +211557 subordinate +211564 subordinate +coordinate +211568 coordinate +211578 coordinate +coordinate +subordinate +211585 coordinate +211588 coordinate +subordinate +211602 subordinate +211607 subordinate +coordinate +211619 subordinate +211629 subordinate +211662 coordinate +211666 coordinate +211674 subordinate +211678 subordinate +211687 coordinate +211690 subordinate +211693 coordinate +subordinate +211711 coordinate +211713 coordinate +211726 subordinate +211729 coordinate +211732 subordinate +211746 subordinate +211749 subordinate +coordinate +211752 coordinate +211756 subordinate +subordinate +211784 subordinate +211786 subordinate +211809 coordinate +subordinate +211814 subordinate +subordinate +211839 subordinate +211841 subordinate +211846 coordinate +211851 coordinate +211860 coordinate +211864 coordinate +211886 subordinate +subordinate +211902 subordinate +subordinate +211917 subordinate +211926 coordinate +211932 coordinate +211944 subordinate +211953 subordinate +211960 subordinate +211963 subordinate +211968 coordinate +subordinate +211977 coordinate +211988 coordinate +211990 coordinate +212004 subordinate +212008 coordinate +212023 subordinate +212029 subordinate +212034 coordinate +212043 coordinate +212045 coordinate +212051 coordinate +subordinate +212054 subordinate +212062 subordinate +212070 subordinate +212074 subordinate +212076 subordinate +212088 coordinate +212090 subordinate +212094 coordinate +212096 subordinate +212113 subordinate +212121 subordinate +212138 subordinate +coordinate +212143 coordinate +212152 subordinate +212156 coordinate +212166 subordinate +212170 coordinate +subordinate +212174 coordinate +coordinate +212184 coordinate +212190 subordinate +212196 coordinate +212200 subordinate +212203 subordinate +212207 coordinate +212210 coordinate +subordinate +212222 subordinate +212229 subordinate +212240 subordinate +212243 subordinate +212248 subordinate +212253 coordinate +212257 subordinate +212260 coordinate +coordinate +212265 coordinate +subordinate +212289 coordinate +coordinate +212292 coordinate +212296 coordinate +subordinate +212299 subordinate +212307 subordinate +212309 coordinate +212312 coordinate +212316 coordinate +212320 coordinate +212328 subordinate +212333 coordinate +212337 coordinate +212343 coordinate +212346 subordinate +212367 coordinate +subordinate +212375 coordinate +212379 subordinate +212383 coordinate +212385 coordinate +subordinate +coordinate +212389 subordinate +212391 coordinate +212394 subordinate +212405 coordinate +212411 coordinate +212415 subordinate +212430 subordinate +212444 subordinate +subordinate +subordinate +212453 coordinate +212455 coordinate +coordinate +212461 subordinate +212477 subordinate +coordinate +212480 coordinate +212485 coordinate +coordinate +212492 subordinate +212494 coordinate +212496 coordinate +subordinate +212499 coordinate +subordinate +212504 coordinate +212523 coordinate +212531 coordinate +212540 coordinate +212544 subordinate +subordinate +212551 coordinate +212553 coordinate +212566 subordinate +212570 subordinate +212586 subordinate +212590 subordinate +212595 subordinate +212600 subordinate +212602 subordinate +212613 coordinate +subordinate +212620 coordinate +coordinate +212626 coordinate +212629 coordinate +212642 subordinate +212656 subordinate +212660 coordinate +subordinate +212665 coordinate +212671 coordinate +212679 subordinate +212681 coordinate +subordinate +212695 subordinate +subordinate +212711 subordinate +subordinate +212717 subordinate +212727 coordinate +212729 coordinate +212751 subordinate +212754 subordinate +212768 subordinate +subordinate +212773 subordinate +212791 subordinate +212796 subordinate +212798 coordinate +subordinate +212803 coordinate +212806 subordinate +coordinate +212809 coordinate +212814 subordinate +212820 coordinate +212822 subordinate +coordinate +212825 coordinate +212829 subordinate +212837 coordinate +212841 coordinate +subordinate +212847 coordinate +subordinate +212850 coordinate +subordinate +212856 subordinate +212860 coordinate +212865 coordinate +212871 subordinate +212887 subordinate +212895 subordinate +212902 subordinate +212906 subordinate +212915 subordinate +coordinate +212926 subordinate +coordinate +212929 coordinate +212948 coordinate +212951 coordinate +212967 subordinate +212973 subordinate +coordinate +212984 coordinate +212991 subordinate +coordinate +212994 coordinate +212998 subordinate +213004 coordinate +213006 coordinate +subordinate +213013 coordinate +213016 coordinate +subordinate +coordinate +213023 subordinate +subordinate +213026 subordinate +213048 subordinate +213059 subordinate +213069 subordinate +213074 coordinate +213077 coordinate +213085 subordinate +213088 subordinate +213094 coordinate +213101 subordinate +213108 coordinate +subordinate +subordinate +213127 coordinate +213129 coordinate +subordinate +213132 coordinate +213134 subordinate +213136 subordinate +213140 subordinate +213145 subordinate +213160 subordinate +213163 subordinate +213171 subordinate +coordinate +213177 coordinate +213182 subordinate +213186 coordinate +213188 subordinate +213191 coordinate +213208 subordinate +213219 subordinate +213223 subordinate +213225 subordinate +213241 coordinate +coordinate +subordinate +213245 coordinate +subordinate +213251 subordinate +213253 subordinate +213259 subordinate +213266 subordinate +213270 subordinate +213277 coordinate +213291 coordinate +213299 coordinate +213303 coordinate +213311 coordinate +213314 coordinate +213326 coordinate +213329 coordinate +subordinate +213337 subordinate +213346 subordinate +213352 coordinate +213354 coordinate +213359 coordinate +213361 coordinate +213370 subordinate +213383 subordinate +213396 subordinate +213403 subordinate +coordinate +213406 coordinate +213412 subordinate +213429 subordinate +213433 coordinate +213439 coordinate +subordinate +213461 subordinate +coordinate +213470 subordinate +213475 subordinate +213481 subordinate +213514 subordinate +213525 subordinate +coordinate +213528 coordinate +213534 subordinate +213544 subordinate +213549 subordinate +213556 subordinate +213581 subordinate +213590 coordinate +213593 subordinate +213595 coordinate +213599 subordinate +213602 coordinate +213607 coordinate +coordinate +213614 subordinate +213620 coordinate +213624 coordinate +subordinate +213628 coordinate +213647 subordinate +213657 subordinate +213670 subordinate +213675 coordinate +213678 coordinate +213690 subordinate +213697 subordinate +subordinate +213702 coordinate +213709 coordinate +213718 subordinate +subordinate +coordinate +213728 coordinate +213731 coordinate +213751 subordinate +213757 subordinate +213771 coordinate +213773 coordinate +213780 subordinate +213786 subordinate +213788 subordinate +213802 coordinate +subordinate +213805 coordinate +213835 subordinate +213845 subordinate +213850 subordinate +213856 coordinate +213860 coordinate +213870 coordinate +213887 coordinate +subordinate +coordinate +213891 coordinate +213897 coordinate +subordinate +213903 subordinate +213919 coordinate +213921 subordinate +213923 coordinate +subordinate +213929 subordinate +coordinate +coordinate +213937 coordinate +213940 coordinate +213954 subordinate +213958 subordinate +213961 subordinate +213963 subordinate +213975 subordinate +213978 subordinate +213982 subordinate +213986 subordinate +214002 subordinate +214017 coordinate +214022 subordinate +214025 coordinate +214028 subordinate +214030 subordinate +214033 subordinate +subordinate +subordinate +214043 coordinate +214048 coordinate +214059 subordinate +subordinate +214063 coordinate +214070 subordinate +214073 coordinate +214080 coordinate +214083 coordinate +214089 subordinate +214109 coordinate +214111 coordinate +214121 coordinate +214125 coordinate +214129 coordinate +subordinate +214132 coordinate +214140 coordinate +subordinate +214145 coordinate +coordinate +subordinate +214163 coordinate +subordinate +214167 coordinate +214174 subordinate +214179 coordinate +214184 coordinate +214198 subordinate +214222 subordinate +214224 subordinate +214228 coordinate +subordinate +214237 coordinate +subordinate +subordinate +214251 subordinate +214261 subordinate +214265 coordinate +subordinate +214268 coordinate +214272 coordinate +subordinate +214275 subordinate +subordinate +214289 subordinate +214301 subordinate +214306 coordinate +subordinate +coordinate +214310 coordinate +subordinate +214313 subordinate +214315 coordinate +subordinate +214330 coordinate +214333 coordinate +subordinate +214353 subordinate +214355 subordinate +214364 coordinate +214367 coordinate +214371 coordinate +214374 subordinate +214378 coordinate +subordinate +214394 subordinate +214396 subordinate +214407 subordinate +214433 coordinate +214436 coordinate +214452 subordinate +coordinate +214455 coordinate +214457 coordinate +214463 coordinate +coordinate +subordinate +214471 coordinate +214474 coordinate +subordinate +214491 subordinate +214511 subordinate +214514 subordinate +214525 subordinate +214528 subordinate +subordinate +214539 subordinate +214541 subordinate +214546 coordinate +214552 coordinate +214554 coordinate +214558 subordinate +214572 coordinate +subordinate +214579 coordinate +214584 coordinate +subordinate +214589 subordinate +214592 subordinate +214600 subordinate +214611 subordinate +214617 coordinate +subordinate +214625 coordinate +subordinate +214651 subordinate +214662 subordinate +coordinate +214665 coordinate +214670 coordinate +214674 coordinate +214682 coordinate +214691 coordinate +coordinate +coordinate +coordinate +214702 coordinate +214707 coordinate +214713 coordinate +subordinate +214733 coordinate +214735 coordinate +214749 subordinate +214754 subordinate +214790 subordinate +214794 subordinate +214796 coordinate +214799 subordinate +subordinate +214807 coordinate +coordinate +coordinate +214817 subordinate +214827 coordinate +214835 subordinate +coordinate +214838 coordinate +214847 subordinate +214849 coordinate +subordinate +214853 subordinate +214858 subordinate +214864 subordinate +214892 subordinate +214901 subordinate +214919 subordinate +subordinate +214934 subordinate +214941 coordinate +coordinate +subordinate +214949 coordinate +214954 coordinate +214956 coordinate +subordinate +214968 coordinate +214972 coordinate +214976 subordinate +214999 coordinate +215001 coordinate +215012 subordinate +215018 subordinate +215036 subordinate +215043 subordinate +subordinate +215053 subordinate +215057 subordinate +215064 coordinate +215066 subordinate +215069 coordinate +215073 subordinate +215077 subordinate +215083 subordinate +215090 subordinate +coordinate +215093 coordinate +215116 coordinate +coordinate +subordinate +215121 coordinate +215126 coordinate +subordinate +215143 coordinate +215148 subordinate +215156 coordinate +coordinate +215163 coordinate +215170 coordinate +subordinate +215178 coordinate +215187 subordinate +coordinate +215196 coordinate +subordinate +subordinate +215209 subordinate +215221 coordinate +215223 subordinate +215234 subordinate +subordinate +215242 coordinate +coordinate +215248 coordinate +215250 coordinate +215254 coordinate +215261 subordinate +215271 subordinate +215276 subordinate +215297 subordinate +215308 subordinate +coordinate +215323 coordinate +215325 coordinate +215330 subordinate +subordinate +215337 subordinate +215342 coordinate +coordinate +215346 coordinate +215350 subordinate +215356 coordinate +215365 subordinate +215372 subordinate +215376 subordinate +215381 subordinate +215386 subordinate +coordinate +215397 subordinate +subordinate +215406 subordinate +215422 subordinate +subordinate +215431 subordinate +coordinate +coordinate +coordinate +215436 coordinate +215438 coordinate +215446 subordinate +215453 coordinate +215458 coordinate +subordinate +coordinate +215463 coordinate +215467 subordinate +subordinate +215475 subordinate +215488 subordinate +coordinate +215493 coordinate +215501 subordinate +215507 subordinate +coordinate +215511 coordinate +215513 subordinate +215523 subordinate +215525 subordinate +215534 coordinate +subordinate +215540 coordinate +subordinate +215561 subordinate +coordinate +215564 coordinate +215566 subordinate +coordinate +215571 coordinate +215585 subordinate +215592 subordinate +215597 subordinate +215611 subordinate +215630 coordinate +subordinate +215638 subordinate +215643 coordinate +215650 coordinate +subordinate +215661 coordinate +subordinate +215675 subordinate +215679 subordinate +coordinate +215682 coordinate +subordinate +215693 subordinate +215702 subordinate +215715 subordinate +coordinate +215725 coordinate +215732 subordinate +215737 subordinate +215740 coordinate +215745 subordinate +215759 subordinate +215768 subordinate +215775 subordinate +215780 coordinate +215784 coordinate +subordinate +215813 subordinate +215828 coordinate +215831 coordinate +coordinate +coordinate +215840 coordinate +215845 coordinate +215847 subordinate +215865 subordinate +215867 subordinate +215872 subordinate +coordinate +215878 subordinate +215881 coordinate +215901 subordinate +215915 subordinate +215917 subordinate +215932 subordinate +215964 subordinate +215969 subordinate +subordinate +subordinate +215981 subordinate +216000 subordinate +216011 subordinate +216024 subordinate +216032 coordinate +subordinate +216036 coordinate +subordinate +216043 subordinate +216048 coordinate +216052 subordinate +216058 coordinate +216062 subordinate +216075 subordinate +216092 subordinate +216106 subordinate +216119 coordinate +216123 coordinate +216129 subordinate +subordinate +coordinate +216134 coordinate +216136 subordinate +216142 coordinate +subordinate +subordinate +216151 coordinate +216155 subordinate +216172 subordinate +216188 coordinate +216190 subordinate +216194 subordinate +216213 subordinate +216216 subordinate +216232 coordinate +216236 coordinate +216246 subordinate +216250 subordinate +216257 coordinate +subordinate +216261 subordinate +216265 coordinate +216271 subordinate +216285 subordinate +216289 subordinate +216295 subordinate +216298 subordinate +216304 subordinate +216308 coordinate +subordinate +216313 coordinate +216339 coordinate +216348 subordinate +216350 coordinate +subordinate +216354 subordinate +216362 subordinate +216365 subordinate +216371 subordinate +216379 subordinate +coordinate +216382 coordinate +216389 subordinate +subordinate +216393 subordinate +216403 subordinate +216409 subordinate +216415 subordinate +216418 subordinate +216440 subordinate +coordinate +216443 coordinate +216446 subordinate +216459 coordinate +216469 subordinate +216480 subordinate +216483 coordinate +216488 subordinate +216490 coordinate +216493 subordinate +216496 subordinate +216500 coordinate +216504 coordinate +coordinate +216507 subordinate +216510 subordinate +216512 coordinate +subordinate +216518 subordinate +216520 coordinate +subordinate +216527 coordinate +216535 coordinate +216540 subordinate +216543 coordinate +216548 coordinate +216550 subordinate +subordinate +216556 coordinate +coordinate +216561 coordinate +216568 subordinate +coordinate +216571 coordinate +subordinate +216576 subordinate +216578 subordinate +subordinate +subordinate +216591 subordinate +216595 coordinate +coordinate +subordinate +216599 coordinate +subordinate +216606 subordinate +216609 subordinate +216611 subordinate +216616 coordinate +216621 coordinate +216641 coordinate +subordinate +216651 coordinate +216657 coordinate +subordinate +216662 coordinate +subordinate +216689 subordinate +216692 subordinate +216701 coordinate +subordinate +subordinate +216707 coordinate +216709 subordinate +coordinate +216712 coordinate +subordinate +216724 coordinate +coordinate +216730 coordinate +subordinate +216733 coordinate +subordinate +subordinate +216741 coordinate +subordinate +216748 coordinate +coordinate +subordinate +216753 coordinate +216757 subordinate +216770 coordinate +216777 coordinate +216786 coordinate +216788 subordinate +coordinate +216792 coordinate +216795 coordinate +216806 coordinate +216810 coordinate +216821 subordinate +216831 coordinate +216833 subordinate +coordinate +216836 coordinate +coordinate +216843 coordinate +216846 coordinate +subordinate +216850 subordinate +216856 subordinate +216877 subordinate +subordinate +216883 coordinate +216888 subordinate +216890 coordinate +subordinate +216910 subordinate +216934 coordinate +216938 coordinate +216967 subordinate +216976 subordinate +216991 coordinate +216997 coordinate +217022 subordinate +217028 coordinate +coordinate +217038 coordinate +217047 coordinate +coordinate +217056 coordinate +217063 subordinate +217065 coordinate +217068 subordinate +217072 subordinate +217078 coordinate +subordinate +217086 subordinate +subordinate +217093 subordinate +217096 subordinate +217098 subordinate +217104 subordinate +subordinate +subordinate +217110 coordinate +217116 subordinate +217120 coordinate +coordinate +217123 coordinate +217128 subordinate +217136 subordinate +217142 subordinate +coordinate +217145 coordinate +217152 subordinate +217158 subordinate +217172 coordinate +subordinate +217180 coordinate +217183 subordinate +subordinate +217195 subordinate +217200 subordinate +217203 subordinate +217209 subordinate +217215 coordinate +217217 coordinate +subordinate +217246 subordinate +217249 subordinate +subordinate +217264 subordinate +217271 subordinate +217274 subordinate +217278 subordinate +217284 subordinate +subordinate +217293 coordinate +217308 subordinate +217317 subordinate +217324 subordinate +217332 coordinate +subordinate +217338 subordinate +subordinate +217341 subordinate +217350 subordinate +217356 coordinate +217362 coordinate +217364 subordinate +217381 subordinate +217392 subordinate +217394 subordinate +217400 coordinate +217402 coordinate +217404 subordinate +217423 subordinate +217429 subordinate +217431 subordinate +217441 coordinate +217450 coordinate +coordinate +217454 subordinate +217456 coordinate +217465 coordinate +coordinate +coordinate +217471 subordinate +coordinate +217479 subordinate +217490 subordinate +217502 coordinate +217506 coordinate +217515 subordinate +217522 subordinate +217529 coordinate +217531 subordinate +217542 coordinate +217545 subordinate +217556 subordinate +217566 subordinate +217580 coordinate +217582 subordinate +217584 subordinate +217589 coordinate +217598 subordinate +217605 coordinate +217607 coordinate +subordinate +217616 subordinate +217619 coordinate +coordinate +subordinate +coordinate +217635 coordinate +subordinate +217638 subordinate +coordinate +217641 coordinate +217645 coordinate +subordinate +217648 subordinate +217653 subordinate +217664 subordinate +subordinate +217668 subordinate +217674 coordinate +217680 coordinate +subordinate +217688 subordinate +217694 coordinate +subordinate +217699 coordinate +coordinate +subordinate +217705 coordinate +217714 subordinate +217718 subordinate +217721 subordinate +217724 subordinate +217730 subordinate +217732 subordinate +217735 subordinate +217740 coordinate +217746 subordinate +coordinate +subordinate +217753 coordinate +217761 subordinate +217799 subordinate +217805 subordinate +217817 coordinate +217823 coordinate +coordinate +217826 coordinate +217836 subordinate +217841 subordinate +217852 subordinate +217855 subordinate +217860 subordinate +217863 subordinate +217873 subordinate +217897 subordinate +subordinate +coordinate +217910 coordinate +coordinate +217915 coordinate +217926 subordinate +217928 subordinate +217956 subordinate +217961 coordinate +coordinate +217965 coordinate +217968 coordinate +217972 subordinate +217981 subordinate +217983 subordinate +subordinate +217987 subordinate +217994 coordinate +218004 coordinate +coordinate +218009 coordinate +218020 subordinate +218032 subordinate +218038 coordinate +218042 coordinate +218057 subordinate +218062 subordinate +subordinate +218074 subordinate +218079 subordinate +218106 subordinate +subordinate +218115 subordinate +218144 subordinate +218155 coordinate +subordinate +218159 coordinate +coordinate +218169 coordinate +subordinate +218173 subordinate +218182 subordinate +coordinate +218185 coordinate +218193 coordinate +218197 coordinate +218200 subordinate +218210 subordinate +218221 subordinate +subordinate +218224 subordinate +218233 subordinate +coordinate +218238 coordinate +218240 subordinate +218254 subordinate +218256 subordinate +218269 subordinate +218278 subordinate +218285 subordinate +subordinate +218300 subordinate +coordinate +subordinate +218304 coordinate +218315 subordinate +218322 coordinate +218324 subordinate +218333 coordinate +218335 coordinate +218338 coordinate +218340 subordinate +218348 subordinate +218355 subordinate +218362 subordinate +218372 subordinate +coordinate +218376 coordinate +subordinate +subordinate +218383 coordinate +subordinate +coordinate +218389 coordinate +218394 coordinate +218402 subordinate +218433 subordinate +218438 coordinate +218445 coordinate +218462 subordinate +218464 coordinate +218466 subordinate +subordinate +218470 coordinate +218485 coordinate +218488 subordinate +subordinate +218492 subordinate +218498 subordinate +218504 coordinate +218508 coordinate +subordinate +218513 subordinate +218517 subordinate +218524 subordinate +coordinate +218527 coordinate +218530 coordinate +218532 coordinate +218538 coordinate +218540 subordinate +218542 coordinate +218548 subordinate +218553 subordinate +subordinate +218557 subordinate +218559 subordinate +subordinate +218565 subordinate +218568 coordinate +218570 subordinate +218573 subordinate +218578 coordinate +218582 coordinate +218591 subordinate +218594 subordinate +subordinate +218599 subordinate +218602 subordinate +subordinate +218611 subordinate +218622 subordinate +218626 subordinate +218637 subordinate +218653 subordinate +218660 coordinate +218662 coordinate +218666 subordinate +218685 subordinate +218693 subordinate +218710 subordinate +subordinate +218742 subordinate +218757 subordinate +218776 subordinate +218790 coordinate +218796 subordinate +218799 coordinate +218802 subordinate +subordinate +218816 subordinate +218833 subordinate +coordinate +218836 coordinate +218865 subordinate +subordinate +coordinate +218879 coordinate +subordinate +218882 coordinate +218886 subordinate +subordinate +218895 coordinate +218898 coordinate +subordinate +218904 subordinate +218911 subordinate +218923 subordinate +subordinate +subordinate +218927 coordinate +subordinate +218932 coordinate +218942 subordinate +218944 subordinate +218946 subordinate +218950 coordinate +subordinate +coordinate +218955 coordinate +218958 coordinate +218962 subordinate +218970 subordinate +218976 subordinate +218982 subordinate +subordinate +218986 coordinate +coordinate +subordinate +subordinate +218997 coordinate +subordinate +219002 subordinate +219004 coordinate +coordinate +219009 coordinate +219015 coordinate +subordinate +219021 coordinate +subordinate +219029 coordinate +219031 subordinate +219034 coordinate +subordinate +219042 subordinate +219052 subordinate +219059 coordinate +219065 subordinate +219068 subordinate +coordinate +219072 coordinate +subordinate +219087 coordinate +219096 coordinate +219103 subordinate +219117 subordinate +coordinate +219120 coordinate +219124 subordinate +subordinate +coordinate +coordinate +219149 subordinate +219159 subordinate +219177 coordinate +219184 coordinate +219190 subordinate +219193 subordinate +219203 coordinate +subordinate +219209 coordinate +219220 coordinate +219236 subordinate +subordinate +coordinate +219241 coordinate +219258 subordinate +219262 coordinate +coordinate +subordinate +219270 subordinate +219276 coordinate +subordinate +219280 coordinate +219282 subordinate +219290 subordinate +subordinate +subordinate +219302 subordinate +219306 subordinate +subordinate +219327 subordinate +219330 subordinate +219332 coordinate +219337 subordinate +219343 coordinate +219354 coordinate +219368 coordinate +coordinate +219374 coordinate +219383 subordinate +219398 coordinate +coordinate +219403 coordinate +coordinate +219408 coordinate +subordinate +219414 coordinate +219420 subordinate +219429 subordinate +219436 subordinate +219441 subordinate +219445 coordinate +subordinate +219449 coordinate +subordinate +219453 coordinate +subordinate +coordinate +219457 coordinate +219469 subordinate +219473 subordinate +219480 subordinate +219485 subordinate +219493 subordinate +219502 subordinate +subordinate +219510 subordinate +219522 coordinate +219527 coordinate +219540 coordinate +219553 subordinate +219562 subordinate +219574 subordinate +219601 subordinate +coordinate +219607 coordinate +219611 subordinate +219623 subordinate +219630 subordinate +219638 coordinate +219642 coordinate +219646 subordinate +219656 subordinate +219659 subordinate +219663 coordinate +subordinate +coordinate +219667 coordinate +219670 subordinate +219676 coordinate +coordinate +219681 coordinate +219706 coordinate +219712 coordinate +219729 subordinate +219734 subordinate +subordinate +219740 subordinate +219746 subordinate +219761 subordinate +219766 subordinate +subordinate +coordinate +219771 coordinate +219790 subordinate +coordinate +219795 coordinate +219798 coordinate +219804 subordinate +219808 subordinate +219816 coordinate +subordinate +219819 coordinate +219822 subordinate +219828 subordinate +coordinate +219832 coordinate +219835 subordinate +coordinate +219839 coordinate +219843 coordinate +219845 coordinate +219849 subordinate +219871 subordinate +219880 subordinate +coordinate +219883 coordinate +219885 coordinate +219897 subordinate +219902 coordinate +219907 coordinate +219917 subordinate +subordinate +219923 coordinate +219925 coordinate +coordinate +219929 coordinate +219934 subordinate +219937 subordinate +subordinate +219940 subordinate +subordinate +219948 subordinate +219954 subordinate +219958 subordinate +219965 subordinate +219967 subordinate +219972 subordinate +219974 subordinate +219980 subordinate +220008 subordinate +220014 subordinate +220017 coordinate +220020 coordinate +220026 coordinate +220028 subordinate +subordinate +220037 coordinate +coordinate +subordinate +220046 coordinate +subordinate +220054 subordinate +220074 subordinate +220083 subordinate +220087 subordinate +220089 coordinate +220091 subordinate +220095 coordinate +subordinate +subordinate +220130 coordinate +220134 coordinate +220158 coordinate +220164 coordinate +220167 subordinate +coordinate +subordinate +220174 coordinate +220179 coordinate +220182 coordinate +subordinate +220192 coordinate +220198 coordinate +subordinate +coordinate +220202 coordinate +220209 subordinate +220215 subordinate +coordinate +220218 subordinate +220222 coordinate +220230 subordinate +subordinate +220236 subordinate +220238 subordinate +220243 subordinate +220251 subordinate +220253 subordinate +subordinate +220259 subordinate +220272 subordinate +220277 subordinate +220279 subordinate +220289 subordinate +220291 subordinate +subordinate +subordinate +220297 coordinate +220310 subordinate +220312 subordinate +coordinate +220315 coordinate +220323 subordinate +220333 subordinate +subordinate +220339 coordinate +subordinate +220348 subordinate +subordinate +220353 subordinate +subordinate +220359 subordinate +coordinate +220364 coordinate +220366 subordinate +subordinate +subordinate +220378 subordinate +220382 subordinate +subordinate +subordinate +220390 subordinate +coordinate +220398 subordinate +220403 subordinate +220405 coordinate +subordinate +220416 subordinate +220425 subordinate +220438 subordinate +220447 subordinate +subordinate +220455 subordinate +220470 subordinate +coordinate +220475 coordinate +subordinate +220478 subordinate +220487 subordinate +subordinate +220498 subordinate +coordinate +220505 coordinate +220515 subordinate +220519 subordinate +220522 subordinate +220533 subordinate +220542 subordinate +subordinate +220549 subordinate +coordinate +220554 coordinate +220563 subordinate +coordinate +220578 subordinate +220583 subordinate +220609 subordinate +220614 coordinate +220618 coordinate +220636 subordinate +220639 subordinate +220651 subordinate +220664 subordinate +220668 subordinate +220671 subordinate +subordinate +220678 subordinate +subordinate +220687 subordinate +220689 subordinate +subordinate +220701 coordinate +220704 subordinate +subordinate +220708 coordinate +coordinate +subordinate +coordinate +220714 coordinate +220727 coordinate +subordinate +220730 subordinate +220742 subordinate +220753 subordinate +220763 subordinate +220772 subordinate +220783 coordinate +220786 subordinate +220791 coordinate +220794 subordinate +220809 subordinate +220813 subordinate +220827 coordinate +220834 subordinate +220844 subordinate +220851 subordinate +220857 subordinate +220859 subordinate +coordinate +220862 coordinate +coordinate +220865 coordinate +subordinate +220873 coordinate +220877 subordinate +220883 subordinate +220886 coordinate +220904 subordinate +220906 subordinate +coordinate +220911 coordinate +subordinate +220921 subordinate +220925 coordinate +220932 coordinate +subordinate +subordinate +220938 subordinate +220942 coordinate +subordinate +220950 coordinate +coordinate +220962 subordinate +220965 subordinate +220967 subordinate +subordinate +220976 subordinate +coordinate +220981 coordinate +subordinate +220991 subordinate +220993 subordinate +221000 subordinate +221007 subordinate +221009 subordinate +221013 subordinate +221023 subordinate +221030 subordinate +221033 subordinate +221050 subordinate +subordinate +221053 subordinate +221056 subordinate +subordinate +221072 subordinate +221077 subordinate +221083 coordinate +221085 subordinate +coordinate +221088 coordinate +221095 coordinate +221097 subordinate +subordinate +221100 subordinate +221106 subordinate +221124 subordinate +221130 subordinate +221143 subordinate +221147 subordinate +221155 subordinate +221160 subordinate +221165 subordinate +coordinate +221172 coordinate +221181 subordinate +221183 subordinate +221187 subordinate +221190 coordinate +221192 subordinate +221199 coordinate +coordinate +221207 coordinate +221212 subordinate +221214 subordinate +221219 subordinate +221225 subordinate +coordinate +221229 coordinate +221236 subordinate +221242 subordinate +221244 subordinate +221254 subordinate +221263 coordinate +coordinate +221273 coordinate +221286 coordinate +221302 subordinate +221314 subordinate +subordinate +subordinate +221320 coordinate +subordinate +221330 subordinate +221333 subordinate +221348 subordinate +221352 subordinate +221356 subordinate +subordinate +221368 subordinate +221373 subordinate +221382 subordinate +221384 subordinate +subordinate +221397 subordinate +221417 subordinate +221419 subordinate +221436 subordinate +221442 subordinate +221444 subordinate +221448 subordinate +221462 subordinate +221469 subordinate +221478 coordinate +221481 coordinate +221483 coordinate +221487 subordinate +221493 coordinate +coordinate +221498 coordinate +subordinate +221503 subordinate +221505 coordinate +subordinate +221513 subordinate +221526 subordinate +221556 subordinate +221573 coordinate +221575 coordinate +221583 subordinate +221589 subordinate +221591 subordinate +subordinate +221601 subordinate +221633 coordinate +221636 coordinate +221652 subordinate +coordinate +221655 coordinate +221658 subordinate +221665 subordinate +221668 subordinate +221672 subordinate +221680 subordinate +221686 subordinate +subordinate +subordinate +221695 subordinate +221699 subordinate +221703 subordinate +221731 coordinate +coordinate +221743 subordinate +221746 subordinate +221748 subordinate +221769 subordinate +221782 subordinate +221797 coordinate +221811 coordinate +subordinate +221829 subordinate +221833 subordinate +221838 subordinate +221852 subordinate +221858 subordinate +221861 subordinate +subordinate +221875 coordinate +221879 coordinate +221881 subordinate +221883 subordinate +subordinate +221889 coordinate +subordinate +221897 coordinate +subordinate +221912 subordinate +221915 subordinate +221923 coordinate +221927 coordinate +221934 coordinate +221938 coordinate +subordinate +221944 subordinate +221953 coordinate +221956 coordinate +221970 subordinate +221989 coordinate +221996 coordinate +222008 subordinate +222012 subordinate +subordinate +222019 subordinate +222029 subordinate +subordinate +222032 subordinate +222048 coordinate +222051 coordinate +subordinate +222054 subordinate +222059 subordinate +222062 subordinate +subordinate +222066 subordinate +subordinate +222070 coordinate +subordinate +222077 subordinate +222084 coordinate +222087 coordinate +222096 coordinate +222103 coordinate +222116 subordinate +222124 subordinate +coordinate +subordinate +222130 coordinate +222140 subordinate +222142 subordinate +222163 coordinate +subordinate +222183 subordinate +222188 subordinate +222195 subordinate +222206 subordinate +222211 coordinate +subordinate +222215 coordinate +subordinate +coordinate +222219 coordinate +222224 subordinate +222230 subordinate +222233 subordinate +222238 coordinate +222240 subordinate +222249 subordinate +subordinate +222260 subordinate +222264 subordinate +222267 coordinate +222273 coordinate +subordinate +222279 subordinate +subordinate +222282 subordinate +222285 subordinate +222287 subordinate +222292 subordinate +222294 subordinate +222299 subordinate +222307 coordinate +subordinate +coordinate +222311 coordinate +222315 coordinate +subordinate +subordinate +222321 subordinate +222335 subordinate +222337 subordinate +222345 subordinate +222347 coordinate +222354 subordinate +222356 subordinate +222363 coordinate +subordinate +222368 subordinate +222373 coordinate +subordinate +222383 coordinate +subordinate +222389 coordinate +222391 coordinate +222393 subordinate +222395 coordinate +222404 subordinate +222409 subordinate +222413 coordinate +222415 subordinate +subordinate +222420 coordinate +subordinate +coordinate +222425 subordinate +subordinate +222434 coordinate +222437 coordinate +222446 subordinate +222453 subordinate +222463 subordinate +222465 subordinate +subordinate +222481 coordinate +222486 coordinate +222489 subordinate +222498 subordinate +222500 subordinate +222512 subordinate +subordinate +222521 subordinate +222529 subordinate +coordinate +subordinate +222533 coordinate +222538 coordinate +222541 coordinate +subordinate +222546 subordinate +subordinate +222561 subordinate +222563 subordinate +222569 subordinate +222573 subordinate +222576 subordinate +coordinate +222580 coordinate +222582 subordinate +222589 coordinate +222598 coordinate +222600 coordinate +222603 coordinate +subordinate +222617 subordinate +222620 subordinate +222625 subordinate +222629 subordinate +222641 subordinate +subordinate +222653 subordinate +222664 subordinate +222666 subordinate +222672 subordinate +222675 subordinate +222680 subordinate +222686 subordinate +222703 subordinate +222716 subordinate +subordinate +222729 subordinate +subordinate +222732 subordinate +subordinate +222742 subordinate +coordinate +222745 coordinate +222747 subordinate +222760 coordinate +222766 coordinate +subordinate +222778 subordinate +222780 subordinate +222782 subordinate +222787 subordinate +222792 subordinate +222797 subordinate +coordinate +222803 coordinate +222820 coordinate +222824 coordinate +222828 subordinate +222844 subordinate +222847 coordinate +222852 coordinate +222854 coordinate +coordinate +222857 coordinate +222860 coordinate +coordinate +subordinate +222864 coordinate +222870 coordinate +222876 coordinate +222879 coordinate +222883 coordinate +coordinate +222887 coordinate +222890 coordinate +222893 coordinate +222895 coordinate +222899 subordinate +222911 coordinate +222916 coordinate +222921 subordinate +coordinate +222927 coordinate +222943 subordinate +223023 subordinate +223047 subordinate +223052 subordinate +223054 subordinate +223064 subordinate +223066 subordinate +223072 coordinate +223074 coordinate +subordinate +223093 coordinate +subordinate +223097 coordinate +223106 subordinate +223125 subordinate +223135 subordinate +223176 subordinate +223199 subordinate +223206 subordinate +coordinate +coordinate +subordinate +223215 coordinate +223220 coordinate +223226 coordinate +subordinate +subordinate +223230 coordinate +223260 coordinate +223267 coordinate +223289 coordinate +223298 coordinate +223301 subordinate +223310 subordinate +coordinate +223315 coordinate +223327 subordinate +subordinate +223335 subordinate +223338 subordinate +coordinate +223342 coordinate +223344 coordinate +223350 coordinate +223361 coordinate +223378 subordinate +223380 subordinate +223387 subordinate +223405 coordinate +223410 coordinate +223413 coordinate +223418 coordinate +223459 coordinate +223470 coordinate +223473 coordinate +223476 coordinate +coordinate +223480 coordinate +223486 coordinate +223502 coordinate +223523 coordinate +subordinate +223526 coordinate +subordinate +223533 coordinate +223538 coordinate +223545 subordinate +223553 subordinate +223563 subordinate +coordinate +223568 coordinate +coordinate +223573 coordinate +223590 subordinate +coordinate +223593 coordinate +223595 coordinate +223598 coordinate +223601 coordinate +223604 subordinate +223608 coordinate +subordinate +223617 subordinate +223636 subordinate +223642 subordinate +223651 subordinate +223668 subordinate +223673 coordinate +223676 subordinate +223678 coordinate +223680 subordinate +223689 subordinate +223705 subordinate +223717 coordinate +coordinate +223723 coordinate +223730 coordinate +223735 coordinate +223749 coordinate +223754 coordinate +223766 subordinate +223776 subordinate +223791 coordinate +223794 coordinate +223799 subordinate +coordinate +223806 coordinate +223814 subordinate +223834 subordinate +223841 subordinate +223857 coordinate +subordinate +223860 coordinate +223867 subordinate +223882 subordinate +223917 subordinate +223935 coordinate +223939 subordinate +223947 coordinate +223961 subordinate +223966 subordinate +coordinate +223970 coordinate +223982 subordinate +223988 coordinate +223991 subordinate +223998 coordinate +224014 coordinate +224016 coordinate +224020 subordinate +224047 subordinate +224065 subordinate +224084 coordinate +224086 coordinate +224092 subordinate +224109 subordinate +224113 coordinate +224116 coordinate +224126 coordinate +224128 coordinate +224132 subordinate +224141 subordinate +224154 coordinate +224157 coordinate +224173 coordinate +coordinate +224194 subordinate +224198 subordinate +224236 coordinate +224238 coordinate +224256 coordinate +224267 coordinate +224289 coordinate +224301 coordinate +224308 subordinate +224312 coordinate +224315 coordinate +224324 subordinate +224330 subordinate +224359 coordinate +224362 coordinate +224366 subordinate +224390 coordinate +coordinate +subordinate +224396 subordinate +subordinate +224399 coordinate +224405 coordinate +coordinate +224413 coordinate +224415 subordinate +coordinate +224424 subordinate +224436 coordinate +224442 subordinate +224454 coordinate +224459 coordinate +224466 subordinate +224477 coordinate +224489 coordinate +224498 coordinate +coordinate +224505 coordinate +224508 coordinate +224511 coordinate +224518 subordinate +224532 subordinate +224534 subordinate +224546 subordinate +224563 subordinate +224574 subordinate +subordinate +224583 subordinate +224590 coordinate +coordinate +224610 subordinate +coordinate +224618 coordinate +224628 subordinate +224630 subordinate +coordinate +224663 subordinate +224671 subordinate +224699 subordinate +224705 coordinate +224710 coordinate +224719 subordinate +224747 subordinate +224764 subordinate +224781 subordinate +224786 subordinate +224792 subordinate +224813 subordinate +224819 subordinate +224827 subordinate +224843 subordinate +224856 subordinate +224872 subordinate +224890 subordinate +224900 subordinate +224906 coordinate +subordinate +224910 coordinate +subordinate +224916 subordinate +subordinate +224919 coordinate +224922 coordinate +subordinate +224930 coordinate +coordinate +224943 coordinate +224949 coordinate +coordinate +224953 subordinate +224956 coordinate +224966 subordinate +coordinate +224969 coordinate +224978 subordinate +coordinate +224981 coordinate +224992 subordinate +224994 coordinate +224997 coordinate +225005 coordinate +225009 coordinate +225016 coordinate +subordinate +225032 subordinate +225049 subordinate +225058 subordinate +225067 coordinate +subordinate +coordinate +225073 coordinate +225079 coordinate +225086 coordinate +225091 coordinate +225106 subordinate +subordinate +225113 subordinate +225122 subordinate +225127 subordinate +225142 subordinate +225148 subordinate +225155 subordinate +225176 subordinate +225182 subordinate +225205 subordinate +225207 subordinate +subordinate +subordinate +225230 subordinate +225233 subordinate +225243 subordinate +225263 coordinate +225266 coordinate +225268 coordinate +225278 coordinate +225280 subordinate +225284 coordinate +225290 coordinate +225293 coordinate +225311 subordinate +subordinate +225316 subordinate +225325 subordinate +225330 subordinate +225336 subordinate +225358 coordinate +coordinate +225362 subordinate +225378 coordinate +225382 coordinate +225389 coordinate +225391 subordinate +225395 subordinate +225402 coordinate +coordinate +225406 subordinate +225415 subordinate +225423 coordinate +225431 coordinate +subordinate +coordinate +225443 coordinate +225477 coordinate +225482 coordinate +225523 subordinate +225536 subordinate +225550 coordinate +225557 coordinate +225566 coordinate +225571 coordinate +225579 subordinate +225587 subordinate +225592 subordinate +225599 subordinate +225607 subordinate +225614 subordinate +225620 subordinate +225623 coordinate +225627 coordinate +225634 subordinate +225653 subordinate +225672 subordinate +225674 subordinate +225678 subordinate +225691 coordinate +225694 coordinate +225715 subordinate +225720 coordinate +225723 coordinate +225726 subordinate +225728 subordinate +225741 subordinate +subordinate +225767 subordinate +225797 coordinate +coordinate +225802 subordinate +225809 subordinate +225823 subordinate +225827 subordinate +225832 subordinate +subordinate +225845 coordinate +225849 subordinate +225851 coordinate +225861 subordinate +225866 subordinate +225885 subordinate +coordinate +subordinate +225914 subordinate +225921 subordinate +coordinate +225926 coordinate +225952 coordinate +225954 coordinate +226000 subordinate +226010 subordinate +226012 subordinate +226020 subordinate +226044 coordinate +226046 coordinate +226054 subordinate +226095 subordinate +226111 coordinate +226120 subordinate +226122 coordinate +226135 coordinate +226146 coordinate +226151 coordinate +226156 coordinate +coordinate +226169 coordinate +226171 coordinate +226176 subordinate +226196 coordinate +226199 coordinate +226216 coordinate +subordinate +226220 coordinate +subordinate +226236 subordinate +226248 coordinate +subordinate +226254 coordinate +subordinate +226265 coordinate +subordinate +226268 coordinate +subordinate +226301 subordinate +226308 coordinate +226311 coordinate +226316 subordinate +coordinate +226319 subordinate +subordinate +coordinate +226324 coordinate +226331 subordinate +226334 coordinate +subordinate +226360 coordinate +226366 coordinate +226369 subordinate +226383 subordinate +226391 subordinate +226405 subordinate +226416 subordinate +226419 coordinate +226423 coordinate +226443 subordinate +226451 subordinate +coordinate +226454 coordinate +subordinate +226466 coordinate +226473 coordinate +226499 coordinate +226502 coordinate +226507 subordinate +coordinate +226513 coordinate +subordinate +226539 subordinate +226556 subordinate +226564 subordinate +226590 subordinate +226592 subordinate +coordinate +226611 coordinate +226614 coordinate +226634 subordinate +226637 subordinate +226646 subordinate +226654 subordinate +226658 subordinate +226663 subordinate +226668 subordinate +226691 coordinate +226695 coordinate +226707 coordinate +226714 coordinate +226738 coordinate +226761 subordinate +226763 subordinate +226802 coordinate +226805 coordinate +226808 coordinate +coordinate +226811 coordinate +226837 subordinate +226840 subordinate +226849 coordinate +226865 subordinate +226869 subordinate +226906 subordinate +226923 subordinate +coordinate +226929 coordinate +226947 subordinate +226953 coordinate +226957 coordinate +226964 subordinate +226970 subordinate +226976 subordinate +226984 subordinate +226992 subordinate +coordinate +226997 coordinate +coordinate +subordinate +227002 coordinate +227015 subordinate +227017 coordinate +227019 coordinate +227027 subordinate +227032 coordinate +227035 coordinate +227039 coordinate +coordinate +227045 subordinate +227059 coordinate +227068 subordinate +227071 subordinate +227076 subordinate +subordinate +227083 subordinate +227088 subordinate +coordinate +227095 coordinate +227108 subordinate +227112 subordinate +227116 coordinate +227120 subordinate +227125 coordinate +227144 subordinate +227150 coordinate +227155 coordinate +227173 subordinate +coordinate +227177 coordinate +227184 subordinate +227193 subordinate +227205 subordinate +coordinate +227210 coordinate +227224 coordinate +227226 coordinate +227229 subordinate +227257 subordinate +227267 coordinate +227270 coordinate +227298 subordinate +coordinate +227301 subordinate +subordinate +227308 subordinate +227315 subordinate +coordinate +227321 coordinate +227326 coordinate +227331 coordinate +227346 coordinate +227348 subordinate +227354 coordinate +227356 subordinate +227360 coordinate +subordinate +227366 coordinate +subordinate +227372 coordinate +227376 coordinate +227380 coordinate +227395 coordinate +227398 coordinate +227400 coordinate +227402 coordinate +227404 coordinate +227406 coordinate +227408 coordinate +227410 coordinate +227412 coordinate +227416 coordinate +227423 coordinate +227425 coordinate +227430 subordinate +227433 subordinate +227439 coordinate +227441 coordinate +227456 subordinate +227465 coordinate +coordinate +227479 subordinate +227485 subordinate +227489 subordinate +227496 coordinate +227500 coordinate +227508 subordinate +227514 subordinate +227517 coordinate +227525 coordinate +227533 coordinate +227547 subordinate +227551 coordinate +227554 coordinate +227566 subordinate +227586 subordinate +227601 subordinate +227603 subordinate +227611 coordinate +227615 coordinate +227619 coordinate +227623 coordinate +227630 subordinate +227643 coordinate +227646 coordinate +coordinate +coordinate +coordinate +227651 coordinate +subordinate +227665 subordinate +227683 subordinate +227686 subordinate +227689 subordinate +subordinate +subordinate +227694 coordinate +227697 coordinate +227702 coordinate +227707 coordinate +227714 subordinate +227716 coordinate +227719 coordinate +227722 coordinate +227728 coordinate +227733 coordinate +227749 coordinate +subordinate +227752 coordinate +227758 coordinate +227764 coordinate +227770 subordinate +227789 subordinate +227791 subordinate +227796 coordinate +227799 coordinate +227818 subordinate +227823 coordinate +227827 coordinate +227832 coordinate +227835 coordinate +227840 coordinate +227842 subordinate +227846 coordinate +227848 subordinate +227856 coordinate +subordinate +227859 coordinate +subordinate +227869 subordinate +227873 subordinate +227899 coordinate +227902 coordinate +227935 subordinate +227940 subordinate +227945 subordinate +227964 coordinate +227970 coordinate +227980 coordinate +227987 coordinate +228011 coordinate +228013 coordinate +228023 coordinate +228025 coordinate +228027 coordinate +228043 subordinate +228049 subordinate +228054 subordinate +228060 subordinate +228067 subordinate +coordinate +228073 coordinate +228100 subordinate +228104 subordinate +228124 subordinate +228130 subordinate +228146 subordinate +228155 subordinate +228162 coordinate +228167 coordinate +228174 coordinate +228178 coordinate +228197 coordinate +228200 coordinate +228214 subordinate +228253 subordinate +228259 subordinate +subordinate +228275 subordinate +228280 subordinate +228284 subordinate +228301 coordinate +subordinate +228304 subordinate +228318 subordinate +subordinate +228330 subordinate +228332 subordinate +228334 subordinate +coordinate +228338 coordinate +228341 coordinate +subordinate +228345 coordinate +subordinate +228358 coordinate +228363 coordinate +228370 subordinate +228376 subordinate +subordinate +coordinate +228380 coordinate +228383 subordinate +228389 subordinate +228396 subordinate +228408 coordinate +228410 coordinate +228415 subordinate +228419 subordinate +228425 subordinate +coordinate +228428 coordinate +228438 subordinate +228459 subordinate +228466 subordinate +coordinate +228475 coordinate +228483 subordinate +subordinate +228505 subordinate +228512 subordinate +coordinate +228518 coordinate +228524 subordinate +228707 coordinate +subordinate +228720 coordinate +228725 coordinate +coordinate +228732 coordinate +228736 coordinate +228753 coordinate +228756 coordinate +subordinate +coordinate +228762 coordinate +228830 subordinate +228842 subordinate +coordinate +coordinate +228847 coordinate +228849 coordinate +228893 subordinate +228947 subordinate +228952 subordinate +subordinate +228956 subordinate +229001 coordinate +229004 coordinate +coordinate +229008 coordinate +229037 coordinate +229039 coordinate +229041 coordinate +229043 coordinate +229050 coordinate +229053 coordinate +229065 subordinate +229089 subordinate +coordinate +coordinate +229096 subordinate +229104 coordinate +229112 coordinate +229121 coordinate +229126 coordinate +229151 subordinate +229166 subordinate +229170 subordinate +229172 coordinate +229174 coordinate +229180 subordinate +229183 coordinate +229185 coordinate +229187 coordinate +229200 subordinate +coordinate +229207 coordinate +229220 coordinate +229222 coordinate +coordinate +229234 subordinate +229243 subordinate +229259 subordinate +229263 subordinate +229281 subordinate +229290 subordinate +229292 subordinate +229306 subordinate +229311 subordinate +229314 coordinate +229340 subordinate +229351 coordinate +229355 coordinate +229392 subordinate +229394 subordinate +229405 subordinate +coordinate +229408 coordinate +229410 coordinate +229413 subordinate +229440 subordinate +229453 subordinate +229461 coordinate +229465 coordinate +229472 subordinate +229486 subordinate +229497 subordinate +229500 subordinate +229502 subordinate +229506 coordinate +229509 coordinate +229523 subordinate +coordinate +229526 coordinate +229538 subordinate +229544 subordinate +229549 subordinate +229555 coordinate +229557 coordinate +229563 subordinate +229568 coordinate +229585 subordinate +229590 coordinate +229594 coordinate +229598 subordinate +coordinate +229601 coordinate +229605 coordinate +229609 coordinate +229612 subordinate +229616 coordinate +229624 coordinate +229641 coordinate +229652 coordinate +229661 subordinate +229674 subordinate +229686 subordinate +coordinate +229690 coordinate +229699 subordinate +229708 subordinate +229712 coordinate +coordinate +229715 coordinate +subordinate +229722 coordinate +229725 coordinate +229733 subordinate +229751 subordinate +subordinate +229759 subordinate +229796 coordinate +229808 subordinate +229810 subordinate +229812 coordinate +coordinate +229815 coordinate +229819 subordinate +229848 coordinate +coordinate +229851 coordinate +229854 coordinate +229861 subordinate +subordinate +229867 subordinate +229869 coordinate +229874 coordinate +229895 subordinate +229900 subordinate +229902 subordinate +229919 subordinate +229921 subordinate +subordinate +229937 subordinate +229948 subordinate +229955 coordinate +229958 coordinate +229962 coordinate +229964 coordinate +229967 coordinate +229969 coordinate +229972 coordinate +229983 coordinate +subordinate +229989 coordinate +subordinate +coordinate +subordinate +coordinate +subordinate +230006 coordinate +subordinate +230009 coordinate +230014 subordinate +230017 subordinate +230024 subordinate +230055 subordinate +230062 subordinate +230067 coordinate +230071 subordinate +230082 subordinate +coordinate +230088 coordinate +230094 coordinate +230098 coordinate +230115 subordinate +230121 coordinate +230126 subordinate +230136 subordinate +230138 coordinate +230141 coordinate +230143 subordinate +subordinate +230170 subordinate +230195 subordinate +230223 subordinate +230237 subordinate +subordinate +subordinate +230245 subordinate +230249 subordinate +230251 subordinate +230263 subordinate +230282 subordinate +230285 subordinate +coordinate +230290 coordinate +230304 subordinate +230319 subordinate +230336 subordinate +230344 coordinate +230347 coordinate +230353 subordinate +230365 coordinate +230369 coordinate +230398 coordinate +230400 coordinate +230402 coordinate +230418 coordinate +230420 coordinate +230423 coordinate +230425 coordinate +230429 coordinate +230433 coordinate +230446 coordinate +230452 coordinate +230459 subordinate +230461 coordinate +230464 coordinate +230478 subordinate +230513 coordinate +230521 coordinate +230543 coordinate +230559 subordinate +subordinate +230564 coordinate +230570 coordinate +230575 coordinate +230580 coordinate +230586 coordinate +230591 coordinate +230597 coordinate +230603 coordinate +230610 subordinate +230616 subordinate +coordinate +230620 coordinate +230624 subordinate +230638 subordinate +230650 coordinate +230652 coordinate +230663 subordinate +230670 subordinate +230672 subordinate +coordinate +subordinate +230676 coordinate +230684 subordinate +coordinate +coordinate +230691 subordinate +coordinate +230694 coordinate +230697 coordinate +230708 subordinate +coordinate +230713 coordinate +subordinate +230723 coordinate +230726 coordinate +subordinate +230733 coordinate +230740 coordinate +230748 subordinate +coordinate +subordinate +230754 coordinate +230759 subordinate +230791 subordinate +230794 subordinate +230797 subordinate +230808 subordinate +230818 coordinate +coordinate +230822 coordinate +230825 coordinate +230837 subordinate +230844 subordinate +subordinate +230852 subordinate +230859 subordinate +230876 coordinate +230881 coordinate +230883 subordinate +230885 subordinate +230889 subordinate +230893 subordinate +230911 subordinate +230916 subordinate +230921 coordinate +230925 coordinate +230938 coordinate +230942 subordinate +subordinate +230945 coordinate +230948 subordinate +subordinate +230951 coordinate +230954 subordinate +subordinate +230957 coordinate +230960 subordinate +subordinate +230963 coordinate +230967 subordinate +subordinate +230979 subordinate +230991 coordinate +231000 coordinate +231013 subordinate +231037 coordinate +subordinate +coordinate +231049 coordinate +231051 subordinate +subordinate +231057 subordinate +231059 coordinate +subordinate +subordinate +231069 subordinate +coordinate +231074 subordinate +231076 coordinate +coordinate +231093 coordinate +231099 coordinate +231105 subordinate +231113 subordinate +231115 subordinate +subordinate +231122 coordinate +231125 subordinate +231130 coordinate +subordinate +231142 coordinate +231145 coordinate +231150 subordinate +subordinate +231154 subordinate +subordinate +231160 subordinate +231172 coordinate +231176 coordinate +231179 subordinate +231183 coordinate +231186 subordinate +231193 subordinate +coordinate +231196 coordinate +231198 coordinate +coordinate +231204 coordinate +231208 coordinate +231211 coordinate +231216 coordinate +231220 coordinate +231235 subordinate +231237 coordinate +231240 subordinate +231250 subordinate +231254 subordinate +231270 subordinate +subordinate +231280 subordinate +231301 subordinate +coordinate +231306 coordinate +231310 subordinate +231316 subordinate +231323 subordinate +231347 subordinate +231367 subordinate +231373 subordinate +231376 subordinate +231391 subordinate +231397 coordinate +231399 coordinate +231405 coordinate +231407 coordinate +231415 coordinate +231418 coordinate +231429 subordinate +231444 subordinate +coordinate +subordinate +231451 coordinate +231460 subordinate +231463 subordinate +231469 subordinate +231478 coordinate +231482 coordinate +231484 subordinate +231512 subordinate +231524 subordinate +231527 subordinate +coordinate +subordinate +231531 coordinate +231538 subordinate +231548 subordinate +231553 subordinate +231558 subordinate +231567 subordinate +231579 subordinate +231582 subordinate +231592 subordinate +231598 subordinate +231601 subordinate +231608 subordinate +coordinate +231611 coordinate +231614 subordinate +231620 subordinate +231626 subordinate +231633 subordinate +231644 coordinate +231646 coordinate +231651 subordinate +231664 subordinate +231667 coordinate +231673 subordinate +subordinate +231676 subordinate +subordinate +231682 coordinate +231686 coordinate +231690 subordinate +231698 coordinate +231705 coordinate +231709 coordinate +231719 coordinate +coordinate +231725 coordinate +231735 subordinate +231750 subordinate +231762 subordinate +231769 subordinate +231774 coordinate +231776 subordinate +231780 coordinate +subordinate +231786 subordinate +coordinate +231790 coordinate +231798 subordinate +coordinate +231802 coordinate +231809 subordinate +coordinate +231813 coordinate +231819 coordinate +231821 coordinate +231835 subordinate +231841 subordinate +231849 coordinate +subordinate +231852 subordinate +coordinate +231860 subordinate +231870 subordinate +231873 subordinate +231898 subordinate +231902 subordinate +231925 coordinate +231928 coordinate +231934 coordinate +subordinate +231940 coordinate +subordinate +231946 subordinate +coordinate +231950 coordinate +231954 subordinate +coordinate +231958 coordinate +231969 coordinate +231971 coordinate +231974 coordinate +231976 coordinate +231979 coordinate +231982 coordinate +231992 subordinate +232006 subordinate +coordinate +232011 coordinate +subordinate +232017 subordinate +232027 coordinate +232043 subordinate +232052 subordinate +232055 subordinate +232061 coordinate +232063 coordinate +232065 coordinate +232079 subordinate +232081 subordinate +232088 subordinate +232093 subordinate +232098 subordinate +coordinate +232101 coordinate +232103 subordinate +232112 coordinate +232118 coordinate +232122 coordinate +232129 subordinate +232132 subordinate +232140 subordinate +232159 subordinate +232164 subordinate +232173 coordinate +subordinate +232176 subordinate +232181 coordinate +232187 coordinate +232189 coordinate +232195 coordinate +232198 coordinate +232205 subordinate +232214 coordinate +232217 coordinate +232225 subordinate +232234 coordinate +232244 subordinate +subordinate +232258 subordinate +232262 subordinate +232264 subordinate +232271 subordinate +subordinate +232274 coordinate +232277 coordinate +232284 subordinate +232286 subordinate +232300 coordinate +subordinate +232304 coordinate +232310 subordinate +232314 subordinate +232326 subordinate +232329 subordinate +coordinate +232337 coordinate +232339 coordinate +232341 coordinate +232354 coordinate +232359 coordinate +232374 subordinate +232377 coordinate +232385 coordinate +subordinate +232419 subordinate +232431 coordinate +232435 coordinate +232442 subordinate +232446 subordinate +232448 subordinate +coordinate +232452 coordinate +232465 coordinate +232467 coordinate +coordinate +232472 coordinate +232484 subordinate +232488 coordinate +232494 coordinate +232499 subordinate +232505 subordinate +232509 subordinate +232517 subordinate +232524 subordinate +232527 subordinate +232533 subordinate +subordinate +232542 subordinate +232548 subordinate +232554 subordinate +subordinate +232564 subordinate +232573 subordinate +232579 coordinate +232582 coordinate +232588 coordinate +232591 coordinate +232597 coordinate +232600 coordinate +232621 coordinate +232636 coordinate +232642 coordinate +232645 coordinate +232652 coordinate +232664 subordinate +232667 subordinate +232672 subordinate +coordinate +coordinate +232677 coordinate +232680 coordinate +232685 subordinate +232706 coordinate +232722 subordinate +232739 subordinate +232751 subordinate +232758 subordinate +232771 subordinate +232776 subordinate +232784 coordinate +232786 coordinate +232790 coordinate +232797 coordinate +232806 coordinate +coordinate +232811 subordinate +subordinate +232818 subordinate +232823 coordinate +232828 coordinate +232836 subordinate +232841 subordinate +coordinate +232846 coordinate +232855 subordinate +232862 subordinate +232878 subordinate +232882 subordinate +coordinate +coordinate +coordinate +coordinate +coordinate +232927 subordinate +coordinate +232936 coordinate +232940 subordinate +232943 subordinate +232948 coordinate +coordinate +subordinate +coordinate +232953 coordinate +232961 coordinate +subordinate +232965 subordinate +subordinate +232968 coordinate +232974 coordinate +coordinate +subordinate +232982 coordinate +232987 subordinate +232989 coordinate +232992 coordinate +232994 coordinate +232996 coordinate +coordinate +232999 coordinate +coordinate +coordinate +233003 coordinate +coordinate +233006 coordinate +coordinate +233010 coordinate +233014 coordinate +coordinate +coordinate +coordinate +233024 coordinate +233026 subordinate +233028 coordinate +233030 subordinate +233032 coordinate +233034 subordinate +233039 coordinate +233042 coordinate +233048 subordinate +233055 subordinate +233057 coordinate +233059 coordinate +233061 coordinate +233066 subordinate +233072 coordinate +233076 coordinate +233080 coordinate +233085 subordinate +233089 coordinate +233095 coordinate +233099 coordinate +coordinate +233103 coordinate +233106 coordinate +233112 coordinate +233116 coordinate +233118 subordinate +coordinate +233121 coordinate +233142 coordinate +subordinate +233146 coordinate +233152 coordinate +233156 coordinate +233162 subordinate +233170 subordinate +233172 subordinate +233175 subordinate +233191 subordinate +233198 subordinate +233211 subordinate +233219 subordinate +233234 coordinate +233236 subordinate +233242 coordinate +233247 subordinate +233252 coordinate +233256 coordinate +233266 subordinate +233281 subordinate +233285 coordinate +233287 subordinate +233292 coordinate +233302 coordinate +233305 coordinate +233309 coordinate +233312 coordinate +233316 subordinate +233319 subordinate +233337 coordinate +233339 coordinate +233351 subordinate +233356 subordinate +233359 coordinate +233365 coordinate +coordinate +233368 coordinate +233371 coordinate +233380 coordinate +233389 coordinate +233394 coordinate +233402 coordinate +233412 subordinate +coordinate +coordinate +233420 coordinate +233422 coordinate +233433 subordinate +coordinate +233436 coordinate +233441 coordinate +coordinate +233444 coordinate +233446 coordinate +233452 coordinate +subordinate +233468 subordinate +233470 coordinate +coordinate +coordinate +coordinate +coordinate +233481 subordinate +233483 coordinate +233493 coordinate +233497 coordinate +233499 subordinate +233503 coordinate +233510 coordinate +233514 coordinate +233520 subordinate +233522 subordinate +233530 subordinate +233532 subordinate +coordinate +233535 coordinate +233537 coordinate +233542 coordinate +233544 coordinate +233549 subordinate +233560 subordinate +subordinate +233567 subordinate +233575 subordinate +subordinate +233582 subordinate +subordinate +233588 coordinate +233594 coordinate +233599 subordinate +subordinate +233604 subordinate +233612 subordinate +233619 coordinate +233623 coordinate +233639 coordinate +coordinate +coordinate +233643 coordinate +233649 subordinate +233652 subordinate +233657 subordinate +233659 coordinate +233667 coordinate +233670 coordinate +233678 coordinate +233688 coordinate +233693 coordinate +233705 subordinate +233716 subordinate +subordinate +233724 coordinate +coordinate +233727 subordinate +233729 coordinate +233736 coordinate +coordinate +233740 coordinate +233750 coordinate +233755 coordinate +233774 subordinate +233780 subordinate +233782 subordinate +233805 subordinate +subordinate +233811 subordinate +233816 subordinate +233834 subordinate +233853 subordinate +233862 subordinate +233887 subordinate +233893 subordinate +233903 subordinate +233905 subordinate +233930 subordinate +233940 subordinate +233949 subordinate +233954 subordinate +233962 subordinate +233985 subordinate +233993 subordinate +coordinate +233996 coordinate +233998 subordinate +234008 coordinate +234010 coordinate +234012 subordinate +234021 coordinate +234024 coordinate +234030 subordinate +subordinate +234037 coordinate +234042 coordinate +234046 subordinate +234057 subordinate +234059 coordinate +234065 coordinate +234069 coordinate +234071 coordinate +234073 coordinate +234076 coordinate +234079 coordinate +234091 coordinate +234096 coordinate +234101 coordinate +234104 coordinate +234107 coordinate +234146 subordinate +234158 subordinate +234164 subordinate +234168 coordinate +234170 coordinate +234202 subordinate +234216 coordinate +234219 subordinate +234222 coordinate +234231 coordinate +234233 coordinate +234244 coordinate +234246 coordinate +234249 coordinate +234253 subordinate +coordinate +234258 coordinate +234265 subordinate +coordinate +234270 coordinate +234294 coordinate +234300 coordinate +234325 subordinate +234332 subordinate +234348 subordinate +234360 subordinate +234365 subordinate +subordinate +subordinate +234372 subordinate +234378 subordinate +234386 subordinate +234396 subordinate +234398 subordinate +234402 coordinate +234404 subordinate +234406 coordinate +234408 subordinate +subordinate +234415 subordinate +234418 subordinate +234423 subordinate +234434 coordinate +234439 coordinate +subordinate +234446 subordinate +234451 subordinate +234465 subordinate +234468 subordinate +234474 coordinate +234489 coordinate +234492 subordinate +234495 coordinate +coordinate +234499 coordinate +coordinate +234516 coordinate +234520 coordinate +234532 coordinate +234534 coordinate +234546 subordinate +234550 subordinate +234592 subordinate +234680 subordinate +234693 subordinate +234707 subordinate +234740 subordinate +234749 subordinate +234762 subordinate +subordinate +234776 subordinate +coordinate +234780 coordinate +234790 coordinate +234794 coordinate +234807 subordinate +234827 coordinate +234841 coordinate +234846 coordinate +234848 subordinate +234850 coordinate +234852 coordinate +234859 subordinate +234865 subordinate +234878 subordinate +234882 subordinate +234886 coordinate +234890 coordinate +234894 coordinate +234902 subordinate +234909 subordinate +234911 subordinate +234935 coordinate +234953 coordinate +234976 coordinate +234980 coordinate +234985 coordinate +234987 coordinate +235003 subordinate +235009 coordinate +235012 coordinate +235016 subordinate +235031 subordinate +235036 subordinate +235044 subordinate +subordinate +subordinate +235048 subordinate +subordinate +235069 coordinate +subordinate +coordinate +subordinate +235081 subordinate +coordinate +235087 subordinate +235098 subordinate +235111 subordinate +235122 subordinate +235135 subordinate +235140 subordinate +235144 subordinate +235151 coordinate +235159 coordinate +235162 coordinate +235171 coordinate +subordinate +235181 coordinate +235185 coordinate +235194 subordinate +235208 coordinate +235214 coordinate +235232 subordinate +235234 coordinate +235236 coordinate +subordinate +235240 coordinate +subordinate +235248 subordinate +235277 subordinate +235284 subordinate +235301 coordinate +235304 subordinate +235307 coordinate +235321 coordinate +235324 coordinate +235330 subordinate +235334 subordinate +235337 subordinate +subordinate +235341 subordinate +235363 subordinate +235382 subordinate +235387 subordinate +235398 coordinate +subordinate +235403 coordinate +235405 subordinate +235437 subordinate +235439 subordinate +235449 subordinate +235458 subordinate +235471 subordinate +235479 subordinate +subordinate +235488 subordinate +235501 subordinate +235503 coordinate +coordinate +235508 subordinate +coordinate +coordinate +235513 coordinate +235517 coordinate +235530 subordinate +235566 coordinate +coordinate +coordinate +235571 coordinate +235575 subordinate +235603 subordinate +coordinate +235610 coordinate +235615 coordinate +coordinate +235619 coordinate +coordinate +coordinate +235623 coordinate +coordinate +coordinate +235627 coordinate +coordinate +coordinate +235631 coordinate +235640 subordinate +235658 subordinate +235670 coordinate +235674 coordinate +235680 subordinate +235697 coordinate +235705 coordinate +235714 subordinate +235716 subordinate +235727 coordinate +235729 coordinate +coordinate +subordinate +235737 coordinate +235756 coordinate +235759 coordinate +235765 coordinate +235769 coordinate +235778 subordinate +235795 subordinate +subordinate +235803 subordinate +235805 subordinate +235814 subordinate +235816 subordinate +subordinate +235820 subordinate +235840 coordinate +coordinate +235843 coordinate +235847 subordinate +235853 subordinate +235858 coordinate +coordinate +235861 coordinate +subordinate +coordinate +235867 coordinate +235873 subordinate +235877 subordinate +235881 subordinate +235894 subordinate +235897 coordinate +235899 coordinate +235903 subordinate +235910 coordinate +235912 coordinate +subordinate +235921 coordinate +coordinate +235926 subordinate +235930 coordinate +235933 coordinate +235956 subordinate +235962 subordinate +235980 subordinate +235988 subordinate +236006 coordinate +236009 coordinate +236014 subordinate +236018 subordinate +coordinate +236023 coordinate +236034 subordinate +236048 subordinate +236054 subordinate +subordinate +236063 coordinate +236066 coordinate +236077 coordinate +236082 subordinate +236085 coordinate +236129 coordinate +236131 subordinate +236134 coordinate +236136 subordinate +236139 coordinate +236141 subordinate +236145 coordinate +236147 subordinate +236150 coordinate +236152 subordinate +236155 coordinate +236157 subordinate +236160 coordinate +236162 subordinate +236176 coordinate +236179 coordinate +236191 subordinate +236200 coordinate +236204 coordinate +236209 coordinate +236213 coordinate +236226 subordinate +236232 coordinate +coordinate +236236 coordinate +236238 coordinate +coordinate +236242 coordinate +236249 coordinate +coordinate +236254 coordinate +236256 coordinate +236260 coordinate +236262 coordinate +236265 coordinate +236275 subordinate +236283 subordinate +236290 coordinate +coordinate +coordinate +236330 coordinate +236333 coordinate +coordinate +236336 coordinate +coordinate +236364 subordinate +236374 subordinate +subordinate +subordinate +236379 subordinate +236385 subordinate +236392 subordinate +subordinate +236398 coordinate +subordinate +coordinate +subordinate +236408 subordinate +236445 subordinate +236451 subordinate +236489 subordinate +236496 subordinate +236499 coordinate +coordinate +236502 subordinate +236529 subordinate +236575 subordinate +236589 coordinate +coordinate +236593 subordinate +236595 coordinate +236608 subordinate +236617 subordinate +236637 coordinate +236639 coordinate +236660 subordinate +236662 subordinate +236690 subordinate +236705 subordinate +236709 subordinate +236713 subordinate +236718 coordinate +236722 coordinate +236734 subordinate +236742 subordinate +236747 coordinate +236752 coordinate +236770 subordinate +236772 coordinate +236775 coordinate +subordinate +236785 coordinate +236795 coordinate +subordinate +coordinate +coordinate +236817 subordinate +236844 subordinate +coordinate +236847 coordinate +236855 coordinate +236865 coordinate +236901 subordinate +coordinate +236912 coordinate +236924 subordinate +236934 subordinate +236936 subordinate +236943 subordinate +coordinate +236947 coordinate +subordinate +236950 subordinate +236963 coordinate +236966 coordinate +236969 subordinate +236971 subordinate +236981 coordinate +236985 coordinate +236996 subordinate +237004 subordinate +237013 subordinate +237017 subordinate +237019 subordinate +237027 coordinate +coordinate +237030 coordinate +237038 coordinate +237041 coordinate +237045 coordinate +237052 coordinate +237067 subordinate +coordinate +237078 coordinate +237084 coordinate +237111 coordinate +237117 subordinate +237141 subordinate +237143 coordinate +237147 coordinate +subordinate +237155 subordinate +237159 subordinate +237164 subordinate +subordinate +237172 subordinate +237176 subordinate +coordinate +237183 coordinate +237188 coordinate +237193 subordinate +237199 coordinate +237206 coordinate +237209 subordinate +237212 subordinate +237222 subordinate +subordinate +237229 subordinate +237236 subordinate +237253 subordinate +subordinate +subordinate +237264 coordinate +237269 coordinate +coordinate +237275 coordinate +237277 subordinate +237287 subordinate +subordinate +237293 subordinate +237302 subordinate +coordinate +237306 coordinate +237310 coordinate +237314 coordinate +237322 subordinate +237329 subordinate +subordinate +237333 subordinate +237342 coordinate +237348 coordinate +subordinate +237352 subordinate +coordinate +237359 coordinate +237363 coordinate +237381 coordinate +237398 subordinate +237400 subordinate +237411 subordinate +237432 subordinate +coordinate +237440 coordinate +237453 subordinate +237459 coordinate +237461 subordinate +237468 coordinate +237478 subordinate +237480 subordinate +237486 coordinate +237488 subordinate +237493 coordinate +subordinate +coordinate +237498 coordinate +237505 subordinate +237519 subordinate +237531 subordinate +237540 subordinate +subordinate +237549 subordinate +subordinate +237558 subordinate +237566 subordinate +237575 subordinate +237590 subordinate +237596 subordinate +237599 subordinate +subordinate +237603 subordinate +237607 coordinate +subordinate +237611 coordinate +subordinate +237622 subordinate +237630 subordinate +237636 coordinate +subordinate +coordinate +subordinate +coordinate +subordinate +coordinate +subordinate +coordinate +subordinate +237651 subordinate +237680 subordinate +237684 coordinate +237686 coordinate +237688 coordinate +237690 coordinate +237694 coordinate +237698 coordinate +coordinate +coordinate +coordinate +237708 coordinate +237710 coordinate +237712 coordinate +237714 coordinate +237716 coordinate +237718 coordinate +237720 coordinate +237722 coordinate +237725 coordinate +237728 coordinate +237730 coordinate +237734 coordinate +237736 coordinate +237754 coordinate +237756 coordinate +237759 coordinate +237761 coordinate +237765 subordinate +subordinate +237788 coordinate +237796 subordinate +237798 coordinate +coordinate +237805 coordinate +237810 subordinate +237814 coordinate +237816 coordinate +237831 subordinate +237836 subordinate +237859 coordinate +237862 coordinate +237869 coordinate +237873 coordinate +237877 subordinate +237880 coordinate +237887 subordinate +237895 subordinate +subordinate +237899 subordinate +237908 subordinate +coordinate +237911 coordinate +237921 subordinate +237926 subordinate +237928 subordinate +237944 subordinate +237953 subordinate +237973 subordinate +237981 subordinate +237989 subordinate +238007 subordinate +238012 subordinate +238022 coordinate +238024 subordinate +238027 coordinate +238032 coordinate +238034 coordinate +238036 subordinate +coordinate +238039 subordinate +238041 coordinate +238055 subordinate +238064 subordinate +238075 coordinate +238077 coordinate +238117 subordinate +subordinate +238120 subordinate +238130 coordinate +238135 coordinate +238139 coordinate +238141 coordinate +238165 subordinate +coordinate +subordinate +238170 coordinate +238181 subordinate +238186 subordinate +238191 subordinate +238194 coordinate +238197 coordinate +238202 coordinate +238205 coordinate +238211 coordinate +238215 coordinate +238238 subordinate +238253 subordinate +238256 coordinate +subordinate +coordinate +subordinate +238262 coordinate +238267 coordinate +238270 coordinate +238278 subordinate +coordinate +238281 coordinate +238290 subordinate +238292 subordinate +subordinate +238309 coordinate +coordinate +coordinate +coordinate +coordinate +238315 coordinate +238317 coordinate +238397 subordinate +238423 subordinate +238434 subordinate +238437 coordinate +238439 coordinate +subordinate +238450 subordinate +238456 subordinate +238459 subordinate +238461 coordinate +238463 coordinate +238466 subordinate +238468 subordinate +238473 coordinate +238478 coordinate +subordinate +238483 subordinate +238501 coordinate +coordinate +238505 coordinate +coordinate +238521 coordinate +238527 coordinate +238529 coordinate +238538 subordinate +238550 coordinate +238555 coordinate +238559 subordinate +238564 subordinate +238578 coordinate +coordinate +238582 coordinate +238586 coordinate +238590 subordinate +238592 coordinate +238601 subordinate +238650 coordinate +238659 subordinate +238668 coordinate +238691 subordinate +subordinate +238702 subordinate +238710 subordinate +238715 subordinate +238727 subordinate +238731 subordinate +238736 subordinate +238742 subordinate +coordinate +238751 subordinate +238754 subordinate +238764 coordinate +238775 subordinate +238780 subordinate +coordinate +238785 coordinate +238795 subordinate +238802 subordinate +238807 subordinate +238812 coordinate +238822 subordinate +238825 subordinate +subordinate +238837 subordinate +238857 subordinate +subordinate +238863 subordinate +238867 coordinate +coordinate +238870 coordinate +238873 coordinate +238881 subordinate +238889 subordinate +coordinate +238894 coordinate +238898 subordinate +238906 subordinate +subordinate +subordinate +238927 subordinate +238933 coordinate +238935 coordinate +238940 subordinate +238951 coordinate +238953 coordinate +238964 subordinate +238975 subordinate +238979 subordinate +238994 subordinate +238998 subordinate +239004 coordinate +239007 coordinate +239016 subordinate +coordinate +239020 coordinate +239058 subordinate +239068 subordinate +239081 subordinate +239087 subordinate +239093 coordinate +239097 coordinate +239109 subordinate +239119 subordinate +239128 subordinate +239142 subordinate +239156 coordinate +239163 subordinate +239167 subordinate +239180 subordinate +239185 subordinate +239197 subordinate +239217 subordinate +239222 subordinate +239229 coordinate +239232 coordinate +239248 subordinate +239252 subordinate +239264 subordinate +239279 subordinate +239283 subordinate +subordinate +239292 subordinate +239312 subordinate +239316 coordinate +239319 coordinate +239322 coordinate +239335 subordinate +239347 coordinate +subordinate +239352 subordinate +239355 coordinate +239366 subordinate +subordinate +239377 subordinate +239386 subordinate +239388 subordinate +239391 subordinate +239395 subordinate +239401 subordinate +239423 subordinate +239430 coordinate +subordinate +239435 coordinate +subordinate +coordinate +239439 coordinate +239448 subordinate +239468 subordinate +239470 subordinate +239473 subordinate +239483 coordinate +239489 coordinate +coordinate +239501 subordinate +239504 subordinate +239517 subordinate +subordinate +239525 subordinate +239528 coordinate +239531 subordinate +239533 subordinate +239537 subordinate +239541 subordinate +239551 subordinate +239557 subordinate +coordinate +239561 coordinate +239565 subordinate +239573 subordinate +239596 coordinate +239602 coordinate +239609 subordinate +239617 coordinate +239621 subordinate +239625 coordinate +239627 coordinate +239633 coordinate +239637 subordinate +239658 coordinate +239660 coordinate +239665 subordinate +coordinate +239671 coordinate +239685 subordinate +239703 subordinate +239725 coordinate +239727 coordinate +239735 subordinate +239741 subordinate +239744 subordinate +239750 subordinate +239765 coordinate +239768 coordinate +239770 subordinate +239776 subordinate +239808 subordinate +239830 coordinate +239835 coordinate +239852 subordinate +239857 subordinate +239868 coordinate +239870 coordinate +239876 coordinate +239881 coordinate +239889 subordinate +239897 subordinate +239948 subordinate +239951 subordinate +subordinate +239957 subordinate +239972 coordinate +239976 coordinate +239984 subordinate +subordinate +subordinate +239991 coordinate +239995 coordinate +coordinate +240000 coordinate +240027 subordinate +coordinate +240037 coordinate +240048 subordinate +240054 subordinate +240060 subordinate +240062 coordinate +240066 coordinate +240082 subordinate +240084 subordinate +subordinate +240092 coordinate +240096 coordinate +240098 subordinate +240100 subordinate +240107 subordinate +240109 subordinate +240147 subordinate +240217 subordinate +240221 subordinate +240226 subordinate +240270 subordinate +240286 subordinate +240304 subordinate +240330 subordinate +240339 subordinate +240361 subordinate +240377 subordinate +240408 subordinate +240429 subordinate +240448 subordinate +coordinate +240452 coordinate +240467 subordinate +240480 coordinate +240485 coordinate +240532 coordinate +240541 subordinate +240552 subordinate +240558 coordinate +240561 subordinate +240569 subordinate +240575 coordinate +240577 coordinate +240579 coordinate +240585 subordinate +240594 subordinate +240623 subordinate +240628 subordinate +240637 subordinate +240665 subordinate +240675 subordinate +240700 coordinate +240703 coordinate +240719 subordinate +coordinate +240726 subordinate +240728 coordinate +240735 subordinate +240742 coordinate +subordinate +240747 coordinate +240750 subordinate +240763 coordinate +240766 coordinate +240773 subordinate +240780 subordinate +240787 subordinate +240814 subordinate +240830 subordinate +240834 subordinate +subordinate +240850 subordinate +240857 subordinate +240892 subordinate +coordinate +240900 coordinate +subordinate +240917 subordinate +240955 subordinate +240987 subordinate +240994 subordinate +241001 subordinate +241007 subordinate +coordinate +241012 subordinate +241019 coordinate +241022 subordinate +241027 subordinate +241039 subordinate +241042 subordinate +241073 subordinate +241077 subordinate +241084 subordinate +subordinate +241101 subordinate +241142 subordinate +241152 subordinate +241172 subordinate +241225 subordinate +coordinate +241228 subordinate +241246 coordinate +subordinate +241260 subordinate +241283 coordinate +241285 coordinate +241287 subordinate +241290 subordinate +241316 subordinate +241329 subordinate +241331 coordinate +241333 coordinate +241335 subordinate +subordinate +241339 subordinate +coordinate +241354 coordinate +241360 coordinate +241375 subordinate +241381 subordinate +241385 coordinate +241387 coordinate +241398 coordinate +241402 coordinate +241404 subordinate +241409 subordinate +subordinate +241415 coordinate +241422 coordinate +241424 subordinate +241429 subordinate +241463 subordinate +241474 subordinate +241480 subordinate +coordinate +241485 coordinate +241497 coordinate +241505 subordinate +241507 coordinate +241514 coordinate +241537 subordinate +241553 coordinate +241555 coordinate +241561 subordinate +241564 subordinate +241574 subordinate +241580 coordinate +241587 coordinate +241589 subordinate +241593 subordinate +241598 subordinate +241602 subordinate +241615 coordinate +241619 coordinate +241624 subordinate +241627 coordinate +subordinate +coordinate +subordinate +subordinate +241634 subordinate +241638 coordinate +241641 coordinate +subordinate +241649 coordinate +241653 coordinate +241655 subordinate +coordinate +241661 coordinate +241667 coordinate +241678 coordinate +241688 subordinate +241695 subordinate +241708 subordinate +241722 subordinate +coordinate +241728 coordinate +241733 subordinate +241739 subordinate +241742 subordinate +241744 coordinate +241750 coordinate +241758 subordinate +241762 subordinate +241773 subordinate +coordinate +241787 subordinate +241793 coordinate +coordinate +241801 coordinate +241806 coordinate +241812 coordinate +241816 coordinate +241833 subordinate +241849 subordinate +241863 subordinate +coordinate +241866 coordinate +241875 coordinate +241878 coordinate +241900 subordinate +241903 coordinate +241907 subordinate +coordinate +241910 subordinate +241913 subordinate +241921 subordinate +coordinate +241925 coordinate +241930 subordinate +241936 coordinate +241938 coordinate +241946 subordinate +241951 coordinate +241959 coordinate +241980 subordinate +241986 subordinate +242017 subordinate +subordinate +coordinate +242025 coordinate +subordinate +242030 subordinate +coordinate +242036 coordinate +242041 coordinate +242048 subordinate +242056 subordinate +242078 subordinate +coordinate +242106 subordinate +242119 subordinate +subordinate +242125 subordinate +242146 subordinate +coordinate +242151 coordinate +242216 subordinate +242243 subordinate +242250 subordinate +subordinate +242271 subordinate +242306 subordinate +242311 subordinate +242333 subordinate +subordinate +coordinate +242347 coordinate +242351 subordinate +242355 subordinate +242362 coordinate +242368 coordinate +242375 coordinate +242388 subordinate +subordinate +242399 coordinate +242405 coordinate +242431 subordinate +subordinate +coordinate +242436 coordinate +242451 coordinate +242455 coordinate +242462 subordinate +242470 subordinate +242477 subordinate +242482 coordinate +242484 coordinate +242487 subordinate +242498 subordinate +242512 subordinate +242532 subordinate +242534 coordinate +coordinate +242537 coordinate +242539 coordinate +242547 subordinate +242553 subordinate +242559 coordinate +coordinate +242563 coordinate +242566 coordinate +242569 subordinate +242582 subordinate +242587 coordinate +242590 coordinate +242596 coordinate +subordinate +242600 coordinate +subordinate +242604 coordinate +subordinate +242608 coordinate +subordinate +242620 subordinate +242623 subordinate +242626 coordinate +242634 subordinate +242636 coordinate +242638 coordinate +242649 coordinate +subordinate +242656 coordinate +subordinate +242659 subordinate +242667 subordinate +subordinate +242677 coordinate +242681 coordinate +242688 subordinate +coordinate +242699 coordinate +242701 subordinate +242713 subordinate +subordinate +subordinate +coordinate +242720 coordinate +242751 subordinate +242762 subordinate +242766 subordinate +subordinate +242769 subordinate +242775 subordinate +coordinate +242778 coordinate +242784 subordinate +242793 coordinate +242795 coordinate +242800 coordinate +242804 coordinate +242810 subordinate +242812 subordinate +subordinate +242825 subordinate +242838 subordinate +242840 subordinate +242849 coordinate +subordinate +subordinate +subordinate +242865 subordinate +242881 subordinate +coordinate +242886 coordinate +242906 subordinate +242912 subordinate +242914 subordinate +242920 coordinate +242925 coordinate +242933 subordinate +242936 subordinate +242951 subordinate +242953 subordinate +242955 coordinate +242957 coordinate +242960 coordinate +242962 coordinate +242965 coordinate +242974 coordinate +242977 coordinate +242981 coordinate +242983 subordinate +subordinate +242990 subordinate +242992 subordinate +242997 coordinate +coordinate +243001 coordinate +243003 coordinate +243006 coordinate +243008 coordinate +243010 subordinate +243012 coordinate +243030 subordinate +243043 coordinate +243047 coordinate +243049 subordinate +coordinate +243052 coordinate +243054 subordinate +243081 subordinate +243094 coordinate +243096 coordinate +243098 coordinate +243102 subordinate +243109 subordinate +243115 subordinate +243117 coordinate +243120 coordinate +243141 subordinate +243150 subordinate +243155 coordinate +243158 coordinate +243163 subordinate +243169 coordinate +243171 coordinate +subordinate +subordinate +243183 coordinate +243188 coordinate +243224 subordinate +243243 coordinate +243245 coordinate +243290 coordinate +243292 coordinate +243328 subordinate +subordinate +subordinate +subordinate +subordinate +subordinate +243335 coordinate +subordinate +243338 coordinate +subordinate +243367 coordinate +243370 coordinate +243373 subordinate +243377 subordinate +subordinate +subordinate +243383 subordinate +243385 subordinate +243392 subordinate +243395 coordinate +243397 coordinate +243400 coordinate +243402 coordinate +243411 subordinate +243423 subordinate +243435 subordinate +243438 subordinate +243449 coordinate +243452 coordinate +243462 coordinate +243464 coordinate +243467 subordinate +243517 coordinate +243521 coordinate +243572 subordinate +243574 subordinate +243608 subordinate +243627 subordinate +243633 subordinate +243658 subordinate +243675 subordinate +243679 subordinate +coordinate +coordinate +243686 coordinate +243690 coordinate +243702 coordinate +243718 coordinate +243724 coordinate +243750 subordinate +243775 coordinate +243782 coordinate +243785 coordinate +243803 subordinate +subordinate +243806 subordinate +subordinate +coordinate +243813 coordinate +243818 subordinate +243838 coordinate +subordinate +subordinate +243856 subordinate +243862 subordinate +243865 subordinate +coordinate +243868 coordinate +243870 coordinate +243892 coordinate +243897 coordinate +243923 subordinate +243946 subordinate +243957 subordinate +243965 subordinate +subordinate +coordinate +243970 coordinate +243979 subordinate +243991 subordinate +subordinate +244000 subordinate +244005 subordinate +244008 subordinate +244036 subordinate +244042 subordinate +244049 subordinate +coordinate +244052 coordinate +244067 subordinate +244073 subordinate +coordinate +244082 subordinate +subordinate +244111 subordinate +coordinate +244119 coordinate +244144 subordinate +244163 coordinate +subordinate +244173 subordinate +244176 subordinate +244186 coordinate +244189 subordinate +244193 subordinate +244199 subordinate +244216 coordinate +244221 coordinate +244226 subordinate +coordinate +244233 coordinate +subordinate +coordinate +coordinate +244243 coordinate +244250 subordinate +244264 subordinate +244271 subordinate +subordinate +244290 subordinate +244307 subordinate +244327 coordinate +244329 coordinate +244339 subordinate +244372 subordinate +244387 subordinate +coordinate +244395 coordinate +244406 subordinate +coordinate +244416 coordinate +coordinate +244419 coordinate +244430 subordinate +244433 subordinate +coordinate +244436 coordinate +244438 subordinate +244443 subordinate +244479 subordinate +244486 subordinate +244508 subordinate +244518 subordinate +244524 coordinate +244527 coordinate +244537 subordinate +244546 subordinate +244559 subordinate +coordinate +244563 subordinate +244567 subordinate +244589 coordinate +244592 subordinate +244594 coordinate +244612 subordinate +244615 subordinate +244624 subordinate +244634 subordinate +subordinate +244641 subordinate +244648 subordinate +subordinate +subordinate +subordinate +244672 subordinate +subordinate +coordinate +244678 coordinate +244710 subordinate +244741 subordinate +coordinate +244744 coordinate +244787 subordinate +244793 coordinate +244800 coordinate +244815 subordinate +244854 subordinate +244858 subordinate +244882 subordinate +244887 subordinate +244908 subordinate +subordinate +244919 subordinate +244926 subordinate +subordinate +244941 coordinate +244951 coordinate +244960 subordinate +subordinate +subordinate +244967 subordinate +coordinate +244972 coordinate +244977 subordinate +coordinate +244981 subordinate +244984 coordinate +245013 coordinate +coordinate +245020 subordinate +245024 subordinate +245034 coordinate +245044 coordinate +245046 subordinate +245049 subordinate +245052 subordinate +subordinate +245063 coordinate +245068 subordinate +245070 coordinate +245076 coordinate +245084 subordinate +245087 subordinate +245089 coordinate +245096 subordinate +subordinate +245101 subordinate +subordinate +245112 subordinate +245124 subordinate +245152 subordinate +245155 subordinate +subordinate +245158 subordinate +245182 subordinate +245193 subordinate +245217 subordinate +245225 subordinate +245232 coordinate +245240 coordinate +245242 coordinate +245244 coordinate +245251 subordinate +245267 subordinate +245273 subordinate +245281 subordinate +245285 coordinate +245291 coordinate +245296 coordinate +245303 coordinate +245324 coordinate +subordinate +subordinate +245329 coordinate +245367 subordinate +245373 subordinate +245375 subordinate +245377 coordinate +245379 coordinate +245383 subordinate +245392 coordinate +245396 coordinate +245405 coordinate +245409 coordinate +245416 subordinate +245421 subordinate +245423 subordinate +245441 subordinate +245446 subordinate +245459 subordinate +245465 coordinate +245469 coordinate +245502 subordinate +subordinate +245543 subordinate +coordinate +245546 coordinate +245548 subordinate +245553 subordinate +245575 subordinate +245587 subordinate +245603 subordinate +245608 subordinate +coordinate +245611 coordinate +245615 coordinate +245618 coordinate +245640 subordinate +245642 subordinate +245662 subordinate +coordinate +245665 coordinate +subordinate +245668 coordinate +245671 coordinate +245675 subordinate +245677 subordinate +coordinate +245682 coordinate +245688 subordinate +245695 subordinate +245739 subordinate +coordinate +245752 coordinate +245790 subordinate +245796 subordinate +245802 subordinate +245809 subordinate +245815 coordinate +245827 subordinate +245829 subordinate +245843 coordinate +245846 subordinate +245848 coordinate +coordinate +245851 coordinate +245855 coordinate +245859 coordinate +245865 subordinate +subordinate +245876 coordinate +245879 coordinate +245892 subordinate +245895 coordinate +245897 coordinate +245903 coordinate +245905 coordinate +245908 subordinate +245913 subordinate +coordinate +245917 coordinate +245920 coordinate +245923 coordinate +245925 coordinate +245938 coordinate +245940 coordinate +245942 coordinate +245944 coordinate +245949 coordinate +245951 coordinate +245959 coordinate +coordinate +coordinate +245972 coordinate +245977 coordinate +coordinate +coordinate +245981 coordinate +245988 coordinate +245994 coordinate +246029 subordinate +246071 subordinate +246075 subordinate +246077 subordinate +246079 coordinate +246083 coordinate +246092 subordinate +246131 subordinate +246134 subordinate +coordinate +246139 coordinate +246158 subordinate +246185 subordinate +subordinate +coordinate +246192 coordinate +246201 subordinate +246212 coordinate +246217 coordinate +246224 subordinate +coordinate +246233 coordinate +246264 subordinate +246279 subordinate +246289 subordinate +subordinate +246292 coordinate +246295 coordinate +246310 subordinate +246313 subordinate +subordinate +246326 subordinate +246350 subordinate +246359 coordinate +246367 coordinate +246392 subordinate +246410 subordinate +246414 coordinate +246416 coordinate +246422 subordinate +246427 subordinate +246456 coordinate +246458 coordinate +246471 coordinate +246486 coordinate +246488 coordinate +246497 coordinate +246509 coordinate +246512 coordinate +246517 coordinate +246519 subordinate +246523 coordinate +246540 coordinate +246542 coordinate +246552 subordinate +246581 subordinate +246585 subordinate +coordinate +246588 coordinate +246599 subordinate +246601 subordinate +coordinate +coordinate +246606 coordinate +246608 coordinate +246620 coordinate +246622 coordinate +246632 subordinate +246638 subordinate +subordinate +246643 subordinate +246645 subordinate +coordinate +coordinate +246659 subordinate +246667 subordinate +246673 subordinate +246680 subordinate +246682 subordinate +246686 coordinate +246688 subordinate +246692 subordinate +246764 subordinate +subordinate +246767 subordinate +246770 subordinate +subordinate +coordinate +246774 coordinate +246780 coordinate +246782 coordinate +246803 subordinate +246806 subordinate +246810 subordinate +246812 subordinate +246821 subordinate +246825 coordinate +coordinate +coordinate +246838 coordinate +subordinate +246843 subordinate +246864 subordinate +subordinate +246867 subordinate +246875 coordinate +246878 subordinate +subordinate +246882 coordinate +246906 subordinate +246924 subordinate +246953 subordinate +246956 subordinate +246960 subordinate +246967 subordinate +246976 subordinate +subordinate +246995 subordinate +247013 subordinate +247015 subordinate +coordinate +247018 coordinate +247060 subordinate +247083 subordinate +247093 subordinate +coordinate +coordinate +247097 coordinate +coordinate +247103 coordinate +247107 coordinate +coordinate +247110 coordinate +247112 subordinate +247121 subordinate +247133 subordinate +247138 subordinate +247147 subordinate +247159 subordinate +subordinate +247168 subordinate +subordinate +247176 subordinate +247181 subordinate +247189 subordinate +247192 subordinate +247195 subordinate +247207 subordinate +247210 subordinate +247219 subordinate +247227 coordinate +247232 coordinate +247241 subordinate +subordinate +247248 subordinate +247250 subordinate +subordinate +subordinate +247260 subordinate +247273 coordinate +247275 coordinate +247277 coordinate +coordinate +247280 coordinate +247282 coordinate +247293 subordinate +247301 subordinate +coordinate +247305 coordinate +subordinate +coordinate +247319 subordinate +247321 subordinate +247323 coordinate +247327 coordinate +subordinate +247331 subordinate +247338 subordinate +247343 subordinate +247367 coordinate +247372 coordinate +247375 subordinate +247401 subordinate +247413 coordinate +247417 coordinate +247429 subordinate +247454 subordinate +247465 subordinate +subordinate +247475 coordinate +247477 coordinate +247480 coordinate +247482 coordinate +247484 coordinate +247497 subordinate +247501 subordinate +coordinate +247506 coordinate +247516 coordinate +247521 subordinate +247524 coordinate +247536 subordinate +247541 subordinate +247546 subordinate +247552 coordinate +247555 coordinate +247561 subordinate +247564 subordinate +247568 coordinate +subordinate +coordinate +subordinate +coordinate +subordinate +247575 coordinate +subordinate +subordinate +coordinate +subordinate +247590 subordinate +247593 subordinate +subordinate +247597 subordinate +247603 coordinate +247605 subordinate +247608 coordinate +coordinate +coordinate +247614 subordinate +247620 subordinate +subordinate +coordinate +coordinate +coordinate +coordinate +247638 subordinate +247640 coordinate +247642 coordinate +247645 subordinate +247653 subordinate +247666 coordinate +247668 subordinate +247670 coordinate +247679 subordinate +247689 subordinate +247705 subordinate +247709 coordinate +247711 coordinate +247717 coordinate +coordinate +247729 coordinate +247733 subordinate +247736 coordinate +247740 coordinate +247746 coordinate +247749 subordinate +247753 subordinate +247759 subordinate +247773 subordinate +247779 subordinate +247792 subordinate +coordinate +247795 coordinate +247799 subordinate +247810 subordinate +coordinate +247813 coordinate +247824 subordinate +247831 subordinate +247846 subordinate +subordinate +247851 subordinate +247859 subordinate +247883 coordinate +subordinate +247888 coordinate +247899 coordinate +247901 coordinate +247906 coordinate +247912 subordinate +coordinate +247915 coordinate +247938 subordinate +247970 subordinate +247975 coordinate +247978 coordinate +subordinate +247992 subordinate +coordinate +coordinate +coordinate +247997 coordinate +248000 coordinate +248006 coordinate +coordinate +248010 coordinate +coordinate +coordinate +248018 subordinate +248026 subordinate +248036 subordinate +248080 subordinate +248089 subordinate +248091 subordinate +subordinate +248096 subordinate +subordinate +248105 coordinate +248125 subordinate +248140 coordinate +248143 coordinate +248150 coordinate +248160 coordinate +248167 coordinate +248169 coordinate +248182 coordinate +248188 coordinate +248197 subordinate +248199 coordinate +248202 coordinate +248216 coordinate +248221 coordinate +subordinate +coordinate +subordinate +248241 subordinate +248280 subordinate +coordinate +248283 coordinate +coordinate +248287 coordinate +coordinate +subordinate +248292 coordinate +248296 subordinate +248304 subordinate +248311 coordinate +248327 subordinate +248337 subordinate +248342 subordinate +248349 subordinate +248351 subordinate +248354 subordinate +248357 subordinate +248361 subordinate +248373 subordinate +248386 subordinate +248388 coordinate +248413 subordinate +248417 subordinate +248421 subordinate +248427 subordinate +248430 subordinate +subordinate +248434 subordinate +248437 subordinate +248447 subordinate +248453 subordinate +248465 coordinate +248469 coordinate +248478 coordinate +248481 subordinate +subordinate +248484 coordinate +248498 coordinate +248502 coordinate +248512 coordinate +248524 coordinate +248526 coordinate +248529 coordinate +248535 subordinate +248542 subordinate +248545 subordinate +248552 coordinate +248556 coordinate +248577 subordinate +coordinate +248581 coordinate +248585 subordinate +248590 coordinate +248595 coordinate +248600 subordinate +248621 coordinate +subordinate +248624 coordinate +248626 coordinate +248629 coordinate +248641 coordinate +248645 coordinate +248648 subordinate +248652 subordinate +coordinate +248655 coordinate +subordinate +248670 subordinate +248685 subordinate +248691 coordinate +248715 coordinate +248725 subordinate +248736 subordinate +248743 subordinate +248748 coordinate +248751 coordinate +248758 subordinate +248780 subordinate +248784 subordinate +248799 subordinate +248801 subordinate +248812 coordinate +248814 coordinate +248816 coordinate +subordinate +coordinate +coordinate +coordinate +248830 subordinate +coordinate +coordinate +248835 subordinate +coordinate +248840 subordinate +248843 coordinate +248845 coordinate +248850 coordinate +248856 coordinate +248858 coordinate +coordinate +248861 coordinate +248867 coordinate +248869 coordinate +248876 coordinate +248879 coordinate +248881 coordinate +248890 coordinate +248899 coordinate +248910 subordinate +248916 coordinate +coordinate +subordinate +248922 coordinate +248924 coordinate +248926 coordinate +248933 subordinate +248936 subordinate +248944 coordinate +248950 subordinate +248952 coordinate +248977 coordinate +248983 coordinate +248989 coordinate +248991 coordinate +248994 coordinate +248996 subordinate +coordinate +249001 coordinate +249005 coordinate +249011 coordinate +249017 coordinate +249038 coordinate +249041 coordinate +249043 subordinate +249046 subordinate +249089 coordinate +249095 coordinate +249130 subordinate +coordinate +249135 coordinate +249140 subordinate +249142 subordinate +249146 subordinate +249149 subordinate +249157 subordinate +249167 subordinate +249178 subordinate +249182 coordinate +249189 coordinate +249206 subordinate +249209 subordinate +subordinate +249233 subordinate +249236 subordinate +249242 subordinate +249250 coordinate +249253 subordinate +249256 coordinate +249265 coordinate +subordinate +249268 coordinate +249270 subordinate +249281 subordinate +249284 subordinate +249288 subordinate +249299 subordinate +249302 subordinate +subordinate +249306 subordinate +249310 subordinate +249317 subordinate +249332 subordinate +249335 subordinate +subordinate +249346 subordinate +249350 coordinate +249354 subordinate +249373 subordinate +249385 subordinate +249404 subordinate +coordinate +249409 coordinate +249416 coordinate +249418 coordinate +249427 subordinate +coordinate +249430 coordinate +coordinate +249435 coordinate +coordinate +coordinate +subordinate +249447 subordinate +subordinate +249452 subordinate +249456 subordinate +249461 subordinate +249495 subordinate +subordinate +249512 subordinate +249531 subordinate +249547 subordinate +249552 subordinate +249557 subordinate +249561 subordinate +subordinate +249570 subordinate +249576 subordinate +249582 subordinate +249640 subordinate +249645 subordinate +249662 subordinate +249685 subordinate +249694 subordinate +249698 subordinate +249703 subordinate +coordinate +249708 coordinate +249743 subordinate +249746 subordinate +249758 subordinate +249760 subordinate +coordinate +249766 coordinate +249780 coordinate +249782 coordinate +249793 subordinate +249797 subordinate +249802 subordinate +coordinate +249805 coordinate +249830 subordinate +249838 subordinate +249876 subordinate +249898 subordinate +coordinate +249908 coordinate +249914 subordinate +249921 subordinate +249938 coordinate +249941 coordinate +249947 subordinate +249966 coordinate +249970 coordinate +249975 coordinate +249982 coordinate +249990 coordinate +249999 coordinate +250001 coordinate +250017 coordinate +250021 coordinate +250028 coordinate +250030 coordinate +250036 subordinate +250038 coordinate +250041 subordinate +250044 subordinate +250048 coordinate +250051 coordinate +250065 subordinate +250077 subordinate +250082 subordinate +250086 subordinate +250094 subordinate +coordinate +250098 subordinate +250101 coordinate +250107 subordinate +250112 subordinate +subordinate +250149 subordinate +250154 subordinate +250157 coordinate +250160 coordinate +250163 coordinate +250178 subordinate +250196 subordinate +250204 coordinate +250208 coordinate +250211 subordinate +subordinate +250236 subordinate +250268 subordinate +250275 subordinate +coordinate +250288 coordinate +250300 coordinate +250302 coordinate +250308 subordinate +250312 subordinate +250329 subordinate +subordinate +subordinate +250354 subordinate +250374 coordinate +250378 coordinate +250385 coordinate +250396 coordinate +250405 subordinate +250422 subordinate +250430 subordinate +250441 coordinate +250446 coordinate +250453 coordinate +250457 coordinate +250460 coordinate +250463 coordinate +250472 subordinate +250478 coordinate +250491 subordinate +250497 subordinate +250500 subordinate +250512 subordinate +250522 subordinate +250530 subordinate +250536 subordinate +250564 subordinate +250569 subordinate +250577 subordinate +250585 subordinate +250591 subordinate +250598 subordinate +250600 coordinate +250604 subordinate +250624 subordinate +250629 subordinate +250654 subordinate +250662 subordinate +coordinate +subordinate +250667 coordinate +250674 subordinate +250682 subordinate +250692 subordinate +250718 subordinate +250726 subordinate +250731 subordinate +250744 subordinate +250752 subordinate +250769 coordinate +250772 coordinate +250775 subordinate +250785 subordinate +250789 subordinate +250800 subordinate +coordinate +subordinate +250805 coordinate +250817 subordinate +coordinate +250820 coordinate +250828 subordinate +250835 subordinate +250841 subordinate +250847 subordinate +coordinate +250851 coordinate +250855 subordinate +250864 coordinate +250870 subordinate +250874 coordinate +250877 subordinate +250879 coordinate +250899 subordinate +coordinate +250912 subordinate +250919 coordinate +250924 subordinate +subordinate +250927 subordinate +250932 subordinate +250938 subordinate +250947 coordinate +250952 subordinate +250954 subordinate +250959 coordinate +subordinate +subordinate +250975 coordinate +subordinate +250991 subordinate +250993 coordinate +251002 subordinate +251011 subordinate +251019 subordinate +251042 subordinate +251047 subordinate +251050 coordinate +251052 coordinate +251057 coordinate +251061 coordinate +251068 subordinate +251070 coordinate +251072 subordinate +coordinate +251078 coordinate +251082 coordinate +251086 coordinate +251089 subordinate +251092 coordinate +251101 coordinate +subordinate +251106 coordinate +251120 subordinate +251122 subordinate +251127 subordinate +251138 subordinate +251145 subordinate +251155 subordinate +coordinate +251158 coordinate +251169 subordinate +251172 subordinate +subordinate +subordinate +251180 subordinate +251182 coordinate +subordinate +251185 coordinate +subordinate +251190 subordinate +251195 coordinate +251199 coordinate +251207 subordinate +251209 subordinate +251218 subordinate +251225 subordinate +251229 subordinate +251233 subordinate +251244 subordinate +251253 subordinate +251275 coordinate +subordinate +251282 coordinate +251286 subordinate +251288 coordinate +251291 coordinate +251299 subordinate +coordinate +251307 coordinate +251327 coordinate +251334 subordinate +251342 subordinate +subordinate +251348 coordinate +coordinate +251354 coordinate +251370 coordinate +251372 subordinate +251382 subordinate +251396 subordinate +251402 subordinate +251408 subordinate +251412 subordinate +coordinate +251419 coordinate +251436 subordinate +251444 subordinate +251458 subordinate +251489 subordinate +251496 subordinate +251499 coordinate +251513 subordinate +251515 coordinate +251519 coordinate +251527 coordinate +251529 coordinate +251541 coordinate +251547 subordinate +251549 coordinate +251559 subordinate +251566 subordinate +251579 subordinate +coordinate +251584 coordinate +251590 subordinate +251599 subordinate +subordinate +251604 coordinate +251606 subordinate +251608 coordinate +251616 subordinate +251664 subordinate +251672 coordinate +251674 subordinate +251691 subordinate +subordinate +251719 subordinate +251727 subordinate +251729 coordinate +251735 coordinate +251758 subordinate +251762 subordinate +251771 subordinate +251783 coordinate +coordinate +251790 coordinate +251794 coordinate +coordinate +251798 coordinate +251804 coordinate +251809 coordinate +251816 subordinate +251823 subordinate +coordinate +251828 coordinate +251843 subordinate +251845 subordinate +251888 subordinate +251897 subordinate +251899 coordinate +251904 subordinate +251917 coordinate +251921 subordinate +251926 subordinate +251935 coordinate +251941 subordinate +251944 coordinate +251984 subordinate +subordinate +251996 subordinate +252002 subordinate +252007 subordinate +252032 subordinate +252038 subordinate +252046 subordinate +252070 subordinate +252078 subordinate +252097 subordinate +subordinate +252109 subordinate +252127 subordinate +252170 coordinate +252175 coordinate +252180 subordinate +252182 coordinate +252189 coordinate +252207 subordinate +252217 subordinate +252225 subordinate +subordinate +252245 coordinate +252248 subordinate +252250 coordinate +252254 subordinate +252268 subordinate +252273 subordinate +252286 subordinate +252290 subordinate +252293 subordinate +252300 subordinate +252310 subordinate +252317 subordinate +252321 coordinate +coordinate +252326 coordinate +coordinate +252366 subordinate +252384 subordinate +coordinate +252388 coordinate +252393 subordinate +252397 subordinate +252408 subordinate +252445 coordinate +subordinate +252455 coordinate +252464 coordinate +subordinate +252473 subordinate +252487 subordinate +252495 coordinate +252505 subordinate +coordinate +252511 coordinate +252520 subordinate +252531 subordinate +252536 subordinate +coordinate +252541 subordinate +252553 coordinate +252556 coordinate +252564 subordinate +subordinate +252569 subordinate +252578 subordinate +252582 coordinate +252587 coordinate +252595 coordinate +252609 coordinate +252621 subordinate +252630 subordinate +252633 subordinate +252635 coordinate +252640 coordinate +252647 coordinate +252651 coordinate +252656 subordinate +252658 subordinate +subordinate +252663 subordinate +252678 subordinate +subordinate +252687 coordinate +252693 coordinate +252697 coordinate +252702 coordinate +252704 subordinate +252723 subordinate +252726 subordinate +252734 subordinate +252741 subordinate +252754 subordinate +252760 coordinate +252762 subordinate +252765 coordinate +252769 coordinate +252772 subordinate +252777 coordinate +252780 subordinate +252785 subordinate +252787 subordinate +252794 coordinate +252796 coordinate +252801 subordinate +252805 subordinate +252811 coordinate +252815 coordinate +252822 coordinate +subordinate +subordinate +252828 subordinate +252831 coordinate +subordinate +subordinate +252840 subordinate +252857 subordinate +252874 subordinate +252883 subordinate +252886 coordinate +subordinate +252893 coordinate +subordinate +252907 subordinate +coordinate +252910 coordinate +coordinate +252935 subordinate +252940 subordinate +252942 coordinate +252949 subordinate +252956 coordinate +252958 subordinate +252960 coordinate +252974 subordinate +252987 subordinate +252994 coordinate +subordinate +253000 coordinate +253008 coordinate +subordinate +253016 coordinate +253022 subordinate +253027 subordinate +coordinate +subordinate +253032 coordinate +253038 subordinate +subordinate +253042 subordinate +subordinate +coordinate +253049 coordinate +253051 subordinate +253059 subordinate +253064 subordinate +253069 subordinate +253071 subordinate +subordinate +253082 subordinate +253094 subordinate +253101 subordinate +253110 subordinate +253120 subordinate +253131 coordinate +253133 coordinate +coordinate +coordinate +253137 coordinate +253139 coordinate +253141 coordinate +253143 coordinate +253145 coordinate +253155 subordinate +253158 subordinate +253163 coordinate +253168 coordinate +253174 coordinate +coordinate +coordinate +coordinate +253180 coordinate +253185 subordinate +coordinate +coordinate +coordinate +subordinate +253205 subordinate +253214 subordinate +253220 subordinate +253223 subordinate +253225 subordinate +253234 subordinate +subordinate +253245 coordinate +253249 subordinate +subordinate +253252 coordinate +253270 subordinate +253273 subordinate +253277 subordinate +253287 subordinate +253291 coordinate +253294 coordinate +subordinate +253300 coordinate +subordinate +253303 coordinate +253313 subordinate +253324 subordinate +253337 coordinate +253343 coordinate +253345 coordinate +253351 coordinate +253356 coordinate +253363 coordinate +253376 subordinate +253378 coordinate +253382 subordinate +coordinate +coordinate +253386 coordinate +253395 coordinate +253399 subordinate +253403 subordinate +253405 coordinate +253410 subordinate +coordinate +253414 coordinate +253425 subordinate +subordinate +coordinate +253433 coordinate +253435 coordinate +253438 subordinate +253440 coordinate +253443 coordinate +253460 subordinate +subordinate +253467 subordinate +253473 subordinate +253476 subordinate +253488 subordinate +253518 subordinate +253526 subordinate +253534 subordinate +253542 subordinate +253556 subordinate +253558 subordinate +253571 coordinate +253576 coordinate +253595 subordinate +253597 subordinate +253603 subordinate +253619 subordinate +253628 subordinate +253630 subordinate +253635 subordinate +subordinate +253640 subordinate +subordinate +253647 coordinate +253651 coordinate +253654 subordinate +253670 coordinate +253673 coordinate +253677 subordinate +253679 coordinate +coordinate +coordinate +253688 subordinate +253694 subordinate +253702 coordinate +253708 coordinate +253719 subordinate +253731 subordinate +253757 subordinate +subordinate +253771 subordinate +253777 coordinate +253779 subordinate +coordinate +253794 subordinate +253805 subordinate +253811 coordinate +253814 subordinate +253816 coordinate +253818 subordinate +253822 subordinate +subordinate +253825 subordinate +coordinate +253829 coordinate +253831 subordinate +253833 subordinate +253842 subordinate +subordinate +253848 subordinate +253850 subordinate +253880 subordinate +253904 subordinate +253909 subordinate +253915 subordinate +subordinate +253923 subordinate +253951 subordinate +253957 subordinate +subordinate +253973 subordinate +253976 subordinate +253982 subordinate +253985 coordinate +253989 subordinate +coordinate +253992 coordinate +253994 coordinate +253999 subordinate +254008 subordinate +254010 subordinate +254030 coordinate +254038 coordinate +254047 subordinate +254052 coordinate +coordinate +254058 coordinate +254061 coordinate +coordinate +254066 coordinate +254084 subordinate +subordinate +254095 subordinate +254102 coordinate +254105 coordinate +254109 subordinate +254117 coordinate +254119 subordinate +254121 coordinate +254123 subordinate +254137 subordinate +254150 subordinate +254167 coordinate +254172 coordinate +254176 coordinate +254186 subordinate +254197 subordinate +254204 coordinate +254207 coordinate +subordinate +254210 subordinate +254212 subordinate +coordinate +254216 coordinate +254219 subordinate +254226 subordinate +coordinate +254229 coordinate +254231 coordinate +subordinate +254239 coordinate +254246 coordinate +subordinate +254257 subordinate +subordinate +subordinate +coordinate +254262 coordinate +254305 subordinate +coordinate +coordinate +254315 coordinate +254321 coordinate +coordinate +coordinate +254337 coordinate +254339 coordinate +254345 coordinate +254348 coordinate +254380 coordinate +254383 coordinate +254397 subordinate +subordinate +254408 subordinate +254414 subordinate +254420 subordinate +254424 subordinate +coordinate +254429 coordinate +254443 subordinate +coordinate +254446 coordinate +254452 coordinate +254454 coordinate +254456 subordinate +subordinate +254475 subordinate +coordinate +subordinate +254479 coordinate +254484 subordinate +254488 subordinate +coordinate +coordinate +254494 coordinate +254498 coordinate +254506 coordinate +254508 coordinate +254510 coordinate +254520 subordinate +subordinate +254548 coordinate +254552 coordinate +254573 subordinate +254583 coordinate +coordinate +254589 coordinate +254594 coordinate +coordinate +254600 subordinate +coordinate +254605 coordinate +254608 coordinate +254614 coordinate +254617 coordinate +254627 subordinate +coordinate +254631 coordinate +254637 subordinate +254657 subordinate +254671 subordinate +254689 subordinate +coordinate +254692 coordinate +254697 subordinate +254704 coordinate +254709 coordinate +254733 coordinate +254737 coordinate +254742 coordinate +254748 coordinate +254762 coordinate +254764 subordinate +254773 coordinate +254779 coordinate +254798 subordinate +254815 coordinate +subordinate +254818 coordinate +254841 subordinate +254850 coordinate +254852 coordinate +254857 coordinate +254860 subordinate +coordinate +254894 coordinate +254896 coordinate +254913 coordinate +254915 coordinate +254918 coordinate +coordinate +254921 coordinate +254923 coordinate +subordinate +254927 coordinate +254929 coordinate +254938 coordinate +254940 coordinate +254944 subordinate +254962 subordinate +254964 subordinate +254989 coordinate +254992 coordinate +254996 coordinate +254999 coordinate +coordinate +255003 coordinate +255007 coordinate +255010 coordinate +255020 coordinate +255022 coordinate +255024 coordinate +255027 coordinate +255032 coordinate +255037 coordinate +255040 coordinate +255046 coordinate +255049 coordinate +255051 coordinate +255055 coordinate +255060 subordinate +255071 subordinate +255089 coordinate +255096 coordinate +coordinate +255099 coordinate +255101 coordinate +255108 subordinate +255122 subordinate +255126 coordinate +255128 coordinate +255145 coordinate +subordinate +255148 coordinate +255157 subordinate +255166 coordinate +255170 coordinate +255175 coordinate +255182 coordinate +coordinate +255188 coordinate +255198 coordinate +255212 coordinate +255223 coordinate +255227 coordinate +255255 subordinate +255258 subordinate +255269 subordinate +255278 subordinate +255304 coordinate +255308 coordinate +255332 coordinate +255336 coordinate +255339 subordinate +255357 coordinate +255362 coordinate +255364 subordinate +255372 coordinate +255379 coordinate +255384 subordinate +255391 coordinate +255394 coordinate +255397 subordinate +255401 subordinate +255404 coordinate +255408 coordinate +coordinate +255413 coordinate +255423 coordinate +255425 coordinate +coordinate +255429 coordinate +255438 subordinate +coordinate +255445 coordinate +255449 coordinate +255458 coordinate +255506 subordinate +255518 subordinate +255529 subordinate +255537 subordinate +subordinate +255541 subordinate +255551 coordinate +255553 coordinate +255564 coordinate +subordinate +255567 coordinate +subordinate +255570 subordinate +255574 subordinate +subordinate +255594 subordinate +255605 subordinate +255628 subordinate +255631 subordinate +255636 subordinate +255646 subordinate +255654 subordinate +255657 coordinate +255664 coordinate +255668 subordinate +255677 subordinate +255682 subordinate +255697 coordinate +255706 coordinate +255710 subordinate +255716 subordinate +255718 coordinate +255722 coordinate +255736 coordinate +255739 coordinate +subordinate +subordinate +255749 subordinate +255759 subordinate +255767 subordinate +255769 subordinate +255772 subordinate +255774 coordinate +255778 coordinate +255784 coordinate +coordinate +255788 coordinate +255791 coordinate +255808 subordinate +255823 subordinate +255833 subordinate +255838 subordinate +subordinate +255841 coordinate +255844 coordinate +255850 subordinate +255854 subordinate +255864 coordinate +255870 coordinate +255885 subordinate +subordinate +255896 coordinate +255903 subordinate +255917 subordinate +255928 coordinate +255930 coordinate +255933 coordinate +subordinate +255936 coordinate +subordinate +255941 subordinate +255959 subordinate +255963 subordinate +subordinate +255982 subordinate +255986 subordinate +255995 subordinate +255999 subordinate +subordinate +256007 coordinate +subordinate +256010 coordinate +coordinate +subordinate +256016 coordinate +subordinate +256021 coordinate +coordinate +256024 coordinate +256026 coordinate +256048 subordinate +256051 subordinate +256057 subordinate +subordinate +256064 subordinate +subordinate +256077 subordinate +256079 subordinate +256084 coordinate +256086 coordinate +256094 subordinate +subordinate +256097 coordinate +256111 subordinate +subordinate +256122 coordinate +256125 subordinate +256127 coordinate +256142 subordinate +256144 subordinate +256153 subordinate +256198 subordinate +256204 subordinate +256207 subordinate +coordinate +256210 coordinate +256219 subordinate +256223 subordinate +subordinate +256238 subordinate +coordinate +coordinate +256243 coordinate +256250 subordinate +256254 coordinate +coordinate +256258 subordinate +coordinate +256261 coordinate +256266 coordinate +256270 coordinate +256272 coordinate +256275 coordinate +256277 coordinate +256279 coordinate +256282 subordinate +coordinate +coordinate +256288 coordinate +256293 coordinate +256296 subordinate +256303 subordinate +256310 subordinate +256316 coordinate +coordinate +coordinate +256322 coordinate +256324 coordinate +256330 subordinate +256341 coordinate +256347 subordinate +256349 subordinate +256361 coordinate +subordinate +subordinate +subordinate +subordinate +256370 coordinate +256379 subordinate +256381 subordinate +256383 coordinate +256385 coordinate +256389 subordinate +256397 subordinate +256432 subordinate +256457 subordinate +256465 subordinate +256478 subordinate +256484 subordinate +256488 subordinate +256490 subordinate +256500 coordinate +256503 coordinate +256524 subordinate +256535 subordinate +subordinate +256539 subordinate +256547 subordinate +256549 subordinate +256553 subordinate +256555 subordinate +256561 subordinate +256581 coordinate +256590 subordinate +coordinate +256593 subordinate +256599 subordinate +256606 subordinate +256611 subordinate +256616 subordinate +256629 coordinate +256639 coordinate +256641 subordinate +256644 coordinate +coordinate +256651 subordinate +256664 subordinate +256678 subordinate +256715 subordinate +subordinate +256727 subordinate +coordinate +subordinate +256731 coordinate +256752 subordinate +coordinate +256756 coordinate +256765 subordinate +subordinate +256768 subordinate +256775 subordinate +256786 subordinate +subordinate +256789 subordinate +subordinate +subordinate +256794 subordinate +subordinate +256820 coordinate +subordinate +coordinate +coordinate +coordinate +256840 subordinate +256842 subordinate +coordinate +256845 coordinate +256905 subordinate +256931 subordinate +256935 subordinate +256945 coordinate +256948 subordinate +256955 coordinate +256960 coordinate +256965 coordinate +256970 coordinate +256975 coordinate +256980 coordinate +256987 subordinate +257001 subordinate +subordinate +subordinate +257014 subordinate +257022 subordinate +257043 subordinate +257046 subordinate +257052 subordinate +257057 subordinate +257061 subordinate +257072 subordinate +257081 subordinate +subordinate +257092 coordinate +subordinate +257095 subordinate +257104 coordinate +257111 coordinate +257131 coordinate +257134 subordinate +257136 subordinate +257147 subordinate +subordinate +subordinate +257151 subordinate +257155 subordinate +coordinate +257158 coordinate +257171 coordinate +257173 coordinate +subordinate +257186 subordinate +257192 subordinate +257196 subordinate +subordinate +257216 coordinate +257219 coordinate +257226 subordinate +coordinate +coordinate +coordinate +257232 subordinate +257234 coordinate +257236 subordinate +subordinate +257240 coordinate +coordinate +257244 coordinate +257248 subordinate +257251 coordinate +coordinate +subordinate +257257 subordinate +257259 subordinate +subordinate +257262 coordinate +257266 subordinate +257274 subordinate +257278 subordinate +257285 subordinate +coordinate +257289 coordinate +coordinate +subordinate +257295 coordinate +257298 coordinate +257303 coordinate +257307 subordinate +subordinate +subordinate +257321 subordinate +257325 subordinate +257327 subordinate +257332 subordinate +257336 subordinate +coordinate +257341 coordinate +257344 coordinate +257348 coordinate +coordinate +257355 coordinate +257357 coordinate +257359 subordinate +coordinate +257362 coordinate +257364 subordinate +257372 coordinate +257375 coordinate +257381 subordinate +257393 subordinate +257402 subordinate +257424 subordinate +subordinate +coordinate +257438 coordinate +257445 coordinate +subordinate +257451 coordinate +subordinate +257456 subordinate +257464 coordinate +257469 coordinate +subordinate +257484 subordinate +257488 subordinate +257509 subordinate +coordinate +257523 subordinate +257525 subordinate +257532 subordinate +257535 coordinate +257537 coordinate +257549 subordinate +257561 subordinate +257576 coordinate +257582 coordinate +257591 subordinate +coordinate +257594 subordinate +subordinate +coordinate +coordinate +257605 coordinate +257609 coordinate +coordinate +subordinate +257613 coordinate +257624 subordinate +257629 subordinate +257639 coordinate +257641 subordinate +257643 coordinate +subordinate +257661 coordinate +subordinate +subordinate +257674 subordinate +257683 subordinate +subordinate +257698 subordinate +subordinate +257711 subordinate +257713 subordinate +subordinate +257742 subordinate +257744 subordinate +subordinate +257748 subordinate +coordinate +257751 coordinate +257761 coordinate +257764 coordinate +257766 coordinate +257768 coordinate +257774 coordinate +257778 coordinate +257782 subordinate +257786 subordinate +257809 subordinate +257819 coordinate +257822 coordinate +257825 coordinate +257828 coordinate +257834 subordinate +coordinate +subordinate +257840 coordinate +257844 coordinate +257846 coordinate +257856 subordinate +257859 coordinate +257862 coordinate +257873 subordinate +subordinate +257877 coordinate +257879 coordinate +257885 subordinate +257892 subordinate +coordinate +257896 coordinate +257906 coordinate +257908 coordinate +257917 subordinate +257922 subordinate +257931 coordinate +257936 coordinate +257949 subordinate +257952 subordinate +257957 coordinate +257964 coordinate +257968 coordinate +257986 subordinate +257994 subordinate +257997 subordinate +258000 subordinate +258027 subordinate +coordinate +258031 coordinate +258039 coordinate +subordinate +258044 coordinate +258052 coordinate +258060 coordinate +258066 coordinate +258074 coordinate +258078 coordinate +subordinate +258081 subordinate +258089 subordinate +258098 subordinate +258105 subordinate +258111 subordinate +258117 subordinate +258124 subordinate +coordinate +258127 coordinate +258133 coordinate +258146 subordinate +258154 subordinate +coordinate +258175 coordinate +258181 coordinate +258188 coordinate +258199 coordinate +258202 coordinate +258218 coordinate +258221 coordinate +258227 subordinate +258241 coordinate +258245 coordinate +258248 subordinate +coordinate +subordinate +258252 coordinate +coordinate +subordinate +258256 coordinate +subordinate +258265 subordinate +258298 subordinate +258304 subordinate +258306 subordinate +258334 coordinate +258348 coordinate +subordinate +coordinate +258355 coordinate +coordinate +258358 coordinate +258360 coordinate +subordinate +258370 subordinate +258373 subordinate +258375 coordinate +258412 subordinate +258416 coordinate +258419 coordinate +subordinate +258426 subordinate +258430 subordinate +258442 subordinate +258445 coordinate +258453 coordinate +258463 subordinate +258466 coordinate +258476 coordinate +258481 coordinate +258491 subordinate +258500 subordinate +258510 subordinate +258523 subordinate +258529 subordinate +258531 subordinate +258548 coordinate +258555 coordinate +258571 subordinate +coordinate +258576 coordinate +258586 coordinate +258590 coordinate +258598 subordinate +258609 subordinate +258619 coordinate +258632 subordinate +258648 subordinate +258655 coordinate +258660 coordinate +subordinate +258665 coordinate +258693 coordinate +258701 subordinate +258705 coordinate +258710 coordinate +258714 coordinate +258716 subordinate +258724 subordinate +258727 subordinate +coordinate +258732 coordinate +258742 coordinate +258750 coordinate +258753 subordinate +258757 coordinate +258764 coordinate +258782 coordinate +258784 coordinate +258792 subordinate +258804 coordinate +258808 subordinate +258814 coordinate +258832 coordinate +258838 coordinate +258842 coordinate +258844 subordinate +coordinate +258849 coordinate +258859 coordinate +258864 coordinate +258876 subordinate +258895 subordinate +coordinate +258901 coordinate +coordinate +258909 coordinate +258917 subordinate +258936 subordinate +258943 coordinate +258946 coordinate +258948 coordinate +258950 coordinate +258961 subordinate +258964 subordinate +258970 subordinate +coordinate +258975 coordinate +258985 coordinate +258988 coordinate +259000 subordinate +259016 coordinate +259020 coordinate +259035 coordinate +259038 coordinate +coordinate +259047 coordinate +259057 subordinate +259065 subordinate +259072 coordinate +259076 coordinate +259081 subordinate +coordinate +259085 coordinate +259093 subordinate +259097 subordinate +259103 coordinate +259116 subordinate +259136 coordinate +259146 coordinate +259165 subordinate +coordinate +259169 coordinate +259188 subordinate +259214 subordinate +259234 coordinate +259237 coordinate +259251 subordinate +259256 subordinate +259268 coordinate +259310 subordinate +259325 coordinate +259329 coordinate +259375 subordinate +259387 subordinate +259398 coordinate +259400 subordinate +subordinate +259409 coordinate +259426 coordinate +259429 coordinate +259437 coordinate +259444 coordinate +coordinate +259451 coordinate +259457 coordinate +259461 coordinate +259471 coordinate +259478 subordinate +259505 coordinate +259531 coordinate +259557 subordinate +subordinate +259565 subordinate +259572 subordinate +subordinate +coordinate +subordinate +259577 coordinate +259580 subordinate +259594 subordinate +259601 subordinate +259608 subordinate +259620 subordinate +coordinate +subordinate +coordinate +259630 coordinate +259632 coordinate +259652 subordinate +coordinate +259656 coordinate +259660 coordinate +259663 coordinate +subordinate +259670 subordinate +259677 coordinate +subordinate +subordinate +259685 subordinate +coordinate +259689 coordinate +259693 subordinate +259717 subordinate +259721 subordinate +259730 coordinate +259732 coordinate +259736 subordinate +259743 subordinate +259751 coordinate +subordinate +259757 coordinate +259765 subordinate +259772 subordinate +259778 subordinate +259781 subordinate +259795 subordinate +subordinate +259801 subordinate +259810 coordinate +259813 coordinate +259817 coordinate +259823 coordinate +259825 coordinate +259849 coordinate +259859 coordinate +subordinate +259862 coordinate +subordinate +259870 coordinate +subordinate +259873 coordinate +259895 subordinate +coordinate +259900 coordinate +259910 subordinate +259912 subordinate +259917 subordinate +subordinate +subordinate +259922 subordinate +259935 subordinate +coordinate +259943 coordinate +259954 subordinate +subordinate +259959 coordinate +subordinate +259967 coordinate +259971 coordinate +259975 coordinate +259984 subordinate +259991 subordinate +coordinate +259996 coordinate +259999 subordinate +260007 subordinate +subordinate +260010 coordinate +260012 coordinate +260014 coordinate +260019 subordinate +subordinate +260026 coordinate +260030 subordinate +260038 coordinate +subordinate +260043 subordinate +subordinate +260052 subordinate +coordinate +260058 coordinate +260064 coordinate +260075 subordinate +260082 subordinate +260088 subordinate +subordinate +260093 subordinate +260115 subordinate +coordinate +260119 coordinate +260140 coordinate +260143 subordinate +260148 coordinate +260151 subordinate +260176 subordinate +260187 subordinate +260201 subordinate +260217 subordinate +subordinate +260221 coordinate +260223 subordinate +260227 subordinate +260235 subordinate +subordinate +coordinate +260239 coordinate +260270 coordinate +260272 subordinate +260275 subordinate +subordinate +260279 coordinate +subordinate +260307 coordinate +260312 coordinate +260317 subordinate +260372 coordinate +260375 coordinate +260377 coordinate +260385 coordinate +260408 coordinate +coordinate +260413 subordinate +260415 coordinate +260478 coordinate +260484 coordinate +260490 coordinate +subordinate +260494 coordinate +260515 subordinate +260523 coordinate +subordinate +260528 coordinate +260535 subordinate +coordinate +260538 coordinate +260545 coordinate +260553 subordinate +260555 subordinate +260557 coordinate +260563 coordinate +260567 subordinate +subordinate +260571 coordinate +260576 subordinate +260580 coordinate +260587 coordinate +260594 coordinate +260599 subordinate +260608 subordinate +260623 coordinate +260632 coordinate +coordinate +260636 coordinate +260643 coordinate +260654 subordinate +260656 subordinate +260658 subordinate +subordinate +260679 coordinate +260686 coordinate +260718 coordinate +260728 coordinate +260730 coordinate +subordinate +260733 coordinate +coordinate +260738 coordinate +coordinate +260741 coordinate +subordinate +260746 coordinate +260748 coordinate +coordinate +260754 coordinate +260768 coordinate +subordinate +260771 coordinate +260773 coordinate +260781 subordinate +260790 subordinate +260805 subordinate +260813 subordinate +260840 coordinate +260842 coordinate +260845 coordinate +coordinate +260853 coordinate +260855 coordinate +coordinate +260862 subordinate +260864 coordinate +coordinate +coordinate +260871 subordinate +subordinate +260877 subordinate +260881 subordinate +260883 coordinate +260888 coordinate +260891 coordinate +260899 subordinate +260930 coordinate +260932 subordinate +260938 coordinate +260942 coordinate +260966 subordinate +subordinate +260978 coordinate +260980 coordinate +260984 subordinate +260995 subordinate +coordinate +260998 coordinate +261009 subordinate +261017 coordinate +261023 coordinate +261029 subordinate +261035 subordinate +261054 coordinate +261060 coordinate +261080 subordinate +261099 coordinate +261102 subordinate +261105 subordinate +coordinate +261108 coordinate +261114 subordinate +261116 coordinate +subordinate +261123 coordinate +261133 subordinate +261156 coordinate +261186 subordinate +261188 subordinate +261204 coordinate +261213 subordinate +261218 subordinate +261223 coordinate +261231 subordinate +261264 coordinate +261268 coordinate +261271 coordinate +261275 subordinate +261277 subordinate +subordinate +261286 coordinate +subordinate +261291 coordinate +coordinate +261294 coordinate +261299 subordinate +261301 coordinate +261304 coordinate +261306 subordinate +261323 subordinate +261326 coordinate +261332 coordinate +261341 coordinate +261356 subordinate +261380 coordinate +coordinate +261383 coordinate +261385 coordinate +coordinate +261388 coordinate +261398 subordinate +261400 subordinate +261403 subordinate +coordinate +261407 coordinate +261411 coordinate +261416 coordinate +261424 subordinate +261426 coordinate +coordinate +coordinate +261436 coordinate +261438 coordinate +261449 subordinate +261462 subordinate +261466 subordinate +261475 subordinate +261477 subordinate +261485 coordinate +261492 coordinate +261495 coordinate +261529 subordinate +261574 subordinate +coordinate +261577 coordinate +261581 subordinate +261588 subordinate +261592 coordinate +261594 coordinate +261596 coordinate +261609 subordinate +261613 subordinate +261616 subordinate +261621 subordinate +coordinate +261624 coordinate +261631 subordinate +261635 subordinate +261638 subordinate +261645 coordinate +261647 coordinate +261650 coordinate +261654 coordinate +261658 subordinate +coordinate +261663 coordinate +261666 coordinate +261669 coordinate +coordinate +261673 coordinate +261680 subordinate +261686 subordinate +coordinate +261689 coordinate +261700 subordinate +261705 coordinate +261709 coordinate +261713 coordinate +261723 coordinate +261725 coordinate +subordinate +subordinate +261735 coordinate +261739 coordinate +coordinate +261744 coordinate +coordinate +261752 coordinate +261759 coordinate +261765 coordinate +261770 subordinate +261774 coordinate +261801 coordinate +261807 subordinate +261820 subordinate +261826 coordinate +261831 coordinate +261835 coordinate +261842 coordinate +261846 subordinate +261852 subordinate +261885 subordinate +261902 coordinate +261912 coordinate +coordinate +261921 coordinate +261935 subordinate +261943 subordinate +coordinate +261947 coordinate +261965 subordinate +261968 subordinate +261973 subordinate +261977 subordinate +subordinate +coordinate +261982 coordinate +261998 subordinate +coordinate +262002 coordinate +262007 subordinate +262009 subordinate +coordinate +262013 coordinate +262032 subordinate +262042 subordinate +262055 subordinate +262057 subordinate +262069 subordinate +262076 coordinate +262078 coordinate +262090 subordinate +262102 subordinate +262107 subordinate +262120 subordinate +coordinate +262124 coordinate +262128 subordinate +coordinate +262131 coordinate +262143 coordinate +262149 coordinate +262155 coordinate +262157 coordinate +262159 coordinate +262170 coordinate +262179 subordinate +262184 subordinate +262197 subordinate +262246 coordinate +262249 coordinate +262253 coordinate +262256 subordinate +262263 coordinate +262275 coordinate +262277 coordinate +coordinate +262283 coordinate +262288 coordinate +coordinate +262291 coordinate +coordinate +subordinate +262295 coordinate +subordinate +262301 subordinate +262313 coordinate +262322 coordinate +coordinate +subordinate +262329 coordinate +subordinate +262332 coordinate +262338 subordinate +262350 coordinate +262352 coordinate +262357 coordinate +262367 subordinate +262374 coordinate +coordinate +262378 coordinate +262382 coordinate +262391 subordinate +262404 coordinate +262406 coordinate +262411 coordinate +262419 coordinate +262429 subordinate +262445 subordinate +262469 subordinate +262477 coordinate +262480 coordinate +262491 coordinate +262495 coordinate +subordinate +262500 subordinate +262511 subordinate +262514 subordinate +262519 coordinate +262522 subordinate +262527 coordinate +coordinate +262531 coordinate +262536 coordinate +262551 subordinate +262560 coordinate +262603 coordinate +262606 coordinate +262620 subordinate +coordinate +262629 coordinate +subordinate +262641 subordinate +262647 subordinate +262660 coordinate +subordinate +262665 subordinate +262668 subordinate +262670 coordinate +262677 subordinate +262692 subordinate +262711 subordinate +262718 coordinate +262722 coordinate +262726 coordinate +262730 coordinate +262734 coordinate +262738 coordinate +262742 coordinate +262746 coordinate +262750 coordinate +262754 coordinate +262758 coordinate +262762 coordinate +262768 coordinate +262772 coordinate +262777 subordinate +262791 subordinate +262794 coordinate +262818 coordinate +262830 coordinate +coordinate +262838 coordinate +262872 coordinate +262880 coordinate +262891 coordinate +262899 coordinate +coordinate +262904 coordinate +262911 coordinate +coordinate +262919 coordinate +262926 coordinate +262934 coordinate +262936 coordinate +262938 coordinate +262945 subordinate +coordinate +coordinate +262955 coordinate +262960 coordinate +262970 subordinate +262981 coordinate +262989 coordinate +262994 coordinate +262997 coordinate +coordinate +263001 subordinate +263004 coordinate +263008 subordinate +263038 coordinate +263042 coordinate +263048 coordinate +263069 subordinate +263077 coordinate +263080 subordinate +263083 coordinate +263089 coordinate +263094 coordinate +263099 coordinate +263113 subordinate +263119 coordinate +263124 coordinate +263136 coordinate +263148 coordinate +263152 subordinate +263155 subordinate +263157 coordinate +263178 coordinate +263184 coordinate +263191 subordinate +263214 subordinate +263218 coordinate +coordinate +263224 coordinate +263229 coordinate +263231 coordinate +263234 subordinate +263254 subordinate +263263 coordinate +subordinate +263270 coordinate +263279 coordinate +coordinate +263289 subordinate +263293 coordinate +263305 coordinate +263313 subordinate +263320 subordinate +263332 subordinate +263344 subordinate +263346 coordinate +coordinate +263358 subordinate +263362 coordinate +coordinate +263370 coordinate +263373 coordinate +coordinate +subordinate +263377 coordinate +263383 coordinate +263388 subordinate +263391 coordinate +263399 coordinate +263405 coordinate +263410 coordinate +263415 coordinate +263420 coordinate +263430 subordinate +263435 coordinate +263441 coordinate +263460 coordinate +263463 coordinate +263495 subordinate +263502 subordinate +263528 subordinate +263548 coordinate +263553 coordinate +263564 coordinate +263571 coordinate +263618 coordinate +263621 subordinate +263623 coordinate +263643 subordinate +263661 subordinate +263667 coordinate +263687 coordinate +subordinate +263693 subordinate +263695 coordinate +coordinate +coordinate +263703 coordinate +263709 coordinate +263715 coordinate +263720 subordinate +263724 coordinate +coordinate +263733 coordinate +263741 subordinate +263746 subordinate +263756 subordinate +263760 subordinate +263764 subordinate +263767 subordinate +coordinate +subordinate +263773 coordinate +263777 coordinate +263781 subordinate +263825 coordinate +263835 subordinate +subordinate +subordinate +263842 subordinate +263850 coordinate +263858 coordinate +subordinate +263884 subordinate +subordinate +263891 coordinate +coordinate +263894 coordinate +263896 coordinate +coordinate +263906 subordinate +263910 coordinate +coordinate +263918 coordinate +263920 coordinate +263929 subordinate +263936 subordinate +263950 coordinate +263952 coordinate +263966 coordinate +263973 coordinate +263975 subordinate +coordinate +263979 coordinate +263988 coordinate +263993 coordinate +263996 subordinate +264016 subordinate +subordinate +264019 coordinate +264024 coordinate +264031 subordinate +subordinate +264034 subordinate +264037 coordinate +264040 subordinate +264043 subordinate +264049 coordinate +264052 subordinate +264055 coordinate +264067 subordinate +264071 coordinate +264080 coordinate +coordinate +264083 coordinate +264107 coordinate +264120 coordinate +subordinate +264128 coordinate +coordinate +264136 coordinate +264138 coordinate +264140 subordinate +264151 coordinate +coordinate +264163 coordinate +264168 coordinate +264184 coordinate +264190 coordinate +264196 coordinate +264202 coordinate +coordinate +264208 coordinate +coordinate +264216 coordinate +coordinate +264220 coordinate +264247 coordinate +264258 coordinate +264266 coordinate +264282 coordinate +264300 subordinate +coordinate +264307 coordinate +264311 coordinate +264314 coordinate +coordinate +264319 coordinate +264325 coordinate +264327 coordinate +264346 coordinate +264353 coordinate +264362 coordinate +264386 coordinate +coordinate +coordinate +264391 coordinate +264397 coordinate +264404 coordinate +264407 coordinate +subordinate +coordinate +264411 coordinate +subordinate +264416 coordinate +264421 coordinate +264423 coordinate +264431 coordinate +264437 coordinate +coordinate +264447 coordinate +264459 subordinate +264463 subordinate +264472 subordinate +264498 subordinate +264502 subordinate +264524 coordinate +264531 coordinate +264559 coordinate +264563 coordinate +264591 subordinate +264607 coordinate +264620 coordinate +264641 subordinate +264644 subordinate +264675 subordinate +264700 subordinate +264702 subordinate +264706 coordinate +264710 coordinate +coordinate +264716 coordinate +264727 coordinate +264732 coordinate +subordinate +264742 coordinate +264747 coordinate +264760 coordinate +subordinate +264764 subordinate +264770 coordinate +coordinate +264777 coordinate +264785 coordinate +264790 coordinate +coordinate +264796 coordinate +264816 coordinate +264821 subordinate +subordinate +264825 coordinate +264833 coordinate +coordinate +264843 subordinate +264847 coordinate +264851 coordinate +264854 coordinate +subordinate +264860 coordinate +264862 subordinate +264866 coordinate +subordinate +264879 subordinate +264894 coordinate +subordinate +coordinate +264900 coordinate +264902 coordinate +264936 subordinate +264941 subordinate +264947 subordinate +264949 subordinate +264962 coordinate +subordinate +264968 coordinate +coordinate +264975 subordinate +264995 subordinate +265010 subordinate +subordinate +265029 subordinate +265032 subordinate +265037 subordinate +265041 coordinate +265046 coordinate +265051 subordinate +265056 subordinate +coordinate +265062 coordinate +265065 subordinate +subordinate +265092 coordinate +subordinate +265105 coordinate +subordinate +265108 subordinate +coordinate +265111 coordinate +265113 subordinate +265138 subordinate +265149 coordinate +265152 coordinate +265158 coordinate +265163 subordinate +subordinate +265183 coordinate +subordinate +265188 coordinate +subordinate +265193 coordinate +265198 subordinate +265219 subordinate +265222 subordinate +265234 subordinate +265237 subordinate +265243 subordinate +265247 coordinate +265256 coordinate +265265 subordinate +265268 subordinate +265270 subordinate +265288 coordinate +265290 coordinate +265293 coordinate +265295 subordinate +265301 coordinate +265343 subordinate +coordinate +265351 coordinate +265361 coordinate +265378 coordinate +265391 coordinate +265399 coordinate +265411 subordinate +subordinate +265456 subordinate +265463 coordinate +265466 coordinate +265475 coordinate +265481 coordinate +265501 coordinate +265505 coordinate +265509 subordinate +265511 subordinate +265518 coordinate +265528 coordinate +265540 subordinate +265546 coordinate +265556 coordinate +265566 coordinate +265572 coordinate +265579 subordinate +265585 coordinate +265592 coordinate +coordinate +265598 coordinate +265610 coordinate +265615 coordinate +265642 subordinate +265652 coordinate +265656 coordinate +265676 subordinate +265721 coordinate +265728 coordinate +265732 coordinate +265735 subordinate +265741 coordinate +265744 coordinate +coordinate +265755 coordinate +265765 subordinate +coordinate +265770 coordinate +265786 subordinate +265800 coordinate +265813 subordinate +265817 subordinate +265833 coordinate +265835 coordinate +265847 coordinate +265850 coordinate +265886 coordinate +265890 coordinate +265934 subordinate +coordinate +265940 coordinate +subordinate +265971 subordinate +265977 coordinate +265981 coordinate +coordinate +265994 coordinate +subordinate +266009 coordinate +266012 subordinate +266014 coordinate +coordinate +coordinate +266022 coordinate +266035 coordinate +266056 subordinate +266067 subordinate +266093 subordinate +266100 subordinate +266115 subordinate +266120 coordinate +266122 coordinate +266126 subordinate +coordinate +266129 coordinate +266161 coordinate +266166 coordinate +266171 subordinate +266179 coordinate +266186 coordinate +266197 subordinate +266209 coordinate +266212 coordinate +266233 subordinate +266239 coordinate +266250 coordinate +266267 coordinate +266273 coordinate +266290 subordinate +266295 subordinate +266297 subordinate +266307 subordinate +coordinate +266312 coordinate +266318 coordinate +266324 subordinate +266332 coordinate +266352 subordinate +266368 subordinate +266398 coordinate +coordinate +266404 coordinate +266406 coordinate +coordinate +subordinate +266412 coordinate +266435 coordinate +266437 coordinate +266439 coordinate +266461 coordinate +266463 coordinate +266465 coordinate +coordinate +266471 subordinate +subordinate +266480 coordinate +266482 coordinate +coordinate +coordinate +266487 coordinate +266491 coordinate +266503 coordinate +266505 coordinate +266512 coordinate +266515 coordinate +266523 coordinate +266527 coordinate +266531 subordinate +coordinate +266538 coordinate +266569 coordinate +266572 coordinate +coordinate +266575 subordinate +266578 coordinate +coordinate +266583 coordinate +266592 subordinate +coordinate +266597 coordinate +266600 coordinate +266605 subordinate +266627 coordinate +266629 subordinate +266633 subordinate +266636 coordinate +266648 coordinate +266667 subordinate +266669 subordinate +coordinate +266681 coordinate +266687 coordinate +266709 coordinate +subordinate +266714 coordinate +subordinate +266720 subordinate +coordinate +266727 coordinate +266735 subordinate +266738 coordinate +266753 coordinate +266755 coordinate +266765 coordinate +266767 coordinate +coordinate +266770 coordinate +266774 coordinate +266785 coordinate +266788 subordinate +266811 subordinate +266816 subordinate +266837 subordinate +266851 subordinate +266904 coordinate +coordinate +266914 coordinate +266922 coordinate +266938 subordinate +coordinate +266941 coordinate +266953 coordinate +266958 coordinate +266965 subordinate +266972 coordinate +266982 subordinate +266986 coordinate +subordinate +267000 coordinate +267005 coordinate +subordinate +coordinate +267009 coordinate +267031 subordinate +267046 subordinate +267054 coordinate +267061 coordinate +267066 coordinate +267071 coordinate +267077 coordinate +267086 coordinate +267093 coordinate +267098 coordinate +267103 coordinate +267110 subordinate +267118 subordinate +coordinate +267126 coordinate +267165 subordinate +coordinate +267177 coordinate +267188 coordinate +267190 coordinate +267200 coordinate +267210 coordinate +267259 subordinate +267268 coordinate +coordinate +267271 coordinate +267273 coordinate +267276 subordinate +coordinate +267282 coordinate +267289 subordinate +267294 subordinate +267326 subordinate +267334 subordinate +267349 subordinate +267358 coordinate +subordinate +267362 coordinate +267367 coordinate +coordinate +267375 coordinate +267382 coordinate +coordinate +267388 coordinate +267393 subordinate +coordinate +267397 subordinate +267400 subordinate +267402 coordinate +267404 subordinate +267406 coordinate +267422 subordinate +267434 subordinate +267438 coordinate +267467 subordinate +267475 subordinate +coordinate +267481 coordinate +267502 subordinate +267529 subordinate +267539 subordinate +267554 coordinate +267580 subordinate +267593 coordinate +267609 coordinate +267618 subordinate +267621 subordinate +267636 coordinate +coordinate +267649 coordinate +267652 coordinate +coordinate +267657 coordinate +coordinate +267660 coordinate +267663 subordinate +267666 subordinate +267672 subordinate +267677 coordinate +coordinate +coordinate +267681 coordinate +coordinate +267685 coordinate +267687 coordinate +267702 coordinate +coordinate +267710 coordinate +267722 coordinate +267724 coordinate +267734 subordinate +267754 coordinate +267759 coordinate +coordinate +267767 coordinate +267775 subordinate +267779 coordinate +267786 subordinate +267799 subordinate +267813 coordinate +267819 coordinate +267832 coordinate +267836 coordinate +267840 coordinate +267857 coordinate +267876 coordinate +267885 coordinate +267889 coordinate +subordinate +267900 coordinate +267922 coordinate +coordinate +267930 coordinate +267940 coordinate +267968 subordinate +subordinate +267988 subordinate +coordinate +267997 coordinate +268002 subordinate +268012 subordinate +268015 subordinate +268026 coordinate +coordinate +coordinate +268035 coordinate +268038 coordinate +coordinate +268042 coordinate +268047 coordinate +coordinate +268054 coordinate +coordinate +268058 coordinate +268079 subordinate +268111 coordinate +268115 coordinate +coordinate +268118 coordinate +268127 subordinate +268151 coordinate +268169 coordinate +268183 coordinate +268190 coordinate +subordinate +268200 subordinate +268210 subordinate +268213 subordinate +268221 coordinate +268224 coordinate +coordinate +268230 coordinate +268239 coordinate +268243 coordinate +268247 coordinate +268251 coordinate +268257 coordinate +268263 coordinate +268280 subordinate +268292 coordinate +268330 coordinate +268336 coordinate +268353 coordinate +268357 coordinate +268359 coordinate +268361 coordinate +268363 coordinate +268365 coordinate +268367 coordinate +268369 coordinate +268371 coordinate +268373 coordinate +268375 coordinate +268377 coordinate +268407 subordinate +268428 subordinate +268430 subordinate +coordinate +268436 coordinate +268464 subordinate +268488 subordinate +268500 subordinate +268515 coordinate +268528 subordinate +268530 subordinate +268536 coordinate +268550 coordinate +268559 coordinate +coordinate +coordinate +268565 coordinate +268569 coordinate +268578 coordinate +coordinate +268588 subordinate +268593 coordinate +268602 coordinate +268608 coordinate +268618 subordinate +268621 subordinate +subordinate +268648 subordinate +coordinate +268651 coordinate +268653 subordinate +268667 subordinate +268696 subordinate +268700 coordinate +coordinate +268705 coordinate +268708 coordinate +coordinate +268712 coordinate +268718 coordinate +268724 subordinate +268750 subordinate +coordinate +268759 coordinate +268777 subordinate +268785 subordinate +268839 subordinate +268855 subordinate diff --git a/tf/0.1.1/lang.tf b/tf/0.1.1/lang.tf new file mode 100644 index 0000000..867c98d --- /dev/null +++ b/tf/0.1.1/lang.tf @@ -0,0 +1,41 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute lang +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +137780 el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el +el diff --git a/tf/0.1.1/lemma.tf b/tf/0.1.1/lemma.tf new file mode 100644 index 0000000..69d059a --- /dev/null +++ b/tf/0.1.1/lemma.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=lemma +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +βίβλος +γένεσις +Ἰησοῦς +Χριστός +υἱός +Δαυίδ +υἱός +Ἀβραάμ +Ἀβραάμ +γεννάω +ὁ +Ἰσαάκ +δέ +Ἰσαάκ +γεννάω +ὁ +Ἰακώβ +δέ +Ἰακώβ +γεννάω +ὁ +Ἰούδας +καί +ὁ +ἀδελφός +αὐτός +δέ +Ἰούδας +γεννάω +ὁ +Φάρες +καί +ὁ +Ζάρα +ἐκ +ὁ +Θαμάρ +δέ +Φάρες +γεννάω +ὁ +Ἑσρώμ +δέ +Ἑσρώμ +γεννάω +ὁ +Ἀράμ +δέ +Ἀράμ +γεννάω +ὁ +Ἀμιναδάβ +δέ +Ἀμιναδάβ +γεννάω +ὁ +Ναασσών +δέ +Ναασσών +γεννάω +ὁ +Σαλμών +δέ +Σαλμών +γεννάω +ὁ +Βόες +ἐκ +ὁ +Ῥαχάβ +δέ +Βόες +γεννάω +ὁ +Ἰωβήδ +ἐκ +ὁ +Ῥούθ +δέ +Ἰωβήδ +γεννάω +ὁ +Ἰεσσαί +δέ +Ἰεσσαί +γεννάω +ὁ +Δαυίδ +ὁ +βασιλεύς +δέ +Δαυίδ +γεννάω +ὁ +Σολομών +ἐκ +ὁ +ὁ +Οὐρίας +δέ +Σολομών +γεννάω +ὁ +Ῥοβοάμ +δέ +Ῥοβοάμ +γεννάω +ὁ +Ἀβιά +δέ +Ἀβιά +γεννάω +ὁ +Ἀσάφ +δέ +Ἀσάφ +γεννάω +ὁ +Ἰωσαφάτ +δέ +Ἰωσαφάτ +γεννάω +ὁ +Ἰωράμ +δέ +Ἰωράμ +γεννάω +ὁ +Ὀζίας +δέ +Ὀζίας +γεννάω +ὁ +Ἰωαθάμ +δέ +Ἰωαθάμ +γεννάω +ὁ +Ἀχάζ +δέ +Ἀχάζ +γεννάω +ὁ +Ἑζεκίας +δέ +Ἑζεκίας +γεννάω +ὁ +Μανασσῆ +δέ +Μανασσῆ +γεννάω +ὁ +Ἀμώς +δέ +Ἀμώς +γεννάω +ὁ +Ἰωσίας +δέ +Ἰωσίας +γεννάω +ὁ +Ἰεχονίας +καί +ὁ +ἀδελφός +αὐτός +ἐπί +ὁ +μετοικεσία +Βαβυλών +δέ +μετά +ὁ +μετοικεσία +Βαβυλών +Ἰεχονίας +γεννάω +ὁ +Σαλαθιήλ +δέ +Σαλαθιήλ +γεννάω +ὁ +Ζοροβαβέλ +δέ +Ζοροβαβέλ +γεννάω +ὁ +Ἀβιούδ +δέ +Ἀβιούδ +γεννάω +ὁ +Ἐλιακίμ +δέ +Ἐλιακίμ +γεννάω +ὁ +Ἀζώρ +δέ +Ἀζώρ +γεννάω +ὁ +Σαδώκ +δέ +Σαδώκ +γεννάω +ὁ +Ἀχίμ +δέ +Ἀχίμ +γεννάω +ὁ +Ἐλιούδ +δέ +Ἐλιούδ +γεννάω +ὁ +Ἐλεάζαρ +δέ +Ἐλεάζαρ +γεννάω +ὁ +Ματθάν +δέ +Ματθάν +γεννάω +ὁ +Ἰακώβ +δέ +Ἰακώβ +γεννάω +ὁ +Ἰωσήφ +ὁ +ἀνήρ +Μαρία +ἐκ +ὅς +γεννάω +Ἰησοῦς +ὁ +λέγω +Χριστός +οὖν +πᾶς +ὁ +γενεά +ἀπό +Ἀβραάμ +ἕως +Δαυίδ +γενεά +δεκατέσσαρες +καί +ἀπό +Δαυίδ +ἕως +ὁ +μετοικεσία +Βαβυλών +γενεά +δεκατέσσαρες +καί +ἀπό +ὁ +μετοικεσία +Βαβυλών +ἕως +ὁ +Χριστός +γενεά +δεκατέσσαρες +δέ +ὁ +Ἰησοῦς +Χριστός +ὁ +γένεσις +οὕτω +εἰμί +μνηστεύω +ὁ +μήτηρ +αὐτός +Μαρία +ὁ +Ἰωσήφ +πρίν +ἤ +συνέρχομαι +αὐτός +εὑρίσκω +ἐν +γαστήρ +ἔχω +ἐκ +πνεῦμα +ἅγιος +δέ +Ἰωσήφ +ὁ +ἀνήρ +αὐτός +δίκαιος +εἰμί +καί +μή +θέλω +αὐτός +δειγματίζω +βούλομαι +λάθρᾳ +ἀπολύω +αὐτός +δέ +οὗτος +αὐτός +ἐνθυμέομαι +ὁράω +ἄγγελος +κύριος +κατά +ὄναρ +φαίνω +αὐτός +λέγω +Ἰωσήφ +υἱός +Δαυίδ +μή +φοβέω +παραλαμβάνω +Μαρία +ὁ +γυνή +σύ +γάρ +ὁ +ἐν +αὐτός +γεννάω +ἐκ +πνεῦμα +ἅγιος +εἰμί +δέ +τίκτω +υἱός +καί +καλέω +ὁ +ὄνομα +αὐτός +Ἰησοῦς +γάρ +αὐτός +σῴζω +ὁ +λαός +αὐτός +ἀπό +ὁ +ἁμαρτία +αὐτός +δέ +οὗτος +ὅλος +γίνομαι +ἵνα +πληρόω +ὁ +εἶπον +ὑπό +κύριος +διά +ὁ +προφήτης +λέγω +ὁράω +ὁ +παρθένος +ἐν +γαστήρ +ἔχω +καί +τίκτω +υἱός +καί +καλέω +ὁ +ὄνομα +αὐτός +Ἐμμανουήλ +ὅς +εἰμί +μεθερμηνεύω +μετά +ἐγώ +ὁ +θεός +δέ +ὁ +Ἰωσήφ +ἐγείρω +ἀπό +ὁ +ὕπνος +ποιέω +ὡς +προστάσσω +αὐτός +ὁ +ἄγγελος +κύριος +καί +παραλαμβάνω +ὁ +γυνή +αὐτός +καί +οὐ +γινώσκω +αὐτός +ἕως +ὅς +τίκτω +υἱός +καί +καλέω +ὁ +ὄνομα +αὐτός +Ἰησοῦς +δέ +ὁ +Ἰησοῦς +γεννάω +ἐν +Βηθλέεμ +ὁ +Ἰουδαία +ἐν +ἡμέρα +Ἡρῴδης +ὁ +βασιλεύς +ὁράω +μάγος +ἀπό +ἀνατολή +παραγίνομαι +εἰς +Ἱεροσόλυμα +λέγω +ποῦ +εἰμί +ὁ +τίκτω +βασιλεύς +ὁ +Ἰουδαῖος +γάρ +ὁράω +αὐτός +ὁ +ἀστήρ +ἐν +ὁ +ἀνατολή +καί +ἔρχομαι +προσκυνέω +αὐτός +δέ +ἀκούω +ὁ +βασιλεύς +Ἡρῴδης +ταράσσω +καί +πᾶς +Ἱεροσόλυμα +μετά +αὐτός +καί +συνάγω +πᾶς +ὁ +ἀρχιερεύς +καί +γραμματεύς +ὁ +λαός +πυνθάνομαι +παρά +αὐτός +ποῦ +ὁ +Χριστός +γεννάω +δέ +ὁ +λέγω +αὐτός +ἐν +Βηθλέεμ +ὁ +Ἰουδαία +γάρ +οὕτω +γράφω +διά +ὁ +προφήτης +καί +Βηθλέεμ +γῆ +Ἰούδας +σύ +οὐδαμῶς +ἐλάχιστος +εἰμί +ἐν +ὁ +ἡγεμών +Ἰούδας +γάρ +ἐκ +σύ +ἐξέρχομαι +ἡγέομαι +ὅστις +ποιμαίνω +ὁ +λαός +ἐγώ +ὁ +Ἰσραήλ +τότε +Ἡρῴδης +λάθρᾳ +καλέω +ὁ +μάγος +ἀκριβόω +παρά +αὐτός +ὁ +χρόνος +ὁ +φαίνω +ἀστήρ +καί +πέμπω +αὐτός +εἰς +Βηθλέεμ +λέγω +πορεύομαι +ἐξετάζω +ἀκριβῶς +περί +ὁ +παιδίον +δέ +ἐπάν +εὑρίσκω +ἀπαγγέλλω +ἐγώ +ὅπως +κἀγώ +ἔρχομαι +προσκυνέω +αὐτός +δέ +ὁ +ἀκούω +ὁ +βασιλεύς +πορεύομαι +καί +ὁράω +ὁ +ἀστήρ +ὅς +ὁράω +ἐν +ὁ +ἀνατολή +προάγω +αὐτός +ἕως +ἔρχομαι +ἵστημι +ἐπάνω +οὗ +εἰμί +ὁ +παιδίον +δέ +ὁράω +ὁ +ἀστήρ +χαίρω +χαρά +μέγας +σφόδρα +καί +ἔρχομαι +εἰς +ὁ +οἰκία +ὁράω +ὁ +παιδίον +μετά +Μαρία +ὁ +μήτηρ +αὐτός +καί +πίπτω +προσκυνέω +αὐτός +καί +ἀνοίγω +ὁ +θησαυρός +αὐτός +προσφέρω +αὐτός +δῶρον +χρυσός +καί +λίβανος +καί +σμύρνα +καί +χρηματίζω +κατά +ὄναρ +μή +ἀνακάμπτω +πρός +Ἡρῴδης +διά +ἄλλος +ὁδός +ἀναχωρέω +εἰς +ὁ +χώρα +αὐτός +δέ +ἀναχωρέω +αὐτός +ὁράω +ἄγγελος +κύριος +φαίνω +κατά +ὄναρ +ὁ +Ἰωσήφ +λέγω +ἐγείρω +παραλαμβάνω +ὁ +παιδίον +καί +ὁ +μήτηρ +αὐτός +καί +φεύγω +εἰς +Αἴγυπτος +καί +εἰμί +ἐκεῖ +ἕως +ἄν +λέγω +σύ +γάρ +μέλλω +Ἡρῴδης +ζητέω +ὁ +παιδίον +ὁ +ἀπόλλυμι +αὐτός +δέ +ὁ +ἐγείρω +παραλαμβάνω +ὁ +παιδίον +καί +ὁ +μήτηρ +αὐτός +νύξ +καί +ἀναχωρέω +εἰς +Αἴγυπτος +καί +εἰμί +ἐκεῖ +ἕως +ὁ +τελευτή +Ἡρῴδης +ἵνα +πληρόω +ὁ +εἶπον +ὑπό +κύριος +διά +ὁ +προφήτης +λέγω +ἐκ +Αἴγυπτος +καλέω +ὁ +υἱός +ἐγώ +τότε +Ἡρῴδης +ὁράω +ὅτι +ἐμπαίζω +ὑπό +ὁ +μάγος +θυμόω +λίαν +καί +ἀποστέλλω +ἀναιρέω +πᾶς +ὁ +παῖς +ὁ +ἐν +Βηθλέεμ +καί +ἐν +πᾶς +ὁ +ὅριον +αὐτός +ἀπό +διετής +καί +κάτω +κατά +ὁ +χρόνος +ὅς +ἀκριβόω +παρά +ὁ +μάγος +τότε +πληρόω +ὁ +εἶπον +διά +Ἰερεμίας +ὁ +προφήτης +λέγω +ἐν +Ῥαμά +ἀκούω +φωνή +κλαυθμός +καί +ὀδυρμός +πολύς +Ῥαχήλ +κλαίω +ὁ +τέκνον +αὐτός +καί +οὐ +θέλω +παρακαλέω +ὅτι +οὐ +εἰμί +δέ +τελευτάω +ὁ +Ἡρῴδης +ὁράω +ἄγγελος +κύριος +φαίνω +κατά +ὄναρ +ὁ +Ἰωσήφ +ἐν +Αἴγυπτος +λέγω +ἐγείρω +παραλαμβάνω +ὁ +παιδίον +καί +ὁ +μήτηρ +αὐτός +καί +πορεύομαι +εἰς +γῆ +Ἰσραήλ +γάρ +θνῄσκω +ὁ +ζητέω +ὁ +ψυχή +ὁ +παιδίον +δέ +ὁ +ἐγείρω +παραλαμβάνω +ὁ +παιδίον +καί +ὁ +μήτηρ +αὐτός +καί +εἰσέρχομαι +εἰς +γῆ +Ἰσραήλ +δέ +ἀκούω +ὅτι +Ἀρχέλαος +βασιλεύω +ὁ +Ἰουδαία +ἀντί +ὁ +πατήρ +αὐτός +Ἡρῴδης +φοβέω +ἐκεῖ +ἀπέρχομαι +δέ +χρηματίζω +κατά +ὄναρ +ἀναχωρέω +εἰς +ὁ +μέρος +ὁ +Γαλιλαία +καί +ἔρχομαι +κατοικέω +εἰς +πόλις +λέγω +Ναζαρά +ὅπως +πληρόω +ὁ +εἶπον +διά +ὁ +προφήτης +ὅτι +Ναζωραῖος +καλέω +δέ +ἐν +ὁ +ἡμέρα +ἐκεῖνος +παραγίνομαι +Ἰωάννης +ὁ +βαπτιστής +κηρύσσω +ἐν +ὁ +ἔρημος +ὁ +Ἰουδαία +λέγω +μετανοέω +γάρ +ἐγγίζω +ὁ +βασιλεία +ὁ +οὐρανός +γάρ +οὗτος +εἰμί +ὁ +εἶπον +διά +Ἠσαΐας +ὁ +προφήτης +λέγω +φωνή +βοάω +ἐν +ὁ +ἔρημος +ἑτοιμάζω +ὁ +ὁδός +κύριος +εὐθύς +ποιέω +ὁ +τρίβος +αὐτός +δέ +αὐτός +ὁ +Ἰωάννης +ἔχω +ὁ +ἔνδυμα +αὐτός +ἀπό +θρίξ +κάμηλος +καί +ζώνη +δερμάτινος +περί +ὁ +ὀσφῦς +αὐτός +δέ +ὁ +τροφή +αὐτός +εἰμί +ἀκρίς +καί +μέλι +ἄγριος +τότε +ἐκπορεύομαι +πρός +αὐτός +Ἱεροσόλυμα +καί +πᾶς +ὁ +Ἰουδαία +καί +πᾶς +ὁ +περίχωρος +ὁ +Ἰορδάνης +καί +βαπτίζω +ἐν +ὁ +Ἰορδάνης +ποταμός +ὑπό +αὐτός +ἐξομολογέω +ὁ +ἁμαρτία +αὐτός +δέ +ὁράω +πολύς +ὁ +Φαρισαῖος +καί +Σαδδουκαῖος +ἔρχομαι +ἐπί +ὁ +βάπτισμα +λέγω +αὐτός +γέννημα +ἔχιδνα +τίς +ὑποδείκνυμι +σύ +φεύγω +ἀπό +ὁ +μέλλω +ὀργή +οὖν +ποιέω +καρπός +ἄξιος +ὁ +μετάνοια +καί +μή +δοκέω +λέγω +ἐν +ἑαυτοῦ +πατήρ +ἔχω +ὁ +Ἀβραάμ +γάρ +λέγω +σύ +ὅτι +δύναμαι +ὁ +θεός +ἐκ +ὁ +λίθος +οὗτος +ἐγείρω +τέκνον +ὁ +Ἀβραάμ +δέ +ἤδη +ὁ +ἀξίνη +πρός +ὁ +ῥίζα +ὁ +δένδρον +κεῖμαι +οὖν +πᾶς +δένδρον +μή +ποιέω +καρπός +καλός +ἐκκόπτω +καί +εἰς +πῦρ +βάλλω +μέν +ἐγώ +σύ +βαπτίζω +ἐν +ὕδωρ +εἰς +μετάνοια +δέ +ὁ +ὀπίσω +ἐγώ +ἔρχομαι +ἰσχυρός +ἐγώ +εἰμί +ὅς +οὐ +εἰμί +ἱκανός +ὁ +ὑπόδημα +βαστάζω +αὐτός +σύ +βαπτίζω +ἐν +πνεῦμα +ἅγιος +καί +πῦρ +ὅς +ὁ +πτύον +ἐν +ὁ +χείρ +αὐτός +καί +διακαθαρίζω +ὁ +ἅλων +αὐτός +καί +συνάγω +ὁ +σῖτος +αὐτός +εἰς +ὁ +ἀποθήκη +δέ +ὁ +ἄχυρον +κατακαίω +πῦρ +ἄσβεστος +τότε +παραγίνομαι +ὁ +Ἰησοῦς +ἀπό +ὁ +Γαλιλαία +ἐπί +ὁ +Ἰορδάνης +πρός +ὁ +Ἰωάννης +ὁ +βαπτίζω +ὑπό +αὐτός +δέ +ὁ +διακωλύω +αὐτός +λέγω +ἐγώ +χρεία +ἔχω +ὑπό +σύ +βαπτίζω +καί +σύ +ἔρχομαι +πρός +ἐγώ +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +ἀφίημι +ἄρτι +γάρ +οὕτω +πρέπω +εἰμί +ἐγώ +πληρόω +πᾶς +δικαιοσύνη +τότε +ἀφίημι +αὐτός +δέ +βαπτίζω +ὁ +Ἰησοῦς +εὐθύς +ἀναβαίνω +ἀπό +ὁ +ὕδωρ +καί +ὁράω +ἀνοίγω +ὁ +οὐρανός +καί +ὁράω +πνεῦμα +θεός +καταβαίνω +ὡσεί +περιστερά +ἔρχομαι +ἐπί +αὐτός +καί +ὁράω +φωνή +ἐκ +ὁ +οὐρανός +λέγω +οὗτος +εἰμί +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἐν +ὅς +εὐδοκέω +τότε +ὁ +Ἰησοῦς +ἀνάγω +εἰς +ὁ +ἔρημος +ὑπό +ὁ +πνεῦμα +πειράζω +ὑπό +ὁ +διάβολος +καί +νηστεύω +ἡμέρα +τεσσεράκοντα +καί +τεσσεράκοντα +νύξ +ὕστερος +πεινάω +καί +προσέρχομαι +ὁ +πειράζω +λέγω +αὐτός +εἰ +εἰμί +υἱός +ὁ +θεός +λέγω +ἵνα +ὁ +λίθος +οὗτος +ἄρτος +γίνομαι +δέ +ὁ +ἀποκρίνομαι +λέγω +γράφω +οὐ +ἐπί +ἄρτος +μόνος +ζάω +ὁ +ἄνθρωπος +ἀλλά +ἐπί +πᾶς +ῥῆμα +ἐκπορεύομαι +διά +στόμα +θεός +τότε +παραλαμβάνω +αὐτός +ὁ +διάβολος +εἰς +ὁ +ἅγιος +πόλις +καί +ἵστημι +αὐτός +ἐπί +ὁ +πτερύγιον +ὁ +ἱερός +καί +λέγω +αὐτός +εἰ +εἰμί +υἱός +ὁ +θεός +βάλλω +σεαυτοῦ +κάτω +γάρ +γράφω +ὅτι +ὁ +ἄγγελος +αὐτός +ἐντέλλομαι +περί +σύ +καί +ἐπί +χείρ +αἴρω +σύ +μή +ποτέ +προσκόπτω +πρός +λίθος +ὁ +πούς +σύ +φημί +αὐτός +ὁ +Ἰησοῦς +πάλιν +γράφω +οὐ +ἐκπειράζω +κύριος +ὁ +θεός +σύ +πάλιν +παραλαμβάνω +αὐτός +ὁ +διάβολος +εἰς +ὄρος +ὑψηλός +λίαν +καί +δείκνυμι +αὐτός +πᾶς +ὁ +βασιλεία +ὁ +κόσμος +καί +ὁ +δόξα +αὐτός +καί +λέγω +αὐτός +οὗτος +πᾶς +σύ +δίδωμι +ἐάν +πίπτω +προσκυνέω +ἐγώ +τότε +λέγω +αὐτός +ὁ +Ἰησοῦς +ὑπάγω +Σατανᾶς +γάρ +γράφω +κύριος +ὁ +θεός +σύ +προσκυνέω +καί +αὐτός +μόνος +λατρεύω +τότε +ἀφίημι +αὐτός +ὁ +διάβολος +καί +ὁράω +ἄγγελος +προσέρχομαι +καί +διακονέω +αὐτός +δέ +ἀκούω +ὅτι +Ἰωάννης +παραδίδωμι +ἀναχωρέω +εἰς +ὁ +Γαλιλαία +καί +καταλείπω +ὁ +Ναζαρά +ἔρχομαι +κατοικέω +εἰς +Καφαρναούμ +ὁ +παραθαλάσσιος +ἐν +ὅριον +Ζαβουλών +καί +Νεφθαλίμ +ἵνα +πληρόω +ὁ +εἶπον +διά +Ἠσαΐας +ὁ +προφήτης +λέγω +γῆ +Ζαβουλών +καί +γῆ +Νεφθαλίμ +ὁδός +θάλασσα +πέραν +ὁ +Ἰορδάνης +Γαλιλαία +ὁ +ἔθνος +ὁ +λαός +ὁ +κάθημαι +ἐν +σκοτία +φῶς +μέγας +ὁράω +καί +ὁ +κάθημαι +ἐν +χώρα +καί +σκιά +θάνατος +φῶς +ἀνατέλλω +αὐτός +ἀπό +τότε +ἄρχω +ὁ +Ἰησοῦς +κηρύσσω +καί +λέγω +μετανοέω +γάρ +ἐγγίζω +ὁ +βασιλεία +ὁ +οὐρανός +δέ +περιπατέω +παρά +ὁ +θάλασσα +ὁ +Γαλιλαία +ὁράω +δύο +ἀδελφός +Σίμων +ὁ +λέγω +Πέτρος +καί +Ἀνδρέας +ὁ +ἀδελφός +αὐτός +βάλλω +ἀμφίβληστρον +εἰς +ὁ +θάλασσα +γάρ +εἰμί +ἁλιεύς +καί +λέγω +αὐτός +δεῦτε +ὀπίσω +ἐγώ +καί +ποιέω +σύ +ἁλιεύς +ἄνθρωπος +δέ +ὁ +εὐθέως +ἀφίημι +ὁ +δίκτυον +ἀκολουθέω +αὐτός +καί +προβαίνω +ἐκεῖθεν +ὁράω +ἄλλος +δύο +ἀδελφός +Ἰάκωβος +ὁ +ὁ +Ζεβεδαῖος +καί +Ἰωάννης +ὁ +ἀδελφός +αὐτός +ἐν +ὁ +πλοῖον +μετά +Ζεβεδαῖος +ὁ +πατήρ +αὐτός +καταρτίζω +ὁ +δίκτυον +αὐτός +καί +καλέω +αὐτός +δέ +ὁ +εὐθέως +ἀφίημι +ὁ +πλοῖον +καί +ὁ +πατήρ +αὐτός +ἀκολουθέω +αὐτός +καί +περιάγω +ἐν +ὅλος +ὁ +Γαλιλαία +διδάσκω +ἐν +ὁ +συναγωγή +αὐτός +καί +κηρύσσω +ὁ +εὐαγγέλιον +ὁ +βασιλεία +καί +θεραπεύω +πᾶς +νόσος +καί +πᾶς +μαλακία +ἐν +ὁ +λαός +καί +ἀπέρχομαι +ὁ +ἀκοή +αὐτός +εἰς +ὅλος +ὁ +Συρία +καί +προσφέρω +αὐτός +πᾶς +ὁ +κακῶς +ἔχω +ποικίλος +νόσος +καί +βάσανος +συνέχω +δαιμονίζομαι +καί +σεληνιάζομαι +καί +παραλυτικός +καί +θεραπεύω +αὐτός +καί +ἀκολουθέω +αὐτός +ὄχλος +πολύς +ἀπό +ὁ +Γαλιλαία +καί +Δεκάπολις +καί +Ἱεροσόλυμα +καί +Ἰουδαία +καί +πέραν +ὁ +Ἰορδάνης +δέ +ὁράω +ὁ +ὄχλος +ἀναβαίνω +εἰς +ὁ +ὄρος +καί +καθίζω +αὐτός +προσέρχομαι +αὐτός +ὁ +μαθητής +αὐτός +καί +ἀνοίγω +ὁ +στόμα +αὐτός +διδάσκω +αὐτός +λέγω +μακάριος +ὁ +πτωχός +ὁ +πνεῦμα +ὅτι +αὐτός +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +μακάριος +ὁ +πενθέω +ὅτι +αὐτός +παρακαλέω +μακάριος +ὁ +πραΰς +ὅτι +αὐτός +κληρονομέω +ὁ +γῆ +μακάριος +ὁ +πεινάω +καί +διψάω +ὁ +δικαιοσύνη +ὅτι +αὐτός +χορτάζω +μακάριος +ὁ +ἐλεήμων +ὅτι +αὐτός +ἐλεέω +μακάριος +ὁ +καθαρός +ὁ +καρδία +ὅτι +αὐτός +ὁ +θεός +ὁράω +μακάριος +ὁ +εἰρηνοποιός +ὅτι +αὐτός +υἱός +θεός +καλέω +μακάριος +ὁ +διώκω +ἕνεκα +δικαιοσύνη +ὅτι +αὐτός +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +μακάριος +εἰμί +ὅταν +ὀνειδίζω +σύ +καί +διώκω +καί +λέγω +πᾶς +πονηρός +κατά +σύ +ψεύδομαι +ἕνεκα +ἐγώ +χαίρω +καί +ἀγαλλιάω +ὅτι +ὁ +μισθός +σύ +πολύς +ἐν +ὁ +οὐρανός +γάρ +οὕτω +διώκω +ὁ +προφήτης +ὁ +πρό +σύ +σύ +εἰμί +ὁ +ἅλας +ὁ +γῆ +δέ +ἐάν +ὁ +ἅλας +μωραίνω +ἐν +τίς +ἁλίζω +εἰς +οὐδείς +ἰσχύω +ἔτι +εἰ +μή +βάλλω +ἔξω +καταπατέω +ὑπό +ὁ +ἄνθρωπος +σύ +εἰμί +ὁ +φῶς +ὁ +κόσμος +οὐ +δύναμαι +πόλις +κρύπτω +ἐπάνω +ὄρος +κεῖμαι +οὐδέ +καίω +λύχνος +καί +τίθημι +αὐτός +ὑπό +ὁ +μόδιος +ἀλλά +ἐπί +ὁ +λυχνία +καί +λάμπω +πᾶς +ὁ +ἐν +ὁ +οἰκία +οὕτω +λάμπω +ὁ +φῶς +σύ +ἔμπροσθεν +ὁ +ἄνθρωπος +ὅπως +ὁράω +σύ +ὁ +καλός +ἔργον +καί +δοξάζω +ὁ +πατήρ +σύ +ὁ +ἐν +ὁ +οὐρανός +μή +νομίζω +ὅτι +ἔρχομαι +καταλύω +ὁ +νόμος +ἤ +ὁ +προφήτης +οὐ +ἔρχομαι +καταλύω +ἀλλά +πληρόω +γάρ +ἀμήν +λέγω +σύ +ἕως +ἄν +παρέρχομαι +ὁ +οὐρανός +καί +ὁ +γῆ +ἰῶτα +εἷς +ἤ +εἷς +κεραία +οὐ +μή +παρέρχομαι +ἀπό +ὁ +νόμος +ἕως +ἄν +πᾶς +γίνομαι +οὖν +ἐάν +ὅς +λύω +εἷς +ὁ +ἐντολή +οὗτος +ὁ +ἐλάχιστος +καί +διδάσκω +οὕτω +ὁ +ἄνθρωπος +ἐλάχιστος +καλέω +ἐν +ὁ +βασιλεία +ὁ +οὐρανός +δέ +ἄν +ὅς +ποιέω +καί +διδάσκω +οὗτος +μέγας +καλέω +ἐν +ὁ +βασιλεία +ὁ +οὐρανός +γάρ +λέγω +σύ +ὅτι +ἐάν +μή +περισσεύω +σύ +ὁ +δικαιοσύνη +πολύς +ὁ +γραμματεύς +καί +Φαρισαῖος +οὐ +μή +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +οὐρανός +ἀκούω +ὅτι +εἶπον +ὁ +ἀρχαῖος +οὐ +φονεύω +δέ +ἄν +ὅς +φονεύω +ἔνοχος +εἰμί +ὁ +κρίσις +δέ +ἐγώ +λέγω +σύ +ὅτι +πᾶς +ὁ +ὀργίζω +ὁ +ἀδελφός +αὐτός +ἔνοχος +εἰμί +ὁ +κρίσις +δέ +ἄν +ὅς +λέγω +ὁ +ἀδελφός +αὐτός +ῥακά +ἔνοχος +εἰμί +ὁ +συνέδριον +δέ +ἄν +ὅς +λέγω +μωρός +ἔνοχος +εἰμί +εἰς +ὁ +γέεννα +ὁ +πῦρ +οὖν +ἐάν +προσφέρω +ὁ +δῶρον +σύ +ἐπί +ὁ +θυσιαστήριον +κἀκεῖ +μιμνῄσκω +ὅτι +ὁ +ἀδελφός +σύ +ἔχω +τὶς +κατά +σύ +ἀφίημι +ἐκεῖ +ὁ +δῶρον +σύ +ἔμπροσθεν +ὁ +θυσιαστήριον +καί +ὑπάγω +πρῶτος +διαλλάσσω +ὁ +ἀδελφός +σύ +καί +τότε +ἔρχομαι +προσφέρω +ὁ +δῶρον +σύ +εἰμί +εὐνοέω +ὁ +ἀντίδικος +σύ +ταχύς +ἕως +ὅστις +εἰμί +μετά +αὐτός +ἐν +ὁ +ὁδός +μή +ποτέ +σύ +παραδίδωμι +ὁ +ἀντίδικος +ὁ +κριτής +καί +ὁ +κριτής +ὁ +ὑπηρέτης +καί +εἰς +φυλακή +βάλλω +ἀμήν +λέγω +σύ +οὐ +μή +ἐξέρχομαι +ἐκεῖθεν +ἕως +ἄν +ἀποδίδωμι +ὁ +ἔσχατος +κοδράντης +ἀκούω +ὅτι +εἶπον +οὐ +μοιχεύω +δέ +ἐγώ +λέγω +σύ +ὅτι +πᾶς +ὁ +βλέπω +γυνή +πρός +ὁ +ἐπιθυμέω +αὐτός +ἤδη +μοιχεύω +αὐτός +ἐν +ὁ +καρδία +αὐτός +δέ +εἰ +ὁ +ὀφθαλμός +σύ +ὁ +δεξιός +σκανδαλίζω +σύ +ἐξαιρέω +αὐτός +καί +βάλλω +ἀπό +σύ +γάρ +συμφέρω +σύ +ἵνα +ἀπόλλυμι +εἷς +ὁ +μέλος +σύ +καί +μή +ὅλος +ὁ +σῶμα +σύ +βάλλω +εἰς +γέεννα +καί +εἰ +ὁ +δεξιός +σύ +χείρ +σκανδαλίζω +σύ +ἐκκόπτω +αὐτός +καί +βάλλω +ἀπό +σύ +γάρ +συμφέρω +σύ +ἵνα +ἀπόλλυμι +εἷς +ὁ +μέλος +σύ +καί +μή +ὅλος +ὁ +σῶμα +σύ +εἰς +γέεννα +ἀπέρχομαι +δέ +εἶπον +ἄν +ὅς +ἀπολύω +ὁ +γυνή +αὐτός +δίδωμι +αὐτός +ἀποστάσιον +δέ +ἐγώ +λέγω +σύ +ὅτι +πᾶς +ὁ +ἀπολύω +ὁ +γυνή +αὐτός +παρεκτός +λόγος +πορνεία +ποιέω +αὐτός +μοιχεύω +καί +ἐάν +ὅς +ἀπολύω +γαμέω +μοιχάω +πάλιν +ἀκούω +ὅτι +εἶπον +ὁ +ἀρχαῖος +οὐ +ἐπιορκέω +δέ +ἀποδίδωμι +ὁ +κύριος +ὁ +ὅρκος +σύ +δέ +ἐγώ +λέγω +σύ +μή +ὀμνύω +ὅλως +μήτε +ἐν +ὁ +οὐρανός +ὅτι +εἰμί +θρόνος +ὁ +θεός +μήτε +ἐν +ὁ +γῆ +ὅτι +εἰμί +ὑποπόδιον +ὁ +πούς +αὐτός +μήτε +εἰς +Ἱεροσόλυμα +ὅτι +εἰμί +πόλις +ὁ +μέγας +βασιλεύς +μήτε +ἐν +ὁ +κεφαλή +σύ +ὀμνύω +ὅτι +οὐ +δύναμαι +εἷς +θρίξ +ποιέω +λευκός +ἤ +μέλας +δέ +εἰμί +ὁ +λόγος +σύ +ναί +ναί +οὐ +οὐ +δέ +ὁ +περισσός +οὗτος +ἐκ +ὁ +πονηρός +εἰμί +ἀκούω +ὅτι +εἶπον +ὀφθαλμός +ἀντί +ὀφθαλμός +καί +ὀδούς +ἀντί +ὀδούς +δέ +ἐγώ +λέγω +σύ +μή +ἀνθίστημι +ὁ +πονηρός +ἀλλά +ὅστις +σύ +ῥαπίζω +εἰς +ὁ +δεξιός +σιαγών +σύ +στρέφω +αὐτός +καί +ὁ +ἄλλος +καί +ὁ +θέλω +σύ +κρίνω +καί +ὁ +χιτών +σύ +λαμβάνω +ἀφίημι +αὐτός +καί +ὁ +ἱμάτιον +καί +ὅστις +σύ +ἀγγαρεύω +μίλιον +εἷς +ὑπάγω +μετά +αὐτός +δύο +ὁ +αἰτέω +σύ +δίδωμι +καί +ὁ +θέλω +ἀπό +σύ +δανίζω +μή +ἀποστρέφω +ἀκούω +ὅτι +εἶπον +ἀγαπάω +ὁ +πλησίον +σύ +καί +μισέω +ὁ +ἐχθρός +σύ +δέ +ἐγώ +λέγω +σύ +ἀγαπάω +ὁ +ἐχθρός +σύ +καί +προσεύχομαι +ὑπέρ +ὁ +διώκω +σύ +ὅπως +γίνομαι +υἱός +ὁ +πατήρ +σύ +ὁ +ἐν +οὐρανός +ὅτι +ὁ +ἥλιος +αὐτός +ἀνατέλλω +ἐπί +πονηρός +καί +ἀγαθός +καί +βρέχω +ἐπί +δίκαιος +καί +ἄδικος +γάρ +ἐάν +ἀγαπάω +ὁ +ἀγαπάω +σύ +τίς +μισθός +ἔχω +οὐχί +καί +ὁ +τελώνης +ὁ +αὐτός +ποιέω +καί +ἐάν +ἀσπάζομαι +ὁ +ἀδελφός +σύ +μόνος +τίς +περισσός +ποιέω +οὐχί +καί +ὁ +ἐθνικός +ὁ +αὐτός +ποιέω +οὖν +εἰμί +σύ +τέλειος +ὡς +ὁ +πατήρ +σύ +ὁ +οὐράνιος +τέλειος +εἰμί +δέ +προσέχω +ὁ +δικαιοσύνη +σύ +μή +ποιέω +ἔμπροσθεν +ὁ +ἄνθρωπος +πρός +ὁ +θεάομαι +αὐτός +δέ +εἰ +μήγε +μισθός +οὐ +ἔχω +παρά +ὁ +πατήρ +σύ +ὁ +ἐν +ὁ +οὐρανός +οὖν +ὅταν +ποιέω +ἐλεημοσύνη +μή +σαλπίζω +ἔμπροσθεν +σύ +ὥσπερ +ὁ +ὑποκριτής +ποιέω +ἐν +ὁ +συναγωγή +καί +ἐν +ὁ +ῥύμη +ὅπως +δοξάζω +ὑπό +ὁ +ἄνθρωπος +ἀμήν +λέγω +σύ +ἀπέχω +ὁ +μισθός +αὐτός +δέ +σύ +ποιέω +ἐλεημοσύνη +μή +γινώσκω +ὁ +ἀριστερός +σύ +τίς +ποιέω +ὁ +δεξιός +σύ +ὅπως +εἰμί +σύ +ὁ +ἐλεημοσύνη +ἐν +ὁ +κρυπτός +καί +ὁ +πατήρ +σύ +ὁ +βλέπω +ἐν +ὁ +κρυπτός +ἀποδίδωμι +σύ +καί +ὅταν +προσεύχομαι +οὐ +εἰμί +ὡς +ὁ +ὑποκριτής +ὅτι +φιλέω +ἐν +ὁ +συναγωγή +καί +ἐν +ὁ +γωνία +ὁ +πλατύς +ἵστημι +προσεύχομαι +ὅπως +φαίνω +ὁ +ἄνθρωπος +ἀμήν +λέγω +σύ +ἀπέχω +ὁ +μισθός +αὐτός +δέ +ὅταν +σύ +προσεύχομαι +εἰσέρχομαι +εἰς +ὁ +ταμεῖον +σύ +καί +κλείω +ὁ +θύρα +σύ +προσεύχομαι +ὁ +πατήρ +σύ +ὁ +ἐν +ὁ +κρυπτός +καί +ὁ +πατήρ +σύ +ὁ +βλέπω +ἐν +ὁ +κρυπτός +ἀποδίδωμι +σύ +δέ +προσεύχομαι +μή +βατταλογέω +ὥσπερ +ὁ +ἐθνικός +γάρ +δοκέω +ὅτι +ἐν +ὁ +πολυλογία +αὐτός +εἰσακούω +οὖν +μή +ὁμοιόω +αὐτός +γάρ +οἶδα +ὁ +πατήρ +σύ +ὅς +χρεία +ἔχω +πρό +ὁ +σύ +αἰτέω +αὐτός +οὖν +οὕτω +προσεύχομαι +σύ +πατήρ +ἐγώ +ὁ +ἐν +ὁ +οὐρανός +ἁγιάζω +ὁ +ὄνομα +σύ +ἔρχομαι +ὁ +βασιλεία +σύ +γίνομαι +ὁ +θέλημα +σύ +ὡς +ἐν +οὐρανός +καί +ἐπί +γῆ +ὁ +ἄρτος +ἐγώ +ὁ +ἐπιούσιος +δίδωμι +ἐγώ +σήμερον +καί +ἀφίημι +ἐγώ +ὁ +ὀφείλημα +ἐγώ +ὡς +καί +ἐγώ +ἀφίημι +ὁ +ὀφειλέτης +ἐγώ +καί +μή +εἰσφέρω +ἐγώ +εἰς +πειρασμός +ἀλλά +ῥύομαι +ἐγώ +ἀπό +ὁ +πονηρός +γάρ +ἐάν +ἀφίημι +ὁ +ἄνθρωπος +ὁ +παράπτωμα +αὐτός +ἀφίημι +καί +σύ +ὁ +πατήρ +σύ +ὁ +οὐράνιος +δέ +ἐάν +μή +ἀφίημι +ὁ +ἄνθρωπος +οὐδέ +ὁ +πατήρ +σύ +ἀφίημι +ὁ +παράπτωμα +σύ +δέ +ὅταν +νηστεύω +μή +γίνομαι +ὡς +ὁ +ὑποκριτής +σκυθρωπός +γάρ +ἀφανίζω +ὁ +πρόσωπον +αὐτός +ὅπως +φαίνω +ὁ +ἄνθρωπος +νηστεύω +ἀμήν +λέγω +σύ +ἀπέχω +ὁ +μισθός +αὐτός +δέ +σύ +νηστεύω +ἀλείφω +σύ +ὁ +κεφαλή +καί +ὁ +πρόσωπον +σύ +νίπτω +ὅπως +μή +φαίνω +ὁ +ἄνθρωπος +νηστεύω +ἀλλά +ὁ +πατήρ +σύ +ὁ +ἐν +ὁ +κρυφαῖος +καί +ὁ +πατήρ +σύ +ὁ +βλέπω +ἐν +ὁ +κρυφαῖος +ἀποδίδωμι +σύ +μή +θησαυρίζω +σύ +θησαυρός +ἐπί +ὁ +γῆ +ὅπου +σής +καί +βρῶσις +ἀφανίζω +καί +ὅπου +κλέπτης +διορύσσω +καί +κλέπτω +δέ +θησαυρίζω +σύ +θησαυρός +ἐν +οὐρανός +ὅπου +οὔτε +σής +οὔτε +βρῶσις +ἀφανίζω +καί +ὅπου +κλέπτης +οὐ +διορύσσω +οὐδέ +κλέπτω +γάρ +ὅπου +εἰμί +ὁ +θησαυρός +σύ +ἐκεῖ +εἰμί +καί +ὁ +καρδία +σύ +ὁ +λύχνος +ὁ +σῶμα +εἰμί +ὁ +ὀφθαλμός +οὖν +ἐάν +εἰμί +ὁ +ὀφθαλμός +σύ +ἁπλοῦς +ὅλος +ὁ +σῶμα +σύ +φωτεινός +εἰμί +δέ +ἐάν +ὁ +ὀφθαλμός +σύ +πονηρός +εἰμί +ὅλος +ὁ +σῶμα +σύ +σκοτεινός +εἰμί +οὖν +εἰ +ὁ +φῶς +ὁ +ἐν +σύ +σκότος +εἰμί +ὁ +σκότος +πόσος +οὐδείς +δύναμαι +δύο +κύριος +δουλεύω +γάρ +ἤ +ὁ +εἷς +μισέω +καί +ὁ +ἕτερος +ἀγαπάω +ἤ +εἷς +ἀντέχω +καί +ὁ +ἕτερος +καταφρονέω +οὐ +δύναμαι +θεός +δουλεύω +καί +μαμωνᾶς +διά +οὗτος +λέγω +σύ +μή +μεριμνάω +ὁ +ψυχή +σύ +τίς +ἐσθίω +ἤ +τίς +πίνω +μηδέ +ὁ +σῶμα +σύ +τίς +ἐνδύω +οὐχί +ὁ +ψυχή +πολύς +εἰμί +ὁ +τροφή +καί +ὁ +σῶμα +ὁ +ἔνδυμα +ἐμβλέπω +εἰς +ὁ +πετεινός +ὁ +οὐρανός +ὅτι +οὐ +σπείρω +οὐδέ +θερίζω +οὐδέ +συνάγω +εἰς +ἀποθήκη +καί +ὁ +πατήρ +σύ +ὁ +οὐράνιος +τρέφω +αὐτός +οὐ +σύ +μᾶλλον +διαφέρω +αὐτός +δέ +τίς +ἐκ +σύ +μεριμνάω +δύναμαι +προστίθημι +ἐπί +ὁ +ἡλικία +αὐτός +πῆχυς +εἷς +καί +περί +ἔνδυμα +τίς +μεριμνάω +καταμανθάνω +ὁ +κρίνον +ὁ +ἀγρός +πῶς +αὐξάνω +οὐ +κοπιάω +οὐδέ +νήθω +δέ +λέγω +σύ +ὅτι +οὐδέ +Σολομών +ἐν +πᾶς +ὁ +δόξα +αὐτός +περιβάλλω +ὡς +εἷς +οὗτος +δέ +εἰ +ὁ +χόρτος +ὁ +ἀγρός +σήμερον +εἰμί +καί +αὔριον +εἰς +κλίβανος +βάλλω +ὁ +θεός +οὕτω +ἀμφιέννυμι +οὐ +πολύς +μᾶλλον +σύ +ὀλιγόπιστος +οὖν +μή +μεριμνάω +λέγω +τίς +ἐσθίω +ἤ +τίς +πίνω +ἤ +τίς +περιβάλλω +γάρ +πᾶς +οὗτος +ὁ +ἔθνος +ἐπιζητέω +γάρ +οἶδα +ὁ +πατήρ +σύ +ὁ +οὐράνιος +ὅτι +χρῄζω +οὗτος +ἅπας +δέ +ζητέω +πρῶτος +ὁ +βασιλεία +καί +ὁ +δικαιοσύνη +αὐτός +καί +οὗτος +πᾶς +προστίθημι +σύ +οὖν +μή +μεριμνάω +εἰς +ὁ +αὔριον +γάρ +ὁ +αὔριον +μεριμνάω +ἑαυτοῦ +ἀρκετός +ὁ +ἡμέρα +ὁ +κακία +αὐτός +μή +κρίνω +ἵνα +μή +κρίνω +γάρ +ἐν +ὅς +κρίμα +κρίνω +κρίνω +καί +ἐν +ὅς +μέτρον +μετρέω +μετρέω +σύ +δέ +τίς +βλέπω +ὁ +κάρφος +ὁ +ἐν +ὁ +ὀφθαλμός +ὁ +ἀδελφός +σύ +δέ +ὁ +ἐν +ὁ +σός +ὀφθαλμός +δοκός +οὐ +κατανοέω +ἤ +πῶς +εἶπον +ὁ +ἀδελφός +σύ +ἀφίημι +ἐκβάλλω +ὁ +κάρφος +ἐκ +ὁ +ὀφθαλμός +σύ +καί +ὁράω +ὁ +δοκός +ἐν +ὁ +ὀφθαλμός +σύ +ὑποκριτής +ἐκβάλλω +πρῶτος +ἐκ +ὁ +ὀφθαλμός +σύ +ὁ +δοκός +καί +τότε +διαβλέπω +ἐκβάλλω +ὁ +κάρφος +ἐκ +ὁ +ὀφθαλμός +ὁ +ἀδελφός +σύ +μή +δίδωμι +ὁ +ἅγιος +ὁ +κύων +μηδέ +βάλλω +ὁ +μαργαρίτης +σύ +ἔμπροσθεν +ὁ +χοῖρος +μή +ποτέ +καταπατέω +αὐτός +ἐν +ὁ +πούς +αὐτός +καί +στρέφω +ῥήγνυμι +σύ +αἰτέω +καί +δίδωμι +σύ +ζητέω +καί +εὑρίσκω +κρούω +καί +ἀνοίγω +σύ +γάρ +πᾶς +ὁ +αἰτέω +λαμβάνω +καί +ὁ +ζητέω +εὑρίσκω +καί +ὁ +κρούω +ἀνοίγω +ἤ +εἰμί +ἐκ +σύ +τίς +ἄνθρωπος +ὅς +αἰτέω +ὁ +υἱός +αὐτός +ἄρτος +μή +λίθος +ἐπιδίδωμι +αὐτός +ἤ +καί +ἰχθύς +αἰτέω +μή +ὄφις +ἐπιδίδωμι +αὐτός +οὖν +εἰ +σύ +πονηρός +εἰμί +οἶδα +δόμα +ἀγαθός +δίδωμι +ὁ +τέκνον +σύ +πόσος +μᾶλλον +ὁ +πατήρ +σύ +ὁ +ἐν +ὁ +οὐρανός +δίδωμι +ἀγαθός +ὁ +αἰτέω +αὐτός +οὖν +πᾶς +ἐάν +ὅσος +θέλω +ἵνα +ποιέω +σύ +ὁ +ἄνθρωπος +οὕτω +καί +σύ +ποιέω +αὐτός +γάρ +οὗτος +εἰμί +ὁ +νόμος +καί +ὁ +προφήτης +εἰσέρχομαι +διά +ὁ +στενός +πύλη +ὅτι +πλατύς +ὁ +πύλη +καί +εὐρύχωρος +ὁ +ὁδός +ὁ +ἀπάγω +εἰς +ὁ +ἀπώλεια +καί +πολύς +εἰμί +ὁ +εἰσέρχομαι +διά +αὐτός +ὅτι +στενός +ὁ +πύλη +καί +θλίβω +ὁ +ὁδός +ὁ +ἀπάγω +εἰς +ὁ +ζωή +καί +ὀλίγος +εἰμί +ὁ +εὑρίσκω +αὐτός +προσέχω +ἀπό +ὁ +ψευδοπροφήτης +ὅστις +ἔρχομαι +πρός +σύ +ἐν +ἔνδυμα +πρόβατον +δέ +ἔσωθεν +εἰμί +λύκος +ἅρπαξ +ἀπό +ὁ +καρπός +αὐτός +ἐπιγινώσκω +αὐτός +μήτι +συλλέγω +ἀπό +ἄκανθα +σταφυλή +ἤ +ἀπό +τρίβολος +σῦκον +οὕτω +πᾶς +δένδρον +ἀγαθός +καρπός +καλός +ποιέω +δέ +ὁ +σαπρός +δένδρον +καρπός +πονηρός +ποιέω +οὐ +δύναμαι +δένδρον +ἀγαθός +καρπός +πονηρός +φέρω +οὐδέ +δένδρον +σαπρός +καρπός +καλός +φέρω +πᾶς +δένδρον +μή +ποιέω +καρπός +καλός +ἐκκόπτω +καί +εἰς +πῦρ +βάλλω +ἄρα +ἀπό +ὁ +καρπός +αὐτός +ἐπιγινώσκω +αὐτός +οὐ +πᾶς +ὁ +λέγω +ἐγώ +κύριος +κύριος +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +οὐρανός +ἀλλά +ὁ +ποιέω +ὁ +θέλημα +ὁ +πατήρ +ἐγώ +ὁ +ἐν +ὁ +οὐρανός +πολύς +εἶπον +ἐγώ +ἐν +ἐκεῖνος +ὁ +ἡμέρα +κύριος +κύριος +οὐ +ὁ +σός +ὄνομα +προφητεύω +καί +ὁ +σός +ὄνομα +δαιμόνιον +ἐκβάλλω +καί +ὁ +σός +ὄνομα +δύναμις +πολύς +ποιέω +καί +τότε +ὁμολογέω +αὐτός +ὅτι +οὐδέποτε +γινώσκω +σύ +ἀποχωρέω +ἀπό +ἐγώ +ὁ +ἐργάζομαι +ὁ +ἀνομία +οὖν +πᾶς +ὅστις +ἀκούω +ἐγώ +ὁ +λόγος +οὗτος +καί +ποιέω +αὐτός +ὁμοιόω +ἀνήρ +φρόνιμος +ὅστις +οἰκοδομέω +αὐτός +ὁ +οἰκία +ἐπί +ὁ +πέτρα +καί +καταβαίνω +ὁ +βροχή +καί +ἔρχομαι +ὁ +ποταμός +καί +πνέω +ὁ +ἄνεμος +καί +προσπίπτω +ὁ +οἰκία +ἐκεῖνος +καί +οὐ +πίπτω +γάρ +θεμελιόω +ἐπί +ὁ +πέτρα +καί +πᾶς +ὁ +ἀκούω +ἐγώ +ὁ +λόγος +οὗτος +καί +μή +ποιέω +αὐτός +ὁμοιόω +ἀνήρ +μωρός +ὅστις +οἰκοδομέω +αὐτός +ὁ +οἰκία +ἐπί +ὁ +ἄμμος +καί +καταβαίνω +ὁ +βροχή +καί +ἔρχομαι +ὁ +ποταμός +καί +πνέω +ὁ +ἄνεμος +καί +προσκόπτω +ὁ +οἰκία +ἐκεῖνος +καί +πίπτω +καί +εἰμί +ὁ +πτῶσις +αὐτός +μέγας +καί +γίνομαι +ὅτε +τελέω +ὁ +Ἰησοῦς +ὁ +λόγος +οὗτος +ἐκπλήσσω +ὁ +ὄχλος +ἐπί +ὁ +διδαχή +αὐτός +γάρ +εἰμί +διδάσκω +αὐτός +ὡς +ἐξουσία +ἔχω +καί +οὐ +ὡς +ὁ +γραμματεύς +αὐτός +δέ +καταβαίνω +αὐτός +ἀπό +ὁ +ὄρος +ἀκολουθέω +αὐτός +ὄχλος +πολύς +καί +ὁράω +λεπρός +προσέρχομαι +προσκυνέω +αὐτός +λέγω +κύριος +ἐάν +θέλω +δύναμαι +ἐγώ +καθαρίζω +καί +ἐκτείνω +ὁ +χείρ +ἅπτω +αὐτός +λέγω +θέλω +καθαρίζω +καί +εὐθέως +καθαρίζω +αὐτός +ὁ +λέπρα +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ὁράω +μηδείς +λέγω +ἀλλά +ὑπάγω +σεαυτοῦ +δείκνυμι +ὁ +ἱερεύς +καί +προσφέρω +ὁ +δῶρον +ὅς +προστάσσω +Μωϋσῆς +εἰς +μαρτύριον +αὐτός +δέ +εἰσέρχομαι +αὐτός +εἰς +Καφαρναούμ +προσέρχομαι +αὐτός +ἑκατοντάρχης +παρακαλέω +αὐτός +καί +λέγω +κύριος +ὁ +παῖς +ἐγώ +βάλλω +ἐν +ὁ +οἰκία +παραλυτικός +δεινῶς +βασανίζω +λέγω +αὐτός +ἐγώ +ἔρχομαι +θεραπεύω +αὐτός +δέ +ἀποκρίνομαι +ὁ +ἑκατοντάρχης +φημί +κύριος +οὐ +εἰμί +ἱκανός +ἵνα +ὑπό +ἐγώ +ὁ +στέγη +εἰσέρχομαι +ἀλλά +μόνος +λέγω +λόγος +καί +ἰάομαι +ὁ +παῖς +ἐγώ +γάρ +καί +ἐγώ +εἰμί +ἄνθρωπος +ὑπό +ἐξουσία +ἔχω +ὑπό +ἐμαυτοῦ +στρατιώτης +καί +λέγω +οὗτος +πορεύομαι +καί +πορεύομαι +καί +ἄλλος +ἔρχομαι +καί +ἔρχομαι +καί +ὁ +δοῦλος (II) +ἐγώ +ποιέω +οὗτος +καί +ποιέω +δέ +ἀκούω +ὁ +Ἰησοῦς +θαυμάζω +καί +λέγω +ὁ +ἀκολουθέω +ἀμήν +λέγω +σύ +παρά +οὐδείς +τοσοῦτος +πίστις +ἐν +ὁ +Ἰσραήλ +εὑρίσκω +δέ +λέγω +σύ +ὅτι +πολύς +ἀπό +ἀνατολή +καί +δυσμή +ἥκω +καί +ἀνακλίνω +μετά +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +ἐν +ὁ +βασιλεία +ὁ +οὐρανός +δέ +ὁ +υἱός +ὁ +βασιλεία +ἐκβάλλω +εἰς +ὁ +σκότος +ὁ +ἐξώτερος +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +καί +λέγω +ὁ +Ἰησοῦς +ὁ +ἑκατοντάρχης +ὑπάγω +ὡς +πιστεύω +γίνομαι +σύ +καί +ἰάομαι +ὁ +παῖς +ἐν +ὁ +ὥρα +ἐκεῖνος +καί +ὁ +Ἰησοῦς +ἔρχομαι +εἰς +ὁ +οἰκία +Πέτρος +ὁράω +ὁ +πενθερά +αὐτός +βάλλω +καί +πυρέσσω +καί +ἅπτω +ὁ +χείρ +αὐτός +καί +ἀφίημι +αὐτός +ὁ +πυρετός +καί +ἐγείρω +καί +διακονέω +αὐτός +δέ +ὄψιος +γίνομαι +προσφέρω +αὐτός +δαιμονίζομαι +πολύς +καί +ἐκβάλλω +ὁ +πνεῦμα +λόγος +καί +πᾶς +ὁ +κακῶς +ἔχω +θεραπεύω +ὅπως +πληρόω +ὁ +εἶπον +διά +Ἠσαΐας +ὁ +προφήτης +λέγω +αὐτός +ὁ +ἀσθένεια +ἐγώ +λαμβάνω +καί +ὁ +νόσος +βαστάζω +δέ +ὁ +Ἰησοῦς +ὁράω +ὄχλος +περί +αὐτός +κελεύω +ἀπέρχομαι +εἰς +ὁ +πέραν +καί +προσέρχομαι +εἷς +γραμματεύς +λέγω +αὐτός +διδάσκαλος +ἀκολουθέω +σύ +ἐάν +ὅπου +ἀπέρχομαι +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ὁ +ἀλώπηξ +φωλεός +ἔχω +καί +ὁ +πετεινός +ὁ +οὐρανός +κατασκήνωσις +δέ +ὁ +υἱός +ὁ +ἄνθρωπος +οὐ +ἔχω +ποῦ +ὁ +κεφαλή +κλίνω +δέ +ἕτερος +ὁ +μαθητής +λέγω +αὐτός +κύριος +ἐπιτρέπω +ἐγώ +πρῶτος +ἀπέρχομαι +καί +θάπτω +ὁ +πατήρ +ἐγώ +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ἀκολουθέω +ἐγώ +καί +ἀφίημι +ὁ +νεκρός +θάπτω +ὁ +ἑαυτοῦ +νεκρός +καί +ἐμβαίνω +αὐτός +εἰς +ὁ +πλοῖον +ἀκολουθέω +αὐτός +ὁ +μαθητής +αὐτός +καί +ὁράω +σεισμός +μέγας +γίνομαι +ἐν +ὁ +θάλασσα +ὥστε +ὁ +πλοῖον +καλύπτω +ὑπό +ὁ +κῦμα +δέ +αὐτός +καθεύδω +καί +προσέρχομαι +ἐγείρω +αὐτός +λέγω +κύριος +σῴζω +ἀπόλλυμι +καί +λέγω +αὐτός +τίς +δειλός +εἰμί +ὀλιγόπιστος +τότε +ἐγείρω +ἐπιτιμάω +ὁ +ἄνεμος +καί +ὁ +θάλασσα +καί +γίνομαι +γαλήνη +μέγας +δέ +ὁ +ἄνθρωπος +θαυμάζω +λέγω +ποταπός +εἰμί +οὗτος +ὅτι +καί +ὁ +ἄνεμος +καί +ὁ +θάλασσα +αὐτός +ὑπακούω +καί +ἔρχομαι +αὐτός +εἰς +ὁ +πέραν +εἰς +ὁ +χώρα +ὁ +Γαδαρηνός +ὑπαντάω +αὐτός +δύο +δαιμονίζομαι +ἐκ +ὁ +μνημεῖον +ἐξέρχομαι +χαλεπός +λίαν +ὥστε +μή +ἰσχύω +τὶς +παρέρχομαι +διά +ὁ +ὁδός +ἐκεῖνος +καί +ὁράω +κράζω +λέγω +τίς +ἐγώ +καί +σύ +υἱός +ὁ +θεός +ἔρχομαι +ὧδε +πρό +καιρός +βασανίζω +ἐγώ +δέ +εἰμί +μακράν +ἀπό +αὐτός +ἀγέλη +χοῖρος +πολύς +βόσκω +δέ +ὁ +δαίμων +παρακαλέω +αὐτός +λέγω +εἰ +ἐκβάλλω +ἐγώ +ἀποστέλλω +ἐγώ +εἰς +ὁ +ἀγέλη +ὁ +χοῖρος +καί +λέγω +αὐτός +ὑπάγω +δέ +ὁ +ἐξέρχομαι +ἀπέρχομαι +εἰς +ὁ +χοῖρος +καί +ὁράω +ὁρμάω +πᾶς +ὁ +ἀγέλη +κατά +ὁ +κρημνός +εἰς +ὁ +θάλασσα +καί +ἀποθνῄσκω +ἐν +ὁ +ὕδωρ +δέ +ὁ +βόσκω +φεύγω +καί +ἀπέρχομαι +εἰς +ὁ +πόλις +ἀπαγγέλλω +πᾶς +καί +ὁ +ὁ +δαιμονίζομαι +καί +ὁράω +πᾶς +ὁ +πόλις +ἐξέρχομαι +εἰς +ὑπάντησις +ὁ +Ἰησοῦς +καί +ὁράω +αὐτός +παρακαλέω +ὅπως +μεταβαίνω +ἀπό +ὁ +ὅριον +αὐτός +καί +ἐμβαίνω +εἰς +πλοῖον +διαπεράω +καί +ἔρχομαι +εἰς +ὁ +ἴδιος +πόλις +καί +ὁράω +προσφέρω +αὐτός +παραλυτικός +ἐπί +κλίνη +βάλλω +καί +ὁ +Ἰησοῦς +ὁράω +ὁ +πίστις +αὐτός +λέγω +ὁ +παραλυτικός +θαρσέω +τέκνον +ἀφίημι +σύ +ὁ +ἁμαρτία +καί +ὁράω +τὶς +ὁ +γραμματεύς +λέγω +ἐν +ἑαυτοῦ +οὗτος +βλασφημέω +καί +ὁ +Ἰησοῦς +οἶδα +ὁ +ἐνθύμησις +αὐτός +λέγω +ἵνα +τίς +ἐνθυμέομαι +πονηρός +ἐν +ὁ +καρδία +σύ +γάρ +τίς +εἰμί +εὔκοπος +λέγω +ἀφίημι +σύ +ὁ +ἁμαρτία +ἤ +λέγω +ἐγείρω +καί +περιπατέω +δέ +ἵνα +οἶδα +ὅτι +ἐξουσία +ἔχω +ὁ +υἱός +ὁ +ἄνθρωπος +ἐπί +ὁ +γῆ +ἀφίημι +ἁμαρτία +τότε +λέγω +ὁ +παραλυτικός +ἐγείρω +αἴρω +σύ +ὁ +κλίνη +καί +ὑπάγω +εἰς +ὁ +οἶκος +σύ +καί +ἐγείρω +ἀπέρχομαι +εἰς +ὁ +οἶκος +αὐτός +δέ +ὁράω +ὁ +ὄχλος +φοβέω +καί +δοξάζω +ὁ +θεός +ὁ +δίδωμι +ἐξουσία +τοιοῦτος +ὁ +ἄνθρωπος +καί +παράγω +ἐκεῖθεν +ὁ +Ἰησοῦς +ὁράω +ἄνθρωπος +κάθημαι +ἐπί +ὁ +τελώνιον +Μαθθαῖος +λέγω +καί +λέγω +αὐτός +ἀκολουθέω +ἐγώ +καί +ἀνίστημι +ἀκολουθέω +αὐτός +καί +γίνομαι +αὐτός +ἀνάκειμαι +ἐν +ὁ +οἰκία +καί +ὁράω +πολύς +τελώνης +καί +ἁμαρτωλός +ἔρχομαι +συνανάκειμαι +ὁ +Ἰησοῦς +καί +ὁ +μαθητής +αὐτός +καί +ὁράω +ὁ +Φαρισαῖος +λέγω +ὁ +μαθητής +αὐτός +διά +τίς +μετά +ὁ +τελώνης +καί +ἁμαρτωλός +ἐσθίω +ὁ +διδάσκαλος +σύ +δέ +ὁ +ἀκούω +λέγω +οὐ +χρεία +ἰατρός +ἔχω +ὁ +ἰσχύω +ἀλλά +ὁ +κακῶς +ἔχω +δέ +πορεύομαι +μανθάνω +τίς +εἰμί +ἔλεος +θέλω +καί +οὐ +θυσία +γάρ +οὐ +ἔρχομαι +καλέω +δίκαιος +ἀλλά +ἁμαρτωλός +τότε +προσέρχομαι +αὐτός +ὁ +μαθητής +Ἰωάννης +λέγω +διά +τίς +ἐγώ +καί +ὁ +Φαρισαῖος +νηστεύω +δέ +ὁ +μαθητής +σύ +οὐ +νηστεύω +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +μή +δύναμαι +ὁ +υἱός +ὁ +νυμφών +πενθέω +ἐπί +ὅσος +μετά +αὐτός +εἰμί +ὁ +νυμφίος +δέ +ἔρχομαι +ἡμέρα +ὅταν +ἀπαίρω +ἀπό +αὐτός +ὁ +νυμφίος +καί +τότε +νηστεύω +δέ +οὐδείς +ἐπιβάλλω +ἐπίβλημα +ῥάκος +ἄγναφος +ἐπί +ἱμάτιον +παλαιός +γάρ +αἴρω +ὁ +πλήρωμα +αὐτός +ἀπό +ὁ +ἱμάτιον +καί +χείρων +σχίσμα +γίνομαι +οὐδέ +βάλλω +οἶνος +νέος +εἰς +ἀσκός +παλαιός +δέ +εἰ +εἰ δὲ μή +ῥήγνυμι +ὁ +ἀσκός +καί +ὁ +οἶνος +ἐκχέω +καί +ὁ +ἀσκός +ἀπόλλυμι +ἀλλά +βάλλω +οἶνος +νέος +εἰς +ἀσκός +καινός +καί +ἀμφότεροι +συντηρέω +οὗτος +αὐτός +λαλέω +αὐτός +ὁράω +ἄρχων +εἷς +προσέρχομαι +προσκυνέω +αὐτός +λέγω +ὅτι +ὁ +θυγάτηρ +ἐγώ +ἄρτι +τελευτάω +ἀλλά +ἔρχομαι +ἐπιτίθημι +ὁ +χείρ +σύ +ἐπί +αὐτός +καί +ζάω +καί +ἐγείρω +ὁ +Ἰησοῦς +ἀκολουθέω +αὐτός +καί +ὁ +μαθητής +αὐτός +καί +ὁράω +γυνή +αἱμορροέω +δώδεκα +ἔτος +προσέρχομαι +ὄπισθεν +ἅπτω +ὁ +κράσπεδον +ὁ +ἱμάτιον +αὐτός +γάρ +λέγω +ἐν +ἑαυτοῦ +ἐάν +μόνος +ἅπτω +ὁ +ἱμάτιον +αὐτός +σῴζω +δέ +ὁ +Ἰησοῦς +στρέφω +καί +ὁράω +αὐτός +λέγω +θαρσέω +θυγάτηρ +ὁ +πίστις +σύ +σῴζω +σύ +καί +σῴζω +ὁ +γυνή +ἀπό +ὁ +ὥρα +ἐκεῖνος +καί +ὁ +Ἰησοῦς +ἔρχομαι +εἰς +ὁ +οἰκία +ὁ +ἄρχων +καί +ὁράω +ὁ +αὐλητής +καί +ὁ +ὄχλος +θορυβέω +λέγω +ἀναχωρέω +γάρ +οὐ +ἀποθνῄσκω +ὁ +κοράσιον +ἀλλά +καθεύδω +καί +καταγελάω +αὐτός +δέ +ὅτε +ἐκβάλλω +ὁ +ὄχλος +εἰσέρχομαι +κρατέω +ὁ +χείρ +αὐτός +καί +ἐγείρω +ὁ +κοράσιον +καί +ἐξέρχομαι +ὁ +φήμη +οὗτος +εἰς +ὅλος +ὁ +γῆ +ἐκεῖνος +καί +παράγω +ἐκεῖθεν +ὁ +Ἰησοῦς +ἀκολουθέω +δύο +τυφλός +κράζω +καί +λέγω +ἐλεέω +ἐγώ +υἱός +Δαυίδ +δέ +ἔρχομαι +εἰς +ὁ +οἰκία +προσέρχομαι +αὐτός +ὁ +τυφλός +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +πιστεύω +ὅτι +δύναμαι +οὗτος +ποιέω +λέγω +αὐτός +ναί +κύριος +τότε +ἅπτω +ὁ +ὀφθαλμός +αὐτός +λέγω +κατά +ὁ +πίστις +σύ +γίνομαι +σύ +καί +ἀνοίγω +αὐτός +ὁ +ὀφθαλμός +καί +ἐμβριμάομαι +αὐτός +ὁ +Ἰησοῦς +λέγω +ὁράω +μηδείς +γινώσκω +δέ +ὁ +ἐξέρχομαι +διαφημίζω +αὐτός +ἐν +ὅλος +ὁ +γῆ +ἐκεῖνος +δέ +αὐτός +ἐξέρχομαι +ὁράω +προσφέρω +αὐτός +κωφός +δαιμονίζομαι +καί +ἐκβάλλω +ὁ +δαιμόνιον +λαλέω +ὁ +κωφός +καί +θαυμάζω +ὁ +ὄχλος +λέγω +οὐδέποτε +φαίνω +οὕτω +ἐν +ὁ +Ἰσραήλ +δέ +ὁ +Φαρισαῖος +λέγω +ἐν +ὁ +ἄρχων +ὁ +δαιμόνιον +ἐκβάλλω +ὁ +δαιμόνιον +καί +περιάγω +ὁ +Ἰησοῦς +ὁ +πόλις +πᾶς +καί +ὁ +κώμη +διδάσκω +ἐν +ὁ +συναγωγή +αὐτός +καί +κηρύσσω +ὁ +εὐαγγέλιον +ὁ +βασιλεία +καί +θεραπεύω +πᾶς +νόσος +καί +πᾶς +μαλακία +δέ +ὁράω +ὁ +ὄχλος +σπλαγχνίζομαι +περί +αὐτός +ὅτι +εἰμί +σκύλλω +καί +ῥίπτω +ὡσεί +πρόβατον +μή +ἔχω +ποιμήν +τότε +λέγω +ὁ +μαθητής +αὐτός +μέν +ὁ +θερισμός +πολύς +δέ +ὁ +ἐργάτης +ὀλίγος +οὖν +δέομαι +ὁ +κύριος +ὁ +θερισμός +ὅπως +ἐκβάλλω +ἐργάτης +εἰς +ὁ +θερισμός +αὐτός +καί +προσκαλέω +ὁ +δώδεκα +μαθητής +αὐτός +δίδωμι +αὐτός +ἐξουσία +πνεῦμα +ἀκάθαρτος +ὥστε +ἐκβάλλω +αὐτός +καί +θεραπεύω +πᾶς +νόσος +καί +πᾶς +μαλακία +δέ +ὁ +δώδεκα +ἀπόστολος +ὁ +ὄνομα +εἰμί +οὗτος +πρῶτος +Σίμων +ὁ +λέγω +Πέτρος +καί +Ἀνδρέας +ὁ +ἀδελφός +αὐτός +καί +Ἰάκωβος +ὁ +ὁ +Ζεβεδαῖος +καί +Ἰωάννης +ὁ +ἀδελφός +αὐτός +Φίλιππος +καί +Βαρθολομαῖος +Θωμᾶς +καί +Μαθθαῖος +ὁ +τελώνης +Ἰάκωβος +ὁ +ὁ +Ἁλφαῖος +καί +Θαδδαῖος +Σίμων +ὁ +Καναναῖος +καί +Ἰούδας +ὁ +Ἰσκαριώθ +ὁ +καί +παραδίδωμι +αὐτός +οὗτος +ὁ +δώδεκα +ἀποστέλλω +ὁ +Ἰησοῦς +παραγγέλλω +αὐτός +λέγω +εἰς +ὁδός +ἔθνος +μή +ἀπέρχομαι +καί +εἰς +πόλις +Σαμαρίτης +μή +εἰσέρχομαι +δέ +πορεύομαι +μᾶλλον +πρός +ὁ +πρόβατον +ὁ +ἀπόλλυμι +οἶκος +Ἰσραήλ +δέ +πορεύομαι +κηρύσσω +λέγω +ὅτι +ἐγγίζω +ὁ +βασιλεία +ὁ +οὐρανός +ἀσθενέω +θεραπεύω +νεκρός +ἐγείρω +λεπρός +καθαρίζω +δαιμόνιον +ἐκβάλλω +δωρεάν +λαμβάνω +δωρεάν +δίδωμι +μή +κτάομαι +χρυσός +μηδέ +ἄργυρος +μηδέ +χαλκός +εἰς +ὁ +ζώνη +σύ +μή +πήρα +εἰς +ὁδός +μηδέ +δύο +χιτών +μηδέ +ὑπόδημα +μηδέ +ῥάβδος +γάρ +ἄξιος +ὁ +ἐργάτης +ὁ +τροφή +αὐτός +δέ +ἄν +εἰς +ὅς +πόλις +ἤ +κώμη +εἰσέρχομαι +ἐξετάζω +τίς +ἐν +αὐτός +ἄξιος +εἰμί +κἀκεῖ +μένω +ἕως +ἄν +ἐξέρχομαι +δέ +εἰσέρχομαι +εἰς +ὁ +οἰκία +ἀσπάζομαι +αὐτός +καί +μέν +ἐάν +εἰμί +ὁ +οἰκία +ἄξιος +ἔρχομαι +ὁ +εἰρήνη +σύ +ἐπί +αὐτός +δέ +ἐάν +μή +εἰμί +ἄξιος +ὁ +εἰρήνη +σύ +πρός +σύ +ἐπιστρέφω +καί +ἄν +ὅς +μή +δέχομαι +σύ +μηδέ +ἀκούω +ὁ +λόγος +σύ +ἐξέρχομαι +ἔξω +ὁ +οἰκία +ἤ +ὁ +πόλις +ἐκεῖνος +ἐκτινάσσω +ὁ +κονιορτός +ὁ +πούς +σύ +ἀμήν +λέγω +σύ +ἀνεκτός +εἰμί +γῆ +Σόδομα +καί +Γόμορρα +ἐν +ἡμέρα +κρίσις +ἤ +ὁ +πόλις +ἐκεῖνος +ὁράω +ἐγώ +ἀποστέλλω +σύ +ὡς +πρόβατον +ἐν +μέσος +λύκος +οὖν +γίνομαι +φρόνιμος +ὡς +ὁ +ὄφις +καί +ἀκέραιος +ὡς +ὁ +περιστερά +δέ +προσέχω +ἀπό +ὁ +ἄνθρωπος +γάρ +παραδίδωμι +σύ +εἰς +συνέδριον +καί +ἐν +ὁ +συναγωγή +αὐτός +μαστιγόω +σύ +δέ +καί +ἐπί +ἡγεμών +καί +βασιλεύς +ἄγω +ἕνεκα +ἐγώ +εἰς +μαρτύριον +αὐτός +καί +ὁ +ἔθνος +δέ +ὅταν +παραδίδωμι +σύ +μή +μεριμνάω +πῶς +ἤ +τίς +λαλέω +γάρ +δίδωμι +σύ +ἐν +ἐκεῖνος +ὁ +ὥρα +τίς +λαλέω +γάρ +οὐ +σύ +εἰμί +ὁ +λαλέω +ἀλλά +ὁ +πνεῦμα +ὁ +πατήρ +σύ +ὁ +λαλέω +ἐν +σύ +δέ +παραδίδωμι +ἀδελφός +ἀδελφός +εἰς +θάνατος +καί +πατήρ +τέκνον +καί +ἐπανίστημι +τέκνον +ἐπί +γονεύς +καί +θανατόω +αὐτός +καί +εἰμί +μισέω +ὑπό +πᾶς +διά +ὁ +ὄνομα +ἐγώ +δέ +ὁ +ὑπομένω +εἰς +τέλος +οὗτος +σῴζω +δέ +ὅταν +διώκω +σύ +ἐν +ὁ +πόλις +οὗτος +φεύγω +εἰς +ὁ +ἕτερος +γάρ +ἀμήν +λέγω +σύ +οὐ +μή +τελέω +ὁ +πόλις +ὁ +Ἰσραήλ +ἕως +ἔρχομαι +ὁ +υἱός +ὁ +ἄνθρωπος +οὐ +εἰμί +μαθητής +ὑπέρ +ὁ +διδάσκαλος +οὐδέ +δοῦλος (II) +ὑπέρ +ὁ +κύριος +αὐτός +ἀρκετός +ὁ +μαθητής +ἵνα +γίνομαι +ὡς +ὁ +διδάσκαλος +αὐτός +καί +ὁ +δοῦλος (II) +ὡς +ὁ +κύριος +αὐτός +εἰ +ὁ +οἰκοδεσπότης +Βεελζεβούλ +ἐπικαλέω +πόσος +μᾶλλον +ὁ +οἰκιακός +αὐτός +οὖν +μή +φοβέω +αὐτός +γάρ +οὐδείς +εἰμί +καλύπτω +ὅς +οὐ +ἀποκαλύπτω +καί +κρυπτός +ὅς +οὐ +γινώσκω +ὅς +λέγω +σύ +ἐν +ὁ +σκοτία +λέγω +ἐν +ὁ +φῶς +καί +ὅς +εἰς +ὁ +οὖς +ἀκούω +κηρύσσω +ἐπί +ὁ +δῶμα +καί +μή +φοβέω +ἀπό +ὁ +ἀποκτείνω +ὁ +σῶμα +δέ +μή +δύναμαι +ὁ +ψυχή +ἀποκτείνω +δέ +φοβέω +μᾶλλον +ὁ +δύναμαι +καί +ψυχή +καί +σῶμα +ἀπόλλυμι +ἐν +γέεννα +οὐχί +δύο +στρουθίον +ἀσσάριον +πωλέω +καί +εἷς +ἐκ +αὐτός +οὐ +πίπτω +ἐπί +ὁ +γῆ +ἄνευ +ὁ +πατήρ +σύ +δέ +καί +σύ +ὁ +θρίξ +ὁ +κεφαλή +πᾶς +ἀριθμέω +εἰμί +οὖν +μή +φοβέω +πολύς +στρουθίον +διαφέρω +σύ +οὖν +πᾶς +ὅστις +ὁμολογέω +ἐν +ἐγώ +ἔμπροσθεν +ὁ +ἄνθρωπος +ὁμολογέω +κἀγώ +ἐν +αὐτός +ἔμπροσθεν +ὁ +πατήρ +ἐγώ +ὁ +ἐν +ὁ +οὐρανός +δέ +ἄν +ὅστις +ἀρνέομαι +ἐγώ +ἔμπροσθεν +ὁ +ἄνθρωπος +ἀρνέομαι +κἀγώ +αὐτός +ἔμπροσθεν +ὁ +πατήρ +ἐγώ +ὁ +ἐν +ὁ +οὐρανός +μή +νομίζω +ὅτι +ἔρχομαι +βάλλω +εἰρήνη +ἐπί +ὁ +γῆ +οὐ +ἔρχομαι +βάλλω +εἰρήνη +ἀλλά +μάχαιρα +γάρ +ἔρχομαι +διχάζω +ἄνθρωπος +κατά +ὁ +πατήρ +αὐτός +καί +θυγάτηρ +κατά +ὁ +μήτηρ +αὐτός +καί +νύμφη +κατά +ὁ +πενθερά +αὐτός +καί +ἐχθρός +ὁ +ἄνθρωπος +ὁ +οἰκιακός +αὐτός +ὁ +φιλέω +πατήρ +ἤ +μήτηρ +ὑπέρ +ἐγώ +οὐ +εἰμί +ἐγώ +ἄξιος +καί +ὁ +φιλέω +υἱός +ἤ +θυγάτηρ +ὑπέρ +ἐγώ +οὐ +εἰμί +ἐγώ +ἄξιος +καί +ὅς +οὐ +λαμβάνω +ὁ +σταυρός +αὐτός +καί +ἀκολουθέω +ὀπίσω +ἐγώ +οὐ +εἰμί +ἐγώ +ἄξιος +ὁ +εὑρίσκω +ὁ +ψυχή +αὐτός +ἀπόλλυμι +αὐτός +καί +ὁ +ἀπόλλυμι +ὁ +ψυχή +αὐτός +ἕνεκα +ἐγώ +εὑρίσκω +αὐτός +ὁ +δέχομαι +σύ +ἐγώ +δέχομαι +καί +ὁ +ἐγώ +δέχομαι +δέχομαι +ὁ +ἀποστέλλω +ἐγώ +ὁ +δέχομαι +προφήτης +εἰς +ὄνομα +προφήτης +μισθός +προφήτης +λαμβάνω +καί +ὁ +δέχομαι +δίκαιος +εἰς +ὄνομα +δίκαιος +μισθός +δίκαιος +λαμβάνω +καί +ἐάν +ὅς +ποτίζω +εἷς +ὁ +μικρός +οὗτος +ποτήριον +ψυχρός +μόνος +εἰς +ὄνομα +μαθητής +ἀμήν +λέγω +σύ +οὐ +μή +ἀπόλλυμι +ὁ +μισθός +αὐτός +καί +γίνομαι +ὅτε +τελέω +ὁ +Ἰησοῦς +διατάσσω +ὁ +δώδεκα +μαθητής +αὐτός +μεταβαίνω +ἐκεῖθεν +ὁ +διδάσκω +καί +κηρύσσω +ἐν +ὁ +πόλις +αὐτός +δέ +ὁ +Ἰωάννης +ἀκούω +ἐν +ὁ +δεσμωτήριον +ὁ +ἔργον +ὁ +Χριστός +πέμπω +διά +ὁ +μαθητής +αὐτός +λέγω +αὐτός +σύ +εἰμί +ὁ +ἔρχομαι +ἤ +ἕτερος +προσδοκάω +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +πορεύομαι +ἀπαγγέλλω +Ἰωάννης +ὅς +ἀκούω +καί +βλέπω +τυφλός +ἀναβλέπω +καί +χωλός +περιπατέω +λεπρός +καθαρίζω +καί +κωφός +ἀκούω +καί +νεκρός +ἐγείρω +καί +πτωχός +εὐαγγελίζω +καί +μακάριος +εἰμί +ἐάν +ὅς +μή +σκανδαλίζω +ἐν +ἐγώ +δέ +οὗτος +πορεύομαι +ἄρχω +ὁ +Ἰησοῦς +λέγω +ὁ +ὄχλος +περί +Ἰωάννης +τίς +θεάομαι +ἐξέρχομαι +εἰς +ὁ +ἔρημος +κάλαμος +ὑπό +ἄνεμος +σαλεύω +ἀλλά +τίς +ὁράω +ἐξέρχομαι +ἄνθρωπος +ἐν +μαλακός +ἀμφιέννυμι +ὁράω +ὁ +ὁ +μαλακός +φορέω +ἐν +ὁ +οἶκος +ὁ +βασιλεύς +ἀλλά +τίς +ἐξέρχομαι +προφήτης +ὁράω +ναί +λέγω +σύ +καί +περισσός +προφήτης +οὗτος +εἰμί +περί +ὅς +γράφω +ὁράω +ἐγώ +ἀποστέλλω +ὁ +ἄγγελος +ἐγώ +πρό +πρόσωπον +σύ +ὅς +κατασκευάζω +ὁ +ὁδός +σύ +ἔμπροσθεν +σύ +ἀμήν +λέγω +σύ +οὐ +ἐγείρω +ἐν +γεννητός +γυνή +μέγας +Ἰωάννης +ὁ +βαπτιστής +δέ +ὁ +μικρός +ἐν +ὁ +βασιλεία +ὁ +οὐρανός +μέγας +αὐτός +εἰμί +δέ +ἀπό +ὁ +ἡμέρα +Ἰωάννης +ὁ +βαπτιστής +ἕως +ἄρτι +ὁ +βασιλεία +ὁ +οὐρανός +βιάζω +καί +βιαστής +ἁρπάζω +αὐτός +γάρ +πᾶς +ὁ +προφήτης +καί +ὁ +νόμος +ἕως +Ἰωάννης +προφητεύω +καί +εἰ +θέλω +δέχομαι +αὐτός +εἰμί +Ἠλίας +ὁ +μέλλω +ἔρχομαι +ὁ +ἔχω +οὖς +ἀκούω +δέ +τίς +ὁμοιόω +ὁ +γενεά +οὗτος +ὅμοιος +εἰμί +παιδίον +κάθημαι +ἐν +ὁ +ἀγορά +ὅς +προσφωνέω +ὁ +ἕτερος +λέγω +αὐλέω +σύ +καί +οὐ +ὀρχέομαι +θρηνέω +καί +οὐ +κόπτω +γάρ +ἔρχομαι +Ἰωάννης +μήτε +ἐσθίω +μήτε +πίνω +καί +λέγω +δαιμόνιον +ἔχω +ἔρχομαι +ὁ +υἱός +ὁ +ἄνθρωπος +ἐσθίω +καί +πίνω +καί +λέγω +ὁράω +ἄνθρωπος +φάγος +καί +οἰνοπότης +φίλος +τελώνης +καί +ἁμαρτωλός +καί +δικαιόω +ὁ +σοφία +ἀπό +ὁ +ἔργον +αὐτός +τότε +ἄρχω +ὀνειδίζω +ὁ +πόλις +ἐν +ὅς +γίνομαι +ὁ +πολύς +δύναμις +αὐτός +ὅτι +οὐ +μετανοέω +οὐαί +σύ +Χοραζίν +οὐαί +σύ +Βηθσαϊδά +ὅτι +εἰ +ἐν +Τύρος +καί +Σιδών +γίνομαι +ὁ +δύναμις +ὁ +γίνομαι +ἐν +σύ +ἄν +πάλαι +ἐν +σάκκος +καί +σποδός +μετανοέω +πλήν +λέγω +σύ +Τύρος +καί +Σιδών +ἀνεκτός +εἰμί +ἐν +ἡμέρα +κρίσις +ἤ +σύ +καί +Καφαρναούμ +μή +σύ +ἕως +οὐρανός +ὑψόω +ἕως +ᾅδης +καταβαίνω +ὅτι +εἰ +ἐν +Σόδομα +γίνομαι +ὁ +δύναμις +ὁ +γίνομαι +ἐν +σύ +ἄν +μένω +μέχρι +ὁ +σήμερον +πλήν +λέγω +σύ +ὅτι +γῆ +Σόδομα +ἀνεκτός +εἰμί +ἐν +ἡμέρα +κρίσις +ἤ +σύ +ἐν +ἐκεῖνος +ὁ +καιρός +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +ἐξομολογέω +σύ +πατήρ +κύριος +ὁ +οὐρανός +καί +ὁ +γῆ +ὅτι +κρύπτω +οὗτος +ἀπό +σοφός +καί +συνετός +καί +ἀποκαλύπτω +αὐτός +νήπιος +ναί +ὁ +πατήρ +ὅτι +οὕτω +εὐδοκία +γίνομαι +ἔμπροσθεν +σύ +πᾶς +ἐγώ +παραδίδωμι +ὑπό +ὁ +πατήρ +ἐγώ +καί +οὐδείς +ἐπιγινώσκω +ὁ +υἱός +εἰ +μή +ὁ +πατήρ +οὐδέ +ὁ +πατήρ +τὶς +ἐπιγινώσκω +εἰ +μή +ὁ +υἱός +καί +ἐάν +ὅς +ἀποκαλύπτω +βούλομαι +ὁ +υἱός +δεῦτε +πρός +ἐγώ +πᾶς +ὁ +κοπιάω +καί +φορτίζω +κἀγώ +ἀναπαύω +σύ +αἴρω +ὁ +ζυγός +ἐγώ +ἐπί +σύ +καί +μανθάνω +ἀπό +ἐγώ +ὅτι +εἰμί +πραΰς +καί +ταπεινός +ὁ +καρδία +καί +εὑρίσκω +ἀνάπαυσις +ὁ +ψυχή +σύ +γάρ +ὁ +ζυγός +ἐγώ +χρηστός +καί +ὁ +φορτίον +ἐγώ +ἐλαφρός +εἰμί +ἐν +ἐκεῖνος +ὁ +καιρός +πορεύομαι +ὁ +Ἰησοῦς +ὁ +σάββατον +διά +ὁ +σπόριμος +δέ +ὁ +μαθητής +αὐτός +πεινάω +καί +ἄρχω +τίλλω +στάχυς +καί +ἐσθίω +δέ +ὁ +Φαρισαῖος +ὁράω +λέγω +αὐτός +ὁράω +ὁ +μαθητής +σύ +ποιέω +ὅς +ποιέω +οὐ +ἔξεστι(ν) +ἐν +σάββατον +δέ +ὁ +λέγω +αὐτός +οὐ +ἀναγινώσκω +τίς +ποιέω +Δαυίδ +ὅτε +πεινάω +καί +ὁ +μετά +αὐτός +πῶς +εἰσέρχομαι +εἰς +ὁ +οἶκος +ὁ +θεός +καί +ὁ +ἄρτος +ὁ +πρόθεσις +ἐσθίω +ὅς +ἐσθίω +οὐ +ἔξεστι(ν) +εἰμί +αὐτός +οὐδέ +ὁ +μετά +αὐτός +εἰ +μή +ὁ +ἱερεύς +μόνος +ἤ +οὐ +ἀναγινώσκω +ἐν +ὁ +νόμος +ὅτι +ὁ +σάββατον +ὁ +ἱερεύς +ἐν +ὁ +ἱερός +ὁ +σάββατον +βεβηλόω +καί +ἀναίτιος +εἰμί +δέ +λέγω +σύ +ὅτι +ὁ +ἱερός +μέγας +εἰμί +ὧδε +δέ +εἰ +γινώσκω +τίς +εἰμί +ἔλεος +θέλω +καί +οὐ +θυσία +ἄν +οὐ +καταδικάζω +ὁ +ἀναίτιος +γάρ +εἰμί +κύριος +ὁ +σάββατον +ὁ +υἱός +ὁ +ἄνθρωπος +καί +μεταβαίνω +ἐκεῖθεν +ἔρχομαι +εἰς +ὁ +συναγωγή +αὐτός +καί +ὁράω +ἄνθρωπος +χείρ +ἔχω +ξηρός +καί +ἐπερωτάω +αὐτός +λέγω +εἰ +ἔξεστι(ν) +ὁ +σάββατον +θεραπεύω +ἵνα +κατηγορέω +αὐτός +δέ +ὁ +λέγω +αὐτός +τίς +εἰμί +ἐκ +σύ +ἄνθρωπος +ὅς +ἔχω +πρόβατον +εἷς +καί +ἐάν +ἐμπίπτω +οὗτος +ὁ +σάββατον +εἰς +βόθυνος +οὐχί +κρατέω +αὐτός +καί +ἐγείρω +οὖν +πόσος +διαφέρω +ἄνθρωπος +πρόβατον +ὥστε +ἔξεστι(ν) +ὁ +σάββατον +καλῶς +ποιέω +τότε +λέγω +ὁ +ἄνθρωπος +ἐκτείνω +σύ +ὁ +χείρ +καί +ἐκτείνω +καί +ἀποκαθιστάνω +ὑγιής +ὡς +ὁ +ἄλλος +δέ +ἐξέρχομαι +ὁ +Φαρισαῖος +συμβούλιον +λαμβάνω +κατά +αὐτός +ὅπως +αὐτός +ἀπόλλυμι +δέ +ὁ +Ἰησοῦς +γινώσκω +ἀναχωρέω +ἐκεῖθεν +καί +ἀκολουθέω +αὐτός +πολύς +καί +θεραπεύω +αὐτός +πᾶς +καί +ἐπιτιμάω +αὐτός +ἵνα +μή +φανερός +αὐτός +ποιέω +ἵνα +πληρόω +ὁ +εἶπον +διά +Ἠσαΐας +ὁ +προφήτης +λέγω +ὁράω +ὁ +παῖς +ἐγώ +ὅς +αἱρετίζω +ὁ +ἀγαπητός +ἐγώ +ὅς +εὐδοκέω +ὁ +ψυχή +ἐγώ +τίθημι +ὁ +πνεῦμα +ἐγώ +ἐπί +αὐτός +καί +κρίσις +ὁ +ἔθνος +ἀπαγγέλλω +οὐ +ἐρίζω +οὐδέ +κραυγάζω +οὐδέ +ἀκούω +τὶς +ἐν +ὁ +πλατύς +ὁ +φωνή +αὐτός +κάλαμος +συντρίβω +οὐ +κατάγνυμι +καί +λίνον +τύφω +οὐ +σβέννυμι +ἕως +ἄν +ἐκβάλλω +εἰς +νῖκος +ὁ +κρίσις +καί +ὁ +ὄνομα +αὐτός +ἔθνος +ἐλπίζω +τότε +προσφέρω +αὐτός +δαιμονίζομαι +τυφλός +καί +κωφός +καί +θεραπεύω +αὐτός +ὥστε +ὁ +κωφός +λαλέω +καί +βλέπω +καί +ἐξίστημι +πᾶς +ὁ +ὄχλος +καί +λέγω +μήτι +οὗτος +εἰμί +ὁ +υἱός +Δαυίδ +δέ +ὁ +Φαρισαῖος +ἀκούω +λέγω +οὗτος +οὐ +ἐκβάλλω +ὁ +δαιμόνιον +εἰ +μή +ἐν +ὁ +Βεελζεβούλ +ἄρχων +ὁ +δαιμόνιον +δέ +οἶδα +ὁ +ἐνθύμησις +αὐτός +λέγω +αὐτός +πᾶς +βασιλεία +μερίζω +κατά +ἑαυτοῦ +ἐρημόω +καί +πᾶς +πόλις +ἤ +οἰκία +μερίζω +κατά +ἑαυτοῦ +οὐ +ἵστημι +καί +εἰ +ὁ +Σατανᾶς +ὁ +Σατανᾶς +ἐκβάλλω +ἐπί +ἑαυτοῦ +μερίζω +οὖν +πῶς +ἵστημι +ὁ +βασιλεία +αὐτός +καί +εἰ +ἐγώ +ἐν +Βεελζεβούλ +ἐκβάλλω +ὁ +δαιμόνιον +ὁ +υἱός +σύ +ἐν +τίς +ἐκβάλλω +διά +οὗτος +αὐτός +κριτής +σύ +εἰμί +δέ +εἰ +ἐν +πνεῦμα +θεός +ἐγώ +ἐκβάλλω +ὁ +δαιμόνιον +ἄρα +φθάνω +ἐπί +σύ +ὁ +βασιλεία +ὁ +θεός +ἤ +πῶς +δύναμαι +τὶς +εἰσέρχομαι +εἰς +ὁ +οἰκία +ὁ +ἰσχυρός +καί +ὁ +σκεῦος +αὐτός +ἁρπάζω +ἐάν +μή +πρῶτος +δέω +ὁ +ἰσχυρός +καί +τότε +ὁ +οἰκία +αὐτός +διαρπάζω +ὁ +μή +εἰμί +μετά +ἐγώ +κατά +ἐγώ +εἰμί +καί +ὁ +μή +συνάγω +μετά +ἐγώ +σκορπίζω +διά +οὗτος +λέγω +σύ +πᾶς +ἁμαρτία +καί +βλασφημία +ἀφίημι +ὁ +ἄνθρωπος +δέ +ὁ +ὁ +πνεῦμα +βλασφημία +οὐ +ἀφίημι +καί +ἐάν +ὅς +λέγω +λόγος +κατά +ὁ +υἱός +ὁ +ἄνθρωπος +ἀφίημι +αὐτός +δέ +ἄν +ὅς +λέγω +κατά +ὁ +πνεῦμα +ὁ +ἅγιος +οὐ +ἀφίημι +αὐτός +οὔτε +ἐν +οὗτος +ὁ +αἰών +οὔτε +ἐν +ὁ +μέλλω +ἤ +ποιέω +ὁ +δένδρον +καλός +καί +ὁ +καρπός +αὐτός +καλός +ἤ +ποιέω +ὁ +δένδρον +σαπρός +καί +ὁ +καρπός +αὐτός +σαπρός +γάρ +ἐκ +ὁ +καρπός +ὁ +δένδρον +γινώσκω +γέννημα +ἔχιδνα +πῶς +δύναμαι +ἀγαθός +λαλέω +πονηρός +εἰμί +γάρ +ἐκ +ὁ +περίσσευμα +ὁ +καρδία +ὁ +στόμα +λαλέω +ὁ +ἀγαθός +ἄνθρωπος +ἐκ +ὁ +ἀγαθός +θησαυρός +ἐκβάλλω +ἀγαθός +καί +ὁ +πονηρός +ἄνθρωπος +ἐκ +ὁ +πονηρός +θησαυρός +ἐκβάλλω +πονηρός +δέ +λέγω +σύ +ὅτι +πᾶς +ῥῆμα +ἀργός +ὅς +λαλέω +ὁ +ἄνθρωπος +ἀποδίδωμι +περί +αὐτός +λόγος +ἐν +ἡμέρα +κρίσις +γάρ +ἐκ +ὁ +λόγος +σύ +δικαιόω +καί +ἐκ +ὁ +λόγος +σύ +καταδικάζω +τότε +ἀποκρίνομαι +αὐτός +τὶς +ὁ +γραμματεύς +καί +Φαρισαῖος +λέγω +διδάσκαλος +θέλω +ἀπό +σύ +σημεῖον +ὁράω +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +γενεά +πονηρός +καί +μοιχαλίς +σημεῖον +ἐπιζητέω +καί +σημεῖον +οὐ +δίδωμι +αὐτός +εἰ +μή +ὁ +σημεῖον +Ἰωνᾶς +ὁ +προφήτης +γάρ +ὥσπερ +εἰμί +Ἰωνᾶς +ἐν +ὁ +κοιλία +ὁ +κῆτος +τρεῖς +ἡμέρα +καί +τρεῖς +νύξ +οὕτω +εἰμί +ὁ +υἱός +ὁ +ἄνθρωπος +ἐν +ὁ +καρδία +ὁ +γῆ +τρεῖς +ἡμέρα +καί +τρεῖς +νύξ +ἀνήρ +Νινευίτης +ἀνίστημι +ἐν +ὁ +κρίσις +μετά +ὁ +γενεά +οὗτος +καί +κατακρίνω +αὐτός +ὅτι +μετανοέω +εἰς +ὁ +κήρυγμα +Ἰωνᾶς +καί +ὁράω +πολύς +Ἰωνᾶς +ὧδε +βασίλισσα +νότος +ἐγείρω +ἐν +ὁ +κρίσις +μετά +ὁ +γενεά +οὗτος +καί +κατακρίνω +αὐτός +ὅτι +ἔρχομαι +ἐκ +ὁ +πέρας +ὁ +γῆ +ἀκούω +ὁ +σοφία +Σολομών +καί +ὁράω +πολύς +Σολομών +ὧδε +δέ +ὅταν +ὁ +ἀκάθαρτος +πνεῦμα +ἐξέρχομαι +ἀπό +ὁ +ἄνθρωπος +διέρχομαι +διά +ἄνυδρος +τόπος +ζητέω +ἀνάπαυσις +καί +οὐ +εὑρίσκω +τότε +λέγω +εἰς +ὁ +οἶκος +ἐγώ +ἐπιστρέφω +ὅθεν +ἐξέρχομαι +καί +ἔρχομαι +εὑρίσκω +σχολάζω +καί +σαρόω +καί +κοσμέω +τότε +πορεύομαι +καί +παραλαμβάνω +μετά +ἑαυτοῦ +ἑπτά +ἕτερος +πνεῦμα +πονηρός +ἑαυτοῦ +καί +εἰσέρχομαι +κατοικέω +ἐκεῖ +καί +γίνομαι +ὁ +ἔσχατος +ὁ +ἄνθρωπος +ἐκεῖνος +χείρων +ὁ +πρῶτος +οὕτω +εἰμί +καί +ὁ +γενεά +οὗτος +ὁ +πονηρός +ἔτι +αὐτός +λαλέω +ὁ +ὄχλος +ὁράω +ὁ +μήτηρ +καί +ὁ +ἀδελφός +αὐτός +ἵστημι +ἔξω +ζητέω +αὐτός +λαλέω +δέ +λέγω +τὶς +αὐτός +ὁράω +ὁ +μήτηρ +σύ +καί +ὁ +ἀδελφός +σύ +ἔξω +ἵστημι +ζητέω +σύ +λαλέω +δέ +ὁ +ἀποκρίνομαι +λέγω +ὁ +λέγω +αὐτός +τίς +εἰμί +ὁ +μήτηρ +ἐγώ +καί +τίς +εἰμί +ὁ +ἀδελφός +ἐγώ +καί +ἐκτείνω +ὁ +χείρ +αὐτός +ἐπί +ὁ +μαθητής +αὐτός +λέγω +ὁράω +ὁ +μήτηρ +ἐγώ +καί +ὁ +ἀδελφός +ἐγώ +γάρ +ἄν +ὅστις +ποιέω +ὁ +θέλημα +ὁ +πατήρ +ἐγώ +ὁ +ἐν +οὐρανός +αὐτός +ἐγώ +ἀδελφός +καί +ἀδελφή +καί +μήτηρ +εἰμί +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ὁ +Ἰησοῦς +ἐξέρχομαι +ὁ +οἰκία +κάθημαι +παρά +ὁ +θάλασσα +καί +συνάγω +πρός +αὐτός +ὄχλος +πολύς +ὥστε +αὐτός +εἰς +πλοῖον +ἐμβαίνω +κάθημαι +καί +πᾶς +ὁ +ὄχλος +ἐπί +ὁ +αἰγιαλός +ἵστημι +καί +λαλέω +αὐτός +πολύς +ἐν +παραβολή +λέγω +ὁράω +ἐξέρχομαι +ὁ +σπείρω +ὁ +σπείρω +καί +ἐν +ὁ +σπείρω +αὐτός +μέν +ὅς +πίπτω +παρά +ὁ +ὁδός +καί +ἔρχομαι +ὁ +πετεινός +κατεσθίω +αὐτός +δέ +ἄλλος +πίπτω +ἐπί +ὁ +πετρώδης +ὅπου +οὐ +ἔχω +γῆ +πολύς +καί +εὐθέως +ἐξανατέλλω +διά +ὁ +μή +ἔχω +βάθος +γῆ +δέ +ἥλιος +ἀνατέλλω +καυματίζω +καί +διά +ὁ +μή +ἔχω +ῥίζα +ξηραίνω +δέ +ἄλλος +πίπτω +ἐπί +ὁ +ἄκανθα +καί +ἀναβαίνω +ὁ +ἄκανθα +καί +ἀποπνίγω +αὐτός +δέ +ἄλλος +πίπτω +ἐπί +ὁ +γῆ +ὁ +καλός +καί +δίδωμι +καρπός +μέν +ὅς +ἑκατόν +δέ +ὅς +ἑξήκοντα +δέ +ὅς +τριάκοντα +ὁ +ἔχω +οὖς +ἀκούω +καί +προσέρχομαι +ὁ +μαθητής +λέγω +αὐτός +διά +τίς +ἐν +παραβολή +λαλέω +αὐτός +δέ +ὁ +ἀποκρίνομαι +λέγω +ὅτι +σύ +δίδωμι +γινώσκω +ὁ +μυστήριον +ὁ +βασιλεία +ὁ +οὐρανός +δέ +ἐκεῖνος +οὐ +δίδωμι +γάρ +ὅστις +ἔχω +δίδωμι +αὐτός +καί +περισσεύω +δέ +ὅστις +οὐ +ἔχω +καί +ὅς +ἔχω +αἴρω +ἀπό +αὐτός +διά +οὗτος +ἐν +παραβολή +αὐτός +λαλέω +ὅτι +βλέπω +οὐ +βλέπω +καί +ἀκούω +οὐ +ἀκούω +οὐδέ +συνίημι +καί +ἀναπληρόω +αὐτός +ὁ +προφητεία +Ἠσαΐας +ὁ +λέγω +ἀκοή +ἀκούω +καί +οὐ +μή +συνίημι +καί +βλέπω +βλέπω +καί +οὐ +μή +ὁράω +γάρ +παχύνω +ὁ +καρδία +ὁ +λαός +οὗτος +καί +ὁ +οὖς +βαρέως +ἀκούω +καί +ὁ +ὀφθαλμός +αὐτός +καμμύω +μή +ποτέ +ὁράω +ὁ +ὀφθαλμός +καί +ὁ +οὖς +ἀκούω +καί +ὁ +καρδία +συνίημι +καί +ἐπιστρέφω +καί +ἰάομαι +αὐτός +δέ +μακάριος +σύ +ὁ +ὀφθαλμός +ὅτι +βλέπω +καί +ὁ +οὖς +σύ +ὅτι +ἀκούω +γάρ +ἀμήν +λέγω +σύ +ὅτι +πολύς +προφήτης +καί +δίκαιος +ἐπιθυμέω +ὁράω +ὅς +βλέπω +καί +οὐ +ὁράω +καί +ἀκούω +ὅς +ἀκούω +καί +οὐ +ἀκούω +οὖν +σύ +ἀκούω +ὁ +παραβολή +ὁ +σπείρω +πᾶς +ἀκούω +ὁ +λόγος +ὁ +βασιλεία +καί +μή +συνίημι +ἔρχομαι +ὁ +πονηρός +καί +ἁρπάζω +ὁ +σπείρω +ἐν +ὁ +καρδία +αὐτός +οὗτος +εἰμί +ὁ +παρά +ὁ +ὁδός +σπείρω +δέ +ὁ +ἐπί +ὁ +πετρώδης +σπείρω +οὗτος +εἰμί +ὁ +ὁ +λόγος +ἀκούω +καί +εὐθύς +μετά +χαρά +λαμβάνω +αὐτός +δέ +οὐ +ἔχω +ῥίζα +ἐν +ἑαυτοῦ +ἀλλά +πρόσκαιρος +εἰμί +δέ +γίνομαι +θλῖψις +ἤ +διωγμός +διά +ὁ +λόγος +εὐθύς +σκανδαλίζω +δέ +ὁ +εἰς +ὁ +ἄκανθα +σπείρω +οὗτος +εἰμί +ὁ +ὁ +λόγος +ἀκούω +καί +ὁ +μέριμνα +ὁ +αἰών +καί +ὁ +ἀπάτη +ὁ +πλοῦτος +συμπνίγω +ὁ +λόγος +καί +ἄκαρπος +γίνομαι +δέ +ὁ +ἐπί +ὁ +καλός +γῆ +σπείρω +οὗτος +εἰμί +ὁ +ὁ +λόγος +ἀκούω +καί +συνίημι +δή +ὅς +καρποφορέω +καί +μέν +ποιέω +ὅς +ἑκατόν +δέ +ὅς +ἑξήκοντα +δέ +ὅς +τριάκοντα +ἄλλος +παραβολή +παρατίθημι +αὐτός +λέγω +ὁμοιόω +ὁ +βασιλεία +ὁ +οὐρανός +ἄνθρωπος +σπείρω +καλός +σπέρμα +ἐν +ὁ +ἀγρός +αὐτός +δέ +ἐν +ὁ +καθεύδω +ὁ +ἄνθρωπος +ἔρχομαι +αὐτός +ὁ +ἐχθρός +καί +ἐπισπείρω +ζιζάνιον +ἀνά +μέσος +ὁ +σῖτος +καί +ἀπέρχομαι +δέ +ὅτε +βλαστάνω +ὁ +χόρτος +καί +καρπός +ποιέω +τότε +φαίνω +καί +ὁ +ζιζάνιον +δέ +προσέρχομαι +ὁ +δοῦλος (II) +ὁ +οἰκοδεσπότης +λέγω +αὐτός +κύριος +οὐχί +καλός +σπέρμα +σπείρω +ἐν +ὁ +σός +ἀγρός +οὖν +πόθεν +ἔχω +ζιζάνιον +δέ +ὁ +φημί +αὐτός +ἐχθρός +ἄνθρωπος +οὗτος +ποιέω +δέ +ὁ +δοῦλος (II) +αὐτός +λέγω +οὖν +θέλω +ἀπέρχομαι +συλλέγω +αὐτός +δέ +ὁ +φημί +οὐ +μή +ποτέ +συλλέγω +ὁ +ζιζάνιον +ἐκριζόω +ἅμα +αὐτός +ὁ +σῖτος +ἀφίημι +συναυξάνω +ἀμφότεροι +ἕως +ὁ +θερισμός +καί +ἐν +καιρός +ὁ +θερισμός +εἶπον +ὁ +θεριστής +συλλέγω +πρῶτος +ὁ +ζιζάνιον +καί +δέω +αὐτός +εἰς +δέσμη +πρός +ὁ +κατακαίω +αὐτός +δέ +ὁ +σῖτος +συνάγω +εἰς +ὁ +ἀποθήκη +ἐγώ +ἄλλος +παραβολή +παρατίθημι +αὐτός +λέγω +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +κόκκος +σίναπι +ὅς +λαμβάνω +ἄνθρωπος +σπείρω +ἐν +ὁ +ἀγρός +αὐτός +μέν +ὅς +μικρός +εἰμί +πᾶς +ὁ +σπέρμα +δέ +ὅταν +αὐξάνω +μέγας +ὁ +λάχανον +εἰμί +καί +γίνομαι +δένδρον +ὥστε +ἔρχομαι +ὁ +πετεινός +ὁ +οὐρανός +καί +κατασκηνόω +ἐν +ὁ +κλάδος +αὐτός +ἄλλος +παραβολή +λαλέω +αὐτός +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +ζύμη +ὅς +λαμβάνω +γυνή +ἐγκρύπτω +εἰς +ἄλευρον +σάτον +τρεῖς +ἕως +ὅς +ζυμόω +ὅλος +οὗτος +πᾶς +λαλέω +ὁ +Ἰησοῦς +ἐν +παραβολή +ὁ +ὄχλος +καί +χωρίς +παραβολή +οὐδείς +λαλέω +αὐτός +ὅπως +πληρόω +ὁ +εἶπον +διά +ὁ +προφήτης +λέγω +ἀνοίγω +ἐν +παραβολή +ὁ +στόμα +ἐγώ +ἐρεύγομαι +κρύπτω +ἀπό +καταβολή +τότε +ἀφίημι +ὁ +ὄχλος +ἔρχομαι +εἰς +ὁ +οἰκία +καί +προσέρχομαι +αὐτός +ὁ +μαθητής +αὐτός +λέγω +διασαφέω +ἐγώ +ὁ +παραβολή +ὁ +ζιζάνιον +ὁ +ἀγρός +δέ +ὁ +ἀποκρίνομαι +λέγω +ὁ +σπείρω +ὁ +καλός +σπέρμα +εἰμί +ὁ +υἱός +ὁ +ἄνθρωπος +δέ +ὁ +ἀγρός +εἰμί +ὁ +κόσμος +δέ +ὁ +καλός +σπέρμα +οὗτος +εἰμί +ὁ +υἱός +ὁ +βασιλεία +δέ +ὁ +ζιζάνιον +εἰμί +ὁ +υἱός +ὁ +πονηρός +δέ +ὁ +ἐχθρός +ὁ +σπείρω +αὐτός +εἰμί +ὁ +διάβολος +δέ +ὁ +θερισμός +συντέλεια +αἰών +εἰμί +δέ +ὁ +θεριστής +ἄγγελος +εἰμί +οὖν +ὥσπερ +συλλέγω +ὁ +ζιζάνιον +καί +πῦρ +κατακαίω +οὕτω +εἰμί +ἐν +ὁ +συντέλεια +ὁ +αἰών +ἀποστέλλω +ὁ +υἱός +ὁ +ἄνθρωπος +ὁ +ἄγγελος +αὐτός +καί +συλλέγω +ἐκ +ὁ +βασιλεία +αὐτός +πᾶς +ὁ +σκάνδαλον +καί +ὁ +ποιέω +ὁ +ἀνομία +καί +βάλλω +αὐτός +εἰς +ὁ +κάμινος +ὁ +πῦρ +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +τότε +ὁ +δίκαιος +ἐκλάμπω +ἐν +ὁ +βασιλεία +ὁ +πατήρ +αὐτός +ὡς +ὁ +ἥλιος +ὁ +ἔχω +οὖς +ἀκούω +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +θησαυρός +κρύπτω +ἐν +ὁ +ἀγρός +ὅς +εὑρίσκω +ἄνθρωπος +κρύπτω +καί +ἀπό +ὁ +χαρά +αὐτός +ὑπάγω +καί +πωλέω +ὅσος +ἔχω +καί +ἀγοράζω +ὁ +ἀγρός +ἐκεῖνος +πάλιν +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +ἔμπορος +ζητέω +καλός +μαργαρίτης +δέ +εὑρίσκω +εἷς +πολύτιμος +μαργαρίτης +ἀπέρχομαι +πιπράσκω +πᾶς +ὅσος +ἔχω +καί +ἀγοράζω +αὐτός +πάλιν +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +σαγήνη +βάλλω +εἰς +ὁ +θάλασσα +καί +ἐκ +πᾶς +γένος +συνάγω +ὅς +ὅτε +πληρόω +ἀναβιβάζω +ἐπί +ὁ +αἰγιαλός +καί +καθίζω +συλλέγω +ὁ +καλός +εἰς +ἄγγος +δέ +ὁ +σαπρός +ἔξω +βάλλω +οὕτω +εἰμί +ἐν +ὁ +συντέλεια +ὁ +αἰών +ἐξέρχομαι +ὁ +ἄγγελος +καί +ἀφορίζω +ὁ +πονηρός +ἐκ +μέσος +ὁ +δίκαιος +καί +βάλλω +αὐτός +εἰς +ὁ +κάμινος +ὁ +πῦρ +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +συνίημι +οὗτος +πᾶς +λέγω +αὐτός +ναί +δέ +ὁ +λέγω +αὐτός +διά +οὗτος +πᾶς +γραμματεύς +μαθητεύω +ὁ +βασιλεία +ὁ +οὐρανός +ὅμοιος +εἰμί +ἄνθρωπος +οἰκοδεσπότης +ὅστις +ἐκβάλλω +ἐκ +ὁ +θησαυρός +αὐτός +καινός +καί +παλαιός +καί +γίνομαι +ὅτε +τελέω +ὁ +Ἰησοῦς +ὁ +παραβολή +οὗτος +μεταίρω +ἐκεῖθεν +καί +ἔρχομαι +εἰς +ὁ +πατρίς +αὐτός +διδάσκω +αὐτός +ἐν +ὁ +συναγωγή +αὐτός +ὥστε +ἐκπλήσσω +αὐτός +καί +λέγω +πόθεν +οὗτος +ὁ +σοφία +οὗτος +καί +ὁ +δύναμις +οὐ +οὗτος +εἰμί +ὁ +ὁ +τέκτων +υἱός +οὐ +ὁ +μήτηρ +αὐτός +λέγω +Μαρία +καί +ὁ +ἀδελφός +αὐτός +Ἰάκωβος +καί +Ἰωσήφ +καί +Σίμων +καί +Ἰούδας +καί +ὁ +ἀδελφή +αὐτός +οὐχί +πᾶς +πρός +ἐγώ +εἰμί +οὖν +πόθεν +οὗτος +οὗτος +πᾶς +καί +σκανδαλίζω +ἐν +αὐτός +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +οὐ +εἰμί +προφήτης +ἄτιμος +εἰ +μή +ἐν +ὁ +πατρίς +καί +ἐν +ὁ +οἰκία +αὐτός +καί +οὐ +ποιέω +ἐκεῖ +δύναμις +πολύς +διά +ὁ +ἀπιστία +αὐτός +ἐν +ἐκεῖνος +ὁ +καιρός +ἀκούω +Ἡρῴδης +ὁ +τετραάρχης +ὁ +ἀκοή +Ἰησοῦς +καί +λέγω +ὁ +παῖς +αὐτός +οὗτος +εἰμί +Ἰωάννης +ὁ +βαπτιστής +αὐτός +ἐγείρω +ἀπό +ὁ +νεκρός +καί +διά +οὗτος +ὁ +δύναμις +ἐνεργέω +ἐν +αὐτός +γάρ +ὁ +Ἡρῴδης +κρατέω +ὁ +Ἰωάννης +δέω +καί +ἐν +φυλακή +ἀποτίθημι +διά +Ἡρῳδιάς +ὁ +γυνή +Φίλιππος +ὁ +ἀδελφός +αὐτός +γάρ +λέγω +ὁ +Ἰωάννης +αὐτός +οὐ +ἔξεστι(ν) +σύ +ἔχω +αὐτός +καί +θέλω +αὐτός +ἀποκτείνω +φοβέω +ὁ +ὄχλος +ὅτι +ὡς +προφήτης +αὐτός +ἔχω +δέ +γενέσια +ὁ +Ἡρῴδης +γίνομαι +ὀρχέομαι +ὁ +θυγάτηρ +ὁ +Ἡρῳδιάς +ἐν +ὁ +μέσος +καί +ἀρέσκω +ὁ +Ἡρῴδης +ὅθεν +μετά +ὅρκος +ὁμολογέω +αὐτός +δίδωμι +ἐάν +ὅς +αἰτέω +δέ +ὁ +προβιβάζω +ὑπό +ὁ +μήτηρ +αὐτός +φημί +δίδωμι +ἐγώ +ὧδε +ἐπί +πίναξ +ὁ +κεφαλή +Ἰωάννης +ὁ +βαπτιστής +καί +λυπέω +ὁ +βασιλεύς +διά +ὁ +ὅρκος +καί +ὁ +συνανάκειμαι +κελεύω +δίδωμι +καί +πέμπω +ἀποκεφαλίζω +Ἰωάννης +ἐν +ὁ +φυλακή +καί +φέρω +ὁ +κεφαλή +αὐτός +ἐπί +πίναξ +καί +δίδωμι +ὁ +κοράσιον +καί +φέρω +ὁ +μήτηρ +αὐτός +καί +προσέρχομαι +ὁ +μαθητής +αὐτός +αἴρω +ὁ +πτῶμα +καί +θάπτω +αὐτός +καί +ἔρχομαι +ἀπαγγέλλω +ὁ +Ἰησοῦς +δέ +ἀκούω +ὁ +Ἰησοῦς +ἀναχωρέω +ἐκεῖθεν +ἐν +πλοῖον +εἰς +ἔρημος +τόπος +κατά +ἴδιος +καί +ἀκούω +ὁ +ὄχλος +ἀκολουθέω +αὐτός +πεζῇ +ἀπό +ὁ +πόλις +καί +ἐξέρχομαι +ὁράω +πολύς +ὄχλος +καί +σπλαγχνίζομαι +ἐπί +αὐτός +καί +θεραπεύω +ὁ +ἄρρωστος +αὐτός +δέ +ὄψιος +γίνομαι +προσέρχομαι +αὐτός +ὁ +μαθητής +λέγω +ἔρημος +εἰμί +ὁ +τόπος +καί +ὁ +ὥρα +ἤδη +παρέρχομαι +οὖν +ἀπολύω +ὁ +ὄχλος +ἵνα +ἀπέρχομαι +εἰς +ὁ +κώμη +ἀγοράζω +ἑαυτοῦ +βρῶμα +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +οὐ +χρεία +ἔχω +ἀπέρχομαι +δίδωμι +αὐτός +σύ +ἐσθίω +δέ +ὁ +λέγω +αὐτός +οὐ +ἔχω +ὧδε +εἰ +μή +πέντε +ἄρτος +καί +δύο +ἰχθύς +δέ +ὁ +λέγω +φέρω +ἐγώ +ὧδε +αὐτός +καί +κελεύω +ὁ +ὄχλος +ἀνακλίνω +ἐπί +ὁ +χόρτος +λαμβάνω +ὁ +πέντε +ἄρτος +καί +ὁ +δύο +ἰχθύς +ἀναβλέπω +εἰς +ὁ +οὐρανός +εὐλογέω +καί +κλάω +δίδωμι +ὁ +μαθητής +ὁ +ἄρτος +δέ +ὁ +μαθητής +ὁ +ὄχλος +καί +ἐσθίω +πᾶς +καί +χορτάζω +καί +αἴρω +ὁ +περισσεύω +ὁ +κλάσμα +δώδεκα +κόφινος +πλήρης +δέ +ὁ +ἐσθίω +εἰμί +ἀνήρ +ὡσεί +πεντακισχίλιοι +χωρίς +γυνή +καί +παιδίον +καί +εὐθέως +ἀναγκάζω +ὁ +μαθητής +ἐμβαίνω +εἰς +ὁ +πλοῖον +καί +προάγω +αὐτός +εἰς +ὁ +πέραν +ἕως +ὅς +ἀπολύω +ὁ +ὄχλος +καί +ἀπολύω +ὁ +ὄχλος +ἀναβαίνω +εἰς +ὁ +ὄρος +κατά +ἴδιος +προσεύχομαι +δέ +ὄψιος +γίνομαι +μόνος +εἰμί +ἐκεῖ +δέ +ὁ +πλοῖον +ἤδη +στάδιον +πολύς +ἀπό +ὁ +γῆ +ἀπέχω +βασανίζω +ὑπό +ὁ +κῦμα +γάρ +εἰμί +ἐναντίος +ὁ +ἄνεμος +δέ +τέταρτος +φυλακή +ὁ +νύξ +ἔρχομαι +πρός +αὐτός +περιπατέω +ἐπί +ὁ +θάλασσα +δέ +ὁ +μαθητής +ὁράω +αὐτός +ἐπί +ὁ +θάλασσα +περιπατέω +ταράσσω +λέγω +ὅτι +φάντασμα +εἰμί +καί +ἀπό +ὁ +φόβος +κράζω +δέ +εὐθύς +λαλέω +ὁ +Ἰησοῦς +αὐτός +λέγω +θαρσέω +ἐγώ +εἰμί +μή +φοβέω +δέ +ἀποκρίνομαι +αὐτός +ὁ +Πέτρος +λέγω +κύριος +εἰ +σύ +εἰμί +κελεύω +ἐγώ +ἔρχομαι +πρός +σύ +ἐπί +ὁ +ὕδωρ +δέ +ὁ +λέγω +ἔρχομαι +καί +καταβαίνω +ἀπό +ὁ +πλοῖον +Πέτρος +περιπατέω +ἐπί +ὁ +ὕδωρ +καί +ἔρχομαι +πρός +ὁ +Ἰησοῦς +δέ +βλέπω +ὁ +ἄνεμος +φοβέω +καί +ἄρχω +καταποντίζω +κράζω +λέγω +κύριος +σῴζω +ἐγώ +δέ +εὐθέως +ὁ +Ἰησοῦς +ἐκτείνω +ὁ +χείρ +ἐπιλαμβάνομαι +αὐτός +καί +λέγω +αὐτός +ὀλιγόπιστος +εἰς +τίς +διστάζω +καί +ἀναβαίνω +αὐτός +εἰς +ὁ +πλοῖον +κοπάζω +ὁ +ἄνεμος +δέ +ὁ +ἐν +ὁ +πλοῖον +προσκυνέω +αὐτός +λέγω +ἀληθῶς +θεός +υἱός +εἰμί +καί +διαπεράω +ἔρχομαι +ἐπί +ὁ +γῆ +εἰς +Γεννησαρέτ +καί +ἐπιγινώσκω +αὐτός +ὁ +ἀνήρ +ὁ +τόπος +ἐκεῖνος +ἀποστέλλω +εἰς +ὅλος +ὁ +περίχωρος +ἐκεῖνος +καί +προσφέρω +αὐτός +πᾶς +ὁ +κακῶς +ἔχω +καί +παρακαλέω +αὐτός +ἵνα +μόνος +ἅπτω +ὁ +κράσπεδον +ὁ +ἱμάτιον +αὐτός +καί +ὅσος +ἅπτω +διασῴζω +τότε +προσέρχομαι +ὁ +Ἰησοῦς +ἀπό +Ἱεροσόλυμα +Φαρισαῖος +καί +γραμματεύς +λέγω +διά +τίς +ὁ +μαθητής +σύ +παραβαίνω +ὁ +παράδοσις +ὁ +πρεσβύτερος +γάρ +οὐ +νίπτω +ὁ +χείρ +ὅταν +ἄρτος +ἐσθίω +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +διά +τίς +καί +σύ +παραβαίνω +ὁ +ἐντολή +ὁ +θεός +διά +ὁ +παράδοσις +σύ +γάρ +ὁ +θεός +λέγω +τιμάω +ὁ +πατήρ +καί +ὁ +μήτηρ +καί +ὁ +κακολογέω +πατήρ +ἤ +μήτηρ +θάνατος +τελευτάω +δέ +σύ +λέγω +ἄν +ὅς +λέγω +ὁ +πατήρ +ἤ +ὁ +μήτηρ +δῶρον +ἐάν +ὅς +ἐκ +ἐγώ +ὠφελέω +οὐ +μή +τιμάω +ὁ +πατήρ +αὐτός +ἤ +ὁ +μήτηρ +αὐτός +καί +ἀκυρόω +ὁ +λόγος +ὁ +θεός +διά +ὁ +παράδοσις +σύ +ὑποκριτής +καλῶς +προφητεύω +περί +σύ +Ἠσαΐας +λέγω +ὁ +λαός +οὗτος +ὁ +χεῖλος +ἐγώ +τιμάω +δέ +ὁ +καρδία +αὐτός +πόρρω +ἀπέχω +ἀπό +ἐγώ +δέ +μάτην +σέβω +ἐγώ +διδάσκω +διδασκαλία +ἔνταλμα +ἄνθρωπος +καί +προσκαλέω +ὁ +ὄχλος +λέγω +αὐτός +ἀκούω +καί +συνίημι +οὐ +ὁ +εἰσέρχομαι +εἰς +ὁ +στόμα +κοινόω +ὁ +ἄνθρωπος +ἀλλά +ὁ +ἐκπορεύομαι +ἐκ +ὁ +στόμα +οὗτος +κοινόω +ὁ +ἄνθρωπος +τότε +προσέρχομαι +ὁ +μαθητής +λέγω +αὐτός +οἶδα +ὅτι +ὁ +Φαρισαῖος +ἀκούω +ὁ +λόγος +σκανδαλίζω +δέ +ὁ +ἀποκρίνομαι +λέγω +πᾶς +φυτεία +ὅς +οὐ +φυτεύω +ὁ +πατήρ +ἐγώ +ὁ +οὐράνιος +ἐκριζόω +ἀφίημι +αὐτός +εἰμί +τυφλός +ὁδηγός +τυφλός +δέ +ἐάν +τυφλός +τυφλός +ὁδηγέω +ἀμφότεροι +εἰς +βόθυνος +πίπτω +δέ +ἀποκρίνομαι +ὁ +Πέτρος +λέγω +αὐτός +φράζω +ἐγώ +ὁ +παραβολή +δέ +ὁ +λέγω +ἀκμήν +καί +σύ +ἀσύνετος +εἰμί +οὐ +νοέω +ὅτι +πᾶς +ὁ +εἰσπορεύομαι +εἰς +ὁ +στόμα +εἰς +ὁ +κοιλία +χωρέω +καί +εἰς +ἀφεδρών +ἐκβάλλω +δέ +ὁ +ἐκπορεύομαι +ἐκ +ὁ +στόμα +ἐκ +ὁ +καρδία +ἐξέρχομαι +κἀκεῖνος +κοινόω +ὁ +ἄνθρωπος +γάρ +ἐκ +ὁ +καρδία +ἐξέρχομαι +διαλογισμός +πονηρός +φόνος +μοιχεία +πορνεία +κλοπή +ψευδομαρτυρία +βλασφημία +οὗτος +εἰμί +ὁ +κοινόω +ὁ +ἄνθρωπος +δέ +ὁ +ἄνιπτος +χείρ +ἐσθίω +οὐ +κοινόω +ὁ +ἄνθρωπος +καί +ἐξέρχομαι +ἐκεῖθεν +ὁ +Ἰησοῦς +ἀναχωρέω +εἰς +ὁ +μέρος +Τύρος +καί +Σιδών +καί +ὁράω +γυνή +Χαναναῖος +ἀπό +ὁ +ὅριον +ἐκεῖνος +ἐξέρχομαι +κράζω +λέγω +ἐλεέω +ἐγώ +κύριος +υἱός +Δαυίδ +ὁ +θυγάτηρ +ἐγώ +κακῶς +δαιμονίζομαι +δέ +ὁ +οὐ +ἀποκρίνομαι +αὐτός +λόγος +καί +προσέρχομαι +ὁ +μαθητής +αὐτός +ἐρωτάω +αὐτός +λέγω +ἀπολύω +αὐτός +ὅτι +κράζω +ὄπισθεν +ἐγώ +δέ +ὁ +ἀποκρίνομαι +λέγω +οὐ +ἀποστέλλω +εἰ +μή +εἰς +ὁ +πρόβατον +ὁ +ἀπόλλυμι +οἶκος +Ἰσραήλ +δέ +ὁ +ἔρχομαι +προσκυνέω +αὐτός +λέγω +κύριος +βοηθέω +ἐγώ +δέ +ὁ +ἀποκρίνομαι +λέγω +οὐ +εἰμί +καλός +λαμβάνω +ὁ +ἄρτος +ὁ +τέκνον +καί +βάλλω +ὁ +κυνάριον +δέ +ὁ +λέγω +ναί +κύριος +γάρ +καί +ὁ +κυνάριον +ἐσθίω +ἀπό +ὁ +ψιχίον +ὁ +πίπτω +ἀπό +ὁ +τράπεζα +ὁ +κύριος +αὐτός +τότε +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +ὦ +γυνή +μέγας +σύ +ὁ +πίστις +γίνομαι +σύ +ὡς +θέλω +καί +ἰάομαι +ὁ +θυγάτηρ +αὐτός +ἀπό +ὁ +ὥρα +ἐκεῖνος +καί +μεταβαίνω +ἐκεῖθεν +ὁ +Ἰησοῦς +ἔρχομαι +παρά +ὁ +θάλασσα +ὁ +Γαλιλαία +καί +ἀναβαίνω +εἰς +ὁ +ὄρος +κάθημαι +ἐκεῖ +καί +προσέρχομαι +αὐτός +ὄχλος +πολύς +ἔχω +μετά +ἑαυτοῦ +χωλός +κυλλός +τυφλός +κωφός +καί +ἕτερος +πολύς +καί +ῥίπτω +αὐτός +παρά +ὁ +πούς +αὐτός +καί +θεραπεύω +αὐτός +ὥστε +ὁ +ὄχλος +θαυμάζω +βλέπω +κωφός +λαλέω +κυλλός +ὑγιής +καί +χωλός +περιπατέω +καί +τυφλός +βλέπω +καί +δοξάζω +ὁ +θεός +Ἰσραήλ +δέ +ὁ +Ἰησοῦς +προσκαλέω +ὁ +μαθητής +αὐτός +λέγω +σπλαγχνίζομαι +ἐπί +ὁ +ὄχλος +ὅτι +ἤδη +ἡμέρα +τρεῖς +προσμένω +ἐγώ +καί +οὐ +ἔχω +τίς +ἐσθίω +καί +ἀπολύω +αὐτός +νῆστις +οὐ +θέλω +μή +ποτέ +ἐκλύω +ἐν +ὁ +ὁδός +καί +λέγω +αὐτός +ὁ +μαθητής +πόθεν +ἐγώ +ἐν +ἐρημία +ἄρτος +τοσοῦτος +ὥστε +χορτάζω +ὄχλος +τοσοῦτος +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +πόσος +ἄρτος +ἔχω +δέ +ὁ +λέγω +ἑπτά +καί +ὀλίγος +ἰχθύδιον +καί +παραγγέλλω +ὁ +ὄχλος +ἀναπίπτω +ἐπί +ὁ +γῆ +λαμβάνω +ὁ +ἑπτά +ἄρτος +καί +ὁ +ἰχθύς +καί +εὐχαριστέω +κλάω +καί +δίδωμι +ὁ +μαθητής +δέ +ὁ +μαθητής +ὁ +ὄχλος +καί +ἐσθίω +πᾶς +καί +χορτάζω +καί +ὁ +περισσεύω +ὁ +κλάσμα +ἑπτά +σπυρίς +πλήρης +αἴρω +δέ +ὁ +ἐσθίω +εἰμί +τετρακισχίλιοι +ἀνήρ +χωρίς +γυνή +καί +παιδίον +καί +ἀπολύω +ὁ +ὄχλος +ἐμβαίνω +εἰς +ὁ +πλοῖον +καί +ἔρχομαι +εἰς +ὁ +ὅριον +Μαγαδάν +καί +προσέρχομαι +ὁ +Φαρισαῖος +καί +Σαδδουκαῖος +πειράζω +ἐπερωτάω +αὐτός +σημεῖον +ἐκ +ὁ +οὐρανός +ἐπιδείκνυμι +αὐτός +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +ὄψιος +γίνομαι +λέγω +εὐδία +γάρ +πυρράζω +ὁ +οὐρανός +καί +πρωΐ +σήμερον +χειμών +γάρ +πυρράζω +στυγνάζω +ὁ +οὐρανός +μέν +ὁ +πρόσωπον +ὁ +οὐρανός +διακρίνω +γινώσκω +δέ +ὁ +σημεῖον +ὁ +καιρός +οὐ +δύναμαι +γενεά +πονηρός +καί +μοιχαλίς +σημεῖον +ἐπιζητέω +καί +σημεῖον +οὐ +δίδωμι +αὐτός +εἰ +μή +ὁ +σημεῖον +Ἰωνᾶς +καί +καταλείπω +αὐτός +ἀπέρχομαι +καί +ὁ +μαθητής +ἔρχομαι +εἰς +ὁ +πέραν +ἐπιλανθάνομαι +ἄρτος +λαμβάνω +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ὁράω +καί +προσέχω +ἀπό +ὁ +ζύμη +ὁ +Φαρισαῖος +καί +Σαδδουκαῖος +δέ +ὁ +διαλογίζομαι +ἐν +ἑαυτοῦ +λέγω +ὅτι +ἄρτος +οὐ +λαμβάνω +δέ +γινώσκω +ὁ +Ἰησοῦς +λέγω +τίς +διαλογίζομαι +ἐν +ἑαυτοῦ +ὀλιγόπιστος +ὅτι +ἄρτος +οὐ +ἔχω +οὔπω +νοέω +οὐδέ +μνημονεύω +ὁ +πέντε +ἄρτος +ὁ +πεντακισχίλιοι +καί +πόσος +κόφινος +λαμβάνω +οὐδέ +ὁ +ἑπτά +ἄρτος +ὁ +τετρακισχίλιοι +καί +πόσος +σπυρίς +λαμβάνω +πῶς +οὐ +νοέω +ὅτι +οὐ +περί +ἄρτος +λέγω +σύ +δέ +προσέχω +ἀπό +ὁ +ζύμη +ὁ +Φαρισαῖος +καί +Σαδδουκαῖος +τότε +συνίημι +ὅτι +οὐ +λέγω +προσέχω +ἀπό +ὁ +ζύμη +ὁ +ἄρτος +ἀλλά +ἀπό +ὁ +διδαχή +ὁ +Φαρισαῖος +καί +Σαδδουκαῖος +δέ +ὁ +Ἰησοῦς +ἔρχομαι +εἰς +ὁ +μέρος +Καισάρεια +ὁ +Φίλιππος +ἐρωτάω +ὁ +μαθητής +αὐτός +λέγω +λέγω +ὁ +ἄνθρωπος +τίς +εἰμί +ὁ +υἱός +ὁ +ἄνθρωπος +δέ +ὁ +λέγω +μέν +ὁ +Ἰωάννης +ὁ +βαπτιστής +δέ +ἄλλος +Ἠλίας +δέ +ἕτερος +Ἰερεμίας +ἤ +εἷς +ὁ +προφήτης +λέγω +αὐτός +δέ +σύ +τίς +ἐγώ +εἰμί +λέγω +δέ +ἀποκρίνομαι +Σίμων +Πέτρος +λέγω +σύ +εἰμί +ὁ +Χριστός +ὁ +υἱός +ὁ +θεός +ὁ +ζάω +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +μακάριος +εἰμί +Σίμων +Βαριωνᾶ +ὅτι +σάρξ +καί +αἷμα +οὐ +ἀποκαλύπτω +σύ +ἀλλά +ὁ +πατήρ +ἐγώ +ὁ +ἐν +ὁ +οὐρανός +δέ +κἀγώ +σύ +λέγω +ὅτι +σύ +εἰμί +Πέτρος +καί +ἐπί +οὗτος +ὁ +πέτρα +οἰκοδομέω +ἐγώ +ὁ +ἐκκλησία +καί +πύλη +ᾅδης +οὐ +κατισχύω +αὐτός +δίδωμι +σύ +ὁ +κλείς +ὁ +βασιλεία +ὁ +οὐρανός +καί +ἐάν +ὅς +δέω +ἐπί +ὁ +γῆ +εἰμί +δέω +ἐν +ὁ +οὐρανός +καί +ἐάν +ὅς +λύω +ἐπί +ὁ +γῆ +εἰμί +λύω +ἐν +ὁ +οὐρανός +τότε +ἐπιτιμάω +ὁ +μαθητής +ἵνα +μηδείς +λέγω +ὅτι +αὐτός +εἰμί +ὁ +Χριστός +ἀπό +τότε +ἄρχω +Ἰησοῦς +Χριστός +δείκνυμι +ὁ +μαθητής +αὐτός +ὅτι +δεῖ +αὐτός +εἰς +Ἱεροσόλυμα +ἀπέρχομαι +καί +πολύς +πάσχω +ἀπό +ὁ +πρεσβύτερος +καί +ἀρχιερεύς +καί +γραμματεύς +καί +ἀποκτείνω +καί +ὁ +τρίτος +ἡμέρα +ἐγείρω +καί +προσλαμβάνω +αὐτός +ὁ +Πέτρος +ἄρχω +ἐπιτιμάω +αὐτός +λέγω +ἵλεως +σύ +κύριος +οὐ +μή +εἰμί +σύ +οὗτος +δέ +ὁ +στρέφω +λέγω +ὁ +Πέτρος +ὑπάγω +ὀπίσω +ἐγώ +Σατανᾶς +σκάνδαλον +ἐγώ +εἰμί +ὅτι +οὐ +φρονέω +ὁ +ὁ +θεός +ἀλλά +ὁ +ὁ +ἄνθρωπος +τότε +ὁ +Ἰησοῦς +λέγω +ὁ +μαθητής +αὐτός +εἰ +τὶς +θέλω +ὀπίσω +ἐγώ +ἔρχομαι +ἀπαρνέομαι +ἑαυτοῦ +καί +αἴρω +ὁ +σταυρός +αὐτός +καί +ἀκολουθέω +ἐγώ +γάρ +ἐάν +ὅς +θέλω +ὁ +ψυχή +αὐτός +σῴζω +ἀπόλλυμι +αὐτός +δέ +ἄν +ὅς +ἀπόλλυμι +ὁ +ψυχή +αὐτός +ἕνεκα +ἐγώ +εὑρίσκω +αὐτός +γάρ +τίς +ὠφελέω +ἄνθρωπος +ἐάν +ὁ +κόσμος +ὅλος +κερδαίνω +δέ +ὁ +ψυχή +αὐτός +ζημιόω +ἤ +τίς +δίδωμι +ἄνθρωπος +ἀντάλλαγμα +ὁ +ψυχή +αὐτός +γάρ +μέλλω +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἐν +ὁ +δόξα +ὁ +πατήρ +αὐτός +μετά +ὁ +ἄγγελος +αὐτός +καί +τότε +ἀποδίδωμι +ἕκαστος +κατά +ὁ +πρᾶξις +αὐτός +ἀμήν +λέγω +σύ +ὅτι +εἰμί +τὶς +ὁ +ὧδε +ἵστημι +ὅστις +οὐ +μή +γεύομαι +θάνατος +ἕως +ἄν +ὁράω +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἐν +ὁ +βασιλεία +αὐτός +καί +μετά +ἡμέρα +ἕξ +παραλαμβάνω +ὁ +Ἰησοῦς +ὁ +Πέτρος +καί +Ἰάκωβος +καί +Ἰωάννης +ὁ +ἀδελφός +αὐτός +καί +ἀναφέρω +αὐτός +εἰς +ὄρος +ὑψηλός +κατά +ἴδιος +καί +μεταμορφόω +ἔμπροσθεν +αὐτός +καί +λάμπω +ὁ +πρόσωπον +αὐτός +ὡς +ὁ +ἥλιος +δέ +ὁ +ἱμάτιον +αὐτός +γίνομαι +λευκός +ὡς +ὁ +φῶς +καί +ὁράω +ὁράω +αὐτός +Μωϋσῆς +καί +Ἠλίας +συλλαλέω +μετά +αὐτός +δέ +ἀποκρίνομαι +ὁ +Πέτρος +λέγω +ὁ +Ἰησοῦς +κύριος +καλός +εἰμί +ἐγώ +ὧδε +εἰμί +εἰ +θέλω +ποιέω +ὧδε +τρεῖς +σκηνή +σύ +εἷς +καί +Μωϋσῆς +εἷς +καί +Ἠλίας +εἷς +ἔτι +αὐτός +λαλέω +ὁράω +νεφέλη +φωτεινός +ἐπισκιάζω +αὐτός +καί +ὁράω +φωνή +ἐκ +ὁ +νεφέλη +λέγω +οὗτος +εἰμί +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἐν +ὅς +εὐδοκέω +ἀκούω +αὐτός +καί +ἀκούω +ὁ +μαθητής +πίπτω +ἐπί +πρόσωπον +αὐτός +καί +φοβέω +σφόδρα +καί +προσέρχομαι +ὁ +Ἰησοῦς +καί +ἅπτω +αὐτός +λέγω +ἐγείρω +καί +μή +φοβέω +δέ +ἐπαίρω +ὁ +ὀφθαλμός +αὐτός +οὐδείς +ὁράω +εἰ +μή +αὐτός +Ἰησοῦς +μόνος +καί +καταβαίνω +αὐτός +ἐκ +ὁ +ὄρος +ἐντέλλομαι +αὐτός +ὁ +Ἰησοῦς +λέγω +μηδείς +λέγω +ὁ +ὅραμα +ἕως +ὅς +ὁ +υἱός +ὁ +ἄνθρωπος +ἐκ +νεκρός +ἐγείρω +καί +ἐπερωτάω +αὐτός +ὁ +μαθητής +λέγω +οὖν +τίς +ὁ +γραμματεύς +λέγω +ὅτι +δεῖ +Ἠλίας +ἔρχομαι +πρῶτος +δέ +ὁ +ἀποκρίνομαι +λέγω +μέν +Ἠλίας +ἔρχομαι +καί +ἀποκαθιστάνω +πᾶς +δέ +λέγω +σύ +ὅτι +Ἠλίας +ἤδη +ἔρχομαι +καί +οὐ +ἐπιγινώσκω +αὐτός +ἀλλά +ποιέω +ἐν +αὐτός +ὅσος +θέλω +οὕτω +καί +ὁ +υἱός +ὁ +ἄνθρωπος +μέλλω +πάσχω +ὑπό +αὐτός +τότε +συνίημι +ὁ +μαθητής +ὅτι +περί +Ἰωάννης +ὁ +βαπτιστής +λέγω +αὐτός +καί +ἔρχομαι +πρός +ὁ +ὄχλος +προσέρχομαι +αὐτός +ἄνθρωπος +γονυπετέω +αὐτός +καί +λέγω +κύριος +ἐλεέω +ἐγώ +ὁ +υἱός +ὅτι +σεληνιάζομαι +καί +κακῶς +ἔχω +γάρ +πολλάκις +πίπτω +εἰς +ὁ +πῦρ +καί +πολλάκις +εἰς +ὁ +ὕδωρ +καί +προσφέρω +αὐτός +ὁ +μαθητής +σύ +καί +οὐ +δύναμαι +αὐτός +θεραπεύω +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +ὦ +γενεά +ἄπιστος +καί +διαστρέφω +ἕως +πότε +μετά +σύ +εἰμί +ἕως +πότε +ἀνέχω +σύ +φέρω +ἐγώ +αὐτός +ὧδε +καί +ἐπιτιμάω +αὐτός +ὁ +Ἰησοῦς +καί +ἐξέρχομαι +ἀπό +αὐτός +ὁ +δαιμόνιον +καί +θεραπεύω +ὁ +παῖς +ἀπό +ὁ +ὥρα +ἐκεῖνος +τότε +ὁ +μαθητής +προσέρχομαι +ὁ +Ἰησοῦς +κατά +ἴδιος +λέγω +διά +τίς +ἐγώ +οὐ +δύναμαι +ἐκβάλλω +αὐτός +δέ +ὁ +λέγω +αὐτός +διά +ὁ +ὀλιγοπιστία +σύ +γάρ +ἀμήν +λέγω +σύ +ἐάν +ἔχω +πίστις +ὡς +κόκκος +σίναπι +εἶπον +ὁ +ὄρος +οὗτος +μεταβαίνω +ἔνθεν +ἐκεῖ +καί +μεταβαίνω +καί +οὐδείς +ἀδυνατέω +σύ +δέ +συστρέφω +αὐτός +ἐν +ὁ +Γαλιλαία +λέγω +αὐτός +ὁ +Ἰησοῦς +μέλλω +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +εἰς +χείρ +ἄνθρωπος +καί +ἀποκτείνω +αὐτός +καί +ὁ +τρίτος +ἡμέρα +ἐγείρω +καί +λυπέω +σφόδρα +δέ +ἔρχομαι +αὐτός +εἰς +Καφαρναούμ +προσέρχομαι +ὁ +ὁ +δίδραχμον +λαμβάνω +ὁ +Πέτρος +καί +λέγω +οὐ +ὁ +διδάσκαλος +σύ +τελέω +δίδραχμον +λέγω +ναί +καί +ἔρχομαι +εἰς +ὁ +οἰκία +προφθάνω +αὐτός +ὁ +Ἰησοῦς +λέγω +τίς +σύ +δοκέω +Σίμων +ὁ +βασιλεύς +ὁ +γῆ +ἀπό +τίς +λαμβάνω +τέλος +ἤ +κῆνσος +ἀπό +ὁ +υἱός +αὐτός +ἤ +ἀπό +ὁ +ἀλλότριος +δέ +λέγω +ἀπό +ὁ +ἀλλότριος +φημί +αὐτός +ὁ +Ἰησοῦς +ἄρα +ἐλεύθερος +εἰμί +ὁ +υἱός +δέ +ἵνα +μή +σκανδαλίζω +αὐτός +πορεύομαι +εἰς +θάλασσα +βάλλω +ἄγκιστρον +καί +ὁ +ἀναβαίνω +πρῶτος +ἰχθύς +αἴρω +καί +ἀνοίγω +ὁ +στόμα +αὐτός +εὑρίσκω +στατήρ +ἐκεῖνος +λαμβάνω +δίδωμι +αὐτός +ἀντί +ἐγώ +καί +σύ +ἐν +ἐκεῖνος +ὁ +ὥρα +προσέρχομαι +ὁ +μαθητής +ὁ +Ἰησοῦς +λέγω +ἆρα +τίς +μέγας +εἰμί +ἐν +ὁ +βασιλεία +ὁ +οὐρανός +καί +προσκαλέω +παιδίον +ἵστημι +αὐτός +ἐν +μέσος +αὐτός +καί +λέγω +ἀμήν +λέγω +σύ +ἐάν +μή +στρέφω +καί +γίνομαι +ὡς +ὁ +παιδίον +οὐ +μή +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +οὐρανός +οὖν +ὅστις +ταπεινόω +ἑαυτοῦ +ὡς +ὁ +παιδίον +οὗτος +οὗτος +εἰμί +ὁ +μέγας +ἐν +ὁ +βασιλεία +ὁ +οὐρανός +καί +ἐάν +ὅς +δέχομαι +εἷς +παιδίον +τοιοῦτος +ἐπί +ὁ +ὄνομα +ἐγώ +ἐγώ +δέχομαι +δέ +ἄν +ὅς +σκανδαλίζω +εἷς +ὁ +μικρός +οὗτος +ὁ +πιστεύω +εἰς +ἐγώ +συμφέρω +αὐτός +ἵνα +κρεμάννυμι +μύλος +ὀνικός +περί +ὁ +τράχηλος +αὐτός +καί +καταποντίζω +ἐν +ὁ +πέλαγος +ὁ +θάλασσα +οὐαί +ὁ +κόσμος +ἀπό +ὁ +σκάνδαλον +γάρ +ἀνάγκη +ἔρχομαι +ὁ +σκάνδαλον +πλήν +οὐαί +ὁ +ἄνθρωπος +διά +ὅς +ὁ +σκάνδαλον +ἔρχομαι +δέ +εἰ +ὁ +χείρ +σύ +ἤ +ὁ +πούς +σύ +σκανδαλίζω +σύ +ἐκκόπτω +αὐτός +καί +βάλλω +ἀπό +σύ +καλός +σύ +εἰμί +εἰσέρχομαι +εἰς +ὁ +ζωή +κυλλός +ἤ +χωλός +ἤ +δύο +χείρ +ἤ +δύο +πούς +ἔχω +βάλλω +εἰς +ὁ +πῦρ +ὁ +αἰώνιος +καί +εἰ +ὁ +ὀφθαλμός +σύ +σκανδαλίζω +σύ +ἐξαιρέω +αὐτός +καί +βάλλω +ἀπό +σύ +καλός +σύ +εἰμί +μονόφθαλμος +εἰς +ὁ +ζωή +εἰσέρχομαι +ἤ +δύο +ὀφθαλμός +ἔχω +βάλλω +εἰς +ὁ +γέεννα +ὁ +πῦρ +ὁράω +μή +καταφρονέω +εἷς +ὁ +μικρός +οὗτος +γάρ +λέγω +σύ +ὅτι +ὁ +ἄγγελος +αὐτός +ἐν +οὐρανός +διά +πᾶς +βλέπω +ὁ +πρόσωπον +ὁ +πατήρ +ἐγώ +ὁ +ἐν +οὐρανός +τίς +σύ +δοκέω +ἐάν +γίνομαι +τὶς +ἄνθρωπος +ἑκατόν +πρόβατον +καί +πλανάω +εἷς +ἐκ +αὐτός +οὐχί +ἀφίημι +ὁ +ἐνενήκοντα +ἐννέα +ἐπί +ὁ +ὄρος +καί +πορεύομαι +ζητέω +ὁ +πλανάω +καί +ἐάν +γίνομαι +εὑρίσκω +αὐτός +ἀμήν +λέγω +σύ +ὅτι +χαίρω +ἐπί +αὐτός +μᾶλλον +ἤ +ἐπί +ὁ +ἐνενήκοντα +ἐννέα +ὁ +μή +πλανάω +οὕτω +οὐ +εἰμί +θέλημα +ἔμπροσθεν +ὁ +πατήρ +σύ +ὁ +ἐν +οὐρανός +ἵνα +ἀπόλλυμι +εἷς +ὁ +μικρός +οὗτος +δέ +ἐάν +ἁμαρτάνω +ὁ +ἀδελφός +σύ +ὑπάγω +ἐλέγχω +αὐτός +μεταξύ +σύ +καί +αὐτός +μόνος +ἐάν +σύ +ἀκούω +κερδαίνω +ὁ +ἀδελφός +σύ +δέ +ἐάν +μή +ἀκούω +παραλαμβάνω +μετά +σύ +ἔτι +εἷς +ἤ +δύο +ἵνα +ἐπί +στόμα +δύο +ἤ +τρεῖς +μάρτυς +ἵστημι +πᾶς +ῥῆμα +δέ +ἐάν +παρακούω +αὐτός +λέγω +ὁ +ἐκκλησία +δέ +ἐάν +καί +ὁ +ἐκκλησία +παρακούω +εἰμί +σύ +ὥσπερ +ὁ +ἐθνικός +καί +ὁ +τελώνης +ἀμήν +λέγω +σύ +ἐάν +ὅσος +δέω +ἐπί +ὁ +γῆ +εἰμί +δέω +ἐν +οὐρανός +καί +ἐάν +ὅσος +λύω +ἐπί +ὁ +γῆ +εἰμί +λύω +ἐν +οὐρανός +ἀμήν +πάλιν +λέγω +σύ +ὅτι +ἐάν +δύο +ἐκ +σύ +συμφωνέω +ἐπί +ὁ +γῆ +περί +πᾶς +πρᾶγμα +ἐάν +ὅς +αἰτέω +γίνομαι +αὐτός +παρά +ὁ +πατήρ +ἐγώ +ὁ +ἐν +οὐρανός +γάρ +οὗ +εἰμί +συνάγω +δύο +ἤ +τρεῖς +εἰς +ὁ +ἐμός +ὄνομα +ἐκεῖ +εἰμί +ἐν +μέσος +αὐτός +τότε +προσέρχομαι +ὁ +Πέτρος +λέγω +αὐτός +κύριος +ποσάκις +ἁμαρτάνω +εἰς +ἐγώ +ὁ +ἀδελφός +ἐγώ +καί +ἀφίημι +αὐτός +ἕως +ἑπτάκις +λέγω +αὐτός +ὁ +Ἰησοῦς +οὐ +λέγω +σύ +ἕως +ἑπτάκις +ἀλλά +ἕως +ἑβδομηκοντάκις +ἑπτά +διά +οὗτος +ὁμοιόω +ὁ +βασιλεία +ὁ +οὐρανός +ἄνθρωπος +βασιλεύς +ὅς +θέλω +συναίρω +λόγος +μετά +ὁ +δοῦλος (II) +αὐτός +δέ +ἄρχω +αὐτός +συναίρω +προσάγω +αὐτός +εἷς +ὀφειλέτης +μύριοι +τάλαντον +δέ +μή +ἔχω +αὐτός +ἀποδίδωμι +κελεύω +ὁ +κύριος +πιπράσκω +αὐτός +καί +ὁ +γυνή +καί +ὁ +τέκνον +καί +πᾶς +ὅσος +ἔχω +καί +ἀποδίδωμι +οὖν +πίπτω +ὁ +δοῦλος (II) +προσκυνέω +αὐτός +λέγω +μακροθυμέω +ἐπί +ἐγώ +καί +πᾶς +ἀποδίδωμι +σύ +δέ +σπλαγχνίζομαι +ὁ +κύριος +ὁ +δοῦλος (II) +ἐκεῖνος +ἀπολύω +αὐτός +καί +ὁ +δάνειον +ἀφίημι +αὐτός +δέ +ἐξέρχομαι +ὁ +δοῦλος (II) +ἐκεῖνος +εὑρίσκω +εἷς +ὁ +σύνδουλος +αὐτός +ὅς +ὀφείλω +αὐτός +ἑκατόν +δηνάριον +καί +κρατέω +αὐτός +πνίγω +λέγω +ἀποδίδωμι +εἰ +τὶς +ὀφείλω +οὖν +πίπτω +ὁ +σύνδουλος +αὐτός +παρακαλέω +αὐτός +λέγω +μακροθυμέω +ἐπί +ἐγώ +καί +ἀποδίδωμι +σύ +δέ +ὁ +οὐ +θέλω +ἀλλά +ἀπέρχομαι +βάλλω +αὐτός +εἰς +φυλακή +ἕως +ἀποδίδωμι +ὁ +ὀφείλω +οὖν +ὁ +σύνδουλος +αὐτός +ὁράω +ὁ +γίνομαι +λυπέω +σφόδρα +καί +ἔρχομαι +διασαφέω +ὁ +κύριος +ἑαυτοῦ +πᾶς +ὁ +γίνομαι +τότε +προσκαλέω +αὐτός +ὁ +κύριος +αὐτός +λέγω +αὐτός +δοῦλος (II) +πονηρός +πᾶς +ὁ +ὀφειλή +ἐκεῖνος +ἀφίημι +σύ +ἐπεί +παρακαλέω +ἐγώ +οὐ +δεῖ +καί +σύ +ἐλεέω +ὁ +σύνδουλος +σύ +ὡς +κἀγώ +σύ +ἐλεέω +καί +ὀργίζω +ὁ +κύριος +αὐτός +παραδίδωμι +αὐτός +ὁ +βασανιστής +ἕως +ὅς +ἀποδίδωμι +πᾶς +ὁ +ὀφείλω +αὐτός +οὕτω +καί +ὁ +πατήρ +ἐγώ +ὁ +οὐράνιος +ποιέω +σύ +ἐάν +μή +ἀφίημι +ἕκαστος +ὁ +ἀδελφός +αὐτός +ἀπό +ὁ +καρδία +σύ +καί +γίνομαι +ὅτε +τελέω +ὁ +Ἰησοῦς +ὁ +λόγος +οὗτος +μεταίρω +ἀπό +ὁ +Γαλιλαία +καί +ἔρχομαι +εἰς +ὁ +ὅριον +ὁ +Ἰουδαία +πέραν +ὁ +Ἰορδάνης +καί +ἀκολουθέω +αὐτός +ὄχλος +πολύς +καί +θεραπεύω +αὐτός +ἐκεῖ +καί +προσέρχομαι +αὐτός +Φαρισαῖος +πειράζω +αὐτός +καί +λέγω +εἰ +ἔξεστι(ν) +ἀπολύω +ὁ +γυνή +αὐτός +κατά +πᾶς +αἰτία +δέ +ὁ +ἀποκρίνομαι +λέγω +οὐ +ἀναγινώσκω +ὅτι +ὁ +κτίζω +ἀπό +ἀρχή +ἄρσην +καί +θῆλυς +ποιέω +αὐτός +καί +λέγω +ἕνεκα +οὗτος +καταλείπω +ἄνθρωπος +ὁ +πατήρ +καί +ὁ +μήτηρ +καί +κολλάω +ὁ +γυνή +αὐτός +καί +εἰμί +ὁ +δύο +εἰς +σάρξ +εἷς +ὥστε +οὐκέτι +εἰμί +δύο +ἀλλά +σάρξ +εἷς +οὖν +ὅς +ὁ +θεός +συζεύγνυμι +ἄνθρωπος +μή +χωρίζω +λέγω +αὐτός +οὖν +τίς +Μωϋσῆς +ἐντέλλομαι +δίδωμι +βιβλίον +ἀποστάσιον +καί +ἀπολύω +λέγω +αὐτός +ὅτι +Μωϋσῆς +πρός +ὁ +σκληροκαρδία +σύ +ἐπιτρέπω +σύ +ἀπολύω +ὁ +γυνή +σύ +δέ +ἀπό +ἀρχή +οὐ +γίνομαι +οὕτω +δέ +λέγω +σύ +ὅτι +ἄν +ὅς +ἀπολύω +ὁ +γυνή +αὐτός +μή +ἐπί +πορνεία +καί +γαμέω +ἄλλος +μοιχάω +λέγω +αὐτός +ὁ +μαθητής +εἰ +οὕτω +εἰμί +ὁ +αἰτία +ὁ +ἄνθρωπος +μετά +ὁ +γυνή +οὐ +συμφέρω +γαμέω +δέ +ὁ +λέγω +αὐτός +οὐ +πᾶς +χωρέω +ὁ +λόγος +οὗτος +ἀλλά +ὅς +δίδωμι +γάρ +εἰμί +εὐνοῦχος +ὅστις +ἐκ +κοιλία +μήτηρ +γεννάω +οὕτω +καί +εἰμί +εὐνοῦχος +ὅστις +εὐνουχίζω +ὑπό +ὁ +ἄνθρωπος +καί +εἰμί +εὐνοῦχος +ὅστις +εὐνουχίζω +ἑαυτοῦ +διά +ὁ +βασιλεία +ὁ +οὐρανός +ὁ +δύναμαι +χωρέω +χωρέω +τότε +προσφέρω +αὐτός +παιδίον +ἵνα +ὁ +χείρ +ἐπιτίθημι +αὐτός +καί +προσεύχομαι +δέ +ὁ +μαθητής +ἐπιτιμάω +αὐτός +δέ +ὁ +Ἰησοῦς +λέγω +ἀφίημι +ὁ +παιδίον +καί +μή +κωλύω +αὐτός +ἔρχομαι +πρός +ἐγώ +γάρ +ὁ +τοιοῦτος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +καί +ἐπιτίθημι +ὁ +χείρ +αὐτός +πορεύομαι +ἐκεῖθεν +καί +ὁράω +εἷς +προσέρχομαι +αὐτός +λέγω +διδάσκαλος +τίς +ἀγαθός +ποιέω +ἵνα +ἔχω +ζωή +αἰώνιος +δέ +ὁ +λέγω +αὐτός +τίς +ἐγώ +ἐρωτάω +περί +ὁ +ἀγαθός +εἷς +εἰμί +ὁ +ἀγαθός +δέ +εἰ +θέλω +εἰς +ὁ +ζωή +εἰσέρχομαι +τηρέω +ὁ +ἐντολή +λέγω +αὐτός +ποῖος +δέ +ὁ +Ἰησοῦς +φημί +ὁ +οὐ +φονεύω +οὐ +μοιχεύω +οὐ +κλέπτω +οὐ +ψευδομαρτυρέω +τιμάω +ὁ +πατήρ +καί +ὁ +μήτηρ +καί +ἀγαπάω +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +λέγω +αὐτός +ὁ +νεανίσκος +οὗτος +πᾶς +φυλάσσω +τίς +ἔτι +ὑστερέω +φημί +αὐτός +ὁ +Ἰησοῦς +εἰ +θέλω +τέλειος +εἰμί +ὑπάγω +πωλέω +σύ +ὁ +ὑπάρχω +καί +δίδωμι +πτωχός +καί +ἔχω +θησαυρός +ἐν +οὐρανός +καί +δεῦρο +ἀκολουθέω +ἐγώ +δέ +ὁ +νεανίσκος +ἀκούω +ὁ +λόγος +ἀπέρχομαι +λυπέω +γάρ +εἰμί +ἔχω +κτῆμα +πολύς +δέ +ὁ +Ἰησοῦς +λέγω +ὁ +μαθητής +αὐτός +ἀμήν +λέγω +σύ +ὅτι +πλούσιος +δυσκόλως +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +οὐρανός +δέ +πάλιν +λέγω +σύ +εὔκοπος +εἰμί +κάμηλος +διά +τρῆμα +ῥαφίς +εἰσέρχομαι +ἤ +πλούσιος +εἰς +ὁ +βασιλεία +ὁ +θεός +δέ +ἀκούω +ὁ +μαθητής +ἐκπλήσσω +σφόδρα +λέγω +ἆρα +τίς +δύναμαι +σῴζω +δέ +ἐμβλέπω +ὁ +Ἰησοῦς +λέγω +αὐτός +παρά +ἄνθρωπος +οὗτος +ἀδύνατος +εἰμί +δέ +παρά +θεός +πᾶς +δυνατός +τότε +ἀποκρίνομαι +ὁ +Πέτρος +λέγω +αὐτός +ὁράω +ἐγώ +ἀφίημι +πᾶς +καί +ἀκολουθέω +σύ +ἆρα +τίς +εἰμί +ἐγώ +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ἀμήν +λέγω +σύ +ὅτι +σύ +ὁ +ἀκολουθέω +ἐγώ +ἐν +ὁ +παλιγγενεσία +ὅταν +καθίζω +ὁ +υἱός +ὁ +ἄνθρωπος +ἐπί +θρόνος +δόξα +αὐτός +κάθημαι +καί +αὐτός +ἐπί +δώδεκα +θρόνος +κρίνω +ὁ +δώδεκα +φυλή +ὁ +Ἰσραήλ +καί +πᾶς +ὅστις +ἀφίημι +οἰκία +ἤ +ἀδελφός +ἤ +ἀδελφή +ἤ +πατήρ +ἤ +μήτηρ +ἤ +τέκνον +ἤ +ἀγρός +ἕνεκα +ὁ +ἐμός +ὄνομα +πολλαπλασίων +λαμβάνω +καί +ζωή +αἰώνιος +κληρονομέω +δέ +πολύς +πρῶτος +εἰμί +ἔσχατος +καί +ἔσχατος +πρῶτος +γάρ +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +οὐρανός +ἄνθρωπος +οἰκοδεσπότης +ὅστις +ἐξέρχομαι +ἅμα +πρωΐ +μισθόω +ἐργάτης +εἰς +ὁ +ἀμπελών +αὐτός +δέ +συμφωνέω +μετά +ὁ +ἐργάτης +ἐκ +δηνάριον +ὁ +ἡμέρα +ἀποστέλλω +αὐτός +εἰς +ὁ +ἀμπελών +αὐτός +καί +ἐξέρχομαι +περί +τρίτος +ὥρα +ὁράω +ἄλλος +ἵστημι +ἐν +ὁ +ἀγορά +ἀργός +καί +ἐκεῖνος +λέγω +ὑπάγω +καί +σύ +εἰς +ὁ +ἀμπελών +καί +ἐάν +ὅς +εἰμί +δίκαιος +δίδωμι +σύ +δέ +ὁ +ἀπέρχομαι +δέ +πάλιν +ἐξέρχομαι +περί +ἕκτος +καί +ἔνατος +ὥρα +ποιέω +ὡσαύτως +δέ +περί +ὁ +ἑνδέκατος +ἐξέρχομαι +εὑρίσκω +ἄλλος +ἵστημι +καί +λέγω +αὐτός +τίς +ὧδε +ἵστημι +ὅλος +ὁ +ἡμέρα +ἀργός +λέγω +αὐτός +ὅτι +οὐδείς +ἐγώ +μισθόω +λέγω +αὐτός +ὑπάγω +καί +σύ +εἰς +ὁ +ἀμπελών +δέ +ὄψιος +γίνομαι +λέγω +ὁ +κύριος +ὁ +ἀμπελών +ὁ +ἐπίτροπος +αὐτός +καλέω +ὁ +ἐργάτης +καί +ἀποδίδωμι +ὁ +μισθός +ἄρχω +ἀπό +ὁ +ἔσχατος +ἕως +ὁ +πρῶτος +δέ +ἔρχομαι +ὁ +περί +ὁ +ἑνδέκατος +ὥρα +λαμβάνω +ἀνά +δηνάριον +καί +ἔρχομαι +ὁ +πρῶτος +νομίζω +ὅτι +πολύς +λαμβάνω +καί +λαμβάνω +ὁ +ἀνά +δηνάριον +καί +αὐτός +δέ +λαμβάνω +γογγύζω +κατά +ὁ +οἰκοδεσπότης +λέγω +οὗτος +ὁ +ἔσχατος +εἷς +ὥρα +ποιέω +καί +ἴσος +αὐτός +ποιέω +ἐγώ +ὁ +βαστάζω +ὁ +βάρος +ὁ +ἡμέρα +καί +ὁ +καύσων +δέ +ὁ +ἀποκρίνομαι +εἷς +αὐτός +λέγω +ἑταῖρος +οὐ +ἀδικέω +σύ +οὐχί +δηνάριον +συμφωνέω +ἐγώ +αἴρω +ὁ +σός +καί +ὑπάγω +δέ +θέλω +οὗτος +ὁ +ἔσχατος +δίδωμι +ὡς +καί +σύ +οὐ +ἔξεστι(ν) +ἐγώ +ὅς +θέλω +ποιέω +ἐν +ὁ +ἐμός +ἤ +ὁ +ὀφθαλμός +σύ +πονηρός +εἰμί +ὅτι +ἐγώ +ἀγαθός +εἰμί +οὕτω +εἰμί +ὁ +ἔσχατος +πρῶτος +καί +ὁ +πρῶτος +ἔσχατος +δέ +Ἰησοῦς +μέλλω +ἀναβαίνω +εἰς +Ἱεροσόλυμα +παραλαμβάνω +ὁ +δώδεκα +κατά +ἴδιος +καί +ἐν +ὁ +ὁδός +λέγω +αὐτός +ὁράω +ἀναβαίνω +εἰς +Ἱεροσόλυμα +καί +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +ὁ +ἀρχιερεύς +καί +γραμματεύς +καί +κατακρίνω +αὐτός +εἰς +θάνατος +καί +παραδίδωμι +αὐτός +ὁ +ἔθνος +εἰς +ὁ +ἐμπαίζω +καί +μαστιγόω +καί +σταυρόω +καί +ὁ +τρίτος +ἡμέρα +ἐγείρω +τότε +προσέρχομαι +αὐτός +ὁ +μήτηρ +ὁ +υἱός +Ζεβεδαῖος +μετά +ὁ +υἱός +αὐτός +προσκυνέω +καί +αἰτέω +τὶς +ἀπό +αὐτός +δέ +ὁ +λέγω +αὐτός +τίς +θέλω +λέγω +αὐτός +λέγω +ἵνα +καθίζω +οὗτος +ὁ +δύο +υἱός +ἐγώ +εἷς +ἐκ +δεξιός +καί +εἷς +ἐκ +εὐώνυμος +σύ +ἐν +ὁ +βασιλεία +σύ +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +οὐ +οἶδα +τίς +αἰτέω +δύναμαι +πίνω +ὁ +ποτήριον +ὅς +πίνω +ἐγώ +μέλλω +λέγω +αὐτός +δύναμαι +λέγω +αὐτός +μέν +ὁ +ποτήριον +ἐγώ +πίνω +δέ +ὁ +καθίζω +ἐκ +δεξιός +ἐγώ +καί +ἐκ +εὐώνυμος +οὐ +εἰμί +ἐμός +οὗτος +δίδωμι +ἀλλά +ὅς +ἑτοιμάζω +ὑπό +ὁ +πατήρ +ἐγώ +καί +ἀκούω +ὁ +δέκα +ἀγανακτέω +περί +ὁ +δύο +ἀδελφός +δέ +ὁ +Ἰησοῦς +προσκαλέω +αὐτός +λέγω +οἶδα +ὅτι +ὁ +ἄρχων +ὁ +ἔθνος +κατακυριεύω +αὐτός +καί +ὁ +μέγας +κατεξουσιάζω +αὐτός +οὐ +οὕτω +εἰμί +ἐν +σύ +ἀλλά +ἐάν +ὅς +θέλω +ἐν +σύ +μέγας +γίνομαι +εἰμί +σύ +διάκονος +καί +ἄν +ὅς +θέλω +ἐν +σύ +εἰμί +πρῶτος +εἰμί +σύ +δοῦλος (II) +ὥσπερ +ὁ +υἱός +ὁ +ἄνθρωπος +οὐ +ἔρχομαι +διακονέω +ἀλλά +διακονέω +καί +δίδωμι +ὁ +ψυχή +αὐτός +λύτρον +ἀντί +πολύς +καί +ἐκπορεύομαι +αὐτός +ἀπό +Ἰεριχώ +ἀκολουθέω +αὐτός +ὄχλος +πολύς +καί +ὁράω +δύο +τυφλός +κάθημαι +παρά +ὁ +ὁδός +ἀκούω +ὅτι +Ἰησοῦς +παράγω +κράζω +λέγω +ἐλεέω +ἐγώ +κύριος +υἱός +Δαυίδ +δέ +ὁ +ὄχλος +ἐπιτιμάω +αὐτός +ἵνα +σιωπάω +δέ +ὁ +μέγας +κράζω +λέγω +ἐλεέω +ἐγώ +κύριος +υἱός +Δαυίδ +καί +ἵστημι +ὁ +Ἰησοῦς +φωνέω +αὐτός +καί +λέγω +θέλω +τίς +ποιέω +σύ +λέγω +αὐτός +κύριος +ἵνα +ἀνοίγω +ὁ +ὀφθαλμός +ἐγώ +δέ +σπλαγχνίζομαι +ὁ +Ἰησοῦς +ἅπτω +ὁ +ὄμμα +αὐτός +καί +εὐθέως +ἀναβλέπω +καί +ἀκολουθέω +αὐτός +καί +ὅτε +ἐγγίζω +εἰς +Ἱεροσόλυμα +καί +ἔρχομαι +εἰς +Βηθφαγή +εἰς +ὁ +ὄρος +ὁ +ἐλαία +τότε +Ἰησοῦς +ἀποστέλλω +δύο +μαθητής +λέγω +αὐτός +πορεύομαι +εἰς +ὁ +κώμη +ὁ +κατέναντι +σύ +καί +εὐθύς +εὑρίσκω +ὄνος +δέω +καί +πῶλος +μετά +αὐτός +λύω +ἄγω +ἐγώ +καί +ἐάν +τὶς +σύ +λέγω +τὶς +εἶπον +ὅτι +ὁ +κύριος +αὐτός +χρεία +ἔχω +δέ +εὐθύς +ἀποστέλλω +αὐτός +δέ +οὗτος +γίνομαι +ἵνα +πληρόω +ὁ +εἶπον +διά +ὁ +προφήτης +λέγω +λέγω +ὁ +θυγάτηρ +Σιών +ὁράω +ὁ +βασιλεύς +σύ +ἔρχομαι +σύ +πραΰς +καί +ἐπιβαίνω +ἐπί +ὄνος +καί +ἐπί +πῶλος +υἱός +ὑποζύγιον +δέ +ὁ +μαθητής +πορεύομαι +καί +ποιέω +καθώς +συντάσσω +αὐτός +ὁ +Ἰησοῦς +ἄγω +ὁ +ὄνος +καί +ὁ +πῶλος +καί +ἐπιτίθημι +ἐπί +αὐτός +ὁ +ἱμάτιον +καί +ἐπικαθίζω +ἐπάνω +αὐτός +δέ +ὁ +πολύς +ὄχλος +στρωννύω +ἑαυτοῦ +ὁ +ἱμάτιον +ἐν +ὁ +ὁδός +δέ +ἄλλος +κόπτω +κλάδος +ἀπό +ὁ +δένδρον +καί +στρωννύω +ἐν +ὁ +ὁδός +δέ +ὁ +ὄχλος +ὁ +προάγω +αὐτός +καί +ὁ +ἀκολουθέω +κράζω +λέγω +ὡσαννά +ὁ +υἱός +Δαυίδ +εὐλογέω +ὁ +ἔρχομαι +ἐν +ὄνομα +κύριος +ὡσαννά +ἐν +ὁ +ὕψιστος +καί +εἰσέρχομαι +αὐτός +εἰς +Ἱεροσόλυμα +σείω +πᾶς +ὁ +πόλις +λέγω +τίς +εἰμί +οὗτος +δέ +ὁ +ὄχλος +λέγω +οὗτος +εἰμί +ὁ +προφήτης +Ἰησοῦς +ὁ +ἀπό +Ναζαρά +ὁ +Γαλιλαία +καί +εἰσέρχομαι +Ἰησοῦς +εἰς +ὁ +ἱερός +καί +ἐκβάλλω +πᾶς +ὁ +πωλέω +καί +ἀγοράζω +ἐν +ὁ +ἱερός +καί +καταστρέφω +ὁ +τράπεζα +ὁ +κολλυβιστής +καί +ὁ +καθέδρα +ὁ +πωλέω +ὁ +περιστερά +καί +λέγω +αὐτός +γράφω +ὁ +οἶκος +ἐγώ +οἶκος +προσευχή +καλέω +δέ +σύ +αὐτός +ποιέω +σπήλαιον +λῃστής +καί +προσέρχομαι +αὐτός +τυφλός +καί +χωλός +ἐν +ὁ +ἱερός +καί +θεραπεύω +αὐτός +δέ +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +ὁράω +ὁ +θαυμάσιος +ὅς +ποιέω +καί +ὁ +παῖς +ὁ +κράζω +ἐν +ὁ +ἱερός +καί +λέγω +ὡσαννά +ὁ +υἱός +Δαυίδ +ἀγανακτέω +καί +λέγω +αὐτός +ἀκούω +τίς +οὗτος +λέγω +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ναί +οὐδέποτε +ἀναγινώσκω +ὅτι +ἐκ +στόμα +νήπιος +καί +θηλάζω +καταρτίζω +αἶνος +καί +καταλείπω +αὐτός +ἐξέρχομαι +ἔξω +ὁ +πόλις +εἰς +Βηθανία +καί +αὐλίζομαι +ἐκεῖ +δέ +πρωΐ +ἐπανάγω +εἰς +ὁ +πόλις +πεινάω +καί +ὁράω +συκῆ +εἷς +ἐπί +ὁ +ὁδός +ἔρχομαι +ἐπί +αὐτός +καί +οὐδείς +εὑρίσκω +ἐν +αὐτός +εἰ +μή +φύλλον +μόνος +καί +λέγω +αὐτός +οὐ +μηκέτι +ἐκ +σύ +καρπός +γίνομαι +εἰς +ὁ +αἰών +καί +ξηραίνω +παραχρῆμα +ὁ +συκῆ +καί +ὁράω +ὁ +μαθητής +θαυμάζω +λέγω +πῶς +παραχρῆμα +ξηραίνω +ὁ +συκῆ +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +ἀμήν +λέγω +σύ +ἐάν +ἔχω +πίστις +καί +μή +διακρίνω +οὐ +μόνος +ὁ +ὁ +συκῆ +ποιέω +ἀλλά +κἄν +ὁ +ὄρος +οὗτος +λέγω +αἴρω +καί +βάλλω +εἰς +ὁ +θάλασσα +γίνομαι +καί +πᾶς +ἄν +ὅσος +αἰτέω +ἐν +ὁ +προσευχή +πιστεύω +λαμβάνω +καί +ἔρχομαι +αὐτός +εἰς +ὁ +ἱερός +προσέρχομαι +αὐτός +διδάσκω +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +ὁ +λαός +λέγω +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +καί +τίς +σύ +δίδωμι +ὁ +ἐξουσία +οὗτος +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +ἐρωτάω +σύ +κἀγώ +λόγος +εἷς +ἐάν +ὅς +λέγω +ἐγώ +κἀγώ +σύ +εἶπον +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +ὁ +βάπτισμα +ὁ +Ἰωάννης +πόθεν +εἰμί +ἐκ +οὐρανός +ἤ +ἐκ +ἄνθρωπος +δέ +ὁ +διαλογίζομαι +ἐν +ἑαυτοῦ +λέγω +ἐάν +λέγω +ἐκ +οὐρανός +εἶπον +ἐγώ +οὖν +διά +τίς +οὐ +πιστεύω +αὐτός +δέ +ἐάν +λέγω +ἐκ +ἄνθρωπος +φοβέω +ὁ +ὄχλος +γάρ +πᾶς +ὡς +προφήτης +ἔχω +ὁ +Ἰωάννης +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +οὐ +οἶδα +φημί +αὐτός +καί +αὐτός +οὐδέ +ἐγώ +λέγω +σύ +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +δέ +τίς +σύ +δοκέω +ἄνθρωπος +ἔχω +τέκνον +δύο +προσέρχομαι +ὁ +πρῶτος +λέγω +τέκνον +ὑπάγω +σήμερον +ἐργάζομαι +ἐν +ὁ +ἀμπελών +δέ +ὁ +ἀποκρίνομαι +λέγω +ἐγώ +κύριος +καί +οὐ +ἀπέρχομαι +δέ +προσέρχομαι +ὁ +δεύτερος +λέγω +ὡσαύτως +δέ +ὁ +ἀποκρίνομαι +λέγω +οὐ +θέλω +ὕστερος +μεταμέλομαι +ἀπέρχομαι +τίς +ἐκ +ὁ +δύο +ποιέω +ὁ +θέλημα +ὁ +πατήρ +λέγω +ὁ +ὕστερος +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀμήν +λέγω +σύ +ὅτι +ὁ +τελώνης +καί +ὁ +πόρνη +προάγω +σύ +εἰς +ὁ +βασιλεία +ὁ +θεός +γάρ +ἔρχομαι +Ἰωάννης +πρός +σύ +ἐν +ὁδός +δικαιοσύνη +καί +οὐ +πιστεύω +αὐτός +δέ +ὁ +τελώνης +καί +ὁ +πόρνη +πιστεύω +αὐτός +δέ +σύ +ὁράω +οὐδέ +μεταμέλομαι +ὕστερος +ὁ +πιστεύω +αὐτός +ἄλλος +παραβολή +ἀκούω +ἄνθρωπος +εἰμί +οἰκοδεσπότης +ὅστις +φυτεύω +ἀμπελών +καί +φραγμός +αὐτός +περιτίθημι +καί +ὀρύσσω +ἐν +αὐτός +ληνός +καί +οἰκοδομέω +πύργος +καί +ἐκδίδωμι +αὐτός +γεωργός +καί +ἀποδημέω +δέ +ὅτε +ἐγγίζω +ὁ +καιρός +ὁ +καρπός +ἀποστέλλω +ὁ +δοῦλος (II) +αὐτός +πρός +ὁ +γεωργός +λαμβάνω +ὁ +καρπός +αὐτός +καί +λαμβάνω +ὁ +γεωργός +ὁ +δοῦλος (II) +αὐτός +μέν +ὅς +δέρω +δέ +ὅς +ἀποκτείνω +δέ +ὅς +λιθοβολέω +πάλιν +ἀποστέλλω +ἄλλος +δοῦλος (II) +πολύς +ὁ +πρῶτος +καί +ποιέω +αὐτός +ὡσαύτως +δέ +ὕστερος +ἀποστέλλω +πρός +αὐτός +ὁ +υἱός +αὐτός +λέγω +ἐντρέπω +ὁ +υἱός +ἐγώ +δέ +ὁ +γεωργός +ὁράω +ὁ +υἱός +λέγω +ἐν +ἑαυτοῦ +οὗτος +εἰμί +ὁ +κληρονόμος +δεῦτε +ἀποκτείνω +αὐτός +καί +ἔχω +ὁ +κληρονομία +αὐτός +καί +λαμβάνω +αὐτός +ἐκβάλλω +ἔξω +ὁ +ἀμπελών +καί +ἀποκτείνω +οὖν +ὅταν +ἔρχομαι +ὁ +κύριος +ὁ +ἀμπελών +τίς +ποιέω +ὁ +γεωργός +ἐκεῖνος +λέγω +αὐτός +κακός +κακῶς +ἀπόλλυμι +αὐτός +καί +ὁ +ἀμπελών +ἐκδίδωμι +ἄλλος +γεωργός +ὅστις +ἀποδίδωμι +αὐτός +ὁ +καρπός +ἐν +ὁ +καιρός +αὐτός +λέγω +αὐτός +ὁ +Ἰησοῦς +οὐδέποτε +ἀναγινώσκω +ἐν +ὁ +γραφή +λίθος +ὅς +ἀποδοκιμάζω +ὁ +οἰκοδομέω +οὗτος +γίνομαι +εἰς +κεφαλή +γωνία +παρά +κύριος +γίνομαι +οὗτος +καί +εἰμί +θαυμαστός +ἐν +ὀφθαλμός +ἐγώ +διά +οὗτος +λέγω +σύ +ὅτι +αἴρω +ἀπό +σύ +ὁ +βασιλεία +ὁ +θεός +καί +δίδωμι +ἔθνος +ποιέω +ὁ +καρπός +αὐτός +καί +ὁ +πίπτω +ἐπί +ὁ +λίθος +οὗτος +συνθλάω +δέ +ἐπί +ἄν +ὅς +πίπτω +λικμάω +αὐτός +καί +ὁ +ἀρχιερεύς +καί +ὁ +Φαρισαῖος +ἀκούω +ὁ +παραβολή +αὐτός +γινώσκω +ὅτι +περί +αὐτός +λέγω +καί +ζητέω +αὐτός +κρατέω +φοβέω +ὁ +ὄχλος +ἐπεί +εἰς +προφήτης +αὐτός +ἔχω +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +πάλιν +λέγω +ἐν +παραβολή +αὐτός +λέγω +ὁμοιόω +ὁ +βασιλεία +ὁ +οὐρανός +ἄνθρωπος +βασιλεύς +ὅστις +ποιέω +γάμος +ὁ +υἱός +αὐτός +καί +ἀποστέλλω +ὁ +δοῦλος (II) +αὐτός +καλέω +ὁ +καλέω +εἰς +ὁ +γάμος +καί +οὐ +θέλω +ἔρχομαι +πάλιν +ἀποστέλλω +ἄλλος +δοῦλος (II) +λέγω +λέγω +ὁ +καλέω +ὁράω +ὁ +ἄριστον +ἐγώ +ἑτοιμάζω +ὁ +ταῦρος +ἐγώ +καί +ὁ +σιτιστός +θύω +καί +πᾶς +ἕτοιμος +δεῦτε +εἰς +ὁ +γάμος +δέ +ὁ +ἀμελέω +ἀπέρχομαι +μέν +ὅς +εἰς +ὁ +ἴδιος +ἀγρός +δέ +ὅς +ἐπί +ὁ +ἐμπορία +αὐτός +δέ +ὁ +λοιπός +κρατέω +ὁ +δοῦλος (II) +αὐτός +ὑβρίζω +καί +ἀποκτείνω +δέ +ὁ +βασιλεύς +ὀργίζω +καί +πέμπω +ὁ +στράτευμα +αὐτός +ἀπόλλυμι +ὁ +φονεύς +ἐκεῖνος +καί +ὁ +πόλις +αὐτός +ἐμπίπρημι +τότε +λέγω +ὁ +δοῦλος (II) +αὐτός +μέν +ὁ +γάμος +ἕτοιμος +εἰμί +δέ +ὁ +καλέω +οὐ +εἰμί +ἄξιος +οὖν +πορεύομαι +ἐπί +ὁ +διέξοδος +ὁ +ὁδός +καί +ἐάν +ὅσος +εὑρίσκω +καλέω +εἰς +ὁ +γάμος +καί +ὁ +δοῦλος (II) +ἐκεῖνος +ἐξέρχομαι +εἰς +ὁ +ὁδός +συνάγω +πᾶς +ὅς +εὑρίσκω +τέ +πονηρός +καί +ἀγαθός +καί +πίμπλημι +ὁ +νυμφών +ἀνάκειμαι +δέ +ὁ +βασιλεύς +εἰσέρχομαι +θεάομαι +ὁ +ἀνάκειμαι +ὁράω +ἐκεῖ +ἄνθρωπος +οὐ +ἐνδύω +ἔνδυμα +γάμος +καί +λέγω +αὐτός +ἑταῖρος +πῶς +εἰσέρχομαι +ὧδε +μή +ἔχω +ἔνδυμα +γάμος +δέ +ὁ +φιμόω +τότε +ὁ +βασιλεύς +λέγω +ὁ +διάκονος +δέω +αὐτός +πούς +καί +χείρ +ἐκβάλλω +αὐτός +εἰς +ὁ +σκότος +ὁ +ἐξώτερος +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +γάρ +πολύς +εἰμί +κλητός +δέ +ὀλίγος +ἐκλεκτός +τότε +πορεύομαι +ὁ +Φαρισαῖος +συμβούλιον +λαμβάνω +ὅπως +αὐτός +παγιδεύω +ἐν +λόγος +καί +ἀποστέλλω +αὐτός +ὁ +μαθητής +αὐτός +μετά +ὁ +Ἡρῳδιανοί +λέγω +διδάσκαλος +οἶδα +ὅτι +ἀληθής +εἰμί +καί +ὁ +ὁδός +ὁ +θεός +ἐν +ἀλήθεια +διδάσκω +καί +οὐ +μέλει +σύ +περί +οὐδείς +γάρ +οὐ +βλέπω +εἰς +πρόσωπον +ἄνθρωπος +οὖν +λέγω +ἐγώ +τίς +σύ +δοκέω +ἔξεστι(ν) +δίδωμι +κῆνσος +Καῖσαρ +ἤ +οὐ +δέ +ὁ +Ἰησοῦς +γινώσκω +ὁ +πονηρία +αὐτός +λέγω +τίς +ἐγώ +πειράζω +ὑποκριτής +ἐπιδείκνυμι +ἐγώ +ὁ +νόμισμα +ὁ +κῆνσος +δέ +ὁ +προσφέρω +αὐτός +δηνάριον +καί +λέγω +αὐτός +τίς +ὁ +εἰκών +οὗτος +καί +ὁ +ἐπιγραφή +λέγω +Καῖσαρ +τότε +λέγω +αὐτός +οὖν +ἀποδίδωμι +ὁ +Καῖσαρ +Καῖσαρ +καί +ὁ +ὁ +θεός +ὁ +θεός +καί +ἀκούω +θαυμάζω +καί +ἀφίημι +αὐτός +ἀπέρχομαι +ἐν +ἐκεῖνος +ὁ +ἡμέρα +προσέρχομαι +αὐτός +Σαδδουκαῖος +λέγω +μή +εἰμί +ἀνάστασις +καί +ἐπερωτάω +αὐτός +λέγω +διδάσκαλος +Μωϋσῆς +λέγω +ἐάν +τὶς +ἀποθνῄσκω +μή +ἔχω +τέκνον +ἐπιγαμβρεύω +ὁ +ἀδελφός +αὐτός +ὁ +γυνή +αὐτός +καί +ἀνίστημι +σπέρμα +ὁ +ἀδελφός +αὐτός +δέ +εἰμί +παρά +ἐγώ +ἑπτά +ἀδελφός +καί +ὁ +πρῶτος +γαμέω +τελευτάω +καί +μή +ἔχω +σπέρμα +ἀφίημι +ὁ +γυνή +αὐτός +ὁ +ἀδελφός +αὐτός +ὁμοίως +καί +ὁ +δεύτερος +καί +ὁ +τρίτος +ἕως +ὁ +ἑπτά +δέ +ὕστερος +πᾶς +ἀποθνῄσκω +ὁ +γυνή +οὖν +ἐν +ὁ +ἀνάστασις +τίς +ὁ +ἑπτά +γυνή +εἰμί +γάρ +πᾶς +ἔχω +αὐτός +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +πλανάω +μή +οἶδα +ὁ +γραφή +μηδέ +ὁ +δύναμις +ὁ +θεός +γάρ +ἐν +ὁ +ἀνάστασις +οὔτε +γαμέω +οὔτε +γαμίζω +ἀλλά +ὡς +ἄγγελος +ἐν +ὁ +οὐρανός +εἰμί +δέ +περί +ὁ +ἀνάστασις +ὁ +νεκρός +οὐ +ἀναγινώσκω +ὁ +εἶπον +σύ +ὑπό +ὁ +θεός +λέγω +ἐγώ +εἰμί +ὁ +θεός +Ἀβραάμ +καί +ὁ +θεός +Ἰσαάκ +καί +ὁ +θεός +Ἰακώβ +οὐ +εἰμί +ὁ +θεός +νεκρός +ἀλλά +ζάω +καί +ἀκούω +ὁ +ὄχλος +ἐκπλήσσω +ἐπί +ὁ +διδαχή +αὐτός +δέ +ὁ +Φαρισαῖος +ἀκούω +ὅτι +φιμόω +ὁ +Σαδδουκαῖος +συνάγω +ἐπί +ὁ +αὐτός +καί +ἐπερωτάω +εἷς +ἐκ +αὐτός +νομικός +πειράζω +αὐτός +διδάσκαλος +ποῖος +ἐντολή +μέγας +ἐν +ὁ +νόμος +δέ +ὁ +φημί +αὐτός +ἀγαπάω +κύριος +ὁ +θεός +σύ +ἐν +ὅλος +ὁ +καρδία +σύ +καί +ἐν +ὅλος +ὁ +ψυχή +σύ +καί +ἐν +ὅλος +ὁ +διάνοια +σύ +οὗτος +εἰμί +ὁ +μέγας +καί +πρῶτος +ἐντολή +δεύτερος +ὅμοιος +αὐτός +ἀγαπάω +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +ἐν +οὗτος +ὁ +δύο +ἐντολή +ὅλος +ὁ +νόμος +κρεμάννυμι +καί +ὁ +προφήτης +δέ +συνάγω +ὁ +Φαρισαῖος +ἐπερωτάω +αὐτός +ὁ +Ἰησοῦς +λέγω +τίς +σύ +δοκέω +περί +ὁ +Χριστός +τίς +υἱός +εἰμί +λέγω +αὐτός +ὁ +Δαυίδ +λέγω +αὐτός +οὖν +πῶς +Δαυίδ +ἐν +πνεῦμα +καλέω +αὐτός +κύριος +λέγω +λέγω +κύριος +ὁ +κύριος +ἐγώ +κάθημαι +ἐκ +δεξιός +ἐγώ +ἕως +ἄν +τίθημι +ὁ +ἐχθρός +σύ +ὑποκάτω +ὁ +πούς +σύ +οὖν +εἰ +Δαυίδ +καλέω +αὐτός +κύριος +πῶς +υἱός +αὐτός +εἰμί +καί +οὐδείς +δύναμαι +ἀποκρίνομαι +αὐτός +λόγος +οὐδέ +τολμάω +τὶς +ἀπό +ἐκεῖνος +ὁ +ἡμέρα +ἐπερωτάω +αὐτός +οὐκέτι +τότε +ὁ +Ἰησοῦς +λαλέω +ὁ +ὄχλος +καί +ὁ +μαθητής +αὐτός +λέγω +ἐπί +ὁ +Μωϋσῆς +καθέδρα +καθίζω +ὁ +γραμματεύς +καί +ὁ +Φαρισαῖος +οὖν +πᾶς +ἐάν +ὅσος +λέγω +σύ +ποιέω +καί +τηρέω +δέ +κατά +ὁ +ἔργον +αὐτός +μή +ποιέω +γάρ +λέγω +καί +οὐ +ποιέω +δέ +δεσμεύω +φορτίον +βαρύς +καί +ἐπιτίθημι +ἐπί +ὁ +ὦμος +ὁ +ἄνθρωπος +δέ +αὐτός +ὁ +δάκτυλος +αὐτός +οὐ +θέλω +κινέω +αὐτός +δέ +πᾶς +ὁ +ἔργον +αὐτός +ποιέω +πρός +ὁ +θεάομαι +ὁ +ἄνθρωπος +γάρ +πλατύνω +ὁ +φυλακτήριον +αὐτός +καί +μεγαλύνω +ὁ +κράσπεδον +δέ +φιλέω +ὁ +πρωτοκλισία +ἐν +ὁ +δεῖπνον +καί +ὁ +πρωτοκαθεδρία +ἐν +ὁ +συναγωγή +καί +ὁ +ἀσπασμός +ἐν +ὁ +ἀγορά +καί +καλέω +ὑπό +ὁ +ἄνθρωπος +ῥαββί +δέ +σύ +μή +καλέω +ῥαββί +γάρ +εἷς +εἰμί +σύ +ὁ +διδάσκαλος +δέ +πᾶς +σύ +ἀδελφός +εἰμί +καί +πατήρ +σύ +μή +καλέω +ἐπί +ὁ +γῆ +γάρ +εἷς +εἰμί +σύ +ὁ +πατήρ +ὁ +οὐράνιος +μηδέ +καλέω +καθηγητής +ὅτι +καθηγητής +σύ +εἰμί +εἷς +ὁ +Χριστός +δέ +ὁ +μέγας +σύ +εἰμί +σύ +διάκονος +δέ +ὅστις +ὑψόω +ἑαυτοῦ +ταπεινόω +καί +ὅστις +ταπεινόω +ἑαυτοῦ +ὑψόω +δέ +οὐαί +σύ +γραμματεύς +καί +Φαρισαῖος +ὑποκριτής +ὅτι +κλείω +ὁ +βασιλεία +ὁ +οὐρανός +ἔμπροσθεν +ὁ +ἄνθρωπος +γάρ +σύ +οὐ +εἰσέρχομαι +οὐδέ +ὁ +εἰσέρχομαι +εἰσέρχομαι +ἀφίημι +οὐαί +σύ +γραμματεύς +καί +Φαρισαῖος +ὑποκριτής +ὅτι +περιάγω +ὁ +θάλασσα +καί +ὁ +ξηρός +ποιέω +εἷς +προσήλυτος +καί +ὅταν +γίνομαι +ποιέω +αὐτός +υἱός +γέεννα +διπλοῦς +σύ +οὐαί +σύ +ὁδηγός +τυφλός +ὁ +λέγω +ἄν +ὅς +ὀμνύω +ἐν +ὁ +ναός +οὐδείς +εἰμί +δέ +ἄν +ὅς +ὀμνύω +ἐν +ὁ +χρυσός +ὁ +ναός +ὀφείλω +μωρός +καί +τυφλός +γάρ +τίς +μέγας +εἰμί +ὁ +χρυσός +ἤ +ὁ +ναός +ὁ +ἁγιάζω +ὁ +χρυσός +καί +ἄν +ὅς +ὀμνύω +ἐν +ὁ +θυσιαστήριον +οὐδείς +εἰμί +δέ +ἄν +ὅς +ὀμνύω +ἐν +ὁ +δῶρον +ὁ +ἐπάνω +αὐτός +ὀφείλω +τυφλός +γάρ +τίς +μέγας +ὁ +δῶρον +ἤ +ὁ +θυσιαστήριον +ὁ +ἁγιάζω +ὁ +δῶρον +οὖν +ὁ +ὀμνύω +ἐν +ὁ +θυσιαστήριον +ὀμνύω +ἐν +αὐτός +καί +ἐν +πᾶς +ὁ +ἐπάνω +αὐτός +καί +ὁ +ὀμνύω +ἐν +ὁ +ναός +ὀμνύω +ἐν +αὐτός +καί +ἐν +ὁ +κατοικέω +αὐτός +καί +ὁ +ὀμνύω +ἐν +ὁ +οὐρανός +ὀμνύω +ἐν +ὁ +θρόνος +ὁ +θεός +καί +ἐν +ὁ +κάθημαι +ἐπάνω +αὐτός +οὐαί +σύ +γραμματεύς +καί +Φαρισαῖος +ὑποκριτής +ὅτι +ἀποδεκατόω +ὁ +ἡδύοσμον +καί +ὁ +ἄνηθον +καί +ὁ +κύμινον +καί +ἀφίημι +ὁ +βαρύς +ὁ +νόμος +ὁ +κρίσις +καί +ὁ +ἔλεος +καί +ὁ +πίστις +δέ +δεῖ +οὗτος +ποιέω +κἀκεῖνος +μή +ἀφίημι +ὁδηγός +τυφλός +ὁ +διϋλίζω +ὁ +κώνωψ +δέ +ὁ +κάμηλος +καταπίνω +οὐαί +σύ +γραμματεύς +καί +Φαρισαῖος +ὑποκριτής +ὅτι +καθαρίζω +ὁ +ἔξωθεν +ὁ +ποτήριον +καί +ὁ +παροψίς +δέ +ἔσωθεν +γέμω +ἐκ +ἁρπαγή +καί +ἀκρασία +Φαρισαῖος +τυφλός +καθαρίζω +πρῶτος +ὁ +ἐντός +ὁ +ποτήριον +ἵνα +γίνομαι +καί +ὁ +ἐκτός +αὐτός +καθαρός +οὐαί +σύ +γραμματεύς +καί +Φαρισαῖος +ὑποκριτής +ὅτι +παρομοιάζω +τάφος +κονιάω +μέν +ὅστις +ἔξωθεν +φαίνω +ὡραῖος +δέ +ἔσωθεν +γέμω +ὀστέον +νεκρός +καί +πᾶς +ἀκαθαρσία +οὕτω +καί +σύ +μέν +ἔξωθεν +φαίνω +ὁ +ἄνθρωπος +δίκαιος +δέ +ἔσωθεν +εἰμί +μεστός +ὑπόκρισις +καί +ἀνομία +οὐαί +σύ +γραμματεύς +καί +Φαρισαῖος +ὑποκριτής +ὅτι +οἰκοδομέω +ὁ +τάφος +ὁ +προφήτης +καί +κοσμέω +ὁ +μνημεῖον +ὁ +δίκαιος +καί +λέγω +εἰ +εἰμί +ἐν +ὁ +ἡμέρα +ὁ +πατήρ +ἐγώ +ἄν +οὐ +εἰμί +αὐτός +κοινωνός +ἐν +ὁ +αἷμα +ὁ +προφήτης +ὥστε +μαρτυρέω +ἑαυτοῦ +ὅτι +εἰμί +υἱός +ὁ +φονεύω +ὁ +προφήτης +καί +σύ +πληρόω +ὁ +μέτρον +ὁ +πατήρ +σύ +ὄφις +γέννημα +ἔχιδνα +πῶς +φεύγω +ἀπό +ὁ +κρίσις +ὁ +γέεννα +ὁράω +διά +οὗτος +ἐγώ +ἀποστέλλω +πρός +σύ +προφήτης +καί +σοφός +καί +γραμματεύς +ἐκ +αὐτός +ἀποκτείνω +καί +σταυρόω +καί +ἐκ +αὐτός +μαστιγόω +ἐν +ὁ +συναγωγή +σύ +καί +διώκω +ἀπό +πόλις +εἰς +πόλις +ὅπως +ἔρχομαι +ἐπί +σύ +πᾶς +αἷμα +δίκαιος +ἐκχέω +ἐπί +ὁ +γῆ +ἀπό +ὁ +αἷμα +Ἅβελ +ὁ +δίκαιος +ἕως +ὁ +αἷμα +Ζαχαρίας +υἱός +Βαραχίας +ὅς +φονεύω +μεταξύ +ὁ +ναός +καί +ὁ +θυσιαστήριον +ἀμήν +λέγω +σύ +ἥκω +οὗτος +πᾶς +ἐπί +ὁ +γενεά +οὗτος +Ἱεροσόλυμα +Ἱεροσόλυμα +ὁ +ἀποκτείνω +ὁ +προφήτης +καί +λιθοβολέω +ὁ +ἀποστέλλω +πρός +αὐτός +ποσάκις +θέλω +ἐπισυνάγω +ὁ +τέκνον +σύ +ὅς +τρόπος +ὄρνις +ἐπισυνάγω +ὁ +νοσσίον +αὐτός +ὑπό +ὁ +πτέρυξ +καί +οὐ +θέλω +ὁράω +ἀφίημι +σύ +ὁ +οἶκος +σύ +γάρ +λέγω +σύ +οὐ +μή +ἐγώ +ὁράω +ἀπό +ἄρτι +ἕως +ἄν +λέγω +εὐλογέω +ὁ +ἔρχομαι +ἐν +ὄνομα +κύριος +καί +ὁ +Ἰησοῦς +ἐξέρχομαι +ἀπό +ὁ +ἱερός +πορεύομαι +καί +προσέρχομαι +ὁ +μαθητής +αὐτός +ἐπιδείκνυμι +αὐτός +ὁ +οἰκοδομή +ὁ +ἱερός +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +οὐ +βλέπω +οὗτος +πᾶς +ἀμήν +λέγω +σύ +οὐ +μή +ἀφίημι +ὧδε +ἐπί +λίθος +λίθος +ὅς +οὐ +καταλύω +δέ +κάθημαι +αὐτός +ἐπί +ὁ +ὄρος +ὁ +ἐλαία +προσέρχομαι +αὐτός +ὁ +μαθητής +κατά +ἴδιος +λέγω +λέγω +ἐγώ +πότε +οὗτος +εἰμί +καί +τίς +ὁ +σημεῖον +ὁ +σός +παρουσία +καί +συντέλεια +ὁ +αἰών +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +βλέπω +μή +τὶς +σύ +πλανάω +γάρ +πολύς +ἔρχομαι +ἐπί +ὁ +ὄνομα +ἐγώ +λέγω +ἐγώ +εἰμί +ὁ +Χριστός +καί +πολύς +πλανάω +δέ +μέλλω +ἀκούω +πόλεμος +καί +ἀκοή +πόλεμος +ὁράω +μή +θροέω +γάρ +δεῖ +γίνομαι +ἀλλά +οὔπω +εἰμί +ὁ +τέλος +γάρ +ἐγείρω +ἔθνος +ἐπί +ἔθνος +καί +βασιλεία +ἐπί +βασιλεία +καί +εἰμί +λιμός +καί +σεισμός +κατά +τόπος +δέ +πᾶς +οὗτος +ἀρχή +ὠδίν +τότε +παραδίδωμι +σύ +εἰς +θλῖψις +καί +ἀποκτείνω +σύ +καί +εἰμί +μισέω +ὑπό +πᾶς +ὁ +ἔθνος +διά +ὁ +ὄνομα +ἐγώ +καί +τότε +σκανδαλίζω +πολύς +καί +ἀλλήλων +παραδίδωμι +καί +μισέω +ἀλλήλων +καί +πολύς +ψευδοπροφήτης +ἐγείρω +καί +πλανάω +πολύς +καί +διά +ὁ +πληθύνω +ὁ +ἀνομία +ψύχω +ὁ +ἀγάπη +ὁ +πολύς +δέ +ὁ +ὑπομένω +εἰς +τέλος +οὗτος +σῴζω +καί +κηρύσσω +οὗτος +ὁ +εὐαγγέλιον +ὁ +βασιλεία +ἐν +ὅλος +ὁ +οἰκουμένη +εἰς +μαρτύριον +πᾶς +ὁ +ἔθνος +καί +τότε +ἥκω +ὁ +τέλος +οὖν +ὅταν +ὁράω +ὁ +βδέλυγμα +ὁ +ἐρήμωσις +ὁ +εἶπον +διά +Δανιήλ +ὁ +προφήτης +ἵστημι +ἐν +τόπος +ἅγιος +ὁ +ἀναγινώσκω +νοέω +τότε +ὁ +ἐν +ὁ +Ἰουδαία +φεύγω +εἰς +ὁ +ὄρος +ὁ +ἐπί +ὁ +δῶμα +μή +καταβαίνω +αἴρω +ὁ +ἐκ +ὁ +οἰκία +αὐτός +καί +ὁ +ἐν +ὁ +ἀγρός +μή +ἐπιστρέφω +ὀπίσω +αἴρω +ὁ +ἱμάτιον +αὐτός +δέ +οὐαί +ὁ +ἐν +γαστήρ +ἔχω +καί +ὁ +θηλάζω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +δέ +προσεύχομαι +ἵνα +μή +γίνομαι +ὁ +φυγή +σύ +χειμών +μηδέ +σάββατον +γάρ +εἰμί +τότε +θλῖψις +μέγας +οἷος +οὐ +γίνομαι +ἀπό +ἀρχή +κόσμος +ἕως +ὁ +νῦν +οὐδέ +οὐ +μή +γίνομαι +καί +εἰ +μή +κολοβόω +ὁ +ἡμέρα +ἐκεῖνος +ἄν +οὐ +σῴζω +πᾶς +σάρξ +δέ +διά +ὁ +ἐκλεκτός +κολοβόω +ὁ +ἡμέρα +ἐκεῖνος +ἐάν +τότε +τὶς +σύ +λέγω +ὁράω +ὧδε +ὁ +Χριστός +ἤ +ὧδε +μή +πιστεύω +γάρ +ἐγείρω +ψευδόχριστος +καί +ψευδοπροφήτης +καί +δίδωμι +σημεῖον +μέγας +καί +τέρας +ὥστε +πλανάω +εἰ +δυνατός +καί +ὁ +ἐκλεκτός +ὁράω +προλέγω +σύ +οὖν +ἐάν +λέγω +σύ +ὁράω +ἐν +ὁ +ἔρημος +εἰμί +μή +ἐξέρχομαι +ὁράω +ἐν +ὁ +ταμεῖον +μή +πιστεύω +γάρ +ὥσπερ +ὁ +ἀστραπή +ἐξέρχομαι +ἀπό +ἀνατολή +καί +φαίνω +ἕως +δυσμή +οὕτω +εἰμί +ὁ +παρουσία +ὁ +υἱός +ὁ +ἄνθρωπος +ἐάν +ὅπου +εἰμί +ὁ +πτῶμα +ἐκεῖ +συνάγω +ὁ +ἀετός +δέ +εὐθέως +μετά +ὁ +θλῖψις +ὁ +ἡμέρα +ἐκεῖνος +ὁ +ἥλιος +σκοτίζω +καί +ὁ +σελήνη +οὐ +δίδωμι +ὁ +φέγγος +αὐτός +καί +ὁ +ἀστήρ +πίπτω +ἀπό +ὁ +οὐρανός +καί +ὁ +δύναμις +ὁ +οὐρανός +σαλεύω +καί +τότε +φαίνω +ὁ +σημεῖον +ὁ +υἱός +ὁ +ἄνθρωπος +ἐν +οὐρανός +καί +τότε +κόπτω +πᾶς +ὁ +φυλή +ὁ +γῆ +καί +ὁράω +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἐπί +ὁ +νεφέλη +ὁ +οὐρανός +μετά +δύναμις +καί +δόξα +πολύς +καί +ἀποστέλλω +ὁ +ἄγγελος +αὐτός +μετά +σάλπιγξ +μέγας +καί +ἐπισυνάγω +ὁ +ἐκλεκτός +αὐτός +ἐκ +ὁ +τέσσαρες +ἄνεμος +ἀπό +ἄκρον +οὐρανός +ἕως +ἄκρον +αὐτός +δέ +ἀπό +ὁ +συκῆ +μανθάνω +ὁ +παραβολή +ὅταν +ἤδη +ὁ +κλάδος +αὐτός +γίνομαι +ἁπαλός +καί +ὁ +φύλλον +ἐκφύω +γινώσκω +ὅτι +ἐγγύς +ὁ +θέρος +οὕτω +καί +σύ +ὅταν +ὁράω +πᾶς +οὗτος +γινώσκω +ὅτι +ἐγγύς +εἰμί +ἐπί +θύρα +ἀμήν +λέγω +σύ +ὅτι +οὐ +μή +παρέρχομαι +ὁ +γενεά +οὗτος +ἕως +ἄν +πᾶς +οὗτος +γίνομαι +ὁ +οὐρανός +καί +ὁ +γῆ +παρέρχομαι +δέ +ὁ +λόγος +ἐγώ +οὐ +μή +παρέρχομαι +δέ +περί +ὁ +ἡμέρα +καί +ὥρα +ἐκεῖνος +οὐδείς +οἶδα +οὐδέ +ὁ +ἄγγελος +ὁ +οὐρανός +οὐδέ +ὁ +υἱός +εἰ +μή +ὁ +πατήρ +μόνος +γάρ +ὥσπερ +ὁ +ἡμέρα +ὁ +Νῶε +οὕτω +εἰμί +ὁ +παρουσία +ὁ +υἱός +ὁ +ἄνθρωπος +γάρ +ὡς +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ὁ +πρό +ὁ +κατακλυσμός +εἰμί +τρώγω +καί +πίνω +γαμέω +καί +γαμίζω +ἄχρι +ὅς +ἡμέρα +εἰσέρχομαι +Νῶε +εἰς +ὁ +κιβωτός +καί +οὐ +γινώσκω +ἕως +ἔρχομαι +ὁ +κατακλυσμός +καί +αἴρω +ἅπας +οὕτω +εἰμί +καί +ὁ +παρουσία +ὁ +υἱός +ὁ +ἄνθρωπος +τότε +εἰμί +δύο +ἐν +ὁ +ἀγρός +εἷς +παραλαμβάνω +καί +εἷς +ἀφίημι +δύο +ἀλήθω +ἐν +ὁ +μύλος +εἷς +παραλαμβάνω +καί +εἷς +ἀφίημι +οὖν +γρηγορέω +ὅτι +οὐ +οἶδα +ποῖος +ἡμέρα +ὁ +κύριος +σύ +ἔρχομαι +δέ +ἐκεῖνος +γινώσκω +ὅτι +εἰ +οἶδα +ὁ +οἰκοδεσπότης +ποῖος +φυλακή +ὁ +κλέπτης +ἔρχομαι +ἄν +γρηγορέω +καί +ἄν +οὐ +ἐάω +διορύσσω +ὁ +οἰκία +αὐτός +διά +οὗτος +καί +σύ +γίνομαι +ἕτοιμος +ὅτι +ὅς +οὐ +δοκέω +ὥρα +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἆρα +τίς +εἰμί +ὁ +πιστός +καί +φρόνιμος +δοῦλος (II) +ὅς +καθίστημι +ὁ +κύριος +ἐπί +ὁ +οἰκετεία +αὐτός +ὁ +δίδωμι +αὐτός +ὁ +τροφή +ἐν +καιρός +μακάριος +ὁ +δοῦλος (II) +ἐκεῖνος +ὅς +οὕτω +ποιέω +ἔρχομαι +ὁ +κύριος +αὐτός +εὑρίσκω +ἀμήν +λέγω +σύ +ὅτι +ἐπί +πᾶς +ὁ +ὑπάρχω +αὐτός +καθίστημι +αὐτός +δέ +ἐάν +λέγω +ὁ +κακός +δοῦλος (II) +ἐκεῖνος +ἐν +ὁ +καρδία +αὐτός +χρονίζω +ἐγώ +ὁ +κύριος +καί +ἄρχω +τύπτω +ὁ +σύνδουλος +αὐτός +δέ +ἐσθίω +καί +πίνω +μετά +ὁ +μεθύω +ἥκω +ὁ +κύριος +ὁ +δοῦλος (II) +ἐκεῖνος +ἐν +ἡμέρα +ὅς +οὐ +προσδοκάω +καί +ἐν +ὥρα +ὅς +οὐ +γινώσκω +καί +διχοτομέω +αὐτός +καί +ὁ +μέρος +αὐτός +μετά +ὁ +ὑποκριτής +τίθημι +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +τότε +ὁμοιόω +ὁ +βασιλεία +ὁ +οὐρανός +δέκα +παρθένος +ὅστις +λαμβάνω +ὁ +λαμπάς +ἑαυτοῦ +ἐξέρχομαι +εἰς +ὑπάντησις +ὁ +νυμφίος +δέ +πέντε +ἐκ +αὐτός +εἰμί +μωρός +καί +πέντε +φρόνιμος +γάρ +ὁ +μωρός +λαμβάνω +ὁ +λαμπάς +οὐ +λαμβάνω +μετά +ἑαυτοῦ +ἔλαιον +δέ +ὁ +φρόνιμος +λαμβάνω +ἔλαιον +ἐν +ὁ +ἀγγεῖον +μετά +ὁ +λαμπάς +ἑαυτοῦ +δέ +χρονίζω +ὁ +νυμφίος +νυστάζω +πᾶς +καί +καθεύδω +δέ +μέσος +νύξ +κραυγή +γίνομαι +ὁράω +ὁ +νυμφίος +ἐξέρχομαι +εἰς +ἀπάντησις +τότε +ἐγείρω +πᾶς +ὁ +παρθένος +ἐκεῖνος +καί +κοσμέω +ὁ +λαμπάς +ἑαυτοῦ +δέ +ὁ +μωρός +ὁ +φρόνιμος +λέγω +δίδωμι +ἐγώ +ἐκ +ὁ +ἔλαιον +σύ +ὅτι +ὁ +λαμπάς +ἐγώ +σβέννυμι +δέ +ἀποκρίνομαι +ὁ +φρόνιμος +λέγω +μή +ποτέ +οὐ +μή +ἀρκέω +ἐγώ +καί +σύ +πορεύομαι +μᾶλλον +πρός +ὁ +πωλέω +καί +ἀγοράζω +ἑαυτοῦ +δέ +ἀπέρχομαι +αὐτός +ἀγοράζω +ἔρχομαι +ὁ +νυμφίος +καί +ὁ +ἕτοιμος +εἰσέρχομαι +μετά +αὐτός +εἰς +ὁ +γάμος +καί +κλείω +ὁ +θύρα +δέ +ὕστερος +ἔρχομαι +καί +ὁ +λοιπός +παρθένος +λέγω +κύριος +κύριος +ἀνοίγω +ἐγώ +δέ +ὁ +ἀποκρίνομαι +λέγω +ἀμήν +λέγω +σύ +οὐ +οἶδα +σύ +οὖν +γρηγορέω +ὅτι +οὐ +οἶδα +ὁ +ἡμέρα +οὐδέ +ὁ +ὥρα +γάρ +ὥσπερ +ἄνθρωπος +ἀποδημέω +καλέω +ὁ +ἴδιος +δοῦλος (II) +καί +παραδίδωμι +αὐτός +ὁ +ὑπάρχω +αὐτός +καί +μέν +ὅς +δίδωμι +πέντε +τάλαντον +δέ +ὅς +δύο +δέ +ὅς +εἷς +ἕκαστος +κατά +ὁ +ἴδιος +δύναμις +καί +ἀποδημέω +εὐθέως +πορεύομαι +ὁ +ὁ +πέντε +τάλαντον +λαμβάνω +ἐργάζομαι +ἐν +αὐτός +καί +κερδαίνω +ἄλλος +πέντε +ὡσαύτως +ὁ +ὁ +δύο +κερδαίνω +ἄλλος +δύο +δέ +ὁ +ὁ +εἷς +λαμβάνω +ἀπέρχομαι +ὀρύσσω +γῆ +καί +κρύπτω +ὁ +ἀργύριον +ὁ +κύριος +αὐτός +δέ +μετά +πολύς +χρόνος +ἔρχομαι +ὁ +κύριος +ὁ +δοῦλος (II) +ἐκεῖνος +καί +συναίρω +λόγος +μετά +αὐτός +καί +προσέρχομαι +ὁ +ὁ +πέντε +τάλαντον +λαμβάνω +προσφέρω +ἄλλος +πέντε +τάλαντον +λέγω +κύριος +πέντε +τάλαντον +ἐγώ +παραδίδωμι +ὁράω +ἄλλος +πέντε +τάλαντον +κερδαίνω +φημί +αὐτός +ὁ +κύριος +αὐτός +εὖ +δοῦλος (II) +ἀγαθός +καί +πιστός +ἐπί +ὀλίγος +εἰμί +πιστός +ἐπί +πολύς +σύ +καθίστημι +εἰσέρχομαι +εἰς +ὁ +χαρά +ὁ +κύριος +σύ +προσέρχομαι +καί +ὁ +ὁ +δύο +τάλαντον +λέγω +κύριος +δύο +τάλαντον +ἐγώ +παραδίδωμι +ὁράω +ἄλλος +δύο +τάλαντον +κερδαίνω +φημί +αὐτός +ὁ +κύριος +αὐτός +εὖ +δοῦλος (II) +ἀγαθός +καί +πιστός +ἐπί +ὀλίγος +εἰμί +πιστός +ἐπί +πολύς +σύ +καθίστημι +εἰσέρχομαι +εἰς +ὁ +χαρά +ὁ +κύριος +σύ +δέ +προσέρχομαι +καί +ὁ +ὁ +εἷς +τάλαντον +λαμβάνω +λέγω +κύριος +γινώσκω +σύ +ὅτι +εἰμί +σκληρός +ἄνθρωπος +θερίζω +ὅπου +οὐ +σπείρω +καί +συνάγω +ὅθεν +οὐ +διασκορπίζω +καί +φοβέω +ἀπέρχομαι +κρύπτω +ὁ +τάλαντον +σύ +ἐν +ὁ +γῆ +ὁράω +ἔχω +ὁ +σός +δέ +ἀποκρίνομαι +ὁ +κύριος +αὐτός +λέγω +αὐτός +δοῦλος (II) +πονηρός +καί +ὀκνηρός +οἶδα +ὅτι +θερίζω +ὅπου +οὐ +σπείρω +καί +συνάγω +ὅθεν +οὐ +διασκορπίζω +οὖν +δεῖ +σύ +βάλλω +ὁ +ἀργύριον +ἐγώ +ὁ +τραπεζίτης +καί +ἄν +ἔρχομαι +ἐγώ +κομίζω +ὁ +ἐμός +σύν +τόκος +οὖν +αἴρω +ἀπό +αὐτός +ὁ +τάλαντον +καί +δίδωμι +ὁ +ἔχω +ὁ +δέκα +τάλαντον +γάρ +ὁ +ἔχω +πᾶς +δίδωμι +καί +περισσεύω +δέ +ὁ +μή +ἔχω +καί +ὅς +ἔχω +αἴρω +ἀπό +αὐτός +καί +ὁ +ἀχρεῖος +δοῦλος (II) +ἐκβάλλω +εἰς +ὁ +σκότος +ὁ +ἐξώτερος +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +δέ +ὅταν +ἔρχομαι +ὁ +υἱός +ὁ +ἄνθρωπος +ἐν +ὁ +δόξα +αὐτός +καί +πᾶς +ὁ +ἄγγελος +μετά +αὐτός +τότε +καθίζω +ἐπί +θρόνος +δόξα +αὐτός +καί +συνάγω +ἔμπροσθεν +αὐτός +πᾶς +ὁ +ἔθνος +καί +ἀφορίζω +αὐτός +ἀπό +ἀλλήλων +ὥσπερ +ὁ +ποιμήν +ἀφορίζω +ὁ +πρόβατον +ἀπό +ὁ +ἔριφος +καί +μέν +ἵστημι +ὁ +πρόβατον +ἐκ +δεξιός +αὐτός +δέ +ὁ +ἐρίφιον +ἐκ +εὐώνυμος +τότε +εἶπον +ὁ +βασιλεύς +ὁ +ἐκ +δεξιός +αὐτός +δεῦτε +ὁ +εὐλογέω +ὁ +πατήρ +ἐγώ +κληρονομέω +ὁ +ἑτοιμάζω +σύ +ἀπό +καταβολή +κόσμος +βασιλεία +γάρ +πεινάω +καί +δίδωμι +ἐγώ +ἐσθίω +διψάω +καί +ποτίζω +ἐγώ +ξένος +εἰμί +καί +συνάγω +ἐγώ +γυμνός +καί +περιβάλλω +ἐγώ +ἀσθενέω +καί +ἐπισκέπτομαι +ἐγώ +ἐν +φυλακή +εἰμί +καί +ἔρχομαι +πρός +ἐγώ +τότε +ἀποκρίνομαι +αὐτός +ὁ +δίκαιος +λέγω +κύριος +πότε +ὁράω +σύ +πεινάω +καί +τρέφω +ἤ +διψάω +καί +ποτίζω +δέ +πότε +ὁράω +σύ +ξένος +καί +συνάγω +ἤ +γυμνός +καί +περιβάλλω +δέ +πότε +ὁράω +σύ +ἀσθενέω +ἤ +ἐν +φυλακή +καί +ἔρχομαι +πρός +σύ +καί +ἀποκρίνομαι +ὁ +βασιλεύς +εἶπον +αὐτός +ἀμήν +λέγω +σύ +ἐπί +ὅσος +ποιέω +εἷς +οὗτος +ὁ +ἀδελφός +ἐγώ +ὁ +ἐλάχιστος +ἐγώ +ποιέω +τότε +εἶπον +καί +ὁ +ἐκ +εὐώνυμος +καταράομαι +πορεύομαι +ἀπό +ἐγώ +εἰς +ὁ +πῦρ +ὁ +αἰώνιος +ὁ +ἑτοιμάζω +ὁ +διάβολος +καί +ὁ +ἄγγελος +αὐτός +γάρ +πεινάω +καί +οὐ +δίδωμι +ἐγώ +ἐσθίω +διψάω +καί +οὐ +ποτίζω +ἐγώ +ξένος +εἰμί +καί +οὐ +συνάγω +ἐγώ +γυμνός +καί +οὐ +περιβάλλω +ἐγώ +ἀσθενής +καί +ἐν +φυλακή +καί +οὐ +ἐπισκέπτομαι +ἐγώ +τότε +ἀποκρίνομαι +καί +αὐτός +λέγω +κύριος +πότε +ὁράω +σύ +πεινάω +ἤ +διψάω +ἤ +ξένος +ἤ +γυμνός +ἤ +ἀσθενής +ἤ +ἐν +φυλακή +καί +οὐ +διακονέω +σύ +τότε +ἀποκρίνομαι +αὐτός +λέγω +ἀμήν +λέγω +σύ +ἐπί +ὅσος +οὐ +ποιέω +εἷς +οὗτος +ὁ +ἐλάχιστος +οὐδέ +ἐγώ +ποιέω +καί +ἀπέρχομαι +οὗτος +εἰς +κόλασις +αἰώνιος +δέ +ὁ +δίκαιος +εἰς +ζωή +αἰώνιος +καί +γίνομαι +ὅτε +τελέω +ὁ +Ἰησοῦς +πᾶς +ὁ +λόγος +οὗτος +λέγω +ὁ +μαθητής +αὐτός +οἶδα +ὅτι +μετά +δύο +ἡμέρα +ὁ +πάσχα +γίνομαι +καί +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +εἰς +ὁ +σταυρόω +τότε +συνάγω +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +ὁ +λαός +εἰς +ὁ +αὐλή +ὁ +ἀρχιερεύς +ὁ +λέγω +Καϊάφας +καί +συμβουλεύω +ἵνα +ὁ +Ἰησοῦς +δόλος +κρατέω +καί +ἀποκτείνω +δέ +λέγω +μή +ἐν +ὁ +ἑορτή +ἵνα +μή +θόρυβος +γίνομαι +ἐν +ὁ +λαός +δέ +ὁ +Ἰησοῦς +γίνομαι +ἐν +Βηθανία +ἐν +οἰκία +Σίμων +ὁ +λεπρός +προσέρχομαι +αὐτός +γυνή +ἔχω +ἀλάβαστρος +μύρον +βαρύτιμος +καί +καταχέω +ἐπί +ὁ +κεφαλή +αὐτός +ἀνάκειμαι +δέ +ὁράω +ὁ +μαθητής +ἀγανακτέω +λέγω +εἰς +τίς +ὁ +ἀπώλεια +οὗτος +γάρ +δύναμαι +οὗτος +πιπράσκω +πολύς +καί +δίδωμι +πτωχός +δέ +γινώσκω +ὁ +Ἰησοῦς +λέγω +αὐτός +τίς +κόπος +παρέχω +ὁ +γυνή +γάρ +ἔργον +καλός +ἐργάζομαι +εἰς +ἐγώ +γάρ +πάντοτε +ὁ +πτωχός +ἔχω +μετά +ἑαυτοῦ +δέ +ἐγώ +οὐ +πάντοτε +ἔχω +γάρ +οὗτος +βάλλω +ὁ +μύρον +οὗτος +ἐπί +ὁ +σῶμα +ἐγώ +πρός +ὁ +ἐνταφιάζω +ἐγώ +ποιέω +ἀμήν +λέγω +σύ +ἐάν +ὅπου +κηρύσσω +ὁ +εὐαγγέλιον +οὗτος +ἐν +ὅλος +ὁ +κόσμος +λαλέω +καί +ὅς +ποιέω +οὗτος +εἰς +μνημόσυνον +αὐτός +τότε +εἷς +ὁ +δώδεκα +ὁ +λέγω +Ἰούδας +Ἰσκαριώθ +πορεύομαι +πρός +ὁ +ἀρχιερεύς +λέγω +θέλω +τίς +ἐγώ +δίδωμι +κἀγώ +σύ +παραδίδωμι +αὐτός +δέ +ὁ +ἵστημι +αὐτός +τριάκοντα +ἀργύριον +καί +ἀπό +τότε +ζητέω +εὐκαιρία +ἵνα +αὐτός +παραδίδωμι +δέ +ὁ +πρῶτος +ὁ +ἄζυμος +προσέρχομαι +ὁ +μαθητής +ὁ +Ἰησοῦς +λέγω +θέλω +ποῦ +ἑτοιμάζω +σύ +ἐσθίω +ὁ +πάσχα +δέ +ὁ +λέγω +ὑπάγω +εἰς +ὁ +πόλις +πρός +ὁ +δεῖνα +καί +λέγω +αὐτός +ὁ +διδάσκαλος +λέγω +ὁ +καιρός +ἐγώ +ἐγγύς +εἰμί +πρός +σύ +ποιέω +ὁ +πάσχα +μετά +ὁ +μαθητής +ἐγώ +καί +ποιέω +ὁ +μαθητής +ὡς +συντάσσω +αὐτός +ὁ +Ἰησοῦς +καί +ἑτοιμάζω +ὁ +πάσχα +δέ +ὄψιος +γίνομαι +ἀνάκειμαι +μετά +ὁ +δώδεκα +μαθητής +καί +ἐσθίω +αὐτός +λέγω +ἀμήν +λέγω +σύ +ὅτι +εἷς +ἐκ +σύ +παραδίδωμι +ἐγώ +καί +λυπέω +σφόδρα +ἄρχω +λέγω +αὐτός +εἷς +ἕκαστος +μήτι +ἐγώ +εἰμί +κύριος +δέ +ὁ +ἀποκρίνομαι +λέγω +ὁ +ἐμβάπτω +μετά +ἐγώ +ὁ +χείρ +ἐν +ὁ +τρύβλιον +οὗτος +ἐγώ +παραδίδωμι +μέν +ὁ +υἱός +ὁ +ἄνθρωπος +ὑπάγω +καθώς +γράφω +περί +αὐτός +δέ +οὐαί +ὁ +ἄνθρωπος +ἐκεῖνος +διά +ὅς +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +καλός +εἰμί +αὐτός +εἰ +οὐ +γεννάω +ὁ +ἄνθρωπος +ἐκεῖνος +δέ +ἀποκρίνομαι +Ἰούδας +ὁ +παραδίδωμι +αὐτός +λέγω +μήτι +ἐγώ +εἰμί +ῥαββί +λέγω +αὐτός +σύ +λέγω +δέ +ἐσθίω +αὐτός +ὁ +Ἰησοῦς +λαμβάνω +ἄρτος +καί +εὐλογέω +κλάω +καί +δίδωμι +ὁ +μαθητής +λέγω +λαμβάνω +ἐσθίω +οὗτος +εἰμί +ὁ +σῶμα +ἐγώ +καί +λαμβάνω +ποτήριον +καί +εὐχαριστέω +δίδωμι +αὐτός +λέγω +πίνω +ἐκ +αὐτός +πᾶς +γάρ +οὗτος +εἰμί +ὁ +αἷμα +ἐγώ +ὁ +διαθήκη +ὁ +περί +πολύς +ἐκχέω +εἰς +ἄφεσις +ἁμαρτία +δέ +λέγω +σύ +οὐ +μή +πίνω +ἀπό +ἄρτι +ἐκ +οὗτος +ὁ +γέννημα +ὁ +ἄμπελος +ἕως +ὁ +ἡμέρα +ἐκεῖνος +ὅταν +αὐτός +πίνω +μετά +σύ +καινός +ἐν +ὁ +βασιλεία +ὁ +πατήρ +ἐγώ +καί +ὑμνέω +ἐξέρχομαι +εἰς +ὁ +ὄρος +ὁ +ἐλαία +τότε +λέγω +αὐτός +ὁ +Ἰησοῦς +πᾶς +σύ +σκανδαλίζω +ἐν +ἐγώ +ἐν +ὁ +νύξ +οὗτος +γάρ +γράφω +πατάσσω +ὁ +ποιμήν +καί +διασκορπίζω +ὁ +πρόβατον +ὁ +ποίμνη +δέ +μετά +ὁ +ἐγείρω +ἐγώ +προάγω +σύ +εἰς +ὁ +Γαλιλαία +δέ +ἀποκρίνομαι +ὁ +Πέτρος +λέγω +αὐτός +εἰ +πᾶς +σκανδαλίζω +ἐν +σύ +ἐγώ +οὐδέποτε +σκανδαλίζω +φημί +αὐτός +ὁ +Ἰησοῦς +ἀμήν +λέγω +σύ +ὅτι +ἐν +οὗτος +ὁ +νύξ +πρίν +ἀλέκτωρ +φωνέω +τρίς +ἀπαρνέομαι +ἐγώ +λέγω +αὐτός +ὁ +Πέτρος +κἄν +δεῖ +ἐγώ +σύν +σύ +ἀποθνῄσκω +οὐ +μή +σύ +ἀπαρνέομαι +ὁμοίως +καί +πᾶς +ὁ +μαθητής +λέγω +τότε +ἔρχομαι +μετά +αὐτός +ὁ +Ἰησοῦς +εἰς +χωρίον +λέγω +Γεθσημανί +καί +λέγω +ὁ +μαθητής +καθίζω +αὐτοῦ +ἕως +ὅς +ἀπέρχομαι +ἐκεῖ +προσεύχομαι +καί +παραλαμβάνω +ὁ +Πέτρος +καί +ὁ +δύο +υἱός +Ζεβεδαῖος +ἄρχω +λυπέω +καί +ἀδημονέω +τότε +λέγω +αὐτός +περίλυπος +εἰμί +ὁ +ψυχή +ἐγώ +ἕως +θάνατος +μένω +ὧδε +καί +γρηγορέω +μετά +ἐγώ +καί +προέρχομαι +μικρός +πίπτω +ἐπί +πρόσωπον +αὐτός +προσεύχομαι +καί +λέγω +πατήρ +ἐγώ +εἰ +δυνατός +εἰμί +παρέρχομαι +ἀπό +ἐγώ +ὁ +ποτήριον +οὗτος +πλήν +οὐ +ὡς +ἐγώ +θέλω +ἀλλά +ὡς +σύ +καί +ἔρχομαι +πρός +ὁ +μαθητής +καί +εὑρίσκω +αὐτός +καθεύδω +καί +λέγω +ὁ +Πέτρος +οὕτω +οὐ +ἰσχύω +εἷς +ὥρα +γρηγορέω +μετά +ἐγώ +γρηγορέω +καί +προσεύχομαι +ἵνα +μή +εἰσέρχομαι +εἰς +πειρασμός +μέν +ὁ +πνεῦμα +πρόθυμος +δέ +ὁ +σάρξ +ἀσθενής +πάλιν +ἐκ +δεύτερος +ἀπέρχομαι +προσεύχομαι +λέγω +πατήρ +ἐγώ +εἰ +οὐ +δύναμαι +οὗτος +παρέρχομαι +ἐάν +μή +αὐτός +πίνω +γίνομαι +ὁ +θέλημα +σύ +καί +ἔρχομαι +πάλιν +εὑρίσκω +αὐτός +καθεύδω +γάρ +εἰμί +βαρέω +αὐτός +ὁ +ὀφθαλμός +καί +ἀφίημι +αὐτός +πάλιν +ἀπέρχομαι +προσεύχομαι +ἐκ +τρίτος +ὁ +αὐτός +λόγος +λέγω +πάλιν +τότε +ἔρχομαι +πρός +ὁ +μαθητής +καί +λέγω +αὐτός +καθεύδω +λοιπός +καί +ἀναπαύω +ὁράω +ἐγγίζω +ὁ +ὥρα +καί +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +εἰς +χείρ +ἁμαρτωλός +ἐγείρω +ἄγω +ὁράω +ἐγγίζω +ὁ +παραδίδωμι +ἐγώ +καί +ἔτι +αὐτός +λαλέω +ὁράω +Ἰούδας +εἷς +ὁ +δώδεκα +ἔρχομαι +καί +μετά +αὐτός +ὄχλος +πολύς +μετά +μάχαιρα +καί +ξύλον +ἀπό +ὁ +ἀρχιερεύς +καί +πρεσβύτερος +ὁ +λαός +δέ +ὁ +παραδίδωμι +αὐτός +δίδωμι +αὐτός +σημεῖον +λέγω +ἄν +ὅς +φιλέω +αὐτός +εἰμί +κρατέω +αὐτός +καί +εὐθέως +προσέρχομαι +ὁ +Ἰησοῦς +λέγω +χαίρω +ῥαββί +καί +καταφιλέω +αὐτός +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ἑταῖρος +ἐπί +ὅς +πάρειμι +τότε +προσέρχομαι +ἐπιβάλλω +ὁ +χείρ +ἐπί +ὁ +Ἰησοῦς +καί +κρατέω +αὐτός +καί +ὁράω +εἷς +ὁ +μετά +Ἰησοῦς +ἐκτείνω +ὁ +χείρ +ἀποσπάω +ὁ +μάχαιρα +αὐτός +καί +πατάσσω +ὁ +δοῦλος (II) +ὁ +ἀρχιερεύς +ἀφαιρέω +αὐτός +ὁ +ὠτίον +τότε +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀποστρέφω +ὁ +μάχαιρα +σύ +εἰς +ὁ +τόπος +αὐτός +γάρ +πᾶς +ὁ +λαμβάνω +μάχαιρα +ἐν +μάχαιρα +ἀπόλλυμι +ἤ +δοκέω +ὅτι +οὐ +δύναμαι +παρακαλέω +ὁ +πατήρ +ἐγώ +καί +παρίστημι +ἐγώ +ἄρτι +πολύς +δώδεκα +λεγιών +ἄγγελος +οὖν +πῶς +πληρόω +ὁ +γραφή +ὅτι +οὕτω +δεῖ +γίνομαι +ἐν +ἐκεῖνος +ὁ +ὥρα +λέγω +ὁ +Ἰησοῦς +ὁ +ὄχλος +ὡς +ἐπί +λῃστής +ἐξέρχομαι +μετά +μάχαιρα +καί +ξύλον +συλλαμβάνω +ἐγώ +κατά +ἡμέρα +ἐν +ὁ +ἱερός +καθέζομαι +διδάσκω +καί +οὐ +κρατέω +ἐγώ +δέ +οὗτος +ὅλος +γίνομαι +ἵνα +πληρόω +ὁ +γραφή +ὁ +προφήτης +τότε +ὁ +μαθητής +πᾶς +ἀφίημι +αὐτός +φεύγω +δέ +ὁ +κρατέω +ὁ +Ἰησοῦς +ἀπάγω +πρός +Καϊάφας +ὁ +ἀρχιερεύς +ὅπου +ὁ +γραμματεύς +καί +ὁ +πρεσβύτερος +συνάγω +δέ +ὁ +Πέτρος +ἀκολουθέω +αὐτός +ἀπό +μακρόθεν +ἕως +ὁ +αὐλή +ὁ +ἀρχιερεύς +καί +εἰσέρχομαι +ἔσω +κάθημαι +μετά +ὁ +ὑπηρέτης +ὁράω +ὁ +τέλος +δέ +ὁ +ἀρχιερεύς +καί +ὁ +συνέδριον +ὅλος +ζητέω +ψευδομαρτυρία +κατά +ὁ +Ἰησοῦς +ὅπως +αὐτός +θανατόω +καί +οὐ +εὑρίσκω +πολύς +ψευδόμαρτυς +προσέρχομαι +δέ +ὕστερος +προσέρχομαι +δύο +λέγω +οὗτος +φημί +δύναμαι +καταλύω +ὁ +ναός +ὁ +θεός +καί +διά +τρεῖς +ἡμέρα +οἰκοδομέω +καί +ἀνίστημι +ὁ +ἀρχιερεύς +λέγω +αὐτός +οὐδείς +ἀποκρίνομαι +τίς +οὗτος +σύ +καταμαρτυρέω +δέ +ὁ +Ἰησοῦς +σιωπάω +καί +ὁ +ἀρχιερεύς +λέγω +αὐτός +ἐξορκίζω +σύ +κατά +ὁ +θεός +ὁ +ζάω +ἵνα +ἐγώ +λέγω +εἰ +σύ +εἰμί +ὁ +Χριστός +ὁ +υἱός +ὁ +θεός +λέγω +αὐτός +ὁ +Ἰησοῦς +σύ +λέγω +πλήν +λέγω +σύ +ἀπό +ἄρτι +ὁράω +ὁ +υἱός +ὁ +ἄνθρωπος +κάθημαι +ἐκ +δεξιός +ὁ +δύναμις +καί +ἔρχομαι +ἐπί +ὁ +νεφέλη +ὁ +οὐρανός +τότε +ὁ +ἀρχιερεύς +διαρρήγνυμι +ὁ +ἱμάτιον +αὐτός +λέγω +βλασφημέω +τίς +ἔτι +χρεία +μάρτυς +ἔχω +ὁράω +νῦν +ἀκούω +ὁ +βλασφημία +τίς +σύ +δοκέω +δέ +ὁ +ἀποκρίνομαι +λέγω +ἔνοχος +θάνατος +εἰμί +τότε +ἐμπτύω +εἰς +ὁ +πρόσωπον +αὐτός +καί +κολαφίζω +αὐτός +δέ +ὁ +ῥαπίζω +λέγω +προφητεύω +ἐγώ +Χριστός +τίς +εἰμί +ὁ +παίω +σύ +δέ +ὁ +Πέτρος +κάθημαι +ἔξω +ἐν +ὁ +αὐλή +καί +προσέρχομαι +αὐτός +εἷς +παιδίσκη +λέγω +καί +σύ +εἰμί +μετά +Ἰησοῦς +ὁ +Γαλιλαῖος +δέ +ὁ +ἀρνέομαι +ἔμπροσθεν +πᾶς +λέγω +οὐ +οἶδα +τίς +λέγω +δέ +ἐξέρχομαι +εἰς +ὁ +πυλών +ὁράω +αὐτός +ἄλλος +καί +λέγω +ὁ +ἐκεῖ +οὗτος +εἰμί +μετά +Ἰησοῦς +ὁ +Ναζωραῖος +καί +πάλιν +ἀρνέομαι +μετά +ὅρκος +ὅτι +οὐ +οἶδα +ὁ +ἄνθρωπος +δέ +μετά +μικρός +προσέρχομαι +ὁ +ἵστημι +λέγω +ὁ +Πέτρος +ἀληθῶς +καί +σύ +ἐκ +αὐτός +εἰμί +γάρ +καί +ὁ +λαλιά +σύ +δῆλος +σύ +ποιέω +τότε +ἄρχω +καταθεματίζω +καί +ὀμνύω +ὅτι +οὐ +οἶδα +ὁ +ἄνθρωπος +καί +εὐθύς +ἀλέκτωρ +φωνέω +καί +μιμνῄσκω +ὁ +Πέτρος +ὁ +ῥῆμα +Ἰησοῦς +εἶπον +ὅτι +πρίν +ἀλέκτωρ +φωνέω +τρίς +ἀπαρνέομαι +ἐγώ +καί +ἐξέρχομαι +ἔξω +κλαίω +πικρῶς +δέ +πρωΐα +γίνομαι +συμβούλιον +λαμβάνω +πᾶς +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +ὁ +λαός +κατά +ὁ +Ἰησοῦς +ὥστε +θανατόω +αὐτός +καί +δέω +αὐτός +ἀπάγω +καί +παραδίδωμι +Πιλᾶτος +ὁ +ἡγεμών +τότε +Ἰούδας +ὁ +παραδίδωμι +αὐτός +ὁράω +ὅτι +κατακρίνω +μεταμέλομαι +στρέφω +ὁ +τριάκοντα +ἀργύριον +ὁ +ἀρχιερεύς +καί +πρεσβύτερος +λέγω +ἁμαρτάνω +παραδίδωμι +αἷμα +ἀθῷος +δέ +ὁ +λέγω +τίς +πρός +ἐγώ +σύ +ὁράω +καί +ῥίπτω +ὁ +ἀργύριον +εἰς +ὁ +ναός +ἀναχωρέω +καί +ἀπέρχομαι +ἀπάγχω +δέ +ὁ +ἀρχιερεύς +λαμβάνω +ὁ +ἀργύριον +λέγω +οὐ +ἔξεστι(ν) +βάλλω +αὐτός +εἰς +ὁ +κορβᾶν +ἐπεί +τιμή +αἷμα +εἰμί +δέ +συμβούλιον +λαμβάνω +ἀγοράζω +ἐκ +αὐτός +ὁ +ἀγρός +ὁ +κεραμεύς +εἰς +ταφή +ὁ +ξένος +διό +καλέω +ὁ +ἀγρός +ἐκεῖνος +ἀγρός +αἷμα +ἕως +ὁ +σήμερον +τότε +πληρόω +ὁ +εἶπον +διά +Ἰερεμίας +ὁ +προφήτης +λέγω +καί +λαμβάνω +ὁ +τριάκοντα +ἀργύριον +ὁ +τιμή +ὁ +τιμάω +ὅς +τιμάω +ἀπό +υἱός +Ἰσραήλ +καί +δίδωμι +αὐτός +εἰς +ὁ +ἀγρός +ὁ +κεραμεύς +καθά +συντάσσω +ἐγώ +κύριος +δέ +ὁ +Ἰησοῦς +ἵστημι +ἔμπροσθεν +ὁ +ἡγεμών +καί +ἐπερωτάω +αὐτός +ὁ +ἡγεμών +λέγω +σύ +εἰμί +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +δέ +ὁ +Ἰησοῦς +φημί +σύ +λέγω +καί +ἐν +ὁ +κατηγορέω +αὐτός +ὑπό +ὁ +ἀρχιερεύς +καί +πρεσβύτερος +οὐδείς +ἀποκρίνομαι +τότε +λέγω +αὐτός +ὁ +Πιλᾶτος +οὐ +ἀκούω +πόσος +σύ +καταμαρτυρέω +καί +οὐ +ἀποκρίνομαι +αὐτός +πρός +οὐδέ +εἷς +ῥῆμα +ὥστε +θαυμάζω +ὁ +ἡγεμών +λίαν +δέ +κατά +ἑορτή +εἴωθα +ὁ +ἡγεμών +ἀπολύω +ὁ +ὄχλος +εἷς +δέσμιος +ὅς +θέλω +δέ +ἔχω +τότε +δέσμιος +ἐπίσημος +λέγω +Βαραββᾶς +οὖν +συνάγω +αὐτός +λέγω +αὐτός +ὁ +Πιλᾶτος +θέλω +τίς +ἀπολύω +σύ +Βαραββᾶς +ἤ +Ἰησοῦς +ὁ +λέγω +Χριστός +γάρ +οἶδα +ὅτι +διά +φθόνος +παραδίδωμι +αὐτός +δέ +κάθημαι +αὐτός +ἐπί +ὁ +βῆμα +ἀποστέλλω +πρός +αὐτός +ὁ +γυνή +αὐτός +λέγω +μηδείς +σύ +καί +ὁ +δίκαιος +ἐκεῖνος +γάρ +πολύς +πάσχω +σήμερον +κατά +ὄναρ +διά +αὐτός +δέ +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +πείθω +ὁ +ὄχλος +ἵνα +αἰτέω +ὁ +Βαραββᾶς +δέ +ὁ +Ἰησοῦς +ἀπόλλυμι +δέ +ἀποκρίνομαι +ὁ +ἡγεμών +λέγω +αὐτός +θέλω +τίς +ἀπό +ὁ +δύο +ἀπολύω +σύ +δέ +ὁ +λέγω +ὁ +Βαραββᾶς +λέγω +αὐτός +ὁ +Πιλᾶτος +οὖν +τίς +ποιέω +Ἰησοῦς +ὁ +λέγω +Χριστός +λέγω +πᾶς +σταυρόω +δέ +ὁ +φημί +γάρ +τίς +κακός +ποιέω +δέ +ὁ +περισσῶς +κράζω +λέγω +σταυρόω +δέ +ὁ +Πιλᾶτος +ὁράω +ὅτι +οὐδείς +ὠφελέω +ἀλλά +μᾶλλον +θόρυβος +γίνομαι +λαμβάνω +ὕδωρ +ἀπονίζω +ὁ +χείρ +κατέναντι +ὁ +ὄχλος +λέγω +ἀθῷος +εἰμί +ἀπό +ὁ +αἷμα +οὗτος +σύ +ὁράω +καί +ἀποκρίνομαι +πᾶς +ὁ +λαός +λέγω +ὁ +αἷμα +αὐτός +ἐπί +ἐγώ +καί +ἐπί +ὁ +τέκνον +ἐγώ +τότε +ἀπολύω +αὐτός +ὁ +Βαραββᾶς +δέ +ὁ +Ἰησοῦς +φραγελλόω +παραδίδωμι +ἵνα +σταυρόω +τότε +ὁ +στρατιώτης +ὁ +ἡγεμών +παραλαμβάνω +ὁ +Ἰησοῦς +εἰς +ὁ +πραιτώριον +συνάγω +ἐπί +αὐτός +ὅλος +ὁ +σπεῖρα +καί +ἐκδύω +αὐτός +χλαμύς +κόκκινος +περιτίθημι +αὐτός +καί +πλέκω +στέφανος +ἐκ +ἄκανθα +ἐπιτίθημι +ἐπί +ὁ +κεφαλή +αὐτός +καί +κάλαμος +ἐν +ὁ +δεξιός +αὐτός +καί +γονυπετέω +ἔμπροσθεν +αὐτός +ἐμπαίζω +αὐτός +λέγω +χαίρω +βασιλεύς +ὁ +Ἰουδαῖος +καί +ἐμπτύω +εἰς +αὐτός +λαμβάνω +ὁ +κάλαμος +καί +τύπτω +εἰς +ὁ +κεφαλή +αὐτός +καί +ὅτε +ἐμπαίζω +αὐτός +ἐκδύω +αὐτός +ὁ +χλαμύς +καί +ἐνδύω +αὐτός +ὁ +ἱμάτιον +αὐτός +καί +ἀπάγω +αὐτός +εἰς +ὁ +σταυρόω +δέ +ἐξέρχομαι +εὑρίσκω +ἄνθρωπος +Κυρηναῖος +ὄνομα +Σίμων +οὗτος +ἀγγαρεύω +ἵνα +αἴρω +ὁ +σταυρός +αὐτός +καί +ἔρχομαι +εἰς +τόπος +λέγω +Γολγοθᾶ +ὅς +εἰμί +λέγω +κρανίον +τόπος +δίδωμι +αὐτός +πίνω +οἶνος +μετά +χολή +μίγνυμι +καί +γεύομαι +οὐ +θέλω +πίνω +δέ +σταυρόω +αὐτός +διαμερίζω +ὁ +ἱμάτιον +αὐτός +βάλλω +κλῆρος +καί +κάθημαι +τηρέω +αὐτός +ἐκεῖ +καί +ἐπιτίθημι +ἐπάνω +ὁ +κεφαλή +αὐτός +ὁ +αἰτία +αὐτός +γράφω +οὗτος +εἰμί +Ἰησοῦς +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +τότε +σταυρόω +σύν +αὐτός +δύο +λῃστής +εἷς +ἐκ +δεξιός +καί +εἷς +ἐκ +εὐώνυμος +δέ +ὁ +παραπορεύομαι +βλασφημέω +αὐτός +κινέω +ὁ +κεφαλή +αὐτός +καί +λέγω +ὁ +καταλύω +ὁ +ναός +καί +ἐν +τρεῖς +ἡμέρα +οἰκοδομέω +σῴζω +σεαυτοῦ +εἰ +εἰμί +υἱός +ὁ +θεός +καί +καταβαίνω +ἀπό +ὁ +σταυρός +ὁμοίως +ὁ +ἀρχιερεύς +ἐμπαίζω +μετά +ὁ +γραμματεύς +καί +πρεσβύτερος +λέγω +ἄλλος +σῴζω +ἑαυτοῦ +σῴζω +οὐ +δύναμαι +βασιλεύς +Ἰσραήλ +εἰμί +καταβαίνω +νῦν +ἀπό +ὁ +σταυρός +καί +πιστεύω +ἐπί +αὐτός +πείθω +ἐπί +ὁ +θεός +ῥύομαι +νῦν +εἰ +θέλω +αὐτός +γάρ +λέγω +ὅτι +θεός +υἱός +εἰμί +δέ +ὁ +αὐτός +καί +ὁ +λῃστής +ὁ +συσταυρόω +σύν +αὐτός +ὀνειδίζω +αὐτός +δέ +ἀπό +ἕκτος +ὥρα +σκότος +γίνομαι +ἐπί +πᾶς +ὁ +γῆ +ἕως +ὥρα +ἔνατος +δέ +περί +ὁ +ἔνατος +ὥρα +ἀναβοάω +ὁ +Ἰησοῦς +φωνή +μέγας +λέγω +Ἠλί +Ἠλί +λεμά +σαβαχθάνι +οὗτος +εἰμί +θεός +ἐγώ +θεός +ἐγώ +ἵνα +τίς +ἐγώ +ἐγκαταλείπω +δέ +τὶς +ὁ +ἐκεῖ +ἵστημι +ἀκούω +λέγω +ὅτι +Ἠλίας +φωνέω +οὗτος +καί +εὐθέως +εἷς +ἐκ +αὐτός +τρέχω +καί +λαμβάνω +σπόγγος +τέ +πίμπλημι +ὄξος +καί +περιτίθημι +κάλαμος +ποτίζω +αὐτός +δέ +ὁ +λοιπός +λέγω +ἀφίημι +ὁράω +εἰ +ἔρχομαι +Ἠλίας +σῴζω +αὐτός +δέ +ὁ +Ἰησοῦς +πάλιν +κράζω +φωνή +μέγας +ἀφίημι +ὁ +πνεῦμα +καί +ὁράω +ὁ +καταπέτασμα +ὁ +ναός +σχίζω +ἀπό +ἄνωθεν +ἕως +κάτω +εἰς +δύο +καί +ὁ +γῆ +σείω +καί +ὁ +πέτρα +σχίζω +καί +ὁ +μνημεῖον +ἀνοίγω +καί +πολύς +σῶμα +ὁ +κοιμάομαι +ἅγιος +ἐγείρω +καί +ἐξέρχομαι +ἐκ +ὁ +μνημεῖον +μετά +ὁ +ἔγερσις +αὐτός +εἰσέρχομαι +εἰς +ὁ +ἅγιος +πόλις +καί +ἐμφανίζω +πολύς +δέ +ὁ +ἑκατοντάρχης +καί +ὁ +μετά +αὐτός +τηρέω +ὁ +Ἰησοῦς +ὁράω +ὁ +σεισμός +καί +ὁ +γίνομαι +φοβέω +σφόδρα +λέγω +ἀληθῶς +θεός +υἱός +εἰμί +οὗτος +δέ +εἰμί +ἐκεῖ +γυνή +πολύς +ἀπό +μακρόθεν +θεωρέω +ὅστις +ἀκολουθέω +ὁ +Ἰησοῦς +ἀπό +ὁ +Γαλιλαία +διακονέω +αὐτός +ἐν +ὅς +εἰμί +Μαρία +ὁ +Μαγδαληνή +καί +Μαρία +ὁ +ὁ +Ἰάκωβος +καί +Ἰωσήφ +μήτηρ +καί +ὁ +μήτηρ +ὁ +υἱός +Ζεβεδαῖος +δέ +ὄψιος +γίνομαι +ἔρχομαι +ἄνθρωπος +πλούσιος +ἀπό +Ἀριμαθαία +τὸ ὄνομα +Ἰωσήφ +ὅς +καί +αὐτός +μαθητεύω +ὁ +Ἰησοῦς +οὗτος +προσέρχομαι +ὁ +Πιλᾶτος +αἰτέω +ὁ +σῶμα +ὁ +Ἰησοῦς +τότε +ὁ +Πιλᾶτος +κελεύω +ἀποδίδωμι +καί +λαμβάνω +ὁ +σῶμα +ὁ +Ἰωσήφ +ἐντυλίσσω +αὐτός +ἐν +σινδών +καθαρός +καί +τίθημι +αὐτός +ἐν +ὁ +καινός +αὐτός +μνημεῖον +ὅς +λατομέω +ἐν +ὁ +πέτρα +καί +προσκυλίω +λίθος +μέγας +ὁ +θύρα +ὁ +μνημεῖον +ἀπέρχομαι +δέ +ἐκεῖ +Μαρία +ὁ +Μαγδαληνή +καί +ὁ +ἄλλος +Μαρία +εἰμί +κάθημαι +ἀπέναντι +ὁ +τάφος +δέ +ὁ +ἐπαύριον +ὅστις +εἰμί +μετά +ὁ +παρασκευή +συνάγω +ὁ +ἀρχιερεύς +καί +ὁ +Φαρισαῖος +πρός +Πιλᾶτος +λέγω +κύριος +μιμνῄσκω +ὅτι +ἐκεῖνος +ὁ +πλάνος +λέγω +ἔτι +ζάω +μετά +τρεῖς +ἡμέρα +ἐγείρω +οὖν +κελεύω +ἀσφαλίζω +ὁ +τάφος +ἕως +ὁ +τρίτος +ἡμέρα +μή +ποτέ +ἔρχομαι +ὁ +μαθητής +κλέπτω +αὐτός +καί +λέγω +ὁ +λαός +ἐγείρω +ἀπό +ὁ +νεκρός +καί +εἰμί +ὁ +ἔσχατος +πλάνη +χείρων +ὁ +πρῶτος +φημί +αὐτός +ὁ +Πιλᾶτος +ἔχω +κουστωδία +ὑπάγω +ἀσφαλίζω +ὡς +οἶδα +δέ +ὁ +πορεύομαι +ἀσφαλίζω +ὁ +τάφος +σφραγίζω +ὁ +λίθος +μετά +ὁ +κουστωδία +δέ +ὀψέ +σάββατον +ὁ +ἐπιφώσκω +εἰς +εἷς +σάββατον +ἔρχομαι +Μαρία +ὁ +Μαγδαληνή +καί +ὁ +ἄλλος +Μαρία +θεωρέω +ὁ +τάφος +καί +ὁράω +σεισμός +μέγας +γίνομαι +γάρ +ἄγγελος +κύριος +καταβαίνω +ἐκ +οὐρανός +καί +προσέρχομαι +ἀποκυλίω +ὁ +λίθος +καί +κάθημαι +ἐπάνω +αὐτός +δέ +εἰμί +ὁ +εἰδέα +αὐτός +ὡς +ἀστραπή +καί +ὁ +ἔνδυμα +αὐτός +λευκός +ὡς +χιών +δέ +ἀπό +ὁ +φόβος +αὐτός +σείω +ὁ +τηρέω +καί +γίνομαι +ὡς +νεκρός +δέ +ἀποκρίνομαι +ὁ +ἄγγελος +λέγω +ὁ +γυνή +μή +φοβέω +σύ +γάρ +οἶδα +ὅτι +Ἰησοῦς +ὁ +σταυρόω +ζητέω +οὐ +εἰμί +ὧδε +γάρ +ἐγείρω +καθώς +λέγω +δεῦτε +ὁράω +ὁ +τόπος +ὅπου +κεῖμαι +καί +ταχύς +πορεύομαι +λέγω +ὁ +μαθητής +αὐτός +ὅτι +ἐγείρω +ἀπό +ὁ +νεκρός +καί +ὁράω +προάγω +σύ +εἰς +ὁ +Γαλιλαία +ἐκεῖ +αὐτός +ὁράω +ὁράω +λέγω +σύ +καί +ἀπέρχομαι +ταχύς +ἀπό +ὁ +μνημεῖον +μετά +φόβος +καί +χαρά +μέγας +τρέχω +ἀπαγγέλλω +ὁ +μαθητής +αὐτός +καί +ὁράω +Ἰησοῦς +ὑπαντάω +αὐτός +λέγω +χαίρω +δέ +ὁ +προσέρχομαι +κρατέω +αὐτός +ὁ +πούς +καί +προσκυνέω +αὐτός +τότε +λέγω +αὐτός +ὁ +Ἰησοῦς +μή +φοβέω +ὑπάγω +ἀπαγγέλλω +ὁ +ἀδελφός +ἐγώ +ἵνα +ἀπέρχομαι +εἰς +ὁ +Γαλιλαία +κἀκεῖ +ἐγώ +ὁράω +δέ +πορεύομαι +αὐτός +ὁράω +τὶς +ὁ +κουστωδία +ἔρχομαι +εἰς +ὁ +πόλις +ἀπαγγέλλω +ὁ +ἀρχιερεύς +ἅπας +ὁ +γίνομαι +καί +συνάγω +μετά +ὁ +πρεσβύτερος +τέ +συμβούλιον +λαμβάνω +ἀργύριον +ἱκανός +δίδωμι +ὁ +στρατιώτης +λέγω +λέγω +ὅτι +ὁ +μαθητής +αὐτός +νύξ +ἔρχομαι +κλέπτω +αὐτός +ἐγώ +κοιμάομαι +καί +ἐάν +ἀκούω +οὗτος +ἐπί +ὁ +ἡγεμών +ἐγώ +πείθω +καί +σύ +ἀμέριμνος +ποιέω +δέ +ὁ +λαμβάνω +ἀργύριον +ποιέω +ὡς +διδάσκω +καί +διαφημίζω +ὁ +λόγος +οὗτος +παρά +Ἰουδαῖος +μέχρι +ὁ +σήμερον +ἡμέρα +δέ +ὁ +ἕνδεκα +μαθητής +πορεύομαι +εἰς +ὁ +Γαλιλαία +εἰς +ὁ +ὄρος +οὗ +τάσσω +αὐτός +ὁ +Ἰησοῦς +καί +ὁράω +αὐτός +προσκυνέω +δέ +ὁ +διστάζω +καί +προσέρχομαι +ὁ +Ἰησοῦς +λαλέω +αὐτός +λέγω +δίδωμι +ἐγώ +πᾶς +ἐξουσία +ἐν +οὐρανός +καί +ἐπί +ὁ +γῆ +οὖν +πορεύομαι +μαθητεύω +πᾶς +ὁ +ἔθνος +βαπτίζω +αὐτός +εἰς +ὁ +ὄνομα +ὁ +πατήρ +καί +ὁ +υἱός +καί +ὁ +ἅγιος +πνεῦμα +διδάσκω +αὐτός +τηρέω +πᾶς +ὅσος +ἐντέλλομαι +σύ +καί +ὁράω +ἐγώ +μετά +σύ +εἰμί +πᾶς +ὁ +ἡμέρα +ἕως +ὁ +συντέλεια +ὁ +αἰών +ἀρχή +ὁ +εὐαγγέλιον +Ἰησοῦς +Χριστός +υἱός +θεός +καθώς +γράφω +ἐν +ὁ +Ἠσαΐας +ὁ +προφήτης +ὁράω +ἀποστέλλω +ὁ +ἄγγελος +ἐγώ +πρό +πρόσωπον +σύ +ὅς +κατασκευάζω +ὁ +ὁδός +σύ +φωνή +βοάω +ἐν +ὁ +ἔρημος +ἑτοιμάζω +ὁ +ὁδός +κύριος +εὐθύς +ποιέω +ὁ +τρίβος +αὐτός +γίνομαι +Ἰωάννης +ὁ +βαπτίζω +ἐν +ὁ +ἔρημος +κηρύσσω +βάπτισμα +μετάνοια +εἰς +ἄφεσις +ἁμαρτία +καί +ἐκπορεύομαι +πρός +αὐτός +πᾶς +ὁ +Ἰουδαία +χώρα +καί +ὁ +Ἱεροσολυμίτης +πᾶς +καί +βαπτίζω +ὑπό +αὐτός +ἐν +ὁ +Ἰορδάνης +ποταμός +ἐξομολογέω +ὁ +ἁμαρτία +αὐτός +καί +εἰμί +ὁ +Ἰωάννης +ἐνδύω +θρίξ +κάμηλος +καί +ζώνη +δερμάτινος +περί +ὁ +ὀσφῦς +αὐτός +καί +ἐσθίω +ἀκρίς +καί +μέλι +ἄγριος +καί +κηρύσσω +λέγω +ἔρχομαι +ὁ +ἰσχυρός +ἐγώ +ὀπίσω +ἐγώ +ὅς +οὐ +εἰμί +ἱκανός +κύπτω +λύω +ὁ +ἱμάς +ὁ +ὑπόδημα +αὐτός +ἐγώ +βαπτίζω +σύ +ὕδωρ +δέ +αὐτός +βαπτίζω +σύ +πνεῦμα +ἅγιος +καί +γίνομαι +ἐν +ἐκεῖνος +ὁ +ἡμέρα +ἔρχομαι +Ἰησοῦς +ἀπό +Ναζαρά +ὁ +Γαλιλαία +καί +βαπτίζω +εἰς +ὁ +Ἰορδάνης +ὑπό +Ἰωάννης +καί +εὐθύς +ἀναβαίνω +ἐκ +ὁ +ὕδωρ +ὁράω +σχίζω +ὁ +οὐρανός +καί +ὁ +πνεῦμα +ὡς +περιστερά +καταβαίνω +εἰς +αὐτός +καί +φωνή +γίνομαι +ἐκ +ὁ +οὐρανός +σύ +εἰμί +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἐν +σύ +εὐδοκέω +καί +εὐθύς +ὁ +πνεῦμα +αὐτός +ἐκβάλλω +εἰς +ὁ +ἔρημος +καί +εἰμί +ἐν +ὁ +ἔρημος +τεσσεράκοντα +ἡμέρα +πειράζω +ὑπό +ὁ +Σατανᾶς +καί +εἰμί +μετά +ὁ +θηρίον +καί +ὁ +ἄγγελος +διακονέω +αὐτός +καί +μετά +ὁ +παραδίδωμι +ὁ +Ἰωάννης +ἔρχομαι +ὁ +Ἰησοῦς +εἰς +ὁ +Γαλιλαία +κηρύσσω +ὁ +εὐαγγέλιον +ὁ +θεός +καί +λέγω +ὅτι +πληρόω +ὁ +καιρός +καί +ἐγγίζω +ὁ +βασιλεία +ὁ +θεός +μετανοέω +καί +πιστεύω +ἐν +ὁ +εὐαγγέλιον +καί +παράγω +παρά +ὁ +θάλασσα +ὁ +Γαλιλαία +ὁράω +Σίμων +καί +Ἀνδρέας +ὁ +ἀδελφός +Σίμων +ἀμφιβάλλω +ἐν +ὁ +θάλασσα +γάρ +εἰμί +ἁλιεύς +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +δεῦτε +ὀπίσω +ἐγώ +καί +ποιέω +σύ +γίνομαι +ἁλιεύς +ἄνθρωπος +καί +εὐθύς +ἀφίημι +ὁ +δίκτυον +ἀκολουθέω +αὐτός +καί +προβαίνω +ὀλίγος +ὁράω +Ἰάκωβος +ὁ +ὁ +Ζεβεδαῖος +καί +Ἰωάννης +ὁ +ἀδελφός +αὐτός +καί +αὐτός +ἐν +ὁ +πλοῖον +καταρτίζω +ὁ +δίκτυον +καί +εὐθύς +καλέω +αὐτός +καί +ἀφίημι +ὁ +πατήρ +αὐτός +Ζεβεδαῖος +ἐν +ὁ +πλοῖον +μετά +ὁ +μισθωτός +ἀπέρχομαι +ὀπίσω +αὐτός +καί +εἰσπορεύομαι +εἰς +Καφαρναούμ +καί +εὐθύς +ὁ +σάββατον +εἰσέρχομαι +εἰς +ὁ +συναγωγή +διδάσκω +καί +ἐκπλήσσω +ἐπί +ὁ +διδαχή +αὐτός +γάρ +εἰμί +διδάσκω +αὐτός +ὡς +ἐξουσία +ἔχω +καί +οὐ +ὡς +ὁ +γραμματεύς +καί +εὐθύς +εἰμί +ἐν +ὁ +συναγωγή +αὐτός +ἄνθρωπος +ἐν +πνεῦμα +ἀκάθαρτος +καί +ἀνακράζω +λέγω +τίς +ἐγώ +καί +σύ +Ἰησοῦς +Ναζαρηνός +ἔρχομαι +ἀπόλλυμι +ἐγώ +οἶδα +σύ +τίς +εἰμί +ὁ +ἅγιος +ὁ +θεός +καί +ἐπιτιμάω +αὐτός +ὁ +Ἰησοῦς +φιμόω +καί +ἐξέρχομαι +ἐκ +αὐτός +καί +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +σπαράσσω +αὐτός +καί +φωνέω +φωνή +μέγας +ἐξέρχομαι +ἐκ +αὐτός +καί +θαμβέω +ἅπας +ὥστε +συζητέω +αὐτός +λέγω +τίς +εἰμί +οὗτος +διδαχή +καινός +κατά +ἐξουσία +καί +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +ἐπιτάσσω +καί +ὑπακούω +αὐτός +καί +ἐξέρχομαι +ὁ +ἀκοή +αὐτός +εὐθύς +πανταχοῦ +εἰς +ὅλος +ὁ +περίχωρος +ὁ +Γαλιλαία +καί +εὐθύς +ἐκ +ὁ +συναγωγή +ἐξέρχομαι +ἔρχομαι +εἰς +ὁ +οἰκία +Σίμων +καί +Ἀνδρέας +μετά +Ἰάκωβος +καί +Ἰωάννης +δέ +ὁ +πενθερά +Σίμων +κατάκειμαι +πυρέσσω +καί +εὐθύς +λέγω +αὐτός +περί +αὐτός +καί +προσέρχομαι +ἐγείρω +αὐτός +κρατέω +ὁ +χείρ +καί +ἀφίημι +αὐτός +ὁ +πυρετός +καί +διακονέω +αὐτός +δέ +ὄψιος +γίνομαι +ὅτε +δύνω +ὁ +ἥλιος +φέρω +πρός +αὐτός +πᾶς +ὁ +κακῶς +ἔχω +καί +ὁ +δαιμονίζομαι +καί +εἰμί +ἐπισυνάγω +ὅλος +ὁ +πόλις +πρός +ὁ +θύρα +καί +θεραπεύω +πολύς +κακῶς +ἔχω +ποικίλος +νόσος +καί +δαιμόνιον +πολύς +ἐκβάλλω +καί +οὐ +ἀφίημι +λαλέω +ὁ +δαιμόνιον +ὅτι +οἶδα +αὐτός +καί +πρωΐ +ἔννυχος +λίαν +ἀνίστημι +ἐξέρχομαι +καί +ἀπέρχομαι +εἰς +ἔρημος +τόπος +κἀκεῖ +προσεύχομαι +καί +καταδιώκω +αὐτός +Σίμων +καί +ὁ +μετά +αὐτός +καί +εὑρίσκω +αὐτός +καί +λέγω +αὐτός +ὅτι +πᾶς +ζητέω +σύ +καί +λέγω +αὐτός +ἄγω +ἀλλαχοῦ +εἰς +ὁ +ἔχω +κωμόπολις +ἵνα +καί +ἐκεῖ +κηρύσσω +γάρ +εἰς +οὗτος +ἐξέρχομαι +καί +ἔρχομαι +κηρύσσω +εἰς +ὁ +συναγωγή +αὐτός +εἰς +ὅλος +ὁ +Γαλιλαία +καί +ὁ +δαιμόνιον +ἐκβάλλω +καί +ἔρχομαι +πρός +αὐτός +λεπρός +παρακαλέω +αὐτός +καί +γονυπετέω +λέγω +αὐτός +ὅτι +ἐάν +θέλω +δύναμαι +ἐγώ +καθαρίζω +καί +σπλαγχνίζομαι +ἐκτείνω +ὁ +χείρ +αὐτός +ἅπτω +καί +λέγω +αὐτός +θέλω +καθαρίζω +καί +εὐθύς +ἀπέρχομαι +ἀπό +αὐτός +ὁ +λέπρα +καί +καθαρίζω +καί +ἐμβριμάομαι +αὐτός +εὐθύς +ἐκβάλλω +αὐτός +καί +λέγω +αὐτός +ὁράω +μηδείς +μηδείς +λέγω +ἀλλά +ὑπάγω +σεαυτοῦ +δείκνυμι +ὁ +ἱερεύς +καί +προσφέρω +περί +ὁ +καθαρισμός +σύ +ὅς +προστάσσω +Μωϋσῆς +εἰς +μαρτύριον +αὐτός +δέ +ὁ +ἐξέρχομαι +ἄρχω +κηρύσσω +πολύς +καί +διαφημίζω +ὁ +λόγος +ὥστε +μηκέτι +αὐτός +δύναμαι +φανερῶς +εἰς +πόλις +εἰσέρχομαι +ἀλλά +ἔξω +ἐπί +ἔρημος +τόπος +εἰμί +καί +ἔρχομαι +πρός +αὐτός +πάντοθεν +καί +εἰσέρχομαι +πάλιν +εἰς +Καφαρναούμ +διά +ἡμέρα +ἀκούω +ὅτι +ἐν +οἶκος +εἰμί +καί +συνάγω +πολύς +ὥστε +μηκέτι +χωρέω +μηδέ +ὁ +πρός +ὁ +θύρα +καί +λαλέω +αὐτός +ὁ +λόγος +καί +ἔρχομαι +φέρω +πρός +αὐτός +παραλυτικός +αἴρω +ὑπό +τέσσαρες +καί +μή +δύναμαι +προσφέρω +αὐτός +διά +ὁ +ὄχλος +ἀποστεγάζω +ὁ +στέγη +ὅπου +εἰμί +καί +ἐξορύσσω +χαλάω +ὁ +κράβαττος +ὅπου +ὁ +παραλυτικός +κατάκειμαι +καί +ὁ +Ἰησοῦς +ὁράω +ὁ +πίστις +αὐτός +λέγω +ὁ +παραλυτικός +τέκνον +ἀφίημι +σύ +ὁ +ἁμαρτία +δέ +εἰμί +τὶς +ὁ +γραμματεύς +ἐκεῖ +κάθημαι +καί +διαλογίζομαι +ἐν +ὁ +καρδία +αὐτός +τίς +οὗτος +οὕτω +λαλέω +βλασφημέω +τίς +δύναμαι +ἀφίημι +ἁμαρτία +εἰ +μή +εἷς +ὁ +θεός +καί +εὐθύς +ὁ +Ἰησοῦς +ἐπιγινώσκω +ὁ +πνεῦμα +αὐτός +ὅτι +οὕτω +διαλογίζομαι +ἐν +ἑαυτοῦ +λέγω +αὐτός +τίς +οὗτος +διαλογίζομαι +ἐν +ὁ +καρδία +σύ +τίς +εἰμί +εὔκοπος +λέγω +ὁ +παραλυτικός +ἀφίημι +σύ +ὁ +ἁμαρτία +ἤ +λέγω +ἐγείρω +καί +αἴρω +ὁ +κράβαττος +σύ +καί +περιπατέω +δέ +ἵνα +οἶδα +ὅτι +ἐξουσία +ἔχω +ὁ +υἱός +ὁ +ἄνθρωπος +ἀφίημι +ἁμαρτία +ἐπί +ὁ +γῆ +λέγω +ὁ +παραλυτικός +σύ +λέγω +ἐγείρω +αἴρω +ὁ +κράβαττος +σύ +καί +ὑπάγω +εἰς +ὁ +οἶκος +σύ +καί +ἐγείρω +καί +εὐθύς +αἴρω +ὁ +κράβαττος +ἐξέρχομαι +ἔμπροσθεν +πᾶς +ὥστε +ἐξίστημι +πᾶς +καί +δοξάζω +ὁ +θεός +λέγω +ὅτι +οὕτω +οὐδέποτε +ὁράω +καί +ἐξέρχομαι +πάλιν +παρά +ὁ +θάλασσα +καί +πᾶς +ὁ +ὄχλος +ἔρχομαι +πρός +αὐτός +καί +διδάσκω +αὐτός +καί +παράγω +ὁράω +Λευί +ὁ +ὁ +Ἁλφαῖος +κάθημαι +ἐπί +ὁ +τελώνιον +καί +λέγω +αὐτός +ἀκολουθέω +ἐγώ +καί +ἀνίστημι +ἀκολουθέω +αὐτός +καί +γίνομαι +κατάκειμαι +αὐτός +ἐν +ὁ +οἰκία +αὐτός +καί +πολύς +τελώνης +καί +ἁμαρτωλός +συνανάκειμαι +ὁ +Ἰησοῦς +καί +ὁ +μαθητής +αὐτός +γάρ +εἰμί +πολύς +καί +ἀκολουθέω +αὐτός +καί +ὁ +γραμματεύς +ὁ +Φαρισαῖος +ὁράω +ὅτι +ἐσθίω +μετά +ὁ +ἁμαρτωλός +καί +τελώνης +λέγω +ὁ +μαθητής +αὐτός +ὅτι +μετά +ὁ +τελώνης +καί +ἁμαρτωλός +ἐσθίω +καί +ἀκούω +ὁ +Ἰησοῦς +λέγω +αὐτός +οὐ +χρεία +ἰατρός +ἔχω +ὁ +ἰσχύω +ἀλλά +ὁ +κακῶς +ἔχω +οὐ +ἔρχομαι +καλέω +δίκαιος +ἀλλά +ἁμαρτωλός +καί +εἰμί +νηστεύω +ὁ +μαθητής +Ἰωάννης +καί +ὁ +Φαρισαῖος +καί +ἔρχομαι +καί +λέγω +αὐτός +διά +τίς +ὁ +μαθητής +Ἰωάννης +καί +ὁ +μαθητής +ὁ +Φαρισαῖος +νηστεύω +δέ +ὁ +σός +μαθητής +οὐ +νηστεύω +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +μή +δύναμαι +ὁ +υἱός +ὁ +νυμφών +ἐν +ὅς +ὁ +νυμφίος +μετά +αὐτός +εἰμί +νηστεύω +ὅσος +χρόνος +ἔχω +ὁ +νυμφίος +μετά +αὐτός +οὐ +δύναμαι +νηστεύω +δέ +ἔρχομαι +ἡμέρα +ὅταν +ἀπαίρω +ἀπό +αὐτός +ὁ +νυμφίος +καί +τότε +νηστεύω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +οὐδείς +ἐπίβλημα +ῥάκος +ἄγναφος +ἐπιράπτω +ἐπί +ἱμάτιον +παλαιός +δέ +εἰ +μή +αἴρω +ὁ +πλήρωμα +ὁ +καινός +ἀπό +αὐτός +ὁ +παλαιός +καί +χείρων +σχίσμα +γίνομαι +καί +οὐδείς +βάλλω +οἶνος +νέος +εἰς +ἀσκός +παλαιός +δέ +εἰ +μή +ῥήγνυμι +ὁ +οἶνος +ὁ +ἀσκός +καί +ὁ +οἶνος +ἀπόλλυμι +καί +ὁ +ἀσκός +ἀλλά +οἶνος +νέος +εἰς +ἀσκός +καινός +καί +γίνομαι +αὐτός +ἐν +ὁ +σάββατον +παραπορεύομαι +διά +ὁ +σπόριμος +καί +ὁ +μαθητής +αὐτός +ἄρχω +ὁδός +ποιέω +τίλλω +ὁ +στάχυς +καί +ὁ +Φαρισαῖος +λέγω +αὐτός +ὁράω +τίς +ποιέω +ὁ +σάββατον +ὅς +οὐ +ἔξεστι(ν) +καί +λέγω +αὐτός +οὐδέποτε +ἀναγινώσκω +τίς +ποιέω +Δαυίδ +ὅτε +χρεία +ἔχω +καί +πεινάω +αὐτός +καί +ὁ +μετά +αὐτός +πῶς +εἰσέρχομαι +εἰς +ὁ +οἶκος +ὁ +θεός +ἐπί +Ἀβιαθάρ +ἀρχιερεύς +καί +ὁ +ἄρτος +ὁ +πρόθεσις +ἐσθίω +ὅς +ἐσθίω +οὐ +ἔξεστι(ν) +εἰ +μή +ὁ +ἱερεύς +καί +δίδωμι +καί +ὁ +σύν +αὐτός +εἰμί +καί +λέγω +αὐτός +ὁ +σάββατον +διά +ὁ +ἄνθρωπος +γίνομαι +καί +οὐ +ὁ +ἄνθρωπος +διά +ὁ +σάββατον +ὥστε +εἰμί +ὁ +υἱός +ὁ +ἄνθρωπος +κύριος +καί +ὁ +σάββατον +καί +εἰσέρχομαι +πάλιν +εἰς +συναγωγή +καί +εἰμί +ἐκεῖ +ἄνθρωπος +ξηραίνω +ἔχω +ὁ +χείρ +καί +παρατηρέω +αὐτός +εἰ +ὁ +σάββατον +θεραπεύω +αὐτός +ἵνα +κατηγορέω +αὐτός +καί +λέγω +ὁ +ἄνθρωπος +ὁ +ὁ +ξηρός +χείρ +ἔχω +ἐγείρω +εἰς +ὁ +μέσος +καί +λέγω +αὐτός +ἔξεστι(ν) +ὁ +σάββατον +ἀγαθός +ποιέω +ἤ +κακοποιέω +ψυχή +σῴζω +ἤ +ἀποκτείνω +δέ +ὁ +σιωπάω +καί +περιβλέπω +αὐτός +μετά +ὀργή +συλλυπέω +ἐπί +ὁ +πώρωσις +ὁ +καρδία +αὐτός +λέγω +ὁ +ἄνθρωπος +ἐκτείνω +ὁ +χείρ +καί +ἐκτείνω +καί +ἀποκαθιστάνω +ὁ +χείρ +αὐτός +καί +ἐξέρχομαι +ὁ +Φαρισαῖος +εὐθύς +μετά +ὁ +Ἡρῳδιανοί +συμβούλιον +δίδωμι +κατά +αὐτός +ὅπως +αὐτός +ἀπόλλυμι +καί +ὁ +Ἰησοῦς +μετά +ὁ +μαθητής +αὐτός +ἀναχωρέω +πρός +ὁ +θάλασσα +καί +πολύς +πλῆθος +ἀπό +ὁ +Γαλιλαία +ἀκολουθέω +καί +ἀπό +ὁ +Ἰουδαία +καί +ἀπό +Ἱεροσόλυμα +καί +ἀπό +ὁ +Ἰδουμαία +καί +πέραν +ὁ +Ἰορδάνης +καί +περί +Τύρος +καί +Σιδών +πλῆθος +πολύς +ἀκούω +ὅσος +ποιέω +ἔρχομαι +πρός +αὐτός +καί +λέγω +ὁ +μαθητής +αὐτός +ἵνα +πλοιάριον +προσκαρτερέω +αὐτός +διά +ὁ +ὄχλος +ἵνα +μή +θλίβω +αὐτός +γάρ +πολύς +θεραπεύω +ὥστε +ἐπιπίπτω +αὐτός +ἵνα +αὐτός +ἅπτω +ὅσος +ἔχω +μάστιξ +καί +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +ὅταν +αὐτός +θεωρέω +προσπίπτω +αὐτός +καί +κράζω +λέγω +ὅτι +σύ +εἰμί +ὁ +υἱός +ὁ +θεός +καί +πολύς +ἐπιτιμάω +αὐτός +ἵνα +μή +αὐτός +φανερός +ποιέω +καί +ἀναβαίνω +εἰς +ὁ +ὄρος +καί +προσκαλέω +ὅς +θέλω +αὐτός +καί +ἀπέρχομαι +πρός +αὐτός +καί +ποιέω +δώδεκα +ἵνα +εἰμί +μετά +αὐτός +καί +ἵνα +ἀποστέλλω +αὐτός +κηρύσσω +καί +ἔχω +ἐξουσία +ἐκβάλλω +ὁ +δαιμόνιον +καί +ποιέω +ὁ +δώδεκα +καί +ἐπιτίθημι +ὄνομα +ὁ +Σίμων +Πέτρος +καί +Ἰάκωβος +ὁ +ὁ +Ζεβεδαῖος +καί +Ἰωάννης +ὁ +ἀδελφός +ὁ +Ἰάκωβος +καί +ἐπιτίθημι +αὐτός +ὄνομα +Βοανηργές +ὅς +εἰμί +υἱός +βροντή +καί +Ἀνδρέας +καί +Φίλιππος +καί +Βαρθολομαῖος +καί +Μαθθαῖος +καί +Θωμᾶς +καί +Ἰάκωβος +ὁ +ὁ +Ἁλφαῖος +καί +Θαδδαῖος +καί +Σίμων +ὁ +Καναναῖος +καί +Ἰούδας +Ἰσκαριώθ +ὅς +καί +παραδίδωμι +αὐτός +καί +ἔρχομαι +εἰς +οἶκος +καί +συνέρχομαι +πάλιν +ὁ +ὄχλος +ὥστε +μή +δύναμαι +αὐτός +μηδέ +ἄρτος +ἐσθίω +καί +ἀκούω +ὁ +παρά +αὐτός +ἐξέρχομαι +κρατέω +αὐτός +γάρ +λέγω +ὅτι +ἐξίστημι +καί +ὁ +γραμματεύς +ὁ +ἀπό +Ἱεροσόλυμα +καταβαίνω +λέγω +ὅτι +Βεελζεβούλ +ἔχω +καί +ὅτι +ἐν +ὁ +ἄρχων +ὁ +δαιμόνιον +ἐκβάλλω +ὁ +δαιμόνιον +καί +προσκαλέω +αὐτός +ἐν +παραβολή +λέγω +αὐτός +πῶς +δύναμαι +Σατανᾶς +Σατανᾶς +ἐκβάλλω +καί +ἐάν +βασιλεία +ἐπί +ἑαυτοῦ +μερίζω +οὐ +δύναμαι +ἵστημι +ὁ +βασιλεία +ἐκεῖνος +καί +ἐάν +οἰκία +ἐπί +ἑαυτοῦ +μερίζω +οὐ +δύναμαι +ὁ +οἰκία +ἐκεῖνος +ἵστημι +καί +εἰ +ὁ +Σατανᾶς +ἀνίστημι +ἐπί +ἑαυτοῦ +καί +μερίζω +οὐ +δύναμαι +ἵστημι +ἀλλά +τέλος +ἔχω +ἀλλά +οὐ +δύναμαι +οὐδείς +εἰς +ὁ +οἰκία +ὁ +ἰσχυρός +εἰσέρχομαι +ὁ +σκεῦος +αὐτός +διαρπάζω +ἐάν +μή +πρῶτος +ὁ +ἰσχυρός +δέω +καί +τότε +ὁ +οἰκία +αὐτός +διαρπάζω +ἀμήν +λέγω +σύ +ὅτι +ἀφίημι +ὁ +υἱός +ὁ +ἄνθρωπος +πᾶς +ὁ +ἁμάρτημα +καί +ὁ +βλασφημία +ἐάν +ὅσος +βλασφημέω +δέ +ἄν +ὅς +βλασφημέω +εἰς +ὁ +πνεῦμα +ὁ +ἅγιος +οὐ +ἔχω +ἄφεσις +εἰς +ὁ +αἰών +ἀλλά +ἔνοχος +εἰμί +αἰώνιος +ἁμάρτημα +ὅτι +λέγω +πνεῦμα +ἀκάθαρτος +ἔχω +καί +ἔρχομαι +ὁ +μήτηρ +αὐτός +καί +ὁ +ἀδελφός +αὐτός +καί +ἔξω +στήκω +ἀποστέλλω +πρός +αὐτός +καλέω +αὐτός +καί +κάθημαι +περί +αὐτός +ὄχλος +καί +λέγω +αὐτός +ὁράω +ὁ +μήτηρ +σύ +καί +ὁ +ἀδελφός +σύ +καί +ὁ +ἀδελφή +σύ +ἔξω +ζητέω +σύ +καί +ἀποκρίνομαι +αὐτός +λέγω +τίς +εἰμί +ὁ +μήτηρ +ἐγώ +καί +ὁ +ἀδελφός +καί +περιβλέπω +ὁ +περί +αὐτός +κύκλῳ +κάθημαι +λέγω +ὁράω +ὁ +μήτηρ +ἐγώ +καί +ὁ +ἀδελφός +ἐγώ +ἄν +ὅς +ποιέω +ὁ +θέλημα +ὁ +θεός +οὗτος +ἀδελφός +ἐγώ +καί +ἀδελφή +καί +μήτηρ +εἰμί +καί +πάλιν +ἄρχω +διδάσκω +παρά +ὁ +θάλασσα +καί +συνάγω +πρός +αὐτός +ὄχλος +πολύς +ὥστε +αὐτός +εἰς +πλοῖον +ἐμβαίνω +κάθημαι +ἐν +ὁ +θάλασσα +καί +πᾶς +ὁ +ὄχλος +πρός +ὁ +θάλασσα +ἐπί +ὁ +γῆ +εἰμί +καί +διδάσκω +αὐτός +ἐν +παραβολή +πολύς +καί +λέγω +αὐτός +ἐν +ὁ +διδαχή +αὐτός +ἀκούω +ὁράω +ἐξέρχομαι +ὁ +σπείρω +σπείρω +καί +γίνομαι +ἐν +ὁ +σπείρω +μέν +ὅς +πίπτω +παρά +ὁ +ὁδός +καί +ἔρχομαι +ὁ +πετεινός +καί +κατεσθίω +αὐτός +καί +ἄλλος +πίπτω +ἐπί +ὁ +πετρώδης +ὅπου +οὐ +ἔχω +γῆ +πολύς +καί +εὐθύς +ἐξανατέλλω +διά +ὁ +μή +ἔχω +βάθος +γῆ +καί +ὅτε +ἀνατέλλω +ὁ +ἥλιος +καυματίζω +καί +διά +ὁ +μή +ἔχω +ῥίζα +ξηραίνω +καί +ἄλλος +πίπτω +εἰς +ὁ +ἄκανθα +καί +ἀναβαίνω +ὁ +ἄκανθα +καί +συμπνίγω +αὐτός +καί +καρπός +οὐ +δίδωμι +καί +ἄλλος +πίπτω +εἰς +ὁ +γῆ +ὁ +καλός +καί +δίδωμι +καρπός +ἀναβαίνω +καί +αὐξάνω +καί +φέρω +εἰς +τριάκοντα +καί +ἐν +ἑξήκοντα +καί +ἐν +ἑκατόν +καί +λέγω +ὅς +ἔχω +οὖς +ἀκούω +ἀκούω +καί +ὅτε +γίνομαι +κατά +μόνος +ἐρωτάω +αὐτός +ὁ +περί +αὐτός +σύν +ὁ +δώδεκα +ὁ +παραβολή +καί +λέγω +αὐτός +σύ +δίδωμι +ὁ +μυστήριον +ὁ +βασιλεία +ὁ +θεός +δέ +ἐκεῖνος +ὁ +ἔξω +ἐν +παραβολή +ὁ +πᾶς +γίνομαι +ἵνα +βλέπω +βλέπω +καί +μή +ὁράω +καί +ἀκούω +ἀκούω +καί +μή +συνίημι +μή +ποτέ +ἐπιστρέφω +καί +ἀφίημι +αὐτός +καί +λέγω +αὐτός +οὐ +οἶδα +ὁ +παραβολή +οὗτος +καί +πῶς +πᾶς +ὁ +παραβολή +γινώσκω +ὁ +σπείρω +ὁ +λόγος +σπείρω +δέ +οὗτος +εἰμί +ὁ +παρά +ὁ +ὁδός +ὅπου +σπείρω +ὁ +λόγος +καί +ὅταν +ἀκούω +εὐθύς +ἔρχομαι +ὁ +Σατανᾶς +καί +αἴρω +ὁ +λόγος +ὁ +σπείρω +εἰς +αὐτός +καί +εἰμί +ὁμοίως +ὁ +ἐπί +ὁ +πετρώδης +σπείρω +οὗτος +ὅς +ὅταν +ἀκούω +ὁ +λόγος +εὐθύς +μετά +χαρά +λαμβάνω +αὐτός +καί +οὐ +ἔχω +ῥίζα +ἐν +ἑαυτοῦ +ἀλλά +πρόσκαιρος +εἰμί +εἶτα +γίνομαι +θλῖψις +ἤ +διωγμός +διά +ὁ +λόγος +εὐθύς +σκανδαλίζω +καί +ἄλλος +εἰμί +ὁ +εἰς +ὁ +ἄκανθα +σπείρω +οὗτος +εἰμί +ὁ +ὁ +λόγος +ἀκούω +καί +ὁ +μέριμνα +ὁ +αἰών +καί +ὁ +ἀπάτη +ὁ +πλοῦτος +καί +ὁ +περί +ὁ +λοιπός +ἐπιθυμία +εἰσπορεύομαι +συμπνίγω +ὁ +λόγος +καί +ἄκαρπος +γίνομαι +καί +εἰμί +ὁ +ἐπί +ὁ +γῆ +ὁ +καλός +σπείρω +ἐκεῖνος +ὅστις +ἀκούω +ὁ +λόγος +καί +παραδέχομαι +καί +καρποφορέω +ἐν +τριάκοντα +καί +ἐν +ἑξήκοντα +καί +ἐν +ἑκατόν +καί +λέγω +αὐτός +ὅτι +μήτι +ἔρχομαι +ὁ +λύχνος +ἵνα +ὑπό +ὁ +μόδιος +τίθημι +ἤ +ὑπό +ὁ +κλίνη +οὐ +ἵνα +ἐπί +ὁ +λυχνία +τίθημι +γάρ +οὐ +εἰμί +τὶς +κρυπτός +ἐάν +μή +ἵνα +φανερόω +οὐδέ +γίνομαι +ἀπόκρυφος +ἀλλά +ἵνα +ἔρχομαι +εἰς +φανερός +εἰ +τὶς +ἔχω +οὖς +ἀκούω +ἀκούω +καί +λέγω +αὐτός +βλέπω +τίς +ἀκούω +ἐν +ὅς +μέτρον +μετρέω +μετρέω +σύ +καί +προστίθημι +σύ +γάρ +ὅς +ἔχω +δίδωμι +αὐτός +καί +ὅς +οὐ +ἔχω +καί +ὅς +ἔχω +αἴρω +ἀπό +αὐτός +καί +λέγω +οὕτω +εἰμί +ὁ +βασιλεία +ὁ +θεός +ὡς +ἄνθρωπος +βάλλω +ὁ +σπόρος +ἐπί +ὁ +γῆ +καί +καθεύδω +καί +ἐγείρω +νύξ +καί +ἡμέρα +καί +ὁ +σπόρος +βλαστάνω +καί +μηκύνω +ὡς +οὐ +οἶδα +αὐτός +αὐτόματος +ὁ +γῆ +καρποφορέω +πρῶτος +χόρτος +εἶτα +στάχυς +εἶτα +πλήρης +σῖτος +ἐν +ὁ +στάχυς +δέ +ὅταν +παραδίδωμι +ὁ +καρπός +εὐθύς +ἀποστέλλω +ὁ +δρέπανον +ὅτι +παρίστημι +ὁ +θερισμός +καί +λέγω +πῶς +ὁμοιόω +ὁ +βασιλεία +ὁ +θεός +ἤ +ἐν +τίς +παραβολή +αὐτός +τίθημι +ὡς +κόκκος +σίναπι +ὅς +ὅταν +σπείρω +ἐπί +ὁ +γῆ +μικρός +εἰμί +πᾶς +ὁ +σπέρμα +ὁ +ἐπί +ὁ +γῆ +καί +ὅταν +σπείρω +ἀναβαίνω +καί +γίνομαι +μέγας +πᾶς +ὁ +λάχανον +καί +ποιέω +κλάδος +μέγας +ὥστε +δύναμαι +ὑπό +ὁ +σκιά +αὐτός +κατασκηνόω +ὁ +πετεινός +ὁ +οὐρανός +καί +τοιοῦτος +παραβολή +πολύς +λαλέω +αὐτός +ὁ +λόγος +καθώς +δύναμαι +ἀκούω +δέ +χωρίς +παραβολή +οὐ +λαλέω +αὐτός +δέ +κατά +ἴδιος +ὁ +ἴδιος +μαθητής +ἐπιλύω +πᾶς +καί +λέγω +αὐτός +ἐν +ἐκεῖνος +ὁ +ἡμέρα +ὄψιος +γίνομαι +διέρχομαι +εἰς +ὁ +πέραν +καί +ἀφίημι +ὁ +ὄχλος +παραλαμβάνω +αὐτός +ὡς +εἰμί +ἐν +ὁ +πλοῖον +καί +ἄλλος +πλοῖον +εἰμί +μετά +αὐτός +καί +γίνομαι +λαῖλαψ +μέγας +ἄνεμος +καί +ὁ +κῦμα +ἐπιβάλλω +εἰς +ὁ +πλοῖον +ὥστε +ἤδη +γεμίζω +ὁ +πλοῖον +καί +αὐτός +εἰμί +ἐν +ὁ +πρύμνα +ἐπί +ὁ +προσκεφάλαιον +καθεύδω +καί +ἐγείρω +αὐτός +καί +λέγω +αὐτός +διδάσκαλος +οὐ +μέλει +σύ +ὅτι +ἀπόλλυμι +καί +διεγείρω +ἐπιτιμάω +ὁ +ἄνεμος +καί +λέγω +ὁ +θάλασσα +σιωπάω +φιμόω +καί +κοπάζω +ὁ +ἄνεμος +καί +γίνομαι +γαλήνη +μέγας +καί +λέγω +αὐτός +τίς +δειλός +εἰμί +οὕτω +πῶς +οὐ +ἔχω +πίστις +καί +φοβέω +φόβος +μέγας +καί +λέγω +πρός +ἀλλήλων +ἆρα +τίς +οὗτος +εἰμί +ὅτι +καί +ὁ +ἄνεμος +καί +ὁ +θάλασσα +ὑπακούω +αὐτός +καί +ἔρχομαι +εἰς +ὁ +πέραν +ὁ +θάλασσα +εἰς +ὁ +χώρα +ὁ +Γερασηνός +καί +ἐξέρχομαι +αὐτός +ἐκ +ὁ +πλοῖον +εὐθύς +ὑπαντάω +αὐτός +ἐκ +ὁ +μνημεῖον +ἄνθρωπος +ἐν +πνεῦμα +ἀκάθαρτος +ὅς +ὁ +κατοίκησις +ἔχω +ἐν +ὁ +μνῆμα +καί +οὐδέ +ἅλυσις +οὐκέτι +οὐδείς +δύναμαι +αὐτός +δέω +διά +ὁ +αὐτός +πολλάκις +πέδη +καί +ἅλυσις +δέω +καί +διασπάω +ὑπό +αὐτός +ὁ +ἅλυσις +καί +ὁ +πέδη +συντρίβω +καί +οὐδείς +ἰσχύω +αὐτός +δαμάζω +καί +διά +πᾶς +νύξ +καί +ἡμέρα +ἐν +ὁ +μνῆμα +καί +ἐν +ὁ +ὄρος +εἰμί +κράζω +καί +κατακόπτω +ἑαυτοῦ +λίθος +καί +ὁράω +ὁ +Ἰησοῦς +ἀπό +μακρόθεν +τρέχω +καί +προσκυνέω +αὐτός +καί +κράζω +φωνή +μέγας +λέγω +τίς +ἐγώ +καί +σύ +Ἰησοῦς +υἱός +ὁ +θεός +ὁ +ὕψιστος +ὁρκίζω +σύ +ὁ +θεός +μή +ἐγώ +βασανίζω +γάρ +λέγω +αὐτός +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +ἐξέρχομαι +ἐκ +ὁ +ἄνθρωπος +καί +ἐπερωτάω +αὐτός +τίς +ὄνομα +σύ +καί +λέγω +αὐτός +λεγιών +ὄνομα +ἐγώ +ὅτι +πολύς +εἰμί +καί +παρακαλέω +αὐτός +πολύς +ἵνα +μή +αὐτός +ἀποστέλλω +ἔξω +ὁ +χώρα +δέ +εἰμί +ἐκεῖ +πρός +ὁ +ὄρος +ἀγέλη +χοῖρος +μέγας +βόσκω +καί +παρακαλέω +αὐτός +λέγω +πέμπω +ἐγώ +εἰς +ὁ +χοῖρος +ἵνα +εἰς +αὐτός +εἰσέρχομαι +καί +ἐπιτρέπω +αὐτός +καί +ἐξέρχομαι +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +εἰσέρχομαι +εἰς +ὁ +χοῖρος +καί +ὁρμάω +ὁ +ἀγέλη +κατά +ὁ +κρημνός +εἰς +ὁ +θάλασσα +ὡς +δισχίλιοι +καί +πνίγω +ἐν +ὁ +θάλασσα +καί +ὁ +βόσκω +αὐτός +φεύγω +καί +ἀπαγγέλλω +εἰς +ὁ +πόλις +καί +εἰς +ὁ +ἀγρός +καί +ἔρχομαι +ὁράω +τίς +εἰμί +ὁ +γίνομαι +καί +ἔρχομαι +πρός +ὁ +Ἰησοῦς +καί +θεωρέω +ὁ +δαιμονίζομαι +ὁ +ἔχω +ὁ +λεγιών +κάθημαι +ἱματίζω +καί +σωφρονέω +καί +φοβέω +καί +διηγέομαι +αὐτός +ὁ +ὁράω +πῶς +γίνομαι +ὁ +δαιμονίζομαι +καί +περί +ὁ +χοῖρος +καί +ἄρχω +παρακαλέω +αὐτός +ἀπέρχομαι +ἀπό +ὁ +ὅριον +αὐτός +καί +ἐμβαίνω +αὐτός +εἰς +ὁ +πλοῖον +παρακαλέω +αὐτός +ὁ +δαιμονίζομαι +ἵνα +μετά +αὐτός +εἰμί +καί +οὐ +ἀφίημι +αὐτός +ἀλλά +λέγω +αὐτός +ὑπάγω +εἰς +ὁ +οἶκος +σύ +πρός +ὁ +σός +καί +ἀπαγγέλλω +αὐτός +ὅσος +ὁ +κύριος +σύ +ποιέω +καί +ἐλεέω +σύ +καί +ἀπέρχομαι +καί +ἄρχω +κηρύσσω +ἐν +ὁ +Δεκάπολις +ὅσος +ποιέω +αὐτός +ὁ +Ἰησοῦς +καί +πᾶς +θαυμάζω +καί +διαπεράω +ὁ +Ἰησοῦς +ἐν +ὁ +πλοῖον +πάλιν +εἰς +ὁ +πέραν +συνάγω +ὄχλος +πολύς +ἐπί +αὐτός +καί +εἰμί +παρά +ὁ +θάλασσα +καί +ἔρχομαι +εἷς +ὁ +ἀρχισυνάγωγος +ὄνομα +Ἰάϊρος +καί +ὁράω +αὐτός +πίπτω +πρός +ὁ +πούς +αὐτός +καί +παρακαλέω +αὐτός +πολύς +λέγω +ὅτι +ὁ +θυγάτριον +ἐγώ +ἐσχάτως +ἔχω +ἵνα +ἔρχομαι +ἐπιτίθημι +ὁ +χείρ +αὐτός +ἵνα +σῴζω +καί +ζάω +καί +ἀπέρχομαι +μετά +αὐτός +καί +ἀκολουθέω +αὐτός +ὄχλος +πολύς +καί +συνθλίβω +αὐτός +καί +γυνή +εἰμί +ἐν +ῥύσις +αἷμα +δώδεκα +ἔτος +καί +πολύς +πάσχω +ὑπό +πολύς +ἰατρός +καί +δαπανάω +ὁ +παρά +αὐτός +πᾶς +καί +μηδείς +ὠφελέω +ἀλλά +μᾶλλον +εἰς +ὁ +χείρων +ἔρχομαι +ἀκούω +ὁ +περί +ὁ +Ἰησοῦς +ἔρχομαι +ἐν +ὁ +ὄχλος +ὄπισθεν +ἅπτω +ὁ +ἱμάτιον +αὐτός +γάρ +λέγω +ὅτι +ἐάν +ἅπτω +κἄν +ὁ +ἱμάτιον +αὐτός +σῴζω +καί +εὐθύς +ξηραίνω +ὁ +πηγή +ὁ +αἷμα +αὐτός +καί +γινώσκω +ὁ +σῶμα +ὅτι +ἰάομαι +ἀπό +ὁ +μάστιξ +καί +εὐθύς +ὁ +Ἰησοῦς +ἐπιγινώσκω +ἐν +ἑαυτοῦ +ὁ +ἐκ +αὐτός +δύναμις +ἐξέρχομαι +ἐπιστρέφω +ἐν +ὁ +ὄχλος +λέγω +τίς +ἅπτω +ἐγώ +ὁ +ἱμάτιον +καί +λέγω +αὐτός +ὁ +μαθητής +αὐτός +βλέπω +ὁ +ὄχλος +συνθλίβω +σύ +καί +λέγω +τίς +ἐγώ +ἅπτω +καί +περιβλέπω +ὁράω +ὁ +οὗτος +ποιέω +δέ +ὁ +γυνή +φοβέω +καί +τρέμω +οἶδα +ὅς +γίνομαι +αὐτός +ἔρχομαι +καί +προσπίπτω +αὐτός +καί +λέγω +αὐτός +πᾶς +ὁ +ἀλήθεια +δέ +ὁ +λέγω +αὐτός +θυγάτηρ +ὁ +πίστις +σύ +σῴζω +σύ +ὑπάγω +εἰς +εἰρήνη +καί +εἰμί +ὑγιής +ἀπό +ὁ +μάστιξ +σύ +ἔτι +αὐτός +λαλέω +ἔρχομαι +ἀπό +ὁ +ἀρχισυνάγωγος +λέγω +ὅτι +ὁ +θυγάτηρ +σύ +ἀποθνῄσκω +τίς +ἔτι +σκύλλω +ὁ +διδάσκαλος +δέ +ὁ +Ἰησοῦς +παρακούω +ὁ +λόγος +λαλέω +λέγω +ὁ +ἀρχισυνάγωγος +μή +φοβέω +μόνος +πιστεύω +καί +οὐ +ἀφίημι +οὐδείς +μετά +αὐτός +συνακολουθέω +εἰ +μή +ὁ +Πέτρος +καί +Ἰάκωβος +καί +Ἰωάννης +ὁ +ἀδελφός +Ἰάκωβος +καί +ἔρχομαι +εἰς +ὁ +οἶκος +ὁ +ἀρχισυνάγωγος +καί +θεωρέω +θόρυβος +καί +κλαίω +καί +ἀλαλάζω +πολύς +καί +εἰσέρχομαι +λέγω +αὐτός +τίς +θορυβέω +καί +κλαίω +ὁ +παιδίον +οὐ +ἀποθνῄσκω +ἀλλά +καθεύδω +καί +καταγελάω +αὐτός +δέ +αὐτός +ἐκβάλλω +πᾶς +παραλαμβάνω +ὁ +πατήρ +ὁ +παιδίον +καί +ὁ +μήτηρ +καί +ὁ +μετά +αὐτός +καί +εἰσπορεύομαι +ὅπου +εἰμί +ὁ +παιδίον +καί +κρατέω +ὁ +χείρ +ὁ +παιδίον +λέγω +αὐτός +ταλιθά +κοῦμ +ὅς +εἰμί +μεθερμηνεύω +ὁ +κοράσιον +σύ +λέγω +ἐγείρω +καί +εὐθύς +ἀνίστημι +ὁ +κοράσιον +καί +περιπατέω +γάρ +εἰμί +ἔτος +δώδεκα +καί +ἐξίστημι +εὐθύς +ἔκστασις +μέγας +καί +διαστέλλω +αὐτός +πολύς +ἵνα +μηδείς +γινώσκω +οὗτος +καί +λέγω +δίδωμι +αὐτός +ἐσθίω +καί +ἐξέρχομαι +ἐκεῖθεν +καί +ἔρχομαι +εἰς +ὁ +πατρίς +αὐτός +καί +ἀκολουθέω +αὐτός +ὁ +μαθητής +αὐτός +καί +γίνομαι +σάββατον +ἄρχω +διδάσκω +ἐν +ὁ +συναγωγή +καί +ὁ +πολύς +ἀκούω +ἐκπλήσσω +λέγω +πόθεν +οὗτος +οὗτος +καί +τίς +ὁ +σοφία +ὁ +δίδωμι +οὗτος +καί +ὁ +δύναμις +τοιοῦτος +διά +ὁ +χείρ +αὐτός +γίνομαι +οὐ +οὗτος +εἰμί +ὁ +τέκτων +ὁ +υἱός +ὁ +Μαρία +καί +ἀδελφός +Ἰάκωβος +καί +Ἰωσῆς +καί +Ἰούδας +καί +Σίμων +καί +οὐ +εἰμί +ὁ +ἀδελφή +αὐτός +ὧδε +πρός +ἐγώ +καί +σκανδαλίζω +ἐν +αὐτός +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ὅτι +οὐ +εἰμί +προφήτης +ἄτιμος +εἰ +μή +ἐν +ὁ +πατρίς +αὐτός +καί +ἐν +ὁ +συγγενής +αὐτός +καί +ἐν +ὁ +οἰκία +αὐτός +καί +οὐ +δύναμαι +ἐκεῖ +ποιέω +οὐδείς +δύναμις +εἰ +μή +ὀλίγος +ἄρρωστος +ἐπιτίθημι +ὁ +χείρ +θεραπεύω +καί +θαυμάζω +διά +ὁ +ἀπιστία +αὐτός +καί +περιάγω +ὁ +κώμη +κύκλῳ +διδάσκω +καί +προσκαλέω +ὁ +δώδεκα +καί +ἄρχω +αὐτός +ἀποστέλλω +δύο +δύο +καί +δίδωμι +αὐτός +ἐξουσία +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +καί +παραγγέλλω +αὐτός +ἵνα +μηδείς +αἴρω +εἰς +ὁδός +εἰ +μή +ῥάβδος +μόνος +μή +ἄρτος +μή +πήρα +μή +εἰς +ὁ +ζώνη +χαλκός +ἀλλά +ὑποδέω +σανδάλιον +καί +μή +ἐνδύω +δύο +χιτών +καί +λέγω +αὐτός +ἐάν +ὅπου +εἰσέρχομαι +εἰς +οἰκία +ἐκεῖ +μένω +ἕως +ἄν +ἐξέρχομαι +ἐκεῖθεν +καί +ἄν +ὅς +τόπος +μή +δέχομαι +σύ +μηδέ +ἀκούω +σύ +ἐκπορεύομαι +ἐκεῖθεν +ἐκτινάσσω +ὁ +χοῦς +ὁ +ὑποκάτω +ὁ +πούς +σύ +εἰς +μαρτύριον +αὐτός +καί +ἐξέρχομαι +κηρύσσω +ἵνα +μετανοέω +καί +δαιμόνιον +πολύς +ἐκβάλλω +καί +ἀλείφω +ἔλαιον +πολύς +ἄρρωστος +καί +θεραπεύω +καί +ἀκούω +ὁ +βασιλεύς +Ἡρῴδης +γάρ +φανερός +γίνομαι +ὁ +ὄνομα +αὐτός +καί +λέγω +ὅτι +Ἰωάννης +ὁ +βαπτίζω +ἐγείρω +ἐκ +νεκρός +καί +διά +οὗτος +ἐνεργέω +ὁ +δύναμις +ἐν +αὐτός +δέ +ἄλλος +λέγω +ὅτι +Ἠλίας +εἰμί +δέ +ἄλλος +λέγω +ὅτι +προφήτης +ὡς +εἷς +ὁ +προφήτης +δέ +ἀκούω +ὁ +Ἡρῴδης +λέγω +ὅς +ἐγώ +ἀποκεφαλίζω +Ἰωάννης +οὗτος +ἐγείρω +γάρ +αὐτός +ὁ +Ἡρῴδης +ἀποστέλλω +κρατέω +ὁ +Ἰωάννης +καί +δέω +αὐτός +ἐν +φυλακή +διά +Ἡρῳδιάς +ὁ +γυνή +Φίλιππος +ὁ +ἀδελφός +αὐτός +ὅτι +αὐτός +γαμέω +γάρ +λέγω +ὁ +Ἰωάννης +ὁ +Ἡρῴδης +ὅτι +οὐ +ἔξεστι(ν) +σύ +ἔχω +ὁ +γυνή +ὁ +ἀδελφός +σύ +δέ +ὁ +Ἡρῳδιάς +ἐνέχω +αὐτός +καί +θέλω +αὐτός +ἀποκτείνω +καί +οὐ +δύναμαι +γάρ +ὁ +Ἡρῴδης +φοβέω +ὁ +Ἰωάννης +οἶδα +αὐτός +ἀνήρ +δίκαιος +καί +ἅγιος +καί +συντηρέω +αὐτός +καί +ἀκούω +αὐτός +πολύς +ἀπορέω +καί +ἡδέως +αὐτός +ἀκούω +καί +γίνομαι +ἡμέρα +εὔκαιρος +ὅτε +Ἡρῴδης +ὁ +γενέσια +αὐτός +δεῖπνον +ποιέω +ὁ +μεγιστάν +αὐτός +καί +ὁ +χιλίαρχος +καί +ὁ +πρῶτος +ὁ +Γαλιλαία +καί +εἰσέρχομαι +ὁ +θυγάτηρ +αὐτός +ὁ +Ἡρῳδιάς +καί +ὀρχέομαι +ἀρέσκω +ὁ +Ἡρῴδης +καί +ὁ +συνανάκειμαι +δέ +ὁ +βασιλεύς +λέγω +ὁ +κοράσιον +αἰτέω +ἐγώ +ἐάν +ὅς +θέλω +καί +δίδωμι +σύ +καί +ὀμνύω +αὐτός +ὅτι +ἐάν +ἐγώ +αἰτέω +δίδωμι +σύ +ἕως +ἥμισυς +ὁ +βασιλεία +ἐγώ +καί +ἐξέρχομαι +λέγω +ὁ +μήτηρ +αὐτός +τίς +αἰτέω +δέ +ὁ +λέγω +ὁ +κεφαλή +Ἰωάννης +ὁ +βαπτίζω +καί +εἰσέρχομαι +εὐθύς +μετά +σπουδή +πρός +ὁ +βασιλεύς +αἰτέω +λέγω +θέλω +ἵνα +ἐξαυτῆς +δίδωμι +ἐγώ +ἐπί +πίναξ +ὁ +κεφαλή +Ἰωάννης +ὁ +βαπτιστής +καί +περίλυπος +γίνομαι +ὁ +βασιλεύς +διά +ὁ +ὅρκος +καί +ὁ +ἀνάκειμαι +οὐ +θέλω +ἀθετέω +αὐτός +καί +εὐθύς +ἀποστέλλω +σπεκουλάτωρ +ὁ +βασιλεύς +ἐπιτάσσω +φέρω +ὁ +κεφαλή +αὐτός +καί +ἀπέρχομαι +ἀποκεφαλίζω +αὐτός +ἐν +ὁ +φυλακή +καί +φέρω +ὁ +κεφαλή +αὐτός +ἐπί +πίναξ +καί +δίδωμι +αὐτός +ὁ +κοράσιον +καί +ὁ +κοράσιον +δίδωμι +αὐτός +ὁ +μήτηρ +αὐτός +καί +ἀκούω +ὁ +μαθητής +αὐτός +ἔρχομαι +καί +αἴρω +ὁ +πτῶμα +αὐτός +καί +τίθημι +αὐτός +ἐν +μνημεῖον +καί +συνάγω +ὁ +ἀπόστολος +πρός +ὁ +Ἰησοῦς +καί +ἀπαγγέλλω +αὐτός +πᾶς +ὅσος +ποιέω +καί +ὅσος +διδάσκω +καί +λέγω +αὐτός +δεῦτε +σύ +αὐτός +κατά +ἴδιος +εἰς +ἔρημος +τόπος +καί +ἀναπαύω +ὀλίγος +γάρ +εἰμί +ὁ +ἔρχομαι +καί +ὁ +ὑπάγω +πολύς +καί +οὐδέ +ἐσθίω +εὐκαιρέω +καί +ἀπέρχομαι +ἐν +ὁ +πλοῖον +εἰς +ἔρημος +τόπος +κατά +ἴδιος +καί +ὁράω +αὐτός +ὑπάγω +καί +ἐπιγινώσκω +πολύς +καί +πεζῇ +ἀπό +πᾶς +ὁ +πόλις +συντρέχω +ἐκεῖ +καί +προέρχομαι +αὐτός +καί +ἐξέρχομαι +ὁράω +πολύς +ὄχλος +καί +σπλαγχνίζομαι +ἐπί +αὐτός +ὅτι +εἰμί +ὡς +πρόβατον +μή +ἔχω +ποιμήν +καί +ἄρχω +διδάσκω +αὐτός +πολύς +καί +ἤδη +ὥρα +πολύς +γίνομαι +προσέρχομαι +αὐτός +ὁ +μαθητής +αὐτός +λέγω +ὅτι +ἔρημος +εἰμί +ὁ +τόπος +καί +ἤδη +ὥρα +πολύς +ἀπολύω +αὐτός +ἵνα +ἀπέρχομαι +εἰς +ὁ +κύκλῳ +ἀγρός +καί +κώμη +ἀγοράζω +ἑαυτοῦ +τίς +ἐσθίω +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +δίδωμι +αὐτός +σύ +ἐσθίω +καί +λέγω +αὐτός +ἀπέρχομαι +ἀγοράζω +δηνάριον +διακόσιοι +ἄρτος +καί +δίδωμι +αὐτός +ἐσθίω +δέ +ὁ +λέγω +αὐτός +πόσος +ἄρτος +ἔχω +ὑπάγω +ὁράω +καί +γινώσκω +λέγω +πέντε +καί +δύο +ἰχθύς +καί +ἐπιτάσσω +αὐτός +ἀνακλίνω +πᾶς +συμπόσιον +συμπόσιον +ἐπί +ὁ +χλωρός +χόρτος +καί +ἀναπίπτω +πρασιά +πρασιά +κατά +ἑκατόν +καί +κατά +πεντήκοντα +καί +λαμβάνω +ὁ +πέντε +ἄρτος +καί +ὁ +δύο +ἰχθύς +ἀναβλέπω +εἰς +ὁ +οὐρανός +εὐλογέω +καί +κατακλάω +ὁ +ἄρτος +καί +δίδωμι +ὁ +μαθητής +ἵνα +παρατίθημι +αὐτός +καί +ὁ +δύο +ἰχθύς +μερίζω +πᾶς +καί +ἐσθίω +πᾶς +καί +χορτάζω +καί +αἴρω +κλάσμα +δώδεκα +κόφινος +πλήρωμα +καί +ἀπό +ὁ +ἰχθύς +καί +εἰμί +ὁ +ἐσθίω +ὁ +ἄρτος +πεντακισχίλιοι +ἀνήρ +καί +εὐθύς +ἀναγκάζω +ὁ +μαθητής +αὐτός +ἐμβαίνω +εἰς +ὁ +πλοῖον +καί +προάγω +εἰς +ὁ +πέραν +πρός +Βηθσαϊδά +ἕως +αὐτός +ἀπολύω +ὁ +ὄχλος +καί +ἀποτάσσω +αὐτός +ἀπέρχομαι +εἰς +ὁ +ὄρος +προσεύχομαι +καί +ὄψιος +γίνομαι +εἰμί +ὁ +πλοῖον +ἐν +μέσος +ὁ +θάλασσα +καί +αὐτός +μόνος +ἐπί +ὁ +γῆ +καί +ὁράω +αὐτός +βασανίζω +ἐν +ὁ +ἐλαύνω +γάρ +εἰμί +ὁ +ἄνεμος +ἐναντίος +αὐτός +περί +τέταρτος +φυλακή +ὁ +νύξ +ἔρχομαι +πρός +αὐτός +περιπατέω +ἐπί +ὁ +θάλασσα +καί +θέλω +παρέρχομαι +αὐτός +δέ +ὁ +ὁράω +αὐτός +ἐπί +ὁ +θάλασσα +περιπατέω +δοκέω +ὅτι +φάντασμα +εἰμί +καί +ἀνακράζω +γάρ +πᾶς +αὐτός +ὁράω +καί +ταράσσω +δέ +ὁ +εὐθύς +λαλέω +μετά +αὐτός +καί +λέγω +αὐτός +θαρσέω +ἐγώ +εἰμί +μή +φοβέω +καί +ἀναβαίνω +πρός +αὐτός +εἰς +ὁ +πλοῖον +καί +κοπάζω +ὁ +ἄνεμος +καί +λίαν +ἐκ +περισσοῦ +ἐν +ἑαυτοῦ +ἐξίστημι +γάρ +οὐ +συνίημι +ἐπί +ὁ +ἄρτος +ἀλλά +εἰμί +πωρόω +αὐτός +ὁ +καρδία +καί +διαπεράω +ἐπί +ὁ +γῆ +ἔρχομαι +εἰς +Γεννησαρέτ +καί +προσορμίζω +καί +ἐξέρχομαι +αὐτός +ἐκ +ὁ +πλοῖον +εὐθύς +ἐπιγινώσκω +αὐτός +περιτρέχω +ὅλος +ὁ +χώρα +ἐκεῖνος +καί +ἄρχω +ἐπί +ὁ +κράβαττος +ὁ +κακῶς +ἔχω +περιφέρω +ὅπου +ἀκούω +ὅτι +εἰμί +καί +ἄν +ὅπου +εἰσπορεύομαι +εἰς +κώμη +ἤ +εἰς +πόλις +ἤ +εἰς +ἀγρός +ἐν +ὁ +ἀγορά +τίθημι +ὁ +ἀσθενέω +καί +παρακαλέω +αὐτός +ἵνα +κἄν +ὁ +κράσπεδον +ὁ +ἱμάτιον +αὐτός +ἅπτω +καί +ἄν +ὅσος +ἅπτω +αὐτός +σῴζω +καί +συνάγω +πρός +αὐτός +ὁ +Φαρισαῖος +καί +τὶς +ὁ +γραμματεύς +ἔρχομαι +ἀπό +Ἱεροσόλυμα +καί +ὁράω +τὶς +ὁ +μαθητής +αὐτός +ὅτι +κοινός +χείρ +οὗτος +εἰμί +ἄνιπτος +ἐσθίω +ὁ +ἄρτος +γάρ +ὁ +Φαρισαῖος +καί +πᾶς +ὁ +Ἰουδαῖος +ἐάν +μή +πυγμή +νίπτω +ὁ +χείρ +οὐ +ἐσθίω +κρατέω +ὁ +παράδοσις +ὁ +πρεσβύτερος +καί +ἀπό +ἀγορά +ἐάν +μή +ῥαντίζω +οὐ +ἐσθίω +καί +ἄλλος +πολύς +εἰμί +ὅς +παραλαμβάνω +κρατέω +βαπτισμός +ποτήριον +καί +ξέστης +καί +χαλκίον +καί +ἐπερωτάω +αὐτός +ὁ +Φαρισαῖος +καί +ὁ +γραμματεύς +διά +τίς +οὐ +περιπατέω +ὁ +μαθητής +σύ +κατά +ὁ +παράδοσις +ὁ +πρεσβύτερος +ἀλλά +κοινός +χείρ +ἐσθίω +ὁ +ἄρτος +δέ +ὁ +λέγω +αὐτός +καλῶς +προφητεύω +Ἠσαΐας +περί +σύ +ὁ +ὑποκριτής +ὡς +γράφω +ὅτι +οὗτος +ὁ +λαός +ὁ +χεῖλος +ἐγώ +τιμάω +δέ +ὁ +καρδία +αὐτός +πόρρω +ἀπέχω +ἀπό +ἐγώ +δέ +μάτην +σέβω +ἐγώ +διδάσκω +διδασκαλία +ἔνταλμα +ἄνθρωπος +ἀφίημι +ὁ +ἐντολή +ὁ +θεός +κρατέω +ὁ +παράδοσις +ὁ +ἄνθρωπος +καί +λέγω +αὐτός +καλῶς +ἀθετέω +ὁ +ἐντολή +ὁ +θεός +ἵνα +ὁ +παράδοσις +σύ +τηρέω +γάρ +Μωϋσῆς +λέγω +τιμάω +ὁ +πατήρ +σύ +καί +ὁ +μήτηρ +σύ +καί +ὁ +κακολογέω +πατήρ +ἤ +μήτηρ +θάνατος +τελευτάω +δέ +σύ +λέγω +ἐάν +λέγω +ἄνθρωπος +ὁ +πατήρ +ἤ +ὁ +μήτηρ +κορβᾶν +ὅς +εἰμί +δῶρον +ἐάν +ὅς +ἐκ +ἐγώ +ὠφελέω +οὐκέτι +ἀφίημι +αὐτός +οὐδείς +ποιέω +ὁ +πατήρ +ἤ +ὁ +μήτηρ +ἀκυρόω +ὁ +λόγος +ὁ +θεός +ὁ +παράδοσις +σύ +ὅς +παραδίδωμι +καί +παρόμοιος +τοιοῦτος +πολύς +ποιέω +καί +προσκαλέω +πάλιν +ὁ +ὄχλος +λέγω +αὐτός +ἀκούω +ἐγώ +πᾶς +καί +συνίημι +οὐδείς +εἰμί +ἔξωθεν +ὁ +ἄνθρωπος +εἰσπορεύομαι +εἰς +αὐτός +ὅς +δύναμαι +κοινόω +αὐτός +ἀλλά +ὁ +ἐκ +ὁ +ἄνθρωπος +ἐκπορεύομαι +εἰμί +ὁ +κοινόω +ὁ +ἄνθρωπος +καί +ὅτε +εἰσέρχομαι +εἰς +οἶκος +ἀπό +ὁ +ὄχλος +ἐπερωτάω +αὐτός +ὁ +μαθητής +αὐτός +ὁ +παραβολή +καί +λέγω +αὐτός +οὕτω +καί +σύ +ἀσύνετος +εἰμί +οὐ +νοέω +ὅτι +πᾶς +ὁ +ἔξωθεν +εἰσπορεύομαι +εἰς +ὁ +ἄνθρωπος +οὐ +δύναμαι +αὐτός +κοινόω +ὅτι +οὐ +εἰσπορεύομαι +εἰς +αὐτός +ὁ +καρδία +ἀλλά +εἰς +ὁ +κοιλία +καί +εἰς +ὁ +ἀφεδρών +ἐκπορεύομαι +καθαρίζω +πᾶς +ὁ +βρῶμα +δέ +λέγω +ὅτι +ὁ +ἐκ +ὁ +ἄνθρωπος +ἐκπορεύομαι +ἐκεῖνος +κοινόω +ὁ +ἄνθρωπος +γάρ +ἔσωθεν +ἐκ +ὁ +καρδία +ὁ +ἄνθρωπος +ὁ +διαλογισμός +ὁ +κακός +ἐκπορεύομαι +πορνεία +κλοπή +φόνος +μοιχεία +πλεονεξία +πονηρία +δόλος +ἀσέλγεια +ὀφθαλμός +πονηρός +βλασφημία +ὑπερηφανία +ἀφροσύνη +πᾶς +οὗτος +ὁ +πονηρός +ἔσωθεν +ἐκπορεύομαι +καί +κοινόω +ὁ +ἄνθρωπος +δέ +ἐκεῖθεν +ἀνίστημι +ἀπέρχομαι +εἰς +ὁ +ὅριον +Τύρος +καί +εἰσέρχομαι +εἰς +οἰκία +οὐδείς +γινώσκω +θέλω +καί +οὐ +δύναμαι +λανθάνω +ἀλλά +εὐθύς +ἀκούω +περί +αὐτός +γυνή +ὅς +ὁ +θυγάτριον +αὐτός +ἔχω +πνεῦμα +ἀκάθαρτος +ἔρχομαι +προσπίπτω +πρός +ὁ +πούς +αὐτός +δέ +ὁ +γυνή +εἰμί +Ἑλληνίς +Συροφοινίκισσα +ὁ +γένος +καί +ἐρωτάω +αὐτός +ἵνα +ὁ +δαιμόνιον +ἐκβάλλω +ἐκ +ὁ +θυγάτηρ +αὐτός +καί +λέγω +αὐτός +ἀφίημι +πρῶτος +χορτάζω +ὁ +τέκνον +γάρ +οὐ +εἰμί +καλός +λαμβάνω +ὁ +ἄρτος +ὁ +τέκνον +καί +ὁ +κυνάριον +βάλλω +δέ +ὁ +ἀποκρίνομαι +καί +λέγω +αὐτός +ναί +κύριος +καί +ὁ +κυνάριον +ὑποκάτω +ὁ +τράπεζα +ἐσθίω +ἀπό +ὁ +ψιχίον +ὁ +παιδίον +καί +λέγω +αὐτός +διά +οὗτος +ὁ +λόγος +ὑπάγω +ἐξέρχομαι +ἐκ +ὁ +θυγάτηρ +σύ +ὁ +δαιμόνιον +καί +ἀπέρχομαι +εἰς +ὁ +οἶκος +αὐτός +εὑρίσκω +ὁ +παιδίον +βάλλω +ἐπί +ὁ +κλίνη +καί +ὁ +δαιμόνιον +ἐξέρχομαι +καί +πάλιν +ἐξέρχομαι +ἐκ +ὁ +ὅριον +Τύρος +ἔρχομαι +διά +Σιδών +εἰς +ὁ +θάλασσα +ὁ +Γαλιλαία +ἀνά +μέσος +ὁ +ὅριον +Δεκάπολις +καί +φέρω +αὐτός +κωφός +καί +μογιλάλος +καί +παρακαλέω +αὐτός +ἵνα +ἐπιτίθημι +αὐτός +ὁ +χείρ +καί +ἀπολαμβάνω +αὐτός +ἀπό +ὁ +ὄχλος +κατά +ἴδιος +βάλλω +ὁ +δάκτυλος +αὐτός +εἰς +ὁ +οὖς +αὐτός +καί +πτύω +ἅπτω +ὁ +γλῶσσα +αὐτός +καί +ἀναβλέπω +εἰς +ὁ +οὐρανός +στενάζω +καί +λέγω +αὐτός +ἐφφαθά +ὅς +εἰμί +διανοίγω +καί +ἀνοίγω +αὐτός +ὁ +ἀκοή +καί +εὐθύς +λύω +ὁ +δεσμός +ὁ +γλῶσσα +αὐτός +καί +λαλέω +ὀρθῶς +καί +διαστέλλω +αὐτός +ἵνα +μηδείς +λέγω +δέ +ὅσος +αὐτός +διαστέλλω +αὐτός +μᾶλλον +περισσός +κηρύσσω +καί +ὑπερπερισσῶς +ἐκπλήσσω +λέγω +καλῶς +πᾶς +ποιέω +καί +ποιέω +ὁ +κωφός +ἀκούω +καί +ἄλαλος +λαλέω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +πάλιν +πολύς +ὄχλος +εἰμί +καί +μή +ἔχω +τίς +ἐσθίω +προσκαλέω +ὁ +μαθητής +λέγω +αὐτός +σπλαγχνίζομαι +ἐπί +ὁ +ὄχλος +ὅτι +ἤδη +ἡμέρα +τρεῖς +προσμένω +ἐγώ +καί +οὐ +ἔχω +τίς +ἐσθίω +καί +ἐάν +ἀπολύω +αὐτός +νῆστις +εἰς +οἶκος +αὐτός +ἐκλύω +ἐν +ὁ +ὁδός +καί +τὶς +αὐτός +ἀπό +μακρόθεν +εἰμί +καί +ἀποκρίνομαι +αὐτός +ὁ +μαθητής +αὐτός +ὅτι +πόθεν +δύναμαι +τὶς +οὗτος +ὧδε +χορτάζω +ἄρτος +ἐπί +ἐρημία +καί +ἐρωτάω +αὐτός +πόσος +ἄρτος +ἔχω +δέ +ὁ +λέγω +ἑπτά +καί +παραγγέλλω +ὁ +ὄχλος +ἀναπίπτω +ἐπί +ὁ +γῆ +καί +λαμβάνω +ὁ +ἑπτά +ἄρτος +εὐχαριστέω +κλάω +καί +δίδωμι +ὁ +μαθητής +αὐτός +ἵνα +παρατίθημι +καί +παρατίθημι +ὁ +ὄχλος +καί +ἔχω +ἰχθύδιον +ὀλίγος +καί +εὐλογέω +αὐτός +λέγω +καί +οὗτος +παρατίθημι +καί +ἐσθίω +καί +χορτάζω +καί +αἴρω +περίσσευμα +κλάσμα +ἑπτά +σπυρίς +δέ +εἰμί +ὡς +τετρακισχίλιοι +καί +ἀπολύω +αὐτός +καί +εὐθύς +ἐμβαίνω +εἰς +ὁ +πλοῖον +μετά +ὁ +μαθητής +αὐτός +ἔρχομαι +εἰς +ὁ +μέρος +Δαλμανουθά +καί +ἐξέρχομαι +ὁ +Φαρισαῖος +καί +ἄρχω +συζητέω +αὐτός +ζητέω +παρά +αὐτός +σημεῖον +ἀπό +ὁ +οὐρανός +πειράζω +αὐτός +καί +ἀναστενάζω +ὁ +πνεῦμα +αὐτός +λέγω +τίς +ὁ +γενεά +οὗτος +ζητέω +σημεῖον +ἀμήν +λέγω +σύ +εἰ +δίδωμι +ὁ +γενεά +οὗτος +σημεῖον +καί +ἀφίημι +αὐτός +πάλιν +ἐμβαίνω +ἀπέρχομαι +εἰς +ὁ +πέραν +καί +ἐπιλανθάνομαι +λαμβάνω +ἄρτος +καί +εἰ +μή +εἷς +ἄρτος +οὐ +ἔχω +μετά +ἑαυτοῦ +ἐν +ὁ +πλοῖον +καί +διαστέλλω +αὐτός +λέγω +ὁράω +βλέπω +ἀπό +ὁ +ζύμη +ὁ +Φαρισαῖος +καί +ὁ +ζύμη +Ἡρῴδης +καί +διαλογίζομαι +πρός +ἀλλήλων +ὅτι +ἄρτος +οὐ +ἔχω +καί +γινώσκω +λέγω +αὐτός +τίς +διαλογίζομαι +ὅτι +ἄρτος +οὐ +ἔχω +οὔπω +νοέω +οὐδέ +συνίημι +πωρόω +ἔχω +ὁ +καρδία +σύ +ὀφθαλμός +ἔχω +οὐ +βλέπω +καί +οὖς +ἔχω +οὐ +ἀκούω +καί +οὐ +μνημονεύω +ὅτε +ὁ +πέντε +ἄρτος +κλάω +εἰς +ὁ +πεντακισχίλιοι +πόσος +κόφινος +κλάσμα +πλήρης +αἴρω +λέγω +αὐτός +δώδεκα +ὅτε +ὁ +ἑπτά +εἰς +ὁ +τετρακισχίλιοι +πόσος +σπυρίς +πλήρωμα +κλάσμα +αἴρω +καί +λέγω +ἑπτά +καί +λέγω +αὐτός +οὔπω +συνίημι +καί +ἔρχομαι +εἰς +Βηθσαϊδά +καί +φέρω +αὐτός +τυφλός +καί +παρακαλέω +αὐτός +ἵνα +αὐτός +ἅπτω +καί +ἐπιλαμβάνομαι +ὁ +χείρ +ὁ +τυφλός +ἐκφέρω +αὐτός +ἔξω +ὁ +κώμη +καί +πτύω +εἰς +ὁ +ὄμμα +αὐτός +ἐπιτίθημι +ὁ +χείρ +αὐτός +ἐπερωτάω +αὐτός +εἰ +τὶς +βλέπω +καί +ἀναβλέπω +λέγω +βλέπω +ὁ +ἄνθρωπος +ὅτι +ὡς +δένδρον +περιπατέω +ὁράω +εἶτα +πάλιν +ἐπιτίθημι +ὁ +χείρ +ἐπί +ὁ +ὀφθαλμός +αὐτός +καί +διαβλέπω +καί +ἀποκαθιστάνω +καί +ἐμβλέπω +τηλαυγῶς +ἅπας +καί +ἀποστέλλω +αὐτός +εἰς +οἶκος +αὐτός +λέγω +μηδέ +εἰς +ὁ +κώμη +εἰσέρχομαι +καί +ἐξέρχομαι +ὁ +Ἰησοῦς +καί +ὁ +μαθητής +αὐτός +εἰς +ὁ +κώμη +Καισάρεια +ὁ +Φίλιππος +καί +ἐν +ὁ +ὁδός +ἐπερωτάω +ὁ +μαθητής +αὐτός +λέγω +αὐτός +τίς +ἐγώ +εἰμί +λέγω +ὁ +ἄνθρωπος +δέ +ὁ +λέγω +αὐτός +λέγω +ὅτι +Ἰωάννης +ὁ +βαπτιστής +καί +ἄλλος +Ἠλίας +δέ +ἄλλος +ὅτι +εἷς +ὁ +προφήτης +καί +αὐτός +ἐπερωτάω +αὐτός +δέ +σύ +τίς +ἐγώ +εἰμί +λέγω +ἀποκρίνομαι +ὁ +Πέτρος +λέγω +αὐτός +σύ +εἰμί +ὁ +Χριστός +καί +ἐπιτιμάω +αὐτός +ἵνα +μηδείς +λέγω +περί +αὐτός +καί +ἄρχω +διδάσκω +αὐτός +ὅτι +δεῖ +ὁ +υἱός +ὁ +ἄνθρωπος +πολύς +πάσχω +καί +ἀποδοκιμάζω +ὑπό +ὁ +πρεσβύτερος +καί +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +καί +ἀποκτείνω +καί +μετά +τρεῖς +ἡμέρα +ἀνίστημι +καί +παρρησία +ὁ +λόγος +λαλέω +καί +ὁ +Πέτρος +προσλαμβάνω +αὐτός +ἄρχω +ἐπιτιμάω +αὐτός +δέ +ὁ +ἐπιστρέφω +καί +ὁράω +ὁ +μαθητής +αὐτός +ἐπιτιμάω +Πέτρος +καί +λέγω +ὑπάγω +ὀπίσω +ἐγώ +Σατανᾶς +ὅτι +οὐ +φρονέω +ὁ +ὁ +θεός +ἀλλά +ὁ +ὁ +ἄνθρωπος +καί +προσκαλέω +ὁ +ὄχλος +σύν +ὁ +μαθητής +αὐτός +λέγω +αὐτός +εἰ +τὶς +θέλω +ὀπίσω +ἐγώ +ἔρχομαι +ἀπαρνέομαι +ἑαυτοῦ +καί +αἴρω +ὁ +σταυρός +αὐτός +καί +ἀκολουθέω +ἐγώ +γάρ +ἐάν +ὅς +θέλω +ὁ +ψυχή +αὐτός +σῴζω +ἀπόλλυμι +αὐτός +δέ +ἄν +ὅς +ἀπόλλυμι +ὁ +ψυχή +αὐτός +ἕνεκα +ἐγώ +καί +ὁ +εὐαγγέλιον +σῴζω +αὐτός +γάρ +τίς +ὠφελέω +ἄνθρωπος +κερδαίνω +ὁ +κόσμος +ὅλος +καί +ζημιόω +ὁ +ψυχή +αὐτός +γάρ +τίς +δίδωμι +ἄνθρωπος +ἀντάλλαγμα +ὁ +ψυχή +αὐτός +γάρ +ἐάν +ὅς +ἐπαισχύνομαι +ἐγώ +καί +ὁ +ἐμός +λόγος +ἐν +ὁ +γενεά +οὗτος +ὁ +μοιχαλίς +καί +ἁμαρτωλός +καί +ὁ +υἱός +ὁ +ἄνθρωπος +ἐπαισχύνομαι +αὐτός +ὅταν +ἔρχομαι +ἐν +ὁ +δόξα +ὁ +πατήρ +αὐτός +μετά +ὁ +ἄγγελος +ὁ +ἅγιος +καί +λέγω +αὐτός +ἀμήν +λέγω +σύ +ὅτι +εἰμί +τὶς +ὁ +ὧδε +ἵστημι +ὅστις +οὐ +μή +γεύομαι +θάνατος +ἕως +ἄν +ὁράω +ὁ +βασιλεία +ὁ +θεός +ἔρχομαι +ἐν +δύναμις +καί +μετά +ἡμέρα +ἕξ +παραλαμβάνω +ὁ +Ἰησοῦς +ὁ +Πέτρος +καί +ὁ +Ἰάκωβος +καί +Ἰωάννης +καί +ἀναφέρω +αὐτός +εἰς +ὄρος +ὑψηλός +κατά +ἴδιος +μόνος +καί +μεταμορφόω +ἔμπροσθεν +αὐτός +καί +ὁ +ἱμάτιον +αὐτός +γίνομαι +στίλβω +λευκός +λίαν +οἷος +γναφεύς +ἐπί +ὁ +γῆ +οὐ +δύναμαι +οὕτω +λευκαίνω +καί +ὁράω +αὐτός +Ἠλίας +σύν +Μωϋσῆς +καί +εἰμί +συλλαλέω +ὁ +Ἰησοῦς +καί +ἀποκρίνομαι +ὁ +Πέτρος +λέγω +ὁ +Ἰησοῦς +ῥαββί +καλός +εἰμί +ἐγώ +ὧδε +εἰμί +καί +ποιέω +τρεῖς +σκηνή +σύ +εἷς +καί +Μωϋσῆς +εἷς +καί +Ἠλίας +εἷς +γάρ +οὐ +οἶδα +τίς +ἀποκρίνομαι +γάρ +ἔκφοβος +γίνομαι +καί +γίνομαι +νεφέλη +ἐπισκιάζω +αὐτός +καί +γίνομαι +φωνή +ἐκ +ὁ +νεφέλη +οὗτος +εἰμί +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἀκούω +αὐτός +καί +ἐξάπινα +περιβλέπω +οὐκέτι +οὐδείς +ὁράω +ἀλλά +ὁ +Ἰησοῦς +μόνος +μετά +ἑαυτοῦ +καί +καταβαίνω +αὐτός +ἐκ +ὁ +ὄρος +διαστέλλω +αὐτός +ἵνα +μηδείς +ὅς +ὁράω +διηγέομαι +εἰ +μή +ὅταν +ὁ +υἱός +ὁ +ἄνθρωπος +ἐκ +νεκρός +ἀνίστημι +καί +ὁ +λόγος +κρατέω +πρός +ἑαυτοῦ +συζητέω +τίς +εἰμί +ὁ +ἐκ +νεκρός +ἀνίστημι +καί +ἐπερωτάω +αὐτός +λέγω +ὅτι +λέγω +ὁ +γραμματεύς +ὅτι +δεῖ +Ἠλίας +ἔρχομαι +πρῶτος +δέ +ὁ +φημί +αὐτός +μέν +Ἠλίας +ἔρχομαι +πρῶτος +ἀποκαθιστάνω +πᾶς +καί +πῶς +γράφω +ἐπί +ὁ +υἱός +ὁ +ἄνθρωπος +ἵνα +πολύς +πάσχω +καί +ἐξουδενέω +ἀλλά +λέγω +σύ +ὅτι +καί +Ἠλίας +ἔρχομαι +καί +ποιέω +αὐτός +ὅσος +θέλω +καθώς +γράφω +ἐπί +αὐτός +καί +ἔρχομαι +πρός +ὁ +μαθητής +ὁράω +ὄχλος +πολύς +περί +αὐτός +καί +γραμματεύς +συζητέω +πρός +αὐτός +καί +εὐθύς +πᾶς +ὁ +ὄχλος +ὁράω +αὐτός +ἐκθαμβέω +καί +προστρέχω +ἀσπάζομαι +αὐτός +καί +ἐπερωτάω +αὐτός +τίς +συζητέω +πρός +αὐτός +καί +ἀποκρίνομαι +αὐτός +εἷς +ἐκ +ὁ +ὄχλος +διδάσκαλος +φέρω +ὁ +υἱός +ἐγώ +πρός +σύ +ἔχω +πνεῦμα +ἄλαλος +καί +ἐάν +ὅπου +αὐτός +καταλαμβάνω +ῥήγνυμι +αὐτός +καί +ἀφρίζω +καί +τρίζω +ὁ +ὀδούς +καί +ξηραίνω +καί +λέγω +ὁ +μαθητής +σύ +ἵνα +αὐτός +ἐκβάλλω +καί +οὐ +ἰσχύω +δέ +ὁ +ἀποκρίνομαι +αὐτός +λέγω +ὦ +γενεά +ἄπιστος +ἕως +πότε +πρός +σύ +εἰμί +ἕως +πότε +ἀνέχω +σύ +φέρω +αὐτός +πρός +ἐγώ +καί +φέρω +αὐτός +πρός +αὐτός +καί +ὁράω +αὐτός +ὁ +πνεῦμα +εὐθύς +συσπαράσσω +αὐτός +καί +πίπτω +ἐπί +ὁ +γῆ +κυλίω +ἀφρίζω +καί +ἐπερωτάω +ὁ +πατήρ +αὐτός +πόσος +χρόνος +εἰμί +ὡς +οὗτος +γίνομαι +αὐτός +δέ +ὁ +λέγω +ἐκ +παιδιόθεν +καί +πολλάκις +καί +εἰς +πῦρ +αὐτός +βάλλω +καί +εἰς +ὕδωρ +ἵνα +ἀπόλλυμι +αὐτός +ἀλλά +εἰ +τὶς +δύναμαι +βοηθέω +ἐγώ +σπλαγχνίζομαι +ἐπί +ἐγώ +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ὁ +εἰ +δύναμαι +πᾶς +δυνατός +ὁ +πιστεύω +εὐθύς +κράζω +ὁ +πατήρ +ὁ +παιδίον +λέγω +πιστεύω +βοηθέω +ἐγώ +ὁ +ἀπιστία +δέ +ὁ +Ἰησοῦς +ὁράω +ὅτι +ἐπισυντρέχω +ὄχλος +ἐπιτιμάω +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +λέγω +αὐτός +ὁ +ἄλαλος +καί +κωφός +πνεῦμα +ἐγώ +ἐπιτάσσω +σύ +ἐξέρχομαι +ἐκ +αὐτός +καί +μηκέτι +εἰσέρχομαι +εἰς +αὐτός +καί +κράζω +καί +πολύς +σπαράσσω +ἐξέρχομαι +καί +γίνομαι +ὡσεί +νεκρός +ὥστε +ὁ +πολύς +λέγω +ὅτι +ἀποθνῄσκω +δέ +ὁ +Ἰησοῦς +κρατέω +ὁ +χείρ +αὐτός +ἐγείρω +αὐτός +καί +ἀνίστημι +καί +εἰσέρχομαι +αὐτός +εἰς +οἶκος +ὁ +μαθητής +αὐτός +κατά +ἴδιος +ἐπερωτάω +αὐτός +ὅτι +ἐγώ +οὐ +δύναμαι +ἐκβάλλω +αὐτός +καί +λέγω +αὐτός +οὗτος +ὁ +γένος +ἐν +οὐδείς +δύναμαι +ἐξέρχομαι +εἰ +μή +ἐν +προσευχή +κἀκεῖθεν +ἐξέρχομαι +παραπορεύομαι +διά +ὁ +Γαλιλαία +καί +οὐ +θέλω +ἵνα +τὶς +γινώσκω +γάρ +διδάσκω +ὁ +μαθητής +αὐτός +καί +λέγω +αὐτός +ὅτι +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +εἰς +χείρ +ἄνθρωπος +καί +ἀποκτείνω +αὐτός +καί +ἀποκτείνω +μετά +τρεῖς +ἡμέρα +ἀνίστημι +δέ +ὁ +ἀγνοέω +ὁ +ῥῆμα +καί +φοβέω +αὐτός +ἐπερωτάω +καί +ἔρχομαι +εἰς +Καφαρναούμ +καί +ἐν +ὁ +οἰκία +γίνομαι +ἐπερωτάω +αὐτός +τίς +ἐν +ὁ +ὁδός +διαλογίζομαι +δέ +ὁ +σιωπάω +γάρ +πρός +ἀλλήλων +διαλέγομαι +ἐν +ὁ +ὁδός +τίς +μέγας +καί +καθίζω +φωνέω +ὁ +δώδεκα +καί +λέγω +αὐτός +εἰ +τὶς +θέλω +πρῶτος +εἰμί +εἰμί +πᾶς +ἔσχατος +καί +πᾶς +διάκονος +καί +λαμβάνω +παιδίον +ἵστημι +αὐτός +ἐν +μέσος +αὐτός +καί +ἐναγκαλίζομαι +αὐτός +λέγω +αὐτός +ἄν +ὅς +εἷς +ὁ +τοιοῦτος +παιδίον +δέχομαι +ἐπί +ὁ +ὄνομα +ἐγώ +ἐγώ +δέχομαι +καί +ἄν +ὅς +ἐγώ +δέχομαι +οὐ +ἐγώ +δέχομαι +ἀλλά +ὁ +ἀποστέλλω +ἐγώ +φημί +αὐτός +ὁ +Ἰωάννης +διδάσκαλος +ὁράω +τὶς +ἐν +ὁ +ὄνομα +σύ +ἐκβάλλω +δαιμόνιον +ὅς +οὐ +ἀκολουθέω +ἐγώ +καί +κωλύω +αὐτός +ὅτι +οὐ +ἀκολουθέω +ἐγώ +δέ +ὁ +Ἰησοῦς +λέγω +μή +κωλύω +αὐτός +γάρ +οὐδείς +εἰμί +ὅς +ποιέω +δύναμις +ἐπί +ὁ +ὄνομα +ἐγώ +καί +δύναμαι +ταχύς +κακολογέω +ἐγώ +γάρ +ὅς +οὐ +εἰμί +κατά +ἐγώ +ὑπέρ +ἐγώ +εἰμί +γάρ +ἄν +ὅς +ποτίζω +σύ +ποτήριον +ὕδωρ +ἐν +ὄνομα +ὅτι +Χριστός +εἰμί +ἀμήν +λέγω +σύ +ὅτι +οὐ +μή +ἀπόλλυμι +ὁ +μισθός +αὐτός +καί +ἄν +ὅς +σκανδαλίζω +εἷς +ὁ +μικρός +οὗτος +ὁ +πιστεύω +καλός +εἰμί +αὐτός +μᾶλλον +εἰ +περίκειμαι +μύλος +ὀνικός +περί +ὁ +τράχηλος +αὐτός +καί +βάλλω +εἰς +ὁ +θάλασσα +καί +ἐάν +σκανδαλίζω +σύ +ὁ +χείρ +σύ +ἀποκόπτω +αὐτός +καλός +εἰμί +σύ +κυλλός +εἰσέρχομαι +εἰς +ὁ +ζωή +ἤ +ὁ +δύο +χείρ +ἔχω +ἀπέρχομαι +εἰς +ὁ +γέεννα +εἰς +ὁ +πῦρ +ὁ +ἄσβεστος +καί +ἐάν +ὁ +πούς +σύ +σκανδαλίζω +σύ +ἀποκόπτω +αὐτός +καλός +εἰμί +σύ +εἰσέρχομαι +εἰς +ὁ +ζωή +χωλός +ἤ +ὁ +δύο +πούς +ἔχω +βάλλω +εἰς +ὁ +γέεννα +καί +ἐάν +ὁ +ὀφθαλμός +σύ +σκανδαλίζω +σύ +ἐκβάλλω +αὐτός +καλός +εἰμί +σύ +μονόφθαλμος +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +θεός +ἤ +δύο +ὀφθαλμός +ἔχω +βάλλω +εἰς +ὁ +γέεννα +ὅπου +ὁ +σκώληξ +αὐτός +οὐ +τελευτάω +καί +ὁ +πῦρ +οὐ +σβέννυμι +γάρ +πᾶς +πῦρ +ἁλίζω +καλός +ὁ +ἅλας +δέ +ἐάν +ὁ +ἅλας +ἄναλος +γίνομαι +ἐν +τίς +αὐτός +ἀρτύω +ἔχω +ἐν +ἑαυτοῦ +ἅλας +καί +εἰρηνεύω +ἐν +ἀλλήλων +καί +ἐκεῖθεν +ἀνίστημι +ἔρχομαι +εἰς +ὁ +ὅριον +ὁ +Ἰουδαία +καί +πέραν +ὁ +Ἰορδάνης +καί +συμπορεύομαι +πάλιν +ὄχλος +πρός +αὐτός +καί +ὡς +εἴωθα +πάλιν +διδάσκω +αὐτός +καί +προσέρχομαι +Φαρισαῖος +ἐπερωτάω +αὐτός +εἰ +ἔξεστι(ν) +ἀνήρ +γυνή +ἀπολύω +πειράζω +αὐτός +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +τίς +σύ +ἐντέλλομαι +Μωϋσῆς +δέ +ὁ +λέγω +ἐπιτρέπω +Μωϋσῆς +βιβλίον +ἀποστάσιον +γράφω +καί +ἀπολύω +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +πρός +ὁ +σκληροκαρδία +σύ +γράφω +σύ +ὁ +ἐντολή +οὗτος +δέ +ἀπό +ἀρχή +κτίσις +ἄρσην +καί +θῆλυς +ποιέω +αὐτός +ἕνεκα +οὗτος +καταλείπω +ἄνθρωπος +ὁ +πατήρ +αὐτός +καί +ὁ +μήτηρ +καί +εἰμί +ὁ +δύο +εἰς +σάρξ +εἷς +ὥστε +οὐκέτι +εἰμί +δύο +ἀλλά +εἷς +σάρξ +οὖν +ὅς +ὁ +θεός +συζεύγνυμι +ἄνθρωπος +μή +χωρίζω +καί +εἰς +ὁ +οἰκία +πάλιν +ὁ +μαθητής +περί +οὗτος +ἐπερωτάω +αὐτός +καί +λέγω +αὐτός +ἄν +ὅς +ἀπολύω +ὁ +γυνή +αὐτός +καί +γαμέω +ἄλλος +μοιχάω +ἐπί +αὐτός +καί +ἐάν +αὐτός +ἀπολύω +ὁ +ἀνήρ +αὐτός +γαμέω +ἄλλος +μοιχάω +καί +προσφέρω +αὐτός +παιδίον +ἵνα +αὐτός +ἅπτω +δέ +ὁ +μαθητής +ἐπιτιμάω +αὐτός +δέ +ὁράω +ὁ +Ἰησοῦς +ἀγανακτέω +καί +λέγω +αὐτός +ἀφίημι +ὁ +παιδίον +ἔρχομαι +πρός +ἐγώ +μή +κωλύω +αὐτός +γάρ +ὁ +τοιοῦτος +εἰμί +ὁ +βασιλεία +ὁ +θεός +ἀμήν +λέγω +σύ +ἄν +ὅς +μή +δέχομαι +ὁ +βασιλεία +ὁ +θεός +ὡς +παιδίον +οὐ +μή +εἰσέρχομαι +εἰς +αὐτός +καί +ἐναγκαλίζομαι +αὐτός +κατευλογέω +τίθημι +ὁ +χείρ +ἐπί +αὐτός +καί +ἐκπορεύομαι +αὐτός +εἰς +ὁδός +εἷς +προστρέχω +καί +γονυπετέω +αὐτός +ἐπερωτάω +αὐτός +διδάσκαλος +ἀγαθός +τίς +ποιέω +ἵνα +ζωή +αἰώνιος +κληρονομέω +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +τίς +ἐγώ +λέγω +ἀγαθός +οὐδείς +ἀγαθός +εἰ +μή +εἷς +ὁ +θεός +ὁ +ἐντολή +οἶδα +μή +φονεύω +μή +μοιχεύω +μή +κλέπτω +μή +ψευδομαρτυρέω +μή +ἀποστερέω +τιμάω +ὁ +πατήρ +σύ +καί +ὁ +μήτηρ +δέ +ὁ +φημί +αὐτός +διδάσκαλος +οὗτος +πᾶς +φυλάσσω +ἐκ +νεότης +ἐγώ +δέ +ὁ +Ἰησοῦς +ἐμβλέπω +αὐτός +ἀγαπάω +αὐτός +καί +λέγω +αὐτός +εἷς +σύ +ὑστερέω +ὑπάγω +ὅσος +ἔχω +πωλέω +καί +δίδωμι +ὁ +πτωχός +καί +ἔχω +θησαυρός +ἐν +οὐρανός +καί +δεῦρο +ἀκολουθέω +ἐγώ +δέ +ὁ +στυγνάζω +ἐπί +ὁ +λόγος +ἀπέρχομαι +λυπέω +γάρ +εἰμί +ἔχω +κτῆμα +πολύς +καί +περιβλέπω +ὁ +Ἰησοῦς +λέγω +ὁ +μαθητής +αὐτός +πῶς +δυσκόλως +ὁ +ὁ +χρῆμα +ἔχω +εἰς +ὁ +βασιλεία +ὁ +θεός +εἰσέρχομαι +δέ +ὁ +μαθητής +θαμβέω +ἐπί +ὁ +λόγος +αὐτός +δέ +ὁ +Ἰησοῦς +πάλιν +ἀποκρίνομαι +λέγω +αὐτός +τέκνον +πῶς +δύσκολος +εἰμί +εἰς +ὁ +βασιλεία +ὁ +θεός +εἰσέρχομαι +εὔκοπος +εἰμί +κάμηλος +διά +ὁ +τρυμαλιά +ὁ +ῥαφίς +διέρχομαι +ἤ +πλούσιος +εἰς +ὁ +βασιλεία +ὁ +θεός +εἰσέρχομαι +δέ +ὁ +περισσῶς +ἐκπλήσσω +λέγω +πρός +ἑαυτοῦ +καί +τίς +δύναμαι +σῴζω +ἐμβλέπω +αὐτός +ὁ +Ἰησοῦς +λέγω +παρά +ἄνθρωπος +ἀδύνατος +ἀλλά +οὐ +παρά +θεός +γάρ +πᾶς +δυνατός +παρά +ὁ +θεός +ἄρχω +ὁ +Πέτρος +λέγω +αὐτός +ὁράω +ἐγώ +ἀφίημι +πᾶς +καί +ἀκολουθέω +σύ +φημί +ὁ +Ἰησοῦς +ἀμήν +λέγω +σύ +οὐδείς +εἰμί +ὅς +ἀφίημι +οἰκία +ἤ +ἀδελφός +ἤ +ἀδελφή +ἤ +μήτηρ +ἤ +πατήρ +ἤ +τέκνον +ἤ +ἀγρός +ἕνεκα +ἐγώ +καί +ἕνεκα +ὁ +εὐαγγέλιον +ἐάν +μή +λαμβάνω +νῦν +ἐν +ὁ +καιρός +οὗτος +ἑκατονταπλασίων +οἰκία +καί +ἀδελφός +καί +ἀδελφή +καί +μήτηρ +καί +τέκνον +καί +ἀγρός +μετά +διωγμός +καί +ἐν +ὁ +αἰών +ὁ +ἔρχομαι +ζωή +αἰώνιος +δέ +πολύς +πρῶτος +εἰμί +ἔσχατος +καί +ὁ +ἔσχατος +πρῶτος +δέ +εἰμί +ἐν +ὁ +ὁδός +ἀναβαίνω +εἰς +Ἱεροσόλυμα +καί +εἰμί +προάγω +αὐτός +ὁ +Ἰησοῦς +καί +θαμβέω +δέ +ὁ +ἀκολουθέω +φοβέω +καί +παραλαμβάνω +πάλιν +ὁ +δώδεκα +ἄρχω +αὐτός +λέγω +ὁ +μέλλω +αὐτός +συμβαίνω +ὅτι +ὁράω +ἀναβαίνω +εἰς +Ἱεροσόλυμα +καί +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +καί +κατακρίνω +αὐτός +θάνατος +καί +παραδίδωμι +αὐτός +ὁ +ἔθνος +καί +ἐμπαίζω +αὐτός +καί +ἐμπτύω +αὐτός +καί +μαστιγόω +αὐτός +καί +ἀποκτείνω +καί +μετά +τρεῖς +ἡμέρα +ἀνίστημι +καί +προσπορεύομαι +αὐτός +Ἰάκωβος +καί +Ἰωάννης +ὁ +υἱός +Ζεβεδαῖος +λέγω +αὐτός +διδάσκαλος +θέλω +ἵνα +ἐάν +ὅς +αἰτέω +σύ +ποιέω +ἐγώ +δέ +ὁ +λέγω +αὐτός +θέλω +τίς +ἐγώ +ποιέω +σύ +δέ +ὁ +λέγω +αὐτός +δίδωμι +ἐγώ +ἵνα +εἷς +ἐκ +σύ +δεξιός +καί +εἷς +ἐκ +ἀριστερός +καθίζω +ἐν +ὁ +δόξα +σύ +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +οὐ +οἶδα +τίς +αἰτέω +δύναμαι +πίνω +ὁ +ποτήριον +ὅς +ἐγώ +πίνω +ἤ +ὁ +βάπτισμα +ὅς +ἐγώ +βαπτίζω +βαπτίζω +δέ +ὁ +λέγω +αὐτός +δύναμαι +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ὁ +ποτήριον +ὅς +ἐγώ +πίνω +πίνω +καί +ὁ +βάπτισμα +ὅς +ἐγώ +βαπτίζω +βαπτίζω +δέ +ὁ +καθίζω +ἐκ +δεξιός +ἐγώ +ἤ +ἐκ +εὐώνυμος +οὐ +εἰμί +ἐμός +δίδωμι +ἀλλά +ὅς +ἑτοιμάζω +καί +ἀκούω +ὁ +δέκα +ἄρχω +ἀγανακτέω +περί +Ἰάκωβος +καί +Ἰωάννης +καί +προσκαλέω +αὐτός +ὁ +Ἰησοῦς +λέγω +αὐτός +οἶδα +ὅτι +ὁ +δοκέω +ἄρχω +ὁ +ἔθνος +κατακυριεύω +αὐτός +καί +ὁ +μέγας +αὐτός +κατεξουσιάζω +αὐτός +δέ +οὐ +οὕτω +εἰμί +ἐν +σύ +ἀλλά +ἄν +ὅς +θέλω +μέγας +γίνομαι +ἐν +σύ +εἰμί +σύ +διάκονος +καί +ἄν +ὅς +θέλω +ἐν +σύ +εἰμί +πρῶτος +εἰμί +πᾶς +δοῦλος (II) +γάρ +καί +ὁ +υἱός +ὁ +ἄνθρωπος +οὐ +ἔρχομαι +διακονέω +ἀλλά +διακονέω +καί +δίδωμι +ὁ +ψυχή +αὐτός +λύτρον +ἀντί +πολύς +καί +ἔρχομαι +εἰς +Ἰεριχώ +καί +ἐκπορεύομαι +αὐτός +ἀπό +Ἰεριχώ +καί +ὁ +μαθητής +αὐτός +καί +ὄχλος +ἱκανός +ὁ +υἱός +Τιμαῖος +Βαρτιμαῖος +τυφλός +προσαίτης +κάθημαι +παρά +ὁ +ὁδός +καί +ἀκούω +ὅτι +Ἰησοῦς +ὁ +Ναζαρηνός +εἰμί +ἄρχω +κράζω +καί +λέγω +υἱός +Δαυίδ +Ἰησοῦς +ἐλεέω +ἐγώ +καί +ἐπιτιμάω +αὐτός +πολύς +ἵνα +σιωπάω +δέ +ὁ +πολύς +μᾶλλον +κράζω +υἱός +Δαυίδ +ἐλεέω +ἐγώ +καί +ἵστημι +ὁ +Ἰησοῦς +λέγω +φωνέω +αὐτός +καί +φωνέω +ὁ +τυφλός +λέγω +αὐτός +θαρσέω +ἐγείρω +φωνέω +σύ +δέ +ὁ +ἀποβάλλω +ὁ +ἱμάτιον +αὐτός +ἀναπηδάω +ἔρχομαι +πρός +ὁ +Ἰησοῦς +καί +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +λέγω +τίς +σύ +ποιέω +θέλω +δέ +ὁ +τυφλός +λέγω +αὐτός +ῥαββουνί +ἵνα +ἀναβλέπω +καί +ὁ +Ἰησοῦς +λέγω +αὐτός +ὑπάγω +ὁ +πίστις +σύ +σῴζω +σύ +καί +εὐθύς +ἀναβλέπω +καί +ἀκολουθέω +αὐτός +ἐν +ὁ +ὁδός +καί +ὅτε +ἐγγίζω +εἰς +Ἱεροσόλυμα +εἰς +Βηθφαγή +καί +Βηθανία +πρός +ὁ +ὄρος +ὁ +ἐλαία +ἀποστέλλω +δύο +ὁ +μαθητής +αὐτός +καί +λέγω +αὐτός +ὑπάγω +εἰς +ὁ +κώμη +ὁ +κατέναντι +σύ +καί +εὐθύς +εἰσπορεύομαι +εἰς +αὐτός +εὑρίσκω +δέω +πῶλος +ἐπί +ὅς +οὐδείς +ἄνθρωπος +οὔπω +καθίζω +λύω +αὐτός +καί +φέρω +καί +ἐάν +τὶς +σύ +λέγω +τίς +ποιέω +οὗτος +λέγω +ὁ +κύριος +αὐτός +χρεία +ἔχω +καί +εὐθύς +αὐτός +ἀποστέλλω +πάλιν +ὧδε +καί +ἀπέρχομαι +καί +εὑρίσκω +πῶλος +δέω +πρός +θύρα +ἔξω +ἐπί +ὁ +ἄμφοδον +καί +λύω +αὐτός +καί +τὶς +ὁ +ἐκεῖ +ἵστημι +λέγω +αὐτός +τίς +ποιέω +λύω +ὁ +πῶλος +δέ +ὁ +λέγω +αὐτός +καθώς +λέγω +ὁ +Ἰησοῦς +καί +ἀφίημι +αὐτός +καί +φέρω +ὁ +πῶλος +πρός +ὁ +Ἰησοῦς +καί +ἐπιβάλλω +αὐτός +ὁ +ἱμάτιον +αὐτός +καί +καθίζω +ἐπί +αὐτός +καί +πολύς +ὁ +ἱμάτιον +αὐτός +στρωννύω +εἰς +ὁ +ὁδός +δέ +ἄλλος +στιβάς +κόπτω +ἐκ +ὁ +ἀγρός +καί +ὁ +προάγω +καί +ὁ +ἀκολουθέω +κράζω +ὡσαννά +εὐλογέω +ὁ +ἔρχομαι +ἐν +ὄνομα +κύριος +εὐλογέω +ὁ +ἔρχομαι +βασιλεία +ὁ +πατήρ +ἐγώ +Δαυίδ +ὡσαννά +ἐν +ὁ +ὕψιστος +καί +εἰσέρχομαι +εἰς +Ἱεροσόλυμα +εἰς +ὁ +ἱερός +καί +ὀψέ +ἤδη +εἰμί +ὁ +ὥρα +περιβλέπω +πᾶς +ἐξέρχομαι +εἰς +Βηθανία +μετά +ὁ +δώδεκα +καί +ὁ +ἐπαύριον +ἐξέρχομαι +αὐτός +ἀπό +Βηθανία +πεινάω +καί +ὁράω +ἀπό +μακρόθεν +συκῆ +ἔχω +φύλλον +ἔρχομαι +ἆρα +εἰ +τὶς +εὑρίσκω +ἐν +αὐτός +καί +ἔρχομαι +ἐπί +αὐτός +οὐδείς +εὑρίσκω +εἰ +μή +φύλλον +γάρ +ὁ +καιρός +οὐ +εἰμί +σῦκον +καί +ἀποκρίνομαι +λέγω +αὐτός +μηκέτι +εἰς +ὁ +αἰών +ἐκ +σύ +μηδείς +καρπός +ἐσθίω +καί +ἀκούω +ὁ +μαθητής +αὐτός +καί +ἔρχομαι +εἰς +Ἱεροσόλυμα +καί +εἰσέρχομαι +εἰς +ὁ +ἱερός +ἄρχω +ἐκβάλλω +ὁ +πωλέω +καί +ὁ +ἀγοράζω +ἐν +ὁ +ἱερός +καί +ὁ +τράπεζα +ὁ +κολλυβιστής +καί +ὁ +καθέδρα +ὁ +πωλέω +ὁ +περιστερά +καταστρέφω +καί +οὐ +ἀφίημι +ἵνα +τὶς +διαφέρω +σκεῦος +διά +ὁ +ἱερός +καί +διδάσκω +καί +λέγω +αὐτός +οὐ +γράφω +ὅτι +ὁ +οἶκος +ἐγώ +οἶκος +προσευχή +καλέω +πᾶς +ὁ +ἔθνος +δέ +σύ +ποιέω +αὐτός +σπήλαιον +λῃστής +καί +ἀκούω +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +καί +ζητέω +πῶς +αὐτός +ἀπόλλυμι +γάρ +φοβέω +αὐτός +γάρ +πᾶς +ὁ +ὄχλος +ἐκπλήσσω +ἐπί +ὁ +διδαχή +αὐτός +καί +ὅταν +ὀψέ +γίνομαι +ἐκπορεύομαι +ἔξω +ὁ +πόλις +καί +παραπορεύομαι +πρωΐ +ὁράω +ὁ +συκῆ +ξηραίνω +ἐκ +ῥίζα +καί +ἀναμιμνῄσκω +ὁ +Πέτρος +λέγω +αὐτός +ῥαββί +ὁράω +ὁ +συκῆ +ὅς +καταράομαι +ξηραίνω +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +ἔχω +πίστις +θεός +ἀμήν +λέγω +σύ +ὅτι +ἄν +ὅς +λέγω +ὁ +ὄρος +οὗτος +αἴρω +καί +βάλλω +εἰς +ὁ +θάλασσα +καί +μή +διακρίνω +ἐν +ὁ +καρδία +αὐτός +ἀλλά +πιστεύω +ὅτι +ὅς +λαλέω +γίνομαι +εἰμί +αὐτός +διά +οὗτος +λέγω +σύ +πᾶς +ὅσος +προσεύχομαι +καί +αἰτέω +πιστεύω +ὅτι +λαμβάνω +καί +εἰμί +σύ +καί +ὅταν +στήκω +προσεύχομαι +ἀφίημι +εἰ +τὶς +ἔχω +κατά +τὶς +ἵνα +καί +ὁ +πατήρ +σύ +ὁ +ἐν +ὁ +οὐρανός +ἀφίημι +σύ +ὁ +παράπτωμα +σύ +καί +ἔρχομαι +πάλιν +εἰς +Ἱεροσόλυμα +καί +ἐν +ὁ +ἱερός +περιπατέω +αὐτός +ἔρχομαι +πρός +αὐτός +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +καί +ὁ +πρεσβύτερος +καί +λέγω +αὐτός +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +ἤ +τίς +σύ +δίδωμι +ὁ +ἐξουσία +οὗτος +ἵνα +οὗτος +ποιέω +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ἐπερωτάω +σύ +εἷς +λόγος +καί +ἀποκρίνομαι +ἐγώ +καί +εἶπον +σύ +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +ὁ +βάπτισμα +ὁ +Ἰωάννης +ἐκ +οὐρανός +εἰμί +ἤ +ἐκ +ἄνθρωπος +ἀποκρίνομαι +ἐγώ +καί +διαλογίζομαι +πρός +ἑαυτοῦ +λέγω +ἐάν +λέγω +ἐκ +οὐρανός +εἶπον +οὖν +διά +τίς +οὐ +πιστεύω +αὐτός +ἀλλά +λέγω +ἐκ +ἄνθρωπος +φοβέω +ὁ +ὄχλος +γάρ +ἅπας +ἔχω +ὁ +Ἰωάννης +ὅτι +ὄντως +προφήτης +εἰμί +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +οὐ +οἶδα +καί +ὁ +Ἰησοῦς +λέγω +αὐτός +οὐδέ +ἐγώ +λέγω +σύ +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +καί +ἄρχω +αὐτός +ἐν +παραβολή +λαλέω +ἀμπελών +ἄνθρωπος +φυτεύω +καί +περιτίθημι +φραγμός +καί +ὀρύσσω +ὑπολήνιον +καί +οἰκοδομέω +πύργος +καί +ἐκδίδωμι +αὐτός +γεωργός +καί +ἀποδημέω +καί +ἀποστέλλω +πρός +ὁ +γεωργός +ὁ +καιρός +δοῦλος (II) +ἵνα +παρά +ὁ +γεωργός +λαμβάνω +ἀπό +ὁ +καρπός +ὁ +ἀμπελών +καί +λαμβάνω +αὐτός +δέρω +καί +ἀποστέλλω +κενός +καί +πάλιν +ἀποστέλλω +πρός +αὐτός +ἄλλος +δοῦλος (II) +κἀκεῖνος +κεφαλιόω +καί +ἀτιμάζω +καί +ἄλλος +ἀποστέλλω +κἀκεῖνος +ἀποκτείνω +καί +πολύς +ἄλλος +μέν +ὅς +δέρω +δέ +ὅς +ἀποκτείνω +ἔτι +ἔχω +εἷς +υἱός +ἀγαπητός +ἀποστέλλω +αὐτός +ἔσχατος +πρός +αὐτός +λέγω +ὅτι +ἐντρέπω +ὁ +υἱός +ἐγώ +δέ +ἐκεῖνος +ὁ +γεωργός +πρός +ἑαυτοῦ +λέγω +ὅτι +οὗτος +εἰμί +ὁ +κληρονόμος +δεῦτε +ἀποκτείνω +αὐτός +καί +ἐγώ +εἰμί +ὁ +κληρονομία +καί +λαμβάνω +ἀποκτείνω +αὐτός +καί +ἐκβάλλω +αὐτός +ἔξω +ὁ +ἀμπελών +τίς +ποιέω +ὁ +κύριος +ὁ +ἀμπελών +ἔρχομαι +καί +ἀπόλλυμι +ὁ +γεωργός +καί +δίδωμι +ὁ +ἀμπελών +ἄλλος +οὐδέ +ὁ +γραφή +οὗτος +ἀναγινώσκω +λίθος +ὅς +ἀποδοκιμάζω +ὁ +οἰκοδομέω +οὗτος +γίνομαι +εἰς +κεφαλή +γωνία +παρά +κύριος +γίνομαι +οὗτος +καί +εἰμί +θαυμαστός +ἐν +ὀφθαλμός +ἐγώ +καί +ζητέω +αὐτός +κρατέω +καί +φοβέω +ὁ +ὄχλος +γάρ +γινώσκω +ὅτι +πρός +αὐτός +ὁ +παραβολή +λέγω +καί +ἀφίημι +αὐτός +ἀπέρχομαι +καί +ἀποστέλλω +πρός +αὐτός +τὶς +ὁ +Φαρισαῖος +καί +ὁ +Ἡρῳδιανοί +ἵνα +αὐτός +ἀγρεύω +λόγος +καί +ἔρχομαι +λέγω +αὐτός +διδάσκαλος +οἶδα +ὅτι +ἀληθής +εἰμί +καί +οὐ +μέλει +σύ +περί +οὐδείς +γάρ +οὐ +βλέπω +εἰς +πρόσωπον +ἄνθρωπος +ἀλλά +ἐπί +ἀλήθεια +ὁ +ὁδός +ὁ +θεός +διδάσκω +ἔξεστι(ν) +δίδωμι +κῆνσος +Καῖσαρ +ἤ +οὐ +δίδωμι +ἤ +μή +δίδωμι +δέ +ὁ +οἶδα +αὐτός +ὁ +ὑπόκρισις +λέγω +αὐτός +τίς +ἐγώ +πειράζω +φέρω +ἐγώ +δηνάριον +ἵνα +ὁράω +δέ +ὁ +φέρω +καί +λέγω +αὐτός +τίς +ὁ +εἰκών +οὗτος +καί +ὁ +ἐπιγραφή +δέ +ὁ +λέγω +αὐτός +Καῖσαρ +δέ +ὁ +Ἰησοῦς +λέγω +αὐτός +ὁ +Καῖσαρ +ἀποδίδωμι +Καῖσαρ +καί +ὁ +ὁ +θεός +ὁ +θεός +καί +ἐκθαυμάζω +ἐπί +αὐτός +καί +ἔρχομαι +πρός +αὐτός +Σαδδουκαῖος +ὅστις +λέγω +ἀνάστασις +μή +εἰμί +καί +ἐπερωτάω +αὐτός +λέγω +διδάσκαλος +Μωϋσῆς +γράφω +ἐγώ +ὅτι +ἐάν +τὶς +ἀδελφός +ἀποθνῄσκω +καί +καταλείπω +γυνή +καί +μή +ἀφίημι +τέκνον +ἵνα +λαμβάνω +ὁ +ἀδελφός +αὐτός +ὁ +γυνή +καί +ἐξανίστημι +σπέρμα +ὁ +ἀδελφός +αὐτός +ἑπτά +ἀδελφός +εἰμί +καί +ὁ +πρῶτος +λαμβάνω +γυνή +καί +ἀποθνῄσκω +οὐ +ἀφίημι +σπέρμα +καί +ὁ +δεύτερος +λαμβάνω +αὐτός +καί +ἀποθνῄσκω +μή +καταλείπω +σπέρμα +καί +ὁ +τρίτος +ὡσαύτως +καί +ὁ +ἑπτά +οὐ +ἀφίημι +σπέρμα +ἔσχατος +πᾶς +καί +ὁ +γυνή +ἀποθνῄσκω +ἐν +ὁ +ἀνάστασις +ὅταν +ἀνίστημι +τίς +αὐτός +γυνή +εἰμί +γάρ +ὁ +ἑπτά +ἔχω +αὐτός +γυνή +φημί +αὐτός +ὁ +Ἰησοῦς +οὐ +διά +οὗτος +πλανάω +μή +οἶδα +ὁ +γραφή +μηδέ +ὁ +δύναμις +ὁ +θεός +γάρ +ὅταν +ἐκ +νεκρός +ἀνίστημι +οὔτε +γαμέω +οὔτε +γαμίζω +ἀλλά +εἰμί +ὡς +ἄγγελος +ἐν +ὁ +οὐρανός +δέ +περί +ὁ +νεκρός +ὅτι +ἐγείρω +οὐ +ἀναγινώσκω +ἐν +ὁ +βίβλος +Μωϋσῆς +ἐπί +ὁ +βάτος (I) +πῶς +λέγω +αὐτός +ὁ +θεός +λέγω +ἐγώ +ὁ +θεός +Ἀβραάμ +καί +θεός +Ἰσαάκ +καί +θεός +Ἰακώβ +οὐ +εἰμί +θεός +νεκρός +ἀλλά +ζάω +πολύς +πλανάω +καί +προσέρχομαι +εἷς +ὁ +γραμματεύς +ἀκούω +αὐτός +συζητέω +οἶδα +ὅτι +καλῶς +ἀποκρίνομαι +αὐτός +ἐπερωτάω +αὐτός +ποῖος +εἰμί +ἐντολή +πρῶτος +πᾶς +ἀποκρίνομαι +ὁ +Ἰησοῦς +ὅτι +πρῶτος +εἰμί +ἀκούω +Ἰσραήλ +κύριος +ὁ +θεός +ἐγώ +κύριος +εἷς +εἰμί +καί +ἀγαπάω +κύριος +ὁ +θεός +σύ +ἐκ +ὅλος +ὁ +καρδία +σύ +καί +ἐκ +ὅλος +ὁ +ψυχή +σύ +καί +ἐκ +ὅλος +ὁ +διάνοια +σύ +καί +ἐκ +ὅλος +ὁ +ἰσχύς +σύ +δεύτερος +οὗτος +ἀγαπάω +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +μέγας +οὗτος +ἄλλος +ἐντολή +οὐ +εἰμί +καί +λέγω +αὐτός +ὁ +γραμματεύς +καλῶς +διδάσκαλος +ἐπί +ἀλήθεια +λέγω +ὅτι +εἷς +εἰμί +καί +οὐ +εἰμί +ἄλλος +πλήν +αὐτός +καί +ὁ +ἀγαπάω +αὐτός +ἐκ +ὅλος +ὁ +καρδία +καί +ἐκ +ὅλος +ὁ +σύνεσις +καί +ἐκ +ὅλος +ὁ +ἰσχύς +καί +ὁ +ἀγαπάω +ὁ +πλησίον +ὡς +ἑαυτοῦ +περισσός +εἰμί +πᾶς +ὁ +ὁλοκαύτωμα +καί +θυσία +καί +ὁ +Ἰησοῦς +ὁράω +αὐτός +ὅτι +νουνεχῶς +ἀποκρίνομαι +λέγω +αὐτός +οὐ +μακράν +εἰμί +ἀπό +ὁ +βασιλεία +ὁ +θεός +καί +οὐδείς +οὐκέτι +τολμάω +αὐτός +ἐπερωτάω +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +διδάσκω +ἐν +ὁ +ἱερός +πῶς +λέγω +ὁ +γραμματεύς +ὅτι +ὁ +Χριστός +υἱός +Δαυίδ +εἰμί +αὐτός +Δαυίδ +λέγω +ἐν +ὁ +πνεῦμα +ὁ +ἅγιος +λέγω +κύριος +ὁ +κύριος +ἐγώ +κάθημαι +ἐκ +δεξιός +ἐγώ +ἕως +ἄν +τίθημι +ὁ +ἐχθρός +σύ +ὑποκάτω +ὁ +πούς +σύ +αὐτός +Δαυίδ +λέγω +αὐτός +κύριος +καί +πόθεν +αὐτός +υἱός +εἰμί +καί +ὁ +πολύς +ὄχλος +ἀκούω +αὐτός +ἡδέως +καί +ἐν +ὁ +διδαχή +αὐτός +λέγω +βλέπω +ἀπό +ὁ +γραμματεύς +ὁ +θέλω +ἐν +στολή +περιπατέω +καί +ἀσπασμός +ἐν +ὁ +ἀγορά +καί +πρωτοκαθεδρία +ἐν +ὁ +συναγωγή +καί +πρωτοκλισία +ἐν +ὁ +δεῖπνον +ὁ +κατεσθίω +ὁ +οἰκία +ὁ +χῆρος +καί +πρόφασις +μακρός +προσεύχομαι +οὗτος +λαμβάνω +περισσός +κρίμα +καί +καθίζω +κατέναντι +ὁ +γαζοφυλάκιον +θεωρέω +πῶς +ὁ +ὄχλος +βάλλω +χαλκός +εἰς +ὁ +γαζοφυλάκιον +καί +πολύς +πλούσιος +βάλλω +πολύς +καί +ἔρχομαι +εἷς +χῆρος +πτωχός +βάλλω +λεπτός +δύο +ὅς +εἰμί +κοδράντης +καί +προσκαλέω +ὁ +μαθητής +αὐτός +λέγω +αὐτός +ἀμήν +λέγω +σύ +ὅτι +ὁ +χῆρος +οὗτος +ὁ +πτωχός +πολύς +βάλλω +πᾶς +ὁ +βάλλω +εἰς +ὁ +γαζοφυλάκιον +γάρ +πᾶς +ἐκ +ὁ +περισσεύω +αὐτός +βάλλω +δέ +οὗτος +ἐκ +ὁ +ὑστέρησις +αὐτός +βάλλω +πᾶς +ὅσος +ἔχω +ὅλος +ὁ +βίος +αὐτός +καί +ἐκπορεύομαι +αὐτός +ἐκ +ὁ +ἱερός +λέγω +αὐτός +εἷς +ὁ +μαθητής +αὐτός +διδάσκαλος +ὁράω +ποταπός +λίθος +καί +ποταπός +οἰκοδομή +καί +ὁ +Ἰησοῦς +λέγω +αὐτός +βλέπω +οὗτος +ὁ +μέγας +οἰκοδομή +οὐ +μή +ἀφίημι +ἐπί +λίθος +λίθος +ὅς +οὐ +μή +καταλύω +καί +κάθημαι +αὐτός +εἰς +ὁ +ὄρος +ὁ +ἐλαία +κατέναντι +ὁ +ἱερός +ἐπερωτάω +αὐτός +κατά +ἴδιος +Πέτρος +καί +Ἰάκωβος +καί +Ἰωάννης +καί +Ἀνδρέας +λέγω +ἐγώ +πότε +οὗτος +εἰμί +καί +τίς +ὁ +σημεῖον +ὅταν +μέλλω +οὗτος +πᾶς +συντελέω +δέ +ὁ +Ἰησοῦς +ἄρχω +λέγω +αὐτός +βλέπω +μή +τὶς +σύ +πλανάω +πολύς +ἔρχομαι +ἐπί +ὁ +ὄνομα +ἐγώ +λέγω +ὅτι +ἐγώ +εἰμί +καί +πολύς +πλανάω +δέ +ὅταν +ἀκούω +πόλεμος +καί +ἀκοή +πόλεμος +μή +θροέω +δεῖ +γίνομαι +ἀλλά +οὔπω +ὁ +τέλος +γάρ +ἐγείρω +ἔθνος +ἐπί +ἔθνος +καί +βασιλεία +ἐπί +βασιλεία +εἰμί +σεισμός +κατά +τόπος +εἰμί +λιμός +ἀρχή +ὠδίν +οὗτος +δέ +βλέπω +σύ +ἑαυτοῦ +παραδίδωμι +σύ +εἰς +συνέδριον +καί +εἰς +συναγωγή +δέρω +καί +ἐπί +ἡγεμών +καί +βασιλεύς +ἵστημι +ἕνεκα +ἐγώ +εἰς +μαρτύριον +αὐτός +καί +εἰς +πᾶς +ὁ +ἔθνος +πρῶτος +κηρύσσω +ὁ +εὐαγγέλιον +δεῖ +καί +ὅταν +ἄγω +σύ +παραδίδωμι +μή +προμεριμνάω +τίς +λαλέω +ἀλλά +ἐάν +ὅς +δίδωμι +σύ +ἐν +ἐκεῖνος +ὁ +ὥρα +οὗτος +λαλέω +γάρ +οὐ +εἰμί +σύ +ὁ +λαλέω +ἀλλά +ὁ +πνεῦμα +ὁ +ἅγιος +καί +παραδίδωμι +ἀδελφός +ἀδελφός +εἰς +θάνατος +καί +πατήρ +τέκνον +καί +ἐπανίστημι +τέκνον +ἐπί +γονεύς +καί +θανατόω +αὐτός +καί +εἰμί +μισέω +ὑπό +πᾶς +διά +ὁ +ὄνομα +ἐγώ +δέ +ὁ +ὑπομένω +εἰς +τέλος +οὗτος +σῴζω +δέ +ὅταν +ὁράω +ὁ +βδέλυγμα +ὁ +ἐρήμωσις +ἵστημι +ὅπου +οὐ +δεῖ +ὁ +ἀναγινώσκω +νοέω +τότε +ὁ +ἐν +ὁ +Ἰουδαία +φεύγω +εἰς +ὁ +ὄρος +ὁ +ἐπί +ὁ +δῶμα +μή +καταβαίνω +μηδέ +εἰσέρχομαι +τὶς +αἴρω +ἐκ +ὁ +οἰκία +αὐτός +καί +ὁ +εἰς +ὁ +ἀγρός +μή +ἐπιστρέφω +εἰς +ὁ +ὀπίσω +αἴρω +ὁ +ἱμάτιον +αὐτός +δέ +οὐαί +ὁ +ἐν +γαστήρ +ἔχω +καί +ὁ +θηλάζω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +δέ +προσεύχομαι +ἵνα +μή +γίνομαι +χειμών +γάρ +εἰμί +ὁ +ἡμέρα +ἐκεῖνος +θλῖψις +οἷος +οὐ +γίνομαι +τοιοῦτος +ἀπό +ἀρχή +κτίσις +ὅς +κτίζω +ὁ +θεός +ἕως +ὁ +νῦν +καί +οὐ +μή +γίνομαι +καί +εἰ +μή +κολοβόω +κύριος +ὁ +ἡμέρα +ἄν +οὐ +σῴζω +πᾶς +σάρξ +ἀλλά +διά +ὁ +ἐκλεκτός +ὅς +ἐκλέγω +κολοβόω +ὁ +ἡμέρα +καί +ἐάν +τότε +τὶς +σύ +λέγω +ὁράω +ὧδε +ὁ +Χριστός +ὁράω +ἐκεῖ +μή +πιστεύω +δέ +ἐγείρω +ψευδόχριστος +καί +ψευδοπροφήτης +καί +ποιέω +σημεῖον +καί +τέρας +πρός +ὁ +ἀποπλανάω +εἰ +δυνατός +ὁ +ἐκλεκτός +δέ +σύ +βλέπω +προλέγω +σύ +πᾶς +ἀλλά +ἐν +ἐκεῖνος +ὁ +ἡμέρα +μετά +ὁ +θλῖψις +ἐκεῖνος +ὁ +ἥλιος +σκοτίζω +καί +ὁ +σελήνη +οὐ +δίδωμι +ὁ +φέγγος +αὐτός +καί +ὁ +ἀστήρ +εἰμί +πίπτω +ἐκ +ὁ +οὐρανός +καί +ὁ +δύναμις +ὁ +ἐν +ὁ +οὐρανός +σαλεύω +καί +τότε +ὁράω +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἐν +νεφέλη +μετά +δύναμις +πολύς +καί +δόξα +καί +τότε +ἀποστέλλω +ὁ +ἄγγελος +καί +ἐπισυνάγω +ὁ +ἐκλεκτός +αὐτός +ἐκ +ὁ +τέσσαρες +ἄνεμος +ἀπό +ἄκρον +γῆ +ἕως +ἄκρον +οὐρανός +δέ +ἀπό +ὁ +συκῆ +μανθάνω +ὁ +παραβολή +ὅταν +ἤδη +ὁ +κλάδος +αὐτός +ἁπαλός +γίνομαι +καί +ἐκφύω +ὁ +φύλλον +γινώσκω +ὅτι +ἐγγύς +ὁ +θέρος +εἰμί +οὕτω +καί +σύ +ὅταν +ὁράω +οὗτος +γίνομαι +γινώσκω +ὅτι +ἐγγύς +εἰμί +ἐπί +θύρα +ἀμήν +λέγω +σύ +ὅτι +οὐ +μή +παρέρχομαι +ὁ +γενεά +οὗτος +μέχρι +ὅς +οὗτος +πᾶς +γίνομαι +ὁ +οὐρανός +καί +ὁ +γῆ +παρέρχομαι +δέ +ὁ +λόγος +ἐγώ +οὐ +παρέρχομαι +δέ +περί +ὁ +ἡμέρα +ἐκεῖνος +ἤ +ὁ +ὥρα +οὐδείς +οἶδα +οὐδέ +ὁ +ἄγγελος +ἐν +οὐρανός +οὐδέ +ὁ +υἱός +εἰ +μή +ὁ +πατήρ +βλέπω +ἀγρυπνέω +γάρ +οὐ +οἶδα +πότε +ὁ +καιρός +εἰμί +ὡς +ἄνθρωπος +ἀπόδημος +ἀφίημι +ὁ +οἰκία +αὐτός +καί +δίδωμι +ὁ +δοῦλος (II) +αὐτός +ὁ +ἐξουσία +ἕκαστος +ὁ +ἔργον +αὐτός +καί +ὁ +θυρωρός +ἐντέλλομαι +ἵνα +γρηγορέω +οὖν +γρηγορέω +γάρ +οὐ +οἶδα +πότε +ὁ +κύριος +ὁ +οἰκία +ἔρχομαι +ἤ +ὀψέ +ἤ +μεσονύκτιον +ἤ +ἀλεκτοροφωνία +ἤ +πρωΐ +μή +ἔρχομαι +ἐξαίφνης +εὑρίσκω +σύ +καθεύδω +δέ +ὅς +σύ +λέγω +πᾶς +λέγω +γρηγορέω +δέ +εἰμί +ὁ +πάσχα +καί +ὁ +ἄζυμος +μετά +δύο +ἡμέρα +καί +ζητέω +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +πῶς +αὐτός +ἐν +δόλος +κρατέω +ἀποκτείνω +γάρ +λέγω +μή +ἐν +ὁ +ἑορτή +μή +ποτέ +εἰμί +θόρυβος +ὁ +λαός +καί +εἰμί +αὐτός +ἐν +Βηθανία +ἐν +ὁ +οἰκία +Σίμων +ὁ +λεπρός +κατάκειμαι +αὐτός +ἔρχομαι +γυνή +ἔχω +ἀλάβαστρος +μύρον +νάρδος +πιστικός +πολυτελής +συντρίβω +ὁ +ἀλάβαστρος +καταχέω +αὐτός +ὁ +κεφαλή +δέ +τὶς +εἰμί +ἀγανακτέω +πρός +ἑαυτοῦ +εἰς +τίς +ὁ +ἀπώλεια +οὗτος +ὁ +μύρον +γίνομαι +γάρ +δύναμαι +οὗτος +ὁ +μύρον +πιπράσκω +ἐπάνω +δηνάριον +τριακόσιοι +καί +δίδωμι +ὁ +πτωχός +καί +ἐμβριμάομαι +αὐτός +δέ +ὁ +Ἰησοῦς +λέγω +ἀφίημι +αὐτός +τίς +αὐτός +κόπος +παρέχω +καλός +ἔργον +ἐργάζομαι +ἐν +ἐγώ +γάρ +πάντοτε +ὁ +πτωχός +ἔχω +μετά +ἑαυτοῦ +καί +ὅταν +θέλω +δύναμαι +αὐτός +εὖ +ποιέω +δέ +ἐγώ +οὐ +πάντοτε +ἔχω +ὅς +ἔχω +ποιέω +προλαμβάνω +μυρίζω +ὁ +σῶμα +ἐγώ +εἰς +ὁ +ἐνταφιασμός +δέ +ἀμήν +λέγω +σύ +ἐάν +ὅπου +κηρύσσω +ὁ +εὐαγγέλιον +εἰς +ὅλος +ὁ +κόσμος +καί +ὅς +ποιέω +οὗτος +λαλέω +εἰς +μνημόσυνον +αὐτός +καί +Ἰούδας +Ἰσκαριώθ +ὁ +εἷς +ὁ +δώδεκα +ἀπέρχομαι +πρός +ὁ +ἀρχιερεύς +ἵνα +αὐτός +παραδίδωμι +αὐτός +δέ +ὁ +ἀκούω +χαίρω +καί +ἐπαγγέλλομαι +αὐτός +ἀργύριον +δίδωμι +καί +ζητέω +πῶς +αὐτός +εὐκαίρως +παραδίδωμι +καί +ὁ +πρῶτος +ἡμέρα +ὁ +ἄζυμος +ὅτε +ὁ +πάσχα +θύω +λέγω +αὐτός +ὁ +μαθητής +αὐτός +θέλω +ποῦ +ἀπέρχομαι +ἑτοιμάζω +ἵνα +ἐσθίω +ὁ +πάσχα +καί +ἀποστέλλω +δύο +ὁ +μαθητής +αὐτός +καί +λέγω +αὐτός +ὑπάγω +εἰς +ὁ +πόλις +καί +ἀπαντάω +σύ +ἄνθρωπος +κεράμιον +ὕδωρ +βαστάζω +ἀκολουθέω +αὐτός +καί +ἐάν +ὅπου +εἰσέρχομαι +λέγω +ὁ +οἰκοδεσπότης +ὅτι +ὁ +διδάσκαλος +λέγω +ποῦ +εἰμί +ὁ +κατάλυμα +ἐγώ +ὅπου +ὁ +πάσχα +μετά +ὁ +μαθητής +ἐγώ +ἐσθίω +καί +αὐτός +σύ +δείκνυμι +ἀνάγαιον +μέγας +στρωννύω +ἕτοιμος +καί +ἐκεῖ +ἑτοιμάζω +ἐγώ +καί +ἐξέρχομαι +ὁ +μαθητής +καί +ἔρχομαι +εἰς +ὁ +πόλις +καί +εὑρίσκω +καθώς +λέγω +αὐτός +καί +ἑτοιμάζω +ὁ +πάσχα +καί +ὄψιος +γίνομαι +ἔρχομαι +μετά +ὁ +δώδεκα +καί +αὐτός +ἀνάκειμαι +καί +ἐσθίω +ὁ +Ἰησοῦς +λέγω +ἀμήν +λέγω +σύ +ὅτι +παραδίδωμι +ἐγώ +εἷς +ἐκ +σύ +ὁ +ἐσθίω +μετά +ἐγώ +ἄρχω +λυπέω +καί +λέγω +αὐτός +εἷς +κατά +εἷς +μήτι +ἐγώ +δέ +ὁ +λέγω +αὐτός +εἷς +ὁ +δώδεκα +ὁ +ἐμβάπτω +μετά +ἐγώ +εἰς +ὁ +τρύβλιον +ὅτι +μέν +ὁ +υἱός +ὁ +ἄνθρωπος +ὑπάγω +καθώς +γράφω +περί +αὐτός +δέ +οὐαί +ὁ +ἄνθρωπος +ἐκεῖνος +διά +ὅς +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +καλός +αὐτός +εἰ +οὐ +γεννάω +ὁ +ἄνθρωπος +ἐκεῖνος +καί +ἐσθίω +αὐτός +λαμβάνω +ἄρτος +εὐλογέω +κλάω +καί +δίδωμι +αὐτός +καί +λέγω +λαμβάνω +οὗτος +εἰμί +ὁ +σῶμα +ἐγώ +καί +λαμβάνω +ποτήριον +εὐχαριστέω +δίδωμι +αὐτός +καί +πίνω +ἐκ +αὐτός +πᾶς +καί +λέγω +αὐτός +οὗτος +εἰμί +ὁ +αἷμα +ἐγώ +ὁ +διαθήκη +ὁ +ἐκχέω +ὑπέρ +πολύς +ἀμήν +λέγω +σύ +ὅτι +οὐκέτι +οὐ +μή +πίνω +ἐκ +ὁ +γέννημα +ὁ +ἄμπελος +ἕως +ὁ +ἡμέρα +ἐκεῖνος +ὅταν +αὐτός +πίνω +καινός +ἐν +ὁ +βασιλεία +ὁ +θεός +καί +ὑμνέω +ἐξέρχομαι +εἰς +ὁ +ὄρος +ὁ +ἐλαία +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ὅτι +πᾶς +σκανδαλίζω +ὅτι +γράφω +πατάσσω +ὁ +ποιμήν +καί +ὁ +πρόβατον +διασκορπίζω +ἀλλά +μετά +ὁ +ἐγείρω +ἐγώ +προάγω +σύ +εἰς +ὁ +Γαλιλαία +δέ +ὁ +Πέτρος +φημί +αὐτός +εἰ +καί +πᾶς +σκανδαλίζω +ἀλλά +οὐ +ἐγώ +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀμήν +λέγω +σύ +ὅτι +σύ +σήμερον +οὗτος +ὁ +νύξ +πρίν +ἤ +δίς +ἀλέκτωρ +φωνέω +τρίς +ἐγώ +ἀπαρνέομαι +δέ +ὁ +ἐκπερισσῶς +λαλέω +ἐάν +δεῖ +ἐγώ +συναποθνῄσκω +σύ +οὐ +μή +σύ +ἀπαρνέομαι +δέ +ὡσαύτως +καί +πᾶς +λέγω +καί +ἔρχομαι +εἰς +χωρίον +ὅς +ὁ +ὄνομα +Γεθσημανί +καί +λέγω +ὁ +μαθητής +αὐτός +καθίζω +ὧδε +ἕως +προσεύχομαι +καί +παραλαμβάνω +ὁ +Πέτρος +καί +ὁ +Ἰάκωβος +καί +ὁ +Ἰωάννης +μετά +αὐτός +καί +ἄρχω +ἐκθαμβέω +καί +ἀδημονέω +καί +λέγω +αὐτός +περίλυπος +εἰμί +ὁ +ψυχή +ἐγώ +ἕως +θάνατος +μένω +ὧδε +καί +γρηγορέω +καί +προέρχομαι +μικρός +πίπτω +ἐπί +ὁ +γῆ +καί +προσεύχομαι +ἵνα +εἰ +δυνατός +εἰμί +παρέρχομαι +ἀπό +αὐτός +ὁ +ὥρα +καί +λέγω +ἀββά +ὁ +πατήρ +πᾶς +δυνατός +σύ +παραφέρω +ὁ +ποτήριον +οὗτος +ἀπό +ἐγώ +ἀλλά +οὐ +τίς +ἐγώ +θέλω +ἀλλά +τίς +σύ +καί +ἔρχομαι +καί +εὑρίσκω +αὐτός +καθεύδω +καί +λέγω +ὁ +Πέτρος +Σίμων +καθεύδω +οὐ +ἰσχύω +εἷς +ὥρα +γρηγορέω +γρηγορέω +καί +προσεύχομαι +ἵνα +μή +ἔρχομαι +εἰς +πειρασμός +μέν +ὁ +πνεῦμα +πρόθυμος +δέ +ὁ +σάρξ +ἀσθενής +καί +πάλιν +ἀπέρχομαι +προσεύχομαι +ὁ +αὐτός +λόγος +λέγω +καί +πάλιν +ἔρχομαι +εὑρίσκω +αὐτός +καθεύδω +γάρ +εἰμί +καταβαρύνω +αὐτός +ὁ +ὀφθαλμός +καί +οὐ +οἶδα +τίς +ἀποκρίνομαι +αὐτός +καί +ἔρχομαι +ὁ +τρίτος +καί +λέγω +αὐτός +καθεύδω +ὁ +λοιπός +καί +ἀναπαύω +ἀπέχω +ἔρχομαι +ὁ +ὥρα +ὁράω +παραδίδωμι +ὁ +υἱός +ὁ +ἄνθρωπος +εἰς +ὁ +χείρ +ὁ +ἁμαρτωλός +ἐγείρω +ἄγω +ὁράω +ὁ +παραδίδωμι +ἐγώ +ἐγγίζω +καί +εὐθύς +ἔτι +αὐτός +λαλέω +παραγίνομαι +ὁ +Ἰούδας +εἷς +ὁ +δώδεκα +καί +μετά +αὐτός +ὄχλος +μετά +μάχαιρα +καί +ξύλον +παρά +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +καί +ὁ +πρεσβύτερος +δέ +δίδωμι +ὁ +παραδίδωμι +αὐτός +σύσσημον +αὐτός +λέγω +ἄν +ὅς +φιλέω +αὐτός +εἰμί +κρατέω +αὐτός +καί +ἀπάγω +ἀσφαλῶς +καί +ἔρχομαι +εὐθύς +προσέρχομαι +αὐτός +λέγω +ῥαββί +καί +καταφιλέω +αὐτός +δέ +ὁ +ἐπιβάλλω +ὁ +χείρ +αὐτός +καί +κρατέω +αὐτός +δέ +εἷς +τὶς +ὁ +παρίστημι +σπάω +ὁ +μάχαιρα +παίω +ὁ +δοῦλος (II) +ὁ +ἀρχιερεύς +καί +ἀφαιρέω +αὐτός +ὁ +ὠτάριον +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +ὡς +ἐπί +λῃστής +ἐξέρχομαι +μετά +μάχαιρα +καί +ξύλον +συλλαμβάνω +ἐγώ +κατά +ἡμέρα +εἰμί +πρός +σύ +ἐν +ὁ +ἱερός +διδάσκω +καί +οὐ +κρατέω +ἐγώ +ἀλλά +ἵνα +πληρόω +ὁ +γραφή +καί +ἀφίημι +αὐτός +φεύγω +πᾶς +καί +νεανίσκος +τὶς +συνακολουθέω +αὐτός +περιβάλλω +σινδών +ἐπί +γυμνός +καί +κρατέω +αὐτός +δέ +ὁ +καταλείπω +ὁ +σινδών +γυμνός +φεύγω +καί +ἀπάγω +ὁ +Ἰησοῦς +πρός +ὁ +ἀρχιερεύς +καί +συνέρχομαι +πᾶς +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +καί +ὁ +γραμματεύς +καί +ὁ +Πέτρος +ἀπό +μακρόθεν +ἀκολουθέω +αὐτός +ἕως +ἔσω +εἰς +ὁ +αὐλή +ὁ +ἀρχιερεύς +καί +εἰμί +συγκάθημαι +μετά +ὁ +ὑπηρέτης +καί +θερμαίνω +πρός +ὁ +φῶς +δέ +ὁ +ἀρχιερεύς +καί +ὅλος +ὁ +συνέδριον +ζητέω +κατά +ὁ +Ἰησοῦς +μαρτυρία +εἰς +ὁ +θανατόω +αὐτός +καί +οὐ +εὑρίσκω +γάρ +πολύς +ψευδομαρτυρέω +κατά +αὐτός +καί +ἴσος +ὁ +μαρτυρία +οὐ +εἰμί +καί +τὶς +ἀνίστημι +ψευδομαρτυρέω +κατά +αὐτός +λέγω +ὅτι +ἐγώ +ἀκούω +αὐτός +λέγω +ὅτι +ἐγώ +καταλύω +ὁ +ναός +οὗτος +ὁ +χειροποίητος +καί +διά +τρεῖς +ἡμέρα +ἄλλος +ἀχειροποίητος +οἰκοδομέω +καί +οὐδέ +οὕτω +ἴσος +εἰμί +ὁ +μαρτυρία +αὐτός +καί +ἀνίστημι +εἰς +μέσος +ὁ +ἀρχιερεύς +ἐπερωτάω +ὁ +Ἰησοῦς +λέγω +οὐ +ἀποκρίνομαι +οὐδείς +τίς +οὗτος +σύ +καταμαρτυρέω +δέ +ὁ +σιωπάω +καί +οὐ +ἀποκρίνομαι +οὐδείς +πάλιν +ὁ +ἀρχιερεύς +ἐπερωτάω +αὐτός +καί +λέγω +αὐτός +σύ +εἰμί +ὁ +Χριστός +ὁ +υἱός +ὁ +εὐλογητός +δέ +ὁ +Ἰησοῦς +λέγω +ἐγώ +εἰμί +καί +ὁράω +ὁ +υἱός +ὁ +ἄνθρωπος +ἐκ +δεξιός +ὁ +δύναμις +κάθημαι +καί +ἔρχομαι +μετά +ὁ +νεφέλη +ὁ +οὐρανός +δέ +ὁ +ἀρχιερεύς +διαρρήγνυμι +ὁ +χιτών +αὐτός +λέγω +τίς +ἔτι +χρεία +μάρτυς +ἔχω +ἀκούω +ὁ +βλασφημία +τίς +σύ +φαίνω +δέ +ὁ +πᾶς +κατακρίνω +αὐτός +ἔνοχος +εἰμί +θάνατος +καί +ἄρχω +τὶς +ἐμπτύω +αὐτός +καί +περικαλύπτω +αὐτός +ὁ +πρόσωπον +καί +κολαφίζω +αὐτός +καί +λέγω +αὐτός +προφητεύω +καί +ὁ +ὑπηρέτης +ῥάπισμα +αὐτός +λαμβάνω +καί +εἰμί +ὁ +Πέτρος +κάτω +ἐν +ὁ +αὐλή +ἔρχομαι +εἷς +ὁ +παιδίσκη +ὁ +ἀρχιερεύς +καί +ὁράω +ὁ +Πέτρος +θερμαίνω +ἐμβλέπω +αὐτός +λέγω +καί +σύ +μετά +ὁ +Ναζαρηνός +ὁ +Ἰησοῦς +εἰμί +δέ +ὁ +ἀρνέομαι +λέγω +οὔτε +οἶδα +οὔτε +ἐπίσταμαι +σύ +τίς +λέγω +καί +ἐξέρχομαι +ἔξω +εἰς +ὁ +προαύλιον +καί +ὁ +παιδίσκη +ὁράω +αὐτός +ἄρχω +πάλιν +λέγω +ὁ +παρίστημι +ὅτι +οὗτος +ἐκ +αὐτός +εἰμί +δέ +ὁ +πάλιν +ἀρνέομαι +καί +μετά +μικρός +πάλιν +ὁ +παρίστημι +λέγω +ὁ +Πέτρος +ἀληθῶς +ἐκ +αὐτός +εἰμί +γάρ +καί +Γαλιλαῖος +εἰμί +δέ +ὁ +ἄρχω +ἀναθεματίζω +καί +ὀμνύω +ὅτι +οὐ +οἶδα +ὁ +ἄνθρωπος +οὗτος +ὅς +λέγω +καί +εὐθύς +ἐκ +δεύτερος +ἀλέκτωρ +φωνέω +καί +ἀναμιμνῄσκω +ὁ +Πέτρος +ὁ +ῥῆμα +ὡς +λέγω +αὐτός +ὁ +Ἰησοῦς +ὅτι +πρίν +ἀλέκτωρ +δίς +φωνέω +τρίς +ἐγώ +ἀπαρνέομαι +καί +ἐπιβάλλω +κλαίω +καί +εὐθύς +πρωΐ +ὁ +ἀρχιερεύς +συμβούλιον +ἑτοιμάζω +μετά +ὁ +πρεσβύτερος +καί +γραμματεύς +καί +ὅλος +ὁ +συνέδριον +δέω +ὁ +Ἰησοῦς +ἀποφέρω +καί +παραδίδωμι +Πιλᾶτος +καί +ἐπερωτάω +αὐτός +ὁ +Πιλᾶτος +σύ +εἰμί +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +δέ +ὁ +ἀποκρίνομαι +αὐτός +λέγω +σύ +λέγω +καί +κατηγορέω +αὐτός +ὁ +ἀρχιερεύς +πολύς +δέ +ὁ +Πιλᾶτος +πάλιν +ἐπερωτάω +αὐτός +λέγω +οὐ +ἀποκρίνομαι +οὐδείς +ὁράω +πόσος +σύ +κατηγορέω +δέ +ὁ +Ἰησοῦς +οὐκέτι +οὐδείς +ἀποκρίνομαι +ὥστε +θαυμάζω +ὁ +Πιλᾶτος +δέ +κατά +ἑορτή +ἀπολύω +αὐτός +εἷς +δέσμιος +ὅς +παραιτέομαι +δέ +εἰμί +δέω +ὁ +λέγω +Βαραββᾶς +μετά +ὁ +στασιαστής +ὅστις +ἐν +ὁ +στάσις +φόνος +ποιέω +καί +ἀναβαίνω +ὁ +ὄχλος +ἄρχω +αἰτέω +καθώς +ποιέω +αὐτός +δέ +ὁ +Πιλᾶτος +ἀποκρίνομαι +αὐτός +λέγω +θέλω +ἀπολύω +σύ +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +γάρ +γινώσκω +ὅτι +διά +φθόνος +παραδίδωμι +αὐτός +ὁ +ἀρχιερεύς +δέ +ὁ +ἀρχιερεύς +ἀνασείω +ὁ +ὄχλος +ἵνα +μᾶλλον +ὁ +Βαραββᾶς +ἀπολύω +αὐτός +δέ +ὁ +Πιλᾶτος +πάλιν +ἀποκρίνομαι +λέγω +αὐτός +οὖν +τίς +ποιέω +ὅς +λέγω +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +δέ +ὁ +πάλιν +κράζω +σταυρόω +αὐτός +δέ +ὁ +Πιλᾶτος +λέγω +αὐτός +γάρ +ποιέω +τίς +κακός +δέ +ὁ +περισσῶς +κράζω +σταυρόω +αὐτός +δέ +ὁ +Πιλᾶτος +βούλομαι +ὁ +ὄχλος +ὁ +ἱκανός +ποιέω +ἀπολύω +αὐτός +ὁ +Βαραββᾶς +καί +παραδίδωμι +ὁ +Ἰησοῦς +φραγελλόω +ἵνα +σταυρόω +δέ +ὁ +στρατιώτης +ἀπάγω +αὐτός +ἔσω +ὁ +αὐλή +ὅς +εἰμί +πραιτώριον +καί +συγκαλέω +ὅλος +ὁ +σπεῖρα +καί +ἐνδιδύσκω +αὐτός +πορφύρα +καί +περιτίθημι +αὐτός +πλέκω +ἀκάνθινος +στέφανος +καί +ἄρχω +ἀσπάζομαι +αὐτός +χαίρω +βασιλεύς +ὁ +Ἰουδαῖος +καί +τύπτω +αὐτός +ὁ +κεφαλή +κάλαμος +καί +ἐμπτύω +αὐτός +καί +τίθημι +ὁ +γόνυ +προσκυνέω +αὐτός +καί +ὅτε +ἐμπαίζω +αὐτός +ἐκδύω +αὐτός +ὁ +πορφύρα +καί +ἐνδύω +αὐτός +ὁ +ἱμάτιον +αὐτός +καί +ἐξάγω +αὐτός +ἵνα +σταυρόω +αὐτός +καί +ἀγγαρεύω +παράγω +τὶς +Σίμων +Κυρηναῖος +ἔρχομαι +ἀπό +ἀγρός +ὁ +πατήρ +Ἀλέξανδρος +καί +Ῥοῦφος +ἵνα +αἴρω +ὁ +σταυρός +αὐτός +καί +φέρω +αὐτός +ἐπί +ὁ +τόπος +Γολγοθᾶ +ὅς +εἰμί +μεθερμηνεύω +κρανίον +τόπος +καί +δίδωμι +αὐτός +σμυρνίζω +οἶνος +δέ +ὅς +οὐ +λαμβάνω +καί +σταυρόω +αὐτός +καί +διαμερίζω +ὁ +ἱμάτιον +αὐτός +βάλλω +κλῆρος +ἐπί +αὐτός +τίς +τίς +αἴρω +δέ +εἰμί +ὥρα +τρίτος +καί +σταυρόω +αὐτός +καί +εἰμί +ἐπιγράφω +ὁ +ἐπιγραφή +ὁ +αἰτία +αὐτός +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +καί +σύν +αὐτός +σταυρόω +δύο +λῃστής +εἷς +ἐκ +δεξιός +καί +εἷς +ἐκ +εὐώνυμος +αὐτός +καί +ὁ +παραπορεύομαι +βλασφημέω +αὐτός +κινέω +ὁ +κεφαλή +αὐτός +καί +λέγω +οὐά +ὁ +καταλύω +ὁ +ναός +καί +οἰκοδομέω +ἐν +τρεῖς +ἡμέρα +σῴζω +σεαυτοῦ +καταβαίνω +ἀπό +ὁ +σταυρός +ὁμοίως +καί +ὁ +ἀρχιερεύς +ἐμπαίζω +πρός +ἀλλήλων +μετά +ὁ +γραμματεύς +λέγω +ἄλλος +σῴζω +ἑαυτοῦ +σῴζω +οὐ +δύναμαι +ὁ +Χριστός +ὁ +βασιλεύς +Ἰσραήλ +καταβαίνω +νῦν +ἀπό +ὁ +σταυρός +ἵνα +ὁράω +καί +πιστεύω +καί +ὁ +συσταυρόω +σύν +αὐτός +ὀνειδίζω +αὐτός +καί +γίνομαι +ὥρα +ἕκτος +σκότος +γίνομαι +ἐπί +ὅλος +ὁ +γῆ +ἕως +ὥρα +ἔνατος +καί +ὁ +ἔνατος +ὥρα +βοάω +ὁ +Ἰησοῦς +φωνή +μέγας +ἐλωΐ +ἐλωΐ +λεμά +σαβαχθάνι +ὅς +εἰμί +μεθερμηνεύω +ὁ +θεός +ἐγώ +ὁ +θεός +ἐγώ +εἰς +τίς +ἐγκαταλείπω +ἐγώ +καί +τὶς +ὁ +παρίστημι +ἀκούω +λέγω +ὁράω +Ἠλίας +φωνέω +δέ +τὶς +τρέχω +καί +γεμίζω +σπόγγος +ὄξος +περιτίθημι +κάλαμος +ποτίζω +αὐτός +λέγω +ἀφίημι +ὁράω +εἰ +ἔρχομαι +Ἠλίας +καθαιρέω +αὐτός +δέ +ὁ +Ἰησοῦς +ἀφίημι +φωνή +μέγας +ἐκπνέω +καί +ὁ +καταπέτασμα +ὁ +ναός +σχίζω +εἰς +δύο +ἀπό +ἄνωθεν +ἕως +κάτω +δέ +ὁ +κεντυρίων +ὁ +παρίστημι +ἐκ +ἐναντίος +αὐτός +ὁράω +ὅτι +οὕτω +ἐκπνέω +λέγω +ἀληθῶς +οὗτος +ὁ +ἄνθρωπος +υἱός +θεός +εἰμί +δέ +εἰμί +καί +γυνή +ἀπό +μακρόθεν +θεωρέω +ἐν +ὅς +καί +Μαρία +ὁ +Μαγδαληνή +καί +Μαρία +ὁ +Ἰάκωβος +ὁ +μικρός +καί +Ἰωσῆς +μήτηρ +καί +Σαλώμη +ὅς +ὅτε +εἰμί +ἐν +ὁ +Γαλιλαία +ἀκολουθέω +αὐτός +καί +διακονέω +αὐτός +καί +ἄλλος +πολύς +ὁ +συναναβαίνω +αὐτός +εἰς +Ἱεροσόλυμα +καί +ἤδη +ὄψιος +γίνομαι +ἐπεί +εἰμί +παρασκευή +ὅς +εἰμί +προσάββατον +ἔρχομαι +Ἰωσήφ +ὁ +ἀπό +Ἀριμαθαία +εὐσχήμων +βουλευτής +ὅς +καί +αὐτός +εἰμί +προσδέχομαι +ὁ +βασιλεία +ὁ +θεός +τολμάω +εἰσέρχομαι +πρός +ὁ +Πιλᾶτος +καί +αἰτέω +ὁ +σῶμα +ὁ +Ἰησοῦς +δέ +ὁ +Πιλᾶτος +θαυμάζω +εἰ +ἤδη +θνῄσκω +καί +προσκαλέω +ὁ +κεντυρίων +ἐπερωτάω +αὐτός +εἰ +πάλαι +ἀποθνῄσκω +καί +γινώσκω +ἀπό +ὁ +κεντυρίων +δωρέομαι +ὁ +πτῶμα +ὁ +Ἰωσήφ +καί +ἀγοράζω +σινδών +καθαιρέω +αὐτός +ἐνειλέω +ὁ +σινδών +καί +κατατίθημι +αὐτός +ἐν +μνῆμα +ὅς +εἰμί +λατομέω +ἐκ +πέτρα +καί +προσκυλίω +λίθος +ἐπί +ὁ +θύρα +ὁ +μνημεῖον +δέ +ὁ +Μαρία +ὁ +Μαγδαληνή +καί +Μαρία +ὁ +Ἰωσῆς +θεωρέω +πού +τίθημι +καί +διαγίνομαι +ὁ +σάββατον +Μαρία +ὁ +Μαγδαληνή +καί +Μαρία +ὁ +ὁ +Ἰάκωβος +καί +Σαλώμη +ἀγοράζω +ἄρωμα +ἵνα +ἔρχομαι +ἀλείφω +αὐτός +καί +λίαν +πρωΐ +ὁ +εἷς +ὁ +σάββατον +ἔρχομαι +ἐπί +ὁ +μνῆμα +ἀνατέλλω +ὁ +ἥλιος +καί +λέγω +πρός +ἑαυτοῦ +τίς +ἀποκυλίω +ἐγώ +ὁ +λίθος +ἐκ +ὁ +θύρα +ὁ +μνημεῖον +καί +ἀναβλέπω +θεωρέω +ὅτι +ἀνακυλίω +ὁ +λίθος +γάρ +εἰμί +μέγας +σφόδρα +καί +εἰσέρχομαι +εἰς +ὁ +μνημεῖον +ὁράω +νεανίσκος +κάθημαι +ἐν +ὁ +δεξιός +περιβάλλω +στολή +λευκός +καί +ἐκθαμβέω +δέ +ὁ +λέγω +αὐτός +μή +ἐκθαμβέω +ζητέω +Ἰησοῦς +ὁ +Ναζαρηνός +ὁ +σταυρόω +ἐγείρω +οὐ +εἰμί +ὧδε +ὁράω +ὁ +τόπος +ὅπου +τίθημι +αὐτός +ἀλλά +ὑπάγω +λέγω +ὁ +μαθητής +αὐτός +καί +ὁ +Πέτρος +ὅτι +προάγω +σύ +εἰς +ὁ +Γαλιλαία +ἐκεῖ +αὐτός +ὁράω +καθώς +λέγω +σύ +καί +ἐξέρχομαι +φεύγω +ἀπό +ὁ +μνημεῖον +γάρ +ἔχω +αὐτός +τρόμος +καί +ἔκστασις +καί +οὐδείς +οὐδείς +λέγω +γάρ +φοβέω +δέ +ἀνίστημι +πρωΐ +πρῶτος +σάββατον +φαίνω +πρῶτος +Μαρία +ὁ +Μαγδαληνή +παρά +ὅς +ἐκβάλλω +ἑπτά +δαιμόνιον +ἐκεῖνος +πορεύομαι +ἀπαγγέλλω +ὁ +μετά +αὐτός +γίνομαι +πενθέω +καί +κλαίω +κἀκεῖνος +ἀκούω +ὅτι +ζάω +καί +θεάομαι +ὑπό +αὐτός +ἀπιστέω +δέ +μετά +οὗτος +δύο +ἐκ +αὐτός +περιπατέω +φανερόω +ἐν +ἕτερος +μορφή +πορεύομαι +εἰς +ἀγρός +κἀκεῖνος +ἀπέρχομαι +ἀπαγγέλλω +ὁ +λοιπός +οὐδέ +ἐκεῖνος +πιστεύω +δέ +ὕστερος +ἀνάκειμαι +αὐτός +ὁ +ἕνδεκα +φανερόω +καί +ὀνειδίζω +ὁ +ἀπιστία +αὐτός +καί +σκληροκαρδία +ὅτι +ὁ +θεάομαι +αὐτός +ἐγείρω +οὐ +πιστεύω +καί +λέγω +αὐτός +πορεύομαι +εἰς +ὁ +κόσμος +ἅπας +κηρύσσω +ὁ +εὐαγγέλιον +πᾶς +ὁ +κτίσις +ὁ +πιστεύω +καί +βαπτίζω +σῴζω +δέ +ὁ +ἀπιστέω +κατακρίνω +δέ +σημεῖον +οὗτος +ὁ +πιστεύω +παρακολουθέω +ἐν +ὁ +ὄνομα +ἐγώ +δαιμόνιον +ἐκβάλλω +γλῶσσα +καινός +λαλέω +ὄφις +αἴρω +κἄν +θανάσιμος +τὶς +πίνω +οὐ +μή +αὐτός +βλάπτω +ἐπί +ἄρρωστος +χείρ +ἐπιτίθημι +καί +καλῶς +ἔχω +μέν +οὖν +ὁ +κύριος +Ἰησοῦς +μετά +ὁ +λαλέω +αὐτός +ἀναλαμβάνω +εἰς +ὁ +οὐρανός +καί +καθίζω +ἐκ +δεξιός +ὁ +θεός +δέ +ἐκεῖνος +ἐξέρχομαι +κηρύσσω +πανταχοῦ +ὁ +κύριος +συνεργέω +καί +ὁ +λόγος +βεβαιόω +διά +ὁ +ἐπακολουθέω +σημεῖον +δέ +πᾶς +ὁ +παραγγέλλω +ὁ +περί +ὁ +Πέτρος +συντόμως +ἐξαγγέλλω +δέ +μετά +οὗτος +καί +αὐτός +ὁ +Ἰησοῦς +ἀπό +ἀνατολή +καί +ἄχρι +δύσις +ἐξαποστέλλω +διά +αὐτός +ὁ +ἱερός +καί +ἄφθαρτος +κήρυγμα +ὁ +αἰώνιος +σωτηρία +ἐπειδήπερ +πολύς +ἐπιχειρέω +ἀνατάσσομαι +διήγησις +περί +ὁ +πληροφορέω +ἐν +ἐγώ +πρᾶγμα +καθώς +παραδίδωμι +ἐγώ +ὁ +ἀπό +ἀρχή +αὐτόπτης +καί +ὑπηρέτης +γίνομαι +ὁ +λόγος +δοκέω +κἀγώ +παρακολουθέω +ἄνωθεν +πᾶς +ἀκριβῶς +καθεξῆς +σύ +γράφω +κράτιστος +Θεόφιλος +ἵνα +ἐπιγινώσκω +περί +ὅς +κατηχέω +λόγος +ὁ +ἀσφάλεια +γίνομαι +ἐν +ὁ +ἡμέρα +Ἡρῴδης +βασιλεύς +ὁ +Ἰουδαία +ἱερεύς +τὶς +ὄνομα +Ζαχαρίας +ἐκ +ἐφημερία +Ἀβιά +καί +γυνή +αὐτός +ἐκ +ὁ +θυγάτηρ +Ἀαρών +καί +ὁ +ὄνομα +αὐτός +Ἐλισάβετ +δέ +εἰμί +δίκαιος +ἀμφότεροι +ἐναντίον +ὁ +θεός +πορεύομαι +ἐν +πᾶς +ὁ +ἐντολή +καί +δικαίωμα +ὁ +κύριος +ἄμεμπτος +καί +οὐ +εἰμί +αὐτός +τέκνον +καθότι +εἰμί +ὁ +Ἐλισάβετ +στεῖρα +καί +ἀμφότεροι +προβαίνω +εἰμί +ἐν +ὁ +ἡμέρα +αὐτός +δέ +γίνομαι +ἐν +ὁ +ἱερατεύω +αὐτός +ἐν +ὁ +τάξις +ὁ +ἐφημερία +αὐτός +ἔναντι +ὁ +θεός +κατά +ὁ +ἔθος +ὁ +ἱερατεία +λαγχάνω +ὁ +θυμιάω +εἰσέρχομαι +εἰς +ὁ +ναός +ὁ +κύριος +καί +πᾶς +ὁ +πλῆθος +ὁ +λαός +εἰμί +προσεύχομαι +ἔξω +ὁ +ὥρα +ὁ +θυμίαμα +δέ +ὁράω +αὐτός +ἄγγελος +κύριος +ἵστημι +ἐκ +δεξιός +ὁ +θυσιαστήριον +ὁ +θυμίαμα +καί +ταράσσω +Ζαχαρίας +ὁράω +καί +φόβος +ἐπιπίπτω +ἐπί +αὐτός +δέ +λέγω +πρός +αὐτός +ὁ +ἄγγελος +μή +φοβέω +Ζαχαρίας +διότι +εἰσακούω +ὁ +δέησις +σύ +καί +ὁ +γυνή +σύ +Ἐλισάβετ +γεννάω +υἱός +σύ +καί +καλέω +ὁ +ὄνομα +αὐτός +Ἰωάννης +καί +εἰμί +σύ +χαρά +καί +ἀγαλλίασις +καί +πολύς +ἐπί +ὁ +γένεσις +αὐτός +χαίρω +γάρ +εἰμί +μέγας +ἐνώπιον +κύριος +καί +οἶνος +καί +σίκερα +οὐ +μή +πίνω +καί +πνεῦμα +ἅγιος +πίμπλημι +ἔτι +ἐκ +κοιλία +μήτηρ +αὐτός +καί +πολύς +ὁ +υἱός +Ἰσραήλ +ἐπιστρέφω +ἐπί +κύριος +ὁ +θεός +αὐτός +καί +αὐτός +προέρχομαι +ἐνώπιον +αὐτός +ἐν +πνεῦμα +καί +δύναμις +Ἠλίας +ἐπιστρέφω +καρδία +πατήρ +ἐπί +τέκνον +καί +ἀπειθής +ἐν +φρόνησις +δίκαιος +ἑτοιμάζω +κύριος +λαός +κατασκευάζω +καί +λέγω +Ζαχαρίας +πρός +ὁ +ἄγγελος +κατά +τίς +γινώσκω +οὗτος +γάρ +ἐγώ +εἰμί +πρεσβύτης +καί +ὁ +γυνή +ἐγώ +προβαίνω +ἐν +ὁ +ἡμέρα +αὐτός +καί +ἀποκρίνομαι +ὁ +ἄγγελος +λέγω +αὐτός +ἐγώ +εἰμί +Γαβριήλ +ὁ +παρίστημι +ἐνώπιον +ὁ +θεός +καί +ἀποστέλλω +λαλέω +πρός +σύ +καί +εὐαγγελίζω +σύ +οὗτος +καί +ὁράω +εἰμί +σιωπάω +καί +μή +δύναμαι +λαλέω +ἄχρι +ὅς +ἡμέρα +γίνομαι +οὗτος +ἀντί +ὅς +οὐ +πιστεύω +ὁ +λόγος +ἐγώ +ὅστις +πληρόω +εἰς +ὁ +καιρός +αὐτός +καί +εἰμί +προσδοκάω +ὁ +λαός +ὁ +Ζαχαρίας +καί +θαυμάζω +ἐν +ὁ +χρονίζω +ἐν +ὁ +ναός +αὐτός +δέ +ἐξέρχομαι +οὐ +δύναμαι +λαλέω +αὐτός +καί +ἐπιγινώσκω +ὅτι +ὀπτασία +ὁράω +ἐν +ὁ +ναός +καί +αὐτός +εἰμί +διανεύω +αὐτός +καί +διαμένω +κωφός +καί +γίνομαι +ὡς +πίμπλημι +ὁ +ἡμέρα +ὁ +λειτουργία +αὐτός +ἀπέρχομαι +εἰς +ὁ +οἶκος +αὐτός +δέ +μετά +οὗτος +ὁ +ἡμέρα +συλλαμβάνω +Ἐλισάβετ +ὁ +γυνή +αὐτός +καί +περικρύβω +ἑαυτοῦ +μήν (II) +πέντε +λέγω +ὅτι +οὕτω +ἐγώ +ποιέω +κύριος +ἐν +ἡμέρα +ὅς +ἐπεῖδον +ἀφαιρέω +ὄνειδος +ἐγώ +ἐν +ἄνθρωπος +δέ +ἐν +ὁ +μήν (II) +ὁ +ἕκτος +ἀποστέλλω +ὁ +ἄγγελος +Γαβριήλ +ἀπό +ὁ +θεός +εἰς +πόλις +ὁ +Γαλιλαία +ὅς +ὄνομα +Ναζαρά +πρός +παρθένος +μνηστεύω +ἀνήρ +ὅς +ὄνομα +Ἰωσήφ +ἐκ +οἶκος +Δαυίδ +καί +ὁ +ὄνομα +ὁ +παρθένος +Μαρία +καί +εἰσέρχομαι +πρός +αὐτός +λέγω +χαίρω +χαριτόω +ὁ +κύριος +μετά +σύ +δέ +ὁ +ἐπί +ὁ +λόγος +διαταράσσω +καί +διαλογίζομαι +ποταπός +εἰμί +ὁ +ἀσπασμός +οὗτος +καί +λέγω +ὁ +ἄγγελος +αὐτός +μή +φοβέω +Μαρία +γάρ +εὑρίσκω +χάρις +παρά +ὁ +θεός +καί +ὁράω +συλλαμβάνω +ἐν +γαστήρ +καί +τίκτω +υἱός +καί +καλέω +ὁ +ὄνομα +αὐτός +Ἰησοῦς +οὗτος +εἰμί +μέγας +καί +υἱός +ὕψιστος +καλέω +καί +δίδωμι +αὐτός +κύριος +ὁ +θεός +ὁ +θρόνος +Δαυίδ +ὁ +πατήρ +αὐτός +καί +βασιλεύω +ἐπί +ὁ +οἶκος +Ἰακώβ +εἰς +ὁ +αἰών +καί +ὁ +βασιλεία +αὐτός +οὐ +εἰμί +τέλος +δέ +λέγω +Μαρία +πρός +ὁ +ἄγγελος +πῶς +εἰμί +οὗτος +ἐπεί +ἀνήρ +οὐ +γινώσκω +καί +ἀποκρίνομαι +ὁ +ἄγγελος +λέγω +αὐτός +πνεῦμα +ἅγιος +ἐπέρχομαι +ἐπί +σύ +καί +δύναμις +ὕψιστος +ἐπισκιάζω +σύ +διό +καί +ὁ +γεννάω +ἅγιος +καλέω +υἱός +θεός +καί +ὁράω +Ἐλισάβετ +ὁ +συγγενίς +σύ +καί +αὐτός +συλλαμβάνω +υἱός +ἐν +γῆρας +αὐτός +καί +οὗτος +μήν (II) +ἕκτος +εἰμί +αὐτός +ὁ +καλέω +στεῖρα +ὅτι +οὐ +ἀδυνατέω +παρά +ὁ +θεός +πᾶς +ῥῆμα +δέ +λέγω +Μαρία +ὁράω +ὁ +δούλη +κύριος +γίνομαι +ἐγώ +κατά +ὁ +ῥῆμα +σύ +καί +ἀπέρχομαι +ἀπό +αὐτός +ὁ +ἄγγελος +δέ +Μαρία +ἀνίστημι +ἐν +ὁ +ἡμέρα +οὗτος +πορεύομαι +εἰς +ὁ +ὀρεινός +μετά +σπουδή +εἰς +πόλις +Ἰούδας +καί +εἰσέρχομαι +εἰς +ὁ +οἶκος +Ζαχαρίας +καί +ἀσπάζομαι +ὁ +Ἐλισάβετ +καί +γίνομαι +ὡς +ἀκούω +ὁ +ἀσπασμός +ὁ +Μαρία +ὁ +Ἐλισάβετ +σκιρτάω +ὁ +βρέφος +ἐν +ὁ +κοιλία +αὐτός +καί +πίμπλημι +πνεῦμα +ἅγιος +ὁ +Ἐλισάβετ +καί +ἀναφωνέω +κραυγή +μέγας +καί +λέγω +εὐλογέω +σύ +ἐν +γυνή +καί +εὐλογέω +ὁ +καρπός +ὁ +κοιλία +σύ +καί +πόθεν +ἐγώ +οὗτος +ἵνα +ἔρχομαι +ὁ +μήτηρ +ὁ +κύριος +ἐγώ +πρός +ἐγώ +γάρ +ὁράω +ὡς +γίνομαι +ὁ +φωνή +ὁ +ἀσπασμός +σύ +εἰς +ὁ +οὖς +ἐγώ +σκιρτάω +ἐν +ἀγαλλίασις +ὁ +βρέφος +ἐν +ὁ +κοιλία +ἐγώ +καί +μακάριος +ὁ +πιστεύω +ὅτι +εἰμί +τελείωσις +ὁ +λαλέω +αὐτός +παρά +κύριος +καί +λέγω +Μαρία +μεγαλύνω +ὁ +ψυχή +ἐγώ +ὁ +κύριος +καί +ἀγαλλιάω +ὁ +πνεῦμα +ἐγώ +ἐπί +ὁ +θεός +ὁ +σωτήρ +ἐγώ +ὅτι +ἐπιβλέπω +ἐπί +ὁ +ταπείνωσις +ὁ +δούλη +αὐτός +γάρ +ὁράω +ἀπό +ὁ +νῦν +μακαρίζω +ἐγώ +πᾶς +ὁ +γενεά +ὅτι +ποιέω +ἐγώ +μέγας +ὁ +δυνατός +καί +ἅγιος +ὁ +ὄνομα +αὐτός +καί +ὁ +ἔλεος +αὐτός +εἰς +γενεά +καί +γενεά +ὁ +φοβέω +αὐτός +ποιέω +κράτος +ἐν +βραχίων +αὐτός +διασκορπίζω +ὑπερήφανος +διάνοια +καρδία +αὐτός +καθαιρέω +δυνάστης +ἀπό +θρόνος +καί +ὑψόω +ταπεινός +πεινάω +ἐμπίπλημι +ἀγαθός +καί +πλουτέω +ἐξαποστέλλω +κενός +ἀντιλαμβάνω +Ἰσραήλ +παῖς +αὐτός +μιμνῄσκω +ἔλεος +ὁ +Ἀβραάμ +καί +ὁ +σπέρμα +αὐτός +εἰς +ὁ +αἰών +καθώς +λαλέω +πρός +ὁ +πατήρ +ἐγώ +δέ +μένω +Μαρία +σύν +αὐτός +ὡς +μήν (II) +τρεῖς +καί +ὑποστρέφω +εἰς +ὁ +οἶκος +αὐτός +δέ +ὁ +Ἐλισάβετ +πίμπλημι +ὁ +χρόνος +ὁ +τίκτω +αὐτός +καί +γεννάω +υἱός +καί +ἀκούω +ὁ +περίοικος +καί +ὁ +συγγενής +αὐτός +ὅτι +μεγαλύνω +κύριος +ὁ +ἔλεος +αὐτός +μετά +αὐτός +καί +συγχαίρω +αὐτός +καί +γίνομαι +ἐν +ὁ +ἡμέρα +ὁ +ὄγδοος +ἔρχομαι +περιτέμνω +ὁ +παιδίον +καί +καλέω +αὐτός +ἐπί +ὁ +ὄνομα +ὁ +πατήρ +αὐτός +Ζαχαρίας +καί +ἀποκρίνομαι +ὁ +μήτηρ +αὐτός +λέγω +οὐχί +ἀλλά +καλέω +Ἰωάννης +καί +λέγω +πρός +αὐτός +ὅτι +εἰμί +ἐκ +ὁ +συγγένεια +σύ +οὐδείς +ὅς +καλέω +ὁ +ὄνομα +οὗτος +δέ +ἐννεύω +ὁ +πατήρ +αὐτός +ὁ +ἄν +θέλω +τίς +καλέω +αὐτός +καί +αἰτέω +πινακίδιον +γράφω +λέγω +Ἰωάννης +εἰμί +ὄνομα +αὐτός +καί +θαυμάζω +πᾶς +δέ +ἀνοίγω +ὁ +στόμα +αὐτός +παραχρῆμα +καί +ὁ +γλῶσσα +αὐτός +καί +λαλέω +εὐλογέω +ὁ +θεός +καί +γίνομαι +φόβος +ἐπί +πᾶς +ὁ +περιοικέω +αὐτός +καί +ἐν +ὅλος +ὁ +ὀρεινός +ὁ +Ἰουδαία +διαλαλέω +πᾶς +ὁ +ῥῆμα +οὗτος +καί +τίθημι +πᾶς +ὁ +ἀκούω +ἐν +ὁ +καρδία +αὐτός +λέγω +ἆρα +τίς +ὁ +παιδίον +οὗτος +εἰμί +γάρ +καί +χείρ +κύριος +εἰμί +μετά +αὐτός +καί +Ζαχαρίας +ὁ +πατήρ +αὐτός +πίμπλημι +πνεῦμα +ἅγιος +καί +προφητεύω +λέγω +εὐλογητός +κύριος +ὁ +θεός +ὁ +Ἰσραήλ +ὅτι +ἐπισκέπτομαι +καί +ποιέω +λύτρωσις +ὁ +λαός +αὐτός +καί +ἐγείρω +κέρας +σωτηρία +ἐγώ +ἐν +οἶκος +Δαυίδ +παῖς +αὐτός +καθώς +λαλέω +διά +στόμα +ὁ +ἅγιος +ἀπό +αἰών +προφήτης +αὐτός +σωτηρία +ἐκ +ἐχθρός +ἐγώ +καί +ἐκ +χείρ +πᾶς +ὁ +μισέω +ἐγώ +ποιέω +ἔλεος +μετά +ὁ +πατήρ +ἐγώ +καί +μιμνῄσκω +διαθήκη +ἅγιος +αὐτός +ὅρκος +ὅς +ὀμνύω +πρός +Ἀβραάμ +ὁ +πατήρ +ἐγώ +ὁ +δίδωμι +ἐγώ +ἐκ +χείρ +ἐχθρός +ῥύομαι +ἀφόβως +λατρεύω +αὐτός +ἐν +ὁσιότης +καί +δικαιοσύνη +ἐνώπιον +αὐτός +πᾶς +ὁ +ἡμέρα +ἐγώ +δέ +παιδίον +καί +σύ +προφήτης +ὕψιστος +καλέω +γάρ +προπορεύομαι +ἐνώπιον +κύριος +ἑτοιμάζω +ὁδός +αὐτός +ὁ +δίδωμι +γνῶσις +σωτηρία +ὁ +λαός +αὐτός +ἐν +ἄφεσις +ἁμαρτία +αὐτός +διά +σπλάγχνον +ἔλεος +θεός +ἐγώ +ἐν +ὅς +ἐπισκέπτομαι +ἐγώ +ἀνατολή +ἐκ +ὕψος +ἐπιφαίνω +ὁ +ἐν +σκότος +καί +σκιά +θάνατος +κάθημαι +ὁ +κατευθύνω +ὁ +πούς +ἐγώ +εἰς +ὁδός +εἰρήνη +δέ +ὁ +παιδίον +αὐξάνω +καί +κραταιόω +πνεῦμα +καί +εἰμί +ἐν +ὁ +ἔρημος +ἕως +ἡμέρα +ἀνάδειξις +αὐτός +πρός +ὁ +Ἰσραήλ +δέ +γίνομαι +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ἐξέρχομαι +δόγμα +παρά +Καῖσαρ +Αὐγοῦστος +ἀπογράφω +πᾶς +ὁ +οἰκουμένη +οὗτος +ἀπογραφή +πρῶτος +γίνομαι +ἡγεμονεύω +ὁ +Συρία +Κυρήνιος +καί +πορεύομαι +πᾶς +ἀπογράφω +ἕκαστος +εἰς +ὁ +ἑαυτοῦ +πόλις +δέ +ἀναβαίνω +καί +Ἰωσήφ +ἀπό +ὁ +Γαλιλαία +ἐκ +πόλις +Ναζαρά +εἰς +ὁ +Ἰουδαία +εἰς +πόλις +Δαυίδ +ὅστις +καλέω +Βηθλέεμ +διά +ὁ +εἰμί +αὐτός +ἐκ +οἶκος +καί +πατριά +Δαυίδ +ἀπογράφω +σύν +Μαρία +ὁ +μνηστεύω +αὐτός +εἰμί +ἔγκυος +δέ +γίνομαι +ἐν +ὁ +εἰμί +αὐτός +ἐκεῖ +πίμπλημι +ὁ +ἡμέρα +ὁ +τίκτω +αὐτός +καί +τίκτω +ὁ +υἱός +αὐτός +ὁ +πρωτότοκος +καί +σπαργανόω +αὐτός +καί +ἀνακλίνω +αὐτός +ἐν +φάτνη +διότι +οὐ +εἰμί +αὐτός +τόπος +ἐν +ὁ +κατάλυμα +καί +ποιμήν +εἰμί +ἐν +ὁ +χώρα +ὁ +αὐτός +ἀγραυλέω +καί +φυλάσσω +φυλακή +ὁ +νύξ +ἐπί +ὁ +ποίμνη +αὐτός +καί +ἄγγελος +κύριος +ἐφίστημι +αὐτός +καί +δόξα +κύριος +περιλάμπω +αὐτός +καί +φοβέω +φόβος +μέγας +καί +λέγω +αὐτός +ὁ +ἄγγελος +μή +φοβέω +γάρ +ὁράω +εὐαγγελίζω +σύ +χαρά +μέγας +ὅστις +εἰμί +πᾶς +ὁ +λαός +ὅτι +τίκτω +σύ +σήμερον +σωτήρ +ὅς +εἰμί +Χριστός +κύριος +ἐν +πόλις +Δαυίδ +καί +οὗτος +σύ +σημεῖον +εὑρίσκω +βρέφος +σπαργανόω +καί +κεῖμαι +ἐν +φάτνη +καί +ἐξαίφνης +γίνομαι +σύν +ὁ +ἄγγελος +πλῆθος +στρατιά +οὐράνιος +αἰνέω +ὁ +θεός +καί +λέγω +δόξα +ἐν +ὕψιστος +θεός +καί +ἐπί +γῆ +εἰρήνη +ἐν +ἄνθρωπος +εὐδοκία +καί +γίνομαι +ὡς +ἀπέρχομαι +ἀπό +αὐτός +εἰς +ὁ +οὐρανός +ὁ +ἄγγελος +ὁ +ποιμήν +λαλέω +πρός +ἀλλήλων +δή +διέρχομαι +ἕως +Βηθλέεμ +καί +ὁράω +ὁ +ῥῆμα +οὗτος +ὁ +γίνομαι +ὅς +ὁ +κύριος +γνωρίζω +ἐγώ +καί +ἔρχομαι +σπεύδω +καί +ἀνευρίσκω +τέ +ὁ +Μαρία +καί +ὁ +Ἰωσήφ +καί +ὁ +βρέφος +κεῖμαι +ἐν +ὁ +φάτνη +δέ +ὁράω +γνωρίζω +περί +ὁ +ῥῆμα +ὁ +λαλέω +αὐτός +περί +ὁ +παιδίον +οὗτος +καί +πᾶς +ὁ +ἀκούω +θαυμάζω +περί +ὁ +λαλέω +ὑπό +ὁ +ποιμήν +πρός +αὐτός +δέ +ὁ +Μαρία +συντηρέω +πᾶς +ὁ +ῥῆμα +οὗτος +συμβάλλω +ἐν +ὁ +καρδία +αὐτός +καί +ὑποστρέφω +ὁ +ποιμήν +δοξάζω +καί +αἰνέω +ὁ +θεός +ἐπί +πᾶς +ὅς +ἀκούω +καί +ὁράω +καθώς +λαλέω +πρός +αὐτός +καί +ὅτε +πίμπλημι +ἡμέρα +ὀκτώ +ὁ +περιτέμνω +αὐτός +καί +καλέω +ὁ +ὄνομα +αὐτός +Ἰησοῦς +ὁ +καλέω +ὑπό +ὁ +ἄγγελος +πρό +ὁ +συλλαμβάνω +αὐτός +ἐν +ὁ +κοιλία +καί +ὅτε +πίμπλημι +ὁ +ἡμέρα +ὁ +καθαρισμός +αὐτός +κατά +ὁ +νόμος +Μωϋσῆς +ἀνάγω +αὐτός +εἰς +Ἱεροσόλυμα +παρίστημι +ὁ +κύριος +καθώς +γράφω +ἐν +νόμος +κύριος +ὅτι +πᾶς +ἄρσην +διανοίγω +μήτρα +ἅγιος +ὁ +κύριος +καλέω +καί +ὁ +δίδωμι +θυσία +κατά +ὁ +εἶπον +ἐν +ὁ +νόμος +κύριος +ζεῦγος +τρυγών +ἤ +δύο +νοσσός +περιστερά +καί +ὁράω +ἄνθρωπος +εἰμί +ἐν +Ἱεροσόλυμα +ὅς +ὄνομα +Συμεών +καί +ὁ +ἄνθρωπος +οὗτος +δίκαιος +καί +εὐλαβής +προσδέχομαι +παράκλησις +ὁ +Ἰσραήλ +καί +πνεῦμα +ἅγιος +εἰμί +ἐπί +αὐτός +καί +εἰμί +χρηματίζω +αὐτός +ὑπό +ὁ +πνεῦμα +ὁ +ἅγιος +μή +ὁράω +θάνατος +πρίν +ἤ +ἄν +ὁράω +ὁ +Χριστός +κύριος +καί +ἔρχομαι +ἐν +ὁ +πνεῦμα +εἰς +ὁ +ἱερός +καί +ἐν +ὁ +εἰσάγω +ὁ +γονεύς +ὁ +παιδίον +Ἰησοῦς +ὁ +ποιέω +αὐτός +κατά +ὁ +ἐθίζω +ὁ +νόμος +περί +αὐτός +καί +αὐτός +δέχομαι +αὐτός +εἰς +ὁ +ἀγκάλη +καί +εὐλογέω +ὁ +θεός +καί +λέγω +δεσπότης +νῦν +ἀπολύω +ὁ +δοῦλος (II) +σύ +κατά +ὁ +ῥῆμα +σύ +ἐν +εἰρήνη +ὅτι +ὁράω +ὁ +ὀφθαλμός +ἐγώ +ὁ +σωτήριος +σύ +ὅς +ἑτοιμάζω +κατά +πρόσωπον +πᾶς +ὁ +λαός +φῶς +εἰς +ἀποκάλυψις +ἔθνος +καί +δόξα +λαός +σύ +Ἰσραήλ +καί +εἰμί +θαυμάζω +ὁ +πατήρ +αὐτός +καί +ὁ +μήτηρ +ἐπί +ὁ +λαλέω +περί +αὐτός +καί +εὐλογέω +αὐτός +Συμεών +καί +λέγω +πρός +Μαρία +ὁ +μήτηρ +αὐτός +ὁράω +οὗτος +κεῖμαι +εἰς +πτῶσις +καί +ἀνάστασις +πολύς +ἐν +ὁ +Ἰσραήλ +καί +εἰς +σημεῖον +ἀντιλέγω +δέ +καί +σύ +αὐτός +ὁ +ψυχή +διέρχομαι +ῥομφαία +ὅπως +ἄν +ἀποκαλύπτω +ἐκ +πολύς +καρδία +διαλογισμός +καί +εἰμί +Ἅννα +προφῆτις +θυγάτηρ +Φανουήλ +ἐκ +φυλή +Ἀσήρ +οὗτος +προβαίνω +ἐν +ἡμέρα +πολύς +ζάω +μετά +ἀνήρ +ἔτος +ἑπτά +ἀπό +ὁ +παρθενία +αὐτός +καί +αὐτός +χῆρος +ἕως +ἔτος +ὀγδοήκοντα +τέσσαρες +ὅς +οὐ +ἀφίστημι +ὁ +ἱερός +νηστεία +καί +δέησις +λατρεύω +νύξ +καί +ἡμέρα +καί +αὐτός +ὁ +ὥρα +ἐφίστημι +ἀνθομολογέομαι +ὁ +θεός +καί +λαλέω +περί +αὐτός +πᾶς +ὁ +προσδέχομαι +λύτρωσις +Ἱεροσόλυμα +καί +ὡς +τελέω +πᾶς +ὁ +κατά +ὁ +νόμος +κύριος +ἐπιστρέφω +εἰς +ὁ +Γαλιλαία +εἰς +πόλις +ἑαυτοῦ +Ναζαρά +δέ +ὁ +παιδίον +αὐξάνω +καί +κραταιόω +πληρόω +σοφία +καί +χάρις +θεός +εἰμί +ἐπί +αὐτός +καί +πορεύομαι +ὁ +γονεύς +αὐτός +κατά +ἔτος +εἰς +Ἱεροσόλυμα +ὁ +ἑορτή +ὁ +πάσχα +καί +ὅτε +γίνομαι +ἔτος +δώδεκα +ἀναβαίνω +αὐτός +κατά +ὁ +ἔθος +ὁ +ἑορτή +καί +τελειόω +ὁ +ἡμέρα +ἐν +ὁ +ὑποστρέφω +αὐτός +ὑπομένω +Ἰησοῦς +ὁ +παῖς +ἐν +Ἱεροσόλυμα +καί +οὐ +γινώσκω +ὁ +γονεύς +αὐτός +δέ +νομίζω +αὐτός +εἰμί +ἐν +ὁ +συνοδία +ἔρχομαι +ἡμέρα +ὁδός +καί +ἀναζητέω +αὐτός +ἐν +ὁ +συγγενής +καί +ὁ +γνωστός +καί +μή +εὑρίσκω +ὑποστρέφω +εἰς +Ἱεροσόλυμα +ἀναζητέω +αὐτός +καί +γίνομαι +μετά +ἡμέρα +τρεῖς +εὑρίσκω +αὐτός +ἐν +ὁ +ἱερός +καθέζομαι +ἐν +μέσος +ὁ +διδάσκαλος +καί +ἀκούω +αὐτός +καί +ἐπερωτάω +αὐτός +δέ +ἐξίστημι +πᾶς +ὁ +ἀκούω +αὐτός +ἐπί +ὁ +σύνεσις +καί +ὁ +ἀπόκρισις +αὐτός +καί +ὁράω +αὐτός +ἐκπλήσσω +καί +λέγω +πρός +αὐτός +ὁ +μήτηρ +αὐτός +τέκνον +τίς +ποιέω +ἐγώ +οὕτω +ὁράω +ὁ +πατήρ +σύ +κἀγώ +ὀδυνάω +ζητέω +σύ +καί +λέγω +πρός +αὐτός +τίς +ὅτι +ζητέω +ἐγώ +οὐ +οἶδα +ὅτι +ἐν +ὁ +ὁ +πατήρ +ἐγώ +εἰμί +ἐγώ +δεῖ +καί +αὐτός +οὐ +συνίημι +ὁ +ῥῆμα +ὅς +λαλέω +αὐτός +καί +καταβαίνω +μετά +αὐτός +καί +ἔρχομαι +εἰς +Ναζαρά +καί +εἰμί +ὑποτάσσω +αὐτός +καί +ὁ +μήτηρ +αὐτός +διατηρέω +πᾶς +ὁ +ῥῆμα +ἐν +ὁ +καρδία +αὐτός +καί +Ἰησοῦς +προκόπτω +ἐν +ὁ +σοφία +καί +ἡλικία +καί +χάρις +παρά +θεός +καί +ἄνθρωπος +δέ +ἐν +ἔτος +πεντεκαιδέκατος +ὁ +ἡγεμονία +Τιβέριος +Καῖσαρ +ἡγεμονεύω +Πόντιος +Πιλᾶτος +ὁ +Ἰουδαία +καί +τετρααρχέω +ὁ +Γαλιλαία +Ἡρῴδης +δέ +Φίλιππος +ὁ +ἀδελφός +αὐτός +τετρααρχέω +ὁ +Ἰτουραῖος +καί +Τραχωνῖτις +χώρα +καί +Λυσανίας +ὁ +Ἀβιληνή +τετρααρχέω +ἐπί +ἀρχιερεύς +Ἅννας +καί +Καϊάφας +γίνομαι +ῥῆμα +θεός +ἐπί +Ἰωάννης +ὁ +Ζαχαρίας +υἱός +ἐν +ὁ +ἔρημος +καί +ἔρχομαι +εἰς +πᾶς +ὁ +περίχωρος +ὁ +Ἰορδάνης +κηρύσσω +βάπτισμα +μετάνοια +εἰς +ἄφεσις +ἁμαρτία +ὡς +γράφω +ἐν +βίβλος +λόγος +Ἠσαΐας +ὁ +προφήτης +φωνή +βοάω +ἐν +ὁ +ἔρημος +ἑτοιμάζω +ὁ +ὁδός +κύριος +εὐθύς +ποιέω +ὁ +τρίβος +αὐτός +πᾶς +φάραγξ +πληρόω +καί +πᾶς +ὄρος +καί +βουνός +ταπεινόω +καί +εἰμί +ὁ +σκολιός +εἰς +εὐθύς +καί +ὁ +τραχύς +εἰς +ὁδός +λεῖος +καί +ὁράω +πᾶς +σάρξ +ὁ +σωτήριος +ὁ +θεός +οὖν +λέγω +ὁ +ἐκπορεύομαι +βαπτίζω +ὑπό +αὐτός +ὄχλος +γέννημα +ἔχιδνα +τίς +ὑποδείκνυμι +σύ +φεύγω +ἀπό +ὁ +μέλλω +ὀργή +οὖν +ποιέω +καρπός +ἄξιος +ὁ +μετάνοια +καί +μή +ἄρχω +λέγω +ἐν +ἑαυτοῦ +πατήρ +ἔχω +ὁ +Ἀβραάμ +γάρ +λέγω +σύ +ὅτι +δύναμαι +ὁ +θεός +ἐκ +ὁ +λίθος +οὗτος +ἐγείρω +τέκνον +ὁ +Ἀβραάμ +δέ +ἤδη +καί +ὁ +ἀξίνη +πρός +ὁ +ῥίζα +ὁ +δένδρον +κεῖμαι +οὖν +πᾶς +δένδρον +μή +ποιέω +καρπός +καλός +ἐκκόπτω +καί +εἰς +πῦρ +βάλλω +καί +ἐπερωτάω +αὐτός +ὁ +ὄχλος +λέγω +οὖν +τίς +ποιέω +δέ +ἀποκρίνομαι +λέγω +αὐτός +ὁ +ἔχω +δύο +χιτών +μεταδίδωμι +ὁ +μή +ἔχω +καί +ὁ +ἔχω +βρῶμα +ὁμοίως +ποιέω +δέ +ἔρχομαι +καί +τελώνης +βαπτίζω +καί +λέγω +πρός +αὐτός +διδάσκαλος +τίς +ποιέω +δέ +ὁ +λέγω +πρός +αὐτός +μηδείς +πολύς +παρά +ὁ +διατάσσω +σύ +πράσσω +δέ +ἐπερωτάω +αὐτός +καί +στρατεύω +λέγω +τίς +ποιέω +καί +ἐγώ +καί +λέγω +αὐτός +μηδείς +διασείω +μηδέ +συκοφαντέω +καί +ἀρκέω +ὁ +ὀψώνιον +σύ +δέ +προσδοκάω +ὁ +λαός +καί +διαλογίζομαι +πᾶς +ἐν +ὁ +καρδία +αὐτός +περί +ὁ +Ἰωάννης +μή +ποτέ +αὐτός +εἰμί +ὁ +Χριστός +ἀποκρίνομαι +λέγω +πᾶς +ὁ +Ἰωάννης +μέν +ἐγώ +ὕδωρ +βαπτίζω +σύ +δέ +ἔρχομαι +ὁ +ἰσχυρός +ἐγώ +ὅς +οὐ +εἰμί +ἱκανός +λύω +ὁ +ἱμάς +ὁ +ὑπόδημα +αὐτός +αὐτός +σύ +βαπτίζω +ἐν +πνεῦμα +ἅγιος +καί +πῦρ +ὅς +ὁ +πτύον +ἐν +ὁ +χείρ +αὐτός +διακαθαίρω +ὁ +ἅλων +αὐτός +καί +συνάγω +ὁ +σῖτος +εἰς +ὁ +ἀποθήκη +αὐτός +δέ +ὁ +ἄχυρον +κατακαίω +πῦρ +ἄσβεστος +μέν +οὖν +πολύς +καί +ἕτερος +παρακαλέω +εὐαγγελίζω +ὁ +λαός +δέ +ὁ +Ἡρῴδης +ὁ +τετραάρχης +ἐλέγχω +ὑπό +αὐτός +περί +Ἡρῳδιάς +ὁ +γυνή +ὁ +ἀδελφός +αὐτός +καί +περί +πᾶς +ὅς +πονηρός +ποιέω +ὁ +Ἡρῴδης +προστίθημι +καί +οὗτος +ἐπί +πᾶς +κατακλείω +ὁ +Ἰωάννης +ἐν +φυλακή +δέ +γίνομαι +ἐν +ὁ +βαπτίζω +ἅπας +ὁ +λαός +καί +Ἰησοῦς +βαπτίζω +καί +προσεύχομαι +ἀνοίγω +ὁ +οὐρανός +καί +καταβαίνω +ὁ +πνεῦμα +ὁ +ἅγιος +σωματικός +εἶδος +ὡς +περιστερά +ἐπί +αὐτός +καί +φωνή +ἐκ +οὐρανός +γίνομαι +σύ +εἰμί +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἐν +σύ +εὐδοκέω +καί +αὐτός +Ἰησοῦς +εἰμί +ἄρχω +ὡσεί +ἔτος +τριάκοντα +ὡς +νομίζω +εἰμί +υἱός +Ἰωσήφ +ὁ +Ἠλί +ὁ +Μαθθάτ +ὁ +Λευί +ὁ +Μελχί +ὁ +Ἰανναί +ὁ +Ἰωσήφ +ὁ +Ματταθίας +ὁ +Ἀμώς +ὁ +Ναούμ +ὁ +Ἑσλί +ὁ +Ναγγαί +ὁ +Μάαθ +ὁ +Ματταθίας +ὁ +Σεμεΐν +ὁ +Ἰωσήχ +ὁ +Ἰωδά +ὁ +Ἰωανάν +ὁ +Ῥησά +ὁ +Ζοροβαβέλ +ὁ +Σαλαθιήλ +ὁ +Νηρί +ὁ +Μελχί +ὁ +Ἀδδί +ὁ +Κωσάμ +ὁ +Ἐλμαδάμ +ὁ +Ἤρ +ὁ +Ἰησοῦς +ὁ +Ἐλιέζερ +ὁ +Ἰωρίμ +ὁ +Μαθθάτ +ὁ +Λευί +ὁ +Συμεών +ὁ +Ἰούδας +ὁ +Ἰωσήφ +ὁ +Ἰωνάμ +ὁ +Ἐλιακίμ +ὁ +Μελεά +ὁ +Μεννά +ὁ +Ματταθά +ὁ +Ναθάμ +ὁ +Δαυίδ +ὁ +Ἰεσσαί +ὁ +Ἰωβήδ +ὁ +Βόες +ὁ +Σαλά +ὁ +Ναασσών +ὁ +Ἀμιναδάβ +ὁ +ἀδμίν +ὁ +Ἀρνί +ὁ +Ἑσρώμ +ὁ +Φάρες +ὁ +Ἰούδας +ὁ +Ἰακώβ +ὁ +Ἰσαάκ +ὁ +Ἀβραάμ +ὁ +Θάρα +ὁ +Ναχώρ +ὁ +Σερούχ +ὁ +Ῥαγαύ +ὁ +Φάλεκ +ὁ +Ἔβερ +ὁ +Σαλά +ὁ +Καϊνάμ +ὁ +Ἀρφαξάδ +ὁ +Σήμ +ὁ +Νῶε +ὁ +Λάμεχ +ὁ +Μαθουσαλά +ὁ +Ἑνώχ +ὁ +Ἰάρετ +ὁ +Μαλελεήλ +ὁ +Καϊνάμ +ὁ +Ἐνώς +ὁ +Σήθ +ὁ +Ἀδάμ +ὁ +θεός +δέ +Ἰησοῦς +πλήρης +πνεῦμα +ἅγιος +ὑποστρέφω +ἀπό +ὁ +Ἰορδάνης +καί +ἄγω +ἐν +ὁ +πνεῦμα +ἐν +ὁ +ἔρημος +ἡμέρα +τεσσεράκοντα +πειράζω +ὑπό +ὁ +διάβολος +καί +οὐ +ἐσθίω +οὐδείς +ἐν +ὁ +ἡμέρα +ἐκεῖνος +καί +συντελέω +αὐτός +πεινάω +δέ +λέγω +αὐτός +ὁ +διάβολος +εἰ +εἰμί +υἱός +ὁ +θεός +λέγω +ὁ +λίθος +οὗτος +ἵνα +γίνομαι +ἄρτος +καί +ἀποκρίνομαι +πρός +αὐτός +ὁ +Ἰησοῦς +γράφω +ὅτι +οὐ +ἐπί +ἄρτος +μόνος +ζάω +ὁ +ἄνθρωπος +καί +ἀνάγω +αὐτός +δείκνυμι +αὐτός +πᾶς +ὁ +βασιλεία +ὁ +οἰκουμένη +ἐν +στιγμή +χρόνος +καί +λέγω +αὐτός +ὁ +διάβολος +σύ +δίδωμι +ὁ +ἐξουσία +οὗτος +ἅπας +καί +ὁ +δόξα +αὐτός +ὅτι +ἐγώ +παραδίδωμι +καί +ἐάν +ὅς +θέλω +δίδωμι +αὐτός +οὖν +ἐάν +σύ +προσκυνέω +ἐνώπιον +ἐγώ +εἰμί +σύ +πᾶς +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +αὐτός +γράφω +προσκυνέω +κύριος +ὁ +θεός +σύ +καί +αὐτός +μόνος +λατρεύω +δέ +ἄγω +αὐτός +εἰς +Ἱεροσόλυμα +καί +ἵστημι +ἐπί +ὁ +πτερύγιον +ὁ +ἱερός +καί +λέγω +αὐτός +εἰ +εἰμί +υἱός +ὁ +θεός +βάλλω +σεαυτοῦ +ἐντεῦθεν +κάτω +γάρ +γράφω +ὅτι +ὁ +ἄγγελος +αὐτός +ἐντέλλομαι +περί +σύ +ὁ +διαφυλάσσω +σύ +καί +ὅτι +ἐπί +χείρ +αἴρω +σύ +μή +ποτέ +προσκόπτω +πρός +λίθος +ὁ +πούς +σύ +καί +ἀποκρίνομαι +λέγω +αὐτός +ὁ +Ἰησοῦς +ὅτι +εἶπον +οὐ +ἐκπειράζω +κύριος +ὁ +θεός +σύ +καί +συντελέω +πᾶς +πειρασμός +ὁ +διάβολος +ἀφίστημι +ἀπό +αὐτός +ἄχρι +καιρός +καί +ὑποστρέφω +ὁ +Ἰησοῦς +ἐν +ὁ +δύναμις +ὁ +πνεῦμα +εἰς +ὁ +Γαλιλαία +καί +φήμη +ἐξέρχομαι +κατά +ὅλος +ὁ +περίχωρος +περί +αὐτός +καί +αὐτός +διδάσκω +ἐν +ὁ +συναγωγή +αὐτός +δοξάζω +ὑπό +πᾶς +καί +ἔρχομαι +εἰς +Ναζαρά +οὗ +εἰμί +τρέφω +καί +εἰσέρχομαι +κατά +ὁ +εἴωθα +αὐτός +ἐν +ὁ +ἡμέρα +ὁ +σάββατον +εἰς +ὁ +συναγωγή +καί +ἀνίστημι +ἀναγινώσκω +καί +ἐπιδίδωμι +αὐτός +βιβλίον +ὁ +προφήτης +Ἠσαΐας +καί +ἀνοίγω +ὁ +βιβλίον +εὑρίσκω +ὁ +τόπος +οὗ +εἰμί +γράφω +πνεῦμα +κύριος +ἐπί +ἐγώ +ὅς +ἕνεκα +χρίω +ἐγώ +εὐαγγελίζω +πτωχός +ἀποστέλλω +ἐγώ +κηρύσσω +αἰχμάλωτος +ἄφεσις +καί +τυφλός +ἀνάβλεψις +ἀποστέλλω +θραύω +ἐν +ἄφεσις +κηρύσσω +ἐνιαυτός +κύριος +δεκτός +καί +πτύσσω +ὁ +βιβλίον +ἀποδίδωμι +ὁ +ὑπηρέτης +καθίζω +καί +πᾶς +ὁ +ὀφθαλμός +ἐν +ὁ +συναγωγή +εἰμί +ἀτενίζω +αὐτός +δέ +ἄρχω +λέγω +πρός +αὐτός +ὅτι +σήμερον +πληρόω +ὁ +γραφή +οὗτος +ἐν +ὁ +οὖς +σύ +καί +πᾶς +μαρτυρέω +αὐτός +καί +θαυμάζω +ἐπί +ὁ +λόγος +ὁ +χάρις +ὁ +ἐκπορεύομαι +ἐκ +ὁ +στόμα +αὐτός +καί +λέγω +οὐχί +υἱός +Ἰωσήφ +εἰμί +οὗτος +καί +λέγω +πρός +αὐτός +πάντως +εἶπον +ἐγώ +ὁ +παραβολή +οὗτος +ἰατρός +θεραπεύω +σεαυτοῦ +ἀκούω +ὅσος +γίνομαι +εἰς +ὁ +Καφαρναούμ +ποιέω +καί +ὧδε +ἐν +ὁ +πατρίς +σύ +δέ +λέγω +ἀμήν +λέγω +σύ +ὅτι +οὐδείς +προφήτης +δεκτός +εἰμί +ἐν +ὁ +πατρίς +αὐτός +δέ +ἐπί +ἀλήθεια +λέγω +σύ +πολύς +χῆρος +εἰμί +ἐν +ὁ +ἡμέρα +Ἠλίας +ἐν +ὁ +Ἰσραήλ +ὅτε +κλείω +ὁ +οὐρανός +ἐπί +ἔτος +τρεῖς +καί +μήν (II) +ἕξ +ὡς +γίνομαι +λιμός +μέγας +ἐπί +πᾶς +ὁ +γῆ +καί +πρός +οὐδείς +αὐτός +πέμπω +Ἠλίας +εἰ +μή +εἰς +Σάρεπτα +ὁ +Σιδώνιος +πρός +γυνή +χῆρος +καί +πολύς +λεπρός +εἰμί +ἐν +ὁ +Ἰσραήλ +ἐπί +Ἐλισαῖος +ὁ +προφήτης +καί +οὐδείς +αὐτός +καθαρίζω +εἰ +μή +Ναιμάν +ὁ +Σύρος +καί +πίμπλημι +θυμός +πᾶς +ἐν +ὁ +συναγωγή +ἀκούω +οὗτος +καί +ἀνίστημι +ἐκβάλλω +αὐτός +ἔξω +ὁ +πόλις +καί +ἄγω +αὐτός +ἕως +ὀφρῦς +ὁ +ὄρος +ἐπί +ὅς +ὁ +πόλις +αὐτός +οἰκοδομέω +ὥστε +κατακρημνίζω +αὐτός +δέ +αὐτός +διέρχομαι +διά +μέσος +αὐτός +πορεύομαι +καί +κατέρχομαι +εἰς +Καφαρναούμ +πόλις +ὁ +Γαλιλαία +καί +εἰμί +διδάσκω +αὐτός +ἐν +ὁ +σάββατον +καί +ἐκπλήσσω +ἐπί +ὁ +διδαχή +αὐτός +ὅτι +ἐν +ἐξουσία +εἰμί +ὁ +λόγος +αὐτός +καί +ἐν +ὁ +συναγωγή +εἰμί +ἄνθρωπος +ἔχω +πνεῦμα +δαιμόνιον +ἀκάθαρτος +καί +ἀνακράζω +φωνή +μέγας +ἔα +τίς +ἐγώ +καί +σύ +Ἰησοῦς +Ναζαρηνός +ἔρχομαι +ἀπόλλυμι +ἐγώ +οἶδα +σύ +τίς +εἰμί +ὁ +ἅγιος +ὁ +θεός +καί +ἐπιτιμάω +αὐτός +ὁ +Ἰησοῦς +λέγω +φιμόω +καί +ἐξέρχομαι +ἀπό +αὐτός +καί +ὁ +δαιμόνιον +ῥίπτω +αὐτός +εἰς +ὁ +μέσος +ἐξέρχομαι +ἀπό +αὐτός +μηδείς +βλάπτω +αὐτός +καί +γίνομαι +θάμβος +ἐπί +πᾶς +καί +συλλαλέω +πρός +ἀλλήλων +λέγω +τίς +ὁ +λόγος +οὗτος +ὅτι +ἐν +ἐξουσία +καί +δύναμις +ἐπιτάσσω +ὁ +ἀκάθαρτος +πνεῦμα +καί +ἐξέρχομαι +καί +ἐκπορεύομαι +ἦχος (I) +περί +αὐτός +εἰς +πᾶς +τόπος +ὁ +περίχωρος +δέ +ἀνίστημι +ἀπό +ὁ +συναγωγή +εἰσέρχομαι +εἰς +ὁ +οἰκία +Σίμων +δέ +πενθερά +ὁ +Σίμων +εἰμί +συνέχω +πυρετός +μέγας +καί +ἐρωτάω +αὐτός +περί +αὐτός +καί +ἐφίστημι +ἐπάνω +αὐτός +ἐπιτιμάω +ὁ +πυρετός +καί +ἀφίημι +αὐτός +δέ +παραχρῆμα +ἀνίστημι +διακονέω +αὐτός +δέ +δύνω +ὁ +ἥλιος +ἅπας +ὅσος +ἔχω +ἀσθενέω +νόσος +ποικίλος +ἄγω +αὐτός +πρός +αὐτός +δέ +ὁ +εἷς +ἕκαστος +αὐτός +ὁ +χείρ +ἐπιτίθημι +θεραπεύω +αὐτός +δέ +ἐξέρχομαι +καί +δαιμόνιον +ἀπό +πολύς +κραυγάζω +καί +λέγω +ὅτι +σύ +εἰμί +ὁ +υἱός +ὁ +θεός +καί +ἐπιτιμάω +οὐ +ἐάω +αὐτός +λαλέω +ὅτι +οἶδα +ὁ +Χριστός +αὐτός +εἰμί +δέ +γίνομαι +ἡμέρα +ἐξέρχομαι +πορεύομαι +εἰς +ἔρημος +τόπος +καί +ὁ +ὄχλος +ἐπιζητέω +αὐτός +καί +ἔρχομαι +ἕως +αὐτός +καί +κατέχω +αὐτός +ὁ +μή +πορεύομαι +ἀπό +αὐτός +δέ +ὁ +λέγω +πρός +αὐτός +ὅτι +καί +ὁ +ἕτερος +πόλις +εὐαγγελίζω +ἐγώ +ὁ +βασιλεία +ὁ +θεός +δεῖ +ὅτι +ἐπί +οὗτος +ἀποστέλλω +καί +εἰμί +κηρύσσω +εἰς +ὁ +συναγωγή +ὁ +Ἰουδαία +δέ +γίνομαι +ἐν +ὁ +ὁ +ὄχλος +ἐπίκειμαι +αὐτός +καί +ἀκούω +ὁ +λόγος +ὁ +θεός +καί +αὐτός +εἰμί +ἵστημι +παρά +ὁ +λίμνη +Γεννησαρέτ +καί +ὁράω +πλοῖον +δύο +ἵστημι +παρά +ὁ +λίμνη +δέ +ὁ +ἁλιεύς +ἀπό +αὐτός +ἀποβαίνω +πλύνω +ὁ +δίκτυον +δέ +ἐμβαίνω +εἰς +εἷς +ὁ +πλοῖον +ὅς +εἰμί +Σίμων +ἐρωτάω +αὐτός +ἀπό +ὁ +γῆ +ἐπανάγω +ὀλίγος +δέ +καθίζω +ἐκ +ὁ +πλοῖον +διδάσκω +ὁ +ὄχλος +δέ +ὡς +παύω +λαλέω +λέγω +πρός +ὁ +Σίμων +ἐπανάγω +εἰς +ὁ +βάθος +καί +χαλάω +ὁ +δίκτυον +σύ +εἰς +ἄγρα +καί +ἀποκρίνομαι +Σίμων +λέγω +ἐπιστάτης +διά +ὅλος +νύξ +κοπιάω +οὐδείς +λαμβάνω +δέ +ἐπί +ὁ +ῥῆμα +σύ +χαλάω +ὁ +δίκτυον +καί +οὗτος +ποιέω +συγκλείω +πλῆθος +ἰχθύς +πολύς +δέ +διαρρήγνυμι +ὁ +δίκτυον +αὐτός +καί +κατανεύω +ὁ +μέτοχος +ἐν +ὁ +ἕτερος +πλοῖον +ὁ +ἔρχομαι +συλλαμβάνω +αὐτός +καί +ἔρχομαι +καί +πίμπλημι +ἀμφότεροι +ὁ +πλοῖον +ὥστε +βυθίζω +αὐτός +δέ +ὁράω +Σίμων +Πέτρος +προσπίπτω +ὁ +γόνυ +Ἰησοῦς +λέγω +ἐξέρχομαι +ἀπό +ἐγώ +ὅτι +ἀνήρ +ἁμαρτωλός +εἰμί +κύριος +γάρ +θάμβος +περιέχω +αὐτός +καί +πᾶς +ὁ +σύν +αὐτός +ἐπί +ὁ +ἄγρα +ὁ +ἰχθύς +ὅς +συλλαμβάνω +δέ +ὁμοίως +καί +Ἰάκωβος +καί +Ἰωάννης +υἱός +Ζεβεδαῖος +ὅς +εἰμί +κοινωνός +ὁ +Σίμων +καί +λέγω +πρός +ὁ +Σίμων +ὁ +Ἰησοῦς +μή +φοβέω +ἀπό +ὁ +νῦν +ἄνθρωπος +εἰμί +ζωγρέω +καί +κατάγω +ὁ +πλοῖον +ἐπί +ὁ +γῆ +ἀφίημι +πᾶς +ἀκολουθέω +αὐτός +καί +γίνομαι +ἐν +ὁ +εἰμί +αὐτός +ἐν +εἷς +ὁ +πόλις +καί +ὁράω +ἀνήρ +πλήρης +λέπρα +δέ +ὁράω +ὁ +Ἰησοῦς +πίπτω +ἐπί +πρόσωπον +δέομαι +αὐτός +λέγω +κύριος +ἐάν +θέλω +δύναμαι +ἐγώ +καθαρίζω +καί +ἐκτείνω +ὁ +χείρ +ἅπτω +αὐτός +λέγω +θέλω +καθαρίζω +καί +εὐθέως +ὁ +λέπρα +ἀπέρχομαι +ἀπό +αὐτός +καί +αὐτός +παραγγέλλω +αὐτός +μηδείς +λέγω +ἀλλά +ἀπέρχομαι +δείκνυμι +σεαυτοῦ +ὁ +ἱερεύς +καί +προσφέρω +περί +ὁ +καθαρισμός +σύ +καθώς +προστάσσω +Μωϋσῆς +εἰς +μαρτύριον +αὐτός +δέ +διέρχομαι +μᾶλλον +ὁ +λόγος +περί +αὐτός +καί +συνέρχομαι +ὄχλος +πολύς +ἀκούω +καί +θεραπεύω +ἀπό +ὁ +ἀσθένεια +αὐτός +δέ +αὐτός +εἰμί +ὑποχωρέω +ἐν +ὁ +ἔρημος +καί +προσεύχομαι +καί +γίνομαι +ἐν +εἷς +ὁ +ἡμέρα +καί +αὐτός +εἰμί +διδάσκω +καί +εἰμί +κάθημαι +Φαρισαῖος +καί +νομοδιδάσκαλος +ὅς +εἰμί +ἔρχομαι +ἐκ +πᾶς +κώμη +ὁ +Γαλιλαία +καί +Ἰουδαία +καί +Ἱεροσόλυμα +καί +δύναμις +κύριος +εἰμί +εἰς +ὁ +ἰάομαι +αὐτός +καί +ὁράω +ἀνήρ +φέρω +ἐπί +κλίνη +ἄνθρωπος +ὅς +εἰμί +παραλύω +καί +ζητέω +αὐτός +εἰσφέρω +καί +τίθημι +ἐνώπιον +αὐτός +καί +μή +εὑρίσκω +ποῖος +εἰσφέρω +αὐτός +διά +ὁ +ὄχλος +ἀναβαίνω +ἐπί +ὁ +δῶμα +διά +ὁ +κέραμος +καθίημι +αὐτός +σύν +ὁ +κλινίδιον +εἰς +ὁ +μέσος +ἔμπροσθεν +ὁ +Ἰησοῦς +καί +ὁράω +ὁ +πίστις +αὐτός +λέγω +ἄνθρωπος +ἀφίημι +σύ +ὁ +ἁμαρτία +σύ +καί +ἄρχω +διαλογίζομαι +ὁ +γραμματεύς +καί +ὁ +Φαρισαῖος +λέγω +τίς +εἰμί +οὗτος +ὅς +λαλέω +βλασφημία +τίς +δύναμαι +ἁμαρτία +ἀφίημι +εἰ +μή +μόνος +ὁ +θεός +δέ +ὁ +Ἰησοῦς +ἐπιγινώσκω +ὁ +διαλογισμός +αὐτός +ἀποκρίνομαι +λέγω +πρός +αὐτός +τίς +διαλογίζομαι +ἐν +ὁ +καρδία +σύ +τίς +εἰμί +εὔκοπος +λέγω +ἀφίημι +σύ +ὁ +ἁμαρτία +σύ +ἤ +λέγω +ἐγείρω +καί +περιπατέω +δέ +ἵνα +οἶδα +ὅτι +ὁ +υἱός +ὁ +ἄνθρωπος +ἐξουσία +ἔχω +ἐπί +ὁ +γῆ +ἀφίημι +ἁμαρτία +λέγω +ὁ +παραλύω +σύ +λέγω +ἐγείρω +καί +αἴρω +ὁ +κλινίδιον +σύ +πορεύομαι +εἰς +ὁ +οἶκος +σύ +καί +παραχρῆμα +ἀνίστημι +ἐνώπιον +αὐτός +αἴρω +ἐπί +ὅς +κατάκειμαι +ἀπέρχομαι +εἰς +ὁ +οἶκος +αὐτός +δοξάζω +ὁ +θεός +καί +ἔκστασις +λαμβάνω +ἅπας +καί +δοξάζω +ὁ +θεός +καί +πίμπλημι +φόβος +λέγω +ὅτι +ὁράω +παράδοξος +σήμερον +καί +μετά +οὗτος +ἐξέρχομαι +καί +θεάομαι +τελώνης +ὄνομα +Λευί +κάθημαι +ἐπί +ὁ +τελώνιον +καί +λέγω +αὐτός +ἀκολουθέω +ἐγώ +καί +καταλείπω +πᾶς +ἀνίστημι +ἀκολουθέω +αὐτός +καί +ποιέω +δοχή +μέγας +Λευί +αὐτός +ἐν +ὁ +οἰκία +αὐτός +καί +εἰμί +ὄχλος +πολύς +τελώνης +καί +ἄλλος +ὅς +εἰμί +κατάκειμαι +μετά +αὐτός +καί +γογγύζω +ὁ +Φαρισαῖος +καί +ὁ +γραμματεύς +αὐτός +πρός +ὁ +μαθητής +αὐτός +λέγω +διά +τίς +μετά +ὁ +τελώνης +καί +ἁμαρτωλός +ἐσθίω +καί +πίνω +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +πρός +αὐτός +οὐ +χρεία +ἰατρός +ἔχω +ὁ +ὑγιαίνω +ἀλλά +ὁ +κακῶς +ἔχω +οὐ +ἔρχομαι +καλέω +δίκαιος +ἀλλά +ἁμαρτωλός +εἰς +μετάνοια +δέ +ὁ +λέγω +πρός +αὐτός +ὁ +μαθητής +Ἰωάννης +νηστεύω +πυκνός +καί +δέησις +ποιέω +ὁμοίως +καί +ὁ +ὁ +Φαρισαῖος +δέ +ὁ +σός +ἐσθίω +καί +πίνω +δέ +ὁ +Ἰησοῦς +λέγω +πρός +αὐτός +μή +δύναμαι +ὁ +υἱός +ὁ +νυμφών +ἐν +ὅς +ὁ +νυμφίος +μετά +αὐτός +εἰμί +νηστεύω +ποιέω +δέ +ἔρχομαι +ἡμέρα +καί +ὅταν +ἀπαίρω +ἀπό +αὐτός +ὁ +νυμφίος +τότε +νηστεύω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +δέ +λέγω +καί +παραβολή +πρός +αὐτός +ὅτι +οὐδείς +ἐπίβλημα +ἀπό +ἱμάτιον +καινός +σχίζω +ἐπιβάλλω +ἐπί +ἱμάτιον +παλαιός +δέ +εἰ +εἰ δὲ μή +καί +ὁ +καινός +σχίζω +καί +ὁ +παλαιός +οὐ +συμφωνέω +ὁ +ἐπίβλημα +ὁ +ἀπό +ὁ +καινός +καί +οὐδείς +βάλλω +οἶνος +νέος +εἰς +ἀσκός +παλαιός +δέ +εἰ +εἰ δὲ μή +ῥήγνυμι +ὁ +οἶνος +ὁ +νέος +ὁ +ἀσκός +καί +αὐτός +ἐκχέω +καί +ὁ +ἀσκός +ἀπόλλυμι +ἀλλά +οἶνος +νέος +εἰς +ἀσκός +καινός +βλητέος +καί +οὐδείς +πίνω +παλαιός +θέλω +νέος +γάρ +λέγω +ὁ +παλαιός +χρηστός +εἰμί +δέ +γίνομαι +ἐν +σάββατον +διαπορεύομαι +αὐτός +διά +σπόριμος +καί +τίλλω +καί +ἐσθίω +ὁ +μαθητής +αὐτός +ὁ +στάχυς +ψώχω +ὁ +χείρ +δέ +τὶς +ὁ +Φαρισαῖος +λέγω +τίς +ποιέω +ὅς +οὐ +ἔξεστι(ν) +ὁ +σάββατον +καί +ἀποκρίνομαι +πρός +αὐτός +λέγω +ὁ +Ἰησοῦς +οὐδέ +ἀναγινώσκω +οὗτος +ὅς +ποιέω +Δαυίδ +ὁπότε +πεινάω +αὐτός +καί +ὁ +μετά +αὐτός +εἰμί +ὡς +εἰσέρχομαι +εἰς +ὁ +οἶκος +ὁ +θεός +καί +ὁ +ἄρτος +ὁ +πρόθεσις +λαμβάνω +ἐσθίω +καί +δίδωμι +ὁ +μετά +αὐτός +ὅς +ἐσθίω +οὐ +ἔξεστι(ν) +εἰ +μή +μόνος +ὁ +ἱερεύς +καί +λέγω +αὐτός +εἰμί +κύριος +ὁ +σάββατον +ὁ +υἱός +ὁ +ἄνθρωπος +δέ +γίνομαι +ἐν +ἕτερος +σάββατον +εἰσέρχομαι +αὐτός +εἰς +ὁ +συναγωγή +καί +διδάσκω +καί +εἰμί +ἄνθρωπος +ἐκεῖ +καί +ὁ +χείρ +αὐτός +ὁ +δεξιός +εἰμί +ξηρός +δέ +παρατηρέω +αὐτός +ὁ +γραμματεύς +καί +ὁ +Φαρισαῖος +εἰ +ἐν +ὁ +σάββατον +θεραπεύω +ἵνα +εὑρίσκω +κατηγορέω +αὐτός +δέ +αὐτός +οἶδα +ὁ +διαλογισμός +αὐτός +δέ +λέγω +ὁ +ἀνήρ +ὁ +ξηρός +ἔχω +ὁ +χείρ +ἐγείρω +καί +ἵστημι +εἰς +ὁ +μέσος +καί +ἀνίστημι +ἵστημι +δέ +λέγω +ὁ +Ἰησοῦς +πρός +αὐτός +ἐπερωτάω +σύ +εἰ +ἔξεστι(ν) +ὁ +σάββατον +ἀγαθοποιέω +ἤ +κακοποιέω +ψυχή +σῴζω +ἤ +ἀπόλλυμι +καί +περιβλέπω +πᾶς +αὐτός +λέγω +αὐτός +ἐκτείνω +ὁ +χείρ +σύ +δέ +ὁ +ποιέω +καί +ἀποκαθιστάνω +ὁ +χείρ +αὐτός +δέ +αὐτός +πίμπλημι +ἄνοια +καί +διαλαλέω +πρός +ἀλλήλων +ἄν +τίς +ποιέω +ὁ +Ἰησοῦς +δέ +γίνομαι +ἐν +ὁ +ἡμέρα +οὗτος +ἐξέρχομαι +αὐτός +εἰς +ὁ +ὄρος +προσεύχομαι +καί +εἰμί +διανυκτερεύω +ἐν +ὁ +προσευχή +ὁ +θεός +καί +ὅτε +γίνομαι +ἡμέρα +προσφωνέω +ὁ +μαθητής +αὐτός +καί +ἐκλέγω +ἀπό +αὐτός +δώδεκα +ὅς +καί +ἀπόστολος +ὀνομάζω +Σίμων +ὅς +καί +ὀνομάζω +Πέτρος +καί +Ἀνδρέας +ὁ +ἀδελφός +αὐτός +καί +Ἰάκωβος +καί +Ἰωάννης +καί +Φίλιππος +καί +Βαρθολομαῖος +καί +Μαθθαῖος +καί +Θωμᾶς +καί +Ἰάκωβος +Ἁλφαῖος +καί +Σίμων +ὁ +καλέω +ζηλωτής +καί +Ἰούδας +Ἰάκωβος +καί +Ἰούδας +Ἰσκαριώθ +ὅς +γίνομαι +προδότης +καί +καταβαίνω +μετά +αὐτός +ἵστημι +ἐπί +τόπος +πεδινός +καί +ὄχλος +πολύς +μαθητής +αὐτός +καί +πλῆθος +πολύς +ὁ +λαός +ἀπό +πᾶς +ὁ +Ἰουδαία +καί +Ἱεροσόλυμα +καί +ὁ +παράλιος +Τύρος +καί +Σιδών +ὅς +ἔρχομαι +ἀκούω +αὐτός +καί +ἰάομαι +ἀπό +ὁ +νόσος +αὐτός +καί +ὁ +ἐνοχλέω +ἀπό +πνεῦμα +ἀκάθαρτος +θεραπεύω +καί +πᾶς +ὁ +ὄχλος +ζητέω +ἅπτω +αὐτός +ὅτι +δύναμις +παρά +αὐτός +ἐξέρχομαι +καί +ἰάομαι +πᾶς +καί +αὐτός +ἐπαίρω +ὁ +ὀφθαλμός +αὐτός +εἰς +ὁ +μαθητής +αὐτός +λέγω +μακάριος +ὁ +πτωχός +ὅτι +ὑμέτερος +εἰμί +ὁ +βασιλεία +ὁ +θεός +μακάριος +ὁ +πεινάω +νῦν +ὅτι +χορτάζω +μακάριος +ὁ +κλαίω +νῦν +ὅτι +γελάω +μακάριος +εἰμί +ὅταν +μισέω +σύ +ὁ +ἄνθρωπος +καί +ὅταν +ἀφορίζω +σύ +καί +ὀνειδίζω +καί +ἐκβάλλω +ὁ +ὄνομα +σύ +ὡς +πονηρός +ἕνεκα +ὁ +υἱός +ὁ +ἄνθρωπος +χαίρω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +καί +σκιρτάω +γάρ +ὁράω +ὁ +μισθός +σύ +πολύς +ἐν +ὁ +οὐρανός +γάρ +κατά +ὁ +αὐτός +ποιέω +ὁ +προφήτης +ὁ +πατήρ +αὐτός +πλήν +οὐαί +σύ +ὁ +πλούσιος +ὅτι +ἀπέχω +ὁ +παράκλησις +σύ +οὐαί +σύ +ὁ +ἐμπίπλημι +νῦν +ὅτι +πεινάω +οὐαί +ὁ +γελάω +νῦν +ὅτι +πενθέω +καί +κλαίω +οὐαί +ὅταν +καλῶς +σύ +λέγω +πᾶς +ὁ +ἄνθρωπος +γάρ +κατά +ὁ +αὐτός +ποιέω +ὁ +ψευδοπροφήτης +ὁ +πατήρ +αὐτός +ἀλλά +λέγω +σύ +ὁ +ἀκούω +ἀγαπάω +ὁ +ἐχθρός +σύ +καλῶς +ποιέω +ὁ +μισέω +σύ +εὐλογέω +ὁ +καταράομαι +σύ +προσεύχομαι +περί +ὁ +ἐπηρεάζω +σύ +ὁ +τύπτω +σύ +ἐπί +ὁ +σιαγών +παρέχω +καί +ὁ +ἄλλος +καί +ἀπό +ὁ +αἴρω +σύ +ὁ +ἱμάτιον +καί +ὁ +χιτών +μή +κωλύω +πᾶς +αἰτέω +σύ +δίδωμι +καί +ἀπό +ὁ +αἴρω +ὁ +σός +μή +ἀπαιτέω +καί +καθώς +θέλω +ἵνα +ποιέω +σύ +ὁ +ἄνθρωπος +ποιέω +αὐτός +ὁμοίως +καί +εἰ +ἀγαπάω +ὁ +ἀγαπάω +σύ +ποῖος +χάρις +σύ +εἰμί +γάρ +καί +ὁ +ἁμαρτωλός +ὁ +ἀγαπάω +αὐτός +ἀγαπάω +γάρ +ἐάν +καί +ἀγαθοποιέω +ὁ +ἀγαθοποιέω +σύ +ποῖος +χάρις +σύ +εἰμί +καί +ὁ +ἁμαρτωλός +ὁ +αὐτός +ποιέω +καί +ἐάν +δανίζω +παρά +ὅς +ἐλπίζω +λαμβάνω +ποῖος +χάρις +σύ +εἰμί +καί +ἁμαρτωλός +ἁμαρτωλός +δανίζω +ἵνα +ἀπολαμβάνω +ὁ +ἴσος +πλήν +ἀγαπάω +ὁ +ἐχθρός +σύ +καί +ἀγαθοποιέω +καί +δανίζω +μηδείς +ἀπελπίζω +καί +εἰμί +ὁ +μισθός +σύ +πολύς +καί +εἰμί +υἱός +ὕψιστος +ὅτι +αὐτός +χρηστός +εἰμί +ἐπί +ὁ +ἀχάριστος +καί +πονηρός +γίνομαι +οἰκτίρμων +καθώς +ὁ +πατήρ +σύ +οἰκτίρμων +εἰμί +καί +μή +κρίνω +καί +οὐ +μή +κρίνω +καί +μή +καταδικάζω +καί +οὐ +μή +καταδικάζω +ἀπολύω +καί +ἀπολύω +δίδωμι +καί +δίδωμι +σύ +μέτρον +καλός +πιέζω +σαλεύω +ὑπερεκχύννω +δίδωμι +εἰς +ὁ +κόλπος +σύ +γάρ +ὅς +μέτρον +μετρέω +ἀντιμετρέω +σύ +δέ +λέγω +καί +παραβολή +αὐτός +μήτι +δύναμαι +τυφλός +τυφλός +ὁδηγέω +οὐχί +ἀμφότεροι +εἰς +βόθυνος +ἐμπίπτω +οὐ +εἰμί +μαθητής +ὑπέρ +ὁ +διδάσκαλος +δέ +καταρτίζω +πᾶς +εἰμί +ὡς +ὁ +διδάσκαλος +αὐτός +δέ +τίς +βλέπω +ὁ +κάρφος +ὁ +ἐν +ὁ +ὀφθαλμός +ὁ +ἀδελφός +σύ +δέ +ὁ +δοκός +ὁ +ἐν +ὁ +ἴδιος +ὀφθαλμός +οὐ +κατανοέω +πῶς +δύναμαι +λέγω +ὁ +ἀδελφός +σύ +ἀδελφός +ἀφίημι +ἐκβάλλω +ὁ +κάρφος +ὁ +ἐν +ὁ +ὀφθαλμός +σύ +αὐτός +ὁ +ἐν +ὁ +ὀφθαλμός +σύ +δοκός +οὐ +βλέπω +ὑποκριτής +ἐκβάλλω +πρῶτος +ὁ +δοκός +ἐκ +ὁ +ὀφθαλμός +σύ +καί +τότε +διαβλέπω +ὁ +κάρφος +ὁ +ἐν +ὁ +ὀφθαλμός +ὁ +ἀδελφός +σύ +ἐκβάλλω +γάρ +οὐ +εἰμί +ποιέω +δένδρον +καλός +καρπός +σαπρός +οὐδέ +πάλιν +δένδρον +σαπρός +ποιέω +καρπός +καλός +γάρ +ἕκαστος +δένδρον +ἐκ +ὁ +ἴδιος +καρπός +γινώσκω +γάρ +οὐ +ἐκ +ἄκανθα +συλλέγω +σῦκον +οὐδέ +ἐκ +βάτος (I) +σταφυλή +τρυγάω +ὁ +ἀγαθός +ἄνθρωπος +ἐκ +ὁ +ἀγαθός +θησαυρός +ὁ +καρδία +προφέρω +ὁ +ἀγαθός +καί +ὁ +πονηρός +ἐκ +ὁ +πονηρός +προφέρω +ὁ +πονηρός +γάρ +ἐκ +περίσσευμα +καρδία +λαλέω +ὁ +στόμα +αὐτός +δέ +τίς +ἐγώ +καλέω +κύριος +κύριος +καί +οὐ +ποιέω +ὅς +λέγω +πᾶς +ὁ +ἔρχομαι +πρός +ἐγώ +καί +ἀκούω +ἐγώ +ὁ +λόγος +καί +ποιέω +αὐτός +ὑποδείκνυμι +σύ +τίς +εἰμί +ὅμοιος +ὅμοιος +εἰμί +ἄνθρωπος +οἰκοδομέω +οἰκία +ὅς +σκάπτω +καί +βαθύνω +καί +τίθημι +θεμέλιος +ἐπί +ὁ +πέτρα +δέ +πλήμμυρα +γίνομαι +προσρήσσω +ὁ +ποταμός +ὁ +οἰκία +ἐκεῖνος +καί +οὐ +ἰσχύω +σαλεύω +αὐτός +διά +ὁ +καλῶς +οἰκοδομέω +αὐτός +δέ +ὁ +ἀκούω +καί +μή +ποιέω +ὅμοιος +εἰμί +ἄνθρωπος +οἰκοδομέω +οἰκία +ἐπί +ὁ +γῆ +χωρίς +θεμέλιος +ὅς +προσρήσσω +ὁ +ποταμός +καί +εὐθύς +συμπίπτω +καί +γίνομαι +ὁ +ῥῆγμα +ὁ +οἰκία +ἐκεῖνος +μέγας +ἐπειδή +πληρόω +πᾶς +ὁ +ῥῆμα +αὐτός +εἰς +ὁ +ἀκοή +ὁ +λαός +εἰσέρχομαι +εἰς +Καφαρναούμ +δέ +ἑκατοντάρχης +τὶς +δοῦλος (II) +κακῶς +ἔχω +μέλλω +τελευτάω +ὅς +εἰμί +αὐτός +ἔντιμος +δέ +ἀκούω +περί +ὁ +Ἰησοῦς +ἀποστέλλω +πρός +αὐτός +πρεσβύτερος +ὁ +Ἰουδαῖος +ἐρωτάω +αὐτός +ὅπως +ἔρχομαι +διασῴζω +ὁ +δοῦλος (II) +αὐτός +δέ +ὁ +παραγίνομαι +πρός +ὁ +Ἰησοῦς +παρακαλέω +αὐτός +σπουδαίως +λέγω +ὅτι +ἄξιος +εἰμί +ὅς +παρέχω +οὗτος +γάρ +ἀγαπάω +ὁ +ἔθνος +ἐγώ +καί +ὁ +συναγωγή +αὐτός +οἰκοδομέω +ἐγώ +δέ +ὁ +Ἰησοῦς +πορεύομαι +σύν +αὐτός +δέ +ἤδη +αὐτός +οὐ +μακράν +ἀπέχω +ἀπό +ὁ +οἰκία +πέμπω +φίλος +ὁ +ἑκατοντάρχης +λέγω +αὐτός +κύριος +μή +σκύλλω +γάρ +οὐ +εἰμί +ἱκανός +ἵνα +ὑπό +ὁ +στέγη +ἐγώ +εἰσέρχομαι +διό +οὐδέ +ἐμαυτοῦ +ἀξιόω +πρός +σύ +ἔρχομαι +ἀλλά +λέγω +λόγος +καί +ἰάομαι +ὁ +παῖς +ἐγώ +γάρ +καί +ἐγώ +εἰμί +ἄνθρωπος +ὑπό +ἐξουσία +τάσσω +ἔχω +ὑπό +ἐμαυτοῦ +στρατιώτης +καί +λέγω +οὗτος +πορεύομαι +καί +πορεύομαι +καί +ἄλλος +ἔρχομαι +καί +ἔρχομαι +καί +ὁ +δοῦλος (II) +ἐγώ +ποιέω +οὗτος +καί +ποιέω +δέ +ἀκούω +οὗτος +ὁ +Ἰησοῦς +θαυμάζω +αὐτός +καί +στρέφω +ὁ +ἀκολουθέω +αὐτός +ὄχλος +λέγω +λέγω +σύ +οὐδέ +ἐν +ὁ +Ἰσραήλ +τοσοῦτος +πίστις +εὑρίσκω +καί +ὑποστρέφω +εἰς +ὁ +οἶκος +ὁ +πέμπω +εὑρίσκω +ὁ +δοῦλος (II) +ὑγιαίνω +καί +γίνομαι +ἐν +ὁ +ἑξῆς +πορεύομαι +εἰς +πόλις +καλέω +Ναΐν +καί +συμπορεύομαι +αὐτός +ὁ +μαθητής +αὐτός +καί +ὄχλος +πολύς +δέ +ὡς +ἐγγίζω +ὁ +πύλη +ὁ +πόλις +καί +ὁράω +ἐκκομίζω +θνῄσκω +μονογενής +υἱός +ὁ +μήτηρ +αὐτός +καί +αὐτός +εἰμί +χῆρος +καί +ὄχλος +ὁ +πόλις +ἱκανός +εἰμί +σύν +αὐτός +καί +ὁράω +αὐτός +ὁ +κύριος +σπλαγχνίζομαι +ἐπί +αὐτός +καί +λέγω +αὐτός +μή +κλαίω +καί +προσέρχομαι +ἅπτω +ὁ +σορός +δέ +ὁ +βαστάζω +ἵστημι +καί +λέγω +νεανίσκος +σύ +λέγω +ἐγείρω +καί +ἀνακαθίζω +ὁ +νεκρός +καί +ἄρχω +λαλέω +καί +δίδωμι +αὐτός +ὁ +μήτηρ +αὐτός +δέ +λαμβάνω +φόβος +πᾶς +καί +δοξάζω +ὁ +θεός +λέγω +ὅτι +προφήτης +μέγας +ἐγείρω +ἐν +ἐγώ +καί +ὅτι +ἐπισκέπτομαι +ὁ +θεός +ὁ +λαός +αὐτός +καί +ἐξέρχομαι +ὁ +λόγος +οὗτος +περί +αὐτός +ἐν +ὅλος +ὁ +Ἰουδαία +καί +πᾶς +ὁ +περίχωρος +καί +ἀπαγγέλλω +Ἰωάννης +ὁ +μαθητής +αὐτός +περί +πᾶς +οὗτος +καί +προσκαλέω +δύο +τὶς +ὁ +μαθητής +αὐτός +ὁ +Ἰωάννης +πέμπω +πρός +ὁ +κύριος +λέγω +σύ +εἰμί +ὁ +ἔρχομαι +ἤ +ἄλλος +προσδοκάω +δέ +παραγίνομαι +πρός +αὐτός +ὁ +ἀνήρ +λέγω +Ἰωάννης +ὁ +βαπτιστής +ἀποστέλλω +ἐγώ +πρός +σύ +λέγω +σύ +εἰμί +ὁ +ἔρχομαι +ἤ +ἄλλος +προσδοκάω +ἐν +ἐκεῖνος +ὁ +ὥρα +θεραπεύω +πολύς +ἀπό +νόσος +καί +μάστιξ +καί +πνεῦμα +πονηρός +καί +τυφλός +πολύς +χαρίζομαι +βλέπω +καί +ἀποκρίνομαι +λέγω +αὐτός +πορεύομαι +ἀπαγγέλλω +Ἰωάννης +ὅς +ὁράω +καί +ἀκούω +τυφλός +ἀναβλέπω +χωλός +περιπατέω +λεπρός +καθαρίζω +καί +κωφός +ἀκούω +νεκρός +ἐγείρω +πτωχός +εὐαγγελίζω +καί +μακάριος +εἰμί +ἐάν +ὅς +μή +σκανδαλίζω +ἐν +ἐγώ +δέ +ἀπέρχομαι +ὁ +ἄγγελος +Ἰωάννης +ἄρχω +λέγω +πρός +ὁ +ὄχλος +περί +Ἰωάννης +τίς +θεάομαι +ἐξέρχομαι +εἰς +ὁ +ἔρημος +κάλαμος +ὑπό +ἄνεμος +σαλεύω +ἀλλά +τίς +ὁράω +ἐξέρχομαι +ἄνθρωπος +ἐν +μαλακός +ἱμάτιον +ἀμφιέννυμι +ὁράω +ὁ +ἐν +ἱματισμός +ἔνδοξος +καί +τρυφή +ὑπάρχω +ἐν +ὁ +βασίλειος +εἰμί +ἀλλά +τίς +ὁράω +ἐξέρχομαι +προφήτης +ναί +λέγω +σύ +καί +περισσός +προφήτης +οὗτος +εἰμί +περί +ὅς +γράφω +ὁράω +ἀποστέλλω +ὁ +ἄγγελος +ἐγώ +πρό +πρόσωπον +σύ +ὅς +κατασκευάζω +ὁ +ὁδός +σύ +ἔμπροσθεν +σύ +λέγω +σύ +μέγας +ἐν +γεννητός +γυνή +Ἰωάννης +οὐδείς +εἰμί +δέ +ὁ +μικρός +ἐν +ὁ +βασιλεία +ὁ +θεός +μέγας +αὐτός +εἰμί +καί +πᾶς +ὁ +λαός +καί +ὁ +τελώνης +ἀκούω +δικαιόω +ὁ +θεός +βαπτίζω +ὁ +βάπτισμα +Ἰωάννης +δέ +ὁ +Φαρισαῖος +καί +ὁ +νομικός +ὁ +βουλή +ὁ +θεός +ἀθετέω +εἰς +ἑαυτοῦ +μή +βαπτίζω +ὑπό +αὐτός +οὖν +τίς +ὁμοιόω +ὁ +ἄνθρωπος +ὁ +γενεά +οὗτος +καί +τίς +εἰμί +ὅμοιος +ὅμοιος +εἰμί +παιδίον +ὁ +ἐν +ἀγορά +κάθημαι +καί +προσφωνέω +ἀλλήλων +ὅς +λέγω +αὐλέω +σύ +καί +οὐ +ὀρχέομαι +θρηνέω +καί +οὐ +κλαίω +γάρ +ἔρχομαι +Ἰωάννης +ὁ +βαπτιστής +μή +ἐσθίω +ἄρτος +μήτε +πίνω +οἶνος +καί +λέγω +δαιμόνιον +ἔχω +ἔρχομαι +ὁ +υἱός +ὁ +ἄνθρωπος +ἐσθίω +καί +πίνω +καί +λέγω +ὁράω +ἄνθρωπος +φάγος +καί +οἰνοπότης +φίλος +τελώνης +καί +ἁμαρτωλός +καί +δικαιόω +ὁ +σοφία +ἀπό +πᾶς +ὁ +τέκνον +αὐτός +δέ +ἐρωτάω +τὶς +ὁ +Φαρισαῖος +αὐτός +ἵνα +ἐσθίω +μετά +αὐτός +καί +εἰσέρχομαι +εἰς +ὁ +οἶκος +ὁ +Φαρισαῖος +κατακλίνω +καί +ὁράω +γυνή +ὅστις +εἰμί +ἐν +ὁ +πόλις +ἁμαρτωλός +καί +ἐπιγινώσκω +ὅτι +κατάκειμαι +ἐν +ὁ +οἰκία +ὁ +Φαρισαῖος +κομίζω +ἀλάβαστρος +μύρον +καί +ἵστημι +ὀπίσω +παρά +ὁ +πούς +αὐτός +κλαίω +ἄρχω +ὁ +δάκρυον +βρέχω +ὁ +πούς +αὐτός +καί +ὁ +θρίξ +ὁ +κεφαλή +αὐτός +ἐκμάσσω +καί +καταφιλέω +ὁ +πούς +αὐτός +καί +ἀλείφω +ὁ +μύρον +δέ +ὁράω +ὁ +Φαρισαῖος +ὁ +καλέω +αὐτός +λέγω +ἐν +ἑαυτοῦ +λέγω +εἰ +οὗτος +εἰμί +προφήτης +ἄν +γινώσκω +τίς +καί +ποταπός +ὁ +γυνή +ὅστις +ἅπτω +αὐτός +ὅτι +ἁμαρτωλός +εἰμί +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +πρός +αὐτός +Σίμων +ἔχω +σύ +τὶς +λέγω +δέ +ὁ +διδάσκαλος +λέγω +φημί +δύο +χρεοφειλέτης +εἰμί +δανιστής +τὶς +ὁ +εἷς +ὀφείλω +δηνάριον +πεντακόσιοι +δέ +ὁ +ἕτερος +πεντήκοντα +μή +ἔχω +αὐτός +ἀποδίδωμι +ἀμφότεροι +χαρίζομαι +οὖν +τίς +αὐτός +πολύς +ἀγαπάω +αὐτός +ἀποκρίνομαι +Σίμων +λέγω +ὑπολαμβάνω +ὅτι +ὅς +ὁ +πολύς +χαρίζομαι +δέ +ὁ +λέγω +αὐτός +ὀρθῶς +κρίνω +καί +στρέφω +πρός +ὁ +γυνή +ὁ +Σίμων +φημί +βλέπω +οὗτος +ὁ +γυνή +εἰσέρχομαι +εἰς +σύ +ὁ +οἰκία +ὕδωρ +ἐγώ +ἐπί +πούς +οὐ +δίδωμι +δέ +οὗτος +ὁ +δάκρυον +βρέχω +ἐγώ +ὁ +πούς +καί +ὁ +θρίξ +αὐτός +ἐκμάσσω +φίλημα +ἐγώ +οὐ +δίδωμι +δέ +οὗτος +ἀπό +ὅς +εἰσέρχομαι +οὐ +διαλείπω +καταφιλέω +ἐγώ +ὁ +πούς +ἔλαιον +ὁ +κεφαλή +ἐγώ +οὐ +ἀλείφω +δέ +οὗτος +μύρον +ἀλείφω +ὁ +πούς +ἐγώ +ὅς +χάριν +λέγω +σύ +ἀφίημι +ὁ +ἁμαρτία +αὐτός +ὁ +πολύς +ὅτι +ἀγαπάω +πολύς +δέ +ὅς +ὀλίγος +ἀφίημι +ὀλίγος +ἀγαπάω +δέ +λέγω +αὐτός +ἀφίημι +σύ +ὁ +ἁμαρτία +καί +ἄρχω +ὁ +συνανάκειμαι +λέγω +ἐν +ἑαυτοῦ +τίς +οὗτος +εἰμί +ὅς +καί +ἁμαρτία +ἀφίημι +δέ +λέγω +πρός +ὁ +γυνή +ὁ +πίστις +σύ +σῴζω +σύ +πορεύομαι +εἰς +εἰρήνη +καί +γίνομαι +ἐν +ὁ +καθεξῆς +καί +αὐτός +διοδεύω +κατά +πόλις +καί +κώμη +κηρύσσω +καί +εὐαγγελίζω +ὁ +βασιλεία +ὁ +θεός +καί +σύν +αὐτός +ὁ +δώδεκα +καί +γυνή +τὶς +ὅς +εἰμί +θεραπεύω +ἀπό +πνεῦμα +πονηρός +καί +ἀσθένεια +Μαρία +ὁ +καλέω +Μαγδαληνή +ἀπό +ὅς +δαιμόνιον +ἑπτά +ἐξέρχομαι +καί +Ἰωάννα +γυνή +Χουζᾶς +ἐπίτροπος +Ἡρῴδης +καί +Σουσάννα +καί +ἕτερος +πολύς +ὅστις +διακονέω +αὐτός +ἐκ +ὁ +ὑπάρχω +αὐτός +δέ +σύνειμι (II) +ὄχλος +πολύς +καί +ὁ +κατά +πόλις +ἐπιπορεύομαι +πρός +αὐτός +λέγω +διά +παραβολή +ἐξέρχομαι +ὁ +σπείρω +ὁ +σπείρω +ὁ +σπόρος +αὐτός +καί +ἐν +ὁ +σπείρω +αὐτός +ὅς +μέν +πίπτω +παρά +ὁ +ὁδός +καί +καταπατέω +καί +ὁ +πετεινός +ὁ +οὐρανός +κατεσθίω +αὐτός +καί +ἕτερος +καταπίπτω +ἐπί +ὁ +πέτρα +καί +φύω +ξηραίνω +διά +ὁ +μή +ἔχω +ἰκμάς +καί +ἕτερος +πίπτω +ἐν +μέσος +ὁ +ἄκανθα +καί +συμφύω +ὁ +ἄκανθα +ἀποπνίγω +αὐτός +καί +ἕτερος +πίπτω +εἰς +ὁ +γῆ +ὁ +ἀγαθός +καί +φύω +ποιέω +καρπός +ἑκατονταπλασίων +οὗτος +λέγω +φωνέω +ὁ +ἔχω +οὖς +ἀκούω +ἀκούω +δέ +ἐπερωτάω +αὐτός +ὁ +μαθητής +αὐτός +τίς +εἰμί +οὗτος +ὁ +παραβολή +δέ +ὁ +λέγω +σύ +δίδωμι +γινώσκω +ὁ +μυστήριον +ὁ +βασιλεία +ὁ +θεός +δέ +ὁ +λοιπός +ἐν +παραβολή +ἵνα +βλέπω +μή +βλέπω +καί +ἀκούω +μή +συνίημι +δέ +εἰμί +οὗτος +ὁ +παραβολή +ὁ +σπόρος +εἰμί +ὁ +λόγος +ὁ +θεός +δέ +ὁ +παρά +ὁ +ὁδός +εἰμί +ὁ +ἀκούω +εἶτα +ἔρχομαι +ὁ +διάβολος +καί +αἴρω +ὁ +λόγος +ἀπό +ὁ +καρδία +αὐτός +ἵνα +μή +πιστεύω +σῴζω +δέ +ὁ +ἐπί +ὁ +πέτρα +ὅς +ὅταν +ἀκούω +μετά +χαρά +δέχομαι +ὁ +λόγος +καί +οὗτος +ῥίζα +οὐ +ἔχω +ὅς +πρός +καιρός +πιστεύω +καί +ἐν +καιρός +πειρασμός +ἀφίστημι +δέ +ὁ +εἰς +ὁ +ἄκανθα +πίπτω +οὗτος +εἰμί +ὁ +ἀκούω +καί +ὑπό +μέριμνα +καί +πλοῦτος +καί +ἡδονή +ὁ +βίος +πορεύομαι +συμπνίγω +καί +οὐ +τελεσφορέω +δέ +ὁ +ἐν +ὁ +καλός +γῆ +οὗτος +εἰμί +ὅστις +ἐν +καρδία +καλός +καί +ἀγαθός +ἀκούω +ὁ +λόγος +κατέχω +καί +καρποφορέω +ἐν +ὑπομονή +δέ +οὐδείς +λύχνος +ἅπτω +καλύπτω +αὐτός +σκεῦος +ἤ +ὑποκάτω +κλίνη +τίθημι +ἀλλά +ἐπί +λυχνία +τίθημι +ἵνα +ὁ +εἰσπορεύομαι +βλέπω +ὁ +φῶς +γάρ +οὐ +εἰμί +κρυπτός +ὅς +οὐ +φανερός +γίνομαι +οὐδέ +ἀπόκρυφος +ὅς +οὐ +μή +γινώσκω +καί +εἰς +φανερός +ἔρχομαι +οὖν +βλέπω +πῶς +ἀκούω +γάρ +ἄν +ὅς +ἔχω +δίδωμι +αὐτός +καί +ἄν +ὅς +μή +ἔχω +καί +ὅς +ἔχω +δοκέω +αἴρω +ἀπό +αὐτός +δέ +παραγίνομαι +πρός +αὐτός +ὁ +μήτηρ +καί +ὁ +ἀδελφός +αὐτός +καί +οὐ +δύναμαι +συντυγχάνω +αὐτός +διά +ὁ +ὄχλος +δέ +ἀπαγγέλλω +αὐτός +ὁ +μήτηρ +σύ +καί +ὁ +ἀδελφός +σύ +ἵστημι +ἔξω +ὁράω +σύ +θέλω +δέ +ὁ +ἀποκρίνομαι +λέγω +πρός +αὐτός +μήτηρ +ἐγώ +καί +ἀδελφός +ἐγώ +οὗτος +εἰμί +ὁ +ὁ +λόγος +ὁ +θεός +ἀκούω +καί +ποιέω +δέ +γίνομαι +ἐν +εἷς +ὁ +ἡμέρα +καί +αὐτός +ἐμβαίνω +εἰς +πλοῖον +καί +ὁ +μαθητής +αὐτός +καί +λέγω +πρός +αὐτός +διέρχομαι +εἰς +ὁ +πέραν +ὁ +λίμνη +καί +ἀνάγω +δέ +πλέω +αὐτός +ἀφυπνόω +καί +καταβαίνω +λαῖλαψ +ἄνεμος +εἰς +ὁ +λίμνη +καί +συμπληρόω +καί +κινδυνεύω +δέ +προσέρχομαι +διεγείρω +αὐτός +λέγω +ἐπιστάτης +ἐπιστάτης +ἀπόλλυμι +δέ +ὁ +διεγείρω +ἐπιτιμάω +ὁ +ἄνεμος +καί +ὁ +κλύδων +ὁ +ὕδωρ +καί +παύω +καί +γίνομαι +γαλήνη +δέ +λέγω +αὐτός +ποῦ +ὁ +πίστις +σύ +δέ +φοβέω +θαυμάζω +λέγω +πρός +ἀλλήλων +ἆρα +τίς +οὗτος +εἰμί +ὅτι +καί +ὁ +ἄνεμος +καί +ὁ +ὕδωρ +ἐπιτάσσω +καί +ὑπακούω +αὐτός +καί +καταπλέω +εἰς +ὁ +χώρα +ὁ +Γερασηνός +ὅστις +εἰμί +ἀντιπέρα +ὁ +Γαλιλαία +δέ +αὐτός +ἐξέρχομαι +ἐπί +ὁ +γῆ +ὑπαντάω +ἀνήρ +τὶς +ἐκ +ὁ +πόλις +ἔχω +δαιμόνιον +καί +χρόνος +ἱκανός +οὐ +ἐνδύω +ἱμάτιον +καί +ἐν +οἰκία +οὐ +μένω +ἀλλά +ἐν +ὁ +μνῆμα +δέ +ὁράω +ὁ +Ἰησοῦς +ἀνακράζω +προσπίπτω +αὐτός +καί +φωνή +μέγας +λέγω +τίς +ἐγώ +καί +σύ +Ἰησοῦς +υἱός +ὁ +θεός +ὁ +ὕψιστος +δέομαι +σύ +μή +ἐγώ +βασανίζω +γάρ +παραγγέλλω +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +ἐξέρχομαι +ἀπό +ὁ +ἄνθρωπος +γάρ +πολύς +χρόνος +συναρπάζω +αὐτός +καί +δεσμεύω +ἅλυσις +καί +πέδη +φυλάσσω +καί +διαρρήγνυμι +ὁ +δεσμός +ἐλαύνω +ἀπό +ὁ +δαιμόνιον +εἰς +ὁ +ἔρημος +δέ +ἐπερωτάω +αὐτός +ὁ +Ἰησοῦς +τίς +σύ +ὄνομα +εἰμί +δέ +ὁ +λέγω +λεγιών +ὅτι +εἰσέρχομαι +δαιμόνιον +πολύς +εἰς +αὐτός +καί +παρακαλέω +αὐτός +ἵνα +μή +ἐπιτάσσω +αὐτός +εἰς +ὁ +ἄβυσσος +ἀπέρχομαι +δέ +εἰμί +ἐκεῖ +ἀγέλη +χοῖρος +ἱκανός +βόσκω +ἐν +ὁ +ὄρος +καί +παρακαλέω +αὐτός +ἵνα +ἐπιτρέπω +αὐτός +εἰς +ἐκεῖνος +εἰσέρχομαι +καί +ἐπιτρέπω +αὐτός +δέ +ὁ +δαιμόνιον +ἐξέρχομαι +ἀπό +ὁ +ἄνθρωπος +εἰσέρχομαι +εἰς +ὁ +χοῖρος +καί +ὁρμάω +ὁ +ἀγέλη +κατά +ὁ +κρημνός +εἰς +ὁ +λίμνη +καί +ἀποπνίγω +δέ +ὁ +βόσκω +ὁράω +ὁ +γίνομαι +φεύγω +καί +ἀπαγγέλλω +εἰς +ὁ +πόλις +καί +εἰς +ὁ +ἀγρός +δέ +ἐξέρχομαι +ὁράω +ὁ +γίνομαι +καί +ἔρχομαι +πρός +ὁ +Ἰησοῦς +καί +εὑρίσκω +κάθημαι +ὁ +ἄνθρωπος +ἀπό +ὅς +ὁ +δαιμόνιον +ἐξέρχομαι +ἱματίζω +καί +σωφρονέω +παρά +ὁ +πούς +ὁ +Ἰησοῦς +καί +φοβέω +δέ +ἀπαγγέλλω +αὐτός +ὁ +ὁράω +πῶς +σῴζω +ὁ +δαιμονίζομαι +καί +ἐρωτάω +ἅπας +ὁ +πλῆθος +ὁ +περίχωρος +ὁ +Γερασηνός +αὐτός +ἀπέρχομαι +ἀπό +αὐτός +ὅτι +φόβος +μέγας +συνέχω +δέ +αὐτός +ἐμβαίνω +εἰς +πλοῖον +ὑποστρέφω +δέ +δέομαι +αὐτός +ὁ +ἀνήρ +ἀπό +ὅς +ἐξέρχομαι +ὁ +δαιμόνιον +εἰμί +σύν +αὐτός +δέ +ἀπολύω +αὐτός +λέγω +ὑποστρέφω +εἰς +ὁ +οἶκος +σύ +καί +διηγέομαι +ὅσος +σύ +ποιέω +ὁ +θεός +καί +ἀπέρχομαι +κατά +ὅλος +ὁ +πόλις +κηρύσσω +ὅσος +ποιέω +αὐτός +ὁ +Ἰησοῦς +δέ +ἐν +ὁ +ὑποστρέφω +ὁ +Ἰησοῦς +ἀποδέχομαι +αὐτός +ὁ +ὄχλος +γάρ +πᾶς +εἰμί +προσδοκάω +αὐτός +καί +ὁράω +ἔρχομαι +ἀνήρ +ὅς +ὄνομα +Ἰάϊρος +καί +οὗτος +ἄρχων +ὁ +συναγωγή +ὑπάρχω +καί +πίπτω +παρά +ὁ +πούς +Ἰησοῦς +παρακαλέω +αὐτός +εἰσέρχομαι +εἰς +ὁ +οἶκος +αὐτός +ὅτι +θυγάτηρ +μονογενής +ὡς +ἔτος +δώδεκα +εἰμί +αὐτός +καί +αὐτός +ἀποθνῄσκω +δέ +ἐν +ὁ +ὑπάγω +αὐτός +ὁ +ὄχλος +συμπνίγω +αὐτός +καί +γυνή +εἰμί +ἐν +ῥύσις +αἷμα +ἀπό +ἔτος +δώδεκα +ὅστις +οὐ +ἰσχύω +ἀπό +οὐδείς +θεραπεύω +προσέρχομαι +ὄπισθεν +ἅπτω +ὁ +κράσπεδον +ὁ +ἱμάτιον +αὐτός +καί +παραχρῆμα +ἵστημι +ὁ +ῥύσις +ὁ +αἷμα +αὐτός +καί +λέγω +ὁ +Ἰησοῦς +τίς +ὁ +ἅπτω +ἐγώ +δέ +ἀρνέομαι +πᾶς +λέγω +ὁ +Πέτρος +ἐπιστάτης +ὁ +ὄχλος +συνέχω +σύ +καί +ἀποθλίβω +δέ +ὁ +Ἰησοῦς +λέγω +ἅπτω +ἐγώ +τὶς +γάρ +ἐγώ +γινώσκω +δύναμις +ἐξέρχομαι +ἀπό +ἐγώ +δέ +ὁ +γυνή +ὁράω +ὅτι +οὐ +λανθάνω +τρέμω +ἔρχομαι +καί +προσπίπτω +αὐτός +διά +ὅς +αἰτία +ἅπτω +αὐτός +ἀπαγγέλλω +ἐνώπιον +πᾶς +ὁ +λαός +καί +ὡς +ἰάομαι +παραχρῆμα +δέ +ὁ +λέγω +αὐτός +θυγάτηρ +ὁ +πίστις +σύ +σῴζω +σύ +πορεύομαι +εἰς +εἰρήνη +ἔτι +αὐτός +λαλέω +ἔρχομαι +τὶς +παρά +ὁ +ἀρχισυνάγωγος +λέγω +ὅτι +θνῄσκω +ὁ +θυγάτηρ +σύ +μηκέτι +σκύλλω +ὁ +διδάσκαλος +δέ +ὁ +Ἰησοῦς +ἀκούω +ἀποκρίνομαι +αὐτός +μή +φοβέω +μόνος +πιστεύω +καί +σῴζω +δέ +ἔρχομαι +εἰς +ὁ +οἰκία +οὐ +ἀφίημι +εἰσέρχομαι +τὶς +σύν +αὐτός +εἰ +μή +Πέτρος +καί +Ἰωάννης +καί +Ἰάκωβος +καί +ὁ +πατήρ +ὁ +παῖς +καί +ὁ +μήτηρ +δέ +πᾶς +κλαίω +καί +κόπτω +αὐτός +δέ +ὁ +λέγω +μή +κλαίω +οὐ +ἀποθνῄσκω +ἀλλά +καθεύδω +καί +καταγελάω +αὐτός +οἶδα +ὅτι +ἀποθνῄσκω +δέ +αὐτός +κρατέω +ὁ +χείρ +αὐτός +φωνέω +λέγω +ὁ +παῖς +ἐγείρω +καί +ἐπιστρέφω +ὁ +πνεῦμα +αὐτός +καί +ἀνίστημι +παραχρῆμα +καί +διατάσσω +αὐτός +δίδωμι +ἐσθίω +καί +ἐξίστημι +ὁ +γονεύς +αὐτός +δέ +ὁ +παραγγέλλω +αὐτός +μηδείς +λέγω +ὁ +γίνομαι +δέ +συγκαλέω +ὁ +δώδεκα +δίδωμι +αὐτός +δύναμις +καί +ἐξουσία +ἐπί +πᾶς +ὁ +δαιμόνιον +καί +νόσος +θεραπεύω +καί +ἀποστέλλω +αὐτός +κηρύσσω +ὁ +βασιλεία +ὁ +θεός +καί +ἰάομαι +καί +λέγω +πρός +αὐτός +μηδείς +αἴρω +εἰς +ὁ +ὁδός +μήτε +ῥάβδος +μήτε +πήρα +μήτε +ἄρτος +μήτε +ἀργύριον +μήτε +ἀνά +δύο +χιτών +ἔχω +καί +ἄν +εἰς +ὅς +οἰκία +εἰσέρχομαι +ἐκεῖ +μένω +καί +ἐκεῖθεν +ἐξέρχομαι +καί +ἄν +ὅσος +μή +δέχομαι +σύ +ἐξέρχομαι +ἀπό +ὁ +πόλις +ἐκεῖνος +ὁ +κονιορτός +ἀπό +ὁ +πούς +σύ +ἀποτινάσσω +εἰς +μαρτύριον +ἐπί +αὐτός +δέ +ἐξέρχομαι +διέρχομαι +κατά +ὁ +κώμη +εὐαγγελίζω +καί +θεραπεύω +πανταχοῦ +δέ +ἀκούω +Ἡρῴδης +ὁ +τετραάρχης +ὁ +γίνομαι +πᾶς +καί +διαπορέω +διά +ὁ +λέγω +ὑπό +τὶς +ὅτι +Ἰωάννης +ἐγείρω +ἐκ +νεκρός +δέ +ὑπό +τὶς +ὅτι +Ἠλίας +φαίνω +δέ +ἄλλος +ὅτι +προφήτης +τὶς +ὁ +ἀρχαῖος +ἀνίστημι +δέ +λέγω +Ἡρῴδης +Ἰωάννης +ἐγώ +ἀποκεφαλίζω +δέ +τίς +εἰμί +οὗτος +περί +ὅς +ἀκούω +τοιοῦτος +καί +ζητέω +ὁράω +αὐτός +καί +ὑποστρέφω +ὁ +ἀπόστολος +διηγέομαι +αὐτός +ὅσος +ποιέω +καί +παραλαμβάνω +αὐτός +ὑποχωρέω +κατά +ἴδιος +εἰς +πόλις +καλέω +Βηθσαϊδά +δέ +ὁ +ὄχλος +γινώσκω +ἀκολουθέω +αὐτός +καί +ἀποδέχομαι +αὐτός +λαλέω +αὐτός +περί +ὁ +βασιλεία +ὁ +θεός +καί +ὁ +χρεία +θεραπεία +ἔχω +ἰάομαι +δέ +ὁ +ἡμέρα +ἄρχω +κλίνω +δέ +προσέρχομαι +ὁ +δώδεκα +λέγω +αὐτός +ἀπολύω +ὁ +ὄχλος +ἵνα +πορεύομαι +εἰς +ὁ +κύκλῳ +κώμη +καί +ἀγρός +καταλύω +καί +εὑρίσκω +ἐπισιτισμός +ὅτι +ὧδε +ἐν +ἔρημος +τόπος +εἰμί +δέ +λέγω +πρός +αὐτός +δίδωμι +αὐτός +ἐσθίω +σύ +δέ +ὁ +λέγω +οὐ +εἰμί +ἐγώ +πολύς +ἤ +ἄρτος +πέντε +καί +ἰχθύς +δύο +εἰ +μήτι +πορεύομαι +ἐγώ +ἀγοράζω +εἰς +πᾶς +ὁ +λαός +οὗτος +βρῶμα +γάρ +εἰμί +ὡσεί +πεντακισχίλιοι +ἀνήρ +δέ +λέγω +πρός +ὁ +μαθητής +αὐτός +κατακλίνω +αὐτός +κλισία +ὡσεί +ἀνά +πεντήκοντα +καί +ποιέω +οὕτω +καί +κατακλίνω +ἅπας +δέ +λαμβάνω +ὁ +πέντε +ἄρτος +καί +ὁ +δύο +ἰχθύς +ἀναβλέπω +εἰς +ὁ +οὐρανός +εὐλογέω +αὐτός +καί +κατακλάω +καί +δίδωμι +ὁ +μαθητής +παρατίθημι +ὁ +ὄχλος +καί +ἐσθίω +καί +χορτάζω +πᾶς +καί +αἴρω +ὁ +περισσεύω +αὐτός +κλάσμα +κόφινος +δώδεκα +καί +γίνομαι +ἐν +ὁ +εἰμί +προσεύχομαι +αὐτός +κατά +μόνος +σύνειμι (I) +αὐτός +ὁ +μαθητής +καί +ἐπερωτάω +αὐτός +λέγω +τίς +ἐγώ +εἰμί +ὁ +ὄχλος +λέγω +δέ +ὁ +ἀποκρίνομαι +λέγω +Ἰωάννης +ὁ +βαπτιστής +δέ +ἄλλος +Ἠλίας +δέ +ἄλλος +ὅτι +προφήτης +τὶς +ὁ +ἀρχαῖος +ἀνίστημι +δέ +λέγω +αὐτός +δέ +σύ +τίς +ἐγώ +εἰμί +λέγω +δέ +Πέτρος +ἀποκρίνομαι +λέγω +ὁ +Χριστός +ὁ +θεός +δέ +ὁ +ἐπιτιμάω +αὐτός +παραγγέλλω +μηδείς +λέγω +οὗτος +λέγω +ὅτι +δεῖ +ὁ +υἱός +ὁ +ἄνθρωπος +πολύς +πάσχω +καί +ἀποδοκιμάζω +ἀπό +ὁ +πρεσβύτερος +καί +ἀρχιερεύς +καί +γραμματεύς +καί +ἀποκτείνω +καί +ὁ +τρίτος +ἡμέρα +ἐγείρω +δέ +λέγω +πρός +πᾶς +εἰ +τὶς +θέλω +ὀπίσω +ἐγώ +ἔρχομαι +ἀρνέομαι +ἑαυτοῦ +καί +αἴρω +ὁ +σταυρός +αὐτός +κατά +ἡμέρα +καί +ἀκολουθέω +ἐγώ +γάρ +ἐάν +ὅς +θέλω +ὁ +ψυχή +αὐτός +σῴζω +ἀπόλλυμι +αὐτός +δέ +ἄν +ὅς +ἀπόλλυμι +ὁ +ψυχή +αὐτός +ἕνεκα +ἐγώ +οὗτος +σῴζω +αὐτός +γάρ +τίς +ὠφελέω +ἄνθρωπος +κερδαίνω +ὁ +κόσμος +ὅλος +δέ +ἑαυτοῦ +ἀπόλλυμι +ἤ +ζημιόω +γάρ +ἄν +ὅς +ἐπαισχύνομαι +ἐγώ +καί +ὁ +ἐμός +λόγος +οὗτος +ὁ +υἱός +ὁ +ἄνθρωπος +ἐπαισχύνομαι +ὅταν +ἔρχομαι +ἐν +ὁ +δόξα +αὐτός +καί +ὁ +πατήρ +καί +ὁ +ἅγιος +ἄγγελος +δέ +λέγω +σύ +ἀληθῶς +εἰμί +τὶς +ὁ +αὐτοῦ +ἵστημι +ὅς +οὐ +μή +γεύομαι +θάνατος +ἕως +ἄν +ὁράω +ὁ +βασιλεία +ὁ +θεός +δέ +γίνομαι +μετά +ὁ +λόγος +οὗτος +ὡσεί +ἡμέρα +ὀκτώ +καί +παραλαμβάνω +Πέτρος +καί +Ἰωάννης +καί +Ἰάκωβος +ἀναβαίνω +εἰς +ὁ +ὄρος +προσεύχομαι +καί +γίνομαι +ἐν +ὁ +προσεύχομαι +αὐτός +ὁ +εἶδος +ὁ +πρόσωπον +αὐτός +ἕτερος +καί +ὁ +ἱματισμός +αὐτός +λευκός +ἐξαστράπτω +καί +ὁράω +ἀνήρ +δύο +συλλαλέω +αὐτός +ὅστις +εἰμί +Μωϋσῆς +καί +Ἠλίας +ὅς +ὁράω +ἐν +δόξα +λέγω +ὁ +ἔξοδος +αὐτός +ὅς +πληρόω +ἐν +Ἱεροσόλυμα +μέλλω +δέ +ὁ +Πέτρος +καί +ὁ +σύν +αὐτός +εἰμί +βαρέω +ὕπνος +δέ +διαγρηγορέω +ὁράω +ὁ +δόξα +αὐτός +καί +ὁ +δύο +ἀνήρ +ὁ +συνίστημι +αὐτός +καί +γίνομαι +ἐν +ὁ +διαχωρίζω +αὐτός +ἀπό +αὐτός +λέγω +ὁ +Πέτρος +πρός +ὁ +Ἰησοῦς +ἐπιστάτης +καλός +εἰμί +ἐγώ +ὧδε +εἰμί +καί +ποιέω +σκηνή +τρεῖς +εἷς +σύ +καί +εἷς +Μωϋσῆς +καί +εἷς +Ἠλίας +μή +οἶδα +ὅς +λέγω +δέ +οὗτος +αὐτός +λέγω +γίνομαι +νεφέλη +καί +ἐπισκιάζω +αὐτός +δέ +φοβέω +ἐν +ὁ +εἰσέρχομαι +αὐτός +εἰς +ὁ +νεφέλη +καί +φωνή +γίνομαι +ἐκ +ὁ +νεφέλη +λέγω +οὗτος +εἰμί +ὁ +υἱός +ἐγώ +ὁ +ἐκλέγω +αὐτός +ἀκούω +καί +ἐν +ὁ +γίνομαι +ὁ +φωνή +εὑρίσκω +Ἰησοῦς +μόνος +καί +αὐτός +σιγάω +καί +οὐδείς +ἀπαγγέλλω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +οὐδείς +ὅς +ὁράω +δέ +γίνομαι +ὁ +ἑξῆς +ἡμέρα +κατέρχομαι +αὐτός +ἀπό +ὁ +ὄρος +συναντάω +αὐτός +ὄχλος +πολύς +καί +ὁράω +ἀνήρ +ἀπό +ὁ +ὄχλος +βοάω +λέγω +διδάσκαλος +δέομαι +σύ +ἐπιβλέπω +ἐπί +ὁ +υἱός +ἐγώ +ὅτι +μονογενής +ἐγώ +εἰμί +καί +ὁράω +πνεῦμα +λαμβάνω +αὐτός +καί +ἐξαίφνης +κράζω +καί +σπαράσσω +αὐτός +μετά +ἀφρός +καί +μόλις +ἀποχωρέω +ἀπό +αὐτός +συντρίβω +αὐτός +καί +δέομαι +ὁ +μαθητής +σύ +ἵνα +ἐκβάλλω +αὐτός +καί +οὐ +δύναμαι +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +ὦ +γενεά +ἄπιστος +καί +διαστρέφω +ἕως +πότε +εἰμί +πρός +σύ +καί +ἀνέχω +σύ +προσάγω +ὧδε +ὁ +υἱός +σύ +δέ +ἔτι +προσέρχομαι +αὐτός +ῥήγνυμι +αὐτός +ὁ +δαιμόνιον +καί +συσπαράσσω +δέ +ἐπιτιμάω +ὁ +Ἰησοῦς +ὁ +πνεῦμα +ὁ +ἀκάθαρτος +καί +ἰάομαι +ὁ +παῖς +καί +ἀποδίδωμι +αὐτός +ὁ +πατήρ +αὐτός +δέ +ἐκπλήσσω +πᾶς +ἐπί +ὁ +μεγαλειότης +ὁ +θεός +δέ +πᾶς +θαυμάζω +ἐπί +πᾶς +ὅς +ποιέω +λέγω +πρός +ὁ +μαθητής +αὐτός +τίθημι +σύ +εἰς +ὁ +οὖς +σύ +ὁ +λόγος +οὗτος +γάρ +ὁ +υἱός +ὁ +ἄνθρωπος +μέλλω +παραδίδωμι +εἰς +χείρ +ἄνθρωπος +δέ +ὁ +ἀγνοέω +ὁ +ῥῆμα +οὗτος +καί +εἰμί +παρακαλύπτω +ἀπό +αὐτός +ἵνα +μή +αἰσθάνομαι +αὐτός +καί +φοβέω +ἐρωτάω +αὐτός +περί +ὁ +ῥῆμα +οὗτος +δέ +εἰσέρχομαι +ἐν +αὐτός +διαλογισμός +ὁ +ἄν +τίς +αὐτός +εἰμί +μέγας +δέ +ὁ +Ἰησοῦς +οἶδα +ὁ +διαλογισμός +ὁ +καρδία +αὐτός +ἐπιλαμβάνομαι +παιδίον +ἵστημι +αὐτός +παρά +ἑαυτοῦ +καί +λέγω +αὐτός +ἐάν +ὅς +δέχομαι +οὗτος +ὁ +παιδίον +ἐπί +ὁ +ὄνομα +ἐγώ +ἐγώ +δέχομαι +καί +ἄν +ὅς +ἐγώ +δέχομαι +δέχομαι +ὁ +ἀποστέλλω +ἐγώ +γάρ +ὁ +μικρός +ἐν +πᾶς +σύ +ὑπάρχω +οὗτος +εἰμί +μέγας +δέ +ἀποκρίνομαι +ὁ +Ἰωάννης +λέγω +ἐπιστάτης +ὁράω +τὶς +ἐν +ὁ +ὄνομα +σύ +ἐκβάλλω +δαιμόνιον +καί +κωλύω +αὐτός +ὅτι +οὐ +ἀκολουθέω +μετά +ἐγώ +δέ +λέγω +πρός +αὐτός +Ἰησοῦς +μή +κωλύω +γάρ +ὅς +οὐ +εἰμί +κατά +σύ +ὑπέρ +σύ +εἰμί +δέ +γίνομαι +ἐν +ὁ +συμπληρόω +ὁ +ἡμέρα +ὁ +ἀνάλημψις +αὐτός +καί +αὐτός +ὁ +πρόσωπον +στηρίζω +ὁ +πορεύομαι +εἰς +Ἱεροσόλυμα +καί +ἀποστέλλω +ἄγγελος +πρό +πρόσωπον +αὐτός +καί +πορεύομαι +εἰσέρχομαι +εἰς +κώμη +Σαμαρίτης +ὥστε +ἑτοιμάζω +αὐτός +καί +οὐ +δέχομαι +αὐτός +ὅτι +ὁ +πρόσωπον +αὐτός +εἰμί +πορεύομαι +εἰς +Ἱεροσόλυμα +δέ +ὁράω +ὁ +μαθητής +Ἰάκωβος +καί +Ἰωάννης +λέγω +κύριος +θέλω +λέγω +πῦρ +καταβαίνω +ἀπό +ὁ +οὐρανός +καί +ἀναλίσκω +αὐτός +δέ +στρέφω +ἐπιτιμάω +αὐτός +καί +πορεύομαι +εἰς +ἕτερος +κώμη +καί +πορεύομαι +αὐτός +ἐν +ὁ +ὁδός +λέγω +τὶς +πρός +αὐτός +ἀκολουθέω +σύ +ἐάν +ὅπου +ἀπέρχομαι +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ὁ +ἀλώπηξ +φωλεός +ἔχω +καί +ὁ +πετεινός +ὁ +οὐρανός +κατασκήνωσις +δέ +ὁ +υἱός +ὁ +ἄνθρωπος +οὐ +ἔχω +ποῦ +ὁ +κεφαλή +κλίνω +δέ +λέγω +πρός +ἕτερος +ἀκολουθέω +ἐγώ +δέ +ὁ +λέγω +ἐπιτρέπω +ἐγώ +πρῶτος +ἀπέρχομαι +θάπτω +ὁ +πατήρ +ἐγώ +δέ +λέγω +αὐτός +ἀφίημι +ὁ +νεκρός +θάπτω +ὁ +ἑαυτοῦ +νεκρός +δέ +σύ +ἀπέρχομαι +διαγγέλλω +ὁ +βασιλεία +ὁ +θεός +δέ +λέγω +καί +ἕτερος +ἀκολουθέω +σύ +κύριος +δέ +πρῶτος +ἐπιτρέπω +ἐγώ +ἀποτάσσω +ὁ +εἰς +ὁ +οἶκος +ἐγώ +δέ +λέγω +πρός +αὐτός +ὁ +Ἰησοῦς +οὐδείς +ἐπιβάλλω +ὁ +χείρ +ἐπί +ἄροτρον +καί +βλέπω +εἰς +ὁ +ὀπίσω +εὔθετος +εἰμί +ὁ +βασιλεία +ὁ +θεός +δέ +μετά +οὗτος +ἀναδείκνυμι +ὁ +κύριος +ἕτερος +ἑβδομήκοντα +καί +ἀποστέλλω +αὐτός +ἀνά +δύο +πρό +πρόσωπον +αὐτός +εἰς +πᾶς +πόλις +καί +τόπος +οὗ +μέλλω +αὐτός +ἔρχομαι +δέ +λέγω +πρός +αὐτός +μέν +ὁ +θερισμός +πολύς +δέ +ὁ +ἐργάτης +ὀλίγος +οὖν +δέομαι +ὁ +κύριος +ὁ +θερισμός +ὅπως +ἐργάτης +ἐκβάλλω +εἰς +ὁ +θερισμός +αὐτός +ὑπάγω +ὁράω +ἀποστέλλω +σύ +ὡς +ἀρήν +ἐν +μέσος +λύκος +μή +βαστάζω +βαλλάντιον +μή +πήρα +μή +ὑπόδημα +καί +μηδείς +κατά +ὁ +ὁδός +ἀσπάζομαι +δέ +ἄν +εἰς +ὅς +οἰκία +εἰσέρχομαι +πρῶτος +λέγω +εἰρήνη +ὁ +οἶκος +οὗτος +καί +ἐάν +ἐκεῖ +εἰμί +υἱός +εἰρήνη +ἐπαναπαύομαι +ἐπί +αὐτός +ὁ +εἰρήνη +σύ +δέ +εἰ +εἰ δὲ μή +ἐπί +σύ +ἀνακάμπτω +δέ +ἐν +αὐτός +ὁ +οἰκία +μένω +ἐσθίω +καί +πίνω +ὁ +παρά +αὐτός +γάρ +ἄξιος +ὁ +ἐργάτης +ὁ +μισθός +αὐτός +μή +μεταβαίνω +ἐκ +οἰκία +εἰς +οἰκία +καί +ἄν +εἰς +ὅς +πόλις +εἰσέρχομαι +καί +δέχομαι +σύ +ἐσθίω +ὁ +παρατίθημι +σύ +καί +θεραπεύω +ὁ +ἐν +αὐτός +ἀσθενής +καί +λέγω +αὐτός +ἐγγίζω +ἐπί +σύ +ὁ +βασιλεία +ὁ +θεός +δέ +ἄν +εἰς +ὅς +πόλις +εἰσέρχομαι +καί +μή +δέχομαι +σύ +ἐξέρχομαι +εἰς +ὁ +πλατύς +αὐτός +λέγω +καί +ὁ +κονιορτός +ὁ +κολλάω +ἐγώ +ἐκ +ὁ +πόλις +σύ +εἰς +ὁ +πούς +ἀπομάσσω +σύ +πλήν +οὗτος +γινώσκω +ὅτι +ἐγγίζω +ὁ +βασιλεία +ὁ +θεός +λέγω +σύ +ὅτι +Σόδομα +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ἀνεκτός +εἰμί +ἤ +ὁ +πόλις +ἐκεῖνος +οὐαί +σύ +Χοραζίν +οὐαί +σύ +Βηθσαϊδά +ὅτι +εἰ +ἐν +Τύρος +καί +Σιδών +γίνομαι +ὁ +δύναμις +ὁ +γίνομαι +ἐν +σύ +ἄν +πάλαι +ἐν +σάκκος +καί +σποδός +κάθημαι +μετανοέω +πλήν +Τύρος +καί +Σιδών +ἀνεκτός +εἰμί +ἐν +ὁ +κρίσις +ἤ +σύ +καί +Καφαρναούμ +μή +σύ +ἕως +οὐρανός +ὑψόω +ἕως +ὁ +ᾅδης +καταβαίνω +ὁ +ἀκούω +σύ +ἐγώ +ἀκούω +καί +ὁ +ἀθετέω +σύ +ἐγώ +ἀθετέω +δέ +ὁ +ἐγώ +ἀθετέω +ἀθετέω +ὁ +ἀποστέλλω +ἐγώ +δέ +ὑποστρέφω +ὁ +ἑβδομήκοντα +μετά +χαρά +λέγω +κύριος +καί +ὁ +δαιμόνιον +ὑποτάσσω +ἐγώ +ἐν +ὁ +ὄνομα +σύ +δέ +λέγω +αὐτός +θεωρέω +ὁ +Σατανᾶς +ὡς +ἀστραπή +ἐκ +ὁ +οὐρανός +πίπτω +ὁράω +δίδωμι +σύ +ὁ +ἐξουσία +ὁ +πατέω +ἐπάνω +ὄφις +καί +σκορπίος +καί +ἐπί +πᾶς +ὁ +δύναμις +ὁ +ἐχθρός +καί +οὐδείς +σύ +οὐ +μή +ἀδικέω +πλήν +ἐν +οὗτος +μή +χαίρω +ὅτι +ὁ +πνεῦμα +σύ +ὑποτάσσω +δέ +χαίρω +ὅτι +ὁ +ὄνομα +σύ +ἐγγράφω +ἐν +ὁ +οὐρανός +ἐν +αὐτός +ὁ +ὥρα +ἀγαλλιάω +ὁ +πνεῦμα +ὁ +ἅγιος +καί +λέγω +ἐξομολογέω +σύ +πατήρ +κύριος +ὁ +οὐρανός +καί +ὁ +γῆ +ὅτι +ἀποκρύπτω +οὗτος +ἀπό +σοφός +καί +συνετός +καί +ἀποκαλύπτω +αὐτός +νήπιος +ναί +ὁ +πατήρ +ὅτι +οὕτω +εὐδοκία +γίνομαι +ἔμπροσθεν +σύ +πᾶς +ἐγώ +παραδίδωμι +ὑπό +ὁ +πατήρ +ἐγώ +καί +οὐδείς +γινώσκω +τίς +εἰμί +ὁ +υἱός +εἰ +μή +ὁ +πατήρ +καί +τίς +εἰμί +ὁ +πατήρ +εἰ +μή +ὁ +υἱός +καί +ἐάν +ὅς +ἀποκαλύπτω +βούλομαι +ὁ +υἱός +καί +στρέφω +πρός +ὁ +μαθητής +κατά +ἴδιος +λέγω +μακάριος +ὁ +ὀφθαλμός +ὁ +βλέπω +ὅς +βλέπω +γάρ +λέγω +σύ +ὅτι +πολύς +προφήτης +καί +βασιλεύς +θέλω +ὁράω +ὅς +σύ +βλέπω +καί +οὐ +ὁράω +καί +ἀκούω +ὅς +ἀκούω +καί +οὐ +ἀκούω +καί +ὁράω +νομικός +τὶς +ἀνίστημι +ἐκπειράζω +αὐτός +λέγω +διδάσκαλος +τίς +ποιέω +ζωή +αἰώνιος +κληρονομέω +δέ +ὁ +λέγω +πρός +αὐτός +ἐν +ὁ +νόμος +τίς +γράφω +πῶς +ἀναγινώσκω +δέ +ὁ +ἀποκρίνομαι +λέγω +ἀγαπάω +κύριος +ὁ +θεός +σύ +ἐκ +ὅλος +ὁ +καρδία +σύ +καί +ἐν +ὅλος +ὁ +ψυχή +σύ +καί +ἐν +ὅλος +ὁ +ἰσχύς +σύ +καί +ἐν +ὅλος +ὁ +διάνοια +σύ +καί +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +δέ +λέγω +αὐτός +ὀρθῶς +ἀποκρίνομαι +οὗτος +ποιέω +καί +ζάω +δέ +ὁ +θέλω +δικαιόω +ἑαυτοῦ +λέγω +πρός +ὁ +Ἰησοῦς +καί +τίς +εἰμί +ἐγώ +πλησίον +ὑπολαμβάνω +ὁ +Ἰησοῦς +λέγω +ἄνθρωπος +τὶς +καταβαίνω +ἀπό +Ἱεροσόλυμα +εἰς +Ἰεριχώ +καί +λῃστής +περιπίπτω +ὅς +καί +ἐκδύω +αὐτός +καί +πληγή +ἐπιτίθημι +ἀπέρχομαι +ἀφίημι +ἡμιθανής +δέ +κατά +συγκυρία +ἱερεύς +τὶς +καταβαίνω +ἐν +ὁ +ὁδός +ἐκεῖνος +καί +ὁράω +αὐτός +ἀντιπαρέρχομαι +δέ +ὁμοίως +καί +Λευίτης +κατά +ὁ +τόπος +ἔρχομαι +καί +ὁράω +ἀντιπαρέρχομαι +δέ +Σαμαρίτης +τὶς +ὁδεύω +ἔρχομαι +κατά +αὐτός +καί +ὁράω +σπλαγχνίζομαι +καί +προσέρχομαι +καταδέω +ὁ +τραῦμα +αὐτός +ἐπιχέω +ἔλαιον +καί +οἶνος +δέ +ἐπιβιβάζω +αὐτός +ἐπί +ὁ +ἴδιος +κτῆνος +ἄγω +αὐτός +εἰς +πανδοχεῖον +καί +ἐπιμελέομαι +αὐτός +καί +ἐπί +ὁ +αὔριον +ἐκβάλλω +δύο +δηνάριον +δίδωμι +ὁ +πανδοχεύς +καί +λέγω +ἐπιμελέομαι +αὐτός +καί +τὶς +ἄν +ὅς +προσδαπανάω +ἐγώ +ἐν +ὁ +ἐπανέρχομαι +ἐγώ +ἀποδίδωμι +σύ +δοκέω +σύ +τίς +οὗτος +ὁ +τρεῖς +γίνομαι +πλησίον +ὁ +ἐμπίπτω +εἰς +ὁ +λῃστής +δέ +ὁ +λέγω +ὁ +ποιέω +ὁ +ἔλεος +μετά +αὐτός +δέ +λέγω +αὐτός +ὁ +Ἰησοῦς +πορεύομαι +καί +σύ +ποιέω +ὁμοίως +δέ +ἐν +ὁ +πορεύομαι +αὐτός +αὐτός +εἰσέρχομαι +εἰς +κώμη +τὶς +δέ +γυνή +τὶς +ὄνομα +Μάρθα +ὑποδέχομαι +αὐτός +εἰς +ὁ +οἰκία +καί +ὅδε +εἰμί +ἀδελφή +καλέω +Μαρία +ὅς +καί +παρακαθέζομαι +πρός +ὁ +πούς +ὁ +κύριος +ἀκούω +ὁ +λόγος +αὐτός +δέ +ὁ +Μάρθα +περισπάω +περί +πολύς +διακονία +δέ +ἐφίστημι +λέγω +κύριος +οὐ +μέλει +σύ +ὅτι +ὁ +ἀδελφή +ἐγώ +μόνος +ἐγώ +διακονέω +καταλείπω +οὖν +λέγω +αὐτός +ἵνα +ἐγώ +συναντιλαμβάνομαι +δέ +ἀποκρίνομαι +λέγω +αὐτός +ὁ +κύριος +Μάρθα +Μάρθα +μεριμνάω +καί +θορυβάζω +περί +πολύς +δέ +ὀλίγος +χρεία +εἰμί +ἤ +εἷς +γάρ +Μαρία +ὁ +ἀγαθός +μερίς +ἐκλέγω +ὅστις +οὐ +ἀφαιρέω +αὐτός +καί +γίνομαι +ἐν +ὁ +εἰμί +προσεύχομαι +αὐτός +ἐν +τόπος +τὶς +ὡς +παύω +λέγω +τὶς +ὁ +μαθητής +αὐτός +πρός +αὐτός +κύριος +διδάσκω +ἐγώ +προσεύχομαι +καθώς +καί +Ἰωάννης +διδάσκω +ὁ +μαθητής +αὐτός +δέ +λέγω +αὐτός +ὅταν +προσεύχομαι +λέγω +πατήρ +ἁγιάζω +ὁ +ὄνομα +σύ +ἔρχομαι +ὁ +βασιλεία +σύ +ὁ +ἄρτος +ἐγώ +ὁ +ἐπιούσιος +δίδωμι +ἐγώ +ὁ +κατά +ἡμέρα +καί +ἀφίημι +ἐγώ +ὁ +ἁμαρτία +ἐγώ +γάρ +καί +αὐτός +ἀφίημι +πᾶς +ὀφείλω +ἐγώ +καί +μή +εἰσφέρω +ἐγώ +εἰς +πειρασμός +καί +λέγω +πρός +αὐτός +τίς +ἐκ +σύ +ἔχω +φίλος +καί +πορεύομαι +πρός +αὐτός +μεσονύκτιον +καί +λέγω +αὐτός +φίλος +κίχρημι +ἐγώ +τρεῖς +ἄρτος +ἐπειδή +φίλος +ἐγώ +παραγίνομαι +ἐκ +ὁδός +πρός +ἐγώ +καί +οὐ +ἔχω +ὅς +παρατίθημι +αὐτός +κἀκεῖνος +ἔσωθεν +ἀποκρίνομαι +λέγω +μή +ἐγώ +κόπος +παρέχω +ἤδη +ὁ +θύρα +κλείω +καί +ὁ +παιδίον +ἐγώ +μετά +ἐγώ +εἰς +ὁ +κοίτη +εἰμί +οὐ +δύναμαι +ἀνίστημι +δίδωμι +σύ +λέγω +σύ +εἰ +καί +οὐ +δίδωμι +αὐτός +ἀνίστημι +διά +ὁ +εἰμί +φίλος +αὐτός +γέ +διά +ὁ +ἀναίδεια +αὐτός +ἐγείρω +δίδωμι +αὐτός +ὅσος +χρῄζω +κἀγώ +σύ +λέγω +αἰτέω +καί +δίδωμι +σύ +ζητέω +καί +εὑρίσκω +κρούω +καί +ἀνοίγω +σύ +γάρ +πᾶς +ὁ +αἰτέω +λαμβάνω +καί +ὁ +ζητέω +εὑρίσκω +καί +ὁ +κρούω +ἀνοίγω +δέ +τίς +ἐκ +σύ +ὁ +πατήρ +αἰτέω +ὁ +υἱός +ἰχθύς +μή +ἀντί +ἰχθύς +ὄφις +αὐτός +ἐπιδίδωμι +ἤ +καί +αἰτέω +ᾠόν +ἐπιδίδωμι +αὐτός +σκορπίος +οὖν +εἰ +σύ +πονηρός +ὑπάρχω +οἶδα +δόμα +ἀγαθός +δίδωμι +ὁ +τέκνον +σύ +πόσος +μᾶλλον +ὁ +πατήρ +ὁ +ἐκ +οὐρανός +δίδωμι +πνεῦμα +ἅγιος +ὁ +αἰτέω +αὐτός +καί +εἰμί +ἐκβάλλω +δαιμόνιον +καί +αὐτός +εἰμί +κωφός +δέ +γίνομαι +ὁ +δαιμόνιον +ἐξέρχομαι +λαλέω +ὁ +κωφός +καί +θαυμάζω +ὁ +ὄχλος +δέ +τὶς +ἐκ +αὐτός +λέγω +ἐν +Βεελζεβούλ +ὁ +ἄρχων +ὁ +δαιμόνιον +ἐκβάλλω +ὁ +δαιμόνιον +δέ +ἕτερος +πειράζω +σημεῖον +ἐκ +οὐρανός +ζητέω +παρά +αὐτός +δέ +αὐτός +οἶδα +αὐτός +ὁ +διανόημα +λέγω +αὐτός +πᾶς +βασιλεία +ἐπί +ἑαυτοῦ +διαμερίζω +ἐρημόω +καί +οἶκος +ἐπί +οἶκος +πίπτω +δέ +εἰ +καί +ὁ +Σατανᾶς +ἐπί +ἑαυτοῦ +διαμερίζω +πῶς +ἵστημι +ὁ +βασιλεία +αὐτός +ὅτι +λέγω +ἐν +Βεελζεβούλ +ἐκβάλλω +ἐγώ +ὁ +δαιμόνιον +δέ +εἰ +ἐγώ +ἐν +Βεελζεβούλ +ἐκβάλλω +ὁ +δαιμόνιον +ὁ +υἱός +σύ +ἐν +τίς +ἐκβάλλω +διά +οὗτος +αὐτός +σύ +κριτής +εἰμί +δέ +εἰ +ἐν +δάκτυλος +θεός +ἐγώ +ἐκβάλλω +ὁ +δαιμόνιον +ἄρα +φθάνω +ἐπί +σύ +ὁ +βασιλεία +ὁ +θεός +ὅταν +ὁ +ἰσχυρός +καθοπλίζω +φυλάσσω +ὁ +ἑαυτοῦ +αὐλή +ἐν +εἰρήνη +εἰμί +ὁ +ὑπάρχω +αὐτός +δέ +ἐπάν +ἰσχυρός +αὐτός +ἐπέρχομαι +νικάω +αὐτός +ὁ +πανοπλία +αὐτός +αἴρω +ἐπί +ὅς +πείθω +καί +ὁ +σκῦλον +αὐτός +διαδίδωμι +ὁ +μή +εἰμί +μετά +ἐγώ +κατά +ἐγώ +εἰμί +καί +ὁ +μή +συνάγω +μετά +ἐγώ +σκορπίζω +ὅταν +ὁ +ἀκάθαρτος +πνεῦμα +ἐξέρχομαι +ἀπό +ὁ +ἄνθρωπος +διέρχομαι +διά +ἄνυδρος +τόπος +ζητέω +ἀνάπαυσις +καί +μή +εὑρίσκω +λέγω +ὑποστρέφω +εἰς +ὁ +οἶκος +ἐγώ +ὅθεν +ἐξέρχομαι +καί +ἔρχομαι +εὑρίσκω +σαρόω +καί +κοσμέω +τότε +πορεύομαι +καί +παραλαμβάνω +ἕτερος +πνεῦμα +πονηρός +ἑαυτοῦ +ἑπτά +καί +εἰσέρχομαι +κατοικέω +ἐκεῖ +καί +γίνομαι +ὁ +ἔσχατος +ὁ +ἄνθρωπος +ἐκεῖνος +χείρων +ὁ +πρῶτος +δέ +γίνομαι +ἐν +ὁ +λέγω +αὐτός +οὗτος +ἐπαίρω +φωνή +τὶς +γυνή +ἐκ +ὁ +ὄχλος +λέγω +αὐτός +μακάριος +ὁ +κοιλία +ὁ +βαστάζω +σύ +καί +μαστός +ὅς +θηλάζω +δέ +αὐτός +λέγω +μενοῦν +μακάριος +ὁ +ἀκούω +ὁ +λόγος +ὁ +θεός +καί +φυλάσσω +δέ +ὁ +ὄχλος +ἐπαθροίζω +ἄρχω +λέγω +ὁ +γενεά +οὗτος +γενεά +πονηρός +εἰμί +σημεῖον +ζητέω +καί +σημεῖον +οὐ +δίδωμι +αὐτός +εἰ +μή +ὁ +σημεῖον +Ἰωνᾶς +γάρ +καθώς +γίνομαι +Ἰωνᾶς +ὁ +Νινευίτης +σημεῖον +οὕτω +εἰμί +καί +ὁ +υἱός +ὁ +ἄνθρωπος +ὁ +γενεά +οὗτος +βασίλισσα +νότος +ἐγείρω +ἐν +ὁ +κρίσις +μετά +ὁ +ἀνήρ +ὁ +γενεά +οὗτος +καί +κατακρίνω +αὐτός +ὅτι +ἔρχομαι +ἐκ +ὁ +πέρας +ὁ +γῆ +ἀκούω +ὁ +σοφία +Σολομών +καί +ὁράω +πολύς +Σολομών +ὧδε +ἀνήρ +Νινευίτης +ἀνίστημι +ἐν +ὁ +κρίσις +μετά +ὁ +γενεά +οὗτος +καί +κατακρίνω +αὐτός +ὅτι +μετανοέω +εἰς +ὁ +κήρυγμα +Ἰωνᾶς +καί +ὁράω +πολύς +Ἰωνᾶς +ὧδε +οὐδείς +λύχνος +ἅπτω +εἰς +κρύπτη +τίθημι +οὐδέ +ὑπό +ὁ +μόδιος +ἀλλά +ἐπί +ὁ +λυχνία +ἵνα +ὁ +εἰσπορεύομαι +ὁ +φέγγος +βλέπω +ὁ +λύχνος +ὁ +σῶμα +εἰμί +ὁ +ὀφθαλμός +σύ +ὅταν +ὁ +ὀφθαλμός +σύ +ἁπλοῦς +εἰμί +καί +ὅλος +ὁ +σῶμα +σύ +φωτεινός +εἰμί +δέ +ἐπάν +πονηρός +εἰμί +καί +ὁ +σῶμα +σύ +σκοτεινός +οὖν +σκοπέω +μή +ὁ +φῶς +ὁ +ἐν +σύ +σκότος +εἰμί +οὖν +εἰ +ὁ +σῶμα +σύ +ὅλος +φωτεινός +μή +ἔχω +μέρος +τὶς +σκοτεινός +εἰμί +φωτεινός +ὅλος +ὡς +ὅταν +ὁ +λύχνος +ὁ +ἀστραπή +φωτίζω +σύ +δέ +ἐν +ὁ +λαλέω +ἐρωτάω +αὐτός +Φαρισαῖος +ὅπως +ἀριστάω +παρά +αὐτός +δέ +εἰσέρχομαι +ἀναπίπτω +δέ +ὁ +Φαρισαῖος +ὁράω +θαυμάζω +ὅτι +οὐ +πρῶτος +βαπτίζω +πρό +ὁ +ἄριστον +δέ +λέγω +ὁ +κύριος +πρός +αὐτός +νῦν +σύ +ὁ +Φαρισαῖος +ὁ +ἔξωθεν +ὁ +ποτήριον +καί +ὁ +πίναξ +καθαρίζω +δέ +ὁ +ἔσωθεν +σύ +γέμω +ἁρπαγή +καί +πονηρία +ἄφρων +οὐ +ὁ +ποιέω +ὁ +ἔξωθεν +καί +ὁ +ἔσωθεν +ποιέω +πλήν +ὁ +ἔνειμι +δίδωμι +ἐλεημοσύνη +καί +ὁράω +πᾶς +καθαρός +σύ +εἰμί +ἀλλά +οὐαί +σύ +ὁ +Φαρισαῖος +ὅτι +ἀποδεκατόω +ὁ +ἡδύοσμον +καί +ὁ +πήγανον +καί +πᾶς +λάχανον +καί +παρέρχομαι +ὁ +κρίσις +καί +ὁ +ἀγάπη +ὁ +θεός +δέ +δεῖ +οὗτος +ποιέω +κἀκεῖνος +μή +παρίημι +οὐαί +σύ +ὁ +Φαρισαῖος +ὅτι +ἀγαπάω +ὁ +πρωτοκαθεδρία +ἐν +ὁ +συναγωγή +καί +ὁ +ἀσπασμός +ἐν +ὁ +ἀγορά +οὐαί +σύ +ὅτι +εἰμί +ὡς +ὁ +μνημεῖον +ὁ +ἄδηλος +καί +ὁ +ἄνθρωπος +ὁ +περιπατέω +ἐπάνω +οὐ +οἶδα +δέ +ἀποκρίνομαι +τὶς +ὁ +νομικός +λέγω +αὐτός +διδάσκαλος +οὗτος +λέγω +καί +ἐγώ +ὑβρίζω +δέ +ὁ +λέγω +καί +σύ +ὁ +νομικός +οὐαί +ὅτι +φορτίζω +ὁ +ἄνθρωπος +φορτίον +δυσβάστακτος +καί +αὐτός +εἷς +ὁ +δάκτυλος +σύ +οὐ +προσψαύω +ὁ +φορτίον +οὐαί +σύ +ὅτι +οἰκοδομέω +ὁ +μνημεῖον +ὁ +προφήτης +δέ +ὁ +πατήρ +σύ +ἀποκτείνω +αὐτός +ἄρα +μάρτυς +εἰμί +καί +συνευδοκέω +ὁ +ἔργον +ὁ +πατήρ +σύ +ὅτι +μέν +αὐτός +ἀποκτείνω +αὐτός +δέ +σύ +οἰκοδομέω +διά +οὗτος +καί +ὁ +σοφία +ὁ +θεός +λέγω +ἀποστέλλω +εἰς +αὐτός +προφήτης +καί +ἀπόστολος +καί +ἐκ +αὐτός +ἀποκτείνω +καί +διώκω +ἵνα +ἐκζητέω +ὁ +αἷμα +πᾶς +ὁ +προφήτης +ὁ +ἐκχέω +ἀπό +καταβολή +κόσμος +ἀπό +ὁ +γενεά +οὗτος +ἀπό +αἷμα +Ἅβελ +ἕως +αἷμα +Ζαχαρίας +ὁ +ἀπόλλυμι +μεταξύ +ὁ +θυσιαστήριον +καί +ὁ +οἶκος +ναί +λέγω +σύ +ἐκζητέω +ἀπό +ὁ +γενεά +οὗτος +οὐαί +σύ +ὁ +νομικός +ὅτι +αἴρω +ὁ +κλείς +ὁ +γνῶσις +αὐτός +οὐ +εἰσέρχομαι +καί +ὁ +εἰσέρχομαι +κωλύω +κἀκεῖθεν +ἐξέρχομαι +αὐτός +ἄρχω +ὁ +γραμματεύς +καί +ὁ +Φαρισαῖος +δεινῶς +ἐνέχω +καί +ἀποστοματίζω +αὐτός +περί +πολύς +ἐνεδρεύω +αὐτός +θηρεύω +τὶς +ἐκ +ὁ +στόμα +αὐτός +ἐν +ὅς +ἐπισυνάγω +ὁ +μυριάς +ὁ +ὄχλος +ὥστε +καταπατέω +ἀλλήλων +ἄρχω +λέγω +πρός +ὁ +μαθητής +αὐτός +πρῶτος +προσέχω +ἑαυτοῦ +ἀπό +ὁ +ζύμη +ὅστις +εἰμί +ὑπόκρισις +ὁ +Φαρισαῖος +δέ +οὐδείς +εἰμί +συγκαλύπτω +ὅς +οὐ +ἀποκαλύπτω +καί +κρυπτός +ὅς +οὐ +γινώσκω +ἀντί +ὅς +ὅσος +ἐν +ὁ +σκοτία +λέγω +ἐν +ὁ +φῶς +ἀκούω +καί +ὅς +πρός +ὁ +οὖς +λαλέω +ἐν +ὁ +ταμεῖον +κηρύσσω +ἐπί +ὁ +δῶμα +δέ +λέγω +σύ +ὁ +φίλος +ἐγώ +μή +φοβέω +ἀπό +ὁ +ἀποκτείνω +ὁ +σῶμα +καί +μετά +οὗτος +μή +ἔχω +περισσός +τὶς +ποιέω +δέ +ὑποδείκνυμι +σύ +τίς +φοβέω +φοβέω +ὁ +μετά +ὁ +ἀποκτείνω +ἔχω +ἐξουσία +ἐμβάλλω +εἰς +ὁ +γέεννα +ναί +λέγω +σύ +οὗτος +φοβέω +οὐχί +πέντε +στρουθίον +πωλέω +ἀσσάριον +δύο +καί +εἷς +ἐκ +αὐτός +οὐ +εἰμί +ἐπιλανθάνομαι +ἐνώπιον +ὁ +θεός +ἀλλά +καί +ὁ +θρίξ +ὁ +κεφαλή +σύ +πᾶς +ἀριθμέω +μή +φοβέω +πολύς +στρουθίον +διαφέρω +δέ +λέγω +σύ +πᾶς +ἄν +ὅς +ὁμολογέω +ἐν +ἐγώ +ἔμπροσθεν +ὁ +ἄνθρωπος +καί +ὁ +υἱός +ὁ +ἄνθρωπος +ὁμολογέω +ἐν +αὐτός +ἔμπροσθεν +ὁ +ἄγγελος +ὁ +θεός +δέ +ὁ +ἀρνέομαι +ἐγώ +ἐνώπιον +ὁ +ἄνθρωπος +ἀπαρνέομαι +ἐνώπιον +ὁ +ἄγγελος +ὁ +θεός +καί +πᾶς +ὅς +εἶπον +λόγος +εἰς +ὁ +υἱός +ὁ +ἄνθρωπος +ἀφίημι +αὐτός +δέ +ὁ +εἰς +ὁ +ἅγιος +πνεῦμα +βλασφημέω +οὐ +ἀφίημι +δέ +ὅταν +εἰσφέρω +σύ +ἐπί +ὁ +συναγωγή +καί +ὁ +ἀρχή +καί +ὁ +ἐξουσία +μή +μεριμνάω +πῶς +ἤ +τίς +ἀπολογέομαι +ἤ +τίς +λέγω +γάρ +ὁ +ἅγιος +πνεῦμα +διδάσκω +σύ +ἐν +αὐτός +ὁ +ὥρα +ὅς +λέγω +δεῖ +δέ +λέγω +τὶς +ἐκ +ὁ +ὄχλος +αὐτός +διδάσκαλος +λέγω +ὁ +ἀδελφός +ἐγώ +μερίζω +μετά +ἐγώ +ὁ +κληρονομία +δέ +ὁ +λέγω +αὐτός +ἄνθρωπος +τίς +ἐγώ +καθίστημι +κριτής +ἤ +μεριστής +ἐπί +σύ +δέ +λέγω +πρός +αὐτός +ὁράω +καί +φυλάσσω +ἀπό +πᾶς +πλεονεξία +ὅτι +οὐ +ἐν +ὁ +περισσεύω +τὶς +ὁ +ζωή +αὐτός +εἰμί +ἐκ +ὁ +ὑπάρχω +αὐτός +δέ +λέγω +παραβολή +πρός +αὐτός +λέγω +ἄνθρωπος +τὶς +πλούσιος +ὁ +χώρα +εὐφορέω +καί +διαλογίζομαι +ἐν +ἑαυτοῦ +λέγω +τίς +ποιέω +ὅτι +οὐ +ἔχω +ποῦ +συνάγω +ὁ +καρπός +ἐγώ +καί +λέγω +οὗτος +ποιέω +καθαιρέω +ἐγώ +ὁ +ἀποθήκη +καί +μέγας +οἰκοδομέω +καί +συνάγω +ἐκεῖ +πᾶς +ὁ +σῖτος +καί +ὁ +ἀγαθός +ἐγώ +καί +εἶπον +ὁ +ψυχή +ἐγώ +ψυχή +ἔχω +πολύς +ἀγαθός +κεῖμαι +εἰς +ἔτος +πολύς +ἀναπαύω +ἐσθίω +πίνω +εὐφραίνω +δέ +λέγω +αὐτός +ὁ +θεός +ἄφρων +οὗτος +ὁ +νύξ +ὁ +ψυχή +σύ +ἀπαιτέω +ἀπό +σύ +δέ +ὅς +ἑτοιμάζω +τίς +εἰμί +οὕτω +ὁ +θησαυρίζω +αὐτός +καί +μή +εἰς +θεός +πλουτέω +δέ +λέγω +πρός +ὁ +μαθητής +αὐτός +διά +οὗτος +λέγω +σύ +μή +μεριμνάω +ὁ +ψυχή +τίς +ἐσθίω +μηδέ +ὁ +σῶμα +τίς +ἐνδύω +γάρ +ὁ +ψυχή +πολύς +εἰμί +ὁ +τροφή +καί +ὁ +σῶμα +ὁ +ἔνδυμα +κατανοέω +ὁ +κόραξ +ὅτι +οὔτε +σπείρω +οὔτε +θερίζω +ὅς +οὐ +εἰμί +ταμεῖον +οὐδέ +ἀποθήκη +καί +ὁ +θεός +τρέφω +αὐτός +πόσος +μᾶλλον +σύ +διαφέρω +ὁ +πετεινός +δέ +τίς +ἐκ +σύ +μεριμνάω +δύναμαι +ἐπί +ὁ +ἡλικία +αὐτός +προστίθημι +πῆχυς +οὖν +εἰ +οὐδέ +ἐλάχιστος +δύναμαι +τίς +περί +ὁ +λοιπός +μεριμνάω +κατανοέω +ὁ +κρίνον +πῶς +οὔτε +νήθω +οὔτε +ὑφαίνω +δέ +λέγω +σύ +οὐδέ +Σολομών +ἐν +πᾶς +ὁ +δόξα +αὐτός +περιβάλλω +ὡς +εἷς +οὗτος +δέ +εἰ +ἐν +ἀγρός +ὁ +χόρτος +εἰμί +σήμερον +καί +αὔριον +εἰς +κλίβανος +βάλλω +ὁ +θεός +οὕτω +ἀμφιέζω +πόσος +μᾶλλον +σύ +ὀλιγόπιστος +καί +σύ +μή +ζητέω +τίς +ἐσθίω +καί +τίς +πίνω +καί +μή +μετεωρίζομαι +γάρ +οὗτος +πᾶς +ὁ +ἔθνος +ὁ +κόσμος +ἐπιζητέω +δέ +σύ +ὁ +πατήρ +οἶδα +ὅτι +χρῄζω +οὗτος +πλήν +ζητέω +ὁ +βασιλεία +αὐτός +καί +οὗτος +προστίθημι +σύ +μή +φοβέω +ὁ +μικρός +ποίμνιον +ὅτι +εὐδοκέω +ὁ +πατήρ +σύ +δίδωμι +σύ +ὁ +βασιλεία +πωλέω +ὁ +ὑπάρχω +σύ +καί +δίδωμι +ἐλεημοσύνη +ποιέω +ἑαυτοῦ +βαλλάντιον +μή +παλαιόω +θησαυρός +ἀνέκλειπτος +ἐν +ὁ +οὐρανός +ὅπου +κλέπτης +οὐ +ἐγγίζω +οὐδέ +σής +διαφθείρω +γάρ +ὅπου +εἰμί +ὁ +θησαυρός +σύ +ἐκεῖ +καί +ὁ +καρδία +σύ +εἰμί +εἰμί +σύ +ὁ +ὀσφῦς +περιζώννυμι +καί +ὁ +λύχνος +καίω +καί +σύ +ὅμοιος +ἄνθρωπος +προσδέχομαι +ὁ +κύριος +ἑαυτοῦ +πότε +ἀναλύω +ἐκ +ὁ +γάμος +ἵνα +ἔρχομαι +καί +κρούω +εὐθέως +ἀνοίγω +αὐτός +μακάριος +ὁ +δοῦλος (II) +ἐκεῖνος +ὅς +γρηγορέω +ἔρχομαι +ὁ +κύριος +εὑρίσκω +ἀμήν +λέγω +σύ +ὅτι +περιζώννυμι +καί +ἀνακλίνω +αὐτός +καί +παρέρχομαι +διακονέω +αὐτός +κἄν +ἐν +ὁ +δεύτερος +κἄν +ἐν +ὁ +τρίτος +φυλακή +ἔρχομαι +καί +εὑρίσκω +οὕτω +μακάριος +εἰμί +ἐκεῖνος +δέ +οὗτος +γινώσκω +ὅτι +εἰ +οἶδα +ὁ +οἰκοδεσπότης +ποῖος +ὥρα +ὁ +κλέπτης +ἔρχομαι +ἄν +οὐ +ἀφίημι +διορύσσω +ὁ +οἶκος +αὐτός +καί +σύ +γίνομαι +ἕτοιμος +ὅτι +ὅς +ὥρα +οὐ +δοκέω +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +δέ +λέγω +ὁ +Πέτρος +κύριος +πρός +ἐγώ +ὁ +παραβολή +οὗτος +λέγω +ἤ +καί +πρός +πᾶς +καί +λέγω +ὁ +κύριος +ἆρα +τίς +εἰμί +ὁ +πιστός +οἰκονόμος +ὁ +φρόνιμος +ὅς +καθίστημι +ὁ +κύριος +ἐπί +ὁ +θεραπεία +αὐτός +ὁ +δίδωμι +ἐν +καιρός +ὁ +σιτομέτριον +μακάριος +ὁ +δοῦλος (II) +ἐκεῖνος +ὅς +ποιέω +οὕτω +ἔρχομαι +ὁ +κύριος +αὐτός +εὑρίσκω +ἀληθῶς +λέγω +σύ +ὅτι +ἐπί +πᾶς +ὁ +ὑπάρχω +αὐτός +καθίστημι +αὐτός +δέ +ἐάν +λέγω +ὁ +δοῦλος (II) +ἐκεῖνος +ἐν +ὁ +καρδία +αὐτός +χρονίζω +ὁ +κύριος +ἐγώ +ἔρχομαι +καί +ἄρχω +τύπτω +ὁ +παῖς +καί +ὁ +παιδίσκη +τέ +ἐσθίω +καί +πίνω +καί +μεθύσκω +ἥκω +ὁ +κύριος +ὁ +δοῦλος (II) +ἐκεῖνος +ἐν +ἡμέρα +ὅς +οὐ +προσδοκάω +καί +ἐν +ὥρα +ὅς +οὐ +γινώσκω +καί +διχοτομέω +αὐτός +καί +ὁ +μέρος +αὐτός +μετά +ὁ +ἄπιστος +τίθημι +δέ +ἐκεῖνος +ὁ +δοῦλος (II) +ὁ +γινώσκω +ὁ +θέλημα +ὁ +κύριος +αὐτός +καί +μή +ἑτοιμάζω +ἤ +ποιέω +πρός +ὁ +θέλημα +αὐτός +δέρω +πολύς +δέ +ὁ +μή +γινώσκω +δέ +ποιέω +ἄξιος +πληγή +δέρω +ὀλίγος +δέ +πᾶς +ὅς +δίδωμι +πολύς +πολύς +ζητέω +παρά +αὐτός +καί +ὅς +παρατίθημι +πολύς +περισσός +αἰτέω +αὐτός +ἔρχομαι +πῦρ +βάλλω +ἐπί +ὁ +γῆ +καί +τίς +θέλω +εἰ +ἤδη +ἀνάπτω +δέ +βάπτισμα +ἔχω +βαπτίζω +καί +πῶς +συνέχω +ἕως +ὅστις +τελέω +δοκέω +ὅτι +παραγίνομαι +εἰρήνη +δίδωμι +ἐν +ὁ +γῆ +λέγω +σύ +οὐχί +ἀλλά +ἤ +διαμερισμός +γάρ +εἰμί +διαμερίζω +ἀπό +ὁ +νῦν +πέντε +ἐν +εἷς +οἶκος +τρεῖς +ἐπί +δύο +καί +δύο +ἐπί +τρεῖς +διαμερίζω +πατήρ +ἐπί +υἱός +καί +υἱός +ἐπί +πατήρ +μήτηρ +ἐπί +θυγάτηρ +καί +θυγάτηρ +ἐπί +ὁ +μήτηρ +πενθερά +ἐπί +ὁ +νύμφη +αὐτός +καί +νύμφη +ἐπί +ὁ +πενθερά +δέ +λέγω +καί +ὁ +ὄχλος +ὅταν +ὁράω +νεφέλη +ἀνατέλλω +ἐπί +δυσμή +εὐθέως +λέγω +ὅτι +ὄμβρος +ἔρχομαι +καί +γίνομαι +οὕτω +καί +ὅταν +νότος +πνέω +λέγω +ὅτι +καύσων +εἰμί +καί +γίνομαι +ὑποκριτής +ὁ +πρόσωπον +ὁ +γῆ +καί +ὁ +οὐρανός +δοκιμάζω +οἶδα +δέ +ὁ +καιρός +οὗτος +πῶς +οὐ +δοκιμάζω +δέ +τίς +καί +ἀπό +ἑαυτοῦ +οὐ +κρίνω +ὁ +δίκαιος +γάρ +ὡς +ὑπάγω +μετά +ὁ +ἀντίδικος +σύ +ἐπί +ἄρχων +ἐν +ὁ +ὁδός +δίδωμι +ἐργασία +ἀπαλλάσσω +ἀπό +αὐτός +μή +ποτέ +κατασύρω +σύ +πρός +ὁ +κριτής +καί +ὁ +κριτής +σύ +παραδίδωμι +ὁ +πράκτωρ +καί +ὁ +πράκτωρ +σύ +βάλλω +εἰς +φυλακή +λέγω +σύ +οὐ +μή +ἐξέρχομαι +ἐκεῖθεν +ἕως +καί +ὁ +ἔσχατος +λεπτός +ἀποδίδωμι +δέ +πάρειμι +τὶς +ἐν +αὐτός +ὁ +καιρός +ἀπαγγέλλω +αὐτός +περί +ὁ +Γαλιλαῖος +ὅς +ὁ +αἷμα +Πιλᾶτος +μίγνυμι +μετά +ὁ +θυσία +αὐτός +καί +ἀποκρίνομαι +λέγω +αὐτός +δοκέω +ὅτι +ὁ +Γαλιλαῖος +οὗτος +ἁμαρτωλός +παρά +πᾶς +ὁ +Γαλιλαῖος +γίνομαι +ὅτι +οὗτος +πάσχω +οὐχί +λέγω +σύ +ἀλλά +ἐάν +μή +μετανοέω +πᾶς +ὁμοίως +ἀπόλλυμι +ἤ +ἐκεῖνος +ὁ +δέκα +ὀκτώ +ἐπί +ὅς +πίπτω +ὁ +πύργος +ἐν +ὁ +Σιλωάμ +καί +ἀποκτείνω +αὐτός +δοκέω +ὅτι +αὐτός +ὀφειλέτης +γίνομαι +παρά +πᾶς +ὁ +ἄνθρωπος +ὁ +κατοικέω +Ἱεροσόλυμα +οὐχί +λέγω +σύ +ἀλλά +ἐάν +μή +μετανοέω +πᾶς +ὡσαύτως +ἀπόλλυμι +δέ +λέγω +οὗτος +ὁ +παραβολή +συκῆ +ἔχω +τὶς +φυτεύω +ἐν +ὁ +ἀμπελών +αὐτός +καί +ἔρχομαι +ζητέω +καρπός +ἐν +αὐτός +καί +οὐ +εὑρίσκω +δέ +λέγω +πρός +ὁ +ἀμπελουργός +ὁράω +τρεῖς +ἔτος +ἀπό +ὅς +ἔρχομαι +ζητέω +καρπός +ἐν +ὁ +συκῆ +οὗτος +καί +οὐ +εὑρίσκω +ἐκκόπτω +αὐτός +ἵνα +τίς +καί +ὁ +γῆ +καταργέω +δέ +ὁ +ἀποκρίνομαι +λέγω +αὐτός +κύριος +ἀφίημι +αὐτός +καί +οὗτος +ὁ +ἔτος +ἕως +ὅστις +σκάπτω +περί +αὐτός +καί +βάλλω +κόπριον +μέν +κἄν +ποιέω +καρπός +εἰς +ὁ +μέλλω +δέ +εἰ +εἰ δὲ μή +ἐκκόπτω +αὐτός +δέ +εἰμί +διδάσκω +ἐν +εἷς +ὁ +συναγωγή +ἐν +ὁ +σάββατον +καί +ὁράω +γυνή +πνεῦμα +ἀσθένεια +ἔχω +ἔτος +δέκα +ὀκτώ +καί +εἰμί +συγκύπτω +καί +μή +δύναμαι +ἀνακύπτω +εἰς +ὁ +παντελής +δέ +ὁράω +αὐτός +ὁ +Ἰησοῦς +προσφωνέω +καί +λέγω +αὐτός +γυνή +ἀπολύω +ὁ +ἀσθένεια +σύ +καί +ἐπιτίθημι +αὐτός +ὁ +χείρ +καί +παραχρῆμα +ἀνορθόω +καί +δοξάζω +ὁ +θεός +δέ +ἀποκρίνομαι +ὁ +ἀρχισυνάγωγος +ἀγανακτέω +ὅτι +ὁ +σάββατον +θεραπεύω +ὁ +Ἰησοῦς +λέγω +ὁ +ὄχλος +ὅτι +ἕξ +ἡμέρα +εἰμί +ἐν +ὅς +δεῖ +ἐργάζομαι +οὖν +ἐν +αὐτός +ἔρχομαι +θεραπεύω +καί +μή +ὁ +ἡμέρα +ὁ +σάββατον +δέ +ἀποκρίνομαι +αὐτός +ὁ +κύριος +καί +λέγω +ὑποκριτής +οὐ +ἕκαστος +σύ +ὁ +σάββατον +λύω +ὁ +βοῦς +αὐτός +ἤ +ὁ +ὄνος +ἀπό +ὁ +φάτνη +καί +ἀπάγω +ποτίζω +δέ +ὁράω +οὗτος +θυγάτηρ +Ἀβραάμ +εἰμί +ὅς +δέω +ὁ +Σατανᾶς +δέκα +καί +ὀκτώ +ἔτος +λύω +ἀπό +ὁ +δεσμός +οὗτος +ὁ +ἡμέρα +ὁ +σάββατον +οὐ +δεῖ +καί +οὗτος +λέγω +αὐτός +καταισχύνω +πᾶς +ὁ +ἀντίκειμαι +αὐτός +καί +πᾶς +ὁ +ὄχλος +χαίρω +ἐπί +πᾶς +ὁ +ἔνδοξος +ὁ +γίνομαι +ὑπό +αὐτός +οὖν +λέγω +τίς +ὅμοιος +εἰμί +ὁ +βασιλεία +ὁ +θεός +καί +τίς +ὁμοιόω +αὐτός +ὅμοιος +εἰμί +κόκκος +σίναπι +ὅς +λαμβάνω +ἄνθρωπος +βάλλω +εἰς +κῆπος +ἑαυτοῦ +καί +αὐξάνω +καί +γίνομαι +εἰς +δένδρον +καί +ὁ +πετεινός +ὁ +οὐρανός +κατασκηνόω +ἐν +ὁ +κλάδος +αὐτός +καί +πάλιν +λέγω +τίς +ὁμοιόω +ὁ +βασιλεία +ὁ +θεός +ὅμοιος +εἰμί +ζύμη +ὅς +λαμβάνω +γυνή +κρύπτω +εἰς +ἄλευρον +σάτον +τρεῖς +ἕως +ὅς +ζυμόω +ὅλος +καί +διαπορεύομαι +κατά +πόλις +καί +κώμη +διδάσκω +καί +πορεία +ποιέω +εἰς +Ἱεροσόλυμα +δέ +λέγω +τὶς +αὐτός +κύριος +εἰ +ὀλίγος +ὁ +σῴζω +δέ +ὁ +λέγω +πρός +αὐτός +ἀγωνίζομαι +εἰσέρχομαι +διά +ὁ +στενός +θύρα +ὅτι +λέγω +σύ +πολύς +ζητέω +εἰσέρχομαι +καί +οὐ +ἰσχύω +ἀπό +ἄν +ὅς +ἐγείρω +ὁ +οἰκοδεσπότης +καί +ἀποκλείω +ὁ +θύρα +καί +ἄρχω +ἔξω +ἵστημι +καί +κρούω +ὁ +θύρα +λέγω +κύριος +ἀνοίγω +ἐγώ +καί +ἀποκρίνομαι +εἶπον +σύ +οὐ +οἶδα +σύ +πόθεν +εἰμί +τότε +ἄρχω +λέγω +ἐσθίω +ἐνώπιον +σύ +καί +πίνω +καί +ἐν +ὁ +πλατύς +ἐγώ +διδάσκω +καί +εἶπον +λέγω +σύ +οὐ +οἶδα +πόθεν +εἰμί +ἀφίστημι +ἀπό +ἐγώ +πᾶς +ἐργάτης +ἀδικία +ἐκεῖ +εἰμί +ὁ +κλαυθμός +καί +ὁ +βρυγμός +ὁ +ὀδούς +ὅταν +ὁράω +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +καί +πᾶς +ὁ +προφήτης +ἐν +ὁ +βασιλεία +ὁ +θεός +δέ +σύ +ἐκβάλλω +ἔξω +καί +ἥκω +ἀπό +ἀνατολή +καί +δυσμή +καί +ἀπό +βορρᾶς +καί +νότος +καί +ἀνακλίνω +ἐν +ὁ +βασιλεία +ὁ +θεός +καί +ὁράω +εἰμί +ἔσχατος +ὅς +εἰμί +πρῶτος +καί +εἰμί +πρῶτος +ὅς +εἰμί +ἔσχατος +ἐν +αὐτός +ὁ +ὥρα +προσέρχομαι +τὶς +Φαρισαῖος +λέγω +αὐτός +ἐξέρχομαι +καί +πορεύομαι +ἐντεῦθεν +ὅτι +Ἡρῴδης +θέλω +σύ +ἀποκτείνω +καί +λέγω +αὐτός +πορεύομαι +λέγω +ὁ +ἀλώπηξ +οὗτος +ὁράω +ἐκβάλλω +δαιμόνιον +καί +ἴασις +ἀποτελέω +σήμερον +καί +αὔριον +καί +ὁ +τρίτος +τελειόω +πλήν +δεῖ +ἐγώ +σήμερον +καί +αὔριον +καί +ὁ +ἔχω +πορεύομαι +ὅτι +οὐ +ἐνδέχομαι +προφήτης +ἀπόλλυμι +ἔξω +Ἱεροσόλυμα +Ἱεροσόλυμα +Ἱεροσόλυμα +ὁ +ἀποκτείνω +ὁ +προφήτης +καί +λιθοβολέω +ὁ +ἀποστέλλω +πρός +αὐτός +ποσάκις +θέλω +ἐπισυνάγω +ὁ +τέκνον +σύ +ὅς +τρόπος +ὄρνις +ὁ +ἑαυτοῦ +νοσσιά +ὑπό +ὁ +πτέρυξ +καί +οὐ +θέλω +ὁράω +ἀφίημι +σύ +ὁ +οἶκος +σύ +δέ +λέγω +σύ +οὐ +μή +ὁράω +ἐγώ +ἕως +ἥκω +ὅτε +λέγω +εὐλογέω +ὁ +ἔρχομαι +ἐν +ὄνομα +κύριος +καί +γίνομαι +ἐν +ὁ +ἔρχομαι +αὐτός +εἰς +οἶκος +τὶς +ὁ +ἄρχων +ὁ +Φαρισαῖος +σάββατον +ἐσθίω +ἄρτος +καί +αὐτός +εἰμί +παρατηρέω +αὐτός +καί +ὁράω +ἄνθρωπος +τὶς +ὑδρωπικός +εἰμί +ἔμπροσθεν +αὐτός +καί +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +πρός +ὁ +νομικός +καί +Φαρισαῖος +λέγω +ἔξεστι(ν) +ὁ +σάββατον +θεραπεύω +ἤ +οὐ +δέ +ὁ +ἡσυχάζω +καί +ἐπιλαμβάνομαι +ἰάομαι +αὐτός +καί +ἀπολύω +καί +πρός +αὐτός +λέγω +τίς +σύ +υἱός +ἤ +βοῦς +εἰς +φρέαρ +πίπτω +καί +οὐ +εὐθέως +ἀνασπάω +αὐτός +ἐν +ἡμέρα +ὁ +σάββατον +καί +οὐ +ἰσχύω +ἀνταποκρίνομαι +πρός +οὗτος +δέ +λέγω +πρός +ὁ +καλέω +παραβολή +ἐπέχω +πῶς +ὁ +πρωτοκλισία +ἐκλέγω +λέγω +πρός +αὐτός +ὅταν +καλέω +ὑπό +τὶς +εἰς +γάμος +μή +κατακλίνω +εἰς +ὁ +πρωτοκλισία +μή +ποτέ +ἔντιμος +σύ +εἰμί +καλέω +ὑπό +αὐτός +καί +ἔρχομαι +ὁ +σύ +καί +αὐτός +καλέω +εἶπον +σύ +δίδωμι +οὗτος +τόπος +καί +τότε +ἄρχω +μετά +αἰσχύνη +ὁ +ἔσχατος +τόπος +κατέχω +ἀλλά +ὅταν +καλέω +πορεύομαι +ἀναπίπτω +εἰς +ὁ +ἔσχατος +τόπος +ἵνα +ὅταν +ἔρχομαι +ὁ +καλέω +σύ +εἶπον +σύ +φίλος +προσαναβαίνω +ἀνώτερος +τότε +εἰμί +σύ +δόξα +ἐνώπιον +πᾶς +ὁ +συνανάκειμαι +σύ +ὅτι +πᾶς +ὁ +ὑψόω +ἑαυτοῦ +ταπεινόω +καί +ὁ +ταπεινόω +ἑαυτοῦ +ὑψόω +δέ +λέγω +καί +ὁ +καλέω +αὐτός +ὅταν +ποιέω +ἄριστον +ἤ +δεῖπνον +μή +φωνέω +ὁ +φίλος +σύ +μηδέ +ὁ +ἀδελφός +σύ +μηδέ +ὁ +συγγενής +σύ +μηδέ +γείτων +πλούσιος +μή +ποτέ +καί +αὐτός +ἀντικαλέω +σύ +καί +γίνομαι +ἀνταπόδομα +σύ +ἀλλά +ὅταν +δοχή +ποιέω +καλέω +πτωχός +ἀνάπηρος +χωλός +τυφλός +καί +μακάριος +εἰμί +ὅτι +οὐ +ἔχω +ἀνταποδίδωμι +σύ +γάρ +ἀνταποδίδωμι +σύ +ἐν +ὁ +ἀνάστασις +ὁ +δίκαιος +δέ +τὶς +ὁ +συνανάκειμαι +ἀκούω +οὗτος +λέγω +αὐτός +μακάριος +ὅστις +ἐσθίω +ἄρτος +ἐν +ὁ +βασιλεία +ὁ +θεός +δέ +ὁ +λέγω +αὐτός +ἄνθρωπος +τὶς +ποιέω +δεῖπνον +μέγας +καί +καλέω +πολύς +καί +ἀποστέλλω +ὁ +δοῦλος (II) +αὐτός +ὁ +ὥρα +ὁ +δεῖπνον +λέγω +ὁ +καλέω +ἔρχομαι +ὅτι +ἤδη +ἕτοιμος +εἰμί +καί +ἄρχω +ἀπό +εἷς +πᾶς +παραιτέομαι +ὁ +πρῶτος +λέγω +αὐτός +ἀγρός +ἀγοράζω +καί +ἔχω +ἀνάγκη +ἐξέρχομαι +ὁράω +αὐτός +ἐρωτάω +σύ +ἔχω +ἐγώ +παραιτέομαι +καί +ἕτερος +λέγω +ζεῦγος +βοῦς +πέντε +ἀγοράζω +καί +πορεύομαι +δοκιμάζω +αὐτός +ἐρωτάω +σύ +ἔχω +ἐγώ +παραιτέομαι +καί +ἕτερος +λέγω +γυνή +γαμέω +καί +διά +οὗτος +οὐ +δύναμαι +ἔρχομαι +καί +παραγίνομαι +ὁ +δοῦλος (II) +ἀπαγγέλλω +ὁ +κύριος +αὐτός +οὗτος +τότε +ὀργίζω +ὁ +οἰκοδεσπότης +λέγω +ὁ +δοῦλος (II) +αὐτός +ἐξέρχομαι +ταχέως +εἰς +ὁ +πλατύς +καί +ῥύμη +ὁ +πόλις +καί +ὁ +πτωχός +καί +ἀνάπηρος +καί +τυφλός +καί +χωλός +εἰσάγω +ὧδε +καί +λέγω +ὁ +δοῦλος (II) +κύριος +γίνομαι +ὅς +ἐπιτάσσω +καί +ἔτι +τόπος +εἰμί +καί +λέγω +ὁ +κύριος +πρός +ὁ +δοῦλος (II) +ἐξέρχομαι +εἰς +ὁ +ὁδός +καί +φραγμός +καί +ἀναγκάζω +εἰσέρχομαι +ἵνα +γεμίζω +ἐγώ +ὁ +οἶκος +γάρ +λέγω +σύ +ὅτι +οὐδείς +ὁ +ἀνήρ +ἐκεῖνος +ὁ +καλέω +γεύομαι +ἐγώ +ὁ +δεῖπνον +δέ +συμπορεύομαι +αὐτός +ὄχλος +πολύς +καί +στρέφω +λέγω +πρός +αὐτός +εἰ +τὶς +ἔρχομαι +πρός +ἐγώ +καί +οὐ +μισέω +ὁ +πατήρ +αὐτός +καί +ὁ +μήτηρ +καί +ὁ +γυνή +καί +ὁ +τέκνον +καί +ὁ +ἀδελφός +καί +ὁ +ἀδελφή +τέ +ἔτι +καί +ὁ +ψυχή +ἑαυτοῦ +οὐ +δύναμαι +εἰμί +ἐγώ +μαθητής +ὅστις +οὐ +βαστάζω +ὁ +σταυρός +ἑαυτοῦ +καί +ἔρχομαι +ὀπίσω +ἐγώ +οὐ +δύναμαι +εἰμί +ἐγώ +μαθητής +γάρ +οὐχί +τίς +ἐκ +σύ +θέλω +πύργος +οἰκοδομέω +πρῶτος +καθίζω +ψηφίζω +ὁ +δαπάνη +εἰ +ἔχω +εἰς +ἀπαρτισμός +ἵνα +μή +ποτέ +τίθημι +αὐτός +θεμέλιος +καί +μή +ἰσχύω +ἐκτελέω +πᾶς +ὁ +θεωρέω +ἄρχω +αὐτός +ἐμπαίζω +λέγω +ὅτι +οὗτος +ὁ +ἄνθρωπος +ἄρχω +οἰκοδομέω +καί +οὐ +ἰσχύω +ἐκτελέω +ἤ +οὐχί +τίς +βασιλεύς +πορεύομαι +ἕτερος +βασιλεύς +συμβάλλω +εἰς +πόλεμος +καθίζω +πρῶτος +βουλεύω +εἰ +δυνατός +εἰμί +ἐν +δέκα +χιλιάς +ὑπαντάω +ὁ +μετά +εἴκοσι +χιλιάς +ἔρχομαι +ἐπί +αὐτός +δέ +εἰ +εἰ δὲ μή +ἔτι +αὐτός +πόρρω +εἰμί +πρεσβεία +ἀποστέλλω +ἐρωτάω +ὁ +πρός +εἰρήνη +οὖν +οὕτω +πᾶς +ἐκ +σύ +ὅς +οὐ +ἀποτάσσω +πᾶς +ὁ +ἑαυτοῦ +ὑπάρχω +οὐ +δύναμαι +εἰμί +ἐγώ +μαθητής +οὖν +καλός +ὁ +ἅλας +δέ +ἐάν +καί +ὁ +ἅλας +μωραίνω +ἐν +τίς +ἀρτύω +οὔτε +εἰς +γῆ +οὔτε +εἰς +κοπρία +εὔθετος +εἰμί +ἔξω +βάλλω +αὐτός +ὁ +ἔχω +οὖς +ἀκούω +ἀκούω +δέ +εἰμί +ἐγγίζω +αὐτός +πᾶς +ὁ +τελώνης +καί +ὁ +ἁμαρτωλός +ἀκούω +αὐτός +καί +διαγογγύζω +τέ +ὁ +Φαρισαῖος +καί +ὁ +γραμματεύς +λέγω +ὅτι +οὗτος +ἁμαρτωλός +προσδέχομαι +καί +συνεσθίω +αὐτός +δέ +λέγω +πρός +αὐτός +ὁ +παραβολή +οὗτος +λέγω +τίς +ἄνθρωπος +ἐκ +σύ +ἔχω +ἑκατόν +πρόβατον +καί +ἀπόλλυμι +ἐκ +αὐτός +εἷς +οὐ +καταλείπω +ὁ +ἐνενήκοντα +ἐννέα +ἐν +ὁ +ἔρημος +καί +πορεύομαι +ἐπί +ὁ +ἀπόλλυμι +ἕως +εὑρίσκω +αὐτός +καί +εὑρίσκω +ἐπιτίθημι +ἐπί +ὁ +ὦμος +αὐτός +χαίρω +καί +ἔρχομαι +εἰς +ὁ +οἶκος +συγκαλέω +ὁ +φίλος +καί +ὁ +γείτων +λέγω +αὐτός +συγχαίρω +ἐγώ +ὅτι +εὑρίσκω +ὁ +πρόβατον +ἐγώ +ὁ +ἀπόλλυμι +λέγω +σύ +ὅτι +οὕτω +χαρά +ἐν +ὁ +οὐρανός +εἰμί +ἐπί +εἷς +ἁμαρτωλός +μετανοέω +ἤ +ἐπί +ἐνενήκοντα +ἐννέα +δίκαιος +ὅστις +οὐ +χρεία +μετάνοια +ἔχω +ἤ +τίς +γυνή +δραχμή +δέκα +ἔχω +ἐάν +ἀπόλλυμι +δραχμή +εἷς +οὐχί +ἅπτω +λύχνος +καί +σαρόω +ὁ +οἰκία +καί +ζητέω +ἐπιμελῶς +ἕως +ὅς +εὑρίσκω +καί +εὑρίσκω +συγκαλέω +ὁ +φίλος +καί +γείτων +λέγω +συγχαίρω +ἐγώ +ὅτι +εὑρίσκω +ὁ +δραχμή +ὅς +ἀπόλλυμι +οὕτω +λέγω +σύ +γίνομαι +χαρά +ἐνώπιον +ὁ +ἄγγελος +ὁ +θεός +ἐπί +εἷς +ἁμαρτωλός +μετανοέω +δέ +λέγω +ἄνθρωπος +τὶς +ἔχω +δύο +υἱός +καί +λέγω +ὁ +νέος +αὐτός +ὁ +πατήρ +πατήρ +δίδωμι +ἐγώ +ὁ +ἐπιβάλλω +μέρος +ὁ +οὐσία +δέ +ὁ +διαιρέω +αὐτός +ὁ +βίος +καί +μετά +οὐ +πολύς +ἡμέρα +συνάγω +πᾶς +ὁ +νέος +υἱός +ἀποδημέω +εἰς +χώρα +μακρός +καί +ἐκεῖ +διασκορπίζω +ὁ +οὐσία +αὐτός +ζάω +ἀσώτως +δέ +δαπανάω +αὐτός +πᾶς +γίνομαι +λιμός +ἰσχυρός +κατά +ὁ +χώρα +ἐκεῖνος +καί +αὐτός +ἄρχω +ὑστερέω +καί +πορεύομαι +κολλάω +εἷς +ὁ +πολίτης +ὁ +χώρα +ἐκεῖνος +καί +πέμπω +αὐτός +εἰς +ὁ +ἀγρός +αὐτός +βόσκω +χοῖρος +καί +ἐπιθυμέω +γεμίζω +ὁ +κοιλία +αὐτός +ἐκ +ὁ +κεράτιον +ὅς +ἐσθίω +ὁ +χοῖρος +καί +οὐδείς +δίδωμι +αὐτός +δέ +εἰς +ἑαυτοῦ +ἔρχομαι +φημί +πόσος +μίσθιος +ὁ +πατήρ +ἐγώ +περισσεύω +ἄρτος +δέ +ἐγώ +λιμός +ὧδε +ἀπόλλυμι +ἀνίστημι +πορεύομαι +πρός +ὁ +πατήρ +ἐγώ +καί +εἶπον +αὐτός +πατήρ +ἁμαρτάνω +εἰς +ὁ +οὐρανός +καί +ἐνώπιον +σύ +οὐκέτι +εἰμί +ἄξιος +καλέω +υἱός +σύ +ποιέω +ἐγώ +ὡς +εἷς +ὁ +μίσθιος +σύ +καί +ἀνίστημι +ἔρχομαι +πρός +ὁ +πατήρ +ἑαυτοῦ +δέ +ἔτι +αὐτός +μακράν +ἀπέχω +ὁράω +αὐτός +ὁ +πατήρ +αὐτός +καί +σπλαγχνίζομαι +καί +τρέχω +ἐπιπίπτω +ἐπί +ὁ +τράχηλος +αὐτός +καί +καταφιλέω +αὐτός +δέ +λέγω +ὁ +υἱός +αὐτός +πατήρ +ἁμαρτάνω +εἰς +ὁ +οὐρανός +καί +ἐνώπιον +σύ +οὐκέτι +εἰμί +ἄξιος +καλέω +υἱός +σύ +δέ +λέγω +ὁ +πατήρ +πρός +ὁ +δοῦλος (II) +αὐτός +ταχύς +ἐκφέρω +στολή +ὁ +πρῶτος +καί +ἐνδύω +αὐτός +καί +δίδωμι +δακτύλιος +εἰς +ὁ +χείρ +αὐτός +καί +ὑπόδημα +εἰς +ὁ +πούς +καί +φέρω +ὁ +μόσχος +ὁ +σιτευτός +θύω +καί +ἐσθίω +εὐφραίνω +ὅτι +οὗτος +ὁ +υἱός +ἐγώ +νεκρός +εἰμί +καί +ἀναζάω +εἰμί +ἀπόλλυμι +καί +εὑρίσκω +καί +ἄρχω +εὐφραίνω +δέ +εἰμί +ὁ +υἱός +αὐτός +ὁ +πρεσβύτερος +ἐν +ἀγρός +καί +ὡς +ἔρχομαι +ἐγγίζω +ὁ +οἰκία +ἀκούω +συμφωνία +καί +χορός +καί +προσκαλέω +εἷς +ὁ +παῖς +πυνθάνομαι +ἄν +τίς +εἰμί +οὗτος +δέ +ὁ +λέγω +αὐτός +ὅτι +ὁ +ἀδελφός +σύ +ἥκω +καί +θύω +ὁ +πατήρ +σύ +ὁ +μόσχος +ὁ +σιτευτός +ὅτι +ὑγιαίνω +αὐτός +ἀπολαμβάνω +δέ +ὀργίζω +καί +οὐ +θέλω +εἰσέρχομαι +δέ +ὁ +πατήρ +αὐτός +ἐξέρχομαι +παρακαλέω +αὐτός +δέ +ὁ +ἀποκρίνομαι +λέγω +ὁ +πατήρ +ὁράω +τοσοῦτος +ἔτος +δουλεύω +σύ +καί +οὐδέποτε +ἐντολή +σύ +παρέρχομαι +καί +ἐγώ +οὐδέποτε +δίδωμι +ἔριφος +ἵνα +μετά +ὁ +φίλος +ἐγώ +εὐφραίνω +δέ +ὅτε +ὁ +υἱός +σύ +οὗτος +ὁ +κατεσθίω +σύ +ὁ +βίος +μετά +πόρνη +ἔρχομαι +θύω +αὐτός +ὁ +σιτευτός +μόσχος +δέ +ὁ +λέγω +αὐτός +τέκνον +σύ +πάντοτε +μετά +ἐγώ +εἰμί +καί +πᾶς +ὁ +ἐμός +σός +εἰμί +δέ +εὐφραίνω +καί +χαίρω +δεῖ +ὅτι +ὁ +ἀδελφός +σύ +οὗτος +νεκρός +εἰμί +καί +ζάω +καί +ἀπόλλυμι +καί +εὑρίσκω +δέ +λέγω +καί +πρός +ὁ +μαθητής +ἄνθρωπος +τὶς +εἰμί +πλούσιος +ὅς +ἔχω +οἰκονόμος +καί +οὗτος +διαβάλλω +αὐτός +ὡς +διασκορπίζω +ὁ +ὑπάρχω +αὐτός +καί +φωνέω +αὐτός +λέγω +αὐτός +τίς +οὗτος +ἀκούω +περί +σύ +ἀποδίδωμι +ὁ +λόγος +ὁ +οἰκονομία +σύ +γάρ +οὐ +δύναμαι +ἔτι +οἰκονομέω +δέ +λέγω +ἐν +ἑαυτοῦ +ὁ +οἰκονόμος +τίς +ποιέω +ὅτι +ὁ +κύριος +ἐγώ +ἀφαιρέω +ὁ +οἰκονομία +ἀπό +ἐγώ +σκάπτω +οὐ +ἰσχύω +ἐπαιτέω +αἰσχύνω +γινώσκω +τίς +ποιέω +ἵνα +ὅταν +μεθίστημι +ἐκ +ὁ +οἰκονομία +δέχομαι +ἐγώ +εἰς +ὁ +οἶκος +ἑαυτοῦ +καί +προσκαλέω +εἷς +ἕκαστος +ὁ +χρεοφειλέτης +ὁ +κύριος +ἑαυτοῦ +λέγω +ὁ +πρῶτος +πόσος +ὀφείλω +ὁ +κύριος +ἐγώ +δέ +ὁ +λέγω +ἑκατόν +βάτος (II) +ἔλαιον +δέ +ὁ +λέγω +αὐτός +δέχομαι +σύ +ὁ +γράμμα +καί +καθίζω +ταχέως +γράφω +πεντήκοντα +ἔπειτα +ἕτερος +λέγω +δέ +σύ +πόσος +ὀφείλω +δέ +ὁ +λέγω +ἑκατόν +κόρος +σῖτος +λέγω +αὐτός +δέχομαι +σύ +ὁ +γράμμα +καί +γράφω +ὀγδοήκοντα +καί +ἐπαινέω +ὁ +κύριος +ὁ +οἰκονόμος +ὁ +ἀδικία +ὅτι +φρονίμως +ποιέω +ὅτι +ὁ +υἱός +ὁ +αἰών +οὗτος +φρόνιμος +ὑπέρ +ὁ +υἱός +ὁ +φῶς +εἰς +ὁ +γενεά +ὁ +ἑαυτοῦ +εἰμί +καί +ἐγώ +σύ +λέγω +ἑαυτοῦ +ποιέω +φίλος +ἐκ +ὁ +μαμωνᾶς +ὁ +ἀδικία +ἵνα +ὅταν +ἐκλείπω +δέχομαι +σύ +εἰς +ὁ +αἰώνιος +σκηνή +ὁ +πιστός +ἐν +ἐλάχιστος +καί +ἐν +πολύς +πιστός +εἰμί +καί +ὁ +ἐν +ἐλάχιστος +ἄδικος +καί +ἐν +πολύς +ἄδικος +εἰμί +οὖν +εἰ +ἐν +ὁ +ἄδικος +μαμωνᾶς +πιστός +οὐ +γίνομαι +ὁ +ἀληθινός +τίς +σύ +πιστεύω +καί +εἰ +ἐν +ὁ +ἀλλότριος +πιστός +οὐ +γίνομαι +ὁ +ἡμέτερος +τίς +δίδωμι +σύ +οὐδείς +οἰκέτης +δύναμαι +δύο +κύριος +δουλεύω +γάρ +ἤ +ὁ +εἷς +μισέω +καί +ὁ +ἕτερος +ἀγαπάω +ἤ +εἷς +ἀντέχω +καί +ὁ +ἕτερος +καταφρονέω +οὐ +δύναμαι +θεός +δουλεύω +καί +μαμωνᾶς +δέ +ἀκούω +οὗτος +πᾶς +ὁ +Φαρισαῖος +φιλάργυρος +ὑπάρχω +καί +ἐκμυκτηρίζω +αὐτός +καί +λέγω +αὐτός +σύ +εἰμί +ὁ +δικαιόω +ἑαυτοῦ +ἐνώπιον +ὁ +ἄνθρωπος +δέ +ὁ +θεός +γινώσκω +ὁ +καρδία +σύ +ὅτι +ὁ +ἐν +ἄνθρωπος +ὑψηλός +βδέλυγμα +ἐνώπιον +ὁ +θεός +ὁ +νόμος +καί +ὁ +προφήτης +μέχρι +Ἰωάννης +ἀπό +τότε +ὁ +βασιλεία +ὁ +θεός +εὐαγγελίζω +καί +πᾶς +εἰς +αὐτός +βιάζω +δέ +εὔκοπος +εἰμί +ὁ +οὐρανός +καί +ὁ +γῆ +παρέρχομαι +ἤ +ὁ +νόμος +εἷς +κεραία +πίπτω +πᾶς +ὁ +ἀπολύω +ὁ +γυνή +αὐτός +καί +γαμέω +ἕτερος +μοιχεύω +καί +ὁ +ἀπολύω +ἀπό +ἀνήρ +γαμέω +μοιχεύω +δέ +ἄνθρωπος +τὶς +εἰμί +πλούσιος +καί +ἐνδιδύσκω +πορφύρα +καί +βύσσος +εὐφραίνω +κατά +ἡμέρα +λαμπρῶς +δέ +πτωχός +τὶς +ὄνομα +Λάζαρος +βάλλω +πρός +ὁ +πυλών +αὐτός +ἑλκόω +καί +ἐπιθυμέω +χορτάζω +ἀπό +ὁ +πίπτω +ἀπό +ὁ +τράπεζα +ὁ +πλούσιος +ἀλλά +καί +ὁ +κύων +ἔρχομαι +ἐπιλείχω +ὁ +ἕλκος +αὐτός +δέ +γίνομαι +ἀποθνῄσκω +ὁ +πτωχός +καί +ἀποφέρω +αὐτός +ὑπό +ὁ +ἄγγελος +εἰς +ὁ +κόλπος +Ἀβραάμ +δέ +ἀποθνῄσκω +καί +ὁ +πλούσιος +καί +θάπτω +καί +ἐν +ὁ +ᾅδης +ἐπαίρω +ὁ +ὀφθαλμός +αὐτός +ὑπάρχω +ἐν +βάσανος +ὁράω +Ἀβραάμ +ἀπό +μακρόθεν +καί +Λάζαρος +ἐν +ὁ +κόλπος +αὐτός +καί +αὐτός +φωνέω +λέγω +πατήρ +Ἀβραάμ +ἐλεέω +ἐγώ +καί +πέμπω +Λάζαρος +ἵνα +βάπτω +ὁ +ἄκρον +ὁ +δάκτυλος +αὐτός +ὕδωρ +καί +καταψύχω +ὁ +γλῶσσα +ἐγώ +ὅτι +ὀδυνάω +ἐν +ὁ +φλόξ +οὗτος +δέ +λέγω +Ἀβραάμ +τέκνον +μιμνῄσκω +ὅτι +ἀπολαμβάνω +ὁ +ἀγαθός +σύ +ἐν +ὁ +ζωή +σύ +καί +Λάζαρος +ὁμοίως +ὁ +κακός +δέ +νῦν +ὧδε +παρακαλέω +δέ +σύ +ὀδυνάω +καί +ἐν +πᾶς +οὗτος +μεταξύ +ἐγώ +καί +σύ +χάσμα +μέγας +στηρίζω +ὅπως +ὁ +θέλω +διαβαίνω +ἔνθεν +πρός +σύ +μή +δύναμαι +μηδέ +ἐκεῖθεν +πρός +ἐγώ +διαπεράω +δέ +λέγω +οὖν +ἐρωτάω +σύ +πατήρ +ἵνα +πέμπω +αὐτός +εἰς +ὁ +οἶκος +ὁ +πατήρ +ἐγώ +γάρ +ἔχω +πέντε +ἀδελφός +ὅπως +διαμαρτύρομαι +αὐτός +ἵνα +μή +καί +αὐτός +ἔρχομαι +εἰς +ὁ +τόπος +οὗτος +ὁ +βάσανος +δέ +λέγω +Ἀβραάμ +ἔχω +Μωϋσῆς +καί +ὁ +προφήτης +ἀκούω +αὐτός +δέ +ὁ +λέγω +οὐχί +πατήρ +Ἀβραάμ +ἀλλά +ἐάν +τὶς +ἀπό +νεκρός +πορεύομαι +πρός +αὐτός +μετανοέω +δέ +λέγω +αὐτός +εἰ +Μωϋσῆς +καί +ὁ +προφήτης +οὐ +ἀκούω +οὐδέ +ἐάν +τὶς +ἐκ +νεκρός +ἀνίστημι +πείθω +δέ +λέγω +πρός +ὁ +μαθητής +αὐτός +ἀνένδεκτος +εἰμί +ὁ +ὁ +σκάνδαλον +μή +ἔρχομαι +δέ +οὐαί +διά +ὅς +ἔρχομαι +λυσιτελέω +αὐτός +εἰ +λίθος +μυλικός +περίκειμαι +περί +ὁ +τράχηλος +αὐτός +καί +ῥίπτω +εἰς +ὁ +θάλασσα +ἤ +ἵνα +σκανδαλίζω +ὁ +μικρός +οὗτος +εἷς +προσέχω +ἑαυτοῦ +ἐάν +ἁμαρτάνω +ὁ +ἀδελφός +σύ +ἐπιτιμάω +αὐτός +καί +ἐάν +μετανοέω +ἀφίημι +αὐτός +καί +ἐάν +ἑπτάκις +ὁ +ἡμέρα +ἁμαρτάνω +εἰς +σύ +καί +ἑπτάκις +ἐπιστρέφω +πρός +σύ +λέγω +μετανοέω +ἀφίημι +αὐτός +καί +λέγω +ὁ +ἀπόστολος +ὁ +κύριος +προστίθημι +ἐγώ +πίστις +δέ +λέγω +ὁ +κύριος +εἰ +ἔχω +πίστις +ὡς +κόκκος +σίναπι +ἄν +λέγω +ὁ +συκάμινος +οὗτος +ἐκριζόω +καί +φυτεύω +ἐν +ὁ +θάλασσα +καί +ἄν +ὑπακούω +σύ +δέ +τίς +ἐκ +σύ +ἔχω +δοῦλος (II) +ἀροτριάω +ἤ +ποιμαίνω +ὅς +εἰσέρχομαι +ἐκ +ὁ +ἀγρός +εἶπον +αὐτός +εὐθέως +παρέρχομαι +ἀναπίπτω +ἀλλά +οὐχί +εἶπον +αὐτός +ἑτοιμάζω +τίς +δειπνέω +καί +περιζώννυμι +διακονέω +ἐγώ +ἕως +ἐσθίω +καί +πίνω +καί +μετά +οὗτος +ἐσθίω +καί +πίνω +σύ +μή +ἔχω +χάρις +ὁ +δοῦλος (II) +ὅτι +ποιέω +ὁ +διατάσσω +οὕτω +καί +σύ +ὅταν +ποιέω +πᾶς +ὁ +διατάσσω +σύ +λέγω +ὅτι +δοῦλος (II) +ἀχρεῖος +εἰμί +ὅς +ποιέω +ὀφείλω +ποιέω +καί +γίνομαι +ἐν +ὁ +πορεύομαι +εἰς +Ἱεροσόλυμα +καί +αὐτός +διέρχομαι +διά +μέσος +Σαμάρεια +καί +Γαλιλαία +καί +εἰσέρχομαι +αὐτός +εἰς +τὶς +κώμη +ἀπαντάω +δέκα +λεπρός +ἀνήρ +ὅς +ἵστημι +πόρρωθεν +καί +αὐτός +αἴρω +φωνή +λέγω +Ἰησοῦς +ἐπιστάτης +ἐλεέω +ἐγώ +καί +ὁράω +λέγω +αὐτός +πορεύομαι +ἐπιδείκνυμι +ἑαυτοῦ +ὁ +ἱερεύς +καί +γίνομαι +ἐν +ὁ +ὑπάγω +αὐτός +καθαρίζω +δέ +εἷς +ἐκ +αὐτός +ὁράω +ὅτι +ἰάομαι +ὑποστρέφω +μετά +φωνή +μέγας +δοξάζω +ὁ +θεός +καί +πίπτω +ἐπί +πρόσωπον +παρά +ὁ +πούς +αὐτός +εὐχαριστέω +αὐτός +καί +αὐτός +εἰμί +Σαμαρίτης +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +οὐ +ὁ +δέκα +καθαρίζω +δέ +ὁ +ἐννέα +ποῦ +οὐ +εὑρίσκω +ὑποστρέφω +δίδωμι +δόξα +ὁ +θεός +εἰ +μή +ὁ +ἀλλογενής +οὗτος +καί +λέγω +αὐτός +ἀνίστημι +πορεύομαι +ὁ +πίστις +σύ +σῴζω +σύ +δέ +ἐπερωτάω +ὑπό +ὁ +Φαρισαῖος +πότε +ἔρχομαι +ὁ +βασιλεία +ὁ +θεός +ἀποκρίνομαι +αὐτός +καί +λέγω +οὐ +ἔρχομαι +ὁ +βασιλεία +ὁ +θεός +μετά +παρατήρησις +οὐδέ +εἶπον +ὁράω +ὧδε +ἤ +ἐκεῖ +γάρ +ὁράω +ὁ +βασιλεία +ὁ +θεός +ἐντός +σύ +εἰμί +δέ +λέγω +πρός +ὁ +μαθητής +ἔρχομαι +ἡμέρα +ὅτε +ἐπιθυμέω +εἷς +ὁ +ἡμέρα +ὁ +υἱός +ὁ +ἄνθρωπος +ὁράω +καί +οὐ +ὁράω +καί +εἶπον +σύ +ὁράω +ἐκεῖ +ὁράω +ὧδε +μή +ἀπέρχομαι +μηδέ +διώκω +γάρ +ὥσπερ +ὁ +ἀστραπή +ἀστράπτω +ἐκ +ὁ +ὑπό +ὁ +οὐρανός +εἰς +ὁ +ὑπό +οὐρανός +λάμπω +οὕτω +εἰμί +ὁ +υἱός +ὁ +ἄνθρωπος +ἐν +ὁ +ἡμέρα +αὐτός +δέ +δεῖ +πρῶτος +αὐτός +πολύς +πάσχω +καί +ἀποδοκιμάζω +ἀπό +ὁ +γενεά +οὗτος +καί +καθώς +γίνομαι +ἐν +ὁ +ἡμέρα +Νῶε +οὕτω +εἰμί +καί +ἐν +ὁ +ἡμέρα +ὁ +υἱός +ὁ +ἄνθρωπος +ἐσθίω +πίνω +γαμέω +γαμίζω +ἄχρι +ὅς +ἡμέρα +εἰσέρχομαι +Νῶε +εἰς +ὁ +κιβωτός +καί +ἔρχομαι +ὁ +κατακλυσμός +καί +ἀπόλλυμι +πᾶς +καθώς +ὁμοίως +γίνομαι +ἐν +ὁ +ἡμέρα +Λώτ +ἐσθίω +πίνω +ἀγοράζω +πωλέω +φυτεύω +οἰκοδομέω +δέ +ὅς +ἡμέρα +ἐξέρχομαι +Λώτ +ἀπό +Σόδομα +βρέχω +πῦρ +καί +θεῖον +ἀπό +οὐρανός +καί +ἀπόλλυμι +πᾶς +κατά +ὁ +αὐτός +εἰμί +ὅς +ἡμέρα +ὁ +υἱός +ὁ +ἄνθρωπος +ἀποκαλύπτω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +ὅς +εἰμί +ἐπί +ὁ +δῶμα +καί +ὁ +σκεῦος +αὐτός +ἐν +ὁ +οἰκία +μή +καταβαίνω +αἴρω +αὐτός +καί +ὁ +ἐν +ἀγρός +ὁμοίως +μή +ἐπιστρέφω +εἰς +ὁ +ὀπίσω +μνημονεύω +ὁ +γυνή +Λώτ +ἐάν +ὅς +ζητέω +ὁ +ψυχή +αὐτός +περιποιέω +ἀπόλλυμι +αὐτός +καί +ἄν +ὅς +ἀπόλλυμι +ζῳογονέω +αὐτός +λέγω +σύ +οὗτος +ὁ +νύξ +εἰμί +δύο +ἐπί +κλίνη +εἷς +ὁ +εἷς +παραλαμβάνω +καί +ὁ +ἕτερος +ἀφίημι +εἰμί +ἀλήθω +δύο +ἐπί +ὁ +αὐτός +ὁ +εἷς +παραλαμβάνω +δέ +ὁ +ἕτερος +ἀφίημι +καί +ἀποκρίνομαι +λέγω +αὐτός +ποῦ +κύριος +δέ +ὁ +λέγω +αὐτός +ὅπου +ὁ +σῶμα +ἐκεῖ +καί +ὁ +ἀετός +ἐπισυνάγω +δέ +λέγω +παραβολή +αὐτός +πρός +ὁ +δεῖ +πάντοτε +προσεύχομαι +αὐτός +καί +μή +ἐγκακέω +λέγω +κριτής +τὶς +εἰμί +ἐν +τὶς +πόλις +ὁ +θεός +μή +φοβέω +καί +ἄνθρωπος +μή +ἐντρέπω +δέ +χῆρος +εἰμί +ἐν +ὁ +πόλις +ἐκεῖνος +καί +ἔρχομαι +πρός +αὐτός +λέγω +ἐκδικέω +ἐγώ +ἀπό +ὁ +ἀντίδικος +ἐγώ +καί +οὐ +θέλω +ἐπί +χρόνος +δέ +μετά +οὗτος +λέγω +ἐν +ἑαυτοῦ +εἰ +καί +ὁ +θεός +οὐ +φοβέω +οὐδέ +ἄνθρωπος +ἐντρέπω +γέ +διά +ὁ +παρέχω +ἐγώ +κόπος +ὁ +χῆρος +οὗτος +ἐκδικέω +αὐτός +ἵνα +μή +εἰς +τέλος +ἔρχομαι +ὑπωπιάζω +ἐγώ +δέ +λέγω +ὁ +κύριος +ἀκούω +τίς +ὁ +κριτής +ὁ +ἀδικία +λέγω +δέ +οὐ +μή +ὁ +θεός +ποιέω +ὁ +ἐκδίκησις +ὁ +ἐκλεκτός +αὐτός +ὁ +βοάω +αὐτός +ἡμέρα +καί +νύξ +καί +μακροθυμέω +ἐπί +αὐτός +λέγω +σύ +ὅτι +ποιέω +ὁ +ἐκδίκησις +αὐτός +ἐν +τάχος +πλήν +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἆρα +εὑρίσκω +ὁ +πίστις +ἐπί +ὁ +γῆ +δέ +λέγω +καί +πρός +τὶς +ὁ +πείθω +ἐπί +ἑαυτοῦ +ὅτι +εἰμί +δίκαιος +καί +ἐξουθενέω +ὁ +λοιπός +ὁ +παραβολή +οὗτος +ἄνθρωπος +δύο +ἀναβαίνω +εἰς +ὁ +ἱερός +προσεύχομαι +ὁ +εἷς +Φαρισαῖος +καί +ὁ +ἕτερος +τελώνης +ὁ +Φαρισαῖος +ἵστημι +οὗτος +πρός +ἑαυτοῦ +προσεύχομαι +ὁ +θεός +εὐχαριστέω +σύ +ὅτι +οὐ +εἰμί +ὥσπερ +ὁ +λοιπός +ὁ +ἄνθρωπος +ἅρπαξ +ἄδικος +μοιχός +ἤ +ὡς +καί +οὗτος +ὁ +τελώνης +νηστεύω +δίς +ὁ +σάββατον +ἀποδεκατεύω +πᾶς +ὅσος +κτάομαι +δέ +ὁ +τελώνης +μακρόθεν +ἵστημι +οὐ +θέλω +οὐδέ +ὁ +ὀφθαλμός +ἐπαίρω +εἰς +ὁ +οὐρανός +ἀλλά +τύπτω +ὁ +στῆθος +αὐτός +λέγω +ὁ +θεός +ἱλάσκομαι +ἐγώ +ὁ +ἁμαρτωλός +λέγω +σύ +καταβαίνω +οὗτος +δικαιόω +εἰς +ὁ +οἶκος +αὐτός +παρά +ἐκεῖνος +ὅτι +πᾶς +ὁ +ὑψόω +ἑαυτοῦ +ταπεινόω +δέ +ὁ +ταπεινόω +ἑαυτοῦ +ὑψόω +δέ +προσφέρω +αὐτός +καί +ὁ +βρέφος +ἵνα +αὐτός +ἅπτω +δέ +ὁράω +ὁ +μαθητής +ἐπιτιμάω +αὐτός +δέ +ὁ +Ἰησοῦς +προσκαλέω +αὐτός +λέγω +ἀφίημι +ὁ +παιδίον +ἔρχομαι +πρός +ἐγώ +καί +μή +κωλύω +αὐτός +γάρ +ὁ +τοιοῦτος +εἰμί +ὁ +βασιλεία +ὁ +θεός +ἀμήν +λέγω +σύ +ἄν +ὅς +μή +δέχομαι +ὁ +βασιλεία +ὁ +θεός +ὡς +παιδίον +οὐ +μή +εἰσέρχομαι +εἰς +αὐτός +καί +ἐπερωτάω +τὶς +ἄρχων +αὐτός +λέγω +διδάσκαλος +ἀγαθός +τίς +ποιέω +ζωή +αἰώνιος +κληρονομέω +δέ +λέγω +αὐτός +ὁ +Ἰησοῦς +τίς +ἐγώ +λέγω +ἀγαθός +οὐδείς +ἀγαθός +εἰ +μή +εἷς +ὁ +θεός +ὁ +ἐντολή +οἶδα +μή +μοιχεύω +μή +φονεύω +μή +κλέπτω +μή +ψευδομαρτυρέω +τιμάω +ὁ +πατήρ +σύ +καί +ὁ +μήτηρ +δέ +ὁ +λέγω +οὗτος +πᾶς +φυλάσσω +ἐκ +νεότης +δέ +ἀκούω +ὁ +Ἰησοῦς +λέγω +αὐτός +ἔτι +εἷς +σύ +λείπω +πᾶς +ὅσος +ἔχω +πωλέω +καί +διαδίδωμι +πτωχός +καί +ἔχω +θησαυρός +ἐν +ὁ +οὐρανός +καί +δεῦρο +ἀκολουθέω +ἐγώ +δέ +ὁ +ἀκούω +οὗτος +περίλυπος +γίνομαι +γάρ +εἰμί +πλούσιος +σφόδρα +δέ +ὁράω +αὐτός +ὁ +Ἰησοῦς +λέγω +πῶς +δυσκόλως +ὁ +ὁ +χρῆμα +ἔχω +εἰς +ὁ +βασιλεία +ὁ +θεός +εἰσπορεύομαι +γάρ +εὔκοπος +εἰμί +κάμηλος +διά +τρῆμα +βελόνης +εἰσέρχομαι +ἤ +πλούσιος +εἰς +ὁ +βασιλεία +ὁ +θεός +εἰσέρχομαι +δέ +λέγω +ὁ +ἀκούω +καί +τίς +δύναμαι +σῴζω +δέ +ὁ +λέγω +ὁ +ἀδύνατος +παρά +ἄνθρωπος +δυνατός +παρά +ὁ +θεός +εἰμί +δέ +λέγω +ὁ +Πέτρος +ὁράω +ἐγώ +ἀφίημι +ὁ +ἴδιος +ἀκολουθέω +σύ +δέ +ὁ +λέγω +αὐτός +ἀμήν +λέγω +σύ +ὅτι +οὐδείς +εἰμί +ὅς +ἀφίημι +οἰκία +ἤ +γυνή +ἤ +ἀδελφός +ἤ +γονεύς +ἤ +τέκνον +ἕνεκα +ὁ +βασιλεία +ὁ +θεός +ὅς +οὐχί +μή +λαμβάνω +πολλαπλασίων +ἐν +ὁ +καιρός +οὗτος +καί +ἐν +ὁ +αἰών +ὁ +ἔρχομαι +ζωή +αἰώνιος +δέ +παραλαμβάνω +ὁ +δώδεκα +λέγω +πρός +αὐτός +ὁράω +ἀναβαίνω +εἰς +Ἱεροσόλυμα +καί +τελέω +πᾶς +ὁ +γράφω +διά +ὁ +προφήτης +ὁ +υἱός +ὁ +ἄνθρωπος +γάρ +παραδίδωμι +ὁ +ἔθνος +καί +ἐμπαίζω +καί +ὑβρίζω +καί +ἐμπτύω +καί +μαστιγόω +ἀποκτείνω +αὐτός +καί +ὁ +ἡμέρα +ὁ +τρίτος +ἀνίστημι +καί +αὐτός +οὐδείς +οὗτος +συνίημι +καί +εἰμί +ὁ +ῥῆμα +οὗτος +κρύπτω +ἀπό +αὐτός +καί +οὐ +γινώσκω +ὁ +λέγω +δέ +γίνομαι +ἐν +ὁ +ἐγγίζω +αὐτός +εἰς +Ἰεριχώ +τυφλός +τὶς +κάθημαι +παρά +ὁ +ὁδός +ἐπαιτέω +δέ +ἀκούω +ὄχλος +διαπορεύομαι +πυνθάνομαι +τίς +εἰμί +οὗτος +δέ +ἀπαγγέλλω +αὐτός +ὅτι +Ἰησοῦς +ὁ +Ναζωραῖος +παρέρχομαι +καί +βοάω +λέγω +Ἰησοῦς +υἱός +Δαυίδ +ἐλεέω +ἐγώ +καί +ὁ +προάγω +ἐπιτιμάω +αὐτός +ἵνα +σιγάω +δέ +αὐτός +πολύς +μᾶλλον +κράζω +υἱός +Δαυίδ +ἐλεέω +ἐγώ +δέ +ἵστημι +ὁ +Ἰησοῦς +κελεύω +αὐτός +ἄγω +πρός +αὐτός +δέ +ἐγγίζω +αὐτός +ἐπερωτάω +αὐτός +τίς +σύ +ποιέω +θέλω +δέ +ὁ +λέγω +κύριος +ἵνα +ἀναβλέπω +καί +ὁ +Ἰησοῦς +λέγω +αὐτός +ἀναβλέπω +ὁ +πίστις +σύ +σῴζω +σύ +καί +παραχρῆμα +ἀναβλέπω +καί +ἀκολουθέω +αὐτός +δοξάζω +ὁ +θεός +καί +πᾶς +ὁ +λαός +ὁράω +δίδωμι +αἶνος +ὁ +θεός +καί +εἰσέρχομαι +διέρχομαι +ὁ +Ἰεριχώ +καί +ὁράω +ἀνήρ +ὄνομα +καλέω +Ζακχαῖος +καί +αὐτός +εἰμί +ἀρχιτελώνης +καί +αὐτός +πλούσιος +καί +ζητέω +ὁράω +ὁ +Ἰησοῦς +τίς +εἰμί +καί +οὐ +δύναμαι +ἀπό +ὁ +ὄχλος +ὅτι +ὁ +ἡλικία +μικρός +εἰμί +καί +προτρέχω +εἰς +ὁ +ἔμπροσθεν +ἀναβαίνω +ἐπί +συκομορέα +ἵνα +ὁράω +αὐτός +ὅτι +ἐκεῖνος +διέρχομαι +μέλλω +καί +ὡς +ἔρχομαι +ἐπί +ὁ +τόπος +ἀναβλέπω +ὁ +Ἰησοῦς +λέγω +πρός +αὐτός +Ζακχαῖος +σπεύδω +καταβαίνω +γάρ +σήμερον +ἐν +ὁ +οἶκος +σύ +ἐγώ +μένω +δεῖ +καί +σπεύδω +καταβαίνω +καί +ὑποδέχομαι +αὐτός +χαίρω +καί +ὁράω +πᾶς +διαγογγύζω +λέγω +ὅτι +παρά +ἁμαρτωλός +ἀνήρ +εἰσέρχομαι +καταλύω +δέ +ἵστημι +Ζακχαῖος +λέγω +πρός +ὁ +κύριος +κύριος +ὁράω +ὁ +ἥμισυς +ἐγώ +ὁ +ὑπάρχω +ὁ +πτωχός +δίδωμι +καί +εἰ +τὶς +τὶς +συκοφαντέω +ἀποδίδωμι +τετραπλοῦς +δέ +λέγω +πρός +αὐτός +ὁ +Ἰησοῦς +ὅτι +σήμερον +σωτηρία +ὁ +οἶκος +οὗτος +γίνομαι +καθότι +καί +αὐτός +υἱός +Ἀβραάμ +εἰμί +γάρ +ἔρχομαι +ὁ +υἱός +ὁ +ἄνθρωπος +ζητέω +καί +σῴζω +ὁ +ἀπόλλυμι +δέ +ἀκούω +αὐτός +οὗτος +προστίθημι +λέγω +παραβολή +διά +ὁ +εἰμί +ἐγγύς +Ἱεροσόλυμα +αὐτός +καί +δοκέω +αὐτός +ὅτι +παραχρῆμα +μέλλω +ὁ +βασιλεία +ὁ +θεός +ἀναφαίνω +οὖν +λέγω +ἄνθρωπος +τὶς +εὐγενής +πορεύομαι +εἰς +χώρα +μακρός +λαμβάνω +ἑαυτοῦ +βασιλεία +καί +ὑποστρέφω +δέ +καλέω +δέκα +δοῦλος (II) +ἑαυτοῦ +δίδωμι +αὐτός +δέκα +μνᾶ +καί +λέγω +πρός +αὐτός +πραγματευομαι +ἐν +ὅς +ἔρχομαι +δέ +ὁ +πολίτης +αὐτός +μισέω +αὐτός +καί +ἀποστέλλω +πρεσβεία +ὀπίσω +αὐτός +λέγω +οὐ +θέλω +οὗτος +βασιλεύω +ἐπί +ἐγώ +καί +γίνομαι +ἐν +ὁ +ἐπανέρχομαι +αὐτός +λαμβάνω +ὁ +βασιλεία +καί +λέγω +φωνέω +αὐτός +ὁ +δοῦλος (II) +οὗτος +ὅς +δίδωμι +ὁ +ἀργύριον +ἵνα +γινώσκω +τίς +τίς +διαπραγματεύομαι +δέ +παραγίνομαι +ὁ +πρῶτος +λέγω +κύριος +ὁ +μνᾶ +σύ +δέκα +μνᾶ +προσεργάζομαι +καί +λέγω +αὐτός +εὖγε +ἀγαθός +δοῦλος (II) +ὅτι +ἐν +ἐλάχιστος +πιστός +γίνομαι +εἰμί +ἐξουσία +ἔχω +ἐπάνω +δέκα +πόλις +καί +ἔρχομαι +ὁ +δεύτερος +λέγω +κύριος +ὁ +μνᾶ +σύ +ποιέω +πέντε +μνᾶ +δέ +λέγω +καί +οὗτος +καί +σύ +ἐπάνω +πέντε +πόλις +γίνομαι +καί +ὁ +ἕτερος +ἔρχομαι +λέγω +κύριος +ὁράω +ὁ +μνᾶ +σύ +ὅς +ἔχω +ἀπόκειμαι +ἐν +σουδάριον +γάρ +φοβέω +σύ +ὅτι +ἄνθρωπος +αὐστηρός +εἰμί +αἴρω +ὅς +οὐ +τίθημι +καί +θερίζω +ὅς +οὐ +σπείρω +λέγω +αὐτός +ἐκ +ὁ +στόμα +σύ +κρίνω +σύ +πονηρός +δοῦλος (II) +οἶδα +ὅτι +ἐγώ +εἰμί +ἄνθρωπος +αὐστηρός +αἴρω +ὅς +οὐ +τίθημι +καί +θερίζω +ὅς +οὐ +σπείρω +καί +διά +τίς +οὐ +δίδωμι +ἐγώ +ὁ +ἀργύριον +ἐπί +τράπεζα +ἄν +κἀγώ +ἔρχομαι +σύν +τόκος +αὐτός +πράσσω +καί +ὁ +παρίστημι +λέγω +αἴρω +ἀπό +αὐτός +ὁ +μνᾶ +καί +δίδωμι +ὁ +ὁ +δέκα +μνᾶ +ἔχω +καί +λέγω +αὐτός +κύριος +ἔχω +δέκα +μνᾶ +λέγω +σύ +ὅτι +πᾶς +ὁ +ἔχω +δίδωμι +δέ +ἀπό +ὁ +μή +ἔχω +καί +ὅς +ἔχω +αἴρω +πλήν +ὁ +ἐχθρός +ἐγώ +οὗτος +ὁ +μή +θέλω +ἐγώ +βασιλεύω +ἐπί +αὐτός +ἄγω +ὧδε +καί +κατασφάζω +αὐτός +ἔμπροσθεν +ἐγώ +καί +λέγω +οὗτος +πορεύομαι +ἔμπροσθεν +ἀναβαίνω +εἰς +Ἱεροσόλυμα +καί +γίνομαι +ὡς +ἐγγίζω +εἰς +Βηθφαγή +καί +Βηθανία +πρός +ὁ +ὄρος +ὁ +καλέω +ἐλαία +ἀποστέλλω +δύο +ὁ +μαθητής +λέγω +ὑπάγω +εἰς +ὁ +κατέναντι +κώμη +ἐν +ὅς +εἰσπορεύομαι +εὑρίσκω +δέω +πῶλος +ἐπί +ὅς +οὐδείς +ἄνθρωπος +πώποτε +καθίζω +καί +λύω +αὐτός +ἄγω +καί +ἐάν +τὶς +σύ +ἐρωτάω +διά +τίς +λύω +οὕτω +εἶπον +ὅτι +ὁ +κύριος +αὐτός +χρεία +ἔχω +δέ +ἀπέρχομαι +ὁ +ἀποστέλλω +εὑρίσκω +καθώς +λέγω +αὐτός +δέ +λύω +αὐτός +ὁ +πῶλος +λέγω +ὁ +κύριος +αὐτός +πρός +αὐτός +τίς +λύω +ὁ +πῶλος +δέ +ὁ +λέγω +ὅτι +ὁ +κύριος +αὐτός +χρεία +ἔχω +καί +ἄγω +αὐτός +πρός +ὁ +Ἰησοῦς +καί +ἐπιρίπτω +αὐτός +ὁ +ἱμάτιον +ἐπί +ὁ +πῶλος +ἐπιβιβάζω +ὁ +Ἰησοῦς +δέ +πορεύομαι +αὐτός +ὑποστρωννύω +ὁ +ἱμάτιον +ἑαυτοῦ +ἐν +ὁ +ὁδός +δέ +ἐγγίζω +αὐτός +ἤδη +πρός +ὁ +κατάβασις +ὁ +ὄρος +ὁ +ἐλαία +ἄρχω +ἅπας +ὁ +πλῆθος +ὁ +μαθητής +χαίρω +αἰνέω +ὁ +θεός +φωνή +μέγας +περί +πᾶς +ὅς +ὁράω +δύναμις +λέγω +εὐλογέω +ὁ +ἔρχομαι +ἐν +ὄνομα +κύριος +ὁ +βασιλεύς +ἐν +οὐρανός +εἰρήνη +καί +δόξα +ἐν +ὕψιστος +καί +τὶς +ὁ +Φαρισαῖος +ἀπό +ὁ +ὄχλος +λέγω +πρός +αὐτός +διδάσκαλος +ἐπιτιμάω +ὁ +μαθητής +σύ +καί +ἀποκρίνομαι +λέγω +λέγω +σύ +ἐάν +οὗτος +σιωπάω +ὁ +λίθος +κράζω +καί +ὡς +ἐγγίζω +ὁράω +ὁ +πόλις +κλαίω +ἐπί +αὐτός +λέγω +ὅτι +εἰ +γινώσκω +ἐν +ὁ +ἡμέρα +οὗτος +καί +σύ +ὁ +πρός +εἰρήνη +δέ +νῦν +κρύπτω +ἀπό +ὀφθαλμός +σύ +ὅτι +ἥκω +ἡμέρα +ἐπί +σύ +καί +παρεμβάλλω +ὁ +ἐχθρός +σύ +χάραξ +σύ +καί +περικυκλόω +σύ +καί +συνέχω +σύ +πάντοθεν +καί +ἐδαφίζω +σύ +καί +ὁ +τέκνον +σύ +ἐν +σύ +καί +οὐ +ἀφίημι +λίθος +ἐπί +λίθος +ἐν +σύ +ἀντί +ὅς +οὐ +γινώσκω +ὁ +καιρός +ὁ +ἐπισκοπή +σύ +καί +εἰσέρχομαι +εἰς +ὁ +ἱερός +ἄρχω +ἐκβάλλω +ὁ +πωλέω +λέγω +αὐτός +γράφω +καί +εἰμί +ὁ +οἶκος +ἐγώ +οἶκος +προσευχή +δέ +σύ +αὐτός +ποιέω +σπήλαιον +λῃστής +καί +εἰμί +διδάσκω +ὁ +κατά +ἡμέρα +ἐν +ὁ +ἱερός +δέ +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +ζητέω +αὐτός +ἀπόλλυμι +καί +ὁ +πρῶτος +ὁ +λαός +καί +οὐ +εὑρίσκω +ὁ +τίς +ποιέω +γάρ +ὁ +λαός +ἅπας +ἐκκρεμάννυμι +αὐτός +ἀκούω +καί +γίνομαι +ἐν +εἷς +ὁ +ἡμέρα +διδάσκω +αὐτός +ὁ +λαός +ἐν +ὁ +ἱερός +καί +εὐαγγελίζω +ἐφίστημι +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +σύν +ὁ +πρεσβύτερος +καί +λέγω +λέγω +πρός +αὐτός +λέγω +ἐγώ +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +ἤ +τίς +εἰμί +ὁ +δίδωμι +σύ +ὁ +ἐξουσία +οὗτος +δέ +ἀποκρίνομαι +λέγω +πρός +αὐτός +ἐρωτάω +σύ +κἀγώ +λόγος +καί +λέγω +ἐγώ +ὁ +βάπτισμα +Ἰωάννης +ἐκ +οὐρανός +εἰμί +ἤ +ἐκ +ἄνθρωπος +δέ +ὁ +συλλογίζομαι +πρός +ἑαυτοῦ +λέγω +ὅτι +ἐάν +λέγω +ἐκ +οὐρανός +εἶπον +διά +τίς +οὐ +πιστεύω +αὐτός +δέ +ἐάν +λέγω +ἐκ +ἄνθρωπος +ὁ +λαός +ἅπας +καταλιθάζω +ἐγώ +γάρ +πείθω +εἰμί +Ἰωάννης +προφήτης +εἰμί +καί +ἀποκρίνομαι +μή +οἶδα +πόθεν +καί +ὁ +Ἰησοῦς +λέγω +αὐτός +οὐδέ +ἐγώ +λέγω +σύ +ἐν +ποῖος +ἐξουσία +οὗτος +ποιέω +δέ +ἄρχω +πρός +ὁ +λαός +λέγω +ὁ +παραβολή +οὗτος +ἄνθρωπος +φυτεύω +ἀμπελών +καί +ἐκδίδωμι +αὐτός +γεωργός +καί +ἀποδημέω +χρόνος +ἱκανός +καί +καιρός +ἀποστέλλω +πρός +ὁ +γεωργός +δοῦλος (II) +ἵνα +ἀπό +ὁ +καρπός +ὁ +ἀμπελών +δίδωμι +αὐτός +δέ +ὁ +γεωργός +ἐξαποστέλλω +αὐτός +δέρω +κενός +καί +προστίθημι +ἕτερος +δοῦλος (II) +πέμπω +δέ +ὁ +κἀκεῖνος +δέρω +καί +ἀτιμάζω +ἐξαποστέλλω +κενός +καί +προστίθημι +τρίτος +πέμπω +δέ +ὁ +καί +οὗτος +τραυματίζω +ἐκβάλλω +δέ +λέγω +ὁ +κύριος +ὁ +ἀμπελών +τίς +ποιέω +πέμπω +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἴσως +οὗτος +ἐντρέπω +δέ +ὁράω +αὐτός +ὁ +γεωργός +διαλογίζομαι +πρός +ἀλλήλων +λέγω +οὗτος +εἰμί +ὁ +κληρονόμος +ἀποκτείνω +αὐτός +ἵνα +ἐγώ +γίνομαι +ὁ +κληρονομία +καί +ἐκβάλλω +αὐτός +ἔξω +ὁ +ἀμπελών +ἀποκτείνω +οὖν +τίς +ποιέω +αὐτός +ὁ +κύριος +ὁ +ἀμπελών +ἔρχομαι +καί +ἀπόλλυμι +ὁ +γεωργός +οὗτος +καί +δίδωμι +ὁ +ἀμπελών +ἄλλος +δέ +ἀκούω +λέγω +μή +γίνομαι +δέ +ὁ +ἐμβλέπω +αὐτός +λέγω +οὖν +τίς +εἰμί +ὁ +γράφω +οὗτος +λίθος +ὅς +ἀποδοκιμάζω +ὁ +οἰκοδομέω +οὗτος +γίνομαι +εἰς +κεφαλή +γωνία +πᾶς +ὁ +πίπτω +ἐπί +ἐκεῖνος +ὁ +λίθος +συνθλάω +δέ +ἄν +ἐπί +ὅς +πίπτω +λικμάω +αὐτός +καί +ζητέω +ὁ +γραμματεύς +καί +ὁ +ἀρχιερεύς +ἐπιβάλλω +ἐπί +αὐτός +ὁ +χείρ +ἐν +αὐτός +ὁ +ὥρα +καί +φοβέω +ὁ +λαός +γάρ +γινώσκω +ὅτι +πρός +αὐτός +λέγω +ὁ +παραβολή +οὗτος +καί +παρατηρέω +ἀποστέλλω +ἐγκάθετος +ὑποκρίνομαι +ἑαυτοῦ +δίκαιος +εἰμί +ἵνα +ἐπιλαμβάνομαι +αὐτός +λόγος +ὥστε +παραδίδωμι +αὐτός +ὁ +ἀρχή +καί +ὁ +ἐξουσία +ὁ +ἡγεμών +καί +ἐπερωτάω +αὐτός +λέγω +διδάσκαλος +οἶδα +ὅτι +ὀρθῶς +λέγω +καί +διδάσκω +καί +οὐ +λαμβάνω +πρόσωπον +ἀλλά +ἐπί +ἀλήθεια +ὁ +ὁδός +ὁ +θεός +διδάσκω +ἔξεστι(ν) +ἐγώ +Καῖσαρ +φόρος +δίδωμι +ἤ +οὐ +δέ +κατανοέω +αὐτός +ὁ +πανουργία +λέγω +πρός +αὐτός +δείκνυμι +ἐγώ +δηνάριον +ἔχω +τίς +εἰκών +καί +ἐπιγραφή +δέ +ὁ +λέγω +Καῖσαρ +δέ +ὁ +λέγω +πρός +αὐτός +τοίνυν +ἀποδίδωμι +ὁ +Καῖσαρ +Καῖσαρ +καί +ὁ +ὁ +θεός +ὁ +θεός +καί +οὐ +ἰσχύω +ἐπιλαμβάνομαι +αὐτός +ῥῆμα +ἐναντίον +ὁ +λαός +καί +θαυμάζω +ἐπί +ὁ +ἀπόκρισις +αὐτός +σιγάω +δέ +προσέρχομαι +τὶς +ὁ +Σαδδουκαῖος +ὁ +ἀντιλέγω +ἀνάστασις +μή +εἰμί +ἐπερωτάω +αὐτός +λέγω +διδάσκαλος +Μωϋσῆς +γράφω +ἐγώ +ἐάν +τὶς +ἀδελφός +ἀποθνῄσκω +ἔχω +γυνή +καί +οὗτος +ἄτεκνος +εἰμί +ἵνα +λαμβάνω +ὁ +ἀδελφός +αὐτός +ὁ +γυνή +καί +ἐξανίστημι +σπέρμα +ὁ +ἀδελφός +αὐτός +οὖν +ἑπτά +ἀδελφός +εἰμί +καί +ὁ +πρῶτος +λαμβάνω +γυνή +ἀποθνῄσκω +ἄτεκνος +καί +ὁ +δεύτερος +καί +ὁ +τρίτος +λαμβάνω +αὐτός +δέ +ὡσαύτως +καί +ὁ +ἑπτά +οὐ +καταλείπω +τέκνον +καί +ἀποθνῄσκω +ὕστερος +καί +ὁ +γυνή +ἀποθνῄσκω +οὖν +ὁ +γυνή +ἐν +ὁ +ἀνάστασις +τίς +αὐτός +γυνή +γίνομαι +γάρ +ὁ +ἑπτά +ἔχω +αὐτός +γυνή +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ὁ +υἱός +ὁ +αἰών +οὗτος +γαμέω +καί +γαμίζω +δέ +ὁ +καταξιόω +ὁ +αἰών +ἐκεῖνος +τυγχάνω +καί +ὁ +ἀνάστασις +ὁ +ἐκ +νεκρός +οὔτε +γαμέω +οὔτε +γαμίζω +γάρ +οὐδέ +ἀποθνῄσκω +ἔτι +δύναμαι +γάρ +ἰσάγγελος +εἰμί +καί +υἱός +θεός +εἰμί +ὁ +ἀνάστασις +υἱός +εἰμί +δέ +ὅτι +ἐγείρω +ὁ +νεκρός +καί +Μωϋσῆς +μηνύω +ἐπί +ὁ +βάτος (I) +ὡς +λέγω +κύριος +ὁ +θεός +Ἀβραάμ +καί +θεός +Ἰσαάκ +καί +θεός +Ἰακώβ +δέ +θεός +οὐ +εἰμί +νεκρός +ἀλλά +ζάω +γάρ +πᾶς +αὐτός +ζάω +δέ +ἀποκρίνομαι +τὶς +ὁ +γραμματεύς +λέγω +διδάσκαλος +καλῶς +λέγω +γάρ +οὐκέτι +τολμάω +ἐπερωτάω +αὐτός +οὐδείς +δέ +λέγω +πρός +αὐτός +πῶς +λέγω +ὁ +Χριστός +εἰμί +Δαυίδ +υἱός +γάρ +αὐτός +Δαυίδ +λέγω +ἐν +βίβλος +ψαλμός +λέγω +κύριος +ὁ +κύριος +ἐγώ +κάθημαι +ἐκ +δεξιός +ἐγώ +ἕως +ἄν +τίθημι +ὁ +ἐχθρός +σύ +ὑποπόδιον +ὁ +πούς +σύ +οὖν +Δαυίδ +αὐτός +κύριος +καλέω +καί +πῶς +αὐτός +υἱός +εἰμί +δέ +ἀκούω +πᾶς +ὁ +λαός +λέγω +ὁ +μαθητής +προσέχω +ἀπό +ὁ +γραμματεύς +ὁ +θέλω +περιπατέω +ἐν +στολή +καί +φιλέω +ἀσπασμός +ἐν +ὁ +ἀγορά +καί +πρωτοκαθεδρία +ἐν +ὁ +συναγωγή +καί +πρωτοκλισία +ἐν +ὁ +δεῖπνον +ὅς +κατεσθίω +ὁ +οἰκία +ὁ +χῆρος +καί +πρόφασις +μακρός +προσεύχομαι +οὗτος +λαμβάνω +περισσός +κρίμα +δέ +ἀναβλέπω +ὁράω +ὁ +βάλλω +εἰς +ὁ +γαζοφυλάκιον +ὁ +δῶρον +αὐτός +πλούσιος +δέ +ὁράω +τὶς +χῆρος +πενιχρός +βάλλω +ἐκεῖ +λεπτός +δύο +καί +λέγω +ἀληθῶς +λέγω +σύ +ὅτι +ὁ +χῆρος +οὗτος +ὁ +πτωχός +πολύς +πᾶς +βάλλω +γάρ +πᾶς +οὗτος +ἐκ +ὁ +περισσεύω +αὐτός +βάλλω +εἰς +ὁ +δῶρον +δέ +οὗτος +ἐκ +ὁ +ὑστέρημα +αὐτός +πᾶς +ὁ +βίος +ὅς +ἔχω +βάλλω +καί +τὶς +λέγω +περί +ὁ +ἱερός +ὅτι +λίθος +καλός +καί +ἀνάθημα +κοσμέω +λέγω +οὗτος +ὅς +θεωρέω +ἔρχομαι +ἡμέρα +ἐν +ὅς +οὐ +ἀφίημι +ἐπί +λίθος +λίθος +ὅς +οὐ +καταλύω +δέ +ἐπερωτάω +αὐτός +λέγω +διδάσκαλος +οὖν +πότε +οὗτος +εἰμί +καί +τίς +ὁ +σημεῖον +ὅταν +μέλλω +οὗτος +γίνομαι +δέ +ὁ +λέγω +βλέπω +μή +πλανάω +γάρ +πολύς +ἔρχομαι +ἐπί +ὁ +ὄνομα +ἐγώ +λέγω +ἐγώ +εἰμί +καί +ὁ +καιρός +ἐγγίζω +μή +πορεύομαι +ὀπίσω +αὐτός +δέ +ὅταν +ἀκούω +πόλεμος +καί +ἀκαταστασία +μή +πτοέω +γάρ +δεῖ +οὗτος +γίνομαι +πρῶτος +ἀλλά +οὐ +εὐθέως +ὁ +τέλος +τότε +λέγω +αὐτός +ἐγείρω +ἔθνος +ἐπί +ἔθνος +καί +βασιλεία +ἐπί +βασιλεία +τέ +σεισμός +μέγας +καί +κατά +τόπος +λοιμός (II) +καί +λιμός +εἰμί +τέ +φόβητρον +καί +ἀπό +οὐρανός +σημεῖον +μέγας +εἰμί +δέ +πρό +οὗτος +πᾶς +ἐπιβάλλω +ἐπί +σύ +ὁ +χείρ +αὐτός +καί +διώκω +παραδίδωμι +εἰς +ὁ +συναγωγή +καί +φυλακή +ἀπάγω +ἐπί +βασιλεύς +καί +ἡγεμών +ἕνεκα +ὁ +ὄνομα +ἐγώ +ἀποβαίνω +σύ +εἰς +μαρτύριον +οὖν +τίθημι +ἐν +ὁ +καρδία +σύ +μή +προμελετάω +ἀπολογέομαι +γάρ +ἐγώ +δίδωμι +σύ +στόμα +καί +σοφία +ὅς +οὐ +δύναμαι +ἀνθίστημι +ἤ +ἀντιλέγω +ἅπας +ὁ +ἀντίκειμαι +σύ +δέ +παραδίδωμι +καί +ὑπό +γονεύς +καί +ἀδελφός +καί +συγγενής +καί +φίλος +καί +θανατόω +ἐκ +σύ +καί +εἰμί +μισέω +ὑπό +πᾶς +διά +ὁ +ὄνομα +ἐγώ +καί +θρίξ +ἐκ +ὁ +κεφαλή +σύ +οὐ +μή +ἀπόλλυμι +ἐν +ὁ +ὑπομονή +σύ +κτάομαι +ὁ +ψυχή +σύ +δέ +ὅταν +ὁράω +κυκλόω +ὑπό +στρατόπεδον +Ἱεροσόλυμα +τότε +γινώσκω +ὅτι +ἐγγίζω +ὁ +ἐρήμωσις +αὐτός +τότε +ὁ +ἐν +ὁ +Ἰουδαία +φεύγω +εἰς +ὁ +ὄρος +καί +ὁ +ἐν +μέσος +αὐτός +ἐκχωρέω +καί +ὁ +ἐν +ὁ +χώρα +μή +εἰσέρχομαι +εἰς +αὐτός +ὅτι +ἡμέρα +ἐκδίκησις +οὗτος +εἰμί +ὁ +πίμπλημι +πᾶς +ὁ +γράφω +οὐαί +ὁ +ἐν +γαστήρ +ἔχω +καί +ὁ +θηλάζω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +γάρ +εἰμί +ἀνάγκη +μέγας +ἐπί +ὁ +γῆ +καί +ὀργή +ὁ +λαός +οὗτος +καί +πίπτω +στόμα +μάχαιρα +καί +αἰχμαλωτίζω +εἰς +ὁ +ἔθνος +πᾶς +καί +Ἱεροσόλυμα +εἰμί +πατέω +ὑπό +ἔθνος +ἄχρι +ὅς +πληρόω +καιρός +ἔθνος +καί +εἰμί +σημεῖον +ἐν +ἥλιος +καί +σελήνη +καί +ἄστρον +καί +ἐπί +ὁ +γῆ +συνοχή +ἔθνος +ἐν +ἀπορία +ἦχος (II) +θάλασσα +καί +σάλος +ἀποψύχω +ἄνθρωπος +ἀπό +φόβος +καί +προσδοκία +ὁ +ἐπέρχομαι +ὁ +οἰκουμένη +γάρ +ὁ +δύναμις +ὁ +οὐρανός +σαλεύω +καί +τότε +ὁράω +ὁ +υἱός +ὁ +ἄνθρωπος +ἔρχομαι +ἐν +νεφέλη +μετά +δύναμις +καί +δόξα +πολύς +δέ +ἄρχω +οὗτος +γίνομαι +ἀνακύπτω +καί +ἐπαίρω +ὁ +κεφαλή +σύ +διότι +ἐγγίζω +ὁ +ἀπολύτρωσις +σύ +καί +λέγω +παραβολή +αὐτός +ὁράω +ὁ +συκῆ +καί +πᾶς +ὁ +δένδρον +ὅταν +προβάλλω +ἤδη +βλέπω +ἀπό +ἑαυτοῦ +γινώσκω +ὅτι +ἤδη +ἐγγύς +ὁ +θέρος +εἰμί +οὕτω +καί +σύ +ὅταν +ὁράω +οὗτος +γίνομαι +γινώσκω +ὅτι +ἐγγύς +εἰμί +ὁ +βασιλεία +ὁ +θεός +ἀμήν +λέγω +σύ +ὅτι +οὐ +μή +παρέρχομαι +ὁ +γενεά +οὗτος +ἕως +ἄν +πᾶς +γίνομαι +ὁ +οὐρανός +καί +ὁ +γῆ +παρέρχομαι +δέ +ὁ +λόγος +ἐγώ +οὐ +μή +παρέρχομαι +δέ +προσέχω +ἑαυτοῦ +μή +ποτέ +βαρέω +σύ +ὁ +καρδία +ἐν +κραιπάλη +καί +μέθη +καί +μέριμνα +βιωτικός +καί +ἐφίστημι +ἐπί +σύ +αἰφνίδιος +ὁ +ἡμέρα +ἐκεῖνος +ὡς +παγίς +γάρ +ἐπεισελεύσεται +ἐπί +πᾶς +ὁ +κάθημαι +ἐπί +πρόσωπον +πᾶς +ὁ +γῆ +δέ +ἀγρυπνέω +ἐν +πᾶς +καιρός +δέομαι +ἵνα +κατισχύω +ἐκφεύγω +οὗτος +πᾶς +ὁ +μέλλω +γίνομαι +καί +ἵστημι +ἔμπροσθεν +ὁ +υἱός +ὁ +ἄνθρωπος +δέ +εἰμί +διδάσκω +ὁ +ἡμέρα +ἐν +ὁ +ἱερός +δέ +ὁ +νύξ +ἐξέρχομαι +αὐλίζομαι +εἰς +ὁ +ὄρος +ὁ +καλέω +ἐλαία +καί +πᾶς +ὁ +λαός +ὀρθρίζω +πρός +αὐτός +ἐν +ὁ +ἱερός +ἀκούω +αὐτός +δέ +ἐγγίζω +ὁ +ἑορτή +ὁ +ἄζυμος +ὁ +λέγω +πάσχα +καί +ζητέω +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +ὁ +πῶς +ἀναιρέω +αὐτός +γάρ +φοβέω +ὁ +λαός +δέ +εἰσέρχομαι +Σατανᾶς +εἰς +Ἰούδας +ὁ +καλέω +Ἰσκαριώθ +εἰμί +ἐκ +ὁ +ἀριθμός +ὁ +δώδεκα +καί +ἀπέρχομαι +συλλαλέω +ὁ +ἀρχιερεύς +καί +στρατηγός +ὁ +πῶς +αὐτός +παραδίδωμι +αὐτός +καί +χαίρω +καί +συντίθημι +αὐτός +ἀργύριον +δίδωμι +καί +ἐξομολογέω +καί +ζητέω +εὐκαιρία +ὁ +παραδίδωμι +αὐτός +ἄτερ +ὄχλος +αὐτός +δέ +ἔρχομαι +ὁ +ἡμέρα +ὁ +ἄζυμος +ὅς +δεῖ +θύω +ὁ +πάσχα +καί +ἀποστέλλω +Πέτρος +καί +Ἰωάννης +λέγω +πορεύομαι +ἑτοιμάζω +ἐγώ +ὁ +πάσχα +ἵνα +ἐσθίω +δέ +ὁ +λέγω +αὐτός +θέλω +ποῦ +ἑτοιμάζω +δέ +ὁ +λέγω +αὐτός +ὁράω +εἰσέρχομαι +σύ +εἰς +ὁ +πόλις +συναντάω +σύ +ἄνθρωπος +κεράμιον +ὕδωρ +βαστάζω +ἀκολουθέω +αὐτός +εἰς +ὁ +οἰκία +εἰς +ὅς +εἰσπορεύομαι +καί +εἶπον +ὁ +οἰκοδεσπότης +ὁ +οἰκία +λέγω +σύ +ὁ +διδάσκαλος +ποῦ +εἰμί +ὁ +κατάλυμα +ὅπου +ὁ +πάσχα +μετά +ὁ +μαθητής +ἐγώ +ἐσθίω +κἀκεῖνος +σύ +δείκνυμι +ἀνάγαιον +μέγας +στρωννύω +ἐκεῖ +ἑτοιμάζω +δέ +ἀπέρχομαι +εὑρίσκω +καθώς +εἶπον +αὐτός +καί +ἑτοιμάζω +ὁ +πάσχα +καί +ὅτε +γίνομαι +ὁ +ὥρα +ἀναπίπτω +καί +ὁ +ἀπόστολος +σύν +αὐτός +καί +λέγω +πρός +αὐτός +ἐπιθυμία +ἐπιθυμέω +οὗτος +ὁ +πάσχα +ἐσθίω +μετά +σύ +πρό +ὁ +ἐγώ +πάσχω +γάρ +λέγω +σύ +ὅτι +οὐκέτι +οὐ +μή +ἐσθίω +αὐτός +ἕως +ὅστις +πληρόω +ἐν +ὁ +βασιλεία +ὁ +θεός +καί +δέχομαι +ποτήριον +εὐχαριστέω +λέγω +λαμβάνω +οὗτος +καί +διαμερίζω +εἰς +ἑαυτοῦ +γάρ +λέγω +σύ +οὐ +μή +πίνω +ἀπό +ὁ +νῦν +ἀπό +ὁ +γέννημα +ὁ +ἄμπελος +ἕως +ὅς +ὁ +βασιλεία +ὁ +θεός +ἔρχομαι +καί +λαμβάνω +ἄρτος +εὐχαριστέω +κλάω +καί +δίδωμι +αὐτός +λέγω +οὗτος +εἰμί +ὁ +σῶμα +ἐγώ +ὁ +ὑπέρ +σύ +δίδωμι +οὗτος +ποιέω +εἰς +ὁ +ἐμός +ἀνάμνησις +καί +ὁ +ποτήριον +ὡσαύτως +μετά +ὁ +δειπνέω +λέγω +ὁ +καινός +διαθήκη +ἐν +ὁ +αἷμα +ἐγώ +οὗτος +ὁ +ποτήριον +ὁ +ὑπέρ +σύ +ἐκχέω +πλήν +ὁράω +ὁ +χείρ +ὁ +παραδίδωμι +ἐγώ +μετά +ἐγώ +ἐπί +ὁ +τράπεζα +ὅτι +μέν +ὁ +υἱός +ὁ +ἄνθρωπος +κατά +ὁ +ὁρίζω +πορεύομαι +πλήν +οὐαί +ὁ +ἄνθρωπος +ἐκεῖνος +διά +ὅς +παραδίδωμι +καί +αὐτός +ἄρχω +συζητέω +πρός +ἑαυτοῦ +ὁ +ἆρα +τίς +εἰμί +ἐκ +αὐτός +ὁ +οὗτος +πράσσω +μέλλω +δέ +γίνομαι +ἐν +αὐτός +καί +φιλονεικία +ὁ +τίς +αὐτός +δοκέω +εἰμί +μέγας +δέ +ὁ +λέγω +αὐτός +ὁ +βασιλεύς +ὁ +ἔθνος +κυριεύω +αὐτός +καί +ὁ +ἐξουσιάζω +αὐτός +εὐεργέτης +καλέω +δέ +σύ +οὐ +οὕτω +ἀλλά +ὁ +μέγας +ἐν +σύ +γίνομαι +ὡς +ὁ +νέος +καί +ὁ +ἡγέομαι +ὡς +ὁ +διακονέω +γάρ +τίς +μέγας +ὁ +ἀνάκειμαι +ἤ +ὁ +διακονέω +οὐχί +ὁ +ἀνάκειμαι +δέ +ἐγώ +ἐν +μέσος +σύ +εἰμί +ὡς +ὁ +διακονέω +δέ +σύ +εἰμί +ὁ +διαμένω +μετά +ἐγώ +ἐν +ὁ +πειρασμός +ἐγώ +κἀγώ +διατίθημι +σύ +καθώς +διατίθημι +ἐγώ +ὁ +πατήρ +ἐγώ +βασιλεία +ἵνα +ἐσθίω +καί +πίνω +ἐπί +ὁ +τράπεζα +ἐγώ +ἐν +ὁ +βασιλεία +ἐγώ +καί +κάθημαι +ἐπί +θρόνος +ὁ +δώδεκα +φυλή +ὁ +Ἰσραήλ +κρίνω +Σίμων +Σίμων +ὁράω +ὁ +Σατανᾶς +ἐξαιτέω +σύ +ὁ +σινιάζω +ὡς +ὁ +σῖτος +δέ +ἐγώ +δέομαι +περί +σύ +ἵνα +μή +ἐκλείπω +ὁ +πίστις +σύ +καί +σύ +ποτέ +ἐπιστρέφω +στηρίζω +ὁ +ἀδελφός +σύ +δέ +ὁ +λέγω +αὐτός +κύριος +μετά +σύ +ἕτοιμος +εἰμί +καί +εἰς +φυλακή +καί +εἰς +θάνατος +πορεύομαι +δέ +ὁ +λέγω +λέγω +σύ +Πέτρος +οὐ +φωνέω +σήμερον +ἀλέκτωρ +ἕως +τρίς +ἐγώ +μή +οἶδα +ἀπαρνέομαι +καί +λέγω +αὐτός +ὅτε +ἀποστέλλω +σύ +ἄτερ +βαλλάντιον +καί +πήρα +καί +ὑπόδημα +μή +τὶς +ὑστερέω +δέ +ὁ +λέγω +οὐδείς +δέ +λέγω +αὐτός +ἀλλά +νῦν +ὁ +ἔχω +βαλλάντιον +αἴρω +ὁμοίως +καί +πήρα +καί +ὁ +μή +ἔχω +πωλέω +ὁ +ἱμάτιον +αὐτός +καί +ἀγοράζω +μάχαιρα +γάρ +λέγω +σύ +ὅτι +δεῖ +οὗτος +ὁ +γράφω +ὁ +καί +μετά +ἄνομος +λογίζομαι +τελέω +ἐν +ἐγώ +γάρ +καί +ὁ +περί +ἐγώ +τέλος +ἔχω +δέ +ὁ +λέγω +κύριος +ὁράω +μάχαιρα +ὧδε +δύο +δέ +ὁ +λέγω +αὐτός +ἱκανός +εἰμί +καί +ἐξέρχομαι +πορεύομαι +κατά +ὁ +ἔθος +εἰς +ὁ +ὄρος +ὁ +ἐλαία +δέ +ἀκολουθέω +αὐτός +καί +ὁ +μαθητής +δέ +γίνομαι +ἐπί +ὁ +τόπος +λέγω +αὐτός +προσεύχομαι +μή +εἰσέρχομαι +εἰς +πειρασμός +καί +αὐτός +ἀποσπάω +ἀπό +αὐτός +ὡσεί +λίθος +βολή +καί +τίθημι +ὁ +γόνυ +προσεύχομαι +λέγω +πατήρ +εἰ +βούλομαι +παραφέρω +οὗτος +ὁ +ποτήριον +ἀπό +ἐγώ +πλήν +μή +ὁ +θέλημα +ἐγώ +ἀλλά +ὁ +σός +γίνομαι +δέ +ὁράω +αὐτός +ἄγγελος +ἀπό +οὐρανός +ἐνισχύω +αὐτός +καί +γίνομαι +ἐν +ἀγωνία +ἐκτενής +προσεύχομαι +καί +γίνομαι +ὁ +ἱδρώς +αὐτός +ὡσεί +θρόμβος +αἷμα +καταβαίνω +ἐπί +ὁ +γῆ +καί +ἀνίστημι +ἀπό +ὁ +προσευχή +ἔρχομαι +πρός +ὁ +μαθητής +εὑρίσκω +κοιμάομαι +αὐτός +ἀπό +ὁ +λύπη +καί +λέγω +αὐτός +τίς +καθεύδω +ἀνίστημι +προσεύχομαι +ἵνα +μή +εἰσέρχομαι +εἰς +πειρασμός +ἔτι +αὐτός +λαλέω +ὁράω +ὄχλος +καί +ὁ +λέγω +Ἰούδας +εἷς +ὁ +δώδεκα +προέρχομαι +αὐτός +καί +ἐγγίζω +ὁ +Ἰησοῦς +φιλέω +αὐτός +δέ +Ἰησοῦς +λέγω +αὐτός +Ἰούδας +φίλημα +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +δέ +ὁ +περί +αὐτός +ὁράω +ὁ +εἰμί +λέγω +κύριος +εἰ +πατάσσω +ἐν +μάχαιρα +καί +πατάσσω +εἷς +τὶς +ἐκ +αὐτός +ὁ +ἀρχιερεύς +ὁ +δοῦλος (II) +καί +ἀφαιρέω +ὁ +οὖς +αὐτός +ὁ +δεξιός +δέ +ἀποκρίνομαι +ὁ +Ἰησοῦς +λέγω +ἐάω +ἕως +οὗτος +καί +ἅπτω +ὁ +ὠτίον +ἰάομαι +αὐτός +δέ +λέγω +Ἰησοῦς +πρός +ὁ +παραγίνομαι +ἐπί +αὐτός +ἀρχιερεύς +καί +στρατηγός +ὁ +ἱερός +καί +πρεσβύτερος +ὡς +ἐπί +λῃστής +ἐξέρχομαι +μετά +μάχαιρα +καί +ξύλον +κατά +ἡμέρα +εἰμί +ἐγώ +μετά +σύ +ἐν +ὁ +ἱερός +οὐ +ἐκτείνω +ὁ +χείρ +ἐπί +ἐγώ +ἀλλά +οὗτος +εἰμί +σύ +ὁ +ὥρα +καί +ὁ +ἐξουσία +ὁ +σκότος +δέ +συλλαμβάνω +αὐτός +ἄγω +καί +εἰσάγω +εἰς +ὁ +οἰκία +ὁ +ἀρχιερεύς +δέ +ὁ +Πέτρος +ἀκολουθέω +μακρόθεν +δέ +περιάπτω +πῦρ +ἐν +μέσος +ὁ +αὐλή +καί +συγκαθίζω +κάθημαι +ὁ +Πέτρος +μέσος +αὐτός +δέ +παιδίσκη +τὶς +ὁράω +αὐτός +κάθημαι +πρός +ὁ +φῶς +καί +ἀτενίζω +αὐτός +λέγω +καί +οὗτος +σύν +αὐτός +εἰμί +δέ +ὁ +ἀρνέομαι +λέγω +οὐ +οἶδα +αὐτός +γυνή +καί +μετά +βραχύς +ἕτερος +ὁράω +αὐτός +φημί +καί +σύ +ἐκ +αὐτός +εἰμί +δέ +ὁ +Πέτρος +φημί +ἄνθρωπος +οὐ +εἰμί +καί +διΐστημι +ὡσεί +ὥρα +εἷς +ἄλλος +τὶς +διϊσχυρίζομαι +λέγω +ἐπί +ἀλήθεια +καί +οὗτος +μετά +αὐτός +εἰμί +γάρ +καί +Γαλιλαῖος +εἰμί +δέ +λέγω +ὁ +Πέτρος +ἄνθρωπος +οὐ +οἶδα +ὅς +λέγω +καί +παραχρῆμα +ἔτι +λαλέω +αὐτός +φωνέω +ἀλέκτωρ +καί +στρέφω +ὁ +κύριος +ἐμβλέπω +ὁ +Πέτρος +καί +ὑπομιμνῄσκω +ὁ +Πέτρος +ὁ +λόγος +ὁ +κύριος +ὡς +λέγω +αὐτός +ὅτι +πρίν +ἀλέκτωρ +φωνέω +σήμερον +ἀπαρνέομαι +ἐγώ +τρίς +καί +ἐξέρχομαι +ἔξω +κλαίω +πικρῶς +καί +ὁ +ἀνήρ +ὁ +συνέχω +αὐτός +ἐμπαίζω +αὐτός +δέρω +καί +περικαλύπτω +αὐτός +ἐπερωτάω +λέγω +προφητεύω +τίς +εἰμί +ὁ +παίω +σύ +καί +ἕτερος +πολύς +λέγω +βλασφημέω +εἰς +αὐτός +καί +ὡς +γίνομαι +ἡμέρα +συνάγω +ὁ +πρεσβυτέριον +ὁ +λαός +τέ +ἀρχιερεύς +καί +γραμματεύς +καί +ἀπάγω +αὐτός +εἰς +ὁ +συνέδριον +αὐτός +λέγω +εἰ +σύ +εἰμί +ὁ +Χριστός +λέγω +ἐγώ +δέ +λέγω +αὐτός +ἐάν +σύ +λέγω +οὐ +μή +πιστεύω +δέ +ἐάν +ἐρωτάω +οὐ +μή +ἀποκρίνομαι +δέ +ἀπό +ὁ +νῦν +εἰμί +κάθημαι +ὁ +υἱός +ὁ +ἄνθρωπος +ἐκ +δεξιός +ὁ +δύναμις +ὁ +θεός +δέ +λέγω +πᾶς +οὖν +σύ +εἰμί +ὁ +υἱός +ὁ +θεός +δέ +ὁ +πρός +αὐτός +φημί +σύ +λέγω +ὅτι +ἐγώ +εἰμί +δέ +ὁ +λέγω +τίς +ἔτι +ἔχω +μαρτυρία +χρεία +γάρ +αὐτός +ἀκούω +ἀπό +ὁ +στόμα +αὐτός +καί +ἀνίστημι +ἅπας +ὁ +πλῆθος +αὐτός +ἄγω +αὐτός +ἐπί +ὁ +Πιλᾶτος +δέ +ἄρχω +κατηγορέω +αὐτός +λέγω +εὑρίσκω +οὗτος +διαστρέφω +ὁ +ἔθνος +ἐγώ +καί +κωλύω +φόρος +Καῖσαρ +δίδωμι +καί +λέγω +ἑαυτοῦ +Χριστός +βασιλεύς +εἰμί +δέ +ὁ +Πιλᾶτος +ἐρωτάω +αὐτός +λέγω +σύ +εἰμί +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +δέ +ὁ +ἀποκρίνομαι +αὐτός +φημί +σύ +λέγω +δέ +ὁ +Πιλᾶτος +λέγω +πρός +ὁ +ἀρχιερεύς +καί +ὁ +ὄχλος +οὐδείς +εὑρίσκω +αἴτιος +ἐν +ὁ +ἄνθρωπος +οὗτος +δέ +ὁ +ἐπισχύω +λέγω +ὅτι +ἀνασείω +ὁ +λαός +διδάσκω +κατά +ὅλος +ὁ +Ἰουδαία +καί +ἄρχω +ἀπό +ὁ +Γαλιλαία +ἕως +ὧδε +δέ +Πιλᾶτος +ἀκούω +ἐπερωτάω +εἰ +ὁ +ἄνθρωπος +Γαλιλαῖος +εἰμί +καί +ἐπιγινώσκω +ὅτι +ἐκ +ὁ +ἐξουσία +Ἡρῴδης +εἰμί +ἀναπέμπω +αὐτός +πρός +Ἡρῴδης +εἰμί +καί +αὐτός +ἐν +Ἱεροσόλυμα +ἐν +οὗτος +ὁ +ἡμέρα +δέ +ὁ +Ἡρῴδης +ὁράω +ὁ +Ἰησοῦς +χαίρω +λίαν +γάρ +εἰμί +θέλω +ἐκ +ἱκανός +χρόνος +ὁράω +αὐτός +διά +ὁ +ἀκούω +περί +αὐτός +καί +ἐλπίζω +ὁράω +τὶς +σημεῖον +ὑπό +αὐτός +γίνομαι +δέ +ἐπερωτάω +αὐτός +ἐν +λόγος +ἱκανός +δέ +αὐτός +οὐδείς +ἀποκρίνομαι +αὐτός +δέ +ἵστημι +ὁ +ἀρχιερεύς +καί +ὁ +γραμματεύς +εὐτόνως +κατηγορέω +αὐτός +δέ +ὁ +Ἡρῴδης +ἐξουθενέω +αὐτός +σύν +ὁ +στράτευμα +αὐτός +καί +ἐμπαίζω +περιβάλλω +ἐσθής +λαμπρός +ἀναπέμπω +αὐτός +ὁ +Πιλᾶτος +δέ +γίνομαι +φίλος +τέ +ὁ +Ἡρῴδης +καί +ὁ +Πιλᾶτος +ἐν +αὐτός +ὁ +ἡμέρα +μετά +ἀλλήλων +γάρ +προϋπάρχω +ἐν +ἔχθρα +εἰμί +πρός +αὐτός +δέ +Πιλᾶτος +συγκαλέω +ὁ +ἀρχιερεύς +καί +ὁ +ἄρχων +καί +ὁ +λαός +λέγω +πρός +αὐτός +προσφέρω +ἐγώ +ὁ +ἄνθρωπος +οὗτος +ὡς +ἀποστρέφω +ὁ +λαός +καί +ὁράω +ἐγώ +ἐνώπιον +σύ +ἀνακρίνω +οὐδείς +εὑρίσκω +ἐν +ὁ +ἄνθρωπος +οὗτος +αἴτιος +ὅς +κατηγορέω +κατά +αὐτός +ἀλλά +οὐδέ +Ἡρῴδης +γάρ +ἀναπέμπω +αὐτός +πρός +ἐγώ +καί +ὁράω +οὐδείς +ἄξιος +θάνατος +εἰμί +πράσσω +αὐτός +οὖν +παιδεύω +αὐτός +ἀπολύω +δέ +ἀνακράζω +παμπληθεί +λέγω +αἴρω +οὗτος +δέ +ἀπολύω +ἐγώ +ὁ +Βαραββᾶς +ὅστις +εἰμί +βάλλω +διά +στάσις +τὶς +γίνομαι +ἐν +ὁ +πόλις +καί +φόνος +ἐν +ὁ +φυλακή +δέ +πάλιν +ὁ +Πιλᾶτος +προσφωνέω +αὐτός +θέλω +ἀπολύω +ὁ +Ἰησοῦς +δέ +ὁ +ἐπιφωνέω +λέγω +σταυρόω +σταυρόω +αὐτός +δέ +ὁ +τρίτος +λέγω +πρός +αὐτός +γάρ +τίς +κακός +ποιέω +οὗτος +οὐδείς +αἴτιος +θάνατος +εὑρίσκω +ἐν +αὐτός +οὖν +παιδεύω +αὐτός +ἀπολύω +δέ +ὁ +ἐπίκειμαι +φωνή +μέγας +αἰτέω +αὐτός +σταυρόω +καί +κατισχύω +ὁ +φωνή +αὐτός +καί +Πιλᾶτος +ἐπικρίνω +γίνομαι +ὁ +αἴτημα +αὐτός +δέ +ἀπολύω +ὁ +διά +στάσις +καί +φόνος +βάλλω +εἰς +φυλακή +ὅς +αἰτέω +δέ +ὁ +Ἰησοῦς +παραδίδωμι +ὁ +θέλημα +αὐτός +καί +ὡς +ἀπάγω +αὐτός +ἐπιλαμβάνομαι +Σίμων +τὶς +Κυρηναῖος +ἔρχομαι +ἀπό +ἀγρός +ἐπιτίθημι +αὐτός +ὁ +σταυρός +φέρω +ὄπισθεν +ὁ +Ἰησοῦς +δέ +ἀκολουθέω +αὐτός +πολύς +πλῆθος +ὁ +λαός +καί +γυνή +ὅς +κόπτω +καί +θρηνέω +αὐτός +δέ +στρέφω +πρός +αὐτός +Ἰησοῦς +λέγω +θυγάτηρ +Ἱεροσόλυμα +μή +κλαίω +ἐπί +ἐγώ +πλήν +ἐπί +ἑαυτοῦ +κλαίω +καί +ἐπί +ὁ +τέκνον +σύ +ὅτι +ὁράω +ἔρχομαι +ἡμέρα +ἐν +ὅς +εἶπον +μακάριος +ὁ +στεῖρα +καί +ὁ +κοιλία +ὅς +οὐ +γεννάω +καί +μαστός +ὅς +οὐ +τρέφω +τότε +ἄρχω +λέγω +ὁ +ὄρος +πίπτω +ἐπί +ἐγώ +καί +ὁ +βουνός +καλύπτω +ἐγώ +ὅτι +εἰ +ἐν +ὑγρός +ξύλον +οὗτος +ποιέω +ἐν +ὁ +ξηρός +τίς +γίνομαι +δέ +ἄγω +καί +ἕτερος +κακοῦργος +δύο +σύν +αὐτός +ἀναιρέω +καί +ὅτε +ἔρχομαι +ἐπί +ὁ +τόπος +ὁ +καλέω +κρανίον +ἐκεῖ +σταυρόω +αὐτός +καί +ὁ +κακοῦργος +μέν +ὅς +ἐκ +δεξιός +δέ +ὅς +ἐκ +ἀριστερός +δέ +ὁ +Ἰησοῦς +λέγω +πατήρ +ἀφίημι +αὐτός +γάρ +οὐ +οἶδα +τίς +ποιέω +δέ +διαμερίζω +ὁ +ἱμάτιον +αὐτός +βάλλω +κλῆρος +καί +ἵστημι +ὁ +λαός +θεωρέω +δέ +ἐκμυκτηρίζω +καί +ὁ +ἄρχων +λέγω +ἄλλος +σῴζω +σῴζω +ἑαυτοῦ +εἰ +οὗτος +εἰμί +ὁ +Χριστός +ὁ +θεός +ὁ +ἐκλεκτός +δέ +ἐμπαίζω +αὐτός +καί +ὁ +στρατιώτης +προσέρχομαι +ὄξος +προσφέρω +αὐτός +καί +λέγω +εἰ +σύ +εἰμί +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +σῴζω +σεαυτοῦ +δέ +εἰμί +καί +ἐπιγραφή +ἐπί +αὐτός +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +οὗτος +δέ +εἷς +ὁ +κρεμάννυμι +κακοῦργος +βλασφημέω +αὐτός +οὐχί +σύ +εἰμί +ὁ +Χριστός +σῴζω +σεαυτοῦ +καί +ἐγώ +δέ +ἀποκρίνομαι +ὁ +ἕτερος +ἐπιτιμάω +αὐτός +φημί +οὐδέ +φοβέω +σύ +ὁ +θεός +ὅτι +ἐν +ὁ +αὐτός +κρίμα +εἰμί +καί +μέν +ἐγώ +δικαίως +γάρ +ἄξιος +ὅς +πράσσω +ἀπολαμβάνω +δέ +οὗτος +οὐδείς +ἄτοπος +πράσσω +καί +λέγω +Ἰησοῦς +μιμνῄσκω +ἐγώ +ὅταν +ἔρχομαι +εἰς +ὁ +βασιλεία +σύ +καί +λέγω +αὐτός +ἀμήν +σύ +λέγω +σήμερον +μετά +ἐγώ +εἰμί +ἐν +ὁ +παράδεισος +καί +εἰμί +ἤδη +ὡσεί +ὥρα +ἕκτος +καί +σκότος +γίνομαι +ἐπί +ὅλος +ὁ +γῆ +ἕως +ὥρα +ἔνατος +ὁ +ἥλιος +ἐκλείπω +δέ +σχίζω +ὁ +καταπέτασμα +ὁ +ναός +μέσος +καί +φωνέω +φωνή +μέγας +ὁ +Ἰησοῦς +λέγω +πατήρ +εἰς +χείρ +σύ +παρατίθημι +ὁ +πνεῦμα +ἐγώ +δέ +οὗτος +λέγω +ἐκπνέω +δέ +ὁ +ἑκατοντάρχης +ὁράω +ὁ +γίνομαι +δοξάζω +ὁ +θεός +λέγω +ὄντως +ὁ +ἄνθρωπος +οὗτος +δίκαιος +εἰμί +καί +πᾶς +ὁ +συμπαραγίνομαι +ἐπί +ὁ +θεωρία +οὗτος +ὄχλος +θεωρέω +ὁ +γίνομαι +τύπτω +ὁ +στῆθος +ὑποστρέφω +δέ +ἵστημι +ἀπό +μακρόθεν +πᾶς +ὁ +γνωστός +αὐτός +καί +γυνή +ὁ +συνακολουθέω +αὐτός +ἀπό +ὁ +Γαλιλαία +ὁράω +οὗτος +καί +ὁράω +ἀνήρ +ὄνομα +Ἰωσήφ +ὑπάρχω +βουλευτής +ἀνήρ +ἀγαθός +καί +δίκαιος +οὗτος +οὐ +εἰμί +συγκατατίθεμαι +ὁ +βουλή +καί +ὁ +πρᾶξις +αὐτός +ἀπό +Ἀριμαθαία +πόλις +ὁ +Ἰουδαῖος +ὅς +προσδέχομαι +ὁ +βασιλεία +ὁ +θεός +οὗτος +προσέρχομαι +ὁ +Πιλᾶτος +αἰτέω +ὁ +σῶμα +ὁ +Ἰησοῦς +καί +καθαιρέω +ἐντυλίσσω +αὐτός +σινδών +καί +τίθημι +αὐτός +ἐν +μνῆμα +λαξευτός +οὗ +οὐ +εἰμί +κεῖμαι +οὐδείς +οὔπω +καί +ἡμέρα +παρασκευή +εἰμί +καί +σάββατον +ἐπιφώσκω +δέ +κατακολουθέω +ὁ +γυνή +ὅστις +εἰμί +συνέρχομαι +ἐκ +ὁ +Γαλιλαία +αὐτός +θεάομαι +ὁ +μνημεῖον +καί +ὡς +τίθημι +ὁ +σῶμα +αὐτός +δέ +ὑποστρέφω +ἑτοιμάζω +ἄρωμα +καί +μύρον +καί +μέν +ὁ +σάββατον +ἡσυχάζω +κατά +ὁ +ἐντολή +δέ +ὁ +εἷς +ὁ +σάββατον +ὄρθρος +βαθύς +ἐπί +ὁ +μνῆμα +ἔρχομαι +φέρω +ὅς +ἑτοιμάζω +ἄρωμα +δέ +εὑρίσκω +ὁ +λίθος +ἀποκυλίω +ἀπό +ὁ +μνημεῖον +δέ +εἰσέρχομαι +οὐ +εὑρίσκω +ὁ +σῶμα +ὁ +κύριος +Ἰησοῦς +καί +γίνομαι +ἐν +ὁ +ἀπορέω +αὐτός +περί +οὗτος +καί +ὁράω +ἀνήρ +δύο +ἐφίστημι +αὐτός +ἐν +ἐσθής +ἀστράπτω +δέ +ἔμφοβος +γίνομαι +αὐτός +καί +κλίνω +ὁ +πρόσωπον +εἰς +ὁ +γῆ +λέγω +πρός +αὐτός +τίς +ζητέω +ὁ +ζάω +μετά +ὁ +νεκρός +οὐ +εἰμί +ὧδε +ἀλλά +ἐγείρω +μιμνῄσκω +ὡς +λαλέω +σύ +ἔτι +εἰμί +ἐν +ὁ +Γαλιλαία +λέγω +ὅτι +δεῖ +ὁ +υἱός +ὁ +ἄνθρωπος +παραδίδωμι +εἰς +χείρ +ἄνθρωπος +ἁμαρτωλός +καί +σταυρόω +καί +ὁ +τρίτος +ἡμέρα +ἀνίστημι +καί +μιμνῄσκω +ὁ +ῥῆμα +αὐτός +καί +ὑποστρέφω +ἀπό +ὁ +μνημεῖον +ἀπαγγέλλω +οὗτος +πᾶς +ὁ +ἕνδεκα +καί +πᾶς +ὁ +λοιπός +δέ +εἰμί +ὁ +Μαγδαληνή +Μαρία +καί +Ἰωάννα +καί +Μαρία +ὁ +Ἰάκωβος +καί +ὁ +λοιπός +σύν +αὐτός +λέγω +πρός +ὁ +ἀπόστολος +οὗτος +καί +φαίνω +ἐνώπιον +αὐτός +ὡσεί +λῆρος +ὁ +ῥῆμα +οὗτος +καί +ἀπιστέω +αὐτός +δέ +ὁ +Πέτρος +ἀνίστημι +τρέχω +ἐπί +ὁ +μνημεῖον +καί +παρακύπτω +βλέπω +ὁ +ὀθόνιον +μόνος +καί +ἀπέρχομαι +πρός +αὐτός +θαυμάζω +ὁ +γίνομαι +καί +ὁράω +δύο +ἐκ +αὐτός +ἐν +αὐτός +ὁ +ἡμέρα +εἰμί +πορεύομαι +εἰς +κώμη +ἀπέχω +στάδιον +ἑξήκοντα +ἀπό +Ἱεροσόλυμα +ὅς +ὄνομα +Ἐμμαοῦς +καί +αὐτός +ὁμιλέω +πρός +ἀλλήλων +περί +πᾶς +ὁ +συμβαίνω +οὗτος +καί +γίνομαι +ἐν +ὁ +ὁμιλέω +αὐτός +καί +συζητέω +καί +αὐτός +Ἰησοῦς +ἐγγίζω +συμπορεύομαι +αὐτός +δέ +ὁ +ὀφθαλμός +αὐτός +κρατέω +ὁ +μή +ἐπιγινώσκω +αὐτός +δέ +λέγω +πρός +αὐτός +τίς +ὁ +λόγος +οὗτος +ὅς +ἀντιβάλλω +πρός +ἀλλήλων +περιπατέω +καί +ἵστημι +σκυθρωπός +δέ +ἀποκρίνομαι +εἷς +ὄνομα +Κλεοπᾶς +λέγω +πρός +αὐτός +σύ +μόνος +παροικέω +Ἱεροσόλυμα +καί +οὐ +γινώσκω +ὁ +γίνομαι +ἐν +αὐτός +ἐν +ὁ +ἡμέρα +οὗτος +καί +λέγω +αὐτός +ποῖος +δέ +ὁ +λέγω +αὐτός +ὁ +περί +Ἰησοῦς +ὁ +Ναζαρηνός +ὅς +γίνομαι +ἀνήρ +προφήτης +δυνατός +ἐν +ἔργον +καί +λόγος +ἐναντίον +ὁ +θεός +καί +πᾶς +ὁ +λαός +τέ +ὅπως +παραδίδωμι +αὐτός +ὁ +ἀρχιερεύς +καί +ὁ +ἄρχων +ἐγώ +εἰς +κρίμα +θάνατος +καί +σταυρόω +αὐτός +δέ +ἐγώ +ἐλπίζω +ὅτι +αὐτός +εἰμί +ὁ +μέλλω +λυτρόω +ὁ +Ἰσραήλ +ἀλλά +γέ +καί +σύν +πᾶς +οὗτος +τρίτος +οὗτος +ἡμέρα +ἄγω +ἀπό +ὅς +οὗτος +γίνομαι +ἀλλά +καί +γυνή +τὶς +ἐκ +ἐγώ +ἐξίστημι +ἐγώ +γίνομαι +ὀρθρινός +ἐπί +ὁ +μνημεῖον +καί +μή +εὑρίσκω +ὁ +σῶμα +αὐτός +ἔρχομαι +λέγω +καί +ὀπτασία +ἄγγελος +ὁράω +ὅς +λέγω +αὐτός +ζάω +καί +ἀπέρχομαι +τὶς +ὁ +σύν +ἐγώ +ἐπί +ὁ +μνημεῖον +καί +εὑρίσκω +οὕτω +καθώς +καί +ὁ +γυνή +λέγω +δέ +αὐτός +οὐ +ὁράω +καί +αὐτός +λέγω +πρός +αὐτός +ὦ +ἀνόητος +καί +βραδύς +ὁ +καρδία +ὁ +πιστεύω +ἐπί +πᾶς +ὅς +λαλέω +ὁ +προφήτης +οὐχί +δεῖ +οὗτος +πάσχω +ὁ +Χριστός +καί +εἰσέρχομαι +εἰς +ὁ +δόξα +αὐτός +καί +ἄρχω +ἀπό +Μωϋσῆς +καί +ἀπό +πᾶς +ὁ +προφήτης +διερμηνεύω +αὐτός +ἐν +πᾶς +ὁ +γραφή +ὁ +περί +ἑαυτοῦ +καί +ἐγγίζω +εἰς +ὁ +κώμη +οὗ +πορεύομαι +καί +αὐτός +προσποιέω +πόρρω +πορεύομαι +καί +παραβιάζομαι +αὐτός +λέγω +μένω +μετά +ἐγώ +ὅτι +πρός +ἑσπέρα +εἰμί +καί +κλίνω +ἤδη +ὁ +ἡμέρα +καί +εἰσέρχομαι +ὁ +μένω +σύν +αὐτός +καί +γίνομαι +ἐν +ὁ +κατακλίνω +αὐτός +μετά +αὐτός +λαμβάνω +ὁ +ἄρτος +εὐλογέω +καί +κλάω +ἐπιδίδωμι +αὐτός +δέ +αὐτός +ὁ +ὀφθαλμός +διανοίγω +καί +ἐπιγινώσκω +αὐτός +καί +αὐτός +ἄφαντος +γίνομαι +ἀπό +αὐτός +καί +λέγω +πρός +ἀλλήλων +οὐχί +ὁ +καρδία +ἐγώ +καίω +εἰμί +ἐν +ἐγώ +ὡς +λαλέω +ἐγώ +ἐν +ὁ +ὁδός +ὡς +διανοίγω +ἐγώ +ὁ +γραφή +καί +ἀνίστημι +αὐτός +ὁ +ὥρα +ὑποστρέφω +εἰς +Ἱεροσόλυμα +καί +εὑρίσκω +ἀθροίζω +ὁ +ἕνδεκα +καί +ὁ +σύν +αὐτός +λέγω +ὅτι +ὄντως +ἐγείρω +ὁ +κύριος +καί +ὁράω +Σίμων +καί +αὐτός +ἐξηγέομαι +ὁ +ἐν +ὁ +ὁδός +καί +ὡς +γινώσκω +αὐτός +ἐν +ὁ +κλάσις +ὁ +ἄρτος +δέ +οὗτος +αὐτός +λαλέω +αὐτός +ἵστημι +ἐν +μέσος +αὐτός +καί +λέγω +αὐτός +εἰρήνη +σύ +δέ +πτοέω +καί +ἔμφοβος +γίνομαι +δοκέω +πνεῦμα +θεωρέω +καί +λέγω +αὐτός +τίς +ταράσσω +εἰμί +καί +διά +τίς +διαλογισμός +ἀναβαίνω +ἐν +ὁ +καρδία +σύ +ὁράω +ὁ +χείρ +ἐγώ +καί +ὁ +πούς +ἐγώ +ὅτι +ἐγώ +εἰμί +αὐτός +ψηλαφάω +ἐγώ +καί +ὁράω +ὅτι +πνεῦμα +σάρξ +καί +ὀστέον +οὐ +ἔχω +καθώς +ἐγώ +ἔχω +θεωρέω +καί +οὗτος +λέγω +δείκνυμι +αὐτός +ὁ +χείρ +καί +ὁ +πούς +δέ +ἔτι +ἀπιστέω +αὐτός +ἀπό +ὁ +χαρά +καί +θαυμάζω +λέγω +αὐτός +ἔχω +τὶς +βρώσιμος +ἐνθάδε +δέ +ὁ +ἐπιδίδωμι +αὐτός +ἰχθύς +ὀπτός +μέρος +καί +λαμβάνω +ἐνώπιον +αὐτός +ἐσθίω +δέ +λέγω +πρός +αὐτός +οὗτος +ὁ +λόγος +ἐγώ +ὅς +λαλέω +πρός +σύ +ἔτι +εἰμί +σύν +σύ +ὅτι +δεῖ +πληρόω +πᾶς +ὁ +γράφω +ἐν +ὁ +νόμος +Μωϋσῆς +καί +ὁ +προφήτης +καί +ψαλμός +περί +ἐγώ +τότε +διανοίγω +αὐτός +ὁ +νοῦς +ὁ +συνίημι +ὁ +γραφή +καί +λέγω +αὐτός +ὅτι +οὕτω +γράφω +πάσχω +ὁ +Χριστός +καί +ἀνίστημι +ἐκ +νεκρός +ὁ +τρίτος +ἡμέρα +καί +κηρύσσω +ἐπί +ὁ +ὄνομα +αὐτός +μετάνοια +εἰς +ἄφεσις +ἁμαρτία +εἰς +πᾶς +ὁ +ἔθνος +ἄρχω +ἀπό +Ἱεροσόλυμα +σύ +μάρτυς +οὗτος +καί +ὁράω +ἐγώ +ἐξαποστέλλω +ὁ +ἐπαγγελία +ὁ +πατήρ +ἐγώ +ἐπί +σύ +δέ +σύ +καθίζω +ἐν +ὁ +πόλις +ἕως +ὅς +ἐνδύω +ἐκ +ὕψος +δύναμις +δέ +ἐξάγω +αὐτός +ἕως +πρός +Βηθανία +καί +ἐπαίρω +ὁ +χείρ +αὐτός +εὐλογέω +αὐτός +καί +γίνομαι +ἐν +ὁ +εὐλογέω +αὐτός +αὐτός +διΐστημι +ἀπό +αὐτός +καί +ἀναφέρω +εἰς +ὁ +οὐρανός +καί +αὐτός +προσκυνέω +αὐτός +ὑποστρέφω +εἰς +Ἱεροσόλυμα +μετά +χαρά +μέγας +καί +εἰμί +εὐλογέω +διά +πᾶς +ἐν +ὁ +ἱερός +ὁ +θεός +ἐν +ἀρχή +εἰμί +ὁ +λόγος +καί +ὁ +λόγος +εἰμί +πρός +ὁ +θεός +καί +θεός +εἰμί +ὁ +λόγος +οὗτος +εἰμί +ἐν +ἀρχή +πρός +ὁ +θεός +πᾶς +διά +αὐτός +γίνομαι +καί +χωρίς +αὐτός +γίνομαι +οὐδέ +εἷς +ὅς +γίνομαι +ἐν +αὐτός +ζωή +εἰμί +καί +ὁ +ζωή +εἰμί +ὁ +φῶς +ὁ +ἄνθρωπος +καί +ὁ +φῶς +ἐν +ὁ +σκοτία +φαίνω +καί +ὁ +σκοτία +αὐτός +οὐ +καταλαμβάνω +γίνομαι +ἄνθρωπος +ἀποστέλλω +παρά +θεός +ὄνομα +αὐτός +Ἰωάννης +οὗτος +ἔρχομαι +εἰς +μαρτυρία +ἵνα +μαρτυρέω +περί +ὁ +φῶς +ἵνα +πᾶς +πιστεύω +διά +αὐτός +οὐ +εἰμί +ἐκεῖνος +ὁ +φῶς +ἀλλά +ἵνα +μαρτυρέω +περί +ὁ +φῶς +ὁ +φῶς +ὁ +ἀληθινός +ὅς +φωτίζω +πᾶς +ἄνθρωπος +εἰμί +ἔρχομαι +εἰς +ὁ +κόσμος +ἐν +ὁ +κόσμος +εἰμί +καί +ὁ +κόσμος +διά +αὐτός +γίνομαι +καί +ὁ +κόσμος +αὐτός +οὐ +γινώσκω +εἰς +ὁ +ἴδιος +ἔρχομαι +καί +ὁ +ἴδιος +αὐτός +οὐ +παραλαμβάνω +δέ +ὅσος +λαμβάνω +αὐτός +δίδωμι +ἐξουσία +τέκνον +θεός +γίνομαι +αὐτός +ὁ +πιστεύω +εἰς +ὁ +ὄνομα +αὐτός +ὅς +οὐ +ἐκ +αἷμα +οὐδέ +ἐκ +θέλημα +σάρξ +οὐδέ +ἐκ +θέλημα +ἀνήρ +ἀλλά +ἐκ +θεός +γεννάω +καί +ὁ +λόγος +σάρξ +γίνομαι +καί +σκηνόω +ἐν +ἐγώ +καί +θεάομαι +ὁ +δόξα +αὐτός +δόξα +ὡς +μονογενής +παρά +πατήρ +πλήρης +χάρις +καί +ἀλήθεια +Ἰωάννης +μαρτυρέω +περί +αὐτός +καί +κράζω +λέγω +οὗτος +εἰμί +ὅς +λέγω +ὁ +ὀπίσω +ἐγώ +ἔρχομαι +ἔμπροσθεν +ἐγώ +γίνομαι +ὅτι +πρῶτος +ἐγώ +εἰμί +ὅτι +ἐκ +ὁ +πλήρωμα +αὐτός +ἐγώ +πᾶς +λαμβάνω +καί +χάρις +ἀντί +χάρις +ὅτι +ὁ +νόμος +διά +Μωϋσῆς +δίδωμι +ὁ +χάρις +καί +ὁ +ἀλήθεια +διά +Ἰησοῦς +Χριστός +γίνομαι +θεός +οὐδείς +ὁράω +πώποτε +μονογενής +θεός +ὁ +εἰμί +εἰς +ὁ +κόλπος +ὁ +πατήρ +ἐκεῖνος +ἐξηγέομαι +καί +οὗτος +εἰμί +ὁ +μαρτυρία +ὁ +Ἰωάννης +ὅτε +ἀποστέλλω +πρός +αὐτός +ὁ +Ἰουδαῖος +ἐκ +Ἱεροσόλυμα +ἱερεύς +καί +Λευίτης +ἵνα +ἐρωτάω +αὐτός +σύ +τίς +εἰμί +καί +ὁμολογέω +καί +οὐ +ἀρνέομαι +καί +ὁμολογέω +ὅτι +ἐγώ +οὐ +εἰμί +ὁ +Χριστός +καί +ἐρωτάω +αὐτός +οὖν +τίς +σύ +Ἠλίας +εἰμί +καί +λέγω +οὐ +εἰμί +ὁ +προφήτης +εἰμί +σύ +καί +ἀποκρίνομαι +οὐ +οὖν +λέγω +αὐτός +τίς +εἰμί +ἵνα +ἀπόκρισις +δίδωμι +ὁ +πέμπω +ἐγώ +τίς +λέγω +περί +σεαυτοῦ +φημί +ἐγώ +φωνή +βοάω +ἐν +ὁ +ἔρημος +εὐθύνω +ὁ +ὁδός +κύριος +καθώς +λέγω +Ἠσαΐας +ὁ +προφήτης +καί +ἀποστέλλω +εἰμί +ἐκ +ὁ +Φαρισαῖος +καί +ἐρωτάω +αὐτός +καί +λέγω +αὐτός +οὖν +τίς +βαπτίζω +εἰ +σύ +οὐ +εἰμί +ὁ +Χριστός +οὐδέ +Ἠλίας +οὐδέ +ὁ +προφήτης +ἀποκρίνομαι +αὐτός +ὁ +Ἰωάννης +λέγω +ἐγώ +βαπτίζω +ἐν +ὕδωρ +μέσος +σύ +στήκω +ὅς +σύ +οὐ +οἶδα +ὁ +ὀπίσω +ἐγώ +ἔρχομαι +ὅς +οὐ +εἰμί +ἐγώ +ἄξιος +ἵνα +λύω +αὐτός +ὁ +ἱμάς +ὁ +ὑπόδημα +οὗτος +ἐν +Βηθανία +γίνομαι +πέραν +ὁ +Ἰορδάνης +ὅπου +εἰμί +βαπτίζω +ὁ +Ἰωάννης +ὁ +ἐπαύριον +βλέπω +ὁ +Ἰησοῦς +ἔρχομαι +πρός +αὐτός +καί +λέγω +ὁράω +ὁ +ἀμνός +ὁ +θεός +ὁ +αἴρω +ὁ +ἁμαρτία +ὁ +κόσμος +οὗτος +εἰμί +ὑπέρ +ὅς +ἐγώ +λέγω +ὀπίσω +ἐγώ +ἔρχομαι +ἀνήρ +ὅς +ἔμπροσθεν +ἐγώ +γίνομαι +ὅτι +πρῶτος +ἐγώ +εἰμί +κἀγώ +οὐ +οἶδα +αὐτός +ἀλλά +ἵνα +φανερόω +ὁ +Ἰσραήλ +διά +οὗτος +ἔρχομαι +ἐγώ +ἐν +ὕδωρ +βαπτίζω +καί +μαρτυρέω +Ἰωάννης +λέγω +ὅτι +θεάομαι +ὁ +πνεῦμα +καταβαίνω +ὡς +περιστερά +ἐκ +οὐρανός +καί +μένω +ἐπί +αὐτός +κἀγώ +οὐ +οἶδα +αὐτός +ἀλλά +ὁ +πέμπω +ἐγώ +βαπτίζω +ἐν +ὕδωρ +ἐκεῖνος +ἐγώ +λέγω +ἄν +ἐπί +ὅς +ὁράω +ὁ +πνεῦμα +καταβαίνω +καί +μένω +ἐπί +αὐτός +οὗτος +εἰμί +ὁ +βαπτίζω +ἐν +πνεῦμα +ἅγιος +κἀγώ +ὁράω +καί +μαρτυρέω +ὅτι +οὗτος +εἰμί +ὁ +υἱός +ὁ +θεός +ὁ +ἐπαύριον +πάλιν +ἵστημι +ὁ +Ἰωάννης +καί +ἐκ +ὁ +μαθητής +αὐτός +δύο +καί +ἐμβλέπω +ὁ +Ἰησοῦς +περιπατέω +λέγω +ὁράω +ὁ +ἀμνός +ὁ +θεός +καί +ἀκούω +ὁ +δύο +μαθητής +αὐτός +λαλέω +καί +ἀκολουθέω +ὁ +Ἰησοῦς +δέ +ὁ +Ἰησοῦς +στρέφω +καί +θεάομαι +αὐτός +ἀκολουθέω +λέγω +αὐτός +τίς +ζητέω +δέ +ὁ +λέγω +αὐτός +ῥαββί +ὅς +λέγω +μεθερμηνεύω +διδάσκαλος +ποῦ +μένω +λέγω +αὐτός +ἔρχομαι +καί +ὁράω +οὖν +ἔρχομαι +καί +ὁράω +πού +μένω +καί +παρά +αὐτός +μένω +ὁ +ἡμέρα +ἐκεῖνος +ὥρα +εἰμί +ὡς +δέκατος +εἰμί +Ἀνδρέας +ὁ +ἀδελφός +Σίμων +Πέτρος +εἷς +ἐκ +ὁ +δύο +ὁ +ἀκούω +παρά +Ἰωάννης +καί +ἀκολουθέω +αὐτός +εὑρίσκω +οὗτος +πρῶτος +ὁ +ἀδελφός +ὁ +ἴδιος +Σίμων +καί +λέγω +αὐτός +εὑρίσκω +ὁ +Μεσσίας +ὅς +εἰμί +μεθερμηνεύω +Χριστός +ἄγω +αὐτός +πρός +ὁ +Ἰησοῦς +ἐμβλέπω +αὐτός +ὁ +Ἰησοῦς +λέγω +σύ +εἰμί +Σίμων +ὁ +υἱός +Ἰωάννης +σύ +καλέω +Κηφᾶς +ὅς +ἑρμηνεύω +Πέτρος +ὁ +ἐπαύριον +θέλω +ἐξέρχομαι +εἰς +ὁ +Γαλιλαία +καί +εὑρίσκω +Φίλιππος +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀκολουθέω +ἐγώ +δέ +εἰμί +ὁ +Φίλιππος +ἀπό +Βηθσαϊδά +ἐκ +ὁ +πόλις +Ἀνδρέας +καί +Πέτρος +εὑρίσκω +Φίλιππος +ὁ +Ναθαναήλ +καί +λέγω +αὐτός +ὅς +γράφω +Μωϋσῆς +ἐν +ὁ +νόμος +καί +ὁ +προφήτης +εὑρίσκω +Ἰησοῦς +υἱός +ὁ +Ἰωσήφ +ὁ +ἀπό +Ναζαρά +καί +λέγω +αὐτός +Ναθαναήλ +ἐκ +Ναζαρά +εἰμί +δύναμαι +τὶς +ἀγαθός +λέγω +αὐτός +ὁ +Φίλιππος +ἔρχομαι +καί +ὁράω +ὁράω +Ἰησοῦς +ὁ +Ναθαναήλ +ἔρχομαι +πρός +αὐτός +καί +λέγω +περί +αὐτός +ὁράω +ἀληθῶς +Ἰσραηλίτης +ἐν +ὅς +δόλος +οὐ +εἰμί +λέγω +αὐτός +Ναθαναήλ +πόθεν +ἐγώ +γινώσκω +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +πρό +ὁ +σύ +Φίλιππος +φωνέω +εἰμί +ὑπό +ὁ +συκῆ +σύ +ὁράω +ἀποκρίνομαι +αὐτός +Ναθαναήλ +ῥαββί +σύ +εἰμί +ὁ +υἱός +ὁ +θεός +σύ +βασιλεύς +ὁ +Ἰσραήλ +εἰμί +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +ὅτι +λέγω +σύ +ὅτι +ὁράω +σύ +ὑποκάτω +ὁ +συκῆ +πιστεύω +μέγας +οὗτος +ὁράω +καί +λέγω +αὐτός +ἀμήν +ἀμήν +λέγω +σύ +ὁράω +ὁ +οὐρανός +ἀνοίγω +καί +ὁ +ἄγγελος +ὁ +θεός +ἀναβαίνω +καί +καταβαίνω +ἐπί +ὁ +υἱός +ὁ +ἄνθρωπος +καί +ὁ +ἡμέρα +ὁ +τρίτος +γάμος +γίνομαι +ἐν +Κανά +ὁ +Γαλιλαία +καί +εἰμί +ὁ +μήτηρ +ὁ +Ἰησοῦς +ἐκεῖ +δέ +καλέω +καί +ὁ +Ἰησοῦς +καί +ὁ +μαθητής +αὐτός +εἰς +ὁ +γάμος +καί +ὑστερέω +οἶνος +λέγω +ὁ +μήτηρ +ὁ +Ἰησοῦς +πρός +αὐτός +οἶνος +οὐ +ἔχω +καί +λέγω +αὐτός +ὁ +Ἰησοῦς +τίς +ἐγώ +καί +σύ +γυνή +οὔπω +ἥκω +ὁ +ὥρα +ἐγώ +λέγω +ὁ +μήτηρ +αὐτός +ὁ +διάκονος +τὶς +ἄν +ὅς +λέγω +σύ +ποιέω +δέ +εἰμί +κεῖμαι +ἐκεῖ +λίθινος +ὑδρία +ἕξ +κατά +ὁ +καθαρισμός +ὁ +Ἰουδαῖος +χωρέω +ἀνά +μετρητής +δύο +ἤ +τρεῖς +λέγω +αὐτός +ὁ +Ἰησοῦς +γεμίζω +ὁ +ὑδρία +ὕδωρ +καί +γεμίζω +αὐτός +ἕως +ἄνω +καί +λέγω +αὐτός +ἀντλέω +νῦν +καί +φέρω +ὁ +ἀρχιτρίκλινος +δέ +ὁ +φέρω +δέ +ὡς +γεύομαι +ὁ +ἀρχιτρίκλινος +ὁ +ὕδωρ +οἶνος +γίνομαι +καί +οὐ +οἶδα +πόθεν +εἰμί +δέ +οἶδα +ὁ +διάκονος +ὁ +ἀντλέω +ὁ +ὕδωρ +φωνέω +ὁ +νυμφίος +ὁ +ἀρχιτρίκλινος +καί +λέγω +αὐτός +πᾶς +ἄνθρωπος +πρῶτος +ὁ +καλός +οἶνος +τίθημι +καί +ὅταν +μεθύω +ὁ +ἐλάσσων +σύ +τηρέω +ὁ +καλός +οἶνος +ἕως +ἄρτι +οὗτος +ἀρχή +ὁ +σημεῖον +ποιέω +ὁ +Ἰησοῦς +ἐν +Κανά +ὁ +Γαλιλαία +καί +φανερόω +ὁ +δόξα +αὐτός +καί +πιστεύω +εἰς +αὐτός +ὁ +μαθητής +αὐτός +μετά +οὗτος +καταβαίνω +εἰς +Καφαρναούμ +αὐτός +καί +ὁ +μήτηρ +αὐτός +καί +ὁ +ἀδελφός +καί +ὁ +μαθητής +αὐτός +καί +ἐκεῖ +μένω +οὐ +πολύς +ἡμέρα +καί +ἐγγύς +εἰμί +ὁ +πάσχα +ὁ +Ἰουδαῖος +καί +ἀναβαίνω +εἰς +Ἱεροσόλυμα +ὁ +Ἰησοῦς +καί +εὑρίσκω +ἐν +ὁ +ἱερός +ὁ +πωλέω +βοῦς +καί +πρόβατον +καί +περιστερά +καί +ὁ +κερματιστής +κάθημαι +καί +ποιέω +φραγέλλιον +ἐκ +σχοινίον +πᾶς +ἐκβάλλω +ἐκ +ὁ +ἱερός +τέ +ὁ +πρόβατον +καί +ὁ +βοῦς +καί +ὁ +κολλυβιστής +ὁ +κέρμα +ἐκχέω +καί +ὁ +τράπεζα +ἀνατρέπω +καί +ὁ +ὁ +περιστερά +πωλέω +λέγω +αἴρω +οὗτος +ἐντεῦθεν +μή +ποιέω +ὁ +οἶκος +ὁ +πατήρ +ἐγώ +οἶκος +ἐμπόριον +μιμνῄσκω +ὁ +μαθητής +αὐτός +ὅτι +γράφω +εἰμί +ὁ +ζῆλος +ὁ +οἶκος +σύ +κατεσθίω +ἐγώ +οὖν +ἀποκρίνομαι +ὁ +Ἰουδαῖος +καί +λέγω +αὐτός +τίς +σημεῖον +δείκνυμι +ἐγώ +ὅτι +οὗτος +ποιέω +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +λύω +ὁ +ναός +οὗτος +καί +ἐν +τρεῖς +ἡμέρα +ἐγείρω +αὐτός +οὖν +λέγω +ὁ +Ἰουδαῖος +τεσσεράκοντα +καί +ἕξ +ἔτος +οἰκοδομέω +ὁ +ναός +οὗτος +καί +σύ +ἐν +τρεῖς +ἡμέρα +ἐγείρω +αὐτός +δέ +ἐκεῖνος +λέγω +περί +ὁ +ναός +ὁ +σῶμα +αὐτός +οὖν +ὅτε +ἐγείρω +ἐκ +νεκρός +μιμνῄσκω +ὁ +μαθητής +αὐτός +ὅτι +οὗτος +λέγω +καί +πιστεύω +ὁ +γραφή +καί +ὁ +λόγος +ὅς +λέγω +ὁ +Ἰησοῦς +δέ +ὡς +εἰμί +ἐν +ὁ +Ἱεροσόλυμα +ἐν +ὁ +πάσχα +ἐν +ὁ +ἑορτή +πολύς +πιστεύω +εἰς +ὁ +ὄνομα +αὐτός +θεωρέω +αὐτός +ὁ +σημεῖον +ὅς +ποιέω +δέ +αὐτός +Ἰησοῦς +οὐ +πιστεύω +αὐτός +αὐτός +διά +ὁ +αὐτός +γινώσκω +πᾶς +καί +ὅτι +οὐ +χρεία +ἔχω +ἵνα +τὶς +μαρτυρέω +περί +ὁ +ἄνθρωπος +γάρ +αὐτός +γινώσκω +τίς +εἰμί +ἐν +ὁ +ἄνθρωπος +δέ +εἰμί +ἄνθρωπος +ἐκ +ὁ +Φαρισαῖος +ἄρχων +ὁ +Ἰουδαῖος +Νικόδημος +ὄνομα +αὐτός +οὗτος +ἔρχομαι +πρός +αὐτός +νύξ +καί +λέγω +αὐτός +ῥαββί +οἶδα +ὅτι +ἀπό +θεός +ἔρχομαι +διδάσκαλος +γάρ +οὐδείς +δύναμαι +οὗτος +ὁ +σημεῖον +ὅς +σύ +ποιέω +ποιέω +ἐάν +μή +εἰμί +ὁ +θεός +μετά +αὐτός +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +ἀμήν +ἀμήν +λέγω +σύ +ἐάν +μή +τὶς +γεννάω +ἄνωθεν +οὐ +δύναμαι +ὁράω +ὁ +βασιλεία +ὁ +θεός +λέγω +πρός +αὐτός +ὁ +Νικόδημος +πῶς +δύναμαι +ἄνθρωπος +γεννάω +γέρων +εἰμί +μή +δύναμαι +εἰς +ὁ +κοιλία +ὁ +μήτηρ +αὐτός +δεύτερος +εἰσέρχομαι +καί +γεννάω +ἀποκρίνομαι +Ἰησοῦς +ἀμήν +ἀμήν +λέγω +σύ +ἐάν +μή +τὶς +γεννάω +ἐκ +ὕδωρ +καί +πνεῦμα +οὐ +δύναμαι +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +θεός +ὁ +γεννάω +ἐκ +ὁ +σάρξ +σάρξ +εἰμί +καί +ὁ +γεννάω +ἐκ +ὁ +πνεῦμα +πνεῦμα +εἰμί +μή +θαυμάζω +ὅτι +λέγω +σύ +δεῖ +σύ +γεννάω +ἄνωθεν +ὁ +πνεῦμα +ὅπου +θέλω +πνέω +καί +ὁ +φωνή +αὐτός +ἀκούω +ἀλλά +οὐ +οἶδα +πόθεν +ἔρχομαι +καί +ποῦ +ὑπάγω +οὕτω +εἰμί +πᾶς +ὁ +γεννάω +ἐκ +ὁ +πνεῦμα +ἀποκρίνομαι +Νικόδημος +καί +λέγω +αὐτός +πῶς +δύναμαι +οὗτος +γίνομαι +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +σύ +εἰμί +ὁ +διδάσκαλος +ὁ +Ἰσραήλ +καί +οὗτος +οὐ +γινώσκω +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +ὅς +οἶδα +λαλέω +καί +ὅς +ὁράω +μαρτυρέω +καί +ὁ +μαρτυρία +ἐγώ +οὐ +λαμβάνω +εἰ +ὁ +ἐπίγειος +λέγω +σύ +καί +οὐ +πιστεύω +πῶς +ἐάν +λέγω +σύ +ὁ +ἐπουράνιος +πιστεύω +καί +οὐδείς +ἀναβαίνω +εἰς +ὁ +οὐρανός +εἰ +μή +ὁ +ἐκ +ὁ +οὐρανός +καταβαίνω +ὁ +υἱός +ὁ +ἄνθρωπος +καί +καθώς +Μωϋσῆς +ὑψόω +ὁ +ὄφις +ἐν +ὁ +ἔρημος +οὕτω +δεῖ +ὑψόω +ὁ +υἱός +ὁ +ἄνθρωπος +ἵνα +πᾶς +ὁ +πιστεύω +ἐν +αὐτός +ἔχω +ζωή +αἰώνιος +γάρ +οὕτω +ἀγαπάω +ὁ +θεός +ὁ +κόσμος +ὥστε +ὁ +υἱός +ὁ +μονογενής +δίδωμι +ἵνα +πᾶς +ὁ +πιστεύω +εἰς +αὐτός +μή +ἀπόλλυμι +ἀλλά +ἔχω +ζωή +αἰώνιος +γάρ +οὐ +ἀποστέλλω +ὁ +θεός +ὁ +υἱός +εἰς +ὁ +κόσμος +ἵνα +κρίνω +ὁ +κόσμος +ἀλλά +ἵνα +σῴζω +ὁ +κόσμος +διά +αὐτός +ὁ +πιστεύω +εἰς +αὐτός +οὐ +κρίνω +ὁ +μή +πιστεύω +ἤδη +κρίνω +ὅτι +μή +πιστεύω +εἰς +ὁ +ὄνομα +ὁ +μονογενής +υἱός +ὁ +θεός +δέ +οὗτος +εἰμί +ὁ +κρίσις +ὅτι +ὁ +φῶς +ἔρχομαι +εἰς +ὁ +κόσμος +καί +ἀγαπάω +ὁ +ἄνθρωπος +μᾶλλον +ὁ +σκότος +ἤ +ὁ +φῶς +γάρ +εἰμί +πονηρός +αὐτός +ὁ +ἔργον +γάρ +πᾶς +ὁ +φαῦλος +πράσσω +μισέω +ὁ +φῶς +καί +οὐ +ἔρχομαι +πρός +ὁ +φῶς +ἵνα +μή +ἐλέγχω +ὁ +ἔργον +αὐτός +δέ +ὁ +ποιέω +ὁ +ἀλήθεια +ἔρχομαι +πρός +ὁ +φῶς +ἵνα +φανερόω +αὐτός +ὁ +ἔργον +ὅτι +ἐν +θεός +εἰμί +ἐργάζομαι +μετά +οὗτος +ἔρχομαι +ὁ +Ἰησοῦς +καί +ὁ +μαθητής +αὐτός +εἰς +ὁ +Ἰουδαῖος +γῆ +καί +ἐκεῖ +διατρίβω +μετά +αὐτός +καί +βαπτίζω +δέ +εἰμί +βαπτίζω +καί +Ἰωάννης +ἐν +Αἰνών +ἐγγύς +ὁ +Σαλείμ +ὅτι +ὕδωρ +πολύς +εἰμί +ἐκεῖ +καί +παραγίνομαι +καί +βαπτίζω +γάρ +οὔπω +εἰμί +βάλλω +εἰς +ὁ +φυλακή +Ἰωάννης +οὖν +γίνομαι +ζήτησις +ἐκ +ὁ +μαθητής +Ἰωάννης +μετά +Ἰουδαῖος +περί +καθαρισμός +καί +ἔρχομαι +πρός +ὁ +Ἰωάννης +καί +λέγω +αὐτός +ῥαββί +ὅς +εἰμί +μετά +σύ +πέραν +ὁ +Ἰορδάνης +ὅς +σύ +μαρτυρέω +ὁράω +οὗτος +βαπτίζω +καί +πᾶς +ἔρχομαι +πρός +αὐτός +ἀποκρίνομαι +Ἰωάννης +καί +λέγω +οὐ +δύναμαι +ἄνθρωπος +λαμβάνω +οὐδείς +ἐάν +μή +εἰμί +δίδωμι +αὐτός +ἐκ +ὁ +οὐρανός +αὐτός +σύ +ἐγώ +μαρτυρέω +ὅτι +λέγω +οὐ +εἰμί +ἐγώ +ὁ +Χριστός +ἀλλά +ὅτι +ἀποστέλλω +εἰμί +ἔμπροσθεν +ἐκεῖνος +ὁ +ἔχω +ὁ +νύμφη +νυμφίος +εἰμί +δέ +ὁ +φίλος +ὁ +νυμφίος +ὁ +ἵστημι +καί +ἀκούω +αὐτός +χαρά +χαίρω +διά +ὁ +φωνή +ὁ +νυμφίος +οὖν +οὗτος +ὁ +χαρά +ὁ +ἐμός +πληρόω +δεῖ +ἐκεῖνος +αὐξάνω +δέ +ἐγώ +ἐλαττόω +ὁ +ἄνωθεν +ἔρχομαι +ἐπάνω +πᾶς +εἰμί +ὁ +εἰμί +ἐκ +ὁ +γῆ +ἐκ +ὁ +γῆ +εἰμί +καί +ἐκ +ὁ +γῆ +λαλέω +ὁ +ἐκ +ὁ +οὐρανός +ἔρχομαι +ἐπάνω +πᾶς +εἰμί +ὅς +ὁράω +καί +ἀκούω +οὗτος +μαρτυρέω +καί +ὁ +μαρτυρία +αὐτός +οὐδείς +λαμβάνω +ὁ +λαμβάνω +αὐτός +ὁ +μαρτυρία +σφραγίζω +ὅτι +ὁ +θεός +ἀληθής +εἰμί +γάρ +ὅς +ἀποστέλλω +ὁ +θεός +ὁ +ῥῆμα +ὁ +θεός +λαλέω +γάρ +οὐ +ἐκ +μέτρον +δίδωμι +ὁ +πνεῦμα +ὁ +πατήρ +ἀγαπάω +ὁ +υἱός +καί +πᾶς +δίδωμι +ἐν +ὁ +χείρ +αὐτός +ὁ +πιστεύω +εἰς +ὁ +υἱός +ἔχω +ζωή +αἰώνιος +δέ +ὁ +ἀπειθέω +ὁ +υἱός +οὐ +ὁράω +ζωή +ἀλλά +ὁ +ὀργή +ὁ +θεός +μένω +ἐπί +αὐτός +οὖν +ὡς +γινώσκω +ὁ +κύριος +ὅτι +ἀκούω +ὁ +Φαρισαῖος +ὅτι +Ἰησοῦς +πολύς +μαθητής +ποιέω +καί +βαπτίζω +ἤ +Ἰωάννης +καίτοιγε +Ἰησοῦς +αὐτός +οὐ +βαπτίζω +ἀλλά +ὁ +μαθητής +αὐτός +ἀφίημι +ὁ +Ἰουδαία +καί +ἀπέρχομαι +πάλιν +εἰς +ὁ +Γαλιλαία +δέ +δεῖ +αὐτός +διέρχομαι +διά +ὁ +Σαμάρεια +οὖν +ἔρχομαι +εἰς +πόλις +ὁ +Σαμάρεια +λέγω +Συχάρ +πλησίον +ὁ +χωρίον +ὅς +δίδωμι +Ἰακώβ +Ἰωσήφ +ὁ +υἱός +αὐτός +δέ +εἰμί +ἐκεῖ +πηγή +ὁ +Ἰακώβ +οὖν +ὁ +Ἰησοῦς +κοπιάω +ἐκ +ὁ +ὁδοιπορία +καθέζομαι +οὕτω +ἐπί +ὁ +πηγή +ὥρα +εἰμί +ὡς +ἕκτος +ἔρχομαι +γυνή +ἐκ +ὁ +Σαμάρεια +ἀντλέω +ὕδωρ +λέγω +αὐτός +ὁ +Ἰησοῦς +δίδωμι +ἐγώ +πίνω +γάρ +ὁ +μαθητής +αὐτός +ἀπέρχομαι +εἰς +ὁ +πόλις +ἵνα +τροφή +ἀγοράζω +οὖν +λέγω +αὐτός +ὁ +γυνή +ὁ +Σαμαρῖτις +πῶς +σύ +Ἰουδαῖος +εἰμί +παρά +ἐγώ +γυνή +Σαμαρῖτις +εἰμί +πίνω +αἰτέω +γάρ +οὐ +συγχράομαι +Ἰουδαῖος +Σαμαρίτης +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +εἰ +οἶδα +ὁ +δωρεά +ὁ +θεός +καί +τίς +εἰμί +ὁ +λέγω +σύ +δίδωμι +ἐγώ +πίνω +ἄν +σύ +αἰτέω +αὐτός +καί +ἄν +δίδωμι +σύ +ὕδωρ +ζάω +λέγω +αὐτός +κύριος +οὔτε +ἄντλημα +ἔχω +καί +ὁ +φρέαρ +εἰμί +βαθύς +οὖν +πόθεν +ἔχω +ὁ +ὕδωρ +ὁ +ζάω +μή +σύ +μέγας +εἰμί +ὁ +πατήρ +ἐγώ +Ἰακώβ +ὅς +δίδωμι +ἐγώ +ὁ +φρέαρ +καί +αὐτός +ἐκ +αὐτός +πίνω +καί +ὁ +υἱός +αὐτός +καί +ὁ +θρέμμα +αὐτός +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +πᾶς +ὁ +πίνω +ἐκ +ὁ +ὕδωρ +οὗτος +διψάω +πάλιν +δέ +ἄν +ὅς +πίνω +ἐκ +ὁ +ὕδωρ +ὅς +ἐγώ +δίδωμι +αὐτός +οὐ +μή +διψάω +εἰς +ὁ +αἰών +ἀλλά +ὁ +ὕδωρ +ὅς +δίδωμι +αὐτός +γίνομαι +ἐν +αὐτός +πηγή +ὕδωρ +ἅλλομαι +εἰς +ζωή +αἰώνιος +λέγω +πρός +αὐτός +ὁ +γυνή +κύριος +δίδωμι +ἐγώ +οὗτος +ὁ +ὕδωρ +ἵνα +μή +διψάω +μηδέ +διέρχομαι +ἐνθάδε +ἀντλέω +λέγω +αὐτός +ὑπάγω +φωνέω +ὁ +ἀνήρ +σύ +καί +ἔρχομαι +ἐνθάδε +ἀποκρίνομαι +ὁ +γυνή +καί +λέγω +οὐ +ἔχω +ἀνήρ +λέγω +αὐτός +ὁ +Ἰησοῦς +καλῶς +λέγω +ὅτι +ἀνήρ +οὐ +ἔχω +γάρ +πέντε +ἀνήρ +ἔχω +καί +ὅς +νῦν +ἔχω +οὐ +εἰμί +σύ +ἀνήρ +οὗτος +ἀληθής +εἶπον +λέγω +αὐτός +ὁ +γυνή +κύριος +θεωρέω +ὅτι +προφήτης +εἰμί +σύ +ὁ +πατήρ +ἐγώ +ἐν +ὁ +ὄρος +οὗτος +προσκυνέω +καί +σύ +λέγω +ὅτι +ἐν +Ἱεροσόλυμα +εἰμί +ὁ +τόπος +ὅπου +προσκυνέω +δεῖ +λέγω +αὐτός +ὁ +Ἰησοῦς +πιστεύω +ἐγώ +γυνή +ὅτι +ἔρχομαι +ὥρα +ὅτε +οὔτε +ἐν +ὁ +ὄρος +οὗτος +οὔτε +ἐν +Ἱεροσόλυμα +προσκυνέω +ὁ +πατήρ +σύ +προσκυνέω +ὅς +οὐ +οἶδα +ἐγώ +προσκυνέω +ὅς +οἶδα +ὅτι +ὁ +σωτηρία +ἐκ +ὁ +Ἰουδαῖος +εἰμί +ἀλλά +ἔρχομαι +ὥρα +καί +νῦν +εἰμί +ὅτε +ὁ +ἀληθινός +προσκυνητής +προσκυνέω +ὁ +πατήρ +ἐν +πνεῦμα +καί +ἀλήθεια +γάρ +καί +ὁ +πατήρ +τοιοῦτος +ζητέω +ὁ +προσκυνέω +αὐτός +πνεῦμα +ὁ +θεός +καί +ὁ +προσκυνέω +ἐν +πνεῦμα +καί +ἀλήθεια +προσκυνέω +δεῖ +λέγω +αὐτός +ὁ +γυνή +οἶδα +ὅτι +Μεσσίας +ὁ +λέγω +Χριστός +ἔρχομαι +ὅταν +ἔρχομαι +ἐκεῖνος +ἀναγγέλλω +ἐγώ +ἅπας +λέγω +αὐτός +ὁ +Ἰησοῦς +ἐγώ +ὁ +λαλέω +σύ +εἰμί +καί +ἐπί +οὗτος +ἔρχομαι +ὁ +μαθητής +αὐτός +καί +θαυμάζω +ὅτι +μετά +γυνή +λαλέω +μέντοι +οὐδείς +λέγω +τίς +ζητέω +ἤ +τίς +λαλέω +μετά +αὐτός +οὖν +ἀφίημι +ὁ +ὑδρία +αὐτός +ὁ +γυνή +καί +ἀπέρχομαι +εἰς +ὁ +πόλις +καί +λέγω +ὁ +ἄνθρωπος +δεῦτε +ὁράω +ἄνθρωπος +ὅς +λέγω +ἐγώ +πᾶς +ὅς +ποιέω +μήτι +οὗτος +εἰμί +ὁ +Χριστός +ἐξέρχομαι +ἐκ +ὁ +πόλις +καί +ἔρχομαι +πρός +αὐτός +ἐν +ὁ +μεταξύ +ἐρωτάω +αὐτός +ὁ +μαθητής +λέγω +ῥαββί +ἐσθίω +δέ +ὁ +λέγω +αὐτός +ἐγώ +βρῶσις +ἔχω +ἐσθίω +ὅς +σύ +οὐ +οἶδα +οὖν +λέγω +ὁ +μαθητής +πρός +ἀλλήλων +μή +τὶς +φέρω +αὐτός +ἐσθίω +λέγω +αὐτός +ὁ +Ἰησοῦς +ἐμός +βρῶμα +εἰμί +ἵνα +ποιέω +ὁ +θέλημα +ὁ +πέμπω +ἐγώ +καί +τελειόω +αὐτός +ὁ +ἔργον +οὐ +σύ +λέγω +ὅτι +ἔτι +τετράμηνος +εἰμί +καί +ὁ +θερισμός +ἔρχομαι +ὁράω +λέγω +σύ +ἐπαίρω +ὁ +ὀφθαλμός +σύ +καί +θεάομαι +ὁ +χώρα +ὅτι +λευκός +εἰμί +πρός +θερισμός +ἤδη +ὁ +θερίζω +μισθός +λαμβάνω +καί +συνάγω +καρπός +εἰς +ζωή +αἰώνιος +ἵνα +ὁμοῦ +χαίρω +ὁ +σπείρω +καί +ὁ +θερίζω +γάρ +ἐν +οὗτος +ὁ +λόγος +εἰμί +ἀληθινός +ὅτι +ἄλλος +εἰμί +ὁ +σπείρω +καί +ἄλλος +ὁ +θερίζω +ἐγώ +ἀποστέλλω +σύ +θερίζω +ὅς +οὐ +σύ +κοπιάω +ἄλλος +κοπιάω +καί +σύ +εἰς +ὁ +κόπος +αὐτός +εἰσέρχομαι +δέ +ἐκ +ὁ +πόλις +ἐκεῖνος +πολύς +ὁ +Σαμαρίτης +πιστεύω +εἰς +αὐτός +διά +ὁ +λόγος +ὁ +γυνή +μαρτυρέω +ὅτι +λέγω +ἐγώ +πᾶς +ὅς +ποιέω +οὖν +ὡς +ἔρχομαι +πρός +αὐτός +ὁ +Σαμαρίτης +ἐρωτάω +αὐτός +μένω +παρά +αὐτός +καί +μένω +ἐκεῖ +δύο +ἡμέρα +καί +πολύς +πολύς +πιστεύω +διά +ὁ +λόγος +αὐτός +τέ +ὁ +γυνή +λέγω +ὅτι +οὐκέτι +διά +ὁ +σός +λαλιά +πιστεύω +γάρ +αὐτός +ἀκούω +καί +οἶδα +ὅτι +οὗτος +εἰμί +ἀληθῶς +ὁ +σωτήρ +ὁ +κόσμος +δέ +μετά +ὁ +δύο +ἡμέρα +ἐξέρχομαι +ἐκεῖθεν +εἰς +ὁ +Γαλιλαία +γάρ +αὐτός +Ἰησοῦς +μαρτυρέω +ὅτι +προφήτης +ἐν +ὁ +ἴδιος +πατρίς +τιμή +οὐ +ἔχω +οὖν +ὅτε +ἔρχομαι +εἰς +ὁ +Γαλιλαία +δέχομαι +αὐτός +ὁ +Γαλιλαῖος +ὁράω +πᾶς +ὅσος +ποιέω +ἐν +Ἱεροσόλυμα +ἐν +ὁ +ἑορτή +γάρ +καί +αὐτός +ἔρχομαι +εἰς +ὁ +ἑορτή +οὖν +ἔρχομαι +πάλιν +εἰς +ὁ +Κανά +ὁ +Γαλιλαία +ὅπου +ποιέω +ὁ +ὕδωρ +οἶνος +καί +εἰμί +τὶς +βασιλικός +ὅς +ὁ +υἱός +ἀσθενέω +ἐν +Καφαρναούμ +οὗτος +ἀκούω +ὅτι +Ἰησοῦς +ἥκω +ἐκ +ὁ +Ἰουδαία +εἰς +ὁ +Γαλιλαία +ἀπέρχομαι +πρός +αὐτός +καί +ἐρωτάω +ἵνα +καταβαίνω +καί +ἰάομαι +αὐτός +ὁ +υἱός +γάρ +μέλλω +ἀποθνῄσκω +οὖν +λέγω +ὁ +Ἰησοῦς +πρός +αὐτός +ἐάν +μή +σημεῖον +καί +τέρας +ὁράω +οὐ +μή +πιστεύω +λέγω +πρός +αὐτός +ὁ +βασιλικός +κύριος +καταβαίνω +πρίν +ἀποθνῄσκω +ὁ +παιδίον +ἐγώ +λέγω +αὐτός +ὁ +Ἰησοῦς +πορεύομαι +ὁ +υἱός +σύ +ζάω +πιστεύω +ὁ +ἄνθρωπος +ὁ +λόγος +ὅς +λέγω +αὐτός +ὁ +Ἰησοῦς +καί +πορεύομαι +δέ +ἤδη +αὐτός +καταβαίνω +ὁ +δοῦλος (II) +ὑπαντάω +αὐτός +λέγω +ὅτι +ὁ +παῖς +αὐτός +ζάω +οὖν +πυνθάνομαι +ὁ +ὥρα +παρά +αὐτός +ἐν +ὅς +κομψότερον +ἔχω +οὖν +λέγω +αὐτός +ὅτι +ἐχθές +ὥρα +ἕβδομος +ἀφίημι +αὐτός +ὁ +πυρετός +οὖν +γινώσκω +ὁ +πατήρ +ὅτι +ἐκεῖνος +ὁ +ὥρα +ἐν +ὅς +λέγω +αὐτός +ὁ +Ἰησοῦς +ὁ +υἱός +σύ +ζάω +καί +πιστεύω +αὐτός +καί +ὁ +οἰκία +αὐτός +ὅλος +δέ +πάλιν +οὗτος +δεύτερος +σημεῖον +ποιέω +ὁ +Ἰησοῦς +ἔρχομαι +ἐκ +ὁ +Ἰουδαία +εἰς +ὁ +Γαλιλαία +μετά +οὗτος +εἰμί +ἑορτή +ὁ +Ἰουδαῖος +καί +ἀναβαίνω +Ἰησοῦς +εἰς +Ἱεροσόλυμα +δέ +εἰμί +ἐν +ὁ +Ἱεροσόλυμα +ἐπί +ὁ +προβατικός +κολυμβήθρα +ὁ +ἐπιλέγω +Ἑβραϊστί +Βηθζαθά +πέντε +στοά +ἔχω +ἐν +οὗτος +κατάκειμαι +πλῆθος +ὁ +ἀσθενέω +τυφλός +χωλός +ξηρός +ἐκδέχομαι +ὁ +ὁ +ὕδωρ +κίνησις +γάρ +ἄγγελος +κατά +καιρός +καταβαίνω +ἐν +ὁ +κολυμβήθρα +καί +ταράσσω +ὁ +ὕδωρ +οὖν +ὁ +πρῶτος +ἐμβαίνω +μετά +ὁ +ταραχή +ὁ +ὕδωρ +ὑγιής +γίνομαι +ὅς +δήποτε +κατέχω +νόσημα +δέ +εἰμί +τὶς +ἄνθρωπος +ἐκεῖ +τριάκοντα +καί +ὀκτώ +ἔτος +ἔχω +ἐν +ὁ +ἀσθένεια +αὐτός +ὁ +Ἰησοῦς +οὗτος +κατάκειμαι +ὁράω +καί +γινώσκω +ὅτι +πολύς +χρόνος +ἤδη +ἔχω +λέγω +αὐτός +θέλω +ὑγιής +γίνομαι +ἀποκρίνομαι +αὐτός +ὁ +ἀσθενέω +κύριος +ἄνθρωπος +οὐ +ἔχω +ἵνα +ὅταν +ταράσσω +ὁ +ὕδωρ +βάλλω +ἐγώ +εἰς +ὁ +κολυμβήθρα +δέ +ἐν +ὅς +ἔρχομαι +ἐγώ +ἄλλος +πρό +ἐγώ +καταβαίνω +λέγω +αὐτός +ὁ +Ἰησοῦς +ἐγείρω +αἴρω +ὁ +κράβαττος +σύ +καί +περιπατέω +καί +εὐθέως +γίνομαι +ὑγιής +ὁ +ἄνθρωπος +καί +αἴρω +ὁ +κράβαττος +αὐτός +καί +περιπατέω +δέ +εἰμί +σάββατον +ἐν +ἐκεῖνος +ὁ +ἡμέρα +οὖν +λέγω +ὁ +Ἰουδαῖος +ὁ +θεραπεύω +σάββατον +εἰμί +καί +οὐ +ἔξεστι(ν) +σύ +αἴρω +ὁ +κράβαττος +δέ +ὅς +ἀποκρίνομαι +αὐτός +ὁ +ποιέω +ἐγώ +ὑγιής +ἐκεῖνος +ἐγώ +λέγω +αἴρω +ὁ +κράβαττος +σύ +καί +περιπατέω +ἐρωτάω +αὐτός +τίς +εἰμί +ὁ +ἄνθρωπος +ὁ +λέγω +σύ +αἴρω +καί +περιπατέω +δέ +ὁ +ἰάομαι +οὐ +οἶδα +τίς +εἰμί +γάρ +ὁ +Ἰησοῦς +ἐκνεύω +ὄχλος +εἰμί +ἐν +ὁ +τόπος +μετά +οὗτος +εὑρίσκω +αὐτός +ὁ +Ἰησοῦς +ἐν +ὁ +ἱερός +καί +λέγω +αὐτός +ὁράω +ὑγιής +γίνομαι +μηκέτι +ἁμαρτάνω +ἵνα +μή +χείρων +τὶς +σύ +γίνομαι +ἀπέρχομαι +ὁ +ἄνθρωπος +καί +λέγω +ὁ +Ἰουδαῖος +ὅτι +Ἰησοῦς +εἰμί +ὁ +ποιέω +αὐτός +ὑγιής +καί +διά +οὗτος +διώκω +ὁ +Ἰουδαῖος +ὁ +Ἰησοῦς +ὅτι +οὗτος +ποιέω +ἐν +σάββατον +δέ +ὁ +ἀποκρίνομαι +αὐτός +ὁ +πατήρ +ἐγώ +ἕως +ἄρτι +ἐργάζομαι +κἀγώ +ἐργάζομαι +οὖν +διά +οὗτος +μᾶλλον +ζητέω +αὐτός +ἀποκτείνω +ὁ +Ἰουδαῖος +ὅτι +οὐ +μόνος +λύω +ὁ +σάββατον +ἀλλά +καί +πατήρ +ἴδιος +λέγω +ὁ +θεός +ἴσος +ἑαυτοῦ +ποιέω +ὁ +θεός +οὖν +ἀποκρίνομαι +ὁ +Ἰησοῦς +καί +λέγω +αὐτός +ἀμήν +ἀμήν +λέγω +σύ +οὐ +δύναμαι +ὁ +υἱός +ποιέω +ἀπό +ἑαυτοῦ +οὐδείς +ἄν +μή +βλέπω +τὶς +ὁ +πατήρ +ποιέω +γάρ +ἄν +ὅς +ἐκεῖνος +ποιέω +οὗτος +καί +ὁ +υἱός +ὁμοίως +ποιέω +γάρ +ὁ +πατήρ +φιλέω +ὁ +υἱός +καί +δείκνυμι +αὐτός +πᾶς +ὅς +αὐτός +ποιέω +καί +μέγας +οὗτος +ἔργον +δείκνυμι +αὐτός +ἵνα +σύ +θαυμάζω +γάρ +ὥσπερ +ὁ +πατήρ +ἐγείρω +ὁ +νεκρός +καί +ζῳοποιέω +οὕτω +καί +ὁ +υἱός +ὅς +θέλω +ζῳοποιέω +γάρ +οὐδέ +ὁ +πατήρ +κρίνω +οὐδείς +ἀλλά +ὁ +κρίσις +πᾶς +δίδωμι +ὁ +υἱός +ἵνα +πᾶς +τιμάω +ὁ +υἱός +καθώς +τιμάω +ὁ +πατήρ +ὁ +μή +τιμάω +ὁ +υἱός +οὐ +τιμάω +ὁ +πατήρ +ὁ +πέμπω +αὐτός +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +ὁ +ὁ +λόγος +ἐγώ +ἀκούω +καί +πιστεύω +ὁ +πέμπω +ἐγώ +ἔχω +ζωή +αἰώνιος +καί +εἰς +κρίσις +οὐ +ἔρχομαι +ἀλλά +μεταβαίνω +ἐκ +ὁ +θάνατος +εἰς +ὁ +ζωή +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +ἔρχομαι +ὥρα +καί +νῦν +εἰμί +ὅτε +ὁ +νεκρός +ἀκούω +ὁ +φωνή +ὁ +υἱός +ὁ +θεός +καί +ὁ +ἀκούω +ζάω +γάρ +ὥσπερ +ὁ +πατήρ +ἔχω +ζωή +ἐν +ἑαυτοῦ +οὕτω +καί +ὁ +υἱός +δίδωμι +ζωή +ἔχω +ἐν +ἑαυτοῦ +καί +ἐξουσία +δίδωμι +αὐτός +κρίσις +ποιέω +ὅτι +υἱός +ἄνθρωπος +εἰμί +μή +θαυμάζω +οὗτος +ὅτι +ἔρχομαι +ὥρα +ἐν +ὅς +πᾶς +ὁ +ἐν +ὁ +μνημεῖον +ἀκούω +ὁ +φωνή +αὐτός +καί +ἐκπορεύομαι +ὁ +ὁ +ἀγαθός +ποιέω +εἰς +ἀνάστασις +ζωή +ὁ +ὁ +φαῦλος +πράσσω +εἰς +ἀνάστασις +κρίσις +οὐ +δύναμαι +ἐγώ +ποιέω +ἀπό +ἐμαυτοῦ +οὐδείς +καθώς +ἀκούω +κρίνω +καί +ὁ +κρίσις +ὁ +ἐμός +δίκαιος +εἰμί +ὅτι +οὐ +ζητέω +ὁ +θέλημα +ὁ +ἐμός +ἀλλά +ὁ +θέλημα +ὁ +πέμπω +ἐγώ +ἐάν +ἐγώ +μαρτυρέω +περί +ἐμαυτοῦ +ὁ +μαρτυρία +ἐγώ +οὐ +εἰμί +ἀληθής +ἄλλος +εἰμί +ὁ +μαρτυρέω +περί +ἐγώ +καί +οἶδα +ὅτι +ἀληθής +εἰμί +ὁ +μαρτυρία +ὅς +μαρτυρέω +περί +ἐγώ +σύ +ἀποστέλλω +πρός +Ἰωάννης +καί +μαρτυρέω +ὁ +ἀλήθεια +δέ +ἐγώ +οὐ +παρά +ἄνθρωπος +ὁ +μαρτυρία +λαμβάνω +ἀλλά +οὗτος +λέγω +ἵνα +σύ +σῴζω +ἐκεῖνος +εἰμί +ὁ +λύχνος +ὁ +καίω +καί +φαίνω +δέ +σύ +θέλω +ἀγαλλιάω +πρός +ὥρα +ἐν +ὁ +φῶς +αὐτός +δέ +ἐγώ +ἔχω +ὁ +μαρτυρία +μέγας +ὁ +Ἰωάννης +γάρ +ὁ +ἔργον +ὅς +δίδωμι +ἐγώ +ὁ +πατήρ +ἵνα +τελειόω +αὐτός +αὐτός +ὁ +ἔργον +ὅς +ποιέω +μαρτυρέω +περί +ἐγώ +ὅτι +ὁ +πατήρ +ἐγώ +ἀποστέλλω +καί +ὁ +πέμπω +ἐγώ +πατήρ +ἐκεῖνος +μαρτυρέω +περί +ἐγώ +οὔτε +φωνή +αὐτός +πώποτε +ἀκούω +οὔτε +εἶδος +αὐτός +ὁράω +καί +οὐ +ἔχω +ὁ +λόγος +αὐτός +ἐν +σύ +μένω +ὅτι +ὅς +ἀποστέλλω +ἐκεῖνος +οὗτος +σύ +οὐ +πιστεύω +ἐραυνάω +ὁ +γραφή +ὅτι +σύ +δοκέω +ἐν +αὐτός +ζωή +αἰώνιος +ἔχω +καί +ἐκεῖνος +εἰμί +ὁ +μαρτυρέω +περί +ἐγώ +καί +οὐ +θέλω +ἔρχομαι +πρός +ἐγώ +ἵνα +ζωή +ἔχω +δόξα +παρά +ἄνθρωπος +οὐ +λαμβάνω +ἀλλά +γινώσκω +σύ +ὅτι +ὁ +ἀγάπη +ὁ +θεός +οὐ +ἔχω +ἐν +ἑαυτοῦ +ἐγώ +ἔρχομαι +ἐν +ὁ +ὄνομα +ὁ +πατήρ +ἐγώ +καί +οὐ +λαμβάνω +ἐγώ +ἐάν +ἄλλος +ἔρχομαι +ἐν +ὁ +ὄνομα +ὁ +ἴδιος +ἐκεῖνος +λαμβάνω +πῶς +δύναμαι +σύ +πιστεύω +δόξα +παρά +ἀλλήλων +λαμβάνω +καί +ὁ +δόξα +ὁ +παρά +ὁ +μόνος +θεός +οὐ +ζητέω +μή +δοκέω +ὅτι +ἐγώ +κατηγορέω +σύ +πρός +ὁ +πατήρ +εἰμί +ὁ +κατηγορέω +σύ +Μωϋσῆς +εἰς +ὅς +σύ +ἐλπίζω +γάρ +εἰ +πιστεύω +Μωϋσῆς +ἄν +πιστεύω +ἐγώ +γάρ +περί +ἐγώ +ἐκεῖνος +γράφω +δέ +εἰ +ὁ +ἐκεῖνος +γράμμα +οὐ +πιστεύω +πῶς +ὁ +ἐμός +ῥῆμα +πιστεύω +μετά +οὗτος +ἀπέρχομαι +ὁ +Ἰησοῦς +πέραν +ὁ +θάλασσα +ὁ +Γαλιλαία +ὁ +Τιβεριάς +δέ +ἀκολουθέω +αὐτός +ὄχλος +πολύς +ὅτι +ὁράω +ὁ +σημεῖον +ὅς +ποιέω +ἐπί +ὁ +ἀσθενέω +δέ +ἀνέρχομαι +εἰς +ὁ +ὄρος +Ἰησοῦς +καί +ἐκεῖ +κάθημαι +μετά +ὁ +μαθητής +αὐτός +δέ +εἰμί +ἐγγύς +ὁ +πάσχα +ὁ +ἑορτή +ὁ +Ἰουδαῖος +οὖν +ὁ +Ἰησοῦς +ἐπαίρω +ὁ +ὀφθαλμός +καί +θεάομαι +ὅτι +πολύς +ὄχλος +ἔρχομαι +πρός +αὐτός +λέγω +πρός +Φίλιππος +πόθεν +ἀγοράζω +ἄρτος +ἵνα +ἐσθίω +οὗτος +δέ +οὗτος +λέγω +πειράζω +αὐτός +γάρ +αὐτός +οἶδα +τίς +ποιέω +μέλλω +ἀποκρίνομαι +αὐτός +ὁ +Φίλιππος +διακόσιοι +δηνάριον +ἄρτος +οὐ +ἀρκέω +αὐτός +ἵνα +ἕκαστος +βραχύς +τὶς +λαμβάνω +λέγω +αὐτός +εἷς +ἐκ +ὁ +μαθητής +αὐτός +Ἀνδρέας +ὁ +ἀδελφός +Σίμων +Πέτρος +εἰμί +παιδάριον +ὧδε +ὅς +ἔχω +πέντε +ἄρτος +κρίθινος +καί +δύο +ὀψάριον +ἀλλά +οὗτος +τίς +εἰμί +εἰς +τοσοῦτος +λέγω +ὁ +Ἰησοῦς +ποιέω +ὁ +ἄνθρωπος +ἀναπίπτω +δέ +εἰμί +χόρτος +πολύς +ἐν +ὁ +τόπος +οὖν +ἀναπίπτω +ὁ +ἀνήρ +ὁ +ἀριθμός +ὡς +πεντακισχίλιοι +οὖν +λαμβάνω +ὁ +ἄρτος +ὁ +Ἰησοῦς +καί +εὐχαριστέω +διαδίδωμι +ὁ +ἀνάκειμαι +ὁμοίως +καί +ἐκ +ὁ +ὀψάριον +ὅσος +θέλω +δέ +ὡς +ἐμπίπλημι +λέγω +ὁ +μαθητής +αὐτός +συνάγω +ὁ +περισσεύω +κλάσμα +ἵνα +μή +τὶς +ἀπόλλυμι +οὖν +συνάγω +καί +γεμίζω +δώδεκα +κόφινος +κλάσμα +ἐκ +ὁ +πέντε +ἄρτος +ὁ +κρίθινος +ὅς +περισσεύω +ὁ +βιβρώσκω +οὖν +ὁ +ἄνθρωπος +ὁράω +ὅς +ποιέω +σημεῖον +λέγω +ὅτι +οὗτος +εἰμί +ἀληθῶς +ὁ +προφήτης +ὁ +ἔρχομαι +εἰς +ὁ +κόσμος +οὖν +γινώσκω +ὅτι +μέλλω +ἔρχομαι +καί +ἁρπάζω +αὐτός +ἵνα +ποιέω +βασιλεύς +ἀναχωρέω +πάλιν +εἰς +ὁ +ὄρος +Ἰησοῦς +αὐτός +μόνος +δέ +ὡς +ὄψιος +γίνομαι +καταβαίνω +ὁ +μαθητής +αὐτός +ἐπί +ὁ +θάλασσα +καί +ἐμβαίνω +εἰς +πλοῖον +ἔρχομαι +πέραν +ὁ +θάλασσα +εἰς +Καφαρναούμ +καί +σκοτία +ἤδη +γίνομαι +καί +οὔπω +ἔρχομαι +πρός +αὐτός +ὁ +Ἰησοῦς +τέ +ὁ +θάλασσα +ἄνεμος +μέγας +πνέω +διεγείρω +οὖν +ἐλαύνω +ὡς +στάδιον +εἴκοσι +πέντε +ἤ +τριάκοντα +θεωρέω +ὁ +Ἰησοῦς +περιπατέω +ἐπί +ὁ +θάλασσα +καί +ἐγγύς +ὁ +πλοῖον +γίνομαι +καί +φοβέω +δέ +ὁ +λέγω +αὐτός +ἐγώ +εἰμί +μή +φοβέω +οὖν +θέλω +λαμβάνω +αὐτός +εἰς +ὁ +πλοῖον +καί +εὐθέως +γίνομαι +ὁ +πλοῖον +ἐπί +ὁ +γῆ +εἰς +ὅς +ὑπάγω +ὁ +ἐπαύριον +ὁ +ὄχλος +ὁ +ἵστημι +πέραν +ὁ +θάλασσα +ὁράω +ὅτι +πλοιάριον +ἄλλος +οὐ +εἰμί +ἐκεῖ +εἰ +μή +εἷς +καί +ὅτι +οὐ +συνεισέρχομαι +ὁ +μαθητής +αὐτός +ὁ +Ἰησοῦς +εἰς +ὁ +πλοῖον +ἀλλά +μόνος +ὁ +μαθητής +αὐτός +ἀπέρχομαι +ἀλλά +πλοιάριον +ἔρχομαι +ἐκ +Τιβεριάς +ἐγγύς +ὁ +τόπος +ὅπου +ἐσθίω +ὁ +ἄρτος +εὐχαριστέω +ὁ +κύριος +οὖν +ὅτε +ὁράω +ὁ +ὄχλος +ὅτι +Ἰησοῦς +οὐ +εἰμί +ἐκεῖ +οὐδέ +ὁ +μαθητής +αὐτός +ἐμβαίνω +αὐτός +εἰς +ὁ +πλοιάριον +καί +ἔρχομαι +εἰς +Καφαρναούμ +ζητέω +ὁ +Ἰησοῦς +καί +εὑρίσκω +αὐτός +πέραν +ὁ +θάλασσα +λέγω +αὐτός +ῥαββί +πότε +ὧδε +γίνομαι +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +καί +λέγω +ἀμήν +ἀμήν +λέγω +σύ +ζητέω +ἐγώ +οὐ +ὅτι +ὁράω +σημεῖον +ἀλλά +ὅτι +ἐσθίω +ἐκ +ὁ +ἄρτος +καί +χορτάζω +ἐργάζομαι +μή +ὁ +βρῶσις +ὁ +ἀπόλλυμι +ἀλλά +ὁ +βρῶσις +ὁ +μένω +εἰς +ζωή +αἰώνιος +ὅς +ὁ +υἱός +ὁ +ἄνθρωπος +σύ +δίδωμι +γάρ +οὗτος +ὁ +πατήρ +ὁ +θεός +σφραγίζω +οὖν +λέγω +πρός +αὐτός +τίς +ποιέω +ἵνα +ἐργάζομαι +ὁ +ἔργον +ὁ +θεός +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +οὗτος +εἰμί +ὁ +ἔργον +ὁ +θεός +ἵνα +πιστεύω +εἰς +ὅς +ἀποστέλλω +ἐκεῖνος +οὖν +λέγω +αὐτός +οὖν +τίς +σημεῖον +ποιέω +σύ +ἵνα +ὁράω +καί +πιστεύω +σύ +τίς +ἐργάζομαι +ὁ +πατήρ +ἐγώ +ὁ +μάννα +ἐσθίω +ἐν +ὁ +ἔρημος +καθώς +εἰμί +γράφω +ἄρτος +ἐκ +ὁ +οὐρανός +δίδωμι +αὐτός +ἐσθίω +οὖν +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀμήν +ἀμήν +λέγω +σύ +οὐ +Μωϋσῆς +δίδωμι +σύ +ὁ +ἄρτος +ἐκ +ὁ +οὐρανός +ἀλλά +ὁ +πατήρ +ἐγώ +δίδωμι +σύ +ὁ +ἄρτος +ἐκ +ὁ +οὐρανός +ὁ +ἀληθινός +γάρ +ὁ +ἄρτος +ὁ +θεός +εἰμί +ὁ +καταβαίνω +ἐκ +ὁ +οὐρανός +καί +ζωή +δίδωμι +ὁ +κόσμος +οὖν +λέγω +πρός +αὐτός +κύριος +πάντοτε +δίδωμι +ἐγώ +ὁ +ἄρτος +οὗτος +λέγω +αὐτός +ὁ +Ἰησοῦς +ἐγώ +εἰμί +ὁ +ἄρτος +ὁ +ζωή +ὁ +ἔρχομαι +πρός +ἐγώ +οὐ +μή +πεινάω +καί +ὁ +πιστεύω +εἰς +ἐγώ +οὐ +μή +διψάω +πώποτε +ἀλλά +λέγω +σύ +ὅτι +καί +ὁράω +ἐγώ +καί +οὐ +πιστεύω +πᾶς +ὅς +δίδωμι +ἐγώ +ὁ +πατήρ +πρός +ἐγώ +ἥκω +καί +ὁ +ἔρχομαι +πρός +ἐγώ +οὐ +μή +ἐκβάλλω +ἔξω +ὅτι +καταβαίνω +ἀπό +ὁ +οὐρανός +οὐ +ἵνα +ποιέω +ὁ +θέλημα +ὁ +ἐμός +ἀλλά +ὁ +θέλημα +ὁ +πέμπω +ἐγώ +δέ +οὗτος +εἰμί +ὁ +θέλημα +ὁ +πέμπω +ἐγώ +ἵνα +πᾶς +ὅς +δίδωμι +ἐγώ +μή +ἀπόλλυμι +ἐκ +αὐτός +ἀλλά +ἀνίστημι +αὐτός +ἐν +ὁ +ἔσχατος +ἡμέρα +γάρ +οὗτος +εἰμί +ὁ +θέλημα +ὁ +πατήρ +ἐγώ +ἵνα +πᾶς +ὁ +θεωρέω +ὁ +υἱός +καί +πιστεύω +εἰς +αὐτός +ἔχω +ζωή +αἰώνιος +καί +ἀνίστημι +αὐτός +ἐγώ +ἐν +ὁ +ἔσχατος +ἡμέρα +οὖν +γογγύζω +ὁ +Ἰουδαῖος +περί +αὐτός +ὅτι +λέγω +ἐγώ +εἰμί +ὁ +ἄρτος +ὁ +καταβαίνω +ἐκ +ὁ +οὐρανός +καί +λέγω +οὐ +οὗτος +εἰμί +Ἰησοῦς +ὁ +υἱός +Ἰωσήφ +ὅς +ἐγώ +οἶδα +ὁ +πατήρ +καί +ὁ +μήτηρ +πῶς +νῦν +λέγω +ὅτι +ἐκ +ὁ +οὐρανός +καταβαίνω +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +μή +γογγύζω +μετά +ἀλλήλων +οὐδείς +δύναμαι +ἔρχομαι +πρός +ἐγώ +ἐάν +μή +ὁ +πατήρ +ὁ +πέμπω +ἐγώ +ἕλκω +αὐτός +κἀγώ +ἀνίστημι +αὐτός +ἐν +ὁ +ἔσχατος +ἡμέρα +εἰμί +γράφω +ἐν +ὁ +προφήτης +καί +εἰμί +πᾶς +διδακτός +θεός +πᾶς +ὁ +ἀκούω +παρά +ὁ +πατήρ +καί +μανθάνω +ἔρχομαι +πρός +ἐγώ +οὐ +ὅτι +ὁ +πατήρ +ὁράω +τὶς +εἰ +μή +ὁ +εἰμί +παρά +ὁ +θεός +οὗτος +ὁράω +ὁ +πατήρ +ἀμήν +ἀμήν +λέγω +σύ +ὁ +πιστεύω +ἔχω +ζωή +αἰώνιος +ἐγώ +εἰμί +ὁ +ἄρτος +ὁ +ζωή +ὁ +πατήρ +σύ +ἐσθίω +ἐν +ὁ +ἔρημος +ὁ +μάννα +καί +ἀποθνῄσκω +οὗτος +εἰμί +ὁ +ἄρτος +ὁ +ἐκ +ὁ +οὐρανός +καταβαίνω +ἵνα +τὶς +ἐκ +αὐτός +ἐσθίω +καί +μή +ἀποθνῄσκω +ἐγώ +εἰμί +ὁ +ἄρτος +ὁ +ζάω +ὁ +ἐκ +ὁ +οὐρανός +καταβαίνω +ἐάν +τὶς +ἐσθίω +ἐκ +οὗτος +ὁ +ἄρτος +ζάω +εἰς +ὁ +αἰών +δέ +καί +ὁ +ἄρτος +ὅς +ἐγώ +δίδωμι +ὁ +σάρξ +ἐγώ +εἰμί +ὑπέρ +ὁ +ὁ +κόσμος +ζωή +οὖν +μάχομαι +πρός +ἀλλήλων +ὁ +Ἰουδαῖος +λέγω +πῶς +δύναμαι +οὗτος +ἐγώ +δίδωμι +ὁ +σάρξ +ἐσθίω +οὖν +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀμήν +ἀμήν +λέγω +σύ +ἐάν +μή +ἐσθίω +ὁ +σάρξ +ὁ +υἱός +ὁ +ἄνθρωπος +καί +πίνω +αὐτός +ὁ +αἷμα +οὐ +ἔχω +ζωή +ἐν +ἑαυτοῦ +ὁ +τρώγω +ἐγώ +ὁ +σάρξ +καί +πίνω +ἐγώ +ὁ +αἷμα +ἔχω +ζωή +αἰώνιος +κἀγώ +ἀνίστημι +αὐτός +ὁ +ἔσχατος +ἡμέρα +γάρ +ὁ +σάρξ +ἐγώ +ἀληθής +βρῶσις +εἰμί +καί +ὁ +αἷμα +ἐγώ +ἀληθής +πόσις +εἰμί +ὁ +τρώγω +ἐγώ +ὁ +σάρξ +καί +πίνω +ἐγώ +ὁ +αἷμα +ἐν +ἐγώ +μένω +κἀγώ +ἐν +αὐτός +καθώς +ἀποστέλλω +ἐγώ +ὁ +ζάω +πατήρ +κἀγώ +ζάω +διά +ὁ +πατήρ +καί +ὁ +τρώγω +ἐγώ +κἀκεῖνος +ζάω +διά +ἐγώ +οὗτος +εἰμί +ὁ +ἄρτος +ὁ +ἐκ +οὐρανός +καταβαίνω +οὐ +καθώς +ἐσθίω +ὁ +πατήρ +καί +ἀποθνῄσκω +ὁ +τρώγω +οὗτος +ὁ +ἄρτος +ζάω +εἰς +ὁ +αἰών +οὗτος +λέγω +ἐν +συναγωγή +διδάσκω +ἐν +Καφαρναούμ +οὖν +πολύς +ἐκ +ὁ +μαθητής +αὐτός +ἀκούω +λέγω +σκληρός +εἰμί +ὁ +λόγος +οὗτος +τίς +δύναμαι +αὐτός +ἀκούω +δέ +ὁ +Ἰησοῦς +οἶδα +ἐν +ἑαυτοῦ +ὅτι +γογγύζω +περί +οὗτος +ὁ +μαθητής +αὐτός +λέγω +αὐτός +οὗτος +σύ +σκανδαλίζω +οὖν +ἐάν +θεωρέω +ὁ +υἱός +ὁ +ἄνθρωπος +ἀναβαίνω +ὅπου +εἰμί +ὁ +πρότερος +ὁ +πνεῦμα +εἰμί +ὁ +ζῳοποιέω +ὁ +σάρξ +οὐ +ὠφελέω +οὐδείς +ὁ +ῥῆμα +ὅς +ἐγώ +λαλέω +σύ +πνεῦμα +εἰμί +καί +ζωή +εἰμί +ἀλλά +εἰμί +ἐκ +σύ +τὶς +ὅς +οὐ +πιστεύω +γάρ +οἶδα +ἐκ +ἀρχή +ὁ +Ἰησοῦς +τίς +εἰμί +ὁ +μή +πιστεύω +καί +τίς +εἰμί +ὁ +παραδίδωμι +αὐτός +καί +λέγω +διά +οὗτος +εἶπον +σύ +ὅτι +οὐδείς +δύναμαι +ἔρχομαι +πρός +ἐγώ +ἐάν +μή +εἰμί +δίδωμι +αὐτός +ἐκ +ὁ +πατήρ +ἐκ +οὗτος +πολύς +ὁ +μαθητής +αὐτός +ἀπέρχομαι +εἰς +ὁ +ὀπίσω +καί +οὐκέτι +μετά +αὐτός +περιπατέω +οὖν +λέγω +ὁ +Ἰησοῦς +ὁ +δώδεκα +μή +καί +σύ +θέλω +ὑπάγω +ἀποκρίνομαι +αὐτός +Σίμων +Πέτρος +κύριος +πρός +τίς +ἀπέρχομαι +ῥῆμα +ζωή +αἰώνιος +ἔχω +καί +ἐγώ +πιστεύω +καί +γινώσκω +ὅτι +σύ +εἰμί +ὁ +ἅγιος +ὁ +θεός +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +οὐ +ἐγώ +σύ +ὁ +δώδεκα +ἐκλέγω +καί +ἐκ +σύ +εἷς +διάβολος +εἰμί +δέ +λέγω +ὁ +Ἰούδας +Σίμων +Ἰσκαριώθ +γάρ +οὗτος +μέλλω +παραδίδωμι +αὐτός +εἷς +ἐκ +ὁ +δώδεκα +καί +μετά +οὗτος +περιπατέω +ὁ +Ἰησοῦς +ἐν +ὁ +Γαλιλαία +γάρ +οὐ +θέλω +ἐν +ὁ +Ἰουδαία +περιπατέω +ὅτι +ζητέω +αὐτός +ἀποκτείνω +ὁ +Ἰουδαῖος +δέ +εἰμί +ἐγγύς +ὁ +ἑορτή +ὁ +Ἰουδαῖος +ὁ +σκηνοπηγία +οὖν +λέγω +πρός +αὐτός +ὁ +ἀδελφός +αὐτός +μεταβαίνω +ἐντεῦθεν +καί +ὑπάγω +εἰς +ὁ +Ἰουδαία +ἵνα +καί +ὁ +μαθητής +σύ +θεωρέω +ὁ +ἔργον +σύ +ὅς +ποιέω +γάρ +οὐδείς +τὶς +ἐν +κρυπτός +ποιέω +καί +ζητέω +αὐτός +ἐν +παρρησία +εἰμί +εἰ +οὗτος +ποιέω +φανερόω +σεαυτοῦ +ὁ +κόσμος +γάρ +οὐδέ +ὁ +ἀδελφός +αὐτός +πιστεύω +εἰς +αὐτός +οὖν +λέγω +αὐτός +ὁ +Ἰησοῦς +ὁ +καιρός +ὁ +ἐμός +οὔπω +πάρειμι +δέ +ὁ +καιρός +ὁ +ὑμέτερος +πάντοτε +εἰμί +ἕτοιμος +οὐ +δύναμαι +ὁ +κόσμος +μισέω +σύ +δέ +ἐγώ +μισέω +ὅτι +ἐγώ +μαρτυρέω +περί +αὐτός +ὅτι +ὁ +ἔργον +αὐτός +πονηρός +εἰμί +σύ +ἀναβαίνω +εἰς +ὁ +ἑορτή +ἐγώ +οὔπω +ἀναβαίνω +εἰς +ὁ +ἑορτή +οὗτος +ὅτι +ὁ +ἐμός +καιρός +οὔπω +πληρόω +δέ +οὗτος +λέγω +αὐτός +μένω +ἐν +ὁ +Γαλιλαία +δέ +ὡς +ἀναβαίνω +ὁ +ἀδελφός +αὐτός +εἰς +ὁ +ἑορτή +τότε +καί +αὐτός +ἀναβαίνω +οὐ +φανερῶς +ἀλλά +ὡς +ἐν +κρυπτός +οὖν +ὁ +Ἰουδαῖος +ζητέω +αὐτός +ἐν +ὁ +ἑορτή +καί +λέγω +ποῦ +εἰμί +ἐκεῖνος +καί +γογγυσμός +περί +αὐτός +εἰμί +πολύς +ἐν +ὁ +ὄχλος +μέν +ὁ +λέγω +ὅτι +ἀγαθός +εἰμί +δέ +ἄλλος +λέγω +οὐ +ἀλλά +πλανάω +ὁ +ὄχλος +μέντοι +οὐδείς +παρρησία +λαλέω +περί +αὐτός +διά +ὁ +φόβος +ὁ +Ἰουδαῖος +δέ +ἤδη +ὁ +ἑορτή +μεσόω +ἀναβαίνω +Ἰησοῦς +εἰς +ὁ +ἱερός +καί +διδάσκω +οὖν +θαυμάζω +ὁ +Ἰουδαῖος +λέγω +πῶς +οὗτος +γράμμα +οἶδα +μή +μανθάνω +οὖν +ἀποκρίνομαι +αὐτός +Ἰησοῦς +καί +λέγω +ὁ +ἐμός +διδαχή +οὐ +εἰμί +ἐμός +ἀλλά +ὁ +πέμπω +ἐγώ +ἐάν +τὶς +θέλω +ὁ +θέλημα +αὐτός +ποιέω +γινώσκω +περί +ὁ +διδαχή +πότερον +ἐκ +ὁ +θεός +εἰμί +ἤ +ἐγώ +ἀπό +ἐμαυτοῦ +λαλέω +ὁ +ἀπό +ἑαυτοῦ +λαλέω +ὁ +δόξα +ὁ +ἴδιος +ζητέω +δέ +ὁ +ζητέω +ὁ +δόξα +ὁ +πέμπω +αὐτός +οὗτος +ἀληθής +εἰμί +καί +ἀδικία +ἐν +αὐτός +οὐ +εἰμί +οὐ +Μωϋσῆς +δίδωμι +σύ +ὁ +νόμος +καί +οὐδείς +ἐκ +σύ +ποιέω +ὁ +νόμος +τίς +ἐγώ +ἀποκτείνω +ζητέω +ἀποκρίνομαι +ὁ +ὄχλος +δαιμόνιον +ἔχω +τίς +σύ +ἀποκτείνω +ζητέω +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +εἷς +ἔργον +ποιέω +καί +πᾶς +θαυμάζω +διά +οὗτος +Μωϋσῆς +δίδωμι +σύ +ὁ +περιτομή +ὅτι +οὐ +ἐκ +ὁ +Μωϋσῆς +εἰμί +ἀλλά +ἐκ +ὁ +πατήρ +καί +ἐν +σάββατον +περιτέμνω +ἄνθρωπος +εἰ +περιτομή +λαμβάνω +ἄνθρωπος +ἐν +σάββατον +ἵνα +μή +λύω +ὁ +νόμος +Μωϋσῆς +ἐγώ +χολάω +ὅτι +ὅλος +ἄνθρωπος +ὑγιής +ποιέω +ἐν +σάββατον +μή +κρίνω +κατά +ὄψις +ἀλλά +ὁ +δίκαιος +κρίσις +κρίνω +οὖν +λέγω +τὶς +ἐκ +ὁ +Ἱεροσολυμίτης +οὐ +οὗτος +εἰμί +ὅς +ἀποκτείνω +ζητέω +καί +ὁράω +παρρησία +λαλέω +καί +οὐδείς +αὐτός +λέγω +μή +ποτέ +ἀληθῶς +γινώσκω +ὁ +ἄρχων +ὅτι +οὗτος +εἰμί +ὁ +Χριστός +ἀλλά +οὗτος +οἶδα +πόθεν +εἰμί +δέ +ὁ +Χριστός +ὅταν +ἔρχομαι +οὐδείς +γινώσκω +πόθεν +εἰμί +οὖν +κράζω +ἐν +ὁ +ἱερός +διδάσκω +ὁ +Ἰησοῦς +καί +λέγω +κἀγώ +οἶδα +καί +οἶδα +πόθεν +εἰμί +καί +ἀπό +ἐμαυτοῦ +οὐ +ἔρχομαι +ἀλλά +εἰμί +ἀληθινός +ὁ +πέμπω +ἐγώ +ὅς +σύ +οὐ +οἶδα +ἐγώ +οἶδα +αὐτός +ὅτι +παρά +αὐτός +εἰμί +κἀκεῖνος +ἐγώ +ἀποστέλλω +οὖν +ζητέω +αὐτός +πιάζω +καί +οὐδείς +ἐπιβάλλω +ἐπί +αὐτός +ὁ +χείρ +ὅτι +οὔπω +ἔρχομαι +ὁ +ὥρα +αὐτός +δέ +ἐκ +ὁ +ὄχλος +πολύς +πιστεύω +εἰς +αὐτός +καί +λέγω +ὁ +Χριστός +ὅταν +ἔρχομαι +μή +πολύς +σημεῖον +ποιέω +ὅς +οὗτος +ποιέω +ἀκούω +ὁ +Φαρισαῖος +ὁ +ὄχλος +γογγύζω +περί +αὐτός +οὗτος +καί +ἀποστέλλω +ὁ +ἀρχιερεύς +καί +ὁ +Φαρισαῖος +ὑπηρέτης +ἵνα +πιάζω +αὐτός +οὖν +λέγω +ὁ +Ἰησοῦς +ἔτι +χρόνος +μικρός +μετά +σύ +εἰμί +καί +ὑπάγω +πρός +ὁ +πέμπω +ἐγώ +ζητέω +ἐγώ +καί +οὐ +εὑρίσκω +καί +ὅπου +εἰμί +ἐγώ +ἔρχομαι +σύ +οὐ +δύναμαι +οὖν +λέγω +ὁ +Ἰουδαῖος +πρός +ἑαυτοῦ +ποῦ +πορεύομαι +οὗτος +μέλλω +ὅτι +ἐγώ +οὐ +εὑρίσκω +αὐτός +μή +μέλλω +εἰς +ὁ +διασπορά +ὁ +Ἕλλην +πορεύομαι +καί +διδάσκω +ὁ +Ἕλλην +τίς +εἰμί +ὁ +λόγος +οὗτος +ὅς +λέγω +ζητέω +ἐγώ +καί +οὐ +εὑρίσκω +καί +ὅπου +εἰμί +ἐγώ +ἔρχομαι +σύ +οὐ +δύναμαι +δέ +ἐν +ὁ +ἔσχατος +ἡμέρα +ὁ +μέγας +ὁ +ἑορτή +ἵστημι +ὁ +Ἰησοῦς +καί +κράζω +λέγω +ἐάν +τὶς +διψάω +ἔρχομαι +πρός +ἐγώ +καί +πίνω +ὁ +πιστεύω +εἰς +ἐγώ +καθώς +λέγω +ὁ +γραφή +ποταμός +ὕδωρ +ζάω +ἐκ +ὁ +κοιλία +αὐτός +ῥέω +δέ +οὗτος +λέγω +περί +ὁ +πνεῦμα +ὅς +λαμβάνω +μέλλω +ὁ +πιστεύω +εἰς +αὐτός +γάρ +οὔπω +εἰμί +πνεῦμα +ὅτι +Ἰησοῦς +οὐδέπω +δοξάζω +οὖν +ἐκ +ὁ +ὄχλος +ἀκούω +ὁ +λόγος +οὗτος +λέγω +οὗτος +εἰμί +ἀληθῶς +ὁ +προφήτης +ἄλλος +λέγω +οὗτος +εἰμί +ὁ +Χριστός +δέ +ὁ +λέγω +γάρ +μή +ἐκ +ὁ +Γαλιλαία +ὁ +Χριστός +ἔρχομαι +οὐ +ὁ +γραφή +λέγω +ὅτι +ἐκ +ὁ +σπέρμα +Δαυίδ +καί +ἀπό +Βηθλέεμ +ὁ +κώμη +ὅπου +εἰμί +Δαυίδ +ἔρχομαι +ὁ +Χριστός +οὖν +σχίσμα +γίνομαι +ἐν +ὁ +ὄχλος +διά +αὐτός +δέ +τὶς +ἐκ +αὐτός +θέλω +πιάζω +αὐτός +ἀλλά +οὐδείς +ἐπιβάλλω +ἐπί +αὐτός +ὁ +χείρ +οὖν +ἔρχομαι +ὁ +ὑπηρέτης +πρός +ὁ +ἀρχιερεύς +καί +Φαρισαῖος +καί +λέγω +αὐτός +ἐκεῖνος +διά +τίς +οὐ +ἄγω +αὐτός +ἀποκρίνομαι +ὁ +ὑπηρέτης +οὐδέποτε +λαλέω +οὕτω +ἄνθρωπος +ὡς +οὗτος +ὁ +ἄνθρωπος +λαλέω +οὖν +ἀποκρίνομαι +αὐτός +ὁ +Φαρισαῖος +μή +καί +σύ +πλανάω +μή +τὶς +ἐκ +ὁ +ἄρχων +πιστεύω +εἰς +αὐτός +ἤ +ἐκ +ὁ +Φαρισαῖος +ἀλλά +ὁ +ὄχλος +οὗτος +ὁ +μή +γινώσκω +ὁ +νόμος +ἐπάρατος +εἰμί +λέγω +πρός +αὐτός +Νικόδημος +ὁ +ἔρχομαι +πρός +αὐτός +πρότερος +εἰμί +εἷς +ἐκ +αὐτός +μή +ὁ +νόμος +ἐγώ +κρίνω +ὁ +ἄνθρωπος +ἐάν +μή +ἀκούω +πρῶτος +παρά +αὐτός +καί +γινώσκω +τίς +ποιέω +ἀποκρίνομαι +καί +λέγω +αὐτός +μή +καί +σύ +ἐκ +ὁ +Γαλιλαία +εἰμί +ἐραυνάω +καί +ὁράω +ὅτι +ἐκ +ὁ +Γαλιλαία +προφήτης +οὐ +ἐγείρω +καί +πορεύομαι +ἕκαστος +εἰς +ὁ +οἶκος +αὐτός +δέ +Ἰησοῦς +πορεύομαι +εἰς +ὁ +ὄρος +ὁ +ἐλαία +δέ +ὄρθρος +πάλιν +παραγίνομαι +εἰς +ὁ +ἱερός +καί +πᾶς +ὁ +λαός +ἔρχομαι +πρός +αὐτός +καί +καθίζω +διδάσκω +αὐτός +δέ +ἄγω +ὁ +γραμματεύς +καί +ὁ +Φαρισαῖος +πρός +αὐτός +γυνή +ἐν +μοιχεία +καταλαμβάνω +καί +ἵστημι +αὐτός +ἐν +μέσος +λέγω +αὐτός +διδάσκαλος +οὗτος +ὁ +γυνή +καταλαμβάνω +ἐπαυτοφώρῳ +μοιχεύω +δέ +ἐν +ὁ +νόμος +Μωϋσῆς +ἐγώ +ἐντέλλομαι +ὁ +τοιοῦτος +λιθοβολέω +οὖν +σύ +τίς +λέγω +δέ +οὗτος +λέγω +πειράζω +αὐτός +ἵνα +ἔχω +κατηγορέω +αὐτός +δέ +ὁ +Ἰησοῦς +κάτω +κύπτω +ὁ +δάκτυλος +γράφω +εἰς +ὁ +γῆ +δέ +ὡς +ἐπιμένω +ἐρωτάω +αὐτός +ἀνακύπτω +λέγω +πρός +αὐτός +ὁ +ἀναμάρτητος +σύ +πρῶτος +ὁ +λίθος +ἐπί +αὐτός +βάλλω +καί +πάλιν +κάτω +κύπτω +γράφω +εἰς +ὁ +γῆ +δέ +ὁ +ἀκούω +καί +ὑπό +ὁ +συνείδησις +ἐλέγχω +ἐξέρχομαι +εἷς +καθεῖς +ἄρχω +ἀπό +ὁ +πρεσβύτερος +ἕως +ὁ +ἔσχατος +καί +καταλείπω +μόνος +ὁ +Ἰησοῦς +καί +ὁ +γυνή +ἐν +μέσος +ἵστημι +δέ +ὁ +Ἰησοῦς +ἀνακύπτω +καί +μηδείς +θεάομαι +πλήν +ὁ +γυνή +λέγω +αὐτός +ὁ +γυνή +ποῦ +εἰμί +ἐκεῖνος +ὁ +κατήγορος +σύ +οὐδείς +σύ +κατακρίνω +δέ +ὁ +λέγω +οὐδείς +κύριος +δέ +λέγω +αὐτός +ὁ +Ἰησοῦς +οὐδέ +ἐγώ +σύ +κατακρίνω +πορεύομαι +καί +μηκέτι +ἁμαρτάνω +οὖν +πάλιν +αὐτός +λαλέω +ὁ +Ἰησοῦς +λέγω +ἐγώ +εἰμί +ὁ +φῶς +ὁ +κόσμος +ὁ +ἀκολουθέω +ἐγώ +οὐ +μή +περιπατέω +ἐν +ὁ +σκοτία +ἀλλά +ἔχω +ὁ +φῶς +ὁ +ζωή +οὖν +λέγω +αὐτός +ὁ +Φαρισαῖος +σύ +περί +σεαυτοῦ +μαρτυρέω +ὁ +μαρτυρία +σύ +οὐ +εἰμί +ἀληθής +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +κἄν +ἐγώ +μαρτυρέω +περί +ἐμαυτοῦ +ἀληθής +εἰμί +ὁ +μαρτυρία +ἐγώ +ὅτι +οἶδα +πόθεν +ἔρχομαι +καί +ποῦ +ὑπάγω +δέ +σύ +οὐ +οἶδα +πόθεν +ἔρχομαι +ἤ +ποῦ +ὑπάγω +σύ +κατά +ὁ +σάρξ +κρίνω +ἐγώ +οὐ +κρίνω +οὐδείς +δέ +ἐάν +καί +κρίνω +ἐγώ +ὁ +κρίσις +ὁ +ἐμός +ἀληθινός +εἰμί +ὅτι +μόνος +οὐ +εἰμί +ἀλλά +ἐγώ +καί +ὁ +πέμπω +ἐγώ +δέ +καί +ἐν +ὁ +νόμος +ὁ +ὑμέτερος +γράφω +ὅτι +δύο +ἄνθρωπος +ὁ +μαρτυρία +ἀληθής +εἰμί +ἐγώ +εἰμί +ὁ +μαρτυρέω +περί +ἐμαυτοῦ +καί +μαρτυρέω +περί +ἐγώ +ὁ +πέμπω +ἐγώ +πατήρ +οὖν +λέγω +αὐτός +ποῦ +εἰμί +ὁ +πατήρ +σύ +ἀποκρίνομαι +Ἰησοῦς +οὔτε +ἐγώ +οἶδα +οὔτε +ὁ +πατήρ +ἐγώ +εἰ +ἐγώ +οἶδα +ἄν +καί +ὁ +πατήρ +ἐγώ +οἶδα +οὗτος +ὁ +ῥῆμα +λαλέω +ἐν +ὁ +γαζοφυλάκιον +διδάσκω +ἐν +ὁ +ἱερός +καί +οὐδείς +πιάζω +αὐτός +ὅτι +οὔπω +ἔρχομαι +ὁ +ὥρα +αὐτός +οὖν +λέγω +πάλιν +αὐτός +ἐγώ +ὑπάγω +καί +ζητέω +ἐγώ +καί +ἐν +ὁ +ἁμαρτία +σύ +ἀποθνῄσκω +ὅπου +ἐγώ +ὑπάγω +ἔρχομαι +σύ +οὐ +δύναμαι +οὖν +λέγω +ὁ +Ἰουδαῖος +μήτι +ἀποκτείνω +ἑαυτοῦ +ὅτι +λέγω +ὅπου +ἐγώ +ὑπάγω +ἔρχομαι +σύ +οὐ +δύναμαι +καί +λέγω +αὐτός +σύ +ἐκ +ὁ +κάτω +εἰμί +ἐγώ +ἐκ +ὁ +ἄνω +εἰμί +σύ +ἐκ +οὗτος +ὁ +κόσμος +εἰμί +ἐγώ +οὐ +εἰμί +ἐκ +ὁ +κόσμος +οὗτος +οὖν +λέγω +σύ +ὅτι +ἀποθνῄσκω +ἐν +ὁ +ἁμαρτία +σύ +γάρ +ἐάν +μή +πιστεύω +ὅτι +ἐγώ +εἰμί +ἀποθνῄσκω +ἐν +ὁ +ἁμαρτία +σύ +οὖν +λέγω +αὐτός +σύ +τίς +εἰμί +λέγω +αὐτός +ὁ +Ἰησοῦς +τὶς +ὅς +ὁ +ἀρχή +καί +λαλέω +σύ +ἔχω +πολύς +περί +σύ +λαλέω +καί +κρίνω +ἀλλά +ὁ +πέμπω +ἐγώ +ἀληθής +εἰμί +ὅς +κἀγώ +ἀκούω +παρά +αὐτός +οὗτος +λαλέω +εἰς +ὁ +κόσμος +οὐ +γινώσκω +ὅτι +ὁ +πατήρ +αὐτός +λέγω +οὖν +λέγω +ὁ +Ἰησοῦς +ὅταν +ὑψόω +ὁ +υἱός +ὁ +ἄνθρωπος +τότε +γινώσκω +ὅτι +ἐγώ +εἰμί +καί +ἀπό +ἐμαυτοῦ +ποιέω +οὐδείς +ἀλλά +καθώς +διδάσκω +ἐγώ +ὁ +πατήρ +οὗτος +λαλέω +καί +ὁ +πέμπω +ἐγώ +μετά +ἐγώ +εἰμί +οὐ +ἀφίημι +ἐγώ +μόνος +ὅτι +ἐγώ +ὁ +ἀρεστός +αὐτός +ποιέω +πάντοτε +οὗτος +αὐτός +λαλέω +πολύς +πιστεύω +εἰς +αὐτός +οὖν +λέγω +ὁ +Ἰησοῦς +πρός +ὁ +πιστεύω +αὐτός +Ἰουδαῖος +ἐάν +σύ +μένω +ἐν +ὁ +λόγος +ὁ +ἐμός +ἀληθῶς +μαθητής +ἐγώ +εἰμί +καί +γινώσκω +ὁ +ἀλήθεια +καί +ὁ +ἀλήθεια +ἐλευθερόω +σύ +ἀποκρίνομαι +πρός +αὐτός +σπέρμα +Ἀβραάμ +εἰμί +καί +οὐδείς +δουλεύω +πώποτε +πῶς +σύ +λέγω +ὅτι +ἐλεύθερος +γίνομαι +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +πᾶς +ὁ +ποιέω +ὁ +ἁμαρτία +εἰμί +δοῦλος (II) +ὁ +ἁμαρτία +δέ +ὁ +δοῦλος (II) +οὐ +μένω +ἐν +ὁ +οἰκία +εἰς +ὁ +αἰών +ὁ +υἱός +μένω +εἰς +ὁ +αἰών +οὖν +ἐάν +ὁ +υἱός +σύ +ἐλευθερόω +ὄντως +ἐλεύθερος +εἰμί +οἶδα +ὅτι +σπέρμα +Ἀβραάμ +εἰμί +ἀλλά +ζητέω +ἐγώ +ἀποκτείνω +ὅτι +ὁ +λόγος +ὁ +ἐμός +οὐ +χωρέω +ἐν +σύ +ὅς +ἐγώ +ὁράω +παρά +ὁ +πατήρ +λαλέω +οὖν +καί +σύ +ὅς +ἀκούω +παρά +ὁ +πατήρ +ποιέω +ἀποκρίνομαι +καί +λέγω +αὐτός +ὁ +πατήρ +ἐγώ +Ἀβραάμ +εἰμί +λέγω +αὐτός +ὁ +Ἰησοῦς +εἰ +τέκνον +ὁ +Ἀβραάμ +εἰμί +ὁ +ἔργον +ὁ +Ἀβραάμ +ποιέω +δέ +νῦν +ζητέω +ἀποκτείνω +ἐγώ +ἄνθρωπος +ὅς +ὁ +ἀλήθεια +σύ +λαλέω +ὅς +ἀκούω +παρά +ὁ +θεός +οὗτος +Ἀβραάμ +οὐ +ποιέω +σύ +ποιέω +ὁ +ἔργον +ὁ +πατήρ +σύ +λέγω +αὐτός +ἐγώ +ἐκ +πορνεία +οὐ +γεννάω +εἷς +πατήρ +ὁ +θεός +ἔχω +λέγω +αὐτός +ὁ +Ἰησοῦς +εἰ +ὁ +θεός +πατήρ +σύ +εἰμί +ἄν +ἀγαπάω +ἐγώ +γάρ +ἐγώ +ἐκ +ὁ +θεός +ἐξέρχομαι +καί +ἥκω +γάρ +οὐδέ +ἀπό +ἐμαυτοῦ +ἔρχομαι +ἀλλά +ἐκεῖνος +ἐγώ +ἀποστέλλω +διά +τίς +ὁ +λαλιά +ὁ +ἐμός +οὐ +γινώσκω +ὅτι +οὐ +δύναμαι +ἀκούω +ὁ +λόγος +ὁ +ἐμός +σύ +ἐκ +ὁ +πατήρ +ὁ +διάβολος +εἰμί +καί +ὁ +ἐπιθυμία +ὁ +πατήρ +σύ +ποιέω +θέλω +ἐκεῖνος +ἀνθρωποκτόνος +εἰμί +ἀπό +ἀρχή +καί +ἐν +ὁ +ἀλήθεια +οὐ +στήκω +ὅτι +οὐ +εἰμί +ἀλήθεια +ἐν +αὐτός +ὅταν +λαλέω +ὁ +ψεῦδος +ἐκ +ὁ +ἴδιος +λαλέω +ὅτι +ψεύστης +εἰμί +καί +ὁ +πατήρ +αὐτός +δέ +ἐγώ +ὅτι +ὁ +ἀλήθεια +λέγω +οὐ +πιστεύω +ἐγώ +τίς +ἐκ +σύ +ἐλέγχω +ἐγώ +περί +ἁμαρτία +εἰ +ἀλήθεια +λέγω +διά +τίς +σύ +οὐ +πιστεύω +ἐγώ +ὁ +εἰμί +ἐκ +ὁ +θεός +ὁ +ῥῆμα +ὁ +θεός +ἀκούω +διά +οὗτος +σύ +οὐ +ἀκούω +ὅτι +ἐκ +ὁ +θεός +οὐ +εἰμί +ἀποκρίνομαι +ὁ +Ἰουδαῖος +καί +λέγω +αὐτός +οὐ +καλῶς +λέγω +ἐγώ +ὅτι +Σαμαρίτης +εἰμί +σύ +καί +δαιμόνιον +ἔχω +ἀποκρίνομαι +Ἰησοῦς +ἐγώ +δαιμόνιον +οὐ +ἔχω +ἀλλά +τιμάω +ὁ +πατήρ +ἐγώ +καί +σύ +ἀτιμάζω +ἐγώ +δέ +ἐγώ +οὐ +ζητέω +ὁ +δόξα +ἐγώ +εἰμί +ὁ +ζητέω +καί +κρίνω +ἀμήν +ἀμήν +λέγω +σύ +ἐάν +τὶς +ὁ +ἐμός +λόγος +τηρέω +θάνατος +οὐ +μή +θεωρέω +εἰς +ὁ +αἰών +λέγω +αὐτός +ὁ +Ἰουδαῖος +νῦν +γινώσκω +ὅτι +δαιμόνιον +ἔχω +Ἀβραάμ +ἀποθνῄσκω +καί +ὁ +προφήτης +καί +σύ +λέγω +ἐάν +τὶς +ὁ +λόγος +ἐγώ +τηρέω +οὐ +μή +γεύομαι +θάνατος +εἰς +ὁ +αἰών +μή +σύ +μέγας +εἰμί +ὁ +πατήρ +ἐγώ +Ἀβραάμ +ὅστις +ἀποθνῄσκω +καί +ὁ +προφήτης +ἀποθνῄσκω +τίς +σεαυτοῦ +ποιέω +ἀποκρίνομαι +Ἰησοῦς +ἐάν +ἐγώ +δοξάζω +ἐμαυτοῦ +ὁ +δόξα +ἐγώ +οὐδείς +εἰμί +εἰμί +ὁ +πατήρ +ἐγώ +ὁ +δοξάζω +ἐγώ +ὅς +σύ +λέγω +ὅτι +θεός +ἐγώ +εἰμί +καί +οὐ +γινώσκω +αὐτός +δέ +ἐγώ +οἶδα +αὐτός +κἄν +λέγω +ὅτι +οὐ +οἶδα +αὐτός +εἰμί +ὅμοιος +σύ +ψεύστης +ἀλλά +οἶδα +αὐτός +καί +ὁ +λόγος +αὐτός +τηρέω +Ἀβραάμ +ὁ +πατήρ +σύ +ἀγαλλιάω +ἵνα +ὁράω +ὁ +ἡμέρα +ὁ +ἐμός +καί +ὁράω +καί +χαίρω +οὖν +λέγω +ὁ +Ἰουδαῖος +πρός +αὐτός +πεντήκοντα +ἔτος +οὔπω +ἔχω +καί +Ἀβραάμ +ὁράω +λέγω +αὐτός +Ἰησοῦς +ἀμήν +ἀμήν +λέγω +σύ +πρίν +Ἀβραάμ +γίνομαι +ἐγώ +εἰμί +οὖν +αἴρω +λίθος +ἵνα +βάλλω +ἐπί +αὐτός +δέ +Ἰησοῦς +κρύπτω +καί +ἐξέρχομαι +ἐκ +ὁ +ἱερός +καί +παράγω +ὁράω +ἄνθρωπος +τυφλός +ἐκ +γενετή +καί +ἐρωτάω +αὐτός +ὁ +μαθητής +αὐτός +λέγω +ῥαββί +τίς +ἁμαρτάνω +οὗτος +ἤ +ὁ +γονεύς +αὐτός +ἵνα +τυφλός +γεννάω +ἀποκρίνομαι +Ἰησοῦς +οὔτε +οὗτος +ἁμαρτάνω +οὔτε +ὁ +γονεύς +αὐτός +ἀλλά +ἵνα +φανερόω +ὁ +ἔργον +ὁ +θεός +ἐν +αὐτός +δεῖ +ἐγώ +ἐργάζομαι +ὁ +ἔργον +ὁ +πέμπω +ἐγώ +ἕως +ἡμέρα +εἰμί +ἔρχομαι +νύξ +ὅτε +οὐδείς +δύναμαι +ἐργάζομαι +ὅταν +ἐν +ὁ +κόσμος +εἰμί +εἰμί +φῶς +ὁ +κόσμος +οὗτος +λέγω +πτύω +χαμαί +καί +ποιέω +πηλός +ἐκ +ὁ +πτύσμα +καί +ἐπιτίθημι +αὐτός +ὁ +πηλός +ἐπί +ὁ +ὀφθαλμός +καί +λέγω +αὐτός +ὑπάγω +νίπτω +εἰς +ὁ +κολυμβήθρα +ὁ +Σιλωάμ +ὅς +ἑρμηνεύω +ἀποστέλλω +οὖν +ἀπέρχομαι +καί +νίπτω +καί +ἔρχομαι +βλέπω +οὖν +ὁ +γείτων +καί +ὁ +θεωρέω +αὐτός +ὁ +πρότερος +ὅτι +προσαίτης +εἰμί +λέγω +οὐ +οὗτος +εἰμί +ὁ +κάθημαι +καί +προσαιτέω +ἄλλος +λέγω +ὅτι +οὗτος +εἰμί +ἄλλος +λέγω +οὐχί +ἀλλά +ὅμοιος +αὐτός +εἰμί +ἐκεῖνος +λέγω +ὅτι +ἐγώ +εἰμί +οὖν +λέγω +αὐτός +οὖν +πῶς +ἀνοίγω +σύ +ὁ +ὀφθαλμός +ἀποκρίνομαι +ἐκεῖνος +ὁ +ἄνθρωπος +ὁ +λέγω +Ἰησοῦς +πηλός +ποιέω +καί +ἐπιχρίω +ἐγώ +ὁ +ὀφθαλμός +καί +λέγω +ἐγώ +ὅτι +ὑπάγω +εἰς +ὁ +Σιλωάμ +καί +νίπτω +οὖν +ἀπέρχομαι +καί +νίπτω +ἀναβλέπω +καί +λέγω +αὐτός +ποῦ +εἰμί +ἐκεῖνος +λέγω +οὐ +οἶδα +ἄγω +αὐτός +ὁ +ποτέ +τυφλός +πρός +ὁ +Φαρισαῖος +δέ +εἰμί +σάββατον +ἐν +ὅς +ἡμέρα +ὁ +πηλός +ποιέω +ὁ +Ἰησοῦς +καί +ἀνοίγω +αὐτός +ὁ +ὀφθαλμός +οὖν +πάλιν +ἐρωτάω +αὐτός +καί +ὁ +Φαρισαῖος +πῶς +ἀναβλέπω +δέ +ὁ +λέγω +αὐτός +πηλός +ἐπιτίθημι +ἐπί +ἐγώ +ὁ +ὀφθαλμός +καί +νίπτω +καί +βλέπω +οὖν +λέγω +ἐκ +ὁ +Φαρισαῖος +τὶς +οὐ +εἰμί +παρά +θεός +οὗτος +ὁ +ἄνθρωπος +ὅτι +ὁ +σάββατον +οὐ +τηρέω +ἄλλος +λέγω +πῶς +δύναμαι +ἄνθρωπος +ἁμαρτωλός +τοιοῦτος +σημεῖον +ποιέω +καί +σχίσμα +εἰμί +ἐν +αὐτός +οὖν +λέγω +ὁ +τυφλός +πάλιν +τίς +σύ +λέγω +περί +αὐτός +ὅτι +ἀνοίγω +σύ +ὁ +ὀφθαλμός +δέ +ὁ +λέγω +ὅτι +προφήτης +εἰμί +οὖν +οὐ +πιστεύω +ὁ +Ἰουδαῖος +περί +αὐτός +ὅτι +εἰμί +τυφλός +καί +ἀναβλέπω +ἕως +ὅστις +φωνέω +ὁ +γονεύς +αὐτός +ὁ +ἀναβλέπω +καί +ἐρωτάω +αὐτός +λέγω +οὗτος +εἰμί +ὁ +υἱός +σύ +ὅς +σύ +λέγω +ὅτι +τυφλός +γεννάω +οὖν +πῶς +βλέπω +ἄρτι +οὖν +ἀποκρίνομαι +ὁ +γονεύς +αὐτός +καί +λέγω +οἶδα +ὅτι +οὗτος +εἰμί +ὁ +υἱός +ἐγώ +καί +ὅτι +τυφλός +γεννάω +δέ +πῶς +νῦν +βλέπω +οὐ +οἶδα +ἤ +τίς +ἀνοίγω +αὐτός +ὁ +ὀφθαλμός +ἐγώ +οὐ +οἶδα +αὐτός +ἐρωτάω +ἡλικία +ἔχω +αὐτός +περί +ἑαυτοῦ +λαλέω +οὗτος +λέγω +ὁ +γονεύς +αὐτός +ὅτι +φοβέω +ὁ +Ἰουδαῖος +γάρ +ἤδη +συντίθημι +ὁ +Ἰουδαῖος +ἵνα +ἐάν +τὶς +αὐτός +ὁμολογέω +Χριστός +ἀποσυνάγωγος +γίνομαι +διά +οὗτος +ὁ +γονεύς +αὐτός +λέγω +ὅτι +ἡλικία +ἔχω +αὐτός +ἐπερωτάω +οὖν +φωνέω +ὁ +ἄνθρωπος +ἐκ +δεύτερος +ὅς +εἰμί +τυφλός +καί +λέγω +αὐτός +δίδωμι +δόξα +ὁ +θεός +ἐγώ +οἶδα +ὅτι +οὗτος +ὁ +ἄνθρωπος +ἁμαρτωλός +εἰμί +οὖν +ἀποκρίνομαι +ἐκεῖνος +εἰ +ἁμαρτωλός +εἰμί +οὐ +οἶδα +εἷς +οἶδα +ὅτι +τυφλός +εἰμί +ἄρτι +βλέπω +οὖν +λέγω +αὐτός +τίς +ποιέω +σύ +πῶς +ἀνοίγω +σύ +ὁ +ὀφθαλμός +ἀποκρίνομαι +αὐτός +λέγω +σύ +ἤδη +καί +οὐ +ἀκούω +τίς +πάλιν +θέλω +ἀκούω +μή +καί +σύ +θέλω +αὐτός +μαθητής +γίνομαι +καί +λοιδορέω +αὐτός +καί +λέγω +σύ +μαθητής +ἐκεῖνος +εἰμί +δέ +ἐγώ +ὁ +Μωϋσῆς +μαθητής +εἰμί +ἐγώ +οἶδα +ὅτι +Μωϋσῆς +λαλέω +ὁ +θεός +δέ +οὗτος +οὐ +οἶδα +πόθεν +εἰμί +ἀποκρίνομαι +ὁ +ἄνθρωπος +καί +λέγω +αὐτός +γάρ +ἐν +οὗτος +ὁ +θαυμαστός +εἰμί +ὅτι +σύ +οὐ +οἶδα +πόθεν +εἰμί +καί +ἀνοίγω +ἐγώ +ὁ +ὀφθαλμός +οἶδα +ὅτι +ὁ +θεός +ἁμαρτωλός +οὐ +ἀκούω +ἀλλά +ἐάν +τὶς +θεοσεβής +εἰμί +καί +ὁ +θέλημα +αὐτός +ποιέω +οὗτος +ἀκούω +ἐκ +ὁ +αἰών +οὐ +ἀκούω +ὅτι +ἀνοίγω +τὶς +ὀφθαλμός +τυφλός +γεννάω +εἰ +μή +εἰμί +οὗτος +παρά +θεός +οὐ +δύναμαι +ποιέω +οὐδείς +ἀποκρίνομαι +καί +λέγω +αὐτός +ἐν +ἁμαρτία +σύ +γεννάω +ὅλος +καί +σύ +διδάσκω +ἐγώ +καί +ἐκβάλλω +αὐτός +ἔξω +ἀκούω +Ἰησοῦς +ὅτι +ἐκβάλλω +αὐτός +ἔξω +καί +εὑρίσκω +αὐτός +λέγω +σύ +πιστεύω +εἰς +ὁ +υἱός +ὁ +ἄνθρωπος +ἀποκρίνομαι +ἐκεῖνος +καί +λέγω +καί +τίς +εἰμί +κύριος +ἵνα +πιστεύω +εἰς +αὐτός +λέγω +αὐτός +ὁ +Ἰησοῦς +καί +ὁράω +αὐτός +καί +ὁ +λαλέω +μετά +σύ +ἐκεῖνος +εἰμί +δέ +ὁ +φημί +πιστεύω +κύριος +καί +προσκυνέω +αὐτός +καί +λέγω +ὁ +Ἰησοῦς +εἰς +κρίμα +ἐγώ +εἰς +ὁ +κόσμος +οὗτος +ἔρχομαι +ἵνα +ὁ +μή +βλέπω +βλέπω +καί +ὁ +βλέπω +τυφλός +γίνομαι +ἀκούω +οὗτος +ἐκ +ὁ +Φαρισαῖος +ὁ +μετά +αὐτός +εἰμί +καί +λέγω +αὐτός +μή +καί +ἐγώ +τυφλός +εἰμί +λέγω +αὐτός +ὁ +Ἰησοῦς +εἰ +τυφλός +εἰμί +ἄν +οὐ +ἔχω +ἁμαρτία +δέ +νῦν +λέγω +ὅτι +βλέπω +ὁ +ἁμαρτία +σύ +μένω +ἀμήν +ἀμήν +λέγω +σύ +ὁ +μή +εἰσέρχομαι +διά +ὁ +θύρα +εἰς +ὁ +αὐλή +ὁ +πρόβατον +ἀλλά +ἀναβαίνω +ἀλλαχόθεν +ἐκεῖνος +κλέπτης +εἰμί +καί +λῃστής +δέ +ὁ +εἰσέρχομαι +διά +ὁ +θύρα +εἰμί +ποιμήν +ὁ +πρόβατον +οὗτος +ὁ +θυρωρός +ἀνοίγω +καί +ὁ +πρόβατον +ὁ +φωνή +αὐτός +ἀκούω +καί +ὁ +ἴδιος +πρόβατον +φωνέω +κατά +ὄνομα +καί +ἐξάγω +αὐτός +ὅταν +ὁ +ἴδιος +πᾶς +ἐκβάλλω +ἔμπροσθεν +αὐτός +πορεύομαι +καί +ὁ +πρόβατον +αὐτός +ἀκολουθέω +ὅτι +οἶδα +ὁ +φωνή +αὐτός +δέ +ἀλλότριος +οὐ +μή +ἀκολουθέω +ἀλλά +φεύγω +ἀπό +αὐτός +ὅτι +οὐ +οἶδα +ὁ +ἀλλότριος +ὁ +φωνή +οὗτος +ὁ +παροιμία +λέγω +αὐτός +ὁ +Ἰησοῦς +δέ +ἐκεῖνος +οὐ +γινώσκω +τίς +εἰμί +ὅς +λαλέω +αὐτός +οὖν +λέγω +πάλιν +ὁ +Ἰησοῦς +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +ἐγώ +εἰμί +ὁ +θύρα +ὁ +πρόβατον +πᾶς +ὅσος +ἔρχομαι +πρό +ἐγώ +κλέπτης +εἰμί +καί +λῃστής +ἀλλά +οὐ +ἀκούω +αὐτός +ὁ +πρόβατον +ἐγώ +εἰμί +ὁ +θύρα +ἐάν +διά +ἐγώ +τὶς +εἰσέρχομαι +σῴζω +καί +εἰσέρχομαι +καί +ἐξέρχομαι +καί +νομή +εὑρίσκω +ὁ +κλέπτης +οὐ +ἔρχομαι +εἰ +μή +ἵνα +κλέπτω +καί +θύω +καί +ἀπόλλυμι +ἐγώ +ἔρχομαι +ἵνα +ζωή +ἔχω +καί +περισσός +ἔχω +ἐγώ +εἰμί +ὁ +ποιμήν +ὁ +καλός +ὁ +ποιμήν +ὁ +καλός +ὁ +ψυχή +αὐτός +τίθημι +ὑπέρ +ὁ +πρόβατον +ὁ +μισθωτός +καί +οὐ +εἰμί +ποιμήν +ὅς +οὐ +εἰμί +ὁ +πρόβατον +ἴδιος +θεωρέω +ὁ +λύκος +ἔρχομαι +καί +ἀφίημι +ὁ +πρόβατον +καί +φεύγω +καί +ὁ +λύκος +ἁρπάζω +αὐτός +καί +σκορπίζω +ὅτι +μισθωτός +εἰμί +καί +οὐ +μέλει +αὐτός +περί +ὁ +πρόβατον +ἐγώ +εἰμί +ὁ +ποιμήν +ὁ +καλός +καί +γινώσκω +ὁ +ἐμός +καί +γινώσκω +ἐγώ +ὁ +ἐμός +καθώς +γινώσκω +ἐγώ +ὁ +πατήρ +κἀγώ +γινώσκω +ὁ +πατήρ +καί +ὁ +ψυχή +ἐγώ +τίθημι +ὑπέρ +ὁ +πρόβατον +καί +ἄλλος +πρόβατον +ἔχω +ὅς +οὐ +εἰμί +ἐκ +ὁ +αὐλή +οὗτος +κἀκεῖνος +ἐγώ +ἄγω +δεῖ +καί +ὁ +φωνή +ἐγώ +ἀκούω +καί +γίνομαι +εἷς +ποίμνη +εἷς +ποιμήν +διά +οὗτος +ἐγώ +ὁ +πατήρ +ἀγαπάω +ὅτι +ἐγώ +τίθημι +ὁ +ψυχή +ἐγώ +ἵνα +πάλιν +λαμβάνω +αὐτός +οὐδείς +αἴρω +αὐτός +ἀπό +ἐγώ +ἀλλά +ἐγώ +τίθημι +αὐτός +ἀπό +ἐμαυτοῦ +ἐξουσία +ἔχω +τίθημι +αὐτός +καί +ἐξουσία +ἔχω +πάλιν +λαμβάνω +αὐτός +οὗτος +ὁ +ἐντολή +λαμβάνω +παρά +ὁ +πατήρ +ἐγώ +σχίσμα +πάλιν +γίνομαι +ἐν +ὁ +Ἰουδαῖος +διά +ὁ +λόγος +οὗτος +δέ +λέγω +πολύς +ἐκ +αὐτός +δαιμόνιον +ἔχω +καί +μαίνομαι +τίς +αὐτός +ἀκούω +ἄλλος +λέγω +οὗτος +ὁ +ῥῆμα +οὐ +εἰμί +δαιμονίζομαι +μή +δαιμόνιον +δύναμαι +τυφλός +ὀφθαλμός +ἀνοίγω +γίνομαι +τότε +ὁ +ἐγκαίνια +ἐν +ὁ +Ἱεροσόλυμα +χειμών +εἰμί +καί +περιπατέω +ὁ +Ἰησοῦς +ἐν +ὁ +ἱερός +ἐν +ὁ +στοά +ὁ +Σολομών +οὖν +κυκλόω +αὐτός +ὁ +Ἰουδαῖος +καί +λέγω +αὐτός +ἕως +πότε +ὁ +ψυχή +ἐγώ +αἴρω +εἰ +σύ +εἰμί +ὁ +Χριστός +λέγω +ἐγώ +παρρησία +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +λέγω +σύ +καί +οὐ +πιστεύω +ὁ +ἔργον +ὅς +ἐγώ +ποιέω +ἐν +ὁ +ὄνομα +ὁ +πατήρ +ἐγώ +οὗτος +μαρτυρέω +περί +ἐγώ +ἀλλά +σύ +οὐ +πιστεύω +ὅτι +οὐ +εἰμί +ἐκ +ὁ +πρόβατον +ὁ +ἐμός +ὁ +πρόβατον +ὁ +ἐμός +ὁ +φωνή +ἐγώ +ἀκούω +κἀγώ +γινώσκω +αὐτός +καί +ἀκολουθέω +ἐγώ +κἀγώ +δίδωμι +αὐτός +ζωή +αἰώνιος +καί +οὐ +μή +ἀπόλλυμι +εἰς +ὁ +αἰών +καί +οὐ +ἁρπάζω +τὶς +αὐτός +ἐκ +ὁ +χείρ +ἐγώ +ὁ +πατήρ +ἐγώ +ὅς +δίδωμι +ἐγώ +πᾶς +μέγας +εἰμί +καί +οὐδείς +δύναμαι +ἁρπάζω +ἐκ +ὁ +χείρ +ὁ +πατήρ +ἐγώ +καί +ὁ +πατήρ +εἷς +εἰμί +βαστάζω +πάλιν +λίθος +ὁ +Ἰουδαῖος +ἵνα +λιθάζω +αὐτός +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +πολύς +ἔργον +καλός +δείκνυμι +σύ +ἐκ +ὁ +πατήρ +διά +ποῖος +αὐτός +ἔργον +ἐγώ +λιθάζω +ἀποκρίνομαι +αὐτός +ὁ +Ἰουδαῖος +περί +καλός +ἔργον +οὐ +λιθάζω +σύ +ἀλλά +περί +βλασφημία +καί +ὅτι +σύ +ἄνθρωπος +εἰμί +ποιέω +σεαυτοῦ +θεός +ἀποκρίνομαι +αὐτός +ὁ +Ἰησοῦς +οὐ +εἰμί +γράφω +ἐν +ὁ +νόμος +σύ +ὅτι +ἐγώ +λέγω +θεός +εἰμί +εἰ +ἐκεῖνος +λέγω +θεός +πρός +ὅς +ὁ +λόγος +ὁ +θεός +γίνομαι +καί +οὐ +δύναμαι +λύω +ὁ +γραφή +ὅς +ὁ +πατήρ +ἁγιάζω +καί +ἀποστέλλω +εἰς +ὁ +κόσμος +σύ +λέγω +ὅτι +βλασφημέω +ὅτι +λέγω +υἱός +ὁ +θεός +εἰμί +εἰ +οὐ +ποιέω +ὁ +ἔργον +ὁ +πατήρ +ἐγώ +μή +πιστεύω +ἐγώ +δέ +εἰ +ποιέω +κἄν +ἐγώ +μή +πιστεύω +ὁ +ἔργον +πιστεύω +ἵνα +γινώσκω +καί +γινώσκω +ὅτι +ἐν +ἐγώ +ὁ +πατήρ +κἀγώ +ἐν +ὁ +πατήρ +οὖν +ζητέω +αὐτός +πιάζω +πάλιν +καί +ἐξέρχομαι +ἐκ +ὁ +χείρ +αὐτός +καί +ἀπέρχομαι +πάλιν +πέραν +ὁ +Ἰορδάνης +εἰς +ὁ +τόπος +ὅπου +εἰμί +βαπτίζω +Ἰωάννης +ὁ +πρῶτος +καί +μένω +ἐκεῖ +καί +πολύς +ἔρχομαι +πρός +αὐτός +καί +λέγω +ὅτι +μέν +Ἰωάννης +σημεῖον +οὐδείς +ποιέω +δέ +πᾶς +ὅσος +λέγω +Ἰωάννης +περί +οὗτος +ἀληθής +εἰμί +καί +πολύς +πιστεύω +εἰς +αὐτός +ἐκεῖ +δέ +εἰμί +τὶς +ἀσθενέω +Λάζαρος +ἀπό +Βηθανία +ἐκ +ὁ +κώμη +Μαρία +καί +Μάρθα +ὁ +ἀδελφή +αὐτός +δέ +εἰμί +Μαρία +ὁ +ἀλείφω +ὁ +κύριος +μύρον +καί +ἐκμάσσω +ὁ +πούς +αὐτός +ὁ +θρίξ +αὐτός +ὅς +ὁ +ἀδελφός +Λάζαρος +ἀσθενέω +οὖν +ἀποστέλλω +ὁ +ἀδελφή +πρός +αὐτός +λέγω +κύριος +ὁράω +ὅς +φιλέω +ἀσθενέω +δέ +ἀκούω +ὁ +Ἰησοῦς +λέγω +οὗτος +ὁ +ἀσθένεια +οὐ +εἰμί +πρός +θάνατος +ἀλλά +ὑπέρ +ὁ +δόξα +ὁ +θεός +ἵνα +δοξάζω +ὁ +υἱός +ὁ +θεός +διά +αὐτός +δέ +ἀγαπάω +ὁ +Ἰησοῦς +ὁ +Μάρθα +καί +ὁ +ἀδελφή +αὐτός +καί +ὁ +Λάζαρος +οὖν +ὡς +ἀκούω +ὅτι +ἀσθενέω +μέν +τότε +μένω +ἐν +ὅς +εἰμί +τόπος +δύο +ἡμέρα +ἔπειτα +μετά +οὗτος +λέγω +ὁ +μαθητής +ἄγω +εἰς +ὁ +Ἰουδαία +πάλιν +λέγω +αὐτός +ὁ +μαθητής +ῥαββί +νῦν +ζητέω +σύ +λιθάζω +ὁ +Ἰουδαῖος +καί +πάλιν +ὑπάγω +ἐκεῖ +ἀποκρίνομαι +Ἰησοῦς +οὐχί +δώδεκα +ὥρα +εἰμί +ὁ +ἡμέρα +ἐάν +τὶς +περιπατέω +ἐν +ὁ +ἡμέρα +οὐ +προσκόπτω +ὅτι +ὁ +φῶς +ὁ +κόσμος +οὗτος +βλέπω +δέ +ἐάν +τὶς +περιπατέω +ἐν +ὁ +νύξ +προσκόπτω +ὅτι +ὁ +φῶς +οὐ +εἰμί +ἐν +αὐτός +οὗτος +λέγω +καί +μετά +οὗτος +λέγω +αὐτός +Λάζαρος +ὁ +φίλος +ἐγώ +κοιμάομαι +ἀλλά +πορεύομαι +ἵνα +ἐξυπνίζω +αὐτός +οὖν +λέγω +ὁ +μαθητής +αὐτός +κύριος +εἰ +κοιμάομαι +σῴζω +δέ +εἶπον +ὁ +Ἰησοῦς +περί +ὁ +θάνατος +αὐτός +δέ +ἐκεῖνος +δοκέω +ὅτι +περί +ὁ +κοίμησις +ὁ +ὕπνος +λέγω +οὖν +τότε +λέγω +αὐτός +ὁ +Ἰησοῦς +παρρησία +Λάζαρος +ἀποθνῄσκω +καί +χαίρω +διά +σύ +ἵνα +πιστεύω +ὅτι +οὐ +εἰμί +ἐκεῖ +ἀλλά +ἄγω +πρός +αὐτός +οὖν +λέγω +Θωμᾶς +ὁ +λέγω +Δίδυμος +ὁ +συμμαθητής +ἄγω +καί +ἐγώ +ἵνα +ἀποθνῄσκω +μετά +αὐτός +οὖν +ἔρχομαι +ὁ +Ἰησοῦς +εὑρίσκω +αὐτός +τέσσαρες +ἡμέρα +ἤδη +ἔχω +ἐν +ὁ +μνημεῖον +δέ +εἰμί +Βηθανία +ἐγγύς +ὁ +Ἱεροσόλυμα +ὡς +ἀπό +στάδιον +δεκαπέντε +δέ +πολύς +ἐκ +ὁ +Ἰουδαῖος +ἔρχομαι +πρός +ὁ +Μάρθα +καί +Μαρία +ἵνα +παραμυθέομαι +αὐτός +περί +ὁ +ἀδελφός +οὖν +ὡς +ἀκούω +ὅτι +Ἰησοῦς +ἔρχομαι +ὁ +Μάρθα +ὑπαντάω +αὐτός +δέ +Μαρία +ἐν +ὁ +οἶκος +καθέζομαι +οὖν +λέγω +ὁ +Μάρθα +πρός +Ἰησοῦς +κύριος +εἰ +εἰμί +ὧδε +ἄν +οὐ +ἀποθνῄσκω +ὁ +ἀδελφός +ἐγώ +καί +νῦν +οἶδα +ὅτι +ἄν +ὅσος +αἰτέω +ὁ +θεός +δίδωμι +σύ +ὁ +θεός +λέγω +αὐτός +ὁ +Ἰησοῦς +ἀνίστημι +ὁ +ἀδελφός +σύ +λέγω +αὐτός +ὁ +Μάρθα +οἶδα +ὅτι +ἀνίστημι +ἐν +ὁ +ἀνάστασις +ἐν +ὁ +ἔσχατος +ἡμέρα +λέγω +αὐτός +ὁ +Ἰησοῦς +ἐγώ +εἰμί +ὁ +ἀνάστασις +καί +ὁ +ζωή +ὁ +πιστεύω +εἰς +ἐγώ +κἄν +ἀποθνῄσκω +ζάω +καί +πᾶς +ὁ +ζάω +καί +πιστεύω +εἰς +ἐγώ +οὐ +μή +ἀποθνῄσκω +εἰς +ὁ +αἰών +πιστεύω +οὗτος +λέγω +αὐτός +ναί +κύριος +ἐγώ +πιστεύω +ὅτι +σύ +εἰμί +ὁ +Χριστός +ὁ +υἱός +ὁ +θεός +ὁ +εἰς +ὁ +κόσμος +ἔρχομαι +καί +οὗτος +λέγω +ἀπέρχομαι +καί +φωνέω +Μαρία +ὁ +ἀδελφή +αὐτός +λάθρᾳ +λέγω +ὁ +διδάσκαλος +πάρειμι +καί +φωνέω +σύ +δέ +ἐκεῖνος +ὡς +ἀκούω +ἐγείρω +ταχύς +καί +ἔρχομαι +πρός +αὐτός +δέ +οὔπω +ἔρχομαι +ὁ +Ἰησοῦς +εἰς +ὁ +κώμη +ἀλλά +εἰμί +ἔτι +ἐν +ὁ +τόπος +ὅπου +ὑπαντάω +αὐτός +ὁ +Μάρθα +οὖν +ὁ +Ἰουδαῖος +ὁ +εἰμί +μετά +αὐτός +ἐν +ὁ +οἰκία +καί +παραμυθέομαι +αὐτός +ὁράω +ὁ +Μαρία +ὅτι +ταχέως +ἀνίστημι +καί +ἐξέρχομαι +ἀκολουθέω +αὐτός +δοκέω +ὅτι +ὑπάγω +εἰς +ὁ +μνημεῖον +ἵνα +κλαίω +ἐκεῖ +οὖν +ὁ +Μαρία +ὡς +ἔρχομαι +ὅπου +εἰμί +Ἰησοῦς +ὁράω +αὐτός +πίπτω +πρός +αὐτοῦ +ὁ +πούς +λέγω +αὐτός +κύριος +εἰ +εἰμί +ὧδε +ἄν +οὐ +ἀποθνῄσκω +ἐγώ +ὁ +ἀδελφός +οὖν +Ἰησοῦς +ὡς +ὁράω +αὐτός +κλαίω +καί +ὁ +συνέρχομαι +αὐτός +Ἰουδαῖος +κλαίω +ἐμβριμάομαι +ὁ +πνεῦμα +καί +ταράσσω +ἑαυτοῦ +καί +λέγω +ποῦ +τίθημι +αὐτός +λέγω +αὐτός +κύριος +ἔρχομαι +καί +ὁράω +δακρύω +ὁ +Ἰησοῦς +οὖν +λέγω +ὁ +Ἰουδαῖος +ὁράω +πῶς +φιλέω +αὐτός +δέ +τὶς +ἐκ +αὐτός +λέγω +οὐ +δύναμαι +οὗτος +ὁ +ἀνοίγω +ὁ +ὀφθαλμός +ὁ +τυφλός +ποιέω +ἵνα +καί +οὗτος +μή +ἀποθνῄσκω +οὖν +Ἰησοῦς +πάλιν +ἐμβριμάομαι +ἐν +ἑαυτοῦ +ἔρχομαι +εἰς +ὁ +μνημεῖον +δέ +εἰμί +σπήλαιον +καί +λίθος +ἐπίκειμαι +ἐπί +αὐτός +λέγω +ὁ +Ἰησοῦς +αἴρω +ὁ +λίθος +λέγω +αὐτός +ὁ +ἀδελφή +ὁ +τελευτάω +Μάρθα +κύριος +ἤδη +ὄζω +γάρ +τεταρταῖος +εἰμί +λέγω +αὐτός +ὁ +Ἰησοῦς +οὐ +λέγω +σύ +ὅτι +ἐάν +πιστεύω +ὁράω +ὁ +δόξα +ὁ +θεός +οὖν +αἴρω +ὁ +λίθος +δέ +ὁ +Ἰησοῦς +αἴρω +ὁ +ὀφθαλμός +ἄνω +καί +λέγω +πατήρ +εὐχαριστέω +σύ +ὅτι +ἀκούω +ἐγώ +δέ +ἐγώ +οἶδα +ὅτι +πάντοτε +ἐγώ +ἀκούω +ἀλλά +διά +ὁ +ὄχλος +ὁ +περιΐστημι +λέγω +ἵνα +πιστεύω +ὅτι +σύ +ἐγώ +ἀποστέλλω +καί +οὗτος +λέγω +φωνή +μέγας +κραυγάζω +Λάζαρος +δεῦρο +ἔξω +ἐξέρχομαι +ὁ +θνῄσκω +δέω +ὁ +πούς +καί +ὁ +χείρ +κειρία +καί +ὁ +ὄψις +αὐτός +σουδάριον +περιδέω +λέγω +αὐτός +ὁ +Ἰησοῦς +λύω +αὐτός +καί +ἀφίημι +αὐτός +ὑπάγω +οὖν +πολύς +ἐκ +ὁ +Ἰουδαῖος +ὁ +ἔρχομαι +πρός +ὁ +Μαρία +καί +θεάομαι +ὅς +ποιέω +πιστεύω +εἰς +αὐτός +δέ +τὶς +ἐκ +αὐτός +ἀπέρχομαι +πρός +ὁ +Φαρισαῖος +καί +λέγω +αὐτός +ὅς +ποιέω +Ἰησοῦς +οὖν +συνάγω +ὁ +ἀρχιερεύς +καί +ὁ +Φαρισαῖος +συνέδριον +καί +λέγω +τίς +ποιέω +ὅτι +οὗτος +ὁ +ἄνθρωπος +πολύς +σημεῖον +ποιέω +ἐάν +ἀφίημι +αὐτός +οὕτω +πᾶς +πιστεύω +εἰς +αὐτός +καί +ἔρχομαι +ὁ +Ῥωμαῖος +καί +αἴρω +ἐγώ +καί +ὁ +τόπος +καί +ὁ +ἔθνος +δέ +εἷς +τὶς +ἐκ +αὐτός +Καϊάφας +ἀρχιερεύς +εἰμί +ὁ +ἐνιαυτός +ἐκεῖνος +λέγω +αὐτός +σύ +οὐ +οἶδα +οὐδείς +οὐδέ +λογίζομαι +ὅτι +συμφέρω +σύ +ἵνα +εἷς +ἄνθρωπος +ἀποθνῄσκω +ὑπέρ +ὁ +λαός +καί +μή +ὅλος +ὁ +ἔθνος +ἀπόλλυμι +δέ +οὗτος +ἀπό +ἑαυτοῦ +οὐ +λέγω +ἀλλά +ἀρχιερεύς +εἰμί +ὁ +ἐνιαυτός +ἐκεῖνος +προφητεύω +ὅτι +μέλλω +Ἰησοῦς +ἀποθνῄσκω +ὑπέρ +ὁ +ἔθνος +καί +οὐ +ὑπέρ +ὁ +ἔθνος +μόνος +ἀλλά +ἵνα +καί +ὁ +τέκνον +ὁ +θεός +ὁ +διασκορπίζω +συνάγω +εἰς +εἷς +οὖν +ἀπό +ἐκεῖνος +ὁ +ἡμέρα +βουλεύω +ἵνα +ἀποκτείνω +αὐτός +οὖν +ὁ +Ἰησοῦς +οὐκέτι +παρρησία +περιπατέω +ἐν +ὁ +Ἰουδαῖος +ἀλλά +ἀπέρχομαι +ἐκεῖθεν +εἰς +ὁ +χώρα +ἐγγύς +ὁ +ἔρημος +εἰς +Ἐφραίμ +λέγω +πόλις +κἀκεῖ +μένω +μετά +ὁ +μαθητής +δέ +εἰμί +ἐγγύς +ὁ +πάσχα +ὁ +Ἰουδαῖος +καί +ἀναβαίνω +πολύς +εἰς +Ἱεροσόλυμα +ἐκ +ὁ +χώρα +πρό +ὁ +πάσχα +ἵνα +ἁγνίζω +ἑαυτοῦ +οὖν +ζητέω +ὁ +Ἰησοῦς +καί +λέγω +μετά +ἀλλήλων +ἐν +ὁ +ἱερός +ἵστημι +τίς +δοκέω +σύ +ὅτι +οὐ +μή +ἔρχομαι +εἰς +ὁ +ἑορτή +δέ +δίδωμι +ὁ +ἀρχιερεύς +καί +ὁ +Φαρισαῖος +ἐντολή +ἵνα +ἐάν +τὶς +γινώσκω +ποῦ +εἰμί +μηνύω +ὅπως +πιάζω +αὐτός +οὖν +ὁ +Ἰησοῦς +πρό +ἕξ +ἡμέρα +ὁ +πάσχα +ἔρχομαι +εἰς +Βηθανία +ὅπου +εἰμί +Λάζαρος +ὅς +ἐγείρω +ἐκ +νεκρός +Ἰησοῦς +οὖν +ποιέω +αὐτός +δεῖπνον +ἐκεῖ +καί +ὁ +Μάρθα +διακονέω +δέ +ὁ +Λάζαρος +εἰμί +εἷς +ἐκ +ὁ +ἀνάκειμαι +σύν +αὐτός +οὖν +ὁ +Μαρία +λαμβάνω +λίτρα +μύρον +νάρδος +πιστικός +πολύτιμος +ἀλείφω +ὁ +πούς +ὁ +Ἰησοῦς +καί +ἐκμάσσω +ὁ +θρίξ +αὐτός +ὁ +πούς +αὐτός +δέ +ὁ +οἰκία +πληρόω +ἐκ +ὁ +ὀσμή +ὁ +μύρον +δέ +λέγω +Ἰούδας +ὁ +Ἰσκαριώθ +εἷς +ὁ +μαθητής +αὐτός +ὁ +μέλλω +αὐτός +παραδίδωμι +διά +τίς +οὗτος +ὁ +μύρον +οὐ +πιπράσκω +τριακόσιοι +δηνάριον +καί +δίδωμι +πτωχός +δέ +λέγω +οὗτος +οὐ +ὅτι +περί +ὁ +πτωχός +μέλει +αὐτός +ἀλλά +ὅτι +κλέπτης +εἰμί +καί +ὁ +γλωσσόκομον +ἔχω +ὁ +βάλλω +βαστάζω +οὖν +λέγω +ὁ +Ἰησοῦς +ἀφίημι +αὐτός +ἵνα +εἰς +ὁ +ἡμέρα +ὁ +ἐνταφιασμός +ἐγώ +τηρέω +αὐτός +γάρ +ὁ +πτωχός +πάντοτε +ἔχω +μετά +ἑαυτοῦ +δέ +ἐγώ +οὐ +πάντοτε +ἔχω +οὖν +γινώσκω +ὁ +ὄχλος +πολύς +ἐκ +ὁ +Ἰουδαῖος +ὅτι +ἐκεῖ +εἰμί +καί +ἔρχομαι +οὐ +διά +ὁ +Ἰησοῦς +μόνος +ἀλλά +ἵνα +καί +ὁράω +ὁ +Λάζαρος +ὅς +ἐγείρω +ἐκ +νεκρός +δέ +βουλεύω +ὁ +ἀρχιερεύς +ἵνα +καί +ὁ +Λάζαρος +ἀποκτείνω +ὅτι +πολύς +ὁ +Ἰουδαῖος +διά +αὐτός +ὑπάγω +καί +πιστεύω +εἰς +ὁ +Ἰησοῦς +ὁ +ἐπαύριον +ὁ +ὄχλος +πολύς +ὁ +ἔρχομαι +εἰς +ὁ +ἑορτή +ἀκούω +ὅτι +ἔρχομαι +Ἰησοῦς +εἰς +Ἱεροσόλυμα +λαμβάνω +ὁ +βάϊον +ὁ +φοῖνιξ +καί +ἐξέρχομαι +εἰς +ὑπάντησις +αὐτός +καί +κραυγάζω +ὡσαννά +εὐλογέω +ὁ +ἔρχομαι +ἐν +ὄνομα +κύριος +καί +ὁ +βασιλεύς +ὁ +Ἰσραήλ +δέ +εὑρίσκω +ὀνάριον +ὁ +Ἰησοῦς +καθίζω +ἐπί +αὐτός +καθώς +εἰμί +γράφω +μή +φοβέω +θυγάτηρ +Σιών +ὁράω +ὁ +βασιλεύς +σύ +ἔρχομαι +κάθημαι +ἐπί +πῶλος +ὄνος +οὗτος +οὐ +γινώσκω +αὐτός +ὁ +μαθητής +ὁ +πρῶτος +ἀλλά +ὅτε +δοξάζω +Ἰησοῦς +τότε +μιμνῄσκω +ὅτι +οὗτος +εἰμί +γράφω +ἐπί +αὐτός +καί +οὗτος +ποιέω +αὐτός +οὖν +μαρτυρέω +ὁ +ὄχλος +ὁ +εἰμί +μετά +αὐτός +ὅτε +ὁ +Λάζαρος +φωνέω +ἐκ +ὁ +μνημεῖον +καί +ἐγείρω +αὐτός +ἐκ +νεκρός +διά +οὗτος +καί +ὑπαντάω +αὐτός +ὁ +ὄχλος +ὅτι +ἀκούω +οὗτος +αὐτός +ποιέω +ὁ +σημεῖον +οὖν +ὁ +Φαρισαῖος +λέγω +πρός +ἑαυτοῦ +θεωρέω +ὅτι +οὐ +ὠφελέω +οὐδείς +ὁράω +ὁ +κόσμος +ὀπίσω +αὐτός +ἀπέρχομαι +δέ +εἰμί +Ἕλλην +τὶς +ἐκ +ὁ +ἀναβαίνω +ἵνα +προσκυνέω +ἐν +ὁ +ἑορτή +οὖν +οὗτος +προσέρχομαι +Φίλιππος +ὁ +ἀπό +Βηθσαϊδά +ὁ +Γαλιλαία +καί +ἐρωτάω +αὐτός +λέγω +κύριος +θέλω +ὁ +Ἰησοῦς +ὁράω +ἔρχομαι +ὁ +Φίλιππος +καί +λέγω +ὁ +Ἀνδρέας +ἔρχομαι +Ἀνδρέας +καί +Φίλιππος +καί +λέγω +ὁ +Ἰησοῦς +δέ +ὁ +Ἰησοῦς +ἀποκρίνομαι +αὐτός +λέγω +ἔρχομαι +ὁ +ὥρα +ἵνα +δοξάζω +ὁ +υἱός +ὁ +ἄνθρωπος +ἀμήν +ἀμήν +λέγω +σύ +ἐάν +μή +ὁ +κόκκος +ὁ +σῖτος +πίπτω +εἰς +ὁ +γῆ +ἀποθνῄσκω +αὐτός +μόνος +μένω +δέ +ἐάν +ἀποθνῄσκω +πολύς +καρπός +φέρω +ὁ +φιλέω +ὁ +ψυχή +αὐτός +ἀπόλλυμι +αὐτός +καί +ὁ +μισέω +ὁ +ψυχή +αὐτός +ἐν +ὁ +κόσμος +οὗτος +εἰς +ζωή +αἰώνιος +φυλάσσω +αὐτός +ἐάν +ἐγώ +τὶς +διακονέω +ἐγώ +ἀκολουθέω +καί +ὅπου +εἰμί +ἐγώ +ἐκεῖ +καί +ὁ +διάκονος +ὁ +ἐμός +εἰμί +ἐάν +τὶς +ἐγώ +διακονέω +τιμάω +αὐτός +ὁ +πατήρ +νῦν +ὁ +ψυχή +ἐγώ +ταράσσω +καί +τίς +λέγω +πατήρ +σῴζω +ἐγώ +ἐκ +ὁ +ὥρα +οὗτος +ἀλλά +διά +οὗτος +ἔρχομαι +εἰς +ὁ +ὥρα +οὗτος +πατήρ +δοξάζω +σύ +ὁ +ὄνομα +οὖν +ἔρχομαι +φωνή +ἐκ +ὁ +οὐρανός +καί +δοξάζω +καί +πάλιν +δοξάζω +οὖν +ὁ +ὄχλος +ὁ +ἵστημι +καί +ἀκούω +λέγω +βροντή +γίνομαι +ἄλλος +λέγω +ἄγγελος +αὐτός +λαλέω +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +οὐ +διά +ἐγώ +ὁ +φωνή +οὗτος +γίνομαι +ἀλλά +διά +σύ +νῦν +εἰμί +κρίσις +ὁ +κόσμος +οὗτος +νῦν +ὁ +ἄρχων +ὁ +κόσμος +οὗτος +ἐκβάλλω +ἔξω +ἐάν +κἀγώ +ὑψόω +ἐκ +ὁ +γῆ +πᾶς +ἕλκω +πρός +ἐμαυτοῦ +δέ +οὗτος +λέγω +σημαίνω +ποῖος +θάνατος +μέλλω +ἀποθνῄσκω +οὖν +ἀποκρίνομαι +αὐτός +ὁ +ὄχλος +ἐγώ +ἀκούω +ἐκ +ὁ +νόμος +ὅτι +ὁ +Χριστός +μένω +εἰς +ὁ +αἰών +καί +πῶς +λέγω +σύ +ὅτι +δεῖ +ὑψόω +ὁ +υἱός +ὁ +ἄνθρωπος +τίς +εἰμί +οὗτος +ὁ +υἱός +ὁ +ἄνθρωπος +οὖν +λέγω +αὐτός +ὁ +Ἰησοῦς +ἔτι +μικρός +χρόνος +ὁ +φῶς +ἐν +σύ +εἰμί +περιπατέω +ὡς +ὁ +φῶς +ἔχω +ἵνα +μή +σκοτία +σύ +καταλαμβάνω +καί +ὁ +περιπατέω +ἐν +ὁ +σκοτία +οὐ +οἶδα +ποῦ +ὑπάγω +ὡς +ὁ +φῶς +ἔχω +πιστεύω +εἰς +ὁ +φῶς +ἵνα +υἱός +φῶς +γίνομαι +οὗτος +λαλέω +Ἰησοῦς +καί +ἀπέρχομαι +κρύπτω +ἀπό +αὐτός +δέ +αὐτός +τοσοῦτος +σημεῖον +ποιέω +ἔμπροσθεν +αὐτός +οὐ +πιστεύω +εἰς +αὐτός +ἵνα +ὁ +λόγος +Ἠσαΐας +ὁ +προφήτης +πληρόω +ὅς +λέγω +κύριος +τίς +πιστεύω +ὁ +ἀκοή +ἐγώ +καί +ὁ +βραχίων +κύριος +τίς +ἀποκαλύπτω +διά +οὗτος +οὐ +δύναμαι +πιστεύω +ὅτι +πάλιν +λέγω +Ἠσαΐας +τυφλόω +αὐτός +ὁ +ὀφθαλμός +καί +πωρόω +αὐτός +ὁ +καρδία +ἵνα +μή +ὁράω +ὁ +ὀφθαλμός +καί +νοέω +ὁ +καρδία +καί +στρέφω +καί +ἰάομαι +αὐτός +οὗτος +λέγω +Ἠσαΐας +ὅτι +ὁράω +ὁ +δόξα +αὐτός +καί +λαλέω +περί +αὐτός +μέντοι +ὅμως +καί +ἐκ +ὁ +ἄρχων +πολύς +πιστεύω +εἰς +αὐτός +ἀλλά +διά +ὁ +Φαρισαῖος +οὐ +ὁμολογέω +ἵνα +μή +ἀποσυνάγωγος +γίνομαι +γάρ +ἀγαπάω +ὁ +δόξα +ὁ +ἄνθρωπος +μᾶλλον +ἤπερ +ὁ +δόξα +ὁ +θεός +δέ +Ἰησοῦς +κράζω +καί +λέγω +ὁ +πιστεύω +εἰς +ἐγώ +οὐ +πιστεύω +εἰς +ἐγώ +ἀλλά +εἰς +ὁ +πέμπω +ἐγώ +καί +ὁ +θεωρέω +ἐγώ +θεωρέω +ὁ +πέμπω +ἐγώ +ἐγώ +φῶς +εἰς +ὁ +κόσμος +ἔρχομαι +ἵνα +πᾶς +ὁ +πιστεύω +εἰς +ἐγώ +ἐν +ὁ +σκοτία +μή +μένω +καί +ἐάν +τὶς +ἀκούω +ἐγώ +ὁ +ῥῆμα +καί +μή +φυλάσσω +ἐγώ +οὐ +κρίνω +αὐτός +γάρ +οὐ +ἔρχομαι +ἵνα +κρίνω +ὁ +κόσμος +ἀλλά +ἵνα +σῴζω +ὁ +κόσμος +ὁ +ἀθετέω +ἐγώ +καί +μή +λαμβάνω +ὁ +ῥῆμα +ἐγώ +ἔχω +ὁ +κρίνω +αὐτός +ὁ +λόγος +ὅς +λαλέω +ἐκεῖνος +κρίνω +αὐτός +ἐν +ὁ +ἔσχατος +ἡμέρα +ὅτι +ἐγώ +ἐκ +ἐμαυτοῦ +οὐ +λαλέω +ἀλλά +ὁ +πέμπω +ἐγώ +πατήρ +αὐτός +ἐγώ +ἐντολή +δίδωμι +τίς +λέγω +καί +τίς +λαλέω +καί +οἶδα +ὅτι +ὁ +ἐντολή +αὐτός +ζωή +αἰώνιος +εἰμί +οὖν +ὅς +ἐγώ +λαλέω +καθώς +εἶπον +ἐγώ +ὁ +πατήρ +οὕτω +λαλέω +δέ +πρό +ὁ +ἑορτή +ὁ +πάσχα +ὁ +Ἰησοῦς +οἶδα +ὅτι +ἔρχομαι +αὐτός +ὁ +ὥρα +ἵνα +μεταβαίνω +ἐκ +ὁ +κόσμος +οὗτος +πρός +ὁ +πατήρ +ἀγαπάω +ὁ +ἴδιος +ὁ +ἐν +ὁ +κόσμος +εἰς +τέλος +ἀγαπάω +αὐτός +καί +δεῖπνον +γίνομαι +ὁ +διάβολος +ἤδη +βάλλω +εἰς +ὁ +καρδία +ἵνα +παραδίδωμι +αὐτός +Ἰούδας +Σίμων +Ἰσκαριώθ +οἶδα +ὅτι +πᾶς +δίδωμι +αὐτός +ὁ +πατήρ +εἰς +ὁ +χείρ +καί +ὅτι +ἀπό +θεός +ἐξέρχομαι +καί +πρός +ὁ +θεός +ὑπάγω +ἐγείρω +ἐκ +ὁ +δεῖπνον +καί +τίθημι +ὁ +ἱμάτιον +καί +λαμβάνω +λέντιον +διαζώννυμι +ἑαυτοῦ +εἶτα +βάλλω +ὕδωρ +εἰς +ὁ +νιπτήρ +καί +ἄρχω +νίπτω +ὁ +πούς +ὁ +μαθητής +καί +ἐκμάσσω +ὁ +λέντιον +ὅς +εἰμί +διαζώννυμι +οὖν +ἔρχομαι +πρός +Σίμων +Πέτρος +λέγω +αὐτός +κύριος +σύ +νίπτω +ἐγώ +ὁ +πούς +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +ὅς +ἐγώ +ποιέω +σύ +οὐ +οἶδα +ἄρτι +δέ +γινώσκω +μετά +οὗτος +λέγω +αὐτός +Πέτρος +οὐ +μή +νίπτω +ἐγώ +ὁ +πούς +εἰς +ὁ +αἰών +ἀποκρίνομαι +Ἰησοῦς +αὐτός +ἐάν +μή +νίπτω +σύ +οὐ +ἔχω +μέρος +μετά +ἐγώ +λέγω +αὐτός +Σίμων +Πέτρος +κύριος +μή +ὁ +πούς +ἐγώ +μόνος +ἀλλά +καί +ὁ +χείρ +καί +ὁ +κεφαλή +λέγω +αὐτός +Ἰησοῦς +ὁ +λούω +οὐ +ἔχω +χρεία +εἰ +μή +ὁ +πούς +νίπτω +ἀλλά +εἰμί +καθαρός +ὅλος +καί +σύ +καθαρός +εἰμί +ἀλλά +οὐχί +πᾶς +γάρ +οἶδα +ὁ +παραδίδωμι +αὐτός +διά +οὗτος +λέγω +ὅτι +οὐχί +πᾶς +καθαρός +εἰμί +οὖν +ὅτε +νίπτω +ὁ +πούς +αὐτός +καί +λαμβάνω +ὁ +ἱμάτιον +αὐτός +καί +ἀναπίπτω +πάλιν +λέγω +αὐτός +γινώσκω +τίς +ποιέω +σύ +σύ +φωνέω +ἐγώ +ὁ +διδάσκαλος +καί +ὁ +κύριος +καί +καλῶς +λέγω +γάρ +εἰμί +οὖν +εἰ +ἐγώ +ὁ +κύριος +καί +ὁ +διδάσκαλος +νίπτω +σύ +ὁ +πούς +καί +σύ +ὀφείλω +νίπτω +ἀλλήλων +ὁ +πούς +γάρ +ὑπόδειγμα +δίδωμι +σύ +ἵνα +καθώς +ἐγώ +ποιέω +σύ +καί +σύ +ποιέω +ἀμήν +ἀμήν +λέγω +σύ +οὐ +εἰμί +δοῦλος (II) +μέγας +ὁ +κύριος +αὐτός +οὐδέ +ἀπόστολος +μέγας +ὁ +πέμπω +αὐτός +εἰ +οὗτος +οἶδα +μακάριος +εἰμί +ἐάν +ποιέω +αὐτός +οὐ +περί +πᾶς +σύ +λέγω +ἐγώ +οἶδα +τίς +ἐκλέγω +ἀλλά +ἵνα +ὁ +γραφή +πληρόω +ὁ +τρώγω +ἐγώ +ὁ +ἄρτος +ἐπαίρω +ἐπί +ἐγώ +ὁ +πτέρνα +αὐτός +ἀπό +ἄρτι +λέγω +σύ +πρό +ὁ +γίνομαι +ἵνα +πιστεύω +ὅταν +γίνομαι +ὅτι +ἐγώ +εἰμί +ἀμήν +ἀμήν +λέγω +σύ +ὁ +λαμβάνω +ἄν +τὶς +πέμπω +ἐγώ +λαμβάνω +δέ +ὁ +ἐγώ +λαμβάνω +λαμβάνω +ὁ +πέμπω +ἐγώ +οὗτος +λέγω +Ἰησοῦς +ταράσσω +ὁ +πνεῦμα +καί +μαρτυρέω +καί +λέγω +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +εἷς +ἐκ +σύ +παραδίδωμι +ἐγώ +βλέπω +εἰς +ἀλλήλων +ὁ +μαθητής +ἀπορέω +περί +τίς +λέγω +εἰμί +ἀνάκειμαι +εἷς +ἐκ +ὁ +μαθητής +αὐτός +ἐν +ὁ +κόλπος +ὁ +Ἰησοῦς +ὅς +ἀγαπάω +ὁ +Ἰησοῦς +οὖν +νεύω +οὗτος +Σίμων +Πέτρος +καί +λέγω +αὐτός +λέγω +τίς +εἰμί +περί +ὅς +λέγω +ἐκεῖνος +ἀναπίπτω +οὕτω +ἐπί +ὁ +στῆθος +ὁ +Ἰησοῦς +λέγω +αὐτός +κύριος +τίς +εἰμί +οὖν +ἀποκρίνομαι +ὁ +Ἰησοῦς +εἰμί +ἐκεῖνος +ὅς +ἐγώ +βάπτω +ὁ +ψωμίον +καί +δίδωμι +αὐτός +οὖν +βάπτω +ὁ +ψωμίον +λαμβάνω +καί +δίδωμι +Ἰούδας +Σίμων +Ἰσκαριώθ +καί +μετά +ὁ +ψωμίον +τότε +εἰσέρχομαι +εἰς +ἐκεῖνος +ὁ +Σατανᾶς +οὖν +λέγω +αὐτός +Ἰησοῦς +ὅς +ποιέω +ποιέω +ταχύς +δέ +γινώσκω +οὐδείς +ὁ +ἀνάκειμαι +οὗτος +πρός +τίς +λέγω +αὐτός +γάρ +τὶς +δοκέω +ἐπεί +ὁ +γλωσσόκομον +ἔχω +Ἰούδας +ὅτι +λέγω +αὐτός +Ἰησοῦς +ἀγοράζω +ὅς +χρεία +ἔχω +εἰς +ὁ +ἑορτή +ἤ +ἵνα +ὁ +πτωχός +τὶς +δίδωμι +οὖν +λαμβάνω +ὁ +ψωμίον +ἐκεῖνος +ἐξέρχομαι +εὐθύς +δέ +εἰμί +νύξ +οὖν +ὅτε +ἐξέρχομαι +λέγω +Ἰησοῦς +νῦν +δοξάζω +ὁ +υἱός +ὁ +ἄνθρωπος +καί +ὁ +θεός +δοξάζω +ἐν +αὐτός +εἰ +ὁ +θεός +δοξάζω +ἐν +αὐτός +καί +ὁ +θεός +δοξάζω +αὐτός +ἐν +αὐτός +καί +εὐθύς +δοξάζω +αὐτός +τεκνίον +ἔτι +μικρός +μετά +σύ +εἰμί +ζητέω +ἐγώ +καί +καθώς +λέγω +ὁ +Ἰουδαῖος +ὅτι +ὅπου +ἐγώ +ὑπάγω +ἔρχομαι +σύ +οὐ +δύναμαι +καί +σύ +λέγω +ἄρτι +ἐντολή +καινός +δίδωμι +σύ +ἵνα +ἀγαπάω +ἀλλήλων +καθώς +ἀγαπάω +σύ +ἵνα +καί +σύ +ἀγαπάω +ἀλλήλων +ἐν +οὗτος +γινώσκω +πᾶς +ὅτι +ἐμός +μαθητής +εἰμί +ἐάν +ἀγάπη +ἔχω +ἐν +ἀλλήλων +λέγω +αὐτός +Σίμων +Πέτρος +κύριος +ποῦ +ὑπάγω +ἀποκρίνομαι +Ἰησοῦς +ὅπου +ὑπάγω +ἐγώ +νῦν +ἀκολουθέω +οὐ +δύναμαι +δέ +ἀκολουθέω +ὕστερος +λέγω +αὐτός +Πέτρος +κύριος +διά +τίς +οὐ +δύναμαι +σύ +ἀκολουθέω +ἄρτι +ὁ +ψυχή +ἐγώ +ὑπέρ +σύ +τίθημι +ἀποκρίνομαι +Ἰησοῦς +ὁ +ψυχή +σύ +ὑπέρ +ἐγώ +τίθημι +ἀμήν +ἀμήν +λέγω +σύ +οὐ +μή +ἀλέκτωρ +φωνέω +ἕως +ὅς +ἀρνέομαι +ἐγώ +τρίς +μή +ταράσσω +σύ +ὁ +καρδία +πιστεύω +εἰς +ὁ +θεός +καί +εἰς +ἐγώ +πιστεύω +ἐν +ὁ +οἰκία +ὁ +πατήρ +ἐγώ +μονή +πολύς +εἰμί +δέ +εἰ +μή +ἄν +λέγω +σύ +ὅτι +πορεύομαι +ἑτοιμάζω +τόπος +σύ +καί +ἐάν +πορεύομαι +καί +ἑτοιμάζω +τόπος +σύ +πάλιν +ἔρχομαι +καί +παραλαμβάνω +σύ +πρός +ἐμαυτοῦ +ἵνα +ὅπου +εἰμί +ἐγώ +καί +σύ +εἰμί +καί +ὅπου +ἐγώ +ὑπάγω +οἶδα +ὁ +ὁδός +λέγω +αὐτός +Θωμᾶς +κύριος +οὐ +οἶδα +ποῦ +ὑπάγω +πῶς +οἶδα +ὁ +ὁδός +λέγω +αὐτός +Ἰησοῦς +ἐγώ +εἰμί +ὁ +ὁδός +καί +ὁ +ἀλήθεια +καί +ὁ +ζωή +οὐδείς +ἔρχομαι +πρός +ὁ +πατήρ +εἰ +μή +διά +ἐγώ +εἰ +γινώσκω +ἐγώ +ἄν +καί +ὁ +πατήρ +ἐγώ +οἶδα +ἀπό +ἄρτι +γινώσκω +αὐτός +καί +ὁράω +λέγω +αὐτός +Φίλιππος +κύριος +δείκνυμι +ἐγώ +ὁ +πατήρ +καί +ἀρκέω +ἐγώ +λέγω +αὐτός +ὁ +Ἰησοῦς +τοσοῦτος +χρόνος +μετά +σύ +εἰμί +καί +οὐ +γινώσκω +ἐγώ +Φίλιππος +ὁ +ὁράω +ἐγώ +ὁράω +ὁ +πατήρ +πῶς +σύ +λέγω +δείκνυμι +ἐγώ +ὁ +πατήρ +οὐ +πιστεύω +ὅτι +ἐγώ +ἐν +ὁ +πατήρ +καί +ὁ +πατήρ +ἐν +ἐγώ +εἰμί +ὁ +ῥῆμα +ὅς +ἐγώ +λέγω +σύ +ἀπό +ἐμαυτοῦ +οὐ +λαλέω +δέ +ὁ +πατήρ +ἐν +ἐγώ +μένω +ποιέω +ὁ +ἔργον +αὐτός +πιστεύω +ἐγώ +ὅτι +ἐγώ +ἐν +ὁ +πατήρ +καί +ὁ +πατήρ +ἐν +ἐγώ +δέ +εἰ +μή +διά +ὁ +ἔργον +αὐτός +πιστεύω +ἀμήν +ἀμήν +λέγω +σύ +ὁ +πιστεύω +εἰς +ἐγώ +ὁ +ἔργον +ὅς +ἐγώ +ποιέω +κἀκεῖνος +ποιέω +καί +μέγας +οὗτος +ποιέω +ὅτι +ἐγώ +πρός +ὁ +πατήρ +πορεύομαι +καί +τὶς +ἄν +ὅς +αἰτέω +ἐν +ὁ +ὄνομα +ἐγώ +οὗτος +ποιέω +ἵνα +δοξάζω +ὁ +πατήρ +ἐν +ὁ +υἱός +ἐάν +τὶς +αἰτέω +ἐγώ +ἐν +ὁ +ὄνομα +ἐγώ +ἐγώ +ποιέω +ἐάν +ἀγαπάω +ἐγώ +ὁ +ἐντολή +ὁ +ἐμός +τηρέω +κἀγώ +ἐρωτάω +ὁ +πατήρ +καί +ἄλλος +παράκλητος +δίδωμι +σύ +ἵνα +εἰμί +μετά +σύ +εἰς +ὁ +αἰών +ὁ +πνεῦμα +ὁ +ἀλήθεια +ὅς +λαμβάνω +ὁ +κόσμος +οὐ +δύναμαι +ὅτι +οὐ +θεωρέω +αὐτός +οὐδέ +γινώσκω +σύ +γινώσκω +αὐτός +ὅτι +παρά +σύ +μένω +καί +ἐν +σύ +εἰμί +οὐ +ἀφίημι +σύ +ὀρφανός +ἔρχομαι +πρός +σύ +καί +ἔτι +μικρός +ὁ +κόσμος +ἐγώ +οὐκέτι +θεωρέω +δέ +σύ +θεωρέω +ἐγώ +ὅτι +ἐγώ +ζάω +καί +σύ +ζάω +ἐν +ἐκεῖνος +ὁ +ἡμέρα +γινώσκω +σύ +ὅτι +ἐγώ +ἐν +ὁ +πατήρ +ἐγώ +καί +σύ +ἐν +ἐγώ +κἀγώ +ἐν +σύ +ὁ +ἔχω +ὁ +ἐντολή +ἐγώ +καί +τηρέω +αὐτός +ἐκεῖνος +εἰμί +ὁ +ἀγαπάω +ἐγώ +δέ +ὁ +ἀγαπάω +ἐγώ +ἀγαπάω +ὑπό +ὁ +πατήρ +ἐγώ +κἀγώ +ἀγαπάω +αὐτός +καί +ἐμφανίζω +αὐτός +ἐμαυτοῦ +λέγω +αὐτός +Ἰούδας +οὐ +ὁ +Ἰσκαριώθ +κύριος +καί +τίς +γίνομαι +ὅτι +μέλλω +ἐγώ +ἐμφανίζω +σεαυτοῦ +καί +οὐχί +ὁ +κόσμος +ἀποκρίνομαι +Ἰησοῦς +καί +λέγω +αὐτός +ἐάν +τὶς +ἀγαπάω +ἐγώ +ὁ +λόγος +ἐγώ +τηρέω +καί +ὁ +πατήρ +ἐγώ +ἀγαπάω +αὐτός +καί +πρός +αὐτός +ἔρχομαι +καί +μονή +παρά +αὐτός +ποιέω +ὁ +μή +ἀγαπάω +ἐγώ +ὁ +λόγος +ἐγώ +οὐ +τηρέω +καί +ὁ +λόγος +ὅς +ἀκούω +οὐ +εἰμί +ἐμός +ἀλλά +ὁ +πέμπω +ἐγώ +πατήρ +οὗτος +λαλέω +σύ +παρά +σύ +μένω +δέ +ὁ +παράκλητος +ὁ +πνεῦμα +ὁ +ἅγιος +ὅς +πέμπω +ὁ +πατήρ +ἐν +ὁ +ὄνομα +ἐγώ +ἐκεῖνος +σύ +διδάσκω +πᾶς +καί +ὑπομιμνῄσκω +σύ +πᾶς +ὅς +λέγω +σύ +ἐγώ +εἰρήνη +ἀφίημι +σύ +εἰρήνη +ὁ +ἐμός +δίδωμι +σύ +οὐ +καθώς +ὁ +κόσμος +δίδωμι +ἐγώ +δίδωμι +σύ +μή +ταράσσω +σύ +ὁ +καρδία +μηδέ +δειλιάω +ἀκούω +ὅτι +ἐγώ +λέγω +σύ +ὑπάγω +καί +ἔρχομαι +πρός +σύ +εἰ +ἀγαπάω +ἐγώ +ἄν +χαίρω +ὅτι +πορεύομαι +πρός +ὁ +πατήρ +ὅτι +ὁ +πατήρ +μέγας +ἐγώ +εἰμί +καί +νῦν +εἶπον +σύ +πρίν +γίνομαι +ἵνα +ὅταν +γίνομαι +πιστεύω +οὐκέτι +πολύς +λαλέω +μετά +σύ +γάρ +ἔρχομαι +ὁ +ὁ +κόσμος +ἄρχων +καί +ἐν +ἐγώ +οὐ +ἔχω +οὐδείς +ἀλλά +ἵνα +γινώσκω +ὁ +κόσμος +ὅτι +ἀγαπάω +ὁ +πατήρ +καί +καθώς +ἐντέλλομαι +ἐγώ +ὁ +πατήρ +οὕτω +ποιέω +ἐγείρω +ἄγω +ἐντεῦθεν +ἐγώ +εἰμί +ὁ +ἄμπελος +ὁ +ἀληθινός +καί +ὁ +πατήρ +ἐγώ +ὁ +γεωργός +εἰμί +πᾶς +κλῆμα +ἐν +ἐγώ +μή +φέρω +καρπός +αἴρω +αὐτός +καί +πᾶς +ὁ +καρπός +φέρω +καθαίρω +αὐτός +ἵνα +καρπός +πολύς +φέρω +ἤδη +σύ +καθαρός +εἰμί +διά +ὁ +λόγος +ὅς +λαλέω +σύ +μένω +ἐν +ἐγώ +κἀγώ +ἐν +σύ +καθώς +ὁ +κλῆμα +οὐ +δύναμαι +καρπός +φέρω +ἀπό +ἑαυτοῦ +ἐάν +μή +μένω +ἐν +ὁ +ἄμπελος +οὕτω +οὐδέ +σύ +ἐάν +μή +ἐν +ἐγώ +μένω +ἐγώ +εἰμί +ὁ +ἄμπελος +σύ +ὁ +κλῆμα +ὁ +μένω +ἐν +ἐγώ +κἀγώ +ἐν +αὐτός +οὗτος +φέρω +καρπός +πολύς +ὅτι +χωρίς +ἐγώ +οὐ +δύναμαι +ποιέω +οὐδείς +ἐάν +μή +τὶς +μένω +ἐν +ἐγώ +βάλλω +ἔξω +ὡς +ὁ +κλῆμα +καί +ξηραίνω +καί +συνάγω +αὐτός +καί +εἰς +ὁ +πῦρ +βάλλω +καί +καίω +ἐάν +μένω +ἐν +ἐγώ +καί +ὁ +ῥῆμα +ἐγώ +ἐν +σύ +μένω +ἐάν +ὅς +θέλω +αἰτέω +καί +γίνομαι +σύ +ἐν +οὗτος +δοξάζω +ὁ +πατήρ +ἐγώ +ἵνα +καρπός +πολύς +φέρω +καί +γίνομαι +ἐμός +μαθητής +καθώς +ἀγαπάω +ἐγώ +ὁ +πατήρ +κἀγώ +σύ +ἀγαπάω +μένω +ἐν +ὁ +ἀγάπη +ὁ +ἐμός +ἐάν +ὁ +ἐντολή +ἐγώ +τηρέω +μένω +ἐν +ὁ +ἀγάπη +ἐγώ +καθώς +ἐγώ +ὁ +πατήρ +ἐγώ +ὁ +ἐντολή +τηρέω +καί +μένω +ἐν +αὐτός +ὁ +ἀγάπη +οὗτος +λαλέω +σύ +ἵνα +ὁ +χαρά +ὁ +ἐμός +ἐν +σύ +εἰμί +καί +ὁ +χαρά +σύ +πληρόω +οὗτος +εἰμί +ὁ +ἐντολή +ὁ +ἐμός +ἵνα +ἀγαπάω +ἀλλήλων +καθώς +ἀγαπάω +σύ +μέγας +οὗτος +ἀγάπη +οὐδείς +ἔχω +ἵνα +τὶς +ὁ +ψυχή +αὐτός +τίθημι +ὑπέρ +ὁ +φίλος +αὐτός +σύ +φίλος +ἐγώ +εἰμί +ἐάν +ποιέω +ὅς +ἐγώ +ἐντέλλομαι +σύ +οὐκέτι +λέγω +σύ +δοῦλος (II) +ὅτι +ὁ +δοῦλος (II) +οὐ +οἶδα +τίς +ποιέω +αὐτός +ὁ +κύριος +δέ +σύ +εἶπον +φίλος +ὅτι +πᾶς +ὅς +ἀκούω +παρά +ὁ +πατήρ +ἐγώ +γνωρίζω +σύ +οὐ +σύ +ἐγώ +ἐκλέγω +ἀλλά +ἐγώ +ἐκλέγω +σύ +καί +τίθημι +σύ +ἵνα +σύ +ὑπάγω +καί +καρπός +φέρω +καί +ὁ +καρπός +σύ +μένω +ἵνα +τὶς +ἄν +ὅς +αἰτέω +ὁ +πατήρ +ἐν +ὁ +ὄνομα +ἐγώ +δίδωμι +σύ +οὗτος +ἐντέλλομαι +σύ +ἵνα +ἀγαπάω +ἀλλήλων +εἰ +ὁ +κόσμος +σύ +μισέω +γινώσκω +ὅτι +ἐγώ +πρῶτος +σύ +μισέω +εἰ +ἐκ +ὁ +κόσμος +εἰμί +ἄν +ὁ +κόσμος +ὁ +ἴδιος +φιλέω +δέ +ὅτι +ἐκ +ὁ +κόσμος +οὐ +εἰμί +ἀλλά +ἐγώ +ἐκλέγω +σύ +ἐκ +ὁ +κόσμος +διά +οὗτος +μισέω +σύ +ὁ +κόσμος +μνημονεύω +ὁ +λόγος +ὅς +ἐγώ +λέγω +σύ +οὐ +εἰμί +δοῦλος (II) +μέγας +ὁ +κύριος +αὐτός +εἰ +ἐγώ +διώκω +καί +σύ +διώκω +εἰ +ὁ +λόγος +ἐγώ +τηρέω +καί +ὁ +ὑμέτερος +τηρέω +ἀλλά +οὗτος +πᾶς +ποιέω +εἰς +σύ +διά +ὁ +ὄνομα +ἐγώ +ὅτι +οὐ +οἶδα +ὁ +πέμπω +ἐγώ +εἰ +μή +ἔρχομαι +καί +λαλέω +αὐτός +ἁμαρτία +οὐ +ἔχω +δέ +νῦν +πρόφασις +οὐ +ἔχω +περί +ὁ +ἁμαρτία +αὐτός +ὁ +ἐγώ +μισέω +καί +ὁ +πατήρ +ἐγώ +μισέω +εἰ +ὁ +ἔργον +μή +ποιέω +ἐν +αὐτός +ὅς +οὐδείς +ἄλλος +ποιέω +ἁμαρτία +οὐ +ἔχω +δέ +νῦν +καί +ὁράω +καί +μισέω +καί +ἐγώ +καί +ὁ +πατήρ +ἐγώ +ἀλλά +ἵνα +πληρόω +ὁ +λόγος +ὁ +ἐν +ὁ +νόμος +αὐτός +γράφω +ὅτι +μισέω +ἐγώ +δωρεάν +ὅταν +ἔρχομαι +ὁ +παράκλητος +ὅς +ἐγώ +πέμπω +σύ +παρά +ὁ +πατήρ +ὁ +πνεῦμα +ὁ +ἀλήθεια +ὅς +παρά +ὁ +πατήρ +ἐκπορεύομαι +ἐκεῖνος +μαρτυρέω +περί +ἐγώ +δέ +καί +σύ +μαρτυρέω +ὅτι +ἀπό +ἀρχή +μετά +ἐγώ +εἰμί +οὗτος +λαλέω +σύ +ἵνα +μή +σκανδαλίζω +ἀποσυνάγωγος +ποιέω +σύ +ἀλλά +ἔρχομαι +ὥρα +ἵνα +πᾶς +ὁ +ἀποκτείνω +σύ +δοκέω +λατρεία +προσφέρω +ὁ +θεός +καί +οὗτος +ποιέω +ὅτι +οὐ +γινώσκω +ὁ +πατήρ +οὐδέ +ἐγώ +ἀλλά +οὗτος +λαλέω +σύ +ἵνα +ὅταν +ἔρχομαι +ὁ +ὥρα +αὐτός +μνημονεύω +αὐτός +ὅτι +ἐγώ +λέγω +σύ +δέ +οὗτος +σύ +ἐκ +ἀρχή +οὐ +λέγω +ὅτι +μετά +σύ +εἰμί +δέ +νῦν +ὑπάγω +πρός +ὁ +πέμπω +ἐγώ +καί +οὐδείς +ἐκ +σύ +ἐρωτάω +ἐγώ +ποῦ +ὑπάγω +ἀλλά +ὅτι +οὗτος +λαλέω +σύ +ὁ +λύπη +πληρόω +σύ +ὁ +καρδία +ἀλλά +ἐγώ +ὁ +ἀλήθεια +λέγω +σύ +συμφέρω +σύ +ἵνα +ἐγώ +ἀπέρχομαι +γάρ +ἐάν +μή +ἀπέρχομαι +ὁ +παράκλητος +οὐ +μή +ἔρχομαι +πρός +σύ +δέ +ἐάν +πορεύομαι +πέμπω +αὐτός +πρός +σύ +καί +ἔρχομαι +ἐκεῖνος +ἐλέγχω +ὁ +κόσμος +περί +ἁμαρτία +καί +περί +δικαιοσύνη +καί +περί +κρίσις +μέν +περί +ἁμαρτία +ὅτι +οὐ +πιστεύω +εἰς +ἐγώ +δέ +περί +δικαιοσύνη +ὅτι +πρός +ὁ +πατήρ +ὑπάγω +καί +οὐκέτι +θεωρέω +ἐγώ +δέ +περί +κρίσις +ὅτι +ὁ +ἄρχων +ὁ +κόσμος +οὗτος +κρίνω +ἔτι +ἔχω +πολύς +σύ +λέγω +ἀλλά +οὐ +δύναμαι +βαστάζω +ἄρτι +δέ +ὅταν +ἔρχομαι +ἐκεῖνος +ὁ +πνεῦμα +ὁ +ἀλήθεια +ὁδηγέω +σύ +εἰς +ὁ +ἀλήθεια +πᾶς +γάρ +οὐ +λαλέω +ἀπό +ἑαυτοῦ +ἀλλά +ὅσος +ἀκούω +λαλέω +καί +ὁ +ἔρχομαι +ἀναγγέλλω +σύ +ἐκεῖνος +ἐγώ +δοξάζω +ὅτι +ἐκ +ὁ +ἐμός +λαμβάνω +καί +ἀναγγέλλω +σύ +πᾶς +ὅσος +ἔχω +ὁ +πατήρ +ἐμός +εἰμί +διά +οὗτος +λέγω +ὅτι +ἐκ +ὁ +ἐμός +λαμβάνω +καί +ἀναγγέλλω +σύ +μικρός +καί +οὐκέτι +θεωρέω +ἐγώ +καί +πάλιν +μικρός +καί +ὁράω +ἐγώ +οὖν +λέγω +ἐκ +ὁ +μαθητής +αὐτός +πρός +ἀλλήλων +τίς +εἰμί +οὗτος +ὅς +λέγω +ἐγώ +μικρός +καί +οὐ +θεωρέω +ἐγώ +καί +πάλιν +μικρός +καί +ὁράω +ἐγώ +καί +ὅτι +ὑπάγω +πρός +ὁ +πατήρ +οὖν +λέγω +τίς +εἰμί +οὗτος +ὅς +λέγω +ὁ +μικρός +οὐ +οἶδα +τίς +λαλέω +γινώσκω +Ἰησοῦς +ὅτι +θέλω +αὐτός +ἐρωτάω +καί +λέγω +αὐτός +περί +οὗτος +ζητέω +μετά +ἀλλήλων +ὅτι +λέγω +μικρός +καί +οὐ +θεωρέω +ἐγώ +καί +πάλιν +μικρός +καί +ὁράω +ἐγώ +ἀμήν +ἀμήν +λέγω +σύ +ὅτι +κλαίω +καί +θρηνέω +σύ +δέ +ὁ +κόσμος +χαίρω +σύ +λυπέω +ἀλλά +ὁ +λύπη +σύ +εἰς +χαρά +γίνομαι +ὅταν +ὁ +γυνή +τίκτω +λύπη +ἔχω +ὅτι +ἔρχομαι +ὁ +ὥρα +αὐτός +δέ +ὅταν +γεννάω +ὁ +παιδίον +οὐκέτι +μνημονεύω +ὁ +θλῖψις +διά +ὁ +χαρά +ὅτι +γεννάω +ἄνθρωπος +εἰς +ὁ +κόσμος +οὖν +μέν +καί +σύ +νῦν +λύπη +ἔχω +δέ +πάλιν +ὁράω +σύ +καί +χαίρω +σύ +ὁ +καρδία +καί +ὁ +χαρά +σύ +οὐδείς +αἴρω +ἀπό +σύ +καί +ἐν +ἐκεῖνος +ὁ +ἡμέρα +ἐγώ +οὐ +ἐρωτάω +οὐδείς +ἀμήν +ἀμήν +λέγω +σύ +ἄν +τὶς +αἰτέω +ὁ +πατήρ +δίδωμι +σύ +ἐν +ὁ +ὄνομα +ἐγώ +ἕως +ἄρτι +οὐ +αἰτέω +οὐδείς +ἐν +ὁ +ὄνομα +ἐγώ +αἰτέω +καί +λαμβάνω +ἵνα +ὁ +χαρά +σύ +εἰμί +πληρόω +οὗτος +ἐν +παροιμία +λαλέω +σύ +ἔρχομαι +ὥρα +ὅτε +οὐκέτι +ἐν +παροιμία +λαλέω +σύ +ἀλλά +παρρησία +περί +ὁ +πατήρ +ἀπαγγέλλω +σύ +ἐν +ἐκεῖνος +ὁ +ἡμέρα +ἐν +ὁ +ὄνομα +ἐγώ +αἰτέω +καί +οὐ +λέγω +σύ +ὅτι +ἐγώ +ἐρωτάω +ὁ +πατήρ +περί +σύ +γάρ +αὐτός +ὁ +πατήρ +φιλέω +σύ +ὅτι +σύ +ἐγώ +φιλέω +καί +πιστεύω +ὅτι +ἐγώ +παρά +ὁ +θεός +ἐξέρχομαι +ἐξέρχομαι +ἐκ +ὁ +πατήρ +καί +ἔρχομαι +εἰς +ὁ +κόσμος +πάλιν +ἀφίημι +ὁ +κόσμος +καί +πορεύομαι +πρός +ὁ +πατήρ +λέγω +ὁ +μαθητής +αὐτός +ὁράω +νῦν +ἐν +παρρησία +λαλέω +καί +παροιμία +οὐδείς +λέγω +νῦν +οἶδα +ὅτι +οἶδα +πᾶς +καί +οὐ +χρεία +ἔχω +ἵνα +τὶς +σύ +ἐρωτάω +ἐν +οὗτος +πιστεύω +ὅτι +ἀπό +θεός +ἐξέρχομαι +ἀποκρίνομαι +αὐτός +Ἰησοῦς +ἄρτι +πιστεύω +ὁράω +ἔρχομαι +ὥρα +καί +ἔρχομαι +ἵνα +σκορπίζω +ἕκαστος +εἰς +ὁ +ἴδιος +κἀγώ +μόνος +ἀφίημι +καί +οὐ +εἰμί +μόνος +ὅτι +ὁ +πατήρ +μετά +ἐγώ +εἰμί +οὗτος +λαλέω +σύ +ἵνα +ἐν +ἐγώ +εἰρήνη +ἔχω +ἐν +ὁ +κόσμος +θλῖψις +ἔχω +ἀλλά +θαρσέω +ἐγώ +νικάω +ὁ +κόσμος +οὗτος +λαλέω +Ἰησοῦς +καί +ἐπαίρω +ὁ +ὀφθαλμός +αὐτός +εἰς +ὁ +οὐρανός +λέγω +πατήρ +ἔρχομαι +ὁ +ὥρα +δοξάζω +σύ +ὁ +υἱός +ἵνα +ὁ +υἱός +δοξάζω +σύ +καθώς +δίδωμι +αὐτός +ἐξουσία +πᾶς +σάρξ +ἵνα +πᾶς +ὅς +δίδωμι +αὐτός +δίδωμι +αὐτός +ζωή +αἰώνιος +δέ +οὗτος +εἰμί +ὁ +αἰώνιος +ζωή +ἵνα +γινώσκω +σύ +ὁ +μόνος +ἀληθινός +θεός +καί +ὅς +ἀποστέλλω +Ἰησοῦς +Χριστός +ἐγώ +σύ +δοξάζω +ἐπί +ὁ +γῆ +τελειόω +ὁ +ἔργον +ὅς +δίδωμι +ἐγώ +ἵνα +ποιέω +καί +πατήρ +νῦν +δοξάζω +ἐγώ +σύ +παρά +σεαυτοῦ +ὁ +δόξα +ὅς +ἔχω +πρό +ὁ +ὁ +κόσμος +εἰμί +παρά +σύ +φανερόω +σύ +ὁ +ὄνομα +ὁ +ἄνθρωπος +ὅς +δίδωμι +ἐγώ +ἐκ +ὁ +κόσμος +σός +εἰμί +κἀγώ +αὐτός +δίδωμι +καί +ὁ +λόγος +σύ +τηρέω +νῦν +γινώσκω +ὅτι +πᾶς +ὅσος +δίδωμι +ἐγώ +παρά +σύ +εἰμί +ὅτι +ὁ +ῥῆμα +ὅς +δίδωμι +ἐγώ +δίδωμι +αὐτός +καί +αὐτός +λαμβάνω +καί +γινώσκω +ἀληθῶς +ὅτι +παρά +σύ +ἐξέρχομαι +καί +πιστεύω +ὅτι +σύ +ἐγώ +ἀποστέλλω +ἐγώ +περί +αὐτός +ἐρωτάω +οὐ +περί +ὁ +κόσμος +ἐρωτάω +ἀλλά +περί +ὅς +δίδωμι +ἐγώ +ὅτι +σός +εἰμί +καί +ὁ +ἐμός +πᾶς +σός +εἰμί +καί +ὁ +σός +ἐμός +καί +δοξάζω +ἐν +αὐτός +καί +οὐκέτι +εἰμί +ἐν +ὁ +κόσμος +καί +αὐτός +ἐν +ὁ +κόσμος +εἰμί +κἀγώ +πρός +σύ +ἔρχομαι +πατήρ +ἅγιος +τηρέω +αὐτός +ἐν +ὁ +ὄνομα +σύ +ὅς +δίδωμι +ἐγώ +ἵνα +εἰμί +εἷς +καθώς +ἐγώ +ὅτε +εἰμί +μετά +αὐτός +ἐγώ +τηρέω +αὐτός +ἐν +ὁ +ὄνομα +σύ +ὅς +δίδωμι +ἐγώ +καί +φυλάσσω +καί +οὐδείς +ἐκ +αὐτός +ἀπόλλυμι +εἰ +μή +ὁ +υἱός +ὁ +ἀπώλεια +ἵνα +ὁ +γραφή +πληρόω +δέ +νῦν +πρός +σύ +ἔρχομαι +καί +οὗτος +λαλέω +ἐν +ὁ +κόσμος +ἵνα +ἔχω +ὁ +χαρά +ὁ +ἐμός +πληρόω +ἐν +ἑαυτοῦ +ἐγώ +δίδωμι +αὐτός +ὁ +λόγος +σύ +καί +ὁ +κόσμος +μισέω +αὐτός +ὅτι +οὐ +εἰμί +ἐκ +ὁ +κόσμος +καθώς +ἐγώ +οὐ +εἰμί +ἐκ +ὁ +κόσμος +οὐ +ἐρωτάω +ἵνα +αἴρω +αὐτός +ἐκ +ὁ +κόσμος +ἀλλά +ἵνα +τηρέω +αὐτός +ἐκ +ὁ +πονηρός +ἐκ +ὁ +κόσμος +οὐ +εἰμί +καθώς +ἐγώ +οὐ +εἰμί +ἐκ +ὁ +κόσμος +ἁγιάζω +αὐτός +ἐν +ὁ +ἀλήθεια +ὁ +λόγος +ὁ +σός +ἀλήθεια +εἰμί +καθώς +ἐγώ +ἀποστέλλω +εἰς +ὁ +κόσμος +κἀγώ +ἀποστέλλω +αὐτός +εἰς +ὁ +κόσμος +καί +ὑπέρ +αὐτός +ἐγώ +ἁγιάζω +ἐμαυτοῦ +ἵνα +εἰμί +ἁγιάζω +καί +αὐτός +ἐν +ἀλήθεια +δέ +οὐ +περί +οὗτος +ἐρωτάω +μόνος +ἀλλά +καί +περί +ὁ +πιστεύω +διά +ὁ +λόγος +αὐτός +εἰς +ἐγώ +ἵνα +πᾶς +εἷς +εἰμί +καθώς +πατήρ +σύ +ἐν +ἐγώ +κἀγώ +ἐν +σύ +ἵνα +καί +αὐτός +ἐν +ἐγώ +εἰμί +ἵνα +ὁ +κόσμος +πιστεύω +ὅτι +σύ +ἐγώ +ἀποστέλλω +κἀγώ +ὁ +δόξα +ὅς +δίδωμι +ἐγώ +δίδωμι +αὐτός +ἵνα +εἰμί +εἷς +καθώς +ἐγώ +εἷς +ἐγώ +ἐν +αὐτός +καί +σύ +ἐν +ἐγώ +ἵνα +εἰμί +τελειόω +εἰς +εἷς +ἵνα +γινώσκω +ὁ +κόσμος +ὅτι +σύ +ἐγώ +ἀποστέλλω +καί +ἀγαπάω +αὐτός +καθώς +ἐγώ +ἀγαπάω +πατήρ +ὅς +δίδωμι +ἐγώ +θέλω +ἵνα +ὅπου +εἰμί +ἐγώ +κἀκεῖνος +εἰμί +μετά +ἐγώ +ἵνα +θεωρέω +ὁ +δόξα +ὁ +ἐμός +ὅς +δίδωμι +ἐγώ +ὅτι +ἀγαπάω +ἐγώ +πρό +καταβολή +κόσμος +πατήρ +δίκαιος +καί +ὁ +κόσμος +σύ +οὐ +γινώσκω +δέ +ἐγώ +σύ +γινώσκω +καί +οὗτος +γινώσκω +ὅτι +σύ +ἐγώ +ἀποστέλλω +καί +γνωρίζω +αὐτός +ὁ +ὄνομα +σύ +καί +γνωρίζω +ἵνα +ὁ +ἀγάπη +ὅς +ἀγαπάω +ἐγώ +ἐν +αὐτός +εἰμί +κἀγώ +ἐν +αὐτός +οὗτος +λέγω +Ἰησοῦς +ἐξέρχομαι +σύν +ὁ +μαθητής +αὐτός +πέραν +ὁ +χείμαρρος +ὁ +Κεδρών +ὅπου +εἰμί +κῆπος +εἰς +ὅς +εἰσέρχομαι +αὐτός +καί +ὁ +μαθητής +αὐτός +δέ +οἶδα +καί +Ἰούδας +ὁ +παραδίδωμι +αὐτός +ὁ +τόπος +ὅτι +πολλάκις +συνάγω +Ἰησοῦς +ἐκεῖ +μετά +ὁ +μαθητής +αὐτός +οὖν +ὁ +Ἰούδας +λαμβάνω +ὁ +σπεῖρα +καί +ἐκ +ὁ +ἀρχιερεύς +καί +ἐκ +ὁ +Φαρισαῖος +ὑπηρέτης +ἔρχομαι +ἐκεῖ +μετά +φανός +καί +λαμπάς +καί +ὅπλον +οὖν +Ἰησοῦς +οἶδα +πᾶς +ὁ +ἔρχομαι +ἐπί +αὐτός +ἐξέρχομαι +καί +λέγω +αὐτός +τίς +ζητέω +ἀποκρίνομαι +αὐτός +Ἰησοῦς +ὁ +Ναζωραῖος +λέγω +αὐτός +ἐγώ +εἰμί +δέ +ἵστημι +καί +Ἰούδας +ὁ +παραδίδωμι +αὐτός +μετά +αὐτός +οὖν +ὡς +λέγω +αὐτός +ἐγώ +εἰμί +ἀπέρχομαι +εἰς +ὁ +ὀπίσω +καί +πίπτω +χαμαί +οὖν +πάλιν +ἐπερωτάω +αὐτός +τίς +ζητέω +δέ +ὁ +λέγω +Ἰησοῦς +ὁ +Ναζωραῖος +ἀποκρίνομαι +Ἰησοῦς +λέγω +σύ +ὅτι +ἐγώ +εἰμί +οὖν +εἰ +ἐγώ +ζητέω +ἀφίημι +οὗτος +ὑπάγω +ἵνα +πληρόω +ὁ +λόγος +ὅς +λέγω +ὅτι +ὅς +δίδωμι +ἐγώ +οὐ +ἀπόλλυμι +ἐκ +αὐτός +οὐδείς +οὖν +Σίμων +Πέτρος +ἔχω +μάχαιρα +ἕλκω +αὐτός +καί +παίω +ὁ +ὁ +ἀρχιερεύς +δοῦλος (II) +καί +ἀποκόπτω +αὐτός +ὁ +ὠτάριον +ὁ +δεξιός +δέ +εἰμί +ὄνομα +ὁ +δοῦλος (II) +Μάλχος +οὖν +λέγω +ὁ +Ἰησοῦς +ὁ +Πέτρος +βάλλω +ὁ +μάχαιρα +εἰς +ὁ +θήκη +ὁ +ποτήριον +ὅς +δίδωμι +ἐγώ +ὁ +πατήρ +οὐ +μή +πίνω +αὐτός +οὖν +ὁ +σπεῖρα +καί +ὁ +χιλίαρχος +καί +ὁ +ὑπηρέτης +ὁ +Ἰουδαῖος +συλλαμβάνω +ὁ +Ἰησοῦς +καί +δέω +αὐτός +καί +ἄγω +πρός +Ἅννας +πρῶτος +γάρ +εἰμί +πενθερός +ὁ +Καϊάφας +ὅς +εἰμί +ἀρχιερεύς +ὁ +ἐνιαυτός +ἐκεῖνος +δέ +εἰμί +Καϊάφας +ὁ +συμβουλεύω +ὁ +Ἰουδαῖος +ὅτι +συμφέρω +εἷς +ἄνθρωπος +ἀποθνῄσκω +ὑπέρ +ὁ +λαός +δέ +ἀκολουθέω +ὁ +Ἰησοῦς +Σίμων +Πέτρος +καί +ἄλλος +μαθητής +δέ +ὁ +μαθητής +ἐκεῖνος +εἰμί +γνωστός +ὁ +ἀρχιερεύς +καί +συνεισέρχομαι +ὁ +Ἰησοῦς +εἰς +ὁ +αὐλή +ὁ +ἀρχιερεύς +δέ +ὁ +Πέτρος +ἵστημι +πρός +ὁ +θύρα +ἔξω +οὖν +ἐξέρχομαι +ὁ +μαθητής +ὁ +ἄλλος +ὁ +γνωστός +ὁ +ἀρχιερεύς +καί +λέγω +ὁ +θυρωρός +καί +εἰσάγω +ὁ +Πέτρος +οὖν +λέγω +ὁ +Πέτρος +ὁ +παιδίσκη +ὁ +θυρωρός +μή +καί +σύ +ἐκ +ὁ +μαθητής +ὁ +ἄνθρωπος +οὗτος +εἰμί +λέγω +ἐκεῖνος +οὐ +εἰμί +δέ +ἵστημι +ὁ +δοῦλος (II) +καί +ὁ +ὑπηρέτης +ἀνθρακιά +ποιέω +ὅτι +ψῦχος +εἰμί +καί +θερμαίνω +δέ +καί +ὁ +Πέτρος +μετά +αὐτός +εἰμί +ἵστημι +καί +θερμαίνω +οὖν +ὁ +ἀρχιερεύς +ἐρωτάω +ὁ +Ἰησοῦς +περί +ὁ +μαθητής +αὐτός +καί +περί +ὁ +διδαχή +αὐτός +ἀποκρίνομαι +αὐτός +Ἰησοῦς +ἐγώ +παρρησία +λαλέω +ὁ +κόσμος +ἐγώ +πάντοτε +διδάσκω +ἐν +συναγωγή +καί +ἐν +ὁ +ἱερός +ὅπου +πᾶς +ὁ +Ἰουδαῖος +συνέρχομαι +καί +ἐν +κρυπτός +λαλέω +οὐδείς +τίς +ἐγώ +ἐρωτάω +ἐρωτάω +ὁ +ἀκούω +τίς +λαλέω +αὐτός +ὁράω +οὗτος +οἶδα +ὅς +λέγω +ἐγώ +δέ +οὗτος +αὐτός +λέγω +εἷς +παρίστημι +ὁ +ὑπηρέτης +δίδωμι +ῥάπισμα +ὁ +Ἰησοῦς +λέγω +οὕτω +ἀποκρίνομαι +ὁ +ἀρχιερεύς +ἀποκρίνομαι +αὐτός +Ἰησοῦς +εἰ +κακῶς +λαλέω +μαρτυρέω +περί +ὁ +κακός +δέ +εἰ +καλῶς +τίς +ἐγώ +δέρω +οὖν +ἀποστέλλω +αὐτός +ὁ +Ἅννας +δέω +πρός +Καϊάφας +ὁ +ἀρχιερεύς +δέ +Σίμων +Πέτρος +εἰμί +ἵστημι +καί +θερμαίνω +οὖν +λέγω +αὐτός +μή +καί +σύ +ἐκ +ὁ +μαθητής +αὐτός +εἰμί +ἀρνέομαι +ἐκεῖνος +καί +λέγω +οὐ +εἰμί +λέγω +εἷς +ἐκ +ὁ +δοῦλος (II) +ὁ +ἀρχιερεύς +εἰμί +συγγενής +ὅς +ἀποκόπτω +Πέτρος +ὁ +ὠτίον +οὐ +ἐγώ +ὁράω +σύ +ἐν +ὁ +κῆπος +μετά +αὐτός +οὖν +πάλιν +ἀρνέομαι +Πέτρος +καί +εὐθέως +ἀλέκτωρ +φωνέω +οὖν +ἄγω +ὁ +Ἰησοῦς +ἀπό +ὁ +Καϊάφας +εἰς +ὁ +πραιτώριον +δέ +εἰμί +πρωΐ +καί +αὐτός +οὐ +εἰσέρχομαι +εἰς +ὁ +πραιτώριον +ἵνα +μή +μιαίνω +ἀλλά +ἐσθίω +ὁ +πάσχα +οὖν +ἐξέρχομαι +ὁ +Πιλᾶτος +ἔξω +πρός +αὐτός +καί +φημί +τίς +κατηγορία +ὁ +ἄνθρωπος +οὗτος +φέρω +ἀποκρίνομαι +καί +λέγω +αὐτός +εἰ +μή +εἰμί +ποιέω +οὗτος +κακός +ἄν +οὐ +σύ +παραδίδωμι +αὐτός +οὖν +λέγω +αὐτός +ὁ +Πιλᾶτος +λαμβάνω +αὐτός +σύ +καί +κατά +ὁ +νόμος +σύ +κρίνω +αὐτός +λέγω +αὐτός +ὁ +Ἰουδαῖος +ἐγώ +οὐ +ἔξεστι(ν) +ἀποκτείνω +οὐδείς +ἵνα +ὁ +λόγος +ὁ +Ἰησοῦς +πληρόω +ὅς +λέγω +σημαίνω +ποῖος +θάνατος +μέλλω +ἀποθνῄσκω +οὖν +εἰσέρχομαι +πάλιν +εἰς +ὁ +πραιτώριον +ὁ +Πιλᾶτος +καί +φωνέω +ὁ +Ἰησοῦς +καί +λέγω +αὐτός +σύ +εἰμί +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +ἀποκρίνομαι +Ἰησοῦς +ἀπό +ἑαυτοῦ +σύ +οὗτος +λέγω +ἤ +ἄλλος +λέγω +σύ +περί +ἐγώ +ἀποκρίνομαι +ὁ +Πιλᾶτος +μήτι +ἐγώ +Ἰουδαῖος +εἰμί +ὁ +ἔθνος +ὁ +σός +καί +ὁ +ἀρχιερεύς +παραδίδωμι +σύ +ἐγώ +τίς +ποιέω +ἀποκρίνομαι +Ἰησοῦς +ὁ +βασιλεία +ὁ +ἐμός +οὐ +εἰμί +ἐκ +ὁ +κόσμος +οὗτος +εἰ +ἐκ +ὁ +κόσμος +οὗτος +εἰμί +ὁ +βασιλεία +ὁ +ἐμός +ἄν +ὁ +ὑπηρέτης +ὁ +ἐμός +ἀγωνίζομαι +ἵνα +μή +παραδίδωμι +ὁ +Ἰουδαῖος +δέ +νῦν +ὁ +βασιλεία +ὁ +ἐμός +οὐ +εἰμί +ἐντεῦθεν +οὖν +λέγω +αὐτός +ὁ +Πιλᾶτος +οὐκοῦν +βασιλεύς +εἰμί +σύ +ἀποκρίνομαι +ὁ +Ἰησοῦς +σύ +λέγω +ὅτι +βασιλεύς +εἰμί +ἐγώ +εἰς +οὗτος +γεννάω +καί +εἰς +οὗτος +ἔρχομαι +εἰς +ὁ +κόσμος +ἵνα +μαρτυρέω +ὁ +ἀλήθεια +πᾶς +ὁ +εἰμί +ἐκ +ὁ +ἀλήθεια +ἀκούω +ἐγώ +ὁ +φωνή +λέγω +αὐτός +ὁ +Πιλᾶτος +τίς +εἰμί +ἀλήθεια +καί +οὗτος +λέγω +πάλιν +ἐξέρχομαι +πρός +ὁ +Ἰουδαῖος +καί +λέγω +αὐτός +ἐγώ +οὐδείς +εὑρίσκω +ἐν +αὐτός +αἰτία +δέ +εἰμί +συνήθεια +σύ +ἵνα +εἷς +ἀπολύω +σύ +ἐν +ὁ +πάσχα +οὖν +βούλομαι +ἀπολύω +σύ +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +οὖν +κραυγάζω +πάλιν +λέγω +μή +οὗτος +ἀλλά +ὁ +Βαραββᾶς +δέ +εἰμί +ὁ +Βαραββᾶς +λῃστής +οὖν +τότε +λαμβάνω +ὁ +Πιλᾶτος +ὁ +Ἰησοῦς +καί +μαστιγόω +καί +ὁ +στρατιώτης +πλέκω +στέφανος +ἐκ +ἄκανθα +ἐπιτίθημι +αὐτός +ὁ +κεφαλή +καί +ἱμάτιον +πορφυροῦς +περιβάλλω +αὐτός +καί +ἔρχομαι +πρός +αὐτός +καί +λέγω +χαίρω +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +καί +δίδωμι +αὐτός +ῥάπισμα +καί +ἐξέρχομαι +πάλιν +ἔξω +ὁ +Πιλᾶτος +καί +λέγω +αὐτός +ὁράω +ἄγω +σύ +αὐτός +ἔξω +ἵνα +γινώσκω +ὅτι +οὐδείς +αἰτία +εὑρίσκω +ἐν +αὐτός +οὖν +ἐξέρχομαι +ὁ +Ἰησοῦς +ἔξω +φορέω +ὁ +ἀκάνθινος +στέφανος +καί +ὁ +πορφυροῦς +ἱμάτιον +καί +λέγω +αὐτός +ὁράω +ὁ +ἄνθρωπος +οὖν +ὅτε +ὁράω +αὐτός +ὁ +ἀρχιερεύς +καί +ὁ +ὑπηρέτης +κραυγάζω +λέγω +σταυρόω +σταυρόω +λέγω +αὐτός +ὁ +Πιλᾶτος +λαμβάνω +αὐτός +σύ +καί +σταυρόω +γάρ +ἐγώ +οὐ +εὑρίσκω +ἐν +αὐτός +αἰτία +ἀποκρίνομαι +αὐτός +ὁ +Ἰουδαῖος +ἐγώ +νόμος +ἔχω +καί +κατά +ὁ +νόμος +ὀφείλω +ἀποθνῄσκω +ὅτι +υἱός +θεός +ἑαυτοῦ +ποιέω +οὖν +ὅτε +ἀκούω +ὁ +Πιλᾶτος +οὗτος +ὁ +λόγος +μᾶλλον +φοβέω +καί +εἰσέρχομαι +εἰς +ὁ +πραιτώριον +πάλιν +καί +λέγω +ὁ +Ἰησοῦς +πόθεν +εἰμί +σύ +δέ +ὁ +Ἰησοῦς +ἀπόκρισις +οὐ +δίδωμι +αὐτός +οὖν +λέγω +αὐτός +ὁ +Πιλᾶτος +οὐ +ἐγώ +λαλέω +οὐ +οἶδα +ὅτι +ἐξουσία +ἔχω +ἀπολύω +σύ +καί +ἐξουσία +ἔχω +σταυρόω +σύ +ἀποκρίνομαι +Ἰησοῦς +οὐ +ἔχω +ἐξουσία +οὐδείς +κατά +ἐγώ +εἰ +μή +εἰμί +δίδωμι +σύ +ἄνωθεν +διά +οὗτος +ὁ +παραδίδωμι +ἐγώ +σύ +μέγας +ἁμαρτία +ἔχω +ἐκ +οὗτος +ὁ +Πιλᾶτος +ζητέω +ἀπολύω +αὐτός +δέ +ὁ +Ἰουδαῖος +κραυγάζω +λέγω +ἐάν +οὗτος +ἀπολύω +οὐ +εἰμί +φίλος +ὁ +Καῖσαρ +πᾶς +ὁ +βασιλεύς +ἑαυτοῦ +ποιέω +ἀντιλέγω +ὁ +Καῖσαρ +οὖν +ὁ +Πιλᾶτος +ἀκούω +ὁ +λόγος +οὗτος +ἄγω +ἔξω +ὁ +Ἰησοῦς +καί +καθίζω +ἐπί +βῆμα +εἰς +τόπος +λέγω +λιθόστρωτος +δέ +Ἑβραϊστί +Γαββαθά +δέ +εἰμί +παρασκευή +ὁ +πάσχα +ὥρα +εἰμί +ὡς +ἕκτος +καί +λέγω +ὁ +Ἰουδαῖος +ὁράω +ὁ +βασιλεύς +σύ +οὖν +κραυγάζω +ἐκεῖνος +αἴρω +αἴρω +σταυρόω +αὐτός +λέγω +αὐτός +ὁ +Πιλᾶτος +ὁ +βασιλεύς +σύ +σταυρόω +ἀποκρίνομαι +ὁ +ἀρχιερεύς +οὐ +ἔχω +βασιλεύς +εἰ +μή +Καῖσαρ +οὖν +τότε +παραδίδωμι +αὐτός +αὐτός +ἵνα +σταυρόω +οὖν +παραλαμβάνω +ὁ +Ἰησοῦς +καί +βαστάζω +ἑαυτοῦ +ὁ +σταυρός +ἐξέρχομαι +εἰς +ὁ +λέγω +κρανίον +τόπος +ὅς +λέγω +Ἑβραϊστί +Γολγοθᾶ +ὅπου +αὐτός +σταυρόω +καί +μετά +αὐτός +ἄλλος +δύο +ἐντεῦθεν +καί +ἐντεῦθεν +δέ +μέσος +ὁ +Ἰησοῦς +δέ +γράφω +καί +τίτλος +ὁ +Πιλᾶτος +καί +τίθημι +ἐπί +ὁ +σταυρός +δέ +εἰμί +γράφω +Ἰησοῦς +ὁ +Ναζωραῖος +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +οὖν +οὗτος +ὁ +τίτλος +ἀναγινώσκω +πολύς +ὁ +Ἰουδαῖος +ὅτι +ἐγγύς +ὁ +πόλις +εἰμί +ὁ +τόπος +ὅπου +σταυρόω +ὁ +Ἰησοῦς +καί +εἰμί +γράφω +Ἑβραϊστί +Ῥωμαϊστί +Ἑλληνιστί +οὖν +λέγω +ὁ +Πιλᾶτος +ὁ +ἀρχιερεύς +ὁ +Ἰουδαῖος +μή +γράφω +ὁ +βασιλεύς +ὁ +Ἰουδαῖος +ἀλλά +ὅτι +ἐκεῖνος +λέγω +βασιλεύς +ὁ +Ἰουδαῖος +εἰμί +ἀποκρίνομαι +ὁ +Πιλᾶτος +ὅς +γράφω +γράφω +οὖν +ὅτε +ὁ +στρατιώτης +σταυρόω +ὁ +Ἰησοῦς +λαμβάνω +ὁ +ἱμάτιον +αὐτός +καί +ποιέω +τέσσαρες +μέρος +ἕκαστος +στρατιώτης +μέρος +καί +ὁ +χιτών +δέ +εἰμί +ὁ +χιτών +ἄραφος +ἐκ +ὁ +ἄνωθεν +ὑφαντός +διά +ὅλος +οὖν +λέγω +πρός +ἀλλήλων +μή +σχίζω +αὐτός +ἀλλά +λαγχάνω +περί +αὐτός +τίς +εἰμί +ἵνα +ὁ +γραφή +πληρόω +διαμερίζω +ὁ +ἱμάτιον +ἐγώ +ἑαυτοῦ +καί +ἐπί +ὁ +ἱματισμός +ἐγώ +βάλλω +κλῆρος +οὖν +μέν +ὁ +στρατιώτης +οὗτος +ποιέω +δέ +ἵστημι +παρά +ὁ +σταυρός +ὁ +Ἰησοῦς +ὁ +μήτηρ +αὐτός +καί +ὁ +ἀδελφή +ὁ +μήτηρ +αὐτός +Μαρία +ὁ +ὁ +Κλωπᾶς +καί +Μαρία +ὁ +Μαγδαληνή +οὖν +Ἰησοῦς +ὁράω +ὁ +μήτηρ +καί +ὁ +μαθητής +παρίστημι +ὅς +ἀγαπάω +λέγω +ὁ +μήτηρ +γυνή +ὁράω +ὁ +υἱός +σύ +εἶτα +λέγω +ὁ +μαθητής +ὁράω +ὁ +μήτηρ +σύ +καί +ἀπό +ἐκεῖνος +ὁ +ὥρα +λαμβάνω +ὁ +μαθητής +αὐτός +εἰς +ὁ +ἴδιος +μετά +οὗτος +ὁ +Ἰησοῦς +οἶδα +ὅτι +ἤδη +πᾶς +τελέω +ἵνα +τελειόω +ὁ +γραφή +λέγω +διψάω +σκεῦος +ὄξος +μεστός +κεῖμαι +οὖν +σπόγγος +μεστός +ὁ +ὄξος +ὕσσωπος +περιτίθημι +προσφέρω +αὐτός +ὁ +στόμα +οὖν +ὅτε +λαμβάνω +ὁ +ὄξος +ὁ +Ἰησοῦς +λέγω +τελέω +καί +κλίνω +ὁ +κεφαλή +παραδίδωμι +ὁ +πνεῦμα +οὖν +ὁ +Ἰουδαῖος +ἐπεί +παρασκευή +εἰμί +ἵνα +μή +μένω +ἐπί +ὁ +σταυρός +ὁ +σῶμα +ἐν +ὁ +σάββατον +γάρ +εἰμί +μέγας +ὁ +ἡμέρα +ἐκεῖνος +ὁ +σάββατον +ἐρωτάω +ὁ +Πιλᾶτος +ἵνα +κατάγνυμι +αὐτός +ὁ +σκέλος +καί +αἴρω +οὖν +ἔρχομαι +ὁ +στρατιώτης +καί +μέν +κατάγνυμι +ὁ +σκέλος +ὁ +πρῶτος +καί +ὁ +ἄλλος +ὁ +συσταυρόω +αὐτός +δέ +ἐπί +ὁ +Ἰησοῦς +ἔρχομαι +ὡς +ὁράω +ἤδη +αὐτός +θνῄσκω +οὐ +κατάγνυμι +αὐτός +ὁ +σκέλος +ἀλλά +εἷς +ὁ +στρατιώτης +λόγχη +αὐτός +ὁ +πλευρά +νύσσω +καί +ἐξέρχομαι +εὐθύς +αἷμα +καί +ὕδωρ +καί +ὁ +ὁράω +μαρτυρέω +καί +ἀληθινός +εἰμί +αὐτός +ὁ +μαρτυρία +καί +ἐκεῖνος +οἶδα +ὅτι +ἀληθής +λέγω +ἵνα +καί +σύ +πιστεύω +γάρ +γίνομαι +οὗτος +ἵνα +ὁ +γραφή +πληρόω +ὀστέον +αὐτός +οὐ +συντρίβω +καί +πάλιν +ἕτερος +γραφή +λέγω +ὁράω +εἰς +ὅς +ἐκκεντέω +δέ +μετά +οὗτος +ἐρωτάω +ὁ +Πιλᾶτος +Ἰωσήφ +ἀπό +Ἁριμαθαία +εἰμί +μαθητής +ὁ +Ἰησοῦς +δέ +κρύπτω +διά +ὁ +φόβος +ὁ +Ἰουδαῖος +ἵνα +αἴρω +ὁ +σῶμα +ὁ +Ἰησοῦς +καί +ἐπιτρέπω +ὁ +Πιλᾶτος +οὖν +ἔρχομαι +καί +αἴρω +ὁ +σῶμα +αὐτός +δέ +ἔρχομαι +καί +Νικόδημος +ὁ +ἔρχομαι +πρός +αὐτός +νύξ +ὁ +πρῶτος +φέρω +μίγμα +σμύρνα +καί +ἀλόη +ὡς +λίτρα +ἑκατόν +οὖν +λαμβάνω +ὁ +σῶμα +ὁ +Ἰησοῦς +καί +δέω +αὐτός +ὀθόνιον +μετά +ὁ +ἄρωμα +καθώς +ἔθος +εἰμί +ὁ +Ἰουδαῖος +ἐνταφιάζω +δέ +εἰμί +ἐν +ὁ +τόπος +ὅπου +σταυρόω +κῆπος +καί +ἐν +ὁ +κῆπος +μνημεῖον +καινός +ἐν +ὅς +οὐδέπω +οὐδείς +εἰμί +τίθημι +οὖν +ἐκεῖ +διά +ὁ +παρασκευή +ὁ +Ἰουδαῖος +ὅτι +ἐγγύς +εἰμί +ὁ +μνημεῖον +τίθημι +ὁ +Ἰησοῦς +δέ +ὁ +εἷς +ὁ +σάββατον +Μαρία +ὁ +Μαγδαληνή +ἔρχομαι +πρωΐ +εἰς +ὁ +μνημεῖον +σκοτία +ἔτι +εἰμί +καί +βλέπω +ὁ +λίθος +αἴρω +ἐκ +ὁ +μνημεῖον +οὖν +τρέχω +καί +ἔρχομαι +πρός +Σίμων +Πέτρος +καί +πρός +ὁ +ἄλλος +μαθητής +ὅς +φιλέω +ὁ +Ἰησοῦς +καί +λέγω +αὐτός +αἴρω +ὁ +κύριος +ἐκ +ὁ +μνημεῖον +καί +οὐ +οἶδα +ποῦ +τίθημι +αὐτός +οὖν +ἐξέρχομαι +ὁ +Πέτρος +καί +ὁ +ἄλλος +μαθητής +καί +ἔρχομαι +εἰς +ὁ +μνημεῖον +δέ +τρέχω +ὁ +δύο +ὁμοῦ +καί +ὁ +ἄλλος +μαθητής +προτρέχω +ταχύς +ὁ +Πέτρος +καί +ἔρχομαι +πρῶτος +εἰς +ὁ +μνημεῖον +καί +παρακύπτω +βλέπω +κεῖμαι +ὁ +ὀθόνιον +μέντοι +οὐ +εἰσέρχομαι +οὖν +ἔρχομαι +καί +Σίμων +Πέτρος +ἀκολουθέω +αὐτός +καί +εἰσέρχομαι +εἰς +ὁ +μνημεῖον +καί +θεωρέω +ὁ +ὀθόνιον +κεῖμαι +καί +ὁ +σουδάριον +ὅς +εἰμί +ἐπί +ὁ +κεφαλή +αὐτός +οὐ +μετά +ὁ +ὀθόνιον +κεῖμαι +ἀλλά +χωρίς +ἐντυλίσσω +εἰς +εἷς +τόπος +οὖν +τότε +εἰσέρχομαι +καί +ὁ +ἄλλος +μαθητής +ὁ +ἔρχομαι +πρῶτος +εἰς +ὁ +μνημεῖον +καί +ὁράω +καί +πιστεύω +γάρ +οὐδέπω +οἶδα +ὁ +γραφή +ὅτι +δεῖ +αὐτός +ἐκ +νεκρός +ἀνίστημι +οὖν +ἀπέρχομαι +πάλιν +πρός +αὐτός +ὁ +μαθητής +δέ +Μαρία +ἵστημι +πρός +ὁ +μνημεῖον +ἔξω +κλαίω +οὖν +ὡς +κλαίω +παρακύπτω +εἰς +ὁ +μνημεῖον +καί +θεωρέω +δύο +ἄγγελος +ἐν +λευκός +καθέζομαι +ὅπου +κεῖμαι +ὁ +σῶμα +ὁ +Ἰησοῦς +εἷς +πρός +ὁ +κεφαλή +καί +εἷς +πρός +ὁ +πούς +καί +λέγω +αὐτός +ἐκεῖνος +γυνή +τίς +κλαίω +λέγω +αὐτός +ὅτι +αἴρω +ὁ +κύριος +ἐγώ +καί +οὐ +οἶδα +ποῦ +τίθημι +αὐτός +οὗτος +λέγω +στρέφω +εἰς +ὁ +ὀπίσω +καί +θεωρέω +ὁ +Ἰησοῦς +ἵστημι +καί +οὐ +οἶδα +ὅτι +Ἰησοῦς +εἰμί +λέγω +αὐτός +Ἰησοῦς +γυνή +τίς +κλαίω +τίς +ζητέω +ἐκεῖνος +δοκέω +ὅτι +ὁ +κηπουρός +εἰμί +λέγω +αὐτός +κύριος +εἰ +σύ +βαστάζω +αὐτός +λέγω +ἐγώ +ποῦ +τίθημι +αὐτός +κἀγώ +αὐτός +αἴρω +λέγω +αὐτός +Ἰησοῦς +Μαρία +στρέφω +ἐκεῖνος +λέγω +αὐτός +Ἑβραϊστί +ῥαββουνί +ὅς +λέγω +διδάσκαλος +λέγω +αὐτός +Ἰησοῦς +μή +ἐγώ +ἅπτω +γάρ +οὔπω +ἀναβαίνω +πρός +ὁ +πατήρ +δέ +πορεύομαι +πρός +ὁ +ἀδελφός +ἐγώ +καί +λέγω +αὐτός +ἀναβαίνω +πρός +ὁ +πατήρ +ἐγώ +καί +πατήρ +σύ +καί +θεός +ἐγώ +καί +θεός +σύ +ἔρχομαι +Μαρία +ὁ +Μαγδαληνή +ἀγγέλλω +ὁ +μαθητής +ὅτι +ὁράω +ὁ +κύριος +καί +οὗτος +λέγω +αὐτός +οὖν +εἰμί +ὄψιος +ὁ +ἡμέρα +ἐκεῖνος +ὁ +εἷς +σάββατον +καί +ὁ +θύρα +κλείω +ὅπου +εἰμί +ὁ +μαθητής +διά +ὁ +φόβος +ὁ +Ἰουδαῖος +ἔρχομαι +ὁ +Ἰησοῦς +καί +ἵστημι +εἰς +ὁ +μέσος +καί +λέγω +αὐτός +εἰρήνη +σύ +καί +οὗτος +λέγω +δείκνυμι +καί +ὁ +χείρ +καί +ὁ +πλευρά +αὐτός +οὖν +χαίρω +ὁ +μαθητής +ὁράω +ὁ +κύριος +οὖν +λέγω +αὐτός +ὁ +Ἰησοῦς +πάλιν +εἰρήνη +σύ +καθώς +ἀποστέλλω +ἐγώ +ὁ +πατήρ +κἀγώ +πέμπω +σύ +καί +οὗτος +λέγω +ἐμφυσάω +καί +λέγω +αὐτός +λαμβάνω +πνεῦμα +ἅγιος +ἄν +ἀφίημι +τὶς +ὁ +ἁμαρτία +ἀφίημι +αὐτός +ἄν +τὶς +κρατέω +κρατέω +δέ +Θωμᾶς +εἷς +ἐκ +ὁ +δώδεκα +ὁ +λέγω +Δίδυμος +οὐ +εἰμί +μετά +αὐτός +ὅτε +ἔρχομαι +Ἰησοῦς +οὖν +λέγω +αὐτός +ὁ +ἄλλος +μαθητής +ὁράω +ὁ +κύριος +δέ +ὁ +λέγω +αὐτός +ἐάν +μή +ὁράω +ἐν +ὁ +χείρ +αὐτός +ὁ +τύπος +ὁ +ἧλος +καί +βάλλω +ὁ +δάκτυλος +ἐγώ +εἰς +ὁ +τόπος +ὁ +ἧλος +καί +βάλλω +ἐγώ +ὁ +χείρ +εἰς +ὁ +πλευρά +αὐτός +οὐ +μή +πιστεύω +καί +μετά +ἡμέρα +ὀκτώ +πάλιν +εἰμί +ἔσω +ὁ +μαθητής +αὐτός +καί +Θωμᾶς +μετά +αὐτός +ἔρχομαι +ὁ +Ἰησοῦς +ὁ +θύρα +κλείω +καί +ἵστημι +εἰς +ὁ +μέσος +καί +λέγω +εἰρήνη +σύ +εἶτα +λέγω +ὁ +Θωμᾶς +φέρω +ὁ +δάκτυλος +σύ +ὧδε +καί +ὁράω +ὁ +χείρ +ἐγώ +καί +φέρω +ὁ +χείρ +σύ +καί +βάλλω +εἰς +ὁ +πλευρά +ἐγώ +καί +μή +γίνομαι +ἄπιστος +ἀλλά +πιστός +ἀποκρίνομαι +Θωμᾶς +καί +λέγω +αὐτός +ὁ +κύριος +ἐγώ +καί +ὁ +θεός +ἐγώ +λέγω +αὐτός +ὁ +Ἰησοῦς +ὅτι +ὁράω +ἐγώ +πιστεύω +μακάριος +ὁ +μή +ὁράω +καί +πιστεύω +οὖν +μέν +καί +πολύς +ἄλλος +σημεῖον +ποιέω +ὁ +Ἰησοῦς +ἐνώπιον +ὁ +μαθητής +ὅς +οὐ +εἰμί +γράφω +ἐν +ὁ +βιβλίον +οὗτος +δέ +οὗτος +γράφω +ἵνα +πιστεύω +ὅτι +Ἰησοῦς +εἰμί +ὁ +Χριστός +ὁ +υἱός +ὁ +θεός +καί +ἵνα +πιστεύω +ζωή +ἔχω +ἐν +ὁ +ὄνομα +αὐτός +μετά +οὗτος +φανερόω +ἑαυτοῦ +πάλιν +Ἰησοῦς +ὁ +μαθητής +ἐπί +ὁ +θάλασσα +ὁ +Τιβεριάς +δέ +φανερόω +οὕτω +εἰμί +ὁμοῦ +Σίμων +Πέτρος +καί +Θωμᾶς +ὁ +λέγω +Δίδυμος +καί +Ναθαναήλ +ὁ +ἀπό +Κανά +ὁ +Γαλιλαία +καί +ὁ +ὁ +Ζεβεδαῖος +καί +ἄλλος +ἐκ +ὁ +μαθητής +αὐτός +δύο +λέγω +αὐτός +Σίμων +Πέτρος +ὑπάγω +ἁλιεύω +λέγω +αὐτός +ἔρχομαι +καί +ἐγώ +σύν +σύ +ἐξέρχομαι +καί +ἐμβαίνω +εἰς +ὁ +πλοῖον +καί +ἐν +ἐκεῖνος +ὁ +νύξ +πιάζω +οὐδείς +δέ +πρωΐα +ἤδη +γίνομαι +ἵστημι +Ἰησοῦς +εἰς +ὁ +αἰγιαλός +μέντοι +οὐ +οἶδα +ὁ +μαθητής +ὅτι +Ἰησοῦς +εἰμί +οὖν +λέγω +αὐτός +Ἰησοῦς +παιδίον +μή +τὶς +προσφάγιον +ἔχω +ἀποκρίνομαι +αὐτός +οὐ +δέ +ὁ +λέγω +αὐτός +βάλλω +εἰς +ὁ +δεξιός +μέρος +ὁ +πλοῖον +ὁ +δίκτυον +καί +εὑρίσκω +οὖν +βάλλω +καί +οὐκέτι +αὐτός +ἕλκω +ἰσχύω +ἀπό +ὁ +πλῆθος +ὁ +ἰχθύς +οὖν +λέγω +ὁ +μαθητής +ἐκεῖνος +ὅς +ἀγαπάω +ὁ +Ἰησοῦς +ὁ +Πέτρος +ὁ +κύριος +εἰμί +οὖν +Σίμων +Πέτρος +ἀκούω +ὅτι +ὁ +κύριος +εἰμί +ὁ +ἐπενδύτης +διαζώννυμι +γάρ +εἰμί +γυμνός +καί +βάλλω +ἑαυτοῦ +εἰς +ὁ +θάλασσα +δέ +ὁ +ἄλλος +μαθητής +ὁ +πλοιάριον +ἔρχομαι +γάρ +οὐ +εἰμί +μακράν +ἀπό +ὁ +γῆ +ἀλλά +ὡς +ἀπό +πῆχυς +διακόσιοι +σύρω +ὁ +δίκτυον +ὁ +ἰχθύς +οὖν +ὡς +ἀποβαίνω +εἰς +ὁ +γῆ +βλέπω +ἀνθρακιά +κεῖμαι +καί +ὀψάριον +ἐπίκειμαι +καί +ἄρτος +λέγω +αὐτός +ὁ +Ἰησοῦς +φέρω +ἀπό +ὁ +ὀψάριον +ὅς +πιάζω +νῦν +ἀναβαίνω +Σίμων +Πέτρος +καί +ἕλκω +ὁ +δίκτυον +εἰς +ὁ +γῆ +μεστός +ἰχθύς +μέγας +ἑκατόν +πεντήκοντα +τρεῖς +καί +τοσοῦτος +εἰμί +οὐ +σχίζω +ὁ +δίκτυον +λέγω +αὐτός +ὁ +Ἰησοῦς +δεῦτε +ἀριστάω +οὐδείς +ὁ +μαθητής +τολμάω +ἐξετάζω +αὐτός +σύ +τίς +εἰμί +οἶδα +ὅτι +ὁ +κύριος +εἰμί +ἔρχομαι +Ἰησοῦς +καί +λαμβάνω +ὁ +ἄρτος +καί +δίδωμι +αὐτός +καί +ὁ +ὀψάριον +ὁμοίως +οὗτος +ἤδη +τρίτος +φανερόω +Ἰησοῦς +ὁ +μαθητής +ἐγείρω +ἐκ +νεκρός +οὖν +ὅτε +ἀριστάω +λέγω +ὁ +Σίμων +Πέτρος +ὁ +Ἰησοῦς +Σίμων +Ἰωάννης +ἀγαπάω +ἐγώ +πολύς +οὗτος +λέγω +αὐτός +ναί +κύριος +σύ +οἶδα +ὅτι +φιλέω +σύ +λέγω +αὐτός +βόσκω +ὁ +ἀρνίον +ἐγώ +λέγω +αὐτός +πάλιν +δεύτερος +Σίμων +Ἰωάννης +ἀγαπάω +ἐγώ +λέγω +αὐτός +ναί +κύριος +σύ +οἶδα +ὅτι +φιλέω +σύ +λέγω +αὐτός +ποιμαίνω +ὁ +προβάτιον +ἐγώ +λέγω +αὐτός +ὁ +τρίτος +Σίμων +Ἰωάννης +φιλέω +ἐγώ +λυπέω +ὁ +Πέτρος +ὅτι +λέγω +αὐτός +ὁ +τρίτος +φιλέω +ἐγώ +καί +λέγω +αὐτός +κύριος +πᾶς +σύ +οἶδα +σύ +γινώσκω +ὅτι +φιλέω +σύ +λέγω +αὐτός +Ἰησοῦς +βόσκω +ὁ +προβάτιον +ἐγώ +ἀμήν +ἀμήν +λέγω +σύ +ὅτε +εἰμί +νέος +ζωννύω +σεαυτοῦ +καί +περιπατέω +ὅπου +θέλω +δέ +ὅταν +γηράσκω +ἐκτείνω +ὁ +χείρ +σύ +καί +ἄλλος +ζωννύω +σύ +καί +φέρω +ὅπου +οὐ +θέλω +δέ +οὗτος +λέγω +σημαίνω +ποῖος +θάνατος +δοξάζω +ὁ +θεός +καί +οὗτος +λέγω +λέγω +αὐτός +ἀκολουθέω +ἐγώ +ἐπιστρέφω +ὁ +Πέτρος +βλέπω +ὁ +μαθητής +ὅς +ἀγαπάω +ὁ +Ἰησοῦς +ἀκολουθέω +ὅς +καί +ἀναπίπτω +ἐν +ὁ +δεῖπνον +ἐπί +ὁ +στῆθος +αὐτός +καί +λέγω +κύριος +τίς +εἰμί +ὁ +παραδίδωμι +σύ +οὖν +οὗτος +ὁράω +ὁ +Πέτρος +λέγω +ὁ +Ἰησοῦς +κύριος +δέ +οὗτος +τίς +λέγω +αὐτός +ὁ +Ἰησοῦς +ἐάν +αὐτός +μένω +θέλω +ἕως +ἔρχομαι +τίς +πρός +σύ +σύ +ἐγώ +ἀκολουθέω +οὖν +ἐξέρχομαι +οὗτος +ὁ +λόγος +εἰς +ὁ +ἀδελφός +ὅτι +ὁ +μαθητής +ἐκεῖνος +οὐ +ἀποθνῄσκω +δέ +οὐ +λέγω +αὐτός +ὁ +Ἰησοῦς +ὅτι +οὐ +ἀποθνῄσκω +ἀλλά +ἐάν +αὐτός +μένω +θέλω +ἕως +ἔρχομαι +τίς +πρός +σύ +οὗτος +εἰμί +ὁ +μαθητής +ὁ +μαρτυρέω +περί +οὗτος +καί +ὁ +γράφω +οὗτος +καί +οἶδα +ὅτι +ἀληθής +αὐτός +ὁ +μαρτυρία +εἰμί +δέ +εἰμί +καί +ἄλλος +πολύς +ὅς +ποιέω +ὁ +Ἰησοῦς +ἐάν +ὅστις +γράφω +κατά +εἷς +οἴομαι +οὐδέ +αὐτός +ὁ +κόσμος +χωρέω +ὁ +γράφω +βιβλίον +ὦ +Θεόφιλος +μέν +ὁ +πρῶτος +λόγος +ποιέω +περί +πᾶς +ὅς +τέ +ποιέω +καί +διδάσκω +ἄρχω +ὁ +Ἰησοῦς +ἄχρι +ὅς +ἡμέρα +ἐντέλλομαι +ὁ +ἀπόστολος +ὅς +ἐκλέγω +διά +πνεῦμα +ἅγιος +ἀναλαμβάνω +ὅς +καί +παρίστημι +ἑαυτοῦ +ζάω +μετά +ὁ +πάσχω +αὐτός +ἐν +πολύς +τεκμήριον +διά +ἡμέρα +τεσσεράκοντα +ὀπτάνομαι +αὐτός +καί +λέγω +ὁ +περί +ὁ +βασιλεία +ὁ +θεός +καί +συναλίζομαι +παραγγέλλω +αὐτός +ἀπό +Ἱεροσόλυμα +μή +χωρίζω +ἀλλά +περιμένω +ὁ +ἐπαγγελία +ὁ +πατήρ +ὅς +ἀκούω +ἐγώ +ὅτι +μέν +Ἰωάννης +βαπτίζω +ὕδωρ +δέ +σύ +ἐν +πνεῦμα +ἅγιος +βαπτίζω +οὐ +μετά +πολύς +οὗτος +ἡμέρα +μέν +οὖν +ὁ +συνέρχομαι +ἐρωτάω +αὐτός +λέγω +κύριος +εἰ +ἐν +ὁ +χρόνος +οὗτος +ἀποκαθιστάνω +ὁ +βασιλεία +ὁ +Ἰσραήλ +λέγω +πρός +αὐτός +οὐ +σύ +εἰμί +γινώσκω +χρόνος +ἤ +καιρός +ὅς +ὁ +πατήρ +τίθημι +ἐν +ὁ +ἴδιος +ἐξουσία +ἀλλά +λαμβάνω +δύναμις +ἐπέρχομαι +ὁ +ἅγιος +πνεῦμα +ἐπί +σύ +καί +εἰμί +ἐγώ +μάρτυς +τέ +ἐν +Ἱεροσόλυμα +καί +ἐν +πᾶς +ὁ +Ἰουδαία +καί +Σαμάρεια +καί +ἕως +ἔσχατος +ὁ +γῆ +καί +οὗτος +λέγω +βλέπω +αὐτός +ἐπαίρω +καί +νεφέλη +ὑπολαμβάνω +αὐτός +ἀπό +ὁ +ὀφθαλμός +αὐτός +καί +ὡς +ἀτενίζω +εἰμί +εἰς +ὁ +οὐρανός +πορεύομαι +αὐτός +καί +ὁράω +ἀνήρ +δύο +παρίστημι +αὐτός +ἐν +ἐσθής +λευκός +ὅς +καί +λέγω +ἀνήρ +Γαλιλαῖος +τίς +ἵστημι +βλέπω +εἰς +ὁ +οὐρανός +οὗτος +ὁ +Ἰησοῦς +ὁ +ἀναλαμβάνω +ἀπό +σύ +εἰς +ὁ +οὐρανός +οὕτω +ἔρχομαι +ὅς +τρόπος +θεάομαι +αὐτός +πορεύομαι +εἰς +ὁ +οὐρανός +τότε +ὑποστρέφω +εἰς +Ἱεροσόλυμα +ἀπό +ὄρος +ὁ +καλέω +ἐλαιών +ὅς +εἰμί +ἐγγύς +Ἱεροσόλυμα +σάββατον +ὁδός +ἔχω +καί +ὅτε +εἰσέρχομαι +εἰς +ὁ +ὑπερῷον +ἀναβαίνω +οὗ +εἰμί +καταμένω +τέ +ὁ +Πέτρος +καί +Ἰωάννης +καί +Ἰάκωβος +καί +Ἀνδρέας +Φίλιππος +καί +Θωμᾶς +Βαρθολομαῖος +καί +Μαθθαῖος +Ἰάκωβος +Ἁλφαῖος +καί +Σίμων +ὁ +ζηλωτής +καί +Ἰούδας +Ἰάκωβος +οὗτος +πᾶς +εἰμί +προσκαρτερέω +ὁμοθυμαδόν +ὁ +προσευχή +σύν +γυνή +καί +Μαρία +ὁ +μήτηρ +ὁ +Ἰησοῦς +καί +σύν +ὁ +ἀδελφός +αὐτός +καί +ἐν +ὁ +ἡμέρα +οὗτος +ἀνίστημι +ἐν +μέσος +ὁ +ἀδελφός +Πέτρος +λέγω +τέ +εἰμί +ὄχλος +ὄνομα +ἐπί +ὁ +αὐτός +ὡσεί +ἑκατόν +εἴκοσι +ἀνήρ +ἀδελφός +δεῖ +πληρόω +ὁ +γραφή +ὅς +προλέγω +ὁ +πνεῦμα +ὁ +ἅγιος +διά +στόμα +Δαυίδ +περί +Ἰούδας +ὁ +γίνομαι +ὁδηγός +ὁ +συλλαμβάνω +Ἰησοῦς +ὅτι +καταριθμέω +εἰμί +ἐν +ἐγώ +καί +λαγχάνω +ὁ +κλῆρος +ὁ +διακονία +οὗτος +μέν +οὖν +οὗτος +κτάομαι +χωρίον +ἐκ +μισθός +ὁ +ἀδικία +καί +πρηνής +γίνομαι +λακάω +μέσος +καί +ἐκχέω +πᾶς +ὁ +σπλάγχνον +αὐτός +καί +γνωστός +γίνομαι +πᾶς +ὁ +κατοικέω +Ἱεροσόλυμα +ὥστε +καλέω +ὁ +χωρίον +ἐκεῖνος +ὁ +ἴδιος +διάλεκτος +αὐτός +Ἁκελδαμάχ +οὗτος +εἰμί +χωρίον +αἷμα +γάρ +γράφω +ἐν +βίβλος +ψαλμός +γίνομαι +ὁ +ἔπαυλις +αὐτός +ἔρημος +καί +μή +εἰμί +ὁ +κατοικέω +ἐν +αὐτός +καί +ὁ +ἐπισκοπή +αὐτός +λαμβάνω +ἕτερος +οὖν +δεῖ +ὁ +ἀνήρ +συνέρχομαι +ἐγώ +ἐν +πᾶς +χρόνος +ὅς +εἰσέρχομαι +καί +ἐξέρχομαι +ἐπί +ἐγώ +ὁ +κύριος +Ἰησοῦς +ἄρχω +ἀπό +ὁ +βάπτισμα +Ἰωάννης +ἕως +ὁ +ἡμέρα +ὅς +ἀναλαμβάνω +ἀπό +ἐγώ +μάρτυς +ὁ +ἀνάστασις +αὐτός +σύν +ἐγώ +γίνομαι +εἷς +οὗτος +καί +ἵστημι +δύο +Ἰωσήφ +ὁ +καλέω +Βαρσαββᾶς +ὅς +ἐπικαλέω +Ἰοῦστος +καί +Μαθθίας +καί +προσεύχομαι +λέγω +κύριος +καρδιογνώστης +πᾶς +σύ +ἀναδείκνυμι +ὅς +ἐκλέγω +ἐκ +οὗτος +ὁ +δύο +εἷς +λαμβάνω +ὁ +τόπος +ὁ +διακονία +οὗτος +καί +ἀποστολή +ἀπό +ὅς +παραβαίνω +Ἰούδας +πορεύομαι +εἰς +ὁ +τόπος +ὁ +ἴδιος +καί +δίδωμι +κλῆρος +αὐτός +καί +πίπτω +ὁ +κλῆρος +ἐπί +Μαθθίας +καί +συγκαταψηφίζομαι +μετά +ὁ +ἕνδεκα +ἀπόστολος +καί +ἐν +ὁ +συμπληρόω +ὁ +ἡμέρα +ὁ +πεντηκοστή +εἰμί +πᾶς +ὁμοῦ +ἐπί +ὁ +αὐτός +καί +γίνομαι +ἄφνω +ἐκ +ὁ +οὐρανός +ἦχος (I) +ὥσπερ +φέρω +πνοή +βίαιος +καί +πληρόω +ὅλος +ὁ +οἶκος +οὗ +εἰμί +κάθημαι +καί +ὁράω +αὐτός +διαμερίζω +γλῶσσα +ὡσεί +πῦρ +καί +καθίζω +ἐπί +εἷς +ἕκαστος +αὐτός +καί +πίμπλημι +πᾶς +πνεῦμα +ἅγιος +καί +ἄρχω +λαλέω +ἕτερος +γλῶσσα +καθώς +ὁ +πνεῦμα +δίδωμι +ἀποφθέγγομαι +αὐτός +δέ +εἰμί +κατοικέω +εἰς +Ἱεροσόλυμα +Ἰουδαῖος +ἀνήρ +εὐλαβής +ἀπό +πᾶς +ἔθνος +ὁ +ὑπό +ὁ +οὐρανός +δέ +γίνομαι +ὁ +φωνή +οὗτος +συνέρχομαι +ὁ +πλῆθος +καί +συγχέω +ὅτι +ἀκούω +εἷς +ἕκαστος +ὁ +ἴδιος +διάλεκτος +λαλέω +αὐτός +δέ +ἐξίστημι +καί +θαυμάζω +λέγω +ὁράω +οὐχί +πᾶς +οὗτος +ὁ +λαλέω +εἰμί +Γαλιλαῖος +καί +πῶς +ἐγώ +ἀκούω +ἕκαστος +ὁ +ἴδιος +διάλεκτος +ἐγώ +ἐν +ὅς +γεννάω +Πάρθος +καί +Μῆδος +καί +Ἐλαμίτης +καί +ὁ +κατοικέω +ὁ +Μεσοποταμία +τέ +Ἰουδαία +καί +Καππαδοκία +Πόντος +καί +ὁ +Ἀσία +τέ +Φρυγία +καί +Παμφυλία +Αἴγυπτος +καί +ὁ +μέρος +ὁ +Λιβύη +ὁ +κατά +Κυρήνη +καί +ὁ +ἐπιδημέω +Ῥωμαῖος +τέ +Ἰουδαῖος +καί +προσήλυτος +Κρής +καί +Ἄραψ +ἀκούω +λαλέω +αὐτός +ὁ +ἡμέτερος +γλῶσσα +ὁ +μεγαλεῖος +ὁ +θεός +δέ +ἐξίστημι +πᾶς +καί +διαπορέω +ἄλλος +πρός +ἄλλος +λέγω +θέλω +οὗτος +τίς +εἰμί +δέ +ἕτερος +διαχλευάζω +λέγω +ὅτι +γλεῦκος +μεστόω +εἰμί +δέ +ἵστημι +σύν +ὁ +ἕνδεκα +ὁ +Πέτρος +ἐπαίρω +ὁ +φωνή +αὐτός +καί +ἀποφθέγγομαι +αὐτός +ἀνήρ +Ἰουδαῖος +καί +ὁ +κατοικέω +Ἱεροσόλυμα +πᾶς +οὗτος +σύ +γνωστός +εἰμί +καί +ἐνωτίζομαι +ὁ +ῥῆμα +ἐγώ +γάρ +οὐ +ὡς +σύ +ὑπολαμβάνω +οὗτος +μεθύω +γάρ +εἰμί +ὥρα +τρίτος +ὁ +ἡμέρα +ἀλλά +οὗτος +εἰμί +ὁ +εἶπον +διά +ὁ +προφήτης +Ἰωήλ +καί +εἰμί +ἐν +ὁ +ἔσχατος +ἡμέρα +λέγω +ὁ +θεός +ἐκχέω +ἀπό +ὁ +πνεῦμα +ἐγώ +ἐπί +πᾶς +σάρξ +καί +προφητεύω +ὁ +υἱός +σύ +καί +ὁ +θυγάτηρ +σύ +καί +ὁ +νεανίσκος +σύ +ὅρασις +ὁράω +καί +ὁ +πρεσβύτερος +σύ +ἐνύπνιον +ἐνυπνιάζομαι +καίγε +ἐπί +ὁ +δοῦλος (II) +ἐγώ +καί +ἐπί +ὁ +δούλη +ἐγώ +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ἐκχέω +ἀπό +ὁ +πνεῦμα +ἐγώ +καί +προφητεύω +καί +δίδωμι +τέρας +ἐν +ὁ +οὐρανός +ἄνω +καί +σημεῖον +ἐπί +ὁ +γῆ +κάτω +αἷμα +καί +πῦρ +καί +ἀτμίς +καπνός +ὁ +ἥλιος +μεταστρέφω +εἰς +σκότος +καί +ὁ +σελήνη +εἰς +αἷμα +πρίν +ἔρχομαι +ἡμέρα +κύριος +ὁ +μέγας +καί +ἐπιφανής +καί +εἰμί +πᾶς +ἐάν +ὅς +ἐπικαλέω +ὁ +ὄνομα +κύριος +σῴζω +ἀνήρ +Ἰσραηλίτης +ἀκούω +ὁ +λόγος +οὗτος +Ἰησοῦς +ὁ +Ναζωραῖος +ἀνήρ +ἀποδείκνυμι +ἀπό +ὁ +θεός +εἰς +σύ +δύναμις +καί +τέρας +καί +σημεῖον +ὅς +ποιέω +διά +αὐτός +ὁ +θεός +ἐν +μέσος +σύ +καθώς +αὐτός +οἶδα +οὗτος +ὁ +ὁρίζω +βουλή +καί +πρόγνωσις +ὁ +θεός +ἔκδοτος +διά +χείρ +ἄνομος +προσπήγνυμι +ἀναιρέω +ὅς +ὁ +θεός +ἀνίστημι +λύω +ὁ +ὠδίν +ὁ +θάνατος +καθότι +οὐ +εἰμί +δυνατός +κρατέω +αὐτός +ὑπό +αὐτός +γάρ +Δαυίδ +λέγω +εἰς +αὐτός +προοράω +ὁ +κύριος +ἐνώπιον +ἐγώ +διά +πᾶς +ὅτι +ἐκ +δεξιός +ἐγώ +εἰμί +ἵνα +μή +σαλεύω +διά +οὗτος +εὐφραίνω +ἐγώ +ὁ +καρδία +καί +ἀγαλλιάω +ὁ +γλῶσσα +ἐγώ +δέ +ἔτι +καί +ὁ +σάρξ +ἐγώ +κατασκηνόω +ἐπί +ἐλπίς +ὅτι +οὐ +ἐγκαταλείπω +ὁ +ψυχή +ἐγώ +εἰς +ᾅδης +οὐδέ +δίδωμι +ὁ +ὅσιος +σύ +ὁράω +διαφθορά +γνωρίζω +ἐγώ +ὁδός +ζωή +πληρόω +ἐγώ +εὐφροσύνη +μετά +ὁ +πρόσωπον +σύ +ἀνήρ +ἀδελφός +ἔξεστι(ν) +λέγω +μετά +παρρησία +πρός +σύ +περί +ὁ +πατριάρχης +Δαυίδ +ὅτι +καί +τελευτάω +καί +θάπτω +καί +ὁ +μνῆμα +αὐτός +εἰμί +ἐν +ἐγώ +ἄχρι +ὁ +ἡμέρα +οὗτος +οὖν +προφήτης +ὑπάρχω +καί +οἶδα +ὅτι +ὅρκος +ὀμνύω +αὐτός +ὁ +θεός +ἐκ +καρπός +ὁ +ὀσφῦς +αὐτός +καθίζω +ἐπί +ὁ +θρόνος +αὐτός +προοράω +λαλέω +περί +ὁ +ἀνάστασις +ὁ +Χριστός +ὅτι +οὔτε +ἐγκαταλείπω +εἰς +ᾅδης +οὔτε +ὁ +σάρξ +αὐτός +ὁράω +διαφθορά +οὗτος +ὁ +Ἰησοῦς +ἀνίστημι +ὁ +θεός +ὅς +πᾶς +ἐγώ +εἰμί +μάρτυς +οὖν +ὁ +δεξιός +ὁ +θεός +ὑψόω +τέ +ὁ +ἐπαγγελία +ὁ +πνεῦμα +ὁ +ἅγιος +λαμβάνω +παρά +ὁ +πατήρ +ἐκχέω +οὗτος +ὅς +σύ +καί +βλέπω +καί +ἀκούω +γάρ +οὐ +Δαυίδ +ἀναβαίνω +εἰς +ὁ +οὐρανός +δέ +λέγω +αὐτός +λέγω +κύριος +ὁ +κύριος +ἐγώ +κάθημαι +ἐκ +δεξιός +ἐγώ +ἕως +ἄν +τίθημι +ὁ +ἐχθρός +σύ +ὑποπόδιον +ὁ +πούς +σύ +οὖν +ἀσφαλῶς +γινώσκω +πᾶς +οἶκος +Ἰσραήλ +ὅτι +καί +κύριος +καί +Χριστός +ποιέω +ὁ +θεός +αὐτός +οὗτος +ὁ +Ἰησοῦς +ὅς +σύ +σταυρόω +δέ +ἀκούω +κατανύσσομαι +ὁ +καρδία +τέ +λέγω +πρός +ὁ +Πέτρος +καί +ὁ +λοιπός +ἀπόστολος +τίς +ποιέω +ἀνήρ +ἀδελφός +δέ +Πέτρος +πρός +αὐτός +μετανοέω +καί +βαπτίζω +ἕκαστος +σύ +ἐπί +ὁ +ὄνομα +Ἰησοῦς +Χριστός +εἰς +ἄφεσις +ὁ +ἁμαρτία +σύ +καί +λαμβάνω +ὁ +δωρεά +ὁ +ἅγιος +πνεῦμα +γάρ +σύ +εἰμί +ὁ +ἐπαγγελία +καί +ὁ +τέκνον +σύ +καί +πᾶς +ὁ +εἰς +μακρός +ἄν +ὅσος +προσκαλέω +κύριος +ὁ +θεός +ἐγώ +τέ +ἕτερος +λόγος +πολύς +διαμαρτύρομαι +καί +παρακαλέω +αὐτός +λέγω +σῴζω +ἀπό +ὁ +γενεά +ὁ +σκολιός +οὗτος +μέν +οὖν +ὁ +ἀποδέχομαι +ὁ +λόγος +αὐτός +βαπτίζω +καί +προστίθημι +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ψυχή +ὡσεί +τρισχίλιοι +δέ +εἰμί +προσκαρτερέω +ὁ +διδαχή +ὁ +ἀπόστολος +καί +ὁ +κοινωνία +ὁ +κλάσις +ὁ +ἄρτος +καί +ὁ +προσευχή +δέ +γίνομαι +πᾶς +ψυχή +φόβος +δέ +πολύς +τέρας +καί +σημεῖον +διά +ὁ +ἀπόστολος +γίνομαι +δέ +πᾶς +ὁ +πιστεύω +ἐπί +ὁ +αὐτός +ἔχω +ἅπας +κοινός +καί +ὁ +κτῆμα +καί +ὁ +ὕπαρξις +πιπράσκω +καί +διαμερίζω +αὐτός +πᾶς +καθότι +ἄν +τὶς +χρεία +ἔχω +τέ +κατά +ἡμέρα +προσκαρτερέω +ὁμοθυμαδόν +ἐν +ὁ +ἱερός +τέ +κλάω +κατά +οἶκος +ἄρτος +μεταλαμβάνω +τροφή +ἐν +ἀγαλλίασις +καί +ἀφελότης +καρδία +αἰνέω +ὁ +θεός +καί +ἔχω +χάρις +πρός +ὅλος +ὁ +λαός +δέ +ὁ +κύριος +προστίθημι +ὁ +σῴζω +κατά +ἡμέρα +ἐπί +ὁ +αὐτός +δέ +Πέτρος +καί +Ἰωάννης +ἀναβαίνω +εἰς +ὁ +ἱερός +ἐπί +ὁ +ὥρα +ὁ +προσευχή +ὁ +ἔνατος +καί +τὶς +ἀνήρ +χωλός +ἐκ +κοιλία +μήτηρ +αὐτός +ὑπάρχω +βαστάζω +ὅς +τίθημι +κατά +ἡμέρα +πρός +ὁ +θύρα +ὁ +ἱερός +ὁ +λέγω +ὡραῖος +ὁ +αἰτέω +ἐλεημοσύνη +παρά +ὁ +εἰσπορεύομαι +εἰς +ὁ +ἱερός +ὅς +ὁράω +Πέτρος +καί +Ἰωάννης +μέλλω +εἴσειμι +εἰς +ὁ +ἱερός +ἐρωτάω +ἐλεημοσύνη +λαμβάνω +δέ +Πέτρος +ἀτενίζω +εἰς +αὐτός +σύν +ὁ +Ἰωάννης +λέγω +βλέπω +εἰς +ἐγώ +δέ +ὁ +ἐπέχω +αὐτός +προσδοκάω +τὶς +παρά +αὐτός +λαμβάνω +δέ +λέγω +Πέτρος +ἀργύριον +καί +χρυσίον +οὐ +ὑπάρχω +ἐγώ +δέ +ὅς +ἔχω +οὗτος +σύ +δίδωμι +ἐν +ὁ +ὄνομα +Ἰησοῦς +Χριστός +ὁ +Ναζωραῖος +περιπατέω +καί +πιάζω +αὐτός +ὁ +δεξιός +χείρ +ἐγείρω +αὐτός +δέ +παραχρῆμα +στερεόω +ὁ +βάσις +αὐτός +καί +ὁ +σφυδρόν +καί +ἐξάλλομαι +ἵστημι +καί +περιπατέω +καί +εἰσέρχομαι +σύν +αὐτός +εἰς +ὁ +ἱερός +περιπατέω +καί +ἅλλομαι +καί +αἰνέω +ὁ +θεός +καί +ὁράω +πᾶς +ὁ +λαός +αὐτός +περιπατέω +καί +αἰνέω +ὁ +θεός +δέ +ἐπιγινώσκω +αὐτός +ὅτι +οὗτος +εἰμί +ὁ +πρός +ὁ +ἐλεημοσύνη +κάθημαι +ἐπί +ὁ +ὡραῖος +πύλη +ὁ +ἱερός +καί +πίμπλημι +θάμβος +καί +ἔκστασις +ἐπί +ὁ +συμβαίνω +αὐτός +δέ +κρατέω +αὐτός +ὁ +Πέτρος +καί +ὁ +Ἰωάννης +συντρέχω +πᾶς +ὁ +λαός +πρός +αὐτός +ἐπί +ὁ +στοά +ὁ +καλέω +Σολομών +ἔκθαμβος +δέ +ὁράω +ὁ +Πέτρος +ἀποκρίνομαι +πρός +ὁ +λαός +ἀνήρ +Ἰσραηλίτης +τίς +θαυμάζω +ἐπί +οὗτος +ἤ +ἐγώ +τίς +ἀτενίζω +ὡς +ἴδιος +δύναμις +ἤ +εὐσέβεια +ποιέω +ὁ +περιπατέω +αὐτός +ὁ +θεός +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +ὁ +θεός +ὁ +πατήρ +ἐγώ +δοξάζω +ὁ +παῖς +αὐτός +Ἰησοῦς +μέν +ὅς +σύ +παραδίδωμι +καί +ἀρνέομαι +κατά +πρόσωπον +Πιλᾶτος +κρίνω +ἐκεῖνος +ἀπολύω +δέ +σύ +ὁ +ἅγιος +καί +δίκαιος +ἀρνέομαι +καί +αἰτέω +ἀνήρ +φονεύς +χαρίζομαι +σύ +δέ +ὁ +ἀρχηγός +ὁ +ζωή +ἀποκτείνω +ὅς +ὁ +θεός +ἐγείρω +ἐκ +νεκρός +ὅς +ἐγώ +μάρτυς +εἰμί +καί +ἐπί +ὁ +πίστις +ὁ +ὄνομα +αὐτός +οὗτος +ὅς +θεωρέω +καί +οἶδα +στερεόω +ὁ +ὄνομα +αὐτός +καί +ὁ +πίστις +ὁ +διά +αὐτός +δίδωμι +αὐτός +ὁ +ὁλοκληρία +οὗτος +ἀπέναντι +πᾶς +σύ +καί +ἀδελφός +νῦν +οἶδα +ὅτι +κατά +ἄγνοια +πράσσω +ὥσπερ +καί +ὁ +ἄρχων +σύ +δέ +ὁ +θεός +ὅς +προκαταγγέλλω +διά +στόμα +πᾶς +ὁ +προφήτης +πάσχω +ὁ +Χριστός +αὐτός +πληρόω +οὕτω +οὖν +μετανοέω +καί +ἐπιστρέφω +πρός +ὁ +ἐξαλείφω +σύ +ὁ +ἁμαρτία +ὅπως +ἄν +ἔρχομαι +καιρός +ἀνάψυξις +ἀπό +πρόσωπον +ὁ +κύριος +καί +ἀποστέλλω +ὁ +προχειρίζομαι +σύ +Χριστός +Ἰησοῦς +δεῖ +μέν +ὅς +οὐρανός +δέχομαι +ἄχρι +χρόνος +ἀποκατάστασις +πᾶς +ὅς +λαλέω +ὁ +θεός +διά +στόμα +ὁ +ἅγιος +ἀπό +αἰών +αὐτός +προφήτης +μέν +Μωϋσῆς +λέγω +ὅτι +προφήτης +σύ +ἀνίστημι +κύριος +ὁ +θεός +ἐκ +ὁ +ἀδελφός +σύ +ὡς +ἐγώ +αὐτός +ἀκούω +κατά +πᾶς +ἄν +ὅσος +λαλέω +πρός +σύ +δέ +εἰμί +πᾶς +ψυχή +ἐάν +ὅστις +μή +ἀκούω +ὁ +προφήτης +ἐκεῖνος +ἐξολεθρεύω +ἐκ +ὁ +λαός +δέ +καί +πᾶς +ὁ +προφήτης +ἀπό +Σαμουήλ +καί +ὁ +καθεξῆς +ὅσος +λαλέω +καί +καταγγέλλω +ὁ +ἡμέρα +οὗτος +σύ +εἰμί +ὁ +υἱός +ὁ +προφήτης +καί +ὁ +διαθήκη +ὅς +ὁ +θεός +διατίθημι +πρός +ὁ +πατήρ +σύ +λέγω +πρός +Ἀβραάμ +καί +ἐν +ὁ +σπέρμα +σύ +ἐνευλογέω +πᾶς +ὁ +πατριά +ὁ +γῆ +σύ +πρῶτος +ὁ +θεός +ἀνίστημι +ὁ +παῖς +αὐτός +ἀποστέλλω +αὐτός +εὐλογέω +σύ +ἐν +ὁ +ἀποστρέφω +ἕκαστος +ἀπό +ὁ +πονηρία +σύ +δέ +λαλέω +αὐτός +πρός +ὁ +λαός +ἐφίστημι +αὐτός +ὁ +ἱερεύς +καί +ὁ +στρατηγός +ὁ +ἱερός +καί +ὁ +Σαδδουκαῖος +διαπονέομαι +διά +ὁ +διδάσκω +αὐτός +ὁ +λαός +καί +καταγγέλλω +ἐν +ὁ +Ἰησοῦς +ὁ +ἀνάστασις +ὁ +ἐκ +νεκρός +καί +ἐπιβάλλω +αὐτός +ὁ +χείρ +καί +τίθημι +εἰς +τήρησις +εἰς +ὁ +αὔριον +γάρ +εἰμί +ἑσπέρα +ἤδη +δέ +πολύς +ὁ +ἀκούω +ὁ +λόγος +πιστεύω +καί +γίνομαι +ἀριθμός +ὁ +ἀνήρ +ὡς +χιλιάς +πέντε +δέ +γίνομαι +ἐπί +ὁ +αὔριον +συνάγω +αὐτός +ὁ +ἄρχων +καί +ὁ +πρεσβύτερος +καί +ὁ +γραμματεύς +ἐν +Ἱεροσόλυμα +καί +Ἅννας +ὁ +ἀρχιερεύς +καί +Καϊάφας +καί +Ἰωάννης +καί +Ἀλέξανδρος +καί +ὅσος +εἰμί +ἐκ +γένος +ἀρχιερατικός +καί +ἵστημι +αὐτός +ἐν +ὁ +μέσος +πυνθάνομαι +ἐν +ποῖος +δύναμις +ἤ +ἐν +ποῖος +ὄνομα +ποιέω +οὗτος +σύ +τότε +Πέτρος +πίμπλημι +πνεῦμα +ἅγιος +λέγω +πρός +αὐτός +ἄρχων +ὁ +λαός +καί +πρεσβύτερος +εἰ +ἐγώ +σήμερον +ἀνακρίνω +ἐπί +εὐεργεσία +ἄνθρωπος +ἀσθενής +ἐν +τίς +οὗτος +σῴζω +γνωστός +εἰμί +πᾶς +σύ +καί +πᾶς +ὁ +λαός +Ἰσραήλ +ὅτι +ἐν +ὁ +ὄνομα +Ἰησοῦς +Χριστός +ὁ +Ναζωραῖος +ὅς +σύ +σταυρόω +ὅς +ὁ +θεός +ἐγείρω +ἐκ +νεκρός +ἐν +οὗτος +οὗτος +παρίστημι +ἐνώπιον +σύ +ὑγιής +οὗτος +εἰμί +ὁ +λίθος +ὁ +ἐξουθενέω +ὑπό +σύ +ὁ +οἰκοδόμος +ὁ +γίνομαι +εἰς +κεφαλή +γωνία +καί +οὐ +εἰμί +ἐν +ἄλλος +οὐδείς +ὁ +σωτηρία +γάρ +οὐδέ +εἰμί +ὑπό +ὁ +οὐρανός +ὄνομα +ἕτερος +ὁ +δίδωμι +ἐν +ἄνθρωπος +ἐν +ὅς +δεῖ +σῴζω +ἐγώ +δέ +θεωρέω +ὁ +ὁ +Πέτρος +καί +Ἰωάννης +παρρησία +καί +καταλαμβάνω +ὅτι +ἄνθρωπος +ἀγράμματος +εἰμί +καί +ἰδιώτης +θαυμάζω +τέ +ἐπιγινώσκω +αὐτός +ὅτι +σύν +ὁ +Ἰησοῦς +εἰμί +τέ +βλέπω +ὁ +ἄνθρωπος +ὁ +θεραπεύω +σύν +αὐτός +ἵστημι +οὐδείς +ἀντιλέγω +ἔχω +δέ +κελεύω +αὐτός +ἔξω +ὁ +συνέδριον +ἀπέρχομαι +συμβάλλω +πρός +ἀλλήλων +λέγω +τίς +ποιέω +ὁ +ἄνθρωπος +οὗτος +γάρ +μέν +ὅτι +γνωστός +σημεῖον +γίνομαι +διά +αὐτός +πᾶς +ὁ +κατοικέω +Ἱεροσόλυμα +φανερός +καί +οὐ +δύναμαι +ἀρνέομαι +ἀλλά +ἵνα +μή +ἐπί +πολύς +διανέμω +εἰς +ὁ +λαός +ἀπειλέω +αὐτός +μηκέτι +λαλέω +ἐπί +ὁ +ὄνομα +οὗτος +μηδείς +ἄνθρωπος +καί +καλέω +αὐτός +παραγγέλλω +καθόλου +μή +φθέγγομαι +μηδέ +διδάσκω +ἐπί +ὁ +ὄνομα +ὁ +Ἰησοῦς +δέ +ὁ +Πέτρος +καί +Ἰωάννης +ἀποκρίνομαι +λέγω +πρός +αὐτός +εἰ +δίκαιος +εἰμί +ἐνώπιον +ὁ +θεός +σύ +ἀκούω +μᾶλλον +ἤ +ὁ +θεός +κρίνω +γάρ +οὐ +δύναμαι +ἐγώ +ὅς +ὁράω +καί +ἀκούω +μή +λαλέω +δέ +ὁ +προσαπειλέω +ἀπολύω +αὐτός +μηδείς +εὑρίσκω +ὁ +πῶς +κολάζω +αὐτός +διά +ὁ +λαός +ὅτι +πᾶς +δοξάζω +ὁ +θεός +ἐπί +ὁ +γίνομαι +γάρ +ἔτος +πολύς +τεσσεράκοντα +εἰμί +ὁ +ἄνθρωπος +ἐπί +ὅς +γίνομαι +ὁ +σημεῖον +οὗτος +ὁ +ἴασις +δέ +ἀπολύω +ἔρχομαι +πρός +ὁ +ἴδιος +καί +ἀπαγγέλλω +ὅσος +πρός +αὐτός +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +λέγω +δέ +ὁ +ἀκούω +ὁμοθυμαδόν +αἴρω +φωνή +πρός +ὁ +θεός +καί +λέγω +δεσπότης +σύ +ὁ +ποιέω +ὁ +οὐρανός +καί +ὁ +γῆ +καί +ὁ +θάλασσα +καί +πᾶς +ὁ +ἐν +αὐτός +ὁ +ὁ +πατήρ +ἐγώ +διά +πνεῦμα +ἅγιος +στόμα +Δαυίδ +παῖς +σύ +λέγω +ἵνα +τίς +φρυάσσω +ἔθνος +καί +λαός +μελετάω +κενός +παρίστημι +ὁ +βασιλεύς +ὁ +γῆ +καί +ὁ +ἄρχων +συνάγω +ἐπί +ὁ +αὐτός +κατά +ὁ +κύριος +καί +κατά +ὁ +Χριστός +αὐτός +γάρ +συνάγω +ἐπί +ἀλήθεια +ἐν +ὁ +πόλις +οὗτος +ἐπί +ὁ +ἅγιος +παῖς +σύ +Ἰησοῦς +ὅς +χρίω +τέ +Ἡρῴδης +καί +Πόντιος +Πιλᾶτος +σύν +ἔθνος +καί +λαός +Ἰσραήλ +ποιέω +ὅσος +γίνομαι +ὁ +χείρ +σύ +καί +ὁ +βουλή +προορίζω +καί +κύριος +ὁ +νῦν +ἐπεῖδον +ἐπί +ὁ +ἀπειλή +αὐτός +καί +δίδωμι +ὁ +δοῦλος (II) +σύ +μετά +παρρησία +πᾶς +λαλέω +ὁ +λόγος +σύ +ἐν +ὁ +ὁ +χείρ +ἐκτείνω +σύ +εἰς +ἴασις +καί +σημεῖον +καί +τέρας +γίνομαι +διά +ὁ +ὄνομα +ὁ +ἅγιος +παῖς +σύ +Ἰησοῦς +καί +δέομαι +αὐτός +σαλεύω +ὁ +τόπος +ἐν +ὅς +εἰμί +συνάγω +καί +πίμπλημι +ἅπας +ὁ +ἅγιος +πνεῦμα +καί +λαλέω +ὁ +λόγος +ὁ +θεός +μετά +παρρησία +δέ +ὁ +πλῆθος +ὁ +πιστεύω +καρδία +καί +ψυχή +εἰμί +εἷς +καί +οὐδέ +εἷς +τὶς +ὁ +ὑπάρχω +αὐτός +ἴδιος +εἰμί +λέγω +ἀλλά +εἰμί +αὐτός +πᾶς +κοινός +καί +δύναμις +μέγας +ἀποδίδωμι +ὁ +μαρτύριον +ὁ +κύριος +Ἰησοῦς +ὁ +ἀνάστασις +ὁ +ἀπόστολος +τέ +χάρις +μέγας +εἰμί +ἐπί +πᾶς +αὐτός +γάρ +οὐδέ +ἐνδεής +τὶς +εἰμί +ἐν +αὐτός +γάρ +ὅσος +κτήτωρ +χωρίον +ἤ +οἰκία +ὑπάρχω +πωλέω +φέρω +ὁ +τιμή +ὁ +πιπράσκω +καί +τίθημι +παρά +ὁ +πούς +ὁ +ἀπόστολος +δέ +διαδίδωμι +ἕκαστος +καθότι +ἄν +τὶς +χρεία +ἔχω +δέ +Ἰωσήφ +ὁ +ἐπικαλέω +Βαρναβᾶς +ἀπό +ὁ +ἀπόστολος +ὅς +εἰμί +μεθερμηνεύω +υἱός +παράκλησις +Λευίτης +Κύπριος +ὁ +γένος +ὑπάρχω +αὐτός +ἀγρός +πωλέω +φέρω +ὁ +χρῆμα +καί +τίθημι +πρός +ὁ +πούς +ὁ +ἀπόστολος +δέ +ἀνήρ +τὶς +Ἁνανίας +ὄνομα +σύν +Σάπφιρα +ὁ +γυνή +αὐτός +πωλέω +κτῆμα +καί +νοσφίζω +ἀπό +ὁ +τιμή +συνοράω +καί +ὁ +γυνή +καί +φέρω +μέρος +τὶς +παρά +ὁ +πούς +ὁ +ἀπόστολος +τίθημι +δέ +λέγω +ὁ +Πέτρος +Ἁνανίας +διά +τίς +πληρόω +ὁ +Σατανᾶς +ὁ +καρδία +σύ +ψεύδομαι +σύ +ὁ +πνεῦμα +ὁ +ἅγιος +καί +νοσφίζω +ἀπό +ὁ +τιμή +ὁ +χωρίον +οὐχί +μένω +σύ +μένω +καί +πιπράσκω +ἐν +ὁ +σός +ἐξουσία +ὑπάρχω +τίς +ὅτι +τίθημι +ἐν +ὁ +καρδία +σύ +ὁ +πρᾶγμα +οὗτος +οὐ +ψεύδομαι +ἄνθρωπος +ἀλλά +ὁ +θεός +δέ +ὁ +Ἁνανίας +ἀκούω +ὁ +λόγος +οὗτος +πίπτω +ἐκψύχω +καί +γίνομαι +φόβος +μέγας +ἐπί +πᾶς +ὁ +ἀκούω +δέ +ἀνίστημι +ὁ +νέος +συστέλλω +αὐτός +καί +ἐκφέρω +θάπτω +δέ +γίνομαι +ὡς +ὥρα +τρεῖς +διάστημα +καί +ὁ +γυνή +αὐτός +μή +οἶδα +ὁ +γίνομαι +εἰσέρχομαι +δέ +ἀποκρίνομαι +πρός +αὐτός +Πέτρος +λέγω +ἐγώ +εἰ +τοσοῦτος +ὁ +χωρίον +ἀποδίδωμι +δέ +ὁ +λέγω +ναί +τοσοῦτος +δέ +ὁ +Πέτρος +πρός +αὐτός +τίς +ὅτι +συμφωνέω +σύ +πειράζω +ὁ +πνεῦμα +κύριος +ὁράω +ὁ +πούς +ὁ +θάπτω +ὁ +ἀνήρ +σύ +ἐπί +ὁ +θύρα +καί +ἐκφέρω +σύ +δέ +πίπτω +παραχρῆμα +πρός +ὁ +πούς +αὐτός +καί +ἐκψύχω +δέ +εἰσέρχομαι +ὁ +νεανίσκος +εὑρίσκω +αὐτός +νεκρός +καί +ἐκφέρω +θάπτω +πρός +ὁ +ἀνήρ +αὐτός +καί +γίνομαι +φόβος +μέγας +ἐπί +ὅλος +ὁ +ἐκκλησία +καί +ἐπί +πᾶς +ὁ +ἀκούω +οὗτος +δέ +διά +ὁ +χείρ +ὁ +ἀπόστολος +γίνομαι +σημεῖον +καί +τέρας +πολύς +ἐν +ὁ +λαός +καί +εἰμί +ὁμοθυμαδόν +πᾶς +ἐν +ὁ +στοά +Σολομών +δέ +ὁ +λοιπός +οὐδείς +τολμάω +κολλάω +αὐτός +ἀλλά +μεγαλύνω +αὐτός +ὁ +λαός +δέ +μᾶλλον +προστίθημι +πιστεύω +ὁ +κύριος +πλῆθος +τέ +ἀνήρ +καί +γυνή +ὥστε +καί +εἰς +ὁ +πλατύς +ἐκφέρω +ὁ +ἀσθενής +καί +τίθημι +ἐπί +κλινάριον +καί +κράβαττος +ἵνα +ἔρχομαι +Πέτρος +κἄν +ὁ +σκιά +ἐπισκιάζω +τὶς +αὐτός +δέ +συνέρχομαι +καί +ὁ +πλῆθος +ὁ +πέριξ +Ἱεροσόλυμα +πόλις +φέρω +ἀσθενής +καί +ὀχλέω +ὑπό +πνεῦμα +ἀκάθαρτος +ὅστις +ἅπας +θεραπεύω +δέ +ἀνίστημι +ὁ +ἀρχιερεύς +καί +πᾶς +ὁ +σύν +αὐτός +ὁ +εἰμί +αἵρεσις +ὁ +Σαδδουκαῖος +πίμπλημι +ζῆλος +καί +ἐπιβάλλω +ὁ +χείρ +ἐπί +ὁ +ἀπόστολος +καί +τίθημι +αὐτός +ἐν +τήρησις +δημόσιος +δέ +ἄγγελος +κύριος +διά +νύξ +ἀνοίγω +ὁ +θύρα +ὁ +φυλακή +τέ +ἐξάγω +αὐτός +λέγω +πορεύομαι +καί +ἵστημι +λαλέω +ἐν +ὁ +ἱερός +ὁ +λαός +πᾶς +ὁ +ῥῆμα +ὁ +ζωή +οὗτος +δέ +ἀκούω +εἰσέρχομαι +ὑπό +ὁ +ὄρθρος +εἰς +ὁ +ἱερός +καί +διδάσκω +δέ +παραγίνομαι +ὁ +ἀρχιερεύς +καί +ὁ +σύν +αὐτός +συγκαλέω +ὁ +συνέδριον +καί +πᾶς +ὁ +γερουσία +ὁ +υἱός +Ἰσραήλ +καί +ἀποστέλλω +εἰς +ὁ +δεσμωτήριον +ἄγω +αὐτός +δέ +ὁ +παραγίνομαι +ὑπηρέτης +οὐ +εὑρίσκω +αὐτός +ἐν +ὁ +φυλακή +δέ +ἀναστρέφω +ἀπαγγέλλω +λέγω +ὅτι +εὑρίσκω +ὁ +δεσμωτήριον +κλείω +ἐν +πᾶς +ἀσφάλεια +καί +ὁ +φύλαξ +ἵστημι +ἐπί +ὁ +θύρα +δέ +ἀνοίγω +ἔσω +οὐδείς +εὑρίσκω +δέ +ὡς +ἀκούω +ὁ +λόγος +οὗτος +τέ +ὁ +στρατηγός +ὁ +ἱερός +καί +ὁ +ἀρχιερεύς +διαπορέω +περί +αὐτός +ἄν +τίς +γίνομαι +οὗτος +δέ +παραγίνομαι +τὶς +ἀπαγγέλλω +αὐτός +ὅτι +ὁράω +ὁ +ἀνήρ +ὅς +τίθημι +ἐν +ὁ +φυλακή +εἰμί +ἵστημι +ἐν +ὁ +ἱερός +καί +διδάσκω +ὁ +λαός +τότε +ἀπέρχομαι +ὁ +στρατηγός +σύν +ὁ +ὑπηρέτης +ἄγω +αὐτός +οὐ +μετά +βία +γάρ +φοβέω +ὁ +λαός +μή +λιθάζω +δέ +ἄγω +αὐτός +ἵστημι +ἐν +ὁ +συνέδριον +καί +ἐπερωτάω +αὐτός +ὁ +ἀρχιερεύς +λέγω +παραγγελία +παραγγέλλω +σύ +μή +διδάσκω +ἐπί +ὁ +ὄνομα +οὗτος +καί +ὁράω +πληρόω +ὁ +Ἱεροσόλυμα +ὁ +διδαχή +σύ +καί +βούλομαι +ἐπάγω +ἐπί +ἐγώ +ὁ +αἷμα +ὁ +ἄνθρωπος +οὗτος +δέ +ἀποκρίνομαι +Πέτρος +καί +ὁ +ἀπόστολος +λέγω +δεῖ +πειθαρχέω +θεός +μᾶλλον +ἤ +ἄνθρωπος +ὁ +θεός +ὁ +πατήρ +ἐγώ +ἐγείρω +Ἰησοῦς +ὅς +σύ +διαχειρίζω +κρεμάννυμι +ἐπί +ξύλον +οὗτος +ὁ +θεός +ἀρχηγός +καί +σωτήρ +ὑψόω +ὁ +δεξιός +αὐτός +ὁ +δίδωμι +μετάνοια +ὁ +Ἰσραήλ +καί +ἄφεσις +ἁμαρτία +καί +ἐγώ +εἰμί +μάρτυς +ὁ +ῥῆμα +οὗτος +καί +ὁ +πνεῦμα +ὁ +ἅγιος +ὅς +δίδωμι +ὁ +θεός +ὁ +πειθαρχέω +αὐτός +δέ +ὁ +ἀκούω +διαπρίω +καί +βούλομαι +ἀναιρέω +αὐτός +δέ +ἀνίστημι +τὶς +ἐν +ὁ +συνέδριον +Φαρισαῖος +ὄνομα +Γαμαλιήλ +νομοδιδάσκαλος +τίμιος +πᾶς +ὁ +λαός +κελεύω +ἔξω +βραχύς +ὁ +ἄνθρωπος +ποιέω +τέ +λέγω +πρός +αὐτός +ἀνήρ +Ἰσραηλίτης +προσέχω +ἑαυτοῦ +ἐπί +ὁ +ἄνθρωπος +οὗτος +τίς +πράσσω +μέλλω +γάρ +πρό +οὗτος +ὁ +ἡμέρα +ἀνίστημι +Θευδᾶς +λέγω +εἰμί +τὶς +ἑαυτοῦ +ὅς +προσκλίνω +ἀνήρ +ἀριθμός +ὡς +τετρακόσιοι +ὅς +ἀναιρέω +καί +πᾶς +ὅσος +πείθω +αὐτός +διαλύω +καί +γίνομαι +εἰς +οὐδείς +μετά +οὗτος +ἀνίστημι +Ἰούδας +ὁ +Γαλιλαῖος +ἐν +ὁ +ἡμέρα +ὁ +ἀπογραφή +καί +ἀφίστημι +λαός +ὀπίσω +αὐτός +κἀκεῖνος +ἀπόλλυμι +καί +πᾶς +ὅσος +πείθω +αὐτός +διασκορπίζω +καί +ὁ +νῦν +λέγω +σύ +ἀφίστημι +ἀπό +ὁ +ἄνθρωπος +οὗτος +καί +ἀφίημι +αὐτός +ὅτι +ἐάν +εἰμί +ἐκ +ἄνθρωπος +ὁ +βουλή +οὗτος +ἤ +ὁ +ἔργον +οὗτος +καταλύω +δέ +εἰ +ἐκ +θεός +εἰμί +οὐ +δύναμαι +καταλύω +αὐτός +μή +ποτέ +καί +θεομάχος +εὑρίσκω +δέ +πείθω +αὐτός +καί +προσκαλέω +ὁ +ἀπόστολος +δέρω +παραγγέλλω +μή +λαλέω +ἐπί +ὁ +ὄνομα +ὁ +Ἰησοῦς +καί +ἀπολύω +μέν +οὖν +ὁ +πορεύομαι +χαίρω +ἀπό +πρόσωπον +ὁ +συνέδριον +ὅτι +καταξιόω +ὑπέρ +ὁ +ὄνομα +ἀτιμάζω +τέ +πᾶς +ἡμέρα +ἐν +ὁ +ἱερός +καί +κατά +οἶκος +οὐ +παύω +διδάσκω +καί +εὐαγγελίζω +ὁ +Χριστός +Ἰησοῦς +δέ +ἐν +ὁ +ἡμέρα +οὗτος +πληθύνω +ὁ +μαθητής +γίνομαι +γογγυσμός +ὁ +Ἑλληνιστής +πρός +ὁ +Ἑβραῖος +ὅτι +παραθεωρέω +ἐν +ὁ +διακονία +ὁ +καθημερινός +ὁ +χῆρος +αὐτός +δέ +ὁ +δώδεκα +προσκαλέω +ὁ +πλῆθος +ὁ +μαθητής +λέγω +οὐ +ἀρεστός +εἰμί +ἐγώ +καταλείπω +ὁ +λόγος +ὁ +θεός +διακονέω +τράπεζα +δέ +ἀδελφός +ἐπισκέπτομαι +ἀνήρ +ἐκ +σύ +μαρτυρέω +ἑπτά +πλήρης +πνεῦμα +καί +σοφία +ὅς +καθίστημι +ἐπί +ὁ +χρεία +οὗτος +δέ +ἐγώ +ὁ +προσευχή +καί +ὁ +διακονία +ὁ +λόγος +προσκαρτερέω +καί +ἀρέσκω +ὁ +λόγος +ἐνώπιον +πᾶς +ὁ +πλῆθος +καί +ἐκλέγω +Στέφανος +ἀνήρ +πλήρης +πίστις +καί +πνεῦμα +ἅγιος +καί +Φίλιππος +καί +Πρόχορος +καί +Νικάνωρ +καί +Τίμων +καί +Παρμενᾶς +καί +Νικόλαος +προσήλυτος +Ἀντιοχεύς +ὅς +ἵστημι +ἐνώπιον +ὁ +ἀπόστολος +καί +προσεύχομαι +ἐπιτίθημι +αὐτός +ὁ +χείρ +καί +ὁ +λόγος +ὁ +θεός +αὐξάνω +καί +πληθύνω +ὁ +ἀριθμός +ὁ +μαθητής +ἐν +Ἱεροσόλυμα +σφόδρα +τέ +πολύς +ὄχλος +ὁ +ἱερεύς +ὑπακούω +ὁ +πίστις +δέ +Στέφανος +πλήρης +χάρις +καί +δύναμις +ποιέω +τέρας +καί +σημεῖον +μέγας +ἐν +ὁ +λαός +δέ +ἀνίστημι +τὶς +ὁ +ἐκ +ὁ +συναγωγή +ὁ +λέγω +Λιβερτῖνος +καί +Κυρηναῖος +καί +Ἀλεξανδρεύς +καί +ὁ +ἀπό +Κιλικία +καί +Ἀσία +συζητέω +ὁ +Στέφανος +καί +οὐ +ἰσχύω +ἀνθίστημι +ὁ +σοφία +καί +ὁ +πνεῦμα +ὅς +λαλέω +τότε +ὑποβάλλω +ἀνήρ +λέγω +ὅτι +ἀκούω +αὐτός +λαλέω +ῥῆμα +βλάσφημος +εἰς +Μωϋσῆς +καί +ὁ +θεός +τέ +συγκινέω +ὁ +λαός +καί +ὁ +πρεσβύτερος +καί +ὁ +γραμματεύς +καί +ἐφίστημι +συναρπάζω +αὐτός +καί +ἄγω +εἰς +ὁ +συνέδριον +τέ +ἵστημι +μάρτυς +ψευδής +λέγω +ὁ +ἄνθρωπος +οὗτος +οὐ +παύω +λαλέω +ῥῆμα +κατά +ὁ +τόπος +ὁ +ἅγιος +καί +ὁ +νόμος +γάρ +ἀκούω +αὐτός +λέγω +ὅτι +Ἰησοῦς +ὁ +Ναζωραῖος +οὗτος +καταλύω +ὁ +τόπος +οὗτος +καί +ἀλλάσσω +ὁ +ἔθος +ὅς +παραδίδωμι +ἐγώ +Μωϋσῆς +καί +ἀτενίζω +εἰς +αὐτός +πᾶς +ὁ +καθέζομαι +ἐν +ὁ +συνέδριον +ὁράω +ὁ +πρόσωπον +αὐτός +ὡσεί +πρόσωπον +ἄγγελος +δέ +λέγω +ὁ +ἀρχιερεύς +εἰ +οὗτος +οὕτω +ἔχω +δέ +ὁ +φημί +ἀνήρ +ἀδελφός +καί +πατήρ +ἀκούω +ὁ +θεός +ὁ +δόξα +ὁράω +ὁ +πατήρ +ἐγώ +Ἀβραάμ +εἰμί +ἐν +ὁ +Μεσοποταμία +πρίν +ἤ +κατοικέω +αὐτός +ἐν +Χαρράν +καί +λέγω +πρός +αὐτός +ἐξέρχομαι +ἐκ +ὁ +γῆ +σύ +καί +ὁ +συγγένεια +σύ +καί +δεῦρο +εἰς +ὁ +γῆ +ἄν +ὅς +σύ +δείκνυμι +τότε +ἐξέρχομαι +ἐκ +γῆ +Χαλδαῖος +κατοικέω +ἐν +Χαρράν +κἀκεῖθεν +μετά +ὁ +ἀποθνῄσκω +ὁ +πατήρ +αὐτός +μετοικίζω +αὐτός +εἰς +ὁ +γῆ +οὗτος +εἰς +ὅς +σύ +νῦν +κατοικέω +καί +οὐ +δίδωμι +αὐτός +κληρονομία +ἐν +αὐτός +οὐδέ +βῆμα +πούς +καί +ἐπαγγέλλομαι +δίδωμι +αὐτός +εἰς +κατάσχεσις +αὐτός +καί +ὁ +σπέρμα +αὐτός +μετά +αὐτός +οὐ +εἰμί +αὐτός +τέκνον +δέ +λαλέω +οὕτω +ὁ +θεός +ὅτι +εἰμί +ὁ +σπέρμα +αὐτός +πάροικος +ἐν +γῆ +ἀλλότριος +καί +δουλόω +καί +κακόω +αὐτός +ἔτος +τετρακόσιοι +καί +ὁ +ἔθνος +ἐάν +ὅς +δουλεύω +κρίνω +ἐγώ +ὁ +θεός +λέγω +καί +μετά +οὗτος +ἐξέρχομαι +καί +λατρεύω +ἐγώ +ἐν +ὁ +τόπος +οὗτος +καί +δίδωμι +αὐτός +διαθήκη +περιτομή +καί +οὕτω +γεννάω +ὁ +Ἰσαάκ +καί +περιτέμνω +αὐτός +ὁ +ἡμέρα +ὁ +ὄγδοος +καί +Ἰσαάκ +ὁ +Ἰακώβ +καί +Ἰακώβ +ὁ +δώδεκα +πατριάρχης +καί +ὁ +πατριάρχης +ζηλόω +ὁ +Ἰωσήφ +ἀποδίδωμι +εἰς +Αἴγυπτος +καί +εἰμί +ὁ +θεός +μετά +αὐτός +καί +ἐξαιρέω +αὐτός +ἐκ +πᾶς +ὁ +θλῖψις +αὐτός +καί +δίδωμι +αὐτός +χάρις +καί +σοφία +ἐναντίον +Φαραώ +βασιλεύς +Αἴγυπτος +καί +καθίστημι +αὐτός +ἡγέομαι +ἐπί +Αἴγυπτος +καί +ὅλος +ὁ +οἶκος +αὐτός +δέ +ἔρχομαι +λιμός +ἐπί +ὅλος +ὁ +Αἴγυπτος +καί +Χανάαν +καί +θλῖψις +μέγας +καί +οὐ +εὑρίσκω +χόρτασμα +ὁ +πατήρ +ἐγώ +δέ +Ἰακώβ +ἀκούω +εἰμί +σιτίον +εἰς +Αἴγυπτος +ἐξαποστέλλω +ὁ +πατήρ +ἐγώ +πρῶτος +καί +ἐν +ὁ +δεύτερος +γνωρίζω +Ἰωσήφ +ὁ +ἀδελφός +αὐτός +καί +φανερός +γίνομαι +ὁ +Φαραώ +ὁ +γένος +Ἰωσήφ +δέ +ἀποστέλλω +Ἰωσήφ +μετακαλέω +Ἰακώβ +ὁ +πατήρ +αὐτός +καί +πᾶς +ὁ +συγγένεια +ἐν +ψυχή +ἑβδομήκοντα +πέντε +καί +καταβαίνω +Ἰακώβ +εἰς +Αἴγυπτος +καί +τελευτάω +αὐτός +καί +ὁ +πατήρ +ἐγώ +καί +μετατίθημι +εἰς +Συχέμ +καί +τίθημι +ἐν +ὁ +μνῆμα +ὅς +ὠνέομαι +Ἀβραάμ +τιμή +ἀργύριον +παρά +ὁ +υἱός +Ἑμμώρ +ἐν +Συχέμ +δέ +καθώς +ἐγγίζω +ὁ +χρόνος +ὁ +ἐπαγγελία +ὅς +ὁμολογέω +ὁ +θεός +ὁ +Ἀβραάμ +ὁ +λαός +αὐξάνω +καί +πληθύνω +ἐν +Αἴγυπτος +ἄχρι +ὅς +ἀνίστημι +ἐπί +Αἴγυπτος +βασιλεύς +ἕτερος +ὅς +οὐ +οἶδα +ὁ +Ἰωσήφ +οὗτος +κατασοφίζομαι +ὁ +γένος +ἐγώ +κακόω +ὁ +πατήρ +ὁ +ποιέω +ὁ +βρέφος +αὐτός +ἔκθετος +εἰς +ὁ +μή +ζῳογονέω +ἐν +ὅς +καιρός +γεννάω +Μωϋσῆς +καί +εἰμί +ἀστεῖος +ὁ +θεός +ὅς +ἀνατρέφω +μήν (II) +τρεῖς +ἐν +ὁ +οἶκος +ὁ +πατήρ +δέ +ἐκτίθημι +αὐτός +ἀναιρέω +αὐτός +ὁ +θυγάτηρ +Φαραώ +καί +ἀνατρέφω +αὐτός +ἑαυτοῦ +εἰς +υἱός +καί +παιδεύω +Μωϋσῆς +πᾶς +σοφία +Αἰγύπτιος +δέ +εἰμί +δυνατός +ἐν +λόγος +καί +ἔργον +αὐτός +δέ +ὡς +πληρόω +αὐτός +τεσσερακονταετής +χρόνος +ἀναβαίνω +ἐπί +ὁ +καρδία +αὐτός +ἐπισκέπτομαι +ὁ +ἀδελφός +αὐτός +ὁ +υἱός +Ἰσραήλ +καί +ὁράω +τὶς +ἀδικέω +ἀμύνομαι +καί +ποιέω +ἐκδίκησις +ὁ +καταπονέω +πατάσσω +ὁ +Αἰγύπτιος +δέ +νομίζω +συνίημι +ὁ +ἀδελφός +ὅτι +ὁ +θεός +διά +χείρ +αὐτός +δίδωμι +σωτηρία +αὐτός +δέ +ὁ +οὐ +συνίημι +τέ +ὁ +ἔπειμι +ἡμέρα +ὁράω +αὐτός +μάχομαι +καί +συναλλάσσω +αὐτός +εἰς +εἰρήνη +λέγω +ἀνήρ +ἀδελφός +εἰμί +ἵνα +τίς +ἀδικέω +ἀλλήλων +δέ +ὁ +ἀδικέω +ὁ +πλησίον +ἀπωθέω +αὐτός +λέγω +τίς +σύ +καθίστημι +ἄρχων +καί +δικαστής +ἐπί +ἐγώ +μή +ἀναιρέω +ἐγώ +σύ +θέλω +ὅς +τρόπος +ἀναιρέω +ἐχθές +ὁ +Αἰγύπτιος +δέ +φεύγω +Μωϋσῆς +ἐν +ὁ +λόγος +οὗτος +καί +γίνομαι +πάροικος +ἐν +γῆ +Μαδιάμ +οὗ +γεννάω +υἱός +δύο +καί +πληρόω +ἔτος +τεσσεράκοντα +ὁράω +αὐτός +ἐν +ὁ +ἔρημος +ὁ +ὄρος +Σινᾶ +ἄγγελος +ἐν +φλόξ +πῦρ +βάτος (I) +δέ +ὁ +Μωϋσῆς +ὁράω +θαυμάζω +ὁ +ὅραμα +δέ +προσέρχομαι +αὐτός +κατανοέω +γίνομαι +φωνή +κύριος +ἐγώ +ὁ +θεός +ὁ +πατήρ +σύ +ὁ +θεός +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +δέ +ἔντρομος +γίνομαι +Μωϋσῆς +οὐ +τολμάω +κατανοέω +δέ +λέγω +αὐτός +ὁ +κύριος +λύω +ὁ +ὑπόδημα +ὁ +πούς +σύ +γάρ +ὁ +τόπος +ἐπί +ὅς +ἵστημι +γῆ +ἅγιος +εἰμί +ὁράω +ὁράω +ὁ +κάκωσις +ὁ +λαός +ἐγώ +ὁ +ἐν +Αἴγυπτος +καί +ὁ +στεναγμός +αὐτός +ἀκούω +καί +καταβαίνω +ἐξαιρέω +αὐτός +καί +νῦν +δεῦρο +ἀποστέλλω +σύ +εἰς +Αἴγυπτος +οὗτος +ὁ +Μωϋσῆς +ὅς +ἀρνέομαι +λέγω +τίς +σύ +καθίστημι +ἄρχων +καί +δικαστής +οὗτος +ὁ +θεός +καί +ἄρχων +καί +λυτρωτής +ἀποστέλλω +σύν +χείρ +ἄγγελος +ὁ +ὁράω +αὐτός +ἐν +ὁ +βάτος (I) +οὗτος +ἐξάγω +αὐτός +ποιέω +τέρας +καί +σημεῖον +ἐν +γῆ +Αἴγυπτος +καί +ἐν +ἐρυθρός +θάλασσα +καί +ἐν +ὁ +ἔρημος +ἔτος +τεσσεράκοντα +οὗτος +εἰμί +ὁ +Μωϋσῆς +ὁ +λέγω +ὁ +υἱός +Ἰσραήλ +προφήτης +σύ +ἀνίστημι +ὁ +θεός +ἐκ +ὁ +ἀδελφός +σύ +ὡς +ἐγώ +οὗτος +εἰμί +ὁ +γίνομαι +ἐν +ὁ +ἐκκλησία +ἐν +ὁ +ἔρημος +μετά +ὁ +ἄγγελος +ὁ +λαλέω +αὐτός +ἐν +ὁ +ὄρος +Σινᾶ +καί +ὁ +πατήρ +ἐγώ +ὅς +δέχομαι +λόγιον +ζάω +δίδωμι +σύ +ὅς +οὐ +θέλω +ὑπήκοος +γίνομαι +ὁ +πατήρ +ἐγώ +ἀλλά +ἀπωθέω +καί +στρέφω +ἐν +ὁ +καρδία +αὐτός +εἰς +Αἴγυπτος +λέγω +ὁ +Ἀαρών +ποιέω +ἐγώ +θεός +ὅς +προπορεύομαι +ἐγώ +γάρ +ὁ +Μωϋσῆς +οὗτος +ὅς +ἐξάγω +ἐγώ +ἐκ +γῆ +Αἴγυπτος +οὐ +οἶδα +τίς +γίνομαι +αὐτός +καί +μοσχοποιέω +ἐν +ὁ +ἡμέρα +ἐκεῖνος +καί +ἀνάγω +θυσία +ὁ +εἴδωλον +καί +εὐφραίνω +ἐν +ὁ +ἔργον +ὁ +χείρ +αὐτός +δέ +στρέφω +ὁ +θεός +καί +παραδίδωμι +αὐτός +λατρεύω +ὁ +στρατιά +ὁ +οὐρανός +καθώς +γράφω +ἐν +βίβλος +ὁ +προφήτης +μή +σφάγιον +καί +θυσία +προσφέρω +ἐγώ +ἔτος +τεσσεράκοντα +ἐν +ὁ +ἔρημος +οἶκος +Ἰσραήλ +καί +ἀναλαμβάνω +ὁ +σκηνή +ὁ +Μόλοχ +καί +ὁ +ἄστρον +ὁ +θεός +Ῥαιφάν +ὁ +τύπος +ὅς +ποιέω +προσκυνέω +αὐτός +καί +μετοικίζω +σύ +ἐπέκεινα +Βαβυλών +ὁ +σκηνή +ὁ +μαρτύριον +εἰμί +ὁ +πατήρ +ἐγώ +ἐν +ὁ +ἔρημος +καθώς +διατάσσω +ὁ +λαλέω +ὁ +Μωϋσῆς +ποιέω +αὐτός +κατά +ὁ +τύπος +ὅς +ὁράω +ὅς +καί +εἰσάγω +διαδέχομαι +ὁ +πατήρ +ἐγώ +μετά +Ἰησοῦς +ἐν +ὁ +κατάσχεσις +ὁ +ἔθνος +ὅς +ἐξωθέω +ὁ +θεός +ἀπό +πρόσωπον +ὁ +πατήρ +ἐγώ +ἕως +ὁ +ἡμέρα +Δαυίδ +ὅς +εὑρίσκω +χάρις +ἐνώπιον +ὁ +θεός +καί +αἰτέω +εὑρίσκω +σκήνωμα +ὁ +οἶκος +Ἰακώβ +δέ +Σολομών +οἰκοδομέω +αὐτός +οἶκος +ἀλλά +οὐ +ὁ +ὕψιστος +ἐν +χειροποίητος +κατοικέω +καθώς +ὁ +προφήτης +λέγω +ὁ +οὐρανός +ἐγώ +θρόνος +δέ +ὁ +γῆ +ὑποπόδιον +ὁ +πούς +ἐγώ +ποῖος +οἶκος +οἰκοδομέω +ἐγώ +λέγω +κύριος +ἤ +τίς +τόπος +ὁ +κατάπαυσις +ἐγώ +οὐχί +ὁ +χείρ +ἐγώ +ποιέω +οὗτος +πᾶς +σκληροτράχηλος +καί +ἀπερίτμητος +καρδία +καί +ὁ +οὖς +σύ +ἀεί +ὁ +πνεῦμα +ὁ +ἅγιος +ἀντιπίπτω +ὡς +ὁ +πατήρ +σύ +καί +σύ +τίς +ὁ +προφήτης +οὐ +διώκω +ὁ +πατήρ +σύ +καί +ἀποκτείνω +ὁ +προκαταγγέλλω +περί +ὁ +ἔλευσις +ὁ +δίκαιος +ὅς +νῦν +σύ +προδότης +καί +φονεύς +γίνομαι +ὅστις +λαμβάνω +ὁ +νόμος +εἰς +διαταγή +ἄγγελος +καί +οὐ +φυλάσσω +δέ +ἀκούω +οὗτος +διαπρίω +ὁ +καρδία +αὐτός +καί +βρύχω +ὁ +ὀδούς +ἐπί +αὐτός +δέ +ὑπάρχω +πλήρης +πνεῦμα +ἅγιος +ἀτενίζω +εἰς +ὁ +οὐρανός +ὁράω +δόξα +θεός +καί +Ἰησοῦς +ἵστημι +ἐκ +δεξιός +ὁ +θεός +καί +λέγω +ὁράω +θεωρέω +ὁ +οὐρανός +διανοίγω +καί +ὁ +υἱός +ὁ +ἄνθρωπος +ἐκ +δεξιός +ὁ +θεός +ἵστημι +δέ +κράζω +φωνή +μέγας +συνέχω +ὁ +οὖς +αὐτός +καί +ὁρμάω +ὁμοθυμαδόν +ἐπί +αὐτός +καί +ἐκβάλλω +ἔξω +ὁ +πόλις +λιθοβολέω +καί +ὁ +μάρτυς +ἀποτίθημι +ὁ +ἱμάτιον +αὐτός +παρά +ὁ +πούς +νεανίας +καλέω +Σαῦλος +καί +λιθοβολέω +ὁ +Στέφανος +ἐπικαλέω +καί +λέγω +κύριος +Ἰησοῦς +δέχομαι +ὁ +πνεῦμα +ἐγώ +δέ +τίθημι +ὁ +γόνυ +κράζω +φωνή +μέγας +κύριος +μή +ἵστημι +αὐτός +οὗτος +ὁ +ἁμαρτία +καί +οὗτος +λέγω +κοιμάομαι +δέ +Σαῦλος +εἰμί +συνευδοκέω +ὁ +ἀναίρεσις +αὐτός +δέ +γίνομαι +ἐν +ἐκεῖνος +ὁ +ἡμέρα +διωγμός +μέγας +ἐπί +ὁ +ἐκκλησία +ὁ +ἐν +Ἱεροσόλυμα +δέ +πᾶς +διασπείρω +κατά +ὁ +χώρα +ὁ +Ἰουδαία +καί +Σαμάρεια +πλήν +ὁ +ἀπόστολος +δέ +συγκομίζω +ὁ +Στέφανος +ἀνήρ +εὐλαβής +καί +ποιέω +κοπετός +μέγας +ἐπί +αὐτός +δέ +Σαῦλος +λυμαίνω +ὁ +ἐκκλησία +κατά +ὁ +οἶκος +εἰσπορεύομαι +σύρω +τέ +ἀνήρ +καί +γυνή +παραδίδωμι +εἰς +φυλακή +οὖν +μέν +ὁ +διασπείρω +διέρχομαι +εὐαγγελίζω +ὁ +λόγος +δέ +Φίλιππος +κατέρχομαι +εἰς +ὁ +πόλις +ὁ +Σαμάρεια +κηρύσσω +αὐτός +ὁ +Χριστός +δέ +προσέχω +ὁ +ὄχλος +ὁ +λέγω +ὑπό +ὁ +Φίλιππος +ὁμοθυμαδόν +ἐν +ὁ +ἀκούω +αὐτός +καί +βλέπω +ὁ +σημεῖον +ὅς +ποιέω +γάρ +πολύς +ὁ +ἔχω +πνεῦμα +ἀκάθαρτος +βοάω +φωνή +μέγας +ἐξέρχομαι +δέ +πολύς +παραλύω +καί +χωλός +θεραπεύω +δέ +γίνομαι +πολύς +χαρά +ἐν +ὁ +πόλις +ἐκεῖνος +δέ +ἀνήρ +τὶς +ὄνομα +Σίμων +προϋπάρχω +ἐν +ὁ +πόλις +μαγεύω +καί +ἐξίστημι +ὁ +ἔθνος +ὁ +Σαμάρεια +λέγω +εἰμί +τὶς +μέγας +ἑαυτοῦ +ὅς +προσέχω +πᾶς +ἀπό +μικρός +ἕως +μέγας +λέγω +οὗτος +εἰμί +ὁ +δύναμις +ὁ +θεός +ὁ +καλέω +μέγας +δέ +προσέχω +αὐτός +διά +ὁ +ἱκανός +χρόνος +ὁ +μαγεία +ἐξίστημι +αὐτός +δέ +ὅτε +πιστεύω +ὁ +Φίλιππος +εὐαγγελίζω +περί +ὁ +βασιλεία +ὁ +θεός +καί +ὁ +ὄνομα +Ἰησοῦς +Χριστός +βαπτίζω +τέ +ἀνήρ +καί +γυνή +δέ +ὁ +Σίμων +καί +αὐτός +πιστεύω +καί +βαπτίζω +εἰμί +προσκαρτερέω +ὁ +Φίλιππος +θεωρέω +τέ +σημεῖον +καί +δύναμις +μέγας +γίνομαι +ἐξίστημι +δέ +ὁ +ἐν +Ἱεροσόλυμα +ἀπόστολος +ἀκούω +ὅτι +δέχομαι +ὁ +Σαμάρεια +ὁ +λόγος +ὁ +θεός +ἀποστέλλω +πρός +αὐτός +Πέτρος +καί +Ἰωάννης +ὅστις +καταβαίνω +προσεύχομαι +περί +αὐτός +ὅπως +λαμβάνω +πνεῦμα +ἅγιος +γάρ +οὐδέπω +εἰμί +ἐπιπίπτω +ἐπί +οὐδείς +αὐτός +δέ +μόνος +βαπτίζω +ὑπάρχω +εἰς +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +τότε +ἐπιτίθημι +ὁ +χείρ +ἐπί +αὐτός +καί +λαμβάνω +πνεῦμα +ἅγιος +δέ +ὁ +Σίμων +ὁράω +ὅτι +διά +ὁ +ἐπίθεσις +ὁ +χείρ +ὁ +ἀπόστολος +δίδωμι +ὁ +πνεῦμα +προσφέρω +αὐτός +χρῆμα +λέγω +δίδωμι +κἀγώ +ὁ +ἐξουσία +οὗτος +ἵνα +ἐάν +ὅς +ἐπιτίθημι +ὁ +χείρ +λαμβάνω +πνεῦμα +ἅγιος +δέ +Πέτρος +λέγω +πρός +αὐτός +ὁ +ἀργύριον +σύ +σύν +σύ +εἰμί +εἰς +ἀπώλεια +ὅτι +νομίζω +ὁ +δωρεά +ὁ +θεός +διά +χρῆμα +κτάομαι +οὐ +εἰμί +σύ +μερίς +οὐδέ +κλῆρος +ἐν +ὁ +λόγος +οὗτος +γάρ +ὁ +καρδία +σύ +οὐ +εἰμί +εὐθύς +ἔναντι +ὁ +θεός +οὖν +μετανοέω +ἀπό +ὁ +κακία +σύ +οὗτος +καί +δέομαι +ὁ +κύριος +ἆρα +εἰ +ἀφίημι +σύ +ὁ +ἐπίνοια +ὁ +καρδία +σύ +γάρ +εἰς +χολή +πικρία +καί +σύνδεσμος +ἀδικία +σύ +εἰμί +ὁράω +δέ +ἀποκρίνομαι +ὁ +Σίμων +λέγω +δέομαι +σύ +ὑπέρ +ἐγώ +πρός +ὁ +κύριος +ὅπως +ἐπέρχομαι +ἐπί +ἐγώ +μηδείς +ὅς +εἶπον +μέν +οὖν +ὁ +διαμαρτύρομαι +καί +λαλέω +ὁ +λόγος +ὁ +κύριος +ὑποστρέφω +εἰς +Ἱεροσόλυμα +τέ +πολύς +κώμη +ὁ +Σαμαρίτης +εὐαγγελίζω +δέ +ἄγγελος +κύριος +λαλέω +πρός +Φίλιππος +λέγω +ἀνίστημι +καί +πορεύομαι +κατά +μεσημβρία +ἐπί +ὁ +ὁδός +ὁ +καταβαίνω +ἀπό +Ἱεροσόλυμα +εἰς +Γάζα +οὗτος +εἰμί +ἔρημος +καί +ἀνίστημι +πορεύομαι +καί +ὁράω +ἀνήρ +Αἰθίοψ +εὐνοῦχος +δυνάστης +Κανδάκη +βασίλισσα +Αἰθίοψ +ὅς +εἰμί +ἐπί +πᾶς +ὁ +γάζα +αὐτός +ὅς +ἔρχομαι +προσκυνέω +εἰς +Ἱεροσόλυμα +εἰμί +δέ +ὑποστρέφω +καί +κάθημαι +ἐπί +ὁ +ἅρμα +αὐτός +καί +ἀναγινώσκω +ὁ +προφήτης +Ἠσαΐας +δέ +λέγω +ὁ +πνεῦμα +ὁ +Φίλιππος +προσέρχομαι +καί +κολλάω +ὁ +ἅρμα +οὗτος +δέ +προστρέχω +ὁ +Φίλιππος +ἀκούω +αὐτός +ἀναγινώσκω +Ἠσαΐας +ὁ +προφήτης +καί +λέγω +ἆρα +γέ +γινώσκω +ὅς +ἀναγινώσκω +δέ +ὁ +λέγω +γάρ +ἄν +πῶς +δύναμαι +ἐάν +μή +τὶς +ὁδηγέω +ἐγώ +τέ +παρακαλέω +ὁ +Φίλιππος +ἀναβαίνω +καθίζω +σύν +αὐτός +δέ +ὁ +περιοχή +ὁ +γραφή +ὅς +ἀναγινώσκω +εἰμί +οὗτος +ὡς +πρόβατον +ἐπί +σφαγή +ἄγω +καί +ὡς +ἀμνός +ἐναντίον +ὁ +κείρω +αὐτός +ἄφωνος +οὕτω +οὐ +ἀνοίγω +ὁ +στόμα +αὐτός +ἐν +ὁ +ταπείνωσις +ὁ +κρίσις +αὐτός +αἴρω +ὁ +γενεά +αὐτός +τίς +διηγέομαι +ὅτι +αἴρω +ἀπό +ὁ +γῆ +ὁ +ζωή +αὐτός +δέ +ἀποκρίνομαι +ὁ +εὐνοῦχος +ὁ +Φίλιππος +λέγω +δέομαι +σύ +περί +τίς +ὁ +προφήτης +λέγω +οὗτος +περί +ἑαυτοῦ +ἤ +περί +ἕτερος +τὶς +δέ +ὁ +Φίλιππος +ἀνοίγω +ὁ +στόμα +αὐτός +καί +ἄρχω +ἀπό +ὁ +γραφή +οὗτος +εὐαγγελίζω +αὐτός +ὁ +Ἰησοῦς +δέ +ὡς +πορεύομαι +κατά +ὁ +ὁδός +ἔρχομαι +ἐπί +τὶς +ὕδωρ +καί +φημί +ὁ +εὐνοῦχος +ὁράω +ὕδωρ +τίς +κωλύω +ἐγώ +βαπτίζω +καί +κελεύω +ἵστημι +ὁ +ἅρμα +καί +καταβαίνω +ἀμφότεροι +εἰς +ὁ +ὕδωρ +τέ +ὁ +Φίλιππος +καί +ὁ +εὐνοῦχος +καί +βαπτίζω +αὐτός +δέ +ὅτε +ἀναβαίνω +ἐκ +ὁ +ὕδωρ +πνεῦμα +κύριος +ἁρπάζω +ὁ +Φίλιππος +καί +οὐ +ὁράω +αὐτός +οὐκέτι +ὁ +εὐνοῦχος +γάρ +πορεύομαι +ὁ +ὁδός +αὐτός +χαίρω +δέ +Φίλιππος +εὑρίσκω +εἰς +Ἄζωτος +καί +διέρχομαι +εὐαγγελίζω +ὁ +πόλις +πᾶς +ἕως +ὁ +ἔρχομαι +αὐτός +εἰς +Καισάρεια +δέ +ὁ +Σαῦλος +ἔτι +ἐμπνέω +ἀπειλή +καί +φόνος +εἰς +ὁ +μαθητής +ὁ +κύριος +προσέρχομαι +ὁ +ἀρχιερεύς +αἰτέω +παρά +αὐτός +ἐπιστολή +εἰς +Δαμασκός +πρός +ὁ +συναγωγή +ὅπως +ἐάν +εὑρίσκω +τὶς +ὁ +ὁδός +εἰμί +τέ +ἀνήρ +καί +γυνή +δέω +ἄγω +εἰς +Ἱεροσόλυμα +δέ +ἐν +ὁ +πορεύομαι +γίνομαι +αὐτός +ἐγγίζω +ὁ +Δαμασκός +τέ +ἐξαίφνης +αὐτός +περιαστράπτω +φῶς +ἐκ +ὁ +οὐρανός +καί +πίπτω +ἐπί +ὁ +γῆ +ἀκούω +φωνή +λέγω +αὐτός +Σαούλ +Σαούλ +τίς +ἐγώ +διώκω +δέ +λέγω +τίς +εἰμί +κύριος +δέ +ὁ +ἐγώ +εἰμί +Ἰησοῦς +ὅς +σύ +διώκω +ἀλλά +ἀνίστημι +καί +εἰσέρχομαι +εἰς +ὁ +πόλις +καί +λαλέω +σύ +ὅς +τίς +σύ +ποιέω +δεῖ +δέ +ὁ +ἀνήρ +ὁ +συνοδεύω +αὐτός +ἵστημι +ἐνεός +μέν +ἀκούω +ὁ +φωνή +δέ +μηδείς +θεωρέω +δέ +ἐγείρω +Σαῦλος +ἀπό +ὁ +γῆ +δέ +ἀνοίγω +ὁ +ὀφθαλμός +αὐτός +οὐδείς +βλέπω +δέ +χειραγωγέω +αὐτός +εἰσάγω +εἰς +Δαμασκός +καί +εἰμί +βλέπω +ἡμέρα +τρεῖς +μή +καί +οὐ +ἐσθίω +οὐδέ +πίνω +δέ +εἰμί +τὶς +μαθητής +ὄνομα +Ἁνανίας +ἐν +Δαμασκός +καί +λέγω +πρός +αὐτός +ἐν +ὅραμα +ὁ +κύριος +Ἁνανίας +δέ +ὁ +λέγω +ὁράω +ἐγώ +κύριος +δέ +ὁ +κύριος +πρός +αὐτός +ἀνίστημι +πορεύομαι +ἐπί +ὁ +ῥύμη +ὁ +καλέω +εὐθύς +καί +ζητέω +ἐν +οἰκία +Ἰούδας +Σαῦλος +ὄνομα +Ταρσεύς +γάρ +ὁράω +προσεύχομαι +καί +ὁράω +ἀνήρ +Ἁνανίας +ὄνομα +εἰσέρχομαι +καί +ἐπιτίθημι +αὐτός +χείρ +ὅπως +ἀναβλέπω +δέ +ἀποκρίνομαι +Ἁνανίας +κύριος +ἀκούω +ἀπό +πολύς +περί +ὁ +ἀνήρ +οὗτος +ὅσος +κακός +ὁ +ἅγιος +σύ +ποιέω +ἐν +Ἱεροσόλυμα +καί +ὧδε +ἔχω +ἐξουσία +παρά +ὁ +ἀρχιερεύς +δέω +πᾶς +ὁ +ἐπικαλέω +ὁ +ὄνομα +σύ +δέ +λέγω +πρός +αὐτός +ὁ +κύριος +πορεύομαι +ὅτι +σκεῦος +ἐκλογή +εἰμί +ἐγώ +οὗτος +ὁ +βαστάζω +ὁ +ὄνομα +ἐγώ +ἐνώπιον +τέ +ἔθνος +καί +βασιλεύς +τέ +υἱός +Ἰσραήλ +γάρ +ἐγώ +ὑποδείκνυμι +αὐτός +ὅσος +αὐτός +ὑπέρ +ὁ +ὄνομα +ἐγώ +πάσχω +δεῖ +δέ +ἀπέρχομαι +Ἁνανίας +καί +εἰσέρχομαι +εἰς +ὁ +οἰκία +καί +ἐπιτίθημι +ἐπί +αὐτός +ὁ +χείρ +λέγω +Σαούλ +ἀδελφός +ὁ +κύριος +Ἰησοῦς +ὁ +ὁράω +σύ +ἐν +ὁ +ὁδός +ὅς +ἔρχομαι +ἀποστέλλω +ἐγώ +ὅπως +ἀναβλέπω +καί +πίμπλημι +πνεῦμα +ἅγιος +καί +εὐθέως +ἀποπίπτω +ἀπό +αὐτός +ὁ +ὀφθαλμός +ὡς +λεπίς +τέ +ἀναβλέπω +καί +ἀνίστημι +βαπτίζω +καί +λαμβάνω +τροφή +ἐνισχύω +δέ +γίνομαι +μετά +ὁ +ἐν +Δαμασκός +μαθητής +ἡμέρα +τὶς +καί +εὐθέως +ἐν +ὁ +συναγωγή +κηρύσσω +ὁ +Ἰησοῦς +ὅτι +οὗτος +εἰμί +ὁ +υἱός +ὁ +θεός +δέ +ἐξίστημι +πᾶς +ὁ +ἀκούω +καί +λέγω +οὐ +οὗτος +εἰμί +ὁ +πορθέω +εἰς +Ἱεροσόλυμα +ὁ +ἐπικαλέω +ὁ +ὄνομα +οὗτος +καί +ὧδε +εἰς +οὗτος +ἔρχομαι +ἵνα +δέω +αὐτός +ἄγω +ἐπί +ὁ +ἀρχιερεύς +δέ +Σαῦλος +μᾶλλον +ἐνδυναμόω +καί +συγχέω +Ἰουδαῖος +ὁ +κατοικέω +ἐν +Δαμασκός +συμβιβάζω +ὅτι +οὗτος +εἰμί +ὁ +Χριστός +δέ +ὡς +πληρόω +ἡμέρα +ἱκανός +συμβουλεύω +ὁ +Ἰουδαῖος +ἀναιρέω +αὐτός +δέ +γινώσκω +ὁ +Σαῦλος +ὁ +ἐπιβουλή +αὐτός +δέ +παρατηρέω +καί +ὁ +πύλη +τέ +ἡμέρα +καί +νύξ +ὅπως +αὐτός +ἀναιρέω +δέ +λαμβάνω +ὁ +μαθητής +αὐτός +νύξ +διά +ὁ +τεῖχος +καθίημι +αὐτός +χαλάω +ἐν +σπυρίς +δέ +παραγίνομαι +εἰς +Ἱεροσόλυμα +πειράζω +κολλάω +ὁ +μαθητής +καί +πᾶς +φοβέω +αὐτός +μή +πιστεύω +ὅτι +εἰμί +μαθητής +δέ +Βαρναβᾶς +ἐπιλαμβάνομαι +αὐτός +ἄγω +πρός +ὁ +ἀπόστολος +καί +διηγέομαι +αὐτός +πῶς +ἐν +ὁ +ὁδός +ὁράω +ὁ +κύριος +καί +ὅτι +λαλέω +αὐτός +καί +πῶς +ἐν +Δαμασκός +παρρησιάζομαι +ἐν +ὁ +ὄνομα +Ἰησοῦς +καί +εἰμί +εἰσπορεύομαι +καί +ἐκπορεύομαι +μετά +αὐτός +εἰς +Ἱεροσόλυμα +παρρησιάζομαι +ἐν +ὁ +ὄνομα +ὁ +κύριος +τέ +λαλέω +καί +συζητέω +πρός +ὁ +Ἑλληνιστής +δέ +ὁ +ἐπιχειρέω +ἀναιρέω +αὐτός +δέ +ἐπιγινώσκω +ὁ +ἀδελφός +κατάγω +αὐτός +εἰς +Καισάρεια +καί +ἐξαποστέλλω +αὐτός +εἰς +Ταρσός +μέν +οὖν +ὁ +ἐκκλησία +κατά +ὅλος +ὁ +Ἰουδαία +καί +Γαλιλαία +καί +Σαμάρεια +ἔχω +εἰρήνη +οἰκοδομέω +καί +πορεύομαι +ὁ +φόβος +ὁ +κύριος +καί +ὁ +παράκλησις +ὁ +ἅγιος +πνεῦμα +πληθύνω +δέ +γίνομαι +Πέτρος +διέρχομαι +διά +πᾶς +κατέρχομαι +καί +πρός +ὁ +ἅγιος +ὁ +κατοικέω +Λύδδα +δέ +εὑρίσκω +ἐκεῖ +ἄνθρωπος +τὶς +ὄνομα +Αἰνέας +ἐκ +ἔτος +ὀκτώ +κατάκειμαι +ἐπί +κράβαττος +ὅς +εἰμί +παραλύω +καί +λέγω +αὐτός +ὁ +Πέτρος +Αἰνέας +ἰάομαι +σύ +Ἰησοῦς +Χριστός +ἀνίστημι +καί +στρωννύω +σεαυτοῦ +καί +εὐθέως +ἀνίστημι +καί +ὁράω +αὐτός +πᾶς +ὁ +κατοικέω +Λύδδα +καί +ὁ +Σαρών +ὅστις +ἐπιστρέφω +ἐπί +ὁ +κύριος +δέ +ἐν +Ἰόππη +εἰμί +τὶς +μαθήτρια +ὄνομα +Ταβιθά +ὅς +διερμηνεύω +λέγω +Δορκάς +οὗτος +εἰμί +πλήρης +ἔργον +ἀγαθός +καί +ἐλεημοσύνη +ὅς +ποιέω +δέ +γίνομαι +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ἀσθενέω +αὐτός +ἀποθνῄσκω +δέ +λούω +τίθημι +ἐν +ὑπερῷον +δέ +εἰμί +Λύδδα +ἐγγύς +ὁ +Ἰόππη +ὁ +μαθητής +ἀκούω +ὅτι +Πέτρος +εἰμί +ἐν +αὐτός +ἀποστέλλω +δύο +ἀνήρ +πρός +αὐτός +παρακαλέω +μή +ὀκνέω +διέρχομαι +ἕως +ἐγώ +δέ +ἀνίστημι +Πέτρος +συνέρχομαι +αὐτός +ὅς +παραγίνομαι +ἀνάγω +εἰς +ὁ +ὑπερῷον +καί +παρίστημι +αὐτός +πᾶς +ὁ +χῆρος +κλαίω +καί +ἐπιδείκνυμι +χιτών +καί +ἱμάτιον +ὅσος +ποιέω +μετά +αὐτός +εἰμί +ὁ +Δορκάς +δέ +ὁ +Πέτρος +ἐκβάλλω +ἔξω +πᾶς +καί +τίθημι +ὁ +γόνυ +προσεύχομαι +καί +ἐπιστρέφω +πρός +ὁ +σῶμα +λέγω +Ταβιθά +ἀνίστημι +δέ +ὁ +ἀνοίγω +ὁ +ὀφθαλμός +αὐτός +καί +ὁράω +ὁ +Πέτρος +ἀνακαθίζω +δέ +δίδωμι +αὐτός +χείρ +ἀνίστημι +αὐτός +δέ +φωνέω +ὁ +ἅγιος +καί +ὁ +χῆρος +παρίστημι +αὐτός +ζάω +δέ +γνωστός +γίνομαι +κατά +ὅλος +ὁ +Ἰόππη +καί +πιστεύω +πολύς +ἐπί +ὁ +κύριος +δέ +γίνομαι +ἡμέρα +ἱκανός +μένω +ἐν +Ἰόππη +παρά +τὶς +Σίμων +βυρσεύς +δέ +ἀνήρ +τὶς +ἐν +Καισάρεια +ὄνομα +Κορνήλιος +ἑκατοντάρχης +ἐκ +σπεῖρα +ὁ +καλέω +Ἰταλικός +εὐσεβής +καί +φοβέω +ὁ +θεός +σύν +πᾶς +ὁ +οἶκος +αὐτός +ποιέω +ἐλεημοσύνη +πολύς +ὁ +λαός +καί +δέομαι +ὁ +θεός +διά +πᾶς +ὁράω +ἐν +ὅραμα +φανερῶς +ὡσεί +περί +ὥρα +ἔνατος +ὁ +ἡμέρα +ἄγγελος +ὁ +θεός +εἰσέρχομαι +πρός +αὐτός +καί +λέγω +αὐτός +Κορνήλιος +δέ +ὁ +ἀτενίζω +αὐτός +καί +ἔμφοβος +γίνομαι +λέγω +τίς +εἰμί +κύριος +δέ +λέγω +αὐτός +ὁ +προσευχή +σύ +καί +ὁ +ἐλεημοσύνη +σύ +ἀναβαίνω +εἰς +μνημόσυνον +ἔμπροσθεν +ὁ +θεός +καί +νῦν +πέμπω +ἀνήρ +εἰς +Ἰόππη +καί +μεταπέμπω +Σίμων +τὶς +ὅς +ἐπικαλέω +Πέτρος +οὗτος +ξενίζω +παρά +τὶς +Σίμων +βυρσεύς +ὅς +εἰμί +οἰκία +παρά +θάλασσα +δέ +ὡς +ἀπέρχομαι +ὁ +ἄγγελος +ὁ +λαλέω +αὐτός +φωνέω +δύο +ὁ +οἰκέτης +καί +στρατιώτης +εὐσεβής +ὁ +προσκαρτερέω +αὐτός +καί +ἐξηγέομαι +ἅπας +αὐτός +ἀποστέλλω +αὐτός +εἰς +ὁ +Ἰόππη +δέ +ὁ +ἐπαύριον +ὁδοιπορέω +ἐκεῖνος +καί +ὁ +πόλις +ἐγγίζω +ἀναβαίνω +Πέτρος +ἐπί +ὁ +δῶμα +προσεύχομαι +περί +ὥρα +ἕκτος +δέ +γίνομαι +πρόσπεινος +καί +θέλω +γεύομαι +δέ +παρασκευάζω +αὐτός +γίνομαι +ἐπί +αὐτός +ἔκστασις +καί +θεωρέω +ὁ +οὐρανός +ἀνοίγω +καί +καταβαίνω +σκεῦος +τὶς +ὡς +ὀθόνη +μέγας +τέσσαρες +ἀρχή +καθίημι +ἐπί +ὁ +γῆ +ἐν +ὅς +ὑπάρχω +πᾶς +ὁ +τετράπους +καί +ἑρπετόν +ὁ +γῆ +καί +πετεινός +ὁ +οὐρανός +καί +γίνομαι +φωνή +πρός +αὐτός +Πέτρος +ἀνίστημι +θύω +καί +ἐσθίω +δέ +ὁ +Πέτρος +λέγω +μηδαμῶς +κύριος +ὅτι +οὐδέποτε +ἐσθίω +πᾶς +κοινός +καί +ἀκάθαρτος +καί +φωνή +πάλιν +ἐκ +δεύτερος +πρός +αὐτός +ὅς +ὁ +θεός +καθαρίζω +σύ +μή +κοινόω +δέ +οὗτος +γίνομαι +ἐπί +τρίς +καί +εὐθύς +ἀναλαμβάνω +ὁ +σκεῦος +εἰς +ὁ +οὐρανός +δέ +ὡς +ἐν +ἑαυτοῦ +διαπορέω +ὁ +Πέτρος +ἄν +τίς +εἰμί +ὁ +ὅραμα +ὅς +ὁράω +ὁράω +ὁ +ἀνήρ +ὁ +ἀποστέλλω +ὑπό +ὁ +Κορνήλιος +διερωτάω +ὁ +οἰκία +ὁ +Σίμων +ἐφίστημι +ἐπί +ὁ +πυλών +καί +φωνέω +πυνθάνομαι +εἰ +Σίμων +ὁ +ἐπικαλέω +Πέτρος +ἐνθάδε +ξενίζω +δέ +ὁ +Πέτρος +διενθυμέομαι +περί +ὁ +ὅραμα +λέγω +ὁ +πνεῦμα +ὁράω +ἀνήρ +δύο +ζητέω +σύ +ἀλλά +ἀνίστημι +καταβαίνω +καί +πορεύομαι +σύν +αὐτός +μηδείς +διακρίνω +ὅτι +ἐγώ +ἀποστέλλω +αὐτός +δέ +καταβαίνω +Πέτρος +πρός +ὁ +ἀνήρ +λέγω +ὁράω +ἐγώ +εἰμί +ὅς +ζητέω +τίς +ὁ +αἰτία +διά +ὅς +πάρειμι +δέ +ὁ +λέγω +Κορνήλιος +ἑκατοντάρχης +ἀνήρ +δίκαιος +καί +φοβέω +ὁ +θεός +τέ +μαρτυρέω +ὑπό +ὅλος +ὁ +ἔθνος +ὁ +Ἰουδαῖος +χρηματίζω +ὑπό +ἄγγελος +ἅγιος +μεταπέμπω +σύ +εἰς +ὁ +οἶκος +αὐτός +καί +ἀκούω +ῥῆμα +παρά +σύ +οὖν +εἰσκαλέομαι +αὐτός +ξενίζω +δέ +ὁ +ἐπαύριον +ἀνίστημι +ἐξέρχομαι +σύν +αὐτός +καί +τὶς +ὁ +ἀδελφός +ὁ +ἀπό +Ἰόππη +συνέρχομαι +αὐτός +δέ +ὁ +ἐπαύριον +εἰσέρχομαι +εἰς +ὁ +Καισάρεια +δέ +ὁ +Κορνήλιος +εἰμί +προσδοκάω +αὐτός +συγκαλέω +ὁ +συγγενής +αὐτός +καί +ὁ +ἀναγκαῖος +φίλος +δέ +ὡς +γίνομαι +ὁ +εἰσέρχομαι +ὁ +Πέτρος +συναντάω +αὐτός +ὁ +Κορνήλιος +πίπτω +ἐπί +ὁ +πούς +προσκυνέω +δέ +ὁ +Πέτρος +ἐγείρω +αὐτός +λέγω +ἀνίστημι +καί +ἐγώ +αὐτός +ἄνθρωπος +εἰμί +καί +συνομιλέω +αὐτός +εἰσέρχομαι +καί +εὑρίσκω +συνέρχομαι +πολύς +τέ +φημί +πρός +αὐτός +σύ +ἐπίσταμαι +ὡς +ἀθέμιτος +εἰμί +ἀνήρ +Ἰουδαῖος +κολλάω +ἤ +προσέρχομαι +ἀλλόφυλος +κἀγώ +ὁ +θεός +δείκνυμι +μηδείς +ἄνθρωπος +κοινός +ἤ +ἀκάθαρτος +λέγω +διό +καί +ἀναντιρρήτως +ἔρχομαι +μεταπέμπω +οὖν +πυνθάνομαι +τίς +λόγος +μεταπέμπω +ἐγώ +καί +ὁ +Κορνήλιος +φημί +ἀπό +τέταρτος +ἡμέρα +μέχρι +οὗτος +ὁ +ὥρα +εἰμί +προσεύχομαι +ὁ +ἔνατος +ἐν +ὁ +οἶκος +ἐγώ +καί +ὁράω +ἀνήρ +ἵστημι +ἐνώπιον +ἐγώ +ἐν +ἐσθής +λαμπρός +καί +φημί +Κορνήλιος +εἰσακούω +σύ +ὁ +προσευχή +καί +ὁ +ἐλεημοσύνη +σύ +μιμνῄσκω +ἐνώπιον +ὁ +θεός +οὖν +πέμπω +εἰς +Ἰόππη +καί +μετακαλέω +Σίμων +ὅς +ἐπικαλέω +Πέτρος +οὗτος +ξενίζω +ἐν +οἰκία +Σίμων +βυρσεύς +παρά +θάλασσα +οὖν +ἐξαυτῆς +πέμπω +πρός +σύ +τέ +σύ +καλῶς +ποιέω +παραγίνομαι +οὖν +νῦν +πᾶς +ἐγώ +ἐνώπιον +ὁ +θεός +πάρειμι +ἀκούω +πᾶς +ὁ +προστάσσω +σύ +ὑπό +ὁ +κύριος +δέ +Πέτρος +ἀνοίγω +ὁ +στόμα +λέγω +ἐπί +ἀλήθεια +καταλαμβάνω +ὅτι +οὐ +εἰμί +προσωπολήμπτης +ὁ +θεός +ἀλλά +ἐν +πᾶς +ἔθνος +ὁ +φοβέω +αὐτός +καί +ἐργάζομαι +δικαιοσύνη +δεκτός +αὐτός +εἰμί +ὁ +λόγος +ὅς +ἀποστέλλω +ὁ +υἱός +Ἰσραήλ +εὐαγγελίζω +εἰρήνη +διά +Ἰησοῦς +Χριστός +οὗτος +εἰμί +πᾶς +κύριος +σύ +οἶδα +ὁ +ῥῆμα +γίνομαι +κατά +ὅλος +ὁ +Ἰουδαία +ἄρχω +ἀπό +ὁ +Γαλιλαία +μετά +ὁ +βάπτισμα +ὅς +κηρύσσω +Ἰωάννης +Ἰησοῦς +ὁ +ἀπό +Ναζαρά +ὡς +χρίω +αὐτός +ὁ +θεός +πνεῦμα +ἅγιος +καί +δύναμις +ὅς +διέρχομαι +εὐεργετέω +καί +ἰάομαι +πᾶς +ὁ +καταδυναστεύω +ὑπό +ὁ +διάβολος +ὅτι +ὁ +θεός +εἰμί +μετά +αὐτός +καί +ἐγώ +μάρτυς +πᾶς +ὅς +ποιέω +τέ +ἐν +ὁ +χώρα +ὁ +Ἰουδαῖος +καί +Ἱεροσόλυμα +ὅς +καί +ἀναιρέω +κρεμάννυμι +ἐπί +ξύλον +οὗτος +ὁ +θεός +ἐγείρω +ἐν +ὁ +τρίτος +ἡμέρα +καί +δίδωμι +αὐτός +ἐμφανής +γίνομαι +οὐ +πᾶς +ὁ +λαός +ἀλλά +μάρτυς +ὁ +προχειροτονέω +ὑπό +ὁ +θεός +ἐγώ +ὅστις +συνεσθίω +καί +συμπίνω +αὐτός +μετά +ὁ +ἀνίστημι +αὐτός +ἐκ +νεκρός +καί +παραγγέλλω +ἐγώ +κηρύσσω +ὁ +λαός +καί +διαμαρτύρομαι +ὅτι +οὗτος +εἰμί +ὁ +ὁρίζω +ὑπό +ὁ +θεός +κριτής +ζάω +καί +νεκρός +οὗτος +πᾶς +ὁ +προφήτης +μαρτυρέω +ἄφεσις +ἁμαρτία +λαμβάνω +διά +ὁ +ὄνομα +αὐτός +πᾶς +ὁ +πιστεύω +εἰς +αὐτός +ἔτι +λαλέω +ὁ +Πέτρος +ὁ +ῥῆμα +οὗτος +ἐπιπίπτω +ὁ +πνεῦμα +ὁ +ἅγιος +ἐπί +πᾶς +ὁ +ἀκούω +ὁ +λόγος +καί +ἐξίστημι +ὁ +ἐκ +περιτομή +πιστός +ὅσος +συνέρχομαι +ὁ +Πέτρος +ὅτι +καί +ἐπί +ὁ +ἔθνος +ὁ +δωρεά +ὁ +ἅγιος +πνεῦμα +ἐκχέω +γάρ +ἀκούω +αὐτός +λαλέω +γλῶσσα +καί +μεγαλύνω +ὁ +θεός +τότε +ἀποκρίνομαι +Πέτρος +μήτι +ὁ +ὕδωρ +κωλύω +δύναμαι +τὶς +ὁ +μή +βαπτίζω +οὗτος +ὅστις +ὁ +πνεῦμα +ὁ +ἅγιος +λαμβάνω +ὡς +καί +ἐγώ +δέ +προστάσσω +αὐτός +ἐν +ὁ +ὄνομα +Ἰησοῦς +Χριστός +βαπτίζω +τότε +ἐρωτάω +αὐτός +ἐπιμένω +ἡμέρα +τὶς +δέ +ἀκούω +ὁ +ἀπόστολος +καί +ὁ +ἀδελφός +ὁ +εἰμί +κατά +ὁ +Ἰουδαία +ὅτι +καί +ὁ +ἔθνος +δέχομαι +ὁ +λόγος +ὁ +θεός +δέ +ὅτε +ἀναβαίνω +Πέτρος +εἰς +Ἱεροσόλυμα +διακρίνω +πρός +αὐτός +ὁ +ἐκ +περιτομή +λέγω +ὅτι +εἰσέρχομαι +πρός +ἀνήρ +ἀκροβυστία +ἔχω +καί +συνεσθίω +αὐτός +δέ +ἄρχω +Πέτρος +ἐκτίθημι +αὐτός +καθεξῆς +λέγω +ἐγώ +εἰμί +προσεύχομαι +ἐν +πόλις +Ἰόππη +καί +ὁράω +ἐν +ἔκστασις +ὅραμα +καταβαίνω +σκεῦος +τὶς +ὡς +ὀθόνη +μέγας +τέσσαρες +ἀρχή +καθίημι +ἐκ +ὁ +οὐρανός +καί +ἔρχομαι +ἄχρι +ἐγώ +εἰς +ὅς +ἀτενίζω +κατανοέω +καί +ὁράω +ὁ +τετράπους +ὁ +γῆ +καί +ὁ +θηρίον +καί +ὁ +ἑρπετόν +καί +ὁ +πετεινός +ὁ +οὐρανός +δέ +ἀκούω +καί +φωνή +λέγω +ἐγώ +Πέτρος +ἀνίστημι +θύω +καί +ἐσθίω +δέ +λέγω +μηδαμῶς +κύριος +ὅτι +κοινός +ἤ +ἀκάθαρτος +οὐδέποτε +εἰσέρχομαι +εἰς +ὁ +στόμα +ἐγώ +δέ +ἀποκρίνομαι +ἐκ +δεύτερος +φωνή +ἐκ +ὁ +οὐρανός +ὅς +ὁ +θεός +καθαρίζω +σύ +μή +κοινόω +δέ +οὗτος +γίνομαι +ἐπί +τρίς +καί +ἀνασπάω +πάλιν +ἅπας +εἰς +ὁ +οὐρανός +καί +ὁράω +ἐξαυτῆς +τρεῖς +ἀνήρ +ἐφίστημι +ἐπί +ὁ +οἰκία +ἐν +ὅς +εἰμί +ἀποστέλλω +ἀπό +Καισάρεια +πρός +ἐγώ +δέ +λέγω +ὁ +πνεῦμα +ἐγώ +συνέρχομαι +αὐτός +μηδείς +διακρίνω +δέ +ἔρχομαι +σύν +ἐγώ +καί +ὁ +ἕξ +ἀδελφός +οὗτος +καί +εἰσέρχομαι +εἰς +ὁ +οἶκος +ὁ +ἀνήρ +δέ +ἀπαγγέλλω +ἐγώ +πῶς +ὁράω +ὁ +ἄγγελος +ἐν +ὁ +οἶκος +αὐτός +ἵστημι +καί +λέγω +ἀποστέλλω +εἰς +Ἰόππη +καί +μεταπέμπω +Σίμων +ὁ +ἐπικαλέω +Πέτρος +ὅς +λαλέω +ῥῆμα +πρός +σύ +ἐν +ὅς +σῴζω +σύ +καί +πᾶς +ὁ +οἶκος +σύ +δέ +ἐν +ὁ +ἄρχω +ἐγώ +λαλέω +ἐπιπίπτω +ὁ +πνεῦμα +ὁ +ἅγιος +ἐπί +αὐτός +ὥσπερ +καί +ἐπί +ἐγώ +ἐν +ἀρχή +δέ +μιμνῄσκω +ὁ +ῥῆμα +ὁ +κύριος +ὡς +λέγω +μέν +Ἰωάννης +βαπτίζω +ὕδωρ +δέ +σύ +βαπτίζω +ἐν +πνεῦμα +ἅγιος +οὖν +εἰ +ὁ +ἴσος +δωρεά +δίδωμι +αὐτός +ὁ +θεός +ὡς +καί +ἐγώ +πιστεύω +ἐπί +ὁ +κύριος +Ἰησοῦς +Χριστός +ἐγώ +τίς +εἰμί +δυνατός +κωλύω +ὁ +θεός +δέ +ἀκούω +οὗτος +ἡσυχάζω +καί +δοξάζω +ὁ +θεός +λέγω +ἄρα +καί +ὁ +ἔθνος +ὁ +θεός +ὁ +μετάνοια +εἰς +ζωή +δίδωμι +μέν +οὖν +ὁ +διασπείρω +ἀπό +ὁ +θλῖψις +ὁ +γίνομαι +ἐπί +Στέφανος +διέρχομαι +ἕως +Φοινίκη +καί +Κύπρος +καί +Ἀντιόχεια +μηδείς +λαλέω +ὁ +λόγος +εἰ +μή +μόνος +Ἰουδαῖος +δέ +εἰμί +τὶς +ἐκ +αὐτός +ἀνήρ +Κύπριος +καί +Κυρηναῖος +ὅστις +ἔρχομαι +εἰς +Ἀντιόχεια +λαλέω +καί +πρός +ὁ +Ἕλλην +εὐαγγελίζω +ὁ +κύριος +Ἰησοῦς +καί +εἰμί +χείρ +κύριος +μετά +αὐτός +τέ +πολύς +ἀριθμός +ὁ +πιστεύω +ἐπιστρέφω +ἐπί +ὁ +κύριος +δέ +ἀκούω +ὁ +λόγος +περί +αὐτός +εἰς +ὁ +οὖς +ὁ +ἐκκλησία +ὁ +εἰμί +ἐν +Ἱεροσόλυμα +καί +ἐξαποστέλλω +Βαρναβᾶς +ἕως +Ἀντιόχεια +ὅς +παραγίνομαι +καί +ὁράω +ὁ +χάρις +ὁ +ὁ +θεός +χαίρω +καί +παρακαλέω +πᾶς +ὁ +πρόθεσις +ὁ +καρδία +προσμένω +ὁ +κύριος +ὅτι +εἰμί +ἀνήρ +ἀγαθός +καί +πλήρης +πνεῦμα +ἅγιος +καί +πίστις +καί +προστίθημι +ὄχλος +ἱκανός +ὁ +κύριος +δέ +ἐξέρχομαι +εἰς +Ταρσός +ἀναζητέω +Σαῦλος +καί +εὑρίσκω +ἄγω +εἰς +Ἀντιόχεια +δέ +γίνομαι +αὐτός +καί +ἐνιαυτός +ὅλος +συνάγω +ἐν +ὁ +ἐκκλησία +καί +διδάσκω +ὄχλος +ἱκανός +τέ +χρηματίζω +πρώτως +ἐν +Ἀντιόχεια +ὁ +μαθητής +Χριστιανός +δέ +ἐν +οὗτος +ὁ +ἡμέρα +κατέρχομαι +ἀπό +Ἱεροσόλυμα +προφήτης +εἰς +Ἀντιόχεια +δέ +ἀνίστημι +εἷς +ἐκ +αὐτός +ὄνομα +Ἅγαβος +σημαίνω +διά +ὁ +πνεῦμα +λιμός +μέγας +μέλλω +εἰμί +ἐπί +ὅλος +ὁ +οἰκουμένη +ὅστις +γίνομαι +ἐπί +Κλαύδιος +δέ +ὁ +μαθητής +καθώς +εὐπορέω +τὶς +ὁρίζω +ἕκαστος +αὐτός +εἰς +διακονία +πέμπω +ὁ +κατοικέω +ἐν +ὁ +Ἰουδαία +ἀδελφός +ὅς +καί +ποιέω +ἀποστέλλω +πρός +ὁ +πρεσβύτερος +διά +χείρ +Βαρναβᾶς +καί +Σαῦλος +δέ +κατά +ἐκεῖνος +ὁ +καιρός +ἐπιβάλλω +Ἡρῴδης +ὁ +βασιλεύς +ὁ +χείρ +κακόω +τὶς +ὁ +ἀπό +ὁ +ἐκκλησία +δέ +ἀναιρέω +Ἰάκωβος +ὁ +ἀδελφός +Ἰωάννης +μάχαιρα +δέ +ὁράω +ὅτι +ἀρεστός +εἰμί +ὁ +Ἰουδαῖος +προστίθημι +συλλαμβάνω +καί +Πέτρος +δέ +εἰμί +ἡμέρα +ὁ +ἄζυμος +ὅς +καί +πιάζω +τίθημι +εἰς +φυλακή +παραδίδωμι +τέσσαρες +τετράδιον +στρατιώτης +φυλάσσω +αὐτός +βούλομαι +μετά +ὁ +πάσχα +ἀνάγω +αὐτός +ὁ +λαός +οὖν +μέν +ὁ +Πέτρος +τηρέω +ἐν +ὁ +φυλακή +δέ +προσευχή +εἰμί +γίνομαι +ἐκτενῶς +ὑπό +ὁ +ἐκκλησία +πρός +ὁ +θεός +περί +αὐτός +δέ +ὅτε +μέλλω +προάγω +αὐτός +ὁ +Ἡρῴδης +ὁ +νύξ +ἐκεῖνος +ὁ +Πέτρος +εἰμί +κοιμάομαι +μεταξύ +δύο +στρατιώτης +δέω +ἅλυσις +δύο +τέ +φύλαξ +πρό +ὁ +θύρα +τηρέω +ὁ +φυλακή +καί +ὁράω +ἄγγελος +κύριος +ἐφίστημι +καί +φῶς +λάμπω +ἐν +ὁ +οἴκημα +δέ +πατάσσω +ὁ +πλευρά +ὁ +Πέτρος +ἐγείρω +αὐτός +λέγω +ἀνίστημι +ἐν +τάχος +καί +ἐκπίπτω +αὐτός +ὁ +ἅλυσις +ἐκ +ὁ +χείρ +δέ +λέγω +ὁ +ἄγγελος +πρός +αὐτός +ζωννύω +καί +ὑποδέω +ὁ +σανδάλιον +σύ +δέ +ποιέω +οὕτω +καί +λέγω +αὐτός +περιβάλλω +ὁ +ἱμάτιον +σύ +καί +ἀκολουθέω +ἐγώ +καί +ἐξέρχομαι +ἀκολουθέω +καί +οὐ +οἶδα +ὅτι +ἀληθής +εἰμί +ὁ +γίνομαι +διά +ὁ +ἄγγελος +δέ +δοκέω +ὅραμα +βλέπω +δέ +διέρχομαι +πρῶτος +καί +δεύτερος +φυλακή +ἔρχομαι +ἐπί +ὁ +πύλη +ὁ +σιδηροῦς +ὁ +φέρω +εἰς +ὁ +πόλις +ὅστις +αὐτόματος +ἀνοίγω +αὐτός +καί +ἐξέρχομαι +προέρχομαι +ῥύμη +εἷς +καί +εὐθέως +ἀφίστημι +ὁ +ἄγγελος +ἀπό +αὐτός +καί +ὁ +Πέτρος +ἐν +ἑαυτοῦ +γίνομαι +λέγω +νῦν +οἶδα +ἀληθῶς +ὅτι +ἐξαποστέλλω +ὁ +κύριος +ὁ +ἄγγελος +αὐτός +καί +ἐξαιρέω +ἐγώ +ἐκ +χείρ +Ἡρῴδης +καί +πᾶς +ὁ +προσδοκία +ὁ +λαός +ὁ +Ἰουδαῖος +τέ +συνοράω +ἔρχομαι +ἐπί +ὁ +οἰκία +ὁ +Μαρία +ὁ +μήτηρ +Ἰωάννης +ὁ +ἐπικαλέω +Μᾶρκος +οὗ +ἱκανός +εἰμί +συναθροίζω +καί +προσεύχομαι +δέ +κρούω +αὐτός +ὁ +θύρα +ὁ +πυλών +προσέρχομαι +ὑπακούω +παιδίσκη +ὄνομα +Ῥόδη +καί +ἐπιγινώσκω +ὁ +φωνή +ὁ +Πέτρος +ἀπό +ὁ +χαρά +οὐ +ἀνοίγω +ὁ +πυλών +δέ +εἰστρέχω +ἀπαγγέλλω +ἵστημι +ὁ +Πέτρος +πρό +ὁ +πυλών +δέ +ὁ +πρός +αὐτός +λέγω +μαίνομαι +δέ +ὁ +διϊσχυρίζομαι +οὕτω +ἔχω +δέ +ὁ +λέγω +ὁ +ἄγγελος +εἰμί +αὐτός +δέ +ὁ +Πέτρος +ἐπιμένω +κρούω +δέ +ἀνοίγω +ὁράω +αὐτός +καί +ἐξίστημι +δέ +κατασείω +αὐτός +ὁ +χείρ +σιγάω +διηγέομαι +αὐτός +πῶς +ὁ +κύριος +αὐτός +ἐξάγω +ἐκ +ὁ +φυλακή +τέ +λέγω +ἀπαγγέλλω +Ἰάκωβος +καί +ὁ +ἀδελφός +οὗτος +καί +ἐξέρχομαι +πορεύομαι +εἰς +ἕτερος +τόπος +δέ +γίνομαι +ἡμέρα +εἰμί +τάραχος +οὐ +ὀλίγος +ἐν +ὁ +στρατιώτης +ἆρα +τίς +ὁ +Πέτρος +γίνομαι +δέ +Ἡρῴδης +ἐπιζητέω +αὐτός +καί +μή +εὑρίσκω +ἀνακρίνω +ὁ +φύλαξ +κελεύω +ἀπάγω +καί +κατέρχομαι +ἀπό +ὁ +Ἰουδαία +εἰς +Καισάρεια +διατρίβω +δέ +εἰμί +θυμομαχέω +Τύριος +καί +Σιδώνιος +δέ +ὁμοθυμαδόν +πάρειμι +πρός +αὐτός +καί +πείθω +Βλάστος +ὁ +ἐπί +ὁ +κοιτών +ὁ +βασιλεύς +αἰτέω +εἰρήνη +διά +ὁ +τρέφω +αὐτός +ὁ +χώρα +ἀπό +ὁ +βασιλικός +δέ +τακτός +ἡμέρα +ὁ +Ἡρῴδης +ἐνδύω +ἐσθής +βασιλικός +καθίζω +ἐπί +ὁ +βῆμα +δημηγορέω +πρός +αὐτός +δέ +ὁ +δῆμος +ἐπιφωνέω +θεός +φωνή +καί +οὐ +ἄνθρωπος +δέ +παραχρῆμα +πατάσσω +αὐτός +ἄγγελος +κύριος +ἀντί +ὅς +οὐ +δίδωμι +ὁ +δόξα +ὁ +θεός +καί +γίνομαι +σκωληκόβρωτος +ἐκψύχω +δέ +ὁ +λόγος +ὁ +κύριος +αὐξάνω +καί +πληθύνω +δέ +Βαρναβᾶς +καί +Σαῦλος +ὑποστρέφω +ἐκ +Ἱεροσόλυμα +πληρόω +ὁ +διακονία +συμπαραλαμβάνω +Ἰωάννης +ὁ +ἐπικαλέω +Μᾶρκος +δέ +εἰμί +ἐν +Ἀντιόχεια +κατά +ὁ +εἰμί +ἐκκλησία +προφήτης +καί +διδάσκαλος +τέ +ὁ +Βαρναβᾶς +καί +Συμεών +ὁ +καλέω +Νίγερ +καί +Λούκιος +ὁ +Κυρηναῖος +τέ +Μαναήν +Ἡρῴδης +ὁ +τετραάρχης +σύντροφος +καί +Σαῦλος +δέ +λειτουργέω +αὐτός +ὁ +κύριος +καί +νηστεύω +λέγω +ὁ +πνεῦμα +ὁ +ἅγιος +δή +ἀφορίζω +ἐγώ +ὁ +Βαρναβᾶς +καί +Σαῦλος +εἰς +ὁ +ἔργον +ὅς +προσκαλέω +αὐτός +τότε +νηστεύω +καί +προσεύχομαι +καί +ἐπιτίθημι +ὁ +χείρ +αὐτός +ἀπολύω +μέν +οὖν +αὐτός +ἐκπέμπω +ὑπό +ὁ +ἅγιος +πνεῦμα +κατέρχομαι +εἰς +Σελεύκεια +τέ +ἐκεῖθεν +ἀποπλέω +εἰς +Κύπρος +καί +γίνομαι +ἐν +Σαλαμίς +καταγγέλλω +ὁ +λόγος +ὁ +θεός +ἐν +ὁ +συναγωγή +ὁ +Ἰουδαῖος +δέ +ἔχω +καί +Ἰωάννης +ὑπηρέτης +δέ +διέρχομαι +ὅλος +ὁ +νῆσος +ἄχρι +Πάφος +εὑρίσκω +ἀνήρ +τὶς +μάγος +ψευδοπροφήτης +Ἰουδαῖος +ὅς +ὄνομα +Βαριησοῦς +ὅς +εἰμί +σύν +ὁ +ἀνθύπατος +Σέργιος +Παῦλος +ἀνήρ +συνετός +οὗτος +προσκαλέω +Βαρναβᾶς +καί +Σαῦλος +ἐπιζητέω +ἀκούω +ὁ +λόγος +ὁ +θεός +δέ +ἀνθίστημι +αὐτός +Ἐλύμας +ὁ +μάγος +γάρ +οὕτω +μεθερμηνεύω +ὁ +ὄνομα +αὐτός +ζητέω +διαστρέφω +ὁ +ἀνθύπατος +ἀπό +ὁ +πίστις +δέ +Σαῦλος +ὁ +καί +Παῦλος +πίμπλημι +πνεῦμα +ἅγιος +ἀτενίζω +εἰς +αὐτός +λέγω +ὦ +πλήρης +πᾶς +δόλος +καί +πᾶς +ῥᾳδιουργία +υἱός +διάβολος +ἐχθρός +πᾶς +δικαιοσύνη +οὐ +παύω +διαστρέφω +ὁ +ὁδός +ὁ +κύριος +ὁ +εὐθύς +καί +νῦν +ὁράω +χείρ +κύριος +ἐπί +σύ +καί +εἰμί +τυφλός +μή +βλέπω +ὁ +ἥλιος +ἄχρι +καιρός +δέ +παραχρῆμα +πίπτω +ἐπί +αὐτός +ἀχλύς +καί +σκότος +καί +περιάγω +ζητέω +χειραγωγός +τότε +ὁ +ἀνθύπατος +ὁράω +ὁ +γίνομαι +πιστεύω +ἐκπλήσσω +ἐπί +ὁ +διδαχή +ὁ +κύριος +δέ +ἀνάγω +ἀπό +ὁ +Πάφος +ὁ +περί +Παῦλος +ἔρχομαι +εἰς +Πέργη +ὁ +Παμφυλία +δέ +Ἰωάννης +ἀποχωρέω +ἀπό +αὐτός +ὑποστρέφω +εἰς +Ἱεροσόλυμα +δέ +αὐτός +διέρχομαι +ἀπό +ὁ +Πέργη +παραγίνομαι +εἰς +Ἀντιόχεια +ὁ +Πισίδιος +καί +ἔρχομαι +εἰς +ὁ +συναγωγή +ὁ +ἡμέρα +ὁ +σάββατον +καθίζω +δέ +μετά +ὁ +ἀνάγνωσις +ὁ +νόμος +καί +ὁ +προφήτης +ἀποστέλλω +ὁ +ἀρχισυνάγωγος +πρός +αὐτός +λέγω +ἀνήρ +ἀδελφός +εἰ +εἰμί +ἐν +σύ +τὶς +λόγος +παράκλησις +πρός +ὁ +λαός +λέγω +δέ +Παῦλος +ἀνίστημι +καί +κατασείω +ὁ +χείρ +λέγω +ἀνήρ +Ἰσραηλίτης +καί +ὁ +φοβέω +ὁ +θεός +ἀκούω +ὁ +θεός +ὁ +λαός +οὗτος +Ἰσραήλ +ἐκλέγω +ὁ +πατήρ +ἐγώ +καί +ὁ +λαός +ὑψόω +ἐν +ὁ +παροικία +ἐν +γῆ +Αἴγυπτος +καί +μετά +βραχίων +ὑψηλός +ἐξάγω +αὐτός +ἐκ +αὐτός +καί +ὡς +τεσσερακονταετής +χρόνος +τροποφορέω +αὐτός +ἐν +ὁ +ἔρημος +καί +καθαιρέω +ἔθνος +ἑπτά +ἐν +γῆ +Χανάαν +κατακληρονομέω +ὁ +γῆ +αὐτός +ὡς +ἔτος +τετρακόσιοι +καί +πεντήκοντα +καί +μετά +οὗτος +δίδωμι +κριτής +ἕως +Σαμουήλ +προφήτης +κἀκεῖθεν +αἰτέω +βασιλεύς +καί +δίδωμι +αὐτός +ὁ +θεός +ὁ +Σαούλ +υἱός +Κίς +ἀνήρ +ἐκ +φυλή +Βενιαμίν +ἔτος +τεσσεράκοντα +καί +μεθίστημι +αὐτός +ἐγείρω +ὁ +Δαυίδ +αὐτός +εἰς +βασιλεύς +ὅς +καί +λέγω +μαρτυρέω +εὑρίσκω +Δαυίδ +ὁ +ὁ +Ἰεσσαί +ἀνήρ +κατά +ὁ +καρδία +ἐγώ +ὅς +ποιέω +πᾶς +ὁ +θέλημα +ἐγώ +ὁ +θεός +ἀπό +οὗτος +ὁ +σπέρμα +κατά +ἐπαγγελία +ἄγω +ὁ +Ἰσραήλ +σωτήρ +Ἰησοῦς +προκηρύσσω +Ἰωάννης +πρό +πρόσωπον +ὁ +εἴσοδος +αὐτός +βάπτισμα +μετάνοια +πᾶς +ὁ +λαός +Ἰσραήλ +δέ +ὡς +πληρόω +Ἰωάννης +ὁ +δρόμος +λέγω +τίς +ἐγώ +εἰμί +ὑπονοέω +οὐ +εἰμί +ἐγώ +ἀλλά +ὁράω +ἔρχομαι +μετά +ἐγώ +ὅς +οὐ +εἰμί +ἄξιος +ὁ +ὑπόδημα +ὁ +πούς +λύω +ἀνήρ +ἀδελφός +υἱός +γένος +Ἀβραάμ +καί +ὁ +ἐν +σύ +φοβέω +ὁ +θεός +ἐγώ +ὁ +λόγος +ὁ +σωτηρία +οὗτος +ἐξαποστέλλω +γάρ +ὁ +κατοικέω +ἐν +Ἱεροσόλυμα +καί +ὁ +ἄρχων +αὐτός +οὗτος +ἀγνοέω +καί +ὁ +φωνή +ὁ +προφήτης +ὁ +κατά +πᾶς +σάββατον +ἀναγινώσκω +κρίνω +πληρόω +καί +μηδείς +αἰτία +θάνατος +εὑρίσκω +αἰτέω +Πιλᾶτος +ἀναιρέω +αὐτός +δέ +ὡς +τελέω +πᾶς +ὁ +περί +αὐτός +γράφω +καθαιρέω +ἀπό +ὁ +ξύλον +τίθημι +εἰς +μνημεῖον +δέ +ὁ +θεός +ἐγείρω +αὐτός +ἐκ +νεκρός +ὅς +ὁράω +ἐπί +ἡμέρα +πολύς +ὁ +συναναβαίνω +αὐτός +ἀπό +ὁ +Γαλιλαία +εἰς +Ἱεροσόλυμα +ὅστις +νῦν +εἰμί +μάρτυς +αὐτός +πρός +ὁ +λαός +καί +ἐγώ +σύ +εὐαγγελίζω +ὁ +πρός +ὁ +πατήρ +γίνομαι +ἐπαγγελία +ὅτι +οὗτος +ὁ +θεός +ἐκπληρόω +ὁ +τέκνον +ἐγώ +ἀνίστημι +Ἰησοῦς +ὡς +καί +ἐν +ὁ +ψαλμός +ὁ +δεύτερος +γράφω +υἱός +ἐγώ +εἰμί +σύ +ἐγώ +σήμερον +γεννάω +σύ +δέ +ὅτι +ἀνίστημι +αὐτός +ἐκ +νεκρός +μηκέτι +μέλλω +ὑποστρέφω +εἰς +διαφθορά +οὕτω +εἶπον +ὅτι +δίδωμι +σύ +ὁ +ὅσιος +Δαυίδ +ὁ +πιστός +διότι +καί +ἐν +ἕτερος +λέγω +οὐ +δίδωμι +ὁ +ὅσιος +σύ +ὁράω +διαφθορά +γάρ +μέν +Δαυίδ +ἴδιος +γενεά +ὑπηρετέω +ὁ +ὁ +θεός +βουλή +κοιμάομαι +καί +προστίθημι +πρός +ὁ +πατήρ +αὐτός +καί +ὁράω +διαφθορά +δέ +ὅς +ὁ +θεός +ἐγείρω +οὐ +ὁράω +διαφθορά +οὖν +γνωστός +εἰμί +σύ +ἀνήρ +ἀδελφός +ὅτι +διά +οὗτος +σύ +ἄφεσις +ἁμαρτία +καταγγέλλω +καί +ἀπό +πᾶς +ὅς +οὐ +δύναμαι +ἐν +νόμος +Μωϋσῆς +δικαιόω +ἐν +οὗτος +πᾶς +ὁ +πιστεύω +δικαιόω +οὖν +βλέπω +μή +ἐπέρχομαι +ὁ +εἶπον +ἐν +ὁ +προφήτης +ὁράω +ὁ +καταφρονητής +καί +θαυμάζω +καί +ἀφανίζω +ὅτι +ἔργον +ἐργάζομαι +ἐγώ +ἐν +ὁ +ἡμέρα +σύ +ἔργον +ὅς +οὐ +μή +πιστεύω +ἐάν +τὶς +ἐκδιηγέομαι +σύ +δέ +ἔξειμι +αὐτός +παρακαλέω +εἰς +ὁ +μεταξύ +σάββατον +λαλέω +αὐτός +ὁ +ῥῆμα +οὗτος +δέ +λύω +ὁ +συναγωγή +ἀκολουθέω +πολύς +ὁ +Ἰουδαῖος +καί +ὁ +σέβω +προσήλυτος +ὁ +Παῦλος +καί +ὁ +Βαρναβᾶς +ὅστις +προσλαλέω +αὐτός +πείθω +αὐτός +προσμένω +ὁ +χάρις +ὁ +θεός +δέ +ὁ +ἔρχομαι +σάββατον +σχεδόν +πᾶς +ὁ +πόλις +συνάγω +ἀκούω +ὁ +λόγος +ὁ +θεός +δέ +ὁ +Ἰουδαῖος +ὁράω +ὁ +ὄχλος +πίμπλημι +ζῆλος +καί +ἀντιλέγω +ὁ +ὑπό +Παῦλος +λαλέω +βλασφημέω +τέ +παρρησιάζομαι +ὁ +Παῦλος +καί +ὁ +Βαρναβᾶς +λέγω +εἰμί +ἀναγκαῖος +σύ +πρῶτος +λαλέω +ὁ +λόγος +ὁ +θεός +ἐπειδή +ἀπωθέω +αὐτός +καί +οὐ +κρίνω +ἑαυτοῦ +ἄξιος +ὁ +αἰώνιος +ζωή +ὁράω +στρέφω +εἰς +ὁ +ἔθνος +γάρ +οὕτω +ἐντέλλομαι +ἐγώ +ὁ +κύριος +τίθημι +σύ +εἰς +φῶς +ἔθνος +ὁ +εἰμί +σύ +εἰς +σωτηρία +ἕως +ἔσχατος +ὁ +γῆ +δέ +ἀκούω +ὁ +ἔθνος +χαίρω +καί +δοξάζω +ὁ +λόγος +ὁ +κύριος +καί +πιστεύω +ὅσος +εἰμί +τάσσω +εἰς +ζωή +αἰώνιος +δέ +διαφέρω +ὁ +λόγος +ὁ +κύριος +διά +ὅλος +ὁ +χώρα +δέ +ὁ +Ἰουδαῖος +παροτρύνω +ὁ +σέβω +γυνή +ὁ +εὐσχήμων +καί +ὁ +πρῶτος +ὁ +πόλις +καί +ἐπεγείρω +διωγμός +ἐπί +ὁ +Παῦλος +καί +Βαρναβᾶς +καί +ἐκβάλλω +αὐτός +ἀπό +ὁ +ὅριον +αὐτός +δέ +ὁ +ἐκτινάσσω +ὁ +κονιορτός +ὁ +πούς +ἐπί +αὐτός +ἔρχομαι +εἰς +Ἰκόνιον +τέ +ὁ +μαθητής +πληρόω +χαρά +καί +πνεῦμα +ἅγιος +δέ +γίνομαι +ἐν +Ἰκόνιον +κατά +ὁ +αὐτός +εἰσέρχομαι +αὐτός +εἰς +ὁ +συναγωγή +ὁ +Ἰουδαῖος +καί +λαλέω +οὕτω +ὥστε +πιστεύω +τέ +Ἰουδαῖος +καί +Ἕλλην +πολύς +πλῆθος +δέ +ὁ +ἀπειθέω +Ἰουδαῖος +ἐπεγείρω +καί +κακόω +ὁ +ψυχή +ὁ +ἔθνος +κατά +ὁ +ἀδελφός +οὖν +μέν +ἱκανός +χρόνος +διατρίβω +παρρησιάζομαι +ἐπί +ὁ +κύριος +ὁ +μαρτυρέω +ἐπί +ὁ +λόγος +ὁ +χάρις +αὐτός +δίδωμι +σημεῖον +καί +τέρας +γίνομαι +διά +ὁ +χείρ +αὐτός +δέ +σχίζω +ὁ +πλῆθος +ὁ +πόλις +καί +μέν +ὁ +εἰμί +σύν +ὁ +Ἰουδαῖος +δέ +ὁ +σύν +ὁ +ἀπόστολος +δέ +ὡς +γίνομαι +ὁρμή +ὁ +τέ +ἔθνος +καί +Ἰουδαῖος +σύν +ὁ +ἄρχων +αὐτός +ὑβρίζω +καί +λιθοβολέω +αὐτός +συνοράω +καταφεύγω +εἰς +ὁ +πόλις +ὁ +Λυκαονία +Λύστρα +καί +Δέρβη +καί +ὁ +περίχωρος +κἀκεῖ +εὐαγγελίζω +εἰμί +καί +τὶς +ἀνήρ +ἀδύνατος +ὁ +πούς +ἐν +Λύστρα +κάθημαι +χωλός +ἐκ +κοιλία +μήτηρ +αὐτός +ὅς +οὐδέποτε +περιπατέω +οὗτος +ἀκούω +ὁ +Παῦλος +λαλέω +ὅς +ἀτενίζω +αὐτός +καί +ὁράω +ὅτι +ἔχω +πίστις +ὁ +σῴζω +λέγω +μέγας +φωνή +ἀνίστημι +ἐπί +ὁ +πούς +σύ +ὀρθός +καί +ἅλλομαι +καί +περιπατέω +τέ +ὁ +ὄχλος +ὁράω +ὅς +ποιέω +Παῦλος +ἐπαίρω +ὁ +φωνή +αὐτός +Λυκαονιστί +λέγω +ὁ +θεός +ὁμοιόω +ἄνθρωπος +καταβαίνω +πρός +ἐγώ +τέ +καλέω +ὁ +Βαρναβᾶς +Ζεύς +δέ +ὁ +Παῦλος +Ἑρμῆς +ἐπειδή +αὐτός +εἰμί +ὁ +ἡγέομαι +ὁ +λόγος +τέ +ὁ +ἱερεύς +ὁ +Ζεύς +ὁ +εἰμί +πρό +ὁ +πόλις +ταῦρος +καί +στέμμα +ἐπί +ὁ +πυλών +φέρω +σύν +ὁ +ὄχλος +θέλω +θύω +δέ +ἀκούω +ὁ +ἀπόστολος +Βαρναβᾶς +καί +Παῦλος +διαρρήγνυμι +ὁ +ἱμάτιον +ἑαυτοῦ +ἐκπαδάω +εἰς +ὁ +ὄχλος +κράζω +καί +λέγω +ἀνήρ +τίς +οὗτος +ποιέω +καί +ἐγώ +ὁμοιοπαθής +σύ +ἄνθρωπος +εἰμί +εὐαγγελίζω +σύ +ἀπό +οὗτος +ὁ +μάταιος +ἐπιστρέφω +ἐπί +θεός +ζάω +ὅς +ποιέω +ὁ +οὐρανός +καί +ὁ +γῆ +καί +ὁ +θάλασσα +καί +πᾶς +ὁ +ἐν +αὐτός +ὅς +ἐν +ὁ +παροίχομαι +γενεά +ἐάω +πᾶς +ὁ +ἔθνος +πορεύομαι +ὁ +ὁδός +αὐτός +καίτοι +οὐ +ἀμάρτυρος +αὐτός +ἀφίημι +ἀγαθοεργέω +οὐρανόθεν +σύ +ὑετός +δίδωμι +καί +καιρός +καρποφόρος +ἐμπίπλημι +τροφή +καί +εὐφροσύνη +ὁ +καρδία +σύ +καί +οὗτος +λέγω +μόλις +καταπαύω +ὁ +ὄχλος +ὁ +μή +θύω +αὐτός +δέ +ἐπέρχομαι +ἀπό +Ἀντιόχεια +καί +Ἰκόνιον +Ἰουδαῖος +καί +πείθω +ὁ +ὄχλος +καί +λιθάζω +ὁ +Παῦλος +σύρω +ἔξω +ὁ +πόλις +νομίζω +αὐτός +θνῄσκω +δέ +κυκλόω +ὁ +μαθητής +αὐτός +ἀνίστημι +εἰσέρχομαι +εἰς +ὁ +πόλις +καί +ὁ +ἐπαύριον +ἐξέρχομαι +σύν +ὁ +Βαρναβᾶς +εἰς +Δέρβη +τέ +εὐαγγελίζω +ὁ +πόλις +ἐκεῖνος +καί +μαθητεύω +ἱκανός +ὑποστρέφω +εἰς +ὁ +Λύστρα +καί +εἰς +Ἰκόνιον +καί +εἰς +Ἀντιόχεια +ἐπιστηρίζω +ὁ +ψυχή +ὁ +μαθητής +παρακαλέω +ἐμμένω +ὁ +πίστις +καί +ὅτι +δεῖ +διά +πολύς +θλῖψις +ἐγώ +εἰσέρχομαι +εἰς +ὁ +βασιλεία +ὁ +θεός +δέ +χειροτονέω +αὐτός +κατά +ἐκκλησία +πρεσβύτερος +προσεύχομαι +μετά +νηστεία +παρατίθημι +αὐτός +ὁ +κύριος +εἰς +ὅς +πιστεύω +καί +διέρχομαι +ὁ +Πισιδία +ἔρχομαι +εἰς +ὁ +Παμφυλία +καί +λαλέω +ἐν +Πέργη +ὁ +λόγος +καταβαίνω +εἰς +Ἀττάλεια +κἀκεῖθεν +ἀποπλέω +εἰς +Ἀντιόχεια +ὅθεν +εἰμί +παραδίδωμι +ὁ +χάρις +ὁ +θεός +εἰς +ὁ +ἔργον +ὅς +πληρόω +δέ +παραγίνομαι +καί +συνάγω +ὁ +ἐκκλησία +ἀναγγέλλω +ὅσος +ποιέω +ὁ +θεός +μετά +αὐτός +καί +ὅτι +ἀνοίγω +ὁ +ἔθνος +θύρα +πίστις +δέ +διατρίβω +χρόνος +οὐ +ὀλίγος +σύν +ὁ +μαθητής +καί +τὶς +κατέρχομαι +ἀπό +ὁ +Ἰουδαία +διδάσκω +ὁ +ἀδελφός +ὅτι +ἐάν +μή +περιτέμνω +ὁ +ἔθος +ὁ +Μωϋσῆς +οὐ +δύναμαι +σῴζω +δέ +γίνομαι +στάσις +καί +ζήτησις +οὐ +ὀλίγος +ὁ +Παῦλος +καί +ὁ +Βαρναβᾶς +πρός +αὐτός +τάσσω +ἀναβαίνω +Παῦλος +καί +Βαρναβᾶς +καί +τὶς +ἄλλος +ἐκ +αὐτός +πρός +ὁ +ἀπόστολος +καί +πρεσβύτερος +εἰς +Ἱεροσόλυμα +περί +ὁ +ζήτημα +οὗτος +μέν +οὖν +ὁ +προπέμπω +ὑπό +ὁ +ἐκκλησία +διέρχομαι +ὁ +τέ +Φοινίκη +καί +Σαμάρεια +ἐκδιηγέομαι +ὁ +ἐπιστροφή +ὁ +ἔθνος +καί +ποιέω +χαρά +μέγας +πᾶς +ὁ +ἀδελφός +δέ +παραγίνομαι +εἰς +Ἱεροσόλυμα +παραδέχομαι +ἀπό +ὁ +ἐκκλησία +καί +ὁ +ἀπόστολος +καί +ὁ +πρεσβύτερος +τέ +ἀναγγέλλω +ὅσος +ὁ +θεός +ποιέω +μετά +αὐτός +δέ +ἐξανίστημι +τὶς +ὁ +ἀπό +ὁ +αἵρεσις +ὁ +Φαρισαῖος +πιστεύω +λέγω +ὅτι +δεῖ +περιτέμνω +αὐτός +τέ +παραγγέλλω +τηρέω +ὁ +νόμος +Μωϋσῆς +τέ +συνάγω +ὁ +ἀπόστολος +καί +ὁ +πρεσβύτερος +ὁράω +περί +ὁ +λόγος +οὗτος +δέ +πολύς +ζήτησις +γίνομαι +ἀνίστημι +Πέτρος +λέγω +πρός +αὐτός +ἀνήρ +ἀδελφός +σύ +ἐπίσταμαι +ὅτι +ἀπό +ἡμέρα +ἀρχαῖος +ἐν +σύ +ἐκλέγω +ὁ +θεός +διά +ὁ +στόμα +ἐγώ +ἀκούω +ὁ +ἔθνος +ὁ +λόγος +ὁ +εὐαγγέλιον +καί +πιστεύω +καί +ὁ +καρδιογνώστης +θεός +μαρτυρέω +αὐτός +δίδωμι +ὁ +πνεῦμα +ὁ +ἅγιος +καθώς +καί +ἐγώ +καί +οὐδείς +διακρίνω +μεταξύ +τέ +ἐγώ +καί +αὐτός +ὁ +πίστις +καθαρίζω +ὁ +καρδία +αὐτός +οὖν +νῦν +τίς +πειράζω +ὁ +θεός +ἐπιτίθημι +ζυγός +ἐπί +ὁ +τράχηλος +ὁ +μαθητής +ὅς +βαστάζω +οὔτε +ὁ +πατήρ +ἐγώ +οὔτε +ἐγώ +ἰσχύω +ἀλλά +πιστεύω +διά +ὁ +χάρις +ὁ +κύριος +Ἰησοῦς +σῴζω +κατά +ὅς +τρόπος +κἀκεῖνος +δέ +σιγάω +πᾶς +ὁ +πλῆθος +καί +ἀκούω +Βαρναβᾶς +καί +Παῦλος +ἐξηγέομαι +σημεῖον +καί +τέρας +ὅσος +ποιέω +ὁ +θεός +ἐν +ὁ +ἔθνος +διά +αὐτός +δέ +μετά +ὁ +σιγάω +αὐτός +ἀποκρίνομαι +Ἰάκωβος +λέγω +ἀνήρ +ἀδελφός +ἀκούω +ἐγώ +Συμεών +ἐξηγέομαι +καθώς +πρῶτος +ὁ +θεός +ἐπισκέπτομαι +λαμβάνω +ἐκ +ἔθνος +λαός +ὁ +ὄνομα +αὐτός +καί +οὗτος +συμφωνέω +ὁ +λόγος +ὁ +προφήτης +καθώς +γράφω +μετά +οὗτος +ἀναστρέφω +καί +ἀνοικοδομέω +ὁ +σκηνή +Δαυίδ +ὁ +πίπτω +καί +ὁ +καταστρέφω +αὐτός +ἀνοικοδομέω +καί +ἀνορθόω +αὐτός +ὅπως +ἄν +ἐκζητέω +ὁ +κατάλοιπος +ὁ +ἄνθρωπος +ὁ +κύριος +καί +πᾶς +ὁ +ἔθνος +ἐπί +ὅς +ἐπικαλέω +ὁ +ὄνομα +ἐγώ +ἐπί +αὐτός +λέγω +κύριος +ποιέω +οὗτος +γνωστός +ἀπό +αἰών +διό +ἐγώ +κρίνω +μή +παρενοχλέω +ὁ +ἀπό +ὁ +ἔθνος +ἐπιστρέφω +ἐπί +ὁ +θεός +ἀλλά +ἐπιστέλλω +αὐτός +ὁ +ἀπέχω +ὁ +ἀλίσγημα +ὁ +εἴδωλον +καί +ὁ +πορνεία +καί +πνικτός +καί +ὁ +αἷμα +γάρ +Μωϋσῆς +ἐκ +γενεά +ἀρχαῖος +κατά +πόλις +ὁ +κηρύσσω +αὐτός +ἔχω +ἐν +ὁ +συναγωγή +κατά +πᾶς +σάββατον +ἀναγινώσκω +τότε +δοκέω +ὁ +ἀπόστολος +καί +ὁ +πρεσβύτερος +σύν +ὅλος +ὁ +ἐκκλησία +ἐκλέγω +ἀνήρ +ἐκ +αὐτός +πέμπω +εἰς +Ἀντιόχεια +σύν +ὁ +Παῦλος +καί +Βαρναβᾶς +Ἰούδας +ὁ +καλέω +Βαρσαββᾶς +καί +Σιλᾶς +ἀνήρ +ἡγέομαι +ἐν +ὁ +ἀδελφός +γράφω +διά +χείρ +αὐτός +ὁ +ἀπόστολος +καί +ὁ +πρεσβύτερος +ἀδελφός +ὁ +κατά +ὁ +Ἀντιόχεια +καί +Συρία +καί +Κιλικία +ἀδελφός +ὁ +ἐκ +ἔθνος +χαίρω +ἐπειδή +ἀκούω +ὅτι +τὶς +ἐκ +ἐγώ +ταράσσω +σύ +λόγος +ἀνασκευάζω +ὁ +ψυχή +σύ +ὅς +οὐ +διαστέλλω +δοκέω +ἐγώ +γίνομαι +ὁμοθυμαδόν +ἐκλέγω +ἀνήρ +πέμπω +πρός +σύ +σύν +ὁ +ἀγαπητός +ἐγώ +Βαρναβᾶς +καί +Παῦλος +ἄνθρωπος +παραδίδωμι +ὁ +ψυχή +αὐτός +ὑπέρ +ὁ +ὄνομα +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +οὖν +ἀποστέλλω +Ἰούδας +καί +Σιλᾶς +καί +αὐτός +διά +λόγος +ἀπαγγέλλω +ὁ +αὐτός +γάρ +δοκέω +ὁ +πνεῦμα +ὁ +ἅγιος +καί +ἐγώ +μηδείς +πολύς +βάρος +ἐπιτίθημι +σύ +πλήν +οὗτος +ὁ +ἐπάναγκες +ἀπέχω +εἰδωλόθυτος +καί +αἷμα +καί +πνικτός +καί +πορνεία +ἐκ +ὅς +διατηρέω +ἑαυτοῦ +εὖ +πράσσω +ῥώννυμι +μέν +οὖν +ὁ +ἀπολύω +κατέρχομαι +εἰς +Ἀντιόχεια +καί +συνάγω +ὁ +πλῆθος +ἐπιδίδωμι +ὁ +ἐπιστολή +δέ +ἀναγινώσκω +χαίρω +ἐπί +ὁ +παράκλησις +τέ +Ἰούδας +καί +Σιλᾶς +καί +αὐτός +προφήτης +εἰμί +διά +λόγος +πολύς +παρακαλέω +ὁ +ἀδελφός +καί +ἐπιστηρίζω +δέ +ποιέω +χρόνος +ἀπολύω +μετά +εἰρήνη +ἀπό +ὁ +ἀδελφός +πρός +ὁ +ἀποστέλλω +αὐτός +δέ +Παῦλος +καί +Βαρναβᾶς +διατρίβω +ἐν +Ἀντιόχεια +διδάσκω +καί +εὐαγγελίζω +μετά +καί +ἕτερος +πολύς +ὁ +λόγος +ὁ +κύριος +δέ +μετά +τὶς +ἡμέρα +λέγω +πρός +Βαρναβᾶς +Παῦλος +δή +ἐπιστρέφω +ἐπισκέπτομαι +ὁ +ἀδελφός +κατά +πόλις +πᾶς +ἐν +ὅς +καταγγέλλω +ὁ +λόγος +ὁ +κύριος +πῶς +ἔχω +δέ +Βαρναβᾶς +βούλομαι +συμπαραλαμβάνω +καί +ὁ +Ἰωάννης +ὁ +καλέω +Μᾶρκος +δέ +Παῦλος +ἀξιόω +ὁ +ἀφίστημι +ἀπό +αὐτός +ἀπό +Παμφυλία +καί +μή +συνέρχομαι +αὐτός +εἰς +ὁ +ἔργον +μή +συμπαραλαμβάνω +οὗτος +δέ +γίνομαι +παροξυσμός +ὥστε +ἀποχωρίζω +αὐτός +ἀπό +ἀλλήλων +τέ +ὁ +Βαρναβᾶς +παραλαμβάνω +ὁ +Μᾶρκος +ἐκπλέω +εἰς +Κύπρος +δέ +Παῦλος +ἐπιλέγω +Σιλᾶς +ἐξέρχομαι +παραδίδωμι +ὁ +χάρις +ὁ +κύριος +ὑπό +ὁ +ἀδελφός +δέ +διέρχομαι +ὁ +Συρία +καί +Κιλικία +ἐπιστηρίζω +ὁ +ἐκκλησία +δέ +καταντάω +καί +εἰς +Δέρβη +καί +εἰς +Λύστρα +καί +ὁράω +εἰμί +ἐκεῖ +μαθητής +τὶς +ὄνομα +Τιμόθεος +υἱός +γυνή +Ἰουδαῖος +πιστός +δέ +πατήρ +Ἕλλην +ὅς +μαρτυρέω +ὑπό +ὁ +ἐν +Λύστρα +καί +Ἰκόνιον +ἀδελφός +θέλω +ὁ +Παῦλος +οὗτος +σύν +αὐτός +ἐξέρχομαι +καί +λαμβάνω +περιτέμνω +αὐτός +διά +ὁ +Ἰουδαῖος +ὁ +εἰμί +ἐν +ὁ +τόπος +ἐκεῖνος +γάρ +οἶδα +ἅπας +ὅτι +Ἕλλην +ὁ +πατήρ +αὐτός +ὑπάρχω +δέ +ὡς +διαπορεύομαι +ὁ +πόλις +παραδίδωμι +αὐτός +φυλάσσω +ὁ +δόγμα +ὁ +κρίνω +ὑπό +ὁ +ἀπόστολος +καί +πρεσβύτερος +ὁ +ἐν +Ἱεροσόλυμα +μέν +οὖν +ὁ +ἐκκλησία +στερεόω +ὁ +πίστις +καί +περισσεύω +ὁ +ἀριθμός +κατά +ἡμέρα +δέ +διέρχομαι +ὁ +Φρυγία +καί +Γαλατικός +χώρα +κωλύω +ὑπό +ὁ +ἅγιος +πνεῦμα +λαλέω +ὁ +λόγος +ἐν +ὁ +Ἀσία +δέ +ἔρχομαι +κατά +ὁ +Μυσία +πειράζω +εἰς +ὁ +Βιθυνία +πορεύομαι +καί +οὐ +ἐάω +αὐτός +ὁ +πνεῦμα +Ἰησοῦς +δέ +παρέρχομαι +ὁ +Μυσία +καταβαίνω +εἰς +Τρῳάς +καί +ὅραμα +διά +νύξ +ὁ +Παῦλος +ὁράω +ἀνήρ +Μακεδών +τὶς +εἰμί +ἵστημι +καί +παρακαλέω +αὐτός +καί +λέγω +διαβαίνω +εἰς +Μακεδονία +βοηθέω +ἐγώ +δέ +ὡς +ὁ +ὅραμα +ὁράω +εὐθέως +ζητέω +ἐξέρχομαι +εἰς +Μακεδονία +συμβιβάζω +ὅτι +προσκαλέω +ὁ +θεός +ἐγώ +εὐαγγελίζω +αὐτός +δέ +ἀνάγω +ἀπό +Τρῳάς +εὐθυδρομέω +εἰς +Σαμοθρᾴκη +δέ +ὁ +ἔπειμι +εἰς +νέος +πόλις +κἀκεῖθεν +εἰς +Φίλιπποι +ὅστις +εἰμί +πρῶτος +ὁ +μερίς +Μακεδονία +πόλις +κολωνία +δέ +εἰμί +διατρίβω +ἐν +οὗτος +ὁ +πόλις +ἡμέρα +τὶς +τέ +ὁ +ἡμέρα +ὁ +σάββατον +ἐξέρχομαι +ἔξω +ὁ +πύλη +παρά +ποταμός +οὗ +προσευχή +εἰμί +νομίζω +καί +καθίζω +λαλέω +ὁ +συνέρχομαι +γυνή +καί +τὶς +γυνή +ὄνομα +Λυδία +πορφυρόπωλις +πόλις +Θυάτειρα +σέβω +ὁ +θεός +ἀκούω +ὅς +ὁ +καρδία +ὁ +κύριος +διανοίγω +προσέχω +ὁ +λαλέω +ὑπό +Παῦλος +δέ +ὡς +βαπτίζω +καί +ὁ +οἶκος +αὐτός +παρακαλέω +λέγω +εἰ +κρίνω +ἐγώ +πιστός +ὁ +κύριος +εἰμί +εἰσέρχομαι +εἰς +ὁ +οἶκος +ἐγώ +μένω +καί +παραβιάζομαι +ἐγώ +δέ +γίνομαι +πορεύομαι +ἐγώ +εἰς +ὁ +προσευχή +παιδίσκη +τὶς +ἔχω +πνεῦμα +πύθων +ὑπαντάω +ἐγώ +ὅστις +ἐργασία +πολύς +παρέχω +ὁ +κύριος +αὐτός +μαντεύομαι +οὗτος +κατακολουθέω +ὁ +Παῦλος +καί +ἐγώ +κράζω +λέγω +οὗτος +ὁ +ἄνθρωπος +δοῦλος (II) +ὁ +θεός +ὁ +ὕψιστος +εἰμί +ὅστις +καταγγέλλω +σύ +ὁδός +σωτηρία +δέ +οὗτος +ποιέω +ἐπί +πολύς +ἡμέρα +δέ +Παῦλος +διαπονέομαι +καί +ἐπιστρέφω +ὁ +πνεῦμα +λέγω +παραγγέλλω +σύ +ἐν +ὄνομα +Ἰησοῦς +Χριστός +ἐξέρχομαι +ἀπό +αὐτός +καί +ἐξέρχομαι +αὐτός +ὁ +ὥρα +δέ +ὁ +κύριος +αὐτός +ὁράω +ὅτι +ἐξέρχομαι +ὁ +ἐλπίς +ὁ +ἐργασία +αὐτός +ἐπιλαμβάνομαι +ὁ +Παῦλος +καί +ὁ +Σιλᾶς +ἕλκω +εἰς +ὁ +ἀγορά +ἐπί +ὁ +ἄρχων +καί +προσάγω +αὐτός +ὁ +στρατηγός +λέγω +οὗτος +ὁ +ἄνθρωπος +ἐκταράσσω +ἐγώ +ὁ +πόλις +Ἰουδαῖος +ὑπάρχω +καί +καταγγέλλω +ἔθος +ὅς +παραδέχομαι +οὐδέ +ποιέω +οὐ +ἔξεστι(ν) +ἐγώ +Ῥωμαῖος +εἰμί +καί +συνεφίστημι +ὁ +ὄχλος +κατά +αὐτός +καί +ὁ +στρατηγός +περιρήγνυμι +αὐτός +ὁ +ἱμάτιον +κελεύω +ῥαβδίζω +δέ +ἐπιτίθημι +αὐτός +πολύς +πληγή +βάλλω +εἰς +φυλακή +παραγγέλλω +ὁ +δεσμοφύλαξ +ἀσφαλῶς +τηρέω +αὐτός +ὅς +παραγγελία +τοιοῦτος +λαμβάνω +βάλλω +αὐτός +εἰς +ὁ +ἐσώτερος +φυλακή +καί +ὁ +πούς +αὐτός +ἀσφαλίζω +εἰς +ὁ +ξύλον +δέ +κατά +ὁ +μεσονύκτιον +Παῦλος +καί +Σιλᾶς +προσεύχομαι +ὑμνέω +ὁ +θεός +δέ +ἐπακροάομαι +αὐτός +ὁ +δέσμιος +δέ +ἄφνω +σεισμός +μέγας +γίνομαι +ὥστε +σαλεύω +ὁ +θεμέλιος +ὁ +δεσμωτήριον +δέ +ἀνοίγω +παραχρῆμα +ὁ +θύρα +πᾶς +καί +πᾶς +ὁ +δεσμός +ἀνίημι +δέ +ὁ +δεσμοφύλαξ +ἔξυπνος +γίνομαι +καί +ὁράω +ἀνοίγω +ὁ +θύρα +ὁ +φυλακή +σπάω +ὁ +μάχαιρα +μέλλω +ἑαυτοῦ +ἀναιρέω +νομίζω +ἐκφεύγω +ὁ +δέσμιος +δέ +φωνέω +Παῦλος +μέγας +φωνή +λέγω +μηδείς +κακός +πράσσω +σεαυτοῦ +γάρ +ἅπας +εἰμί +ἐνθάδε +δέ +αἰτέω +φῶς +εἰσπηδάω +καί +ἔντρομος +γίνομαι +προσπίπτω +ὁ +Παῦλος +καί +Σιλᾶς +καί +προάγω +αὐτός +ἔξω +φημί +κύριος +τίς +ἐγώ +ποιέω +δεῖ +ἵνα +σῴζω +δέ +ὁ +λέγω +πιστεύω +ἐπί +ὁ +κύριος +Ἰησοῦς +καί +σῴζω +σύ +καί +ὁ +οἶκος +σύ +καί +λαλέω +αὐτός +ὁ +λόγος +ὁ +θεός +σύν +πᾶς +ὁ +ἐν +ὁ +οἰκία +αὐτός +καί +παραλαμβάνω +αὐτός +ἐν +ἐκεῖνος +ὁ +ὥρα +ὁ +νύξ +λούω +ἀπό +ὁ +πληγή +καί +βαπτίζω +αὐτός +καί +ὁ +αὐτός +ἅπας +παραχρῆμα +τέ +ἀνάγω +αὐτός +εἰς +ὁ +οἶκος +παρατίθημι +τράπεζα +καί +ἀγαλλιάω +πανοικεί +πιστεύω +ὁ +θεός +δέ +ἡμέρα +γίνομαι +ἀποστέλλω +ὁ +στρατηγός +ὁ +ῥαβδοῦχος +λέγω +ἀπολύω +ὁ +ἄνθρωπος +ἐκεῖνος +δέ +ἀπαγγέλλω +ὁ +δεσμοφύλαξ +ὁ +λόγος +οὗτος +πρός +ὁ +Παῦλος +ὅτι +ἀποστέλλω +ὁ +στρατηγός +ἵνα +ἀπολύω +οὖν +νῦν +ἐξέρχομαι +πορεύομαι +ἐν +εἰρήνη +δέ +ὁ +Παῦλος +φημί +πρός +αὐτός +δέρω +ἐγώ +δημόσιος +ἀκατάκριτος +ἄνθρωπος +Ῥωμαῖος +ὑπάρχω +βάλλω +εἰς +φυλακή +καί +νῦν +λάθρᾳ +ἐγώ +ἐκβάλλω +γάρ +οὐ +ἀλλά +ἔρχομαι +αὐτός +ἐγώ +ἐξάγω +δέ +ἀπαγγέλλω +ὁ +στρατηγός +ὁ +ῥαβδοῦχος +ὁ +ῥῆμα +οὗτος +δέ +φοβέω +ἀκούω +ὅτι +Ῥωμαῖος +εἰμί +καί +ἔρχομαι +παρακαλέω +αὐτός +καί +ἐξάγω +ἐρωτάω +ἀπέρχομαι +ἀπό +ὁ +πόλις +δέ +ἐξέρχομαι +ἀπό +ὁ +φυλακή +εἰσέρχομαι +πρός +ὁ +Λυδία +καί +ὁράω +παρακαλέω +ὁ +ἀδελφός +καί +ἐξέρχομαι +δέ +διοδεύω +ὁ +Ἀμφίπολις +καί +ὁ +Ἀπολλωνία +ἔρχομαι +εἰς +Θεσσαλονίκη +ὅπου +εἰμί +συναγωγή +ὁ +Ἰουδαῖος +δέ +κατά +ὁ +εἴωθα +ὁ +Παῦλος +εἰσέρχομαι +πρός +αὐτός +καί +ἐπί +σάββατον +τρεῖς +διαλέγομαι +αὐτός +ἀπό +ὁ +γραφή +διανοίγω +καί +παρατίθημι +ὅτι +δεῖ +ὁ +Χριστός +πάσχω +καί +ἀνίστημι +ἐκ +νεκρός +καί +ὅτι +οὗτος +εἰμί +ὁ +Χριστός +ὁ +Ἰησοῦς +ὅς +ἐγώ +καταγγέλλω +σύ +καί +τὶς +ἐκ +αὐτός +πείθω +καί +προσκληρόω +ὁ +Παῦλος +καί +ὁ +Σιλᾶς +τέ +ὁ +σέβω +Ἕλλην +πλῆθος +πολύς +τέ +γυνή +ὁ +πρῶτος +οὐ +ὀλίγος +δέ +ὁ +Ἰουδαῖος +ζηλόω +καί +προσλαμβάνω +ὁ +ἀγοραῖος +ἀνήρ +τὶς +πονηρός +καί +ὀχλοποιέω +θορυβέω +ὁ +πόλις +καί +ἐφίστημι +ὁ +οἰκία +Ἰάσων +ζητέω +αὐτός +προάγω +εἰς +ὁ +δῆμος +δέ +μή +εὑρίσκω +αὐτός +σύρω +Ἰάσων +καί +τὶς +ἀδελφός +ἐπί +ὁ +πολιτάρχης +βοάω +ὅτι +ὁ +ὁ +οἰκουμένη +ἀναστατόω +οὗτος +καί +ἐνθάδε +πάρειμι +ὅς +ὑποδέχομαι +Ἰάσων +καί +οὗτος +πᾶς +ἀπέναντι +ὁ +δόγμα +Καῖσαρ +πράσσω +βασιλεύς +ἕτερος +εἰμί +Ἰησοῦς +λέγω +δέ +ταράσσω +ὁ +ὄχλος +καί +ὁ +πολιτάρχης +ἀκούω +οὗτος +καί +λαμβάνω +ὁ +ἱκανός +παρά +ὁ +Ἰάσων +καί +ὁ +λοιπός +ἀπολύω +αὐτός +δέ +ὁ +ἀδελφός +εὐθέως +διά +νύξ +ἐκπέμπω +τέ +ὁ +Παῦλος +καί +ὁ +Σιλᾶς +εἰς +Βέροια +ὅστις +παραγίνομαι +εἰς +ὁ +συναγωγή +ὁ +Ἰουδαῖος +ἄπειμι (II) +δέ +οὗτος +εἰμί +εὐγενής +ὁ +ἐν +Θεσσαλονίκη +ὅστις +δέχομαι +ὁ +λόγος +μετά +πᾶς +προθυμία +ὁ +κατά +ἡμέρα +ἀνακρίνω +ὁ +γραφή +εἰ +ἔχω +οὗτος +οὕτω +μέν +οὖν +πολύς +ἐκ +αὐτός +πιστεύω +καί +ὁ +Ἑλληνίς +γυνή +ὁ +εὐσχήμων +καί +ἀνήρ +οὐ +ὀλίγος +δέ +ὡς +γινώσκω +ὁ +ἀπό +ὁ +Θεσσαλονίκη +Ἰουδαῖος +ὅτι +καί +ἐν +ὁ +Βέροια +καταγγέλλω +ὑπό +ὁ +Παῦλος +ὁ +λόγος +ὁ +θεός +ἔρχομαι +κἀκεῖ +σαλεύω +καί +ταράσσω +ὁ +ὄχλος +δέ +εὐθέως +τότε +ὁ +Παῦλος +ἐξαποστέλλω +ὁ +ἀδελφός +πορεύομαι +ἕως +ἐπί +ὁ +θάλασσα +τέ +ὑπομένω +τέ +ὁ +Σιλᾶς +καί +ὁ +Τιμόθεος +ἐκεῖ +δέ +ὁ +καθίστημι +ὁ +Παῦλος +ἄγω +ἕως +Ἀθῆναι +καί +λαμβάνω +ἐντολή +πρός +ὁ +Σιλᾶς +καί +ὁ +Τιμόθεος +ἵνα +ὡς +ταχύς +ἔρχομαι +πρός +αὐτός +ἔξειμι +δέ +ἐν +ὁ +Ἀθῆναι +ἐκδέχομαι +αὐτός +ὁ +Παῦλος +παροξύνω +ὁ +πνεῦμα +αὐτός +ἐν +αὐτός +θεωρέω +κατείδωλος +εἰμί +ὁ +πόλις +οὖν +μέν +διαλέγομαι +ἐν +ὁ +συναγωγή +ὁ +Ἰουδαῖος +καί +ὁ +σέβω +καί +ἐν +ὁ +ἀγορά +κατά +πᾶς +ἡμέρα +πρός +ὁ +παρατυγχάνω +δέ +τὶς +καί +ὁ +Ἐπικούρειος +καί +Στοϊκός +φιλόσοφος +συμβάλλω +αὐτός +καί +τὶς +λέγω +ἄν +θέλω +ὁ +σπερμολόγος +οὗτος +τίς +λέγω +δέ +ὁ +δοκέω +ξένος +δαιμόνιον +καταγγελεύς +εἰμί +ὅτι +ὁ +Ἰησοῦς +καί +ὁ +ἀνάστασις +εὐαγγελίζω +δέ +ἐπιλαμβάνομαι +αὐτός +ἐπί +ὁ +Ἄρειος Πάγος +Ἄρειος Πάγος +ἄγω +λέγω +δύναμαι +γινώσκω +τίς +ὁ +καινός +οὗτος +ὁ +ὑπό +σύ +λαλέω +διδαχή +γάρ +ξενίζω +τὶς +εἰσφέρω +εἰς +ὁ +ἀκοή +ἐγώ +οὖν +βούλομαι +γινώσκω +τίς +εἰμί +θέλω +οὗτος +δέ +Ἀθηναῖος +πᾶς +καί +ὁ +ἐπιδημέω +ξένος +εἰς +οὐδείς +ἕτερος +εὐκαιρέω +ἤ +λέγω +τὶς +ἤ +ἀκούω +τὶς +καινός +δέ +ἵστημι +Παῦλος +ἐν +μέσος +ὁ +Ἄρειος Πάγος +Ἄρειος Πάγος +φημί +ἀνήρ +Ἀθηναῖος +κατά +πᾶς +ὡς +δεισιδαίμων +σύ +θεωρέω +γάρ +διέρχομαι +καί +ἀναθεωρέω +ὁ +σέβασμα +σύ +εὑρίσκω +καί +βωμός +ἐν +ὅς +ἐπιγράφω +ἄγνωστος +θεός +οὖν +ὅς +ἀγνοέω +εὐσεβέω +οὗτος +ἐγώ +καταγγέλλω +σύ +ὁ +θεός +ὁ +ποιέω +ὁ +κόσμος +καί +πᾶς +ὁ +ἐν +αὐτός +οὗτος +οὐρανός +καί +γῆ +κύριος +ὑπάρχω +οὐ +ἐν +χειροποίητος +ναός +κατοικέω +οὐδέ +ὑπό +χείρ +ἀνθρώπινος +θεραπεύω +προσδέομαι +τὶς +αὐτός +δίδωμι +πᾶς +ζωή +καί +πνοή +καί +ὁ +πᾶς +τέ +ποιέω +ἐκ +εἷς +πᾶς +ἔθνος +ἄνθρωπος +κατοικέω +ἐπί +πᾶς +πρόσωπον +ὁ +γῆ +ὁρίζω +προστάσσω +καιρός +καί +ὁ +ὁροθεσία +ὁ +κατοικία +αὐτός +ζητέω +ὁ +θεός +εἰ +ἆρα +γέ +ψηλαφάω +αὐτός +καί +εὑρίσκω +γέ +καί +οὐ +μακράν +ἀπό +εἷς +ἕκαστος +ἐγώ +ὑπάρχω +γάρ +ἐν +αὐτός +ζάω +καί +κινέω +καί +εἰμί +ὡς +καί +τὶς +ὁ +κατά +σύ +ποιητής +εἶπον +γάρ +ὁ +καί +γένος +εἰμί +οὖν +ὑπάρχω +γένος +ὁ +θεός +οὐ +ὀφείλω +νομίζω +χρυσός +ἤ +ἄργυρος +ἤ +λίθος +χάραγμα +τέχνη +καί +ἐνθύμησις +ἄνθρωπος +ὁ +θεῖος +εἰμί +ὅμοιος +μέν +οὖν +ὁ +χρόνος +ὁ +ἄγνοια +ὑπεροράω +ὁ +θεός +ὁ +νῦν +ἀπαγγέλλω +ὁ +ἄνθρωπος +πᾶς +πανταχοῦ +μετανοέω +καθότι +ἵστημι +ἡμέρα +ἐν +ὅς +μέλλω +κρίνω +ὁ +οἰκουμένη +ἐν +δικαιοσύνη +ἐν +ἀνήρ +ὅς +ὁρίζω +πίστις +παρέχω +πᾶς +ἀνίστημι +αὐτός +ἐκ +νεκρός +δέ +ἀκούω +ἀνάστασις +νεκρός +μέν +ὁ +χλευάζω +δέ +ὁ +λέγω +ἀκούω +σύ +περί +οὗτος +καί +πάλιν +οὕτω +ὁ +Παῦλος +ἐξέρχομαι +ἐκ +μέσος +αὐτός +δέ +τὶς +ἀνήρ +κολλάω +αὐτός +πιστεύω +ἐν +ὅς +καί +Διονύσιος +ὁ +Ἀρεοπαγίτης +καί +γυνή +ὄνομα +Δάμαρις +καί +ἕτερος +σύν +αὐτός +μετά +οὗτος +χωρίζω +ἐκ +ὁ +Ἀθῆναι +ἔρχομαι +εἰς +Κόρινθος +καί +εὑρίσκω +τὶς +Ἰουδαῖος +ὄνομα +Ἀκύλας +Ποντικός +ὁ +γένος +προσφάτως +ἔρχομαι +ἀπό +ὁ +Ἰταλία +καί +Πρίσκα +γυνή +αὐτός +διά +ὁ +διατάσσω +Κλαύδιος +χωρίζω +πᾶς +ὁ +Ἰουδαῖος +ἀπό +ὁ +Ῥώμη +προσέρχομαι +αὐτός +καί +διά +ὁ +ὁμότεχνος +εἰμί +μένω +παρά +αὐτός +καί +ἐργάζομαι +γάρ +εἰμί +σκηνοποιός +ὁ +τέχνη +δέ +διαλέγομαι +ἐν +ὁ +συναγωγή +κατά +πᾶς +σάββατον +πείθω +τέ +Ἰουδαῖος +καί +Ἕλλην +δέ +ὡς +κατέρχομαι +ἀπό +ὁ +Μακεδονία +τέ +ὁ +Σιλᾶς +καί +ὁ +Τιμόθεος +συνέχω +ὁ +λόγος +ὁ +Παῦλος +διαμαρτύρομαι +ὁ +Ἰουδαῖος +εἰμί +ὁ +Χριστός +Ἰησοῦς +δέ +ἀντιτάσσω +αὐτός +καί +βλασφημέω +ἐκτινάσσω +ὁ +ἱμάτιον +λέγω +πρός +αὐτός +ὁ +αἷμα +σύ +ἐπί +ὁ +κεφαλή +σύ +καθαρός +ἐγώ +ἀπό +ὁ +νῦν +εἰς +ὁ +ἔθνος +πορεύομαι +καί +μεταβαίνω +ἐκεῖθεν +ἔρχομαι +εἰς +οἰκία +τὶς +ὄνομα +Τίτιος +Ἰοῦστος +σέβω +ὁ +θεός +ὅς +ὁ +οἰκία +εἰμί +συνομορέω +ὁ +συναγωγή +δέ +Κρίσπος +ὁ +ἀρχισυνάγωγος +πιστεύω +ὁ +κύριος +σύν +ὅλος +ὁ +οἶκος +αὐτός +καί +πολύς +ὁ +Κορίνθιος +ἀκούω +πιστεύω +καί +βαπτίζω +δέ +λέγω +ὁ +κύριος +ἐν +νύξ +διά +ὅραμα +ὁ +Παῦλος +μή +φοβέω +ἀλλά +λαλέω +καί +μή +σιωπάω +διότι +ἐγώ +εἰμί +μετά +σύ +καί +οὐδείς +ἐπιτίθημι +σύ +ὁ +κακόω +σύ +διότι +λαός +πολύς +εἰμί +ἐγώ +ἐν +ὁ +πόλις +οὗτος +δέ +καθίζω +ἐνιαυτός +καί +μήν (II) +ἕξ +διδάσκω +ἐν +αὐτός +ὁ +λόγος +ὁ +θεός +δέ +Γαλλίων +εἰμί +ἀνθύπατος +ὁ +Ἀχαΐα +κατεφίστημι +ὁμοθυμαδόν +ὁ +Ἰουδαῖος +ὁ +Παῦλος +καί +ἄγω +αὐτός +ἐπί +ὁ +βῆμα +λέγω +ὅτι +παρά +ὁ +νόμος +ἀναπείθω +οὗτος +ὁ +ἄνθρωπος +σέβω +ὁ +θεός +δέ +μέλλω +ὁ +Παῦλος +ἀνοίγω +ὁ +στόμα +λέγω +ὁ +Γαλλίων +πρός +ὁ +Ἰουδαῖος +μέν +εἰ +εἰμί +ἀδίκημα +τὶς +ἤ +ῥᾳδιούργημα +πονηρός +ὦ +Ἰουδαῖος +ἄν +κατά +λόγος +ἀνέχω +σύ +δέ +εἰ +εἰμί +ζήτημα +περί +λόγος +καί +ὄνομα +καί +νόμος +ὁ +κατά +σύ +ὁράω +αὐτός +οὐ +βούλομαι +ἐγώ +κριτής +οὗτος +εἰμί +καί +ἀπελαύνω +αὐτός +ἀπό +ὁ +βῆμα +δέ +πᾶς +ἐπιλαμβάνομαι +Σωσθένης +ὁ +ἀρχισυνάγωγος +τύπτω +ἔμπροσθεν +ὁ +βῆμα +καί +οὐδείς +οὗτος +ὁ +Γαλλίων +μέλει +δέ +ὁ +Παῦλος +ἔτι +προσμένω +ἡμέρα +ἱκανός +ὁ +ἀδελφός +ἀποτάσσω +ἐκπλέω +εἰς +ὁ +Συρία +καί +σύν +αὐτός +Πρίσκα +καί +Ἀκύλας +κείρω +ἐν +Κεγχρεαί +ὁ +κεφαλή +γάρ +ἔχω +εὐχή +δέ +καταντάω +εἰς +Ἔφεσος +κἀκεῖνος +καταλείπω +αὐτοῦ +δέ +αὐτός +εἰσέρχομαι +εἰς +ὁ +συναγωγή +διαλέγομαι +ὁ +Ἰουδαῖος +δέ +ἐρωτάω +αὐτός +ἐπί +πολύς +χρόνος +μένω +οὐ +ἐπινεύω +ἀλλά +ἀποτάσσω +καί +λέγω +πάλιν +ἀνακάμπτω +πρός +σύ +ὁ +θεός +θέλω +ἀνάγω +ἀπό +ὁ +Ἔφεσος +καί +κατέρχομαι +εἰς +Καισάρεια +ἀναβαίνω +καί +ἀσπάζομαι +ὁ +ἐκκλησία +καταβαίνω +εἰς +Ἀντιόχεια +καί +ποιέω +χρόνος +τὶς +ἐξέρχομαι +διέρχομαι +καθεξῆς +ὁ +Γαλατικός +χώρα +καί +Φρυγία +στηρίζω +πᾶς +ὁ +μαθητής +δέ +Ἰουδαῖος +τὶς +Ἀπολλῶς +ὄνομα +Ἀλεξανδρεύς +ὁ +γένος +ἀνήρ +λόγιος +δυνατός +εἰμί +ἐν +ὁ +γραφή +καταντάω +εἰς +Ἔφεσος +οὗτος +εἰμί +κατηχέω +ὁ +ὁδός +ὁ +κύριος +καί +ζέω +ὁ +πνεῦμα +λαλέω +καί +διδάσκω +ἀκριβῶς +ὁ +περί +ὁ +Ἰησοῦς +ἐπίσταμαι +μόνος +ὁ +βάπτισμα +Ἰωάννης +τέ +οὗτος +ἄρχω +παρρησιάζομαι +ἐν +ὁ +συναγωγή +δέ +ἀκούω +αὐτός +Πρίσκα +καί +Ἀκύλας +προσλαμβάνω +αὐτός +καί +ἀκριβῶς +αὐτός +ἐκτίθημι +ὁ +ὁδός +ὁ +θεός +δέ +βούλομαι +αὐτός +διέρχομαι +εἰς +ὁ +Ἀχαΐα +προτρέπω +ὁ +ἀδελφός +γράφω +ὁ +μαθητής +ἀποδέχομαι +αὐτός +ὅς +παραγίνομαι +συμβάλλω +πολύς +ὁ +πιστεύω +διά +ὁ +χάρις +γάρ +εὐτόνως +ὁ +Ἰουδαῖος +διακατελέγχομαι +δημόσιος +ἐπιδείκνυμι +διά +ὁ +γραφή +εἰμί +ὁ +Χριστός +Ἰησοῦς +δέ +γίνομαι +ἐν +ὁ +ὁ +Ἀπολλῶς +εἰμί +ἐν +Κόρινθος +Παῦλος +διέρχομαι +ὁ +ἀνωτερικός +μέρος +ἔρχομαι +εἰς +Ἔφεσος +καί +εὑρίσκω +τὶς +μαθητής +τέ +λέγω +πρός +αὐτός +εἰ +πνεῦμα +ἅγιος +λαμβάνω +πιστεύω +δέ +ὁ +πρός +αὐτός +ἀλλά +οὐδέ +ἀκούω +εἰ +πνεῦμα +ἅγιος +εἰμί +τέ +λέγω +οὖν +εἰς +τίς +βαπτίζω +δέ +ὁ +λέγω +εἰς +ὁ +Ἰωάννης +βάπτισμα +δέ +λέγω +Παῦλος +Ἰωάννης +βαπτίζω +βάπτισμα +μετάνοια +ὁ +λαός +λέγω +ἵνα +πιστεύω +εἰς +ὁ +ἔρχομαι +μετά +αὐτός +οὗτος +εἰμί +εἰς +ὁ +Ἰησοῦς +δέ +ἀκούω +βαπτίζω +εἰς +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +καί +ἐπιτίθημι +αὐτός +ὁ +Παῦλος +χείρ +ἔρχομαι +ὁ +πνεῦμα +ὁ +ἅγιος +ἐπί +αὐτός +τέ +λαλέω +γλῶσσα +καί +προφητεύω +δέ +εἰμί +ὁ +πᾶς +ἀνήρ +ὡσεί +δώδεκα +δέ +εἰσέρχομαι +εἰς +ὁ +συναγωγή +παρρησιάζομαι +ἐπί +μήν (II) +τρεῖς +διαλέγομαι +καί +πείθω +περί +ὁ +βασιλεία +ὁ +θεός +δέ +ὡς +τὶς +σκληρύνω +καί +ἀπειθέω +κακολογέω +ὁ +ὁδός +ἐνώπιον +ὁ +πλῆθος +ἀφίστημι +ἀπό +αὐτός +ἀφορίζω +ὁ +μαθητής +κατά +ἡμέρα +διαλέγομαι +ἐν +ὁ +σχολή +Τύραννος +δέ +οὗτος +γίνομαι +ἐπί +ἔτος +δύο +ὥστε +πᾶς +ὁ +κατοικέω +ὁ +Ἀσία +ἀκούω +ὁ +λόγος +ὁ +κύριος +τέ +Ἰουδαῖος +καί +Ἕλλην +τέ +δύναμις +οὐ +ὁ +τυγχάνω +ὁ +θεός +ποιέω +διά +ὁ +χείρ +Παῦλος +ὥστε +καί +ἐπί +ὁ +ἀσθενέω +ἀποφέρω +ἀπό +ὁ +χρώς +αὐτός +σουδάριον +ἤ +σιμικίνθιον +καί +ἀπαλλάσσω +ἀπό +αὐτός +ὁ +νόσος +τέ +ὁ +πνεῦμα +ὁ +πονηρός +ἐκπορεύομαι +δέ +ἐπιχειρέω +τὶς +καί +ὁ +περιέρχομαι +Ἰουδαῖος +ἐξορκιστής +ὀνομάζω +ἐπί +ὁ +ἔχω +ὁ +πνεῦμα +ὁ +πονηρός +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +λέγω +ὁρκίζω +σύ +ὁ +Ἰησοῦς +ὅς +Παῦλος +κηρύσσω +δέ +τὶς +Σκευᾶς +Ἰουδαῖος +ἀρχιερεύς +ἑπτά +υἱός +οὗτος +εἰμί +ποιέω +δέ +ἀποκρίνομαι +ὁ +πνεῦμα +ὁ +πονηρός +λέγω +αὐτός +ὁ +Ἰησοῦς +γινώσκω +καί +ὁ +Παῦλος +ἐπίσταμαι +δέ +σύ +τίς +εἰμί +καί +ἐφάλλομαι +ἐπί +αὐτός +ὁ +ἄνθρωπος +ἐν +ὅς +εἰμί +ὁ +πνεῦμα +ὁ +πονηρός +κατακυριεύω +ἀμφότεροι +ἰσχύω +κατά +αὐτός +ὥστε +γυμνός +καί +τραυματίζω +ἐκφεύγω +ἐκ +ὁ +οἶκος +ἐκεῖνος +δέ +οὗτος +γίνομαι +γνωστός +πᾶς +τέ +Ἰουδαῖος +καί +Ἕλλην +ὁ +κατοικέω +ὁ +Ἔφεσος +καί +ἐπιπίπτω +φόβος +ἐπί +πᾶς +αὐτός +καί +μεγαλύνω +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +τέ +πολύς +ὁ +πιστεύω +ἔρχομαι +ἐξομολογέω +καί +ἀναγγέλλω +ὁ +πρᾶξις +αὐτός +δέ +ἱκανός +ὁ +ὁ +περίεργος +πράσσω +συμφέρω +ὁ +βίβλος +κατακαίω +ἐνώπιον +πᾶς +καί +συμψηφίζω +ὁ +τιμή +αὐτός +καί +εὑρίσκω +ἀργύριον +μυριάς +πέντε +οὕτω +κατά +κράτος +ὁ +κύριος +ὁ +λόγος +αὐξάνω +καί +ἰσχύω +δέ +ὡς +πληρόω +οὗτος +τίθημι +ὁ +Παῦλος +ἐν +ὁ +πνεῦμα +διέρχομαι +ὁ +Μακεδονία +καί +Ἀχαΐα +πορεύομαι +εἰς +Ἱεροσόλυμα +λέγω +ὅτι +μετά +ὁ +γίνομαι +ἐγώ +ἐκεῖ +δεῖ +ἐγώ +καί +Ῥώμη +ὁράω +δέ +ἀποστέλλω +εἰς +ὁ +Μακεδονία +δύο +ὁ +διακονέω +αὐτός +Τιμόθεος +καί +Ἔραστος +αὐτός +ἐπέχω +χρόνος +εἰς +ὁ +Ἀσία +δέ +γίνομαι +κατά +ὁ +καιρός +ἐκεῖνος +τάραχος +οὐ +ὀλίγος +περί +ὁ +ὁδός +γάρ +τὶς +Δημήτριος +ὄνομα +ἀργυροκόπος +ποιέω +ναός +ἀργυροῦς +Ἄρτεμις +παρέχω +ὁ +τεχνίτης +οὐ +ὀλίγος +ἐργασία +ὅς +καί +ὁ +περί +ὁ +τοιοῦτος +ἐργάτης +συναθροίζω +λέγω +ἀνήρ +ἐπίσταμαι +ὅτι +ἐκ +οὗτος +ὁ +ἐργασία +ὁ +εὐπορία +ἐγώ +εἰμί +καί +θεωρέω +καί +ἀκούω +ὅτι +οὐ +μόνος +Ἔφεσος +ἀλλά +σχεδόν +πᾶς +ὁ +Ἀσία +ὁ +Παῦλος +οὗτος +πείθω +μεθίστημι +ἱκανός +ὄχλος +λέγω +ὅτι +οὐ +εἰμί +θεός +ὁ +διά +χείρ +γίνομαι +δέ +οὐ +μόνος +οὗτος +κινδυνεύω +ἐγώ +ὁ +μέρος +εἰς +ἀπελεγμός +ἔρχομαι +ἀλλά +καί +ὁ +ὁ +μέγας +θεά +Ἄρτεμις +ἱερός +εἰς +οὐδείς +λογίζομαι +τέ +μέλλω +καί +καθαιρέω +ὁ +μεγαλειότης +αὐτός +ὅς +ὅλος +ὁ +Ἀσία +καί +ὁ +οἰκουμένη +σέβω +δέ +ἀκούω +καί +γίνομαι +πλήρης +θυμός +κράζω +λέγω +μέγας +ὁ +Ἄρτεμις +Ἐφέσιος +καί +πίμπλημι +ὁ +πόλις +ὁ +σύγχυσις +τέ +ὁρμάω +ὁμοθυμαδόν +εἰς +ὁ +θέατρον +συναρπάζω +Γάϊος +καί +Ἀρίσταρχος +Μακεδών +συνέκδημος +Παῦλος +δέ +Παῦλος +βούλομαι +εἰσέρχομαι +εἰς +ὁ +δῆμος +οὐ +ἐάω +αὐτός +ὁ +μαθητής +δέ +τὶς +καί +ὁ +Ἀσιάρχης +εἰμί +αὐτός +φίλος +πέμπω +πρός +αὐτός +παρακαλέω +μή +δίδωμι +ἑαυτοῦ +εἰς +ὁ +θέατρον +μέν +οὖν +ἄλλος +ἄλλος +τὶς +κράζω +γάρ +ὁ +ἐκκλησία +εἰμί +συγχέω +καί +ὁ +πολύς +οὐ +οἶδα +τίς +ἕνεκα +συνέρχομαι +δέ +ἐκ +ὁ +ὄχλος +συμβιβάζω +Ἀλέξανδρος +προβάλλω +αὐτός +ὁ +Ἰουδαῖος +δέ +ὁ +Ἀλέξανδρος +κατασείω +ὁ +χείρ +θέλω +ἀπολογέομαι +ὁ +δῆμος +δέ +ἐπιγινώσκω +ὅτι +Ἰουδαῖος +εἰμί +φωνή +εἷς +γίνομαι +ἐκ +πᾶς +ὡς +ἐπί +ὥρα +δύο +κράζω +μέγας +ὁ +Ἄρτεμις +Ἐφέσιος +δέ +ὁ +γραμματεύς +καταστέλλω +ὁ +ὄχλος +φημί +ἀνήρ +Ἐφέσιος +γάρ +τίς +ἄνθρωπος +εἰμί +ὅς +οὐ +γινώσκω +ὁ +Ἐφέσιος +πόλις +εἰμί +νεωκόρος +ὁ +μέγας +Ἄρτεμις +καί +ὁ +διοπετής +οὖν +ἀναντίρρητος +εἰμί +οὗτος +δεῖ +εἰμί +σύ +καταστέλλω +ὑπάρχω +καί +μηδείς +προπετής +πράσσω +γάρ +ἄγω +ὁ +ἀνήρ +οὗτος +οὔτε +ἱερόσυλος +οὔτε +βλασφημέω +ὁ +θεός +ἐγώ +οὖν +μέν +εἰ +Δημήτριος +καί +ὁ +σύν +αὐτός +τεχνίτης +ἔχω +πρός +τὶς +λόγος +ἀγοραῖος +ἄγω +καί +ἀνθύπατος +εἰμί +ἐγκαλέω +ἀλλήλων +δέ +εἰ +τὶς +περαιτέρω +ἐπιζητέω +ἐν +ὁ +ἔννομος +ἐκκλησία +ἐπιλύω +γάρ +καί +κινδυνεύω +ἐγκαλέω +στάσις +περί +ὁ +σήμερον +μηδείς +αἴτιος +ὑπάρχω +περί +ὅς +οὐ +δύναμαι +ἀποδίδωμι +λόγος +περί +ὁ +συστροφή +οὗτος +καί +οὗτος +λέγω +ἀπολύω +ὁ +ἐκκλησία +δέ +μετά +ὁ +παύω +ὁ +θόρυβος +ὁ +Παῦλος +μεταπέμπω +ὁ +μαθητής +καί +παρακαλέω +ἀσπάζομαι +ἐξέρχομαι +πορεύομαι +εἰς +Μακεδονία +δέ +διέρχομαι +ὁ +μέρος +ἐκεῖνος +καί +παρακαλέω +αὐτός +λόγος +πολύς +ἔρχομαι +εἰς +ὁ +Ἑλλάς +τέ +ποιέω +μήν (II) +τρεῖς +γίνομαι +ἐπιβουλή +αὐτός +ὑπό +ὁ +Ἰουδαῖος +μέλλω +ἀνάγω +εἰς +ὁ +Συρία +γίνομαι +γνώμη +ὁ +ὑποστρέφω +διά +Μακεδονία +δέ +συνέπομαι +αὐτός +Σώπατρος +Πύρρος +Βεροιαῖος +δέ +Θεσσαλονικεύς +Ἀρίσταρχος +καί +Σεκοῦνδος +καί +Γάϊος +Δερβαῖος +καί +Τιμόθεος +δέ +Ἀσιανός +Τυχικός +καί +Τρόφιμος +δέ +οὗτος +προέρχομαι +μένω +ἐγώ +ἐν +Τρῳάς +δέ +ἐγώ +ἐκπλέω +μετά +ὁ +ἡμέρα +ὁ +ἄζυμος +ἀπό +Φίλιπποι +καί +ἔρχομαι +πρός +αὐτός +εἰς +ὁ +Τρῳάς +ἄχρι +ἡμέρα +πέντε +ὅπου +διατρίβω +ἡμέρα +ἑπτά +δέ +ἐν +ὁ +εἷς +ὁ +σάββατον +συνάγω +ἐγώ +κλάω +ἄρτος +ὁ +Παῦλος +διαλέγομαι +αὐτός +μέλλω +ἔξειμι +ὁ +ἐπαύριον +τέ +παρατείνω +ὁ +λόγος +μέχρι +μεσονύκτιον +δέ +εἰμί +λαμπάς +ἱκανός +ἐν +ὁ +ὑπερῷον +οὗ +εἰμί +συνάγω +δέ +τὶς +νεανίας +ὄνομα +Εὔτυχος +καθέζομαι +ἐπί +ὁ +θυρίς +καταφέρω +ὕπνος +βαθύς +διαλέγομαι +ὁ +Παῦλος +ἐπί +πολύς +καταφέρω +ἀπό +ὁ +ὕπνος +πίπτω +ἀπό +ὁ +τρίστεγον +κάτω +καί +αἴρω +νεκρός +δέ +καταβαίνω +ὁ +Παῦλος +ἐπιπίπτω +αὐτός +καί +συμπεριλαμβάνω +λέγω +μή +θορυβέω +γάρ +ὁ +ψυχή +αὐτός +ἐν +αὐτός +εἰμί +δέ +ἀναβαίνω +καί +κλάω +ὁ +ἄρτος +καί +γεύομαι +τέ +ἐπί +ἱκανός +ὁμιλέω +ἄχρι +αὐγή +οὕτω +ἐξέρχομαι +δέ +ἄγω +ὁ +παῖς +ζάω +καί +παρακαλέω +οὐ +μετρίως +δέ +ἐγώ +προέρχομαι +ἐπί +ὁ +πλοῖον +ἀνάγω +ἐπί +ὁ +ἆσσον +ἐκεῖθεν +μέλλω +ἀναλαμβάνω +ὁ +Παῦλος +γάρ +οὕτω +διατάσσω +εἰμί +μέλλω +αὐτός +πεζεύω +δέ +ὡς +συμβάλλω +ἐγώ +εἰς +ὁ +ἆσσον +ἀναλαμβάνω +αὐτός +ἔρχομαι +εἰς +Μιτυλήνη +κἀκεῖθεν +ἀποπλέω +ὁ +ἔπειμι +καταντάω +ἄντικρυς +Χίος +δέ +ὁ +ἕτερος +παραβάλλω +εἰς +Σάμος +δέ +ὁ +ἔχω +ἔρχομαι +εἰς +Μίλητος +γάρ +κρίνω +ὁ +Παῦλος +παραπλέω +ὁ +Ἔφεσος +ὅπως +μή +γίνομαι +αὐτός +χρονοτριβέω +ἐν +ὁ +Ἀσία +γάρ +σπεύδω +εἰ +δυνατός +εἰμί +αὐτός +ὁ +ἡμέρα +ὁ +πεντηκοστή +γίνομαι +εἰς +Ἱεροσόλυμα +δέ +ἀπό +ὁ +Μίλητος +πέμπω +εἰς +Ἔφεσος +μετακαλέω +ὁ +πρεσβύτερος +ὁ +ἐκκλησία +δέ +ὡς +παραγίνομαι +πρός +αὐτός +λέγω +αὐτός +σύ +ἐπίσταμαι +ἀπό +πρῶτος +ἡμέρα +ἀπό +ὅς +ἐπιβαίνω +εἰς +ὁ +Ἀσία +πῶς +μετά +σύ +ὁ +πᾶς +χρόνος +γίνομαι +δουλεύω +ὁ +κύριος +μετά +πᾶς +ταπεινοφροσύνη +καί +δάκρυον +καί +πειρασμός +ὁ +συμβαίνω +ἐγώ +ἐν +ὁ +ἐπιβουλή +ὁ +Ἰουδαῖος +ὡς +ὑποστέλλω +οὐδείς +ὁ +συμφέρω +ὁ +μή +ἀναγγέλλω +σύ +καί +διδάσκω +σύ +δημόσιος +καί +κατά +οἶκος +διαμαρτύρομαι +τέ +Ἰουδαῖος +καί +Ἕλλην +ὁ +εἰς +θεός +μετάνοια +καί +πίστις +εἰς +ὁ +κύριος +ἐγώ +Ἰησοῦς +καί +νῦν +ὁράω +δέω +ὁ +πνεῦμα +ἐγώ +πορεύομαι +εἰς +Ἱεροσόλυμα +ὁ +ἐν +αὐτός +συναντάω +ἐγώ +μή +οἶδα +πλήν +ὅτι +ὁ +πνεῦμα +ὁ +ἅγιος +κατά +πόλις +διαμαρτύρομαι +ἐγώ +λέγω +ὅτι +δεσμός +καί +θλῖψις +ἐγώ +μένω +ἀλλά +οὐδείς +λόγος +ποιέω +ὁ +ψυχή +τίμιος +ἐμαυτοῦ +ὡς +τελειόω +ὁ +δρόμος +ἐγώ +καί +ὁ +διακονία +ὅς +λαμβάνω +παρά +ὁ +κύριος +Ἰησοῦς +διαμαρτύρομαι +ὁ +εὐαγγέλιον +ὁ +χάρις +ὁ +θεός +καί +νῦν +ὁράω +ἐγώ +οἶδα +ὅτι +οὐκέτι +ὁράω +ὁ +πρόσωπον +ἐγώ +σύ +πᾶς +ἐν +ὅς +διέρχομαι +κηρύσσω +ὁ +βασιλεία +διότι +μαρτύρομαι +σύ +ἐν +ὁ +σήμερον +ἡμέρα +ὅτι +καθαρός +εἰμί +ἀπό +ὁ +αἷμα +πᾶς +γάρ +οὐ +ὑποστέλλω +ὁ +μή +ἀναγγέλλω +πᾶς +ὁ +βουλή +ὁ +θεός +σύ +προσέχω +ἑαυτοῦ +καί +πᾶς +ὁ +ποίμνιον +ἐν +ὅς +σύ +ὁ +πνεῦμα +ὁ +ἅγιος +τίθημι +ἐπίσκοπος +ποιμαίνω +ὁ +ἐκκλησία +ὁ +θεός +ὅς +περιποιέω +διά +ὁ +αἷμα +ὁ +ἴδιος +ἐγώ +οἶδα +ὅτι +εἰσέρχομαι +μετά +ὁ +ἄφιξις +ἐγώ +λύκος +βαρύς +εἰς +σύ +μή +φείδομαι +ὁ +ποίμνιον +καί +ἐκ +σύ +αὐτός +ἀνίστημι +ἀνήρ +λαλέω +διαστρέφω +ὁ +ἀποσπάω +ὁ +μαθητής +ὀπίσω +ἑαυτοῦ +διό +γρηγορέω +μνημονεύω +ὅτι +τριετία +νύξ +καί +ἡμέρα +οὐ +παύω +μετά +δάκρυον +νουθετέω +εἷς +ἕκαστος +καί +ὁ +νῦν +παρατίθημι +σύ +ὁ +κύριος +καί +ὁ +λόγος +ὁ +χάρις +αὐτός +ὁ +δύναμαι +οἰκοδομέω +καί +δίδωμι +ὁ +κληρονομία +ἐν +ὁ +ἁγιάζω +πᾶς +ἀργύριον +ἤ +χρυσίον +ἤ +ἱματισμός +οὐδείς +ἐπιθυμέω +αὐτός +γινώσκω +ὅτι +ὁ +χρεία +ἐγώ +καί +ὁ +εἰμί +μετά +ἐγώ +ὑπηρετέω +ὁ +χείρ +οὗτος +πᾶς +ὑποδείκνυμι +σύ +ὅτι +οὕτω +κοπιάω +δεῖ +ἀντιλαμβάνω +ὁ +ἀσθενέω +τέ +μνημονεύω +ὁ +λόγος +ὁ +κύριος +Ἰησοῦς +ὅτι +αὐτός +λέγω +μακάριος +εἰμί +μᾶλλον +δίδωμι +ἤ +λαμβάνω +καί +οὗτος +λέγω +τίθημι +ὁ +γόνυ +αὐτός +σύν +πᾶς +αὐτός +προσεύχομαι +δέ +ἱκανός +γίνομαι +κλαυθμός +πᾶς +καί +ἐπιπίπτω +ἐπί +ὁ +τράχηλος +ὁ +Παῦλος +καταφιλέω +αὐτός +ὀδυνάω +μάλιστα +ἐπί +ὁ +λόγος +ὅς +εἶπον +ὅτι +οὐκέτι +μέλλω +ὁ +πρόσωπον +αὐτός +θεωρέω +δέ +προπέμπω +αὐτός +εἰς +ὁ +πλοῖον +δέ +ὡς +γίνομαι +ἀνάγω +ἐγώ +ἀποσπάω +ἀπό +αὐτός +εὐθυδρομέω +ἔρχομαι +εἰς +ὁ +Κώς +δέ +ὁ +ἑξῆς +εἰς +ὁ +Ῥόδος +κἀκεῖθεν +εἰς +Πάταρα +καί +εὑρίσκω +πλοῖον +διαπεράω +εἰς +Φοινίκη +ἐπιβαίνω +ἀνάγω +δέ +ἀναφαίνω +ὁ +Κύπρος +καί +καταλείπω +αὐτός +εὐώνυμος +πλέω +εἰς +Συρία +καί +κατέρχομαι +εἰς +Τύρος +γάρ +ἐκεῖσε +ὁ +πλοῖον +εἰμί +ἀποφορτίζομαι +ὁ +γόμος +δέ +ἀνευρίσκω +ὁ +μαθητής +ἐπιμένω +αὐτοῦ +ἡμέρα +ἑπτά +ὅστις +ὁ +Παῦλος +λέγω +διά +ὁ +πνεῦμα +μή +ἐπιβαίνω +εἰς +Ἱεροσόλυμα +δέ +ὅτε +γίνομαι +ἐξαρτίζω +ἐγώ +ὁ +ἡμέρα +ἐξέρχομαι +πορεύομαι +προπέμπω +ἐγώ +πᾶς +σύν +γυνή +καί +τέκνον +ἕως +ἔξω +ὁ +πόλις +καί +τίθημι +ὁ +γόνυ +ἐπί +ὁ +αἰγιαλός +προσεύχομαι +ἀπασπάζομαι +ἀλλήλων +καί +ἐμβαίνω +εἰς +ὁ +πλοῖον +δέ +ἐκεῖνος +ὑποστρέφω +εἰς +ὁ +ἴδιος +δέ +ἐγώ +ὁ +πλόος +διανύω +ἀπό +Τύρος +καταντάω +εἰς +Πτολεμαΐς +καί +ἀσπάζομαι +ὁ +ἀδελφός +μένω +ἡμέρα +εἷς +παρά +αὐτός +δέ +ὁ +ἐπαύριον +ἐξέρχομαι +ἔρχομαι +εἰς +Καισάρεια +καί +εἰσέρχομαι +εἰς +ὁ +οἶκος +Φίλιππος +ὁ +εὐαγγελιστής +εἰμί +ἐκ +ὁ +ἑπτά +μένω +παρά +αὐτός +δέ +οὗτος +εἰμί +θυγάτηρ +τέσσαρες +παρθένος +προφητεύω +δέ +ἐπιμένω +ἡμέρα +πολύς +κατέρχομαι +τὶς +ἀπό +ὁ +Ἰουδαία +προφήτης +ὄνομα +Ἅγαβος +καί +ἔρχομαι +πρός +ἐγώ +καί +αἴρω +ὁ +ζώνη +ὁ +Παῦλος +δέω +ἑαυτοῦ +ὁ +πούς +καί +ὁ +χείρ +λέγω +ὅδε +λέγω +ὁ +πνεῦμα +ὁ +ἅγιος +ὁ +ἀνήρ +ὅς +εἰμί +ὁ +ζώνη +οὗτος +οὕτω +δέω +ἐν +Ἱεροσόλυμα +ὁ +Ἰουδαῖος +καί +παραδίδωμι +εἰς +χείρ +ἔθνος +δέ +ὡς +ἀκούω +οὗτος +παρακαλέω +τέ +ἐγώ +καί +ὁ +ἐντόπιος +ὁ +μή +ἀναβαίνω +αὐτός +εἰς +Ἱεροσόλυμα +τότε +ἀποκρίνομαι +ὁ +Παῦλος +τίς +ποιέω +κλαίω +καί +συνθρύπτω +ἐγώ +ὁ +καρδία +γάρ +ἐγώ +οὐ +μόνος +δέω +ἀλλά +καί +ἀποθνῄσκω +εἰς +Ἱεροσόλυμα +ἑτοίμως +ἔχω +ὑπέρ +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +δέ +μή +πείθω +αὐτός +ἡσυχάζω +λέγω +ὁ +κύριος +ὁ +θέλημα +γίνομαι +δέ +μετά +ὁ +ἡμέρα +οὗτος +ἐπισκευάζομαι +ἀναβαίνω +εἰς +Ἱεροσόλυμα +δέ +συνέρχομαι +καί +ὁ +μαθητής +ἀπό +Καισάρεια +σύν +ἐγώ +ἄγω +παρά +ὅς +ξενίζω +Μνάσων +τὶς +Κύπριος +ἀρχαῖος +μαθητής +δέ +γίνομαι +ἐγώ +εἰς +Ἱεροσόλυμα +ἀσμένως +ἀποδέχομαι +ἐγώ +ὁ +ἀδελφός +δέ +ὁ +ἔπειμι +εἴσειμι +ὁ +Παῦλος +σύν +ἐγώ +πρός +Ἰάκωβος +τέ +παραγίνομαι +πᾶς +ὁ +πρεσβύτερος +καί +ἀσπάζομαι +αὐτός +ἐξηγέομαι +κατά +εἷς +ἕκαστος +ὅς +ποιέω +ὁ +θεός +ἐν +ὁ +ἔθνος +διά +ὁ +διακονία +αὐτός +δέ +ὁ +ἀκούω +δοξάζω +ὁ +θεός +τέ +λέγω +αὐτός +θεωρέω +ἀδελφός +πόσος +μυριάς +ὁ +πιστεύω +εἰμί +ἐν +ὁ +Ἰουδαῖος +καί +πᾶς +ζηλωτής +ὁ +νόμος +ὑπάρχω +δέ +κατηχέω +περί +σύ +ὅτι +διδάσκω +ἀποστασία +ἀπό +Μωϋσῆς +ὁ +κατά +ὁ +ἔθνος +πᾶς +Ἰουδαῖος +λέγω +μή +περιτέμνω +αὐτός +ὁ +τέκνον +μηδέ +ὁ +ἔθος +περιπατέω +οὖν +τίς +εἰμί +πάντως +ἀκούω +ὅτι +ἔρχομαι +οὖν +οὗτος +ποιέω +ὅς +σύ +λέγω +εἰμί +ἐγώ +ἀνήρ +τέσσαρες +εὐχή +ἔχω +ἐπί +ἑαυτοῦ +οὗτος +παραλαμβάνω +ἁγνίζω +σύν +αὐτός +καί +δαπανάω +ἐπί +αὐτός +ἵνα +ξυράω +ὁ +κεφαλή +καί +γινώσκω +πᾶς +ὅτι +ὅς +κατηχέω +περί +σύ +οὐδείς +εἰμί +ἀλλά +στοιχέω +καί +αὐτός +φυλάσσω +ὁ +νόμος +δέ +περί +ὁ +πιστεύω +ἔθνος +ἐγώ +ἀποστέλλω +κρίνω +φυλάσσω +αὐτός +τέ +ὁ +εἰδωλόθυτος +καί +αἷμα +καί +πνικτός +καί +πορνεία +τότε +ὁ +Παῦλος +παραλαμβάνω +ὁ +ἀνήρ +ὁ +ἔχω +ἡμέρα +σύν +αὐτός +ἁγνίζω +εἴσειμι +εἰς +ὁ +ἱερός +διαγγέλλω +ὁ +ἐκπλήρωσις +ὁ +ἡμέρα +ὁ +ἁγνισμός +ἕως +ὅς +προσφέρω +ὑπέρ +εἷς +ἕκαστος +αὐτός +ὁ +προσφορά +δέ +ὡς +μέλλω +ὁ +ἑπτά +ἡμέρα +συντελέω +ὁ +ἀπό +ὁ +Ἀσία +Ἰουδαῖος +θεάομαι +αὐτός +ἐν +ὁ +ἱερός +συγχέω +πᾶς +ὁ +ὄχλος +καί +ἐπιβάλλω +ἐπί +αὐτός +ὁ +χείρ +κράζω +ἀνήρ +Ἰσραηλίτης +βοηθέω +οὗτος +εἰμί +ὁ +ἄνθρωπος +ὁ +κατά +ὁ +λαός +καί +ὁ +νόμος +καί +ὁ +τόπος +οὗτος +πᾶς +πανταχῇ +διδάσκω +τέ +ἔτι +καί +Ἕλλην +εἰσάγω +εἰς +ὁ +ἱερός +καί +κοινόω +ὁ +ἅγιος +τόπος +οὗτος +γάρ +εἰμί +προοράω +Τρόφιμος +ὁ +Ἐφέσιος +ἐν +ὁ +πόλις +σύν +αὐτός +νομίζω +ὅτι +ὅς +εἰς +ὁ +ἱερός +εἰσάγω +ὁ +Παῦλος +τέ +κινέω +ὁ +πόλις +ὅλος +καί +γίνομαι +συνδρομή +ὁ +λαός +καί +ἐπιλαμβάνομαι +ὁ +Παῦλος +ἕλκω +αὐτός +ἔξω +ὁ +ἱερός +καί +εὐθέως +κλείω +ὁ +θύρα +τέ +ζητέω +αὐτός +ἀποκτείνω +ἀναβαίνω +φάσις +ὁ +χιλίαρχος +ὁ +σπεῖρα +ὅτι +ὅλος +Ἱεροσόλυμα +συγχέω +ὅς +ἐξαυτῆς +παραλαμβάνω +στρατιώτης +καί +ἑκατοντάρχης +κατατρέχω +ἐπί +αὐτός +δέ +ὁ +ὁράω +ὁ +χιλίαρχος +καί +ὁ +στρατιώτης +παύω +τύπτω +ὁ +Παῦλος +τότε +ἐγγίζω +ὁ +χιλίαρχος +ἐπιλαμβάνομαι +αὐτός +καί +κελεύω +δέω +ἅλυσις +δύο +καί +πυνθάνομαι +τίς +εἰμί +καί +τίς +εἰμί +ποιέω +δέ +ἄλλος +ἄλλος +τὶς +ἐπιφωνέω +ἐν +ὁ +ὄχλος +δέ +μή +δύναμαι +αὐτός +γινώσκω +ὁ +ἀσφαλής +διά +ὁ +θόρυβος +κελεύω +ἄγω +αὐτός +εἰς +ὁ +παρεμβολή +δέ +ὅτε +γίνομαι +ἐπί +ὁ +ἀναβαθμός +συμβαίνω +βαστάζω +αὐτός +ὑπό +ὁ +στρατιώτης +διά +ὁ +βία +ὁ +ὄχλος +γάρ +ἀκολουθέω +ὁ +πλῆθος +ὁ +λαός +κράζω +αἴρω +αὐτός +τέ +μέλλω +εἰσάγω +εἰς +ὁ +παρεμβολή +ὁ +Παῦλος +λέγω +ὁ +χιλίαρχος +εἰ +ἔξεστι(ν) +ἐγώ +λέγω +τὶς +πρός +σύ +δέ +ὁ +φημί +Ἑλληνιστί +γινώσκω +ἆρα +οὐ +σύ +εἰμί +ὁ +Αἰγύπτιος +ὁ +πρό +οὗτος +ὁ +ἡμέρα +ἀναστατόω +καί +ἐξάγω +εἰς +ὁ +ἔρημος +ὁ +τετρακισχίλιοι +ἀνήρ +ὁ +σικάριος +δέ +λέγω +ὁ +Παῦλος +μέν +ἐγώ +εἰμί +ἄνθρωπος +Ἰουδαῖος +Ταρσεύς +ὁ +Κιλικία +οὐ +ἄσημος +πόλις +πολίτης +δέ +δέομαι +σύ +ἐπιτρέπω +ἐγώ +λαλέω +πρός +ὁ +λαός +δέ +ἐπιτρέπω +αὐτός +ὁ +Παῦλος +ἵστημι +ἐπί +ὁ +ἀναβαθμός +κατασείω +ὁ +χείρ +ὁ +λαός +δέ +πολύς +σιγή +γίνομαι +προσφωνέω +ὁ +Ἑβραΐς +διάλεκτος +λέγω +ἀνήρ +ἀδελφός +καί +πατήρ +ἀκούω +ἐγώ +ὁ +πρός +σύ +νυνί +ἀπολογία +δέ +ἀκούω +ὅτι +ὁ +Ἑβραΐς +διάλεκτος +προσφωνέω +αὐτός +μᾶλλον +παρέχω +ἡσυχία +καί +φημί +ἐγώ +εἰμί +ἀνήρ +Ἰουδαῖος +γεννάω +ἐν +Ταρσός +ὁ +Κιλικία +δέ +ἀνατρέφω +ἐν +ὁ +πόλις +οὗτος +παρά +ὁ +πούς +Γαμαλιήλ +παιδεύω +κατά +ἀκρίβεια +ὁ +πατρῷος +νόμος +ὑπάρχω +ζηλωτής +ὁ +θεός +καθώς +πᾶς +σύ +εἰμί +σήμερον +ὅς +οὗτος +ὁ +ὁδός +διώκω +ἄχρι +θάνατος +δεσμεύω +καί +παραδίδωμι +εἰς +φυλακή +τέ +ἀνήρ +καί +γυνή +ὡς +καί +ὁ +ἀρχιερεύς +μαρτυρέω +ἐγώ +καί +πᾶς +ὁ +πρεσβυτέριον +παρά +ὅς +καί +ἐπιστολή +δέχομαι +πρός +ὁ +ἀδελφός +εἰς +Δαμασκός +πορεύομαι +ἄγω +καί +ὁ +ἐκεῖσε +εἰμί +δέω +εἰς +Ἱεροσόλυμα +ἵνα +τιμωρέω +δέ +γίνομαι +ἐγώ +πορεύομαι +καί +ἐγγίζω +ὁ +Δαμασκός +περί +μεσημβρία +ἐξαίφνης +ἐκ +ὁ +οὐρανός +περιαστράπτω +φῶς +ἱκανός +περί +ἐγώ +τέ +πίπτω +εἰς +ὁ +ἔδαφος +καί +ἀκούω +φωνή +λέγω +ἐγώ +Σαούλ +Σαούλ +τίς +ἐγώ +διώκω +δέ +ἐγώ +ἀποκρίνομαι +τίς +εἰμί +κύριος +τέ +λέγω +πρός +ἐγώ +ἐγώ +εἰμί +Ἰησοῦς +ὁ +Ναζωραῖος +ὅς +σύ +διώκω +δέ +μέν +ὁ +σύν +ἐγώ +εἰμί +ὁ +φῶς +θεάομαι +δέ +οὐ +ἀκούω +ὁ +φωνή +ὁ +λαλέω +ἐγώ +δέ +λέγω +τίς +ποιέω +κύριος +δέ +ὁ +κύριος +λέγω +πρός +ἐγώ +ἀνίστημι +πορεύομαι +εἰς +Δαμασκός +κἀκεῖ +σύ +λαλέω +περί +πᾶς +ὅς +ποιέω +τάσσω +σύ +δέ +ὡς +οὐ +ἐμβλέπω +ἀπό +ὁ +δόξα +ὁ +φῶς +ἐκεῖνος +χειραγωγέω +ὑπό +ὁ +σύνειμι (I) +ἐγώ +ἔρχομαι +εἰς +Δαμασκός +δέ +Ἁνανίας +τὶς +ἀνήρ +εὐλαβής +κατά +ὁ +νόμος +μαρτυρέω +ὑπό +πᾶς +ὁ +κατοικέω +Ἰουδαῖος +ἔρχομαι +πρός +ἐγώ +καί +ἐφίστημι +λέγω +ἐγώ +Σαούλ +ἀδελφός +ἀναβλέπω +κἀγώ +αὐτός +ὁ +ὥρα +ἀναβλέπω +εἰς +αὐτός +δέ +ὁ +λέγω +ὁ +θεός +ὁ +πατήρ +ἐγώ +προχειρίζομαι +σύ +γινώσκω +ὁ +θέλημα +αὐτός +καί +ὁράω +ὁ +δίκαιος +καί +ἀκούω +φωνή +ἐκ +ὁ +στόμα +αὐτός +ὅτι +εἰμί +αὐτός +πρός +πᾶς +ἄνθρωπος +μάρτυς +ὅς +ὁράω +καί +ἀκούω +καί +νῦν +τίς +μέλλω +ἀνίστημι +βαπτίζω +καί +ἀπολούω +ὁ +ἁμαρτία +σύ +ἐπικαλέω +ὁ +ὄνομα +αὐτός +δέ +γίνομαι +ἐγώ +ὑποστρέφω +εἰς +Ἱεροσόλυμα +καί +προσεύχομαι +ἐγώ +ἐν +ὁ +ἱερός +γίνομαι +ἐγώ +ἐν +ἔκστασις +καί +ὁράω +αὐτός +λέγω +ἐγώ +σπεύδω +καί +ἐξέρχομαι +ἐν +τάχος +ἐκ +Ἱεροσόλυμα +διότι +οὐ +παραδέχομαι +σύ +μαρτυρία +περί +ἐγώ +κἀγώ +λέγω +κύριος +αὐτός +ἐπίσταμαι +ὅτι +ἐγώ +εἰμί +φυλακίζω +καί +δέρω +κατά +ὁ +συναγωγή +ὁ +πιστεύω +ἐπί +σύ +καί +ὅτε +ἐκχέω +ὁ +αἷμα +Στέφανος +ὁ +μάρτυς +σύ +καί +αὐτός +εἰμί +ἐφίστημι +καί +συνευδοκέω +καί +φυλάσσω +ὁ +ἱμάτιον +ὁ +ἀναιρέω +αὐτός +καί +λέγω +πρός +ἐγώ +πορεύομαι +ὅτι +ἐγώ +εἰς +ἔθνος +μακράν +ἐξαποστέλλω +σύ +δέ +ἀκούω +αὐτός +ἄχρι +οὗτος +ὁ +λόγος +καί +ἐπαίρω +ὁ +φωνή +αὐτός +λέγω +αἴρω +ἀπό +ὁ +γῆ +ὁ +τοιοῦτος +γάρ +οὐ +καθήκω +αὐτός +ζάω +τέ +κραυγάζω +αὐτός +καί +ῥίπτω +ὁ +ἱμάτιον +καί +κονιορτός +βάλλω +εἰς +ὁ +ἀήρ +κελεύω +ὁ +χιλίαρχος +εἰσάγω +αὐτός +εἰς +ὁ +παρεμβολή +λέγω +μάστιξ +ἀνετάζω +αὐτός +ἵνα +ἐπιγινώσκω +διά +ὅς +αἰτία +οὕτω +ἐπιφωνέω +αὐτός +δέ +ὡς +προτείνω +αὐτός +ὁ +ἱμάς +λέγω +πρός +ὁ +ἵστημι +ἑκατοντάρχης +ὁ +Παῦλος +εἰ +ἄνθρωπος +Ῥωμαῖος +καί +ἀκατάκριτος +μαστίζω +ἔξεστι(ν) +σύ +δέ +ἀκούω +ὁ +ἑκατοντάρχης +προσέρχομαι +ὁ +χιλίαρχος +ἀπαγγέλλω +λέγω +μέλλω +τίς +ποιέω +γάρ +ὁ +ἄνθρωπος +οὗτος +Ῥωμαῖος +εἰμί +δέ +προσέρχομαι +ὁ +χιλίαρχος +λέγω +αὐτός +λέγω +ἐγώ +σύ +Ῥωμαῖος +εἰμί +δέ +ὁ +φημί +ναί +δέ +ἀποκρίνομαι +ὁ +χιλίαρχος +ἐγώ +πολύς +κεφάλαιον +ὁ +πολιτεία +οὗτος +κτάομαι +δέ +ὁ +Παῦλος +φημί +δέ +ἐγώ +καί +γεννάω +οὖν +εὐθέως +ἀφίστημι +ἀπό +αὐτός +ὁ +μέλλω +αὐτός +ἀνετάζω +δέ +καί +ὁ +χιλίαρχος +φοβέω +ἐπιγινώσκω +ὅτι +Ῥωμαῖος +εἰμί +καί +ὅτι +αὐτός +εἰμί +δέω +δέ +ὁ +ἐπαύριον +βούλομαι +γινώσκω +ὁ +ἀσφαλής +ὁ +τίς +κατηγορέω +ὑπό +ὁ +Ἰουδαῖος +λύω +αὐτός +καί +κελεύω +συνέρχομαι +ὁ +ἀρχιερεύς +καί +πᾶς +ὁ +συνέδριον +καί +κατάγω +ὁ +Παῦλος +ἵστημι +εἰς +αὐτός +δέ +ὁ +Παῦλος +ἀτενίζω +ὁ +συνέδριον +λέγω +ἀνήρ +ἀδελφός +ἐγώ +πᾶς +συνείδησις +ἀγαθός +πολιτεύομαι +ὁ +θεός +ἄχρι +οὗτος +ὁ +ἡμέρα +δέ +ὁ +ἀρχιερεύς +Ἁνανίας +ἐπιτάσσω +ὁ +παρίστημι +αὐτός +τύπτω +αὐτός +ὁ +στόμα +τότε +ὁ +Παῦλος +πρός +αὐτός +λέγω +τύπτω +σύ +μέλλω +ὁ +θεός +τοῖχος +κονιάω +καί +σύ +κάθημαι +κρίνω +ἐγώ +κατά +ὁ +νόμος +καί +παρανομέω +κελεύω +ἐγώ +τύπτω +δέ +ὁ +παρίστημι +λέγω +ὁ +ἀρχιερεύς +ὁ +θεός +λοιδορέω +τέ +φημί +ὁ +Παῦλος +οὐ +οἶδα +ἀδελφός +ὅτι +εἰμί +ἀρχιερεύς +γάρ +γράφω +ὅτι +ἄρχων +ὁ +λαός +σύ +οὐ +εἶπον +κακῶς +δέ +ὁ +Παῦλος +γινώσκω +ὅτι +ὁ +εἷς +μέρος +εἰμί +Σαδδουκαῖος +δέ +ὁ +ἕτερος +Φαρισαῖος +κράζω +ἐν +ὁ +συνέδριον +ἀνήρ +ἀδελφός +ἐγώ +Φαρισαῖος +εἰμί +υἱός +Φαρισαῖος +περί +ἐλπίς +καί +ἀνάστασις +νεκρός +κρίνω +δέ +οὗτος +αὐτός +λαλέω +γίνομαι +στάσις +ὁ +Φαρισαῖος +καί +Σαδδουκαῖος +καί +σχίζω +ὁ +πλῆθος +γάρ +Σαδδουκαῖος +λέγω +μή +εἰμί +ἀνάστασις +μήτε +ἄγγελος +μήτε +πνεῦμα +δέ +Φαρισαῖος +ὁμολογέω +ὁ +ἀμφότεροι +δέ +γίνομαι +κραυγή +μέγας +καί +ἀνίστημι +τὶς +ὁ +γραμματεύς +ὁ +μέρος +ὁ +Φαρισαῖος +διαμάχομαι +λέγω +οὐδείς +κακός +εὑρίσκω +ἐν +ὁ +ἄνθρωπος +οὗτος +δέ +εἰ +πνεῦμα +λαλέω +αὐτός +ἤ +ἄγγελος +δέ +πολύς +στάσις +γίνομαι +ὁ +χιλίαρχος +φοβέω +μή +διασπάω +ὁ +Παῦλος +ὑπό +αὐτός +κελεύω +ὁ +στράτευμα +καταβαίνω +ἁρπάζω +αὐτός +ἐκ +μέσος +αὐτός +τέ +ἄγω +εἰς +ὁ +παρεμβολή +δέ +ὁ +ἔπειμι +νύξ +ἐφίστημι +αὐτός +ὁ +κύριος +λέγω +θαρσέω +γάρ +ὡς +διαμαρτύρομαι +ὁ +περί +ἐγώ +εἰς +Ἱεροσόλυμα +οὕτω +δεῖ +σύ +καί +εἰς +Ῥώμη +μαρτυρέω +δέ +γίνομαι +ἡμέρα +ποιέω +συστροφή +ὁ +Ἰουδαῖος +ἀναθεματίζω +ἑαυτοῦ +λέγω +μήτε +ἐσθίω +μήτε +πίνω +ἕως +ὅς +ἀποκτείνω +ὁ +Παῦλος +δέ +εἰμί +πολύς +τεσσεράκοντα +ὁ +οὗτος +ὁ +συνωμοσία +ποιέω +ὅστις +προσέρχομαι +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +λέγω +ἀνάθεμα +ἀναθεματίζω +ἑαυτοῦ +μηδείς +γεύομαι +ἕως +ὅς +ἀποκτείνω +ὁ +Παῦλος +οὖν +νῦν +σύ +ἐμφανίζω +ὁ +χιλίαρχος +σύν +ὁ +συνέδριον +ὅπως +κατάγω +αὐτός +εἰς +σύ +ὡς +μέλλω +διαγινώσκω +ἀκριβῶς +ὁ +περί +αὐτός +δέ +ἐγώ +πρό +ὁ +ἐγγίζω +αὐτός +ἕτοιμος +εἰμί +ὁ +ἀναιρέω +αὐτός +δέ +ὁ +υἱός +ὁ +ἀδελφή +Παῦλος +ἀκούω +ὁ +ἐνέδρα +παραγίνομαι +καί +εἰσέρχομαι +εἰς +ὁ +παρεμβολή +ἀπαγγέλλω +ὁ +Παῦλος +δέ +ὁ +Παῦλος +προσκαλέω +εἷς +ὁ +ἑκατοντάρχης +φημί +ὁ +νεανίας +οὗτος +ἀπάγω +πρός +ὁ +χιλίαρχος +γάρ +ἔχω +ἀπαγγέλλω +τὶς +αὐτός +μέν +οὖν +ὁ +παραλαμβάνω +αὐτός +ἄγω +πρός +ὁ +χιλίαρχος +καί +φημί +ὁ +δέσμιος +Παῦλος +προσκαλέω +ἐγώ +ἐρωτάω +οὗτος +ὁ +νεανίσκος +ἄγω +πρός +σύ +ἔχω +τὶς +λαλέω +σύ +δέ +ὁ +χιλίαρχος +ἐπιλαμβάνομαι +ὁ +χείρ +αὐτός +καί +ἀναχωρέω +κατά +ἴδιος +πυνθάνομαι +τίς +εἰμί +ὅς +ἀπαγγέλλω +ἐγώ +ἔχω +δέ +λέγω +ὅτι +ὁ +Ἰουδαῖος +συντίθημι +ὁ +ἐρωτάω +σύ +ὅπως +αὔριον +ὁ +Παῦλος +κατάγω +εἰς +ὁ +συνέδριον +ὡς +μέλλω +τὶς +ἀκριβῶς +πυνθάνομαι +περί +αὐτός +οὖν +σύ +μή +πείθω +αὐτός +γάρ +ἐνεδρεύω +αὐτός +ἐκ +αὐτός +ἀνήρ +πολύς +τεσσεράκοντα +ὅστις +ἀναθεματίζω +ἑαυτοῦ +μήτε +ἐσθίω +μήτε +πίνω +ἕως +ὅς +ἀναιρέω +αὐτός +καί +νῦν +εἰμί +ἕτοιμος +προσδέχομαι +ὁ +ἀπό +σύ +ἐπαγγελία +μέν +οὖν +ὁ +χιλίαρχος +ἀπολύω +ὁ +νεανίσκος +παραγγέλλω +μηδείς +ἐκλαλέω +ὅτι +οὗτος +ἐμφανίζω +πρός +ἐγώ +καί +προσκαλέω +τὶς +δύο +ὁ +ἑκατοντάρχης +λέγω +ἑτοιμάζω +στρατιώτης +διακόσιοι +καί +ἱππεύς +ἑβδομήκοντα +καί +δεξιολάβος +διακόσιοι +ὅπως +πορεύομαι +ἕως +Καισάρεια +ἀπό +τρίτος +ὥρα +ὁ +νύξ +τέ +κτῆνος +παρίστημι +ἵνα +ἐπιβιβάζω +ὁ +Παῦλος +διασῴζω +πρός +Φῆλιξ +ὁ +ἡγεμών +γράφω +ἐπιστολή +ἔχω +ὁ +τύπος +οὗτος +Κλαύδιος +Λυσίας +ὁ +κράτιστος +ἡγεμών +Φῆλιξ +χαίρω +ὁ +ἀνήρ +οὗτος +συλλαμβάνω +ὑπό +ὁ +Ἰουδαῖος +καί +μέλλω +ἀναιρέω +ὑπό +αὐτός +ἐφίστημι +σύν +ὁ +στράτευμα +ἐξαιρέω +μανθάνω +ὅτι +Ῥωμαῖος +εἰμί +τέ +βούλομαι +ἐπιγινώσκω +ὁ +αἰτία +διά +ὅς +ἐγκαλέω +αὐτός +κατάγω +εἰς +ὁ +συνέδριον +αὐτός +εὑρίσκω +ὅς +ἐγκαλέω +περί +ζήτημα +ὁ +νόμος +αὐτός +δέ +μηδείς +ἄξιος +θάνατος +ἤ +δεσμός +ἔγκλημα +ἔχω +δέ +μηνύω +ἐγώ +ἐπιβουλή +εἰς +ὁ +ἀνήρ +εἰμί +ἐξαυτῆς +πέμπω +πρός +σύ +παραγγέλλω +καί +ὁ +κατήγορος +λέγω +πρός +αὐτός +ἐπί +σύ +μέν +οὖν +ὁ +στρατιώτης +κατά +ὁ +διατάσσω +αὐτός +ἀναλαμβάνω +ὁ +Παῦλος +ἄγω +διά +νύξ +εἰς +ὁ +Ἀντιπατρίς +δέ +ὁ +ἐπαύριον +ἐάω +ὁ +ἱππεύς +ἀπέρχομαι +σύν +αὐτός +ὑποστρέφω +εἰς +ὁ +παρεμβολή +ὅστις +εἰσέρχομαι +εἰς +ὁ +Καισάρεια +καί +ἀναδίδωμι +ὁ +ἐπιστολή +ὁ +ἡγεμών +παρίστημι +καί +ὁ +Παῦλος +αὐτός +δέ +ἀναγινώσκω +καί +ἐπερωτάω +ἐκ +ποῖος +ἐπαρχεία +εἰμί +καί +πυνθάνομαι +ὅτι +ἀπό +Κιλικία +φημί +διακούω +σύ +ὅταν +καί +ὁ +κατήγορος +σύ +παραγίνομαι +κελεύω +ἐν +ὁ +πραιτώριον +ὁ +Ἡρῴδης +φυλάσσω +αὐτός +δέ +μετά +πέντε +ἡμέρα +καταβαίνω +ὁ +ἀρχιερεύς +Ἁνανίας +μετά +πρεσβύτερος +τὶς +καί +ῥήτωρ +Τέρτυλλος +τὶς +ὅστις +ἐμφανίζω +ὁ +ἡγεμών +κατά +ὁ +Παῦλος +δέ +καλέω +αὐτός +ἄρχω +κατηγορέω +ὁ +Τέρτυλλος +λέγω +πολύς +εἰρήνη +τυγχάνω +διά +σύ +καί +διόρθωμα +γίνομαι +ὁ +ἔθνος +οὗτος +διά +ὁ +σός +πρόνοια +τέ +πάντῃ +καί +πανταχοῦ +ἀποδέχομαι +μετά +πᾶς +εὐχαριστία +κράτιστος +Φῆλιξ +δέ +ἵνα +μή +ἐπί +πολύς +σύ +ἐγκόπτω +παρακαλέω +ἀκούω +σύ +ἐγώ +συντόμως +ὁ +σός +ἐπιείκεια +γάρ +εὑρίσκω +ὁ +ἀνήρ +οὗτος +λοιμός (II) +καί +κινέω +στάσις +πᾶς +ὁ +Ἰουδαῖος +ὁ +κατά +ὁ +οἰκουμένη +τέ +πρωτοστάτης +ὁ +ὁ +Ναζωραῖος +αἵρεσις +ὅς +καί +ὁ +ἱερός +βεβηλόω +πειράζω +ὅς +καί +κρατέω +παρά +ὅς +δύναμαι +αὐτός +ἀνακρίνω +περί +πᾶς +οὗτος +ἐπιγινώσκω +ὅς +ἐγώ +κατηγορέω +αὐτός +δέ +συνεπιτίθημι +καί +ὁ +Ἰουδαῖος +φάσκω +οὗτος +οὕτω +ἔχω +τέ +ἀποκρίνομαι +ὁ +Παῦλος +νεύω +αὐτός +ὁ +ἡγεμών +λέγω +ἐκ +πολύς +ἔτος +εἰμί +σύ +κριτής +ὁ +ἔθνος +οὗτος +ἐπίσταμαι +εὐθύμως +ὁ +περί +ἐμαυτοῦ +ἀπολογέομαι +δύναμαι +σύ +ἐπιγινώσκω +ὅτι +οὐ +πολύς +εἰμί +ἐγώ +ἡμέρα +δώδεκα +ἀπό +ὅς +ἀναβαίνω +προσκυνέω +εἰς +Ἱεροσόλυμα +καί +εὑρίσκω +ἐγώ +πρός +τὶς +διαλέγομαι +ἤ +ἐπίστασις +ὄχλος +ποιέω +οὔτε +ἐν +ὁ +ἱερός +οὔτε +ἐν +ὁ +συναγωγή +οὔτε +κατά +ὁ +πόλις +οὐδέ +δύναμαι +παρίστημι +σύ +περί +ὅς +νυνί +κατηγορέω +ἐγώ +δέ +ὁμολογέω +οὗτος +σύ +ὅτι +κατά +ὁ +ὁδός +ὅς +λέγω +αἵρεσις +οὕτω +λατρεύω +ὁ +πατρῷος +θεός +πιστεύω +πᾶς +ὁ +κατά +ὁ +νόμος +καί +ὁ +ἐν +ὁ +προφήτης +γράφω +ἔχω +ἐλπίς +εἰς +ὁ +θεός +ὅς +καί +αὐτός +οὗτος +προσδέχομαι +μέλλω +εἰμί +ἀνάστασις +τέ +δίκαιος +καί +ἄδικος +ἐν +οὗτος +καί +αὐτός +ἀσκέω +ἀπρόσκοπος +συνείδησις +ἔχω +πρός +ὁ +θεός +καί +ὁ +ἄνθρωπος +διά +πᾶς +δέ +διά +ἔτος +πολύς +ἐλεημοσύνη +ποιέω +εἰς +ὁ +ἔθνος +ἐγώ +παραγίνομαι +καί +προσφορά +ἐν +ὅς +εὑρίσκω +ἐγώ +ἁγνίζω +ἐν +ὁ +ἱερός +οὐ +μετά +ὄχλος +οὐδέ +μετά +θόρυβος +δέ +τὶς +ἀπό +ὁ +Ἀσία +Ἰουδαῖος +ὅς +ἐπί +σύ +πάρειμι +καί +κατηγορέω +δεῖ +εἰ +τὶς +ἔχω +πρός +ἐγώ +ἤ +αὐτός +οὗτος +λέγω +τίς +ἀδίκημα +εὑρίσκω +ἵστημι +ἐγώ +ἐπί +ὁ +συνέδριον +ἤ +περί +εἷς +οὗτος +φωνή +ὅς +κράζω +ἐν +αὐτός +ἵστημι +ὅτι +περί +ἀνάστασις +νεκρός +ἐγώ +κρίνω +σήμερον +ἐπί +σύ +δέ +ἀναβάλλω +αὐτός +ὁ +Φῆλιξ +ἀκριβῶς +οἶδα +ὁ +περί +ὁ +ὁδός +λέγω +ὅταν +Λυσίας +ὁ +χιλίαρχος +καταβαίνω +διαγινώσκω +ὁ +κατά +σύ +διατάσσω +ὁ +ἑκατοντάρχης +τηρέω +αὐτός +τέ +ἔχω +ἄνεσις +καί +κωλύω +μηδείς +ὁ +ἴδιος +αὐτός +ὑπηρετέω +αὐτός +δέ +μετά +ἡμέρα +τὶς +ὁ +Φῆλιξ +παραγίνομαι +σύν +Δρούσιλλα +ὁ +ἴδιος +γυνή +εἰμί +Ἰουδαῖος +μεταπέμπω +ὁ +Παῦλος +καί +ἀκούω +αὐτός +περί +ὁ +εἰς +Χριστός +Ἰησοῦς +πίστις +δέ +διαλέγομαι +αὐτός +περί +δικαιοσύνη +καί +ἐγκράτεια +καί +ὁ +κρίμα +ὁ +μέλλω +ἔμφοβος +γίνομαι +ὁ +Φῆλιξ +ἀποκρίνομαι +ὁ +νῦν +ἔχω +πορεύομαι +δέ +καιρός +μεταλαμβάνω +μετακαλέω +σύ +ἅμα +καί +ἐλπίζω +ὅτι +χρῆμα +δίδωμι +αὐτός +ὑπό +ὁ +Παῦλος +διό +καί +πυκνός +αὐτός +μεταπέμπω +ὁμιλέω +αὐτός +δέ +διετία +πληρόω +λαμβάνω +ὁ +Φῆλιξ +διάδοχος +Πόρκιος +Φῆστος +τέ +θέλω +χάρις +κατατίθημι +ὁ +Ἰουδαῖος +ὁ +Φῆλιξ +καταλείπω +ὁ +Παῦλος +δέω +οὖν +Φῆστος +ἐπιβαίνω +ὁ +ἐπάρχειος +μετά +τρεῖς +ἡμέρα +ἀναβαίνω +εἰς +Ἱεροσόλυμα +ἀπό +Καισάρεια +τέ +ἐμφανίζω +αὐτός +ὁ +ἀρχιερεύς +καί +ὁ +πρῶτος +ὁ +Ἰουδαῖος +κατά +ὁ +Παῦλος +καί +παρακαλέω +αὐτός +αἰτέω +χάρις +κατά +αὐτός +ὅπως +μεταπέμπω +αὐτός +εἰς +Ἱεροσόλυμα +ἐνέδρα +ποιέω +ἀναιρέω +αὐτός +κατά +ὁ +ὁδός +μέν +οὖν +ὁ +Φῆστος +ἀποκρίνομαι +τηρέω +ὁ +Παῦλος +εἰς +Καισάρεια +δέ +ἑαυτοῦ +μέλλω +ἐν +τάχος +ἐκπορεύομαι +οὖν +φημί +ὁ +ἐν +σύ +δυνατός +συγκαταβαίνω +κατηγορέω +αὐτός +εἰ +τὶς +ἄτοπος +εἰμί +ἐν +ὁ +ἀνήρ +δέ +διατρίβω +ἐν +αὐτός +ἡμέρα +οὐ +πολύς +ὀκτώ +ἤ +δέκα +καταβαίνω +εἰς +Καισάρεια +ὁ +ἐπαύριον +καθίζω +ἐπί +ὁ +βῆμα +κελεύω +ὁ +Παῦλος +ἄγω +δέ +παραγίνομαι +αὐτός +περιΐστημι +αὐτός +ὁ +ἀπό +Ἱεροσόλυμα +καταβαίνω +Ἰουδαῖος +πολύς +καί +βαρύς +αἰτίωμα +καταφέρω +ὅς +ἀποδείκνυμι +οὐ +ἰσχύω +ὁ +Παῦλος +ἀπολογέομαι +ὅτι +οὔτε +εἰς +ὁ +νόμος +ὁ +Ἰουδαῖος +οὔτε +εἰς +ὁ +ἱερός +οὔτε +εἰς +Καῖσαρ +τὶς +ἁμαρτάνω +δέ +ὁ +Φῆστος +θέλω +ὁ +Ἰουδαῖος +χάρις +κατατίθημι +ἀποκρίνομαι +ὁ +Παῦλος +λέγω +θέλω +εἰς +Ἱεροσόλυμα +ἀναβαίνω +ἐκεῖ +περί +οὗτος +κρίνω +ἐπί +ἐγώ +δέ +λέγω +ὁ +Παῦλος +ἐπί +ὁ +βῆμα +Καῖσαρ +ἵστημι +εἰμί +οὗ +ἐγώ +κρίνω +δεῖ +Ἰουδαῖος +οὐδείς +ἀδικέω +ὡς +καί +σύ +καλός +ἐπιγινώσκω +οὖν +μέν +εἰ +ἀδικέω +καί +ἄξιος +θάνατος +τὶς +πράσσω +οὐ +παραιτέομαι +ὁ +ἀποθνῄσκω +δέ +εἰ +οὐδείς +εἰμί +ὅς +οὗτος +κατηγορέω +ἐγώ +οὐδείς +δύναμαι +ἐγώ +αὐτός +χαρίζομαι +Καῖσαρ +ἐπικαλέω +τότε +ὁ +Φῆστος +συλλαλέω +μετά +ὁ +συμβούλιον +ἀποκρίνομαι +Καῖσαρ +ἐπικαλέω +ἐπί +Καῖσαρ +πορεύομαι +δέ +ἡμέρα +τὶς +διαγίνομαι +Ἀγρίππας +ὁ +βασιλεύς +καί +Βερνίκη +καταντάω +εἰς +Καισάρεια +ἀσπάζομαι +ὁ +Φῆστος +δέ +ὡς +πολύς +ἡμέρα +διατρίβω +ἐκεῖ +ὁ +Φῆστος +ὁ +βασιλεύς +ἀνατίθημι +ὁ +κατά +ὁ +Παῦλος +λέγω +ἀνήρ +τὶς +εἰμί +καταλείπω +ὑπό +Φῆλιξ +δέσμιος +περί +ὅς +γίνομαι +ἐγώ +εἰς +Ἱεροσόλυμα +ἐμφανίζω +ὁ +ἀρχιερεύς +καί +ὁ +πρεσβύτερος +ὁ +Ἰουδαῖος +αἰτέω +κατά +αὐτός +καταδίκη +πρός +ὅς +ἀποκρίνομαι +ὅτι +οὐ +εἰμί +ἔθος +Ῥωμαῖος +χαρίζομαι +τὶς +ἄνθρωπος +πρίν +ἤ +ὁ +κατηγορέω +κατά +πρόσωπον +ἔχω +ὁ +κατήγορος +τέ +τόπος +ἀπολογία +λαμβάνω +περί +ὁ +ἔγκλημα +οὖν +συνέρχομαι +ἐνθάδε +ἀναβολή +μηδείς +ποιέω +ὁ +ἑξῆς +καθίζω +ἐπί +ὁ +βῆμα +κελεύω +ἄγω +ὁ +ἀνήρ +περί +ὅς +ἵστημι +ὁ +κατήγορος +φέρω +οὐδείς +αἰτία +ὅς +ἐγώ +ὑπονοέω +πονηρός +δέ +ζήτημα +τὶς +περί +ὁ +ἴδιος +δεισιδαιμονία +ἔχω +πρός +αὐτός +καί +περί +τὶς +Ἰησοῦς +θνῄσκω +ὅς +ζάω +φάσκω +ὁ +Παῦλος +δέ +ἐγώ +ἀπορέω +ὁ +περί +οὗτος +ζήτησις +λέγω +εἰ +βούλομαι +πορεύομαι +εἰς +Ἱεροσόλυμα +κἀκεῖ +κρίνω +περί +οὗτος +δέ +ὁ +Παῦλος +ἐπικαλέω +τηρέω +αὐτός +εἰς +ὁ +ὁ +σεβαστός +διάγνωσις +κελεύω +τηρέω +αὐτός +ἕως +ὅς +ἀναπέμπω +αὐτός +πρός +Καῖσαρ +δέ +Ἀγρίππας +πρός +ὁ +Φῆστος +βούλομαι +καί +αὐτός +ὁ +ἄνθρωπος +ἀκούω +φημί +αὔριον +ἀκούω +αὐτός +οὖν +ὁ +ἐπαύριον +ἔρχομαι +ὁ +Ἀγρίππας +καί +ὁ +Βερνίκη +μετά +πολύς +φαντασία +καί +εἰσέρχομαι +εἰς +ὁ +ἀκροατήριον +σύν +τέ +χιλίαρχος +καί +ἀνήρ +ὁ +κατά +ἐξοχή +ὁ +πόλις +καί +κελεύω +ὁ +Φῆστος +ἄγω +ὁ +Παῦλος +καί +φημί +ὁ +Φῆστος +Ἀγρίππας +βασιλεύς +καί +πᾶς +ὁ +συμπάρειμι +ἐγώ +ἀνήρ +θεωρέω +οὗτος +περί +ὅς +ἅπας +ὁ +πλῆθος +ὁ +Ἰουδαῖος +ἐντυγχάνω +ἐγώ +ἐν +τέ +Ἱεροσόλυμα +καί +ἐνθάδε +βοάω +μή +δεῖ +αὐτός +ζάω +μηκέτι +δέ +ἐγώ +καταλαμβάνω +μηδείς +ἄξιος +θάνατος +αὐτός +πράσσω +δέ +αὐτός +οὗτος +ἐπικαλέω +ὁ +σεβαστός +κρίνω +πέμπω +περί +ὅς +ἀσφαλής +τὶς +γράφω +ὁ +κύριος +οὐ +ἔχω +διό +προάγω +αὐτός +ἐπί +σύ +καί +μάλιστα +ἐπί +σύ +βασιλεύς +Ἀγρίππας +ὅπως +ὁ +ἀνάκρισις +γίνομαι +ἔχω +τίς +γράφω +γάρ +ἄλογος +ἐγώ +δοκέω +πέμπω +δέσμιος +μή +καί +ὁ +κατά +αὐτός +αἰτία +σημαίνω +δέ +Ἀγρίππας +πρός +ὁ +Παῦλος +φημί +ἐπιτρέπω +σύ +ὑπέρ +σεαυτοῦ +λέγω +τότε +ὁ +Παῦλος +ἐκτείνω +ὁ +χείρ +ἀπολογέομαι +βασιλεύς +Ἀγρίππας +περί +πᾶς +ὅς +ἐγκαλέω +ὑπό +Ἰουδαῖος +ἡγέομαι +ἐμαυτοῦ +μακάριος +ἐπί +σύ +σήμερον +ἀπολογέομαι +μέλλω +μάλιστα +εἰμί +σύ +γνώστης +πᾶς +ὁ +κατά +Ἰουδαῖος +τέ +ἔθος +καί +ζήτημα +διό +δέομαι +μακροθύμως +ἀκούω +ἐγώ +μέν +οὖν +ὁ +βίωσις +ἐγώ +ἐκ +νεότης +ὁ +ἀπό +ἀρχή +γίνομαι +ἐν +ὁ +ἔθνος +ἐγώ +τέ +ἐν +Ἱεροσόλυμα +οἶδα +πᾶς +Ἰουδαῖος +προγινώσκω +ἐγώ +ἄνωθεν +ἐάν +θέλω +μαρτυρέω +ὅτι +κατά +ὁ +ἀκριβής +αἵρεσις +ὁ +ἡμέτερος +θρησκεία +ζάω +Φαρισαῖος +καί +νῦν +ἐπί +ἐλπίς +ὁ +εἰς +ὁ +πατήρ +ἐγώ +γίνομαι +ὑπό +ὁ +θεός +ἐπαγγελία +ἵστημι +κρίνω +εἰς +ὅς +καταντάω +ὁ +δωδεκάφυλον +ἐγώ +ἐν +ἐκτένεια +νύξ +καί +ἡμέρα +λατρεύω +ἐλπίζω +περί +ὅς +ἐλπίς +ἐγκαλέω +ὑπό +Ἰουδαῖος +βασιλεύς +τίς +ἄπιστος +κρίνω +παρά +σύ +εἰ +ὁ +θεός +νεκρός +ἐγείρω +μέν +οὖν +ἐγώ +δοκέω +ἐμαυτοῦ +δεῖ +πρός +ὁ +ὄνομα +Ἰησοῦς +ὁ +Ναζωραῖος +πολύς +ἐναντίος +πράσσω +ὅς +καί +ποιέω +ἐν +Ἱεροσόλυμα +καί +τέ +πολύς +ὁ +ἅγιος +ἐγώ +ἐν +φυλακή +κατακλείω +ὁ +παρά +ὁ +ἀρχιερεύς +ἐξουσία +λαμβάνω +τέ +ἀναιρέω +αὐτός +καταφέρω +ψῆφος +καί +κατά +πᾶς +ὁ +συναγωγή +πολλάκις +τιμωρέω +αὐτός +ἀναγκάζω +βλασφημέω +τέ +περισσῶς +ἐμμαίνομαι +αὐτός +διώκω +ἕως +καί +εἰς +ὁ +ἔξω +πόλις +ἐν +ὅς +πορεύομαι +εἰς +ὁ +Δαμασκός +μετά +ἐξουσία +καί +ἐπιτροπή +ὁ +ὁ +ἀρχιερεύς +ἡμέρα +μέσος +κατά +ὁ +ὁδός +ὁράω +οὐρανόθεν +ὑπέρ +ὁ +λαμπρότης +ὁ +ἥλιος +περιλάμπω +φῶς +ἐγώ +καί +ὁ +σύν +ἐγώ +πορεύομαι +βασιλεύς +τέ +πᾶς +ἐγώ +καταπίπτω +εἰς +ὁ +γῆ +ἀκούω +φωνή +λέγω +πρός +ἐγώ +ὁ +Ἑβραΐς +διάλεκτος +Σαούλ +Σαούλ +τίς +ἐγώ +διώκω +σκληρός +σύ +πρός +κέντρον +λακτίζω +δέ +ἐγώ +λέγω +τίς +εἰμί +κύριος +δέ +ὁ +κύριος +λέγω +ἐγώ +εἰμί +Ἰησοῦς +ὅς +σύ +διώκω +ἀλλά +ἀνίστημι +καί +ἵστημι +ἐπί +ὁ +πούς +σύ +γάρ +εἰς +οὗτος +ὁράω +σύ +προχειρίζομαι +σύ +ὑπηρέτης +καί +μάρτυς +τέ +ὅς +ὁράω +ἐγώ +τέ +ὅς +ὁράω +σύ +ἐξαιρέω +σύ +ἐκ +ὁ +λαός +καί +ἐκ +ὁ +ἔθνος +εἰς +ὅς +ἐγώ +ἀποστέλλω +σύ +ἀνοίγω +ὀφθαλμός +αὐτός +ὁ +ἐπιστρέφω +ἀπό +σκότος +εἰς +φῶς +καί +ὁ +ἐξουσία +ὁ +Σατανᾶς +ἐπί +ὁ +θεός +ὁ +λαμβάνω +αὐτός +ἄφεσις +ἁμαρτία +καί +κλῆρος +ἐν +ὁ +ἁγιάζω +πίστις +ὁ +εἰς +ἐγώ +ὅθεν +βασιλεύς +Ἀγρίππας +οὐ +γίνομαι +ἀπειθής +ὁ +οὐράνιος +ὀπτασία +ἀλλά +τέ +ὁ +ἐν +Δαμασκός +πρῶτος +καί +Ἱεροσόλυμα +τέ +πᾶς +ὁ +χώρα +ὁ +Ἰουδαία +καί +ὁ +ἔθνος +ἀπαγγέλλω +μετανοέω +καί +ἐπιστρέφω +ἐπί +ὁ +θεός +ἄξιος +ὁ +μετάνοια +ἔργον +πράσσω +ἕνεκα +οὗτος +Ἰουδαῖος +ἐγώ +συλλαμβάνω +ἐν +ὁ +ἱερός +πειράομαι +διαχειρίζω +οὖν +τυγχάνω +ἐπικουρία +ὁ +ἀπό +ὁ +θεός +ἄχρι +ὁ +ἡμέρα +οὗτος +ἵστημι +μαρτύρομαι +τέ +μικρός +καί +μέγας +οὐδείς +λέγω +ἐκτός +ὅς +μέλλω +γίνομαι +τέ +ὁ +προφήτης +καί +Μωϋσῆς +λαλέω +εἰ +παθητός +ὁ +Χριστός +εἰ +πρῶτος +ἐκ +ἀνάστασις +νεκρός +μέλλω +φῶς +καταγγέλλω +τέ +ὁ +λαός +καί +ὁ +ἔθνος +δέ +οὗτος +αὐτός +ἀπολογέομαι +ὁ +Φῆστος +μέγας +ὁ +φωνή +φημί +μαίνομαι +Παῦλος +ὁ +πολύς +γράμμα +σύ +εἰς +μανία +περιτρέπω +δέ +ὁ +Παῦλος +φημί +κράτιστος +Φῆστος +οὐ +μαίνομαι +ἀλλά +ἀλήθεια +καί +σωφροσύνη +ῥῆμα +ἀποφθέγγομαι +γάρ +ἐπίσταμαι +περί +οὗτος +ὁ +βασιλεύς +πρός +ὅς +καί +παρρησιάζομαι +λαλέω +γάρ +λανθάνω +αὐτός +οὗτος +οὐ +πείθω +οὐδείς +γάρ +οὐ +εἰμί +πράσσω +ἐν +γωνία +οὗτος +βασιλεύς +Ἀγρίππας +πιστεύω +ὁ +προφήτης +οἶδα +ὅτι +πιστεύω +δέ +ὁ +Ἀγρίππας +πρός +ὁ +Παῦλος +ἐν +ὀλίγος +ἐγώ +πείθω +Χριστιανός +ποιέω +δέ +ὁ +Παῦλος +ἄν +εὔχομαι +ὁ +θεός +καί +ἐν +ὀλίγος +καί +ἐν +μέγας +οὐ +μόνος +σύ +ἀλλά +καί +πᾶς +ὁ +ἀκούω +ἐγώ +σήμερον +γίνομαι +τοιοῦτος +ὁποῖος +καί +ἐγώ +εἰμί +παρεκτός +ὁ +δεσμός +οὗτος +ἀνίστημι +τέ +ὁ +βασιλεύς +καί +ὁ +ἡγεμών +τέ +ὁ +Βερνίκη +καί +ὁ +συγκάθημαι +αὐτός +καί +ἀναχωρέω +λαλέω +πρός +ἀλλήλων +λέγω +ὅτι +οὐδείς +θάνατος +ἤ +δεσμός +ἄξιος +πράσσω +ὁ +ἄνθρωπος +οὗτος +δέ +Ἀγρίππας +ὁ +Φῆστος +φημί +ἀπολύω +δύναμαι +ὁ +ἄνθρωπος +οὗτος +εἰ +μή +ἐπικαλέω +Καῖσαρ +δέ +ὡς +κρίνω +ὁ +ἀποπλέω +ἐγώ +εἰς +ὁ +Ἰταλία +παραδίδωμι +τέ +ὁ +Παῦλος +καί +τὶς +ἕτερος +δεσμώτης +ἑκατοντάρχης +ὄνομα +Ἰούλιος +σπεῖρα +σεβαστός +δέ +ἐπιβαίνω +πλοῖον +Ἀδραμυττηνός +μέλλω +πλέω +εἰς +ὁ +κατά +ὁ +Ἀσία +τόπος +ἀνάγω +εἰμί +σύν +ἐγώ +Ἀρίσταρχος +Μακεδών +Θεσσαλονικεύς +τέ +ὁ +ἕτερος +κατάγω +εἰς +Σιδών +τέ +ὁ +Ἰούλιος +φιλανθρώπως +ὁ +Παῦλος +χράομαι +ἐπιτρέπω +πρός +ὁ +φίλος +πορεύομαι +ἐπιμέλεια +τυγχάνω +κἀκεῖθεν +ἀνάγω +ὑποπλέω +ὁ +Κύπρος +διά +ὁ +ὁ +ἄνεμος +εἰμί +ἐναντίος +τέ +ὁ +πέλαγος +ὁ +κατά +ὁ +Κιλικία +καί +Παμφυλία +διαπλέω +κατέρχομαι +εἰς +Μύρα +ὁ +Λυκία +ὁ +ἑκατοντάρχης +κἀκεῖ +εὑρίσκω +πλοῖον +Ἀλεξανδρῖνος +πλέω +εἰς +ὁ +Ἰταλία +ἐμβιβάζω +ἐγώ +εἰς +αὐτός +δέ +ἐν +ἱκανός +ἡμέρα +βραδυπλοέω +καί +μόλις +γίνομαι +κατά +ὁ +Κνίδος +μή +προσεάω +ἐγώ +ὁ +ἄνεμος +ὑποπλέω +ὁ +Κρήτη +κατά +Σαλμώνη +τέ +μόλις +παραλέγομαι +αὐτός +ἔρχομαι +εἰς +τόπος +τὶς +καλέω +καλός +λιμήν +ὅς +ἐγγύς +πόλις +Λασαία +εἰμί +δέ +ἱκανός +χρόνος +διαγίνομαι +καί +εἰμί +ἤδη +ἐπισφαλής +ὁ +πλόος +διά +ὁ +καί +ὁ +νηστεία +ἤδη +παρέρχομαι +παραινέω +ὁ +Παῦλος +λέγω +αὐτός +ἀνήρ +θεωρέω +ὅτι +μετά +ὕβρις +καί +πολύς +ζημία +οὐ +μόνος +ὁ +φορτίον +καί +ὁ +πλοῖον +ἀλλά +καί +ὁ +ψυχή +ἐγώ +εἰμί +μέλλω +ὁ +πλόος +δέ +ὁ +ἑκατοντάρχης +ὁ +κυβερνήτης +καί +ὁ +ναύκληρος +μᾶλλον +πείθω +ἤ +ὁ +ὑπό +Παῦλος +λέγω +δέ +ἀνεύθετος +ὁ +λιμήν +ὑπάρχω +πρός +παραχειμασία +ὁ +πολύς +τίθημι +βουλή +ἀνάγω +ἐκεῖθεν +εἰ +πῶς +δύναμαι +καταντάω +εἰς +Φοῖνιξ +λιμήν +ὁ +Κρήτη +βλέπω +κατά +λίψ +καί +κατά +χῶρος (II) +παραχειμάζω +δέ +ὑποπνέω +νότος +δοκέω +ὁ +πρόθεσις +κρατέω +αἴρω +ἆσσον +παραλέγομαι +ὁ +Κρήτη +δέ +μετά +οὐ +πολύς +βάλλω +κατά +αὐτός +ἄνεμος +τυφωνικός +ὁ +καλέω +εὐρακύλων +δέ +συναρπάζω +ὁ +πλοῖον +καί +μή +δύναμαι +ἀντοφθαλμέω +ὁ +ἄνεμος +ἐπιδίδωμι +φέρω +δέ +ὑποτρέχω +νησίον +τὶς +καλέω +Καῦδα +ἰσχύω +μόλις +περικρατής +γίνομαι +ὁ +σκάφη +ὅς +αἴρω +βοήθεια +χράομαι +ὑποζώννυμι +ὁ +πλοῖον +τέ +φοβέω +μή +εἰς +ὁ +Σύρτις +ἐκπίπτω +χαλάω +ὁ +σκεῦος +οὕτω +φέρω +δέ +σφοδρῶς +χειμάζω +ἐγώ +ὁ +ἑξῆς +ἐκβολή +ποιέω +καί +ὁ +τρίτος +αὐτόχειρ +ὁ +σκευή +ὁ +πλοῖον +ῥίπτω +δέ +μήτε +ἥλιος +μήτε +ἄστρον +ἐπιφαίνω +ἐπί +πολύς +ἡμέρα +τέ +χειμών +οὐ +ὀλίγος +ἐπίκειμαι +λοιπός +περιαιρέω +ἐλπίς +πᾶς +ὁ +σῴζω +ἐγώ +τέ +πολύς +ἀσιτία +ὑπάρχω +τότε +ἵστημι +ὁ +Παῦλος +ἐν +μέσος +αὐτός +λέγω +ὦ +ἀνήρ +μέν +δεῖ +πειθαρχέω +ἐγώ +μή +ἀνάγω +ἀπό +ὁ +Κρήτη +τέ +κερδαίνω +ὁ +ὕβρις +οὗτος +καί +ὁ +ζημία +καί +ὁ +νῦν +παραινέω +σύ +εὐθυμέω +γάρ +ἀποβολή +ψυχή +οὐδείς +εἰμί +ἐκ +σύ +πλήν +ὁ +πλοῖον +γάρ +παρίστημι +ἐγώ +οὗτος +ὁ +νύξ +ὁ +θεός +ὅς +εἰμί +ὅς +καί +λατρεύω +ἄγγελος +λέγω +μή +φοβέω +Παῦλος +Καῖσαρ +σύ +παρίστημι +δεῖ +καί +ὁράω +χαρίζομαι +σύ +ὁ +θεός +πᾶς +ὁ +πλέω +μετά +σύ +διό +εὐθυμέω +ἀνήρ +γάρ +πιστεύω +ὁ +θεός +ὅτι +οὕτω +εἰμί +κατά +ὅς +τρόπος +λαλέω +ἐγώ +δέ +δεῖ +εἰς +νῆσος +τὶς +ἐγώ +ἐκπίπτω +δέ +ὡς +τεσσαρεσκαιδέκατος +νύξ +γίνομαι +διαφέρω +ἐγώ +ἐν +ὁ +Ἀδρίας +κατά +μέσος +ὁ +νύξ +ὑπονοέω +ὁ +ναύτης +προσάγω +τὶς +χώρα +αὐτός +καί +βολίζω +εὑρίσκω +ὀργυιά +εἴκοσι +δέ +βραχύς +διΐστημι +καί +πάλιν +βολίζω +εὑρίσκω +ὀργυιά +δεκαπέντε +τέ +φοβέω +μή +πού +κατά +τραχύς +τόπος +ἐκπίπτω +ἐκ +πρύμνα +ῥίπτω +ἄγκυρα +τέσσαρες +εὔχομαι +ἡμέρα +γίνομαι +δέ +ὁ +ναύτης +ζητέω +φεύγω +ἐκ +ὁ +πλοῖον +καί +χαλάω +ὁ +σκάφη +εἰς +ὁ +θάλασσα +πρόφασις +ὡς +ἐκ +πρῷρα +ἄγκυρα +ἐκτείνω +μέλλω +λέγω +ὁ +Παῦλος +ὁ +ἑκατοντάρχης +καί +ὁ +στρατιώτης +ἐάν +μή +οὗτος +μένω +ἐν +ὁ +πλοῖον +σύ +σῴζω +οὐ +δύναμαι +τότε +ἀποκόπτω +ὁ +στρατιώτης +ὁ +σχοινίον +ὁ +σκάφη +καί +ἐάω +αὐτός +ἐκπίπτω +δέ +ἄχρι +ὅς +ἡμέρα +μέλλω +γίνομαι +παρακαλέω +ὁ +Παῦλος +ἅπας +μεταλαμβάνω +τροφή +λέγω +τεσσαρεσκαιδέκατος +ἡμέρα +σήμερον +προσδοκάω +ἄσιτος +διατελέω +μηδείς +προσλαμβάνω +διό +παρακαλέω +σύ +μεταλαμβάνω +τροφή +γάρ +οὗτος +πρός +ὁ +ὑμέτερος +σωτηρία +ὑπάρχω +γάρ +οὐδείς +σύ +θρίξ +ἀπό +ὁ +κεφαλή +ἀπόλλυμι +δέ +λέγω +οὗτος +καί +λαμβάνω +ἄρτος +εὐχαριστέω +ὁ +θεός +ἐνώπιον +πᾶς +καί +κλάω +ἄρχω +ἐσθίω +δέ +εὔθυμος +γίνομαι +πᾶς +καί +αὐτός +προσλαμβάνω +τροφή +δέ +εἰμί +ὁ +πᾶς +ψυχή +ἐν +ὁ +πλοῖον +διακόσιοι +ἑβδομήκοντα +ἕξ +δέ +κορέννυμι +τροφή +κουφίζω +ὁ +πλοῖον +ἐκβάλλω +ὁ +σῖτος +εἰς +ὁ +θάλασσα +δέ +ὅτε +ἡμέρα +γίνομαι +ὁ +γῆ +οὐ +ἐπιγινώσκω +δέ +κατανοέω +κόλπος +τὶς +ἔχω +αἰγιαλός +εἰς +ὅς +ἐξωθέω +ὁ +πλοῖον +βουλεύω +εἰ +δύναμαι +καί +ὁ +ἄγκυρα +περιαιρέω +ἐάω +εἰς +ὁ +θάλασσα +ἅμα +ἀνίημι +ὁ +ζευκτηρία +ὁ +πηδάλιον +καί +ἐπαίρω +ὁ +ἀρτέμων +ὁ +πνέω +κατέχω +εἰς +ὁ +αἰγιαλός +δέ +περιπίπτω +εἰς +τόπος +διθάλασσος +ἐπικέλλω +ὁ +ναῦς +καί +μέν +ὁ +πρῷρα +ἐρείδω +μένω +ἀσάλευτος +δέ +ὁ +πρύμνα +λύω +ὑπό +ὁ +βία +δέ +ὁ +στρατιώτης +βουλή +γίνομαι +ἵνα +ὁ +δεσμώτης +ἀποκτείνω +μή +τὶς +ἐκκολυμβάω +διαφεύγω +δέ +ὁ +ἑκατοντάρχης +βούλομαι +διασῴζω +ὁ +Παῦλος +κωλύω +αὐτός +ὁ +βούλημα +τέ +κελεύω +ὁ +δύναμαι +κολυμβάω +ἀπορίπτω +πρῶτος +ἐπί +ὁ +γῆ +ἔξειμι +καί +ὁ +λοιπός +μέν +ὅς +ἐπί +σανίς +δέ +ὅς +ἐπί +τὶς +ὁ +ἀπό +ὁ +πλοῖον +καί +οὕτω +γίνομαι +πᾶς +διασῴζω +ἐπί +ὁ +γῆ +καί +διασῴζω +τότε +ἐπιγινώσκω +ὅτι +Μελίτη +ὁ +νῆσος +καλέω +τέ +ὁ +βάρβαρος +παρέχω +ὁ +οὐ +τυγχάνω +φιλανθρωπία +ἐγώ +γάρ +ἅπτω +πυρά +προσλαμβάνω +πᾶς +ἐγώ +διά +ὁ +ὑετός +ὁ +ἐφίστημι +καί +διά +ὁ +ψῦχος +δέ +συστρέφω +ὁ +Παῦλος +φρύγανον +τὶς +πλῆθος +καί +ἐπιτίθημι +ἐπί +ὁ +πυρά +ἔχιδνα +ἀπό +ὁ +θέρμη +ἐξέρχομαι +καθάπτω +ὁ +χείρ +αὐτός +δέ +ὡς +ὁράω +ὁ +βάρβαρος +κρεμάννυμι +ὁ +θηρίον +ἐκ +ὁ +χείρ +αὐτός +πρός +ἀλλήλων +λέγω +πάντως +φονεύς +εἰμί +ὁ +ἄνθρωπος +οὗτος +ὅς +διασῴζω +ἐκ +ὁ +θάλασσα +ζάω +ὁ +δίκη +οὐ +ἐάω +μέν +οὖν +ὁ +ἀποτινάσσω +ὁ +θηρίον +εἰς +ὁ +πῦρ +πάσχω +οὐδείς +κακός +δέ +ὁ +προσδοκάω +αὐτός +μέλλω +πίμπρημι +ἤ +καταπίπτω +ἄφνω +νεκρός +δέ +ἐπί +πολύς +αὐτός +προσδοκάω +καί +θεωρέω +μηδείς +ἄτοπος +εἰς +αὐτός +γίνομαι +μεταβάλλω +λέγω +αὐτός +εἰμί +θεός +δέ +ἐν +ὁ +περί +ὁ +τόπος +ἐκεῖνος +ὑπάρχω +χωρίον +ὁ +πρῶτος +ὁ +νῆσος +ὄνομα +Πόπλιος +ὅς +ἀναδέχομαι +ἐγώ +ἡμέρα +τρεῖς +φιλοφρόνως +ξενίζω +δέ +γίνομαι +ὁ +πατήρ +ὁ +Πόπλιος +πυρετός +καί +δυσεντέριον +συνέχω +κατάκειμαι +πρός +ὅς +εἰσέρχομαι +καί +προσεύχομαι +ὁ +Παῦλος +ἐπιτίθημι +ὁ +χείρ +αὐτός +ἰάομαι +αὐτός +δέ +οὗτος +γίνομαι +καί +ὁ +λοιπός +ὁ +ἐν +ὁ +νῆσος +ἔχω +ἀσθένεια +προσέρχομαι +καί +θεραπεύω +ὅς +καί +πολύς +τιμή +τιμάω +ἐγώ +καί +ἀνάγω +ἐπιτίθημι +ὁ +πρός +ὁ +χρεία +δέ +μετά +τρεῖς +μήν (II) +ἀνάγω +ἐν +πλοῖον +παραχειμάζω +ἐν +ὁ +νῆσος +Ἀλεξανδρῖνος +παράσημος +Διόσκουροι +καί +κατάγω +εἰς +Συράκουσαι +ἐπιμένω +ἡμέρα +τρεῖς +ὅθεν +περιέρχομαι +καταντάω +εἰς +Ῥήγιον +καί +μετά +εἷς +ἡμέρα +ἐπιγίνομαι +νότος +δευτεραῖος +ἔρχομαι +εἰς +Ποτίολοι +οὗ +εὑρίσκω +ἀδελφός +παρακαλέω +παρά +αὐτός +ἐπιμένω +ἡμέρα +ἑπτά +καί +οὕτω +εἰς +ὁ +Ῥώμη +ἔρχομαι +κἀκεῖθεν +ὁ +ἀδελφός +ἀκούω +ὁ +περί +ἐγώ +ἔρχομαι +εἰς +ἀπάντησις +ἐγώ +ἄχρι +Ἀππίου Φόρον +Ἀππίου Φόρον +καί +τρεῖς +ταβέρνη +ὅς +ὁράω +ὁ +Παῦλος +εὐχαριστέω +ὁ +θεός +λαμβάνω +θάρσος +δέ +ὅτε +εἰσέρχομαι +εἰς +Ῥώμη +ἐπιτρέπω +ὁ +Παῦλος +μένω +κατά +ἑαυτοῦ +σύν +ὁ +φυλάσσω +αὐτός +στρατιώτης +δέ +γίνομαι +μετά +ἡμέρα +τρεῖς +συγκαλέω +αὐτός +ὁ +εἰμί +ὁ +Ἰουδαῖος +πρῶτος +δέ +συνέρχομαι +αὐτός +λέγω +πρός +αὐτός +ἀνήρ +ἀδελφός +ἐγώ +οὐδείς +ἐναντίος +ποιέω +ὁ +λαός +ἤ +ὁ +ἔθος +ὁ +πατρῷος +δέσμιος +ἐκ +Ἱεροσόλυμα +παραδίδωμι +εἰς +ὁ +χείρ +ὁ +Ῥωμαῖος +ὅστις +ἀνακρίνω +ἐγώ +βούλομαι +ἀπολύω +διά +ὁ +μηδείς +αἰτία +θάνατος +ὑπάρχω +ἐν +ἐγώ +δέ +ἀντιλέγω +ὁ +Ἰουδαῖος +ἀναγκάζω +ἐπικαλέω +Καῖσαρ +οὐ +ὡς +ὁ +ἔθνος +ἐγώ +τὶς +κατηγορέω +ἔχω +οὖν +διά +οὗτος +ὁ +αἰτία +παρακαλέω +σύ +ὁράω +καί +προσλαλέω +γάρ +ἕνεκα +ὁ +ἐλπίς +ὁ +Ἰσραήλ +ὁ +ἅλυσις +οὗτος +περίκειμαι +δέ +ὁ +πρός +αὐτός +λέγω +οὔτε +ἐγώ +γράμμα +περί +σύ +δέχομαι +ἀπό +ὁ +Ἰουδαία +οὔτε +παραγίνομαι +τὶς +ὁ +ἀδελφός +ἀπαγγέλλω +ἤ +λαλέω +τὶς +περί +σύ +πονηρός +δέ +ἀξιόω +παρά +σύ +ἀκούω +ὅς +φρονέω +γάρ +μέν +περί +ὁ +αἵρεσις +οὗτος +γνωστός +ἐγώ +εἰμί +ὅτι +πανταχοῦ +ἀντιλέγω +δέ +τάσσω +αὐτός +ἡμέρα +ἔρχομαι +πρός +αὐτός +εἰς +ὁ +ξενία +πολύς +ὅς +ἐκτίθημι +διαμαρτύρομαι +ὁ +βασιλεία +ὁ +θεός +τέ +πείθω +αὐτός +περί +ὁ +Ἰησοῦς +ἀπό +τέ +ὁ +νόμος +Μωϋσῆς +καί +ὁ +προφήτης +ἀπό +πρωΐ +ἕως +ἑσπέρα +καί +μέν +ὁ +πείθω +ὁ +λέγω +δέ +ὁ +ἀπιστέω +δέ +ἀσύμφωνος +εἰμί +πρός +ἀλλήλων +ἀπολύω +λέγω +ὁ +Παῦλος +ῥῆμα +εἷς +ὅτι +καλῶς +ὁ +πνεῦμα +ὁ +ἅγιος +λαλέω +διά +Ἠσαΐας +ὁ +προφήτης +πρός +ὁ +πατήρ +σύ +λέγω +πορεύομαι +πρός +ὁ +λαός +οὗτος +καί +λέγω +ἀκοή +ἀκούω +καί +οὐ +μή +συνίημι +καί +βλέπω +βλέπω +καί +οὐ +μή +ὁράω +γάρ +παχύνω +ὁ +καρδία +ὁ +λαός +οὗτος +καί +ὁ +οὖς +βαρέως +ἀκούω +καί +ὁ +ὀφθαλμός +αὐτός +καμμύω +μή +ποτέ +ὁράω +ὁ +ὀφθαλμός +καί +ὁ +οὖς +ἀκούω +καί +ὁ +καρδία +συνίημι +καί +ἐπιστρέφω +καί +ἰάομαι +αὐτός +οὖν +γνωστός +εἰμί +σύ +ὅτι +ὁ +ἔθνος +ἀποστέλλω +οὗτος +ὁ +σωτήριος +ὁ +θεός +αὐτός +καί +ἀκούω +δέ +ἐμμένω +διετία +ὅλος +ἐν +ἴδιος +μίσθωμα +καί +ἀποδέχομαι +πᾶς +ὁ +εἰσπορεύομαι +πρός +αὐτός +κηρύσσω +ὁ +βασιλεία +ὁ +θεός +καί +διδάσκω +ὁ +περί +ὁ +κύριος +Ἰησοῦς +Χριστός +μετά +πᾶς +παρρησία +ἀκωλύτως +Παῦλος +δοῦλος (II) +Χριστός +Ἰησοῦς +κλητός +ἀπόστολος +ἀφορίζω +εἰς +εὐαγγέλιον +θεός +ὅς +προεπαγγέλλω +διά +ὁ +προφήτης +αὐτός +ἐν +γραφή +ἅγιος +περί +ὁ +υἱός +αὐτός +ὁ +γίνομαι +ἐκ +σπέρμα +Δαυίδ +κατά +σάρξ +ὁ +ὁρίζω +υἱός +θεός +ἐν +δύναμις +κατά +πνεῦμα +ἁγιωσύνη +ἐκ +ἀνάστασις +νεκρός +Ἰησοῦς +Χριστός +ὁ +κύριος +ἐγώ +διά +ὅς +λαμβάνω +χάρις +καί +ἀποστολή +εἰς +ὑπακοή +πίστις +ἐν +πᾶς +ὁ +ἔθνος +ὑπέρ +ὁ +ὄνομα +αὐτός +ἐν +ὅς +εἰμί +καί +σύ +κλητός +Ἰησοῦς +Χριστός +πᾶς +ὁ +εἰμί +ἐν +Ῥώμη +ἀγαπητός +θεός +κλητός +ἅγιος +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +μέν +πρῶτος +εὐχαριστέω +ὁ +θεός +ἐγώ +διά +Ἰησοῦς +Χριστός +περί +πᾶς +σύ +ὅτι +ὁ +πίστις +σύ +καταγγέλλω +ἐν +ὅλος +ὁ +κόσμος +γάρ +μάρτυς +ἐγώ +εἰμί +ὁ +θεός +ὅς +λατρεύω +ἐν +ὁ +πνεῦμα +ἐγώ +ἐν +ὁ +εὐαγγέλιον +ὁ +υἱός +αὐτός +ὡς +ἀδιαλείπτως +μνεία +σύ +ποιέω +πάντοτε +ἐπί +ὁ +προσευχή +ἐγώ +δέομαι +εἰ +πῶς +ἤδη +ποτέ +εὐοδόω +ἐν +ὁ +θέλημα +ὁ +θεός +ἔρχομαι +πρός +σύ +γάρ +ἐπιποθέω +ὁράω +σύ +ἵνα +μεταδίδωμι +τὶς +χάρισμα +πνευματικός +σύ +εἰς +ὁ +στηρίζω +σύ +δέ +οὗτος +εἰμί +συμπαρακαλέω +ἐν +σύ +διά +ὁ +ἐν +ἀλλήλων +πίστις +τέ +σύ +καί +ἐγώ +δέ +ἀδελφός +οὐ +θέλω +σύ +ἀγνοέω +ὅτι +πολλάκις +προτίθημι +ἔρχομαι +πρός +σύ +καί +κωλύω +ἄχρι +ὁ +δεῦρο +ἵνα +τὶς +καρπός +ἔχω +καί +ἐν +σύ +καθώς +καί +ἐν +ὁ +λοιπός +ἔθνος +τέ +Ἕλλην +καί +βάρβαρος +τέ +σοφός +καί +ἀνόητος +ὀφειλέτης +εἰμί +οὕτω +ὁ +κατά +ἐγώ +πρόθυμος +καί +σύ +ὁ +ἐν +Ῥώμη +εὐαγγελίζω +γάρ +οὐ +ἐπαισχύνομαι +ὁ +εὐαγγέλιον +γάρ +δύναμις +θεός +εἰμί +εἰς +σωτηρία +πᾶς +ὁ +πιστεύω +τέ +Ἰουδαῖος +πρῶτος +καί +Ἕλλην +γάρ +δικαιοσύνη +θεός +ἐν +αὐτός +ἀποκαλύπτω +ἐκ +πίστις +εἰς +πίστις +καθώς +γράφω +δέ +ὁ +δίκαιος +ἐκ +πίστις +ζάω +γάρ +ἀποκαλύπτω +ὀργή +θεός +ἀπό +οὐρανός +ἐπί +πᾶς +ἀσέβεια +καί +ἀδικία +ἄνθρωπος +ὁ +ὁ +ἀλήθεια +ἐν +ἀδικία +κατέχω +διότι +ὁ +γνωστός +ὁ +θεός +φανερός +εἰμί +ἐν +αὐτός +γάρ +ὁ +θεός +αὐτός +φανερόω +γάρ +ὁ +ἀόρατος +αὐτός +ὁ +τέ +ἀΐδιος +αὐτός +δύναμις +καί +θειότης +ἀπό +κτίσις +κόσμος +ὁ +ποίημα +νοέω +καθοράω +εἰς +ὁ +εἰμί +αὐτός +ἀναπολόγητος +διότι +γινώσκω +ὁ +θεός +οὐ +ὡς +θεός +δοξάζω +ἤ +εὐχαριστέω +ἀλλά +ματαιόω +ἐν +ὁ +διαλογισμός +αὐτός +καί +σκοτίζω +ὁ +ἀσύνετος +αὐτός +καρδία +φάσκω +εἰμί +σοφός +μωραίνω +καί +ἀλλάσσω +ὁ +δόξα +ὁ +ἄφθαρτος +θεός +ἐν +ὁμοίωμα +εἰκών +φθαρτός +ἄνθρωπος +καί +πετεινός +καί +τετράπους +καί +ἑρπετόν +διό +παραδίδωμι +αὐτός +ὁ +θεός +ἐν +ὁ +ἐπιθυμία +ὁ +καρδία +αὐτός +εἰς +ἀκαθαρσία +ὁ +ἀτιμάζω +ὁ +σῶμα +αὐτός +ἐν +αὐτός +ὅστις +μεταλλάσσω +ὁ +ἀλήθεια +ὁ +θεός +ἐν +ὁ +ψεῦδος +καί +σεβάζομαι +καί +λατρεύω +ὁ +κτίσις +παρά +ὁ +κτίζω +ὅς +εἰμί +εὐλογητός +εἰς +ὁ +αἰών +ἀμήν +διά +οὗτος +παραδίδωμι +αὐτός +ὁ +θεός +εἰς +πάθος +ἀτιμία +γάρ +τέ +ὁ +θῆλυς +αὐτός +μεταλλάσσω +ὁ +φυσικός +χρῆσις +εἰς +ὁ +παρά +φύσις +τέ +ὁμοίως +καί +ὁ +ἄρσην +ἀφίημι +ὁ +φυσικός +χρῆσις +ὁ +θῆλυς +ἐκκαίω +ἐν +ὁ +ὄρεξις +αὐτός +εἰς +ἀλλήλων +ἄρσην +ἐν +ἄρσην +ὁ +ἀσχημοσύνη +κατεργάζομαι +καί +ὁ +ἀντιμισθία +ὅς +δεῖ +ὁ +πλάνη +αὐτός +ἐν +ἑαυτοῦ +ἀπολαμβάνω +καί +καθώς +οὐ +δοκιμάζω +ὁ +θεός +ἔχω +ἐν +ἐπίγνωσις +παραδίδωμι +αὐτός +ὁ +θεός +εἰς +ἀδόκιμος +νοῦς +ποιέω +ὁ +μή +καθήκω +πληρόω +πᾶς +ἀδικία +πονηρία +πλεονεξία +κακία +μεστός +φθόνος +φόνος +ἔρις +δόλος +κακοήθεια +ψιθυριστής +κατάλαλος +θεοστυγής +ὑβριστής +ὑπερήφανος +ἀλαζών +ἐφευρετής +κακός +γονεύς +ἀπειθής +ἀσύνετος +ἀσύνθετος +ἄστοργος +ἀνελεήμων +ὅστις +ὁ +δικαίωμα +ὁ +θεός +ἐπιγινώσκω +ὅτι +ὁ +ὁ +τοιοῦτος +πράσσω +ἄξιος +θάνατος +εἰμί +οὐ +μόνος +αὐτός +ποιέω +ἀλλά +καί +συνευδοκέω +ὁ +πράσσω +διό +ἀναπολόγητος +εἰμί +ὦ +ἄνθρωπος +πᾶς +ὁ +κρίνω +γάρ +ἐν +ὅς +κρίνω +ὁ +ἕτερος +σεαυτοῦ +κατακρίνω +γάρ +ὁ +αὐτός +πράσσω +ὁ +κρίνω +δέ +οἶδα +ὅτι +ὁ +κρίμα +ὁ +θεός +εἰμί +κατά +ἀλήθεια +ἐπί +ὁ +ὁ +τοιοῦτος +πράσσω +δέ +λογίζομαι +οὗτος +ὦ +ἄνθρωπος +ὁ +κρίνω +ὁ +ὁ +τοιοῦτος +πράσσω +καί +ποιέω +αὐτός +ὅτι +σύ +ἐκφεύγω +ὁ +κρίμα +ὁ +θεός +ἤ +ὁ +πλοῦτος +ὁ +χρηστότης +αὐτός +καί +ὁ +ἀνοχή +καί +ὁ +μακροθυμία +καταφρονέω +ἀγνοέω +ὅτι +ὁ +χρηστός +ὁ +θεός +εἰς +μετάνοια +σύ +ἄγω +δέ +κατά +ὁ +σκληρότης +σύ +καί +ἀμετανόητος +καρδία +θησαυρίζω +σεαυτοῦ +ὀργή +ἐν +ἡμέρα +ὀργή +καί +ἀποκάλυψις +δικαιοκρισία +ὁ +θεός +ὅς +ἀποδίδωμι +ἕκαστος +κατά +ὁ +ἔργον +αὐτός +μέν +ὁ +κατά +ὑπομονή +ἔργον +ἀγαθός +δόξα +καί +τιμή +καί +ἀφθαρσία +ζητέω +ζωή +αἰώνιος +δέ +ὁ +ἐκ +ἐριθεία +καί +ἀπειθέω +ὁ +ἀλήθεια +δέ +πείθω +ὁ +ἀδικία +ὀργή +καί +θυμός +θλῖψις +καί +στενοχωρία +ἐπί +πᾶς +ψυχή +ἄνθρωπος +ὁ +κατεργάζομαι +ὁ +κακός +τέ +Ἰουδαῖος +πρῶτος +καί +Ἕλλην +δέ +δόξα +καί +τιμή +καί +εἰρήνη +πᾶς +ὁ +ἐργάζομαι +ὁ +ἀγαθός +τέ +Ἰουδαῖος +πρῶτος +καί +Ἕλλην +γάρ +οὐ +εἰμί +προσωπολημψία +παρά +ὁ +θεός +γάρ +ὅσος +ἀνόμως +ἁμαρτάνω +ἀνόμως +καί +ἀπόλλυμι +καί +ὅσος +ἐν +νόμος +ἁμαρτάνω +διά +νόμος +κρίνω +γάρ +οὐ +ὁ +ἀκροατής +νόμος +δίκαιος +παρά +ὁ +θεός +ἀλλά +ὁ +ποιητής +νόμος +δικαιόω +γάρ +ὅταν +ἔθνος +ὁ +μή +νόμος +ἔχω +φύσις +ὁ +ὁ +νόμος +ποιέω +οὗτος +νόμος +μή +ἔχω +ἑαυτοῦ +εἰμί +νόμος +ὅστις +ἐνδείκνυμι +ὁ +ἔργον +ὁ +νόμος +γραπτός +ἐν +ὁ +καρδία +αὐτός +συμμαρτυρέω +αὐτός +ὁ +συνείδησις +καί +μεταξύ +ἀλλήλων +ὁ +λογισμός +κατηγορέω +ἤ +καί +ἀπολογέομαι +ἡμέρα +ἐν +ὅς +κρίνω +ὁ +θεός +ὁ +κρυπτός +ὁ +ἄνθρωπος +κατά +ὁ +εὐαγγέλιον +ἐγώ +διά +Χριστός +Ἰησοῦς +δέ +εἰ +σύ +Ἰουδαῖος +ἐπονομάζω +καί +ἐπαναπαύομαι +νόμος +καί +καυχάομαι +ἐν +θεός +καί +γινώσκω +ὁ +θέλημα +καί +δοκιμάζω +ὁ +διαφέρω +κατηχέω +ἐκ +ὁ +νόμος +τέ +πείθω +σεαυτοῦ +εἰμί +ὁδηγός +τυφλός +φῶς +ὁ +ἐν +σκότος +παιδευτής +ἄφρων +διδάσκαλος +νήπιος +ἔχω +ὁ +μόρφωσις +ὁ +γνῶσις +καί +ὁ +ἀλήθεια +ἐν +ὁ +νόμος +οὖν +ὁ +διδάσκω +ἕτερος +σεαυτοῦ +οὐ +διδάσκω +ὁ +κηρύσσω +μή +κλέπτω +κλέπτω +ὁ +λέγω +μή +μοιχεύω +μοιχεύω +ὁ +βδελύσσομαι +ὁ +εἴδωλον +ἱεροσυλέω +ὅς +ἐν +νόμος +καυχάομαι +διά +ὁ +παράβασις +ὁ +νόμος +ὁ +θεός +ἀτιμάζω +γάρ +ὁ +ὄνομα +ὁ +θεός +διά +σύ +βλασφημέω +ἐν +ὁ +ἔθνος +καθώς +γράφω +γάρ +μέν +περιτομή +ὠφελέω +ἐάν +νόμος +πράσσω +δέ +ἐάν +παραβάτης +νόμος +εἰμί +ὁ +περιτομή +σύ +ἀκροβυστία +γίνομαι +οὖν +ἐάν +ὁ +ἀκροβυστία +ὁ +δικαίωμα +ὁ +νόμος +φυλάσσω +οὐ +ὁ +ἀκροβυστία +αὐτός +εἰς +περιτομή +λογίζομαι +καί +κρίνω +ὁ +ἐκ +φύσις +ἀκροβυστία +ὁ +νόμος +τελέω +σύ +ὁ +διά +γράμμα +καί +περιτομή +παραβάτης +νόμος +γάρ +οὐ +ὁ +ἐν +ὁ +φανερός +Ἰουδαῖος +εἰμί +οὐδέ +ὁ +ἐν +ὁ +φανερός +ἐν +σάρξ +περιτομή +ἀλλά +ὁ +ἐν +ὁ +κρυπτός +Ἰουδαῖος +καί +περιτομή +καρδία +ἐν +πνεῦμα +οὐ +γράμμα +ὅς +ὁ +ἔπαινος +οὐ +ἐκ +ἄνθρωπος +ἀλλά +ἐκ +ὁ +θεός +οὖν +τίς +ὁ +περισσός +ὁ +Ἰουδαῖος +ἤ +τίς +ὁ +ὠφέλεια +ὁ +περιτομή +πολύς +κατά +πᾶς +τρόπος +γάρ +μέν +πρῶτος +ὅτι +πιστεύω +ὁ +λόγιον +ὁ +θεός +γάρ +τίς +εἰ +ἀπιστέω +τὶς +μή +ὁ +ἀπιστία +αὐτός +ὁ +πίστις +ὁ +θεός +καταργέω +μή +γίνομαι +δέ +γίνομαι +ὁ +θεός +ἀληθής +δέ +πᾶς +ἄνθρωπος +ψεύστης +καθάπερ +γράφω +ὅπως +ἄν +δικαιόω +ἐν +ὁ +λόγος +σύ +καί +νικάω +ἐν +ὁ +κρίνω +σύ +δέ +εἰ +ὁ +ἀδικία +ἐγώ +θεός +δικαιοσύνη +συνίστημι +τίς +εἶπον +μή +ἄδικος +ὁ +θεός +ὁ +ἐπιφέρω +ὁ +ὀργή +κατά +ἄνθρωπος +λέγω +μή +γίνομαι +ἐπεί +πῶς +κρίνω +ὁ +θεός +ὁ +κόσμος +δέ +εἰ +ὁ +ἀλήθεια +ὁ +θεός +ἐν +ὁ +ἐμός +ψεῦσμα +περισσεύω +εἰς +ὁ +δόξα +αὐτός +τίς +ἔτι +κἀγώ +ὡς +ἁμαρτωλός +κρίνω +καί +μή +καθώς +βλασφημέω +καί +καθώς +φημί +τὶς +ἐγώ +λέγω +ὅτι +ποιέω +ὁ +κακός +ἵνα +ἔρχομαι +ὁ +ἀγαθός +ὅς +ὁ +κρίμα +ἔνδικος +εἰμί +οὖν +τίς +προέχω +οὐ +πάντως +γάρ +προαιτιάομαι +τέ +Ἰουδαῖος +καί +Ἕλλην +πᾶς +ὑπό +ἁμαρτία +εἰμί +καθώς +γράφω +ὅτι +οὐ +εἰμί +δίκαιος +οὐδέ +εἷς +οὐ +εἰμί +ὁ +συνίημι +οὐ +εἰμί +ὁ +ἐκζητέω +ὁ +θεός +πᾶς +ἐκκλίνω +ἅμα +ἀχρειόω +οὐ +εἰμί +ὁ +ποιέω +χρηστότης +οὐ +εἰμί +ἕως +εἷς +τάφος +ἀνοίγω +ὁ +λάρυγξ +αὐτός +ὁ +γλῶσσα +αὐτός +δολιόω +ἰός +ἀσπίς +ὑπό +ὁ +χεῖλος +αὐτός +ὅς +ὁ +στόμα +ἀρά +καί +πικρία +γέμω +ὀξύς +ὁ +πούς +αὐτός +ἐκχέω +αἷμα +σύντριμμα +καί +ταλαιπωρία +ἐν +ὁ +ὁδός +αὐτός +καί +ὁδός +εἰρήνη +οὐ +γινώσκω +οὐ +εἰμί +φόβος +θεός +ἀπέναντι +ὁ +ὀφθαλμός +αὐτός +δέ +οἶδα +ὅτι +ὅσος +ὁ +νόμος +λέγω +ὁ +ἐν +ὁ +νόμος +λαλέω +ἵνα +πᾶς +στόμα +φράσσω +καί +ὑπόδικος +γίνομαι +πᾶς +ὁ +κόσμος +ὁ +θεός +διότι +ἐκ +ἔργον +νόμος +οὐ +δικαιόω +πᾶς +σάρξ +ἐνώπιον +αὐτός +γάρ +διά +νόμος +ἐπίγνωσις +ἁμαρτία +δέ +νυνί +χωρίς +νόμος +δικαιοσύνη +θεός +φανερόω +μαρτυρέω +ὑπό +ὁ +νόμος +καί +ὁ +προφήτης +δέ +δικαιοσύνη +θεός +διά +πίστις +Ἰησοῦς +Χριστός +εἰς +πᾶς +ὁ +πιστεύω +γάρ +οὐ +εἰμί +διαστολή +γάρ +πᾶς +ἁμαρτάνω +καί +ὑστερέω +ὁ +δόξα +ὁ +θεός +δικαιόω +δωρεάν +ὁ +αὐτός +χάρις +διά +ὁ +ἀπολύτρωσις +ὁ +ἐν +Χριστός +Ἰησοῦς +ὅς +προτίθημι +ὁ +θεός +ἱλαστήριος +διά +πίστις +ἐν +ὁ +αὐτός +αἷμα +εἰς +ἔνδειξις +ὁ +δικαιοσύνη +αὐτός +διά +ὁ +πάρεσις +ὁ +προγίνομαι +ἁμάρτημα +ἐν +ὁ +ἀνοχή +ὁ +θεός +πρός +ὁ +ἔνδειξις +ὁ +δικαιοσύνη +αὐτός +ἐν +ὁ +νῦν +καιρός +εἰς +ὁ +εἰμί +αὐτός +δίκαιος +καί +δικαιόω +ὁ +ἐκ +πίστις +Ἰησοῦς +οὖν +ποῦ +ὁ +καύχησις +ἐκκλείω +διά +ποῖος +νόμος +ὁ +ἔργον +οὐχί +ἀλλά +διά +νόμος +πίστις +γάρ +λογίζομαι +δικαιόω +πίστις +ἄνθρωπος +χωρίς +ἔργον +νόμος +ἤ +Ἰουδαῖος +ὁ +θεός +μόνος +οὐχί +καί +ἔθνος +ναί +καί +ἔθνος +εἴπερ +εἷς +ὁ +θεός +ὅς +δικαιόω +περιτομή +ἐκ +πίστις +καί +ἀκροβυστία +διά +ὁ +πίστις +οὖν +νόμος +καταργέω +διά +ὁ +πίστις +μή +γίνομαι +ἀλλά +νόμος +ἵστημι +οὖν +εἶπον +τίς +εὑρίσκω +Ἀβραάμ +ὁ +προπάτωρ +ἐγώ +κατά +σάρξ +γάρ +εἰ +Ἀβραάμ +ἐκ +ἔργον +δικαιόω +ἔχω +καύχημα +ἀλλά +οὐ +πρός +θεός +γάρ +τίς +ὁ +γραφή +λέγω +δέ +πιστεύω +Ἀβραάμ +ὁ +θεός +καί +λογίζομαι +αὐτός +εἰς +δικαιοσύνη +δέ +ὁ +ἐργάζομαι +ὁ +μισθός +λογίζομαι +οὐ +κατά +χάρις +ἀλλά +κατά +ὀφείλημα +δέ +ὁ +μή +ἐργάζομαι +δέ +πιστεύω +ἐπί +ὁ +δικαιόω +ὁ +ἀσεβής +λογίζομαι +ὁ +πίστις +αὐτός +εἰς +δικαιοσύνη +καθάπερ +καί +Δαυίδ +λέγω +ὁ +μακαρισμός +ὁ +ἄνθρωπος +ὅς +ὁ +θεός +λογίζομαι +δικαιοσύνη +χωρίς +ἔργον +μακάριος +ὅς +ὁ +ἀνομία +ἀφίημι +καί +ὅς +ὁ +ἁμαρτία +ἐπικαλύπτω +μακάριος +ἀνήρ +ὅς +οὐ +μή +λογίζομαι +κύριος +ἁμαρτία +οὖν +ὁ +μακαρισμός +οὗτος +ἐπί +ὁ +περιτομή +ἤ +καί +ἐπί +ὁ +ἀκροβυστία +γάρ +λέγω +λογίζομαι +ὁ +Ἀβραάμ +ὁ +πίστις +εἰς +δικαιοσύνη +οὖν +πῶς +λογίζομαι +εἰμί +ἐν +περιτομή +ἤ +ἐν +ἀκροβυστία +οὐ +ἐν +περιτομή +ἀλλά +ἐν +ἀκροβυστία +καί +λαμβάνω +σημεῖον +περιτομή +σφραγίς +ὁ +δικαιοσύνη +ὁ +πίστις +ὁ +ἐν +ὁ +ἀκροβυστία +εἰς +ὁ +εἰμί +αὐτός +πατήρ +πᾶς +ὁ +πιστεύω +διά +ἀκροβυστία +εἰς +ὁ +λογίζομαι +αὐτός +ὁ +δικαιοσύνη +καί +πατήρ +περιτομή +ὁ +οὐ +ἐκ +περιτομή +μόνος +ἀλλά +καί +ὁ +στοιχέω +ὁ +ἴχνος +ὁ +ἐν +ἀκροβυστία +πίστις +ὁ +πατήρ +ἐγώ +Ἀβραάμ +γάρ +οὐ +διά +νόμος +ὁ +ἐπαγγελία +ὁ +κληρονόμος +κόσμος +αὐτός +εἰμί +ὁ +Ἀβραάμ +ἤ +ὁ +σπέρμα +αὐτός +ἀλλά +διά +δικαιοσύνη +πίστις +γάρ +εἰ +ὁ +ἐκ +νόμος +κληρονόμος +κενόω +ὁ +πίστις +καί +καταργέω +ὁ +ἐπαγγελία +γάρ +ὁ +νόμος +ὀργή +κατεργάζομαι +δέ +οὗ +οὐ +εἰμί +νόμος +οὐδέ +παράβασις +διά +οὗτος +ἐκ +πίστις +ἵνα +κατά +χάρις +εἰς +ὁ +εἰμί +βέβαιος +ὁ +ἐπαγγελία +πᾶς +ὁ +σπέρμα +οὐ +ὁ +ἐκ +ὁ +νόμος +μόνος +ἀλλά +καί +ὁ +ἐκ +πίστις +Ἀβραάμ +ὅς +εἰμί +πατήρ +πᾶς +ἐγώ +κατέναντι +ὅς +πιστεύω +θεός +ὁ +ζῳοποιέω +ὁ +νεκρός +καί +καλέω +ὁ +μή +εἰμί +ὡς +εἰμί +καθώς +γράφω +ὅτι +πατήρ +πολύς +ἔθνος +τίθημι +σύ +ὅς +παρά +ἐλπίς +ἐπί +ἐλπίς +πιστεύω +εἰς +ὁ +γίνομαι +αὐτός +πατήρ +πολύς +ἔθνος +κατά +ὁ +εἶπον +οὕτω +εἰμί +ὁ +σπέρμα +σύ +καί +μή +ἀσθενέω +ὁ +πίστις +κατανοέω +ὁ +ἑαυτοῦ +σῶμα +νεκρόω +ἑκατονταετής +πού +ὑπάρχω +καί +ὁ +νέκρωσις +ὁ +μήτρα +Σάρρα +δέ +εἰς +ὁ +ἐπαγγελία +ὁ +θεός +οὐ +διακρίνω +ὁ +ἀπιστία +ἀλλά +ἐνδυναμόω +ὁ +πίστις +δίδωμι +δόξα +ὁ +θεός +καί +πληροφορέω +ὅτι +εἰμί +δυνατός +ὅς +ἐπαγγέλλομαι +καί +ποιέω +διό +καί +λογίζομαι +αὐτός +εἰς +δικαιοσύνη +δέ +οὐ +γράφω +διά +αὐτός +μόνος +ὅτι +λογίζομαι +αὐτός +ἀλλά +καί +διά +ἐγώ +ὅς +λογίζομαι +μέλλω +ὁ +πιστεύω +ἐπί +ὁ +ἐγείρω +ἐκ +νεκρός +Ἰησοῦς +ὁ +κύριος +ἐγώ +ὅς +παραδίδωμι +διά +ὁ +παράπτωμα +ἐγώ +καί +ἐγείρω +διά +ὁ +δικαίωσις +ἐγώ +οὖν +δικαιόω +ἐκ +πίστις +εἰρήνη +ἔχω +πρός +ὁ +θεός +διά +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +διά +ὅς +καί +ὁ +προσαγωγή +ἔχω +ὁ +πίστις +εἰς +ὁ +χάρις +οὗτος +ἐν +ὅς +ἵστημι +καί +καυχάομαι +ἐπί +ἐλπίς +ὁ +δόξα +ὁ +θεός +δέ +οὐ +μόνος +ἀλλά +καί +καυχάομαι +ἐν +ὁ +θλῖψις +οἶδα +ὅτι +ὁ +θλῖψις +ὑπομονή +κατεργάζομαι +δέ +ὁ +ὑπομονή +δοκιμή +δέ +ὁ +δοκιμή +ἐλπίς +δέ +ὁ +ἐλπίς +οὐ +καταισχύνω +ὅτι +ὁ +ἀγάπη +ὁ +θεός +ἐκχέω +ἐν +ὁ +καρδία +ἐγώ +διά +πνεῦμα +ἅγιος +ὁ +δίδωμι +ἐγώ +γάρ +ἔτι +Χριστός +εἰμί +ἐγώ +ἀσθενής +ἔτι +κατά +καιρός +ὑπέρ +ἀσεβής +ἀποθνῄσκω +γάρ +μόλις +ὑπέρ +δίκαιος +τὶς +ἀποθνῄσκω +γάρ +ὑπέρ +ὁ +ἀγαθός +τάχα +τὶς +καί +τολμάω +ἀποθνῄσκω +δέ +συνίστημι +ὁ +ἑαυτοῦ +ἀγάπη +εἰς +ἐγώ +ὁ +θεός +ὅτι +ἔτι +ἁμαρτωλός +εἰμί +ἐγώ +Χριστός +ὑπέρ +ἐγώ +ἀποθνῄσκω +οὖν +πολύς +μᾶλλον +δικαιόω +νῦν +ἐν +ὁ +αἷμα +αὐτός +σῴζω +διά +αὐτός +ἀπό +ὁ +ὀργή +γάρ +εἰ +ἐχθρός +εἰμί +καταλλάσσω +ὁ +θεός +διά +ὁ +θάνατος +ὁ +υἱός +αὐτός +πολύς +μᾶλλον +καταλλάσσω +σῴζω +ἐν +ὁ +ζωή +αὐτός +δέ +οὐ +μόνος +ἀλλά +καί +καυχάομαι +ἐν +ὁ +θεός +διά +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +διά +ὅς +νῦν +ὁ +καταλλαγή +λαμβάνω +διά +οὗτος +ὥσπερ +διά +εἷς +ἄνθρωπος +ὁ +ἁμαρτία +εἰς +ὁ +κόσμος +εἰσέρχομαι +καί +διά +ὁ +ἁμαρτία +ὁ +θάνατος +καί +οὕτω +εἰς +πᾶς +ἄνθρωπος +ὁ +θάνατος +διέρχομαι +ἐπί +ὅς +πᾶς +ἁμαρτάνω +γάρ +ἄχρι +νόμος +ἁμαρτία +εἰμί +ἐν +κόσμος +δέ +ἁμαρτία +οὐ +ἐλλογέω +μή +εἰμί +νόμος +ἀλλά +βασιλεύω +ὁ +θάνατος +ἀπό +Ἀδάμ +μέχρι +Μωϋσῆς +καί +ἐπί +ὁ +μή +ἁμαρτάνω +ἐπί +ὁ +ὁμοίωμα +ὁ +παράβασις +Ἀδάμ +ὅς +εἰμί +τύπος +ὁ +μέλλω +ἀλλά +οὐ +ὡς +ὁ +παράπτωμα +οὕτω +καί +ὁ +χάρισμα +γάρ +εἰ +ὁ +ὁ +εἷς +παράπτωμα +ὁ +πολύς +ἀποθνῄσκω +πολύς +μᾶλλον +ὁ +χάρις +ὁ +θεός +καί +ὁ +δωρεά +ἐν +χάρις +ὁ +ὁ +εἷς +ἄνθρωπος +Ἰησοῦς +Χριστός +εἰς +ὁ +πολύς +περισσεύω +καί +οὐ +ὡς +διά +εἷς +ἁμαρτάνω +ὁ +δώρημα +γάρ +μέν +ὁ +κρίμα +ἐκ +εἷς +εἰς +κατάκριμα +δέ +ὁ +χάρισμα +ἐκ +πολύς +παράπτωμα +εἰς +δικαίωμα +γάρ +εἰ +ὁ +ὁ +εἷς +παράπτωμα +ὁ +θάνατος +βασιλεύω +διά +ὁ +εἷς +πολύς +μᾶλλον +ὁ +ὁ +περισσεία +ὁ +χάρις +καί +ὁ +δωρεά +ὁ +δικαιοσύνη +λαμβάνω +ἐν +ζωή +βασιλεύω +διά +ὁ +εἷς +Ἰησοῦς +Χριστός +ἄρα +οὖν +ὡς +διά +εἷς +παράπτωμα +εἰς +πᾶς +ἄνθρωπος +εἰς +κατάκριμα +οὕτω +καί +διά +εἷς +δικαίωμα +εἰς +πᾶς +ἄνθρωπος +εἰς +δικαίωσις +ζωή +γάρ +ὥσπερ +διά +ὁ +παρακοή +ὁ +εἷς +ἄνθρωπος +ἁμαρτωλός +καθίστημι +ὁ +πολύς +οὕτω +καί +διά +ὁ +ὑπακοή +ὁ +εἷς +δίκαιος +καθίστημι +ὁ +πολύς +δέ +νόμος +παρεισέρχομαι +ἵνα +πλεονάζω +ὁ +παράπτωμα +δέ +οὗ +πλεονάζω +ὁ +ἁμαρτία +ὑπερπερισσεύω +ὁ +χάρις +ἵνα +ὥσπερ +βασιλεύω +ὁ +ἁμαρτία +ἐν +ὁ +θάνατος +οὕτω +καί +ὁ +χάρις +βασιλεύω +διά +δικαιοσύνη +εἰς +ζωή +αἰώνιος +διά +Ἰησοῦς +Χριστός +ὁ +κύριος +ἐγώ +οὖν +τίς +εἶπον +ἐπιμένω +ὁ +ἁμαρτία +ἵνα +ὁ +χάρις +πλεονάζω +μή +γίνομαι +ὅστις +ἀποθνῄσκω +ὁ +ἁμαρτία +πῶς +ἔτι +ζάω +ἐν +αὐτός +ἤ +ἀγνοέω +ὅτι +ὅσος +βαπτίζω +εἰς +Χριστός +Ἰησοῦς +εἰς +ὁ +θάνατος +αὐτός +βαπτίζω +οὖν +συνθάπτω +αὐτός +διά +ὁ +βάπτισμα +εἰς +ὁ +θάνατος +ἵνα +ὥσπερ +ἐγείρω +Χριστός +ἐκ +νεκρός +διά +ὁ +δόξα +ὁ +πατήρ +οὕτω +καί +ἐγώ +ἐν +καινότης +ζωή +περιπατέω +γάρ +εἰ +σύμφυτος +γίνομαι +ὁ +ὁμοίωμα +ὁ +θάνατος +αὐτός +ἀλλά +καί +ὁ +ἀνάστασις +εἰμί +οὗτος +γινώσκω +ὅτι +ὁ +παλαιός +ἐγώ +ἄνθρωπος +συσταυρόω +ἵνα +καταργέω +ὁ +σῶμα +ὁ +ἁμαρτία +ὁ +μηκέτι +δουλεύω +ἐγώ +ὁ +ἁμαρτία +γάρ +ὁ +ἀποθνῄσκω +δικαιόω +ἀπό +ὁ +ἁμαρτία +δέ +εἰ +ἀποθνῄσκω +σύν +Χριστός +πιστεύω +ὅτι +καί +συζάω +αὐτός +οἶδα +ὅτι +Χριστός +ἐγείρω +ἐκ +νεκρός +οὐκέτι +ἀποθνῄσκω +θάνατος +αὐτός +οὐκέτι +κυριεύω +γάρ +ὅς +ἀποθνῄσκω +ὁ +ἁμαρτία +ἀποθνῄσκω +ἐφάπαξ +δέ +ὅς +ζάω +ζάω +ὁ +θεός +οὕτω +καί +σύ +λογίζομαι +ἑαυτοῦ +εἰμί +μέν +νεκρός +ὁ +ἁμαρτία +δέ +ζάω +ὁ +θεός +ἐν +Χριστός +Ἰησοῦς +οὖν +μή +βασιλεύω +ὁ +ἁμαρτία +ἐν +ὁ +θνητός +σύ +σῶμα +εἰς +ὁ +ὑπακούω +ὁ +ἐπιθυμία +αὐτός +μηδέ +παρίστημι +ὁ +μέλος +σύ +ὅπλον +ἀδικία +ὁ +ἁμαρτία +ἀλλά +παρίστημι +ἑαυτοῦ +ὁ +θεός +ὡσεί +ἐκ +νεκρός +ζάω +καί +ὁ +μέλος +σύ +ὅπλον +δικαιοσύνη +ὁ +θεός +γάρ +ἁμαρτία +σύ +οὐ +κυριεύω +γάρ +οὐ +εἰμί +ὑπό +νόμος +ἀλλά +ὑπό +χάρις +οὖν +τίς +ἁμαρτάνω +ὅτι +οὐ +εἰμί +ὑπό +νόμος +ἀλλά +ὑπό +χάρις +μή +γίνομαι +οὐ +οἶδα +ὅτι +ὅς +παρίστημι +ἑαυτοῦ +δοῦλος (II) +εἰς +ὑπακοή +δοῦλος (II) +εἰμί +ὅς +ὑπακούω +ἤτοι +ἁμαρτία +εἰς +θάνατος +ἤ +ὑπακοή +εἰς +δικαιοσύνη +δέ +χάρις +ὁ +θεός +ὅτι +εἰμί +δοῦλος (II) +ὁ +ἁμαρτία +δέ +ὑπακούω +ἐκ +καρδία +εἰς +ὅς +παραδίδωμι +τύπος +διδαχή +δέ +ἐλευθερόω +ἀπό +ὁ +ἁμαρτία +δουλόω +ὁ +δικαιοσύνη +ἀνθρώπινος +λέγω +διά +ὁ +ἀσθένεια +ὁ +σάρξ +σύ +γάρ +ὥσπερ +παρίστημι +ὁ +μέλος +σύ +δοῦλος (II) +ὁ +ἀκαθαρσία +καί +ὁ +ἀνομία +εἰς +ὁ +ἀνομία +οὕτω +νῦν +παρίστημι +ὁ +μέλος +σύ +δοῦλος (II) +ὁ +δικαιοσύνη +εἰς +ἁγιασμός +γάρ +ὅτε +δοῦλος (II) +ὁ +ἁμαρτία +εἰμί +ἐλεύθερος +εἰμί +ὁ +δικαιοσύνη +οὖν +τίς +καρπός +ἔχω +τότε +ἐπί +ὅς +νῦν +ἐπαισχύνομαι +γάρ +ὁ +τέλος +ἐκεῖνος +θάνατος +δέ +νυνί +ἐλευθερόω +ἀπό +ὁ +ἁμαρτία +δέ +δουλόω +ὁ +θεός +ἔχω +ὁ +καρπός +σύ +εἰς +ἁγιασμός +δέ +ὁ +τέλος +ζωή +αἰώνιος +γάρ +ὁ +ὀψώνιον +ὁ +ἁμαρτία +θάνατος +δέ +ὁ +χάρισμα +ὁ +θεός +ζωή +αἰώνιος +ἐν +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +ἤ +ἀδελφός +ἀγνοέω +γάρ +γινώσκω +νόμος +λαλέω +ὅτι +ὁ +νόμος +κυριεύω +ὁ +ἄνθρωπος +ἐπί +ὅσος +χρόνος +ζάω +γάρ +ὁ +ὕπανδρος +γυνή +ὁ +ζάω +ἀνήρ +δέω +νόμος +δέ +ἐάν +ἀποθνῄσκω +ὁ +ἀνήρ +καταργέω +ἀπό +ὁ +νόμος +ὁ +ἀνήρ +ἄρα +οὖν +ζάω +ὁ +ἀνήρ +μοιχαλίς +χρηματίζω +ἐάν +γίνομαι +ἀνήρ +ἕτερος +δέ +ἐάν +ἀποθνῄσκω +ὁ +ἀνήρ +ἐλεύθερος +εἰμί +ἀπό +ὁ +νόμος +ὁ +μή +εἰμί +αὐτός +μοιχαλίς +γίνομαι +ἀνήρ +ἕτερος +ὥστε +ἀδελφός +ἐγώ +καί +σύ +θανατόω +ὁ +νόμος +διά +ὁ +σῶμα +ὁ +Χριστός +εἰς +ὁ +γίνομαι +σύ +ἕτερος +ὁ +ἐκ +νεκρός +ἐγείρω +ἵνα +καρποφορέω +ὁ +θεός +γάρ +ὅτε +εἰμί +ἐν +ὁ +σάρξ +ὁ +πάθημα +ὁ +ἁμαρτία +ὁ +διά +ὁ +νόμος +ἐνεργέω +ἐν +ὁ +μέλος +ἐγώ +εἰς +ὁ +καρποφορέω +ὁ +θάνατος +δέ +νυνί +καταργέω +ἀπό +ὁ +νόμος +ἀποθνῄσκω +ἐν +ὅς +κατέχω +ὥστε +δουλεύω +ἐγώ +ἐν +καινότης +πνεῦμα +καί +οὐ +παλαιότης +γράμμα +οὖν +τίς +εἶπον +ὁ +νόμος +ἁμαρτία +μή +γίνομαι +ἀλλά +ὁ +ἁμαρτία +οὐ +γινώσκω +εἰ +μή +διά +νόμος +γάρ +τέ +ὁ +ἐπιθυμία +οὐ +οἶδα +εἰ +μή +ὁ +νόμος +λέγω +οὐ +ἐπιθυμέω +δέ +ἀφορμή +λαμβάνω +ὁ +ἁμαρτία +διά +ὁ +ἐντολή +κατεργάζομαι +ἐν +ἐγώ +πᾶς +ἐπιθυμία +γάρ +χωρίς +νόμος +ἁμαρτία +νεκρός +δέ +ἐγώ +ζάω +χωρίς +νόμος +ποτέ +δέ +ἔρχομαι +ὁ +ἐντολή +ὁ +ἁμαρτία +ἀναζάω +δέ +ἐγώ +ἀποθνῄσκω +καί +εὑρίσκω +ἐγώ +ὁ +ἐντολή +ὁ +εἰς +ζωή +οὗτος +εἰς +θάνατος +γάρ +ὁ +ἁμαρτία +ἀφορμή +λαμβάνω +διά +ὁ +ἐντολή +ἐξαπατάω +ἐγώ +καί +διά +αὐτός +ἀποκτείνω +ὥστε +μέν +ὁ +νόμος +ἅγιος +καί +ὁ +ἐντολή +ἅγιος +καί +δίκαιος +καί +ἀγαθός +οὖν +ὁ +ἀγαθός +ἐγώ +γίνομαι +θάνατος +μή +γίνομαι +ἀλλά +ὁ +ἁμαρτία +ἵνα +φαίνω +ἁμαρτία +διά +ὁ +ἀγαθός +ἐγώ +κατεργάζομαι +θάνατος +ἵνα +γίνομαι +κατά +ὑπερβολή +ἁμαρτωλός +ὁ +ἁμαρτία +διά +ὁ +ἐντολή +γάρ +οἶδα +ὅτι +ὁ +νόμος +πνευματικός +εἰμί +δέ +ἐγώ +σάρκινος +εἰμί +πιπράσκω +ὑπό +ὁ +ἁμαρτία +γάρ +ὅς +κατεργάζομαι +οὐ +γινώσκω +γάρ +οὐ +ὅς +θέλω +οὗτος +πράσσω +ἀλλά +ὅς +μισέω +οὗτος +ποιέω +δέ +εἰ +ὅς +οὐ +θέλω +οὗτος +ποιέω +σύμφημι +ὁ +νόμος +ὅτι +καλός +δέ +νυνί +οὐκέτι +ἐγώ +κατεργάζομαι +αὐτός +ἀλλά +ὁ +ἐνοικέω +ἐν +ἐγώ +ἁμαρτία +γάρ +οἶδα +ὅτι +οὐ +οἰκέω +ἐν +ἐγώ +οὗτος +εἰμί +ἐν +ὁ +σάρξ +ἐγώ +ἀγαθός +γάρ +ὁ +θέλω +παράκειμαι +ἐγώ +δέ +ὁ +κατεργάζομαι +ὁ +καλός +οὐ +γάρ +οὐ +ὅς +θέλω +ἀγαθός +ποιέω +ἀλλά +ὅς +οὐ +θέλω +κακός +οὗτος +πράσσω +δέ +εἰ +ὅς +οὐ +θέλω +οὗτος +ἐγώ +ποιέω +οὐκέτι +ἐγώ +κατεργάζομαι +αὐτός +ἀλλά +ὁ +οἰκέω +ἐν +ἐγώ +ἁμαρτία +ἄρα +εὑρίσκω +ὁ +νόμος +ἐγώ +ὁ +θέλω +ποιέω +ὁ +καλός +ὅτι +ἐγώ +ὁ +κακός +παράκειμαι +γάρ +συνήδομαι +ὁ +νόμος +ὁ +θεός +κατά +ὁ +ἔσω +ἄνθρωπος +δέ +βλέπω +ἕτερος +νόμος +ἐν +ὁ +μέλος +ἐγώ +ἀντιστρατεύω +ὁ +νόμος +ὁ +νοῦς +ἐγώ +καί +αἰχμαλωτίζω +ἐγώ +ἐν +ὁ +νόμος +ὁ +ἁμαρτία +ὁ +εἰμί +ἐν +ὁ +μέλος +ἐγώ +ταλαίπωρος +ἄνθρωπος +ἐγώ +τίς +ἐγώ +ῥύομαι +ἐκ +ὁ +σῶμα +ὁ +θάνατος +οὗτος +χάρις +ὁ +θεός +διά +Ἰησοῦς +Χριστός +ὁ +κύριος +ἐγώ +ἄρα +οὖν +μέν +αὐτός +ἐγώ +ὁ +νοῦς +δουλεύω +νόμος +θεός +δέ +ὁ +σάρξ +νόμος +ἁμαρτία +ἄρα +οὐδείς +κατάκριμα +νῦν +ὁ +ἐν +Χριστός +Ἰησοῦς +γάρ +ὁ +νόμος +ὁ +πνεῦμα +ὁ +ζωή +ἐν +Χριστός +Ἰησοῦς +ἐλευθερόω +σύ +ἀπό +ὁ +νόμος +ὁ +ἁμαρτία +καί +ὁ +θάνατος +γάρ +ὁ +ἀδύνατος +ὁ +νόμος +ἐν +ὅς +ἀσθενέω +διά +ὁ +σάρξ +ὁ +θεός +ὁ +ἑαυτοῦ +υἱός +πέμπω +ἐν +ὁμοίωμα +σάρξ +ἁμαρτία +καί +περί +ἁμαρτία +κατακρίνω +ὁ +ἁμαρτία +ἐν +ὁ +σάρξ +ἵνα +ὁ +δικαίωμα +ὁ +νόμος +πληρόω +ἐν +ἐγώ +ὁ +περιπατέω +μή +κατά +σάρξ +ἀλλά +κατά +πνεῦμα +γάρ +ὁ +κατά +σάρξ +εἰμί +ὁ +ὁ +σάρξ +φρονέω +δέ +ὁ +κατά +πνεῦμα +ὁ +ὁ +πνεῦμα +γάρ +ὁ +φρόνημα +ὁ +σάρξ +θάνατος +δέ +ὁ +φρόνημα +ὁ +πνεῦμα +ζωή +καί +εἰρήνη +διότι +ὁ +φρόνημα +ὁ +σάρξ +ἔχθρα +εἰς +θεός +γάρ +ὁ +νόμος +ὁ +θεός +οὐ +ὑποτάσσω +γάρ +οὐδέ +δύναμαι +δέ +ὁ +ἐν +σάρξ +εἰμί +θεός +ἀρέσκω +οὐ +δύναμαι +δέ +σύ +εἰμί +οὐ +ἐν +σάρξ +ἀλλά +ἐν +πνεῦμα +εἴπερ +πνεῦμα +θεός +οἰκέω +ἐν +σύ +δέ +εἰ +τὶς +πνεῦμα +Χριστός +οὐ +ἔχω +οὗτος +οὐ +εἰμί +αὐτός +δέ +εἰ +Χριστός +ἐν +σύ +μέν +ὁ +σῶμα +νεκρός +διά +ἁμαρτία +δέ +ὁ +πνεῦμα +ζωή +διά +δικαιοσύνη +δέ +εἰ +ὁ +πνεῦμα +ὁ +ἐγείρω +ὁ +Ἰησοῦς +ἐκ +νεκρός +οἰκέω +ἐν +σύ +ὁ +ἐγείρω +ἐκ +νεκρός +Χριστός +Ἰησοῦς +ζῳοποιέω +καί +ὁ +θνητός +σῶμα +σύ +διά +ὁ +ἐνοικέω +ἐν +σύ +αὐτός +πνεῦμα +ἄρα +οὖν +ἀδελφός +ὀφειλέτης +εἰμί +οὐ +ὁ +σάρξ +ὁ +κατά +σάρξ +ζάω +γάρ +εἰ +κατά +σάρξ +ζάω +μέλλω +ἀποθνῄσκω +δέ +εἰ +πνεῦμα +ὁ +πρᾶξις +ὁ +σῶμα +θανατόω +ζάω +γάρ +ὅσος +πνεῦμα +θεός +ἄγω +οὗτος +υἱός +θεός +εἰμί +γάρ +οὐ +λαμβάνω +πνεῦμα +δουλεία +πάλιν +εἰς +φόβος +ἀλλά +λαμβάνω +πνεῦμα +υἱοθεσία +ἐν +ὅς +κράζω +ἀββά +ὁ +πατήρ +αὐτός +ὁ +πνεῦμα +συμμαρτυρέω +ὁ +πνεῦμα +ἐγώ +ὅτι +εἰμί +τέκνον +θεός +δέ +εἰ +τέκνον +καί +κληρονόμος +μέν +κληρονόμος +θεός +δέ +συγκληρονόμος +Χριστός +εἴπερ +συμπάσχω +ἵνα +καί +συνδοξάζω +γάρ +λογίζομαι +ὅτι +οὐ +ἄξιος +ὁ +πάθημα +ὁ +νῦν +καιρός +πρός +ὁ +μέλλω +ἀποκαλύπτω +εἰς +ἐγώ +δόξα +γάρ +ὁ +ἀποκαραδοκία +ὁ +κτίσις +ὁ +ἀποκάλυψις +ὁ +υἱός +ὁ +θεός +ἀπεκδέχομαι +γάρ +ὁ +ματαιότης +ὁ +κτίσις +ὑποτάσσω +οὐ +ἑκών +ἀλλά +διά +ὁ +ὑποτάσσω +ἐπί +ἐλπίς +διότι +καί +αὐτός +ὁ +κτίσις +ἐλευθερόω +ἀπό +ὁ +δουλεία +ὁ +φθορά +εἰς +ὁ +ἐλευθερία +ὁ +δόξα +ὁ +τέκνον +ὁ +θεός +γάρ +οἶδα +ὅτι +πᾶς +ὁ +κτίσις +συστενάζω +καί +συνωδίνω +ἄχρι +ὁ +νῦν +δέ +οὐ +μόνος +ἀλλά +καί +αὐτός +ὁ +ἀπαρχή +ὁ +πνεῦμα +ἔχω +ἐγώ +καί +αὐτός +ἐν +ἑαυτοῦ +στενάζω +ἀπεκδέχομαι +υἱοθεσία +ὁ +ἀπολύτρωσις +ὁ +σῶμα +ἐγώ +γάρ +ὁ +ἐλπίς +σῴζω +δέ +ἐλπίς +βλέπω +οὐ +εἰμί +ἐλπίς +γάρ +ὅς +βλέπω +τὶς +τίς +ἐλπίζω +δέ +εἰ +ὅς +οὐ +βλέπω +ἐλπίζω +διά +ὑπομονή +ἀπεκδέχομαι +δέ +ὡσαύτως +καί +ὁ +πνεῦμα +συναντιλαμβάνομαι +ὁ +ἀσθένεια +ἐγώ +γάρ +ὁ +τίς +προσεύχομαι +καθό +δεῖ +οὐ +οἶδα +ἀλλά +αὐτός +ὁ +πνεῦμα +ὑπερεντυγχάνω +στεναγμός +ἀλάλητος +δέ +ὁ +ἐραυνάω +ὁ +καρδία +οἶδα +τίς +ὁ +φρόνημα +ὁ +πνεῦμα +ὅτι +κατά +θεός +ἐντυγχάνω +ὑπέρ +ἅγιος +δέ +οἶδα +ὅτι +ὁ +ἀγαπάω +ὁ +θεός +πᾶς +συνεργέω +εἰς +ἀγαθός +ὁ +κατά +πρόθεσις +κλητός +εἰμί +ὅτι +ὅς +προγινώσκω +καί +προορίζω +σύμμορφος +ὁ +εἰκών +ὁ +υἱός +αὐτός +εἰς +ὁ +εἰμί +αὐτός +πρωτότοκος +ἐν +πολύς +ἀδελφός +δέ +ὅς +προορίζω +οὗτος +καί +καλέω +καί +ὅς +καλέω +οὗτος +καί +δικαιόω +δέ +ὅς +δικαιόω +οὗτος +καί +δοξάζω +οὖν +τίς +εἶπον +πρός +οὗτος +εἰ +ὁ +θεός +ὑπέρ +ἐγώ +τίς +κατά +ἐγώ +γέ +ὅς +ὁ +ἴδιος +υἱός +οὐ +φείδομαι +ἀλλά +ὑπέρ +ἐγώ +πᾶς +παραδίδωμι +αὐτός +πῶς +οὐχί +καί +σύν +αὐτός +ὁ +πᾶς +ἐγώ +χαρίζομαι +τίς +ἐγκαλέω +κατά +ἐκλεκτός +θεός +θεός +ὁ +δικαιόω +τίς +ὁ +κατακρίνω +Χριστός +Ἰησοῦς +ὁ +ἀποθνῄσκω +δέ +μᾶλλον +ἐγείρω +ὅς +εἰμί +ἐν +δεξιός +ὁ +θεός +ὅς +καί +ἐντυγχάνω +ὑπέρ +ἐγώ +τίς +ἐγώ +χωρίζω +ἀπό +ὁ +ἀγάπη +ὁ +Χριστός +θλῖψις +ἤ +στενοχωρία +ἤ +διωγμός +ἤ +λιμός +ἤ +γυμνότης +ἤ +κίνδυνος +ἤ +μάχαιρα +καθώς +γράφω +ὅτι +ἕνεκα +σύ +θανατόω +ὅλος +ὁ +ἡμέρα +λογίζομαι +ὡς +πρόβατον +σφαγή +ἀλλά +ἐν +οὗτος +πᾶς +ὑπερνικάω +διά +ὁ +ἀγαπάω +ἐγώ +γάρ +πείθω +ὅτι +οὔτε +θάνατος +οὔτε +ζωή +οὔτε +ἄγγελος +οὔτε +ἀρχή +οὔτε +ἐνίστημι +οὔτε +μέλλω +οὔτε +δύναμις +οὔτε +ὕψωμα +οὔτε +βάθος +οὔτε +τὶς +κτίσις +ἕτερος +δύναμαι +ἐγώ +χωρίζω +ἀπό +ὁ +ἀγάπη +ὁ +θεός +ὁ +ἐν +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +ἀλήθεια +λέγω +ἐν +Χριστός +οὐ +ψεύδομαι +συμμαρτυρέω +ἐγώ +ὁ +συνείδησις +ἐγώ +ἐν +πνεῦμα +ἅγιος +ὅτι +λύπη +ἐγώ +εἰμί +μέγας +καί +ἀδιάλειπτος +ὀδύνη +ὁ +καρδία +ἐγώ +γάρ +εὔχομαι +αὐτός +ἐγώ +ἀνάθεμα +εἰμί +ἀπό +ὁ +Χριστός +ὑπέρ +ὁ +ἀδελφός +ἐγώ +ὁ +συγγενής +ἐγώ +κατά +σάρξ +ὅστις +εἰμί +Ἰσραηλίτης +ὅς +ὁ +υἱοθεσία +καί +ὁ +δόξα +καί +ὁ +διαθήκη +καί +ὁ +νομοθεσία +καί +ὁ +λατρεία +καί +ὁ +ἐπαγγελία +ὅς +ὁ +πατήρ +καί +ἐκ +ὅς +ὁ +Χριστός +ὁ +κατά +σάρξ +ὁ +εἰμί +ἐπί +πᾶς +θεός +εὐλογητός +εἰς +ὁ +αἰών +ἀμήν +δέ +οὐ +οἷος +ὅτι +ἐκπίπτω +ὁ +λόγος +ὁ +θεός +γάρ +οὐ +πᾶς +ὁ +ἐκ +Ἰσραήλ +οὗτος +Ἰσραήλ +οὐδέ +ὅτι +εἰμί +σπέρμα +Ἀβραάμ +πᾶς +τέκνον +ἀλλά +ἐν +Ἰσαάκ +καλέω +σύ +σπέρμα +οὗτος +εἰμί +οὐ +ὁ +τέκνον +ὁ +σάρξ +οὗτος +τέκνον +ὁ +θεός +ἀλλά +ὁ +τέκνον +ὁ +ἐπαγγελία +λογίζομαι +εἰς +σπέρμα +γάρ +ἐπαγγελία +ὁ +λόγος +οὗτος +κατά +ὁ +καιρός +οὗτος +ἔρχομαι +καί +εἰμί +ὁ +Σάρρα +υἱός +δέ +οὐ +μόνος +ἀλλά +καί +Ῥεβέκκα +κοίτη +ἔχω +ἐκ +εἷς +Ἰσαάκ +ὁ +πατήρ +ἐγώ +γάρ +μήπω +γεννάω +μηδέ +πράσσω +τὶς +ἀγαθός +ἤ +φαῦλος +ἵνα +ὁ +κατά +ἐκλογή +πρόθεσις +ὁ +θεός +μένω +οὐ +ἐκ +ἔργον +ἀλλά +ἐκ +ὁ +καλέω +εἶπον +αὐτός +ὅτι +ὁ +μέγας +δουλεύω +ὁ +ἐλάσσων +καθάπερ +γράφω +ὁ +Ἰακώβ +ἀγαπάω +δέ +ὁ +Ἠσαῦ +μισέω +οὖν +τίς +εἶπον +μή +ἀδικία +παρά +ὁ +θεός +μή +γίνομαι +γάρ +ὁ +Μωϋσῆς +λέγω +ἐλεέω +ἄν +ὅς +ἐλεέω +καί +οἰκτίρω +ἄν +ὅς +οἰκτίρω +ἄρα +οὖν +οὐ +ὁ +θέλω +οὐδέ +ὁ +τρέχω +ἀλλά +ὁ +ἐλεάω +θεός +γάρ +λέγω +ὁ +γραφή +ὁ +Φαραώ +ὅτι +εἰς +αὐτός +οὗτος +ἐξεγείρω +σύ +ὅπως +ἐνδείκνυμι +ἐν +σύ +ὁ +δύναμις +ἐγώ +καί +ὅπως +διαγγέλλω +ὁ +ὄνομα +ἐγώ +ἐν +πᾶς +ὁ +γῆ +ἄρα +οὖν +ὅς +θέλω +ἐλεέω +δέ +ὅς +θέλω +σκληρύνω +οὖν +εἶπον +ἐγώ +τίς +ἔτι +μέμφομαι +γάρ +ὁ +βούλημα +αὐτός +τίς +ἀνθίστημι +ὦ +ἄνθρωπος +μενοῦνγε +τίς +εἰμί +σύ +ὁ +ἀνταποκρίνομαι +ὁ +θεός +μή +εἶπον +ὁ +πλάσμα +ὁ +πλάσσω +τίς +ἐγώ +ποιέω +οὕτω +ἤ +οὐ +ἔχω +ὁ +κεραμεύς +ἐξουσία +ὁ +πηλός +ἐκ +ὁ +αὐτός +φύραμα +ποιέω +σκεῦος +μέν +ὅς +εἰς +τιμή +δέ +ὅς +εἰς +ἀτιμία +δέ +εἰ +ὁ +θεός +θέλω +ἐνδείκνυμι +ὁ +ὀργή +καί +γνωρίζω +ὁ +δυνατός +αὐτός +φέρω +ἐν +πολύς +μακροθυμία +σκεῦος +ὀργή +καταρτίζω +εἰς +ἀπώλεια +καί +ἵνα +γνωρίζω +ὁ +πλοῦτος +ὁ +δόξα +αὐτός +ἐπί +σκεῦος +ἔλεος +ὅς +προετοιμάζω +εἰς +δόξα +ὅς +καί +καλέω +ἐγώ +οὐ +μόνος +ἐκ +Ἰουδαῖος +ἀλλά +καί +ἐκ +ἔθνος +ὡς +καί +ἐν +ὁ +Ὡσηέ +λέγω +καλέω +ὁ +οὐ +λαός +ἐγώ +λαός +ἐγώ +καί +ὁ +οὐ +ἀγαπάω +ἀγαπάω +καί +εἰμί +ἐν +ὁ +τόπος +οὗ +εἶπον +αὐτός +οὐ +λαός +ἐγώ +σύ +ἐκεῖ +καλέω +υἱός +θεός +ζάω +δέ +Ἠσαΐας +κράζω +ὑπέρ +ὁ +Ἰσραήλ +ἐάν +εἰμί +ὁ +ἀριθμός +ὁ +υἱός +Ἰσραήλ +ὡς +ὁ +ἄμμος +ὁ +θάλασσα +ὁ +ὑπόλειμμα +σῴζω +γάρ +λόγος +συντελέω +καί +συντέμνω +ποιέω +κύριος +ἐπί +ὁ +γῆ +καί +καθώς +προλέγω +Ἠσαΐας +εἰ +μή +κύριος +Σαβαώθ +ἐγκαταλείπω +ἐγώ +σπέρμα +ἄν +ὡς +Σόδομα +γίνομαι +καί +ἄν +ὡς +Γόμορρα +ὁμοιόω +οὖν +τίς +εἶπον +ὅτι +ἔθνος +ὁ +μή +διώκω +δικαιοσύνη +καταλαμβάνω +δικαιοσύνη +δέ +δικαιοσύνη +ὁ +ἐκ +πίστις +δέ +Ἰσραήλ +διώκω +νόμος +δικαιοσύνη +εἰς +νόμος +οὐ +φθάνω +διά +τίς +ὅτι +οὐ +ἐκ +πίστις +ἀλλά +ὡς +ἐκ +ἔργον +προσκόπτω +ὁ +λίθος +ὁ +πρόσκομμα +καθώς +γράφω +ὁράω +τίθημι +ἐν +Σιών +λίθος +πρόσκομμα +καί +πέτρα +σκάνδαλον +καί +ὁ +πιστεύω +ἐπί +αὐτός +οὐ +καταισχύνω +ἀδελφός +μέν +ὁ +εὐδοκία +ὁ +ἐμός +καρδία +καί +ὁ +δέησις +πρός +ὁ +θεός +ὑπέρ +αὐτός +εἰς +σωτηρία +γάρ +μαρτυρέω +αὐτός +ὅτι +ζῆλος +θεός +ἔχω +ἀλλά +οὐ +κατά +ἐπίγνωσις +γάρ +ἀγνοέω +ὁ +ὁ +θεός +δικαιοσύνη +καί +ὁ +ἴδιος +ἵστημι +ζητέω +ὁ +δικαιοσύνη +ὁ +θεός +οὐ +ὑποτάσσω +γάρ +τέλος +νόμος +Χριστός +εἰς +δικαιοσύνη +πᾶς +ὁ +πιστεύω +γάρ +Μωϋσῆς +γράφω +ὅτι +ὁ +δικαιοσύνη +ὁ +ἐκ +νόμος +ὁ +ποιέω +ἄνθρωπος +ζάω +ἐν +αὐτός +δέ +ὁ +ἐκ +πίστις +δικαιοσύνη +οὕτω +λέγω +μή +λέγω +ἐν +ὁ +καρδία +σύ +τίς +ἀναβαίνω +εἰς +ὁ +οὐρανός +οὗτος +εἰμί +Χριστός +κατάγω +ἤ +τίς +καταβαίνω +εἰς +ὁ +ἄβυσσος +οὗτος +εἰμί +Χριστός +ἐκ +νεκρός +ἀνάγω +ἀλλά +τίς +λέγω +ἐγγύς +σύ +ὁ +ῥῆμα +εἰμί +ἐν +ὁ +στόμα +σύ +καί +ἐν +ὁ +καρδία +σύ +οὗτος +εἰμί +ὁ +ῥῆμα +ὁ +πίστις +ὅς +κηρύσσω +ὅτι +ἐάν +ὁμολογέω +ἐν +ὁ +στόμα +σύ +κύριος +Ἰησοῦς +καί +πιστεύω +ἐν +ὁ +καρδία +σύ +ὅτι +ὁ +θεός +αὐτός +ἐγείρω +ἐκ +νεκρός +σῴζω +γάρ +καρδία +πιστεύω +εἰς +δικαιοσύνη +δέ +στόμα +ὁμολογέω +εἰς +σωτηρία +γάρ +λέγω +ὁ +γραφή +πᾶς +ὁ +πιστεύω +ἐπί +αὐτός +οὐ +καταισχύνω +γάρ +οὐ +εἰμί +διαστολή +τέ +Ἰουδαῖος +καί +Ἕλλην +γάρ +ὁ +αὐτός +κύριος +πᾶς +πλουτέω +εἰς +πᾶς +ὁ +ἐπικαλέω +αὐτός +γάρ +πᾶς +ἄν +ὅς +ἐπικαλέω +ὁ +ὄνομα +κύριος +σῴζω +οὖν +πῶς +ἐπικαλέω +εἰς +ὅς +οὐ +πιστεύω +δέ +πῶς +πιστεύω +ὅς +οὐ +ἀκούω +δέ +πῶς +ἀκούω +χωρίς +κηρύσσω +δέ +πῶς +κηρύσσω +ἐάν +μή +ἀποστέλλω +καθάπερ +γράφω +ὡς +ὡραῖος +ὁ +πούς +ὁ +εὐαγγελίζω +ἀγαθός +ἀλλά +οὐ +πᾶς +ὑπακούω +ὁ +εὐαγγέλιον +γάρ +Ἠσαΐας +λέγω +κύριος +τίς +πιστεύω +ὁ +ἀκοή +ἐγώ +ἄρα +ὁ +πίστις +ἐκ +ἀκοή +δέ +ὁ +ἀκοή +διά +ῥῆμα +Χριστός +ἀλλά +λέγω +μή +οὐ +ἀκούω +μενοῦνγε +εἰς +πᾶς +ὁ +γῆ +ἐξέρχομαι +ὁ +φθόγγος +αὐτός +καί +εἰς +ὁ +πέρας +ὁ +οἰκουμένη +ὁ +ῥῆμα +αὐτός +ἀλλά +λέγω +μή +Ἰσραήλ +οὐ +γινώσκω +πρῶτος +Μωϋσῆς +λέγω +ἐγώ +παραζηλόω +σύ +ἐπί +οὐ +ἔθνος +ἐπί +ἔθνος +ἀσύνετος +παροργίζω +σύ +δέ +Ἠσαΐας +ἀποτολμάω +καί +λέγω +εὑρίσκω +ὁ +ἐγώ +μή +ζητέω +ἐμφανής +γίνομαι +ὁ +ἐγώ +μή +ἐπερωτάω +δέ +πρός +ὁ +Ἰσραήλ +λέγω +ὅλος +ὁ +ἡμέρα +ἐκπετάννυμι +ὁ +χείρ +ἐγώ +πρός +λαός +ἀπειθέω +καί +ἀντιλέγω +οὖν +λέγω +μή +ἀπωθέω +ὁ +θεός +ὁ +λαός +αὐτός +μή +γίνομαι +γάρ +καί +ἐγώ +Ἰσραηλίτης +εἰμί +ἐκ +σπέρμα +Ἀβραάμ +φυλή +Βενιαμίν +οὐ +ἀπωθέω +ὁ +θεός +ὁ +λαός +αὐτός +ὅς +προγινώσκω +ἤ +οὐ +οἶδα +ἐν +Ἠλίας +τίς +λέγω +ὁ +γραφή +ὡς +ἐντυγχάνω +ὁ +θεός +κατά +ὁ +Ἰσραήλ +κύριος +ὁ +προφήτης +σύ +ἀποκτείνω +ὁ +θυσιαστήριον +σύ +κατασκάπτω +κἀγώ +ὑπολείπω +μόνος +καί +ζητέω +ὁ +ψυχή +ἐγώ +ἀλλά +τίς +λέγω +αὐτός +ὁ +χρηματισμός +καταλείπω +ἐμαυτοῦ +ἑπτακισχίλιοι +ἀνήρ +ὅστις +οὐ +κάμπτω +γόνυ +ὁ +Βάαλ +οὖν +οὕτω +καί +ἐν +ὁ +νῦν +καιρός +λεῖμμα +κατά +ἐκλογή +χάρις +γίνομαι +δέ +εἰ +χάρις +οὐκέτι +ἐκ +ἔργον +ἐπεί +ὁ +χάρις +οὐκέτι +γίνομαι +χάρις +οὖν +τίς +ὅς +ἐπιζητέω +Ἰσραήλ +οὗτος +οὐ +ἐπιτυγχάνω +δέ +ὁ +ἐκλογή +ἐπιτυγχάνω +δέ +ὁ +λοιπός +πωρόω +καθάπερ +γράφω +δίδωμι +αὐτός +ὁ +θεός +πνεῦμα +κατάνυξις +ὀφθαλμός +ὁ +μή +βλέπω +καί +οὖς +ὁ +μή +ἀκούω +ἕως +ὁ +σήμερον +ἡμέρα +καί +Δαυίδ +λέγω +γίνομαι +ὁ +τράπεζα +αὐτός +εἰς +παγίς +καί +εἰς +θήρα +καί +εἰς +σκάνδαλον +καί +εἰς +ἀνταπόδομα +αὐτός +σκοτίζω +ὁ +ὀφθαλμός +αὐτός +ὁ +μή +βλέπω +καί +ὁ +νῶτος +αὐτός +διά +πᾶς +συγκάμπτω +οὖν +λέγω +μή +πταίω +ἵνα +πίπτω +μή +γίνομαι +ἀλλά +ὁ +αὐτός +παράπτωμα +ὁ +σωτηρία +ὁ +ἔθνος +εἰς +ὁ +παραζηλόω +αὐτός +δέ +εἰ +ὁ +παράπτωμα +αὐτός +πλοῦτος +κόσμος +καί +ὁ +ἥττημα +αὐτός +πλοῦτος +ἔθνος +πόσος +μᾶλλον +ὁ +πλήρωμα +αὐτός +δέ +λέγω +σύ +ὁ +ἔθνος +μέν +οὖν +ἐπί +ὅσος +εἰμί +ἐγώ +ἔθνος +ἀπόστολος +ὁ +διακονία +ἐγώ +δοξάζω +εἰ +πῶς +παραζηλόω +ἐγώ +ὁ +σάρξ +καί +σῴζω +τὶς +ἐκ +αὐτός +γάρ +εἰ +ὁ +ἀποβολή +αὐτός +καταλλαγή +κόσμος +τίς +ὁ +πρόσλημψις +εἰ +μή +ζωή +ἐκ +νεκρός +δέ +εἰ +ὁ +ἀπαρχή +ἅγιος +καί +ὁ +φύραμα +καί +εἰ +ὁ +ῥίζα +ἅγιος +καί +ὁ +κλάδος +δέ +εἰ +τὶς +ὁ +κλάδος +ἐκκλάω +δέ +σύ +ἀγριέλαιος +εἰμί +ἐγκεντρίζω +ἐν +αὐτός +καί +συγκοινωνός +ὁ +ῥίζα +ὁ +πιότης +ὁ +ἐλαία +γίνομαι +μή +κατακαυχάομαι +ὁ +κλάδος +δέ +εἰ +κατακαυχάομαι +οὐ +σύ +ὁ +ῥίζα +βαστάζω +ἀλλά +ὁ +ῥίζα +σύ +οὖν +εἶπον +ἐκκλάω +κλάδος +ἵνα +ἐγώ +ἐγκεντρίζω +καλῶς +ὁ +ἀπιστία +ἐκκλάω +δέ +σύ +ὁ +πίστις +ἵστημι +μή +ὑψηλός +φρονέω +ἀλλά +φοβέω +γάρ +εἰ +ὁ +θεός +ὁ +κατά +φύσις +κλάδος +οὐ +φείδομαι +οὐδέ +σύ +φείδομαι +οὖν +ὁράω +χρηστότης +καί +ἀποτομία +θεός +μέν +ἐπί +ὁ +πίπτω +ἀποτομία +δέ +ἐπί +σύ +χρηστότης +θεός +ἐάν +ἐπιμένω +ὁ +χρηστότης +ἐπεί +καί +σύ +ἐκκόπτω +δέ +κἀκεῖνος +ἐάν +μή +ἐπιμένω +ὁ +ἀπιστία +ἐγκεντρίζω +γάρ +δυνατός +εἰμί +ὁ +θεός +πάλιν +ἐγκεντρίζω +αὐτός +γάρ +εἰ +σύ +ἐκ +ὁ +κατά +φύσις +ἀγριέλαιος +ἐκκόπτω +καί +παρά +φύσις +ἐγκεντρίζω +εἰς +καλλιέλαιος +πόσος +μᾶλλον +οὗτος +ὁ +κατά +φύσις +ἐγκεντρίζω +ὁ +ἴδιος +ἐλαία +γάρ +ἀδελφός +οὐ +θέλω +σύ +ἀγνοέω +ὁ +μυστήριον +οὗτος +ἵνα +μή +εἰμί +ἐν +ἑαυτοῦ +φρόνιμος +ὅτι +πώρωσις +ἀπό +μέρος +ὁ +Ἰσραήλ +γίνομαι +ἄχρι +ὅς +ὁ +πλήρωμα +ὁ +ἔθνος +εἰσέρχομαι +καί +οὕτω +πᾶς +Ἰσραήλ +σῴζω +καθώς +γράφω +ἥκω +ἐκ +Σιών +ὁ +ῥύομαι +ἀποστρέφω +ἀσέβεια +ἀπό +Ἰακώβ +καί +οὗτος +αὐτός +ὁ +παρά +ἐγώ +διαθήκη +ὅταν +ἀφαιρέω +ὁ +ἁμαρτία +αὐτός +μέν +κατά +ὁ +εὐαγγέλιον +ἐχθρός +διά +σύ +δέ +κατά +ὁ +ἐκλογή +ἀγαπητός +διά +ὁ +πατήρ +γάρ +ἀμεταμέλητος +ὁ +χάρισμα +καί +ὁ +κλῆσις +ὁ +θεός +γάρ +ὥσπερ +σύ +ποτέ +ἀπειθέω +ὁ +θεός +δέ +νῦν +ἐλεέω +ὁ +οὗτος +ἀπείθεια +οὕτω +καί +οὗτος +νῦν +ἀπειθέω +ὁ +ὑμέτερος +ἔλεος +ἵνα +καί +αὐτός +νῦν +ἐλεέω +γάρ +συγκλείω +ὁ +θεός +ὁ +πᾶς +εἰς +ἀπείθεια +ἵνα +ὁ +πᾶς +ἐλεέω +ὦ +βάθος +πλοῦτος +καί +σοφία +καί +γνῶσις +θεός +ὡς +ἀνεξεραύνητος +ὁ +κρίμα +αὐτός +καί +ἀνεξιχνίαστος +ὁ +ὁδός +αὐτός +γάρ +τίς +γινώσκω +νοῦς +κύριος +ἤ +τίς +σύμβουλος +αὐτός +γίνομαι +ἤ +τίς +προδίδωμι +αὐτός +καί +ἀνταποδίδωμι +αὐτός +ὅτι +ἐκ +αὐτός +καί +διά +αὐτός +καί +εἰς +αὐτός +ὁ +πᾶς +αὐτός +ὁ +δόξα +εἰς +ὁ +αἰών +ἀμήν +οὖν +ἀδελφός +παρακαλέω +διά +ὁ +οἰκτιρμός +ὁ +θεός +σύ +παρίστημι +ὁ +σῶμα +σύ +θυσία +ζάω +ἅγιος +ὁ +θεός +εὐάρεστος +ὁ +λογικός +λατρεία +σύ +καί +μή +συσχηματίζω +ὁ +αἰών +οὗτος +ἀλλά +μεταμορφόω +ὁ +ἀνακαίνωσις +ὁ +νοῦς +εἰς +ὁ +δοκιμάζω +σύ +τίς +ὁ +θέλημα +ὁ +θεός +ὁ +ἀγαθός +καί +εὐάρεστος +καί +τέλειος +γάρ +λέγω +διά +ὁ +χάρις +ὁ +δίδωμι +ἐγώ +πᾶς +ὁ +εἰμί +ἐν +σύ +μή +ὑπερφρονέω +παρά +ὅς +φρονέω +δεῖ +ἀλλά +φρονέω +εἰς +ὁ +σωφρονέω +ὡς +ἕκαστος +ὁ +θεός +μερίζω +μέτρον +πίστις +γάρ +καθάπερ +ἐν +εἷς +σῶμα +πολύς +μέλος +ἔχω +δέ +ὁ +μέλος +πᾶς +οὐ +ὁ +αὐτός +πρᾶξις +ἔχω +οὕτω +ὁ +πολύς +εἷς +σῶμα +εἰμί +ἐν +Χριστός +δέ +ὁ +κατά +εἷς +ἀλλήλων +μέλος +δέ +ἔχω +χάρισμα +διάφορος +κατά +ὁ +χάρις +ὁ +δίδωμι +ἐγώ +εἴτε +προφητεία +κατά +ὁ +ἀναλογία +ὁ +πίστις +εἴτε +διακονία +ἐν +ὁ +διακονία +εἴτε +ὁ +διδάσκω +ἐν +ὁ +διδασκαλία +εἴτε +ὁ +παρακαλέω +ἐν +ὁ +παράκλησις +ὁ +μεταδίδωμι +ἐν +ἁπλότης +ὁ +προΐστημι +ἐν +σπουδή +ὁ +ἐλεέω +ἐν +ἱλαρότης +ὁ +ἀγάπη +ἀνυπόκριτος +ἀποστυγέω +ὁ +πονηρός +κολλάω +ὁ +ἀγαθός +ὁ +φιλαδελφία +εἰς +ἀλλήλων +φιλόστοργος +ὁ +τιμή +ἀλλήλων +προηγέομαι +ὁ +σπουδή +μή +ὀκνηρός +ὁ +πνεῦμα +ζέω +ὁ +κύριος +δουλεύω +ὁ +ἐλπίς +χαίρω +ὁ +θλῖψις +ὑπομένω +ὁ +προσευχή +προσκαρτερέω +ὁ +χρεία +ὁ +ἅγιος +κοινωνέω +ὁ +φιλοξενία +διώκω +εὐλογέω +ὁ +διώκω +εὐλογέω +καί +μή +καταράομαι +χαίρω +μετά +χαίρω +κλαίω +μετά +κλαίω +ὁ +αὐτός +εἰς +ἀλλήλων +φρονέω +μή +ὁ +ὑψηλός +φρονέω +ἀλλά +ὁ +ταπεινός +συναπάγω +μή +γίνομαι +φρόνιμος +παρά +ἑαυτοῦ +μηδείς +κακός +ἀντί +κακός +ἀποδίδωμι +προνοέω +καλός +ἐνώπιον +πᾶς +ἄνθρωπος +εἰ +δυνατός +ὁ +ἐκ +σύ +μετά +πᾶς +ἄνθρωπος +εἰρηνεύω +ἀγαπητός +μή +ἑαυτοῦ +ἐκδικέω +ἀλλά +δίδωμι +τόπος +ὁ +ὀργή +γάρ +γράφω +ἐγώ +ἐκδίκησις +ἐγώ +ἀνταποδίδωμι +λέγω +κύριος +ἀλλά +ἐάν +πεινάω +ὁ +ἐχθρός +σύ +ψωμίζω +αὐτός +ἐάν +διψάω +ποτίζω +αὐτός +γάρ +οὗτος +ποιέω +ἄνθραξ +πῦρ +σωρεύω +ἐπί +ὁ +κεφαλή +αὐτός +μή +νικάω +ὑπό +ὁ +κακός +ἀλλά +νικάω +ἐν +ὁ +ἀγαθός +ὁ +κακός +πᾶς +ψυχή +ἐξουσία +ὑπερέχω +ὑποτάσσω +γάρ +οὐ +εἰμί +ἐξουσία +εἰ +μή +ὑπό +θεός +δέ +ὁ +εἰμί +ὑπό +θεός +τάσσω +εἰμί +ὥστε +ὁ +ἀντιτάσσω +ὁ +ἐξουσία +ὁ +ὁ +θεός +διαταγή +ἀνθίστημι +δέ +ὁ +ἀνθίστημι +ἑαυτοῦ +κρίμα +λαμβάνω +γάρ +ὁ +ἄρχων +εἰμί +φόβος +οὐ +ὁ +ἀγαθός +ἔργον +ἀλλά +ὁ +κακός +δέ +θέλω +μή +φοβέω +ὁ +ἐξουσία +ὁ +ἀγαθός +ποιέω +καί +ἔχω +ἔπαινος +ἐκ +αὐτός +γάρ +θεός +διάκονος +εἰμί +σύ +εἰς +ὁ +ἀγαθός +δέ +ἐάν +ὁ +κακός +ποιέω +φοβέω +γάρ +οὐ +εἰκῇ +ὁ +μάχαιρα +φορέω +γάρ +θεός +διάκονος +εἰμί +ἔκδικος +εἰς +ὀργή +ὁ +ὁ +κακός +πράσσω +διό +ἀνάγκη +ὑποτάσσω +οὐ +μόνος +διά +ὁ +ὀργή +ἀλλά +καί +διά +ὁ +συνείδησις +γάρ +διά +οὗτος +καί +φόρος +τελέω +γάρ +λειτουργός +θεός +εἰμί +εἰς +αὐτός +οὗτος +προσκαρτερέω +ἀποδίδωμι +πᾶς +ὁ +ὀφειλή +ὁ +ὁ +φόρος +ὁ +φόρος +ὁ +ὁ +τέλος +ὁ +τέλος +ὁ +ὁ +φόβος +ὁ +φόβος +ὁ +ὁ +τιμή +ὁ +τιμή +μηδείς +μηδείς +ὀφείλω +εἰ +μή +ὁ +ἀλλήλων +ἀγαπάω +γάρ +ὁ +ἀγαπάω +ὁ +ἕτερος +νόμος +πληρόω +γάρ +ὁ +οὐ +μοιχεύω +οὐ +φονεύω +οὐ +κλέπτω +οὐ +ἐπιθυμέω +καί +εἰ +τὶς +ἕτερος +ἐντολή +ἐν +ὁ +λόγος +οὗτος +ἀνακεφαλαιόω +ἐν +ὁ +ἀγαπάω +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +ὁ +ἀγάπη +ὁ +πλησίον +κακός +οὐ +ἐργάζομαι +οὖν +πλήρωμα +νόμος +ὁ +ἀγάπη +καί +οἶδα +οὗτος +ὁ +καιρός +ὅτι +ὥρα +ἤδη +σύ +ἐκ +ὕπνος +ἐγείρω +γάρ +νῦν +ἐγγύς +ἐγώ +ὁ +σωτηρία +ἤ +ὅτε +πιστεύω +ὁ +νύξ +προκόπτω +δέ +ὁ +ἡμέρα +ἐγγίζω +οὖν +ἀποτίθημι +ὁ +ἔργον +ὁ +σκότος +δέ +ἐνδύω +ὁ +ὅπλον +ὁ +φῶς +ὡς +ἐν +ἡμέρα +εὐσχημόνως +περιπατέω +μή +κῶμος +καί +μέθη +μή +κοίτη +καί +ἀσέλγεια +μή +ἔρις +καί +ζῆλος +ἀλλά +ἐνδύω +ὁ +κύριος +Ἰησοῦς +Χριστός +καί +ὁ +σάρξ +πρόνοια +μή +ποιέω +εἰς +ἐπιθυμία +δέ +ὁ +ἀσθενέω +ὁ +πίστις +προσλαμβάνω +μή +εἰς +διάκρισις +διαλογισμός +μέν +ὅς +πιστεύω +ἐσθίω +πᾶς +δέ +ὁ +ἀσθενέω +λάχανον +ἐσθίω +ὁ +ἐσθίω +ὁ +μή +ἐσθίω +μή +ἐξουθενέω +δέ +ὁ +μή +ἐσθίω +ὁ +ἐσθίω +μή +κρίνω +γάρ +ὁ +θεός +αὐτός +προσλαμβάνω +σύ +τίς +εἰμί +ὁ +κρίνω +ἀλλότριος +οἰκέτης +ὁ +ἴδιος +κύριος +στήκω +ἤ +πίπτω +δέ +ἵστημι +γάρ +δυνατέω +ὁ +κύριος +ἵστημι +αὐτός +γάρ +μέν +ὅς +κρίνω +ἡμέρα +παρά +ἡμέρα +δέ +ὅς +κρίνω +πᾶς +ἡμέρα +ἕκαστος +ἐν +ὁ +ἴδιος +νοῦς +πληροφορέω +ὁ +φρονέω +ὁ +ἡμέρα +κύριος +φρονέω +καί +ὁ +ἐσθίω +κύριος +ἐσθίω +γάρ +εὐχαριστέω +ὁ +θεός +καί +ὁ +μή +ἐσθίω +κύριος +οὐ +ἐσθίω +καί +εὐχαριστέω +ὁ +θεός +γάρ +οὐδείς +ἐγώ +ἑαυτοῦ +ζάω +καί +οὐδείς +ἑαυτοῦ +ἀποθνῄσκω +γάρ +τέ +ἐάν +ζάω +ὁ +κύριος +ζάω +τέ +ἐάν +ἀποθνῄσκω +ὁ +κύριος +ἀποθνῄσκω +οὖν +τέ +ἐάν +ζάω +τέ +ἐάν +ἀποθνῄσκω +ὁ +κύριος +εἰμί +γάρ +εἰς +οὗτος +Χριστός +ἀποθνῄσκω +καί +ζάω +ἵνα +καί +νεκρός +καί +ζάω +κυριεύω +δέ +σύ +τίς +κρίνω +ὁ +ἀδελφός +σύ +ἤ +καί +σύ +τίς +ἐξουθενέω +ὁ +ἀδελφός +σύ +γάρ +πᾶς +παρίστημι +ὁ +βῆμα +ὁ +θεός +γάρ +γράφω +ζάω +ἐγώ +λέγω +κύριος +ὅτι +ἐγώ +κάμπτω +πᾶς +γόνυ +καί +πᾶς +γλῶσσα +ἐξομολογέω +ὁ +θεός +ἄρα +οὖν +ἕκαστος +ἐγώ +περί +ἑαυτοῦ +λόγος +δίδωμι +ὁ +θεός +οὖν +μηκέτι +ἀλλήλων +κρίνω +ἀλλά +οὗτος +κρίνω +μᾶλλον +ὁ +μή +τίθημι +ὁ +ἀδελφός +πρόσκομμα +ἤ +σκάνδαλον +οἶδα +καί +πείθω +ἐν +κύριος +Ἰησοῦς +ὅτι +οὐδείς +κοινός +διά +ἑαυτοῦ +εἰ +μή +ὁ +λογίζομαι +τὶς +κοινός +εἰμί +ἐκεῖνος +κοινός +γάρ +εἰ +διά +βρῶμα +ὁ +ἀδελφός +σύ +λυπέω +οὐκέτι +κατά +ἀγάπη +περιπατέω +μή +ὁ +βρῶμα +σύ +ἐκεῖνος +ἀπόλλυμι +ὑπέρ +ὅς +Χριστός +ἀποθνῄσκω +οὖν +μή +βλασφημέω +σύ +ὁ +ἀγαθός +γάρ +οὐ +εἰμί +ὁ +βασιλεία +ὁ +θεός +βρῶσις +καί +πόσις +ἀλλά +δικαιοσύνη +καί +εἰρήνη +καί +χαρά +ἐν +πνεῦμα +ἅγιος +γάρ +ὁ +ἐν +οὗτος +δουλεύω +ὁ +Χριστός +εὐάρεστος +ὁ +θεός +καί +δόκιμος +ὁ +ἄνθρωπος +ἄρα +οὖν +διώκω +ὁ +ὁ +εἰρήνη +καί +ὁ +ὁ +οἰκοδομή +ὁ +εἰς +ἀλλήλων +μή +ἕνεκα +βρῶμα +καταλύω +ὁ +ἔργον +ὁ +θεός +μέν +πᾶς +καθαρός +ἀλλά +κακός +ὁ +ἄνθρωπος +ὁ +διά +πρόσκομμα +ἐσθίω +καλός +ὁ +μή +ἐσθίω +κρέας +μηδέ +πίνω +οἶνος +μηδέ +ἐν +ὅς +ὁ +ἀδελφός +σύ +προσκόπτω +σύ +πίστις +ὅς +ἔχω +κατά +σεαυτοῦ +ἔχω +ἐνώπιον +ὁ +θεός +μακάριος +ὁ +μή +κρίνω +ἑαυτοῦ +ἐν +ὅς +δοκιμάζω +δέ +ἐάν +ὁ +διακρίνω +ἐσθίω +κατακρίνω +ὅτι +οὐ +ἐκ +πίστις +δέ +πᾶς +ὅς +οὐ +ἐκ +πίστις +ἁμαρτία +εἰμί +δέ +ὀφείλω +ἐγώ +ὁ +δυνατός +ὁ +ἀσθένημα +ὁ +ἀδύνατος +βαστάζω +καί +μή +ἑαυτοῦ +ἀρέσκω +ἕκαστος +ἐγώ +ὁ +πλησίον +ἀρέσκω +εἰς +ὁ +ἀγαθός +πρός +οἰκοδομή +γάρ +καί +ὁ +Χριστός +οὐ +ἑαυτοῦ +ἀρέσκω +ἀλλά +καθώς +γράφω +ὁ +ὀνειδισμός +ὁ +ὀνειδίζω +σύ +ἐπιπίπτω +ἐπί +ἐγώ +γάρ +ὅσος +προγράφω +εἰς +ὁ +ἡμέτερος +διδασκαλία +γράφω +ἵνα +διά +ὁ +ὑπομονή +καί +διά +ὁ +παράκλησις +ὁ +γραφή +ὁ +ἐλπίς +ἔχω +δέ +ὁ +θεός +ὁ +ὑπομονή +καί +ὁ +παράκλησις +δίδωμι +σύ +ὁ +αὐτός +φρονέω +ἐν +ἀλλήλων +κατά +Χριστός +Ἰησοῦς +ἵνα +ὁμοθυμαδόν +ἐν +εἷς +στόμα +δοξάζω +ὁ +θεός +καί +πατήρ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +διό +προσλαμβάνω +ἀλλήλων +καθώς +καί +ὁ +Χριστός +προσλαμβάνω +ἐγώ +εἰς +δόξα +ὁ +θεός +γάρ +λέγω +Χριστός +διάκονος +περιτομή +γίνομαι +ὑπέρ +ἀλήθεια +θεός +εἰς +ὁ +βεβαιόω +ὁ +ἐπαγγελία +ὁ +πατήρ +δέ +ὁ +ἔθνος +ὑπέρ +ἔλεος +δοξάζω +ὁ +θεός +καθώς +γράφω +διά +οὗτος +ἐξομολογέω +σύ +ἐν +ἔθνος +καί +ὁ +ὄνομα +σύ +ψάλλω +καί +πάλιν +λέγω +ἔθνος +εὐφραίνω +μετά +ὁ +λαός +αὐτός +καί +πάλιν +πᾶς +ὁ +ἔθνος +αἰνέω +ὁ +κύριος +καί +ἐπαινέω +αὐτός +πᾶς +ὁ +λαός +καί +πάλιν +Ἠσαΐας +λέγω +εἰμί +ὁ +ῥίζα +ὁ +Ἰεσσαί +καί +ὁ +ἀνίστημι +ἄρχω +ἔθνος +ἐπί +αὐτός +ἔθνος +ἐλπίζω +δέ +ὁ +θεός +ὁ +ἐλπίς +πληρόω +σύ +πᾶς +χαρά +καί +εἰρήνη +ἐν +ὁ +πιστεύω +εἰς +ὁ +περισσεύω +σύ +ἐν +ὁ +ἐλπίς +ἐν +δύναμις +πνεῦμα +ἅγιος +δέ +ἀδελφός +ἐγώ +πείθω +καί +αὐτός +ἐγώ +περί +σύ +ὅτι +καί +αὐτός +μεστός +εἰμί +ἀγαθωσύνη +πληρόω +πᾶς +ὁ +γνῶσις +δύναμαι +καί +ἀλλήλων +νουθετέω +δέ +τολμηρός +γράφω +σύ +ἀπό +μέρος +ὡς +ἐπαναμιμνῄσκω +σύ +διά +ὁ +χάρις +ὁ +δίδωμι +ἐγώ +ἀπό +ὁ +θεός +εἰς +ὁ +εἰμί +ἐγώ +λειτουργός +Χριστός +Ἰησοῦς +εἰς +ὁ +ἔθνος +ἱερουργέω +ὁ +εὐαγγέλιον +ὁ +θεός +ἵνα +γίνομαι +ὁ +προσφορά +ὁ +ἔθνος +εὐπρόσδεκτος +ἁγιάζω +ἐν +πνεῦμα +ἅγιος +οὖν +ἔχω +ὁ +καύχησις +ἐν +Χριστός +Ἰησοῦς +ὁ +πρός +ὁ +θεός +γάρ +οὐ +τολμάω +λαλέω +τὶς +ὅς +οὐ +κατεργάζομαι +Χριστός +διά +ἐγώ +εἰς +ὑπακοή +ἔθνος +λόγος +καί +ἔργον +ἐν +δύναμις +σημεῖον +καί +τέρας +ἐν +δύναμις +πνεῦμα +ἅγιος +ὥστε +ἐγώ +ἀπό +Ἱεροσόλυμα +καί +κύκλῳ +μέχρι +ὁ +Ἰλλυρικόν +πληρόω +ὁ +εὐαγγέλιον +ὁ +Χριστός +δέ +οὕτω +φιλοτιμέομαι +εὐαγγελίζω +οὐ +ὅπου +ὀνομάζω +Χριστός +ἵνα +μή +ἐπί +ἀλλότριος +θεμέλιος +οἰκοδομέω +ἀλλά +καθώς +γράφω +ὁράω +ὅς +οὐ +ἀναγγέλλω +περί +αὐτός +καί +ὅς +οὐ +ἀκούω +συνίημι +διό +καί +ἐγκόπτω +ὁ +πολύς +ὁ +ἔρχομαι +πρός +σύ +δέ +νυνί +μηκέτι +τόπος +ἔχω +ἐν +ὁ +κλίμα +οὗτος +δέ +ἐπιποθία +ἔχω +ὁ +ἔρχομαι +πρός +σύ +ἀπό +ἱκανός +ἔτος +ὡς +ἄν +πορεύομαι +εἰς +ὁ +Σπανία +γάρ +ἐλπίζω +διαπορεύομαι +θεάομαι +σύ +καί +ὑπό +σύ +προπέμπω +ἐκεῖ +ἐάν +σύ +πρῶτος +ἀπό +μέρος +ἐμπίπλημι +δέ +νυνί +πορεύομαι +εἰς +Ἱεροσόλυμα +διακονέω +ὁ +ἅγιος +γάρ +εὐδοκέω +Μακεδονία +καί +Ἀχαΐα +κοινωνία +τὶς +ποιέω +εἰς +ὁ +πτωχός +ὁ +ἅγιος +ὁ +ἐν +Ἱεροσόλυμα +γάρ +εὐδοκέω +καί +ὀφειλέτης +εἰμί +αὐτός +γάρ +εἰ +ὁ +πνευματικός +αὐτός +κοινωνέω +ὁ +ἔθνος +ὀφείλω +καί +ἐν +ὁ +σαρκικός +λειτουργέω +αὐτός +οὖν +οὗτος +ἐπιτελέω +καί +σφραγίζω +αὐτός +ὁ +καρπός +οὗτος +ἀπέρχομαι +διά +σύ +εἰς +Σπανία +δέ +οἶδα +ὅτι +ἔρχομαι +πρός +σύ +ἐν +πλήρωμα +εὐλογία +Χριστός +ἔρχομαι +δέ +ἀδελφός +παρακαλέω +διά +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +καί +διά +ὁ +ἀγάπη +ὁ +πνεῦμα +σύ +συναγωνίζομαι +ἐγώ +ἐν +ὁ +προσευχή +ὑπέρ +ἐγώ +πρός +ὁ +θεός +ἵνα +ῥύομαι +ἀπό +ὁ +ἀπειθέω +ἐν +ὁ +Ἰουδαία +καί +ὁ +διακονία +ἐγώ +ὁ +εἰς +Ἱεροσόλυμα +εὐπρόσδεκτος +ὁ +ἅγιος +γίνομαι +ἵνα +ἐν +χαρά +ἔρχομαι +πρός +σύ +διά +θέλημα +θεός +συναναπαύομαι +σύ +δέ +ὁ +θεός +ὁ +εἰρήνη +μετά +πᾶς +σύ +ἀμήν +δέ +συνίστημι +σύ +Φοίβη +ὁ +ἀδελφή +ἐγώ +εἰμί +διάκονος +ὁ +ἐκκλησία +ὁ +ἐν +Κεγχρεαί +ἵνα +αὐτός +προσδέχομαι +ἐν +κύριος +ἀξίως +ὁ +ἅγιος +καί +παρίστημι +αὐτός +ἐν +ἄν +ὅς +σύ +χρῄζω +πρᾶγμα +γάρ +καί +αὐτός +γίνομαι +προστάτις +πολύς +καί +ἐγώ +αὐτός +ἀσπάζομαι +Πρίσκα +καί +Ἀκύλας +ὁ +συνεργός +ἐγώ +ἐν +Χριστός +Ἰησοῦς +ὅστις +ὑπέρ +ὁ +ψυχή +ἐγώ +ὁ +ἑαυτοῦ +τράχηλος +ὑποτίθημι +ὅς +εὐχαριστέω +οὐ +ἐγώ +μόνος +ἀλλά +καί +πᾶς +ὁ +ἐκκλησία +ὁ +ἔθνος +καί +ὁ +κατά +οἶκος +αὐτός +ἐκκλησία +ἀσπάζομαι +Ἐπαίνετος +ὁ +ἀγαπητός +ἐγώ +ὅς +εἰμί +ἀπαρχή +ὁ +Ἀσία +εἰς +Χριστός +ἀσπάζομαι +Μαρία +ὅστις +πολύς +κοπιάω +εἰς +σύ +ἀσπάζομαι +Ἀνδρόνικος +καί +Ἰουνιᾶς +ὁ +συγγενής +ἐγώ +καί +συναιχμάλωτος +ἐγώ +ὅστις +εἰμί +ἐπίσημος +ἐν +ὁ +ἀπόστολος +ὅς +καί +πρό +ἐγώ +γίνομαι +ἐν +Χριστός +ἀσπάζομαι +Ἀμπλιᾶτος +ὁ +ἀγαπητός +ἐγώ +ἐν +κύριος +ἀσπάζομαι +Οὐρβανός +ὁ +συνεργός +ἐγώ +ἐν +Χριστός +καί +Στάχυς +ὁ +ἀγαπητός +ἐγώ +ἀσπάζομαι +Ἀπελλῆς +ὁ +δόκιμος +ἐν +Χριστός +ἀσπάζομαι +ὁ +ἐκ +ὁ +Ἀριστόβουλος +ἀσπάζομαι +Ἡρῳδίων +ὁ +συγγενής +ἐγώ +ἀσπάζομαι +ὁ +ἐκ +ὁ +Νάρκισσος +ὁ +εἰμί +ἐν +κύριος +ἀσπάζομαι +Τρύφαινα +καί +Τρυφῶσα +ὁ +κοπιάω +ἐν +κύριος +ἀσπάζομαι +Περσίς +ὁ +ἀγαπητός +ὅστις +πολύς +κοπιάω +ἐν +κύριος +ἀσπάζομαι +Ῥοῦφος +ὁ +ἐκλεκτός +ἐν +κύριος +καί +ὁ +μήτηρ +αὐτός +καί +ἐγώ +ἀσπάζομαι +Ἀσύγκριτος +Φλέγων +Ἑρμῆς +Πατροβᾶς +Ἑρμᾶς +καί +ὁ +σύν +αὐτός +ἀδελφός +ἀσπάζομαι +Φιλόλογος +καί +Ἰουλία +Νηρεύς +καί +ὁ +ἀδελφή +αὐτός +καί +Ὀλυμπᾶς +καί +ὁ +σύν +αὐτός +πᾶς +ἅγιος +ἀσπάζομαι +ἀλλήλων +ἐν +φίλημα +ἅγιος +ἀσπάζομαι +σύ +ὁ +ἐκκλησία +πᾶς +ὁ +Χριστός +δέ +ἀδελφός +παρακαλέω +σύ +σκοπέω +ὁ +ὁ +διχοστασία +καί +ὁ +σκάνδαλον +παρά +ὁ +διδαχή +ὅς +σύ +μανθάνω +ποιέω +καί +ἐκκλίνω +ἀπό +αὐτός +γάρ +ὁ +τοιοῦτος +ὁ +κύριος +ἐγώ +Χριστός +οὐ +δουλεύω +ἀλλά +ὁ +ἑαυτοῦ +κοιλία +καί +διά +ὁ +χρηστολογία +καί +εὐλογία +ἐξαπατάω +ὁ +καρδία +ὁ +ἄκακος +γάρ +ὁ +σύ +ὑπακοή +εἰς +πᾶς +ἀφικνέομαι +οὖν +ἐπί +σύ +χαίρω +δέ +θέλω +σύ +σοφός +εἰμί +εἰς +ὁ +ἀγαθός +δέ +ἀκέραιος +εἰς +ὁ +κακός +δέ +ὁ +θεός +ὁ +εἰρήνη +συντρίβω +ὁ +Σατανᾶς +ὑπό +ὁ +πούς +σύ +ἐν +τάχος +ὁ +χάρις +ὁ +κύριος +ἐγώ +Ἰησοῦς +μετά +σύ +ἀσπάζομαι +σύ +Τιμόθεος +ὁ +συνεργός +ἐγώ +καί +Λούκιος +καί +Ἰάσων +καί +Σωσίπατρος +ὁ +συγγενής +ἐγώ +ἀσπάζομαι +σύ +ἐγώ +Τέρτιος +ὁ +γράφω +ὁ +ἐπιστολή +ἐν +κύριος +ἀσπάζομαι +σύ +Γάϊος +ὁ +ξένος +ἐγώ +καί +ὅλος +ὁ +ἐκκλησία +ἀσπάζομαι +σύ +Ἔραστος +ὁ +οἰκονόμος +ὁ +πόλις +καί +Κούαρτος +ὁ +ἀδελφός +δέ +ὁ +δύναμαι +σύ +στηρίζω +κατά +ὁ +εὐαγγέλιον +ἐγώ +καί +ὁ +κήρυγμα +Ἰησοῦς +Χριστός +κατά +ἀποκάλυψις +μυστήριον +χρόνος +αἰώνιος +σιγάω +δέ +φανερόω +νῦν +τέ +διά +γραφή +προφητικός +κατά +ἐπιταγή +ὁ +αἰώνιος +θεός +εἰς +ὑπακοή +πίστις +εἰς +πᾶς +ὁ +ἔθνος +γνωρίζω +μόνος +σοφός +θεός +διά +Ἰησοῦς +Χριστός +ὅς +ὁ +δόξα +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +Παῦλος +κλητός +ἀπόστολος +Χριστός +Ἰησοῦς +διά +θέλημα +θεός +καί +Σωσθένης +ὁ +ἀδελφός +ὁ +ἐκκλησία +ὁ +θεός +ὁ +εἰμί +ἐν +Κόρινθος +ἁγιάζω +ἐν +Χριστός +Ἰησοῦς +κλητός +ἅγιος +σύν +πᾶς +ὁ +ἐπικαλέω +ὁ +ὄνομα +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἐν +πᾶς +τόπος +αὐτός +καί +ἐγώ +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +εὐχαριστέω +ὁ +θεός +πάντοτε +περί +σύ +ἐπί +ὁ +χάρις +ὁ +θεός +ὁ +δίδωμι +σύ +ἐν +Χριστός +Ἰησοῦς +ὅτι +ἐν +πᾶς +πλουτίζω +ἐν +αὐτός +ἐν +πᾶς +λόγος +καί +πᾶς +γνῶσις +καθώς +ὁ +μαρτύριον +ὁ +Χριστός +βεβαιόω +ἐν +σύ +ὥστε +σύ +μή +ὑστερέω +ἐν +μηδείς +χάρισμα +ἀπεκδέχομαι +ὁ +ἀποκάλυψις +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὅς +καί +βεβαιόω +σύ +ἕως +τέλος +ἀνέγκλητος +ἐν +ὁ +ἡμέρα +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +πιστός +ὁ +θεός +διά +ὅς +καλέω +εἰς +κοινωνία +ὁ +υἱός +αὐτός +Ἰησοῦς +Χριστός +ὁ +κύριος +ἐγώ +δέ +ἀδελφός +παρακαλέω +σύ +διά +ὁ +ὄνομα +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἵνα +ὁ +αὐτός +λέγω +πᾶς +καί +μή +εἰμί +ἐν +σύ +σχίσμα +δέ +εἰμί +καταρτίζω +ἐν +ὁ +αὐτός +νοῦς +καί +ἐν +ὁ +αὐτός +γνώμη +γάρ +ἀδελφός +ἐγώ +δηλόω +ἐγώ +περί +σύ +ὑπό +ὁ +Χλόη +ὅτι +ἔρις +ἐν +σύ +εἰμί +δέ +λέγω +οὗτος +ὅτι +ἕκαστος +σύ +λέγω +μέν +ἐγώ +εἰμί +Παῦλος +δέ +ἐγώ +Ἀπολλῶς +δέ +ἐγώ +Κηφᾶς +δέ +ἐγώ +Χριστός +μερίζω +ὁ +Χριστός +μή +Παῦλος +σταυρόω +ὑπέρ +σύ +ἤ +εἰς +ὁ +ὄνομα +Παῦλος +βαπτίζω +εὐχαριστέω +ὅτι +οὐδείς +σύ +βαπτίζω +εἰ +μή +Κρίσπος +καί +Γάϊος +ἵνα +μή +τὶς +λέγω +ὅτι +εἰς +ὁ +ἐμός +ὄνομα +βαπτίζω +δέ +βαπτίζω +καί +ὁ +Στεφανᾶς +οἶκος +λοιπός +οὐ +οἶδα +εἰ +τὶς +ἄλλος +βαπτίζω +γάρ +ἀποστέλλω +ἐγώ +Χριστός +οὐ +βαπτίζω +ἀλλά +εὐαγγελίζω +οὐ +ἐν +σοφία +λόγος +ἵνα +μή +κενόω +ὁ +σταυρός +ὁ +Χριστός +γάρ +μέν +ὁ +λόγος +ὁ +ὁ +σταυρός +ὁ +ἀπόλλυμι +μωρία +εἰμί +δέ +ὁ +σῴζω +ἐγώ +δύναμις +θεός +εἰμί +γάρ +γράφω +ἀπόλλυμι +ὁ +σοφία +ὁ +σοφός +καί +ὁ +σύνεσις +ὁ +συνετός +ἀθετέω +ποῦ +σοφός +ποῦ +γραμματεύς +ποῦ +συζητητής +ὁ +αἰών +οὗτος +οὐχί +μωραίνω +ὁ +θεός +ὁ +σοφία +ὁ +κόσμος +γάρ +ἐπειδή +ἐν +ὁ +σοφία +ὁ +θεός +οὐ +γινώσκω +ὁ +κόσμος +διά +ὁ +σοφία +ὁ +θεός +εὐδοκέω +ὁ +θεός +διά +ὁ +μωρία +ὁ +κήρυγμα +σῴζω +ὁ +πιστεύω +ἐπειδή +καί +Ἰουδαῖος +σημεῖον +αἰτέω +καί +Ἕλλην +σοφία +ζητέω +δέ +ἐγώ +κηρύσσω +Χριστός +σταυρόω +μέν +Ἰουδαῖος +σκάνδαλον +δέ +ἔθνος +μωρία +δέ +αὐτός +ὁ +κλητός +τέ +Ἰουδαῖος +καί +Ἕλλην +Χριστός +θεός +δύναμις +καί +θεός +σοφία +ὅτι +ὁ +μωρός +ὁ +θεός +σοφός +ὁ +ἄνθρωπος +εἰμί +καί +ὁ +ἀσθενής +ὁ +θεός +ἰσχυρός +ὁ +ἄνθρωπος +γάρ +ἀδελφός +βλέπω +ὁ +κλῆσις +σύ +ὅτι +οὐ +πολύς +σοφός +κατά +σάρξ +οὐ +πολύς +δυνατός +οὐ +πολύς +εὐγενής +ἀλλά +ὁ +μωρός +ὁ +κόσμος +ἐκλέγω +ὁ +θεός +ἵνα +καταισχύνω +ὁ +σοφός +καί +ὁ +ἀσθενής +ὁ +κόσμος +ἐκλέγω +ὁ +θεός +ἵνα +καταισχύνω +ὁ +ἰσχυρός +καί +ὁ +ἀγενής +ὁ +κόσμος +καί +ὁ +ἐξουθενέω +ὁ +μή +εἰμί +ἐκλέγω +ὁ +θεός +ἵνα +ὁ +εἰμί +καταργέω +ὅπως +μή +καυχάομαι +πᾶς +σάρξ +ἐνώπιον +ὁ +θεός +δέ +ἐκ +αὐτός +σύ +εἰμί +ἐν +Χριστός +Ἰησοῦς +ὅς +γίνομαι +ἐγώ +ἀπό +θεός +σοφία +τέ +δικαιοσύνη +καί +ἁγιασμός +καί +ἀπολύτρωσις +ἵνα +καθώς +γράφω +ὁ +καυχάομαι +ἐν +κύριος +καυχάομαι +ἀδελφός +κἀγώ +ἔρχομαι +πρός +σύ +ἔρχομαι +οὐ +κατά +ὑπεροχή +λόγος +ἤ +σοφία +καταγγέλλω +σύ +ὁ +μαρτύριον +ὁ +θεός +γάρ +οὐ +κρίνω +τὶς +οἶδα +ἐν +σύ +εἰ +μή +Ἰησοῦς +Χριστός +καί +οὗτος +σταυρόω +κἀγώ +ἐν +ἀσθένεια +καί +ἐν +φόβος +καί +ἐν +τρόμος +πολύς +γίνομαι +πρός +σύ +καί +ὁ +λόγος +ἐγώ +καί +ὁ +κήρυγμα +ἐγώ +οὐ +ἐν +πειθός +σοφία +λόγος +ἀλλά +ἐν +ἀπόδειξις +πνεῦμα +καί +δύναμις +ἵνα +ὁ +πίστις +σύ +εἰμί +μή +ἐν +σοφία +ἄνθρωπος +ἀλλά +ἐν +δύναμις +θεός +δέ +σοφία +λαλέω +ἐν +ὁ +τέλειος +δέ +οὐ +σοφία +ὁ +αἰών +οὗτος +οὐδέ +ὁ +ἄρχων +ὁ +αἰών +οὗτος +ὁ +καταργέω +ἀλλά +λαλέω +θεός +σοφία +ἐν +μυστήριον +ὁ +ἀποκρύπτω +ὅς +προορίζω +ὁ +θεός +πρό +ὁ +αἰών +εἰς +δόξα +ἐγώ +ὅς +οὐδείς +ὁ +ἄρχων +ὁ +αἰών +οὗτος +γινώσκω +γάρ +εἰ +γινώσκω +ἄν +οὐ +ὁ +κύριος +ὁ +δόξα +σταυρόω +ἀλλά +καθώς +γράφω +ὅς +ὀφθαλμός +οὐ +ὁράω +καί +οὖς +οὐ +ἀκούω +καί +ἐπί +καρδία +ἄνθρωπος +οὐ +ἀναβαίνω +ὅσος +ἑτοιμάζω +ὁ +θεός +ὁ +ἀγαπάω +αὐτός +γάρ +ἐγώ +ἀποκαλύπτω +ὁ +θεός +διά +ὁ +πνεῦμα +γάρ +ὁ +πνεῦμα +πᾶς +ἐραυνάω +καί +ὁ +βάθος +ὁ +θεός +γάρ +τίς +ἄνθρωπος +οἶδα +ὁ +ὁ +ἄνθρωπος +εἰ +μή +ὁ +πνεῦμα +ὁ +ἄνθρωπος +ὁ +ἐν +αὐτός +οὕτω +καί +ὁ +ὁ +θεός +οὐδείς +γινώσκω +εἰ +μή +ὁ +πνεῦμα +ὁ +θεός +δέ +οὐ +ἐγώ +ὁ +πνεῦμα +ὁ +κόσμος +λαμβάνω +ἀλλά +ὁ +πνεῦμα +ὁ +ἐκ +ὁ +θεός +ἵνα +οἶδα +ὁ +ὑπό +ὁ +θεός +χαρίζομαι +ἐγώ +ὅς +καί +λαλέω +οὐ +ἐν +διδακτός +ἀνθρώπινος +σοφία +λόγος +ἀλλά +ἐν +διδακτός +πνεῦμα +πνευματικός +πνευματικός +συγκρίνω +δέ +ψυχικός +ἄνθρωπος +οὐ +δέχομαι +ὁ +ὁ +πνεῦμα +ὁ +θεός +γάρ +μωρία +αὐτός +εἰμί +καί +οὐ +δύναμαι +γινώσκω +ὅτι +πνευματικῶς +ἀνακρίνω +δέ +ὁ +πνευματικός +ἀνακρίνω +μέν +πᾶς +δέ +αὐτός +ὑπό +οὐδείς +ἀνακρίνω +γάρ +τίς +γινώσκω +νοῦς +κύριος +ὅς +συμβιβάζω +αὐτός +δέ +ἐγώ +νοῦς +Χριστός +ἔχω +ἀδελφός +κἀγώ +δύναμαι +οὐ +λαλέω +σύ +ὡς +πνευματικός +ἀλλά +ὡς +σάρκινος +ὡς +νήπιος +ἐν +Χριστός +γάλα +σύ +ποτίζω +οὐ +βρῶμα +γάρ +οὔπω +δύναμαι +ἀλλά +οὐδέ +ἔτι +νῦν +δύναμαι +γάρ +ἔτι +σαρκικός +εἰμί +γάρ +ὅπου +ἐν +σύ +ζῆλος +καί +ἔρις +οὐχί +σαρκικός +εἰμί +καί +κατά +ἄνθρωπος +περιπατέω +γάρ +ὅταν +μέν +λέγω +τὶς +ἐγώ +εἰμί +Παῦλος +δέ +ἕτερος +ἐγώ +Ἀπολλῶς +οὐ +ἄνθρωπος +εἰμί +οὖν +τίς +εἰμί +Ἀπολλῶς +δέ +τίς +εἰμί +Παῦλος +διάκονος +διά +ὅς +πιστεύω +ὡς +καί +ἕκαστος +ὁ +κύριος +δίδωμι +ἐγώ +φυτεύω +Ἀπολλῶς +ποτίζω +ἀλλά +ὁ +θεός +αὐξάνω +ὥστε +οὔτε +ὁ +φυτεύω +εἰμί +τὶς +οὔτε +ὁ +ποτίζω +ἀλλά +ὁ +αὐξάνω +θεός +δέ +ὁ +φυτεύω +καί +ὁ +ποτίζω +εἷς +εἰμί +δέ +ἕκαστος +ὁ +ἴδιος +μισθός +λαμβάνω +κατά +ὁ +ἴδιος +κόπος +γάρ +εἰμί +θεός +συνεργός +θεός +γεώργιον +θεός +οἰκοδομή +εἰμί +κατά +ὁ +χάρις +ὁ +θεός +ὁ +δίδωμι +ἐγώ +ὡς +σοφός +ἀρχιτέκτων +θεμέλιος +τίθημι +δέ +ἄλλος +ἐποικοδομέω +δέ +ἕκαστος +βλέπω +πῶς +ἐποικοδομέω +γάρ +οὐδείς +δύναμαι +θεμέλιος +ἄλλος +τίθημι +παρά +ὁ +κεῖμαι +ὅς +εἰμί +Ἰησοῦς +Χριστός +δέ +εἰ +τὶς +ἐποικοδομέω +ἐπί +ὁ +θεμέλιος +χρυσίον +ἀργύριον +λίθος +τίμιος +ξύλον +χόρτος +καλάμη +ἕκαστος +ὁ +ἔργον +φανερός +γίνομαι +γάρ +ὁ +ἡμέρα +δηλόω +ὅτι +ἐν +πῦρ +ἀποκαλύπτω +καί +ἕκαστος +ὁ +ἔργον +ὁποῖος +εἰμί +ὁ +πῦρ +αὐτός +δοκιμάζω +εἰ +μένω +τὶς +ὁ +ἔργον +ὅς +ἐποικοδομέω +μισθός +λαμβάνω +εἰ +τὶς +ὁ +ἔργον +κατακαίω +ζημιόω +δέ +αὐτός +σῴζω +δέ +ὡς +οὕτω +διά +πῦρ +οὐ +οἶδα +ὅτι +ναός +θεός +εἰμί +καί +ὁ +πνεῦμα +ὁ +θεός +ἐν +σύ +οἰκέω +εἰ +τὶς +ὁ +ναός +ὁ +θεός +φθείρω +φθείρω +οὗτος +ὁ +θεός +γάρ +ὁ +ναός +ὁ +θεός +ἅγιος +εἰμί +ὅστις +εἰμί +σύ +μηδείς +ἑαυτοῦ +ἐξαπατάω +εἰ +τὶς +δοκέω +σοφός +εἰμί +ἐν +σύ +ἐν +ὁ +αἰών +οὗτος +μωρός +γίνομαι +ἵνα +γίνομαι +σοφός +γάρ +ὁ +σοφία +ὁ +κόσμος +οὗτος +μωρία +παρά +ὁ +θεός +εἰμί +γάρ +γράφω +ὁ +δράσσομαι +ὁ +σοφός +ἐν +ὁ +πανουργία +αὐτός +καί +πάλιν +κύριος +γινώσκω +ὁ +διαλογισμός +ὁ +σοφός +ὅτι +εἰμί +μάταιος +ὥστε +μηδείς +καυχάομαι +ἐν +ἄνθρωπος +γάρ +πᾶς +σύ +εἰμί +εἴτε +Παῦλος +εἴτε +Ἀπολλῶς +εἴτε +Κηφᾶς +εἴτε +κόσμος +εἴτε +ζωή +εἴτε +θάνατος +εἴτε +ἐνίστημι +εἴτε +μέλλω +πᾶς +σύ +δέ +σύ +Χριστός +δέ +Χριστός +θεός +οὕτω +ἐγώ +λογίζομαι +ἄνθρωπος +ὡς +ὑπηρέτης +Χριστός +καί +οἰκονόμος +μυστήριον +θεός +ὧδε +λοιπός +ζητέω +ἐν +ὁ +οἰκονόμος +ἵνα +πιστός +τὶς +εὑρίσκω +δέ +ἐγώ +εἰς +ἐλάχιστος +εἰμί +ἵνα +ἀνακρίνω +ὑπό +σύ +ἤ +ὑπό +ἀνθρώπινος +ἡμέρα +ἀλλά +οὐδέ +ἐμαυτοῦ +ἀνακρίνω +γάρ +οὐδείς +ἐμαυτοῦ +συνοράω +ἀλλά +οὐ +ἐν +οὗτος +δικαιόω +δέ +ὁ +ἀνακρίνω +ἐγώ +κύριος +εἰμί +ὥστε +μή +πρό +καιρός +τὶς +κρίνω +ἕως +ἄν +ἔρχομαι +ὁ +κύριος +ὅς +καί +φωτίζω +ὁ +κρυπτός +ὁ +σκότος +καί +φανερόω +ὁ +βουλή +ὁ +καρδία +καί +τότε +ὁ +ἔπαινος +γίνομαι +ἕκαστος +ἀπό +ὁ +θεός +δέ +ἀδελφός +οὗτος +μετασχηματίζω +εἰς +ἐμαυτοῦ +καί +Ἀπολλῶς +διά +σύ +ἵνα +ἐν +ἐγώ +μανθάνω +ὁ +μή +ὑπέρ +ὅς +γράφω +ἵνα +μή +εἷς +ὑπέρ +ὁ +εἷς +φυσιόω +κατά +ὁ +ἕτερος +γάρ +τίς +σύ +διακρίνω +δέ +ἔχω +τίς +ὅς +οὐ +λαμβάνω +δέ +εἰ +καί +λαμβάνω +τίς +καυχάομαι +ὡς +μή +λαμβάνω +ἤδη +κορέννυμι +εἰμί +ἤδη +πλουτέω +χωρίς +ἐγώ +βασιλεύω +καί +ὄφελον +γέ +βασιλεύω +ἵνα +καί +ἐγώ +σύ +συμβασιλεύω +γάρ +δοκέω +ὁ +θεός +ἐγώ +ὁ +ἀπόστολος +ἔσχατος +ἀποδείκνυμι +ὡς +ἐπιθανάτιος +ὅτι +θέατρον +γίνομαι +ὁ +κόσμος +καί +ἄγγελος +καί +ἄνθρωπος +ἐγώ +μωρός +διά +Χριστός +δέ +σύ +φρόνιμος +ἐν +Χριστός +ἐγώ +ἀσθενής +δέ +σύ +ἰσχυρός +σύ +ἔνδοξος +δέ +ἐγώ +ἄτιμος +ἄχρι +ὁ +ἄρτι +ὥρα +καί +πεινάω +καί +διψάω +καί +γυμνιτεύω +καί +κολαφίζω +καί +ἀστατέω +καί +κοπιάω +ἐργάζομαι +ὁ +ἴδιος +χείρ +λοιδορέω +εὐλογέω +διώκω +ἀνέχω +δυσφημέω +παρακαλέω +ὡς +περικάθαρμα +ὁ +κόσμος +πᾶς +περίψημα +γίνομαι +ἕως +ἄρτι +οὐ +ἐντρέπω +σύ +γράφω +οὗτος +ἀλλά +ὡς +τέκνον +ἐγώ +ἀγαπητός +νουθετέω +γάρ +ἐάν +μύριοι +παιδαγωγός +ἔχω +ἐν +Χριστός +ἀλλά +οὐ +πολύς +πατήρ +γάρ +ἐν +Χριστός +Ἰησοῦς +διά +ὁ +εὐαγγέλιον +ἐγώ +σύ +γεννάω +οὖν +παρακαλέω +σύ +μιμητής +ἐγώ +γίνομαι +διά +οὗτος +αὐτός +πέμπω +σύ +Τιμόθεος +ὅς +εἰμί +ἐγώ +τέκνον +ἀγαπητός +καί +πιστός +ἐν +κύριος +ὅς +σύ +ἀναμιμνῄσκω +ὁ +ὁδός +ἐγώ +ὁ +ἐν +Χριστός +Ἰησοῦς +καθώς +πανταχοῦ +ἐν +πᾶς +ἐκκλησία +διδάσκω +δέ +ὡς +μή +ἔρχομαι +ἐγώ +πρός +σύ +φυσιόω +τὶς +δέ +ἔρχομαι +ταχέως +πρός +σύ +ἐάν +ὁ +κύριος +θέλω +καί +γινώσκω +οὐ +ὁ +λόγος +ὁ +φυσιόω +ἀλλά +ὁ +δύναμις +γάρ +οὐ +ἐν +λόγος +ὁ +βασιλεία +ὁ +θεός +ἀλλά +ἐν +δύναμις +τίς +θέλω +ἐν +ῥάβδος +ἔρχομαι +πρός +σύ +ἤ +ἐν +ἀγάπη +τέ +πνεῦμα +πραΰτης +ὅλως +ἀκούω +ἐν +σύ +πορνεία +καί +τοιοῦτος +πορνεία +ὅστις +οὐδέ +ἐν +ὁ +ἔθνος +ὥστε +τὶς +γυνή +ὁ +πατήρ +ἔχω +καί +σύ +φυσιόω +εἰμί +καί +οὐχί +μᾶλλον +πενθέω +ἵνα +αἴρω +ἐκ +μέσος +σύ +ὁ +ὁ +ἔργον +οὗτος +πράσσω +γάρ +ἐγώ +μέν +ἄπειμι (I) +ὁ +σῶμα +δέ +πάρειμι +ὁ +πνεῦμα +ἤδη +κρίνω +ὡς +πάρειμι +ὁ +οὕτω +οὗτος +κατεργάζομαι +ἐν +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +συνάγω +σύ +καί +ὁ +ἐμός +πνεῦμα +σύν +ὁ +δύναμις +ὁ +κύριος +ἐγώ +Ἰησοῦς +παραδίδωμι +ὁ +τοιοῦτος +ὁ +Σατανᾶς +εἰς +ὄλεθρος +ὁ +σάρξ +ἵνα +ὁ +πνεῦμα +σῴζω +ἐν +ὁ +ἡμέρα +ὁ +κύριος +οὐ +καλός +ὁ +καύχημα +σύ +οὐ +οἶδα +ὅτι +μικρός +ζύμη +ὅλος +ὁ +φύραμα +ζυμόω +ἐκκαθαίρω +ὁ +παλαιός +ζύμη +ἵνα +εἰμί +νέος +φύραμα +καθώς +εἰμί +ἄζυμος +γάρ +καί +ὁ +πάσχα +ἐγώ +Χριστός +θύω +ὥστε +ἑορτάζω +μή +ἐν +ζύμη +παλαιός +μηδέ +ἐν +ζύμη +κακία +καί +πονηρία +ἀλλά +ἐν +ἄζυμος +εἰλικρίνεια +καί +ἀλήθεια +γράφω +σύ +ἐν +ὁ +ἐπιστολή +μή +συναναμίγνυμι +πόρνος +οὐ +πάντως +ὁ +πόρνος +ὁ +κόσμος +οὗτος +ἤ +ὁ +πλεονέκτης +καί +ἅρπαξ +ἤ +εἰδωλολάτρης +ἐπεί +ἄρα +ὀφείλω +ἐκ +ὁ +κόσμος +ἐξέρχομαι +δέ +νῦν +γράφω +σύ +μή +συναναμίγνυμι +ἐάν +τὶς +ἀδελφός +ὀνομάζω +εἰμί +πόρνος +ἤ +πλεονέκτης +ἤ +εἰδωλολάτρης +ἤ +λοίδορος +ἤ +μέθυσος +ἤ +ἅρπαξ +ὁ +τοιοῦτος +μηδέ +συνεσθίω +γάρ +τίς +ἐγώ +ὁ +ἔξω +κρίνω +οὐχί +ὁ +ἔσω +σύ +κρίνω +δέ +ὁ +ἔξω +ὁ +θεός +κρίνω +ἐξαίρω +ὁ +πονηρός +ἐκ +σύ +αὐτός +τολμάω +τὶς +σύ +πρᾶγμα +ἔχω +πρός +ὁ +ἕτερος +κρίνω +ἐπί +ὁ +ἄδικος +καί +οὐχί +ἐπί +ὁ +ἅγιος +ἤ +οὐ +οἶδα +ὅτι +ὁ +ἅγιος +ὁ +κόσμος +κρίνω +καί +εἰ +ἐν +σύ +κρίνω +ὁ +κόσμος +ἀνάξιος +εἰμί +κριτήριον +ἐλάχιστος +οὐ +οἶδα +ὅτι +ἄγγελος +κρίνω +μήτιγε +βιωτικός +μέν +οὖν +ἐάν +βιωτικός +κριτήριον +ἔχω +ὁ +ἐξουθενέω +ἐν +ὁ +ἐκκλησία +οὗτος +καθίζω +πρός +ἐντροπή +σύ +λέγω +οὐ +οὕτω +ἔνι +ἐν +σύ +οὐδείς +σοφός +ὅς +δύναμαι +διακρίνω +ἀνά +μέσος +ὁ +ἀδελφός +αὐτός +ἀλλά +ἀδελφός +μετά +ἀδελφός +κρίνω +καί +οὗτος +ἐπί +ἄπιστος +μέν +οὖν +ἤδη +ὅλως +ἥττημα +σύ +εἰμί +ὅτι +κρίμα +ἔχω +μετά +ἑαυτοῦ +διά +τίς +οὐχί +μᾶλλον +ἀδικέω +διά +τίς +οὐχί +μᾶλλον +ἀποστερέω +ἀλλά +σύ +ἀδικέω +καί +ἀποστερέω +καί +οὗτος +ἀδελφός +ἤ +οὐ +οἶδα +ὅτι +ἄδικος +θεός +βασιλεία +οὐ +κληρονομέω +μή +πλανάω +οὔτε +πόρνος +οὔτε +εἰδωλολάτρης +οὔτε +μοιχός +οὔτε +μαλακός +οὔτε +ἀρσενοκοίτης +οὔτε +κλέπτης +οὔτε +πλεονέκτης +οὐ +μέθυσος +οὐ +λοίδορος +οὐ +ἅρπαξ +βασιλεία +θεός +κληρονομέω +καί +οὗτος +τὶς +εἰμί +ἀλλά +ἀπολούω +ἀλλά +ἁγιάζω +ἀλλά +δικαιόω +ἐν +ὁ +ὄνομα +ὁ +κύριος +Ἰησοῦς +Χριστός +καί +ἐν +ὁ +πνεῦμα +ὁ +θεός +ἐγώ +πᾶς +ἐγώ +ἔξεστι(ν) +ἀλλά +οὐ +πᾶς +συμφέρω +πᾶς +ἐγώ +ἔξεστι(ν) +ἀλλά +οὐ +ἐγώ +ἐξουσιάζω +ὑπό +τὶς +ὁ +βρῶμα +ὁ +κοιλία +καί +ὁ +κοιλία +ὁ +βρῶμα +δέ +ὁ +θεός +καί +οὗτος +καί +οὗτος +καταργέω +δέ +ὁ +σῶμα +οὐ +ὁ +πορνεία +ἀλλά +ὁ +κύριος +καί +ὁ +κύριος +ὁ +σῶμα +δέ +ὁ +θεός +καί +ὁ +κύριος +ἐγείρω +καί +ἐγώ +ἐξεγείρω +διά +ὁ +δύναμις +αὐτός +οὐ +οἶδα +ὅτι +ὁ +σῶμα +σύ +μέλος +Χριστός +εἰμί +οὖν +αἴρω +ὁ +μέλος +ὁ +Χριστός +ποιέω +πόρνη +μέλος +μή +γίνομαι +ἤ +οὐ +οἶδα +ὅτι +ὁ +κολλάω +ὁ +πόρνη +εἷς +σῶμα +εἰμί +γάρ +φημί +εἰμί +ὁ +δύο +εἰς +σάρξ +εἷς +δέ +ὁ +κολλάω +ὁ +κύριος +εἷς +πνεῦμα +εἰμί +φεύγω +ὁ +πορνεία +πᾶς +ἁμάρτημα +ἐάν +ὅς +ποιέω +ἄνθρωπος +ἐκτός +ὁ +σῶμα +εἰμί +δέ +ὁ +πορνεύω +εἰς +ὁ +ἴδιος +σῶμα +ἁμαρτάνω +ἤ +οὐ +οἶδα +ὅτι +ὁ +σῶμα +σύ +ναός +ὁ +ἐν +σύ +ἅγιος +πνεῦμα +εἰμί +ὅς +ἔχω +ἀπό +θεός +καί +οὐ +εἰμί +ἑαυτοῦ +γάρ +ἀγοράζω +τιμή +δή +δοξάζω +ὁ +θεός +ἐν +ὁ +σῶμα +σύ +δέ +περί +ὅς +γράφω +καλός +ἄνθρωπος +γυνή +μή +ἅπτω +δέ +διά +ὁ +πορνεία +ἕκαστος +ὁ +ἑαυτοῦ +γυνή +ἔχω +καί +ἕκαστος +ὁ +ἴδιος +ἀνήρ +ἔχω +ὁ +γυνή +ὁ +ἀνήρ +ὁ +ὀφειλή +ἀποδίδωμι +δέ +ὁμοίως +καί +ὁ +γυνή +ὁ +ἀνήρ +ὁ +γυνή +ὁ +ἴδιος +σῶμα +οὐ +ἐξουσιάζω +ἀλλά +ὁ +ἀνήρ +δέ +ὁμοίως +καί +ὁ +ἀνήρ +ὁ +ἴδιος +σῶμα +οὐ +ἐξουσιάζω +ἀλλά +ὁ +γυνή +μή +ἀποστερέω +ἀλλήλων +εἰ +μήτι +ἄν +ἐκ +σύμφωνος +πρός +καιρός +ἵνα +σχολάζω +ὁ +προσευχή +καί +πάλιν +ἐπί +ὁ +αὐτός +εἰμί +ἵνα +μή +πειράζω +σύ +ὁ +Σατανᾶς +διά +ὁ +ἀκρασία +σύ +δέ +οὗτος +λέγω +κατά +συγγνώμη +οὐ +κατά +ἐπιταγή +δέ +θέλω +πᾶς +ἄνθρωπος +εἰμί +ὡς +καί +ἐμαυτοῦ +ἀλλά +ἕκαστος +ἔχω +ἴδιος +χάρισμα +ἐκ +θεός +μέν +ὁ +οὕτω +δέ +ὁ +οὕτω +δέ +λέγω +ὁ +ἄγαμος +καί +ὁ +χῆρος +καλός +αὐτός +ἐάν +μένω +ὡς +κἀγώ +δέ +εἰ +οὐ +ἐγκρατεύομαι +γαμέω +γάρ +κρείττων +εἰμί +γαμέω +ἤ +πυρόω +δέ +ὁ +γαμέω +παραγγέλλω +οὐ +ἐγώ +ἀλλά +ὁ +κύριος +γυνή +ἀπό +ἀνήρ +μή +χωρίζω +δέ +ἐάν +καί +χωρίζω +μένω +ἄγαμος +ἤ +ὁ +ἀνήρ +καταλλάσσω +καί +ἀνήρ +γυνή +μή +ἀφίημι +δέ +ὁ +λοιπός +λέγω +ἐγώ +οὐ +ὁ +κύριος +εἰ +τὶς +ἀδελφός +ἔχω +γυνή +ἄπιστος +καί +οὗτος +συνευδοκέω +οἰκέω +μετά +αὐτός +μή +ἀφίημι +αὐτός +καί +γυνή +ὅστις +ἔχω +ἀνήρ +ἄπιστος +καί +οὗτος +συνευδοκέω +οἰκέω +μετά +αὐτός +μή +ἀφίημι +ὁ +ἀνήρ +γάρ +ἁγιάζω +ὁ +ἀνήρ +ὁ +ἄπιστος +ἐν +ὁ +γυνή +καί +ἁγιάζω +ὁ +γυνή +ὁ +ἄπιστος +ἐν +ὁ +ἀδελφός +ἄρα +ἐπεί +ὁ +τέκνον +σύ +ἀκάθαρτος +εἰμί +δέ +νῦν +ἅγιος +εἰμί +δέ +εἰ +ὁ +ἄπιστος +χωρίζω +χωρίζω +οὐ +δουλόω +ὁ +ἀδελφός +ἤ +ὁ +ἀδελφή +ἐν +ὁ +τοιοῦτος +δέ +ἐν +εἰρήνη +καλέω +σύ +ὁ +θεός +γάρ +γυνή +τίς +οἶδα +εἰ +ὁ +ἀνήρ +σῴζω +ἤ +ἀνήρ +τίς +οἶδα +εἰ +ὁ +γυνή +σῴζω +εἰ +μή +ὡς +ἕκαστος +μερίζω +ὁ +κύριος +ὡς +ἕκαστος +καλέω +ὁ +θεός +οὕτω +περιπατέω +καί +οὕτω +ἐν +ὁ +ἐκκλησία +πᾶς +διατάσσω +περιτέμνω +τὶς +καλέω +μή +ἐπισπάομαι +ἐν +ἀκροβυστία +καλέω +τὶς +μή +περιτέμνω +ὁ +περιτομή +οὐδείς +εἰμί +καί +ὁ +ἀκροβυστία +οὐδείς +εἰμί +ἀλλά +τήρησις +ἐντολή +θεός +ἕκαστος +ἐν +ὁ +κλῆσις +ὅς +καλέω +ἐν +οὗτος +μένω +δοῦλος (II) +καλέω +μή +σύ +μέλει +ἀλλά +εἰ +καί +δύναμαι +ἐλεύθερος +γίνομαι +μᾶλλον +χράομαι +γάρ +ὁ +ἐν +κύριος +καλέω +δοῦλος (II) +ἀπελεύθερος +κύριος +εἰμί +ὁμοίως +ὁ +ἐλεύθερος +καλέω +εἰμί +δοῦλος (II) +Χριστός +τιμή +ἀγοράζω +μή +γίνομαι +δοῦλος (II) +ἄνθρωπος +ἀδελφός +ἕκαστος +ἐν +ὅς +καλέω +ἐν +οὗτος +μένω +παρά +θεός +δέ +περί +ὁ +παρθένος +ἐπιταγή +κύριος +οὐ +ἔχω +δέ +γνώμη +δίδωμι +ὡς +ἐλεέω +ὑπό +κύριος +πιστός +εἰμί +οὖν +νομίζω +οὗτος +καλός +ὑπάρχω +διά +ὁ +ἐνίστημι +ἀνάγκη +ὅτι +καλός +ἄνθρωπος +ὁ +οὕτω +εἰμί +δέω +γυνή +μή +ζητέω +λύσις +λύω +ἀπό +γυνή +μή +ζητέω +γυνή +δέ +ἐάν +καί +γαμέω +οὐ +ἁμαρτάνω +καί +ἐάν +γαμέω +ὁ +παρθένος +οὐ +ἁμαρτάνω +δέ +θλῖψις +ὁ +σάρξ +ἔχω +ὁ +τοιοῦτος +δέ +ἐγώ +σύ +φείδομαι +δέ +ἀδελφός +οὗτος +φημί +ὁ +καιρός +συστέλλω +εἰμί +ὁ +λοιπός +ἵνα +καί +ὁ +ἔχω +γυνή +ὡς +μή +ἔχω +εἰμί +καί +ὁ +κλαίω +ὡς +μή +κλαίω +καί +ὁ +χαίρω +ὡς +μή +χαίρω +καί +ὁ +ἀγοράζω +ὡς +μή +κατέχω +καί +ὁ +χράομαι +ὁ +κόσμος +ὡς +μή +καταχράομαι +γάρ +παράγω +ὁ +σχῆμα +ὁ +κόσμος +οὗτος +δέ +θέλω +σύ +ἀμέριμνος +εἰμί +ὁ +ἄγαμος +μεριμνάω +ὁ +ὁ +κύριος +πῶς +ἀρέσκω +ὁ +κύριος +δέ +ὁ +γαμέω +μεριμνάω +ὁ +ὁ +κόσμος +πῶς +ἀρέσκω +ὁ +γυνή +καί +μερίζω +καί +ὁ +γυνή +ὁ +ἄγαμος +καί +ὁ +παρθένος +μεριμνάω +ὁ +ὁ +κύριος +ἵνα +εἰμί +ἅγιος +καί +ὁ +σῶμα +καί +ὁ +πνεῦμα +δέ +ὁ +γαμέω +μεριμνάω +ὁ +ὁ +κόσμος +πῶς +ἀρέσκω +ὁ +ἀνήρ +δέ +οὗτος +πρός +ὁ +σύ +αὐτός +σύμφορος +λέγω +οὐ +ἵνα +βρόχος +σύ +ἐπιβάλλω +ἀλλά +πρός +ὁ +εὐσχήμων +καί +εὐπάρεδρος +ὁ +κύριος +ἀπερισπάστως +δέ +εἰ +τὶς +ἀσχημονέω +ἐπί +ὁ +παρθένος +αὐτός +νομίζω +ἐάν +εἰμί +ὑπέρακμος +καί +οὕτω +ὀφείλω +γίνομαι +ὅς +θέλω +ποιέω +οὐ +ἁμαρτάνω +γαμέω +δέ +ὅς +ἵστημι +ἐν +ὁ +καρδία +αὐτός +ἑδραῖος +μή +ἔχω +ἀνάγκη +δέ +ἐξουσία +ἔχω +περί +ὁ +ἴδιος +θέλημα +καί +οὗτος +κρίνω +ἐν +ὁ +ἴδιος +καρδία +τηρέω +ὁ +ἑαυτοῦ +παρθένος +καλῶς +ποιέω +ὥστε +καί +ὁ +γαμίζω +ὁ +ἑαυτοῦ +παρθένος +καλῶς +ποιέω +καί +ὁ +μή +γαμίζω +κρείττων +ποιέω +γυνή +δέω +ἐπί +ὅσος +χρόνος +ζάω +ὁ +ἀνήρ +αὐτός +δέ +ἐάν +κοιμάομαι +ὁ +ἀνήρ +ἐλεύθερος +εἰμί +ὅς +θέλω +γαμέω +μόνος +ἐν +κύριος +δέ +μακάριος +εἰμί +ἐάν +οὕτω +μένω +κατά +ὁ +ἐμός +γνώμη +δέ +δοκέω +κἀγώ +πνεῦμα +θεός +ἔχω +δέ +περί +ὁ +εἰδωλόθυτος +οἶδα +ὅτι +πᾶς +γνῶσις +ἔχω +ὁ +γνῶσις +φυσιόω +δέ +ὁ +ἀγάπη +οἰκοδομέω +εἰ +τὶς +δοκέω +γινώσκω +τὶς +οὔπω +γινώσκω +καθώς +δεῖ +γινώσκω +δέ +εἰ +τὶς +ἀγαπάω +ὁ +θεός +οὗτος +γινώσκω +ὑπό +αὐτός +οὖν +περί +ὁ +βρῶσις +ὁ +εἰδωλόθυτος +οἶδα +ὅτι +οὐδείς +εἴδωλον +ἐν +κόσμος +καί +ὅτι +οὐδείς +θεός +εἰ +μή +εἷς +γάρ +εἴπερ +καί +εἰμί +λέγω +θεός +εἴτε +ἐν +οὐρανός +εἴτε +ἐπί +γῆ +ὥσπερ +εἰμί +θεός +πολύς +καί +κύριος +πολύς +ἀλλά +ἐγώ +εἷς +θεός +ὁ +πατήρ +ἐκ +ὅς +ὁ +πᾶς +καί +ἐγώ +εἰς +αὐτός +καί +εἷς +κύριος +Ἰησοῦς +Χριστός +διά +ὅς +ὁ +πᾶς +καί +ἐγώ +διά +αὐτός +ἀλλά +οὐ +ἐν +πᾶς +ὁ +γνῶσις +δέ +τὶς +ὁ +συνήθεια +ἕως +ἄρτι +ὁ +εἴδωλον +ὡς +εἰδωλόθυτος +ἐσθίω +καί +ὁ +συνείδησις +αὐτός +ἀσθενής +εἰμί +μολύνω +δέ +βρῶμα +ἐγώ +οὐ +παρίστημι +ὁ +θεός +οὔτε +ἐάν +μή +ἐσθίω +ὑστερέω +οὔτε +ἐάν +ἐσθίω +περισσεύω +δέ +βλέπω +μή +πῶς +ὁ +ἐξουσία +σύ +οὗτος +πρόσκομμα +γίνομαι +ὁ +ἀσθενής +γάρ +ἐάν +τὶς +ὁράω +σύ +ὁ +ἔχω +γνῶσις +ἐν +εἰδωλεῖον +κατάκειμαι +οὐχί +ὁ +συνείδησις +αὐτός +ἀσθενής +εἰμί +οἰκοδομέω +εἰς +ὁ +ὁ +εἰδωλόθυτος +ἐσθίω +γάρ +ἀπόλλυμι +ἐν +ὁ +σός +γνῶσις +ὁ +ἀσθενέω +ὁ +ἀδελφός +διά +ὅς +Χριστός +ἀποθνῄσκω +δέ +οὕτω +ἁμαρτάνω +εἰς +ὁ +ἀδελφός +καί +τύπτω +αὐτός +ὁ +συνείδησις +ἀσθενέω +εἰς +Χριστός +ἁμαρτάνω +διόπερ +εἰ +βρῶμα +σκανδαλίζω +ὁ +ἀδελφός +ἐγώ +οὐ +μή +ἐσθίω +κρέας +εἰς +ὁ +αἰών +ἵνα +μή +ὁ +ἀδελφός +ἐγώ +σκανδαλίζω +οὐ +εἰμί +ἐλεύθερος +οὐ +εἰμί +ἀπόστολος +οὐχί +Ἰησοῦς +ὁ +κύριος +ἐγώ +ὁράω +οὐ +ὁ +ἔργον +ἐγώ +σύ +εἰμί +ἐν +κύριος +εἰ +ἄλλος +οὐ +εἰμί +ἀπόστολος +ἀλλά +γέ +σύ +εἰμί +γάρ +ὁ +σφραγίς +ἐγώ +ὁ +ἀποστολή +σύ +εἰμί +ἐν +κύριος +ὁ +ἐμός +ἀπολογία +ὁ +ἐγώ +ἀνακρίνω +εἰμί +οὗτος +μή +οὐ +ἔχω +ἐξουσία +ἐσθίω +καί +πίνω +μή +οὐ +ἔχω +ἐξουσία +ἀδελφή +γυνή +περιάγω +ὡς +καί +ὁ +λοιπός +ἀπόστολος +καί +ὁ +ἀδελφός +ὁ +κύριος +καί +Κηφᾶς +ἤ +μόνος +ἐγώ +καί +Βαρναβᾶς +οὐ +ἔχω +ἐξουσία +μή +ἐργάζομαι +τίς +στρατεύω +ἴδιος +ὀψώνιον +ποτέ +τίς +φυτεύω +ἀμπελών +καί +ὁ +καρπός +αὐτός +οὐ +ἐσθίω +ἤ +τίς +ποιμαίνω +ποίμνη +καί +ἐκ +ὁ +γάλα +ὁ +ποίμνη +οὐ +ἐσθίω +μή +κατά +ἄνθρωπος +οὗτος +λαλέω +ἤ +καί +ὁ +νόμος +οὗτος +οὐ +λέγω +γάρ +ἐν +ὁ +Μωϋσῆς +νόμος +γράφω +οὐ +κημόω +βοῦς +ἀλοάω +μή +ὁ +βοῦς +μέλει +ὁ +θεός +ἤ +διά +ἐγώ +πάντως +λέγω +γάρ +διά +ἐγώ +γράφω +ὅτι +ὀφείλω +ἐπί +ἐλπίς +ἀροτριάω +ὁ +ἀροτριάω +καί +ὁ +ἀλοάω +ἐπί +ἐλπίς +ὁ +μετέχω +εἰ +ἐγώ +σύ +ὁ +πνευματικός +σπείρω +μέγας +εἰ +ἐγώ +σύ +ὁ +σαρκικός +θερίζω +εἰ +ἄλλος +ὁ +σύ +ἐξουσία +μετέχω +οὐ +μᾶλλον +ἐγώ +ἀλλά +οὐ +χράομαι +ὁ +ἐξουσία +οὗτος +ἀλλά +πᾶς +στέγω +ἵνα +μή +τὶς +ἐγκοπή +δίδωμι +ὁ +εὐαγγέλιον +ὁ +Χριστός +οὐ +οἶδα +ὅτι +ὁ +ὁ +ἱερός +ἐργάζομαι +ὁ +ἐκ +ὁ +ἱερός +ἐσθίω +ὁ +ὁ +θυσιαστήριον +παρεδρεύω +ὁ +θυσιαστήριον +συμμερίζω +οὕτω +καί +ὁ +κύριος +διατάσσω +ὁ +ὁ +εὐαγγέλιον +καταγγέλλω +ἐκ +ὁ +εὐαγγέλιον +ζάω +δέ +ἐγώ +οὐ +χράομαι +οὐδείς +οὗτος +δέ +οὐ +γράφω +οὗτος +ἵνα +οὕτω +γίνομαι +ἐν +ἐγώ +γάρ +καλός +ἐγώ +μᾶλλον +ἀποθνῄσκω +ἤ +ὁ +καύχημα +ἐγώ +οὐδείς +κενόω +γάρ +ἐάν +εὐαγγελίζω +οὐ +εἰμί +ἐγώ +καύχημα +γάρ +ἀνάγκη +ἐγώ +ἐπίκειμαι +γάρ +οὐαί +ἐγώ +εἰμί +ἐάν +μή +εὐαγγελίζω +γάρ +εἰ +ἑκών +οὗτος +πράσσω +μισθός +ἔχω +δέ +εἰ +ἄκων +οἰκονομία +πιστεύω +οὖν +τίς +εἰμί +ἐγώ +ὁ +μισθός +ἵνα +εὐαγγελίζω +ἀδάπανος +τίθημι +ὁ +εὐαγγέλιον +εἰς +ὁ +μή +καταχράομαι +ὁ +ἐξουσία +ἐγώ +ἐν +ὁ +εὐαγγέλιον +γάρ +ἐλεύθερος +εἰμί +ἐκ +πᾶς +πᾶς +ἐμαυτοῦ +δουλόω +ἵνα +ὁ +πολύς +κερδαίνω +καί +γίνομαι +ὁ +Ἰουδαῖος +ὡς +Ἰουδαῖος +ἵνα +Ἰουδαῖος +κερδαίνω +ὁ +ὑπό +νόμος +ὡς +ὑπό +νόμος +μή +εἰμί +αὐτός +ὑπό +νόμος +ἵνα +ὁ +ὑπό +νόμος +κερδαίνω +ὁ +ἄνομος +ὡς +ἄνομος +μή +εἰμί +ἄνομος +θεός +ἀλλά +ἔννομος +Χριστός +ἵνα +κερδαίνω +ὁ +ἄνομος +γίνομαι +ὁ +ἀσθενής +ἀσθενής +ἵνα +ὁ +ἀσθενής +κερδαίνω +ὁ +πᾶς +γίνομαι +πᾶς +ἵνα +πάντως +τὶς +σῴζω +δέ +πᾶς +ποιέω +διά +ὁ +εὐαγγέλιον +ἵνα +συγκοινωνός +αὐτός +γίνομαι +οὐ +οἶδα +ὅτι +ὁ +ἐν +στάδιον +τρέχω +μέν +πᾶς +τρέχω +δέ +εἷς +λαμβάνω +ὁ +βραβεῖον +οὕτω +τρέχω +ἵνα +καταλαμβάνω +δέ +πᾶς +ὁ +ἀγωνίζομαι +πᾶς +ἐγκρατεύομαι +οὖν +μέν +ἐκεῖνος +ἵνα +φθαρτός +στέφανος +λαμβάνω +δέ +ἐγώ +ἄφθαρτος +τοίνυν +ἐγώ +οὕτω +τρέχω +ὡς +οὐ +ἀδήλως +οὕτω +πυκτεύω +ὡς +οὐ +ἀήρ +δέρω +ἀλλά +ὑπωπιάζω +ἐγώ +ὁ +σῶμα +καί +δουλαγωγέω +μή +πῶς +ἄλλος +κηρύσσω +αὐτός +ἀδόκιμος +γίνομαι +γάρ +ἀδελφός +οὐ +θέλω +σύ +ἀγνοέω +ὅτι +ὁ +πατήρ +ἐγώ +πᾶς +ὑπό +ὁ +νεφέλη +εἰμί +καί +πᾶς +διά +ὁ +θάλασσα +διέρχομαι +καί +πᾶς +εἰς +ὁ +Μωϋσῆς +βαπτίζω +ἐν +ὁ +νεφέλη +καί +ἐν +ὁ +θάλασσα +καί +πᾶς +ὁ +αὐτός +πνευματικός +βρῶμα +ἐσθίω +καί +πᾶς +ὁ +αὐτός +πνευματικός +πόμα +πίνω +γάρ +πίνω +ἐκ +πνευματικός +ἀκολουθέω +πέτρα +δέ +ὁ +πέτρα +εἰμί +ὁ +Χριστός +ἀλλά +οὐ +ἐν +ὁ +πολύς +αὐτός +εὐδοκέω +ὁ +θεός +γάρ +καταστρώννυμι +ἐν +ὁ +ἔρημος +δέ +οὗτος +τύπος +ἐγώ +γίνομαι +εἰς +ὁ +μή +εἰμί +ἐγώ +ἐπιθυμητής +κακός +καθώς +κἀκεῖνος +ἐπιθυμέω +μηδέ +εἰδωλολάτρης +γίνομαι +καθώς +τὶς +αὐτός +ὥσπερ +γράφω +καθίζω +ὁ +λαός +ἐσθίω +καί +πίνω +καί +ἀνίστημι +παίζω +μηδέ +πορνεύω +καθώς +τὶς +αὐτός +πορνεύω +καί +πίπτω +εἷς +ἡμέρα +εἰκοσιτρεῖς +χιλιάς +μηδέ +ἐκπειράζω +ὁ +κύριος +καθώς +τὶς +αὐτός +πειράζω +καί +ὑπό +ὁ +ὄφις +ἀπόλλυμι +μηδέ +γογγύζω +καθάπερ +τὶς +αὐτός +γογγύζω +καί +ἀπόλλυμι +ὑπό +ὁ +ὀλοθρευτής +δέ +οὗτος +τυπικώς +συμβαίνω +ἐκεῖνος +δέ +γράφω +πρός +νουθεσία +ἐγώ +εἰς +ὅς +ὁ +τέλος +ὁ +αἰών +καταντάω +ὥστε +ὁ +δοκέω +ἵστημι +βλέπω +μή +πίπτω +πειρασμός +σύ +οὐ +λαμβάνω +εἰ +μή +ἀνθρώπινος +δέ +πιστός +ὁ +θεός +ὅς +οὐ +ἐάω +σύ +πειράζω +ὑπέρ +ὅς +δύναμαι +ἀλλά +ποιέω +σύν +ὁ +πειρασμός +καί +ὁ +ἔκβασις +ὁ +δύναμαι +ὑποφέρω +διόπερ +ἀγαπητός +ἐγώ +φεύγω +ἀπό +ὁ +εἰδωλολατρία +ὡς +φρόνιμος +λέγω +κρίνω +σύ +ὅς +φημί +ὁ +ποτήριον +ὁ +εὐλογία +ὅς +εὐλογέω +οὐχί +εἰμί +κοινωνία +ὁ +αἷμα +ὁ +Χριστός +ὁ +ἄρτος +ὅς +κλάω +οὐχί +κοινωνία +ὁ +σῶμα +ὁ +Χριστός +εἰμί +ὅτι +εἷς +ἄρτος +εἷς +σῶμα +ὁ +πολύς +εἰμί +γάρ +ὁ +πᾶς +ἐκ +ὁ +εἷς +ἄρτος +μετέχω +βλέπω +ὁ +Ἰσραήλ +κατά +σάρξ +οὐ +ὁ +ἐσθίω +ὁ +θυσία +κοινωνός +ὁ +θυσιαστήριον +εἰμί +οὖν +τίς +φημί +ὅτι +εἰδωλόθυτος +τὶς +εἰμί +ἤ +ὅτι +εἴδωλον +τὶς +εἰμί +ἀλλά +ὅτι +ὅς +θύω +δαιμόνιον +καί +οὐ +θεός +θύω +δέ +οὐ +θέλω +σύ +κοινωνός +ὁ +δαιμόνιον +γίνομαι +οὐ +δύναμαι +ποτήριον +κύριος +πίνω +καί +ποτήριον +δαιμόνιον +οὐ +δύναμαι +τράπεζα +κύριος +μετέχω +καί +τράπεζα +δαιμόνιον +ἤ +παραζηλόω +ὁ +κύριος +μή +ἰσχυρός +αὐτός +εἰμί +πᾶς +ἔξεστι(ν) +ἀλλά +οὐ +πᾶς +συμφέρω +πᾶς +ἔξεστι(ν) +ἀλλά +οὐ +πᾶς +οἰκοδομέω +μηδείς +ὁ +ἑαυτοῦ +ζητέω +ἀλλά +ὁ +ὁ +ἕτερος +πᾶς +ὁ +ἐν +μάκελλον +πωλέω +ἐσθίω +μηδείς +ἀνακρίνω +διά +ὁ +συνείδησις +γάρ +ὁ +κύριος +ὁ +γῆ +καί +ὁ +πλήρωμα +αὐτός +εἰ +τὶς +ὁ +ἄπιστος +καλέω +σύ +καί +θέλω +πορεύομαι +πᾶς +ὁ +παρατίθημι +σύ +ἐσθίω +μηδείς +ἀνακρίνω +διά +ὁ +συνείδησις +δέ +ἐάν +τὶς +σύ +λέγω +οὗτος +ἱερόθυτος +εἰμί +μή +ἐσθίω +διά +ἐκεῖνος +ὁ +μηνύω +καί +ὁ +συνείδησις +δέ +λέγω +συνείδησις +οὐχί +ὁ +ἑαυτοῦ +ἀλλά +ὁ +ὁ +ἕτερος +γάρ +ἵνα +τίς +ὁ +ἐλευθερία +ἐγώ +κρίνω +ὑπό +ἄλλος +συνείδησις +εἰ +ἐγώ +χάρις +μετέχω +τίς +βλασφημέω +ὑπέρ +ὅς +ἐγώ +εὐχαριστέω +οὖν +εἴτε +ἐσθίω +εἴτε +πίνω +εἴτε +τὶς +ποιέω +πᾶς +εἰς +δόξα +θεός +ποιέω +ἀπρόσκοπος +γίνομαι +καί +Ἰουδαῖος +καί +Ἕλλην +καί +ὁ +ἐκκλησία +ὁ +θεός +καθώς +κἀγώ +πᾶς +πᾶς +ἀρέσκω +ζητέω +μή +ὁ +ἐμαυτοῦ +σύμφορος +ἀλλά +ὁ +ὁ +πολύς +ἵνα +σῴζω +μιμητής +ἐγώ +γίνομαι +καθώς +κἀγώ +Χριστός +δέ +ἐπαινέω +σύ +ὅτι +πᾶς +ἐγώ +μιμνῄσκω +καί +καθώς +παραδίδωμι +σύ +ὁ +παράδοσις +κατέχω +δέ +θέλω +σύ +οἶδα +ὅτι +πᾶς +ἀνήρ +ὁ +κεφαλή +ὁ +Χριστός +εἰμί +δέ +κεφαλή +γυνή +ὁ +ἀνήρ +δέ +κεφαλή +ὁ +Χριστός +ὁ +θεός +πᾶς +ἀνήρ +προσεύχομαι +ἤ +προφητεύω +κατά +κεφαλή +ἔχω +καταισχύνω +ὁ +κεφαλή +αὐτός +δέ +πᾶς +γυνή +προσεύχομαι +ἤ +προφητεύω +ἀκατακάλυπτος +ὁ +κεφαλή +καταισχύνω +ὁ +κεφαλή +αὐτός +γάρ +εἰμί +εἷς +καί +ὁ +αὐτός +ὁ +ξυράω +γάρ +εἰ +οὐ +κατακαλύπτω +γυνή +καί +κείρω +δέ +εἰ +αἰσχρός +γυνή +ὁ +κείρω +ἤ +ξυράω +κατακαλύπτω +γάρ +μέν +ἀνήρ +οὐ +ὀφείλω +κατακαλύπτω +ὁ +κεφαλή +εἰκών +καί +δόξα +θεός +ὑπάρχω +δέ +ὁ +γυνή +δόξα +ἀνήρ +εἰμί +γάρ +οὐ +εἰμί +ἀνήρ +ἐκ +γυνή +ἀλλά +γυνή +ἐκ +ἀνήρ +γάρ +καί +οὐ +κτίζω +ἀνήρ +διά +ὁ +γυνή +ἀλλά +γυνή +διά +ὁ +ἀνήρ +διά +οὗτος +ὀφείλω +ὁ +γυνή +ἐξουσία +ἔχω +ἐπί +ὁ +κεφαλή +διά +ὁ +ἄγγελος +πλήν +οὔτε +γυνή +χωρίς +ἀνήρ +οὔτε +ἀνήρ +χωρίς +γυνή +ἐν +κύριος +γάρ +ὥσπερ +ὁ +γυνή +ἐκ +ὁ +ἀνήρ +οὕτω +καί +ὁ +ἀνήρ +διά +ὁ +γυνή +δέ +ὁ +πᾶς +ἐκ +ὁ +θεός +ἐν +σύ +αὐτός +κρίνω +πρέπω +εἰμί +γυνή +ἀκατακάλυπτος +ὁ +θεός +προσεύχομαι +οὐδέ +ὁ +φύσις +αὐτός +διδάσκω +σύ +ὅτι +μέν +ἐάν +ἀνήρ +κομάω +ἀτιμία +αὐτός +εἰμί +δέ +ἐάν +γυνή +κομάω +δόξα +αὐτός +εἰμί +ὅτι +ὁ +κόμη +ἀντί +περιβόλαιον +δίδωμι +αὐτός +δέ +εἰ +τὶς +δοκέω +φιλόνεικος +εἰμί +ἐγώ +τοιοῦτος +συνήθεια +οὐ +ἔχω +οὐδέ +ὁ +ἐκκλησία +ὁ +θεός +δέ +οὗτος +παραγγέλλω +οὐ +ἐπαινέω +ὅτι +οὐ +εἰς +ὁ +κρείττων +ἀλλά +εἰς +ὁ +ἥσσων +συνέρχομαι +γάρ +μέν +πρῶτος +συνέρχομαι +σύ +ἐν +ἐκκλησία +ἀκούω +σχίσμα +ἐν +σύ +ὑπάρχω +καί +μέρος +τὶς +πιστεύω +γάρ +δεῖ +καί +αἵρεσις +ἐν +σύ +εἰμί +ἵνα +καί +ὁ +δόκιμος +φανερός +γίνομαι +ἐν +σύ +οὖν +συνέρχομαι +σύ +ἐπί +ὁ +αὐτός +οὐ +εἰμί +κυριακός +δεῖπνον +ἐσθίω +γάρ +ἕκαστος +ὁ +ἴδιος +δεῖπνον +προλαμβάνω +ἐν +ὁ +ἐσθίω +καί +μέν +ὅς +πεινάω +δέ +ὅς +μεθύω +γάρ +μή +οἰκία +οὐ +ἔχω +εἰς +ὁ +ἐσθίω +καί +πίνω +ἤ +ὁ +ἐκκλησία +ὁ +θεός +καταφρονέω +καί +καταισχύνω +ὁ +μή +ἔχω +τίς +λέγω +σύ +ἐπαινέω +σύ +ἐν +οὗτος +οὐ +ἐπαινέω +γάρ +ἐγώ +παραλαμβάνω +ἀπό +ὁ +κύριος +ὅς +καί +παραδίδωμι +σύ +ὅτι +ὁ +κύριος +Ἰησοῦς +ἐν +ὁ +νύξ +ὅς +παραδίδωμι +λαμβάνω +ἄρτος +καί +εὐχαριστέω +κλάω +καί +λέγω +οὗτος +εἰμί +ἐγώ +ὁ +σῶμα +ὁ +ὑπέρ +σύ +οὗτος +ποιέω +εἰς +ὁ +ἐμός +ἀνάμνησις +ὡσαύτως +καί +ὁ +ποτήριον +μετά +ὁ +δειπνέω +λέγω +οὗτος +ὁ +ποτήριον +ὁ +καινός +διαθήκη +εἰμί +ἐν +ὁ +ἐμός +αἷμα +οὗτος +ποιέω +ὁσάκις +ἐάν +πίνω +εἰς +ὁ +ἐμός +ἀνάμνησις +γάρ +ὁσάκις +ἐάν +ἐσθίω +ὁ +ἄρτος +οὗτος +καί +ὁ +ποτήριον +πίνω +ὁ +θάνατος +ὁ +κύριος +καταγγέλλω +ἄχρι +ὅς +ἔρχομαι +ὥστε +ἄν +ὅς +ἐσθίω +ὁ +ἄρτος +ἤ +πίνω +ὁ +ποτήριον +ὁ +κύριος +ἀναξίως +ἔνοχος +εἰμί +ὁ +σῶμα +καί +ὁ +αἷμα +ὁ +κύριος +δέ +δοκιμάζω +ἄνθρωπος +ἑαυτοῦ +καί +οὕτω +ἐκ +ὁ +ἄρτος +ἐσθίω +καί +ἐκ +ὁ +ποτήριον +πίνω +γάρ +ὁ +ἐσθίω +καί +πίνω +κρίμα +ἑαυτοῦ +ἐσθίω +καί +πίνω +μή +διακρίνω +ὁ +σῶμα +διά +οὗτος +ἐν +σύ +πολύς +ἀσθενής +καί +ἄρρωστος +καί +κοιμάομαι +ἱκανός +δέ +εἰ +ἑαυτοῦ +διακρίνω +ἄν +οὐ +κρίνω +δέ +κρίνω +ὑπό +ὁ +κύριος +παιδεύω +ἵνα +μή +σύν +ὁ +κόσμος +κατακρίνω +ὥστε +ἀδελφός +ἐγώ +συνέρχομαι +εἰς +ὁ +ἐσθίω +ἀλλήλων +ἐκδέχομαι +εἰ +τὶς +πεινάω +ἐν +οἶκος +ἐσθίω +ἵνα +μή +εἰς +κρίμα +συνέρχομαι +δέ +ὁ +λοιπός +ὡς +ἄν +ἔρχομαι +διατάσσω +δέ +ἀδελφός +περί +ὁ +πνευματικός +οὐ +θέλω +σύ +ἀγνοέω +οἶδα +ὅτι +ὅτε +ἔθνος +εἰμί +πρός +ὁ +εἴδωλον +ὁ +ἄφωνος +ὡς +ἄν +ἄγω +ἀπάγω +διό +γνωρίζω +σύ +ὅτι +οὐδείς +ἐν +πνεῦμα +θεός +λαλέω +λέγω +ἀνάθεμα +Ἰησοῦς +καί +οὐδείς +δύναμαι +λέγω +κύριος +Ἰησοῦς +εἰ +μή +ἐν +πνεῦμα +ἅγιος +δέ +διαίρεσις +χάρισμα +εἰμί +δέ +ὁ +αὐτός +πνεῦμα +καί +διαίρεσις +διακονία +εἰμί +καί +ὁ +αὐτός +κύριος +καί +διαίρεσις +ἐνέργημα +εἰμί +δέ +ὁ +αὐτός +θεός +ὁ +ἐνεργέω +ὁ +πᾶς +ἐν +πᾶς +δέ +ἕκαστος +δίδωμι +ὁ +φανέρωσις +ὁ +πνεῦμα +πρός +ὁ +συμφέρω +γάρ +μέν +ὅς +διά +ὁ +πνεῦμα +δίδωμι +λόγος +σοφία +δέ +ἄλλος +λόγος +γνῶσις +κατά +ὁ +αὐτός +πνεῦμα +ἕτερος +πίστις +ἐν +ὁ +αὐτός +πνεῦμα +δέ +ἄλλος +χάρισμα +ἴαμα +ἐν +ὁ +εἷς +πνεῦμα +δέ +ἄλλος +ἐνέργημα +δύναμις +δέ +ἄλλος +προφητεία +δέ +ἄλλος +διάκρισις +πνεῦμα +ἕτερος +γένος +γλῶσσα +δέ +ἄλλος +ἑρμηνεία +γλῶσσα +δέ +πᾶς +οὗτος +ἐνεργέω +ὁ +εἷς +καί +ὁ +αὐτός +πνεῦμα +διαιρέω +ἴδιος +ἕκαστος +καθώς +βούλομαι +γάρ +καθάπερ +ὁ +σῶμα +εἷς +εἰμί +καί +μέλος +πολύς +ἔχω +δέ +πᾶς +ὁ +μέλος +ὁ +σῶμα +πολύς +εἰμί +εἷς +σῶμα +εἰμί +οὕτω +καί +ὁ +Χριστός +γάρ +καί +ἐν +εἷς +πνεῦμα +ἐγώ +πᾶς +εἰς +εἷς +σῶμα +βαπτίζω +εἴτε +Ἰουδαῖος +εἴτε +Ἕλλην +εἴτε +δοῦλος (II) +εἴτε +ἐλεύθερος +καί +πᾶς +εἷς +πνεῦμα +ποτίζω +γάρ +καί +ὁ +σῶμα +εἰμί +οὐ +εἷς +μέλος +ἀλλά +πολύς +ἐάν +λέγω +ὁ +πούς +ὅτι +οὐ +εἰμί +χείρ +οὐ +εἰμί +ἐκ +ὁ +σῶμα +οὐ +παρά +οὗτος +οὐ +εἰμί +ἐκ +ὁ +σῶμα +καί +ἐάν +λέγω +ὁ +οὖς +ὅτι +οὐ +εἰμί +ὀφθαλμός +οὐ +εἰμί +ἐκ +ὁ +σῶμα +οὐ +παρά +οὗτος +οὐ +εἰμί +ἐκ +ὁ +σῶμα +εἰ +ὅλος +ὁ +σῶμα +ὀφθαλμός +ποῦ +ὁ +ἀκοή +εἰ +ὅλος +ἀκοή +ποῦ +ὁ +ὄσφρησις +δέ +νῦν +ὁ +θεός +τίθημι +ὁ +μέλος +εἷς +ἕκαστος +αὐτός +ἐν +ὁ +σῶμα +καθώς +θέλω +δέ +εἰ +εἰμί +ὁ +πᾶς +εἷς +μέλος +ποῦ +ὁ +σῶμα +δέ +μέν +νῦν +πολύς +μέλος +δέ +εἷς +σῶμα +δέ +οὐ +δύναμαι +ὁ +ὀφθαλμός +λέγω +ὁ +χείρ +χρεία +σύ +οὐ +ἔχω +ἤ +πάλιν +ὁ +κεφαλή +ὁ +πούς +χρεία +σύ +οὐ +ἔχω +ἀλλά +πολύς +μᾶλλον +ὁ +δοκέω +ἀσθενής +ὑπάρχω +μέλος +ὁ +σῶμα +ἀναγκαῖος +εἰμί +καί +ὅς +εἰμί +ἄτιμος +ὁ +σῶμα +δοκέω +οὗτος +τιμή +περισσός +περιτίθημι +καί +ὁ +ἀσχήμων +ἐγώ +εὐσχημοσύνη +περισσός +ἔχω +δέ +ὁ +εὐσχήμων +ἐγώ +οὐ +χρεία +ἔχω +ἀλλά +ὁ +θεός +συγκεράννυμι +ὁ +σῶμα +ὁ +ὑστερέω +δίδωμι +περισσός +τιμή +ἵνα +μή +εἰμί +σχίσμα +ἐν +ὁ +σῶμα +ἀλλά +ὁ +αὐτός +ὑπέρ +ἀλλήλων +μεριμνάω +ὁ +μέλος +καί +εἴτε +πάσχω +εἷς +μέλος +συμπάσχω +πᾶς +ὁ +μέλος +εἴτε +δοξάζω +μέλος +συγχαίρω +πᾶς +ὁ +μέλος +δέ +σύ +εἰμί +σῶμα +Χριστός +καί +μέλος +ἐκ +μέρος +καί +μέν +ὅς +τίθημι +ὁ +θεός +ἐν +ὁ +ἐκκλησία +πρῶτος +ἀπόστολος +δεύτερος +προφήτης +τρίτος +διδάσκαλος +ἔπειτα +δύναμις +ἔπειτα +χάρισμα +ἴαμα +ἀντίλημψις +κυβέρνησις +γένος +γλῶσσα +μή +πᾶς +ἀπόστολος +μή +πᾶς +προφήτης +μή +πᾶς +διδάσκαλος +μή +πᾶς +δύναμις +μή +πᾶς +ἔχω +χάρισμα +ἴαμα +μή +πᾶς +γλῶσσα +λαλέω +μή +πᾶς +διερμηνεύω +δέ +ζηλόω +ὁ +χάρισμα +ὁ +μέγας +καί +ἔτι +κατά +ὑπερβολή +ὁδός +σύ +δείκνυμι +ἐάν +ὁ +γλῶσσα +ὁ +ἄνθρωπος +καί +ὁ +ἄγγελος +λαλέω +δέ +ἀγάπη +μή +ἔχω +γίνομαι +χαλκός +ἠχέω +ἤ +κύμβαλον +ἀλαλάζω +καί +ἐάν +ἔχω +προφητεία +καί +οἶδα +ὁ +μυστήριον +πᾶς +καί +πᾶς +ὁ +γνῶσις +καί +ἐάν +ἔχω +πᾶς +ὁ +πίστις +ὥστε +ὄρος +μεθίστημι +δέ +ἀγάπη +μή +ἔχω +οὐδείς +εἰμί +καί +ἐάν +ψωμίζω +πᾶς +ὁ +ὑπάρχω +ἐγώ +καί +ἐάν +παραδίδωμι +ὁ +σῶμα +ἐγώ +ἵνα +καίω +δέ +ἀγάπη +μή +ἔχω +οὐδείς +ὠφελέω +ὁ +ἀγάπη +μακροθυμέω +χρηστεύομαι +ὁ +ἀγάπη +οὐ +ζηλόω +ὁ +ἀγάπη +οὐ +περπερεύομαι +οὐ +φυσιόω +οὐ +ἀσχημονέω +οὐ +ζητέω +ὁ +ἑαυτοῦ +οὐ +παροξύνω +οὐ +λογίζομαι +ὁ +κακός +οὐ +χαίρω +ἐπί +ὁ +ἀδικία +δέ +συγχαίρω +ὁ +ἀλήθεια +πᾶς +στέγω +πᾶς +πιστεύω +πᾶς +ἐλπίζω +πᾶς +ὑπομένω +ὁ +ἀγάπη +οὐδέποτε +πίπτω +δέ +εἴτε +προφητεία +καταργέω +εἴτε +γλῶσσα +παύω +εἴτε +γνῶσις +καταργέω +γάρ +ἐκ +μέρος +γινώσκω +καί +ἐκ +μέρος +προφητεύω +δέ +ὅταν +ἔρχομαι +ὁ +τέλειος +ὁ +ἐκ +μέρος +καταργέω +ὅτε +εἰμί +νήπιος +λαλέω +ὡς +νήπιος +φρονέω +ὡς +νήπιος +λογίζομαι +ὡς +νήπιος +ὅτε +γίνομαι +ἀνήρ +καταργέω +ὁ +ὁ +νήπιος +γάρ +βλέπω +ἄρτι +διά +ἔσοπτρον +ἐν +αἴνιγμα +δέ +τότε +πρόσωπον +πρός +πρόσωπον +ἄρτι +γινώσκω +ἐκ +μέρος +δέ +τότε +ἐπιγινώσκω +καθώς +καί +ἐπιγινώσκω +δέ +νυνί +μένω +πίστις +ἐλπίς +ἀγάπη +ὁ +τρεῖς +οὗτος +δέ +μέγας +οὗτος +ὁ +ἀγάπη +διώκω +ὁ +ἀγάπη +δέ +ζηλόω +ὁ +πνευματικός +δέ +ἵνα +μᾶλλον +προφητεύω +γάρ +ὁ +λαλέω +γλῶσσα +οὐ +ἄνθρωπος +λαλέω +ἀλλά +θεός +γάρ +οὐδείς +ἀκούω +δέ +πνεῦμα +λαλέω +μυστήριον +δέ +ὁ +προφητεύω +ἄνθρωπος +λαλέω +οἰκοδομή +καί +παράκλησις +καί +παραμυθία +ὁ +λαλέω +γλῶσσα +ἑαυτοῦ +οἰκοδομέω +δέ +ὁ +προφητεύω +ἐκκλησία +οἰκοδομέω +δέ +θέλω +πᾶς +σύ +λαλέω +γλῶσσα +δέ +ἵνα +μᾶλλον +προφητεύω +δέ +μέγας +ὁ +προφητεύω +ἤ +ὁ +λαλέω +γλῶσσα +εἰ +ἐκτός +μή +διερμηνεύω +ἵνα +ὁ +ἐκκλησία +οἰκοδομή +λαμβάνω +δέ +ἀδελφός +ἐάν +νῦν +ἔρχομαι +πρός +σύ +γλῶσσα +λαλέω +τίς +σύ +ὠφελέω +ἐάν +μή +σύ +λαλέω +ἤ +ἐν +ἀποκάλυψις +ἤ +ἐν +γνῶσις +ἤ +ἐν +προφητεία +ἤ +διδαχή +ὅμως +ὁ +ἄψυχος +φωνή +δίδωμι +εἴτε +αὐλός +εἴτε +κιθάρα +ἐάν +διαστολή +ὁ +φθόγγος +μή +δίδωμι +πῶς +γινώσκω +ὁ +αὐλέω +ἤ +ὁ +κιθαρίζω +γάρ +ἐάν +καί +σάλπιγξ +ἄδηλος +φωνή +δίδωμι +τίς +παρασκευάζω +εἰς +πόλεμος +οὕτω +ἐάν +καί +σύ +διά +ὁ +γλῶσσα +μή +εὔσημος +λόγος +δίδωμι +πῶς +γινώσκω +ὁ +λαλέω +γάρ +εἰς +ἀήρ +εἰμί +λαλέω +εἰ +τυγχάνω +τοσοῦτος +γένος +φωνή +εἰμί +ἐν +κόσμος +καί +οὐδείς +ἄφωνος +οὖν +ἐάν +μή +οἶδα +ὁ +δύναμις +ὁ +φωνή +εἰμί +ὁ +λαλέω +βάρβαρος +καί +ὁ +λαλέω +ἐν +ἐγώ +βάρβαρος +οὕτω +καί +σύ +ἐπεί +ζηλωτής +πνεῦμα +εἰμί +πρός +ὁ +οἰκοδομή +ὁ +ἐκκλησία +ζητέω +ἵνα +περισσεύω +διό +ὁ +λαλέω +γλῶσσα +προσεύχομαι +ἵνα +διερμηνεύω +γάρ +ἐάν +προσεύχομαι +γλῶσσα +ὁ +πνεῦμα +ἐγώ +προσεύχομαι +δέ +ὁ +νοῦς +ἐγώ +ἄκαρπος +εἰμί +οὖν +τίς +εἰμί +προσεύχομαι +ὁ +πνεῦμα +δέ +προσεύχομαι +καί +ὁ +νοῦς +ψάλλω +ὁ +πνεῦμα +δέ +ψάλλω +καί +ὁ +νοῦς +ἐπεί +ἐάν +εὐλογέω +πνεῦμα +ὁ +ἀναπληρόω +ὁ +τόπος +ὁ +ἰδιώτης +πῶς +εἶπον +ὁ +ἀμήν +ἐπί +ὁ +σός +εὐχαριστία +ἐπειδή +τίς +λέγω +οὐ +οἶδα +γάρ +μέν +σύ +καλῶς +εὐχαριστέω +ἀλλά +ὁ +ἕτερος +οὐ +οἰκοδομέω +εὐχαριστέω +ὁ +θεός +πᾶς +σύ +μᾶλλον +γλῶσσα +λαλέω +ἀλλά +ἐν +ἐκκλησία +θέλω +πέντε +λόγος +ὁ +νοῦς +ἐγώ +λαλέω +ἵνα +καί +ἄλλος +κατηχέω +ἤ +μύριοι +λόγος +ἐν +γλῶσσα +ἀδελφός +μή +παιδίον +γίνομαι +ὁ +φρήν +ἀλλά +ὁ +κακία +νηπιάζω +δέ +ὁ +φρήν +τέλειος +γίνομαι +ἐν +ὁ +νόμος +γράφω +ὅτι +ἐν +ἑτερόγλωσσος +καί +ἐν +χεῖλος +ἕτερος +λαλέω +ὁ +λαός +οὗτος +καί +οὐδέ +οὕτω +εἰσακούω +ἐγώ +λέγω +κύριος +ὥστε +ὁ +γλῶσσα +εἰς +σημεῖον +εἰμί +οὐ +ὁ +πιστεύω +ἀλλά +ὁ +ἄπιστος +δέ +ὁ +προφητεία +οὐ +ὁ +ἄπιστος +ἀλλά +ὁ +πιστεύω +οὖν +ἐάν +συνέρχομαι +ὁ +ἐκκλησία +ὅλος +ἐπί +ὁ +αὐτός +καί +πᾶς +λαλέω +γλῶσσα +δέ +εἰσέρχομαι +ἰδιώτης +ἤ +ἄπιστος +οὐ +εἶπον +ὅτι +μαίνομαι +δέ +ἐάν +πᾶς +προφητεύω +δέ +εἰσέρχομαι +τὶς +ἄπιστος +ἤ +ἰδιώτης +ἐλέγχω +ὑπό +πᾶς +ἀνακρίνω +ὑπό +πᾶς +ὁ +κρυπτός +ὁ +καρδία +αὐτός +φανερός +γίνομαι +καί +οὕτω +πίπτω +ἐπί +πρόσωπον +προσκυνέω +ὁ +θεός +ἀπαγγέλλω +ὅτι +ὄντως +ὁ +θεός +ἐν +σύ +εἰμί +οὖν +τίς +εἰμί +ἀδελφός +ὅταν +συνέρχομαι +ἕκαστος +ψαλμός +ἔχω +διδαχή +ἔχω +ἀποκάλυψις +ἔχω +γλῶσσα +ἔχω +ἑρμηνεία +ἔχω +πᾶς +πρός +οἰκοδομή +γίνομαι +εἴτε +γλῶσσα +τὶς +λαλέω +κατά +δύο +ἤ +ὁ +πολύς +τρεῖς +καί +ἀνά +μέρος +καί +εἷς +διερμηνεύω +δέ +ἐάν +μή +εἰμί +διερμηνευτής +σιγάω +ἐν +ἐκκλησία +δέ +λαλέω +ἑαυτοῦ +καί +ὁ +θεός +δέ +προφήτης +δύο +ἤ +τρεῖς +λαλέω +καί +ὁ +ἄλλος +διακρίνω +δέ +ἐάν +ἄλλος +κάθημαι +ἀποκαλύπτω +ὁ +πρῶτος +σιγάω +γάρ +δύναμαι +κατά +εἷς +πᾶς +προφητεύω +ἵνα +πᾶς +μανθάνω +καί +πᾶς +παρακαλέω +καί +πνεῦμα +προφήτης +προφήτης +ὑποτάσσω +γάρ +οὐ +εἰμί +ἀκαταστασία +ὁ +θεός +ἀλλά +εἰρήνη +ὡς +ἐν +πᾶς +ὁ +ἐκκλησία +ὁ +ἅγιος +ὁ +γυνή +ἐν +ὁ +ἐκκλησία +σιγάω +γάρ +οὐ +ἐπιτρέπω +αὐτός +λαλέω +ἀλλά +ὑποτάσσω +καθώς +καί +ὁ +νόμος +λέγω +δέ +εἰ +τὶς +μανθάνω +θέλω +ἐν +οἶκος +ὁ +ἴδιος +ἀνήρ +ἐπερωτάω +γάρ +αἰσχρός +εἰμί +γυνή +λαλέω +ἐν +ἐκκλησία +ἤ +ἀπό +σύ +ὁ +λόγος +ὁ +θεός +ἐξέρχομαι +ἤ +εἰς +σύ +μόνος +καταντάω +εἰ +τὶς +δοκέω +εἰμί +προφήτης +ἤ +πνευματικός +ἐπιγινώσκω +ὅς +γράφω +σύ +ὅτι +κύριος +ἐντολή +εἰμί +δέ +εἰ +τὶς +ἀγνοέω +ἀγνοέω +ὥστε +ἀδελφός +ἐγώ +ζηλόω +ὁ +προφητεύω +καί +ὁ +λαλέω +γλῶσσα +μή +κωλύω +δέ +πᾶς +εὐσχημόνως +καί +κατά +τάξις +γίνομαι +δέ +ἀδελφός +γνωρίζω +σύ +ὁ +εὐαγγέλιον +ὅς +εὐαγγελίζω +σύ +ὅς +καί +παραλαμβάνω +ἐν +ὅς +καί +ἵστημι +διά +ὅς +καί +σῴζω +τίς +λόγος +εὐαγγελίζω +σύ +εἰ +κατέχω +ἐκτός +εἰ +μή +εἰκῇ +πιστεύω +γάρ +παραδίδωμι +σύ +ἐν +πρῶτος +ὅς +καί +παραλαμβάνω +ὅτι +Χριστός +ἀποθνῄσκω +ὑπέρ +ὁ +ἁμαρτία +ἐγώ +κατά +ὁ +γραφή +καί +ὅτι +θάπτω +καί +ὅτι +ἐγείρω +ὁ +ἡμέρα +ὁ +τρίτος +κατά +ὁ +γραφή +καί +ὅτι +ὁράω +Κηφᾶς +εἶτα +ὁ +δώδεκα +ἔπειτα +ὁράω +ἐπάνω +πεντακόσιοι +ἀδελφός +ἐφάπαξ +ἐκ +ὅς +ὁ +πολύς +μένω +ἕως +ἄρτι +δέ +τὶς +κοιμάομαι +ἔπειτα +ὁράω +Ἰάκωβος +εἶτα +ὁ +ἀπόστολος +πᾶς +δέ +ἔσχατος +πᾶς +ὁράω +κἀγώ +ὡσπερεί +ὁ +ἔκτρωμα +γάρ +ἐγώ +εἰμί +ὁ +ἐλάχιστος +ὁ +ἀπόστολος +ὅς +οὐ +εἰμί +ἱκανός +καλέω +ἀπόστολος +διότι +διώκω +ὁ +ἐκκλησία +ὁ +θεός +δέ +χάρις +θεός +εἰμί +ὅς +εἰμί +καί +ὁ +χάρις +αὐτός +ὁ +εἰς +ἐγώ +οὐ +κενός +γίνομαι +ἀλλά +περισσός +αὐτός +πᾶς +κοπιάω +δέ +οὐ +ἐγώ +ἀλλά +ὁ +χάρις +ὁ +θεός +σύν +ἐγώ +οὖν +εἴτε +ἐγώ +εἴτε +ἐκεῖνος +οὕτω +κηρύσσω +καί +οὕτω +πιστεύω +δέ +εἰ +Χριστός +κηρύσσω +ὅτι +ἐκ +νεκρός +ἐγείρω +πῶς +λέγω +ἐν +σύ +τὶς +ὅτι +ἀνάστασις +νεκρός +οὐ +εἰμί +δέ +εἰ +ἀνάστασις +νεκρός +οὐ +εἰμί +οὐδέ +Χριστός +ἐγείρω +δέ +εἰ +Χριστός +οὐ +ἐγείρω +ἄρα +κενός +ὁ +κήρυγμα +ἐγώ +κενός +καί +ὁ +πίστις +σύ +δέ +εὑρίσκω +καί +ψευδόμαρτυς +ὁ +θεός +ὅτι +μαρτυρέω +κατά +ὁ +θεός +ὅτι +ἐγείρω +ὁ +Χριστός +ὅς +οὐ +ἐγείρω +εἴπερ +ἄρα +νεκρός +οὐ +ἐγείρω +γάρ +εἰ +νεκρός +οὐ +ἐγείρω +οὐδέ +Χριστός +ἐγείρω +δέ +εἰ +Χριστός +οὐ +ἐγείρω +μάταιος +ὁ +πίστις +σύ +ἔτι +εἰμί +ἐν +ὁ +ἁμαρτία +σύ +ἄρα +καί +ὁ +κοιμάομαι +ἐν +Χριστός +ἀπόλλυμι +εἰ +ἐν +ὁ +ζωή +οὗτος +ἐν +Χριστός +ἐλπίζω +εἰμί +μόνος +ἐλεεινός +πᾶς +ἄνθρωπος +εἰμί +δέ +νυνί +ἐγείρω +ἐκ +νεκρός +Χριστός +ἀπαρχή +ὁ +κοιμάομαι +γάρ +ἐπειδή +διά +ἄνθρωπος +θάνατος +καί +διά +ἄνθρωπος +ἀνάστασις +νεκρός +γάρ +ὥσπερ +ἐν +ὁ +Ἀδάμ +πᾶς +ἀποθνῄσκω +οὕτω +καί +ἐν +ὁ +Χριστός +πᾶς +ζῳοποιέω +δέ +ἕκαστος +ἐν +ὁ +ἴδιος +τάγμα +ἀπαρχή +Χριστός +ἔπειτα +ὁ +ὁ +Χριστός +ἐν +ὁ +παρουσία +αὐτός +εἶτα +ὁ +τέλος +ὅταν +παραδίδωμι +ὁ +βασιλεία +ὁ +θεός +καί +πατήρ +ὅταν +καταργέω +πᾶς +ἀρχή +καί +πᾶς +ἐξουσία +καί +δύναμις +γάρ +δεῖ +αὐτός +βασιλεύω +ἄχρι +ὅς +τίθημι +πᾶς +ὁ +ἐχθρός +ὑπό +ὁ +πούς +αὐτός +ἔσχατος +ἐχθρός +ὁ +θάνατος +καταργέω +γάρ +πᾶς +ὑποτάσσω +ὑπό +ὁ +πούς +αὐτός +δέ +ὅταν +λέγω +ὅτι +πᾶς +ὑποτάσσω +δῆλος +ὅτι +ἐκτός +ὁ +ὑποτάσσω +αὐτός +ὁ +πᾶς +δέ +ὅταν +ὑποτάσσω +αὐτός +ὁ +πᾶς +τότε +καί +αὐτός +ὁ +υἱός +ὑποτάσσω +ὁ +ὑποτάσσω +αὐτός +ὁ +πᾶς +ἵνα +εἰμί +ὁ +θεός +πᾶς +ἐν +πᾶς +ἐπεί +τίς +ποιέω +ὁ +βαπτίζω +ὑπέρ +ὁ +νεκρός +εἰ +ὅλως +νεκρός +οὐ +ἐγείρω +τίς +καί +βαπτίζω +ὑπέρ +αὐτός +τίς +καί +ἐγώ +κινδυνεύω +πᾶς +ὥρα +ἀδελφός +κατά +ἡμέρα +ἀποθνῄσκω +νή +ὁ +ὑμέτερος +καύχησις +ὅς +ἔχω +ἐν +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +εἰ +κατά +ἄνθρωπος +θηριομαχέω +ἐν +Ἔφεσος +τίς +ἐγώ +ὁ +ὄφελος +εἰ +νεκρός +οὐ +ἐγείρω +ἐσθίω +καί +πίνω +γάρ +αὔριον +ἀποθνῄσκω +μή +πλανάω +φθείρω +ἦθος +χρηστός +ὁμιλία +κακός +ἐκνήφω +δικαίως +καί +μή +ἁμαρτάνω +γάρ +ἀγνωσία +θεός +τὶς +ἔχω +πρός +ἐντροπή +σύ +λαλέω +ἀλλά +εἶπον +τὶς +πῶς +ἐγείρω +ὁ +νεκρός +δέ +ποῖος +σῶμα +ἔρχομαι +ἄφρων +ὅς +σύ +σπείρω +οὐ +ζῳοποιέω +ἐάν +μή +ἀποθνῄσκω +καί +ὅς +σπείρω +οὐ +ὁ +σῶμα +ὁ +γίνομαι +σπείρω +ἀλλά +γυμνός +κόκκος +εἰ +τυγχάνω +σῖτος +ἤ +τὶς +ὁ +λοιπός +δέ +ὁ +θεός +δίδωμι +αὐτός +σῶμα +καθώς +θέλω +καί +ἕκαστος +ὁ +σπέρμα +ἴδιος +σῶμα +οὐ +πᾶς +σάρξ +ὁ +αὐτός +σάρξ +ἀλλά +μέν +ἄλλος +ἄνθρωπος +δέ +ἄλλος +σάρξ +κτῆνος +δέ +ἄλλος +σάρξ +πτηνός +δέ +ἄλλος +ἰχθύς +καί +σῶμα +ἐπουράνιος +καί +σῶμα +ἐπίγειος +ἀλλά +μέν +ἕτερος +ὁ +ὁ +ἐπουράνιος +δόξα +δέ +ἕτερος +ὁ +ὁ +ἐπίγειος +ἄλλος +δόξα +ἥλιος +καί +ἄλλος +δόξα +σελήνη +καί +ἄλλος +δόξα +ἀστήρ +γάρ +ἀστήρ +ἀστήρ +διαφέρω +ἐν +δόξα +οὕτω +καί +ὁ +ἀνάστασις +ὁ +νεκρός +σπείρω +ἐν +φθορά +ἐγείρω +ἐν +ἀφθαρσία +σπείρω +ἐν +ἀτιμία +ἐγείρω +ἐν +δόξα +σπείρω +ἐν +ἀσθένεια +ἐγείρω +ἐν +δύναμις +σπείρω +σῶμα +ψυχικός +ἐγείρω +σῶμα +πνευματικός +εἰ +εἰμί +σῶμα +ψυχικός +εἰμί +καί +πνευματικός +οὕτω +καί +γράφω +γίνομαι +ὁ +πρῶτος +ἄνθρωπος +Ἀδάμ +εἰς +ψυχή +ζάω +ὁ +ἔσχατος +Ἀδάμ +εἰς +πνεῦμα +ζῳοποιέω +ἀλλά +οὐ +πρῶτος +ὁ +πνευματικός +ἀλλά +ὁ +ψυχικός +ἔπειτα +ὁ +πνευματικός +ὁ +πρῶτος +ἄνθρωπος +ἐκ +γῆ +χοϊκός +ὁ +δεύτερος +ἄνθρωπος +ἐκ +οὐρανός +οἷος +ὁ +χοϊκός +τοιοῦτος +καί +ὁ +χοϊκός +καί +οἷος +ὁ +ἐπουράνιος +τοιοῦτος +καί +ὁ +ἐπουράνιος +καί +καθώς +φορέω +ὁ +εἰκών +ὁ +χοϊκός +φορέω +καί +ὁ +εἰκών +ὁ +ἐπουράνιος +δέ +οὗτος +φημί +ἀδελφός +ὅτι +σάρξ +καί +αἷμα +βασιλεία +θεός +κληρονομέω +οὐ +δύναμαι +οὐδέ +ὁ +φθορά +ὁ +ἀφθαρσία +κληρονομέω +ὁράω +μυστήριον +σύ +λέγω +πᾶς +οὐ +κοιμάομαι +δέ +πᾶς +ἀλλάσσω +ἐν +ἄτομος +ἐν +ῥιπή +ὀφθαλμός +ἐν +ὁ +ἔσχατος +σάλπιγξ +γάρ +σαλπίζω +καί +ὁ +νεκρός +ἐγείρω +ἄφθαρτος +καί +ἐγώ +ἀλλάσσω +γάρ +δεῖ +ὁ +φθαρτός +οὗτος +ἐνδύω +ἀφθαρσία +καί +ὁ +θνητός +οὗτος +ἐνδύω +ἀθανασία +δέ +ὅταν +ὁ +φθαρτός +οὗτος +ἐνδύω +ἀφθαρσία +καί +ὁ +θνητός +οὗτος +ἐνδύω +ἀθανασία +τότε +γίνομαι +ὁ +λόγος +ὁ +γράφω +καταπίνω +ὁ +θάνατος +εἰς +νῖκος +θάνατος +ποῦ +σύ +ὁ +νῖκος +θάνατος +ποῦ +σύ +ὁ +κέντρον +δέ +ὁ +κέντρον +ὁ +θάνατος +ὁ +ἁμαρτία +δέ +ὁ +δύναμις +ὁ +ἁμαρτία +ὁ +νόμος +δέ +χάρις +ὁ +θεός +ὁ +δίδωμι +ἐγώ +ὁ +νῖκος +διά +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὥστε +ἀδελφός +ἐγώ +ἀγαπητός +γίνομαι +ἑδραῖος +ἀμετακίνητος +περισσεύω +ἐν +ὁ +ἔργον +ὁ +κύριος +πάντοτε +οἶδα +ὅτι +ὁ +κόπος +σύ +οὐ +εἰμί +κενός +ἐν +κύριος +δέ +περί +ὁ +λογεία +ὁ +εἰς +ὁ +ἅγιος +ὥσπερ +διατάσσω +ὁ +ἐκκλησία +ὁ +Γαλατία +οὕτω +καί +σύ +ποιέω +κατά +εἷς +σάββατον +ἕκαστος +σύ +παρά +ἑαυτοῦ +τίθημι +θησαυρίζω +τὶς +ἐάν +ὅς +εὐοδόω +ἵνα +μή +ὅταν +ἔρχομαι +τότε +λογεία +γίνομαι +δέ +ὅταν +παραγίνομαι +ἐάν +ὅς +δοκιμάζω +διά +ἐπιστολή +οὗτος +πέμπω +ἀποφέρω +ὁ +χάρις +σύ +εἰς +Ἱεροσόλυμα +δέ +ἐάν +ἄξιος +εἰμί +ὁ +κἀγώ +πορεύομαι +σύν +ἐγώ +πορεύομαι +δέ +ἔρχομαι +πρός +σύ +ὅταν +Μακεδονία +διέρχομαι +γάρ +Μακεδονία +διέρχομαι +δέ +πρός +σύ +τυγχάνω +καταμένω +ἤ +καί +παραχειμάζω +ἵνα +σύ +ἐγώ +προπέμπω +ἐάν +οὗ +πορεύομαι +γάρ +οὐ +θέλω +σύ +ἄρτι +ἐν +πάροδος +ὁράω +γάρ +ἐλπίζω +χρόνος +τὶς +ἐπιμένω +πρός +σύ +ἐάν +ὁ +κύριος +ἐπιτρέπω +δέ +ἐπιμένω +ἐν +Ἔφεσος +ἕως +ὁ +πεντηκοστή +γάρ +ἐγώ +ἀνοίγω +θύρα +μέγας +καί +ἐνεργής +καί +ἀντίκειμαι +πολύς +δέ +ἐάν +ἔρχομαι +Τιμόθεος +βλέπω +ἵνα +ἀφόβως +γίνομαι +πρός +σύ +γάρ +ὁ +ἔργον +κύριος +ἐργάζομαι +ὡς +κἀγώ +οὖν +μή +τὶς +αὐτός +ἐξουθενέω +δέ +προπέμπω +αὐτός +ἐν +εἰρήνη +ἵνα +ἔρχομαι +πρός +ἐγώ +γάρ +ἐκδέχομαι +αὐτός +μετά +ὁ +ἀδελφός +δέ +περί +Ἀπολλῶς +ὁ +ἀδελφός +πολύς +παρακαλέω +αὐτός +ἵνα +ἔρχομαι +πρός +σύ +μετά +ὁ +ἀδελφός +καί +πάντως +οὐ +εἰμί +θέλημα +ἵνα +νῦν +ἔρχομαι +δέ +ἔρχομαι +ὅταν +εὐκαιρέω +γρηγορέω +στήκω +ἐν +ὁ +πίστις +ἀνδρίζομαι +κραταιόω +πᾶς +σύ +ἐν +ἀγάπη +γίνομαι +δέ +παρακαλέω +σύ +ἀδελφός +οἶδα +ὁ +οἰκία +Στεφανᾶς +ὅτι +εἰμί +ἀπαρχή +ὁ +Ἀχαΐα +καί +εἰς +διακονία +ὁ +ἅγιος +τάσσω +ἑαυτοῦ +ἵνα +καί +σύ +ὑποτάσσω +ὁ +τοιοῦτος +καί +πᾶς +ὁ +συνεργέω +καί +κοπιάω +δέ +χαίρω +ἐπί +ὁ +παρουσία +Στεφανᾶς +καί +Φορτουνᾶτος +καί +Ἀχαϊκός +ὅτι +ὁ +ὑμέτερος +ὑστέρημα +οὗτος +ἀναπληρόω +γάρ +ἀναπαύω +ὁ +ἐμός +πνεῦμα +καί +ὁ +σύ +οὖν +ἐπιγινώσκω +ὁ +τοιοῦτος +ἀσπάζομαι +σύ +ὁ +ἐκκλησία +ὁ +Ἀσία +ἀσπάζομαι +σύ +ἐν +κύριος +πολύς +Ἀκύλας +καί +Πρίσκα +σύν +ὁ +κατά +οἶκος +αὐτός +ἐκκλησία +ἀσπάζομαι +σύ +ὁ +ἀδελφός +πᾶς +ἀσπάζομαι +ἀλλήλων +ἐν +φίλημα +ἅγιος +ὁ +ἀσπασμός +ὁ +ἐμός +χείρ +Παῦλος +εἰ +τὶς +οὐ +φιλέω +ὁ +κύριος +εἰμί +ἀνάθεμα +μαράνα θᾶ +μαράνα θᾶ +ὁ +χάρις +ὁ +κύριος +Ἰησοῦς +μετά +σύ +ὁ +ἀγάπη +ἐγώ +μετά +πᾶς +σύ +ἐν +Χριστός +Ἰησοῦς +Παῦλος +ἀπόστολος +Χριστός +Ἰησοῦς +διά +θέλημα +θεός +καί +Τιμόθεος +ὁ +ἀδελφός +ὁ +ἐκκλησία +ὁ +θεός +ὁ +εἰμί +ἐν +Κόρινθος +σύν +ὁ +ἅγιος +πᾶς +ὁ +εἰμί +ἐν +ὅλος +ὁ +Ἀχαΐα +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +εὐλογητός +ὁ +θεός +καί +πατήρ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +πατήρ +ὁ +οἰκτιρμός +καί +θεός +πᾶς +παράκλησις +ὁ +παρακαλέω +ἐγώ +ἐπί +πᾶς +ὁ +θλῖψις +ἐγώ +εἰς +ὁ +δύναμαι +ἐγώ +παρακαλέω +ὁ +ἐν +πᾶς +θλῖψις +διά +ὁ +παράκλησις +ὅς +παρακαλέω +αὐτός +ὑπό +ὁ +θεός +ὅτι +καθώς +περισσεύω +ὁ +πάθημα +ὁ +Χριστός +εἰς +ἐγώ +οὕτω +διά +ὁ +Χριστός +περισσεύω +καί +ὁ +παράκλησις +ἐγώ +δέ +εἴτε +θλίβω +ὑπέρ +ὁ +σύ +παράκλησις +καί +σωτηρία +εἴτε +παρακαλέω +ὑπέρ +ὁ +σύ +παράκλησις +ὁ +ἐνεργέω +ἐν +ὑπομονή +ὁ +αὐτός +πάθημα +ὅς +καί +ἐγώ +πάσχω +καί +ὁ +ἐλπίς +ἐγώ +βέβαιος +ὑπέρ +σύ +οἶδα +ὅτι +ὡς +εἰμί +κοινωνός +ὁ +πάθημα +οὕτω +καί +ὁ +παράκλησις +γάρ +ἀδελφός +οὐ +θέλω +σύ +ἀγνοέω +ὑπέρ +ὁ +θλῖψις +ἐγώ +ὁ +γίνομαι +ἐν +ὁ +Ἀσία +ὅτι +κατά +ὑπερβολή +ὑπέρ +δύναμις +βαρέω +ὥστε +ἐξαπορέομαι +ἐγώ +καί +ὁ +ζάω +ἀλλά +αὐτός +ἐν +ἑαυτοῦ +ὁ +ἀπόκριμα +ὁ +θάνατος +ἔχω +ἵνα +μή +πείθω +εἰμί +ἐπί +ἑαυτοῦ +ἀλλά +ἐπί +ὁ +θεός +ὁ +ἐγείρω +ὁ +νεκρός +ὅς +ἐκ +τηλικοῦτος +θάνατος +ῥύομαι +ἐγώ +καί +ῥύομαι +εἰς +ὅς +ἐλπίζω +ὅτι +καί +ἔτι +ῥύομαι +συνυπουργέω +καί +σύ +ὑπέρ +ἐγώ +ὁ +δέησις +ἵνα +ἐκ +πολύς +πρόσωπον +ὁ +εἰς +ἐγώ +χάρισμα +διά +πολύς +εὐχαριστέω +ὑπέρ +ἐγώ +γάρ +ὁ +καύχησις +ἐγώ +οὗτος +εἰμί +ὁ +μαρτύριον +ὁ +συνείδησις +ἐγώ +ὅτι +ἐν +ἁγιότης +καί +εἰλικρίνεια +ὁ +θεός +οὐ +ἐν +σοφία +σαρκικός +ἀλλά +ἐν +χάρις +θεός +ἀναστρέφω +ἐν +ὁ +κόσμος +δέ +περισσῶς +πρός +σύ +γάρ +γράφω +σύ +οὐ +ἄλλος +ἀλλά +ἤ +ὅς +ἀναγινώσκω +ἤ +καί +ἐπιγινώσκω +δέ +ἐλπίζω +ὅτι +ἕως +τέλος +ἐπιγινώσκω +καθώς +καί +ἐπιγινώσκω +ἐγώ +ἀπό +μέρος +ὅτι +καύχημα +σύ +εἰμί +καθάπερ +καί +σύ +ἐγώ +ἐν +ὁ +ἡμέρα +ὁ +κύριος +ἐγώ +Ἰησοῦς +καί +οὗτος +ὁ +πεποίθησις +βούλομαι +πρότερος +πρός +σύ +ἔρχομαι +ἵνα +δεύτερος +χάρις +ἔχω +καί +διά +σύ +διέρχομαι +εἰς +Μακεδονία +καί +πάλιν +ἀπό +Μακεδονία +ἔρχομαι +πρός +σύ +καί +ὑπό +σύ +προπέμπω +εἰς +ὁ +Ἰουδαία +οὖν +οὗτος +βούλομαι +ἆρα +μήτι +ὁ +ἐλαφρία +χράομαι +ἤ +ὅς +βουλεύω +κατά +σάρξ +βουλεύω +ἵνα +εἰμί +παρά +ἐγώ +ὁ +ναί +ναί +καί +ὁ +οὐ +οὐ +δέ +πιστός +ὁ +θεός +ὅτι +ὁ +λόγος +ἐγώ +ὁ +πρός +σύ +οὐ +εἰμί +ναί +καί +οὐ +γάρ +ὁ +ὁ +θεός +υἱός +Χριστός +Ἰησοῦς +ὁ +ἐν +σύ +διά +ἐγώ +κηρύσσω +διά +ἐγώ +καί +Σιλουανός +καί +Τιμόθεος +οὐ +γίνομαι +ναί +καί +οὐ +ἀλλά +ναί +ἐν +αὐτός +γίνομαι +γάρ +ὅσος +ἐπαγγελία +θεός +ἐν +αὐτός +ὁ +ναί +διό +καί +διά +αὐτός +ὁ +ἀμήν +ὁ +θεός +πρός +δόξα +διά +ἐγώ +δέ +ὁ +βεβαιόω +ἐγώ +σύν +σύ +εἰς +Χριστός +καί +χρίω +ἐγώ +θεός +ὁ +καί +σφραγίζω +ἐγώ +καί +δίδωμι +ὁ +ἀρραβών +ὁ +πνεῦμα +ἐν +ὁ +καρδία +ἐγώ +δέ +ἐγώ +μάρτυς +ὁ +θεός +ἐπικαλέω +ἐπί +ὁ +ἐμός +ψυχή +ὅτι +φείδομαι +σύ +οὐκέτι +ἔρχομαι +εἰς +Κόρινθος +ὅτι +οὐ +κυριεύω +σύ +ὁ +πίστις +ἀλλά +συνεργός +εἰμί +ὁ +χαρά +σύ +γάρ +ὁ +πίστις +ἵστημι +δέ +κρίνω +ἐμαυτοῦ +οὗτος +ὁ +μή +πάλιν +ἐν +λύπη +πρός +σύ +ἔρχομαι +γάρ +εἰ +ἐγώ +λυπέω +σύ +καί +τίς +ὁ +εὐφραίνω +ἐγώ +εἰ +μή +ὁ +λυπέω +ἐκ +ἐγώ +καί +γράφω +οὗτος +αὐτός +ἵνα +μή +ἔρχομαι +λύπη +ἔχω +ἀπό +ὅς +ἐγώ +χαίρω +δεῖ +πείθω +ἐπί +πᾶς +σύ +ὅτι +ὁ +ἐμός +χαρά +πᾶς +σύ +εἰμί +γάρ +ἐκ +πολύς +θλῖψις +καί +συνοχή +καρδία +γράφω +σύ +διά +πολύς +δάκρυον +οὐ +ἵνα +λυπέω +ἀλλά +ἵνα +γινώσκω +ὁ +ἀγάπη +ὅς +ἔχω +περισσῶς +εἰς +σύ +δέ +εἰ +τὶς +λυπέω +οὐ +ἐγώ +λυπέω +ἀλλά +ἀπό +μέρος +πᾶς +σύ +ἵνα +μή +ἐπιβαρέω +ἱκανός +ὁ +τοιοῦτος +ὁ +ἐπιτιμία +οὗτος +ὁ +ὑπό +ὁ +πολύς +ὥστε +τὸ ἐναντίον +μᾶλλον +σύ +χαρίζομαι +καί +παρακαλέω +μή +πῶς +ὁ +περισσός +λύπη +καταπίνω +ὁ +τοιοῦτος +διό +παρακαλέω +σύ +κυρόω +εἰς +αὐτός +ἀγάπη +γάρ +εἰς +οὗτος +καί +γράφω +ἵνα +γινώσκω +ὁ +δοκιμή +σύ +εἰ +εἰς +πᾶς +ὑπήκοος +εἰμί +δέ +ὅς +τὶς +χαρίζομαι +κἀγώ +γάρ +καί +ἐγώ +ὅς +χαρίζομαι +εἰ +τὶς +χαρίζομαι +διά +σύ +ἐν +πρόσωπον +Χριστός +ἵνα +μή +πλεονεκτέω +ὑπό +ὁ +Σατανᾶς +γάρ +οὐ +αὐτός +ὁ +νόημα +ἀγνοέω +δέ +ἔρχομαι +εἰς +ὁ +Τρῳάς +εἰς +ὁ +εὐαγγέλιον +ὁ +Χριστός +καί +θύρα +ἐγώ +ἀνοίγω +ἐν +κύριος +οὐ +ἔχω +ἄνεσις +ὁ +πνεῦμα +ἐγώ +ὁ +μή +εὑρίσκω +ἐγώ +Τίτος +ὁ +ἀδελφός +ἐγώ +ἀλλά +ἀποτάσσω +αὐτός +ἐξέρχομαι +εἰς +Μακεδονία +δέ +χάρις +ὁ +θεός +ὁ +πάντοτε +θριαμβεύω +ἐγώ +ἐν +ὁ +Χριστός +καί +ὁ +ὀσμή +ὁ +γνῶσις +αὐτός +φανερόω +διά +ἐγώ +ἐν +πᾶς +τόπος +ὅτι +Χριστός +εὐωδία +εἰμί +ὁ +θεός +ἐν +ὁ +σῴζω +καί +ἐν +ὁ +ἀπόλλυμι +μέν +ὅς +ὀσμή +ἐκ +θάνατος +εἰς +θάνατος +δέ +ὅς +ὀσμή +ἐκ +ζωή +εἰς +ζωή +καί +πρός +οὗτος +τίς +ἱκανός +γάρ +οὐ +εἰμί +καπηλεύω +ὁ +λόγος +ὁ +θεός +ὡς +ὁ +πολύς +ἀλλά +ὡς +ἐκ +εἰλικρίνεια +ἀλλά +ὡς +ἐκ +θεός +κατέναντι +θεός +ἐν +Χριστός +λαλέω +ἄρχω +πάλιν +ἑαυτοῦ +συνίστημι +ἤ +μή +χρῄζω +ὡς +τὶς +συστατικός +ἐπιστολή +πρός +σύ +ἤ +ἐκ +σύ +ὁ +ἐπιστολή +ἐγώ +σύ +εἰμί +ἐγγράφω +ἐν +ὁ +καρδία +ἐγώ +γινώσκω +καί +ἀναγινώσκω +ὑπό +πᾶς +ἄνθρωπος +φανερόω +ὅτι +εἰμί +ἐπιστολή +Χριστός +διακονέω +ὑπό +ἐγώ +ἐγγράφω +οὐ +μέλας +ἀλλά +πνεῦμα +θεός +ζάω +οὐ +ἐν +πλάξ +λίθινος +ἀλλά +ἐν +πλάξ +καρδία +σάρκινος +δέ +πεποίθησις +τοιοῦτος +ἔχω +διά +ὁ +Χριστός +πρός +ὁ +θεός +οὐ +ὅτι +ἀπό +ἑαυτοῦ +ἱκανός +εἰμί +λογίζομαι +τὶς +ὡς +ἐκ +ἑαυτοῦ +ἀλλά +ὁ +ἱκανότης +ἐγώ +ἐκ +ὁ +θεός +ὅς +καί +ἱκανόω +ἐγώ +διάκονος +καινός +διαθήκη +οὐ +γράμμα +ἀλλά +πνεῦμα +γάρ +ὁ +γράμμα +ἀποκτείνω +δέ +ὁ +πνεῦμα +ζῳοποιέω +δέ +εἰ +ὁ +διακονία +ὁ +θάνατος +ἐν +γράμμα +ἐντυπόω +λίθος +γίνομαι +ἐν +δόξα +ὥστε +μή +δύναμαι +ὁ +υἱός +Ἰσραήλ +ἀτενίζω +εἰς +ὁ +πρόσωπον +Μωϋσῆς +διά +ὁ +δόξα +ὁ +πρόσωπον +αὐτός +ὁ +καταργέω +πῶς +οὐχί +μᾶλλον +ὁ +διακονία +ὁ +πνεῦμα +εἰμί +ἐν +δόξα +γάρ +εἰ +ὁ +διακονία +ὁ +κατάκρισις +δόξα +πολύς +μᾶλλον +περισσεύω +ὁ +διακονία +ὁ +δικαιοσύνη +δόξα +γάρ +καί +οὐ +δοξάζω +ὁ +δοξάζω +ἐν +οὗτος +ὁ +μέρος +ἕνεκα +ὁ +ὑπερβάλλω +δόξα +γάρ +εἰ +ὁ +καταργέω +διά +δόξα +πολύς +μᾶλλον +ὁ +μένω +ἐν +δόξα +οὖν +ἔχω +τοιοῦτος +ἐλπίς +πολύς +παρρησία +χράομαι +καί +οὐ +καθάπερ +Μωϋσῆς +τίθημι +κάλυμμα +ἐπί +ὁ +πρόσωπον +αὐτός +πρός +ὁ +μή +ἀτενίζω +ὁ +υἱός +Ἰσραήλ +εἰς +ὁ +τέλος +ὁ +καταργέω +ἀλλά +πωρόω +ὁ +νόημα +αὐτός +γάρ +ἄχρι +ὁ +σήμερον +ἡμέρα +ὁ +αὐτός +κάλυμμα +ἐπί +ὁ +ἀνάγνωσις +ὁ +παλαιός +διαθήκη +μένω +μή +ἀνακαλύπτω +ὅτι +ἐν +Χριστός +καταργέω +ἀλλά +ἕως +σήμερον +ἄν +ἡνίκα +ἀναγινώσκω +Μωϋσῆς +κάλυμμα +ἐπί +ὁ +καρδία +αὐτός +κεῖμαι +δέ +ἡνίκα +ἐάν +ἐπιστρέφω +πρός +κύριος +περιαιρέω +ὁ +κάλυμμα +δέ +ὁ +κύριος +ὁ +πνεῦμα +εἰμί +δέ +οὗ +ὁ +πνεῦμα +κύριος +ἐλευθερία +δέ +ἐγώ +πᾶς +ἀνακαλύπτω +πρόσωπον +ὁ +δόξα +κύριος +κατοπτρίζω +ὁ +αὐτός +εἰκών +μεταμορφόω +ἀπό +δόξα +εἰς +δόξα +καθάπερ +ἀπό +κύριος +πνεῦμα +διά +οὗτος +ἔχω +ὁ +διακονία +οὗτος +καθώς +ἐλεέω +οὐ +ἐγκακέω +ἀλλά +ἀπεῖπον +ὁ +κρυπτός +ὁ +αἰσχύνη +μή +περιπατέω +ἐν +πανουργία +μηδέ +δολόω +ὁ +λόγος +ὁ +θεός +ἀλλά +ὁ +φανέρωσις +ὁ +ἀλήθεια +συνίστημι +ἑαυτοῦ +πρός +πᾶς +συνείδησις +ἄνθρωπος +ἐνώπιον +ὁ +θεός +δέ +εἰ +καί +εἰμί +καλύπτω +ὁ +εὐαγγέλιον +ἐγώ +ἐν +ὁ +ἀπόλλυμι +εἰμί +καλύπτω +ἐν +ὅς +ὁ +θεός +ὁ +αἰών +οὗτος +τυφλόω +ὁ +νόημα +ὁ +ἄπιστος +εἰς +ὁ +μή +αὐγάζω +ὁ +φωτισμός +ὁ +εὐαγγέλιον +ὁ +δόξα +ὁ +Χριστός +ὅς +εἰμί +εἰκών +ὁ +θεός +γάρ +οὐ +ἑαυτοῦ +κηρύσσω +ἀλλά +Χριστός +Ἰησοῦς +κύριος +δέ +ἑαυτοῦ +δοῦλος (II) +σύ +διά +Ἰησοῦς +ὅτι +ὁ +θεός +ὁ +λέγω +ἐκ +σκότος +φῶς +λάμπω +ὅς +λάμπω +ἐν +ὁ +καρδία +ἐγώ +πρός +φωτισμός +ὁ +γνῶσις +ὁ +δόξα +ὁ +θεός +ἐν +πρόσωπον +Χριστός +δέ +ἔχω +ὁ +θησαυρός +οὗτος +ἐν +ὀστράκινος +σκεῦος +ἵνα +ὁ +ὑπερβολή +ὁ +δύναμις +εἰμί +ὁ +θεός +καί +μή +ἐκ +ἐγώ +ἐν +πᾶς +θλίβω +ἀλλά +οὐ +στενοχωρέω +ἀπορέω +ἀλλά +οὐ +ἐξαπορέομαι +διώκω +ἀλλά +οὐ +ἐγκαταλείπω +καταβάλλω +ἀλλά +οὐ +ἀπόλλυμι +πάντοτε +ὁ +νέκρωσις +ὁ +Ἰησοῦς +ἐν +ὁ +σῶμα +περιφέρω +ἵνα +καί +ὁ +ζωή +ὁ +Ἰησοῦς +ἐν +ὁ +σῶμα +ἐγώ +φανερόω +γάρ +ἀεί +ἐγώ +ὁ +ζάω +εἰς +θάνατος +παραδίδωμι +διά +Ἰησοῦς +ἵνα +καί +ὁ +ζωή +ὁ +Ἰησοῦς +φανερόω +ἐν +ὁ +θνητός +σάρξ +ἐγώ +ὥστε +ὁ +θάνατος +ἐν +ἐγώ +ἐνεργέω +δέ +ὁ +ζωή +ἐν +σύ +δέ +ἔχω +ὁ +αὐτός +πνεῦμα +ὁ +πίστις +κατά +ὁ +γράφω +πιστεύω +διό +λαλέω +καί +ἐγώ +πιστεύω +διό +καί +λαλέω +οἶδα +ὅτι +ὁ +ἐγείρω +ὁ +κύριος +Ἰησοῦς +καί +ἐγώ +σύν +Ἰησοῦς +ἐγείρω +καί +παρίστημι +σύν +σύ +γάρ +ὁ +πᾶς +διά +σύ +ἵνα +ὁ +χάρις +πλεονάζω +διά +ὁ +πολύς +ὁ +εὐχαριστία +περισσεύω +εἰς +ὁ +δόξα +ὁ +θεός +διό +οὐ +ἐγκακέω +ἀλλά +εἰ +καί +ὁ +ἔξω +ἐγώ +ἄνθρωπος +διαφθείρω +ἀλλά +ὁ +ἔσω +ἐγώ +ἀνακαινόω +ἡμέρα +καί +ἡμέρα +γάρ +ὁ +παραυτίκα +ἐλαφρός +ὁ +θλῖψις +κατά +ὑπερβολή +εἰς +ὑπερβολή +αἰώνιος +βάρος +δόξα +κατεργάζομαι +ἐγώ +μή +σκοπέω +ἐγώ +ὁ +βλέπω +ἀλλά +ὁ +μή +βλέπω +γάρ +ὁ +βλέπω +πρόσκαιρος +δέ +ὁ +μή +βλέπω +αἰώνιος +γάρ +οἶδα +ὅτι +ἐάν +ὁ +ἐπίγειος +ἐγώ +οἰκία +ὁ +σκῆνος +καταλύω +ἐκ +θεός +ἔχω +οἰκοδομή +οἰκία +ἀχειροποίητος +αἰώνιος +ἐν +ὁ +οὐρανός +γάρ +καί +ἐν +οὗτος +στενάζω +ὁ +οἰκητήριον +ἐγώ +ὁ +ἐκ +οὐρανός +ἐπενδύω +ἐπιποθέω +εἰ +γέ +καί +ἐνδύω +οὐ +γυμνός +εὑρίσκω +γάρ +καί +ὁ +εἰμί +ἐν +ὁ +σκῆνος +στενάζω +βαρέω +ἐπί +ὅς +θέλω +οὐ +ἐκδύω +ἀλλά +ἐπενδύω +ἵνα +καταπίνω +ὁ +θνητός +ὑπό +ὁ +ζωή +δέ +ὁ +κατεργάζομαι +ἐγώ +εἰς +αὐτός +οὗτος +θεός +ὁ +δίδωμι +ἐγώ +ὁ +ἀρραβών +ὁ +πνεῦμα +οὖν +θαρρέω +πάντοτε +καί +οἶδα +ὅτι +ἐνδημέω +ἐν +ὁ +σῶμα +ἐκδημέω +ἀπό +ὁ +κύριος +γάρ +διά +πίστις +περιπατέω +οὐ +διά +εἶδος +δέ +θαρρέω +καί +εὐδοκέω +μᾶλλον +ἐκδημέω +ἐκ +ὁ +σῶμα +καί +ἐνδημέω +πρός +ὁ +κύριος +διό +καί +φιλοτιμέομαι +εἴτε +ἐνδημέω +εἴτε +ἐκδημέω +εὐάρεστος +αὐτός +εἰμί +γάρ +ὁ +πᾶς +ἐγώ +φανερόω +ἔμπροσθεν +ὁ +βῆμα +ὁ +Χριστός +δεῖ +ἵνα +κομίζω +ἕκαστος +ὁ +διά +ὁ +σῶμα +πρός +ὅς +πράσσω +εἴτε +ἀγαθός +εἴτε +φαῦλος +οὖν +οἶδα +ὁ +φόβος +ὁ +κύριος +ἄνθρωπος +πείθω +δέ +θεός +φανερόω +δέ +ἐλπίζω +καί +ἐν +ὁ +συνείδησις +σύ +φανερόω +οὐ +πάλιν +ἑαυτοῦ +συνίστημι +σύ +ἀλλά +ἀφορμή +καύχημα +δίδωμι +σύ +ὑπέρ +ἐγώ +ἵνα +ἔχω +πρός +ὁ +ἐν +πρόσωπον +καυχάομαι +καί +μή +ἐν +καρδία +γάρ +εἴτε +ἐξίστημι +θεός +εἴτε +σωφρονέω +σύ +γάρ +ὁ +ἀγάπη +ὁ +Χριστός +συνέχω +ἐγώ +κρίνω +οὗτος +ὅτι +εἷς +ὑπέρ +πᾶς +ἀποθνῄσκω +ἄρα +ὁ +πᾶς +ἀποθνῄσκω +καί +ὑπέρ +πᾶς +ἀποθνῄσκω +ἵνα +ὁ +ζάω +ζάω +μηκέτι +ἑαυτοῦ +ἀλλά +ὁ +ὑπέρ +αὐτός +ἀποθνῄσκω +καί +ἐγείρω +ὥστε +ἐγώ +ἀπό +ὁ +νῦν +οὐδείς +οἶδα +κατά +σάρξ +εἰ +καί +γινώσκω +κατά +σάρξ +Χριστός +ἀλλά +νῦν +οὐκέτι +γινώσκω +ὥστε +εἰ +τὶς +ἐν +Χριστός +καινός +κτίσις +ὁ +ἀρχαῖος +παρέρχομαι +ὁράω +γίνομαι +καινός +δέ +ὁ +πᾶς +ἐκ +ὁ +θεός +ὁ +καταλλάσσω +ἐγώ +ἑαυτοῦ +διά +Χριστός +καί +δίδωμι +ἐγώ +ὁ +διακονία +ὁ +καταλλαγή +ὡς +ὅτι +θεός +εἰμί +καταλλάσσω +ἐν +Χριστός +κόσμος +ἑαυτοῦ +μή +λογίζομαι +αὐτός +ὁ +παράπτωμα +αὐτός +καί +τίθημι +ἐν +ἐγώ +ὁ +λόγος +ὁ +καταλλαγή +οὖν +ὑπέρ +Χριστός +πρεσβεύω +ὡς +ὁ +θεός +παρακαλέω +διά +ἐγώ +δέομαι +ὑπέρ +Χριστός +καταλλάσσω +ὁ +θεός +ὁ +μή +γινώσκω +ἁμαρτία +ὑπέρ +ἐγώ +ἁμαρτία +ποιέω +ἵνα +ἐγώ +γίνομαι +δικαιοσύνη +θεός +ἐν +αὐτός +δέ +συνεργέω +καί +παρακαλέω +μή +εἰς +κενός +ὁ +χάρις +ὁ +θεός +δέχομαι +σύ +γάρ +λέγω +καιρός +δεκτός +ἐπακούω +σύ +καί +ἐν +ἡμέρα +σωτηρία +βοηθέω +σύ +ὁράω +νῦν +καιρός +εὐπρόσδεκτος +ὁράω +νῦν +ἡμέρα +σωτηρία +μηδείς +προσκοπή +ἐν +μηδείς +δίδωμι +ἵνα +μή +μωμάομαι +ὁ +διακονία +ἀλλά +ἐν +πᾶς +συνίστημι +ἑαυτοῦ +ὡς +θεός +διάκονος +ἐν +ὑπομονή +πολύς +ἐν +θλῖψις +ἐν +ἀνάγκη +ἐν +στενοχωρία +ἐν +πληγή +ἐν +φυλακή +ἐν +ἀκαταστασία +ἐν +κόπος +ἐν +ἀγρυπνία +ἐν +νηστεία +ἐν +ἁγνότης +ἐν +γνῶσις +ἐν +μακροθυμία +ἐν +χρηστότης +ἐν +πνεῦμα +ἅγιος +ἐν +ἀγάπη +ἀνυπόκριτος +ἐν +λόγος +ἀλήθεια +ἐν +δύναμις +θεός +διά +ὁ +ὅπλον +ὁ +δικαιοσύνη +ὁ +δεξιός +καί +ἀριστερός +διά +δόξα +καί +ἀτιμία +διά +δυσφημία +καί +εὐφημία +ὡς +πλάνος +καί +ἀληθής +ὡς +ἀγνοέω +καί +ἐπιγινώσκω +ὡς +ἀποθνῄσκω +καί +ὁράω +ζάω +ὡς +παιδεύω +καί +μή +θανατόω +ὡς +λυπέω +δέ +ἀεί +χαίρω +ὡς +πτωχός +δέ +πολύς +πλουτίζω +ὡς +μηδείς +ἔχω +καί +πᾶς +κατέχω +Κορίνθιος +ὁ +στόμα +ἐγώ +ἀνοίγω +πρός +σύ +ὁ +καρδία +ἐγώ +πλατύνω +οὐ +στενοχωρέω +ἐν +ἐγώ +δέ +στενοχωρέω +ἐν +ὁ +σπλάγχνον +σύ +δέ +ὁ +αὐτός +ἀντιμισθία +ὡς +τέκνον +λέγω +πλατύνω +καί +σύ +μή +γίνομαι +ἑτεροζυγέω +ἄπιστος +γάρ +τίς +μετοχή +δικαιοσύνη +καί +ἀνομία +ἤ +τίς +κοινωνία +φῶς +πρός +σκότος +δέ +τίς +συμφώνησις +Χριστός +πρός +Βελιάρ +ἤ +τίς +μερίς +πιστός +μετά +ἄπιστος +δέ +τίς +συγκατάθεσις +ναός +θεός +μετά +εἴδωλον +γάρ +ἐγώ +ναός +θεός +ζάω +εἰμί +καθώς +λέγω +ὁ +θεός +ὅτι +ἐνοικέω +ἐν +αὐτός +καί +ἐμπεριπατέω +καί +εἰμί +αὐτός +θεός +καί +αὐτός +εἰμί +ἐγώ +λαός +διό +ἐξέρχομαι +ἐκ +μέσος +αὐτός +καί +ἀφορίζω +καί +ἀκάθαρτος +μή +ἅπτω +λέγω +κύριος +κἀγώ +εἰσδέχομαι +σύ +καί +εἰμί +σύ +εἰς +πατήρ +καί +σύ +εἰμί +ἐγώ +εἰς +υἱός +καί +θυγάτηρ +λέγω +κύριος +παντοκράτωρ +οὖν +ἀγαπητός +ἔχω +οὗτος +ὁ +ἐπαγγελία +καθαρίζω +ἑαυτοῦ +ἀπό +πᾶς +μολυσμός +σάρξ +καί +πνεῦμα +ἐπιτελέω +ἁγιωσύνη +ἐν +φόβος +θεός +χωρέω +ἐγώ +οὐδείς +ἀδικέω +οὐδείς +φθείρω +οὐδείς +πλεονεκτέω +πρός +κατάκρισις +οὐ +λέγω +γάρ +προλέγω +ὅτι +ἐν +ὁ +καρδία +ἐγώ +εἰμί +εἰς +ὁ +συναποθνῄσκω +καί +συζάω +πολύς +ἐγώ +παρρησία +πρός +σύ +πολύς +ἐγώ +καύχησις +ὑπέρ +σύ +πληρόω +ὁ +παράκλησις +ὑπερπερισσεύω +ὁ +χαρά +ἐπί +πᾶς +ὁ +θλῖψις +ἐγώ +γάρ +καί +ἔρχομαι +ἐγώ +εἰς +Μακεδονία +οὐδείς +ἔχω +ἄνεσις +ὁ +σάρξ +ἐγώ +ἀλλά +ἐν +πᾶς +θλίβω +ἔξωθεν +μάχη +ἔσωθεν +φόβος +ἀλλά +ὁ +παρακαλέω +ὁ +ταπεινός +ὁ +θεός +παρακαλέω +ἐγώ +ἐν +ὁ +παρουσία +Τίτος +δέ +οὐ +μόνος +ἐν +ὁ +παρουσία +αὐτός +ἀλλά +καί +ἐν +ὁ +παράκλησις +ὅς +παρακαλέω +ἐπί +σύ +ἀναγγέλλω +ἐγώ +ὁ +σύ +ἐπιπόθησις +ὁ +σύ +ὀδυρμός +ὁ +σύ +ζῆλος +ὑπέρ +ἐγώ +ὥστε +ἐγώ +μᾶλλον +χαίρω +ὅτι +εἰ +καί +λυπέω +σύ +ἐν +ὁ +ἐπιστολή +οὐ +μεταμέλομαι +εἰ +καί +μεταμέλομαι +βλέπω +ὅτι +ὁ +ἐπιστολή +ἐκεῖνος +εἰ +καί +πρός +ὥρα +λυπέω +σύ +νῦν +χαίρω +οὐ +ὅτι +λυπέω +ἀλλά +ὅτι +λυπέω +εἰς +μετάνοια +γάρ +λυπέω +κατά +θεός +ἵνα +ἐν +μηδείς +ζημιόω +ἐκ +ἐγώ +γάρ +ὁ +κατά +θεός +λύπη +μετάνοια +εἰς +σωτηρία +ἀμεταμέλητος +ἐργάζομαι +δέ +ὁ +ὁ +κόσμος +λύπη +θάνατος +κατεργάζομαι +γάρ +ὁράω +αὐτός +οὗτος +ὁ +κατά +θεός +λυπέω +κατεργάζομαι +σύ +πόσος +σπουδή +ἀλλά +ἀπολογία +ἀλλά +ἀγανάκτησις +ἀλλά +φόβος +ἀλλά +ἐπιπόθησις +ἀλλά +ζῆλος +ἀλλά +ἐκδίκησις +ἐν +πᾶς +συνίστημι +ἑαυτοῦ +ἁγνός +εἰμί +ὁ +πρᾶγμα +ἄρα +εἰ +καί +γράφω +σύ +οὐ +ἕνεκα +ὁ +ἀδικέω +οὐδέ +ἕνεκα +ὁ +ἀδικέω +ἀλλά +ἕνεκα +ὁ +φανερόω +ὁ +σπουδή +σύ +ὁ +ὑπέρ +ἐγώ +πρός +σύ +ἐνώπιον +ὁ +θεός +διά +οὗτος +παρακαλέω +δέ +ἐπί +ὁ +παράκλησις +ἐγώ +περισσῶς +μᾶλλον +χαίρω +ἐπί +ὁ +χαρά +Τίτος +ὅτι +ἀναπαύω +ὁ +πνεῦμα +αὐτός +ἀπό +πᾶς +σύ +ὅτι +εἰ +τὶς +αὐτός +ὑπέρ +σύ +καυχάομαι +οὐ +καταισχύνω +ἀλλά +ὡς +πᾶς +ἐν +ἀλήθεια +λαλέω +σύ +οὕτω +καί +ὁ +καύχησις +ἐγώ +ἐπί +Τίτος +ἀλήθεια +γίνομαι +καί +ὁ +σπλάγχνον +αὐτός +περισσῶς +εἰς +σύ +εἰμί +ἀναμιμνῄσκω +ὁ +πᾶς +σύ +ὑπακοή +ὡς +μετά +φόβος +καί +τρόμος +δέχομαι +αὐτός +χαίρω +ὅτι +ἐν +πᾶς +θαρρέω +ἐν +σύ +δέ +ἀδελφός +γνωρίζω +σύ +ὁ +χάρις +ὁ +θεός +ὁ +δίδωμι +ἐν +ὁ +ἐκκλησία +ὁ +Μακεδονία +ὅτι +ἐν +πολύς +δοκιμή +θλῖψις +ὁ +περισσεία +ὁ +χαρά +αὐτός +καί +ὁ +κατά +βάθος +πτωχεία +αὐτός +περισσεύω +εἰς +ὁ +πλοῦτος +ὁ +ἁπλότης +αὐτός +μαρτυρέω +ὅτι +κατά +δύναμις +καί +παρά +δύναμις +αὐθαίρετος +μετά +πολύς +παράκλησις +δέομαι +ἐγώ +ὁ +χάρις +καί +ὁ +κοινωνία +ὁ +διακονία +ὁ +εἰς +ὁ +ἅγιος +καί +οὐ +καθώς +ἐλπίζω +ἀλλά +ἑαυτοῦ +δίδωμι +πρῶτος +ὁ +κύριος +καί +ἐγώ +διά +θέλημα +θεός +εἰς +ὁ +παρακαλέω +ἐγώ +Τίτος +ἵνα +καθώς +προενάρχομαι +οὕτω +καί +ἐπιτελέω +εἰς +σύ +καί +ὁ +χάρις +οὗτος +ἀλλά +ὥσπερ +ἐν +πᾶς +περισσεύω +πίστις +καί +λόγος +καί +γνῶσις +καί +πᾶς +σπουδή +καί +ὁ +ἐκ +ἐγώ +ἐν +σύ +ἀγάπη +ἵνα +καί +ἐν +οὗτος +ὁ +χάρις +περισσεύω +οὐ +κατά +ἐπιταγή +λέγω +ἀλλά +διά +ὁ +ἕτερος +σπουδή +καί +ὁ +ὁ +ὑμέτερος +ἀγάπη +γνήσιος +δοκιμάζω +γάρ +γινώσκω +ὁ +χάρις +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὅτι +διά +σύ +πτωχεύω +πλούσιος +εἰμί +ἵνα +σύ +ὁ +ἐκεῖνος +πτωχεία +πλουτέω +καί +γνώμη +ἐν +οὗτος +δίδωμι +γάρ +οὗτος +σύ +συμφέρω +ὅστις +οὐ +μόνος +ὁ +ποιέω +ἀλλά +καί +ὁ +θέλω +προενάρχομαι +ἀπό +πέρυσι +δέ +νυνί +καί +ὁ +ποιέω +ἐπιτελέω +ὅπως +καθάπερ +ὁ +προθυμία +ὁ +θέλω +οὕτω +καί +ὁ +ἐπιτελέω +ἐκ +ὁ +ἔχω +γάρ +εἰ +ὁ +προθυμία +πρόκειμαι +καθό +ἐάν +ἔχω +εὐπρόσδεκτος +οὐ +καθό +οὐ +ἔχω +γάρ +οὐ +ἵνα +ἄλλος +ἄνεσις +σύ +θλῖψις +ἀλλά +ἐκ +ἰσότης +ἐν +ὁ +νῦν +καιρός +ὁ +σύ +περίσσευμα +εἰς +ὁ +ἐκεῖνος +ὑστέρημα +ἵνα +καί +ὁ +ἐκεῖνος +περίσσευμα +γίνομαι +εἰς +ὁ +σύ +ὑστέρημα +ὅπως +γίνομαι +ἰσότης +καθώς +γράφω +ὁ +ὁ +πολύς +οὐ +πλεονάζω +καί +ὁ +ὁ +ὀλίγος +οὐ +ἐλαττονέω +δέ +χάρις +ὁ +θεός +ὁ +δίδωμι +ὁ +αὐτός +σπουδή +ὑπέρ +σύ +ἐν +ὁ +καρδία +Τίτος +ὅτι +μέν +ὁ +παράκλησις +δέχομαι +δέ +σπουδαῖος +ὑπάρχω +αὐθαίρετος +ἐξέρχομαι +πρός +σύ +δέ +συμπέμπω +μετά +αὐτός +ὁ +ἀδελφός +ὅς +ὁ +ἔπαινος +ἐν +ὁ +εὐαγγέλιον +διά +πᾶς +ὁ +ἐκκλησία +δέ +οὐ +μόνος +ἀλλά +καί +χειροτονέω +ὑπό +ὁ +ἐκκλησία +συνέκδημος +ἐγώ +ἐν +ὁ +χάρις +οὗτος +ὁ +διακονέω +ὑπό +ἐγώ +πρός +ὁ +αὐτός +ὁ +κύριος +δόξα +καί +προθυμία +ἐγώ +στέλλω +οὗτος +μή +τὶς +ἐγώ +μωμάομαι +ἐν +ὁ +ἁδρότης +οὗτος +ὁ +διακονέω +ὑπό +ἐγώ +γάρ +προνοέω +καλός +οὐ +μόνος +ἐνώπιον +κύριος +ἀλλά +καί +ἐνώπιον +ἄνθρωπος +δέ +συμπέμπω +αὐτός +ὁ +ἀδελφός +ἐγώ +ὅς +δοκιμάζω +ἐν +πολύς +πολλάκις +σπουδαῖος +εἰμί +δέ +νυνί +πολύς +σπουδαῖος +πεποίθησις +πολύς +ὁ +εἰς +σύ +εἴτε +ὑπέρ +Τίτος +κοινωνός +ἐμός +καί +εἰς +σύ +συνεργός +εἴτε +ἀδελφός +ἐγώ +ἀπόστολος +ἐκκλησία +δόξα +Χριστός +οὖν +ὁ +ἔνδειξις +ὁ +ἀγάπη +σύ +καί +ἐγώ +καύχησις +ὑπέρ +σύ +εἰς +αὐτός +ἐνδείκνυμι +εἰς +πρόσωπον +ὁ +ἐκκλησία +γάρ +μέν +περί +ὁ +διακονία +ὁ +εἰς +ὁ +ἅγιος +περισσός +ἐγώ +εἰμί +ὁ +γράφω +σύ +γάρ +οἶδα +ὁ +προθυμία +σύ +ὅς +ὑπέρ +σύ +καυχάομαι +Μακεδών +ὅτι +Ἀχαΐα +παρασκευάζω +ἀπό +πέρυσι +καί +ὁ +σύ +ζῆλος +ἐρεθίζω +ὁ +πολύς +δέ +πέμπω +ὁ +ἀδελφός +ἵνα +μή +ὁ +καύχημα +ἐγώ +ὁ +ὑπέρ +σύ +κενόω +ἐν +ὁ +μέρος +οὗτος +ἵνα +καθώς +λέγω +παρασκευάζω +εἰμί +μή +πῶς +ἐάν +ἔρχομαι +σύν +ἐγώ +Μακεδών +καί +εὑρίσκω +σύ +ἀπαρασκεύαστος +καταισχύνω +ἐγώ +ἵνα +μή +λέγω +σύ +ἐν +ὁ +ὑπόστασις +οὗτος +οὖν +ἀναγκαῖος +ἡγέομαι +παρακαλέω +ὁ +ἀδελφός +ἵνα +προέρχομαι +εἰς +σύ +καί +προκαταρτίζω +ὁ +προεπαγγέλλω +εὐλογία +σύ +οὗτος +ἕτοιμος +εἰμί +οὕτω +ὡς +εὐλογία +καί +μή +ὡς +πλεονεξία +δέ +οὗτος +ὁ +σπείρω +φειδομένως +φειδομένως +καί +θερίζω +καί +ὁ +σπείρω +ἐπί +εὐλογία +ἐπί +εὐλογία +καί +θερίζω +ἕκαστος +καθώς +προαιρέω +ὁ +καρδία +μή +ἐκ +λύπη +ἤ +ἐκ +ἀνάγκη +γάρ +ἱλαρός +δότης +ἀγαπάω +ὁ +θεός +δέ +δυνατέω +ὁ +θεός +πᾶς +χάρις +περισσεύω +εἰς +σύ +ἵνα +ἐν +πᾶς +πάντοτε +πᾶς +αὐτάρκεια +ἔχω +περισσεύω +εἰς +πᾶς +ἔργον +ἀγαθός +καθώς +γράφω +σκορπίζω +δίδωμι +ὁ +πένης +ὁ +δικαιοσύνη +αὐτός +μένω +εἰς +ὁ +αἰών +δέ +ὁ +ἐπιχορηγέω +σπέρμα +ὁ +σπείρω +καί +ἄρτος +εἰς +βρῶσις +χορηγέω +καί +πληθύνω +ὁ +σπόρος +σύ +καί +αὐξάνω +ὁ +γέννημα +ὁ +δικαιοσύνη +σύ +ἐν +πᾶς +πλουτίζω +εἰς +πᾶς +ἁπλότης +ὅστις +κατεργάζομαι +διά +ἐγώ +εὐχαριστία +ὁ +θεός +ὅτι +ὁ +διακονία +ὁ +λειτουργία +οὗτος +οὐ +μόνος +εἰμί +προσαναπληρόω +ὁ +ὑστέρημα +ὁ +ἅγιος +ἀλλά +καί +περισσεύω +διά +πολύς +εὐχαριστία +ὁ +θεός +διά +ὁ +δοκιμή +ὁ +διακονία +οὗτος +δοξάζω +ὁ +θεός +ἐπί +ὁ +ὑποταγή +ὁ +ὁμολογία +σύ +εἰς +ὁ +εὐαγγέλιον +ὁ +Χριστός +καί +ἁπλότης +ὁ +κοινωνία +εἰς +αὐτός +καί +εἰς +πᾶς +καί +αὐτός +δέησις +ὑπέρ +σύ +ἐπιποθέω +σύ +διά +ὁ +ὑπερβάλλω +χάρις +ὁ +θεός +ἐπί +σύ +χάρις +ὁ +θεός +ἐπί +ὁ +ἀνεκδιήγητος +αὐτός +δωρεά +δέ +αὐτός +ἐγώ +Παῦλος +παρακαλέω +σύ +διά +ὁ +πραΰτης +καί +ἐπιείκεια +ὁ +Χριστός +ὅς +μέν +κατά +πρόσωπον +ταπεινός +ἐν +σύ +δέ +ἄπειμι (I) +θαρρέω +εἰς +σύ +δέ +δέομαι +ὁ +μή +πάρειμι +θαρρέω +ὁ +πεποίθησις +ὅς +λογίζομαι +τολμάω +ἐπί +τὶς +ὁ +λογίζομαι +ἐγώ +ὡς +κατά +σάρξ +περιπατέω +γάρ +ἐν +σάρξ +περιπατέω +οὐ +κατά +σάρξ +στρατεύω +γάρ +ὁ +ὅπλον +ὁ +στρατεία +ἐγώ +οὐ +σαρκικός +ἀλλά +δυνατός +ὁ +θεός +πρός +καθαίρεσις +ὀχύρωμα +καθαιρέω +λογισμός +καί +πᾶς +ὕψωμα +ἐπαίρω +κατά +ὁ +γνῶσις +ὁ +θεός +καί +αἰχμαλωτίζω +πᾶς +νόημα +εἰς +ὁ +ὑπακοή +ὁ +Χριστός +καί +ἐν +ἕτοιμος +ἔχω +ἐκδικέω +πᾶς +παρακοή +ὅταν +πληρόω +σύ +ὁ +ὑπακοή +ὁ +κατά +πρόσωπον +βλέπω +εἰ +τὶς +πείθω +ἑαυτοῦ +Χριστός +εἰμί +οὗτος +λογίζομαι +πάλιν +ἐπί +ἑαυτοῦ +ὅτι +καθώς +αὐτός +Χριστός +οὕτω +καί +ἐγώ +γάρ +ἐάν +τέ +περισσός +τὶς +καυχάομαι +περί +ὁ +ἐξουσία +ἐγώ +ὅς +δίδωμι +ὁ +κύριος +εἰς +οἰκοδομή +καί +οὐ +εἰς +καθαίρεσις +σύ +οὐ +αἰσχύνω +ἵνα +μή +δοκέω +ὡς +ἄν +ἐκφοβέω +σύ +διά +ὁ +ἐπιστολή +ὅτι +φημί +μέν +ὁ +ἐπιστολή +βαρύς +καί +ἰσχυρός +δέ +ὁ +παρουσία +ὁ +σῶμα +ἀσθενής +καί +ὁ +λόγος +ἐξουθενέω +οὗτος +λογίζομαι +ὁ +τοιοῦτος +ὅτι +οἷος +εἰμί +ὁ +λόγος +διά +ἐπιστολή +ἄπειμι (I) +τοιοῦτος +καί +πάρειμι +ὁ +ἔργον +γάρ +οὐ +τολμάω +ἐγκρίνω +ἤ +συγκρίνω +ἑαυτοῦ +τὶς +ὁ +ἑαυτοῦ +συνίστημι +ἀλλά +αὐτός +ἐν +ἑαυτοῦ +ἑαυτοῦ +μετρέω +καί +συγκρίνω +ἑαυτοῦ +ἑαυτοῦ +οὐ +συνίημι +δέ +ἐγώ +οὐ +εἰς +ὁ +ἄμετρος +καυχάομαι +ἀλλά +κατά +ὁ +μέτρον +ὁ +κανών +ὅς +μερίζω +ἐγώ +ὁ +θεός +μέτρον +ἐφικνέομαι +ἄχρι +καί +σύ +γάρ +οὐ +ὡς +μή +ἐφικνέομαι +εἰς +σύ +ὑπερεκτείνω +ἑαυτοῦ +γάρ +ἄχρι +καί +σύ +φθάνω +ἐν +ὁ +εὐαγγέλιον +ὁ +Χριστός +οὐ +εἰς +ὁ +ἄμετρος +καυχάομαι +ἐν +ἀλλότριος +κόπος +δέ +ἐλπίς +ἔχω +αὐξάνω +ὁ +πίστις +σύ +ἐν +σύ +μεγαλύνω +κατά +ὁ +κανών +ἐγώ +εἰς +περισσεία +εἰς +ὁ +ὑπερέκεινα +σύ +εὐαγγελίζω +οὐ +ἐν +ἀλλότριος +κανών +εἰς +ὁ +ἕτοιμος +καυχάομαι +δέ +ὁ +καυχάομαι +ἐν +κύριος +καυχάομαι +γάρ +οὐ +ὁ +ἑαυτοῦ +συνίστημι +ἐκεῖνος +εἰμί +δόκιμος +ἀλλά +ὅς +ὁ +κύριος +συνίστημι +ὄφελον +ἀνέχω +ἐγώ +μικρός +τὶς +ἀφροσύνη +ἀλλά +καί +ἀνέχω +ἐγώ +γάρ +ζηλόω +σύ +θεός +ζῆλος +γάρ +ἁρμόζω +σύ +εἷς +ἀνήρ +παρθένος +ἁγνός +παρίστημι +ὁ +Χριστός +δέ +φοβέω +μή +πῶς +ὡς +ὁ +ὄφις +ἐξαπατάω +Εὕα +ἐν +ὁ +πανουργία +αὐτός +φθείρω +ὁ +νόημα +σύ +ἀπό +ὁ +ἁπλότης +καί +ὁ +ἁγνότης +ὁ +εἰς +Χριστός +γάρ +μέν +εἰ +ὁ +ἔρχομαι +κηρύσσω +ἄλλος +Ἰησοῦς +ὅς +οὐ +κηρύσσω +ἤ +λαμβάνω +πνεῦμα +ἕτερος +ὅς +οὐ +λαμβάνω +ἤ +εὐαγγέλιον +ἕτερος +ὅς +οὐ +δέχομαι +καλῶς +ἀνέχω +γάρ +λογίζομαι +μηδείς +ὑστερέω +ὁ +ὑπερλίαν +ἀπόστολος +δέ +εἰ +καί +ἰδιώτης +ὁ +λόγος +ἀλλά +οὐ +ὁ +γνῶσις +ἀλλά +ἐν +πᾶς +φανερόω +ἐν +πᾶς +εἰς +σύ +ἤ +ἁμαρτία +ποιέω +ἐμαυτοῦ +ταπεινόω +ἵνα +σύ +ὑψόω +ὅτι +δωρεάν +ὁ +ὁ +θεός +εὐαγγέλιον +εὐαγγελίζω +σύ +ἄλλος +ἐκκλησία +συλάω +λαμβάνω +ὀψώνιον +πρός +ὁ +σύ +διακονία +καί +πάρειμι +πρός +σύ +καί +ὑστερέω +οὐ +καταναρκάω +οὐδείς +γάρ +ὁ +ὑστέρημα +ἐγώ +προσαναπληρόω +ὁ +ἀδελφός +ἔρχομαι +ἀπό +Μακεδονία +καί +ἐν +πᾶς +ἀβαρής +ἐμαυτοῦ +σύ +τηρέω +καί +τηρέω +εἰμί +ἀλήθεια +Χριστός +ἐν +ἐγώ +ὅτι +ὁ +καύχησις +οὗτος +οὐ +φράσσω +εἰς +ἐγώ +ἐν +ὁ +κλίμα +ὁ +Ἀχαΐα +διά +τίς +ὅτι +οὐ +ἀγαπάω +σύ +ὁ +θεός +οἶδα +δέ +ὅς +ποιέω +καί +ποιέω +ἵνα +ἐκκόπτω +ὁ +ἀφορμή +ὁ +θέλω +ἀφορμή +ἵνα +ἐν +ὅς +καυχάομαι +εὑρίσκω +καθώς +καί +ἐγώ +γάρ +ὁ +τοιοῦτος +ψευδαπόστολος +ἐργάτης +δόλιος +μετασχηματίζω +εἰς +ἀπόστολος +Χριστός +καί +οὐ +θαῦμα +γάρ +αὐτός +ὁ +Σατανᾶς +μετασχηματίζω +εἰς +ἄγγελος +φῶς +οὖν +οὐ +μέγας +εἰ +καί +ὁ +διάκονος +αὐτός +μετασχηματίζω +ὡς +διάκονος +δικαιοσύνη +ὅς +ὁ +τέλος +εἰμί +κατά +ὁ +ἔργον +αὐτός +πάλιν +λέγω +μή +τὶς +δοκέω +ἐγώ +ἄφρων +εἰμί +δέ +εἰ +εἰ δὲ μή +κἄν +ὡς +ἄφρων +δέχομαι +ἐγώ +ἵνα +κἀγώ +μικρός +τὶς +καυχάομαι +ὅς +λαλέω +οὐ +κατά +κύριος +λαλέω +ἀλλά +ὡς +ἐν +ἀφροσύνη +ἐν +οὗτος +ὁ +ὑπόστασις +ὁ +καύχησις +ἐπεί +πολύς +καυχάομαι +κατά +ὁ +σάρξ +κἀγώ +καυχάομαι +γάρ +ἡδέως +ἀνέχω +ὁ +ἄφρων +φρόνιμος +εἰμί +γάρ +ἀνέχω +εἰ +τὶς +σύ +καταδουλόω +εἰ +τὶς +κατεσθίω +εἰ +τὶς +λαμβάνω +εἰ +τὶς +ἐπαίρω +εἰ +τὶς +εἰς +πρόσωπον +σύ +δέρω +κατά +ἀτιμία +λέγω +ὡς +ὅτι +ἐγώ +ἀσθενέω +δέ +ἄν +ἐν +ὅς +τὶς +τολμάω +ἐν +ἀφροσύνη +λέγω +τολμάω +κἀγώ +Ἑβραῖος +εἰμί +κἀγώ +Ἰσραηλίτης +εἰμί +κἀγώ +σπέρμα +Ἀβραάμ +εἰμί +κἀγώ +διάκονος +Χριστός +εἰμί +παραφρονέω +λαλέω +ὑπέρ +ἐγώ +ἐν +κόπος +περισσῶς +ἐν +φυλακή +περισσῶς +ἐν +πληγή +ὑπερβαλλόντως +ἐν +θάνατος +πολλάκις +ὑπό +Ἰουδαῖος +πεντάκις +τεσσεράκοντα +παρά +εἷς +λαμβάνω +τρίς +ῥαβδίζω +ἅπαξ +λιθάζω +τρίς +ναυαγέω +νυχθήμερον +ἐν +ὁ +βυθός +ποιέω +ὁδοιπορία +πολλάκις +κίνδυνος +ποταμός +κίνδυνος +λῃστής +κίνδυνος +ἐκ +γένος +κίνδυνος +ἐκ +ἔθνος +κίνδυνος +ἐν +πόλις +κίνδυνος +ἐν +ἐρημία +κίνδυνος +ἐν +θάλασσα +κίνδυνος +ἐν +ψευδάδελφος +κόπος +καί +μόχθος +ἐν +ἀγρυπνία +πολλάκις +ἐν +λιμός +καί +δίψος +ἐν +νηστεία +πολλάκις +ἐν +ψῦχος +καί +γυμνότης +χωρίς +ὁ +παρεκτός +ὁ +ἐπίστασις +ἐγώ +ὁ +κατά +ἡμέρα +ὁ +μέριμνα +πᾶς +ὁ +ἐκκλησία +τίς +ἀσθενέω +καί +οὐ +ἀσθενέω +τίς +σκανδαλίζω +καί +οὐ +ἐγώ +πυρόω +εἰ +καυχάομαι +δεῖ +ὁ +ὁ +ἀσθένεια +ἐγώ +καυχάομαι +ὁ +θεός +καί +πατήρ +ὁ +κύριος +Ἰησοῦς +ὁ +εἰμί +εὐλογητός +εἰς +ὁ +αἰών +οἶδα +ὅτι +οὐ +ψεύδομαι +ἐν +Δαμασκός +ὁ +ἐθνάρχης +Ἁρέτας +ὁ +βασιλεύς +φρουρέω +ὁ +πόλις +Δαμασκηνός +πιάζω +ἐγώ +καί +διά +θυρίς +ἐν +σαργάνη +χαλάω +διά +ὁ +τεῖχος +καί +ἐκφεύγω +ὁ +χείρ +αὐτός +καυχάομαι +δεῖ +μέν +οὐ +συμφέρω +δέ +ἔρχομαι +εἰς +ὀπτασία +καί +ἀποκάλυψις +κύριος +οἶδα +ἄνθρωπος +ἐν +Χριστός +εἴτε +ἐν +σῶμα +οὐ +οἶδα +εἴτε +ἐκτός +ὁ +σῶμα +οὐ +οἶδα +ὁ +θεός +οἶδα +πρό +ἔτος +δεκατέσσαρες +ἁρπάζω +ὁ +τοιοῦτος +ἕως +τρίτος +οὐρανός +καί +οἶδα +ὁ +τοιοῦτος +ἄνθρωπος +εἴτε +ἐν +σῶμα +εἴτε +χωρίς +ὁ +σῶμα +οὐ +οἶδα +ὁ +θεός +οἶδα +ὅτι +ἁρπάζω +εἰς +ὁ +παράδεισος +καί +ἀκούω +ἄρρητος +ῥῆμα +ὅς +λαλέω +οὐ +ἔξεστι(ν) +ἄνθρωπος +ὑπέρ +ὁ +τοιοῦτος +καυχάομαι +δέ +ὑπέρ +ἐμαυτοῦ +οὐ +καυχάομαι +εἰ +μή +ἐν +ὁ +ἀσθένεια +γάρ +ἐάν +θέλω +καυχάομαι +οὐ +εἰμί +ἄφρων +γάρ +ἀλήθεια +εἶπον +δέ +φείδομαι +μή +τὶς +εἰς +ἐγώ +λογίζομαι +ὑπέρ +ὅς +βλέπω +ἐγώ +ἤ +ἀκούω +ἐκ +ἐγώ +καί +ὁ +ὑπερβολή +ὁ +ἀποκάλυψις +διό +ἵνα +μή +ὑπεραίρω +δίδωμι +ἐγώ +σκόλοψ +ὁ +σάρξ +ἄγγελος +Σατανᾶς +ἵνα +ἐγώ +κολαφίζω +ἵνα +μή +ὑπεραίρω +ὑπέρ +οὗτος +τρίς +ὁ +κύριος +παρακαλέω +ἵνα +ἀφίστημι +ἀπό +ἐγώ +καί +εἶπον +ἐγώ +ἀρκέω +σύ +ὁ +χάρις +ἐγώ +γάρ +ὁ +δύναμις +ἐν +ἀσθένεια +τελέω +οὖν +ἡδέως +μᾶλλον +καυχάομαι +ἐν +ὁ +ἀσθένεια +ἵνα +ἐπισκηνόω +ἐπί +ἐγώ +ὁ +δύναμις +ὁ +Χριστός +διό +εὐδοκέω +ἐν +ἀσθένεια +ἐν +ὕβρις +ἐν +ἀνάγκη +ἐν +διωγμός +καί +στενοχωρία +ὑπέρ +Χριστός +γάρ +ὅταν +ἀσθενέω +τότε +δυνατός +εἰμί +γίνομαι +ἄφρων +σύ +ἐγώ +ἀναγκάζω +γάρ +ἐγώ +ὀφείλω +ὑπό +σύ +συνίστημι +γάρ +οὐδείς +ὑστερέω +ὁ +ὑπερλίαν +ἀπόστολος +εἰ +καί +οὐδείς +εἰμί +μέν +ὁ +σημεῖον +ὁ +ἀπόστολος +κατεργάζομαι +ἐν +σύ +ἐν +πᾶς +ὑπομονή +τέ +σημεῖον +καί +τέρας +καί +δύναμις +γάρ +τίς +εἰμί +ὅς +ἡσσάομαι +ὑπέρ +ὁ +λοιπός +ἐκκλησία +εἰ +μή +ὅτι +αὐτός +ἐγώ +οὐ +καταναρκάω +σύ +χαρίζομαι +ἐγώ +ὁ +ἀδικία +οὗτος +ὁράω +τρίτος +οὗτος +ἑτοίμως +ἔχω +ἔρχομαι +πρός +σύ +καί +οὐ +καταναρκάω +γάρ +οὐ +ζητέω +ὁ +σύ +ἀλλά +σύ +γάρ +οὐ +ὀφείλω +ὁ +τέκνον +ὁ +γονεύς +θησαυρίζω +ἀλλά +ὁ +γονεύς +ὁ +τέκνον +δέ +ἐγώ +ἡδέως +δαπανάω +καί +ἐκδαπανάω +ὑπέρ +ὁ +ψυχή +σύ +εἰ +περισσῶς +σύ +ἀγαπάω +ἥσσων +ἀγαπάω +δέ +εἰμί +ἐγώ +οὐ +καταβαρέω +σύ +ἀλλά +ὑπάρχω +πανοῦργος +δόλος +σύ +λαμβάνω +μή +τὶς +ὅς +ἀποστέλλω +πρός +σύ +διά +αὐτός +πλεονεκτέω +σύ +παρακαλέω +Τίτος +καί +συναποστέλλω +ὁ +ἀδελφός +μήτι +πλεονεκτέω +σύ +Τίτος +οὐ +ὁ +αὐτός +πνεῦμα +περιπατέω +οὐ +ὁ +αὐτός +ἴχνος +πάλαι +δοκέω +ὅτι +σύ +ἀπολογέομαι +κατέναντι +θεός +ἐν +Χριστός +λαλέω +δέ +ἀγαπητός +ὁ +πᾶς +ὑπέρ +ὁ +σύ +οἰκοδομή +γάρ +φοβέω +μή +πῶς +ἔρχομαι +οὐ +οἷος +θέλω +εὑρίσκω +σύ +κἀγώ +εὑρίσκω +σύ +οἷος +οὐ +θέλω +μή +πῶς +ἔρις +ζῆλος +θυμός +ἐριθεία +καταλαλιά +ψιθυρισμός +φυσίωσις +ἀκαταστασία +μή +πάλιν +ἔρχομαι +ἐγώ +ταπεινόω +ἐγώ +ὁ +θεός +ἐγώ +πρός +σύ +καί +πενθέω +πολύς +ὁ +προαμαρτάνω +καί +μή +μετανοέω +ἐπί +ὁ +ἀκαθαρσία +καί +πορνεία +καί +ἀσέλγεια +ὅς +πράσσω +τρίτος +οὗτος +ἔρχομαι +πρός +σύ +ἐπί +στόμα +δύο +μάρτυς +καί +τρεῖς +ἵστημι +πᾶς +ῥῆμα +προλέγω +καί +προλέγω +ὡς +πάρειμι +ὁ +δεύτερος +καί +ἄπειμι (I) +νῦν +ὁ +προαμαρτάνω +καί +ὁ +λοιπός +πᾶς +ὅτι +ἐάν +ἔρχομαι +εἰς +ὁ +πάλιν +οὐ +φείδομαι +ἐπεί +ζητέω +δοκιμή +ὁ +ἐν +ἐγώ +λαλέω +Χριστός +ὅς +εἰς +σύ +οὐ +ἀσθενέω +ἀλλά +δυνατέω +ἐν +σύ +γάρ +καί +σταυρόω +ἐκ +ἀσθένεια +ἀλλά +ζάω +ἐκ +δύναμις +θεός +γάρ +καί +ἐγώ +ἀσθενέω +ἐν +αὐτός +ἀλλά +ζάω +σύν +αὐτός +ἐκ +δύναμις +θεός +εἰς +σύ +ἑαυτοῦ +πειράζω +εἰ +εἰμί +ἐν +ὁ +πίστις +ἑαυτοῦ +δοκιμάζω +ἤ +οὐ +ἐπιγινώσκω +ἑαυτοῦ +ὅτι +Ἰησοῦς +Χριστός +ἐν +σύ +εἰ +μήτι +ἀδόκιμος +εἰμί +δέ +ἐλπίζω +ὅτι +γινώσκω +ὅτι +ἐγώ +οὐ +εἰμί +ἀδόκιμος +δέ +εὔχομαι +πρός +ὁ +θεός +μή +ποιέω +σύ +κακός +μηδείς +οὐ +ἵνα +ἐγώ +δόκιμος +φαίνω +ἀλλά +ἵνα +σύ +ὁ +καλός +ποιέω +δέ +ἐγώ +ὡς +ἀδόκιμος +εἰμί +γάρ +οὐ +δύναμαι +τὶς +κατά +ὁ +ἀλήθεια +ἀλλά +ὑπέρ +ὁ +ἀλήθεια +γάρ +χαίρω +ὅταν +ἐγώ +ἀσθενέω +δέ +σύ +δυνατός +εἰμί +καί +εὔχομαι +οὗτος +ὁ +σύ +κατάρτισις +διά +οὗτος +οὗτος +ἄπειμι (I) +γράφω +ἵνα +πάρειμι +μή +ἀποτόμως +χράομαι +κατά +ὁ +ἐξουσία +ὅς +ὁ +κύριος +δίδωμι +ἐγώ +εἰς +οἰκοδομή +καί +οὐ +εἰς +καθαίρεσις +ἀδελφός +λοιπός +χαίρω +καταρτίζω +παρακαλέω +ὁ +αὐτός +φρονέω +εἰρηνεύω +καί +ὁ +θεός +ὁ +ἀγάπη +καί +εἰρήνη +εἰμί +μετά +σύ +ἀσπάζομαι +ἀλλήλων +ἐν +ἅγιος +φίλημα +ἀσπάζομαι +σύ +ὁ +ἅγιος +πᾶς +ὁ +χάρις +ὁ +κύριος +Ἰησοῦς +Χριστός +καί +ὁ +ἀγάπη +ὁ +θεός +καί +ὁ +κοινωνία +ὁ +ἅγιος +πνεῦμα +μετά +πᾶς +σύ +Παῦλος +ἀπόστολος +οὐ +ἀπό +ἄνθρωπος +οὐδέ +διά +ἄνθρωπος +ἀλλά +διά +Ἰησοῦς +Χριστός +καί +θεός +πατήρ +ὁ +ἐγείρω +αὐτός +ἐκ +νεκρός +καί +ὁ +σύν +ἐγώ +πᾶς +ἀδελφός +ὁ +ἐκκλησία +ὁ +Γαλατία +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +ὁ +δίδωμι +ἑαυτοῦ +ὑπέρ +ὁ +ἁμαρτία +ἐγώ +ὅπως +ἐξαιρέω +ἐγώ +ἐκ +ὁ +αἰών +ὁ +ἐνίστημι +πονηρός +κατά +ὁ +θέλημα +ὁ +θεός +καί +πατήρ +ἐγώ +ὅς +ὁ +δόξα +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +θαυμάζω +ὅτι +οὕτω +ταχέως +μετατίθημι +ἀπό +ὁ +καλέω +σύ +ἐν +χάρις +Χριστός +εἰς +ἕτερος +εὐαγγέλιον +ὅς +οὐ +εἰμί +ἄλλος +εἰ +μή +τὶς +εἰμί +ὁ +ταράσσω +σύ +καί +θέλω +μεταστρέφω +ὁ +εὐαγγέλιον +ὁ +Χριστός +ἀλλά +καί +ἐάν +ἐγώ +ἤ +ἄγγελος +ἐκ +οὐρανός +εὐαγγελίζω +σύ +παρά +ὅς +εὐαγγελίζω +σύ +ἀνάθεμα +εἰμί +ὡς +προλέγω +καί +ἄρτι +πάλιν +λέγω +εἰ +τὶς +σύ +εὐαγγελίζω +παρά +ὅς +παραλαμβάνω +ἀνάθεμα +εἰμί +γάρ +ἄρτι +πείθω +ἄνθρωπος +ἤ +ὁ +θεός +ἤ +ζητέω +ἄνθρωπος +ἀρέσκω +εἰ +ἔτι +ἄνθρωπος +ἀρέσκω +ἄν +Χριστός +δοῦλος (II) +οὐ +εἰμί +γάρ +ἀδελφός +γνωρίζω +σύ +ὁ +εὐαγγέλιον +ὁ +εὐαγγελίζω +ὑπό +ἐγώ +ὅτι +οὐ +εἰμί +κατά +ἄνθρωπος +γάρ +οὐδέ +ἐγώ +παρά +ἄνθρωπος +παραλαμβάνω +αὐτός +οὔτε +διδάσκω +ἀλλά +διά +ἀποκάλυψις +Ἰησοῦς +Χριστός +γάρ +ἀκούω +ὁ +ἐμός +ἀναστροφή +ποτέ +ἐν +ὁ +Ἰουδαϊσμός +ὅτι +κατά +ὑπερβολή +διώκω +ὁ +ἐκκλησία +ὁ +θεός +καί +πορθέω +αὐτός +καί +προκόπτω +ἐν +ὁ +Ἰουδαϊσμός +ὑπέρ +πολύς +συνηλικιώτης +ἐν +ὁ +γένος +ἐγώ +περισσῶς +ὑπάρχω +ζηλωτής +ὁ +πατρικός +ἐγώ +παράδοσις +δέ +ὅτε +εὐδοκέω +ὁ +ἀφορίζω +ἐγώ +ἐκ +κοιλία +μήτηρ +ἐγώ +καί +καλέω +διά +ὁ +χάρις +αὐτός +ἀποκαλύπτω +ὁ +υἱός +αὐτός +ἐν +ἐγώ +ἵνα +εὐαγγελίζω +αὐτός +ἐν +ὁ +ἔθνος +εὐθέως +οὐ +προσανατίθημι +σάρξ +καί +αἷμα +οὐδέ +ἀνέρχομαι +εἰς +Ἱεροσόλυμα +πρός +ὁ +πρό +ἐγώ +ἀπόστολος +ἀλλά +ἀπέρχομαι +εἰς +Ἀραβία +καί +πάλιν +ὑποστρέφω +εἰς +Δαμασκός +ἔπειτα +μετά +τρεῖς +ἔτος +ἀνέρχομαι +εἰς +Ἱεροσόλυμα +ἱστορέω +Κηφᾶς +καί +ἐπιμένω +πρός +αὐτός +ἡμέρα +δεκαπέντε +δέ +ἕτερος +ὁ +ἀπόστολος +οὐ +ὁράω +εἰ +μή +Ἰάκωβος +ὁ +ἀδελφός +ὁ +κύριος +δέ +ὅς +γράφω +σύ +ὁράω +ἐνώπιον +ὁ +θεός +ὅτι +οὐ +ψεύδομαι +ἔπειτα +ἔρχομαι +εἰς +ὁ +κλίμα +ὁ +Συρία +καί +ὁ +Κιλικία +δέ +εἰμί +ἀγνοέω +ὁ +πρόσωπον +ὁ +ἐκκλησία +ὁ +Ἰουδαία +ὁ +ἐν +Χριστός +δέ +μόνος +ἀκούω +εἰμί +ὅτι +ὁ +διώκω +ἐγώ +ποτέ +νῦν +εὐαγγελίζω +ὁ +πίστις +ὅς +ποτέ +πορθέω +καί +δοξάζω +ἐν +ἐγώ +ὁ +θεός +ἔπειτα +διά +δεκατέσσαρες +ἔτος +πάλιν +ἀναβαίνω +εἰς +Ἱεροσόλυμα +μετά +Βαρναβᾶς +συμπαραλαμβάνω +καί +Τίτος +δέ +ἀναβαίνω +κατά +ἀποκάλυψις +καί +ἀνατίθημι +αὐτός +ὁ +εὐαγγέλιον +ὅς +κηρύσσω +ἐν +ὁ +ἔθνος +δέ +κατά +ἴδιος +ὁ +δοκέω +μή +πῶς +εἰς +κενός +τρέχω +ἤ +τρέχω +ἀλλά +οὐδέ +Τίτος +ὁ +σύν +ἐγώ +Ἕλλην +εἰμί +ἀναγκάζω +περιτέμνω +δέ +διά +ὁ +παρείσακτος +ψευδάδελφος +ὅστις +παρεισέρχομαι +κατασκοπέω +ὁ +ἐλευθερία +ἐγώ +ὅς +ἔχω +ἐν +Χριστός +Ἰησοῦς +ἵνα +ἐγώ +καταδουλόω +ὅς +οὐδέ +πρός +ὥρα +εἴκω +ὁ +ὑποταγή +ἵνα +ὁ +ἀλήθεια +ὁ +εὐαγγέλιον +διαμένω +πρός +σύ +δέ +ἀπό +ὁ +δοκέω +εἰμί +τὶς +ὁποῖος +ποτέ +εἰμί +οὐδείς +ἐγώ +διαφέρω +πρόσωπον +ἄνθρωπος +ὁ +θεός +οὐ +λαμβάνω +γάρ +ἐγώ +ὁ +δοκέω +οὐδείς +προσανατίθημι +ἀλλά +τὸ ἐναντίον +ὁράω +ὅτι +πιστεύω +ὁ +εὐαγγέλιον +ὁ +ἀκροβυστία +καθώς +Πέτρος +ὁ +περιτομή +γάρ +ὁ +ἐνεργέω +Πέτρος +εἰς +ἀποστολή +ὁ +περιτομή +ἐνεργέω +καί +ἐγώ +εἰς +ὁ +ἔθνος +καί +γινώσκω +ὁ +χάρις +ὁ +δίδωμι +ἐγώ +Ἰάκωβος +καί +Κηφᾶς +καί +Ἰωάννης +ὁ +δοκέω +στῦλος +εἰμί +δεξιός +κοινωνία +δίδωμι +ἐγώ +καί +Βαρναβᾶς +ἵνα +ἐγώ +εἰς +ὁ +ἔθνος +δέ +αὐτός +εἰς +ὁ +περιτομή +μόνος +ἵνα +ὁ +πτωχός +μνημονεύω +ὅς +καί +σπουδάζω +αὐτός +οὗτος +ποιέω +δέ +ὅτε +ἔρχομαι +Κηφᾶς +εἰς +Ἀντιόχεια +κατά +πρόσωπον +αὐτός +ἀνθίστημι +ὅτι +καταγινώσκω +εἰμί +γάρ +πρό +ὁ +ἔρχομαι +τὶς +ἀπό +Ἰάκωβος +μετά +ὁ +ἔθνος +συνεσθίω +δέ +ὅτε +ἔρχομαι +ὑποστέλλω +καί +ἀφορίζω +ἑαυτοῦ +φοβέω +ὁ +ἐκ +περιτομή +καί +συνυποκρίνομαι +αὐτός +καί +ὁ +λοιπός +Ἰουδαῖος +ὥστε +καί +Βαρναβᾶς +συναπάγω +αὐτός +ὁ +ὑπόκρισις +ἀλλά +ὅτε +ὁράω +ὅτι +οὐ +ὀρθοποδέω +πρός +ὁ +ἀλήθεια +ὁ +εὐαγγέλιον +λέγω +ὁ +Κηφᾶς +ἔμπροσθεν +πᾶς +εἰ +σύ +Ἰουδαῖος +ὑπάρχω +ἐθνικῶς +καί +οὐ +Ἰουδαϊκῶς +ζάω +πῶς +ἀναγκάζω +ὁ +ἔθνος +Ἰουδαΐζω +ἐγώ +φύσις +Ἰουδαῖος +καί +οὐ +ἐκ +ἔθνος +ἁμαρτωλός +δέ +οἶδα +ὅτι +οὐ +δικαιόω +ἄνθρωπος +ἐκ +ἔργον +νόμος +ἐάν +μή +διά +πίστις +Χριστός +Ἰησοῦς +καί +ἐγώ +εἰς +Χριστός +Ἰησοῦς +πιστεύω +ἵνα +δικαιόω +ἐκ +πίστις +Χριστός +καί +οὐ +ἐκ +ἔργον +νόμος +ὅτι +ἐκ +ἔργον +νόμος +οὐ +δικαιόω +πᾶς +σάρξ +δέ +εἰ +ζητέω +δικαιόω +ἐν +Χριστός +εὑρίσκω +καί +αὐτός +ἁμαρτωλός +ἆρα +Χριστός +ἁμαρτία +διάκονος +μή +γίνομαι +γάρ +εἰ +ὅς +καταλύω +οὗτος +πάλιν +οἰκοδομέω +παραβάτης +ἐμαυτοῦ +συνίστημι +γάρ +ἐγώ +διά +νόμος +νόμος +ἀποθνῄσκω +ἵνα +θεός +ζάω +Χριστός +συσταυρόω +δέ +ζάω +οὐκέτι +ἐγώ +δέ +ζάω +ἐν +ἐγώ +Χριστός +δέ +ὅς +νῦν +ζάω +ἐν +σάρξ +ζάω +ἐν +πίστις +ὁ +ὁ +υἱός +ὁ +θεός +ὁ +ἀγαπάω +ἐγώ +καί +παραδίδωμι +ἑαυτοῦ +ὑπέρ +ἐγώ +οὐ +ἀθετέω +ὁ +χάρις +ὁ +θεός +γάρ +εἰ +διά +νόμος +δικαιοσύνη +ἄρα +Χριστός +δωρεάν +ἀποθνῄσκω +ὦ +ἀνόητος +Γαλάτης +τίς +σύ +βασκαίνω +ὅς +κατά +ὀφθαλμός +Ἰησοῦς +Χριστός +προγράφω +σταυρόω +θέλω +οὗτος +μόνος +μανθάνω +ἀπό +σύ +ὁ +πνεῦμα +λαμβάνω +ἐκ +ἔργον +νόμος +ἤ +ἐκ +ἀκοή +πίστις +οὕτω +ἀνόητος +εἰμί +ἐνάρχομαι +πνεῦμα +νῦν +σάρξ +ἐπιτελέω +τοσοῦτος +πάσχω +εἰκῇ +εἰ +γέ +καί +εἰκῇ +οὖν +ὁ +ἐπιχορηγέω +σύ +ὁ +πνεῦμα +καί +ἐνεργέω +δύναμις +ἐν +σύ +ἐκ +ἔργον +νόμος +ἤ +ἐκ +ἀκοή +πίστις +καθώς +Ἀβραάμ +πιστεύω +ὁ +θεός +καί +λογίζομαι +αὐτός +εἰς +δικαιοσύνη +ἄρα +γινώσκω +ὅτι +ὁ +ἐκ +πίστις +οὗτος +υἱός +Ἀβραάμ +εἰμί +δέ +ὁ +γραφή +προοράω +ὅτι +ἐκ +πίστις +δικαιόω +ὁ +ἔθνος +ὁ +θεός +προευαγγελίζομαι +ὁ +Ἀβραάμ +ὅτι +ἐνευλογέω +ἐν +σύ +πᾶς +ὁ +ἔθνος +ὥστε +ὁ +ἐκ +πίστις +εὐλογέω +σύν +ὁ +πιστός +Ἀβραάμ +γάρ +ὅσος +ἐκ +ἔργον +νόμος +εἰμί +ὑπό +κατάρα +εἰμί +γάρ +γράφω +ὅτι +ἐπικατάρατος +πᾶς +ὅς +οὐ +ἐμμένω +πᾶς +ὁ +γράφω +ἐν +ὁ +βιβλίον +ὁ +νόμος +ὁ +ποιέω +αὐτός +δέ +ὅτι +ἐν +νόμος +οὐδείς +δικαιόω +παρά +ὁ +θεός +δῆλος +ὅτι +ὁ +δίκαιος +ἐκ +πίστις +ζάω +δέ +ὁ +νόμος +οὐ +εἰμί +ἐκ +πίστις +ἀλλά +ὁ +ποιέω +αὐτός +ζάω +ἐν +αὐτός +Χριστός +ἐγώ +ἐξαγοράζω +ἐκ +ὁ +κατάρα +ὁ +νόμος +γίνομαι +ὑπέρ +ἐγώ +κατάρα +ὅτι +γράφω +ἐπικατάρατος +πᾶς +ὁ +κρεμάννυμι +ἐπί +ξύλον +ἵνα +εἰς +ὁ +ἔθνος +ὁ +εὐλογία +ὁ +Ἀβραάμ +γίνομαι +ἐν +Ἰησοῦς +Χριστός +ἵνα +ὁ +ἐπαγγελία +ὁ +πνεῦμα +λαμβάνω +διά +ὁ +πίστις +ἀδελφός +κατά +ἄνθρωπος +λέγω +ὅμως +ἄνθρωπος +κυρόω +διαθήκη +οὐδείς +ἀθετέω +ἤ +ἐπιδιατάσσομαι +δέ +εἶπον +ὁ +ἐπαγγελία +ὁ +Ἀβραάμ +καί +ὁ +σπέρμα +αὐτός +οὐ +λέγω +καί +ὁ +σπέρμα +ὡς +ἐπί +πολύς +ἀλλά +ὡς +ἐπί +εἷς +καί +ὁ +σπέρμα +σύ +ὅς +εἰμί +Χριστός +δέ +οὗτος +λέγω +διαθήκη +προκυρόω +ὑπό +ὁ +θεός +ὁ +μετά +τετρακόσιοι +καί +τριάκοντα +ἔτος +γίνομαι +νόμος +οὐ +ἀκυρόω +εἰς +ὁ +καταργέω +ὁ +ἐπαγγελία +γάρ +εἰ +ἐκ +νόμος +ὁ +κληρονομία +οὐκέτι +ἐκ +ἐπαγγελία +δέ +ὁ +Ἀβραάμ +διά +ἐπαγγελία +χαρίζομαι +ὁ +θεός +οὖν +τίς +ὁ +νόμος +ὁ +παράβασις +χάριν +προστίθημι +ἄχρι +ἄν +ἔρχομαι +ὁ +σπέρμα +ὅς +ἐπαγγέλλομαι +διατάσσω +διά +ἄγγελος +ἐν +χείρ +μεσίτης +δέ +ὁ +μεσίτης +εἷς +οὐ +εἰμί +δέ +ὁ +θεός +εἷς +εἰμί +οὖν +ὁ +νόμος +κατά +ὁ +ἐπαγγελία +ὁ +θεός +μή +γίνομαι +γάρ +εἰ +δίδωμι +νόμος +ὁ +δύναμαι +ζῳοποιέω +ἄν +ὄντως +ἐκ +νόμος +εἰμί +ὁ +δικαιοσύνη +ἀλλά +συγκλείω +ὁ +γραφή +ὁ +πᾶς +ὑπό +ἁμαρτία +ἵνα +ὁ +ἐπαγγελία +ἐκ +πίστις +Ἰησοῦς +Χριστός +δίδωμι +ὁ +πιστεύω +δέ +πρό +ὁ +ἔρχομαι +ὁ +πίστις +ὑπό +νόμος +φρουρέω +συγκλείω +εἰς +ὁ +μέλλω +ἀποκαλύπτω +πίστις +ὥστε +ὁ +νόμος +παιδαγωγός +ἐγώ +γίνομαι +εἰς +Χριστός +ἵνα +ἐκ +πίστις +δικαιόω +δέ +ἔρχομαι +ὁ +πίστις +οὐκέτι +ὑπό +παιδαγωγός +εἰμί +γάρ +πᾶς +υἱός +θεός +εἰμί +διά +ὁ +πίστις +ἐν +Χριστός +Ἰησοῦς +γάρ +ὅσος +εἰς +Χριστός +βαπτίζω +Χριστός +ἐνδύω +οὐ +ἔνι +Ἰουδαῖος +οὐδέ +Ἕλλην +οὐ +ἔνι +δοῦλος (II) +οὐδέ +ἐλεύθερος +οὐ +ἔνι +ἄρσην +καί +θῆλυς +γάρ +πᾶς +σύ +εἷς +εἰμί +ἐν +Χριστός +Ἰησοῦς +δέ +εἰ +σύ +Χριστός +ἄρα +ὁ +Ἀβραάμ +σπέρμα +εἰμί +κατά +ἐπαγγελία +κληρονόμος +δέ +λέγω +ἐπί +ὅσος +χρόνος +ὁ +κληρονόμος +νήπιος +εἰμί +οὐδείς +διαφέρω +δοῦλος (II) +κύριος +πᾶς +εἰμί +ἀλλά +ὑπό +ἐπίτροπος +καί +οἰκονόμος +εἰμί +ἄχρι +ὁ +προθεσμία +ὁ +πατήρ +οὕτω +καί +ἐγώ +ὅτε +εἰμί +νήπιος +ὑπό +ὁ +στοιχεῖον +ὁ +κόσμος +εἰμί +δουλόω +δέ +ὅτε +ἔρχομαι +ὁ +πλήρωμα +ὁ +χρόνος +ἐξαποστέλλω +ὁ +θεός +ὁ +υἱός +αὐτός +γίνομαι +ἐκ +γυνή +γίνομαι +ὑπό +νόμος +ἵνα +ὁ +ὑπό +νόμος +ἐξαγοράζω +ἵνα +ὁ +υἱοθεσία +ἀπολαμβάνω +δέ +ὅτι +εἰμί +υἱός +ἐξαποστέλλω +ὁ +θεός +ὁ +πνεῦμα +ὁ +υἱός +αὐτός +εἰς +ὁ +καρδία +ἐγώ +κράζω +ἀββά +ὁ +πατήρ +ὥστε +εἰμί +οὐκέτι +δοῦλος (II) +ἀλλά +υἱός +δέ +εἰ +υἱός +καί +κληρονόμος +διά +θεός +ἀλλά +μέν +τότε +οὐ +οἶδα +θεός +δουλεύω +ὁ +φύσις +μή +εἰμί +θεός +δέ +νῦν +γινώσκω +θεός +δέ +μᾶλλον +γινώσκω +ὑπό +θεός +πῶς +ἐπιστρέφω +πάλιν +ἐπί +ὁ +ἀσθενής +καί +πτωχός +στοιχεῖον +ὅς +πάλιν +ἄνωθεν +δουλεύω +θέλω +παρατηρέω +ἡμέρα +καί +μήν (II) +καί +καιρός +καί +ἐνιαυτός +φοβέω +σύ +μή +πῶς +εἰκῇ +κοπιάω +εἰς +σύ +γίνομαι +ὡς +ἐγώ +ὅτι +κἀγώ +ὡς +σύ +ἀδελφός +δέομαι +σύ +οὐδείς +ἐγώ +ἀδικέω +δέ +οἶδα +ὅτι +διά +ἀσθένεια +ὁ +σάρξ +εὐαγγελίζω +σύ +ὁ +πρότερος +καί +οὐ +ὁ +πειρασμός +σύ +ἐν +ὁ +σάρξ +ἐγώ +ἐξουθενέω +οὐδέ +ἐκπτύω +ἀλλά +ὡς +ἄγγελος +θεός +δέχομαι +ἐγώ +ὡς +Χριστός +Ἰησοῦς +οὖν +ποῦ +ὁ +μακαρισμός +σύ +γάρ +μαρτυρέω +σύ +ὅτι +εἰ +δυνατός +ὁ +ὀφθαλμός +σύ +ἐξορύσσω +δίδωμι +ἐγώ +ὥστε +ἐχθρός +σύ +γίνομαι +ἀληθεύω +σύ +ζηλόω +σύ +οὐ +καλῶς +ἀλλά +ἐκκλείω +σύ +θέλω +ἵνα +αὐτός +ζηλόω +δέ +καλός +ζηλόω +ἐν +καλός +πάντοτε +καί +μή +μόνος +ἐν +ὁ +πάρειμι +ἐγώ +πρός +σύ +τέκνον +ἐγώ +ὅς +πάλιν +ὠδίνω +μέχρι +ὅς +μορφόω +Χριστός +ἐν +σύ +δέ +θέλω +πάρειμι +πρός +σύ +ἄρτι +καί +ἀλλάσσω +ὁ +φωνή +ἐγώ +ὅτι +ἀπορέω +ἐν +σύ +λέγω +ἐγώ +ὁ +ὑπό +νόμος +εἰμί +θέλω +ὁ +νόμος +οὐ +ἀκούω +γάρ +γράφω +ὅτι +Ἀβραάμ +ἔχω +δύο +υἱός +εἷς +ἐκ +ὁ +παιδίσκη +καί +εἷς +ἐκ +ὁ +ἐλεύθερος +ἀλλά +μέν +ὁ +ἐκ +ὁ +παιδίσκη +κατά +σάρξ +γεννάω +δέ +ὁ +ἐκ +ὁ +ἐλεύθερος +διά +ὁ +ἐπαγγελία +ὅστις +εἰμί +ἀλληγορέω +γάρ +οὗτος +εἰμί +δύο +διαθήκη +μέν +εἷς +ἀπό +ὄρος +Σινᾶ +εἰς +δουλεία +γεννάω +ὅστις +εἰμί +Ἁγάρ +δέ +ὁ +Ἁγάρ +Σινᾶ +ὄρος +εἰμί +ἐν +ὁ +Ἀραβία +δέ +συστοιχέω +ὁ +νῦν +Ἱεροσόλυμα +γάρ +δουλεύω +μετά +ὁ +τέκνον +αὐτός +δέ +ὁ +ἄνω +Ἱεροσόλυμα +ἐλεύθερος +εἰμί +ὅστις +εἰμί +μήτηρ +ἐγώ +γάρ +γράφω +εὐφραίνω +στεῖρα +ὁ +οὐ +τίκτω +ῥήγνυμι +καί +βοάω +ὁ +οὐ +ὠδίνω +ὅτι +πολύς +ὁ +τέκνον +ὁ +ἔρημος +μᾶλλον +ἤ +ὁ +ἔχω +ὁ +ἀνήρ +δέ +ἀδελφός +σύ +κατά +Ἰσαάκ +ἐπαγγελία +τέκνον +εἰμί +ἀλλά +ὥσπερ +τότε +ὁ +κατά +σάρξ +γεννάω +διώκω +ὁ +κατά +πνεῦμα +οὕτω +καί +νῦν +ἀλλά +τίς +λέγω +ὁ +γραφή +ἐκβάλλω +ὁ +παιδίσκη +καί +ὁ +υἱός +αὐτός +γάρ +οὐ +μή +κληρονομέω +ὁ +υἱός +ὁ +παιδίσκη +μετά +ὁ +υἱός +ὁ +ἐλεύθερος +διό +ἀδελφός +εἰμί +οὐ +παιδίσκη +τέκνον +ἀλλά +ὁ +ἐλεύθερος +ὁ +ἐλευθερία +ἐγώ +Χριστός +ἐλευθερόω +οὖν +στήκω +καί +μή +πάλιν +ζυγός +δουλεία +ἐνέχω +ὁράω +ἐγώ +Παῦλος +λέγω +σύ +ὅτι +ἐάν +περιτέμνω +Χριστός +σύ +οὐδείς +ὠφελέω +δέ +μαρτύρομαι +πάλιν +πᾶς +ἄνθρωπος +περιτέμνω +ὅτι +ὀφειλέτης +εἰμί +ὅλος +ὁ +νόμος +ποιέω +καταργέω +ἀπό +Χριστός +ὅστις +ἐν +νόμος +δικαιόω +ὁ +χάρις +ἐκπίπτω +γάρ +ἐγώ +πνεῦμα +ἐκ +πίστις +ἐλπίς +δικαιοσύνη +ἀπεκδέχομαι +γάρ +ἐν +Χριστός +Ἰησοῦς +οὔτε +περιτομή +οὔτε +ἀκροβυστία +τὶς +ἰσχύω +ἀλλά +πίστις +διά +ἀγάπη +ἐνεργέω +τρέχω +καλῶς +τίς +ἐγκόπτω +σύ +ἀλήθεια +μή +πείθω +ὁ +πεισμονή +οὐ +ἐκ +ὁ +καλέω +σύ +μικρός +ζύμη +ὅλος +ὁ +φύραμα +ζυμόω +ἐγώ +πείθω +εἰς +σύ +ἐν +κύριος +ὅτι +οὐδείς +ἄλλος +φρονέω +δέ +ὁ +ταράσσω +σύ +βαστάζω +ὁ +κρίμα +ἐάν +ὅστις +εἰμί +δέ +ἀδελφός +εἰ +ἐγώ +περιτομή +ἔτι +κηρύσσω +τίς +ἔτι +διώκω +ἄρα +καταργέω +ὁ +σκάνδαλον +ὁ +σταυρός +ὄφελον +καί +ἀποκόπτω +ὁ +ἀναστατόω +σύ +γάρ +σύ +ἐπί +ἐλευθερία +καλέω +ἀδελφός +μόνος +μή +ὁ +ἐλευθερία +εἰς +ἀφορμή +ὁ +σάρξ +ἀλλά +διά +ὁ +ἀγάπη +δουλεύω +ἀλλήλων +γάρ +ὁ +πᾶς +νόμος +πληρόω +ἐν +εἷς +λόγος +ἐν +ὁ +ἀγαπάω +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +δέ +εἰ +ἀλλήλων +δάκνω +καί +κατεσθίω +βλέπω +μή +ὑπό +ἀλλήλων +ἀναλίσκω +δέ +λέγω +πνεῦμα +περιπατέω +καί +ἐπιθυμία +σάρξ +οὐ +μή +τελέω +γάρ +ὁ +σάρξ +ἐπιθυμέω +κατά +ὁ +πνεῦμα +δέ +ὁ +πνεῦμα +κατά +ὁ +σάρξ +γάρ +οὗτος +ἀλλήλων +ἀντίκειμαι +ἵνα +μή +ἐάν +ὅς +θέλω +οὗτος +ποιέω +δέ +εἰ +πνεῦμα +ἄγω +οὐ +εἰμί +ὑπό +νόμος +δέ +φανερός +εἰμί +ὁ +ἔργον +ὁ +σάρξ +ὅστις +εἰμί +πορνεία +ἀκαθαρσία +ἀσέλγεια +εἰδωλολατρία +φαρμακεία +ἔχθρα +ἔρις +ζῆλος +θυμός +ἐριθεία +διχοστασία +αἵρεσις +φθόνος +μέθη +κῶμος +καί +ὁ +ὅμοιος +οὗτος +ὅς +προλέγω +σύ +καθώς +προλέγω +ὅτι +ὁ +ὁ +τοιοῦτος +πράσσω +βασιλεία +θεός +οὐ +κληρονομέω +δέ +ὁ +καρπός +ὁ +πνεῦμα +εἰμί +ἀγάπη +χαρά +εἰρήνη +μακροθυμία +χρηστότης +ἀγαθωσύνη +πίστις +πραΰτης +ἐγκράτεια +κατά +ὁ +τοιοῦτος +οὐ +εἰμί +νόμος +δέ +ὁ +ὁ +Χριστός +Ἰησοῦς +ὁ +σάρξ +σταυρόω +σύν +ὁ +πάθημα +καί +ὁ +ἐπιθυμία +εἰ +ζάω +πνεῦμα +πνεῦμα +καί +στοιχέω +μή +γίνομαι +κενόδοξος +ἀλλήλων +προκαλέω +ἀλλήλων +φθονέω +ἀδελφός +ἐάν +καί +προλαμβάνω +ἄνθρωπος +ἐν +τὶς +παράπτωμα +σύ +ὁ +πνευματικός +καταρτίζω +ὁ +τοιοῦτος +ἐν +πνεῦμα +πραΰτης +σκοπέω +σεαυτοῦ +μή +καί +σύ +πειράζω +ἀλλήλων +ὁ +βάρος +βαστάζω +καί +οὕτω +ἀναπληρόω +ὁ +νόμος +ὁ +Χριστός +γάρ +εἰ +δοκέω +τὶς +εἰμί +τὶς +μηδείς +εἰμί +φρεναπατάω +ἑαυτοῦ +δέ +ὁ +ἔργον +ἑαυτοῦ +δοκιμάζω +ἕκαστος +καί +τότε +εἰς +ἑαυτοῦ +μόνος +ὁ +καύχημα +ἔχω +καί +οὐ +εἰς +ὁ +ἕτερος +γάρ +ἕκαστος +ὁ +ἴδιος +φορτίον +βαστάζω +δέ +κοινωνέω +ὁ +κατηχέω +ὁ +λόγος +ὁ +κατηχέω +ἐν +πᾶς +ἀγαθός +μή +πλανάω +θεός +οὐ +μυκτηρίζω +γάρ +ἐάν +ὅς +σπείρω +ἄνθρωπος +οὗτος +καί +θερίζω +ὅτι +ὁ +σπείρω +εἰς +ὁ +σάρξ +ἑαυτοῦ +ἐκ +ὁ +σάρξ +θερίζω +φθορά +δέ +ὁ +σπείρω +εἰς +ὁ +πνεῦμα +ἐκ +ὁ +πνεῦμα +θερίζω +ζωή +αἰώνιος +δέ +ὁ +καλός +ποιέω +μή +ἐγκακέω +γάρ +καιρός +ἴδιος +θερίζω +μή +ἐκλύω +ἄρα +οὖν +ὡς +καιρός +ἔχω +ἐργάζομαι +ὁ +ἀγαθός +πρός +πᾶς +δέ +μάλιστα +πρός +ὁ +οἰκεῖος +ὁ +πίστις +ὁράω +πηλίκος +γράμμα +σύ +γράφω +ὁ +ἐμός +χείρ +ὅσος +θέλω +εὐπροσωπέω +ἐν +σάρξ +οὗτος +ἀναγκάζω +σύ +περιτέμνω +ἵνα +μόνος +ὁ +σταυρός +ὁ +Χριστός +μή +διώκω +γάρ +οὐδέ +ὁ +περιτέμνω +αὐτός +νόμος +φυλάσσω +ἀλλά +θέλω +σύ +περιτέμνω +ἵνα +ἐν +ὁ +ὑμέτερος +σάρξ +καυχάομαι +δέ +ἐγώ +μή +γίνομαι +καυχάομαι +εἰ +μή +ἐν +ὁ +σταυρός +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +διά +ὅς +ἐγώ +κόσμος +σταυρόω +κἀγώ +κόσμος +γάρ +τὶς +εἰμί +οὔτε +περιτομή +οὔτε +ἀκροβυστία +ἀλλά +καινός +κτίσις +καί +ὅσος +ὁ +κανών +οὗτος +στοιχέω +εἰρήνη +καί +ἔλεος +ἐπί +αὐτός +καί +ἐπί +ὁ +Ἰσραήλ +ὁ +θεός +ὁ +λοιπός +κόπος +ἐγώ +μηδείς +παρέχω +γάρ +ἐγώ +ὁ +στίγμα +ὁ +Ἰησοῦς +ἐν +ὁ +σῶμα +ἐγώ +βαστάζω +ὁ +χάρις +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +μετά +ὁ +πνεῦμα +σύ +ἀδελφός +ἀμήν +Παῦλος +ἀπόστολος +Χριστός +Ἰησοῦς +διά +θέλημα +θεός +ὁ +ἅγιος +ὁ +εἰμί +ἐν +Ἔφεσος +καί +πιστός +ἐν +Χριστός +Ἰησοῦς +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +εὐλογητός +ὁ +θεός +καί +πατήρ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +εὐλογέω +ἐγώ +ἐν +πᾶς +εὐλογία +πνευματικός +ἐν +ὁ +ἐπουράνιος +ἐν +Χριστός +καθώς +ἐκλέγω +ἐγώ +ἐν +αὐτός +πρό +καταβολή +κόσμος +εἰμί +ἐγώ +ἅγιος +καί +ἄμωμος +κατενώπιον +αὐτός +ἐν +ἀγάπη +προορίζω +ἐγώ +εἰς +υἱοθεσία +διά +Ἰησοῦς +Χριστός +εἰς +αὐτός +κατά +ὁ +εὐδοκία +ὁ +θέλημα +αὐτός +εἰς +ἔπαινος +δόξα +ὁ +χάρις +αὐτός +ὅς +χαριτόω +ἐγώ +ἐν +ὁ +ἀγαπάω +ἐν +ὅς +ἔχω +ὁ +ἀπολύτρωσις +διά +ὁ +αἷμα +αὐτός +ὁ +ἄφεσις +ὁ +παράπτωμα +κατά +ὁ +πλοῦτος +ὁ +χάρις +αὐτός +ὅς +περισσεύω +εἰς +ἐγώ +ἐν +πᾶς +σοφία +καί +φρόνησις +γνωρίζω +ἐγώ +ὁ +μυστήριον +ὁ +θέλημα +αὐτός +κατά +ὁ +εὐδοκία +αὐτός +ὅς +προτίθημι +ἐν +αὐτός +εἰς +οἰκονομία +ὁ +πλήρωμα +ὁ +καιρός +ἀνακεφαλαιόω +ὁ +πᾶς +ἐν +ὁ +Χριστός +ὁ +ἐπί +ὁ +οὐρανός +καί +ὁ +ἐπί +ὁ +γῆ +ἐν +αὐτός +ἐν +ὅς +καί +κληρόω +προορίζω +κατά +πρόθεσις +ὁ +ὁ +πᾶς +ἐνεργέω +κατά +ὁ +βουλή +ὁ +θέλημα +αὐτός +εἰς +ὁ +εἰμί +εἰς +ἔπαινος +δόξα +αὐτός +ἐγώ +ὁ +προελπίζω +ἐν +ὁ +Χριστός +ἐν +ὅς +καί +σύ +ἀκούω +ὁ +λόγος +ὁ +ἀλήθεια +ὁ +εὐαγγέλιον +ὁ +σωτηρία +σύ +ἐν +ὅς +καί +πιστεύω +σφραγίζω +ὁ +πνεῦμα +ὁ +ἐπαγγελία +ὁ +ἅγιος +ὅς +εἰμί +ἀρραβών +ὁ +κληρονομία +ἐγώ +εἰς +ἀπολύτρωσις +ὁ +περιποίησις +εἰς +ἔπαινος +ὁ +δόξα +αὐτός +διά +οὗτος +κἀγώ +ἀκούω +ὁ +κατά +σύ +πίστις +ἐν +ὁ +κύριος +Ἰησοῦς +καί +ὁ +ἀγάπη +ὁ +εἰς +πᾶς +ὁ +ἅγιος +οὐ +παύω +εὐχαριστέω +ὑπέρ +σύ +μνεία +ποιέω +ἐπί +ὁ +προσευχή +ἐγώ +ἵνα +ὁ +θεός +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +πατήρ +ὁ +δόξα +δίδωμι +σύ +πνεῦμα +σοφία +καί +ἀποκάλυψις +ἐν +ἐπίγνωσις +αὐτός +φωτίζω +ὁ +ὀφθαλμός +ὁ +καρδία +σύ +εἰς +ὁ +οἶδα +σύ +τίς +εἰμί +ὁ +ἐλπίς +ὁ +κλῆσις +αὐτός +τίς +ὁ +πλοῦτος +ὁ +δόξα +ὁ +κληρονομία +αὐτός +ἐν +ὁ +ἅγιος +καί +τίς +ὁ +ὑπερβάλλω +μέγεθος +ὁ +δύναμις +αὐτός +εἰς +ἐγώ +ὁ +πιστεύω +κατά +ὁ +ἐνέργεια +ὁ +κράτος +ὁ +ἰσχύς +αὐτός +ὅς +ἐνεργέω +ἐν +ὁ +Χριστός +ἐγείρω +αὐτός +ἐκ +νεκρός +καί +καθίζω +ἐν +δεξιός +αὐτός +ἐν +ὁ +ἐπουράνιος +ὑπεράνω +πᾶς +ἀρχή +καί +ἐξουσία +καί +δύναμις +καί +κυριότης +καί +πᾶς +ὄνομα +ὀνομάζω +οὐ +μόνος +ἐν +ὁ +αἰών +οὗτος +ἀλλά +καί +ἐν +ὁ +μέλλω +καί +πᾶς +ὑποτάσσω +ὑπό +ὁ +πούς +αὐτός +καί +αὐτός +δίδωμι +κεφαλή +ὑπέρ +πᾶς +ὁ +ἐκκλησία +ὅστις +εἰμί +ὁ +σῶμα +αὐτός +ὁ +πλήρωμα +ὁ +ὁ +πᾶς +ἐν +πᾶς +πληρόω +καί +σύ +εἰμί +νεκρός +ὁ +παράπτωμα +καί +ὁ +ἁμαρτία +σύ +ἐν +ὅς +ποτέ +περιπατέω +κατά +ὁ +αἰών +ὁ +κόσμος +οὗτος +κατά +ὁ +ἄρχων +ὁ +ἐξουσία +ὁ +ἀήρ +ὁ +πνεῦμα +ὁ +νῦν +ἐνεργέω +ἐν +ὁ +υἱός +ὁ +ἀπείθεια +ἐν +ὅς +καί +ἐγώ +πᾶς +ἀναστρέφω +ποτέ +ἐν +ὁ +ἐπιθυμία +ὁ +σάρξ +ἐγώ +ποιέω +ὁ +θέλημα +ὁ +σάρξ +καί +ὁ +διάνοια +καί +εἰμί +τέκνον +ὀργή +φύσις +ὡς +καί +ὁ +λοιπός +δέ +ὁ +θεός +πλούσιος +εἰμί +ἐν +ἔλεος +διά +ὁ +πολύς +ἀγάπη +αὐτός +ὅς +ἀγαπάω +ἐγώ +καί +εἰμί +ἐγώ +νεκρός +ὁ +παράπτωμα +συζωοποιέω +ὁ +Χριστός +χάρις +εἰμί +σῴζω +καί +συνεγείρω +καί +συγκαθίζω +ἐν +ὁ +ἐπουράνιος +ἐν +Χριστός +Ἰησοῦς +ἵνα +ἐνδείκνυμι +ἐν +ὁ +αἰών +ὁ +ἐπέρχομαι +ὁ +ὑπερβάλλω +πλοῦτος +ὁ +χάρις +αὐτός +ἐν +χρηστότης +ἐπί +ἐγώ +ἐν +Χριστός +Ἰησοῦς +γάρ +ὁ +χάρις +εἰμί +σῴζω +διά +πίστις +καί +οὗτος +οὐ +ἐκ +σύ +θεός +ὁ +δῶρον +οὐ +ἐκ +ἔργον +ἵνα +μή +τὶς +καυχάομαι +γάρ +εἰμί +αὐτός +ποίημα +κτίζω +ἐν +Χριστός +Ἰησοῦς +ἐπί +ἔργον +ἀγαθός +ὅς +προετοιμάζω +ὁ +θεός +ἵνα +ἐν +αὐτός +περιπατέω +διό +μνημονεύω +ὅτι +ποτέ +σύ +ὁ +ἔθνος +ἐν +σάρξ +ὁ +λέγω +ἀκροβυστία +ὑπό +ὁ +λέγω +περιτομή +ἐν +σάρξ +χειροποίητος +ὅτι +εἰμί +ὁ +καιρός +ἐκεῖνος +χωρίς +Χριστός +ἀπαλλοτριόω +ὁ +πολιτεία +ὁ +Ἰσραήλ +καί +ξένος +ὁ +διαθήκη +ὁ +ἐπαγγελία +ἐλπίς +μή +ἔχω +καί +ἄθεος +ἐν +ὁ +κόσμος +δέ +νυνί +ἐν +Χριστός +Ἰησοῦς +σύ +ὁ +ποτέ +εἰμί +μακράν +γίνομαι +ἐγγύς +ἐν +ὁ +αἷμα +ὁ +Χριστός +γάρ +αὐτός +εἰμί +ὁ +εἰρήνη +ἐγώ +ὁ +ποιέω +ὁ +ἀμφότεροι +εἷς +καί +ὁ +μεσότοιχον +ὁ +φραγμός +ὁ +ἔχθρα +λύω +ἐν +ὁ +σάρξ +αὐτός +ὁ +νόμος +ὁ +ἐντολή +ἐν +δόγμα +καταργέω +ἵνα +ὁ +δύο +κτίζω +ἐν +αὐτός +εἰς +εἷς +καινός +ἄνθρωπος +ποιέω +εἰρήνη +καί +ἀποκαταλλάσσω +ὁ +ἀμφότεροι +ἐν +εἷς +σῶμα +ὁ +θεός +διά +ὁ +σταυρός +ἀποκτείνω +ὁ +ἔχθρα +ἐν +αὐτός +καί +ἔρχομαι +εὐαγγελίζω +εἰρήνη +σύ +ὁ +μακράν +καί +εἰρήνη +ὁ +ἐγγύς +ὅτι +διά +αὐτός +ἔχω +ὁ +προσαγωγή +ὁ +ἀμφότεροι +ἐν +εἷς +πνεῦμα +πρός +ὁ +πατήρ +ἄρα +οὖν +οὐκέτι +εἰμί +ξένος +καί +πάροικος +ἀλλά +εἰμί +συμπολίτης +ὁ +ἅγιος +καί +οἰκεῖος +ὁ +θεός +ἐποικοδομέω +ἐπί +ὁ +θεμέλιος +ὁ +ἀπόστολος +καί +προφήτης +εἰμί +ἀκρογωνιαῖος +αὐτός +Χριστός +Ἰησοῦς +ἐν +ὅς +πᾶς +οἰκοδομή +συναρμολογέω +αὐξάνω +εἰς +ναός +ἅγιος +ἐν +κύριος +ἐν +ὅς +καί +σύ +συνοικοδομέω +εἰς +κατοικητήριον +ὁ +θεός +ἐν +πνεῦμα +οὗτος +χάριν +ἐγώ +Παῦλος +ὁ +δέσμιος +ὁ +Χριστός +Ἰησοῦς +ὑπέρ +σύ +ὁ +ἔθνος +εἰ +γέ +ἀκούω +ὁ +οἰκονομία +ὁ +χάρις +ὁ +θεός +ὁ +δίδωμι +ἐγώ +εἰς +σύ +ὅτι +κατά +ἀποκάλυψις +γνωρίζω +ἐγώ +ὁ +μυστήριον +καθώς +προγράφω +ἐν +ὀλίγος +πρός +ὅς +δύναμαι +ἀναγινώσκω +νοέω +ὁ +σύνεσις +ἐγώ +ἐν +ὁ +μυστήριον +ὁ +Χριστός +ὅς +ἕτερος +γενεά +οὐ +γνωρίζω +ὁ +υἱός +ὁ +ἄνθρωπος +ὡς +νῦν +ἀποκαλύπτω +ὁ +ἅγιος +ἀπόστολος +αὐτός +καί +προφήτης +ἐν +πνεῦμα +εἰμί +ὁ +ἔθνος +συγκληρονόμος +καί +σύσσωμος +καί +συμμέτοχος +ὁ +ἐπαγγελία +ἐν +Χριστός +Ἰησοῦς +διά +ὁ +εὐαγγέλιον +ὅς +διάκονος +γίνομαι +κατά +ὁ +δωρεά +ὁ +χάρις +ὁ +θεός +ὁ +δίδωμι +ἐγώ +κατά +ὁ +ἐνέργεια +ὁ +δύναμις +αὐτός +ἐγώ +ὁ +ἐλάχιστος +πᾶς +ἅγιος +δίδωμι +ὁ +χάρις +οὗτος +ὁ +ἔθνος +εὐαγγελίζω +ὁ +ἀνεξιχνίαστος +πλοῦτος +ὁ +Χριστός +καί +φωτίζω +τίς +ὁ +οἰκονομία +ὁ +μυστήριον +ὁ +ἀποκρύπτω +ἀπό +ὁ +αἰών +ἐν +ὁ +θεός +ὁ +ὁ +πᾶς +κτίζω +ἵνα +γνωρίζω +νῦν +ὁ +ἀρχή +καί +ὁ +ἐξουσία +ἐν +ὁ +ἐπουράνιος +διά +ὁ +ἐκκλησία +ὁ +πολυποίκιλος +σοφία +ὁ +θεός +κατά +πρόθεσις +ὁ +αἰών +ὅς +ποιέω +ἐν +ὁ +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +ἐν +ὅς +ἔχω +ὁ +παρρησία +καί +προσαγωγή +ἐν +πεποίθησις +διά +ὁ +πίστις +αὐτός +διό +αἰτέω +μή +ἐγκακέω +ἐν +ὁ +θλῖψις +ἐγώ +ὑπέρ +σύ +ὅστις +εἰμί +δόξα +σύ +οὗτος +χάριν +κάμπτω +ὁ +γόνυ +ἐγώ +πρός +ὁ +πατήρ +ἐκ +ὅς +πᾶς +πατριά +ἐν +οὐρανός +καί +ἐπί +γῆ +ὀνομάζω +ἵνα +δίδωμι +σύ +κατά +ὁ +πλοῦτος +ὁ +δόξα +αὐτός +δύναμις +κραταιόω +διά +ὁ +πνεῦμα +αὐτός +εἰς +ὁ +ἔσω +ἄνθρωπος +κατοικέω +ὁ +Χριστός +διά +ὁ +πίστις +ἐν +ὁ +καρδία +σύ +ἐν +ἀγάπη +ῥιζόω +καί +θεμελιόω +ἵνα +ἐξισχύω +καταλαμβάνω +σύν +πᾶς +ὁ +ἅγιος +τίς +ὁ +πλάτος +καί +μῆκος +καί +ὕψος +καί +βάθος +τέ +γινώσκω +ὁ +ὑπερβάλλω +ὁ +γνῶσις +ἀγάπη +ὁ +Χριστός +ἵνα +πληρόω +εἰς +πᾶς +ὁ +πλήρωμα +ὁ +θεός +δέ +ὁ +δύναμαι +ποιέω +ὑπερεκπερισσοῦ +ὑπέρ +πᾶς +ὅς +αἰτέω +ἤ +νοέω +κατά +ὁ +δύναμις +ὁ +ἐνεργέω +ἐν +ἐγώ +αὐτός +ὁ +δόξα +ἐν +ὁ +ἐκκλησία +καί +ἐν +Χριστός +Ἰησοῦς +εἰς +πᾶς +ὁ +γενεά +ὁ +αἰών +ὁ +αἰών +ἀμήν +οὖν +παρακαλέω +σύ +ἐγώ +ὁ +δέσμιος +ἐν +κύριος +ἀξίως +περιπατέω +ὁ +κλῆσις +ὅς +καλέω +μετά +πᾶς +ταπεινοφροσύνη +καί +πραΰτης +μετά +μακροθυμία +ἀνέχω +ἀλλήλων +ἐν +ἀγάπη +σπουδάζω +τηρέω +ὁ +ἑνότης +ὁ +πνεῦμα +ἐν +ὁ +σύνδεσμος +ὁ +εἰρήνη +εἷς +σῶμα +καί +εἷς +πνεῦμα +καθώς +καί +καλέω +ἐν +εἷς +ἐλπίς +ὁ +κλῆσις +σύ +εἷς +κύριος +εἷς +πίστις +εἷς +βάπτισμα +εἷς +θεός +καί +πατήρ +πᾶς +ὁ +ἐπί +πᾶς +καί +διά +πᾶς +καί +ἐν +πᾶς +δέ +εἷς +ἕκαστος +ἐγώ +δίδωμι +ὁ +χάρις +κατά +ὁ +μέτρον +ὁ +δωρεά +ὁ +Χριστός +διό +λέγω +ἀναβαίνω +εἰς +ὕψος +αἰχμαλωτεύω +αἰχμαλωσία +δίδωμι +δόμα +ὁ +ἄνθρωπος +δέ +ὁ +ἀναβαίνω +τίς +εἰμί +εἰ +μή +ὅτι +καί +καταβαίνω +εἰς +ὁ +κατώτερος +μέρος +ὁ +γῆ +ὁ +καταβαίνω +αὐτός +εἰμί +καί +ὁ +ἀναβαίνω +ὑπεράνω +πᾶς +ὁ +οὐρανός +ἵνα +πληρόω +ὁ +πᾶς +καί +αὐτός +δίδωμι +μέν +ὁ +ἀπόστολος +δέ +ὁ +προφήτης +δέ +ὁ +εὐαγγελιστής +δέ +ὁ +ποιμήν +καί +διδάσκαλος +πρός +ὁ +καταρτισμός +ὁ +ἅγιος +εἰς +ἔργον +διακονία +εἰς +οἰκοδομή +ὁ +σῶμα +ὁ +Χριστός +μέχρι +καταντάω +ὁ +πᾶς +εἰς +ὁ +ἑνότης +ὁ +πίστις +καί +ὁ +ἐπίγνωσις +ὁ +υἱός +ὁ +θεός +εἰς +ἀνήρ +τέλειος +εἰς +μέτρον +ἡλικία +ὁ +πλήρωμα +ὁ +Χριστός +ἵνα +μηκέτι +εἰμί +νήπιος +κλυδωνίζομαι +καί +περιφέρω +πᾶς +ἄνεμος +ὁ +διδασκαλία +ἐν +ὁ +κυβεία +ὁ +ἄνθρωπος +ἐν +πανουργία +πρός +ὁ +μεθοδεία +ὁ +πλάνη +δέ +ἀληθεύω +ἐν +ἀγάπη +αὐξάνω +ὁ +πᾶς +εἰς +αὐτός +ὅς +εἰμί +ὁ +κεφαλή +Χριστός +ἐκ +ὅς +πᾶς +ὁ +σῶμα +συναρμολογέω +καί +συμβιβάζω +διά +πᾶς +ἁφή +ὁ +ἐπιχορηγία +κατά +ἐνέργεια +ἐν +μέτρον +εἷς +ἕκαστος +μέρος +ὁ +αὔξησις +ὁ +σῶμα +ποιέω +εἰς +οἰκοδομή +ἑαυτοῦ +ἐν +ἀγάπη +οὖν +οὗτος +λέγω +καί +μαρτύρομαι +ἐν +κύριος +μηκέτι +σύ +περιπατέω +καθώς +καί +ὁ +ἔθνος +περιπατέω +ἐν +ματαιότης +ὁ +νοῦς +αὐτός +σκοτόω +εἰμί +ὁ +διάνοια +ἀπαλλοτριόω +ὁ +ζωή +ὁ +θεός +διά +ὁ +ἄγνοια +ὁ +εἰμί +ἐν +αὐτός +διά +ὁ +πώρωσις +ὁ +καρδία +αὐτός +ὅστις +ἀπαλγέω +ἑαυτοῦ +παραδίδωμι +ὁ +ἀσέλγεια +εἰς +ἐργασία +ἀκαθαρσία +πᾶς +ἐν +πλεονεξία +δέ +σύ +οὐ +οὕτω +μανθάνω +ὁ +Χριστός +εἰ +γέ +αὐτός +ἀκούω +καί +ἐν +αὐτός +διδάσκω +καθώς +εἰμί +ἀλήθεια +ἐν +ὁ +Ἰησοῦς +ἀποτίθημι +σύ +κατά +ὁ +πρότερος +ἀναστροφή +ὁ +παλαιός +ἄνθρωπος +ὁ +φθείρω +κατά +ὁ +ἐπιθυμία +ὁ +ἀπάτη +δέ +ἀνανεόω +ὁ +πνεῦμα +ὁ +νοῦς +σύ +καί +ἐνδύω +ὁ +καινός +ἄνθρωπος +ὁ +κατά +θεός +κτίζω +ἐν +δικαιοσύνη +καί +ὁσιότης +ὁ +ἀλήθεια +διό +ἀποτίθημι +ὁ +ψεῦδος +λαλέω +ἀλήθεια +ἕκαστος +μετά +ὁ +πλησίον +αὐτός +ὅτι +εἰμί +ἀλλήλων +μέλος +ὀργίζω +καί +μή +ἁμαρτάνω +ὁ +ἥλιος +μή +ἐπιδύω +ἐπί +παροργισμός +σύ +μηδέ +δίδωμι +τόπος +ὁ +διάβολος +ὁ +κλέπτω +μηκέτι +κλέπτω +δέ +μᾶλλον +κοπιάω +ἐργάζομαι +ὁ +ἴδιος +χείρ +ὁ +ἀγαθός +ἵνα +ἔχω +μεταδίδωμι +ὁ +χρεία +ἔχω +πᾶς +λόγος +σαπρός +ἐκ +ὁ +στόμα +σύ +μή +ἐκπορεύομαι +ἀλλά +εἰ +τὶς +ἀγαθός +πρός +οἰκοδομή +ὁ +χρεία +ἵνα +δίδωμι +χάρις +ὁ +ἀκούω +καί +μή +λυπέω +ὁ +πνεῦμα +ὁ +ἅγιος +ὁ +θεός +ἐν +ὅς +σφραγίζω +εἰς +ἡμέρα +ἀπολύτρωσις +πᾶς +πικρία +καί +θυμός +καί +ὀργή +καί +κραυγή +καί +βλασφημία +αἴρω +ἀπό +σύ +σύν +πᾶς +κακία +δέ +γίνομαι +εἰς +ἀλλήλων +χρηστός +εὔσπλαγχνος +χαρίζομαι +ἑαυτοῦ +καθώς +καί +ὁ +θεός +ἐν +Χριστός +χαρίζομαι +σύ +οὖν +γίνομαι +μιμητής +ὁ +θεός +ὡς +τέκνον +ἀγαπητός +καί +περιπατέω +ἐν +ἀγάπη +καθώς +καί +ὁ +Χριστός +ἀγαπάω +σύ +καί +παραδίδωμι +ἑαυτοῦ +ὑπέρ +ἐγώ +προσφορά +καί +θυσία +ὁ +θεός +εἰς +ὀσμή +εὐωδία +δέ +πορνεία +καί +ἀκαθαρσία +πᾶς +ἤ +πλεονεξία +μηδέ +ὀνομάζω +ἐν +σύ +καθώς +πρέπω +ἅγιος +καί +αἰσχρότης +καί +μωρολογία +ἤ +εὐτραπελία +ὅς +οὐ +ἀνήκω +ἀλλά +μᾶλλον +εὐχαριστία +γάρ +οὗτος +οἶδα +γινώσκω +ὅτι +πᾶς +πόρνος +ἤ +ἀκάθαρτος +ἤ +πλεονέκτης +ὅς +εἰμί +εἰδωλολάτρης +οὐ +ἔχω +κληρονομία +ἐν +ὁ +βασιλεία +ὁ +Χριστός +καί +θεός +μηδείς +σύ +ἀπατάω +κενός +λόγος +γάρ +διά +οὗτος +ἔρχομαι +ὁ +ὀργή +ὁ +θεός +ἐπί +ὁ +υἱός +ὁ +ἀπείθεια +οὖν +μή +γίνομαι +συμμέτοχος +αὐτός +γάρ +εἰμί +ποτέ +σκότος +δέ +νῦν +φῶς +ἐν +κύριος +ὡς +τέκνον +φῶς +περιπατέω +γάρ +ὁ +καρπός +ὁ +φῶς +ἐν +πᾶς +ἀγαθωσύνη +καί +δικαιοσύνη +καί +ἀλήθεια +δοκιμάζω +τίς +εἰμί +εὐάρεστος +ὁ +κύριος +καί +μή +συγκοινωνέω +ὁ +ἔργον +ὁ +ἄκαρπος +ὁ +σκότος +δέ +μᾶλλον +καί +ἐλέγχω +γάρ +ὁ +κρυφῇ +γίνομαι +ὑπό +αὐτός +αἰσχρός +εἰμί +καί +λέγω +δέ +ὁ +πᾶς +ἐλέγχω +ὑπό +ὁ +φῶς +φανερόω +γάρ +πᾶς +ὁ +φανερόω +φῶς +εἰμί +διό +λέγω +ἐγείρω +ὁ +καθεύδω +καί +ἀνίστημι +ἐκ +ὁ +νεκρός +καί +ἐπιφαύσκω +σύ +ὁ +Χριστός +οὖν +βλέπω +ἀκριβῶς +πῶς +περιπατέω +μή +ὡς +ἄσοφος +ἀλλά +ὡς +σοφός +ἐξαγοράζω +ὁ +καιρός +ὅτι +ὁ +ἡμέρα +πονηρός +εἰμί +διά +οὗτος +μή +γίνομαι +ἄφρων +ἀλλά +συνίημι +τίς +ὁ +θέλημα +ὁ +κύριος +καί +μή +μεθύσκω +οἶνος +ἐν +ὅς +εἰμί +ἀσωτία +ἀλλά +πληρόω +ἐν +πνεῦμα +λαλέω +ἑαυτοῦ +ψαλμός +καί +ὕμνος +καί +ᾠδή +πνευματικός +ᾄδω +καί +ψάλλω +ὁ +καρδία +σύ +ὁ +κύριος +εὐχαριστέω +πάντοτε +ὑπέρ +πᾶς +ἐν +ὄνομα +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +θεός +καί +πατήρ +ὑποτάσσω +ἀλλήλων +ἐν +φόβος +Χριστός +ὁ +γυνή +ὁ +ἴδιος +ἀνήρ +ὡς +ὁ +κύριος +ὅτι +ἀνήρ +εἰμί +κεφαλή +ὁ +γυνή +ὡς +καί +ὁ +Χριστός +κεφαλή +ὁ +ἐκκλησία +αὐτός +σωτήρ +ὁ +σῶμα +ἀλλά +ὡς +ὁ +ἐκκλησία +ὑποτάσσω +ὁ +Χριστός +οὕτω +καί +ὁ +γυνή +ὁ +ἀνήρ +ἐν +πᾶς +ὁ +ἀνήρ +ἀγαπάω +ὁ +γυνή +καθώς +καί +ὁ +Χριστός +ἀγαπάω +ὁ +ἐκκλησία +καί +ἑαυτοῦ +παραδίδωμι +ὑπέρ +αὐτός +ἵνα +αὐτός +ἁγιάζω +καθαρίζω +ὁ +λουτρόν +ὁ +ὕδωρ +ἐν +ῥῆμα +ἵνα +παρίστημι +αὐτός +ἑαυτοῦ +ὁ +ἐκκλησία +ἔνδοξος +μή +ἔχω +σπίλος +ἤ +ῥυτίς +ἤ +τὶς +ὁ +τοιοῦτος +ἀλλά +ἵνα +εἰμί +ἅγιος +καί +ἄμωμος +οὕτω +ὀφείλω +καί +ὁ +ἀνήρ +ἀγαπάω +ὁ +ἑαυτοῦ +γυνή +ὡς +ὁ +ἑαυτοῦ +σῶμα +ὁ +ἀγαπάω +ὁ +ἑαυτοῦ +γυνή +ἑαυτοῦ +ἀγαπάω +γάρ +οὐδείς +ποτέ +ὁ +ἑαυτοῦ +σάρξ +μισέω +ἀλλά +ἐκτρέφω +καί +θάλπω +αὐτός +καθώς +καί +ὁ +Χριστός +ὁ +ἐκκλησία +ὅτι +εἰμί +μέλος +ὁ +σῶμα +αὐτός +ἀντί +οὗτος +καταλείπω +ἄνθρωπος +ὁ +πατήρ +καί +ὁ +μήτηρ +καί +προσκολλάω +πρός +ὁ +γυνή +αὐτός +καί +εἰμί +ὁ +δύο +εἰς +σάρξ +εἷς +ὁ +μυστήριον +οὗτος +μέγας +εἰμί +δέ +ἐγώ +λέγω +εἰς +Χριστός +καί +εἰς +ὁ +ἐκκλησία +πλήν +καί +σύ +ὁ +κατά +εἷς +ἕκαστος +ὁ +ἑαυτοῦ +γυνή +οὕτω +ἀγαπάω +ὡς +ἑαυτοῦ +δέ +ὁ +γυνή +ἵνα +φοβέω +ὁ +ἀνήρ +ὁ +τέκνον +ὑπακούω +ὁ +γονεύς +σύ +ἐν +κύριος +γάρ +οὗτος +εἰμί +δίκαιος +τιμάω +ὁ +πατήρ +σύ +καί +ὁ +μήτηρ +ὅστις +εἰμί +ἐντολή +πρῶτος +ἐν +ἐπαγγελία +ἵνα +εὖ +σύ +γίνομαι +καί +εἰμί +μακροχρόνιος +ἐπί +ὁ +γῆ +καί +ὁ +πατήρ +μή +παροργίζω +ὁ +τέκνον +σύ +ἀλλά +ἐκτρέφω +αὐτός +ἐν +παιδεία +καί +νουθεσία +κύριος +ὁ +δοῦλος (II) +ὑπακούω +ὁ +κατά +σάρξ +κύριος +μετά +φόβος +καί +τρόμος +ἐν +ἁπλότης +ὁ +καρδία +σύ +ὡς +ὁ +Χριστός +μή +κατά +ὀφθαλμοδουλία +ὡς +ἀνθρωπάρεσκος +ἀλλά +ὡς +δοῦλος (II) +Χριστός +ποιέω +ὁ +θέλημα +ὁ +θεός +ἐκ +ψυχή +μετά +εὔνοια +δουλεύω +ὡς +ὁ +κύριος +καί +οὐ +ἄνθρωπος +οἶδα +ὅτι +ἐάν +ἕκαστος +τὶς +ἀγαθός +ποιέω +οὗτος +κομίζω +παρά +κύριος +εἴτε +δοῦλος (II) +εἴτε +ἐλεύθερος +καί +ὁ +κύριος +ὁ +αὐτός +ποιέω +πρός +αὐτός +ἀνίημι +ὁ +ἀπειλή +οἶδα +ὅτι +καί +αὐτός +καί +σύ +ὁ +κύριος +εἰμί +ἐν +οὐρανός +καί +προσωπολημψία +οὐ +εἰμί +παρά +αὐτός +ὁ +λοιπός +ἐνδυναμόω +ἐν +κύριος +καί +ἐν +ὁ +κράτος +ὁ +ἰσχύς +αὐτός +ἐνδύω +ὁ +πανοπλία +ὁ +θεός +πρός +ὁ +δύναμαι +σύ +ἵστημι +πρός +ὁ +μεθοδεία +ὁ +διάβολος +ὅτι +εἰμί +ἐγώ +ὁ +πάλη +οὐ +πρός +αἷμα +καί +σάρξ +ἀλλά +πρός +ὁ +ἀρχή +πρός +ὁ +ἐξουσία +πρός +ὁ +κοσμοκράτωρ +ὁ +σκότος +οὗτος +πρός +ὁ +πνευματικός +ὁ +πονηρία +ἐν +ὁ +ἐπουράνιος +διά +οὗτος +ἀναλαμβάνω +ὁ +πανοπλία +ὁ +θεός +ἵνα +δύναμαι +ἀνθίστημι +ἐν +ὁ +ἡμέρα +ὁ +πονηρός +καί +ἅπας +κατεργάζομαι +ἵστημι +οὖν +ἵστημι +περιζώννυμι +ὁ +ὀσφῦς +σύ +ἐν +ἀλήθεια +καί +ἐνδύω +ὁ +θώραξ +ὁ +δικαιοσύνη +καί +ὑποδέω +ὁ +πούς +ἐν +ἑτοιμασία +ὁ +εὐαγγέλιον +ὁ +εἰρήνη +ἐν +πᾶς +ἀναλαμβάνω +ὁ +θυρεός +ὁ +πίστις +ἐν +ὅς +δύναμαι +πᾶς +ὁ +βέλος +ὁ +πονηρός +ὁ +πυρόω +σβέννυμι +καί +δέχομαι +ὁ +περικεφαλαία +ὁ +σωτήριος +καί +ὁ +μάχαιρα +ὁ +πνεῦμα +ὅς +εἰμί +ῥῆμα +θεός +διά +πᾶς +προσευχή +καί +δέησις +προσεύχομαι +ἐν +πᾶς +καιρός +ἐν +πνεῦμα +καί +εἰς +αὐτός +ἀγρυπνέω +ἐν +πᾶς +προσκαρτέρησις +καί +δέησις +περί +πᾶς +ὁ +ἅγιος +καί +ὑπέρ +ἐγώ +ἵνα +ἐγώ +δίδωμι +λόγος +ἐν +ἄνοιξις +ὁ +στόμα +ἐγώ +ἐν +παρρησία +γνωρίζω +ὁ +μυστήριον +ὁ +εὐαγγέλιον +ὑπέρ +ὅς +πρεσβεύω +ἐν +ἅλυσις +ἵνα +ἐν +αὐτός +παρρησιάζομαι +ὡς +δεῖ +ἐγώ +λαλέω +δέ +ἵνα +οἶδα +καί +σύ +ὁ +κατά +ἐγώ +τίς +πράσσω +πᾶς +γνωρίζω +σύ +Τυχικός +ὁ +ἀγαπητός +ἀδελφός +καί +πιστός +διάκονος +ἐν +κύριος +ὅς +πέμπω +πρός +σύ +εἰς +αὐτός +οὗτος +ἵνα +γινώσκω +ὁ +περί +ἐγώ +καί +παρακαλέω +ὁ +καρδία +σύ +ὁ +ἀδελφός +εἰρήνη +καί +ἀγάπη +μετά +πίστις +ἀπό +θεός +πατήρ +καί +κύριος +Ἰησοῦς +Χριστός +ὁ +χάρις +μετά +πᾶς +ὁ +ἀγαπάω +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἐν +ἀφθαρσία +Παῦλος +καί +Τιμόθεος +δοῦλος (II) +Χριστός +Ἰησοῦς +πᾶς +ὁ +ἅγιος +ἐν +Χριστός +Ἰησοῦς +ὁ +εἰμί +ἐν +Φίλιπποι +σύν +ἐπίσκοπος +καί +διάκονος +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +εὐχαριστέω +ὁ +θεός +ἐγώ +ἐπί +πᾶς +ὁ +μνεία +σύ +πάντοτε +ἐν +πᾶς +δέησις +ἐγώ +ὑπέρ +πᾶς +σύ +μετά +χαρά +ὁ +δέησις +ποιέω +ἐπί +ὁ +κοινωνία +σύ +εἰς +ὁ +εὐαγγέλιον +ἀπό +ὁ +πρῶτος +ἡμέρα +ἄχρι +ὁ +νῦν +πείθω +αὐτός +οὗτος +ὅτι +ὁ +ἐνάρχομαι +ἐν +σύ +ἔργον +ἀγαθός +ἐπιτελέω +ἄχρι +ἡμέρα +Χριστός +Ἰησοῦς +καθώς +εἰμί +δίκαιος +ἐγώ +οὗτος +φρονέω +ὑπέρ +πᾶς +σύ +διά +ὁ +ἔχω +ἐγώ +ἐν +ὁ +καρδία +σύ +τέ +ἐν +ὁ +δεσμός +ἐγώ +καί +ἐν +ὁ +ἀπολογία +καί +βεβαίωσις +ὁ +εὐαγγέλιον +συγκοινωνός +ἐγώ +ὁ +χάρις +πᾶς +σύ +εἰμί +γάρ +μάρτυς +ἐγώ +ὁ +θεός +ὡς +ἐπιποθέω +πᾶς +σύ +ἐν +σπλάγχνον +Χριστός +Ἰησοῦς +καί +οὗτος +προσεύχομαι +ἵνα +ὁ +ἀγάπη +σύ +ἔτι +μᾶλλον +καί +μᾶλλον +περισσεύω +ἐν +ἐπίγνωσις +καί +πᾶς +αἴσθησις +εἰς +ὁ +δοκιμάζω +σύ +ὁ +διαφέρω +ἵνα +εἰμί +εἰλικρινής +καί +ἀπρόσκοπος +εἰς +ἡμέρα +Χριστός +πληρόω +καρπός +δικαιοσύνη +ὁ +διά +Ἰησοῦς +Χριστός +εἰς +δόξα +καί +ἔπαινος +θεός +δέ +ἀδελφός +βούλομαι +γινώσκω +σύ +ὅτι +ὁ +κατά +ἐγώ +μᾶλλον +εἰς +προκοπή +ὁ +εὐαγγέλιον +ἔρχομαι +ὥστε +ὁ +δεσμός +ἐγώ +φανερός +ἐν +Χριστός +γίνομαι +ἐν +ὅλος +ὁ +πραιτώριον +καί +ὁ +λοιπός +πᾶς +καί +ὁ +πολύς +ὁ +ἀδελφός +ἐν +κύριος +πείθω +ὁ +δεσμός +ἐγώ +περισσῶς +τολμάω +ἀφόβως +ὁ +λόγος +ὁ +θεός +λαλέω +μέν +τὶς +καί +διά +φθόνος +καί +ἔρις +δέ +τὶς +καί +διά +εὐδοκία +ὁ +Χριστός +κηρύσσω +μέν +ὁ +ἐκ +ἀγάπη +οἶδα +ὅτι +εἰς +ἀπολογία +ὁ +εὐαγγέλιον +κεῖμαι +δέ +ὁ +ἐκ +ἐριθεία +ὁ +Χριστός +καταγγέλλω +οὐ +ἁγνῶς +οἴομαι +θλῖψις +ἐγείρω +ὁ +δεσμός +ἐγώ +γάρ +τίς +πλήν +ὅτι +πᾶς +τρόπος +εἴτε +πρόφασις +εἴτε +ἀλήθεια +Χριστός +καταγγέλλω +καί +ἐν +οὗτος +χαίρω +ἀλλά +καί +χαίρω +γάρ +οἶδα +ὅτι +οὗτος +ἐγώ +ἀποβαίνω +εἰς +σωτηρία +διά +ὁ +σύ +δέησις +καί +ἐπιχορηγία +ὁ +πνεῦμα +Ἰησοῦς +Χριστός +κατά +ὁ +ἀποκαραδοκία +καί +ἐλπίς +ἐγώ +ὅτι +ἐν +οὐδείς +αἰσχύνω +ἀλλά +ἐν +πᾶς +παρρησία +ὡς +πάντοτε +καί +νῦν +μεγαλύνω +Χριστός +ἐν +ὁ +σῶμα +ἐγώ +εἴτε +διά +ζωή +εἴτε +διά +θάνατος +γάρ +ἐγώ +ὁ +ζάω +Χριστός +καί +ὁ +ἀποθνῄσκω +κέρδος +δέ +εἰ +ὁ +ζάω +ἐν +σάρξ +οὗτος +ἐγώ +καρπός +ἔργον +καί +τίς +αἱρέω +οὐ +γνωρίζω +δέ +συνέχω +ἐκ +ὁ +δύο +ὁ +ἐπιθυμία +ἔχω +εἰς +ὁ +ἀναλύω +καί +σύν +Χριστός +εἰμί +γάρ +πολύς +μᾶλλον +κρείττων +δέ +ὁ +ἐπιμένω +ὁ +σάρξ +ἀναγκαῖος +διά +σύ +καί +οὗτος +πείθω +οἶδα +ὅτι +μένω +καί +παραμένω +πᾶς +σύ +εἰς +ὁ +σύ +προκοπή +καί +χαρά +ὁ +πίστις +ἵνα +ὁ +καύχημα +σύ +περισσεύω +ἐν +Χριστός +Ἰησοῦς +ἐν +ἐγώ +διά +ὁ +ἐμός +παρουσία +πάλιν +πρός +σύ +μόνος +ἀξίως +ὁ +εὐαγγέλιον +ὁ +Χριστός +πολιτεύομαι +ἵνα +εἴτε +ἔρχομαι +καί +ὁράω +σύ +εἴτε +ἄπειμι (I) +ἀκούω +ὁ +περί +σύ +ὅτι +στήκω +ἐν +εἷς +πνεῦμα +εἷς +ψυχή +συναθλέω +ὁ +πίστις +ὁ +εὐαγγέλιον +καί +μή +πτύρω +ἐν +μηδείς +ὑπό +ὁ +ἀντίκειμαι +ὅστις +εἰμί +αὐτός +ἔνδειξις +ἀπώλεια +δέ +σύ +σωτηρία +καί +οὗτος +ἀπό +θεός +ὅτι +σύ +χαρίζομαι +ὁ +ὑπέρ +Χριστός +οὐ +μόνος +ὁ +εἰς +αὐτός +πιστεύω +ἀλλά +καί +ὁ +ὑπέρ +αὐτός +πάσχω +ἔχω +ὁ +αὐτός +ἀγών +οἷος +ὁράω +ἐν +ἐγώ +καί +νῦν +ἀκούω +ἐν +ἐγώ +οὖν +εἰ +τὶς +παράκλησις +ἐν +Χριστός +εἰ +τὶς +παραμύθιον +ἀγάπη +εἰ +τὶς +κοινωνία +πνεῦμα +εἰ +τὶς +σπλάγχνον +καί +οἰκτιρμός +πληρόω +ἐγώ +ὁ +χαρά +ἵνα +ὁ +αὐτός +φρονέω +ὁ +αὐτός +ἀγάπη +ἔχω +σύμψυχος +ὁ +εἷς +φρονέω +μηδείς +κατά +ἐριθεία +μηδέ +κατά +κενοδοξία +ἀλλά +ὁ +ταπεινοφροσύνη +ἀλλήλων +ἡγέομαι +ὑπερέχω +ἑαυτοῦ +μή +ὁ +ἑαυτοῦ +ἕκαστος +σκοπέω +ἀλλά +καί +ὁ +ἕτερος +ἕκαστος +οὗτος +φρονέω +ἐν +σύ +ὅς +καί +ἐν +Χριστός +Ἰησοῦς +ὅς +ἐν +μορφή +θεός +ὑπάρχω +οὐ +ἁρπαγμός +ἡγέομαι +ὁ +εἰμί +ἴσος +θεός +ἀλλά +ἑαυτοῦ +κενόω +μορφή +δοῦλος (II) +λαμβάνω +ἐν +ὁμοίωμα +ἄνθρωπος +γίνομαι +καί +σχῆμα +εὑρίσκω +ὡς +ἄνθρωπος +ταπεινόω +ἑαυτοῦ +γίνομαι +ὑπήκοος +μέχρι +θάνατος +δέ +θάνατος +σταυρός +διό +καί +ὁ +θεός +αὐτός +ὑπερυψόω +καί +χαρίζομαι +αὐτός +ὁ +ὄνομα +ὁ +ὑπέρ +πᾶς +ὄνομα +ἵνα +ἐν +ὁ +ὄνομα +Ἰησοῦς +κάμπτω +πᾶς +γόνυ +ἐπουράνιος +καί +ἐπίγειος +καί +καταχθόνιος +καί +πᾶς +γλῶσσα +ἐξομολογέω +ὅτι +κύριος +Ἰησοῦς +Χριστός +εἰς +δόξα +θεός +πατήρ +ὥστε +ἀγαπητός +ἐγώ +καθώς +πάντοτε +ὑπακούω +ὡς +μή +ἐν +ὁ +παρουσία +ἐγώ +μόνος +ἀλλά +νῦν +πολύς +μᾶλλον +ἐν +ὁ +ἀπουσία +ἐγώ +μετά +φόβος +καί +τρόμος +ὁ +ἑαυτοῦ +σωτηρία +κατεργάζομαι +γάρ +θεός +εἰμί +ὁ +ἐνεργέω +ἐν +σύ +καί +ὁ +θέλω +καί +ὁ +ἐνεργέω +ὑπέρ +ὁ +εὐδοκία +πᾶς +ποιέω +χωρίς +γογγυσμός +καί +διαλογισμός +ἵνα +γίνομαι +ἄμεμπτος +καί +ἀκέραιος +τέκνον +θεός +ἄμωμος +μέσος +γενεά +σκολιός +καί +διαστρέφω +ἐν +ὅς +φαίνω +ὡς +φωστήρ +ἐν +κόσμος +λόγος +ζωή +ἐπέχω +εἰς +καύχημα +ἐγώ +εἰς +ἡμέρα +Χριστός +ὅτι +οὐ +εἰς +κενός +τρέχω +οὐδέ +εἰς +κενός +κοπιάω +ἀλλά +εἰ +καί +σπένδω +ἐπί +ὁ +θυσία +καί +λειτουργία +ὁ +πίστις +σύ +χαίρω +καί +συγχαίρω +πᾶς +σύ +δέ +ὁ +αὐτός +καί +σύ +χαίρω +καί +συγχαίρω +ἐγώ +δέ +ἐλπίζω +ἐν +κύριος +Ἰησοῦς +Τιμόθεος +ταχέως +πέμπω +σύ +ἵνα +κἀγώ +εὐψυχέω +γινώσκω +ὁ +περί +σύ +γάρ +οὐδείς +ἰσόψυχος +ἔχω +ὅστις +γνησίως +ὁ +περί +σύ +μεριμνάω +γάρ +ὁ +πᾶς +ὁ +ἑαυτοῦ +ζητέω +οὐ +ὁ +Χριστός +Ἰησοῦς +δέ +ὁ +δοκιμή +αὐτός +γινώσκω +ὅτι +ὡς +πατήρ +τέκνον +σύν +ἐγώ +δουλεύω +εἰς +ὁ +εὐαγγέλιον +οὖν +μέν +ἐλπίζω +οὗτος +πέμπω +ὡς +ἄν +ἀφοράω +ὁ +περί +ἐγώ +ἐξαυτῆς +δέ +πείθω +ἐν +κύριος +ὅτι +καί +αὐτός +ταχέως +ἔρχομαι +δέ +ἡγέομαι +ἀναγκαῖος +Ἐπαφρόδιτος +ὁ +ἀδελφός +καί +συνεργός +καί +συστρατιώτης +ἐγώ +δέ +σύ +ἀπόστολος +καί +λειτουργός +ὁ +χρεία +ἐγώ +πέμπω +πρός +σύ +ἐπειδή +ἐπιποθέω +εἰμί +πᾶς +σύ +καί +ἀδημονέω +διότι +ἀκούω +ὅτι +ἀσθενέω +γάρ +καί +ἀσθενέω +παραπλήσιος +θάνατος +ἀλλά +ὁ +θεός +ἐλεέω +αὐτός +δέ +οὐ +αὐτός +μόνος +ἀλλά +καί +ἐγώ +ἵνα +μή +λύπη +ἐπί +λύπη +ἔχω +οὖν +σπουδαίως +πέμπω +αὐτός +ἵνα +ὁράω +αὐτός +πάλιν +χαίρω +κἀγώ +ἄλυπος +εἰμί +οὖν +προσδέχομαι +αὐτός +ἐν +κύριος +μετά +πᾶς +χαρά +καί +ὁ +τοιοῦτος +ἔντιμος +ἔχω +ὅτι +διά +ὁ +ἔργον +Χριστός +μέχρι +θάνατος +ἐγγίζω +παραβολεύομαι +ὁ +ψυχή +ἵνα +ἀναπληρόω +ὁ +σύ +ὑστέρημα +ὁ +πρός +ἐγώ +λειτουργία +ἀδελφός +ἐγώ +ὁ +λοιπός +χαίρω +ἐν +κύριος +ὁ +αὐτός +γράφω +σύ +μέν +ἐγώ +οὐ +ὀκνηρός +δέ +σύ +ἀσφαλής +βλέπω +ὁ +κύων +βλέπω +ὁ +κακός +ἐργάτης +βλέπω +ὁ +κατατομή +γάρ +εἰμί +ὁ +περιτομή +ἐγώ +ὁ +πνεῦμα +θεός +λατρεύω +καί +καυχάομαι +ἐν +Χριστός +Ἰησοῦς +καί +οὐ +ἐν +σάρξ +πείθω +καίπερ +ἐγώ +ἔχω +πεποίθησις +καί +ἐν +σάρξ +εἰ +τὶς +ἄλλος +δοκέω +πείθω +ἐν +σάρξ +ἐγώ +μᾶλλον +περιτομή +ὀκταήμερος +ἐκ +γένος +Ἰσραήλ +φυλή +Βενιαμίν +Ἑβραῖος +ἐκ +Ἑβραῖος +κατά +νόμος +Φαρισαῖος +κατά +ζῆλος +διώκω +ὁ +ἐκκλησία +κατά +δικαιοσύνη +ὁ +ἐν +νόμος +γίνομαι +ἄμεμπτος +ἀλλά +ὅστις +εἰμί +ἐγώ +κέρδος +οὗτος +ἡγέομαι +διά +ὁ +Χριστός +ζημία +ἀλλά +μέν +οὖν +γέ +καί +ἡγέομαι +πᾶς +ζημία +εἰμί +διά +ὁ +ὑπερέχω +ὁ +γνῶσις +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +διά +ὅς +ὁ +πᾶς +ζημιόω +καί +ἡγέομαι +σκύβαλον +ἵνα +Χριστός +κερδαίνω +καί +εὑρίσκω +ἐν +αὐτός +ἔχω +μή +ἐμός +δικαιοσύνη +ὁ +ἐκ +νόμος +ἀλλά +ὁ +διά +πίστις +Χριστός +ὁ +ἐκ +θεός +δικαιοσύνη +ἐπί +ὁ +πίστις +ὁ +γινώσκω +αὐτός +καί +ὁ +δύναμις +ὁ +ἀνάστασις +αὐτός +καί +κοινωνία +πάθημα +αὐτός +συμμορφίζω +ὁ +θάνατος +αὐτός +εἰ +πῶς +καταντάω +εἰς +ὁ +ἐξανάστασις +ὁ +ἐκ +νεκρός +οὐ +ὅτι +ἤδη +λαμβάνω +ἤ +ἤδη +τελειόω +δέ +διώκω +εἰ +καί +καταλαμβάνω +ἐπί +ὅς +καί +καταλαμβάνω +ὑπό +Χριστός +Ἰησοῦς +ἀδελφός +ἐγώ +οὔπω +λογίζομαι +ἐμαυτοῦ +καταλαμβάνω +δέ +εἷς +μέν +ὁ +ὀπίσω +ἐπιλανθάνομαι +δέ +ὁ +ἔμπροσθεν +ἐπεκτείνομαι +κατά +σκοπός +διώκω +εἰς +ὁ +βραβεῖον +ὁ +ἄνω +κλῆσις +ὁ +θεός +ἐν +Χριστός +Ἰησοῦς +οὖν +ὅσος +τέλειος +οὗτος +φρονέω +καί +εἰ +τὶς +ἑτέρως +φρονέω +καί +οὗτος +ὁ +θεός +σύ +ἀποκαλύπτω +πλήν +εἰς +ὅς +φθάνω +ὁ +αὐτός +στοιχέω +ἀδελφός +συμμιμητής +ἐγώ +γίνομαι +καί +σκοπέω +ὁ +οὕτω +περιπατέω +καθώς +ἔχω +τύπος +ἐγώ +γάρ +πολύς +περιπατέω +ὅς +πολλάκις +λέγω +σύ +δέ +νῦν +καί +κλαίω +λέγω +ὁ +ἐχθρός +ὁ +σταυρός +ὁ +Χριστός +ὅς +ὁ +τέλος +ἀπώλεια +ὅς +ὁ +θεός +ὁ +κοιλία +καί +ὁ +δόξα +ἐν +ὁ +αἰσχύνη +αὐτός +ὁ +ὁ +ἐπίγειος +φρονέω +γάρ +ἐγώ +ὁ +πολίτευμα +ἐν +οὐρανός +ὑπάρχω +ἐκ +ὅς +καί +ἀπεκδέχομαι +σωτήρ +κύριος +Ἰησοῦς +Χριστός +ὅς +μετασχηματίζω +ὁ +σῶμα +ὁ +ταπείνωσις +ἐγώ +σύμμορφος +ὁ +σῶμα +ὁ +δόξα +αὐτός +κατά +ὁ +ἐνέργεια +ὁ +δύναμαι +αὐτός +καί +ὑποτάσσω +αὐτός +ὁ +πᾶς +ὥστε +ἀδελφός +ἐγώ +ἀγαπητός +καί +ἐπιπόθητος +χαρά +καί +στέφανος +ἐγώ +οὕτω +στήκω +ἐν +κύριος +ἀγαπητός +Εὐοδία +παρακαλέω +καί +Συντύχη +παρακαλέω +ὁ +αὐτός +φρονέω +ἐν +κύριος +ναί +ἐρωτάω +καί +σύ +γνήσιος +σύζυγος +συλλαμβάνω +αὐτός +ὅστις +ἐν +ὁ +εὐαγγέλιον +συναθλέω +ἐγώ +μετά +καί +Κλήμης +καί +ὁ +λοιπός +συνεργός +ἐγώ +ὅς +ὁ +ὄνομα +ἐν +βίβλος +ζωή +χαίρω +ἐν +κύριος +πάντοτε +πάλιν +εἶπον +χαίρω +ὁ +ἐπιεικής +σύ +γινώσκω +πᾶς +ἄνθρωπος +ὁ +κύριος +ἐγγύς +μηδείς +μεριμνάω +ἀλλά +ἐν +πᾶς +ὁ +προσευχή +καί +ὁ +δέησις +μετά +εὐχαριστία +ὁ +αἴτημα +σύ +γνωρίζω +πρός +ὁ +θεός +καί +ὁ +εἰρήνη +ὁ +θεός +ὁ +ὑπερέχω +πᾶς +νοῦς +φρουρέω +ὁ +καρδία +σύ +καί +ὁ +νόημα +σύ +ἐν +Χριστός +Ἰησοῦς +ἀδελφός +ὁ +λοιπός +ὅσος +εἰμί +ἀληθής +ὅσος +σεμνός +ὅσος +δίκαιος +ὅσος +ἁγνός +ὅσος +προσφιλής +ὅσος +εὔφημος +εἰ +τὶς +ἀρετή +καί +εἰ +τὶς +ἔπαινος +οὗτος +λογίζομαι +ὅς +καί +μανθάνω +καί +παραλαμβάνω +καί +ἀκούω +καί +ὁράω +ἐν +ἐγώ +οὗτος +πράσσω +καί +ὁ +θεός +ὁ +εἰρήνη +εἰμί +μετά +σύ +δέ +χαίρω +ἐν +κύριος +μεγάλως +ὅτι +ἤδη +ποτέ +ἀναθάλλω +ὁ +ὑπέρ +ἐγώ +φρονέω +ἐπί +ὅς +καί +φρονέω +δέ +ἀκαιρέομαι +οὐ +ὅτι +κατά +ὑστέρησις +λέγω +γάρ +ἐγώ +μανθάνω +ἐν +ὅς +εἰμί +αὐτάρκης +εἰμί +οἶδα +καί +ταπεινόω +οἶδα +καί +περισσεύω +ἐν +πᾶς +καί +ἐν +πᾶς +μυέω +καί +χορτάζω +καί +πεινάω +καί +περισσεύω +καί +ὑστερέω +πᾶς +ἰσχύω +ἐν +ὁ +ἐνδυναμόω +ἐγώ +πλήν +καλῶς +ποιέω +συγκοινωνέω +ἐγώ +ὁ +θλῖψις +δέ +Φιλιππήσιος +οἶδα +καί +σύ +ὅτι +ὅτε +ἐξέρχομαι +ἀπό +Μακεδονία +ἐν +ἀρχή +ὁ +εὐαγγέλιον +οὐδείς +ἐκκλησία +ἐγώ +κοινωνέω +εἰς +λόγος +δόσις +καί +λῆμψις +εἰ +μή +σύ +μόνος +ὅτι +καί +ἐν +Θεσσαλονίκη +καί +ἅπαξ +καί +δίς +εἰς +ὁ +χρεία +ἐγώ +πέμπω +οὐ +ὅτι +ἐπιζητέω +ὁ +δόμα +ἀλλά +ἐπιζητέω +ὁ +καρπός +ὁ +πλεονάζω +εἰς +λόγος +σύ +δέ +ἀπέχω +πᾶς +καί +περισσεύω +πληρόω +δέχομαι +παρά +Ἐπαφρόδιτος +ὁ +παρά +σύ +ὀσμή +εὐωδία +θυσία +δεκτός +εὐάρεστος +ὁ +θεός +δέ +ὁ +θεός +ἐγώ +πληρόω +πᾶς +χρεία +σύ +κατά +ὁ +πλοῦτος +αὐτός +ἐν +δόξα +ἐν +Χριστός +Ἰησοῦς +δέ +ὁ +θεός +καί +πατήρ +ἐγώ +ὁ +δόξα +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +ἀσπάζομαι +πᾶς +ἅγιος +ἐν +Χριστός +Ἰησοῦς +ἀσπάζομαι +σύ +ὁ +σύν +ἐγώ +ἀδελφός +ἀσπάζομαι +σύ +πᾶς +ὁ +ἅγιος +δέ +μάλιστα +ὁ +ἐκ +ὁ +Καῖσαρ +οἰκία +ὁ +χάρις +ὁ +κύριος +Ἰησοῦς +Χριστός +μετά +ὁ +πνεῦμα +σύ +Παῦλος +ἀπόστολος +Χριστός +Ἰησοῦς +διά +θέλημα +θεός +καί +Τιμόθεος +ὁ +ἀδελφός +ὁ +ἐν +Κολοσσαί +ἅγιος +καί +πιστός +ἀδελφός +ἐν +Χριστός +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +εὐχαριστέω +ὁ +θεός +πατήρ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +πάντοτε +περί +σύ +προσεύχομαι +ἀκούω +ὁ +πίστις +σύ +ἐν +Χριστός +Ἰησοῦς +καί +ὁ +ἀγάπη +ὅς +ἔχω +εἰς +πᾶς +ὁ +ἅγιος +διά +ὁ +ἐλπίς +ὁ +ἀπόκειμαι +σύ +ἐν +ὁ +οὐρανός +ὅς +προακούω +ἐν +ὁ +λόγος +ὁ +ἀλήθεια +ὁ +εὐαγγέλιον +ὁ +πάρειμι +εἰς +σύ +καθώς +καί +ἐν +πᾶς +ὁ +κόσμος +εἰμί +καρποφορέω +καί +αὐξάνω +καθώς +καί +ἐν +σύ +ἀπό +ὅς +ἡμέρα +ἀκούω +καί +ἐπιγινώσκω +ὁ +χάρις +ὁ +θεός +ἐν +ἀλήθεια +καθώς +μανθάνω +ἀπό +Ἐπαφρᾶς +ὁ +ἀγαπητός +σύνδουλος +ἐγώ +ὅς +εἰμί +πιστός +ὑπέρ +σύ +διάκονος +ὁ +Χριστός +ὁ +καί +δηλόω +ἐγώ +ὁ +σύ +ἀγάπη +ἐν +πνεῦμα +διά +οὗτος +καί +ἐγώ +ἀπό +ὅς +ἡμέρα +ἀκούω +οὐ +παύω +ὑπέρ +σύ +προσεύχομαι +καί +αἰτέω +ἵνα +πληρόω +ὁ +ἐπίγνωσις +ὁ +θέλημα +αὐτός +ἐν +πᾶς +σοφία +καί +σύνεσις +πνευματικός +περιπατέω +ἀξίως +ὁ +κύριος +εἰς +πᾶς +ἀρεσκεία +ἐν +πᾶς +ἔργον +ἀγαθός +καρποφορέω +καί +αὐξάνω +ὁ +ἐπίγνωσις +ὁ +θεός +ἐν +πᾶς +δύναμις +δυναμόω +κατά +ὁ +κράτος +ὁ +δόξα +αὐτός +εἰς +πᾶς +ὑπομονή +καί +μακροθυμία +μετά +χαρά +εὐχαριστέω +ὁ +πατήρ +ὁ +ἱκανόω +σύ +εἰς +ὁ +μερίς +ὁ +κλῆρος +ὁ +ἅγιος +ἐν +ὁ +φῶς +ὅς +ῥύομαι +ἐγώ +ἐκ +ὁ +ἐξουσία +ὁ +σκότος +καί +μεθίστημι +εἰς +ὁ +βασιλεία +ὁ +υἱός +ὁ +ἀγάπη +αὐτός +ἐν +ὅς +ἔχω +ὁ +ἀπολύτρωσις +ὁ +ἄφεσις +ὁ +ἁμαρτία +ὅς +εἰμί +εἰκών +ὁ +θεός +ὁ +ἀόρατος +πρωτότοκος +πᾶς +κτίσις +ὅτι +ἐν +αὐτός +κτίζω +ὁ +πᾶς +ἐν +ὁ +οὐρανός +καί +ἐπί +ὁ +γῆ +ὁ +ὁρατός +καί +ὁ +ἀόρατος +εἴτε +θρόνος +εἴτε +κυριότης +εἴτε +ἀρχή +εἴτε +ἐξουσία +ὁ +πᾶς +διά +αὐτός +καί +εἰς +αὐτός +κτίζω +καί +αὐτός +εἰμί +πρό +πᾶς +καί +ὁ +πᾶς +ἐν +αὐτός +συνίστημι +καί +αὐτός +εἰμί +ὁ +κεφαλή +ὁ +σῶμα +ὁ +ἐκκλησία +ὅς +εἰμί +ἀρχή +πρωτότοκος +ἐκ +ὁ +νεκρός +ἵνα +γίνομαι +αὐτός +ἐν +πᾶς +πρωτεύω +ὅτι +εὐδοκέω +ἐν +αὐτός +πᾶς +ὁ +πλήρωμα +κατοικέω +καί +διά +αὐτός +ἀποκαταλλάσσω +ὁ +πᾶς +εἰς +αὐτός +εἰρηνοποιέω +διά +ὁ +αἷμα +ὁ +σταυρός +αὐτός +διά +αὐτός +εἴτε +ὁ +ἐπί +ὁ +γῆ +εἴτε +ὁ +ἐν +ὁ +οὐρανός +καί +σύ +ποτέ +εἰμί +ἀπαλλοτριόω +καί +ἐχθρός +ὁ +διάνοια +ἐν +ὁ +ἔργον +ὁ +πονηρός +δέ +νυνί +ἀποκαταλλάσσω +ἐν +ὁ +σῶμα +ὁ +σάρξ +αὐτός +διά +ὁ +θάνατος +παρίστημι +σύ +ἅγιος +καί +ἄμωμος +καί +ἀνέγκλητος +κατενώπιον +αὐτός +εἰ +γέ +ἐπιμένω +ὁ +πίστις +θεμελιόω +καί +ἑδραῖος +καί +μή +μετακινέω +ἀπό +ὁ +ἐλπίς +ὁ +εὐαγγέλιον +ὅς +ἀκούω +ὁ +κηρύσσω +ἐν +πᾶς +κτίσις +ὁ +ὑπό +ὁ +οὐρανός +ὅς +διάκονος +γίνομαι +ἐγώ +Παῦλος +νῦν +χαίρω +ἐν +ὁ +πάθημα +ὑπέρ +σύ +καί +ἀνταναπληρόω +ὁ +ὑστέρημα +ὁ +θλῖψις +ὁ +Χριστός +ἐν +ὁ +σάρξ +ἐγώ +ὑπέρ +ὁ +σῶμα +αὐτός +ὅς +εἰμί +ὁ +ἐκκλησία +ὅς +διάκονος +γίνομαι +ἐγώ +κατά +ὁ +οἰκονομία +ὁ +θεός +ὁ +δίδωμι +ἐγώ +εἰς +σύ +πληρόω +ὁ +λόγος +ὁ +θεός +ὁ +μυστήριον +ὁ +ἀποκρύπτω +ἀπό +ὁ +αἰών +καί +ἀπό +ὁ +γενεά +δέ +νῦν +φανερόω +ὁ +ἅγιος +αὐτός +ὅς +θέλω +ὁ +θεός +γνωρίζω +τίς +ὁ +πλοῦτος +ὁ +δόξα +ὁ +μυστήριον +οὗτος +ἐν +ὁ +ἔθνος +ὅς +εἰμί +Χριστός +ἐν +σύ +ὁ +ἐλπίς +ὁ +δόξα +ὅς +ἐγώ +καταγγέλλω +νουθετέω +πᾶς +ἄνθρωπος +καί +διδάσκω +πᾶς +ἄνθρωπος +ἐν +πᾶς +σοφία +ἵνα +παρίστημι +πᾶς +ἄνθρωπος +τέλειος +ἐν +Χριστός +εἰς +ὅς +καί +κοπιάω +ἀγωνίζομαι +κατά +ὁ +ἐνέργεια +αὐτός +ὁ +ἐνεργέω +ἐν +ἐγώ +ἐν +δύναμις +γάρ +θέλω +σύ +οἶδα +ἡλίκος +ἀγών +ἔχω +ὑπέρ +σύ +καί +ὁ +ἐν +Λαοδίκεια +καί +ὅσος +οὐ +ὁράω +ὁ +πρόσωπον +ἐγώ +ἐν +σάρξ +ἵνα +παρακαλέω +ὁ +καρδία +αὐτός +συμβιβάζω +ἐν +ἀγάπη +καί +εἰς +πᾶς +πλοῦτος +ὁ +πληροφορία +ὁ +σύνεσις +εἰς +ἐπίγνωσις +ὁ +μυστήριον +ὁ +θεός +Χριστός +ἐν +ὅς +εἰμί +πᾶς +ὁ +θησαυρός +ὁ +σοφία +καί +γνῶσις +ἀπόκρυφος +οὗτος +λέγω +ἵνα +μηδείς +σύ +παραλογίζομαι +ἐν +πιθανολογία +γάρ +εἰ +καί +ὁ +σάρξ +ἄπειμι (I) +ἀλλά +ὁ +πνεῦμα +σύν +σύ +εἰμί +χαίρω +καί +βλέπω +σύ +ὁ +τάξις +καί +ὁ +στερέωμα +ὁ +εἰς +Χριστός +πίστις +σύ +οὖν +ὡς +παραλαμβάνω +ὁ +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐν +αὐτός +περιπατέω +ῥιζόω +καί +ἐποικοδομέω +ἐν +αὐτός +καί +βεβαιόω +ὁ +πίστις +καθώς +διδάσκω +περισσεύω +ἐν +εὐχαριστία +βλέπω +μή +τὶς +εἰμί +ὁ +συλαγωγέω +σύ +διά +ὁ +φιλοσοφία +καί +κενός +ἀπάτη +κατά +ὁ +παράδοσις +ὁ +ἄνθρωπος +κατά +ὁ +στοιχεῖον +ὁ +κόσμος +καί +οὐ +κατά +Χριστός +ὅτι +ἐν +αὐτός +κατοικέω +πᾶς +ὁ +πλήρωμα +ὁ +θεότης +σωματικῶς +καί +εἰμί +πληρόω +ἐν +αὐτός +ὅς +εἰμί +ὁ +κεφαλή +πᾶς +ἀρχή +καί +ἐξουσία +ἐν +ὅς +καί +περιτέμνω +περιτομή +ἀχειροποίητος +ἐν +ὁ +ἀπέκδυσις +ὁ +σῶμα +ὁ +σάρξ +ἐν +ὁ +περιτομή +ὁ +Χριστός +συνθάπτω +αὐτός +ἐν +ὁ +βάπτισμα +ἐν +ὅς +καί +συνεγείρω +διά +ὁ +πίστις +ὁ +ἐνέργεια +ὁ +θεός +ὁ +ἐγείρω +αὐτός +ἐκ +νεκρός +καί +σύ +νεκρός +εἰμί +ὁ +παράπτωμα +καί +ὁ +ἀκροβυστία +ὁ +σάρξ +σύ +συζωοποιέω +σύ +σύν +αὐτός +χαρίζομαι +ἐγώ +πᾶς +ὁ +παράπτωμα +ἐξαλείφω +ὁ +κατά +ἐγώ +χειρόγραφον +ὁ +δόγμα +ὅς +εἰμί +ὑπεναντίος +ἐγώ +καί +αὐτός +αἴρω +ἐκ +ὁ +μέσος +προσηλόω +αὐτός +ὁ +σταυρός +ἀπεκδύομαι +ὁ +ἀρχή +καί +ὁ +ἐξουσία +δειγματίζω +ἐν +παρρησία +θριαμβεύω +αὐτός +ἐν +αὐτός +οὖν +μή +τὶς +σύ +κρίνω +ἐν +βρῶσις +καί +ἐν +πόσις +ἤ +ἐν +μέρος +ἑορτή +ἤ +νεομηνία +ἤ +σάββατον +ὅς +εἰμί +σκιά +ὁ +μέλλω +δέ +ὁ +σῶμα +ὁ +Χριστός +μηδείς +σύ +καταβραβεύω +θέλω +ἐν +ταπεινοφροσύνη +καί +θρησκεία +ὁ +ἄγγελος +ὅς +ὁράω +ἐμβατεύω +εἰκῇ +φυσιόω +ὑπό +ὁ +νοῦς +ὁ +σάρξ +αὐτός +καί +οὐ +κρατέω +ὁ +κεφαλή +ἐκ +ὅς +πᾶς +ὁ +σῶμα +διά +ὁ +ἁφή +καί +σύνδεσμος +ἐπιχορηγέω +καί +συμβιβάζω +αὐξάνω +ὁ +αὔξησις +ὁ +θεός +εἰ +ἀποθνῄσκω +σύν +Χριστός +ἀπό +ὁ +στοιχεῖον +ὁ +κόσμος +τίς +ὡς +ζάω +ἐν +κόσμος +δογματίζω +μή +ἅπτω +μηδέ +γεύομαι +μηδέ +θιγγάνω +ὅς +εἰμί +πᾶς +εἰς +φθορά +ὁ +ἀπόχρησις +κατά +ὁ +ἔνταλμα +καί +διδασκαλία +ὁ +ἄνθρωπος +ὅστις +εἰμί +μέν +ἔχω +λόγος +σοφία +ἐν +ἐθελοθρησκία +καί +ταπεινοφροσύνη +καί +ἀφειδία +σῶμα +οὐ +ἐν +τιμή +τὶς +πρός +πλησμονή +ὁ +σάρξ +οὖν +εἰ +συνεγείρω +ὁ +Χριστός +ὁ +ἄνω +ζητέω +οὗ +ὁ +Χριστός +εἰμί +κάθημαι +ἐν +δεξιός +ὁ +θεός +ὁ +ἄνω +φρονέω +μή +ὁ +ἐπί +ὁ +γῆ +γάρ +ἀποθνῄσκω +καί +ὁ +ζωή +σύ +κρύπτω +σύν +ὁ +Χριστός +ἐν +ὁ +θεός +ὅταν +φανερόω +ὁ +Χριστός +ὁ +ζωή +ἐγώ +τότε +καί +σύ +σύν +αὐτός +φανερόω +ἐν +δόξα +οὖν +νεκρόω +ὁ +μέλος +ὁ +ἐπί +ὁ +γῆ +πορνεία +ἀκαθαρσία +πάθος +ἐπιθυμία +κακός +καί +ὁ +πλεονεξία +ὅστις +εἰμί +εἰδωλολατρία +διά +ὅς +ἔρχομαι +ὁ +ὀργή +ὁ +θεός +ἐν +ὅς +καί +σύ +περιπατέω +ποτέ +ὅτε +ζάω +ἐν +οὗτος +δέ +νυνί +ἀποτίθημι +καί +σύ +ὁ +πᾶς +ὀργή +θυμός +κακία +βλασφημία +αἰσχρολογία +ἐκ +ὁ +στόμα +σύ +μή +ψεύδομαι +εἰς +ἀλλήλων +ἀπεκδύομαι +ὁ +παλαιός +ἄνθρωπος +σύν +ὁ +πρᾶξις +αὐτός +καί +ἐνδύω +ὁ +νέος +ὁ +ἀνακαινόω +εἰς +ἐπίγνωσις +κατά +εἰκών +ὁ +κτίζω +αὐτός +ὅπου +οὐ +ἔνι +Ἕλλην +καί +Ἰουδαῖος +περιτομή +καί +ἀκροβυστία +βάρβαρος +Σκύθης +δοῦλος (II) +ἐλεύθερος +ἀλλά +πᾶς +καί +ἐν +πᾶς +Χριστός +οὖν +ἐνδύω +ὡς +ἐκλεκτός +ὁ +θεός +ἅγιος +καί +ἀγαπάω +σπλάγχνον +οἰκτιρμός +χρηστότης +ταπεινοφροσύνη +πραΰτης +μακροθυμία +ἀνέχω +ἀλλήλων +καί +χαρίζομαι +ἑαυτοῦ +ἐάν +τὶς +πρός +τὶς +ἔχω +μομφή +καθώς +καί +ὁ +κύριος +χαρίζομαι +σύ +οὕτω +καί +σύ +δέ +ἐπί +πᾶς +οὗτος +ὁ +ἀγάπη +ὅς +εἰμί +σύνδεσμος +ὁ +τελειότης +καί +ὁ +εἰρήνη +ὁ +Χριστός +βραβεύω +ἐν +ὁ +καρδία +σύ +εἰς +ὅς +καί +καλέω +ἐν +εἷς +σῶμα +καί +εὐχάριστος +γίνομαι +ὁ +λόγος +ὁ +Χριστός +ἐνοικέω +ἐν +σύ +πλουσίως +ἐν +πᾶς +σοφία +διδάσκω +καί +νουθετέω +ἑαυτοῦ +ψαλμός +ὕμνος +ᾠδή +πνευματικός +ἐν +ὁ +χάρις +ᾄδω +ἐν +ὁ +καρδία +σύ +ὁ +θεός +καί +πᾶς +τὶς +ἐάν +ὅς +ποιέω +ἐν +λόγος +ἤ +ἐν +ἔργον +πᾶς +ἐν +ὄνομα +κύριος +Ἰησοῦς +εὐχαριστέω +ὁ +θεός +πατήρ +διά +αὐτός +ὁ +γυνή +ὑποτάσσω +ὁ +ἀνήρ +ὡς +ἀνήκω +ἐν +κύριος +ὁ +ἀνήρ +ἀγαπάω +ὁ +γυνή +καί +μή +πικραίνω +πρός +αὐτός +ὁ +τέκνον +ὑπακούω +ὁ +γονεύς +κατά +πᾶς +γάρ +οὗτος +εὐάρεστος +εἰμί +ἐν +κύριος +ὁ +πατήρ +μή +ἐρεθίζω +ὁ +τέκνον +σύ +ἵνα +μή +ἀθυμέω +ὁ +δοῦλος (II) +ὑπακούω +κατά +πᾶς +ὁ +κατά +σάρξ +κύριος +μή +ἐν +ὀφθαλμοδουλία +ὡς +ἀνθρωπάρεσκος +ἀλλά +ἐν +ἁπλότης +καρδία +φοβέω +ὁ +κύριος +ἐάν +ὅς +ποιέω +ἐκ +ψυχή +ἐργάζομαι +ὡς +ὁ +κύριος +καί +οὐ +ἄνθρωπος +οἶδα +ὅτι +ἀπό +κύριος +ἀπολαμβάνω +ὁ +ἀνταπόδοσις +ὁ +κληρονομία +ὁ +κύριος +Χριστός +δουλεύω +γάρ +ὁ +ἀδικέω +κομίζω +ὅς +ἀδικέω +καί +οὐ +εἰμί +προσωπολημψία +ὁ +κύριος +ὁ +δίκαιος +καί +ὁ +ἰσότης +ὁ +δοῦλος (II) +παρέχω +οἶδα +ὅτι +καί +σύ +ἔχω +κύριος +ἐν +οὐρανός +ὁ +προσευχή +προσκαρτερέω +γρηγορέω +ἐν +αὐτός +ἐν +εὐχαριστία +προσεύχομαι +ἅμα +καί +περί +ἐγώ +ἵνα +ὁ +θεός +ἀνοίγω +ἐγώ +θύρα +ὁ +λόγος +λαλέω +ὁ +μυστήριον +ὁ +Χριστός +διά +ὅς +καί +δέω +ἵνα +φανερόω +αὐτός +ὡς +δεῖ +ἐγώ +λαλέω +ἐν +σοφία +περιπατέω +πρός +ὁ +ἔξω +ὁ +καιρός +ἐξαγοράζω +ὁ +λόγος +σύ +πάντοτε +ἐν +χάρις +ἅλας +ἀρτύω +οἶδα +πῶς +δεῖ +σύ +εἷς +ἕκαστος +ἀποκρίνομαι +ὁ +κατά +ἐγώ +πᾶς +γνωρίζω +σύ +Τυχικός +ὁ +ἀγαπητός +ἀδελφός +καί +πιστός +διάκονος +καί +σύνδουλος +ἐν +κύριος +ὅς +πέμπω +πρός +σύ +εἰς +αὐτός +οὗτος +ἵνα +γινώσκω +ὁ +περί +ἐγώ +καί +παρακαλέω +ὁ +καρδία +σύ +σύν +Ὀνήσιμος +ὁ +πιστός +καί +ἀγαπητός +ἀδελφός +ὅς +εἰμί +ἐκ +σύ +σύ +γνωρίζω +πᾶς +ὁ +ὧδε +ἀσπάζομαι +σύ +Ἀρίσταρχος +ὁ +συναιχμάλωτος +ἐγώ +καί +Μᾶρκος +ὁ +ἀνεψιός +Βαρναβᾶς +περί +ὅς +λαμβάνω +ἐντολή +ἐάν +ἔρχομαι +πρός +σύ +δέχομαι +αὐτός +καί +Ἰησοῦς +ὁ +λέγω +Ἰοῦστος +ὁ +εἰμί +ἐκ +περιτομή +οὗτος +μόνος +συνεργός +εἰς +ὁ +βασιλεία +ὁ +θεός +ὅστις +γίνομαι +ἐγώ +παρηγορία +ἀσπάζομαι +σύ +Ἐπαφρᾶς +ὁ +ἐκ +σύ +δοῦλος (II) +Χριστός +Ἰησοῦς +πάντοτε +ἀγωνίζομαι +ὑπέρ +σύ +ἐν +ὁ +προσευχή +ἵνα +ἵστημι +τέλειος +καί +πληροφορέω +ἐν +πᾶς +θέλημα +ὁ +θεός +γάρ +μαρτυρέω +αὐτός +ὅτι +ἔχω +πολύς +πόνος +ὑπέρ +σύ +καί +ὁ +ἐν +Λαοδίκεια +καί +ὁ +ἐν +Ἱεράπολις +ἀσπάζομαι +σύ +Λουκᾶς +ὁ +ἰατρός +ὁ +ἀγαπητός +καί +Δημᾶς +ἀσπάζομαι +ὁ +ἐν +Λαοδίκεια +ἀδελφός +καί +Νύμφα +καί +ὁ +κατά +οἶκος +αὐτός +ἐκκλησία +καί +ὅταν +ἀναγινώσκω +παρά +σύ +ὁ +ἐπιστολή +ποιέω +ἵνα +καί +ἐν +ὁ +Λαοδικεύς +ἐκκλησία +ἀναγινώσκω +καί +ἵνα +ὁ +ἐκ +Λαοδίκεια +καί +σύ +ἀναγινώσκω +καί +λέγω +Ἄρχιππος +βλέπω +ὁ +διακονία +ὅς +παραλαμβάνω +ἐν +κύριος +ἵνα +αὐτός +πληρόω +ὁ +ἀσπασμός +ὁ +ἐμός +χείρ +Παῦλος +μνημονεύω +ἐγώ +ὁ +δεσμός +ὁ +χάρις +μετά +σύ +Παῦλος +καί +Σιλουανός +καί +Τιμόθεος +ὁ +ἐκκλησία +Θεσσαλονικεύς +ἐν +θεός +πατήρ +καί +κύριος +Ἰησοῦς +Χριστός +σύ +χάρις +καί +εἰρήνη +εὐχαριστέω +ὁ +θεός +πάντοτε +περί +πᾶς +σύ +μνεία +ποιέω +ἐπί +ὁ +προσευχή +ἐγώ +ἀδιαλείπτως +μνημονεύω +σύ +ὁ +ἔργον +ὁ +πίστις +καί +ὁ +κόπος +ὁ +ἀγάπη +καί +ὁ +ὑπομονή +ὁ +ἐλπίς +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἔμπροσθεν +ὁ +θεός +καί +πατήρ +ἐγώ +οἶδα +ὁ +ἐκλογή +σύ +ἀδελφός +ἀγαπάω +ὑπό +ὁ +θεός +ὅτι +ὁ +εὐαγγέλιον +ἐγώ +γίνομαι +εἰς +σύ +οὐ +ἐν +λόγος +μόνος +ἀλλά +καί +ἐν +δύναμις +καί +ἐν +πνεῦμα +ἅγιος +καί +πληροφορία +πολύς +καθώς +οἶδα +οἷος +γίνομαι +ἐν +σύ +διά +σύ +καί +σύ +γίνομαι +μιμητής +ἐγώ +καί +ὁ +κύριος +δέχομαι +ὁ +λόγος +ἐν +θλῖψις +πολύς +μετά +χαρά +πνεῦμα +ἅγιος +ὥστε +γίνομαι +σύ +τύπος +πᾶς +ὁ +πιστεύω +ἐν +ὁ +Μακεδονία +καί +ἐν +ὁ +Ἀχαΐα +γάρ +ἀπό +σύ +ἐξηχέω +ὁ +λόγος +ὁ +κύριος +οὐ +μόνος +ἐν +ὁ +Μακεδονία +καί +Ἀχαΐα +ἀλλά +ἐν +πᾶς +τόπος +ὁ +πίστις +σύ +ὁ +πρός +ὁ +θεός +ἐξέρχομαι +ὥστε +μή +χρεία +ἔχω +ἐγώ +λαλέω +τὶς +γάρ +αὐτός +περί +ἐγώ +ἀπαγγέλλω +ὁποῖος +εἴσοδος +ἔχω +πρός +σύ +καί +πῶς +ἐπιστρέφω +πρός +ὁ +θεός +ἀπό +ὁ +εἴδωλον +δουλεύω +θεός +ζάω +καί +ἀληθινός +καί +ἀναμένω +ἐκ +ὁ +οὐρανός +ὁ +υἱός +αὐτός +ὅς +ἐγείρω +ἐκ +ὁ +νεκρός +Ἰησοῦς +ὁ +ῥύομαι +ἐγώ +ἐκ +ὁ +ὀργή +ὁ +ἔρχομαι +γάρ +ἀδελφός +αὐτός +οἶδα +ὁ +εἴσοδος +ἐγώ +ὁ +πρός +σύ +ὅτι +οὐ +κενός +γίνομαι +ἀλλά +προπάσχω +καί +ὑβρίζω +ἐν +Φίλιπποι +καθώς +οἶδα +παρρησιάζομαι +ἐν +ὁ +θεός +ἐγώ +λαλέω +πρός +σύ +ὁ +εὐαγγέλιον +ὁ +θεός +ἐν +πολύς +ἀγών +γάρ +ὁ +παράκλησις +ἐγώ +οὐ +ἐκ +πλάνη +οὐδέ +ἐκ +ἀκαθαρσία +οὐδέ +ἐν +δόλος +ἀλλά +καθώς +δοκιμάζω +ὑπό +ὁ +θεός +πιστεύω +ὁ +εὐαγγέλιον +οὕτω +λαλέω +ὡς +ἀρέσκω +οὐ +ἄνθρωπος +ἀλλά +θεός +ὁ +δοκιμάζω +ὁ +καρδία +ἐγώ +γάρ +οὔτε +ποτέ +ἐν +λόγος +κολακεία +γίνομαι +καθώς +οἶδα +οὔτε +ἐν +πρόφασις +πλεονεξία +θεός +μάρτυς +οὔτε +ζητέω +ἐκ +ἄνθρωπος +δόξα +οὔτε +ἀπό +σύ +οὔτε +ἀπό +ἄλλος +δύναμαι +ἐν +βάρος +εἰμί +ὡς +Χριστός +ἀπόστολος +ἀλλά +γίνομαι +ἤπιος +ἐν +μέσος +σύ +ὡς +ἐάν +τροφός +θάλπω +ὁ +ἑαυτοῦ +τέκνον +οὕτω +ὁμείρομαι +σύ +εὐδοκέω +μεταδίδωμι +σύ +οὐ +μόνος +ὁ +εὐαγγέλιον +ὁ +θεός +ἀλλά +καί +ὁ +ἑαυτοῦ +ψυχή +διότι +ἀγαπητός +ἐγώ +γίνομαι +γάρ +ἀδελφός +μνημονεύω +ὁ +κόπος +ἐγώ +καί +ὁ +μόχθος +νύξ +καί +ἡμέρα +ἐργάζομαι +πρός +ὁ +μή +ἐπιβαρέω +τὶς +σύ +κηρύσσω +εἰς +σύ +ὁ +εὐαγγέλιον +ὁ +θεός +μάρτυς +σύ +καί +ὁ +θεός +ὡς +ὁσίως +καί +δικαίως +καί +ἀμέμπτως +σύ +ὁ +πιστεύω +γίνομαι +καθάπερ +οἶδα +ὡς +εἷς +ἕκαστος +σύ +ὡς +πατήρ +τέκνον +ἑαυτοῦ +παρακαλέω +καί +παραμυθέομαι +καί +μαρτύρομαι +σύ +εἰς +ὁ +περιπατέω +σύ +ἀξίως +ὁ +θεός +ὁ +καλέω +σύ +εἰς +ὁ +ἑαυτοῦ +βασιλεία +καί +δόξα +καί +διά +οὗτος +καί +ἐγώ +εὐχαριστέω +ὁ +θεός +ἀδιαλείπτως +ὅτι +παραλαμβάνω +λόγος +ἀκοή +παρά +ἐγώ +ὁ +θεός +δέχομαι +οὐ +λόγος +ἄνθρωπος +ἀλλά +καθώς +ἀληθῶς +εἰμί +λόγος +θεός +ὅς +καί +ἐνεργέω +ἐν +σύ +ὁ +πιστεύω +γάρ +ἀδελφός +σύ +γίνομαι +μιμητής +ὁ +ἐκκλησία +ὁ +θεός +ὁ +εἰμί +ἐν +ὁ +Ἰουδαία +ἐν +Χριστός +Ἰησοῦς +ὅτι +ὁ +αὐτός +πάσχω +καί +σύ +ὑπό +ὁ +ἴδιος +συμφυλέτης +καθώς +καί +αὐτός +ὑπό +ὁ +Ἰουδαῖος +ὁ +ἀποκτείνω +καί +ὁ +κύριος +Ἰησοῦς +καί +ὁ +προφήτης +καί +ἐγώ +ἐκδιώκω +καί +θεός +μή +ἀρέσκω +καί +πᾶς +ἄνθρωπος +ἐναντίος +κωλύω +ἐγώ +ὁ +ἔθνος +λαλέω +ἵνα +σῴζω +εἰς +ὁ +ἀναπληρόω +αὐτός +ὁ +ἁμαρτία +πάντοτε +δέ +φθάνω +ἐπί +αὐτός +ὁ +ὀργή +εἰς +τέλος +δέ +ἀδελφός +ἐγώ +ἀπορφανίζω +ἀπό +σύ +πρός +καιρός +ὥρα +πρόσωπον +οὐ +καρδία +περισσῶς +σπουδάζω +ὁ +πρόσωπον +σύ +ὁράω +ἐν +πολύς +ἐπιθυμία +διότι +θέλω +ἔρχομαι +πρός +σύ +μέν +ἐγώ +Παῦλος +καί +ἅπαξ +καί +δίς +καί +ἐγκόπτω +ἐγώ +ὁ +Σατανᾶς +γάρ +τίς +ἐγώ +ἐλπίς +ἤ +χαρά +ἤ +στέφανος +καύχησις +ἤ +οὐχί +καί +σύ +ἔμπροσθεν +ὁ +κύριος +ἐγώ +Ἰησοῦς +ἐν +ὁ +αὐτός +παρουσία +γάρ +σύ +εἰμί +ὁ +δόξα +ἐγώ +καί +ὁ +χαρά +διό +μηκέτι +στέγω +εὐδοκέω +καταλείπω +ἐν +Ἀθῆναι +μόνος +καί +πέμπω +Τιμόθεος +ὁ +ἀδελφός +ἐγώ +καί +διάκονος +ὁ +θεός +ἐν +ὁ +εὐαγγέλιον +ὁ +Χριστός +εἰς +ὁ +στηρίζω +καί +παρακαλέω +σύ +ὑπέρ +ὁ +πίστις +σύ +ὁ +μηδείς +σαίνω +ἐν +ὁ +θλῖψις +οὗτος +γάρ +αὐτός +οἶδα +ὅτι +εἰς +οὗτος +κεῖμαι +γάρ +καί +ὅτε +πρός +σύ +εἰμί +προλέγω +σύ +ὅτι +μέλλω +θλίβω +καθώς +καί +γίνομαι +καί +οἶδα +διά +οὗτος +κἀγώ +μηκέτι +στέγω +πέμπω +εἰς +ὁ +γινώσκω +ὁ +πίστις +σύ +μή +πῶς +πειράζω +σύ +ὁ +πειράζω +καί +εἰς +κενός +γίνομαι +ὁ +κόπος +ἐγώ +δέ +ἄρτι +ἔρχομαι +Τιμόθεος +πρός +ἐγώ +ἀπό +σύ +καί +εὐαγγελίζω +ἐγώ +ὁ +πίστις +καί +ὁ +ἀγάπη +σύ +καί +ὅτι +ἔχω +μνεία +ἐγώ +ἀγαθός +πάντοτε +ἐπιποθέω +ἐγώ +ὁράω +καθάπερ +καί +ἐγώ +σύ +ἀδελφός +διά +οὗτος +παρακαλέω +ἐπί +σύ +ἐπί +πᾶς +ὁ +ἀνάγκη +καί +θλῖψις +ἐγώ +διά +ὁ +σύ +πίστις +ὅτι +νῦν +ζάω +ἐάν +σύ +στήκω +ἐν +κύριος +γάρ +δύναμαι +τίς +εὐχαριστία +ὁ +θεός +ἀνταποδίδωμι +περί +σύ +ἐπί +πᾶς +ὁ +χαρά +ὅς +χαίρω +διά +σύ +ἔμπροσθεν +ὁ +θεός +ἐγώ +νύξ +καί +ἡμέρα +ὑπερεκπερισσοῦ +δέομαι +εἰς +ὁ +ὁράω +σύ +ὁ +πρόσωπον +καί +καταρτίζω +ὁ +ὑστέρημα +ὁ +πίστις +σύ +δέ +αὐτός +ὁ +θεός +καί +πατήρ +ἐγώ +καί +ὁ +κύριος +ἐγώ +Ἰησοῦς +κατευθύνω +ὁ +ὁδός +ἐγώ +πρός +σύ +δέ +σύ +ὁ +κύριος +πλεονάζω +καί +περισσεύω +ὁ +ἀγάπη +εἰς +ἀλλήλων +καί +εἰς +πᾶς +καθάπερ +καί +ἐγώ +εἰς +σύ +εἰς +ὁ +στηρίζω +σύ +ὁ +καρδία +ἄμεμπτος +ἐν +ἁγιωσύνη +ἔμπροσθεν +ὁ +θεός +καί +πατήρ +ἐγώ +ἐν +ὁ +παρουσία +ὁ +κύριος +ἐγώ +Ἰησοῦς +μετά +πᾶς +ὁ +ἅγιος +αὐτός +οὖν +ἀδελφός +λοιπός +ἐρωτάω +καί +παρακαλέω +σύ +ἐν +κύριος +Ἰησοῦς +ἵνα +καθώς +παραλαμβάνω +παρά +ἐγώ +ὁ +πῶς +δεῖ +σύ +περιπατέω +καί +ἀρέσκω +θεός +καθώς +καί +περιπατέω +ἵνα +περισσεύω +μᾶλλον +γάρ +οἶδα +τίς +παραγγελία +δίδωμι +σύ +διά +ὁ +κύριος +Ἰησοῦς +γάρ +οὗτος +εἰμί +θέλημα +ὁ +θεός +ὁ +ἁγιασμός +σύ +ἀπέχω +σύ +ἀπό +ὁ +πορνεία +οἶδα +ἕκαστος +σύ +ὁ +ἑαυτοῦ +σκεῦος +κτάομαι +ἐν +ἁγιασμός +καί +τιμή +μή +ἐν +πάθος +ἐπιθυμία +καθάπερ +καί +ὁ +ἔθνος +ὁ +μή +οἶδα +ὁ +θεός +ὁ +μή +ὑπερβαίνω +καί +πλεονεκτέω +ἐν +ὁ +πρᾶγμα +ὁ +ἀδελφός +αὐτός +διότι +ἔκδικος +κύριος +περί +πᾶς +οὗτος +καθώς +καί +προλέγω +σύ +καί +διαμαρτύρομαι +γάρ +οὐ +καλέω +ἐγώ +ὁ +θεός +ἐπί +ἀκαθαρσία +ἀλλά +ἐν +ἁγιασμός +τοιγαροῦν +ὁ +ἀθετέω +ἀθετέω +οὐ +ἄνθρωπος +ἀλλά +ὁ +θεός +ὁ +καί +δίδωμι +ὁ +πνεῦμα +αὐτός +ὁ +ἅγιος +εἰς +σύ +δέ +περί +ὁ +φιλαδελφία +οὐ +χρεία +ἔχω +γράφω +σύ +γάρ +αὐτός +σύ +θεοδίδακτος +εἰμί +εἰς +ὁ +ἀγαπάω +ἀλλήλων +γάρ +καί +ποιέω +αὐτός +εἰς +πᾶς +ὁ +ἀδελφός +ἐν +ὅλος +ὁ +Μακεδονία +δέ +ἀδελφός +παρακαλέω +σύ +περισσεύω +μᾶλλον +καί +φιλοτιμέομαι +ἡσυχάζω +καί +πράσσω +ὁ +ἴδιος +καί +ἐργάζομαι +ὁ +χείρ +σύ +καθώς +σύ +παραγγέλλω +ἵνα +περιπατέω +εὐσχημόνως +πρός +ὁ +ἔξω +καί +μηδείς +χρεία +ἔχω +δέ +ἀδελφός +οὐ +θέλω +σύ +ἀγνοέω +περί +ὁ +κοιμάομαι +ἵνα +μή +λυπέω +καθώς +καί +ὁ +λοιπός +ὁ +μή +ἔχω +ἐλπίς +γάρ +εἰ +πιστεύω +ὅτι +Ἰησοῦς +ἀποθνῄσκω +καί +ἀνίστημι +οὕτω +καί +ὁ +θεός +ὁ +κοιμάομαι +διά +ὁ +Ἰησοῦς +ἄγω +σύν +αὐτός +γάρ +οὗτος +σύ +λέγω +ἐν +λόγος +κύριος +ὅτι +ἐγώ +ὁ +ζάω +ὁ +περιλείπομαι +εἰς +ὁ +παρουσία +ὁ +κύριος +οὐ +μή +φθάνω +ὁ +κοιμάομαι +ὅτι +αὐτός +ὁ +κύριος +ἐν +κέλευσμα +ἐν +φωνή +ἀρχάγγελος +καί +ἐν +σάλπιγξ +θεός +καταβαίνω +ἀπό +οὐρανός +καί +ὁ +νεκρός +ἐν +Χριστός +ἀνίστημι +πρῶτος +ἔπειτα +ἐγώ +ὁ +ζάω +ὁ +περιλείπομαι +ἅμα +σύν +αὐτός +ἁρπάζω +ἐν +νεφέλη +εἰς +ἀπάντησις +ὁ +κύριος +εἰς +ἀήρ +καί +οὕτω +πάντοτε +σύν +κύριος +εἰμί +ὥστε +παρακαλέω +ἀλλήλων +ἐν +ὁ +λόγος +οὗτος +δέ +ἀδελφός +περί +ὁ +χρόνος +καί +ὁ +καιρός +οὐ +χρεία +ἔχω +σύ +γράφω +γάρ +αὐτός +ἀκριβῶς +οἶδα +ὅτι +ὡς +κλέπτης +ἐν +νύξ +ἡμέρα +κύριος +οὕτω +ἔρχομαι +ὅταν +λέγω +εἰρήνη +καί +ἀσφάλεια +τότε +αἰφνίδιος +ὄλεθρος +αὐτός +ἐπίσταμαι +ὥσπερ +ὁ +ὠδίν +ὁ +ἐν +γαστήρ +ἔχω +καί +οὐ +μή +ἐκφεύγω +δέ +ἀδελφός +σύ +οὐ +εἰμί +ἐν +σκότος +ἵνα +ὁ +ἡμέρα +σύ +καταλαμβάνω +ὡς +κλέπτης +γάρ +πᾶς +σύ +εἰμί +υἱός +φῶς +καί +υἱός +ἡμέρα +οὐ +εἰμί +νύξ +οὐδέ +σκότος +ἄρα +οὖν +μή +καθεύδω +ὡς +ὁ +λοιπός +ἀλλά +γρηγορέω +καί +νήφω +γάρ +ὁ +καθεύδω +νύξ +καθεύδω +καί +ὁ +μεθύσκω +νύξ +μεθύω +δέ +ἐγώ +ἡμέρα +εἰμί +νήφω +ἐνδύω +θώραξ +πίστις +καί +ἀγάπη +καί +περικεφαλαία +ἐλπίς +σωτηρία +ὅτι +οὐ +τίθημι +ἐγώ +ὁ +θεός +εἰς +ὀργή +ἀλλά +εἰς +περιποίησις +σωτηρία +διά +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +ἀποθνῄσκω +περί +ἐγώ +ἵνα +εἴτε +γρηγορέω +εἴτε +καθεύδω +ἅμα +σύν +αὐτός +ζάω +διό +παρακαλέω +ἀλλήλων +καί +οἰκοδομέω +εἷς +ὁ +εἷς +καθώς +καί +ποιέω +δέ +ἀδελφός +ἐρωτάω +σύ +οἶδα +ὁ +κοπιάω +ἐν +σύ +καί +προΐστημι +σύ +ἐν +κύριος +καί +νουθετέω +σύ +καί +ἡγέομαι +αὐτός +ὑπερεκπερισσῶς +ἐν +ἀγάπη +διά +ὁ +ἔργον +αὐτός +εἰρηνεύω +ἐν +ἑαυτοῦ +δέ +ἀδελφός +παρακαλέω +σύ +νουθετέω +ὁ +ἄτακτος +παραμυθέομαι +ὁ +ὀλιγόψυχος +ἀντέχω +ὁ +ἀσθενής +μακροθυμέω +πρός +πᾶς +ὁράω +μή +τὶς +κακός +ἀντί +κακός +τὶς +ἀποδίδωμι +ἀλλά +πάντοτε +ὁ +ἀγαθός +διώκω +εἰς +ἀλλήλων +καί +εἰς +πᾶς +πάντοτε +χαίρω +ἀδιαλείπτως +προσεύχομαι +ἐν +πᾶς +εὐχαριστέω +γάρ +οὗτος +θέλημα +θεός +ἐν +Χριστός +Ἰησοῦς +εἰς +σύ +ὁ +πνεῦμα +μή +σβέννυμι +προφητεία +μή +ἐξουθενέω +δέ +πᾶς +δοκιμάζω +ὁ +καλός +κατέχω +ἀπό +πᾶς +εἶδος +πονηρός +ἀπέχω +δέ +αὐτός +ὁ +θεός +ὁ +εἰρήνη +ἁγιάζω +σύ +ὁλοτελής +καί +ὁλόκληρος +σύ +ὁ +πνεῦμα +καί +ὁ +ψυχή +καί +ὁ +σῶμα +ἀμέμπτως +ἐν +ὁ +παρουσία +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +τηρέω +πιστός +ὁ +καλέω +σύ +ὅς +καί +ποιέω +ἀδελφός +προσεύχομαι +περί +ἐγώ +ἀσπάζομαι +ὁ +ἀδελφός +πᾶς +ἐν +φίλημα +ἅγιος +ἐνορκίζω +σύ +ὁ +κύριος +ἀναγινώσκω +ὁ +ἐπιστολή +πᾶς +ὁ +ἀδελφός +ὁ +χάρις +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +μετά +σύ +Παῦλος +καί +Σιλουανός +καί +Τιμόθεος +ὁ +ἐκκλησία +Θεσσαλονικεύς +ἐν +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +καί +κύριος +Ἰησοῦς +Χριστός +ἀδελφός +ὀφείλω +εὐχαριστέω +ὁ +θεός +πάντοτε +περί +σύ +καθώς +ἄξιος +εἰμί +ὅτι +ὑπεραυξάνω +ὁ +πίστις +σύ +καί +πλεονάζω +ὁ +ἀγάπη +εἷς +ἕκαστος +πᾶς +σύ +εἰς +ἀλλήλων +ὥστε +αὐτός +ἐγώ +ἐν +σύ +ἐγκαυχάομαι +ἐν +ὁ +ἐκκλησία +ὁ +θεός +ὑπέρ +ὁ +ὑπομονή +σύ +καί +πίστις +ἐν +πᾶς +ὁ +διωγμός +σύ +καί +ὁ +θλῖψις +ὅς +ἀνέχω +ἔνδειγμα +ὁ +δίκαιος +κρίσις +ὁ +θεός +εἰς +ὁ +καταξιόω +σύ +ὁ +βασιλεία +ὁ +θεός +ὑπέρ +ὅς +καί +πάσχω +εἴπερ +δίκαιος +παρά +θεός +ἀνταποδίδωμι +ὁ +θλίβω +σύ +θλῖψις +καί +σύ +ὁ +θλίβω +ἄνεσις +μετά +ἐγώ +ἐν +ὁ +ἀποκάλυψις +ὁ +κύριος +Ἰησοῦς +ἀπό +οὐρανός +μετά +ἄγγελος +δύναμις +αὐτός +ἐν +πῦρ +φλόξ +δίδωμι +ἐκδίκησις +ὁ +μή +οἶδα +θεός +καί +ὁ +μή +ὑπακούω +ὁ +εὐαγγέλιον +ὁ +κύριος +ἐγώ +Ἰησοῦς +ὅστις +τίνω +δίκη +ὄλεθρος +αἰώνιος +ἀπό +πρόσωπον +ὁ +κύριος +καί +ἀπό +ὁ +δόξα +ὁ +ἰσχύς +αὐτός +ὅταν +ἔρχομαι +ἐνδοξάζομαι +ἐν +ὁ +ἅγιος +αὐτός +καί +θαυμάζω +ἐν +πᾶς +ὁ +πιστεύω +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ὅτι +πιστεύω +ὁ +μαρτύριον +ἐγώ +ἐπί +σύ +εἰς +ὅς +καί +προσεύχομαι +πάντοτε +περί +σύ +ἵνα +σύ +ἀξιόω +ὁ +κλῆσις +ὁ +θεός +ἐγώ +καί +πληρόω +πᾶς +εὐδοκία +ἀγαθωσύνη +καί +ἔργον +πίστις +ἐν +δύναμις +ὅπως +ἐνδοξάζομαι +ὁ +ὄνομα +ὁ +κύριος +ἐγώ +Ἰησοῦς +ἐν +σύ +καί +σύ +ἐν +αὐτός +κατά +ὁ +χάρις +ὁ +θεός +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +δέ +ἀδελφός +ἐρωτάω +σύ +ὑπέρ +ὁ +παρουσία +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +καί +ἐγώ +ἐπισυναγωγή +ἐπί +αὐτός +εἰς +ὁ +μή +ταχέως +σαλεύω +σύ +ἀπό +ὁ +νοῦς +μηδέ +θροέω +μήτε +διά +πνεῦμα +μήτε +διά +λόγος +μήτε +διά +ἐπιστολή +ὡς +διά +ἐγώ +ὡς +ὅτι +ἐνίστημι +ὁ +ἡμέρα +ὁ +κύριος +μή +τὶς +σύ +ἐξαπατάω +κατά +μηδείς +τρόπος +ὅτι +ἐάν +μή +ἔρχομαι +ὁ +ἀποστασία +πρῶτος +καί +ἀποκαλύπτω +ὁ +ἄνθρωπος +ὁ +ἀνομία +ὁ +υἱός +ὁ +ἀπώλεια +ὁ +ἀντίκειμαι +καί +ὑπεραίρω +ἐπί +πᾶς +λέγω +θεός +ἤ +σέβασμα +ὥστε +αὐτός +εἰς +ὁ +ναός +ὁ +θεός +καθίζω +ἀποδείκνυμι +ἑαυτοῦ +ὅτι +εἰμί +θεός +οὐ +μνημονεύω +ὅτι +ἔτι +εἰμί +πρός +σύ +οὗτος +λέγω +σύ +καί +νῦν +ὁ +κατέχω +οἶδα +εἰς +ὁ +ἀποκαλύπτω +αὐτός +ἐν +ὁ +αὐτός +καιρός +γάρ +ὁ +μυστήριον +ὁ +ἀνομία +ἤδη +ἐνεργέω +μόνος +ὁ +κατέχω +ἄρτι +ἕως +ἐκ +μέσος +γίνομαι +καί +τότε +ἀποκαλύπτω +ὁ +ἄνομος +ὅς +ὁ +κύριος +Ἰησοῦς +ἀναιρέω +ὁ +πνεῦμα +ὁ +στόμα +αὐτός +καί +καταργέω +ὁ +ἐπιφάνεια +ὁ +παρουσία +αὐτός +ὅς +ὁ +παρουσία +εἰμί +κατά +ἐνέργεια +ὁ +Σατανᾶς +ἐν +πᾶς +δύναμις +καί +σημεῖον +καί +τέρας +ψεῦδος +καί +ἐν +πᾶς +ἀπάτη +ἀδικία +ὁ +ἀπόλλυμι +ἀντί +ὅς +ὁ +ἀγάπη +ὁ +ἀλήθεια +οὐ +δέχομαι +εἰς +ὁ +σῴζω +αὐτός +καί +διά +οὗτος +πέμπω +αὐτός +ὁ +θεός +ἐνέργεια +πλάνη +εἰς +ὁ +πιστεύω +αὐτός +ὁ +ψεῦδος +ἵνα +κρίνω +πᾶς +ὁ +μή +πιστεύω +ὁ +ἀλήθεια +ἀλλά +εὐδοκέω +ὁ +ἀδικία +δέ +ἐγώ +ὀφείλω +εὐχαριστέω +ὁ +θεός +πάντοτε +περί +σύ +ἀδελφός +ἀγαπάω +ὑπό +κύριος +ὅτι +αἱρέω +σύ +ὁ +θεός +ἀπό +ἀρχή +εἰς +σωτηρία +ἐν +ἁγιασμός +πνεῦμα +καί +πίστις +ἀλήθεια +εἰς +ὅς +καί +καλέω +σύ +διά +ὁ +εὐαγγέλιον +ἐγώ +εἰς +περιποίησις +δόξα +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἄρα +οὖν +ἀδελφός +στήκω +καί +κρατέω +ὁ +παράδοσις +ὅς +διδάσκω +εἴτε +διά +λόγος +εἴτε +διά +ἐπιστολή +ἐγώ +δέ +αὐτός +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +καί +ὁ +θεός +ὁ +πατήρ +ἐγώ +ὁ +ἀγαπάω +ἐγώ +καί +δίδωμι +παράκλησις +αἰώνιος +καί +ἐλπίς +ἀγαθός +ἐν +χάρις +παρακαλέω +σύ +ὁ +καρδία +καί +στηρίζω +ἐν +πᾶς +ἔργον +καί +λόγος +ἀγαθός +ἀδελφός +ὁ +λοιπός +προσεύχομαι +περί +ἐγώ +ἵνα +ὁ +λόγος +ὁ +κύριος +τρέχω +καί +δοξάζω +καθώς +καί +πρός +σύ +καί +ἵνα +ῥύομαι +ἀπό +ὁ +ἄτοπος +καί +πονηρός +ἄνθρωπος +γάρ +οὐ +πᾶς +ὁ +πίστις +δέ +πιστός +εἰμί +ὁ +κύριος +ὅς +στηρίζω +σύ +καί +φυλάσσω +ἀπό +ὁ +πονηρός +δέ +πείθω +ἐν +κύριος +ἐπί +σύ +ὅτι +ὅς +παραγγέλλω +καί +ποιέω +καί +ποιέω +δέ +ὁ +κύριος +κατευθύνω +σύ +ὁ +καρδία +εἰς +ὁ +ἀγάπη +ὁ +θεός +καί +εἰς +ὁ +ὑπομονή +ὁ +Χριστός +δέ +ἀδελφός +παραγγέλλω +σύ +ἐν +ὄνομα +ὁ +κύριος +Ἰησοῦς +Χριστός +στέλλω +σύ +ἀπό +πᾶς +ἀδελφός +ἀτάκτως +περιπατέω +καί +μή +κατά +ὁ +παράδοσις +ὅς +παραλαμβάνω +παρά +ἐγώ +γάρ +αὐτός +οἶδα +πῶς +δεῖ +μιμέομαι +ἐγώ +ὅτι +οὐ +ἀτακτέω +ἐν +σύ +οὐδέ +δωρεάν +ἄρτος +ἐσθίω +παρά +τὶς +ἀλλά +ἐν +κόπος +καί +μόχθος +νύξ +καί +ἡμέρα +ἐργάζομαι +πρός +ὁ +μή +ἐπιβαρέω +τὶς +σύ +οὐ +ὅτι +οὐ +ἔχω +ἐξουσία +ἀλλά +ἵνα +ἑαυτοῦ +τύπος +δίδωμι +σύ +εἰς +ὁ +μιμέομαι +ἐγώ +γάρ +καί +ὅτε +εἰμί +πρός +σύ +οὗτος +παραγγέλλω +σύ +ὅτι +εἰ +τὶς +οὐ +θέλω +ἐργάζομαι +μηδέ +ἐσθίω +γάρ +ἀκούω +τὶς +περιπατέω +ἐν +σύ +ἀτάκτως +μηδείς +ἐργάζομαι +ἀλλά +περιεργάζομαι +δέ +ὁ +τοιοῦτος +παραγγέλλω +καί +παρακαλέω +ἐν +κύριος +Ἰησοῦς +Χριστός +ἵνα +μετά +ἡσυχία +ἐργάζομαι +ὁ +ἑαυτοῦ +ἄρτος +ἐσθίω +δέ +ἀδελφός +σύ +μή +ἐγκακέω +καλοποιέω +δέ +εἰ +τὶς +οὐ +ὑπακούω +ὁ +λόγος +ἐγώ +διά +ὁ +ἐπιστολή +οὗτος +σημειόω +μή +συναναμίγνυμι +αὐτός +ἵνα +ἐντρέπω +καί +μή +ὡς +ἐχθρός +ἡγέομαι +ἀλλά +νουθετέω +ὡς +ἀδελφός +δέ +αὐτός +ὁ +κύριος +ὁ +εἰρήνη +δίδωμι +σύ +ὁ +εἰρήνη +διά +πᾶς +ἐν +πᾶς +τρόπος +ὁ +κύριος +μετά +πᾶς +σύ +ὁ +ἀσπασμός +ὁ +ἐμός +χείρ +Παῦλος +ὅς +εἰμί +σημεῖον +ἐν +πᾶς +ἐπιστολή +οὕτω +γράφω +ὁ +χάρις +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +μετά +πᾶς +σύ +Παῦλος +ἀπόστολος +Χριστός +Ἰησοῦς +κατά +ἐπιταγή +θεός +σωτήρ +ἐγώ +καί +Χριστός +Ἰησοῦς +ὁ +ἐλπίς +ἐγώ +Τιμόθεος +γνήσιος +τέκνον +ἐν +πίστις +χάρις +ἔλεος +εἰρήνη +ἀπό +θεός +πατήρ +καί +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +καθώς +παρακαλέω +σύ +προσμένω +ἐν +Ἔφεσος +πορεύομαι +εἰς +Μακεδονία +ἵνα +παραγγέλλω +τὶς +μή +ἑτεροδιδασκαλέω +μηδέ +προσέχω +μῦθος +καί +γενεαλογία +ἀπέραντος +ὅστις +ἐκζήτησις +παρέχω +μᾶλλον +ἤ +οἰκονομία +θεός +ὁ +ἐν +πίστις +δέ +ὁ +τέλος +ὁ +παραγγελία +εἰμί +ἀγάπη +ἐκ +καθαρός +καρδία +καί +συνείδησις +ἀγαθός +καί +πίστις +ἀνυπόκριτος +ὅς +ἀστοχέω +τὶς +ἐκτρέπω +εἰς +ματαιολογία +θέλω +εἰμί +νομοδιδάσκαλος +μή +νοέω +μήτε +ὅς +λέγω +μήτε +περί +τίς +διαβεβαιόομαι +δέ +οἶδα +ὅτι +καλός +ὁ +νόμος +ἐάν +τὶς +αὐτός +νομίμως +χράομαι +οἶδα +οὗτος +ὅτι +οὐ +δίκαιος +νόμος +κεῖμαι +δέ +ἄνομος +καί +ἀνυπότακτος +ἀσεβής +καί +ἁμαρτωλός +ἀνόσιος +καί +βέβηλος +πατρολῴας +καί +μητρολῴας +ἀνδροφόνος +πόρνος +ἀρσενοκοίτης +ἀνδραποδιστής +ψεύστης +ἐπίορκος +καί +εἰ +τὶς +ἕτερος +ἀντίκειμαι +ὁ +ὑγιαίνω +διδασκαλία +κατά +ὁ +εὐαγγέλιον +ὁ +δόξα +ὁ +μακάριος +θεός +ὅς +πιστεύω +ἐγώ +χάρις +ἔχω +ὁ +ἐνδυναμόω +ἐγώ +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +ὅτι +πιστός +ἐγώ +ἡγέομαι +τίθημι +εἰς +διακονία +ὁ +πρότερος +εἰμί +βλάσφημος +καί +διώκτης +καί +ὑβριστής +ἀλλά +ἐλεέω +ὅτι +ἀγνοέω +ποιέω +ἐν +ἀπιστία +δέ +ὑπερπλεονάζω +ὁ +χάρις +ὁ +κύριος +ἐγώ +μετά +πίστις +καί +ἀγάπη +ὁ +ἐν +Χριστός +Ἰησοῦς +ὁ +λόγος +πιστός +καί +πᾶς +ἀποδοχή +ἄξιος +ὅτι +Χριστός +Ἰησοῦς +ἔρχομαι +εἰς +ὁ +κόσμος +ἁμαρτωλός +σῴζω +ὅς +πρῶτος +εἰμί +ἐγώ +ἀλλά +διά +οὗτος +ἐλεέω +ἵνα +ἐν +ἐγώ +πρῶτος +ἐνδείκνυμι +Ἰησοῦς +Χριστός +ὁ +ἅπας +μακροθυμία +πρός +ὑποτύπωσις +ὁ +μέλλω +πιστεύω +ἐπί +αὐτός +εἰς +ζωή +αἰώνιος +δέ +ὁ +βασιλεύς +ὁ +αἰών +ἄφθαρτος +ἀόρατος +μόνος +θεός +τιμή +καί +δόξα +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +τέκνον +Τιμόθεος +οὗτος +ὁ +παραγγελία +παρατίθημι +σύ +κατά +ὁ +προάγω +ἐπί +σύ +προφητεία +ἵνα +στρατεύω +ἐν +αὐτός +ὁ +καλός +στρατεία +ἔχω +πίστις +καί +ἀγαθός +συνείδησις +ὅς +ἀπωθέω +τὶς +περί +ὁ +πίστις +ναυαγέω +ὅς +εἰμί +Ὑμέναιος +καί +Ἀλέξανδρος +ὅς +παραδίδωμι +ὁ +Σατανᾶς +ἵνα +παιδεύω +μή +βλασφημέω +οὖν +παρακαλέω +πρῶτος +πᾶς +ποιέω +δέησις +προσευχή +ἔντευξις +εὐχαριστία +ὑπέρ +πᾶς +ἄνθρωπος +ὑπέρ +βασιλεύς +καί +πᾶς +ὁ +ἐν +ὑπεροχή +εἰμί +ἵνα +ἤρεμος +καί +ἡσύχιος +βίος +διάγω +ἐν +πᾶς +εὐσέβεια +καί +σεμνότης +οὗτος +καλός +καί +ἀπόδεκτος +ἐνώπιον +ὁ +σωτήρ +ἐγώ +θεός +ὅς +θέλω +πᾶς +ἄνθρωπος +σῴζω +καί +εἰς +ἐπίγνωσις +ἀλήθεια +ἔρχομαι +γάρ +εἷς +θεός +εἷς +καί +μεσίτης +θεός +καί +ἄνθρωπος +ἄνθρωπος +Χριστός +Ἰησοῦς +ὁ +δίδωμι +ἑαυτοῦ +ἀντίλυτρον +ὑπέρ +πᾶς +ὁ +μαρτύριον +καιρός +ἴδιος +εἰς +ὅς +τίθημι +ἐγώ +κῆρυξ +καί +ἀπόστολος +διδάσκαλος +ἔθνος +ἐν +πίστις +καί +ἀλήθεια +ἀλήθεια +λέγω +οὐ +ψεύδομαι +οὖν +βούλομαι +προσεύχομαι +ὁ +ἀνήρ +ἐν +πᾶς +τόπος +ἐπαίρω +ὅσιος +χείρ +χωρίς +ὀργή +καί +διαλογισμός +ὡσαύτως +γυνή +ἐν +καταστολή +κόσμιος +μετά +αἰδώς +καί +σωφροσύνη +κοσμέω +ἑαυτοῦ +μή +ἐν +πλέγμα +καί +χρυσίον +ἤ +μαργαρίτης +ἤ +ἱματισμός +πολυτελής +ἀλλά +διά +ὅς +πρέπω +γυνή +ἐπαγγέλλομαι +θεοσέβεια +ἔργον +ἀγαθός +γυνή +ἐν +ἡσυχία +μανθάνω +ἐν +πᾶς +ὑποταγή +δέ +ἐπιτρέπω +οὐ +διδάσκω +γυνή +οὐδέ +αὐθεντέω +ἀνήρ +ἀλλά +εἰμί +ἐν +ἡσυχία +γάρ +Ἀδάμ +πρῶτος +πλάσσω +εἶτα +Εὕα +καί +Ἀδάμ +οὐ +ἀπατάω +δέ +ὁ +γυνή +ἐξαπατάω +ἐν +παράβασις +γίνομαι +δέ +σῴζω +διά +ὁ +τεκνογονία +ἐάν +μένω +ἐν +πίστις +καί +ἀγάπη +καί +ἁγιασμός +μετά +σωφροσύνη +πιστός +ὁ +λόγος +εἰ +τὶς +ἐπισκοπή +ὀρέγω +καλός +ἔργον +ἐπιθυμέω +οὖν +δεῖ +ὁ +ἐπίσκοπος +εἰμί +ἀνεπίλημπτος +εἷς +γυνή +ἀνήρ +νηφάλιος +σώφρων +κόσμιος +φιλόξενος +διδακτικός +μή +πάροινος +μή +πλήκτης +ἀλλά +ἐπιεικής +ἄμαχος +ἀφιλάργυρος +ὁ +ἴδιος +οἶκος +καλῶς +προΐστημι +τέκνον +ἔχω +ἐν +ὑποταγή +μετά +πᾶς +σεμνότης +δέ +εἰ +τὶς +ὁ +ἴδιος +οἶκος +προΐστημι +οὐ +οἶδα +πῶς +ἐκκλησία +θεός +ἐπιμελέομαι +μή +νεόφυτος +ἵνα +μή +τυφόω +εἰς +κρίμα +ὁ +διάβολος +ἐμπίπτω +δέ +δεῖ +καί +μαρτυρία +καλός +ἔχω +ἀπό +ὁ +ἔξωθεν +ἵνα +μή +ἐμπίπτω +εἰς +ὀνειδισμός +καί +παγίς +ὁ +διάβολος +ὡσαύτως +διάκονος +σεμνός +μή +δίλογος +μή +οἶνος +πολύς +προσέχω +μή +αἰσχροκερδής +ἔχω +ὁ +μυστήριον +ὁ +πίστις +ἐν +καθαρός +συνείδησις +δέ +καί +οὗτος +δοκιμάζω +πρῶτος +εἶτα +διακονέω +ἀνέγκλητος +εἰμί +ὡσαύτως +γυνή +σεμνός +μή +διάβολος +νηφάλιος +πιστός +ἐν +πᾶς +διάκονος +εἰμί +εἷς +γυνή +ἀνήρ +καλῶς +προΐστημι +τέκνον +καί +ὁ +ἴδιος +οἶκος +γάρ +ὁ +καλῶς +διακονέω +βαθμός +καλός +ἑαυτοῦ +περιποιέω +καί +πολύς +παρρησία +ἐν +πίστις +ὁ +ἐν +Χριστός +Ἰησοῦς +οὗτος +σύ +γράφω +ἐλπίζω +ἔρχομαι +πρός +σύ +ταχύς +δέ +ἐάν +βραδύνω +ἵνα +οἶδα +πῶς +δεῖ +ἀναστρέφω +ἐν +οἶκος +θεός +ὅστις +εἰμί +ἐκκλησία +θεός +ζάω +στῦλος +καί +ἑδραίωμα +ὁ +ἀλήθεια +καί +ὁμολογουμένως +μέγας +εἰμί +ὁ +ὁ +εὐσέβεια +μυστήριον +ὅς +φανερόω +ἐν +σάρξ +δικαιόω +ἐν +πνεῦμα +ὁράω +ἄγγελος +κηρύσσω +ἐν +ἔθνος +πιστεύω +ἐν +κόσμος +ἀναλαμβάνω +ἐν +δόξα +δέ +ὁ +πνεῦμα +ῥητῶς +λέγω +ὅτι +ἐν +ὕστερος +καιρός +ἀφίστημι +τὶς +ὁ +πίστις +προσέχω +πνεῦμα +πλάνος +καί +διδασκαλία +δαιμόνιον +ἐν +ὑπόκρισις +ψευδολόγος +καυστηριάζω +ὁ +ἴδιος +συνείδησις +κωλύω +γαμέω +ἀπέχω +βρῶμα +ὅς +ὁ +θεός +κτίζω +εἰς +μετάλημψις +μετά +εὐχαριστία +ὁ +πιστός +καί +ἐπιγινώσκω +ὁ +ἀλήθεια +ὅτι +πᾶς +κτίσμα +θεός +καλός +καί +οὐδείς +ἀπόβλητος +μετά +εὐχαριστία +λαμβάνω +γάρ +ἁγιάζω +διά +λόγος +θεός +καί +ἔντευξις +οὗτος +ὑποτίθημι +ὁ +ἀδελφός +εἰμί +καλός +διάκονος +Χριστός +Ἰησοῦς +ἐντρέφω +ὁ +λόγος +ὁ +πίστις +καί +ὁ +καλός +διδασκαλία +ὅς +παρακολουθέω +δέ +ὁ +βέβηλος +καί +γραώδης +μῦθος +παραιτέομαι +δέ +γυμνάζω +σεαυτοῦ +πρός +εὐσέβεια +γάρ +ὁ +σωματικός +γυμνασία +πρός +ὀλίγος +εἰμί +ὠφέλιμος +δέ +ὁ +εὐσέβεια +πρός +πᾶς +ὠφέλιμος +εἰμί +ἔχω +ἐπαγγελία +ζωή +ὁ +νῦν +καί +ὁ +μέλλω +ὁ +λόγος +πιστός +καί +πᾶς +ἀποδοχή +ἄξιος +γάρ +εἰς +οὗτος +κοπιάω +καί +ἀγωνίζομαι +ὅτι +ἐλπίζω +ἐπί +θεός +ζάω +ὅς +εἰμί +σωτήρ +πᾶς +ἄνθρωπος +μάλιστα +πιστός +οὗτος +παραγγέλλω +καί +διδάσκω +μηδείς +σύ +ὁ +νεότης +καταφρονέω +ἀλλά +γίνομαι +τύπος +ὁ +πιστός +ἐν +λόγος +ἐν +ἀναστροφή +ἐν +ἀγάπη +ἐν +πίστις +ἐν +ἁγνεία +ἕως +ἔρχομαι +προσέχω +ὁ +ἀνάγνωσις +ὁ +παράκλησις +ὁ +διδασκαλία +μή +ἀμελέω +ὁ +ἐν +σύ +χάρισμα +ὅς +δίδωμι +σύ +διά +προφητεία +μετά +ἐπίθεσις +ὁ +χείρ +ὁ +πρεσβυτέριον +οὗτος +μελετάω +ἐν +οὗτος +εἰμί +ἵνα +σύ +ὁ +προκοπή +φανερός +εἰμί +πᾶς +ἐπέχω +σεαυτοῦ +καί +ὁ +διδασκαλία +ἐπιμένω +αὐτός +γάρ +οὗτος +ποιέω +σῴζω +καί +σεαυτοῦ +καί +ὁ +ἀκούω +σύ +πρεσβύτερος +μή +ἐπιπλήσσω +ἀλλά +παρακαλέω +ὡς +πατήρ +νέος +ὡς +ἀδελφός +πρεσβύτερος +ὡς +μήτηρ +νέος +ὡς +ἀδελφή +ἐν +πᾶς +ἁγνεία +τιμάω +χῆρος +ὁ +ὄντως +χῆρος +δέ +εἰ +τὶς +χῆρος +τέκνον +ἤ +ἔκγονος +ἔχω +μανθάνω +πρῶτος +ὁ +ἴδιος +οἶκος +εὐσεβέω +καί +ἀμοιβή +ἀποδίδωμι +ὁ +πρόγονος +γάρ +οὗτος +εἰμί +ἀπόδεκτος +ἐνώπιον +ὁ +θεός +δέ +ὁ +ὄντως +χῆρος +καί +μονόω +ἐλπίζω +ἐπί +θεός +καί +προσμένω +ὁ +δέησις +καί +ὁ +προσευχή +νύξ +καί +ἡμέρα +δέ +ὁ +σπαταλάω +ζάω +θνῄσκω +καί +οὗτος +παραγγέλλω +ἵνα +ἀνεπίλημπτος +εἰμί +δέ +εἰ +τὶς +ὁ +ἴδιος +καί +μάλιστα +οἰκεῖος +οὐ +προνοέω +ὁ +πίστις +ἀρνέομαι +καί +εἰμί +ἄπιστος +χείρων +χῆρος +καταλέγω +μή +ἐλάσσων +ἔτος +ἑξήκοντα +γίνομαι +εἷς +ἀνήρ +γυνή +ἐν +ἔργον +καλός +μαρτυρέω +εἰ +τεκνοτροφέω +εἰ +ξενοδοχέω +εἰ +ἅγιος +πούς +νίπτω +εἰ +θλίβω +ἐπαρκέω +εἰ +πᾶς +ἔργον +ἀγαθός +ἐπακολουθέω +δέ +νέος +χῆρος +παραιτέομαι +γάρ +ὅταν +καταστρηνιάω +ὁ +Χριστός +γαμέω +θέλω +ἔχω +κρίμα +ὅτι +ὁ +πρῶτος +πίστις +ἀθετέω +δέ +ἅμα +καί +ἀργός +μανθάνω +περιέρχομαι +ὁ +οἰκία +δέ +οὐ +μόνος +ἀργός +ἀλλά +καί +φλύαρος +καί +περίεργος +λαλέω +ὁ +μή +δεῖ +οὖν +βούλομαι +νέος +γαμέω +τεκνογονέω +οἰκοδεσποτέω +μηδείς +ἀφορμή +δίδωμι +ὁ +ἀντίκειμαι +λοιδορία +χάριν +γάρ +ἤδη +τὶς +ἐκτρέπω +ὀπίσω +ὁ +Σατανᾶς +εἰ +τὶς +πιστός +ἔχω +χῆρος +ἐπαρκέω +αὐτός +καί +μή +βαρέω +ὁ +ἐκκλησία +ἵνα +ὁ +ὄντως +χῆρος +ἐπαρκέω +ὁ +καλῶς +προΐστημι +πρεσβύτερος +διπλοῦς +τιμή +ἀξιόω +μάλιστα +ὁ +κοπιάω +ἐν +λόγος +καί +διδασκαλία +γάρ +λέγω +ὁ +γραφή +βοῦς +ἀλοάω +οὐ +φιμόω +καί +ἄξιος +ὁ +ἐργάτης +ὁ +μισθός +αὐτός +κατά +πρεσβύτερος +κατηγορία +μή +παραδέχομαι +ἐκτός +εἰ +μή +ἐπί +δύο +ἤ +τρεῖς +μάρτυς +ὁ +ἁμαρτάνω +ἐνώπιον +πᾶς +ἐλέγχω +ἵνα +καί +ὁ +λοιπός +φόβος +ἔχω +διαμαρτύρομαι +ἐνώπιον +ὁ +θεός +καί +Χριστός +Ἰησοῦς +καί +ὁ +ἐκλεκτός +ἄγγελος +ἵνα +οὗτος +φυλάσσω +χωρίς +πρόκριμα +μηδείς +ποιέω +κατά +πρόσκλισις +χείρ +ταχέως +μηδείς +ἐπιτίθημι +μηδέ +κοινωνέω +ἁμαρτία +ἀλλότριος +σεαυτοῦ +ἁγνός +τηρέω +μηκέτι +ὑδροποτέω +ἀλλά +οἶνος +ὀλίγος +χράομαι +διά +ὁ +στόμαχος +καί +ὁ +πυκνός +σύ +ἀσθένεια +τὶς +ἄνθρωπος +ὁ +ἁμαρτία +πρόδηλος +εἰμί +προάγω +εἰς +κρίσις +δέ +τὶς +καί +ἐπακολουθέω +ὡσαύτως +καί +ὁ +ἔργον +ὁ +καλός +πρόδηλος +καί +ὁ +ἄλλως +ἔχω +κρύπτω +οὐ +δύναμαι +ὅσος +εἰμί +ὑπό +ζυγός +δοῦλος (II) +ὁ +ἴδιος +δεσπότης +πᾶς +τιμή +ἄξιος +ἡγέομαι +ἵνα +μή +ὁ +ὄνομα +ὁ +θεός +καί +ὁ +διδασκαλία +βλασφημέω +δέ +ὁ +ἔχω +πιστός +δεσπότης +μή +καταφρονέω +ὅτι +ἀδελφός +εἰμί +ἀλλά +μᾶλλον +δουλεύω +ὅτι +εἰμί +πιστός +καί +ἀγαπητός +ὁ +ὁ +εὐεργεσία +ἀντιλαμβάνω +οὗτος +διδάσκω +καί +παρακαλέω +εἰ +τὶς +ἑτεροδιδασκαλέω +καί +μή +προσέρχομαι +ὑγιαίνω +λόγος +ὁ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +καί +ὁ +κατά +εὐσέβεια +διδασκαλία +τυφόω +μηδείς +ἐπίσταμαι +ἀλλά +νοσέω +περί +ζήτησις +καί +λογομαχία +ἐκ +ὅς +γίνομαι +φθόνος +ἔρις +βλασφημία +ὑπόνοια +πονηρός +διαπαρατριβή +ἄνθρωπος +διαφθείρω +ὁ +νοῦς +καί +ἀποστερέω +ὁ +ἀλήθεια +νομίζω +πορισμός +εἰμί +ὁ +εὐσέβεια +δέ +εἰμί +πορισμός +μέγας +ὁ +εὐσέβεια +μετά +αὐτάρκεια +γάρ +οὐδείς +εἰσφέρω +εἰς +ὁ +κόσμος +ὅτι +οὐδέ +ἐκφέρω +τὶς +δύναμαι +δέ +ἔχω +διατροφή +καί +σκέπασμα +οὗτος +ἀρκέω +δέ +ὁ +βούλομαι +πλουτέω +ἐμπίπτω +εἰς +πειρασμός +καί +παγίς +καί +ἐπιθυμία +πολύς +ἀνόητος +καί +βλαβερός +ὅστις +βυθίζω +ὁ +ἄνθρωπος +εἰς +ὄλεθρος +καί +ἀπώλεια +γάρ +ῥίζα +πᾶς +ὁ +κακός +εἰμί +ὁ +φιλαργυρία +ὅς +ὀρέγω +τὶς +ἀποπλανάω +ἀπό +ὁ +πίστις +καί +ἑαυτοῦ +περιπείρω +ὀδύνη +πολύς +δέ +ὦ +ἄνθρωπος +θεός +σύ +οὗτος +φεύγω +δέ +διώκω +δικαιοσύνη +εὐσέβεια +πίστις +ἀγάπη +ὑπομονή +πραϋπαθία +ἀγωνίζομαι +ὁ +καλός +ἀγών +ὁ +πίστις +ἐπιλαμβάνομαι +ὁ +αἰώνιος +ζωή +εἰς +ὅς +καλέω +καί +ὁμολογέω +ὁ +καλός +ὁμολογία +ἐνώπιον +πολύς +μάρτυς +παραγγέλλω +ἐνώπιον +ὁ +θεός +ὁ +ζῳογονέω +ὁ +πᾶς +καί +Χριστός +Ἰησοῦς +ὁ +μαρτυρέω +ἐπί +Πόντιος +Πιλᾶτος +ὁ +καλός +ὁμολογία +τηρέω +σύ +ὁ +ἐντολή +ἄσπιλος +ἀνεπίλημπτος +μέχρι +ὁ +ἐπιφάνεια +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὅς +καιρός +ἴδιος +δείκνυμι +ὁ +μακάριος +καί +μόνος +δυνάστης +ὁ +βασιλεύς +ὁ +βασιλεύω +καί +κύριος +ὁ +κυριεύω +ὁ +μόνος +ἔχω +ἀθανασία +φῶς +ἀπρόσιτος +οἰκέω +ὅς +ὁράω +οὐδείς +ἄνθρωπος +οὐδέ +ὁράω +δύναμαι +ὅς +τιμή +καί +κράτος +αἰώνιος +ἀμήν +ὁ +πλούσιος +ἐν +ὁ +νῦν +αἰών +παραγγέλλω +μή +ὑψηλοφρονέω +μηδέ +ἐλπίζω +ἐπί +πλοῦτος +ἀδηλότης +ἀλλά +ἐπί +θεός +ὁ +παρέχω +ἐγώ +πᾶς +πλουσίως +εἰς +ἀπόλαυσις +ἀγαθοεργέω +πλουτέω +ἐν +ἔργον +καλός +εὐμετάδοτος +εἰμί +κοινωνικός +ἀποθησαυρίζω +ἑαυτοῦ +θεμέλιος +καλός +εἰς +ὁ +μέλλω +ἵνα +ἐπιλαμβάνομαι +ὁ +ὄντως +ζωή +ὦ +Τιμόθεος +ὁ +παραθήκη +φυλάσσω +ἐκτρέπω +ὁ +βέβηλος +κενοφωνία +καί +ἀντίθεσις +ὁ +ψευδώνυμος +γνῶσις +ὅς +ἐπαγγέλλομαι +τὶς +περί +ὁ +πίστις +ἀστοχέω +ὁ +χάρις +μετά +σύ +Παῦλος +ἀπόστολος +Χριστός +Ἰησοῦς +διά +θέλημα +θεός +κατά +ἐπαγγελία +ζωή +ὁ +ἐν +Χριστός +Ἰησοῦς +Τιμόθεος +ἀγαπητός +τέκνον +χάρις +ἔλεος +εἰρήνη +ἀπό +θεός +πατήρ +καί +Χριστός +Ἰησοῦς +ὁ +κύριος +ἐγώ +χάρις +ἔχω +ὁ +θεός +ὅς +λατρεύω +ἀπό +πρόγονος +ἐν +καθαρός +συνείδησις +ὡς +ἀδιάλειπτος +ἔχω +ὁ +περί +σύ +μνεία +ἐν +ὁ +δέησις +ἐγώ +νύξ +καί +ἡμέρα +ἐπιποθέω +σύ +ὁράω +μιμνῄσκω +σύ +ὁ +δάκρυον +ἵνα +χαρά +πληρόω +λαμβάνω +ὑπόμνησις +ὁ +ἐν +σύ +ἀνυπόκριτος +πίστις +ὅστις +ἐνοικέω +πρῶτος +ἐν +ὁ +μάμμη +σύ +Λωΐς +καί +ὁ +μήτηρ +σύ +Εὐνίκη +δέ +πείθω +ὅτι +καί +ἐν +σύ +διά +ὅς +αἰτία +ἀναμιμνῄσκω +σύ +ἀναζωπυρέω +ὁ +χάρισμα +ὁ +θεός +ὅς +εἰμί +ἐν +σύ +διά +ὁ +ἐπίθεσις +ὁ +χείρ +ἐγώ +γάρ +οὐ +δίδωμι +ἐγώ +ὁ +θεός +πνεῦμα +δειλία +ἀλλά +δύναμις +καί +ἀγάπη +καί +σωφρονισμός +οὖν +μή +ἐπαισχύνομαι +ὁ +μαρτύριον +ὁ +κύριος +ἐγώ +μηδέ +ἐγώ +ὁ +δέσμιος +αὐτός +ἀλλά +συγκακοπαθέω +ὁ +εὐαγγέλιον +κατά +δύναμις +θεός +ὁ +σῴζω +ἐγώ +καί +καλέω +κλῆσις +ἅγιος +οὐ +κατά +ὁ +ἔργον +ἐγώ +ἀλλά +κατά +ἴδιος +πρόθεσις +καί +χάρις +ὁ +δίδωμι +ἐγώ +ἐν +Χριστός +Ἰησοῦς +πρό +χρόνος +αἰώνιος +δέ +φανερόω +νῦν +διά +ὁ +ἐπιφάνεια +ὁ +σωτήρ +ἐγώ +Χριστός +Ἰησοῦς +μέν +καταργέω +ὁ +θάνατος +δέ +φωτίζω +ζωή +καί +ἀφθαρσία +διά +ὁ +εὐαγγέλιον +εἰς +ὅς +τίθημι +ἐγώ +κῆρυξ +καί +ἀπόστολος +καί +διδάσκαλος +διά +ὅς +αἰτία +καί +οὗτος +πάσχω +ἀλλά +οὐ +ἐπαισχύνομαι +γάρ +οἶδα +ὅς +πιστεύω +καί +πείθω +ὅτι +εἰμί +δυνατός +ὁ +παραθήκη +ἐγώ +φυλάσσω +εἰς +ἐκεῖνος +ὁ +ἡμέρα +ἔχω +ὑποτύπωσις +ὑγιαίνω +λόγος +ὅς +παρά +ἐγώ +ἀκούω +ἐν +πίστις +καί +ἀγάπη +ὁ +ἐν +Χριστός +Ἰησοῦς +ὁ +καλός +παραθήκη +φυλάσσω +διά +πνεῦμα +ἅγιος +ὁ +ἐνοικέω +ἐν +ἐγώ +οἶδα +οὗτος +ὅτι +ἀποστρέφω +ἐγώ +πᾶς +ὁ +ἐν +ὁ +Ἀσία +ὅς +εἰμί +Φύγελος +καί +Ἑρμογένης +δίδωμι +ἔλεος +ὁ +κύριος +ὁ +Ὀνησίφορος +οἶκος +ὅτι +πολλάκις +ἐγώ +ἀναψύχω +καί +οὐ +ὁ +ἅλυσις +ἐγώ +ἐπαισχύνομαι +ἀλλά +γίνομαι +ἐν +Ῥώμη +σπουδαίως +ζητέω +ἐγώ +καί +εὑρίσκω +δίδωμι +αὐτός +ὁ +κύριος +εὑρίσκω +ἔλεος +παρά +κύριος +ἐν +ἐκεῖνος +ὁ +ἡμέρα +καί +ὅσος +ἐν +Ἔφεσος +διακονέω +βελτίων +σύ +γινώσκω +οὖν +τέκνον +ἐγώ +σύ +ἐνδυναμόω +ἐν +ὁ +χάρις +ὁ +ἐν +Χριστός +Ἰησοῦς +καί +ὅς +ἀκούω +παρά +ἐγώ +διά +πολύς +μάρτυς +οὗτος +παρατίθημι +πιστός +ἄνθρωπος +ὅστις +ἱκανός +εἰμί +καί +ἕτερος +διδάσκω +συγκακοπαθέω +ὡς +καλός +στρατιώτης +Χριστός +Ἰησοῦς +οὐδείς +στρατεύω +ἐμπλέκω +ὁ +ὁ +βίος +πραγματεία +ἵνα +ὁ +στρατολογέω +ἀρέσκω +δέ +ἐάν +καί +ἀθλέω +τὶς +οὐ +στεφανόω +ἐάν +μή +νομίμως +ἀθλέω +δεῖ +ὁ +κοπιάω +γεωργός +πρῶτος +ὁ +καρπός +μεταλαμβάνω +νοέω +ὅς +λέγω +γάρ +δίδωμι +σύ +ὁ +κύριος +σύνεσις +ἐν +πᾶς +μνημονεύω +Ἰησοῦς +Χριστός +ἐγείρω +ἐκ +νεκρός +ἐκ +σπέρμα +Δαυίδ +κατά +ὁ +εὐαγγέλιον +ἐγώ +ἐν +ὅς +κακοπαθέω +μέχρι +δεσμός +ὡς +κακοῦργος +ἀλλά +ὁ +λόγος +ὁ +θεός +οὐ +δέω +διά +οὗτος +πᾶς +ὑπομένω +διά +ὁ +ἐκλεκτός +ἵνα +καί +αὐτός +τυγχάνω +σωτηρία +ὁ +ἐν +Χριστός +Ἰησοῦς +μετά +δόξα +αἰώνιος +πιστός +ὁ +λόγος +γάρ +εἰ +συναποθνῄσκω +καί +συζάω +εἰ +ὑπομένω +καί +συμβασιλεύω +εἰ +ἀρνέομαι +κἀκεῖνος +ἀρνέομαι +ἐγώ +εἰ +ἀπιστέω +ἐκεῖνος +πιστός +μένω +γάρ +ἀρνέομαι +ἑαυτοῦ +οὐ +δύναμαι +οὗτος +ὑπομιμνῄσκω +διαμαρτύρομαι +ἐνώπιον +ὁ +θεός +μή +λογομαχέω +ἐπί +οὐδείς +χρήσιμος +ἐπί +καταστροφή +ὁ +ἀκούω +σπουδάζω +παρίστημι +σεαυτοῦ +δόκιμος +ὁ +θεός +ἐργάτης +ἀνεπαίσχυντος +ὀρθοτομέω +ὁ +λόγος +ὁ +ἀλήθεια +δέ +ὁ +βέβηλος +κενοφωνία +περιΐστημι +γάρ +ἐπί +πολύς +ἀσέβεια +προκόπτω +καί +ὁ +λόγος +αὐτός +ὡς +γάγγραινα +νομή +ἔχω +ὅς +εἰμί +Ὑμέναιος +καί +Φίλητος +ὅστις +περί +ὁ +ἀλήθεια +ἀστοχέω +λέγω +ἀνάστασις +ἤδη +γίνομαι +καί +ἀνατρέπω +ὁ +τὶς +πίστις +μέντοι +ὁ +στερεός +θεμέλιος +ὁ +θεός +ἵστημι +ἔχω +ὁ +σφραγίς +οὗτος +γινώσκω +κύριος +ὁ +εἰμί +αὐτός +καί +ἀφίστημι +ἀπό +ἀδικία +πᾶς +ὁ +ὀνομάζω +ὁ +ὄνομα +κύριος +δέ +ἐν +μέγας +οἰκία +εἰμί +οὐ +μόνος +σκεῦος +χρυσοῦς +καί +ἀργυροῦς +ἀλλά +καί +ξύλινος +καί +ὀστράκινος +καί +μέν +ὅς +εἰς +τιμή +δέ +ὅς +εἰς +ἀτιμία +οὖν +ἐάν +τὶς +ἐκκαθαίρω +ἑαυτοῦ +ἀπό +οὗτος +εἰμί +σκεῦος +εἰς +τιμή +ἁγιάζω +εὔχρηστος +ὁ +δεσπότης +εἰς +πᾶς +ἔργον +ἀγαθός +ἑτοιμάζω +δέ +ὁ +νεωτερικός +ἐπιθυμία +φεύγω +δέ +διώκω +δικαιοσύνη +πίστις +ἀγάπη +εἰρήνη +μετά +ὁ +ἐπικαλέω +ὁ +κύριος +ἐκ +καθαρός +καρδία +δέ +ὁ +μωρός +καί +ἀπαίδευτος +ζήτησις +παραιτέομαι +οἶδα +ὅτι +γεννάω +μάχη +δέ +δεῖ +δοῦλος (II) +κύριος +οὐ +μάχομαι +ἀλλά +εἰμί +ἤπιος +πρός +πᾶς +διδακτικός +ἀνεξίκακος +ἐν +πραΰτης +παιδεύω +ὁ +ἀντιδιατίθημι +μή +ποτέ +δίδωμι +αὐτός +ὁ +θεός +μετάνοια +εἰς +ἐπίγνωσις +ἀλήθεια +καί +ἀνανήφω +ἐκ +ὁ +ὁ +διάβολος +παγίς +ζωγρέω +ὑπό +αὐτός +εἰς +ὁ +ἐκεῖνος +θέλημα +δέ +οὗτος +γινώσκω +ὅτι +ἐν +ἔσχατος +ἡμέρα +ἐνίστημι +καιρός +χαλεπός +γάρ +εἰμί +ὁ +ἄνθρωπος +φίλαυτος +φιλάργυρος +ἀλαζών +ὑπερήφανος +βλάσφημος +γονεύς +ἀπειθής +ἀχάριστος +ἀνόσιος +ἄστοργος +ἄσπονδος +διάβολος +ἀκρατής +ἀνήμερος +ἀφιλάγαθος +προδότης +προπετής +τυφόω +φιλήδονος +μᾶλλον +ἤ +φιλόθεος +ἔχω +μόρφωσις +εὐσέβεια +δέ +ὁ +δύναμις +αὐτός +ἀρνέομαι +καί +οὗτος +ἀποτρέπω +γάρ +ἐκ +οὗτος +εἰμί +ὁ +ἐνδύνω +εἰς +ὁ +οἰκία +καί +αἰχμαλωτίζω +γυναικάριον +σωρεύω +ἁμαρτία +ἄγω +ἐπιθυμία +ποικίλος +πάντοτε +μανθάνω +καί +μηδέποτε +εἰς +ἐπίγνωσις +ἀλήθεια +ἔρχομαι +δύναμαι +δέ +ὅς +τρόπος +Ἰάννης +καί +Ἰαμβρῆς +ἀνθίστημι +Μωϋσῆς +οὕτω +καί +οὗτος +ἀνθίστημι +ὁ +ἀλήθεια +ἄνθρωπος +καταφθείρω +ὁ +νοῦς +ἀδόκιμος +περί +ὁ +πίστις +ἀλλά +οὐ +προκόπτω +ἐπί +πολύς +γάρ +ὁ +ἄνοια +αὐτός +ἔκδηλος +εἰμί +πᾶς +ὡς +καί +ὁ +ἐκεῖνος +γίνομαι +δέ +σύ +παρακολουθέω +ἐγώ +ὁ +διδασκαλία +ὁ +ἀγωγή +ὁ +πρόθεσις +ὁ +πίστις +ὁ +μακροθυμία +ὁ +ἀγάπη +ὁ +ὑπομονή +ὁ +διωγμός +ὁ +πάθημα +οἷος +ἐγώ +γίνομαι +ἐν +Ἀντιόχεια +ἐν +Ἰκόνιον +ἐν +Λύστρα +οἷος +διωγμός +ὑποφέρω +καί +ἐκ +πᾶς +ἐγώ +ῥύομαι +ὁ +κύριος +δέ +καί +πᾶς +ὁ +θέλω +ζάω +εὐσεβῶς +ἐν +Χριστός +Ἰησοῦς +διώκω +δέ +πονηρός +ἄνθρωπος +καί +γόης +προκόπτω +ἐπί +ὁ +χείρων +πλανάω +καί +πλανάω +δέ +σύ +μένω +ἐν +ὅς +μανθάνω +καί +πιστόω +οἶδα +παρά +τίς +μανθάνω +καί +ὅτι +ἀπό +βρέφος +οἶδα +ἱερός +γράμμα +ὁ +δύναμαι +σύ +σοφίζω +εἰς +σωτηρία +διά +πίστις +ὁ +ἐν +Χριστός +Ἰησοῦς +πᾶς +γραφή +θεόπνευστος +καί +ὠφέλιμος +πρός +διδασκαλία +πρός +ἐλεγμός +πρός +ἐπανόρθωσις +πρός +παιδεία +ὁ +ἐν +δικαιοσύνη +ἵνα +ἄρτιος +εἰμί +ὁ +ὁ +θεός +ἄνθρωπος +πρός +πᾶς +ἔργον +ἀγαθός +ἐξαρτίζω +διαμαρτύρομαι +ἐνώπιον +ὁ +θεός +καί +Χριστός +Ἰησοῦς +ὁ +μέλλω +κρίνω +ζάω +καί +νεκρός +καί +ὁ +ἐπιφάνεια +αὐτός +καί +ὁ +βασιλεία +αὐτός +κηρύσσω +ὁ +λόγος +ἐφίστημι +εὐκαίρως +ἀκαίρως +ἐλέγχω +ἐπιτιμάω +παρακαλέω +ἐν +πᾶς +μακροθυμία +καί +διδαχή +γάρ +εἰμί +καιρός +ὅτε +οὐ +ὁ +ὑγιαίνω +διδασκαλία +ἀνέχω +ἀλλά +κατά +ὁ +ἴδιος +ἐπιθυμία +ἑαυτοῦ +ἐπισωρεύω +διδάσκαλος +κνήθω +ὁ +ἀκοή +καί +μέν +ἀπό +ὁ +ἀλήθεια +ὁ +ἀκοή +ἀποστρέφω +δέ +ἐπί +ὁ +μῦθος +ἐκτρέπω +δέ +σύ +νήφω +ἐν +πᾶς +κακοπαθέω +ποιέω +ἔργον +εὐαγγελιστής +ὁ +διακονία +σύ +πληροφορέω +γάρ +ἐγώ +ἤδη +σπένδω +καί +ὁ +καιρός +ὁ +ἀνάλυσις +ἐγώ +ἐφίστημι +ὁ +καλός +ἀγών +ἀγωνίζομαι +ὁ +δρόμος +τελέω +ὁ +πίστις +τηρέω +λοιπός +ἀπόκειμαι +ἐγώ +ὁ +ὁ +δικαιοσύνη +στέφανος +ὅς +ἀποδίδωμι +ἐγώ +ὁ +κύριος +ὁ +δίκαιος +κριτής +ἐν +ἐκεῖνος +ὁ +ἡμέρα +δέ +οὐ +μόνος +ἐγώ +ἀλλά +καί +πᾶς +ὁ +ἀγαπάω +ὁ +ἐπιφάνεια +αὐτός +σπουδάζω +ἔρχομαι +πρός +ἐγώ +ταχέως +γάρ +Δημᾶς +ἐγώ +ἐγκαταλείπω +ἀγαπάω +ὁ +νῦν +αἰών +καί +πορεύομαι +εἰς +Θεσσαλονίκη +Κρήσκης +εἰς +Γαλατία +Τίτος +εἰς +Δαλματία +Λουκᾶς +εἰμί +μόνος +μετά +ἐγώ +Μᾶρκος +ἀναλαμβάνω +ἄγω +μετά +σεαυτοῦ +γάρ +εἰμί +ἐγώ +εὔχρηστος +εἰς +διακονία +δέ +Τυχικός +ἀποστέλλω +εἰς +Ἔφεσος +ὁ +φαιλόνης +ὅς +ἀπολείπω +ἐν +Τρῳάς +παρά +Κάρπος +ἔρχομαι +φέρω +καί +ὁ +βιβλίον +μάλιστα +ὁ +μεμβράνα +Ἀλέξανδρος +ὁ +χαλκεύς +πολύς +κακός +ἐγώ +ἐνδείκνυμι +ἀποδίδωμι +αὐτός +ὁ +κύριος +κατά +ὁ +ἔργον +αὐτός +ὅς +καί +σύ +φυλάσσω +γάρ +λίαν +ἀνθίστημι +ὁ +ἡμέτερος +λόγος +ἐν +ὁ +πρῶτος +ἐγώ +ἀπολογία +οὐδείς +ἐγώ +παραγίνομαι +ἀλλά +πᾶς +ἐγώ +ἐγκαταλείπω +μή +αὐτός +λογίζομαι +δέ +ὁ +κύριος +ἐγώ +παρίστημι +καί +ἐνδυναμόω +ἐγώ +ἵνα +διά +ἐγώ +ὁ +κήρυγμα +πληροφορέω +καί +ἀκούω +πᾶς +ὁ +ἔθνος +καί +ῥύομαι +ἐκ +στόμα +λέων +ῥύομαι +ἐγώ +ὁ +κύριος +ἀπό +πᾶς +ἔργον +πονηρός +καί +σῴζω +εἰς +ὁ +βασιλεία +αὐτός +ὁ +ἐπουράνιος +ὅς +ὁ +δόξα +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +ἀσπάζομαι +Πρίσκα +καί +Ἀκύλας +καί +ὁ +Ὀνησίφορος +οἶκος +Ἔραστος +μένω +ἐν +Κόρινθος +δέ +Τρόφιμος +ἀπολείπω +ἐν +Μίλητος +ἀσθενέω +σπουδάζω +πρό +χειμών +ἔρχομαι +ἀσπάζομαι +σύ +Εὔβουλος +καί +Πούδης +καί +Λίνος +καί +Κλαυδία +καί +ὁ +ἀδελφός +πᾶς +ὁ +κύριος +μετά +ὁ +πνεῦμα +σύ +ὁ +χάρις +μετά +σύ +Παῦλος +δοῦλος (II) +θεός +δέ +ἀπόστολος +Ἰησοῦς +Χριστός +κατά +πίστις +ἐκλεκτός +θεός +καί +ἐπίγνωσις +ἀλήθεια +ὁ +κατά +εὐσέβεια +ἐπί +ἐλπίς +ζωή +αἰώνιος +ὅς +ἐπαγγέλλομαι +ὁ +ἀψευδής +θεός +πρό +χρόνος +αἰώνιος +δέ +φανερόω +καιρός +ἴδιος +ὁ +λόγος +αὐτός +ἐν +κήρυγμα +ὅς +πιστεύω +ἐγώ +κατά +ἐπιταγή +ὁ +σωτήρ +ἐγώ +θεός +Τίτος +γνήσιος +τέκνον +κατά +κοινός +πίστις +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +καί +Χριστός +Ἰησοῦς +ὁ +σωτήρ +ἐγώ +οὗτος +χάριν +ἀπολείπω +σύ +ἐν +Κρήτη +ἵνα +ὁ +λείπω +ἐπιδιορθόω +καί +καθίστημι +κατά +πόλις +πρεσβύτερος +ὡς +ἐγώ +σύ +διατάσσω +εἰ +τὶς +εἰμί +ἀνέγκλητος +εἷς +γυνή +ἀνήρ +ἔχω +τέκνον +πιστός +μή +ἐν +κατηγορία +ἀσωτία +ἤ +ἀνυπότακτος +γάρ +δεῖ +ὁ +ἐπίσκοπος +εἰμί +ὡς +θεός +οἰκονόμος +ἀνέγκλητος +μή +αὐθάδης +μή +ὀργίλος +μή +πάροινος +μή +πλήκτης +μή +αἰσχροκερδής +ἀλλά +φιλόξενος +φιλάγαθος +σώφρων +δίκαιος +ὅσιος +ἐγκρατής +ἀντέχω +ὁ +κατά +ὁ +διδαχή +πιστός +λόγος +ἵνα +εἰμί +δυνατός +καί +παρακαλέω +ἐν +ὁ +διδασκαλία +ὁ +ὑγιαίνω +καί +ὁ +ἀντιλέγω +ἐλέγχω +γάρ +εἰμί +πολύς +ἀνυπότακτος +ματαιολόγος +καί +φρεναπάτης +μάλιστα +ὁ +ἐκ +ὁ +περιτομή +ὅς +ἐπιστομίζω +δεῖ +ὅστις +ὅλος +οἶκος +ἀνατρέπω +διδάσκω +ὅς +μή +δεῖ +αἰσχρός +κέρδος +χάριν +λέγω +τὶς +ἐκ +αὐτός +ἴδιος +αὐτός +προφήτης +Κρής +ἀεί +ψεύστης +κακός +θηρίον +γαστήρ +ἀργός +ὁ +μαρτυρία +οὗτος +εἰμί +ἀληθής +διά +ὅς +αἰτία +ἐλέγχω +αὐτός +ἀποτόμως +ἵνα +ὑγιαίνω +ἐν +ὁ +πίστις +μή +προσέχω +Ἰουδαϊκός +μῦθος +καί +ἐντολή +ἄνθρωπος +ἀποστρέφω +ὁ +ἀλήθεια +πᾶς +καθαρός +ὁ +καθαρός +δέ +ὁ +μιαίνω +καί +ἄπιστος +οὐδείς +καθαρός +ἀλλά +μιαίνω +αὐτός +καί +ὁ +νοῦς +καί +ὁ +συνείδησις +θεός +οἶδα +ὁμολογέω +δέ +ὁ +ἔργον +ἀρνέομαι +εἰμί +βδελυκτός +καί +ἀπειθής +καί +πρός +πᾶς +ἔργον +ἀγαθός +ἀδόκιμος +δέ +σύ +λαλέω +ὅς +πρέπω +ὁ +ὑγιαίνω +διδασκαλία +πρεσβύτης +εἰμί +νηφάλιος +σεμνός +σώφρων +ὑγιαίνω +ὁ +πίστις +ὁ +ἀγάπη +ὁ +ὑπομονή +πρεσβῦτις +ὡσαύτως +ἐν +κατάστημα +ἱεροπρεπής +μή +διάβολος +μηδέ +οἶνος +πολύς +δουλόω +καλοδιδάσκαλος +ἵνα +σωφρονίζω +ὁ +νέος +εἰμί +φίλανδρος +φιλότεκνος +σώφρων +ἁγνός +οἰκουργός +ἀγαθός +ὑποτάσσω +ὁ +ἴδιος +ἀνήρ +ἵνα +μή +ὁ +λόγος +ὁ +θεός +βλασφημέω +ὁ +νέος +ὡσαύτως +παρακαλέω +σωφρονέω +περί +πᾶς +σεαυτοῦ +παρέχω +τύπος +καλός +ἔργον +ἐν +ὁ +διδασκαλία +ἀφθορία +σεμνότης +λόγος +ὑγιής +ἀκατάγνωστος +ἵνα +ὁ +ἐκ +ἐναντίος +ἐντρέπω +ἔχω +λέγω +περί +ἐγώ +μηδείς +φαῦλος +δοῦλος (II) +ἴδιος +δεσπότης +ὑποτάσσω +ἐν +πᾶς +εὐάρεστος +εἰμί +μή +ἀντιλέγω +μή +νοσφίζω +ἀλλά +πᾶς +πίστις +ἀγαθός +ἐνδείκνυμι +ἵνα +ὁ +διδασκαλία +ὁ +ὁ +σωτήρ +ἐγώ +θεός +κοσμέω +ἐν +πᾶς +γάρ +ἐπιφαίνω +ὁ +χάρις +ὁ +θεός +σωτήριος +πᾶς +ἄνθρωπος +παιδεύω +ἐγώ +ἵνα +ἀρνέομαι +ὁ +ἀσέβεια +καί +ὁ +κοσμικός +ἐπιθυμία +σωφρόνως +καί +δικαίως +καί +εὐσεβῶς +ζάω +ἐν +ὁ +νῦν +αἰών +προσδέχομαι +ὁ +μακάριος +ἐλπίς +καί +ἐπιφάνεια +ὁ +δόξα +ὁ +μέγας +θεός +καί +σωτήρ +ἐγώ +Χριστός +Ἰησοῦς +ὅς +δίδωμι +ἑαυτοῦ +ὑπέρ +ἐγώ +ἵνα +λυτρόω +ἐγώ +ἀπό +πᾶς +ἀνομία +καί +καθαρίζω +ἑαυτοῦ +λαός +περιούσιος +ζηλωτής +καλός +ἔργον +οὗτος +λαλέω +καί +παρακαλέω +καί +ἐλέγχω +μετά +πᾶς +ἐπιταγή +μηδείς +σύ +περιφρονέω +ὑπομιμνῄσκω +αὐτός +ἀρχή +ἐξουσία +ὑποτάσσω +πειθαρχέω +πρός +πᾶς +ἔργον +ἀγαθός +ἕτοιμος +εἰμί +μηδείς +βλασφημέω +ἄμαχος +εἰμί +ἐπιεικής +πᾶς +πραΰτης +ἐνδείκνυμι +πρός +πᾶς +ἄνθρωπος +γάρ +εἰμί +ποτέ +καί +ἐγώ +ἀνόητος +ἀπειθής +πλανάω +δουλεύω +ἐπιθυμία +καί +ἡδονή +ποικίλος +ἐν +κακία +καί +φθόνος +διάγω +στυγητός +μισέω +ἀλλήλων +δέ +ὅτε +ὁ +χρηστότης +καί +ὁ +φιλανθρωπία +ὁ +σωτήρ +ἐγώ +θεός +ἐπιφαίνω +οὐ +ἐκ +ἔργον +ὁ +ἐν +δικαιοσύνη +ὅς +ποιέω +ἐγώ +ἀλλά +κατά +ὁ +αὐτός +ἔλεος +σῴζω +ἐγώ +διά +λουτρόν +παλιγγενεσία +καί +ἀνακαίνωσις +πνεῦμα +ἅγιος +ὅς +ἐκχέω +ἐπί +ἐγώ +πλουσίως +διά +Ἰησοῦς +Χριστός +ὁ +σωτήρ +ἐγώ +ἵνα +δικαιόω +ὁ +ἐκεῖνος +χάρις +κληρονόμος +γίνομαι +κατά +ἐλπίς +ζωή +αἰώνιος +πιστός +ὁ +λόγος +καί +περί +οὗτος +βούλομαι +σύ +διαβεβαιόομαι +ἵνα +φροντίζω +καλός +ἔργον +προΐστημι +ὁ +πιστεύω +θεός +οὗτος +εἰμί +καλός +καί +ὠφέλιμος +ὁ +ἄνθρωπος +δέ +μωρός +ζήτησις +καί +γενεαλογία +καί +ἔρις +καί +μάχη +νομικός +περιΐστημι +γάρ +εἰμί +ἀνωφελής +καί +μάταιος +αἱρετικός +ἄνθρωπος +μετά +εἷς +καί +δεύτερος +νουθεσία +παραιτέομαι +οἶδα +ὅτι +ὁ +τοιοῦτος +ἐκστρέφω +καί +ἁμαρτάνω +εἰμί +αὐτοκατάκριτος +ὅταν +πέμπω +πρός +σύ +Ἀρτεμᾶς +ἤ +Τυχικός +σπουδάζω +ἔρχομαι +πρός +ἐγώ +εἰς +Νικόπολις +γάρ +ἐκεῖ +παραχειμάζω +κρίνω +Ζηνᾶς +ὁ +νομικός +καί +Ἀπολλῶς +σπουδαίως +προπέμπω +ἵνα +μηδείς +αὐτός +λείπω +δέ +μανθάνω +καί +ὁ +ἡμέτερος +καλός +ἔργον +προΐστημι +εἰς +ὁ +ἀναγκαῖος +χρεία +ἵνα +μή +εἰμί +ἄκαρπος +ἀσπάζομαι +σύ +ὁ +μετά +ἐγώ +πᾶς +ἀσπάζομαι +ὁ +φιλέω +ἐγώ +ἐν +πίστις +ὁ +χάρις +μετά +πᾶς +σύ +Παῦλος +δέσμιος +Χριστός +Ἰησοῦς +καί +Τιμόθεος +ὁ +ἀδελφός +Φιλήμων +ὁ +ἀγαπητός +καί +συνεργός +ἐγώ +καί +Ἀπφία +ὁ +ἀδελφή +καί +Ἄρχιππος +ὁ +συστρατιώτης +ἐγώ +καί +ὁ +κατά +οἶκος +σύ +ἐκκλησία +σύ +χάρις +καί +εἰρήνη +ἀπό +θεός +πατήρ +ἐγώ +καί +κύριος +Ἰησοῦς +Χριστός +εὐχαριστέω +ὁ +θεός +ἐγώ +πάντοτε +μνεία +σύ +ποιέω +ἐπί +ὁ +προσευχή +ἐγώ +ἀκούω +σύ +ὁ +ἀγάπη +καί +ὁ +πίστις +ὅς +ἔχω +πρός +ὁ +κύριος +Ἰησοῦς +καί +εἰς +πᾶς +ὁ +ἅγιος +ὅπως +ὁ +κοινωνία +ὁ +πίστις +σύ +ἐνεργής +γίνομαι +ἐν +ἐπίγνωσις +πᾶς +ἀγαθός +ὁ +ἐν +ἐγώ +εἰς +Χριστός +γάρ +χαρά +πολύς +καί +παράκλησις +ἔχω +ἐπί +ὁ +ἀγάπη +σύ +ὅτι +ὁ +σπλάγχνον +ὁ +ἅγιος +ἀναπαύω +διά +σύ +ἀδελφός +διό +πολύς +ἐν +Χριστός +παρρησία +ἔχω +ἐπιτάσσω +σύ +ὁ +ἀνήκω +διά +ὁ +ἀγάπη +μᾶλλον +παρακαλέω +τοιοῦτος +εἰμί +ὡς +Παῦλος +πρεσβύτης +δέ +νυνί +καί +δέσμιος +Χριστός +Ἰησοῦς +παρακαλέω +σύ +περί +ὁ +ἐμός +τέκνον +γεννάω +ἐν +ὁ +δεσμός +ὅς +Ὀνήσιμος +ὁ +ποτέ +σύ +ἄχρηστος +δέ +νυνί +καί +σύ +καί +ἐγώ +εὔχρηστος +ἀναπέμπω +σύ +ὅς +αὐτός +οὗτος +εἰμί +ὁ +ἐμός +σπλάγχνον +ἐγώ +βούλομαι +ὅς +πρός +ἐμαυτοῦ +κατέχω +ἵνα +ὑπέρ +σύ +ἐγώ +διακονέω +ἐν +ὁ +δεσμός +ὁ +εὐαγγέλιον +δέ +χωρίς +ὁ +σός +γνώμη +οὐδείς +ποιέω +θέλω +ἵνα +μή +ὡς +κατά +ἀνάγκη +ὁ +ἀγαθός +σύ +εἰμί +ἀλλά +κατά +ἑκούσιος +γάρ +τάχα +διά +οὗτος +χωρίζω +πρός +ὥρα +ἵνα +αἰώνιος +αὐτός +ἀπέχω +οὐκέτι +ὡς +δοῦλος (II) +ἀλλά +ὑπέρ +δοῦλος (II) +ἀδελφός +ἀγαπητός +μάλιστα +ἐγώ +δέ +πόσος +μᾶλλον +σύ +καί +ἐν +σάρξ +καί +ἐν +κύριος +οὖν +εἰ +ἐγώ +ἔχω +κοινωνός +προσλαμβάνω +αὐτός +ὡς +ἐγώ +δέ +εἰ +τὶς +σύ +ἀδικέω +ἤ +ὀφείλω +οὗτος +ἐγώ +ἐλλογέω +ἐγώ +Παῦλος +γράφω +ὁ +ἐμός +χείρ +ἐγώ +ἀποτίνω +ἵνα +μή +λέγω +σύ +ὅτι +καί +σεαυτοῦ +ἐγώ +προσοφείλω +ναί +ἀδελφός +ἐγώ +σύ +ὀνίνημι +ἐν +κύριος +ἀναπαύω +ἐγώ +ὁ +σπλάγχνον +ἐν +Χριστός +πείθω +ὁ +ὑπακοή +σύ +γράφω +σύ +οἶδα +ὅτι +καί +ὑπέρ +ὅς +λέγω +ποιέω +δέ +ἅμα +καί +ἑτοιμάζω +ἐγώ +ξενία +γάρ +ἐλπίζω +ὅτι +διά +ὁ +προσευχή +σύ +χαρίζομαι +σύ +ἀσπάζομαι +σύ +Ἐπαφρᾶς +ὁ +συναιχμάλωτος +ἐγώ +ἐν +Χριστός +Ἰησοῦς +Μᾶρκος +Ἀρίσταρχος +Δημᾶς +Λουκᾶς +ὁ +συνεργός +ἐγώ +ὁ +χάρις +ὁ +κύριος +Ἰησοῦς +Χριστός +μετά +ὁ +πνεῦμα +σύ +πολυμερῶς +καί +πολυτρόπως +πάλαι +λαλέω +ὁ +πατήρ +ἐν +ὁ +προφήτης +ὁ +θεός +ἐπί +ἔσχατος +ὁ +ἡμέρα +οὗτος +λαλέω +ἐγώ +ἐν +υἱός +ὅς +τίθημι +κληρονόμος +πᾶς +διά +ὅς +καί +ποιέω +ὁ +αἰών +ὅς +εἰμί +ἀπαύγασμα +ὁ +δόξα +καί +χαρακτήρ +ὁ +ὑπόστασις +αὐτός +τέ +φέρω +ὁ +πᾶς +ὁ +ῥῆμα +ὁ +δύναμις +αὐτός +καθαρισμός +ὁ +ἁμαρτία +ποιέω +καθίζω +ἐν +δεξιός +ὁ +μεγαλωσύνη +ἐν +ὑψηλός +τοσοῦτος +κρείττων +γίνομαι +ὁ +ἄγγελος +ὅσος +διάφορος +ὄνομα +παρά +αὐτός +κληρονομέω +γάρ +τίς +ὁ +ἄγγελος +λέγω +ποτέ +υἱός +ἐγώ +εἰμί +σύ +ἐγώ +σήμερον +γεννάω +σύ +καί +πάλιν +ἐγώ +εἰμί +αὐτός +εἰς +πατήρ +καί +αὐτός +εἰμί +ἐγώ +εἰς +υἱός +δέ +ὅταν +πάλιν +εἰσάγω +ὁ +πρωτότοκος +εἰς +ὁ +οἰκουμένη +λέγω +καί +προσκυνέω +αὐτός +πᾶς +ἄγγελος +θεός +καί +μέν +πρός +ὁ +ἄγγελος +λέγω +ὁ +ποιέω +ὁ +ἄγγελος +αὐτός +πνεῦμα +καί +ὁ +λειτουργός +αὐτός +πῦρ +φλόξ +δέ +πρός +ὁ +υἱός +ὁ +θεός +ὁ +θρόνος +σύ +εἰς +ὁ +αἰών +ὁ +αἰών +καί +ὁ +ῥάβδος +ὁ +εὐθύτης +ῥάβδος +ὁ +βασιλεία +αὐτός +ἀγαπάω +δικαιοσύνη +καί +μισέω +ἀνομία +διά +οὗτος +χρίω +σύ +ὁ +θεός +ὁ +θεός +σύ +ἔλαιον +ἀγαλλίασις +παρά +ὁ +μέτοχος +σύ +καί +κύριος +σύ +κατά +ἀρχή +ὁ +γῆ +θεμελιόω +καί +ἔργον +ὁ +χείρ +σύ +εἰμί +ὁ +οὐρανός +αὐτός +ἀπόλλυμι +δέ +σύ +διαμένω +καί +πᾶς +παλαιόω +ὡς +ἱμάτιον +καί +ὡσεί +περιβόλαιον +ἑλίσσω +αὐτός +ὡς +ἱμάτιον +καί +ἀλλάσσω +δέ +σύ +ὁ +αὐτός +εἰμί +καί +ὁ +ἔτος +σύ +οὐ +ἐκλείπω +δέ +πρός +τίς +ὁ +ἄγγελος +εἶπον +ποτέ +κάθημαι +ἐκ +δεξιός +ἐγώ +ἕως +ἄν +τίθημι +ὁ +ἐχθρός +σύ +ὑποπόδιον +ὁ +πούς +σύ +οὐχί +πᾶς +εἰμί +λειτουργικός +πνεῦμα +εἰς +διακονία +ἀποστέλλω +διά +ὁ +μέλλω +κληρονομέω +σωτηρία +διά +οὗτος +δεῖ +περισσῶς +προσέχω +ἐγώ +ὁ +ἀκούω +μή +ποτέ +παραρρέω +γάρ +εἰ +ὁ +διά +ἄγγελος +λαλέω +λόγος +γίνομαι +βέβαιος +καί +πᾶς +παράβασις +καί +παρακοή +λαμβάνω +ἔνδικος +μισθαποδοσία +πῶς +ἐγώ +ἐκφεύγω +ἀμελέω +τηλικοῦτος +σωτηρία +ὅστις +ἀρχή +λαμβάνω +λαλέω +διά +ὁ +κύριος +ὑπό +ὁ +ἀκούω +εἰς +ἐγώ +βεβαιόω +συνεπιμαρτυρέω +ὁ +θεός +τέ +σημεῖον +καί +τέρας +καί +ποικίλος +δύναμις +καί +πνεῦμα +ἅγιος +μερισμός +κατά +ὁ +αὐτός +θέλησις +γάρ +οὐ +ἄγγελος +ὑποτάσσω +ὁ +οἰκουμένη +ὁ +μέλλω +περί +ὅς +λαλέω +δέ +διαμαρτύρομαι +πού +τὶς +λέγω +τίς +εἰμί +ἄνθρωπος +ὅτι +μιμνῄσκω +αὐτός +ἤ +υἱός +ἄνθρωπος +ὅτι +ἐπισκέπτομαι +αὐτός +ἐλαττόω +αὐτός +βραχύς +τὶς +παρά +ἄγγελος +δόξα +καί +τιμή +στεφανόω +αὐτός +πᾶς +ὑποτάσσω +ὑποκάτω +ὁ +πούς +αὐτός +γάρ +ἐν +ὁ +ὑποτάσσω +αὐτός +ὁ +πᾶς +οὐδείς +ἀφίημι +αὐτός +ἀνυπότακτος +δέ +νῦν +οὔπω +ὁράω +αὐτός +ὁ +πᾶς +ὑποτάσσω +δέ +βλέπω +ὁ +βραχύς +τὶς +παρά +ἄγγελος +ἐλαττόω +Ἰησοῦς +διά +ὁ +πάθημα +ὁ +θάνατος +δόξα +καί +τιμή +στεφανόω +ὅπως +χάρις +θεός +ὑπέρ +πᾶς +γεύομαι +θάνατος +γάρ +πρέπω +αὐτός +διά +ὅς +ὁ +πᾶς +καί +διά +ὅς +ὁ +πᾶς +πολύς +υἱός +εἰς +δόξα +ἄγω +ὁ +ἀρχηγός +ὁ +σωτηρία +αὐτός +διά +πάθημα +τελειόω +γάρ +τέ +ὁ +ἁγιάζω +καί +ὁ +ἁγιάζω +ἐκ +εἷς +πᾶς +διά +ὅς +αἰτία +οὐ +ἐπαισχύνομαι +ἀδελφός +αὐτός +καλέω +λέγω +ἀπαγγέλλω +ὁ +ὄνομα +σύ +ὁ +ἀδελφός +ἐγώ +ἐν +μέσος +ἐκκλησία +ὑμνέω +σύ +καί +πάλιν +ἐγώ +εἰμί +πείθω +ἐπί +αὐτός +καί +πάλιν +ὁράω +ἐγώ +καί +ὁ +παιδίον +ὅς +ἐγώ +δίδωμι +ὁ +θεός +οὖν +ἐπεί +ὁ +παιδίον +κοινωνέω +αἷμα +καί +σάρξ +καί +αὐτός +παραπλησίως +μετέχω +ὁ +αὐτός +ἵνα +διά +ὁ +θάνατος +καταργέω +ὁ +ὁ +κράτος +ὁ +θάνατος +ἔχω +οὗτος +εἰμί +ὁ +διάβολος +καί +ἀπαλλάσσω +οὗτος +ὅσος +φόβος +θάνατος +διά +πᾶς +ὁ +ζάω +ἔνοχος +δουλεία +εἰμί +γάρ +οὐ +δήπου +ἄγγελος +ἐπιλαμβάνομαι +ἀλλά +σπέρμα +Ἀβραάμ +ἐπιλαμβάνομαι +ὅθεν +ὀφείλω +κατά +πᾶς +ὁ +ἀδελφός +ὁμοιόω +ἵνα +γίνομαι +ἐλεήμων +καί +πιστός +ἀρχιερεύς +ὁ +πρός +ὁ +θεός +εἰς +ὁ +ἱλάσκομαι +ὁ +ἁμαρτία +ὁ +λαός +γάρ +ἐν +ὅς +πάσχω +αὐτός +πειράζω +δύναμαι +ὁ +πειράζω +βοηθέω +ὅθεν +ἀδελφός +ἅγιος +κλῆσις +ἐπουράνιος +μέτοχος +κατανοέω +ὁ +ἀπόστολος +καί +ἀρχιερεύς +ὁ +ὁμολογία +ἐγώ +Ἰησοῦς +πιστός +εἰμί +ὁ +ποιέω +αὐτός +ὡς +καί +Μωϋσῆς +ἐν +ὅλος +ὁ +οἶκος +αὐτός +γάρ +πολύς +δόξα +οὗτος +παρά +Μωϋσῆς +ἀξιόω +κατά +ὅσος +πολύς +τιμή +ἔχω +ὁ +οἶκος +ὁ +κατασκευάζω +αὐτός +γάρ +πᾶς +οἶκος +κατασκευάζω +ὑπό +τὶς +δέ +ὁ +πᾶς +κατασκευάζω +θεός +καί +μέν +Μωϋσῆς +πιστός +ἐν +ὅλος +ὁ +οἶκος +αὐτός +ὡς +θεράπων +εἰς +μαρτύριον +ὁ +λαλέω +δέ +Χριστός +ὡς +υἱός +ἐπί +ὁ +οἶκος +αὐτός +ὅς +οἶκος +εἰμί +ἐγώ +ἐάν +ὁ +παρρησία +καί +ὁ +καύχημα +ὁ +ἐλπίς +μέχρι +τέλος +βέβαιος +κατέχω +διό +καθώς +λέγω +ὁ +πνεῦμα +ὁ +ἅγιος +ἐάν +σήμερον +ὁ +φωνή +αὐτός +ἀκούω +μή +σκληρύνω +ὁ +καρδία +σύ +ὡς +ἐν +ὁ +παραπικρασμός +κατά +ὁ +ἡμέρα +ὁ +πειρασμός +ἐν +ὁ +ἔρημος +οὗ +πειράζω +ὁ +πατήρ +σύ +ἐν +δοκιμασία +καί +ὁράω +ὁ +ἔργον +ἐγώ +τεσσεράκοντα +ἔτος +διό +προσοχθίζω +ὁ +γενεά +οὗτος +καί +λέγω +ἀεί +πλανάω +ὁ +καρδία +δέ +αὐτός +οὐ +γινώσκω +ὁ +ὁδός +ἐγώ +ὡς +ὀμνύω +ἐν +ὁ +ὀργή +ἐγώ +εἰ +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +ἐγώ +βλέπω +ἀδελφός +μή +ποτέ +εἰμί +ἐν +τὶς +σύ +καρδία +πονηρός +ἀπιστία +ἐν +ὁ +ἀφίστημι +ἀπό +θεός +ζάω +ἀλλά +παρακαλέω +ἑαυτοῦ +κατά +ἕκαστος +ἡμέρα +ἄχρι +ὅς +ὁ +σήμερον +καλέω +ἵνα +μή +σκληρύνω +τὶς +ἐκ +σύ +ἀπάτη +ὁ +ἁμαρτία +γάρ +μέτοχος +ὁ +Χριστός +γίνομαι +ἐάνπερ +ὁ +ἀρχή +ὁ +ὑπόστασις +μέχρι +τέλος +βέβαιος +κατέχω +ἐν +ὁ +λέγω +ἐάν +σήμερον +ὁ +φωνή +αὐτός +ἀκούω +μή +σκληρύνω +ὁ +καρδία +σύ +ὡς +ἐν +ὁ +παραπικρασμός +γάρ +τίς +ἀκούω +παραπικραίνω +ἀλλά +οὐ +πᾶς +ὁ +ἐξέρχομαι +ἐκ +Αἴγυπτος +διά +Μωϋσῆς +δέ +τίς +προσοχθίζω +τεσσεράκοντα +ἔτος +οὐχί +ὁ +ἁμαρτάνω +ὅς +ὁ +κῶλον +πίπτω +ἐν +ὁ +ἔρημος +δέ +τίς +ὀμνύω +μή +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +αὐτός +εἰ +μή +ὁ +ἀπειθέω +καί +βλέπω +ὅτι +οὐ +δύναμαι +εἰσέρχομαι +διά +ἀπιστία +οὖν +φοβέω +μή +ποτέ +καταλείπω +ἐπαγγελία +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +αὐτός +δοκέω +τὶς +ἐκ +σύ +ὑστερέω +γάρ +καί +εἰμί +εὐαγγελίζω +καθάπερ +κἀκεῖνος +ἀλλά +οὐ +ὠφελέω +ὁ +λόγος +ὁ +ἀκοή +ἐκεῖνος +μή +συγκεράννυμι +ὁ +πίστις +ὁ +ἀκούω +γάρ +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +ὁ +πιστεύω +καθώς +εἶπον +ὡς +ὀμνύω +ἐν +ὁ +ὀργή +ἐγώ +εἰ +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +ἐγώ +καίτοι +ὁ +ἔργον +ἀπό +καταβολή +κόσμος +γίνομαι +γάρ +εἶπον +πού +περί +ὁ +ἕβδομος +οὕτω +καί +καταπαύω +ὁ +θεός +ἐν +ὁ +ἡμέρα +ὁ +ἕβδομος +ἀπό +πᾶς +ὁ +ἔργον +αὐτός +καί +ἐν +οὗτος +πάλιν +εἰ +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +ἐγώ +οὖν +ἐπεί +ἀπολείπω +τὶς +εἰσέρχομαι +εἰς +αὐτός +καί +ὁ +πρότερος +εὐαγγελίζω +οὐ +εἰσέρχομαι +διά +ἀπείθεια +πάλιν +ὁρίζω +τὶς +ἡμέρα +σήμερον +ἐν +Δαυίδ +λέγω +μετά +τοσοῦτος +χρόνος +καθώς +προλέγω +ἐάν +σήμερον +ὁ +φωνή +αὐτός +ἀκούω +μή +σκληρύνω +ὁ +καρδία +σύ +γάρ +εἰ +αὐτός +Ἰησοῦς +καταπαύω +ἄν +οὐ +περί +ἄλλος +ἡμέρα +λαλέω +μετά +οὗτος +ἄρα +ἀπολείπω +σαββατισμός +ὁ +λαός +ὁ +θεός +γάρ +ὁ +εἰσέρχομαι +εἰς +ὁ +κατάπαυσις +αὐτός +καί +αὐτός +καταπαύω +ἀπό +ὁ +ἔργον +αὐτός +ὥσπερ +ἀπό +ὁ +ἴδιος +ὁ +θεός +οὖν +σπουδάζω +εἰσέρχομαι +εἰς +ἐκεῖνος +ὁ +κατάπαυσις +ἵνα +μή +ἐν +ὁ +αὐτός +ὑπόδειγμα +ὁ +ἀπείθεια +τὶς +πίπτω +γάρ +ὁ +λόγος +ὁ +θεός +ζάω +καί +ἐνεργής +καί +τομός +ὑπέρ +πᾶς +μάχαιρα +δίστομος +καί +διϊκνέομαι +ἄχρι +μερισμός +ψυχή +καί +πνεῦμα +τέ +ἁρμός +καί +μυελός +καί +κριτικός +ἐνθύμησις +καί +ἔννοια +καρδία +καί +οὐ +εἰμί +κτίσις +ἀφανής +ἐνώπιον +αὐτός +δέ +πᾶς +γυμνός +καί +τραχηλίζω +ὁ +ὀφθαλμός +αὐτός +πρός +ὅς +ἐγώ +ὁ +λόγος +οὖν +ἔχω +ἀρχιερεύς +μέγας +διέρχομαι +ὁ +οὐρανός +Ἰησοῦς +ὁ +υἱός +ὁ +θεός +κρατέω +ὁ +ὁμολογία +γάρ +ἔχω +ἀρχιερεύς +οὐ +μή +δύναμαι +συμπαθέω +ὁ +ἀσθένεια +ἐγώ +δέ +πειράζω +κατά +πᾶς +κατά +ὁμοιότης +χωρίς +ἁμαρτία +οὖν +προσέρχομαι +μετά +παρρησία +ὁ +θρόνος +ὁ +χάρις +ἵνα +λαμβάνω +ἔλεος +καί +χάρις +εὑρίσκω +εἰς +εὔκαιρος +βοήθεια +γάρ +πᾶς +ἀρχιερεύς +ἐκ +ἄνθρωπος +λαμβάνω +ὑπέρ +ἄνθρωπος +καθίστημι +ὁ +πρός +ὁ +θεός +ἵνα +προσφέρω +τέ +δῶρον +καί +θυσία +ὑπέρ +ἁμαρτία +δύναμαι +μετριοπαθέω +ὁ +ἀγνοέω +καί +πλανάω +ἐπεί +καί +αὐτός +περίκειμαι +ἀσθένεια +καί +διά +αὐτός +ὀφείλω +καθώς +περί +ὁ +λαός +οὕτω +καί +περί +ἑαυτοῦ +προσφέρω +περί +ἁμαρτία +καί +οὐ +ἑαυτοῦ +τὶς +λαμβάνω +ὁ +τιμή +ἀλλά +καλέω +ὑπό +ὁ +θεός +καθώς +καί +Ἀαρών +οὕτω +καί +ὁ +Χριστός +οὐ +ἑαυτοῦ +δοξάζω +γίνομαι +ἀρχιερεύς +ἀλλά +ὁ +λαλέω +πρός +αὐτός +υἱός +ἐγώ +εἰμί +σύ +ἐγώ +σήμερον +γεννάω +σύ +καθώς +καί +ἐν +ἕτερος +λέγω +σύ +ἱερεύς +εἰς +ὁ +αἰών +κατά +ὁ +τάξις +Μελχισέδεκ +ὅς +ἐν +ὁ +ἡμέρα +ὁ +σάρξ +αὐτός +τέ +δέησις +καί +ἱκετηρία +πρός +ὁ +δύναμαι +σῴζω +αὐτός +ἐκ +θάνατος +μετά +κραυγή +ἰσχυρός +καί +δάκρυον +προσφέρω +καί +εἰσακούω +ἀπό +ὁ +εὐλάβεια +καίπερ +εἰμί +υἱός +μανθάνω +ἀπό +ὅς +πάσχω +ὁ +ὑπακοή +καί +τελειόω +γίνομαι +πᾶς +ὁ +ὑπακούω +αὐτός +αἴτιος +σωτηρία +αἰώνιος +προσαγορεύω +ὑπό +ὁ +θεός +ἀρχιερεύς +κατά +ὁ +τάξις +Μελχισέδεκ +περί +ὅς +πολύς +ἐγώ +ὁ +λόγος +καί +δυσερμήνευτος +λέγω +ἐπεί +νωθρός +γίνομαι +ὁ +ἀκοή +γάρ +καί +ὀφείλω +εἰμί +διδάσκαλος +διά +ὁ +χρόνος +πάλιν +ἔχω +χρεία +ὁ +διδάσκω +σύ +τὶς +ὁ +στοιχεῖον +ὁ +ἀρχή +ὁ +λόγιον +ὁ +θεός +καί +γίνομαι +ἔχω +χρεία +γάλα +οὐ +στερεός +τροφή +γάρ +πᾶς +ὁ +μετέχω +γάλα +ἄπειρος +λόγος +δικαιοσύνη +γάρ +νήπιος +εἰμί +δέ +εἰμί +ὁ +στερεός +τροφή +τέλειος +ὁ +διά +ὁ +ἕξις +ὁ +αἰσθητήριον +γυμνάζω +ἔχω +πρός +διάκρισις +τέ +καλός +καί +κακός +διό +ἀφίημι +ὁ +ὁ +ἀρχή +ὁ +Χριστός +λόγος +ἐπί +ὁ +τελειότης +φέρω +μή +πάλιν +καταβάλλω +θεμέλιος +μετάνοια +ἀπό +νεκρός +ἔργον +καί +πίστις +ἐπί +θεός +διδαχή +βαπτισμός +τέ +ἐπίθεσις +χείρ +ἀνάστασις +νεκρός +καί +κρίμα +αἰώνιος +καί +οὗτος +ποιέω +ἐάνπερ +ἐπιτρέπω +ὁ +θεός +γάρ +ἀδύνατος +ὁ +ἅπαξ +φωτίζω +τέ +γεύομαι +ὁ +δωρεά +ὁ +ἐπουράνιος +καί +μέτοχος +πνεῦμα +ἅγιος +γίνομαι +καί +γεύομαι +καλός +θεός +ῥῆμα +τέ +δύναμις +μέλλω +αἰών +καί +παραπίπτω +πάλιν +ἀνακαινίζω +εἰς +μετάνοια +ἀνασταυρόω +ἑαυτοῦ +ὁ +υἱός +ὁ +θεός +καί +παραδειγματίζω +γάρ +γῆ +ὁ +πίνω +ὁ +ἐπί +αὐτός +ἔρχομαι +πολλάκις +ὑετός +καί +τίκτω +βοτάνη +εὔθετος +ἐκεῖνος +διά +ὅς +καί +γεωργέω +μεταλαμβάνω +εὐλογία +ἀπό +ὁ +θεός +δέ +ἐκφέρω +ἄκανθα +καί +τρίβολος +ἀδόκιμος +καί +κατάρα +ἐγγύς +ὅς +ὁ +τέλος +εἰς +καῦσις +δέ +ἀγαπητός +πείθω +περί +σύ +ὁ +κρείττων +καί +ἔχω +σωτηρία +εἰ +καί +οὕτω +λαλέω +γάρ +οὐ +ἄδικος +ὁ +θεός +ἐπιλανθάνομαι +ὁ +ἔργον +σύ +καί +ὁ +ἀγάπη +ὅς +ἐνδείκνυμι +εἰς +ὁ +ὄνομα +αὐτός +διακονέω +καί +διακονέω +ὁ +ἅγιος +δέ +ἐπιθυμέω +ἕκαστος +σύ +ὁ +αὐτός +σπουδή +ἐνδείκνυμι +πρός +ὁ +πληροφορία +ὁ +ἐλπίς +ἄχρι +τέλος +ἵνα +μή +νωθρός +γίνομαι +δέ +μιμητής +ὁ +διά +πίστις +καί +μακροθυμία +κληρονομέω +ὁ +ἐπαγγελία +γάρ +ὁ +Ἀβραάμ +ἐπαγγέλλομαι +ὁ +θεός +ἐπεί +κατά +οὐδείς +μέγας +ὀμνύω +ἔχω +ὀμνύω +κατά +ἑαυτοῦ +λέγω +εἰ +μήν (I) +εὐλογέω +εὐλογέω +σύ +καί +πληθύνω +πληθύνω +σύ +καί +οὕτω +μακροθυμέω +ἐπιτυγχάνω +ὁ +ἐπαγγελία +γάρ +ἄνθρωπος +κατά +ὁ +μέγας +ὀμνύω +καί +αὐτός +πᾶς +ἀντιλογία +πέρας +εἰς +βεβαίωσις +ὁ +ὅρκος +ἐν +ὅς +περισσός +βούλομαι +ἐπιδείκνυμι +ὁ +κληρονόμος +ὁ +ἐπαγγελία +ὁ +ἀμετάθετος +ὁ +βουλή +αὐτός +ὁ +θεός +μεσιτεύω +ὅρκος +ἵνα +διά +δύο +πρᾶγμα +ἀμετάθετος +ἐν +ὅς +ἀδύνατος +ψεύδομαι +θεός +ἰσχυρός +παράκλησις +ἔχω +ὁ +καταφεύγω +κρατέω +ὁ +πρόκειμαι +ἐλπίς +ὅς +ἔχω +ὡς +ἄγκυρα +ὁ +ψυχή +τέ +ἀσφαλής +καί +βέβαιος +καί +εἰσέρχομαι +εἰς +ὁ +ἐσώτερος +ὁ +καταπέτασμα +ὅπου +πρόδρομος +Ἰησοῦς +ὑπέρ +ἐγώ +εἰσέρχομαι +κατά +ὁ +τάξις +Μελχισέδεκ +ἀρχιερεύς +γίνομαι +εἰς +ὁ +αἰών +γάρ +οὗτος +ὁ +Μελχισέδεκ +βασιλεύς +Σαλήμ +ἱερεύς +ὁ +θεός +ὁ +ὕψιστος +ὁ +συναντάω +Ἀβραάμ +ὑποστρέφω +ἀπό +ὁ +κοπή +ὁ +βασιλεύς +καί +εὐλογέω +αὐτός +ὅς +καί +δέκατος +ἀπό +πᾶς +μερίζω +Ἀβραάμ +μέν +πρῶτος +ἑρμηνεύω +βασιλεύς +δικαιοσύνη +δέ +ἔπειτα +καί +βασιλεύς +Σαλήμ +ὅς +εἰμί +βασιλεύς +εἰρήνη +ἀπάτωρ +ἀμήτωρ +ἀγενεαλόγητος +μήτε +ἀρχή +ἡμέρα +μήτε +ζωή +τέλος +ἔχω +δέ +ἀφομοιόω +ὁ +υἱός +ὁ +θεός +μένω +ἱερεύς +εἰς +ὁ +διηνεκής +δέ +θεωρέω +πηλίκος +οὗτος +ὅς +δέκατος +Ἀβραάμ +ὁ +πατριάρχης +δίδωμι +ἐκ +ὁ +ἀκροθίνιον +καί +μέν +ὁ +ἐκ +ὁ +υἱός +Λευί +ὁ +ἱερατεία +λαμβάνω +ἐντολή +ἔχω +ἀποδεκατόω +κατά +ὁ +νόμος +ὁ +λαός +οὗτος +εἰμί +ὁ +ἀδελφός +αὐτός +καίπερ +ἐξέρχομαι +ἐκ +ὁ +ὀσφῦς +Ἀβραάμ +δέ +ὁ +μή +γενεαλογέω +ἐκ +αὐτός +δεκατόω +Ἀβραάμ +καί +ὁ +ἔχω +ὁ +ἐπαγγελία +εὐλογέω +δέ +χωρίς +πᾶς +ἀντιλογία +ὁ +ἐλάσσων +ὑπό +ὁ +κρείττων +εὐλογέω +καί +μέν +ὧδε +δέκατος +ἀποθνῄσκω +ἄνθρωπος +λαμβάνω +δέ +ἐκεῖ +μαρτυρέω +ὅτι +ζάω +καί +ὡς +ἔπος +λέγω +διά +Ἀβραάμ +καί +Λευί +ὁ +δέκατος +λαμβάνω +δεκατόω +γάρ +ἔτι +ἐν +ὁ +ὀσφῦς +ὁ +πατήρ +εἰμί +ὅτε +συναντάω +αὐτός +Μελχισέδεκ +μέν +οὖν +εἰ +τελείωσις +διά +ὁ +Λευιτικός +ἱερωσύνη +εἰμί +γάρ +ὁ +λαός +ἐπί +αὐτός +νομοθετέω +τίς +ἔτι +χρεία +κατά +ὁ +τάξις +Μελχισέδεκ +ἀνίστημι +ἕτερος +ἱερεύς +καί +οὐ +κατά +ὁ +τάξις +Ἀαρών +λέγω +γάρ +μετατίθημι +ὁ +ἱερωσύνη +ἐκ +ἀνάγκη +καί +νόμος +μετάθεσις +γίνομαι +γάρ +ἐπί +ὅς +λέγω +οὗτος +φυλή +ἕτερος +μετέχω +ἀπό +ὅς +οὐδείς +προσέχω +ὁ +θυσιαστήριον +γάρ +πρόδηλος +ὅτι +ἐκ +Ἰούδας +ἀνατέλλω +ὁ +κύριος +ἐγώ +εἰς +ὅς +φυλή +περί +ἱερεύς +οὐδείς +Μωϋσῆς +λαλέω +καί +περισσός +ἔτι +κατάδηλος +εἰμί +εἰ +κατά +ὁ +ὁμοιότης +Μελχισέδεκ +ἀνίστημι +ἱερεύς +ἕτερος +ὅς +γίνομαι +οὐ +κατά +νόμος +ἐντολή +σάρκινος +ἀλλά +κατά +δύναμις +ζωή +ἀκατάλυτος +γάρ +μαρτυρέω +ὅτι +σύ +ἱερεύς +εἰς +ὁ +αἰών +κατά +ὁ +τάξις +Μελχισέδεκ +γάρ +μέν +ἀθέτησις +προάγω +ἐντολή +γίνομαι +διά +ὁ +αὐτός +ἀσθενής +καί +ἀνωφελής +γάρ +οὐδείς +τελειόω +ὁ +νόμος +δέ +ἐπεισαγωγή +κρείττων +ἐλπίς +διά +ὅς +ἐγγίζω +ὁ +θεός +καί +κατά +ὅσος +οὐ +χωρίς +ὁρκωμοσία +γάρ +μέν +ὁ +χωρίς +ὁρκωμοσία +εἰμί +γίνομαι +ἱερεύς +δέ +ὁ +μετά +ὁρκωμοσία +διά +ὁ +λέγω +πρός +αὐτός +ὀμνύω +κύριος +καί +οὐ +μεταμέλομαι +σύ +ἱερεύς +εἰς +ὁ +αἰών +κατά +τοσοῦτος +καί +κρείττων +διαθήκη +ἔγγυος +γίνομαι +Ἰησοῦς +καί +μέν +ὁ +πολύς +εἰμί +γίνομαι +ἱερεύς +διά +ὁ +θάνατος +κωλύω +παραμένω +δέ +ὁ +διά +ὁ +μένω +αὐτός +εἰς +ὁ +αἰών +ἀπαράβατος +ἔχω +ὁ +ἱερωσύνη +ὅθεν +καί +δύναμαι +σῴζω +εἰς +ὁ +παντελής +ὁ +προσέρχομαι +διά +αὐτός +ὁ +θεός +πάντοτε +ζάω +εἰς +ὁ +ἐντυγχάνω +ὑπέρ +αὐτός +γάρ +ἐγώ +καί +πρέπω +τοιοῦτος +ἀρχιερεύς +ὅσιος +ἄκακος +ἀμίαντος +χωρίζω +ἀπό +ὁ +ἁμαρτωλός +καί +ὑψηλός +ὁ +οὐρανός +γίνομαι +ὅς +οὐ +ἔχω +κατά +ἡμέρα +ἀνάγκη +ὥσπερ +ὁ +ἀρχιερεύς +πρότερος +ὑπέρ +ὁ +ἴδιος +ἁμαρτία +θυσία +ἀναφέρω +ἔπειτα +ὁ +ὁ +λαός +γάρ +οὗτος +ποιέω +ἐφάπαξ +ἑαυτοῦ +ἀναφέρω +γάρ +ὁ +νόμος +ἄνθρωπος +καθίστημι +ἀρχιερεύς +ἔχω +ἀσθένεια +δέ +ὁ +λόγος +ὁ +ὁρκωμοσία +ὁ +μετά +ὁ +νόμος +υἱός +εἰς +ὁ +αἰών +τελειόω +δέ +κεφάλαιον +ἐπί +ὁ +λέγω +ἔχω +τοιοῦτος +ἀρχιερεύς +ὅς +καθίζω +ἐν +δεξιός +ὁ +θρόνος +ὁ +μεγαλωσύνη +ἐν +ὁ +οὐρανός +λειτουργός +ὁ +ἅγιος +καί +ὁ +σκηνή +ὁ +ἀληθινός +ὅς +πήγνυμι +ὁ +κύριος +οὐ +ἄνθρωπος +γάρ +πᾶς +ἀρχιερεύς +εἰς +ὁ +προσφέρω +τέ +δῶρον +καί +θυσία +καθίστημι +ὅθεν +ἀναγκαῖος +ἔχω +καί +οὗτος +τὶς +ὅς +προσφέρω +οὖν +μέν +εἰ +εἰμί +ἐπί +γῆ +ἄν +οὐδέ +εἰμί +ἱερεύς +εἰμί +ὁ +προσφέρω +κατά +νόμος +ὁ +δῶρον +ὅστις +ὑπόδειγμα +καί +σκιά +ὁ +ἐπουράνιος +λατρεύω +καθώς +χρηματίζω +Μωϋσῆς +μέλλω +ἐπιτελέω +ὁ +σκηνή +γάρ +φημί +ὁράω +ποιέω +πᾶς +κατά +ὁ +τύπος +ὁ +δείκνυμι +σύ +ἐν +ὁ +ὄρος +δέ +νῦν +διάφορος +λειτουργία +τυγχάνω +ὅσος +καί +εἰμί +μεσίτης +κρείττων +διαθήκη +ὅστις +ἐπί +κρείττων +ἐπαγγελία +νομοθετέω +γάρ +εἰ +ὁ +πρῶτος +ἐκεῖνος +εἰμί +ἄμεμπτος +ἄν +οὐ +δεύτερος +τόπος +ζητέω +γάρ +μέμφομαι +αὐτός +λέγω +ὁράω +ἡμέρα +ἔρχομαι +λέγω +κύριος +καί +συντελέω +ἐπί +ὁ +οἶκος +Ἰσραήλ +καί +ἐπί +ὁ +οἶκος +Ἰούδας +διαθήκη +καινός +οὐ +κατά +ὁ +διαθήκη +ὅς +ποιέω +ὁ +πατήρ +αὐτός +ἐν +ἡμέρα +ἐπιλαμβάνομαι +ἐγώ +ὁ +χείρ +αὐτός +ἐξάγω +αὐτός +ἐκ +γῆ +Αἴγυπτος +ὅτι +αὐτός +οὐ +ἐμμένω +ἐν +ὁ +διαθήκη +ἐγώ +κἀγώ +ἀμελέω +αὐτός +λέγω +κύριος +ὅτι +οὗτος +ὁ +διαθήκη +ὅς +διατίθημι +ὁ +οἶκος +Ἰσραήλ +μετά +ὁ +ἡμέρα +ἐκεῖνος +λέγω +κύριος +δίδωμι +νόμος +ἐγώ +εἰς +ὁ +διάνοια +αὐτός +καί +ἐπί +καρδία +αὐτός +ἐπιγράφω +αὐτός +καί +εἰμί +αὐτός +εἰς +θεός +καί +αὐτός +εἰμί +ἐγώ +εἰς +λαός +καί +οὐ +μή +διδάσκω +ἕκαστος +ὁ +πολίτης +αὐτός +καί +ἕκαστος +ὁ +ἀδελφός +αὐτός +λέγω +γινώσκω +ὁ +κύριος +ὅτι +πᾶς +οἶδα +ἐγώ +ἀπό +μικρός +ἕως +μέγας +αὐτός +ὅτι +ἵλεως +εἰμί +ὁ +ἀδικία +αὐτός +καί +ὁ +ἁμαρτία +αὐτός +οὐ +μή +μιμνῄσκω +ἔτι +ἐν +ὁ +λέγω +καινός +παλαιόω +ὁ +πρῶτος +δέ +ὁ +παλαιόω +καί +γηράσκω +ἐγγύς +ἀφανισμός +μέν +οὖν +ἔχω +καί +ὁ +πρῶτος +δικαίωμα +λατρεία +τέ +ὁ +ἅγιος +κοσμικός +γάρ +κατασκευάζω +σκηνή +ὁ +πρῶτος +ἐν +ὅς +τέ +ὁ +λυχνία +καί +ὁ +τράπεζα +καί +ὁ +πρόθεσις +ὁ +ἄρτος +ὅστις +λέγω +ἅγιος +δέ +μετά +ὁ +δεύτερος +καταπέτασμα +σκηνή +ὁ +λέγω +ἅγιος +ἅγιος +ἔχω +χρυσοῦς +θυμιατήριον +καί +ὁ +κιβωτός +ὁ +διαθήκη +περικαλύπτω +πάντοθεν +χρυσίον +ἐν +ὅς +στάμνος +χρυσοῦς +ἔχω +ὁ +μάννα +καί +ὁ +ῥάβδος +Ἀαρών +ὁ +βλαστάνω +καί +ὁ +πλάξ +ὁ +διαθήκη +δέ +ὑπεράνω +αὐτός +Χερούβ +δόξα +κατασκιάζω +ὁ +ἱλαστήριος +περί +ὅς +οὐ +εἰμί +νῦν +λέγω +κατά +μέρος +δέ +οὗτος +οὕτω +κατασκευάζω +μέν +εἰς +ὁ +πρῶτος +σκηνή +διά +πᾶς +εἴσειμι +ὁ +ἱερεύς +ὁ +λατρεία +ἐπιτελέω +δέ +εἰς +ὁ +δεύτερος +ἅπαξ +ὁ +ἐνιαυτός +μόνος +ὁ +ἀρχιερεύς +οὐ +χωρίς +αἷμα +ὅς +προσφέρω +ὑπέρ +ἑαυτοῦ +καί +ὁ +ὁ +λαός +ἀγνόημα +οὗτος +δηλόω +ὁ +πνεῦμα +ὁ +ἅγιος +μήπω +φανερόω +ὁ +ὁ +ἅγιος +ὁδός +ἔτι +ὁ +πρῶτος +σκηνή +ἔχω +στάσις +ὅστις +παραβολή +εἰς +ὁ +καιρός +ὁ +ἐνίστημι +κατά +ὅς +τέ +δῶρον +καί +θυσία +προσφέρω +μή +δύναμαι +κατά +συνείδησις +τελειόω +ὁ +λατρεύω +μόνος +ἐπί +βρῶμα +καί +πόμα +καί +διάφορος +βαπτισμός +δικαίωμα +σάρξ +μέχρι +καιρός +διόρθωσις +ἐπίκειμαι +δέ +παραγίνομαι +Χριστός +ἀρχιερεύς +ὁ +γίνομαι +ἀγαθός +διά +ὁ +μέγας +καί +τέλειος +σκηνή +οὐ +χειροποίητος +οὗτος +εἰμί +οὐ +οὗτος +ὁ +κτίσις +οὐδέ +διά +αἷμα +τράγος +καί +μόσχος +δέ +διά +ὁ +ἴδιος +αἷμα +εἰσέρχομαι +ἐφάπαξ +εἰς +ὁ +ἅγιος +αἰώνιος +λύτρωσις +εὑρίσκω +γάρ +εἰ +ὁ +αἷμα +τράγος +καί +ταῦρος +καί +σποδός +δάμαλις +ῥαντίζω +ὁ +κοινόω +ἁγιάζω +πρός +ὁ +ὁ +σάρξ +καθαρότης +πόσος +μᾶλλον +ὁ +αἷμα +ὁ +Χριστός +ὅς +διά +πνεῦμα +αἰώνιος +ἑαυτοῦ +προσφέρω +ἄμωμος +ὁ +θεός +καθαρίζω +ὁ +συνείδησις +ἐγώ +ἀπό +νεκρός +ἔργον +εἰς +ὁ +λατρεύω +θεός +ζάω +καί +διά +οὗτος +διαθήκη +καινός +μεσίτης +εἰμί +ὅπως +θάνατος +γίνομαι +εἰς +ἀπολύτρωσις +ὁ +ἐπί +ὁ +πρῶτος +διαθήκη +παράβασις +λαμβάνω +ὁ +καλέω +ὁ +ἐπαγγελία +ὁ +αἰώνιος +κληρονομία +γάρ +ὅπου +διαθήκη +ἀνάγκη +φέρω +θάνατος +ὁ +διατίθημι +γάρ +διαθήκη +ἐπί +νεκρός +βέβαιος +ἐπεί +μή +ποτέ +ἰσχύω +ὅτε +ζάω +ὁ +διατίθημι +ὅθεν +οὐδέ +ὁ +πρῶτος +χωρίς +αἷμα +ἐγκαινίζω +γάρ +λαλέω +πᾶς +ἐντολή +κατά +ὁ +νόμος +ὑπό +Μωϋσῆς +πᾶς +ὁ +λαός +λαμβάνω +ὁ +αἷμα +ὁ +μόσχος +καί +ὁ +τράγος +μετά +ὕδωρ +καί +ἔριον +κόκκινος +καί +ὕσσωπος +τέ +αὐτός +ὁ +βιβλίον +καί +πᾶς +ὁ +λαός +ῥαντίζω +λέγω +οὗτος +ὁ +αἷμα +ὁ +διαθήκη +ὅς +ἐντέλλομαι +πρός +σύ +ὁ +θεός +δέ +καί +ὁ +σκηνή +καί +πᾶς +ὁ +σκεῦος +ὁ +λειτουργία +ὁ +αἷμα +ὁμοίως +ῥαντίζω +καί +σχεδόν +ἐν +αἷμα +πᾶς +καθαρίζω +κατά +ὁ +νόμος +καί +χωρίς +αἱματεκχυσία +οὐ +γίνομαι +ἄφεσις +οὖν +ἀνάγκη +μέν +ὁ +ὑπόδειγμα +ὁ +ἐν +ὁ +οὐρανός +οὗτος +καθαρίζω +δέ +αὐτός +ὁ +ἐπουράνιος +θυσία +κρείττων +παρά +οὗτος +γάρ +εἰσέρχομαι +Χριστός +οὐ +εἰς +χειροποίητος +ἅγιος +ἀντίτυπος +ὁ +ἀληθινός +ἀλλά +εἰς +αὐτός +ὁ +οὐρανός +νῦν +ἐμφανίζω +ὁ +πρόσωπον +ὁ +θεός +ὑπέρ +ἐγώ +οὐδέ +ἵνα +πολλάκις +προσφέρω +ἑαυτοῦ +ὥσπερ +ὁ +ἀρχιερεύς +εἰσέρχομαι +εἰς +ὁ +ἅγιος +κατά +ἐνιαυτός +ἐν +αἷμα +ἀλλότριος +ἐπεί +δεῖ +αὐτός +πολλάκις +πάσχω +ἀπό +καταβολή +κόσμος +δέ +νυνί +ἅπαξ +ἐπί +συντέλεια +ὁ +αἰών +εἰς +ἀθέτησις +ὁ +ἁμαρτία +διά +ὁ +θυσία +αὐτός +φανερόω +καί +κατά +ὅσος +ἀπόκειμαι +ὁ +ἄνθρωπος +ἅπαξ +ἀποθνῄσκω +δέ +μετά +οὗτος +κρίσις +οὕτω +καί +ὁ +Χριστός +ἅπαξ +προσφέρω +εἰς +ὁ +πολύς +ἁμαρτία +ἀναφέρω +ἐκ +δεύτερος +χωρίς +ἁμαρτία +ὁράω +ὁ +αὐτός +ἀπεκδέχομαι +εἰς +σωτηρία +γάρ +ὁ +νόμος +ἔχω +σκιά +ὁ +μέλλω +ἀγαθός +οὐ +αὐτός +ὁ +εἰκών +ὁ +πρᾶγμα +κατά +ἐνιαυτός +ὁ +αὐτός +θυσία +ὅς +προσφέρω +εἰς +ὁ +διηνεκής +οὐδέποτε +δύναμαι +ὁ +προσέρχομαι +τελειόω +ἐπεί +οὐ +ἄν +παύω +προσφέρω +διά +ὁ +μηδείς +ἔχω +ἔτι +συνείδησις +ἁμαρτία +ὁ +λατρεύω +ἅπαξ +καθαρίζω +ἀλλά +ἐν +αὐτός +ἀνάμνησις +ἁμαρτία +κατά +ἐνιαυτός +γάρ +ἀδύνατος +αἷμα +ταῦρος +καί +τράγος +ἀφαιρέω +ἁμαρτία +διό +εἰσέρχομαι +εἰς +ὁ +κόσμος +λέγω +θυσία +καί +προσφορά +οὐ +θέλω +δέ +σῶμα +καταρτίζω +ἐγώ +ὁλοκαύτωμα +καί +περί +ἁμαρτία +οὐ +εὐδοκέω +τότε +λέγω +ὁ +θεός +ὁράω +ἐν +κεφαλίς +βιβλίον +γράφω +περί +ἐγώ +ἥκω +ὁ +ποιέω +ὁ +θέλημα +σύ +ἀνώτερος +λέγω +ὅτι +θυσία +καί +προσφορά +καί +ὁλοκαύτωμα +καί +περί +ἁμαρτία +οὐ +θέλω +οὐδέ +εὐδοκέω +ὅστις +κατά +νόμος +προσφέρω +τότε +εἶπον +ὁράω +ἥκω +ὁ +ποιέω +ὁ +θέλημα +σύ +ἀναιρέω +ὁ +πρῶτος +ἵνα +ὁ +δεύτερος +ἵστημι +ἐν +ὅς +θέλημα +ἁγιάζω +εἰμί +διά +ὁ +προσφορά +ὁ +σῶμα +Ἰησοῦς +Χριστός +ἐφάπαξ +καί +μέν +πᾶς +ἱερεύς +ἵστημι +κατά +ἡμέρα +λειτουργέω +καί +πολλάκις +προσφέρω +ὁ +αὐτός +θυσία +ὅστις +οὐδέποτε +δύναμαι +περιαιρέω +ἁμαρτία +δέ +οὗτος +εἷς +θυσία +ὑπέρ +ἁμαρτία +προσφέρω +εἰς +ὁ +διηνεκής +καθίζω +ἐν +δεξιός +ὁ +θεός +ὁ +λοιπός +ἐκδέχομαι +ἕως +τίθημι +ὁ +ἐχθρός +αὐτός +ὑποπόδιον +ὁ +πούς +αὐτός +γάρ +εἷς +προσφορά +τελειόω +εἰς +ὁ +διηνεκής +ὁ +ἁγιάζω +δέ +μαρτυρέω +ἐγώ +καί +ὁ +πνεῦμα +ὁ +ἅγιος +γάρ +μετά +ὁ +εἶπον +οὗτος +ὁ +διαθήκη +ὅς +διατίθημι +πρός +αὐτός +μετά +ὁ +ἡμέρα +ἐκεῖνος +λέγω +κύριος +δίδωμι +νόμος +ἐγώ +ἐπί +καρδία +αὐτός +καί +ἐπί +ὁ +διάνοια +αὐτός +ἐπιγράφω +αὐτός +καί +ὁ +ἁμαρτία +αὐτός +καί +ὁ +ἀνομία +αὐτός +οὐ +μή +μιμνῄσκω +ἔτι +δέ +ὅπου +ἄφεσις +οὗτος +οὐκέτι +προσφορά +περί +ἁμαρτία +οὖν +ἀδελφός +ἔχω +παρρησία +εἰς +ὁ +εἴσοδος +ὁ +ἅγιος +ἐν +ὁ +αἷμα +Ἰησοῦς +ὅς +ἐγκαινίζω +ἐγώ +ὁδός +πρόσφατος +καί +ζάω +διά +ὁ +καταπέτασμα +οὗτος +εἰμί +ὁ +σάρξ +αὐτός +καί +ἱερεύς +μέγας +ἐπί +ὁ +οἶκος +ὁ +θεός +προσέρχομαι +μετά +ἀληθινός +καρδία +ἐν +πληροφορία +πίστις +ῥαντίζω +ὁ +καρδία +ἀπό +συνείδησις +πονηρός +καί +λούω +ὁ +σῶμα +ὕδωρ +καθαρός +κατέχω +ὁ +ὁμολογία +ὁ +ἐλπίς +ἀκλινής +γάρ +πιστός +ὁ +ἐπαγγέλλομαι +καί +κατανοέω +ἀλλήλων +εἰς +παροξυσμός +ἀγάπη +καί +καλός +ἔργον +μή +ἐγκαταλείπω +ὁ +ἐπισυναγωγή +ἑαυτοῦ +καθώς +ἔθος +τὶς +ἀλλά +παρακαλέω +μᾶλλον +καί +τοσοῦτος +ὅσος +βλέπω +ἐγγίζω +ὁ +ἡμέρα +γάρ +ἑκουσίως +ἁμαρτάνω +ἐγώ +μετά +ὁ +λαμβάνω +ὁ +ἐπίγνωσις +ὁ +ἀλήθεια +οὐκέτι +περί +ἁμαρτία +ἀπολείπω +θυσία +δέ +φοβερός +τὶς +ἐκδοχή +κρίσις +καί +ζῆλος +πῦρ +μέλλω +ἐσθίω +ὁ +ὑπεναντίος +τὶς +ἀθετέω +νόμος +Μωϋσῆς +χωρίς +οἰκτιρμός +ἐπί +δύο +ἤ +τρεῖς +μάρτυς +ἀποθνῄσκω +πόσος +δοκέω +χείρων +τιμωρία +ἀξιόω +ὁ +ὁ +υἱός +ὁ +θεός +καταπατέω +καί +κοινός +ἡγέομαι +ὁ +αἷμα +ὁ +διαθήκη +ἐν +ὅς +ἁγιάζω +καί +ὁ +πνεῦμα +ὁ +χάρις +ἐνυβρίζω +γάρ +οἶδα +ὁ +λέγω +ἐγώ +ἐκδίκησις +ἐγώ +ἀνταποδίδωμι +καί +πάλιν +κρίνω +κύριος +ὁ +λαός +αὐτός +φοβερός +ὁ +ἐμπίπτω +εἰς +χείρ +θεός +ζάω +δέ +ἀναμιμνῄσκω +ὁ +πρότερος +ἡμέρα +ἐν +ὅς +φωτίζω +ὑπομένω +πολύς +ἄθλησις +πάθημα +μέν +οὗτος +τέ +ὀνειδισμός +καί +θλῖψις +θεατρίζω +δέ +οὗτος +κοινωνός +ὁ +οὕτω +ἀναστρέφω +γίνομαι +γάρ +καί +ὁ +δέσμιος +συμπαθέω +καί +ὁ +ἁρπαγή +ὁ +ὑπάρχω +σύ +μετά +χαρά +προσδέχομαι +γινώσκω +ἔχω +ἑαυτοῦ +ὕπαρξις +κρείττων +καί +μένω +οὖν +μή +ἀποβάλλω +ὁ +παρρησία +σύ +ὅστις +ἔχω +μέγας +μισθαποδοσία +γάρ +ὑπομονή +χρεία +ἔχω +ἵνα +ὁ +θέλημα +ὁ +θεός +ποιέω +κομίζω +ὁ +ἐπαγγελία +γάρ +ἔτι +μικρός +ὅσος +ὅσος +ὁ +ἔρχομαι +ἥκω +καί +οὐ +χρονίζω +δέ +ὁ +δίκαιος +ἐγώ +ἐκ +πίστις +ζάω +καί +ἐάν +ὑποστέλλω +οὐ +εὐδοκέω +ὁ +ψυχή +ἐγώ +ἐν +αὐτός +δέ +ἐγώ +εἰμί +οὐ +ὑποστολή +εἰς +ἀπώλεια +ἀλλά +πίστις +εἰς +περιποίησις +ψυχή +δέ +εἰμί +πίστις +ἐλπίζω +ὑπόστασις +ἔλεγχος +πρᾶγμα +οὐ +βλέπω +γάρ +ἐν +οὗτος +μαρτυρέω +ὁ +πρεσβύτερος +πίστις +νοέω +καταρτίζω +ὁ +αἰών +ῥῆμα +θεός +εἰς +ὁ +μή +ἐκ +φαίνω +ὁ +βλέπω +γίνομαι +πίστις +Ἅβελ +πολύς +θυσία +παρά +Κάϊν +προσφέρω +ὁ +θεός +διά +ὅς +μαρτυρέω +εἰμί +δίκαιος +μαρτυρέω +ἐπί +ὁ +δῶρον +αὐτός +ὁ +θεός +καί +διά +αὐτός +ἀποθνῄσκω +ἔτι +λαλέω +πίστις +Ἑνώχ +μετατίθημι +ὁ +μή +ὁράω +θάνατος +καί +οὐ +εὑρίσκω +διότι +μετατίθημι +αὐτός +ὁ +θεός +γάρ +πρό +ὁ +μετάθεσις +μαρτυρέω +εὐαρεστέω +ὁ +θεός +δέ +χωρίς +πίστις +ἀδύνατος +εὐαρεστέω +γάρ +δεῖ +πιστεύω +ὁ +προσέρχομαι +ὁ +θεός +ὅτι +εἰμί +καί +ὁ +ἐκζητέω +αὐτός +μισθαποδότης +γίνομαι +πίστις +Νῶε +χρηματίζω +περί +ὁ +μηδέπω +βλέπω +εὐλαβέομαι +κατασκευάζω +κιβωτός +εἰς +σωτηρία +ὁ +οἶκος +αὐτός +διά +ὅς +κατακρίνω +ὁ +κόσμος +καί +ὁ +κατά +πίστις +δικαιοσύνη +κληρονόμος +γίνομαι +πίστις +καλέω +Ἀβραάμ +ὑπακούω +ἐξέρχομαι +εἰς +τόπος +μέλλω +ὅς +λαμβάνω +εἰς +κληρονομία +καί +ἐξέρχομαι +μή +ἐπίσταμαι +ποῦ +ἔρχομαι +πίστις +παροικέω +εἰς +γῆ +ὁ +ἐπαγγελία +ὡς +ἀλλότριος +ἐν +σκηνή +κατοικέω +μετά +Ἰσαάκ +καί +Ἰακώβ +ὁ +συγκληρονόμος +ὁ +ἐπαγγελία +ὁ +αὐτός +γάρ +ἐκδέχομαι +ὁ +ὁ +θεμέλιος +ἔχω +πόλις +ὅς +τεχνίτης +καί +δημιουργός +ὁ +θεός +πίστις +καί +αὐτός +Σάρρα +δύναμις +εἰς +καταβολή +σπέρμα +λαμβάνω +καί +παρά +καιρός +ἡλικία +ἐπεί +πιστός +ἡγέομαι +ὁ +ἐπαγγέλλομαι +διό +καί +ἀπό +εἷς +νεκρόω +γεννάω +καί +οὗτος +καθώς +ὁ +ἄστρον +ὁ +οὐρανός +ὁ +πλῆθος +καί +ὡς +ὁ +ἄμμος +ὁ +παρά +ὁ +χεῖλος +ὁ +θάλασσα +ὁ +ἀναρίθμητος +κατά +πίστις +ἀποθνῄσκω +οὗτος +πᾶς +μή +κομίζω +ὁ +ἐπαγγελία +ἀλλά +πόρρωθεν +αὐτός +ὁράω +καί +ἀσπάζομαι +καί +ὁμολογέω +ὅτι +ξένος +καί +παρεπίδημος +εἰμί +ἐπί +ὁ +γῆ +γάρ +ὁ +τοιοῦτος +λέγω +ἐμφανίζω +ὅτι +πατρίς +ἐπιζητέω +καί +μέν +εἰ +μνημονεύω +ἐκεῖνος +ἀπό +ὅς +ἐκβαίνω +ἄν +ἔχω +καιρός +ἀνακάμπτω +δέ +νῦν +ὀρέγω +κρείττων +οὗτος +εἰμί +ἐπουράνιος +διό +οὐ +ἐπαισχύνομαι +αὐτός +ὁ +θεός +θεός +αὐτός +ἐπικαλέω +γάρ +ἑτοιμάζω +αὐτός +πόλις +πίστις +προσφέρω +Ἀβραάμ +ὁ +Ἰσαάκ +πειράζω +καί +ὁ +μονογενής +προσφέρω +ὁ +ὁ +ἐπαγγελία +ἀναδέχομαι +πρός +ὅς +λαλέω +ὅτι +ἐν +Ἰσαάκ +καλέω +σύ +σπέρμα +λογίζομαι +ὅτι +καί +ἐκ +νεκρός +ἐγείρω +δυνατός +ὁ +θεός +ὅθεν +αὐτός +καί +ἐν +παραβολή +κομίζω +πίστις +καί +περί +μέλλω +εὐλογέω +Ἰσαάκ +ὁ +Ἰακώβ +καί +ὁ +Ἠσαῦ +πίστις +Ἰακώβ +ἀποθνῄσκω +ἕκαστος +ὁ +υἱός +Ἰωσήφ +εὐλογέω +καί +προσκυνέω +ἐπί +ὁ +ἄκρον +ὁ +ῥάβδος +αὐτός +πίστις +Ἰωσήφ +τελευτάω +περί +ὁ +ἔξοδος +ὁ +υἱός +Ἰσραήλ +μνημονεύω +καί +περί +ὁ +ὀστέον +αὐτός +ἐντέλλομαι +πίστις +Μωϋσῆς +γεννάω +κρύπτω +τρίμηνος +ὑπό +ὁ +πατήρ +αὐτός +διότι +ὁράω +ἀστεῖος +ὁ +παιδίον +καί +οὐ +φοβέω +ὁ +διάταγμα +ὁ +βασιλεύς +πίστις +Μωϋσῆς +μέγας +γίνομαι +ἀρνέομαι +λέγω +υἱός +θυγάτηρ +Φαραώ +αἱρέω +μᾶλλον +συγκακουχέομαι +ὁ +λαός +ὁ +θεός +ἤ +πρόσκαιρος +ἔχω +ἁμαρτία +ἀπόλαυσις +μέγας +πλοῦτος +ἡγέομαι +ὁ +Αἴγυπτος +θησαυρός +ὁ +ὀνειδισμός +ὁ +Χριστός +γάρ +ἀποβλέπω +εἰς +ὁ +μισθαποδοσία +πίστις +καταλείπω +Αἴγυπτος +μή +φοβέω +ὁ +θυμός +ὁ +βασιλεύς +γάρ +ὁ +ἀόρατος +ὡς +ὁράω +καρτερέω +πίστις +ποιέω +ὁ +πάσχα +καί +ὁ +πρόσχυσις +ὁ +αἷμα +ἵνα +μή +ὁ +ὀλοθρεύω +ὁ +πρωτότοκος +θιγγάνω +αὐτός +πίστις +διαβαίνω +ὁ +ἐρυθρός +θάλασσα +ὡς +διά +ξηρός +γῆ +ὅς +πεῖρα +λαμβάνω +ὁ +Αἰγύπτιος +καταπίνω +πίστις +ὁ +τεῖχος +Ἰεριχώ +πίπτω +κυκλόω +ἐπί +ἑπτά +ἡμέρα +πίστις +Ῥαάβ +ὁ +πόρνη +οὐ +συναπόλλυμι +ὁ +ἀπειθέω +δέχομαι +ὁ +κατάσκοπος +μετά +εἰρήνη +καί +τίς +ἔτι +λέγω +γάρ +ἐπιλείπω +ὁ +χρόνος +ἐγώ +διηγέομαι +περί +Γεδεών +Βαράκ +Σαμψών +Ἰεφθάε +τέ +Δαυίδ +καί +Σαμουήλ +καί +ὁ +προφήτης +ὅς +διά +πίστις +καταγωνίζομαι +βασιλεία +ἐργάζομαι +δικαιοσύνη +ἐπιτυγχάνω +ἐπαγγελία +φράσσω +στόμα +λέων +σβέννυμι +δύναμις +πῦρ +φεύγω +στόμα +μάχαιρα +δυναμόω +ἀπό +ἀσθένεια +γίνομαι +ἰσχυρός +ἐν +πόλεμος +παρεμβολή +ἀλλότριος +κλίνω +λαμβάνω +γυνή +ἐκ +ἀνάστασις +ὁ +νεκρός +αὐτός +δέ +ἄλλος +τυμπανίζω +οὐ +προσδέχομαι +ὁ +ἀπολύτρωσις +ἵνα +κρείττων +ἀνάστασις +τυγχάνω +δέ +ἕτερος +ἐμπαιγμός +καί +μάστιξ +πεῖρα +λαμβάνω +δέ +ἔτι +δεσμός +καί +φυλακή +λιθάζω +πειράζω +πρίζω +ἐν +φόνος +μάχαιρα +ἀποθνῄσκω +περιέρχομαι +ἐν +μηλωτή +ἐν +αἴγειος +δέρμα +ὑστερέω +θλίβω +κακουχέω +πλανάω +ἐπί +ἐρημία +καί +ὄρος +καί +σπήλαιον +καί +ὁ +ὀπή +ὁ +γῆ +ὅς +οὐ +εἰμί +ἄξιος +ὁ +κόσμος +καί +οὗτος +πᾶς +μαρτυρέω +διά +ὁ +πίστις +οὐ +κομίζω +ὁ +ἐπαγγελία +ὁ +θεός +περί +ἐγώ +κρείττων +τὶς +προβλέπω +ἵνα +μή +χωρίς +ἐγώ +τελειόω +τοιγαροῦν +καί +ἐγώ +ἔχω +τοσοῦτος +περίκειμαι +ἐγώ +νέφος +μάρτυς +ἀποτίθημι +ὄγκος +πᾶς +καί +ὁ +εὐπερίστατος +ἁμαρτία +διά +ὑπομονή +τρέχω +ὁ +πρόκειμαι +ἐγώ +ἀγών +ἀφοράω +εἰς +ὁ +ὁ +πίστις +ἀρχηγός +καί +τελειωτής +Ἰησοῦς +ὅς +ἀντί +ὁ +πρόκειμαι +αὐτός +χαρά +ὑπομένω +σταυρός +αἰσχύνη +καταφρονέω +τέ +ἐν +δεξιός +ὁ +θρόνος +ὁ +θεός +καθίζω +γάρ +ἀναλογίζομαι +ὁ +ὑπομένω +τοιοῦτος +ὑπό +ὁ +ἁμαρτωλός +εἰς +ἑαυτοῦ +ἀντιλογία +ἵνα +μή +κάμνω +ὁ +ψυχή +σύ +ἐκλύω +οὔπω +μέχρι +αἷμα +ἀντικαθίστημι +πρός +ὁ +ἁμαρτία +ἀνταγωνίζομαι +καί +ἐκλανθάνομαι +ὁ +παράκλησις +ὅστις +σύ +ὡς +υἱός +διαλέγομαι +υἱός +ἐγώ +μή +ὀλιγωρέω +παιδεία +κύριος +μηδέ +ἐκλύω +ὑπό +αὐτός +ἐλέγχω +γάρ +ὅς +ἀγαπάω +κύριος +παιδεύω +δέ +μαστιγόω +πᾶς +υἱός +ὅς +παραδέχομαι +εἰς +παιδεία +ὑπομένω +ὡς +υἱός +σύ +προσφέρω +ὁ +θεός +γάρ +τίς +υἱός +ὅς +οὐ +παιδεύω +πατήρ +δέ +εἰ +εἰμί +χωρίς +παιδεία +ὅς +μέτοχος +γίνομαι +πᾶς +ἄρα +νόθος +καί +οὐ +υἱός +εἰμί +μέν +εἶτα +ὁ +ὁ +σάρξ +ἐγώ +πατήρ +ἔχω +παιδευτής +καί +ἐντρέπω +οὐ +πολύς +μᾶλλον +ὑποτάσσω +ὁ +πατήρ +ὁ +πνεῦμα +καί +ζάω +γάρ +μέν +ὁ +πρός +ὀλίγος +ἡμέρα +κατά +ὁ +δοκέω +αὐτός +παιδεύω +δέ +ὁ +ἐπί +ὁ +συμφέρω +εἰς +ὁ +μεταλαμβάνω +ὁ +ἁγιότης +αὐτός +μέν +πᾶς +παιδεία +μέν +πρός +ὁ +πάρειμι +δοκέω +οὐ +χαρά +εἰμί +ἀλλά +λύπη +δέ +ὕστερος +καρπός +εἰρηνικός +δικαιοσύνη +ὁ +διά +αὐτός +γυμνάζω +ἀποδίδωμι +διό +ὁ +παρίημι +χείρ +καί +ὁ +παραλύω +γόνυ +ἀνορθόω +καί +τροχιά +ὀρθός +ποιέω +ὁ +πούς +σύ +ἵνα +μή +ὁ +χωλός +ἐκτρέπω +δέ +ἰάομαι +μᾶλλον +διώκω +μετά +πᾶς +εἰρήνη +καί +ὁ +ἁγιασμός +ὅς +χωρίς +οὐδείς +ὁράω +ὁ +κύριος +ἐπισκοπέω +μή +τὶς +ὑστερέω +ἀπό +ὁ +χάρις +ὁ +θεός +μή +τὶς +ῥίζα +πικρία +ἄνω +φύω +ἐνοχλέω +καί +διά +οὗτος +μιαίνω +ὁ +πολύς +μή +τὶς +πόρνος +ἤ +βέβηλος +ὡς +Ἠσαῦ +ὅς +ἀντί +βρῶσις +εἷς +ἀποδίδωμι +ὁ +πρωτοτόκια +ἑαυτοῦ +γάρ +οἶδα +ὅτι +καί +μετέπειτα +θέλω +κληρονομέω +ὁ +εὐλογία +ἀποδοκιμάζω +γάρ +μετάνοια +τόπος +οὐ +εὑρίσκω +καίπερ +μετά +δάκρυον +ἐκζητέω +αὐτός +γάρ +οὐ +προσέρχομαι +ψηλαφάω +καί +καίω +πῦρ +καί +γνόφος +καί +ζόφος +καί +θύελλα +καί +σάλπιγξ +ἦχος (I) +καί +φωνή +ῥῆμα +ὅς +ὁ +ἀκούω +παραιτέομαι +μή +προστίθημι +αὐτός +λόγος +γάρ +οὐ +φέρω +ὁ +διαστέλλω +κἄν +θηρίον +θιγγάνω +ὁ +ὄρος +λιθοβολέω +καί +οὕτω +φοβερός +εἰμί +ὁ +φαντάζω +Μωϋσῆς +λέγω +εἰμί +ἔκφοβος +καί +ἔντρομος +ἀλλά +προσέρχομαι +Σιών +ὄρος +καί +πόλις +θεός +ζάω +Ἱεροσόλυμα +ἐπουράνιος +καί +μυριάς +ἄγγελος +πανήγυρις +καί +ἐκκλησία +πρωτότοκος +ἀπογράφω +ἐν +οὐρανός +καί +κριτής +πᾶς +θεός +καί +πνεῦμα +δίκαιος +τελειόω +καί +διαθήκη +νέος +μεσίτης +Ἰησοῦς +καί +αἷμα +ῥαντισμός +κρείττων +λαλέω +παρά +ὁ +Ἅβελ +βλέπω +μή +παραιτέομαι +ὁ +λαλέω +γάρ +εἰ +οὐ +ἐκφεύγω +ἐκεῖνος +παραιτέομαι +ὁ +ἐπί +γῆ +χρηματίζω +πολύς +μᾶλλον +ἐγώ +ὁ +ὁ +ἀπό +οὐρανός +ἀποστρέφω +ὅς +ὁ +φωνή +ὁ +γῆ +σαλεύω +τότε +δέ +νῦν +ἐπαγγέλλομαι +λέγω +ἔτι +ἅπαξ +ἐγώ +σείω +οὐ +μόνος +ὁ +γῆ +ἀλλά +καί +ὁ +οὐρανός +δέ +ὁ +ἔτι +ἅπαξ +δηλόω +ὁ +ὁ +σαλεύω +μετάθεσις +ὡς +ποιέω +ἵνα +μένω +ὁ +μή +σαλεύω +διό +βασιλεία +ἀσάλευτος +παραλαμβάνω +ἔχω +χάρις +διά +ὅς +λατρεύω +εὐαρέστως +ὁ +θεός +μετά +εὐλάβεια +καί +δέος +γάρ +καί +ὁ +θεός +ἐγώ +πῦρ +καταναλίσκω +ὁ +φιλαδελφία +μένω +ὁ +φιλοξενία +μή +ἐπιλανθάνομαι +γάρ +διά +οὗτος +λανθάνω +τὶς +ξενίζω +ἄγγελος +μιμνῄσκω +ὁ +δέσμιος +ὡς +συνδέω +ὁ +κακουχέω +ὡς +καί +αὐτός +εἰμί +ἐν +σῶμα +τίμιος +ὁ +γάμος +ἐν +πᾶς +καί +ὁ +κοίτη +ἀμίαντος +γάρ +πόρνος +καί +μοιχός +κρίνω +ὁ +θεός +ἀφιλάργυρος +ὁ +τρόπος +ἀρκέω +ὁ +πάρειμι +γάρ +αὐτός +εἶπον +οὐ +μή +σύ +ἀνίημι +οὐδέ +οὐ +μή +σύ +ἐγκαταλείπω +ὥστε +θαρρέω +ἐγώ +λέγω +κύριος +ἐγώ +βοηθός +οὐ +φοβέω +τίς +ποιέω +ἐγώ +ἄνθρωπος +μνημονεύω +ὁ +ἡγέομαι +σύ +ὅστις +λαλέω +σύ +ὁ +λόγος +ὁ +θεός +ὅς +ὁ +ἔκβασις +ὁ +ἀναστροφή +ἀναθεωρέω +μιμέομαι +ὁ +πίστις +Ἰησοῦς +Χριστός +ἐχθές +καί +σήμερον +ὁ +αὐτός +καί +εἰς +ὁ +αἰών +διδαχή +ποικίλος +καί +ξένος +μή +παραφέρω +γάρ +καλός +χάρις +βεβαιόω +ὁ +καρδία +οὐ +βρῶμα +ἐν +ὅς +οὐ +ὠφελέω +ὁ +περιπατέω +ἔχω +θυσιαστήριον +ἐκ +ὅς +ἐσθίω +οὐ +ἔχω +ἐξουσία +ὁ +ὁ +σκηνή +λατρεύω +γάρ +εἰσφέρω +ὅς +ζῷον +ὁ +αἷμα +περί +ἁμαρτία +εἰς +ὁ +ἅγιος +διά +ὁ +ἀρχιερεύς +οὗτος +ὁ +σῶμα +κατακαίω +ἔξω +ὁ +παρεμβολή +διό +καί +Ἰησοῦς +ἵνα +ἁγιάζω +διά +ὁ +ἴδιος +αἷμα +ὁ +λαός +ἔξω +ὁ +πύλη +πάσχω +τοίνυν +ἐξέρχομαι +πρός +αὐτός +ἔξω +ὁ +παρεμβολή +ὁ +ὀνειδισμός +αὐτός +φέρω +γάρ +οὐ +ἔχω +ὧδε +μένω +πόλις +ἀλλά +ὁ +μέλλω +ἐπιζητέω +οὖν +διά +αὐτός +ἀναφέρω +διά +πᾶς +ὁ +θεός +θυσία +αἴνεσις +οὗτος +εἰμί +καρπός +χεῖλος +ὁμολογέω +ὁ +ὄνομα +αὐτός +δέ +ὁ +εὐποιΐα +καί +κοινωνία +μή +ἐπιλανθάνομαι +γάρ +τοιοῦτος +θυσία +εὐαρεστέω +ὁ +θεός +πείθω +ὁ +ἡγέομαι +σύ +καί +ὑπείκω +γάρ +αὐτός +ἀγρυπνέω +ὑπέρ +ὁ +ψυχή +σύ +ὡς +λόγος +ἀποδίδωμι +ἵνα +μετά +χαρά +οὗτος +ποιέω +καί +μή +στενάζω +γάρ +ἀλυσιτελής +σύ +οὗτος +προσεύχομαι +περί +ἐγώ +γάρ +πείθω +ὅτι +καλός +συνείδησις +ἔχω +ἐν +πᾶς +καλῶς +ἀναστρέφω +θέλω +δέ +περισσῶς +παρακαλέω +οὗτος +ποιέω +ἵνα +ταχύς +ἀποκαθιστάνω +σύ +δέ +ὁ +θεός +ὁ +εἰρήνη +ὁ +ἀνάγω +ἐκ +νεκρός +ἐν +αἷμα +διαθήκη +αἰώνιος +ὁ +ποιμήν +ὁ +πρόβατον +ὁ +μέγας +ὁ +κύριος +ἐγώ +Ἰησοῦς +καταρτίζω +σύ +ἐν +πᾶς +ἀγαθός +εἰς +ὁ +ποιέω +ὁ +θέλημα +αὐτός +ποιέω +ἐν +ἐγώ +ὁ +εὐάρεστος +ἐνώπιον +αὐτός +διά +Ἰησοῦς +Χριστός +ὅς +ὁ +δόξα +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +δέ +παρακαλέω +σύ +ἀδελφός +ἀνέχω +ὁ +λόγος +ὁ +παράκλησις +γάρ +καί +διά +βραχύς +ἐπιστέλλω +σύ +γινώσκω +ὁ +ἀδελφός +ἐγώ +Τιμόθεος +ἀπολύω +μετά +ὅς +ἐάν +ταχύς +ἔρχομαι +ὁράω +σύ +ἀσπάζομαι +πᾶς +ὁ +ἡγέομαι +σύ +καί +πᾶς +ὁ +ἅγιος +ἀσπάζομαι +σύ +ὁ +ἀπό +ὁ +Ἰταλία +ὁ +χάρις +μετά +πᾶς +σύ +Ἰάκωβος +θεός +καί +κύριος +Ἰησοῦς +Χριστός +δοῦλος (II) +ὁ +δώδεκα +φυλή +ὁ +ἐν +ὁ +διασπορά +χαίρω +ἀδελφός +ἐγώ +πᾶς +χαρά +ἡγέομαι +ὅταν +πειρασμός +ποικίλος +περιπίπτω +γινώσκω +ὅτι +ὁ +δοκίμιον +σύ +ὁ +πίστις +κατεργάζομαι +ὑπομονή +δέ +ὁ +ὑπομονή +ἔργον +τέλειος +ἔχω +ἵνα +εἰμί +τέλειος +καί +ὁλόκληρος +ἐν +μηδείς +λείπω +δέ +εἰ +τὶς +σύ +λείπω +σοφία +αἰτέω +παρά +ὁ +δίδωμι +πᾶς +ἁπλῶς +καί +μή +ὀνειδίζω +θεός +καί +δίδωμι +αὐτός +δέ +αἰτέω +ἐν +πίστις +μηδείς +διακρίνω +γάρ +ὁ +διακρίνω +ἔοικα +κλύδων +θάλασσα +ἀνεμίζω +καί +ῥιπίζω +γάρ +μή +οἴομαι +ὁ +ἄνθρωπος +ἐκεῖνος +ὅτι +λαμβάνω +τὶς +παρά +ὁ +κύριος +ἀνήρ +δίψυχος +ἀκατάστατος +ἐν +πᾶς +ὁ +ὁδός +αὐτός +δέ +καυχάομαι +ὁ +ἀδελφός +ὁ +ταπεινός +ἐν +ὁ +ὕψος +αὐτός +δέ +ὁ +πλούσιος +ἐν +ὁ +ταπείνωσις +αὐτός +ὅτι +ὡς +ἄνθος +χόρτος +παρέρχομαι +γάρ +ἀνατέλλω +ὁ +ἥλιος +σύν +ὁ +καύσων +καί +ξηραίνω +ὁ +χόρτος +καί +ὁ +ἄνθος +αὐτός +ἐκπίπτω +καί +ὁ +εὐπρέπεια +ὁ +πρόσωπον +αὐτός +ἀπόλλυμι +οὕτω +καί +ὁ +πλούσιος +ἐν +ὁ +πορεία +αὐτός +μαραίνω +μακάριος +ἀνήρ +ὅς +ὑπομένω +πειρασμός +ὅτι +δόκιμος +γίνομαι +λαμβάνω +ὁ +στέφανος +ὁ +ζωή +ὅς +ἐπαγγέλλομαι +ὁ +ἀγαπάω +αὐτός +μηδείς +πειράζω +λέγω +ὅτι +ἀπό +θεός +πειράζω +γάρ +ὁ +θεός +ἀπείραστος +εἰμί +κακός +δέ +πειράζω +αὐτός +οὐδείς +δέ +ἕκαστος +πειράζω +ὑπό +ὁ +ἴδιος +ἐπιθυμία +ἐξέλκω +καί +δελεάζω +εἶτα +ὁ +ἐπιθυμία +συλλαμβάνω +τίκτω +ἁμαρτία +δέ +ὁ +ἁμαρτία +ἀποτελέω +ἀποκυέω +θάνατος +μή +πλανάω +ἀδελφός +ἐγώ +ἀγαπητός +πᾶς +δόσις +ἀγαθός +καί +πᾶς +δώρημα +τέλειος +ἄνωθεν +εἰμί +καταβαίνω +ἀπό +ὁ +πατήρ +ὁ +φῶς +παρά +ὅς +οὐ +ἔνι +παραλλαγή +ἤ +τροπή +ἀποσκίασμα +βούλομαι +ἀποκυέω +ἐγώ +λόγος +ἀλήθεια +εἰς +ὁ +εἰμί +ἐγώ +ἀπαρχή +τὶς +ὁ +αὐτός +κτίσμα +οἶδα +ἀδελφός +ἐγώ +ἀγαπητός +δέ +εἰμί +πᾶς +ἄνθρωπος +ταχύς +εἰς +ὁ +ἀκούω +βραδύς +εἰς +ὁ +λαλέω +βραδύς +εἰς +ὀργή +γάρ +ὀργή +ἀνήρ +δικαιοσύνη +θεός +οὐ +ἐργάζομαι +διό +ἀποτίθημι +πᾶς +ῥυπαρία +καί +περισσεία +κακία +ἐν +πραΰτης +δέχομαι +ὁ +ἔμφυτος +λόγος +ὁ +δύναμαι +σῴζω +ὁ +ψυχή +σύ +δέ +γίνομαι +ποιητής +λόγος +καί +μή +ἀκροατής +μόνος +παραλογίζομαι +ἑαυτοῦ +ὅτι +εἰ +τὶς +ἀκροατής +λόγος +εἰμί +καί +οὐ +ποιητής +οὗτος +ἔοικα +ἀνήρ +κατανοέω +ὁ +πρόσωπον +ὁ +γένεσις +αὐτός +ἐν +ἔσοπτρον +γάρ +κατανοέω +ἑαυτοῦ +καί +ἀπέρχομαι +καί +εὐθέως +ἐπιλανθάνομαι +ὁποῖος +εἰμί +δέ +ὁ +παρακύπτω +εἰς +νόμος +τέλειος +ὁ +ὁ +ἐλευθερία +καί +παραμένω +γίνομαι +οὐ +ἀκροατής +ἐπιλησμονή +ἀλλά +ποιητής +ἔργον +οὗτος +μακάριος +ἐν +ὁ +ποίησις +αὐτός +εἰμί +εἰ +τὶς +δοκέω +θρησκός +εἰμί +μή +χαλιναγωγέω +γλῶσσα +ἑαυτοῦ +ἀλλά +ἀπατάω +καρδία +ἑαυτοῦ +οὗτος +ὁ +θρησκεία +μάταιος +θρησκεία +καθαρός +καί +ἀμίαντος +παρά +ὁ +θεός +καί +πατήρ +εἰμί +οὗτος +ἐπισκέπτομαι +ὀρφανός +καί +χῆρος +ἐν +ὁ +θλῖψις +αὐτός +ἄσπιλος +ἑαυτοῦ +τηρέω +ἀπό +ὁ +κόσμος +ἀδελφός +ἐγώ +μή +ἐν +προσωπολημψία +ἔχω +ὁ +πίστις +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +δόξα +γάρ +ἐάν +εἰσέρχομαι +εἰς +συναγωγή +σύ +ἀνήρ +χρυσοδακτύλιος +ἐν +ἐσθής +λαμπρός +δέ +εἰσέρχομαι +καί +πτωχός +ἐν +ῥυπαρός +ἐσθής +δέ +ἐπιβλέπω +ἐπί +ὁ +φορέω +ὁ +ἐσθής +ὁ +λαμπρός +καί +λέγω +σύ +κάθημαι +ὧδε +καλῶς +καί +ὁ +πτωχός +λέγω +σύ +ἵστημι +ἐκεῖ +ἤ +κάθημαι +ὑπό +ὁ +ὑποπόδιον +ἐγώ +οὐ +διακρίνω +ἐν +ἑαυτοῦ +καί +γίνομαι +κριτής +διαλογισμός +πονηρός +ἀκούω +ἀδελφός +ἐγώ +ἀγαπητός +οὐ +ὁ +θεός +ἐκλέγω +ὁ +πτωχός +ὁ +κόσμος +πλούσιος +ἐν +πίστις +καί +κληρονόμος +ὁ +βασιλεία +ὅς +ἐπαγγέλλομαι +ὁ +ἀγαπάω +αὐτός +δέ +σύ +ἀτιμάζω +ὁ +πτωχός +οὐ +ὁ +πλούσιος +καταδυναστεύω +σύ +καί +αὐτός +ἕλκω +σύ +εἰς +κριτήριον +οὐ +αὐτός +βλασφημέω +ὁ +καλός +ὄνομα +ὁ +ἐπικαλέω +ἐπί +σύ +εἰ +μέντοι +νόμος +βασιλικός +τελέω +κατά +ὁ +γραφή +ἀγαπάω +ὁ +πλησίον +σύ +ὡς +σεαυτοῦ +καλῶς +ποιέω +δέ +εἰ +προσωπολημπτέω +ἁμαρτία +ἐργάζομαι +ἐλέγχω +ὑπό +ὁ +νόμος +ὡς +παραβάτης +γάρ +ὅστις +ὅλος +ὁ +νόμος +τηρέω +δέ +πταίω +ἐν +εἷς +γίνομαι +πᾶς +ἔνοχος +γάρ +ὁ +λέγω +μή +μοιχεύω +λέγω +καί +μή +φονεύω +δέ +εἰ +οὐ +μοιχεύω +δέ +φονεύω +γίνομαι +παραβάτης +νόμος +οὕτω +λαλέω +καί +οὕτω +ποιέω +ὡς +διά +νόμος +ἐλευθερία +κρίνω +μέλλω +γάρ +ὁ +κρίσις +ἀνέλεος +ὁ +μή +ποιέω +ἔλεος +κατακαυχάομαι +ἔλεος +κρίσις +ἀδελφός +ἐγώ +τίς +ὁ +ὄφελος +ἐάν +πίστις +ἔχω +λέγω +τὶς +δέ +ἔργον +μή +ἔχω +μή +δύναμαι +ὁ +πίστις +σῴζω +αὐτός +ἐάν +ἀδελφός +ἤ +ἀδελφή +γυμνός +ὑπάρχω +καί +λείπω +ὁ +ἐφήμερος +τροφή +δέ +λέγω +αὐτός +τὶς +ἐκ +σύ +ὑπάγω +ἐν +εἰρήνη +θερμαίνω +καί +χορτάζω +δέ +μή +δίδωμι +αὐτός +ὁ +ἐπιτήδειος +ὁ +σῶμα +τίς +ὁ +ὄφελος +οὕτω +καί +ὁ +πίστις +ἐάν +μή +ἔχω +ἔργον +νεκρός +εἰμί +κατά +ἑαυτοῦ +ἀλλά +εἶπον +τὶς +σύ +πίστις +ἔχω +κἀγώ +ἔργον +ἔχω +δείκνυμι +ἐγώ +ὁ +πίστις +σύ +χωρίς +ὁ +ἔργον +κἀγώ +σύ +δείκνυμι +ἐκ +ὁ +ἔργον +ἐγώ +ὁ +πίστις +σύ +πιστεύω +ὅτι +εἷς +εἰμί +ὁ +θεός +καλῶς +ποιέω +καί +ὁ +δαιμόνιον +πιστεύω +καί +φρίσσω +δέ +ὦ +ἄνθρωπος +κενός +θέλω +γινώσκω +ὅτι +ὁ +πίστις +χωρίς +ὁ +ἔργον +ἀργός +εἰμί +Ἀβραάμ +ὁ +πατήρ +ἐγώ +οὐ +ἐκ +ἔργον +δικαιόω +ἀναφέρω +Ἰσαάκ +ὁ +υἱός +αὐτός +ἐπί +ὁ +θυσιαστήριον +βλέπω +ὅτι +ὁ +πίστις +συνεργέω +ὁ +ἔργον +αὐτός +καί +ἐκ +ὁ +ἔργον +ὁ +πίστις +τελειόω +καί +πληρόω +ὁ +γραφή +ὁ +λέγω +δέ +πιστεύω +Ἀβραάμ +ὁ +θεός +καί +λογίζομαι +αὐτός +εἰς +δικαιοσύνη +καί +φίλος +θεός +καλέω +ὁράω +ὅτι +ἐκ +ἔργον +δικαιόω +ἄνθρωπος +καί +οὐ +ἐκ +πίστις +μόνος +δέ +ὁμοίως +καί +Ῥαάβ +ὁ +πόρνη +οὐ +ἐκ +ἔργον +δικαιόω +ὑποδέχομαι +ὁ +ἄγγελος +καί +ἕτερος +ὁδός +ἐκβάλλω +γάρ +ὥσπερ +ὁ +σῶμα +χωρίς +πνεῦμα +νεκρός +εἰμί +οὕτω +καί +ὁ +πίστις +χωρίς +ἔργον +νεκρός +εἰμί +ἀδελφός +ἐγώ +μή +πολύς +διδάσκαλος +γίνομαι +οἶδα +ὅτι +μέγας +κρίμα +λαμβάνω +γάρ +πολύς +πταίω +ἅπας +εἰ +τὶς +ἐν +λόγος +οὐ +πταίω +οὗτος +τέλειος +ἀνήρ +δυνατός +χαλιναγωγέω +καί +ὅλος +ὁ +σῶμα +δέ +εἰ +ὁ +ἵππος +ὁ +χαλινός +εἰς +ὁ +στόμα +βάλλω +εἰς +ὁ +πείθω +αὐτός +ἐγώ +καί +ὅλος +ὁ +σῶμα +αὐτός +μετάγω +ὁράω +καί +ὁ +πλοῖον +τηλικοῦτος +εἰμί +καί +ὑπό +ἄνεμος +σκληρός +ἐλαύνω +μετάγω +ὑπό +ἐλάχιστος +πηδάλιον +ὅπου +ὁ +ὁρμή +ὁ +εὐθύνω +βούλομαι +οὕτω +καί +ὁ +γλῶσσα +μικρός +μέλος +εἰμί +καί +μέγας +αὐχέω +ὁράω +ἡλίκος +πῦρ +ἡλίκος +ὕλη +ἀνάπτω +καί +ὁ +γλῶσσα +πῦρ +ὁ +κόσμος +ὁ +ἀδικία +ὁ +γλῶσσα +καθίστημι +ἐν +ὁ +μέλος +ἐγώ +ὁ +σπιλόω +ὅλος +ὁ +σῶμα +καί +φλογίζω +ὁ +τροχός +ὁ +γένεσις +καί +φλογίζω +ὑπό +ὁ +γέεννα +γάρ +πᾶς +φύσις +τέ +θηρίον +καί +πετεινός +τέ +ἑρπετόν +καί +ἐνάλιος +δαμάζω +καί +δαμάζω +ὁ +φύσις +ὁ +ἀνθρώπινος +δέ +ὁ +γλῶσσα +δαμάζω +δύναμαι +οὐδείς +ἄνθρωπος +ἀκατάστατος +κακός +μεστός +ἰός +θανατηφόρος +ἐν +αὐτός +εὐλογέω +ὁ +κύριος +καί +πατήρ +καί +ἐν +αὐτός +καταράομαι +ὁ +ἄνθρωπος +ὁ +κατά +ὁμοίωσις +θεός +γίνομαι +ἐκ +ὁ +αὐτός +στόμα +ἐξέρχομαι +εὐλογία +καί +κατάρα +ἀδελφός +ἐγώ +οὐ +χρή +οὗτος +οὕτω +γίνομαι +μήτι +ὁ +πηγή +ἐκ +ὁ +αὐτός +ὀπή +βρύω +ὁ +γλυκύς +καί +ὁ +πικρός +ἀδελφός +ἐγώ +μή +δύναμαι +συκῆ +ἐλαία +ποιέω +ἤ +ἄμπελος +σῦκον +οὔτε +ἁλυκός +ποιέω +γλυκύς +ὕδωρ +τίς +σοφός +καί +ἐπιστήμων +ἐν +σύ +δείκνυμι +ἐκ +ὁ +καλός +ἀναστροφή +ὁ +ἔργον +αὐτός +ἐν +πραΰτης +σοφία +δέ +εἰ +ἔχω +ζῆλος +πικρός +καί +ἐριθεία +ἐν +ὁ +καρδία +σύ +μή +κατακαυχάομαι +καί +ψεύδομαι +κατά +ὁ +ἀλήθεια +οὐ +εἰμί +οὗτος +ὁ +σοφία +ἄνωθεν +κατέρχομαι +ἀλλά +ἐπίγειος +ψυχικός +δαιμονιώδης +γάρ +ὅπου +ζῆλος +καί +ἐριθεία +ἐκεῖ +ἀκαταστασία +καί +πᾶς +φαῦλος +πρᾶγμα +δέ +ὁ +ἄνωθεν +σοφία +πρῶτος +μέν +ἁγνός +εἰμί +ἔπειτα +εἰρηνικός +ἐπιεικής +εὐπειθής +μεστός +ἔλεος +καί +καρπός +ἀγαθός +ἀδιάκριτος +ἀνυπόκριτος +δέ +καρπός +δικαιοσύνη +ἐν +εἰρήνη +σπείρω +ὁ +ποιέω +εἰρήνη +πόθεν +πόλεμος +καί +πόθεν +μάχη +ἐν +σύ +οὐ +ἐντεῦθεν +ἐκ +ὁ +ἡδονή +σύ +ὁ +στρατεύω +ἐν +ὁ +μέλος +σύ +ἐπιθυμέω +καί +οὐ +ἔχω +φονεύω +καί +ζηλόω +καί +οὐ +δύναμαι +ἐπιτυγχάνω +μάχομαι +καί +πολεμέω +οὐ +ἔχω +διά +ὁ +μή +αἰτέω +σύ +αἰτέω +καί +οὐ +λαμβάνω +διότι +κακῶς +αἰτέω +ἵνα +ἐν +ὁ +ἡδονή +σύ +δαπανάω +μοιχαλίς +οὐ +οἶδα +ὅτι +ὁ +φιλία +ὁ +κόσμος +ἔχθρα +ὁ +θεός +εἰμί +οὖν +ἐάν +ὅς +βούλομαι +εἰμί +φίλος +ὁ +κόσμος +ἐχθρός +ὁ +θεός +καθίστημι +ἤ +δοκέω +ὅτι +κενῶς +ὁ +γραφή +λέγω +πρός +φθόνος +ἐπιποθέω +ὁ +πνεῦμα +ὅς +κατοικίζω +ἐν +ἐγώ +δέ +μέγας +χάρις +δίδωμι +διό +λέγω +ὁ +θεός +ὑπερήφανος +ἀντιτάσσω +δέ +ταπεινός +δίδωμι +χάρις +οὖν +ὑποτάσσω +ὁ +θεός +δέ +ἀνθίστημι +ὁ +διάβολος +καί +φεύγω +ἀπό +σύ +ἐγγίζω +ὁ +θεός +καί +ἐγγίζω +σύ +καθαρίζω +χείρ +ἁμαρτωλός +καί +ἁγνίζω +καρδία +δίψυχος +ταλαιπωρέω +καί +πενθέω +καί +κλαίω +ὁ +γέλως +σύ +εἰς +πένθος +μετατρέπω +καί +ὁ +χαρά +εἰς +κατήφεια +ταπεινόω +ἐνώπιον +κύριος +καί +ὑψόω +σύ +μή +καταλαλέω +ἀλλήλων +ἀδελφός +ὁ +καταλαλέω +ἀδελφός +ἤ +κρίνω +ὁ +ἀδελφός +αὐτός +καταλαλέω +νόμος +καί +κρίνω +νόμος +δέ +εἰ +νόμος +κρίνω +εἰμί +οὐ +ποιητής +νόμος +ἀλλά +κριτής +εἷς +εἰμί +νομοθέτης +καί +κριτής +ὁ +δύναμαι +σῴζω +καί +ἀπόλλυμι +δέ +σύ +τίς +εἰμί +ὁ +κρίνω +ὁ +πλησίον +ἄγω +νῦν +ὁ +λέγω +σήμερον +ἤ +αὔριον +πορεύομαι +εἰς +ὅδε +ὁ +πόλις +καί +ποιέω +ἐκεῖ +ἐνιαυτός +καί +ἐμπορεύομαι +καί +κερδαίνω +ὅστις +οὐ +ἐπίσταμαι +ὁ +αὔριον +ποῖος +ὁ +ζωή +σύ +γάρ +εἰμί +ἀτμίς +ὁ +πρός +ὀλίγος +φαίνω +ἔπειτα +καί +ἀφανίζω +ἀντί +ὁ +λέγω +σύ +ἐάν +ὁ +κύριος +θέλω +καί +ζάω +καί +ποιέω +οὗτος +ἤ +ἐκεῖνος +δέ +νῦν +καυχάομαι +ἐν +ὁ +ἀλαζονεία +σύ +πᾶς +καύχησις +τοιοῦτος +πονηρός +εἰμί +οὖν +οἶδα +καλός +ποιέω +καί +μή +ποιέω +ἁμαρτία +αὐτός +εἰμί +ἄγω +νῦν +ὁ +πλούσιος +κλαίω +ὀλολύζω +ἐπί +ὁ +ταλαιπωρία +σύ +ὁ +ἐπέρχομαι +ὁ +πλοῦτος +σύ +σήπω +καί +ὁ +ἱμάτιον +σύ +σητόβρωτος +γίνομαι +ὁ +χρυσός +σύ +καί +ὁ +ἄργυρος +κατιόω +καί +ὁ +ἰός +αὐτός +εἰς +μαρτύριον +σύ +εἰμί +καί +ἐσθίω +ὁ +σάρξ +σύ +ὡς +πῦρ +θησαυρίζω +ἐν +ἔσχατος +ἡμέρα +ὁράω +ὁ +μισθός +ὁ +ἐργάτης +ὁ +ἀμάω +ὁ +χώρα +σύ +ὁ +ἀφυστερέω +ἀπό +σύ +κράζω +καί +ὁ +βοή +ὁ +θερίζω +εἰς +ὁ +οὖς +κύριος +Σαβαώθ +εἰσέρχομαι +τρυφάω +ἐπί +ὁ +γῆ +καί +σπαταλάω +τρέφω +ὁ +καρδία +σύ +ἐν +ἡμέρα +σφαγή +καταδικάζω +φονεύω +ὁ +δίκαιος +οὐ +ἀντιτάσσω +σύ +οὖν +ἀδελφός +μακροθυμέω +ἕως +ὁ +παρουσία +ὁ +κύριος +ὁράω +ὁ +γεωργός +ἐκδέχομαι +ὁ +τίμιος +καρπός +ὁ +γῆ +μακροθυμέω +ἐπί +αὐτός +ἕως +λαμβάνω +πρόϊμος +καί +ὄψιμος +μακροθυμέω +καί +σύ +στηρίζω +ὁ +καρδία +σύ +ὅτι +ὁ +παρουσία +ὁ +κύριος +ἐγγίζω +ἀδελφός +μή +στενάζω +κατά +ἀλλήλων +ἵνα +μή +κρίνω +ὁράω +ὁ +κριτής +πρό +ὁ +θύρα +ἵστημι +ἀδελφός +λαμβάνω +ὑπόδειγμα +ὁ +κακοπάθεια +καί +ὁ +μακροθυμία +ὁ +προφήτης +ὅς +λαλέω +ἐν +ὁ +ὄνομα +κύριος +ὁράω +μακαρίζω +ὁ +ὑπομένω +ὁ +ὑπομονή +Ἰώβ +ἀκούω +καί +ὁ +τέλος +κύριος +ὁράω +ὅτι +εἰμί +ὁ +κύριος +πολύσπλαγχνος +καί +οἰκτίρμων +δέ +ἀδελφός +ἐγώ +πρό +πᾶς +μή +ὀμνύω +μήτε +ὁ +οὐρανός +μήτε +ὁ +γῆ +μήτε +ἄλλος +τὶς +ὅρκος +δέ +εἰμί +σύ +ὁ +ναί +ναί +καί +ὁ +οὐ +οὐ +ἵνα +μή +ὑπό +κρίσις +πίπτω +κακοπαθέω +τὶς +ἐν +σύ +προσεύχομαι +εὐθυμέω +τὶς +ψάλλω +ἀσθενέω +τὶς +ἐν +σύ +προσκαλέω +ὁ +πρεσβύτερος +ὁ +ἐκκλησία +καί +προσεύχομαι +ἐπί +αὐτός +ἀλείφω +ἔλαιον +ἐν +ὁ +ὄνομα +ὁ +κύριος +καί +ὁ +εὐχή +ὁ +πίστις +σῴζω +ὁ +κάμνω +καί +ἐγείρω +αὐτός +ὁ +κύριος +κἄν +ἁμαρτία +εἰμί +ποιέω +ἀφίημι +αὐτός +οὖν +ἐξομολογέω +ἀλλήλων +ὁ +ἁμαρτία +καί +προσεύχομαι +ὑπέρ +ἀλλήλων +ὅπως +ἰάομαι +πολύς +ἰσχύω +δέησις +δίκαιος +ἐνεργέω +Ἠλίας +εἰμί +ἄνθρωπος +ὁμοιοπαθής +ἐγώ +καί +προσευχή +προσεύχομαι +ὁ +μή +βρέχω +καί +οὐ +βρέχω +ἐπί +ὁ +γῆ +ἐνιαυτός +τρεῖς +καί +μήν (II) +ἕξ +καί +πάλιν +προσεύχομαι +καί +ὁ +οὐρανός +ὑετός +δίδωμι +καί +ὁ +γῆ +βλαστάνω +ὁ +καρπός +αὐτός +ἀδελφός +ἐγώ +ἐάν +τὶς +ἐν +σύ +πλανάω +ἀπό +ὁ +ἀλήθεια +καί +ἐπιστρέφω +τὶς +αὐτός +γινώσκω +ὅτι +ὁ +ἐπιστρέφω +ἁμαρτωλός +ἐκ +πλάνη +ὁδός +αὐτός +σῴζω +ψυχή +αὐτός +ἐκ +θάνατος +καί +καλύπτω +πλῆθος +ἁμαρτία +Πέτρος +ἀπόστολος +Ἰησοῦς +Χριστός +ἐκλεκτός +παρεπίδημος +διασπορά +Πόντος +Γαλατία +Καππαδοκία +Ἀσία +καί +Βιθυνία +κατά +πρόγνωσις +θεός +πατήρ +ἐν +ἁγιασμός +πνεῦμα +εἰς +ὑπακοή +καί +ῥαντισμός +αἷμα +Ἰησοῦς +Χριστός +χάρις +καί +εἰρήνη +σύ +πληθύνω +εὐλογητός +ὁ +θεός +καί +πατήρ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὁ +κατά +ὁ +πολύς +αὐτός +ἔλεος +ἀναγεννάω +ἐγώ +εἰς +ἐλπίς +ζάω +διά +ἀνάστασις +Ἰησοῦς +Χριστός +ἐκ +νεκρός +εἰς +κληρονομία +ἄφθαρτος +καί +ἀμίαντος +καί +ἀμάραντος +τηρέω +ἐν +οὐρανός +εἰς +σύ +ὁ +ἐν +δύναμις +θεός +φρουρέω +διά +πίστις +εἰς +σωτηρία +ἕτοιμος +ἀποκαλύπτω +ἐν +καιρός +ἔσχατος +ἐν +ὅς +ἀγαλλιάω +εἰ +ὀλίγος +ἄρτι +δεῖ +λυπέω +ἐν +ποικίλος +πειρασμός +ἵνα +ὁ +δοκίμιον +σύ +ὁ +πίστις +πολύτιμος +χρυσίον +ὁ +ἀπόλλυμι +δέ +διά +πῦρ +δοκιμάζω +εὑρίσκω +εἰς +ἔπαινος +καί +δόξα +καί +τιμή +ἐν +ἀποκάλυψις +Ἰησοῦς +Χριστός +ὅς +οὐ +ὁράω +ἀγαπάω +δέ +εἰς +ὅς +ἄρτι +μή +ὁράω +πιστεύω +ἀγαλλιάω +χαρά +ἀνεκλάλητος +καί +δοξάζω +κομίζω +ὁ +τέλος +ὁ +πίστις +σωτηρία +ψυχή +περί +ὅς +σωτηρία +ἐκζητέω +καί +ἐξεραυνάω +προφήτης +ὁ +περί +ὁ +εἰς +σύ +χάρις +προφητεύω +ἐραυνάω +εἰς +τίς +ἤ +ποῖος +καιρός +δηλόω +ὁ +ἐν +αὐτός +πνεῦμα +Χριστός +προμαρτύρομαι +ὁ +εἰς +Χριστός +πάθημα +καί +ὁ +μετά +οὗτος +δόξα +ὅς +ἀποκαλύπτω +ὅτι +οὐ +ἑαυτοῦ +δέ +σύ +διακονέω +αὐτός +ὅς +νῦν +ἀναγγέλλω +σύ +διά +ὁ +εὐαγγελίζω +σύ +ἐν +πνεῦμα +ἅγιος +ἀποστέλλω +ἀπό +οὐρανός +εἰς +ὅς +παρακύπτω +ἐπιθυμέω +ἄγγελος +διό +ἀναζώννυμι +ὁ +ὀσφῦς +ὁ +διάνοια +σύ +νήφω +τελείως +ἐλπίζω +ἐπί +ὁ +φέρω +σύ +χάρις +ἐν +ἀποκάλυψις +Ἰησοῦς +Χριστός +ὡς +τέκνον +ὑπακοή +μή +συσχηματίζω +ὁ +πρότερος +ἐν +ὁ +ἄγνοια +σύ +ἐπιθυμία +ἀλλά +κατά +ὁ +καλέω +σύ +ἅγιος +καί +αὐτός +ἅγιος +ἐν +πᾶς +ἀναστροφή +γίνομαι +διότι +γράφω +ἅγιος +εἰμί +ὅτι +ἐγώ +ἅγιος +καί +εἰ +πατήρ +ἐπικαλέω +ὁ +ἀπροσωπολήμπτως +κρίνω +κατά +ὁ +ἕκαστος +ἔργον +ἐν +φόβος +ὁ +ὁ +παροικία +σύ +χρόνος +ἀναστρέφω +οἶδα +ὅτι +οὐ +φθαρτός +ἀργύριον +ἤ +χρυσίον +λυτρόω +ἐκ +ὁ +μάταιος +σύ +ἀναστροφή +πατροπαράδοτος +ἀλλά +τίμιος +αἷμα +ὡς +ἀμνός +ἄμωμος +καί +ἄσπιλος +Χριστός +μέν +προγινώσκω +πρό +καταβολή +κόσμος +δέ +φανερόω +ἐπί +ἔσχατος +ὁ +χρόνος +διά +σύ +ὁ +διά +αὐτός +πιστός +εἰς +θεός +ὁ +ἐγείρω +αὐτός +ἐκ +νεκρός +καί +δόξα +αὐτός +δίδωμι +ὥστε +ὁ +πίστις +σύ +καί +ἐλπίς +εἰμί +εἰς +θεός +ὁ +ψυχή +σύ +ἁγνίζω +ἐν +ὁ +ὑπακοή +ὁ +ἀλήθεια +εἰς +φιλαδελφία +ἀνυπόκριτος +ἐκ +καρδία +ἀλλήλων +ἀγαπάω +ἐκτενῶς +ἀναγεννάω +οὐ +ἐκ +σπορά +φθαρτός +ἀλλά +ἄφθαρτος +διά +λόγος +θεός +ζάω +καί +μένω +διότι +πᾶς +σάρξ +ὡς +χόρτος +καί +πᾶς +δόξα +αὐτός +ὡς +ἄνθος +χόρτος +ξηραίνω +ὁ +χόρτος +καί +ὁ +ἄνθος +ἐκπίπτω +δέ +ὁ +ῥῆμα +κύριος +μένω +εἰς +ὁ +αἰών +δέ +οὗτος +εἰμί +ὁ +ῥῆμα +ὁ +εὐαγγελίζω +εἰς +σύ +οὖν +ἀποτίθημι +πᾶς +κακία +καί +πᾶς +δόλος +καί +ὑπόκρισις +καί +φθόνος +καί +πᾶς +καταλαλιά +ὡς +ἀρτιγέννητος +βρέφος +ὁ +λογικός +ἄδολος +γάλα +ἐπιποθέω +ἵνα +ἐν +αὐτός +αὐξάνω +εἰς +σωτηρία +εἰ +γεύομαι +ὅτι +χρηστός +ὁ +κύριος +προσέρχομαι +πρός +ὅς +λίθος +ζάω +μέν +ὑπό +ἄνθρωπος +ἀποδοκιμάζω +δέ +παρά +θεός +ἐκλεκτός +ἔντιμος +καί +αὐτός +ὡς +λίθος +ζάω +οἰκοδομέω +οἶκος +πνευματικός +εἰς +ἱεράτευμα +ἅγιος +ἀναφέρω +πνευματικός +θυσία +εὐπρόσδεκτος +θεός +διά +Ἰησοῦς +Χριστός +διότι +περιέχω +ἐν +γραφή +ὁράω +τίθημι +ἐν +Σιών +λίθος +ἐκλεκτός +ἀκρογωνιαῖος +ἔντιμος +καί +ὁ +πιστεύω +ἐπί +αὐτός +οὐ +μή +καταισχύνω +οὖν +ὁ +τιμή +σύ +ὁ +πιστεύω +δέ +ἀπιστέω +λίθος +ὅς +ἀποδοκιμάζω +ὁ +οἰκοδομέω +οὗτος +γίνομαι +εἰς +κεφαλή +γωνία +καί +λίθος +πρόσκομμα +καί +πέτρα +σκάνδαλον +ὅς +προσκόπτω +ὁ +λόγος +ἀπειθέω +εἰς +ὅς +καί +τίθημι +δέ +σύ +γένος +ἐκλεκτός +βασίλειος +ἱεράτευμα +ἔθνος +ἅγιος +λαός +εἰς +περιποίησις +ὅπως +ἐξαγγέλλω +ὁ +ἀρετή +ὁ +ἐκ +σκότος +σύ +καλέω +εἰς +ὁ +θαυμαστός +αὐτός +φῶς +ὅς +ποτέ +οὐ +λαός +δέ +νῦν +λαός +θεός +ὁ +οὐ +ἐλεέω +δέ +νῦν +ἐλεέω +ἀγαπητός +παρακαλέω +ὡς +πάροικος +καί +παρεπίδημος +ἀπέχω +ὁ +σαρκικός +ἐπιθυμία +ὅστις +στρατεύω +κατά +ὁ +ψυχή +ὁ +ἀναστροφή +σύ +ἐν +ὁ +ἔθνος +ἔχω +καλός +ἵνα +ἐν +ὅς +καταλαλέω +σύ +ὡς +κακοποιός +ἐκ +ὁ +καλός +ἔργον +ἐποπτεύω +δοξάζω +ὁ +θεός +ἐν +ἡμέρα +ἐπισκοπή +ὑποτάσσω +διά +ὁ +κύριος +πᾶς +ἀνθρώπινος +κτίσις +εἴτε +βασιλεύς +ὡς +ὑπερέχω +εἴτε +ἡγεμών +ὡς +διά +αὐτός +πέμπω +εἰς +ἐκδίκησις +κακοποιός +δέ +ἔπαινος +ἀγαθοποιός +ὅτι +οὕτω +εἰμί +ὁ +θέλημα +ὁ +θεός +ἀγαθοποιέω +φιμόω +ὁ +ὁ +ἄφρων +ἄνθρωπος +ἀγνωσία +ὡς +ἐλεύθερος +καί +μή +ὡς +ἔχω +ἐπικάλυμμα +ὁ +κακία +ὁ +ἐλευθερία +ἀλλά +ὡς +θεός +δοῦλος (II) +πᾶς +τιμάω +ὁ +ἀδελφότης +ἀγαπάω +ὁ +θεός +φοβέω +ὁ +βασιλεύς +τιμάω +ὁ +οἰκέτης +ὑποτάσσω +ἐν +πᾶς +φόβος +ὁ +δεσπότης +οὐ +μόνος +ὁ +ἀγαθός +καί +ἐπιεικής +ἀλλά +καί +ὁ +σκολιός +γάρ +οὗτος +χάρις +εἰ +διά +συνείδησις +θεός +ὑποφέρω +τὶς +λύπη +πάσχω +ἀδίκως +γάρ +ποῖος +κλέος +εἰ +ἁμαρτάνω +καί +κολαφίζω +ὑπομένω +ἀλλά +εἰ +ἀγαθοποιέω +καί +πάσχω +ὑπομένω +οὗτος +χάρις +παρά +θεός +γάρ +εἰς +οὗτος +καλέω +ὅτι +καί +Χριστός +πάσχω +ὑπέρ +σύ +σύ +ὑπολιμπάνω +ὑπογραμμός +ἵνα +ἐπακολουθέω +ὁ +ἴχνος +αὐτός +ὅς +ἁμαρτία +οὐ +ποιέω +οὐδέ +εὑρίσκω +δόλος +ἐν +ὁ +στόμα +αὐτός +ὅς +λοιδορέω +οὐ +ἀντιλοιδορέω +πάσχω +οὐ +ἀπειλέω +δέ +παραδίδωμι +ὁ +κρίνω +δικαίως +ὅς +αὐτός +ὁ +ἁμαρτία +ἐγώ +ἀναφέρω +ἐν +ὁ +σῶμα +αὐτός +ἐπί +ὁ +ξύλον +ἵνα +ὁ +ἁμαρτία +ἀπογίνομαι +ὁ +δικαιοσύνη +ζάω +ὅς +ὁ +μώλωψ +ἰάομαι +γάρ +εἰμί +ὡς +πρόβατον +πλανάω +ἀλλά +ἐπιστρέφω +νῦν +ἐπί +ὁ +ποιμήν +καί +ἐπίσκοπος +ὁ +ψυχή +σύ +γυνή +ὁμοίως +ὑποτάσσω +ὁ +ἴδιος +ἀνήρ +ἵνα +εἰ +καί +τὶς +ἀπειθέω +ὁ +λόγος +διά +ὁ +ὁ +γυνή +ἀναστροφή +ἄνευ +λόγος +κερδαίνω +ἐποπτεύω +ὁ +ἐν +φόβος +ἁγνός +ἀναστροφή +σύ +ὅς +εἰμί +οὐ +ὁ +ἔξωθεν +ἐμπλοκή +θρίξ +καί +περίθεσις +χρυσίον +ἤ +ἔνδυσις +ἱμάτιον +κόσμος +ἀλλά +ὁ +κρυπτός +ὁ +καρδία +ἄνθρωπος +ἐν +ὁ +ἄφθαρτος +ὁ +πραΰς +καί +ἡσύχιος +πνεῦμα +ὅς +εἰμί +ἐνώπιον +ὁ +θεός +πολυτελής +γάρ +οὕτω +ποτέ +καί +ὁ +ἅγιος +γυνή +ὁ +ἐλπίζω +εἰς +θεός +κοσμέω +ἑαυτοῦ +ὑποτάσσω +ὁ +ἴδιος +ἀνήρ +ὡς +Σάρρα +ὑπακούω +ὁ +Ἀβραάμ +κύριος +αὐτός +καλέω +ὅς +τέκνον +γίνομαι +ἀγαθοποιέω +καί +μή +φοβέω +μηδείς +πτόησις +ὁ +ἀνήρ +ὁμοίως +συνοικέω +κατά +γνῶσις +ὡς +ἀσθενής +σκεῦος +ὁ +γυναικεῖος +ἀπονέμω +τιμή +ὡς +καί +συγκληρονόμος +χάρις +ζωή +εἰς +ὁ +μή +ἐγκόπτω +ὁ +προσευχή +σύ +δέ +ὁ +τέλος +πᾶς +ὁμόφρων +συμπαθής +φιλάδελφος +εὔσπλαγχνος +ταπεινόφρων +μή +ἀποδίδωμι +κακός +ἀντί +κακός +ἤ +λοιδορία +ἀντί +λοιδορία +δέ +τὸ ἐναντίον +εὐλογέω +ὅτι +εἰς +οὗτος +καλέω +ἵνα +εὐλογία +κληρονομέω +γάρ +ὁ +θέλω +ζωή +ἀγαπάω +καί +ὁράω +ἡμέρα +ἀγαθός +παύω +ὁ +γλῶσσα +ἀπό +κακός +καί +χεῖλος +ὁ +μή +λαλέω +δόλος +δέ +ἐκκλίνω +ἀπό +κακός +καί +ποιέω +ἀγαθός +ζητέω +εἰρήνη +καί +διώκω +αὐτός +ὅτι +ὀφθαλμός +κύριος +ἐπί +δίκαιος +καί +οὖς +αὐτός +εἰς +δέησις +αὐτός +δέ +πρόσωπον +κύριος +ἐπί +ποιέω +κακός +καί +τίς +ὁ +κακόω +σύ +ἐάν +ὁ +ἀγαθός +ζηλωτής +γίνομαι +ἀλλά +εἰ +καί +πάσχω +διά +δικαιοσύνη +μακάριος +δέ +ὁ +φόβος +αὐτός +μή +φοβέω +μηδέ +ταράσσω +δέ +κύριος +ὁ +Χριστός +ἁγιάζω +ἐν +ὁ +καρδία +σύ +ἕτοιμος +ἀεί +πρός +ἀπολογία +πᾶς +ὁ +αἰτέω +σύ +λόγος +περί +ὁ +ἐν +σύ +ἐλπίς +ἀλλά +μετά +πραΰτης +καί +φόβος +συνείδησις +ἀγαθός +ἔχω +ἵνα +ἐν +ὅς +καταλαλέω +καταισχύνω +ὁ +ἐπηρεάζω +σύ +ὁ +ἀγαθός +ἐν +Χριστός +ἀναστροφή +γάρ +κρείττων +ἀγαθοποιέω +εἰ +θέλω +ὁ +θέλημα +ὁ +θεός +πάσχω +ἤ +κακοποιέω +ὅτι +καί +Χριστός +ἅπαξ +περί +ἁμαρτία +ἀποθνῄσκω +δίκαιος +ὑπέρ +ἄδικος +ἵνα +σύ +προσάγω +ὁ +θεός +μέν +θανατόω +σάρξ +δέ +ζῳοποιέω +πνεῦμα +ἐν +ὅς +πορεύομαι +κηρύσσω +καί +ὁ +ἐν +φυλακή +πνεῦμα +ἀπειθέω +ποτέ +ὅτε +ἀπεκδέχομαι +ὁ +ὁ +θεός +μακροθυμία +ἐν +ἡμέρα +Νῶε +κατασκευάζω +κιβωτός +εἰς +ὅς +ὀλίγος +οὗτος +εἰμί +ὀκτώ +ψυχή +διασῴζω +διά +ὕδωρ +ὅς +καί +σύ +νῦν +σῴζω +ἀντίτυπος +βάπτισμα +οὐ +σάρξ +ἀπόθεσις +ῥύπος +ἀλλά +συνείδησις +ἀγαθός +ἐπερώτημα +εἰς +θεός +διά +ἀνάστασις +Ἰησοῦς +Χριστός +ὅς +εἰμί +ἐν +δεξιός +θεός +πορεύομαι +εἰς +οὐρανός +ὑποτάσσω +αὐτός +ἄγγελος +καί +ἐξουσία +καί +δύναμις +οὖν +Χριστός +πάσχω +σάρξ +καί +σύ +ὁ +αὐτός +ἔννοια +ὁπλίζω +εἰς +ὁ +μηκέτι +ἄνθρωπος +ἐπιθυμία +ἀλλά +θέλημα +θεός +ὁ +ἐπίλοιπος +ἐν +σάρξ +χρόνος +βιόω +ὅτι +ὁ +πάσχω +σάρξ +παύω +ἁμαρτία +γάρ +ἀρκετός +ὁ +παρέρχομαι +χρόνος +ὁ +βούλημα +ὁ +ἔθνος +κατεργάζομαι +πορεύομαι +ἐν +ἀσέλγεια +ἐπιθυμία +οἰνοφλυγία +κῶμος +πότος +καί +ἀθέμιτος +εἰδωλολατρία +ἐν +ὅς +ξενίζω +μή +συντρέχω +σύ +εἰς +ὁ +αὐτός +ὁ +ἀσωτία +ἀνάχυσις +βλασφημέω +ὅς +ἀποδίδωμι +λόγος +ὁ +ἑτοίμως +ἔχω +κρίνω +ζάω +καί +νεκρός +γάρ +εἰς +οὗτος +καί +νεκρός +εὐαγγελίζω +ἵνα +μέν +κρίνω +κατά +ἄνθρωπος +σάρξ +δέ +ζάω +κατά +θεός +πνεῦμα +δέ +πᾶς +ὁ +τέλος +ἐγγίζω +οὖν +σωφρονέω +καί +νήφω +εἰς +προσευχή +πρό +πᾶς +ὁ +εἰς +ἑαυτοῦ +ἀγάπη +ἐκτενής +ἔχω +ὅτι +ἀγάπη +καλύπτω +πλῆθος +ἁμαρτία +φιλόξενος +εἰς +ἀλλήλων +ἄνευ +γογγυσμός +ἕκαστος +καθώς +λαμβάνω +χάρισμα +εἰς +ἑαυτοῦ +αὐτός +διακονέω +ὡς +καλός +οἰκονόμος +ποικίλος +χάρις +θεός +εἰ +τὶς +λαλέω +ὡς +λόγιον +θεός +εἰ +τὶς +διακονέω +ὡς +ἐκ +ἰσχύς +ὅς +χορηγέω +ὁ +θεός +ἵνα +ἐν +πᾶς +δοξάζω +ὁ +θεός +διά +Ἰησοῦς +Χριστός +ὅς +εἰμί +ὁ +δόξα +καί +ὁ +κράτος +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +ἀγαπητός +μή +ξενίζω +ὁ +ἐν +σύ +πύρωσις +πρός +πειρασμός +σύ +γίνομαι +ὡς +ξένος +σύ +συμβαίνω +ἀλλά +καθό +κοινωνέω +ὁ +ὁ +Χριστός +πάθημα +χαίρω +ἵνα +καί +ἐν +ὁ +ἀποκάλυψις +ὁ +δόξα +αὐτός +χαίρω +ἀγαλλιάω +εἰ +ὀνειδίζω +ἐν +ὄνομα +Χριστός +μακάριος +ὅτι +ὁ +ὁ +δόξα +καί +ὁ +ὁ +θεός +πνεῦμα +ἐπί +σύ +ἀναπαύω +γάρ +μή +τὶς +σύ +πάσχω +ὡς +φονεύς +ἤ +κλέπτης +ἤ +κακοποιός +ἤ +ὡς +ἀλλοτριεπίσκοπος +δέ +εἰ +ὡς +Χριστιανός +μή +αἰσχύνω +δέ +δοξάζω +ὁ +θεός +ἐν +ὁ +ὄνομα +οὗτος +ὅτι +ὁ +καιρός +ὁ +ἄρχω +ὁ +κρίμα +ἀπό +ὁ +οἶκος +ὁ +θεός +δέ +εἰ +πρῶτος +ἀπό +ἐγώ +τίς +ὁ +τέλος +ὁ +ἀπειθέω +ὁ +ὁ +θεός +εὐαγγέλιον +καί +εἰ +ὁ +δίκαιος +μόλις +σῴζω +ὁ +ἀσεβής +καί +ἁμαρτωλός +ποῦ +φαίνω +ὥστε +καί +ὁ +πάσχω +κατά +ὁ +θέλημα +ὁ +θεός +πιστός +κτίστης +παρατίθημι +ὁ +ψυχή +αὐτός +ἐν +ἀγαθοποιΐα +οὖν +πρεσβύτερος +ἐν +σύ +παρακαλέω +ὁ +συμπρεσβύτερος +καί +μάρτυς +ὁ +ὁ +Χριστός +πάθημα +καί +ὁ +ὁ +μέλλω +ἀποκαλύπτω +δόξα +κοινωνός +ποιμαίνω +ὁ +ἐν +σύ +ποίμνιον +ὁ +θεός +μή +ἀναγκαστῶς +ἀλλά +ἑκουσίως +κατά +θεός +μηδέ +αἰσχροκερδῶς +ἀλλά +προθύμως +μηδέ +ὡς +κατακυριεύω +ὁ +κλῆρος +ἀλλά +γίνομαι +τύπος +ὁ +ποίμνιον +καί +φανερόω +ὁ +ἀρχιποίμην +κομίζω +ὁ +ἀμαράντινος +ὁ +δόξα +στέφανος +νέος +ὁμοίως +ὑποτάσσω +πρεσβύτερος +δέ +πᾶς +ἀλλήλων +ὁ +ταπεινοφροσύνη +ἐγκομβόομαι +ὅτι +ὁ +θεός +ὑπερήφανος +ἀντιτάσσω +δέ +ταπεινός +δίδωμι +χάρις +οὖν +ταπεινόω +ὑπό +ὁ +κραταιός +χείρ +ὁ +θεός +ἵνα +σύ +ὑψόω +ἐν +καιρός +πᾶς +ὁ +μέριμνα +σύ +ἐπιρίπτω +ἐπί +αὐτός +ὅτι +αὐτός +μέλει +περί +σύ +νήφω +γρηγορέω +ὁ +ἀντίδικος +σύ +διάβολος +ὡς +λέων +ὠρύομαι +περιπατέω +ζητέω +τὶς +καταπίνω +ὅς +ἀνθίστημι +στερεός +ὁ +πίστις +οἶδα +ὁ +αὐτός +ὁ +πάθημα +ὁ +ἐν +ὁ +κόσμος +σύ +ἀδελφότης +ἐπιτελέω +δέ +ὁ +θεός +πᾶς +χάρις +ὁ +καλέω +σύ +εἰς +ὁ +αἰώνιος +αὐτός +δόξα +ἐν +Χριστός +ὀλίγος +πάσχω +αὐτός +καταρτίζω +στηρίζω +σθενόω +θεμελιόω +αὐτός +ὁ +κράτος +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +σύ +διά +Σιλουανός +ὁ +πιστός +ἀδελφός +ὡς +λογίζομαι +διά +ὀλίγος +γράφω +παρακαλέω +καί +ἐπιμαρτυρέω +οὗτος +εἰμί +ἀληθής +χάρις +ὁ +θεός +εἰς +ὅς +ἵστημι +ἀσπάζομαι +σύ +ὁ +ἐν +Βαβυλών +συνεκλεκτός +καί +Μᾶρκος +ὁ +υἱός +ἐγώ +ἀσπάζομαι +ἀλλήλων +ἐν +φίλημα +ἀγάπη +εἰρήνη +σύ +πᾶς +ὁ +ἐν +Χριστός +Συμεών +Πέτρος +δοῦλος (II) +καί +ἀπόστολος +Ἰησοῦς +Χριστός +ὁ +ἐγώ +λαγχάνω +ἰσότιμος +πίστις +ἐν +δικαιοσύνη +ὁ +θεός +ἐγώ +καί +σωτήρ +Ἰησοῦς +Χριστός +χάρις +καί +εἰρήνη +σύ +πληθύνω +ἐν +ἐπίγνωσις +ὁ +θεός +καί +Ἰησοῦς +ὁ +κύριος +ἐγώ +ὡς +ἐγώ +ὁ +θεῖος +δύναμις +αὐτός +ὁ +πᾶς +ὁ +πρός +ζωή +καί +εὐσέβεια +δωρέομαι +διά +ὁ +ἐπίγνωσις +ὁ +καλέω +ἐγώ +ἴδιος +δόξα +καί +ἀρετή +διά +ὅς +ὁ +τίμιος +καί +μέγας +ἐπάγγελμα +ἐγώ +δωρέομαι +ἵνα +διά +οὗτος +γίνομαι +κοινωνός +θεῖος +φύσις +ἀποφεύγω +ὁ +ἐν +ὁ +κόσμος +ἐν +ἐπιθυμία +φθορά +δέ +καί +αὐτός +οὗτος +σπουδή +πᾶς +παρεισφέρω +ἐπιχορηγέω +ἐν +ὁ +πίστις +σύ +ὁ +ἀρετή +δέ +ἐν +ὁ +ἀρετή +ὁ +γνῶσις +δέ +ἐν +ὁ +γνῶσις +ὁ +ἐγκράτεια +δέ +ἐν +ὁ +ἐγκράτεια +ὁ +ὑπομονή +δέ +ἐν +ὁ +ὑπομονή +ὁ +εὐσέβεια +δέ +ἐν +ὁ +εὐσέβεια +ὁ +φιλαδελφία +δέ +ἐν +ὁ +φιλαδελφία +ὁ +ἀγάπη +γάρ +οὗτος +σύ +ὑπάρχω +καί +πλεονάζω +οὐ +ἀργός +οὐδέ +ἄκαρπος +καθίστημι +εἰς +ὁ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἐπίγνωσις +γάρ +ὅς +μή +πάρειμι +οὗτος +τυφλός +εἰμί +μυωπάζω +λαμβάνω +λήθη +ὁ +καθαρισμός +ὁ +πάλαι +αὐτός +ἁμαρτία +διό +ἀδελφός +μᾶλλον +σπουδάζω +βέβαιος +σύ +ὁ +κλῆσις +καί +ἐκλογή +ποιέω +γάρ +οὗτος +ποιέω +οὐ +μή +πταίω +ποτέ +γάρ +οὕτω +πλουσίως +ἐπιχορηγέω +σύ +ὁ +εἴσοδος +εἰς +ὁ +αἰώνιος +βασιλεία +ὁ +κύριος +ἐγώ +καί +σωτήρ +Ἰησοῦς +Χριστός +διό +μέλλω +ἀεί +σύ +ὑπομιμνῄσκω +περί +οὗτος +καίπερ +οἶδα +καί +στηρίζω +ἐν +ὁ +πάρειμι +ἀλήθεια +δέ +δίκαιος +ἡγέομαι +ἐπί +ὅσος +εἰμί +ἐν +οὗτος +ὁ +σκήνωμα +διεγείρω +σύ +ἐν +ὑπόμνησις +οἶδα +ὅτι +ταχινός +εἰμί +ὁ +ἀπόθεσις +ὁ +σκήνωμα +ἐγώ +καθώς +καί +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +δηλόω +ἐγώ +δέ +σπουδάζω +καί +ἑκάστοτε +ἔχω +σύ +μετά +ὁ +ἐμός +ἔξοδος +ὁ +οὗτος +μνήμη +ποιέω +γάρ +οὐ +σοφίζω +μῦθος +ἐξακολουθέω +γνωρίζω +σύ +ὁ +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +δύναμις +καί +παρουσία +ἀλλά +γίνομαι +ἐπόπτης +ὁ +ἐκεῖνος +μεγαλειότης +γάρ +λαμβάνω +παρά +θεός +πατήρ +τιμή +καί +δόξα +φωνή +τοιόσδε +φέρω +αὐτός +ὑπό +ὁ +μεγαλοπρεπής +δόξα +ὁ +υἱός +ἐγώ +ὁ +ἀγαπητός +ἐγώ +οὗτος +εἰμί +εἰς +ὅς +ἐγώ +εὐδοκέω +καί +οὗτος +ὁ +φωνή +ἐγώ +ἀκούω +ἐκ +οὐρανός +φέρω +σύν +αὐτός +εἰμί +ἐν +ὁ +ἅγιος +ὄρος +καί +ἔχω +βέβαιος +ὁ +προφητικός +λόγος +καλῶς +ποιέω +ὅς +προσέχω +ὡς +λύχνος +φαίνω +ἐν +αὐχμηρός +τόπος +ἕως +ὅς +ἡμέρα +διαυγάζω +καί +φωσφόρος +ἀνατέλλω +ἐν +ὁ +καρδία +σύ +οὗτος +πρῶτος +γινώσκω +ὅτι +πᾶς +προφητεία +γραφή +ἴδιος +ἐπίλυσις +οὐ +γίνομαι +γάρ +οὐ +θέλημα +ἄνθρωπος +φέρω +προφητεία +ποτέ +ἀλλά +ὑπό +πνεῦμα +ἅγιος +φέρω +λαλέω +ἀπό +θεός +ἄνθρωπος +δέ +γίνομαι +καί +ψευδοπροφήτης +ἐν +ὁ +λαός +ὡς +καί +ἐν +σύ +εἰμί +ψευδοδιδάσκαλος +ὅστις +παρεισάγω +αἵρεσις +ἀπώλεια +καί +ὁ +ἀγοράζω +αὐτός +δεσπότης +ἀρνέομαι +ἐπάγω +ἑαυτοῦ +ταχινός +ἀπώλεια +καί +πολύς +ἐξακολουθέω +αὐτός +ὁ +ἀσέλγεια +διά +ὅς +ὁ +ὁδός +ὁ +ἀλήθεια +βλασφημέω +καί +ἐν +πλεονεξία +πλαστός +λόγος +σύ +ἐμπορεύομαι +ὅς +ὁ +κρίμα +ἔκπαλαι +οὐ +ἀργέω +καί +ὁ +ἀπώλεια +αὐτός +οὐ +νυστάζω +γάρ +εἰ +ὁ +θεός +ἄγγελος +ἁμαρτάνω +οὐ +φείδομαι +ἀλλά +σιρός +ζόφος +ταρταρόω +παραδίδωμι +εἰς +κρίσις +τηρέω +καί +ἀρχαῖος +κόσμος +οὐ +φείδομαι +ἀλλά +ὄγδοος +Νῶε +δικαιοσύνη +κῆρυξ +φυλάσσω +κατακλυσμός +κόσμος +ἀσεβής +ἐπάγω +καί +πόλις +Σόδομα +καί +Γόμορρα +τεφρόω +καταστροφή +κατακρίνω +ὑπόδειγμα +μέλλω +ἀσεβέω +τίθημι +καί +δίκαιος +Λώτ +καταπονέω +ὑπό +ὁ +ὁ +ἄθεσμος +ἐν +ἀσέλγεια +ἀναστροφή +ῥύομαι +γάρ +βλέμμα +καί +ἀκοή +ὁ +δίκαιος +ἐγκατοικέω +ἐν +αὐτός +ἡμέρα +ἐκ +ἡμέρα +ψυχή +δίκαιος +ἄνομος +ἔργον +βασανίζω +οἶδα +κύριος +εὐσεβής +ἐκ +πειρασμός +ῥύομαι +δέ +ἄδικος +εἰς +ἡμέρα +κρίσις +κολάζω +τηρέω +δέ +μάλιστα +ὁ +ὀπίσω +σάρξ +ἐν +ἐπιθυμία +μιασμός +πορεύομαι +καί +κυριότης +καταφρονέω +τολμητής +αὐθάδης +δόξα +βλασφημέω +οὐ +τρέμω +ὅπου +ἄγγελος +ἰσχύς +καί +δύναμις +μέγας +εἰμί +οὐ +φέρω +κατά +αὐτός +παρά +κύριος +βλάσφημος +κρίσις +δέ +οὗτος +ὡς +ἄλογος +ζῷον +γεννάω +φυσικός +εἰς +ἅλωσις +καί +φθορά +ἐν +ὅς +ἀγνοέω +βλασφημέω +ἐν +ὁ +φθορά +αὐτός +καί +φθείρω +ἀδικέω +μισθός +ἀδικία +ἡδονή +ἡγέομαι +ὁ +ἐν +ἡμέρα +τρυφή +σπίλος +καί +μῶμος +ἐντρυφάω +ἐν +ὁ +ἀπάτη +αὐτός +συνευωχέομαι +σύ +ἔχω +ὀφθαλμός +μεστός +μοιχαλίς +καί +ἀκατάπαυστος +ἁμαρτία +δελεάζω +ψυχή +ἀστήρικτος +καρδία +γυμνάζω +πλεονεξία +ἔχω +κατάρα +τέκνον +καταλείπω +εὐθύς +ὁδός +πλανάω +ἐξακολουθέω +ὁ +ὁδός +ὁ +Βαλαάμ +ὁ +Βοσόρ +ὅς +μισθός +ἀδικία +ἀγαπάω +δέ +ἔλεγξις +ἴδιος +παρανομία +ἔχω +ὑποζύγιον +ἄφωνος +ἐν +ἄνθρωπος +φωνή +φθέγγομαι +κωλύω +ὁ +ὁ +προφήτης +παραφρονία +οὗτος +εἰμί +πηγή +ἄνυδρος +καί +ὀμίχλη +ὑπό +λαῖλαψ +ἐλαύνω +ὅς +ὁ +ζόφος +ὁ +σκότος +τηρέω +γάρ +ὑπέρογκος +ματαιότης +φθέγγομαι +δελεάζω +ἐν +ἐπιθυμία +σάρξ +ἀσέλγεια +ὁ +ὀλίγως +ἀποφεύγω +ὁ +ἐν +πλάνη +ἀναστρέφω +ἐλευθερία +αὐτός +ἐπαγγέλλομαι +αὐτός +ὑπάρχω +δοῦλος (II) +ὁ +φθορά +γάρ +ὅς +τὶς +ἡσσάομαι +οὗτος +δουλόω +γάρ +εἰ +ἀποφεύγω +ὁ +μίασμα +ὁ +κόσμος +ἐν +ἐπίγνωσις +ὁ +κύριος +καί +σωτήρ +Ἰησοῦς +Χριστός +δέ +οὗτος +πάλιν +ἐμπλέκω +ἡσσάομαι +γίνομαι +αὐτός +ὁ +ἔσχατος +χείρων +ὁ +πρῶτος +γάρ +κρείττων +εἰμί +αὐτός +μή +ἐπιγινώσκω +ὁ +ὁδός +ὁ +δικαιοσύνη +ἤ +ἐπιγινώσκω +ὑποστρέφω +ἐκ +ὁ +παραδίδωμι +αὐτός +ἅγιος +ἐντολή +συμβαίνω +αὐτός +ὁ +ὁ +ἀληθής +παροιμία +κύων +ἐπιστρέφω +ἐπί +ὁ +ἴδιος +ἐξέραμα +καί +ὗς +λούω +εἰς +κυλισμός +βόρβορος +ἀγαπητός +ἤδη +οὗτος +δεύτερος +ἐπιστολή +σύ +γράφω +ἐν +ὅς +διεγείρω +ἐν +ὑπόμνησις +σύ +ὁ +εἰλικρινής +διάνοια +μιμνῄσκω +ὁ +προλέγω +ὑπό +ὁ +ἅγιος +προφήτης +ῥῆμα +καί +ὁ +ὁ +ἀπόστολος +σύ +ἐντολή +ὁ +κύριος +καί +σωτήρ +οὗτος +πρῶτος +γινώσκω +ὅτι +ἔρχομαι +ἐπί +ἔσχατος +ὁ +ἡμέρα +ἐν +ἐμπαιγμονή +ἐμπαίκτης +κατά +ὁ +ἴδιος +ἐπιθυμία +αὐτός +πορεύομαι +καί +λέγω +ποῦ +εἰμί +ὁ +ἐπαγγελία +ὁ +παρουσία +αὐτός +γάρ +ἀπό +ὅς +ὁ +πατήρ +κοιμάομαι +πᾶς +οὕτω +διαμένω +ἀπό +ἀρχή +κτίσις +γάρ +λανθάνω +αὐτός +οὗτος +θέλω +ὅτι +οὐρανός +εἰμί +ἔκπαλαι +καί +γῆ +ἐκ +ὕδωρ +καί +διά +ὕδωρ +συνίστημι +ὁ +ὁ +θεός +λόγος +διά +ὅς +ὁ +τότε +κόσμος +ὕδωρ +κατακλύζω +ἀπόλλυμι +δέ +ὁ +νῦν +οὐρανός +καί +ὁ +γῆ +ὁ +αὐτός +λόγος +θησαυρίζω +εἰμί +πῦρ +τηρέω +εἰς +ἡμέρα +κρίσις +καί +ἀπώλεια +ὁ +ἀσεβής +ἄνθρωπος +δέ +ἀγαπητός +εἷς +οὗτος +μή +λανθάνω +σύ +ὅτι +εἷς +ἡμέρα +παρά +κύριος +ὡς +χίλιοι +ἔτος +καί +χίλιοι +ἔτος +ὡς +ἡμέρα +εἷς +οὐ +βραδύνω +κύριος +ὁ +ἐπαγγελία +ὡς +τὶς +βραδύτης +ἡγέομαι +ἀλλά +μακροθυμέω +εἰς +σύ +βούλομαι +μή +τὶς +ἀπόλλυμι +ἀλλά +πᾶς +εἰς +μετάνοια +χωρέω +δέ +ἥκω +ἡμέρα +κύριος +ὡς +κλέπτης +ἐν +ὅς +ὁ +οὐρανός +ῥοιζηδόν +παρέρχομαι +δέ +στοιχεῖον +καυσόω +λύω +καί +γῆ +καί +ὁ +ἐν +αὐτός +ἔργον +εὑρίσκω +οὕτω +οὗτος +πᾶς +λύω +δεῖ +ποταπός +ὑπάρχω +σύ +ἐν +ἅγιος +ἀναστροφή +καί +εὐσέβεια +προσδοκάω +καί +σπεύδω +ὁ +παρουσία +ὁ +ὁ +θεός +ἡμέρα +διά +ὅς +οὐρανός +πυρόω +λύω +καί +στοιχεῖον +καυσόω +τήκω +δέ +καινός +οὐρανός +καί +γῆ +καινός +κατά +ὁ +ἐπάγγελμα +αὐτός +προσδοκάω +ἐν +ὅς +δικαιοσύνη +κατοικέω +διό +ἀγαπητός +οὗτος +προσδοκάω +σπουδάζω +ἄσπιλος +καί +ἀμώμητος +αὐτός +εὑρίσκω +ἐν +εἰρήνη +καί +ὁ +ὁ +κύριος +ἐγώ +μακροθυμία +σωτηρία +ἡγέομαι +καθώς +καί +ὁ +ἀγαπητός +ἐγώ +ἀδελφός +Παῦλος +κατά +ὁ +δίδωμι +αὐτός +σοφία +γράφω +σύ +ὡς +καί +ἐν +πᾶς +ἐπιστολή +λαλέω +ἐν +αὐτός +περί +οὗτος +ἐν +ὅς +εἰμί +δυσνόητος +τὶς +ὅς +ὁ +ἀμαθής +καί +ἀστήρικτος +στρεβλόω +ὡς +καί +ὁ +λοιπός +γραφή +πρός +ὁ +ἴδιος +αὐτός +ἀπώλεια +οὖν +ἀγαπητός +σύ +προγινώσκω +φυλάσσω +ἵνα +μή +ὁ +ὁ +ἄθεσμος +πλάνη +συναπάγω +ἐκπίπτω +ὁ +ἴδιος +στηριγμός +δέ +αὐξάνω +ἐν +χάρις +καί +γνῶσις +ὁ +κύριος +ἐγώ +καί +σωτήρ +Ἰησοῦς +Χριστός +αὐτός +ὁ +δόξα +καί +νῦν +καί +εἰς +ἡμέρα +αἰών +ὅς +εἰμί +ἀπό +ἀρχή +ὅς +ἀκούω +ὅς +ὁράω +ὁ +ὀφθαλμός +ἐγώ +ὅς +θεάομαι +καί +ὁ +χείρ +ἐγώ +ψηλαφάω +περί +ὁ +λόγος +ὁ +ζωή +καί +ὁ +ζωή +φανερόω +καί +ὁράω +καί +μαρτυρέω +καί +ἀπαγγέλλω +σύ +ὁ +ζωή +ὁ +αἰώνιος +ὅστις +εἰμί +πρός +ὁ +πατήρ +καί +φανερόω +ἐγώ +ὅς +ὁράω +καί +ἀκούω +ἀπαγγέλλω +καί +σύ +ἵνα +καί +σύ +κοινωνία +ἔχω +μετά +ἐγώ +δέ +καί +ὁ +κοινωνία +ὁ +ἡμέτερος +μετά +ὁ +πατήρ +καί +μετά +ὁ +υἱός +αὐτός +Ἰησοῦς +Χριστός +καί +οὗτος +γράφω +ἐγώ +ἵνα +ὁ +χαρά +ἐγώ +εἰμί +πληρόω +καί +εἰμί +οὗτος +ὁ +ἀγγελία +ὅς +ἀκούω +ἀπό +αὐτός +καί +ἀναγγέλλω +σύ +ὅτι +ὁ +θεός +φῶς +εἰμί +καί +ἐν +αὐτός +οὐ +εἰμί +σκοτία +οὐδείς +ἐάν +λέγω +ὅτι +κοινωνία +ἔχω +μετά +αὐτός +καί +ἐν +ὁ +σκότος +περιπατέω +ψεύδομαι +καί +οὐ +ποιέω +ὁ +ἀλήθεια +δέ +ἐάν +ἐν +ὁ +φῶς +περιπατέω +ὡς +αὐτός +εἰμί +ἐν +ὁ +φῶς +κοινωνία +ἔχω +μετά +ἀλλήλων +καί +ὁ +αἷμα +Ἰησοῦς +ὁ +υἱός +αὐτός +καθαρίζω +ἐγώ +ἀπό +πᾶς +ἁμαρτία +ἐάν +λέγω +ὅτι +ἁμαρτία +οὐ +ἔχω +ἑαυτοῦ +πλανάω +καί +ὁ +ἀλήθεια +οὐ +εἰμί +ἐν +ἐγώ +ἐάν +ὁμολογέω +ὁ +ἁμαρτία +ἐγώ +εἰμί +πιστός +καί +δίκαιος +ἵνα +ἀφίημι +ἐγώ +ὁ +ἁμαρτία +καί +καθαρίζω +ἐγώ +ἀπό +πᾶς +ἀδικία +ἐάν +λέγω +ὅτι +οὐ +ἁμαρτάνω +ψεύστης +ποιέω +αὐτός +καί +ὁ +λόγος +αὐτός +οὐ +εἰμί +ἐν +ἐγώ +τεκνίον +ἐγώ +οὗτος +γράφω +σύ +ἵνα +μή +ἁμαρτάνω +καί +ἐάν +τὶς +ἁμαρτάνω +ἔχω +πρός +ὁ +πατήρ +παράκλητος +Ἰησοῦς +Χριστός +δίκαιος +καί +αὐτός +ἱλασμός +εἰμί +περί +ὁ +ἁμαρτία +ἐγώ +δέ +οὐ +περί +ὁ +ἡμέτερος +μόνος +ἀλλά +καί +περί +ὅλος +ὁ +κόσμος +καί +ἐν +οὗτος +γινώσκω +ὅτι +γινώσκω +αὐτός +ἐάν +ὁ +ἐντολή +αὐτός +τηρέω +ὁ +λέγω +ὅτι +γινώσκω +αὐτός +καί +ὁ +ἐντολή +αὐτός +μή +τηρέω +ψεύστης +εἰμί +καί +ἐν +οὗτος +ὁ +ἀλήθεια +οὐ +εἰμί +δέ +ἄν +ὅς +τηρέω +αὐτός +ὁ +λόγος +ἀληθῶς +ἐν +οὗτος +ὁ +ἀγάπη +ὁ +θεός +τελειόω +ἐν +οὗτος +γινώσκω +ὅτι +ἐν +αὐτός +εἰμί +ὁ +λέγω +ἐν +αὐτός +μένω +καθώς +ἐκεῖνος +περιπατέω +ὀφείλω +καί +αὐτός +οὕτω +περιπατέω +ἀγαπητός +γράφω +σύ +οὐ +ἐντολή +καινός +ἀλλά +ἐντολή +παλαιός +ὅς +ἔχω +ἀπό +ἀρχή +ὁ +ἐντολή +ὁ +παλαιός +εἰμί +ὁ +λόγος +ὅς +ἀκούω +πάλιν +ἐντολή +καινός +γράφω +σύ +ὅς +εἰμί +ἀληθής +ἐν +αὐτός +καί +ἐν +σύ +ὅτι +ὁ +σκοτία +παράγω +καί +ὁ +φῶς +ὁ +ἀληθινός +ἤδη +φαίνω +ὁ +λέγω +ἐν +ὁ +φῶς +εἰμί +καί +ὁ +ἀδελφός +αὐτός +μισέω +ἐν +ὁ +σκοτία +εἰμί +ἕως +ἄρτι +ὁ +ἀγαπάω +ὁ +ἀδελφός +αὐτός +ἐν +ὁ +φῶς +μένω +καί +σκάνδαλον +ἐν +αὐτός +οὐ +εἰμί +δέ +ὁ +μισέω +ὁ +ἀδελφός +αὐτός +ἐν +ὁ +σκοτία +εἰμί +καί +ἐν +ὁ +σκοτία +περιπατέω +καί +οὐ +οἶδα +πού +ὑπάγω +ὅτι +ὁ +σκοτία +τυφλόω +ὁ +ὀφθαλμός +αὐτός +τεκνίον +γράφω +σύ +ὅτι +ἀφίημι +σύ +ὁ +ἁμαρτία +διά +ὁ +ὄνομα +αὐτός +πατήρ +γράφω +σύ +ὅτι +γινώσκω +ὁ +ἀπό +ἀρχή +νεανίσκος +γράφω +σύ +ὅτι +νικάω +ὁ +πονηρός +παιδίον +γράφω +σύ +ὅτι +γινώσκω +ὁ +πατήρ +πατήρ +γράφω +σύ +ὅτι +γινώσκω +ὁ +ἀπό +ἀρχή +νεανίσκος +γράφω +σύ +ὅτι +ἰσχυρός +εἰμί +καί +ὁ +λόγος +ὁ +θεός +ἐν +σύ +μένω +καί +νικάω +ὁ +πονηρός +μή +ἀγαπάω +ὁ +κόσμος +μηδέ +ὁ +ἐν +ὁ +κόσμος +ἐάν +τὶς +ἀγαπάω +ὁ +κόσμος +οὐ +εἰμί +ὁ +ἀγάπη +ὁ +πατήρ +ἐν +αὐτός +ὅτι +οὐ +πᾶς +ὁ +ἐν +ὁ +κόσμος +ὁ +ἐπιθυμία +ὁ +σάρξ +καί +ὁ +ἐπιθυμία +ὁ +ὀφθαλμός +καί +ὁ +ἀλαζονεία +ὁ +βίος +εἰμί +ἐκ +ὁ +πατήρ +ἀλλά +ἐκ +ὁ +κόσμος +εἰμί +καί +παράγω +ὁ +κόσμος +καί +ὁ +ἐπιθυμία +αὐτός +δέ +ὁ +ποιέω +ὁ +θέλημα +ὁ +θεός +μένω +εἰς +ὁ +αἰών +παιδίον +ἔσχατος +ὥρα +εἰμί +καί +καθώς +ἀκούω +ὅτι +ἀντίχριστος +ἔρχομαι +καί +νῦν +ἀντίχριστος +πολύς +γίνομαι +ὅθεν +γινώσκω +ὅτι +ἔσχατος +ὥρα +εἰμί +ἐκ +ἐγώ +ἐξέρχομαι +ἀλλά +οὐ +εἰμί +ἐκ +ἐγώ +γάρ +εἰ +ἐκ +ἐγώ +εἰμί +ἄν +μένω +μετά +ἐγώ +ἀλλά +ἵνα +φανερόω +ὅτι +οὐ +εἰμί +πᾶς +ἐκ +ἐγώ +καί +σύ +χρῖσμα +ἔχω +ἀπό +ὁ +ἅγιος +καί +οἶδα +πᾶς +γράφω +σύ +οὐ +ὅτι +οὐ +οἶδα +ὁ +ἀλήθεια +ἀλλά +ὅτι +οἶδα +αὐτός +καί +ὅτι +πᾶς +ψεῦδος +ἐκ +ὁ +ἀλήθεια +οὐ +εἰμί +τίς +εἰμί +ὁ +ψεύστης +εἰ +μή +ὁ +ἀρνέομαι +ὅτι +Ἰησοῦς +οὐ +εἰμί +ὁ +Χριστός +οὗτος +εἰμί +ὁ +ἀντίχριστος +ὁ +ἀρνέομαι +ὁ +πατήρ +καί +ὁ +υἱός +πᾶς +ὁ +ἀρνέομαι +ὁ +υἱός +οὐδέ +ὁ +πατήρ +ἔχω +ὁ +ὁμολογέω +ὁ +υἱός +καί +ὁ +πατήρ +ἔχω +σύ +ὅς +ἀκούω +ἀπό +ἀρχή +ἐν +σύ +μένω +ἐάν +ἐν +σύ +μένω +ὅς +ἀπό +ἀρχή +ἀκούω +καί +σύ +ἐν +ὁ +υἱός +καί +ἐν +ὁ +πατήρ +μένω +καί +οὗτος +εἰμί +ὁ +ἐπαγγελία +ὅς +αὐτός +ἐπαγγέλλομαι +ἐγώ +ὁ +ζωή +ὁ +αἰώνιος +οὗτος +γράφω +σύ +περί +ὁ +πλανάω +σύ +καί +σύ +ὁ +χρῖσμα +ὅς +λαμβάνω +ἀπό +αὐτός +μένω +ἐν +σύ +καί +οὐ +χρεία +ἔχω +ἵνα +τὶς +διδάσκω +σύ +ἀλλά +ὡς +ὁ +αὐτός +χρῖσμα +διδάσκω +σύ +περί +πᾶς +καί +ἀληθής +εἰμί +καί +οὐ +εἰμί +ψεῦδος +καί +καθώς +διδάσκω +σύ +μένω +ἐν +αὐτός +καί +τεκνίον +νῦν +μένω +ἐν +αὐτός +ἵνα +ἐάν +φανερόω +ἔχω +παρρησία +καί +μή +αἰσχύνω +ἀπό +αὐτός +ἐν +ὁ +παρουσία +αὐτός +ἐάν +οἶδα +ὅτι +δίκαιος +εἰμί +γινώσκω +ὅτι +καί +πᾶς +ὁ +ποιέω +ὁ +δικαιοσύνη +ἐκ +αὐτός +γεννάω +ὁράω +ποταπός +ἀγάπη +δίδωμι +ἐγώ +ὁ +πατήρ +ἵνα +τέκνον +θεός +καλέω +καί +εἰμί +διά +οὗτος +ὁ +κόσμος +οὐ +γινώσκω +ἐγώ +ὅτι +οὐ +γινώσκω +αὐτός +ἀγαπητός +νῦν +τέκνον +θεός +εἰμί +καί +οὔπω +φανερόω +τίς +εἰμί +οἶδα +ὅτι +ἐάν +φανερόω +ὅμοιος +αὐτός +εἰμί +ὅτι +ὁράω +αὐτός +καθώς +εἰμί +καί +πᾶς +ὁ +ἔχω +ὁ +ἐλπίς +οὗτος +ἐπί +αὐτός +ἁγνίζω +ἑαυτοῦ +καθώς +ἐκεῖνος +ἁγνός +εἰμί +πᾶς +ὁ +ποιέω +ὁ +ἁμαρτία +καί +ὁ +ἀνομία +ποιέω +καί +ὁ +ἁμαρτία +εἰμί +ὁ +ἀνομία +καί +οἶδα +ὅτι +ἐκεῖνος +φανερόω +ἵνα +ὁ +ἁμαρτία +αἴρω +καί +ἁμαρτία +ἐν +αὐτός +οὐ +εἰμί +πᾶς +ὁ +ἐν +αὐτός +μένω +οὐ +ἁμαρτάνω +πᾶς +ὁ +ἁμαρτάνω +οὐ +ὁράω +αὐτός +οὐδέ +γινώσκω +αὐτός +τεκνίον +μηδείς +πλανάω +σύ +ὁ +ποιέω +ὁ +δικαιοσύνη +δίκαιος +εἰμί +καθώς +ἐκεῖνος +δίκαιος +εἰμί +ὁ +ποιέω +ὁ +ἁμαρτία +ἐκ +ὁ +διάβολος +εἰμί +ὅτι +ἀπό +ἀρχή +ὁ +διάβολος +ἁμαρτάνω +εἰς +οὗτος +φανερόω +ὁ +υἱός +ὁ +θεός +ἵνα +λύω +ὁ +ἔργον +ὁ +διάβολος +πᾶς +ὁ +γεννάω +ἐκ +ὁ +θεός +ἁμαρτία +οὐ +ποιέω +ὅτι +σπέρμα +αὐτός +ἐν +αὐτός +μένω +καί +οὐ +δύναμαι +ἁμαρτάνω +ὅτι +ἐκ +ὁ +θεός +γεννάω +ἐν +οὗτος +φανερός +εἰμί +ὁ +τέκνον +ὁ +θεός +καί +ὁ +τέκνον +ὁ +διάβολος +πᾶς +ὁ +μή +ποιέω +δικαιοσύνη +οὐ +εἰμί +ἐκ +ὁ +θεός +καί +ὁ +μή +ἀγαπάω +ὁ +ἀδελφός +αὐτός +ὅτι +οὗτος +εἰμί +ὁ +ἀγγελία +ὅς +ἀκούω +ἀπό +ἀρχή +ἵνα +ἀγαπάω +ἀλλήλων +οὐ +καθώς +Κάϊν +ἐκ +ὁ +πονηρός +εἰμί +καί +σφάζω +ὁ +ἀδελφός +αὐτός +καί +χάριν +τίς +σφάζω +αὐτός +ὅτι +ὁ +ἔργον +αὐτός +πονηρός +εἰμί +δέ +ὁ +ὁ +ἀδελφός +αὐτός +δίκαιος +ἀδελφός +μή +θαυμάζω +εἰ +μισέω +σύ +ὁ +κόσμος +ἐγώ +οἶδα +ὅτι +μεταβαίνω +ἐκ +ὁ +θάνατος +εἰς +ὁ +ζωή +ὅτι +ἀγαπάω +ὁ +ἀδελφός +ὁ +μή +ἀγαπάω +μένω +ἐν +ὁ +θάνατος +πᾶς +ὁ +μισέω +ὁ +ἀδελφός +αὐτός +ἀνθρωποκτόνος +εἰμί +καί +οἶδα +ὅτι +πᾶς +ἀνθρωποκτόνος +οὐ +ἔχω +ζωή +αἰώνιος +ἐν +αὐτός +μένω +ἐν +οὗτος +γινώσκω +ὁ +ἀγάπη +ὅτι +ἐκεῖνος +ὑπέρ +ἐγώ +ὁ +ψυχή +αὐτός +τίθημι +καί +ἐγώ +ὀφείλω +ὑπέρ +ὁ +ἀδελφός +ὁ +ψυχή +τίθημι +δέ +ἄν +ὅς +ἔχω +ὁ +βίος +ὁ +κόσμος +καί +θεωρέω +ὁ +ἀδελφός +αὐτός +χρεία +ἔχω +καί +κλείω +ὁ +σπλάγχνον +αὐτός +ἀπό +αὐτός +πῶς +ὁ +ἀγάπη +ὁ +θεός +μένω +ἐν +αὐτός +τεκνίον +ἀγαπάω +μή +λόγος +μηδέ +ὁ +γλῶσσα +ἀλλά +ἐν +ἔργον +καί +ἀλήθεια +ἐν +οὗτος +γινώσκω +ὅτι +ἐκ +ὁ +ἀλήθεια +εἰμί +καί +ἔμπροσθεν +αὐτός +πείθω +ὁ +καρδία +ἐγώ +ὅτι +ἐάν +καταγινώσκω +ἐγώ +ὁ +καρδία +ὅτι +μέγας +εἰμί +ὁ +θεός +ὁ +καρδία +ἐγώ +καί +γινώσκω +πᾶς +ἀγαπητός +ἐάν +ὁ +καρδία +μή +καταγινώσκω +παρρησία +ἔχω +πρός +ὁ +θεός +καί +ἐάν +ὅς +αἰτέω +λαμβάνω +ἀπό +αὐτός +ὅτι +ὁ +ἐντολή +αὐτός +τηρέω +καί +ὁ +ἀρεστός +ἐνώπιον +αὐτός +ποιέω +καί +οὗτος +εἰμί +ὁ +ἐντολή +αὐτός +ἵνα +πιστεύω +ὁ +ὄνομα +ὁ +υἱός +αὐτός +Ἰησοῦς +Χριστός +καί +ἀγαπάω +ἀλλήλων +καθώς +δίδωμι +ἐντολή +ἐγώ +καί +ὁ +τηρέω +ὁ +ἐντολή +αὐτός +ἐν +αὐτός +μένω +καί +αὐτός +ἐν +αὐτός +καί +ἐν +οὗτος +γινώσκω +ὅτι +μένω +ἐν +ἐγώ +ἐκ +ὁ +πνεῦμα +ὅς +ἐγώ +δίδωμι +ἀγαπητός +μή +πᾶς +πνεῦμα +πιστεύω +ἀλλά +δοκιμάζω +ὁ +πνεῦμα +εἰ +ἐκ +ὁ +θεός +εἰμί +ὅτι +πολύς +ψευδοπροφήτης +ἐξέρχομαι +εἰς +ὁ +κόσμος +ἐν +οὗτος +γινώσκω +ὁ +πνεῦμα +ὁ +θεός +πᾶς +πνεῦμα +ὅς +ὁμολογέω +Ἰησοῦς +Χριστός +ἐν +σάρξ +ἔρχομαι +ἐκ +ὁ +θεός +εἰμί +καί +πᾶς +πνεῦμα +ὅς +μή +ὁμολογέω +ὁ +Ἰησοῦς +ἐκ +ὁ +θεός +οὐ +εἰμί +καί +οὗτος +εἰμί +ὁ +ὁ +ἀντίχριστος +ὅς +ἀκούω +ὅτι +ἔρχομαι +καί +νῦν +ἐν +ὁ +κόσμος +εἰμί +ἤδη +τεκνίον +σύ +ἐκ +ὁ +θεός +εἰμί +καί +νικάω +αὐτός +ὅτι +μέγας +εἰμί +ὁ +ἐν +σύ +ἤ +ὁ +ἐν +ὁ +κόσμος +αὐτός +ἐκ +ὁ +κόσμος +εἰμί +διά +οὗτος +ἐκ +ὁ +κόσμος +λαλέω +καί +ὁ +κόσμος +αὐτός +ἀκούω +ἐγώ +ἐκ +ὁ +θεός +εἰμί +ὁ +γινώσκω +ὁ +θεός +ἀκούω +ἐγώ +ὅς +οὐ +εἰμί +ἐκ +ὁ +θεός +οὐ +ἀκούω +ἐγώ +ἐκ +οὗτος +γινώσκω +ὁ +πνεῦμα +ὁ +ἀλήθεια +καί +ὁ +πνεῦμα +ὁ +πλάνη +ἀγαπητός +ἀγαπάω +ἀλλήλων +ὅτι +ὁ +ἀγάπη +ἐκ +ὁ +θεός +εἰμί +καί +πᾶς +ὁ +ἀγαπάω +ἐκ +ὁ +θεός +γεννάω +καί +γινώσκω +ὁ +θεός +ὁ +μή +ἀγαπάω +οὐ +γινώσκω +ὁ +θεός +ὅτι +ὁ +θεός +ἀγάπη +εἰμί +ἐν +οὗτος +φανερόω +ὁ +ἀγάπη +ὁ +θεός +ἐν +ἐγώ +ὅτι +ὁ +υἱός +αὐτός +ὁ +μονογενής +ἀποστέλλω +ὁ +θεός +εἰς +ὁ +κόσμος +ἵνα +ζάω +διά +αὐτός +ἐν +οὗτος +εἰμί +ὁ +ἀγάπη +οὐ +ὅτι +ἐγώ +ἀγαπάω +ὁ +θεός +ἀλλά +ὅτι +αὐτός +ἀγαπάω +ἐγώ +καί +ἀποστέλλω +ὁ +υἱός +αὐτός +ἱλασμός +περί +ὁ +ἁμαρτία +ἐγώ +ἀγαπητός +εἰ +οὕτω +ὁ +θεός +ἀγαπάω +ἐγώ +καί +ἐγώ +ὀφείλω +ἀλλήλων +ἀγαπάω +θεός +οὐδείς +πώποτε +θεάομαι +ἐάν +ἀγαπάω +ἀλλήλων +ὁ +θεός +ἐν +ἐγώ +μένω +καί +ὁ +ἀγάπη +αὐτός +ἐν +ἐγώ +τελειόω +εἰμί +ἐν +οὗτος +γινώσκω +ὅτι +ἐν +αὐτός +μένω +καί +αὐτός +ἐν +ἐγώ +ὅτι +ἐκ +ὁ +πνεῦμα +αὐτός +δίδωμι +ἐγώ +καί +ἐγώ +θεάομαι +καί +μαρτυρέω +ὅτι +ὁ +πατήρ +ἀποστέλλω +ὁ +υἱός +σωτήρ +ὁ +κόσμος +ἐάν +ὅς +ὁμολογέω +ὅτι +Ἰησοῦς +εἰμί +ὁ +υἱός +ὁ +θεός +ὁ +θεός +ἐν +αὐτός +μένω +καί +αὐτός +ἐν +ὁ +θεός +καί +ἐγώ +γινώσκω +καί +πιστεύω +ὁ +ἀγάπη +ὅς +ἔχω +ὁ +θεός +ἐν +ἐγώ +ὁ +θεός +ἀγάπη +εἰμί +καί +ὁ +μένω +ἐν +ὁ +ἀγάπη +ἐν +ὁ +θεός +μένω +καί +ὁ +θεός +ἐν +αὐτός +μένω +ἐν +οὗτος +τελειόω +ὁ +ἀγάπη +μετά +ἐγώ +ἵνα +παρρησία +ἔχω +ἐν +ὁ +ἡμέρα +ὁ +κρίσις +ὅτι +καθώς +ἐκεῖνος +εἰμί +καί +ἐγώ +εἰμί +ἐν +ὁ +κόσμος +οὗτος +φόβος +οὐ +εἰμί +ἐν +ὁ +ἀγάπη +ἀλλά +ὁ +τέλειος +ἀγάπη +ἔξω +βάλλω +ὁ +φόβος +ὅτι +ὁ +φόβος +κόλασις +ἔχω +δέ +ὁ +φοβέω +οὐ +τελειόω +ἐν +ὁ +ἀγάπη +ἐγώ +ἀγαπάω +ὅτι +αὐτός +πρῶτος +ἀγαπάω +ἐγώ +ἐάν +τὶς +λέγω +ὅτι +ἀγαπάω +ὁ +θεός +καί +ὁ +ἀδελφός +αὐτός +μισέω +ψεύστης +εἰμί +γάρ +ὁ +μή +ἀγαπάω +ὁ +ἀδελφός +αὐτός +ὅς +ὁράω +οὐ +δύναμαι +ὁ +θεός +ὅς +οὐ +ὁράω +ἀγαπάω +καί +οὗτος +ὁ +ἐντολή +ἔχω +ἀπό +αὐτός +ἵνα +ὁ +ἀγαπάω +ὁ +θεός +ἀγαπάω +καί +ὁ +ἀδελφός +αὐτός +πᾶς +ὁ +πιστεύω +ὅτι +Ἰησοῦς +εἰμί +ὁ +Χριστός +ἐκ +ὁ +θεός +γεννάω +καί +πᾶς +ὁ +ἀγαπάω +ὁ +γεννάω +ἀγαπάω +ὁ +γεννάω +ἐκ +αὐτός +ἐν +οὗτος +γινώσκω +ὅτι +ἀγαπάω +ὁ +τέκνον +ὁ +θεός +ὅταν +ὁ +θεός +ἀγαπάω +καί +ὁ +ἐντολή +αὐτός +ποιέω +γάρ +οὗτος +εἰμί +ὁ +ἀγάπη +ὁ +θεός +ἵνα +ὁ +ἐντολή +αὐτός +τηρέω +καί +ὁ +ἐντολή +αὐτός +βαρύς +οὐ +εἰμί +ὅτι +πᾶς +ὁ +γεννάω +ἐκ +ὁ +θεός +νικάω +ὁ +κόσμος +καί +οὗτος +εἰμί +ὁ +νίκη +ὁ +νικάω +ὁ +κόσμος +ὁ +πίστις +ἐγώ +τίς +εἰμί +ὁ +νικάω +ὁ +κόσμος +εἰ +μή +ὁ +πιστεύω +ὅτι +Ἰησοῦς +εἰμί +ὁ +υἱός +ὁ +θεός +οὗτος +εἰμί +ὁ +ἔρχομαι +διά +ὕδωρ +καί +αἷμα +Ἰησοῦς +Χριστός +οὐ +ἐν +ὁ +ὕδωρ +μόνος +ἀλλά +ἐν +ὁ +ὕδωρ +καί +ἐν +ὁ +αἷμα +καί +ὁ +πνεῦμα +εἰμί +ὁ +μαρτυρέω +ὅτι +ὁ +πνεῦμα +εἰμί +ὁ +ἀλήθεια +ὅτι +τρεῖς +εἰμί +ὁ +μαρτυρέω +ὁ +πνεῦμα +καί +ὁ +ὕδωρ +καί +ὁ +αἷμα +καί +ὁ +τρεῖς +εἰς +ὁ +εἷς +εἰμί +εἰ +ὁ +μαρτυρία +ὁ +ἄνθρωπος +λαμβάνω +ὁ +μαρτυρία +ὁ +θεός +μέγας +εἰμί +ὅτι +οὗτος +εἰμί +ὁ +μαρτυρία +ὁ +θεός +ὅτι +μαρτυρέω +περί +ὁ +υἱός +αὐτός +ὁ +πιστεύω +εἰς +ὁ +υἱός +ὁ +θεός +ἔχω +ὁ +μαρτυρία +ἐν +αὐτός +ὁ +μή +πιστεύω +ὁ +θεός +ψεύστης +ποιέω +αὐτός +ὅτι +οὐ +πιστεύω +εἰς +ὁ +μαρτυρία +ὅς +μαρτυρέω +ὁ +θεός +περί +ὁ +υἱός +αὐτός +καί +οὗτος +εἰμί +ὁ +μαρτυρία +ὅτι +ζωή +αἰώνιος +δίδωμι +ὁ +θεός +ἐγώ +καί +οὗτος +ὁ +ζωή +ἐν +ὁ +υἱός +αὐτός +εἰμί +ὁ +ἔχω +ὁ +υἱός +ἔχω +ὁ +ζωή +ὁ +μή +ἔχω +ὁ +υἱός +ὁ +θεός +ὁ +ζωή +οὐ +ἔχω +οὗτος +γράφω +σύ +ὁ +πιστεύω +εἰς +ὁ +ὄνομα +ὁ +υἱός +ὁ +θεός +ἵνα +οἶδα +ὅτι +ζωή +αἰώνιος +ἔχω +καί +οὗτος +εἰμί +ὁ +παρρησία +ὅς +ἔχω +πρός +αὐτός +ὅτι +ἐάν +τὶς +αἰτέω +κατά +ὁ +θέλημα +αὐτός +ἀκούω +ἐγώ +καί +ἐάν +οἶδα +ὅτι +ἀκούω +ἐγώ +ἐάν +ὅς +αἰτέω +οἶδα +ὅτι +ἔχω +ὁ +αἴτημα +ὅς +αἰτέω +ἀπό +αὐτός +ἐάν +τὶς +ὁράω +ὁ +ἀδελφός +αὐτός +ἁμαρτάνω +ἁμαρτία +μή +πρός +θάνατος +αἰτέω +καί +δίδωμι +ζωή +αὐτός +ὁ +ἁμαρτάνω +μή +πρός +θάνατος +εἰμί +ἁμαρτία +πρός +θάνατος +οὐ +περί +ἐκεῖνος +λέγω +ἵνα +ἐρωτάω +πᾶς +ἀδικία +ἁμαρτία +εἰμί +καί +εἰμί +ἁμαρτία +οὐ +πρός +θάνατος +οἶδα +ὅτι +πᾶς +ὁ +γεννάω +ἐκ +ὁ +θεός +οὐ +ἁμαρτάνω +ἀλλά +ὁ +γεννάω +ἐκ +ὁ +θεός +τηρέω +αὐτός +καί +ὁ +πονηρός +οὐ +ἅπτω +αὐτός +οἶδα +ὅτι +ἐκ +ὁ +θεός +εἰμί +καί +ὁ +κόσμος +ὅλος +ἐν +ὁ +πονηρός +κεῖμαι +δέ +οἶδα +ὅτι +ὁ +υἱός +ὁ +θεός +ἥκω +καί +δίδωμι +ἐγώ +διάνοια +ἵνα +γινώσκω +ὁ +ἀληθινός +καί +εἰμί +ἐν +ὁ +ἀληθινός +ἐν +ὁ +υἱός +αὐτός +Ἰησοῦς +Χριστός +οὗτος +εἰμί +ὁ +ἀληθινός +θεός +καί +ζωή +αἰώνιος +τεκνίον +φυλάσσω +ἑαυτοῦ +ἀπό +ὁ +εἴδωλον +ὁ +πρεσβύτερος +ἐκλεκτός +κυρία +καί +ὁ +τέκνον +αὐτός +ὅς +ἀγαπάω +ἐν +ἀλήθεια +ἐγώ +καί +οὐ +ἐγώ +μόνος +ἀλλά +καί +πᾶς +ὁ +γινώσκω +ὁ +ἀλήθεια +διά +ὁ +ἀλήθεια +ὁ +μένω +ἐν +ἐγώ +καί +μετά +ἐγώ +εἰμί +εἰς +ὁ +αἰών +εἰμί +μετά +ἐγώ +χάρις +ἔλεος +εἰρήνη +παρά +θεός +πατήρ +καί +παρά +Ἰησοῦς +Χριστός +ὁ +υἱός +ὁ +πατήρ +ἐν +ἀλήθεια +καί +ἀγάπη +χαίρω +λίαν +ὅτι +εὑρίσκω +ἐκ +ὁ +τέκνον +σύ +περιπατέω +ἐν +ἀλήθεια +καθώς +ἐντολή +λαμβάνω +παρά +ὁ +πατήρ +καί +κυρία +νῦν +ἐρωτάω +σύ +γράφω +σύ +οὐ +ὡς +ἐντολή +καινός +ἀλλά +ὅς +ἔχω +ἀπό +ἀρχή +ἵνα +ἀγαπάω +ἀλλήλων +καί +οὗτος +εἰμί +ὁ +ἀγάπη +ἵνα +περιπατέω +κατά +ὁ +ἐντολή +αὐτός +οὗτος +ὁ +ἐντολή +εἰμί +καθώς +ἀκούω +ἀπό +ἀρχή +ἵνα +ἐν +αὐτός +περιπατέω +ὅτι +ἐξέρχομαι +εἰς +ὁ +κόσμος +πολύς +πλάνος +ὁ +μή +ὁμολογέω +Ἰησοῦς +Χριστός +ἔρχομαι +ἐν +σάρξ +οὗτος +εἰμί +ὁ +πλάνος +καί +ὁ +ἀντίχριστος +βλέπω +ἑαυτοῦ +ἵνα +μή +ἀπόλλυμι +ὅς +ἐργάζομαι +ἀλλά +μισθός +πλήρης +ἀπολαμβάνω +πᾶς +ὁ +προάγω +καί +μή +μένω +ἐν +ὁ +διδαχή +ὁ +Χριστός +θεός +οὐ +ἔχω +ὁ +μένω +ἐν +ὁ +διδαχή +οὗτος +καί +ὁ +πατήρ +καί +ὁ +υἱός +ἔχω +εἰ +τὶς +ἔρχομαι +πρός +σύ +καί +οὗτος +ὁ +διδαχή +οὐ +φέρω +μή +λαμβάνω +αὐτός +εἰς +οἰκία +καί +χαίρω +αὐτός +μή +λέγω +γάρ +ὁ +λέγω +αὐτός +χαίρω +κοινωνέω +ὁ +ἔργον +αὐτός +ὁ +πονηρός +ἔχω +πολύς +σύ +γράφω +οὐ +βούλομαι +διά +χάρτης +καί +μέλας +ἀλλά +ἐλπίζω +γίνομαι +πρός +σύ +καί +στόμα +πρός +στόμα +λαλέω +ἵνα +ὁ +χαρά +ἐγώ +πληρόω +εἰμί +ἀσπάζομαι +σύ +ὁ +τέκνον +ὁ +ἀδελφή +σύ +ὁ +ἐκλεκτός +ὁ +πρεσβύτερος +Γάϊος +ὁ +ἀγαπητός +ὅς +ἐγώ +ἀγαπάω +ἐν +ἀλήθεια +ἀγαπητός +περί +πᾶς +εὔχομαι +σύ +εὐοδόω +καί +ὑγιαίνω +καθώς +εὐοδόω +σύ +ὁ +ψυχή +γάρ +χαίρω +λίαν +ἔρχομαι +ἀδελφός +καί +μαρτυρέω +σύ +ὁ +ἀλήθεια +καθώς +σύ +ἐν +ἀλήθεια +περιπατέω +μέγας +χαρά +οὗτος +οὐ +ἔχω +ἵνα +ἀκούω +ὁ +ἐμός +τέκνον +ἐν +ὁ +ἀλήθεια +περιπατέω +ἀγαπητός +πιστός +ποιέω +ἐάν +ὅς +ἐργάζομαι +εἰς +ὁ +ἀδελφός +καί +οὗτος +ξένος +ὅς +μαρτυρέω +σύ +ὁ +ἀγάπη +ἐνώπιον +ἐκκλησία +ὅς +καλῶς +ποιέω +προπέμπω +ἀξίως +ὁ +θεός +γάρ +ὑπέρ +ὁ +ὄνομα +ἐξέρχομαι +μηδείς +λαμβάνω +ἀπό +ὁ +ἐθνικός +οὖν +ἐγώ +ὀφείλω +ὑπολαμβάνω +ὁ +τοιοῦτος +ἵνα +συνεργός +γίνομαι +ὁ +ἀλήθεια +γράφω +τὶς +ὁ +ἐκκλησία +ἀλλά +ὁ +φιλοπρωτεύω +αὐτός +Διοτρέφης +οὐ +ἐπιδέχομαι +ἐγώ +διά +οὗτος +ἐάν +ἔρχομαι +ὑπομιμνῄσκω +αὐτός +ὁ +ἔργον +ὅς +ποιέω +λόγος +πονηρός +φλυαρέω +ἐγώ +καί +μή +ἀρκέω +ἐπί +οὗτος +οὔτε +αὐτός +ἐπιδέχομαι +ὁ +ἀδελφός +καί +ὁ +βούλομαι +κωλύω +καί +ἐκ +ὁ +ἐκκλησία +ἐκβάλλω +ἀγαπητός +μή +μιμέομαι +ὁ +κακός +ἀλλά +ὁ +ἀγαθός +ὁ +ἀγαθοποιέω +ἐκ +ὁ +θεός +εἰμί +ὁ +κακοποιέω +οὐ +ὁράω +ὁ +θεός +Δημήτριος +μαρτυρέω +ὑπό +πᾶς +καί +ὑπό +αὐτός +ὁ +ἀλήθεια +δέ +καί +ἐγώ +μαρτυρέω +καί +οἶδα +ὅτι +ὁ +μαρτυρία +ἐγώ +ἀληθής +εἰμί +ἔχω +πολύς +γράφω +σύ +ἀλλά +οὐ +θέλω +διά +μέλας +καί +κάλαμος +σύ +γράφω +δέ +ἐλπίζω +εὐθέως +σύ +ὁράω +καί +στόμα +πρός +στόμα +λαλέω +εἰρήνη +σύ +ἀσπάζομαι +σύ +ὁ +φίλος +ἀσπάζομαι +ὁ +φίλος +κατά +ὄνομα +Ἰούδας +Ἰησοῦς +Χριστός +δοῦλος (II) +δέ +ἀδελφός +Ἰάκωβος +ὁ +ἐν +θεός +πατήρ +ἀγαπάω +καί +Ἰησοῦς +Χριστός +τηρέω +κλητός +σύ +ἔλεος +καί +εἰρήνη +καί +ἀγάπη +πληθύνω +ἀγαπητός +πᾶς +σπουδή +ποιέω +γράφω +σύ +περί +ὁ +κοινός +ἐγώ +σωτηρία +ἀνάγκη +ἔχω +γράφω +σύ +παρακαλέω +ἐπαγωνίζομαι +ὁ +ἅπαξ +παραδίδωμι +ὁ +ἅγιος +πίστις +γάρ +παρεισδύω +τὶς +ἄνθρωπος +ὁ +πάλαι +προγράφω +εἰς +οὗτος +ὁ +κρίμα +ἀσεβής +ὁ +ὁ +θεός +ἐγώ +χάρις +μετατίθημι +εἰς +ἀσέλγεια +καί +ὁ +μόνος +δεσπότης +καί +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ἀρνέομαι +δέ +βούλομαι +οἶδα +ἅπαξ +πᾶς +ὑπομιμνῄσκω +σύ +ὅτι +κύριος +λαός +ἐκ +γῆ +Αἴγυπτος +σῴζω +ὁ +δεύτερος +ὁ +μή +πιστεύω +ἀπόλλυμι +τέ +ἄγγελος +ὁ +μή +τηρέω +ὁ +ἑαυτοῦ +ἀρχή +ἀλλά +ἀπολείπω +ὁ +ἴδιος +οἰκητήριον +εἰς +κρίσις +μέγας +ἡμέρα +δεσμός +ἀΐδιος +ὑπό +ζόφος +τηρέω +ὡς +Σόδομα +καί +Γόμορρα +καί +ὁ +περί +αὐτός +πόλις +ὁ +ὅμοιος +τρόπος +οὗτος +ἐκπορνεύω +καί +ἀπέρχομαι +ὀπίσω +σάρξ +ἕτερος +πρόκειμαι +δεῖγμα +πῦρ +αἰώνιος +δίκη +ὑπέχω +μέντοι +ὁμοίως +καί +οὗτος +ἐνυπνιάζομαι +μέν +σάρξ +μιαίνω +δέ +κυριότης +ἀθετέω +δέ +δόξα +βλασφημέω +δέ +ὅτε +ὁ +διάβολος +διακρίνω +διαλέγομαι +περί +ὁ +Μωϋσῆς +σῶμα +οὐ +ὁ +Μιχαήλ +ὁ +ἀρχάγγελος +τολμάω +κρίσις +βλασφημία +ἐπιφέρω +ἀλλά +λέγω +ἐπιτιμάω +σύ +κύριος +δέ +μέν +οὗτος +ὅσος +οὐ +οἶδα +βλασφημέω +δέ +ὅσος +φυσικῶς +ὡς +ὁ +ἄλογος +ζῷον +ἐπίσταμαι +ἐν +οὗτος +φθείρω +οὐαί +αὐτός +ὅτι +ὁ +ὁδός +ὁ +Κάϊν +πορεύομαι +καί +ὁ +πλάνη +ὁ +Βαλαάμ +μισθός +ἐκχέω +καί +ὁ +ἀντιλογία +ὁ +Κόρε +ἀπόλλυμι +οὗτος +εἰμί +ὁ +ἐν +ὁ +ἀγάπη +σύ +σπιλάς +συνευωχέομαι +ἀφόβως +ἑαυτοῦ +ποιμαίνω +νεφέλη +ἄνυδρος +ὑπό +ἄνεμος +παραφέρω +δένδρον +φθινοπωρινός +ἄκαρπος +δίς +ἀποθνῄσκω +ἐκριζόω +κῦμα +ἄγριος +θάλασσα +ἐπαφρίζω +ὁ +ἑαυτοῦ +αἰσχύνη +ἀστήρ +πλανήτης +ὅς +ὁ +ζόφος +ὁ +σκότος +εἰς +αἰών +τηρέω +δέ +προφητεύω +καί +οὗτος +ἕβδομος +ἀπό +Ἀδάμ +Ἑνώχ +λέγω +ὁράω +ἔρχομαι +κύριος +ἐν +ἅγιος +μυριάς +αὐτός +ποιέω +κρίσις +κατά +πᾶς +καί +ἐλέγχω +πᾶς +ὁ +ἀσεβής +περί +πᾶς +ὁ +ἔργον +ἀσέβεια +αὐτός +ὅς +ἀσεβέω +καί +περί +πᾶς +ὁ +σκληρός +ὅς +λαλέω +κατά +αὐτός +ἁμαρτωλός +ἀσεβής +οὗτος +εἰμί +γογγυστής +μεμψίμοιρος +κατά +ὁ +ἐπιθυμία +αὐτός +πορεύομαι +καί +ὁ +στόμα +αὐτός +λαλέω +ὑπέρογκος +θαυμάζω +πρόσωπον +ὠφέλεια +χάριν +δέ +ἀγαπητός +σύ +μιμνῄσκω +ὁ +ῥῆμα +ὁ +προλέγω +ὑπό +ὁ +ἀπόστολος +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +ὅτι +λέγω +σύ +ἐπί +ἔσχατος +ὁ +χρόνος +εἰμί +ἐμπαίκτης +πορεύομαι +κατά +ὁ +ἑαυτοῦ +ἐπιθυμία +ὁ +ἀσέβεια +οὗτος +εἰμί +ὁ +ἀποδιορίζω +ψυχικός +πνεῦμα +μή +ἔχω +δέ +ἀγαπητός +σύ +ἐποικοδομέω +ἑαυτοῦ +ὁ +ἅγιος +σύ +πίστις +ἐν +πνεῦμα +ἅγιος +προσεύχομαι +ἑαυτοῦ +ἐν +ἀγάπη +θεός +τηρέω +προσδέχομαι +ὁ +ἔλεος +ὁ +κύριος +ἐγώ +Ἰησοῦς +Χριστός +εἰς +ζωή +αἰώνιος +καί +μέν +ὅς +διακρίνω +ἐλεάω +σῴζω +ἐκ +πῦρ +ἁρπάζω +δέ +ὅς +ἐλεάω +ἐν +φόβος +μισέω +καί +ὁ +ἀπό +ὁ +σάρξ +σπιλόω +χιτών +δέ +ὁ +δύναμαι +φυλάσσω +σύ +ἄπταιστος +καί +ἵστημι +κατενώπιον +ὁ +δόξα +αὐτός +ἄμωμος +ἐν +ἀγαλλίασις +μόνος +θεός +σωτήρ +ἐγώ +διά +Ἰησοῦς +Χριστός +ὁ +κύριος +ἐγώ +δόξα +μεγαλωσύνη +κράτος +καί +ἐξουσία +πρό +πᾶς +ὁ +αἰών +καί +νῦν +καί +εἰς +πᾶς +ὁ +αἰών +ἀμήν +ἀποκάλυψις +Ἰησοῦς +Χριστός +ὅς +δίδωμι +αὐτός +ὁ +θεός +δείκνυμι +ὁ +δοῦλος (II) +αὐτός +ὅς +γίνομαι +ἐν +τάχος +δεῖ +καί +σημαίνω +ἀποστέλλω +διά +ὁ +ἄγγελος +αὐτός +ὁ +δοῦλος (II) +αὐτός +Ἰωάννης +ὅς +μαρτυρέω +ὁ +λόγος +ὁ +θεός +καί +ὁ +μαρτυρία +Ἰησοῦς +Χριστός +ὅσος +ὁράω +μακάριος +ὁ +ἀναγινώσκω +καί +ὁ +ἀκούω +ὁ +λόγος +ὁ +προφητεία +καί +τηρέω +ὁ +ἐν +αὐτός +γράφω +γάρ +ὁ +καιρός +ἐγγύς +Ἰωάννης +ὁ +ἑπτά +ἐκκλησία +ὁ +ἐν +ὁ +Ἀσία +χάρις +καί +εἰρήνη +σύ +ἀπό +ὁ +εἰμί +καί +ὁ +εἰμί +καί +ὁ +ἔρχομαι +καί +ἀπό +ὁ +ἑπτά +πνεῦμα +ὅς +ἐνώπιον +ὁ +θρόνος +αὐτός +καί +ἀπό +Ἰησοῦς +Χριστός +ὁ +μάρτυς +ὁ +πιστός +ὁ +πρωτότοκος +ὁ +νεκρός +καί +ὁ +ἄρχων +ὁ +βασιλεύς +ὁ +γῆ +ὁ +ἀγαπάω +ἐγώ +καί +λύω +ἐγώ +ἐκ +ὁ +ἁμαρτία +ἐγώ +ἐν +ὁ +αἷμα +αὐτός +καί +ποιέω +ἐγώ +βασιλεία +ἱερεύς +ὁ +θεός +καί +πατήρ +αὐτός +αὐτός +ὁ +δόξα +καί +ὁ +κράτος +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +ὁράω +ἔρχομαι +μετά +ὁ +νεφέλη +καί +ὁράω +αὐτός +πᾶς +ὀφθαλμός +καί +ὅστις +αὐτός +ἐκκεντέω +καί +κόπτω +ἐπί +αὐτός +πᾶς +ὁ +φυλή +ὁ +γῆ +ναί +ἀμήν +ἐγώ +εἰμί +ὁ +ἄλφα +καί +ὁ +Ὦ +λέγω +κύριος +ὁ +θεός +ὁ +εἰμί +καί +ὁ +εἰμί +καί +ὁ +ἔρχομαι +ὁ +παντοκράτωρ +ἐγώ +Ἰωάννης +ὁ +ἀδελφός +σύ +καί +συγκοινωνός +ἐν +ὁ +θλῖψις +καί +βασιλεία +καί +ὑπομονή +ἐν +Ἰησοῦς +γίνομαι +ἐν +ὁ +νῆσος +ὁ +καλέω +Πάτμος +διά +ὁ +λόγος +ὁ +θεός +καί +ὁ +μαρτυρία +Ἰησοῦς +γίνομαι +ἐν +πνεῦμα +ἐν +ὁ +κυριακός +ἡμέρα +καί +ἀκούω +ὀπίσω +ἐγώ +φωνή +μέγας +ὡς +σάλπιγξ +λέγω +ὅς +βλέπω +γράφω +εἰς +βιβλίον +καί +πέμπω +ὁ +ἑπτά +ἐκκλησία +εἰς +Ἔφεσος +καί +εἰς +Σμύρνα +καί +εἰς +Πέργαμος +καί +εἰς +Θυάτειρα +καί +εἰς +Σάρδεις +καί +εἰς +Φιλαδέλφεια +καί +εἰς +Λαοδίκεια +καί +ἐπιστρέφω +βλέπω +ὁ +φωνή +ὅστις +λαλέω +μετά +ἐγώ +καί +ἐπιστρέφω +ὁράω +ἑπτά +λυχνία +χρυσοῦς +καί +ἐν +μέσος +ὁ +λυχνία +ὅμοιος +υἱός +ἄνθρωπος +ἐνδύω +ποδήρης +καί +περιζώννυμι +πρός +ὁ +μαστός +ζώνη +χρυσοῦς +δέ +ὁ +κεφαλή +αὐτός +καί +ὁ +θρίξ +λευκός +ὡς +ἔριον +λευκός +ὡς +χιών +καί +ὁ +ὀφθαλμός +αὐτός +ὡς +φλόξ +πῦρ +καί +ὁ +πούς +αὐτός +ὅμοιος +χαλκολίβανον +ὡς +ἐν +κάμινος +πυρόω +καί +ὁ +φωνή +αὐτός +ὡς +φωνή +ὕδωρ +πολύς +καί +ἔχω +ἐν +ὁ +δεξιός +χείρ +αὐτός +ἀστήρ +ἑπτά +καί +ἐκ +ὁ +στόμα +αὐτός +ῥομφαία +δίστομος +ὀξύς +ἐκπορεύομαι +καί +ὁ +ὄψις +αὐτός +ὡς +ὁ +ἥλιος +φαίνω +ἐν +ὁ +δύναμις +αὐτός +καί +ὅτε +ὁράω +αὐτός +πίπτω +πρός +ὁ +πούς +αὐτός +ὡς +νεκρός +καί +τίθημι +ὁ +δεξιός +αὐτός +ἐπί +ἐγώ +λέγω +μή +φοβέω +ἐγώ +εἰμί +ὁ +πρῶτος +καί +ὁ +ἔσχατος +καί +ὁ +ζάω +καί +γίνομαι +νεκρός +καί +ὁράω +ζάω +εἰμί +εἰς +ὁ +αἰών +ὁ +αἰών +καί +ἔχω +ὁ +κλείς +ὁ +θάνατος +καί +ὁ +ᾅδης +οὖν +γράφω +ὅς +ὁράω +καί +ὅς +εἰμί +καί +ὅς +μέλλω +γίνομαι +μετά +οὗτος +ὁ +μυστήριον +ὁ +ἑπτά +ἀστήρ +ὅς +ὁράω +ἐπί +ὁ +δεξιός +ἐγώ +καί +ὁ +ἑπτά +λυχνία +ὁ +χρυσοῦς +ὁ +ἑπτά +ἀστήρ +ἄγγελος +ὁ +ἑπτά +ἐκκλησία +εἰμί +καί +ὁ +λυχνία +ὁ +ἑπτά +ἑπτά +ἐκκλησία +εἰμί +ὁ +ἄγγελος +ὁ +ἐν +Ἔφεσος +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +κρατέω +ὁ +ἑπτά +ἀστήρ +ἐν +ὁ +δεξιός +αὐτός +ὁ +περιπατέω +ἐν +μέσος +ὁ +ἑπτά +λυχνία +ὁ +χρυσοῦς +οἶδα +ὁ +ἔργον +σύ +καί +ὁ +κόπος +καί +ὁ +ὑπομονή +σύ +καί +ὅτι +οὐ +δύναμαι +βαστάζω +κακός +καί +πειράζω +ὁ +λέγω +ἑαυτοῦ +ἀπόστολος +καί +οὐ +εἰμί +καί +εὑρίσκω +αὐτός +ψευδής +καί +ὑπομονή +ἔχω +καί +βαστάζω +διά +ὁ +ὄνομα +ἐγώ +καί +οὐ +κοπιάω +ἀλλά +ἔχω +κατά +σύ +ὅτι +ὁ +ἀγάπη +σύ +ὁ +πρῶτος +ἀφίημι +οὖν +μνημονεύω +πόθεν +πίπτω +καί +μετανοέω +καί +ὁ +πρῶτος +ἔργον +ποιέω +δέ +εἰ +μή +ἔρχομαι +σύ +καί +κινέω +ὁ +λυχνία +σύ +ἐκ +ὁ +τόπος +αὐτός +ἐάν +μή +μετανοέω +ἀλλά +οὗτος +ἔχω +ὅτι +μισέω +ὁ +ἔργον +ὁ +Νικολαΐτης +ὅς +κἀγώ +μισέω +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +ὁ +νικάω +δίδωμι +αὐτός +ἐσθίω +ἐκ +ὁ +ξύλον +ὁ +ζωή +ὅς +εἰμί +ἐν +ὁ +παράδεισος +ὁ +θεός +καί +ὁ +ἄγγελος +ὁ +ἐν +Σμύρνα +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +πρῶτος +καί +ὁ +ἔσχατος +ὅς +γίνομαι +νεκρός +καί +ζάω +οἶδα +σύ +ὁ +θλῖψις +καί +ὁ +πτωχεία +ἀλλά +πλούσιος +εἰμί +καί +ὁ +βλασφημία +ἐκ +ὁ +λέγω +Ἰουδαῖος +εἰμί +ἑαυτοῦ +καί +οὐ +εἰμί +ἀλλά +συναγωγή +ὁ +Σατανᾶς +μή +φοβέω +ὅς +πάσχω +μέλλω +ὁράω +μέλλω +ὁ +διάβολος +βάλλω +ἐκ +σύ +εἰς +φυλακή +ἵνα +πειράζω +καί +ἔχω +θλῖψις +ἡμέρα +δέκα +γίνομαι +πιστός +ἄχρι +θάνατος +καί +δίδωμι +σύ +ὁ +στέφανος +ὁ +ζωή +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +ὁ +νικάω +οὐ +μή +ἀδικέω +ἐκ +ὁ +θάνατος +ὁ +δεύτερος +καί +ὁ +ἄγγελος +ὁ +ἐν +Πέργαμος +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +ἔχω +ὁ +ῥομφαία +ὁ +δίστομος +ὁ +ὀξύς +οἶδα +ποῦ +κατοικέω +ὅπου +ὁ +θρόνος +ὁ +Σατανᾶς +καί +κρατέω +ὁ +ὄνομα +ἐγώ +καί +οὐ +ἀρνέομαι +ὁ +πίστις +ἐγώ +καί +ἐν +ὁ +ἡμέρα +Ἀντιπᾶς +ὁ +μάρτυς +ἐγώ +ὁ +πιστός +ἐγώ +ὅς +ἀποκτείνω +παρά +σύ +ὅπου +ὁ +Σατανᾶς +κατοικέω +ἀλλά +ἔχω +κατά +σύ +ὀλίγος +ὅτι +ἔχω +ἐκεῖ +κρατέω +ὁ +διδαχή +Βαλαάμ +ὅς +διδάσκω +ὁ +Βαλάκ +βάλλω +σκάνδαλον +ἐνώπιον +ὁ +υἱός +Ἰσραήλ +ἐσθίω +εἰδωλόθυτος +καί +πορνεύω +οὕτω +ἔχω +καί +σύ +κρατέω +ὁ +διδαχή +ὁ +Νικολαΐτης +ὁμοίως +οὖν +μετανοέω +δέ +εἰ +μή +ἔρχομαι +σύ +ταχύς +καί +πολεμέω +μετά +αὐτός +ἐν +ὁ +ῥομφαία +ὁ +στόμα +ἐγώ +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +ὁ +νικάω +δίδωμι +αὐτός +ὁ +μάννα +ὁ +κρύπτω +καί +δίδωμι +αὐτός +ψῆφος +λευκός +καί +ἐπί +ὁ +ψῆφος +γράφω +ὄνομα +καινός +ὅς +οὐδείς +οἶδα +εἰ +μή +ὁ +λαμβάνω +καί +ὁ +ἄγγελος +ὁ +ἐν +Θυάτειρα +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +υἱός +ὁ +θεός +ὁ +ἔχω +ὁ +ὀφθαλμός +αὐτός +ὡς +φλόξ +πῦρ +καί +ὁ +πούς +αὐτός +ὅμοιος +χαλκολίβανον +οἶδα +σύ +ὁ +ἔργον +καί +ὁ +ἀγάπη +καί +ὁ +πίστις +καί +ὁ +διακονία +καί +ὁ +ὑπομονή +σύ +καί +ὁ +ἔργον +σύ +ὁ +ἔσχατος +πολύς +ὁ +πρῶτος +ἀλλά +ἔχω +κατά +σύ +ὅτι +ἀφίημι +ὁ +γυνή +Ἰεζάβελ +ὁ +λέγω +ἑαυτοῦ +προφῆτις +καί +διδάσκω +καί +πλανάω +ὁ +ἐμός +δοῦλος (II) +πορνεύω +καί +ἐσθίω +εἰδωλόθυτος +καί +δίδωμι +αὐτός +χρόνος +ἵνα +μετανοέω +καί +οὐ +θέλω +μετανοέω +ἐκ +ὁ +πορνεία +αὐτός +ὁράω +βάλλω +αὐτός +εἰς +κλίνη +καί +ὁ +μοιχεύω +μετά +αὐτός +εἰς +θλῖψις +μέγας +ἐάν +μή +μετανοέω +ἐκ +ὁ +ἔργον +αὐτός +καί +ὁ +τέκνον +αὐτός +ἀποκτείνω +ἐν +θάνατος +καί +γινώσκω +πᾶς +ὁ +ἐκκλησία +ὅτι +ἐγώ +εἰμί +ὁ +ἐραυνάω +νεφρός +καί +καρδία +καί +δίδωμι +σύ +ἕκαστος +κατά +ὁ +ἔργον +σύ +δέ +λέγω +σύ +ὁ +λοιπός +ὁ +ἐν +Θυάτειρα +ὅσος +οὐ +ἔχω +ὁ +διδαχή +οὗτος +ὅστις +οὐ +γινώσκω +ὁ +βαθύς +ὁ +Σατανᾶς +ὡς +λέγω +οὐ +βάλλω +ἐπί +σύ +ἄλλος +βάρος +πλήν +ὅς +ἔχω +κρατέω +ἄχρι +ἄν +ὅς +ἥκω +καί +ὁ +νικάω +καί +ὁ +τηρέω +ἄχρι +τέλος +ὁ +ἔργον +ἐγώ +δίδωμι +αὐτός +ἐξουσία +ἐπί +ὁ +ἔθνος +καί +ποιμαίνω +αὐτός +ἐν +ῥάβδος +σιδηροῦς +ὡς +ὁ +σκεῦος +ὁ +κεραμικός +συντρίβω +ὡς +κἀγώ +λαμβάνω +παρά +ὁ +πατήρ +ἐγώ +καί +δίδωμι +αὐτός +ὁ +ἀστήρ +ὁ +πρωϊνός +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +καί +ὁ +ἄγγελος +ὁ +ἐν +Σάρδεις +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +ἔχω +ὁ +ἑπτά +πνεῦμα +ὁ +θεός +καί +ὁ +ἑπτά +ἀστήρ +οἶδα +σύ +ὁ +ἔργον +ὅτι +ὄνομα +ἔχω +ὅτι +ζάω +καί +νεκρός +εἰμί +γίνομαι +γρηγορέω +καί +στηρίζω +ὁ +λοιπός +ὅς +μέλλω +ἀποθνῄσκω +γάρ +οὐ +εὑρίσκω +σύ +ἔργον +πληρόω +ἐνώπιον +ὁ +θεός +ἐγώ +οὖν +μνημονεύω +πῶς +λαμβάνω +καί +ἀκούω +καί +τηρέω +καί +μετανοέω +οὖν +ἐάν +μή +γρηγορέω +ἥκω +ὡς +κλέπτης +καί +οὐ +μή +γινώσκω +ποῖος +ὥρα +ἥκω +ἐπί +σύ +ἀλλά +ἔχω +ὀλίγος +ὄνομα +ἐν +Σάρδεις +ὅς +οὐ +μολύνω +ὁ +ἱμάτιον +αὐτός +καί +περιπατέω +μετά +ἐγώ +ἐν +λευκός +ὅτι +ἄξιος +εἰμί +ὁ +νικάω +οὕτω +περιβάλλω +ἐν +ἱμάτιον +λευκός +καί +οὐ +μή +ἐξαλείφω +ὁ +ὄνομα +αὐτός +ἐκ +ὁ +βίβλος +ὁ +ζωή +καί +ὁμολογέω +ὁ +ὄνομα +αὐτός +ἐνώπιον +ὁ +πατήρ +ἐγώ +καί +ἐνώπιον +ὁ +ἄγγελος +αὐτός +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +καί +ὁ +ἄγγελος +ὁ +ἐν +Φιλαδέλφεια +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +ἅγιος +ὁ +ἀληθινός +ὁ +ἔχω +ὁ +κλείς +Δαυίδ +ὁ +ἀνοίγω +καί +οὐδείς +κλείω +καί +κλείω +καί +οὐδείς +ἀνοίγω +οἶδα +σύ +ὁ +ἔργον +ὁράω +δίδωμι +ἐνώπιον +σύ +θύρα +ἀνοίγω +ὅς +αὐτός +κλείω +οὐδείς +δύναμαι +ὅτι +μικρός +δύναμις +ἔχω +καί +τηρέω +ἐγώ +ὁ +λόγος +καί +οὐ +ἀρνέομαι +ὁ +ὄνομα +ἐγώ +ὁράω +δίδωμι +ἐκ +ὁ +συναγωγή +ὁ +Σατανᾶς +ὁ +λέγω +ἑαυτοῦ +Ἰουδαῖος +εἰμί +καί +οὐ +εἰμί +ἀλλά +ψεύδομαι +ὁράω +ποιέω +αὐτός +ἵνα +ἥκω +καί +προσκυνέω +ἐνώπιον +ὁ +πούς +σύ +καί +γινώσκω +ὅτι +ἐγώ +ἀγαπάω +σύ +ὅτι +τηρέω +ὁ +λόγος +ὁ +ὑπομονή +ἐγώ +κἀγώ +σύ +τηρέω +ἐκ +ὁ +ὥρα +ὁ +πειρασμός +ὁ +μέλλω +ἔρχομαι +ἐπί +ὁ +οἰκουμένη +ὅλος +πειράζω +ὁ +κατοικέω +ἐπί +ὁ +γῆ +ἔρχομαι +ταχύς +κρατέω +ὅς +ἔχω +ἵνα +μηδείς +λαμβάνω +ὁ +στέφανος +σύ +ὁ +νικάω +ποιέω +αὐτός +στῦλος +ἐν +ὁ +ναός +ὁ +θεός +ἐγώ +καί +ἔξω +οὐ +μή +ἐξέρχομαι +ἔτι +καί +γράφω +ἐπί +αὐτός +ὁ +ὄνομα +ὁ +θεός +ἐγώ +καί +ὁ +ὄνομα +ὁ +πόλις +ὁ +θεός +ἐγώ +ὁ +καινός +Ἱεροσόλυμα +ὁ +καταβαίνω +ἐκ +ὁ +οὐρανός +ἀπό +ὁ +θεός +ἐγώ +καί +ὁ +ὄνομα +ἐγώ +ὁ +καινός +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +καί +ὁ +ἄγγελος +ὁ +ἐν +Λαοδίκεια +ἐκκλησία +γράφω +ὅδε +λέγω +ὁ +ἀμήν +ὁ +μάρτυς +ὁ +πιστός +καί +ἀληθινός +ὁ +ἀρχή +ὁ +κτίσις +ὁ +θεός +οἶδα +σύ +ὁ +ἔργον +ὅτι +εἰμί +οὔτε +ψυχρός +οὔτε +ζεστός +ὄφελον +εἰμί +ψυχρός +ἤ +ζεστός +οὕτω +ὅτι +χλιαρός +εἰμί +καί +οὔτε +ζεστός +οὔτε +ψυχρός +μέλλω +σύ +ἐμέω +ἐκ +ὁ +στόμα +ἐγώ +ὅτι +λέγω +ὅτι +πλούσιος +εἰμί +καί +πλουτέω +καί +οὐδείς +χρεία +ἔχω +καί +οὐ +οἶδα +ὅτι +σύ +εἰμί +ὁ +ταλαίπωρος +καί +ἐλεεινός +καί +πτωχός +καί +τυφλός +καί +γυμνός +συμβουλεύω +σύ +ἀγοράζω +παρά +ἐγώ +χρυσίον +πυρόω +ἐκ +πῦρ +ἵνα +πλουτέω +καί +ἱμάτιον +λευκός +ἵνα +περιβάλλω +καί +μή +φανερόω +ὁ +αἰσχύνη +ὁ +γυμνότης +σύ +καί +κολλούριον +ἐγχρίω +ὁ +ὀφθαλμός +σύ +ἵνα +βλέπω +ἐγώ +ἐάν +ὅσος +φιλέω +ἐλέγχω +καί +παιδεύω +οὖν +ζηλεύω +καί +μετανοέω +ὁράω +ἵστημι +ἐπί +ὁ +θύρα +καί +κρούω +ἐάν +τὶς +ἀκούω +ὁ +φωνή +ἐγώ +καί +ἀνοίγω +ὁ +θύρα +εἰσέρχομαι +πρός +αὐτός +καί +δειπνέω +μετά +αὐτός +καί +αὐτός +μετά +ἐγώ +ὁ +νικάω +δίδωμι +αὐτός +καθίζω +μετά +ἐγώ +ἐν +ὁ +θρόνος +ἐγώ +ὡς +κἀγώ +νικάω +καί +καθίζω +μετά +ὁ +πατήρ +ἐγώ +ἐν +ὁ +θρόνος +αὐτός +ὁ +ἔχω +οὖς +ἀκούω +τίς +ὁ +πνεῦμα +λέγω +ὁ +ἐκκλησία +μετά +οὗτος +ὁράω +καί +ὁράω +θύρα +ἀνοίγω +ἐν +ὁ +οὐρανός +καί +ὁ +φωνή +ὁ +πρῶτος +ὅς +ἀκούω +ὡς +σάλπιγξ +λαλέω +μετά +ἐγώ +λέγω +ἀναβαίνω +ὧδε +καί +δείκνυμι +σύ +ὅς +γίνομαι +μετά +οὗτος +δεῖ +εὐθέως +γίνομαι +ἐν +πνεῦμα +καί +ὁράω +θρόνος +κεῖμαι +ἐν +ὁ +οὐρανός +καί +ἐπί +ὁ +θρόνος +κάθημαι +καί +ὁ +κάθημαι +ὅμοιος +ὅρασις +λίθος +ἴασπις +καί +σάρδιον +καί +ἶρις +κυκλόθεν +ὁ +θρόνος +ὅμοιος +ὅρασις +σμαράγδινος +καί +κυκλόθεν +ὁ +θρόνος +θρόνος +εἴκοσι +τέσσαρες +καί +ἐπί +ὁ +θρόνος +εἴκοσι +τέσσαρες +πρεσβύτερος +κάθημαι +περιβάλλω +ἐν +ἱμάτιον +λευκός +καί +ἐπί +ὁ +κεφαλή +αὐτός +στέφανος +χρυσοῦς +καί +ἐκ +ὁ +θρόνος +ἐκπορεύομαι +ἀστραπή +καί +φωνή +καί +βροντή +καί +ἑπτά +λαμπάς +πῦρ +καίω +ἐνώπιον +ὁ +θρόνος +ὅς +εἰμί +ὁ +ἑπτά +πνεῦμα +ὁ +θεός +καί +ἐνώπιον +ὁ +θρόνος +ὡς +θάλασσα +ὑάλινος +ὅμοιος +κρύσταλλος +καί +ἐν +μέσος +ὁ +θρόνος +καί +κύκλῳ +ὁ +θρόνος +τέσσαρες +ζῷον +γέμω +ὀφθαλμός +ἔμπροσθεν +καί +ὄπισθεν +καί +ὁ +ζῷον +ὁ +πρῶτος +ὅμοιος +λέων +καί +ὁ +δεύτερος +ζῷον +ὅμοιος +μόσχος +καί +ὁ +τρίτος +ζῷον +ἔχω +ὁ +πρόσωπον +ὡς +ἄνθρωπος +καί +ὁ +τέταρτος +ζῷον +ὅμοιος +ἀετός +πέτομαι +καί +ὁ +τέσσαρες +ζῷον +εἷς +κατά +εἷς +αὐτός +ἔχω +ἀνά +πτέρυξ +ἕξ +κυκλόθεν +καί +ἔσωθεν +γέμω +ὀφθαλμός +καί +ἀνάπαυσις +οὐ +ἔχω +ἡμέρα +καί +νύξ +λέγω +ἅγιος +ἅγιος +ἅγιος +κύριος +ὁ +θεός +ὁ +παντοκράτωρ +ὁ +εἰμί +καί +ὁ +εἰμί +καί +ὁ +ἔρχομαι +καί +ὅταν +δίδωμι +ὁ +ζῷον +δόξα +καί +τιμή +καί +εὐχαριστία +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +ὁ +ζάω +εἰς +ὁ +αἰών +ὁ +αἰών +πίπτω +ὁ +εἴκοσι +τέσσαρες +πρεσβύτερος +ἐνώπιον +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +καί +προσκυνέω +ὁ +ζάω +εἰς +ὁ +αἰών +ὁ +αἰών +καί +βάλλω +ὁ +στέφανος +αὐτός +ἐνώπιον +ὁ +θρόνος +λέγω +ὁ +κύριος +καί +ὁ +θεός +ἐγώ +ἄξιος +εἰμί +λαμβάνω +ὁ +δόξα +καί +ὁ +τιμή +καί +ὁ +δύναμις +ὅτι +σύ +κτίζω +ὁ +πᾶς +καί +διά +ὁ +θέλημα +σύ +εἰμί +καί +κτίζω +καί +ὁράω +ἐπί +ὁ +δεξιός +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +βιβλίον +γράφω +ἔσωθεν +καί +ὄπισθεν +κατασφραγίζω +σφραγίς +ἑπτά +καί +ὁράω +ἄγγελος +ἰσχυρός +κηρύσσω +ἐν +φωνή +μέγας +τίς +ἄξιος +ἀνοίγω +ὁ +βιβλίον +καί +λύω +ὁ +σφραγίς +αὐτός +καί +δύναμαι +οὐδείς +ἐν +ὁ +οὐρανός +οὐδέ +ἐπί +ὁ +γῆ +οὐδέ +ὑποκάτω +ὁ +γῆ +ἀνοίγω +ὁ +βιβλίον +οὔτε +βλέπω +αὐτός +καί +κλαίω +πολύς +ὅτι +οὐδείς +ἄξιος +εὑρίσκω +ἀνοίγω +ὁ +βιβλίον +οὔτε +βλέπω +αὐτός +καί +εἷς +ἐκ +ὁ +πρεσβύτερος +λέγω +ἐγώ +μή +κλαίω +ὁράω +νικάω +ὁ +λέων +ὁ +ἐκ +ὁ +φυλή +Ἰούδας +ὁ +ῥίζα +Δαυίδ +ἀνοίγω +ὁ +βιβλίον +καί +ὁ +ἑπτά +σφραγίς +αὐτός +καί +ὁράω +ἐν +μέσος +ὁ +θρόνος +καί +ὁ +τέσσαρες +ζῷον +καί +ἐν +μέσος +ὁ +πρεσβύτερος +ἀρνίον +ἵστημι +ὡς +σφάζω +ἔχω +κέρας +ἑπτά +καί +ὀφθαλμός +ἑπτά +ὅς +εἰμί +ὁ +ἑπτά +πνεῦμα +ὁ +θεός +ἀποστέλλω +εἰς +πᾶς +ὁ +γῆ +καί +ἔρχομαι +καί +λαμβάνω +ἐκ +ὁ +δεξιός +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +καί +ὅτε +λαμβάνω +ὁ +βιβλίον +ὁ +τέσσαρες +ζῷον +καί +ὁ +εἴκοσι +τέσσαρες +πρεσβύτερος +πίπτω +ἐνώπιον +ὁ +ἀρνίον +ἔχω +ἕκαστος +κιθάρα +καί +φιάλη +χρυσοῦς +γέμω +θυμίαμα +ὅς +εἰμί +ὁ +προσευχή +ὁ +ἅγιος +καί +ᾄδω +ᾠδή +καινός +λέγω +ἄξιος +εἰμί +λαμβάνω +ὁ +βιβλίον +καί +ἀνοίγω +ὁ +σφραγίς +αὐτός +ὅτι +σφάζω +καί +ἀγοράζω +ὁ +θεός +ἐν +ὁ +αἷμα +σύ +ἐκ +πᾶς +φυλή +καί +γλῶσσα +καί +λαός +καί +ἔθνος +καί +ποιέω +αὐτός +ὁ +θεός +ἐγώ +βασιλεία +καί +ἱερεύς +καί +βασιλεύω +ἐπί +ὁ +γῆ +καί +ὁράω +καί +ἀκούω +φωνή +ἄγγελος +πολύς +κύκλῳ +ὁ +θρόνος +καί +ὁ +ζῷον +καί +ὁ +πρεσβύτερος +καί +εἰμί +ὁ +ἀριθμός +αὐτός +μυριάς +μυριάς +καί +χιλιάς +χιλιάς +λέγω +φωνή +μέγας +ἄξιος +εἰμί +ὁ +ἀρνίον +ὁ +σφάζω +λαμβάνω +ὁ +δύναμις +καί +πλοῦτος +καί +σοφία +καί +ἰσχύς +καί +τιμή +καί +δόξα +καί +εὐλογία +καί +πᾶς +κτίσμα +ὅς +ἐν +ὁ +οὐρανός +καί +ἐπί +ὁ +γῆ +καί +ὑποκάτω +ὁ +γῆ +καί +ἐπί +ὁ +θάλασσα +εἰμί +καί +ὁ +ἐν +αὐτός +πᾶς +λέγω +ἀκούω +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +καί +ὁ +ἀρνίον +ὁ +εὐλογία +καί +ὁ +τιμή +καί +ὁ +δόξα +καί +ὁ +κράτος +εἰς +ὁ +αἰών +ὁ +αἰών +καί +ὁ +τέσσαρες +ζῷον +λέγω +ἀμήν +καί +ὁ +πρεσβύτερος +πίπτω +καί +προσκυνέω +καί +ὁράω +ὅτε +ἀνοίγω +ὁ +ἀρνίον +εἷς +ἐκ +ὁ +ἑπτά +σφραγίς +καί +ἀκούω +εἷς +ἐκ +ὁ +τέσσαρες +ζῷον +λέγω +ὡς +φωνή +βροντή +ἔρχομαι +καί +ὁράω +καί +ὁράω +ἵππος +λευκός +καί +ὁ +κάθημαι +ἐπί +αὐτός +ἔχω +τόξον +καί +δίδωμι +αὐτός +στέφανος +καί +ἐξέρχομαι +νικάω +καί +ἵνα +νικάω +καί +ὅτε +ἀνοίγω +ὁ +σφραγίς +ὁ +δεύτερος +ἀκούω +ὁ +δεύτερος +ζῷον +λέγω +ἔρχομαι +καί +ἐξέρχομαι +ἄλλος +ἵππος +πυρρός +καί +ὁ +κάθημαι +ἐπί +αὐτός +δίδωμι +αὐτός +λαμβάνω +ὁ +εἰρήνη +ἐκ +ὁ +γῆ +καί +ἵνα +ἀλλήλων +σφάζω +καί +δίδωμι +αὐτός +μάχαιρα +μέγας +καί +ὅτε +ἀνοίγω +ὁ +σφραγίς +ὁ +τρίτος +ἀκούω +ὁ +τρίτος +ζῷον +λέγω +ἔρχομαι +καί +ὁράω +καί +ὁράω +ἵππος +μέλας +καί +ὁ +κάθημαι +ἐπί +αὐτός +ἔχω +ζυγός +ἐν +ὁ +χείρ +αὐτός +καί +ἀκούω +ὡς +φωνή +ἐν +μέσος +ὁ +τέσσαρες +ζῷον +λέγω +χοῖνιξ +σῖτος +δηνάριον +καί +τρεῖς +χοῖνιξ +κριθή +δηνάριον +καί +ὁ +ἔλαιον +καί +ὁ +οἶνος +μή +ἀδικέω +καί +ὅτε +ἀνοίγω +ὁ +σφραγίς +ὁ +τέταρτος +ἀκούω +φωνή +ὁ +τέταρτος +ζῷον +λέγω +ἔρχομαι +καί +ὁράω +καί +ὁράω +ἵππος +χλωρός +καί +ὁ +κάθημαι +ἐπάνω +αὐτός +ὄνομα +αὐτός +ὁ +θάνατος +καί +ὁ +ᾅδης +ἀκολουθέω +μετά +αὐτός +καί +δίδωμι +αὐτός +ἐξουσία +ἐπί +ὁ +τέταρτος +ὁ +γῆ +ἀποκτείνω +ἐν +ῥομφαία +καί +ἐν +λιμός +καί +ἐν +θάνατος +καί +ὑπό +ὁ +θηρίον +ὁ +γῆ +καί +ὅτε +ἀνοίγω +ὁ +πέμπτος +σφραγίς +ὁράω +ὑποκάτω +ὁ +θυσιαστήριον +ὁ +ψυχή +ὁ +σφάζω +διά +ὁ +λόγος +ὁ +θεός +καί +διά +ὁ +μαρτυρία +ὅς +ἔχω +καί +κράζω +φωνή +μέγας +λέγω +ὁ +δεσπότης +ὁ +ἅγιος +καί +ἀληθινός +ἕως +πότε +οὐ +κρίνω +καί +ἐκδικέω +ὁ +αἷμα +ἐγώ +ἐκ +ὁ +κατοικέω +ἐπί +ὁ +γῆ +καί +δίδωμι +αὐτός +ἕκαστος +στολή +λευκός +καί +εἶπον +αὐτός +ἵνα +ἀναπαύω +ἔτι +χρόνος +μικρός +ἕως +πληρόω +καί +ὁ +σύνδουλος +αὐτός +καί +ὁ +ἀδελφός +αὐτός +ὁ +μέλλω +ἀποκτείνω +ὡς +καί +αὐτός +καί +ὁράω +ὅτε +ἀνοίγω +ὁ +σφραγίς +ὁ +ἕκτος +καί +σεισμός +μέγας +γίνομαι +καί +ὁ +ἥλιος +γίνομαι +μέλας +ὡς +σάκκος +τρίχινος +καί +ὁ +σελήνη +ὅλος +γίνομαι +ὡς +αἷμα +καί +ὁ +ἀστήρ +ὁ +οὐρανός +πίπτω +εἰς +ὁ +γῆ +ὡς +συκῆ +βάλλω +ὁ +ὄλυνθος +αὐτός +ὑπό +ἄνεμος +μέγας +σείω +καί +ὁ +οὐρανός +ἀποχωρίζω +ὡς +βιβλίον +ἑλίσσω +καί +πᾶς +ὄρος +καί +νῆσος +ἐκ +ὁ +τόπος +αὐτός +κινέω +καί +ὁ +βασιλεύς +ὁ +γῆ +καί +ὁ +μεγιστάν +καί +ὁ +χιλίαρχος +καί +ὁ +πλούσιος +καί +ὁ +ἰσχυρός +καί +πᾶς +δοῦλος (II) +καί +ἐλεύθερος +κρύπτω +ἑαυτοῦ +εἰς +ὁ +σπήλαιον +καί +εἰς +ὁ +πέτρα +ὁ +ὄρος +καί +λέγω +ὁ +ὄρος +καί +ὁ +πέτρα +πίπτω +ἐπί +ἐγώ +καί +κρύπτω +ἐγώ +ἀπό +πρόσωπον +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +καί +ἀπό +ὁ +ὀργή +ὁ +ἀρνίον +ὅτι +ἔρχομαι +ὁ +ἡμέρα +ὁ +μέγας +ὁ +ὀργή +αὐτός +καί +τίς +δύναμαι +ἵστημι +μετά +οὗτος +ὁράω +τέσσαρες +ἄγγελος +ἵστημι +ἐπί +ὁ +τέσσαρες +γωνία +ὁ +γῆ +κρατέω +ὁ +τέσσαρες +ἄνεμος +ὁ +γῆ +ἵνα +μή +πνέω +ἄνεμος +ἐπί +ὁ +γῆ +μήτε +ἐπί +ὁ +θάλασσα +μήτε +ἐπί +πᾶς +δένδρον +καί +ὁράω +ἄλλος +ἄγγελος +ἀναβαίνω +ἀπό +ἀνατολή +ἥλιος +ἔχω +σφραγίς +θεός +ζάω +καί +κράζω +φωνή +μέγας +ὁ +τέσσαρες +ἄγγελος +ὅς +αὐτός +δίδωμι +ἀδικέω +ὁ +γῆ +καί +ὁ +θάλασσα +λέγω +μή +ἀδικέω +ὁ +γῆ +μήτε +ὁ +θάλασσα +μήτε +ὁ +δένδρον +ἄχρι +σφραγίζω +ὁ +δοῦλος (II) +ὁ +θεός +ἐγώ +ἐπί +ὁ +μέτωπον +αὐτός +καί +ἀκούω +ὁ +ἀριθμός +ὁ +σφραγίζω +ἑκατόν +τεσσεράκοντα +τέσσαρες +χιλιάς +σφραγίζω +ἐκ +πᾶς +φυλή +υἱός +Ἰσραήλ +ἐκ +φυλή +Ἰούδας +δώδεκα +χιλιάς +σφραγίζω +ἐκ +φυλή +Ῥουβήν +δώδεκα +χιλιάς +ἐκ +φυλή +Γάδ +δώδεκα +χιλιάς +ἐκ +φυλή +Ἀσήρ +δώδεκα +χιλιάς +ἐκ +φυλή +Νεφθαλίμ +δώδεκα +χιλιάς +ἐκ +φυλή +Μανασσῆ +δώδεκα +χιλιάς +ἐκ +φυλή +Συμεών +δώδεκα +χιλιάς +ἐκ +φυλή +Λευί +δώδεκα +χιλιάς +ἐκ +φυλή +Ἰσσαχάρ +δώδεκα +χιλιάς +ἐκ +φυλή +Ζαβουλών +δώδεκα +χιλιάς +ἐκ +φυλή +Ἰωσήφ +δώδεκα +χιλιάς +ἐκ +φυλή +Βενιαμίν +δώδεκα +χιλιάς +σφραγίζω +μετά +οὗτος +ὁράω +καί +ὁράω +ὄχλος +πολύς +ὅς +αὐτός +ἀριθμέω +οὐδείς +δύναμαι +ἐκ +πᾶς +ἔθνος +καί +φυλή +καί +λαός +καί +γλῶσσα +ἵστημι +ἐνώπιον +ὁ +θρόνος +καί +ἐνώπιον +ὁ +ἀρνίον +περιβάλλω +στολή +λευκός +καί +φοῖνιξ +ἐν +ὁ +χείρ +αὐτός +καί +κράζω +φωνή +μέγας +λέγω +ὁ +σωτηρία +ὁ +θεός +ἐγώ +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +καί +ὁ +ἀρνίον +καί +πᾶς +ὁ +ἄγγελος +ἵστημι +κύκλῳ +ὁ +θρόνος +καί +ὁ +πρεσβύτερος +καί +ὁ +τέσσαρες +ζῷον +καί +πίπτω +ἐνώπιον +ὁ +θρόνος +ἐπί +ὁ +πρόσωπον +αὐτός +καί +προσκυνέω +ὁ +θεός +λέγω +ἀμήν +ὁ +εὐλογία +καί +ὁ +δόξα +καί +ὁ +σοφία +καί +ὁ +εὐχαριστία +καί +ὁ +τιμή +καί +ὁ +δύναμις +καί +ὁ +ἰσχύς +ὁ +θεός +ἐγώ +εἰς +ὁ +αἰών +ὁ +αἰών +ἀμήν +καί +ἀποκρίνομαι +εἷς +ἐκ +ὁ +πρεσβύτερος +λέγω +ἐγώ +οὗτος +ὁ +περιβάλλω +ὁ +στολή +ὁ +λευκός +τίς +εἰμί +καί +πόθεν +ἔρχομαι +καί +εἶπον +αὐτός +κύριος +ἐγώ +σύ +οἶδα +καί +λέγω +ἐγώ +οὗτος +εἰμί +ὁ +ἔρχομαι +ἐκ +ὁ +θλῖψις +ὁ +μέγας +καί +πλύνω +ὁ +στολή +αὐτός +καί +λευκαίνω +αὐτός +ἐν +ὁ +αἷμα +ὁ +ἀρνίον +διά +οὗτος +εἰμί +ἐνώπιον +ὁ +θρόνος +ὁ +θεός +καί +λατρεύω +αὐτός +ἡμέρα +καί +νύξ +ἐν +ὁ +ναός +αὐτός +καί +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +σκηνόω +ἐπί +αὐτός +οὐ +πεινάω +ἔτι +οὐδέ +διψάω +ἔτι +οὐδέ +μή +πίπτω +ἐπί +αὐτός +ὁ +ἥλιος +οὐδέ +πᾶς +καῦμα +ὅτι +ὁ +ἀρνίον +ὁ +ἀνά +μέσος +ὁ +θρόνος +ποιμαίνω +αὐτός +καί +ὁδηγέω +αὐτός +ἐπί +ζωή +πηγή +ὕδωρ +καί +ἐξαλείφω +ὁ +θεός +πᾶς +δάκρυον +ἐκ +ὁ +ὀφθαλμός +αὐτός +καί +ὅταν +ἀνοίγω +ὁ +σφραγίς +ὁ +ἕβδομος +γίνομαι +σιγή +ἐν +ὁ +οὐρανός +ὡς +ἡμίωρον +καί +ὁράω +ὁ +ἑπτά +ἄγγελος +ὅς +ἐνώπιον +ὁ +θεός +ἵστημι +καί +δίδωμι +αὐτός +ἑπτά +σάλπιγξ +καί +ἄλλος +ἄγγελος +ἔρχομαι +καί +ἵστημι +ἐπί +ὁ +θυσιαστήριον +ἔχω +λιβανωτός +χρυσοῦς +καί +δίδωμι +αὐτός +θυμίαμα +πολύς +ἵνα +δίδωμι +ὁ +προσευχή +ὁ +ἅγιος +πᾶς +ἐπί +ὁ +θυσιαστήριον +ὁ +χρυσοῦς +ὁ +ἐνώπιον +ὁ +θρόνος +καί +ἀναβαίνω +ὁ +καπνός +ὁ +θυμίαμα +ὁ +προσευχή +ὁ +ἅγιος +ἐκ +χείρ +ὁ +ἄγγελος +ἐνώπιον +ὁ +θεός +καί +λαμβάνω +ὁ +ἄγγελος +ὁ +λιβανωτός +καί +γεμίζω +αὐτός +ἐκ +ὁ +πῦρ +ὁ +θυσιαστήριον +καί +βάλλω +εἰς +ὁ +γῆ +καί +γίνομαι +βροντή +καί +φωνή +καί +ἀστραπή +καί +σεισμός +καί +ὁ +ἑπτά +ἄγγελος +ὁ +ἔχω +ὁ +ἑπτά +σάλπιγξ +ἑτοιμάζω +αὐτός +ἵνα +σαλπίζω +καί +ὁ +πρῶτος +σαλπίζω +καί +γίνομαι +χάλαζα +καί +πῦρ +μίγνυμι +ἐν +αἷμα +καί +βάλλω +εἰς +ὁ +γῆ +καί +ὁ +τρίτος +ὁ +γῆ +κατακαίω +καί +ὁ +τρίτος +ὁ +δένδρον +κατακαίω +καί +πᾶς +χόρτος +χλωρός +κατακαίω +καί +ὁ +δεύτερος +ἄγγελος +σαλπίζω +καί +ὡς +ὄρος +μέγας +πῦρ +καίω +βάλλω +εἰς +ὁ +θάλασσα +καί +γίνομαι +ὁ +τρίτος +ὁ +θάλασσα +αἷμα +καί +ἀποθνῄσκω +ὁ +τρίτος +ὁ +κτίσμα +ὁ +ἐν +ὁ +θάλασσα +ὁ +ἔχω +ψυχή +καί +ὁ +τρίτος +ὁ +πλοῖον +διαφθείρω +καί +ὁ +τρίτος +ἄγγελος +σαλπίζω +καί +πίπτω +ἐκ +ὁ +οὐρανός +ἀστήρ +μέγας +καίω +ὡς +λαμπάς +καί +πίπτω +ἐπί +ὁ +τρίτος +ὁ +ποταμός +καί +ἐπί +ὁ +πηγή +ὁ +ὕδωρ +καί +ὁ +ὄνομα +ὁ +ἀστήρ +λέγω +ὁ +ἄψινθος +καί +γίνομαι +ὁ +τρίτος +ὁ +ὕδωρ +εἰς +ἄψινθος +καί +πολύς +ὁ +ἄνθρωπος +ἀποθνῄσκω +ἐκ +ὁ +ὕδωρ +ὅτι +πικραίνω +καί +ὁ +τέταρτος +ἄγγελος +σαλπίζω +καί +πλήσσω +ὁ +τρίτος +ὁ +ἥλιος +καί +ὁ +τρίτος +ὁ +σελήνη +καί +ὁ +τρίτος +ὁ +ἀστήρ +ἵνα +σκοτίζω +ὁ +τρίτος +αὐτός +καί +ὁ +ἡμέρα +μή +φαίνω +ὁ +τρίτος +αὐτός +καί +ὁ +νύξ +ὁμοίως +καί +ὁράω +καί +ἀκούω +εἷς +ἀετός +πέτομαι +ἐν +μεσουράνημα +λέγω +φωνή +μέγας +οὐαί +οὐαί +οὐαί +ὁ +κατοικέω +ἐπί +ὁ +γῆ +ἐκ +ὁ +λοιπός +φωνή +ὁ +σάλπιγξ +ὁ +τρεῖς +ἄγγελος +ὁ +μέλλω +σαλπίζω +καί +ὁ +πέμπτος +ἄγγελος +σαλπίζω +καί +ὁράω +ἀστήρ +ἐκ +ὁ +οὐρανός +πίπτω +εἰς +ὁ +γῆ +καί +δίδωμι +αὐτός +ὁ +κλείς +ὁ +φρέαρ +ὁ +ἄβυσσος +καί +ἀνοίγω +ὁ +φρέαρ +ὁ +ἄβυσσος +καί +ἀναβαίνω +καπνός +ἐκ +ὁ +φρέαρ +ὡς +καπνός +κάμινος +μέγας +καί +σκοτόω +ὁ +ἥλιος +καί +ὁ +ἀήρ +ἐκ +ὁ +καπνός +ὁ +φρέαρ +καί +ἐκ +ὁ +καπνός +ἐξέρχομαι +ἀκρίς +εἰς +ὁ +γῆ +καί +δίδωμι +αὐτός +ἐξουσία +ὡς +ἔχω +ἐξουσία +ὁ +σκορπίος +ὁ +γῆ +καί +εἶπον +αὐτός +ἵνα +μή +ἀδικέω +ὁ +χόρτος +ὁ +γῆ +οὐδέ +πᾶς +χλωρός +οὐδέ +πᾶς +δένδρον +εἰ +μή +ὁ +ἄνθρωπος +ὅστις +οὐ +ἔχω +ὁ +σφραγίς +ὁ +θεός +ἐπί +ὁ +μέτωπον +καί +δίδωμι +αὐτός +ἵνα +μή +ἀποκτείνω +αὐτός +ἀλλά +ἵνα +βασανίζω +μήν (II) +πέντε +καί +ὁ +βασανισμός +αὐτός +ὡς +βασανισμός +σκορπίος +ὅταν +παίω +ἄνθρωπος +καί +ἐν +ὁ +ἡμέρα +ἐκεῖνος +ζητέω +ὁ +ἄνθρωπος +ὁ +θάνατος +καί +οὐ +μή +εὑρίσκω +αὐτός +καί +ἐπιθυμέω +ἀποθνῄσκω +καί +φεύγω +ὁ +θάνατος +ἀπό +αὐτός +καί +ὁ +ὁμοίωμα +ὁ +ἀκρίς +ὅμοιος +ἵππος +ἑτοιμάζω +εἰς +πόλεμος +καί +ἐπί +ὁ +κεφαλή +αὐτός +ὡς +στέφανος +ὅμοιος +χρυσός +καί +ὁ +πρόσωπον +αὐτός +ὡς +πρόσωπον +ἄνθρωπος +καί +ἔχω +θρίξ +ὡς +θρίξ +γυνή +καί +ὁ +ὀδούς +αὐτός +ὡς +λέων +εἰμί +καί +ἔχω +θώραξ +ὡς +θώραξ +σιδηροῦς +καί +ὁ +φωνή +ὁ +πτέρυξ +αὐτός +ὡς +φωνή +ἅρμα +ἵππος +πολύς +τρέχω +εἰς +πόλεμος +καί +ἔχω +οὐρά +ὅμοιος +σκορπίος +καί +κέντρον +καί +ἐν +ὁ +οὐρά +αὐτός +ὁ +ἐξουσία +αὐτός +ἀδικέω +ὁ +ἄνθρωπος +μήν (II) +πέντε +ἔχω +ἐπί +αὐτός +βασιλεύς +ὁ +ἄγγελος +ὁ +ἄβυσσος +ὄνομα +αὐτός +Ἑβραϊστί +Ἀβαδδών +καί +ἐν +ὁ +Ἑλληνικός +ὄνομα +ἔχω +Ἀπολλύων +ὁ +οὐαί +ὁ +εἷς +ἀπέρχομαι +ὁράω +ἔρχομαι +ἔτι +δύο +οὐαί +μετά +οὗτος +καί +ὁ +ἕκτος +ἄγγελος +σαλπίζω +καί +ἀκούω +φωνή +εἷς +ἐκ +ὁ +τέσσαρες +κέρας +ὁ +θυσιαστήριον +ὁ +χρυσοῦς +ὁ +ἐνώπιον +ὁ +θεός +λέγω +ὁ +ἕκτος +ἄγγελος +ὁ +ἔχω +ὁ +σάλπιγξ +λύω +ὁ +τέσσαρες +ἄγγελος +ὁ +δέω +ἐπί +ὁ +ποταμός +ὁ +μέγας +Εὐφράτης +καί +λύω +ὁ +τέσσαρες +ἄγγελος +ὁ +ἑτοιμάζω +εἰς +ὁ +ὥρα +καί +ἡμέρα +καί +μήν (II) +καί +ἐνιαυτός +ἵνα +ἀποκτείνω +ὁ +τρίτος +ὁ +ἄνθρωπος +καί +ὁ +ἀριθμός +ὁ +στράτευμα +ὁ +ἱππικός +δισμυριάς +μυριάς +ἀκούω +ὁ +ἀριθμός +αὐτός +καί +οὕτω +ὁράω +ὁ +ἵππος +ἐν +ὁ +ὅρασις +καί +ὁ +κάθημαι +ἐπί +αὐτός +ἔχω +θώραξ +πύρινος +καί +ὑακίνθινος +καί +θειώδης +καί +ὁ +κεφαλή +ὁ +ἵππος +ὡς +κεφαλή +λέων +καί +ἐκ +ὁ +στόμα +αὐτός +ἐκπορεύομαι +πῦρ +καί +καπνός +καί +θεῖον +ἀποκτείνω +ὁ +τρίτος +ὁ +ἄνθρωπος +ἀπό +ὁ +τρεῖς +πληγή +οὗτος +ἐκ +ὁ +πῦρ +καί +ὁ +καπνός +καί +ὁ +θεῖον +ὁ +ἐκπορεύομαι +ἐκ +ὁ +στόμα +αὐτός +γάρ +ὁ +ἐξουσία +ὁ +ἵππος +εἰμί +ἐν +ὁ +στόμα +αὐτός +καί +ἐν +ὁ +οὐρά +αὐτός +γάρ +ὁ +οὐρά +αὐτός +ὅμοιος +ὄφις +ἔχω +κεφαλή +καί +ἐν +αὐτός +ἀδικέω +καί +ὁ +λοιπός +ὁ +ἄνθρωπος +ὅς +οὐ +ἀποκτείνω +ἐν +ὁ +πληγή +οὗτος +οὐδέ +μετανοέω +ἐκ +ὁ +ἔργον +ὁ +χείρ +αὐτός +ἵνα +μή +προσκυνέω +ὁ +δαιμόνιον +καί +ὁ +εἴδωλον +ὁ +χρυσοῦς +καί +ὁ +ἀργυροῦς +καί +ὁ +χαλκοῦς +καί +ὁ +λίθινος +καί +ὁ +ξύλινος +ὅς +δύναμαι +οὔτε +βλέπω +οὔτε +ἀκούω +οὔτε +περιπατέω +καί +οὐ +μετανοέω +ἐκ +ὁ +φόνος +αὐτός +οὔτε +ἐκ +ὁ +φαρμακεία +αὐτός +οὔτε +ἐκ +ὁ +πορνεία +αὐτός +οὔτε +ἐκ +ὁ +κλέμμα +αὐτός +καί +ὁράω +ἄλλος +ἄγγελος +ἰσχυρός +καταβαίνω +ἐκ +ὁ +οὐρανός +περιβάλλω +νεφέλη +καί +ὁ +ἶρις +ἐπί +ὁ +κεφαλή +αὐτός +καί +ὁ +πρόσωπον +αὐτός +ὡς +ὁ +ἥλιος +καί +ὁ +πούς +αὐτός +ὡς +στῦλος +πῦρ +καί +ἔχω +ἐν +ὁ +χείρ +αὐτός +βιβλαρίδιον +ἀνοίγω +καί +τίθημι +ὁ +πούς +αὐτός +ὁ +δεξιός +ἐπί +ὁ +θάλασσα +δέ +ὁ +εὐώνυμος +ἐπί +ὁ +γῆ +καί +κράζω +φωνή +μέγας +ὥσπερ +λέων +μυκάομαι +καί +ὅτε +κράζω +λαλέω +ὁ +ἑπτά +βροντή +ὁ +ἑαυτοῦ +φωνή +καί +ὅτε +λαλέω +ὁ +ἑπτά +βροντή +μέλλω +γράφω +καί +ἀκούω +φωνή +ἐκ +ὁ +οὐρανός +λέγω +σφραγίζω +ὅς +λαλέω +ὁ +ἑπτά +βροντή +καί +μή +αὐτός +γράφω +καί +ὁ +ἄγγελος +ὅς +ἵστημι +ἐπί +ὁ +θάλασσα +καί +ἐπί +ὁ +γῆ +ὁράω +αἴρω +ὁ +χείρ +αὐτός +ὁ +δεξιός +εἰς +ὁ +οὐρανός +καί +ὀμνύω +ἐν +ὁ +ζάω +εἰς +ὁ +αἰών +ὁ +αἰών +ὅς +κτίζω +ὁ +οὐρανός +καί +ὁ +ἐν +αὐτός +καί +ὁ +γῆ +καί +ὁ +ἐν +αὐτός +καί +ὁ +θάλασσα +καί +ὁ +ἐν +αὐτός +ὅτι +χρόνος +οὐκέτι +εἰμί +ἀλλά +ἐν +ὁ +ἡμέρα +ὁ +φωνή +ὁ +ἕβδομος +ἄγγελος +ὅταν +μέλλω +σαλπίζω +καί +τελέω +ὁ +μυστήριον +ὁ +θεός +ὡς +εὐαγγελίζω +ὁ +ἑαυτοῦ +δοῦλος (II) +ὁ +προφήτης +καί +ὁ +φωνή +ὅς +ἀκούω +ἐκ +ὁ +οὐρανός +πάλιν +λαλέω +μετά +ἐγώ +καί +λέγω +ὑπάγω +λαμβάνω +ὁ +βιβλίον +ὁ +ἀνοίγω +ἐν +ὁ +χείρ +ὁ +ἄγγελος +ὁ +ἵστημι +ἐπί +ὁ +θάλασσα +καί +ἐπί +ὁ +γῆ +καί +ἀπέρχομαι +πρός +ὁ +ἄγγελος +λέγω +αὐτός +δίδωμι +ἐγώ +ὁ +βιβλαρίδιον +καί +λέγω +ἐγώ +λαμβάνω +καί +κατεσθίω +αὐτός +καί +πικραίνω +σύ +ὁ +κοιλία +ἀλλά +ἐν +ὁ +στόμα +σύ +εἰμί +γλυκύς +ὡς +μέλι +καί +λαμβάνω +ὁ +βιβλαρίδιον +ἐκ +ὁ +χείρ +ὁ +ἄγγελος +καί +κατεσθίω +αὐτός +καί +εἰμί +ἐν +ὁ +στόμα +ἐγώ +ὡς +μέλι +γλυκύς +καί +ὅτε +ἐσθίω +αὐτός +πικραίνω +ὁ +κοιλία +ἐγώ +καί +λέγω +ἐγώ +δεῖ +σύ +πάλιν +προφητεύω +ἐπί +λαός +καί +ἔθνος +καί +γλῶσσα +καί +βασιλεύς +πολύς +καί +δίδωμι +ἐγώ +κάλαμος +ὅμοιος +ῥάβδος +λέγω +ἐγείρω +καί +μετρέω +ὁ +ναός +ὁ +θεός +καί +ὁ +θυσιαστήριον +καί +ὁ +προσκυνέω +ἐν +αὐτός +καί +ὁ +αὐλή +ὁ +ἔξωθεν +ὁ +ναός +ἐκβάλλω +ἔξωθεν +καί +μή +αὐτός +μετρέω +ὅτι +δίδωμι +ὁ +ἔθνος +καί +ὁ +πόλις +ὁ +ἅγιος +πατέω +μήν (II) +τεσσεράκοντα +δύο +καί +δίδωμι +ὁ +δύο +μάρτυς +ἐγώ +καί +προφητεύω +ἡμέρα +χίλιοι +διακόσιοι +ἑξήκοντα +περιβάλλω +σάκκος +οὗτος +εἰμί +ὁ +δύο +ἐλαία +καί +ὁ +δύο +λυχνία +ὁ +ἐνώπιον +ὁ +κύριος +ὁ +γῆ +ἵστημι +καί +εἰ +τὶς +θέλω +αὐτός +ἀδικέω +πῦρ +ἐκπορεύομαι +ἐκ +ὁ +στόμα +αὐτός +καί +κατεσθίω +ὁ +ἐχθρός +αὐτός +καί +εἰ +τὶς +θέλω +αὐτός +ἀδικέω +οὕτω +δεῖ +αὐτός +ἀποκτείνω +οὗτος +ἔχω +ὁ +ἐξουσία +κλείω +ὁ +οὐρανός +ἵνα +μή +ὑετός +βρέχω +ὁ +ἡμέρα +ὁ +προφητεία +αὐτός +καί +ἐξουσία +ἔχω +ἐπί +ὁ +ὕδωρ +στρέφω +αὐτός +εἰς +αἷμα +καί +πατάσσω +ὁ +γῆ +ἐν +πᾶς +πληγή +ὁσάκις +ἐάν +θέλω +καί +ὅταν +τελέω +ὁ +μαρτυρία +αὐτός +ὁ +θηρίον +ὁ +ἀναβαίνω +ἐκ +ὁ +ἄβυσσος +ποιέω +μετά +αὐτός +πόλεμος +καί +νικάω +αὐτός +καί +ἀποκτείνω +αὐτός +καί +ὁ +πτῶμα +αὐτός +ἐπί +ὁ +πλατύς +ὁ +πόλις +ὁ +μέγας +ὅστις +καλέω +πνευματικῶς +Σόδομα +καί +Αἴγυπτος +ὅπου +καί +ὁ +κύριος +αὐτός +σταυρόω +καί +βλέπω +ἐκ +ὁ +λαός +καί +φυλή +καί +γλῶσσα +καί +ἔθνος +ὁ +πτῶμα +αὐτός +ἡμέρα +τρεῖς +καί +ἥμισυς +καί +οὐ +ἀφίημι +ὁ +πτῶμα +αὐτός +τίθημι +εἰς +μνῆμα +καί +ὁ +κατοικέω +ἐπί +ὁ +γῆ +χαίρω +ἐπί +αὐτός +καί +εὐφραίνω +καί +δῶρον +πέμπω +ἀλλήλων +ὅτι +οὗτος +ὁ +δύο +προφήτης +βασανίζω +ὁ +κατοικέω +ἐπί +ὁ +γῆ +καί +μετά +ὁ +τρεῖς +καί +ἥμισυς +ἡμέρα +πνεῦμα +ζωή +ἐκ +ὁ +θεός +εἰσέρχομαι +ἐν +αὐτός +καί +ἵστημι +ἐπί +ὁ +πούς +αὐτός +καί +φόβος +μέγας +ἐπιπίπτω +ἐπί +ὁ +θεωρέω +αὐτός +καί +ἀκούω +φωνή +μέγας +ἐκ +ὁ +οὐρανός +λέγω +αὐτός +ἀναβαίνω +ὧδε +καί +ἀναβαίνω +εἰς +ὁ +οὐρανός +ἐν +ὁ +νεφέλη +καί +θεωρέω +αὐτός +ὁ +ἐχθρός +αὐτός +καί +ἐν +ἐκεῖνος +ὁ +ὥρα +γίνομαι +σεισμός +μέγας +καί +ὁ +δέκατος +ὁ +πόλις +πίπτω +καί +ἀποκτείνω +ἐν +ὁ +σεισμός +ὄνομα +ἄνθρωπος +χιλιάς +ἑπτά +καί +ὁ +λοιπός +ἔμφοβος +γίνομαι +καί +δίδωμι +δόξα +ὁ +θεός +ὁ +οὐρανός +ὁ +οὐαί +ὁ +δεύτερος +ἀπέρχομαι +ὁράω +ὁ +οὐαί +ὁ +τρίτος +ἔρχομαι +ταχύς +καί +ὁ +ἕβδομος +ἄγγελος +σαλπίζω +καί +γίνομαι +φωνή +μέγας +ἐν +ὁ +οὐρανός +λέγω +γίνομαι +ὁ +βασιλεία +ὁ +κόσμος +ὁ +κύριος +ἐγώ +καί +ὁ +Χριστός +αὐτός +καί +βασιλεύω +εἰς +ὁ +αἰών +ὁ +αἰών +καί +ὁ +εἴκοσι +τέσσαρες +πρεσβύτερος +ὁ +ἐνώπιον +ὁ +θεός +κάθημαι +ἐπί +ὁ +θρόνος +αὐτός +πίπτω +ἐπί +ὁ +πρόσωπον +αὐτός +καί +προσκυνέω +ὁ +θεός +λέγω +εὐχαριστέω +σύ +κύριος +ὁ +θεός +ὁ +παντοκράτωρ +ὁ +εἰμί +καί +ὁ +εἰμί +ὅτι +λαμβάνω +ὁ +δύναμις +σύ +ὁ +μέγας +καί +βασιλεύω +καί +ὁ +ἔθνος +ὀργίζω +καί +ἔρχομαι +ὁ +ὀργή +σύ +καί +ὁ +καιρός +ὁ +νεκρός +κρίνω +καί +δίδωμι +ὁ +μισθός +ὁ +δοῦλος (II) +σύ +ὁ +προφήτης +καί +ὁ +ἅγιος +καί +ὁ +φοβέω +ὁ +ὄνομα +σύ +ὁ +μικρός +καί +ὁ +μέγας +καί +διαφθείρω +ὁ +διαφθείρω +ὁ +γῆ +καί +ἀνοίγω +ὁ +ναός +ὁ +θεός +ὁ +ἐν +ὁ +οὐρανός +καί +ὁράω +ὁ +κιβωτός +ὁ +διαθήκη +αὐτός +ἐν +ὁ +ναός +αὐτός +καί +γίνομαι +ἀστραπή +καί +φωνή +καί +βροντή +καί +σεισμός +καί +χάλαζα +μέγας +καί +σημεῖον +μέγας +ὁράω +ἐν +ὁ +οὐρανός +γυνή +περιβάλλω +ὁ +ἥλιος +καί +ὁ +σελήνη +ὑποκάτω +ὁ +πούς +αὐτός +καί +ἐπί +ὁ +κεφαλή +αὐτός +στέφανος +ἀστήρ +δώδεκα +καί +ἐν +γαστήρ +ἔχω +καί +κράζω +ὠδίνω +καί +βασανίζω +τίκτω +καί +ὁράω +ἄλλος +σημεῖον +ἐν +ὁ +οὐρανός +καί +ὁράω +δράκων +πυρρός +μέγας +ἔχω +κεφαλή +ἑπτά +καί +κέρας +δέκα +καί +ἐπί +ὁ +κεφαλή +αὐτός +ἑπτά +διάδημα +καί +ὁ +οὐρά +αὐτός +σύρω +ὁ +τρίτος +ὁ +ἀστήρ +ὁ +οὐρανός +καί +βάλλω +αὐτός +εἰς +ὁ +γῆ +καί +ὁ +δράκων +ἵστημι +ἐνώπιον +ὁ +γυνή +ὁ +μέλλω +τίκτω +ἵνα +ὅταν +τίκτω +ὁ +τέκνον +αὐτός +κατεσθίω +καί +τίκτω +υἱός +ἄρσην +ὅς +μέλλω +ποιμαίνω +πᾶς +ὁ +ἔθνος +ἐν +ῥάβδος +σιδηροῦς +καί +ἁρπάζω +ὁ +τέκνον +αὐτός +πρός +ὁ +θεός +καί +πρός +ὁ +θρόνος +αὐτός +καί +ὁ +γυνή +φεύγω +εἰς +ὁ +ἔρημος +ὅπου +ἔχω +ἐκεῖ +τόπος +ἑτοιμάζω +ἀπό +ὁ +θεός +ἵνα +ἐκεῖ +τρέφω +αὐτός +ἡμέρα +χίλιοι +διακόσιοι +ἑξήκοντα +καί +γίνομαι +πόλεμος +ἐν +ὁ +οὐρανός +ὁ +Μιχαήλ +καί +ὁ +ἄγγελος +αὐτός +ὁ +πολεμέω +μετά +ὁ +δράκων +καί +πολεμέω +ὁ +δράκων +καί +ὁ +ἄγγελος +αὐτός +καί +οὐ +ἰσχύω +οὐδέ +τόπος +αὐτός +εὑρίσκω +ἔτι +ἐν +ὁ +οὐρανός +καί +βάλλω +ὁ +δράκων +ὁ +μέγας +ὁ +ὄφις +ὁ +ἀρχαῖος +ὁ +καλέω +διάβολος +καί +ὁ +Σατανᾶς +ὁ +πλανάω +ὁ +οἰκουμένη +ὅλος +βάλλω +εἰς +ὁ +γῆ +καί +ὁ +ἄγγελος +αὐτός +μετά +αὐτός +βάλλω +καί +ἀκούω +φωνή +μέγας +ἐν +ὁ +οὐρανός +λέγω +ἄρτι +γίνομαι +ὁ +σωτηρία +καί +ὁ +δύναμις +καί +ὁ +βασιλεία +ὁ +θεός +ἐγώ +καί +ὁ +ἐξουσία +ὁ +Χριστός +αὐτός +ὅτι +βάλλω +ὁ +κατήγορος +ὁ +ἀδελφός +ἐγώ +ὁ +κατηγορέω +αὐτός +ἐνώπιον +ὁ +θεός +ἐγώ +ἡμέρα +καί +νύξ +καί +αὐτός +νικάω +αὐτός +διά +ὁ +αἷμα +ὁ +ἀρνίον +καί +διά +ὁ +λόγος +ὁ +μαρτυρία +αὐτός +καί +οὐ +ἀγαπάω +ὁ +ψυχή +αὐτός +ἄχρι +θάνατος +διά +οὗτος +εὐφραίνω +οὐρανός +καί +ὁ +ἐν +αὐτός +σκηνόω +οὐαί +ὁ +γῆ +καί +ὁ +θάλασσα +ὅτι +καταβαίνω +ὁ +διάβολος +πρός +σύ +ἔχω +θυμός +μέγας +οἶδα +ὅτι +ὀλίγος +καιρός +ἔχω +καί +ὅτε +ὁράω +ὁ +δράκων +ὅτι +βάλλω +εἰς +ὁ +γῆ +διώκω +ὁ +γυνή +ὅστις +τίκτω +ὁ +ἄρσην +καί +δίδωμι +ὁ +γυνή +ὁ +δύο +πτέρυξ +ὁ +ἀετός +ὁ +μέγας +ἵνα +πέτομαι +εἰς +ὁ +ἔρημος +εἰς +ὁ +τόπος +αὐτός +ὅπου +τρέφω +ἐκεῖ +καιρός +καί +καιρός +καί +ἥμισυς +καιρός +ἀπό +πρόσωπον +ὁ +ὄφις +καί +βάλλω +ὁ +ὄφις +ἐκ +ὁ +στόμα +αὐτός +ὀπίσω +ὁ +γυνή +ὕδωρ +ὡς +ποταμός +ἵνα +αὐτός +ποταμοφόρητος +ποιέω +καί +βοηθέω +ὁ +γῆ +ὁ +γυνή +καί +ἀνοίγω +ὁ +γῆ +ὁ +στόμα +αὐτός +καί +καταπίνω +ὁ +ποταμός +ὅς +βάλλω +ὁ +δράκων +ἐκ +ὁ +στόμα +αὐτός +καί +ὀργίζω +ὁ +δράκων +ἐπί +ὁ +γυνή +καί +ἀπέρχομαι +ποιέω +πόλεμος +μετά +ὁ +λοιπός +ὁ +σπέρμα +αὐτός +ὁ +τηρέω +ὁ +ἐντολή +ὁ +θεός +καί +ἔχω +ὁ +μαρτυρία +Ἰησοῦς +καί +ἵστημι +ἐπί +ὁ +ἄμμος +ὁ +θάλασσα +καί +ὁράω +ἐκ +ὁ +θάλασσα +θηρίον +ἀναβαίνω +ἔχω +κέρας +δέκα +καί +κεφαλή +ἑπτά +καί +ἐπί +ὁ +κέρας +αὐτός +δέκα +διάδημα +καί +ἐπί +ὁ +κεφαλή +αὐτός +ὄνομα +βλασφημία +καί +ὁ +θηρίον +ὅς +ὁράω +εἰμί +ὅμοιος +πάρδαλις +καί +ὁ +πούς +αὐτός +ὡς +ἄρκος +καί +ὁ +στόμα +αὐτός +ὡς +στόμα +λέων +καί +δίδωμι +αὐτός +ὁ +δράκων +ὁ +δύναμις +αὐτός +καί +ὁ +θρόνος +αὐτός +καί +ἐξουσία +μέγας +καί +εἷς +ἐκ +ὁ +κεφαλή +αὐτός +ὡς +σφάζω +εἰς +θάνατος +καί +ὁ +πληγή +ὁ +θάνατος +αὐτός +θεραπεύω +καί +θαυμάζω +ὅλος +ὁ +γῆ +ὀπίσω +ὁ +θηρίον +καί +προσκυνέω +ὁ +δράκων +ὅτι +δίδωμι +ὁ +ἐξουσία +ὁ +θηρίον +καί +προσκυνέω +ὁ +θηρίον +λέγω +τίς +ὅμοιος +ὁ +θηρίον +καί +τίς +δύναμαι +πολεμέω +μετά +αὐτός +καί +δίδωμι +αὐτός +στόμα +λαλέω +μέγας +καί +βλασφημία +καί +δίδωμι +αὐτός +ἐξουσία +ποιέω +μήν (II) +τεσσεράκοντα +δύο +καί +ἀνοίγω +ὁ +στόμα +αὐτός +εἰς +βλασφημία +πρός +ὁ +θεός +βλασφημέω +ὁ +ὄνομα +αὐτός +καί +ὁ +σκηνή +αὐτός +ὁ +ἐν +ὁ +οὐρανός +σκηνόω +καί +δίδωμι +αὐτός +ποιέω +πόλεμος +μετά +ὁ +ἅγιος +καί +νικάω +αὐτός +καί +δίδωμι +αὐτός +ἐξουσία +ἐπί +πᾶς +φυλή +καί +λαός +καί +γλῶσσα +καί +ἔθνος +καί +προσκυνέω +αὐτός +πᾶς +ὁ +κατοικέω +ἐπί +ὁ +γῆ +οὐ +γράφω +ὅς +ὁ +ὄνομα +αὐτός +ἐν +ὁ +βιβλίον +ὁ +ζωή +ὁ +ἀρνίον +ὁ +σφάζω +ἀπό +καταβολή +κόσμος +εἰ +τὶς +ἔχω +οὖς +ἀκούω +εἰ +τὶς +εἰς +αἰχμαλωσία +εἰς +αἰχμαλωσία +ὑπάγω +εἰ +τὶς +ἐν +μάχαιρα +ἀποκτείνω +δεῖ +αὐτός +ἐν +μάχαιρα +ἀποκτείνω +ὧδε +εἰμί +ὁ +ὑπομονή +καί +ὁ +πίστις +ὁ +ἅγιος +καί +ὁράω +ἄλλος +θηρίον +ἀναβαίνω +ἐκ +ὁ +γῆ +καί +ἔχω +κέρας +δύο +ὅμοιος +ἀρνίον +καί +λαλέω +ὡς +δράκων +καί +ὁ +ἐξουσία +ὁ +πρῶτος +θηρίον +πᾶς +ποιέω +ἐνώπιον +αὐτός +καί +ποιέω +ὁ +γῆ +καί +ὁ +ἐν +αὐτός +κατοικέω +ἵνα +προσκυνέω +ὁ +θηρίον +ὁ +πρῶτος +ὅς +θεραπεύω +ὁ +πληγή +ὁ +θάνατος +αὐτός +καί +ποιέω +σημεῖον +μέγας +ἵνα +καί +ποιέω +πῦρ +ἐκ +ὁ +οὐρανός +καταβαίνω +εἰς +ὁ +γῆ +ἐνώπιον +ὁ +ἄνθρωπος +καί +πλανάω +ὁ +κατοικέω +ἐπί +ὁ +γῆ +διά +ὁ +σημεῖον +ὅς +δίδωμι +αὐτός +ποιέω +ἐνώπιον +ὁ +θηρίον +λέγω +ὁ +κατοικέω +ἐπί +ὁ +γῆ +ποιέω +εἰκών +ὁ +θηρίον +ὅς +ἔχω +ὁ +πληγή +ὁ +μάχαιρα +καί +ζάω +καί +δίδωμι +αὐτός +δίδωμι +πνεῦμα +ὁ +εἰκών +ὁ +θηρίον +ἵνα +καί +λαλέω +ὁ +εἰκών +ὁ +θηρίον +καί +ποιέω +ἵνα +ἐάν +ὅσος +μή +προσκυνέω +ὁ +εἰκών +ὁ +θηρίον +ἀποκτείνω +καί +ποιέω +πᾶς +ὁ +μικρός +καί +ὁ +μέγας +καί +ὁ +πλούσιος +καί +ὁ +πτωχός +καί +ὁ +ἐλεύθερος +καί +ὁ +δοῦλος (II) +ἵνα +δίδωμι +αὐτός +χάραγμα +ἐπί +ὁ +χείρ +αὐτός +ὁ +δεξιός +ἤ +ἐπί +ὁ +μέτωπον +αὐτός +καί +ἵνα +μή +τὶς +δύναμαι +ἀγοράζω +ἤ +πωλέω +εἰ +μή +ὁ +ἔχω +ὁ +χάραγμα +ὁ +ὄνομα +ὁ +θηρίον +ἤ +ὁ +ἀριθμός +ὁ +ὄνομα +αὐτός +ὧδε +ὁ +σοφία +εἰμί +ὁ +ἔχω +νοῦς +ψηφίζω +ὁ +ἀριθμός +ὁ +θηρίον +γάρ +ἀριθμός +ἄνθρωπος +εἰμί +καί +ὁ +ἀριθμός +αὐτός +ἑξακόσιοι +ἑξήκοντα +ἕξ +καί +ὁράω +καί +ὁράω +ὁ +ἀρνίον +ἵστημι +ἐπί +ὁ +ὄρος +Σιών +καί +μετά +αὐτός +ἑκατόν +τεσσεράκοντα +τέσσαρες +χιλιάς +ἔχω +ὁ +ὄνομα +αὐτός +καί +ὁ +ὄνομα +ὁ +πατήρ +αὐτός +γράφω +ἐπί +ὁ +μέτωπον +αὐτός +καί +ἀκούω +φωνή +ἐκ +ὁ +οὐρανός +ὡς +φωνή +ὕδωρ +πολύς +καί +ὡς +φωνή +βροντή +μέγας +καί +ὁ +φωνή +ὅς +ἀκούω +ὡς +κιθαρῳδός +κιθαρίζω +ἐν +ὁ +κιθάρα +αὐτός +καί +ᾄδω +ᾠδή +καινός +ἐνώπιον +ὁ +θρόνος +καί +ἐνώπιον +ὁ +τέσσαρες +ζῷον +καί +ὁ +πρεσβύτερος +καί +οὐδείς +δύναμαι +μανθάνω +ὁ +ᾠδή +εἰ +μή +ὁ +ἑκατόν +τεσσεράκοντα +τέσσαρες +χιλιάς +ὁ +ἀγοράζω +ἀπό +ὁ +γῆ +οὗτος +εἰμί +ὅς +μετά +γυνή +οὐ +μολύνω +γάρ +παρθένος +εἰμί +οὗτος +ὁ +ἀκολουθέω +ὁ +ἀρνίον +ἄν +ὅπου +ὑπάγω +οὗτος +ἀγοράζω +ἀπό +ὁ +ἄνθρωπος +ἀπαρχή +ὁ +θεός +καί +ὁ +ἀρνίον +καί +ἐν +ὁ +στόμα +αὐτός +οὐ +εὑρίσκω +ψεῦδος +ἄμωμος +εἰμί +καί +ὁράω +ἄλλος +ἄγγελος +πέτομαι +ἐν +μεσουράνημα +ἔχω +εὐαγγέλιον +αἰώνιος +εὐαγγελίζω +ἐπί +ὁ +κάθημαι +ἐπί +ὁ +γῆ +καί +ἐπί +πᾶς +ἔθνος +καί +φυλή +καί +γλῶσσα +καί +λαός +λέγω +ἐν +φωνή +μέγας +φοβέω +ὁ +θεός +καί +δίδωμι +αὐτός +δόξα +ὅτι +ἔρχομαι +ὁ +ὥρα +ὁ +κρίσις +αὐτός +καί +προσκυνέω +ὁ +ποιέω +ὁ +οὐρανός +καί +ὁ +γῆ +καί +θάλασσα +καί +πηγή +ὕδωρ +καί +ἄλλος +ἄγγελος +δεύτερος +ἀκολουθέω +λέγω +πίπτω +πίπτω +Βαβυλών +ὁ +μέγας +ὅς +ἐκ +ὁ +οἶνος +ὁ +θυμός +ὁ +πορνεία +αὐτός +ποτίζω +πᾶς +ὁ +ἔθνος +καί +ἄλλος +ἄγγελος +τρίτος +ἀκολουθέω +αὐτός +λέγω +ἐν +φωνή +μέγας +εἰ +τὶς +προσκυνέω +ὁ +θηρίον +καί +ὁ +εἰκών +αὐτός +καί +λαμβάνω +χάραγμα +ἐπί +ὁ +μέτωπον +αὐτός +ἤ +ἐπί +ὁ +χείρ +αὐτός +καί +αὐτός +πίνω +ἐκ +ὁ +οἶνος +ὁ +θυμός +ὁ +θεός +ὁ +κεράννυμι +ἄκρατος +ἐν +ὁ +ποτήριον +ὁ +ὀργή +αὐτός +καί +βασανίζω +ἐν +πῦρ +καί +θεῖον +ἐνώπιον +ἄγγελος +ἅγιος +καί +ἐνώπιον +ὁ +ἀρνίον +καί +ὁ +καπνός +ὁ +βασανισμός +αὐτός +εἰς +αἰών +αἰών +ἀναβαίνω +καί +οὐ +ἔχω +ἀνάπαυσις +ἡμέρα +καί +νύξ +ὁ +προσκυνέω +ὁ +θηρίον +καί +ὁ +εἰκών +αὐτός +καί +εἰ +τὶς +λαμβάνω +ὁ +χάραγμα +ὁ +ὄνομα +αὐτός +ὧδε +εἰμί +ὁ +ὑπομονή +ὁ +ἅγιος +ὁ +τηρέω +ὁ +ἐντολή +ὁ +θεός +καί +ὁ +πίστις +Ἰησοῦς +καί +ἀκούω +φωνή +ἐκ +ὁ +οὐρανός +λέγω +γράφω +μακάριος +ὁ +νεκρός +ὁ +ἐν +κύριος +ἀποθνῄσκω +ἀπάρτι +ναί +λέγω +ὁ +πνεῦμα +ἵνα +ἀναπαύω +ἐκ +ὁ +κόπος +αὐτός +γάρ +ὁ +ἔργον +αὐτός +ἀκολουθέω +μετά +αὐτός +καί +ὁράω +καί +ὁράω +νεφέλη +λευκός +καί +ἐπί +ὁ +νεφέλη +κάθημαι +ὅμοιος +υἱός +ἄνθρωπος +ἔχω +ἐπί +ὁ +κεφαλή +αὐτός +στέφανος +χρυσοῦς +καί +ἐν +ὁ +χείρ +αὐτός +δρέπανον +ὀξύς +καί +ἄλλος +ἄγγελος +ἐξέρχομαι +ἐκ +ὁ +ναός +κράζω +ἐν +φωνή +μέγας +ὁ +κάθημαι +ἐπί +ὁ +νεφέλη +πέμπω +ὁ +δρέπανον +σύ +καί +θερίζω +ὅτι +ἔρχομαι +ὁ +ὥρα +θερίζω +ὅτι +ξηραίνω +ὁ +θερισμός +ὁ +γῆ +καί +βάλλω +ὁ +κάθημαι +ἐπί +ὁ +νεφέλη +ὁ +δρέπανον +αὐτός +ἐπί +ὁ +γῆ +καί +θερίζω +ὁ +γῆ +καί +ἄλλος +ἄγγελος +ἐξέρχομαι +ἐκ +ὁ +ναός +ὁ +ἐν +ὁ +οὐρανός +ἔχω +καί +αὐτός +δρέπανον +ὀξύς +καί +ἄλλος +ἄγγελος +ὁ +ἔχω +ἐξουσία +ἐπί +ὁ +πῦρ +ἐξέρχομαι +ἐκ +ὁ +θυσιαστήριον +καί +φωνέω +φωνή +μέγας +ὁ +ἔχω +ὁ +δρέπανον +ὁ +ὀξύς +λέγω +πέμπω +σύ +ὁ +δρέπανον +ὁ +ὀξύς +καί +τρυγάω +ὁ +βότρυς +ὁ +ἄμπελος +ὁ +γῆ +ὅτι +ἀκμάζω +ὁ +σταφυλή +αὐτός +καί +βάλλω +ὁ +ἄγγελος +ὁ +δρέπανον +αὐτός +εἰς +ὁ +γῆ +καί +τρυγάω +ὁ +ἄμπελος +ὁ +γῆ +καί +βάλλω +εἰς +ὁ +ληνός +ὁ +θυμός +ὁ +θεός +ὁ +μέγας +καί +πατέω +ὁ +ληνός +ἔξωθεν +ὁ +πόλις +καί +ἐξέρχομαι +αἷμα +ἐκ +ὁ +ληνός +ἄχρι +ὁ +χαλινός +ὁ +ἵππος +ἀπό +στάδιον +χίλιοι +ἑξακόσιοι +καί +ὁράω +ἄλλος +σημεῖον +ἐν +ὁ +οὐρανός +μέγας +καί +θαυμαστός +ἄγγελος +ἑπτά +ἔχω +πληγή +ἑπτά +ὁ +ἔσχατος +ὅτι +ἐν +αὐτός +τελέω +ὁ +θυμός +ὁ +θεός +καί +ὁράω +ὡς +θάλασσα +ὑάλινος +μίγνυμι +πῦρ +καί +ὁ +νικάω +ἐκ +ὁ +θηρίον +καί +ἐκ +ὁ +εἰκών +αὐτός +καί +ἐκ +ὁ +ἀριθμός +ὁ +ὄνομα +αὐτός +ἵστημι +ἐπί +ὁ +θάλασσα +ὁ +ὑάλινος +ἔχω +κιθάρα +ὁ +θεός +καί +ᾄδω +ὁ +ᾠδή +Μωϋσῆς +ὁ +δοῦλος (II) +ὁ +θεός +καί +ὁ +ᾠδή +ὁ +ἀρνίον +λέγω +μέγας +καί +θαυμαστός +ὁ +ἔργον +σύ +κύριος +ὁ +θεός +ὁ +παντοκράτωρ +δίκαιος +καί +ἀληθινός +ὁ +ὁδός +σύ +ὁ +βασιλεύς +ὁ +ἔθνος +τίς +οὐ +μή +φοβέω +κύριος +καί +δοξάζω +ὁ +ὄνομα +σύ +ὅτι +μόνος +ὅσιος +ὅτι +πᾶς +ὁ +ἔθνος +ἥκω +καί +προσκυνέω +ἐνώπιον +σύ +ὅτι +ὁ +δικαίωμα +σύ +φανερόω +καί +μετά +οὗτος +ὁράω +καί +ἀνοίγω +ὁ +ναός +ὁ +σκηνή +ὁ +μαρτύριον +ἐν +ὁ +οὐρανός +καί +ἐξέρχομαι +ὁ +ἑπτά +ἄγγελος +ὁ +ἔχω +ὁ +ἑπτά +πληγή +ἐκ +ὁ +ναός +ἐνδύω +λίνον +καθαρός +λαμπρός +καί +περιζώννυμι +περί +ὁ +στῆθος +ζώνη +χρυσοῦς +καί +εἷς +ἐκ +ὁ +τέσσαρες +ζῷον +δίδωμι +ὁ +ἑπτά +ἄγγελος +ἑπτά +φιάλη +χρυσοῦς +γέμω +ὁ +θυμός +ὁ +θεός +ὁ +ζάω +εἰς +ὁ +αἰών +ὁ +αἰών +καί +γεμίζω +ὁ +ναός +καπνός +ἐκ +ὁ +δόξα +ὁ +θεός +καί +ἐκ +ὁ +δύναμις +αὐτός +καί +οὐδείς +δύναμαι +εἰσέρχομαι +εἰς +ὁ +ναός +ἄχρι +τελέω +ὁ +ἑπτά +πληγή +ὁ +ἑπτά +ἄγγελος +καί +ἀκούω +μέγας +φωνή +ἐκ +ὁ +ναός +λέγω +ὁ +ἑπτά +ἄγγελος +ὑπάγω +καί +ἐκχέω +ὁ +ἑπτά +φιάλη +ὁ +θυμός +ὁ +θεός +εἰς +ὁ +γῆ +καί +ἀπέρχομαι +ὁ +πρῶτος +καί +ἐκχέω +ὁ +φιάλη +αὐτός +εἰς +ὁ +γῆ +καί +γίνομαι +ἕλκος +κακός +καί +πονηρός +ἐπί +ὁ +ἄνθρωπος +ὁ +ἔχω +ὁ +χάραγμα +ὁ +θηρίον +καί +ὁ +προσκυνέω +ὁ +εἰκών +αὐτός +καί +ὁ +δεύτερος +ἐκχέω +ὁ +φιάλη +αὐτός +εἰς +ὁ +θάλασσα +καί +γίνομαι +αἷμα +ὡς +νεκρός +καί +πᾶς +ψυχή +ζωή +ὁ +ἐν +ὁ +θάλασσα +ἀποθνῄσκω +καί +ὁ +τρίτος +ἐκχέω +ὁ +φιάλη +αὐτός +εἰς +ὁ +ποταμός +καί +ὁ +πηγή +ὁ +ὕδωρ +καί +γίνομαι +αἷμα +καί +ἀκούω +ὁ +ἄγγελος +ὁ +ὕδωρ +λέγω +δίκαιος +εἰμί +ὁ +εἰμί +καί +ὁ +εἰμί +ὁ +ὅσιος +ὅτι +οὗτος +κρίνω +ὅτι +αἷμα +ἅγιος +καί +προφήτης +ἐκχέω +καί +αἷμα +αὐτός +δίδωμι +πίνω +ἄξιος +εἰμί +καί +ἀκούω +ὁ +θυσιαστήριον +λέγω +ναί +κύριος +ὁ +θεός +ὁ +παντοκράτωρ +ἀληθινός +καί +δίκαιος +ὁ +κρίσις +σύ +καί +ὁ +τέταρτος +ἐκχέω +ὁ +φιάλη +αὐτός +ἐπί +ὁ +ἥλιος +καί +δίδωμι +αὐτός +καυματίζω +ὁ +ἄνθρωπος +ἐν +πῦρ +καί +καυματίζω +ὁ +ἄνθρωπος +καῦμα +μέγας +καί +βλασφημέω +ὁ +ὄνομα +ὁ +θεός +ὁ +ἔχω +ὁ +ἐξουσία +ἐπί +ὁ +πληγή +οὗτος +καί +οὐ +μετανοέω +δίδωμι +αὐτός +δόξα +καί +ὁ +πέμπτος +ἐκχέω +ὁ +φιάλη +αὐτός +ἐπί +ὁ +θρόνος +ὁ +θηρίον +καί +γίνομαι +ὁ +βασιλεία +αὐτός +σκοτόω +καί +μασάομαι +ὁ +γλῶσσα +αὐτός +ἐκ +ὁ +πόνος +καί +βλασφημέω +ὁ +θεός +ὁ +οὐρανός +ἐκ +ὁ +πόνος +αὐτός +καί +ἐκ +ὁ +ἕλκος +αὐτός +καί +οὐ +μετανοέω +ἐκ +ὁ +ἔργον +αὐτός +καί +ὁ +ἕκτος +ἐκχέω +ὁ +φιάλη +αὐτός +ἐπί +ὁ +ποταμός +ὁ +μέγας +Εὐφράτης +καί +ξηραίνω +ὁ +ὕδωρ +αὐτός +ἵνα +ἑτοιμάζω +ὁ +ὁδός +ὁ +βασιλεύς +ὁ +ἀπό +ἀνατολή +ἥλιος +καί +ὁράω +ἐκ +ὁ +στόμα +ὁ +δράκων +καί +ἐκ +ὁ +στόμα +ὁ +θηρίον +καί +ἐκ +ὁ +στόμα +ὁ +ψευδοπροφήτης +πνεῦμα +τρεῖς +ἀκάθαρτος +ὡς +βάτραχος +γάρ +εἰμί +πνεῦμα +δαιμόνιον +ποιέω +σημεῖον +ὅς +ἐκπορεύομαι +ἐπί +ὁ +βασιλεύς +ὁ +οἰκουμένη +ὅλος +συνάγω +αὐτός +εἰς +ὁ +πόλεμος +ὁ +ἡμέρα +ὁ +μέγας +ὁ +θεός +ὁ +παντοκράτωρ +ὁράω +ἔρχομαι +ὡς +κλέπτης +μακάριος +ὁ +γρηγορέω +καί +τηρέω +ὁ +ἱμάτιον +αὐτός +ἵνα +μή +γυμνός +περιπατέω +καί +βλέπω +ὁ +ἀσχημοσύνη +αὐτός +καί +συνάγω +αὐτός +εἰς +ὁ +τόπος +ὁ +καλέω +Ἑβραϊστί +Ἁρμαγεδών +καί +ὁ +ἕβδομος +ἐκχέω +ὁ +φιάλη +αὐτός +ἐπί +ὁ +ἀήρ +καί +ἐξέρχομαι +φωνή +μέγας +ἐκ +ὁ +ναός +ἀπό +ὁ +θρόνος +λέγω +γίνομαι +καί +γίνομαι +ἀστραπή +καί +φωνή +καί +βροντή +καί +σεισμός +μέγας +γίνομαι +οἷος +οὐ +γίνομαι +ἀπό +ὅς +ἄνθρωπος +γίνομαι +ἐπί +ὁ +γῆ +τηλικοῦτος +σεισμός +οὕτω +μέγας +καί +γίνομαι +ὁ +πόλις +ὁ +μέγας +εἰς +τρεῖς +μέρος +καί +ὁ +πόλις +ὁ +ἔθνος +πίπτω +καί +Βαβυλών +ὁ +μέγας +μιμνῄσκω +ἐνώπιον +ὁ +θεός +δίδωμι +αὐτός +ὁ +ποτήριον +ὁ +οἶνος +ὁ +θυμός +ὁ +ὀργή +αὐτός +καί +πᾶς +νῆσος +φεύγω +καί +ὄρος +οὐ +εὑρίσκω +καί +χάλαζα +μέγας +ὡς +ταλαντιαῖος +καταβαίνω +ἐκ +ὁ +οὐρανός +ἐπί +ὁ +ἄνθρωπος +καί +βλασφημέω +ὁ +ἄνθρωπος +ὁ +θεός +ἐκ +ὁ +πληγή +ὁ +χάλαζα +ὅτι +μέγας +εἰμί +ὁ +πληγή +αὐτός +σφόδρα +καί +ἔρχομαι +εἷς +ἐκ +ὁ +ἑπτά +ἄγγελος +ὁ +ἔχω +ὁ +ἑπτά +φιάλη +καί +λαλέω +μετά +ἐγώ +λέγω +δεῦρο +δείκνυμι +σύ +ὁ +κρίμα +ὁ +πόρνη +ὁ +μέγας +ὁ +κάθημαι +ἐπί +ὕδωρ +πολύς +μετά +ὅς +πορνεύω +ὁ +βασιλεύς +ὁ +γῆ +καί +μεθύσκω +ὁ +κατοικέω +ὁ +γῆ +ἐκ +ὁ +οἶνος +ὁ +πορνεία +αὐτός +καί +ἀποφέρω +ἐγώ +εἰς +ἔρημος +ἐν +πνεῦμα +καί +ὁράω +γυνή +κάθημαι +ἐπί +θηρίον +κόκκινος +γέμω +ὄνομα +βλασφημία +ἔχω +κεφαλή +ἑπτά +καί +κέρας +δέκα +καί +ὁ +γυνή +εἰμί +περιβάλλω +πορφυροῦς +καί +κόκκινος +καί +χρυσόω +χρυσίον +καί +λίθος +τίμιος +καί +μαργαρίτης +ἔχω +ἐν +ὁ +χείρ +αὐτός +ποτήριον +χρυσοῦς +γέμω +βδέλυγμα +καί +ὁ +ἀκάθαρτος +ὁ +πορνεία +αὐτός +καί +ἐπί +ὁ +μέτωπον +αὐτός +γράφω +ὄνομα +μυστήριον +Βαβυλών +ὁ +μέγας +ὁ +μήτηρ +ὁ +πόρνη +καί +ὁ +βδέλυγμα +ὁ +γῆ +καί +ὁράω +ὁ +γυνή +μεθύω +ἐκ +ὁ +αἷμα +ὁ +ἅγιος +καί +ἐκ +ὁ +αἷμα +ὁ +μάρτυς +Ἰησοῦς +καί +θαυμάζω +ὁράω +αὐτός +θαῦμα +μέγας +καί +λέγω +ἐγώ +ὁ +ἄγγελος +διά +τίς +θαυμάζω +ἐγώ +εἶπον +σύ +ὁ +μυστήριον +ὁ +γυνή +καί +ὁ +θηρίον +ὁ +βαστάζω +αὐτός +ὁ +ἔχω +ὁ +ἑπτά +κεφαλή +καί +ὁ +δέκα +κέρας +ὁ +θηρίον +ὅς +ὁράω +εἰμί +καί +οὐ +εἰμί +καί +μέλλω +ἀναβαίνω +ἐκ +ὁ +ἄβυσσος +καί +εἰς +ἀπώλεια +ὑπάγω +καί +θαυμάζω +ὁ +κατοικέω +ἐπί +ὁ +γῆ +ὅς +ὁ +ὄνομα +οὐ +γράφω +ἐπί +ὁ +βιβλίον +ὁ +ζωή +ἀπό +καταβολή +κόσμος +βλέπω +ὁ +θηρίον +ὅτι +εἰμί +καί +οὐ +εἰμί +καί +πάρειμι +ὧδε +ὁ +νοῦς +ὁ +ἔχω +σοφία +ὁ +ἑπτά +κεφαλή +ἑπτά +ὄρος +εἰμί +ὅπου +ὁ +γυνή +κάθημαι +ἐπί +αὐτός +καί +βασιλεύς +ἑπτά +εἰμί +ὁ +πέντε +πίπτω +ὁ +εἷς +εἰμί +ὁ +ἄλλος +οὔπω +ἔρχομαι +καί +ὅταν +ἔρχομαι +ὀλίγος +αὐτός +μένω +δεῖ +καί +ὁ +θηρίον +ὅς +εἰμί +καί +οὐ +εἰμί +καί +αὐτός +ὄγδοος +εἰμί +καί +ἐκ +ὁ +ἑπτά +εἰμί +καί +εἰς +ἀπώλεια +ὑπάγω +καί +ὁ +δέκα +κέρας +ὅς +ὁράω +εἰμί +δέκα +βασιλεύς +ὅστις +βασιλεία +οὔπω +λαμβάνω +ἀλλά +ἐξουσία +ὡς +βασιλεύς +εἷς +ὥρα +λαμβάνω +μετά +ὁ +θηρίον +οὗτος +εἷς +γνώμη +ἔχω +καί +ὁ +δύναμις +καί +ἐξουσία +αὐτός +ὁ +θηρίον +δίδωμι +οὗτος +μετά +ὁ +ἀρνίον +πολεμέω +καί +ὁ +ἀρνίον +νικάω +αὐτός +ὅτι +εἰμί +κύριος +κύριος +καί +βασιλεύς +βασιλεύς +καί +ὁ +μετά +αὐτός +κλητός +καί +ἐκλεκτός +καί +πιστός +καί +λέγω +ἐγώ +ὁ +ὕδωρ +ὅς +ὁράω +οὗ +ὁ +πόρνη +κάθημαι +εἰμί +λαός +καί +ὄχλος +καί +ἔθνος +καί +γλῶσσα +καί +ὁ +δέκα +κέρας +ὅς +ὁράω +καί +ὁ +θηρίον +οὗτος +μισέω +ὁ +πόρνη +καί +ποιέω +αὐτός +ἐρημόω +καί +γυμνός +καί +ὁ +σάρξ +αὐτός +ἐσθίω +καί +αὐτός +κατακαίω +ἐν +πῦρ +γάρ +ὁ +θεός +δίδωμι +εἰς +ὁ +καρδία +αὐτός +ποιέω +ὁ +γνώμη +αὐτός +καί +ποιέω +εἷς +γνώμη +καί +δίδωμι +ὁ +βασιλεία +αὐτός +ὁ +θηρίον +ἄχρι +τελέω +ὁ +λόγος +ὁ +θεός +καί +ὁ +γυνή +ὅς +ὁράω +εἰμί +ὁ +πόλις +ὁ +μέγας +ὁ +ἔχω +βασιλεία +ἐπί +ὁ +βασιλεύς +ὁ +γῆ +μετά +οὗτος +ὁράω +ἄλλος +ἄγγελος +καταβαίνω +ἐκ +ὁ +οὐρανός +ἔχω +ἐξουσία +μέγας +καί +ὁ +γῆ +φωτίζω +ἐκ +ὁ +δόξα +αὐτός +καί +κράζω +ἐν +ἰσχυρός +φωνή +λέγω +πίπτω +πίπτω +Βαβυλών +ὁ +μέγας +καί +γίνομαι +κατοικητήριον +δαιμόνιον +καί +φυλακή +πᾶς +πνεῦμα +ἀκάθαρτος +καί +φυλακή +πᾶς +ὄρνεον +ἀκάθαρτος +καί +μισέω +ὅτι +ἐκ +ὁ +οἶνος +ὁ +θυμός +ὁ +πορνεία +αὐτός +πίνω +πᾶς +ὁ +ἔθνος +καί +ὁ +βασιλεύς +ὁ +γῆ +μετά +αὐτός +πορνεύω +καί +ὁ +ἔμπορος +ὁ +γῆ +ἐκ +ὁ +δύναμις +ὁ +στρῆνος +αὐτός +πλουτέω +καί +ἀκούω +ἄλλος +φωνή +ἐκ +ὁ +οὐρανός +λέγω +ὁ +λαός +ἐγώ +ἐξέρχομαι +ἐκ +αὐτός +ἵνα +μή +συγκοινωνέω +ὁ +ἁμαρτία +αὐτός +καί +ἵνα +ἐκ +ὁ +πληγή +αὐτός +μή +λαμβάνω +ὅτι +κολλάω +αὐτός +ὁ +ἁμαρτία +ἄχρι +ὁ +οὐρανός +καί +μνημονεύω +ὁ +θεός +ὁ +ἀδίκημα +αὐτός +ἀποδίδωμι +αὐτός +ὡς +καί +αὐτός +ἀποδίδωμι +καί +διπλόω +ὁ +διπλοῦς +κατά +ὁ +ἔργον +αὐτός +ἐν +ὁ +ποτήριον +ὅς +κεράννυμι +κεράννυμι +αὐτός +διπλοῦς +ὅσος +δοξάζω +αὐτός +καί +στρηνιάω +τοσοῦτος +βασανισμός +καί +πένθος +δίδωμι +αὐτός +ὅτι +ἐν +ὁ +καρδία +αὐτός +λέγω +ὅτι +κάθημαι +βασίλισσα +καί +χῆρος +οὐ +εἰμί +καί +πένθος +οὐ +μή +ὁράω +διά +οὗτος +ἐν +εἷς +ἡμέρα +ἥκω +ὁ +πληγή +αὐτός +θάνατος +καί +πένθος +καί +λιμός +καί +ἐν +πῦρ +κατακαίω +ὅτι +ἰσχυρός +κύριος +ὁ +θεός +ὁ +κρίνω +αὐτός +καί +κλαίω +καί +κόπτω +ἐπί +αὐτός +ὁ +βασιλεύς +ὁ +γῆ +ὁ +μετά +αὐτός +πορνεύω +καί +στρηνιάω +ὅταν +βλέπω +ὁ +καπνός +ὁ +πύρωσις +αὐτός +ἀπό +μακρόθεν +ἵστημι +διά +ὁ +φόβος +ὁ +βασανισμός +αὐτός +λέγω +οὐαί +οὐαί +ὁ +πόλις +ὁ +μέγας +Βαβυλών +ὁ +πόλις +ὁ +ἰσχυρός +ὅτι +εἷς +ὥρα +ἔρχομαι +ὁ +κρίσις +σύ +καί +ὁ +ἔμπορος +ὁ +γῆ +κλαίω +καί +πενθέω +ἐπί +αὐτός +ὅτι +οὐδείς +ἀγοράζω +οὐκέτι +ὁ +γόμος +αὐτός +γόμος +χρυσός +καί +ἄργυρος +καί +λίθος +τίμιος +καί +μαργαρίτης +καί +βύσσινος +καί +πορφύρα +καί +σιρικός +καί +κόκκινος +καί +πᾶς +ξύλον +θύϊνος +καί +πᾶς +σκεῦος +ἐλεφάντινος +καί +πᾶς +σκεῦος +ἐκ +ξύλον +τίμιος +καί +χαλκός +καί +σίδηρος +καί +μάρμαρος +καί +κιννάμωμον +καί +ἄμωμον +καί +θυμίαμα +καί +μύρον +καί +λίβανος +καί +οἶνος +καί +ἔλαιον +καί +σεμίδαλις +καί +σῖτος +καί +κτῆνος +καί +πρόβατον +καί +ἵππος +καί +ῥέδη +καί +σῶμα +καί +ψυχή +ἄνθρωπος +καί +ὁ +ὀπώρα +σύ +ὁ +ἐπιθυμία +ὁ +ψυχή +ἀπέρχομαι +ἀπό +σύ +καί +πᾶς +ὁ +λιπαρός +καί +ὁ +λαμπρός +ἀπόλλυμι +ἀπό +σύ +καί +οὐκέτι +οὐ +μή +αὐτός +εὑρίσκω +ὁ +ἔμπορος +οὗτος +ὁ +πλουτέω +ἀπό +αὐτός +ἀπό +μακρόθεν +ἵστημι +διά +ὁ +φόβος +ὁ +βασανισμός +αὐτός +κλαίω +καί +πενθέω +λέγω +οὐαί +οὐαί +ὁ +πόλις +ὁ +μέγας +ὁ +περιβάλλω +βύσσινος +καί +πορφυροῦς +καί +κόκκινος +καί +χρυσόω +ἐν +χρυσίον +καί +λίθος +τίμιος +καί +μαργαρίτης +ὅτι +εἷς +ὥρα +ἐρημόω +ὁ +τοσοῦτος +πλοῦτος +καί +πᾶς +κυβερνήτης +καί +πᾶς +ὁ +ἐπί +τόπος +πλέω +καί +ναύτης +καί +ὅσος +ὁ +θάλασσα +ἐργάζομαι +ἀπό +μακρόθεν +ἵστημι +καί +κράζω +βλέπω +ὁ +καπνός +ὁ +πύρωσις +αὐτός +λέγω +τίς +ὅμοιος +ὁ +πόλις +ὁ +μέγας +καί +βάλλω +χοῦς +ἐπί +ὁ +κεφαλή +αὐτός +καί +κράζω +κλαίω +καί +πενθέω +λέγω +οὐαί +οὐαί +ὁ +πόλις +ὁ +μέγας +ἐν +ὅς +πλουτέω +πᾶς +ὁ +ἔχω +ὁ +πλοῖον +ἐν +ὁ +θάλασσα +ἐκ +ὁ +τιμιότης +αὐτός +ὅτι +εἷς +ὥρα +ἐρημόω +εὐφραίνω +ἐπί +αὐτός +οὐρανός +καί +ὁ +ἅγιος +καί +ὁ +ἀπόστολος +καί +ὁ +προφήτης +ὅτι +κρίνω +ὁ +θεός +ὁ +κρίμα +σύ +ἐκ +αὐτός +καί +αἴρω +εἷς +ἄγγελος +ἰσχυρός +λίθος +ὡς +μύλινος +μέγας +καί +βάλλω +εἰς +ὁ +θάλασσα +λέγω +οὕτω +ὅρμημα +βάλλω +Βαβυλών +ὁ +μέγας +πόλις +καί +οὐ +μή +εὑρίσκω +ἔτι +καί +φωνή +κιθαρῳδός +καί +μουσικός +καί +αὐλητής +καί +σαλπιστής +οὐ +μή +ἀκούω +ἐν +σύ +ἔτι +καί +πᾶς +τεχνίτης +πᾶς +τέχνη +οὐ +μή +εὑρίσκω +ἐν +σύ +ἔτι +καί +φωνή +μύλος +οὐ +μή +ἀκούω +ἐν +σύ +ἔτι +καί +φῶς +λύχνος +οὐ +μή +φαίνω +ἐν +σύ +ἔτι +καί +φωνή +νυμφίος +καί +νύμφη +οὐ +μή +ἀκούω +ἐν +σύ +ἔτι +ὅτι +ὁ +ἔμπορος +σύ +εἰμί +ὁ +μεγιστάν +ὁ +γῆ +ὅτι +ἐν +ὁ +φαρμακεία +σύ +πλανάω +πᾶς +ὁ +ἔθνος +καί +ἐν +αὐτός +εὑρίσκω +αἷμα +προφήτης +καί +ἅγιος +καί +πᾶς +ὁ +σφάζω +ἐπί +ὁ +γῆ +μετά +οὗτος +ἀκούω +ὡς +φωνή +μέγας +ὄχλος +πολύς +ἐν +ὁ +οὐρανός +λέγω +ἁλληλουϊά +ὁ +σωτηρία +καί +ὁ +δόξα +καί +ὁ +δύναμις +ὁ +θεός +ἐγώ +ὅτι +ἀληθινός +καί +δίκαιος +ὁ +κρίσις +αὐτός +ὅτι +κρίνω +ὁ +πόρνη +ὁ +μέγας +ὅστις +φθείρω +ὁ +γῆ +ἐν +ὁ +πορνεία +αὐτός +καί +ἐκδικέω +ὁ +αἷμα +ὁ +δοῦλος (II) +αὐτός +ἐκ +χείρ +αὐτός +καί +δεύτερος +εἶπον +ἁλληλουϊά +καί +ὁ +καπνός +αὐτός +ἀναβαίνω +εἰς +ὁ +αἰών +ὁ +αἰών +καί +πίπτω +ὁ +πρεσβύτερος +ὁ +εἴκοσι +τέσσαρες +καί +ὁ +τέσσαρες +ζῷον +καί +προσκυνέω +ὁ +θεός +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +λέγω +ἀμήν +ἁλληλουϊά +καί +φωνή +ἀπό +ὁ +θρόνος +ἐξέρχομαι +λέγω +αἰνέω +ὁ +θεός +ἐγώ +πᾶς +ὁ +δοῦλος (II) +αὐτός +ὁ +φοβέω +αὐτός +ὁ +μικρός +καί +ὁ +μέγας +καί +ἀκούω +ὡς +φωνή +ὄχλος +πολύς +καί +ὡς +φωνή +ὕδωρ +πολύς +καί +ὡς +φωνή +βροντή +ἰσχυρός +λέγω +ἁλληλουϊά +ὅτι +βασιλεύω +κύριος +ὁ +θεός +ἐγώ +ὁ +παντοκράτωρ +χαίρω +καί +ἀγαλλιάω +καί +δίδωμι +ὁ +δόξα +αὐτός +ὅτι +ἔρχομαι +ὁ +γάμος +ὁ +ἀρνίον +καί +ὁ +γυνή +αὐτός +ἑτοιμάζω +ἑαυτοῦ +καί +δίδωμι +αὐτός +ἵνα +περιβάλλω +βύσσινος +λαμπρός +καθαρός +γάρ +ὁ +βύσσινος +ὁ +δικαίωμα +ὁ +ἅγιος +εἰμί +καί +λέγω +ἐγώ +γράφω +μακάριος +ὁ +εἰς +ὁ +δεῖπνον +ὁ +γάμος +ὁ +ἀρνίον +καλέω +καί +λέγω +ἐγώ +οὗτος +ὁ +λόγος +ἀληθινός +ὁ +θεός +εἰμί +καί +πίπτω +ἔμπροσθεν +ὁ +πούς +αὐτός +προσκυνέω +αὐτός +καί +λέγω +ἐγώ +ὁράω +μή +εἰμί +σύνδουλος +σύ +καί +ὁ +ἀδελφός +σύ +ὁ +ἔχω +ὁ +μαρτυρία +Ἰησοῦς +ὁ +θεός +προσκυνέω +γάρ +ὁ +μαρτυρία +Ἰησοῦς +εἰμί +ὁ +πνεῦμα +ὁ +προφητεία +καί +ὁράω +ὁ +οὐρανός +ἀνοίγω +καί +ὁράω +ἵππος +λευκός +καί +ὁ +κάθημαι +ἐπί +αὐτός +καλέω +πιστός +καί +ἀληθινός +καί +ἐν +δικαιοσύνη +κρίνω +καί +πολεμέω +δέ +ὁ +ὀφθαλμός +αὐτός +φλόξ +πῦρ +καί +ἐπί +ὁ +κεφαλή +αὐτός +διάδημα +πολύς +ἔχω +ὄνομα +γράφω +ὅς +οὐδείς +οἶδα +εἰ +μή +αὐτός +καί +περιβάλλω +ἱμάτιον +βάπτω +αἷμα +καί +καλέω +ὁ +ὄνομα +αὐτός +ὁ +λόγος +ὁ +θεός +καί +ὁ +στράτευμα +ὁ +ἐν +ὁ +οὐρανός +ἀκολουθέω +αὐτός +ἐπί +ἵππος +λευκός +ἐνδύω +βύσσινος +λευκός +καθαρός +καί +ἐκ +ὁ +στόμα +αὐτός +ἐκπορεύομαι +ῥομφαία +ὀξύς +ἵνα +ἐν +αὐτός +πατάσσω +ὁ +ἔθνος +καί +αὐτός +ποιμαίνω +αὐτός +ἐν +ῥάβδος +σιδηροῦς +καί +αὐτός +πατέω +ὁ +ληνός +ὁ +οἶνος +ὁ +θυμός +ὁ +ὀργή +ὁ +θεός +ὁ +παντοκράτωρ +καί +ἔχω +ἐπί +ὁ +ἱμάτιον +καί +ἐπί +ὁ +μηρός +αὐτός +ὄνομα +γράφω +βασιλεύς +βασιλεύς +καί +κύριος +κύριος +καί +ὁράω +εἷς +ἄγγελος +ἵστημι +ἐν +ὁ +ἥλιος +καί +κράζω +ἐν +φωνή +μέγας +λέγω +πᾶς +ὁ +ὄρνεον +ὁ +πέτομαι +ἐν +μεσουράνημα +δεῦτε +συνάγω +εἰς +ὁ +δεῖπνον +ὁ +μέγας +ὁ +θεός +ἵνα +ἐσθίω +σάρξ +βασιλεύς +καί +σάρξ +χιλίαρχος +καί +σάρξ +ἰσχυρός +καί +σάρξ +ἵππος +καί +ὁ +κάθημαι +ἐπί +αὐτός +καί +σάρξ +πᾶς +τέ +ἐλεύθερος +καί +δοῦλος (II) +καί +μικρός +καί +μέγας +καί +ὁράω +ὁ +θηρίον +καί +ὁ +βασιλεύς +ὁ +γῆ +καί +ὁ +στράτευμα +αὐτός +συνάγω +ποιέω +ὁ +πόλεμος +μετά +ὁ +κάθημαι +ἐπί +ὁ +ἵππος +καί +μετά +ὁ +στράτευμα +αὐτός +καί +πιάζω +ὁ +θηρίον +καί +μετά +αὐτός +ὁ +ψευδοπροφήτης +ὁ +ποιέω +ὁ +σημεῖον +ἐνώπιον +αὐτός +ἐν +ὅς +πλανάω +ὁ +λαμβάνω +ὁ +χάραγμα +ὁ +θηρίον +καί +ὁ +προσκυνέω +ὁ +εἰκών +αὐτός +ζάω +βάλλω +ὁ +δύο +εἰς +ὁ +λίμνη +ὁ +πῦρ +ὁ +καίω +ἐν +θεῖον +καί +ὁ +λοιπός +ἀποκτείνω +ἐν +ὁ +ῥομφαία +ὁ +κάθημαι +ἐπί +ὁ +ἵππος +ὁ +ἐξέρχομαι +ἐκ +ὁ +στόμα +αὐτός +καί +πᾶς +ὁ +ὄρνεον +χορτάζω +ἐκ +ὁ +σάρξ +αὐτός +καί +ὁράω +ἄγγελος +καταβαίνω +ἐκ +ὁ +οὐρανός +ἔχω +ὁ +κλείς +ὁ +ἄβυσσος +καί +ἅλυσις +μέγας +ἐπί +ὁ +χείρ +αὐτός +καί +κρατέω +ὁ +δράκων +ὁ +ὄφις +ὁ +ἀρχαῖος +ὅς +εἰμί +διάβολος +καί +ὁ +Σατανᾶς +καί +δέω +αὐτός +χίλιοι +ἔτος +καί +βάλλω +αὐτός +εἰς +ὁ +ἄβυσσος +καί +κλείω +καί +σφραγίζω +ἐπάνω +αὐτός +ἵνα +μή +πλανάω +ἔτι +ὁ +ἔθνος +ἄχρι +τελέω +ὁ +χίλιοι +ἔτος +μετά +οὗτος +δεῖ +λύω +αὐτός +μικρός +χρόνος +καί +ὁράω +θρόνος +καί +καθίζω +ἐπί +αὐτός +καί +κρίμα +δίδωμι +αὐτός +καί +ὁ +ψυχή +ὁ +πελεκίζω +διά +ὁ +μαρτυρία +Ἰησοῦς +καί +διά +ὁ +λόγος +ὁ +θεός +καί +ὅστις +οὐ +προσκυνέω +ὁ +θηρίον +οὐδέ +ὁ +εἰκών +αὐτός +καί +οὐ +λαμβάνω +ὁ +χάραγμα +ἐπί +ὁ +μέτωπον +καί +ἐπί +ὁ +χείρ +αὐτός +καί +ζάω +καί +βασιλεύω +μετά +ὁ +Χριστός +χίλιοι +ἔτος +ὁ +λοιπός +ὁ +νεκρός +οὐ +ζάω +ἄχρι +τελέω +ὁ +χίλιοι +ἔτος +οὗτος +ὁ +ἀνάστασις +ὁ +πρῶτος +μακάριος +καί +ἅγιος +ὁ +ἔχω +μέρος +ἐν +ὁ +ἀνάστασις +ὁ +πρῶτος +ἐπί +οὗτος +ὁ +δεύτερος +θάνατος +οὐ +ἔχω +ἐξουσία +ἀλλά +εἰμί +ἱερεύς +ὁ +θεός +καί +ὁ +Χριστός +καί +βασιλεύω +μετά +αὐτός +ὁ +χίλιοι +ἔτος +καί +ὅταν +τελέω +ὁ +χίλιοι +ἔτος +λύω +ὁ +Σατανᾶς +ἐκ +ὁ +φυλακή +αὐτός +καί +ἐξέρχομαι +πλανάω +ὁ +ἔθνος +ὁ +ἐν +ὁ +τέσσαρες +γωνία +ὁ +γῆ +ὁ +Γώγ +καί +Μαγώγ +συνάγω +αὐτός +εἰς +ὁ +πόλεμος +ὅς +ὁ +ἀριθμός +αὐτός +ὡς +ὁ +ἄμμος +ὁ +θάλασσα +καί +ἀναβαίνω +ἐπί +ὁ +πλάτος +ὁ +γῆ +καί +κυκλεύω +ὁ +παρεμβολή +ὁ +ἅγιος +καί +ὁ +πόλις +ὁ +ἀγαπάω +καί +καταβαίνω +πῦρ +ἐκ +ὁ +οὐρανός +καί +κατεσθίω +αὐτός +καί +ὁ +διάβολος +ὁ +πλανάω +αὐτός +βάλλω +εἰς +ὁ +λίμνη +ὁ +πῦρ +καί +θεῖον +ὅπου +καί +ὁ +θηρίον +καί +ὁ +ψευδοπροφήτης +καί +βασανίζω +ἡμέρα +καί +νύξ +εἰς +ὁ +αἰών +ὁ +αἰών +καί +ὁράω +θρόνος +μέγας +λευκός +καί +ὁ +κάθημαι +ἐπί +αὐτός +ἀπό +ὅς +ὁ +πρόσωπον +φεύγω +ὁ +γῆ +καί +ὁ +οὐρανός +καί +τόπος +οὐ +εὑρίσκω +αὐτός +καί +ὁράω +ὁ +νεκρός +ὁ +μέγας +καί +ὁ +μικρός +ἵστημι +ἐνώπιον +ὁ +θρόνος +καί +βιβλίον +ἀνοίγω +καί +ἄλλος +βιβλίον +ἀνοίγω +ὅς +εἰμί +ὁ +ζωή +καί +κρίνω +ὁ +νεκρός +ἐκ +ὁ +γράφω +ἐν +ὁ +βιβλίον +κατά +ὁ +ἔργον +αὐτός +καί +δίδωμι +ὁ +θάλασσα +ὁ +νεκρός +ὁ +ἐν +αὐτός +καί +ὁ +θάνατος +καί +ὁ +ᾅδης +δίδωμι +ὁ +νεκρός +ὁ +ἐν +αὐτός +καί +κρίνω +ἕκαστος +κατά +ὁ +ἔργον +αὐτός +καί +ὁ +θάνατος +καί +ὁ +ᾅδης +βάλλω +εἰς +ὁ +λίμνη +ὁ +πῦρ +οὗτος +ὁ +θάνατος +ὁ +δεύτερος +ὁ +λίμνη +ὁ +πῦρ +εἰμί +καί +εἰ +τὶς +οὐ +εὑρίσκω +ἐν +ὁ +βίβλος +ὁ +ζωή +γράφω +βάλλω +εἰς +ὁ +λίμνη +ὁ +πῦρ +καί +ὁράω +οὐρανός +καινός +καί +γῆ +καινός +γάρ +ὁ +πρῶτος +οὐρανός +καί +ὁ +πρῶτος +γῆ +ἀπέρχομαι +καί +ὁ +θάλασσα +οὐ +εἰμί +ἔτι +καί +ὁράω +ὁ +πόλις +ὁ +ἅγιος +Ἱεροσόλυμα +καινός +καταβαίνω +ἐκ +ὁ +οὐρανός +ἀπό +ὁ +θεός +ἑτοιμάζω +ὡς +νύμφη +κοσμέω +ὁ +ἀνήρ +αὐτός +καί +ἀκούω +φωνή +μέγας +ἐκ +ὁ +θρόνος +λέγω +ὁράω +ὁ +σκηνή +ὁ +θεός +μετά +ὁ +ἄνθρωπος +καί +σκηνόω +μετά +αὐτός +καί +αὐτός +λαός +αὐτός +εἰμί +καί +αὐτός +ὁ +θεός +μετά +αὐτός +εἰμί +καί +ἐξαλείφω +πᾶς +δάκρυον +ἐκ +ὁ +ὀφθαλμός +αὐτός +καί +ὁ +θάνατος +οὐ +εἰμί +ἔτι +οὔτε +πένθος +οὔτε +κραυγή +οὔτε +πόνος +οὐ +εἰμί +ἔτι +ὅτι +ὁ +πρῶτος +ἀπέρχομαι +καί +λέγω +ὁ +κάθημαι +ἐπί +ὁ +θρόνος +ὁράω +καινός +ποιέω +πᾶς +καί +λέγω +γράφω +ὅτι +οὗτος +ὁ +λόγος +πιστός +καί +ἀληθινός +εἰμί +καί +λέγω +ἐγώ +γίνομαι +ἐγώ +ὁ +ἄλφα +καί +ὁ +Ὦ +ὁ +ἀρχή +καί +ὁ +τέλος +ἐγώ +ὁ +διψάω +δίδωμι +ἐκ +ὁ +πηγή +ὁ +ὕδωρ +ὁ +ζωή +δωρεάν +ὁ +νικάω +κληρονομέω +οὗτος +καί +εἰμί +αὐτός +θεός +καί +αὐτός +εἰμί +ἐγώ +υἱός +δέ +ὁ +δειλός +καί +ἄπιστος +καί +βδελύσσομαι +καί +φονεύς +καί +πόρνος +καί +φάρμακος +καί +εἰδωλολάτρης +καί +πᾶς +ὁ +ψευδής +ὁ +μέρος +αὐτός +ἐν +ὁ +λίμνη +ὁ +καίω +πῦρ +καί +θεῖον +ὅς +εἰμί +ὁ +θάνατος +ὁ +δεύτερος +καί +ἔρχομαι +εἷς +ἐκ +ὁ +ἑπτά +ἄγγελος +ὁ +ἔχω +ὁ +ἑπτά +φιάλη +ὁ +γέμω +ὁ +ἑπτά +πληγή +ὁ +ἔσχατος +καί +λαλέω +μετά +ἐγώ +λέγω +δεῦρο +δείκνυμι +σύ +ὁ +νύμφη +ὁ +γυνή +ὁ +ἀρνίον +καί +ἀποφέρω +ἐγώ +ἐν +πνεῦμα +ἐπί +ὄρος +μέγας +καί +ὑψηλός +καί +δείκνυμι +ἐγώ +ὁ +πόλις +ὁ +ἅγιος +Ἱεροσόλυμα +καταβαίνω +ἐκ +ὁ +οὐρανός +ἀπό +ὁ +θεός +ἔχω +ὁ +δόξα +ὁ +θεός +ὁ +φωστήρ +αὐτός +ὅμοιος +λίθος +τίμιος +ὡς +λίθος +ἴασπις +κρυσταλλίζω +ἔχω +τεῖχος +μέγας +καί +ὑψηλός +ἔχω +πυλών +δώδεκα +καί +ἐπί +ὁ +πυλών +ἄγγελος +δώδεκα +καί +ἐπιγράφω +ὄνομα +ὅς +εἰμί +ὁ +δώδεκα +φυλή +υἱός +Ἰσραήλ +ἀπό +ἀνατολή +πυλών +τρεῖς +καί +ἀπό +βορρᾶς +πυλών +τρεῖς +καί +ἀπό +νότος +πυλών +τρεῖς +καί +ἀπό +δυσμή +πυλών +τρεῖς +καί +ὁ +τεῖχος +ὁ +πόλις +ἔχω +θεμέλιος +δώδεκα +καί +ἐπί +αὐτός +δώδεκα +ὄνομα +ὁ +δώδεκα +ἀπόστολος +ὁ +ἀρνίον +καί +ὁ +λαλέω +μετά +ἐγώ +ἔχω +μέτρον +κάλαμος +χρυσοῦς +ἵνα +μετρέω +ὁ +πόλις +καί +ὁ +πυλών +αὐτός +καί +ὁ +τεῖχος +αὐτός +καί +ὁ +πόλις +τετράγωνος +κεῖμαι +καί +ὁ +μῆκος +αὐτός +ὅσος +ὁ +πλάτος +καί +μετρέω +ὁ +πόλις +ὁ +κάλαμος +ἐπί +στάδιον +δώδεκα +χιλιάς +ὁ +μῆκος +καί +ὁ +πλάτος +καί +ὁ +ὕψος +αὐτός +ἴσος +εἰμί +καί +μετρέω +ὁ +τεῖχος +αὐτός +ἑκατόν +τεσσεράκοντα +τέσσαρες +πῆχυς +μέτρον +ἄνθρωπος +ὅς +εἰμί +ἄγγελος +καί +ὁ +ἐνδώμησις +ὁ +τεῖχος +αὐτός +ἴασπις +καί +ὁ +πόλις +χρυσίον +καθαρός +ὅμοιος +ὕαλος +καθαρός +ὁ +θεμέλιος +ὁ +τεῖχος +ὁ +πόλις +πᾶς +λίθος +τίμιος +κοσμέω +ὁ +θεμέλιος +ὁ +πρῶτος +ἴασπις +ὁ +δεύτερος +σάπφιρος +ὁ +τρίτος +χαλκηδών +ὁ +τέταρτος +σμάραγδος +ὁ +πέμπτος +σαρδόνυξ +ὁ +ἕκτος +σάρδιον +ὁ +ἕβδομος +χρυσόλιθος +ὁ +ὄγδοος +βήρυλλος +ὁ +ἔνατος +τοπάζιον +ὁ +δέκατος +χρυσόπρασος +ὁ +ἑνδέκατος +ὑάκινθος +ὁ +δωδέκατος +ἀμέθυστος +καί +ὁ +δώδεκα +πυλών +δώδεκα +μαργαρίτης +ἀνά +εἷς +ἕκαστος +ὁ +πυλών +εἰμί +ἐκ +εἷς +μαργαρίτης +καί +ὁ +πλατύς +ὁ +πόλις +χρυσίον +καθαρός +ὡς +ὕαλος +διαυγής +καί +ναός +οὐ +ὁράω +ἐν +αὐτός +γάρ +ὁ +κύριος +ὁ +θεός +ὁ +παντοκράτωρ +καί +ὁ +ἀρνίον +ναός +αὐτός +εἰμί +καί +ὁ +πόλις +οὐ +ἔχω +χρεία +ὁ +ἥλιος +οὐδέ +ὁ +σελήνη +ἵνα +φαίνω +αὐτός +γάρ +ὁ +δόξα +ὁ +θεός +φωτίζω +αὐτός +καί +ὁ +λύχνος +αὐτός +ὁ +ἀρνίον +καί +περιπατέω +ὁ +ἔθνος +διά +ὁ +φῶς +αὐτός +καί +ὁ +βασιλεύς +ὁ +γῆ +φέρω +ὁ +δόξα +αὐτός +εἰς +αὐτός +καί +ὁ +πυλών +αὐτός +οὐ +μή +κλείω +ἡμέρα +γάρ +νύξ +οὐ +εἰμί +ἐκεῖ +καί +φέρω +ὁ +δόξα +καί +ὁ +τιμή +ὁ +ἔθνος +εἰς +αὐτός +καί +οὐ +μή +εἰσέρχομαι +εἰς +αὐτός +πᾶς +κοινός +καί +ὁ +ποιέω +βδέλυγμα +καί +ψεῦδος +εἰ +μή +ὁ +γράφω +ἐν +ὁ +βιβλίον +ὁ +ζωή +ὁ +ἀρνίον +καί +δείκνυμι +ἐγώ +ποταμός +ὕδωρ +ζωή +λαμπρός +ὡς +κρύσταλλος +ἐκπορεύομαι +ἐκ +ὁ +θρόνος +ὁ +θεός +καί +ὁ +ἀρνίον +ἐν +μέσος +ὁ +πλατύς +αὐτός +καί +ὁ +ποταμός +ἐντεῦθεν +καί +ἐκεῖθεν +ξύλον +ζωή +ποιέω +καρπός +δώδεκα +κατά +μήν (II) +ἕκαστος +ἀποδίδωμι +ὁ +καρπός +αὐτός +καί +ὁ +φύλλον +ὁ +ξύλον +εἰς +θεραπεία +ὁ +ἔθνος +καί +πᾶς +κατάθεμα +οὐ +εἰμί +ἔτι +καί +ὁ +θρόνος +ὁ +θεός +καί +ὁ +ἀρνίον +ἐν +αὐτός +εἰμί +καί +ὁ +δοῦλος (II) +αὐτός +λατρεύω +αὐτός +καί +ὁράω +ὁ +πρόσωπον +αὐτός +καί +ὁ +ὄνομα +αὐτός +ἐπί +ὁ +μέτωπον +αὐτός +καί +νύξ +οὐ +εἰμί +ἔτι +καί +οὐ +ἔχω +χρεία +φῶς +λύχνος +καί +φῶς +ἥλιος +ὅτι +κύριος +ὁ +θεός +φωτίζω +ἐπί +αὐτός +καί +βασιλεύω +εἰς +ὁ +αἰών +ὁ +αἰών +καί +λέγω +ἐγώ +οὗτος +ὁ +λόγος +πιστός +καί +ἀληθινός +καί +ὁ +κύριος +ὁ +θεός +ὁ +πνεῦμα +ὁ +προφήτης +ἀποστέλλω +ὁ +ἄγγελος +αὐτός +δείκνυμι +ὁ +δοῦλος (II) +αὐτός +ὅς +γίνομαι +ἐν +τάχος +δεῖ +καί +ὁράω +ἔρχομαι +ταχύς +μακάριος +ὁ +τηρέω +ὁ +λόγος +ὁ +προφητεία +ὁ +βιβλίον +οὗτος +κἀγώ +Ἰωάννης +ὁ +ἀκούω +καί +βλέπω +οὗτος +καί +ὅτε +ἀκούω +καί +βλέπω +πίπτω +προσκυνέω +ἔμπροσθεν +ὁ +πούς +ὁ +ἄγγελος +ὁ +δείκνυμι +ἐγώ +οὗτος +καί +λέγω +ἐγώ +ὁράω +μή +εἰμί +σύνδουλος +σύ +καί +ὁ +ἀδελφός +σύ +ὁ +προφήτης +καί +ὁ +τηρέω +ὁ +λόγος +ὁ +βιβλίον +οὗτος +ὁ +θεός +προσκυνέω +καί +λέγω +ἐγώ +μή +σφραγίζω +ὁ +λόγος +ὁ +προφητεία +ὁ +βιβλίον +οὗτος +γάρ +ὁ +καιρός +ἐγγύς +εἰμί +ὁ +ἀδικέω +ἀδικέω +ἔτι +καί +ὁ +ῥυπαρός +ῥυπαίνω +ἔτι +καί +ὁ +δίκαιος +δικαιοσύνη +ποιέω +ἔτι +καί +ὁ +ἅγιος +ἁγιάζω +ἔτι +ὁράω +ἔρχομαι +ταχύς +καί +ὁ +μισθός +ἐγώ +μετά +ἐγώ +ἀποδίδωμι +ἕκαστος +ὡς +ὁ +ἔργον +αὐτός +εἰμί +ἐγώ +ὁ +ἄλφα +καί +ὁ +Ὦ +ὁ +πρῶτος +καί +ὁ +ἔσχατος +ὁ +ἀρχή +καί +ὁ +τέλος +μακάριος +ὁ +πλύνω +ὁ +στολή +αὐτός +ἵνα +εἰμί +ὁ +ἐξουσία +αὐτός +ἐπί +ὁ +ξύλον +ὁ +ζωή +καί +ὁ +πυλών +εἰσέρχομαι +εἰς +ὁ +πόλις +ἔξω +ὁ +κύων +καί +ὁ +φάρμακος +καί +ὁ +πόρνος +καί +ὁ +φονεύς +καί +ὁ +εἰδωλολάτρης +καί +πᾶς +φιλέω +καί +ποιέω +ψεῦδος +ἐγώ +Ἰησοῦς +πέμπω +ὁ +ἄγγελος +ἐγώ +μαρτυρέω +σύ +οὗτος +ἐπί +ὁ +ἐκκλησία +ἐγώ +εἰμί +ὁ +ῥίζα +καί +ὁ +γένος +Δαυίδ +ὁ +ἀστήρ +ὁ +λαμπρός +ὁ +πρωϊνός +καί +ὁ +πνεῦμα +καί +ὁ +νύμφη +λέγω +ἔρχομαι +καί +ὁ +ἀκούω +λέγω +ἔρχομαι +καί +ὁ +διψάω +ἔρχομαι +ὁ +θέλω +λαμβάνω +ὕδωρ +ζωή +δωρεάν +μαρτυρέω +ἐγώ +πᾶς +ὁ +ἀκούω +ὁ +λόγος +ὁ +προφητεία +ὁ +βιβλίον +οὗτος +ἐάν +τὶς +ἐπιτίθημι +ἐπί +αὐτός +ἐπιτίθημι +ὁ +θεός +ἐπί +αὐτός +ὁ +πληγή +ὁ +γράφω +ἐν +ὁ +βιβλίον +οὗτος +καί +ἐάν +τὶς +ἀφαιρέω +ἀπό +ὁ +λόγος +ὁ +βιβλίον +ὁ +προφητεία +οὗτος +ἀφαιρέω +ὁ +θεός +ὁ +μέρος +αὐτός +ἀπό +ὁ +ξύλον +ὁ +ζωή +καί +ἐκ +ὁ +πόλις +ὁ +ἅγιος +ὁ +γράφω +ἐν +ὁ +βιβλίον +οὗτος +λέγω +ὁ +μαρτυρέω +οὗτος +ναί +ἔρχομαι +ταχύς +ἀμήν +ἔρχομαι +κύριος +Ἰησοῦς +ὁ +χάρις +ὁ +κύριος +Ἰησοῦς +μετά +πᾶς diff --git a/tf/0.1.1/ln.tf b/tf/0.1.1/ln.tf new file mode 100644 index 0000000..2091850 --- /dev/null +++ b/tf/0.1.1/ln.tf @@ -0,0 +1,126893 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=ln +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +33.38 +10.24 33.19 +93.169a +93.387 +10.30 +93.91 +10.30 +93.7 +93.7 +23.58 +92.24 +93.180 +89.87 +93.180 +23.58 +92.24 +93.157a +89.87 +93.157a +23.58 +92.24 +93.173h +89.92 +92.24 +10.49 +92.11 +89.87 +93.173h +23.58 +92.24 +93.374 +89.92 +92.24 +93.135 +89.3 +92.24 +93.151 +89.87 +93.374 +23.58 +92.24 +93.127 +89.87 +93.127 +23.58 +92.24 +93.35 +89.87 +93.35 +23.58 +92.24 +93.20 +89.87 +93.20 +23.58 +92.24 +93.267 +89.87 +93.267 +23.58 +92.24 +93.323 +89.87 +93.323 +23.58 +92.24 +93.78 +89.3 +92.24 +93.309 +89.87 +93.78 +23.58 +92.24 +93.192 +89.3 +92.24 +93.316 +89.87 +93.192 +23.58 +92.24 +93.166 +89.87 +93.166 +23.58 +92.24 +93.91 +92.24 +37.67 +89.87 +93.91 +23.58 +92.24 +93.344 +89.3 +92.24 +92.24 +93.291 +89.87 +93.344 +23.58 +92.24 +93.313 +89.87 +93.313 +23.58 +92.24 +93.4a +89.87 +93.4a +23.58 +92.24 +93.48 +89.87 +93.48 +23.58 +92.24 +93.200 +89.87 +93.200 +23.58 +92.24 +93.198 +89.87 +93.198 +23.58 +92.24 +93.286 +89.87 +93.286 +23.58 +92.24 +93.185 +89.87 +93.185 +23.58 +92.24 +93.53 +89.87 +93.53 +23.58 +92.24 +93.106 +89.87 +93.106 +23.58 +92.24 +93.251b +89.87 +93.251b +23.58 +92.24 +93.23a +89.87 +93.23a +23.58 +92.24 +93.204 +89.87 +93.204 +23.58 +92.24 +93.168 +89.92 +92.24 +10.49 +92.11 +67.33 +92.24 +85.83 +93.420 +89.87 +67.48 +92.24 +85.83 +93.420 +93.168 +23.58 +92.24 +93.320 +89.87 +93.320 +23.58 +92.24 +93.140 +89.87 +93.140 +23.58 +92.24 +93.6 +89.87 +93.6 +23.58 +92.24 +93.108a +89.87 +93.108a +23.58 +92.24 +93.14 +89.87 +93.14 +23.58 +92.24 +93.318 +89.87 +93.318 +23.58 +92.24 +93.55 +89.87 +93.55 +23.58 +92.24 +93.110 +89.87 +93.110 +23.58 +92.24 +93.107 +89.87 +93.107 +23.58 +92.24 +93.256 +89.87 +93.256 +23.58 +92.24 +93.157b +89.87 +93.157b +23.58 +92.24 +93.202b +92.24 +10.53 +93.253a +89.3 +92.27 +23.52 +93.169a +92.24 +33.129 +93.387 +89.50 +59.23 +92.24 +10.28 +67.131 +93.7 +67.119 +93.91 +10.28 +60.22 +89.87 +67.131 +93.91 +67.119 +92.24 +85.83 +93.420 +10.28 +60.22 +89.87 +67.131 +92.24 +85.83 +93.420 +67.119 +92.24 +53.82 +10.28 +60.22 +277 92.24 +93.169a +93.387 +92.24 +23.46 +61.10 +13.4 +34.74 +92.24 +10.16 +92.11 +93.253a +92.24 +93.202b +67.17 +293 23.61 +92.11 +27.1 +23.50 +23.50 +23.50 +90.16 +12.18 +88.24 +89.87 +93.202b +92.24 +10.53 +92.11 +88.12 +13.1 +89.92 +69.3 +25.1 +92.11 +25.200 +30.56 +28.71 +34.78 +92.11 +89.124 +92.29 +92.11 +30.1 +91.13 +12.28 +12.9{N:001} +326 33.486 +24.18 +92.11 +33.69 +93.202b +10.30 +93.91 +69.3 +25.252 +34.53 +93.253a +92.24 +10.54 +92.6 +89.23 +92.24 +83.13 +92.11 +23.58 +90.16 +12.18 +88.24 +13.1 +89.94 +23.52 +10.42 +89.87 +33.129 +92.24 +33.126 +92.11 +93.169a +89.23 +92.11 +21.27 +92.24 +11.12 +92.11 +89.122 +92.24 +88.310 +92.11 +369 92.29 +63.1 +13.107 +89.59 +13.106 +92.24 +33.69 +90.1 +12.9{N:001} +90.4 +92.24 +53.79 +33.69 +91.13 +92.24 +9.39 +23.50 +23.50 +23.50 +89.87 +23.52 +10.42 +89.87 +33.131 +92.24 +33.126 +92.11 +93.115 +89.106 +89.106 +33.145 +89.108 +92.4 +92.24 +12.1 +405 92.24 +93.202b +23.74 +90.15 +92.24 +23.66 +42.7 +64.12 +33.325 +92.11 +92.24 +12.28 +12.9{N:001} +419 34.53 +92.24 +10.54 +92.11 +89.87 +69.3 +23.61 +92.11 +67.119 +429 23.52 +10.42 +89.87 +33.129 +92.24 +33.126 +92.11 +93.169a +438 92.24 +93.169a +23.52 +83.13 +93.431 +92.24 +93.486a +67.136 +67.142 +93.144a +92.24 +37.67 +91.13 +32.40 +84.3 +82.1 +15.86 +84.22 +93.480a +33.69 +83.6 +85.1 +92.24 +23.52 +37.67 +92.24 +93.172 +89.23 +24.1 +92.11 +92.24 +1.30 +83.13 +92.24 +15.104 82.1 +89.87 +15.81 +53.56 +92.11 +478 33.212 +92.24 +37.67 +93.144a +25.244 +89.92 +59.23 +93.480a +89.108 +92.11 +89.87 +15.125 +59.23 +92.24 +53.88 +89.92 +53.94 +92.24 +11.12 +33.181 +90.14 +92.11 +83.6 +92.24 +53.82 +23.52 +89.87 +92.24 +33.69 +92.11 +83.13 +93.431 +92.24 +93.486a +89.23 +61.9 +33.54 +90.4 +92.24 +53.79 +89.93 +93.431 +1.79 +93.488 +92.6 +69.6 +87.66 +13.1 +83.9 +92.24 +37.59 +93.488 +89.23 +89.3 +92.6 +15.40 +37.58 +92.18 +36.2 +92.24 +11.12 +92.1 +92.24 +93.182b +67.47 +93.144a +28.71 +33.307 +92.24 +32.40 +27.9 +90.14 +92.11 +92.24 +67.78 +92.24 +24.18 +1.30 +89.87 +15.66 +92.11 +84.16 +93.431 +33.69 +15.34 +27.37 +72.19 +90.24 +92.24 +9.42 +89.87 +67.31 +27.27 +33.198 +92.1 +89.59 +89.93 92.1 +15.81 +53.56 +92.11 +579 92.24 +24.63 +92.24 +37.67 +15.34 +89.87 +91.13 +92.24 +1.30 +92.27 +24.1 +83.13 +92.24 +82.1 +15.143 +92.11 +84.19 +15.81 +85.8 +83.49 +83.5 +85.1 +92.24 +9.42 +89.87 +24.1 +92.24 +1.30 +25.125 +25.123 +78.2 +78.19 +89.87 +15.81 +84.22 +92.24 +7.3 +24.1 +92.24 +9.42 +89.108 +93.253a +92.24 +10.16 +92.11 +89.87 +17.22 +53.56 +92.11 +89.87 +79.110 +92.24 +6.140 65.10 +92.11 +57.80 +92.11 +57.84 +2.49 +89.92 +6.212 +89.92 +6.208 +89.87 +28.39 +644 33.486 +69.3 +15.89 +84.18 +93.144a +84.29 +58.37 +1.99 +15.89 +84.16 +92.24 +1.79 +92.11 +658 15.89 +92.11 +91.13 +12.28 +12.9{N:001} +24.18 +665 33.486 +92.24 +93.202b +33.69 +23.74 +15.168 +92.24 +9.42 +89.92 +92.24 +10.16 +92.11 +89.87 +15.61 +84.16 +93.398 +89.87 +85.1 +83.2 +67.119 +71.8 +33.69 +92.6 +89.23 +67.62 +93.144a +27.41 +92.24 +9.42 +92.24 +20.31 +92.11 +698 92.24 +17.9 +15.168 +92.24 +9.42 +89.92 +92.24 +10.16 +92.11 +67.192 +89.87 +15.53 +84.22 +93.398 +89.87 +85.1 +83.2 +67.119 +92.24 +23.102 +93.144a +89.59 +13.106 +92.24 +33.69 +90.1 +12.9{N:001} +90.4 +92.24 +53.79 +33.69 +84.4 +93.398 +33.307 +92.24 +12.15 +92.1 +67.47 +93.144a +27.5 +90.21 +88.156 +90.1 +92.24 +32.40 +88.179 +78.1 +89.87 +15.66 +20.71 +59.23 +92.24 +9.41 +92.24 +83.13 +93.431 +89.92 +83.13 +59.23 +92.24 +1.79 +92.11 +67.131 +67.170 +89.92 +59.16 +89.8 +92.24 +67.78 +92.27 +27.9 +90.14 +92.24 +32.40 +67.47 +13.106 +92.24 +33.69 +90.4 +93.165 +92.24 +53.79 +33.69 +83.13 +93.558 +24.52 +33.80 +25.138 33.116 +89.92 +52.3 +78.3 +93.310 +25.138 +92.24 +10.36 +92.11 +89.92 +69.3 +30.58 +25.150 +89.33 +69.3 +13.69 +802 23.102 +92.24 +93.144a +91.13 +12.28 +12.9{N:001} +24.18 +810 33.486 +92.24 +93.202b +83.13 +93.398 +33.69 +23.74 +15.168 +92.24 +9.42 +89.92 +92.24 +10.16 +92.11 +89.87 +15.18 +84.22 +1.79 +93.182b +89.23 +23.99 +92.24 +20.66 +92.24 +23.88 +92.24 +9.42 +838 92.24 +23.74 +15.168 +92.24 +9.42 +89.92 +92.24 +10.16 +92.11 +89.87 +15.93 +84.22 +1.79 +93.182b +89.124 +33.212 +90.21 +93.45 +37.64 +92.24 +93.486a +57.145 +92.24 +10.14 +92.11 +93.144a +25.252 +83.2 +15.37 +868 28.39 +870 33.486 +15.53 +84.22 +92.24 +1.79 +92.24 +93.444a +89.87 +15.81 +85.69 +83.13 +1.88 +33.129 +93.536 +89.59 +13.106 +92.24 +33.69 +90.4 +92.24 +53.79 +90.21 +93.538 +33.129 +895 67.136 +92.24 +67.142 +92.30 +85.7 +93.190a +92.24 +53.42 +33.256 +83.13 +92.24 +1.86 +92.24 +93.486a +33.69 +41.52 +89.23 +67.21 +92.24 +37.64 +92.24 +12.16 +89.23 +92.29 +13.4 +92.24 +33.69 +90.4 +93.147 +92.24 +53.79 +33.69 +33.103 +33.81 +83.13 +92.24 +1.86 +77.3 +92.24 +1.99 +12.9{N:001} +79.88 +13.9 +92.24 +1.100 +92.11 +942 92.37 +92.24 +93.190a +49.13 +92.24 +6.162 +92.11 +89.142 +8.12 +4.30 +89.92 +6.178 +6.185 +83.18 +92.24 +8.42 +92.11 +89.94 +92.24 +5.1 +92.11 +13.4 +4.47 +89.92 +5.20 + +67.47 +15.40 +84.18 +92.11 +93.480a +89.92 +59.23 +92.24 +93.486b +89.92 +59.23 +92.24 +1.80 +92.24 +93.485 +89.87 +53.41 +83.13 +92.24 +93.485 +1.76 +90.1 +92.11 +33.275 +92.24 +88.310 +92.11 +89.87 +24.1 +59.1 +92.24 +11.49 +89.92 +11.48 +15.81 +89.60 +92.24 +53.41 +33.69 +92.11 +23.53 58.26 +88.123 +92.14 +28.47 +92.7 +21.14 +84.3 +92.24 +67.135 +38.10 +89.50 91.7 +13.86 +13.86 +65.17 +92.24 +41.52 +89.92 +69.3 +31.29 +31.5 +1030 10.20 +1032 92.24 +93.7 +89.23 +33.69 +92.7 +90.21 +74.5 +92.24 +12.1 +90.16 +92.24 +2.24 +92.29 +13.83 +10.28 +92.24 +93.7 +89.94 +67.20 +92.24 +6.217 +83.24 +92.24 +3.47 +92.24 +3.2 +85.3 +89.50 91.7 +59.23 +3.2 +69.3 +23.199 +23.199 3.33 +65.22 +19.18 +89.87 +84.22 +2.5 +15.215 +89.136 +92.1 +92.7 +53.41 +83.13 +2.7 +13.62 +41.52 +89.136 +92.24 +1082 92.1 +15.81 +87.44 +92.1 +13.1 +92.27 +69.3 +13.1 +75.2 +92.24 +6.182 +15.188 +92.11 +92.7 +53.49 +90.10 90.6 +12.18 +88.24 +89.92 +2.3 +92.27 +92.24 +6.6 +83.13 +92.24 +8.30 +92.11 +89.87 +79.51 +92.24 +3.43 7.65 +92.11 +89.87 +15.125 +92.24 +3.41 +92.11 +84.22 +92.24 +7.25 +89.124 +92.24 +3.57 +14.66 +2.3 +14.71 +67.47 +15.86 +92.24 +93.169a +84.3 +92.24 +93.444a +84.17 +92.24 +93.485 +84.18 +92.24 +93.190a +92.24 +53.41 +90.1 +92.11 +89.124 +92.24 +13.146 +92.11 +33.69 +92.1 +71.23 +1153 90.1 +92.6 +53.41 +91.12 +92.6 +15.81 +84.18 +92.1 +1162 33.184 +92.24 +93.169a +33.69 +1167 13.140 +67.38 +89.23 +61.9 +66.1 +13.1 +92.4 +13.106 +59.23 +88.13 +67.47 +13.140 +92.11 +1181 53.41 +92.24 +93.169a +67.53 +15.101 +84.3 +92.24 +2.7 +89.87 +91.13 +79.110 +92.24 +1.11 +89.87 +24.1 +12.18 +12.1 +15.107 +64.12 +4.44 +15.81 +83.46 +92.11 +89.87 +91.13 +33.103 +89.3 +92.24 +1.11 +33.69 +92.29 +13.4 +92.24 +12.15 +92.1 +92.24 +58.53 +89.5 +92.27 +25.87 +67.47 +92.24 +93.169a +15.176 +84.22 +92.24 +1.86 +90.1 +92.24 +12.18 +88.308 +90.1 +92.24 +12.34 +89.87 +53.65 +67.93 +67.93 +1240 67.93 +67.93 +67.50 +23.29 +89.87 +15.77 +92.24 +12.36 +33.69 +92.11 +89.65 +13.4 +12.15 +92.24 +12.15 +33.69 +90.22 +92.24 +2.24 +92.29 +5.8 +13.48 +89.124 +92.24 +33.28 +33.69 +33.54 +69.3 +90.9 +5.8 +58.51 +23.88 +92.24 +9.1 +89.125 +90.9 +59.23 +33.98 +15.40 +84.29 +33.74 +12.1 +67.47 +15.168 +92.11 +92.24 +12.34 +84.16 +92.24 +53.46 +1.89 +89.87 +85.40 +92.11 +83.46 +92.24 +7.53 +92.24 +7.16 +89.87 +33.69 +92.11 +89.65 +13.4 +12.15 +92.24 +12.15 +15.215 +92.10 +84.26 +89.23 +33.54 +90.21 +92.24 +12.28 +92.11 +33.329 +1318 92.6 +89.92 +83.46 +8.30 +15.203 +92.6 +1326 19.5 +84.23 +2.24 +92.24 +8.49 +92.6 +33.69 +92.11 +92.24 +93.169a +89.129 +33.54 +69.3 +88.308 +12.9{N:001} +92.24 +12.1 +92.6 +67.55 +15.168 +92.11 +92.24 +12.34 +84.16 +1.46 +81.6 +78.1 +89.87 +28.47 +92.11 +59.23 +92.24 +1.82 +92.24 +1.39 +89.92 +92.24 +87.23 +92.11 +89.87 +33.69 +92.11 +92.29 +59.23 +92.6 +57.71 +89.67 +17.22 +53.56 +92.1 +67.47 +33.69 +92.11 +92.24 +93.169a +15.52 +12.34 93.330 +89.23 +33.54 +12.9{N:001} +92.24 +12.1 +92.6 +53.56 +89.92 +92.11 +58.50 +53.14 +67.47 +15.48 +92.11 +92.24 +12.34 +89.87 +91.13 +12.28 +15.77 +89.87 +35.37 +92.11 +1407 33.212 +90.21 +93.190a +37.111 +15.89 +84.22 +92.24 +93.444a +89.87 +15.57 +92.24 +93.536 +15.81 +85.69 +83.13 +93.498 +92.24 +1.71 +83.13 +1.79 +93.473 +89.92 +93.542 +89.59 +13.106 +92.24 +33.69 +90.4 +93.147 +92.24 +53.79 +33.69 +1.79 +93.473 +89.92 +1.79 +93.542 +1.99 +1.70 +83.43 +92.24 +93.485 +93.444a +92.24 +11.37 +92.24 +11.55 +92.24 +85.63 +83.13 +1458 14.36 +78.2 +90.79 +89.92 +92.24 +85.63 +83.13 +1.79 +89.92 +14.61 +23.99 +14.36 +14.41 +92.11 +67.131 +67.47 +68.1 +92.24 +93.169a +33.256 +89.92 +33.69 +41.52 +89.23 +67.21 +92.24 +37.64 +92.24 +12.16 +1488 15.227 +83.25 +92.24 +1.70 +92.24 +93.444b +24.1 +60.11 +10.49 +93.341a +92.24 +33.129 +93.296 +89.92 +93.25 +92.24 +10.49 +92.11 +15.215 +6.12 +84.22 +92.24 +1.70 +89.23 +13.4 +44.10 +89.87 +33.69 +92.11 +84.24 +36.35 +92.1 +89.87 +13.9 +92.7 +44.10 +9.1 +89.87 +92.24 +67.53 +85.45 +92.24 +6.11 +36.31 +92.11 +89.87 +15.16 +84.10 +24.1 +58.37 +60.11 +10.49 +93.158a +92.24 +92.24 +93.137 +89.92 +93.190b +92.24 +10.49 +92.11 +83.13 +92.24 +6.41 +89.108 +93.137 +92.24 +10.14 +92.11 +75.5 +92.24 +6.11 +92.11 +89.87 +33.312 +92.11 +89.87 +92.24 +67.53 +85.45 +92.24 +6.41 +89.92 +92.24 +10.14 +92.11 +36.31 +92.11 +91.1 +15.23 +83.13 +63.1 +92.24 +93.444a +33.224 +83.13 +92.24 +7.20 +92.11 +89.92 +33.256 +92.24 +33.217 +92.24 +37.64 +89.92 +23.139 +58.28 59.23 +23.155 +89.92 +58.28 59.23 +23.154 +83.9 +92.24 +11.1 +89.87 +15.37 +92.24 +33.213 +92.11 +84.22 +63.1 +92.24 +93.589 +89.87 +15.172 +92.11 +59.23 +92.24 +23.148 +23.148 +58.45 +23.155 +89.92 +24.90 +90.65 +12.41 +89.92 +23.169 +89.92 +23.171 +89.87 +23.139 +92.11 +89.87 +15.144 15.156 +92.11 +11.1 +78.3 +84.3 +92.24 +93.444a +89.92 +93.460 +89.92 +93.480a +89.92 +93.486a +89.92 +83.43 +92.24 +93.485 +1651 24.1 +92.24 +11.1 +15.101 +84.16 +92.24 +1.46 +89.87 +17.12 +92.11 +15.77 +92.11 +92.24 +36.38 +92.11 +89.87 +33.29 +92.24 +33.74 +92.11 +33.224 +92.11 +33.69 +25.119 +92.24 +88.57 +92.24 +88.57 +89.33 +92.11 +13.1 +92.24 +37.64 +92.24 +12.16 +25.119 +92.24 +25.142 +89.33 +92.11 +25.150 +25.119 +92.24 +88.60 +89.33 +92.11 +57.131 +92.24 +1.39 +25.119 +92.24 +25.17 +89.92 +25.17 +92.24 +88.13 +89.33 +92.11 +25.82 +25.119 +92.24 +88.77 +89.33 +92.11 +88.76 +25.119 +92.24 +53.29 +92.24 +26.3 +89.33 +92.11 +92.24 +12.1 +24.1 +25.119 +92.24 +40.5 +89.33 +92.11 +9.4 +12.1 +33.131 +25.119 +92.24 +39.45 +89.31 +88.13 +89.33 +92.11 +13.1 +92.24 +37.64 +92.24 +12.16 +25.119 +13.1 +67.31 +33.389 +92.7 +89.92 +39.45 +89.92 +33.69 +59.23 +88.110 +90.31 +92.7 +33.253 +90.43 +92.1 +25.125 +89.92 +25.133 +89.33 +92.24 +38.14 +92.7 +59.11 +83.13 +92.24 +1.11 +89.23 +1775 39.45 +92.24 +53.79 +92.24 +67.17 +92.7 +92.7 +13.4 +92.24 +5.25 +92.24 +9.22 +89.124 +89.67 +92.24 +5.25 +79.44 +89.76 +92.14 +5.28 +90.23 +92.23 +79.64 +67.128 +89.131 +1801 15.215 +84.27 +19.52 +90.1 +92.24 +9.1 +92.7 +13.4 +92.24 +14.36 +92.24 +9.23 +69.3 +74.5 +1.89 +24.29 +83.49 +1.46 +85.3 +69.7 +14.65 +6.104 +89.87 +85.32 +92.11 +83.51 +92.24 +6.151 +89.125 +83.46 +92.24 +6.105 +1834 14.37 +59.23 +92.24 +83.13 +92.24 +7.3 +61.9 +14.37 +92.24 +14.36 +92.7 +83.33 +92.24 +9.1 +89.59 +24.1 +92.7 +92.24 +88.4 +42.11 +89.87 +87.24 +92.24 +12.12 +92.7 +92.24 +83.13 +92.24 +1.11 +69.3 +31.29 +90.21 +15.81 +76.23 +92.24 +33.58 +89.139 +92.24 +33.58 53.79 +69.3 +15.81 +76.23 +89.125 +33.144 +89.23 +72.6 +33.69 +92.7 +67.119 +71.8 +13.93 +92.24 +1.3 +1888 92.24 +1.3 +33.36 +60.10 +89.139 +60.10 +33.37 +69.5 +69.3 +13.93 +89.122 +92.24 +33.55 33.56 +67.119 +71.8 +59.23 +13.107 +89.50 +71.8 +92.27 +36.30 +60.10 +92.24 +33.330 +92.29 +92.24 +65.57 +89.92 +33.224 +61.9 +92.24 +9.1 +65.57 +33.131 +83.13 +92.24 +37.64 +92.24 +12.16 +89.124 +71.8 +92.27 +42.7 +89.92 +33.224 +92.29 +87.22 +33.131 +83.13 +92.24 +37.64 +92.24 +12.16 +89.23 +33.69 +92.7 +90.21 +1947 78.31 +92.7 +92.24 +88.13 +78.28 +92.24 +53.94 +89.92 +11.49 +69.3 +69.3 +90.70 +13.62 +92.24 +37.64 +92.24 +12.16 +33.212 +90.21 +33.69 +92.24 +67.98 +69.3 +20.82 +89.94 +71.8 +92.27 +20.82 +88.313 +13.1 +92.24 +56.1 +89.124 +92.1 +33.69 +92.7 +90.21 +59.23 +92.24 +88.174 +92.24 +11.25 11.89 +92.11 +88.313 +13.1 +92.24 +56.1 +89.94 +71.8 +92.27 +33.69 +92.24 +11.25 11.89 +92.11 +32.61 +88.313 +13.1 +92.24 +11.80 +89.94 +71.8 +92.27 +33.69 +32.55 +88.313 +13.1 +84.22 +92.24 +1.21 +92.24 +2.3 +89.50 +89.67 +57.80 +92.24 +57.84 +92.6 +84.17 +92.24 +6.114 + +29.7 +90.21 +92.24 +11.25 +92.6 +90.65 +92.12 +90.31 +92.6 +85.62 +83.2 +92.24 +57.84 +92.6 +83.33 +92.24 +6.114 +89.87 +15.35 +67.18 +40.2 +92.24 +11.25 +92.6 +89.87 +67.47 +15.7 +57.80 +92.24 +57.84 +92.6 +2060 30.23 31.20 56.3 +92.24 +56.11 +92.6 +67.110 +67.139 +92.18 +85.1 +89.108 +92.11 +67.136 +92.24 +15.19 +2075 92.6 +37.111 +92.24 +56.11 +92.24 +56.28 +89.87 +92.24 +56.28 +92.24 +35.20 +89.87 +84.22 +7.24 +15.215 +72.6 +33.69 +92.6 +69.5 +69.5 +15.40 +84.10 +67.119 +71.8 +57.153 +92.24 +61.13 +6.78 +33.212 +90.21 +33.69 +69.3 +88.276 +89.124 +92.1 +33.69 +92.7 +90.21 +59.23 +92.24 +24.7 +9.34 +89.60 +92.24 +25.20 +92.11 +67.20 +88.276 +92.11 +83.13 +92.24 +26.3 +92.11 +89.94 +89.65 +92.24 +8.23 +92.6 +92.24 +82.8 +88.304 +92.6 +85.43 +92.11 +89.87 +15.215 +84.3 +92.6 +89.23 +65.44 +92.6 +91.15 +57.68 +60.10 +92.24 +8.9 +92.6 +89.92 +69.3 +63.1 +92.24 +8.1 +92.6 +15.215 +13.62 +1.21 +89.92 +89.65 +92.24 +82.8 +92.6 +8.30 +88.304 +92.6 +19.18 +92.11 +89.87 +15.215 +84.3 +92.6 +89.23 +65.44 +92.6 +90.22 +57.68 +60.10 +92.24 +8.9 +92.6 +89.92 +69.3 +63.1 +92.24 +8.1 +92.6 +84.22 +1.21 +15.37 +2194 33.69 +71.8 +92.27 +34.78 +92.24 +10.54 +92.11 +57.71 +92.11 +33.41 +89.124 +92.1 +33.69 +92.7 +90.21 +59.23 +92.24 +34.78 +92.24 +10.54 +92.11 +58.38 +89.18 +88.271 +13.9 +92.11 +88.276 +89.92 +71.8 +92.27 +34.78 +34.66 +88.276 +89.97 +33.212 +90.21 +33.69 +92.24 +67.98 +69.3 +33.464 33.465 +89.124 +13.136 +92.24 +12.9{N:001} +92.24 +33.463 +92.6 +89.124 +92.1 +33.69 +92.7 +69.3 +33.463 +70.1 78.44 +69.9 +90.30 +92.24 +1.11 +89.33 +13.1 +6.112 +92.24 +12.1 +69.9 +90.30 +92.24 +1.39 +89.33 +13.4 +6.117 +92.24 +37.8 8.49 +92.11 +69.9 +90.30 +93.480a +89.33 +13.4 +1.89 +92.24 +78.2 +37.67 +69.9 +90.30 +92.24 +8.10 +92.6 +33.463 +89.33 +69.3 +74.5 +60.10 +8.12 +13.9 +79.27 +89.139 +79.26 +89.124 +13.4 +92.24 +33.98 +92.7 +69.1 +69.1 +69.2 +69.2 +2302 92.24 +59.51 +92.29 +90.16 +92.24 +88.110 +13.1 +33.212 +90.21 +33.69 +8.23 +57.145 +8.23 +89.92 +8.20 +57.145 +8.20 +89.124 +92.1 +33.69 +92.7 +69.3 +39.18 +92.24 +88.110 +89.125 +92.18 +92.6 +19.4 +83.47 +92.24 +82.8 +8.22 +92.6 +16.14 +92.11 +89.93 +92.24 +58.37 +89.92 +92.24 +25.1 +92.6 +56.30 +89.87 +92.24 +6.176 +92.6 +57.55 +13.140 +92.11 +89.93 +92.24 +6.172 +89.92 +92.18 +92.6 +37.34 +81.29 +60.10 +15.15 +89.108 +92.11 +60.11 +92.24 +33.163 +92.6 +57.71 +89.92 +92.24 +25.1 +90.15 +92.6 +57.213 +69.3 +35.18 68.44 +33.212 +90.21 +33.69 +25.43 +92.24 +11.89 +92.6 +89.92 +88.198 +92.24 +39.11 +92.6 +89.124 +92.1 +33.69 +92.7 +25.43 +92.24 +39.11 +92.7 +89.92 +33.178 +90.36 +92.24 +39.45 +92.7 +89.59 +13.48 +9.4 +92.24 +12.12 +92.7 +92.24 +83.13 +1.11 +89.33 +92.24 +1.28 +92.11 +15.104 +84.17 +88.110 +89.92 +88.1 +89.92 +14.11 +84.17 +88.12 +89.92 +88.20 +89.23 +89.67 +25.43 +92.24 +25.43 +92.7 +92.14 +38.14 +57.1 +69.12 +2439 92.24 +57.184 +92.24 +58.31 +42.7 +89.92 +89.67 +34.55 +92.24 +11.25 +92.7 +2451 92.14 +58.57 +42.7 +69.12 +2456 92.24 +11.38 +92.24 +58.31 +42.7 +89.50 +13.1 +92.7 +88.36 +64.12 +92.24 +12.12 +92.7 +92.24 +1.12 +88.36 +13.1 +2474 27.59 +92.24 +53.4 57.111 +92.7 +69.3 +41.7 +83.33 +92.24 +9.1 +89.60 +92.24 +24.14 +92.11 +2490 38.14 +69.3 +57.1 +89.111 +92.24 +12.12 +92.7 +92.24 +83.13 +92.24 +1.11 +89.50 +67.31 +90.45 +57.111 +69.3 +6.90 6.92 +83.33 +92.6 +64.13 +92.24 +88.228 +42.7 +83.13 +92.24 +7.20 +89.92 +83.13 +92.24 +1.104 +89.59 +33.357 87.8 +90.1 +92.24 +9.1 +72.6 +33.69 +92.7 +57.137 +92.24 +38.14 +92.11 +89.124 +92.6 +90.45 +57.111 +28.74 +27.2 +92.24 +8.33 82.7 +2542 90.45 +92.24 +8.32 +2546 89.59 +13.1 +92.6 +92.24 +57.111 +28.71 +92.24 +28.69 28.71 +89.87 +92.24 +12.12 +92.6 +92.24 +24.7 +28.71 +92.24 +28.69 28.71 +38.16 +92.6 +89.92 +67.31 +33.178 +69.3 +13.1 +64.12 +92.24 +88.228 +89.33 +25.103 +83.13 +92.24 +7.20 +89.92 +83.47 +92.24 +79.107 +92.24 +1.103 +17.1 +33.178 +89.59 +24.18 +92.24 +9.1 +72.6 +33.69 +92.7 +57.137 +92.24 +38.14 +92.11 +89.124 +67.31 +92.6 +33.178 +15.93 +84.22 +92.24 +7.28 +92.6 +89.87 +79.112 +92.24 +7.49 +92.6 +33.178 +92.24 +12.12 +92.6 +92.24 +28.71 +92.24 +28.69 28.71 +89.87 +92.24 +12.12 +92.6 +92.24 +24.7 +28.71 +92.24 +28.69 28.71 +38.16 +92.6 +2631 33.178 +69.3 +33.88 33.89 +64.13 +92.24 +11.38 +89.23 +31.29 +90.21 +89.26 +92.24 +33.87 +92.11 +24.60 +89.50 +69.3 +64.4 +92.11 +89.23 +28.1 +92.24 +12.12 +92.7 +92.27 +57.40 +2657 67.17 +92.24 +92.7 +33.163 +92.11 +89.50 +61.9 +33.178 +92.7 +12.12 +92.4 +92.24 +83.13 +92.24 +1.11 +88.27 +92.24 +33.126 +92.6 +13.117 +92.24 +37.64 +92.6 +13.48 +92.24 +30.59 +92.6 +64.12 +83.13 +1.11 +89.93 +83.46 +1.39 +92.24 +5.1 +92.4 +92.24 +67.183 67.206 +57.71 +92.4 +67.205 +89.92 +40.8 +92.4 +92.24 +88.299 +92.4 +64.12 +89.93 +92.4 +40.8 +92.24 +88.300 +92.4 +89.92 +69.3 +90.93 +92.4 +13.62 +88.308 +89.125 +21.23 +92.4 +89.122 +92.24 +12.35 +89.23 +89.67 +40.8 +92.24 +9.1 +92.24 +88.297 +92.11 +40.8 +89.93 +92.7 +92.24 +12.12 +92.7 +92.24 +1.12 +89.124 +2742 40.8 +92.24 +9.1 +69.7 +92.24 +12.12 +92.7 +40.8 +92.24 +88.297 +92.7 +89.94 +67.31 +53.65 +69.3 +41.1 +64.12 +92.24 +88.228 +25.287 +89.23 +79.17 +92.24 +8.18 +92.11 +89.59 +28.55 +92.24 +9.1 +53.65 +72.6 +33.69 +92.7 +57.137 +92.24 +38.14 +92.11 +89.124 +92.6 +53.65 +47.14 +92.6 +92.24 +8.10 +89.92 +92.24 +8.18 +92.6 +47.9 +89.59 +69.3 +28.55 +92.24 +9.1 +53.65 +89.125 +92.24 +12.12 +92.6 +92.24 +13.8 +92.24 +28.72 +89.87 +92.24 +12.12 +92.6 +92.24 +24.7 +13.8 +92.24 +28.72 +38.16 +92.6 +69.3 +65.11 +92.7 +65.10 +83.46 +92.24 +1.39 +83.5 +4.49 +89.92 +2.62 +20.46 +89.92 +83.5 +57.233 +19.41 +89.87 +57.232 +89.124 +65.11 +92.7 +65.10 +83.13 +1.11 +83.5 +69.9 +4.49 +69.9 +2.62 +20.46 +89.92 +83.5 +57.233 +69.3 +19.41 +69.7 +57.232 +89.23 +83.5 +85.1 +92.24 +65.10 +92.6 +83.2 +85.1 +89.93 +92.24 +26.3 +92.6 +92.24 +6.104 +92.24 +8.1 +13.4 +92.24 +8.23 +89.50 +89.67 +13.1 +92.24 +8.23 +92.6 +23.132 57.107 +63.1 +92.24 +8.1 +92.6 +14.51 +13.1 +89.124 +89.67 +92.24 +57.108 +92.6 +23.149 57.108 88.110 +13.1 +63.1 +92.24 +8.1 +92.6 +14.54 +13.1 +89.50 +89.65 +92.24 +14.36 +92.24 +13.8 +92.6 +88.125 +13.4 +92.24 +88.125 +78.13 +92.23 +74.5 +60.11 +37.51 57.12 +35.27 +89.23 +89.140 +92.24 +2919 88.198 +2921 92.24 +58.37 +25.43 +89.140 +2926 34.24 +2928 92.24 +58.37 +88.192 +69.3 +74.5 +12.1 +35.27 +89.92 +57.34 +2939 33.69 +92.7 +69.3 +25.225 +92.24 +23.88 +92.7 +92.14 +23.1 +89.139 +92.14 +23.34 +69.7 +92.24 +8.1 +92.7 +92.14 +49.1 +69.12 +92.24 +23.88 +78.28 +13.1 +92.24 +5.1 +89.92 +92.24 +8.1 +92.24 +6.162 +24.9 30.1 +90.23 +92.24 +4.41 +92.24 +4.41 +90.21 +69.3 +43.6 +69.7 +43.14 +69.7 +15.125 +84.22 +7.25 +91.12 +92.24 +12.12 +92.7 +92.24 +1.12 +23.6 +92.11 +69.3 +92.7 +78.28 +65.6 +92.11 +89.94 +92.14 +63.20 +92.7 +25.225 +74.5 +59.72 +84.17 +92.24 +67.151 81.4 +92.11 +81.25 +60.10 +89.92 +89.6 +6.162 +92.15 +25.225 +30.30 +92.24 +3.32 +92.24 +1.95 +92.16 +23.188 48.1 +69.3 +42.47 +69.7 +48.2 +89.124 +33.69 +92.7 +90.21 +69.8 +93.344 +13.8 +59.23 +92.24 +79.18 87.23 +92.11 +49.3 49.5 +64.12 +92.22 +92.29 +89.124 +89.30 +92.24 +3.15 +92.24 +1.95 +67.205 +13.69 +89.87 +67.207 +84.22 +7.74 +15.215 +92.24 +12.1 +61.9 +49.3 49.5 +69.11 +59.11 +78.28 +92.7 +31.96 +89.50 +69.3 +25.225 +33.69 +92.14 +23.1 +89.139 +92.14 +23.34 +89.139 +92.14 +49.3 +89.23 +59.23 +92.29 +92.24 +11.37 +25.9 +89.23 +28.1 +92.24 +12.12 +92.7 +92.24 +1.12 +90.21 +57.39 +92.29 +59.23 +89.124 +25.9 +67.18 +92.24 +37.64 +89.92 +92.24 +88.13 +92.11 +3102 92.29 +59.23 +57.78 +92.7 +89.50 +69.3 +25.225 +90.23 +92.24 +67.207 +89.23 +92.24 +67.207 +25.225 +92.25 +59.45 +92.24 +67.186 +92.24 +22.5 +92.11 +69.3 +56.30 +89.59 +69.3 +56.30 +89.23 +90.10 +92.27 +56.30 +56.30 +56.30 +89.92 +90.10 +92.27 +81.1 +57.92 +57.92 +92.7 +3142 92.15 +24.7 +92.24 +3.66 +92.24 +83.13 +92.24 +8.23 +92.24 +11.89 +92.6 +89.124 +92.24 +83.13 +92.24 +92.8 +8.23 +7.78 +69.3 +30.43 +89.139 +92.16 +33.69 +92.24 +11.89 +92.6 +13.140 +15.44 +92.24 +3.66 +84.4 +92.24 +8.23 +92.6 +89.92 +91.13 +92.24 +7.78 +83.13 +92.24 +8.23 +92.6 +88.228 +15.44 +67.18 +84.4 +92.24 +8.23 +92.6 +92.24 +7.78 +3194 67.47 +24.35 +15.44 +92.24 +3.66 +84.4 +92.24 +8.23 +92.24 +11.89 +92.6 +69.3 +57.71 +92.24 +53.46 +92.24 +4.34 +69.7 +15.215 +92.24 +2.43 +92.7 +83.33 +92.24 +4.36 +3221 19.52 +92.11 +90.10 +92.24 +8.49 +92.11 +89.87 +16.14 +19.31 +92.7 +33.163 +3233 57.71 +92.7 +27.41 +3237 27.27 +19.12 +3240 79.110 +92.7 +89.23 +59.23 +92.24 +33.163 +57.125 +89.92 +92.24 +27.41 +27.27 +89.92 +92.24 +19.12 +79.110 +89.139 +13.4 +63.20 +92.7 +92.14 +9.24 +92.27 +33.163 +92.24 +10.42 +92.11 +5.8 +69.3 +2.24 +57.75 +92.11 +89.139 +89.93 +4.59 +33.163 +69.3 +4.52 +57.75 +92.11 +89.50 +89.65 +92.7 +88.110 +13.1 +28.7 +57.73 +65.20 +57.71 +92.24 +10.36 +92.7 +59.17 +78.28 +92.24 +12.12 +92.7 +92.24 +83.13 +92.24 +1.11 +57.71 +65.20 +92.24 +33.163 +92.11 +89.50 +59.23 +71.8 +59.19 +25.1 +90.22 +41.7 +92.7 +92.24 +9.1 +61.9 +89.93 +92.7 +41.7 +92.11 +89.23 +92.29 +13.4 +92.24 +33.58 +3326 92.24 +33.58 53.79 +90.70 +84.29 +92.24 +81.19 +7.48 +89.33 +81.16 +92.24 +7.48 +89.92 +81.18 +92.24 +1.99 +92.24 +84.33 +89.48 +92.24 +20.31 +89.92 +59.1 +13.1 +92.24 +90.70 +84.29 +92.11 +3354 81.19 +92.24 +7.48 +89.92 +22.21 +92.24 +41.16 +92.24 +84.33 +89.48 +92.24 +23.88 +89.92 +59.3 +13.1 +92.24 +27.27 +92.11 +27.59 +3374 92.24 +53.81 +3377 88.233 +84.18 +92.7 +3381 6.162 +4.22 +89.124 +26.2 +13.4 +88.121 +20.4 57.239 +90.11 +92.24 +42.13 +92.11 +27.61 +92.11 +69.16 +18.10 +84.3 +3.17 +3.38 +89.139 +84.3 +3.17 +3.36 +61.9 +59.23 +3.2 +65.20 +23.199 3.33 +65.22 +23.199 +89.124 +92.24 +65.28 +3.2 +23.199 3.33 +65.27 +23.199 +69.3 +74.5 +3.2 +65.20 +23.199 3.33 +65.27 +23.199 +69.7 +3.2 +65.28 +23.199 3.33 +65.22 +23.199 +59.23 +3.2 +69.3 +23.199 +23.199 3.33 +65.22 +19.18 +89.87 +84.22 +2.5 +15.215 +3442 90.11 +92.24 +42.13 +92.11 +27.61 +92.11 +69.3 +59.23 +92.24 +33.131 +92.1 +12.9{N:001} +12.9{N:001} +90.70 +13.62 +92.24 +37.64 +92.24 +12.16 +89.125 +92.24 +42.7 +92.24 +25.2 +92.24 +12.12 +92.1 +92.24 +83.13 +92.24 +1.11 +59.1 +33.69 +92.1 +67.33 +92.30 +92.24 + +12.9{N:001} +12.9{N:001} +69.11 +92.24 +92.8 +33.126 +33.459 +89.92 +92.24 +92.8 +33.126 +12.37 +53.102 +89.92 +92.24 +92.8 +33.126 +76.7 +59.1 +90.45 +89.87 +67.47 +33.221 +92.11 +90.21 +67.10 +31.27 +92.7 +15.51 +89.122 +92.1 +92.24 +13.9 90.47 +92.24 +88.139 +89.50 +59.23 +92.18 +31.56 +92.1 +92.24 +33.98 +92.29 +89.87 +42.7 +92.11 +64.4 +9.24 +32.31 +92.18 +45.1 +92.11 +92.24 +7.3 +83.46 +92.24 +2.21 +89.87 +15.107 +92.24 +14.10 +89.87 +15.81 +92.24 +1.76 +89.92 +14.4 +92.24 +14.4 +89.87 +19.11 +92.24 +7.3 +92.30 +3555 69.3 +15.119 +89.23 +7.42 +83.46 +92.24 +2.21 +89.92 +59.23 +92.24 +33.212 +92.1 +92.24 +33.98 +92.29 +3571 69.3 +42.7 +92.11 +64.4 +9.24 +32.55 +92.18 +45.1 +92.11 +92.24 +7.3 +83.46 +92.24 +2.28 +89.87 +15.107 +92.24 +14.10 +89.87 +15.81 +92.24 +1.76 +89.92 +14.4 +92.24 +14.4 +89.92 +19.5 +92.24 +7.3 +92.30 +89.87 +15.119 +3605 13.1 +92.24 +20.50 +92.11 +78.2 +91.1 +13.107 +67.30 +68.22 +92.24 +93.169a +92.24 +33.98 +92.29 +25.219 +92.24 +11.1 +89.27 +92.24 +33.224 33.236 +92.11 +89.23 +3628 33.224 +92.11 +64.12 +37.35 +3633 89.92 +69.3 +64.12 +92.24 +53.94 +92.11 +3640 15.107 +92.11 +84.3 +92.24 +1.46 +15.144 +92.11 +11.1 +78.3 +89.87 +91.13 +23.162 +15.77 +17.21 +92.11 +33.69 +12.9{N:001} 87.53 +89.67 +30.58 +74.5 +92.1 +23.137 +89.87 +16.19 +92.24 +8.30 +24.73 +92.11 +33.69 +30.58 +23.137 53.28 +89.87 +67.53 +23.137 53.28 +92.11 +92.24 +23.161 +89.87 +33.69 +92.11 +92.24 +93.169a +30.45 +92.23 +33.69 +89.125 +15.35 +92.10 +28.47 +92.24 +53.87 +89.87 +57.80 +92.24 +57.84 +92.27 +33.325 +93.266 +89.57 +33.262 +92.11 +3702 15.93 +92.11 +84.22 +93.498 +15.77 +92.11 +55.16 +33.168 +92.11 +89.92 +33.69 +12.9{N:001} 87.53 +92.24 +87.77 +92.1 +85.34 +83.13 +92.24 +7.3 +23.171 +78.24 +38.13 +33.69 +92.11 +92.1 +15.81 +23.139 +92.11 +3731 33.28 +92.24 +55.16 +33.69 +12.9{N:001} 87.53 +69.3 +13.1 +75.2 +90.22 +83.51 +92.1 +92.24 +7.50 +15.93 +89.125 +3747 33.69 +33.98 +3750 23.136 +92.24 +87.77 +92.1 +89.23 +89.93 +92.1 +13.4 +9.24 +37.7 +37.35 +3763 92.3 +55.17 +89.92 +33.69 +92.29 +15.34 +3770 15.34 +89.92 +58.37 +15.81 +3775 15.81 +89.92 +92.24 +87.76 +92.1 +42.7 +92.29 +3783 42.7 +89.87 +24.52 +92.24 +93.169a +25.213 +89.87 +33.69 +92.24 +15.144 +72.6 +33.69 +92.7 +90.14 +92.23 +59.18 +31.85 +83.13 +92.24 +93.182b +27.27 +89.94 +33.69 +92.7 +90.21 +59.1 +84.3 +82.1 +89.92 +82.2 +15.84 +89.87 +17.23 +89.108 +93.7 +89.92 +93.180 +89.92 +93.157a +83.13 +92.24 +37.64 +92.24 +12.16 +89.124 +92.24 +11.13 +92.24 +37.64 +15.44 +84.22 +92.24 +1.23 +92.24 +1.23 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +89.87 +33.69 +92.24 +93.169a +92.24 +55.16 +15.35 +64.12 +31.85 +13.107 +92.6 +89.87 +23.136 +92.24 +87.77 +67.33 +92.24 +67.199 +92.30 +91.1 +92.24 +93.169a +15.81 +84.22 +92.24 +7.3 +93.296 +24.1 +92.24 +10.59 +92.11 +85.34 +89.92 +23.159 +89.87 +24.73 +92.24 +8.30 +92.11 +89.87 +13.37 +92.11 +92.24 +23.159 +89.87 +17.9 +89.87 +46.13 +92.11 +89.87 +67.197 +13.107 +15.172 +92.11 +12.41 +59.1 +89.87 +15.44 53.102 +92.24 +12.37 +33.98 +89.92 +59.23 +92.24 +23.148 +13.2 23.148 +23.139 +89.59 +13.106 +92.24 +33.69 +90.4 +93.147 +92.24 +53.79 +33.69 +92.11 +92.24 +23.143 +92.4 +57.55 +89.92 +92.24 +23.155 +15.201 +3933 92.24 +93.169a +24.1 +11.1 +83.18 +92.11 +33.323 +15.37 +84.16 +92.24 +83.43 +89.87 +15.77 +92.22 +53.94 +33.69 +92.11 +33.243 +15.156 +92.6 +71.8 +83.5 +15.37 +3957 33.69 +92.11 +92.24 +93.169a +92.24 +4.10 +1.56 +57.1 +89.92 +92.24 +4.41 +92.24 +4.41 +6.146 +89.124 +92.24 +9.3 +92.24 +9.3 +69.3 +57.1 +83.6 +92.24 +23.83 +23.83 +89.94 +58.37 +92.24 +36.38 +33.69 +92.11 +12.9{N:001} 87.53 +13.138 +92.1 +67.18 +15.37 +89.87 +35.46 +92.24 +10.14 +92.1 +89.124 +92.24 +93.169a +33.69 +92.11 +15.156 +92.1 +89.92 +33.137 +92.24 +23.121 +52.4 +92.24 +4012 23.121 +91.1 +15.95 +92.11 +84.22 +92.24 +6.41 +15.156 +92.11 +92.24 +36.38 +92.11 +89.87 +91.13 +14.22 +78.2 +13.107 +83.47 +92.24 +1.70 +89.52 +92.24 +6.41 +79.114 +90.1 +92.24 +14.25 +89.124 +92.11 +23.66 +89.87 +15.77 +23.77 +92.11 +33.69 +12.9{N:001} 87.53 +21.18 +23.106 +89.87 +33.69 +92.11 +92.15 +25.268 +13.1 +31.96 +67.47 +17.9 +33.331 +92.24 +14.4 +89.92 +92.24 +1.70 +4066 13.48 +14.23 +78.2 +89.87 +92.24 +9.24 +25.213 +33.69 +58.30 +13.1 +92.29 +89.33 90.21 +4079 92.24 +14.4 +89.92 +92.24 +1.70 +92.11 +36.15 +91.1 +15.81 +92.11 +84.16 +92.24 +83.43 +84.16 +92.24 +1.79 +92.24 +93.438 +15.78 +92.11 +60.11 +12.41 +84.4 +92.24 +7.75 +15.40 +20.2 +78.1 +89.52 +69.3 +74.9 +92.12 +15.28 +84.29 84.32 +92.24 +1.99 +92.30 +89.87 +91.13 +33.83 +33.69 +4121 92.4 +4124 12.15 +92.24 +12.15 +15.81 +83.1 +67.17 +67.1 +38.13 +92.4 +4134 85.1 +83.30 +84.3 +92.11 +4.8 +4.36 +59.1 +23.9 +4143 92.24 +12.37 +33.168 +92.11 +33.69 +89.65 +53.102 +92.4 +15.66 +92.4 +84.22 +92.24 +4.8 +92.24 +4.36 +89.87 +33.69 +92.11 +15.52 +89.87 +92.24 +15.40 +15.37 +84.22 +92.24 +4.36 +89.87 +91.13 +15.222 +59.23 +92.24 +4.8 +84.21 +92.24 +1.50 +84.22 +92.24 +1.70 +89.87 +23.99 +83.13 +92.24 +2.7 +89.87 +92.24 +44.1 +15.61 +89.87 +15.37 +84.22 +92.24 +1.88 +33.198 +59.23 +89.93 +92.24 +92.24 +12.41 +89.87 +91.13 +59.23 +92.24 +11.61 +15.40 +89.57 +15.78 +92.24 +93.169a +89.87 +24.1 +92.11 +33.168 +89.59 +15.2 +84.3 +92.24 +1.79 +92.11 +91.1 +15.95 +84.22 +6.41 +15.31 +89.87 +15.81 +84.22 +92.24 +57.4 +1.88 +91.1 +91.13 +15.172 +92.11 +23.171 +83.46 +6.106 +85.34 +89.87 +92.24 +93.169a +24.1 +92.24 +31.85 +92.11 +33.69 +92.24 +23.171 +25.156 +9.46 +40.8 +92.6 +92.24 +88.310 +89.87 +91.13 +92.12 +92.24 +53.94 +31.5 +4264 92.29 +33.400 +89.87 +92.24 +93.169a +4270 92.24 +30.15 +92.11 +33.69 +4276 30.1 +88.110 +83.13 +92.24 +26.3 +92.7 +89.23 +92.14 +13.1 +22.39 +33.69 +40.8 +92.6 +92.24 +88.310 +89.139 +33.69 +17.9 +89.87 +15.227 +89.124 +89.59 +28.1 +90.21 +37.35 +4302 92.24 +9.3 +92.24 +9.3 +83.46 +92.24 +1.39 +40.8 +88.310 +67.47 +33.69 +92.24 +23.171 +4316 15.203 +92.6 +92.24 +6.106 +89.87 +15.15 +84.16 +92.24 +7.2 +92.6 +89.87 +17.9 +15.37 +84.16 +92.24 +7.2 +92.11 +89.124 +24.1 +92.24 +11.1 +87.14 +89.92 +33.357 +92.24 +12.1 +92.24 +37.98 +37.35 +92.31 +92.24 +9.1 +91.1 +15.15 +84.10 +92.24 +93.169a +24.1 +9.24 +17.12 +83.23 +92.24 +57.183 +93.244 +33.129 +89.87 +33.69 +92.11 +15.156 +92.1 +89.87 +15.36 +15.156 +92.11 +89.87 +13.107 +92.11 +23.21 +83.13 +92.24 +7.3 +4378 91.13 +59.1 +57.184 +89.92 +88.295 +15.81 +34.10 +92.24 +93.169a +89.92 +92.24 +36.38 +92.11 +89.87 +24.1 +92.24 +11.49 +33.69 +92.24 +36.38 +92.11 +89.26 +4401 89.108 +92.24 +57.184 +89.92 +88.295 +23.1 +92.24 +33.243 +92.7 +4411 92.24 +24.52 +33.69 +69.3 +57.40 +23.141 +4418 92.24 +23.130 +89.125 +92.24 +23.148 +23.148 +89.124 +15.10 +27.15 +92.14 +13.4 +88.76 +25.102 +89.92 +69.3 +53.20 +89.23 +69.3 +15.81 +33.307 +88.12 +89.125 +88.295 +67.47 +15.77 +92.11 +92.24 +36.38 +93.190a +33.69 +4450 92.4 +89.92 +92.24 +11.49 +53.65 +89.124 +92.24 +36.38 +92.6 +69.3 +53.65 +89.87 +33.69 +92.11 +92.24 +93.169a +69.3 +74.5 +92.24 +11.7 +92.24 +7.34 +25.142 +67.136 +67.139 +89.108 +92.11 +85.1 +92.24 +10.56 +89.124 +13.117 +67.142 +4484 15.177 +89.122 +92.11 +92.24 +10.56 +89.87 +67.47 +53.65 +4493 92.23 +85.51 +6.157 +6.152 +48.8 +84.20 +6.162 +58.75 +89.23 +20.43 +92.24 +59.36 +92.11 +90.15 +92.24 +6.162 +89.87 +65.29 +19.28 +13.48 +69.7 +47.2 85.34 +6.198 +67.115 +84.22 +6.132 +58.75 +4523 19.31 +92.24 +6.132 +89.87 +92.24 +6.197 +14.18 +89.92 +92.24 +6.132 +20.31 +89.125 +47.2 85.34 +6.198 +67.115 +84.22 +6.132 +58.71 +89.87 +59.25 +13.33 +92.29 +92.11 +33.70 +92.11 +91.13 +37.56 +92.22 +4552 17.21 +92.11 +33.69 +90.21 +92.24 +10.46 +92.1 +67.39 +23.102 +89.125 +15.81 +85.51 +92.24 +8.30 +92.6 +83.46 +92.11 +89.87 +23.93 +89.87 +17.9 +92.24 +93.169a +4576 92.11 +89.92 +92.24 +36.38 +92.11 +89.87 +91.13 +9.34 +23.181 +60.21 +67.167 +15.77 +84.12 +24.73 +92.24 +6.180 +92.24 +6.172 +92.11 +89.23 +31.5 +4599 89.67 +4601 24.73 +92.24 +6.172 +92.11 +23.136 +89.87 +92.24 +93.169a +16.13 +89.87 +24.1 +92.11 +33.69 +25.156 +9.47 +92.24 +31.85 +92.6 +23.136 +92.6 +89.87 +23.136 +92.24 +9.34 +67.131 +92.24 +67.1 +92.30 +89.87 +92.24 +93.169a +15.81 +84.16 +92.24 +7.3 +92.24 +37.56 +89.87 +24.1 +92.24 +6.88 +89.92 +92.24 +11.1 +25.234 +33.69 +15.53 +89.23 +69.3 +23.99 +92.24 +9.40 +89.125 +23.66 +89.87 +33.410 +92.11 +89.124 +4660 15.44 +92.24 +11.1 +15.93 +18.6 +92.24 +8.30 +92.11 +89.87 +23.94 +92.24 +9.40 +89.87 +15.40 +92.24 +33.211 +92.29 +84.22 +63.1 +92.24 +1.79 +92.30 +91.1 +15.15 +84.10 +92.24 +93.169a +15.144 +60.11 +24.38 +33.83 +89.92 +33.69 +88.76 +92.4 +10.30 +93.91 +89.87 +15.81 +84.22 +92.24 +7.3 +15.77 +92.11 +92.24 +24.38 +89.87 +33.69 +92.11 +92.24 +93.169a +31.85 +90.21 +74.5 +92.29 +42.7 +33.69 +92.11 +69.1 +12.9{N:001} 87.53 +67.47 +24.73 +92.24 +8.23 +92.11 +33.69 +89.8 +92.24 +31.85 +92.7 +13.107 +92.7 +89.87 +24.43 +92.11 +92.24 +8.23 +89.87 +33.320 +92.11 +92.24 +93.169a +33.69 +30.45 +92.23 +27.2 +89.124 +92.24 +15.40 +33.214 +92.11 +83.13 +63.1 +92.24 +1.79 +92.30 +89.87 +92.11 +15.40 +91.13 +15.172 +92.11 +33.106 +12.41 +89.87 +53.102 +92.24 +12.37 +33.70 +92.24 +33.106 +89.87 +25.213 +92.24 +11.1 +33.69 +67.10 +24.18 +61.9 +83.13 +92.24 +93.182b +89.124 +92.24 +11.49 +33.69 +90.6 +92.24 +37.56 +92.24 +12.37 +53.102 +92.24 +12.37 +91.1 +15.23 +92.24 +93.169a +92.24 +1.89 +59.23 +89.92 +92.24 +1.92 +33.224 +83.13 +92.24 +7.20 +92.11 +89.92 +33.256 +92.24 +33.217 +92.24 +37.64 +89.92 +23.139 +59.23 +23.155 +89.92 +59.23 +23.154 +89.87 +24.1 +92.24 +11.1 +25.49 +4828 92.11 +89.33 +4831 22.23 +89.92 +25.294 +64.12 +4.22 +69.3 +57.1 +44.4 +67.47 +33.69 +92.24 +36.38 +92.11 +91.6 +92.24 +43.15 +59.11 +89.124 +92.24 +42.43 +59.3 +89.50 +33.170 +92.24 +57.12 +92.24 +43.15 +89.59 +15.68 +42.43 +84.22 +92.24 +43.15 +92.11 +91.1 +33.312 +92.24 +60.21 +36.38 +92.11 +37.98 +92.11 +37.35 +12.39 +53.39 +89.61 +53.102 +92.11 +89.92 +23.139 +59.23 +23.155 +89.92 +59.23 +23.154 +4887 92.24 +60.21 +53.74 +92.24 +33.126 +13.4 +92.29 +60.46 +93.341a +92.24 +33.129 +93.296 +89.92 +93.25 +92.24 +10.49 +92.11 +89.92 +93.158a +92.24 +92.24 +93.137 +89.92 +93.190b +92.24 +10.49 +92.11 +93.379a +89.92 +93.62 +93.155 +89.92 +93.244 +92.24 +57.184 +93.158c +92.24 +92.24 +93.19a +89.92 +93.150 +93.341b +92.24 +11.88 +89.92 +93.173a +92.24 +93.181 +92.24 +89.93 +37.111 +92.11 +92.29 +92.24 + +15.66 +92.24 +93.169a +33.327 +92.11 +33.69 +84.22 +1.99 +11.37 +69.3 +15.37 +89.92 +84.22 +1.88 +93.569 +69.3 +15.93 +89.124 +15.34 +89.126 +84.18 +92.24 +4.22 +92.24 +27.29 +11.58 +93.182b +89.94 +15.10 +33.256 +33.69 +90.21 +67.21 +92.24 +37.64 +92.24 +12.16 +23.144 +23.139 +23.121 +23.94 +23.162 +23.137 +12.37 +53.102 +57.85 +57.125 +57.85 +57.71 +69.3 +57.58 +6.74 +69.7 +6.73 +69.7 +6.72 +84.22 +92.24 +6.178 +92.7 +69.3 +6.145 +84.22 +15.19 +69.7 +60.11 +6.176 +69.7 +6.182 +69.7 +6.218 +89.23 +65.17 +92.24 +42.43 +92.24 +5.1 +92.11 +89.94 +71.8 +84.22 +92.27 +1.88 +89.139 +1.92 +15.93 +27.37 +92.14 +83.13 +92.11 +65.17 +13.1 + +85.55 +67.119 +71.8 +15.40 +89.87 +15.93 +84.22 +92.24 +7.3 +33.20 +92.11 +89.92 +89.136 +89.67 +13.1 +92.24 +7.3 +65.17 +13.117 +92.24 +22.42 +92.7 +90.57 +92.11 +89.136 +89.67 +69.3 +13.1 +65.17 +92.24 +22.42 +92.7 +84.18 +92.7 +15.90 +89.92 +71.8 +92.27 +69.3 +34.53 +92.7 +69.7 +31.56 +92.24 +33.98 +92.7 +15.40 +84.27 +92.24 +7.3 +89.139 +92.24 +1.88 +92.30 +16.8 +92.24 +2.15 +92.24 +8.49 +92.7 +72.6 +33.69 +92.7 +25.172 +13.1 +9.22 +93.585 +89.92 +93.454 +67.33 + +56.20 +64.18 +92.24 +1.88 +92.30 +91.13 +92.1 +15.66 +92.7 +64.12 +4.22 +83.13 +83.9 +4.11 +89.50 +13.3 +32.31 +64.12 +92.24 +4.52 +89.92 +88.32 +64.12 +92.24 +4.44 +89.94 +27.59 +5134 92.24 +9.1 +89.23 +37.111 +92.7 +84.16 +11.79 +89.92 +83.13 +92.24 +7.20 +92.11 +19.9 +92.7 +89.94 +89.92 +83.35 +37.59 +89.92 +37.67 +15.165 +90.43 +92.1 +89.57 +33.262 +92.11 +89.92 +92.24 +11.37 +89.124 +67.31 +37.111 +92.7 +69.3 +25.225 +92.16 +89.139 +92.14 +33.70 +89.23 +13.142 +92.7 +67.33 +92.30 +92.24 +67.1 +92.14 +33.70 +89.23 +69.3 +92.7 +13.4 +92.24 +33.70 +89.125 +92.24 +12.18 +92.24 +12.12 +92.7 +92.24 +33.70 +90.6 +92.7 +89.94 +37.111 +10.49 +10.49 +89.57 +23.99 +89.92 +10.14 +10.36 +89.92 +39.34 +10.36 +90.34 +10.18 +89.92 +20.65 +92.11 +89.92 +5217 88.198 +90.1 +59.23 +90.44 +92.24 +33.126 +92.1 +89.124 +92.24 +25.175 +67.119 +67.66 +92.29 +21.18 21.27 +89.124 +67.31 +39.45 +92.7 +83.13 +92.24 +1.88 +92.29 +15.61 +84.16 +92.24 +58.37 +89.23 +72.6 +33.69 +92.7 +69.3 +69.3 +68.22 +92.24 +1.88 +92.24 +93.182b +67.119 +15.81 +92.24 +9.3 +92.24 +9.3 +69.3 +13.1 +36.38 +87.30 +92.24 +33.243 +69.7 +87.76 +87.30 +92.24 +57.12 +92.11 +59.45 +92.24 +36.38 +90.22 +41.1 +64.12 +92.24 +33.243 +92.11 +89.92 +92.24 +87.76 +64.12 +92.24 +57.12 +92.11 +89.65 +92.24 +57.14 +93.68 +33.131 +59.17 +78.28 +92.24 +10.11 +92.11 +89.50 +69.3 +25.252 +92.11 +89.23 +92.23 +5305 28.79 +92.27 +69.3 +28.38 +89.92 +28.69 +92.27 +69.3 +28.1 +92.27 +33.69 +92.7 +28.71 +92.24 +14.53 28.71 +33.69 +28.64 +92.24 +28.64 +89.92 +92.27 +28.73 +92.24 +28.73 +24.67 +33.206 +28.64 +92.24 +28.64 7.51 +89.92 +69.3 +25.252 +89.25 +92.24 +20.61 +92.24 +8.1 +89.124 +69.3 +74.5 +92.24 +26.4 +20.61 +89.124 +25.252 +89.126 +92.24 +74.5 +89.102 +26.4 +89.102 +8.1 +20.31 +83.13 +1.21 +69.12 +60.11 +4.46 +6.77 +57.186 +91.12 +60.10 +63.20 +92.11 +69.3 +15.118 +84.20 +92.24 +1.39 +89.120 +92.24 +12.12 +92.7 +89.124 +5380 92.7 +92.24 +8.12 +92.24 +8.10 +59.23 +60.3 +5388 89.50 +69.3 +25.252 +59.1 +4.46 +65.6 +92.7 +89.50 +59.23 +92.18 +33.274 +90.56 +92.1 +83.33 +92.24 +9.1 +33.274 +89.93 92.1 +89.5 +92.11 +83.33 +92.24 +12.12 +92.1 +92.24 +83.13 +92.24 +1.11 +89.124 +71.8 +92.18 +33.277 +92.1 +83.33 +92.24 +9.1 +33.277 +89.93 92.1 +92.11 +83.33 +92.24 +12.12 +92.1 +92.24 +83.13 +92.24 +1.11 +69.3 +31.29 +90.21 +15.81 +13.14 +22.42 +83.46 +92.24 +9.22 +69.3 +15.81 +13.14 +22.42 +89.125 +39.25 55.6 +89.23 +15.81 +39.41 +9.24 +90.31 +92.24 +10.14 +92.11 +89.92 +10.46 +90.31 +92.24 +10.16 +92.11 +89.92 +10.60 +90.31 +92.24 +10.59 +92.11 +89.92 +39.11 +92.24 +9.1 +92.24 +10.11 +92.11 +92.24 +25.33 +10.14 +89.139 +10.16 +78.29 +92.1 +69.3 +13.1 +92.1 +65.17 +89.92 +92.24 +25.33 +10.42 +89.139 +10.46 +78.29 +92.1 +69.3 +13.1 +92.1 +65.17 +89.92 +92.27 +69.3 +24.83 +92.24 +6.27 +92.11 +89.87 +15.156 +36.35 +92.1 +69.3 +13.1 +92.1 +65.17 +92.24 +13.17 +92.24 +23.88 +92.11 +57.68 +92.11 +89.92 +92.24 +23.114 +92.24 +23.88 +92.11 +90.43 +92.1 +13.17 +92.11 +92.24 +34.53 +92.7 +92.1 +34.53 +89.92 +92.24 +92.1 +34.53 +34.53 +92.24 +15.66 +92.1 +92.24 +34.53 +53.79 +90.23 +58.22 +53.79 +38.14 +53.79 +57.125 +89.92 +92.24 +34.53 +88.12 +90.23 +58.22 +88.12 +38.14 +88.12 +57.125 +89.92 +5566 92.27 +23.35 +92.22 +92.24 +87.58 +92.29 +6.121 +79.77 +5575 90.23 +33.126 +36.38 +72.6 +33.69 +92.7 +69.3 +69.3 +57.67 +92.24 +38.14 +92.11 +91.1 +13.107 +5590 68.22 +92.24 +93.169a +33.325 +92.24 +60.21 +36.38 +92.11 +15.2 +84.10 +92.24 +33.224 +89.92 +33.256 +83.13 +92.24 +1.88 +92.11 +5609 92.24 +93.190a +33.212 +83.13 +92.24 +7.24 +92.24 +42.11 +92.24 +53.82 +15.193 +90.4 +92.24 +36.38 +92.11 +33.69 +92.11 +92.6 +13.4 +92.24 +15.81 +89.139 +58.36 +30.55 +89.87 +33.184 +92.24 +93.169a +33.69 +92.11 +15.34 +33.198 +93.190a +92.27 +24.52 +89.92 +24.7 +24.38 +24.42 +89.92 +23.175 +15.227 +23.162 +23.137 +89.92 +24.68 +24.58 +89.92 +23.121 +23.94 +89.92 +57.53 +33.215 +89.92 +25.119 +13.1 +71.8 +92.27 +69.3 +25.180 +89.26 +92.1 +89.87 +92.29 +15.34 +68.1 +92.24 +93.169a +33.69 +92.24 +11.1 +90.24 +93.190a +92.14 +24.14 +15.40 +84.22 +92.24 +1.86 +3.19 +89.26 +14.4 +16.7 +89.125 +92.14 +24.1 +15.40 +9.24 +13.8 +79.100 +49.3 +91.13 +92.24 +92.24 +79.100 +49.11 +83.13 +92.24 +7.2 +92.24 +37.67 +89.125 +92.14 +15.40 +53.79 +24.1 +69.1 +33.69 +92.7 +89.92 +78.31 +53.79 +92.29 +13.4 +90.24 +92.27 +33.54 +91.13 +92.1 +15.66 +92.24 +33.195 +92.1 +67.19 +67.19 +92.6 +92.27 +77.7 +92.24 +77.7 +92.6 +83.33 +92.6 +72.6 +33.69 +92.7 +69.3 +13.83 +83.9 +23.47 +9.34 +87.22 87.28 +93.190a +92.24 +53.42 +89.124 +92.24 +87.58 +83.13 +92.24 +37.64 +92.24 +12.16 +87.22 87.28 +92.11 +13.1 +89.94 +67.131 +92.24 +67.142 +93.190a +92.24 +53.42 +67.119 +67.38 +92.24 +37.64 +92.24 +12.16 +20.10 20.9 +89.92 +20.11 +39.49 +92.11 +89.23 +59.23 +92.24 +33.58 53.79 +5788 92.24 +33.58 +67.119 +93.190a +33.459 +89.92 +89.65 +30.58 +31.51 +92.11 +13.4 +93.142 +92.24 +67.62 +15.81 +92.24 +24.59 +8.24 +31.56 +89.94 +92.14 +64.5 +92.24 +11.4 +92.29 +64.1 +13.1 +9.42 +17.12 +83.13 +92.24 +57.207 +92.27 +33.79 +92.24 +34.16 58.37 +33.69 +6.87 +92.7 +5828 69.3 +15.244 +33.115 +5832 69.3 +52.1 +89.23 +15.81 +93.190a +69.9 +23.1 +69.9 +23.34 +89.87 +33.69 +12.37 +5845 15.81 +92.24 +9.3 +92.24 +9.3 +23.1 +89.92 +23.34 +89.87 +33.69 +91.13 +9.24 +23.19 +89.92 +88.288 +34.11 +57.184 +89.92 +88.295 +89.92 +88.16 +92.24 +32.32 +90.11 +92.24 +42.11 +92.11 +67.47 +68.1 +33.422 +92.24 +1.88 +83.13 +92.27 +13.107 +92.24 +59.1 +76.7 +92.11 +89.33 +69.3 +41.52 +22.9 +92.6 +93.615 +22.9 +92.6 +93.432 +89.33 +89.65 +83.13 +93.602 +89.92 +93.577 +13.107 +92.24 +76.7 +92.24 +13.107 +83.9 +92.7 +71.14 +67.24 +13.8 +6.164 +89.92 +14.73 +41.52 +89.130 +33.69 +92.7 +93.602 +89.92 +93.577 +25.172 +13.1 +67.33 + +56.20 +64.18 +92.7 +89.92 +93.498 +69.3 +92.6 +84.19 +1.5 +87.20 +84.19 +1.19 +15.107 15.108 +89.33 +89.65 +83.13 +93.585 +13.107 +92.24 +76.7 +92.24 +13.107 +83.9 +92.6 +71.14 +13.89 +67.119 +92.24 +67.205 +89.130 +33.69 +92.7 +90.21 +9.22 +93.585 +25.172 +13.1 +67.33 + +56.20 +64.18 +92.6 +67.33 +92.30 +92.24 +67.1 +33.28 +92.24 +93.169a +33.69 +33.351 +92.6 +12.12 +12.9{N:001} +92.24 +1.3 +5980 92.24 +1.3 +89.33 +28.79 +92.29 +89.122 +32.35 +89.92 +32.27 +89.92 +28.38 +92.11 +9.43 +69.1 +92.24 +12.12 +89.33 +61.9 +25.88 +13.107 +90.20 +92.6 +63.2 +92.1 +57.77 +90.1 +92.24 +12.12 +92.1 +89.92 +92.23 +28.2 +92.24 +12.15 +89.131 +6016 92.24 +12.12 +69.7 +92.24 +12.12 +92.12 +28.2 +89.131 +6025 92.24 +12.15 +89.92 +71.8 +92.27 +28.38 +30.56 +92.24 +12.15 +84.24 +84.18 +92.1 +59.23 +92.24 +23.78 +89.92 +15.207 +92.1 +23.84 +92.7 +15.203 +92.24 +6.8 +92.1 +84.20 +92.7 +89.92 +27.12 +90.7 +92.1 +89.33 +13.1 +88.60 +89.92 +88.52 +92.24 +26.3 +89.87 +90.70 +22.37 23.80 +92.24 +26.4 +92.7 +89.23 +92.24 +6.8 +92.1 +22.40 +89.92 +92.24 +15.208 +92.1 +22.38 86.2 +13.1 +67.33 +92.30 +92.24 +67.1 +15.10 +92.24 +93.169a +92.24 +67.184 +84.29 +92.24 +43.7 +89.87 +92.24 +36.38 +92.11 +23.29 +89.87 +68.1 +18.9 +3.40 +89.87 +23.1 +89.87 +92.24 +11.49 +24.1 +33.69 +92.11 +91.13 +92.24 +36.38 +92.6 +42.7 +92.27 +42.7 +69.3 +71.32 +67.33 +67.184 +89.87 +92.24 +33.69 +92.11 +69.11 +33.68 +92.14 +42.7 +93.91 +6129 23.29 +89.92 +92.24 +89.108 +92.11 +92.16 +15.93 +84.22 +92.24 +7.2 +92.24 +12.1 +89.87 +92.24 +53.26 +92.24 +53.26 +23.1 +92.27 +23.1 +69.3 +71.32 +13.1 +92.11 +69.7 +92.24 +89.108 +92.11 +89.131 +6159 92.24 +53.87 +6162 89.139 +69.11 +33.68 +83.13 +92.24 +33.55 +90.21 +92.24 +67.184 +92.24 +53.87 +83.13 +92.24 +7.16 +92.24 +67.184 +53.33 +89.92 +88.316 +13.1 +89.94 +33.69 +92.7 +90.21 +92.24 +7.16 +87.22 +85.1 +83.1 +89.124 +89.65 +32.16 +92.14 +13.4 +88.76 +25.102 +89.92 +69.3 +53.20 +71.14 +69.3 +56.31 +92.24 +88.316 +89.23 +13.4 +37.51 +92.24 +67.184 +92.24 +9.3 +92.24 +9.3 +91.1 +15.2 +84.10 +15.81 +84.22 +92.24 +7.20 +92.11 +89.87 +91.13 +9.24 +8.30 +90.65 +23.173 +89.87 +33.180 +92.11 +33.69 +90.26 +71.32 +92.24 +67.184 +23.139 +89.59 +33.427 +92.11 +89.87 +92.24 +33.69 +92.11 +92.14 +13.69 +63.20 +92.7 +9.24 +92.27 +57.1 +4.22 +92.22 +89.92 +89.67 +15.121 +92.29 +92.24 +67.184 +84.22 +1.55 +69.12 +18.6 +92.11 +89.87 +17.10 +91.7 +59.17 +65.6 +9.1 +4.22 +89.52 +71.32 +92.24 +67.184 +88.4 +90.45 +67.47 +33.69 +92.24 +9.24 +16.19 +92.6 +92.24 +8.30 +89.87 +16.19 +89.87 +13.65 +23.129 +64.12 +92.24 +58.37 +89.87 +15.40 +92.24 +11.49 +30.74 +90.48 +90.31 +92.11 +89.59 +92.11 +20.31 +89.124 +92.24 +93.169a +28.1 +15.53 +84.10 +89.87 +15.144 +92.11 +59.11 +89.87 +23.139 +92.11 +59.23 +89.87 +33.331 +92.11 +90.22 +69.3 +28.28 +92.11 +13.9 +89.59 +13.106 +92.24 +33.69 +90.4 +93.147 +92.24 +53.79 +33.69 +91.13 +92.24 +87.77 +92.1 +92.27 +30.91 +92.24 +25.45 58.53 +92.1 +92.27 +25.87 +92.24 +26.4 +92.1 +85.32 +92.24 +12.18 +92.1 +84.20 +92.11 +89.92 +56.25 +92.24 +11.37 +33.198 +69.3 +33.447 +69.7 +33.83 +69.7 +24.52 +92.12 +83.47 +92.24 +1.103 +92.24 +33.103 +92.11 +3.55 +19.46 +69.3 +19.35 +89.92 +6.158 +14.64 +69.3 +14.70 +67.119 +71.8 +13.68 +13.62 +39.57 +92.24 +56.25 +89.92 +92.24 +33.126 +92.11 +11.37 +25.59 +67.47 +15.172 +92.11 +12.41 +24.38 +89.92 +33.106 +89.87 +23.139 +92.11 +89.52 +92.24 +33.106 +33.70 +89.92 +24.41 +89.87 +25.220 +59.23 +92.24 +11.1 +89.92 +33.69 +69.16 +92.29 +13.4 +92.24 +10.30 +93.91 +89.124 +92.24 +11.49 +33.212 +33.69 +92.29 +69.3 +53.102 +92.24 +12.37 +89.131 +6437 90.6 +92.24 +93.68 +37.56 +92.24 +12.37 +89.124 +32.4 +92.24 +30.15 +92.11 +33.69 +92.11 +59.23 +1.82 +63.23 +90.31 +92.25 +20.41 +89.92 +59.23 +11.61 +89.139 +10.8 +63.23 +90.31 +92.25 +69.3 +13.90 +89.92 +89.65 +92.24 +12.34 93.330 +92.24 +12.34 93.330 +53.102 +90.34 +92.25 +63.23 +91.7 +92.16 +13.90 +92.24 +37.64 +92.11 +89.92 +89.65 +92.1 +90.6 +93.68 +53.102 +92.24 +12.37 +92.24 +36.39 9.4 +92.7 +90.6 +92.14 +53.102 +6498 92.11 +56.28 +92.7 +13.104 +89.124 +89.65 +6505 12.18 +12.1 +92.1 +53.102 +92.24 +12.37 +89.46 +13.123 +90.57 +92.7 +92.24 +37.64 +92.24 +12.1 +89.139 +92.16 +74.5 +92.12 +15.93 +84.22 +92.24 +7.3 +92.24 +79.63 +89.87 +92.24 +6.1 +92.11 +57.235 +6536 67.18 +37.114 +92.24 +79.63 +89.87 +67.47 +92.24 +7.3 +92.11 +57.238 +92.24 +69.3 +13.1 +90.42 +92.1 +90.31 +92.1 +13.1 +89.92 +92.24 +69.3 +15.125 +89.108 +92.1 +15.135 +6563 33.69 +92.7 +59.23 +88.289 +89.92 +33.401 +40.8 +92.24 +9.1 +89.124 +92.24 +92.24 +12.18 +33.401 +69.3 +40.8 +89.92 +71.8 +92.27 +33.69 +33.98 +90.31 +92.24 +9.3 +92.24 +9.3 +40.8 +92.11 +89.124 +71.8 +92.27 +33.69 +90.31 +92.24 +12.18 +92.24 +88.24 +69.3 +40.8 +92.11 +69.9 +67.136 +92.29 +92.24 +67.143 +69.9 +67.136 +92.24 +67.135 +89.140 +13.9 +92.24 +3.2 +65.22 +89.92 +92.24 +3.33 +92.11 +65.22 +89.140 +13.9 +92.24 +3.2 +65.28 +89.92 +92.24 +3.33 +92.11 +65.28 +89.23 +90.16 +92.24 +3.33 +92.24 +3.2 +28.1 +23.53 58.26 +4.53 88.123 +92.16 +74.5 +88.1 +33.70 +88.110 +13.1 +89.23 +90.16 +92.24 +59.53 +92.24 +26.3 +92.24 +33.74 +33.70 +92.24 +88.1 +9.1 +90.16 +92.24 +88.1 +65.10 +15.68 +88.1 +89.92 +92.24 +88.110 +9.1 +90.16 +92.24 +88.110 +65.10 +15.68 +88.110 +89.124 +33.69 +92.7 +90.21 +59.23 +33.9 +30.44 72.21 +92.27 +33.70 +92.24 +9.1 +90.46 +89.6 +92.11 +57.228 +67.33 + +56.20 +89.23 +89.77 +92.24 +33.98 +92.6 +56.34 +89.92 +89.77 +92.24 +33.98 +92.6 +56.31 +67.47 +33.28 +92.11 +92.12 +92.24 +53.94 +89.92 +11.49 +33.69 +33.243 +25.1 +90.15 +92.6 +33.477 +24.1 +89.124 +92.24 +33.28 +33.69 +92.11 +11.4 +88.110 +89.92 +31.101 +33.477 +25.9 +6732 33.477 +69.3 +6735 92.11 +89.131 +6738 92.24 +33.477 +93.197a +92.24 +53.79 +89.23 +64.13 +85.1 +93.197a +83.13 +92.24 +8.67 +92.24 +4.61 +60.12 +67.186 +89.92 +60.12 +67.192 +61.9 +13.1 +92.24 +9.3 +92.24 +9.3 +83.13 +92.24 +83.14 +92.24 +1.39 +60.12 +67.186 +89.92 +60.12 +67.192 +9.1 +93.544 +17.6 +67.33 +92.24 +30.110 +89.108 +92.24 +11.4 +92.29 +89.87 +56.31 +92.11 +89.33 +41.52 +6789 92.24 +33.258 +93.197a +89.92 +91.13 +78.28 +93.197a +83.1 +37.68 +82.4 +13.65 +67.33 +92.24 +30.110 +89.108 +92.24 +11.4 +92.29 +89.87 +56.31 +92.11 +89.33 +15.81 +89.3 +92.24 +80.6 +92.24 +1.39 +24.52 +92.24 +32.37 +93.344 +89.92 +91.13 +78.28 +93.344 +83.1 +6828 92.24 +53.39 +12.39 +15.40 +84.3 +92.24 +9.1 +15.21 +84.29 +2.8 +80.1 +27.41 +23.87 +6842 69.3 +27.27 +67.47 +33.69 +84.22 +92.24 +7.2 +92.1 +15.90 +84.11 +15.40 +89.87 +15.81 +27.1 +59.43 +6858 46.19 +89.92 +79.12 +67.47 +15.34 +89.87 +15.168 +89.108 +92.25 +60.16 +58.37 +12.37 +88.110 +92.25 +89.87 +15.93 +85.69 +83.2 +6877 13.48 +92.24 +61.13 +92.24 +9.1 +92.30 +65.29 +92.24 +60.46 +61.9 +13.1 +89.93 +92.24 +11.4 +92.29 +92.24 +88.110 +67.128 +92.11 +33.70 +92.24 +11.1 +91.13 +92.24 +10.16 +89.92 +92.24 +10.49 +92.11 +17.1 +83.20 +68.60 +92.11 +33.70 +89.87 +33.69 +92.12 +92.11 +91.13 +92.24 +10.16 +92.6 +89.92 +92.24 +10.49 +92.6 +83.20 +17.1 +68.60 +92.6 +33.70 +89.87 +92.24 +33.28 +33.69 +92.24 +33.69 +92.11 +92.14 +13.4 +92.24 +10.16 +92.1 +89.92 +92.14 +13.4 +92.24 +10.49 +92.1 +89.87 +16.19 +92.24 +8.30 +92.11 +84.17 +92.24 +36.38 +92.11 +33.69 +91.13 +92.24 +10.16 +92.1 +89.92 +92.24 +10.49 +92.1 +89.23 +71.8 +92.18 +42.7 +92.24 +25.2 +92.24 +12.12 +92.1 +92.24 +83.13 +1.11 +92.11 +92.1 +10.49 +89.92 +10.50 +89.92 +10.16 +13.4 +67.33 +92.24 +67.186 +92.30 +92.24 +93.169a +15.40 +92.24 +7.3 +17.12 +83.25 +92.24 +1.70 +89.87 +15.123 +84.18 +92.11 +11.1 +78.3 +89.52 +92.11 +84.22 +6.41 +15.95 +17.12 +89.92 +59.23 +92.24 +11.1 +83.46 +92.24 +1.63 +17.1 +89.87 +33.70 +92.11 +59.1 +89.76 +33.15 +33.69 +91.13 +15.40 +92.24 +43.6 +92.24 +43.6 +89.87 +67.136 +92.24 +43.6 +92.11 +89.104 +7037 15.118 +83.25 +92.24 +1.99 +89.87 +15.81 +92.24 +4.38 +23.11 +92.11 +89.104 +58.37 +15.118 +84.20 +92.24 +2.22 +83.5 +69.3 +57.1 +2.14 +59.11 +89.87 +67.53 +23.195 +89.26 +92.24 +69.3 +57.1 +81.8 +2.14 +89.124 +1.28 +15.104 +14.68 +89.87 +89.26 +92.24 +69.3 +57.1 +3.47 +79.82 +89.104 +58.37 +15.118 +84.20 +92.24 +3.17 +89.87 +23.189 23.196 +92.24 +3.17 +89.87 +7090 92.11 +89.104 +58.37 +15.118 +84.20 +92.24 +2.14 +92.24 +65.22 +7100 23.199 +23.199 3.33 +89.104 +7104 60.33 +89.104 +7107 60.29 +89.104 +7110 60.26 +92.24 +24.59 +8.24 +31.56 +89.87 +15.77 +92.24 +36.38 +33.69 +92.11 +7123 89.76 +33.15 +33.70 +92.11 +89.87 +92.24 +33.184 +33.69 +89.33 +92.7 +13.142 +32.16 +92.24 +28.77 +92.24 +37.64 +92.24 +12.16 +89.124 +92.30 +69.3 +7145 89.23 +92.18 +57.1 +57.71 +92.11 +89.87 +59.54 +89.124 +92.18 +69.3 +57.1 +7157 92.27 +57.1 +90.96 +89.122 +92.11 +7164 89.76 +33.15 +92.11 +33.70 +89.33 +24.7 +69.3 +32.11 +89.92 +24.52 +69.3 +32.1 +69.7 +32.5 +89.92 +13.106 +92.11 +92.24 +33.460 +93.147 +92.24 +33.69 +24.52 +24.52 +7189 69.3 +69.3 +32.5 +89.92 +24.7 +24.7 +7196 69.3 +69.3 +24.1 +89.23 +32.45 +92.24 +26.3 +92.24 +11.55 +92.29 +89.92 +92.24 +32.46 +32.46 +32.46 +89.92 +92.24 +27.50 +92.11 +27.50 +7218 24.1 +92.24 +8.23 +89.92 +92.24 +8.24 +24.52 +89.92 +92.24 +26.3 +32.5 +89.87 +41.51 +89.87 +13.66 +92.11 +89.124 +25.119 +92.7 +92.24 +8.23 +89.33 +24.7 +89.92 +92.24 +8.24 +92.7 +89.33 +31.56 +89.23 +72.6 +33.69 +92.7 +90.21 +59.1 +53.79 +89.92 +88.12 +25.12 +24.1 +92.27 +24.7 +91.12 +69.3 +24.1 +89.92 +24.52 +92.27 +24.52 +91.12 +69.3 +24.52 +89.50 +92.7 +24.52 +92.24 +33.15 +92.24 +43.6 +59.23 +24.52 +92.24 +33.260 +92.24 +37.64 +89.87 +69.3 +32.5 +15.81 +92.24 +88.110 +89.87 +18.4 +92.24 +43.6 +84.22 +92.24 +26.3 +92.11 +92.29 +7299 92.24 +83.25 +92.24 +1.99 +43.6 +89.94 +92.24 +84.20 +92.24 +2.22 +43.6 +92.29 +13.4 +92.24 +92.24 +33.260 +24.52 +89.87 +67.53 +89.79 +25.123 +31.50 +92.11 +89.124 +69.3 +57.1 +3.47 +83.13 +92.25 +89.125 +67.109 +13.1 +89.87 +13.107 +22.2 +89.139 +39.45 +90.44 +92.24 +33.260 +67.53 +31.77 +89.94 +92.24 +83.9 +92.24 +3.17 +43.6 +92.29 +13.4 +92.24 +92.24 +33.260 +24.52 +89.92 +92.24 +25.224 +92.24 +67.143 +89.92 +92.24 +31.12 +92.24 +57.30 +23.120 +92.24 +33.260 +89.87 +23.202 +13.3 +89.94 +92.24 +84.20 +92.24 +65.22 +2.14 +43.6 +92.29 +13.4 +92.24 +92.24 +33.260 +24.52 +89.87 +32.5 +91.6 +92.27 +23.199 +7388 89.104 +13.9 +7391 60.33 +89.104 +7394 60.29 +89.104 +7397 60.26 +58.37 +33.16 +33.16 +92.11 +33.69 +64.4 +92.24 +37.64 +92.24 +12.16 +9.24 +43.6 +65.22 +3.35 +84.22 +92.24 +1.95 +92.11 +89.124 +67.136 +92.24 +23.66 +92.24 +9.1 +15.81 +92.11 +92.24 +39.11 +89.87 +43.8 +3.30 +83.9 +83.9 +92.24 +3.31 +89.87 +15.37 +89.87 +7437 23.195 +92.24 +3.15 +89.87 +23.199 3.33 +23.199 +67.47 +24.18 +89.93 +92.24 +3.30 +7449 15.77 +92.24 +87.76 +92.24 +57.14 +33.69 +92.11 +87.53 +69.12 +65.22 +3.35 +43.6 +84.22 +92.24 +92.8 +1.95 +91.7 +84.6 +90.51 +3.30 +89.87 +92.24 +33.69 +92.11 +39.11 +9.24 +92.29 +42.7 +89.87 +92.24 +87.76 +92.11 +33.69 +89.50 +25.1 +15.37 +18.10 +92.11 +89.124 +92.24 +33.69 +69.2 +7493 18.10 +92.24 +3.30 +43.11 +89.114 +92.11 +92.24 +3.31 +13.140 +23.192 +59.25 +67.119 +92.24 +43.14 +89.87 +67.33 +67.1 +92.24 +43.14 +33.69 +92.24 +43.16 +18.10 +67.18 +92.24 +3.30 +89.87 +18.13 +92.11 +13.62 +18.16 +89.60 +92.24 +14.66 +92.11 +89.124 +92.24 +3.41 +15.125 +84.22 +92.24 +7.25 +92.1 +58.37 +33.15 +33.16 +92.11 +33.69 +64.1 +13.1 +92.24 +37.64 +92.24 +12.16 +3.35 +3.20 +92.27 +18.1 +9.24 +43.6 +84.22 +92.24 +1.95 +92.11 +89.136 +92.27 +79.125 +13.1 +59.23 +92.24 +3.35 +89.136 +67.31 +23.188 +79.123 +92.24 +3.29 +13.1 +89.92 +13.48 +3.2 +89.52 +15.81 +92.24 +4.41 +92.24 +4.41 +89.87 +6.147 +83.47 +92.24 +3.49 +92.11 +58.37 +33.15 +33.70 +92.11 +64.1 +13.1 +92.24 +37.64 +92.24 +12.16 +5.11 +92.27 +18.1 +9.34 +85.50 +84.22 +5.9 +81.23 +60.12 +67.119 +7607 5.12 +59.29 +92.29 +59.23 +33.70 +92.24 +93.169a +89.76 +33.15 +92.24 +11.1 +89.92 +89.120 +33.15 +92.23 +33.70 +92.11 +89.59 +13.106 +92.24 +33.69 +90.4 +92.24 +53.79 +33.69 +33.29 +89.76 +33.15 +92.24 +33.74 +92.1 +33.192 +28.79 +67.131 +42.37 +67.47 +15.43 +92.24 +11.1 +15.81 +84.22 +92.24 +7.3 +89.87 +15.77 +92.11 +92.24 +36.38 +92.11 +33.69 +33.143 +92.4 +92.24 +33.15 +92.24 +3.30 +92.24 +1.95 +89.87 +92.24 +33.184 +33.69 +92.24 +43.6 +92.24 +65.22 +3.35 +13.4 +92.24 +9.3 +92.24 +9.3 +89.94 +92.24 +1.95 +58.68 +92.24 +1.39 +89.94 +92.24 +65.22 +3.35 +92.29 +13.4 +92.24 +11.13 +92.24 +37.64 +89.94 +92.24 +3.30 +58.68 +92.24 +9.4 +92.24 +12.35 +89.94 +92.24 +39.11 +92.24 +43.6 +92.11 +13.4 +92.24 +12.34 +89.94 +92.24 +43.14 +67.66 +67.143 +58.68 +89.94 +92.24 +43.16 +12.28 +58.68 +89.50 +64.13 +18.10 +92.24 +3.30 +89.87 +2.3 +7731 61.9 +13.1 +67.33 +92.24 +67.66 +92.24 +67.143 +15.66 +92.24 +9.3 +92.24 +9.3 +92.24 +12.28 +92.11 +89.87 +18.10 +84.4 +92.24 +37.64 +92.11 +59.23 +92.24 +88.306 +89.92 +92.24 +90.45 +92.24 +88.139 +89.87 +15.215 +92.11 +84.22 +92.24 +7.73 +92.24 +2.3 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +67.47 +92.24 +88.12 +14.38 +83.13 +92.24 +37.64 +92.24 +12.12 +92.11 +64.12 +92.24 +1.28 +92.24 +24.59 +8.24 +31.56 +64.1 +13.1 +92.24 +37.64 +92.24 +12.16 +65.10 +21.12 24.29 +83.13 +92.24 +1.95 +92.27 +27.27 +9.24 +24.30 +89.87 +89.25 +92.24 +25.123 +92.11 +15.15 +89.87 +57.186 +59.19 +57.1 +89.87 +57.188 +92.24 +1.95 +92.30 +89.97 +64.1 +13.1 +92.24 +37.64 +92.24 +12.16 +57.203 +27.41 +65.22 +2.43 +89.87 +27.27 +92.22 +65.3 +2.43 +15.37 +57.186 +59.23 +59.19 +57.1 +89.87 +57.188 +92.11 +89.97 +64.1 +13.1 +92.24 +37.64 +92.24 +12.16 +6.13 +15.215 +84.22 +92.24 +1.70 +89.87 +84.4 +59.23 +58.23 +15.125 +92.27 +7867 59.37 +15.213 +84.20 +92.24 +1.63 +89.87 +17.12 +18.10 +92.24 +65.22 +84.22 +6.120 +89.124 +92.24 +65.28 +84.27 +15.215 +61.9 +13.1 +67.33 +92.24 +67.66 +92.24 +67.143 +15.40 +92.24 +12.28 +89.87 +63.28 +92.24 +88.110 +84.4 +83.9 +92.24 +88.12 +89.87 +15.215 +92.11 +84.22 +92.24 +7.73 +92.24 +2.3 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +32.5 +92.29 +59.23 +33.69 +92.11 +69.1 +89.87 +92.24 +33.69 +92.11 +7931 59.23 +27.22 +36.31 +92.24 +37.64 +92.24 +12.16 +64.1 +13.1 +9.24 +57.14 +92.18 +15.174 +90.16 +92.24 +7.32 +92.11 +67.115 +89.92 +67.97 +89.87 +13.107 +7954 68.22 +92.24 +93.169a +92.24 +33.15 +92.29 +15.35 +84.10 +91.1 +15.81 +84.22 +92.24 +1.81 +92.11 +33.224 +92.11 +83.13 +92.24 +7.20 +92.11 +89.52 +25.219 +92.11 +89.92 +33.69 +84.6 +92.29 +92.24 +32.32 +92.29 +89.92 +92.24 +76.7 +69.11 +92.29 +13.4 +92.24 +92.24 +45.9 +10.42 +69.11 +92.24 +10.16 +92.11 +33.129 +93.253a +89.92 +92.24 +10.49 +92.11 +93.158b +89.92 +93.202d +89.92 +93.341c +89.92 +93.173c +89.92 +92.24 +10.50 +92.11 +69.12 +59.23 +83.9 89.112 +92.4 +85.1 +89.50 +84.6 +92.29 +92.29 +59.23 +89.87 +25.180 +89.26 +92.11 +89.124 +92.24 +93.169a +33.69 +92.11 +69.3 +13.1 +53.79 +87.72 +89.131 +8040 83.13 +92.24 +1.81 +89.92 +90.6 +92.24 +10.8 +92.11 +89.92 +69.3 +90.45 +83.2 +76.7 +59.1 +89.26 +92.24 +31.105 +92.11 +67.136 +92.30 +92.24 +67.78 +33.212 +93.144b +92.24 +37.78 +92.24 +33.213 +93.169a +89.87 +33.69 +92.24 +87.77 +92.11 +92.29 +13.4 +93.190a +92.24 +53.42 +92.11 +23.94 +84.3 +92.24 +23.121 +89.92 +8087 92.24 +76.7 +42.3 +90.6 +92.11 +89.23 +92.24 +93.144b +37.110 +92.24 +93.190a +37.114 +89.87 +84.22 +7.24 +85.44 +90.44 +93.145 +92.24 +10.54 +93.379d +92.24 +10.49 +92.11 +89.23 +33.69 +92.24 +93.190a +92.11 +69.3 +71.32 +92.6 +8120 92.11 +89.92 +25.1 +92.11 +20.61 +25.252 +92.24 +87.64 +89.33 +64.12 +53.79 +92.11 +31.1 +8134 51.12 +92.24 +93.144b +13.107 +15.244 +92.24 +10.46 +92.24 +93.145 +83.13 +92.24 +83.10 +89.87 +25.90 +92.24 +93.144b +89.25 +89.78 +33.463 +33.221 +92.11 +57.71 +71.8 +92.27 +33.163 +89.87 +92.24 +33.299 +90.1 +92.24 +10.16 +92.11 +33.69 +57.71 +92.1 +83.1 +83.46 +6.134 +92.24 +8.10 +93.190a +92.24 +53.42 +89.87 +25.274 +92.24 +37.67 +89.26 +92.24 +33.463 +89.92 +92.24 +34.10 +33.323 +57.71 +89.87 +15.66 +20.80 +93.190a +83.13 +92.24 +7.24 +89.87 +15.166 +92.24 +8.10 +92.11 +83.46 +6.134 +89.87 +57.71 +92.24 +9.40 +89.87 +15.187 +92.24 +10.16 +92.11 +89.87 +15.77 +92.24 +36.38 +92.11 +15.203 +92.24 +8.7 +89.87 +52.4 +92.11 +89.87 +15.81 +33.198 +92.24 +93.169a +8229 33.212 +92.24 +93.169a +15.53 +84.10 +83.13 +6.41 +84.22 +1.86 +80.1 +28.67 +28.67 +89.87 +33.212 +92.24 +11.1 +15.144 +92.11 +8.50 +84.3 +92.24 +1.88 +89.87 +15.40 +24.1 +59.11 +11.1 +89.87 +25.49 +90.40 +92.11 +89.87 +23.139 +92.24 +23.147 +92.11 +8266 67.197 +13.107 +15.77 +92.11 +92.24 +36.38 +33.69 +1.86 +13.1 +92.24 +80.1 +89.92 +92.24 +67.199 +67.20 +67.85 +8283 15.43 +92.24 +11.1 +89.59 +15.37 +84.22 +92.24 +1.92 +57.188 +92.25 +5.1 +89.124 +92.24 +93.169a +33.69 +92.11 +69.3 +71.23 +8302 15.37 +57.71 +92.11 +92.7 +23.1 +89.124 +92.24 +33.69 +92.11 +69.3 +57.1 +83.1 +89.131 +8316 60.14 +5.8 +89.92 +60.11 +4.59 +89.87 +92.24 +33.69 +15.187 +92.1 +83.1 +92.11 +89.87 +33.323 +92.24 +11.1 +17.24 +84.20 +92.24 +3.15 +18.1 +92.24 +60.14 +5.8 +89.92 +92.24 +60.11 +4.59 +24.10 +84.16 +92.24 +1.11 +33.356 +89.87 +19.34 +57.71 +92.24 +36.38 +92.24 +5.8 +89.87 +92.24 +36.38 +92.24 +11.1 +89.87 +23.1 +59.23 +89.87 +23.16 +89.87 +15.203 +92.24 +57.24 +92.24 +19.40 +60.21 +6.150 +59.35 +89.94 +92.24 +23.1 +13.4 +9.24 +78.42 +60.43 +89.120 +9.34 +89.92 +9.42 +91.1 +67.53 +37.33 +92.24 +36.38 +15.95 +84.22 +92.24 +6.41 +89.87 +15.142 +92.11 +84.16 +92.24 +83.43 +67.139 +8403 15.43 +92.24 +11.1 +89.87 +15.43 +92.24 +11.1 +15.101 +84.16 +92.24 +1.46 +28.67 +28.67 +33.178 +89.87 +67.197 +13.107 +58.51 +85.1 +83.2 +89.94 +92.24 +6.41 +67.20 +81.27 +59.1 +84.3 +92.24 +1.60 +85.16 +38.13 +90.1 +92.24 +14.25 +89.23 +13.1 +82.11 +92.24 +14.4 +89.87 +60.51 +67.196 +92.24 +67.192 +15.81 +84.18 +92.11 +15.227 +83.46 +92.24 +1.70 +89.87 +92.24 +36.38 +24.1 +92.11 +83.46 +92.24 +1.70 +15.227 +25.244 +33.69 +90.21 +12.42 +13.1 +89.87 +89.25 +92.24 +25.251 +33.83 +89.124 +67.53 +33.70 +92.24 +93.169a +92.11 +33.69 +25.156 +92.1 +13.4 +69.3 +25.252 +89.87 +33.28 +92.11 +92.24 +93.296 +33.69 +12.9{N:001} 87.53 +89.65 +92.6 +13.4 +33.323 +92.1 +15.81 +84.18 +92.6 +83.46 +92.24 +2.7 +89.87 +92.24 +33.69 +15.81 +89.87 +15.107 +84.3 +92.24 +6.41 +93.296 +15.227 +83.46 +92.24 +2.7 +89.87 +15.81 +84.18 +92.24 +93.169a +89.87 +24.7 +92.24 +14.4 +25.252 +89.87 +68.1 +15.116 +33.83 +33.69 +12.9{N:001} 87.53 +21.18 +92.1 +89.87 +67.53 +92.24 +93.169a +16.19 +92.24 +8.30 +18.2 +92.11 +89.87 +33.69 +92.11 +31.96 +8550 31.37 +89.87 +15.99 +92.11 +84.22 +92.24 +6.41 +68.42 +92.24 +14.4 +89.87 +92.24 +83.13 +92.24 +6.41 +53.56 +92.11 +33.69 +70.3 +12.15 +12.15 +13.4 +91.1 +15.31 +15.81 +84.17 +92.24 +1.60 +84.16 +93.449a +89.87 +27.61 +92.11 +92.24 +9.1 +92.24 +80.1 +92.30 +15.66 +84.22 +63.1 +92.24 +1.80 +92.30 +89.87 +15.172 +92.11 +59.23 +92.24 +23.148 +23.148 +89.92 +33.168 +92.11 +90.22 +8606 24.73 +92.24 +6.180 +92.24 +6.172 +92.11 +89.87 +59.7 +24.73 +23.136 +67.47 +15.77 +92.24 +93.169a +84.3 +93.480a +11.49 +89.92 +53.94 +33.69 +8628 92.24 +36.38 +92.6 +36.28 +92.24 +33.239 +92.24 +53.77 +89.23 +69.3 +47.9 +92.24 +8.30 +67.31 +5.1 +23.1 +89.87 +92.24 +33.184 +33.69 +92.11 +8651 89.93 +92.7 +36.28 +92.24 +33.330 +92.24 +12.1 +89.26 +92.24 +33.239 +92.7 +89.23 +92.24 +12.1 +33.69 +87.8 +92.24 +10.14 +89.92 +92.24 +10.16 +89.92 +92.24 +33.399 +10.14 +89.139 +10.16 +23.99 +23.102 +89.124 +92.7 +33.69 +71.8 +92.27 +33.69 +92.24 +10.14 +89.139 +92.24 +10.16 +57.84 +71.8 +92.27 +89.25 +92.1 +35.2 +69.3 +69.3 +87.8 +92.24 +10.14 +92.11 +8707 89.92 +76.25 +92.24 +33.98 +92.24 +12.1 +89.26 +92.24 +33.239 +92.7 +88.228 +72.12 +33.459 +90.24 +92.7 +93.147 +33.69 +92.24 +11.12 +92.29 +92.24 +33.74 +92.1 +87.8 +89.124 +92.24 +26.3 +92.11 +83.31 +85.16 +89.122 +92.1 +89.94 +89.54 +53.53 +92.1 +33.224 +33.236 +33.330 +9.1 +89.87 +33.308 +92.24 +11.1 +33.69 +92.11 +24.52 +89.92 +32.5 +69.3 +92.24 +15.93 +84.22 +92.24 +8.19 +53.33 +92.24 +9.1 +89.125 +92.24 +15.40 +90.16 +92.24 +8.19 +92.29 +53.33 +92.24 +9.1 +67.47 +15.77 +92.24 +36.38 +33.69 +92.11 +28.1 +90.21 +92.24 +11.49 +33.212 +92.24 +33.98 +25.180 +89.87 +92.24 +33.184 +33.69 +59.23 +3.1 +92.27 +69.3 +43.5 +92.24 +12.12 +92.1 +92.24 +1.12 +43.11 +13.140 +92.11 +13.1 +32.42 +36.4 +32.42 +8811 89.67 +24.38 +24.38 +15.182 +59.25 +84.22 +1.55 +15.118 +89.87 +33.28 +92.24 +93.296 +33.69 +92.11 +33.141 +92.4 +92.24 +33.15 +89.87 +92.24 +33.69 +67.128 +89.93 +92.7 +32.49 +13.1 +69.11 +32.2 +90.21 +59.23 +92.24 +15.93 +84.22 +92.24 +8.19 +84.22 +92.24 +8.67 +15.13 +89.87 +84.22 +7.72 +15.44 +89.124 +92.24 +15.40 +90.16 +92.24 +8.19 +90.16 +92.24 +26.3 +15.40 +89.92 92.30 +53.33 +92.24 +9.1 +89.23 +90.16 +92.24 +26.3 +15.40 +30.10 +88.110 +20.82 +88.276 +88.271 +57.232 +33.272 +33.400 +92.29 +13.4 +92.24 +53.33 +92.24 +9.1 +89.124 +92.24 +47.13 +8.30 +23.1 +69.3 +53.33 +92.24 +9.1 +91.1 +15.40 +84.10 +92.24 +93.169a +15.53 +84.16 +92.24 +1.79 +93.602 +89.92 +93.577 +89.87 +91.13 +9.34 +93.612 +84.3 +92.24 +1.79 +92.30 +15.40 +33.83 +33.69 +88.76 +92.1 +12.9{N:001} 87.53 +10.30 +93.91 +92.24 +10.46 +92.1 +78.17 +12.41 +89.124 +92.24 +69.3 +33.28 +92.11 +33.98 +89.87 +15.77 +92.24 +36.38 +92.11 +33.161 +92.11 +33.69 +15.43 +92.11 +89.33 +33.83 +84.12 +92.4 +89.124 +92.24 +33.28 +33.69 +69.3 +15.66 +89.131 +8957 84.16 +92.24 +4.22 +92.24 +27.29 +11.58 +93.182b +89.124 +92.24 +15.81 +17.21 +92.11 +33.69 +12.9{N:001} 87.53 +35.1 +92.1 +89.124 +92.24 +33.28 +33.69 +69.3 +13.1 +88.4 +18.1 +92.24 +5.1 +92.24 +10.36 +89.87 +15.215 +92.24 +4.35 +89.124 +92.24 +33.69 +69.1 +12.9{N:001} 87.53 +8996 92.24 +4.35 +23.1 +63.20 +92.24 +5.5 +92.24 +15.118 +84.3 +92.24 +6.113 +92.24 +57.12 +92.11 +67.47 +33.28 +92.24 +93.169a +33.69 +92.11 +91.14 +9.34 +78.2 +92.6 +92.24 +31.85 +13.107 +92.6 +64.12 +25.1 +89.87 +23.136 +92.24 +10.46 +92.11 +67.131 +92.24 +67.1 +92.30 +91.1 +15.2 +84.10 +92.24 +93.169a +15.81 +83.25 +92.24 +1.70 +92.24 +93.444b +89.87 +15.101 +84.16 +92.24 +1.46 +17.12 +83.2 +89.87 +15.77 +92.11 +11.1 +78.3 +57.1 +89.108 +92.25 +23.175 +23.176 +24.38 +33.106 +89.92 +58.37 +59.1 +89.87 +85.37 +92.11 +83.25 +92.24 +8.49 +92.11 +89.87 +23.139 +92.11 +89.52 +92.24 +11.1 +25.213 +24.7 +33.106 +33.70 +23.176 +23.129 +89.92 +23.175 +15.227 +89.92 +24.38 +24.41 +89.87 +33.357 +92.24 +12.1 +93.182b +9099 92.24 +93.169a +33.308 +92.24 +36.38 +92.11 +33.69 +25.49 +90.57 +92.24 +11.1 +89.33 +67.20 +67.186 +60.12 +85.59 +92.1 +89.92 +69.3 +57.1 +92.14 +23.1 +89.92 +15.43 +92.11 +23.31 +69.3 +30.58 +9129 23.79 +83.47 +92.24 +15.19 +89.87 +33.69 +92.11 +92.24 +36.38 +84.6 +92.4 +83.13 +1.86 +5.8 +59.6 +89.52 +23.16 +11.1 +59.18 +89.87 +33.69 +92.11 +92.24 +93.169a +59.5 +5.8 +57.1 +89.87 +92.24 +33.69 +60.16 +89.92 +59.3 +4.60 +89.87 +33.327 +92.24 +11.1 +17.23 +83.46 +92.24 +1.39 +18.1 +92.24 +60.16 +5.8 +89.92 +92.24 +4.59 +89.87 +33.349 +19.34 +89.87 +57.71 +92.24 +36.38 +89.87 +92.24 +36.38 +92.24 +11.1 +89.87 +23.1 +59.23 +89.87 +23.16 +89.87 +92.24 +57.24 +92.24 +19.40 +60.16 +6.149 +59.35 +15.203 +89.94 +92.24 +23.1 +13.4 +60.42 +9.24 +89.120 +9.34 +89.92 +9.42 +89.87 +15.43 +92.24 +11.1 +15.95 +84.22 +92.24 +6.41 +89.87 +15.81 +84.22 +92.24 +1.79 +93.522 93.523 +91.1 +15.77 +92.24 +11.49 +89.92 +11.48 +27.31 27.46 +33.161 +92.11 +33.477 +84.4 +92.24 +12.16 +72.5 +92.11 +89.124 +92.24 +33.28 +33.69 +92.11 +67.197 +13.107 +33.69 +14.1 +89.23 +79.32 +92.24 +1.5 +89.92 +67.187 +67.205 +14.2 +89.23 +79.32 +14.56 +92.24 +1.5 +89.136 +92.24 +24.24 +92.24 +1.5 +30.109 +28.1 +89.136 +92.24 +33.477 +92.24 +67.145 +69.3 +74.5 +11.4 +88.110 +89.92 +31.101 +33.477 +25.9 +9286 33.477 +69.3 +9289 92.11 +89.131 +9292 92.24 +33.477 +93.197a +89.87 +85.65 +92.11 +15.37 +89.87 +92.24 +36.38 +15.81 +84.16 +92.24 +83.43 +29.17 +5.8 +18.1 +89.87 +92.24 +93.169a +33.69 +92.11 +30.45 +89.92 +27.59 +9318 92.24 +88.237 +92.24 +11.49 +89.92 +11.48 +9325 92.24 +33.158 +83.9 +92.25 +33.69 +90.21 +5.8 +69.3 +18.1 +89.124 +27.2 +92.24 +93.169a +33.69 +92.15 +33.158 +83.9 +92.25 +31.96 +89.33 +5.8 +69.3 +57.1 +67.129 +32.2 +69.7 +29.7 +92.24 +60.14 +5.8 +92.24 +60.43 +89.92 +59.5 +6.150 +57.55 +69.7 +92.24 +60.16 +5.8 +92.24 +60.42 +89.92 +59.5 +6.149 +57.55 +92.16 +69.11 +32.2 +90.21 +69.3 +89.6 +5.8 +33.69 +92.7 +89.124 +27.59 +9383 92.24 +88.237 +92.24 +11.49 +89.92 +11.48 +67.47 +32.5 +90.21 +69.3 +33.69 +27.59 +9396 92.24 +5.11 +92.24 +5.8 +89.125 +9402 92.24 +33.236 +92.24 +11.49 +89.92 +11.48 +9409 92.24 +93.169a +15.81 +84.22 +92.24 +1.79 +93.492b +92.24 +93.492b +33.180 +92.24 +36.38 +92.11 +33.69 +33.69 +92.24 +9.1 +92.14 +13.4 +92.24 +9.3 +92.24 +9.3 +89.87 +92.24 +33.69 +89.104 +92.24 +93.190a +92.24 +53.42 +89.104 +58.37 +93.142 +89.104 +58.37 +93.165 +89.139 +92.22 +92.24 +53.79 +33.69 +92.11 +89.124 +92.7 +92.14 +92.1 +13.4 +33.69 +89.87 +33.184 +93.341a +93.296 +33.69 +92.6 +13.4 +92.24 +53.82 +92.24 +12.15 +92.24 +12.15 +92.24 +23.88 +89.87 +33.28 +92.24 +93.169a +33.69 +92.11 +25.119 +13.1 +93.341a +93.64 +89.33 +9.14 +9486 9.14 +69.3 +28.38 +92.6 +89.125 +92.24 +12.12 +92.1 +92.24 +83.13 +92.24 +12.16 +89.94 +89.92 92.1 +92.6 +33.69 +90.21 +92.6 +13.4 +93.296 +89.92 +83.46 +92.29 +92.24 +2.21 +45.1 +92.1 +92.24 +11.33 +89.87 +12.50 +12.50 +69.3 +39.56 +92.11 +9522 92.6 +92.24 +6.220 +92.24 +37.64 +92.24 +12.16 +89.87 +71.8 +92.27 +37.46 +83.46 +92.24 +1.39 +9537 37.46 +83.13 +92.24 +12.16 +89.92 +71.8 +92.27 +37.47 +83.46 +92.24 +1.39 +9549 18.18 +83.13 +92.24 +12.16 +67.47 +9555 92.24 +36.38 +90.22 +92.23 +33.69 +90.21 +92.11 +13.4 +92.24 +53.82 +67.131 +67.47 +67.65 +93.169a +9570 33.150 +92.24 +36.38 +92.11 +90.21 +71.34 +92.11 +84.16 +93.480a +15.37 +89.87 +59.1 +24.78 +90.7 +92.24 +53.77 +89.92 +53.88 +89.92 +53.94 +89.87 +20.61 +89.87 +92.24 +60.50 +67.186 +23.94 +89.87 +15.180 +92.11 +92.24 +93.296 +68.1 +33.419 +92.11 +33.69 +88.78 +9608 12.9{N:001} 87.53 +69.3 +69.3 +13.104 +92.6 +92.29 +89.124 +92.24 +16.14 +33.69 +92.24 +93.296 +15.52 +83.40 +92.1 +12.34 93.330 +25.181 +92.1 +13.4 +89.33 +69.3 +30.20 +92.24 +92.24 +12.1 +89.125 +92.24 +92.24 +9.1 +67.47 +92.24 +93.169a +33.69 +92.24 +36.38 +92.11 +89.65 +92.12 +25.1 +36.35 +92.1 +15.81 +30.52 +92.25 +89.87 +24.83 +92.24 +6.27 +92.11 +89.87 +36.31 +92.1 +89.23 +71.8 +92.27 +25.1 +92.24 +23.88 +92.11 +21.18 +57.68 +92.11 +89.124 +71.8 +92.27 +23.114 +92.24 +23.88 +92.11 +90.43 +92.1 +13.17 +92.11 +89.23 +92.14 +68.33 +9.1 +89.67 +92.24 +1.39 +63.1 +57.189 +89.124 +92.24 +23.88 +92.11 +57.69 +89.139 +92.14 +57.152 +9.1 +57.143 +92.24 +23.88 +92.11 +89.23 +67.62 +92.24 +9.3 +92.24 +9.3 +15.81 +13.8 +92.24 +14.49 +92.24 +12.12 +92.11 +89.108 +92.24 +12.28 +92.11 +89.87 +67.47 +38.16 +59.27 +89.8 +92.24 +42.8 +92.11 +72.6 +33.69 +92.7 +90.21 +9733 92.12 +92.24 +83.1 +85.8 +92.18 +69.3 +69.3 +90.78 +23.99 +67.119 +71.8 +24.1 +92.24 +9.3 +92.24 +9.3 +15.81 +89.80 +92.24 +37.64 +92.11 +91.1 +67.48 +67.186 +60.15 +15.168 +92.24 +93.169a +92.24 +93.296 +89.92 +93.158a +89.92 +93.190b +92.24 +10.49 +92.11 +89.87 +15.176 +92.11 +84.16 +1.46 +81.6 +28.67 +28.67 +89.87 +58.16 +83.33 +92.11 +89.92 +14.37 +92.24 +8.18 +92.11 +64.12 +92.24 +1.28 +89.94 +92.24 +6.162 +92.11 +13.48 +14.50 +64.12 +92.24 +14.36 +89.87 +91.13 +24.1 +92.11 +93.266 +89.92 +93.142 +33.157 +90.60 +92.11 +89.87 +33.28 +92.24 +93.296 +33.69 +92.24 +93.169a +12.9{N:001} +65.22 66.2 +13.1 +92.4 +83.1 +85.1 +89.65 +25.1 +42.29 +83.1 +60.12 +7.9 +92.6 +9830 89.92 +93.266 +9833 89.92 +93.142 +9836 67.128 +92.11 +33.70 +91.13 +1.34 +14.50 +14.62 +92.11 +89.87 +91.13 +33.103 +84.4 +92.24 +1.34 +33.69 +92.29 +13.4 +92.24 +12.15 +92.1 +92.24 +58.53 +89.5 +92.27 +25.87 +31.56 36.14 +92.11 +89.87 +24.52 +92.24 +36.38 +17.22 +9869 8.18 +92.11 +89.92 +25.252 +78.19 +89.87 +15.77 +92.24 +93.169a +89.87 +24.73 +92.11 +33.69 +17.9 +89.92 +69.3 +25.252 +89.87 +24.34 +92.24 +8.23 +92.11 +92.23 +24.1 +89.131 +9895 92.37 +93.169a +58.51 +89.87 +15.107 +92.11 +84.4 +92.24 +1.46 +33.329 +92.11 +92.24 +93.169a +33.69 +92.23 +33.69 +92.24 +33.488 +67.119 +9915 92.24 +9.3 +92.24 +9.3 +89.121 +23.121 +23.94 +89.87 +33.180 +92.11 +92.24 +36.38 +33.69 +89.50 +92.15 +92.24 +53.94 +33.69 +90.21 +71.34 +93.142 +15.81 +60.46 +89.87 +92.24 +33.184 +33.69 +91.6 +93.142 +15.81 +89.87 +13.65 +59.23 +89.124 +33.69 +92.7 +90.21 +93.142 +67.20 +15.81 +89.92 +69.3 +31.27 +92.11 +89.125 +41.7 +90.56 +92.11 +59.19 +25.1 +61.9 +89.93 +92.24 +9.3 +92.24 +9.3 +71.36 +24.78 +90.1 +92.11 +67.47 +32.5 +92.24 +36.38 +90.21 +89.6 +93.190a +92.24 +53.42 +33.69 +92.11 +91.1 +15.81 +84.18 +92.24 +11.1 +15.77 +92.11 +9.24 +17.19 +92.11 +89.92 +33.69 +87.53 +88.76 +92.1 +92.24 +10.42 +89.33 +23.169 +89.92 +20.18 +10008 89.23 +67.11 +15.118 +84.22 +92.24 +2.5 +89.92 +67.11 +84.22 +92.24 +2.7 +89.92 +15.172 +92.11 +92.24 +36.38 +92.6 +10026 69.3 +74.5 +92.11 +23.139 +89.87 +33.28 +92.24 +93.169a +33.69 +91.14 +11.4 +31.98 +89.92 +88.264 +67.119 +67.30 +89.108 +92.7 +85.1 +67.119 +67.30 +25.171 +92.7 +15.166 +92.1 +92.11 +83.1 +89.87 +33.419 +92.11 +92.24 +93.169a +89.87 +15.40 +84.3 +92.11 +92.24 +12.37 +89.87 +23.139 +92.24 +10.36 +67.131 +92.24 +67.199 +92.30 +67.47 +92.24 +36.38 +15.77 +92.24 +93.169a +28.67 +28.67 +33.69 +10083 92.4 +69.3 +74.5 +53.102 +92.11 +89.87 +92.24 +33.69 +92.11 +89.26 +92.24 +31.95 +92.7 +89.23 +72.6 +33.69 +92.7 +89.67 +10102 31.85 +64.12 +3.35 +3.20 +33.69 +92.24 +1.46 +92.29 +15.2 +84.9 +83.2 +89.87 +15.2 +89.92 +92.23 +71.3 +92.7 +10120 15.123 +92.11 +83.13 +92.24 +93.444a +33.69 +92.11 +92.24 +93.169a +71.36 +92.24 +9.3 +92.24 +9.3 +37.12 +10136 37.12 +9.1 +89.87 +20.61 +92.11 +89.87 +92.24 +60.50 +67.142 67.186 +23.94 +89.87 +25.274 +78.19 +10150 15.81 +92.11 +84.22 +93.498 +15.77 +92.24 +92.24 +57.181 +57.65 +92.24 +93.296 +89.87 +33.69 +69.11 +92.24 +33.243 +92.7 +57.178 +57.181 +33.69 +69.1 +89.87 +15.81 +84.22 +92.24 +7.3 +67.29 +92.11 +92.24 +93.169a +33.69 +92.14 +92.6 +31.30 +93.341a +92.24 +37.67 +92.24 +9.22 +90.15 +92.14 +57.65 +57.179 +89.139 +57.180 +90.7 +92.24 +11.69 +92.11 +89.139 +90.7 +92.24 +11.74 +89.87 +33.69 +90.7 +92.24 +11.74 +33.69 +92.11 +92.24 +93.169a +10213 37.134 +13.1 +92.24 +11.69 +89.124 +89.59 +69.3 +25.179 +92.11 +15.34 +84.16 +1.70 +15.215 +6.10 +89.87 +92.24 +15.101 +60.46 +4.59 +15.203 +89.87 +79.110 +92.24 +8.19 +92.11 +27.27 +6.80 +92.30 +18.1 +57.152 +92.11 +90.37 +92.1 +89.92 +92.6 +67.33 +92.30 +92.24 +67.199 +15.77 +92.24 +36.38 +92.24 +93.169a +33.69 +89.46 +92.14 +87.22 +13.1 +83.13 +92.24 +37.64 +92.24 +12.16 +89.87 +33.308 +9.42 +85.40 +92.11 +84.22 +83.10 +92.11 +89.87 +33.69 +72.6 +33.69 +92.7 +10282 31.60 41.50 +89.92 +13.3 +64.12 +92.24 +9.42 +69.3 +69.3 +90.70 +13.62 +92.24 +37.64 +92.24 +12.16 +89.50 +92.18 +88.56 +92.25 +64.12 +92.24 +9.42 +92.29 +92.29 +13.1 +92.24 +87.22 +83.13 +92.24 +37.64 +92.24 +12.16 +89.93 +71.8 +92.27 +34.53 +92.22 +9.42 +64.2 +90.23 +92.24 +33.126 +92.1 +92.1 +34.53 +89.94 +71.8 +92.27 +88.304 +92.22 +92.24 +87.58 +92.29 +92.24 +31.85 +90.23 +92.1 +65.44 +92.11 +90.22 +18.23 +7.69 +4.32 +83.18 +92.24 +8.25 +92.11 +89.87 +15.117 +83.13 +92.24 +1.73 +92.24 +1.69 +22.9 +92.24 +9.23 +89.25 +92.24 +88.306 +89.23 +71.38 +13.117 +92.24 +88.306 +89.130 +22.9 +92.24 +9.1 +90.4 +92.27 +92.24 +88.306 +13.117 +10376 89.65 +92.24 +8.30 +92.6 +89.139 +92.24 +8.49 +92.6 +88.304 +92.6 +19.18 +92.11 +89.87 +85.34 +84.3 +92.6 +65.43 +92.6 +13.1 +90.70 +13.62 +92.24 +23.88 +23.176 +89.139 +23.175 +64.18 +60.11 +8.30 +89.139 +60.11 +8.49 +57.1 +15.215 +13.62 +92.24 +2.3 +92.24 +67.96 +89.92 +89.65 +92.24 +8.23 +92.6 +88.304 +92.6 +85.43 +92.11 +89.87 +15.215 +84.3 +92.6 +65.43 +92.6 +13.1 +24.39 +13.62 +92.24 +23.88 +90.70 +64.18 +60.11 +8.23 +57.1 +15.215 +13.62 +92.24 +1.21 +92.24 +2.3 +30.45 +69.3 +88.192 +92.22 +92.24 +87.58 +92.29 +89.23 +33.69 +92.7 +90.21 +92.24 +12.28 +92.11 +83.13 +1.11 +67.86 +67.86 +24.7 +92.24 +8.18 +92.24 +12.12 +92.1 +92.24 +83.13 +1.11 +92.14 +92.7 +31.30 +89.67 +57.2 +92.12 +9.24 +60.33 +4.22 +89.87 +15.24 +60.10 +63.20 +92.11 +69.12 +15.48 85.62 +92.24 +60.32 +60.18 +83.46 +92.24 +1.46 +89.87 +15.34 +27.41 +92.24 +15.24 +89.87 +89.67 +13.107 +27.27 +92.11 +72.6 +33.69 +92.7 +90.21 +25.125 +89.27 +92.11 +78.28 +64.18 +89.27 +92.24 +60.32 +60.18 +92.24 +69.3 +15.24 +61.9 +69.3 +13.4 +30.59 +90.20 +92.24 +12.12 +92.7 +92.24 +83.13 +1.11 +90.22 +21.32 +60.10 +92.24 +87.58 +92.29 +10539 89.67 +88.289 +92.24 +11.89 +92.6 +15.15 +33.417 +92.11 +89.115 +92.6 +89.92 +92.11 +58.51 +89.67 +92.6 +31.56 +57.189 +92.24 +11.89 +92.6 +89.124 +89.67 +69.3 +31.56 +15.168 +89.108 +92.6 +59.75 +60.10 +89.139 +60.11 +89.59 +89.13 +33.101 +60.11 +89.139 +60.12 +33.270 +76.21 +59.23 +13.115 +89.124 +89.67 +36.27 +92.11 +10585 92.24 +11.32 +89.124 +89.67 +10590 92.24 +11.32 +36.27 +13.1 +92.6 +64.13 +92.24 +11.38 +89.92 +92.24 +57.184 +72.6 +33.69 +92.7 +71.8 +59.19 +37.46 +83.46 +92.24 +1.39 +10611 37.46 +83.13 +1.11 +89.92 +71.8 +59.19 +37.47 +83.46 +92.24 +1.39 +10622 37.47 +83.13 +1.11 +72.6 +89.97 +33.69 +92.7 +10630 89.67 +60.11 +63.20 +92.7 +31.15 +83.46 +92.24 +1.39 +89.6 +59.24 +13.105 +71.8 +92.27 +33.163 +13.107 +92.11 +90.14 +92.24 +12.12 +92.1 +92.24 +83.13 +1.11 +89.23 +83.5 +10656 15.123 +60.11 +89.139 +60.12 +90.23 +92.24 +92.2 +33.126 +83.2 +85.1 +83.13 +83.9 +92.11 +67.47 +15.77 +92.24 +93.296 +33.69 +92.11 +12.9{N:001} +67.14 +88.289 +90.59 +92.1 +92.24 +11.89 +92.1 +89.92 +40.8 +92.11 +59.21 +60.73 +33.69 +92.11 +92.24 +93.169a +69.3 +33.69 +92.6 +59.21 +60.73 +89.125 +59.21 +60.74 60.77 +60.16 +10703 64.4 +92.24 +37.64 +92.24 +12.16 +9.24 +37.67 +92.27 +25.1 +57.229 +57.228 +90.60 +92.24 +87.76 +92.11 +89.87 +68.1 +92.11 +57.229 +10723 92.11 +92.22 +57.222 +60.45 +6.82 +89.87 +69.3 +57.1 +92.11 +57.153 +33.323 +92.24 +57.12 +57.186 +92.11 +89.92 +92.24 +10.54 +89.92 +92.24 +10.36 +89.92 +59.23 +59.19 +57.1 +89.87 +57.153 +89.50 +17.22 +92.24 +87.76 +17.21 +92.11 +33.69 +25.168 +90.57 +92.1 +89.92 +63.2 +57.153 +92.6 +89.87 +25.49 +92.24 +57.12 +92.24 +87.76 +92.30 +40.8 +92.11 +89.92 +92.24 +57.210 +57.223 +92.11 +89.124 +15.40 +92.24 +87.76 +92.30 +27.27 +92.22 +92.24 +87.81 +92.11 +92.27 +57.219 +92.11 +60.33 +6.75 +89.87 +18.6 +92.11 +19.53 +33.69 +57.153 +89.65 +92.12 +57.219 +89.50 +17.22 +92.24 +87.81 +92.11 +33.168 +92.11 +33.69 +25.168 +90.57 +92.1 +89.92 +57.153 +92.6 +89.124 +92.24 +69.3 +30.58 +89.125 +15.37 +85.34 +92.11 +84.22 +7.24 +67.119 +57.153 +92.24 +57.219 +89.50 +92.24 +87.81 +92.11 +24.1 +92.24 +13.107 +25.274 +78.19 +89.87 +15.81 +33.200 +92.24 +57.12 +92.25 +59.23 +92.24 +13.107 +67.47 +33.308 +92.11 +92.24 +57.12 +92.11 +33.69 +92.11 +87.76 +88.110 +63.2 +92.24 +57.221 +92.30 +57.223 +92.6 +89.32 +33.168 +92.1 +69.11 +71.21 +89.93 +92.6 +88.76 +92.24 +87.81 +92.6 +64.12 +89.93 92.1 +92.6 +88.76 +89.87 +88.174 +92.24 +57.12 +92.11 +37.111 +92.11 +92.24 +37.126 +67.119 +10890 57.153 +59.23 +92.24 +57.219 +10895 61.9 +89.93 +92.24 +12.12 +92.1 +92.24 +1.12 +42.7 +92.7 +10906 40.8 +59.27 +92.24 +11.89 +92.11 +90.15 +92.24 +26.3 +92.7 +91.1 +13.107 +10918 68.22 +92.24 +93.169a +92.24 +33.98 +92.29 +15.35 +84.3 +92.24 +93.444a +89.87 +15.81 +84.22 +92.24 +1.79 +92.24 +93.486b +83.43 +92.24 +93.485 +89.87 +15.156 +92.11 +11.1 +78.3 +89.87 +23.139 +92.11 +83.2 +91.1 +15.77 +92.11 +11.49 +27.31 +92.11 +89.92 +33.69 +89.65 +71.32 +34.78 +92.24 +10.54 +92.11 +10962 59.24 +89.15 +89.87 +92.24 +33.184 +33.69 +69.11 +33.68 +90.21 +92.24 +42.35 +67.131 +67.65 +79.102 +89.92 +79.103 +42.29 +92.11 +89.87 +33.69 +89.31 +92.29 +85.65 +10.53 +92.24 +10.14 +89.92 +92.24 +10.16 +89.87 +34.22 +92.24 +10.54 +92.11 +89.87 +13.4 +92.24 +60.11 +13.62 +8.4 +63.4 +89.52 +67.130 +13.4 +60.11 +89.125 +8.4 +63.4 +89.50 +92.27 +92.24 +12.1 +34.73 +9.1 +69.3 +34.78 +33.69 +92.11 +89.50 +92.15 +93.266 +33.329 +57.71 +6.64 +33.41 +89.87 +34.78 +33.69 +92.11 +90.21 +93.266 +11034 92.24 +88.224 +92.7 +13.138 +92.7 +34.78 +92.24 +10.54 +92.7 +89.124 +67.131 +67.65 +69.3 +13.3 +61.9 +89.124 +33.69 +92.7 +90.21 +71.8 +92.27 +34.78 +92.24 +10.54 +92.11 +69.3 +89.27 +88.271 +89.87 +34.66 +58.37 +88.276 +33.69 +92.11 +92.24 +36.38 +89.65 +61.9 +13.1 +92.24 +89.1 +92.24 +10.53 9.24 +89.108 +92.24 +10.54 +69.3 +65.44 +34.66 +89.87 +92.24 +33.69 +92.11 +69.3 +59.23 +31.57 +92.24 +33.98 +92.29 +89.125 +92.27 +11096 89.23 +13.69 +9.25 9.28 +92.18 +67.131 +8.69 +10.16 +23.52 +61.9 +89.92 +13.69 +9.25 +92.18 +9.26 +90.1 +92.24 +9.1 +89.92 +13.69 +9.29 +92.18 +9.27 +92.25 +89.26 +92.24 +37.64 +92.24 +12.16 +92.24 +74.5 +31.57 +31.57 +67.47 +15.172 +92.11 +9.42 +89.59 +92.24 +8.30 +85.51 +92.11 +89.92 +33.178 +89.124 +92.24 +36.38 +33.419 +92.11 +89.87 +92.24 +93.169a +33.69 +13.140 +92.24 +9.42 +89.92 +69.3 +13.146 +92.11 +15.81 +84.18 +92.1 +89.23 +92.24 +92.31 +13.1 +92.24 +37.64 +92.24 +12.16 +89.87 +85.51 +92.24 +8.30 +92.11 +15.34 +84.10 +91.1 +91.13 +92.22 +15.77 +92.11 +33.69 +33.243 +92.14 +88.1 +42.7 +89.59 +90.65 +23.88 +67.96 +89.87 +92.24 +33.69 +92.11 +92.15 +92.1 +33.180 +89.6 +92.24 +88.1 +63.4 +13.4 +92.24 +88.1 +89.124 +89.65 +25.1 +13.62 +92.24 +23.88 +90.70 +11209 92.24 +33.330 +33.69 +92.11 +92.36 +89.87 +92.24 +93.169a +11218 92.24 +69.3 +20.82 +69.3 +88.276 +69.3 +57.232 +69.3 +33.271 +87.8 +92.24 +10.14 +89.92 +92.24 +10.16 +89.92 +25.43 +92.24 +11.89 +92.6 +64.12 +92.10 +33.69 +92.11 +92.24 +9.32 +92.29 +59.23 +36.19 +92.14 +59.75 +13.21 +33.69 +92.11 +92.24 +93.169a +89.65 +25.1 +88.36 +13.1 +15.52 +57.186 +92.6 +92.24 +57.16 +89.87 +57.71 +57.53 +11267 57.1 +65.10 +83.13 +1.11 +89.87 +84.24 +36.31 +92.1 +89.124 +92.24 +9.32 +24.52 +92.24 +33.98 +15.37 +25.274 +89.23 +11285 57.1 +57.15 +78.3 +89.87 +92.24 +93.169a +33.69 +92.24 +36.38 +92.11 +72.6 +33.69 +92.7 +90.21 +57.26 +22.32 +90.70 +13.62 +92.24 +37.64 +92.24 +12.16 +89.94 +67.55 +33.69 +92.7 +22.39 +13.1 +4.30 +84.29 +11316 6.215 +11318 64.18 +57.26 +13.62 +92.24 +37.64 +92.24 +12.1 +89.87 +24.52 +92.24 +36.38 +25.219 +78.19 +33.69 +89.46 +92.14 +74.5 +21.27 +89.87 +24.9 +92.24 +93.169a +33.69 +92.11 +90.3 +9.1 +92.29 +71.3 +13.1 +89.124 +90.3 +12.1 +59.23 +71.2 +67.47 +33.28 +92.24 +93.296 +33.69 +92.11 +91.13 +92.4 +85.45 +59.23 +89.87 +36.31 +92.6 +89.46 +92.14 +13.1 +92.4 +11370 92.24 +93.169a +33.69 +92.11 +72.6 +33.69 +92.7 +90.21 +92.7 +92.24 +36.31 +92.1 +67.33 +92.24 +67.147 +11386 17.12 +92.24 +9.3 +92.24 +9.3 +83.46 +6.112 +14.49 +92.11 +17.12 +89.93 +11398 83.46 +60.21 +6.112 +37.49 +92.24 +60.21 +10.2 +92.24 +93.182b +89.92 +59.23 +92.18 +85.45 +7.3 +89.139 +10.49 +89.139 +10.50 +89.139 +10.14 +89.139 +10.16 +89.139 +10.36 +89.139 +1.95 +89.31 +92.24 +11427 33.126 +11429 57.125 +89.92 +23.88 +67.96 +57.131 +89.124 +59.1 +87.45 +13.1 +87.66 +89.92 +87.66 +87.45 +89.23 +64.1 +13.1 +92.24 +37.64 +92.24 +12.16 +9.24 +57.14 +92.18 +15.40 +89.114 +67.187 +57.172 +42.43 +84.22 +92.24 +3.28 +92.11 +89.87 +31.15 +89.108 +92.24 +42.43 +57.163 +6.75 +92.24 +67.186 +15.66 +92.11 +84.22 +92.24 +3.28 +92.11 +89.87 +15.40 +67.35 +60.50 +67.199 +24.1 +58.37 +85.8 +83.13 +92.24 +57.207 +42.46 +89.87 +92.30 +33.69 +15.15 +89.93 +92.7 +84.22 +92.24 +3.28 +89.92 +71.8 +92.27 +13.1 +66.5 +57.152 +92.7 +89.87 +92.24 +15.37 +89.87 +67.55 +15.40 +67.35 +60.53 +89.87 +60.56 +67.199 +42.7 +64.16 +89.87 +67.35 +92.24 +60.58 +15.40 +27.27 +58.37 +85.8 +89.87 +33.69 +92.11 +92.15 +83.1 +85.8 +63.1 +92.24 +67.186 +42.46 +33.69 +92.11 +89.33 +92.23 +92.4 +57.172 +33.69 +92.11 +15.15 +89.93 +92.7 +84.22 +92.24 +3.28 +89.87 +67.197 +13.48 +33.69 +92.24 +57.12 +92.24 +3.28 +92.24 +37.86 +92.11 +33.307 +92.24 +42.43 +89.87 +57.153 +92.24 +57.173 +68.1 +11569 92.24 +61.13 +67.119 +92.24 +60.46 +11575 15.81 +92.24 +67.35 +92.24 +60.58 +67.199 +57.125 +89.91 +6.75 +89.87 +15.81 +92.24 +60.46 +31.29 +90.21 +59.1 +57.125 +11593 57.125 +92.24 +89.91 +6.75 +89.93 +92.11 +89.87 +57.125 +33.382 +90.31 +92.24 +57.14 +33.69 +92.29 +92.24 +61.13 +60.10 +67.199 +42.41 +89.92 +58.33 +92.11 +13.9 +92.4 +92.24 +25.177 +92.24 +22.4 +92.24 +67.186 +89.92 +92.24 +14.67 +89.124 +92.24 +33.28 +92.22 +92.11 +33.69 +34.16 +69.3 +88.128 88.22 +92.6 +69.12 +6.75 +31.15 +92.1 +15.203 +92.24 +92.8 +89.87 +15.52 +11646 30.58 +92.29 +92.24 +61.13 +57.152 +64.12 +89.93 +92.6 +69.11 +71.1 +92.1 +92.27 +25.1 +42.7 +89.5 +92.24 +92.2 +89.139 +92.24 +57.108 88.165 +92.6 +57.108 88.165 +13.1 +89.33 +92.1 +57.110 +13.1 +61.9 +13.1 +92.24 +87.66 +87.45 +89.92 +92.24 +87.45 +87.66 +11683 93.169a +11686 84.16 +93.480a +15.180 +92.24 +60.21 +28.67 +28.67 +89.87 +83.47 +92.24 +15.19 +33.69 +92.11 +91.13 +15.101 +84.16 +93.480a +89.87 +92.24 +9.3 +92.24 +9.3 +37.111 +92.24 +53.88 +89.92 +53.94 +89.87 +56.31 +92.11 +11718 89.87 +37.111 +92.11 +92.24 +11.37 +89.57 +92.24 +33.406 +89.92 +19.9 +89.92 +20.76 +89.87 +92.24 +60.50 +67.186 +23.94 +67.47 +15.77 +92.11 +92.24 +10.16 +92.24 +10.42 +93.137 +89.108 +92.24 +10.42 +92.11 +17.21 +89.87 +33.163 +92.12 +90.15 +92.11 +89.87 +92.24 +33.69 +92.11 +92.14 +25.1 +33.69 +92.11 +33.69 +90.22 +17.17 +92.29 +92.24 +60.11 +10.42 +92.1 +11770 87.34 +82.8 +89.92 +11775 82.7 +92.6 +67.136 +92.24 +37.64 +92.6 +89.124 +33.28 +92.24 +93.169a +33.69 +69.3 +32.4 +92.14 +33.163 +74.5 +24.81 +92.24 +24.81 +92.27 +24.81 +92.1 +67.62 +33.69 +92.11 +74.5 +33.69 +92.11 +91.6 +92.24 +24.81 +92.1 +24.81 +89.124 +92.24 +17.17 +87.34 +82.8 +92.1 +89.92 +87.35 +82.7 +69.3 +13.1 +92.2 +92.29 +13.142 +89.125 +92.27 +77.3 +90.1 +92.24 +12.12 +92.1 +89.87 +24.52 +92.24 +60.19 +88.187 +90.24 +92.24 +60.11 +10.49 +89.87 +92.24 +93.169a +33.308 +92.11 +33.69 +28.1 +90.21 +92.24 +37.56 +92.24 +11.37 +37.50 +92.11 +89.92 +92.24 +11855 37.48 +92.11 +69.3 +61.9 +11860 89.5 +92.7 +89.125 +71.8 +92.27 +25.1 +83.9 +92.7 +87.22 +13.48 +13.4 +92.7 +35.20 +89.92 +71.8 +92.27 +25.1 +83.9 +92.7 +13.1 +87.45 +13.4 +92.7 +87.76 +64.13 +92.24 +9.3 +92.24 +9.3 +69.3 +15.81 +35.19 +89.125 +35.19 +89.92 +23.100 +92.24 +23.88 +92.11 +37.130 +90.37 +59.1 +91.1 +15.40 +92.11 +84.3 +93.479 +15.156 +92.11 +11.1 +59.1 +89.87 +91.13 +60.11 +24.38 +17.12 +83.25 +92.24 +1.99 +33.212 +90.21 +93.169a +15.28 +33.83 +33.69 +88.76 +92.4 +87.53 +10.30 +93.91 +89.87 +92.24 +11.1 +33.419 +92.11 +90.22 +33.117 +89.124 +92.24 +78.2 78.28 +33.83 +33.69 +88.76 +92.4 +87.53 +10.30 +93.91 +89.87 +68.42 +92.24 +93.169a +33.307 +92.11 +89.87 +33.69 +25.1 +92.14 +42.7 +92.7 +33.69 +92.11 +87.53 +90.22 +24.43 +92.24 +8.23 +92.4 +89.87 +25.49 +92.24 +93.169a +24.73 +92.24 +8.23 +92.11 +89.87 +67.53 +24.42 +89.87 +15.156 +92.11 +91.1 +11983 15.75 +84.16 +93.480a +89.87 +15.81 +84.16 +93.433 +84.16 +92.24 +1.46 +92.24 +3.9 93.616 +67.47 +93.169a +15.66 +60.11 +36.38 +33.69 +92.11 +15.34 +84.16 +92.24 +1.92 +92.24 +83.42 +92.7 +89.87 +12011 27.27 +4.31 +18.13 +89.92 +4.33 +89.108 +92.11 +18.18 +15.165 +92.1 +89.87 +89.67 +92.12 +92.7 +33.69 +92.12 +33.69 +90.21 +92.24 +12.9{N:001} +92.11 +57.40 +12034 89.87 +67.53 +15.66 +92.11 +12039 92.29 +13.107 +89.59 +13.106 +92.24 +33.69 +90.4 +92.24 +53.79 +33.69 +33.69 +92.24 +11.66 +93.582b +91.13 +92.24 +37.67 +92.6 +15.81 +92.6 +88.60 +89.92 +15.97 +83.46 +4.31 +12065 83.46 +4.33 +4.9 +4.7 +12070 92.24 +36.38 +15.10 +89.92 +42.7 +64.14 +33.325 +92.11 +92.24 +93.169a +15.165 +92.24 +4.31 +89.92 +92.24 +4.33 +89.87 +85.51 +84.20 +92.11 +92.24 +6.162 +89.87 +17.15 +83.49 +92.11 +89.87 +92.24 +59.11 +11.1 +16.22 +92.25 +92.24 +6.162 +83.47 +92.24 +1.99 +89.94 +58.37 +19.17 +3.49 +90.15 +92.24 +3.2 +89.87 +16.22 +83.47 +92.24 +1.99 +89.94 +92.24 +11.1 +92.24 +15.143 +92.11 +89.92 +92.24 +15.144 +33.83 +33.69 +33.364 +92.24 +10.30 +93.91 +33.470 +92.24 +15.81 +89.5 +33.126 +12.9{N:001} +33.364 +83.13 +92.24 +1.13 +89.87 +15.93 +92.11 +84.22 +93.480a +25.233 +59.23 +92.24 +11.61 +33.69 +92.14 +13.4 +92.29 +89.87 +92.24 +11.1 +33.69 +92.29 +13.4 +92.24 +53.79 +93.169a +92.24 +84.3 +93.536 +92.24 +93.444a +91.1 +15.93 +93.169a +84.22 +92.24 +7.16 +89.87 +15.44 +59.23 +92.24 +57.186 +89.92 +57.188 +83.13 +92.24 +7.16 +89.92 +16.18 +92.24 +6.113 +92.24 +57.205 +89.92 +92.24 +6.111 +92.24 +57.186 +92.24 +4.44 +89.92 +33.69 +92.11 +33.54 +92.24 +7.2 +92.1 +7.2 +33.178 +33.131 +89.124 +92.7 +92.11 +13.9 +1.57 +57.240 +89.87 +15.77 +92.11 +24.38 +89.92 +23.175 +83.13 +92.24 +7.16 +89.87 +23.139 +92.11 +89.124 +92.24 +53.88 +89.92 +92.24 +53.94 +24.1 +92.24 +25.215 +92.27 +90.45 +89.92 +92.24 +9.41 +92.24 +33.83 +83.13 +92.24 +7.16 +89.92 +33.69 +33.364 +92.24 +10.30 +93.91 +88.187 +89.87 +33.69 +92.11 +24.52 +92.14 +92.29 +33.69 +89.87 +92.24 +93.169a +33.69 +92.11 +69.1 +67.10 +33.68 +90.21 +90.16 +33.74 +9.43 +89.92 +23.7 +13.130 +33.354 +89.87 +34.40 +92.11 +15.40 +83.20 +92.24 +1.89 +84.22 +93.427a +89.87 +67.194 +83.2 +12290 67.187 +12292 84.16 +92.24 +1.89 +23.29 +89.87 +24.1 +3.5 +92.22 +83.23 +92.24 +1.99 +15.7 +84.17 +92.11 +12307 92.23 +27.27 +83.47 +92.11 +89.131 +12313 3.51 +12315 89.87 +33.69 +92.11 +12319 67.130 +90.16 +92.6 +3.33 +13.80 +67.95 +92.24 +67.95 +89.87 +79.82 +67.113 +92.24 +3.5 +89.87 +24.1 +92.24 +36.38 +25.213 +33.69 +12339 67.113 +79.82 +92.24 +3.5 +89.87 +33.28 +92.24 +93.169a +33.69 +92.11 +72.6 +33.69 +92.7 +89.67 +12354 31.85 +89.92 +69.3 +31.37 +69.3 +12360 92.24 +92.24 +3.5 +42.7 +89.125 +89.73 +92.24 +1.46 +92.29 +33.69 +15.203 +89.87 +15.215 +84.22 +92.24 +1.69 +13.107 +89.92 +59.23 +71.8 +59.7 +33.163 +67.136 +92.24 +33.178 +31.85 +57.125 +91.1 +15.81 +92.11 +84.22 +92.24 +7.16 +15.77 +92.11 +33.224 +92.24 +53.88 +89.92 +92.24 +53.77 +92.24 +11.12 +33.69 +89.5 +58.30 +37.35 +92.29 +42.7 +89.92 +92.14 +92.6 +37.98 +92.24 +37.35 +92.29 +89.87 +33.184 +92.24 +93.169a +33.69 +92.11 +33.180 +92.7 +89.93 92.1 +33.98 +60.10 +89.67 +92.27 +33.69 +92.1 +89.93 92.1 +92.7 +33.69 +89.5 +58.30 +37.35 +92.29 +42.7 +92.24 +53.41 +92.24 +93.190a +84.6 +13.1 +90.16 +12.16 +89.139 +90.16 +9.1 +89.87 +92.24 +33.158 +83.9 +92.25 +33.69 +89.67 +33.69 +90.16 +12.16 +33.69 +92.4 +89.50 +12465 69.3 +31.85 +92.11 +89.124 +89.67 +33.69 +90.16 +9.1 +25.252 +92.24 +87.64 +89.23 +59.23 +64.12 +53.79 +31.1 +92.24 +93.190a +89.87 +33.28 +92.24 +93.169a +33.69 +69.3 +28.1 +33.69 +92.11 +89.93 +92.11 +69.7 +92.1 +33.69 +92.7 +89.5 +58.30 +37.35 +92.29 +42.7 +12504 92.14 +92.7 +31.30 +9.24 +57.1 +10.36 +60.11 +15.77 +92.24 +60.46 +33.69 +10.36 +15.35 +67.205 +42.41 +83.13 +92.24 +3.28 +89.124 +92.24 +33.28 +33.69 +92.1 +87.53 +12529 69.3 +15.37 +89.87 +15.77 +92.24 +12535 33.69 +64.16 +89.87 +92.24 +33.28 +33.69 +69.3 +30.58 +67.50 +25.270 31.59 +15.37 +92.14 +63.20 +92.24 +60.11 +42.7 +92.24 +30.59 +92.24 +10.14 +33.69 +92.24 +12558 33.69 +92.11 +92.24 +93.169a +72.6 +33.69 +92.7 +90.21 +92.24 +57.184 +89.92 +92.24 +88.275 +15.142 +92.7 +13.62 +92.24 +37.64 +92.24 +12.1 +89.23 +15.81 +93.190a +84.18 +92.7 +90.23 +41.16 +88.13 +12587 69.3 +31.85 +92.11 +89.124 +92.24 +57.184 +89.92 +92.24 +88.275 +31.85 +92.11 +89.124 +92.7 +24.1 +69.8 +25.270 31.59 +67.50 +92.24 +31.85 +92.11 +58.37 +33.15 +24.52 +9.24 +13.69 +57.14 +92.18 +43.5 +3.28 +89.92 +7.59 +92.11 +85.39 +89.92 +19.55 +83.13 +92.11 +7.66 +89.92 +45.1 +7.23 +89.87 +57.177 +92.11 +43.2 +89.87 +15.47 +89.87 +12636 67.21 +92.24 +67.1 +92.24 +43.15 +15.66 +92.24 +87.76 +92.11 +84.18 +92.24 +43.2 +57.65 +92.24 +43.15 +92.11 +89.87 +18.1 +92.24 +43.2 +92.24 +87.76 +92.11 +89.104 +12661 19.2 +89.104 +12664 20.61 +89.104 +12667 20.79 +67.55 +15.66 +58.37 +87.76 +59.1 +92.24 +60.46 +89.87 +42.7 +92.11 +64.16 +89.87 +61.16 +15.66 +84.18 +92.11 +92.24 +10.42 +92.11 +33.69 +87.11 +92.24 +10.42 +92.1 +89.124 +92.24 +43.2 +24.1 +92.24 +10.42 +31.5 +12701 92.29 +13.4 +92.24 +57.139 +84.24 +20.61 +92.11 +89.87 +57.1 +92.24 +57.140 +92.11 +89.87 +18.1 +92.11 +15.220 +84.27 +92.24 +3.28 +89.87 +20.61 +89.50 +12724 15.81 +92.24 +57.12 +92.24 +3.28 +92.14 +41.7 +92.24 +43.2 +92.30 +33.69 +92.11 +88.106 +78.17 +20.31 +92.11 +89.87 +92.24 +3.28 +57.177 +58.37 +43.2 +92.18 +57.153 +92.11 +92.24 +43.15 +67.33 +92.24 +67.1 +92.11 +33.69 +92.11 +92.24 +93.169a +67.10 +33.68 +83.13 +92.24 +33.54 + +92.27 +30.117 +92.24 +45.1 +92.29 +13.48 +13.62 +7.44 +79.107 +90.14 +12.9{N:001} +13.48 +92.29 +89.92 +13.1 +25.215 +12782 24.16 +92.4 +12786 33.69 +92.7 +90.21 +90.96 +12791 92.7 +92.24 +37.64 +92.24 +12.1 +89.87 +57.71 +11.55 +13.86 +92.24 +23.199 42.13 +92.11 +89.92 +92.24 +15.118 +84.20 +92.24 +2.24 +92.29 +19.39 +89.124 +84.20 +71.8 +92.27 +15.118 +19.47 +92.11 +89.92 +92.24 +53.88 +89.92 +92.24 +11.49 +24.52 +92.24 +33.15 +92.11 +32.16 +90.21 +90.24 +92.11 +33.69 +89.87 +68.60 +92.11 +37.110 +25.252 +92.24 +87.64 +89.32 +12842 53.79 +92.11 +31.1 +91.1 +33.28 +92.24 +93.169a +67.55 +33.69 +89.76 +33.15 +92.11 +33.69 +64.4 +92.24 +37.64 +92.24 +12.16 +9.24 +37.67 +92.18 +90.45 +34.68 +92.24 +10.42 +92.11 +89.87 +15.66 +92.24 +87.76 +92.11 +33.307 +92.24 +33.315 +84.16 +92.24 +34.68 +12880 69.3 +30.58 +15.81 +67.55 +15.66 +58.37 +87.76 +33.69 +33.69 +92.24 +33.315 +91.13 +92.24 +23.22 +92.1 +77.3 +92.24 +4.16 +92.1 +89.92 +92.24 +44.2 +20.72 +89.92 +59.23 +77.2 +84.24 +84.16 +92.24 +34.68 +89.124 +92.24 +30.50 +15.37 +89.104 +12916 84.16 +92.24 +57.4 +1.95 +89.104 +12922 89.60 +92.24 +57.196 +92.11 +89.104 +92.24 +63.21 +18.6 +92.24 +87.76 +92.11 +88.130 +89.87 +20.61 +89.87 +92.24 +37.67 +88.174 +89.87 +15.66 +92.24 +55.10 +92.11 +20.31 +92.24 +20.85 +92.30 +89.87 +92.24 +1.89 +92.11 +14.65 +67.47 +33.69 +92.24 +87.76 +92.11 +91.6 +92.24 +34.68 +77.2 +13.1 +89.124 +92.24 +33.315 +69.3 +13.1 +65.17 +89.50 +15.10 +84.17 +92.24 +1.102 +92.24 +1.99 +89.87 +71.8 +59.7 +27.27 +33.315 +84.16 +92.24 +34.68 +89.87 +92.24 +87.76 +92.30 +15.40 +84.22 +92.24 +1.99 +15.125 +59.23 +92.27 +27.27 +89.102 +88.110 +89.102 +88.1 +89.87 +59.38 +92.24 +13005 17.23 +89.87 +92.24 +37.67 +15.93 +34.50 +92.24 +17.23 +24.1 +83.2 +9.24 +69.3 +49.1 +6.162 +34.68 +89.87 +33.69 +92.11 +34.16 +92.16 +15.93 +83.1 +69.3 +49.13 +6.162 +34.68 +89.124 +92.24 +33.122 +67.47 +92.24 +37.67 +33.69 +92.24 +35.20 +37.114 +92.11 +8.49 +89.92 +8.30 +15.44 +92.11 +84.22 +92.24 +1.23 +92.24 +1.23 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +89.23 +59.1 +13.4 +33.318 +89.124 +59.3 +30.93 +67.47 +15.10 +92.24 +11.49 +30.74 +90.48 +89.59 +92.11 +27.30 +89.76 +33.98 +89.87 +15.66 +92.11 +92.24 +36.38 +92.11 +89.108 +92.24 +11.87 +13089 33.243 +28.1 +90.21 +88.39 +13.1 +89.92 +92.24 +41.16 +92.24 +12.1 +70.4 +70.4 +33.224 +89.92 +69.3 +30.39 +92.6 +90.24 +92.23 +89.23 +69.3 +30.120 +13112 30.120 +9.1 +89.50 +13116 92.4 +92.14 +92.6 +31.29 +71.32 +57.152 +57.180 +37.74 93.208 +89.139 +69.3 +89.124 +92.24 +93.169a +28.1 +92.24 +88.108 +92.11 +33.69 +92.15 +92.1 +27.31 +88.228 +24.25 +92.1 +92.24 +6.70 +92.24 +57.180 +89.87 +92.24 +15.192 +92.11 +6.75 +89.87 +33.69 +92.11 +92.14 +92.24 +6.96 +92.29 +89.92 +92.24 +33.46 +33.69 +37.74 93.208 +67.47 +33.69 +92.11 +89.50 +57.153 +92.24 +37.74 93.208 +37.74 93.208 +89.92 +92.24 +92.24 +12.1 +92.24 +12.1 +89.87 +24.52 +25.213 +89.87 +15.48 +92.11 +15.37 +67.136 +92.30 +92.24 +67.186 +15.77 +92.11 +11.48 +33.69 +69.3 +13.69 +23.93 +89.87 +33.180 +92.11 +33.69 +33.243 +93.266 +33.69 +89.67 +92.12 +23.99 +69.3 +57.1 +10.36 +34.71 +92.24 +10.49 +92.11 +92.24 +10.54 +92.11 +89.87 +23.59 +23.59 +92.24 +10.49 +92.11 +13220 13.69 +89.111 +92.4 +60.16 +10.49 +89.87 +92.24 +60.46 +34.66 +23.102 +89.92 +69.3 +57.1 +10.29 +15.48 +92.24 +10.54 +92.11 +92.24 +10.49 +92.11 +64.1 +89.87 +92.24 +60.49 +89.87 +92.24 +60.50 +67.119 +92.24 +60.16 +89.87 +61.16 +59.23 +23.99 +92.24 +10.54 +89.50 +67.33 +92.24 +23.93 +92.14 +92.24 +60.16 +10.54 +13.4 +89.23 +59.23 +13269 92.11 +89.124 +33.184 +92.24 +93.169a +33.69 +92.11 +31.67 +69.3 +32.4 +92.24 +33.54 +69.7 +92.24 +76.1 +92.24 +12.1 +89.23 +67.33 +92.24 +23.93 +69.9 +34.66 +69.9 +34.72 +89.125 +64.12 +12.28 +83.13 +92.24 +1.11 +13.1 +89.124 +89.6 +92.24 +23.93 +92.24 +23.121 +69.3 +33.68 +92.24 +33.69 +92.7 +90.1 +92.24 +12.1 +33.69 +92.1 +13.4 +92.24 +12.1 +93.7 +89.92 +92.24 +12.1 +93.180 +89.92 +92.24 +12.1 +93.157a +69.3 +13.4 +92.24 +12.1 +23.121 +89.125 +23.88 +89.87 +24.52 +92.24 +11.1 +25.219 +89.27 +92.24 +33.224 33.236 +92.11 +13346 92.24 +11.49 +24.52 +90.21 +33.123 +92.24 +11.48 +15.123 +13355 92.24 +58.31 +89.87 +33.180 +92.22 +63.20 +92.11 +33.338 +27.31 +92.11 +33.243 +92.36 +33.330 +87.22 +83.13 +92.24 +33.55 +89.87 +92.24 +33.69 +92.11 +25.43 +12.9{N:001} +92.24 +12.1 +92.6 +90.10 +63.1 +92.24 +26.3 +92.6 +89.92 +90.10 +63.1 +92.24 +26.4 +92.6 +89.92 +90.10 +63.1 +92.24 +26.14 +92.6 +92.29 +13.4 +92.24 +87.22 +89.92 +65.52 +33.330 +60.49 +64.1 +92.11 +25.43 +92.24 +11.89 +92.6 +64.12 +92.10 +89.119 +92.29 +92.24 +60.11 +33.330 +63.1 +92.24 +33.58 +18.23 89.2 +13424 92.24 +33.58 53.79 +13427 15.123 +92.24 +11.49 +33.180 +92.11 +92.24 +93.169a +33.69 +92.14 +92.7 +31.30 +90.24 +92.24 +53.82 +92.14 +10.30 +13.4 +33.69 +92.11 +92.24 +93.91 +33.69 +92.11 +89.50 +92.16 +93.91 +90.6 +12.18 +33.131 +92.11 +12.9{N:001} +33.69 +33.69 +12.9{N:001} +92.24 +12.9{N:001} +92.1 +17.12 +87.34 +82.8 +92.1 +67.119 +71.8 +13.9 +92.24 +39.11 +92.6 +37.8 +92.24 +37.8 +92.6 +89.50 +89.65 +93.91 +33.131 +92.11 +12.9{N:001} +92.16 +10.30 +92.11 +13.4 +89.87 +92.23 +74.5 +33.184 +92.11 +33.98 +69.7 +25.161 +92.12 +67.131 +92.30 +92.24 +67.186 +33.180 +92.11 +67.130 +67.47 +92.24 +93.169a +33.70 +92.24 +11.1 +89.92 +92.24 +36.38 +92.11 +33.69 +37.44 +92.24 +33.59 93.266 +6.111 +17.12 +92.24 +53.94 +89.92 +92.24 +11.49 +89.50 +59.23 +71.8 +59.7 +33.69 +92.7 +42.7 +89.92 +36.19 +89.124 +89.8 +92.24 +42.11 +92.11 +69.3 +42.7 +89.23 +33.69 +13544 69.3 +42.7 +89.94 +18.15 +15.208 +86.1 +89.87 +85.51 +13553 92.24 +8.27 +92.24 +9.1 +89.124 +92.11 +92.24 +8.34 +92.11 +69.3 +25.1 +15.3 +92.11 +89.124 +59.23 +92.24 +42.11 +92.11 +42.7 +89.60 +92.24 +24.14 +92.24 +9.1 +89.23 +81.17 +92.24 +6.195 +92.11 +89.92 +79.124 +92.24 +6.194 +89.94 +25.103 +92.24 +87.18 +83.23 +92.24 +23.25 +89.92 +92.24 +87.18 +83.13 +92.24 +7.20 +89.92 +92.24 +33.20 +83.13 +92.24 +57.207 +89.92 +33.131 +90.1 +92.24 +9.1 +33.246 +89.124 +92.7 +69.3 +33.131 +33.246 +89.23 +60.10 +13.4 +92.7 +92.24 +33.243 +89.94 +59.23 +92.7 +11.57 +13.4 +89.92 +87.48 +92.7 +69.3 +33.131 +83.46 +92.24 +1.39 +89.23 +60.10 +13.4 +92.7 +92.24 +12.12 +92.24 +1.12 +69.7 +33.131 +33.245 +89.33 +33.245 +92.7 +13.4 +60.10 +92.24 +53.82 +89.94 +92.24 +87.22 +92.7 +13.4 +92.7 +35.20 +89.94 +92.18 +87.20 +92.25 +25.198 87.62 +89.92 +92.18 +25.198 88.56 +92.25 +87.20 +89.124 +22.9 +92.7 +53.94 +89.92 +11.49 +88.228 +89.33 +79.112 +92.24 +37.64 +92.24 +12.16 +83.33 +92.24 +9.1 +89.23 +92.7 +69.3 +90.70 +69.7 +92.24 +90.70 +90.70 +13.140 +22.9 +92.7 +53.94 +89.92 +11.49 +88.228 +89.33 +15.23 +92.24 +1.69 +89.92 +92.24 +1.60 +13.9 +60.10 +11.54 +89.87 +67.31 +13.48 +13.9 +92.11 +9.4 +1.21 +60.75 +92.7 +22.9 +92.7 +36.4 +32.42 +92.24 +33.69 +71.8 +92.27 +33.463 +90.30 +92.24 +7.15 +92.23 +13.1 +89.124 +71.8 +92.27 +33.463 +90.30 +92.24 +2.49 +92.24 +7.15 +71.25 +32.55 +89.92 +32.42 +91.1 +92.14 +87.22 +13.1 +92.24 +2.49 +89.139 +92.24 +7.15 +92.24 +53.44 +92.24 +2.49 +89.92 +71.8 +92.27 +33.463 +90.30 +92.24 +6.114 +92.23 +13.1 +89.124 +71.8 +92.27 +33.463 +90.30 +92.24 +57.84 +92.24 +83.49 +92.11 +71.25 +32.42 +91.1 +92.14 +87.22 +92.24 +57.84 +89.139 +92.24 +6.114 +92.24 +53.44 +92.24 +57.84 +89.50 +92.24 +33.463 +90.30 +92.24 +6.114 +33.463 +90.30 +92.11 +89.92 +90.30 +59.23 +92.24 +83.49 +92.11 +89.92 +92.24 +33.463 +90.30 +92.24 +7.15 +33.463 +90.30 +92.11 +89.92 +90.30 +92.24 +85.69 +92.11 +89.92 +92.24 +33.463 +90.30 +92.24 +12.16 +33.463 +90.30 +92.24 +6.112 +92.24 +12.1 +89.92 +90.30 +92.24 +17.12 +83.49 +92.11 +22.9 +92.7 +53.94 +89.92 +11.49 +88.228 +89.33 +57.114 +92.24 +3.23 +89.92 +92.24 +3.24 +89.92 +92.24 +3.25 +13857 31.63 +92.24 +65.55 +92.24 +33.55 +92.24 +56.25 +89.92 +92.24 +88.76 +89.92 +92.24 +31.88 +89.124 +71.21 +92.29 +42.7 +89.92 92.30 +69.3 +13877 36.4 +32.42 +92.24 +46.17 +92.24 +4.48 +89.124 +92.24 +4.30 +23.45 +22.9 +92.7 +53.94 +89.92 +11.49 +88.228 +89.33 +79.49 +92.24 +83.21 +92.24 +6.121 +89.92 +92.24 +6.135 +89.124 +83.16 +59.41 +90.16 +57.237 +89.92 +88.91 +11.49 +32.42 +53.28 79.49 +67.18 +92.24 +83.17 +92.24 +6.121 +89.59 +13.48 +89.93 +92.24 +83.21 +92.11 +79.48 +22.9 +92.7 +53.94 +89.92 +11.49 +88.228 +89.33 +64.8 +7.75 +45.12 +91.6 +92.18 +83.21 +28.55 +79.10 +89.124 +83.16 +59.41 +8.61 +23.121 +89.92 +59.23 +79.54 +61.9 +89.93 +92.7 +91.6 +83.21 +28.55 +92.24 +9.1 +88.12 +89.124 +83.16 +13.1 +78.45 +88.227 +89.92 +88.139 +22.9 +92.7 +53.94 +89.92 +11.49 +88.228 +89.33 +45.1 +92.24 +7.75 +92.24 +53.79 +89.92 +79.12 +92.24 +7.75 7.76 +92.24 +88.12 +89.92 +33.69 +89.65 +13.69 +67.33 +92.24 +67.142 +92.24 +10.20 +92.4 +71.14 +69.3 +13.4 +92.11 +34.6 +89.5 +92.24 +20.83 +92.24 +53.79 +89.52 +33.262 +92.25 +90.21 +13.4 +9.4 +92.24 +20.82 +92.24 +53.79 +14012 92.7 +59.37 +92.24 +81.1 +92.24 +10.20 +92.7 +88.123 +23.53 58.26 +88.123 +92.16 +21.14 +84.3 +92.24 +38.1 56.30 +92.24 +1.21 +91.13 +14032 92.1 +15.66 +84.18 +92.7 +53.79 +89.92 +32.35 +89.92 +27.22 +63.20 +92.11 +20.61 +89.92 +20.76 +89.92 +63.20 +92.11 +19.9 +83.13 +92.24 +7.20 +92.7 +89.92 +15.158 +84.3 +1.89 +84.16 +1.89 +89.59 +13.117 +90.17 +92.7 +59.23 +20.84 +88.12 +14.18 20.84 +84.20 +92.24 +1.39 +14072 92.24 +23.107 +93.3 +92.24 +88.12 +67.119 +92.24 +23.107 +93.136b +10.42 +93.61 +92.27 +20.82 +83.11 +92.24 +7.15 +89.92 +92.24 +6.114 +72.6 +33.69 +92.7 +13.112 +92.29 +59.23 +90.57 +92.24 +10.4 11.4 +92.29 +93.480a +93.480a +92.24 +20.61 +92.24 +53.79 +89.92 +20.79 +92.24 +15.66 +84.18 +92.11 +67.14 +30.58 +15.126 +92.24 +11.63 +92.6 +92.27 +89.83 +4.38 +15.126 +92.24 +4.39 +92.11 +83.51 +92.24 +8.29 +14130 69.3 +30.58 +91.13 +85.45 +92.7 +92.24 +7.2 +92.7 +89.23 +33.69 +92.7 +69.3 +69.3 +92.1 +24.1 +67.131 +67.38 +67.119 +71.8 +33.69 +33.470 +92.24 +15.81 +89.5 +33.126 +12.9{N:001} +91.1 +92.24 +93.169a +15.40 +84.3 +92.24 +7.16 +15.34 +89.87 +15.77 +92.24 +36.38 +92.11 +24.25 +92.11 +92.24 +7.1 +92.24 +7.16 +89.87 +92.24 +33.28 +33.69 +92.11 +69.11 +24.7 +92.29 +59.23 +72.6 +33.69 +92.7 +69.3 +69.3 +85.62 +83.1 +83.46 + + +92.27 +69.3 +20.54 +89.87 +17.12 +92.11 +83.46 +92.24 +1.46 +92.24 +3.9 93.616 +15.77 +92.11 +92.24 +36.38 +28.67 +28.67 +33.69 +33.69 +92.4 +67.30 +92.29 +13.104 +89.92 +92.14 +92.24 +33.477 +92.24 +92.8 +15.86 +89.92 +67.66 +92.24 +67.143 +89.87 +33.184 +92.24 +93.169a +33.69 +92.11 +27.58 +69.3 +92.12 +92.7 +31.8 +89.23 +59.1 +15.81 +90.23 +92.24 +33.126 +92.1 +33.69 +92.1 +13.4 +92.24 +53.82 +89.87 +59.1 +31.8 +89.94 +67.62 +33.212 +55.5 +89.92 +33.213 +55.5 +30.45 +69.3 +25.262 +89.23 +71.34 +13.107 +89.125 +67.129 +13.104 +92.24 +67.66 +89.23 +55.2 +11.55 +90.34 +11.55 +89.92 +1.82 +90.34 +1.82 +89.92 +13.104 +23.33 +89.92 +14.87 +89.90 +80.1 +89.124 +59.23 +92.29 +68.1 +24.87 +67.47 +37.111 +92.7 +13.62 +22.2 +89.92 +20.61 +92.7 +89.92 +14303 88.198 +90.1 +59.23 +92.24 +11.55 +90.44 +92.24 +33.126 +92.1 +89.87 +67.47 +31.77 +59.1 +89.92 +92.26 +37.111 +89.92 +88.198 +92.26 +89.92 +59.1 +53.81 +13.83 +89.87 +31.8 +59.1 +89.92 +89.26 +92.24 +59.68 +92.24 +88.139 +78.39 +92.24 +25.43 +92.24 +59.1 +89.124 +92.24 +25.175 +67.119 +67.66 +92.29 +21.18 21.27 +89.92 +33.256 +92.29 +92.24 +33.217 +92.24 +37.64 +84.22 +63.1 +92.24 +1.39 9.22 +89.57 +33.262 +59.23 +92.24 +11.55 +89.87 +67.47 +13.112 +92.24 +67.66 +89.50 +67.31 +24.1 +92.24 +53.38 +92.24 +53.38 +92.24 +33.69 +90.4 +93.90 +92.24 +53.79 +85.8 +83.13 +80.1 +53.46 7.18 +92.24 +33.68 +30.3 +67.47 +92.24 +83.13 +92.24 +93.486a +15.61 +84.16 +92.24 +1.46 +92.24 +83.46 +92.24 +7.51 +69.3 +15.107 +15.203 +92.24 +84.4 +92.24 +7.3 +92.11 +89.92 +92.24 +83.13 +92.24 +1.95 +69.3 +15.90 +83.40 +15.203 +92.24 +6.172 +92.11 +89.94 +22.9 +92.24 +23.50 +23.50 +14427 89.92 +92.24 +23.8 +67.136 +92.30 +92.24 +67.142 +89.94 +33.178 +90.22 +69.3 +13.107 +92.24 +15.61 +92.7 +67.165 +69.7 +67.184 +89.23 +13.104 +67.47 +22.2 +78.2 +64.1 +69.3 +13.107 +67.131 +67.65 +1.1 +67.119 +92.24 +67.38 +69.7 +69.3 +69.3 +13.107 +89.92 +89.131 +14466 59.71 +92.24 +67.142 +92.30 +71.8 +69.3 +21.18 +59.23 +9.11 +89.124 +90.44 +92.24 +30.93 +59.71 +92.24 +67.142 +92.30 +89.67 +67.47 +92.12 +92.7 +33.69 +91.13 +83.1 +92.24 +53.82 +89.139 +83.1 +69.3 +31.35 +89.23 +13.83 +53.84 +89.92 +53.81 +89.87 +13.128 +33.477 +78.2 +89.92 +33.480 +89.52 +31.8 +89.65 +71.2 +14512 92.24 +30.93 +91.13 +33.281 33.423 +92.7 +89.50 +89.67 +33.69 +92.7 +91.13 +83.13 +92.24 +1.86 +85.1 +69.3 +15.40 +91.13 +83.13 +92.24 +7.28 +69.3 +31.35 +89.23 +64.13 +92.24 +14.16 +15.40 +84.3 +82.1 +89.87 +24.18 +84.19 +82.2 +61.9 +13.1 +92.24 +15.86 +92.24 +9.3 +92.24 +9.3 +71.8 +83.5 +85.1 +92.24 +8.7 +83.2 +15.123 +92.24 +4.42 +89.87 +67.53 +67.48 +92.24 +22.2 +92.24 +67.142 +92.30 +92.24 +1.28 +14.55 +89.92 +92.24 +1.29 +69.3 +13.128 +92.24 +14.36 +92.11 +89.92 +92.24 +1.30 +15.118 +84.3 +92.24 +1.5 +89.92 +92.24 +12.44 +92.24 +1.5 +16.7 +89.87 +67.47 +24.18 +92.24 +33.477 +92.24 +9.3 +92.24 +9.3 +83.13 +1.11 +89.87 +67.47 +52.1 +59.23 +92.24 +11.56 +92.24 +9.22 +89.87 +24.1 +92.24 +9.3 +92.24 +9.3 +15.81 +83.46 +92.24 +1.34 +92.24 +1.5 +89.79 +76.1 +89.92 +76.13 +78.3 +89.87 +15.66 +92.24 +12.28 +92.11 +89.79 +6.93 +78.2 +89.87 +15.126 +92.24 +30.93 +92.11 +84.4 +92.24 +60.13 +14.4 +84.3 +80.7 +1.5 +84.19 +80.7 +92.11 +14654 90.11 +92.24 +3.5 +27.12 +92.24 +33.15 +14661 67.20 +92.24 +3.49 +92.11 +13.48 +79.101 +89.92 +92.24 +3.51 +23.195 +32.16 +90.21 +67.61 +92.24 +67.163 +61.9 +89.93 +92.7 +14680 24.1 +59.23 +92.29 +28.1 +90.21 +67.61 +13.1 +67.58 +67.58 7.49 +72.6 +33.69 +92.7 +90.21 +69.3 +69.3 +67.85 +92.24 +10.4 11.4 67.144 +92.29 +67.119 +71.8 +59.23 +92.29 +13.107 +92.24 +1.3 +14707 92.24 +1.3 +13.93 +89.124 +92.24 +33.98 +92.1 +69.3 +69.3 +13.93 +14718 89.6 +92.24 + +89.92 +67.199 +92.30 +92.23 +28.1 +69.8 +92.24 +12.28 +92.24 +1.11 +69.8 +92.24 +12.15 +89.131 +14736 92.24 +12.12 +58.51 +89.23 +64.13 +92.24 +67.142 +92.24 +93.285 +61.9 +13.1 +92.24 +15.86 +92.24 +9.3 +92.24 +9.3 +89.23 +64.12 +67.136 +92.24 +67.142 +92.30 +92.24 +67.17 +92.24 +14.34 +14764 23.3 +89.92 +23.34 +34.66 +89.92 +34.72 +67.119 +92.27 +67.186 +15.93 +93.285 +84.22 +92.24 +6.44 +89.92 +69.3 +32.16 +67.119 +13.117 +92.24 +14.34 +89.87 +15.203 +59.23 +61.9 +13.1 +89.93 +92.24 +15.86 +92.24 +9.3 +92.24 +9.3 +67.47 +85.1 +60.11 +83.13 +92.24 +1.95 +14804 15.168 +89.92 +14807 15.48 +60.11 +46.16 +83.23 +92.24 +7.68 +14814 15.168 +89.92 +14817 15.48 +89.50 +27.56 +89.33 +69.3 +28.1 +92.36 + +92.24 +12.9{N:001} +92.7 +15.81 +89.94 +92.30 +28.1 +90.21 +89.65 +28.1 +92.24 +57.14 +92.36 +67.196 +92.24 +57.233 +15.81 +71.8 +23.72 +89.92 +71.14 +69.3 +13.138 +19.41 +92.24 +7.3 +92.11 +14854 89.93 +92.7 +13.3 +77.2 +89.33 +92.27 +69.3 +31.29 +67.199 +92.24 +9.3 +92.24 +9.3 +15.81 +71.7 +92.14 +13.4 +92.24 +31.87 +89.92 +32.31 +87.76 +92.27 +37.104 +92.24 +57.12 +37.9 +92.24 +46.6 +92.11 +92.24 +57.71 +92.11 +92.24 +5.1 +67.33 +67.1 +25.119 +92.24 +87.76 +92.30 +92.27 +61.9 +42.7 +15.81 +92.24 +57.12 +92.11 +27.27 +72.6 +33.69 +92.7 +90.21 +37.9 +59.23 +92.24 +57.16 +92.11 +37.104 +92.11 +89.124 +89.67 +33.69 +92.24 +88.106 +87.76 +92.30 +83.13 +92.24 +26.3 +92.11 +67.122 +92.1 +92.24 +57.12 +89.87 +68.1 +19.1 +92.24 +87.81 +92.11 +89.94 +23.1 +14938 23.34 +89.108 +92.24 +88.283 +85.10 +92.24 +57.12 +92.24 +87.76 +92.30 +67.33 +67.186 +92.27 +69.3 +30.55 +89.92 +67.33 +67.199 +92.27 +69.3 +28.1 +89.87 +19.19 38.12 +92.11 +89.87 +92.24 +63.14 +92.11 +83.9 +92.24 +88.228 +85.32 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +67.47 +64.5 +92.24 +37.64 +92.24 +12.16 +60.19 +9.39 +92.18 +18.1 +92.24 +6.104 +92.25 +15.40 +89.57 +15.78 +92.24 +10.56 +14998 60.14 +63.20 +92.11 +13.1 +32.55 +89.92 +60.14 +32.31 +89.23 +92.24 +32.55 +18.1 +92.24 +6.104 +69.3 +18.1 +89.109 +92.25 +6.202 +89.124 +92.24 +32.31 +18.1 +6.202 +83.13 +92.24 +6.120 +89.109 +92.24 +6.104 +92.25 +89.87 +67.122 +92.24 +10.56 +23.67 +59.23 +89.87 +23.66 +89.87 +83.10 +67.192 +33.84 +13.107 +91.13 +92.24 +10.56 +15.40 +89.57 +15.78 +67.47 +17.9 +59.23 +92.24 +9.39 +92.30 +89.87 +79.12 +92.24 +6.104 +92.25 +89.87 +92.24 +32.55 +92.24 +32.31 +33.69 +57.71 +92.4 +90.16 +92.24 +6.202 +92.7 +89.33 +92.24 +6.104 +92.4 +14.69 14.70 +89.124 +33.28 +92.24 +32.31 +33.69 +15083 69.3 +69.3 +59.46 +92.4 +89.92 +92.7 +15.34 +89.126 +84.18 +92.24 +57.186 +89.87 +57.188 +92.25 +89.87 +15.37 +92.11 +57.188 +15.81 +92.24 +10.56 +89.87 +92.24 +77.2 +15.93 +89.108 +92.11 +84.22 +92.24 +34.68 +89.87 +79.112 +92.24 +7.49 +89.87 +67.50 +15.81 +89.93 +92.24 +63.21 +9.39 +33.69 +87.53 +87.53 +79.110 +92.4 +89.124 +92.24 +33.28 +33.69 +72.6 +33.69 +92.7 +69.3 +28.1 +92.7 +89.50 +27.56 +89.33 +69.3 +28.1 +92.24 + +69.7 +92.24 +67.199 +89.23 +64.13 +9.24 +15.47 +33.307 +92.24 +57.4 +87.76 +89.87 +57.77 +92.11 +92.24 +57.16 +92.11 +15164 89.104 +15167 60.14 +6.82 +89.104 +15171 60.11 +89.104 +15174 60.10 +59.27 +89.8 +92.24 +57.4 +74.1 +89.87 +15.47 +67.53 +15.10 +92.24 +92.24 +60.14 +6.82 +57.125 +57.198 +90.10 +92.11 +89.87 +57.189 +58.37 +60.14 +64.16 +92.24 +92.24 +60.11 +57.189 +58.37 +60.11 +89.124 +92.24 +92.24 +60.10 +57.125 +15.37 +19.55 +2.14 +89.87 +21.12 +92.24 +6.73 +92.24 +57.12 +92.11 +89.87 +67.48 +59.11 +67.78 +15.81 +92.24 +57.12 +92.24 +87.76 +92.30 +89.87 +57.229 +57.228 +90.60 +92.11 +89.87 +15.77 +92.24 +92.24 +60.14 +6.82 +57.125 +15.192 +58.37 +60.14 +6.82 +33.69 +57.12 +60.14 +6.82 +92.1 +57.77 +91.13 +58.37 +60.14 +6.82 +57.189 +33.69 +92.11 +92.24 +57.12 +92.11 +65.23 +87.76 +65.20 +89.92 +31.87 +37.9 +59.3 +13.1 +31.87 +37.9 +59.1 +92.6 +37.104 +90.70 +13.62 +92.24 +25.123 +92.24 +57.12 +92.6 +15.77 +89.93 +92.24 +92.24 +60.11 +6.82 +33.69 +57.12 +60.11 +6.82 +92.1 +57.77 +91.13 +58.37 +60.11 +6.82 +57.189 +33.69 +92.11 +92.24 +57.12 +92.11 +65.23 +87.76 +65.20 +89.92 +31.87 +37.9 +59.3 +13.1 +31.87 +37.9 +59.1 +92.6 +37.104 +90.70 +13.62 +92.24 +25.123 +92.24 +57.12 +92.6 +89.87 +15.77 +89.93 +92.24 +92.24 +60.10 +6.82 +57.125 +33.69 +57.12 +28.1 +92.6 +90.21 +13.1 +88.136 +9.24 +43.14 +83.5 +69.3 +43.6 +89.92 +15.125 +84.11 +69.3 +15.136 +89.92 +25.252 +15.37 +21.12 +92.24 +6.82 +92.6 +83.13 +92.24 +2.14 +91.13 +57.1 +92.24 +92.8 +89.87 +33.28 +92.24 +57.12 +92.11 +33.69 +92.11 +87.76 +88.110 +89.92 +88.250 +28.1 +90.21 +43.14 +83.5 +69.3 +43.6 +89.92 +15.125 +84.11 +69.3 +15.136 +89.50 +71.34 +92.6 +57.217 +92.24 +6.73 +92.1 +92.24 +57.216 +89.87 +71.14 +15.81 +92.1 +57.136 +92.24 +92.2 +89.105 +57.212 +89.50 +90.96 +15404 92.11 +92.24 +6.82 +89.87 +57.71 +92.24 +57.1 +92.24 +60.19 +6.82 +89.23 +92.24 +57.1 +59.23 +57.71 +89.87 +59.54 +89.124 +92.24 +69.3 +57.1 +15426 92.27 +57.1 +90.96 +15430 92.11 +89.87 +92.24 +65.33 +87.76 +15.44 +13.62 +92.24 +1.23 +92.24 +1.23 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +15452 15.81 +92.24 +9.3 +92.24 +9.3 +13.8 +92.24 +14.49 +92.11 +89.92 +59.23 +92.24 +12.28 +89.108 +92.11 +67.47 +17.12 +83.46 +6.112 +14.49 +92.11 +89.87 +15.125 +83.33 +92.11 +59.23 +92.24 +11.55 +89.87 +63.28 +92.11 +89.122 +92.26 +64.13 +92.24 +44.4 +63.28 +92.24 +4.22 +89.122 +92.24 +4.19 +89.87 +89.136 +85.40 +92.24 +4.22 +15500 82.8 +92.11 +89.136 +92.24 +4.19 +15506 82.7 +67.47 +33.69 +92.24 +37.67 +92.24 +15513 82.8 +92.11 +84.24 +92.24 +88.69 +92.24 +12.12 +92.1 +57.131 +92.24 +77.3 +92.7 +67.131 +42.37 +1.1 +37.64 +89.23 +23.29 +89.87 +57.71 +92.1 +23.1 +23.39 +89.87 +23.35 +92.1 +11.73 +13.1 +89.87 +15.123 +92.1 +49.22 +89.87 +49.3 +92.1 +23.144 +89.87 +34.50 35.39 +92.1 +83.13 +7.24 +85.1 +89.87 +15.81 +84.18 +92.1 +67.47 +33.28 +92.11 +92.24 +88.12 +33.69 +12.9{N:001} +67.30 +24.1 +92.6 +23.29 +89.87 +23.6 +89.139 +23.39 +89.87 +23.35 +89.94 +67.30 +24.1 +92.6 +11.73 +89.87 +15.123 +89.139 +49.22 +89.87 +49.3 +89.94 +67.30 +24.1 +92.6 +23.144 +89.139 +83.13 +7.24 +89.87 +15.81 +84.18 +92.6 +89.87 +33.184 +92.24 +37.67 +33.69 +92.11 +72.6 +33.69 +92.7 +78.51 +59.19 +41.7 +92.22 +92.29 +92.24 +11.23 +92.1 +92.24 +87.66 +92.1 +41.7 +67.47 +33.69 +89.93 +92.24 +15625 82.7 +33.471 +15.34 +89.122 +92.1 +13.62 +92.24 +2.3 +92.24 +67.96 +92.24 +77.3 +92.24 +12.34 +89.92 +92.24 +12.28 +92.11 +89.23 +23.29 +15646 69.3 +57.71 +92.1 +23.1 +23.39 +15652 69.3 +23.35 +92.1 +11.73 +13.1 +15658 69.3 +15.123 +92.1 +49.22 +15663 69.3 +49.3 +92.1 +23.145 +89.92 +83.13 +7.24 +15671 69.3 +34.50 35.39 +92.1 +67.47 +33.28 +89.93 +92.11 +33.69 +12.9{N:001} +67.30 +24.1 +92.6 +23.29 +89.139 +23.39 +89.139 +11.73 +89.139 +49.22 +89.139 +23.145 +89.139 +83.13 +7.24 +15696 69.3 +35.37 +92.6 +67.47 +33.184 +92.11 +33.69 +72.6 +33.69 +92.7 +78.51 +59.19 +69.3 +41.7 +92.22 +92.29 +92.24 +87.66 +69.7 +92.1 +41.7 +89.87 +15.37 +92.29 +13.62 +38.2 +67.96 +89.124 +92.24 +88.12 +13.62 +23.88 +67.96 +91.1 +13.107 +15732 68.22 +92.24 +93.169a +59.23 +92.24 +33.98 +92.29 +33.69 +92.24 +36.38 +92.11 +28.1 +90.21 +67.48 +60.11 +67.178 +92.24 +51.6 +13.107 +89.87 +92.24 +9.3 +92.24 +9.3 +37.111 +89.57 +92.24 +20.76 +67.47 +15.123 +92.24 +53.88 +89.92 +92.24 +53.77 +92.24 +11.12 +84.22 +92.24 +7.6 +92.24 +53.89 +92.24 +33.129 +93.205 +89.87 +30.74 +89.59 +92.24 +93.169a +88.154 +37.110 +89.87 +20.61 +89.124 +33.69 +69.3 +67.136 +92.24 +51.2 +89.59 +69.3 +39.42 +13.107 +83.9 +92.24 +11.55 87.64 +15800 92.24 +93.169a +85.6 +83.13 83.23 +93.427a +83.13 +7.3 +93.341h +92.24 +23.162 +15.77 +92.11 +9.34 +57.1 +6.131 +6.205 +65.3 +89.87 +47.5 +84.20 +92.24 +8.10 +92.11 +17.23 +89.124 +24.1 +92.24 +36.38 +88.187 +33.69 +15832 92.24 +65.14 +92.29 +89.23 +74.5 +92.29 +57.186 +59.11 +89.87 +57.71 +57.53 +89.124 +27.2 +92.24 +93.169a +33.69 +92.11 +92.15 +22.7 +13.127 +92.24 +9.34 +89.23 +42.11 +88.4 +90.47 +90.59 +92.1 +89.23 +67.88 +92.24 +57.53 +15865 89.108 +92.25 +89.124 +92.1 +69.3 +67.88 +15872 89.23 +92.29 +47.2 +92.24 +6.205 +92.29 +84.20 +92.24 +8.1 +92.1 +89.60 +92.24 +52.6 +92.1 +42.7 +72.6 +33.69 +92.7 +71.8 +83.5 +33.256 +92.24 +33.217 +92.29 +83.13 +63.1 +92.24 +1.39 +33.70 +89.93 +92.27 +42.7 +92.29 +89.57 +29.12 +92.11 +67.47 +92.22 +92.24 + +92.24 +33.129 +93.173a +93.181 +15.34 +84.18 +92.24 +53.88 +33.69 +30.58 +92.14 +92.1 +57.152 +92.1 +92.7 +37.111 +92.11 +89.87 +92.24 +57.158 +92.11 +60.26 +6.73 +89.87 +67.131 +67.47 +13.19 +67.5 +89.59 +92.11 +37.111 +15944 92.24 +60.46 +92.24 +5.13 +15.77 +92.24 +36.38 +92.24 +93.169a +33.69 +25.1 +83.6 +77.3 +92.6 +23.1 +92.24 +4.27 +15962 92.24 +33.69 +15.15 +84.22 +92.24 +1.89 +84.18 +92.24 +92.19 +89.87 +33.69 +92.11 +92.24 +33.243 +33.69 +92.24 +67.1 +92.1 +67.61 +13.1 +89.112 +92.6 +90.45 +92.24 +51.7 +89.108 +92.24 +36.38 +92.1 +89.87 +42.7 +92.24 +36.38 +64.12 +33.325 +92.11 +92.24 +93.169a +89.87 +77.3 +92.24 +51.7 +89.87 +67.197 +13.107 +17.23 +89.108 +92.24 + +16012 89.87 +23.1 +92.11 +33.69 +72.6 +33.69 +92.7 +90.21 +60.10 +63.20 +92.7 +37.111 +92.1 +89.87 +25.274 +78.19 +68.1 +33.69 +92.11 +60.10 +59.27 +69.16 +92.1 +13.4 +12.9{N:001} +89.87 +92.24 +33.184 +33.69 +92.24 +47.11 +89.108 +92.1 +92.24 +8.30 +84.22 +92.24 +6.136 +92.29 +92.1 +37.111 +91.6 +92.24 +9.3 +92.24 +9.3 +23.101 +64.14 +33.54 +90.24 +92.11 +89.124 +22.9 +92.24 +9.24 +92.30 +90.4 +92.27 +92.24 +9.3 +92.24 +9.3 +37.111 +65.43 +13.1 +92.11 +89.65 +69.3 +23.52 +92.24 +9.24 +92.30 +89.87 +33.28 +93.173a +92.24 +37.111 +92.11 +33.69 +69.16 +92.1 +13.4 +33.246 +33.69 +92.11 +92.6 +33.69 +89.87 +23.1 +92.11 +92.24 +93.169a +18.1 +5.8 +89.87 +33.356 +19.34 +89.87 +57.71 +92.24 +36.38 +33.69 +18.1 +23.1 +92.29 +13.4 +92.24 +8.1 +92.1 +89.87 +18.1 +6.121 +89.87 +33.349 +57.71 +92.11 +33.69 +23.34 +84.4 +92.11 +59.23 +89.23 +92.29 +13.4 +92.24 +23.112 +92.1 +92.24 +34.44 +92.24 +16143 59.1 +14.18 23.112 +89.57 +40.8 +88.310 +89.94 +33.69 +92.7 +69.3 +69.3 +23.34 +67.131 +67.38 +90.16 +92.29 +92.24 +13.49 +92.24 +3.27 +67.119 +92.24 + +92.30 +16167 92.11 +23.34 +89.108 +92.7 +58.71 +83.13 +92.24 +37.64 +92.24 +12.12 +92.1 +91.1 +33.113 +15.40 +84.16 +92.24 +1.46 +92.24 +3.9 93.616 +67.47 +33.69 +92.11 +92.24 +93.169a +59.23 +92.7 +31.77 +89.26 +92.1 +67.136 +92.24 +67.192 +92.29 +89.23 +33.54 +20.73 +92.24 +44.4 +89.87 +15.136 +92.24 +4.22 +92.24 +4.28 +89.124 +67.48 +92.24 +23.94 +92.1 +15.142 +92.7 +84.22 +92.24 +93.444a +89.124 +33.28 +92.24 +93.296 +33.69 +92.11 +89.65 +59.23 +31.77 +89.26 +92.6 +92.1 +67.10 +31.77 +33.69 +92.11 +92.24 +93.169a +72.6 +33.69 +92.6 +90.21 +67.136 +92.29 +92.24 +67.192 +67.17 +4.45 +14.76 +60.71 +33.277 +92.1 +33.69 +92.11 +92.24 +93.296 +89.73 +71.34 +92.1 +89.107 +92.6 +23.99 +69.3 +69.3 +92.6 +33.277 +64.1 +89.93 +59.23 +92.24 +36.38 +33.69 +67.47 +15.81 +89.108 +92.11 +92.24 +93.169a +84.22 +1.95 +33.129 +93.448 +89.87 +33.69 +92.24 +36.38 +17.12 +83.3 +67.139 +16291 15.37 +83.2 +33.178 +89.87 +15.168 +92.24 +93.296 +89.92 +92.24 +60.11 +10.42 +93.137 +68.1 +25.274 +89.92 +25.247 +67.47 +33.69 +92.11 +25.277 +13.1 +92.24 +26.4 +92.1 +78.51 +23.99 +85.55 +83.1 +89.92 +23.72 +89.108 +92.1 +89.87 +15.16 +81.13 +17.22 +16328 8.18 +92.11 +33.178 +16332 33.69 +12.12 +92.1 +89.65 +71.2 +13.1 +13.93 +16340 92.1 +92.24 +90.97 +92.29 +89.130 +69.3 +64.12 +92.1 +25.1 +89.125 +64.12 +92.6 +89.87 +15.81 +84.18 +92.24 +36.38 +89.87 +27.27 +92.11 +23.66 +89.87 +33.69 +92.24 +93.296 +61.9 +69.11 +74.9 +60.10 +67.199 +23.72 +89.108 +92.1 +23.72 +89.92 +33.178 +90.22 +69.3 +90.70 +13.62 +88.308 +89.136 +92.24 +26.9 +25.69 +89.136 +92.24 +26.7 +74.25 +67.55 +67.33 +60.49 +15.37 +33.178 +33.69 +12.12 +92.1 +89.65 +69.3 +74.5 +92.29 +13.93 +16404 92.11 +24.81 +13.107 +92.24 +30.59 +92.6 +89.87 +15.81 +67.55 +27.27 +92.11 +23.66 +89.23 +16418 23.69 +92.11 +92.24 +23.69 +89.87 +15.48 +92.11 +67.55 +15.37 +33.178 +67.33 +60.50 +92.24 +58.31 +33.98 +33.69 +67.55 +67.47 +15.81 +84.18 +92.24 +36.38 +89.87 +33.69 +92.11 +23.66 +63.21 67.128 +89.92 +23.80 +91.13 +67.21 +92.24 +67.1 +16452 92.24 +9.3 +92.24 +9.3 +37.12 +16458 37.12 +88.295 +17.9 +15.34 +91.13 +15.75 +92.24 +37.111 +92.1 +91.1 +67.128 +92.11 +33.70 +91.13 +93.173a +60.10 +92.24 + +15.81 +89.92 +89.108 +92.11 +11.1 +59.11 +89.109 +6.33 +89.92 +6.31 +90.15 +92.24 +53.89 +89.92 +53.77 +92.24 +11.12 +16494 92.24 +37.111 +92.11 +90.51 +92.11 +33.477 +33.69 +71.8 +92.27 +34.62 +92.11 +13.4 +37.110 +92.11 +89.87 +67.53 +15.77 +92.24 +93.169a +33.69 +33.22 +33.246 +89.87 +34.62 +92.11 +89.124 +92.24 +93.169a +33.69 +92.11 +34.16 +89.60 +92.27 +85.23 +67.47 +15.77 +37.110 +92.24 +37.110 +16534 92.24 +93.169a +89.92 +37.110 +92.11 +89.87 +91.13 +92.22 +92.24 +89.108 +93.169a +16.19 +92.24 +8.30 +15.214 +92.24 +6.33 +92.11 +89.87 +19.3 +92.24 +87.76 +92.24 +53.89 +85.44 +92.11 +92.24 +8.24 +67.47 +33.69 +92.11 +92.24 +93.169a +85.52 +92.24 +6.33 +92.6 +84.22 +92.24 +80.1 +92.11 +89.23 +59.23 +92.24 +18.1 +6.33 +90.10 +6.33 +23.106 +89.139 +31.29 +90.21 +69.3 +74.5 +33.168 +92.24 +12.12 +92.1 +89.87 +57.81 +92.1 +67.113 +59.1 +60.21 +55.8 +12.28 +89.50 +92.16 +13.106 +92.24 +33.54 +90.21 +61.9 +71.21 71.34 +13.107 +67.136 +92.30 +92.24 +67.1 +33.69 +92.24 +93.169a +92.24 +11.1 +64.12 +90.34 +39.37 +15.40 +89.109 +6.33 +89.92 +6.31 +37.109 +92.1 +89.90 +67.92 +83.13 +92.24 +7.16 +17.12 +33.224 +89.92 +69.3 +37.110 +92.1 +89.124 +92.29 +63.1 +13.107 +89.59 +13.106 +92.24 +33.54 +92.24 +53.79 +67.47 +92.24 +36.38 +59.23 +15.48 +92.11 +15.61 +16657 92.24 +37.110 +92.24 +93.169a +15.177 +84.18 +93.205 +92.24 +53.89 +83.5 +92.24 +53.94 +89.92 +92.24 +53.77 +15.123 +89.87 +92.24 +93.296 +15.144 +92.11 +16679 83.30 +84.19 +92.24 +7.6 +92.24 +53.89 +89.87 +15.93 +83.13 +17.12 +89.108 +92.24 +35.20 +27.5 +92.24 +89.40 +89.87 +92.24 +53.88 +89.92 +92.24 +11.80 +63.1 +13.19 +33.272 +90.31 +92.24 +93.169a +89.59 +92.11 +20.65 +16711 69.3 +27.27 +59.1 +33.273 +15.77 +89.124 +61.16 +15.77 +60.11 +33.69 +92.29 +33.69 +74.5 +20.54 +92.24 +7.15 +92.24 +12.1 +89.87 +67.136 +60.12 +67.186 +45.1 +89.87 +17.6 +92.24 +53.89 +33.69 +92.11 +92.23 +33.184 +92.14 +92.29 +92.6 +33.269 +89.124 +92.24 +93.169a +33.117 +89.87 +92.24 +53.89 +33.69 +92.11 +33.467 +92.6 +90.29 +92.24 +12.1 +92.24 +23.88 +90.22 +92.4 +33.69 +90.26 +92.6 +13.4 +92.24 +53.82 +92.24 +12.15 +92.24 +12.15 +33.69 +92.11 +92.24 +93.169a +92.6 +33.69 +89.130 +33.69 +92.7 +67.131 +67.38 +24.1 +92.24 +9.3 +92.24 +9.3 +17.12 +87.34 +82.8 +92.24 +12.44 +89.92 +15.81 +83.46 +92.24 +1.34 +92.24 +1.5 +67.47 +92.24 +53.89 +19.32 +92.24 +6.172 +92.11 +33.69 +33.400 +92.14 +67.128 +57.40 +33.270 +16816 91.13 +67.39 +24.52 +92.24 +33.401 +92.14 +92.7 +31.30 +89.87 +92.24 +33.184 +33.69 +88.313 +23.99 +13.1 +67.47 +23.43 +84.16 +92.24 +8.18 +92.11 +89.92 +19.7 +92.11 +89.94 +92.24 +19.4 +33.69 +33.459 +92.4 +53.82 +92.14 +13.4 +92.24 +19.1 +92.6 +16853 92.24 +93.296 +17.12 +83.20 +83.13 +92.24 +7.6 +89.87 +15.77 +92.11 +92.22 +87.83 +33.69 +89.93 +92.6 +85.1 +89.108 +93.169a +92.24 +93.445 +89.124 +92.24 +33.277 +83.33 +59.23 +33.69 +69.3 +32.4 +92.14 +33.69 +89.87 +15.40 +84.22 +92.24 +7.38 +24.1 +92.11 +58.37 +89.87 +33.69 +92.24 +83.2 +92.29 +85.1 +89.108 +93.169a +92.24 +93.538 +89.87 +67.55 +33.277 +89.78 +33.463 +90.21 +69.3 +28.1 +92.24 +9.24 +89.87 +67.48 +67.106 +15.77 +92.24 +85.8 +33.69 +92.24 +93.296 +70.3 +89.93 +92.6 +63.20 +92.11 +13.4 +89.23 +89.93 +92.24 +33.102 +92.6 +28.58 +92.6 +13.9 +67.47 +68.1 +33.472 +89.92 +33.463 +90.21 +69.3 +28.1 +92.24 +9.24 +89.87 +16946 4.45 +14.76 +89.87 +29.7 +92.24 +93.296 +92.24 +33.98 +93.169a +33.69 +90.21 +67.17 +4.45 +14.76 +60.71 +33.277 +92.1 +89.87 +15.40 +84.27 +25.138 +25.284 +16969 67.187 +13.107 +30.74 +90.48 +59.23 +92.24 +53.88 +89.92 +92.24 +53.77 +92.24 +11.12 +90.31 +92.24 +93.169a +89.61 +20.65 +92.11 +89.87 +37.114 +92.11 +15.177 +89.87 +37.111 +93.297 +92.24 +37.83 +67.47 +93.173a +92.24 +17000 92.11 +27.5 +90.21 +56.31 +25.270 +15.195 57.157 +92.24 +60.26 +6.73 +92.24 +53.88 +89.92 +53.77 +33.69 +88.289 +37.111 +23.107 +88.316 +89.124 +92.24 +33.69 +92.14 +89.7 +92.4 +92.6 +13.134 +89.87 +15.217 +92.24 +6.73 +84.22 +92.24 +7.15 +15.53 +89.87 +15.37 +20.81 +89.124 +92.24 +53.88 +18.1 +92.24 +6.73 +33.69 +69.3 +71.32 +85.34 +92.11 +84.22 +92.24 +7.33 +89.32 +57.161 +20.83 +13.4 +17056 30.74 +90.48 +57.188 +57.163 +92.11 +92.24 +1.95 +92.24 +6.129 +89.57 +52.9 +92.24 +28.34 +89.47 +33.129 +92.24 +1.95 +92.30 +1.95 +20.83 +67.119 +92.24 +67.205 +67.47 +13.106 +92.24 +33.69 +90.4 +93.165 +92.24 +53.79 +33.69 +89.87 +57.125 +92.24 +60.26 +6.73 +92.24 +57.161 +92.24 +57.165 +92.27 +57.165 +90.7 +11.58 +93.182b +89.87 +57.152 +92.11 +17106 92.24 +1.95 +92.24 +6.129 +64.14 +33.325 +92.1 +12.9{N:001} +89.87 +92.24 +93.169a +85.40 +83.33 +92.24 +37.83 +89.87 +56.14 +92.11 +92.24 +37.83 +33.69 +92.6 +13.4 +92.24 +37.67 +92.24 +93.172 +89.87 +92.24 +93.169a +33.69 +92.6 +33.69 +89.87 +67.136 +92.24 +33.427 +92.11 +90.1 +92.24 +53.89 +89.92 +53.77 +92.23 +33.28 +67.47 +33.69 +92.11 +92.24 +93.297 +69.11 +24.52 +59.5 +92.6 +33.269 +89.87 +69.3 +33.184 +92.11 +90.25 +69.8 +60.10 +33.9 +89.52 +25.213 +92.24 +37.83 +78.1 +17175 89.90 +51.2 +41.26 +92.24 +37.83 +37.127 +92.24 +11.1 +60.10 +37.117 +92.27 +25.1 +89.94 +17189 67.47 +37.117 +28.31 +33.129 +93.59 +89.50 +15.123 +92.11 +33.69 +92.11 +92.24 +93.297 +25.1 +92.14 +37.127 +92.7 +93.59 +89.139 +93.169a +92.24 +33.131 +53.82 +89.23 +28.1 +90.21 +89.26 +88.160 +37.111 +92.11 +89.87 +17.12 +92.11 +83.46 +92.24 +7.63 +15.67 +84.18 +92.11 +92.24 +10.54 +92.11 +33.69 +92.23 +92.6 +89.92 +92.24 +88.12 +92.30 +89.23 +59.1 +90.66 +67.205 +89.4 +33.486 +90.44 +92.11 +89.124 +92.24 +53.88 +89.92 +92.24 +53.77 +33.301 +92.24 +11.1 +90.22 +33.163 +92.24 +93.59 +89.94 +92.24 +93.169a +20.31 +89.87 +33.28 +92.24 +37.83 +33.69 +92.11 +25.1 +92.14 +63.20 +92.24 +60.11 +37.127 +92.7 +89.87 +92.24 +33.69 +92.24 +93.59 +33.69 +92.11 +92.24 +93.297 +89.50 +92.14 +42.7 +93.169a +92.24 +33.131 +53.82 +33.69 +59.23 +20.76 +89.124 +92.24 +33.69 +91.1 +92.14 +88.106 +90.45 +89.124 +92.24 +78.31 +33.83 +33.69 +20.76 +89.87 +92.24 +93.297 +24.1 +90.21 +92.23 +68.33 +89.125 +89.126 +39.42 +13.107 +57.55 +2.7 +47.10 +92.24 +8.30 +17324 92.24 +11.1 +33.69 +88.316 +13.1 +89.122 +92.24 +20.83 +92.29 +92.7 +13.134 +89.87 +33.28 +59.23 +92.24 +11.1 +33.69 +92.24 +23.107 +92.11 +90.17 +92.4 +89.92 +90.17 +92.24 +10.28 +92.4 +67.47 +37.127 +92.11 +92.24 +93.59 +89.124 +92.24 +93.169a +19.9 +37.111 +89.59 +20.76 +67.47 +92.24 +55.17 +92.24 +37.83 +15.168 +92.24 +93.169a +84.22 +92.24 +7.7 +15.125 +84.17 +92.11 +63.1 +92.24 +55.9 +89.87 +49.18 +92.11 +6.173 +79.29 +85.39 +92.11 +89.87 +49.27 +6.192 +89.142 +3.17 +85.51 +84.20 +92.24 +8.10 +92.11 +89.92 +3.55 +84.22 +92.24 +8.32 82.8 +92.11 +89.87 +17.19 +83.33 +92.11 +33.406 +92.11 +33.69 +33.22 +37.67 +92.24 +93.172 +89.87 +23.43 +90.59 +92.11 +18.1 +92.24 +3.55 +89.87 +19.1 +83.47 +92.24 +8.10 +92.11 +89.87 +17429 33.406 +92.11 +49.18 +92.11 +92.24 +6.173 +89.87 +49.1 +92.11 +92.24 +6.162 +92.11 +89.87 +15.177 +92.11 +89.57 +92.24 +20.76 +89.87 +15.40 +27.27 +9.24 +93.511 +33.126 +93.341d +92.29 +37.34 +90.22 +15.203 +92.24 +6.27 +92.11 +89.87 +15.81 +84.16 +80.1 +33.129 +93.453 +89.106 +89.106 +33.129 +8.11 +80.1 +57.71 +92.11 +23.34 +6.197 +89.123 +8.75 +63.10 +89.87 +24.72 +69.3 +25.1 +23.34 +89.87 +20.76 +92.11 +57.89 +92.24 +6.162 +92.11 +15.215 +6.219 +89.87 +17.12 +37.122 +92.11 +83.2 +89.92 +85.51 +83.49 +92.24 +8.10 +92.11 +92.24 +56.5 +92.11 +33.61 +92.29 +13.4 +93.169a +92.24 +37.67 +92.24 +93.172 +67.47 +20.76 +89.107 +92.11 +60.11 +57.240 +17523 82.8 +89.92 +17527 82.7 +89.94 +92.24 +15.28 +33.400 +92.11 +16.2 +92.24 +8.10 +92.11 +89.92 +33.69 +92.24 +20.54 +92.24 +7.15 +89.87 +67.136 +60.12 +67.186 +45.1 +21.18 +92.10 +89.65 +13.4 +12.15 +92.24 +12.15 +89.92 +15.107 +84.3 +92.24 +6.27 +64.1 +92.24 +53.88 +33.406 +89.108 +92.24 +53.94 +89.92 +53.77 +33.69 +58.37 +21.18 +92.25 +21.18 +69.3 +74.5 +37.67 +93.182b +13.4 +15.107 +67.39 +84.3 +92.24 +6.27 +89.87 +31.85 +17587 92.11 +31.82 +90.23 +92.24 +12.1 +21.23 +67.39 +89.65 +25.102 +92.11 +89.23 +33.69 +90.21 +12.15 +12.15 +13.4 +89.94 +92.24 +58.31 +89.93 +92.24 +57.240 +92.24 +20.78 +89.107 +92.11 +33.389 +92.11 +17616 67.131 +60.53 +67.199 +14.53 +13.107 +90.57 +59.23 +92.24 +1.79 +67.119 +67.199 +60.56 +89.87 +67.35 +92.24 +60.56 +67.199 +33.81 +92.24 +93.169a +33.80 +78.2 +33.69 +12.3 +12.3 +89.38 +35.56 +89.106 +89.106 +12.1 +92.1 +12.1 +92.1 +17651 92.1 +35.54 +89.87 +92.12 +92.24 +83.2 +17.1 +24.52 +33.69 +90.21 +93.142 +33.307 +92.29 +89.87 +67.53 +92.22 +63.20 +92.11 +15.230 +89.87 +18.1 +6.133 +89.102 +59.38 +6.201 +89.102 +85.39 +3.55 +23.35 +92.11 +89.124 +92.24 +63.21 +17685 68.43 +24.1 +90.26 +15.81 +93.142 +21.18 +92.11 +89.87 +92.24 +93.169a +67.55 +33.83 +33.80 +78.2 +23.109 +92.24 +23.110 +89.87 +91.13 +92.24 +6.160 +92.24 +7.15 +63.26 +84.3 +84.13 +84.19 +84.26 +89.48 +60.11 +89.92 +92.24 +1.39 +16.7 +89.92 +92.24 +2.21 +63.26 +89.92 +92.24 +7.75 +79.110 +89.87 +59.1 +8.1 +92.24 +23.104 +11.27 +23.94 +89.87 +15.40 +84.4 +92.24 +7.75 +67.48 +92.24 +23.93 +92.11 +15.93 +84.22 +92.24 +53.46 +1.89 +89.87 +24.19 +59.1 +89.87 +92.24 +55.16 +89.92 +92.24 +89.108 +92.11 +37.122 +92.24 +93.169a +90.79 +92.24 +14.87 +89.92 +92.24 +17767 25.252 +78.19 +33.69 +70.3 +12.15 +12.15 +13.4 +92.29 +89.94 +85.1 +83.2 +9.34 +59.1 +17781 83.30 +24.14 +92.18 +15.156 +92.24 +93.169a +84.3 +92.24 +93.444a +35.37 46.13 +92.11 +89.119 +92.27 +13.1 +93.253c +92.24 +93.242 +89.92 +93.253d +92.24 +92.24 +93.158d +89.92 +93.202g +10.16 +89.92 +92.24 +10.16 +92.24 +10.42 +93.137 +17813 67.197 +13.107 +15.81 +9.24 +57.26 +84.3 +93.413 +33.126 92.24 +93.202c +92.27 +89.93 +92.11 +36.31 +92.24 +93.169a +92.29 +15.77 +92.24 +93.297 +33.163 +92.24 +8.1 +92.24 +93.169a +67.47 +92.24 +93.297 +33.323 +57.153 +89.87 +18.1 +92.24 +8.1 +92.24 +93.202c +79.118 +92.11 +90.10 +6.155 +79.48 +89.87 +85.32 +92.11 +84.22 +92.24 +67.115 +92.11 +7.75 +92.27 +19.25 +83.13 +92.24 +2.21 +89.87 +15.249 + +79.123 +92.24 +7.39 +92.24 +7.75 +15.37 +89.94 +83.2 +93.253c +92.24 +93.242 +89.92 +92.24 +58.37 +93.253c 93.253d +85.1 +17.12 +83.42 +92.24 +7.75 +89.87 +92.24 +67.208 +17893 13.4 +67.48 +92.24 +67.201 +15.123 +92.24 +53.88 +89.92 +92.24 +11.49 +84.18 +93.297 +33.69 +87.53 +29.7 +90.21 +92.30 +92.24 +31.9 +33.69 +67.128 +23.88 +67.48 +60.12 +67.186 +23.94 +89.50 +33.323 +21.11 +92.24 +7.75 +67.119 +92.24 +60.50 +67.186 +17930 15.81 +92.24 +36.38 +57.232 +92.11 +89.87 +33.69 +92.24 +11.1 +23.94 +84.3 +92.24 +23.121 +89.87 +13.104 +92.24 +61.13 +31.10 +65.29 +92.24 +67.18 +33.69 +92.11 +92.24 +93.297 +57.1 +55.13 +15.35 +21.11 +64.12 +28.7 +89.87 +92.24 +15.34 +21.11 +92.24 +7.75 +6.55 +92.24 + +89.79 +92.24 +55.13 +17974 67.51 +67.184 +92.24 +14.41 +67.160 +17980 67.177 +15.81 +93.253c +92.24 +93.242 +89.92 +92.24 +58.37 +93.253c 93.253d +24.14 +92.24 +7.75 +89.87 +91.13 +14.87 +78.2 +13.107 +89.23 +12.28 +12.9{N:001} +15.107 +89.3 +1.11 +89.87 +15.77 +15.248 +92.24 + +89.87 +17.12 +83.49 +92.11 +18013 13.1 +92.24 +58.14 +92.11 +64.12 +14.16 +89.92 +92.24 +6.162 +92.11 +79.27 +64.12 +2.12 +89.87 +89.25 +92.24 +25.251 +92.11 +16.6 +92.24 +37.122 +89.92 +13.3 +64.12 +23.121 +89.87 +33.28 +92.24 +12.28 +33.69 +92.24 +9.34 +69.3 +25.252 +92.7 +89.23 +28.1 +90.21 +93.169a +92.24 +20.76 +27.41 +69.3 +85.1 +83.1 +89.23 +23.94 +64.14 +33.69 +84.24 +24.1 +92.24 +80.1 +83.5 +17.26 +89.87 +67.110 +15.34 +33.69 +92.24 +36.38 +92.11 +90.21 +23.94 +84.3 +92.24 +23.121 +89.92 +91.13 +15.142 +92.7 +84.22 +92.24 +93.444a +83.2 +92.11 +24.1 +91.13 +33.69 +92.7 +89.87 +15.37 +67.110 +84.3 +92.24 +7.75 +89.79 +25.251 +89.92 +25.123 +78.2 +15.230 +33.198 +92.24 +36.38 +92.11 +89.87 +91.13 +93.169a +15.78 +92.11 +33.69 +33.22 +89.87 +92.24 +15.77 +18.6 +92.11 +92.24 +8.49 +89.87 +53.56 +92.11 +67.47 +33.69 +92.11 +92.24 +93.169a +69.3 +25.252 +15.35 +33.198 +92.24 +11.23 +92.1 +90.22 +15.37 +84.22 +92.24 +93.444a + +92.1 +24.1 +18147 15.34 +92.11 +91.13 +92.12 +92.24 +55.13 +15.81 +84.22 +92.24 +1.89 +33.198 +92.24 +53.88 +59.23 +92.24 +13.107 +89.87 +15.123 +90.60 +92.24 +53.77 +89.88 +30.74 +90.48 +6.73 +59.12 +57.152 +92.24 +55.17 +33.69 +33.69 +90.21 +92.24 +36.38 +92.11 +67.192 +15.81 +57.232 +92.11 +92.4 +23.66 +89.87 +89.67 +33.212 +92.29 +90.57 +92.24 +37.83 +92.4 +33.301 +89.92 +92.7 +25.226 +13.9 +89.87 +92.24 +57.125 +6.73 +42.7 +64.12 +33.224 +89.87 +33.214 +92.24 +33.98 +92.29 +83.9 +93.172 +67.119 +92.24 +67.205 +67.142 +18220 92.24 +60.20 +36.38 +15.18 +84.22 +92.24 +93.444a +84.16 +92.24 +1.46 +83.5 +33.325 +92.11 +92.24 +93.169a +89.87 +24.1 +92.11 +53.56 +89.124 +92.24 +31.37 +89.87 +15.77 +92.24 +93.169a +33.70 +92.11 +33.69 +37.98 +92.1 +59.23 +37.35 +83.13 +1.11 +89.92 +83.46 +92.24 +1.39 +89.50 +15.10 +36.37 +59.23 +92.24 +11.55 +53.41 +92.11 +90.23 +92.24 +33.126 +92.24 +12.12 +89.92 +92.24 +12.15 +89.92 +92.24 +88.24 +12.18 +33.224 +92.11 +36.19 +59.23 +59.19 +33.329 +92.7 +89.92 +91.13 +92.1 +89.108 +92.7 +85.1 +59.23 +92.24 +67.142 +67.119 +92.24 +67.66 +92.24 +67.143 +68.1 +92.24 +33.217 +93.169a +93.387 +12.15 +12.15 +64.14 +33.54 +90.6 +92.24 +93.147 +92.24 +53.79 +91.13 +15.66 +92.24 +33.195 +92.1 +83.33 +83.33 +92.6 +92.27 +77.6 +92.24 +1.99 +92.6 +33.103 +33.81 +83.13 +92.24 +1.86 +77.3 +92.24 +1.99 +12.9{N:001} +79.88 +13.9 +92.24 +1.100 +92.11 +85.7 +93.190a +92.24 +53.41 +83.13 +92.24 +1.86 +33.256 +53.41 +41.52 +89.57 +40.8 +88.310 +89.87 +15.40 +84.18 +92.11 +59.23 +92.24 +93.486b +11.64 +89.92 +92.24 +93.481 +59.23 +89.87 +53.41 +90.1 +92.11 +83.13 +92.24 +93.485 +1.76 +33.275 +92.24 +88.310 +92.11 +89.93 +13.1 +92.24 +93.190a +49.1 +8.12 +4.30 +89.92 +6.178 +6.185 +83.18 +92.24 +8.42 +92.11 +89.92 +23.1 +4.47 +89.92 +5.20 + +89.92 +33.256 +33.69 +15.81 +92.24 +87.44 +92.1 +18406 92.1 +92.27 +69.3 +13.1 +75.2 +17.29 +18.18 +92.24 +6.20 +92.24 +6.182 +92.11 +92.1 +53.41 +92.7 +2.7 +89.124 +92.11 +53.49 +92.7 +12.18 +88.24 +91.1 +91.5 +67.136 +92.30 +92.24 +67.142 +15.81 +93.169a +84.3 +93.536 +92.24 +93.444a +89.87 +53.41 +83.13 +92.24 +93.485 +90.1 +93.190a +89.87 +67.53 +15.101 +84.4 +92.24 +2.7 +24.1 +19.27 +92.24 +1.11 +89.92 +92.24 +12.18 +64.12 +4.44 +15.107 +84.22 +92.11 +89.87 +33.103 +13.107 +84.4 +92.24 +1.11 +92.6 +13.4 +92.24 +12.15 +92.1 +92.24 +58.53 +89.5 +92.6 +25.87 +91.1 +67.53 +92.24 +12.18 +92.11 +15.174 +84.22 +92.24 +1.86 +89.87 +85.1 +83.13 +92.24 +1.86 +67.93 +67.93 +88.308 +90.1 +92.24 +12.34 93.330 +89.92 +85.1 +83.9 +92.24 +4.3 4.4 +89.87 89.92 +92.24 +12.28 +35.37 +92.11 +18512 67.48 +92.24 +37.111 +92.24 +93.190a +15.7 +92.24 +93.169a +84.22 +92.24 +93.444a +33.256 +92.24 +33.217 +92.24 +12.1 +89.92 +33.69 +90.21 +59.33 +92.24 +67.1 +89.92 +67.21 +92.24 +37.64 +92.24 +12.1 +41.52 +89.92 +31.85 +90.23 +92.24 +33.217 +91.1 +15.28 +83.25 +92.24 +1.70 +92.24 +93.444b +24.1 +93.341a +89.92 +93.25 +92.24 +10.49 +93.341a +44.8 +84.22 +92.24 +1.70 +89.23 +13.4 +44.10 +89.87 +33.69 +92.11 +92.24 +93.169a +84.24 +36.35 +92.1 +89.87 +13.9 +92.7 +13.48 +44.10 +9.1 +89.87 +67.53 +85.45 +92.24 +6.11 +36.31 +92.11 +89.87 +15.16 +59.13 +24.1 +93.158a +92.24 +92.24 +93.137 +89.92 +93.190b +92.24 +10.49 +92.11 +89.93 +92.11 +83.13 +92.24 +6.41 +75.5 +92.24 +6.11 +89.87 +67.53 +33.312 +92.11 +89.87 +15.48 +92.24 +10.14 +92.11 +93.137 +83.13 +92.24 +6.41 +89.108 +92.24 +57.174 +15.37 +36.35 +92.11 +89.87 +15.93 +84.22 +93.498 +89.87 +67.53 +92.24 +67.184 +15.93 +84.22 +92.24 +7.20 +33.224 +89.87 +25.219 +89.27 +92.24 +33.224 33.236 +92.11 +89.23 +18649 33.224 +92.11 +64.12 +37.35 +18654 89.92 +69.3 +64.12 +92.24 +53.94 +89.87 +67.53 +85.1 +83.13 +92.24 +7.20 +92.11 +9.24 +18668 12.39 +53.39 +89.87 +33.83 +33.69 +18674 92.4 +18677 93.169a +93.537 +15.81 +20.31 +92.4 +28.1 +92.6 +92.14 92.15 +13.4 +92.24 +88.24 +92.24 +12.1 +89.87 +33.419 +92.11 +92.24 +93.169a +14.86 +89.87 +15.40 +84.4 +92.11 +89.87 +92.24 +12.39 +92.24 +53.39 +23.167 +92.11 +89.92 +33.77 +33.80 +78.2 +15.40 +84.4 +92.11 +89.87 +25.209 +59.23 +89.52 +33.157 +18720 33.69 +92.14 +13.4 +92.29 +33.236 +28.33 +89.4 +37.35 37.41 +18729 92.24 +12.39 +92.24 +53.39 +33.325 +89.92 +36.15 +92.11 +89.87 +15.40 +92.24 +33.213 +92.11 +67.53 +83.8 +84.22 +63.1 +92.24 +1.80 +92.24 +93.444a +91.1 +67.53 +84.4 +92.24 +7.20 +15.40 +15.81 +84.22 +92.24 +7.3 +93.341a +89.92 +93.25 +89.108 +93.158a +89.92 +93.190b +89.87 +92.24 +10.59 +93.341a +17.27 +23.159 +89.87 +67.53 +33.69 +92.11 +90.24 +92.11 +89.87 +15.77 +17.10 +92.11 +18.6 +92.24 +8.30 +89.87 +15.48 +92.11 +92.24 +23.159 +89.87 +46.13 +92.11 +89.87 +67.197 +13.107 +18799 92.24 +1.28 +15.166 +84.18 +92.11 +59.23 +92.24 +23.148 +23.148 +89.92 +92.24 +12.41 +89.92 +18813 15.124 +63.1 +92.24 +11.61 +83.24 +92.24 +7.39 +89.87 +23.139 +59.1 +23.148 +23.148 +58.45 +23.155 +89.92 +12.37 +59.1 +53.102 +89.92 +69.3 +13.140 +33.70 +92.24 +12.37 +89.33 +28.1 +92.11 +89.87 +67.187 +67.193 +78.1 +15.36 +15.40 +89.87 +15.37 +84.22 +1.86 +80.1 + +33.178 +89.87 +27.43 +92.11 +93.341a +89.92 +92.24 +89.108 +92.11 +89.87 +27.27 +92.11 +89.87 +33.69 +92.11 +90.21 +59.23 +27.41 +92.6 +89.87 +33.69 +92.11 +15.34 +83.4 +84.22 +92.24 +83.29 +1.91 +89.59 +89.93 +83.2 +33.256 +89.23 +89.57 +92.29 +15.40 +89.87 +15.7 +33.256 +83.13 +92.24 +7.20 +92.11 +83.13 +63.1 +92.24 +93.444a +89.92 +92.24 +12.37 +53.102 +89.87 +15.81 +84.18 +92.11 +23.162 +33.168 +92.11 +89.92 +17.19 +33.69 +92.11 +90.21 +89.67 +25.1 +74.5 +92.1 +23.137 +89.87 +25.49 +16.19 +92.24 +8.30 +92.11 +24.73 +89.92 +33.69 +92.11 +25.1 +23.137 +89.87 +67.53 +13.93 +84.3 +92.11 +92.24 +23.161 +89.92 +23.137 +89.87 +33.320 +92.11 +67.53 +15.68 +92.11 +89.87 +33.69 +92.11 +30.45 +92.23 +92.23 +33.69 +89.125 +15.35 +92.10 +28.47 +92.24 +53.87 +89.87 +57.80 +89.6 +92.24 +53.28 +92.6 +92.27 +33.325 +93.266 +89.57 +33.262 +92.11 +89.124 +92.24 +15.40 +68.1 +33.207 +78.3 +89.92 +33.214 +92.24 +33.98 +89.52 +67.130 +92.11 +74.5 +28.63 +84.22 +1.88 +15.93 +89.125 +83.20 +83.23 +1.86 +80.1 +85.1 +89.92 +15.81 +84.18 +92.11 +84.7 +91.1 +15.93 +67.55 +84.22 +93.498 +67.59 +67.142 67.59 +33.212 +90.21 +83.13 +7.2 +85.1 +89.87 +15.123 +59.1 +89.52 +67.130 +80.4 +69.8 +92.24 +83.24 +92.24 +7.39 +89.87 +33.70 +92.11 +92.24 +33.260 +89.87 +15.81 +15.187 +84.18 +92.11 +23.171 +15.203 +90.1 +60.13 +89.87 +69.3 +74.5 +15.172 +92.11 +90.44 +92.24 +11.1 +45.11 +92.24 +7.50 +83.5 +85.1 +89.87 +19.42 +15.111 +92.24 +6.107 +83.5 +92.24 +23.171 +17.27 +89.87 +92.24 +93.169a +24.1 +92.24 +31.85 +92.11 +33.69 +92.24 +23.171 +9.46 +40.8 +92.6 +92.24 +88.310 +89.87 +85.1 +92.12 +92.24 +53.94 +83.2 +17.12 +89.92 +30.10 +83.13 +92.24 +26.3 +92.11 +92.15 +92.29 +61.9 +33.70 +33.400 +92.14 +74.5 +40.8 +88.310 +89.131 +19099 60.10 +92.24 +12.1 +89.87 +67.53 +92.24 +93.169a +32.16 +92.24 +26.9 +92.11 +90.21 +61.9 +30.10 +83.13 83.9 +92.25 +33.69 +92.11 +92.15 +92.29 +30.10 +83.13 +92.24 +26.3 +92.7 +92.14 +13.1 +22.39 +33.69 +92.24 +23.171 +40.8 +92.6 +92.24 +88.310 +89.139 +33.69 +17.9 +89.87 +15.203 +92.24 +6.107 +92.6 +89.87 +15.227 +89.124 +89.59 +28.1 +90.21 +37.35 +19150 92.24 +9.3 +92.24 +9.3 +40.8 +88.310 +83.46 +92.24 +1.39 +33.69 +92.24 +23.171 +92.6 +33.69 +17.9 +15.203 +92.24 +6.107 +92.6 +89.87 +15.15 +84.16 +92.24 +7.2 +92.6 +89.87 +17.9 +89.87 +67.53 +15.203 +92.24 +6.107 +15.40 +83.33 +59.23 +89.52 +25.220 +59.23 +89.92 +33.357 +92.24 +12.1 +33.69 +90.21 +61.9 +67.10 +24.1 +89.87 +15.40 +67.55 +83.25 +92.24 +1.70 +89.87 +59.23 +92.24 +11.1 +15.81 +84.18 +92.11 +89.87 +33.224 +92.11 +91.1 +15.15 +24.1 +93.231a +92.24 +92.24 +93.19b +17.12 +83.23 +92.24 +57.183 +89.87 +33.69 +92.11 +15.156 +92.1 +89.87 +15.36 +15.156 +92.11 +89.87 +13.107 +17.23 +92.11 +83.13 +92.24 +7.3 +92.11 +19242 59.1 +57.184 +89.92 +88.295 +34.10 +92.24 +93.169a +89.92 +92.24 +36.38 +92.11 +89.23 +13.1 +59.1 +89.92 +15.156 +92.11 +89.87 +92.24 +53.94 +92.24 +11.49 +24.1 +90.21 +23.1 +89.108 +92.24 +88.295 +89.92 +57.184 +33.69 +92.24 +36.38 +92.11 +19277 89.108 +92.24 +57.184 +89.92 +88.295 +23.1 +89.87 +33.212 +92.24 +93.169a +33.69 +92.11 +69.3 +57.40 +23.141 +19293 92.24 +23.130 +89.125 +92.24 +23.148 +23.148 +69.3 +15.81 +33.307 +88.12 +89.125 +88.295 +91.1 +13.1 +53.65 +92.24 +36.38 +93.190a +89.92 +92.24 +11.49 +89.87 +15.81 +89.87 +33.69 +92.11 +19321 92.24 +36.38 +93.190a +89.92 +92.24 +36.38 +92.24 +11.49 +53.65 +89.124 +92.24 +92.6 92.8 +36.38 +69.3 +53.65 +89.87 +33.69 +92.11 +92.24 +93.169a +69.3 +74.5 +92.24 +11.7 +92.24 +7.34 +67.139 +19349 92.24 +10.56 +89.108 +92.11 +85.1 +53.65 +67.139 +67.78 +90.65 +92.24 +10.56 +89.108 +92.11 +69.3 +74.5 +53.65 +89.124 +13.117 +67.142 +19369 15.177 +89.122 +92.11 +92.24 +10.56 +89.87 +67.47 +53.65 +67.136 +92.30 +92.24 +67.142 +92.23 +6.157 +6.152 +48.8 +48.5 +84.20 +6.162 +58.75 +19392 20.43 +92.24 +59.36 +92.24 +58.71 +89.122 +92.11 +92.24 +58.75 +89.87 +65.29 +19.28 +13.48 +89.92 +92.23 +47.2 +6.198 +67.115 +84.22 +6.132 +58.75 67.97 +19416 19.31 +92.24 +6.197 +92.24 +6.132 +89.87 +92.24 +6.198 +20.31 +89.92 +92.24 +6.132 +89.125 +6.198 +67.115 +84.22 +6.132 +58.71 67.115 +91.1 +91.5 +92.11 +67.33 +92.24 +67.184 +15.28 +84.29 +92.24 +43.7 +89.87 +92.24 +36.38 +92.11 +68.1 +15.19 +90.45 +18.9 +92.24 +3.40 +89.87 +92.24 +11.49 +33.69 +92.11 +91.13 +92.15 +42.7 +92.24 +67.184 +92.27 +69.3 +71.32 +89.87 +33.69 +92.11 +67.10 +33.68 +92.14 +42.7 +93.91 +19476 57.40 +19478 89.92 +23.29 +92.11 +89.92 +92.24 +89.108 +92.11 +92.16 +15.93 +84.22 +92.24 +7.2 +92.24 +12.1 +67.33 +93.5 +53.89 +89.87 +92.24 +53.26 +92.24 +53.26 +23.1 +92.27 +23.1 +69.3 +71.32 +89.131 +19507 92.24 +53.87 +89.92 +57.71 +89.93 +92.24 +89.107 +92.11 +85.1 +89.92 +33.69 +92.11 +92.24 +67.184 +90.38 +92.24 +9.1 +13.80 +89.92 +69.3 +92.24 +9.1 +89.26 +92.24 +67.184 +89.52 +13.4 +92.24 +9.3 +92.24 +9.3 +37.51 +19540 92.24 +67.184 +91.1 +15.93 +67.55 +84.22 +7.20 +89.92 +85.1 +83.2 +9.24 +23.172 +90.65 +92.24 +8.30 +89.87 +24.48 +92.11 +90.26 +92.24 +67.184 +23.139 +92.11 +89.59 +33.427 +92.11 +89.87 +33.69 +92.24 +9.24 +92.24 +92.24 +23.173 +8.30 +90.65 +17.9 +84.22 +92.24 +83.10 +89.87 +33.69 +92.11 +71.32 +92.24 +67.184 +88.1 +90.45 +89.139 +20.12 88.112 +23.88 +21.18 +89.139 +20.61 +89.124 +92.24 +33.117 +89.87 +24.11 +92.11 +89.79 +88.173 +25.276 +89.27 +92.24 +27.52 +92.24 +26.3 +92.11 +33.69 +92.24 +9.24 +16.19 +92.24 +8.30 +89.87 +16.19 +89.87 +13.65 +92.24 +8.30 +92.11 +89.87 +15.40 +92.24 +11.49 +67.53 +89.108 +92.24 +11.87 +30.74 +90.51 +90.31 +92.11 +89.59 +92.11 +20.31 +89.87 +92.24 +93.169a +89.108 +92.24 +36.38 +92.11 +15.53 +84.18 +92.24 +1.70 +89.87 +59.11 +11.1 +84.3 +92.24 +93.444a +15.156 +89.92 +84.3 +92.24 +93.486a +89.92 +84.3 +93.480a +89.92 +84.3 +92.24 +93.477 +89.92 +83.43 +92.24 +93.485 +89.92 +83.18 +93.602 +89.92 +93.577 +11.1 +59.11 +33.212 +59.7 +19679 15.81 +84.18 +92.11 +89.87 +33.69 +92.24 +36.38 +92.11 +90.22 +6.42 +35.28 +92.11 +90.44 +92.24 +11.1 +89.59 +69.3 +19.44 +92.11 +89.23 +59.1 +23.139 +89.52 +19.43 +92.11 +89.59 +92.11 +24.73 +59.7 +90.65 +23.153 +89.92 +92.24 +12.39 +92.24 +53.39 +67.36 +92.11 +24.14 +17.22 +92.11 +89.92 +33.83 +19723 90.21 +92.6 +13.4 +92.24 +12.15 +92.24 +12.15 +89.87 +78.3 +33.331 +92.11 +90.22 +69.3 +92.11 +28.28 +13.9 +89.87 +15.101 +84.16 +92.24 +1.46 +89.87 +33.308 +92.27 +25.1 +92.11 +89.87 +15.37 +84.18 +92.11 +89.87 +37.106 +60.21 +89.59 +85.1 +89.108 +92.11 +89.92 +89.59 +15.66 +92.11 +33.256 +89.92 +19767 37.35 76.12 +53.102 +92.24 +12.37 +89.92 +37.106 +92.24 + +89.92 +33.128 +33.126 +92.24 +93.341a +93.296 +89.92 +93.158a +92.24 +92.24 +93.137 +89.92 +93.190b +92.24 +10.49 +92.24 +93.158a +89.93 +33.128 +92.11 +19796 93.77 +89.106 +89.106 +9.4 +14.15 +89.92 +93.25 +89.92 +93.379a +89.92 +93.62 +89.92 +93.244 +89.92 +93.155 +89.92 +93.158c +92.24 +92.24 +93.19a +89.92 +93.150 +89.92 +93.341b +92.24 +11.88 +89.92 +93.173a +93.181 +92.27 +89.93 +37.111 +92.11 +91.1 +15.81 +84.22 +7.2 +89.87 +15.123 +67.55 +92.24 +11.1 +89.52 +69.3 +74.5 +92.11 +69.8 +5.1 +23.1 +89.87 +33.212 +92.24 +10.9 +92.11 +15.40 +37.16 +92.11 +89.23 +33.69 +90.21 +30.24 +89.87 +92.24 +53.94 +92.24 +84.3 +93.480a +15.107 +33.69 +90.21 +93.68 +19868 89.92 +90.21 +90.6 +92.24 +37.56 +92.24 +12.37 +53.102 +92.24 +12.37 +89.87 +33.308 +92.11 +89.76 +33.15 +33.69 +92.11 +92.16 +74.5 +12.34 93.330 +12.34 93.330 +53.102 +89.92 +89.67 +1.82 +90.34 +92.25 +63.23 +69.3 +74.5 +13.90 +92.24 +1.82 +92.30 +89.92 +89.67 +10.8 +90.34 +92.25 +63.23 +69.3 +74.5 +92.24 +10.8 +92.30 +19914 89.92 +89.65 +92.24 +12.34 93.330 +39.34 +90.34 +92.25 +89.92 +63.23 +69.3 +74.5 +13.90 +89.125 +67.66 +90.65 +89.125 +69.3 +74.5 +92.23 +84.22 +92.24 +7.3 +92.24 +79.63 +15.93 +92.24 +57.20 +92.11 +57.238 +19945 67.18 +92.24 +79.63 +37.114 +89.87 +67.47 +92.24 +7.3 +92.11 +57.238 +72.6 +33.69 +92.7 +90.21 +40.8 +92.24 +9.2 +92.24 +9.2 +59.23 +92.24 +88.290 +89.92 +92.24 +33.401 +71.8 +59.19 +33.400 +89.124 +71.8 +92.27 +33.400 +90.59 +92.24 +12.18 +92.24 +88.24 +69.3 +90.65 +40.8 +67.95 +92.24 +67.95 +89.125 +88.313 +13.1 +67.96 +88.290 +89.33 +33.69 +12.39 +53.39 +19998 89.87 +20000 92.24 +10.16 +92.11 +89.92 +92.24 +10.49 +92.11 +89.87 +83.20 +17.1 +15.67 +84.18 +92.11 +33.307 +92.11 +89.92 +17.12 +83.18 +92.11 +11.1 +89.92 +33.69 +92.11 +91.13 +92.24 +10.16 +92.6 +89.92 +92.24 +10.49 +92.6 +89.92 +92.24 +10.50 +92.6 +83.20 +33.167 +92.6 +89.87 +33.28 +92.11 +33.69 +92.14 +13.4 +92.24 +10.16 +92.1 +89.92 +92.24 +10.49 +89.87 +24.11 +92.24 +83.18 +92.11 +83.19 +17.12 +33.69 +91.13 +92.24 +10.16 +92.1 +89.92 +92.24 +10.49 +92.1 +71.8 +92.27 +42.7 +92.24 +30.59 +92.24 +12.1 +92.29 +10.49 +92.1 +89.92 +10.50 +89.92 +10.16 +13.4 +89.87 +67.55 +68.1 +33.224 +83.25 +92.24 +1.70 +89.87 +15.123 +84.18 +92.11 +11.1 +59.11 +89.52 +92.11 +84.22 +6.41 +15.95 +17.12 +83.47 +92.24 +1.70 +89.92 +59.23 +92.24 +11.1 +83.24 +92.24 +1.70 +83.46 +92.24 +1.60 +85.1 +89.92 +33.224 +92.11 +89.76 +33.15 +59.1 +89.92 +33.69 +92.11 +67.136 +92.24 +33.224 +92.11 +24.52 +91.13 +15.40 +92.24 +43.6 +43.6 +89.87 +13.107 +67.136 +92.24 +43.6 +20140 15.118 +83.25 +92.24 +1.99 +89.87 +15.81 +92.24 +4.38 +89.87 +23.11 +92.11 +89.92 +58.37 +15.118 +84.20 +92.24 +2.22 +83.5 +69.3 +57.1 +2.14 +59.11 +89.87 +67.53 +23.195 +89.26 +92.24 +69.3 +57.1 +81.8 +2.14 +89.87 +20173 15.104 +92.24 +1.28 +14.68 +89.87 +89.26 +92.24 +69.3 +57.1 +3.47 +79.81 +89.92 +58.37 +15.118 +83.9 +92.24 +3.17 +89.87 +23.196 +92.24 +3.17 +89.87 +23.120 +92.11 +89.87 +23.199 3.33 +69.3 +23.199 +89.92 +58.37 +15.118 +84.22 +92.24 +2.14 +92.24 +65.22 +89.87 +23.199 +23.199 3.33 +23.196 +89.87 +23.188 +89.87 +23.199 +20218 60.26 +89.92 +20221 60.29 +89.92 +20224 60.33 +89.87 +33.69 +92.27 +24.59 +8.24 +32.1 +31.56 +89.87 +20234 85.6 +58.51 +58.51 +33.180 +92.11 +92.24 +83.18 +92.11 +89.107 +92.24 + +92.24 +33.15 +89.87 +33.69 +92.11 +92.7 +20252 92.24 +28.77 +92.24 +37.64 +92.24 +12.1 +89.124 +92.30 +92.24 +11.10 +89.76 +33.15 +92.24 +59.23 +13.107 +89.49 89.59 90.22 +24.41 +24.41 +20271 69.3 +24.1 +89.92 +24.52 +24.52 +20277 69.3 +32.5 +20281 41.51 +89.87 +40.8 +92.11 +89.87 +33.69 +92.11 +69.11 +32.4 +92.24 +33.15 +92.29 +89.92 +92.16 +59.23 +92.24 +33.15 +32.16 +92.24 +43.6 +92.24 +33.260 +43.6 +89.94 +92.29 +13.4 +92.24 +83.25 +92.24 +1.99 +83.5 +43.6 +92.24 +33.260 +89.87 +20317 24.52 +67.53 +15.81 +92.24 +12.34 93.330 +89.87 +20.43 +92.24 +33.260 +92.24 +43.6 +84.22 +92.11 +89.92 +13.4 +20333 92.24 +84.20 +92.24 +2.22 +43.6 +92.29 +92.27 +20341 24.52 +92.24 +33.260 +67.53 +89.79 +25.123 +31.50 +92.11 +89.92 +69.3 +57.1 +3.47 +83.13 +92.25 +89.125 +67.109 +13.1 +67.44 +13.107 +22.2 +89.139 +39.45 +89.26 +92.24 +33.260 +67.53 +31.77 +89.92 +58.37 +13.4 +92.24 +83.9 +92.24 +3.17 +43.6 +92.29 +13.4 +92.24 +92.24 +33.260 +24.52 +20383 92.24 +25.224 +92.24 +41.38 +89.92 +92.24 +31.12 +92.24 +57.30 +89.92 +92.24 +90.24 +92.24 +63.21 +25.12 +15.93 +22.22 +92.24 +33.260 +89.87 +65.34 +13.48 +89.92 +13.4 +92.24 +84.20 +92.24 +2.14 +92.24 +65.22 +43.6 +92.30 +92.18 +24.52 +92.24 +33.260 +89.87 +31.52 +89.87 +23.199 +20424 60.26 +89.92 +20427 60.29 +89.92 +20430 60.33 +89.87 +33.69 +92.11 +20435 69.16 +15.7 +92.24 +6.104 +89.59 +83.51 +92.24 +6.151 +85.32 +89.139 +83.51 +92.24 +6.106 +69.11 +89.59 +83.46 +92.24 +6.105 +85.32 +89.23 +69.3 +13.1 +20458 28.69 +20461 89.59 +28.36 +69.7 +13.48 +28.70 +89.125 +89.59 +13.50 +89.57 +28.28 +89.65 +92.12 +24.59 +8.24 +32.1 +31.56 +89.92 +33.69 +92.11 +27.58 +92.14 +31.56 +90.10 +92.27 +81.1 +57.92 +57.92 +92.7 +89.92 +59.72 +92.7 +89.23 +92.27 +57.1 +57.71 +92.11 +89.92 +92.27 +69.3 +57.1 +20502 92.27 +57.1 +90.96 +20506 92.11 +89.87 +33.69 +61.10 +13.1 +92.24 +37.64 +92.24 +12.1 +64.12 +9.24 +15.215 +92.24 +3.35 +84.20 +92.24 +2.14 +89.87 +23.66 +89.87 +23.74 +67.192 +89.92 +67.186 +89.92 +92.24 +3.35 +23.195 +89.87 +23.190 +89.86 +69.3 +32.4 +92.11 +89.21 +92.24 +2.14 +23.199 +60.46 +3.48 +67.44 +3.40 +67.44 +59.31 +20551 83.13 +92.24 +3.40 +89.87 +20556 13.142 +92.24 +23.200 +67.53 +43.17 +92.24 +43.17 6.5 +89.33 +67.64 +92.24 +43.14 +89.87 +33.69 +92.16 +64.5 +92.24 +37.64 +92.24 +12.1 +89.139 +89.76 +92.14 +33.15 +92.11 +33.151 +64.12 +3.35 +3.20 +92.27 +67.31 +43.6 +84.20 +92.24 +2.14 +79.125 +13.1 +59.23 +92.24 +3.35 +92.24 +84.20 +92.24 +1.39 +89.87 +20601 43.6 +23.189 +89.87 +13.48 +87.28 +59.23 +92.24 +3.29 +89.92 +42.29 +3.49 +79.123 +89.52 +74.5 +83.51 +92.24 +14.60 +92.11 +6.147 +92.24 +4.41 +92.24 +4.41 +89.92 +92.31 +33.15 +59.1 +33.70 +92.11 +92.24 +33.260 +78.53 +74.5 +32.1 +89.94 +89.120 +33.15 +69.3 +33.70 +92.11 +89.124 +28.67 +28.67 +92.24 +57.4 +36.38 +33.141 +63.2 +91.1 +33.69 +92.11 +67.33 +92.30 +92.24 +67.186 +67.197 +13.48 +15.31 +84.16 +92.24 +83.43 +20663 15.48 +92.24 +11.1 +15.168 +92.11 +64.12 +13.1 +83.13 +92.24 +6.41 +89.92 +58.37 +6.41 +85.1 +89.108 +92.11 +89.87 +13.107 +14.6 +78.2 +14.4 +89.87 +92.24 +14.25 +14.21 +84.22 +92.24 +6.41 +89.52 +67.20 +59.42 +92.24 +6.41 +89.92 +92.11 +85.1 +83.13 +92.24 +6.47 +83.46 +92.24 +6.110 +23.66 +89.87 +23.77 +92.11 +89.87 +33.69 +92.11 +33.243 +69.11 +25.223 +92.6 +90.21 +23.106 +89.87 +23.74 +33.331 +92.24 +14.4 +89.92 +33.69 +92.24 +1.70 +14.24 +14.86 +20730 68.42 +92.24 +14.4 +20734 13.48 +14.23 +78.2 +89.87 +33.69 +92.11 +92.15 +25.268 +13.1 +20747 31.85 +89.87 +25.252 +25.251 +78.2 +89.92 +33.69 +90.58 +92.26 +71.7 +92.14 +92.29 +13.4 +89.33 90.21 +20762 92.24 +14.4 +89.92 +92.24 +1.70 +36.15 +92.11 +91.1 +15.81 +84.16 +92.24 +83.43 +92.24 +1.70 +84.16 +92.24 +1.79 +92.24 +93.450 +89.87 +15.40 +92.11 +84.4 +92.24 +6.41 +67.53 +15.78 +92.11 +84.4 +92.24 +7.75 +9.24 +20795 12.39 +53.39 +92.27 +92.24 +85.70 +13.2 +83.13 83.9 +92.24 +7.75 +89.92 +69.8 +6.16 +67.130 +92.23 +74.5 +92.11 +37.114 +89.26 +92.24 +92.11 +67.11 +6.17 +89.92 +6.16 +37.114 +89.92 +19.29 +90.1 +92.11 +92.24 +6.16 +89.92 +92.24 +6.17 +19.39 +89.92 +92.23 +74.9 +92.11 +37.1 +89.92 +67.86 +67.86 +67.92a +89.92 +67.92a +83.9 +92.24 +7.75 +89.92 +83.47 +92.24 +1.46 +85.1 +33.83 +89.92 +19.21 +92.25 +2.24 +89.87 +24.1 +92.24 +93.169a +20859 83.30 +15.230 +89.87 +17.21 +20864 89.92 +33.83 +33.80 +78.2 +33.69 +20870 92.1 +20873 93.169a +12.15 +92.24 +12.15 +92.24 +12.4 +33.467 +92.6 +92.24 +12.1 +69.3 +92.1 +38.13 +89.23 +33.69 +92.11 +92.24 +12.39 +92.24 +53.39 +15.40 +84.4 +92.24 +9.24 +89.87 +33.180 +92.11 +92.14 +33.126 +92.6 +89.87 +33.69 +92.11 +93.229 +33.126 +92.1 +89.33 +59.1 +13.1 +89.87 +33.168 +92.11 +67.11 78.3 +90.22 +69.3 +92.11 +15.66 +84.27 +92.24 +1.79 +20924 85.1 +83.2 +83.24 +92.24 +1.46 +4.8 +4.36 +79.123 +23.9 +20934 33.168 +92.11 +33.69 +15.66 +92.4 +84.22 +92.24 +4.36 +89.59 +84.22 +92.11 +15.93 +89.87 +13.138 +92.11 +89.87 +15.40 +92.24 +12.39 +92.24 +53.39 +15.93 +84.22 +92.24 +4.36 +89.87 +15.222 +92.24 +4.8 +84.21 +92.24 +1.50 +84.22 +92.24 +1.70 +78.42 +60.40 +89.87 +23.119 +83.13 +92.24 +1.70 +89.87 +92.24 +44.1 +92.11 +15.61 +89.87 +33.198 +90.59 +92.24 +11.61 +89.92 +90.59 +92.24 +1.87 1.93 +89.87 +15.81 +27.5 +92.14 +13.4 +92.24 +13.107 +89.87 +15.81 +84.18 +92.24 +93.169a +89.87 +24.14 +92.24 +12.41 +92.24 +21008 92.24 +93.229 +17.12 +49.1 +89.92 +30.22 +89.87 +25.252 +89.87 +33.201 +92.11 +92.24 +24.1 +92.16 +13.107 +92.24 +12.41 +89.92 +90.24 +92.24 +4.36 +89.87 +68.1 +33.168 +92.11 +15.37 +84.3 +92.24 +1.79 +92.11 +89.87 +15.95 +92.11 +84.22 +92.24 +6.41 +33.168 +92.11 +92.24 +12.41 +90.22 +89.108 +92.11 +85.1 +89.87 +69.3 +13.140 +92.11 +89.125 +33.69 +92.11 +15.35 +84.16 +92.24 +7.2 +92.6 +84.18 +92.24 +92.8 +89.87 +33.198 +92.11 +59.7 +92.24 +12.9{N:001} +92.6 +41.7 +89.92 +88.76 +92.6 +89.87 +15.37 +89.87 +68.1 +33.207 +83.13 +92.24 +93.460 +59.7 +41.7 +92.11 +92.24 +93.169a +21092 59.23 +25.213 +91.1 +15.31 +92.24 +93.169a +83.13 +92.24 +6.41 +67.55 +84.16 +92.24 +83.43 +15.123 +11.1 +59.11 +84.17 +92.11 +89.92 +85.1 +83.25 +92.24 +1.70 +89.87 +15.81 +92.22 +92.24 +53.93 +33.126 +93.156 +89.87 +24.1 +92.11 +17.22 +83.24 +92.24 +8.49 +92.11 +89.87 +33.168 +92.11 +78.3 +33.69 +90.21 +92.24 +10.47 +92.1 +23.151 +23.151 +89.59 +15.81 +85.51 +92.24 +8.30 +92.11 +89.59 +23.136 +89.92 +23.88 +89.87 +15.37 +89.108 +92.11 +89.92 +15.144 +92.11 +11.1 +59.11 +89.92 +19.45 +92.11 +89.87 +9.34 +13.1 +13.8 +14.17 23.182 +23.182 8.64 +60.21 +67.167 +89.92 +59.1 +24.78 +90.1 +59.1 +23.141 +89.92 +57.146 +92.24 +90.14 +92.11 +59.23 +89.92 +92.23 +35.2 +89.125 +89.126 +23.150 +92.24 +65.29 +13.50 +33.212 +21194 89.6 +92.24 +93.169a +15.81 +83.9 +92.24 +11.1 +84.12 +24.73 +92.24 +6.172 +92.11 +89.23 +33.69 +90.21 +89.67 +24.73 +89.73 +92.24 +6.172 +92.11 +23.136 +89.87 +67.53 +79.81 +92.24 +23.182 +92.24 +23.182 +92.11 +89.87 +28.1 +92.24 +8.1 +90.21 +23.136 +89.122 +92.24 +23.153 +89.87 +67.53 +92.24 +93.169a +28.2 +83.13 +92.25 +92.24 +84.4 +92.11 +76.1 +15.40 +15.90 16.13 +83.9 +92.24 +11.1 +33.69 +92.14 +24.73 +92.1 +92.24 +6.172 +89.87 +33.69 +92.11 +92.24 +36.38 +92.11 +24.7 +92.24 +11.1 +19.45 +92.6 +89.92 +33.69 +92.14 +92.1 +24.73 +89.87 +24.11 +24.1 +92.24 +92.29 +42.7 +89.87 +92.24 +9.34 +25.252 +89.92 +16.6 +28.1 +92.27 +13.107 +92.11 +15.81 +89.87 +17.22 +92.11 +89.87 +33.69 +92.11 +59.23 +92.24 +72.2 +89.87 +92.24 +33.69 +92.11 +9.47 +92.24 +31.85 +92.6 +23.136 +92.6 +15.52 +13.62 +22.42 +89.92 +13.1 +23.129 +89.122 +92.24 +23.153 +92.6 +67.128 +92.11 +33.70 +15.81 +90.15 +92.24 +53.93 +33.69 +90.21 +92.24 +10.46 +92.6 +23.99 +92.15 +67.128 +22.23 +92.24 +33.243 +89.124 +92.24 +93.169a +24.66 30.37 +92.24 +13.115 +33.70 +33.69 +92.24 +53.93 +69.3 +25.252 +21348 31.85 +89.87 +69.3 +13.140 +92.23 +89.108 +92.11 +15.157 +89.131 +21358 92.24 +93.296 +89.92 +93.158a +89.92 +93.190b +92.24 +10.49 +93.158a +89.87 +15.81 +84.16 +92.24 +7.2 +92.24 +53.93 +89.87 +24.14 +14.79 +89.92 +25.138 +89.92 +25.139 +78.3 +89.87 +15.93 +33.69 +92.11 +92.15 +25.234 +89.92 +25.138 +92.24 +9.42 +69.3 +23.99 +89.125 +23.66 +89.87 +33.410 +92.11 +89.124 +92.11 +15.44 +59.23 +15.168 +92.24 +10.14 +92.24 +9.42 +89.92 +92.24 +10.16 +89.92 +92.24 +89.108 +92.11 +89.87 +15.93 +83.5 +85.1 +92.24 +9.42 +89.87 +18.6 +92.24 +8.30 +92.24 +9.42 +33.69 +92.11 +9.48 +17.8 +89.106 +89.106 +33.145 +92.24 +9.40 +92.6 +33.69 +17.9 +89.87 +67.53 +23.93 +92.24 +9.40 +89.87 +15.227 +89.23 +13.1 +67.167 +60.21 +89.87 +25.220 +67.53 +25.217 +78.2 +89.87 +33.323 +92.11 +78.3 +90.22 +92.23 +28.1 +92.29 +89.87 +33.69 +57.71 +92.11 +23.1 +89.87 +15.40 +84.10 +89.87 +15.81 +84.22 +92.24 +1.81 +92.11 +89.92 +15.156 +92.11 +92.24 +36.38 +92.11 +89.87 +13.107 +67.184 +68.1 +33.224 +83.13 +92.24 +7.20 +89.87 +21493 59.1 +24.52 +25.219 +33.69 +84.6 +92.29 +92.29 +89.92 +92.14 +92.24 +32.32 +92.24 +37.98 +92.29 +89.92 +92.24 +76.7 +92.31 +90.8 +92.24 +8.30 +92.11 +13.107 +69.11 +92.29 +13.4 +92.24 +45.9 +92.24 +10.42 +92.24 +93.253a 93.253d +89.92 +10.49 +93.158b +89.92 +93.201a +89.92 +93.173c +89.92 +93.341c +89.92 +69.11 +85.1 +92.24 +10.50 +92.11 +83.1 +89.112 +92.4 +89.92 +25.180 +89.26 +92.11 +89.87 +33.69 +92.11 +92.24 +93.169a +90.21 +69.3 +13.1 +53.79 +87.72 +89.131 +21559 83.13 +92.24 +1.81 +92.11 +89.92 +83.9 +92.24 +10.6 +92.11 +89.92 +90.6 +92.24 +10.8 +92.11 +89.92 +69.3 +74.5 +83.2 +90.45 +92.23 +76.7 +89.131 +21582 59.3 +23.147 +85.51 +92.24 +8.30 +23.139 +89.92 +21590 89.26 +92.24 +31.97 +92.11 +89.87 +15.23 +92.24 +1.92 +83.19 +33.224 +89.87 +33.308 +92.24 + +89.87 +68.1 +92.11 +15.66 +60.11 +60.11 +89.92 +37.98 +92.11 +76.12 +92.24 +12.39 +92.24 +53.39 +89.92 +33.327 +92.11 +90.22 +92.23 +15.203 +84.22 89.57 +15.19 +89.131 +21628 6.218 +21630 69.3 +5.1 +69.3 +6.145 +69.3 +83.13 +92.24 +6.178 +6.72 +89.125 +49.17 +6.183 +89.92 +69.3 +49.1 +60.11 +6.176 +89.87 +33.69 +92.11 +71.8 +83.5 +15.93 +84.22 +7.3 +83.2 +85.55 +67.119 +71.8 +15.40 +84.10 +89.92 +71.8 +92.27 +11.59 +69.3 +34.53 +92.7 +69.7 +31.56 +92.7 +15.40 +84.10 +16.8 +92.24 +2.15 +92.24 +83.52 +92.24 +8.49 +92.7 +89.57 +33.264 +92.11 +89.87 +15.40 +33.256 +90.22 +41.52 +89.92 +12.37 +59.1 +53.102 +89.92 +47.14 +6.202 +59.1 +23.147 +89.92 +23.139 +89.87 +33.212 +92.24 +37.67 +93.144b +89.23 +28.28 +13.48 +92.24 +33.265 +92.11 +21712 33.69 +90.21 +93.190a +92.24 +53.41 +23.94 +89.121 +23.121 +89.92 +21723 42.3 +92.24 +76.7 +90.6 +92.11 +89.124 +58.37 +33.69 +90.21 +93.142 +13.4 +89.124 +58.37 +33.69 +90.21 +53.79 +64.12 +92.22 +92.24 +53.79 +89.124 +33.212 +92.24 +93.144b +33.69 +92.27 +92.1 +20.80 +93.190a +92.29 +23.94 +89.23 +92.11 +92.24 +93.144b +15.66 +37.110 +92.24 +93.190a +89.87 +37.114 +92.11 +84.22 +7.24 +90.44 +93.145 +92.24 +10.54 +93.379d +92.24 +10.49 +92.11 +89.33 +92.11 +34.66 +89.23 +33.69 +92.24 +93.190a +92.24 +93.144b +90.21 +69.3 +71.32 +92.6 +21789 92.24 +10.54 +92.24 +10.49 +92.6 +21795 92.24 +93.145 +88.169 +92.11 +89.92 +25.1 +92.11 +20.61 +89.92 +69.3 +74.5 +89.23 +92.24 +93.144b +87.14 +92.24 +93.190a +28.1 +92.11 +9.24 +88.12 +89.92 +53.46 +89.92 +13.33 +92.11 +89.92 +31.56 +92.11 +59.1 78.3 +32.9 +89.92 +25.129 +92.11 +31.56 +21831 13.107 +67.186 +67.6 +21835 93.144b +92.24 +51.12 +92.11 +23.22 +90.45 +92.24 +87.41 +92.11 +89.92 +92.24 +55.15 +89.92 +92.24 +87.45 +92.24 +93.444a +89.87 +15.93 +92.24 +10.46 +21858 93.145 +89.87 +15.244 +25.90 +92.24 +93.144b +89.92 +92.24 +34.10 +21868 92.24 +37.67 +33.69 +92.24 +9.40 +33.163 +92.1 +71.8 +92.27 +25.1 +21879 57.71 +92.6 +89.87 +33.463 +92.11 +21885 71.8 +92.1 +33.163 +57.71 +92.6 +59.21 +60.62 +92.24 +1.82 +92.1 +89.87 +15.40 +33.69 +92.24 +10.16 +92.11 +92.14 +33.163 +89.87 +92.24 +33.69 +92.24 +8.10 +93.190a +92.24 +53.41 +89.87 +15.93 +67.53 +89.79 +68.79 +84.18 +92.24 +37.67 +33.163 +33.69 +25.1 +90.22 +67.113 +57.71 +92.1 +83.46 +6.134 +92.24 +8.10 +93.190a +92.24 +53.42 +89.87 +25.277 +13.48 +92.24 +37.67 +89.26 +92.24 +33.463 +89.92 +92.24 +23.21 +69.3 +25.1 +31.100 +92.11 +89.87 +67.53 +15.66 +20.70 33.196 +92.24 +37.67 +33.325 +15.166 +92.24 +8.10 +92.11 +89.87 +15.37 +20.80 +92.11 +83.13 +92.24 +7.24 +89.87 +15.166 +92.24 +8.10 +92.11 +83.46 +6.134 +89.87 +57.71 +92.11 +92.24 +9.40 +89.87 +92.24 +9.40 +57.71 +92.11 +92.24 +10.16 +92.11 +89.87 +33.212 +92.24 +36.38 +92.11 +15.81 +89.87 +15.203 +92.24 +8.7 +92.11 +89.87 +85.32 +92.11 +84.22 +7.75 +89.87 +15.123 +92.24 +53.74 +84.18 +92.24 +93.169a +89.87 +33.198 +92.11 +59.23 +59.7 +42.7 +89.92 +59.7 +33.224 +89.87 +33.69 +92.11 +84.24 +92.7 +92.37 +28.67 +28.67 +84.22 +1.86 +80.1 +89.87 +23.80 +59.13 +89.23 +13.1 +92.24 +15.81 +89.92 +92.24 +15.35 +59.1 +89.92 +69.8 +23.1 +67.4 +89.87 +15.37 +83.13 +92.24 +6.41 +84.16 +1.86 +80.1 +28.67 +28.67 +89.87 +24.1 +92.11 +15.52 +89.92 +27.61 +59.1 +89.87 +8.50 +84.3 +59.23 +92.24 +1.88 +15.133 +83.2 +89.92 +15.141 +92.11 +89.87 +15.40 +24.1 +59.11 +11.1 +89.87 +25.49 +90.57 +92.11 +89.33 +13.1 +64.12 +4.22 +69.3 +90.65 +44.4 +89.87 +68.1 +33.224 +92.11 +59.1 +89.87 +67.20 +67.77 +22097 13.48 +15.77 +92.11 +92.24 +36.38 +92.11 +33.69 +90.21 +1.86 +13.1 +92.24 +80.1 +89.92 +67.20 +67.77 +22113 15.43 +92.11 +89.59 +15.37 +84.22 +92.24 +83.19 +1.93 +89.92 +1.92 +57.188 +92.25 +92.14 +23.1 +89.124 +92.24 +33.184 +33.69 +92.11 +57.71 +92.11 +92.7 +23.1 +89.87 +33.69 +92.11 +15.37 +57.188 +6.75 +60.34 +5.8 +89.87 +57.71 +92.11 +23.1 +89.87 +92.24 +33.69 +92.11 +59.5 +5.8 +57.1 +15.35 +27.5 +89.87 +27.2 +33.69 +60.14 +89.92 +60.11 +4.59 +89.87 +33.325 +92.11 +22168 59.23 +11.5 +11.5 +83.46 +92.24 +79.34 +3.15 +89.87 +17.23 +11.6 +11.6 +89.90 +60.33 +89.92 +89.90 +60.28 +89.87 +18.1 +92.24 +60.14 +5.8 +89.92 +92.24 +60.11 +4.59 +24.10 +84.16 +92.24 +1.11 +33.356 +89.87 +19.38 +92.24 +5.8 +89.87 +57.71 +92.24 +36.38 +89.59 +57.116 +92.11 +89.87 +92.24 +60.11 +4.59 +57.89 +59.23 +89.87 +23.1 +59.23 +89.87 +23.15 +89.87 +15.203 +19.40 +60.21 +6.150 +59.36 +89.92 +63.20 +92.24 +4.59 +89.92 +13.4 +92.24 +23.1 +92.24 +5.8 +60.43 +9.24 +89.87 +67.53 +37.33 +92.24 +36.38 +92.11 +15.95 +84.22 +92.24 +6.41 +89.87 +15.142 +84.16 +92.24 +83.43 +84.18 +93.432 +67.139 +92.11 +15.43 +92.24 +11.1 +89.87 +33.23 +92.11 +15.37 +84.16 +92.24 +1.46 +33.178 +89.87 +67.197 +13.107 +85.1 +92.24 +6.41 +83.13 +83.10 +92.24 +1.70 +89.92 +92.11 +58.51 +83.46 +92.24 +1.60 +89.87 +24.1 +92.11 +38.13 +89.26 +92.24 +15.161 +89.23 +13.1 +92.24 +14.4 +82.11 +92.11 +67.35 +60.51 +67.196 +92.24 +67.192 +15.81 +84.18 +92.11 +15.227 +83.46 +92.24 +1.70 +89.92 +30.58 +15.28 +92.11 +89.124 +92.24 +24.1 +92.11 +83.46 +92.24 +1.70 +15.227 +31.29 +90.21 +12.42 +13.4 +89.87 +33.83 +89.23 +59.23 +92.11 +24.1 +89.92 +25.244 +89.124 +92.24 +67.53 +33.70 +90.60 +92.11 +89.92 +33.69 +92.11 +25.156 +92.1 +13.4 +69.3 +25.252 +89.87 +15.99 +84.18 +92.11 +84.22 +92.24 +6.41 +89.87 +68.42 +92.24 +14.4 +89.87 +78.1 +78.20 +59.51 78.20 +90.56 +92.25 +25.218 +89.23 +69.3 +32.5 +90.23 +92.24 +5.8 +89.125 +13.1 +27.51 +92.11 +92.24 +26.3 +89.87 +15.31 +84.20 +92.24 +1.60 +15.7 +84.16 +93.449a +89.87 +54.20 +89.87 +15.40 +92.11 +84.4 +92.24 +6.41 +67.53 +27.61 +92.11 +15.231 +63.1 +92.24 +1.79 +92.30 +89.87 +68.1 +83.46 +92.24 +6.107 +92.24 +23.148 +23.148 +15.190 +83.5 +24.52 +90.21 +85.1 +89.87 +71.8 +83.5 +15.93 +84.22 +1.92 +89.139 +84.22 +1.89 +89.139 +84.22 +1.93 +83.13 +92.24 +57.207 +85.32 +92.24 +23.144 +89.92 +33.168 +92.11 +90.22 +89.73 +92.24 +6.180 +92.24 +6.172 +92.11 +24.73 +89.87 +71.8 +59.7 +24.73 +92.11 +23.136 +89.87 +15.123 +84.18 +92.11 +92.24 +11.49 +89.92 +92.12 +92.24 +53.94 +15.81 +84.3 +93.480a +89.87 +24.1 +92.12 +92.24 +36.38 +92.11 +90.21 +53.39 +8.30 +89.106 +89.106 +47.13 +23.1 +92.24 +5.1 +89.23 +92.24 +11.49 +89.92 +59.23 +92.24 +93.172 +22486 8.35 +47.9 +92.24 +8.30 +69.3 +23.1 +13.34 +92.24 +33.239 +92.24 +53.77 +89.92 +84.3 +57.207 +22503 69.3 +23.1 +89.92 +58.37 +59.1 +13.4 +92.27 +27.13 +13.34 +53.31 +6.121 +89.92 +6.126 +89.92 +6.130 +89.87 +33.180 +92.11 +92.24 +11.49 +89.92 +92.24 +53.94 +22528 69.3 +41.11 +92.24 +36.38 +92.6 +89.8 +92.24 +33.239 +92.24 +53.77 +89.125 +53.39 +8.30 +23.1 +92.24 +5.1 +89.87 +92.24 +33.69 +92.11 +72.12 +33.459 +93.147 +90.24 +92.7 +92.24 +88.228 +64.12 +33.54 +90.21 +92.29 +92.24 +11.12 +92.24 +33.74 +92.1 +87.8 +89.124 +92.24 +26.3 +92.11 +83.31 +85.16 +89.122 +92.1 +89.94 +89.54 +53.53 +92.1 +33.224 +33.224 +33.330 +9.1 +31.63 +92.24 +33.330 +92.24 +12.1 +13.34 +92.24 +33.239 +92.24 +9.1 +89.87 +33.69 +92.11 +78.21 +76.24 +92.24 +33.330 +92.24 +12.1 +89.59 +92.24 +33.239 +92.7 +22605 89.23 +93.266 +33.69 +87.8 +92.24 +10.14 +92.6 +89.92 +92.24 +10.16 +92.6 +89.92 +92.24 +33.399 +10.14 +89.139 +10.16 +23.99 +23.102 +89.124 +92.7 +33.69 +89.67 +33.69 +9.1 +92.24 +10.14 +89.139 +92.24 +10.16 +53.22 +89.106 +89.106 +57.84 +71.8 +92.27 +90.16 +92.1 +35.2 +67.130 +13.140 +92.11 +92.23 +41.7 +92.24 +10.14 +89.139 +92.24 +10.16 +76.25 +92.24 +33.98 +92.24 +12.1 +92.24 +33.239 +92.7 +92.27 +33.237 +89.92 +64.7 +92.31 +59.1 +42.7 +89.87 +33.308 +67.55 +92.24 +11.1 +33.69 +92.11 +24.52 +92.1 +59.23 +89.92 +32.5 +92.23 +13.1 +84.15 +92.24 +9.1 +15.93 +84.22 +92.11 +92.27 +74.5 +53.33 +92.11 +89.125 +92.24 +84.4 +92.24 +9.1 +15.40 +13.4 +92.24 +53.33 +92.24 +9.1 +89.87 +22706 15.93 +84.22 +7.2 +89.122 +92.24 +11.1 +33.180 +92.11 +92.24 +36.38 +92.11 +92.24 +33.15 +89.87 +33.69 +92.11 +61.9 +89.93 +92.7 +32.49 +13.1 +69.11 +32.2 +90.21 +59.24 +92.24 +84.15 +15.93 +84.22 +92.24 +9.1 +69.3 +74.5 +92.11 +53.33 +89.33 +69.3 +15.93 +84.22 +92.11 +92.24 +26.3 +89.125 +84.22 +92.24 +8.67 +89.87 +84.22 +92.24 +7.72 +15.40 +79.49 +59.23 +92.24 +5.1 +89.87 +33.69 +90.21 +92.24 +84.4 +92.24 +9.1 +15.40 +92.30 +53.33 +92.24 +9.1 +89.23 +84.14 +84.4 +92.24 +26.3 +92.24 +9.1 +92.24 +30.10 +92.24 +88.106 +15.40 +88.271 +57.232 +20.82 +88.276 +88.144 +88.109 +88.154 +88.272 +57.108 88.165 +57.108 88.165 +33.400 +88.213 +32.53 +59.23 +92.29 +92.24 +88.110 +26.2 +15.40 +89.92 +53.33 +92.24 +9.1 +89.87 +84.10 +15.36 +15.37 +84.22 +92.24 +1.79 +93.602 +89.87 +15.93 +84.22 +7.3 +92.23 +27.2 +25.1 +91.12 +69.3 +74.5 +28.83 +89.125 +67.53 +33.212 +90.24 +92.11 +9.34 +92.27 +92.24 +10.47 +92.11 +22838 12.39 +53.39 +15.81 +17.22 +83.24 +92.24 +8.49 +92.11 +22847 92.24 +9.34 +13.4 +11.91 +93.591 +92.24 +10.1 +89.87 +33.161 +92.11 +90.22 +92.24 +12.37 +53.102 +84.4 +92.24 +10.46 +92.11 +89.87 +33.69 +92.11 +13.140 +60.46 +23.15 +92.24 +10.36 +89.23 +69.3 +13.1 +66.2 +18.1 +92.24 +5.8 +92.24 +10.36 +89.87 +92.24 +4.35 +15.215 +89.124 +92.24 +33.28 +22890 33.69 +92.11 +22893 12.9{N:001} 87.53 +22895 92.24 +4.35 +83.51 +92.24 +6.113 +23.1 +63.20 +92.24 +5.5 +92.24 +9.42 +89.87 +33.69 +92.11 +89.26 +92.29 +92.24 +33.98 +15.52 +15.40 +84.4 +92.24 +10.46 +92.6 +92.24 +12.37 +89.87 +15.37 +84.22 +92.24 +7.2 +92.11 +27.1 +92.24 +10.37 +85.34 +83.46 +92.24 +6.106 +89.92 +92.24 +12.37 +15.40 +89.87 +67.55 +15.40 +84.4 +92.24 +1.79 +93.602 +15.81 +84.29 +93.577 +84.16 +92.24 +1.70 +92.24 +93.444b +83.10 +83.10 +92.24 +1.79 +93.460 +89.87 +15.166 +92.11 +24.68 +89.92 +33.107 +89.87 +33.168 +92.11 +90.22 +85.51 +92.11 +92.24 +8.30 +89.87 +15.177 +92.11 +84.3 +92.24 +11.1 +28.67 +28.67 +85.34 +92.24 +8.34 +92.11 +84.22 +92.24 +8.24 +92.11 +89.87 +23.43 +24.73 +92.24 +8.21 +92.11 +89.87 +24.10 +84.16 +92.24 +1.5 +25.143 +89.87 +33.69 +92.11 +79.111 +89.106 +89.106 +79.110 +89.87 +24.69 +92.11 +92.24 +24.53 +89.92 +23014 18.18 +92.24 +23.156 +92.24 +8.21 +92.11 +89.87 +33.70 +72.13 +89.87 +33.323 +92.11 +90.22 +92.23 +33.69 +89.124 +78.52 +92.11 +33.323 +92.11 +89.126 +78.31 +33.207 +89.92 +78.34 +25.219 +33.69 +65.23 +59.23 +42.7 +89.102 +13.9 +92.24 +24.68 +24.58 +89.102 89.92 +33.106 +33.70 +67.136 +92.30 +92.24 +67.142 +67.55 +78.3 +11.1 +85.1 +89.92 +69.3 +57.1 +92.12 +23.1 +33.308 +92.24 +36.38 +33.69 +92.11 +25.49 +90.57 +92.24 +11.1 +89.33 +67.20 +67.186 +60.12 +85.59 +92.1 +89.92 +69.3 +57.1 +92.12 +23.1 +89.92 +89.67 +15.43 +92.11 +23.31 +84.16 +7.2 +92.11 +23.79 +83.47 +92.24 +15.19 +89.92 +92.12 +92.11 +23101 83.30 +23103 89.87 +33.184 +92.11 +92.24 +36.38 +92.11 +90.21 +84.6 +74.5 +92.12 +92.29 +83.1 +23.16 +5.8 +83.46 +1.86 +89.87 +33.180 +92.11 +59.5 +5.8 +57.1 +89.87 +92.24 +33.69 +60.16 +89.87 +33.327 +92.24 +11.1 +17.23 +83.46 +92.24 +1.39 +89.87 +18.1 +92.24 +60.16 +5.8 +33.349 +19.34 +89.87 +57.71 +92.24 +36.38 +92.11 +89.59 +57.116 +89.87 +57.116 +92.24 +11.1 +89.92 +57.1 +4.60 +59.3 +89.92 +33.356 +92.11 +33.69 +89.93 +92.29 +57.116 +89.87 +23.1 +89.87 +23.15 +89.87 +15.203 +59.53 +19.40 +60.16 +6.149 +23177 13.1 +78.42 +60.42 +89.87 +15.43 +92.11 +89.87 +67.53 +15.95 +84.22 +92.24 +6.41 +89.108 +92.24 +36.38 +92.11 +15.81 +84.22 +92.24 +1.79 +93.456 +89.87 +15.40 +92.24 +11.49 +89.87 +68.1 +33.440 +92.11 +33.167 57.59 +90.14 +92.11 +33.477 +84.3 +92.24 +1.11 +27.31 +92.11 +89.87 +25.144 +92.24 +26.9 +92.11 +33.69 +92.15 +92.24 +11.4 +92.29 +33.167 57.59 +33.477 +72.6 +33.69 +92.7 +23232 92.24 +11.4 +92.29 +33.477 +89.87 +15.48 +92.11 +67.55 +15.95 +15.37 +84.16 +92.24 +83.43 +89.92 +29.17 +57.55 +5.8 +89.92 +89.131 +23252 60.10 +5.8 +69.3 +57.1 +89.108 +92.25 +83.13 +92.24 +6.41 +89.87 +33.323 +92.11 +33.69 +30.45 +27.58 +23268 92.24 +88.237 +92.24 +11.49 +89.92 +92.24 +88.237 +93.144b +89.87 +33.158 +89.112 +92.26 +89.33 +5.8 +69.3 +57.1 +89.87 +27.2 +33.69 +92.11 +92.15 +30.10 +89.33 +5.8 +69.3 +57.1 +67.129 +32.2 +69.7 +32.5 +27.51 +90.65 +92.24 +26.3 +92.7 +8.23 +57.1 +69.11 +24.7 +89.92 +8.24 +57.1 +69.11 +24.52 +89.92 +69.11 +29.7 +23316 92.24 +60.14 +5.8 +19.34 +90.41 +92.24 +60.43 +59.5 +6.150 +19.40 +59.35 +15.203 +33.69 +92.11 +60.21 +23332 92.24 +60.16 +90.41 +92.24 +60.42 +59.5 +6.149 +59.36 +19.40 +15.203 +89.87 +33.69 +60.16 +89.87 +33.69 +92.11 +67.129 +32.5 +89.87 +15.7 +84.16 +93.432 +89.87 +15.166 +92.11 +24.38 +89.87 +33.168 +92.11 +90.22 +92.11 +24.73 +89.87 +18.2 +92.24 +8.30 +92.24 +24.38 +15.174 +92.11 +84.27 +92.24 +1.92 +89.87 +23.43 +84.22 +92.24 +8.23 +92.11 +85.51 +92.24 +8.30 +92.11 +33.180 +92.11 +89.65 +92.12 +24.7 +89.87 +24.10 24.42 +33.69 +24.7 +92.24 +9.1 +90.21 +64.12 +3.2 +15.227 +24.1 +67.44 +67.55 +85.51 +92.24 +8.30 +84.20 +92.24 +8.23 +92.11 +89.87 +24.35 +89.92 +13.65 +89.87 +24.9 +24.36 +59.23 +89.87 +15.66 +92.11 +84.16 +7.2 +92.11 +33.69 +69.8 +84.22 +92.24 +1.92 +15.93 +89.87 +15.40 +92.24 +93.169a +89.92 +92.24 +36.38 +92.11 +84.16 +92.24 +1.92 +93.492b +92.24 +93.492b +89.87 +83.47 +92.24 +15.19 +33.180 +92.24 +36.38 +92.11 +33.69 +92.11 +92.14 +92.1 +13.4 +33.69 +92.24 +9.1 +89.87 +92.24 +33.69 +92.11 +33.69 +90.21 +93.190a +92.24 +53.42 +89.92 +58.37 +93.142 +89.94 +58.37 +90.21 +92.22 +92.24 +53.79 +89.87 +92.11 +33.180 +92.11 +89.124 +92.7 +92.14 +92.1 +13.4 +33.69 +33.184 +92.24 +93.296 +33.69 +92.11 +92.6 +13.4 +92.24 +53.82 +89.87 +33.331 +92.11 +90.22 +92.23 +33.69 +90.24 +92.11 +89.87 +68.1 +33.224 +92.11 +90.21 +71.34 +92.24 +9.3 +92.24 +9.3 +59.1 +24.78 +89.92 +30.117 +90.1 +92.24 +53.77 +89.92 +92.24 +53.88 +89.92 +92.24 +53.94 +89.87 +20.61 +89.87 +67.48 +60.12 +67.186 +23.93 +89.92 +23537 92.24 +33.98 +33.70 +89.87 +92.24 +93.296 +15.180 +92.11 +68.1 +33.419 +92.11 +89.124 +92.24 +15.90 16.13 +89.87 +24.1 +92.24 +36.38 +92.11 +33.419 +93.296 +89.92 +33.69 +15.52 +83.40 +92.1 +12.34 93.330 +89.33 +69.3 +31.1 +92.24 +92.24 +12.1 +89.125 +92.24 +92.24 +9.1 +89.87 +33.308 +92.24 +11.1 +89.107 +92.24 +36.38 +92.11 +33.69 +92.11 +89.65 +92.12 +25.1 +36.35 +92.1 +23590 30.52 +92.25 +89.87 +24.83 +92.24 +6.27 +92.11 +89.87 +36.31 +92.1 +89.23 +71.8 +92.27 +25.1 +92.24 +23.88 +92.11 +21.18 21.27 +57.68 +92.11 +89.124 +71.8 +92.27 +23.114 +92.24 +23.88 +92.11 +89.31 +92.1 +89.92 +92.24 +33.217 +21.18 21.27 +92.11 +89.23 +92.14 +35.2 +9.1 +57.189 +92.24 +1.39 +63.1 +91.12 +57.69 +92.24 +23.88 +92.11 +89.23 +92.14 +57.71 +9.1 +57.143 +92.24 +23.88 +92.11 +89.23 +71.8 +92.27 +25.193 +92.1 +89.92 +92.24 +92.2 +33.98 +83.9 +92.24 +11.4 +92.29 +92.24 +31.101 +89.92 +88.294 +89.93 +92.24 +9.3 +92.24 +9.3 +25.193 +92.11 +23670 15.81 +13.8 +92.24 +14.49 +92.24 +12.12 +92.11 +89.108 +92.24 +12.28 +92.24 +88.24 +89.87 +33.69 +92.11 +72.6 +33.69 +92.7 +90.21 +85.1 +92.12 +92.24 +83.1 +85.8 +92.18 +69.3 +69.3 +90.78 +23.99 +67.119 +71.8 +24.1 +92.24 +37.64 +92.24 +12.1 +15.81 +89.84 +76.1 +89.87 +67.48 +67.186 +60.15 +15.168 +92.24 +93.169a +92.24 +93.296 +89.92 +92.24 +93.158a +89.92 +93.190b +89.87 +15.176 +92.11 +84.16 +1.46 +81.6 +28.67 +28.67 +58.51 +89.87 +58.16 +83.33 +92.11 +89.92 +92.24 +6.162 +92.11 +13.48 +14.47 +14.50 +78.1 +64.1 +48.7 +83.46 +92.24 +1.39 +69.3 +74.5 +78.4 +79.28 +89.87 +24.1 +92.11 +93.142 +89.107 +93.266 +89.92 +23761 33.157 +92.24 +93.169a +89.87 +33.28 +92.24 +93.296 +33.69 +92.24 +93.169a +33.246 +66.2 +13.1 +92.4 +83.1 +85.1 +23778 42.29 +60.12 +7.9 +92.6 +23783 89.92 +93.266 +23786 89.92 +93.142 +23789 89.23 +69.3 +28.1 +92.14 +33.28 +89.23 +25.256 +13.48 +89.87 +85.7 +1.34 +14.62 +92.11 +89.92 +13.107 +33.103 +90.16 +92.24 +1.34 +92.29 +13.4 +92.24 +12.15 +92.1 +92.24 +58.53 +36.14 +92.11 +89.87 +67.113 +24.11 +67.130 +92.23 +24.1 +89.125 +92.24 +93.169a +58.51 +89.108 +92.25 +89.87 +15.107 +92.11 +84.4 +92.24 +1.46 +33.323 +92.11 +90.22 +92.23 +92.27 +24.1 +33.201 +89.131 +23845 92.24 +9.3 +92.24 +9.3 +89.121 +23.121 +23.93 +89.87 +92.24 +13.115 +13.34 +90.58 +92.25 +33.157 +92.14 +13.4 +92.24 +89.121 +23.121 +23.93 +89.87 +33.180 +92.11 +33.69 +23870 33.69 +92.24 +53.94 +90.21 +71.34 +93.142 +15.81 +67.18 +89.87 +92.24 +33.69 +92.11 +91.6 +93.142 +15.81 +67.18 +13.65 +59.23 +91.12 +92.16 +33.54 +90.23 +92.24 +9.3 +92.24 +9.3 +90.22 +59.1 +24.78 +89.92 +88.133 +89.125 +33.69 +92.7 +90.21 +89.102 +93.142 +15.81 +89.102 +41.7 +92.11 +59.19 +25.1 +64.14 +33.54 +90.23 +92.11 +89.87 +15.81 +84.18 +92.24 +36.38 +24.1 +11.1 +78.3 +83.18 +92.11 +89.92 +53.94 +33.440 +89.7 +92.11 +89.87 +67.53 +59.23 +92.24 +11.1 +24.1 +92.11 +25.210 +89.87 +15.234 +33.20 +92.11 +89.87 +33.180 +92.11 +92.14 +33.440 +89.7 +92.11 +89.87 +33.184 +92.11 +92.22 +90.16 +92.24 +11.1 +33.243 +15.166 +92.24 +10.42 +92.1 +84.18 +92.6 +23966 12.37 +33.106 +89.92 +71.8 +83.5 +92.11 +39.48 +23.168 +92.11 +89.92 +14.28 +89.92 +23.41 +92.24 +8.20 +89.92 +23.172 +89.92 +33.69 +92.24 +36.38 +92.6 +90.22 +92.11 +53.102 +23992 69.3 +74.9 +89.87 +92.24 +33.28 +92.11 +33.69 +91.14 +11.4 +31.106 31.98 +67.119 +67.30 +89.112 +92.7 +85.1 +67.119 +67.30 +25.171 +92.7 +15.166 +92.11 +84.18 +92.1 +89.87 +15.166 +92.11 +84.18 +92.11 +89.87 +24.1 +92.11 +92.24 +12.37 +67.53 +23.167 +92.11 +89.87 +15.119 +84.20 +92.24 +1.39 +16.17 +14.28 +89.87 +33.180 +92.24 +10.14 +92.11 +59.17 +67.78 +13.4 +67.139 +92.29 +13.107 +92.11 +89.87 +92.24 +33.69 +67.131 +67.153 +89.92 +67.11 +89.102 +84.22 +2.3 +92.11 +15.215 +89.102 +84.22 +2.7 +89.59 +20.31 +92.11 +89.125 +89.65 +92.12 +74.5 +35.1 +92.4 +25.49 +90.57 +92.4 +89.87 +92.24 +93.169a +33.69 +92.11 +92.24 +89.65 +74.5 +59.23 +71.2 +92.24 +31.85 +67.53 +33.83 +92.24 +10.14 +92.24 +10.37 +33.69 +31.85 +35.1 +92.1 +92.24 +31.97 +89.87 +92.24 +93.169a +24.1 +90.21 +15.134 +11.1 +33.419 +92.24 +12.39 +92.24 +53.39 +33.69 +92.11 +92.24 +33.106 +89.92 +24.68 +12.37 +92.1 +33.325 +92.6 +15.40 +84.4 +92.11 +89.92 +67.130 +15.93 +84.22 +92.11 +89.87 +33.83 +89.92 +78.3 +23.167 +15.40 +89.87 +13.48 +64.12 +23.121 +89.52 +92.24 +59.1 +33.69 +90.21 +23.99 +89.124 +92.24 +93.169a +18.6 +92.24 +8.30 +92.11 +17.10 +92.11 +89.92 +15.36 +89.87 +15.93 +92.11 +84.22 +7.2 +92.24 +36.38 +92.11 +28.67 +28.67 +33.180 +92.11 +24168 92.4 +69.3 +74.5 +53.102 +92.11 +89.87 +33.69 +92.11 +92.29 +92.24 +58.23 +89.76 +92.23 +74.5 +15.40 +89.131 +24185 89.76 +33.178 +84.10 +15.40 +15.28 +84.29 +92.24 +93.444a +89.92 +69.3 +25.1 +90.22 +92.12 +27.2 +89.23 +33.224 +92.24 +36.38 +92.11 +89.92 +33.69 +92.11 +90.21 +92.24 +9.3 +92.24 +9.3 +37.111 37.12 +24214 37.12 +9.1 +89.87 +20.61 +92.11 +89.87 +20.61 +67.48 +60.12 +67.186 +23.93 +89.124 +92.24 +32.7 +92.24 +33.9 +89.92 +25.252 +92.11 +33.180 +89.87 +15.7 +84.22 +93.498 +89.87 +83.13 +92.24 +7.3 +85.6 +33.180 +92.11 +92.14 +83.47 +92.24 +15.19 +33.158 +89.124 +92.24 +33.117 +89.23 +89.112 +92.26 +33.446 +83.47 +92.24 +15.19 +92.14 +87.28 +89.87 +17.12 +33.307 +92.24 + +89.87 +33.69 +92.11 +89.65 +92.12 +25.1 +65.52 +13.1 +13.1 +59.23 +87.66 +89.92 +59.23 +35.20 +89.87 +18.1 +9.42 +85.40 +92.11 +84.22 +83.10 +92.11 +89.87 +34.63 +92.11 +33.69 +92.11 +71.8 +92.27 +92.22 +92.24 +92.31 +9.42 +34.53 +90.23 +92.24 +33.126 +92.1 +92.1 +34.53 +89.92 +71.8 +92.27 +92.1 +34.53 +69.3 +92.1 +34.53 +89.125 +92.24 +15.66 +92.1 +33.69 +92.11 +92.24 +93.190b +33.243 +24.1 +92.12 +89.76 +92.24 +33.126 +92.6 +53.102 +12.37 +24336 89.87 +13.146 +92.11 +89.33 +69.3 +15.156 +92.4 +89.124 +92.24 +93.169a +33.69 +69.3 +13.146 +92.11 +89.23 +92.23 +13.69 +92.27 +90.45 +76.7 +89.27 +92.24 +33.126 +92.1 +89.87 +74.5 +67.56 +33.399 +92.1 +89.23 +92.27 +69.3 +13.1 +90.31 +92.4 +90.36 +92.4 +13.1 +89.23 +71.8 +92.27 +23.35 +92.7 +6.121 +2.7 +89.26 +58.22 +89.33 +93.387 +58.67 +72.6 +33.69 +92.7 +90.21 +69.3 +69.3 +57.67 +92.24 +38.14 +92.11 +89.92 +71.8 +92.27 +88.304 +92.22 +92.24 +87.58 +92.29 +92.24 +31.102 +65.43 +13.1 +92.11 +89.126 +89.65 +85.54 +7.69 +4.32 +83.18 +92.24 +8.25 +92.11 +89.87 +15.215 +84.22 +92.24 +1.69 +89.92 +89.67 +24426 92.6 +92.24 +8.30 +92.6 +19.18 +92.11 +65.43 +13.1 +92.6 +23.176 +90.70 +89.48 +92.24 +23.88 +64.18 +92.24 +60.11 +8.30 +57.1 +15.37 +84.22 +92.24 +1.21 +84.22 +92.24 +2.3 +92.24 +14.71 +89.92 +89.67 +92.24 +8.49 +92.6 +88.304 +92.6 +19.18 +92.11 +65.43 +13.1 +92.6 +90.70 +13.62 +92.24 +23.88 +23.175 +64.18 +92.24 +60.11 +8.49 +57.1 +15.215 +13.62 +92.24 +1.21 +89.92 +89.67 +92.24 +8.23 +92.6 +88.304 +92.6 +15.220 +92.11 +65.43 +13.1 +92.6 +24.39 +90.70 +13.62 +92.24 +37.64 +92.24 +12.1 +64.18 +60.11 +8.23 +57.1 +15.215 +13.62 +92.24 +1.21 +83.5 +92.24 +4.57 +92.11 +69.3 +23.102 +89.92 +92.24 +2.3 +69.3 +14.70 +89.23 +59.23 +2.3 +5.28 +65.22 +92.24 +5.25 +89.124 +89.67 +92.24 +5.25 +5.27 +13.48 +89.76 +92.14 +92.11 +46.14 +57.1 +83.13 +92.25 +5.25 +89.92 +88.102 +89.119 +92.26 +89.87 +84.10 +15.36 +15.81 +84.22 +92.24 +1.79 +92.24 +93.486a +89.92 +83.43 +92.24 +93.485 +89.87 +15.123 +67.55 +11.1 +84.18 +92.11 +89.87 +64.12 +41.26 +67.55 +33.224 +92.11 +89.87 +15.77 +11.49 +33.180 +92.11 +89.65 +71.32 +10.53 +10.54 +34.78 +27.31 +92.11 +89.87 +92.24 +33.184 +33.69 +92.11 +92.14 +92.7 +33.329 +93.266 +89.87 +92.24 +33.69 +13.138 +93.266 +33.38 +33.41 +33.61 +89.87 +34.78 +89.87 +92.24 +93.169a +33.69 +92.11 +24605 92.24 +88.224 +92.7 +33.61 +92.7 +92.24 +33.330 +92.29 +89.124 +67.131 +67.65 +42.35 +79.102 +89.92 +79.103 +42.29 +92.11 +89.31 +92.29 +34.40 +9.24 +92.24 +10.14 +92.11 +89.92 +92.24 +10.16 +89.92 +13.4 +92.24 +60.11 +13.62 +8.4 +63.4 +89.52 +67.130 +13.4 +60.11 +89.125 +60.10 +8.4 +89.50 +92.27 +92.24 +12.1 +34.73 +9.1 +69.3 +34.78 +89.87 +83.13 +92.24 +7.3 +67.55 +92.24 +36.38 +90.24 +92.29 +33.180 +92.11 +89.87 +33.69 +92.11 +71.8 +92.27 +34.78 +92.24 +10.54 +92.11 +89.87 +34.66 +58.37 +88.276 +90.34 +92.11 +89.92 +89.67 +92.11 +34.78 +92.24 +10.53 +92.11 +34.66 +58.37 +88.276 +89.87 +15.172 +92.11 +9.42 +89.59 +92.11 +24.73 +89.124 +92.24 +36.38 +33.419 +92.11 +89.124 +24.1 +92.24 +93.169a +88.187 +89.87 +33.69 +92.11 +13.140 +92.24 +9.42 +15.81 +84.18 +92.1 +69.3 +13.146 +92.11 +89.23 +92.24 +92.31 +13.1 +92.24 +37.64 +92.24 +12.1 +72.6 +33.69 +92.7 +71.8 +92.27 +69.3 +31.51 +92.24 +37.64 +92.24 +12.1 +64.12 +9.42 +69.3 +69.3 +90.70 +13.62 +92.11 +89.87 +34.63 +92.11 +33.470 +85.32 +92.24 +8.30 +84.20 +92.11 +91.1 +15.40 +92.11 +84.22 +15.19 +92.22 +15.234 +89.87 +17.19 +92.11 +33.180 +92.11 +33.243 +88.1 +92.14 +42.7 +89.59 +23.88 +67.96 +57.131 +89.87 +92.24 +93.169a +33.69 +92.11 +92.15 +92.1 +33.131 +88.1 +92.23 +88.1 +89.131 +24787 63.4 +92.24 +12.1 +92.24 +33.330 +28.1 +69.3 +20.82 +69.3 +88.276 +69.3 +57.232 +69.3 +33.271 +69.3 +57.248 +87.8 +92.24 +10.14 +92.6 +89.92 +92.24 +10.16 +89.87 +92.24 +33.69 +92.11 +33.243 +92.29 +59.23 +36.19 +67.131 +67.154 +92.1 +89.87 +92.24 +93.169a +24.9 +92.11 +25.43 +92.11 +89.87 +33.69 +92.11 +60.10 +92.6 +13.21 +15.35 15.52 +59.7 +57.1 +57.186 +89.87 +57.71 +92.24 +57.53 +24843 57.1 +65.10 +83.13 +1.11 +89.87 +84.24 +36.31 +92.1 +89.124 +92.24 +25.222 25.286 +89.27 +92.24 +33.98 +15.37 +25.274 +89.23 +24861 57.1 +57.15 +78.3 +89.87 +24.11 +92.24 +93.169a +33.69 +92.24 +36.38 +92.11 +92.16 +22.32 +92.24 +92.24 +57.31 +57.1 +13.62 +92.24 +37.64 +92.24 +12.1 +90.70 +89.87 +92.24 +36.38 +25.209 +89.27 +92.24 +33.98 +92.11 +89.87 +92.24 +93.169a +67.55 +33.28 +33.69 +92.11 +9.46 +92.16 +22.32 +13.1 +13.62 +92.24 +37.64 +92.24 +12.1 +90.70 +22.39 +13.1 +4.30 +84.29 +92.24 +6.216 +92.24 +6.215 +15.32 +64.18 +57.26 +13.62 +92.24 +37.64 +92.24 +12.1 +90.70 +89.87 +92.24 +78.31 +25.219 +33.69 +90.58 +92.26 +91.12 +92.14 +74.5 +21.27 +24.9 +92.11 +92.24 +93.169a +33.69 +90.3 +9.1 +71.3 +89.125 +69.3 +90.3 +12.1 +89.23 +59.23 +71.2 +90.3 +92.24 +12.1 +68.1 +92.24 +93.296 +33.69 +92.11 +91.13 +92.4 +85.45 +59.23 +89.92 +36.31 +92.6 +33.69 +92.24 +93.169a +72.6 +33.69 +92.7 +92.23 +13.69 +92.27 +85.45 +7.3 +89.139 +10.49 +89.139 +10.50 +89.139 +10.16 +89.139 +10.14 +89.139 +10.36 +89.139 +1.95 +90.43 +92.1 +89.92 +90.43 +92.24 +33.217 +24998 57.125 +67.38 +67.136 +92.24 +67.145 +92.29 +60.78 +7.3 +89.92 +10.49 +89.92 +10.50 +89.92 +10.16 +89.92 +10.36 +89.92 +1.95 +89.79 +39.45 +89.87 +67.136 +92.24 +67.143 +92.24 +13.50 +23.88 +67.96 +89.124 +59.1 +87.45 +13.1 +87.66 +89.92 +92.24 +87.66 +87.45 +25036 85.1 +83.47 +92.24 +15.19 +15.101 +84.16 +93.480a +89.92 +25045 15.143 +92.11 +92.24 +93.169a +89.92 +25.209 +89.94 +92.24 +15.144 +25.252 +89.87 +15.180 +67.55 +92.24 + +68.1 +92.11 +33.69 +92.24 +71.36 +92.11 +13.111 +90.21 +91.13 +15.101 +84.16 +93.480a +89.87 +92.24 +9.3 +92.24 +9.3 +37.111 +92.24 +53.88 +89.92 +92.24 +53.94 +89.87 +56.31 +92.11 +23.99 +89.87 +37.111 +92.11 +92.24 +11.37 +89.87 +33.406 +92.11 +89.92 +23.43 +92.11 +89.92 +19.9 +92.11 +89.92 +20.61 +89.87 +67.48 +60.12 +67.186 +23.93 +89.87 +15.77 +92.11 +93.158a +89.92 +93.190b +92.24 +10.42 +93.137 +33.69 +92.11 +33.243 +25.1 +90.22 +71.8 +92.27 +33.163 +92.6 +41.7 +92.4 +89.87 +92.24 +33.69 +92.11 +25.1 +92.14 +92.1 +41.7 +92.7 +89.87 +92.24 +33.69 +92.11 +13.142 +92.4 +90.22 +25145 87.34 +92.6 +82.8 +89.92 +25150 87.35 +82.7 +17.17 +13.8 +92.24 +14.49 +92.6 +89.124 +92.24 +93.169a +33.69 +92.11 +69.3 +32.4 +92.14 +33.163 +74.5 +24.81 +92.24 +24.81 +92.27 +92.1 +24.81 +89.139 +92.24 +53.41 +92.27 +92.1 +24.82 +24.82 +89.87 +92.24 +33.69 +92.11 +74.5 +89.87 +92.24 +93.169a +33.69 +92.11 +92.24 +24.81 +92.27 +92.1 +24.81 +24.81 +89.92 +92.24 +53.41 +92.27 +92.1 +24.82 +24.82 +89.124 +92.24 +17.17 +87.34 +82.8 +92.1 +89.139 +87.35 +82.7 +69.3 +13.1 +92.2 +13.142 +89.125 +92.27 +77.3 +89.87 +33.212 +92.24 +60.19 +68.1 +88.187 +90.24 +93.158a +89.92 +93.190b +89.87 +33.308 +92.11 +92.24 +93.169a +33.69 +92.11 +28.1 +90.21 +92.24 +31.29 +37.54 +92.24 +11.37 +37.50 +92.11 +89.92 +92.24 +87.40 +92.11 +37.48 +92.11 +89.124 +69.3 +61.9 +13.1 +83.9 +92.7 +89.125 +71.8 +92.27 +25.1 +87.22 +13.48 +83.9 +92.7 +13.4 +92.7 +35.20 +89.92 +71.8 +92.27 +25.1 +83.9 +92.7 +13.1 +87.45 +13.1 +59.23 +87.76 +89.23 +25281 92.24 +9.3 +92.24 +9.3 +69.3 +15.81 +35.19 +89.125 +35.19 +89.92 +23.100 +92.24 +23.88 +92.11 +37.130 +90.37 +59.1 +89.87 +15.7 +84.22 +93.479 +89.87 +15.40 +92.11 +84.3 +93.479 +89.92 +92.24 +36.38 +92.11 +89.92 +11.1 +59.12 +92.24 +10.42 +93.360 +93.67 +24.38 +33.174 +17.12 +83.25 +92.24 +1.99 33.173 +89.87 +33.212 +90.21 +93.169a +92.24 +93.537 +85.1 +68.1 +33.83 +89.92 +33.69 +10.30 +93.91 +93.169a +88.76 +92.1 +89.87 +33.331 +92.11 +59.1 +90.22 +33.117 +89.124 +92.24 +59.11 +78.28 +33.83 +10.30 +93.91 +88.76 +92.1 +89.87 +68.42 +92.24 +93.169a +33.69 +33.307 +92.11 +89.87 +33.307 +92.24 +24.38 +33.69 +92.11 +25.156 +17.9 +33.307 +92.6 +89.87 +92.24 +49.19 +92.24 +6.172 +92.11 +15.241 +15.81 +84.18 +92.24 +93.169a +89.87 +33.28 +92.11 +92.24 +93.169a +33.69 +92.14 +92.6 +41.7 +25.1 +89.87 +92.24 +24.38 +33.69 +92.11 +33.247 +90.22 +24.42 +89.87 +92.24 +93.169a +33.69 +92.11 +15.52 +92.24 +31.85 +92.6 +23.136 +92.6 +89.87 +67.53 +24.42 +89.87 +15.144 +92.11 +83.47 +92.24 +15.19 +89.87 +25423 15.75 +84.16 +93.480a +84.16 +93.433 +89.92 +93.427a +83.24 +92.24 +1.46 +92.24 +3.9 93.616 +15.66 +60.11 +92.24 +36.38 +92.11 +89.92 +33.69 +92.11 +15.15 +84.16 +92.24 +1.92 +92.24 +83.42 +92.7 +89.87 +67.53 +15.93 +84.22 +92.11 +27.27 +18.13 +4.33 +83.46 +92.27 +92.23 +9.1 +67.129 +17.12 +18.18 +92.11 +89.87 +15.166 +89.92 +89.67 +92.12 +92.7 +33.69 +92.15 +42.7 +92.29 +33.69 +92.24 +12.9{N:001} +92.11 +57.40 +25482 89.87 +67.53 +92.11 +15.66 +67.55 +83.1 +89.87 +15.37 +89.87 +27.27 +4.33 +18.13 +83.24 +7.39 +83.20 +83.46 +92.24 +1.101 +89.87 +18.18 +92.11 +89.87 +92.12 +92.24 +83.2 +85.8 +33.69 +92.11 +92.14 +42.7 +18.18 +92.24 +4.33 +89.87 +92.24 +33.69 +92.11 +64.14 +33.69 +92.24 +93.169a +89.87 +13.140 +92.11 +89.87 +15.166 +92.24 +4.33 +84.18 +92.24 +93.169a +89.87 +15.218 +92.11 +92.24 +6.172 +92.11 +89.87 +17.12 +83.46 +92.11 +89.87 +59.1 +92.24 +6.172 +92.11 +16.22 +83.47 +92.24 +1.99 +89.94 +58.37 +3.52 +19.17 +90.16 +92.24 +1.95 +89.92 +92.24 +15.143 +89.92 +92.24 +15.144 +33.83 +33.364 +33.470 +92.24 +15.81 +89.5 +33.126 +12.9{N:001} +33.470 +92.24 +13.50 +37.64 +92.24 +10.20 +92.4 +93.91 +33.364 +83.13 +92.24 +1.13 +89.87 +15.93 +84.22 +93.480a +84.22 +92.24 +7.16 +89.87 +25594 67.20 +13.1 +92.24 +67.199 +24.11 +59.23 +15.40 +84.16 +93.427a +89.108 +92.24 + +89.87 +92.24 +67.208 +15.40 +92.11 +84.3 +93.427a +23.29 +89.87 +24.1 +25617 83.30 +3.5 +57.1 +3.51 +15.81 +71.19 +89.65 +92.12 +27.1 +83.47 +92.11 +89.87 +15.81 +84.17 +92.11 +92.23 +27.1 +89.131 +25636 3.51 +89.23 +92.24 +67.1 +69.3 +13.1 +3.36 +89.87 +33.28 +33.69 +92.11 +67.130 +67.95 +92.24 +67.95 +90.16 +92.6 +92.23 +3.33 +23.1 +89.92 +24.52 +92.24 +36.38 +92.11 +89.87 +15.7 +84.22 +93.480a +89.87 +15.93 +84.22 +92.24 +7.16 +68.1 +15.44 +92.24 +57.186 +89.92 +92.24 +57.188 +83.13 +92.24 +7.16 +89.92 +92.24 +6.113 +92.24 +57.205 +89.92 +92.24 +6.111 +92.24 +57.186 +92.24 +4.44 +16.18 +89.92 +69.3 +13.140 +90.22 +92.12 +15.196 +6.1 +84.29 +92.24 +7.16 +89.87 +33.224 +89.92 +33.69 +92.11 +69.11 +33.54 +90.21 +92.24 +7.2 +92.1 +7.2 +33.178 +33.131 +59.23 +92.24 +11.55 +89.124 +92.7 +13.9 +92.11 +1.57 +57.240 +89.87 +33.212 +92.24 +53.88 +89.92 +92.24 +53.94 +89.87 +27.34 +92.16 +92.11 +20.31 +89.23 +25.252 +92.11 +89.23 +59.23 +92.24 +11.1 +25.219 +90.23 +92.24 +33.224 33.236 +92.11 +89.87 +25752 67.76 +13.48 +15.40 +84.27 +92.24 +1.89 +89.87 +15.28 +67.187 +24.1 +92.24 +3.5 +79.81 +90.16 +3.47 +89.87 +29.9 +92.24 +93.296 +33.69 +92.11 +33.246 +91.13 +92.24 +3.5 +92.27 +33.471 +79.81 +89.87 +33.28 +92.24 +93.169a +33.69 +92.11 +25787 31.85 +12.1 +72.6 +33.69 +92.7 +90.21 +71.8 +92.27 +33.69 +92.24 +1.46 +92.29 +15.203 +89.92 +15.215 +84.22 +92.24 +1.69 +89.92 +69.3 +31.37 +83.13 +92.24 +26.3 +92.11 +89.125 +31.85 +90.21 +92.27 +33.70 +13.107 +13.104 +92.11 +25822 33.69 +92.7 +59.23 +59.7 +33.178 +89.92 +33.163 +31.85 +90.21 +57.125 +89.87 +13.104 +92.7 +89.92 +67.31 +17.1 +33.178 +40.8 +89.65 +92.12 +90.65 +90.31 +92.12 +89.59 +89.93 +92.24 +12.12 +92.7 +92.24 +83.13 +92.24 +1.11 +40.8 +92.7 +92.24 +88.297 +92.7 +89.87 +15.81 +67.55 +84.22 +93.480a +89.87 +83.13 +92.24 +7.16 +15.227 +92.11 +15.81 +84.18 +92.11 +92.24 +53.88 +89.92 +92.24 +53.94 +89.92 +92.24 +53.77 +89.87 +33.69 +92.11 +89.5 +58.30 +37.35 +92.29 +42.7 +89.139 +92.14 +92.6 +37.98 +92.24 +37.35 +92.29 +89.59 +92.29 +42.7 +89.87 +92.24 +93.169a +33.69 +92.11 +33.180 +92.7 +60.10 +33.98 +89.87 +33.184 +92.1 +89.87 +33.69 +92.7 +89.5 +58.30 +37.35 +92.29 +42.7 +92.24 +53.41 +92.24 +93.190a +90.16 +1.11 +13.1 +89.139 +90.16 +9.1 +33.184 +92.1 +89.87 +33.158 +89.112 +92.25 +33.69 +89.67 +33.69 +90.16 +1.11 +33.69 +89.50 +25944 69.3 +31.35 +92.11 +89.125 +33.69 +90.16 +9.1 +25.252 +92.24 +11.1 +89.23 +59.23 +31.1 +92.24 +93.190a +90.21 +70.2 +53.79 +13.4 +89.87 +33.184 +92.24 +93.169a +33.69 +69.3 +28.1 +89.87 +92.24 +93.169a +33.69 +92.11 +69.7 +92.1 +33.69 +92.7 +89.5 +58.30 +37.35 +92.29 +42.7 +89.87 +68.1 +92.11 +89.76 +33.15 +33.70 +3.28 +9.24 +43.5 +89.92 +85.39 +7.59 +89.92 +19.55 +7.67 +89.92 +45.1 +7.23 +89.87 +57.177 +92.11 +43.2 +89.87 +15.47 +89.87 +15.66 +84.18 +92.24 +43.2 +92.24 +67.1 +87.76 +89.59 +90.14 +92.24 +43.2 +57.125 +63.20 +92.24 +43.15 +92.24 +3.28 +89.87 +18.1 +92.11 +19.2 +89.87 +15.66 +57.42 +89.87 +67.55 +15.66 +84.18 +92.11 +58.37 +87.76 +92.30 +19.13 +89.92 +88.127 +89.87 +58.37 +15.66 +92.30 +20.61 +89.92 +59.1 +58.37 +89.104 +92.27 +19.2 +89.104 +92.27 +20.61 +59.75 +57.1 +60.10 +10.42 +25.45 +15.66 +92.11 +61.13 +84.18 +92.11 +33.69 +90.21 +87.11 +92.24 +10.42 +92.1 +89.124 +92.30 +92.24 +43.2 +90.58 +92.25 +33.69 +90.21 +92.29 +13.4 +92.24 +57.139 +84.24 +20.61 +92.11 +89.87 +92.4 +13.1 +92.24 +57.140 +89.87 +18.1 +20.61 +92.11 +89.87 +15.220 +92.11 +84.27 +92.24 +3.28 +92.14 +42.7 +92.24 +57.12 +92.24 +3.28 +15.7 +89.87 +20.31 +92.24 +43.2 +89.87 +57.71 +92.24 +3.28 +58.37 +69.8 +92.24 +33.53 +92.29 +33.68 + +92.27 +30.117 +92.24 +45.1 +92.29 +13.48 +13.62 +7.44 +79.107 +90.14 +12.9{N:001} +13.107 +92.29 +89.92 +13.1 +25.215 +26143 24.16 +92.4 +89.87 +68.60 +92.11 +37.110 +26150 25.252 +92.24 +11.1 +89.23 +32.16 +90.21 +90.25 90.33 +92.11 +92.24 +33.15 +33.69 +89.87 +15.48 +92.11 +15.37 +26166 15.66 +84.18 +92.11 +92.12 +92.24 +11.49 +89.92 +92.24 +11.87 +89.59 +92.11 +27.30 +33.98 +89.87 +15.81 +33.69 +92.11 +33.243 +28.1 +90.21 +88.39 +13.1 +89.92 +69.3 +30.39 +92.6 +90.24 +92.23 +89.23 +69.3 +30.120 +26198 30.120 +9.1 +89.125 +26202 70.4 +92.24 +41.16 +92.24 +12.1 +33.224 +71.32 +57.152 +57.180 +37.74 93.208 +89.139 +69.3 +57.152 +89.139 +69.3 +57.152 +89.124 +92.24 +28.1 +92.11 +92.24 +88.227 +33.69 +92.11 +92.15 +92.1 +27.31 +15.166 +92.1 +6.75 +89.59 +24.1 +89.87 +92.24 +15.166 +89.87 +33.69 +92.11 +92.14 +92.24 +58.35 +92.29 +89.92 +92.24 +33.46 +89.87 +92.24 +33.69 +92.11 +37.74 93.208 +89.87 +92.24 +93.169a +33.69 +92.11 +92.24 +37.74 93.208 +57.153 +37.74 93.208 +89.92 +92.24 +92.24 +12.1 +92.24 +12.1 +89.87 +25.214 +89.27 +92.11 +89.87 +15.81 +84.18 +92.11 +11.48 +26277 33.69 +23.93 +69.3 +13.69 +89.87 +33.180 +92.11 +33.69 +33.243 +93.266 +33.61 +92.4 +90.21 +89.67 +92.12 +10.49 +23.99 +89.92 +85.65 +10.54 +26298 69.3 +15.48 +10.36 +89.59 90.22 +57.55 +92.24 +10.49 +92.11 +92.24 +10.54 +89.87 +23.59 +10.29 +92.24 +10.49 +92.11 +60.16 +10.49 +13.69 +91.1 +92.24 +60.46 +57.55 +10.54 +89.87 +23.99 +69.3 +15.48 +10.29 +89.87 +92.24 +60.49 +57.55 +92.11 +89.87 +23.99 +69.3 +85.65 +10.29 +89.87 +92.24 +60.50 +64.16 +89.87 +92.24 +60.16 +69.3 +15.48 +10.29 +61.13 +59.23 +89.93 +92.24 +10.54 +23.99 +67.33 +92.24 +23.93 +26357 23.93 +92.14 +92.11 +10.54 +13.4 +89.23 +92.24 +60.16 +57.1 +92.11 +10.54 +33.69 +92.11 +92.24 +93.169a +69.11 +26375 31.67 +69.3 +32.4 +92.24 +33.54 +69.7 +92.24 +76.1 +92.24 +12.1 +89.23 +26387 89.121 +23.121 +23.93 +69.9 +34.66 +69.9 +34.72 +89.125 +13.1 +64.12 +12.28 +83.13 +92.24 +1.11 +26402 89.6 +92.24 +23.121 +90.21 +23.94 +69.11 +33.68 +83.13 +92.24 +33.52 +93.266 +83.23 +92.24 +3.16 +92.16 +33.69 +92.11 +92.24 +12.1 +33.69 +92.1 +92.24 +12.1 +93.7 +89.92 +12.1 +93.180 +89.92 +12.1 +93.157a +69.3 +13.4 +12.1 +23.121 +89.125 +23.88 +59.11 +31.67 +89.87 +15.77 +92.22 +92.24 +53.94 +24.52 +92.11 +33.440 +26449 90.21 +72.12 +33.184 +92.11 +33.180 +92.11 +92.36 +13.4 +33.330 +65.52 +59.23 +33.184 +92.24 +93.169a +90.21 +65.52 +13.4 +24.52 31.56 +93.182b +12.9{N:001} +92.24 +12.1 +92.4 +12.9{N:001} +63.4 +13.4 +89.92 +25.43 +12.9{N:001} +92.24 +12.1 +92.6 +90.16 +63.1 +92.24 +26.3 +92.6 +89.92 +90.16 +63.1 +92.24 +26.4 +92.6 +89.92 +90.16 +63.1 +92.24 +26.14 +92.6 +89.92 +90.16 +63.1 +92.24 +74.8 +92.6 +60.49 +92.29 +25.43 +92.24 +11.89 +92.6 +64.12 +92.10 +87.28 +92.29 +58.37 +33.330 +69.3 +13.1 +89.87 +33.69 +92.11 +92.24 +53.94 +65.23 72.12 +33.243 +26526 70.4 +33.69 +90.21 +63.4 +13.69 +89.92 +69.3 +13.69 +58.37 +89.130 +92.11 +89.92 +92.24 +25.43 +92.11 +90.16 +63.1 +92.24 +26.3 +89.92 +90.16 +63.1 +92.24 +32.26 +89.92 +90.16 +63.1 +92.24 +74.8 +89.92 +92.24 +25.43 +92.24 +11.89 +64.12 +92.25 +78.31 +13.1 +59.23 +92.24 +53.24 +89.92 +53.20 +89.87 +92.24 +93.169a +24.1 +92.11 +90.21 +32.29 +33.28 +33.69 +92.11 +69.3 +83.30 +13.1 +84.3 +92.24 +37.64 +92.24 +12.1 +89.87 +92.23 +67.130 +25.161 +92.11 +33.180 +89.87 +33.28 +92.24 +93.169a +33.69 +33.224 +83.13 +92.24 +7.16 +92.16 +33.69 +92.24 +53.94 +90.21 +92.24 +53.82 +10.30 +93.91 +13.4 +92.37 +93.91 +33.69 +90.6 +92.24 +12.18 +92.24 +88.24 +33.69 +12.9{N:001} +92.24 +12.9{N:001} +92.1 +17.12 +87.34 +82.8 +92.1 +67.119 +71.8 +85.32 +92.24 +39.11 +92.6 +37.8 +92.24 +37.8 +92.6 +92.37 +93.91 +33.131 +92.11 +12.9{N:001} +89.92 +89.86 +92.11 +10.30 +13.4 +89.92 +92.24 +78.3 +11.1 +24.52 +92.11 +25.129 +89.92 +67.136 +92.24 +33.224 +92.11 +33.69 +27.58 +26664 92.24 +53.94 +92.24 +25.102 +13.8 +6.174 +15.227 +89.92 +33.20 +83.13 +92.24 +57.207 +89.92 +87.18 +83.13 +92.24 +7.20 +89.92 +87.18 +83.23 +92.24 +23.22 +92.24 +57.247 +92.24 +57.21 +92.24 +10.61 +89.92 +88.230 +67.89 +33.178 +92.29 +90.63 +78.31 +56.30 +89.87 +17.12 +83.42 +92.24 +6.141 +24.14 +92.16 +92.24 +11.1 +85.34 +6.72 +84.22 +92.24 +6.141 +89.92 +59.1 +57.26 +85.34 +59.11 +89.87 +15.81 +92.22 +10.61 +57.53 +85.34 +6.79 +60.11 +89.106 +89.106 +6.78 +89.87 +33.308 +92.24 +36.38 +92.11 +33.69 +92.11 +72.6 +33.69 +92.7 +90.21 +92.24 +10.61 +92.29 +92.24 +57.53 +78.28 +85.34 +59.23 +92.24 +85.34 +84.22 +92.24 +6.141 +89.23 +59.23 +90.16 +92.24 +59.52 +92.11 +85.34 +89.124 +92.29 +90.16 +92.24 +57.37 +92.11 +85.34 +59.23 +59.7 +57.1 +63.1 +92.24 +57.18 +92.11 +89.87 +15.40 +92.11 +84.4 +92.24 +7.16 +33.69 +92.11 +92.22 +92.24 +36.38 +92.11 +33.243 +91.13 +58.30 + +89.92 +58.30 +7.1 +89.87 +92.24 +93.169a +33.69 +92.11 +24.7 +92.29 +92.24 +79.123 +7.1 +69.3 +69.3 +85.62 +83.46 + + +92.27 +69.3 +69.3 +20.54 +89.87 +17.12 +92.11 +83.47 +92.24 +1.46 +92.24 +3.9 93.616 +83.42 +92.24 +7.16 +33.180 +92.11 +28.67 +28.67 +93.296 +89.92 +93.158a +89.92 +93.190b +89.92 +93.25 +33.69 +92.4 +67.30 +92.29 +13.104 +89.92 +92.14 +92.24 +33.477 +26846 67.62 +92.29 +59.23 +68.22 +89.87 +92.24 +93.169a +68.1 +33.69 +92.11 +27.58 +89.62 +92.12 +92.7 +31.8 +59.1 +15.81 +90.23 +92.24 +33.126 +92.1 +33.69 +90.21 +92.1 +13.4 +89.92 +59.1 +31.8 +89.94 +26876 33.212 +55.5 +89.92 +33.213 +55.5 +69.3 +25.262 +71.34 +13.107 +89.125 +67.129 +92.24 +67.66 +89.23 +55.2 +11.55 +90.34 +11.55 +89.92 +1.82 +90.34 +1.82 +13.104 +14.87 +89.90 +80.1 +13.104 +23.33 39.42 +68.1 +24.87 +92.29 +89.124 +27.58 +92.7 +92.25 +37.111 +92.7 +84.16 +11.79 +89.92 +83.13 +7.20 +19.2 +89.92 +83.35 +37.59 +89.92 +37.67 +17.1 +90.43 +92.1 +89.57 +33.262 +92.11 +89.92 +84.16 +59.23 +92.24 +11.55 +60.46 +33.256 +92.24 +33.217 +71.34 +89.92 +67.31 +15.165 +92.7 +37.111 +69.3 +25.227 +92.14 +33.70 +89.125 +71.8 +92.27 +13.142 +92.7 +67.33 +92.30 +92.24 +67.1 +92.29 +33.70 +89.23 +69.3 +13.4 +92.7 +92.24 +33.70 +89.125 +92.24 +12.18 +92.24 +88.24 +89.92 +37.111 +10.49 +10.49 +89.57 +23.99 +89.92 +10.14 +10.36 +89.92 +39.34 +10.36 +90.34 +10.18 +89.92 +20.65 +92.11 +89.92 +26990 88.198 +90.1 +59.23 +90.44 +92.24 +33.126 +92.1 +89.124 +92.24 +25.175 +67.119 +67.66 +92.29 +21.18 21.27 +89.124 +27006 27.5 +92.24 +53.38 +92.24 +53.38 +85.8 +83.5 +69.3 +71.21 +92.24 +33.68 +30.3 32.2 +67.47 +92.24 +83.13 +92.24 +93.486a +15.61 +84.22 +92.24 +1.46 +92.24 +83.46 +92.24 +7.51 +69.3 +15.107 +69.7 +15.93 +92.12 +15.203 +84.4 +92.24 +7.3 +92.11 +89.92 +92.24 +83.13 +92.24 +1.95 +69.3 +15.90 +84.16 +92.24 +83.40 +15.203 +92.24 +6.172 +92.11 +89.124 +22.9 +92.24 +23.50 +23.50 +23.50 +89.92 +92.24 +23.8 +67.136 +92.30 +92.24 +67.142 +89.124 +33.178 +90.22 +69.3 +13.107 +67.165 +89.23 +13.104 +92.24 +67.142 +92.30 +22.2 +64.1 +69.3 +13.107 +64.2 +67.131 +67.65 +42.35 +92.27 +42.35 +92.24 +12.1 +67.119 +92.24 +67.38 +89.92 +69.3 +69.3 +13.107 +89.92 +89.131 +27101 59.71 +12.9{N:001} +92.24 +67.142 +71.14 +69.3 +21.18 +59.23 +9.11 +89.125 +90.44 +92.24 +30.93 +92.27 +30.92 +59.71 +92.24 +67.142 +89.87 +89.67 +67.47 +92.12 +92.7 +33.69 +91.13 +83.1 +92.24 +53.82 +91.13 +83.2 +69.3 +31.35 +27134 13.83 +53.84 +89.92 +53.81 +89.87 +27140 33.477 +89.92 +33.480 +89.60 +92.24 +31.11 +89.65 +71.2 +92.24 +30.93 +89.124 +92.7 +27.58 +33.281 +92.7 +59.23 +89.125 +67.136 +92.30 +92.24 +67.142 +67.48 +92.24 +22.2 +92.30 +92.24 +1.28 +14.55 +89.92 +92.24 +1.29 +69.3 +13.128 +92.24 +14.36 +92.11 +89.92 +92.24 +1.30 +27180 15.118 +84.4 +92.24 +1.5 +89.92 +92.24 +12.44 +92.24 +83.13 +92.24 +1.5 +16.7 +89.87 +67.47 +24.1 +92.24 +9.3 +92.24 +9.3 +15.81 +89.80 +1.34 +89.79 +76.1 +59.11 +89.92 +76.13 +89.87 +67.47 +15.66 +92.24 +12.28 +89.87 +15.126 +92.24 +30.93 +92.11 +90.16 +92.24 +60.13 +14.4 +84.3 +80.7 +1.39 +84.19 +80.7 +1.5 +27228 90.11 +92.24 +3.5 +27.12 +92.24 +33.15 +67.31 +67.20 +92.24 +3.49 +92.11 +79.101 +13.48 +89.87 +23.195 +92.24 +3.51 +28.1 32.16 +90.21 +67.61 +92.24 +67.163 +13.1 +61.9 +89.93 +92.7 +27255 24.1 +92.29 +13.107 +28.1 32.16 +90.21 +67.61 +13.1 +67.58 +67.58 7.49 +72.6 +33.69 +92.7 +90.21 +69.5 +69.5 +13.93 67.85 +92.24 +10.4 11.4 +92.29 +67.119 +27276 92.29 +59.23 +13.107 +92.24 +1.3 +27282 92.24 +1.3 +13.93 +89.124 +92.24 +33.98 +92.1 +69.5 +13.93 +89.124 +89.6 +92.24 + +92.30 +89.139 +92.24 +67.199 +92.23 +28.1 +69.8 +92.24 +12.28 +83.13 +1.11 +69.8 +92.24 +12.15 +89.131 +27311 92.24 +12.12 +27.58 +27.57 +89.23 +69.3 +28.1 +67.30 +92.24 +67.1 +13.104 +64.12 +9.24 +85.22 +85.45 +92.24 +7.3 +92.11 +89.92 +37.98 +92.24 +87.76 +92.11 +92.24 +37.35 +59.27 +92.24 +42.42 +92.11 +89.92 +92.24 +46.8 +33.329 +90.22 +27.56 +89.50 +27.56 +89.23 +69.3 +28.1 +67.30 +92.24 +57.12 +92.24 +7.3 +15.81 +89.140 +67.197 +89.140 +67.75 +89.140 +67.198 +89.140 +67.187 +89.62 +15.81 +67.113 +27.27 +92.7 +23.66 +89.94 +92.27 +92.7 +33.69 +59.23 +33.69 +27.56 +27379 13.104 +92.24 +51.6 +89.92 +92.24 +5.13 +67.48 +60.11 +67.178 +89.92 +13.19 +92.24 +53.88 +89.92 +92.24 +53.94 +92.16 +92.11 +89.84 +88.154 +37.110 +20.61 +89.23 +33.69 +69.3 +67.136 +92.24 +51.2 +27409 13.104 +39.42 +92.24 +87.64 +89.87 +85.1 +92.11 +83.13 +93.427a +83.13 +92.24 +7.3 +93.341h +92.24 +23.162 +17.23 +92.11 +15.81 +9.34 +57.1 +6.131 +6.205 +6.210 +79.97 +65.3 +19.39 +92.24 +6.131 +47.5 +92.11 +92.24 +8.10 +27442 92.12 +27444 88.187 +89.112 +92.25 +27449 92.24 +65.14 +92.29 +92.24 +6.205 +13.107 +89.23 +74.5 +92.29 +92.24 +6.205 +57.186 +78.30 +6.75 +60.35 +89.87 +57.71 +92.24 +57.53 +89.92 +33.421 +92.11 +89.124 +92.24 +93.169a +33.69 +13.140 +92.11 +92.15 +92.11 +22.7 +90.91 +88.4 +42.11 +90.47 +90.56 +92.1 +89.23 +67.88 +92.24 +57.53 +27491 89.108 +92.25 +89.92 +67.31 +25.1 +74.5 +92.11 +88.6 +42.7 +89.124 +92.1 +69.3 +67.88 +27505 92.27 +57.1 +42.7 +90.49 +6.206 +92.24 +8.1 +92.1 +89.57 +92.24 +52.6 +89.94 +72.6 +33.69 +92.7 +71.8 +83.5 +33.256 +92.24 +33.217 +83.13 +63.1 +92.24 +9.23 +89.93 +92.27 +42.7 +92.29 +33.70 +89.57 +29.12 +92.11 +89.87 +93.173a +93.181 +92.24 +60.10 +92.24 + +15.37 +84.18 +92.24 +53.88 +89.59 +92.11 +37.111 +92.11 +89.87 +92.24 +33.212 +25.125 +89.87 +33.286 +92.11 +6.73 +57.152 +89.87 +13.19 +92.16 +92.11 +67.6 +37.111 +89.87 +92.24 +60.46 +67.178 +92.24 +5.13 +27574 92.24 +4.27 +53.19 +33.69 +92.11 +92.24 +36.38 +92.11 +25.1 +83.6 +15.37 +77.3 +89.59 +23.1 +92.24 +51.6 +89.87 +15.66 +60.11 +92.24 +36.38 +92.11 +89.92 +33.69 +92.11 +15.15 +84.22 +92.24 +1.89 +89.87 +15.78 +92.7 +9.24 +6.128 +2.7 +15.188 +15.144 +92.11 +89.87 +71.8 +83.5 +15.93 +33.69 +92.24 +57.14 +90.21 +92.24 +33.243 +33.69 +83.6 +85.1 +92.24 +7.30 +92.1 +83.5 +92.24 +51.7 +89.108 +92.24 +36.38 +92.1 +23.1 +89.87 +92.11 +92.7 +28.47 +7.27 +79.123 +46.9 +77.2 +89.87 +83.2 +77.3 +92.4 +89.87 +15.40 +92.24 +36.38 +89.87 +15.7 +84.22 +92.24 +1.89 +89.87 +27.27 +64.14 +33.69 +92.11 +89.87 +77.3 +92.24 +51.7 +89.87 +67.197 +13.107 +15.7 +89.108 +92.24 + +89.92 +92.11 +17.23 +89.92 +23.1 +92.24 +93.169a +33.69 +72.6 +33.69 +92.7 +90.21 +37.111 +92.1 +60.10 +63.20 +92.7 +92.24 +23.1 +89.108 +92.1 +68.1 +25.274 +89.87 +33.69 +92.11 +60.10 +89.90 +60.10 +69.16 +92.1 +89.87 +92.24 +33.69 +92.11 +60.10 +92.24 + +92.24 +47.11 +89.108 +92.1 +84.22 +92.24 +6.136 +89.33 +89.136 +92.24 +9.3 +92.24 +9.3 +23.101 +64.14 +33.54 +90.24 +92.11 +89.136 +22.9 +92.24 +9.24 +92.30 +90.4 +92.27 +92.24 +9.3 +92.24 +9.3 +37.111 +65.43 +92.11 +89.65 +69.3 +23.52 +92.24 +9.24 +92.30 +89.87 +23.1 +92.11 +18.1 +5.8 +33.356 +19.34 +89.87 +57.71 +92.11 +89.87 +33.69 +18.1 +92.29 +13.4 +92.24 +8.1 +92.1 +89.87 +18.1 +6.121 +33.349 +57.71 +92.11 +89.87 +23.34 +84.4 +92.11 +59.23 +89.87 +33.69 +92.11 +92.29 +13.4 +92.24 +23.112 +92.1 +92.24 +34.44 +92.24 +14.18 23.112 +90.36 +59.1 +72.6 +33.69 +92.7 +90.21 +67.130 +69.3 +69.3 +23.34 +90.16 +92.24 +13.49 +92.24 +3.27 +67.119 +92.24 + +92.30 +27810 92.11 +23.34 +67.115 +83.13 +92.24 +37.64 +92.24 +12.1 +89.87 +33.113 +15.40 +84.16 +92.24 +1.46 +92.24 +3.9 93.616 +89.87 +33.69 +92.11 +92.24 +93.169a +90.21 +59.23 +31.77 +89.33 +33.54 +20.73 +92.24 +44.4 +89.87 +92.24 +4.22 +15.136 +89.125 +67.48 +92.24 +23.94 +92.1 +15.142 +92.7 +84.16 +92.24 +93.444a +89.124 +92.24 +93.296 +33.69 +92.11 +89.65 +27860 59.23 +31.77 +91.11 +69.3 +92.1 +89.87 +33.69 +92.11 +92.24 +93.169a +72.6 +33.69 +92.6 +90.21 +92.6 +67.205 +92.29 +92.24 +67.192 +67.17 +27881 60.69 +4.45 +14.76 +60.71 +92.1 +33.277 +89.124 +92.24 +78.31 +33.70 +89.67 +71.34 +92.1 +23.118 +92.6 +69.3 +69.3 +92.6 +33.277 +89.87 +64.16 +89.93 +59.23 +33.69 +89.87 +15.81 +84.22 +1.95 +92.27 +92.24 +33.126 +93.448 +89.87 +33.69 +92.24 +36.38 +92.11 +17.12 +83.1 +67.139 +33.178 +89.87 +15.168 +92.24 +93.296 +89.92 +92.24 +93.158a +89.92 +92.24 +93.190b +89.108 +92.11 +89.87 +68.1 +25.210 +89.92 +25.247 +89.87 +33.69 +92.11 +25.277 +13.1 +92.24 +26.4 +92.1 +78.51 +23.99 +85.55 +83.1 +89.92 +27.56 +89.87 +15.16 +81.13 +17.22 +83.46 +92.24 +1.39 +89.92 +33.178 +90.22 +89.65 +71.2 +13.1 +13.93 +84.3 +92.11 +92.24 +67.1 +89.92 +33.69 +12.12 +92.24 +12.12 +59.23 +71.2 +92.6 +90.97 +92.24 +90.97 +92.29 +27984 92.1 +89.125 +69.3 +92.14 +92.1 +25.1 +89.125 +92.14 +92.6 +89.87 +15.81 +89.87 +27.27 +92.11 +23.66 +89.87 +33.69 +92.24 +93.296 +93.341a +23.66 +69.11 +74.9 +60.10 +67.199 +23.72 +23.72 +89.92 +33.178 +89.59 90.22 +69.3 +13.117 +13.62 +88.308 +89.136 +92.24 +26.9 +25.69 +89.136 +92.24 +26.7 +74.25 +89.87 +67.55 +15.37 +33.178 +92.24 +58.31 +33.98 +33.69 +89.87 +67.55 +15.81 +27.27 +92.11 +23.66 +89.23 +28042 23.69 +92.11 +92.24 +23.69 +89.92 +69.3 +28.1 +92.14 +33.28 +92.11 +89.87 +15.81 +92.24 +60.50 +89.87 +33.69 +92.11 +23.66 +92.24 +67.134 +89.92 +23.80 +59.47 85.16 +13.117 +92.24 +67.1 +91.13 +37.12 +92.24 +9.3 +92.24 +9.3 +28075 92.24 +37.12 +92.24 +88.294 +17.9 +15.34 +91.13 +92.24 +37.111 +92.1 +15.75 +89.87 +67.53 +67.128 +92.11 +33.70 +15.86 +28093 93.173a +92.22 +92.24 + +89.92 +89.108 +92.11 +11.1 +89.109 +6.33 +89.92 +6.31 +90.14 +92.24 +53.88 +89.92 +92.24 +53.94 +89.92 +92.24 +53.77 +28115 90.51 +92.24 +37.111 +92.11 +33.476 +92.11 +33.69 +71.8 +92.27 +34.62 +92.11 +13.4 +37.110 +92.11 +89.87 +15.177 +21.10 +89.87 +15.81 +67.53 +15.77 +92.11 +33.69 +33.246 +89.87 +34.62 +92.11 +89.87 +92.24 +37.110 +92.24 +37.110 +92.11 +89.92 +37.110 +92.11 +89.124 +92.22 +92.12 +92.24 +85.13 +15.212 +92.24 +6.33 +19.1 +92.24 +87.76 +92.24 +53.89 +89.92 +85.44 +92.11 +92.24 +8.24 +89.87 +33.28 +92.24 +93.169a +33.69 +92.11 +64.12 +90.34 +57.240 +15.40 +89.109 +6.33 +89.92 +6.31 +37.109 +92.1 +28186 67.92 +85.1 +89.112 +92.7 +83.13 +92.24 +7.16 +33.224 +89.92 +69.3 +37.110 +92.1 +89.125 +89.59 +13.106 +92.24 +33.54 +89.87 +15.48 +92.11 +15.61 +59.23 +89.87 +9.32 +92.12 +15.157 +92.11 +49.3 +6.155 +83.46 +49.22 +89.87 +37.110 +92.11 +89.124 +92.24 +85.65 +92.24 +6.155 +49.22 +15.61 +89.87 +15.177 +92.24 +93.169a +84.18 +92.24 +53.89 +89.87 +15.123 +59.23 +92.24 +53.88 +89.92 +92.24 +53.77 +89.92 +92.24 +53.94 +89.87 +92.24 +93.296 +28249 83.30 +15.144 +92.11 +84.19 +83.13 +84.22 +92.24 +7.6 +92.24 +53.89 +89.87 +28261 17.13 +89.108 +92.24 +35.20 +89.92 +79.73 +83.24 +92.24 +2.5 +28271 92.24 +53.88 +89.92 +63.1 +92.24 +11.80 +13.19 +90.31 +92.24 +93.169a +33.264 +89.57 +92.24 +20.65 +92.11 +28287 69.3 +27.27 +89.23 +59.1 +33.271 +90.31 +92.11 +28295 58.33 +92.24 +33.264 +69.3 +13.1 +89.87 +92.12 +17.6 +33.271 +90.31 +92.11 +33.69 +90.21 +92.4 +24.52 +92.11 +33.69 +90.21 +92.1 +20.54 +92.24 +7.15 +92.29 +92.24 +42.32 +89.87 +67.136 +60.12 +67.186 +58.37 +42.33 +45.1 +28328 69.8 +61.9 +58.33 +13.1 +92.24 +33.264 +92.11 +89.87 +17.6 +83.9 +83.10 +92.24 +53.89 +56.14 +92.24 +93.169a +33.69 +69.11 +33.28 +92.23 +92.14 +92.29 +92.6 +33.269 +89.124 +92.24 +33.117 +89.92 +69.3 +33.184 +92.23 +67.55 +92.24 +53.89 +56.14 +92.11 +89.92 +33.69 +92.11 +92.6 +13.4 +92.24 +53.82 +92.24 +12.15 +92.24 +33.362 +89.87 +92.24 +93.169a +33.69 +92.1 +13.4 +89.92 +24.1 +92.24 +9.3 +92.24 +9.3 +87.34 +82.8 +92.24 +12.44 +17.12 +89.92 +15.81 +89.109 +92.24 +1.34 +92.24 +1.5 +89.87 +92.24 +53.89 +19.32 +92.24 +6.162 +92.11 +33.69 +92.14 +67.128 +57.40 +33.270 +28412 24.52 +92.24 +33.401 +92.14 +92.7 +28.55 +89.87 +92.24 +59.23 +56.31 +92.11 +88.313 +13.1 +23.99 +89.87 +68.1 +92.12 +23.43 +92.11 +89.92 +79.115 +92.11 +92.24 +8.18 +89.92 +19.7 +92.11 +89.92 +33.69 +92.11 +33.459 +89.92 +92.24 +35.20 +19.4 +92.11 +90.85 +89.92 +85.1 +92.24 +93.296 +83.53 +83.13 +92.24 +7.6 +15.81 +92.22 +92.24 +87.83 +92.24 +53.89 +89.87 +24.1 +92.24 +93.296 +79.73 +24.9 +92.11 +33.69 +89.93 +92.6 +89.108 +92.24 +93.537 +92.24 +93.169a +85.1 +89.124 +92.24 +33.277 +33.69 +69.9 +28.1 +69.9 +32.3 +92.6 +92.14 +33.69 +89.87 +15.40 +84.27 +84.22 +92.24 +7.37 +89.87 +92.24 +87.83 +24.1 +92.11 +68.1 +67.55 +33.69 +92.24 +17.3 +90.21 +92.29 +90.16 +92.11 +13.1 +89.124 +92.24 +67.55 +33.277 +89.87 +67.48 +67.106 +67.55 +92.24 +85.13 +33.69 +92.24 +93.296 +70.3 +90.16 +92.11 +13.1 +89.23 +89.93 +93.445 +13.1 +89.87 +92.24 +68.1 +33.472 +89.92 +33.463 +90.21 +69.3 +28.1 +92.24 +9.24 +92.29 +92.27 +33.69 +89.87 +67.53 +67.33 +60.49 +4.45 +14.76 +89.87 +29.10 +92.24 +93.296 +92.24 +33.98 +89.86 +33.69 +92.11 +92.24 +93.169a +90.21 +67.17 +4.45 +60.69 +14.76 +60.71 +92.1 +33.277 +89.87 +30.7 68.5 +25.138 +89.87 +67.53 +67.187 +92.24 +53.89 +30.74 +28581 89.108 +92.24 +53.77 +89.92 +53.94 +89.92 +63.1 +92.24 +11.80 +37.114 +92.24 +93.169a +15.177 +89.87 +37.111 +93.297 +89.87 +56.14 +92.11 +92.24 +93.297 +92.6 +13.4 +92.24 +37.67 +92.24 +93.172 +89.87 +92.24 +33.184 +92.11 +33.69 +92.6 +33.69 +89.87 +33.427 +92.11 +92.24 +53.88 +59.1 +89.87 +92.24 +93.297 +67.55 +56.14 +92.11 +33.69 +69.11 +33.28 +92.23 +91.13 +59.5 +92.6 +33.427 +89.124 +92.24 +93.169a +67.130 +92.23 +33.184 +89.52 +25.213 +92.24 +93.297 +28646 67.33 +51.2 +37.127 +92.11 +92.22 +37.117 +92.27 +33.163 +28656 37.114 +92.24 +33.129 +93.59 +89.108 +92.24 +39.37 +28664 67.136 +92.24 +39.34 +20.82 +90.45 +89.87 +15.101 +92.24 +11.1 +68.1 +33.163 +64.14 +42.7 +92.11 +89.87 +92.24 +93.297 +33.28 +92.11 +33.69 +25.1 +37.127 +92.7 +92.24 +37.67 +92.24 +93.172 +89.23 +28.1 +90.21 +89.26 +88.160 +37.111 +92.11 +92.24 +53.88 +89.124 +92.24 +53.88 +39.44 +92.24 +11.1 +89.59 +89.126 +92.24 +93.59 +37.127 +92.11 +89.87 +92.24 +93.297 +67.55 +33.28 +33.69 +92.11 +89.50 +92.14 +42.7 +92.27 +33.131 +92.24 +37.67 +92.24 +93.172 +89.87 +92.24 +89.97 +33.83 +20.76 +92.11 +89.124 +92.24 +93.297 +33.69 +92.11 +91.1 +90.45 +92.14 +88.106 +89.124 +92.24 +78.31 +33.83 +20.76 +92.11 +89.87 +92.24 +93.297 +25.3 +92.24 +11.1 +92.24 +25.96 +25.96 +37.127 +92.11 +92.24 +93.59 +89.87 +37.111 +92.24 +93.169a +19.9 +89.59 +20.76 +89.87 +92.24 +55.17 +56.38 +92.11 +83.13 +92.24 +7.6 +89.106 +89.106 +7.7 +89.87 +33.309 +63.1 +92.24 +55.9 +89.87 +49.1 +92.11 +6.169 +89.87 +85.39 +92.11 +49.27 +3.18 +6.192 +89.87 +68.1 +33.20 +92.11 +33.22 +37.67 +92.24 +93.172 +89.87 +19.1 +92.11 +92.24 +8.10 +3.55 +89.92 +23.43 +92.11 +89.92 +17.19 +92.24 +17.19 +17.21 +92.11 +89.87 +28820 33.406 +92.11 +49.18 +92.11 +92.24 +6.169 +89.87 +49.1 +92.11 +92.24 +6.162 +92.11 +89.87 +15.174 +92.11 +89.59 +20.76 +92.11 +89.87 +37.34 +15.28 +92.12 +93.341d +93.511 +15.81 +84.3 +1.87 +92.24 +10.14 +93.17a +89.92 +93.317a +90.22 +15.203 +92.24 +6.27 +92.11 +89.87 +15.166 +92.11 +84.17 +92.24 +80.1 +93.453 +89.106 +89.106 +28867 8.11 +80.1 +89.87 +57.71 +92.11 +6.204 +6.204 +89.124 +92.27 +69.3 +57.125 +89.87 +20.76 +92.11 +89.87 +57.89 +92.24 +6.162 +92.11 +15.215 +6.219 +90.23 +92.11 +92.12 +92.14 +15.203 +28894 13.1 +67.199 +60.50 +28898 20.76 +92.11 +89.92 +28902 33.65 +92.24 +33.46 +92.24 +56.5 +92.11 +92.24 +37.67 +92.24 +93.172 +89.92 +89.107 +92.11 +20.76 +60.11 +57.240 +28920 82.8 +89.92 +28924 82.7 +92.11 +89.87 +92.24 +15.28 +33.400 +92.11 +16.2 +92.24 +8.10 +92.11 +89.92 +33.69 +33.411 +92.24 +20.54 +92.24 +7.15 +89.87 +45.1 +67.136 +60.12 +67.186 +21.18 +92.10 +15.107 +84.3 +92.24 +6.27 +64.1 +89.93 +92.24 +53.88 +33.406 +90.58 +92.26 +89.108 +92.24 +53.94 +33.69 +58.37 +21.18 +92.25 +21.18 +69.3 +74.5 +92.24 +53.82 +92.24 +37.67 +93.182b +15.107 +67.39 +84.3 +92.24 +6.27 +89.59 +24.1 +89.87 +31.35 +89.92 +92.24 +20.78 +89.107 +92.11 +33.389 +92.11 +89.87 +13.107 +67.199 +60.53 +14.53 +13.48 +83.46 +63.1 +92.24 +1.79 +67.119 +67.199 +60.56 +89.87 +92.24 +60.56 +67.199 +33.81 +92.24 +93.169a +33.80 +78.2 +12.3 +12.3 +89.38 +35.56 +89.106 +89.106 +33.145 +92.24 +12.1 +92.1 +92.24 +12.1 +92.1 +29028 35.54 +92.1 +89.87 +92.12 +92.24 +17.3 +24.52 +33.69 +91.13 +93.142 +33.307 +89.87 +92.12 +15.230 +89.87 +59.42 +6.133 +6.201 +85.39 +3.55 +23.35 +92.11 +33.69 +13.140 +27.5 +90.26 +15.81 +93.142 +15.110 15.199 +92.11 +89.87 +92.24 +93.169a +90.50 +33.80 +78.2 +23.103 +89.87 +92.24 +6.160 +92.24 +7.15 +19.27 +13.62 +60.11 +84.3 +84.13 +84.19 +83.53 +89.87 +92.24 +55.16 +92.24 +17.3 +83.42 +83.42 +92.11 +24.1 +90.21 +61.9 +23.103 +33.69 +70.3 +92.29 +92.24 +9.24 +12.15 +12.15 +85.1 +29099 89.93 +9.34 +29102 83.30 +24.14 +83.9 +92.27 +89.102 +93.253c +92.24 +93.242 +89.102 +93.253d +92.24 +93.158d +92.24 +67.116 81.13 +89.92 +93.201b +10.16 +89.102 +93.324 +92.27 +67.139 +85.1 +83.13 +92.24 +93.444a +36.31 +92.11 +89.92 +35.37 +92.11 +89.92 +58.37 +59.1 +92.24 +15.153 +92.11 +84.16 +93.480a +89.87 +67.20 +67.197 +13.107 +89.32 +13.4 +67.201 +89.106 +89.106 +67.202 +15.81 +93.202c +92.24 +90.15 +93.413 +87.33 +11.85 +92.27 +89.93 +92.37 +29161 85.60 +92.24 +37.64 +92.24 +12.1 +25.161 +15.93 +84.18 +92.24 +93.297 +89.87 +33.163 +92.24 +8.1 +92.24 +93.169a +89.87 +92.24 +93.297 +25.213 +90.26 +67.20 +23.99 +89.87 +33.308 +92.24 +55.16 +33.180 +92.11 +90.26 +67.22 +23.99 +89.87 +27.2 +90.15 +92.24 +55.16 +57.83 +92.24 +8.7 +92.24 +93.202c +89.87 +57.188 +6.155 +15.199 +92.11 +79.118 +92.24 +6.155 +89.87 +29213 92.11 +84.22 +29216 92.27 +29218 19.25 +90.16 +2.21 +89.87 +15.249 + +84.17 +92.24 +7.39 +92.24 +7.75 +89.94 +92.24 +93.253c +92.24 +93.242 +89.92 +93.253d +92.24 +93.201b +24.14 +83.6 +85.32 +89.87 +67.84 +92.24 +67.184 +93.253c +92.24 +93.242 +89.92 +93.253d +92.24 +92.24 +93.158a +89.92 +93.324 +57.188 +6.207 +89.59 +15.81 +47.14 +92.11 +89.87 +78.1 +67.187 +92.24 +29266 92.24 +67.177 +15.81 +84.17 +92.24 +29272 15.104 +92.24 +1.28 +89.92 +33.69 +90.58 +92.25 +92.14 +15.248 +92.4 +92.24 + +84.4 +92.24 +7.39 +92.24 +7.75 +89.87 +24.10 +24.14 +90.21 +29294 92.24 + +89.23 +13.1 +79.123 +78.19 +89.87 +15.93 +84.22 +92.24 +7.75 +24.1 +9.32 +17.12 +83.23 +92.24 +82.8 +49.3 +6.174 +79.27 +89.87 +25.210 +89.87 +92.24 +33.69 +92.11 +69.3 +25.210 +27.41 +93.169a +92.24 +93.537 +92.24 +20.76 +23.94 +69.3 +85.1 +83.1 +91.13 +92.24 +80.1 +83.5 +85.32 +92.11 +89.125 +15.35 +33.69 +92.24 +36.38 +92.11 +89.92 +92.24 +93.296 +90.21 +15.142 +92.7 +84.16 +92.24 +93.444a +83.2 +92.11 +24.1 +64.14 +33.69 +92.7 +89.87 +15.40 +15.61 +84.3 +92.24 +7.75 +89.23 +90.65 +92.11 +16.6 +89.92 +25.217 +89.87 +92.23 +92.23 +33.69 +89.23 +25.252 +29378 23.93 +67.187 +60.46 +67.177 +24.18 +60.46 +93.253c +92.24 +93.242 +84.5 +92.27 +53.102 +60.16 +12.37 +92.30 +15.34 +33.198 +92.24 +89.108 +92.11 +85.6 +25.142 +89.92 +25.138 +91.12 92.30 +33.212 +90.21 +23.93 +89.92 +24.14 +90.1 +92.11 +31.39 +89.87 +67.48 +92.29 +60.11 +90.16 +92.11 +15.227 +24.19 +13.8 +58.36 +58.15 +15.18 +84.22 +1.87 +92.30 +15.37 +33.198 +92.24 +63.21 +69.7 +92.30 +31.35 +89.87 +67.50 +23.21 +92.11 +92.24 +60.20 +24.19 +89.87 +33.422 +92.24 +31.105 +92.11 +89.92 +88.224 +89.33 +92.24 +24.14 +92.11 +23.94 +69.3 +31.35 +89.87 +33.69 +33.188 92.11 +15.10 +84.22 +92.24 +1.39 +59.23 +33.256 +92.24 +33.217 +63.2 +92.24 +42.38 +92.24 +31.102 +89.92 +53.41 +21.27 +89.124 +92.24 +31.97 +56.31 +89.94 +33.477 +92.29 +92.24 +31.102 +13.113 +89.76 +92.24 +33.126 +92.1 +12.37 +53.102 +33.2 33.3 +28.33 +33.70 +4.52 +15.203 +89.73 +23.115 +92.12 +23.34 +69.3 +69.3 +92.11 +20.12 +83.46 +23.147 +8.30 +85.51 +89.87 +23.129 65.23 +23.129 +89.136 +89.50 +92.24 +12.9{N:001} +93.169a +67.48 +92.24 +33.70 +92.11 +15.203 +84.22 +92.24 +1.11 +89.87 +17.12 87.36 +87.34 +82.8 +92.24 +12.1 +89.136 +92.30 +15.40 +33.256 +83.8 +92.24 +12.9{N:001} +42.15 +89.92 +92.24 +33.260 +28.44 31.91 +89.76 +92.24 +13.113 +33.477 +89.124 +59.23 +92.24 +33.327 +92.24 +89.110 +92.24 +93.296 +67.108 +33.204 +89.87 +67.48 +92.29 +89.93 +92.37 +92.24 +93.169a +84.3 +82.1 +29564 84.19 +82.2 +15.67 +90.4 +92.11 +92.24 +53.9 +89.92 +23.128 +33.258 +92.24 +67.96 +21.26 +89.32 +59.1 +68.59 +62.3 +33.11 +90.24 +92.24 +13.106 +83.9 +92.4 +13.105 +64.14 +33.237 +92.4 +92.24 +67.131 +58.20 +24.46 +89.92 +35.20 +13.3 +92.24 +33.260 +30.96 +89.93 92.1 +27.38 +67.90 +63.2 +72.19 +61.1 +92.6 +33.61 +87.55 +93.153 +89.59 +32.16 +90.24 +92.27 +33.190 33.225 +33.260 +92.24 +31.41 +91.5 +67.136 +92.24 +67.142 +93.144a +37.67 +92.24 +93.486a +53.87 +92.12 +33.126 +93.136a +63.20 +11.47 +93.4b +89.92 +10.54 +92.11 +63.20 +92.24 +10.31 +93.1 +89.92 +92.24 +33.126 +92.11 +93.111 +89.94 +13.1 +88.12 +59.25 +90.20 +92.24 +12.1 +41.11 +89.5 +59.23 +92.24 +33.330 +89.92 +33.334 +92.24 +12.9{N:001} +88.317 +89.92 +69.3 +13.69 +92.11 +10.36 +89.33 +13.4 +92.24 +93.111 +23.56 +89.92 +59.25 +67.99 +29678 92.24 +67.99 +92.11 +89.94 +13.107 +67.136 +92.24 +53.85 +92.11 +67.136 +92.24 +61.3 +92.24 +11.47 +92.11 +83.33 +92.24 +12.1 +89.8 +92.24 +41.25 +92.24 +53.86 +30.106 +92.24 +53.25 +15.93 +84.22 +92.24 +7.15 +92.24 +12.9{N:001} +89.92 +59.23 +92.24 +11.1 +92.24 +11.1 +85.1 +33.178 +83.20 +92.24 +67.1 +92.24 +53.25 +89.94 +24.1 +92.11 +12.28 +12.9{N:001} +85.8 +29730 82.8 +92.24 +6.114 +92.24 +53.25 +89.87 +25.244 +93.136a +24.1 +89.92 +25.251 +13.122 +90.57 +92.11 +89.87 +33.69 +90.58 +92.11 +92.24 +12.28 +69.3 +25.252 +93.136a +89.26 +24.60 +92.24 +33.171 +92.6 +89.92 +92.24 +10.54 +92.6 +93.111 +23.52 +10.42 +92.6 +89.87 +33.129 +92.24 +33.126 +92.11 +93.190a +89.92 +13.104 +92.6 +25.123 +89.92 +25.132 +89.92 +59.1 +89.27 +92.24 +23.46 +92.11 +25.125 +89.23 +13.1 +87.22 +90.20 +12.9{N:001} +89.92 +6.197 +29793 6.200 +69.5 +69.5 +23.34 +89.92 +12.18 +88.24 +59.38 +67.128 +67.33 +8.69 +10.16 +92.11 +89.92 +59.1 +92.24 +11.58 +93.182b +31.61 +90.40 +12.9{N:001} +92.24 +12.1 +92.11 +89.92 +92.11 +15.141 +83.33 +92.11 +89.80 +12.18 +89.92 +76.1 +93.142 +25.95 +26.3 +10.14 +29831 10.36 +89.92 +36.24 +89.48 +26.15 +88.12 +77.3 +12.9{N:001} +11.12 +77.6 +89.87 +33.69 +93.136a +90.58 +92.24 +12.28 +29849 28.1 +92.29 +89.23 +92.1 +13.4 +9.31 +89.92 +92.24 +10.54 +92.1 +67.99 +29861 92.24 +67.99 +92.11 +89.87 +33.28 +92.24 +12.28 +33.69 +92.11 +92.1 +13.4 +93.81 +92.24 +17.3 +83.33 +92.24 +12.1 +89.92 +15.66 +33.70 +90.58 +92.6 +89.92 +33.215 +92.6 +92.29 +89.92 +91.13 +29890 33.117 33.118 +89.92 +69.3 +74.5 +33.70 +67.119 +92.27 +67.142 +13.107 +92.29 +89.24 +29902 69.3 +31.35 +92.24 +33.98 +92.1 +29908 13.106 +67.160 +92.24 +67.1 +92.11 +91.1 +29915 25.228 +92.24 +11.1 +92.24 +93.136a +89.92 +25.213 +67.136 +92.24 +67.82 +83.13 +92.24 +7.15 +92.11 +89.87 +15.40 +69.3 +74.5 +33.70 +92.11 +89.87 +32.16 +90.21 +33.488 +24.1 +83.13 +92.24 +7.15 +29944 92.11 +29946 33.485 +92.11 +89.92 +68.11 +33.106 +89.87 +13.107 +67.45 +67.70 +92.24 +67.142 +92.24 +53.13 +92.11 +15.37 +84.22 +92.24 +7.2 +92.11 +89.87 +67.48 +92.29 +92.24 +67.142 +23.49 +93.111 +92.24 +10.54 +92.11 +89.87 +28.79 +92.25 +67.174 +60.14 +33.69 +90.21 +61.9 +92.1 +42.7 +12.9{N:001} +67.136 +67.142 +92.27 +30.45 +68.47 +87.73 +92.1 +83.9 +9.1 +29996 67.33 +92.24 +67.174 +92.24 +60.53 +15.66 +92.24 +12.28 +93.81 +90.15 +92.24 +12.1 +84.22 +1.88 +92.24 +93.444a +92.27 +33.126 +93.536 +84.18 +9.39 +34.74 +9.24 +92.27 +33.126 +93.202b +89.3 +10.24 +93.91 +89.92 +92.24 +33.126 +92.24 +9.39 +93.253a +89.87 +15.93 +84.18 +92.11 +33.69 +33.22 +88.66 +92.24 +12.9{N:001} +89.108 +92.6 +89.124 +92.24 +89.27 +92.24 +33.98 +25.246 +89.92 +30.10 +58.30 +13.1 +92.24 +33.20 +92.29 +89.87 +33.69 +92.24 +12.28 +92.11 +69.3 +25.252 +93.253a +89.23 +13.17 +25.89 88.66 +90.20 +92.24 +12.1 +89.92 +91.13 +23.49 +83.13 +8.68 +89.87 +23.52 +10.42 +89.87 +33.129 +92.24 +33.126 +92.11 +93.169a +92.29 +13.1 +87.22 +89.92 +12.15 +12.4 +33.131 +89.92 +37.98 +92.11 +12.9{N:001} +92.24 +12.1 +92.24 +37.71 +93.91 +92.24 +10.20 +92.11 +89.92 +37.64 +37.9 +92.24 +10.24 +93.157a +67.95 +92.24 +67.95 +89.92 +92.24 +37.64 +92.11 +69.3 +13.104 +67.66 +89.87 +33.69 +93.253a +90.58 +92.24 +12.28 +92.16 +13.104 +92.29 +89.32 +9.24 +69.3 +23.61 +89.87 +33.184 +92.24 +12.28 +33.69 +92.11 +12.18 +88.24 +15.83 +90.57 +92.6 +89.92 +76.1 +12.4 +14.62 +92.6 +89.47 +89.93 +92.24 +23.52 +88.24 +33.131 +12.15 +12.15 +89.92 +91.13 +93.111 +92.24 +10.7 +92.6 +89.93 +92.11 +23.49 +10.42 +67.136 +67.157 +92.11 +89.92 +92.29 +67.174 +60.53 +13.4 +92.11 +92.24 +33.131 +23.56 +89.33 +69.3 +71.3 +90.3 +92.24 +12.1 +59.23 +13.115 +89.87 +33.69 +93.253a +91.13 +92.24 +87.83 +12.9{N:001} +13.107 +92.1 +89.8 +92.24 +33.98 +92.6 +89.87 +15.37 +89.122 +92.11 +92.24 +12.28 +30205 93.253a +15.36 +67.136 +92.24 +67.142 +92.29 +15.18 +84.22 +92.24 +1.47 +89.79 +68.79 +84.16 +1.88 1.89 +93.488 +89.87 +15.93 +84.22 +92.24 +7.2 +93.136a +89.87 +33.20 +92.24 +93.111 +89.87 +13.107 +67.45 +24.52 +92.24 +33.20 +92.24 +93.253a +92.24 +93.111 +15.243 +92.24 +9.45 +83.13 +92.24 +8.69 +92.11 +89.92 +59.38 +12.18 +88.24 +92.24 +93.111 +89.87 +33.77 +33.84 +78.2 +89.92 +33.69 +88.69 +92.6 +83.9 +9.34 +89.92 +88.69 +92.24 +10.38 +92.24 +8.69 +92.6 +89.92 +89.38 +92.1 +92.29 +91.15 +15.81 +92.24 +10.16 +92.24 +12.9{N:001} +92.1 +84.18 +92.1 +89.23 +91.13 +67.45 +15.1 +92.24 +14.74 +92.24 +33.20 +92.6 +84.22 +92.24 +24.54 +92.1 +15.243 +89.80 +25.132 +92.24 +9.45 +83.13 +92.24 +8.69 +92.1 +89.92 +25.119 +92.24 +31.35 +89.33 90.21 +13.104 +13.126 +92.24 +33.70 +92.11 +90.14 +12.9{N:001} +91.1 +33.69 +93.253a +33.358 +92.24 +26.4 +92.1 +92.24 +12.9{N:001} +89.92 +25.133 +92.24 +26.9 +92.1 +89.27 +92.24 +12.1 +92.24 +21.22 +92.1 +89.33 +30.45 +90.23 +92.24 +87.60 +92.24 +87.83 +92.11 +89.23 +91.13 +67.131 +92.24 +67.38 +25.120 +92.1 +59.23 +92.24 +10.28 +89.33 +41.7 +92.1 +87.22 +92.24 +74.3 +89.92 +53.46 +92.24 +33.126 +92.11 +89.92 +92.24 +88.76 +92.11 +67.117 +67.144 +89.92 +67.144 +92.24 +53.58 +92.11 +42.7 +76.7 +90.10 +76.3 +92.11 +15.136 +88.214 +30.15 +26.3 +92.11 +15.199 +37.62 +84.3 +37.71 +89.92 +87.20 +87.61 +23.29 +23.17 +65.20 +89.92 +57.25 +15.68 +57.42 +35.1 +93.182b +10.36 87.77 +92.11 +29.7 +88.76 +92.24 +93.7 +89.92 +92.24 +10.29 +92.11 +67.95 +92.24 +67.95 +64.14 +33.70 +90.58 +92.24 +10.20 +92.4 +30423 85.55 +93.253a +89.107 +92.11 +78.42 +67.174 +60.12 +89.87 +15.88 +84.16 +92.24 +7.2 +92.11 +30437 92.24 +93.111 +67.70 +92.24 +67.78 +92.24 +23.52 +92.11 +89.87 +23.52 +10.42 +89.87 +33.212 +92.24 +11.89 +89.92 +92.24 +10.6 +92.11 +90.21 +79.124 +12.9{N:001} +92.24 +88.76 +92.11 +90.60 +92.11 +89.87 +25.126 +92.11 +89.87 +13.107 +67.33 +92.24 +67.178 +92.24 +60.55 +15.81 +53.51 +92.24 +9.42 +89.92 +33.129 +92.11 +90.23 +92.24 +33.126 +92.24 +10.14 +92.11 +93.136a +89.87 +33.28 +92.24 +10.16 +92.11 +33.69 +69.4 +89.125 +33.129 +93.190a +89.87 +33.69 +90.58 +92.11 +90.21 +13.69 +63.20 +92.24 +10.5 +92.6 +92.23 +92.27 +33.129 +92.24 +33.126 +92.29 +30515 33.485 +92.24 +10.14 +92.11 +92.24 +71.8 +25.1 +92.14 +33.129 +92.11 +89.87 +33.163 +6.60 +33.61 +33.69 +93.190a +13.4 +33.126 +92.11 +89.87 +25.213 +59.23 +89.87 +33.29 +92.24 +33.75 +92.11 +67.113 +89.92 +92.24 +33.75 +92.11 +89.87 +33.70 +33.356 +92.24 +12.1 +89.87 +13.107 +25.251 +90.57 +59.23 +92.24 +85.74 +92.11 +89.92 +83.13 +63.1 +92.24 +1.47 +92.24 +93.486a +33.158 +59.23 +92.24 +13.115 +92.29 +89.87 +29.2 +59.23 +92.24 +33.212 +30578 92.24 +30.76 +92.11 +33.69 +89.46 +92.14 +92.24 +9.42 +92.29 +13.104 +89.23 +91.12 +76.3 +12.9{N:001} +85.1 +89.108 +92.11 +91.1 +93.136a +92.24 +10.14 +92.11 +59.38 +12.18 +88.24 +89.87 +33.459 +33.69 +33.362 +12.9{N:001} +92.24 +12.1 +92.24 +93.182b +89.33 +34.50 +89.92 +90.45 +37.128 +92.24 +11.12 +92.11 +89.92 +13.83 +76.16 +21.18 +92.4 +89.5 +10.24 +93.91 +10.36 87.77 +92.11 +64.14 +33.70 +89.76 +33.74 +92.24 +53.46 +30637 67.25 +53.79 +92.11 +21.18 +84.4 +39.11 +92.4 +89.92 +84.4 +76.3 +59.23 +92.24 +88.198 +92.4 +41.7 +88.76 +90.60 +92.24 +10.20 +92.4 +89.92 +29.7 +34.44 +53.46 +92.11 +33.463 +92.27 +33.463 +90.58 +93.7 +92.24 +10.20 +92.4 +92.24 +13.142 +92.4 +84.4 +76.3 +39.11 +21.23 +25.253 +53.14 +92.11 +13.8 +53.45 88.25 +89.92 +88.13 +90.20 +92.11 +59.23 +92.24 +67.142 +92.4 +89.94 +9.42 +89.93 +92.6 +53.79 +12.4 +33.131 +89.23 +15.143 +83.33 +12.9{N:001} +77.3 +1.99 +92.11 +92.24 +90.51 +28.1 32.16 +21.26 +92.24 +11.12 +92.11 +89.5 +40.8 +88.310 +92.11 +89.26 +25.49 +88.76 +12.1 +92.4 +89.84 +92.27 +34.50 +92.4 +14.42 +30726 14.42 +14.39 +92.24 +83.13 +14.53 +89.92 +14.61 +23.99 +85.63 +92.24 +41.17 +92.24 +8.49 +92.4 +89.48 +41.16 +22.42 +30744 92.24 +9.42 +23.188 +89.92 +76.10 +12.18 26.9 +89.92 +85.1 +83.13 +92.24 +1.86 +67.119 +67.142 +28.54 +92.11 +90.58 +92.24 +93.182b +30763 13.107 +67.136 +92.24 +67.142 +92.30 +15.40 +33.332 +84.5 +37.74 93.208 +93.52 +33.42 +63.2 +92.24 +1.83 +92.29 +33.43 +60.46 +13.3 +37.60 +92.24 +93.589 +93.223 +89.87 +15.18 +63.2 +33.42 +59.27 +84.16 +92.24 +92.25 +1.88 1.89 +30795 15.101 +89.93 +93.202b +84.3 +92.24 +93.444a +84.4 +1.88 1.89 +93.536 +84.16 +92.24 +93.486a +84.16 +1.88 1.89 +2.26 93.91 +30811 33.129 +93.431 +89.26 +92.24 +58.67 +92.11 +90.16 +10.24 +89.92 +10.24 +93.91 +33.42 +89.107 +93.253a +92.24 +34.74 +92.11 +13.1 +23.50 +89.87 +13.107 +67.33 +92.24 +85.1 +92.11 +83.2 +67.70 +92.24 +67.142 +92.24 +23.52 +92.11 +89.87 +23.52 +92.24 +10.42 +92.11 +92.24 +10.43 +89.87 +49.6 +92.11 +89.87 +17.28 +92.11 +84.22 +6.137 +89.26 +69.3 +13.69 +92.11 +80.1 +83.13 +92.24 +7.11 +91.1 +44.4 +85.1 +83.13 +92.24 +1.79 +92.24 +58.31 +85.64 +89.92 +37.119 +37.119 67.196 +92.24 +67.192 +37.9 +92.24 +4.28 +92.11 +89.87 +12.28 +12.9{N:001} +85.13 +92.11 +89.92 +14.49 +12.9{N:001} +14.44 +92.11 +89.87 +25.252 +25.251 +78.2 +89.87 +33.69 +92.11 +92.24 +12.28 +69.3 +25.252 +89.23 +91.13 +33.215 +92.7 +25.124 +78.2 +30912 13.104 +59.23 +92.24 +11.12 +89.33 +23.52 +92.7 +67.205 +21.31 +89.106 +89.106 +53.82 +12.9{N:001} +83.13 +1.88 1.89 +93.91 +89.92 +92.29 +92.7 +33.477 +27.27 +9.45 +49.6 +89.92 +17.26 +83.13 +6.137 +89.87 +67.113 +85.7 +89.107 +92.24 +12.28 +11.1 +12.30 +12.30 +33.354 +92.24 +12.1 +89.92 +33.69 +87.4 +83.13 +1.13 +12.1 +89.92 +83.46 +1.39 +25.248 +83.9 +9.1 +25.88 +91.1 +13.107 +67.45 +15.37 +84.3 +92.11 +84.22 +92.24 +1.11 +92.24 +12.28 +92.24 +44.4 +33.70 +90.58 +92.26 +91.6 +15.17 +84.19 +93.431 +89.87 +24.1 +92.24 +13.115 +92.29 +92.24 +13.107 +92.27 +92.24 +12.9{N:001} +28.26 +92.4 +89.87 +15.81 +68.79 +89.87 +27.28 +89.102 +92.24 +93.253a +89.102 +92.24 +93.202b +89.92 +92.24 +9.45 +17.26 +83.13 +92.24 +6.137 +89.87 +24.1 +28.26 +90.24 +92.24 +33.98 +92.24 +33.70 +92.11 +90.24 +92.24 +9.42 +92.29 +89.87 +59.23 +92.24 +33.212 +25.213 +90.24 +92.24 +33.70 +90.1 +92.24 +44.4 +90.58 +92.11 +89.124 +92.24 +31043 29.1 +59.23 +92.24 +13.115 +92.29 +30.7 +83.13 +92.24 +26.3 +92.11 +89.87 +15.88 +92.24 +44.4 +33.357 +89.92 +33.354 +92.24 +12.1 +90.57 +59.23 +92.27 +24.52 +89.92 +24.1 +64.14 +33.70 +90.58 +92.11 +91.1 +31074 67.70 +67.178 +60.17 +92.24 +53.51 +92.11 +31081 33.129 +92.24 +33.126 +92.11 +93.169a +92.24 +33.129 +90.1 +92.24 +12.28 +67.17 +92.24 +23.49 +92.11 +83.13 +92.24 +8.69 +91.1 +31100 67.70 +92.24 +67.142 +92.24 +53.28 +92.11 +89.8 +92.24 +33.55 +93.266 +15.176 +92.11 +84.16 +93.480a +57.81 +92.24 +12.9{N:001} +64.14 +33.54 +83.13 +33.55 +12.9{N:001} +90.21 +59.23 +10.45 + +8.69 +53.46 +92.24 +12.9{N:001} +33.131 +89.92 +92.24 +57.71 +53.20 +89.8 +92.24 +33.69 +83.13 +92.24 +33.55 +12.9{N:001} +60.79 +4.44 +89.139 +60.11 +4.39 +4.44 +91.1 +91.13 +9.24 +85.1 +83.13 +93.480a +92.27 +33.126 +93.349c +89.92 +92.24 +9.24 +92.29 +88.12 +89.92 +53.8 +85.60 +25.150 +92.24 +93.182b +89.92 +12.18 +88.24 +85.1 +90.57 +92.11 +89.92 +31176 28.39 +92.11 +90.1 +92.24 +12.18 +92.24 +88.24 +69.3 +90.79 +23.99 +67.17 +31188 71.8 +24.1 +92.24 +53.82 +12.9{N:001} +89.87 +15.81 +90.6 +92.24 +12.18 +84.22 +92.24 +7.16 +89.87 +67.33 +92.24 +15.194 +92.24 +10.18 +92.24 +9.42 +93.169a +92.24 +42.7 +92.11 +89.8 +92.24 +41.26 +92.24 +33.55 +89.6 +92.11 +89.87 +92.11 +34.53 +92.11 +84.22 +92.24 +8.28 +89.87 +33.356 +92.24 +12.1 +89.92 +33.69 +37.63 +67.39 +15.43 +92.24 +87.76 +92.6 +89.8 +92.24 +33.98 +92.6 +13.8 +25.248 +89.33 +24.1 +92.24 +8.23 +92.1 +92.24 +21.28 21.29 +92.6 +92.27 +77.3 +83.34 +85.26 +59.23 +92.24 +11.55 +14.36 +89.57 +28.38 +11.37 +89.92 +87.4 +11.12 +92.6 +93.182b +89.87 +31271 25.213 +92.24 +10.14 +92.11 +89.92 +92.24 +10.16 +89.27 +92.24 +33.70 +90.24 +92.11 +89.87 +33.470 +92.11 +93.349c +89.87 +33.69 +90.58 +93.253a +92.24 +10.16 +92.11 +91.13 +92.29 +13.73 +89.57 +13.59 20.50 87.75 +89.87 +13.60 87.39 +59.1 +83.13 +92.24 +93.182b +89.92 +89.57 +33.477 +33.455 +89.94 +89.93 +92.6 +92.37 +92.24 +25.279 +15.32 25.279 +25.279 6.32 +89.59 +71.14 +28.38 +90.16 +59.1 +26.3 +30.16 +91.1 +13.69 +93.27 +53.80 +10.46 +93.372 +89.3 +10.2 +93.49 +92.29 +67.99 +31336 67.99 +59.1 +23.88 +89.108 +10.53 +67.167 +60.16 +67.131 +92.24 +23.64 +92.11 +89.92 +92.11 +10.61 +67.119 +67.167 +60.31 +60.13 +92.27 +69.3 +15.51 +92.24 +7.16 +53.65 +89.92 +33.171 +53.14 +67.92a +89.92 +67.92a +89.92 +58.31 +92.24 +67.1 +85.13 +33.351 +92.24 +12.1 +89.92 +33.70 +90.24 +92.11 +59.23 +92.24 +85.60 +37.128 +93.480a +91.1 +67.45 +68.22 +59.23 +92.24 +89.8 +92.24 +33.55 +12.9{N:001} +15.90 +84.22 +92.24 +93.444a +84.16 +1.88 +92.25 +93.536 +89.87 +92.24 +9.42 +23.188 +89.92 +23.134 +59.37 +32.37 +89.92 +88.66 +12.1 +85.1 +90.57 +92.11 +91.1 +15.18 +92.24 +10.18 +92.11 +89.90 +67.167 +84.16 +93.480a +92.24 +51.2 +92.24 +51.6 +89.87 +31429 13.107 +67.167 +60.21 +15.101 +92.11 +89.8 +92.24 +41.25 +92.24 +51.2 +89.87 +68.22 +92.24 +67.178 +67.33 +92.24 +15.88 +92.11 +85.57 +93.169a +92.24 +10.36 +83.13 +93.480a +31454 69.3 +28.1 +92.24 +10.18 +92.11 +89.124 +31.29 +92.11 +85.1 +83.9 +92.24 +15.150 +15.7 +67.186 +15.19 +89.87 +27.42 +92.11 +83.9 +92.24 +10.6 +89.92 +92.24 +28.30 34.17 +89.87 +69.3 +27.27 +15.88 +84.16 +93.480a +27.42 +92.11 +89.87 +13.107 +67.48 +67.186 +60.12 +27.27 +92.11 +83.13 +92.24 +7.16 +17.12 +31498 83.9 +92.24 +33.243 +89.102 +24.52 +92.11 +89.102 +33.180 +92.11 +89.94 +25.218 +59.23 +92.24 +24.52 +92.11 +89.27 +92.24 +32.26 +89.92 +92.24 +33.185 +92.11 +89.87 +24.1 +92.11 +25.219 +89.87 +33.69 +90.58 +92.11 +92.24 +10.16 +92.11 +10.36 +92.15 +41.7 +92.4 +61.9 +91.13 +92.24 +10.14 +92.6 +89.92 92.1 +25.236 +31543 92.6 +89.87 +33.69 +90.58 +92.11 +92.15 +90.21 +27.41 +92.1 +69.3 +28.1 +90.21 +83.13 +92.24 +92.24 +12.12 +92.1 +85.1 +92.1 +71.21 +31564 92.11 +69.3 +32.5 +92.24 +33.98 +92.27 +33.70 +92.11 +89.87 +15.107 +89.108 +92.11 +89.87 +15.81 +84.16 +93.536 +89.92 +31582 37.31 +92.11 +89.92 +92.24 +10.16 +92.11 +31589 59.23 +92.24 +13.115 +83.13 +92.24 +26.3 +92.11 +89.92 +93.169a +59.64 +89.5 +92.24 +32.37 +89.92 +81.4 +89.92 +25.89 +90.20 +12.1 +89.92 +9.1 +31611 67.136 +67.167 +60.61 +92.24 +37.58 +93.359 +37.74 93.208 +37.60 +93.298 +93.297 +92.24 +93.486a +89.92 +37.79 +92.24 +93.444a +93.144b +89.94 +93.379b +92.24 +10.49 +92.11 +37.79 +92.24 +93.491 +89.92 +93.598 +1.79 +89.92 +93.237 +92.24 +93.389 +37.79 +67.136 +53.89 +93.28 +89.92 +93.205 +13.107 +33.98 +12.1 +90.57 +93.190a +92.24 +93.136a +10.42 +83.13 +92.24 +1.86 +89.87 +15.7 +84.22 +59.23 +92.24 +1.80 +92.24 +93.485 +33.256 +53.41 +41.52 +89.57 +40.8 +88.310 +64.12 +33.54 +83.13 +6.64 +33.51 +93.147 +92.24 +53.79 +33.103 +33.81 +83.13 +92.24 +1.86 +77.3 +92.24 +1.99 +12.9{N:001} +79.88 +13.9 +92.24 +1.100 +92.11 +59.23 +1.51 +59.37 +89.92 +59.23 +1.46 +89.92 +1.48 +79.87 81.7 87.63 +89.92 +13.104 13.51 +92.24 +79.90 +13.62 +31711 89.92 +92.24 +79.84 +13.62 +1.99 +79.86 +89.92 +90.79 +59.23 +9.11 +92.24 +21.28 21.29 +92.24 +12.1 +31726 33.69 +92.24 +15.40 +53.41 +90.1 +92.11 +11.1 +23.53 58.26 +88.123 +92.14 +28.47 +92.7 +21.14 +84.3 +92.24 +67.62 +38.10 +89.50 +13.86 +13.86 +65.17 +92.24 +41.52 +89.92 +69.3 +68.1 +31.5 +31755 10.20 +31757 92.24 +93.7 +89.23 +33.69 +92.7 +90.21 +74.5 +92.24 +12.1 +90.16 +92.24 +2.24 +92.29 +13.83 +10.28 +92.24 +93.7 +89.94 +67.20 +91.12 +92.24 +6.217 +83.24 +92.24 +3.47 +92.24 +3.2 +85.3 +89.50 +59.23 +3.2 +69.3 +23.199 +23.199 3.33 +65.22 +19.18 +89.87 +84.22 +2.5 +15.215 +89.87 +33.180 +92.11 +92.24 +11.1 +33.69 +89.50 +92.14 +42.7 +89.87 +33.184 +33.69 +92.11 +92.24 +57.1 +60.11 +6.176 +57.96 +92.24 +69.3 +57.1 +89.92 +92.24 +57.1 +5.1 +64.1 +42.7 +89.87 +15.81 +89.93 +57.184 +53.41 +89.87 +33.69 +90.58 +92.11 +33.243 +92.14 +42.7 +89.87 +92.24 +33.69 +90.58 +92.11 +92.23 +78.28 +78.29 +92.24 +33.325 +92.7 +57.65 +89.94 +33.180 +92.11 +89.93 +55.18 +33.69 +92.14 +42.7 +89.93 +92.4 +89.87 +33.69 +92.11 +92.23 +57.245 +69.7 +33.434 +89.92 +25.81 +92.24 +57.166 +92.7 +31871 30.55 +92.24 +11.1 +89.92 +30.10 +59.23 +83.13 +92.24 +26.3 +92.11 +89.6 +92.24 +93.190a +31886 92.11 +13.4 +92.24 +53.82 +33.28 +33.69 +59.23 +92.24 +93.190a +89.136 +92.1 +2.7 +53.41 +92.7 +89.136 +15.81 +92.24 +87.44 +92.1 +92.27 +69.3 +13.1 +75.2 +18.18 +92.24 +6.20 +92.24 +6.182 +92.11 +92.11 +92.7 +53.49 +90.10 90.6 +12.18 +88.24 +89.92 +2.3 +92.27 +92.24 +6.6 +83.13 +92.24 +8.30 +92.11 +79.51 +92.24 +3.43 7.65 +92.11 +89.87 +15.125 +92.24 +3.41 +84.22 +92.24 +7.25 +92.11 +89.124 +92.24 +3.57 +14.66 +2.3 +14.71 +91.3 +89.50 +59.1 +89.92 +58.37 +25.150 +33.215 +92.24 +11.1 +89.124 +92.24 +93.144b +92.24 +37.78 +33.417 +90.1 +92.11 +89.36 +93.145 +92.24 +10.54 +92.24 +10.49 +92.11 +89.92 +89.36 +59.23 +92.27 +88.110 +90.45 +92.24 +93.144b +59.72 +31982 92.29 +89.101 +59.23 +37.125 +92.24 +93.190a +84.22 +7.24 +31991 91.5 +67.33 +92.24 +53.41 +59.23 +92.24 +11.1 +89.87 +93.169a +53.41 +89.92 +33.178 +79.110 +92.24 +1.11 +89.87 +15.107 +92.24 +12.18 +92.24 +88.24 +8.2 +58.14 +64.12 +4.44 +84.20 +92.11 +89.87 +33.103 +89.3 +1.11 +15.1 +92.6 +13.4 +92.24 +12.15 +92.1 +92.24 +58.53 +89.5 +92.6 +25.87 +91.1 +92.37 +93.169a +32037 68.1 +78.42 +67.167 +60.26 +64.12 +31.29 +13.4 +10.42 +93.202b +92.24 +93.141 +92.24 +93.245a +92.24 +93.231c +92.24 +93.260a +92.24 +93.160 +92.24 +93.202h +92.24 +93.258a +92.24 +93.23b +92.24 +93.272 +92.24 +93.126 +92.24 +93.268 +92.24 +93.241 +92.24 +93.258b +92.24 +93.334 +92.24 +93.203 +92.24 +93.193 +92.24 +93.187 +92.24 +93.312 +92.24 +93.140 +92.24 +93.320 +92.24 +93.277 +92.24 +93.260b +92.24 +93.12 +92.24 +93.224 +92.24 +93.113 +92.24 +93.143 +92.24 +93.169c +92.24 +93.109 +92.24 +93.199 +92.24 +93.245b +92.24 +93.231d +92.24 +93.349e +92.24 +93.173g +92.24 +93.202h +92.24 +93.196 +92.24 +93.108b +92.24 +93.259 +92.24 +93.262 +92.24 +93.257 +92.24 +93.269 +92.24 +93.91 +92.24 +93.166 +92.24 +93.192 +92.24 +93.79 +92.24 +93.319a +92.24 +93.267 +92.24 +93.20 +92.24 +93.13 +92.24 +93.41 +92.24 +93.127 +92.24 +93.374 +92.24 +93.173h +92.24 +93.157a +92.24 +93.180 +92.24 +93.7 +92.24 +93.152 +92.24 +93.274 +92.24 +93.336 +92.24 +93.307 +92.24 +93.371 +92.24 +93.103 +92.24 +93.319b +92.24 +93.207a +92.24 +93.44 +92.24 +93.338 +92.24 +93.285 +92.24 +93.226 +92.24 +93.247 +92.24 +93.118 +92.24 +93.162 +92.24 +93.248 +92.24 +93.207b +92.24 +93.117 +92.24 +93.337 +92.24 +93.11 +92.24 +12.1 +32199 93.169a +59.35 +12.18 +88.24 +15.88 +84.3 +92.24 +93.485 +89.87 +36.1 +90.6 +92.24 +12.18 +83.13 +92.24 +1.86 +67.93 +67.93 +88.308 +90.1 +92.24 +12.34 +89.92 +69.3 +23.1 +92.23 +67.136 +92.24 +67.142 +92.30 +89.87 +68.22 +92.11 +23.29 +89.87 +33.69 +92.11 +92.24 +12.34 +89.65 +13.4 +12.15 +92.24 +12.15 +33.69 +92.24 +2.24 +92.29 +90.22 +13.48 +5.8 +89.87 +33.28 +90.58 +92.11 +92.24 +93.169a +33.54 +90.21 +69.3 +90.9 +5.8 +58.51 +23.88 +92.24 +9.1 +89.87 +15.176 +92.11 +28.47 +92.11 +59.23 +92.24 +1.82 +92.24 +1.39 +67.136 +67.149 +67.78 +89.87 +33.69 +92.11 +92.24 +12.34 +92.6 +37.98 +92.24 +37.36 76.12 +92.29 +59.23 +89.92 +92.24 +79.18 +92.11 +89.33 +92.1 +57.77 +89.87 +71.8 +92.27 +25.1 +57.71 +92.11 +89.50 +89.67 +92.6 +53.56 +83.33 +92.1 +13.104 +92.6 +63.2 +89.87 +33.28 +92.24 +93.169a +33.69 +92.11 +33.54 +53.56 +12.9{N:001} +92.24 +12.1 +92.6 +89.92 +92.11 +58.50 +53.14 +89.87 +15.165 +92.11 +84.16 +93.480a +89.87 +85.40 +83.46 +92.24 +7.53 +92.24 +7.16 +89.87 +33.69 +92.11 +89.65 +13.4 +12.15 +92.24 +12.15 +15.215 +92.10 +84.9 +84.26 +89.23 +33.54 +90.21 +92.24 +12.28 +92.11 +33.329 +89.6 +92.6 +92.24 +21.21 +92.6 +89.92 +90.21 +83.46 +8.30 +15.203 +92.6 +32371 19.5 +84.23 +2.24 +92.24 +8.49 +92.6 +89.87 +33.28 +33.69 +92.11 +92.24 +93.169a +90.21 +33.69 +69.3 +27.46 +12.9{N:001} +92.24 +12.1 +92.6 +89.87 +68.22 +59.23 +88.308 +92.24 +12.34 +15.51 +89.122 +92.11 +67.119 +67.1 +91.1 +15.88 +92.24 +93.169a +89.76 +92.24 +76.1 +92.24 +12.18 +84.22 +92.24 +93.444a +89.87 +33.211 +15.40 +84.31 +63.1 +92.24 +1.80 +89.6 +92.11 +89.87 +92.11 +33.224 +83.13 +92.24 +7.20 +92.11 +33.357 +90.1 +59.23 +91.1 +15.81 +84.16 +93.536 +83.5 +32439 35.51 +89.87 +15.93 +89.8 +92.24 +41.26 +92.11 +67.33 +92.24 +67.178 +92.24 +67.184 +84.22 +92.24 +7.20 +89.87 +17.6 +33.68 +89.87 +57.75 +92.11 +6.64 +92.24 +53.79 +93.147 +89.87 +32466 92.24 +6.64 +27.27 +92.24 +33.10 +83.5 +32473 33.54 +12.18 +12.9{N:001} +90.57 +92.1 +92.27 +89.58 +37.107 +92.1 +33.215 +57.53 +15.66 +92.1 +33.256 +55.25 +37.132 +89.92 +24.38 +24.42 +15.66 +22.22 +13.8 +37.132 +33.256 +67.146 +12.9{N:001} +34.54 +89.87 +79.120 +92.24 +6.64 + +92.24 +35.20 +17.12 +89.87 +59.23 +92.24 +8.23 +83.13 +92.24 +7.20 +32516 24.49 +92.11 +89.87 +68.1 +33.69 +90.58 +92.11 +90.21 +67.205 +13.106 +92.24 +33.10 33.53 +92.29 +67.136 +92.24 +24.54 +92.7 +89.87 +59.23 +33.263 +92.11 +89.92 +25.213 +89.27 +92.24 +33.260 +92.24 +88.66 +92.24 +15.40 +84.4 +92.24 +33.101 +92.11 +89.87 +33.69 +69.12 +10.42 +93.202b +13.4 +92.29 +89.87 +33.69 +90.58 +92.11 +71.16 91.10 +33.69 +92.1 +92.24 +33.15 +92.29 +23.141 +23.139 +92.10 +33.212 +59.7 +13.107 +83.13 +92.24 +93.498 +42.7 +89.93 +83.1 +83.13 +92.24 +1.81 +92.6 +89.87 +33.69 +72.6 +33.69 +92.7 +90.21 +92.23 +53.79 +34.54 +13.1 +83.13 +92.24 +1.81 +92.11 +89.94 +32599 70.4 +33.69 +92.7 +59.1 +10.61 +13.69 +67.136 +92.24 +67.142 +93.142 +83.13 +92.24 +93.182b +32613 79.112 +92.24 +1.5 +67.136 +67.167 +60.12 +89.92 +67.174 +60.15 +67.45 +13.107 +23.33 +78.2 +83.46 +63.2 +92.24 +1.39 +32631 84.18 +92.23 +92.11 +15.66 +93.142 +89.131 +32638 84.16 +93.574 +92.24 +93.578 +84.18 +10.54 +10.61 +89.92 +59.1 +23.162 +13.69 +83.13 +92.24 +93.182b +67.136 +93.112 +92.24 +53.79 +32657 92.23 +92.11 +23.137 +89.131 +32662 93.271 +92.24 +93.590 +89.87 +78.46 +88.178 +59.23 +83.13 +92.24 +7.20 +24.52 +92.29 +89.87 +15.36 +15.220 +92.11 +84.27 +92.24 +1.88 +89.87 +15.165 +92.11 +84.19 +1.49 +92.24 +1.46 +83.46 +92.27 +92.24 +1.88 +92.11 +45.1 +89.61 +15.221 +92.11 +89.124 +92.11 +15.21 +84.29 +83.10 +92.11 +15.34 +91.1 +15.107 +84.16 +93.498 +1.88 +92.24 +93.444a +89.92 +32713 33.224 +92.11 +67.33 +92.24 +67.184 +89.87 +25.219 +89.27 +92.24 +33.224 33.236 +92.11 +89.33 +32726 37.35 +13.1 +92.24 +33.98 +92.11 +32732 83.13 +92.24 +7.20 +85.1 +9.24 +90.65 +12.37 +12.37 +53.39 +91.1 +33.83 +33.80 +78.2 +88.191 +32747 92.4 +32750 93.169a +93.537 +15.81 +20.31 +92.4 +28.1 +92.6 +92.14 +13.4 +92.24 +88.24 +92.24 +12.1 +89.87 +33.419 +92.11 +92.24 +93.169a +33.69 +33.123 +89.92 +15.40 +89.122 +92.11 +89.87 +92.24 +12.37 +85.37 +92.11 +83.13 +92.24 +83.10 +15.40 +84.3 +92.11 +92.23 +20.12 +92.11 +89.87 +13.107 +25.208 +90.57 +59.23 +89.87 +33.157 +90.58 +92.26 +33.69 +92.14 +92.24 +33.98 +92.29 +89.33 +89.80 +37.35 +89.92 +76.1 +33.325 +92.24 +53.39 +12.39 +89.87 +15.40 +89.92 +15.40 +33.211 +89.6 +92.11 +84.22 +59.23 +80.1 +92.24 +1.80 +32824 15.36 +84.3 +92.24 +7.20 +15.93 +84.22 +92.24 +7.3 +93.341a +89.94 +10.59 +92.24 +93.341a +32838 90.65 +23.159 +78.2 +89.87 +33.161 +92.11 +32845 92.11 +89.87 +17.5 +83.49 +92.11 +33.419 +92.24 +23.159 +89.87 +13.37 +92.11 +89.87 +67.113 +17.6 +46.13 +92.11 +89.94 +15.113 +92.24 +1.28 +59.23 +59.7 +90.65 +23.144 +23.155 +58.45 +15.210 +92.11 +84.18 +92.11 +89.87 +92.24 +92.22 +59.27 +92.11 +92.24 +8.30 +85.51 +23.139 +92.11 +89.94 +15.40 +89.93 +12.37 +84.3 +59.1 +32892 89.92 +33.69 +90.21 +92.6 +13.4 +92.24 +12.15 +92.24 +12.15 +89.92 +33.419 +69.3 +13.138 +92.11 +33.70 +89.33 +28.1 +92.24 +53.82 +92.11 +13.4 +32914 13.107 +14.40 +15.40 +15.18 +84.22 +1.86 +80.1 +89.87 +92.24 +11.1 +27.42 +92.11 +89.87 +15.81 +84.19 +92.11 +89.87 +37.17 +92.11 +92.24 +69.3 +15.34 +84.3 +92.11 +89.124 +92.24 +33.69 +90.58 +92.11 +90.21 +89.93 +92.24 +58.37 +11.61 +33.215 +92.1 +92.24 +37.64 +92.24 +12.1 +71.34 +89.33 +89.60 +92.29 +15.66 +89.87 +32961 33.256 +83.13 +92.24 +7.20 +92.24 +93.486a +32968 13.107 +67.136 +92.24 +92.24 +11.1 +19.43 +92.11 +89.92 +24.52 +92.24 +33.260 +92.24 +12.1 +89.92 +92.11 +32984 85.8 +83.25 +92.24 +1.72 +93.449b +32990 24.1 +6.41 +60.11 +85.8 +83.25 +92.24 +1.72 +89.87 +92.24 +44.10 +84.3 +92.11 +15.39 +47.8 +92.24 +6.11 +89.87 +15.95 +84.22 +92.22 +92.24 +6.41 +92.27 +13.1 +93.341a +33.161 +92.11 +84.3 +92.24 +1.60 +54.5 +59.13 +89.87 +17.12 +84.4 +92.24 +6.41 +33.224 +92.24 +11.1 +89.87 +67.45 +68.34 +33.70 +33.69 +90.58 +92.24 +93.341a +54.5 +84.22 +92.24 +81.8 81.9 +89.87 +15.111 +92.24 +6.11 +92.7 +89.57 +18.8 +89.87 +33.28 +93.341a +33.69 +87.50 +67.140 +63.1 +67.192 +42.47 +92.23 +18.1 +89.87 +89.13 +92.24 +33.98 +92.6 +15.111 +92.24 +6.11 +89.87 +92.29 +42.7 +44.9 +59.9 +4.59 +59.11 +89.87 +19.32 +92.24 +6.11 +92.11 +89.87 +33.485 +92.24 +34.8 +83.13 +92.24 +58.37 +6.41 +92.24 +15.81 +35.5 +92.11 +89.87 +15.81 +89.87 +59.38 +59.25 +92.24 +6.41 +89.52 +15.115 +92.11 +33103 24.1 +93.341a +93.296 +17.22 +92.24 +8.47 +93.169a +33.69 +15.40 +84.3 +92.1 +89.33 +9.24 +88.295 +13.4 +12.9{N:001} +89.23 +25.208 +90.69 +92.11 +89.92 +59.23 +92.24 +89.107 +92.11 +89.27 +92.24 +18.8 +92.24 +4.59 +33134 37.109 +89.94 +64.1 +89.102 +93.158a +89.102 +93.190b +10.42 +93.137 +92.27 +13.4 +34.6 +92.24 +93.341a +89.87 +33.69 +90.58 +92.24 +93.341a +92.24 +93.169a +69.3 +25.252 +67.131 +92.24 +67.38 +9.1 +33162 37.1 +89.87 +54.16 +92.24 +6.41 +84.20 +92.24 +1.60 +85.45 +63.2 +36.31 +92.11 +91.1 +13.107 +67.136 +92.24 +85.1 +92.11 +67.136 +92.22 +92.24 +1.88 1.89 +33185 91.13 +9.24 +59.35 +23.161 +89.87 +24.1 +92.24 +93.169a +17.22 +33195 8.18 +33.170 +92.11 +33.69 +12.9{N:001} 87.53 +89.67 +30.58 +74.5 +92.1 +23.137 +89.87 +16.19 +92.24 +8.30 +24.73 +92.11 +33.69 +30.58 +23.137 +89.87 +67.53 +92.24 +23.161 +13.93 +89.122 +92.11 +89.87 +92.11 +33.327 +92.11 +92.23 +33.69 +89.125 +15.37 +28.47 +92.10 +92.24 +53.87 +89.87 +57.80 +89.6 +92.24 +53.28 +92.6 +64.14 +33.325 +93.266 +89.57 +33.262 +92.11 +89.124 +15.21 +78.28 +92.24 +33.98 +89.6 +92.11 +89.87 +15.123 +11.1 +78.3 +24.52 +89.92 +23.139 +89.122 +92.24 +23.143 +92.11 +89.124 +92.11 +33266 15.53 +83.13 +92.24 +1.86 +89.92 +33.178 +91.1 +13.107 +67.33 +92.22 +92.24 +67.186 +89.92 +92.11 +33281 33.224 +33284 17.12 +11.49 +89.92 +33.248 +92.27 +33290 15.81 +84.4 +59.23 +1.92 +92.24 +93.444a +89.92 +93.486a +89.92 +93.480a +89.92 +76.1 +12.9{N:001} +13.69 +89.48 +92.24 +23.136 +92.11 +89.87 +91.13 +9.24 +15.187 +83.46 +6.106 +9.24 +92.27 +33317 23.170 +89.92 +68.60 +92.11 +15.194 +89.92 +85.32 +83.33 +92.11 +89.87 +69.3 +27.1 +92.36 +15.194 +92.11 +90.44 +92.24 +11.1 +15.101 +84.20 +92.24 +7.51 +84.29 +92.24 +6.224 +15.111 +92.11 +89.105 +92.24 +6.107 +84.22 +92.24 +83.10 +83.33 +92.24 +93.169a +89.87 +24.1 +92.24 +31.85 +92.11 +33.69 +9.24 +40.8 +92.6 +92.24 +88.310 +92.6 +89.87 +68.1 +30.10 33.158 +92.24 +53.94 +89.92 +92.24 +11.49 +33.69 +92.14 +13.4 +92.29 +92.27 +33.70 +33.401 +92.14 +74.5 +88.310 +40.8 +89.131 +33386 58.51 +92.24 +12.1 +89.124 +92.24 +93.169a +32.16 +92.24 +30.16 +92.11 +33.28 +33.69 +90.58 +92.11 +92.15 +30.10 +83.13 +92.24 +26.3 +92.7 +92.14 +13.1 +22.39 +33.69 +40.8 +92.6 +92.24 +88.310 +92.6 +89.139 +33.69 +17.9 +89.87 +15.227 +89.124 +89.59 +28.1 +90.21 +92.24 +9.3 +92.24 +9.3 +37.35 +33430 83.46 +92.24 +1.39 +40.8 +88.310 +33.69 +92.24 +23.170 +92.6 +33.69 +17.9 +89.87 +15.203 +92.24 +6.107 +92.6 +15.10 +84.22 +92.24 +7.2 +92.6 +89.87 +67.113 +17.6 +83.33 +92.11 +15.203 +83.46 +92.27 +17.27 +15.37 +84.22 +92.24 +7.2 +92.11 +33.357 +92.24 +12.1 +89.87 +25.217 +90.63 +59.23 +89.92 +33.357 +92.24 +12.1 +89.92 +78.46 +25.251 +33.69 +90.21 +24.1 +31.44 58.56 +67.205 +91.1 +67.48 +92.29 +15.40 +89.87 +24.14 +57.184 +33.126 +93.231a +17.12 +83.23 +92.24 +57.183 +89.87 +33.69 +92.11 +36.31 +92.1 +89.87 +85.65 +63.2 +15.36 +36.31 +92.11 +89.87 +13.9 +23.27 +79.123 +93.231a 93.232 +92.11 +83.13 +92.24 +7.3 +92.11 +89.92 +13.69 +11.1 +78.3 +57.184 +89.92 +58.37 +92.27 +85.1 +23.21 +89.108 +92.11 +89.87 +33.382 +92.24 +11.49 +89.92 +92.24 +53.94 +92.11 +90.33 +92.24 +36.38 +92.11 +33.69 +33545 89.108 +92.24 +57.184 +89.92 +88.295 +23.1 +89.92 +23.34 +89.87 +33.184 +92.24 +93.169a +33.69 +90.58 +92.11 +69.3 +57.40 +23.141 +33564 92.24 +23.129 +89.125 +92.24 +23.148 +23.148 +69.3 +15.81 +33.307 +88.12 +89.125 +88.295 +89.57 +41.52 +33579 92.24 +33.69 +90.58 +92.11 +92.24 +36.38 +93.190a +53.65 +67.12 +89.92 +33.171 +90.45 +64.1 +89.93 +92.24 +92.24 +11.49 +89.124 +92.24 +92.6 92.8 +23.1 +89.92 +23.34 +89.87 +92.24 +93.169a +33.69 +90.58 +92.11 +69.3 +74.5 +92.24 +11.7 +92.24 +7.34 +67.139 +33616 92.24 +10.56 +89.108 +92.11 +85.1 +53.65 +90.45 +89.124 +13.117 +67.142 +89.87 +33628 15.177 +89.122 +92.11 +92.24 +10.56 +67.47 +53.65 +67.136 +92.30 +92.24 +67.142 +89.87 +33.69 +89.93 +33.15 +90.58 +92.11 +90.21 +92.23 +6.157 +90.15 +6.162 +58.71 +19.27 +85.51 +84.20 +6.162 +58.75 +33659 89.102 +92.24 +58.71 +19.27 +89.102 +92.24 +58.75 +69.3 +64.10 +92.24 +6.157 +92.24 +90.15 +92.24 +58.71 +89.92 +92.23 +47.2 85.34 +6.198 +67.115 +84.22 +6.132 +58.75 +33685 19.31 +92.24 +6.198 +92.24 +67.115 +92.24 +6.132 +89.87 +92.11 +14.18 +89.92 +92.24 +6.132 +20.31 +89.125 +6.198 +67.115 +84.22 +6.132 +58.71 +85.36 +89.92 +92.23 +23.34 +58.75 +25.1 +67.115 +89.23 +33.69 +92.24 +58.75 +65.25 +13.1 +33719 91.5 +67.33 +61.12 67.184 +15.21 15.22 +92.11 +84.29 +43.7 +89.87 +18.9 +89.92 +23.1 +92.24 +36.38 +92.11 +92.24 +3.40 +19.50 +92.24 +8.30 +89.87 +33740 92.24 +11.49 +33.69 +92.15 +42.7 +92.27 +69.3 +71.32 +92.24 +67.184 +89.87 +33.184 +90.58 +92.11 +33.69 +92.24 +93.169a +69.8 +33.68 +92.29 +92.27 +42.7 +93.91 +33764 23.29 +92.11 +89.92 +92.24 +89.108 +92.11 +85.1 +90.21 +15.93 +84.22 +92.24 +7.2 +92.24 +12.1 +89.87 +92.24 +53.26 +92.24 +53.26 +18.1 +23.1 +89.92 +57.71 +92.24 +89.108 +92.11 +92.27 +23.1 +69.3 +71.32 +89.131 +33796 58.51 +92.24 +53.87 +89.92 +33.69 +92.11 +13.4 +37.51 +92.24 +67.184 +92.24 +9.3 +92.24 +9.3 +33811 91.5 +67.33 +58.37 +67.184 +15.93 +92.11 +84.22 +92.24 +7.20 +89.87 +33.224 +33823 85.1 +9.24 +83.2 +89.92 +92.24 +8.30 +92.11 +92.24 +82.8 +13.1 +23.173 +89.94 +24.48 +92.11 +92.24 +53.94 +89.92 +92.24 +11.49 +90.26 +67.33 +92.24 +67.184 +23.139 +89.59 +27.1 +33.427 +92.11 +89.124 +92.11 +28.1 +92.24 +30.16 +92.11 +89.87 +33.69 +92.24 +9.24 +92.24 +23.173 +90.65 +92.24 +8.30 +17.9 +89.87 +17.6 +84.22 +92.24 +83.10 +89.87 +15.36 +17.6 +89.87 +33.69 +92.24 +93.169a +90.58 +92.11 +33.180 +92.7 +90.26 +71.32 +92.24 +67.184 +88.3 +89.139 +88.112 +9.20 +21.18 +89.139 +20.31 +89.87 +24.11 +59.23 +92.11 +33.69 +92.11 +16.19 +92.24 +8.30 +92.6 +89.87 +92.24 +42.7 +89.87 +13.65 +92.24 +8.30 +92.11 +89.124 +92.11 +78.46 +88.183 +89.87 +33.158 +90.58 +92.26 +71.8 +92.14 +42.7 +92.24 +93.169a +33926 13.107 +67.136 +92.24 +67.142 +92.29 +15.40 +92.11 +84.16 +92.24 +1.46 +33.178 +33939 67.195 +67.136 +92.24 +33.178 +92.24 +12.1 +89.87 +33947 13.107 +14.40 +33.308 +92.24 +36.38 +92.11 +89.87 +30.92 +90.15 +92.11 +60.21 +92.27 +89.93 +53.74 +33.133 +93.341a +92.27 +89.93 +33.127 +93.296 +89.92 +93.25 +92.24 +10.49 +92.11 +89.92 +93.158a +89.92 +93.190b +89.92 +93.379a +89.92 +93.62 +89.92 +93.244 +89.92 +93.155 +89.92 +93.158c +93.19a +89.92 +93.341b +92.24 +33.131 +11.88 +89.92 +93.173b +93.158e +89.92 +93.173a +93.181 +92.27 +13.48 +37.113 +91.1 +15.107 +89.108 +92.11 +17.1 +83.46 +80.1 +79.85 +89.92 +11.1 +59.11 +36.38 +92.11 +89.92 +11.1 +59.11 +92.24 +11.1 +84.3 +59.23 +92.24 +93.486a +89.92 +93.480a +89.92 +92.24 +1.61 +93.602 +89.92 +93.577 +92.27 +15.81 +24.52 +92.11 +89.92 +23.136 +89.122 +92.24 +23.155 +92.11 +89.92 +92.24 +22.17 +90.7 +12.39 +53.39 +23.139 +89.92 +59.23 +92.24 +11.1 +68.60 +24.73 +92.11 +89.33 +76.1 +84.5 +92.11 +15.40 +89.92 +23.136 +59.23 +91.1 +92.11 +15.105 +92.24 +8.23 +92.11 +84.16 +92.24 +36.38 +92.11 +33.69 +25.119 +92.24 +57.53 +89.33 +92.9 +13.1 +92.24 +37.64 +92.24 +12.1 +25.119 +92.24 +23.29 +67.38 +89.33 +25.82 +25.119 +92.24 +25.138 +67.38 +89.33 +25.135 +25.119 +13.1 +67.31 +88.198 +92.7 +92.24 +9.1 +89.92 +67.31 +34.36 +92.7 +89.92 +33.422 +89.92 +33.396 +92.24 +33.126 33.396 +92.7 +64.12 +88.110 +90.43 +92.24 +9.3 +92.24 +9.3 +25.125 +67.33 +92.30 +92.24 +67.142 +89.92 +15.243 25.134 +89.23 +91.13 +92.24 +38.14 +92.7 +59.11 +83.13 +92.24 +1.11 +89.23 +34139 92.24 +58.31 +41.7 +92.24 +53.79 +92.24 +10.20 +92.11 +89.130 +22.9 +92.7 +92.24 +57.26 +89.33 +90.67 +92.24 +25.150 +92.7 +22.9 +92.7 +92.24 +23.18 +67.38 +89.33 +23.29 +22.9 +92.24 +25.135 +67.38 +89.33 +25.142 +89.92 +25.138 +22.9 +67.31 +65.23 +92.7 +33.69 +59.23 +92.24 +9.1 +89.23 +34182 92.24 +58.31 +41.7 +92.24 +53.81 +92.24 +10.20 +92.11 +89.125 +33.69 +92.7 +92.24 +24.52 +25.43 +92.24 +39.11 +92.7 +88.4 +42.7 +92.24 +88.198 +92.7 +33.470 +92.24 +33.471 +92.7 +33.178 +34210 92.24 +88.129 +92.7 +92.24 +19.1 +92.6 +83.46 +92.24 +8.22 +13.127 +89.93 +92.24 +58.37 +89.92 +89.122 +92.24 +15.203 +92.6 +92.24 +6.172 +89.93 +92.24 +6.176 +69.3 +13.146 +59.23 +33.163 +92.6 +57.71 +89.92 +89.122 +92.24 +15.203 +92.24 +92.8 +69.3 +33.165 +89.92 +64.14 +25.1 +90.22 +41.7 +92.7 +92.24 +9.1 +41.7 +92.11 +64.1 +89.92 +89.65 +25.43 +92.24 +25.43 +92.7 +58.30 +25.89 +92.7 +13.69 +89.23 +34270 92.24 +88.295 +92.24 +25.43 +92.11 +25.43 +89.23 +89.67 +34279 88.3 +92.24 +88.3 +92.7 +58.30 +25.89 +92.7 +13.69 +34288 92.24 +88.295 +92.24 +58.31 +42.7 +89.92 +89.67 +57.209 +90.14 +92.27 +30.54 +57.125 +58.30 +25.89 +92.7 +13.69 +34305 88.295 +88.295 +57.209 +89.59 +57.136 +92.24 +58.33 +89.130 +25.43 +92.24 +39.11 +92.7 +89.92 +88.3 +89.92 +57.209 +92.23 +30.54 +34324 13.1 +92.24 +38.14 +92.7 +59.11 +89.92 +13.4 +9.4 +12.4 +89.33 +92.11 +88.68 +13.1 +90.57 +92.24 +25.101 33.353 +89.92 +88.110 +13.3 +88.81 +64.14 +92.24 +12.12 +92.7 +88.81 +13.1 +91.1 +69.3 +56.30 +34354 69.5 +69.5 +56.30 +89.92 +69.3 +56.31 +34361 69.5 +69.5 +56.31 +40.8 +34366 40.8 +57.71 +34369 57.71 +92.7 +81.1 +66.2 +19.49 +16.7 +14.19 +57.152 +84.22 +92.24 +6.181 +92.7 +89.23 +92.27 +81.1 +57.92 +57.93 +92.7 +89.87 +33.69 +89.93 +33.15 +92.11 +69.16 +74.5 +24.38 +24.38 +15.182 +69.12 +59.25 +84.22 +1.55 +15.121 +69.3 +13.1 +27.16 +87.30 +92.24 +33.243 +89.124 +75.5 +59.23 +13.1 +64.12 +92.24 +33.243 +92.11 +89.94 +92.15 +24.7 +92.24 +3.66 +92.24 +83.13 +92.24 +8.23 +92.24 +11.89 +92.6 +89.124 +92.24 +7.78 +92.24 +83.13 +92.24 +57.4 +8.23 +69.3 +30.43 +92.16 +74.5 +33.69 +92.24 +11.89 +92.6 +11.89 +13.140 +15.44 +92.24 +3.66 +92.24 +83.13 +92.24 +8.23 +92.6 +92.37 +92.24 +83.13 +92.24 +8.23 +92.6 +7.78 +69.3 +24.7 +88.228 +15.44 +67.18 +92.24 +7.78 +84.4 +92.24 +8.23 +92.6 +34473 67.47 +24.35 +92.24 +3.66 +92.24 +83.13 +92.24 +8.23 +92.24 +11.89 +92.6 +15.44 +91.1 +69.3 +13.69 +23.199 +3.2 +65.22 +23.199 3.33 +65.28 +69.7 +89.129 +3.2 +65.28 +23.199 +23.199 3.33 +65.22 +89.23 +59.27 +3.2 +90.16 +92.24 +58.47 +3.33 +28.1 +89.23 +69.3 +90.16 +3.17 +18.10 +3.36 +69.7 +90.16 +3.16 +3.38 +43.18 +92.24 +88.1 +9.1 +90.16 +92.24 +88.1 +7.32 +92.24 +26.3 +13.85 +92.24 +88.1 +89.92 +92.24 +88.110 +90.16 +92.24 +88.110 +13.85 +92.24 +88.110 +89.23 +90.16 +59.53 +26.3 +33.70 +92.24 +8.19 +92.11 +34549 92.15 +92.1 +33.131 +12.9{N:001} +12.9{N:001} +34555 69.3 +42.7 +92.27 +33.69 +59.23 +92.24 +15.81 +84.18 +92.1 +89.87 +31.56 +92.1 +92.24 +33.98 +89.87 +42.7 +92.11 +33.150 +92.7 +92.14 +13.1 +64.1 +64.1 +13.1 +9.24 +45.1 +7.3 +92.27 +19.55 +34585 81.11 +89.87 +85.32 +7.41 +83.46 +92.24 +2.21 +89.87 +14.33 +13.107 +19.6 +92.24 +1.76 +92.24 +7.3 +92.30 +34602 69.3 +74.9 +16.7 +92.11 +89.26 +92.24 +65.23 +45.1 +92.11 +89.124 +92.24 +33.212 +34615 69.3 +42.7 +64.1 +13.1 +9.24 +45.1 +7.3 +83.46 +92.24 +2.14 +89.120 +7.41 +92.27 +19.6 +92.24 +1.76 +89.87 +67.53 +20.51 +34635 13.107 +92.24 +20.58 +92.24 +7.3 +92.30 +78.2 +67.45 +68.26 +59.23 +92.24 +33.98 +92.11 +84.22 +92.24 +24.52 +92.24 +11.1 +15.93 +84.22 +93.498 +89.87 +55.16 +92.12 +87.76 +23.148 +23.148 +67.62 +23.102 +92.27 +13.1 +92.11 +87.6 +34669 33.212 +90.24 +92.24 +93.169a +15.66 +84.18 +92.11 +53.77 +92.24 +93.172 +33.161 +92.11 +89.59 +15.81 +23.136 +92.24 +87.76 +92.11 +89.87 +92.24 +15.86 +84.18 +92.24 +93.169a +33.168 +92.11 +25.75 +33.69 +90.21 +65.17 +13.1 +92.27 +13.127 +92.29 +89.23 +25.43 +92.24 +11.55 +92.4 +34709 92.24 +7.20 +92.37 +45.1 +92.4 +89.87 +92.24 +93.169a +15.10 +89.107 +92.11 +89.124 +67.20 +92.11 +69.3 +83.30 +85.16 +84.3 +92.24 +7.3 +15.66 +34.11 +92.24 +55.16 +33.69 +92.11 +12.9{N:001} 87.53 +69.3 +22.16 +89.23 +69.3 +13.1 +75.2 +90.22 +83.51 +92.24 +7.50 +92.1 +15.93 +89.47 +69.8 +92.3 +65.18 +84.18 +92.6 +15.81 +89.125 +33.69 +33.98 +34759 23.136 +92.24 +87.77 +92.1 +89.23 +89.93 +92.1 +13.4 +9.24 +37.7 +37.35 +13.13 +34773 92.3 +55.17 +89.92 +33.69 +92.29 +15.34 +34780 15.34 +89.92 +58.37 +15.81 +34785 15.81 +89.92 +92.24 +87.76 +92.1 +42.7 +92.29 +34793 42.7 +89.87 +24.52 +92.29 +92.24 +93.169a +25.213 +92.11 +89.87 +16.13 +92.24 +15.156 +92.11 +11.1 +33.69 +33.69 +92.7 +69.8 +83.13 +92.24 +93.182b +59.18 +31.85 +27.27 +89.87 +15.88 +84.22 +92.24 +7.2 +92.24 +15.66 +27.27 +92.24 +87.76 +23.129 +91.1 +13.107 +67.52 +92.24 +67.208 +15.18 +84.22 +1.89 +33.129 +93.539 +89.92 +15.148 +92.11 +92.24 +36.38 +92.11 +89.92 +11.1 +78.3 +89.87 +67.45 +15.75 +92.24 +7.48 +92.24 +1.89 +34855 91.13 +15.198 +23.99 +58.52 +10.42 +92.24 +10.16 +92.11 +89.92 +92.11 +13.1 +10.61 +89.92 +11.1 +92.24 +1.89 +59.12 +85.1 +89.107 +92.11 +89.87 +24.1 +92.11 +92.24 +12.9{N:001} +25.49 +90.57 +92.11 +89.87 +33.69 +92.11 +69.3 +25.138 +89.87 +15.77 +24.73 +92.24 +6.109 +89.87 +92.24 +15.188 +17.1 +89.87 +33.69 +9.32 +92.6 +33.69 +23.94 +89.87 +17.16 +92.24 +23.121 +89.87 +68.1 +33.70 +89.87 +57.71 +92.11 +92.24 +10.16 +92.11 +34917 90.63 +25.251 +59.23 +89.92 +33.357 +92.24 +12.1 +33.69 +90.21 +53.79 +87.22 +13.83 +83.9 +92.4 +89.92 +90.21 +34.50 85.11 +92.24 +12.1 +92.24 +11.12 +92.11 +34940 15.40 +92.24 +33.98 +92.29 +89.6 +92.11 +84.22 +63.1 +92.24 +93.486a +89.92 +59.23 +92.24 +1.80 +91.1 +33.198 +93.190a +92.24 +36.38 +92.11 +90.24 +59.23 +92.29 +89.87 +33.308 +60.11 +92.12 +92.24 +36.38 +92.11 +92.24 +93.190a +15.66 +84.18 +92.24 +12.9{N:001} +33.69 +92.6 +13.4 +92.24 +15.81 +89.139 +58.37 +30.55 +89.87 +15.86 +84.18 +92.11 +92.24 +9.24 +33.69 +93.190a +92.24 +53.42 +15.66 +92.4 +84.18 +92.6 +33.69 +92.6 +13.4 +92.24 +15.81 +89.139 +58.37 +30.55 +67.33 +92.30 +92.24 +67.1 +23.139 +59.1 +89.122 +23.155 +89.92 +23.153 +89.92 +12.38 +88.110 +89.92 +24.38 +59.1 +57.102 +24.41 +89.87 +33.184 +33.69 +92.11 +15.34 +33.198 +93.190a +92.27 +24.1 +89.92 +24.52 +24.38 +24.42 +23.175 +15.227 +23.162 +23.137 +89.92 +24.68 +24.58 +23.121 +23.94 +57.53 +33.215 +89.92 +25.119 +13.1 +71.8 +92.27 +69.3 +25.180 +89.26 +92.1 +89.87 +15.37 +92.24 +33.195 +93.190a +68.1 +33.69 +90.58 +92.24 +11.1 +90.24 +93.190a +92.14 +24.14 +15.40 +84.22 +92.24 +1.86 +3.19 +90.1 +14.4 +16.7 +89.125 +92.14 +24.1 +15.40 +9.24 +13.8 +79.100 +6.162 +49.3 +91.13 +92.24 +13.8 +6.162 +79.19 +89.92 +88.253 +13.5 +83.13 +92.24 +7.5 +85.1 +89.125 +92.14 +24.1 +15.40 +53.79 +69.1 +33.69 +92.7 +35109 78.31 +53.79 +92.29 +13.4 +90.24 +92.27 +33.54 +91.13 +15.66 +92.24 +33.195 +92.1 +67.19 +67.19 +92.6 +92.27 +77.7 +92.24 +77.7 +92.6 +83.33 +92.6 +33.69 +92.7 +87.22 +83.9 +23.47 +9.34 +93.190a +92.23 +13.1 +89.124 +92.24 +79.125 +83.13 +92.24 +37.64 +92.24 +12.1 +87.22 +92.11 +13.1 +89.92 +59.23 +92.24 +87.64 +35156 92.24 +57.184 +31.56 +36.22 +92.24 +12.1 +53.41 +92.24 +53.41 +93.190a +89.124 +92.24 +11.49 +89.92 +92.24 +33.338 +92.24 +30.57 +92.24 +12.1 +76.24 +90.23 +92.25 +69.3 +53.41 +90.1 +92.11 +91.7 +92.14 +64.5 +92.24 +9.1 +92.24 +11.4 +92.29 +35192 92.14 +13.1 +64.1 +64.1 +13.1 +9.42 +92.24 +83.13 +57.207 +17.12 +89.92 +33.79 +92.26 +92.27 +33.69 +6.87 +92.7 +35210 69.3 +15.244 +33.115 +35214 69.3 +25.138 +89.23 +15.81 +93.190a +92.24 +53.42 +69.3 +23.1 +5.1 +69.9 +23.34 +6.197 +35228 33.69 +12.37 +35231 15.81 +92.24 +9.3 +92.24 +9.3 +23.1 +89.92 +23.34 +35240 33.69 +91.13 +9.24 +23.19 +89.92 +88.288 +34.11 +57.184 +89.92 +88.295 +91.12 +88.16 +92.24 +32.41 +90.7 +59.23 +92.24 +58.26 +92.11 +35260 33.161 +92.12 +92.24 +11.49 +92.11 +90.22 +23.1 +89.108 +92.11 +89.87 +15.93 +84.22 +92.24 +7.2 +92.24 +11.49 +17.23 +89.87 +91.13 +9.34 +92.18 +85.1 +83.13 +92.24 +1.89 +88.295 +89.92 +27.8 +90.21 +23.21 +83.13 +92.24 +7.3 +92.24 +11.49 +15.191 +6.131 +6.205 +89.92 +17.1 +83.40 +83.25 +92.24 +8.49 +92.11 +25.138 +68.1 +92.24 +8.73 +79.79 +92.24 +8.49 +92.11 +89.87 +92.24 +8.12 +92.24 +8.10 +92.11 +79.83 +89.92 +34.62 +92.24 +8.49 +92.11 +89.87 +47.14 +92.24 +6.205 +89.124 +24.1 +92.24 +11.49 +92.24 +33.315 +92.11 +31.5 +35339 33.69 +89.65 +92.29 +13.4 +53.79 +71.14 +28.1 +92.14 +35348 58.30 +92.24 +9.34 +35352 24.73 +92.11 +89.33 +88.295 +13.1 +89.87 +33.28 +92.24 +93.169a +33.69 +90.58 +92.11 +93.341i +35366 92.6 +35368 33.69 +89.87 +92.24 +33.243 +33.69 +33.69 +60.11 +57.222 +13.1 +57.211 +92.12 +92.24 +35381 57.219 +6.75 +60.37 +89.94 +92.24 +58.37 +60.28 +69.3 +57.1 +92.11 +57.153 +59.25 +57.223 +89.50 +92.14 +92.11 +78.28 +25.43 +92.11 +33.184 +93.341i +33.69 +31.29 +90.21 +92.27 +92.24 +78.28 +57.223 +89.87 +92.24 +33.69 +92.11 +72.13 +30.108 +89.87 +16.13 +84.18 +92.24 +9.34 +92.24 +93.341i +33.69 +24.7 +92.29 +92.24 +9.34 +15.93 +84.22 +92.6 +92.24 +7.3 +2.7 +92.1 +90.57 +8.49 +69.3 +57.71 +89.124 +92.29 +92.24 +8.73 +79.79 +92.1 +92.24 +8.49 +89.87 +92.24 +8.12 +92.11 +79.83 +34.62 +92.1 +69.3 +90.90 +89.124 +92.29 +67.131 +92.27 +15.93 +69.3 +35462 34.62 +92.1 +92.24 +8.49 +6.202 +92.24 +8.10 +92.1 +69.3 +47.14 +89.124 +92.29 +6.205 +47.14 +92.24 +8.49 +92.1 +35480 89.29 +33.69 +92.6 +40.8 +92.24 +88.289 +92.11 +92.24 +59.1 +89.33 +25.43 +78.3 +89.124 +92.27 +59.13 +40.8 +78.8 +25.43 +89.87 +33.69 +92.11 +40.8 +92.6 +92.24 +88.310 +89.87 +68.1 +92.24 +34.10 +31.5 +35512 92.14 +92.29 +13.4 +92.27 +35517 88.310 +40.8 +89.87 +33.69 +90.58 +92.24 +9.34 +92.24 +31.85 +92.6 +21.27 +92.6 +15.34 +13.62 +22.42 +91.1 +13.107 +67.52 +92.24 +61.1 +35538 92.11 +15.21 +89.90 +1.88 1.89 +89.92 +1.92 +33.256 +89.92 +33.215 +92.24 +37.64 +92.24 +12.1 +89.92 +89.107 +92.11 +92.24 + +89.92 +9.34 +92.12 +92.27 +35561 23.139 +89.122 +12.38 +88.110 +89.92 +23.143 +93.253c +92.24 +33.129 +93.242 +84.3 +92.27 +12.37 +60.16 +15.40 +89.92 +93.188 +10.54 +93.386 +37.86 +93.144b +89.92 +93.345 +89.92 +58.37 +59.1 +92.18 +35.37 +92.11 +89.77 +92.24 +57.16 +92.11 +35595 15.123 +11.1 +59.11 +89.92 +92.24 +89.90 +1.88 1.89 +15.83 +84.18 +92.11 +33.69 +89.76 +33.15 +15.40 +92.24 +43.6 +92.24 +43.6 +92.24 +3.35 +92.11 +89.87 +67.136 +92.24 +43.6 +92.11 +35623 15.118 +83.25 +92.24 +1.99 +89.87 +19.52 +89.92 +92.24 +4.41 +92.24 +4.41 +23.11 +92.11 +89.92 +58.37 +15.118 +84.20 +92.24 +2.21 +89.87 +23.191 +79.82 +89.26 +92.24 +69.3 +57.1 +2.9 +89.92 +58.37 +15.118 +35654 83.9 +92.24 +3.17 +89.87 +23.193 +92.24 +3.17 +23.120 +92.11 +89.92 +58.37 +15.118 +84.22 +92.24 +2.14 +92.24 +65.20 +89.87 +23.191 +23.199 +23.199 3.33 +60.78 +92.29 +33.69 +33.77 +92.24 +57.1 +8.24 +24.58 +31.56 +35685 33.180 +92.11 +92.24 +36.38 +92.11 +92.14 +13.4 +92.29 +92.24 +33.15 +89.87 +92.24 +33.69 +92.7 +13.142 +28.1 32.16 +92.24 +28.77 +92.24 +37.64 +92.24 +12.1 +89.124 +92.24 +63.21 +89.76 +33.15 +89.49 89.59 +24.7 +69.3 +32.11 +89.92 +24.52 +69.3 +32.5 +35721 13.4 +92.29 +92.24 +33.15 +92.24 +3.35 +13.4 +92.24 +33.260 +92.24 +12.1 +89.94 +92.24 +83.25 +92.24 +1.99 +13.4 +92.24 +24.52 +67.44 +15.81 +92.24 +12.34 +89.87 +15.203 +92.24 +33.260 +84.3 +92.24 +26.3 +92.11 +89.59 +69.3 +31.102 +21.27 +89.94 +92.24 +84.20 +92.24 +2.21 +92.27 +35763 24.52 +89.79 +25.123 +31.51 +92.24 +33.260 +35770 92.29 +3.47 +69.3 +57.1 +92.27 +67.109 +67.109 +31.35 +89.87 +67.33 +67.1 +88.308 +34.26 +89.94 +92.24 +83.9 +92.24 +3.17 +15.118 +92.29 +13.4 +92.24 +24.52 +35794 89.26 +25.224 +89.92 +57.30 +89.92 +25.111 +92.24 +41.18 +15.10 +22.22 +35805 69.3 +23.203 +89.94 +92.24 +84.22 +92.24 +65.22 +2.14 +92.29 +13.4 +92.18 +89.80 +26.3 +88.4 +89.92 +88.1 +24.52 +92.24 +33.260 +31.48 +89.87 +23.199 +89.80 +25.174 +35830 92.23 +6.104 +24.73 +79.114 +92.11 +6.118 +89.139 +83.51 +6.106 +85.32 +89.125 +84.20 +6.105 +85.32 +89.59 +92.24 +15.93 +24.7 +92.24 +14.36 +89.23 +69.3 +13.1 +28.69 +92.27 +69.3 +28.28 +13.48 +69.7 +28.70 +92.27 +69.5 +69.5 +27.2 +89.92 +89.48 +28.28 +13.50 +89.50 +27.58 +92.16 +31.56 +89.23 +71.8 +92.27 +57.1 +57.71 +92.11 +89.92 +71.8 +92.27 +69.3 +57.1 +35884 92.27 +57.1 +31.30 +15.203 +89.122 +92.11 +35891 15.86 +84.18 +92.11 +92.24 +10.16 +89.92 +92.24 +10.49 +92.11 +35901 69.3 +74.5 +15.76 +92.11 +90.44 +92.24 +11.1 +89.87 +33.198 +92.11 +92.24 +10.16 +92.6 +89.92 +92.24 +10.49 +92.6 +85.8 +83.20 +34.50 +92.6 +25.1 +89.87 +92.24 +33.28 +33.69 +90.58 +92.11 +10.16 +92.1 +89.92 +11.23 +92.1 +92.29 +13.4 +92.24 +92.24 +33.260 +92.24 +12.1 +36.14 +89.92 +42.7 +35945 13.107 +67.33 +92.22 +92.24 +67.186 +35951 92.11 +15.95 +84.22 +6.41 +89.92 +92.24 +36.38 +92.11 +89.87 +33.69 +90.58 +92.11 +15.31 +84.16 +92.24 +83.43 +92.24 +1.72 +89.87 +54.4 +89.124 +54.1 +92.11 +23.70 +91.1 +15.107 +14.6 +14.4 +83.47 +92.24 +1.72 +35983 54.14 +89.92 +21.2 +35987 15.77 +23.77 +92.11 +33.69 +87.50 +87.50 +23.106 +89.87 +92.24 +23.74 +33.331 +92.24 +14.4 +89.92 +92.24 +14.25 +92.24 +2.7 +36006 68.34 +36008 13.48 +14.23 +89.87 +33.69 +92.11 +83.6 +92.24 +31.85 +92.7 +89.87 +25.252 +25.213 +33.69 +90.58 +92.26 +71.7 +92.14 +92.29 +13.4 +89.33 90.21 +36029 92.24 +14.4 +89.92 +92.24 +2.7 +33.325 +36036 36.15 +92.11 +91.1 +54.13 +84.16 +92.24 +1.79 +92.24 +93.450 +36046 85.1 +83.43 +92.24 +93.444a +89.87 +92.11 +15.40 +84.20 +92.24 +1.60 +15.78 +9.24 +92.12 +84.4 +92.24 +1.88 1.89 +90.65 +12.37 +89.92 +67.78 +59.12 +69.3 +49.1 +6.162 +89.92 +83.13 +7.3 +69.3 +85.55 +89.125 +83.13 83.9 +92.24 +7.75 +89.87 +24.1 +92.24 +93.169a +33.83 +17.22 +92.11 +89.87 +33.80 +78.2 +33.69 +36091 92.1 +36094 93.169a +12.15 +92.24 +12.15 +92.24 +12.4 +33.170 +92.6 +69.3 +92.1 +38.13 +89.23 +36107 92.24 +12.39 +92.24 +53.39 +15.40 +90.7 +92.24 +9.24 +89.23 +78.3 +67.78 +18.5 +92.11 +89.92 +18.15 +6.16 +89.92 +6.17 +37.120 +89.87 +19.32 +92.24 +6.14 +15.161 +36132 92.24 +12.37 +84.16 +92.24 +1.86 +89.87 +33.180 +92.11 +92.24 +93.169a +92.14 +92.6 +33.126 +13.4 +89.87 +92.24 +33.69 +93.229 +89.33 +15.93 +12.37 +59.1 +84.22 +92.11 +89.87 +33.168 +92.11 +90.22 +69.3 +33.325 +92.11 +84.22 +92.24 +1.20 +15.37 +36168 85.1 +83.2 +4.8 +4.36 +59.2 +23.9 +83.47 +92.24 +1.46 +36178 33.168 +92.11 +90.22 +13.138 +92.11 +84.22 +92.30 +15.93 +89.87 +13.138 +92.11 +89.87 +92.24 +12.37 +15.40 +89.122 +92.24 +9.24 +15.93 +84.22 +92.24 +4.36 +89.87 +15.222 +92.24 +4.8 +84.21 +92.24 +1.50 +84.22 +92.24 +1.72 +89.87 +23.119 +89.87 +92.24 +44.1 +24.1 +92.24 +13.107 +15.61 +89.87 +33.198 +90.59 +92.24 +11.61 +89.92 +90.59 +92.24 +1.93 +89.87 +15.40 +27.5 +92.24 +13.107 +89.87 +15.81 +84.18 +92.24 +93.169a +89.87 +27.27 +17.12 +92.24 +9.24 +89.122 +92.27 +92.24 +12.37 +15.40 +49.1 +89.92 +30.22 +83.25 +92.24 +8.49 +92.24 +93.169a +89.87 +25.252 +89.87 +33.198 +92.11 +92.24 +24.1 +92.16 +23.136 +92.24 +12.41 +89.87 +33.161 +59.23 +92.24 +11.1 +92.24 +1.80 +92.24 +93.450 +92.11 +15.37 +84.3 +92.11 +89.33 +25.251 +78.2 +90.65 +36285 92.11 +15.95 +84.22 +6.41 +15.88 +89.87 +33.170 +92.11 +92.24 +9.24 +89.122 +92.27 +15.40 +92.24 +12.37 +85.1 +89.107 +92.11 +89.124 +15.43 +92.11 +33.69 +15.88 +84.22 +92.24 +7.2 +92.6 +89.87 +33.201 +59.7 +92.6 +41.7 +92.24 +12.1 +89.87 +15.37 +84.31 +63.1 +92.24 +1.88 1.89 +33.207 +59.7 +41.7 +92.11 +92.24 +93.169a +36332 67.33 +92.24 +15.88 +92.24 +93.169a +34.53 +92.11 +92.24 +11.1 +89.23 +59.23 +36344 30.55 +92.11 +36347 91.13 +15.81 +9.24 +92.27 +33.126 +93.156 +89.92 +92.29 +37.56 +92.24 +7.20 +13.4 +89.87 +17.22 +83.25 +92.24 +8.49 +93.169a +33.315 +92.11 +15.93 +84.22 +92.24 +7.2 +92.11 +89.33 +10.46 +58.52 +78.42 +67.167 +60.21 +13.4 +92.11 +89.92 +92.11 +23.99 +36384 67.136 +92.24 +15.15 +92.11 +92.24 +11.1 +19.48 +92.11 +89.87 +9.34 +13.1 +13.8 +14.17 23.182 +23.182 +67.131 +67.167 +60.21 +92.18 +69.3 +74.9 +90.7 +92.23 +23.139 +15.77 +84.12 +24.73 +92.24 +6.180 +92.24 +6.172 +92.11 +89.87 +67.113 +68.42 +92.24 +14.17 23.182 +92.24 +23.182 +92.11 +89.87 +33.69 +92.24 +93.169a +92.14 +92.24 +24.73 +92.1 +89.87 +33.277 +59.23 +33.69 +92.24 +93.296 +87.50 +92.24 +11.1 +19.45 +92.6 +89.92 +19.44 +89.124 +92.24 +93.169a +33.69 +24.73 +92.1 +92.12 +89.23 +92.1 +28.1 +76.1 +15.40 +90.15 +92.1 +36459 92.24 +9.34 +24.1 +90.21 +69.3 +28.83 +16.6 +15.81 +89.87 +17.22 +92.11 +89.26 +92.27 +89.15 +24.73 +92.11 +33.198 +83.33 +59.23 +92.24 +11.1 +89.92 +89.86 +23.136 +67.113 +89.87 +92.24 +33.69 +92.11 +9.47 +92.24 +31.85 +92.6 +23.136 +92.6 +15.34 +13.62 +22.42 +67.128 +92.11 +33.70 +15.81 +92.12 +84.5 +92.24 +53.93 +33.69 +90.21 +23.99 +92.24 +10.46 +92.6 +67.130 +22.23 +92.24 +33.243 +89.124 +92.24 +93.169a +24.52 +33.28 +92.11 +69.3 +25.252 +36524 31.85 +36526 23.136 +89.87 +15.81 +84.22 +92.24 +7.3 +69.3 +13.140 +15.93 +92.12 +89.107 +92.11 +89.131 +36540 93.296 +89.92 +93.190b +89.92 +93.158a +89.92 +92.24 +10.14 +92.24 +10.36 +89.92 +92.24 +10.16 +89.94 +59.23 +25.138 +89.92 +52.1 +92.11 +89.124 +92.24 +33.69 +69.3 +25.138 +69.3 +23.99 +89.125 +23.66 +89.87 +33.410 +92.11 +28.1 +90.21 +23.99 +89.124 +92.11 +18.6 +92.24 +8.30 +92.11 +33.77 +33.69 +92.24 +9.41 +23.94 +89.87 +15.90 +92.24 +26.9 +92.11 +89.87 +17.6 +67.113 +89.87 +33.325 +92.11 +57.71 +23.1 +89.87 +25.220 +92.24 +10.18 +92.11 +89.124 +92.24 +33.327 +92.11 +92.23 +33.69 +92.24 +13.107 +36612 33.309 +92.24 +60.21 +37.98 +92.11 +76.1 +89.92 +37.35 +37.9 +59.23 +92.24 +12.37 +89.92 +23.155 +23.139 +89.87 +15.66 +92.11 +33.256 +92.24 +37.64 +92.24 +12.1 +89.92 +23.136 +89.87 +33.69 +90.58 +92.11 +92.23 +15.203 +89.57 +92.24 +15.19 +69.9 +6.218 +69.9 +6.145 +69.9 +5.8 +69.9 +6.73 +69.9 +89.91 +60.11 +6.176 +57.1 +89.92 +71.8 +84.22 +92.27 +7.3 +15.93 +83.2 +85.55 +89.87 +84.10 +15.40 +89.92 +71.8 +59.7 +69.3 +34.53 +92.7 +15.40 +84.3 +92.24 +1.88 +92.30 +92.24 +2.15 +89.122 +92.24 +8.49 +92.7 +16.8 +89.57 +33.264 +90.34 +92.11 +89.87 +15.40 +15.21 +83.12 84.31 +92.24 +1.92 +33.215 +89.92 +23.139 +83.8 +36703 33.212 +93.144b +92.24 +37.78 +92.24 +13.107 +59.23 +89.87 +32.10 +89.26 +92.24 +33.69 +90.1 +92.12 +90.21 +93.190a +23.94 +89.121 +23.121 +89.94 +90.1 +92.12 +90.21 +93.142 +24.18 +89.94 +58.37 +90.21 +53.79 +92.12 +92.24 +67.98 +23.93 +89.87 +33.69 +93.144b +93.190a +92.1 +20.80 +89.124 +92.14 +13.4 +92.29 +89.6 +92.27 +33.212 +92.31 +89.87 +68.60 +24.1 +92.11 +91.1 +15.88 +92.24 +53.74 +33.201 +92.11 +59.7 +42.7 +89.87 +15.168 +92.11 +15.53 +28.67 +28.67 +84.16 +1.88 +33.129 +93.432 +89.87 +92.24 +11.1 +27.2 +15.156 +92.11 +89.87 +34.53 +92.11 +33.70 +92.11 +89.6 +92.24 +37.64 +92.24 +12.1 +89.92 +92.24 +57.40 +23.139 +36793 23.136 +36795 92.24 +67.186 +68.1 +67.118 68.51 +89.87 +15.77 +92.24 + +33.69 +92.11 +15.43 +92.24 +11.1 +89.59 +15.10 +84.22 +92.24 +83.19 +1.92 +89.92 +1.93 +34.61 +89.92 +27.27 +5.1 +89.33 +83.1 +83.13 +1.86 +80.1 +85.1 +89.87 +33.69 +90.58 +92.11 +57.71 +92.11 +23.1 +92.7 +89.124 +92.24 +33.69 +69.3 +13.69 +92.4 +59.1 +64.18 +5.8 +60.14 +89.92 +4.59 +60.11 +36848 69.16 +15.34 +92.4 +57.188 +90.41 +59.23 +92.24 +11.1 +92.29 +5.1 +89.23 +13.69 +78.42 +60.43 +9.24 +89.87 +33.69 +90.58 +92.24 +36.38 +92.11 +17.24 +92.11 +11.5 +78.42 +89.91 +60.28 +89.87 +42.7 +61.9 +36879 17.24 +59.23 +89.87 +18.1 +92.24 +60.14 +5.8 +89.92 +92.24 +60.11 +4.59 +24.10 +84.16 +92.24 +1.11 +33.356 +92.11 +89.87 +19.38 +89.87 +57.71 +92.24 +36.38 +57.116 +92.24 +11.1 +89.87 +23.1 +36908 23.16 +63.2 +89.87 +15.203 +92.24 +57.24 +92.11 +19.40 +6.150 +60.21 +91.1 +13.107 +67.136 +92.24 +36923 33.178 +92.11 +58.51 +58.51 +85.2 +92.11 +92.24 +36.38 +36932 33.180 +92.11 +33.69 +92.14 +92.1 +13.4 +92.24 +11.1 +33.69 +89.87 +92.24 +33.184 +33.69 +93.190a +92.24 +53.42 +89.94 +58.37 +93.142 +89.94 +58.37 +90.21 +53.79 +92.12 +92.24 +67.98 +23.93 +89.87 +33.69 +92.11 +89.124 +92.7 +92.14 +92.1 +13.4 +33.69 +89.87 +93.296 +33.184 +33.69 +92.24 +53.82 +92.24 +12.1 +36977 92.24 +33.331 +92.11 +33.327 +92.23 +33.69 +92.29 +33.69 +90.21 +71.34 +92.24 +9.3 +92.24 +9.3 +59.1 +24.78 +89.92 +30.117 +90.7 +92.24 +53.77 +89.92 +53.88 +89.92 +53.94 +89.87 +20.61 +89.87 +92.24 +60.50 +67.186 +23.94 +89.87 +33.69 +90.58 +59.23 +89.65 +92.12 +25.1 +36.35 +92.1 +15.81 +30.52 +92.25 +89.87 +24.83 +92.24 +6.27 +92.11 +37027 67.92 +89.87 +36.31 +92.1 +89.23 +37033 92.27 +25.1 +92.24 +23.88 +92.11 +21.18 21.27 +27.29 +92.11 +89.94 +71.8 +92.27 +23.114 +92.24 +23.88 +92.11 +90.43 +92.1 +92.29 +21.18 21.27 +92.11 +89.23 +92.14 +35.2 +9.1 +57.189 +92.24 +1.39 +63.1 +89.124 +92.25 +57.68 +89.139 +57.69 +89.23 +71.8 +92.27 +25.193 +92.1 +89.92 +92.24 +92.2 +33.98 +92.29 +92.24 +9.3 +92.24 +9.3 +25.193 +37082 15.81 +89.80 +92.24 +14.49 79.18 +92.11 +89.92 +92.24 +12.12 +89.92 +92.24 +88.24 +12.28 +89.124 +33.69 +92.7 +70.3 +85.1 +92.12 +92.24 +83.3 +85.8 +92.27 +69.5 +69.5 +90.78 +23.99 +67.119 +71.8 +90.79 +92.24 +37.64 +92.24 +12.1 +37116 13.107 +67.48 +92.24 +33.98 +92.29 +78.42 +67.186 +60.17 +37125 15.168 +93.296 +89.92 +93.190b +89.92 +93.158a +15.101 +83.47 +92.24 +1.46 +33.178 +89.87 +13.107 +67.136 +92.24 +33.178 +92.11 +92.24 +24.1 58.14 +92.24 +8.18 +92.11 +58.36 +89.92 +92.24 +6.162 +92.11 +14.50 +14.47 +89.87 +91.13 +9.24 +60.11 +33.157 +92.11 +37161 13.4 +93.266 +89.92 +93.142 +92.27 +24.1 +89.80 +14.49 79.18 +33.69 +92.24 +23.101 +92.11 +92.27 +13.106 +83.23 +93.480a +71.36 +37179 92.24 +93.296 +89.92 +92.24 +89.107 +92.11 +37186 23.71 +23.66 +89.87 +23.76 +24.1 +92.24 +14.49 79.18 +92.11 +89.92 +92.24 +60.11 +9.24 +92.24 +17.2 +92.11 +89.87 +13.107 +67.136 +92.24 +15.50 +92.11 +84.3 +92.11 +33.69 +92.24 +93.296 +90.58 +92.24 +93.169a +87.50 +65.43 66.2 +13.1 +92.4 +83.1 +85.1 +37222 42.29 +7.9 +60.12 +37226 92.6 +89.92 +37229 93.266 +89.92 +37232 93.142 +69.3 +32.4 +92.27 +33.69 +89.87 +92.29 +92.11 +33.69 +13.107 +1.34 +89.87 +14.62 +92.11 +37247 25.252 +67.33 +92.24 +15.93 +92.11 +84.22 +92.24 +1.34 +89.87 +33.103 +15.1 +84.4 +92.24 +1.34 +33.69 +92.29 +13.4 +92.24 +12.15 +92.1 +92.24 +30.92 +92.11 +36.14 +89.87 +67.33 +92.24 +15.1 +92.24 +33.103 +27.27 +93.169a +58.51 +89.87 +92.11 +33.121 +37284 92.23 +33.198 +67.136 +92.30 +92.24 +67.142 +92.23 +92.27 +24.1 +37294 13.107 91.5 +92.24 +67.208 +67.186 +15.107 +92.11 +84.3 +92.24 +1.46 +13.120 +92.11 +11.1 +78.3 +37308 91.13 +9.24 +63.20 84.3 +92.24 +11.1 +33.81 +33.69 +33.243 +33.170 +92.6 +30.45 35.8 +90.57 +92.24 +10.42 +92.1 +89.33 +58.52 +92.1 +13.4 +89.92 +91.13 +12.37 +88.146 +92.11 +89.87 +67.113 +33.83 +89.92 +23.167 +92.11 +89.79 +14.27 +89.92 +37342 15.51 +89.122 +92.11 +19.46 +92.11 +89.92 +33.170 +92.24 +36.38 +92.6 +90.22 +53.102 +92.11 +37356 69.3 +74.5 +89.87 +33.28 +92.24 +93.169a +33.69 +91.14 +11.4 +31.98 +89.92 +88.264 +67.119 +67.30 +85.1 +89.112 +92.7 +89.92 +25.171 +92.7 +15.172 +83.1 +92.24 +10.42 +92.6 +89.87 +67.128 +15.77 +92.11 +23.168 +92.11 +92.24 +12.37 +89.92 +23.167 +89.124 +33.419 +92.24 +93.169a +92.24 +12.39 +92.24 +53.39 +89.92 +23.136 +92.24 +9.41 +89.87 + +92.11 +92.24 +10.14 +92.11 +37410 25.219 +59.23 +89.27 +92.24 +76.2 +92.24 +12.1 +37418 59.23 +25.213 +89.27 +59.23 +92.27 +42.7 +33.69 +90.58 +92.24 +36.38 +92.11 +24.64 29.5 +92.7 +37432 92.24 +24.64 29.5 +92.7 +92.24 +33.98 +92.29 +89.23 +92.24 +9.3 +92.24 +9.3 +67.62 +37.12 +37446 37.12 +9.1 +89.124 +92.24 +32.7 +92.24 +33.98 +92.29 +89.92 +37456 28.82 +84.3 +92.11 +89.49 +69.3 +32.28 +92.11 +89.92 +25.252 +33.180 +92.11 +89.6 +92.24 +33.98 +92.29 +37472 68.7 +83.9 +92.11 +33.446 +92.24 +71.8 +92.14 +92.11 +13.1 +87.22 +89.124 +92.24 +93.169a +28.1 +92.24 +30.16 +92.24 +26.3 +92.11 +18.2 +9.42 +85.40 +92.11 +83.25 +92.25 +89.87 +33.69 +92.11 +71.8 +92.27 +34.53 +92.29 +92.24 +9.42 +90.23 +92.24 +33.126 +92.1 +92.1 +34.53 +89.92 +71.8 +92.27 +92.1 +34.53 +34.53 +92.24 +15.66 +92.1 +89.23 +92.24 +87.58 +83.9 +59.23 +92.7 +13.5 +92.29 +13.1 +87.22 +37532 33.28 +37534 93.190b +33.69 +87.50 +24.1 +92.12 +89.76 +92.24 +33.126 +92.6 +53.102 +12.37 +89.87 +13.146 +92.11 +89.33 +69.3 +15.156 +89.108 +92.4 +89.124 +33.69 +90.58 +92.11 +93.169a +69.3 +13.146 +89.23 +92.27 +69.3 +85.1 +90.31 +92.7 +90.36 +92.7 +13.1 +37570 13.107 +67.33 +92.24 +67.70 +92.24 +67.142 +92.24 +15.103 +92.11 +37580 92.11 +92.24 +30.80 +30.80 +92.24 +15.18 +84.16 +93.480a +89.87 +15.66 +33.195 +67.19 +67.19 +92.11 +89.87 +15.34 +15.93 +84.22 +1.92 +93.569 +37601 77.3 +92.11 +37604 69.3 +34.53 +92.11 +89.33 +92.24 +9.9 +92.11 +37612 15.18 +84.16 +93.480a +89.87 +27.5 +92.24 +36.38 +93.158a +89.92 +93.190b +33.69 +12.9{N:001} +25.1 +33.69 +2.3 +15.107 +90.15 +92.24 +1.5 +37632 20.47 +92.11 +89.124 +16.13 +33.419 +92.11 +89.87 +15.10 +84.16 +58.37 +1.92 +91.1 +15.10 +92.11 +83.47 +92.24 +15.19 +33.69 +92.12 +90.58 +92.11 +36.31 +92.6 +71.8 +83.5 +15.37 +37659 33.69 +92.11 +92.24 +93.169a +92.24 +4.10 +1.56 +57.1 +89.92 +92.24 +4.41 +92.24 +4.41 +6.146 +89.124 +92.24 +9.3 +92.24 +9.3 +69.3 +57.1 +83.6 +92.24 +23.83 +23.83 +89.94 +33.69 +90.58 +58.37 +36.31 +92.1 +89.124 +92.24 +33.69 +13.138 +92.1 +67.18 +15.37 +35.46 +92.24 +10.14 +92.1 +89.124 +33.69 +92.11 +33.137 +92.24 +23.121 +52.4 +92.24 +37710 23.121 +89.124 +92.6 +15.37 +33.207 +92.24 +37.64 +92.24 +12.1 +89.94 +33.69 +89.93 +58.37 +36.31 +92.6 +12.9{N:001} +89.124 +67.18 +13.138 +92.1 +33.23 +92.24 +83.13 +92.24 +7.2 +92.1 +89.87 +33.69 +90.58 +92.11 +92.24 +93.169a +92.23 +68.6 +92.24 +68.6 +37747 6.4 +37749 24.7 +37751 92.24 +83.40 +66.3 +13.1 +92.24 +37.64 +92.24 +12.1 +37760 67.48 +92.29 +37.96 +92.24 +12.9{N:001} +58.37 +60.30 +89.87 +15.66 +92.11 +89.91 +60.11 +83.33 +83.33 +92.11 +84.22 +59.23 +1.89 +89.92 +80.1 +83.5 +67.62 +92.37 +15.81 +89.87 +33.69 +90.58 +92.11 +91.6 +92.24 +43.15 +59.11 +89.124 +92.24 +42.43 +59.3 +89.50 +33.170 +92.24 +57.12 +92.24 +43.15 +89.59 +42.43 +15.68 +89.57 +92.24 +43.15 +92.11 +15.35 +91.13 +15.66 +92.7 +64.12 +4.24 +37816 83.10 83.9 +4.11 +69.3 +15.188 +6.144 +69.3 +6.145 +69.3 +6.182 +89.92 +92.23 +84.30 +92.24 +15.19 +33.20 +89.94 +71.8 +84.22 +92.27 +7.3 +15.93 +67.18 +33.69 +22.42 +92.24 +10.8 +92.29 +89.87 +89.67 +83.2 +85.1 +9.4 +22.42 +13.25 +90.57 +92.11 +92.24 +22.42 +92.7 +37858 90.57 +92.7 +15.89 +89.87 +83.13 +92.11 +92.24 +7.3 +85.55 +23.1 +89.92 +23.34 +92.24 +90.14 +92.11 +89.23 +65.17 +92.24 +42.43 +92.24 +57.173 +92.11 +69.3 +15.2 +84.4 +7.3 +84.22 +7.3 +89.92 +71.8 +84.22 +92.27 +1.88 +15.93 +89.87 +34.53 +92.7 +23.1 +92.24 +57.116 +92.7 +89.92 +23.139 +92.24 +13.8 +92.11 +23.145 +89.92 +33.69 +92.11 +67.21 +90.57 +92.7 +92.24 +37.64 +92.24 +12.1 +89.94 +71.8 +84.22 +92.27 +1.88 +15.93 +37922 69.3 +34.53 +92.7 +15.40 +84.22 +92.24 +1.103 +92.11 +33.69 +37932 92.24 +2.15 +92.24 +18.21 +92.4 +90.16 +92.24 +1.88 +92.7 +83.47 +92.24 +8.49 +16.9 +92.7 +89.130 +92.29 +28.1 +90.21 +67.21 +92.24 +37.64 +92.24 +12.1 +33.69 +92.7 +90.21 +93.585 +67.33 +92.24 + +92.30 +25.172 +13.1 +64.18 +92.24 +1.88 +92.30 +22.9 +92.6 +93.615 +22.9 +92.6 +93.432 +89.33 +89.65 +83.13 +93.602 +89.92 +93.577 +13.107 +92.24 +76.7 +92.24 +13.107 +83.9 +92.7 +71.14 +67.24 +13.8 +6.164 +89.92 +14.73 +17.12 +41.52 +89.130 +93.602 +89.92 +93.577 +25.172 +13.1 +67.33 +92.24 +30.110 +64.18 +92.7 +89.92 +93.498 +69.3 +92.6 +84.19 +1.5 +87.20 +84.19 +92.24 +1.19 +15.107 15.108 +92.24 +31.56 +92.7 +92.1 +31.56 +89.92 +92.24 +31.100 +92.7 +92.1 +31.100 +89.94 +92.24 +92.1 +31.100 +31.100 +92.24 +15.66 +92.1 +38038 15.88 +92.24 +60.30 +89.79 +25.123 +33.69 +12.9{N:001} +38046 92.24 +12.37 +36.18 +92.4 +89.76 +92.24 +33.126 +92.6 +89.87 +33.69 +92.11 +24.14 +92.24 +12.34 93.330 +64.12 +14.16 +84.4 +92.24 +1.5 +15.118 +91.13 +37.98 +92.7 +92.24 +37.35 +92.24 +15.226 20.22 +83.49 +4.52 +89.92 +4.56 +89.92 +37.9 +59.23 +92.24 +76.1 +92.24 +39.11 +89.92 +92.23 +92.7 +69.5 +69.5 +20.25 +89.130 +89.26 +92.29 +69.3 +25.125 +89.33 90.21 +92.24 +12.37 +92.7 +36.18 +89.124 +25.125 +89.33 90.21 +92.24 +33.126 +92.7 +33.62 +83.13 +92.24 +1.11 +67.33 +92.11 +92.24 +67.1 +25.133 +92.24 +12.18 +92.24 +88.24 +89.87 +33.69 +33.351 +92.6 +12.12 +12.9{N:001} +92.24 +1.3 +38128 92.24 +1.3 +89.33 +28.80 +92.29 +89.122 +32.35 +89.92 +32.27 +89.92 +28.38 +92.11 +9.43 +69.1 +92.24 +12.12 +89.33 +61.9 +25.88 +13.3 +90.20 +92.6 +63.2 +92.1 +57.77 +90.1 +92.24 +12.12 +92.1 +89.92 +92.23 +28.1 +92.14 +13.4 +92.24 +12.15 +89.131 +38166 92.24 +12.12 +89.92 +92.14 +13.4 +92.24 +12.12 +89.131 +38175 92.24 +12.15 +89.92 +71.8 +92.27 +28.38 +30.56 +92.24 +12.15 +89.87 +16.13 +84.18 +92.24 +36.38 +28.67 +28.67 +33.69 +25.119 +92.24 +8.23 +92.24 +24.7 +92.27 +24.7 +89.23 +33.69 +92.7 +90.21 +59.1 +53.79 +89.92 +37.67 +25.1 +24.1 +92.27 +92.7 +24.7 +38213 69.3 +24.1 +89.92 +24.52 +92.27 +24.52 +38220 69.3 +24.52 +91.1 +91.13 +33.338 +92.12 +17.6 +27.31 27.46 88.308 +92.11 +33.69 +33.243 +92.14 +42.7 +23.88 +67.96 +57.131 +89.87 +92.24 +33.69 +90.58 +92.11 +83.13 +92.24 +33.56 +92.14 +33.54 +92.16 +33.68 +89.87 +92.24 +33.184 +33.69 +25.43 +12.9{N:001} +92.24 +12.1 +92.6 +90.16 +63.1 +92.24 +26.3 +92.6 +89.92 +89.76 +63.1 +92.24 +26.4 +92.6 +89.92 +89.76 +63.1 +92.24 +74.8 +92.6 +89.92 +89.76 +63.1 +92.24 +26.14 +92.6 +89.92 +92.24 +11.89 +92.6 +64.12 +92.10 +89.87 +33.69 +92.11 +72.13 +33.184 +92.29 +42.7 +38294 23.88 +89.124 +92.24 +30.58 +88.16 +92.25 +33.69 +90.58 +92.24 +93.169a +91.12 +92.14 +13.4 +92.1 +11.89 +33.187 +92.24 +93.169a +33.69 +9.24 +92.12 +15.107 +84.3 +93.480a +84.16 +93.479 +89.87 +57.240 +37.11 +92.27 +89.102 +49.18 +92.11 +89.102 +19.1 +90.87 +15.37 +15.48 +23.122 +89.87 +89.8 +13.116 +53.87 +92.12 +15.107 +83.47 +92.24 +1.99 +92.30 +89.87 +24.1 +92.11 +15.30 +89.87 +64.1 +89.93 +53.91 +84.21 +92.24 +80.1 +15.81 +89.87 +24.1 +15.30 +89.124 +93.569 +92.12 +15.19 +15.81 +84.21 +92.11 +89.87 +24.1 +25.49 +89.87 +15.77 +79.118 +92.24 +20.29 +92.11 +47.6 +6.202 +89.92 +6.197 +89.87 +15.98 +92.11 +83.46 +92.24 +57.4 +4.6 +15.210 +92.11 +84.16 +7.11 +89.87 +35.44 +92.11 +89.87 +67.33 +92.24 +67.207 +15.68 +60.11 +6.75 +57.71 +92.24 +7.12 +89.87 +33.69 +35.44 +92.11 +89.92 +92.12 +71.8 +92.27 +57.147 +92.1 +67.33 +92.24 +15.91 +92.1 +57.153 +92.6 +31.30 +92.6 +92.14 +92.29 +92.24 +60.12 +13.48 +11.89 +92.24 +90.71 +83.9 +92.24 +57.240 +89.87 +92.24 +33.69 +92.24 +90.45 +92.24 +88.76 +90.60 +92.11 +89.87 +33.69 +92.11 +92.24 +93.169a +15.34 +89.87 +92.6 +42.7 +64.1 +38451 67.136 +92.24 +15.18 +92.11 +92.11 +15.93 +84.22 +1.92 +92.12 +89.87 +9.34 +92.12 +33.126 +93.252 +34.53 +92.11 +38470 89.92 +92.32 +13.69 +10.50 +33.129 +93.253b +92.27 +89.93 +17.14 +83.24 +92.24 +8.49 +92.24 +12.9{N:001} +36.14 +92.24 +33.98 +92.11 +89.124 +92.24 +93.252 +25.238 +89.6 +78.3 +46.13 +89.87 +17.5 +33.69 +12.9{N:001} +69.3 +25.223 +92.6 +90.21 +92.24 +10.50 +92.1 +58.51 +92.1 +35.19 +38510 89.50 +33.69 +92.11 +90.22 +92.1 +35.5 +89.124 +33.28 +33.69 +92.11 +92.24 +12.9{N:001} +93.252 +93.252 +25.225 +89.92 +25.234 +89.6 +59.1 +89.124 +38531 57.40 +13.1 +38535 89.23 +93.253b +92.24 +88.1 +63.13 +30.92 +38542 69.3 +68.47 +92.11 +91.1 +13.107 +67.136 +92.24 +85.1 +33.178 +92.11 +83.13 +80.1 +92.12 +67.45 +68.34 +33.69 +92.12 +92.24 +36.38 +92.11 +90.58 +92.11 +12.9{N:001} +33.224 +92.4 +33.178 +64.14 +89.93 +93.190a +33.224 +92.24 +36.38 +92.11 +38576 33.69 +92.11 +67.31 +33.178 +33.69 +12.12 +88.27 +92.24 +33.126 +92.6 +13.117 +92.24 +37.64 +92.6 +92.24 +5.1 +92.4 +92.24 +67.183 67.206 +57.71 +92.4 +92.24 +38599 67.92 +89.92 +40.8 +92.4 +92.24 +88.310 +92.4 +89.23 +89.93 +92.37 +40.8 +59.23 +88.298 +92.4 +89.92 +69.3 +90.93 +92.4 +13.62 +88.308 +91.1 +33.69 +90.58 +92.11 +92.14 +63.20 +92.7 +57.1 +34.11 +89.87 +15.10 +84.18 +92.11 +67.75 +89.87 +33.69 +92.11 +34.11 +57.214 +92.1 +60.12 +5.8 +89.32 +34.11 +92.1 +15.86 +84.4 +15.19 +84.18 +92.1 +89.92 +69.3 +57.1 +92.27 +57.116 +92.11 +89.92 92.30 +84.14 +33.28 +33.69 +69.3 +92.1 +22.7 +13.127 +67.20 +92.24 +7.49 +79.112 +89.92 +92.24 +10.37 +92.1 +89.108 +92.1 +83.13 +92.24 +6.108 +85.1 +69.3 +74.5 +17.6 +57.71 +92.6 +33.69 +92.7 +89.65 +38686 69.3 +57.71 +92.11 +17.6 +89.26 +92.24 +13.1 +34.11 +92.11 +91.6 +89.26 +92.24 +66.12 +92.11 +17.9 +57.71 +92.11 +59.7 +57.39 +89.92 92.1 +92.7 +33.69 +33.163 +38710 57.71 +92.7 +27.41 +38714 27.27 +19.12 +38717 79.110 +92.7 +89.23 +59.23 +92.24 +33.163 +57.125 +89.92 +92.24 +27.41 +27.27 +89.92 +92.24 +19.12 +79.110 +89.94 +92.14 +63.20 +92.7 +92.24 +10.14 +33.163 +92.24 +10.42 +4.59 +38743 89.133 +4.59 +4.52 +92.11 +57.75 +89.139 +38750 33.163 +5.18 +57.75 +92.11 +4.56 +89.50 +89.65 +92.7 +88.110 +13.5 +28.7 +57.73 +65.20 +57.71 +92.24 +10.36 +92.7 +59.17 +78.28 +92.24 +12.12 +92.24 +90.16 +1.11 +57.71 +12.18 +88.24 +92.24 +33.163 +92.11 +91.1 +38782 53.102 +12.37 +89.92 +92.11 +13.1 +33.106 +89.87 +13.107 +92.24 +12.37 +15.40 +33.70 +92.24 +33.106 +89.87 +25.213 +92.24 +11.1 +89.124 +92.12 +63.20 +92.11 +33.69 +90.6 +93.68 +92.24 +37.56 +92.24 +12.37 +53.102 +92.24 +12.37 +89.94 +58.37 +27.31 +33.477 +89.3 +1.11 +68.60 +90.14 +92.11 +89.124 +92.11 +32.4 +92.11 +92.24 +30.15 +33.69 +92.11 +59.23 +1.82 +90.34 +92.25 +39.14 +20.41 +89.92 +10.8 7.2 +90.34 +10.8 7.2 +15.119 +89.94 +89.65 +89.93 +92.24 +12.34 93.330 +90.34 +92.25 +39.14 +92.16 +13.29 +92.24 +37.64 +92.11 +89.33 +33.69 +90.6 +93.68 +53.102 +92.1 +92.24 +12.37 +89.94 +89.65 +92.1 +90.6 +93.68 +53.102 +92.24 +12.37 +92.24 +36.39 +92.7 +90.6 +92.14 +53.102 +38879 92.11 +92.7 +56.28 +13.104 +89.124 +89.65 +89.76 +76.3 +12.1 +92.1 +53.102 +92.24 +12.37 +89.46 +13.123 +90.57 +92.7 +92.24 +37.64 +92.24 +12.1 +38901 92.24 +79.63 +55.1 +37.120 +92.24 +92.25 +7.6 +13.8 +22.42 +13.1 +92.24 +57.16 +92.11 +89.124 +67.31 +79.63 +92.11 +39.47 +39.57 +92.11 +92.24 +6.30 +92.11 +15.203 +90.9 +92.27 +31.82 +89.87 +92.24 +57.243 +92.11 +57.94 +92.24 +69.3 +13.1 +90.42 +92.1 +90.31 +92.1 +13.1 +89.92 +92.24 +69.3 +15.125 +89.108 +92.1 +15.135 +38949 92.24 +53.39 +12.39 +15.40 +84.3 +92.24 +9.1 +15.21 +84.29 +2.8 +80.1 +27.41 +23.87 +38963 69.3 +27.27 +33.69 +15.88 +84.16 +92.24 +7.2 +92.1 +84.11 +15.40 +89.87 +15.81 +27.1 +46.19 +89.92 +79.12 +67.47 +15.34 +89.92 +15.168 +58.37 +12.38 +88.110 +92.25 +60.16 +89.87 +15.93 +85.69 +83.2 +38993 13.48 +92.24 +61.13 +92.24 +9.1 +92.30 +65.29 +92.24 +60.46 +39003 13.107 +67.136 +92.24 +33.69 +92.11 +92.29 +33.78 +33.103 +92.12 +9.34 +63.20 +92.24 +11.1 +33.69 +92.11 +25.119 +92.24 +23.51 +92.24 +23.51 +92.6 +89.92 +8.37 +92.27 +23.7 +89.124 +92.11 +33.69 +89.128 89.50 91.8 +25.119 +92.24 +36.14 +92.24 +33.260 +92.24 +12.1 +89.87 +36.19 +39042 92.24 +11.1 +15.132 +68.1 +33.69 +92.24 +11.4 +92.29 +11.4 +88.110 +13.4 +33.477 +68.60 +39056 33.477 +69.3 +90.90 +92.11 +89.131 +39062 92.24 +33.477 +93.197a +89.23 +64.14 +13.48 +93.197a +92.24 +93.544 +33.477 +61.9 +13.1 +89.93 +92.24 +9.3 +92.24 +9.3 +92.24 +11.4 +92.29 +37.68 +82.4 +17.9 +67.33 +92.24 +30.110 +89.108 +92.24 +9.1 +92.24 +11.4 +92.29 +89.87 +56.31 +92.11 +89.33 +15.81 +89.3 +92.24 +80.6 +92.24 +1.39 +24.52 +92.24 +32.32 +93.344 +89.92 +91.13 +78.28 +93.344 +83.1 +9.1 +93.544 +17.6 +67.33 +92.24 +30.110 +89.108 +92.24 +11.4 +92.29 +89.87 +56.31 +92.11 +89.33 +41.52 +39129 92.24 +33.258 +93.197a +89.92 +91.13 +78.28 +93.197a +83.1 +92.23 +6.104 +14.65 +84.22 +28.78 +85.32 +69.7 +83.51 +92.24 +6.151 +89.125 +84.20 +92.24 +6.105 +89.59 +92.24 +15.93 +92.24 +39156 24.7 +92.24 +6.104 +92.24 +8.1 +13.4 +92.24 +8.23 +92.6 +39166 92.24 +8.23 +92.6 +23.132 57.107 +13.1 +89.93 +63.1 +92.24 +8.1 +92.6 +14.51 +13.1 +89.124 +67.31 +23.149 57.108 88.110 +13.1 +89.93 +92.24 +8.1 +92.6 +14.54 +89.50 +27.58 +69.15 +92.24 +14.36 +92.24 +13.8 +92.6 +14.53 +13.4 +89.50 +89.65 +92.24 +8.1 +92.6 +63.1 +14.51 +69.3 +90.65 +63.14 +92.12 +14.54 +13.1 +14.51 +63.1 +64.12 +39214 92.24 +6.104 +92.24 +14.46 +14.39 +92.6 +39221 67.136 +92.24 +33.70 +33.161 +92.11 +11.49 +89.59 +23.20 +89.111 +92.11 +89.87 +15.93 +17.23 +89.124 +92.24 +11.49 +24.1 +25.213 +90.21 +69.3 +67.18 +53.31 +67.17 +92.24 +23.22 +89.124 +33.69 +92.24 +12.9{N:001} +90.58 +92.11 +67.38 +92.7 +92.24 +11.49 +92.24 +83.21 +92.24 +6.121 +89.92 +92.24 +6.134 +79.49 +89.124 +92.24 +26.2 +92.7 +59.41 +25.24 +89.92 +88.108 +32.52 +69.11 +92.24 +42.29 +92.24 +83.21 +89.93 +92.24 +83.16 +42.29 +89.130 +92.24 +85.19 +57.71 +57.112 +39288 91.13 +59.23 +53.29 79.48 +92.7 +13.1 +89.125 +22.9 +92.7 +92.24 +11.49 +89.33 +57.114 +92.24 +3.23 +89.92 +92.24 +3.22 +89.92 +59.23 +3.29 +39309 36.28 +92.24 +56.25 +89.92 +92.24 +25.43 +92.24 +12.1 +89.124 +71.21 +92.29 +42.7 +89.92 92.30 +69.3 +13.145 +22.9 +92.7 +92.24 +11.49 +89.33 +25.104 +92.24 +87.18 +83.13 +92.24 +7.20 +89.92 +92.24 +33.20 +83.13 +92.24 +57.207 +22.9 +92.7 +89.33 +13.1 +64.12 +92.24 +7.75 +92.24 +24.95 +89.87 +92.24 +9.1 +92.24 +15.227 +83.49 +69.3 +28.1 +89.124 +33.28 +92.12 +92.24 +33.338 +33.69 +92.11 +33.243 +92.29 +33.69 +89.93 +92.4 +33.390 +39372 92.24 +33.69 +89.93 +92.7 +92.24 +33.338 +22.9 +89.33 +15.207 +92.24 +9.1 +15.208 +22.34 +39386 92.37 +60.10 +92.24 +8.34 +92.7 +69.3 +18.11 24.75 +92.24 +15.208 +22.9 +92.7 +89.33 +45.1 +92.24 +7.76 +92.24 +53.79 +89.124 +92.24 +10.20 +92.7 +20.61 +92.11 +89.46 +33.270 +13.4 +39413 31.17 +92.24 +42.11 +92.24 +10.20 +92.7 +89.33 +89.136 +92.37 +20.61 +92.11 +89.136 +92.7 +45.1 +39429 89.93 +92.24 +32.41 +92.24 +12.1 +33.69 +15.66 +84.16 +92.11 +53.79 +89.92 +33.194 +89.87 +63.20 +92.11 +20.61 +89.92 +39.45 +89.49 89.59 +56.9 +92.24 +23.112 +63.2 +92.24 +53.79 +92.24 +14.18 23.112 +67.131 +42.37 +1.1 +90.15 +92.24 +11.4 +92.29 +39464 8.64 +93.3 +67.119 +8.64 +93.136b +92.24 +20.31 +83.11 +92.24 +6.114 +89.92 +92.24 +7.2 +69.1 +33.69 +92.7 +56.9 +90.15 +92.24 +11.4 +92.29 +22.9 +92.7 +92.24 +33.338 +89.33 +15.203 +92.24 +57.63 +92.24 +32.16 +92.37 +69.3 +90.70 +89.92 +92.24 +90.70 +13.146 +84.10 +15.40 +92.11 +68.1 +92.24 +53.94 +89.92 +92.24 +11.49 +78.24 +39.4 +89.87 +33.183 +92.11 +89.6 +59.1 +30.70 +92.11 +27.30 +92.12 +90.16 +92.24 +33.74 +92.11 +67.136 +92.27 +15.126 +92.24 +60.8 +92.24 +11.1 +89.52 +19.52 +92.26 +68.1 +33.69 +90.58 +92.24 +36.38 +92.11 +60.46 +27.59 +92.25 +39546 92.24 +88.237 +39549 13.4 +88.227 +92.24 +11.49 +89.124 +92.23 +13.69 +28.81 +92.27 +69.3 +28.38 +39561 28.69 +92.27 +69.3 +27.2 +89.45 +39567 59.7 +28.71 +92.24 +14.53 28.71 +33.69 +28.64 +92.24 +28.64 +24.52 +89.92 +92.27 +28.73 33.91 +92.24 +28.73 33.91 +33.91 +83.13 +92.24 +7.28 +33.206 +28.64 +92.24 +28.64 7.51 +39590 33.69 +92.7 +92.24 +34.11 +92.1 +69.3 +25.252 +89.25 +92.24 +20.61 +92.24 +8.1 +39603 67.48 +92.29 +69.3 +74.12 +78.31 +92.12 +42.7 +89.124 +28.47 +92.7 +92.14 +25.252 +25.252 +92.24 +67.48 +92.24 +20.61 +39621 37.35 +85.35 +84.22 +92.24 +1.21 +69.1 +33.69 +92.7 +92.29 +25.252 +69.12 +60.14 +4.46 +57.186 +6.77 +60.11 +91.12 +60.10 +63.20 +92.11 +69.3 +39643 29.17 +90.20 +92.24 +12.1 +89.125 +39649 92.24 +8.12 +92.24 +8.10 +92.7 +63.2 +60.3 +69.3 +25.252 +59.1 +4.46 +65.6 +39662 33.69 +92.7 +59.23 +71.8 +92.27 +33.274 +89.5 +92.1 +83.33 +92.24 +9.1 +39674 92.24 +9.3 +92.24 +9.3 +33.274 +89.5 +92.11 +83.33 +92.24 +12.28 +92.24 +12.1 +89.124 +92.24 +34.48 +92.1 +83.33 +92.24 +9.1 +34.49 +83.33 +92.24 +12.28 +92.24 +12.1 +89.92 +59.23 +92.27 +33.69 +33.98 +90.59 +92.24 +9.3 +92.24 +9.3 +40.8 +92.11 +89.124 +92.24 +90.59 +92.24 +88.24 +12.18 +33.400 +69.3 +40.8 +89.94 +67.31 +15.194 +92.7 +37.9 +92.24 +7.20 +89.92 +92.24 +37.56 +89.92 +92.24 +37.38 +69.3 +25.225 +92.16 +89.139 +92.14 +33.435 +89.139 +92.14 +33.69 +89.23 +92.24 +88.24 +12.18 +33.224 +92.7 +67.33 +58.31 +92.24 +67.1 +92.27 +33.69 +71.21 +39756 33.69 +92.12 +63.20 +92.24 +11.1 +92.11 +33.243 +33.69 +92.24 +10.49 +92.1 +63.23 +89.108 +92.1 +92.24 +57.140 +89.124 +92.24 +33.69 +92.11 +9.24 +92.14 +92.1 +37.104 +56.28 +89.139 +63.25 +37.9 +92.7 +89.87 +33.69 +90.58 +92.11 +30.45 +89.92 +13.154 37.120 +89.122 +59.23 +25.22 +89.33 +69.3 +89.76 +92.24 +59.52 +92.12 +92.24 +23.88 +92.11 +13.1 +90.16 +92.24 +57.16 +92.11 +89.87 +33.69 +33.15 +90.58 +92.11 +33.69 +9.24 +92.12 +57.26 +92.24 +1.95 +23.204 +39822 30.10 +90.56 +92.25 +33.69 +92.14 +42.7 +89.33 +69.3 +57.1 +83.6 +85.48 +92.24 +43.15 +92.1 +89.87 +33.69 +92.29 +42.7 +20.54 +92.1 +92.24 +7.25 +89.87 +79.123 +45.1 +89.87 +85.48 +83.2 +63.2 +92.24 +3.41 +89.92 +92.24 +57.33 +92.1 +89.87 +33.69 +92.24 +26.4 +92.1 +26.4 +57.1 +59.11 +57.33 +85.3 +67.117 +67.167 +59.1 +23.80 +23.1 +23.34 +51.3 +89.124 +33.69 +92.11 +92.24 +12.1 +32.52 +92.29 +92.24 +67.192 +92.24 +23.88 +92.6 +33.165 +90.15 +92.6 +89.94 +92.27 +77.3 +92.14 +13.104 +61.9 +92.24 +65.11 +92.25 +39899 69.3 +90.23 +12.1 +57.28 +39904 33.69 +90.58 +92.24 +36.38 +92.11 +39911 33.69 +92.7 +69.3 +25.225 +92.24 +23.88 +92.14 +23.1 +69.7 +92.24 +8.1 +92.14 +49.1 +89.23 +92.24 +23.88 +78.28 +13.1 +92.24 +5.1 +89.92 +92.24 +8.1 +92.24 +6.162 +30.4 +92.24 +4.43 +90.21 +39941 43.6 +39943 43.14 +92.27 +69.3 +13.69 +7.32 +69.7 +7.25 +89.92 +92.24 +12.1 +23.6 +92.11 +59.17 +78.28 +92.7 +65.6 +92.24 +4.38 +89.94 +92.14 +63.20 +92.7 +25.225 +74.5 +89.101 +92.24 +67.151 81.4 +92.11 +59.72 +81.25 +89.50 +89.30 +69.8 +65.57 +74.5 +92.15 +89.6 +92.24 +63.21 +25.225 +30.4 +92.24 +3.32 +92.16 +39988 48.2 48.3 +39991 89.124 +33.69 +92.7 +69.8 +93.344 +13.8 +59.23 +92.24 +87.23 +92.11 +49.3 49.5 +64.12 +92.22 +92.29 +89.124 +89.30 +83.13 +1.95 +92.24 +3.15 +13.69 +67.205 +89.87 +67.207 +84.22 +7.74 +15.215 +92.24 +12.1 +61.9 +49.3 49.5 +59.17 +78.28 +92.7 +31.96 +89.92 +92.7 +69.3 +25.9 +92.14 +23.1 +89.92 +92.14 +23.34 +89.92 +69.3 +25.232 +89.23 +92.29 +59.23 +92.24 +11.55 +92.24 +1.39 +25.9 +89.94 +92.7 +92.24 +12.12 +28.1 +90.21 +57.39 +92.29 +89.130 +25.9 +92.24 +37.64 +92.11 +40060 92.29 +57.78 +92.7 +69.3 +25.252 +92.24 +59.15 +11.31 +89.33 +25.87 +92.24 +12.12 +92.7 +90.90 +92.7 +92.24 +37.64 +57.186 +92.24 +57.16 +92.7 +89.87 +57.71 +57.112 +42.29 +92.25 +6.144 +69.3 +67.103 +65.10 +13.99 +83.13 +92.24 +1.11 +83.5 +57.233 +69.3 +15.75 +69.7 +4.49 +20.40 +89.23 +83.5 +85.1 +92.24 +65.10 +92.7 +83.2 +89.93 +92.24 +26.3 +92.7 +85.1 +40114 92.7 +92.24 +77.5 +77.5 +89.92 +92.24 +6.104 +14.63 +89.92 +92.7 +64.1 +9.1 +85.60 +92.24 +57.12 +92.25 +67.30 +15.89 +84.4 +92.24 +34.68 +89.59 +15.81 +89.87 +19.12 +67.53 +79.110 +92.11 +25.119 +92.24 +87.76 +92.30 +92.27 +27.56 +15.81 +92.24 +57.12 +27.27 +72.6 +33.69 +92.7 +90.21 +49.15 +89.87 +17.24 +92.11 +89.87 +15.86 +35.19 +92.11 +89.73 +67.136 +92.24 +60.49 +89.73 +67.136 +92.24 +60.50 +67.196 +15.81 +89.87 +27.27 +61.9 +25.119 +13.1 +92.30 +89.94 +92.29 +28.1 +90.21 +89.65 +28.1 +92.24 +57.14 +92.36 +67.199 +92.24 +57.233 +15.81 +71.14 +69.3 +13.140 +19.41 +92.24 +7.2 +92.11 +89.93 +92.7 +13.3 +77.2 +89.33 +92.27 +67.199 +69.3 +31.29 +92.24 +9.3 +92.24 +9.3 +15.81 +89.87 +33.69 +92.24 +93.296 +12.9{N:001} +89.7 +92.4 +92.24 +33.15 +92.29 +33.69 +89.139 +89.93 +89.7 +59.23 +89.87 +33.69 +92.24 +12.9{N:001} +71.7 +92.14 +13.4 +92.24 +31.87 +46.4 +92.24 +32.31 +92.27 +37.104 +92.24 +57.12 +37.9 +92.24 +46.6 +92.11 +92.24 +57.71 +67.33 +67.1 +92.24 +5.3 +25.119 +92.24 +87.76 +92.30 +92.27 +42.7 +61.9 +15.81 +92.24 +57.12 +92.11 +27.27 +70.3 +33.69 +92.7 +90.21 +37.9 +59.23 +92.24 +57.16 +92.11 +37.104 +92.11 +89.124 +89.67 +33.69 +92.24 +87.76 +92.30 +40285 92.24 +26.3 +92.11 +67.82 +92.24 +57.12 +92.1 +15.81 +89.87 +68.1 +19.1 +92.24 +87.77 +89.92 +92.24 +87.83 +89.102 +23.1 +89.102 +23.34 +89.92 +88.285 +85.10 +92.24 +57.12 +92.24 +87.76 +92.30 +67.33 +67.186 +92.27 +69.3 +30.55 +89.92 +67.33 +67.199 +92.27 +69.3 +28.1 +89.87 +19.19 38.12 +92.11 +89.92 +92.24 +63.14 +92.11 +83.9 +92.24 +31.98 +85.32 +89.124 +92.30 +92.24 +87.76 +92.24 +28.1 +92.24 +25.2 +92.24 +57.12 +92.11 +40347 69.3 +77.3 +89.139 +42.7 +89.9 +92.24 +25.2 +92.11 +19.2 +59.1 +89.124 +92.24 +69.3 +28.1 +89.94 +42.7 +65.17 +19.1 +19.2 +59.3 +89.94 +59.23 +92.27 +57.71 +59.11 +59.11 +33.167 +90.14 +92.11 +89.92 +92.27 +35.47 +59.11 +78.31 +33.163 +92.11 +15.81 +39.15 +39.15 +90.57 +92.24 +1.39 +89.92 +40391 25.1 +89.65 +67.20 +14.65 +89.124 +53.41 +40398 24.82 +89.92 +92.16 +25.241 90.65 +67.119 +40404 13.126 +31.29 +90.21 +85.7 +22.42 +90.51 +83.47 +92.24 +9.22 +33.69 +92.7 +69.4 +89.125 +40418 39.14 +89.23 +85.1 +39.14 +67.131 +92.24 +67.38 +60.14 +83.13 +63.4 +10.8 +60.12 +90.34 +60.11 +89.92 +60.11 +90.34 +60.12 +39.14 +10.14 +90.34 +10.42 +89.92 +10.42 +90.34 +10.14 +10.16 +90.34 +10.46 +89.92 +10.46 +90.34 +92.24 +10.16 +10.59 +90.34 +92.24 +10.60 +92.11 +89.92 +10.60 +90.34 +92.24 +10.59 +40463 33.69 +89.93 +92.24 +11.1 +67.31 +24.1 +1.34 +15.104 +83.23 +82.2 +67.53 +33.69 +90.21 +14.12 +15.81 +89.92 +13.48 +61.9 +89.92 +67.31 +14.8 +14.4 +33.69 +90.21 +14.67 +13.69 +89.92 +13.48 +88.228 +92.24 +24.24 +92.24 +1.39 +89.92 +92.24 +1.5 +27.45 +28.7 +89.124 +92.24 +67.145 +92.29 +92.16 +69.3 +40509 92.15 +40511 90.19 +92.25 +69.3 +56.20 +92.24 +66.5 +91.1 +67.139 +15.35 +89.108 +92.24 +56.11 +92.6 +83.35 +56.29 +67.136 +92.24 +15.19 +68.62 +41.20 +40.3 +89.122 +92.11 +40536 15.179 +92.6 +84.18 +92.24 +56.28 +89.87 +92.24 +56.28 +92.6 +37.111 +92.24 +37.92 +89.87 +92.24 +37.92 +92.6 +15.215 +84.22 +7.24 +33.69 +92.6 +69.5 +69.5 +15.40 +84.10 +67.119 +40563 92.24 +61.13 +6.79 +57.153 +40568 85.23 +92.12 +67.33 +92.11 +92.24 +67.1 +33.198 +92.11 +89.6 +92.24 +93.445 +92.27 +92.24 +8.64 +93.297 +63.10 +89.123 +92.24 +53.20 +92.11 +89.87 +33.184 +33.69 +92.11 +31.29 +90.21 +92.24 +93.445 +92.29 +88.295 +78.29 +59.23 +92.24 +93.445 +13.3 +89.33 +92.29 +90.66 +69.4 +33.69 +92.7 +89.125 +89.67 +69.3 +41.52 +59.23 +64.1 +20.31 +89.139 +92.30 +92.24 +40621 84.20 +92.27 +15.119 +92.24 +7.23 +83.13 +92.24 +93.580 +89.92 +20.61 +92.11 +31.29 +90.21 +92.11 +88.300 +13.3 +78.29 +59.23 +92.24 +9.1 +92.24 +85.69 +93.480a +69.4 +33.69 +92.7 +89.125 +89.67 +69.3 +40651 59.23 +64.16 +21.32 +40655 33.69 +92.29 +92.24 +33.15 +3.5 +57.1 +92.12 +43.5 +83.13 +92.24 +3.28 +92.11 +89.87 +15.7 +27.41 +3.33 +83.47 +92.11 +40674 69.3 +27.27 +40677 33.69 +90.58 +92.24 +43.21 +91.10 +60.12 +67.167 +90.15 +92.27 +15.81 +27.41 +3.33 +83.47 +92.24 +3.5 +92.29 +91.12 +69.3 +27.27 +19.18 +92.11 +40700 91.12 +92.24 +2.14 +76.26 +89.87 +92.24 +33.28 +33.69 +92.11 +57.12 +85.62 +92.11 +89.93 +92.29 +92.24 +67.167 +67.119 +40718 43.3 +83.18 +92.11 +89.87 +85.34 +8.76 +91.6 +89.73 +23.199 +23.199 3.33 +67.117 +92.24 +67.135 +40734 19.18 +92.11 +40738 33.224 +83.13 +92.22 +92.24 +7.20 +67.33 +92.24 +67.184 +89.87 +91.13 +9.34 +12.37 +23.143 +90.65 +67.167 +40757 17.32 +40759 69.3 +74.5 +17.33 +40763 92.24 +67.95 78.47 +89.87 +24.1 +92.11 +92.24 +93.169a +33.308 +89.87 +33.69 +92.11 +9.34 +37.127 +92.24 +23.143 +92.6 +89.87 +85.51 +92.11 +92.24 +8.30 +40785 67.113 +17.33 +89.87 +33.357 +92.24 +12.1 +89.124 +33.28 +92.24 +53.93 +88.187 +89.33 +92.24 +67.184 +23.139 +92.24 +93.169a +33.69 +92.24 +87.64 +90.21 +60.15 +67.178 +13.69 +67.136 +92.27 +71.21 +42.41 +89.50 +67.136 +92.11 +15.81 +23.139 +40819 69.3 +92.24 +67.178 +92.24 +67.184 +89.124 +33.28 +92.11 +92.24 +12.9{N:001} +40830 33.69 +88.228 +69.11 +59.27 +92.7 +92.24 +67.184 +18.18 +92.24 +4.15 +92.11 +89.139 +92.24 +4.31 +84.3 +92.24 +7.64 +89.87 +15.177 +23.35 +89.94 +91.10 +92.29 +10.31 +93.7 +13.4 +92.27 +23.157 +92.24 +12.34 93.330 +60.19 +89.92 +60.17 +67.167 +37.127 +84.3 +92.24 +23.156 +92.29 +92.24 +67.178 +92.24 +67.184 +69.3 +71.21 +40876 92.29 +33.69 +92.11 +25.194 +59.23 +92.24 +39.1 +92.11 +89.92 +59.23 +92.24 +11.1 +25.125 +89.27 +59.23 +92.24 +79.19 +92.24 +13.107 +90.1 +92.11 +89.50 +33.69 +92.14 +64.1 +13.1 +92.24 +37.64 +92.24 +12.1 +40907 92.14 +64.5 +92.11 +64.1 +13.1 +3.35 +3.20 +92.27 +18.1 +9.24 +15.215 +84.22 +1.97 +92.25 +89.87 +23.188 +89.87 +13.48 +13.62 +3.2 +89.87 +92.24 +4.41 +92.24 +4.41 +6.147 +83.47 +92.24 +3.49 +92.11 +89.87 +67.55 +33.69 +92.14 +64.5 +92.24 +37.64 +92.24 +12.1 +64.1 +13.1 +5.11 +92.27 +18.1 +9.34 +40953 84.22 +5.9 +81.23 +60.12 +67.119 +40959 5.12 +59.29 +91.1 +15.21 +89.90 +1.88 1.89 +89.92 +1.92 +33.224 +89.92 +15.18 +90.45 +84.16 +93.480a +40974 33.69 +92.12 +92.11 +12.9{N:001} +90.26 +59.3 +92.24 +21.27 +89.87 +92.24 +33.69 +90.58 +92.11 +68.74 +90.70 +84.29 +92.24 +81.19 +7.49 +89.33 +33.69 +92.7 +59.1 +68.60 +90.70 +41000 69.3 +74.9 +67.131 +71.8 +92.27 +17.9 +92.24 +57.14 +89.87 +79.113 +92.24 +7.49 +89.87 +68.1 +83.20 +85.8 +89.87 +19.12 +92.24 +7.49 +33.69 +87.53 +79.110 +92.4 +41025 33.28 +33.69 +92.7 +69.3 +28.1 +92.7 +84.6 +85.1 +67.47 +68.1 +33.69 +23.1 +83.33 +92.6 +89.92 +23.34 +89.92 +83.47 +92.24 +1.103 +92.4 +33.224 +41048 33.69 +33.69 +92.7 +69.3 +28.1 +84.6 +85.1 +15.51 +89.122 +92.1 +59.23 +41.21 +88.21 +83.2 +85.1 +92.24 +25.138 +89.92 +92.24 +23.41 +92.24 +8.20 +41071 24.1 +93.7 +89.92 +93.180 +89.92 +93.157a +89.92 +59.23 +92.24 +53.79 +83.13 +92.24 +37.64 +92.24 +12.1 +89.124 +92.7 +15.220 +84.27 +89.92 +15.84 +84.3 +82.1 +89.92 +82.2 +89.92 +84.3 +82.3 +89.92 +82.4 +89.87 +17.23 +83.13 +92.24 +37.64 +92.24 +12.1 +89.92 +91.13 +13.1 +87.66 +92.27 +13.1 +87.45 +89.92 +13.1 +87.45 +92.27 +13.1 +87.66 +67.33 +58.31 +92.24 +67.1 +15.77 +92.12 +11.49 +33.69 +92.11 +15.40 +41132 15.34 +84.9 +89.33 +93.144b +30.58 +92.6 +20.61 +41140 33.69 +92.11 +15.34 +33.69 +92.24 +88.120 +92.29 +91.13 +53.102 +12.37 +89.92 +23.136 +68.22 +67.205 +89.87 +67.207 +89.87 +92.24 +60.50 +68.31 +89.130 +71.34 +92.1 +67.205 +89.87 +67.207 +89.87 +92.24 +67.208 +15.10 +89.33 +69.3 +71.4 +53.79 +20.31 +83.20 +93.480a +93.480a +93.480a +92.24 +20.61 +92.24 +53.79 +89.92 +20.79 +92.24 +15.66 +84.18 +92.11 +67.14 +30.58 +15.126 +92.24 +11.63 +92.6 +92.27 +89.83 +4.38 +92.24 +92.25 +4.40 +83.51 +92.24 +8.29 +41205 69.3 +30.58 +91.13 +85.45 +92.7 +92.24 +7.2 +92.7 +89.94 +33.69 +92.7 +69.5 +69.5 +24.1 +92.1 +67.119 +13.112 +41223 33.69 +33.470 +92.24 +15.81 +89.5 +33.126 +12.9{N:001} +91.1 +13.107 +67.33 +92.24 +15.81 +92.11 +84.22 +7.2 +92.12 +92.24 +37.56 +92.24 +11.49 +67.184 +23.1 +5.1 +41247 92.11 +41249 24.48 +92.11 +89.87 +91.13 +9.24 +92.12 +23.164 +85.1 +83.36 +92.11 +89.87 +33.28 +92.24 +93.169a +33.69 +90.58 +92.24 +33.338 +89.92 +11.49 +33.69 +71.32 +92.24 +67.184 +23.139 +89.139 +69.3 +89.124 +92.24 +33.119 +89.87 +18.2 +23.136 +92.11 +89.87 +15.43 +89.87 +90.58 +92.11 +33.69 +92.14 +92.7 +10.42 +89.139 +4.15 +84.22 +7.57 +15.118 +89.87 +69.11 +67.53 +15.213 +92.11 +67.33 +67.178 +92.24 +67.184 +89.87 +69.3 +74.9 +33.186 +90.33 +92.29 +41313 33.69 +90.58 +92.24 +33.315 +33.15 +24.33 +92.16 +92.24 +87.18 +30.92 +33.69 +90.58 +92.11 +67.31 +33.315 +90.1 +92.12 +84.16 +34.68 +69.3 +17.23 +83.47 +92.24 +87.18 +41339 87.6 +92.6 +41342 33.315 +90.1 +92.11 +89.87 +15.81 +92.24 +92.6 +89.87 +92.11 +33.315 +33.69 +92.6 +13.142 +92.29 +80.1 +89.87 +67.47 +68.1 +89.79 +25.189 +92.24 +87.66 +80.1 +85.9 +89.125 +41368 33.315 +15.10 +17.23 +83.47 +92.24 +87.66 +80.1 +89.59 +41377 15.81 +92.24 +33.315 +92.6 +33.69 +92.6 +34.11 +15.106 +87.29 +67.47 +13.104 +92.6 +87.4 +83.33 +59.23 +92.24 +34.10 +92.6 +89.33 +59.23 +92.24 +87.20 +92.25 +87.63 +89.92 +92.24 +87.63 +92.25 +87.20 +89.94 +33.69 +89.93 +92.24 +33.315 +92.11 +67.31 +42.29 +23.23 +89.139 +23.25 +69.3 +33.315 +92.24 +34.11 +92.6 +69.7 +92.24 +10.49 +92.6 +69.7 +92.24 +10.6 +92.6 +69.7 +11.89 +57.26 +41435 89.93 +92.11 +33.317 +92.6 +89.87 +13.107 +57.155 +92.6 +89.125 +67.31 +23.27 +42.29 +33.315 +57.53 +23.177 +23.175 +24.38 +41453 25.119 +13.1 +89.33 +69.3 +74.12 +38.19 57.154 +92.6 +89.23 +38.19 57.154 +92.6 +67.33 +92.24 +23.93 +92.24 +88.12 +89.87 +92.12 +92.24 +34.10 +24.52 +92.29 +33.69 +92.11 +25.119 +92.18 +23.1 +5.1 +83.13 +92.24 +37.64 +92.24 +12.1 +89.87 +92.24 +33.69 +92.11 +9.24 +92.12 +90.45 +23.25 +79.123 +89.92 +33.315 +59.1 +89.87 +15.66 +92.24 +87.76 +92.11 +92.24 +67.199 +92.24 +23.25 +33.69 +92.24 +33.315 +15.81 +90.21 +67.20 +77.2 +13.1 +41515 68.1 +61.2 +41518 59.23 +33.163 +92.24 +60.46 +33.69 +92.11 +1.95 +57.188 +41527 90.65 +71.30 +15.40 +24.1 +92.11 +33.161 +92.6 +31.1 +92.1 +33.163 +89.92 +58.37 +33.69 +60.79 +4.15 +60.14 +57.188 +41545 15.34 +27.45 +92.11 +33.161 +92.6 +31.1 +92.1 +33.163 +89.92 +58.37 +33.69 +10.54 +34.66 +41561 69.3 +74.5 +15.81 +89.87 +15.86 +92.24 +87.76 +33.198 +92.24 +57.12 +92.11 +92.29 +67.47 +88.174 +92.24 +57.14 +33.69 +92.24 +87.76 +92.11 +15.40 +67.110 +84.22 +92.24 +1.103 +89.92 +1.104 +92.24 +1.88 1.89 +89.87 +92.24 +57.53 +89.92 +23.177 +89.92 +24.38 +89.92 +23.175 +15.173 +83.1 +89.87 +33.69 +92.24 +87.76 +57.12 +13.107 +92.27 +33.325 +89.92 +59.75 +80.1 +13.69 +89.87 +33.69 +92.24 +57.12 +90.58 +92.24 +87.76 +15.40 +84.22 +92.24 +1.99 +89.92 +1.105 +89.87 +37.33 +15.93 +89.59 +59.42 +92.1 +92.24 +7.2 +89.23 +33.69 +92.7 +90.21 +92.23 +92.24 +9.1 9.24 +92.30 +92.24 +33.315 +23.3 +92.1 +92.24 +23.25 +41649 15.148 +92.11 +11.1 +78.3 +89.87 +16.13 +33.69 +90.58 +92.11 +89.65 +92.12 +15.81 +84.18 +92.1 +89.92 +69.3 +88.198 +92.24 +10.14 +41669 89.92 +92.24 +10.16 +89.92 +92.24 +10.54 +89.92 +92.24 +10.36 +89.92 +92.24 +10.49 +89.92 +92.24 +10.50 +89.95 +59.75 +41687 92.24 +23.88 +92.25 +69.3 +74.5 +13.4 +92.1 +36.38 +92.18 +69.3 +24.83 +92.24 +6.27 +92.25 +89.87 +15.81 +36.35 +92.1 +69.3 +74.5 +13.4 +92.1 +36.38 +89.23 +69.12 +92.14 +63.20 +92.7 +30.58 +7.23 +45.1 +67.18 +17.12 +60.4 +92.24 +57.160 +90.26 +57.1 +89.48 +68.28 +89.59 +41730 85.32 +92.11 +7.41 +41734 69.3 +74.9 +68.22 +59.23 +92.24 +24.14 +68.1 +92.11 +33.406 +33.69 +90.21 +92.29 +92.24 +9.24 +68.1 +45.1 +41751 69.3 +74.9 +68.22 +89.139 +69.12 +92.14 +37.67 +15.34 +58.37 +37.67 +15.79 +84.22 +55.5 +17.12 +67.18 +30.8 +90.26 +74.2 +13.1 +90.10 +60.19 +60.80 +55.3 +92.24 +89.108 +60.25 +60.80 +15.81 +90.34 +92.11 +41784 67.128 +92.11 +83.31 +85.1 +37.87 +15.66 +33.161 +92.24 +89.7 +22.42 +89.50 +61.9 +59.23 +63.20 +92.7 +92.27 +69.3 +57.70 +59.23 +92.24 +92.25 +57.16 +69.3 +74.5 +13.4 +92.1 +36.38 +91.7 +65.22 +92.24 +5.25 +89.124 +89.67 +41818 92.24 +5.25 +79.44 +89.76 +92.14 +46.14 +69.9 +90.23 +2.14 +69.9 +90.23 +8.77 +65.32 +13.1 +84.27 +15.215 +92.11 +92.24 +57.1 +8.24 +24.58 +31.56 +41841 85.1 +15.75 +92.11 +59.23 +92.24 +57.184 +89.92 +92.24 +88.295 +24.52 +92.11 +89.87 +33.383 +89.102 +92.24 +11.49 +89.102 +92.24 +53.94 +33.69 +90.21 +92.29 +88.295 +34.53 +89.92 +23.12 +92.11 +41869 33.69 +90.58 +92.11 +92.24 +33.15 +92.29 +33.69 +92.14 +9.24 +63.20 +92.7 +57.1 +60.33 +4.22 +89.87 +57.68 +63.20 +92.11 +60.10 +69.11 +15.57 +92.24 +60.32 +60.18 +83.13 +92.24 +1.86 +89.87 +15.34 +84.17 +92.24 +27.29 +67.119 +27.27 +92.11 +89.87 +27.27 +85.51 +84.20 +92.24 +8.27 +92.11 +25.125 +89.87 +15.81 +84.22 +92.24 +7.2 +33.309 +92.24 +34.11 +89.92 +92.24 +11.89 +33.69 +92.11 +25.126 +92.1 +89.33 +27.27 +92.24 +4.22 +92.1 +92.24 +27.29 +33.69 +92.7 +90.21 +61.9 +25.123 +83.13 +92.24 +1.11 +85.1 +89.27 +60.10 +88.295 +41.52 +64.18 +89.27 +60.32 +60.18 +88.12 +92.18 +69.3 +57.40 +41.52 +41957 89.139 +92.14 +9.34 +6.76 +60.19 +57.1 +89.67 +27.29 57.68 +6.76 +60.10 +69.12 +14.65 +6.104 +89.87 +46.19 +92.24 +7.3 +89.92 +27.41 +30.41 +67.119 +41979 27.27 +89.87 +27.27 +33.309 +92.24 +34.12 +89.92 +11.89 +33.69 +25.126 +92.1 +89.33 +27.27 +92.24 +6.76 +92.27 +57.68 +61.9 +33.69 +92.7 +13.107 +25.123 +83.33 +92.24 +12.28 +92.24 +12.1 +89.27 +60.10 +88.295 +41.52 +42011 33.69 +9.24 +92.12 +57.1 +60.11 +10.42 +89.87 +33.69 +92.24 +67.116 +92.11 +92.24 +10.14 +10.14 +57.71 +92.1 +92.24 +57.3 +63.14 +92.24 +57.19 +42033 92.24 +57.91 +92.11 +92.24 +57.18 +89.87 +67.48 +69.3 +59.1 +67.186 +57.144 +63.2 +92.24 +67.116 +10.42 +15.47 +84.22 +1.79 +81.14 +89.87 +83.2 +57.151 +92.24 +57.19 +92.11 +41.2 +88.97 +89.87 +57.146 +92.11 +63.2 +13.107 +23.33 +78.16 +89.90 +92.24 +1.79 +92.30 +89.87 +92.11 +68.1 +57.37 +89.87 +15.10 +34.22 +92.22 +92.24 +11.68 +92.24 +1.79 +92.30 +89.87 +15.66 +92.11 +84.22 +92.24 +1.95 +92.11 +44.1 +4.36 +89.92 +25.12 +42099 89.77 +92.24 +3.46 +92.27 +23.1 +92.24 +4.36 +42107 92.23 +57.71 +92.11 +89.124 +90.59 +92.25 +13.50 +33.69 +59.5 +57.174 +92.24 +10.14 +92.1 +57.24 +5.1 +89.124 +92.1 +23.31 +83.1 +23.106 +15.36 +15.10 +84.18 +92.24 +10.14 +92.1 +89.87 +33.69 +92.11 +10.14 +88.289 +90.59 +92.24 +12.16 +89.92 +90.20 +92.6 +67.130 +13.1 +65.17 +33.131 +10.42 +92.6 +13.9 +92.1 +64.12 +92.22 +92.24 +57.174 +92.6 +89.87 +15.36 +15.81 +84.18 +92.24 +10.14 +92.25 +89.124 +67.128 +92.11 +83.30 +85.16 +24.1 +92.11 +92.24 +10.14 +92.11 +89.87 +25.49 +89.87 +15.230 +34.64 +42180 92.24 +8.25 +92.11 +89.87 +34.62 +92.11 +89.87 +33.69 +92.24 +10.42 +92.11 +10.14 +88.289 +90.59 +92.24 +12.16 +89.92 +90.20 +92.6 +67.130 +13.1 +65.17 +33.131 +10.42 +92.6 +89.124 +33.69 +92.24 +10.14 +90.58 +92.24 +87.76 +92.11 +67.110 +15.197 +6.174 +92.24 +65.24 +89.87 +49.1 +92.11 +89.92 +85.33 +6.190 +83.47 +92.24 +8.30 +92.11 +89.92 +6.182 +83.47 +92.24 +8.49 +89.92 +15.166 +92.24 +4.17 +92.24 +44.2 65.8 +20.72 +89.87 +23.1 +51.3 +89.33 +92.29 +92.24 +10.42 +92.1 +65.39 +13.1 +42251 23.93 +13.1 +57.68 +42255 27.27 +89.87 +68.1 +51.3 +42260 85.1 +92.24 +10.42 +92.11 +92.24 +67.102 +83.13 +1.95 +89.87 +67.45 +15.81 +15.75 +92.24 +7.3 +24.52 +14.83 +89.92 +15.244 +89.87 +33.308 +92.22 +92.24 +87.77 +33.181 +71.14 +92.14 +13.4 +92.29 +89.87 +92.24 +33.69 +92.11 +90.21 +92.24 +10.49 +92.6 +85.10 +89.87 +20.72 +92.24 +10.14 +92.6 +92.24 +4.17 +92.24 +44.2 65.8 +89.33 +23.129 +92.11 +34.53 57.136 +89.124 +88.174 +89.92 +69.3 +30.58 +15.93 +89.87 +92.24 +10.14 +92.11 +15.40 +33.315 +92.11 +89.124 +92.24 +33.184 +33.69 +92.24 +10.14 +91.13 +59.6 +67.167 +35.27 +92.6 +89.92 +67.10 +33.330 +92.6 +36.28 +42340 92.1 +67.10 +57.71 +4.19 +89.59 +89.108 +92.24 +34.11 +92.1 +51.3 +89.124 +42352 92.24 +10.42 +92.6 +92.29 +92.24 +57.150 +92.6 +92.24 +57.18 +89.108 +88.275 +15.81 +20.72 +92.11 +92.24 +44.2 65.8 +4.17 +89.87 +92.24 +33.69 +92.11 +10.36 +92.6 +67.88 +89.108 +92.1 +85.1 +89.92 +63.2 +92.24 +92.2 +92.8 +13.4 +89.124 +51.3 +89.92 +25.125 +71.21 +89.33 +92.24 +10.49 +92.6 +92.29 +65.39 +13.1 +42398 23.93 +89.92 +57.68 +42402 27.27 +42404 33.69 +89.93 +90.58 +92.24 +36.38 +9.24 +92.12 +13.1 +57.26 +92.27 +57.1 +46.4 +89.92 +92.29 +33.426 +92.11 +90.21 +57.151 +92.24 +57.16 +92.11 +42426 33.307 +92.11 +33.69 +92.11 +92.14 +92.29 +33.212 +89.6 +92.6 +90.46 +92.24 +57.228 +92.24 +46.1 +92.6 +89.23 +69.3 +74.5 +67.128 +46.1 +42447 31.5 +42450 92.24 +46.4 +92.14 +42.7 +89.33 +92.24 +57.12 +92.1 +68.47 +92.24 +46.1 +89.122 +92.1 +19.55 43.3 +69.3 +79.64 +33.173 +25.190 +28.1 +92.14 +42.7 +89.59 +42473 13.64 68.38 +89.121 +92.24 +46.1 +34.53 +92.1 +84.22 +92.24 +7.2 +42484 33.308 +92.22 +59.27 +92.24 +57.222 +92.24 +57.12 +92.25 +33.69 +92.24 +60.46 +59.17 +57.219 +92.24 +57.12 +92.1 +89.87 +92.24 +33.69 +60.33 +81.20 +6.202 +89.87 +92.24 +33.69 +92.11 +18.1 +92.6 +92.24 +33.39 +89.87 +17.12 +67.110 +33.61 +60.28 +67.44 +58.37 +33.69 +89.87 +92.6 +59.17 +57.219 +89.87 +92.24 +33.69 +60.33 +81.21 +3.41 +33.69 +92.11 +18.1 +92.6 +92.24 +33.39 +89.87 +33.61 +60.31 +42542 33.354 +92.24 +57.12 +92.24 +46.4 +92.24 +88.21 +89.33 +32.31 +42.7 +89.33 +92.24 +11.16 58.26 9.4 +92.24 +11.16 +42558 32.31 +78.29 +92.24 +11.14 +92.24 +11.14 +90.23 +92.24 +10.4 +92.24 +92.25 +13.1 +89.92 +92.1 +92.7 +33.69 +92.25 +13.9 +34.11 +89.77 +92.24 +57.34 +92.24 +88.21 +89.59 +42584 57.46 +34.53 +92.7 +84.22 +92.24 +67.96 +7.9 +92.24 +31.87 +89.5 +87.66 +89.93 +89.5 +59.11 +31.87 +13.1 +89.92 +92.24 +89.5 +87.66 +88.20 +89.93 +89.5 +59.11 +88.20 +13.1 +89.50 +89.65 +89.5 +92.24 +88.20 +57.34 +31.87 +69.3 +13.3 +92.24 +72.1 +92.14 +92.7 +35.50 +89.92 +89.65 +89.5 +92.24 +92.20 +31.87 +69.3 +13.3 +92.24 +42634 92.14 +57.71 +92.7 +92.23 +46.5 +74.5 +60.11 +57.12 +35.27 +89.23 +89.140 +92.24 +42647 88.198 +42649 92.24 +58.37 +25.43 +89.140 +42654 34.24 +42656 92.24 +58.37 +88.192 +69.3 +74.5 +12.1 +35.27 +89.92 +57.34 +42666 24.52 +92.29 +59.23 +92.24 +11.49 +25.108 +13.5 +42674 33.409 +92.11 +89.87 +33.69 +92.11 +92.7 +13.4 +92.24 +88.16 +92.25 +90.20 +92.24 +9.1 +89.124 +92.24 +12.1 +28.1 +92.24 +26.3 +92.7 +89.33 +92.24 +83.9 +9.1 +65.9 88.208 +25.187 +90.20 +92.24 +12.1 +92.24 +33.55 +89.92 +92.24 +53.79 +67.119 +93.190a +67.131 +67.47 +92.24 +37.64 +92.24 +12.1 +33.215 +89.92 +59.23 +90.23 +92.11 +20.10 +89.124 +22.39 +13.1 +92.24 +1.3 +42728 92.24 +1.3 +13.93 +64.18 +92.24 +33.55 +60.10 +33.37 +68.49 +59.23 +92.24 +34.78 +92.24 +10.54 +92.11 +89.87 +34.66 +58.37 +88.276 +89.92 +92.24 +34.78 +89.122 +10.53 +34.66 +88.276 +42755 9.24 +92.12 +13.1 +57.26 +89.92 +49.1 +6.169 +89.92 +6.166 +51.3 +42766 67.92 +88.255 +89.94 +57.53 +92.12 +33.126 +93.225b +15.215 +83.24 +92.24 +7.48 +92.11 +23.180 +89.92 +25.12 +23.15 +63.20 +92.24 +15.118 5.5 +84.3 +92.24 +6.113 +92.24 +57.26 +89.125 +89.93 +92.24 +4.34 +15.81 +23.42 +92.24 +23.179 +92.11 +42800 13.107 +23.99 +92.24 +57.53 +89.87 +15.202 +92.11 +90.1 +92.24 +12.28 +84.22 +92.24 +1.16 8.39 +1.16 93.7 +89.87 +23.99 +89.93 +92.24 +57.26 +89.87 +52.4 +89.87 +83.13 +92.24 +1.19 +24.34 +92.24 +8.23 +92.11 +13.5 +13.8 +24.90 +24.1 +93.7 +42835 83.30 +89.92 +93.225b +83.13 +92.24 +1.16 8.39 +92.11 +89.87 +92.11 +33.77 +33.69 +10.20 +93.7 +88.76 +92.1 +89.87 +15.66 +93.225b +89.59 +47.11 +92.24 +79.104 +92.24 +8.34 +92.11 +2.7 +89.87 +79.76 +92.24 +8.21 +92.1 +89.33 +24.92 +83.13 +92.24 +2.4 +92.29 +89.124 +33.69 +93.7 +10.28 +29.7 +90.21 +57.128 +92.24 +65.20 +92.6 +67.136 +92.24 +23.88 +92.6 +42887 93.225b +64.1 +92.24 +65.26 +89.124 +67.38 +83.1 +25.150 +89.94 +92.6 +24.92 +89.92 +89.5 +59.23 +92.29 +83.11 +92.4 +89.92 +92.7 +1.54 +79.123 +85.38 +89.59 +92.24 +25.1 +15.31 +84.9 +84.18 +92.7 +69.3 +74.5 +69.7 +84.10 +84.18 +92.4 +15.31 +89.87 +33.69 +89.50 +33.161 +92.6 +10.20 +90.22 +15.66 +92.11 +84.16 +92.24 +10.8 +92.24 +10.14 +92.1 +89.23 +57.1 +60.14 +10.49 +89.59 +33.425 +92.11 +89.59 +69.3 +89.93 +92.11 +15.81 +84.22 +92.24 +80.1 +92.29 +92.24 +24.90 +89.124 +33.69 +93.7 +57.1 +93.266 +89.92 +92.24 +53.79 +36.14 +92.11 +89.124 +92.24 +33.69 +69.4 +10.20 +93.7 +89.125 +89.67 +92.12 +90.15 +23.121 +15.10 +84.18 +92.11 +41.52 +89.124 +33.69 +92.11 +89.65 +93.266 +89.92 +92.24 +53.79 +69.3 +36.14 +69.8 +89.67 +92.12 +89.121 +23.121 +23.93 +33.301 +42999 33.69 +90.58 +92.24 +36.38 +92.11 +71.5 +13.1 +92.24 +92.24 +88.306 +69.3 +13.117 +43012 22.9 +90.4 +92.27 +13.117 +65.44 +92.11 +89.65 +2.24 +7.70 +85.54 +83.18 +92.24 +8.25 +92.11 +89.87 +15.217 +84.22 +92.24 +1.69 +64.18 +90.22 +88.304 +92.24 +87.58 +92.29 +92.22 +27.59 +92.25 +89.67 +88.289 +92.24 +11.89 +92.6 +33.419 +92.11 +89.87 +89.67 +41.52 +40.8 +92.11 +89.92 +89.67 +60.73 +92.24 +67.186 +88.289 +90.59 +92.6 +89.87 +60.73 +15.90 +84.18 +92.6 +33.69 +41.52 +40.8 +92.11 +91.1 +33.69 +92.24 +53.74 +92.24 +12.9{N:001} +59.72 +92.4 +31.102 +89.87 +33.69 +92.24 +12.9{N:001} +89.65 +31.1 +31.102 +64.12 +3.35 +3.20 +71.14 +33.69 +92.24 +3.6 +92.29 +43.11 +89.87 +43.5 +84.22 +92.24 +1.69 +89.87 +71.14 +36.15 +92.7 +43104 92.14 +63.20 +92.7 +57.1 +87.76 +43.4 +89.139 +44.3 +92.27 +15.93 +84.4 +92.24 +1.95 +33.69 +92.11 +67.53 +15.86 +17.23 +89.125 +69.12 +33.69 +92.11 +77.3 +92.14 +23.20 +89.87 +49.15 +35.19 +92.1 +67.119 +23.1 +89.92 +23.34 +89.87 +67.48 +92.29 +23.1 +89.92 +23.34 +92.6 +69.15 +90.65 +33.350 +92.24 +87.76 +89.33 +42.7 +92.24 +33.325 +61.9 +89.93 +92.7 +43157 42.7 +59.23 +92.24 +33.325 +92.7 +33.69 +90.21 +87.76 +33.361 +13.4 +92.27 +42.7 +71.25 +42.7 +91.1 +13.107 +67.136 +92.24 +15.18 +84.16 +93.480a +43179 92.11 +15.21 +84.29 +83.10 +93.568a +89.92 +93.444a +89.87 +15.93 +92.11 +84.22 +92.12 +1.92 +15.78 +60.19 +23.162 +9.24 +92.27 +17.1 +83.31 +89.87 +92.11 + +33.80 +33.69 +93.169a +87.50 +88.76 +92.4 +89.87 +24.1 +33.69 +92.11 +15.34 +24.25 +92.25 +92.24 +53.87 +89.87 +13.107 +67.136 +92.24 +15.35 +92.11 +23.137 +89.87 +60.10 +63.20 +92.11 +24.1 +90.21 +23.136 +15.88 +89.79 +33.80 +78.2 +33.357 +92.24 +12.1 +89.87 +17.22 +43241 8.18 +83.25 +92.24 +8.49 +92.11 +33.349 +92.11 +89.92 +92.37 +13.4 +93.569 +89.87 +33.28 +92.24 +93.169a +33.69 +43258 92.24 +60.19 +23.137 +89.124 +92.24 +60.18 +83.6 +69.3 +27.27 +15.88 +90.51 +33.357 +92.24 +12.1 +89.131 +43274 92.24 +11.76 +92.29 +89.87 +33.69 +92.11 +15.36 +15.34 +92.24 +31.85 +92.6 +23.136 +92.6 +43288 33.180 +90.1 +92.24 +11.49 +67.30 +13.117 +92.24 +37.64 +92.24 +12.1 +33.184 +92.11 +43301 33.69 +69.3 +13.117 +92.24 +37.64 +92.24 +12.1 +89.79 +24.48 +69.7 +33.69 +91.13 +83.1 +89.139 +83.2 +89.23 +91.13 +92.24 +37.64 +92.24 +12.1 +83.17 83.9 +92.7 +85.1 +89.87 +33.69 +90.58 +92.24 +36.38 +13.117 +67.142 +43333 25.12 +92.22 +92.24 + +92.24 +9.3 +92.24 +9.3 +90.79 +43343 69.3 +90.79 +89.87 +33.69 +92.7 +91.13 +83.2 +91.13 +83.1 +69.3 +15.37 +69.7 +15.158 +89.23 +64.13 +92.24 +14.16 +14.47 +78.48 +92.24 +83.51 +92.24 +1.5 +43367 92.24 +83.51 +1.5 +14.37 +61.9 +13.1 +92.24 +9.3 +92.24 +9.3 +67.33 +92.24 + +92.11 +89.124 +71.34 +67.18 +92.11 +59.1 +24.78 +89.92 +30.117 +90.7 +92.24 +11.4 +92.29 +89.92 +64.14 +13.3 +67.136 +92.24 +67.142 +93.285 +61.9 +13.1 +89.93 +67.136 +92.24 +67.142 +92.24 +9.3 +92.24 +9.3 +23.1 +23.34 +34.66 +34.72 +67.119 +92.27 +67.186 +15.93 +93.285 +84.22 +92.24 +6.44 +89.87 +13.117 +92.24 +14.34 +89.87 +20.31 +63.2 +64.14 +64.1 +13.3 +67.136 +92.24 +67.142 +93.240 +23.1 +23.34 +57.188 +57.186 +43.5 +45.1 +89.124 +92.27 +67.186 +15.40 +93.240 +84.3 +93.585 +14.11 +2.3 +89.92 +2.26 +84.3 +1.5 +89.87 +20.31 +63.2 +43459 92.24 +58.31 +13.1 +92.27 + +92.24 +9.3 +92.24 +9.3 +28.38 +67.33 +92.30 +92.24 + +92.27 +85.1 +83.46 +92.24 +7.51 +89.92 +92.24 +57.20 +92.11 +83.13 +92.24 +7.3 +69.3 +15.107 +15.203 +92.11 +89.92 +92.24 +83.13 +1.95 +64.1 +69.3 +15.90 +84.16 +92.24 +83.40 +29.7 +92.24 +10.54 +93.240 +71.8 +92.27 +68.60 +92.24 +21.24 +92.11 +21.24 +57.68 +92.11 +43513 71.8 +92.27 +57.68 +23.89 +92.11 +33.69 +92.7 +92.29 +92.24 +67.192 +85.1 +60.11 +83.46 +6.106 +43528 92.24 +60.10 +15.168 +43532 92.24 +58.37 +15.48 +85.1 +46.16 +60.11 +43539 92.24 + +92.24 +43543 15.168 +89.124 +92.24 +58.37 +15.48 +89.87 +33.28 +33.69 +92.11 +83.6 +12.9{N:001} +89.87 +92.24 +33.69 +92.11 +83.5 +92.24 +8.1 +83.2 +89.93 +92.24 +4.42 +15.124 +43567 33.69 +33.15 +92.11 +90.25 +92.24 +71.21 +67.88 +33.178 +92.11 +89.92 +69.3 +25.288 +33.69 +56.28 +92.12 +85.1 +83.13 +92.12 +1.88 1.89 +92.24 +12.1 +69.3 +87.14 +89.92 +9.1 +69.3 +87.11 +89.94 +10.61 +85.1 +83.13 +92.24 +1.88 1.89 +92.30 +89.87 +15.81 +84.18 +92.11 +33.69 +56.35 +92.1 +89.25 +92.24 +39.9 +92.1 +43613 69.3 +30.58 +67.136 +67.78 +89.124 +67.48 +92.29 +31.5 +43625 92.24 +12.1 +69.3 +87.14 +69.7 +9.1 +87.11 +91.6 +89.26 +92.24 +13.127 +92.1 +22.7 +92.24 +10.61 +92.29 +56.35 +92.11 +89.59 +69.3 +43646 78.47 +15.81 +25.245 +92.1 +89.87 +33.69 +92.24 +12.9{N:001} +31.56 +92.14 +92.24 +56.28 +92.24 +88.21 +33.69 +89.94 +69.5 +69.5 +92.24 +12.1 +90.45 +92.24 +56.35 +92.24 +30.93 +92.11 +92.24 +33.81 +92.11 +67.92a +89.92 +67.92a +89.92 +25.168 67.126 +90.57 +92.11 +33.69 +92.7 +90.21 +90.45 +92.24 +56.35 +92.11 +67.111 +67.111 +89.130 +92.24 +9.3 +92.24 +9.3 +15.81 +69.14 +27.27 +92.24 +31.102 +83.46 +92.24 +9.22 +43705 33.69 +89.93 +90.58 +92.12 +92.24 +31.82 +90.23 +92.25 +90.21 +13.1 +88.12 +89.92 +88.195 +92.24 +63.21 +92.24 +33.15 +92.29 +9.24 +60.11 +15.101 +84.22 +92.24 +7.16 +33.178 +92.24 +43732 11.49 +89.92 +92.24 +58.37 +57.184 +92.24 +11.49 +17.1 +92.29 +83.24 90.58 +92.25 +33.178 +92.24 +12.1 +33.349 +92.6 +90.21 +69.3 +13.1 +64.13 +92.24 +63.21 +92.24 +9.1 +25.25 57.239 +88.20 +88.277 +89.139 +64.12 +43762 92.29 +92.24 +57.184 +53.65 +60.69 +92.24 +67.177 +43770 59.23 +59.19 +57.58 +89.124 +92.24 +57.184 +83.30 +85.8 +69.3 +25.1 +69.8 +92.24 +8.23 +24.34 +84.16 +92.24 +1.5 +89.125 +19.1 +92.24 +8.36 +92.11 +33.69 +92.24 +12.1 +88.75 +92.1 +92.24 +88.295 +33.69 +92.7 +15.107 +92.29 +88.16 +84.16 +92.24 +7.2 +92.11 +89.132 +92.30 +89.33 +59.23 +92.24 +87.20 +92.25 +87.63 +89.124 +92.24 +87.63 +92.25 +87.20 +43822 15.172 +92.11 +89.93 +92.24 +9.45 +89.59 +92.11 +24.73 +89.124 +24.1 +92.24 +36.38 +33.419 +92.11 +89.124 +92.24 +93.169a +33.308 +92.11 +33.69 +13.140 +92.24 +9.42 +15.81 +84.18 +92.1 +89.92 +69.3 +13.146 +92.11 +89.23 +92.24 +92.31 +13.1 +92.24 +37.64 +92.24 +12.1 +72.6 +33.69 +92.7 +71.8 +92.27 +69.3 +31.51 +92.24 +37.64 +92.24 +12.1 +64.12 +9.42 +69.5 +69.5 +90.70 +13.62 +92.11 +91.1 +33.180 +92.12 +37.56 +92.11 +33.69 +33.243 +88.1 +92.14 +42.7 +23.88 +67.96 +57.131 +89.87 +33.69 +92.11 +92.24 +93.169a +92.15 +92.1 +33.131 +88.1 +92.23 +88.1 +89.131 +43904 63.4 +92.24 +12.1 +92.24 +33.330 +28.1 +69.3 +88.276 +69.3 +20.82 +69.3 +57.232 +69.3 +33.271 +87.8 +92.24 +10.14 +92.6 +89.92 +92.24 +10.16 +89.87 +92.24 +33.69 +92.29 +59.23 +36.19 +67.131 +67.154 +89.87 +24.52 +92.24 +93.169a +33.69 +92.11 +59.75 +60.10 +92.6 +57.44 71.33 +59.23 +59.7 +57.1 +57.186 +89.87 +57.94 +57.53 +43951 57.1 +65.10 +83.13 +92.24 +1.11 +89.87 +84.24 +36.31 +92.1 +89.124 +92.24 +24.52 +92.29 +25.277 +13.48 +89.23 +13.1 +57.26 +78.19 +89.87 +24.1 +92.11 +92.24 +93.169a +33.69 +92.16 +22.32 +92.24 +92.24 +57.31 +57.1 +13.62 +92.24 +37.64 +92.24 +12.1 +15.93 +89.23 +22.39 +13.1 +4.30 +84.29 +6.216 +6.215 +90.70 +64.18 +57.26 +13.62 +92.24 +37.64 +92.24 +12.1 +90.70 +89.87 +33.69 +92.24 +24.52 +91.12 +92.14 +74.5 +21.27 +89.87 +92.24 +33.69 +92.24 +71.3 +90.3 +9.1 +71.2 +90.3 +92.24 +12.1 +13.1 +89.87 +33.69 +92.24 +93.296 +91.13 +92.4 +85.45 +92.24 +57.4 +36.31 +92.6 +44036 92.24 +33.69 +92.11 +72.6 +33.69 +92.7 +90.21 +92.23 +13.69 +92.27 +85.45 +7.3 +89.139 +10.54 +89.139 +10.49 +89.139 +10.18 +89.139 +10.36 +89.31 +92.24 +37.64 +92.24 +12.1 +92.27 +69.4 +69.3 +44065 59.20 +67.136 +92.24 +67.145 +92.29 +89.87 +67.136 +92.24 +67.143 +92.24 +13.50 +23.88 +67.96 +44079 15.180 +92.24 +60.21 +33.69 +90.58 +92.11 +91.13 +15.101 +84.16 +93.480a +89.87 +13.126 +59.23 +92.24 +33.54 +90.4 +92.24 +53.79 +92.24 +9.3 +92.24 +9.3 +89.23 +37.111 +92.24 +11.37 +89.87 +33.406 +89.92 +33.390 +89.92 +23.43 +89.87 +19.9 +20.61 +92.11 +89.87 +92.24 +67.186 +92.24 +60.50 +23.93 +44122 92.11 +92.23 +92.29 +32.5 +44128 92.24 +33.98 +92.29 +28.79 +84.3 +92.11 +89.92 +69.3 +32.16 +92.24 +33.69 +44140 13.107 +67.136 +92.24 +15.75 +92.11 +84.16 +93.479 +24.38 +92.12 +17.12 +83.25 +92.24 +1.99 +33.173 +89.87 +24.52 +11.1 +15.22 +33.181 +92.14 +13.4 +92.29 +89.87 +33.198 +92.11 +90.21 +93.169a +92.24 +93.538 +15.28 +89.87 +33.81 +33.69 +93.169a +10.30 +93.91 +88.76 +92.1 +44179 92.24 +15.143 +33.419 +92.11 +90.22 +33.121 +89.124 +92.11 +59.11 +78.28 +33.83 +10.30 +93.91 +88.76 +92.1 +89.87 +17.1 +92.24 +93.169a +33.323 +92.11 +15.165 +84.18 +92.11 +89.87 +15.75 +92.11 +33.180 +92.11 +92.14 +92.6 +41.7 +25.1 +89.87 +92.24 +33.69 +12.9{N:001} +90.22 +24.42 +89.87 +92.24 +93.169a +33.69 +92.11 +24.42 +92.24 +31.85 +92.6 +23.136 +92.6 +44230 67.113 +24.42 +89.87 +15.156 +92.11 +33.357 +92.24 +12.1 +89.87 +59.23 +92.24 +11.1 +24.1 +13.128 +33.354 +92.24 +12.1 +91.1 +15.93 +15.21 +92.24 +93.479 +89.87 +91.13 +9.24 +33.126 +33.129 +93.134 +89.92 +92.11 +58.67 +57.185 +89.92 +92.11 +57.26 +89.92 +68.60 +24.1 +92.24 +93.169a +92.14 +13.4 +44273 69.3 +74.5 +89.25 +92.24 +11.1 +89.33 +92.24 +81.4 +79.125 81.13 +13.1 +89.87 +15.235 +84.16 +92.24 +83.33 +15.101 +84.20 +3.7 +89.59 +24.1 +92.11 +89.33 +83.2 92.30 +15.21 +67.62 +89.87 +67.45 +15.81 +84.17 +92.24 +80.1 +24.10 +92.24 +93.169a +33.69 +90.58 +92.11 +93.134 +68.79 +15.107 +89.23 +67.205 +83.13 +92.24 +7.2 +92.6 +92.1 +85.55 +71.21 +89.87 +68.79 +15.107 +89.87 +34.53 +92.11 +25.125 +89.87 +24.1 +59.23 +33.383 +33.69 +90.21 +89.111 +88.295 +9.24 +15.93 +34.61 +89.87 +17.1 +93.134 +33.69 +90.58 +92.24 +12.9{N:001} +12.9{N:001} +91.13 +92.24 +60.62 +92.1 +92.24 +57.16 +92.24 +57.53 +57.71 +89.92 +89.65 +92.12 +92.12 +33.434 +57.153 +60.76 +89.87 +33.69 +90.58 +92.11 +92.24 +93.169a +90.21 +67.205 +21.26 +92.24 +10.8 +92.29 +13.107 +89.33 +89.93 +92.11 +10.30 +93.7 +13.4 +89.23 +15.81 +92.24 +9.3 +92.24 +9.3 +27.41 +89.92 +21.27 +92.24 +21.32 +44395 24.52 +92.11 +92.29 +59.72 68.13 +33.69 +33.15 +89.26 +92.24 +85.1 +83.26 +93.480a +92.11 +89.92 +31.29 +92.11 +89.33 +67.113 +67.62 +92.24 +37.64 +92.24 +12.1 +24.23 +89.50 +33.69 +9.24 +92.12 +87.27 +15.18 +84.22 +1.79 +81.14 +37.65 +92.25 +1.82 +89.87 +15.88 +44433 33.307 +60.19 +87.76 +92.25 +57.71 +92.11 +60.19 +6.81 +89.87 +33.69 +90.58 +92.11 +57.197 +67.136 +92.27 +15.81 +89.124 +92.24 +11.68 +92.11 +88.198 +92.11 +44456 15.66 +37.87 +36.35 +92.11 +33.69 +69.3 +25.1 +92.29 +37.64 +37.9 +92.4 +89.87 +13.107 +67.33 +92.24 +15.91 +92.11 +37.65 +92.24 +37.64 +89.87 +33.69 +33.307 +92.11 +92.24 +87.76 +92.29 +92.27 +57.71 +92.24 +6.73 +89.59 +27.2 +44490 92.14 +44492 89.87 +15.86 +92.24 +60.46 +33.69 +57.12 +92.24 +6.81 +92.6 +60.19 +6.81 +57.191 +89.87 +33.69 +92.11 +65.23 +65.20 +87.76 +89.33 +89.5 +87.66 +31.87 +13.3 +44516 37.35 +44518 83.49 +60.19 +1.88 1.89 +89.87 +15.81 +92.24 +60.49 +33.69 +57.12 +92.24 +6.81 +92.6 +57.189 +60.14 +6.81 +44534 33.69 +89.93 +92.29 +89.92 +92.6 +83.49 +60.14 +1.88 1.89 +13.3 +89.87 +92.24 +58.37 +15.81 +33.69 +57.12 +91.13 +92.24 +6.81 +92.6 +92.27 +57.1 +85.53 +83.13 +6.159 +89.23 +25.252 +92.6 +90.21 +9.24 +88.138 +13.1 +57.218 +92.27 +69.3 +57.217 +89.92 +43.14 +92.27 +69.3 +43.6 +33.69 +92.11 +89.77 +92.24 +33.101 +92.6 +56.20 +92.6 +88.110 +87.76 +28.1 +90.21 +92.1 +13.1 +9.24 +88.138 +57.218 +92.27 +69.3 +57.217 +89.92 +43.14 +92.27 +69.3 +43.6 +91.12 +44602 69.3 +57.217 +92.1 +92.24 +6.73 +84.20 +57.215 +71.14 +92.1 +15.81 +89.105 +57.212 +92.11 +57.65 +89.87 +92.24 +17.3 +33.69 +15.203 +84.3 +92.11 +92.24 +6.81 +89.87 +57.71 +92.24 +92.24 +60.19 +6.81 +57.1 +89.87 +33.69 +92.11 +57.12 +57.1 +60.19 +6.81 +33.69 +92.7 +90.21 +59.23 +92.24 +57.1 +57.71 +89.124 +84.3 +92.24 +69.3 +57.1 +44652 92.27 +57.1 +15.203 +89.130 +92.24 +39.11 +92.1 +92.29 +92.24 +69.3 +25.1 +92.1 +37.64 +37.9 +92.11 +15.165 +83.1 +89.87 +20.72 +92.11 +83.33 +92.1 +91.1 +33.69 +92.29 +15.18 +83.33 +15.101 +84.16 +93.480a +89.87 +13.107 +67.45 +15.75 +84.16 +93.433 +89.92 +93.427a +84.18 +92.24 +1.46 +92.24 +33.131 +3.9 93.616 +15.66 +60.11 +92.24 +36.38 +33.69 +15.15 +84.16 +92.24 +83.42 +1.92 +84.22 +92.27 +15.93 +27.27 +18.13 +4.33 +83.46 +92.27 +92.23 +9.1 +67.9 +17.12 +89.87 +18.18 +92.11 +15.165 +89.87 +89.67 +92.12 +92.7 +33.180 +44729 18.18 +61.9 +33.69 +90.21 +92.24 +12.9{N:001} +92.11 +57.40 +44739 15.37 +92.24 +15.66 +27.27 +64.14 +33.69 +92.11 +89.87 +18.18 +92.11 +92.24 +4.33 +33.69 +92.24 +57.12 +92.11 +90.58 +92.11 +92.15 +18.18 +92.24 +4.33 +89.87 +92.24 +33.69 +90.21 +92.24 +12.9{N:001} +92.11 +57.40 +44770 89.87 +15.165 +92.11 +84.18 +92.24 +93.169a +89.87 +15.219 +92.11 +92.24 +6.162 +84.20 +92.24 +4.33 +15.98 +92.24 +93.169a +89.87 +15.10 +92.11 +16.23 +92.24 +6.162 +44794 83.47 +92.24 +1.99 +44798 15.75 +92.11 +67.20 +83.24 +92.24 +15.109 +92.24 +1.46 +92.24 +3.9 93.616 +68.1 +59.23 +92.24 +11.1 +92.24 +36.38 +25.125 +33.354 +92.24 +12.1 +33.80 +78.2 +89.36 +59.23 +92.27 +24.1 +76.7 +33.69 +33.470 +92.24 +15.81 +90.23 +33.126 +12.9{N:001} +92.24 +37.67 +83.13 +1.11 +25.248 +89.92 +87.4 +83.13 +1.13 +89.87 +92.12 +92.24 +11.49 +63.20 +92.24 +11.1 +33.69 +90.58 +92.11 +33.243 +33.419 +92.24 +36.38 +92.6 +89.87 +33.184 +33.69 +33.69 +92.7 +89.67 +92.29 +33.117 +92.24 +2.24 +33.83 +91.1 +67.45 +15.75 +24.1 +92.24 +1.89 +25.138 +89.27 +92.11 +33.69 +90.21 +89.65 +32.16 +67.33 +92.24 +67.186 +92.29 +44885 92.6 +92.24 +89.7 +22.42 +89.124 +67.38 +28.79 +84.3 +32.24 +92.6 +89.33 +13.112 +67.142 +90.57 +92.6 +44901 85.39 +92.24 +39.11 +92.6 +7.60 +92.6 +89.92 +15.147 +92.6 +89.92 +19.45 +92.6 +84.7 +89.87 +20.57 20.64 +92.6 +89.92 +92.24 +11.63 +92.6 +83.13 +92.6 +89.92 +69.3 +85.62 + +83.46 + +83.13 +92.6 +89.24 +44933 69.3 +32.16 +92.24 +67.1 +92.24 +34.51 +92.6 +91.1 +15.93 +84.22 +92.24 +7.16 +68.1 +15.44 +92.24 +57.186 +33.69 +92.11 +33.54 +91.12 +13.4 +92.24 +7.2 +92.1 +7.2 +33.178 +89.124 +92.7 +92.11 +13.9 +1.57 +57.240 +91.1 +44967 33.224 +92.24 +44970 67.92 +83.13 +92.24 +7.16 +89.124 +92.24 +53.88 +89.92 +92.24 +53.94 +27.34 +92.11 +20.31 +89.92 +92.24 +87.45 +92.24 +11.12 +44989 69.3 +27.1 +92.24 +92.14 +42.7 +89.23 +92.24 +11.1 87.64 +59.23 +30.34 68.15 +92.11 +24.52 +91.1 +13.107 +67.33 +92.22 +92.24 +67.186 +33.224 +92.11 +92.24 +11.1 +83.13 +92.24 +7.16 +89.92 +33.215 +17.5 +92.24 +53.88 +89.92 +92.24 +53.94 +89.107 +92.24 +53.77 +89.87 +33.69 +33.69 +90.58 +92.11 +33.69 +92.4 +89.76 +92.36 +37.35 +92.29 +42.7 +89.139 +92.14 +13.4 +92.24 +37.98 +92.6 +92.24 +37.35 +92.29 +89.87 +33.184 +33.69 +90.58 +92.11 +33.180 +92.7 +89.93 92.1 +33.98 +89.87 +33.69 +92.1 +92.24 +53.41 +93.190a +90.16 +1.11 +13.1 +89.139 +90.16 +9.1 +89.87 +92.24 +33.157 +90.58 +92.25 +33.69 +90.21 +89.67 +33.69 +90.16 +1.11 +33.69 +45081 69.3 +31.35 +92.11 +89.124 +89.67 +33.69 +90.16 +9.1 +92.24 +87.64 +59.23 +20.79 +92.4 +89.23 +33.301 +45097 93.190a +53.79 +13.4 +89.87 +33.184 +69.3 +28.1 +84.6 +89.87 +92.24 +93.169a +33.69 +92.11 +69.7 +92.1 +33.69 +92.7 +89.76 +92.36 +37.35 +92.29 +42.7 +45120 68.1 +90.58 +92.24 +87.64 +33.69 +92.24 +33.15 +92.29 +9.24 +43.5 +3.28 +89.87 +57.177 +92.11 +43.2 +89.87 +15.47 +67.78 +59.44 +89.87 +67.1 +15.66 +84.18 +92.24 +43.2 +87.76 +89.59 +63.20 +92.24 +43.15 +92.24 +3.28 +57.152 +92.11 +89.124 +92.24 +43.2 +15.68 +92.11 +19.2 +57.42 +89.87 +59.72 +58.37 +87.76 +15.66 +89.87 +92.24 +89.93 92.30 +19.2 +89.92 +88.127 +15.68 +57.42 +89.87 +59.72 +60.50 +15.66 +89.124 +92.24 +89.93 +92.29 +20.28 +15.220 +89.87 +33.69 +92.24 +57.12 +92.24 +3.28 +92.14 +42.7 +15.66 +92.24 +10.42 +92.1 +92.24 +25.45 58.53 +71.11 +92.29 +87.11 +89.87 +24.1 +92.11 +92.24 +43.2 +33.158 +90.58 +92.26 +33.69 +92.29 +13.4 +92.24 +57.139 +20.61 +92.11 +89.59 +92.4 +13.48 +92.24 +57.140 +89.87 +15.220 +92.11 +84.27 +92.24 +3.28 +20.61 +89.50 +92.14 +41.7 +92.11 +92.24 +57.12 +92.24 +3.28 +15.81 +89.87 +20.31 +92.24 +43.2 +92.29 +89.87 +57.71 +92.24 +3.28 +58.37 +89.87 +24.52 +33.69 +69.3 +13.107 +89.87 +92.24 +24.9 +92.11 +33.69 +89.50 +92.14 +13.4 +92.24 +33.54 +92.29 +2.24 +92.27 +30.117 +92.24 +45.1 +92.29 +13.48 +13.62 +7.44 +79.107 +59.23 +92.24 +15.118 +84.20 +92.30 +92.24 +2.24 +19.39 +89.124 +71.8 +84.20 +92.27 +15.118 +19.47 +92.11 +89.87 +68.60 +92.24 +53.94 +89.92 +92.24 +53.88 +37.110 +45297 92.11 +92.24 +37.110 +67.33 +92.11 +92.24 +67.1 +45305 25.252 +92.24 +87.64 +89.23 +32.16 +89.33 +90.25 +92.11 +33.69 +92.24 +33.15 +92.29 +91.1 +24.48 +15.66 +27.47 +88.227 +92.25 +88.12 +13.1 +89.59 +27.32 +92.11 +33.98 +89.61 +37.111 +92.11 +92.24 +37.56 +89.92 +92.24 +37.35 +92.24 +37.83 +89.87 +33.180 +92.11 +33.69 +33.243 +28.1 +90.21 +72.13 +33.69 +89.92 +33.224 +89.92 +69.3 +88.238 +88.238 +89.125 +45356 70.4 +92.24 +41.16 +92.24 +12.1 +33.224 +71.32 +92.4 +93.208 +57.182 +57.152 +89.139 +69.3 +89.124 +32.12 +92.11 +92.24 +88.270 +33.69 +90.58 +92.11 +28.47 +92.1 +6.75 +13.2 +92.14 +6.96 +89.92 +33.46 +89.87 +92.24 +33.69 +93.208 +89.87 +92.24 +33.69 +90.58 +92.11 +89.51 +57.153 +92.24 +93.208 +93.208 +89.92 +92.24 +92.24 +12.1 +92.24 +12.1 +89.87 +69.3 +74.9 +27.32 +92.11 +33.98 +83.33 +92.24 +87.64 +89.87 +25.213 +89.27 +92.24 +33.185 +92.11 +33.121 +45422 15.77 +92.12 +92.24 +11.48 +92.24 +33.455 +23.93 +69.3 +13.69 +33.180 +92.11 +33.69 +33.243 +93.266 +33.61 +92.4 +89.67 +92.12 +10.49 +23.99 +57.1 +10.54 +89.92 +92.29 +10.41 +13.1 +90.22 +57.55 +92.24 +10.49 +92.11 +92.24 +10.54 +89.87 +23.59 +23.59 +92.24 +10.49 +92.11 +89.50 +60.16 +10.49 +13.69 +89.87 +92.24 +60.46 +57.55 +10.54 +23.99 +10.41 +89.87 +92.24 +60.49 +89.87 +92.24 +60.50 +57.55 +92.11 +89.94 +64.16 +89.93 +92.24 +60.16 +69.3 +85.65 +10.36 +89.87 +23.99 +61.16 +89.93 +92.24 +10.54 +23.99 +89.50 +92.24 +9.34 +67.33 +92.24 +23.93 +92.14 +92.11 +10.54 +13.48 +89.23 +92.24 +60.16 +57.1 +92.11 +10.54 +89.87 +33.69 +92.11 +92.24 +93.169a +92.24 +11.16 +92.24 +11.16 +45521 34.66 +89.92 +34.72 +89.124 +92.24 +65.18 +92.24 +67.143 +92.30 +90.61 +89.92 +92.24 +23.93 +92.24 +89.121 +23.121 +69.9 +34.66 +69.9 +34.72 +89.23 +69.8 +23.99 +59.75 +74.5 +89.23 +12.29 +13.1 +89.92 +9.4 +12.1 +13.4 +92.24 +23.93 +9.4 +13.4 +89.124 +90.21 +23.94 +92.24 +23.121 +45563 93.266 +33.209 +83.23 +92.24 +3.16 +67.45 +33.69 +12.9{N:001} +92.24 +12.1 +93.7 +89.92 +12.1 +93.180 +89.92 +12.1 +93.157a +45581 12.1 +69.3 +13.1 +23.121 +89.125 +23.88 +89.23 +63.2 +92.11 +23.88 +89.87 +33.184 +92.12 +92.24 +53.94 +33.69 +33.243 +72.12 +33.69 +89.23 +67.130 +25.161 +33.180 +92.11 +92.23 +45607 33.69 +90.58 +92.11 +92.16 +33.69 +92.24 +53.82 +13.4 +93.91 +10.30 +89.23 +92.11 +93.91 +33.69 +83.13 +33.52 +33.112 +33.69 +12.9{N:001} +92.24 +12.9{N:001} +92.1 +17.12 +87.34 +82.8 +92.1 +67.119 +71.8 +85.32 +92.24 +39.11 +92.6 +37.8 6.117 +92.24 +37.8 +92.6 +89.50 +93.91 +92.11 +12.9{N:001} +33.131 +91.12 +92.16 +92.11 +10.30 +13.4 +45654 24.52 +59.23 +92.24 +11.1 +33.69 +92.24 +36.38 +27.59 +89.25 +92.24 +53.94 +92.24 +25.102 +15.227 +89.80 +6.174 +89.92 +25.103 +33.20 +83.13 +92.24 +57.207 +89.92 +87.18 +83.13 +92.24 +7.20 +89.92 +87.18 +83.23 +92.24 +23.25 +92.27 +88.145 +92.24 +7.3 +92.24 +10.61 +89.92 +88.230 +67.89 +33.178 +92.29 +90.63 +78.31 +56.30 +45701 24.10 +24.1 +92.24 +85.34 +84.22 +92.24 +6.141 +92.24 +57.84 +92.11 +57.26 +89.87 +24.1 +92.12 +10.61 +57.49 +15.215 +83.2 +6.79 +60.11 +89.87 +33.69 +70.3 +33.69 +92.7 +90.21 +92.24 +10.61 +92.29 +92.24 +57.53 +78.28 +59.23 +85.34 +89.23 +59.23 +92.29 +90.16 +92.24 +59.52 +92.11 +85.34 +84.16 +92.24 +57.84 6.142 +89.124 +92.29 +90.16 +92.24 +57.38 +92.11 +63.2 +92.24 +57.18 +92.27 +57.1 +85.34 +91.1 +92.12 +33.69 +89.6 +92.24 +7.16 +90.21 + +79.9 +89.92 +53.18 +79.12 +33.69 +92.29 +92.27 +24.14 +13.117 +67.142 +67.136 +92.27 +69.3 +85.62 +83.46 + + +92.27 +69.3 +20.54 +45787 33.180 +92.11 +33.69 +33.243 +89.50 +67.30 +92.29 +13.104 +89.87 +92.14 +92.24 +33.477 +45800 67.62 +92.29 +13.107 +89.87 +92.24 +33.69 +27.58 +89.62 +31.67 +89.23 +59.1 +15.81 +90.23 +92.24 +33.126 +92.1 +33.69 +92.1 +13.4 +89.92 +92.24 +67.145 +15.75 +69.3 +15.10 +36.35 +92.11 +89.94 +45829 33.212 +55.5 +89.92 +39.34 39.36 +69.3 +25.264 +89.23 +71.34 +92.29 +13.107 +67.18 +89.125 +69.3 +67.53 +92.24 +67.66 +67.47 +33.69 +92.11 +55.2 +11.55 +90.34 +11.55 +89.92 +1.82 +90.34 +1.82 +89.95 +14.87 +78.2 +89.92 +89.90 +80.1 +23.158 +89.92 +23.33 +13.104 +89.102 +25.258 +89.102 +90.15 +1.5 +33.477 +78.2 +13.104 +89.94 +67.17 +92.29 +59.23 +37.110 +45880 92.7 +92.24 +37.110 +92.11 +89.92 +39.45 +37.111 +84.16 +92.24 +7.20 +89.92 +7.24 +15.177 +83.35 +37.67 +89.92 +37.59 +89.31 +92.24 +33.126 +92.1 +89.41 +92.7 +45904 33.262 +89.50 +30.76 +45908 92.24 +30.76 +92.7 +69.3 +30.61 +33.435 +89.23 +92.1 +33.105 +92.7 +33.101 +89.92 +32.32 +92.27 +69.3 +74.5 +39.18 +89.139 +33.455 +59.23 +92.24 +39.1 +92.7 +89.94 +37.111 +45934 90.1 +10.18 +89.92 +10.49 +89.92 +10.6 +89.92 +34.11 +89.92 +20.65 +63.20 +92.7 +89.92 +45948 88.198 +90.1 +59.23 +89.26 +92.24 +33.126 +92.1 +45956 8.12 +84.4 +92.24 +8.10 +92.7 +69.5 +69.5 +27.29 +90.10 +92.24 +25.174 +92.7 +45969 92.24 +21.20 +92.7 +45974 24.1 +15.147 +90.1 +55.7 +93.480a +67.47 +32.16 +90.21 +67.21 +92.24 +20.41 +92.11 +67.47 +92.24 +83.13 +92.24 +93.486a +15.61 +84.16 +92.24 +1.46 +89.92 +92.24 +45998 83.10 +92.11 +15.41 +89.92 +92.24 +83.13 +92.24 +1.87 +69.3 +15.93 +84.22 +92.11 +89.33 +67.142 +39.33 +92.29 +13.4 +92.24 +13.106 +59.23 +92.24 +33.54 +22.9 +92.24 +23.50 +23.50 +23.50 +89.92 +92.24 +23.8 +67.136 +92.30 +92.24 +67.142 +89.23 +13.104 +22.1 +78.2 +83.46 +92.24 +1.39 +89.92 +38.10 +92.24 +11.12 +92.29 +89.92 +23.105 +79.109 +6.33 +89.92 +55.24 +83.9 +92.24 +11.55 +59.23 +89.92 +93.480a +46057 20.22 39.54 +90.1 +11.37 +67.119 +46062 67.70 +67.1 +11.37 +91.1 +13.104 +33.477 +83.13 +1.28 +89.92 +1.29 +89.92 +1.30 +89.92 +83.46 +92.24 +1.39 +25.240 +11.55 +13.8 +32.9 +14.75 +1.69 +89.92 +14.26 +23.184 25.293 +9.1 +89.25 +25.251 +89.92 +30.55 +92.24 +15.83 +92.24 +1.39 +89.23 +92.24 +12.44 +92.24 +1.5 +16.7 +89.87 +67.47 +24.1 +92.24 +9.3 +92.24 +9.3 +15.81 +83.13 +1.34 +89.79 +76.1 +89.92 +76.13 +78.3 +89.87 +68.1 +92.29 +13.107 +17.33 +89.92 +25.160 +92.24 +8.10 +92.7 +89.26 +67.21 +92.24 +37.128 +92.7 +91.1 +33.69 +33.15 +92.11 +24.1 +92.24 +3.5 +89.92 +59.23 +92.24 +3.2 +67.31 +23.195 +67.20 +32.11 +90.19 +92.25 +32.16 +90.21 +67.20 +67.61 +92.24 +67.163 +85.1 +61.9 +89.93 +92.7 +46160 24.1 +92.29 +13.107 +32.16 +90.21 +67.61 +13.1 +92.24 +37.64 +92.24 +12.1 +72.6 +33.69 +92.7 +90.21 +69.5 +69.5 +13.93 67.85 +92.24 +10.4 11.4 67.144 +92.29 +67.119 +71.8 +59.23 +13.107 +92.24 +1.3 +46188 92.24 +1.3 +13.93 +89.124 +92.24 +33.98 +92.1 +69.5 +69.5 +13.93 +46199 27.59 +92.25 +46203 22.18 +92.7 +92.24 +26.3 +89.76 +88.286 +89.92 +88.283 +89.92 +25.224 +41.19 +46215 13.119 +90.57 +92.7 +67.113 +92.24 + +92.30 +64.12 +6.23 +89.23 +13.119 +90.57 +63.2 +92.24 +85.63 +83.46 +79.93 +63.2 +92.24 +1.39 +89.124 +27.57 +67.33 +59.23 +67.1 +33.170 +90.22 +74.10 79.64 +21.14 +92.29 +59.23 +92.24 +67.62 +13.107 +89.87 +17.1 +83.33 +92.24 +9.3 +92.24 +9.3 +46258 33.224 +92.24 +67.186 +83.13 +92.24 +7.16 +89.124 +92.24 +67.192 +15.40 +67.194 +83.47 +92.24 +1.46 +92.24 +33.131 +3.9 93.616 +89.87 +59.23 +92.24 +11.1 +67.190 +84.18 +92.11 +84.22 +92.24 +7.16 +24.52 +92.11 +46288 67.21 +92.24 +51.2 +92.24 +5.13 +92.24 +33.131 +51.6 +89.92 +27.34 +92.24 +53.88 +89.92 +92.24 +53.94 +92.24 +92.16 +20.71 +92.11 +89.23 +25.252 +92.24 +87.64 +89.87 +15.93 +12.34 93.330 +84.22 +93.173a +92.24 +33.129 +93.181 +13.1 +63.20 +92.24 +60.1 +92.24 +60.21 +46326 15.37 +33.157 +92.24 +53.88 +89.92 +37.91 +92.24 +92.16 +92.11 +37.111 +92.11 +46338 25.125 +89.87 +31.18 +92.11 +6.73 +57.152 +89.87 +33.278 33.359 +89.87 +13.19 +67.5 +92.24 +37.111 +92.11 +89.120 +11.1 +92.11 +46356 13.117 +92.24 +67.178 +92.24 +5.13 +92.27 +71.21 +20.72 +92.24 +4.27 +46367 15.66 +93.296 +89.92 +93.190b +33.69 +15.34 +77.3 +92.4 +92.24 +51.7 +89.59 +23.1 +89.87 +92.24 +33.69 +92.11 +25.1 +83.6 +77.3 +46387 92.24 +33.69 +92.11 +91.13 +15.93 +92.7 +84.22 +92.24 +1.89 +13.120 +92.7 +9.24 +6.128 +2.7 +15.188 +15.144 +92.11 +84.22 +92.24 +7.3 +84.22 +92.27 +15.93 +89.87 +33.69 +92.24 +57.14 +92.24 +7.3 +33.69 +92.6 +92.24 +33.243 +83.6 +85.1 +92.24 +7.30 +83.5 +92.24 +4.27 +89.108 +92.24 +36.38 +92.1 +23.1 +89.92 92.30 +92.7 +28.47 +7.27 +79.123 +46.9 +83.2 +77.3 +46441 15.37 +27.27 +64.14 +33.69 +92.11 +89.87 +77.3 +92.24 +51.7 +91.1 +46452 13.107 +92.24 +67.1 +17.23 +89.92 +92.24 +53.74 +89.107 +92.11 +89.87 +33.69 +90.58 +92.11 +25.12 +25.12 +92.29 +92.24 +4.27 +23.1 +89.108 +92.7 +67.17 +92.24 +92.1 +24.78 +89.23 +33.69 +92.7 +90.21 +46482 69.5 +69.5 +23.1 +92.11 +67.119 +46488 13.106 +83.13 +92.24 +37.64 +92.24 +12.1 +89.87 +18.1 +6.121 +33.349 +33.69 +18.1 +92.29 +89.92 +57.89 +83.9 +92.25 +89.23 +33.69 +92.7 +69.5 +69.5 +23.34 +67.131 +92.24 +67.39 +89.142 +92.24 +13.49 +92.24 +3.27 +67.119 +46521 92.24 +37.64 +92.24 +12.1 +13.117 +89.87 +18.1 +5.8 +33.349 +19.34 +89.87 +57.71 +92.11 +33.69 +92.29 +58.68 +92.24 +8.1 +92.1 +92.24 +90.36 +92.7 +57.71 +92.29 +42.7 +89.57 +92.24 +92.2 +29.11 +89.93 +92.24 +6.121 +64.16 +67.48 +92.24 +23.20 +33.69 +92.24 +67.115 +34.44 +89.80 +92.24 +23.112 +92.1 +92.29 +92.24 +6.121 +92.24 +90.36 +92.7 +14.18 23.112 +89.130 +91.13 +92.24 +8.30 +92.24 +37.111 +92.1 +89.108 +92.1 +83.46 +92.24 +6.113 +89.33 +89.136 +92.24 +9.3 +92.24 +9.3 +89.8 +92.24 +37.96 +23.101 +89.136 +22.9 +92.24 +9.24 +92.30 +90.4 +92.27 +37.111 +89.87 +92.11 +68.1 +33.157 +83.9 +92.25 +92.24 +71.7 +92.14 +13.4 +63.20 +92.11 +92.24 +92.29 +42.8 +67.62 +46619 13.107 +83.9 +92.11 +89.93 +33.449 +92.24 +92.14 +92.11 +31.30 +13.1 +87.22 +89.87 +92.24 +33.69 +92.11 +92.24 +37.67 +92.24 +11.37 +37.50 +92.11 +89.92 +92.24 +37.48 +92.11 +35.15 +33.131 +89.124 +92.7 +69.3 +61.9 +89.125 +92.24 +87.22 +83.9 +92.7 +13.3 +64.12 +92.24 +67.116 +89.92 +92.24 +36.1 +64.12 +92.24 +35.19 +89.23 +92.14 +87.22 +92.24 +17.23 +89.139 +92.24 +35.19 +69.12 +92.24 +17.23 +89.124 +92.1 +46679 83.9 +92.7 +13.1 +64.12 +92.24 +35.19 +46686 92.7 +13.4 +92.24 +34.3 +89.108 +92.1 +89.80 +92.24 +88.308 +92.1 +92.1 +37.105 +92.7 +64.14 +37.105 +92.1 +92.24 +12.12 +92.1 +37.64 +91.15 +23.1 +89.92 +23.34 +83.23 +92.24 +6.113 +92.1 +83.13 +92.24 +37.64 +92.1 +89.92 +17.12 +83.46 +37.72 +92.24 +60.21 +10.2 +92.24 +93.182b +37.49 +93.341a +93.341a +91.13 +92.24 +12.34 93.330 +33.166 +92.7 +92.24 +46.18 +64.12 +92.24 +3.41 +89.124 +92.1 +33.170 +46744 92.6 +90.22 +69.3 +68.36 +92.24 +31.102 +92.6 +89.87 +92.6 +67.30 +41.51 +74.19 +92.24 +11.23 +92.6 +89.124 +92.24 +33.69 +92.11 +12.9{N:001} +89.108 +92.6 +77.2 +13.1 +89.102 +84.22 +7.24 +89.102 +13.62 +23.99 +15.10 +89.124 +92.24 +33.69 +33.69 +92.6 +93.296 +69.3 +14.76 +67.205 +4.45 +67.119 +60.71 +92.1 +46789 28.1 +33.277 +91.1 +33.69 +92.11 +46795 15.66 +92.7 +89.120 +6.144 +89.92 +6.145 +89.92 +6.182 +69.15 +92.12 +57.37 +89.87 +92.24 +33.69 +92.23 +89.87 +33.69 +92.11 +89.125 +67.38 +92.24 +57.1 +6.144 +15.203 +64.1 +89.93 +6.145 +89.92 +92.24 +69.3 +57.1 +57.186 +92.24 +6.172 +92.11 +89.87 +57.188 +6.33 +89.23 +33.69 +92.7 +90.21 +71.34 +92.29 +92.24 +33.54 +92.24 +46843 83.9 +88.140 +31.1 +13.126 +90.56 +92.1 +89.23 +91.12 +92.24 +89.6 +92.1 +67.66 +46856 89.87 +92.24 +33.69 +12.9{N:001} +91.13 +6.33 +83.1 +60.11 +89.87 +92.24 +33.69 +92.11 +59.44 +13.1 +91.1 +15.40 +15.34 +89.8 +92.24 +41.25 +84.16 +92.24 +1.46 +92.24 +3.9 93.616 +89.87 +15.156 +92.11 +89.93 +92.24 +36.38 +89.87 +85.6 +84.17 +92.24 +80.1 +33.69 +92.11 +33.178 +69.3 +90.70 +13.62 +88.308 +89.87 +92.11 92.37 +15.54 +84.3 +92.11 +78.42 +2.24 +15.216 +89.87 +17.19 +92.24 +17.19 +33.178 +33.69 +12.12 +89.65 +30.56 +90.97 +92.29 +92.24 +90.97 +46921 92.1 +89.130 +69.3 +92.24 +25.2 +92.1 +89.125 +92.24 +92.8 +13.107 +89.87 +24.1 +92.11 +12.28 +90.15 +1.11 +79.66 +92.11 +89.87 +13.3 +13.8 +25.283 +25.71 +33.178 +89.92 +13.107 +92.24 +8.72 +92.11 +64.12 +8.65 +8.64 +15.107 +84.20 +92.24 +2.14 +89.87 +15.36 +84.3 +92.24 +33.178 +15.81 +84.18 +92.24 +36.38 +27.27 +23.66 +92.11 +89.25 +92.24 +25.273 +89.87 +33.69 +92.11 +92.15 +23.66 +17.6 +33.178 +90.22 +69.3 +90.70 +13.62 +88.308 +67.128 +92.11 +33.70 +91.13 +11.1 +89.92 +92.24 +33.129 +93.173a +92.22 +92.24 +60.21 +15.181 +92.11 +89.87 +15.75 +92.24 +93.169a +34.62 +92.11 +89.124 +93.169a +33.69 +92.11 +93.173a +34.62 +92.24 +9.3 +92.24 +9.3 +37.111 +89.87 +92.24 +83.18 +92.11 +24.1 +92.24 +13.104 +33.69 +12.9{N:001} +90.26 +19.3 +90.10 +6.33 +89.87 +19.3 +92.22 +92.12 +63.20 +92.11 +92.24 +53.89 +92.24 +87.76 +47039 85.44 +92.24 +8.24 +92.11 +92.24 +82.8 +89.124 +33.28 +92.24 +93.169a +33.69 +68.35 +78.51 +92.29 +89.87 +24.73 +92.24 +8.24 +23.136 +92.11 +89.87 +33.69 +93.169a +90.58 +92.24 +15.86 +90.34 +92.11 +53.89 +89.92 +37.91 +92.24 +7.16 +89.92 +53.77 +64.12 +90.34 +39.37 +15.40 +89.109 +6.33 +89.92 +6.31 +47083 67.92 +85.1 +92.1 +89.108 +92.7 +83.13 +92.24 +7.16 +69.3 +37.110 +92.24 +37.110 +47096 92.1 +89.125 +92.29 +13.4 +92.7 +92.24 +67.1 +89.92 +92.24 +76.12 +92.24 +14.53 +89.87 +37.109 +92.11 +15.165 +89.87 +15.173 +84.22 +92.24 +7.3 +92.24 +53.89 +89.87 +92.24 +93.296 +15.144 +83.30 +89.87 +14.65 +2.5 +83.13 +83.10 +92.24 +7.6 +89.87 +17.13 +17.12 +92.24 +93.296 +83.10 +92.11 +89.87 +87.83 +92.12 +24.1 +92.11 +17.12 +83.24 +92.24 +14.36 +89.87 +24.49 +92.11 +33.69 +89.93 +92.29 +89.107 +92.11 +85.1 +89.124 +92.24 +33.277 +33.69 +69.3 +28.1 +92.11 +9.34 +89.87 +67.48 +59.14 +58.37 +24.1 +92.11 +33.69 +89.93 +92.6 +63.20 +92.11 +13.4 +89.124 +92.24 +93.296 +33.69 +9.24 +69.3 +13.4 +89.87 +67.84 +78.42 +67.199 +60.10 +58.37 +92.12 +33.321 +33.69 +47193 70.4 +89.93 +92.29 +89.108 +92.11 +85.1 +89.23 +91.12 +93.445 +13.1 +89.124 +33.69 +92.24 +93.296 +9.24 +69.3 +28.1 +92.27 +33.69 +89.87 +67.113 +67.128 +33.70 +92.11 +14.76 +4.45 +89.87 +16.13 +92.24 +12.9{N:001} +24.9 +92.24 +93.296 +89.87 +29.10 29.9 +92.24 +93.296 +92.24 +47232 92.24 +12.9{N:001} +90.21 +33.69 +92.11 +90.21 +67.17 +4.45 +14.76 +67.205 +33.277 +92.1 +60.71 +89.87 +15.40 +84.27 +25.138 +25.284 +91.1 +92.24 +9.24 +92.24 +37.122 +92.11 +33.406 +92.11 +19.2 +89.87 +79.115 +92.11 +33.180 +33.69 +33.459 +92.14 +13.4 +92.24 +19.1 +92.6 +89.92 +58.37 +59.1 +33.69 +33.400 +90.59 +92.11 +91.1 +67.45 +13.107 +67.186 +15.123 +92.24 +11.83 +92.24 +11.12 +89.102 +53.88 +89.102 +53.94 +89.87 +15.177 +92.11 +84.16 +92.24 +11.80 +92.11 +33.69 +90.26 +92.6 +13.4 +92.24 +53.82 +33.69 +92.4 +89.124 +33.69 +92.11 +89.67 +92.7 +33.69 +69.5 +69.5 +31.35 +89.94 +89.67 +33.180 +69.5 +69.5 +33.184 +89.124 +67.131 +92.24 +67.38 +47325 17.12 +92.24 +9.3 +92.24 +9.3 +87.34 +82.8 +92.24 +76.1 +92.24 +12.1 +89.87 +33.69 +59.23 +91.7 +92.6 +13.4 +92.24 +12.15 +92.24 +12.15 +47347 92.24 +90.58 +92.11 +33.69 +92.7 +33.69 +90.21 +92.1 +13.4 +89.87 +92.24 +33.69 +92.14 +59.75 +47362 33.262 +57.40 +89.23 +92.11 +24.52 +90.15 +92.24 +33.101 +92.11 +91.1 +15.36 +59.23 +92.24 +11.1 +92.11 +15.165 +92.11 +84.17 +92.24 +93.297 +89.87 +68.1 +33.427 +92.11 +33.69 +27.27 +92.29 +31.71 88.264 +92.24 +11.55 +92.4 +89.92 +13.146 +57.182 +37.74 93.208 +57.152 +89.92 +33.69 +92.25 +53.82 +37.67 +13.4 +89.87 +92.24 +93.297 +33.180 +92.11 +33.69 +92.6 +13.4 +92.24 +37.67 +92.24 +93.172 +89.87 +92.24 +33.28 +92.11 +33.69 +92.6 +33.69 +89.87 +92.24 +93.297 +33.69 +90.58 +92.24 +53.88 +89.92 +92.24 +87.64 +92.23 +27.1 +88.315 +90.56 +92.24 +9.24 +92.29 +89.124 +92.24 +68.71 +33.69 +90.21 +39.44 +92.24 +87.64 +33.224 +84.31 +63.1 +92.24 +93.486a +47454 68.1 +84.3 +92.24 +93.444a +84.19 +83.1 +47461 93.297 +24.52 +33.180 +90.26 +92.24 +9.24 +93.445 +13.1 +89.87 +27.8 +90.21 +89.3 +92.24 +37.36 +93.144b +13.1 +15.71 +92.11 +84.18 +93.144b +85.1 +89.93 +92.11 +83.13 +93.480a +67.136 +92.29 +92.24 +67.142 +89.87 +92.24 +93.144b +24.1 +92.24 +93.169a +25.125 +78.1 +89.23 +47500 25.1 +67.131 +59.44 +67.78 +24.1 +92.11 +89.26 +92.24 +33.212 +90.24 +92.11 +89.92 +25.59 +24.1 +92.12 +33.477 +90.1 +92.11 +13.107 +47520 56.14 +92.11 +90.10 +33.98 +59.2 +89.124 +92.11 +92.23 +33.184 +92.11 +89.94 +17.1 +92.24 +53.88 +89.92 +92.24 +53.94 +78.18 +33.427 +92.11 +89.87 +92.24 +93.144b +88.195 +92.11 +89.105 +92.24 +55.10 +92.11 +89.92 +33.406 +49.3 49.5 +6.162 +79.20 +15.70 +92.11 +92.24 +93.297 +47559 13.48 +34.11 +89.102 +92.24 +93.144b +89.102 +92.24 +93.297 +67.33 +92.11 +92.24 +67.186 +90.60 +92.26 +89.23 +13.78 +13.8 +39.10 +13.1 +90.33 +92.11 +47581 93.297 +33.309 +92.24 +53.88 +89.92 +92.24 +37.56 +89.92 +92.24 +87.64 +33.69 +90.58 +92.11 +15.172 +92.1 +92.24 +9.24 +92.29 +64.12 +31.70 88.264 +92.24 +87.64 +89.92 +91.13 +92.1 +83.33 +92.7 +56.12 +92.23 +27.27 +90.56 +92.24 +9.24 +92.29 +89.15 +92.27 +33.427 +90.31 +92.11 +89.125 +69.8 +93.144b +89.23 +15.70 +92.11 +84.18 +92.4 +89.92 +91.13 +92.23 +65.17 +23.99 +47634 42.8 +92.11 +89.50 +38.4 +92.11 +37.127 +89.124 +33.83 +59.28 +33.69 +20.65 +92.29 +89.94 +37.127 +92.4 +92.24 +93.59 +47653 15.215 +89.26 +39.34 +92.12 +13.107 +83.13 +92.24 +1.89 +89.92 +20.82 +84.22 +92.24 +7.24 +89.87 +67.55 +92.24 +93.297 +33.79 +92.11 +30.58 +37.127 +92.24 +93.169a +89.124 +92.24 +33.77 +33.69 +20.76 +20.76 +92.11 +89.87 +92.24 +60.50 +33.69 +90.58 +92.11 +91.1 +92.15 +88.106 +90.45 +92.29 +92.23 +89.15 +23.99 +27.1 +90.56 +92.11 +89.50 +38.4 +92.11 +37.127 +89.124 +92.24 +68.16 +33.80 +78.2 +33.163 +92.11 +20.76 +47713 79.64 +92.24 +33.80 +92.11 +47718 93.297 +30.75 +13.107 +92.24 +33.164 +92.11 +47725 37.127 +92.24 +89.26 +39.34 +89.92 +20.82 +15.215 +84.22 +7.24 +92.27 +33.163 +89.124 +92.24 +93.169a +37.111 +92.24 +25.2 +92.11 +91.1 +67.45 +56.38 +92.11 +18.2 +93.341d +92.12 +93.511 +15.81 +84.3 +1.87 +85.51 +92.11 +92.24 +6.27 +15.187 +84.12 +92.24 +93.169a +89.87 +15.156 +92.11 +59.11 +11.1 +92.24 +11.1 +89.92 +9.34 +92.27 +52.1 +89.92 +25.141 52.2 +92.11 +89.124 +16.13 +84.18 +92.11 +93.169a +33.69 +11.65 +93.480a +69.3 +25.138 +90.40 +92.1 +89.130 +90.40 +92.25 +25.138 +89.92 +90.23 +92.24 +10.36 +92.7 +90.21 +91.13 +13.117 +67.142 +67.136 +92.27 +33.69 +25.119 +92.24 +23.56 +89.92 +92.24 +8.69 +92.27 +69.3 +23.52 +89.92 +8.37 +92.27 +69.3 +23.6 +67.47 +68.1 +33.69 +92.24 +1.46 +15.118 +84.20 +92.4 +89.92 +92.24 +1.48 +79.114 +92.4 +90.21 +89.65 +90.56 +79.78 +3.4 3.61 +92.29 +42.7 +90.56 +92.24 +79.80 +92.14 +13.107 +47844 15.165 +89.93 +58.37 +88.114 +60.11 +89.107 +92.11 +20.71 +91.1 +47854 15.81 +84.17 +92.24 +80.1 +92.24 +33.131 +8.11 +83.2 +20.76 +92.11 +89.92 +92.24 +88.114 +89.104 +92.27 +47870 82.8 +89.104 +92.27 +47874 82.7 +89.124 +92.24 +93.169a +33.69 +12.12 +40.8 +92.11 +89.23 +69.3 +32.4 +92.14 +42.7 +89.87 +57.89 +92.24 +6.162 +92.11 +15.215 +6.219 +89.92 +17.1 +92.24 +11.1 +24.14 +89.124 +33.409 +89.93 +92.24 +37.56 +33.69 +58.37 +21.18 +21.18 +92.25 +89.65 +92.29 +13.4 +92.24 +53.82 +92.24 +12.1 +92.24 +30.93 +89.94 +33.406 +92.11 +89.93 +92.24 +55.17 +15.77 +6.201 +15.192 +92.11 +89.92 +33.69 +89.65 +92.6 +13.4 +92.24 +37.67 +92.24 +93.172 +21.18 +92.10 +89.94 +13.69 +89.93 +33.46 +47944 92.11 +92.24 +37.67 +92.24 +93.172 +92.29 +47952 92.24 +18.23 +88.114 +33.400 +92.11 +69.12 +92.6 +13.4 +92.24 +53.82 +21.18 +92.10 +89.92 +92.4 +89.124 +33.28 +92.24 +58.37 +33.419 +92.11 +33.69 +69.8 +87.14 +92.6 +92.24 +12.1 +89.33 +89.80 +92.24 +58.31 +56.30 +13.1 +89.92 +91.6 +92.4 +88.15 +89.23 +65.17 +92.27 +42.8 +90.63 +89.124 +92.29 +92.23 +88.111 +42.8 +89.87 +33.69 +93.169a +29.7 +92.1 +48004 15.81 +84.22 +92.24 +37.64 +92.6 +89.87 +33.69 +92.11 +72.6 +92.6 +33.69 +67.205 +89.108 +92.1 +85.1 +83.13 +92.24 +1.14 +91.1 +13.104 +67.20 +78.42 +67.199 +60.53 +48029 14.53 +13.107 +90.57 +63.1 +92.24 +1.79 +67.119 +67.199 +60.56 +92.24 +1.28 +68.36 +89.94 +63.26 +92.24 +6.160 +92.24 +7.15 +83.10 +89.87 +33.77 +33.80 +78.2 +92.24 +93.169a +33.69 +12.12 +84.22 +37.14 +92.6 +35.47 +92.24 +26.9 +92.1 +89.87 +92.29 +33.69 +23.103 +89.87 +92.24 +55.16 +24.1 +92.24 +13.107 +33.357 +92.24 +12.1 +33.69 +70.2 +92.24 +9.24 +92.29 +88.12 +13.1 +89.87 +59.23 +92.24 +15.123 +89.60 +92.24 +24.15 +92.29 +11.1 +24.14 +92.24 +13.107 +19.1 +92.24 +8.36 +15.88 +89.94 +85.8 +48102 83.30 +59.23 +92.24 +34.17 +92.11 +89.92 +9.34 +92.24 +15.157 +92.11 +84.3 +92.24 +93.444a +24.1 +92.29 +91.1 +91.13 +9.24 +33.126 +93.202c +13.5 +11.85 +9.24 +65.20 +89.92 +88.12 +92.29 +69.3 +48131 31.18 +92.24 +30.57 +89.92 +92.24 +42.8 +92.11 +84.3 +93.413 +1.88 +92.24 +93.172 +92.27 +85.60 +92.24 +37.64 +92.24 +12.1 +92.29 +15.77 +92.24 +93.297 +33.163 +92.24 +8.1 +92.24 +93.169a +89.87 +15.199 +79.118 +92.11 +6.155 +89.87 +85.32 +92.11 +84.22 +7.75 +19.26 +83.5 +69.3 +48172 17.26 +92.23 +67.129 +48176 67.178 +67.201 +13.4 +89.92 +67.184 +14.41 +89.94 +15.145 +92.24 +9.34 +48188 15.148 +84.4 +92.24 +93.444a +92.11 +24.14 +92.24 +7.75 +89.92 +89.86 +85.32 +92.24 +8.1 +92.11 +89.87 +15.88 +77.3 +6.207 +89.92 +6.205 +91.1 +89.136 +92.24 +67.184 +23.82 +89.8 +92.24 +33.330 +89.136 +92.24 +48219 92.24 +67.177 +67.73 +78.22 +84.17 +92.24 +7.75 +15.81 +15.187 +92.27 +77.3 +6.207 +89.87 +27.1 +92.24 + +15.248 +84.3 +92.24 +7.75 +89.124 +15.93 +69.3 +27.27 +92.24 +8.1 +92.24 +12.9{N:001} +93.169a +89.87 +13.107 +67.136 +92.24 +32.9 +92.11 +89.36 +92.29 +48257 91.13 +9.24 +60.11 +17.5 85.13 +92.11 +89.80 +6.162 +14.47 +89.87 +25.256 +13.48 +92.11 +89.87 +17.21 +92.24 +8.18 +48274 92.24 +2.14 +33.69 +90.58 +92.11 +92.15 +27.41 +92.24 +23.88 +83.9 +92.24 +23.121 +69.3 +85.1 +83.1 +89.125 +23.94 +29.7 +90.21 +33.70 +92.7 +67.128 +85.1 +83.13 +92.24 +93.444a +33.69 +90.21 +71.34 +92.24 +9.3 +92.24 +9.3 +37.12 +48309 37.12 +9.1 +88.295 +89.87 +20.76 +89.87 +92.24 +60.50 +67.186 +23.93 +89.87 +29.7 +92.24 +33.98 +92.11 +89.87 +15.88 +84.3 +92.24 +7.75 +33.198 +92.29 +59.23 +92.24 +60.20 +89.92 +59.23 +92.24 +63.21 +89.94 +85.1 +92.24 +93.242 +93.253c +89.92 +93.188 +89.92 +93.253d +92.24 +93.158a +89.92 +92.24 +63.21 +89.107 +92.11 +33.69 +90.58 +92.24 +53.74 +92.29 +48360 24.18 +90.20 +92.11 +64.12 +33.380 +92.24 +33.98 +92.29 +48369 31.39 +92.11 +48372 92.24 +93.296 +15.36 +15.230 +84.17 +92.24 +7.75 +89.87 +17.31 24.13 +24.7 +92.24 +6.154 +58.50 +89.87 +15.92 +48389 25.213 +92.24 +13.107 +91.1 +91.13 +60.11 +63.20 +92.11 +67.33 +92.11 +92.24 +67.186 +48402 15.18 +84.16 +1.92 +85.16 +81.27 +60.29 +84.3 +93.480a +92.27 +33.126 +93.467 +89.92 +92.11 +33.156 +90.58 +92.26 +90.24 +59.23 +92.24 +13.111 +92.29 +89.87 +13.107 +67.136 +92.24 +33.156 +92.11 +89.92 +33.157 +48432 92.37 +93.169a +15.75 +15.148 +92.11 +89.124 +92.24 +8.23 +92.11 +37.16 +92.24 +69.3 +27.61 +92.11 +89.87 +33.69 +90.58 +92.11 +92.14 +92.24 +33.98 +92.29 +92.27 +33.160 +89.112 +92.26 +15.227 +48460 17.1 +25.287 +89.87 +33.184 +92.22 +33.126 +93.215 +33.69 +90.58 +92.11 +92.6 +58.50 +85.71 +93.480a +89.92 +69.3 +27.2 +92.24 +13.107 +83.13 +92.11 +67.136 +92.24 +67.142 +92.29 +89.87 +33.69 +92.11 +92.36 +89.87 +92.24 +33.69 +92.11 +92.24 +89.6 +93.169a +92.24 +93.537 +92.27 +13.3 +9.24 +53.79 +74.4 +89.76 +42.11 +89.92 +33.98 +90.20 +92.24 +12.1 +89.92 +59.23 +92.24 +11.1 +89.95 +89.86 92.17 +37.111 +92.11 +92.24 +53.88 +89.92 +92.24 +37.56 +92.4 +13.62 +56.30 +23.99 +89.87 +20.76 +92.11 +89.124 +92.4 +25.59 +90.21 +92.11 +13.4 +92.24 +67.62 +37.128 +92.24 +93.182b +89.125 +91.6 +89.92 +89.105 +59.23 +92.29 +60.50 +92.29 +67.186 +67.64 67.79 +67.131 +92.27 +92.29 +13.107 +89.125 +89.93 +9.34 +92.12 +63.20 +92.4 +25.220 +92.4 +85.6 +67.189 +84.17 +92.24 +7.75 +48569 69.3 +27.27 +92.24 +8.1 +92.11 +15.81 +33.69 +48577 33.488 +12.28 +24.1 +92.27 +33.69 +92.11 +23.93 +89.87 +15.37 +92.12 +92.24 +89.107 +92.4 +84.17 +92.24 +7.75 +89.87 +27.1 +61.9 +64.14 +91.12 +92.24 +9.34 +33.69 +89.124 +92.11 +69.3 +24.1 +89.87 +92.11 +33.69 +90.58 +92.11 +91.14 +32.50 +89.92 +67.123 +92.24 +26.3 +92.24 +31.35 +48619 59.23 +92.27 +33.70 +92.24 +53.79 +69.12 +71.21 +92.29 +24.78 +92.24 +53.82 +89.87 +90.70 +13.62 +92.24 +14.49 +92.11 +89.87 +68.1 +90.15 +93.266 +89.92 +90.15 +59.23 +92.24 +53.79 +33.148 +92.11 +83.13 +59.23 +92.24 +33.54 +92.24 +89.6 +92.25 +91.1 +15.75 +84.16 +92.24 +1.92 +83.5 +15.18 +89.87 +92.11 +41.49 +83.32 +15.34 +48667 33.299 +92.11 +33.69 +85.55 +89.108 +92.4 +89.33 +67.162 +67.191 +13.104 +48678 67.118 68.51 +67.20 +92.24 +67.186 +89.87 +15.93 +92.24 +85.55 +89.107 +92.11 +91.1 +13.107 +67.136 +92.24 +17.23 +92.11 +89.108 +92.11 +18.1 +92.24 +5.8 +33.356 +89.87 +19.34 +57.75 +92.11 +89.87 +92.11 +92.24 +8.23 +79.110 +48710 27.61 +92.11 +89.87 +92.11 +24.28 +13.48 +84.3 +92.11 +89.87 +33.69 +90.58 +92.26 +69.12 +92.24 +26.3 +92.4 +14.63 +48728 83.13 +92.4 +67.139 +33.70 +92.4 +83.47 +92.24 +15.19 +67.139 +33.142 +92.4 +92.24 +33.54 +89.87 +15.36 +92.11 +92.24 +67.1 +15.88 +84.16 +93.480a +89.87 +27.27 +15.129 +92.24 +60.20 +89.92 +92.24 +89.107 +92.11 +33.69 +90.21 +70.2 +23.94 +92.24 +12.9{N:001} +89.87 +24.1 +93.341a +89.87 +92.11 +33.201 +92.24 +83.47 +92.24 +15.19 +89.87 +89.86 +31.27 +92.11 +89.76 +92.24 +19.34 +92.24 +5.8 +48784 92.29 +92.11 +33.70 +92.37 +17.1 +48790 83.9 +92.11 +89.87 +33.69 +92.11 +22.42 +92.7 +89.124 +25.264 +89.92 +25.256 +13.48 +31.29 +12.42 +24.14 +89.87 +33.69 +92.11 +92.15 +25.244 +48811 89.92 +48814 31.37 +30.17 +48817 92.24 +26.3 +92.7 +24.1 +92.24 +8.30 +92.1 +89.92 +92.24 +8.49 +92.1 +90.21 +92.1 +13.4 +92.37 +24.76 +92.1 +89.92 +24.1 +90.21 +12.42 +8.63 +89.92 +8.61 +69.3 +57.1 +64.14 +92.1 +57.1 +24.14 +89.87 +92.29 +33.69 +28.47 +92.11 +92.24 +8.30 +89.92 +92.24 +8.49 +89.87 +67.128 +31.39 +92.11 +89.25 +92.24 +25.123 +89.92 +25.213 +33.69 +92.11 +57.1 +48870 23.4 +83.1 +89.87 +92.24 +57.75 +92.11 +4.59 +46.15 +4.50 5.21 63.14 +89.87 +18.1 +83.33 +92.11 +23.1 +48885 33.69 +90.58 +92.11 +92.29 +92.24 +33.260 +92.1 +92.27 +33.70 +90.58 +92.7 +67.128 +85.1 +89.107 +92.7 +90.21 +71.34 +13.106 +63.2 +92.24 +33.54 +83.13 +92.24 +33.55 +93.266 +89.92 +92.24 +53.79 +89.92 +33.112 +89.6 +92.1 +67.47 +27.49 +92.11 +92.24 +26.14 +92.24 +32.5 +92.24 +33.54 +89.87 +33.69 +92.11 +90.21 +61.9 +33.54 +24.78 +92.24 +53.82 +89.87 +23.93 +89.121 +23.121 +92.24 +60.50 +67.186 +89.87 +33.256 +90.23 +92.24 +33.126 +92.11 +41.52 +89.48 +40.8 +88.310 +90.59 +63.2 +92.24 +11.55 +68.1 +84.3 +93.480a +92.7 +33.270 +92.29 +89.92 +91.13 +92.1 +48966 92.24 +33.288 +92.24 +12.12 +92.1 +90.57 +92.7 +89.124 +92.7 +85.63 +83.13 +92.24 +1.89 +67.119 +48981 49.1 +90.16 +1.13 +76.1 +48986 15.174 +92.11 +84.19 +84.18 +93.427a +89.87 +15.105 +92.24 +8.30 +92.11 +33.470 +92.11 +89.92 +13.107 +67.136 +92.24 +33.470 +92.11 +92.11 +15.50 +84.3 +92.11 +49009 15.206 +84.22 +92.24 +1.11 +89.87 +92.11 +53.56 +92.11 +15.88 +84.16 +93.480a +89.79 +25.123 +78.2 +89.87 +85.1 +33.356 +67.86 +67.15 67.86 +83.13 +92.24 +7.16 +92.24 +12.1 +67.33 +67.65 +13.69 +92.24 +33.100 +89.93 +92.24 +33.100 +85.1 +89.112 +92.24 +12.1 +89.92 +12.1 +58.67 +92.24 +33.100 +92.29 +13.69 +67.33 +67.65 +89.112 +92.24 +12.1 +59.23 +90.4 +92.11 +13.80 +89.92 +89.120 +92.11 +13.80 +69.8 +92.22 +92.27 +13.80 +90.6 +92.11 +23.88 +13.1 +89.93 +92.24 +23.88 +13.4 +92.24 +14.36 +92.24 +9.1 +89.93 +92.24 +14.36 +83.13 +92.24 +88.125 +14.37 +91.12 +92.24 +88.125 +92.11 +69.3 +32.18 37.19 +91.5 +9.24 +15.66 +90.14 +12.1 +33.126 +92.11 +93.190a +92.29 +15.81 +89.57 +33.262 +89.59 +33.262 +90.24 +92.24 +14.36 +89.59 +59.23 +31.102 +90.4 +92.11 +69.3 +13.4 +92.30 +92.24 +14.36 +89.125 +89.59 +33.262 +90.24 +92.24 +14.36 +92.24 +14.36 +92.24 +73.2 +92.27 +28.36 +59.23 +9.1 +13.4 +15.81 +84.22 +92.24 +1.39 +83.13 +92.24 +1.39 +85.1 +89.93 +92.24 +1.1 +90.4 +92.11 +13.80 +91.12 +92.24 +9.23 +92.11 +69.3 +31.27 +84.16 +92.24 +57.4 +15.81 +91.12 +92.24 +10.12 +92.11 +69.3 +34.53 +89.124 +59.7 +31.50 +92.11 +13.142 +30.122 +58.26 +12.1 +13.48 +92.11 +92.24 +31.102 +90.23 +92.24 +9.19 +92.11 +92.27 +69.3 +90.12 +8.64 +69.7 +90.16 +25.29 +25.29 +69.7 +90.16 +25.2 +10.53 +89.125 +89.3 +12.1 +23.52 +91.1 +92.24 +33.100 +9.11 +13.48 +89.93 +85.75 +83.9 +92.4 +89.93 +24.14 +92.24 +79.18 +92.11 +79.18 +64.12 +58.52 +84.5 +12.12 +59.35 +88.66 +89.92 +72.2 +93.190a +33.262 +90.24 +92.11 +89.93 +33.83 +33.69 +92.29 +13.4 +92.27 +33.69 +92.24 +49234 92.1 +15.81 +83.33 +92.1 +13.3 +89.33 +67.18 +92.1 +13.1 +89.33 +90.16 +92.24 +59.32 +92.11 +92.4 +59.23 +57.125 +49252 57.103 88.66 +57.145 +57.103 88.66 +89.33 +92.24 +33.55 +90.4 +93.266 +49261 92.24 +57.103 +89.92 +92.24 +72.2 +90.4 +93.169a +93.387 +13.107 +12.1 +92.23 +24.1 +67.9 +58.52 +12.1 +92.24 +34.18 +34.18 +34.18 92.24 +34.18 8.39 +92.24 +12.12 +92.30 +28.41 33.201 +91.1 +92.29 +13.4 +92.24 +33.264 +92.24 +93.190a +49293 15.66 +84.18 +92.11 +92.24 +93.172 +84.4 +93.480a +53.87 +89.92 +53.91 +89.59 +33.180 +92.11 +92.6 +92.14 +13.4 +49310 33.221 +89.92 +69.3 +33.277 +89.92 +33.221 33.275 +90.21 +92.1 +69.3 +13.4 +92.24 +53.82 +49323 33.180 +92.11 +89.50 +92.14 +92.6 +93.142 +13.4 +49331 33.69 +69.3 +13.4 +92.24 +53.79 +13.4 +92.6 +49339 33.184 +69.2 +49342 33.69 +92.11 +92.14 +13.4 +89.59 +33.185 +49349 92.24 +15.66 +92.4 +92.14 +33.140 +90.24 +92.10 +33.69 +92.1 +33.103 +33.81 +83.13 +92.24 +1.86 +79.89 +92.24 +41.35 +12.9{N:001} +64.14 +33.69 +93.147 +92.24 +53.79 +49373 15.66 +58.67 +63.20 +92.24 +11.49 +91.1 +33.180 +92.11 +89.92 +33.69 +92.11 +89.50 +92.15 +53.41 +89.65 +92.6 +69.3 +13.4 +92.24 +53.82 +69.7 +93.142 +69.7 +92.24 +53.79 +33.184 +92.11 +92.24 +93.190a +33.69 +92.1 +53.41 +83.13 90.10 +2.7 +83.9 +92.7 +49410 92.27 +92.7 +69.3 +28.1 +92.24 +49416 92.1 +15.7 +92.27 +69.3 +13.1 +92.1 +65.17 +90.22 +18.18 +92.11 +92.24 +6.20 +92.24 +6.182 +92.29 +83.13 +93.427b +13.107 +83.43 +92.24 +93.485 +83.5 +49439 53.41 +92.24 +93.190a +92.24 +67.208 +24.7 +92.24 +93.169a +15.81 +84.18 +92.11 +49451 33.69 +91.13 +92.24 +4.24 +92.24 +12.1 +92.24 +15.203 +92.24 +88.310 +92.24 +9.23 +92.29 +13.4 +90.24 +92.27 +92.1 +33.69 +49470 92.1 +15.81 +9.24 +92.27 +83.33 +92.1 +13.3 +89.33 +67.18 +92.1 +13.1 +92.1 +69.3 +28.1 +92.11 +91.2 +89.59 +28.36 +92.24 +93.182b +49492 15.81 +92.1 +83.13 90.10 +2.7 +53.41 +91.1 +33.262 +93.190a +33.69 +90.21 +24.14 +92.24 +12.18 +15.107 +64.12 +4.44 +84.4 +1.11 +89.87 +85.55 +83.46 +92.11 +92.1 +69.3 +28.1 +92.11 +91.2 +92.24 +15.66 +92.1 +53.41 +83.13 90.10 +2.7 +92.30 +92.1 +33.69 +71.8 +83.46 +92.27 +24.1 +92.24 +12.18 +15.107 +89.87 +85.55 +83.46 +92.11 +92.29 +13.4 +92.24 +53.41 +83.13 90.10 +12.18 +88.24 +92.1 +24.1 +89.92 +33.262 +90.21 +92.29 +13.4 +92.24 +12.15 +92.24 +12.15 +92.24 +67.208 +67.55 +17.1 +92.24 +93.190a +89.92 +63.20 +92.24 +36.38 +92.11 +60.11 +89.87 +24.9 +92.24 +93.169a +15.227 +33.69 +91.13 +92.24 +4.24 +92.24 +12.1 +91.1 +24.52 +92.24 +60.11 +36.38 +92.11 +33.70 +89.87 +15.144 +92.24 +93.169a +49592 92.24 +93.169a +16.14 +89.87 +24.14 +92.11 +15.144 +33.69 +92.11 +92.14 +25.9 +49604 92.24 +33.69 +92.11 +33.246 +92.27 +33.138 +33.145 +33.243 +83.6 +85.55 +33.69 +92.11 +15.81 +89.87 +24.1 +89.50 +15.81 +89.87 +24.1 +83.6 +85.55 +89.87 +89.111 +92.11 +85.55 +92.24 +67.186 +92.30 +67.199 +13.1 +78.42 +60.57 +13.4 +93.25 +92.24 +10.49 +93.341a +93.296 +60.10 +63.20 +92.24 +60.11 +92.24 +24.52 +90.14 +93.190a +89.87 +15.144 +92.11 +27.27 +92.29 +60.46 +92.24 +10.49 +92.24 +57.4 +93.341a +89.87 +33.69 +92.11 +27.27 +92.24 +53.82 +92.27 +13.4 +33.145 +53.82 +15.165 +92.11 +84.18 +92.24 +93.169a +24.9 +92.11 +92.24 +93.169a +33.69 +92.6 +13.4 +93.341a +92.24 +10.42 +93.190e +92.6 +33.131 +93.211 +92.27 +33.145 +93.296 +92.24 +67.208 +25.1 +15.40 +84.16 +92.24 +93.444a +89.87 +27.27 +93.379a +89.87 +33.69 +92.11 +92.24 +93.169a +15.156 +92.1 +49711 85.1 +92.24 +93.379a +84.3 +93.432 +84.4 +92.24 +1.88 +93.25 +89.92 +93.296 +27.27 +93.379a +92.24 +93.270 +89.87 +33.69 +92.11 +92.27 +33.61 +93.266 +83.13 +92.24 +33.55 +89.92 +92.24 +53.79 +27.27 +93.169a +10.42 +92.24 +93.202b +92.24 +84.3 +93.536 +91.1 +33.69 +92.11 +93.270 +84.4 +93.536 +71.1 +74.5 +92.12 +88.1 +33.69 +92.11 +92.24 +93.379a +15.81 +89.87 +90.79 +24.1 +93.169a +92.24 +93.270 +15.81 +84.18 +92.11 +89.87 +33.69 +90.24 +92.11 +91.13 +70.3 +93.183 +89.5 +92.27 +88.154 +69.3 +13.69 +33.69 +92.11 +93.270 +89.86 +92.1 +28.1 +33.184 +93.169a +89.92 +33.69 +92.11 +67.17 +92.24 +92.6 +93.379a +33.307 +85.1 +83.51 +92.24 +3.5 +92.6 +24.1 +33.28 +92.11 +93.270 +33.246 +92.6 +13.4 +92.24 +12.15 +92.24 +12.15 +92.6 +37.67 +92.24 +93.182b +13.4 +33.28 +93.169a +89.92 +33.69 +92.11 +89.33 +33.69 +92.6 +90.21 +24.1 +92.6 +83.51 +92.24 +3.5 +31.102 +78.2 +92.29 +24.1 +91.1 +33.69 +92.11 +72.6 +72.6 +33.69 +92.7 +24.1 +92.24 +1.11 +79.110 +89.87 +92.24 +12.28 +92.24 +12.1 +15.101 +89.92 +15.107 +49857 92.24 +9.3 +92.24 +9.3 +91.1 +92.24 +67.186 +92.24 +60.50 +34.68 +91.5 +83.13 +93.494 +92.24 +93.444a +89.93 +85.1 +92.24 +10.16 +92.24 +93.169a +83.2 +89.94 +33.315 +89.102 +92.24 +93.169a +89.102 +92.24 +36.38 +92.11 +84.16 +92.24 +34.68 +91.1 +57.37 +6.197 +33.69 +92.24 +10.16 +92.24 +93.169a +90.58 +92.11 +6.197 +69.3 +57.1 +91.1 +33.69 +92.11 +92.24 +93.169a +92.15 +92.1 +89.92 +92.6 +9.34 +67.129 +15.84 +92.24 +67.1 +92.1 +33.69 +92.24 +10.16 +92.11 +92.24 +35.20 +92.12 +71.8 +92.27 +33.69 +92.7 +42.7 +49932 13.69 +85.3 +83.2 +2.25 +6.127 +60.15 +89.8 +92.24 +53.28 +92.24 +93.172 +80.4 +89.91 +81.22 +60.11 +89.139 +60.12 +33.69 +92.11 +92.24 +93.169a +59.42 +92.24 +6.127 +2.7 +49958 59.42 +92.11 +84.19 +83.48 +91.1 +33.69 +92.11 +47.1 +67.38 +89.87 +15.187 +92.24 +46.7 +49972 92.24 +15.187 +49975 67.45 +24.72 +92.24 +46.7 +92.24 +2.7 +6.197 +13.48 +89.92 +69.3 +28.1 +84.6 +85.1 +89.124 +28.1 +92.24 +35.20 +92.24 +47.1 +92.24 +2.7 +33.307 +92.24 +10.56 +92.24 +46.7 +89.87 +33.69 +92.11 +59.23 +9.1 +60.46 +92.24 +65.22 +6.197 +85.32 +89.87 +50013 23.37 88.285 +92.24 +87.67 +92.6 +13.32 +92.24 +65.22 +6.197 +67.119 +67.39 +92.29 +68.1 +92.24 +33.477 +90.45 +92.24 +93.169a +83.13 +93.494 +92.24 +93.444a +89.92 +28.36 +92.24 +87.23 +92.11 +50040 31.102 +90.23 +92.11 +92.24 +36.38 +92.11 +67.48 +92.29 +15.107 +84.16 +93.498 +92.11 +89.92 +92.24 +10.16 +92.11 +89.92 +92.24 +10.49 +89.92 +92.24 +36.38 +92.11 +89.87 +83.2 +85.55 +69.3 +59.1 +67.186 +91.1 +67.61 +13.1 +92.24 +51.6 +92.24 +93.172 +50077 15.101 +84.16 +93.480a +92.24 +93.169a +91.1 +27.27 +83.13 +92.24 +7.16 +92.24 +57.186 +4.15 +89.92 +4.22 +89.92 +4.44 +89.92 +92.24 +57.205 +17.12 +50099 42.29 +6.26 +89.142 +6.18 +59.23 +15.44 +84.4 +92.24 +7.16 +89.102 +92.24 +4.22 +89.102 +92.24 +4.15 +89.92 +92.24 +57.205 +50119 15.138 +89.92 +92.24 +6.113 +16.18 +91.1 +92.24 +92.24 +4.44 +57.186 +33.69 +15.203 +92.29 +84.9 +69.3 +13.9 +92.24 +7.2 +92.24 +12.12 +92.1 +7.2 +57.206 +29.7 +92.24 +36.38 +92.11 +90.21 +33.54 +50149 92.24 +25.46 +92.24 +7.2 +92.6 +20.45 +92.1 +89.50 +33.28 +92.24 +93.172 +89.92 +33.69 +92.11 +92.14 +33.477 +28.47 +92.4 +90.21 +92.29 +42.7 +33.184 +93.169a +89.92 +33.69 +92.11 +20.53 +92.24 +7.15 +92.29 +91.12 +67.136 +60.12 +67.186 +13.65 +92.11 +89.50 +33.69 +92.24 +93.172 +60.27 +89.93 +60.15 +67.167 +45.1 +92.24 +7.15 +92.29 +91.12 +92.6 +67.136 +60.12 +67.186 +13.65 +92.11 +89.124 +92.30 +33.69 +90.24 +92.24 +7.15 +92.24 +8.1 +92.11 +89.50 +50215 23.94 +89.121 +23.121 +29.7 +92.24 +36.38 +92.11 +90.21 +92.29 +33.69 +50226 31.35 +92.24 +33.53 +89.92 +92.24 +33.98 +92.27 +33.69 +92.24 +93.169a +50237 67.139 +85.1 +83.13 +92.24 +93.480a +67.136 +92.24 +51.6 +67.136 83.23 +92.24 +51.2 +59.1 +31.85 +90.23 +92.24 +33.265 +92.11 +24.14 +92.11 +92.24 +33.477 +92.27 +90.45 +89.124 +92.37 +93.169a +69.3 +35.50 +92.37 +92.11 +90.44 +92.24 +92.11 +32.16 +59.23 +89.92 +89.33 +69.3 +57.40 +50277 90.22 +92.12 +33.262 +90.24 +92.24 +9.1 +89.23 +92.11 +32.16 +92.14 +85.1 +13.8 +92.24 +9.1 +50292 13.69 +9.24 +63.20 89.3 +92.24 +11.49 +37.95 +92.24 +93.172 +93.281 +33.126 +92.11 +92.29 +15.81 +84.18 +92.11 +67.192 +89.87 +33.69 +92.11 +33.246 +28.1 +90.21 +50315 12.1 +15.81 +33.243 +89.23 +92.23 +74.5 +92.29 +92.24 +33.477 +92.27 +92.6 +90.45 +90.45 +50330 85.1 +92.24 +12.1 +89.108 +92.11 +33.28 +93.169a +89.92 +33.69 +92.11 +72.6 +72.6 +33.69 +92.6 +50346 92.12 +41.53 +41.53 67.55 84.13 +69.3 +74.5 +90.79 +92.24 +37.64 +92.24 +12.1 +33.69 +90.58 +92.11 +92.24 +93.281 +92.16 +74.5 +9.24 +23.52 +9.30 +13.1 +69.3 +74.5 +84.22 +92.24 +8.69 +92.24 +10.16 +92.11 +60.49 +15.93 +89.87 +23.52 +33.184 +93.169a +72.6 +72.6 +33.69 +92.6 +50387 92.12 +13.56 23.52 +89.77 +2.7 +89.92 +12.18 +69.3 +74.5 +90.70 +13.62 +92.24 +37.64 +92.24 +12.1 +92.24 +23.52 +90.16 +92.24 +58.10 +58.10 +13.1 +89.92 +92.24 +13.56 +90.16 +92.24 +12.18 +12.33 +13.1 +69.3 +25.213 +89.33 +33.69 +92.6 +71.34 +92.7 +41.53 +41.53 67.55 84.13 +92.24 +14.4 +83.5 +25.1 +14.4 +89.93 +92.24 +14.74 +92.11 +24.52 +89.125 +69.3 +28.1 +84.6 +15.81 +89.92 +83.6 +15.15 +50444 13.1 +59.23 +92.24 +13.56 +90.16 +92.24 +12.18 +33.28 +93.281 +89.92 +33.69 +92.11 +92.16 +74.5 +92.29 +13.107 +33.184 +93.169a +89.92 +33.69 +92.11 +92.6 +13.4 +92.24 +33.243 +92.24 +93.182b +91.12 +92.29 +69.11 +32.16 +72.6 +72.6 +33.69 +92.6 +90.21 +92.27 +28.1 +33.70 +89.92 +92.27 +24.1 +33.262 +91.12 +92.24 +33.264 +92.4 +69.3 +31.50 +89.65 +92.24 +9.7 +33.69 +92.7 +91.12 +69.3 +31.35 +92.16 +89.67 +33.69 +92.7 +92.24 +12.17 +31.35 +91.1 +92.23 +15.101 +84.22 +92.24 +1.11 +89.131 +50516 92.24 +84.4 +92.24 +1.11 +15.107 +92.24 +9.3 +92.24 +9.3 +91.1 +64.14 +93.266 +81.5 +92.24 +4.52 +83.13 +92.24 +1.86 +50535 71.34 +81.5 +92.24 +9.3 +92.24 +9.3 +89.59 +59.23 +92.24 +31.102 +90.23 +92.11 +90.65 +23.88 +67.96 +89.23 +61.10 +25.43 +92.24 +12.1 +92.24 +9.23 +89.52 +92.24 +12.15 +92.24 +58.52 +37.98 +89.59 +59.23 +92.24 +31.102 +90.23 +92.11 +69.3 +21.32 +89.125 +90.65 +23.88 +67.96 +89.23 +69.3 +15.66 +92.24 +12.1 +92.24 +12.15 +84.22 +92.24 +9.23 +89.59 +56.30 +92.24 +9.23 +89.125 +89.59 +21.27 +92.24 +9.23 +90.4 +92.11 +92.24 +31.102 +90.23 +92.11 +69.3 +56.30 +92.24 +69.3 +31.102 +67.20 +56.30 +89.33 +69.3 +31.102 +90.23 +92.24 +33.126 +92.24 +58.52 +12.15 +92.24 +12.15 +89.94 +92.29 +13.4 +92.24 +30.111 +91.15 +92.24 +14.36 +15.81 +84.22 +92.24 +9.23 +50631 25.104 +92.24 +9.1 +89.126 +92.24 +88.125 +64.18 +92.24 +14.36 +89.23 +13.1 +88.110 +92.11 +92.24 +42.11 +89.23 +59.23 +92.24 +88.116 +42.8 +88.198 +92.24 +14.36 +50655 69.3 +15.81 +84.18 +92.24 +14.36 +89.59 +69.3 +33.417 +92.24 +42.11 +92.11 +89.124 +92.24 +41.7 +92.24 +72.2 +15.81 +84.18 +92.24 +14.36 +89.59 90.22 +28.36 +92.11 +92.24 +42.11 +90.21 +50682 12.1 +50684 90.47 +67.48 +92.29 +15.81 +92.24 +93.169a +89.92 +92.24 +36.38 +92.11 +84.22 +92.24 +93.487 +1.79 +89.87 +83.2 +85.61 +89.108 +92.11 +89.93 +53.41 +89.94 +13.1 +53.41 +89.93 +93.190a +83.13 +93.400 +83.26 +92.24 +93.565 +89.33 +2.7 +59.11 +85.1 +83.2 +89.93 +15.86 +89.87 +53.41 +89.23 +67.129 +50727 85.34 +84.22 +92.24 +7.24 +93.190a +50733 91.5 +33.440 +90.16 +92.24 +36.38 +93.190a +90.32 +93.172 +89.6 +53.28 +50744 15.81 +84.18 +92.24 +93.190a +89.87 +33.69 +92.11 +33.246 +92.27 +85.1 +89.108 +92.6 +83.43 +92.24 +93.485 +92.27 +92.6 +33.262 +91.13 +92.29 +53.41 +89.93 +59.23 +15.81 +84.18 +92.11 +33.28 +93.190a +89.92 +33.69 +69.3 +74.5 +9.1 +57.125 +50783 92.11 +90.16 +92.24 +12.16 +92.37 +92.7 +92.1 +33.262 +90.21 +33.69 +69.3 +13.4 +92.1 +92.24 +53.82 +89.125 +90.21 +15.66 +13.1 +83.33 +92.30 +92.24 +50806 92.24 +10.57 +10.56 +13.4 +89.94 +92.24 +34.11 +92.24 +10.56 +92.24 +85.8 +89.93 +24.52 +92.11 +25.123 +25.125 +90.44 +92.24 +33.103 +92.24 +10.56 +89.50 +92.29 +92.24 +25.123 +92.24 +92.2 +59.37 +71.34 +92.30 +87.37 +89.124 +92.1 +87.69 +92.24 +84.13 +15.81 +87.31 +59.23 +13.1 +92.24 +58.67 +89.3 +92.24 +1.39 +89.3 +92.24 +1.39 +13.1 +50856 89.3 +92.24 +1.39 +33.70 +92.24 +89.3 +92.24 +1.11 +15.81 +87.31 +59.23 +13.1 +92.27 +24.1 +89.92 +24.52 +92.29 +33.262 +91.12 +92.24 +33.264 +92.11 +92.23 +57.125 +92.24 +57.125 +92.11 +92.24 +33.264 +28.53 +90.21 +92.24 +12.1 +88.39 +13.1 +89.23 +92.27 +15.66 +92.24 +12.1 +92.24 +33.98 +92.24 +12.1 +33.70 +89.23 +69.3 +78.12 +78.12 81.1 +50906 92.24 +12.18 +92.24 +12.12 +25.43 +92.24 +12.15 +89.93 +59.23 +50917 92.24 +76.3 +92.11 +92.24 +31.102 +90.23 +92.24 +12.15 +90.65 +23.88 +67.96 +89.124 +92.24 +36.23 +92.24 +12.15 +69.3 +90.79 +23.88 +89.125 +92.24 +38.10 +92.24 +12.1 +68.11 +90.34 +92.11 +50945 67.45 +27.2 +92.24 +50949 90.21 +33.212 +92.24 +11.49 +90.21 +93.169a +59.1 +36.38 +13.9 +89.92 +53.41 +64.18 +93.190a +89.72 +93.169a +92.37 +69.3 +53.41 +89.125 +92.24 +36.38 +92.11 +15.48 +92.24 +93.486a +89.87 +15.37 +67.55 +84.16 +92.24 +93.444a +50981 71.21 +92.11 +15.31 +84.29 +92.24 +93.568a +89.50 +15.81 +84.22 +1.88 +92.24 +93.568a +33.129 +93.593 +83.27 +92.24 +1.95 +92.27 +57.71 +93.157a +93.202a +92.24 +10.42 +92.11 +51006 85.1 +83.2 +7.57 +92.24 +93.157a +51012 92.24 +93.169a +23.78 +89.25 +92.24 +15.20 +17.12 +61.9 +83.23 +92.24 +7.57 +67.199 +13.4 +78.42 +60.53 +15.81 +9.34 +89.3 +92.24 +93.568a +47.1 +2.7 +33.69 +92.11 +92.24 +93.169a +57.71 +92.1 +23.34 +89.23 +92.24 +36.38 +92.11 +15.37 +84.22 +92.24 +1.88 +89.59 +5.1 +57.188 +89.50 +33.69 +92.11 +92.24 +9.34 +92.24 +93.570 +92.16 +92.6 +93.172 +13.1 +90.14 +92.1 +9.34 +93.570 +13.1 +23.34 +33.163 +89.23 +69.3 +34.1 +93.172 +93.569 +33.184 +93.169a +89.92 +33.69 +92.11 +89.65 +28.1 +92.24 +57.84 +92.24 +12.1 +89.92 +92.14 +13.4 +92.24 +33.69 +92.6 +57.71 +92.1 +23.34 +71.14 +92.6 +33.163 +92.11 +89.87 +71.14 +51102 92.6 +2.7 +23.88 +33.69 +92.11 +87.53 +69.9 +6.123 +57.1 +89.93 +92.24 +7.57 +13.1 +81.10 +89.50 +84.6 +57.1 +92.24 +2.7 +92.24 +23.88 +69.15 +92.6 +87.22 +13.1 +92.24 +10.20 +92.4 +93.157a +92.27 +57.71 +92.4 +92.24 +7.57 +89.93 +92.37 +89.77 +92.11 +23.34 +89.92 +92.24 +10.42 +92.11 +89.92 +92.24 +4.5 +92.11 +33.184 +93.169a +89.92 +33.69 +92.11 +59.23 +92.24 +23.34 +89.77 +92.24 +2.7 +92.29 +23.39 +67.55 +89.124 +71.8 +92.27 +23.34 +89.77 +92.24 +2.7 +92.27 +92.1 +51173 92.11 +69.5 +69.5 +23.39 +67.95 +92.24 +67.95 +89.125 +92.24 +2.7 +92.27 +51185 92.11 +13.48 +83.13 +92.11 +1.78 +2.7 +14.30 +78.51 +23.88 +67.96 +33.69 +90.58 +92.11 +92.24 +9.34 +87.53 +57.71 +92.1 +92.29 +92.24 +2.7 +89.59 +69.3 +23.39 +69.7 +15.17 +83.1 +47.1 +33.69 +92.11 +15.35 +33.307 +92.24 +10.53 +92.6 +89.87 +15.81 +83.1 +33.28 +92.24 +9.34 +89.92 +33.69 +69.3 +51230 10.53 +33.69 +92.11 +92.24 +93.169a +72.12 +33.69 +90.21 +10.53 +69.3 +51241 89.23 +60.14 +10.53 +51245 89.93 +92.27 +67.38 +51249 69.3 +13.4 +92.6 +10.53 +92.29 +72.1 +33.69 +33.69 +92.11 +92.24 +9.34 +87.53 +32.11 +90.21 +53.79 +58.67 +92.6 +92.24 +10.20 +92.4 +83.47 +92.24 +1.46 +92.29 +53.56 +51275 92.7 +33.69 +90.21 +83.13 +93.480a +85.1 +92.24 +80.1 +83.5 +53.56 +71.34 +33.69 +92.11 +92.24 +93.169a +31.35 +92.1 +9.34 +90.21 +15.81 +67.1 +51297 69.9 +83.47 +92.24 +1.46 +92.29 +69.9 +83.13 +93.480a +53.56 +92.24 +12.12 +92.7 +53.56 +92.27 +69.3 +28.1 32.4 +92.4 +53.56 +92.27 +28.1 32.4 +89.33 +92.24 +21.25 21.26 +90.16 +92.24 +93.172 +13.1 +91.2 +15.81 +67.1 +89.93 +67.38 +13.69 +51331 92.24 +70.3 +53.57 +53.56 +92.24 +12.12 +13.8 +26.9 +89.92 +72.2 +89.23 +91.12 +92.24 +12.12 +64.2 +25.9 +92.24 +53.56 +92.11 +12.33 +92.24 +12.1 +51354 92.24 +53.56 +13.8 +26.9 +89.92 +72.2 +53.56 +71.34 +33.69 +92.11 +92.24 +9.34 +28.1 +90.21 +53.82 +92.24 +33.131 +53.82 +15.81 +51374 15.81 +92.30 +33.197 +92.4 +59.23 +33.69 +92.11 +92.24 +93.169a +92.1 +92.24 +33.70 +92.6 +13.4 +91.1 +67.33 +92.29 +15.81 +92.24 +36.38 +92.11 +89.87 +25.213 +89.33 90.21 +90.60 +9.34 +33.70 +89.130 +92.23 +33.69 +92.14 +33.167 +89.139 +92.15 +33.70 +89.108 +92.11 +89.50 +85.45 +92.24 +6.127 +92.11 +92.24 +9.34 +89.87 +15.37 +84.22 +92.24 +1.88 +89.87 +33.69 +92.24 +9.1 +84.24 +24.1 +9.24 +92.27 +33.69 +92.1 +59.23 +51435 42.7 +69.16 +92.29 +13.4 +92.24 +53.82 +15.40 +84.4 +92.24 +1.88 +89.87 +15.81 +84.18 +92.11 +67.138 +92.24 +67.54 +33.161 +92.11 +92.24 +36.38 +33.69 +33.246 +23.1 +89.124 +92.24 +33.69 +92.11 +92.1 +5.1 +57.1 +23.1 +92.27 +92.7 +69.3 +28.1 +89.50 +33.69 +92.24 +36.38 +90.58 +92.26 +69.15 +92.12 +15.187 +92.11 +23.1 +33.69 +92.11 +92.24 +93.169a +92.2 +5.1 +13.4 +90.22 +51491 92.24 +30.59 +92.24 +15.66 +92.1 +89.92 +68.22 +92.11 +92.24 +42.42 +69.11 +92.7 +33.69 +90.21 +67.128 +67.176 +13.104 +89.87 +92.24 +43.14 +51512 91.13 +33.69 +92.7 +24.34 +92.24 +8.23 +92.7 +89.87 +24.14 +92.24 +1.95 +91.15 +79.27 +13.1 +78.51 +43.14 +67.20 +92.24 +43.14 +57.173 +57.125 +89.92 +15.125 +43.15 +89.48 +23.88 +67.96 +89.59 +89.116 +25.125 +92.24 +43.6 +89.92 +92.24 +43.14 +89.23 +90.23 +92.29 +92.24 +33.98 +13.1 +72.1 +91.15 +58.37 +13.4 +92.24 +43.6 +89.92 +58.37 +92.24 +43.14 +92.1 +15.66 +92.7 +43.14 +92.27 +69.3 +92.7 +42.47 +58.37 +42.47 +51574 92.7 +89.76 +92.24 +42.47 +92.11 +90.70 +51581 89.3 +92.24 +1.88 +92.30 +59.1 +92.24 +93.569 +31.102 +90.23 +92.11 +89.26 +92.24 +33.98 +92.24 +9.34 +33.262 +91.15 +33.69 +92.1 +59.23 +92.27 +42.7 +89.50 +67.45 +15.81 +84.18 +92.11 +92.24 +93.569 +33.161 +92.11 +85.55 +89.111 +92.11 +51616 85.55 +83.2 +60.11 +67.186 +51621 59.1 +59.1 +31.102 +89.26 +92.24 +33.98 +92.11 +89.88 +92.24 +9.34 +33.69 +90.21 +67.130 +89.26 +92.24 +92.8 +33.101 +31.102 +89.23 +92.37 +24.52 +51643 32.4 +90.21 +92.29 +13.4 +70.3 +92.24 +21.31 +92.24 +9.23 +51653 67.48 +92.24 +60.11 +67.186 +15.40 +84.10 +84.22 +92.24 +93.444a +89.23 +92.37 +93.169a +33.262 +90.21 +53.79 +83.13 +92.24 +57.4 +1.81 +87.4 +69.3 +90.65 +51677 15.81 +84.22 +92.24 +93.444a +34.53 +92.11 +92.24 +93.445 +24.1 +59.23 +59.7 +42.7 +83.13 +93.480a +67.136 +92.24 +51.2 +89.23 +89.93 +92.11 +15.81 +84.16 +92.24 +51.2 +51702 15.81 +67.55 +84.22 +92.24 +93.494 +92.24 +93.444a +83.5 +42.29 +92.24 +2.7 +6.197 +91.1 +13.69 +92.12 +37.84 +92.27 +92.24 +10.42 +23.144 +83.13 +93.498 +92.29 +33.212 +90.21 +93.169a +15.84 +84.4 +92.24 +93.486a +84.22 +92.24 +93.444a +15.37 +84.18 +92.11 +89.87 +33.161 +90.22 +15.107 +89.87 +23.136 +92.11 +92.24 +10.42 +89.23 +67.62 +23.99 +89.50 +33.69 +92.24 +93.169a +90.58 +92.11 +51758 33.477 +89.92 +33.480 +24.1 +69.5 +69.5 +31.102 +33.69 +90.58 +92.11 +92.24 +37.84 +87.53 +15.107 +67.17 +23.99 +92.24 +10.37 +92.1 +33.69 +92.11 +92.24 +93.169a +15.34 +92.24 +10.42 +92.6 +23.88 +31.35 +92.24 +9.24 +92.24 +33.98 +92.27 +33.69 +92.11 +92.24 +93.169a +51797 15.34 +51799 67.20 +92.11 +15.107 +92.24 +87.76 +55.3 +92.11 +33.69 +90.21 +92.24 +10.36 +92.11 +23.88 +89.50 +33.181 +92.24 +67.199 +90.14 +92.11 +67.33 +92.27 +23.135 +13.2 +89.50 +33.69 +92.11 +90.21 +67.203 +67.199 +60.54 +13.37 +92.11 +92.24 +23.159 +89.50 +32.16 +92.24 +10.14 +90.21 +92.30 +92.24 +67.199 +67.33 +92.27 +33.69 +92.11 +92.24 +93.169a +92.24 +10.42 +92.6 +23.88 +51852 31.102 +92.11 +89.93 +92.24 +10.8 +92.11 +59.29 +51860 89.97 +92.29 +60.49 +33.477 +90.45 +92.24 +93.169a +15.81 +84.4 +92.24 +93.486a +84.22 +92.24 +93.444a +67.48 +92.29 +13.104 +51.2 +92.24 +93.172 +89.92 +15.101 +93.169a +84.16 +93.480a +51886 13.69 +83.13 +92.24 +93.480a +83.23 +92.24 +4.23 +7.58 +92.24 +33.129 +33.6 +93.430 +60.14 +7.40 +57.1 +83.13 +92.29 +17.27 +59.9 +92.24 +23.144 +24.38 +23.175 +15.225 16.1 16.4 23.155 23.173 58.30 84.22 85.60 +51943 85.1 +92.12 +9.24 +83.2 +60.26 +89.92 +60.17 +67.167 +13.2 +13.8 +92.24 +23.143 +92.11 +92.24 +93.169a +92.29 +17.27 +24.1 +89.92 +28.1 +90.21 +59.11 +67.78 +67.20 +13.2 +33.69 +92.11 +25.1 +23.129 +13.48 +33.184 +92.11 +92.24 +23.144 +87.53 +9.1 +69.3 +51981 90.22 +51983 16.3 +92.24 +2.7 +85.34 +92.1 +84.22 +92.24 +7.58 +89.124 +67.139 +51994 15.7 +92.1 +58.37 +67.17 +92.1 +15.107 +33.69 +92.11 +92.24 +93.169a +17.9 +15.203 +92.24 +6.107 +92.6 +89.87 +15.227 +89.87 +67.53 +13.48 +23.129 +92.24 +9.24 +89.87 +15.203 +92.24 +6.107 +92.11 +89.87 +15.227 +52025 13.4 +67.184 +67.136 +92.30 +92.24 +67.178 +89.50 +33.69 +92.24 +93.172 +92.24 +23.139 +67.184 +13.4 +52040 69.3 +71.32 +92.6 +15.203 +92.24 +6.107 +89.124 +52048 33.28 +92.11 +92.24 +13.9 +92.1 +23.129 +92.30 +92.1 +33.69 +15.203 +92.24 +6.107 +92.6 +89.87 +15.227 +33.180 +92.11 +92.14 +13.4 +92.24 +9.24 +92.24 +33.69 +92.6 +15.203 +89.87 +15.227 +89.124 +92.24 +23.136 +69.3 +28.1 +92.14 +13.4 +89.23 +92.24 +93.169a +15.60 +11.1 +85.1 +83.13 +92.24 +80.1 +67.48 +92.29 +27.27 +92.11 +92.24 +93.169a +83.13 83.23 +92.24 +7.16 +89.87 +33.69 +92.11 +91.13 +23.129 +13.48 +67.130 +88.289 +89.59 +89.62 +65.29 +92.12 +92.6 +13.107 +15.37 +92.24 +9.24 +89.87 +52119 92.24 +93.172 +90.21 +93.169a +13.4 +92.24 +13.9 +92.11 +23.129 +89.87 +89.26 +92.29 +39.45 +92.24 +93.172 +92.24 +93.169a +89.33 +92.29 +42.7 +67.136 +67.184 +89.124 89.87 +92.24 +33.28 +92.11 +92.24 +12.12 +92.1 +67.119 +67.38 +42.41 +89.93 92.1 +42.41 +89.50 +89.26 +92.29 +78.28 +25.9 +92.11 +20.61 +92.24 +93.172 +89.33 +69.3 +52165 36.30 +92.24 +67.184 +89.125 +89.93 +12.12 +58.47 +33.69 +92.24 +12.1 +58.33 +92.25 +13.9 +92.24 +12.1 +52181 33.28 +92.24 +93.169a +89.92 +33.69 +92.11 +72.6 +72.6 +33.69 +92.7 +69.3 +74.5 +92.24 +12.15 +42.7 +90.7 +92.25 +92.23 +52201 24.7 +92.12 +92.24 +12.12 +42.7 +89.23 +71.8 +92.27 +92.30 +42.7 +92.29 +89.93 +92.24 +12.15 +64.1 +42.7 +89.23 +92.24 +12.12 +25.33 +92.24 +12.15 +89.92 +28.47 +92.11 +59.23 +92.27 +92.37 +42.7 +89.92 +78.2 +92.29 +42.11 +28.47 +92.11 +89.49 +92.7 +25.213 +89.23 +64.13 +92.24 +12.12 +23.94 +92.24 +23.121 +89.92 +23.92 +61.9 +89.93 +92.24 +12.15 +92.27 +30.58 +23.92 +89.23 +69.8 +92.24 +12.12 +56.20 +92.23 +89.125 +92.24 +56.22 +59.23 +90.51 +92.24 +12.15 +89.59 +59.23 +87.8 +92.24 +12.15 +64.14 +87.8 +92.24 +12.12 +92.24 +69.3 +87.8 +92.24 +12.15 +69.3 +87.8 +92.24 +12.12 +92.24 +15.66 +92.11 +72.6 +72.6 +33.69 +92.7 +90.21 +92.24 +92.24 +33.98 +92.1 +24.52 36.14 +89.92 +31.85 +92.24 +15.66 +92.1 +90.65 +23.88 +67.96 +89.92 +52309 56.20 +69.3 +52312 89.125 +13.51 +89.121 +92.24 +23.99 +84.22 +92.24 +23.88 +72.6 +72.6 +33.69 +92.7 +90.21 +13.50 +67.1 +89.92 +67.38 +13.1 +52331 92.24 +23.121 +24.52 +92.24 +33.103 +92.24 +12.15 +92.24 +12.15 +89.87 +92.24 +36.14 +23.93 +89.23 +64.13 +92.24 +12.12 +90.65 +23.88 +83.13 +92.25 +61.9 +89.93 +92.24 +12.15 +13.142 +23.88 +90.65 +83.13 +92.25 +89.92 +76.12 +90.51 +92.11 +56.20 +90.45 +89.33 +9.3 +9.3 +13.4 +69.3 +25.213 +92.29 +89.33 +13.117 +67.1 +67.33 +92.27 +59.23 +92.24 +83.13 +92.24 +7.75 +24.52 36.14 +92.24 +33.103 +92.11 +89.87 +15.40 +92.24 +92.24 +88.1 +42.7 +13.62 +23.93 +23.88 +92.24 +92.24 +88.116 +42.8 +13.62 +23.93 +56.30 +69.3 +74.5 +92.1 +42.7 +90.7 +92.3 +92.23 +64.14 +24.52 +56.20 +89.92 +92.24 +56.24 +92.24 +92.2 +88.12 +13.1 +89.33 +69.3 +25.9 +92.24 +25.2 +92.24 +92.2 +89.125 +92.24 +25.2 +92.24 +15.66 +92.1 +89.67 +92.1 +33.262 +90.24 +92.3 +92.24 +33.264 +92.1 +69.3 +13.1 +72.1 +58.37 +13.69 +92.24 +33.262 +90.24 +92.1 +89.93 +28.1 +90.21 +72.1 +13.1 +92.24 +33.264 +92.27 +33.263 +90.24 +92.1 +92.7 +15.67 +84.18 +93.190a +89.87 +33.262 +92.24 +72.2 +89.124 +92.1 +69.3 +90.14 +9.1 +92.24 +33.264 +57.125 +91.2 +92.29 +33.69 +89.59 +92.7 +21.27 +92.30 +13.4 +92.24 +6.104 +92.24 +14.63 +89.92 +14.37 +89.94 +92.7 +30.58 +25.133 +52497 67.148 +83.13 +92.24 +14.36 +92.11 +52503 92.1 +90.65 +92.24 +33.264 +87.28 +92.24 +93.190a +89.23 +92.24 +42.11 +92.27 +52515 92.1 +92.24 +12.12 +89.59 +68.22 +92.11 +92.37 +92.24 +42.11 +92.27 +90.45 +33.262 +90.24 +92.1 +90.21 +92.24 +12.12 +92.1 +15.66 +89.93 +92.24 +15.66 +92.1 +12.12 +92.30 +33.262 +90.24 +92.1 +69.9 +33.103 +92.11 +67.9 +24.52 +69.9 +58.14 +92.11 +24.1 +89.92 +69.3 +90.65 +92.24 +33.98 +92.11 +89.119 +92.7 +85.55 +89.33 +92.27 +15.66 +92.30 +92.29 +92.7 +69.3 +31.102 +27.34 +92.24 +33.54 +89.33 +92.7 +31.29 +89.76 +92.11 +23.88 +67.96 +90.65 +91.12 +92.30 +13.4 +92.24 +33.262 +90.24 +92.1 +91.12 +69.3 +25.1 +52592 92.1 +89.59 +23.88 +90.65 +87.4 +90.14 +9.1 +69.3 +57.125 +91.2 +28.1 +92.7 +91.15 +92.24 +25.43 +92.24 +12.1 +69.3 +90.65 +89.119 +92.25 +92.1 +15.81 +90.23 +92.24 +58.22 +92.24 +12.12 +92.1 +91.12 +69.3 +31.50 +92.1 +89.67 +58.37 +15.81 +90.23 +92.24 +58.22 +92.24 +57.4 +92.30 +31.50 +92.16 +74.5 +92.7 +31.102 +87.4 +90.14 +92.26 +57.125 +91.12 +92.24 +87.4 +92.24 +90.14 +92.24 +58.50 +12.1 +69.3 +57.59 +69.3 +31.29 +90.21 +92.1 +33.427 +92.7 +90.20 +92.24 +12.12 +13.69 +92.24 +33.427 +92.7 +93.266 +90.23 +92.27 +92.7 +25.59 +89.23 +89.65 +31.35 +93.266 +71.14 +31.102 +92.1 +89.23 +90.24 +92.1 +92.30 +33.61 +89.124 +89.65 +92.24 +92.30 +33.50 +69.3 +31.35 +92.16 +92.24 +92.2 +33.98 +31.35 +67.48 +92.29 +15.37 +92.24 +93.169a +83.43 +92.24 +1.70 +92.24 +93.444b +92.24 +93.597b +89.94 +15.156 +92.11 +11.1 +59.11 +89.33 +52714 92.24 +33.477 +92.27 +42.7 +90.57 +92.24 +23.144 +89.87 +15.101 +84.16 +92.24 +1.46 +93.169a +89.93 +83.2 +17.12 +89.108 +92.24 +36.38 +92.11 +52735 13.1 +67.61 +92.24 +51.6 +92.24 +51.2 +92.24 +93.172 +52744 92.24 +93.169a +24.34 +92.24 +8.23 +89.87 +24.14 +90.21 +59.11 +11.1 +15.81 +84.18 +92.11 +33.69 +90.58 +93.379a +84.6 +57.188 +5.8 +89.59 +23.1 +92.29 +89.124 +92.29 +33.69 +27.46 +92.11 +89.23 +92.37 +28.1 +92.14 +42.7 +67.62 +33.184 +92.11 +92.24 +93.379a +60.34 +6.75 +5.8 +69.3 +59.46 +92.11 +89.59 +59.27 +59.14 +92.12 +57.125 +33.69 +92.11 +92.22 +63.20 +92.24 +36.38 +92.11 +93.25 +92.24 +10.49 +93.341a +93.296 +85.1 +9.42 +83.1 +92.27 +57.1 +60.14 +5.8 +3.45 +89.92 +60.11 +5.16 +89.125 +92.29 +92.14 +13.4 +90.23 +59.6 +33.69 +92.24 +93.169a +13.9 +92.24 +9.1 +17.23 +52829 85.1 +3.15 +59.11 +83.13 +92.24 +80.1 +89.50 +17.23 +92.24 +9.1 +92.24 +60.2 +78.42 +60.43 +52844 18.1 +92.24 +5.8 +92.24 +93.169a +89.87 +33.349 +57.94 +92.24 +17.23 +64.1 +89.93 +63.20 +92.24 +5.16 +59.19 +25.1 +52862 67.45 +23.18 +33.69 +92.24 +36.38 +92.11 +85.48 +92.24 +59.52 +19.40 +89.59 +69.3 +92.12 +57.67 +89.50 +85.48 +89.87 +59.42 +60.21 +6.150 +19.40 +63.20 +92.24 +60.14 +5.8 +92.24 +3.45 +92.27 +59.52 +92.24 +23.3 +89.50 +92.24 +9.1 +24.1 +92.27 +90.45 +33.477 +33.69 +90.21 +92.29 +13.4 +70.3 +92.24 +53.79 +92.24 +15.81 +84.22 +92.24 +1.39 +89.50 +28.1 +90.21 +67.62 +15.81 +89.87 +18.4 +92.11 +89.59 +13.9 +37.67 +15.53 +67.55 +84.16 +92.24 +1.46 +93.169a +92.37 +58.51 +52932 67.45 +67.197 +13.107 +15.107 +92.24 +36.38 +92.11 +84.17 +92.24 +1.70 +89.87 +15.95 +84.22 +6.41 +15.81 +83.43 +92.24 +1.70 +84.16 +93.498 +91.1 +14.53 +67.20 +13.107 +89.93 +67.129 +15.81 +84.18 +92.11 +92.24 +93.169a +89.95 +92.24 +1.70 +14.4 +78.2 +14.4 +14.20 +52971 15.161 +78.42 +81.27 +60.25 +60.14 +89.139 +60.26 +24.14 +92.24 +93.169a +15.227 +83.46 +92.24 +1.70 +89.93 +83.26 +92.24 +6.41 +15.1 +52991 25.252 +89.124 +92.24 +33.69 +92.11 +92.1 +13.69 +69.3 +25.252 +89.50 +25.1 +57.125 +92.11 +84.22 +92.24 +6.41 +89.87 +67.53 +15.1 +92.24 +6.41 +83.23 +92.24 +1.60 +84.16 +92.27 +15.15 +92.24 +67.208 +92.24 +11.1 +92.24 +85.8 +83.43 +92.24 +1.70 +24.1 +90.21 +6.42 +58.37 +69.3 +85.1 +83.2 +89.131 +53036 92.22 +89.93 +90.21 +69.3 +15.152 +92.24 +36.38 +92.11 +92.24 +93.169a +83.13 +92.24 +6.41 +89.125 +58.50 +92.24 +36.38 +92.11 +15.37 +53056 6.42 +15.81 +84.4 +93.597a +83.26 +92.24 +80.1 +83.5 +23.1 +92.24 +5.8 +33.349 +92.24 +12.9{N:001} +89.50 +53072 24.1 +92.24 +11.1 +90.21 +93.169a +69.3 +85.1 +83.2 +69.7 +92.24 +36.38 +92.11 +15.95 +92.11 +84.22 +92.24 +6.42 +89.87 +15.81 +84.16 +93.498 +27.41 +92.24 +93.169a +91.1 +27.27 +92.11 +83.43 +92.24 +1.70 +33.69 +92.11 +33.246 +67.30 +83.1 +15.1 +33.184 +92.11 +92.24 +93.169a +89.92 +33.69 +72.6 +72.6 +33.69 +92.7 +27.41 +92.1 +69.3 +89.33 +24.1 +33.477 +89.125 +89.33 +23.1 +63.20 +92.24 +5.8 +53131 23.15 +42.41 +69.3 +92.24 +5.1 +92.24 +20.31 +89.125 +92.24 +5.1 +92.24 +13.89 +67.119 89.48 +23.88 +67.96 +92.27 +92.24 +9.3 +92.24 +9.3 +92.7 +53153 89.23 +92.29 +92.24 +12.12 +92.24 +12.1 +28.53 +89.50 +33.69 +90.58 +92.11 +92.14 +42.7 +89.59 +90.47 +92.24 +42.11 +92.24 +12.1 +33.184 +93.169a +89.92 +33.69 +92.11 +92.29 +13.4 +92.24 +42.11 +92.24 +12.1 +91.15 +31.102 +90.23 +92.27 +15.66 +92.30 +89.50 +33.69 +92.11 +89.50 +92.14 +33.477 +90.45 +92.6 +89.59 +24.1 +53200 31.35 +92.6 +92.14 +90.47 +92.24 +10.20 +92.4 +92.24 +5.22 +23.1 +83.13 +92.24 +1.86 +64.14 +53215 33.54 +5.1 +84.4 +92.24 +1.11 +57.71 +92.11 +23.1 +89.50 +33.69 +92.11 +92.24 +93.169a +72.6 +72.6 +33.69 +92.7 +69.3 +93.266 +57.71 +92.7 +92.24 +5.1 +84.4 +92.24 +1.11 +89.125 +92.24 +12.12 +92.1 +57.71 +92.7 +92.24 +5.1 +84.4 +92.24 +1.11 +92.24 +70.3 +89.23 +92.24 +5.1 +92.24 +12.1 +13.4 +92.24 +15.107 +84.4 +92.24 +1.11 +89.87 +23.88 +90.51 +92.24 +9.23 +89.50 +33.69 +90.58 +92.11 +87.53 +67.88 +57.71 +92.4 +92.24 +5.1 +92.29 +33.69 +92.11 +92.24 +93.169a +92.1 +13.4 +92.24 +5.1 +92.24 +23.88 +92.24 +53294 92.1 +69.5 +69.5 +23.29 +89.92 +92.24 +31.102 +90.23 +92.1 +69.5 +69.5 +23.39 +67.9 +89.125 +33.69 +92.7 +90.21 +89.102 +24.1 +92.1 +89.102 +69.3 +31.102 +59.23 +92.27 +53320 92.1 +92.24 +12.12 +84.18 +92.1 +15.84 +89.87 +92.24 +53331 69.5 +69.5 +15.44 +84.27 +89.33 +15.107 +84.3 +92.24 +1.11 +69.3 +89.59 +42.7 +92.24 +30.59 +92.24 +92.2 +89.125 +92.24 +30.59 +92.24 +15.66 +92.1 +53354 92.29 +13.4 +92.24 +30.59 +92.24 +15.66 +92.1 +91.15 +59.23 +92.27 +53365 92.1 +69.3 +57.68 +63.20 +92.11 +89.125 +23.94 +92.11 +67.33 +92.24 +61.13 + +89.23 +92.29 +13.4 +92.24 +30.59 +92.24 +12.12 +92.1 +91.15 +59.23 +92.24 +24.14 +92.24 +12.15 +89.87 +31.102 +90.23 +92.11 +90.65 +23.88 +67.96 +89.93 +23.94 +92.11 +92.1 +67.33 +92.24 +61.13 + +89.50 +33.382 +92.24 +93.172 +90.24 +92.11 +89.33 +33.69 +92.1 +13.4 +92.24 +5.1 +92.24 +15.107 +84.4 +92.24 +1.11 +89.87 +33.69 +69.11 +92.29 +13.4 +93.169a +92.24 +10.42 +93.202b +92.27 +92.4 +28.1 +92.24 +10.14 +89.92 +92.24 +10.16 +92.16 +67.39 +33.69 +90.21 +84.4 +92.24 +1.11 +15.107 +33.28 +93.169a +89.92 +33.69 +92.11 +69.3 +33.382 +89.108 +92.26 +92.23 +74.5 +53461 92.1 +53464 92.24 +12.12 +92.24 +15.66 +92.1 +15.212 +92.11 +92.1 +23.94 +92.11 +67.33 +92.24 +61.13 + +53479 33.54 +90.6 +92.24 +33.60 53.79 +91.1 +13.1 +59.23 +33.227 +12.1 +59.23 +92.24 +33.212 +90.14 +92.24 +12.12 +89.87 +27.12 +53498 92.1 +69.3 +90.21 +92.24 +12.12 +24.1 +92.12 +89.131 +53507 92.24 +58.67 +84.5 +92.24 +12.1 +92.29 +24.1 +92.24 +12.12 +72.6 +72.6 +33.69 +92.7 +92.24 +31.102 +90.65 +23.88 +67.96 +92.1 +13.4 +92.24 +5.1 +92.24 +23.88 +92.24 +10.20 +92.7 +23.1 +83.13 +92.24 +1.86 +92.24 +5.22 +89.87 +23.99 +92.29 +13.4 +92.24 +5.1 +92.24 +90.16 +92.24 +1.11 +15.107 +89.59 +92.12 +90.16 +92.11 +23.1 +53557 69.3 +23.99 +92.1 +13.4 +92.24 +5.1 +92.24 +23.88 +92.24 +90.16 +92.24 +1.11 +15.107 +89.67 +92.12 +23.1 +90.16 +92.29 +92.24 +5.1 +23.88 +67.95 +92.24 +67.95 +89.94 +91.12 +92.24 +5.1 +92.27 +92.1 +57.71 +92.24 +8.4 8.63 +92.1 +13.1 +90.36 +92.24 +92.24 +9.23 +23.88 +89.50 +39.23 +90.33 +92.26 +92.24 +93.172 +33.69 +92.16 +74.5 +92.29 +92.4 +57.71 +92.24 +8.63 +23.1 +89.50 +33.69 +92.11 +92.24 +93.169a +72.6 +72.6 +33.69 +92.7 +53623 23.1 +92.24 +8.63 +92.24 +9.3 +92.24 +9.3 +89.92 +23.34 +92.11 +92.24 +8.64 +69.3 +90.65 +23.88 +83.13 +92.25 +92.24 +23.3 +92.1 +92.24 +8.63 +89.92 +23.34 +92.1 +92.24 +8.64 +90.65 +23.88 +67.96 +89.93 92.1 +23.94 +92.11 +92.24 +61.13 + +89.23 +92.24 +8.63 +92.1 +70.3 +5.1 +13.1 +89.92 +92.24 +8.64 +92.1 +70.3 +5.6 +13.1 +92.24 +23.3 +92.1 +92.24 +8.63 +89.92 +23.34 +92.1 +92.24 +8.64 +89.119 +92.1 +68.11 +89.92 92.1 +89.119 +92.11 +64.14 +15.66 +92.1 +92.24 +23.88 +12.12 +89.93 92.1 +23.88 +90.44 +92.24 +12.12 +89.93 +92.24 +23.3 +92.1 +89.93 92.30 +23.88 +90.44 +92.1 +92.29 +13.4 +92.24 +5.1 +92.24 +90.16 +1.11 +15.107 +69.3 +64.14 +23.1 +92.24 +10.20 +89.87 +23.99 +92.24 +23.3 +92.29 +92.24 +5.1 +23.88 +67.95 +92.24 +67.95 +92.29 +33.69 +83.13 +7.20 +33.224 +83.13 +93.498 +89.50 +59.1 +63.20 +92.24 +36.38 +92.11 +24.52 +33.69 +88.136 +13.1 +92.24 +33.98 +92.29 +92.14 +74.5 +92.11 +31.56 32.1 +89.124 +92.24 +93.169a +28.1 +90.56 +92.25 +90.21 +33.382 +90.24 +92.29 +92.24 +36.38 +92.11 +33.69 +92.11 +92.29 +92.7 +25.179 31.78 +53775 89.67 +24.14 +92.24 +9.3 +92.24 +9.3 +15.101 +83.5 +85.1 +92.24 +67.18 +92.24 +12.18 +13.4 +92.24 +23.92 +92.24 +26.7 +69.3 +35.2 +92.23 +92.24 +33.98 +92.27 +92.1 +33.70 +92.7 +12.18 12.33 +13.1 +89.92 +23.88 +13.1 +89.125 +13.69 +63.20 +92.7 +92.12 +92.27 +69.3 +31.102 +89.23 +28.1 +67.131 +67.65 +92.24 +93.169a +92.14 +13.4 +92.24 +69.3 +31.102 +89.92 +92.14 +13.4 +92.24 +37.111 +92.11 +89.87 +33.69 +53836 33.69 +92.7 +90.21 +92.23 +74.5 +53843 92.1 +53847 13.142 +92.11 +90.16 +92.24 +12.12 +67.131 89.25 +92.29 +59.1 +92.24 +36.38 +92.11 +36.36 +53860 92.24 +83.40 +89.87 +67.130 +89.108 +92.11 +15.227 +89.50 +33.69 +92.24 +93.169a +92.24 +60.21 +69.15 +89.93 +92.7 +25.1 +15.52 +33.184 +92.11 +93.341a +93.296 +12.9{N:001} +84.18 +92.14 +15.37 +33.98 +23.88 +67.96 +57.1 +89.93 +92.4 +31.102 +89.92 +28.1 +90.21 +92.6 +13.4 +92.24 +88.24 +92.24 +12.1 +33.28 +92.11 +92.24 +93.169a +69.11 +92.1 +92.7 +92.24 +60.21 +30.92 +91.12 +63.20 +92.7 +60.10 +12.37 88.124 +13.1 +53919 33.69 +92.24 +93.173a +93.341e +93.181 +89.23 +92.29 +67.62 +37.111 +92.11 +92.22 +63.20 +92.24 +60.21 +91.1 +67.48 +92.29 +15.227 +92.24 +93.169a +83.13 +92.24 +93.444a +89.23 +69.3 +25.1 +83.13 +92.24 +93.486a +15.227 +89.33 +68.60 +92.11 +20.61 +92.24 +93.172 +53956 13.1 +67.61 +92.24 +51.2 +92.24 +93.172 +92.24 +51.10 +53965 33.69 +90.58 +92.11 +92.24 +10.49 +92.11 +15.2 +84.9 +89.87 +15.15 +84.22 +92.24 +93.486a +89.59 +89.93 +92.24 +36.38 +92.6 +24.14 +92.24 +42.11 +92.6 +92.27 +90.45 +89.23 +92.23 +92.12 +28.71 +28.69 28.71 +42.7 +53996 25.9 +92.37 +28.29 +54000 13.1 +89.65 +92.29 +42.7 +28.36 +92.10 +92.24 +9.23 +89.23 +69.8 +92.24 +10.49 +92.11 +31.85 +90.23 +92.11 +89.50 +33.69 +92.11 +92.24 +93.169a +92.24 +22.45 +92.24 +92.2 +67.129 +85.23 +89.124 +92.24 +22.45 +92.24 +92.9 +67.88 +13.1 +77.2 +69.3 +74.5 +92.24 +9.23 +88.198 +92.7 +89.124 +92.1 +88.198 +89.33 +92.1 +33.262 +89.6 90.24 +92.11 +90.21 +92.24 +42.11 +92.11 +88.110 +13.1 +92.7 +15.101 +84.16 +92.24 +51.2 +92.1 +54062 15.101 +84.16 +92.24 +51.2 +92.29 +89.33 +92.24 +92.2 +22.45 +67.129 +13.106 +89.87 +92.29 +33.69 +54077 85.55 +83.13 +92.24 +93.444a +89.124 +67.45 +15.101 +92.24 +10.49 +92.11 +84.16 +92.24 +51.2 +67.47 +89.93 +92.11 +15.101 +69.3 +28.63 +89.125 +64.12 +28.71 +28.69 28.71 +54101 92.24 +93.172 +27.41 +92.11 +67.136 +92.24 +51.2 +89.93 +33.69 +83.6 +85.1 +92.30 +89.93 +33.382 +90.24 +92.11 +13.104 +59.11 +83.9 +92.24 +11.1 +89.136 +92.24 +33.69 +90.21 +88.1 +13.1 +89.136 +58.37 +33.69 +69.2 +89.125 +31.8 +92.24 +11.1 +89.130 +92.23 +54139 33.70 +90.24 +92.11 +89.26 +92.24 +25.251 +92.24 +93.172 +54148 67.20 +92.24 +51.2 +67.137 +15.101 +93.169a +84.22 +92.24 +7.16 +89.87 +33.224 +89.50 +25.213 +92.24 +93.172 +33.69 +92.16 +92.29 +27.21 +28.1 +69.3 +27.12 +89.50 +33.184 +92.11 +93.169a +89.92 +33.69 +92.24 +92.2 +33.236 +69.3 +13.1 +92.2 +89.125 +92.24 +15.66 +92.1 +89.67 +92.12 +30.58 +92.24 +25.2 +92.11 +90.45 +28.1 +90.24 +92.24 +33.236 +89.70 +90.16 +92.24 +12.1 +13.1 +89.139 +92.1 +90.15 +92.3 +33.70 +92.24 +90.15 +92.25 +33.70 +92.24 +87.4 +92.24 +57.4 +13.19 +89.124 +92.24 +13.19 +92.24 +87.4 +92.24 +15.66 +92.11 +92.29 +88.39 +13.1 +89.92 +88.21 +13.8 +92.11 +69.3 +13.69 +69.11 +93.266 +54236 92.7 +92.24 +33.55 +91.12 +92.23 +63.20 +92.7 +90.45 +92.24 +33.55 +92.15 +92.1 +20.61 +68.60 +33.184 +92.24 +11.1 +12.37 +90.65 +92.14 +92.6 +20.61 +25.9 +33.184 +93.169a +89.92 +33.69 +92.11 +60.10 +42.11 +90.45 +54268 59.23 +25.213 +54272 93.266 +54274 92.7 +92.24 +53.51 +90.21 +69.3 +90.16 +92.24 +93.266 +58.67 +89.125 +90.16 +92.24 +10.20 +54288 67.136 +67.184 +53.51 +9.24 +89.30 +53.51 +90.63 +9.24 +67.136 +67.184 +89.59 +69.3 +36.30 +92.24 +33.55 +93.266 +92.1 +88.171 +89.33 +59.29 +9.24 +23.129 +13.9 +67.136 +67.184 +69.3 +56.30 +89.8 +30.14 +89.125 +92.24 +88.12 +30.110 +54322 89.50 +33.69 +92.12 +63.20 +92.24 +93.481 +69.11 +92.29 +13.4 +92.27 +20.61 +68.60 +91.12 +91.13 +54337 33.70 +91.12 +92.23 +92.11 +33.69 +54344 70.3 +28.1 +92.24 +37.56 +90.21 +92.29 +13.4 +92.24 +53.82 +89.125 +92.29 +28.1 +84.6 +85.1 +89.124 +92.24 +53.82 +67.31 +15.81 +92.23 +28.1 +84.6 +85.1 +89.50 +33.83 +83.13 +92.24 +7.16 +33.224 +92.24 +93.169a +89.92 +33.69 +89.102 92.1 +28.1 +89.102 +28.1 +84.6 +85.1 +89.93 +90.19 +92.3 +69.3 +15.81 +89.125 +13.1 +72.1 +92.24 +15.66 +92.1 +92.27 +92.7 +69.3 +28.1 +92.1 +28.1 +92.11 +89.33 +90.14 +92.11 +58.67 +89.93 92.30 +92.1 +15.66 +89.50 +68.60 +92.11 +37.110 +54413 92.23 +37.110 +83.46 +92.11 +92.24 +37.110 +89.33 +67.129 +54422 92.24 +67.1 +92.11 +89.124 +63.20 +92.24 +11.1 +59.1 +31.102 +90.23 +92.11 +89.93 +33.69 +92.24 +53.82 +67.31 +15.81 +69.3 +59.1 +33.477 +90.45 +92.27 +92.29 +90.45 +24.52 +92.24 +11.49 +92.24 +11.1 +33.382 +90.24 +92.11 +92.29 +89.87 +15.66 +92.24 +53.88 +89.92 +92.24 +11.49 +35.20 +89.59 +37.110 +92.11 +54467 33.69 +92.24 +93.169a +67.128 +67.78 +67.106 +89.108 +92.7 +85.1 +89.87 +23.101 +84.18 +92.24 +15.66 +92.1 +27.41 +92.1 +91.12 +69.3 +27.27 +89.93 +83.5 +85.1 +92.1 +15.81 +92.7 +69.3 +74.5 +89.50 +33.69 +92.24 +93.172 +90.58 +92.26 +83.6 +15.18 +92.29 +67.62 +54506 92.4 +69.3 +27.27 +92.11 +69.15 +67.62 +84.16 +92.24 +15.137 +92.24 +11.40 +15.18 +89.87 +33.224 +92.24 +11.40 +92.14 +13.4 +92.24 +33.98 +92.29 +92.27 +33.69 +27.41 +92.1 +54532 69.3 +27.27 +89.93 +83.5 +85.1 +92.1 +15.81 +92.7 +69.3 +74.5 +54543 67.136 +92.24 +61.13 +67.178 +92.24 +87.22 +92.24 +51.2 +17.6 +92.24 +93.169a +89.87 +33.83 +33.69 +89.67 +92.12 +25.17 +54562 92.1 +89.92 +23.34 +92.24 +31.102 +90.23 +92.1 +64.14 +33.69 +92.24 +33.53 +1.76 +2.7 +23.88 +90.16 +92.24 +26.11 +92.11 +14.17 +89.124 +92.29 +33.69 +90.24 +92.24 +12.18 +54588 57.125 +67.62 +92.24 +31.102 +90.23 +92.11 +89.23 +67.129 +85.1 +12.18 +89.33 +93.169a +67.129 +87.24 +89.50 +63.20 +92.24 +11.1 +24.52 +92.24 +33.98 +92.29 +33.69 +92.29 +13.4 +70.3 +92.24 +53.79 +58.37 +33.69 +92.29 +13.4 +92.24 +53.82 +89.124 +92.24 +33.69 +91.1 +69.15 +84.4 +92.24 +93.444a +92.24 +53.82 +15.81 +69.11 +92.24 +33.53 +33.69 +90.21 +89.3 +92.24 +10.29 +93.91 +89.93 +54644 93.431 +92.24 +1.92 +83.5 +85.1 +93.91 +15.81 +92.24 +53.82 +89.50 +39.13 +13.107 +83.9 +92.24 +11.1 +90.44 +92.11 +89.94 +92.12 +63.20 +92.11 +25.1 +37.110 +92.11 +89.125 +92.23 +37.110 +54672 92.11 +92.24 +37.110 +89.50 +15.81 +92.24 +35.20 +84.18 +92.24 +53.88 +89.92 +11.49 +89.87 +33.69 +92.11 +92.30 +54690 69.3 +15.165 +92.11 +33.184 +92.24 +35.20 +67.10 +33.70 +61.9 +9.24 +54705 89.50 +33.28 +92.11 +92.24 +11.49 +69.15 +89.93 +92.7 +31.67 +69.15 +92.12 +63.20 +92.24 +37.56 +31.85 +90.23 +92.11 +89.139 +63.20 +92.24 +11.49 +89.125 +92.24 +87.64 +92.29 +92.24 +69.3 +32.16 +92.24 +33.56 +33.475 +13.1 +33.69 +90.58 +92.11 +93.281 +92.24 +15.81 +84.18 +92.11 +67.18 +13.1 +92.22 +63.20 +92.11 +69.15 +92.24 +33.55 +92.4 +56.30 +92.24 +9.1 +54759 56.13 +60.46 +90.14 +92.11 +89.93 +28.1 +92.14 +42.7 +33.184 +89.92 +33.69 +92.11 +69.15 +89.93 +92.6 +89.3 +92.24 +93.444a +85.1 +27.34 +89.92 +27.5 +90.21 +89.3 +92.24 +93.444a +53.79 +69.3 +13.83 +91.1 +54790 59.27 +84.16 +92.24 +7.2 +92.11 +89.124 +93.169a +15.34 +84.16 +92.24 +1.46 +92.24 +3.9 93.616 +89.87 +67.187 +67.55 +15.86 +84.22 +92.24 +7.16 +89.87 +59.23 +92.24 +11.1 +15.81 +84.18 +92.11 +89.87 +17.12 +33.224 +92.11 +54822 15.165 +92.24 +53.94 +89.92 +92.24 +11.49 +54830 9.34 +54832 88.276 +37.108 +89.87 +85.40 +92.11 +54838 83.10 +33.69 +92.11 +33.243 +92.29 +92.24 +9.34 +54847 88.276 +54849 83.13 +92.24 +33.55 +93.266 +92.4 +33.329 +92.24 +92.31 +54858 89.127 +92.6 +92.14 +33.69 +89.124 +92.29 +33.69 +27.31 +92.11 +89.59 +74.12 +33.427 +92.11 +89.124 +92.24 +93.169a +84.26 +17.29 +92.24 +8.34 +54879 83.47 +92.24 +2.14 +89.124 +67.139 +68.11 +33.180 +92.11 +54888 33.69 +54891 92.24 +88.311 +92.7 +60.46 +54896 2.24 +90.57 +92.11 +15.215 +89.87 +67.55 +54904 33.61 +83.47 +92.24 +2.14 +89.87 +92.24 +24.52 +54916 15.40 +54919 68.1 +54921 92.24 +67.102 +54926 89.87 +85.65 +58.51 +54931 89.92 +92.24 +9.34 +54935 83.10 +54937 89.87 +92.24 +93.169a +17.33 +54947 33.69 +92.11 +54951 83.6 +85.1 +54957 92.23 +92.6 +56.31 +89.87 +92.24 +33.69 +92.23 +12.9{N:001} 87.53 +89.87 +33.69 +54968 92.24 +93.169a +69.7 +92.1 +92.6 +56.31 +15.34 +54976 67.130 +88.289 +54979 67.55 +92.11 +33.70 +92.24 +93.169a +33.69 +92.1 +13.4 +92.24 +14.36 +92.24 +9.23 +92.24 +36.31 +54994 69.5 +69.5 +41.11 +13.8 +92.24 +88.125 +89.125 +90.65 +92.24 +14.36 +92.24 +23.88 +55007 33.69 +92.11 +92.24 +11.49 +92.6 +90.24 +92.10 +33.262 +92.24 +33.264 +92.6 +69.3 +13.1 +72.1 +33.184 +93.169a +89.92 +33.69 +92.11 +89.73 +92.1 +33.262 +90.24 +92.3 +72.1 +13.1 +92.24 +33.264 +92.1 +89.33 +28.1 +84.6 +15.81 +89.92 +83.6 +15.35 +89.124 +92.7 +69.3 +28.1 +84.6 +15.81 +89.139 +83.6 +15.35 +92.7 +89.8 +92.24 +26.7 +30.75 +92.1 +69.3 +30.75 +92.23 +89.124 +89.67 +55064 30.75 +92.1 +92.24 +30.110 +92.24 +92.2 +72.1 +13.1 +89.33 +58.51 +69.3 +13.1 +89.125 +92.1 +89.92 +92.24 +15.66 +92.1 +89.94 +55084 83.13 +92.24 +33.55 +92.24 +92.9 +33.54 +90.21 +60.11 +9.1 +92.24 +33.264 +72.1 +13.1 +92.1 +13.4 +92.24 +33.262 +90.24 +92.3 +89.92 +33.262 +90.24 +92.1 +92.24 +15.66 +92.1 +12.12 +89.50 +33.69 +92.11 +83.6 +85.1 +92.24 +10.14 +92.6 +33.184 +93.169a +69.9 +92.1 +28.1 +69.9 +92.24 +12.12 +92.1 +89.65 +92.1 +28.1 +71.14 +55133 92.24 +12.12 +92.1 +28.1 +92.29 +92.24 +33.98 +33.70 +83.13 +92.24 +6.141 7.33 +33.224 +83.13 +92.24 +7.16 +91.12 +92.23 +37.110 +92.11 +89.33 +67.129 +55155 92.24 +67.1 +92.11 +55159 33.69 +67.55 +92.11 +92.1 +23.101 +89.87 +27.41 +92.1 +55168 13.8 +92.24 +88.310 +92.7 +23.99 +83.5 +92.1 +15.35 +15.81 +92.7 +69.3 +74.5 +89.50 +33.69 +92.24 +93.172 +69.16 +20.61 +92.25 +89.33 +33.69 +83.5 +92.1 +23.101 +15.7 +92.7 +69.3 +74.5 +89.87 +33.69 +92.11 +92.7 +89.3 +92.24 +83.53 +58.67 +92.1 +89.3 +92.24 +83.48 +58.67 +92.7 +89.3 +92.29 +92.24 +41.38 +58.67 +92.1 +69.3 +58.67 +89.3 +92.24 +41.38 +92.29 +89.50 +33.69 +92.7 +90.21 +23.99 +13.8 +92.24 +88.310 +92.7 +89.23 +89.67 +69.3 +31.35 +90.21 +92.1 +13.4 +23.99 +13.8 +92.24 +88.310 +92.7 +89.50 +33.69 +92.11 +92.6 +92.14 +13.4 +33.69 +92.11 +92.24 +93.169a +55254 92.27 +92.24 +68.1 +55258 33.70 +92.7 +31.1 +59.1 +89.36 +92.7 +33.70 +89.92 +56.20 +89.125 +92.24 +15.66 +92.1 +88.39 +13.1 +92.27 +89.93 92.1 +24.52 +90.14 +92.11 +92.29 +33.70 +90.59 +92.24 +9.23 +69.3 +32.16 +90.21 +92.24 +12.12 +92.11 +33.69 +89.50 +33.69 +92.24 +93.169a +55295 81.5 +92.24 +9.3 +92.24 +9.3 +67.47 +32.16 +90.21 +92.1 +13.4 +89.93 +90.19 +92.3 +42.7 +92.23 +89.125 +64.14 +33.224 +92.1 +92.24 +12.12 +92.29 +33.70 +89.93 +92.24 +15.66 +92.1 +89.108 +92.1 +85.1 +69.3 +15.48 +92.1 +58.51 +89.33 +92.1 +92.24 +25.92 +92.11 +42.7 +67.88 +92.29 +92.11 +33.70 +59.1 +31.85 +90.23 +92.11 +89.50 +33.69 +92.24 +93.169a +90.58 +92.24 +31.85 +92.11 +93.172 +89.67 +92.7 +68.11 +90.23 +92.24 +33.98 +92.24 +92.2 +70.3 +36.38 +92.1 +58.67 +55365 28.1 +92.24 +72.2 +89.87 +92.24 +72.2 +37.135 +92.7 +33.184 +90.58 +92.11 +10.29 +93.7 +58.67 +89.92 +92.23 +87.79 +67.9 +92.16 +92.6 +33.69 +90.21 +87.84 +13.48 +33.184 +92.11 +92.24 +93.169a +72.6 +72.6 +33.69 +92.7 +90.21 +59.23 +92.24 +90.45 +92.24 +88.289 +13.4 +87.76 +92.24 +88.289 +89.124 +92.24 +87.76 +69.3 +85.55 +83.13 +92.24 +10.8 +67.95 +92.24 +67.95 +92.24 +10.42 +85.55 +67.95 +92.24 +67.95 +89.50 +89.67 +92.24 +12.15 +92.7 +37.135 +70.2 +37.134 +13.1 +28.1 +90.21 +10.29 +93.7 +58.67 +89.125 +68.60 +92.1 +20.61 +89.33 +92.24 +33.98 +92.24 +92.2 +69.3 +15.13 +89.119 +92.7 +92.27 +92.1 +24.1 32.11 90.79 +89.111 +92.24 +12.12 +33.70 +89.127 +89.93 +92.7 +92.27 +24.52 +90.14 +92.24 +36.8 +42.7 +33.184 +89.92 +33.69 +92.11 +92.24 +10.20 +92.4 +93.7 +13.4 +33.69 +92.11 +92.24 +93.169a +89.65 +10.28 +92.24 +93.7 +58.67 +92.24 +42.11 +92.24 +93.7 +55490 89.124 +67.38 +25.9 +20.61 +92.1 +9.24 +92.27 +92.24 +72.2 +92.7 +33.70 +92.27 +24.52 +90.14 +92.24 +12.1 +92.29 +93.7 +69.3 +90.45 +92.7 +42.7 +92.24 +42.11 +92.24 +36.8 +92.7 +33.69 +92.11 +92.4 +90.16 +88.271 +69.3 +55524 92.22 +12.12 +92.24 +12.1 +57.1 +33.69 +92.11 +92.24 +93.169a +89.65 +92.24 +12.1 +12.12 +92.7 +13.4 +71.14 +25.43 +92.1 +89.23 +92.1 +89.3 +92.24 +12.1 +15.40 +89.92 +15.84 85.10 +89.23 +69.7 +90.19 +92.3 +15.81 +89.125 +92.30 +92.1 +15.66 +55561 92.24 +33.101 +92.24 +92.2 +69.3 +32.16 +89.33 +69.3 +74.5 +32.1 +92.24 +33.98 +92.24 +92.2 +92.7 +89.3 +92.24 +36.8 +92.24 +12.34 +13.1 +55583 92.24 +25.20 +92.24 +36.8 +92.7 +42.7 +25.1 +92.30 +20.85 +13.1 +67.131 +67.65 +89.93 +13.8 +92.24 +72.2 +69.3 +13.29 +89.33 +69.3 +13.1 +72.2 +83.13 +92.11 +67.36 +33.70 +92.24 +33.254 +90.16 +92.24 +57.4 +33.70 +89.33 +33.255 +13.1 +89.93 +92.24 +58.64 +92.11 +89.124 +92.1 +89.33 +92.24 +72.2 +33.69 +69.3 +31.85 +92.1 +92.14 +63.20 +92.7 +33.417 +92.1 +89.6 +88.310 +89.65 +72.2 +33.69 +55643 92.7 +69.3 +31.85 +92.1 +92.24 +58.67 +89.3 +92.24 +12.1 +92.24 +33.98 +92.24 +12.1 +24.52 +55659 92.7 +69.3 +24.52 +89.33 +89.3 +92.24 +12.1 +69.3 +58.67 +33.184 +92.24 +93.172 +89.92 +33.69 +92.11 +69.3 +72.12 +33.69 +92.4 +90.21 +93.569 +58.67 +92.6 +89.93 +12.37 +90.65 +33.184 +93.169a +92.1 +12.37 +69.3 +90.65 +89.125 +87.8 +92.24 +12.12 +92.1 +55697 92.7 +88.127 +92.1 +89.124 +92.1 +69.3 +13.19 +92.24 +87.4 +92.1 +13.69 +92.24 +25.9 +89.92 +56.20 +72.6 +72.6 +33.69 +92.7 +89.67 +92.12 +92.24 +92.2 +33.98 +36.19 +23.99 +69.5 +69.5 +90.79 +67.95 +92.24 +67.95 +33.69 +92.11 +92.24 +93.172 +67.38 +28.1 +90.21 +12.37 +90.65 +93.7 +23.99 +89.87 +92.24 +53.79 +55744 92.6 +33.69 +89.67 +92.12 +92.24 +33.98 +92.1 +36.19 +69.5 +69.5 +90.78 +23.99 +67.95 +92.24 +67.95 +69.15 +92.6 +87.22 +13.1 +92.24 +10.20 +92.4 +93.7 +55768 23.99 +89.93 +92.24 +53.79 +23.99 +92.14 +92.10 +13.9 +33.184 +93.169a +89.67 +92.1 +87.8 +92.3 +92.24 +87.4 +92.1 +92.23 +13.1 +13.1 +92.24 +12.12 +92.1 +92.24 +87.8 +92.1 +92.27 +92.7 +33.69 +90.21 +12.1 +92.4 +13.4 +91.12 +69.3 +27.18 +92.11 +89.124 +92.1 +28.1 +92.11 +89.73 +33.69 +90.21 +69.3 +28.1 +92.11 +13.1 +64.1 +92.7 +33.255 +89.125 +28.1 +92.11 +89.93 +92.24 +33.98 +92.11 +36.19 +93.7 +92.24 +10.20 +92.7 +25.133 +90.22 +90.79 +92.24 +67.142 +92.24 +92.2 +89.102 +27.5 +89.102 +25.125 +55843 33.69 +92.24 +93.172 +90.58 +92.11 +60.28 +67.167 +67.129 +90.65 +91.12 +93.7 +24.1 +33.69 +92.11 +93.169a +72.6 +72.6 +33.69 +92.7 +67.17 +93.7 +13.80 +92.1 +13.69 +89.50 +15.203 +2.24 +89.59 +15.215 +84.17 +92.11 +89.124 +93.169a +21.12 +89.87 +15.40 +84.4 +92.24 +7.16 +91.1 +15.15 +24.1 +9.24 +24.38 +67.131 +23.46 +89.87 +33.180 +92.11 +92.24 +36.38 +92.11 +33.69 +33.246 +92.14 +88.289 +92.29 +89.139 +92.24 +10.18 +92.11 +89.49 +24.38 +23.52 +33.184 +93.169a +69.9 +92.29 +88.289 +69.9 +92.24 +10.18 +92.11 +89.125 +89.59 +28.36 +92.24 +42.11 +92.24 +12.1 +90.56 +92.11 +71.34 +92.4 +90.47 +92.24 +42.11 +92.24 +15.66 +92.1 +67.139 +67.186 +13.104 +55937 14.59 +55939 92.23 +74.5 +42.41 +67.139 +83.13 +92.24 +9.23 +85.1 +13.4 +14.36 +92.24 +9.23 +92.29 +33.69 +23.43 +1.45 +89.87 +42.29 +2.18 +89.142 +92.24 +8.71 +89.87 +55963 92.11 +92.24 +2.18 +83.46 +92.24 +8.23 +89.87 +33.69 +92.11 +15.35 +47.9 +83.13 +92.24 +7.58 +92.24 +93.580 +92.27 +33.145 +15.66 +89.50 +15.37 +89.87 +47.9 +89.87 +15.81 +24.41 +89.50 +92.24 +11.89 +89.92 +92.24 +24.14 +92.11 +92.24 +67.18 +90.21 +33.174 +13.1 +33.69 +69.11 +92.29 +13.4 +92.24 +17.12 +89.92 +33.173 +58.37 +33.69 +90.21 +92.29 +13.4 +58.37 +33.69 +69.4 +89.125 +64.1 +92.11 +13.1 +92.30 +33.69 +90.21 +92.1 +13.4 +89.50 +33.69 +92.11 +89.50 +92.16 +24.43 +92.6 +92.24 +8.23 +33.184 +92.30 +92.24 +9.24 +92.24 +33.129 +93.169a +2.18 +42.29 +89.87 +47.15 +92.1 +92.24 +8.23 +89.87 +33.69 +92.1 +90.21 +15.35 +84.16 +92.24 +93.580 +89.87 +47.9 +89.50 +15.37 +89.87 +47.9 +24.42 +89.87 +33.69 +92.11 +83.6 +85.1 +92.30 +33.69 +69.3 +28.1 +15.165 +92.11 +92.24 +67.9 +24.38 +84.18 +92.24 +11.49 +56082 13.1 +67.184 +67.33 +92.27 +67.178 +92.24 +2.18 +42.29 +92.24 +93.169a +89.93 +24.43 +92.11 +92.24 +8.23 +89.50 +67.55 +33.180 +92.11 +89.93 +92.24 +11.49 +92.16 +24.42 +89.87 +92.24 +33.69 +92.11 +2.18 +85.51 +83.46 +92.1 +92.24 +8.23 +89.87 +47.9 +56119 24.41 +56121 33.69 +63.20 +92.24 +11.49 +92.12 +69.3 +58.67 +90.14 +12.1 +92.29 +92.24 +9.24 +89.33 +92.24 +67.184 +69.3 +36.19 +58.37 +33.69 +92.16 +74.5 +9.24 +88.294 +64.2 +33.477 +90.45 +56148 39.13 +13.69 +83.9 +92.11 +89.50 +33.69 +92.24 +24.38 +67.55 +92.14 +92.6 +33.69 +90.24 +92.11 +89.33 +24.43 +92.6 +92.24 +8.23 +56168 92.24 +33.69 +90.21 +53.79 +13.1 +89.127 +69.3 +31.35 +92.24 +93.172 +90.24 +92.11 +90.21 +13.1 +24.38 +89.87 +24.42 +67.119 +56187 33.307 +92.24 +10.18 +92.11 +92.24 +24.42 +89.87 +33.180 +92.11 +33.69 +92.29 +13.4 +92.24 +10.42 +92.7 +92.27 +92.7 +33.69 +90.21 +24.38 +23.52 +89.50 +92.16 +24.41 +67.38 +89.50 +33.184 +92.24 +10.18 +92.11 +89.92 +33.69 +28.1 +90.21 +92.29 +13.4 +92.24 +10.42 +92.4 +89.92 +90.21 +24.38 +23.52 +89.124 +92.16 +67.38 +24.41 +69.3 +28.1 +89.139 +92.14 +24.43 +92.11 +92.24 +8.23 +92.4 +69.3 +28.1 +92.11 +33.180 +67.156 +90.65 +92.11 +90.24 +92.25 +33.70 +92.29 +33.69 +92.24 +10.18 +92.11 +89.33 +25.252 +92.24 +93.172 +89.23 +67.20 +31.18 +92.24 +93.172 +90.22 +89.67 +92.12 +92.11 +33.274 +53.82 +11.46 +13.48 +56277 92.24 +10.18 +92.11 +33.69 +90.21 +67.156 +90.65 +92.11 +56.14 +89.50 +33.307 +92.24 +9.24 +67.33 +60.49 +92.27 +13.1 +24.38 +89.87 +33.69 +92.11 +33.468 +33.357 +92.24 +12.1 +92.4 +28.1 +90.21 +92.29 +92.24 +9.24 +88.295 +13.1 +89.50 +33.28 +92.30 +90.26 +88.295 +13.1 +69.3 +28.1 +60.10 +28.1 +90.21 +24.38 +13.1 +67.38 +24.41 +89.50 +33.69 +92.11 +92.14 +42.7 +92.6 +92.16 +24.43 +92.6 +92.24 +8.23 +33.184 +92.11 +33.69 +92.7 +67.20 +91.12 +69.3 +31.56 +92.15 +67.55 +25.1 +24.52 +69.15 +89.93 +92.7 +25.1 +92.11 +36.38 +13.48 +56356 33.393 +92.11 +56359 33.69 +92.6 +36.38 +92.30 +13.4 +89.124 +92.4 +92.24 +93.266 +36.38 +13.4 +92.4 +28.1 +90.21 +93.266 +33.70 +92.24 +12.1 +89.124 +92.29 +69.3 +28.1 +84.6 +85.1 +33.28 +92.24 +9.24 +89.92 +33.69 +92.11 +91.1 +90.23 +92.29 +92.24 +25.215 +13.1 +90.21 +92.7 +69.3 +28.1 +84.6 +85.1 +91.12 +24.43 +92.1 +92.24 +8.23 +28.1 +90.21 +92.24 +12.1 +88.295 +69.3 +31.56 +89.125 +89.67 +92.12 +53.6 +13.1 +89.93 +92.24 +25.2 +92.11 +42.7 +92.29 +31.56 +67.133 +92.24 +67.133 +69.3 +33.212 +90.21 +24.43 +92.12 +8.23 +24.38 +23.52 +89.65 +69.3 +13.1 +92.29 +90.14 +12.1 +69.3 +74.5 +42.7 +92.23 +33.28 +89.92 +33.69 +92.11 +13.8 +88.118 +92.6 +23.52 +78.44 +91.12 +92.6 +33.224 +92.4 +56460 15.44 +92.11 +84.27 +33.212 +93.169a +90.21 +15.44 +92.11 +84.27 +56470 27.27 +92.11 +33.69 +92.6 +31.102 +90.23 +92.24 +9.3 +92.24 +9.3 +33.184 +92.30 +89.92 +33.69 +91.1 +92.14 +13.4 +87.53 +89.59 +31.102 +90.23 +92.11 +33.69 +92.11 +92.24 +93.169a +89.102 +24.1 +92.11 +89.102 +92.24 +33.70 +89.108 +92.6 +92.30 +13.4 +56507 92.24 +33.69 +31.102 +12.9{N:001} +89.87 +17.21 +92.11 +91.1 +33.69 +92.24 +93.169a +89.57 +56.20 +92.1 +84.22 +92.24 +41.38 +92.29 +15.81 +89.59 +92.24 +69.3 +32.11 +32.11 +89.92 +92.24 +32.11 +32.42 +13.48 +24.52 +92.29 +63.20 +92.24 +11.49 +92.24 +89.108 +92.11 +85.1 +56546 33.69 +92.11 +69.15 +89.93 +92.4 +32.42 +13.1 +33.69 +92.11 +92.24 +93.169a +89.65 +24.38 +13.1 +71.14 +69.3 +90.65 +88.310 +89.124 +67.38 +33.69 +90.21 +32.11 +92.24 +88.310 +92.7 +13.89 +72.6 +72.6 +33.69 +92.7 +92.24 +69.3 +15.93 +84.29 +92.24 +7.39 +84.22 +92.24 +7.56 +92.24 +4.22 +89.125 +15.101 +84.8 +92.30 +57.233 +58.67 +89.92 +57.240 +89.124 +92.24 +15.93 +84.29 +92.24 +7.39 +13.4 +44.4 +92.24 +4.22 +92.29 +92.24 +46.8 +79.110 +89.87 +92.24 +4.22 +92.24 +33.103 +92.11 +24.52 +89.87 +92.24 +10.12 +4.22 +33.307 +89.8 +33.126 +89.87 +15.174 +92.11 +67.36 +92.24 +10.12 +59.23 +15.174 +83.33 +92.11 +15.10 +56636 92.24 +4.22 +92.11 +15.144 +89.33 +28.1 +92.24 +33.103 +92.11 +89.124 +11.74 +69.5 +69.5 +15.156 +89.125 +15.61 +89.122 +92.11 +89.33 +69.3 +28.1 +92.24 +11.74 +92.24 +33.103 +92.29 +92.24 +33.15 +33.69 +92.11 +92.24 +93.169a +89.124 +92.30 +69.3 +32.16 +92.14 +58.68 +92.27 +33.70 +92.11 +56678 33.69 +89.97 +92.24 +93.169a +72.6 +72.6 +33.69 +92.7 +90.21 +92.1 +13.4 +92.24 +7.39 +92.24 +11.30 +59.23 +59.7 +15.81 +67.17 +92.1 +57.233 +58.67 +89.92 +57.240 +89.125 +69.3 +31.56 +92.11 +92.24 +11.30 +92.1 +13.4 +92.24 +7.39 +89.67 +90.4 +92.1 +92.12 +15.93 +21.27 +89.87 +15.93 +89.92 +15.40 +89.93 +1.98 +27.27 +92.24 +57.233 +69.3 +15.81 +89.131 +56731 89.59 +57.232 +89.92 +20.72 +89.92 +20.31 +92.1 +15.81 +89.59 +23.88 +90.65 +89.93 +59.51 +90.65 +92.1 +13.4 +92.24 +53.72 +92.24 +88.4 +92.24 +53.72 +92.24 +88.4 +92.24 +23.113 +92.11 +23.113 +90.36 +92.24 +11.30 +92.24 +57.174 +89.93 +69.3 +58.67 +53.72 +92.27 +69.3 +58.67 +92.24 +11.30 +57.4 +24.14 +92.24 +4.11 +15.81 +56779 85.45 +92.24 +11.30 +89.93 +15.61 +56785 92.24 +4.11 +39.49 +92.11 +89.87 +15.135 +89.33 +57.174 +58.67 +56795 69.3 +25.223 +92.11 +90.24 +92.24 +11.30 +92.1 +13.4 +92.24 +53.72 +92.24 +88.4 +89.93 +27.18 +92.24 +92.2 +89.92 +27.18 +92.1 +92.24 +92.2 +64.14 +27.18 +92.1 +92.24 +12.12 +89.93 92.1 +27.18 +92.24 +12.12 +89.93 +92.24 +23.113 +92.1 +23.113 +90.36 +92.24 +11.30 +89.93 +58.37 +11.30 +57.1 +92.27 +69.3 +58.67 +89.3 +92.24 +7.56 +92.29 +89.93 92.30 +92.1 +15.165 +71.34 +89.93 +92.24 +33.103 +92.1 +36.14 +56855 63.4 +11.31 +60.10 +53.72 +56861 92.1 +92.24 +12.12 +25.43 +89.33 +92.1 +23.113 +92.24 +23.113 +92.1 +89.59 +67.55 +57.55 +92.11 +92.23 +56877 92.11 +56879 92.1 +89.125 +92.1 +23.113 +92.11 +90.19 +92.3 +30.122 +56888 23.113 +92.11 +89.93 +30.122 +56893 67.55 +57.55 +92.11 +92.29 +92.24 +33.330 +57.125 +90.14 +92.24 +12.12 +92.1 +39.13 +67.55 +91.5 +83.9 +92.24 +93.172 +89.26 +92.24 +33.98 +92.29 +56915 33.69 +59.1 +63.20 +92.11 +12.37 +56921 89.92 +30.24 +92.15 +92.11 +31.56 +58.37 +33.69 +92.29 +92.24 +33.98 +69.3 +13.1 +12.41 +69.15 +12.37 +74.5 +24.38 +8.23 +24.43 +13.107 +67.47 +92.24 +51.9 +83.13 +92.24 +93.480a +67.165 +13.104 +89.93 +15.227 +92.24 +93.169a +83.13 +92.24 +7.16 +83.13 +92.24 +7.40 +92.24 +93.344 +89.50 +15.147 +92.11 +92.24 +93.172 +89.87 +33.69 +92.11 +67.119 +67.30 +92.24 +9.20 +92.4 +30.36 +89.65 +92.6 +13.4 +92.24 +53.82 +33.69 +92.4 +56983 33.184 +92.11 +92.24 +93.169a +33.69 +92.7 +56990 69.3 +31.35 +92.24 +42.11 +92.27 +92.1 +42.7 +90.23 +92.24 +33.126 +92.24 +12.12 +92.1 +92.29 +33.262 +90.24 +92.1 +89.125 +92.7 +69.3 +31.102 31.35 +89.33 +69.3 +58.67 +63.20 +92.24 +11.30 +92.24 +92.2 +92.24 +11.30 +92.24 +92.2 +92.24 +33.103 +92.1 +36.14 +89.93 92.1 +27.18 +92.11 +89.93 +36.31 +92.1 +89.92 92.1 +57035 92.11 +23.88 +67.96 +57039 69.5 +69.5 +21.32 +67.95 +92.24 +67.95 +89.93 +69.3 +37.28 +92.12 +92.11 +84.4 +92.24 +37.14 +92.1 +92.24 +12.12 +92.1 +92.27 +57.71 +92.1 +59.23 +87.22 +13.1 +57064 92.23 +74.5 +37.28 +84.4 +92.24 +37.14 +92.24 +12.12 +92.1 +89.92 +92.24 +12.12 +63.4 +13.1 +15.201 +67.55 +2.24 +92.24 +93.172 +89.59 +20.79 +92.11 +33.184 +92.11 +92.24 +93.169a +59.1 +42.11 +88.4 +28.47 +92.7 +90.16 +92.24 +12.12 +89.26 +92.36 +92.11 +42.11 +92.1 +20.79 +33.184 +92.11 +92.24 +93.172 +89.36 +88.4 +42.11 +69.3 +20.79 +92.6 +89.125 +89.36 +33.400 +57118 89.33 +92.6 +9.1 +13.1 +13.9 +92.10 +12.1 +33.28 +92.11 +92.24 +93.169a +69.11 +57131 33.54 +90.23 +92.24 +33.56 +92.7 +90.21 +92.1 +33.69 +12.22 +13.1 +89.65 +92.30 +33.131 +12.22 +84.18 +92.27 +92.24 +33.260 +92.24 +12.1 +15.1 +89.93 +69.3 +74.5 +13.100 +92.24 +33.53 +92.27 +92.24 +12.12 +53.44 88.26 +89.87 89.92 +15.66 +84.22 +92.24 +9.23 +92.7 +33.69 +90.21 +33.400 +89.33 +33.69 +12.15 +92.24 +12.15 +13.4 +89.65 +69.3 +42.7 +92.24 +42.11 +92.24 +12.12 +92.1 +69.3 +31.85 +92.1 +89.124 +89.65 +42.7 +89.73 +92.1 +69.3 +31.85 +92.24 +42.11 +31.85 +89.59 +28.1 +89.87 +28.1 +90.21 +89.119 +92.1 +92.24 +12.12 +89.92 92.1 +89.119 +92.24 +12.12 +89.50 +27.41 +92.11 +37.110 +67.55 +57217 15.40 +84.4 +92.24 +37.14 +92.11 +89.87 +15.37 +67.55 +83.43 +92.24 +93.485 +84.16 +92.24 +80.1 +83.5 +85.1 +53.41 +93.190a +92.24 +60.46 +89.87 +57239 83.2 +89.93 +59.1 +15.81 +84.18 +92.11 +89.93 +33.69 +90.21 +89.136 +93.190a +33.477 +92.23 +90.45 +89.136 +59.23 +59.7 +33.69 +93.190a +89.6 +92.29 +72.1 +13.1 +57263 59.1 +31.102 +90.23 +92.11 +83.2 +57269 13.69 +92.12 +23.144 +93.225a +90.15 +93.427a +90.16 +92.24 +1.92 +93.253b +89.92 +93.252 +92.24 +10.50 +92.11 +57285 13.4 +93.253b +92.24 +47.14 +92.24 +12.9{N:001} +6.205 +89.92 +79.83 +92.24 +8.49 +92.11 +92.24 +8.12 +92.11 +92.27 +92.24 +10.49 +93.225a +23.144 +89.50 +15.67 +92.24 +10.50 +84.18 +92.11 +33.69 +12.9{N:001} +91.13 +92.27 +25.33 +23.144 +89.87 +33.212 +92.24 +93.169a +33.69 +92.29 +92.24 +23.143 +69.3 +13.1 +89.44 +23.99 +89.125 +90.36 +92.24 +87.4 +92.24 +12.1 +89.59 +87.24 +92.24 +12.15 +92.24 +12.15 +89.76 +92.11 +57344 25.43 +92.24 +93.169a +92.24 +93.252 +89.92 +92.24 +10.50 +92.11 +89.92 +92.24 +93.225a +89.50 +67.45 +33.212 +90.21 +23.144 +91.6 +67.47 +85.55 +83.13 +92.27 +85.1 +80.1 +60.11 +67.186 +67.44 +67.48 +92.29 +33.69 +92.24 +36.38 +15.34 +84.16 +92.24 +93.486a +67.55 +33.69 +92.11 +92.24 +36.38 +33.246 +67.39 +68.60 +92.6 +20.79 +92.24 +93.172 +91.12 +67.55 +15.15 +83.2 +33.184 +93.169a +69.12 +60.21 +67.199 +13.69 +92.24 +67.186 +89.67 +92.12 +15.227 +67.136 +92.24 +14.40 +69.3 +15.228 +89.33 +92.24 +14.36 +92.24 +1.39 +92.29 +24.7 +89.124 +89.67 +92.12 +15.227 +67.136 +92.24 +67.192 +15.228 +89.33 +92.24 +14.36 +69.3 +13.1 +89.119 +92.11 +92.29 +33.69 +89.87 +67.48 +92.29 +33.69 +92.11 +93.225a +92.24 +34.11 +92.4 +23.104 +89.125 +15.18 +89.59 +23.77 +92.11 +89.50 +33.69 +92.24 +36.38 +92.11 +12.9{N:001} +89.65 +23.66 +23.136 +89.124 +33.69 +92.24 +93.169a +90.24 +92.24 +23.99 +92.11 +89.124 +92.30 +31.29 +90.21 +90.24 +92.24 +23.66 +92.24 +23.66 +33.69 +89.50 +67.47 +33.69 +92.11 +92.24 +93.169a +57485 93.225a +23.99 +89.93 +25.125 +90.38 +92.7 +89.59 +31.102 +90.21 +69.3 +85.1 +83.2 +89.125 +15.34 +84.18 +92.11 +89.50 +33.69 +93.155 +92.24 +33.129 +93.95 +92.24 +36.42 +15.34 +89.93 +92.4 +89.59 +23.117 +89.108 +92.11 +89.50 +15.81 +92.24 +93.169a +27.1 +92.11 +60.13 +67.186 +67.20 +90.65 +83.13 +92.24 +7.75 +57530 85.1 +93.427a +83.26 +92.24 +93.480a +78.42 +84.3 +81.27 +60.23 +89.94 +59.1 +63.20 +92.24 +93.172 +15.81 +84.18 +92.24 +93.252 +89.92 +93.253b +89.59 +25.153 +92.11 +90.24 +92.24 +10.49 +89.50 +67.45 +33.212 +90.21 +93.169a +15.81 +92.24 +93.252 +15.78 +92.11 +89.124 +93.253b +83.13 +92.24 +7.2 +17.12 +89.50 +33.69 +92.24 +93.252 +90.58 +93.169a +12.9{N:001} +89.65 +85.1 +83.1 +71.14 +69.3 +23.99 +92.24 +10.49 +92.1 +57589 67.38 +28.1 +90.21 +71.8 +59.19 59.7 +33.163 +92.24 +12.1 +57.71 +92.6 +92.24 +12.1 +33.69 +92.11 +92.24 +93.169a +23.93 +92.24 +10.49 +92.6 +33.69 +92.11 +92.24 +93.252 +32.4 +90.21 +23.93 +67.136 +92.24 +23.93 +67.33 +92.24 +61.13 + +33.69 +92.11 +92.24 +93.169a +92.1 +13.4 +92.24 +23.93 +89.92 +92.24 +23.88 +92.24 +31.85 +90.23 +92.1 +89.73 +23.99 +23.93 +89.93 +59.23 +92.24 +23.88 +89.92 +31.102 +90.23 +92.1 +69.5 +69.5 +23.99 +67.95 +92.24 +67.95 +31.102 +92.29 +33.69 +92.11 +69.1 +12.9{N:001} +92.1 +31.102 +90.21 +92.6 +13.4 +92.24 +53.82 +92.24 +12.15 +92.24 +12.15 +92.24 +84.22 +92.24 +1.39 +15.81 +89.87 +92.29 +33.69 +15.37 +89.87 +33.307 +93.253b +92.24 +10.50 +92.11 +28.71 +33.69 +92.24 +33.243 +85.23 +89.93 +33.307 +92.6 +89.87 +92.30 +67.45 +33.212 +57700 67.110 +89.87 +15.81 +84.18 +92.11 +57706 67.129 +15.81 +92.24 +93.169a +84.22 +92.24 +1.92 +89.125 +85.1 +67.128 +83.13 +92.24 +80.1 +83.5 +15.78 +92.11 +92.24 +93.252 +89.50 +92.24 +93.172 +92.24 +85.1 +89.108 +92.11 +83.13 +92.24 +7.3 +89.92 +25.153 +92.11 +24.1 +92.24 +93.253b +90.21 +67.110 +17.6 +89.87 +15.40 +15.156 +92.11 +31.29 +90.21 +15.35 +84.16 +92.24 +7.75 +89.59 +25.138 +83.2 +57757 92.24 +93.253b +67.45 +15.81 +83.5 +85.1 +93.169a +24.1 +92.11 +17.22 +83.24 +83.3 92.11 +92.24 +8.49 +33.69 +92.11 +12.9{N:001} +89.65 +85.1 +83.1 +71.14 +69.3 +23.99 +92.1 +92.24 +10.49 +89.50 +93.169a +67.45 +24.1 +92.11 +25.138 +89.92 +92.24 +15.148 +92.11 +93.172 +25.138 +25.56 +92.24 +26.9 +89.92 +25.244 +92.25 +89.87 +33.69 +83.6 +85.32 +92.11 +33.69 +92.11 +12.9{N:001} 87.53 +15.81 +89.92 +24.1 +25.137 +92.24 +93.169a +89.50 +33.69 +92.24 +93.172 +91.13 +92.16 +25.33 +92.11 +89.124 +92.12 +63.20 +92.11 +33.69 +69.11 +74.5 +92.29 +92.24 +24.43 +92.24 +8.23 +92.24 +24.38 +13.9 +90.22 +89.93 +92.29 +69.3 +23.99 +89.50 +93.169a +67.55 +25.56 +90.56 +92.25 +15.81 +84.16 +92.24 +7.75 +57854 13.4 +1.57 +89.92 + +85.4 +83.46 +92.11 +33.69 +92.24 +93.169a +15.203 +92.24 + +33.69 +92.11 +92.24 +10.50 +92.24 +23.102 +93.252 +12.9{N:001} +67.20 +79.47 +89.23 +67.181 +13.104 +33.69 +92.11 +92.24 +93.169a +69.11 +33.69 +92.6 +90.21 +89.67 +31.102 +24.1 +92.24 +79.18 +92.24 +12.1 +89.50 +15.203 +92.24 + +89.87 +92.24 +93.169a +15.203 +92.24 +8.23 +84.25 +89.87 +33.69 +12.12 +33.349 +92.6 +89.33 +31.56 +92.1 +89.94 +92.1 +28.1 +90.21 +67.88 +92.1 +31.56 +89.125 +90.38 +92.24 +11.1 +92.24 +17.4 +33.69 +89.59 +31.35 +90.21 +92.6 +92.1 +15.66 +89.87 +92.29 +33.69 +33.103 +78.2 +33.83 +93.225a +84.24 +83.20 +15.40 +92.24 +23.99 +18.13 +92.24 +8.49 +89.92 +92.24 +8.30 +6.156 +89.92 +92.24 +8.18 +92.11 +6.159 +18.14 +33.69 +92.11 +92.24 +93.169a +18.18 +92.11 +89.92 +13.140 +92.11 +15.35 +89.50 +59.1 +63.20 +92.24 +93.172 +92.24 +15.81 +84.18 +92.24 +93.253b +89.87 +24.14 +92.27 +42.7 +31.85 +90.23 +92.11 +89.124 +92.12 +63.20 +92.11 +15.37 +84.18 +92.24 +11.49 +89.87 +33.69 +92.11 +92.27 +42.7 +93.169a +89.50 +15.125 +92.24 +53.88 +89.92 +92.24 +11.49 +11.80 +89.87 +33.69 +92.14 +42.7 +89.33 +92.29 +92.24 +9.24 +59.1 +33.477 +90.45 +89.67 +13.140 +92.11 +61.9 +59.23 +31.85 +90.23 +92.11 +89.87 +15.81 +92.24 +93.562 +89.87 +20.43 +92.4 +89.102 +92.24 +80.1 +89.102 +92.24 +11.55 +89.124 +92.22 +92.12 +63.20 +92.11 +93.205 +53.89 +13.4 +92.24 +67.168 +92.30 +33.69 +92.11 +92.7 +69.3 +32.4 +92.23 +69.7 +30.9 +90.21 +65.44 +92.7 +91.15 +60.10 +9.1 +23.99 +90.36 +92.24 +11.55 +58070 69.3 +63.1 +92.24 +11.55 +20.31 +58076 92.29 +90.15 +92.25 +69.3 +33.69 +89.125 +53.89 +13.4 +92.24 +67.168 +92.30 +33.459 +90.21 +67.62 +93.169a +23.99 +90.36 +92.24 +11.55 +89.93 +69.3 +90.36 +92.24 +11.55 +58101 89.125 +89.59 +89.93 +92.24 +58.26 +92.24 +12.1 +92.24 +15.136 +15.125 +13.62 +63.4 +89.50 +67.131 +92.30 +92.24 +67.186 +30.56 +90.22 +20.61 +92.11 +89.50 +92.24 +93.169a +67.130 +58127 15.227 +83.9 +92.24 +93.172 +89.125 +15.37 +84.10 +84.22 +92.24 +1.87 +83.26 +92.24 +1.86 +84.22 +93.472 +33.129 +1.88 + +85.55 +89.108 +92.24 +36.38 +58150 13.104 +67.61 +92.24 +51.6 +92.24 +93.172 +58157 15.101 +59.1 +84.16 +93.480a +84.4 +92.24 +1.79 +67.17 +92.24 +51.6 +89.59 +53.30 +92.25 +89.50 +27.41 +92.24 +93.169a +89.93 +33.69 +89.108 +92.26 +83.13 +92.24 +7.16 +85.8 +92.14 +31.30 +92.7 +90.21 +69.13 +58188 15.81 +84.16 +92.24 +51.2 +58193 90.51 +92.24 +53.88 +89.92 +92.24 +11.49 +33.330 +90.22 +89.67 +92.12 +28.1 +83.6 +85.1 +33.209 +89.59 +37.110 +92.11 +89.50 +92.24 +93.169a +67.17 +60.15 +67.178 +92.24 +51.6 +15.7 +84.22 +93.427a +83.5 +85.1 +93.225a +92.27 +23.94 +89.121 +23.121 +93.169a +89.50 +42.29 +92.11 +23.25 +83.2 +89.92 +92.24 +93.252 +46.13 +89.94 +92.24 +93.225a +13.1 +92.22 +63.20 +92.24 +17.23 +89.107 +92.11 +89.50 +92.24 +93.253b +18.1 +86.4 +6.205 +6.210 +79.97 +65.3 +47.14 +92.24 +8.49 +92.24 +93.169a +89.87 +79.83 +92.24 +8.12 +92.11 +92.24 +8.49 +92.11 +89.87 +92.24 +7.3 +59.37 +89.142 +92.24 +79.45 +92.24 +6.205 +89.124 +33.69 +93.173a +92.24 +93.181 +92.22 +92.24 +36.38 +92.11 +92.24 +67.62 +92.11 +37.111 +58294 92.29 +92.24 +6.205 +69.3 +57.186 +60.35 +6.75 +89.87 +57.71 +57.53 +89.124 +33.69 +92.29 +69.3 +89.33 +90.39 +92.24 +57.53 +30.39 +92.11 +89.125 +89.33 +57.233 +58.67 +89.92 +92.24 +6.143 +57.1 +92.24 +85.34 +15.201 +89.50 +33.69 +92.24 +93.169a +13.140 +92.11 +89.59 +67.117 +92.24 +67.186 +92.24 +52.6 +92.1 +13.32 +92.11 +89.23 +92.24 +57.53 +67.88 +58345 83.9 +92.25 +89.124 +92.1 +69.3 +67.88 +58353 27.2 +92.24 +11.1 +59.11 +89.3 +92.24 +93.172 +90.21 +83.2 +85.1 +58364 15.81 +69.3 +90.44 +92.24 +93.169a +58.50 +89.125 +89.59 +89.93 +24.1 +92.24 +93.225a +92.27 +23.94 +89.121 +23.121 +89.124 +30.56 +92.24 +53.88 +90.22 +89.93 +92.24 +93.225a +20.61 +89.33 +59.1 +92.24 +93.172 +90.44 +92.11 +15.52 +89.92 +31.85 +90.23 +92.24 +93.169a +92.24 +67.208 +92.24 +11.1 +78.3 +92.24 +15.81 +84.16 +92.24 +51.2 +33.212 +90.21 +15.81 +93.169a +84.16 +93.480a +18.1 +92.24 +3.53 +92.24 +3.8 +89.87 +15.40 +89.57 +15.78 +92.11 +89.92 +33.83 +33.364 +33.470 +92.24 +15.81 +90.23 +33.126 +12.9{N:001} +89.93 +92.24 +37.67 +92.24 +93.182b +89.94 +27.27 +4.33 +92.24 +93.169a +17.12 +83.46 +92.11 +64.14 +58451 33.54 +69.3 +25.252 +11.66 +93.582b +91.13 +92.24 +37.67 +92.6 +15.81 +17.12 +83.46 +4.33 +4.31 +92.29 +69.3 +32.16 +92.11 +92.24 +36.38 +92.24 +60.46 +89.125 +58475 87.24 +93.169a +67.47 +29.7 +90.21 +92.29 +58482 33.54 +90.23 +92.11 +89.92 +92.29 +41.7 +92.11 +58490 33.262 +92.24 +11.1 +92.24 +85.1 +89.108 +92.11 +58498 92.24 +93.225a +33.307 +84.4 +92.24 +7.75 +58505 23.94 +92.11 +89.121 +23.121 +58511 89.93 +15.78 +92.11 +92.24 +11.1 +89.33 +33.212 +92.29 +92.11 +90.45 +92.24 +33.477 +89.50 +92.24 +11.49 +33.69 +90.58 +92.26 +32.11 +90.21 +69.3 +68.33 +92.23 +91.13 +92.24 +9.23 +36.35 +92.11 +15.37 +58541 85.1 +11.40 +92.12 +63.20 +92.24 +15.101 +89.59 +53.56 +67.136 83.23 +92.24 +51.2 +89.50 +92.29 +15.77 +93.379a +92.24 +84.3 +93.432 +92.24 +93.444a +89.92 +33.161 +92.11 +33.69 +87.53 +25.1 +92.24 +93.169a +34.50 +15.7 +92.24 +93.379a +89.87 +33.69 +92.24 +93.25 +15.7 +93.25 +89.92 +93.379a +89.87 +33.69 +92.24 +93.169a +58586 92.24 +93.169a +33.28 +92.11 +33.69 +15.81 +92.24 +67.1 +90.22 +87.24 +92.24 +9.3 +92.24 +9.3 +72.6 +72.6 +33.69 +92.7 +58606 92.24 +3.35 +92.24 +3.31 +15.118 +84.22 +92.24 +2.14 +23.99 +92.11 +58.51 +85.55 +89.124 +89.67 +23.99 +59.11 +23.199 3.33 +23.199 +92.24 +25.33 +92.24 +23.88 +92.11 +57.68 +92.11 +58632 92.24 +88.198 +92.24 +23.88 +92.11 +13.8 83.13 +92.24 +1.39 +92.29 +13.62 +23.88 +67.96 +37.120 +92.11 +89.67 +92.1 +92.12 +35.19 +92.1 +36.31 +89.92 +83.5 +85.1 +92.1 +83.2 +89.93 +92.24 +35.20 +92.24 +92.2 +85.1 +89.67 +92.12 +92.1 +35.19 +87.8 +92.11 +92.24 +12.12 +67.38 +92.24 +26.4 +92.1 +25.244 +58677 92.14 +33.69 +12.12 +21.18 +92.1 +68.54 +92.24 +67.1 +92.29 +89.125 +90.44 +92.29 +15.81 +67.160 +92.24 +67.1 +92.29 +12.12 +87.24 +92.6 +92.24 +33.126 +89.50 +15.81 +33.103 +90.16 +92.24 +1.11 +89.102 +87.24 +89.102 +67.55 +87.24 +89.50 +92.24 +11.1 +92.24 +85.8 +89.92 +24.52 +33.69 +14.15 +13.107 +58.37 +33.69 +12.28 +92.11 +33.70 +33.28 +93.169a +89.92 +33.69 +69.3 +90.38 +92.1 +92.24 +33.103 +92.29 +13.107 +89.125 +90.38 +92.7 +67.39 +13.104 +56.20 +92.24 +41.38 +92.29 +67.39 +92.24 +37.56 +92.24 +41.38 +92.29 +15.44 +84.27 +67.32 +92.1 +81.5 +84.4 +92.24 +1.39 +59.23 +15.212 +84.18 +92.3 +58764 92.29 +33.69 +33.153 +58.30 +23.99 +67.62 +23.99 +58772 33.28 +92.11 +92.24 +11.1 +92.4 +32.1 +90.16 +92.24 +33.56 +90.21 +92.24 +53.82 +13.89 +67.95 +92.24 +67.95 +58789 92.16 +33.69 +92.6 +90.21 +71.34 +81.5 +92.24 +9.3 +92.24 +9.3 +92.14 +13.4 +92.29 +92.24 +9.3 +92.24 +9.3 +89.50 +33.69 +92.11 +92.24 +93.169a +67.128 +59.15 +67.78 +92.24 +14.36 +83.9 +92.7 +85.1 +41.11 +67.139 +92.24 +14.36 +90.65 +89.59 +69.3 +88.125 +92.7 +37.19 +58830 92.24 +15.227 +13.8 +92.24 +14.53 +69.3 +28.1 +83.6 +15.15 +67.139 +92.24 +14.36 +90.65 +31.85 +90.23 +92.24 +14.36 +89.59 +11.14 +11.14 +13.48 +92.29 +33.70 +93.169a +89.87 +15.37 +21.12 +89.122 +92.11 +89.124 +92.11 +59.6 +33.477 +90.45 +83.33 +92.11 +69.3 +31.85 +90.23 +92.11 +89.59 +92.24 +33.98 +93.147 +92.24 +53.79 +13.106 +92.27 +33.69 +12.9{N:001} +92.14 +31.35 +92.24 +24.57 +92.4 +89.92 +92.24 +76.3 +12.9{N:001} +92.14 +28.38 +58893 69.3 +74.5 +31.85 +89.33 +89.97 +33.69 +93.147 +32.25 +92.11 +92.24 +32.25 +89.92 +27.51 27.53 +92.11 +92.24 +58909 89.49 89.59 +69.3 +24.1 +92.24 +32.24 +89.92 +32.2 +92.24 +26.3 +89.87 +31.60 +89.87 +13.66 +92.11 +92.29 +33.69 +93.147 +89.33 +24.1 +92.24 +79.18 +92.11 +89.87 +33.70 +89.6 90.24 +92.11 +89.130 +89.75 +58938 63.20 +92.24 +37.56 +59.1 +31.85 +90.23 +92.11 +89.125 +90.44 +92.24 +11.49 +69.3 +33.274 +89.59 +69.3 +11.46 +13.48 +89.23 +25.104 +92.24 +33.357 +92.24 +9.1 +78.28 +64.19 +92.24 +33.357 +92.24 +12.1 +89.124 +93.169a +33.83 +89.92 +33.69 +92.24 +31.85 +90.23 +92.1 +69.3 +31.85 +90.23 +92.1 +89.125 +90.23 +92.24 +15.66 +92.1 +89.92 +92.24 +24.14 +92.1 +24.14 +92.24 +15.66 +92.1 +92.1 +14.36 +84.22 +92.24 +1.39 +15.81 +89.59 +59.23 +92.24 +31.85 +90.23 +92.1 +13.8 +92.24 +88.125 +69.3 +68.11 +59011 89.67 +92.12 +24.52 +92.1 +92.24 +33.98 +59018 69.3 +36.19 +92.1 +69.3 +56.30 +92.11 +89.23 +69.3 +15.81 +89.59 +56.30 +92.24 +9.23 +89.125 +89.59 +21.27 +92.24 +9.23 +92.24 +31.100 +92.1 +59040 69.3 +31.50 +92.24 +33.98 +92.1 +90.65 +92.24 +56.30 +92.11 +92.24 +33.260 +92.27 +33.70 +92.30 +56.30 +92.11 +67.33 +92.24 +61.13 + +89.33 +92.1 +90.16 +92.3 +69.3 +33.70 +89.125 +92.24 +15.66 +92.1 +12.12 +92.37 +92.1 +33.330 +90.51 +92.14 +33.69 +89.92 +92.14 +33.70 +89.93 +28.1 +90.21 +92.24 +33.330 +92.11 +23.88 +67.96 +13.1 +89.50 +92.27 +92.1 +33.70 +64.14 +33.69 +92.1 +92.24 +12.12 +61.9 +33.70 +59101 67.17 +92.24 +51.2 +92.24 +51.6 +92.24 +93.169a +28.1 +90.21 +59111 92.11 +92.24 +67.1 +90.22 +15.2 +84.4 +92.24 +1.39 +92.29 +84.18 +92.24 +12.12 +25.43 +92.24 +10.12 +92.24 +83.13 +92.24 +1.39 +67.119 +78.47 +25.43 +92.11 +89.92 +23.25 +13.107 +92.24 +12.34 +67.20 +30.29 +59142 92.24 +30.29 +89.59 +37.111 +92.11 +93.173a +93.341e +93.181 +28.1 +90.21 +59.23 +59154 92.11 +92.24 +12.12 +59158 92.24 +76.3 +89.92 +90.21 +90.15 +12.1 +15.40 +89.92 +84.18 +92.24 +12.1 +23.101 +17.9 +84.4 +92.24 +23.25 +89.87 +49.21 +92.24 +6.162 +89.87 +18.1 +6.161 +49.14 +92.25 +67.44 +47.2 +2.7 +84.22 +92.24 +6.122 +89.87 +68.1 +47.9 +92.24 +8.49 +92.24 +36.38 +89.87 +79.83 +92.24 +6.161 +92.27 +59202 49.14 +89.50 +15.81 +84.18 +93.341a +93.296 +33.69 +92.11 +12.9{N:001} +92.6 +47.9 +92.1 +92.24 +8.49 +33.184 +93.169a +89.92 +33.69 +92.11 +92.27 +92.1 +42.7 +92.6 +69.3 +32.4 +67.38 +89.124 +32.16 +67.48 +92.29 +33.69 +92.11 +93.296 +69.5 +69.5 +47.9 +92.1 +92.24 +8.49 +67.95 +92.24 +67.95 +33.184 +93.169a +92.11 +59249 47.9 +92.6 +69.3 +59253 63.14 +59255 92.1 +33.69 +92.11 +93.341a +93.296 +12.9{N:001} +69.3 +92.24 +8.49 +92.1 +59266 89.125 +89.93 +92.24 +8.30 +89.92 +92.24 +8.10 +33.69 +92.11 +93.169a +92.24 +47.12 +69.3 +90.65 +57.40 +89.131 +59283 92.24 +8.49 +47.9 +89.125 +13.1 +79.48 +78.44 +89.92 +92.7 +79.48 +13.1 +89.125 +69.4 +59.23 +89.23 +28.1 +92.24 +37.111 +92.11 +59304 33.69 +90.21 +69.4 +59.23 +79.48 +13.1 +89.50 +59312 47.9 +92.24 +8.49 +92.11 +89.87 +49.10 +92.24 +6.162 +92.11 +89.87 +17.23 +67.55 +33.69 +92.11 +32.16 +92.14 +41.7 +92.7 +92.7 +33.131 +92.1 +92.24 +33.243 +89.92 +92.24 +12.9{N:001} +89.93 +72.12 +33.69 +89.23 +13.4 +89.50 +89.30 +92.1 +92.24 +12.9{N:001} +89.92 +92.24 +33.243 +47.9 88.58 +92.7 +92.24 +8.49 88.58 +89.93 +92.7 +71.25 +47.9 88.58 +92.26 +92.24 +8.49 88.58 +89.23 +58.59 +90.90 +92.7 +89.59 +64.14 +92.1 +41.7 +92.7 +89.93 +92.7 +42.7 +72.6 +72.6 +33.69 +92.7 +69.3 +13.1 +87.76 +87.22 +92.24 +57.12 +92.11 +69.7 +33.194 +87.22 +92.24 +15.66 +92.11 +89.65 +92.29 +28.1 32.4 +25.119 +13.1 +89.67 +42.7 +92.11 +69.3 +90.24 +59.23 +92.7 +33.69 +92.1 +28.1 +92.14 +30.92 +89.125 +89.59 +92.24 +33.53 +13.106 +92.24 +23.3 +92.1 +92.24 +5.1 +39.3 +90.34 +92.1 +92.24 +39.3 8.52 +92.11 +67.131 +67.38 +33.69 +92.7 +67.17 +92.24 +13.107 +89.59 +59434 13.107 +90.21 +92.1 +13.4 +72.6 +72.6 +33.69 +92.7 +92.24 +57.125 +71.8 +92.12 +15.66 +92.1 +57.125 +89.94 +92.24 +92.1 +57.125 +57.125 +92.24 +15.66 +92.1 +92.29 +33.69 +93.169a +25.244 +92.24 +26.9 +89.87 +33.262 +89.92 +33.69 +72.6 +72.6 +33.69 +92.7 +90.21 +60.10 +63.20 +92.7 +37.111 +92.1 +24.7 +90.59 +92.26 +92.24 +36.38 +32.9 +90.24 +92.14 +33.69 +85.1 +17.25 +92.22 +63.20 +92.24 +36.38 +92.11 +59494 92.24 +8.39 +92.24 +93.169a +92.27 +25.43 +92.24 +93.169a +89.50 +33.485 +92.29 +93.341a +93.296 +59511 92.14 +59513 90.24 +92.27 +33.69 +92.30 +17.25 +61.9 +59520 92.24 +8.36 +92.24 +93.169a +33.69 +92.11 +12.9{N:001} +92.14 +13.4 +59530 33.184 +92.24 +93.169a +13.4 +92.30 +92.27 +92.1 +47.11 +92.24 +5.4 +89.87 +57.71 +92.11 +89.50 +47.11 +92.24 +5.4 +18.1 +89.87 +57.71 +93.173a +93.341e +93.181 +89.87 +67.48 +92.24 +5.4 +67.47 +15.93 +84.22 +92.30 +92.24 +12.34 93.330 +89.50 +33.69 +92.11 +93.169a +92.27 +42.7 +42.7 +67.110 +89.124 +32.16 +92.23 +92.24 +17.23 +92.29 +89.60 +92.14 +33.69 +92.11 +89.23 +92.12 +31.29 +89.32 +92.24 +6.143 +57.1 +93.173a +90.21 +33.69 +92.11 +93.169a +57.188 +92.27 +57.40 +90.65 +90.23 +92.24 +51.2 +89.139 +89.59 90.22 +92.24 +57.53 +92.12 +57.71 +89.50 +57.125 +92.24 +5.4 +92.30 +15.40 +67.53 +89.94 +13.1 +14.59 67.192 +89.50 +59618 15.40 +33.69 +93.169a +67.38 +87.24 +92.24 +9.3 +92.24 +9.3 +89.92 +92.24 +12.1 +87.24 +89.119 90.6 +92.11 +89.30 +92.24 +12.1 +87.24 +89.119 90.6 +92.11 +89.102 +92.24 +12.1 +87.24 +92.11 +89.119 90.6 +92.37 +89.102 +67.53 +87.24 +92.11 +9.46 +67.128 +67.106 +89.108 +92.7 +85.1 +25.9 27.41 +92.1 +89.93 +64.14 +33.69 +92.24 +93.172 +90.21 +83.5 +92.1 +15.35 +15.81 +92.7 +69.3 +74.5 +89.93 +92.7 +33.69 +67.38 +33.330 +28.33 +59678 92.7 +90.22 +25.43 +92.26 +64.14 +25.43 +92.7 +90.22 +89.93 +92.7 +25.43 +92.26 +89.76 +92.29 +28.1 +59.23 +90.21 +92.2 +36.38 +58.67 +89.67 +25.43 +59701 90.56 +92.26 +33.69 +92.11 +93.341a +93.296 +12.9{N:001} +83.6 +15.35 +33.184 +93.169a +83.5 +15.35 +92.1 +67.38 +15.144 +69.3 +74.5 +89.124 +15.144 36.31 +67.50 +33.69 +92.11 +93.296 +12.9{N:001} +59728 69.3 +74.5 +92.6 +15.144 +67.38 +92.24 +23.113 +92.1 +90.36 +92.6 +23.113 +33.184 +93.169a +92.24 +23.113 +92.6 +90.36 +92.1 +23.113 +72.6 +72.6 +33.69 +92.6 +69.5 +69.5 +4.45 +14.76 +67.119 +59757 33.277 +92.1 +60.71 +69.3 +25.244 +92.7 +92.24 +26.3 +31.85 +90.23 +92.24 +12.1 +89.93 +90.23 +92.1 +31.85 +83.13 +92.24 +7.3 +92.24 +12.12 +92.1 +85.76 +59.1 +85.1 +59785 71.14 +33.69 +92.7 +89.33 +15.34 +77.3 +80.1 +92.7 +89.93 +89.67 +15.34 +89.87 +77.3 +80.1 +92.7 +67.55 +15.81 +89.87 +34.53 +92.7 +90.58 +92.3 +89.59 +83.5 +85.1 +92.1 +89.93 +92.7 +85.1 +91.1 +83.5 +92.1 +23.101 +28.1 +92.24 +41.16 +33.69 +92.11 +93.155 +12.9{N:001} +69.3 +28.1 +83.6 +15.35 +92.16 +59831 92.24 +1.99 +33.69 +92.11 +93.169a +92.1 +13.4 +92.24 +41.16 +89.92 +92.24 +72.2 +89.92 +92.24 +23.88 +92.23 +15.81 +84.18 +92.24 +12.12 +89.131 +59853 90.4 +92.1 +89.65 +59857 92.1 +59859 89.93 +92.24 +12.12 +92.1 +59864 67.131 +67.38 +27.18 +92.11 +89.92 +90.79 +33.69 +92.11 +93.379a +12.9{N:001} +28.47 +92.4 +92.24 +12.12 +89.87 +59.46 +92.4 +33.69 +92.11 +92.24 +93.169a +59887 89.108 +92.7 +85.1 +91.12 +69.3 +27.18 +92.1 +93.379a +92.24 +90.79 +92.1 +90.79 +92.24 +12.12 +92.16 +92.6 +33.69 +28.47 +92.4 +92.24 +12.12 +69.3 +31.35 +90.21 +92.1 +89.119 +92.24 +12.12 +89.92 +92.24 +12.12 +89.119 +92.1 +13.1 +92.24 +33.98 +92.27 +92.1 +33.69 +92.7 +90.19 +92.3 +69.3 +33.70 +89.124 +92.24 +12.12 +89.119 +92.1 +68.11 +90.45 +92.24 +42.11 +92.11 +31.35 +92.1 +90.21 +92.1 +89.119 +92.24 +12.12 +89.92 +92.24 +12.12 +89.119 +92.1 +59956 89.26 +92.24 +42.11 +92.37 +31.35 +72.6 +72.6 +33.69 +92.7 +92.24 +31.85 +90.23 +92.1 +92.24 +42.11 +92.27 +92.1 +90.45 +89.93 92.30 +90.45 +59977 78.2 +92.29 +90.45 +89.33 +92.1 +84.18 +92.24 +12.12 +15.34 +59987 92.12 +71.8 +92.27 +33.163 +90.23 +92.24 +33.126 +92.1 +92.29 +42.7 +89.59 +87.24 +92.24 +12.12 +90.6 +92.24 +12.15 +89.67 +92.12 +33.163 +92.1 +90.23 +92.24 +33.126 +92.1 +92.1 +42.7 +89.67 +25.43 +92.1 +92.24 +33.330 +92.24 +92.2 +36.19 +92.1 +33.161 +92.24 +12.12 +60027 58.37 +12.19 +37.98 +92.7 +89.59 +13.1 +89.108 +92.7 +67.95 +92.24 +67.95 +92.24 +12.18 +92.24 +72.2 +92.27 +57.125 +92.24 +9.23 +69.3 +74.5 +89.33 +69.3 +32.11 +92.11 +69.7 +27.18 +92.7 +27.18 +92.11 +89.33 +89.111 +92.7 +85.55 +89.92 +89.119 +92.7 +85.1 +69.3 +15.48 +92.7 +34.21 +15.81 +84.18 +92.7 +89.87 +67.128 +67.106 +92.24 +9.23 +92.1 +67.130 +24.14 +89.124 +92.7 +24.14 +92.1 +89.33 +92.1 +23.88 +89.93 +92.7 +23.88 +67.33 +92.30 +92.24 +67.186 +28.1 +92.7 +90.21 +92.1 +89.119 +92.24 +12.12 +92.1 +89.92 +92.7 +89.119 +92.1 +89.92 92.1 +89.119 +92.7 +92.24 +90.65 +92.24 +33.330 +92.1 +89.92 +36.19 +92.11 +92.30 +13.4 +92.24 +25.43 +92.1 +89.94 +92.24 +25.43 +92.1 +25.43 +90.1 +92.24 +12.12 +92.1 +89.92 92.1 +25.43 +92.11 +89.92 +28.36 +92.11 +92.3 +33.69 +92.11 +93.173b +69.3 +92.24 +93.181 +12.9{N:001} +91.12 +92.14 +13.107 +90.21 +67.62 +92.4 +28.36 +92.10 +60154 69.4 +92.24 +9.23 +33.184 +93.169a +89.92 +33.69 +92.11 +89.67 +92.12 +25.43 +92.1 +92.24 +33.98 +92.1 +36.19 +89.92 +92.24 +12.12 +92.1 +25.43 +92.11 +89.92 +84.18 +92.11 +15.81 +89.87 +85.76 +89.111 +92.11 +90.45 +92.24 +69.3 +25.43 +92.1 +92.24 +33.98 +92.1 +69.3 +36.19 +89.92 +92.24 +33.260 +92.27 +24.52 36.14 +69.3 +13.1 +92.2 +89.125 +92.24 +15.66 +92.1 +12.12 +92.29 +33.70 +92.7 +89.111 +92.7 +85.55 +89.124 +92.24 +12.19 +92.24 +12.18 +92.24 +88.24 +92.27 +15.66 +92.24 +12.12 +90.23 +92.24 +33.126 +92.1 +92.30 +92.7 +33.224 +59.23 +89.92 +29.10 +92.7 +59.23 +92.27 +33.69 +92.7 +92.1 +25.248 +85.62 +92.7 +25.248 +92.24 +92.2 +60247 92.7 +69.3 +64.14 +92.24 +41.38 +60253 92.1 +60255 92.7 +69.3 +25.244 +92.7 +92.24 +26.3 +69.7 +25.267 +24.52 +90.21 +92.1 +33.69 +92.7 +15.35 +89.87 +15.81 +84.18 +92.7 +89.65 +25.43 +92.1 +71.14 +25.125 +89.33 +15.34 +84.18 +92.24 +12.12 +89.33 +92.24 +12.12 +87.22 +92.1 +13.1 +89.92 +67.39 +33.69 +92.7 +67.17 +13.107 +89.59 +60297 13.107 +31.35 +67.130 +59.1 +33.70 +89.108 90.60 +92.7 +89.23 +15.81 +92.24 +92.24 +41.38 +37.56 +60311 90.23 +92.1 +69.3 +57.1 +92.23 +89.125 +89.59 +28.1 +92.24 +9.23 +90.21 +25.43 +92.24 +12.12 +89.92 +64.14 +33.329 +92.1 +92.24 +12.12 +60332 42.7 +17.9 +15.34 +84.9 +92.1 +13.4 +92.24 +3.27 +92.24 +70.3 +89.92 +92.24 +12.12 +92.1 +92.24 +43.2 +13.4 +59.23 +3.50 +89.119 +92.1 +69.3 +23.199 +23.199 3.33 +15.203 +92.11 +60359 59.23 +92.24 +23.199 3.33 +23.199 +43.12 79.49 +92.11 +89.59 +23.199 3.33 +59.1 +23.199 +67.20 +92.7 +53.29 +13.1 +89.76 90.44 +92.24 +33.260 +92.27 +33.70 +92.7 +68.11 +89.119 +92.1 +89.92 92.1 +89.119 +92.7 +64.14 +92.24 +3.50 +69.3 +74.5 +23.199 3.33 +23.199 +90.19 +92.25 +60396 85.55 +83.47 +92.24 +3.27 +60401 69.7 +92.7 +60405 89.119 +92.1 +68.11 +92.1 +13.4 +92.24 +3.27 +92.7 +92.24 +3.50 +92.24 +68.11 +89.119 +92.1 +89.92 92.1 +89.119 +92.11 +92.29 +23.199 +23.199 42.13 +59.11 +89.33 +89.120 +92.1 +69.3 +74.5 +42.7 +92.23 +60435 92.12 +68.11 +89.119 +92.1 +15.215 +84.27 +64.12 +92.24 +3.50 +89.87 +79.81 +89.87 +15.125 +92.11 +89.87 +84.22 +92.24 +2.5 +15.215 +89.87 +14.63 +89.67 +68.11 +89.119 +92.1 +89.92 +92.24 +33.98 +92.1 +89.119 +92.7 +68.11 +71.8 +92.27 +25.1 +33.163 +60472 13.107 +92.7 +89.76 +92.29 +87.24 +92.24 +12.12 +92.1 +91.15 +23.199 42.13 +59.11 +23.199 +89.92 +60486 92.2 +36.38 +64.14 +25.43 +92.1 +92.24 +12.12 +89.93 92.1 +92.7 +25.43 +68.11 +89.119 +92.24 +25.43 +92.24 +92.2 +89.67 +92.24 +33.330 +92.1 +36.19 +68.11 +89.119 +92.24 +25.43 +92.1 +64.14 +92.1 +92.24 +12.12 +92.1 +92.24 +33.330 +36.19 +60521 68.11 +89.119 +92.11 +92.24 +25.43 +92.29 +33.70 +92.7 +89.59 +92.24 +25.123 +92.24 +92.2 +89.119 +92.7 +13.1 +89.92 +92.24 +25.123 +92.7 +59.33 +92.29 +13.4 +92.24 +33.330 +92.24 +92.2 +91.15 +25.43 +92.26 +64.14 +25.43 +92.7 +78.28 +92.29 +25.43 +92.23 +90.65 +91.15 +92.12 +92.24 +23.113 +92.11 +23.113 +90.36 +92.24 +34.11 +92.11 +92.7 +34.11 +92.1 +58.67 +89.67 +42.7 +60576 92.1 +33.329 +92.7 +67.130 +33.131 +92.7 +87.76 +89.33 +92.24 +87.76 +69.3 +28.1 +92.14 +42.7 +92.11 +92.24 +57.12 +89.124 +92.7 +33.131 +34.11 +89.33 +59.23 +92.27 +24.52 +90.14 +92.24 +12.12 +92.1 +28.26 +92.7 +69.3 +92.7 +92.1 +30.92 +89.125 +92.1 +30.92 +92.7 +89.92 +37.96 +92.7 +89.59 +92.7 +15.15 +89.92 +23.199 42.13 +23.199 +89.92 +92.24 +42.13 +92.7 +13.89 +89.49 +92.12 +71.8 +92.27 +33.163 +92.24 +12.12 +90.23 +92.24 +33.126 +92.1 +57.71 +92.7 +92.29 +33.329 +92.7 +90.22 +25.43 +92.26 +89.65 +92.24 +9.23 +92.7 +88.198 +28.1 +90.21 +92.1 +67.18 +92.7 +88.198 +89.65 +89.3 +92.24 +41.38 +58.67 +71.14 +92.24 +9.23 +92.24 +57.4 +25.33 +89.124 +89.33 +89.3 +92.24 +41.38 +69.3 +58.67 +89.125 +92.1 +30.92 +92.7 +89.3 +92.24 +41.38 +60686 88.198 +92.7 +92.24 +9.23 +29.7 +92.24 +33.98 +92.27 +92.1 +33.69 +92.7 +69.3 +13.1 +87.76 +87.22 +92.24 +57.12 +92.11 +89.65 +92.1 +39.45 +89.93 +92.7 +39.45 +89.65 +92.24 +33.98 +92.1 +36.19 +89.93 +92.24 +92.9 +36.19 +89.125 +92.29 +59.23 +41.7 +90.59 +92.7 +90.44 +92.24 +33.126 +92.1 +89.33 +69.3 +28.1 +92.24 +15.66 +92.1 +89.65 +69.3 +15.81 +89.87 +33.70 +92.11 +88.310 +69.3 +90.65 +60745 67.38 +33.437 +69.3 +90.65 +89.6 +92.24 +88.310 +92.11 +92.24 +92.1 +88.198 +89.93 +92.24 +12.12 +92.1 +88.198 +89.65 +92.24 +42.11 +69.3 +90.45 +83.9 +92.11 +92.27 +92.23 +58.37 +90.45 +88.310 +69.3 +90.65 +89.124 +67.38 +89.102 +24.1 +89.102 +88.198 +89.102 +92.1 +89.102 +92.24 +12.12 +92.1 +89.125 +89.59 +13.106 +92.24 +33.98 +92.24 +83.13 +92.24 +33.56 +92.11 +33.54 +91.15 +88.198 +92.1 +89.20 +60803 15.81 +92.24 +12.19 +92.27 +92.1 +15.66 +92.7 +90.14 +92.24 +12.12 +92.24 +12.18 +92.24 +72.2 +92.27 +84.5 +92.24 +12.12 +15.40 +92.30 +33.262 +90.24 +92.1 +89.94 +89.93 +92.7 +33.262 +89.33 +67.131 +67.65 +89.108 +92.1 +85.1 +92.29 +33.70 +92.7 +89.59 +69.3 +31.77 +11.46 +13.9 +92.7 +91.2 +13.117 +67.1 +90.22 +59.23 +92.24 +20.61 +92.7 +31.29 +53.14 +15.192 +92.24 +12.1 +89.92 +92.29 +42.7 +89.33 +69.3 +28.1 +92.24 +12.12 +69.7 +92.1 +89.125 +92.29 +33.70 +92.7 +89.59 +60874 13.117 +92.24 +67.1 +92.11 +29.7 +92.11 +90.21 +92.1 +33.69 +92.7 +60885 92.29 +92.7 +67.131 +67.65 +69.3 +33.69 +89.33 +89.108 +92.7 +85.1 +89.124 +67.39 +15.52 +84.18 +92.24 +15.66 +92.1 +91.12 +92.23 +63.20 +92.7 +33.180 +92.1 +83.6 +15.52 +91.2 +89.33 +92.29 +33.70 +92.7 +92.24 +25.273 +30.29 +60919 92.24 +30.29 +91.2 +92.1 +92.24 +72.2 +33.69 +92.7 +65.44 +92.7 +90.22 +92.1 +15.37 +89.23 +60935 15.37 +92.24 +12.19 +69.3 +60941 84.18 +92.7 +89.124 +89.67 +15.34 +15.66 +92.11 +84.18 +92.7 +89.87 +15.81 +92.30 +33.417 +92.24 +9.23 +89.6 +88.289 +89.92 +89.6 +88.13 +89.92 +89.6 +30.110 +89.136 +89.6 +88.289 +89.33 +69.3 +31.102 +90.23 +92.1 +89.136 +89.6 +88.13 +89.33 +84.18 +92.24 +12.12 +15.35 +60981 67.130 +24.14 +92.1 +89.136 +89.6 +30.110 +89.33 +92.24 +37.56 +92.24 +41.38 +92.29 +56.30 +59.75 +60996 59.1 +92.7 +33.69 +89.125 +69.3 +74.5 +31.55 +67.39 +89.124 +67.31 +15.81 +92.30 +92.24 +12.18 +92.24 +72.2 +27.17 +92.7 +61018 89.23 +69.3 +33.70 +90.15 +92.25 +89.125 +59.19 +61026 33.70 +89.92 +92.24 +13.117 +33.197 +92.7 +92.30 +92.1 +87.24 +89.33 +89.3 +92.24 +92.2 +57.125 +89.87 +33.197 +92.7 +59.23 +59.19 +57.1 +92.24 +12.12 +92.2 +13.1 +61052 33.69 +90.21 +90.16 +92.24 +92.2 +57.125 +89.87 +33.197 +92.7 +67.106 +89.87 +67.130 +24.14 +92.1 +89.87 +67.55 +67.106 +89.87 +24.1 +92.1 +89.50 +33.69 +63.20 +92.24 +36.38 +92.11 +90.58 +92.26 +92.14 +13.4 +92.29 +92.27 +33.69 +92.4 +67.106 +89.87 +69.3 +24.14 +92.1 +89.87 +67.55 +67.106 +89.87 +24.1 +92.1 +89.92 +89.33 +15.35 +84.18 +92.24 +12.12 +89.50 +33.69 +92.14 +13.4 +92.29 +92.27 +33.69 +92.24 +67.106 +69.3 +32.4 +92.14 +33.70 +28.1 +93.169a +90.21 +25.1 +92.11 +33.180 +61123 33.69 +92.11 +90.24 +92.29 +27.34 +89.108 +92.26 +90.21 +33.69 +67.106 +89.87 +69.3 +24.14 +92.1 +89.87 +67.55 +67.106 +89.87 +24.1 +92.1 +72.6 +72.6 +33.69 +92.7 +90.21 +25.138 +89.92 +25.141 +92.7 +89.124 +92.24 +9.23 +25.125 +92.7 +25.274 +89.125 +92.24 +25.273 +92.7 +13.62 +25.123 +13.48 +61166 92.24 +9.34 +23.52 +25.273 +90.65 +89.33 +13.117 +92.24 +67.1 +92.11 +89.124 +61178 23.52 +92.24 +10.37 +67.130 +29.8 +92.24 +22.2 +89.26 +92.24 +25.123 +90.21 +23.52 +9.1 +84.22 +92.24 +9.23 +61195 89.136 +89.93 +92.7 +67.38 +25.273 +90.65 +89.136 +67.55 +24.1 +92.7 +61206 25.125 +92.7 +92.24 +26.3 +89.92 +92.24 +25.123 +92.7 +92.23 +90.96 +61217 92.7 +89.92 +67.136 +92.30 +92.24 +67.186 +92.1 +69.3 +33.161 +92.23 +72.6 +72.6 +33.69 +92.7 +71.8 +92.12 +33.163 +92.24 +12.12 +57.71 +92.7 +90.23 +92.24 +33.126 +92.1 +67.119 +67.38 +69.3 +33.163 +92.23 +90.23 +92.24 +33.126 +92.1 +33.163 +89.87 +57.125 +89.59 +92.24 +25.123 +92.7 +61259 59.33 +92.29 +89.76 +33.15 +33.70 +92.7 +13.117 +67.1 +61268 67.130 +89.76 +33.15 +33.70 +92.7 +89.125 +61275 90.24 +92.24 +12.12 +33.198 +92.7 +67.33 +92.30 +92.24 +67.142 +90.23 +92.24 +33.126 +92.1 +33.163 +89.92 +69.3 +33.69 +92.7 +90.21 +92.1 +33.161 +92.24 +12.12 +90.39 +92.7 +89.23 +92.37 +92.24 +12.12 +25.33 +92.7 +89.33 +92.7 +92.1 +25.33 +89.92 +31.102 +90.21 +92.1 +84.5 +92.24 +12.1 +15.40 +15.40 +61320 92.24 +12.12 +89.92 +15.81 +84.22 +92.24 +1.39 +89.129 +15.48 +92.24 +1.39 +89.92 +15.34 +84.18 +92.24 +12.12 +33.69 +92.24 +36.38 +92.11 +91.13 +67.38 +61344 33.70 +89.92 +33.15 +92.23 +33.69 +67.38 +28.1 +90.21 +28.1 +59.23 +89.92 +69.3 +71.23 +90.65 +90.22 +92.12 +92.6 +33.180 +89.26 +92.29 +31.35 +90.21 +90.15 +12.1 +15.40 +33.28 +92.11 +93.169a +67.38 +31.35 +91.13 +13.117 +67.1 +89.92 +13.117 +90.22 +15.135 +59.27 +84.16 +92.24 +57.4 +89.92 92.1 +58.51 +15.48 +91.12 +69.3 +13.1 +58.51 +89.33 +92.24 +12.12 +89.108 +92.1 +85.1 +92.29 +33.70 +92.6 +89.59 +89.119 +92.1 +25.248 +90.65 +83.13 +92.24 +1.39 +22.2 +90.65 +89.125 +25.156 +92.1 +39.57 +92.24 +41.38 +92.29 +33.70 +93.169a +89.87 +24.34 +92.24 +8.23 +92.11 +84.16 +92.24 +1.11 +33.69 +12.12 +13.117 +92.24 +67.1 +87.24 +92.6 +92.24 +12.15 +89.59 +92.24 +12.15 +87.24 +92.6 +89.34 +90.51 +92.11 +37.35 +59.23 +9.11 +89.59 +59.23 +92.27 +61452 92.11 +90.51 +92.11 +23.88 +67.96 +89.94 +92.29 +13.4 +92.24 +67.96 +23.88 +91.15 +27.18 +92.6 +92.24 +58.50 +70.3 +12.1 +89.92 +92.27 +15.66 +93.169a +93.387 +92.1 +92.6 +87.24 +83.46 +92.24 +1.39 +68.22 +92.24 +42.42 +92.27 +90.51 +92.1 +89.59 +42.7 +61490 12.12 +67.38 +87.24 +92.1 +92.6 +89.111 +92.10 +92.24 +87.23 +92.27 +90.65 +67.17 +92.24 +92.24 +1.1 +13.69 +89.111 +92.6 +28.36 +92.6 +92.24 +33.265 +92.24 +9.1 +92.27 +61516 92.1 +89.121 +92.24 +9.23 +92.6 +13.1 +92.1 +92.11 +61525 89.87 +92.24 +33.98 +92.6 +36.19 +67.38 +28.1 +90.21 +59.23 +59.7 +61536 92.1 +90.14 +92.6 +13.1 +89.33 +92.24 +33.98 +92.27 +61545 92.1 +61547 92.11 +89.87 +92.11 +31.50 +89.92 +28.1 +70.3 +90.21 +90.14 +92.6 +15.40 +89.92 +31.35 +90.21 +92.6 +92.1 +15.66 +92.1 +90.39 +92.11 +33.161 +69.3 +90.39 +92.24 +9.23 +33.161 +89.125 +90.39 +92.27 +61577 92.1 +89.33 +92.6 +13.1 +89.92 +92.24 +92.2 +59.23 +92.8 +13.1 +89.92 +92.24 +92.8 +92.2 +89.92 +87.24 +90.6 +92.11 +91.1 +67.130 +85.1 +83.13 +92.24 +1.39 +61602 92.11 +83.13 +92.24 +1.39 +85.1 +89.92 92.1 +84.18 +92.6 +15.81 +12.12 +88.24 +37.122 +92.11 +89.119 +92.24 +33.126 +92.6 +92.27 +61621 92.1 +89.59 +13.1 +63.4 +64.14 +92.4 +67.139 +85.1 +89.108 +92.11 +92.1 +37.122 +92.11 +89.119 +92.24 +33.126 +92.6 +92.27 +61640 92.1 +89.92 +37.120 +61644 92.23 +63.20 +92.11 +20.31 +89.131 +61650 92.24 +58.26 9.4 +92.24 +20.31 +89.59 +92.24 +33.53 +13.106 +61659 67.39 +84.18 +92.6 +15.81 +89.93 +92.29 +33.70 +83.13 +92.24 +1.39 +89.59 +90.65 +92.24 +25.123 +92.24 +92.2 +59.33 +90.56 +92.25 +92.1 +61680 92.11 +92.24 +33.98 +92.6 +61685 92.24 +9.23 +88.198 +92.11 +89.33 +69.3 +58.67 +89.3 +92.24 +41.38 +64.14 +92.1 +69.3 +58.67 +89.3 +92.24 +41.38 +69.3 +33.161 +90.22 +15.203 +92.11 +84.4 +92.24 +1.39 +89.125 +90.22 +37.122 +92.11 +89.121 +92.24 +12.35 +89.3 +92.24 +41.38 +69.3 +58.67 +64.14 +92.1 +69.3 +58.67 +89.3 +92.24 +41.38 +88.26 +92.11 +89.76 +92.24 +72.2 +92.24 +33.98 +92.24 +92.8 +72.2 +13.4 +64.14 +92.1 +15.66 +84.22 +92.24 +9.23 +89.93 92.1 +15.66 +92.11 +84.22 +92.24 +9.23 +89.93 +90.36 +92.11 +92.1 +88.26 +92.3 +89.59 +61760 88.26 +89.93 +92.11 +70.4 +70.4 +89.124 +69.3 +61768 92.29 +33.161 +61771 89.125 +89.93 +61774 92.24 +31.102 +89.26 +92.24 +33.260 +92.11 +90.23 +92.1 +89.59 +59.23 +63.4 +13.1 +64.14 +61788 92.6 +89.119 +92.1 +89.92 92.1 +89.119 +92.6 +89.59 +89.93 +92.11 +89.119 +92.4 +13.1 +89.59 +92.24 +9.23 +31.35 +90.21 +92.6 +92.1 +15.66 +89.93 92.1 +92.24 +87.4 +92.27 +61813 92.1 +61815 92.11 +89.59 +13.1 +63.4 +64.14 +92.4 +63.4 +92.1 +89.119 +92.11 +89.92 +92.6 +89.119 +92.1 +89.59 +61831 13.18 +13.62 +63.4 +89.59 +32.16 +92.24 +9.23 +90.21 +92.6 +92.1 +15.66 +89.93 +25.43 +92.11 +64.14 +92.1 +25.43 +61849 92.27 +61851 92.1 +25.1 +90.22 +83.5 +85.1 +92.1 +89.93 92.30 +85.1 +89.108 +92.1 +89.59 +24.14 +92.24 +14.49 79.18 +92.24 +92.2 +92.27 +61869 92.1 +89.33 +25.43 +92.1 +67.17 +42.37 +1.1 +61877 88.12 +91.12 +92.24 +9.23 +92.6 +69.3 +27.18 +89.124 +92.1 +92.6 +27.18 +89.93 +92.29 +32.16 +90.21 +92.6 +92.1 +15.66 +89.93 +28.26 +92.11 +92.24 +33.265 +92.6 +89.87 +28.26 +89.59 +92.24 +25.43 +92.27 +25.43 +92.1 +89.119 +92.11 +85.1 +89.93 92.1 +89.119 +92.11 +92.29 +33.69 +93.169a +15.40 +89.107 +92.24 +36.38 +92.11 +83.43 +92.24 +1.52 1.77 +61927 93.500 +83.5 +85.1 +1.97 +84.22 +92.27 +15.93 +92.11 +89.92 +92.24 +36.38 +92.11 +61940 28.1 +89.93 +93.173a +92.24 +37.111 +92.11 +92.24 +80.1 +89.33 +67.11 +15.123 +93.169a +83.2 +89.108 +92.24 +36.38 +92.11 +61958 92.24 +93.173a +57.55 +92.24 +55.9 +89.92 +89.142 +92.24 +53.88 +89.92 +89.142 +92.24 +11.49 +35.20 +15.81 +83.2 +89.109 +6.103 +89.92 +6.102 +89.92 +6.29 +89.50 +93.169a +28.1 +59.23 +92.24 +15.81 +90.57 +92.11 +15.40 +89.87 +33.69 +92.11 +92.14 +27.41 +33.184 +92.11 +93.169a +92.24 +93.538 +33.69 +92.11 +92.1 +13.4 +62004 85.8 +89.93 +93.173a +92.24 +37.111 +92.11 +89.108 +92.11 +89.50 +67.45 +33.69 +92.11 +92.1 +13.4 +15.37 +84.16 +92.24 +83.40 +89.87 +15.119 +1.45 +89.50 +67.55 +33.180 +92.11 +92.14 +27.41 +89.87 +92.24 +33.69 +93.169a +92.24 +93.538 +33.28 +93.169a +33.69 +92.7 +90.21 +92.1 +13.4 +89.50 +89.65 +92.1 +27.41 +13.140 +92.29 +15.52 +89.59 +13.106 +92.24 +33.98 +92.27 +33.69 +90.21 +92.27 +62060 92.1 +69.3 +57.68 +63.20 +92.11 +92.23 +62067 93.341a +93.296 +57.1 +6.33 +15.212 +92.11 +89.87 +19.1 +92.24 +92.24 +53.89 +87.76 +62080 19.18 +92.11 +92.24 +8.24 +92.24 +82.8 +89.94 +13.4 +33.126 +92.24 +87.76 +93.249 +89.127 +33.69 +92.24 +93.169a +92.24 +93.296 +85.34 +92.24 +6.33 +84.22 +92.24 +6.119 +92.24 +24.81 +92.27 +37.98 +92.1 +92.24 +12.12 +69.13 +62113 24.81 +92.11 +62116 92.24 +55.9 +89.92 +92.24 +55.15 +89.92 +92.24 +35.20 +92.24 +93.172 +37.109 +92.24 +93.169a +89.87 +37.114 +92.11 +89.87 +15.165 +84.18 +93.28 +60.46 +89.23 +13.4 +10.58 +92.24 +93.205 +92.27 +13.4 +53.89 +92.24 +67.168 +92.30 +89.94 +13.4 +93.205 +92.24 +33.294 +92.24 +93.172 +90.21 +65.44 +60.10 +9.1 +23.99 +90.36 +92.24 +11.55 +62164 15.144 +92.24 +93.169a +93.341a +93.296 +89.92 +58.37 +36.38 +89.94 +92.24 +36.38 +92.30 +13.1 +34.17 +92.24 +53.89 +62181 15.152 +92.24 +93.169a +84.22 +92.24 +7.6 +92.24 +53.89 +89.124 +92.24 +93.296 +17.1 +83.24 +92.24 +7.49 +83.20 +89.50 +15.40 +92.24 +36.38 +92.24 +58.37 +92.24 +34.17 +92.24 +53.89 +89.87 +33.69 +92.24 +46.8 +62212 15.173 +92.24 +93.296 +89.127 +33.69 +92.24 +93.296 +92.24 +87.83 +92.24 +46.8 +69.15 +89.93 +92.6 +63.20 +92.24 +36.38 +92.24 +9.24 +92.29 +58.67 +33.69 +92.30 +69.3 +58.67 +62238 17.1 +92.24 +87.76 +89.92 +92.24 +35.20 +2.6 +42.29 +89.33 +79.75 +13.1 +62250 79.73 +89.94 +89.93 +92.24 +93.296 +89.108 +92.11 +62258 17.1 +89.92 +79.73 +89.127 +92.24 +53.89 +33.180 +92.24 +93.169a +90.24 +92.24 +36.38 +92.11 +89.92 +90.24 +92.24 +33.236 +92.11 +33.184 +92.11 +93.169a +92.1 +62281 33.70 +92.24 +9.23 +92.1 +67.88 +33.224 +83.13 +7.20 +89.92 +83.13 +92.24 +7.16 +83.5 +59.23 +92.24 +93.172 +15.123 +89.92 +28.71 +28.69 28.71 +33.70 +92.23 +92.15 +92.1 +33.180 +33.180 +92.24 +24.52 +92.14 +33.70 +92.11 +91.13 +92.29 +28.1 +92.27 +33.69 +92.1 +89.87 +92.29 +92.11 +33.69 +92.22 +17.3 +92.24 +35.20 +90.51 +19.4 +92.24 +93.169a +33.69 +61.9 +33.28 +92.24 +53.89 +33.28 +92.11 +93.169a +89.65 +72.22 +33.70 +33.262 +90.24 +92.24 +72.22 +89.124 +89.65 +72.12 +92.15 +92.1 +19.2 +89.127 +15.66 +92.11 +92.24 +93.28 +37.114 +84.18 +93.205 +92.24 +53.89 +62362 93.341a +93.296 +62365 17.1 +89.92 +79.73 +89.50 +33.69 +92.11 +69.15 +89.93 +92.6 +63.20 +92.24 +36.38 +92.11 +58.67 +33.277 +92.30 +89.92 +33.69 +69.3 +58.67 +33.69 +92.22 +63.20 +92.24 +87.76 +92.24 +53.89 +58.67 +10.6 +92.27 +19.18 +93.296 +92.24 +8.24 +69.11 +92.1 +24.1 +92.6 +83.13 +92.24 +1.97 +89.108 +92.11 +89.127 +67.55 +33.277 +93.296 +89.87 +67.53 +4.45 +14.76 +62417 15.165 +92.24 +93.169a +84.3 +92.24 +93.205 +84.16 +92.24 +7.7 +62427 13.1 +67.187 +62430 92.11 +69.3 +15.93 +84.22 +92.24 +7.7 +89.59 +69.3 +53.34 +89.125 +23.1 +92.24 +51.7 +89.50 +15.40 +92.24 +93.297 +83.20 +84.18 +92.11 +89.87 +33.69 +92.14 +33.428 +92.24 +9.24 +92.29 +13.133 +33.184 +89.87 +33.69 +92.11 +89.131 +62465 90.45 +92.29 +88.106 +71.14 +69.3 +92.6 +37.111 +92.11 +89.50 +33.69 +92.11 +92.24 +93.297 +18.1 +92.11 +92.7 +89.87 +89.8 +92.24 +33.333 +92.7 +56.20 +92.11 +33.69 +92.11 +92.24 +93.172 +92.4 +69.3 +71.32 +20.61 +92.23 +89.59 +92.24 +33.98 +92.24 +93.169a +13.106 +92.27 +33.69 +33.153 +58.30 +23.99 +67.62 +23.99 +62511 15.93 +67.55 +84.22 +92.24 +7.7 +92.24 +93.297 +89.87 +33.307 +92.24 +93.169a +89.87 +33.69 +92.11 +92.6 +13.4 +92.24 +37.67 +92.24 +93.172 +33.184 +93.169a +90.15 +62535 92.6 +92.29 +33.69 +89.139 +58.37 +33.69 +92.6 +90.24 +92.1 +33.184 +92.24 +93.297 +69.16 +92.1 +93.172 +58.67 +92.24 +11.55 +92.24 +92.8 +89.92 +92.24 +53.88 +37.111 +92.6 +92.1 +92.14 +42.7 +33.184 +93.169a +92.24 +37.64 +92.24 +92.2 +69.3 +13.1 +89.3 90.16 +92.24 +41.38 +92.29 +89.65 +89.3 +92.24 +41.38 +92.29 +13.1 +92.24 +37.64 +92.24 +92.2 +71.14 +92.24 +35.20 +92.24 +92.2 +39.29 +89.59 +69.3 +37.111 +92.24 +93.172 +89.124 +67.38 +92.24 +37.64 +92.24 +92.2 +69.3 +13.1 +84.9 +89.50 +33.69 +92.11 +92.24 +93.297 +69.12 +37.67 +13.4 +92.6 +33.184 +92.24 +93.169a +92.6 +33.69 +90.21 +37.67 +13.4 +92.1 +89.57 +92.29 +23.52 +89.92 +89.57 +92.29 +15.81 +84.22 +92.24 +1.39 +89.59 +33.262 +92.24 +72.2 +59.23 +92.24 +13.1 +89.3 +92.24 +72.2 +31.56 +92.1 +92.24 +33.103 +33.69 +92.11 +92.24 +93.297 +92.14 +13.4 +72.2 +91.1 +92.29 +33.69 +67.55 +15.40 +84.18 +92.24 +93.172 +89.87 +33.69 +92.11 +92.1 +92.23 +27.27 +89.5 +92.11 +56.4 88.315 +62672 13.69 +41.25 +92.7 +91.15 +60.10 92.22 +37.127 +92.7 +67.136 +92.24 +51.6 +89.50 +25.3 +37.127 +92.7 +92.24 +37.67 +92.24 +93.172 +89.50 +33.83 +67.55 +33.69 +69.3 +92.29 +89.125 +92.24 +93.59 +62700 58.67 +92.24 +93.59 +39.37 +89.50 +67.47 +18.1 +92.24 +93.297 +92.24 +93.169a +89.87 +19.9 +91.1 +92.24 +55.17 +49.27 +6.192 +89.142 +3.17 +85.51 +92.11 +92.24 +8.10 +89.87 +6.172 +79.38 +49.3 49.5 +92.11 +91.1 +15.81 +84.18 +92.11 +89.87 +33.69 +33.22 +92.24 +37.67 +92.24 +93.172 +89.92 +90.90 +92.11 +19.4 +91.1 +15.40 +67.55 +83.20 +92.24 +93.297 +89.87 +33.69 +92.11 +91.13 +15.165 +92.7 +92.11 +84.27 +89.59 +28.1 +90.21 +92.23 +56.4 +27.1 +89.5 +92.11 +62767 15.40 +92.24 +93.169a +83.20 +49.11 +92.24 +3.18 +6.192 +89.92 +92.24 +79.38 +6.172 +91.1 +33.69 +92.11 +91.13 +92.24 +9.24 +89.50 +62787 24.1 +92.11 +92.24 +53.88 +89.92 +92.24 +35.20 +33.83 +33.69 +20.76 +20.76 +33.69 +92.11 +92.24 +93.297 +18.1 +92.11 +92.7 +89.87 +20.76 +89.23 +92.1 +69.3 +27.1 +89.5 +92.11 +56.4 88.315 +33.28 +92.11 +92.24 +93.172 +92.4 +33.333 +62821 89.93 +89.8 +92.24 +33.333 +71.25 +23.99 +89.33 +12.15 +12.15 +92.25 +13.9 +89.50 +62834 33.212 +92.24 +93.297 +92.29 +92.24 +33.98 +78.28 +25.252 +89.87 +15.93 +84.22 +92.24 +7.7 +67.55 +89.87 +33.69 +92.24 +93.169a +84.6 +85.1 +92.6 +89.124 +92.24 +93.169a +33.185 +69.3 +90.51 +92.11 +89.50 +33.69 +92.11 +92.24 +93.297 +69.11 +92.1 +33.70 +69.11 +28.1 +90.21 +37.35 +74.12 +37.127 +92.6 +89.92 +37.35 +74.12 +20.76 +92.6 +33.184 +93.169a +69.3 +74.12 +37.35 +92.23 +90.31 +92.1 +89.131 +62894 92.6 +84.13 +62898 92.24 +37.111 +92.1 +92.6 +78.2 +88.310 +90.65 +67.131 89.25 +92.29 +92.24 +93.297 +68.60 +37.127 +92.11 +89.124 +92.24 +93.172 +33.83 +33.69 +89.67 +92.29 +37.127 +69.3 +58.67 +34.11 +92.24 +37.74 93.208 +59.24 +92.24 +37.67 +92.25 +13.9 +33.455 +92.24 +37.74 93.208 +89.50 +92.24 +93.297 +24.52 +92.24 +33.98 +92.29 +15.165 +84.27 +92.24 +93.169a +89.87 +17.12 +84.20 +7.63 +83.13 +80.1 +33.129 +7.71 +89.94 +33.6 +93.437 +62956 13.4 +67.201 +92.24 +51.6 +67.199 +13.4 +78.42 +60.53 +91.1 +33.69 +92.24 +93.172 +91.13 +92.24 +37.67 +92.7 +89.127 +33.83 +92.30 +20.65 +20.65 +20.76 +92.11 +33.69 +92.11 +92.24 +93.297 +92.24 +37.67 +92.7 +20.76 +33.184 +92.24 +53.89 +69.3 +62992 37.67 +89.131 +62995 37.74 93.208 +89.50 +67.47 +37.111 +92.11 +92.11 +89.59 +20.76 +89.50 +15.168 +92.24 +93.169a +89.87 +15.188 +92.25 +92.24 +6.27 +15.40 +84.16 +92.24 +33.129 +8.11 +80.1 +92.27 +33.129 +33.6 +93.453 +83.5 +92.11 +20.76 +89.93 +89.108 +92.11 +58.37 +60.11 +84.9 +89.92 +84.9 +89.94 +83.10 +92.24 +93.169a +63038 33.61 +89.93 +33.46 +92.24 +93.297 +89.87 +85.32 +83.46 +92.24 +6.27 +89.94 +63050 33.61 +93.169a +92.24 +93.538 +92.24 +37.67 +92.24 +93.172 +89.50 +92.29 +92.24 +33.46 +33.68 +59.1 +92.24 +93.172 +89.33 +83.26 +92.24 +1.89 +85.1 +92.24 +80.1 +83.5 +20.76 +92.24 +93.169a +89.92 +63079 33.61 +33.6 +33.7 +33.5 +89.50 +33.69 +92.24 +93.297 +92.24 +53.88 +92.24 +93.172 +69.3 +33.61 +92.24 +37.67 +92.24 +93.172 +89.125 +90.21 +92.30 +33.69 +37.67 +92.24 +93.172 +13.4 +33.28 +92.24 +93.297 +92.27 +33.61 +33.61 +63113 92.24 +55.17 +20.76 +92.24 +93.169a +57.55 +92.24 +6.162 +92.11 +89.87 +90.45 +60.13 +63.14 +59.27 +55.17 +63.14 +89.93 +92.24 +6.176 +63133 13.1 +92.24 +6.176 +48.6 +90.16 +92.24 +84.13 +48.4 +84.29 +63.1 +89.50 +33.69 +90.58 +92.26 +69.3 +19.27 +92.11 +89.125 +30.104 +89.6 +92.11 +92.14 +13.104 +89.59 +92.24 +33.53 +13.106 +57.89 +92.24 +6.162 +92.1 +92.25 +89.92 +63167 92.24 +6.162 +92.1 +15.215 +6.219 +89.50 +89.136 +92.24 +55.17 +92.29 +42.7 +89.136 +17.1 +83.25 +92.24 +6.27 +92.24 +93.169a +92.24 +10.16 +92.11 +89.92 +92.24 +10.50 +92.24 +10.16 +92.11 +93.253e +92.24 +92.24 +93.217 +89.92 +93.253c +92.24 +93.242 +89.50 +93.169a +24.1 +92.24 +10.16 +89.92 +92.24 +36.38 +17.3 +92.27 +25.43 +33.69 +92.24 +10.16 +9.34 +91.13 +92.24 +9.46 +92.6 +67.44 +33.69 +92.24 +36.38 +91.13 +92.24 +10.16 +92.6 +63230 67.131 +92.30 +92.24 +67.1 +18.1 +92.24 +36.38 +92.11 +84.22 +92.24 +57.4 +67.48 +92.29 +92.24 +93.169a +32.4 +90.21 +67.20 +59.23 +68.22 +89.59 +13.126 +92.24 +33.53 +33.69 +23.39 +6.118 +6.201 +59.39 +85.3 +89.50 +6.133 +59.39 +92.24 +6.201 +3.26 6.35 +85.39 +15.192 +92.11 +92.24 +8.19 +89.50 +63273 57.125 +92.24 +6.201 +92.24 +93.169a +33.69 +68.22 +89.87 +16.16 +92.24 +8.10 +23.110 +92.24 +23.110 +89.50 +92.24 +93.172 +89.32 +67.201 +13.104 +89.59 +69.3 +85.55 +83.46 +92.24 +6.27 +92.24 +8.1 +67.136 +92.24 +67.184 +89.23 +13.1 +78.2 +92.24 +67.178 +92.30 +92.24 +67.184 +33.161 +92.24 +93.297 +90.22 +19.35 +92.11 +92.24 +8.46 +89.87 +15.203 +89.50 +15.81 +92.24 +55.17 +89.87 +89.136 +19.35 +92.24 +8.46 +92.24 +60.46 +89.87 +92.24 +58.37 +92.24 +20.78 +92.11 +89.136 +84.17 +92.24 +93.169a +15.81 +67.45 +24.1 +67.20 +92.11 +23.99 +69.3 +19.35 +92.11 +92.24 +8.46 +89.125 +92.22 +92.24 +55.17 +6.34 +92.11 +92.24 +8.41 +19.15 +63364 15.40 +67.53 +8.64 +89.92 +2.7 +91.1 +92.24 +24.1 +33.262 +89.93 +72.1 +13.1 +92.11 +92.24 +33.264 +89.93 +92.30 +28.1 +90.21 +72.1 +33.69 +89.59 +89.93 +92.7 +63389 89.23 +13.107 +92.29 +89.59 +92.24 +33.53 +13.106 +8.61 +92.11 +69.3 +19.39 +89.93 +89.97 +58.37 +33.53 +33.69 +24.1 +84.16 +92.27 +19.14 +63410 67.48 +92.29 +33.161 +92.24 +93.297 +93.202c +84.3 +93.413 +58.67 +36.38 +92.24 +93.169a +89.124 +28.79 +89.26 +92.24 +25.251 +92.24 +93.172 +90.22 +15.203 +92.24 +8.1 +92.24 +93.169a +63436 13.138 +92.24 +93.297 +89.50 +15.81 +89.87 +15.203 +92.24 +8.1 +92.11 +89.94 +15.81 +89.93 +93.281 +92.24 +15.81 +84.18 +92.11 +14.59 +92.24 +60.46 +15.187 +6.207 63.11 79.121 +6.208 +89.92 +6.209 +78.42 +86.4 +60.33 +63466 18.1 +92.24 +8.1 +92.24 +93.169a +89.87 +18.13 +92.11 +6.154 +89.123 +92.24 +6.207 +64.14 +41.25 +13.4 +92.24 +93.172 +52.6 +63485 13.69 +83.13 +92.24 +80.1 +83.5 +20.76 +1.97 +89.93 +83.13 +92.24 +1.97 +7.75 +67.115 +84.22 +92.27 +67.129 +92.23 +63503 85.32 +89.50 +83.2 +89.26 +92.24 +67.201 +92.24 +93.172 +89.33 +83.26 +85.1 +92.24 +7.75 +85.32 +92.24 +93.169a +63520 92.24 +63522 92.24 +67.177 +93.253c +92.24 +93.242 +15.81 +67.187 +84.16 +92.24 +7.75 +14.53 +67.128 +13.1 +89.87 +24.7 +92.24 + +15.203 +84.4 +92.24 +7.75 +89.50 +15.230 +89.87 +15.81 +84.18 +93.341a +93.296 +89.92 +84.18 +92.24 +58.37 +36.38 +92.27 +25.33 +92.24 +93.169a +89.87 +33.69 +92.11 +15.203 +92.24 +12.9{N:001} +84.4 +92.24 +7.75 +89.93 +69.3 +28.1 +83.6 +85.32 +92.11 +89.50 +15.40 +92.24 +93.296 +89.92 +92.24 +58.37 +36.38 +89.87 +15.81 +84.16 +92.24 +7.75 +63588 15.230 +92.24 +60.11 +89.116 +63593 92.24 +58.37 +36.38 +15.235 +67.110 +92.24 +93.296 +63601 15.81 +60.46 +84.16 +92.24 +7.75 +89.87 +17.31 +24.7 +85.3 +92.24 +6.154 +89.130 +69.3 +15.93 +89.127 +15.81 +89.93 +93.341a +93.296 +15.144 +92.11 +89.87 +15.93 +84.22 +92.24 +7.75 +89.87 +24.14 +92.24 +6.154 +85.3 +89.92 +92.24 +6.159 +92.27 +85.1 +83.46 +92.24 +8.10 +92.11 +69.3 +89.108 +92.24 +6.154 +85.3 +89.125 +63.31 +79.120 +83.47 +60.10 +80.1 +89.127 +67.47 +15.93 +89.93 +92.24 +58.37 +36.38 +92.24 +15.81 +60.46 +84.16 +92.24 +7.75 +89.87 +24.1 +89.87 +31.102 +89.23 +67.129 +32.4 +92.24 +33.53 +90.21 +71.34 +92.11 +89.121 +23.121 +23.93 +63681 15.37 +67.55 +84.18 +92.11 +92.24 +36.38 +63688 93.253c +85.8 +83.24 +92.24 +7.75 +83.20 +25.138 +63696 67.139 +25.138 +17.31 24.13 +84.22 +92.24 +7.75 +89.87 +24.14 +60.11 +12.28 +13.8 +79.27 +17.12 +83.5 +17.26 +92.24 +8.1 +92.24 +93.169a +60.10 +83.24 +92.24 +8.10 +89.92 +60.10 +83.24 +92.24 +8.49 +91.1 +33.69 +92.11 +92.30 +9.34 +92.15 +25.138 +33.69 +92.11 +89.33 90.21 +15.203 +92.24 +12.9{N:001} +92.1 +89.93 +69.3 +28.1 +83.6 +85.32 +92.11 +92.29 +33.69 +16.13 +84.16 +92.24 +83.40 +89.87 +24.14 +92.24 +93.169a +85.8 +63756 69.3 +28.1 +90.21 +93.169a +13.4 +33.69 +92.11 +93.169a +9.34 +92.15 +25.138 +92.14 +27.41 +92.30 +31.29 +90.21 +92.24 +43.20 +13.4 +33.69 +92.11 +87.53 +89.65 +92.6 +15.201 +92.11 +33.69 +92.1 +83.6 +85.32 +92.11 +92.1 +92.11 +15.203 +33.69 +92.11 +93.169a +93.253c +16.13 +92.30 +33.69 +92.11 +33.6 +33.247 +92.27 +33.138 +33.243 +33.69 +92.11 +93.169a +69.3 +92.1 +18.6 +89.23 +67.129 +15.101 +84.18 +92.24 +12.12 +89.124 +15.10 +84.18 +92.24 +11.23 +92.1 +89.87 +33.69 +92.11 +15.101 +84.18 +92.24 +12.12 +92.1 +89.92 +12.12 +92.7 +89.92 +12.1 +92.1 +89.92 +12.1 +92.7 +15.81 +93.253c +92.24 +93.242 +33.189 +92.24 +36.38 +90.21 +24.1 +92.24 +12.9{N:001} +89.93 +92.29 +33.69 +92.11 +63854 13.104 +67.76 +92.24 +67.178 +92.30 +92.24 +63861 67.177 +89.93 +92.24 +7.49 +79.112 +83.5 +85.1 +92.24 +36.38 +89.26 +92.24 +25.251 +92.24 +93.172 +15.81 +92.24 +93.169a +89.87 +85.8 +83.9 +92.24 +83.9 +89.87 +33.69 +92.11 +25.248 +92.7 +89.87 +92.29 +33.69 +28.47 +63893 92.24 +8.30 +89.92 +92.24 +8.41 +92.11 +89.50 +25.125 +92.24 +36.38 +24.1 +92.24 +12.9{N:001} +63907 33.69 +92.11 +92.24 +93.169a +67.55 +25.248 +92.7 +64.14 +15.66 +92.1 +92.24 +12.12 +89.93 92.1 +15.66 +92.7 +91.1 +92.29 +33.69 +23.185 +89.87 +33.69 +92.11 +57.125 +12.18 +88.24 +71.8 +40.8 +92.12 +92.24 +88.310 +40.8 +92.11 +71.8 +92.12 +13.34 +13.34 +63944 93.155 +92.22 +63.20 +92.24 +60.21 +92.24 +33.129 +93.95 +69.3 +85.1 +89.108 +92.11 +63957 15.81 +93.169a +89.50 +33.69 +92.11 +92.24 +58.37 +36.38 +24.1 +92.24 +12.9{N:001} +89.124 +92.24 +33.69 +92.11 +63974 24.1 +83.13 +92.24 +8.30 +92.11 +92.24 +8.56 +92.24 +6.22 +89.92 +85.34 +92.24 +8.34 +92.1 +84.22 +92.24 +63991 92.24 +6.22 +89.92 +85.34 +92.1 +92.24 +8.30 +84.22 +92.24 +8.41 +92.11 +69.5 +69.5 +31.35 +91.1 +67.48 +67.186 +60.17 +67.55 +85.1 +83.13 +92.24 +36.38 +92.11 +89.93 +93.155 +89.108 +92.11 +15.81 +92.24 +93.169a +92.24 +7.49 +79.112 +89.87 +85.8 +83.9 +92.24 +83.10 +89.87 +33.69 +25.248 +92.7 +67.44 +33.69 +92.24 +93.155 +85.42 +92.24 +8.34 +92.6 +83.1 +89.92 +24.1 +92.24 +8.30 +92.1 +89.92 +85.42 +92.24 +8.30 +92.6 +89.92 +85.34 +84.22 +92.24 +8.41 +92.1 +64060 69.3 +13.3 +31.98 +89.125 +31.86 +33.28 +93.155 +89.92 +33.69 +92.11 +92.24 +12.9{N:001} +92.1 +89.92 +92.24 +12.1 +92.1 +33.69 +92.11 +92.24 +93.169a +89.33 +24.1 +92.1 +31.35 +25.119 +92.24 +69.3 +24.1 +64090 31.35 +64092 91.6 +89.93 +59.1 +58.37 +33.477 +90.45 +92.24 +93.169a +83.33 +92.24 +36.38 +92.27 +69.3 +64106 33.61 +83.13 +92.24 +33.52 +92.29 +89.124 +92.29 +33.61 +89.59 +64116 90.21 +93.169a +13.4 +92.24 +53.82 +92.24 +12.15 +92.24 +12.15 +64126 89.59 +31.35 +23.88 +90.65 +89.76 +92.24 +33.126 +92.11 +67.48 +92.29 +24.19 +92.25 +67.55 +93.169a +92.24 +36.38 +83.23 +92.24 +1.70 +92.24 +93.597b +89.94 +24.19 +61.10 +85.1 +89.116 +93.341a +93.296 +89.92 +93.155 +92.24 +33.129 +93.95 +89.92 +93.270 +92.24 +84.3 +93.494 +92.24 +93.444a +89.92 +92.24 +92.24 +93.137 +89.92 +58.37 +63.20 +92.24 +36.38 +92.11 +60.11 +33.69 +92.11 +93.341a +93.296 +15.35 +44.7 +33.69 +92.11 +15.7 +89.93 +92.4 +89.107 +92.6 +15.40 +89.87 +15.95 +84.22 +92.24 +6.41 +91.12 +67.136 +92.30 +92.24 +67.192 +18.3 +92.23 +64204 67.187 +67.20 +64207 85.8 +93.169a +83.47 +92.24 +1.63 +89.130 +69.3 +28.1 +92.24 +36.38 +90.21 +93.169a +13.4 +89.50 +33.69 +92.11 +93.169a +9.46 +69.15 +92.12 +5.17 +57.1 +33.184 +92.11 +69.2 +89.87 +92.24 +33.69 +92.11 +15.215 +84.16 +92.24 +82.8 +79.108 +92.24 +6.41 +92.24 +6.11 +64246 27.27 +89.50 +15.215 +64250 67.130 +92.11 +15.212 +79.64 +89.25 +92.24 +59.9 +92.24 +4.59 +89.50 +33.69 +92.24 +36.38 +92.30 +92.27 +25.43 +92.24 +93.169a +92.24 +93.296 +92.24 +12.9{N:001} +13.4 +89.50 +93.341a +93.296 +33.212 +90.21 +92.24 +12.9{N:001} +13.4 +92.24 +6.172 +49.14 +89.23 +13.1 +49.22 +89.87 +15.215 +92.25 +84.22 +92.24 +1.70 +89.124 +92.24 +58.37 +36.38 +92.24 +6.42 +15.81 +89.23 +69.3 +85.1 +83.30 +84.3 +92.24 +1.60 +89.125 +78.42 +84.3 +81.25 +60.34 +15.212 +92.24 +6.11 +92.24 +4.59 +64318 67.45 +15.39 +64321 92.24 +1.60 +24.7 +2.6 +85.3 +89.92 +5.16 +85.4 +89.92 +5.8 +33.69 +92.11 +92.24 +93.169a +15.166 +63.20 +92.24 +5.16 +92.27 +18.3 +67.39 +15.99 +93.341a +93.296 +89.87 +15.178 +92.24 +6.11 +64350 92.24 +1.60 +59.39 +4.59 +79.123 +60.33 +60.28 +60.12 +91.12 +59.6 +85.1 +69.3 +19.27 +92.24 +6.11 +33.69 +92.11 +92.24 +93.169a +84.24 +23.24 +92.23 +92.24 +36.38 +25.161 +33.182 +92.11 +92.6 +92.14 +13.4 +28.1 +90.21 +92.24 +12.9{N:001} +13.4 +15.81 +93.169a +89.87 +18.1 +92.24 +5.8 +89.87 +57.71 +92.11 +89.93 +92.24 +5.16 +64.1 +92.29 +67.20 +60.50 +24.19 +93.169a +92.24 +36.38 +23.94 +89.121 +23.121 +64410 23.24 +33.69 +92.24 +93.341a +93.296 +92.24 +93.169a +93.341a +93.190e +25.43 +92.1 +78.28 +92.29 +33.69 +92.11 +69.1 +12.9{N:001} +92.6 +28.1 +90.21 +25.33 +92.6 +33.69 +92.11 +23.10 44.1 +92.24 +11.29 +92.1 +33.69 +92.11 +67.55 +60.49 +93.341a +93.190e +25.43 +92.1 +33.69 +92.11 +69.1 +12.9{N:001} +92.6 +28.1 +90.21 +25.33 +92.6 +33.69 +92.11 +44.3 +92.24 +64460 92.1 +33.69 +92.11 +92.24 +60.50 +93.341a +93.190e +25.33 +92.1 +25.275 +92.24 +93.296 +89.33 +33.69 +92.11 +92.24 +60.50 +25.33 +92.1 +64481 92.11 +12.9{N:001} +59.23 +92.6 +28.1 +92.6 +28.1 +90.21 +25.33 +92.6 +33.69 +92.11 +93.169a +23.10 44.1 +92.24 +64497 92.1 +72.6 +72.6 +33.69 +92.6 +64503 13.1 +67.116 +49.8 +92.10 +89.87 +15.227 +83.5 +25.1 +89.124 +64513 67.105 +16.19 +92.24 +8.30 +92.6 +89.87 +58.37 +49.8 +92.6 +89.87 +15.166 +83.5 +69.3 +25.1 +64528 92.29 +33.69 +33.153 +58.30 +23.99 +87.8 +92.24 +12.1 +91.1 +92.29 +33.69 +33.69 +92.11 +36.31 +92.1 +15.90 16.13 +92.24 +93.296 +24.7 +92.24 +36.38 +92.27 +25.43 +92.24 +93.169a +15.144 +92.27 +89.93 +17.23 +67.136 +92.24 +23.25 +83.46 +92.24 +8.36 +92.11 +89.87 +33.69 +12.9{N:001} +92.14 +13.4 +92.24 +37.111 +92.6 +89.50 +92.29 +24.1 +92.24 +93.296 +33.69 +92.24 +93.169a +12.9{N:001} +64582 92.29 +92.14 +33.69 +92.11 +92.24 +93.169a +89.67 +92.11 +13.89 +25.1 +67.119 +15.81 +92.14 +89.7 +92.6 +92.6 +92.1 +36.31 +89.50 +15.40 +92.29 +92.24 +33.98 +90.59 +92.24 +11.23 +91.15 +92.24 +36.38 +92.30 +69.3 +23.99 +89.124 +69.3 +33.69 +92.11 +92.24 +93.169a +90.21 +69.3 +23.99 +89.125 +89.67 +92.11 +13.89 +25.1 +67.119 +15.81 +92.14 +89.7 +92.6 +92.29 +13.4 +92.24 +36.38 +92.24 +33.262 +90.24 +92.29 +89.92 +92.24 +33.61 +92.29 +89.93 +28.1 +90.21 +72.1 +92.11 +92.24 +33.264 +13.1 +89.94 +13.69 +89.93 +58.37 +59.1 +92.27 +42.7 +92.24 +93.169a +89.67 +92.18 +33.61 +64667 31.29 +69.8 +92.37 +92.24 +1.39 +64673 92.24 +33.61 +6.64 +91.14 +93.153 +91.6 +92.24 +60.46 +33.51 +90.45 +90.24 +59.23 +92.27 +89.102 +90.45 +89.102 +33.224 +68.1 +92.24 +93.169a +67.119 +92.27 +67.186 +33.329 +92.24 +53.74 +92.27 +30.86 +90.4 +12.18 +88.24 +15.203 +92.27 +89.93 +85.14 +92.25 +23.93 +67.48 +92.24 +24.78 +92.11 +89.76 +59.1 +28.45 +67.136 +67.93 +67.93 +24.17 +92.11 +89.93 +33.69 +92.24 +90.24 +92.24 +37.64 +92.24 +12.1 +89.87 +23.13 41.37 +33.327 +92.11 +84.3 +93.480a +69.3 +15.49 +89.125 +85.60 +92.24 +33.288 +92.24 +12.12 +92.27 +24.52 +92.1 +89.33 +89.136 +93.190a +53.41 +2.7 +89.136 +92.7 +90.10 +12.18 +88.24 +53.41 +69.3 +67.48 +59.1 +92.29 +67.186 +91.3 +64765 92.24 +15.123 +33.180 +92.11 +33.69 +12.9{N:001} +89.65 +67.136 +92.24 +67.78 +92.29 +13.65 +92.24 +37.64 +92.24 +93.182b +33.69 +90.58 +92.11 +69.3 +92.7 +71.1 +28.1 +67.1 +89.139 +67.1 +92.27 +92.24 +12.12 +13.9 +89.5 +92.24 +57.4 +37.35 +89.125 +90.63 +76.1 +13.119 +92.24 +88.24 +12.18 +90.57 +92.7 +64809 13.1 +92.1 +33.270 +89.102 +83.13 +93.480a +89.102 +83.13 +59.23 +92.24 +93.486a +89.92 +93.568a +89.92 +84.19 +61.13 +92.24 +1.39 +89.87 +92.29 +33.69 +24.7 +92.11 +15.105 +89.87 +1.34 +15.102 +92.11 +89.122 +92.24 +24.16 +92.11 +89.87 +67.139 +24.49 +64845 84.16 +92.24 +1.11 +15.34 +92.11 +64851 91.13 +9.24 +60.11 +17.3 +92.11 +89.80 +6.162 +79.27 +92.27 +89.93 +33.69 +9.1 +93.445 +92.15 +17.1 +64867 84.22 +92.24 +1.11 +92.29 +92.24 +93.169a +92.24 +15.203 +89.122 +92.7 +84.22 +92.24 +1.11 +61.9 +15.81 +92.27 +89.83 +24.14 +92.11 +15.34 +84.22 +92.24 +1.11 +67.47 +15.88 +84.16 +93.480a +84.3 +1.46 +92.24 +33.129 +3.12 +92.27 +85.1 +83.26 +93.480a +81.28 +81.28 +13.2 +89.87 +64908 15.93 +84.22 +92.24 +7.27 +15.101 +83.5 +85.1 +85.55 +89.102 +92.24 +93.296 +89.102 +93.190b +89.102 +93.158a +89.102 +93.25 +93.379a +89.102 +93.155 +93.62 +89.102 +93.244 +93.158c +93.19a +89.102 +93.341b +92.24 +11.88 +89.102 +93.173b +93.158e +92.29 +59.23 +64943 68.68 +31.23 +92.24 +33.178 +89.107 +9.34 +89.92 +93.253a +92.24 +10.16 +92.24 +93.169a +89.92 +64957 92.24 +10.49 +92.11 +91.1 +67.136 +92.24 +67.186 +92.29 +17.6 +83.9 +83.9 +92.24 +11.23 +93.296 +33.69 +89.95 +85.1 +11.1 +9.19 +64977 92.24 + +78.42 +60.33 +60.25 +9.24 +11.23 +71.34 +13.106 +92.24 +33.53 +92.27 +33.281 +92.24 +12.18 +92.24 +88.24 +89.76 +33.74 +93.91 +90.24 +93.173a +92.24 +13.48 +15.183 +92.24 +37.109 +93.169a +89.33 +34.33 +65008 89.119 +92.4 +89.93 +57.127 +92.24 +37.101 63.18 +92.24 +35.21 +92.29 +91.3 +65019 92.29 +57.58 +1.95 +57.163 89.77 +38.14 +92.24 +88.21 +89.87 +17.20 +15.1 +19.30 +83.10 +89.87 +14.18 +59.23 +92.24 +8.58 +92.11 +89.87 +28.21 +13.48 +59.23 +92.24 +85.69 +93.480a +89.52 +33.129 +92.24 +1.95 +92.30 +92.24 +57.4 +33.1 +92.11 +93.401 +89.106 +89.106 +1.95 +8.64 +89.23 +33.54 +83.13 +33.52 +33.112 +13.48 +92.24 +7.4 +92.11 +85.84 +89.92 +69.3 +85.1 +92.24 +85.69 +83.13 +92.11 +89.92 +92.24 +35.40 53.69 +92.11 +57.125 +58.37 +89.50 +71.34 +92.24 +9.24 +15.148 +92.4 +67.136 +63.2 +67.78 +92.27 +41.24 +65093 41.24 +83.9 +92.4 +92.24 +12.9{N:001} +93.169a +67.65 +67.131 +92.24 +53.41 +93.190a +67.119 +92.24 +67.186 +92.27 +15.203 +84.3 +92.4 +33.270 +92.24 +23.93 +92.11 +89.107 +92.4 +13.48 +60.10 +92.29 +65121 30.87 33.343 +60.11 +93.202f +92.24 +33.129 +93.66a +92.27 +33.131 +93.179a +89.92 +93.246 +89.87 +33.178 +33.69 +12.9{N:001} +28.12 +59.23 +92.6 +28.54 +92.27 +30.86 +63.20 +92.29 +92.24 +60.11 +60.10 +57.125 +92.24 +42.21 87.1 +92.24 +35.21 +92.29 +89.92 +53.73 +89.122 +92.27 +68.39 +93.173a +15.34 +84.16 +92.24 +80.1 +92.24 +58.47 +89.87 +57.71 +6.219 +92.11 +89.87 +30.107 +92.24 +30.107 +65174 93.246 +65176 60.5 +89.108 +92.24 +60.20 +53.74 +91.1 +67.33 +92.24 +67.70 +92.24 +67.178 +92.24 +51.8 +85.1 +59.23 +89.116 +65193 92.24 + +65196 13.107 +67.113 +84.4 +92.24 +1.11 +14.75 +64.13 +15.11 +14.4 +20.8 +89.92 +59.37 +63.1 +92.24 +7.2 +83.5 +65213 17.12 +89.92 +24.1 +92.11 +15.140 63.23 +8.21 +64.12 +2.3 +89.92 +85.63 +83.46 +60.10 +59.27 +92.11 +89.92 +59.38 +59.23 +12.18 +88.24 +89.87 +68.1 +33.70 +58.37 +33.2 +78.53 +92.24 +12.18 +13.128 +33.76 +92.11 +65245 85.69 +83.13 +93.480a +93.172 +9.1 +53.8 +90.15 +59.23 +11.55 +92.24 +1.43 +92.24 +1.43 1.5 +89.94 +13.107 +92.24 +14.74 +92.29 +15.123 +92.24 +11.1 +89.92 +25.221 +89.33 +24.52 +60.10 +59.27 +92.24 +58.47 +33.1 +33.70 +92.11 +89.94 +25.220 +89.92 +25.213 +33.69 +91.13 +65285 92.29 +92.24 +33.70 +13.4 +93.445 +91.12 +92.16 +92.4 +24.52 +59.27 +92.24 +58.47 +33.1 +92.4 +13.8 +92.27 +23.52 +93.546 +89.92 +93.531 +89.92 +93.465 +89.92 +92.24 +85.69 +92.24 +93.530 +89.102 +93.486a +89.102 +93.495 +93.555 +89.92 +92.24 +93.415 +89.102 +93.609 +89.102 +93.545 +93.398 +89.92 +92.24 +1.79 +92.24 +93.517 +92.24 +84.21 +93.512 +89.92 +92.24 +85.78 +93.562 +89.102 +93.172 +89.102 +11.54 +93.507 +89.92 +93.411 +24.52 +33.70 +92.11 +92.24 +92.5 +33.2 +92.24 +76.8 +92.24 +12.1 +65355 25.220 +59.23 +89.92 +65359 58.37 +90.58 +58.37 +33.69 +33.136 +89.106 +92.14 +89.106 +89.124 +58.37 +33.408 +33.69 +90.21 +6.199 +59.40 +13.1 +89.124 +85.40 +89.107 +92.24 +60.20 +92.24 +93.296 +33.78 +92.24 +33.80 +92.11 +89.92 +33.76 +92.11 +9.1 +93.487 +89.92 +92.24 +85.69 +93.480a +59.23 +92.29 +92.7 +28.21 +13.1 +89.92 +24.62 +92.24 +33.98 +92.1 +89.23 +69.3 +64.12 +92.7 +31.29 +92.29 +88.283 +89.23 +13.4 +67.199 +60.50 +92.24 +67.186 +89.125 +92.29 +13.4 +92.24 +33.69 +90.4 +92.24 +53.79 +93.194 +89.87 +13.104 +67.136 +92.24 +61.13 +67.142 +33.69 +92.24 +12.1 +47.4 +63.20 +92.24 +12.18 +92.1 +83.46 +59.23 +9.11 +89.87 +33.459 +92.24 +10.30 +92.7 +89.92 +92.24 +10.31 +92.7 +89.92 +92.24 +9.32 +92.7 +33.488 +24.1 +89.92 +92.24 +9.31 +92.7 +33.486 +33.487 +65466 83.46 +92.24 +87.76 +92.1 +89.92 +83.46 +92.24 +87.83 +92.1 +67.136 +92.24 +67.142 +92.30 +47.4 +89.142 +92.24 +12.18 +92.1 +89.87 +33.459 +89.93 +13.128 +33.480 +83.13 +92.24 +1.5 +83.48 +89.92 +33.477 +83.46 +92.24 +1.39 +83.53 +8.64 +89.92 +2.3 +89.92 +1.36 +1.37 +92.24 +1.28 +13.64 +13.62 +14.53 +89.92 +92.24 +1.29 +13.62 +8.64 +67.17 +15.81 + +12.9{N:001} +92.24 +78.2 +89.92 +79.22 +89.87 +13.104 +59.23 +65527 92.27 +33.176 +92.24 +33.126 +12.9{N:001} +21.27 +9.1 +93.183 +31.56 +92.24 +33.98 +92.29 +93.169a +92.24 +93.538 +9.24 +28.50 +90.7 +92.24 +12.1 +90.59 +92.7 +76.7 +89.92 +33.480 +89.92 +33.477 +92.27 +90.45 +90.4 +92.11 +92.24 +12.1 +83.9 +83.9 +92.7 +64.14 +92.37 +28.1 +92.29 +92.24 +30.83 +30.57 +89.92 +28.6 +92.24 +12.1 +37.112 +89.76 +9.17 +88.140 +20.76 +20.71 +92.27 +92.24 +12.1 +23.94 +13.38 18.18 +92.24 +24.87 +92.24 +23.99 +89.33 +69.3 +13.1 +71.2 +37.16 +92.11 +90.1 +92.11 +89.23 +93.91 +33.69 +90.23 +92.11 +24.5 +92.24 +12.9{N:001} +83.33 +92.1 +67.86 +67.86 +89.33 +65611 82.8 +92.1 +85.1 +89.59 +69.3 +25.242 +65619 25.122 +92.1 +92.24 +26.3 +89.92 +25.133 +92.24 +33.74 +92.1 +89.94 +59.75 +89.93 +92.24 +8.63 +92.1 +6.147 +89.27 +25.59 +89.33 +69.3 +13.92 +92.24 +26.4 +92.1 +83.13 +1.19 +69.7 +13.142 +92.24 +53.46 +92.6 +90.79 +23.205 +28.26 +92.1 +41.16 +23.88 +59.37 +92.1 +25.121 +89.78 +92.24 +85.26 +92.6 +9.1 +11.57 +71.1 +33.69 +89.79 +65669 90.58 +92.7 +90.24 +92.24 +10.22 +93.91 +90.21 +89.93 +23.102 +89.92 +52.4 +89.92 +92.24 +7.75 +92.11 +85.1 +83.9 +92.4 +67.119 +92.24 +67.142 +92.29 +89.127 +53.79 +13.4 +89.92 +28.1 +90.21 +33.463 +33.463 +92.11 +92.24 +12.1 +89.3 +10.34 +92.24 +8.43 +92.11 +17.12 +83.46 +92.24 +6.112 +92.11 +28.6 +33.70 +90.24 +92.24 +23.93 +92.24 +53.82 +90.21 +69.9 +35.54 +83.13 +1.19 +69.9 +92.24 +8.63 +92.11 +90.79 +23.205 +92.29 +92.24 +93.169a +23.94 +92.24 +12.1 +92.27 +59.23 +92.4 +13.1 +33.270 +89.50 +92.24 +76.4 +92.24 +12.1 +87.20 +89.95 +92.24 +33.288 +92.24 +12.18 +92.24 +88.24 +57.125 +90.14 +92.24 +12.12 +59.50 +92.29 +92.27 +92.7 +89.102 +24.7 +89.102 +24.52 +89.23 +69.3 +93.91 +15.101 +84.22 +92.24 +1.11 +89.124 +33.69 +92.37 +33.69 +12.9{N:001} +92.24 +12.9{N:001} +92.1 +17.12 +87.34 +82.8 +92.1 +67.119 +71.8 +13.9 +92.24 +39.11 +92.6 +37.8 6.117 +92.24 +37.8 +92.6 +89.50 +31.42 +32.16 +59.23 +11.58 +93.182b +90.21 +89.102 +12.9{N:001} +89.102 +53.82 +37.106 +92.24 +12.1 +92.11 +92.29 +92.24 +93.169a +92.27 +92.7 +20.76 +89.87 +24.52 +25.281 +92.24 +25.281 +89.88 +33.69 +90.58 +92.24 +93.296 +89.92 +92.24 +63.21 +53.74 +92.14 +42.7 +9.24 +11.25 +65835 93.296 +90.58 +92.11 +41.52 +89.92 +53.41 +59.27 +92.7 +90.23 +92.24 +33.126 +93.169a +93.387 +13.62 +40.8 +92.24 +88.310 +92.7 +89.87 +57.125 +92.24 +57.84 +92.24 +88.24 +12.18 +89.23 +92.7 +13.69 +92.24 +33.288 +89.92 +92.24 +10.28 +92.7 +89.92 +59.23 +92.24 +67.119 84.16 +83.30 +71.8 +59.7 +33.308 +12.9{N:001} +92.24 +12.1 +92.4 +89.95 +58.37 +33.98 +59.1 +33.319 +89.92 +33.168 +92.11 +33.69 +21.27 +89.122 +92.24 +10.4 +92.24 +88.268 +92.29 +91.3 +65899 92.24 +31.52 +92.24 +33.98 +92.11 +53.41 +65906 59.72 +67.136 +92.24 +67.186 +92.30 +9.20 +78.42 +60.41 +89.94 +65916 68.68 +92.24 +33.236 +92.24 +53.74 +89.92 +92.24 +34.5 +92.24 +19.34 +92.24 +5.8 +89.92 +92.24 +33.178 +89.94 +13.107 +59.23 +9.20 +53.59 +65937 59.1 +33.480 +89.92 +33.477 +90.4 +92.24 +53.74 +13.107 +89.94 +59.23 +92.24 +65950 92.24 + +57.99 +59.23 +57.9 +89.92 +92.24 +57.15 +89.92 +92.24 +57.16 +57.186 +89.92 +57.89 +92.11 +59.23 +78.53 +71.8 +92.12 +57.40 +90.65 +89.95 +89.90 +67.92 +68.68 +31.23 +83.13 +92.24 +7.16 +89.95 +23.20 +89.90 +7.2 +23.20 +57.129 +5.1 +89.84 +25.132 +89.92 +88.55 +26.3 +33.354 +92.24 +12.1 +89.92 +90.65 +25.89 +90.20 +63.1 +92.24 +87.64 +89.94 +92.24 +12.9{N:001} +59.72 +92.24 +21.27 +89.90 +67.92 +66010 92.24 + +66013 93.296 +89.92 +93.190b +15.101 +84.16 +92.24 +7.16 +67.33 +92.24 +67.199 +92.24 +33.178 +92.24 +60.56 +89.87 +66029 9.24 +23.175 +67.131 +8.69 +10.16 +92.11 +13.5 +15.188 +92.27 +85.32 +66040 67.92 +83.24 +92.24 +7.49 +92.24 +7.16 +92.24 +33.131 +79.10 +92.24 +33.163 +57.112 +90.14 +92.24 +15.93 +84.22 +92.24 +7.16 +92.27 +24.1 +93.296 +89.92 +93.190b +67.62 +15.93 +84.22 +92.24 +7.16 +33.161 +57.112 +57.125 +89.87 +93.296 +24.49 +84.16 +92.11 +89.107 +92.24 +93.190b +33.69 +24.7 +84.16 +92.4 +89.87 +92.24 +24.33 +92.11 +30.55 +92.12 +90.14 +92.11 +57.125 +89.87 +33.69 +93.296 +6.69 +66097 6.69 +69.3 +57.2 +92.1 +89.124 +92.27 +57.1 +92.29 +92.6 +57.71 +89.76 +92.24 +33.126 +93.169a +93.387 +92.24 +93.538 +15.227 +89.87 +18.3 +92.11 +92.24 +82.8 +8.30 +17.10 +92.11 +89.87 +67.113 +79.67 +92.24 +8.49 +92.11 +89.92 +92.24 +8.51 +89.87 +15.240 +17.6 +89.92 +15.227 +89.87 +15.93 +89.107 +92.11 +84.22 +92.24 +7.16 +15.227 +89.92 +15.238 +89.92 +33.354 +92.24 +12.1 +89.87 +24.1 +59.23 +92.24 +11.1 +92.11 +15.227 +89.92 +33.354 +92.24 +12.1 +89.87 +27.61 +92.11 +90.21 +66167 13.1 +92.24 +89.60 +92.24 +57.112 +17.12 +83.23 +92.24 +79.10 +7.48 +92.24 +7.16 +66180 78.46 +25.208 +89.92 +25.217 +89.27 +92.24 +13.111 +92.11 +89.87 +18.6 +92.11 +92.24 +93.296 +89.92 +92.24 +93.190b +15.133 +59.23 +92.24 +11.1 +84.18 +92.11 +83.23 +92.24 +7.40 +92.24 +33.129 +93.344 +25.211 +89.87 +24.1 +92.24 +93.296 +33.28 +84.18 +92.24 +11.1 +9.24 +93.183 +92.15 +25.213 +89.27 +92.29 +89.139 +92.4 +92.15 +24.49 +64.12 +57.4 +76.1 +89.139 +53.5 +90.45 +92.24 +15.227 +92.11 +92.24 +12.1 +93.7 +89.92 +93.180 +89.92 +93.157a +92.24 +12.1 +92.24 +10.20 +92.4 +87.24 +92.24 +87.77 +92.11 +93.169a +89.136 +92.27 +92.7 +37.111 +89.92 +33.277 +83.45 +85.26 +93.297 +30.75 +92.30 +37.127 +89.136 +92.7 +92.24 +88.24 +89.92 +88.12 +33.277 +89.92 +33.163 +9.24 +20.85 +37.30 +92.7 +89.124 +92.24 +68.2 +92.24 +23.88 +20.61 +92.27 +92.24 +12.1 +23.94 +84.4 +23.121 +92.27 +92.4 +33.270 +13.4 +89.92 +89.27 +92.24 +31.85 +92.24 +33.126 +92.11 +92.29 +92.27 +24.14 +89.92 +28.1 +79.68 +92.24 +33.126 +92.11 +89.92 +92.24 +31.85 +92.24 +90.4 +92.11 +90.51 +92.11 +92.24 +23.131 +92.29 +83.42 +59.23 +92.7 +91.1 +11.57 +67.38 +28.1 +90.21 +66330 28.13 +42.8 +64.13 +89.93 +92.24 +37.56 +92.7 +89.124 +92.24 +12.1 +92.27 +33.283 +89.76 +33.101 +59.23 +92.24 +53.79 +24.78 +92.24 +53.82 +92.11 +13.106 +61.9 +89.50 +41.52 +89.92 +31.60 +66358 92.24 +13.102 +92.7 +92.24 +88.310 +89.59 +71.14 +13.117 +67.145 +22.35 25.148 +90.15 +85.26 +92.24 +12.9{N:001} +89.92 +15.66 +92.24 +30.89 +92.7 +93.387 +93.169a +71.34 +91.6 +92.27 +1.11 +57.125 +67.119 +67.78 +13.65 +59.23 +92.27 +33.70 +92.24 +12.1 +89.76 +33.101 +92.24 +88.24 +66397 67.25 +92.11 +53.79 +91.6 +93.266 +33.69 +90.21 +53.79 +92.7 +13.81 +12.9{N:001} +92.24 +12.1 +90.16 +92.24 +11.57 +92.7 +64.12 +92.1 +92.11 +31.56 +89.8 +59.23 +71.8 +59.19 +33.70 +90.58 +92.7 +89.87 +13.104 +59.23 +9.20 +71.8 +92.18 +69.3 +36.14 +92.24 +53.79 +92.30 +20.35 +89.121 +92.24 +11.12 +89.124 +89.93 +59.23 +92.24 +53.79 +67.131 +93.325 +89.92 +92.24 +61.1 +59.7 +33.70 +89.93 +33.204 +92.24 +67.142 +92.29 +92.7 +13.4 +92.24 +36.39 +92.24 +53.79 +89.92 +92.24 +34.44 +92.27 +92.24 +12.1 +34.43 +90.58 +92.24 +10.20 +92.7 +33.69 +90.58 +93.7 +66478 90.6 +92.24 +10.29 +92.6 +88.69 +59.23 +92.24 +11.56 +92.24 +9.22 +92.7 +60.46 +92.24 +12.1 +23.94 +92.24 +87.77 +92.11 +15.66 +92.11 +88.69 +92.7 +89.76 +92.24 +31.70 68.44 +59.27 +89.122 +92.24 +88.108 +92.7 +66509 33.70 +92.11 +84.18 +92.24 +11.1 +17.5 +92.11 +92.24 +53.87 +89.92 +92.24 +37.91 +92.24 +7.16 +89.92 +92.24 +11.48 +88.190 +90.44 +92.24 +33.224 +92.11 +92.24 +11.1 +89.92 +33.204 +90.6 +92.24 +93.169a +92.24 +23.93 +92.24 +89.121 +23.121 +66544 37.110 +92.11 +92.24 +37.110 +89.87 +85.32 +84.22 +37.122 +67.119 +92.24 +67.207 +89.23 +13.104 +67.191 +67.20 +89.124 +59.1 +92.24 +24.52 +92.24 +33.98 +31.102 31.35 +89.92 +13.48 +60.2 +92.24 +9.24 +78.42 +60.80 +60.14 +89.87 +13.107 +67.136 +92.24 +67.207 +15.123 +92.11 +92.24 +37.56 +89.92 +92.24 +53.77 +89.92 +92.24 +53.94 +83.13 +93.480a +89.92 +93.28 +92.24 +53.89 +89.92 +93.205 +89.92 +93.190f +89.92 +93.17b +89.92 +59.7 +58.67 +89.3 +10.32 58.23 +53.90 +89.87 +85.40 +92.11 +83.13 +92.24 +83.10 +33.181 +89.76 +58.30 +76.1 +89.139 +89.76 +58.30 +33.126 +90.45 +92.29 +92.7 +67.47 +93.296 +59.38 +12.18 +88.24 +33.69 +90.58 +92.11 +37.56 +92.24 +11.55 +89.92 +53.77 +89.65 +92.4 +67.205 +56.12 +89.27 +88.7 +9.24 +23.145 +89.76 +92.14 +92.29 +23.136 +28.21 +13.1 +59.23 +92.7 +89.92 +59.23 +92.24 +11.12 +93.182b +90.21 +89.76 +92.24 +33.126 +93.169a +93.387 +92.24 +93.538 +92.27 +92.7 +20.76 +92.27 +92.24 +12.1 +23.94 +89.121 +23.121 +89.76 +92.29 +92.29 +85.14 +83.33 +92.7 +23.129 +92.29 +13.4 +92.24 + +92.24 +88.195 +90.1 +92.7 +92.24 +45.7 +92.24 +13.48 +78.51 +7.44 +79.107 +89.92 +69.3 +71.1 +89.76 90.23 +58.37 +92.23 +92.24 +21.25 +89.23 +69.7 +13.69 +1.43 +92.24 +1.43 +33.126 +58.37 +92.24 +66715 83.9 +9.1 +89.76 +92.27 +71.34 +21.27 +92.4 +66723 32.11 +92.24 +92.24 +93.296 +89.92 +93.190b +25.158 +89.92 +32.18 +90.21 +9.24 +27.23 +13.1 +89.92 +27.26 +25.213 +89.95 +27.61 +92.11 +90.21 +89.107 +92.24 +93.169a +85.1 +89.88 +24.7 +92.24 +9.24 +92.24 +23.139 +89.107 +92.11 +85.8 +92.23 +33.455 +74.12 +89.87 +33.323 +92.11 +83.20 +92.24 +11.80 +15.37 +33.159 +89.112 +92.26 +33.69 +92.14 +90.45 +92.24 +9.24 +92.29 +89.23 +91.6 +89.33 +28.32 58.55 +33.477 +13.107 +90.4 +92.11 +59.23 +92.24 +85.69 +93.480a +28.28 +89.92 +69.3 +74.5 +33.277 +89.125 +89.59 +89.62 +78.51 +78.28 +28.24 84.2 +83.9 +92.24 +11.1 +33.291 +92.11 +67.130 +33.70 +90.23 +92.24 +33.126 +92.29 +92.23 +9.24 +89.87 +33.307 +92.11 +33.327 +78.44 +69.3 +33.76 +69.7 +33.224 +90.23 +92.24 +33.126 +92.24 +93.169a +89.124 +92.24 +93.296 +89.92 +93.190b +33.28 +33.69 +90.58 +92.11 +89.65 +66.5 +13.1 +90.20 +92.24 +12.1 +92.7 +36.14 +89.126 +64.18 +92.24 +12.1 +30.108 +89.23 +69.3 +74.5 +92.4 +92.27 +24.1 +89.92 +24.52 +69.3 +33.70 +89.87 +92.24 +33.292 +37.127 +92.11 +92.23 +27.27 +92.24 +92.16 +38.2 +92.11 +90.44 +92.24 +11.1 +89.33 +59.23 +87.24 +92.24 +12.1 +89.27 +92.24 +13.107 +89.23 +67.167 +59.1 +60.27 +13.1 +92.24 +9.24 +90.40 +92.27 +13.107 +92.24 +33.477 +92.29 +92.24 +23.136 +66895 37.127 +15.7 +84.18 +92.24 +57.4 +89.87 +33.198 +59.7 +90.33 +92.11 +92.24 +53.88 +89.92 +92.24 +53.77 +33.69 +89.87 +92.24 +33.212 +31.23 + +33.103 +90.58 +92.24 +12.1 +66921 33.69 +37.63 +92.6 +92.24 +42.29 +92.24 +1.3 +66929 92.24 +1.3 +89.92 +92.24 +1.69 +89.92 +59.23 +92.24 +83.13 +92.11 +92.24 +92.24 +10.20 +92.4 +90.4 +12.18 +88.24 +33.101 +93.91 +87.77 +92.6 +33.69 +66953 88.185 +11.37 +89.92 +11.12 +30.60 +32.60 +17.3 +92.24 +37.67 +92.24 +9.22 +89.92 +92.24 +37.56 +15.123 +66969 92.24 + +90.31 +92.24 +12.9{N:001} +89.92 +90.31 +92.24 +53.82 +92.11 +89.23 +15.123 +66982 70.4 +83.13 +92.24 +1.89 +92.29 +90.34 +92.24 +88.24 +87.77 +92.6 +93.169a +92.27 +37.107 +89.102 +93.144b +89.102 +93.298 +93.297 +89.105 +11.37 +89.102 +11.12 +93.182b +42.7 +59.19 +13.107 +92.24 +76.3 +92.6 +89.92 +92.24 +30.57 +30.84 +67016 12.9{N:001} +92.24 +67.39 +30.45 +90.23 +92.24 +33.291 +92.11 +89.87 +90.51 +92.24 +87.76 +92.6 +89.79 +25.158 +78.44 +33.70 +92.24 +33.260 +92.6 +67.136 89.76 +92.24 +92.24 +76.3 +16.19 +92.6 +89.57 +23.136 +89.93 +33.477 +89.92 +33.480 +13.107 +89.76 +92.24 +33.126 +92.24 +88.24 +87.77 +92.6 +93.169a +89.87 +33.170 +92.11 +16.7 +92.24 +80.1 +83.47 +92.27 +67066 15.123 +89.92 +59.38 +59.23 +92.24 +88.24 +12.18 +67074 33.70 +92.24 +33.260 +92.24 +12.1 +89.79 +25.158 +67082 92.24 +59.9 +92.24 +31.102 +26.3 +89.92 +26.4 +13.1 +63.4 +89.93 +69.8 +60.10 +92.12 +92.24 +57.16 +92.11 +57.4 +13.1 +33.69 +89.125 +13.1 +92.11 +67105 89.118 +89.87 +76.1 +78.2 +90.46 +92.24 +33.264 +92.24 +12.9{N:001} +93.169a +92.24 +23.93 +92.24 +53.74 +89.95 +25.89 +78.2 +13.1 +90.57 +59.23 +92.11 +89.23 +69.7 +57.51 +92.12 +13.1 +83.9 +92.11 +89.23 +59.7 +57.11 +1.95 +89.139 +7.3 +13.77 +57.186 +15.187 +92.24 +57.161 +92.24 +57.186 +89.87 +57.82 +67149 92.24 +57.82 +92.24 +53.74 +89.87 +57.94 +59.27 +78.53 +71.8 +92.12 +57.40 +90.65 +67162 93.202e +92.24 +33.131 +93.65 +90.7 +92.24 +53.74 +89.106 +89.106 +33.145 +9.4 +25.150 +53.91 +93.509 +92.24 +10.1 +57.2 +92.11 +1.95 +57.186 +15.166 +92.24 +6.68 +89.87 +57.82 +67188 92.24 +57.82 +92.24 +53.74 +89.124 +9.24 +67195 93.24a +33.126 +89.107 +93.328 +92.24 +10.54 +92.11 +57.186 +57.15 +89.87 +57.246 +63.20 +92.24 +57.161 +28.5 +89.93 +92.24 +10.54 +89.87 +15.166 +63.14 +67217 83.25 +92.24 +57.82 +92.24 +53.74 +57.82 +89.124 +33.69 +92.24 +93.296 +93.24a +67230 30.29 +92.24 +12.34 93.330 +92.24 +30.29 +92.6 +33.253 +92.6 +92.24 +12.18 +92.24 +88.24 +89.92 +57.246 +63.20 +92.24 +57.161 +92.24 +1.95 +69.12 +13.89 +92.6 +13.89 +89.87 +57.186 +13.8 +92.24 +92.8 +37.13 +13.5 +92.15 +90.21 +30.76 +67264 92.24 +30.76 +92.6 +92.24 +13.105 +92.29 +69.3 +33.253 +9.1 +89.125 +92.24 +12.1 +89.87 +92.24 +93.24a +24.52 +92.24 +33.98 +92.29 +15.119 +23.99 +67286 13.107 +25.251 +78.2 +90.57 +59.23 +92.24 +24.52 +89.87 +17.7 +92.24 +67.116 +15.200 79.119 +92.11 +89.87 +15.197 +52.4 +89.87 +91.5 +78.42 +67.199 +60.12 +67.150 +89.87 +92.24 +10.54 +92.11 +69.3 +28.1 +92.24 +13.107 +15.93 +89.87 +33.28 +90.58 +92.11 +93.296 +33.69 +92.1 +90.26 +59.18 +92.24 +1.95 +57.186 +89.87 +92.24 +33.69 +69.1 +59.18 +89.87 +92.24 +93.296 +90.58 +92.11 +92.15 +90.21 +31.15 +92.7 +27.46 +92.24 +12.18 +12.9{N:001} +91.13 +92.24 +8.49 +92.24 +52.4 +92.24 +10.53 +92.6 +83.23 +92.24 +7.39 7.49 +89.87 +15.197 +92.6 +89.87 +15.119 +67.113 +83.24 +92.24 +8.49 +92.11 +89.92 +23.99 +89.87 +15.93 +92.24 +9.32 +27.27 +92.11 +23.121 +89.87 +15.197 +52.4 +83.24 +92.24 +10.53 +92.11 +89.87 +13.107 +25.251 +78.2 +90.57 +63.1 +92.24 +11.32 +89.92 +90.57 +59.23 +92.24 +33.212 +92.29 +67399 90.8 +92.24 +76.3 8.30 +92.24 +53.74 +13.107 +33.477 +89.92 +33.480 +59.1 +83.9 +92.24 +11.1 +89.92 +13.1 +31.23 +67416 83.13 +92.24 +7.40 +93.344 +89.124 +92.24 +63.21 +92.23 +25.161 +34.22 +92.11 +89.125 +87.15 +92.11 +92.24 +11.1 +67433 78.28 +59.72 +31.102 +92.24 +12.9{N:001} +59.9 +89.102 +9.24 +89.102 +9.34 +89.52 +67445 84.22 +92.24 +1.103 +15.197 +92.24 +23.145 +89.92 +85.32 +83.46 +6.107 +89.92 +6.107 +89.59 +15.81 +93.296 +89.73 +92.24 +14.61 +14.62 +92.12 +92.11 +89.87 +15.123 +89.93 +92.24 +11.1 +92.24 +83.18 +93.480a +1.88 +15.166 +23.145 +89.92 +22.24 +90.1 +12.39 +53.39 +92.18 +59.23 +23.139 +89.124 +17.7 +92.24 +53.89 +89.92 +59.23 +92.24 +89.107 +92.11 +92.24 +58.67 +11.50 +92.24 +11.48 +59.38 +88.162 +67502 37.110 +92.24 +37.110 +90.57 +92.24 +53.74 +89.87 +85.32 +92.11 +84.22 +37.122 7.24 +28.66 +89.124 +12.28 +12.9{N:001} +67.136 +67.192 +67520 92.24 +7.49 +92.24 +7.24 +89.88 +15.174 +92.11 +33.69 +15.34 +89.87 +17.6 85.8 +33.70 +83.13 +92.24 +7.16 +92.24 +11.1 +59.23 +92.24 +33.9 +92.24 +23.88 +92.29 +89.87 +36.14 +15.93 +67.161 +92.24 +67.73 +84.22 +92.24 +7.16 +89.87 +33.224 +89.94 +15.86 +92.24 +53.89 +89.92 +92.24 +89.107 +92.11 +33.309 +92.24 +11.80 +89.92 +59.23 +92.24 +11.83 +92.24 +11.58 +93.182b +89.87 +15.66 +84.16 +92.24 +7.24 +15.165 +92.11 +89.124 +92.24 +15.86 +35.20 +69.3 +27.27 +92.11 +83.13 +92.24 +7.24 +89.87 +15.89 +33.198 +33.69 +90.21 +27.27 +92.24 +7.24 +79.112 +89.80 +78.44 +21.9 +89.92 +92.24 +37.121 +85.8 +83.23 +92.24 +7.49 +89.124 +79.110 +83.13 +92.23 +27.27 +89.87 +67.45 +24.52 +92.24 +33.98 +92.29 +89.102 +92.24 +37.91 +92.24 +7.16 +89.102 +92.24 +53.88 +32.10 +89.6 +92.11 +71.14 +92.14 +13.48 +92.29 +89.87 +15.86 +92.12 +33.198 +92.11 +90.21 +91.13 +92.24 +9.24 +92.27 +85.32 +84.22 +92.24 +7.24 +85.1 +17.1 +83.13 +92.24 +7.16 +89.92 +33.224 +92.24 +11.1 +67.47 +15.37 +92.24 +37.90 +89.107 +92.24 +35.20 +15.165 +92.11 +69.3 +89.78 +20.1 +89.23 +25.252 +92.24 +11.1 +89.62 +20.79 +89.87 +15.165 +92.11 +85.40 +83.13 +92.24 +11.80 +89.87 +56.14 +92.11 +92.24 +53.89 +33.69 +33.328 +33.327 +92.7 +69.3 +33.224 +90.23 +92.24 +33.126 +92.29 +67698 91.13 +59.37 +92.24 +93.480a +92.24 +33.236 +92.7 +89.92 +30.56 +13.9 +90.17 +92.4 +92.24 +23.107 +92.24 +9.24 +92.29 +89.124 +33.184 +93.296 +89.92 +92.24 +53.74 +33.69 +71.21 +36.12 +12.1 +89.126 +64.18 +9.1 +92.24 +12.1 +92.24 +10.20 +92.4 +23.94 +93.169a +92.27 +92.7 +20.62 +20.76 +83.46 +6.28 +92.29 +92.24 +12.1 +36.6 +89.92 +21.31 +87.20 +92.24 +82.8 +92.11 +92.24 +67753 41.52 +92.24 +93.182b +89.92 +40.8 +88.310 +89.93 +92.4 +13.4 +33.270 +92.24 +13.115 +92.29 +89.92 +92.24 +12.18 +92.24 +88.24 +92.27 +37.98 +92.24 +12.1 +92.24 +36.12 +92.11 +89.124 +92.24 +24.52 +88.181 +67783 30.56 +20.71 +92.11 +89.124 +17.6 +67789 83.13 +92.24 +11.80 +11.49 +33.126 +93.85 +33.248 +87.6 +59.23 +92.24 +11.1 +33.323 +83.20 +59.14 +92.24 +9.24 +13.9 +89.88 +33.69 +90.58 +92.11 +9.24 +93.183 +30.35 +92.25 +90.57 +92.24 +9.24 +92.29 +92.14 +42.8 +67.62 +89.23 +67.17 +92.29 +92.24 +67.142 +39.34 +93.154 +33.69 +87.49 +87.49 92.13 +92.25 +92.27 +34.22 +9.24 +60.1 +78.42 +60.36 +92.27 +20.71 +89.87 +59.23 +59.7 +31.82 36.34 +92.11 +15.136 +67847 13.48 +89.48 +92.23 +67.48 +92.29 +13.81 +93.173f +92.24 +93.445 +67.136 +92.24 +67.142 +92.24 +33.43 +89.87 +39.41 +11.1 +36.35 +92.11 +92.30 +20.31 +89.87 +59.23 +59.7 +33.301 +92.11 +15.136 +67875 92.24 +67.38 +33.69 +92.7 +34.41 +89.122 +92.24 +9.24 +92.29 +89.92 +13.140 +92.11 +89.33 +89.67 +13.1 +90.16 +9.1 +92.24 +30.57 +92.29 +89.139 +92.24 +42.11 +92.29 +13.100 +89.124 +89.65 +90.16 +12.1 +13.1 +69.3 +74.5 +13.100 +92.11 +67911 89.93 +39.32 +13.7 +67915 31.82 +92.11 +89.87 +33.308 +92.24 +53.74 +19.2 +33.327 +89.62 +33.70 +90.23 +92.24 +33.126 +92.24 +93.169a +89.87 +37.127 +91.6 +67934 92.24 +15.34 +25.125 +84.3 +85.26 +92.24 +11.80 +89.33 90.21 +65.18 +89.28 +92.24 +33.126 +87.74 +89.88 +59.23 +67.186 +83.13 +92.24 +7.16 +89.92 +89.90 +7.2 +69.3 +68.46 +33.224 +89.92 +33.215 +92.24 +93.387 +93.169a +67965 67.136 +92.24 +67.142 +92.29 +59.68 +92.24 +36.38 +13.107 +33.382 +92.24 +11.93 +90.33 +92.24 +93.105 +90.21 +30.48 +89.5 +92.24 +35.38 57.119 +92.24 +67.183 +92.24 +10.61 +92.11 +67990 92.24 + +33.308 +92.24 +11.1 +92.24 +36.38 +33.69 +69.3 +66.8 +13.1 +92.4 +30.51 +92.24 +33.260 +92.24 +12.1 +57.230 +57.230 +68010 11.23 +30.102 +9.24 +63.20 +92.7 +33.263 +60.16 +59.35 +12.18 +89.92 +32.32 +92.27 +37.104 +37.9 +92.24 +42.22 +92.29 +89.124 +92.4 +92.24 +33.178 +89.92 +92.24 +35.21 +92.24 +33.260 +68.68 +91.1 +25.90 +92.24 +33.98 +90.20 +59.23 +92.24 +11.1 +89.87 +30.92 +93.348 +9.24 +59.35 +31.102 +89.92 +12.18 +88.24 +89.92 +93.379c +89.92 +93.303 +89.92 +93.280 +89.92 +93.362 +89.92 +93.292 +89.92 +93.283a 93.283b +11.54 +93.406 +92.27 +85.40 +83.33 +92.24 +53.74 +89.87 +33.178 +85.51 +92.11 +92.24 +8.30 +91.1 +92.24 +33.260 +92.24 +12.1 +59.62 +89.92 +59.68 +92.24 +60.2 +92.24 +36.38 +83.13 +93.480a +78.19 +89.95 +78.3 +11.1 +92.24 +53.87 +36.15 +92.24 +31.102 +68103 93.348 +59.35 +88.66 +89.92 +76.1 +90.45 +33.480 +89.92 +33.477 +78.2 +83.9 +92.24 +11.1 +89.124 +13.81 +92.12 +92.24 +89.3 +92.24 +11.45 +92.24 +33.129 +87.86 +89.92 +93.511 +89.92 +93.402 +89.92 +92.24 +84.3 +93.501 +89.92 +93.415 +33.440 +92.24 +93.348 +68140 69.3 +74.9 +39.18 +92.24 +32.32 +89.92 +92.24 +12.18 +92.27 +33.70 +67.47 +57.176 +9.24 +33.69 +90.21 +24.52 +92.11 +33.70 +33.98 +33.402 +90.59 +93.266 +89.92 +92.24 +12.1 +89.102 +39.8 +92.24 +87.64 +89.102 +92.24 +53.77 +89.102 +92.24 +53.94 +68176 39.47 +18.5 +92.11 +89.87 +15.165 +84.16 +92.24 +11.80 +89.88 +85.40 +33.270 +33.255 +33.69 +92.24 +9.24 +92.29 +69.3 +68.34 +33.70 +33.98 +90.31 +92.24 +80.1 +92.24 +53.46 7.18 +89.92 +92.24 +33.55 +89.23 +24.52 +92.11 +33.69 +90.21 +93.169a +92.24 +93.538 +92.29 +20.54 +92.24 +80.1 +92.29 +89.93 +58.43 +92.24 +41.25 +92.27 +33.237 +92.4 +93.266 +89.87 +24.49 +90.59 +92.11 +59.23 +92.24 +17.12 +83.13 +92.24 +11.80 +24.1 +92.24 +8.18 +92.11 +64.12 +8.18 +12.28 +89.87 +33.69 +92.24 +53.89 +90.26 +92.29 +61.9 +13.2 +89.87 +92.24 +33.69 +9.24 +11.25 +89.92 +11.26 +24.52 +92.24 +12.1 +92.24 +79.18 +24.1 +92.24 +10.20 +92.4 +93.7 +85.1 +83.13 +92.24 +93.530 +67.17 +68273 85.69 +92.11 +83.13 +93.613 +89.87 +33.69 +90.58 +92.11 +15.40 +84.4 +92.24 +1.79 +92.6 +89.92 +92.24 +10.5 +92.6 +89.87 +84.24 +84.16 +92.24 +1.79 +71.8 +92.27 +92.6 +28.47 +67.47 +15.40 +84.4 +1.79 +93.610 +85.69 +83.13 +93.613 +84.10 +67.48 +92.24 +23.99 +92.24 +10.14 +92.11 +85.83 +92.11 +84.16 +92.24 +1.79 +92.29 +83.13 +92.27 +92.7 +67.38 +85.69 +91.12 +69.3 +57.71 +92.11 +57.132 +83.13 +92.11 +69.8 +80.3 +8.49 +68336 33.286 +57.71 +92.11 +68340 57.1 +92.11 +89.92 +92.24 +10.29 +92.11 +67.48 +92.11 +69.3 +13.69 +92.11 +10.36 +89.87 +33.70 +61.9 +92.24 +12.1 +90.21 +85.1 +92.24 +10.29 +92.11 +11.77 +83.13 +1.79 +92.20 +89.87 +87.82 +89.92 +20.12 +92.11 +67.167 +60.36 +89.87 +92.24 +11.55 +71.8 +92.27 +87.79 +56.30 +92.1 +92.24 +12.1 +33.69 +89.87 +67.48 +92.29 +15.40 +89.87 +53.14 +92.1 +83.13 +92.24 +80.1 +92.29 +89.93 +57.71 +92.11 +34.44 +53.51 +68401 61.9 +23.58 +92.24 +93.180 +89.87 +53.51 +92.11 +92.24 +67.178 +92.24 +60.55 +89.87 +93.180 +92.24 +93.157a +89.87 +93.157a +92.24 +60.21 +10.22 +89.87 +92.24 +10.22 +88.163 +92.24 +93.202a +57.186 +84.22 +93.398 +68431 85.1 +92.24 +12.1 +89.108 +92.11 +89.87 +21.17 +92.11 +68.54 +59.23 +92.24 +22.2 +92.11 +89.92 +57.71 +92.11 +25.89 +89.92 +32.32 +90.20 +93.373 +37.67 +93.398 +89.87 +37.104 +92.11 +37.58 +37.9 +93.398 +89.92 +63.1 +92.24 +10.8 57.21 +92.11 +68466 13.117 +23.33 +90.57 +63.1 +92.24 +93.398 +89.92 +93.611 +89.93 +22.2 +78.2 +68478 69.3 +27.27 +5.1 +92.24 +10.20 +92.4 +89.124 +93.157a +33.212 +85.1 +3.42 5.2 +83.13 +93.398 +15.68 +92.24 +10.20 +92.4 +60.46 +89.87 +67.136 +92.24 +60.49 +68501 93.202a +92.24 +10.49 +92.11 +89.87 +28.28 +13.48 +92.24 +93.373 +92.24 +10.1 +93.202a +89.87 +15.67 +93.202a +33.311 +93.157a +92.24 +10.14 +92.11 +89.92 +59.23 +92.24 +10.5 +89.141 +9.20 +60.30 +60.14 +89.87 +15.107 +93.157a +84.22 +93.398 +89.87 +23.102 +92.11 +89.92 +92.24 +10.20 +92.4 +89.87 +15.2 +84.16 +93.594 +89.87 +85.32 +84.22 +92.24 +7.75 +92.27 +57.188 +93.7 +57.161 +6.73 +90.14 +92.24 +10.30 +93.116 +83.13 +93.351 93.594 +68562 67.33 +67.21 +92.24 +67.1 +92.24 +33.288 +92.27 +33.221 +92.24 +12.1 +92.24 +93.7 +92.24 +11.12 +59.62 +89.92 +59.68 +83.13 +93.398 +67.119 +92.27 +13.81 +37.9 +93.398 +37.67 +58.37 +92.27 +69.3 +28.1 +92.24 +93.202a +92.29 +88.147 +92.24 +10.1 +92.4 +20.12 +92.24 +10.20 +92.24 +13.9 +92.24 +9.45 +92.11 +85.47 +89.57 +92.24 +69.3 +23.89 +67.136 +92.27 +67.1 +23.52 +93.266 +89.93 +13.1 +79.11 +92.24 +12.1 +92.27 +35.51 +67.174 +60.12 +83.13 +92.24 +10.8 +92.24 +10.14 10.18 +89.87 +85.46 +92.11 +35.53 +92.11 +92.24 +10.46 +93.373 +89.87 +35.51 +92.11 +92.25 +68643 10.42 +68645 33.226 +93.266 +59.23 +32.37 +93.396 +89.94 +13.1 +74.4 +89.5 +33.98 +89.92 +42.11 +92.11 +89.124 +67.45 +67.70 +92.11 +67.172 +67.78 +30.17 +68666 92.24 +26.3 +92.11 +34.50 +92.24 +11.57 +92.11 +92.24 +11.58 +93.182b +89.87 +24.1 +92.12 +88.128 +35.3 +68682 90.45 +39.33 56.35 +92.24 +88.126 +20.73 +92.24 +93.397 +68690 31.29 +32.5 +92.24 +11.25 +90.21 +92.24 +12.1 +90.8 +9.17 +92.11 +57.71 +21.18 +92.11 +89.124 +92.24 +69.3 +32.5 +89.88 +92.24 +67.208 +67.186 +24.1 +92.11 +39.23 +89.87 +40.1 +92.11 +13.62 +22.42 +33.69 +9.24 +11.25 +13.4 +68725 20.25 +92.26 +89.124 +92.24 +20.25 +92.24 +11.89 +15.46 +92.11 +33.69 +92.14 +92.6 +37.104 +37.56 +89.92 +56.28 +37.9 +92.4 +69.15 +20.71 +92.1 +92.6 +25.1 30.58 +92.27 +89.83 +20.71 +67.203 +92.24 +93.397 +68755 15.61 +93.266 +89.26 +92.24 +33.98 +92.29 +68762 13.48 +11.77 +83.13 +1.79 +93.526 +83.5 +23.58 +10.42 +60.11 +89.87 +67.70 +67.167 67.94 +60.27 67.94 +24.1 +92.11 +83.13 +92.24 +1.86 +92.24 +1.46 +93.581 +12.28 +89.80 +2.4 +2.3 +3.16 +68789 92.24 +93.266 +24.1 +25.213 +92.24 +24.2 +89.87 +15.77 +92.11 +30.4 32.12 +85.7 +33.103 +12.9{N:001} +92.1 +92.24 +12.1 +92.24 +10.20 +92.6 +92.24 +12.1 +93.7 +89.92 +93.180 +89.92 +93.157a +89.124 +16.6 +13.48 +93.266 +69.3 +25.161 +24.51 +89.87 +33.69 +92.11 +92.24 +12.9{N:001} +18.18 +92.24 +6.182 +92.24 +8.49 +92.6 +89.23 +92.24 +80.1 +83.46 +92.27 +17.1 +1.60 +88.24 +85.1 +24.1 +24.1 +92.24 +20.12 +92.24 +11.12 +92.1 +92.24 +83.13 +93.398 +89.92 +92.24 +25.143 +68856 24.52 +68858 15.107 +21.17 +92.11 +68862 67.38 +84.24 +15.66 +92.6 +84.16 +93.398 +92.29 +92.24 +93.266 +92.27 +36.43 +33.69 +92.14 +92.6 +37.104 +37.56 +89.92 +56.28 +92.29 +92.24 +12.1 +89.102 +37.56 +89.102 +37.129 +15.66 +90.2 +90.2 +12.28 +92.24 +24.1 +92.11 +83.13 +92.24 +3.16 +92.29 +15.174 +92.11 +90.45 +33.480 +89.92 +33.477 +83.13 +1.79 +93.398 +89.87 +83.23 +79.30 +1.70 +89.87 +83.13 +92.24 +1.86 +67.167 67.94 +67.94 +92.29 +13.4 +92.24 +93.266 +92.24 +33.69 +92.24 +11.58 +93.182b +53.79 +92.7 +17.7 +92.24 +12.1 +89.3 +92.24 +11.25 +92.7 +64.12 +92.1 +92.29 +13.4 +92.24 +85.6 +83.13 +92.24 +11.78 +83.13 +92.24 +1.86 +89.108 +92.24 +12.28 +92.24 +33.70 +92.11 +83.23 +92.24 +1.46 +93.581 +89.92 +92.24 +10.20 +92.4 +92.27 +57.125 +33.97 +23.88 +57.71 +68967 92.27 +69.3 +25.1 +36.16 +13.48 +92.24 +10.20 +92.4 +89.125 +31.63 +89.93 +31.60 +89.5 +92.24 +26.3 +92.11 +84.16 +93.398 +33.69 +92.24 +93.1 +42.29 +92.4 +12.22 +92.27 +15.181 +92.4 +89.23 +92.24 +93.266 +92.29 +92.27 +15.174 +92.4 +84.4 +1.79 +93.398 +69.3 +28.1 +92.14 +13.107 +92.11 +69010 6.101 +67.136 +92.24 +67.142 +92.30 +89.87 +15.211 +53.20 +92.24 +6.97 +89.87 +25.122 51.3 +89.5 +92.24 +42.12 +92.24 +8.30 +92.11 +69029 34.28 +92.24 +12.1 +69033 37.111 +92.11 +53.14 +92.24 +12.45 +92.24 +1.5 12.45 +64.14 +33.54 +90.23 +33.52 +92.24 +53.79 +69.15 +53.20 +89.92 +53.20 +57.80 +92.1 +67.167 67.94 +60.27 67.94 +83.13 +92.24 +1.86 +11.58 +93.182b +69060 15.203 +92.24 +7.9 +92.24 +93.265 +89.92 +92.24 +1.30 1.31 +92.24 +12.22 +93.308 +92.24 +6.96 +92.27 +42.29 +53.56 +92.11 +69078 85.83 +92.7 +83.55 +93.420 +92.24 +7.17 +92.24 +33.264 +85.1 +92.24 +10.20 +92.4 +83.13 +92.24 +1.86 +64.14 +33.325 +92.24 +33.70 +92.24 +93.266 +42.29 +92.11 +89.8 +92.24 +58.58 +92.27 +24.1 +92.27 +89.93 +15.194 +57.130 +92.24 +10.20 +92.4 +89.108 +93.169e +67.33 +92.24 +57.57 +92.24 +11.55 +92.27 +15.45 +92.24 +12.1 +84.3 89.122 +83.33 +92.24 +10.20 +92.4 +67.119 +92.24 +67.142 +93.91 +92.27 +90.70 +25.89 +83.33 +92.24 +12.1 +89.93 +33.163 +13.17 +7.8 85.77 +92.24 +7.2 +93.157a +89.124 +93.344 +45.1 +92.11 +7.2 +89.125 +69.3 +92.24 +12.4 +83.13 +42.32 +85.69 +64.14 +92.24 +53.79 +33.69 +92.24 +1.11 +92.1 +6.112 +89.94 +92.24 +1.39 +6.117 +92.24 +37.8 8.49 +92.1 +58.30 +7.2 +45.1 +92.1 +33.69 +12.9{N:001} +89.139 +92.14 +80.1 +92.24 +23.81 +92.1 +69.12 +92.24 +9.17 +92.1 +42.29 +92.29 +59.23 +88.224 +89.92 +88.224 +26.3 +69197 92.24 +8.24 +92.7 +67.86 +92.24 +12.18 +92.24 +88.24 +39.18 +64.12 +92.24 +10.20 +92.7 +89.93 +92.7 +92.14 +92.24 +53.79 +69.3 +39.45 +92.24 +10.20 +92.7 +89.93 +20.61 +92.24 +33.283 +89.6 +92.24 +15.81 +92.24 +88.12 +92.27 +67.38 +92.7 +37.113 +89.92 +20.85 +13.48 +92.18 +57.125 +92.24 +33.55 +89.76 +33.326 +12.28 +91.12 +69.3 +36.19 +69247 24.52 +92.29 +88.181 +92.24 +26.3 +92.11 +89.92 +23.41 88.184 +92.24 +8.20 +90.34 +92.11 +89.124 +13.5 +59.35 +12.18 +88.24 +24.49 +84.22 +92.24 +1.11 +24.1 +79.18 +12.1 +89.92 +93.169a +85.8 +69275 82.8 +92.24 +12.1 +89.87 +33.69 +91.13 +24.14 +92.24 +1.11 +79.110 +89.92 +92.24 +9.3 +92.24 +9.3 +69291 82.8 +92.24 +12.1 +85.8 +89.124 +33.83 +33.103 +78.2 +24.70 +92.24 +24.70 +92.11 +89.87 +15.222 +31.23 +90.34 +92.11 +89.87 +15.44 +83.20 +92.24 +1.89 +20.79 +89.93 +92.24 +33.270 +85.44 +92.24 +6.172 +92.11 +83.25 +92.24 +8.49 +9.32 +33.129 +93.331 +89.87 +20.79 +92.24 +93.348 +33.131 +69333 33.69 +12.9{N:001} +93.169a +57.125 +92.24 +26.9 +92.1 +89.87 +17.19 +92.24 +17.19 +33.83 +33.103 +78.2 +12.9{N:001} +69.3 +76.20 +92.11 +92.29 +92.24 +88.310 +89.87 +92.29 +33.69 +23.104 +69359 93.331 +69361 31.17 +92.24 +20.71 +92.11 +69366 91.5 +67.136 +92.30 +92.24 +67.186 +39.45 +78.2 +90.34 +92.24 +11.32 +92.24 +83.13 +93.480a +69380 59.23 +15.136 +84.31 +92.24 +1.79 +92.24 +93.486a +89.92 +93.568a +89.130 +92.24 +53.74 +69393 52.5 +92.24 +93.348 +9.1 +53.8 +89.92 +90.45 +52.1 +78.2 +90.57 +92.11 +89.124 +93.331 +20.24 20.31 +92.24 +11.32 +89.90 +92.24 +7.2 +15.93 +15.178 +89.102 +9.24 +89.102 +9.34 +37.111 +84.22 +7.24 +69422 91.3 +92.24 +15.136 +15.21 +33.215 +92.24 +33.260 +89.104 +93.379c +15.107 +84.16 +92.24 +1.89 +92.24 +93.568a +33.256 +92.11 +92.24 +53.82 +89.87 +30.35 +92.24 +11.1 +92.24 +33.69 +90.1 +92.24 +93.379c +31.23 +89.26 +92.24 +33.212 +92.11 +89.92 +24.7 +92.24 +33.477 +92.27 +90.45 +89.23 +59.1 +92.24 +90.65 +12.39 +53.39 +33.81 +33.80 +78.2 +15.40 +89.94 +59.1 +23.170 +89.92 +23.175 +23.139 +69478 85.6 +78.3 +25.123 +83.13 +92.24 +1.89 +92.30 +69486 9.24 +69488 33.126 +93.341g +13.78 +83.13 +92.24 +1.89 +53.96 +89.92 +25.220 +92.24 +11.55 +92.24 +93.568b +33.69 +58.67 +92.12 +87.22 +92.25 +92.27 +30.35 +59.23 +69510 87.58 +59.21 +87.22 +33.69 +92.29 +13.4 +92.24 +12.44 +92.24 +12.1 +92.24 +33.131 +87.22 +69524 30.35 +92.11 +90.44 +92.24 +59.12 +67.78 +92.24 +53.96 +25.220 +92.11 +89.124 +69536 31.85 +92.24 +93.379c +33.215 +90.24 +92.24 +37.64 +92.24 +12.1 +89.92 +92.24 +33.126 +93.169a +93.387 +53.41 +89.102 +9.24 +89.102 +9.34 +89.87 +92.24 +93.341g +89.93 +92.37 +31.102 +89.87 +53.41 +69564 34.2 +92.24 +93.379c +24.14 +89.102 +33.477 +89.102 +76.7 +78.2 +13.107 +25.220 +69576 92.24 +83.13 +93.480a +53.74 +33.212 +90.21 +31.51 +92.24 +93.568b +92.24 +33.260 +92.24 +12.1 +15.66 +84.18 +92.11 +93.296 +89.92 +93.190b +69596 15.107 +33.178 +90.39 +92.11 +89.59 +57.125 +12.18 +88.24 +89.23 +67.129 +69607 13.122 +90.57 +92.23 +92.11 +89.124 +69613 53.41 +13.5 +90.23 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +67.47 +85.51 +92.24 +8.30 +84.20 +92.11 +89.87 +57.125 +12.18 +88.24 +69632 92.24 +93.341g +24.1 +90.21 +89.76 +92.24 +85.51 +92.24 +8.30 +92.24 +53.74 +57.71 +92.24 +12.18 +15.192 +92.11 +6.68 +33.69 +57.71 +89.93 92.1 +92.24 +76.12 +92.29 +89.49 89.59 90.22 +71.8 +92.27 +85.51 +92.24 +8.30 +57.125 +12.18 +88.24 +89.124 +93.296 +33.69 +90.58 +92.11 +92.24 +6.73 +92.6 +89.107 +92.6 +13.51 +69676 20.31 +89.33 +31.29 +92.24 +57.84 +92.24 +12.1 +90.8 +6.68 +57.58 +69.3 +13.69 +92.6 +63.13 +69.7 +63.18 +89.5 +92.24 +13.115 +92.29 +89.23 +92.24 +26.3 +92.6 +69.3 +13.1 +88.17 +90.20 +92.24 +12.1 +89.50 +41.52 +89.122 +92.24 +88.105 +92.6 +92.29 +89.92 +33.170 +92.24 +12.9{N:001} +71.19 +89.65 +40.8 +92.6 +92.24 +30.66 +92.24 +26.3 +92.6 +89.23 +88.166 +8.75 88.166 +79.40 +89.92 +18.17 +88.21 +92.6 +69735 32.11 +69737 33.184 +92.24 +93.341g +33.69 +33.170 +92.7 +90.36 +92.1 +90.58 +92.24 +12.9{N:001} +89.59 +13.119 +90.57 +92.1 +92.23 +92.27 +33.69 +91.3 +69757 92.24 +33.223 +89.92 +33.70 +92.24 +33.260 +92.24 +12.9{N:001} +15.88 +84.16 +93.480a +89.95 +59.1 +11.62 +92.24 +93.569 +33.215 +69775 12.28 +12.9{N:001} +33.70 +90.58 +93.379c +33.69 +15.36 +89.87 +15.18 +83.45 +67.74 82.4 +83.46 +92.24 +1.99 +92.24 +15.107 +84.3 +93.480a +84.16 +93.439 +92.29 +13.1 +1.86 +69799 15.36 +15.18 +89.87 +91.13 +9.24 +93.399 +37.85 9.25 +37.62 +37.77 93.209 +37.68 +93.399 +92.27 +13.1 +37.9 +63.2 +92.24 +57.36 +92.11 +92.27 +15.81 +53.56 +84.16 +93.480a +69824 15.88 +89.92 +17.12 +83.46 +92.24 +6.52 +92.11 +89.93 +33.68 +92.24 +53.79 +93.147 +89.87 +33.69 +92.24 +12.18 +92.24 +93.379c +15.77 +89.87 +34.22 +92.24 +6.52 +92.29 +69849 15.234 +92.24 +93.379c +24.52 +92.11 +33.68 +93.147 +92.24 +53.79 +89.87 +33.69 +69.14 +91.6 +32.16 +92.27 +33.68 +89.87 +92.24 +33.69 +91.1 +71.14 +92.16 +74.5 +69874 92.12 +27.17 +92.1 +89.88 +33.315 +92.24 +93.379c +15.99 +17.12 +89.107 +92.11 +69886 92.24 +33.10 +92.24 +33.53 +92.27 +33.68 +13.4 +92.29 +64.12 +4.22 +84.17 +20.72 +15.165 +89.92 +64.12 +4.24 +83.33 +92.24 +69905 92.11 +33.106 +61.9 +69.3 +33.29 +92.24 +33.74 +92.11 +13.8 +92.24 +87.60 +92.24 +56.25 +92.11 +20.43 20.65 +92.24 +10.28 +92.11 +92.14 +33.201 +89.33 +20.43 +84.3 +92.24 +1.39 +92.24 +23.88 +92.11 +89.87 +33.28 +92.24 +37.85 9.25 +92.24 +93.379c +33.69 +33.170 +92.6 +90.24 +92.14 +92.24 +53.79 +33.69 +92.29 +90.24 +92.25 +89.139 +90.24 +58.37 +92.12 +89.87 +92.24 +93.379c +33.29 +92.24 +33.74 +92.11 +89.87 +68.1 +69964 92.24 +33.53 +92.29 +33.215 +92.11 +92.24 +93.169a +69972 67.139 +15.10 +84.30 +92.24 +1.99 +15.81 +84.17 +92.12 +2.7 +89.87 +33.69 +92.24 +37.85 9.25 +91.13 +2.7 +92.14 +13.146 +92.1 +53.41 +69992 33.323 +68.42 +92.24 +6.52 +89.87 +15.107 +59.25 +84.22 +92.24 +2.7 +89.102 +92.24 +93.379c +89.102 +92.24 +37.85 9.25 +89.87 +53.41 +92.11 +89.87 +70013 15.101 +84.4 +92.24 +2.7 +12.18 +12.9{N:001} +18.4 +92.24 +93.379c +89.87 +69.3 +24.1 +92.11 +67.130 +92.24 +37.85 9.25 +70030 15.10 +92.24 +15.19 +92.11 +25.125 +89.124 +93.379c +27.27 +83.13 +93.392 +89.87 +15.21 +33.215 +92.24 +1.88 1.89 +59.23 +67.119 +92.24 +15.81 +92.11 +84.16 +93.492a +89.124 +92.24 +93.331 +67.128 +33.293 +33.291 +70059 20.82 +90.59 +92.24 +36.38 +92.24 +12.9{N:001} +15.77 +92.24 +53.89 +33.163 +90.14 +92.11 +33.48 6.63 +84.16 +93.459 +84.18 +92.24 +11.45 +89.59 +67.32 +27.27 +92.12 +92.24 +41.35 +13.1 +89.102 +9.24 +89.102 +9.34 +37.114 +15.165 +84.16 +93.480a +70093 67.136 +92.24 +15.18 +13.107 +92.11 +15.75 +92.24 +93.459 +89.88 +67.113 +92.11 +14.45 +14.36 +84.4 90.16 +92.24 +1.11 1.5 +70110 15.119 +84.20 +92.24 +2.14 +24.52 +33.103 +33.69 +92.11 +93.327a +93.327a +92.15 +92.1 +39.45 +89.87 +33.69 +92.14 +13.4 +12.9{N:001} 87.53 +89.87 +92.24 +92.1 +13.4 +93.169a +92.27 +92.6 +39.45 +89.125 91.2 +17.6 +89.87 +15.93 +84.22 +92.24 +1.89 +89.87 +33.70 +92.6 +92.18 +92.18 +92.6 +42.7 +71.21 +70152 92.24 +9.24 +92.24 +15.149 +92.11 +17.1 +33.108 +89.136 +24.52 +92.24 +33.103 +89.136 +92.23 +24.14 +89.87 +17.9 +93.331 +84.3 +92.24 +2.14 +89.124 +79.110 +92.24 +8.23 +92.11 +92.23 +24.41 +70180 15.184 +92.11 +15.173 +84.22 +93.459 +89.87 +85.1 +24.41 +67.186 +60.12 +69.3 +89.92 +69.3 +23.1 +69.7 +23.34 +70197 85.1 +70199 36.38 +33.126 +93.24b +83.13 +93.459 +89.92 +33.69 +90.58 +92.11 +13.8 +33.488 +92.24 +12.9{N:001} +93.24b +70214 92.24 +33.69 +91.13 +92.1 +12.9{N:001} +89.87 +92.24 +12.9{N:001} +90.58 +92.11 +17.6 +15.10 +84.17 +92.24 +1.104 +92.24 +33.129 +79.88 +89.87 +27.41 +83.13 +7.3 +93.173d +93.331 +33.126 +93.595 +89.23 +91.13 +33.178 +89.93 +24.1 +9.24 +93.24b +33.126 +15.93 +89.87 +85.51 +92.11 +8.30 +89.59 +24.42 +89.124 +33.184 +93.24b +12.9{N:001} +33.212 +90.15 +59.1 +90.24 +92.24 +9.24 +92.29 +59.7 +88.106 +92.24 +11.27 +92.6 +90.45 +83.13 +93.480a +89.93 +83.1 +57.1 +37.35 +90.14 +92.24 +53.88 +37.114 +59.23 +92.24 +11.28 +92.24 +9.19 +92.6 +89.124 +33.69 +90.58 +92.11 +92.24 +12.9{N:001} +15.10 +89.33 +9.21 +30.92 +13.1 +92.1 +92.29 +92.24 +33.210 +92.24 +33.126 +92.1 +83.33 +89.102 +11.37 +89.102 +37.67 +89.103 +11.58 +93.182b +89.23 +92.1 +28.47 33.150 +92.11 +59.19 +92.11 +90.36 +92.24 +33.126 +92.1 +90.66 +71.34 +70327 15.37 +93.24b +89.87 +15.93 +84.22 +92.24 +7.3 +89.87 +85.51 +83.46 +92.11 +92.24 +8.30 +33.69 +93.327a +11.23 11.25 +92.24 +12.9{N:001} +93.169a +92.24 +24.1 +92.6 +83.47 +92.24 +1.99 +92.27 +15.81 +15.66 +92.1 +89.59 +24.42 +89.93 +59.38 +12.18 +88.24 +89.87 +67.53 +15.120 +84.3 +92.11 +92.24 +8.23 +64.12 +8.57 +89.102 +24.42 +89.102 +17.6 +53.41 +89.87 +57.125 +5.1 +79.65 +70381 85.6 +89.108 +92.24 +83.13 +93.459 +36.38 +67.186 +92.12 +89.92 +67.53 +83.13 +92.24 +7.20 +33.256 +92.24 +93.169a +90.21 +92.29 +13.4 +92.24 +12.15 +92.24 +12.15 +70405 25.220 +59.23 +92.24 +24.52 +89.87 +33.69 +69.11 +92.29 +13.4 +92.24 +20.37 +83.13 +93.480a +92.24 +33.131 +92.24 +33.126 +92.29 +89.93 +83.1 +89.57 +92.29 +15.81 +89.59 +37.114 +92.11 +15.165 +83.35 +92.24 +53.88 +89.124 +93.331 +78.28 +74.7 +89.92 +25.221 +93.172 +92.24 +85.69 +83.13 +93.459 +28.46 +90.21 +92.29 +13.4 +92.24 +53.82 +89.124 +67.45 +67.70 +67.186 +59.2 +30.74 +92.24 +93.172 +20.71 +92.11 +89.124 +27.2 +92.24 +93.331 +92.24 +30.71 +92.11 +89.94 +24.48 +89.93 +92.24 +7.48 +89.102 +67.92a +89.102 +67.92a +89.59 +92.11 +20.71 +89.124 +18.1 +92.24 +36.38 +92.11 +67.192 +84.29 +92.24 +7.61 +15.111 +92.11 +15.111 +83.13 +6.149 +89.87 +15.86 +83.13 +93.480a +68.58 +34.22 +92.24 +36.38 +70504 59.23 +25.252 +92.11 +69.3 +31.35 +90.21 +58.67 +36.38 +89.124 +93.65 +18.2 +92.11 +15.165 +84.18 +92.24 +53.74 +89.87 +33.201 +92.11 +92.16 +83.47 +92.24 +1.99 +24.1 +92.24 +12.9{N:001} +89.92 +90.21 +33.70 +92.11 +89.87 +92.16 +83.13 +93.459 +33.90 +90.23 +92.24 +33.126 +93.169a +70544 85.1 +41.24 +70547 41.24 +89.108 +92.11 +83.13 +93.480a +33.90 +90.23 +92.24 +33.126 +92.24 +12.9{N:001} +89.102 +33.70 +89.102 +33.440 +90.33 +92.24 +11.93 +89.124 +92.24 +68.59 +20.71 +92.11 +89.124 +27.8 +92.24 +11.23 +15.175 +92.11 +84.16 +93.492a +89.87 +15.68 +92.11 +84.16 +93.596 +91.3 +70585 92.24 +11.33 +83.12 +63.1 +92.24 +93.486a +89.92 +93.444a +89.92 +93.568a +90.65 +22.42 +74.15 +89.92 +41.11 +92.24 +53.59 +92.24 +12.9{N:001} +89.92 +92.24 +25.150 +92.24 +88.24 +12.18 +59.68 +70612 13.107 +93.296 +15.21 +84.29 +59.23 +15.107 +89.93 +84.18 +92.24 +11.27 +92.24 +85.69 +93.518 +89.87 +27.27 +83.2 +9.24 +70630 33.126 +93.15 +67.131 +67.167 +60.17 +17.27 +83.46 +6.107 +92.27 +70640 23.170 +89.87 +33.69 +92.11 +92.24 +93.296 +93.15 +23.136 +92.6 +93.169a +93.387 +17.6 +89.87 +46.10 +92.10 +89.87 +67.53 +17.6 +89.87 +24.1 +92.11 +59.23 +92.24 +85.69 +93.518 +89.92 +92.24 +93.575 +92.18 +31.60 +84.17 +92.24 +12.9{N:001} +70674 83.13 +93.484 +85.1 +70678 36.41 +33.126 +93.355 +92.27 +33.145 +33.138 +93.101 +92.29 +13.1 +59.10 +42.11 +88.1 +89.92 +57.111 +92.27 +90.45 +70695 13.107 +67.136 +92.24 +67.142 +92.30 +23.144 +92.11 +23.99 +89.87 +47.12 +85.32 +83.13 +7.27 +70709 85.1 +93.518 +83.26 +92.24 +93.484 +92.24 +36.38 +33.212 +90.21 +93.296 +85.1 +83.13 +92.11 +15.66 +60.11 +9.24 +84.18 +92.11 +33.168 +89.62 +67.125 +15.17 +84.19 +92.4 +89.87 +17.6 +93.296 +15.148 +92.11 +92.27 +15.86 +15.176 +84.22 +92.24 +7.27 +89.87 +85.14 +92.11 +59.23 +92.24 +10.61 +25.138 +89.92 +24.25 +6.176 +89.92 +6.172 +59.7 +90.45 +89.108 +92.11 +85.1 +92.24 +93.101 +89.87 +92.24 +93.296 +15.68 +84.27 +59.23 +89.87 +17.19 +92.24 +17.19 +33.178 +89.87 +15.90 +84.18 +92.24 +8.1 +33.69 +93.355 +17.6 +89.87 +92.24 +79.110 +92.24 +8.23 +92.11 +89.87 +24.1 +92.24 +93.296 +17.16 +89.87 +85.33 +92.11 +8.30 +17.7 +92.11 +89.87 +33.307 +92.24 +11.27 +89.92 +92.24 +10.61 +85.14 +92.11 +23.93 +70810 28.21 28.32 +13.48 +84.31 +63.1 +92.24 +93.484 +70817 31.85 +59.1 +70820 92.24 +12.9{N:001} +89.87 +13.107 +67.186 +59.2 +85.55 +83.13 +93.484 +89.111 +70831 93.341f +6.186 +70834 9.24 +70836 83.13 +93.492a +33.126 +93.219 +55.16 +89.3 +55.9 +92.24 +33.129 +93.490 +53.6 +89.92 +53.58 +92.24 +12.1 +89.107 +59.23 +92.24 +10.8 +92.11 +90.45 +57.111 +59.1 +92.24 +87.64 +89.92 +33.170 +92.24 +12.1 +67.15 +67.15 +24.1 +13.8 +33.488 +24.20 +78.42 +67.35 +67.199 +60.56 +92.24 +67.186 +12.28 +92.24 +12.1 +15.93 +84.18 +92.11 +89.87 +33.69 +92.11 +93.219 +89.87 +92.24 +24.49 +92.11 +89.87 +25.256 +13.48 +33.69 +92.14 +13.104 +12.9{N:001} 87.53 +89.87 +33.69 +92.11 +92.24 +33.178 +92.6 +89.92 +92.24 +57.111 +92.6 +15.101 +70910 29.12 +83.33 +92.24 +12.1 +70915 67.38 +15.66 +9.24 +84.16 +93.484 +89.92 +15.73 +93.341a +70924 92.27 +33.131 +93.296 +92.29 +34.57 +89.111 +70931 93.341f +6.186 +92.27 +85.1 +7.3 +83.25 +1.70 +89.87 +67.45 +15.37 +92.24 +12.28 +92.24 +33.70 +92.11 +33.307 +60.11 +92.24 +46.5 +89.92 +55.17 +53.6 +92.24 +35.28 +92.11 +89.87 +33.201 +59.23 +92.11 +15.66 +92.11 +84.16 +92.24 +93.484 +70966 92.24 +67.208 +15.20 +92.30 +89.92 +92.24 +1.88 +15.75 +15.101 +93.296 +84.20 +92.24 +7.51 +33.178 +67.35 +67.199 +60.53 +89.87 +13.48 +23.30 +89.92 +25.1 +23.3 +89.124 +46.12 +92.11 +13.107 +90.57 +92.11 +33.489 +89.87 +24.14 +92.24 +1.11 1.5 +79.110 +89.87 +15.107 +6.1 6.118 +71005 64.12 +6.153 +79.123 +60.13 +79.106 +15.111 +84.20 +92.24 +1.39 +83.13 +92.27 +13.5 +58.28 +92.24 +4.4 +89.92 +4.51 +92.24 +1.39 +89.92 +4.41 +92.24 +4.41 +89.87 +13.107 +33.103 +84.18 +92.11 +93.296 +17.6 +20.72 +89.87 +23.1 +89.124 +92.24 +93.296 +33.69 +69.6 +12.9{N:001} +89.33 +67.10 +23.1 +59.24 +53.39 +89.92 +53.39 +89.87 +33.103 +67.55 +67.33 +60.49 +90.58 +92.11 +92.27 +92.24 +12.1 +53.28 +92.6 +69.3 +53.40 +89.87 +92.29 +13.107 +78.51 +60.71 +89.87 +67.53 +15.203 +92.24 +6.1 6.118 +84.22 +92.24 +1.11 1.5 +71079 67.139 +90.56 +92.25 +32.10 +92.24 +93.296 +71.8 +92.14 +58.68 +92.24 +33.488 +92.27 +24.1 +91.13 +92.24 +9.24 +92.24 +15.66 +90.1 +92.24 +93.219 +27.11 +92.24 +7.3 +92.24 +93.341f +17.5 +83.23 +92.24 +7.48 +89.87 +33.77 +33.181 +90.26 +93.341a +92.24 +33.131 +93.296 +83.1 +34.57 +71120 92.24 +93.296 +30.2 +90.24 +92.24 +33.488 +33.69 +92.24 +12.18 +91.13 +9.24 +71132 27.41 +92.6 +91.11 91.2 +17.6 +15.107 +89.87 +15.10 +89.107 +92.11 +92.23 +31.37 +89.33 +92.1 +15.66 +92.11 +89.87 +15.107 +93.296 +90.58 +92.24 +9.24 +33.69 +91.13 +92.1 +13.4 +92.27 +27.41 +92.14 +92.24 +89.15 +89.26 +92.27 +85.23 +89.87 +92.24 +33.69 +93.219 +55.16 +9.24 +88.12 +89.92 +53.58 +92.24 +12.1 +89.95 +33.263 +90.1 +63.1 +92.24 +11.55 +92.24 +93.172 +28.39 +90.1 +12.28 +88.24 +15.73 +92.6 +84.16 +92.24 +7.2 +92.11 +89.87 +24.52 +33.98 +90.14 +92.6 +89.50 +33.316 +92.11 +34.57 +89.87 +92.24 +67.208 +17.6 +15.40 +89.107 +92.11 +89.93 +92.12 +92.24 +11.23 +92.24 +84.3 +93.484 +15.148 +92.11 +89.87 +92.24 +67.208 +15.93 +84.22 +92.24 +93.492a +89.87 +92.24 +93.219 +71230 30.55 +92.11 +33.309 +92.24 +10.6 +92.11 +89.92 +92.24 +34.14 +34.11 +89.87 +67.45 +13.107 +92.24 +15.93 +92.24 +93.296 +13.120 +92.11 +92.24 +93.219 +17.22 +83.23 +92.24 +8.49 +17.21 +89.124 +92.24 +93.296 +17.10 +92.11 +33.69 +17.6 +89.93 +92.1 +92.37 +9.1 +58.67 +89.87 +33.157 +92.11 +15.93 +89.87 +27.27 +15.123 +59.1 +89.88 +33.69 +90.58 +92.11 +92.7 +28.3 +90.21 +13.144 +13.1 +9.1 +93.487 +34.22 +89.139 +34.23 +11.43 +92.1 +92.24 +12.1 +28.47 +92.23 +9.1 +53.39 +89.139 +53.39 +33.131 +89.47 +71303 33.458 +15.81 +15.73 +89.50 +33.181 +92.14 +89.18 +15.73 +92.1 +89.87 +92.24 +93.219 +33.69 +71317 60.51 +67.186 +67.119 +92.29 +92.24 +67.199 +71324 33.178 +92.24 +60.56 +83.13 +92.24 +7.2 +92.1 +89.87 +91.13 +9.24 +85.8 +83.33 +92.1 +13.8 +6.162 +14.50 +89.87 +33.69 +93.219 +24.60 +92.6 +92.24 +33.178 +89.92 +92.24 +57.111 +92.6 +29.7 +90.20 +92.24 +12.1 +89.50 +15.67 +84.16 +93.484 +89.92 +33.311 +93.341a 93.341f +92.27 +33.131 +93.296 +92.29 +34.57 +83.13 +7.3 +93.341a +6.186 +83.25 +1.70 +89.50 +67.113 +15.67 +84.18 +92.6 +89.88 +92.6 +88.4 +41.7 +15.86 +89.50 +67.38 +59.23 +92.4 +90.20 +92.24 +12.1 +85.23 +24.52 +59.23 +92.24 +33.325 +92.6 +90.1 +92.24 +12.9{N:001} +89.87 +93.296 +33.29 +92.24 +33.74 +33.69 +71406 70.4 +32.18 +90.21 +69.3 +58.67 +88.239 +92.24 +12.1 +89.125 +83.13 +59.23 +11.55 +92.24 +53.58 87.14 +92.11 +89.92 +90.47 +88.13 +25.85 +92.11 +13.1 +92.24 +33.98 +92.27 +15.67 +92.24 +11.58 +93.182b +33.215 +22.42 25.248 +90.4 +93.169a +93.387 +92.29 +13.4 +59.23 +12.9{N:001} +92.7 +28.1 +92.24 +13.115 +13.107 +84.31 +63.1 +92.24 +93.486b +67.65 +84.3 +92.24 +93.444a +67.48 +92.24 +53.41 +92.27 +33.256 +93.190a +93.169a +92.24 +84.3 +93.536 +90.21 +37.107 +92.11 +92.24 +12.1 +12.18 +88.24 +89.92 +76.1 +92.27 +15.21 +88.7 +89.92 +23.136 +59.23 +92.24 +22.22 +90.1 +92.24 +12.34 +89.33 +92.24 +12.1 +13.1 +90.42 +92.11 +89.93 +92.4 +33.270 +59.23 +92.27 +42.7 +89.102 +83.13 +92.24 +1.79 +92.24 +93.172 +89.102 +93.480a +92.27 +89.93 +20.71 +20.76 +71511 6.28 +92.29 +92.24 +12.1 +23.94 +67.33 +92.24 +60.50 +67.186 +89.87 +13.142 +92.11 +24.22 +13.48 +69.3 +59.23 +92.24 +11.12 +89.125 +33.270 +92.24 +30.89 +90.1 +92.24 +12.1 +92.4 +71538 23.12 +89.92 +23.36 +92.11 +67.48 +92.24 +23.93 +92.11 +84.4 +23.121 +89.93 +33.327 +92.4 +33.256 +92.24 +11.55 +89.92 +33.223 +90.21 +92.29 +13.4 +92.24 +37.96 +90.1 +92.24 +12.1 +56.28 +23.88 +89.92 +23.121 +92.29 +59.23 +92.24 +33.60 53.79 +33.262 +40.8 +88.310 +57.125 90.63 +89.76 +92.24 +33.126 9.19 +92.11 +59.23 +92.24 +31.102 +90.23 +92.11 +67.128 +33.70 +92.24 +93.296 +92.24 +33.9 +92.29 +13.122 +92.24 +12.18 +92.24 +88.24 +90.57 +59.23 +92.24 +31.56 +92.24 +33.260 33.98 +89.87 +25.220 +92.24 +71607 11.51 +31.86 +59.7 +15.148 +92.24 +93.296 +89.33 +89.93 +90.57 +92.24 +11.37 +92.24 +57.84 +92.24 +88.24 +12.18 +59.50 +89.23 +24.52 +92.11 +33.70 +33.2 33.3 +89.92 +33.358 +92.24 +12.1 +67.47 +33.28 +93.296 +69.16 +92.24 +2.7 +13.146 +74.5 +92.12 +92.24 +69.3 +53.41 +92.29 +92.18 +92.24 +12.18 +92.24 +88.24 +57.125 90.63 +64.12 +89.93 +92.4 +89.87 +33.325 62.9 +92.11 +90.23 +92.24 +33.126 +93.169a +93.387 +53.41 +67.47 +33.161 +92.11 +85.55 +67.186 +92.12 +71671 33.212 +92.24 +53.74 +89.92 +92.24 +11.23 +92.24 +85.1 +84.31 +92.24 +93.486a +90.21 +89.93 +92.24 +11.37 +31.51 +92.24 +33.260 +92.24 +12.1 +89.124 +71693 15.101 +93.296 +84.16 +93.480a +33.412 +90.33 +92.11 +92.24 +71702 11.51 +33.69 +90.21 +15.93 +84.18 +9.24 +11.52 +90.65 +71711 23.12 +92.11 +71714 68.1 +93.296 +33.151 +92.11 +61.1 +33.69 +92.1 +85.1 +33.178 +83.13 +1.89 +93.484 +89.87 +24.1 +13.8 +33.489 +33.488 +15.107 +6.118 +71734 64.12 +6.153 +79.123 +60.13 +79.106 +15.111 +84.4 +92.24 +1.11 1.5 +89.87 +15.81 +84.19 +92.1 +84.22 +92.27 +24.49 +30.4 +89.87 +24.1 +92.24 +4.4 +92.24 +1.39 +89.92 +92.24 +4.3 4.4 +89.92 +92.24 +4.51 +89.92 +92.24 +4.41 +92.24 +4.41 +89.87 +24.52 +89.93 +33.103 +33.69 +92.1 +93.296 +17.6 +20.72 +89.87 +23.1 +89.124 +33.69 +69.6 +12.9{N:001} +89.33 +53.39 +89.139 +53.39 +67.10 +15.93 +84.22 +92.24 +8.19 +92.1 +89.124 +33.28 +67.33 +60.49 +33.103 +84.4 +92.24 +1.11 1.5 +92.27 +92.24 +12.1 +53.28 +92.6 +69.3 +53.40 +71809 92.29 +13.107 +67.33 +60.71 +89.87 +15.213 +67.55 +59.23 +84.22 +92.24 +1.11 1.5 +89.87 +91.13 +67.113 +60.12 +9.24 +17.5 +83.23 +92.24 +7.3 +83.13 +92.27 +85.1 +15.66 +84.3 +93.492a +84.18 +92.1 +89.87 +33.69 +92.24 +12.18 +92.1 +15.148 +92.11 +92.23 +30.113 +89.94 +15.81 +89.107 +92.1 +89.93 +92.24 +60.15 +11.23 +92.29 +89.87 +15.93 +84.22 +92.24 +7.2 +92.24 +9.24 +89.87 +33.198 +92.4 +92.16 +24.1 +92.24 +12.28 +83.13 +92.24 +7.2 +92.11 +17.1 +89.92 +33.69 +15.66 +84.16 +93.484 +89.92 +15.73 +93.341a 93.341f +92.24 +33.131 +93.296 +92.27 +33.70 +33.98 +90.58 +92.6 +89.76 +92.27 +21.27 +92.6 +89.92 +59.23 +92.24 +10.8 +92.6 +71900 67.136 67.33 +92.24 +68.1 +92.1 +33.70 +13.122 +92.24 +12.18 +92.24 +88.24 +90.57 +92.11 +64.13 +89.93 +90.57 +92.4 +67.33 +67.65 +89.87 +29.7 +92.24 +33.98 +92.24 +12.9{N:001} +90.21 +33.69 +89.136 +93.190a +53.41 +2.7 +89.136 +92.7 +53.49 +90.6 +12.18 +88.24 +89.50 +89.65 +92.24 +58.33 +57.84 +71942 92.11 +92.24 +12.1 +64.12 +89.93 +92.4 +31.102 +71950 92.24 +12.9{N:001} +93.169a +93.387 +92.1 +92.14 +13.4 +74.2 +13.146 +92.24 +12.1 +71962 32.1 +92.29 +33.119 +89.92 +33.357 +92.24 +12.1 +33.69 +89.46 +89.93 +92.24 +11.37 +92.24 +12.1 +92.24 +41.52 +13.62 +23.88 +71981 91.3 +71983 92.24 +15.136 +89.25 +92.24 +22.2 +92.24 +13.107 +90.57 +93.348 +15.17 +84.19 +93.606 +89.92 +93.510 +89.92 +93.405a +92.23 +33.70 +92.24 +33.260 +89.131 +72005 58.51 +93.172 +89.124 +13.69 +92.12 +63.20 +92.11 +9.24 +93.509 +89.92 +93.511 +92.18 +15.81 +84.16 84.22 +93.405a +33.70 +89.93 +90.58 +92.24 +72025 33.215 +92.24 +12.9{N:001} +93.169a +89.92 +13.1 +76.3 +12.9{N:001} +90.42 +92.11 +89.95 +59.11 +60.2 +92.24 +31.102 +41.51 +90.57 +92.24 +12.9{N:001} +72045 24.52 +92.24 +33.98 +90.24 +92.11 +84.22 +92.24 +24.54 +92.24 +11.32 +92.24 +85.1 +83.13 +93.480a +72060 15.68 +93.65 +84.19 +93.405a +92.27 +15.86 +89.87 +27.5 90.79 +92.24 +25.89 88.66 +92.24 +92.24 +12.1 +25.125 +89.87 +25.150 +59.23 +92.24 +30.63 +92.24 +26.3 +68.11 +92.24 +12.9{N:001} +89.33 +13.1 +9.24 +88.1 +89.92 +59.35 +12.18 +88.24 +89.92 +31.102 +89.87 +59.72 +11.1 +59.12 +92.24 +12.9{N:001} +72101 15.40 +84.16 +93.596 +27.42 +93.331 +89.87 +27.27 +15.165 +84.16 +93.405a +72112 13.107 +92.11 +72115 67.168 +63.1 +15.123 +89.119 +92.24 +11.32 +89.92 +33.224 +11.1 +59.12 +89.95 +33.127 +60.48 +83.13 +93.405a +92.24 +36.38 +11.35 +72134 67.136 +92.29 +92.24 +67.142 +15.107 +84.3 +93.480a +53.79 +84.16 +93.405a +89.87 +17.6 +60.10 +63.20 +92.11 +33.126 +93.8 +72152 90.4 +92.24 +12.18 +23.33 +78.2 +67.62 +13.104 +90.57 +63.1 +92.24 +1.39 9.22 +72164 13.107 +67.33 +93.214a +72168 92.24 +36.38 +78.53 +57.27 +92.12 +30.83 +59.27 +92.11 +89.57 +57.119 +15.193 +92.24 +85.69 +83.13 +92.24 +93.486a +11.23 +92.27 +89.93 +42.7 +15.67 +84.18 +92.24 +53.77 +90.8 +9.17 +93.65 +89.92 +93.331 +72198 67.33 +92.30 +92.24 +67.78 +37.110 +93.144c +92.24 +37.67 +92.24 +37.110 +20.12 +92.12 +92.24 +63.20 +92.24 +11.33 +89.94 +20.71 +93.158a +92.24 +10.49 +93.190b +6.33 +72222 24.1 +90.21 +25.92 +13.1 +92.24 +93.172 +59.72 89.89 +37.109 +89.93 +93.296 +72233 13.104 +67.178 +92.24 +5.13 +92.27 +89.93 +37.110 +85.32 +84.22 +7.24 +37.111 +60.13 +55.11 +55.17 +37.120 +92.11 +30.56 +67.48 +92.24 +51.6 +15.176 +92.11 +92.24 +11.55 +89.50 +89.136 +92.24 +93.296 +37.122 +83.13 +92.24 +7.24 +89.136 +33.178 +72268 13.107 +25.71 68.12 +90.1 +92.24 +11.32 +90.58 +92.24 +12.1 +72277 92.11 +72280 67.62 +15.171 +92.11 +92.24 +93.144c +92.24 +67.192 +92.30 +92.24 +93.296 +72291 23.66 +83.11 +60.11 +55.17 +37.114 +6.16 +60.11 +89.95 +37.121 +83.33 +92.24 +7.49 +37.122 +92.24 +7.24 +89.87 +91.13 +12.28 +12.9{N:001} +17.5 +89.93 +14.36 +14.37 +83.13 +92.24 +7.26 +89.87 +19.3 +92.24 +8.41 +92.24 +93.296 +23.77 +92.11 +33.69 +17.6 +67.111 +67.111 +89.87 +15.120 +92.11 +92.24 +6.16 +84.4 +92.24 +8.30 +89.87 +33.69 +92.24 +12.28 +90.58 +92.11 +49.14 49.8 +89.92 +49.17 +92.24 +6.183 +92.6 +72350 42.7 +61.9 +89.87 +33.69 +92.11 +49.3 +92.24 +6.172 +92.6 +89.87 +15.144 +92.1 +72363 15.40 +15.144 +72366 69.3 +28.1 32.4 +90.21 +70.3 +13.1 +92.24 +13.107 +90.4 +92.24 +12.28 +89.124 +31.29 +33.488 +24.7 +89.87 +15.32 +60.46 +89.87 +60.49 +37.123 +15.81 +84.17 +92.24 +7.48 +92.24 +2.59 +92.24 +82.12 +84.16 +92.24 +1.89 +72398 89.21 +79.110 +92.11 +89.87 +15.40 +15.27 +1.104 +92.22 +89.87 +67.53 +15.51 +92.24 +12.28 +84.3 +92.11 +91.1 +92.24 +93.296 +89.119 +92.25 +13.48 +33.69 +67.38 +28.1 32.4 +70.3 +90.21 +15.68 +92.24 +12.9{N:001} +92.24 +12.28 +92.11 +89.87 +21.17 +92.1 +84.4 +37.14 +93.144c +89.92 +59.23 +92.24 +30.55 +92.24 +11.55 +92.24 +93.172 +89.88 +32.13 +15.81 +84.17 +92.24 +7.3 +92.24 +93.253f +92.24 +10.16 +93.190d +92.24 +33.131 +93.255 +83.5 +59.2 +85.1 +15.130 +89.92 +33.178 +89.87 +19.12 +92.11 +92.24 +7.49 +92.24 +7.38 +15.77 +46.11 +87.83 +33.126 +93.314 +72477 27.61 +92.24 +33.103 +92.24 +93.296 +89.25 +92.24 +25.123 +69.3 +79.110 +92.24 +7.48 +89.124 +15.232 +33.198 +85.8 +92.24 +93.296 +83.33 +92.24 +7.48 +89.124 +92.24 +90.58 +92.11 +33.69 +30.24 +89.124 +92.24 +33.321 +61.9 +13.2 +89.124 +92.24 +33.69 +92.24 +12.28 +13.4 +92.11 +72517 92.24 +93.296 +68.11 +19.12 +89.94 +79.110 +24.1 +92.11 +72526 25.220 +89.87 +33.478 +92.11 +92.24 +8.30 +33.121 +33.201 +92.11 +92.16 +92.24 +12.9{N:001} +92.11 +15.174 +84.4 +92.24 +7.24 +89.88 +33.69 +33.198 +93.158b +89.92 +92.24 +11.23 +92.29 +89.87 +15.40 +15.34 +84.16 +58.37 +80.1 +72558 13.48 +14.40 +13.104 +25.243 +69.3 +78.8 +83.9 +92.24 +55.17 +71.19 +92.14 +92.24 +93.296 +13.107 +72573 93.144c +27.42 +92.11 +72577 69.3 +27.27 +56.12 +92.24 +37.121 +33.323 +20.65 56.38 +91.1 +15.107 +84.3 +92.24 +93.486a +84.16 +93.492a +85.61 +72594 33.453 88.180 +93.601 +89.92 +93.579 +72599 31.23 +15.86 +84.18 +92.11 +89.87 +33.301 +93.76 +92.24 +37.9 +92.24 +7.29 +92.24 +37.67 +33.163 +22.42 +89.26 +92.24 +23.6 +92.11 +92.24 +1.79 +90.7 +92.24 +37.69 +72624 30.85 +67.186 +92.24 +93.144c +49.1 +6.162 +37.69 +17.12 +83.46 +92.24 +7.63 +33.26 +90.58 +92.11 +72639 92.24 +11.78 +33.77 +12.22 +33.103 +89.92 +69.3 +9.1 +72648 67.113 +20.73 +92.11 +12.28 +12.9{N:001} +89.24 +92.27 +69.3 +72657 92.24 +33.357 87.4 +92.24 +12.1 +89.87 +13.48 +23.166 +23.99 +89.124 +92.24 +33.260 +92.24 +72670 59.62 +89.92 +59.68 +72674 93.65 +89.92 +93.331 +15.88 +72679 93.480a +68.26 +92.24 +57.119 +15.169 +93.190d +92.24 +33.131 +93.255 +72689 85.1 +83.13 +93.405a +83.12 84.31 +92.24 +85.1 +11.32 +53.79 +89.92 +33.243 +89.102 +92.24 +93.65 +89.102 +93.349d +92.24 +33.129 +93.279 +89.92 +93.235a +92.24 +93.511 +89.102 +93.250 +93.144c +92.24 +37.78 +10.51 34.15 +89.102 +93.331 +89.87 89.94 +35.22 +92.11 +92.24 +12.9{N:001} +89.92 +53.65 +33.69 +92.24 +12.18 +92.24 +88.24 +91.6 +37.97 +92.1 +92.24 +93.65 +89.92 +93.331 +89.57 +92.24 +42.42 +92.27 +33.312 +92.11 +67.47 +53.65 +89.92 +33.178 +89.92 +85.51 +92.24 +8.30 +92.11 +15.66 +91.3 +72756 92.11 +15.68 +90.1 +92.24 +88.24 +12.18 +15.107 +84.16 +93.576 +89.88 +84.10 +54.7 +84.16 +93.510 +89.87 +85.6 +83.13 +93.564 +33.204 +92.24 +33.260 +92.24 +12.1 +83.13 +92.24 +7.20 +92.24 +93.172 +89.94 +72786 89.93 +93.190d +35.20 +72790 15.21 +63.1 +92.24 +1.66 +84.19 +93.549 +27.27 +9.24 +72799 53.97 +53.81 +93.172 +92.27 +33.126 +93.63 +92.27 +85.1 +89.107 +92.24 +37.82 +93.335 +93.294b +9.24 +32.27 +92.29 +33.308 +93.65 +89.92 +93.331 +25.9 +33.212 +92.24 +33.260 +92.24 +12.1 +89.124 +39.1 +92.11 +93.114 +92.24 +53.97 +89.23 +61.9 +33.145 +92.24 +33.126 +92.11 +68.60 +13.46 +92.24 +37.82 +89.122 +92.24 +31.102 +89.124 +93.331 +92.24 +89.93 +93.294a +59.38 +12.18 +88.24 +24.49 +84.16 +92.11 +33.69 +91.14 +59.35 +58.28 +88.154 +89.92 +58.28 +88.301 +9.4 +12.34 +39.11 +59.23 +88.13 +69.11 +68.34 +88.264 +92.24 +88.18 +92.24 +12.9{N:001} +92.24 +79.88 88.18 +72878 67.38 +91.13 +76.3 +12.9{N:001} +90.57 +92.6 +72885 13.1 +24.38 +69.3 +24.41 +92.24 +1.28 +67.119 67.49 +67.78 +72894 67.113 +13.122 +90.57 +92.11 +24.40 +72900 14.53 +89.87 +15.23 +57.59 +15.185 +67.47 +92.24 +37.82 +24.1 +92.24 +13.107 +31.102 +25.219 +89.27 90.23 +92.24 +33.236 +92.24 +12.9{N:001} +72919 54.4 +84.3 +92.24 +93.549 +92.24 +89.110 +93.294a +15.7 +84.16 +93.551 +92.24 +93.545 +89.124 +93.190d +15.51 +84.3 89.122 +92.11 +15.88 +84.16 +93.480a +89.124 +92.11 +15.21 +84.3 +92.24 +93.551 +15.86 +84.16 +93.405b +92.24 +93.553 +89.87 +72952 84.22 +92.24 +7.20 +92.24 +67.178 +92.24 +67.184 +17.12 +89.87 +67.48 +92.24 +33.68 +92.24 +33.58 +89.92 +92.24 +33.58 53.79 +15.67 +92.24 +53.93 +84.18 +92.11 +33.69 +9.24 +11.25 +89.65 +85.1 +83.9 +92.7 +92.12 +33.98 +25.150 +90.58 +92.24 +11.12 +33.69 +72989 93.294a +17.6 +89.87 +33.478 +92.24 +8.30 +33.69 +9.1 +93.183 +89.92 +92.24 +53.58 +92.24 +12.1 +31.56 +92.24 +12.1 +92.24 +11.12 11.55 +92.29 +93.182b +30.92 +92.24 +10.20 +92.4 +89.87 +92.24 +11.12 11.55 +87.20 +67.136 +92.24 +85.79 +83.13 +1.79 +93.398 +89.87 +89.78 +76.5 +81.6 +15.174 +92.11 +84.4 +92.11 +89.87 +78.42 +67.172 +67.78 +25.173 35.45 +92.11 +83.13 +92.24 +1.86 +89.87 +20.42 +11.55 +60.16 +83.13 +1.79 +93.611 +57.135 +92.24 +1.79 +92.11 +78.42 +67.167 +60.36 +89.92 +60.28 +89.87 +67.48 +92.29 +37.98 +56.28 +67.119 +93.325 +53.79 +67.47 +33.163 +37.67 +73069 37.98 +92.11 +92.24 +12.1 +92.24 +93.327b +10.42 +93.212 +9.24 +89.3 +10.2 +93.70 +67.167 67.94 +67.94 +89.87 +15.9 +92.11 +13.83 +92.24 +93.91 +92.11 +73091 37.67 +92.27 +89.93 +33.69 +33.263 +90.70 +93.91 +92.24 +92.24 +93.166 +9.24 +89.8 +92.24 +26.3 +92.1 +92.27 +42.7 +59.23 +92.24 +30.59 +92.1 +92.24 +12.1 +90.15 +92.29 +92.24 +10.29 +89.8 +33.288 +15.165 +92.24 +93.182b +21.31 +93.169a +33.257 +93.190a +67.19 +67.19 +92.24 +15.87 +92.11 +53.41 +41.52 +59.23 +92.24 +11.12 +93.182b +73139 67.139 +68.26 +93.190a +92.24 +42.26 +33.69 +92.14 +92.1 +13.4 +31.32 +69.3 +13.4 +92.1 +89.125 +91.13 +15.81 +67.48 +92.1 +92.27 +69.3 +13.1 +65.17 +92.24 +6.182 +92.24 +8.49 +18.18 +9.24 +11.25 +10.30 +10.1 +93.7 +89.92 +92.24 +83.9 +92.7 +53.58 +92.24 +12.1 +92.4 +92.24 +33.260 +92.24 +21.26 +92.29 +15.67 +89.23 +92.24 +85.69 +83.13 +93.480a +89.92 +92.24 +37.56 +92.11 +92.29 +30.38 +73197 92.24 +33.103 +92.24 +53.79 +92.24 +89.90 +59.23 +67.184 +33.68 +56.30 +13.106 +89.87 +92.23 +56.4 88.315 +23.99 +27.1 +33.163 +93.297 +20.71 +92.11 +89.87 +67.45 +13.126 +59.23 +92.24 +90.24 +92.11 +33.54 +15.199 +84.3 +92.24 +6.28 +85.32 +84.22 +7.75 +89.124 +92.24 +12.1 +23.94 +92.11 +84.4 +23.121 +92.27 +24.1 +67.136 +67.186 +59.1 +92.24 +15.153 +92.11 +84.3 +92.24 +93.444a +84.16 +93.480a +92.18 +67.38 +58.67 +33.270 +92.11 +90.58 +92.24 +11.12 +73261 92.4 +92.7 +33.215 +92.24 +90.58 +92.24 +10.20 +15.1 +33.288 +90.21 +92.29 +92.24 +12.1 +13.106 +92.24 +10.28 +73278 23.94 +93.169a +64.12 +89.93 +83.13 +92.24 +33.112 +92.24 +60.49 +33.54 +12.15 +92.1 +13.4 +92.6 +92.1 +67.205 +23.58 +92.6 +89.94 +90.21 +23.94 +92.11 +84.4 +23.121 +67.130 +67.62 +13.24 +13.62 +23.205 +61.10 +33.69 +90.21 +57.71 +92.7 +92.24 +33.290 +93.91 +92.24 +71.17 +89.26 +89.93 +83.13 +58.37 +33.69 +69.3 +13.142 +92.24 +88.24 +92.6 +90.79 +23.205 +73330 89.136 +93.91 +57.4 +11.4 +35.19 +92.24 +92.24 +12.1 +30.57 +23.104 +89.87 +52.7 +73343 92.24 +52.7 +92.11 +89.87 +90.79 +23.205 +89.136 +92.27 +92.24 +12.1 +23.94 +69.3 +90.79 +23.205 +89.50 +28.21 +13.1 +92.7 +9.1 +11.25 +90.21 +90.4 +92.29 +92.7 +40.8 +88.310 +33.204 +89.92 +89.122 +59.23 +92.27 +69.3 +74.5 +89.76 +33.55 +93.266 +56.34 +90.6 +92.29 +59.23 +92.24 +31.102 +56.34 +89.50 +27.58 +89.62 +13.119 +92.24 +33.69 +90.6 +92.24 +53.79 +24.1 +92.24 +88.193 +89.92 +25.213 +89.92 +13.98 +89.33 +42.11 +90.47 +92.1 +67.136 +92.24 +67.142 +92.7 +42.11 +92.27 +69.3 +69.3 +31.35 +89.67 +92.12 +33.201 +92.7 +73420 15.40 +92.11 +33.168 +67.160 +92.24 +67.54 +67.184 +33.70 +92.11 +92.24 +33.98 +92.29 +89.87 +15.139 +92.24 +11.44 +36.31 +59.1 +92.24 +93.172 +89.92 +92.24 +53.53 +11.54 +92.24 +93.294a +89.92 +92.24 +93.65 +73450 33.71 +92.11 +33.301 +92.11 +68.11 +92.24 +88.66 +92.24 +12.1 +73460 92.24 +73462 67.184 +78.40 +63.2 +92.24 +11.61 +15.123 +24.52 33.212 +92.24 +33.260 +92.24 +73473 89.124 +92.24 +93.172 +24.1 +92.24 +11.1 +59.38 +88.162 +73482 33.455 +92.24 +90.1 +93.294a +33.70 39.1 +33.400 +89.102 +33.90 +92.24 +93.294a +89.102 +92.24 +93.65 +33.69 +13.1 +71.39 +92.7 +60.46 +33.70 +92.24 +33.260 +92.24 +12.1 +89.32 +31.63 +92.11 +89.92 +69.3 +30.108 +92.25 +65.17 +92.24 +67.96 +23.88 +91.13 +34.25 +90.59 +92.24 +11.37 +89.23 +61.10 +33.329 +92.4 +92.24 +12.9{N:001} +37.96 +92.6 +73530 14.36 +11.37 +92.24 +13.1 +92.6 +73536 21.26 +84.19 +61.13 +92.24 +1.39 +73542 33.212 +92.24 +11.37 +25.125 +89.92 +33.357 +92.24 +33.260 +92.24 +12.9{N:001} +89.87 +31.102 +59.7 +13.1 +37.96 +13.62 +23.88 +67.96 +89.87 +15.196 +92.24 +33.260 +92.24 +12.9{N:001} +84.29 +63.1 +92.24 +1.79 +89.124 +92.24 +93.172 +39.8 +92.24 +53.53 +9.34 +92.24 +87.33 +89.92 +92.24 +87.45 +92.24 +1.89 +73585 68.9 +39.45 +90.34 +92.24 +93.294a +89.92 +93.65 +89.87 +15.44 +92.11 +84.3 +92.24 +1.79 +92.11 +73600 92.24 +16.8 +92.24 +2.15 +92.24 +8.49 +90.34 +92.11 +15.81 +84.16 +93.482 +89.88 +92.24 +36.38 +78.46 +25.123 +89.92 +12.18 +88.24 +73620 13.107 +83.13 +93.482 +73624 92.24 + +15.93 +92.11 +84.22 +92.24 +7.20 +92.24 +93.172 +89.87 +33.70 +61.10 +89.52 +31.102 +89.102 +93.172 +89.102 +11.40 +78.3 +11.1 +89.124 +92.24 +31.107 +93.172 +68.9 +89.92 +88.200 +92.24 +88.200 +92.24 +11.37 +73656 92.24 +11.23 +73659 91.3 +59.12 +67.78 +85.61 +33.90 +90.23 +92.24 +12.9{N:001} +92.24 +33.262 +90.40 +92.24 +33.260 +92.24 +88.66 +92.11 +90.51 +33.477 +89.92 +33.480 +13.107 +89.76 +92.24 +9.17 +92.11 +73685 63.26 +92.24 +11.1 +92.24 +11.61 +73691 89.136 +92.24 +85.1 +89.107 +92.24 +93.172 +89.136 +92.24 +89.107 +92.24 +53.74 +89.87 +67.45 +91.5 +30.78 +92.24 +89.102 +11.37 +89.102 +93.172 +89.107 +92.24 +37.56 +92.11 +88.130 +89.92 +20.79 +92.11 +27.5 +15.62 +84.16 +92.24 +1.89 +92.24 +93.519 +93.521 +89.92 +93.462 +89.92 +92.24 +1.80 + +33.215 +73737 9.24 +74.22 +92.24 +8.49 +83.13 +93.521 +85.63 +23.175 +67.131 +8.69 +10.16 +92.11 +92.27 +67.10 +15.227 +92.29 +73754 92.24 +93.294a +33.70 +92.27 +24.49 +92.11 +89.87 +24.1 +90.21 +57.1 +31.85 +92.24 +23.136 +33.69 +78.2 +33.103 +17.6 +83.46 +92.24 +8.49 +92.6 +79.88 +89.87 +15.238 +89.93 +15.227 +89.88 +92.24 +11.1 +24.1 +92.27 +90.45 +93.294a +33.78 +92.24 +33.80 +92.11 +33.8 +33.69 +92.24 +12.22 +64.4 +9.1 +15.107 +84.18 +92.4 +89.88 +33.129 +92.24 +93.65 +93.138 +89.94 +92.24 +93.294a +93.124a +89.32 +92.11 +13.4 +92.24 +36.1 +92.24 +33.99 +89.88 +92.24 +53.87 +92.24 +93.138 +92.24 +85.1 +83.33 +92.24 +1.89 +4.16 +89.92 +6.193 +83.23 +92.24 +7.48 +15.166 +89.107 +92.24 +11.1 +30.58 +53.19 +89.124 +32.1 +92.24 +53.74 +93.65 +89.92 +93.294a +19.32 +92.24 +6.162 +73849 15.236 +84.22 +92.24 +11.1 +33.83 +89.92 +33.69 +9.24 +92.15 +92.29 +42.7 +89.93 +92.4 +25.32 +92.7 +9.1 +58.67 +33.215 +92.7 +89.122 +92.29 +92.24 +65.37 +31.60 +84.17 +12.1 +23.88 +92.27 +13.9 +92.24 +1.11 +89.92 +92.24 +1.39 +89.92 +92.24 +1.69 +89.92 +59.23 +92.24 +83.13 +92.11 +92.27 +67.136 +92.24 +67.85 +67.144 +13.138 +59.23 +92.24 +11.55 +41.11 +92.24 +41.16 +92.11 +89.72 +69.3 +33.267 +92.11 +13.140 +88.3 +1.9 +92.7 +14.10 2.10 +13.128 +89.92 +67.1 +23.201 +23.17 +5.1 +73920 25.121 +92.24 +26.3 +92.7 +73925 92.29 +33.69 +22.33 78.41 +68.46 +92.24 +11.1 +92.24 +89.62 +53.19 +92.11 +89.124 89.87 +15.83 +84.3 +93.405b +89.92 +93.482 +93.172 +89.87 +33.301 39.44 +92.24 +11.1 +73947 20.79 +92.24 +93.294a +15.212 +83.20 +92.24 +1.89 +31.29 +92.11 +23.99 +89.124 +15.147 +92.24 +36.38 +92.11 +17.6 +15.93 +84.22 +92.24 +1.89 +89.87 +92.24 +67.208 +15.40 +89.107 +92.24 +93.65 +84.16 +93.462 +89.88 +73978 92.24 +1.89 +92.30 +89.92 +36.37 +59.2 +15.88 +84.16 +92.24 +93.521 +89.87 +84.16 +93.482 +89.87 +84.16 +93.405b +74.19 +92.24 +26.4 +92.24 +36.38 +25.150 +68.11 +92.24 +31.102 +89.93 +90.21 +71.34 +84.29 +59.1 +22.2 +92.4 +90.70 +84.22 +92.24 +37.64 +92.24 +12.1 +89.87 +37.103 +92.11 +89.90 +11.32 +53.77 +33.178 +89.123 +53.65 +35.47 +92.11 +92.24 +12.9{N:001} +90.23 +92.27 +31.102 +91.1 +15.21 +92.24 +93.552 +15.81 +84.16 +92.24 +93.545 +89.87 +33.70 +83.13 +93.551 +92.24 +33.260 +15.107 +84.16 +93.418 +84.10 +54.7 +84.16 +93.405a +84.11 +74055 57.77 +92.24 +88.66 +92.24 +12.1 +89.57 +92.24 +42.42 +92.27 +68.26 +89.87 +15.86 +89.87 +15.125 +92.24 +11.32 +33.197 +59.7 +90.45 +92.24 +12.1 +89.108 +92.11 +89.93 +90.21 +71.9 +92.24 +11.37 +7.49 +31.102 +89.87 +85.61 +67.78 +69.3 +59.13 +89.107 +92.24 +36.38 +91.1 +92.12 +15.107 +84.3 +92.24 +93.486a +33.224 +92.24 +11.23 +90.21 +74105 53.51 +92.24 +41.25 +92.24 +33.59 93.266 +69.3 +74.5 +21.27 +74114 13.107 +33.448 +89.92 +33.440 +69.3 +78.8 +92.24 +93.294a +89.92 +92.24 +93.65 +90.33 +92.11 +37.96 +15.101 +93.294a +89.92 +93.65 +89.93 +92.12 +58.37 +63.20 +92.11 +84.18 +92.24 +53.74 +89.92 +53.77 +84.16 +93.480a +89.6 +92.24 +33.440 +92.29 +91.3 +74150 92.24 +15.72 +90.1 +92.24 +11.32 +15.21 +92.24 +89.102 +93.606 +89.102 +93.568a +33.201 +92.24 +31.60 41.51 +92.24 +11.37 +74167 13.9 +25.123 +78.2 +59.23 +92.24 +11.23 +89.87 +15.86 +84.16 +74177 34.53 +90.7 +92.24 +11.32 +89.92 +92.24 +53.74 +89.92 +92.24 +53.77 +89.88 +33.197 +59.7 +92.24 +12.1 +90.45 +89.78 +92.11 +89.124 +17.11 +92.12 +92.24 +63.20 +92.24 +11.50 +92.24 +11.49 +31.102 +33.69 +90.21 +71.21 +53.51 +92.11 +89.88 +33.327 +36.19 +92.24 +33.55 +93.266 +89.102 +15.123 +92.24 +53.74 +89.102 +92.24 +53.77 +27.5 +90.24 +92.24 +33.98 +92.29 +89.87 +59.11 +33.440 +13.107 +17.6 +93.296 +33.69 +90.58 +92.11 +9.24 +11.23 +92.7 +28.3 +90.21 +67.26 +67.142 +67.98 +83.9 +92.7 +30.92 +92.24 +12.1 +89.76 +92.24 +33.101 +92.1 +33.212 +92.24 +11.37 +92.24 +33.98 +92.24 +33.217 +89.87 +31.102 +89.87 +92.24 +28.12 +12.1 +33.262 +92.11 +57.71 +92.24 +12.18 +92.24 +88.24 +64.14 +89.93 +92.4 +89.92 +92.23 +30.113 +89.115 +89.102 +92.4 +89.102 +92.11 +92.24 +31.102 +53.28 +92.24 +26.3 +92.11 +89.50 +67.38 +92.15 +88.308 +92.24 +12.1 +22.27 +6.8 +74300 92.24 +8.25 +92.24 +36.38 +92.27 +25.177 +69.9 +92.24 +10.20 +92.4 +69.9 +92.4 +74.9 +89.125 +31.102 31.85 +89.76 +92.24 +88.66 +92.24 +12.9{N:001} +93.169a +21.27 +89.8 +92.27 +89.83 +89.93 92.30 +74327 33.121 +63.2 +92.24 +11.1 +89.87 +24.52 +93.65 +89.92 +93.294a +33.201 +33.477 +89.92 +33.480 +59.7 +90.45 +92.24 +12.1 +83.9 +92.24 +11.37 +90.4 +92.11 +89.87 +67.48 +92.24 +33.121 +92.11 +33.28 +93.158b +33.69 +9.24 +11.23 +31.56 +92.1 +93.349a +28.41 +89.86 +60.46 +92.24 +12.1 +35.39 +30.86 +89.3 +11.37 +11.12 +92.24 +33.126 +92.11 +89.93 +92.29 +31.15 +92.24 +33.98 +92.24 +33.60 53.79 +64.14 +33.54 +67.48 +92.29 +15.89 +89.87 +45.3 +92.24 +7.17 +93.91 +92.24 +15.119 +89.92 +92.24 +74397 92.11 +45.3 +89.92 +45.4 +92.11 +89.59 +71.14 +27.35 +92.24 +63.21 +92.24 +9.1 +92.24 +12.9{N:001} +74412 59.23 +92.24 +11.37 +90.57 +92.27 +11.28 +92.24 +33.126 +92.1 +74422 92.11 +33.69 +12.9{N:001} +90.45 +92.29 +28.21 +74429 67.25 +89.47 +92.1 +31.1 +69.3 +22.25 +92.24 +63.20 +92.24 +11.37 +31.60 +90.57 +92.24 +12.1 +89.125 +33.49 +92.11 +92.24 +13.158 +92.24 +53.37 +92.24 +12.23 +89.92 +92.24 +88.271 +89.92 +19.54 +89.92 +92.24 +8.64 +89.23 +33.59 93.266 +67.131 +67.144 +67.98 +89.90 +1.89 +92.24 +33.256 +92.11 +74471 83.13 +92.24 +11.45 7.20 +89.90 +59.23 +67.184 +33.68 +67.47 +30.96 +92.24 +53.74 +89.92 +92.24 +53.77 +89.107 +63.1 +92.24 +11.32 +30.92 +9.24 +89.3 +92.11 +15.66 +84.16 +93.405a +89.107 +92.24 +93.294a +89.92 +93.65 +93.173e +92.24 +33.129 +93.66b +89.92 +93.339 +9.24 +36.1 37.58 +83.9 +92.24 +11.23 +33.61 +90.8 +8.30 +90.27 92.11 +92.24 +53.74 +89.92 +92.24 +53.77 +11.23 +92.24 +84.31 +92.24 +93.405a +89.92 +93.589 +89.92 +93.501 +11.23 +92.24 +89.3 +11.37 +33.22 +89.32 +33.212 +90.21 +92.12 +89.3 +92.4 +25.244 +92.7 +33.98 +25.231 +92.24 +26.4 +92.7 +92.27 +69.3 +33.323 +30.96 +92.4 +13.48 +31.23 +74556 9.24 +15.66 +84.18 +92.7 +89.107 +92.24 +25.45 +92.4 +93.65 +89.92 +93.294a +9.24 +21.7 +92.24 +21.7 +92.11 +90.36 +92.24 +33.126 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.50 +15.66 +93.173e +89.92 +93.339 +89.92 +92.11 +89.76 +33.98 +33.198 +92.24 +58.31 +89.23 +30.96 +92.24 +12.18 +92.24 +88.24 +89.92 +92.4 +92.23 +78.28 +22.4 +90.87 +92.7 +89.130 +92.29 +92.24 +71.39 +13.158 +5.15 +89.92 +8.64 +89.92 +19.54 +89.92 +88.271 +89.121 +92.27 +13.153 +92.25 +88.6 +42.8 +23.133 33.24 +91.3 +74626 92.24 +15.43 15.66 +15.107 +84.16 +93.405a +89.87 +15.125 +92.24 +11.1 +57.75 +92.24 +6.63 +74639 33.68 +25.125 +89.27 90.23 +92.24 +25.150 +89.102 +93.173e +89.102 +93.339 +89.93 +92.37 +53.79 +58.67 +89.76 +33.99 +59.1 +25.150 +92.24 +11.23 +89.92 +74.19 +89.87 +90.45 +67.78 +15.43 +89.79 +22.42 +89.122 +92.24 +11.23 +84.18 +92.24 +15.66 +92.11 +89.124 +93.294a +89.92 +93.65 +85.61 +83.13 +93.405a +33.224 +89.92 +33.215 +89.108 +89.93 +58.37 +59.1 +92.24 +33.260 +92.24 +12.9{N:001} +89.87 +67.48 +92.12 +67.142 +33.69 +90.58 +93.65 +93.294a +91.6 +15.90 +34.50 +92.24 +11.23 +83.12 +1.89 +59.23 +83.13 +92.27 +33.204 +92.24 +33.260 +92.24 +12.9{N:001} +92.16 +13.2 +74717 93.65 +30.56 +15.169 +89.93 +92.24 +93.190d +92.24 +33.129 +93.255 +89.124 +93.294a +30.95 +92.24 +15.51 +89.122 +92.11 +84.3 +93.545 +89.92 +69.3 +15.148 +92.11 +89.57 +92.24 +42.42 +69.3 +15.169 +92.29 +74746 13.107 +33.451 +89.52 +63.30 +92.11 +89.122 +92.26 +89.88 +92.24 +93.65 +15.168 +92.24 +93.255 +54.6 +84.16 +93.510 +89.124 +93.294a +30.88 +93.339 +15.40 +57.77 +92.24 +88.66 +92.24 +12.9{N:001} +90.1 +92.24 +11.23 +89.87 +15.21 +92.24 +93.589 +89.92 +93.501 +74.19 +92.24 +11.32 +89.87 +15.84 +89.93 +84.16 +93.462 +89.92 +84.16 +93.521 +91.1 +91.13 +85.1 +83.2 +36.38 +74798 33.126 +93.361 +10.42 +9.34 +93.172 +11.17 31.103 +89.124 +10.14 +11.40 +92.27 +33.263 +90.1 +92.24 +83.13 +93.521 +89.92 +93.482 +11.23 +25.1 +92.24 +93.294a +92.29 +89.107 +92.11 +15.40 +89.87 +30.86 +53.51 +92.11 +90.44 +92.24 +93.172 +92.24 +85.1 +83.13 +92.24 +80.1 +92.30 +89.23 +28.1 +59.23 +90.21 +11.40 +92.24 +10.14 +92.11 +13.5 +74846 67.139 +15.21 +92.24 +1.89 +33.237 +92.11 +36.19 +92.24 +33.333 +92.24 +30.75 +90.1 +92.24 +53.74 +89.92 +53.77 +92.24 +83.13 +93.480a +91.3 +74867 92.24 +11.32 +74.19 +92.24 +31.102 +89.92 +59.52 +92.24 +60.2 +74877 67.92 +89.87 +15.21 +92.24 +93.609 +89.92 +93.443 +1.79 +13.146 +90.1 +92.24 +88.24 +12.18 +33.70 +92.24 +33.260 +83.13 +92.24 +93.415 +89.87 +15.81 +84.21 +92.24 +93.535 +68.58 +84.16 +92.24 +93.436 +15.10 15.18 +74907 69.3 +13.138 +92.11 +92.24 +12.18 +93.169a +74914 15.28 +92.24 +93.535 +15.107 +84.16 +93.599 +74921 33.488 +67.136 +67.192 +92.24 +93.294a +24.1 +9.24 +93.528 +74931 17.1 +89.92 +33.168 +92.11 +89.92 +33.69 +15.31 +84.16 +93.527 +35.1 +92.4 +89.87 +67.45 +92.24 +33.488 +24.1 +67.53 +25.9 +15.40 +84.16 +93.527 +30.82 +90.21 +33.312 +92.24 +12.1 +92.4 +33.215 +92.11 +74961 54.4 +84.3 +93.599 +54.3 +84.16 +93.571 +89.87 +92.24 +67.208 +84.16 +93.541 +93.541 +84.10 +84.16 +93.605 +74977 13.4 +74980 1.85 +93.527 +1.89 +1.90 +89.87 +85.1 +85.61 +83.13 +92.29 +92.24 +1.89 +67.142 +92.12 +89.88 +92.24 +67.178 +92.24 +67.184 +15.40 +83.20 +92.24 +7.48 +83.25 +1.76 +83.5 +33.179 +85.1 +31.29 41.28 +89.87 +17.12 +33.70 +92.24 +15.123 +9.34 +89.87 +75016 9.34 +33.126 +93.236 +57.204 +1.89 +93.476 +53.53 +92.24 +12.1 +31.56 +92.27 +92.24 +26.3 +92.24 +12.9{N:001} +27.49 +30.35 +92.24 +33.70 +90.1 +93.294a +89.87 +67.45 +53.41 +89.92 +92.24 +10.8 +92.11 +33.315 +33.69 +89.65 +30.108 +92.1 +31.87 +92.24 +12.9{N:001} +13.1 +15.93 +84.22 +92.24 +7.2 +92.1 +85.55 +89.87 +33.299 +92.4 +75063 13.107 +15.10 +92.4 +84.16 +92.24 +33.179 +87.83 +75071 33.285 +12.37 +12.48 +15.78 +92.4 +92.18 +57.193 +59.11 +13.127 +92.24 +57.12 +92.11 +33.284 +92.29 +15.145 +92.24 +93.294a +89.92 +92.4 +33.83 +33.69 +92.29 +92.24 +9.24 +87.76 +92.24 +12.1 +92.24 +12.4 +13.4 +92.18 +33.204 +92.7 +41.16 +21.26 +89.87 +92.29 +41.7 +67.136 +59.1 +67.142 +89.124 +93.294a +88.190 +89.87 +15.90 +92.24 +12.37 +33.69 +33.327 +92.6 +89.76 +33.126 +93.169a +93.387 +15.40 +89.122 +92.11 +75130 15.40 +58.31 +92.24 +67.199 +75135 92.24 +57.12 +92.11 +27.5 +90.21 +13.93 +92.24 +25.62 +92.24 +57.193 +92.11 +37.110 +92.24 +93.294a +89.92 +92.24 +93.339 +15.178 +84.22 +92.24 +57.207 +83.35 +92.24 +56.29 +89.87 +15.172 +92.11 +92.24 +37.90 +33.69 +92.29 +92.24 +9.24 +39.44 +92.4 +92.24 +1.89 +93.172 +13.5 +89.93 +33.204 +41.25 +92.27 +31.52 +69.7 +42.7 +69.3 +71.32 +92.4 +93.562 +58.67 +89.87 +39.50 +92.24 +11.1 +90.31 +92.11 +89.87 +92.24 +37.90 +19.33 +92.11 +92.24 +6.162 +33.323 +19.8 +75202 90.87 +92.11 +59.1 +19.1 +85.34 +84.22 +7.24 +33.327 +92.24 +37.124 +21.10 +37.122 +92.11 +92.27 +33.328 +92.31 +57.125 +85.34 +92.11 +84.22 +92.24 +83.15 +7.24 +89.87 +92.24 +8.49 +92.11 +18.12 +83.13 +92.24 +6.21 +75234 67.35 +92.24 +67.75 +93.294a +89.92 +93.339 +33.178 +33.113 +92.24 +12.1 +89.94 +24.61 +92.11 +92.24 +37.117 +89.87 +67.113 +14.87 +78.2 +13.107 +89.52 +16.7 +92.24 +7.41 +92.24 +7.24 +89.87 +79.110 +67.113 +92.24 +7.49 +59.23 +89.93 +59.23 +92.24 +6.14 +18.19 +89.87 +92.24 +37.124 +23.75 +13.48 +89.87 +24.1 +79.110 +92.24 +7.49 +92.24 +7.24 +15.212 +92.24 +6.33 +67.62 +92.25 +20.71 +31.29 +15.63 +92.24 +37.117 +89.124 +33.77 +93.294a +78.2 +33.103 +33.69 +92.23 +20.18 +42.8 +92.10 +89.23 +59.23 +85.1 +83.1 +75308 33.163 +6.102 +15.237 +89.93 +25.261 +13.48 +17.22 +92.24 +93.294a +89.92 +93.339 +89.87 +15.171 +92.11 +83.20 +33.69 +87.53 +92.14 +92.1 +42.7 +71.21 +89.59 +21.27 +89.87 +92.24 +33.69 +31.85 +75336 92.24 +12.9{N:001} +93.169a +75340 21.27 +92.6 +89.92 +92.24 +10.8 +92.6 +89.87 +33.70 +92.11 +92.24 +33.260 +92.24 +75353 89.107 +59.23 +92.24 +83.13 +92.24 +10.8 +92.11 +89.87 +15.168 +92.11 +67.33 +92.30 +92.24 +67.199 +92.24 +67.192 +47.12 +89.25 +92.24 +20.29 +89.87 +53.41 +92.11 +89.92 +92.24 +92.11 +75380 67.113 +89.88 +15.176 +92.11 +84.22 +92.24 +7.2 +57.116 +23.26 +75390 25.133 +10.10 +31.85 +92.24 +12.1 +89.87 +14.40 +13.107 +15.66 +92.24 +37.90 +92.24 +37.89 +33.69 +37.127 +92.24 +9.24 +92.30 +89.87 +33.198 +92.24 +37.124 +92.24 +33.98 +92.29 +90.58 +92.24 +93.294a +90.21 +15.67 +92.24 +37.90 +90.22 +37.127 +89.50 +67.38 +15.40 +15.34 +13.8 +22.42 +89.124 +92.24 +93.294a +33.69 +90.58 +92.11 +19.2 +92.4 +28.66 +56.19 +9.1 +93.562 +13.5 +85.34 +84.22 +7.24 +91.12 +67.38 +28.71 +92.4 +15.44 +75453 89.125 +15.81 +92.37 +92.4 +15.174 +75459 33.198 +92.24 +37.90 +92.24 +37.89 +92.24 +33.98 +92.29 +89.87 +25.252 +33.212 +90.21 +93.562 +58.67 +75474 15.81 +33.168 +92.11 +89.87 +15.174 +33.161 +15.37 +84.3 +92.24 +1.89 +89.87 +15.40 +84.3 +92.24 +7.24 +15.93 +84.18 +92.24 +93.236 +89.87 +34.50 +25.150 +92.24 +11.23 +89.87 +15.40 +75501 15.21 +92.24 +93.404 +89.92 +92.24 +93.408 +15.7 +84.16 +93.475 +83.5 +85.1 +7.20 +92.24 +93.172 +75516 89.8 +92.24 +41.26 +92.24 +93.294a +15.93 +84.18 +92.11 +89.87 +67.136 +67.184 +60.12 +33.446 +92.11 +90.15 +92.24 +33.54 +33.142 +89.92 +72.4 +90.21 +71.34 +92.24 +53.82 +24.78 +89.87 +23.93 +84.4 +23.121 +89.93 +90.21 +92.29 +13.4 +92.24 +53.82 +92.24 +93.169a +92.27 +92.1 +33.204 +92.7 +75558 92.12 +63.20 +92.11 +33.301 +89.92 +34.22 +92.24 +93.294a +89.92 +92.24 +93.339 +89.103 +92.24 +53.53 +11.40 +59.9 +59.11 +89.103 +9.34 +92.24 +87.45 +69.3 +59.3 +89.124 +92.24 +93.172 +88.163 +75586 15.127 15.167 +92.24 +88.251 +9.24 +92.12 +88.110 +89.87 +11.2 +39.44 +92.24 +11.61 +89.87 +39.47 +92.24 +7.3 +93.163a +68.60 +92.11 +15.171 +84.16 +92.24 +11.78 +89.124 +69.3 +27.27 +92.11 +15.178 +93.163a +89.92 +92.12 +11.23 +84.17 +92.24 +37.93 +33.81 +90.21 +92.24 +92.24 +9.22 +39.41 +92.29 +89.93 +83.1 +15.86 +92.27 +34.53 +93.163a +89.93 +92.29 +59.23 +90.35 +92.24 +33.332 +93.208 +42.8 +37.67 +58.37 +13.4 +93.169a +33.69 +75647 39.44 +92.24 +11.1 +89.92 +92.24 +37.93 +33.212 +92.29 +89.87 +57.65 +92.24 +57.169 +90.14 +92.24 +93.163a +89.92 +92.24 +63.21 +37.127 +92.11 +75668 92.24 +11.23 +67.53 +67.136 +67.192 +15.68 +89.102 +92.24 +93.294a +89.102 +92.24 +93.339 +84.16 +93.422 +75683 15.86 +84.22 +92.24 +7.20 +92.24 +93.172 +15.8 +89.124 +92.29 +13.1 +27.48 +92.24 +83.13 +93.475 +75698 31.51 +92.24 +33.260 +89.79 +78.44 +25.68 +75706 67.92 +27.44 +92.24 +33.54 +90.26 +13.2 +92.29 +61.9 +91.6 +75716 59.1 +63.20 +92.11 +31.102 +89.102 +92.24 +11.41 +9.34 +92.24 +87.33 +89.102 +9.24 +69.3 +59.3 +89.124 +67.45 +27.2 +92.24 +84.3 +92.24 +93.475 +93.172 +90.21 +89.93 +83.13 +92.24 +93.422 +33.204 +90.1 +92.24 +93.294a +92.24 +33.260 +92.24 +12.1 +15.81 +89.93 +39.44 +89.92 +39.44 +92.24 +11.1 +89.87 +67.53 +67.47 +92.24 +93.294a +15.68 +92.24 +11.23 +15.18 +84.19 +84.17 +92.24 +1.70 +89.95 +85.57 +89.102 +92.24 +93.339 +89.102 +92.24 +93.361 +83.2 +89.87 +92.24 +15.175 +92.24 +93.294a +15.165 +84.19 +93.393 +89.87 +57.125 +33.330 +90.58 +92.24 +93.339 +89.92 +92.24 +93.361 +90.22 +67.57 +67.56 +15.81 +84.18 +92.11 +15.40 +75805 83.13 +92.24 +93.393 +85.60 +92.11 +92.24 +93.294a +88.189 +92.24 +26.9 +92.11 +89.119 +92.11 +24.14 +6.98 +13.1 +92.24 +1.89 +89.50 +91.3 +33.446 +83.13 +92.24 +7.20 +92.24 +93.172 +89.92 +92.24 +53.53 +89.92 +83.13 +92.24 +57.207 +75839 59.23 +67.186 +90.58 +92.24 +85.12 +89.87 +92.12 +89.93 +92.24 +11.96 +89.92 +11.97 +32.39 +33.439 +92.11 +89.93 +92.12 +33.69 +71.8 +25.1 +92.24 +27.19 33.381 +92.29 +92.14 +33.140 +89.94 +92.24 +31.30 +28.34 +12.26 +33.205 +13.1 +89.33 +92.24 +93.169a +89.92 +92.24 +23.93 +33.215 +75879 18.2 +92.11 +84.17 +92.24 +11.81 93.412 +11.81 93.412 +15.165 +33.69 +74.5 +27.2 +92.14 +92.24 +28.33 +92.29 +92.24 +90.1 +92.6 +33.70 +33.236 +89.23 +25.206 +92.12 +24.55 33.92 +75903 92.24 +24.52 +92.4 +89.50 +25.3 +27.2 +92.14 +75911 33.136 +92.29 +75914 93.395 +59.23 +89.92 +92.24 +85.78 +11.73 +89.57 +92.23 +58.36 +67.80 +64.18 +33.69 +92.12 +89.139 +33.212 +92.12 +28.33 67.28 +75932 17.1 +93.294a +83.13 +83.10 +92.24 +11.81 93.412 +11.81 93.412 +33.69 +9.24 +93.394 +89.4 +59.23 +78.13 +53.3 +92.7 +32.11 +89.23 +15.21 +89.92 +24.47 +92.24 +53.54 53.55 +92.7 +27.27 +89.93 +6.115 +83.47 +92.27 +33.65 +28.27 +12.22 +89.50 +92.27 +28.13 +53.53 +92.29 +92.1 +33.204 +92.7 +92.24 +12.1 +92.24 +42.29 +92.24 +1.1 +89.92 +59.23 +92.24 +83.13 +92.11 +92.29 +1.5 +89.92 +1.39 +12.9{N:001} +13.4 +69.3 +83.13 +42.32 +7.15 +85.69 +69.7 +90.1 +9.5 +9.5 +35.19 +57.45 +92.12 +92.11 +57.71 +59.23 +23.88 +89.92 +23.187 +89.92 +92.24 +59.23 +89.95 +13.9 +90.16 +60.10 +59.23 +11.55 +9.1 +85.69 +83.46 +59.23 +79.93 +92.24 +1.39 +30.83 +62.9 +67.145 +89.92 +92.24 +80.5 +92.24 +85.70 +92.11 +27.41 +92.24 +12.1 +90.26 +71.19 +91.6 +27.40 +92.11 +76040 27.1 +91.6 +91.12 +69.3 +83.30 +84.3 +60.10 +59.27 +92.4 +13.5 +89.23 +89.119 +92.11 +23.88 +89.92 +15.1 +89.92 +13.69 +64.12 +76060 92.12 +92.24 +89.113 +92.7 +33.25 +33.69 +89.23 +92.24 +89.93 +10.32 +13.1 +89.50 +13.4 +10.32 +92.24 +12.1 +69.3 +71.25 +31.29 +2.49 +89.139 +2.51 +89.139 +2.23 +6.96 +42.51 +89.92 +30.15 +9.1 +92.24 +12.13 +13.1 +64.1 +91.3 +76095 92.24 +67.78 +92.24 +28.13 +30.49 +92.24 +12.1 +92.24 +67.38 +76105 92.24 +9.1 +59.23 +83.8 +41.52 +89.33 +76.21 + +67.33 +92.27 +67.62 +56.20 +92.24 +9.22 +89.84 +88.13 +90.6 +9.24 +92.27 +37.96 +31.43 +90.91 +59.23 +23.94 +92.11 +84.4 +23.121 +76133 33.212 +23.93 +23.121 +89.136 +92.24 +33.408 +89.136 +92.24 +33.69 +24.52 +92.6 +90.24 +92.29 +89.93 +67.55 +61.9 +92.24 +93.294a +15.40 +84.4 +83.10 +92.11 +89.87 +92.12 +9.1 +34.22 +92.11 +31.102 +83.9 +92.27 +89.102 +93.96 +92.24 +11.82 +89.102 +9.34 +33.126 +93.89 +89.102 +58.37 +89.107 +92.11 +67.48 +92.29 +15.49 +84.4 +92.24 +93.393 +15.81 +84.16 +93.506 +89.87 +27.27 +76187 93.172 +33.126 +93.16 +93.554 +92.24 +10.1 +67.23 +15.81 +84.3 +92.24 +93.489 +89.92 +93.302 +10.54 +92.11 +90.44 +92.24 +33.325 +93.214a +15.49 +59.23 +92.24 +93.172 +89.122 +92.24 +93.563 +15.77 +92.11 +76216 90.44 +92.24 +42.52 +58.67 +85.55 +89.111 +92.11 +89.92 +76225 89.23 +58.67 +7.10 +92.24 +42.51 +89.94 +33.446 +83.13 +92.24 +7.20 +89.90 +59.23 +67.184 +33.301 +89.95 +93.172 +89.92 +11.40 +76244 67.45 +15.107 +84.3 +92.24 +93.527 +89.102 +92.24 +93.339 +89.102 +92.24 +93.361 +68.19 +92.24 +33.260 +92.24 +93.294a +33.223 +92.24 +93.172 +13.4 +92.24 +53.82 +93.169a +89.124 +39.1 +92.11 +89.92 +33.400 +16.8 +92.24 +6.162 +33.69 +90.58 +92.11 +92.24 +23.107 +92.7 +37.102 +92.24 +8.10 +92.7 +53.29 +92.1 +67.131 +92.24 +67.38 +84.16 +92.24 +11.37 +15.34 +91.1 +15.2 +84.10 +76298 84.22 +7.3 +76301 33.126 +93.363 +93.179b +53.53 +92.24 +12.1 +92.27 +92.24 +7.3 +85.1 +85.15 +92.24 +7.20 +89.87 +93.222 +92.24 +53.93 +31.102 +92.24 +12.9{N:001} +89.107 +59.29 +92.24 +10.8 +92.11 +89.93 +59.1 +92.24 +93.505 +33.212 +31.102 +89.87 +53.41 +76335 33.69 +92.24 +12.9{N:001} +67.136 +67.192 +89.76 +33.488 +92.24 +93.294a +69.3 +25.252 +89.125 +33.70 +89.92 +69.3 +33.117 +89.26 +92.1 +85.1 +89.108 +92.6 +89.92 +92.23 +39.47 90.87 +92.6 +92.24 +20.12 +92.6 +89.26 +11.12 +59.1 +76367 92.1 +83.13 +92.24 +1.89 +92.29 +76373 85.63 +67.168 +89.92 +67.174 +60.15 +33.224 +83.9 +92.11 +92.24 +33.260 +92.24 +12.1 +76386 93.84 +13.4 +37.82 +92.24 +93.419 +39.47 +31.23 +92.24 +93.172 +92.24 +93.294a +89.87 +15.165 +92.11 +83.35 +92.24 +7.63 +33.69 +90.21 +89.137 +92.24 +33.56 +33.302 +92.29 +92.24 +9.1 +53.53 +92.24 +12.1 +89.124 +67.62 +92.24 +93.294a +33.29 +92.24 +33.74 +33.69 +92.24 +93.84 +90.58 +92.24 +93.172 +89.136 +89.65 +13.1 +88.23 +92.12 +89.139 +88.301 +88.110 +91.14 +93.172 +71.14 +56.10 +89.18 +25.171 +92.7 +89.136 +89.65 +13.1 +33.440 +90.24 +33.98 +89.92 +33.126 +89.92 +33.55 +92.24 +89.8 +92.7 +30.45 +92.37 +69.3 +30.56 +92.1 +56.28 +92.29 +58.67 +76465 15.56 +92.11 +89.122 +92.24 +7.63 +76471 59.23 +18.2 +93.353a +92.24 +53.93 +19.1 +83.33 +92.24 +7.63 +76481 92.23 +92.29 +92.24 +93.84 +25.223 +76487 92.24 +93.294a +59.75 +85.59 +67.142 +59.2 +92.24 +11.23 +15.55 +54.6 +84.16 +92.24 +93.589 +89.93 +89.107 +92.11 +93.302 +89.92 +93.16 +19.23 +83.13 +93.499 +92.24 +8.10 +89.23 +90.51 +33.469 +89.87 +15.84 +84.16 +93.471 +92.30 +85.65 +83.3 +89.87 +15.58 92.11 +15.93 +84.22 +92.24 +7.20 +33.446 +92.24 +93.172 +76531 33.161 +92.11 +67.136 +59.1 +67.78 +85.55 +69.3 +33.279 +89.125 +15.55 +89.92 +33.69 +67.55 +15.89 +84.18 +92.7 +92.24 +12.1 +30.58 +54.4 +84.3 +92.24 +93.471 +91.1 +54.15 +84.16 +93.492a +15.101 +89.92 +33.20 +92.24 +11.32 +15.107 +84.16 +93.405a +89.87 +90.45 +67.78 +92.12 +15.40 +15.21 +61.1 +92.24 +93.443 +1.79 +89.92 +93.609 +76579 59.23 +92.24 +36.38 +76583 93.172 +76585 93.33 +33.126 +93.402 +92.24 +10.1 +9.24 +27.20 33.32 +74.4 +13.1 +89.5 +92.24 +33.54 +15.84 +84.16 +93.471 +92.29 +76602 33.225 +92.24 +41.35 +92.24 +12.9{N:001} +89.93 +25.73 +92.24 +25.73 +33.70 +89.92 +33.224 +72.19 +92.24 +90.24 +92.24 +93.169a +28.3 +58.50 +92.24 +53.41 +93.190a +89.88 +92.29 +68.1 +33.90 +83.13 +92.24 +7.20 +76632 24.52 +92.11 +93.302 +89.92 +93.16 +15.180 +92.11 +89.87 +72.19 +92.11 +33.151 +92.24 +41.35 +92.24 +12.1 +76648 25.3 +92.11 +15.17 +84.16 +92.24 +93.419 +33.300 +92.24 +11.23 +33.61 +92.24 +36.38 +34.53 +92.11 +92.27 +15.86 +35.1 +78.3 +92.24 +31.102 +89.76 +92.24 +57.103 88.66 +89.23 +78.18 +92.24 +93.172 +33.443 +28.66 +72.5 +89.76 +92.24 +33.54 +13.4 +92.24 +53.82 +93.169a +76686 13.107 +76688 92.24 +92.24 +93.33 +85.1 +83.13 +93.506 +93.294a +15.17 +92.24 +1.65 +1.79 +76700 84.16 +93.471 +89.87 +27.27 +92.12 +36.38 +89.88 +33.69 +90.58 +92.11 +89.65 +12.18 +88.24 +57.125 +31.102 +89.87 +92.24 +90.58 +92.11 +89.125 +69.8 +33.212 +90.26 +12.18 +88.24 +13.69 +89.88 +33.69 +89.50 +90.23 +92.14 +53.41 +89.87 +92.24 +33.69 +90.23 +92.24 +93.190a +53.41 +89.87 +33.69 +93.294a +93.190a +53.41 +53.41 +41.52 +92.24 +11.1 +33.69 +90.22 +31.102 +90.23 +92.24 +15.81 +67.48 +92.11 +89.106 +89.106 +90.23 +92.24 +93.169a +76762 33.212 +53.41 +90.23 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +89.87 +85.51 +92.11 +92.24 +93.294a +8.30 +13.117 +92.24 +12.18 +92.24 +88.24 +37.9 90.57 +92.11 +89.102 +33.70 +33.2 33.3 +89.102 +33.459 +76789 13.1 +92.24 +59.23 +9.24 +78.42 +60.21 +76796 15.93 +84.22 +92.24 +7.20 +33.90 +67.136 +67.174 +60.12 +33.446 +89.92 +33.301 +89.6 +92.24 +37.64 +92.24 +12.1 +89.124 +67.45 +92.12 +88.225 +89.92 +31.107 +33.399 +92.24 +41.35 +83.33 +92.24 +11.1 +15.51 +89.122 +92.11 +63.28 +92.24 +36.38 +76831 67.92 +33.446 +83.13 +92.24 +7.14 +93.368 +89.94 +92.29 +13.107 +67.136 +67.167 +60.11 +89.52 +59.23 +92.24 +85.69 +92.24 +93.415 +33.212 +92.24 +33.260 +92.24 +12.9{N:001} +89.102 +93.172 +89.102 +11.40 +89.95 +76.7 +69.3 +92.24 +90.61 +92.24 +12.1 +42.7 +89.76 +92.24 +9.17 +93.294a +89.52 +76872 84.17 +92.24 +23.144 +15.202 +84.3 +92.24 +8.53 +92.11 +6.159 +89.139 +6.179 +76884 13.40 +89.122 +92.11 +92.24 +23.155 +89.88 +92.24 +12.37 +92.24 +88.110 +15.40 +76896 68.59 +92.12 +89.93 +92.24 +15.23 +93.172 +53.103 +33.133 +90.57 +92.24 +76907 92.24 +12.37 +92.24 +88.110 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +33.69 +33.467 +92.7 +92.24 +93.169a +92.27 +93.294a +33.256 +89.94 +76926 93.343 +93.172 +53.88 +60.16 +10.42 +92.29 +85.1 +42.7 +89.124 +33.28 +92.24 +12.37 +92.24 +88.110 +33.69 +92.11 +92.24 +93.169a +28.1 +89.92 +92.24 +93.294a +28.3 +89.136 +92.7 +92.14 +13.4 +89.87 +15.239 +83.46 +92.11 +92.24 +9.24 +83.13 +92.27 +85.1 +92.24 +12.37 +92.24 +88.110 +39.55 +59.26 +79.64 +90.31 +92.11 +89.52 +49.22 +89.92 +20.28 +15.63 +84.4 +92.24 +7.2 +92.30 +89.87 +92.29 +13.48 +28.21 +59.23 +89.102 +93.172 +89.102 +11.40 +92.24 +85.69 +92.24 +93.471 +76994 13.122 +25.251 +90.57 +59.23 +92.11 +89.92 +33.358 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +89.95 +59.1 +92.24 +31.102 +15.81 +33.275 +77013 33.197 +92.24 +42.8 +92.11 +89.94 +59.2 +92.24 +92.24 +53.99 +42.8 +15.125 +92.24 +6.64 +14.66 +83.33 +59.23 +89.93 +60.4 +92.24 +57.161 +92.11 +77035 27.1 +6.73 +60.45 +60.14 +78.4 +89.4 +76.6 +92.24 +12.9{N:001} +92.24 +33.260 +59.62 +89.92 +79.64 +77050 67.45 +68.26 +92.29 +30.76 +92.24 +93.294a +77057 92.24 +30.76 +15.21 +92.24 +93.527 +89.92 +93.419 +15.18 +84.16 +93.480a +33.69 +90.21 +67.48 +92.24 +85.6 +92.1 +83.2 +71.34 +92.1 +89.93 +93.563 +34.50 +89.87 +15.66 +84.16 +92.24 +93.527 +60.11 +92.24 +35.19 +92.11 +93.361 +89.92 +93.122a +92.11 +85.59 +67.78 +83.13 +92.24 +93.415 +77098 91.5 +67.33 +92.24 +67.78 +92.30 +39.5 +69.3 +78.8 +89.6 +92.24 +41.35 +89.23 +77111 93.93a +33.126 +2.52 +42.29 +6.100 +2.53 +93.43 +13.127 +92.24 +42.53 +69.3 +59.13 +57.193 +92.27 +89.93 +92.24 +89.6 +92.24 +92.31 +42.43 +15.131 +33.69 +9.24 +28.3 +90.21 +89.25 89.77 90.16 +92.29 +92.24 +57.198 +92.24 +57.201 57.32 +92.4 +13.104 +89.92 +24.14 +89.92 +33.212 +90.21 +69.3 +77151 93.471 +89.125 +78.40 +63.2 +92.24 +93.415 +92.24 +93.294a +92.29 +33.301 +31.73 +59.12 +11.1 +33.69 +90.21 +69.3 +13.4 +12.22 +92.24 +90.4 +8.30 +13.80 +89.94 +69.3 +77176 92.29 +21.2 +92.4 +92.24 +57.199 +77182 33.416 +89.43 +89.125 +89.93 +92.24 +92.24 +87.22 +12.25 +93.43 +7.16 +77193 92.23 +31.1 +89.95 +67.62 +89.93 +13.38 +92.24 +87.21 +92.11 +92.27 +59.29 +92.24 +93.415 +89.92 +92.24 +9.22 +53.53 +89.87 +33.212 +77213 13.48 +59.35 +88.178 +33.83 +33.69 +87.22 +92.24 +93.43 +93.469 93.470 +89.92 +59.38 +92.24 +1.89 +92.24 +39.43 +89.88 +15.222 +31.23 +84.22 +92.24 +7.54 +18.5 +93.83a +89.92 +93.38 +93.528 +15.151 +93.294a +89.87 +93.294a +30.56 +15.93 +84.22 +92.24 +11.78 +69.3 +13.138 +92.11 +92.24 +36.38 +89.94 +92.12 +89.93 +92.24 +37.81 +13.1 +92.11 +34.11 +15.67 +84.18 +92.11 +33.168 +69.3 +77267 92.25 +84.22 +92.24 +7.54 +77273 58.37 +58.36 +92.12 +33.83 +89.23 +92.24 +11.78 +77281 25.221 +89.92 +92.24 +59.1 +69.3 +32.4 +92.14 +89.58 +15.123 +89.87 +90.16 +92.24 +11.1 +15.108 33.298 33.299 +93.17c +23.195 +92.11 +92.24 +93.172 +89.87 +92.24 +93.17c +33.478 +92.24 +8.30 +25.1 +33.435 +92.24 +11.78 +89.124 +28.2 +90.21 +93.172 +58.67 +33.80 +60.10 +13.107 +90.16 +59.23 +78.42 +67.136 +67.199 +60.11 +77325 87.22 +92.24 +93.43 +93.469 93.470 +89.87 +92.24 +37.94 +37.31 +92.24 +11.1 +33.69 +9.24 +93.469 93.470 +91.1 +92.14 +9.1 +13.69 +92.27 +69.3 +28.1 +92.24 +93.469 93.470 +1.89 +13.4 +53.95 +92.24 +87.22 +93.43 +89.92 +92.24 +2.48 +89.50 +33.458 +13.1 +92.29 +71.34 +77362 92.7 +37.31 +13.5 +89.92 +92.23 +88.98 +42.8 +89.23 +15.165 +92.24 +9.24 +92.29 +69.9 +53.105 57.242 +69.9 +33.400 +92.24 +12.25 +92.4 +89.50 +89.136 +89.65 +93.93a +89.92 +92.24 +89.107 +92.11 +42.53 +90.65 +90.33 +92.12 +56.7 +56.1 +42.1 +89.92 +37.82 +13.69 +33.427 +92.26 +89.136 +89.65 +92.12 +89.99 +25.9 +83.13 +92.24 +33.336 +11.78 +30.81 +89.23 +91.12 +21.6 +33.427 +39.34 +89.6 +92.24 +67.205 +92.23 +89.15 +13.5 +90.24 +92.27 +69.3 +74.5 +57.153 +89.18 +89.6 +92.24 +39.43 +92.29 +89.87 +92.29 +33.69 +15.43 +92.24 +11.78 +77439 67.48 +92.24 +68.34 +92.24 +14.79 +92.24 +93.294a +15.73 +92.24 +36.38 +89.87 +25.150 +33.21 +15.40 +15.18 +84.16 +93.527 +89.87 +15.21 +92.24 +1.79 +92.30 +89.92 +25.150 +92.11 +33.98 +59.11 +15.81 +84.16 +92.24 +93.466 +89.88 +90.45 +67.174 +60.12 +13.80 +30.71 +92.11 +90.1 +92.24 +93.172 +67.62 +54.4 +84.16 +92.24 +93.589 +30.77 +30.67 +92.24 +15.88 +84.29 +93.527 +89.94 +15.157 +92.11 +93.352 +93.304 93.305 +93.423 93.72 +89.94 +93.474 +93.38 +89.92 +93.333 +89.92 +93.83b +93.461 +89.92 +93.361 +89.94 +93.416 +93.369 +89.92 +93.365 +77513 92.29 +15.141 +85.60 +92.4 +83.13 +93.599 +77520 92.4 +54.6 +67.48 +92.24 +67.178 +92.24 +5.13 +84.3 +93.605 +89.87 +15.81 +84.18 +92.11 +83.13 +92.24 +93.599 +67.49 +67.186 +60.14 +83.5 +85.61 +67.186 +60.16 +77544 67.33 +92.24 +77547 92.24 +67.177 +15.123 +92.4 +23.20 +23.20 +92.24 +93.294a +33.26 +92.11 +67.62 +15.40 +92.24 +67.208 +89.88 +67.120 68.21 +92.24 +33.99 +67.119 +67.75 +77568 85.1 +6.104 +59.2 +83.13 +92.24 +7.27 +83.5 +77576 15.123 +89.87 +77579 9.32 +33.126 +93.132 +17.12 +83.46 +92.24 +7.47 +23.68 +23.66 +78.22 +33.26 +92.24 +93.294a +67.89 +67.89 +23.71 +77596 92.24 +23.66 +15.118 +84.3 +92.24 +7.36 +84.26 +89.87 +15.203 +23.121 +89.87 +15.107 +92.24 +93.294a +19.43 +92.11 +89.87 +34.65 +33.69 +69.3 +25.234 +89.23 +92.24 +23.88 +92.11 +83.13 +92.11 +85.1 +77625 15.101 +89.87 +23.20 +92.24 +23.20 +89.87 +23.3 +89.95 +67.91 +59.12 67.91 +33.156 +67.119 +67.73 +61.9 +15.40 +89.87 +15.165 +92.24 +9.41 +23.93 +77646 25.150 +69.3 +78.11 +77650 92.4 +15.141 +84.17 +92.24 +6.41 +54.4 +84.17 +92.24 +93.417 +84.10 +67.62 +15.100 +92.24 +93.294a +89.23 +61.9 +62.8 +77668 67.62 +92.37 +15.224 +77672 67.45 +15.79 +92.4 +83.13 +92.24 +93.417 +15.100 +92.11 +15.81 +84.16 +93.533 +84.10 +54.7 +92.24 +67.208 +15.84 +83.44 +93.614 +89.87 +92.24 +58.37 67.208 +54.12 +84.16 +93.572 +89.87 +92.24 +67.208 +15.81 +84.16 +93.532 +89.23 +30.75 +92.24 +93.294a +54.9 +92.24 +93.471 +89.59 +69.3 +13.107 +92.11 +67.79 +83.13 +92.24 +93.415 +89.23 +25.74 68.79 +89.65 +71.2 +13.1 +92.11 +92.24 +67.178 +92.24 +51.8 +15.1 +84.16 +93.480a +77731 84.3 +92.24 +93.532 +15.67 +84.16 +93.471 +33.311 +92.24 +53.77 +92.24 +11.32 +89.87 +67.45 +15.86 +84.18 +92.11 +33.69 +92.11 +92.7 +28.3 +67.131 +60.46 +67.186 +67.131 +92.27 +15.83 +84.22 +92.24 +93.415 +92.16 +89.108 +92.7 +92.24 +63.2 +67.78 +85.6 +35.27 +92.24 +12.9{N:001} +89.79 +78.44 +88.53 +89.92 +8.73 +89.92 +27.46 +92.24 +13.111 +92.1 +89.76 +92.24 +30.71 +92.24 +93.172 +89.86 +13.160 +92.23 +92.24 +65.44 +92.24 +69.3 +33.197 +92.7 +89.92 +33.224 +92.7 +28.66 +89.92 +89.90 +7.2 +33.223 +89.102 +93.172 +89.102 +11.40 +92.24 +90.23 +12.1 +41.52 +89.92 +31.102 +90.23 +92.24 +12.9{N:001} +92.4 +93.169a +91.1 +67.38 +91.13 +37.33 +92.24 +12.18 26.9 +92.1 +15.18 +84.16 +93.480a +92.24 +83.13 +92.11 +13.120 +77832 69.3 +28.1 +89.130 +90.21 +92.24 +12.18 +92.24 +88.24 +89.90 +1.88 1.89 +33.223 33.425 +92.1 +33.69 +90.21 +37.115 +89.92 +22.2 +92.1 +85.60 +89.125 +92.23 +31.2 +90.45 +92.24 +23.88 +65.2 +92.3 +89.61 +77861 92.24 +42.26 +92.1 +77865 92.24 +35.21 +92.27 +57.125 +90.14 +92.24 +12.9{N:001} +93.169a +33.223 +92.24 +33.217 +92.24 +88.66 +92.24 +12.1 +91.1 +67.38 +91.13 +92.1 +28.1 +90.21 +67.130 +24.1 +92.24 +8.18 9.9 +92.1 +92.7 +59.23 +83.9 +92.27 +15.21 +33.256 +92.24 +37.64 +89.26 +33.223 +92.7 +67.33 +92.24 +67.205 +67.186 +90.21 +53.29 +13.1 +77910 92.24 +23.107 +59.23 +89.23 +69.3 +13.160 68.53 +92.24 +69.3 +33.197 +59.23 63.2 +92.24 +30.57 +92.24 +12.1 +92.7 +27.59 +92.25 +89.92 +59.23 +92.24 +11.31 +83.13 +92.27 +92.7 +92.24 +12.18 +92.24 +88.24 +37.96 +53.71 +36.2 +92.24 +11.32 +92.24 +12.1 +92.27 +57.61 +89.76 +92.24 +23.107 +92.24 +57.4 +92.1 +28.1 +90.21 +15.93 +67.48 +92.24 +15.37 +92.1 +88.121 +20.7 +83.9 +92.7 +69.3 +22.28 +92.24 +11.31 +89.93 +90.16 +92.7 +92.37 +13.81 +9.24 +33.70 +88.264 +92.24 +31.74 +92.24 +36.38 +36.35 +77982 89.47 +27.56 +29.7 +90.21 +67.171 +67.92a +89.92 +67.92a +69.3 +68.34 +89.79 +8.73 +33.424 +92.22 +59.27 +91.1 +92.24 +67.38 +35.47 +92.7 +92.24 +78004 89.92 +92.24 +33.260 +92.24 +88.66 +92.11 +92.24 +74.5 +74.15 +89.92 +78015 92.24 +57.140 +89.119 +92.24 +53.44 +59.23 +6.69 +78023 6.69 +89.139 +6.162 +92.23 +25.20 +92.37 +28.1 +90.21 +92.24 +57.40 +92.1 +89.92 +92.24 +85.1 +89.108 +92.1 +35.32 +92.24 +8.30 +92.29 +59.23 +28.47 +92.7 +90.21 +61.9 +42.47 +71.21 +35.1 +92.24 +74.26 +89.95 +29.16 +92.24 +33.98 +92.24 +12.9{N:001} +93.169a +90.21 +92.37 +33.69 +25.119 +13.1 +78.28 +57.71 +64.18 +57.125 +91.1 +92.29 +33.69 +17.19 +92.24 +17.19 +92.11 +89.107 +59.23 +92.11 +33.178 +89.87 +78.14 +91.5 +25.138 +59.23 +89.87 +34.64 +78088 92.24 +8.25 +92.24 +93.294a +34.62 +92.11 +25.236 +78.7 +89.27 +92.24 +33.98 +92.27 +33.69 +90.21 +67.130 +67.62 +92.24 +8.18 +92.11 +24.14 +89.87 +15.155 +92.11 +84.16 +92.24 +6.41 +78115 67.45 +13.107 +54.4 +92.4 +15.54 +89.122 +92.11 +54.3 +15.7 +84.16 +92.24 +93.513 +89.87 +92.24 +67.208 +84.16 +92.24 +93.560 +84.10 +84.16 +93.547 +89.87 +27.27 +6.41 +15.31 +84.16 +93.606 +15.97 +54.4 +78145 24.23 +92.24 +93.510 +89.87 +85.65 +92.11 +82.7 +54.1 +84.16 +93.589 +78156 54.15 +84.16 +93.602 +89.23 +83.2 +92.24 +6.41 +78164 15.209 +92.24 +15.208 +78168 27.28 +92.24 +36.38 +85.55 +83.3 +67.186 +60.16 +92.18 +92.24 +93.294a +33.69 +90.4 +92.24 +12.18 +69.3 +15.97 +84.16 +93.480a +89.124 +78188 13.107 +67.71 +92.4 +92.24 +67.142 +15.40 +15.10 +15.155 +92.4 +59.23 +89.107 +10.54 +89.92 +10.36 +84.19 +83.20 +92.24 +1.89 +89.87 +17.19 +92.24 +17.19 +83.46 +92.24 +1.63 +33.178 +33.21 +92.26 +89.87 +78218 84.22 +92.24 +6.41 +89.94 +92.30 +15.88 +84.16 +92.24 +57.4 +78228 92.4 +92.24 +54.1 +68.18 68.25 +84.3 +93.602 +15.84 +83.47 +93.557 +89.87 +33.20 +92.24 +11.23 +85.55 +67.186 +60.10 +89.111 +92.11 +89.87 +92.24 +67.208 +15.40 +15.81 +84.16 +93.492a +89.87 +15.93 +84.22 +92.24 +7.2 +93.379c +92.24 +53.76 +58.67 +63.20 +92.24 +60.16 +85.55 +89.111 +92.11 +89.94 +92.29 +85.1 +10.46 +60.13 +9.39 +33.459 +78276 85.55 +67.142 +59.1 +15.107 +78281 84.3 +92.24 +93.486a +53.79 +33.126 +93.8 +89.87 +15.81 +84.18 +92.4 +89.87 +15.203 +92.24 +6.178 +92.24 +93.294a +37.114 +92.25 +92.24 +8.49 +89.92 +92.24 +8.30 +33.69 +92.32 +33.69 +92.24 +12.18 +92.24 +88.24 +92.24 +9.24 +92.27 +58.67 +92.24 +6.178 +92.29 +61.9 +37.114 +83.13 +93.480a +92.24 +93.172 +89.87 +37.12 +78327 37.12 +11.37 +78330 67.45 +24.52 +92.29 +33.168 +89.102 +92.4 +89.102 +92.24 +11.60 +92.24 +69.3 +15.101 +92.11 +84.16 +93.480a +67.47 +33.184 +92.24 +93.294a +92.14 +90.45 +25.138 +89.92 +25.282 +92.1 +92.24 +25.282 +89.23 +92.1 +69.3 +78361 37.114 +89.125 +78364 23.99 +83.13 +93.480a +77.2 +13.2 +89.28 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +78376 69.3 +33.301 +92.11 +33.119 +33.69 +92.24 +12.9{N:001} +92.24 +30.59 +13.107 +78387 67.48 +92.24 +67.142 +92.29 +77.8 +15.101 +84.16 +93.480a +78396 15.148 +89.93 +92.24 +36.38 +90.15 +93.492a +89.107 +92.4 +15.165 +89.111 +92.27 +34.57 +93.264 +78410 93.509 +67.98 +36.38 +78414 15.1 +92.4 +84.16 +93.480a +25.128 +34.53 +92.4 +92.24 +11.23 +78424 92.24 +67.208 +15.93 +92.24 +93.294a +89.107 +92.4 +84.18 +93.158b +89.95 +15.86 +59.23 +92.24 +53.77 +89.87 +33.20 +92.11 +33.201 +78444 59.27 +92.27 +42.7 +92.24 +12.1 +83.9 +92.24 +11.37 +89.76 +92.24 +35.21 +92.11 +78457 92.24 +33.212 +33.357 +92.24 +12.1 +89.88 +33.69 +92.11 +32.11 +11.23 +59.5 +60.8 +92.24 +31.102 +13.69 +83.9 +92.24 +93.172 +89.93 +59.23 +25.77 +92.24 +33.55 +13.5 +89.94 +33.190 +89.6 +92.6 +90.21 +33.224 +39.34 +89.122 +33.59 93.266 +92.24 +83.12 +92.24 +11.37 +59.23 +93.172 +33.69 +69.3 +53.51 +92.11 +92.24 +10.36 +69.7 +92.24 +41.25 +41.11 +89.50 +92.14 +13.104 +71.16 +33.212 +90.21 +15.81 +89.50 +92.29 +42.7 +92.27 +92.6 +33.69 +85.1 +92.4 +9.24 +60.13 +33.469 +90.65 +90.23 +92.25 +92.29 +15.168 +53.30 +89.107 +92.11 +89.92 +57.146 +90.40 +92.11 +89.59 +19.24 +92.24 +8.10 +78541 32.16 +59.23 +90.21 +92.27 +33.190 +89.6 +92.6 +92.23 +13.69 +89.125 +41.12 +89.93 +92.37 +36.19 +92.24 +33.55 +89.94 +89.6 +92.24 +31.102 +11.37 +92.4 +33.49 +30.75 +13.154 37.120 +92.11 +89.102 +92.24 +5.15 +89.102 +8.64 +89.92 +19.54 +89.92 +88.271 +67.47 +92.24 +93.294a +15.168 +92.24 +9.24 +92.24 +67.208 +67.178 +89.107 +92.11 +53.30 +15.93 +84.22 +92.24 +7.16 +33.203 +92.24 +67.69 +92.24 +67.178 +92.24 +53.30 +67.119 +78601 57.80 +90.36 +60.10 +59.27 +92.11 +92.24 +53.16 +78609 67.45 +67.62 +92.24 +60.16 +67.178 +67.67 +92.24 +90.15 +92.24 +93.415 +93.172 +24.14 +92.11 +83.13 +92.24 +7.16 +25.221 +59.23 +92.24 +11.1 +78630 37.110 +78632 92.11 +92.24 +37.110 +33.83 +9.1 +93.183 +35.1 +92.29 +13.4 +92.24 +9.24 +92.24 +90.31 +92.24 +11.55 +89.92 +92.24 +33.55 +89.92 +92.24 +80.1 +92.29 +59.23 +83.8 +33.224 +89.95 +59.75 +78660 11.40 +15.173 +83.13 +92.24 +7.16 +78666 53.33 +92.24 +7.18 88.24 +80.1 +92.29 +89.23 +78673 24.5 +93.365 +92.24 +93.469 93.470 +83.13 +92.24 +1.89 +89.107 +92.11 +31.29 +90.21 +92.27 +83.13 +92.24 +7.16 +15.173 +92.24 +93.294a +89.95 +39.44 +92.24 +11.61 +63.1 +78697 91.5 +15.133 +92.24 +11.1 +89.87 +18.2 +92.24 +93.294a +15.178 +92.11 +83.20 +92.24 +7.16 +89.87 +67.53 +79.112 +92.24 +7.49 +89.95 +68.60 +92.11 +20.61 +15.101 +33.211 +92.24 +55.15 +92.24 +55.9 +90.21 +63.1 +93.480a +25.221 +92.27 +67.113 +15.168 +55.17 +89.92 +55.16 +15.233 +83.9 +92.11 +78739 92.24 +24.1 +92.24 +55.15 +89.92 +92.24 +55.17 +68.34 +19.1 +92.24 +93.294a +67.47 +15.75 +92.24 +55.15 +37.110 +92.11 +89.87 +33.323 +37.114 +6.16 +60.11 +89.87 +33.181 +92.14 +13.4 +89.92 +92.14 +78768 42.7 +89.87 +58.36 +58.37 +92.12 +33.77 +83.9 +92.24 +11.1 +78778 69.3 +74.5 +92.11 +27.2 +92.24 +31.42 +89.26 +92.24 +14.79 +33.323 +15.165 +92.11 +84.22 +92.24 +7.22 +89.87 +78795 85.6 +83.46 +92.24 +7.52 +13.111 +15.188 +92.11 +90.1 +92.24 +55.17 +90.44 +92.24 +20.1 +92.24 +11.1 +89.23 +15.144 +92.24 +59.9 +92.24 +11.1 +33.83 +20.65 +92.11 +89.88 +67.62 +15.194 +84.22 +92.24 +7.22 +92.24 +93.294a +33.69 +92.24 +55.15 +89.65 +71.1 +92.1 +33.69 +92.12 +90.58 +92.6 +89.87 +92.24 +33.69 +33.5 +32.16 +71.19 +69.11 +92.6 +13.4 +92.24 +93.397 +92.24 +67.17 +92.29 +92.24 +67.142 +39.41 +89.92 +15.174 +84.22 +92.24 +1.86 +92.24 +60.42 +9.24 +92.24 +20.86 +89.87 +33.69 +92.24 +93.294a +91.6 +92.1 +13.4 +9.24 +93.172 +93.595 +92.24 +93.501 +69.3 +87.59 +1.89 +11.68 +89.94 +33.170 +92.6 +13.138 +92.1 +33.70 +90.58 +92.24 +11.1 +78890 13.138 +92.11 +92.24 +93.294a +85.8 +83.46 +92.24 +7.52 +33.478 +92.24 +8.30 +92.24 +11.1 +89.87 +78.3 +33.120 +13.107 +33.27 +92.24 +93.104 +33.1 +33.69 +9.1 +11.25 +89.92 +11.26 +31.56 +92.1 +92.24 +90.58 +92.7 +67.39 +33.436 +78924 32.1 +90.21 +92.24 +93.104 +33.1 +33.27 +92.11 +78.28 +13.26 +33.119 +78935 33.69 +92.1 +58.67 +9.24 +93.487 +23.52 +83.13 +93.596 +92.24 +93.501 +89.124 +33.232 +83.13 +92.24 +1.89 +92.29 +78952 92.24 +8.49 +93.85 +33.226 +89.8 +72.20 +92.24 +10.21 +33.55 +13.5 +25.77 +92.24 +12.1 +64.14 +59.23 +92.7 +58.67 +67.205 +92.27 +92.29 +92.24 +41.35 +39.45 +84.19 +23.99 +18.15 +89.87 +37.111 +84.22 +7.24 +89.102 +9.24 +89.102 +9.34 +64.12 +89.93 +92.24 +53.89 +33.262 +92.1 +89.92 +63.2 +92.24 +11.83 +90.14 +92.27 +89.93 +6.63 +57.125 +84.18 +92.24 +11.25 +83.13 +93.459 +15.18 +15.165 +89.93 +92.24 +83.2 +85.1 +37.114 +84.16 +93.480a +89.59 +38.6 +79018 13.107 +92.1 +15.18 +89.92 +15.75 +92.24 +93.459 +67.35 +67.74 +67.113 +90.16 +92.24 +1.11 1.5 +14.45 +14.36 +78.14 +83.18 +92.1 +89.88 +15.119 +79039 92.24 +1.44 +89.87 +24.52 +33.103 +33.69 +92.1 +93.327a +93.327a +92.15 +92.1 +39.45 +79052 92.1 +33.184 +92.14 +13.4 +12.9{N:001} 87.53 +89.88 +33.69 +90.58 +79061 92.1 +13.4 +93.169a +92.24 +93.538 +92.27 +92.6 +39.45 +79070 89.136 +92.24 +89.107 +92.1 +85.1 +92.24 +14.36 +24.14 +89.136 +69.3 +32.1 +92.24 +33.103 +92.24 +33.70 +92.1 +89.87 +33.69 +92.14 +42.7 +12.9{N:001} +79092 92.24 +12.9{N:001} +33.69 +90.58 +92.1 +17.6 +15.18 +84.22 +93.459 + +92.6 +33.70 +90.24 +59.23 +92.27 +42.7 +37.96 +92.6 +79111 89.37 +69.3 +24.9 +89.25 +92.24 +14.49 +92.24 +14.36 +92.30 +15.184 +90.1 +92.24 +85.2 +92.1 +15.81 +84.22 +93.459 +79129 93.24b +79131 9.24 +53.8 +89.8 +92.24 +33.55 +33.263 +90.1 +59.23 +92.24 +85.69 +93.172 +15.81 +84.18 +79145 89.92 +17.5 +33.69 +92.1 +93.327a +11.23 +24.42 +92.1 +58.31 +92.24 +67.1 +24.10 +83.47 +92.11 +89.87 +92.24 +33.69 +92.24 +12.1 +92.24 +10.20 +92.4 +30.89 +92.6 +32.16 +92.24 +30.59 +92.11 +89.92 +24.1 +92.24 +88.12 +89.92 +24.52 +33.103 +90.16 +92.24 +33.74 +92.11 +89.33 +58.67 +92.11 +90.58 +59.23 +9.1 +33.270 +92.27 +24.1 +89.92 +24.52 +79196 67.38 +92.14 +67.121 +17.6 +53.41 +89.92 +88.30 +92.24 +88.310 +92.6 +33.176 +92.24 +33.126 +92.11 +79211 13.107 +92.1 +15.88 +84.16 +93.480a +89.92 +33.178 +92.1 +83.13 +92.24 +7.16 +13.48 +92.1 +13.8 +33.489 +89.92 +24.1 +92.11 +33.69 +92.1 +68.79 +89.92 +15.40 +67.111 +67.111 +84.4 +93.480a +89.26 +69.3 +31.52 +92.6 +33.262 +89.6 +92.1 +92.1 +33.69 +12.9{N:001} +92.37 +28.3 +90.21 +92.1 +79253 37.114 +89.92 +19.2 +89.90 +92.24 +7.20 +92.24 +31.85 +79262 92.6 +89.93 +79265 14.18 23.112 +92.24 +23.112 +93.348 +92.24 +20.67 +92.6 +89.93 +92.37 +79275 85.13 +89.92 +31.17 +89.92 +37.120 +92.24 +6.172 +92.24 +20.71 +92.11 +89.87 +33.69 +90.58 +92.1 +15.34 +89.33 +92.1 +84.16 +11.37 +83.30 +15.68 +92.6 +79298 33.212 +92.11 +67.119 +92.29 +92.24 +33.98 +89.87 +33.78 +92.24 +33.80 +92.11 +33.69 +15.203 +89.122 +92.24 +1.39 +92.24 +64.2 +89.23 +69.3 +66.1 +92.11 +23.88 +89.88 +33.83 +92.11 +89.92 +16.10 +92.24 +6.172 +89.92 +2.15 +15.215 +84.22 +92.24 +1.6 +33.323 +92.24 +55.15 +15.173 +92.11 +84.22 +92.24 +7.22 +33.69 +19.9 +56.16 +92.11 +89.59 +27.8 +89.26 +92.27 +89.15 +61.9 +33.77 +92.11 +89.124 +67.45 +16.21 +92.11 +92.24 +19.9 6.20 +33.69 +90.58 +92.24 +85.8 +55.16 +92.24 +93.294a +90.26 +9.1 +93.562 +89.92 +56.19 +19.9 +71.32 +92.7 +79376 33.212 +92.24 +55.16 +15.77 +92.24 +55.15 +33.198 +33.69 +67.62 +92.14 +42.7 +89.23 +92.24 +9.24 +92.29 +93.562 +58.67 +79394 15.77 +92.24 +55.15 +33.69 +92.11 +33.69 +92.1 +92.6 +93.562 +58.67 +79405 92.24 +33.69 +69.1 +79409 33.184 +92.24 +55.15 +92.1 +59.11 +57.162 +92.24 +11.70 +92.29 +57.58 +79420 92.24 +93.294a +33.69 +89.124 +92.1 +79426 23.52 +89.50 +67.53 +15.51 +84.3 89.122 +92.11 +92.24 +67.62 +92.11 +56.16 +89.94 +89.93 +92.24 +55.15 +25.252 +27.8 +90.21 +93.562 +58.67 +89.92 +89.33 +92.11 +79449 37.114 +79451 92.24 +67.208 +25.3 +27.2 +92.24 +31.42 +92.24 +92.15 +33.427 +90.1 +92.24 +93.172 +18.18 +92.11 +89.87 +33.323 +15.123 +92.24 +53.88 +89.92 +63.2 +92.24 +11.80 +89.87 +15.175 +92.24 +93.294a +85.40 +83.9 +92.11 +79482 92.24 +93.294a +24.49 +92.24 +11.80 +33.69 +9.24 +11.25 +92.1 +78.44 +26.13 +88.1 +41.34 +92.24 +12.1 +67.119 +92.29 +92.24 +67.186 +79502 92.24 +53.89 +93.24c +33.325 +92.24 +17.3 +92.11 +19.1 +92.11 +92.24 +8.19 +67.47 +92.24 +93.294a +90.58 +92.11 +33.69 +19.1 +92.6 +67.62 +92.24 +12.1 +7.46 88.234 +88.234 +79527 92.6 +17.12 +56.20 +92.1 +89.8 +92.24 +33.55 +79535 36.28 +33.323 +92.1 +19.1 +79540 92.24 +17.3 +33.69 +92.24 +53.89 +92.24 +12.1 +33.393 +89.88 +33.69 +92.24 +93.294a +69.3 +28.1 +11.25 +90.21 +13.4 +53.89 +89.23 +33.54 +90.21 +37.56 +92.24 +11.12 +92.6 +69.3 +33.69 +88.106 +79569 92.24 +93.294a +28.1 +90.21 +92.24 +60.10 +11.8 +58.67 +11.48 +89.124 +92.24 +58.37 +11.49 +33.83 +83.13 +92.24 +11.80 +9.24 +11.25 +92.1 +11.49 +58.67 +10.42 +11.49 +89.6 +25.59 +79596 23.93 +23.121 +56.20 +79600 92.29 +92.11 +79603 13.107 +33.448 +92.24 +11.49 +89.92 +11.48 +79610 63.26 +92.24 +11.1 +89.23 +11.48 +33.69 +69.3 +13.69 +23.93 +69.9 +12.28 +69.9 +12.33 +89.136 +11.49 +33.274 +92.24 +59.26 +79629 13.107 +33.84 +78.2 +89.87 +17.6 +92.12 +92.24 +53.94 +92.24 +11.8 +92.24 +11.49 +39.27 +33.69 +92.23 +88.106 +27.1 +89.119 +92.24 +9.24 +92.29 +89.124 +89.65 +12.33 +33.70 +92.11 +89.139 +12.28 +79658 78.3 +33.448 +13.107 +92.24 +55.15 +25.252 +89.62 +19.29 +92.24 +93.294a +90.1 +92.11 +33.323 +92.24 +55.10 +15.107 +18.4 +92.11 +84.4 +83.9 +92.11 +89.88 +15.165 +84.22 +92.24 +7.22 +89.87 +92.24 +67.208 +67.192 +17.5 +92.11 +92.24 +12.9{N:001} +33.69 +25.156 +89.23 +64.12 +33.223 +92.24 +89.6 +92.1 +83.13 +93.480a +61.9 +71.34 +92.6 +89.93 +83.13 +93.563 +33.262 +79710 13.107 +14.40 +90.45 +30.72 +92.24 +93.172 +33.472 +92.25 +33.69 +69.9 +23.1 +69.9 +23.34 +67.119 +92.27 +20.61 +92.24 +93.294a +89.94 +13.1 +59.1 +60.27 +92.24 +92.29 +92.24 +30.73 +90.45 +92.18 +15.77 +92.24 +53.88 +89.92 +92.24 +53.77 +33.69 +33.473 +33.472 +92.25 +92.23 +23.3 +67.119 +79752 20.61 +92.24 +93.294a +89.50 +67.38 +92.7 +33.208 +92.24 +55.15 +89.107 +92.24 +11.80 +89.59 +15.175 +92.11 +84.16 +92.7 +64.12 +67.62 +27.3 +72.19 +92.24 +89.6 +92.11 +89.87 +92.4 +67.17 +92.24 +15.75 +92.11 +77.2 +13.1 +92.24 +20.71 +92.11 +79788 92.24 +10.42 +92.24 +10.50 +93.294a +33.212 +92.24 +39.51 +15.86 +79798 15.93 +84.22 +92.24 +7.22 +33.198 +92.24 +93.294a +79806 92.24 +93.294a +33.308 +92.22 +92.24 +55.16 +33.69 +92.24 +9.32 +92.29 +79817 84.18 +92.24 +55.15 +89.23 +57.1 +33.198 +92.12 +92.11 +91.3 +79827 92.24 +15.168 +92.11 +15.165 +84.18 +92.24 +55.15 +89.87 +33.69 +92.24 +37.117 +93.294a +33.308 +92.1 +33.161 +92.29 +92.24 +9.32 +15.165 +84.18 +92.6 +57.1 +92.12 +33.70 +92.6 +79853 92.24 +55.15 +18.2 +92.24 +8.30 +92.11 +89.87 +15.53 +28.67 +28.67 +33.181 +92.14 +13.4 +92.27 +33.198 +92.1 +57.1 +79871 33.69 +90.21 +92.24 +93.172 +31.18 +92.24 +33.161 +92.6 +89.59 +67.207 +92.24 +93.294a +15.175 +84.16 +92.24 +11.80 +64.12 +79889 92.12 +72.19 +27.11 +89.6 +92.11 +89.127 +92.6 +69.3 +33.301 +92.11 +89.23 +39.51 +92.11 +63.20 +92.11 +9.24 +59.1 +60.27 +92.18 +33.472 +92.25 +69.9 +23.1 +69.9 +23.34 +67.119 +79916 20.71 +92.11 +89.93 +67.38 +13.1 +77.2 +85.60 +92.24 +90.7 +92.6 +33.280 +91.3 +79929 92.24 +55.15 +15.43 +92.24 +9.32 +33.327 +92.23 +33.73 +90.21 +92.29 +28.36 33.208 +90.58 +79943 33.308 +79945 60.11 +92.24 +55.16 +33.69 +77.3 +55.17 +60.34 +89.92 +55.21 +60.30 +89.92 +55.22 +60.34 +89.59 +15.18 +84.19 +93.492a +67.131 +60.50 +67.199 +92.24 +67.192 +89.95 +4.6 +57.81 +89.59 +15.98 +92.24 +93.294a +21.19 +84.18 +93.375 +92.24 +37.83 +33.61 +33.48 6.63 +90.27 +92.24 +58.25 90.28 +92.29 +93.214b +93.238 +92.24 +87.55 +37.83 +93.375 +33.22 +92.24 +9.24 +92.29 +37.109 +90.1 +92.24 +93.172 +89.87 +67.62 +20.71 +90.1 +92.11 +17.5 +89.107 +92.24 +55.10 +21.17 +27.12 +90.21 +93.562 +58.67 +89.88 +25.3 +27.8 +92.24 +56.4 +89.26 +92.27 +33.427 +92.11 +15.175 +84.22 +92.24 +11.80 +92.11 +27.1 +92.27 +33.427 +89.6 +33.440 +92.24 +33.55 +92.11 +89.124 +92.23 +65.17 +23.99 +89.139 +37.115 +56.6 +90.65 +89.87 +33.209 +92.1 +30.71 +90.59 +92.24 +9.24 +13.104 +67.113 +15.66 +84.18 +92.6 +33.327 +89.93 +92.24 +33.429 +33.69 +90.33 +92.11 +90.57 +92.6 +91.3 +80066 92.24 +55.17 +89.8 +92.24 +33.325 +92.11 +15.168 +92.24 +93.294a +15.165 +67.136 +67.192 +84.16 +92.24 +93.407 +89.87 +92.24 +67.208 +13.138 +92.24 +55.21 +15.37 +89.107 +92.11 +15.88 +84.16 +92.24 +7.22 +80095 15.93 +84.22 +92.24 +93.492a +89.87 +57.76 +92.24 +6.63 +92.24 +37.83 +37.111 +89.93 +92.24 +93.294a +92.11 +80111 33.68 +89.87 +33.180 +89.3 +92.36 +1.84 +58.67 +89.87 +27.11 +90.21 +90.15 +93.501 +33.69 +56.13 +92.6 +80127 89.93 +92.24 +33.429 +92.6 +15.86 +33.323 +83.13 +92.24 +7.7 +92.24 +93.144a +37.120 +92.11 +80141 67.48 +60.14 +67.186 +15.107 +92.24 +53.89 +93.24c +89.108 +53.77 +92.12 +89.92 +56.36 +93.358 +80155 92.18 +56.8 +92.24 +37.83 +90.31 +92.24 +93.294a +89.87 +33.307 +92.11 +68.1 +33.427 +92.24 +93.358 +33.69 +78.3 +22.42 +90.61 +90.4 +92.6 +89.92 +72.17 +13.107 +92.24 +11.55 +92.29 +89.76 +92.24 +92.8 +30.47 +89.102 +83.8 +89.102 +83.8 +31.26 +89.79 +78.44 +33.349 +87.55 +93.375 +89.124 +89.59 +69.3 +80200 92.6 +25.185 +33.168 +56.13 +92.6 +92.4 +67.108 +92.24 +92.8 +88.62 +89.23 +27.1 +92.24 +9.24 +92.29 +22.6 +89.92 +90.53 +39.34 +59.23 +92.24 +93.172 +92.24 +84.31 +92.24 +1.83 +89.95 +87.52 +92.24 +92.24 +93.538 +11.50 +92.27 +80234 92.24 +7.16 +53.33 +68.58 +92.27 +89.93 +37.110 92.5 +90.14 +92.27 +74.5 +92.37 +56.12 +90.24 +59.23 +92.29 +27.8 +92.27 +92.4 +33.427 +92.11 +89.87 +39.50 +89.93 +92.24 +93.172 +33.218 +92.29 +61.9 +13.2 +89.88 +33.28 +92.24 +93.294a +33.485 +92.11 +92.24 +37.83 +33.69 +67.131 +59.1 +67.167 +58.67 +92.6 +56.28 +92.24 +11.55 +92.29 +28.3 +25.147 +92.24 +89.6 +92.3 +33.435 +74.5 +92.6 +27.8 +90.21 +69.3 +59.1 +13.104 +92.1 +67.186 +60.21 +67.131 +92.27 +15.101 +53.56 +84.16 +93.480a +89.93 +27.1 +92.1 +89.112 +92.12 +33.446 +89.139 +39.34 +11.1 +13.9 +69.9 +83.13 +92.24 +7.16 +69.9 +83.13 +92.24 +7.20 +69.9 +84.31 +92.24 +1.89 +69.7 +74.5 +72.4 +92.6 +90.24 +92.27 +67.38 +33.427 +92.1 +89.124 +33.275 +92.29 +92.6 +90.21 +89.8 +92.24 +41.35 +92.27 +33.131 +11.50 +61.9 +53.14 +92.24 +10.21 +12.1 +31.35 +59.23 +92.24 +89.8 +92.24 +33.55 +89.92 +92.24 +83.13 +92.24 +33.60 53.79 +33.54 +90.65 +25.59 +90.59 +92.24 +12.1 +92.27 +89.93 +92.37 +92.29 +31.53 +67.62 +13.104 +23.93 +89.102 +88.12 +89.102 +88.20 +89.26 +92.29 +89.93 +92.37 +68.72 +88.318 +26.13 +90.65 +90.20 +92.24 +12.1 +89.92 +92.24 +9.1 +67.86 +67.86 +80396 67.60 +67.167 67.60 +59.1 +57.112 +42.7 +90.41 +92.24 +11.55 +92.1 +15.86 +89.87 +53.16 +67.136 +92.27 +27.27 +92.1 +53.30 +83.13 +92.24 +7.16 +69.3 +89.79 +11.1 +69.7 +89.79 +39.42 +89.124 +92.12 +84.3 +92.24 +93.415 +93.172 +92.27 +83.35 +92.6 +85.23 +89.92 +33.427 +71.21 +89.65 +92.12 +31.1 +90.33 +92.1 +89.139 +92.37 +92.29 +33.69 +92.14 +88.23 +27.1 +85.8 +92.1 +83.35 +92.24 +11.80 +80453 89.6 +60.10 +92.29 +33.80 +92.27 +33.83 +83.9 +92.11 +85.8 +90.21 +89.6 +23.93 +23.121 +92.1 +56.20 +67.205 +83.35 +92.7 +80472 56.18 +92.11 +92.24 +93.375 +72.19 +32.4 +92.24 +89.6 +92.24 +41.35 +33.69 +67.31 +93.238 +92.24 +55.15 +15.107 +56.21 +92.24 +89.4 +92.7 +33.325 +92.24 +55.16 +37.122 +92.11 +89.95 +90.65 +37.137 +89.92 +13.146 +92.23 +92.24 +10.12 +92.11 +35.32 +92.11 +80509 67.48 +67.142 +92.12 +92.24 +93.375 +15.86 +89.107 +93.102 +92.24 +57.4 +10.54 +58.67 +93.170 +15.73 +92.24 +93.294a +89.87 +24.52 +92.11 +89.6 +92.24 +90.23 +93.387 +93.169a +31.85 +80535 33.26 +92.11 +89.6 +88.13 +89.92 +88.83 +89.92 +92.24 +56.20 +92.24 +67.62 +25.256 +13.48 +92.24 +93.375 +33.28 +92.24 +67.38 +13.2 +15.34 +89.87 +22.45 67.1 +90.63 +33.311 +92.6 +67.34 +89.93 +30.54 +90.21 +6.68 +57.152 +92.11 +90.1 +92.24 +93.294a +89.47 +89.93 +67.13 +92.11 +15.73 +33.156 +92.11 +80578 67.169 +67.70 +57.125 +92.24 +93.375 +61.11 +93.300 +93.376 +89.88 +25.1 +57.103 +90.62 +92.24 +93.172 +92.24 +93.375 +34.40 +92.24 +93.294a +37.114 +80599 93.376 +15.83 +92.24 +80603 67.48 +60.12 +67.186 +15.101 +84.16 +93.480a +84.3 +93.492a +89.88 +56.8 +92.11 +92.24 +53.88 +89.92 +92.24 +87.45 +92.24 +93.172 +90.31 +92.24 +93.294a +89.92 +33.168 +92.11 +33.163 +57.103 +90.31 +92.11 +89.59 +15.73 +92.11 +84.16 +93.480a +39.51 +90.45 +20.71 +92.11 +84.30 +92.24 +1.99 +91.3 +89.127 +92.24 +93.376 +33.184 +37.122 +92.24 +93.294a +83.13 +93.492a +89.94 +92.25 +67.62 +67.111 +67.111 +15.40 +89.50 +33.69 +92.24 +83.9 +92.7 +87.43 +15.154 +33.427 +92.11 +89.65 +92.12 +88.111 +13.1 +89.5 +92.24 +9.24 +80676 85.61 +83.9 +92.11 +67.186 +69.3 +59.1 +60.17 +89.139 +60.19 +15.107 +84.16 +93.492a +92.24 +67.208 +17.12 +83.46 +92.24 +7.63 +33.323 +92.24 +93.294a +15.165 +89.87 +15.86 +92.11 +17.4 +92.11 +92.24 +84.3 +93.480a +15.107 +93.172 +59.1 +89.92 +65.55 +56.5 +13.133 +92.27 +72.5 +69.3 +74.9 +92.24 +93.294a +33.435 +90.21 +69.9 +90.23 +92.24 +33.55 +92.24 +93.172 +69.9 +90.23 +92.24 +7.16 +69.9 +90.23 +93.208 +92.12 +88.289 +89.124 +92.24 +93.376 +25.1 +92.24 +93.172 +57.103 +90.62 +33.28 +92.24 +93.294a +33.69 +25.1 +84.16 +93.480a +15.101 +83.2 +89.6 +92.29 +56.20 +83.35 +92.1 +80759 33.69 +92.24 +93.294a +83.35 +92.24 +7.63 +93.208 +85.8 +80768 83.5 +92.1 +56.20 +71.21 +93.172 +92.23 +80775 64.12 +89.93 +92.6 +65.22 +28.2 +89.50 +89.136 +89.65 +88.22 +89.92 +65.17 +23.99 +92.12 +42.8 +69.3 +34.41 +92.24 +23.99 +89.136 +89.65 +92.23 +13.69 +92.27 +92.29 +33.427 +92.1 +92.23 +74.5 +92.1 +92.11 +37.30 +93.208 +56.15 +67.47 +92.24 +93.376 +33.157 +89.108 +92.24 +11.86 +33.184 +93.208 +56.15 +83.35 +93.208 +15.10 +80822 67.142 +92.12 +67.84 +93.10 +92.24 +37.67 +89.92 +93.71 +15.84 +84.16 +93.492a +33.20 +92.24 +93.376 +89.87 +67.139 +59.1 +67.142 +85.61 +83.2 +92.24 +93.376 +92.24 +37.67 +33.151 +92.24 +89.4 +92.24 +93.294a +33.69 +9.24 +80855 85.65 +90.1 +93.375 +37.117 +89.6 +92.27 +15.1 +92.1 +84.16 +93.480a +56.8 +92.24 +53.89 +89.92 +92.24 +53.77 +92.24 +93.172 +33.163 +90.31 +92.11 +56.31 +90.58 +92.27 +33.184 +90.21 +69.3 +13.1 +41.25 +93.562 +37.30 +92.12 +9.1 +67.17 +80890 92.24 +33.427 +83.38 +85.26 +80895 92.24 +33.429 +89.95 +71.6 +33.435 +57.125 +89.6 +92.24 +56.6 +89.50 +15.123 +83.1 +67.127 +92.23 +90.45 +92.24 +67.208 +17.12 +83.46 +92.24 +7.63 +33.323 +15.165 +92.24 +9.24 +89.6 +92.27 +17.1 17.6 +92.24 +33.429 +13.133 +92.23 +56.5 +92.27 +92.1 +31.32 +88.110 +89.124 +33.440 +80935 89.6 +92.24 +57.4 +53.2 +90.65 +90.33 +92.11 +89.92 +89.6 +80945 93.169a +23.99 +92.27 +23.93 +33.218 +92.24 +93.294a +89.124 +92.1 +32.9 +92.24 +89.6 +92.29 +27.34 +33.69 +90.26 +25.3 +15.10 +84.16 +93.480a + +56.20 +89.6 +92.29 +89.124 +92.24 +93.294a +56.15 +13.32 +92.11 +89.57 +92.24 +92.24 +37.75 +56.21 +33.323 +37.122 +92.11 +67.119 +80985 15.71 +92.11 +84.18 +93.208 +80990 93.10 +90.58 +92.24 +93.376 +25.3 +89.93 +92.37 +92.24 +9.24 +56.13 +33.69 +67.207 +56.13 +92.11 +81005 92.24 +67.208 +15.7 +92.24 +93.10 +89.92 +92.24 +93.71 +89.79 +78.3 +87.57 +89.87 +15.93 +84.22 +92.24 +7.13 +89.107 +89.102 +55.15 +89.102 +9.24 +92.24 +89.4 +87.19 +92.24 +1.89 +89.87 +33.323 +92.24 +93.376 +15.165 +92.24 +93.294a +89.87 +33.69 +92.24 +93.376 +93.10 +37.67 +89.92 +59.23 +92.24 +85.30 +92.4 +9.1 +24.14 +92.29 +89.6 +92.27 +59.23 +92.24 +11.1 +92.24 +93.172 +33.169 +92.1 +83.13 +89.102 +93.480a +89.102 +83.1 +33.81 +69.3 +71.21 +92.11 +23.88 +67.130 +89.124 +92.1 +27.10 +92.23 +65.17 +23.99 +92.11 +42.8 +89.124 +92.37 +92.29 +56.15 +92.24 +37.75 +30.75 +15.66 +89.6 +92.27 +31.42 +92.12 +33.61 +92.24 +37.51 +69.3 +57.1 +89.47 +15.171 +92.11 +83.35 +92.7 +89.92 +78.7 +83.35 +92.6 +37.67 +93.10 +89.59 +92.24 +56.12 +13.107 +57.1 +92.12 +33.61 +89.23 +89.19 +92.1 +31.30 +15.66 +37.117 +69.3 +89.93 +92.24 +90.31 +92.11 +56.5 +33.153 +81129 93.10 +90.58 +92.24 +93.294a +33.69 +13.138 +92.6 +81137 92.10 +33.69 +67.47 +92.24 +93.294a +16.19 +92.24 +8.30 +33.435 +37.67 +93.10 +89.6 90.24 +59.23 +92.27 +33.427 +90.1 +93.172 +31.1 +92.3 +25.119 +83.35 +92.6 +67.205 +33.435 +67.62 +78.7 +13.1 +92.6 +28.11 +59.23 +92.24 +89.113 +93.172 +89.102 +41.25 +89.102 +33.440 +89.47 +33.170 +25.169 +24.52 +92.1 +91.3 +81181 92.24 +41.18 +92.1 +67.131 +67.154 +92.24 +67.131 +67.65 +13.3 +83.9 +92.24 +11.55 +92.1 +89.95 +83.13 +93.480a +28.1 +59.23 +93.172 +28.6 +92.1 +67.90 +89.67 +25.1 +33.262 +90.21 +89.8 +92.24 +72.19 +11.50 +92.24 +92.5 +53.1 +41.2 +11.49 +91.1 +67.38 +89.27 +25.61 +92.24 +90.59 +92.24 +10.20 +92.4 +13.107 +90.1 +92.24 +12.1 +33.288 +85.8 +56.20 +90.23 +92.27 +13.16 +92.24 +10.3 +92.4 +89.84 +25.70 +67.92a +89.92 +67.92a +53.14 +25.59 +89.6 90.24 +92.27 +25.59 +33.427 +90.1 +93.172 +37.67 +92.15 +31.40 +31.1 +90.20 +92.7 +90.26 +92.24 +12.1 +23.121 +23.94 +91.6 +81264 92.1 +31.29 +92.3 +71.21 +90.33 +92.24 +33.126 +93.169a +92.24 +93.538 +59.1 +39.6 +42.8 +92.27 +89.93 +42.7 +83.13 +93.480a +81283 89.103 +59.1 +92.24 +11.27 +92.1 +83.13 +7.24 +37.125 +92.24 +90.14 +92.24 +53.88 +37.35 +57.125 +89.103 +20.71 +92.11 +30.103 +2.27 +89.92 +89.90 +59.23 +92.24 +7.20 +67.11 +38.6 +92.11 +37.33 +33.400 +89.103 +78.31 +88.182 +92.11 +39.45 +84.19 +81319 84.22 +92.24 +83.20 +1.89 +67.136 +92.27 +15.18 +84.16 +92.24 +93.459 +89.79 +37.35 +89.92 +37.40 +92.24 +92.24 +53.88 +67.186 +83.10 +84.30 +92.24 +15.19 +24.1 +1.9 +78.29 +92.24 +14.49 +92.24 +1.28 +14.44 +14.36 +92.1 +89.92 +92.24 +89.107 +92.1 +15.18 +37.67 +89.88 +59.23 +92.4 +15.119 +81362 92.24 +1.39 +32.1 +33.103 +33.69 +90.58 +92.1 +92.24 +93.104 +33.1 +93.327a +93.327a +92.15 +92.1 +39.45 +88.136 +92.6 +39.19 84.23 +6.9 +39.19 +89.87 +92.1 +33.69 +92.14 +13.4 +12.9{N:001} 87.53 +89.87 +92.24 +12.9{N:001} +33.69 +92.1 +13.4 +93.169a +92.27 +92.6 +39.45 +91.2 +17.6 +89.92 +17.6 +84.20 +92.24 +8.49 +92.6 +89.23 +89.57 +92.29 +24.1 +92.6 +30.89 +92.6 +35.20 +89.92 +33.270 +89.103 +92.27 +24.1 +92.1 +89.103 +92.27 +24.1 +92.6 +21.17 30.90 +92.6 +89.121 +92.24 +11.12 +89.92 +89.121 +92.24 +11.37 +84.16 +92.27 +92.1 +15.66 +92.6 +24.43 +32.24 +92.11 +92.24 +31.61 +89.122 +88.125 +13.62 +14.36 +89.92 +92.24 +37.13 +92.24 +12.34 93.330 +84.17 +92.24 +12.1 +92.24 +57.125 90.63 +92.11 +40.8 +88.310 +89.92 +63.18 +89.119 +92.24 +88.26 +31.85 +92.24 +90.23 +92.1 +89.25 +37.67 +93.10 +69.3 +13.3 +36.24 +92.24 +1.12 +33.488 +89.125 +89.102 +92.24 +83.13 +93.459 +60.46 +89.102 +93.480a +89.102 +63.2 +92.24 +1.79 +92.24 +93.486b +89.102 +92.24 +11.37 +33.198 +41.52 +89.92 +41.51 +84.17 +92.24 +12.1 +66.6 +92.24 +41.52 +42.11 +42.8 +90.43 +92.29 +93.172 +92.1 +37.109 +83.13 +92.24 +7.16 +68.58 +20.62 +89.127 +90.61 +35.7 +92.24 +90.15 +92.24 +12.1 +67.119 +92.24 +67.186 +92.29 +13.29 +33.223 +89.102 +87.58 +89.102 +87.22 +92.23 +33.69 +89.138 +92.27 +71.36 +13.107 +89.102 +92.24 +33.60 53.79 +89.102 +33.59 93.266 +33.70 +90.26 +24.85 +92.24 +53.82 +90.26 +60.46 +89.77 +23.93 +23.121 +67.62 +14.36 +33.204 +89.102 +92.24 +11.12 +89.102 +92.24 +11.37 +81565 92.29 +92.11 +33.435 +92.24 +93.376 +78.2 +92.24 +33.103 +33.69 +30.24 +93.294a +92.24 +78.3 +27.21 +92.6 +13.62 +30.24 +13.64 +89.124 +92.24 +93.294a +33.69 +87.55 +93.376 +69.3 +30.24 +89.125 +72.2 +89.92 +32.34 +33.98 +33.76 +89.23 +28.3 +90.24 +92.29 +92.24 +37.67 +90.58 +92.27 +89.93 +33.90 +33.70 +89.23 +28.83 +92.11 +92.29 +69.3 +33.301 +92.23 +89.23 +69.3 +81618 42.8 +83.13 +79.107 +92.29 +37.67 +93.10 +31.35 +92.24 +33.60 53.79 +28.1 +90.21 +31.35 +89.87 +92.24 +93.10 +90.58 +92.24 +93.294a +22.41 67.106 +67.106 +92.1 +33.301 +11.35 +13.9 +89.87 +92.24 +93.294a +71.14 +25.6 33.178 +92.24 +12.1 +89.102 +22.41 67.106 +67.106 +89.102 +67.89 +67.89 +69.3 +58.50 +92.6 +89.125 +89.93 +59.23 +92.24 +24.52 +92.1 +67.205 +13.48 +64.2 +58.30 +81669 92.1 +58.67 +58.38 +92.24 +6.14 +92.29 +17.6 +89.102 +92.24 +37.67 +89.102 +92.24 +37.83 +89.102 +92.24 +93.71 +89.102 +92.24 +17.13 +92.11 +89.87 +15.53 +33.70 +90.58 +92.26 +33.69 +90.21 +92.23 +23.99 +89.139 +37.115 +65.17 +42.8 +92.24 +9.24 +92.29 +89.87 +93.10 +92.24 +93.376 +33.69 +37.127 +74.5 +92.24 +9.24 +92.29 +89.131 +81717 56.15 +37.74 93.208 +81720 67.45 +30.75 +92.24 +54.7 +92.4 +84.16 +92.24 +93.489 +37.111 +89.102 +92.24 +93.294a +89.102 +92.12 +58.37 +37.117 +55.16 +33.126 +93.176 +55.9 +37.76 +89.87 +15.97 +6.41 +93.390 +67.62 +54.1 +84.16 +92.24 +84.30 +92.24 +93.415 +80.1 +54.4 +85.1 +89.107 +92.4 +93.38 +93.528 +93.474 +89.88 +92.24 +58.37 +54.15 +83.13 +93.577 +89.88 +92.24 +93.176 +88.72 +92.24 +93.294a +41.4 +13.138 +84.18 +92.24 +34.11 +15.34 +35.44 +90.61 +84.10 +54.4 +54.10 +92.24 +93.510 +89.26 +92.24 +92.24 +14.4 +13.1 +82.11 +89.88 +92.24 +1.73 +92.24 +83.44 +92.24 +93.501 +89.92 +93.545 +54.11 +54.15 +84.16 +93.534 +92.24 +93.520 +92.24 +55.16 + +27.27 +6.41 +93.403 +54.1 +84.16 +92.24 +93.489 +15.96 +92.4 +84.22 +92.11 +81821 67.136 +59.2 +67.142 +54.2 +89.92 +22.33 +15.1 +83.44 +92.24 +93.503 +69.3 +13.139 +92.4 +92.24 +14.4 +54.10 +92.24 +93.508 +83.44 +93.567 +89.88 +22.33 +54.8 +92.11 +15.81 +84.16 +80.1 +81849 33.129 +93.493 +93.493 +92.27 +83.26 +1.88 +93.516 +85.1 +81858 59.12 +67.78 +67.84 +81862 13.1 +67.20 +21.3 +92.24 +54.1 +89.26 +92.24 +89.93 +92.24 +51.11 +67.20 +67.85 +33.295 +92.24 +93.294a +33.69 +92.11 +9.24 +32.11 +90.21 +89.79 +20.19 +89.92 +59.11 +57.69 +69.3 +81889 92.24 +15.208 +89.92 +92.24 +6.41 +89.125 +89.93 +92.24 +23.88 +92.4 +13.1 +67.62 +92.24 +54.1 +89.124 +92.24 +55.16 +92.24 +54.28 +89.92 +92.24 +54.29 +89.126 +33.301 +64.18 +92.24 +90.1 +93.294a +33.69 +89.94 +65.35 +92.24 +1.75 +13.5 +89.60 +67.166 +92.24 +59.1 +33.296 +33.296 +54.4 +84.10 +90.26 +89.62 +74.5 +15.84 +84.22 +93.607 +1.75 +92.24 +93.508 +82.10 +83.45 +82.6 +89.92 +83.45 +82.5 +67.166 +81948 14.5 +14.8 +31.29 +92.24 +30.63 +68.29 +15.203 +83.28 +54.8 +92.24 +93.508 +89.124 +67.48 +69.3 +59.11 +15.112 +90.31 +92.11 +14.4 +14.7 +92.24 +33.129 +14.9 +89.87 +15.6 18.5 +92.24 +6.41 +81976 69.3 +74.5 +82.9 +92.24 +14.4 +39.21 +15.160 +89.87 +54.10 +1.67 +81987 33.129 +93.497 +74.9 +22.33 +37.23 +13.48 +92.24 +6.45 +92.27 +15.203 +35.10 +90.13 +54.25 +92.24 +6.41 +89.88 +25.252 +89.62 +82006 92.24 +93.592 +54.19 +15.111 +92.24 +6.1 +61.9 +15.160 +89.87 +78.19 +14.3 +92.4 +92.24 +67.208 +15.220 +90.45 +89.87 +92.24 +60.50 +8.31 +92.24 +6.2 +92.24 +6.41 +15.217 +89.87 +69.9 +1.28 +69.9 +1.30 +14.39 24.21 +67.136 +59.1 +67.142 +89.95 +14.2 +69.3 +78.8 +19.43 +61.14 +68.43 +25.59 +59.23 +92.24 +21.18 +92.4 +89.88 +59.11 +23.32 +13.5 +67.47 +17.6 +92.24 +93.294a +82061 83.10 +92.11 +33.69 +91.14 +9.24 +91.6 +71.21 +36.12 +92.1 +69.3 +54.4 +84.3 +92.24 +93.508 +89.95 +13.137 +92.24 +20.19 +92.29 +89.92 +92.24 +57.69 +82084 92.24 +67.38 +33.295 +92.7 +25.146 +89.23 +13.103 +23.88 +92.23 +13.104 +63.20 +92.7 +89.130 +92.24 +6.41 +89.23 +15.86 +92.1 +92.29 +92.24 +67.192 +92.24 +12.1 +92.27 +13.1 +92.27 +89.93 +53.14 +12.28 +33.69 +69.3 +25.252 +93.294a +37.74 93.208 +92.6 +85.18 +71.34 +89.93 +91.13 +57.102 +92.6 +92.24 +12.1 +59.23 +92.24 +54.1 +89.108 +92.6 +89.47 +25.146 +9.24 +89.23 +31.85 +92.24 +12.1 +90.21 +61.9 +13.104 +89.8 +92.27 +89.83 +33.70 +92.1 +89.124 +71.34 +82150 1.66 +82152 92.4 +54.19 +82155 67.45 +60.60 +67.192 +13.107 +15.163 +92.4 +83.13 +92.24 +93.391 +67.35 +83.10 +92.24 +67.192 +31.32 +92.24 +54.30 +14.81 15.77 +92.12 +1.60 +92.11 +82176 54.23 +27.1 +81.26 +60.25 +89.87 +59.14 +15.12 15.50 +89.87 +67.55 +54.23 +27.1 +81.26 +60.23 +89.88 +25.252 +89.62 +83.7 +84.21 +79.84 +80.1 +54.19 +84.4 +6.47 +15.217 +6.48 +60.13 +25.6 +14.40 +13.107 +89.87 +92.24 +54.30 +68.60 +15.61 +89.121 +92.24 +6.41 +89.92 +15.111 +92.24 +6.45 +84.22 +92.24 +1.70 +88.230 +64.12 +84.4 +6.46 +6.48 +16.19 +67.62 +33.69 +92.24 +93.294a +92.24 +55.16 +89.92 +92.24 +55.17 +82237 92.29 +85.55 +83.13 +92.24 +6.41 +92.7 +21.18 +69.3 +74.5 +67.47 +19.18 +92.24 +55.17 +92.24 +6.18 +92.24 +6.45 +89.92 +13.138 +92.11 +15.120 +82259 67.17 +82261 14.40 +67.62 +13.107 +33.168 +92.24 +93.294a +59.23 +57.129 +5.1 +33.69 +60.60 +67.186 +67.205 +25.228 +23.32 +13.27 +92.23 +18.2 +89.47 +33.168 +92.7 +57.129 +5.1 +89.23 +92.29 +89.60 +92.24 +92.9 +21.18 +13.5 +89.23 +92.23 +92.7 +8.12 +89.122 +92.24 +8.10 +57.68 +89.87 +33.69 +92.29 +89.87 +18.1 +5.8 +33.349 +92.24 +12.1 +83.33 +59.23 +89.87 +19.34 +68.1 +23.1 +82315 25.147 +13.48 +59.23 +89.93 +92.11 +18.2 +5.1 +82323 13.69 +92.24 +59.23 +9.20 +83.13 +92.24 +6.41 +60.34 +60.30 +60.15 +89.87 +57.22 +5.1 +86.3 +92.24 +6.41 +15.220 +92.24 +3.41 +84.22 +92.24 +1.70 +82347 14.40 +13.107 +92.24 +1.79 +69.3 +28.2 +89.124 +24.51 30.43 +1.74 +82357 90.27 +1.63 +82360 92.27 +54.17 +92.24 +6.41 +30.56 +89.65 +74.5 +82368 92.24 +6.48 +15.204 +13.138 +83.13 +92.24 +1.70 +67.34 +18.19 +92.24 +6.19 +92.24 +6.50 +89.92 +15.105 +92.24 +6.49 +92.24 +14.4 +54.22 +84.16 +92.24 +1.63 +89.124 +15.85 +84.22 +1.68 +1.68 14.32 +54.18 +92.24 +6.43 +89.87 +89.136 +92.24 +6.46 +15.5 +68.11 85.55 +15.4 +89.136 +92.24 +6.47 +20.53 +90.1 +92.24 +20.1 +82414 92.24 +55.17 +30.57 +91.5 +90.22 +92.24 +37.117 +20.61 +89.62 +92.12 +15.247 +15.64 +89.124 +92.24 +55.16 +30.56 +21.19 +92.24 +93.294a +13.146 +92.11 +92.24 +30.57 +89.88 +33.323 +92.24 +74.5 +15.246 +15.242 +60.46 +84.20 +92.24 +1.60 +15.40 +89.87 +92.24 +63.21 +89.104 +82453 83.46 +7.79 +89.104 +82457 83.46 +92.12 +92.24 +84.3 +92.24 +6.41 +82464 61.9 +13.107 +59.23 +21.19 +84.20 +92.24 +1.60 +91.1 +21.19 +67.47 +27.8 +90.21 +93.529 +92.24 +1.66 +33.129 +89.88 +92.24 +11.94 +90.91 +92.24 +69.3 +90.61 +88.71 +92.4 +89.23 +14.65 +2.5 +34.53 +59.23 +92.4 +89.26 +92.24 +14.10 +92.24 +68.7 +89.92 +89.26 +92.24 +79.75 +89.87 +15.125 +92.24 +93.294a +3.65 +82510 59.9 +89.87 +85.51 +84.20 +92.24 +2.5 +4.53 +89.25 +92.24 +79.70 +15.40 +18.7 +92.24 +8.30 +92.11 +89.87 +67.45 +24.1 +92.24 +11.94 +18.22 18.23 +92.24 +4.3 +84.4 +92.24 +8.30 +92.11 +90.58 +92.26 +33.69 +71.16 +20.85 +58.67 +92.24 +9.24 +92.29 +92.27 +21.19 +84.4 +92.24 +1.70 +23.88 +92.24 +12.27 +69.3 +13.138 +91.6 +82558 92.24 +16.8 +92.24 +4.3 +84.22 +92.24 +2.5 +90.66 +92.23 +20.18 +89.124 +92.24 +30.55 +92.11 +67.62 +23.159 23.163 +89.139 +15.119 +67.113 +23.121 +89.124 +67.89 +67.89 +92.11 +30.55 +89.92 +24.14 +92.23 +58.54 +90.59 +92.11 +13.107 +31.58 +33.69 +92.11 +58.67 +12.22 +82596 83.13 +92.24 +83.18 +92.24 +80.1 +92.30 +13.77 57.2 +1.95 +92.24 +87.45 +92.24 +1.66 +33.126 +93.299 +92.27 +34.53 +92.4 +67.186 +60.12 +88.72 +34.57 +82618 13.107 +92.24 +10.14 +92.24 +93.299 +23.159 +89.92 +23.160 +90.65 +17.27 +84.18 +92.27 +15.93 +89.87 +33.178 +92.24 +93.294a +85.51 +92.24 +8.30 +92.11 +23.136 +92.11 +82642 92.29 +13.107 +89.93 +92.24 +63.21 +92.24 +83.47 +92.24 +1.66 +90.65 +23.143 +15.77 +89.87 +23.139 +92.27 +82658 59.1 +57.167 +57.117 +92.4 +89.93 +54.4 +57.78 85.51 +92.24 +89.7 +92.24 +57.40 +82670 67.48 +60.12 +67.174 +54.4 +83.13 +6.41 +67.166 +83.47 +92.24 +1.66 +93.403 +33.479 6.51 +93.98 +89.87 +54.15 +83.13 +93.588 +85.55 +67.186 +60.12 +84.11 +82692 15.84 +84.16 +93.559 +89.87 +67.48 +60.10 +67.186 +13.107 +14.8 +67.180 +15.81 +84.16 +93.556 +83.5 +27.27 +11.23 +33.315 +89.111 +92.11 +85.55 +67.186 +60.16 +89.87 +61.9 +84.16 +92.24 +93.563 +15.81 +84.10 +92.24 +11.23 +33.212 +92.24 +89.6 +92.4 +15.81 +84.16 +15.78 +92.4 +84.19 +93.409 +93.409 +89.92 +60.12 +7.11 +92.27 +24.1 +92.24 +93.294a +33.349 +92.24 +12.1 +25.157 +25.157 +82748 15.93 +84.22 +93.563 +13.138 +92.24 +55.14 93.294a +85.55 +89.113 +92.25 +89.107 +92.24 +37.120 +92.11 +55.17 +82763 91.5 +67.48 +67.186 +60.12 +33.309 +92.11 +92.24 +58.67 +92.24 +93.172 +87.45 +89.87 +15.123 +92.11 +33.69 +90.58 +92.11 +9.24 +11.25 +92.1 +92.23 +39.6 +90.45 +92.24 +11.12 +89.139 +92.24 +41.25 +92.24 +10.21 +37.117 +84.4 +93.480a +37.12 +82798 92.24 +37.12 +92.24 +93.562 +82803 56.12 +92.1 +30.56 +37.127 +89.26 +92.24 +92.23 +56.4 +23.99 +13.5 +89.5 +92.1 +89.124 +33.455 +92.24 +93.172 +37.33 +56.15 +37.74 93.208 +69.3 +89.37 +92.24 +11.55 +92.1 +92.12 +33.427 +74.12 +89.50 +89.26 +92.29 +92.24 +89.15 +33.168 33.310 +92.7 +34.50 +89.92 +33.71 +89.23 +90.43 +92.24 +25.61 +92.24 +93.182b +92.24 +6.16 +92.29 +49.4 +89.87 +92.24 +90.58 +92.11 +33.69 +69.9 +92.4 +33.50 6.63 +89.6 +92.6 +57.125 +84.3 +92.24 +93.486a +69.9 +15.86 +92.12 +92.24 +11.25 +33.198 +89.139 +33.70 +92.12 +89.6 +92.6 +88.110 +89.124 +25.5 +90.14 +92.6 +33.212 +92.27 +31.1 +89.23 +91.6 +89.6 +92.24 +11.50 +92.29 +28.21 +92.4 +13.1 +90.21 +83.8 +33.455 +89.87 +33.346 +92.11 +67.186 +15.81 +84.18 +92.11 +83.13 +92.24 +7.31 +59.1 +92.27 +33.151 +33.223 +92.24 +37.64 +92.24 +12.1 +89.95 +33.301 +92.11 +89.6 +92.24 +93.169a +90.11 +89.102 +92.24 +33.58 +93.266 +82925 92.24 +33.58 53.79 +67.131 +67.187 +67.119 +67.191 +82932 89.136 +92.24 +33.301 +92.24 +33.69 +89.136 +92.24 +31.105 +82941 31.24 +13.1 +90.33 +92.26 +15.38 +33.69 +92.24 +93.294a +33.98 +60.10 +91.15 +72.12 +92.24 +12.18 +92.24 +88.24 +33.70 +90.4 +93.147 +92.24 +53.79 +90.58 +92.24 +10.20 +92.7 +33.69 +15.10 +84.18 +92.24 +11.12 +92.29 +89.87 +33.69 +24.63 +24.63 +82977 69.5 +69.5 +32.5 +89.92 +24.7 +24.7 +82984 69.5 +69.5 +27.5 34.50 +89.23 +32.45 +92.24 +26.3 +92.24 +11.12 +92.29 +89.92 +92.24 +32.46 +32.46 +32.46 +89.92 +92.24 +27.50 +92.11 +27.50 +83006 24.1 +92.24 +32.24 +89.92 +92.24 +24.54 +32.1 +89.92 +92.24 +26.3 +32.5 +83018 41.51 +83020 13.66 +92.11 +89.50 +28.21 +13.1 +92.7 +90.21 +92.24 +11.37 +15.67 +92.29 +92.24 +21.30 +92.24 +12.1 +92.11 +89.93 +31.56 +83039 85.55 +67.169 +63.1 +83.13 +57.4 +57.175 +89.93 +34.53 +59.23 +92.24 +15.93 +84.18 +92.11 +33.256 +92.24 +37.64 +92.24 +12.1 +89.92 +33.224 +92.24 +89.6 +92.24 +12.9{N:001} +93.169a +93.387 +89.79 +78.44 +83068 13.151 +93.294a +87.76 +93.387 +93.169a +33.314 +53.74 +37.97 +89.57 +33.217 +12.1 +92.27 +33.287 +90.4 +92.24 +33.60 53.79 +92.11 +83.13 +33.54 +88.24 +90.24 +92.24 +12.15 +92.11 +92.24 +13.80 +89.3 +10.29 +93.91 +89.4 +58.10 +92.24 +37.96 +12.15 +12.15 +89.84 +76.1 +89.4 +26.9 +88.25 +89.77 +23.93 +23.121 +93.169a +93.387 +92.24 +12.9{N:001} +92.4 +90.4 +92.27 +57.125 +57.103 88.66 +89.92 +53.73 +89.57 +36.15 +31.102 +83.9 +59.23 +92.24 +11.37 +90.36 +92.24 +33.265 +92.11 +83.9 +92.27 +58.67 +89.93 +92.7 +33.314 +93.169a +93.387 +59.23 +92.24 +85.1 +83.13 +93.563 +25.45 +12.1 +33.314 +53.46 +92.7 +25.89 88.66 +89.92 +25.248 +90.15 +12.1 +12.12 +92.4 +89.92 +12.9{N:001} +93.169a +93.387 +91.3 +60.46 +33.349 +92.24 +12.1 +92.1 +90.4 +93.169a +93.387 +89.6 +59.23 +92.7 +89.33 90.21 +92.24 +31.102 +92.7 +33.204 +83.13 +63.1 +92.24 +1.39 +89.23 +33.270 +92.1 +13.1 +92.24 +12.1 +92.27 +53.14 +89.84 +92.24 +26.9 +92.1 +89.76 +92.24 +33.217 +92.24 +12.15 +92.11 +90.21 +68.55 +29.18 +92.7 +90.45 +67.88 +67.136 +92.24 +33.178 +92.1 +33.170 +83213 89.62 +67.40 +67.9 +68.30 +89.76 +92.24 +30.59 +92.24 +12.1 +15.81 +84.18 +92.7 +89.23 +25.18 +34.50 +92.7 +89.59 +57.96 +92.12 +57.103 +12.21 +92.7 +89.57 +92.24 +74.19 +92.7 +83240 89.106 +89.106 +25.151 +83.9 +92.7 +89.76 +92.24 +83.9 +92.26 +31.102 +89.102 +92.7 +89.102 +92.1 +83255 11.23 +69.3 +25.1 +92.7 +28.13 +90.21 +67.11 +30.62 +15.81 +84.18 +92.7 +83267 13.146 +67.119 +92.24 +67.43 +89.59 +92.12 +42.13 +90.65 +89.93 +83.9 +92.7 +64.14 +89.93 +83.9 +92.24 +63.21 +11.37 +89.102 +11.90 +89.102 +11.95 +89.102 +32.33 +89.102 +32.50 +71.27 +58.67 +61.9 +92.24 +89.113 +92.1 +25.69 +89.93 +92.7 +92.24 +83.13 +93.563 +33.215 +89.23 +69.3 +25.193 +92.24 +33.217 +89.23 +76.1 +12.1 +13.1 +89.48 +21.26 +59.23 +92.24 +31.102 +89.102 +93.172 +60.46 +89.102 +11.40 +89.23 +34.46 +12.1 +89.76 +92.11 +28.38 +78.48 +31.85 +83333 31.85 +64.14 +33.54 +89.124 +92.24 +34.47 +89.77 +31.85 +23.88 +83343 28.38 +88.173 +12.1 +90.15 +1.11 +90.34 +59.23 +53.10 +89.92 +88.21 +9.1 +92.24 +92.24 +72.2 +89.76 +88.21 +13.150 +89.26 +92.24 +28.57 +92.24 +12.1 +28.58 +13.1 +90.56 +92.11 +89.23 +92.24 +12.1 +92.11 +28.36 +89.23 +92.24 +24.4 +92.11 +92.24 +89.102 +67.96 +92.11 +76.1 +89.102 +12.13 +67.131 +42.35 +1.1 +92.24 +42.30 +32.2 +27.7 +89.48 89.57 +92.24 +13.1 +92.11 +33.438 +89.26 +28.1 +92.24 +12.1 +69.3 +64.12 +12.1 +33.357 +89.139 +33.349 +89.125 +65.38 +90.23 +92.24 +30.10 +92.11 +89.92 +32.44 +92.24 +32.49 +92.11 +26.3 +33.218 +13.1 +32.33 +32.56 +89.92 +57.142 +92.24 +79.18 87.23 +92.24 +23.128 +12.1 +89.48 +64.3 +6.96 +23.125 +9.1 +89.92 +4.38 +89.92 +4.4 +89.92 +4.51 +89.47 +37.111 +92.11 +92.24 +12.1 +89.26 +92.24 +25.20 +92.24 +26.3 +92.11 +13.62 89.48 +88.261 +92.24 +87.74 +92.24 +8.1 +92.11 +83.9 +92.37 +92.18 +57.142 +92.24 +72.2 +92.24 +12.1 +89.48 +92.24 +33.254 +89.92 +53.53 +89.92 +53.14 +92.24 +42.38 +89.132 +92.24 +42.35 +92.27 +13.1 +33.362 +67.95 +92.24 +67.95 +72.6 +83488 37.111 +92.11 +92.24 +12.1 +13.62 89.48 +25.30 +87.71 +89.23 +83497 92.24 +79.103 +92.11 +68.50 +92.24 +58.9 +23.65 +13.62 +92.24 +89.137 +58.8 +89.95 +64.1 +83511 92.24 +79.102 +68.43 +92.24 +58.9 +23.65 +92.24 +79.103 +25.16 +83521 92.24 +25.16 +92.11 +90.59 +92.26 +79.102 +89.119 +79.102 +92.24 +88.149 +90.47 +83533 92.24 +38.15 +92.27 +71.21 +92.24 +88.262 +92.11 +89.119 +92.25 +90.63 +89.93 +89.34 +69.3 +30.114 30.98 +92.24 +12.1 +31.28 +83551 28.2 +37.111 +92.11 +92.24 +12.1 +13.62 +88.111 +30.5 +42.7 +92.24 +69.3 +66.1 +59.37 +59.23 +88.21 +88.108 +25.22 +88.105 +68.77 +88.160 +20.82 +33.447 39.22 +88.154 +88.113 +33.405 +33.388 +88.205 +88.132 +88.214 +88.220 +30.69 +88.106 +10.18 +36.24 +32.49 +34.45 +25.42 +88.82 +92.18 +92.24 +33.334 +92.24 +12.1 +28.2 +90.21 +92.24 +92.24 +92.31 +42.8 +65.17 +23.99 +13.1 +69.3 +83605 92.11 +90.45 +89.125 +89.93 +31.17 +92.24 +42.8 +89.47 +33.438 +13.1 +91.14 +9.1 +59.23 +92.24 +56.30 +89.23 +89.5 +92.27 +56.30 +92.24 +58.37 +92.10 +56.31 +89.23 +92.24 +58.31 +42.8 +92.24 +56.30 +89.124 +28.1 +90.21 +92.24 +56.30 +92.24 +12.1 +13.1 +70.4 89.8 +70.4 +90.57 +92.24 +92.24 +64.2 +42.8 +89.94 +31.1 +92.29 +91.14 +9.1 +92.24 +56.30 +92.24 +92.24 +64.2 +42.8 +83661 42.7 +92.11 +90.21 +92.6 +21.14 +92.24 +56.30 +92.24 +12.1 +89.139 +92.24 +78.15 +92.24 +88.67 +92.11 +89.92 +92.24 +25.171 +89.92 +92.24 +25.167 +88.192 +28.13 +90.21 +92.24 +88.68 +92.24 +12.1 +89.48 +41.52 +92.6 +36.1 +89.124 +89.8 +92.24 +88.223 +92.6 +89.92 +41.54 +26.3 +13.135 +92.10 +38.10 +67.136 + +38.10 +89.92 +28.38 +56.27 +92.24 +12.1 +92.27 +38.16 +59.27 +89.8 +92.24 +42.11 +92.11 +89.136 +92.24 +83722 25.174 +42.11 +88.1 +14.49 +89.92 +87.4 +89.92 +23.127 +57.59 +23.88 +67.96 +89.136 +92.24 +89.25 +88.167 +89.92 +36.23 +92.24 +72.2 +89.124 +31.82 36.12 +92.24 +88.21 +88.173 +89.92 +88.178 +22.2 +89.92 +22.10 +90.57 +59.23 +9.20 +9.1 +92.24 +90.47 +92.24 +88.106 +89.102 +93.172 +60.46 +89.102 +11.40 +89.124 +33.357 +89.92 +87.4 +89.92 +25.248 +59.23 +92.24 +90.47 +92.24 +88.1 +89.102 +93.172 +60.46 +89.102 +11.40 +89.23 +69.3 +13.69 +88.238 +90.20 +92.24 +12.1 +89.23 +59.7 +33.57 +88.289 +33.57 +89.93 +21.32 +89.92 +59.7 +83797 33.55 +88.289 +90.8 +33.55 +56.20 +89.23 +69.3 +92.24 +24.56 +33.55 +34.47 +90.20 +92.24 +12.1 +89.125 +92.24 +42.20 +33.55 +34.46 +89.23 +67.31 +11.37 +92.24 +69.3 +33.55 +83823 58.8 +92.24 +92.24 +33.55 +42.7 +92.29 +33.55 +69.3 +83832 92.25 +13.1 +33.333 +92.18 +28.51 +92.24 +42.11 +92.24 +33.55 +33.64 +83.13 +92.24 +26.3 +92.11 +33.266 +92.11 +92.24 +26.13 +89.92 +89.115 +92.26 +92.24 +30.9 +33.427 +89.139 +83858 33.435 + +67.136 +83862 56.20 +92.24 +12.1 +92.24 +28.75 +92.24 +9.1 +89.8 +92.24 +33.217 +92.1 +90.4 +93.387 +93.169a +89.124 +89.65 +92.6 +93.172 +33.132 +89.92 +31.83 +33.55 +89.92 +33.368 +90.23 +12.1 +89.92 +28.1 +92.24 +30.59 +89.92 +30.114 +92.24 +65.6 +33.225 +89.77 +92.24 +33.55 +89.95 +31.82 +92.10 +58.67 +36.4 +32.42 +14.36 +92.24 +13.8 +88.125 +33.244 +32.52 +33.243 +9.43 +90.65 +92.24 +58.3 +92.24 +28.17 +89.92 +92.24 +72.2 +90.23 +92.24 +33.55 +83926 92.24 +33.224 +58.37 +92.10 +69.11 +33.224 +92.24 +33.256 +69.3 +57.232 +57.232 +92.24 +33.69 +69.3 +88.276 +88.276 +92.24 +25.186 +92.24 +6.97 +53.104 57.241 +92.27 +90.23 +33.55 +33.368 +89.76 +92.24 +36.28 +92.24 +33.55 +92.24 +12.1 +87.74 +89.23 +92.24 +33.126 +92.24 +12.1 +90.44 +92.7 +33.400 +83.9 +92.24 +11.37 +64.14 +33.54 +89.23 +89.136 +53.51 +35.2 +89.67 +33.55 +42.8 +89.136 +89.67 +36.29 +33.55 +58.67 +92.24 +53.51 +92.6 +11.52 +13.48 +89.50 +89.67 +92.24 +11.52 +92.24 +33.334 +92.24 +33.55 +36.19 +69.11 +92.24 +11.52 +92.11 +84003 53.51 +57.227 +89.93 +56.30 +92.24 +90.16 +58.8 +11.52 +92.24 +33.55 +36.20 +92.6 +92.24 +89.26 +33.50 +89.92 +53.51 +36.29 +33.55 +89.23 +69.3 +92.24 +89.5 +92.24 +24.20 +93.172 +58.67 +69.7 +92.24 +89.5 +92.24 +24.20 +89.5 +8.63 +53.51 +89.125 +92.24 +84041 92.24 +26.1 +93.172 +84045 53.51 +26.3 +89.5 +12.18 +69.3 +33.50 +92.27 +92.24 +33.354 +69.3 +90.16 +9.1 +89.125 +90.16 +92.24 +12.1 +89.50 +92.14 +92.24 +65.46 +92.24 +93.172 +89.139 +92.14 +92.24 +65.41 +92.24 +53.51 +59.11 +89.4 +59.23 +89.83 +89.23 +91.6 +65.52 +89.33 +35.50 +92.24 +33.97 +92.24 +12.1 +91.1 +92.14 +89.65 +31.105 +92.12 +69.3 +92.24 +31.89 +92.11 +92.24 +31.88 +92.24 +12.1 +76.26 +69.3 +13.107 +89.124 +13.3 +92.24 +12.1 +88.39 +89.94 +59.23 +9.1 +33.255 +84112 33.54 +89.59 +71.14 +88.16 +90.23 +92.24 +33.98 +92.6 +89.92 +39.57 +67.33 +92.24 +30.108 +92.6 +89.124 +89.65 +92.24 +88.21 +92.4 +12.1 +88.13 +28.49 +92.14 +33.69 +69.3 +88.20 +92.24 +12.1 +92.24 +90.94 +92.24 +38.10 +89.8 +9.1 +33.69 +69.3 +13.107 +89.32 +92.16 +56.20 +92.24 +12.1 +92.24 +9.23 +89.124 +89.65 +92.24 +72.2 +92.24 +12.1 +89.76 +92.24 +92.2 +33.254 +59.52 +89.48 +92.24 +87.4 +92.11 +92.15 +89.135 +89.93 92.1 +64.12 +88.295 +56.20 +89.92 +69.3 +64.14 +33.400 +89.92 +64.14 +33.69 +92.12 +92.4 +33.69 +90.21 +42.7 +92.24 +88.106 +89.59 +13.117 +92.24 +88.1 +92.27 +92.24 +56.30 +88.15 +13.1 +89.50 +92.14 +65.47 +69.3 +91.10 +89.23 +33.430 +89.102 +93.172 +89.102 +11.40 +59.23 +37.7 +88.289 +13.1 +64.14 +33.54 +90.21 +69.3 +13.69 +88.12 +69.8 +60.10 +69.3 +13.69 +92.24 +32.26 +69.3 +13.69 +92.24 +27.35 +92.24 +12.1 +59.23 +31.99 +89.114 +88.263 +69.3 +13.69 +92.24 +42.7 +88.10 +69.3 +13.69 +59.21 +60.10 +7.75 +79.110 +92.24 +8.26 +92.11 +92.24 +33.74 +92.11 +88.154 +8.74 +4.53 +83.51 +92.24 +33.74 +92.11 +92.27 +92.24 +33.101 +33.473 +89.92 +88.201 +59.41 +67.112 +92.24 +8.49 +92.11 +20.84 47.4 +20.84 +20.59 +89.92 +22.11 +83.13 +92.24 +41.16 +92.11 +89.92 +41.16 +25.248 +69.3 +28.1 +69.3 +13.69 +53.59 +12.1 +83.42 +92.24 +32.24 +92.11 +89.124 +28.1 +90.21 +59.7 +92.24 +33.55 +33.69 +92.24 +84303 92.24 +33.55 +33.70 +89.59 +59.23 +33.125 +33.125 +89.92 +56.17 +13.48 +59.23 +92.24 +9.23 +92.24 +12.1 +89.26 +89.25 +42.11 +33.55 +69.3 +34.46 +59.23 +9.11 +90.20 +92.11 +89.23 +89.76 +33.55 +28.18 +88.289 +89.124 +67.38 +89.120 +33.333 +88.13 +12.1 +28.36 +33.262 +90.1 +92.24 +33.58 +84345 92.24 +33.58 53.79 +89.94 +34.46 +12.1 +89.76 +31.85 +93.169a +93.387 +90.59 +59.23 +92.24 +31.102 +89.23 +69.3 +13.1 +58.42 +89.23 +59.23 +88.289 +89.92 +13.21 +92.24 +87.23 +92.24 +12.1 +34.46 +57.85 +92.24 +92.11 +88.66 +89.76 +92.24 +37.128 +92.24 +90.6 +93.387 +93.169a +92.27 +13.15 +92.24 +12.1 +40.12 +89.76 +31.85 +90.23 +92.24 +92.11 +23.107 +89.57 +28.52 +92.24 +88.13 +92.11 +90.44 +92.24 +30.49 +92.24 +13.114 +88.290 +89.76 +92.24 +25.171 +92.24 +12.1 +89.60 +92.24 +28.52 +92.24 +88.13 +92.11 +67.136 +92.24 +67.38 +67.78 +89.57 +92.24 +13.1 +92.11 +88.12 +89.92 +34.46 +92.24 +63.20 +31.102 +93.169a +89.50 +92.28 +92.24 +33.368 +13.143 +90.4 +58.30 +33.333 +92.24 +42.11 +69.4 +89.125 +90.4 +33.333 +31.102 +89.23 +31.1 +34.46 +31.102 +9.1 +89.120 +42.11 +33.333 +89.139 +93.172 +92.24 +12.1 +84459 69.4 +89.93 +11.37 +69.1 +89.93 +11.37 +89.66 +60.10 +92.24 +12.1 +92.27 +34.46 +53.51 +89.77 +31.102 +89.92 +11.53 +89.76 +92.24 +31.102 +89.50 +33.333 +76.26 +89.76 +92.24 +31.102 +69.3 +13.107 +89.125 +33.333 +76.20 +84491 33.140 +92.14 +13.17 90.70 +93.7 +92.24 +10.20 +92.4 +89.4 +58.10 +89.23 +89.65 +93.7 +89.25 +42.11 +34.46 +90.65 +25.203 33.372 +89.125 +69.3 +90.20 +12.1 +89.23 +92.14 +92.24 +33.53 +33.69 +84518 31.85 +93.7 +92.24 +12.1 +84523 57.227 +92.11 +84526 34.46 +84528 92.24 +42.41 +92.24 +57.173 +57.227 +69.3 +89.8 +88.66 +89.125 +89.8 +57.221 71.26 +89.124 +92.24 +69.3 +42.41 +89.124 +31.85 +84546 92.24 +34.46 +92.24 +53.11 +57.227 +92.24 +31.85 +92.11 +13.62 +34.46 +64.15 +89.93 +93.91 +33.69 +92.24 +25.118 +92.24 +9.1 +92.27 +92.24 +12.1 +57.227 +34.46 +89.120 +42.11 +25.119 +92.27 +92.24 +88.139 +40.8 +89.92 +92.27 +92.24 +88.310 +40.11 +25.119 +9.1 +92.27 +69.5 +69.5 +57.227 +12.9{N:001} +88.310 +84590 92.24 +25.118 +92.29 +90.57 +92.24 +53.51 +89.139 +89.93 +90.57 +92.24 +11.53 +89.23 +33.69 +57.227 +92.24 +93.7 +92.24 +31.85 +13.62 +34.46 +89.50 +92.16 +57.227 +58.67 +13.8 +53.51 +89.139 +13.8 +11.52 +69.3 +13.8 +53.51 +89.125 +13.8 +11.52 +89.87 +57.125 +33.477 +53.51 +73.9 +92.24 +34.46 +92.24 +31.85 +92.24 +13.8 +92.24 +11.52 +89.57 +92.24 +13.4 +92.11 +58.64 +59.23 +92.24 +31.85 +84647 11.52 +89.57 +92.24 +57.227 +92.11 +92.24 +34.46 +89.92 +58.64 +53.51 +92.24 +69.3 +84660 11.51 53.51 +84662 89.125 +89.93 +92.24 +41.47 +92.24 +41.47 +92.24 +13.8 +11.52 +31.85 +92.24 +58.64 +92.4 +93.7 +89.23 +69.3 +89.76 +33.55 +92.24 +33.288 +92.24 +57.133 +1.39 +92.11 +13.4 +92.24 +93.7 +89.139 +92.24 +10.29 +92.11 +89.125 +89.76 +34.46 +31.85 +89.23 +89.65 +92.24 +89.3 +33.55 +57.133 +76.27 +92.24 +31.85 +89.92 +76.26 +92.24 +33.288 +89.23 +92.24 +33.55 +38.10 +13.9 +89.124 +92.28 +69.3 +13.69 +33.55 +69.7 +36.28 +84724 89.77 +31.85 +89.59 +89.8 +88.66 +89.57 +92.24 +13.1 +71.15 +92.24 +33.288 +59.23 +92.24 +10.29 +69.3 +92.24 +89.3 +92.24 +33.55 +84744 89.125 +89.93 +92.24 +89.3 +31.85 +93.7 +92.27 +13.4 +58.64 +59.23 +92.4 +90.20 +92.27 +31.85 +12.1 +92.24 +23.92 +92.24 +23.121 +89.92 +33.312 +92.24 +69.3 +13.69 +64.12 +13.69 +64.14 +33.54 +90.21 +58.64 +59.1 +11.55 +13.9 +92.6 +92.27 +89.137 +25.61 +89.13 +25.59 +31.85 +89.48 89.57 +92.24 +13.48 +92.11 +10.20 +59.1 +11.55 +89.8 +92.24 +33.69 +61.9 +13.1 +92.24 +10.29 +92.6 +84800 69.3 +74.26 +92.24 +31.85 +30.4 32.12 +92.24 +92.25 +8.1 +68.48 +67.173 +78.40 +13.5 +89.92 +92.24 +23.57 +92.24 +8.69 +93.329 +89.124 +84820 92.24 +33.288 +92.24 +12.1 +69.3 +31.37 +92.24 +31.97 +89.125 +74.6 +92.24 +31.85 +57.71 +33.357 +92.24 +12.1 +89.93 +31.45 +90.21 +13.1 +74.2 +92.27 +33.286 +89.93 +42.7 +89.47 +89.93 +57.227 +92.11 +13.62 +34.46 +84852 69.3 +33.54 +90.38 +92.11 +84857 90.21 +57.227 +92.11 +89.125 +89.93 +90.38 +92.4 +92.27 +57.227 +67.62 +92.24 +31.85 +84870 92.24 +23.94 +89.121 +23.121 +93.169a +92.24 +12.9{N:001} +92.4 +92.27 +37.111 +89.26 +92.24 +88.297 +92.4 +89.92 +23.94 +89.26 +92.24 +34.46 +92.4 +89.50 +34.46 +89.77 +31.102 +25.248 +84896 89.112 +92.24 +12.1 +90.4 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +90.4 +92.27 +89.93 +92.24 +33.72 +74.12 90.65 +92.24 +31.102 +13.62 +92.24 +88.66 +92.29 +13.8 +92.27 +13.29 +89.92 +33.368 +89.27 +25.59 +92.24 +79.18 +92.24 +12.1 +89.94 +69.3 +84931 89.125 +89.93 +33.368 +13.8 +92.24 +22.2 +28.1 +90.21 +92.24 +22.2 +25.174 +13.9 +89.87 +92.24 +25.174 +65.12 +89.87 +92.24 +65.12 +25.59 +89.87 +92.24 +25.59 +69.3 +25.194 +89.33 +92.24 +25.43 +92.24 +12.1 +90.89 +84.22 +92.24 +26.3 +92.4 +90.4 +12.18 +88.24 +92.24 +84971 92.4 +89.23 +67.128 +93.387 +13.1 +92.4 +22.3 88.117 +67.128 +67.33 +22.45 67.1 +90.36 +53.11 +23.99 +91.1 +78.41 +90.36 +88.12 +92.12 +23.99 +84991 90.36 +92.24 +88.1 +71.12 +92.12 +84997 25.161 +23.99 +89.124 +28.49 +92.24 +92.25 +25.43 +90.59 +92.4 +92.24 +12.1 +90.21 91.15 +67.128 +88.295 +13.1 +92.4 +93.387 +90.36 +92.4 +23.99 +89.50 +59.11 +78.28 +34.46 +67.38 +90.10 +92.24 +23.107 +92.11 +21.27 +90.4 +92.11 +89.122 +92.24 +38.10 +89.23 +89.65 +39.11 +13.1 +40.1 +92.24 +12.1 +89.76 90.8 +92.24 +23.99 +92.24 +12.15 +92.11 +59.11 +78.28 +40.1 +21.27 +89.76 +92.24 +23.88 +92.11 +89.94 +69.3 +85056 89.125 +89.93 +33.368 +89.5 +92.24 +12.1 +90.4 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +90.4 +92.27 +67.39 +92.24 +40.1 +90.63 +85076 64.13 +90.4 +60.10 +9.1 +92.24 +88.118 +84.22 +92.24 +9.23 +13.110 +89.87 +89.26 +92.24 +88.289 +92.24 +23.99 +85094 90.59 +59.23 +9.1 +92.24 +23.99 +15.17 15.32 +89.27 +92.27 +59.23 +88.289 +89.23 +67.119 +33.55 +88.289 +85.1 +83.13 +9.23 +89.124 +88.310 +69.3 +33.45 +69.3 +13.69 +33.55 +89.125 +37.22 +92.24 +23.99 +85123 93.11 +67.119 +93.266 +85127 37.9 +92.24 +69.3 +88.289 +90.23 90.9 +92.24 +64.3 +92.24 +36.28 +93.11 +92.27 +13.1 +58.63 +92.24 +67.62 +89.125 +69.3 +64.12 +92.24 +88.297 +61.9 +89.93 +92.24 +57.103 +89.23 +89.65 +92.24 +92.24 +60.10 +88.297 +92.24 +59.1 +23.99 +59.11 +78.28 +92.24 +88.66 +92.24 +12.1 +89.92 +92.24 +57.84 +89.141 +88.66 +92.24 +92.24 +60.10 +9.1 +93.169a +93.387 +90.41 90.59 +92.24 +59.1 +59.52 +89.93 +69.3 +64.12 +90.4 +60.10 +88.289 +92.24 +57.84 +89.23 +89.136 +92.24 +56.24 +89.25 +60.10 +13.62 89.48 +56.31 +89.136 +92.24 +57.103 +67.131 +59.1 +88.297 +13.62 89.48 +56.34 +89.23 +89.65 +92.24 +92.24 +60.10 +88.297 +92.24 +23.99 +37.22 +90.4 +92.24 +60.10 +59.11 78.3 +78.28 +92.24 +92.24 +59.53 +92.24 +88.66 +89.92 +92.24 +57.84 +92.24 +34.46 +57.125 +13.8 89.5 +23.88 +37.22 +90.4 +92.24 +60.10 +93.169a +93.387 +89.46 +85240 64.12 +89.26 +60.10 +88.297 +90.59 +59.23 +9.1 +13.62 89.48 +56.31 +61.9 +89.93 +89.26 +60.10 +88.14 +90.59 +59.23 +9.1 +13.62 89.48 +56.34 +23.88 +89.23 +64.13 +89.26 +92.24 +36.27 +92.24 +60.10 +9.1 +88.294 +13.9 +92.24 +59.1 +61.9 +89.93 +89.26 +92.24 +36.15 +92.24 +60.10 +88.12 +13.9 +92.24 +59.1 +85284 33.55 +34.30 +89.49 +59.67 +92.24 +88.297 +89.124 +92.28 +59.67 +92.24 +88.289 +59.49 78.34 +92.24 +88.66 +89.59 +64.13 +37.22 +92.24 +88.310 +89.48 +92.24 +23.99 +61.9 +89.93 +92.24 +88.66 +37.22 +90.4 +34.46 +13.62 89.48 +23.88 +67.96 +90.4 +93.169a +93.387 +92.24 +12.9{N:001} +92.4 +89.50 +92.14 +33.140 33.69 +68.11 +92.24 +88.289 +89.59 +92.24 +88.66 +59.67 +69.3 +13.107 +92.18 +74.27 +92.24 +88.118 +92.16 +67.128 +41.2 +13.8 +92.11 +89.139 +28.13 +90.21 +59.7 +53.41 +90.23 +93.387 +93.169a +90.23 +92.24 +23.99 +92.11 +53.41 +89.50 +52.8 +92.11 +89.76 +92.24 +53.41 +13.62 +92.24 +23.99 +89.59 +64.13 +23.94 +93.387 +89.121 +23.121 +89.76 +92.24 +76.13 +92.24 +12.12 +61.9 +89.93 +92.4 +13.8 +58.70 +23.88 +41.11 +89.23 +89.30 +89.117 +13.3 +92.24 +64.3 +92.24 +23.99 +92.11 +91.11 +89.93 +92.24 +23.93 +13.1 +92.29 +28.1 32.16 +90.21 +92.24 +41.43 58.75 +92.4 +41.43 +20.78 +89.59 +13.162 +92.24 +9.8 +92.24 +88.118 +92.24 +67.130 +37.25 +92.4 +92.24 +88.118 +89.23 +92.24 +74.27 +37.138 +89.122 +92.24 +88.310 +85425 89.30 +74.27 +89.107 +93.387 +31.35 +90.21 +89.93 +23.96 +92.11 +28.1 +90.21 +93.387 +23.94 +89.121 +23.121 +67.130 +23.99 +23.99 +92.11 +67.130 +37.50 +89.23 +92.27 +23.99 +92.24 +88.118 +74.27 +60.68 +89.124 +92.27 +41.2 +41.2 +92.24 +12.1 +85460 89.93 +92.7 +31.1 +92.25 +13.1 +89.136 +74.28 +92.24 +88.118 +89.136 +41.2 +92.24 +12.1 +89.119 +93.387 +93.169a +89.50 +69.3 +37.22 +92.24 +88.118 +83.13 +92.24 +23.124 +92.7 +9.8 +89.48 +92.24 +36.15 +92.24 +25.20 +92.11 +69.7 +13.11 +92.24 +8.9 +92.7 +6.3 +88.21 +92.24 +88.118 +89.125 +13.11 +92.25 +92.24 +12.1 +64.12 +89.121 +23.121 +23.88 +89.92 +92.24 +8.9 +92.7 +6.3 +88.13 +92.24 +12.1 +89.23 +88.118 +92.7 +69.3 +37.50 +89.23 +69.3 +13.1 +37.7 +33.333 33.55 +89.125 +37.7 +88.66 +85532 92.14 +88.289 +89.33 +69.3 +13.1 +37.7 +33.333 33.55 +89.125 +37.7 +88.66 +69.3 +13.107 +69.11 +28.1 +90.21 +92.27 +13.11 +92.25 +87.76 +89.57 +36.15 +87.76 +58.67 +92.27 +36.15 +89.140 +88.289 +89.48 +23.99 +89.140 +36.15 +89.48 +88.13 +89.124 +33.350 +92.24 +12.1 +90.21 +58.67 +87.76 +92.24 +88.289 +89.124 +36.15 +90.16 +26.3 +90.23 +92.27 +33.237 +58.25 +33.236 +89.94 +37.135 +89.122 +92.24 +88.118 +37.27 +92.24 +88.13 +9.6 +33.69 +89.26 +92.24 +74.23 +92.24 +26.7 +92.7 +89.23 +64.13 +13.11 +92.24 +8.9 +92.7 +37.3 +92.24 +88.261 +89.92 +92.24 +88.139 +89.48 +92.24 +88.139 +85615 67.38 +13.11 +92.24 +8.9 +92.7 +37.3 +92.24 +88.13 +89.48 +53.44 +89.23 +67.139 +87.76 +92.24 +88.118 +58.67 +37.134 +58.67 +92.24 +88.13 +89.50 +92.14 +42.13 +90.51 +67.47 +89.27 +92.27 +67.38 +25.193 +89.23 +92.24 +89.40 +92.30 +23.99 +89.124 +67.38 +37.135 +89.122 +92.24 +88.118 +89.94 +37.27 +92.24 +12.1 +90.51 +92.24 +42.13 +92.7 +89.48 +53.44 +89.87 +92.24 +89.40 +23.88 +67.96 +89.23 +92.24 +89.42 +92.24 +88.289 +23.99 +89.124 +92.24 +57.103 +92.24 +12.1 +23.88 +67.96 +89.119 +93.387 +93.169a +92.24 +12.9{N:001} +92.4 +89.139 +11.23 +28.13 +89.23 +32.16 +33.55 +33.70 +90.21 +92.24 +33.55 +37.50 +92.24 +9.1 +67.136 +59.19 +67.78 +23.88 +89.23 +92.24 +34.75 +9.34 +92.24 +23.88 +10.53 +37.45 +33.55 +89.124 +67.32 +23.99 +92.24 +10.53 +37.136 +89.122 +92.24 +33.341 +92.24 +10.53 +89.46 +89.50 +23.88 +92.24 +10.53 +88.278 +33.127 +67.32 +34.69 +9.24 +58.37 +89.124 +67.32 +23.99 +92.24 +10.53 +37.134 +13.1 +89.122 +92.24 +33.341 +92.24 +69.3 +58.67 +92.11 +88.278 +34.69 +9.24 +58.37 +89.52 +11.23 +92.1 +89.93 +92.7 +68.48 +92.24 +33.55 +89.76 +92.24 +8.1 +92.24 +93.387 +89.57 +92.24 +34.69 +92.7 +58.37 +92.24 +89.121 +23.121 +23.94 +89.59 +13.86 +92.24 +12.1 +89.23 +67.139 +13.1 +13.8 +92.24 +26.7 +92.24 +25.30 +92.24 +88.289 +92.24 +89.76 +92.24 +33.55 +42.3 +89.119 +92.24 +8.9 +92.4 +89.57 +92.24 +13.86 +92.24 +23.99 +85806 91.4 +37.136 +89.122 +92.24 +33.55 +74.27 +89.5 +92.27 +37.17 +89.52 +35.27 +92.4 +13.8 +67.101 +12.18 +89.92 +69.3 +58.74 67.100 +33.50 +89.50 +92.14 +33.69 +92.24 +33.55 +88.289 +69.3 +13.107 +89.125 +92.24 +88.289 +69.3 +32.16 +89.131 +85840 89.76 +33.55 +89.23 +89.95 +92.24 +25.20 +69.3 +28.1 +89.131 +85850 92.24 +33.55 +33.69 +69.3 +25.20 +89.124 +22.46 +18.1 +92.24 +88.118 +90.8 +92.24 +33.330 +13.9 +83.13 +92.1 +58.28 +25.20 +89.23 +89.120 +33.55 +88.118 +65.39 +89.94 +92.1 +23.88 +89.120 +33.55 +67.9 +89.124 +15.7 +92.24 +33.330 +92.24 +88.118 +42.6 +85887 92.1 +23.99 +85890 13.7 +92.1 +92.24 +33.330 +92.24 +89.57 +23.88 +92.29 +89.48 +23.99 +89.23 +92.24 +88.118 +22.46 +18.1 +89.76 +92.24 +33.330 +31.12 +92.1 +89.87 +89.76 +92.11 +20.61 +89.52 +91.3 +92.24 +33.55 +88.24 +89.92 +92.24 +33.330 +88.24 +89.92 +88.12 +89.92 +88.1 +89.50 +92.24 +88.1 +92.1 +13.48 +23.99 +69.3 +13.107 +89.125 +92.24 +88.118 +89.59 +28.36 +88.289 +89.76 +92.24 +88.1 +92.1 +13.9 +23.99 +89.59 +13.48 +89.4 +78.33 +88.294 +92.24 +88.118 +89.76 +92.24 +33.330 +89.23 +28.1 +90.21 +92.24 +33.55 +79.6 +13.1 +89.124 +92.1 +79.4 +13.1 +57.186 +37.7 +92.24 +88.118 +89.23 +92.27 +90.47 +69.3 +32.16 +89.23 +69.3 +92.27 +25.1 +92.29 +42.8 +89.125 +92.27 +88.198 +92.29 +42.7 +85989 89.65 +92.27 +69.3 +25.1 +92.29 +42.7 +31.16 +92.24 +33.55 +90.21 +88.4 +86001 91.4 +67.130 +92.1 +90.47 +92.11 +89.125 +92.24 +86009 89.119 +92.1 +88.118 +89.23 +28.1 +90.21 +69.3 +85.73 +89.119 +92.1 +89.106 +89.106 +89.119 +92.24 +26.7 +92.1 +88.1 +89.23 +92.24 +25.1 +85.23 +92.1 +89.124 +92.24 +90.47 +92.24 +88.4 +69.3 +89.23 +69.3 +92.27 +25.1 +88.1 +42.7 +89.125 +92.27 +69.3 +25.1 +88.106 +92.29 +42.8 +89.124 +89.65 +92.27 +69.3 +25.1 +92.29 +92.1 +42.7 +67.130 +92.1 +90.47 +92.11 +89.125 +92.24 +85.73 +89.119 +92.1 +88.118 +89.46 +27.1 +92.24 +33.333 +92.1 +92.24 +25.1 +42.7 +92.24 +88.4 +90.21 +92.1 +92.24 +88.106 +85.23 +89.23 +25.127 +92.24 +33.55 +92.24 +12.1 +89.4 +92.24 +26.1 +26.1 +89.124 +32.11 +58.36 +33.333 +89.119 +92.24 +8.9 +92.1 +39.2 +92.24 +33.333 +92.24 +26.14 +92.1 +89.92 +37.29 +92.1 +89.76 +92.24 +33.333 +92.24 +88.118 +92.24 +85.1 +89.119 +92.24 +8.9 +92.1 +22.12 +9.1 +92.1 +92.14 +92.1 +21.23 +89.121 +92.24 +9.8 +92.24 +23.99 +92.29 +33.350 +92.24 +12.1 +89.76 +93.169a +93.387 +92.24 +12.9{N:001} +92.1 +89.46 +89.50 +89.136 +92.37 +92.1 +92.24 +26.14 +35.27 +33.55 +12.1 +89.136 +92.24 +26.7 +33.333 +88.118 +89.46 +92.23 +56.31 +67.38 +92.24 +89.119 +93.387 +93.169a +89.23 +92.24 +33.333 +92.24 +12.18 +92.24 +23.88 +89.119 +93.387 +93.169a +37.135 +92.6 +89.122 +92.24 +33.55 +92.24 +88.118 +89.92 +92.24 +23.99 +89.23 +92.24 +71.3 +92.24 +33.55 +89.26 +92.27 +74.26 +89.26 +92.24 +26.7 +92.24 +12.1 +92.24 +92.25 +12.15 +15.66 +13.8 +64.3 +26.7 +88.118 +89.92 +90.39 +88.310 +56.31 +92.24 +88.118 +13.8 +92.24 +58.10 +89.59 +92.24 +33.334 +92.24 +33.55 +59.33 +90.56 90.6 +92.4 +92.24 +41.11 +69.3 +89.8 +26.7 +89.125 +89.8 +12.18 +89.23 +92.24 +89.8 +26.7 +13.1 +92.24 +92.24 +26.7 +30.20 87.12 +89.124 +92.24 +89.8 +12.18 +92.24 +92.24 +12.18 +89.23 +92.24 +26.15 +92.24 +26.7 +23.99 +89.124 +92.24 +26.15 +92.24 +12.18 +23.88 +89.92 +25.248 +89.26 +92.24 +26.15 +92.24 +26.7 +39.10 +90.59 +12.1 +89.23 +92.24 +33.55 +92.24 +12.1 +69.3 +36.18 +89.23 +69.7 +74.5 +86280 92.24 +13.8 +26.7 +13.1 +12.1 +25.90 +69.3 +74.5 +89.124 +92.7 +13.1 +69.3 +13.8 +26.7 +89.125 +13.8 +12.18 +89.66 +12.18 +12.1 +85.73 +89.119 +92.7 +89.124 +89.65 +92.12 +12.18 +93.387 +69.3 +90.65 +92.29 +69.3 +13.1 +92.11 +89.124 +89.65 +93.387 +89.119 +92.7 +89.136 +92.24 +9.8 +65.39 +89.26 +88.289 +89.136 +92.24 +26.9 +23.88 +89.26 +34.46 +86332 89.65 +92.24 +12.18 +92.24 +23.94 +92.24 +93.169a +89.121 +23.121 +85.73 +89.119 +92.7 +92.24 +23.94 +89.121 +23.121 +93.387 +86350 23.92 +89.93 +92.24 +23.124 +8.1 +92.7 +89.76 +92.24 +85.73 +89.119 +92.7 +92.11 +12.18 +89.46 +86365 11.23 +71.27 +13.1 +69.3 +92.24 +26.7 +92.24 +89.8 +26.7 +41.2 +89.23 +89.65 +89.8 +26.7 +41.2 +71.36 +23.99 +89.124 +89.65 +12.18 +92.24 +42.8 +92.24 +9.8 +68.48 +23.88 +89.23 +59.7 +12.18 +12.1 +36.1 +92.29 +9.4 +12.1 +58.67 +89.23 +69.3 +90.63 +30.6 +37.26 +67.55 +89.48 +25.251 +89.125 +90.63 +12.18 +35.53 +89.76 +92.27 +33.83 +12.12 +92.24 +12.12 +92.37 +92.24 +12.18 +33.266 +92.24 +26.9 +92.4 +90.21 +58.67 +58.26 +12.1 +89.94 +89.65 +58.26 +89.93 +57.139 +89.136 +57.139 +12.1 +89.136 +57.134 +93.387 +89.66 +24.84 +89.59 +89.93 +87.10 +89.23 +31.1 +90.21 +69.3 +65.17 +92.24 +24.78 +92.24 +67.38 +67.145 +64.17 +92.24 +67.62 +28.38 +83.13 90.59 +92.4 +79.18 +89.23 +92.24 +25.64 +92.24 +1.4 +92.24 +28.38 +92.24 +9.4 +92.24 +12.1 +25.63 +89.23 +90.21 92.24 +65.37 +92.24 +1.4 +37.31 +69.3 +25.65 +89.125 +90.44 +92.24 +37.31 +89.13 +25.59 +86490 92.37 +92.24 +1.4 +37.135 +13.62 +92.24 +37.26 +92.24 +23.205 +13.62 +92.24 +37.133 +92.24 +79.18 +92.24 +58.26 +92.24 +12.1 +89.23 +28.1 +90.21 +63.2 +92.24 +1.4 +25.145 +89.92 +24.88 +67.119 +92.24 +67.38 +89.94 +69.3 +86523 89.125 +89.93 +92.37 +92.24 +57.171 +92.24 +12.18 +90.65 +92.4 +89.93 +92.37 +83.13 +92.25 +25.143 +25.63 +35.53 +92.24 +37.128 +92.24 +8.1 +92.4 +89.23 +92.24 +25.61 +21.27 +89.124 +25.61 +24.7 +69.3 +13.4 +25.59 +89.23 +92.27 +24.7 +92.12 +86559 25.59 +89.124 +89.65 +92.27 +69.3 +24.7 +25.59 +89.26 +25.174 +25.63 +86570 64.16 +89.93 +92.24 +12.18 +35.5 +92.24 +74.23 +92.4 +89.23 +92.24 +92.14 +33.178 +64.14 +71.21 +69.3 +28.1 +89.125 +92.37 +92.24 +12.18 +33.348 +25.143 +33.96 +89.94 +92.24 +27.34 +92.24 +26.3 +28.1 +92.14 +92.24 +26.15 +92.24 +12.18 +89.33 +89.8 +12.1 +33.169 +90.36 +11.27 +86611 28.1 +90.21 +92.24 +25.43 +92.24 +12.1 +59.23 +42.15 +90.23 +65.20 88.1 +92.24 +89.8 +30.63 +33.314 +58.67 +89.33 +92.27 +28.6 30.100 +89.93 +30.84 +58.5 +92.24 +58.35 +92.24 +12.15 +92.11 +89.57 +92.24 +13.4 +92.11 +13.79 87.47 +83.9 +59.1 +11.23 +89.94 +92.27 +30.84 +92.29 +89.93 +33.312 +89.87 +92.27 +33.312 +92.29 +89.93 +34.46 +89.94 +92.27 +34.46 +92.29 +89.93 +87.24 +89.50 +92.14 +33.69 +90.25 +92.29 +89.30 +92.24 +12.1 +90.36 +92.4 +92.14 +90.31 +92.4 +91.6 +92.27 +92.24 +57.4 +12.15 +69.3 +22.28 +89.125 +90.36 +92.4 +59.23 +37.111 +92.11 +92.16 +69.4 +89.93 +89.105 +92.11 +92.24 +59.23 +92.4 +57.102 +92.14 +33.427 +90.31 +30.93 +12.1 +12.1 +92.24 +34.46 +92.14 +92.24 +56.31 +93.387 +93.169a +92.24 +23.99 +89.124 +89.126 +23.94 +92.27 +85.1 +83.23 +82.8 +92.24 +12.1 +92.27 +89.93 +33.347 +90.36 +92.4 +92.14 +92.4 +63.29 +89.122 +92.24 +25.43 +92.24 +93.387 +22.2 +89.139 +22.10 +89.139 +39.45 +89.139 +23.31 +89.139 +49.23 +89.139 +21.1 +89.139 +20.68 +64.14 +33.54 +91.15 +90.43 +92.6 +20.65 +63.1 +92.24 +67.142 +31.1 +64.12 +4.22 +20.72 +89.125 +13.8 89.5 +92.29 +59.23 +39.58 +89.76 +92.24 +25.43 +92.4 +89.23 +31.46 31.82 +90.21 +69.9 +23.99 +69.9 +23.88 +69.9 +12.28 +69.9 +12.44 37.56 +69.9 +67.41 +69.9 +67.62 +69.9 +12.44 37.61 +69.9 +1.13 12.46 +69.9 +1.18 12.47 +69.9 +92.12 +42.38 +58.37 +74.5 +92.4 +63.29 +89.122 +92.24 +25.43 +92.24 +12.1 +92.24 +89.119 +93.387 +93.169a +92.24 +12.9{N:001} +92.4 +72.2 +33.69 +89.119 +93.387 +69.3 +33.253 +33.266 +92.1 +92.24 +26.13 +92.1 +89.119 +12.18 +88.24 +90.21 +25.273 +92.1 +13.1 +78.2 +89.92 +68.55 +25.235 +92.24 +26.3 +92.1 +89.23 +25.6 +92.37 +92.1 +33.474 +13.1 +89.122 +92.24 +93.387 +90.36 +92.24 +11.25 +92.1 +92.24 +11.57 +92.1 +89.4 +58.10 +92.18 +58.67 +93.183 +92.27 +92.24 +35.53 +89.92 +92.24 +87.4 +89.92 +92.24 +34.44 +89.92 +92.24 +33.339 +89.92 +92.24 +53.14 +89.92 +92.24 +33.288 +92.27 +92.24 +10.20 +89.92 +89.3 +92.27 +92.24 +53.82 +92.24 +89.4 +58.10 +92.24 +13.1 +37.9 +59.23 +12.1 +33.362 +67.95 +92.24 +67.95 +72.6 +89.124 +69.3 +64.1 +90.21 +75.7 +92.24 +33.98 +92.24 +12.1 +89.23 +69.3 +59.23 +92.24 +89.3 +93.182a +92.29 +93.182c +69.7 +89.33 +58.67 +10.29 +93.7 +59.23 +36.40 +89.125 +89.5 +93.180 +33.131 +92.6 +10.29 +89.106 +89.106 +69.3 +92.24 +10.28 +92.24 +58.10 +92.29 +58.26 +92.24 +12.1 +89.125 +92.24 +58.26 +92.24 +33.288 +31.1 +86943 10.29 +89.23 +33.288 +92.24 +33.98 +92.29 +67.33 +92.24 +67.1 +92.29 +15.81 +89.93 +13.104 +92.24 +93.329 +10.42 +89.94 +69.3 +86962 89.125 +89.93 +93.311 +23.50 +23.50 +90.16 +92.22 +93.180 +92.24 +10.20 +92.4 +89.23 +67.129 +23.52 +69.7 +42.8 +92.12 +88.1 +89.139 +88.116 +89.59 +92.24 +89.8 +30.92 +30.63 +92.24 +12.1 +13.89 +69.3 +89.25 +42.11 +89.125 +89.25 +92.24 +33.312 +33.69 +92.11 +90.21 +92.24 +67.102 +37.25 +92.24 +67.116 +87006 33.54 +92.24 +93.157a +25.43 +89.124 +92.24 +93.148 +88.198 +91.7 +92.14 +33.69 +69.15 +88.21 +89.111 +92.24 +12.1 +69.3 +13.107 +89.23 +92.24 +93.266 +33.69 +88.76 +71.8 +92.27 +88.76 +89.92 +88.80 +71.8 +92.27 +88.80 +89.46 +89.50 +69.3 +92.24 +25.1 30.58 +69.7 +92.24 +68.61 +89.125 +92.24 +88.76 +12.1 +89.23 +33.69 +92.24 +33.53 +92.24 +93.373 +90.21 +89.57 +92.37 +92.29 +13.83 87.38 +92.6 +89.59 +28.51 +90.6 +92.6 +92.24 +76.1 +92.1 +89.92 +89.59 +33.207 +92.24 +33.126 +92.1 +83.13 +63.2 +92.24 +9.22 +89.46 +89.50 +92.27 +25.1 30.58 +88.76 +89.94 +92.27 +25.1 30.58 +88.226 +89.50 +33.69 +92.1 +92.15 +89.135 +33.431 +89.23 +92.24 +30.57 +92.11 +92.14 +39.18 +91.14 +9.1 +89.128 +92.14 +13.4 +92.6 +92.24 +33.413 +92.24 +12.1 +69.15 +33.69 +92.24 +58.12 +92.24 +58.11 +92.15 +92.1 +42.29 +61.9 +89.139 +69.11 +87122 92.24 +6.129 +30.122 +92.24 +2.18 +89.142 +92.24 +58.31 +79.92 +42.29 +6.118 +89.136 +87135 89.57 +65.1 +89.136 +87139 89.57 +87.71 +89.94 +90.26 +92.24 +12.1 +25.1 30.58 +28.51 +92.24 +88.173 +89.92 +28.26 +92.24 +74.2 +92.11 +25.176 +89.84 +78.3 +25.167 +9.21 +88.173 +42.36 +89.57 +20.31 +89.93 +89.59 +28.26 +92.24 +57.30 +92.24 +14.49 +92.11 +90.57 +9.21 +88.76 +92.27 +77.4 +89.57 +14.49 +92.27 +89.93 +33.312 +92.4 +69.3 +87184 84.4 +93.172 +89.125 +89.93 +84.4 +11.37 +64.12 +89.93 +83.13 +92.24 +93.388 +33.69 +33.131 +92.24 +69.3 +11.12 +92.1 +11.12 +92.1 +89.92 +92.24 +69.3 +25.43 +25.43 +89.87 +13.104 +83.13 +92.24 +80.1 +83.5 +33.69 +92.11 +69.3 +11.12 +92.1 +92.7 +83.2 +33.131 +9.4 +12.1 +23.88 +89.94 +93.147 +33.83 +90.24 +92.24 +93.182b +89.67 +13.1 +92.24 +60.2 +92.24 +11.58 +93.182b +64.12 +92.24 +2.28 +92.24 +1.69 +92.24 +63.22 +21.27 +89.23 +33.98 +68.22 +89.92 +67.72 +90.45 +12.9{N:001} +37.9 +92.24 +1.39 9.22 +89.93 +64.14 +33.281 +93.147 +89.131 +87262 12.9{N:001} +12.8{N:001} +13.92 +92.4 +10.29 +71.14 +64.12 +93.585 +13.48 +89.92 +71.14 +64.12 +93.454 +64.4 +89.50 +92.14 +33.69 +90.21 +11.37 +92.24 +69.3 +68.66 +88.13 +57.56 +34.46 +89.94 +34.46 +92.24 +89.25 90.16 +31.85 +89.124 +93.182b +68.66 +33.333 +34.46 +78.51 +33.333 +69.3 +13.16 +87303 89.33 +69.3 +89.77 +31.85 +89.125 +64.12 +89.77 +42.11 +15.228 25.182 +92.24 +2.24 +92.24 +15.229 25.183 +64.14 +33.54 +91.13 +85.32 +83.13 +93.582b +2.24 +15.229 +89.92 +2.21 +88.306 +87328 92.24 +31.85 +90.57 +92.11 +69.3 +25.194 +11.23 +91.6 +92.24 +25.8 +92.24 +92.2 +26.3 +89.92 +92.24 +33.171 +90.58 +92.24 +12.1 +90.36 +92.11 +89.57 +21.25 +89.23 +33.262 +92.11 +90.21 +25.46 +12.1 +90.65 +89.125 +69.3 +89.8 +28.18 +89.23 +28.13 +92.24 +92.24 +12.1 +34.46 +89.92 +92.24 +57.4 +76.21 +68.60 +92.24 +34.46 +92.24 +12.1 +69.3 +36.18 +89.23 +67.66 89.55 +33.55 +93.387 +89.48 89.57 +34.46 +59.23 +92.24 +31.102 +89.23 +93.266 +33.61 +90.21 +92.24 +34.46 +92.24 +89.77 +33.55 +92.24 +42.7 +9.1 +23.88 +89.76 +87403 89.124 +92.24 +89.77 +31.102 +34.46 +61.10 +33.69 +69.3 +33.69 +83.13 +92.24 +26.3 +92.6 +92.14 +15.101 +84.22 +92.24 +1.11 +89.106 +89.106 +93.387 +15.175 +89.139 +92.14 +15.107 +84.22 +92.24 +1.20 +89.106 +89.106 +93.387 +89.121 +23.121 +15.176 +89.125 +92.14 +33.69 +83.26 +92.6 +92.24 +33.98 +85.1 +83.13 +92.24 +33.74 +92.6 +89.92 +83.13 +92.24 +26.3 +92.6 +89.106 +89.106 +92.24 +33.98 +92.24 +31.102 +92.27 +33.256 +90.21 +89.67 +33.274 +90.10 +92.24 +33.74 +92.6 +12.9{N:001} +93.169a +89.92 +31.35 +83.13 +92.24 +26.3 +92.6 +90.21 +92.24 +12.1 +92.11 +23.94 +89.121 +23.121 +21.27 +89.23 +26.3 +31.102 +89.48 +34.46 +89.87 +33.74 +33.274 +89.48 +21.25 +89.23 +33.69 +92.24 +33.53 +59.23 +92.24 +31.102 +90.23 +92.11 +69.3 +25.194 +89.23 +69.3 +13.69 +58.42 +87511 93.172 +87513 11.40 +89.23 +92.24 +58.31 +12.9{N:001} +59.23 +57.104 +90.41 +59.23 +92.24 +33.176 +92.11 +89.23 +59.23 +71.8 +92.27 +33.176 +92.24 +33.126 +12.9{N:001} +21.27 +89.127 +92.16 +33.176 +90.23 +92.27 +69.3 +31.102 +89.94 +92.16 +31.102 +92.27 +69.3 +33.212 +89.94 +92.16 +33.212 +89.120 +33.256 +89.94 +92.16 +33.256 +89.67 +69.3 +15.66 +87559 33.54 +78.13 +67.3 79.10 +92.24 +8.49 +92.24 +33.215 +88.1 +89.125 +69.3 +59.23 +36.15 +92.24 +33.217 +89.23 +93.147 +33.69 +12.9{N:001} +92.14 +31.35 +92.24 +24.57 +92.4 +89.46 +92.24 +31.102 +89.77 +24.57 +89.94 +92.24 +24.57 +89.76 +33.98 +93.387 +89.125 +33.69 +69.3 +69.3 +33.212 +89.128 +84.22 +63.2 +92.24 +9.22 +15.40 +92.24 +33.104 +92.11 +89.92 +84.16 +92.24 +80.6 +92.24 +1.39 +92.24 +33.9 33.98 +92.11 +89.125 +33.69 +69.3 +93.182b +69.11 +28.1 +60.46 +33.59 93.266 +33.69 +92.1 +88.164 +92.7 +90.9 +69.3 +11.55 +90.9 +11.55 +32.49 +88.177 +92.7 +89.94 +93.147 +25.163 +87640 33.69 +27.1 +92.24 +92.1 +69.3 +27.41 +28.35 +13.48 +92.24 +92.1 +69.3 +33.180 +89.124 +90.58 +92.24 +93.182b +33.69 +63.1 +92.24 +67.186 +16.19 +92.24 +8.30 +92.1 +90.58 +11.55 +36.23 +89.92 +33.455 +89.50 +33.69 +69.15 +31.63 +92.24 +12.1 +92.24 +11.12 +92.11 +69.3 +13.107 +89.23 +89.93 +92.1 +93.183 +58.67 +89.3 +10.29 +93.7 +10.2 +93.70 +69.3 +31.63 +92.24 +12.1 +92.24 +11.12 +92.11 +92.27 +28.6 30.100 +89.139 +69.11 +28.1 +90.23 +93.142 +92.14 +33.69 +92.24 +33.53 +89.86 +33.169 +92.24 +12.1 +90.31 +92.24 +93.182b +12.9{N:001} +92.24 +53.79 +92.6 +20.61 +92.24 +6.114 +92.6 +20.56 +89.92 92.1 +85.66 +58.50 +89.93 +20.66 +92.24 +23.88 +92.1 +89.125 +92.14 +33.69 +92.11 +92.24 +28.40 +13.92 +92.3 +60.44 +9.1 +92.18 +69.3 +53.61 +53.61 +92.24 +93.56 +89.50 +61.9 +89.93 +67.136 +92.24 +67.38 +67.1 +63.22 +89.8 +30.92 +88.66 +91.5 +89.124 89.94 +89.65 +88.66 +67.130 +89.25 89.77 +42.11 +89.32 +92.24 +88.66 +67.130 +13.3 +88.66 +89.50 +92.14 +92.27 +25.9 +93.182b +92.29 +69.3 +57.60 90.61 +89.124 +92.24 +30.93 +57.60 90.61 +89.94 +92.24 +63.21 +27.51 +87789 33.54 +90.90 +92.11 +92.24 +12.1 +12.33 +30.19 +8.23 +92.24 +69.3 +24.41 +89.92 +8.24 +92.24 +69.3 +32.1 +67.119 +92.24 +67.205 +67.186 +89.93 +93.91 +33.69 +13.48 +92.24 +6.113 +92.11 +89.57 +37.15 6.23 +89.92 +89.57 +37.15 6.24 +89.92 +89.57 +6.25 +89.92 +89.57 +38.20 +92.11 +32.44 +92.24 +8.23 +92.11 +92.24 +69.3 +24.41 +89.92 +92.24 +8.40 +92.11 +67.86 +67.86 +24.94 +89.50 +33.69 +69.15 +88.291 +89.49 89.59 +13.59 +69.3 +13.107 +89.125 +92.24 +92.11 +88.297 +92.24 +21.25 21.26 +92.24 +11.37 +89.57 +92.24 +88.164 +92.11 +87863 89.65 +92.24 +88.297 +92.11 +57.30 +1.39 +89.92 +92.24 +13.22 +92.11 +57.30 +11.37 +59.17 +78.28 +92.24 +59.32 +92.11 +87881 33.69 +92.7 +92.24 +11.37 +91.6 +87887 78.51 +78.52 +58.67 +92.1 +11.37 +53.74 +92.24 +35.21 +92.1 +33.357 +89.65 90.26 +89.62 +88.164 +92.1 +92.24 +10.1 +87904 21.27 +92.12 +63.20 +92.11 +89.23 +89.65 +92.24 +34.38 +92.11 +40.1 +1.39 +92.14 +92.24 +34.34 +89.131 +87920 23.88 +68.54 +74.28 +87924 89.65 +92.24 +53.23 +88.24 +89.93 +92.24 +63.12 +89.92 +89.65 +92.24 +3.47 +88.24 +89.93 +92.24 +3.49 +89.124 +89.65 +92.12 +92.24 +3.49 +19.36 +89.94 +92.6 +3.11 +58.67 +43.10 +83.9 +92.11 +87953 57.10 +92.24 +3.47 +92.24 +3.59 65.7 +92.24 +3.9 +13.48 +69.3 +33.370 88.194 +92.24 +3.49 +89.124 +89.65 +33.370 88.194 +69.3 +92.6 +92.24 +3.47 +35.32 +89.125 +92.24 +3.47 +92.6 +89.50 +33.69 +19.36 +3.49 +89.59 +92.1 +43.10 +72.12 +92.24 +31.97 +19.36 +89.124 +92.6 +92.24 +31.102 +13.29 +69.3 +88.208 88.209 +88.209 +89.125 +25.252 +89.23 +89.65 +92.24 +12.1 +92.24 +89.8 +58.8 +3.49 +69.3 +22.28 +69.7 +92.6 +22.28 +89.50 +27.5 +88.67 +89.92 +88.73 +12.1 +89.136 +90.57 +92.24 +13.59 +88.73 +89.136 +90.57 +92.6 +88.67 +12.1 +89.67 +68.11 +92.24 +88.67 +89.32 +89.93 +92.6 +19.18 +89.94 +89.93 92.30 +89.67 +69.3 +68.11 +92.24 +31.105 31.97 +43.10 +89.23 +74.2 +13.1 +92.24 +12.1 +67.55 +43.10 +92.11 +89.23 +89.65 +92.6 +89.121 +92.24 +89.8 +58.8 +3.11 +19.18 +89.87 +89.137 +58.8 +43.10 +84.22 +3.10 +59.17 +78.28 +92.29 +92.24 +89.8 +58.8 +43.10 +92.24 +57.4 +3.9 +89.23 +11.23 +69.3 +25.1 +92.7 +28.13 +92.24 +28.77 +92.29 +89.59 +69.3 +13.1 +88089 92.25 +32.31 +90.21 +27.52 +63.15 67.109 +63.15 +92.24 +93.182b +13.107 +67.119 +88100 92.24 +59.32 +92.24 +11.37 +13.110 +88106 61.9 +59.23 +93.182b +21.27 +64.14 +33.54 +15.84 +89.3 +93.582b +92.24 +21.23 +13.63 +53.10 +89.122 +93.157a +89.92 +92.29 +92.11 +92.24 +90.14 +92.1 +34.43 +88129 13.38 +92.24 +88.310 +92.11 +89.136 +89.4 +92.24 +33.217 +39.11 +90.44 +92.7 +89.136 +89.4 +92.24 +30.92 +25.45 +90.44 +92.24 +10.20 +89.23 +25.271 +92.24 +57.103 +89.92 +92.24 +33.312 +92.24 +12.1 +89.23 +64.13 +92.7 +67.9 +36.23 +92.24 +12.1 +89.124 +67.38 +88.76 +92.24 +92.29 +36.23 +88171 89.93 +92.29 +67.38 +36.23 +92.24 +92.9 +88.76 +89.59 +89.93 +92.11 +67.38 +88.76 +89.23 +13.125 +92.24 +12.1 +92.24 +59.23 +13.62 +36.23 +89.59 +92.24 +59.23 +88.76 +91.14 +78.22 +57.30 +89.92 +32.32 +89.92 +28.17 +12.1 +78.13 +32.23 +92.24 +30.110 +92.11 +89.92 +32.23 +92.24 +41.16 +92.11 +89.23 +92.14 +28.1 +26.14 30.5 +12.9{N:001} +89.139 +92.14 +33.297 +92.11 +13.48 +89.139 +92.14 +57.74 +92.11 +88228 57.154 +92.11 +89.33 +90.16 +92.11 +89.92 +90.4 +92.11 +89.92 +90.41 +92.11 +92.24 +59.23 +92.11 +92.24 +33.357 +67.95 +92.24 +67.95 +72.6 +89.50 +11.23 +33.168 +89.76 +92.24 +88.80 +92.24 +12.1 +92.7 +57.81 +92.24 +9.8 +92.7 +53.20 +23.88 +88.24 +92.24 +12.1 +25.94 +92.24 +73.5 +53.14 +92.7 +91.1 +69.3 +41.29 +92.24 +41.38 +92.29 +89.125 +13.53 +92.24 +58.72 +92.24 +30.5 +89.57 +92.24 +30.114 +92.7 +92.14 +92.24 +25.2 +92.24 +12.1 +92.24 +88.1 +89.92 +25.94 +89.92 +88.36 +89.23 +33.69 +89.76 +92.24 +57.103 +92.24 +88305 92.1 +59.23 +92.24 +58.67 +83.9 +92.7 +69.3 +88.210 +78.29 +92.27 +31.1 +71.21 +89.125 +31.1 +89.48 89.57 +92.24 +32.34 +64.12 +59.27 +92.24 +12.1 +57.89 +81.1 +31.85 +89.23 +64.15 +83.13 +60.10 +8.1 +59.1 +8.9 +57.1 +89.94 +92.24 +8.9 +59.23 +69.3 +92.24 +58.31 +42.5 +74.12 +61.9 +92.24 +59.1 +60.10 +11.34 +13.1 +89.119 +93.387 +89.94 +92.24 +88358 92.26 +63.17 +89.94 +90.65 +57.103 +58.40 +89.8 +92.24 +57.103 +92.24 +88369 92.4 +89.69 +33.461 +89.8 +92.24 +89.10 +92.24 +31.85 +89.69 +35.21 +89.76 +92.24 +35.19 35.21 +89.69 +92.24 +33.224 +89.76 +92.24 +33.224 +89.69 +92.24 +25.150 +89.76 +92.24 +25.150 +92.24 +57.96 +89.84 +57.106 +92.24 +35.12 36.1 +89.84 +68.63 +92.24 +88.76 +89.84 +25.116 +92.24 +25.43 +73.8 +88.203 +92.24 +88.110 +18.21 +92.24 +88.1 +92.24 +25.34 +90.59 +92.26 +25.41 +92.24 +87.4 +92.26 +68.70 78.35 +92.24 +25.74 +69.3 +88.250 +92.24 +25.73 +25.73 +92.24 +12.9{N:001} +35.27 +92.24 +25.59 +25.125 +92.24 +22.2 +25.175 +92.24 +33.178 +68.68 +92.24 +57.40 +92.24 +11.27 +57.98 +92.24 +34.57 +68.66 +33.470 +92.24 +39.45 +33.470 +89.92 +69.3 +33.471 +25.125 +89.108 +25.125 +25.138 +89.108 +25.138 +92.24 +58.31 +90.59 +92.26 +26.16 +69.3 +92.24 +88.208 88.209 +88.209 +89.125 +92.24 +87.61 +34.1 41.22 +69.3 +13.48 +32.31 +90.20 +92.25 +92.23 +20.18 88.106 +57.145 +20.18 88.106 +38.16 +30.47 +88.4 +90.20 +59.23 +9.1 +89.65 +71.2 +92.24 +90.16 +92.7 +90.60 +59.23 +9.1 +88.102 +25.45 +69.3 +92.25 +39.33 +89.125 +13.142 +71.6 +92.24 +38.10 +89.23 +33.54 +92.1 +39.33 +92.1 +38.19 +33.69 +12.9{N:001} +89.125 +89.67 +23.29 +92.24 +39.11 +92.6 +23.5 +92.11 +89.67 +23.39 +23.35 +92.11 +89.23 +92.29 +42.7 +3.67 +2.3 +25.199 +88537 92.24 +8.10 +92.11 +69.3 +39.57 +90.1 +92.24 +88.106 +89.125 +39.57 +89.76 +92.24 +88.1 +92.24 +88.106 +59.23 +9.20 +37.38 +37.17 +36.18 +89.23 +69.3 +13.69 +37.38 +89.131 +88563 90.1 +12.1 +89.94 +92.24 +13.69 +90.1 +12.1 +37.96 +88572 89.52 +92.24 +39.1 +92.24 +37.38 +92.24 +92.24 +12.1 +33.326 +39.18 +88583 92.24 +39.18 +92.25 +56.30 +57.125 90.63 +89.23 +92.24 +37.56 +13.1 +25.254 +69.3 +92.24 +88.1 +42.11 +89.125 +92.24 +88.106 +88601 25.1 +69.3 +25.252 +92.24 +37.38 +92.24 +88.1 +90.45 +88610 90.65 +33.354 +90.16 +92.11 +89.23 +12.1 +35.20 +58.67 +92.6 +89.57 +92.24 +88.1 +89.124 +89.67 +92.24 +88.106 +90.45 +25.252 +89.23 +69.3 +89.63 +92.24 +38.3 +38.3 +89.23 +12.1 +35.20 +58.67 +38.9 +89.57 +38.10 +92.24 +92.24 +88.106 +42.8 +89.47 +71.38 +36.18 +69.3 +88650 89.26 +92.24 +38.10 +89.125 +89.93 +89.26 +92.24 +26.13 +89.23 +88661 89.93 +57.182 +57.178 +89.23 +35.23 +12.1 +58.67 +89.57 +58.31 +92.29 +68.68 +57.153 +59.23 +92.24 +57.221 +92.24 +92.24 +57.182 +92.24 +57.182 +92.24 +92.24 +57.179 +92.24 +57.179 +92.24 +92.24 +25.251 +92.24 +25.251 +92.24 +92.24 +87.4 +92.24 +87.4 +92.23 +92.23 +71.25 +89.131 +88701 92.24 +92.26 +25.43 +89.23 +92.24 +25.43 +92.24 +58.37 +33.55 +59.33 +89.23 +92.24 +69.3 +88.276 +69.3 +20.82 +69.3 +57.232 +69.3 +25.20 +89.92 +89.65 +92.12 +58.37 +33.330 +89.76 +92.24 +33.98 +92.29 +63.8 +89.76 +92.24 +25.43 +92.24 +11.89 +92.6 +64.12 +92.10 +92.24 +25.43 +92.24 +11.89 +88.106 +69.3 +90.47 +89.50 +59.32 +33.55 +92.24 +25.43 +89.93 +28.1 +92.29 +92.24 +67.1 +90.21 +67.1 +67.20 +92.7 +68.54 +23.66 +23.74 +89.23 +67.38 +67.61 +92.4 +92.24 +21.26 +64.18 +88771 31.102 +92.24 +67.192 +67.118 +89.94 +92.24 +67.186 +67.21 +89.50 +85.44 +92.24 +42.11 +92.24 +88.125 +89.94 +49.1 +92.24 +6.29 +92.24 +14.36 +64.12 +13.8 +14.40 +88.50 +41.11 +69.3 +88.287 +89.92 +88.283 +69.3 +88.273 +89.92 +88.272 +69.3 +39.22 +89.92 +88.162 +89.125 +49.1 +92.24 +12.9{N:001} +93.169a +93.387 +88815 92.24 +26.7 +30.47 +69.3 +90.45 +89.57 +25.20 +88823 92.24 +74.26 +92.24 +31.104 +34.53 +69.3 +89.57 +33.444 +30.16 +89.136 +88834 31.85 +23.1 +58.28 +89.136 +92.24 +74.26 +3.29 +23.1 +92.24 +23.1 +92.24 +69.3 +23.1 +69.3 +88.195 +89.94 +92.24 +69.3 +23.1 +92.24 +23.1 +69.3 +56.30 +89.23 +92.24 +12.1 +92.11 +34.53 +92.6 +92.14 +13.4 +92.24 +56.30 +92.20 +46.5 +92.24 +57.4 +87.56 +13.30 87.56 +88874 87.56 +89.94 +13.29 +89.23 +74.5 +92.24 +12.9{N:001} +76.20 +92.11 +91.1 +89.136 +88886 30.99 +67.186 +78.29 +67.186 +89.136 +88892 30.99 +59.23 +67.186 +59.27 +83.13 +92.24 +57.4 +26.14 +31.45 +92.24 +87.12 +92.24 +67.178 +12.9{N:001} +87.12 +89.92 +92.24 +23.1 +12.9{N:001} +23.1 +89.23 +33.349 +92.24 +12.1 +89.92 +92.24 +69.3 +23.1 +12.9{N:001} +69.3 +23.1 +89.92 +33.349 +92.24 +12.1 +89.23 +92.23 +92.4 +92.25 +23.88 +89.92 +92.23 +92.25 +23.99 +89.23 +89.103 +89.67 +23.88 +92.24 +12.9{N:001} +23.88 +89.103 +89.67 +23.99 +92.24 +12.9{N:001} +23.99 +89.50 +89.103 +89.67 +23.88 +89.103 +89.67 +23.99 +92.24 +12.9{N:001} +58.67 +89.23 +89.57 +92.29 +93.387 +23.99 +89.87 +23.93 +89.59 +89.102 +23.121 +89.102 +23.88 +37.50 +89.94 +92.6 +92.15 +56.30 +92.24 +11.23 +92.6 +89.139 +91.12 +92.6 +92.15 +88.195 +92.24 +11.23 +92.6 +89.23 +59.23 +85.18 +92.24 +7.63 +92.24 +12.1 +89.23 +33.54 +23.88 +92.1 +33.69 +12.9{N:001} +90.21 +92.1 +53.61 +59.23 +53.61 9.16 +89.92 +59.23 +9.18 +33.274 33.359 +92.24 +12.1 +89.46 +89.50 +59.27 +92.4 +89.6 90.24 +92.25 +57.228 +90.51 +92.24 +12.1 +89.50 +67.130 +92.26 +56.30 +89.125 +92.29 +30.75 +89.126 +92.24 +69.3 +85.32 +92.24 +11.23 +25.183 88.307 +89.139 +88.306 +32.4 +89.92 +31.46 31.82 +89.119 +12.9{N:001} +93.169a +90.21 +92.23 +53.39 +89.26 +92.25 +89.131 +89050 92.24 +31.1 +92.12 +53.39 +13.1 +92.30 +53.39 +89.23 +89.65 +89.26 +5.7 +92.24 +11.23 +92.6 +25.274 +67.130 +89.8 +25.43 +41.11 +69.3 +92.24 +5.7 +92.6 +92.30 +20.31 +90.36 +92.27 +93.387 +23.99 +89.50 +69.3 +33.400 +92.7 +92.24 +65.20 +89.23 +69.3 +13.1 +92.24 +37.64 +92.24 +12.1 +23.3 5.7 +89.92 +23.34 +89.125 +88.13 +89.92 +25.248 +89.92 +25.123 +89.119 +12.18 +88.24 +89.23 +92.24 +89.5 +92.29 +35.27 +92.24 +93.387 +25.94 +92.24 +12.1 +89.92 +87.7 +92.24 +9.1 +89.46 +89.50 +89121 92.24 +92.24 +22.42 25.248 +89.92 +92.24 +92.24 +74.15 +92.24 +90.41 +92.26 +69.3 +89.31 +5.7 +20.55 +92.24 +42.12 +92.24 +12.1 +89.136 +59.23 +53.29 +89.136 91.2 +88.106 +92.24 +9.1 +92.24 +89.76 +25.183 88.307 +23.1 +88.4 +92.24 +69.3 +23.1 +5.14 +69.7 +23.34 +6.197 +69.7 +89.76 +92.27 +92.24 +11.23 +92.6 +25.182 +92.6 +31.85 +92.27 +89169 89.113 +92.10 +31.1 +83.33 +92.24 +12.1 +25.119 +92.24 +69.3 +56.30 +92.25 +89.5 +92.27 +30.114 +89.124 +89.67 +92.24 +31.37 +23.1 +56.31 +89.33 +69.3 +89.3 90.16 +31.85 +89.94 +59.23 +92.27 +69.3 +89.3 90.16 +31.85 +88.289 +58.67 +89202 71.25 +92.4 +92.24 +74.2 +92.24 +74.24 +92.24 +74.22 +25.177 +89.92 +69.3 +92.25 +25.90 +59.27 +92.4 +92.24 +11.89 +25.90 +89.57 +92.24 +65.20 +89.60 +74.15 +89.23 +89227 92.24 +93.387 +69.3 +92.25 +25.90 +89.125 +64.14 +33.54 +92.24 +33.389 +92.24 +33.389 +92.6 +13.122 +90.57 +92.1 +89.23 +59.7 +33.66 +89.57 +92.24 +92.5 +33.224 +33.54 +89.59 +89.76 +92.24 +25.174 +89.92 +89.76 +92.24 +25.150 +92.24 +33.54 +92.24 +25.59 +90.65 +89265 92.24 +12.1 +92.24 +25.174 +89.92 +92.24 +25.150 +90.51 +92.7 +92.24 +58.31 +26.16 +83.9 +92.26 +89.8 +93.387 +93.169a +89.59 +31.23 +89.84 +63.4 +33.74 +33.357 +92.24 +12.1 +89.92 +12.12 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.47 +34.53 +92.26 +64.14 +89.93 +92.24 +93.387 +34.53 +89306 89.57 +33.357 +92.24 +12.1 +89.23 +33.69 +93.387 +35.20 +53.51 +13.48 +90.36 +72.2 +12.1 +89.57 +92.24 +28.44 +92.24 +33.288 +92.24 +10.20 +89.94 +92.24 +11.37 +89.28 +88.76 +33.357 +92.24 +12.1 +64.14 +33.54 +89338 33.274 33.359 +92.6 +83.9 +11.37 +89.92 +92.24 +33.126 +92.6 +33.111 +89.92 +89.97 +33.69 +11.37 +25.122 +89.108 +92.24 +11.12 +92.11 +89.92 +89.97 +59.23 +92.24 +11.37 +33.354 +92.24 +12.9{N:001} +89.92 +33.354 +92.11 +59.23 +92.24 +11.55 +89.92 +89.97 +93.147 +33.69 +85.1 +92.24 +10.33 +92.24 +93.166 +89380 92.24 +13.81 +37.54 +11.37 +90.23 +92.11 +11.37 +25.59 +89389 92.24 +12.1 +92.24 +25.59 +59.37 +92.7 +78.44 +25.123 +89.92 +25.248 +89.76 +92.24 +31.102 +89.57 +92.24 +57.24 +92.7 +89.5 +92.24 +25.59 +89.76 +76.1 +12.18 +88.24 +89414 11.23 +92.1 +31.46 31.82 +89.93 +92.37 +92.1 +89.6 +92.7 +90.21 +89.93 +92.37 +68.77 +13.1 +88.1 +59.37 +59.23 78.44 +92.24 +28.17 +74.5 +89.93 +92.26 +33.231 +89.124 +89438 33.61 +92.7 +63.15 +63.15 +89.61 +29.10 +92.7 +89.26 +92.24 +57.103 +92.24 +89450 92.1 +89452 92.24 +12.1 +89.57 +92.24 +58.67 +92.1 +35.23 +93.387 +93.169a +90.41 +92.24 +11.37 +53.85 +92.24 +33.217 +92.24 +12.1 +89.59 +13.3 +92.24 +53.16 +92.24 +11.37 +25.86 +88.26 +90.6 +12.18 +88.24 +89.50 +90.65 +92.24 +33.368 +89.119 +93.387 +93.169a +92.24 +89.7 +92.24 +12.1 +89.23 +69.3 +25.161 +33.70 +92.12 +92.27 +69.3 +42.17 90.47 +93.387 +90.4 +92.1 +89.57 +36.15 +11.37 +33.99 +89.92 +42.11 +89.76 +76.1 +33.477 +89.92 +33.480 +89.76 +76.1 +12.18 +89517 89.52 +92.1 +84.3 +93.480a +89.92 +83.19 +84.19 +92.24 +93.483 +33.199 +92.24 +33.217 +92.24 +93.387 +89.94 +61.9 +25.78 +33.215 +69.3 +83.5 +28.22 33.93 +93.387 +89.59 +69.3 +83.46 +92.20 +7.41 +45.1 +91.2 +64.14 +33.54 +90.79 +92.27 +69.3 +33.197 +89.6 +92.11 +89.92 +92.27 +69.3 +33.212 +32.5 +89.47 +89.93 +13.147 +92.24 +67.11 78.3 +92.24 +15.81 +84.18 +92.7 +89.124 +67.38 +67.130 +71.6 +90.65 +83.13 +92.24 +1.79 +92.29 +89.94 +25.18 +90.65 +92.24 +15.81 +84.18 +92.7 +67.131 +89586 67.167 +67.45 +71.8 +15.18 +84.16 +92.24 +93.586 +89.23 +25.59 +15.21 15.22 +34.50 +92.7 +89.87 +90.1 +92.7 +15.72 +83.2 +67.32 +92.7 +67.18 +67.109 +67.109 +25.114 +89.124 +67.39 +15.18 +84.16 +93.480a +35.19 +92.24 +11.27 +89.23 +30.97 +93.527 +89.92 +93.419 +57.101 +92.12 +90.45 +90.41 +92.24 +57.53 +92.24 +11.27 +92.24 +83.13 +93.480a +91.1 +30.97 +89.93 +71.27 +13.1 +92.11 +89.23 +89.30 +92.24 +12.21 26.10 +92.11 +57.98 +92.24 +11.37 +71.25 +89.93 +89.5 90.10 +92.24 +79.1 +35.22 +92.11 +89.50 +92.29 +68.22 +89.92 +15.189 57.87 +92.11 +92.24 +42.13 +92.29 +15.37 +84.29 +92.7 +84.16 +93.586 +89.94 +28.1 +90.21 +15.81 +84.18 +92.7 +89.80 +59.32 +88.70 +93.387 +15.81 +89680 11.23 +33.168 +90.4 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.92 +89.76 +92.24 +25.43 +92.24 +12.18 +92.7 +34.20 +92.1 +89.76 +92.24 +33.178 +90.36 +92.1 +90.58 +92.24 +12.1 +90.22 +21.23 +89.122 +92.24 +31.107 +83.13 +92.24 +93.486a +89.92 +92.24 +35.19 57.86 +92.1 +92.24 +90.41 +93.480a +25.86 +92.24 +11.27 +13.3 +89.59 +89.84 +25.123 +15.81 +84.18 +92.7 +89.76 +30.59 +12.1 +23.86 +92.7 +89736 92.24 +12.1 +92.24 +25.248 +90.60 +59.23 +92.7 +72.6 +89745 33.344 +92.7 +93.382 +92.24 +11.24 +92.4 +58.67 +53.67 +92.24 +11.32 +92.24 +83.13 +93.499 +89.59 +92.11 +34.53 +89.119 +12.9{N:001} +66.6 +92.24 +11.27 +89.92 +35.1 +92.11 +89.5 +71.8 +92.27 +92.7 +57.39 +42.9 +89.23 +89.93 +92.11 +13.3 +35.13 +59.1 +89.92 +92.1 +92.37 +33.20 +93.302 +89.92 +93.16 +92.24 +42.44 +92.1 +89.119 +93.387 +93.169a +92.18 +90.36 +92.24 +23.88 +92.1 +92.24 +92.25 +21.8 +21.8 +92.27 +25.100 +69.3 +92.1 +58.50 +89.125 +89.93 +59.23 +92.24 +11.32 +92.24 +11.37 +89.93 +92.24 +89.4 +7.2 +92.11 +11.32 +33.20 +93.119 +92.24 +25.45 +92.1 +92.27 +13.4 +61.8 +92.24 +93.415 +90.59 +93.387 +33.20 +93.253g +92.18 +78.3 +42.47 +90.41 +92.7 +33.20 +93.26 +89.92 +93.178 +92.24 +11.57 +92.1 +89.92 +37.118 +92.1 +92.18 +13.1 +28.31 +83.9 +92.24 +53.74 +92.27 +89.93 +67.17 +92.1 +13.3 +89.119 +93.387 +33.20 +93.21 +92.24 +25.45 +92.1 +89.119 +12.9{N:001} +33.20 +93.290 +92.24 +42.44 +92.4 +89.119 +93.387 +89.92 +93.346 +92.24 +25.45 +92.1 +33.20 +93.31 +92.24 +73.4 +89.119 +93.387 +33.20 +92.24 +89.3 +92.24 +93.39 +33.20 +93.146 +92.24 +11.57 +92.1 +33.20 +92.24 +89.3 +92.24 +93.273 +92.24 +13.1 +89.119 +12.9{N:001} +33.20 +93.366 +89.92 +93.367 +92.24 +42.47 +89.119 +12.9{N:001} +33.20 +93.295 +92.24 +25.45 +92.18 +78.3 +42.47 +89.119 +12.9{N:001} +33.20 +93.317b +92.24 +30.93 +89.119 +12.9{N:001} +89.92 +92.24 +10.16 +92.11 +89.92 +92.1 +33.20 +93.51 +93.381 +93.124b +93.293 +93.123 +89.92 +92.24 +89.107 +92.11 +11.23 +33.20 +93.380 +89.92 +93.175 +93.276 +89.92 +92.24 +10.50 +92.11 +89.92 +93.287 +89.92 +92.24 +89.107 +92.11 +59.23 +11.27 +33.20 +92.26 +89.84 +34.62 +88.24 +33.20 +92.7 +92.24 +11.32 +59.23 +92.24 +93.387 +89977 11.23 +33.168 +92.7 +24.32 27.58 +92.24 +92.24 +39.13 +89.92 +92.24 +25.181 +89.137 +92.24 +33.236 +92.27 +92.6 +27.12 +13.9 +89.87 +34.41 +89.122 +92.11 +89.23 +92.24 +64.2 +92.24 +12.9{N:001} +92.4 +93.387 +69.3 +37.25 +89.125 +92.24 +92.25 +25.28 +89.93 +89.76 +92.24 +33.30 +89.92 +33.366 +31.12 +92.24 +26.3 +92.24 +31.34 +91.1 +92.24 +92.7 +36.15 +90.59 +59.23 +28.23 +89.50 +89.27 90.23 +92.7 +25.125 +89.124 +25.1 +92.7 +32.33 +13.1 +90.23 +92.24 +88.1 +89.94 +88.32 +90.23 +92.24 +88.106 +89.87 +92.24 +12.1 +92.24 +25.248 +39.53 +92.24 +12.34 93.330 +37.8 +92.24 +37.8 +92.7 +67.111 +67.111 +92.24 +25.89 88.66 +92.24 +12.9{N:001} +92.4 +93.169a +90.60 +92.7 +33.20 +92.7 +93.361 +92.24 +42.44 +92.1 +89.92 +93.235b +89.92 +93.163b +89.92 +93.354 +92.24 +11.57 +92.1 +33.20 +92.7 +92.1 +93.357 +92.24 +33.61 +92.24 +33.48 6.63 +89.119 +12.9{N:001} +33.20 +92.7 +93.83c +92.24 +34.60 +92.1 +89.92 +59.29 63.1 +92.24 +11.32 +33.20 +92.7 +93.122b +92.24 +57.231 +92.24 +1.89 +89.92 +93.220 +92.24 +11.23 +90115 92.24 +74.5 +92.7 +74.19 +89.8 +92.24 +33.217 +92.1 +89.92 +92.24 +33.258 +93.169a +93.387 +89.8 +28.38 +28.77 +67.133 +67.133 +33.121 +89.124 +28.36 +67.38 +89.95 +89.76 +33.54 +33.462 +89.8 +33.326 +92.24 +67.96 +12.1 +89.57 +36.15 +31.102 +90.59 +59.23 +92.24 +11.37 +28.26 +58.50 +32.33 +12.1 +90.4 +93.169a +93.387 +92.27 +92.24 +87.4 +67.95 +92.24 +67.95 +90168 72.6 +93.294a +33.314 +53.74 +93.387 +93.169a +89.76 +30.59 +12.1 +89.92 +93.353b +92.24 +11.23 +92.24 +11.32 +92.24 +12.1 +92.24 +85.1 +83.13 +93.506 +53.44 88.26 +89.119 +93.387 +93.169a +33.314 +11.27 53.46 +89.107 +59.23 +92.24 +33.176 +92.24 +9.19 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +83.13 +59.23 +80.1 +92.11 +89.92 +92.4 +92.7 +57.103 88.66 +89.92 +22.42 25.248 +90.15 +12.1 +12.12 +92.4 +89.92 +12.9{N:001} +93.169a +93.387 +25.100 33.349 +92.24 +12.1 +67.88 +89.36 89.6 +92.7 +89.27 90.23 +92.24 +57.103 +92.24 +12.1 +92.24 +57.71 +92.7 +89.119 90.6 +93.387 +93.169a +89.33 90.21 91.15 +89.5 +59.23 +59.59 +89.119 +92.11 +89.5 +58.28 +33.98 33.99 +89.92 +58.28 +28.17 32.16 +78.53 89.34 +92.24 +33.262 33.264 +92.24 +93.387 +28.44 +83.9 +92.7 +89.52 +92.7 +69.3 +13.21 57.37 65.51 +89.5 +92.23 +57.103 +25.63 +92.24 +28.38 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.27 +89.93 +31.91 +92.7 +67.119 +67.66 +33.433 +67.33 +92.24 + +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +31.87 +92.24 +12.1 +90.4 +92.27 +33.312 33.315 +89.57 +34.5 +92.24 +12.15 +92.11 +93.169a +93.387 +92.24 +12.9{N:001} +92.4 +90308 11.23 +33.168 +92.7 +89.76 +92.24 +33.126 9.19 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.59 90.22 +92.24 +58.31 +33.69 +59.23 +89.92 +69.3 +13.69 +83.9 +92.7 +39.13 +89.124 +13.1 +75.5 +89.5 +92.24 +58.31 +30.5 +89.92 +89.5 +92.24 +58.31 +30.67 31.3 +89.23 +11.23 +92.1 +28.42 +92.1 +89.6 +92.7 +90.1 +92.24 +93.385 +90.21 +33.447 +83.9 +92.7 +13.69 +90358 33.140 +92.29 +89.33 +59.27 +92.7 +33.69 +89.104 +92.1 +58.67 +93.294a +89.104 +92.1 +93.33 +89.104 +92.1 +93.211 +89.104 +92.1 +93.387 +63.23 +92.24 +93.387 +69.15 +93.294a +20.76 +89.28 90.36 +92.7 +89.139 +90.23 +92.24 +33.126 +93.294a +53.41 +25.100 +90.21 +92.23 +92.7 +53.41 +89.131 +90398 93.222 +89.92 +93.83c +90403 92.12 +33.69 +90.21 +90.23 +92.24 +92.2 +33.126 +53.41 +90412 53.41 +89.93 +92.24 +93.347 +10.8 +61.14 +69.3 +29.6 +89.65 +92.12 +58.37 +53.41 +89.23 +15.66 +92.1 +93.387 +69.3 +53.41 +89.125 +33.215 +69.3 +89.76 90.10 +28.8 +33.98 33.99 +90438 76.27 +92.24 +6.27 +92.24 +93.387 +89.23 +89.136 +92.24 +33.260 33.98 +92.24 +92.24 +6.27 +92.24 +21.32 +32.57 +13.1 +89.136 +92.24 +21.18 21.27 +92.4 +76.1 +12.1 +13.1 +89.23 +33.54 +20.31 +92.24 +28.8 +92.24 +32.35 +89.92 +92.24 +32.26 +92.24 +32.27 +31.100 +83.6 +32.35 +83.6 +27.22 +83.6 +33.441 +92.24 +41.38 67.143 +92.29 +69.12 +32.59 +92.24 +12.1 +92.24 +28.8 +92.24 +41.38 +89.23 +89.32 +89.26 +92.24 +32.32 +92.24 +12.1 +69.3 +27.18 28.1 +92.24 +41.38 +89.76 90.8 +92.24 +32.32 +92.24 +12.1 +30.97 +92.24 +12.1 +89.76 +92.24 +32.57 +92.24 +33.258 +21.27 +92.24 +31.102 31.85 +89.32 +89.102 +93.172 +33.477 +33.163 +89.102 +11.40 11.90 +32.32 +27.34 +89.124 +92.4 +33.256 +93.387 +20.76 +89.104 +93.172 +25.181 +89.104 +11.37 +32.57 +89.124 +92.11 +92.24 +33.314 +89.102 +93.172 +89.102 +11.40 11.90 +93.387 +12.1 +76.1 +89.92 +12.1 +32.32 +89.33 +92.24 +32.55 32.58 +92.24 +12.1 +32.33 +92.24 +9.1 +13.1 +89.92 +92.24 +79.69 +92.24 +12.1 +76.11 +92.24 +9.1 +89.23 +11.23 +30.1 +92.24 +33.313 +92.7 +90.21 +69.3 +59.1 +32.35 +89.4 +26.7 +69.3 +59.1 +74.4 +69.3 +59.1 +87.27 +89.125 +92.24 +32.58 +92.24 +41.38 +30.86 30.92 +92.24 +12.1 +89.59 +25.194 +92.24 +32.35 +89.92 +92.24 +79.69 +92.24 +41.38 +30.86 30.92 +92.24 +12.1 +89.59 +25.194 +92.24 +76.11 +89.92 +92.24 +87.59 +92.24 +1.39 +89.92 +92.24 +88.195 +92.24 +69.3 +13.69 +30.86 30.92 +92.24 +12.1 +89.59 +92.24 +13.69 +76.26 +89.59 +90631 33.368 +59.24 +9.11 +83.33 +92.24 +12.1 +89.124 +89.25 89.3 +92.11 +92.7 +58.67 +89.119 +93.387 +93.169a +92.27 +13.48 +92.4 +90.15 90.7 +12.1 +32.32 +89.102 +34.46 88.13 +89.102 +53.44 +89.102 +37.128 +89.59 +64.14 +33.54 +92.24 +33.368 +89.5 +12.9{N:001} +33.368 +11.23 +89.92 92.1 +15.81 +84.18 +92.7 +15.81 +69.3 +90673 87.26 +33.98 +89.139 +28.8 +33.204 +92.7 +92.24 +90681 92.24 +12.1 +89.23 +69.3 +30.75 +92.12 +28.1 +83.9 +92.7 +89.131 +90692 93.169a +93.387 +89.93 +92.29 +20.76 +89.92 92.1 +13.8 +25.269 +89.92 +13.8 +25.251 +89.92 +13.8 +16.6 +78.3 +85.6 +89.112 +92.7 +89.92 +92.24 +33.98 +92.1 +89.92 +92.24 +33.258 +92.1 +69.3 +89.84 +33.304 33.306 +28.8 +33.98 +89.125 +89.84 +28.52 +12.18 +89.92 +76.1 +89.59 +92.24 +31.102 +92.7 +13.1 +69.3 +89.26 +32.37 +9.1 +89.125 +89.26 +76.1 +12.1 +89.124 +32.37 +33.70 +83.9 +92.24 +88.100 +89.124 +69.3 +32.37 +92.24 +67.143 +92.29 +69.7 +92.24 +37.56 +92.24 +67.143 +92.29 +92.24 +13.100 +89.125 +33.70 +12.1 +32.32 +90.23 +28.77 +92.24 +28.80 +92.27 +30.84 +92.24 +12.1 +67.17 +92.24 +67.143 +90.41 +87.4 +92.4 +92.27 +92.23 +92.24 +37.56 +92.24 +67.143 +92.29 +28.1 32.16 +89.23 +89.65 +28.1 32.16 +71.14 +69.3 +92.24 +12.9{N:001} +92.24 +79.18 +20.76 +89.125 +64.14 +33.54 +92.27 +8.23 +69.3 +24.1 +89.92 +8.24 +69.3 +24.52 +89.92 +90811 26.3 +9.1 +69.3 +30.17 +90816 77.3 +92.24 +12.1 +92.24 +25.43 +92.11 +90823 92.4 +28.38 +92.24 +12.1 +90.4 +92.24 +12.18 +89.23 +92.24 +12.18 +59.23 +27.34 +89.93 +92.24 +28.76 +92.24 +12.1 +89.23 +92.14 +9.1 +28.1 32.4 +92.24 +92.24 +9.1 +89.131 +90849 92.24 +26.9 +92.24 +9.1 +92.24 +83.13 +92.11 +61.9 +89.93 +92.24 +92.24 +12.1 +92.23 +28.1 32.16 +89.131 +90865 92.24 +12.18 +92.24 +12.1 +90870 69.3 +92.4 +92.24 +30.6 +92.24 +41.38 +57.125 +89.125 +92.24 +12.18 +92.24 +90.16 +92.24 +12.1 +89.59 +28.1 32.4 +92.24 +90.1 +92.24 +12.1 +57.102 +92.4 +92.27 +89.93 +33.70 +69.3 +89.76 +33.227 +9.6 +32.37 +33.99 +89.125 +89.76 +33.227 +12.18 +12.20 +12.21 +33.154 +90909 41.41 79.5 +9.1 +69.3 +31.51 57.125 +92.24 +92.24 +12.18 +92.24 +12.1 +89.23 +32.57 +92.11 +13.1 +90923 69.3 +74.5 +32.16 +89.33 +12.21 26.10 +27.44 30.109 +89.124 +92.24 +12.20 +30.109 +90934 59.23 +89.124 +92.37 +90.1 +92.23 +30.109 +89.23 +92.14 +28.1 32.16 +26.14 +12.9{N:001} +92.27 +33.298 +92.11 +89.124 +92.4 +26.14 +93.387 +57.1 +11.23 +92.1 +74.5 +69.3 +33.70 +92.7 +64.12 +41.40 +89.125 +64.12 +41.42 79.4 +64.12 +9.43 +89.119 +93.387 +5.19 +92.7 +23.35 +69.3 +5.7 +89.23 +67.129 +74.5 +91.11 +69.8 +67.128 +67.38 +74.5 +89.23 +67.128 +79.4 +13.1 +89.23 +89.35 +83.9 +92.7 +88.162 +89.92 +33.447 39.22 +69.12 +79.4 +13.1 +89.93 +89.8 +9.1 +41.11 +91000 67.31 +89.136 +33.69 +92.12 +92.1 +58.67 +93.294a +89.136 +58.37 +92.1 +93.33 +69.11 +9.1 +13.1 +91.7 +92.14 +13.1 +93.33 +89.94 +92.14 +13.1 +93.294a +35.20 +90.4 +92.27 +31.102 +64.12 +89.93 +59.27 +92.24 +12.9{N:001} +91032 92.1 +43.5 +93.33 +43.9 +89.125 +92.24 +12.1 +59.63 +89.52 +69.9 +92.24 +43.5 +13.1 +92.12 +69.9 +92.24 +43.9 +89.125 +92.24 +59.63 +12.1 +89.94 +92.24 +43.5 +89.92 +92.24 +43.9 +63.4 +13.1 +89.94 +59.27 +92.24 +57.4 +38.14 +57.125 +89.8 +92.24 +57.4 +42.47 +89.23 +58.67 +12.1 +42.44 +12.1 +1.96 +12.1 +42.34 +13.4 +89.8 +92.24 +57.103 +92.24 +12.1 +92.24 +91087 92.1 +64.12 +28.9 +45.10 +7.41 89.12 +85.32 +89.94 +58.37 +45.5 +89.124 +59.27 +27.58 +92.16 +45.5 +89.23 +92.23 +74.5 +89.12 +58.37 +85.32 +89.132 +92.24 +85.3 +92.27 +13.4 +93.169a +93.387 +89.124 +89.65 +92.12 +45.5 +83.46 +92.24 +7.41 89.12 +91123 2.29 +65.2 +3.60 +3.15 +3.58 +59.27 +92.24 +42.12 +28.28 +13.48 +89.23 +92.24 + +28.42 +89.33 +89.76 +2.3 +28.38 +89.92 +59.27 +92.24 +42.12 +58.30 +58.67 +92.24 +2.3 +92.37 +27.45 +89.65 +13.89 +92.12 +92.24 +42.12 +92.27 +45.5 +38.14 +57.125 +89.65 +92.12 +92.24 +42.12 +14.66 +38.7 57.69 +89.124 +92.37 +21.27 +89.124 +64.12 +61.9 +84.29 +2.3 +69.11 +28.1 +90.21 +7.15 +12.1 +13.1 +89.93 +92.24 +12.18 +92.24 +12.1 +89.119 +92.7 +85.73 +89.65 +92.12 +92.24 +7.15 +92.24 +12.1 +20.39 +20.39 +92.29 +92.24 +12.1 +89.23 +92.24 +7.15 +92.24 +12.1 +53.46 +13.1 +91207 13.1 +92.7 +92.23 +92.25 +31.12 +89.65 +92.12 +31.29 +32.33 +13.1 +83.9 +92.7 +89.5 +92.24 +41.38 +92.29 +32.55 +13.48 +89.59 +13.48 +32.33 +89.23 +92.24 +32.37 +92.24 +41.38 +92.29 +32.57 +90.20 +92.24 +12.1 +13.1 +91240 33.54 +92.24 +27.32 +92.24 +32.33 +13.8 +92.24 +88.270 +92.11 +89.93 +89.97 +12.9{N:001} +28.1 +92.24 +30.16 +92.24 +32.33 +90.21 +13.1 +65.37 +89.52 +92.23 +33.368 +90.23 +9.1 +89.23 +59.23 +92.7 +13.1 +89.69 +93.294a +89.69 +93.33 +89.69 +93.211 +89.69 +1.1 +89.69 +23.88 +89.69 +23.99 +89.69 +67.41 +89.69 +67.62 +59.23 +92.7 +89.94 +92.7 +93.387 +89.94 +93.387 +12.1 +61.9 +92.4 +31.1 +9.1 +64.12 +35.20 +93.387 +89.92 +37.39 +28.77 +12.1 +92.35 +89.98 +33.167 +89.5 +92.24 +37.39 +90.22 +31.87 +92.12 +13.7 +89.124 +92.1 +78.51 +79.125 +13.1 +90.22 +33.412 56.12 +90.1 +92.7 +89.139 +90.1 +9.6 +56.1 +89.125 91.11 +69.8 +92.3 +30.109 +89.23 91.1 +92.23 +92.3 +28.4 +89.125 +69.3 +89.5 +92.29 +56.34 +89.124 +92.24 +33.412 56.12 +92.1 +12.9{N:001} +13.4 +89.52 +69.3 +67.17 +67.1 +92.12 +56.20 56.30 +67.119 +71.14 +15.81 +92.24 +12.9{N:001} +92.27 +89.102 +14.39 28.36 +92.24 +28.75 +92.24 +14.53 88.125 +89.102 +28.36 +92.24 +30.57 +92.24 +26.3 +89.87 +67.47 +92.24 +33.354 +13.107 +59.27 +90.7 +92.24 +12.1 +91380 11.23 +92.29 +89.11 +90.23 +92.3 +89.92 +93.33 +90.38 +92.7 +89.59 +90.6 +92.4 +27.12 32.14 +92.24 +88.95 +78.29 +91397 33.61 +91400 92.22 +90.36 +92.24 +92.22 +88.216 +90.31 +92.24 +58.37 +89.23 +92.14 +92.6 +30.113 30.99 +89.94 +57.1 +92.14 +92.27 +69.3 +57.125 +89.124 +89.65 +91.12 +57.125 +92.15 +33.368 +64.12 +69.3 +57.125 +67.20 +25.80 57.22 +91430 67.20 +57.28 +89.120 +92.4 +37.64 +91.12 +71.28 +91.6 +37.64 +89.49 89.59 +89.93 +92.4 +92.7 +37.66 +89.23 +31.29 +92.24 +12.1 +92.4 +92.24 +53.74 +61.13 +28.65 +64.12 +23.116 +89.33 +24.15 +13.48 +92.24 +9.23 +89.102 +12.28 +89.102 +9.1 +92.4 +32.55 +90.38 +93.387 +89.124 +92.7 +32.31 +89.119 +93.387 +92.4 +74.25 +89.124 +92.7 +79.63 +92.7 +87.6 +89.124 +92.4 +87.72 +67.119 +92.24 +67.42 +67.42 +89.102 +23.29 +89.102 +23.39 +89.102 +49.24 +89.102 +19.7 20.27 +89.102 +15.25 85.80 +89.102 +42.47 +42.41 +92.24 +57.4 +8.30 +33.393 +33.470 +39.45 +25.171 +33.398 +33.168 +64.12 +79.53 +92.24 +1.39 +59.23 +79.53 +13.48 +67.119 +67.38 +69.3 +25.196 +92.7 +33.61 +92.29 +89.125 +64.12 +9.46 +92.1 +25.45 +33.231 33.418 +89.23 +89.67 +60.7 +36.5 +90.65 +89.5 +93.387 +91.11 +69.3 +59.1 +36.8 +89.23 +89.119 +93.387 +93.169a +89.76 +92.24 +33.217 +92.1 +92.7 +23.58 +89.50 +33.168 +92.7 +41.45 +92.1 +13.48 +89.26 +92.29 +91559 15.66 +92.7 +93.361 +92.27 +13.4 +92.1 +9.46 +25.45 +89.92 +31.87 +89.119 +12.9{N:001} +92.27 +92.7 +29.10 +92.24 +41.16 +92.1 +92.24 +89.119 +93.387 +93.169a +64.14 +83.8 +83.13 +59.23 +11.32 +33.224 +91588 64.12 +69.3 +15.81 +92.1 +84.18 +92.7 +88.217 +92.12 +89.124 +15.81 +67.110 67.56 +84.18 +92.7 +89.67 +92.24 +12.9{N:001} +30.58 +89.87 +27.2 +69.3 +92.24 +33.99 +92.24 +88.217 +89.125 +92.24 +74.1 +89.23 +69.3 +89.141 +33.99 +92.24 +37.64 +92.24 +12.1 +89.125 +89.141 +76.1 +92.14 +25.1 +90.10 +6.218 +15.81 +84.18 +92.7 +89.139 +89.84 +25.43 +89.95 +30.6 +88.59 +70.1 +33.212 +83.9 +92.7 +88.271 +89.93 +92.31 +88.271 +91648 69.8 +83.9 +92.24 +11.37 +89.52 +92.12 +10.54 +92.24 +10.14 +91658 91.12 +92.7 +88.216 +91662 89.92 +69.4 +89.126 +25.142 +89.49 +15.203 +84.4 +83.9 +92.7 +92.24 +92.24 +42.11 +92.29 +42.8 +89.23 +92.1 +89.136 +85.27 +92.24 +8.1 +89.136 +85.23 +92.24 +26.9 +67.20 +30.75 +64.12 +85.23 +92.24 +61.9 +92.29 +90.47 +89.119 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +15.123 +92.7 +89.92 +92.24 +92.2 +26.9 +89.105 +92.24 +76.1 +92.24 +12.9{N:001} +92.4 +93.169a +37.111 +92.24 +92.31 +92.24 +12.34 93.330 +89.57 +20.34 +92.24 +8.63 +89.59 +92.24 +26.9 +21.27 +67.33 +92.24 + +92.24 +12.9{N:001} +69.3 +88.4 +92.24 +33.368 +92.7 +69.11 +28.1 +90.21 +59.15 +5.11 +63.1 +92.24 +63.12 +5.12 +79.50 +92.24 +58.75 +88.237 +89.59 +13.1 +58.71 +63.12 +64.14 +13.1 +5.13 +89.23 +91.12 +92.24 +4.27 +92.4 +93.387 +53.19 +89.52 +51.1 +69.3 +90.10 +88.237 +58.75 +69.7 +90.10 +88.237 +88.105 +89.92 +88.108 +89.125 +90.10 +5.13 +88.42 +89.92 +72.2 +33.61 +92.7 +83.13 +92.24 +33.48 +69.3 +34.1 +88.274 +69.3 +91.10 +92.24 +88.274 +92.24 +41.38 +92.29 +89.139 +92.24 +25.23 +89.92 +25.25 57.239 +89.139 +53.64 +89.32 +89.46 +71.35 +84.4 +92.24 +41.38 +15.40 +89.124 +67.38 +33.61 +92.7 +89.62 +34.1 +89.67 +92.12 +11.23 +33.127 +13.1 +88.274 +89.139 +25.23 +89.139 +53.64 +89.139 +33.395 +89.139 +88.288 +89.139 +25.25 57.239 +92.24 +92.31 +69.8 +23.12 +89.23 +92.14 +92.1 +92.24 +11.10 +56.30 +69.12 +92.24 +11.11 +92.7 +56.30 +89.124 +92.24 +11.10 +92.24 +12.1 +56.30 +34.36 +92.24 +88.110 +89.121 +92.7 +92.37 +25.161 +91861 92.7 +56.2 +90.65 +90.33 +92.24 +58.37 +56.20 +83.35 +92.24 +11.20 +89.92 +69.4 +83.35 +92.24 +11.27 +89.139 +69.3 +28.1 +90.21 +92.24 +11.27 +92.24 +9.23 +37.49 56.30 +91886 89.65 +90.6 +92.7 +37.49 56.30 +92.24 +9.23 +65.19 +13.1 +56.2 +65.57 +69.11 +28.1 +90.21 +12.28 +56.20 +91902 41.19 +91.3 +91905 89.67 +41.19 +56.2 +90.65 +92.24 +88.195 +90.6 +92.24 +11.32 11.33 +92.29 +37.104 +89.60 +25.195 +92.7 +33.69 +69.11 +61.9 +13.70 +83.9 +92.7 +92.23 +28.9 32.35 +92.27 +74.5 +30.109 +89.143 +83.9 +92.24 +11.23 +92.11 +89.125 +11.23 +90.32 +11.23 +56.20 +91.12 +92.29 +83.35 +31.106 +91.6 +91946 67.20 +78.44 +13.22 +92.7 +13.1 +90.21 +56.2 +90.65 +90.32 +92.26 +91958 69.4 +89.126 +88.22 +91963 69.4 +89.126 +57.248 57.47 +89.125 +92.7 +88.22 +91970 57.248 57.47 +91.12 +92.29 +11.23 +89.139 +69.11 +28.1 +90.21 +11.20 +12.1 +37.64 +69.3 +57.138 +69.3 +31.67 +69.9 +88.274 +69.9 +53.64 +69.9 +88.277 +69.9 +88.281 +69.9 +88.280 +69.9 +57.233 +69.9 +25.23 +69.3 +88.288 +69.3 +33.395 +69.3 +57.239 +37.64 +12.1 +57.138 +91.12 +92.29 +92.12 +58.67 +89.125 +88.30 +89.125 +88.26 +89.125 +56.34 +89.119 +92.24 +33.126 +92.24 +12.9{N:001} +93.169a +93.387 +89.92 +89.119 +92.24 +12.18 +92.24 +12.1 +92.4 +59.23 +92.1 +71.1 +89.125 +69.3 +59.23 +65.44 +59.23 +92.1 +71.1 +89.125 +69.3 +92.1 +37.48 +90.1 +92.12 +92.24 +5.1 +92.24 +8.67 +89.92 +92.24 +8.67 +92.24 +5.1 +89.124 +92.24 +12.1 +89.102 +92.29 +89.102 +92.29 +13.100 +89.124 +92.24 +8.1 +69.3 +92.24 +88.271 +89.125 +92.24 +12.9{N:001} +89.92 +92.24 +12.9{N:001} +92.24 +8.1 +89.124 +92.24 +12.1 +89.102 +92.24 +12.9{N:001} +23.94 +89.102 +92.4 +23.94 +89.76 +92.24 +76.1 +92.11 +69.11 +28.1 +90.21 +92.24 +8.1 +92.7 +63.17 +93.387 +13.4 +89.50 +15.203 +92.24 +63.17 +92.24 +93.387 +13.9 +88.275 +63.17 +69.3 +13.107 +89.139 +69.11 +28.1 +90.21 +92.24 +34.22 +92.24 +88.275 +63.4 +8.1 9.8 +13.1 +89.23 +33.69 +13.51 +92.24 +60.11 +92130 8.4 +63.4 +89.124 +92.24 +34.22 +92.24 +12.9{N:001} +63.4 +26.9 +13.1 +13.161 +92.24 +88.271 +58.28 +88.290 +71.8 +92.27 +42.7 90.45 +9.1 +89.121 +92.24 +8.1 +85.1 +89.124 +92.24 +88.271 +90.23 +92.24 +57.4 +8.1 +88.289 +89.139 +69.11 +28.1 +90.21 +92.24 +8.1 +92.7 +7.15 +92.24 +89.119 +92.7 +88.24 +12.18 +13.1 +92.27 +90.65 +90.15 +12.1 +89.92 +69.3 +13.1 +92.25 +89.23 +37.131 +57.161 +91.6 +87.24 87.8 +92.24 +12.1 +89.76 +92.24 +8.1 +92.7 +92195 89.6 +92.27 +33.61 +88.4 +9.24 +34.70 +69.3 +24.73 +89.124 +89.26 +92.24 +88.271 +59.27 +92.24 +92.25 +10.54 +92212 89.92 +59.27 +92.24 +57.4 +10.53 +92218 92.24 +10.54 +92.24 +10.53 +92.24 +71.24 +13.136 +89.94 +64.1 +89.93 +92.24 +10.54 +92.24 +10.53 +92.24 +10.54 +92.24 +57.4 +8.1 +69.3 +37.48 +89.125 +92.24 +10.53 +89.94 +64.1 +89.93 +92.24 +10.53 +92.24 +57.4 +8.1 +69.3 +37.48 +89.125 +92.24 +10.54 +69.3 +57.47 +92.26 +92259 69.16 +71.8 +89.25 +31.15 +67.109 +67.109 +89.59 +67.81 +92.24 +33.178 +89.87 +67.55 +92272 92.24 + +92277 88.308 +92.7 +92.24 +12.34 93.330 +89.26 +92.24 +88.91 +92.7 +89.124 +92.29 +33.69 +89.8 +13.141 +69.3 +89.8 +33.326 +89.124 +25.1 +59.23 +9.1 +13.1 +64.12 +89.93 +92.3 +89.125 +59.27 +90.65 +57.4 +57.103 +90.16 +12.1 +89.104 +92.24 +61.9 +89.104 +92.24 +61.9 +89.124 +33.69 +92.24 +34.76 +89.92 +92.24 +10.61 +88.4 +92.11 +89.67 +68.11 +64.12 +89.93 92.1 +89.124 +89.65 +69.3 +88.83 +34.66 +89.23 +65.21 +13.1 +92336 64.18 +25.31 +89.124 +92.24 +34.66 +33.327 +69.3 +92.1 +89.125 +92.24 +12.9{N:001} +10.54 +89.122 +10.53 +69.3 +34.78 +89.124 +89.67 +92355 34.78 +68.11 +34.76 +89.139 +92.24 +10.53 +40.1 +89.92 +10.53 +10.54 +69.3 +34.78 +89.124 +92.24 +63.21 +33.69 +92.1 +69.3 +92.24 +12.9{N:001} +89.65 +92.12 +11.23 +92379 10.54 +11.19 +89.92 +92.29 +31.17 +85.67 +89.108 +92.11 +69.3 +34.78 +92.11 +89.92 +10.54 +92394 10.53 +11.19 +89.92 +92.29 +31.17 +85.67 +89.108 +92.11 +69.3 +34.78 +92.24 +10.53 +89.23 +53.44 +92.24 +10.53 +92.24 +11.19 +90.6 +92.24 +10.54 +89.92 +53.44 +92.24 +10.54 +92.24 +11.19 +90.6 +92.24 +11.23 +89.46 +89.32 +92.24 +10.36 +92.7 +53.39 +13.1 +89.124 +67.38 +53.46 +13.1 +89.124 +89.65 +92.24 +11.19 +34.78 +34.78 +69.3 +37.24 37.27 +92.24 +11.23 +89.139 +92.24 +11.24 +89.5 +92.24 +92.31 +89.124 +13.8 +22.42 +33.312 +92.7 +92.24 +12.1 +89.23 +10.54 +92.14 +28.1 +90.26 +92.24 +10.53 +21.27 +89.139 +10.53 +92.14 +28.1 +90.26 +92.24 +10.54 +21.27 +89.131 +92476 64.12 +59.27 +92479 92.24 +12.9{N:001} +64.12 +59.27 +33.312 +92.24 +12.1 +61.9 +41.11 +91.1 +61.9 +90.56 +92.24 +11.32 +59.23 +33.325 +53.51 +92.12 +33.312 +69.3 +53.52 +89.80 +11.52 +33.312 +92.12 +69.3 +53.51 +92.24 +53.51 +92.23 +13.1 +89.92 +92.24 +11.52 +92.23 +13.1 +89.125 +36.19 +33.330 +12.1 +59.27 +13.8 +92.24 +87.2 +92.27 +33.312 +13.8 +92.29 +68.11 +87.76 +33.312 +69.3 +92.6 +25.223 +89.125 +89.65 +91.12 +74.5 +87.84 +13.48 +89.126 +42.23 +89.23 +92.24 +89.119 +12.9{N:001} +33.312 +87.76 +87.85 +12.9{N:001} +13.1 +64.1 +92.24 +87.84 +33.312 +13.1 +87.76 +93.387 +57.161 +37.131 +69.3 +13.48 +87.76 +9.1 +11.23 +59.27 +13.8 +92.27 +33.312 +13.8 +92.29 +68.11 +89.111 +12.1 +92574 89.6 +92.24 +34.77 +33.326 +12.9{N:001} +69.3 +31.1 +89.124 +31.3 +57.71 +64.12 +88.76 +90.1 +12.9{N:001} +31.87 +13.1 +89.50 +31.29 +92.29 +88.4 +13.5 +89.26 +92.24 +67.63 +22.1 +91.15 +88.4 +9.1 +92.24 +92604 13.1 +37.45 +10.54 +69.3 +25.9 +34.78 +37.127 +89.122 +10.54 +69.3 +25.9 +10.54 +89.124 +89.67 +91.1 +34.66 +69.3 +88.289 +89.92 +89.67 +34.66 +92.24 +34.77 +69.3 +88.289 +89.124 +22.2 +92.24 +58.10 +90.65 +92.24 +92.31 +89.94 +92.1 +92.7 +22.28 +89.124 +11.23 +92.29 +33.140 +92.24 +67.145 +67.118 +13.1 +92.24 +67.134 +89.49 +89.92 +92.24 +57.1 +10.54 +64.12 +69.3 +57.1 +13.1 +89.92 +92.24 +25.138 +64.12 +69.3 +25.138 +89.92 +92.24 +25.125 +64.12 +69.3 +25.125 +89.92 +92.24 +57.188 +64.12 +69.3 +57.1 +89.92 +92.24 +41.5 +92.24 +41.38 +64.12 +69.3 +41.6 +89.23 +13.93 +92.24 +58.7 +92.24 +41.38 +92.29 +92693 25.1 +92.7 +25.226 +13.1 +92.24 +34.76 +25.225 +92.24 +92.24 +12.9{N:001} +92.16 +25.90 +92.24 +12.9{N:001} +89.124 +92.24 +34.66 +25.225 +92.24 +92.24 +41.38 +92.16 +25.90 +92.24 +10.54 +92719 63.23 +89.102 +92.24 +9.34 +92.24 +34.76 +89.102 +92.24 +9.39 +25.225 +92.24 +92.24 +12.9{N:001} +89.59 +13.1 +88.24 +89.102 +92.24 +9.8 +89.102 +92.24 +26.9 +89.124 +92.24 +34.66 +25.225 +92.24 +92.24 +1.39 +92.16 +25.90 +92.24 +10.53 +92753 92.29 +89.60 +92.24 +92.7 +92.37 +65.45 +33.69 +69.3 +89.59 +37.2 +92.7 +85.51 +89.125 +89.60 +92.24 +79.15 +89.92 +53.68 +92.24 +12.9{N:001} +30.33 +89.124 +89.65 +92.12 +88.149 +90.57 +92.24 +9.39 +92.11 +31.29 +89.67 +13.1 +67.158 +89.92 +61.9 +71.35 +13.107 +92.27 +25.1 +42.7 +69.3 +88.289 +34.66 +89.124 +92.27 +31.7 +92800 92.24 +26.3 +92.11 +31.92 +69.3 +90.65 +71.30 +89.124 +37.13 +92810 89.6 +92.24 +57.4 +25.2 +89.92 +92.29 +30.75 +83.13 +92.24 +57.4 +26.3 +13.32 +92.24 +92.25 +9.39 +88.4 +42.7 +89.52 +89.102 +92.24 +34.66 +92.24 +92.25 +9.39 +88.4 +42.7 +89.102 +92.24 +69.3 +34.66 +65.21 +42.7 +10.54 +37.45 +67.136 +67.139 +67.78 +23.88 +92.24 +10.53 +92.11 +89.124 +89.67 +23.104 +92.24 +10.53 +37.134 +13.1 +92.27 +25.1 +34.66 +92862 89.119 +12.9{N:001} +89.124 +25.119 +13.1 +89.67 +92869 68.11 +89.8 +92.24 +92.2 +31.3 +89.94 +31.29 +89.93 92.1 +12.18 +12.1 +90.65 +92881 89.6 +92.24 +5.15 +28.1 +90.21 +59.23 +28.17 +57.1 +92.24 +28.17 +88.217 +89.124 +92.24 +25.43 +74.15 +89.65 +92.12 +31.29 +28.1 +92.12 +67.129 +28.1 +64.14 +71.21 71.34 +27.18 +89.124 +89.65 +92.12 +25.43 +92.24 +12.1 +92.29 +28.1 31.27 +90.1 +92.11 +92917 90.24 +92.24 +23.3 +92.24 +5.15 +28.1 +90.21 +92.23 +6.97 +83.13 +1.1 +89.93 +90.21 +92.23 +12.1 +89.131 +92934 60.10 +89.23 +89.66 +92938 13.69 +33.131 +12.22 +89.69 +83.13 +1.11 +89.69 +83.46 +1.39 +64.13 +13.69 +12.22 +59.1 +89.92 +37.51 +59.1 +91.11 +92.4 +60.10 +12.1 +92.24 +12.12 +90.16 +92.27 +92.24 +59.23 +89.92 +92.4 +90.23 +92.11 +89.92 +60.10 +12.9{N:001} +93.169a +93.387 +90.4 +92.27 +92.24 +59.23 +89.92 +92.4 +90.4 +92.11 +89.125 +69.3 +83.13 +59.23 +92.24 +28.17 +92988 92.12 +92.24 +41.25 +67.119 +67.38 +92.24 +6.97 +64.12 +5.15 +23.1 +92999 92.24 +26.13 +92.11 +88.117 +13.1 +53.34 +89.124 +5.1 5.7 +92.4 +69.3 +85.14 +92.24 +12.1 +69.9 +89.67 +69.3 +23.1 +65.51 +69.9 +89.67 +23.1 +65.47 +89.124 +27.58 +89.62 +89.62 +92.24 +30.122 +92.7 +92.29 +88.307 +13.48 +92.24 +88.117 +89.23 +89.67 +92.12 +24.1 +92.6 +92.24 +57.1 +28.17 +83.13 +7.19 +23.21 +69.12 +92.24 +26.13 +92.11 +88.117 +13.1 +74.15 +89.48 +92.24 +92.24 +5.15 +23.1 +93057 20.31 21.32 +89.26 89.76 +92.24 +92.8 +28.17 +92.24 +74.26 +92.24 +11.23 +90.38 +92.27 +93.387 +23.99 +89.94 +61.9 +88.289 +90.59 +92.24 +11.23 +89.92 +20.15 +92.11 +92.24 +26.13 +74.26 +90.59 +93.387 +88.289 +89.47 +89.65 +5.1 +88.304 +92.24 +11.23 +92.1 +69.5 +69.5 +23.1 +5.14 +67.95 +92.24 +67.95 +89.59 +69.3 +92.24 +11.23 +92.1 +88.304 +69.11 +13.1 +37.134 +69.11 +13.4 +53.74 +69.12 +93.169a +92.24 +12.9{N:001} +92.4 +24.1 +69.11 +92.24 +42.12 +92.1 +92.7 +13.4 +89.119 +12.9{N:001} +89.65 +58.37 +69.3 +13.4 +53.74 +91.2 +91.6 +92.7 +13.4 +89.23 +92.24 +73.9 +92.1 +92.24 +53.73 +92.7 +13.4 +89.119 +12.9{N:001} +92.24 +92.2 +33.436 +92.24 +92.1 +33.412 56.12 +13.4 +92.29 +69.15 +69.11 +57.1 +30.122 +23.1 +89.92 +23.34 +69.15 +69.11 +57.1 +30.122 +11.24 +10.54 +15.170 +64.12 +89.93 +92.24 +63.21 +53.74 +89.92 +92.24 +10.49 +92.24 +12.9{N:001} +89.92 +93.211 +89.139 +58.50 +92.1 +89.92 +93.65 +69.11 +57.1 +30.122 +93187 42.41 +92.14 +55.18 +57.4 +57.166 +67.9 +92.14 +43.5 +3.28 +89.87 91.12 +92.24 +3.33 +92.11 +69.3 +23.1 +89.139 +92.14 +44.3 +4.28 +89.87 91.12 +63.20 +92.24 +5.19 +92.24 +4.28 +69.3 +23.1 +69.15 +89.8 +9.1 +92.29 +33.70 +89.139 +89.93 +92.24 +33.55 +92.29 +69.11 +33.69 +89.23 +83.13 +92.24 +93.266 +33.55 +33.54 +69.3 +44.6 +4.15 +43.19 +69.15 +92.24 +4.15 +30.39 +92.24 +12.1 +93243 90.38 +92.4 +91.10 +33.69 +93248 90.38 +92.4 +33.54 +90.21 +71.25 +89.13 +25.59 +43.4 +92.24 +43.4 +89.92 +92.24 +43.19 +89.13 +25.59 +92.24 +57.6 +89.65 +92.4 +92.7 +92.24 +26.10 +43.6 +25.207 +89.65 +92.4 +92.7 +92.24 +79.1 +43.14 +89.65 +58.37 +92.24 +92.7 +30.122 +57.6 +69.11 +78.28 +92.4 +89.125 +69.3 +42.23 +92.24 +30.122 +92.29 +89.125 +59.23 +25.176 +93298 92.12 +13.148 +90.51 +92.24 +33.217 +92.24 +93.387 +69.11 +28.1 +90.21 +92.24 +92.24 +53.9 +90.47 +92.24 +90.16 +92.24 +7.16 +23.1 +92.24 +92.24 +6.114 +35.26 +92.24 +6.114 +57.7 +93325 89.93 +92.24 +12.9{N:001} +33.325 +92.24 +92.24 +33.217 +33.204 +89.77 +92.24 +33.217 +23.88 +89.124 +92.1 +69.3 +42.23 +92.23 +92.29 +89.94 +69.3 +33.61 +92.29 +89.59 +93349 13.3 +90.56 +92.1 +89.23 +65.43 +92.1 +89.126 +23.99 +64.18 +92.24 +33.372 +92.1 +92.23 +76.27 +89.23 +89.67 +33.215 +69.3 +13.69 +92.1 +33.372 +89.23 +71.30 +92.1 +76.17 +89.23 +22.9 +92.1 +13.69 +89.67 +69.3 +33.215 +89.23 +89.65 +25.65 +92.29 +42.8 +38.14 +90.65 +89.124 +89.65 +25.67 +42.25 +35.50 +91.7 +92.14 +13.4 +92.1 +92.24 +38.14 +90.22 +33.215 +57.164 +33.151 +92.24 +33.217 +89.57 +92.24 +69.3 +90.13 +92.24 +30.122 +92.1 +89.5 +92.24 +33.217 +93416 37.134 87.84 +13.1 +89.121 +59.23 +59.23 +92.3 +37.27 +89.59 +92.24 +59.1 +57.189 +93428 13.48 41.1 +92.24 +93.172 +64.12 +93.172 +89.59 +93.172 +57.189 +92.24 +37.7 +33.55 +64.12 +37.7 +33.55 +69.3 +13.1 +92.37 +37.7 +33.55 +89.59 +92.24 +37.7 +33.55 +57.189 +92.24 +11.42 33.57 +64.12 +11.42 33.57 +69.3 +13.1 +11.42 33.57 +12.1 +89.125 +33.342 +93.387 +89.59 +57.189 +92.24 +11.42 33.57 +13.48 +92.24 +74.25 +74.25 +89.59 +92.24 +74.25 +57.189 +92.24 +59.23 +13.48 +59.23 +89.59 +91.10 +92.12 +21.27 +89.94 +59.23 +42.7 +89.26 90.38 +92.24 +33.217 +89.59 +57.10 +92.11 +13.48 +69.11 +28.1 +90.21 +92.24 +83.13 +7.55 +15.230 +89.136 +59.23 +15.230 +89.136 +60.10 +57.125 +92.24 +57.120 +61.9 +15.230 +89.59 +57.56 +93513 59.23 +92.24 +50.1 +59.23 +88.83 +91.7 +89.136 +92.30 +89.59 +23.125 +6.192 +57.125 +89.136 +92.4 +23.128 +89.51 +92.1 +61.9 +15.230 +89.86 +69.3 +30.65 +61.9 +50.6 +89.86 +69.3 +2.2 +19.2 +89.125 +88.89 +92.1 +92.24 +8.1 +89.92 +35.30 +89.62 +89.62 +58.37 +33.256 +92.37 +65.13 +13.48 +91.1 +11.23 +69.3 +25.1 +92.7 +28.13 32.7 +90.21 +92.24 +10.20 +92.4 +59.23 +83.51 +92.24 +1.34 +85.1 +89.92 +59.23 +84.29 +92.24 +1.70 +15.31 +89.92 +59.23 +90.23 +92.24 +93.266 +93582 83.13 +92.24 +1.34 +89.92 +83.13 +92.24 +1.70 +89.92 +59.23 +92.24 +58.31 +79.6 +5.1 +23.1 +89.92 +59.23 +92.24 +58.31 +79.6 +5.6 +23.34 +89.23 +23.34 +90.16 +79.6 +15.144 +2.21 +89.94 +92.24 +2.21 +58.68 +92.24 +93.387 +89.125 +69.3 +89.5 +92.24 +59.1 +92.11 +25.87 +92.24 +12.1 +89.23 +20.63 +83.47 +92.24 +1.86 +93630 92.29 +58.59 +92.4 +13.107 +89.57 +92.24 +69.3 +58.67 +92.4 +25.13 +88.106 +64.14 +89.93 92.30 +25.12 +69.7 +53.64 +13.48 +64.14 +92.12 +92.11 +64.13 +33.54 +17.12 +92.24 +11.1 +23.1 +89.92 +23.34 +89.87 +17.6 +50.8 +69.7 +88.271 +64.14 +92.12 +92.11 +88.271 +89.87 +23.105 +60.10 +67.186 +93672 60.80 +69.7 +27.46 +92.24 +93677 64.14 +92.12 +92.11 +27.46 +89.87 +90.1 +92.24 +4.52 +23.106 +69.7 +33.382 +64.15 +92.12 +92.11 +33.382 +89.87 +23.106 +90.1 +92.24 +20.36 +93698 92.29 +58.60 +13.111 +92.30 +89.94 +33.61 +89.60 +33.231 33.424 +92.4 +90.23 +92.27 +92.24 +67.66 +92.24 +67.143 +13.121 +89.52 +92.24 +31.29 +13.29 +27.58 +89.62 +13.59 +27.46 88.308 +92.7 +69.3 +18.1 +89.131 +93727 9.6 +89.124 +31.87 +92.24 +12.1 +92.27 +69.3 +13.138 +92.7 +27.46 88.308 +78.29 +92.27 +74.5 +89.125 +13.9 +89.105 89.107 +92.24 +27.46 88.308 +89.93 +92.24 +21.16 +92.24 +74.5 +25.175 +89.47 +25.45 +92.1 +15.61 +89.122 +92.24 +53.63 +64.12 +32.31 +33.69 +30.108 +92.7 +92.27 +33.140 33.69 +92.24 +6.121 +92.24 +33.470 +92.27 +33.356 +69.12 +58.68 +34.5 +92.24 +8.64 +92.24 +93.387 +92.24 +5.8 +92.27 +19.34 +69.12 +34.5 +92.24 +8.1 +92.24 +93.387 +58.68 +89.33 +63.4 +5.8 +63.4 +11.34 +92.24 +59.1 +13.1 58.67 +89.23 +92.24 +59.23 +90.16 +92.24 +63.4 +5.8 +23.2 57.6 +30.1 +92.24 +93.182b +89.4 +58.10 8.63 +69.11 +92.24 +23.1 +92.24 +53.20 +34.6 +92.24 +6.114 +13.1 +89.50 +92.14 +33.140 +90.21 +5.15 +92.12 +13.1 +89.139 +90.21 +6.97 +92.12 +13.1 +89.125 +90.21 +92.27 +53.19 +12.37 +89.92 +69.3 +12.1 +53.19 +89.94 +69.3 +25.1 +92.7 +34.6 +92.24 +12.37 +13.48 +69.3 +74.5 +6.121 +12.9{N:001} +23.34 +89.93 +6.121 +12.37 +69.3 +74.5 +23.26 34.32 6.113 +12.9{N:001} +34.32 57.6 +89.93 +23.26 34.32 6.113 +12.37 +89.139 +88.164 +92.24 +12.9{N:001} +69.15 +76.11 +92.11 +13.1 +59.23 +71.1 +89.125 +69.3 +59.23 +65.44 +59.23 +71.1 +89.125 +69.3 +59.23 +74.15 +92.23 +92.24 +92.25 +25.9 57.59 +89.125 +92.24 +92.24 +58.37 +59.24 +92.24 +83.13 +57.208 +57.186 +23.1 +92.23 +27.44 30.109 +89.26 +92.24 +26.13 +89.23 +92.24 +12.9{N:001} +92.24 +1.39 +89.92 +92.24 +59.36 +92.11 +89.65 +92.12 +92.24 +11.19 31.106 +33.315 +92.7 +89.92 +25.1 +15.10 +59.24 +92.24 +57.116 +92.7 +23.1 +92.23 +27.44 30.109 +89.26 +92.24 +26.13 +89.124 +89.67 +92.12 +92.7 +33.69 +92.29 +53.21 +13.1 +69.3 +23.1 +89.26 90.38 +92.30 +92.24 +33.209 +89.93 +92.24 +26.13 +93949 33.138 +26.13 +69.4 +92.24 +92.25 +89.125 +92.24 +92.24 +58.37 +89.23 +93961 92.24 +37.133 +92.1 +56.30 +90.1 +58.37 +26.13 +89.65 +92.1 +33.350 +23.2 +92.15 +33.400 +89.28 90.24 +92.27 +92.1 +25.100 33.349 +89.50 +89.69 +23.1 +89.69 +23.34 +89.69 +92.12 +42.7 +59.23 +89.57 +33.357 87.4 +12.1 +42.7 +25.184 88.318 +13.3 +89.102 +93.172 +89.102 +11.40 +89.102 +92.24 +11.33 +92.24 +12.1 +64.14 +89.93 92.1 +59.23 +59.23 +25.90 +25.9 57.59 +69.3 +92.24 +92.3 +65.45 +89.125 +92.24 +92.24 +59.1 +89.59 +21.27 +41.45 +92.1 +13.3 +64.14 +89.92 92.1 +93.387 +94025 33.354 +92.7 +89.33 +59.23 +92.1 +29.16 29.7 +89.92 +64.14 +33.237 +92.7 +92.24 +33.239 +31.48 +94039 25.1 +92.7 +28.1 32.4 +90.21 +59.23 +10.53 9.24 +92.24 +87.51 +92.24 +93.387 +13.4 +89.94 +87.51 +10.54 +92.24 +10.53 9.24 +89.94 +87.51 +92.24 +93.387 +92.24 +12.1 +59.24 +9.24 +33.178 +89.139 +33.459 +49.16 +49.16 8.10 +94069 25.194 +92.24 +8.10 +92.11 +89.124 +59.24 +9.34 +33.178 +89.139 +33.459 +79.116 +92.24 +8.10 +25.194 +92.24 +8.10 +92.11 +89.23 +13.4 +63.4 +89.92 +92.24 +58.31 +92.24 +19.24 +89.23 +89.65 +69.3 +49.16 +9.34 +89.93 +19.23 +89.124 +89.30 +88.150 +9.34 +92.24 +19.23 +89.139 +19.24 +49.16 +89.23 +89.136 +9.24 +69.3 +71.25 71.35 +49.16 +92.24 +8.10 +58.35 +89.92 +79.18 +12.1 +13.5 +89.136 +92.24 +9.34 +79.18 +9.24 +13.4 +89.23 +69.3 +13.69 +9.24 +89.3 +9.34 +89.125 +9.34 +89.3 +9.24 +89.23 +89.93 +69.3 +42.35 +9.24 +90.38 +92.24 +9.34 +89.125 +9.34 +90.38 +92.24 +9.24 +89.26 +92.29 +71.25 71.35 +92.24 +9.34 +37.37 +49.13 +37.9 83.46 +92.24 +8.10 +89.26 90.38 +92.24 +12.28 +89.130 +69.9 +9.34 +89.120 +9.24 +69.9 +9.24 +89.120 +9.34 +89.119 +12.9{N:001} +89.23 +64.13 +92.24 +9.34 +89.3 +92.24 +9.24 +94184 89.93 +92.24 +9.24 +90.4 +92.24 +9.34 +89.124 +92.24 +59.23 +89.3 +92.24 +12.1 +83.9 +92.7 +92.37 +30.108 +66.1 +13.1 +9.34 +79.116 +92.24 +12.1 +33.178 +69.7 69.8 +92.24 +58.8 +92.37 +33.224 +92.7 +90.21 +89.136 +89.67 +9.24 +49.25 +87.71 +92.11 +13.1 +89.136 +89.67 +9.34 +49.25 +25.205 +92.11 +13.1 +89.33 +92.24 +8.14 +57.145 +6.163 +57.71 +92.11 +89.124 +89.65 +92.12 +25.7 30.96 31.30 +33.450 +13.1 +92.4 +92.31 +41.25 +69.3 +57.1 +69.7 +92.24 +11.32 +92.24 +12.1 +94252 92.29 +33.327 +69.3 +33.354 +89.33 +69.3 +89.48 +92.24 +65.21 +89.125 +89.48 +92.24 +65.29 +15.123 +89.23 +91.6 +60.46 +15.123 +92.7 +83.13 +11.78 +33.212 +39.13 +83.13 +92.7 +13.5 +89.92 +78.49 +92.12 +31.35 +89.23 +71.34 +89.93 91.12 +63.27 +83.9 +92.7 +13.69 +89.49 89.59 +89.93 +92.24 +73.4 +28.28 +13.48 +83.9 +92.7 +91.7 +15.123 +92.7 +94301 92.24 + +69.3 +13.4 +12.10 +23.22 +23.1 +89.23 +59.27 +92.24 +57.4 +23.22 +90.49 +67.33 +92.24 +23.1 +89.87 +89.104 +94320 23.29 +89.104 +94323 88.283 +91.1 +69.15 +7.3 +69.11 +57.1 +89.57 +92.24 +23.1 +89.92 +23.34 +89.139 +92.24 +11.33 +92.24 +12.1 +88.192 +89.92 +25.194 +92.24 +69.3 +57.1 +92.14 +33.69 +92.7 +33.354 +92.7 +89.5 +92.29 +69.3 +33.354 +89.23 +92.1 +33.238 +90.15 +92.24 +12.9{N:001} +92.27 +89.93 +33.237 +92.7 +91.15 +92.24 +12.9{N:001} +93.169a +67.136 +92.24 +67.192 +92.27 +37.111 +18.1 +5.8 +89.87 +33.349 +19.34 +89.87 +33.69 +92.29 +13.4 +92.1 +92.24 +8.1 +92.24 +90.36 +19.37 92.7 +92.29 +90.45 +89.57 90.23 +92.24 +92.2 +29.11 +64.16 +89.93 +92.24 +6.121 +67.48 +92.24 +23.20 +33.69 +92.29 +92.24 +6.121 +92.24 +58.71 +34.44 +13.4 +90.30 +92.24 +92.2 +8.64 +92.29 +90.45 +67.36 +94417 23.34 +89.57 90.23 +92.24 +92.2 +29.11 +89.23 +67.36 +94425 23.1 +92.24 +5.8 +92.29 +89.92 +92.24 +6.121 +23.34 +92.24 +23.99 +92.24 +12.9{N:001} +33.204 +67.119 +92.27 +15.81 +89.52 +71.8 +92.27 +23.1 +92.24 +5.8 +89.139 +23.34 +92.24 +6.121 +92.24 +12.9{N:001} +65.19 66.7 +88.312 +13.1 +92.24 +8.1 +89.92 +92.24 +8.64 +92.24 +12.9{N:001} +94464 27.45 +9.1 +92.25 +89.87 +61.9 +63.20 +92.24 +5.8 +23.1 +89.92 +63.20 +92.24 +6.121 +23.34 +89.23 +92.24 +23.1 +89.92 +23.34 +56.30 +92.25 +23.1 +89.92 +23.34 +69.3 +30.109 +92.24 +8.1 +94494 83.9 +92.7 +59.1 +23.145 79.69 +89.92 +23.147 +89.92 +23.104 +59.2 +89.124 +89.65 +92.25 +30.109 +71.14 +69.3 +56.20 +89.124 +56.20 +90.1 +92.24 +12.9{N:001} +36.10 +89.59 +69.3 +89.107 +92.24 +9.23 +56.31 +89.52 +11.23 +92.1 +15.123 +89.57 +92.24 +23.1 +92.26 +85.60 +89.65 +92.12 +23.29 +83.13 +7.2 +23.1 +94539 89.48 +56.30 +15.123 +89.94 +92.24 +63.21 +67.45 +71.8 +15.81 +33.325 62.8 +94550 11.23 +89.6 +92.24 +12.21 +69.3 +25.1 +92.7 +28.13 +28.1 +90.21 +94561 11.37 +58.67 +84.18 +92.24 +6.97 +92.24 +33.106 +89.86 +71.8 +15.165 +88.152 +89.47 +28.26 +92.7 +90.21 +92.23 +89.119 +12.18 +12.1 +33.70 +33.69 +33.474 +93.169a +89.92 +92.23 +74.5 +33.69 +12.9{N:001} +93.169a +89.131 +94592 89.119 +12.18 +88.24 +94596 57.91 58.39 +57.103 +13.69 +89.124 +92.24 +58.31 +12.18 +89.92 +57.91 58.39 +35.21 +13.69 +94608 92.24 +58.31 +12.9{N:001} +89.92 +57.91 58.39 +42.11 +13.69 +89.124 +92.24 +58.31 +12.1 +92.24 +42.4 +92.24 +59.23 +89.119 +59.23 +94626 59.27 +94628 92.24 +28.36 +92.24 +12.18 +89.60 +92.24 +65.44 +94636 89.104 +94638 90.4 +92.24 +12.18 +94642 33.98 +32.32 +89.104 +58.37 +33.98 +28.17 +89.8 +92.24 +58.31 +12.18 +58.37 +31.85 +90.6 +92.24 +58.31 +12.18 +94659 58.37 +57.103 +23.138 +90.6 +92.24 +60.10 +12.18 +94667 58.37 +42.11 +76.7 +94671 58.37 +33.461 +94674 58.37 +30.112 +12.33 +58.37 +58.23 +33.3 +94681 58.37 +33.147 +33.3 +94685 59.23 +92.29 +42.4 +92.24 +60.10 +89.92 +92.24 +58.31 +12.18 +57.91 +92.21 +59.27 +78.53 +30.56 +89.23 +64.15 +92.24 +8.1 +60.10 +13.1 +89.92 +8.9 +59.1 +90.27 +94710 59.23 +92.24 +8.9 +92.24 +8.1 +59.1 +13.1 +60.10 +8.1 +13.1 +61.9 +89.93 +92.24 +93.387 +89.23 +91.1 +89.119 +60.10 +12.18 +92.4 +59.23 +84.22 +60.10 +11.34 +53.41 +89.69 +93.172 +89.69 +11.40 +89.69 +87.76 +89.69 +87.84 +89.92 +59.23 +60.10 +12.18 +23.35 +94749 91.12 +92.24 +8.1 +13.1 +69.3 +60.10 +8.9 +89.125 +59.1 +89.67 +33.69 +92.24 +8.49 +89.33 +69.3 +13.1 +8.30 +69.3 +13.1 +63.20 +92.24 +8.1 +69.3 +89.25 +92.29 +69.3 +13.1 +63.20 +92.24 +8.1 +89.92 +89.67 +33.69 +92.24 +8.24 +89.33 +69.3 +13.4 +24.16 +69.3 +13.1 +63.20 +92.24 +8.1 +69.3 +89.25 +92.29 +69.3 +13.1 +63.20 +92.24 +8.1 +89.65 +63.1 +92.24 +8.1 +24.16 +83.6 +92.24 +24.53 +89.65 +63.1 +24.53 +83.6 +92.24 +24.71 +94817 92.24 +12.1 +13.9 +92.24 +8.9 +60.10 +59.27 +92.11 +83.13 +92.24 +8.1 +78.53 +25.1 +89.94 +89.65 +13.1 +92.24 +59.23 +60.10 +8.9 +83.6 +92.24 +8.1 +94841 89.136 +67.38 +59.1 +8.9 +89.136 +60.10 +8.1 +89.94 +69.3 +74.5 +92.24 +24.16 +33.69 +92.24 +8.30 +57.40 +92.6 +69.3 +94860 89.139 +89.129 +92.24 +8.10 +92.24 +8.49 +57.40 +92.7 +69.3 +94870 89.125 +59.11 +78.28 +92.24 +31.29 +79.69 +13.5 +8.9 +92.24 +8.1 +71.39 +13.1 +89.92 +92.27 +13.1 +87.72 +92.24 +8.1 +31.29 +92.29 +65.1 87.4 +58.57 +13.10 +89.92 +92.24 +79.16 +92.4 +79.13 +78.31 +90.65 +89.124 +92.24 +79.15 +92.4 +69.3 +57.40 +94907 89.125 +92.24 +12.1 +62.2 +92.24 +8.1 +92.24 +87.65 +94916 78.31 +87.4 +94920 13.104 +39.13 +83.13 +92.24 +11.34 +89.125 +92.24 +58.31 +90.36 +92.26 +25.225 +92.24 +63.17 +89.93 +89.69 +24.78 +92.22 +63.17 +24.84 +59.23 +92.24 +63.17 +89.69 +33.357 87.8 +63.17 +25.126 +59.23 +92.24 +63.17 +94950 92.7 +58.67 +11.34 +93.387 +89.93 +63.17 +63.15 +63.15 +89.93 +91.3 +92.27 +37.96 +92.24 +12.1 +83.9 +92.24 +11.33 +60.46 +53.74 +60.49 +53.79 +60.50 +33.243 +67.44 +76.7 +67.44 +57.103 +23.138 +35.9 +36.3 +58.23 +33.2 33.3 +69.15 +59.23 +53.74 +69.15 +59.23 +53.79 +69.15 +59.23 +33.243 +69.15 +59.23 +76.7 +69.15 +59.23 +57.1 +57.103 +23.138 +69.15 +59.23 +33.2 33.3 +33.70 +69.15 +59.23 +33.145 +95007 25.76 +92.24 +57.103 +92.24 +87.22 +95013 89.135 +89.8 +78.33 +41.16 +92.7 +28.47 33.150 +89.67 +92.24 +33.2 +92.24 +9.1 +89.92 +92.24 +12.28 +33.70 +89.124 +25.43 +69.3 +95032 13.48 +6.95 +14.80 6.95 +89.139 +6.94 +14.82 +89.92 +89.67 +74.12 +33.461 +89.92 +28.1 +92.24 +28.77 +59.23 +89.92 +63.2 +92.24 +28.17 +89.92 +89.67 +95054 63.2 +92.24 +31.85 +89.52 +1.46 +15.9 +89.124 +25.43 +69.3 +95064 92.23 +13.1 +95068 57.113 +59.23 +92.24 +57.16 +92.1 +89.92 +89.67 +57.77 +92.24 +8.1 +92.1 +89.59 +95081 89.124 +25.43 +69.3 +95085 92.23 +35.2 +92.24 +25.43 +25.168 +88.67 +92.24 +25.43 +69.3 +88.163 +92.24 +25.43 +69.3 +33.369 +69.3 +88.217 +69.3 +88.149 +69.3 +25.9 +92.24 +92.25 +69.3 +88.189 +69.3 +29.4 +92.24 +65.26 88.106 +69.3 +25.125 +90.23 +92.24 +88.21 +89.124 +25.126 +92.24 +72.2 +59.23 +25.176 +59.23 +31.35 +59.23 +30.54 +59.23 +25.175 +92.24 +25.43 +67.10 +68.49 75.7 +89.124 +89.69 +33.460 +13.100 +89.69 +33.3 +68.34 +89.69 +28.17 +13.162 +95145 63.15 +63.15 +28.1 +89.92 +63.15 +63.15 +33.459 +89.124 +95155 92.24 +68.23 88.100 +92.24 +63.15 +63.15 78.49 +13.162 +95162 13.1 +9.43 +33.70 +64.12 +9.43 +26.16 +64.12 +9.43 +30.9 +64.12 +9.43 +95174 13.48 +9.24 +13.163 +92.24 +92.24 +9.43 +95181 24.7 +67.38 +89.76 +6.221 +89.48 +24.37 32.21 +89.124 +67.47 +83.37 +95191 83.37 +67.38 +28.1 +63.15 +63.15 +89.124 +67.47 +32.16 +64.14 +89.93 +32.16 +95203 91.4 +13.89 +31.102 +25.59 +25.43 +92.24 +60.12 +92.29 +89.124 +87.28 +92.29 +92.24 +25.43 +68.66 +92.24 +25.43 +89.94 +25.46 25.76 +92.24 +12.21 +89.124 +90.22 +78.28 +33.459 +89.23 +92.24 +33.70 +33.2 33.3 +69.3 +9.1 +33.70 +89.125 +12.1 +89.23 +92.23 +32.1 +95240 12.18 26.9 +33.70 +28.77 +89.124 +92.24 +33.459 +9.1 +33.70 +74.15 +89.92 +25.150 +89.92 +25.154 +92.24 +33.70 +33.2 +92.25 +74.15 +89.124 +92.24 +33.459 +11.32 +74.15 +95264 25.1 +59.23 +92.7 +33.70 +33.2 +89.124 +90.22 +78.28 +33.459 +95274 87.22 +92.24 +33.459 +64.18 +92.24 +33.70 +33.2 +89.131 +89.138 +95284 33.145 +89.59 +92.24 +11.32 +74.15 +57.125 +95291 11.23 +89.67 +67.38 +15.81 +84.18 +92.7 +33.2 +33.70 +95300 92.7 +35.2 +95304 92.7 +33.70 +89.140 +89.5 +28.38 +89.140 +89.5 +28.17 +89.140 +89.5 +33.460 +89.140 +33.224 33.236 +64.11 89.74 +92.24 +23.98 +14.74 +13.128 +89.69 +6.86 +89.69 +6.83 +89.67 +58.42 +92.24 +14.74 +69.3 +13.128 +92.16 +32.16 +92.24 +6.87 +89.139 +92.24 +6.84 +89.23 +89.67 +91.12 +6.89 +24.95 +14.74 +13.128 +92.14 +77.8 +89.57 +55.5 +95352 89.93 +92.7 +90.8 +92.24 +33.74 +95358 32.19 +33.98 +13.128 +92.16 +32.16 +92.24 +33.70 +89.23 +84.22 +1.6 +95369 33.70 +71.13 +71.10 +59.6 +58.23 +33.1 +13.69 +83.13 +1.39 +89.92 +92.23 +33.135 +89.127 89.50 +95384 32.4 +92.24 +33.134 +92.24 +33.1 +58.67 +92.24 +33.70 +11.94 +89.92 +92.24 +33.70 +90.56 +92.1 +11.94 +61.9 +89.93 +92.7 +89.32 +25.77 +30.6 +13.4 +89.60 +92.24 +74.15 +92.24 +11.32 +25.9 +90.22 +57.24 59.54 +89.47 +92.24 +33.70 +33.2 +33.178 +90.22 +33.145 +89.23 +89.67 +33.178 +33.2 +92.24 +26.9 +92.1 +33.178 +89.124 +92.24 +26.14 +92.1 +65.34 +13.1 +89.50 +92.14 +13.4 +33.178 +92.24 +12.18 26.9 +89.94 +33.178 +89.93 +92.24 +26.14 +33.111 +92.24 +12.18 26.9 +89.94 +33.111 +89.93 +92.24 +26.14 +89.32 +89.67 +33.356 +12.18 26.9 +92.24 +85.24 +92.24 +87.1 +92.24 +27.26 +92.16 +33.69 +92.24 +72.6 +89.13 +92.24 +92.8 +33.349 +89.32 +92.14 +33.69 +69.3 +32.4 +89.23 +89.136 +92.6 +78.21 +25.100 33.349 +89.136 91.2 +92.24 +58.37 +69.3 +74.15 +33.349 +92.24 +12.1 +59.23 +92.7 +78.28 +33.2 +33.70 +89.125 +83.13 +11.32 +25.1 +60.14 +33.98 +92.24 +26.14 +92.1 +33.70 +89.59 +89.93 +58.37 +33.225 +64.18 +60.45 +33.98 +89.84 +33.2 +11.23 +69.3 +9.42 +13.3 +92.24 +26.15 +89.125 +92.24 +88.105 +9.44 +89.124 +92.24 +26.15 +88.100 9.10 +13.48 +83.13 +92.24 +33.56 +33.54 +90.21 +89.84 +33.4 +89.92 +90.10 +33.74 +58.37 +33.70 +92.24 +11.55 +92.29 +95545 69.7 +61.9 +24.60 36.15 +92.1 +33.69 +12.9{N:001} +89.52 +92.24 +33.2 +89.57 +33.477 +13.1 +69.3 +92.24 +31.102 +89.125 +92.24 +11.19 31.106 +89.124 +92.24 +33.460 +69.3 +92.24 +11.19 31.106 +89.125 +92.24 +31.102 +89.50 +89.67 +15.123 +92.24 +11.32 +63.1 +95579 92.24 + +89.87 +59.23 +33.70 +33.2 +89.87 +15.93 +27.26 +89.139 +11.19 +69.11 +33.69 +90.21 +30.24 +89.124 +89.67 +59.23 +33.459 +89.87 +15.93 +92.12 +11.19 +89.139 +27.26 +33.417 +90.1 +59.23 +30.109 +90.1 +59.23 +92.24 +28.75 +92.24 +26.3 +92.11 +28.28 +13.48 +89.87 +61.9 +17.22 +95621 8.18 +53.56 +92.24 +12.1 +33.198 +90.21 +70.2 +92.24 +12.1 +83.9 +92.7 +85.1 +89.50 +92.14 +13.4 +11.23 +67.31 +15.123 +59.27 +33.112 +90.51 +33.224 33.236 +90.51 +28.38 +90.51 +33.2 +90.51 +33.147 +90.51 +59.23 +89.60 +74.15 +13.107 +89.69 +33.2 +92.12 +33.70 +89.90 +60.11 +89.139 +92.24 +59.8 +60.12 +89.87 +61.4 +78.49 +89.93 +60.10 +33.145 +89.124 +95673 85.1 +33.146 +33.121 +83.13 +11.32 +89.124 +33.70 +92.25 +89.92 +92.24 +12.1 +89.124 +53.79 +60.11 +89.139 +60.12 +33.70 +89.87 +92.24 +58.37 +30.109 +89.124 +89.67 +58.37 +17.12 +28.38 +92.24 +60.46 +33.121 +89.23 +74.5 +95706 59.23 +33.459 +89.59 +59.23 +27.12 +89.92 +59.23 +25.150 +89.93 91.12 +26.9 +53.79 +53.79 +37.31 +89.23 +69.3 +13.1 +39.36 +92.24 +12.1 +89.125 +22.42 +64.12 +83.13 +59.23 +92.24 +11.32 +92.24 +11.27 +92.24 +10.54 +83.13 +92.24 +11.32 +33.121 +89.23 +69.3 +13.138 +92.11 +33.70 +89.125 +36.18 +64.14 +89.93 +92.24 +33.56 +33.69 +89.124 +89.65 +92.12 +27.12 +25.1 +83.13 +7.2 +92.24 +57.4 +10.53 +33.180 +89.23 +88.150 +13.1 +9.34 +33.70 +83.13 +11.32 +89.139 +90.15 +92.7 +92.24 +33.98 +92.24 +12.1 +15.40 +89.139 +90.59 +92.7 +58.50 +15.84 +89.65 +92.12 +31.29 +13.4 +53.79 +89.139 +12.20 +27.61 +92.27 +33.61 +92.7 +90.21 +12.9{N:001} +33.330 +13.4 +89.124 +89.65 +92.12 +30.38 +30.38 +89.52 +11.23 +92.1 +25.46 +92.24 +33.459 +89.93 +92.24 +33.70 +33.2 +69.3 +13.146 +89.124 +59.23 +66.4 +89.92 +89.8 +62.7 +41.1 +95823 11.23 +28.26 +92.7 +92.24 +33.217 +92.27 +33.215 +92.7 +92.27 +89.93 +33.238 +89.5 +92.27 +89.93 +13.29 +89.76 +92.27 +89.93 +21.27 +95843 33.98 +33.215 +92.7 +89.65 +31.48 +89.138 +89.131 +95851 89.54 89.63 +31.102 +89.23 +33.237 +92.7 +83.9 89.5 +65.52 +92.27 +89.93 +27.13 +90.21 +93.387 +23.99 +90.36 +92.24 +88.289 +92.4 +89.8 +92.24 +33.54 +89.92 +90.21 +52.4 +89.92 +90.21 +23.94 +92.24 +67.186 +92.24 +60.50 +89.8 +92.24 +33.54 +89.87 +90.21 +24.1 +93.211 +67.44 +92.24 +60.21 +67.44 +24.1 +78.30 +60.37 +11.23 +60.67 67.34 +63.20 +92.27 +92.24 +59.1 +13.89 +67.119 +67.38 +89.124 +92.12 +23.104 +67.44 +24.1 +93.158b +67.44 +92.24 +53.74 +59.23 +89.87 +61.13 +59.23 +24.1 +89.93 92.1 +64.13 +92.24 +23.55 +89.23 +92.1 +13.4 +92.24 +87.66 +92.24 +53.74 +92.27 +69.3 +13.1 +75.2 +33.131 +53.74 +89.26 +39.45 +92.24 +11.33 +92.24 +12.1 +89.124 +25.89 88.66 +12.1 +13.4 +92.27 +13.4 +89.93 +92.24 +25.89 88.66 +92.11 +92.24 +90.59 +92.1 +69.3 +89.53 89.64 +13.3 +89.125 +78.31 +92.11 +59.23 +42.47 +89.124 +69.3 +92.1 +89.125 +92.24 +25.89 88.66 +92.24 +12.1 +89.107 +92.1 +89.127 +89.69 +92.1 +89.69 +92.30 +61.9 +33.207 33.256 +89.92 +61.9 +31.102 +95983 89.65 +93.387 +33.256 +90.21 +89.121 +23.121 +23.94 +92.16 +33.69 +83.9 +92.7 +92.12 +90.21 +23.93 +23.121 +69.3 +13.69 +89.124 +89.65 +23.93 +23.121 +69.3 +13.69 +69.7 +93.387 +23.94 +89.94 +89.65 +93.387 +69.3 +23.94 +89.46 +72.10 89.53 89.64 +92.24 +33.258 +92.4 +72.10 89.53 89.64 +89.93 +92.24 +31.102 +92.7 +89.94 +13.7 +89.93 +33.273 +92.24 +12.1 +89.33 +33.262 +89.4 90.31 +92.24 +12.1 +90.21 +23.94 +92.24 +93.387 +92.27 +69.3 +23.94 +89.66 +89.46 +23.121 +69.3 +23.94 +89.23 +89.65 +23.121 +69.3 +23.94 +69.7 +93.387 +23.94 +89.94 +89.65 +93.387 +69.3 +23.94 +65.37 +92.24 +31.102 +92.7 +67.128 +13.1 +13.8 +92.24 +88.289 88.310 +92.7 +89.46 +89.93 +92.24 +23.104 +89.119 +93.387 +21.32 +89.65 +67.136 +92.24 +23.88 +92.29 +90.23 +93.387 +25.59 +96087 88.79 +59.23 +9.1 +13.1 +89.124 +91.4 +23.94 +89.121 +23.121 +93.387 +61.8 +92.24 +23.104 +96101 89.32 +90.4 +9.1 +23.99 +96106 90.4 +9.1 +23.93 +23.121 +89.23 +64.13 +89.119 +92.24 +93.11 +59.23 +23.99 +96118 89.93 +89.119 +92.24 +93.387 +59.23 +23.92 +89.124 +59.27 +67.33 +92.24 +57.4 +62.7 +61.8 +93.387 +67.44 +92.24 +92.24 +93.387 +67.33 +92.24 +15.86 +92.11 +67.44 +92.24 +61.17 +96145 92.24 +37.64 +92.24 +12.1 +96150 12.12 +96152 76.26 +59.23 +37.56 +89.92 +59.23 +12.44 37.35 37.38 76.12 +89.92 +12.44 37.61 76.1 +89.23 +71.34 +92.11 +37.64 +67.119 +96166 85.32 +59.23 +92.24 +39.11 +37.8 +92.24 +37.8 +92.11 +61.13 +39.11 +92.24 +23.99 +13.163 +89.23 +59.23 +37.31 +37.8 +92.24 +37.8 +92.11 +89.124 +96188 33.69 +90.21 +59.23 +37.31 +28.58 +90.21 +89.138 +92.24 +37.31 +92.11 +92.24 +59.23 +89.87 +96202 37.31 +92.11 +92.24 +59.23 +67.47 +89.93 +92.37 +92.24 +12.15 +37.31 +92.24 +37.31 +92.11 +92.24 +59.23 +89.59 +13.1 +92.24 +12.1 +59.23 +89.5 +59.23 +89.32 +92.14 +41.7 +92.24 +53.41 +90.36 +92.24 +23.121 +89.65 +70.1 +23.121 +69.3 +23.94 +92.15 +91.12 +53.41 +90.36 +92.11 +92.15 +91.12 +92.4 +21.2 21.6 +59.23 +67.199 +11.23 +96250 67.92 +23.117 +89.14 +92.24 +92.9 +25.204 33.368 33.371 +92.27 +90.65 +89.119 +93.387 +93.169a +92.24 +12.9{N:001} +92.4 +89.65 +89.8 +9.1 +39.28 +83.13 +93.471 +92.14 +92.1 +92.24 +65.40 +89.65 +23.121 +69.3 +23.94 +23.1 +96280 23.34 +89.23 +67.207 67.58 +23.99 +69.3 +31.67 +20.23 20.39 88.266 +41.25 +88.9 +34.1 +88.106 +30.26 +88.15 +89.93 +69.3 +88.289 +89.23 +28.16 32.7 +12.1 +92.12 +90.65 +89.60 90.25 +25.195 +92.7 +33.70 +89.125 +33.69 +92.12 +92.16 +23.94 +92.24 +23.121 +89.94 +58.30 +8.1 +13.50 15.81 +32.52 +92.27 +92.6 +43.6 +69.3 +23.92 +96324 23.99 +89.93 +92.27 +43.6 +69.3 +92.24 +8.1 +92.24 +13.48 +43.6 +89.125 +49.22 +3.35 +71.13 +71.10 +3.41 +89.139 +92.12 +92.24 +63.21 +89.124 +92.24 +12.1 +57.71 +92.11 +8.1 +64.14 +25.1 30.58 +89.92 +59.27 +92.24 +3.35 +57.4 58.47 +8.1 +69.3 +59.23 +8.63 +92.24 +58.31 +8.63 +89.125 +89.136 +58.36 58.37 +9.1 +89.136 +58.36 58.37 +8.63 +4.6 +89.136 +58.36 58.37 +8.63 +4.38 +89.136 +58.36 58.37 +4.59 +96380 1.26 +1.26 1.8 +89.92 +8.1 +1.41 +89.125 +89.136 +58.36 +92.24 +92.24 +1.26 1.8 +14.49 79.18 +89.136 +58.36 +92.24 +92.24 +1.41 +58.36 58.37 +14.49 79.18 +1.28 +89.92 +58.36 58.37 +14.49 79.18 +1.29 +89.92 +58.36 58.37 +14.49 79.18 +1.30 +89.23 +1.30 +1.30 +58.41 +89.5 +14.49 79.18 +61.9 +89.93 +92.24 +23.93 +92.24 +23.121 +43.6 +13.8 +20.38 23.205 +23.94 +13.8 +23.127 +43.6 +13.8 +87.71 +23.94 +13.8 +14.49 79.18 +43.6 +13.8 +74.23 +23.94 +13.8 +76.1 +43.6 +8.1 +79.2 +23.94 +8.1 +79.3 +89.65 +13.69 +8.1 +79.2 +13.69 +89.93 +79.3 +61.10 +89.93 +33.54 +13.48 +92.24 +60.46 +9.1 +93.11 +13.62 +9.20 +23.88 +92.24 +61.13 +93.11 +13.62 +12.33 +23.92 +91.2 +69.3 +60.46 +92.24 +79.3 +89.125 +92.24 +79.2 +67.44 +92.24 +79.3 +92.24 +60.46 +9.1 +89.3 +2.14 +1.42 2.16 +92.24 +60.49 +9.1 +89.3 +1.11 +64.1 +92.24 +1.42 2.16 +92.31 +89.93 +92.24 +1.42 2.16 +89.92 +64.1 +92.24 +1.12 +92.31 +89.93 +92.24 +1.12 +89.93 +64.14 +13.2 +92.24 +58.35 +92.24 +1.42 2.16 +96513 89.93 +92.24 +58.35 +92.24 +1.12 +96519 92.29 +33.69 +11.23 +90.21 +9.14 +96525 9.14 +37.64 +12.1 +57.131 57.138 +69.3 +74.5 +69.7 +92.24 +20.38 23.205 +92.24 +23.127 +57.131 +91.10 91.13 +28.77 +92.7 +33.69 +59.23 +69.3 +23.104 +89.124 +59.23 +58.43 +67.33 +67.149 +67.114 +16.5 +8.23 +67.33 +92.24 +61.13 +6.93 +89.23 +6.92 +89.87 +92.24 +23.121 +23.94 +23.128 +89.92 +92.4 +58.43 +96567 71.34 +92.24 +23.125 +92.29 +49.1 +23.127 +89.92 +92.24 +23.124 +92.29 +49.1 +23.126 +89.94 +96581 92.24 +23.125 +92.29 +49.1 +23.127 +89.92 +92.24 +23.124 +92.29 +49.1 +23.126 +67.47 +13.107 +92.24 +33.98 +92.24 +33.54 +13.43 +92.24 +23.99 +13.62 +39.57 +23.99 +92.28 +92.6 +92.24 +39.57 +23.99 +92.28 +92.6 +92.24 +20.69 24.86 +96614 92.24 +20.69 24.86 +92.24 +23.99 +92.24 +88.289 +89.94 +92.24 +76.1 +92.24 +88.289 +92.24 +33.55 +89.124 +33.350 +92.24 +12.1 +92.24 +96633 92.4 +92.24 +39.57 +90.4 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.52 +11.23 +92.1 +25.45 +13.3 +31.92 +31.81 +59.52 +89.5 +92.24 +42.42 +92.24 +12.9{N:001} +67.88 +32.4 +90.21 +92.24 +42.47 +92.7 +69.3 +13.1 +89.53 +89.119 +12.9{N:001} +96667 89.6 90.24 +92.24 +57.66 +92.24 +90.41 +92.24 +11.27 +64.13 +33.325 62.8 +92.24 +11.32 +92.24 +93.442 +96681 89.93 +92.7 +90.45 +67.33 +96686 67.177 +59.27 +92.7 +83.25 +92.25 +85.32 +65.11 +92.12 +71.8 +92.27 +57.64 +96700 15.81 +67.47 +57.66 +13.107 +89.87 +96706 15.86 +71.8 +92.27 +30.114 +90.8 +33.48 6.63 +92.29 +15.66 +15.202 +92.24 +57.103 +92.7 +84.16 +93.480a +89.94 +89.67 +66.6 +13.1 +92.24 +89.93 92.1 +15.10 +89.107 +92.1 +15.10 +89.94 +15.81 +84.18 +92.7 +96735 93.527 +15.21 +89.23 +93.527 +15.21 +89.94 +89.112 +92.7 +71.10 +96745 89.139 +96747 67.166 +89.59 +92.7 +92.1 +15.72 +71.8 +83.5 +15.10 +89.23 +69.3 +25.1 +92.7 +67.38 +13.8 +15.29 +34.50 +89.23 +25.59 +67.78 +92.12 +85.55 +89.112 +92.7 +89.67 +92.24 +12.9{N:001} +13.138 +89.124 +85.55 +83.13 +93.471 +67.119 +92.24 +51.8 +89.23 +92.1 +71.9 +7.49 +87.22 +89.92 91.12 +13.124 +91.12 +39.1 +59.1 +96792 89.67 +15.81 +93.361 +13.134 +90.22 +25.253 +13.3 +89.112 +92.7 +89.23 +92.24 +42.42 +12.9{N:001} +42.41 +64.12 +89.93 92.1 +89.50 +69.3 +92.12 +92.11 +88.195 +89.124 +15.72 +92.11 +13.8 +22.42 +89.49 +15.81 +84.18 +92.1 +89.23 +30.53 85.60 +92.11 +89.108 +92.24 +11.23 +96829 89.6 +93.33 +92.24 +11.23 +78.3 +33.168 +92.11 +89.49 +15.7 +84.18 +92.7 +89.108 +92.24 +11.23 +91.12 +71.16 +69.3 +13.1 +25.2 +90.22 +67.39 +15.7 +89.124 +15.7 +67.31 +67.4 +27.56 +13.30 +89.5 +92.24 +31.102 +25.165 +76.10 +59.23 +92.7 +89.84 +25.43 +13.107 +96868 33.168 +92.7 +11.23 +28.1 +92.24 +10.8 +93.347 +90.21 +13.4 +61.8 +92.24 +93.419 +89.92 +89.57 +35.21 +92.24 +11.27 +68.69 +92.25 +89.49 +89.93 +92.7 +36.18 +92.24 +92.31 +89.92 +59.23 +92.24 +42.15 +89.92 +42.47 +96900 25.125 +89.27 +92.24 +15.86 +93.347 +89.92 +93.383 +89.92 +93.54 +89.33 +92.24 +92.9 +85.29 +92.29 +57.79 +89.23 +23.84 +92.24 +92.2 +26.9 +89.92 +92.24 +92.7 +89.50 +31.27 +92.24 +92.31 +33.20 +92.7 +92.24 +11.32 +92.24 +93.415 +33.20 +92.7 +89.119 +12.9{N:001} +59.1 +93.16 +89.92 +93.302 +89.107 +92.24 +89.4 +7.2 +92.11 +11.32 +33.20 +92.7 +92.24 +11.23 +59.23 +33.20 +92.26 +89.84 +34.62 +88.24 +92.24 +33.20 +92.24 +92.2 +8.30 +93.294a +89.65 +92.12 +69.3 +25.33 +92.24 +12.9{N:001} +13.4 +33.474 +96973 92.24 +88.66 +92.24 +12.9{N:001} +93.169a +90.60 +92.7 +92.24 +25.43 +92.1 +90.60 +59.23 +92.7 +89.119 +93.387 +93.169a +93.294a +53.74 +93.387 +93.169a +89.76 +30.59 +12.1 +89.92 +93.361 +92.24 +11.23 +92.24 +11.32 +92.24 +12.1 +92.24 +85.1 +83.13 +93.506 +89.107 +92.24 +11.27 +59.23 +92.24 +85.1 +83.13 +63.1 +92.24 +93.419 +92.7 +88.66 +89.92 +22.42 25.248 +90.15 +12.1 +12.12 +92.4 +89.92 +12.9{N:001} +93.169a +93.387 +33.362 +92.24 +12.1 +89.92 +10.14 12.12 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +12.12 +92.24 +88.80 +89.92 +12.1 +59.23 +25.150 +92.24 +25.150 +92.4 +67.136 +59.23 +92.24 +22.2 +92.4 +89.57 +92.24 +74.5 +92.4 +25.150 +92.24 +13.8 +59.23 +22.2 +89.76 +92.24 +25.150 +92.27 +25.150 +92.37 +90.1 +92.24 +12.1 +89.33 +64.14 +59.52 +92.24 +24.78 +92.24 +93.387 +90.59 +92.4 +61.9 +90.4 +92.24 +93.387 +59.52 +89.93 +92.24 +25.150 +92.4 +97093 89.69 +22.15 +90.36 +92.24 +92.7 +25.150 +89.92 +21.26 +89.69 +25.150 +90.36 +92.24 +92.7 +25.150 +92.24 +13.9 42.3 42.4 +83.13 +25.174 +92.24 +58.31 +24.78 +92.27 +89.93 +92.4 +24.78 +91.1 +92.24 +25.59 +92.4 +31.90 +90.24 +92.7 +28.1 +90.21 +64.12 +13.1 +34.6 +92.24 +24.78 +97133 89.93 +92.24 +25.150 +91.1 +11.23 +69.3 +25.1 +92.7 +28.13 +90.24 +92.24 +22.2 +92.4 +92.24 +13.107 +83.13 +92.24 +93.415 +90.21 +89.4 +78.33 +78.29 +74.1 +22.18 +89.52 +25.237 +92.4 +97161 92.24 +23.88 +91.2 +92.37 +90.56 +92.25 +92.24 +56.26 +92.24 +23.99 +90.65 +89.59 +69.3 +31.82 +97176 90.23 +92.25 +89.125 +90.23 +92.24 +12.1 +92.24 +23.94 +92.24 +23.121 +92.27 +89.121 +78.36 +23.99 +21.23 +92.4 +89.92 +21.23 +90.23 +92.27 +25.59 +90.21 +89.93 +67.128 +21.23 +35.5 +89.93 +92.7 +90.36 +92.4 +92.24 +33.171 +89.49 89.59 +90.16 +59.1 +9.9 +92.24 +90.41 +92.4 +57.103 +90.4 90.8 +59.1 +33.349 +90.36 +92.4 +91.1 +92.24 +33.371 +92.4 +92.29 +13.4 +92.24 +33.264 +92.24 +26.13 +92.4 +90.21 91.15 +89.84 +97235 89.92 +88.42 +92.24 +12.1 +69.3 +89.84 +32.32 +26.8 +89.125 +89.84 +88.66 +12.1 +41.3 +89.5 +92.24 +9.23 +97252 78.31 +89.112 +92.7 +97256 33.61 +92.7 +69.3 +58.37 +97261 64.18 +92.27 +33.68 +89.139 +89.93 +32.16 +89.94 +25.59 +90.21 +78.51 +78.47 +32.16 +64.14 +89.93 +32.16 +92.4 +63.15 +63.15 +90.21 +25.203 33.371 +92.7 +13.4 +64.15 +89.93 +92.7 +92.4 +67.33 +92.24 + +92.24 +12.9{N:001} +92.4 +93.169a +91.1 +92.29 +92.24 +31.82 +30.56 +60.47 67.18 +84.18 +92.7 +15.81 +89.59 +60.49 +57.103 +90.65 +89.87 +84.29 +92.7 +15.17 +84.22 +93.527 +89.87 +67.55 +84.3 +93.527 +15.81 +84.18 +92.7 +89.87 +90.1 +92.7 +15.72 +84.16 +92.24 +93.486a +89.50 +92.29 +30.56 +89.46 +69.16 +92.24 +88.99 +41.4 +89.139 +92.27 +30.56 +89.8 +26.7 +30.56 +89.49 +97343 89.111 +92.1 +92.24 +69.1 +69.1 +89.92 +92.24 +69.2 +69.2 +89.124 +31.87 +92.24 +12.1 +90.21 +92.24 +33.98 +92.4 +92.24 +90.58 +92.7 +69.3 +13.1 +69.1 +89.92 +69.2 +89.23 +92.24 +92.24 +12.15 +12.15 +93.387 +93.169a +92.24 +83.9 +92.7 +90.4 +92.4 +33.256 +90.4 +92.1 +89.92 +93.340 +89.92 +93.361 +69.3 +13.48 +69.1 +89.92 +69.2 +89.125 +69.1 +89.119 +92.11 +13.48 +89.23 +59.7 +33.288 +12.1 +13.8 +92.11 +92.24 +69.1 +89.47 +89.93 +90.4 +92.11 +92.24 +72.6 +92.24 +12.1 +89.60 +33.357 +90.4 +92.4 +89.94 +92.24 +31.91 +92.4 +89.107 +92.7 +90.23 +93.387 +89.92 +37.107 +92.4 +12.1 +92.24 +89.93 +33.484 +92.4 +89.92 +97435 92.24 +57.170 +92.24 +12.18 +89.119 +92.24 +26.3 +92.4 +97444 92.1 +33.270 +92.24 +12.1 +33.176 +90.34 +92.24 +92.2 +23.88 +90.21 +22.28 +92.7 +67.130 +15.81 +84.16 +93.506 +90.21 +69.3 +37.50 +92.7 +92.24 +31.102 +89.125 +42.44 +13.1 +92.24 +25.123 +92.7 +89.23 +92.24 +31.102 +13.29 +97477 30.75 +92.3 +92.29 +92.24 +69.3 +67.55 +13.8 +25.273 +84.18 +92.7 +15.81 +89.23 +89.65 +92.1 +25.275 +92.7 +97494 92.14 +92.24 +25.131 +92.1 +89.131 +97500 92.24 +25.275 +89.25 +92.1 +89.92 +33.61 +92.29 +58.31 +97510 15.81 +25.273 +90.65 +90.15 +92.27 +92.1 +25.125 +71.21 +31.82 +97520 59.23 +92.7 +90.21 +92.24 +92.2 +25.123 25.124 +59.23 +92.7 +13.4 +97530 89.85 +78.3 +22.2 +89.92 +25.240 +26.3 +33.61 +92.7 +97539 59.1 +8.73 +69.3 +89.59 +25.275 +89.125 +89.59 +28.1 +92.24 +25.43 +92.27 +90.65 +78.31 +90.41 +92.7 +89.124 +89.65 +92.12 +25.275 +69.3 +92.1 +25.275 +89.125 +63.15 +63.15 +59.23 +92.7 +97568 57.224 +78.14 78.50 +92.24 +92.31 +92.24 +38.6 +92.29 +92.24 +90.1 +92.24 +59.1 +89.52 +89.134 +89.126 +92.7 +40.10 +89.92 +25.150 +89.62 +89.62 +92.24 +78.31 +25.273 +25.285 +92.24 +92.31 +89.47 +33.168 +92.7 +70.6 +90.59 +92.11 +25.43 +89.23 +89.57 +92.29 +89.93 +33.61 +89.59 +28.1 +92.24 +72.7 +92.7 +90.26 +90.23 +59.23 +36.16 +13.1 +97617 92.27 +92.12 +40.10 +89.93 92.1 +89.23 +91.12 +92.1 +92.27 +40.10 +89.65 +92.12 +40.10 +90.38 90.44 +92.7 +89.119 +85.26 +93.387 +97636 88.144 +90.1 +92.24 +12.34 93.330 +89.23 +69.3 +92.11 +92.24 +30.15 +28.13 +97647 15.81 +84.16 +92.24 +93.599 +89.57 +92.24 +33.217 +92.24 +93.387 +89.92 +7.49 +92.1 +71.9 +90.6 +12.9{N:001} +69.3 +90.65 +22.36 +92.24 +26.9 +92.1 +92.24 +69.3 +27.27 +92.1 +93.364a +92.24 +11.23 +92.1 +91.2 +15.55 +92.11 +15.40 +84.16 +93.527 +97683 33.350 +92.24 +12.1 +92.24 +67.88 +39.60 +92.4 +89.119 +92.24 +93.387 +89.92 +92.24 +79.45 +92.24 +28.17 +92.11 +28.36 +90.4 +92.4 +83.13 +59.23 +80.1 +89.33 +93.387 +79.46 +13.1 +92.24 +12.1 +83.9 +92.24 +21.27 +89.92 +83.9 +92.24 +21.32 +89.136 +92.27 +79.45 +89.3 +23.99 +89.48 +23.99 +89.136 +92.27 +79.45 +78.48 89.3 +23.88 +89.48 +23.88 +97733 89.7 +92.29 +92.14 +75.2 +97738 69.3 +13.1 +57.202 +92.24 +33.260 +92.24 +12.1 +64.12 +92.24 +59.1 +89.125 +64.12 +89.85 +88.42 +91.11 +64.12 +90.16 +12.1 +83.42 +12.1 +89.119 +93.387 +33.70 +68.1 +67.55 +92.25 +33.344 +89.139 +69.15 +57.39 +64.12 +92.12 +33.345 +6.63 +90.58 +92.7 +89.139 +90.16 +92.7 +92.24 +33.48 +92.4 +92.7 +13.1 +33.62 +83.47 +92.24 +26.3 +92.4 +28.1 +89.92 +33.68 +90.1 +59.23 +9.1 +28.36 +90.21 +13.1 +33.48 +93.387 +35.37 +90.1 +92.4 +33.62 +69.3 +6.57 +89.125 +12.18 +12.1 +23.88 +69.3 +83.47 +6.61 +2.25 +89.125 +83.47 +6.61 +26.3 +79.4 +89.94 +31.82 +92.31 +90.65 +90.4 +92.24 +93.387 +89.112 +92.24 +12.1 +69.3 +90.21 +90.15 +92.25 +75.2 +13.1 +31.1 +92.12 +64.12 +90.16 +92.25 +89.125 +92.24 +75.1 +92.4 +90.16 +92.24 +12.1 +92.27 +89.93 +75.3 +92.4 +35.20 +58.71 +34.44 +69.3 +33.50 +89.125 +12.18 +89.23 +92.24 +33.50 +20.61 +89.124 +92.24 +12.18 +23.92 +97865 89.65 +92.24 +35.21 +92.24 +23.99 +13.8 +33.35 +33.67 +2.24 +13.3 13.80 +13.8 +14.49 79.18 +89.52 +69.3 +74.5 +92.24 +11.58 +93.182b +24.49 +83.47 +92.24 +8.18 +93.266 +89.26 +92.24 +14.49 79.18 +92.24 +8.18 +92.11 +92.24 +13.162 +92.16 +69.12 +78.28 +92.24 +35.21 +92.24 +12.18 +13.1 +13.8 +79.18 +89.23 +89.65 +97910 92.24 +56.31 +14.49 79.18 +78.3 +78.28 +59.52 +92.24 +35.21 +92.24 +34.46 +79.18 +89.23 +97923 69.3 +87.24 +92.24 +87.24 +89.5 +92.29 +92.24 +63.14 +89.31 +92.24 +78.33 +79.18 +89.23 +89.65 +92.24 +13.100 +97940 14.49 79.18 +78.3 +78.28 +92.24 +13.89 +13.8 +79.18 +89.50 +90.65 +92.31 +25.59 +78.3 +25.158 +41.4 +89.93 +69.3 +64.15 +93.266 +85.32 +6.177 +83.46 +92.24 +8.18 +92.11 +89.60 +92.24 +69.3 +24.49 +92.24 +11.58 +93.182b +78.51 +92.24 +67.66 +92.24 +13.162 +89.125 +27.51 +92.24 +26.14 +92.11 +89.23 +67.119 +92.24 +67.205 +67.186 +92.24 +58.31 +6.177 +67.136 +92.24 +33.68 +92.24 +58.75 67.24 +34.44 +13.89 +69.3 +79.117 +89.33 +90.6 +93.387 +13.100 +89.125 +67.119 +67.205 +71.8 +67.36 +33.68 +33.59 93.266 +6.177 +83.46 +92.24 +26.3 +92.11 +13.73 +89.124 +67.36 +98018 31.60 +90.58 +12.9{N:001} +15.204 +92.24 +6.177 +98025 92.24 +12.9{N:001} +92.24 +12.18 +13.4 +89.94 +92.28 +92.24 +12.18 +12.9{N:001} +37.133 +98037 92.4 +59.23 +79.117 +8.18 +92.24 +79.18 +12.9{N:001} +14.52 24.44 +92.24 +58.31 +58.35 +13.53 +13.62 +79.18 +13.62 +79.18 +64.15 +90.15 +12.9{N:001} +12.18 +98059 90.65 +92.24 +35.21 +92.29 +89.34 +88.76 +69.3 +25.288 +89.125 +13.156 33.220 +92.24 +28.69 +92.24 +25.191 +69.3 +41.11 +89.84 +88.270 +69.7 +72.9 +92.24 +33.260 +92.24 +12.1 +89.125 +92.24 +28.36 +92.24 +72.2 +33.344 +92.25 +90.58 +59.23 +26.13 +9.1 +90.20 +92.24 +12.1 +89.94 +89.65 +98101 28.79 +92.24 +33.217 +92.4 +90.56 +92.24 +20.31 +98109 28.79 +90.56 +92.27 +92.24 +12.22 +92.24 +12.24 41.38 67.143 +92.29 +32.43 +92.24 +26.14 +92.24 +31.106 +89.57 +92.24 +69.3 +28.37 +92.24 +72.3 +92.24 +33.217 +92.24 +14.49 +92.24 +93.387 +92.27 +13.4 +58.35 +92.24 +12.1 +89.23 +69.3 +92.25 +33.256 +89.125 +93.387 +93.169a +12.9{N:001} +89.94 +92.25 +87.76 +92.7 +90.44 +93.169a +89.33 +92.24 +12.1 +92.24 +33.69 +84.4 +14.53 +14.36 +14.37 +92.27 +14.37 +83.13 +92.24 +26.3 +92.4 +89.60 +28.36 +92.24 +28.17 +92.24 +79.18 +92.24 +12.1 +83.47 +8.18 +93.387 +98180 57.1 +92.24 +65.10 +92.29 +83.13 +2.20 +6.118 +89.59 +92.24 +78.33 +92.24 +76.1 +13.1 +92.24 +12.1 +89.92 +69.3 +90.16 +92.4 +83.47 +59.23 +22.15 +89.125 +69.3 +22.19 +32.9 +89.125 +69.3 +25.237 +39.45 +89.125 +69.3 +35.54 +19.10 20.21 +89.125 +69.3 +20.31 +67.88 +92.24 +23.99 +92.24 +93.169a +89.5 +92.24 +8.1 +15.190 +89.59 +89.93 +92.24 +23.88 +92.24 +93.169a +89.5 +92.24 +8.1 +92.4 +28.36 +89.23 +67.86 +92.4 +92.24 +23.88 +13.62 +23.99 +57.77 +90.38 90.44 +93.169a +89.59 +89.93 +92.24 +23.88 +92.24 +93.169a +28.36 +83.13 +92.24 +23.124 +8.4 +92.4 +89.52 +92.24 +23.99 +83.13 +92.4 +42.3 +89.124 +92.24 +23.88 +83.13 +92.7 +98271 90.65 +92.24 +58.31 +30.6 +92.24 +31.85 +89.8 +92.24 +33.54 +31.35 +89.47 +33.70 +89.102 +92.4 +31.35 +89.47 +89.102 +33.70 +28.1 +90.21 +92.24 +23.94 +92.24 +12.9{N:001} +93.169a +89.93 +92.4 +89.107 +93.169a +23.94 +89.93 +85.14 +89.107 +92.7 +98306 92.24 +59.23 +90.38 +92.7 +89.59 +92.24 +25.89 +59.67 +90.38 +92.24 +59.1 +92.24 +33.349 +59.52 +89.48 +92.24 +87.4 +92.24 +12.1 +89.47 +69.3 +25.288 +91.2 +98331 92.24 +8.3 +92.4 +8.3 +23.146 +91.2 +92.24 +26.1 +92.4 +13.67 58.72 +67.92a +98343 67.92a +89.23 +92.24 +67.109 +78.10 86.2 +92.24 +22.2 +98351 78.33 +98353 78.33 +67.96 +78.23 +79.18 +13.9 +92.4 +69.3 +30.20 +92.4 +92.24 +24.7 +89.125 +92.24 +69.3 +24.7 +89.23 +92.24 +24.7 +67.109 +89.124 +92.24 +69.3 +24.7 +67.96 +89.23 +28.1 +90.21 +89.67 +92.24 +1.41 +92.4 +7.3 +92.24 +8.5 +20.55 +90.16 +12.1 +57.1 +42.34 +7.3 +42.33 +67.96 +83.13 +92.24 +1.11 +89.23 +91.12 +13.8 +92.29 +25.143 +92.24 +85.68 +92.4 +92.24 +90.16 +12.16 +49.2 +25.18 +89.30 +91.6 +91.12 +98415 69.3 +49.22 +90.70 +89.23 +91.12 +92.24 +85.1 +83.13 +92.24 +8.5 +25.143 +22.18 +89.27 +92.27 +25.1 +69.3 +49.18 +89.125 +49.2 +89.59 +13.43 +92.24 +23.124 +90.1 +92.24 +23.88 +98442 92.24 +77.6 +92.4 +89.57 +58.31 +92.29 +12.1 +92.24 +98451 92.4 +92.24 +57.170 +92.24 +12.18 +89.50 +25.156 +67.88 +89.92 +28.1 +90.21 +23.91 +98464 92.24 +9.8 +85.21 +84.3 +92.24 +12.9{N:001} +89.23 +90.8 +31.85 +41.11 +69.3 +90.8 +24.1 +98478 25.156 +89.92 +30.97 +89.126 +23.111 +98484 92.24 +23.111 9.8 +89.92 +85.20 +89.112 +92.24 +12.9{N:001} +89.47 +98493 25.78 +89.69 +85.20 +89.69 +85.21 +25.94 +92.11 +13.1 +89.23 +92.24 +59.23 +92.4 +28.36 +83.33 +92.24 +7.63 +92.24 +93.387 +71.34 +89.59 +90.92 +59.27 +92.24 +90.8 +92.24 +9.8 +89.9 +92.27 +42.8 +89.69 +88.1 +89.69 +88.116 +89.50 +28.1 +92.24 +53.59 +92.24 +12.9{N:001} +9.1 +33.301 +98535 12.1 +28.36 +89.94 +25.59 +89.93 +90.56 +92.24 +26.13 +92.7 +28.36 +69.3 +67.55 +92.25 +33.344 +92.7 +89.125 +22.46 +33.371 33.372 +98554 92.7 +90.24 +92.4 +89.59 +74.12 +90.33 +92.24 +89.5 +24.24 +33.368 +98565 69.3 +89.5 +26.3 +89.23 +89.69 +30.24 +12.1 +89.69 +30.22 +92.7 +89.23 +92.24 +25.43 +92.24 +93.387 +37.17 +92.4 +30.75 +92.29 +91.15 +60.10 +90.36 +59.23 +23.99 +89.46 +92.24 +59.23 +23.99 +89.93 +90.36 +59.23 +23.99 +89.59 +92.24 +23.88 +23.88 +67.130 +92.25 +89.125 +92.24 +90.36 +92.11 +23.99 +89.87 +23.94 +89.52 +92.4 +98613 92.24 +67.38 +92.23 +28.1 +89.4 +26.7 +98621 28.1 +89.4 +26.7 +93.387 +89.125 +67.38 +67.130 +28.1 +89.52 +89.65 +92.12 +89.119 +93.387 +58.71 +42.38 +92.24 +67.98 +13.93 +91.13 +13.48 +58.71 +98643 92.24 +59.23 +90.16 +92.24 +12.1 +92.24 +40.1 +92.4 +92.25 +90.4 +93.387 +89.92 +98656 92.4 +92.24 +35.21 +92.24 +40.1 +90.21 +91.15 +12.1 +98665 40.1 +90.6 +93.387 +9.23 +92.25 +69.3 +29.4 +92.11 +92.24 +88.297 +92.11 +89.92 +37.96 +90.56 +92.4 +92.24 +33.98 +92.24 +40.1 +89.50 +90.36 +93.387 +37.88 +64.12 +92.24 +12.1 +33.168 +90.4 +92.4 +33.170 +90.36 +93.387 +40.1 +92.24 +12.1 +92.24 +69.3 +27.2 +88.289 +90.36 +92.4 +88.289 +13.9 +89.59 +92.4 +13.48 +88.13 +12.1 +89.119 +92.11 +89.94 +42.15 +89.93 +33.168 +69.3 +89.48 +89.53 89.64 +92.24 +88.66 +92.24 +12.1 +57.125 +92.7 +89.23 +33.69 +67.1 +66.9 +24.60 +92.6 +89.92 +67.136 +67.142 +21.26 +35.1 +92.6 +91.13 +67.38 +67.1 +22.44 +91.13 +67.38 +67.142 +21.26 +92.23 +22.14 25.183 88.307 +89.5 +92.23 +90.51 +98755 33.414 +92.24 +35.21 +89.125 +89.80 +59.23 +28.49 +92.25 +64.12 +12.1 +35.20 +89.80 +25.174 +78.3 +89.80 +22.2 +89.80 +22.1 +89.80 +22.10 +89.80 +19.1 +89.80 +7.24 +89.80 +39.36 +89.80 +42.47 +89.80 +23.73 +89.80 +23.31 +89.84 +88.29 +89.84 +28.17 32.16 +89.84 +25.167 +89.84 +88.67 +89.119 +12.18 +88.24 +89.84 +25.43 +73.8 +90.10 +33.98 +72.2 +90.10 +76.1 +12.1 +89.76 +92.24 +6.29 +92.24 +88.13 +92.24 +8.32 +89.92 +8.33 82.7 +67.136 +87.4 +89.92 +87.71 +67.136 +33.398 +89.92 +33.356 +64.12 +31.9 +91.12 +88.39 +64.12 +28.13 +91.12 +28.2 +64.12 +23.99 +91.12 +91.13 +23.88 +64.12 +38.4 +91.12 +69.3 +20.65 +64.12 +25.274 +89.124 +67.86 +25.125 +64.12 +57.53 +89.124 +59.1 +57.29 +64.12 +92.23 +57.1 +91.12 +59.23 +57.1 +93.505 +92.24 +33.252 +92.4 +33.252 +98864 92.7 +92.24 +25.53 +92.4 +25.53 +69.3 +25.54 37.18 +90.6 +92.4 +89.124 +25.54 +98876 92.24 +25.54 +92.7 +98880 92.24 +58.31 +38.15 +64.12 +9.46 +33.69 +25.53 +89.93 +92.7 +69.3 +13.48 +34.9 +11.19 +89.23 +92.14 +34.7 +88.13 +89.92 +88.139 +89.139 +92.14 +34.5 +14.36 +89.7 +88.125 +89.94 +92.14 +31.15 +93.387 +89.7 +93.69 +89.139 +92.14 +63.13 +31.86 +89.108 +31.106 +89.94 +92.14 +31.18 +7.15 +12.1 +89.108 +6.97 +89.23 +92.4 +7.15 +12.1 +23.88 +13.1 +64.14 +33.69 +92.24 +12.1 +90.21 +85.73 +83.13 +92.11 +89.92 +85.81 +89.92 +13.4 +92.11 +12.1 +89.92 +92.11 +13.4 +92.1 +11.12 +89.47 +15.40 +89.121 +83.9 +92.11 +89.92 +63.28 +89.92 +53.39 +69.3 +24.73 +33.69 +12.9{N:001} +92.1 +34.53 +92.7 +89.92 +13.4 +92.7 +98969 10.14 +89.92 +92.7 +13.4 +92.1 +98975 10.42 +89.92 +10.46 +33.69 +12.9{N:001} +12.7{N:001} +89.50 +25.45 +57.1 +92.29 +92.24 +33.288 +53.28 +92.25 +89.122 +59.23 +53.35 +8.4 +89.92 +26.9 +68.22 +88.25 +89.26 89.84 +53.59 +12.1 +34.13 +92.4 +92.23 +88.22 +92.23 +20.23 +92.23 +88.144 +89.60 +56.31 +69.3 +33.69 +89.23 +33.86 +90.21 +99016 92.24 +26.3 +92.4 +13.1 +78.51 +92.24 +23.118 +89.92 +23.96 +78.3 +92.1 +25.158 +89.7 +92.7 +78.3 +92.1 +25.204 +90.24 +92.7 +59.37 +92.24 +25.150 +78.34 +92.24 +25.123 +67.136 +59.23 +92.24 +22.2 +92.4 +89.23 +99048 15.81 +92.4 +84.22 +93.527 +92.23 +90.65 +22.36 +92.24 +8.4 +92.4 +89.125 +89.5 +59.23 +22.15 +83.20 +39.23 +83.16 +25.251 +89.125 +92.24 +25.150 +92.24 +25.295 +92.24 +12.1 +25.150 +92.4 +89.76 +92.24 +15.86 +93.364a +89.94 +69.3 +99082 89.76 +92.24 +15.86 +92.11 +89.125 +89.93 +89.76 +92.24 +25.150 +92.27 +25.150 +89.27 +92.7 +33.197 +92.4 +92.24 +92.7 +25.18 +92.24 +92.7 +52.3 +92.24 +92.7 +25.46 +90.24 +92.1 +89.52 +92.1 +78.28 +25.125 +89.33 +99115 25.275 +92.7 +89.76 +92.24 +33.48 +69.3 +25.270 +99124 25.270 +32.11 +90.21 +92.24 +33.48 +92.30 +99133 67.148 +25.275 +92.7 +67.38 +25.125 +69.3 +89.33 +25.274 +89.125 +89.33 +25.274 +89.48 +41.52 +89.23 +25.274 +89.8 +12.1 +89.49 +89.5 +92.23 +57.69 +90.16 +92.4 +89.23 +92.24 +89.8 +12.1 +25.272 +41.52 +89.48 +21.25 +25.271 +13.9 +89.124 +92.24 +92.24 +41.38 +25.272 +23.99 +13.9 +89.23 +91.13 +92.37 +92.29 +92.24 +89.8 +12.1 +25.274 +13.9 +92.7 +78.13 +25.74 +89.96 +33.436 +89.96 +88.186 +89.96 +25.251 +89.96 +25.18 +89.96 +25.46 +89.96 +38.8 39.33 +89.5 +59.23 +28.49 +92.25 +88.28 +13.1 +92.24 +13.105 +89.46 +99208 33.61 +92.7 +69.3 +90.43 +92.24 +88.22 +69.7 +90.43 +92.24 +88.22 +89.125 +89.58 +92.24 +28.36 +92.24 +25.74 +92.7 +92.24 +90.36 +92.4 +90.58 +92.7 +83.33 +92.24 +12.1 +99235 25.150 +89.94 +89.101 +92.24 +25.150 +92.4 +78.31 +78.28 +25.125 +89.27 +92.24 +25.123 +93.364a +89.33 90.21 +23.80 +92.24 +26.9 +92.11 +90.7 +59.23 +92.7 +89.33 +89.65 +92.12 +92.11 +90.24 +92.7 +33.368 +69.3 +25.194 +89.125 +64.12 +59.23 +70.4 +70.4 +33.70 +92.7 +61.9 +89.93 +92.24 +33.368 +92.4 +90.57 +93.364a +72.2 +13.48 +89.93 +92.24 +25.49 26.11 +92.11 +78.31 +90.59 +92.7 +13.1 +29.9 +92.24 +59.23 +92.7 +36.15 +89.86 +89.79 +25.251 +89.92 +16.6 +34.53 +92.11 +25.125 +89.33 +89.5 +59.23 +25.156 +89.5 +92.7 +99309 11.23 +28.26 +92.7 +92.24 +88.66 +92.24 +12.1 +92.24 +99318 90.56 +92.24 +11.32 +92.24 +93.527 +91.15 +67.136 +78.3 +27.45 +22.2 +92.24 +59.53 78.31 +92.24 +25.123 +92.11 +89.92 +92.24 +78.22 +78.22 +57.52 +92.11 +78.31 +89.48 +92.24 +78.15 +92.24 +57.106 +92.11 +33.262 +91.15 +89.8 +74.1 +99351 78.29 +74.1 +25.66 +89.79 +59.11 +33.168 +33.170 +92.4 +92.24 +88.66 +99362 92.24 +57.98 +92.24 +35.21 +92.24 +90.41 +92.24 +11.27 +91.12 +69.3 +64.14 +25.59 +89.125 +99376 53.48 +60.46 +92.24 +12.9{N:001} +89.87 +92.4 +89.76 +30.59 +12.1 +89.48 +92.24 +33.168 +92.4 +93.364a +90.22 +64.14 +68.4 +61.9 +89.93 +68.22 +90.23 +92.7 +89.93 +92.24 +57.103 +92.29 +91.2 +64.13 +89.5 +59.23 +78.31 +31.102 +89.92 +33.99 +89.92 +28.17 +89.92 +78.44 +25.74 +89.92 +92.24 +90.16 +92.4 +90.56 +92.7 +25.43 +90.22 +89.93 +89.5 +92.29 +92.24 +57.103 +78.31 +69.3 +89.8 +33.326 +33.69 +89.125 +89.76 +92.24 +58.37 +25.74 +89.93 +92.24 +92.24 +92.9 +25.43 +73.1 +27.45 +89.23 +28.1 +92.24 +88.66 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +91.15 +90.38 +92.7 +57.54 +57.26 +13.1 +89.59 +92.7 +92.24 +92.30 +57.52 +57.28 +99467 31.3 +89.5 +92.29 +99471 89.23 +92.29 +92.7 +65.44 +99476 69.3 +58.50 +92.24 +42.7 +89.125 +89.93 +92.24 +25.1 +68.4 +67.131 +67.204 +99488 91.4 +89.93 +92.24 +42.7 +68.22 +89.59 +64.15 +92.24 +25.68 +92.24 +25.1 +61.9 +89.93 +92.24 +68.22 +90.16 +92.24 +57.1 +99507 89.65 +92.24 +25.68 +13.75 +78.53 +71.8 +57.1 +25.86 +69.3 +78.53 +69.3 +57.1 +99520 69.3 +90.22 +58.37 +22.36 +92.7 +22.2 +89.125 +89.25 +58.32 +67.136 +92.24 +67.38 +67.78 +92.24 +92.7 +59.53 +90.41 +92.24 +92.30 +57.38 +89.59 +89.93 +92.24 +92.30 +59.53 +13.48 +90.41 +92.24 +92.7 +57.38 +89.59 +13.80 +58.32 +64.14 +33.54 +92.24 +92.24 +59.11 +69.3 +57.23 +89.92 +92.24 +92.24 +59.13 +69.3 +57.41 +99567 33.350 +92.24 +12.1 +92.24 +99572 92.24 +58.31 +25.74 +90.36 +92.7 +83.13 +92.24 +26.3 +93.364a +89.33 +91.3 +92.24 +25.150 +57.125 +89.94 +25.75 +13.5 +25.66 +15.40 +84.18 +92.7 +89.94 +15.69 +89.108 +92.11 +92.24 +11.23 +92.27 +92.24 +33.354 +89.5 +92.24 +33.217 +84.29 +59.23 +92.24 +11.32 +89.94 +69.3 +99612 89.125 +89.93 +30.101 +90.1 +92.24 +11.32 +15.151 +92.4 +99621 92.24 +57.103 +92.29 +92.24 +35.37 +90.1 +92.4 +89.60 +92.24 +92.37 +92.24 +12.9{N:001} +33.357 +89.92 +25.68 +92.4 +13.159 +92.29 +89.62 +92.12 +92.4 +33.414 +89.5 +92.24 +59.60 +92.29 +92.24 +35.37 +90.1 +92.4 +89.23 +35.39 +88.4 +69.3 +99656 90.20 +12.9{N:001} +89.125 +89.93 +90.20 +9.1 +89.94 +15.69 +92.11 +92.24 +11.23 +92.4 +92.27 +30.114 +89.5 +59.1 +67.11 +25.75 +13.1 +89.94 +91.4 +78.3 +25.75 +31.82 +78.3 +92.24 +90.23 +92.7 +89.69 +90.24 +93.364a +34.6 +92.2 +89.92 +90.41 +92.7 +42.44 +89.69 +11.23 +92.4 +33.194 +11.32 +33.357 +93.387 +89.50 +92.24 +28.52 +92.24 +25.43 +92.7 +89.92 +92.4 +33.368 +90.24 +92.7 +90.59 +92.11 +28.51 +83.13 +85.26 +92.24 +11.32 +91.1 +89.136 +89.6 +92.24 +57.119 +92.24 +90.41 +92.24 +11.27 +59.51 71.40 +92.1 +13.1 +92.24 +33.61 +92.7 +89.23 +28.1 +92.24 +25.68 +92.7 +92.27 +90.24 +92.7 +33.368 +93.528 +90.21 +93.419 +77.8 +67.131 +67.204 +89.93 +92.24 +92.7 +25.46 +90.55 +92.24 +59.1 +89.136 +15.66 +92.24 +11.23 +89.59 +69.3 +92.24 +33.368 +92.4 +92.24 +90.24 +92.7 +76.27 +89.5 +92.24 +63.14 +92.29 +89.59 +64.14 +33.69 +77.8 +99777 89.62 +89.62 +89.67 +15.7 +89.107 +92.1 +93.528 +89.87 +27.1 +92.7 +77.9 +25.194 +92.4 +90.22 +69.3 +99793 92.7 +89.5 +92.24 +31.84 +92.29 +89.50 +71.39 +31.1 +33.168 +92.24 +11.23 +90.22 +15.141 +84.16 +92.7 +89.87 +77.4 +92.24 +33.287 +57.105 +92.7 +92.29 +77.2 +13.1 +61.9 +89.61 +57.105 +89.92 +69.3 +64.12 +88.144 +99825 92.29 +92.24 +43.6 +59.61 +59.61 +89.93 +43.14 +89.92 +92.24 +43.6 +99836 59.56 +99838 59.56 +89.93 +43.14 +59.27 +64.14 +30.84 +92.24 +26.3 +69.3 +89.85 +25.272 +89.139 +89.85 +71.30 +89.23 +25.117 +57.72 +25.43 +92.24 +12.1 +89.94 +74.5 +92.24 +12.1 +59.23 +57.103 +59.54 +90.59 +92.7 +89.59 +89.5 +59.23 +67.88 +78.44 +75.6 +57.1 +59.52 +90.23 +59.23 +42.11 +88.1 +64.14 +33.54 +57.95 +57.71 +92.24 +57.50 +92.24 +88.13 +92.11 +68.11 +67.95 +92.24 +67.95 +99893 92.24 +35.31 +99896 92.24 +43.6 +89.102 +5.8 +89.57 +5.1 +35.31 +89.102 +59.69 +92.24 +3.35 +92.7 +89.92 +59.63 +92.24 +13.49 +92.24 +88.13 +92.7 +89.5 +58.28 +57.29 +89.57 +78.44 +57.106 +99922 13.9 +90.4 +92.4 +33.349 +92.24 +12.1 +89.33 +92.24 +35.38 +92.24 +35.22 +92.29 +69.3 +99937 35.34 +92.24 +57.38 +92.24 +11.27 +89.125 +89.93 +59.52 +89.76 +59.1 +33.349 +92.24 +12.1 +89.76 +92.24 +72.7 +92.24 +57.119 +92.29 +33.357 +92.24 +12.1 +89.13 +92.24 +36.18 +92.24 +33.274 +92.7 +90.23 +92.24 +33.217 +92.24 +93.387 +89.92 +57.106 +92.24 +57.101 +90.59 +92.11 +89.92 +90.59 +59.23 +89.93 +92.11 +33.171 +90.36 +92.7 +25.47 +92.7 +89.26 +92.24 +78.33 +88.66 +92.24 +12.1 +90.40 +92.7 +33.350 +92.24 +12.1 +89.27 +92.24 +33.202 +92.11 +57.84 +100003 92.37 +92.1 +93.294a +33.168 +92.7 +100009 92.24 +88.59 +89.92 +88.62 +92.24 +93.387 +92.27 +89.136 +83.38 +85.26 +88.64 +83.9 +92.7 +89.136 +85.27 +25.156 +90.59 +92.7 +89.94 +33.170 +92.24 +69.3 +85.23 +25.156 +92.24 +31.82 +92.27 +31.1 +25.161 +90.34 +92.12 +92.24 +31.1 +92.4 +64.12 +89.8 +26.7 +41.11 +89.23 +13.8 +8.4 +41.11 +69.3 +89.8 +26.7 +55.4 +89.23 +92.24 +6.29 +92.24 +55.4 +92.4 +69.3 +79.1 +89.125 +74.2 +92.24 +12.1 +89.60 +20.54 +7.21 +20.54 +30.11 +89.92 +59.23 +88.207 +39.38 +90.31 +92.24 +28.17 +92.24 +12.1 +89.93 +37.29 +59.23 +30.15 +89.57 +92.24 +36.15 +92.24 +93.387 +89.93 +13.8 +77.2 +90.65 +38.8 +59.23 +36.27 +67.31 +59.33 +92.7 +92.24 +36.15 +92.24 +31.31 +31.31 +24.7 +89.65 +92.12 +31.82 +92.25 +93.387 +58.67 +92.29 +30.9 +67.55 89.129 +90.23 +92.25 +90.21 +64.14 +92.11 +93.387 +100122 89.93 +92.4 +89.23 +89.67 +100127 58.57 +92.12 +33.368 +89.6 +92.24 +37.35 +92.4 +92.27 +100136 92.24 +12.9{N:001} +89.57 +74.15 +89.92 +69.3 +89.57 +74.16 +92.7 +69.3 +25.190 +89.59 +69.3 +25.7 +64.12 +71.14 +25.257 +92.7 +89.76 +92.24 +33.48 +89.33 +33.69 +89.136 +92.24 +33.48 +65.55 +89.92 +76.11 +89.136 +92.24 +85.25 +92.24 +9.8 +79.69 +89.92 +92.24 +33.99 +88.195 +92.29 +30.9 +92.24 +64.2 +90.21 +58.30 +13.4 +92.24 +33.99 +90.8 +33.48 +85.27 +92.31 +89.93 +85.23 +92.24 +42.11 +100193 69.3 +25.161 +58.27 +89.139 +64.6 +92.25 +92.12 +92.24 +92.25 +33.344 +89.125 +92.11 +89.5 +92.26 +92.25 +81.2 +89.92 +64.6 +92.25 +92.26 +69.3 +32.5 +89.124 +92.4 +69.3 +78.27 +92.24 +78.27 +33.368 +89.125 +89.8 +92.24 +81.1 +92.24 +80.2 +92.27 +37.100 +92.4 +92.24 +12.1 +81.1 +15.84 +84.19 +100237 92.7 +89.23 +69.3 +64.12 +69.3 +15.84 +84.16 +92.7 +68.78 +92.25 +89.23 +84.19 +100250 92.7 +15.84 +89.5 89.80 +92.24 +33.217 +92.24 +93.387 +69.3 +78.27 +92.24 +78.27 +33.368 +89.5 +92.20 +42.47 +89.124 +25.59 +90.65 +59.62 78.5 +92.24 +31.102 +92.7 +90.6 +92.7 +79.124 +89.8 +92.24 +80.2 +92.4 +78.51 +59.53 +83.13 +92.24 +83.55 +92.7 +33.215 +69.3 +83.13 +92.20 +80.2 +90.23 +92.24 +77.2 +33.368 +89.124 +92.24 +33.368 +89.5 +12.9{N:001} +33.368 +89.23 +69.3 +92.24 +92.25 +33.344 +92.30 +13.1 +30.115 +89.125 +92.27 +92.24 +12.9{N:001} +33.344 +71.28 +25.171 +92.1 +79.125 +92.12 +32.53 +91.11 +91.12 +25.171 +92.1 +89.23 +25.46 88.163 +92.7 +12.1 +25.46 +89.23 +34.74 +92.7 +60.10 +10.53 +9.39 +88.28 +57.81 +92.24 +93.387 +89.124 +25.252 +89.62 +89.62 +64.12 +92.24 +4.52 +31.12 +93.128 +89.76 +92.24 +88.270 +92.11 +88.266 +92.24 +26.14 +92.7 +89.122 +92.24 +88.44 +89.92 +92.24 +88.29 +92.24 +90.23 +93.387 +89.23 +100366 89.65 +92.24 +15.81 +33.256 +58.36 +93.169a +92.27 +69.3 +33.256 +89.139 +57.125 +12.33 +58.36 +92.27 +69.3 +57.125 +89.139 +33.217 +58.36 +92.27 +69.3 +31.51 +88.4 +25.171 +89.23 +31.1 +92.23 +87.65 +92.24 +78.34 +53.74 +89.136 +100400 27.26 +92.24 +33.99 +91.2 +69.3 +92.24 +28.17 +91.11 +89.5 +58.28 +28.36 +89.5 +59.23 +90.59 +92.7 +89.139 +88.289 +90.45 +92.3 +87.62 +89.49 +92.7 +87.20 +89.33 +57.85 +92.24 +92.24 +12.1 +33.217 +33.215 +92.7 +58.37 +11.32 +57.234 +57.125 +57.118 +89.60 +92.24 +92.7 +35.19 +100441 85.23 +83.9 +92.7 +89.92 +57.37 +69.3 +57.224 +92.23 +89.23 +92.24 +57.38 +92.1 +35.34 +92.24 +11.23 +15.81 +84.3 +93.527 +89.93 +89.5 +58.28 +57.225 +92.3 +92.7 +13.32 +89.93 +13.32 +13.69 +72.2 +93.387 +89.119 +92.1 +90.21 +92.24 +33.368 +92.29 +69.3 +68.45 +83.13 +92.1 +83.13 +92.24 +1.79 +92.24 +93.419 +100488 89.33 +69.3 +25.43 +92.7 +92.24 +12.1 +28.1 +89.124 +92.27 +42.7 +89.93 +42.7 +89.59 +13.101 +92.24 +89.22 +92.24 +25.1 +89.22 +89.59 +90.23 +92.27 +33.368 +13.7 +64.14 +89.93 +92.4 +89.23 +92.24 +92.31 +53.75 +41.21 +88.155 +58.18 +13.62 +53.74 +93.387 +89.93 +69.3 +25.216 +89.23 +92.37 +92.24 +12.34 93.330 +58.18 +13.62 +12.28 +14.36 +89.50 +69.3 +25.207 +89.65 +89.93 +92.24 +35.20 +92.11 +58.18 +64.12 +35.20 +88.13 +92.27 +92.24 +67.66 +13.1 +89.8 +92.24 +42.11 +92.11 +67.55 +33.69 +69.3 +92.12 +31.29 +92.1 +32.52 +13.1 +100567 89.73 +64.12 +32.52 +34.53 +92.1 +89.49 +89.93 92.1 +79.125 +92.12 +33.368 +92.27 +33.70 +69.3 +89.8 +12.9{N:001} +33.70 +89.125 +64.12 +89.84 +32.53 +89.5 +92.29 +92.24 +31.84 +92.24 +33.368 +89.32 +59.1 +33.368 +89.8 +100598 26.7 +89.93 92.1 +33.368 +89.23 +25.129 +25.171 +92.24 +32.52 +32.31 +13.1 +100609 25.171 +89.65 +92.12 +92.7 +37.27 +89.65 +92.12 +88.145 +89.65 +92.12 +88.146 +89.65 +92.12 +88.212 +89.65 +92.12 +83.47 +8.18 +92.7 +19.2 +89.4 +87.71 +33.69 +90.21 +90.21 +92.4 +74.26 +89.124 +71.8 +89.84 +92.27 +92.12 +25.161 +89.84 +32.53 +33.69 +25.161 +89.93 92.1 +93.105 +13.4 +89.93 92.1 +93.183 +13.4 +89.93 92.1 +10.29 +93.7 +13.4 +89.93 92.1 +35.20 +93.387 +13.4 +30.24 +33.70 +78.29 +92.1 +89.5 +42.47 +78.31 +89.5 +7.24 +78.31 +89.5 +19.1 +78.34 +100674 23.117 23.99 +67.11 +90.1 +93.172 +60.72 +60.27 +59.76 +60.10 +90.63 +60.71 +19.8 +60.67 +20.79 +60.71 +54.26 +67.179 +83.13 +92.24 +1.73 +42.7 +15.20 +67.11 +21.1 +1.76 +21.1 +57.240 +21.1 +90.16 +10.1 +21.1 +90.16 +11.37 +21.1 +83.13 +1.89 +21.1 +83.13 +1.86 +21.1 +83.47 +1.69 +21.1 +83.9 +11.36 +42.47 +89.92 +42.48 +13.8 +23.73 +67.11 +13.8 +23.31 +89.92 +23.39 +13.8 +23.31 +67.11 +13.8 +79.75 +89.92 +49.23 +89.120 +92.24 +58.38 +92.24 +25.239 35.42 +92.1 +92.24 +100743 67.92 +92.24 +25.224 +59.23 +92.24 +11.32 +92.14 +74.26 +89.93 +69.3 +74.26 +92.14 +88.305 +89.93 +69.3 +92.1 +25.229 +89.65 +33.368 +71.34 +92.24 +92.24 +74.23 +92.1 +33.368 +92.24 +12.1 +89.92 +12.12 +92.24 +12.9{N:001} +93.169a +92.24 +13.1 +33.362 +67.95 +92.24 +67.95 +28.1 +90.21 +69.3 +33.253 +83.13 +93.459 +92.24 +37.80 +93.36 +92.24 +37.67 +37.119 +92.24 +1.89 +93.458 +37.110 +92.1 +89.87 +84.29 +7.47 +83.13 +6.148 +15.111 +84.29 +92.24 +7.61 +89.87 +21.14 +92.24 +37.14 +92.11 +33.368 +71.21 +91.6 +69.3 +65.44 +89.124 +100820 33.488 +89.92 +28.38 +12.9{N:001} +28.1 +9.24 +89.119 +93.387 +89.69 +13.8 +8.1 +69.3 +28.1 +89.69 +83.20 +92.24 +8.1 +69.3 +28.1 +92.24 +12.1 +28.1 +67.17 +67.167 +60.22 +18.4 +92.24 +64.2 +84.19 +60.50 +1.11 +89.93 +28.1 +92.24 +64.2 92.31 +9.24 +89.69 +13.8 +8.1 +89.69 +89.120 +92.24 +8.1 +69.3 +28.1 +92.24 +12.1 +28.1 +90.21 +18.4 +84.22 +92.24 +1.14 +89.87 +24.52 +33.95 +33.9 +92.27 +33.70 +69.3 +71.32 +9.1 +90.36 +92.24 +64.2 +33.368 +89.124 +90.36 +92.3 +69.3 +33.368 +89.131 +100893 89.5 +92.24 +74.23 +91.1 +89.67 +25.1 +33.368 +69.3 +13.1 +32.52 +89.23 +72.2 +33.69 +89.124 +13.152 +89.62 +92.12 +90.59 +92.1 +31.1 +78.29 +92.27 +24.7 +92.1 +89.139 +24.52 +90.16 +92.1 +100922 92.24 +78.33 +92.24 +28.38 +89.47 +100929 88.211 +90.90 +92.1 +22.20 3.54 +92.24 +22.20 +12.28 +12.34 93.330 +89.59 +92.1 +20.27 +100942 88.211 +90.24 +92.29 +60.71 +92.24 +12.9{N:001} +33.168 +89.59 +15.51 +89.122 +92.1 +89.87 +33.69 +92.1 +59.46 +92.6 +92.24 +88.66 +92.1 +89.23 +92.24 +76.1 +13.8 +74.23 +68.22 +89.50 +25.129 +78.28 +33.368 +89.5 +92.24 +74.23 +89.59 +85.75 +90.57 +92.1 +92.24 +76.1 +92.24 +93.387 +89.47 +25.87 +90.23 +74.23 +90.23 +20.19 33.391 88.131 +90.23 +22.1 +90.23 +39.45 +89.92 +22.10 +90.36 +93.387 +89.23 +67.31 +74.26 +67.47 +74.2 +13.1 +13.48 +32.52 +92.7 +92.1 +37.33 +101008 92.1 +71.25 +90.1 +92.7 +33.344 +89.23 +92.23 +87.65 +92.24 +78.34 +53.74 +101021 92.23 +13.1 +91.3 +92.24 +33.477 +92.24 +53.74 +90.47 +83.9 +92.7 +89.80 +78.44 +25.174 +89.102 +33.477 +89.102 +33.480 +89.102 +76.7 +91.1 +92.14 +13.1 +92.27 +88.134 +78.29 +92.24 +63.21 +11.32 +89.131 +101051 90.21 +92.37 +92.1 +69.3 +57.224 +92.7 +40.10 +92.1 +92.24 +88.21 +92.29 +91.13 +60.50 +92.29 +77.2 +13.2 +15.81 +84.18 +92.7 +101071 69.3 +57.224 +89.23 +69.3 +57.59 +92.24 +92.7 +89.125 +92.7 +89.23 +69.3 +71.25 +92.24 +10.36 +92.24 +10.18 +65.11 +89.125 +92.24 +10.18 +92.24 +10.36 +89.94 +92.1 +25.129 +42.27 57.146 +101098 42.28 +90.36 +92.24 +26.4 +92.7 +89.65 +78.31 +92.7 +101107 78.38 +25.43 +89.124 +13.69 +92.1 +69.3 +22.26 +92.7 +89.125 +13.5 +88.269 +88.154 +92.7 +88.146 +69.15 +92.12 +92.27 +15.66 +84.18 +92.7 +90.4 +92.11 +88.144 +92.7 +33.168 +93.364a +89.93 +15.69 +92.24 +11.23 +69.16 +88.144 +92.7 +93.364a +69.11 +92.24 +58.31 +30.6 +41.47 +69.11 +92.24 +58.31 +41.47 +67.141 +31.29 +90.21 +92.7 +33.435 +90.20 +12.1 +89.119 +93.387 +33.70 +89.94 +25.45 +92.24 +59.23 +90.36 +92.24 +92.7 +74.15 +89.23 +25.252 +89.62 +89.62 +15.81 +69.3 +64.1 +25.1 +27.1 +92.7 +89.92 92.1 +27.1 +92.7 +64.1 +69.3 +25.1 +89.62 +89.62 +39.22 +88.162 +88.178 +88.167 +33.387 +33.404 +88.215 +39.34 +89.62 +67.55 +15.81 +92.1 +25.198 +92.1 +92.24 +12.1 +92.1 +90.20 +92.7 +89.87 +25.142 +59.1 +92.24 +88.293 +89.87 +69.3 +41.52 +89.13 +92.24 +88.261 +89.92 +88.271 +89.92 +88.272 +92.27 +42.8 +60.50 +92.29 +15.81 +84.18 +92.7 +89.13 +33.101 +60.11 +33.270 +101232 60.12 +76.21 +59.23 +13.115 +33.86 +89.92 +33.423 +64.12 +85.23 +92.24 +60.49 +91.12 +85.27 +67.38 +92.24 +88.293 +89.92 +92.24 +63.21 +59.23 +90.21 +89.67 +15.81 +101256 92.24 +67.55 +69.3 +22.28 +89.32 +33.167 +72.7 +92.24 +90.6 +92.1 +33.70 +93.387 +92.27 +90.59 +92.7 +69.3 +74.26 +89.125 +74.5 +89.119 +92.7 +89.23 +91.12 +20.76 +89.85 +74.23 +89.125 +23.93 +89.77 +76.1 +12.1 +91.1 +91.12 +92.4 +74.26 +89.119 +92.11 +89.125 +23.88 +89.107 +92.11 +89.77 +76.1 +12.1 +90.59 +92.7 +92.25 +27.46 +90.26 +68.20 +101307 92.24 +31.102 +92.25 +27.45 +89.139 +69.11 +32.16 +92.25 +90.21 +93.169a +93.387 +89.119 +92.7 +101321 69.16 +65.13 +13.1 +101325 25.59 +90.21 +31.27 +90.21 +92.4 +69.3 +13.1 +65.13 +101334 33.178 +90.58 +92.24 +12.1 +69.3 +42.7 +92.7 +88.106 +92.23 +69.3 +89.49 +92.4 +30.115 +28.55 +89.125 +89.49 +92.7 +92.24 +88.4 +42.7 +101355 92.4 +89.52 +88.111 +13.1 +89.23 +69.3 +74.5 +92.12 +90.31 +92.24 +72.2 +89.125 +90.36 +92.24 +72.2 +101371 25.125 +67.36 +92.4 +74.26 +89.124 +92.7 +74.2 +13.1 +89.93 +33.178 +92.29 +92.24 +92.7 +75.5 +101387 92.29 +85.27 +33.61 +89.59 +85.23 +69.3 +88.74 +41.4 +89.8 +92.24 +37.35 +92.27 +92.24 +12.9{N:001} +37.98 +92.1 +89.57 +74.15 +89.92 +69.3 +89.57 +74.16 +11.23 +61.14 +25.125 +75.5 +25.150 +92.24 +58.31 +31.1 +88.102 +101419 92.24 +12.1 +92.24 +25.43 +89.92 +22.42 +85.1 +89.108 +92.7 +33.20 +92.26 +89.80 +88.24 +34.62 +33.20 +92.7 +92.24 +11.27 +59.23 +92.24 +25.89 +92.24 +12.9{N:001} +93.169a +93.387 +89.92 +92.24 +25.43 +92.24 +12.1 +89.92 +92.24 +34.5 +92.24 +88.24 +12.18 +89.108 +59.23 +92.7 +93.294a +53.74 +69.3 +90.15 +9.1 +69.7 +90.4 +9.1 +89.125 +90.4 +93.169a +93.387 +89.92 +12.1 +12.12 +92.24 +23.94 +92.11 +89.121 +23.121 +89.92 +92.24 +89.107 +92.1 +59.23 +11.23 +92.24 +11.32 +92.24 +93.442 +92.7 +88.66 +89.92 +25.248 +90.15 +12.1 +12.12 +92.4 +89.92 +12.9{N:001} +93.169a +93.387 +92.24 +53.48 +101503 90.36 +92.24 +88.310 +92.4 +89.59 +21.17 +92.4 +89.121 +92.24 +67.143 +92.24 +67.41 +88.110 +89.8 +92.24 +30.59 +92.24 +12.1 +101522 12.12 +92.4 +92.27 +92.24 +33.357 87.4 +67.95 +92.24 +67.95 +92.24 +67.95 +72.6 +25.213 +90.21 +78.4 +67.110 +34.27 +13.62 +92.24 +33.312 +92.7 +89.76 +88.66 +93.387 +13.62 +58.36 +33.217 +92.27 +69.3 +13.4 +58.37 +89.131 +101554 92.12 +13.69 +92.24 +25.244 +92.7 +89.93 +25.1 +13.64 +92.24 +33.217 +92.24 +93.387 +89.125 +101568 89.67 +92.4 +89.139 +12.28 +84.4 +1.11 +101575 92.7 +89.132 89.137 +92.27 +33.215 +92.7 +33.474 +13.4 +64.12 +33.86 +101585 67.38 +67.55 +33.69 +89.65 +92.12 +92.7 +33.215 +89.132 89.137 +92.27 +27.13 +33.474 +13.4 +91.1 +67.38 +33.301 +9.1 +89.139 +92.24 +12.1 +89.139 +25.9 +9.1 +25.90 +89.65 +67.128 +9.1 +25.90 +71.14 +93.387 +87.76 +69.3 +13.4 +101618 11.23 +28.26 +92.7 +92.24 +33.217 +92.24 +33.215 +90.1 +92.1 +90.21 +69.3 +13.1 +89.8 +9.1 +89.23 +69.7 +92.1 +90.14 +9.1 +27.13 +92.11 +69.9 +33.224 +89.125 +89.76 +28.38 +93.169a +93.387 +89.23 +33.212 +92.24 +92.2 +41.3 +67.9 +89.119 +92.24 +41.33 +91.15 +89.8 +78.33 +39.45 +92.24 +11.33 +92.24 +12.1 +89.92 +20.37 +92.11 +89.93 +13.57 +89.5 +92.24 +41.33 +78.29 +59.1 +67.159 +83.9 +92.24 +10.1 +92.1 +78.31 +13.5 +25.77 +92.24 +10.21 +92.1 +33.239 +89.124 +101687 25.87 +92.24 +37.97 +92.1 +67.131 +8.69 +10.16 +92.1 +89.87 +33.312 +89.76 +92.24 +88.66 +92.11 +28.38 +92.24 +12.15 +92.11 +90.56 +92.1 +89.59 +33.215 +92.11 +83.9 +92.24 +11.37 +67.53 +69.3 +33.175 +9.14 +101718 9.14 +69.7 +15.101 +84.16 +93.480a +84.18 +92.24 +67.17 +92.1 +53.74 +89.125 +15.37 +84.16 +93.410 +89.87 +67.55 +15.88 +84.16 +93.459 +67.44 +67.48 +60.12 +67.167 +15.101 +84.16 +93.480a +34.52 +93.211 +89.87 +85.55 +89.112 +92.11 +67.186 +60.23 +89.124 +58.37 +92.24 +53.74 +69.3 +34.50 +89.131 +101760 93.158b +92.24 +10.49 +92.24 +12.9{N:001} +101766 92.27 +33.61 +92.7 +91.10 +83.33 +92.24 +12.1 +90.21 +69.3 +33.253 +67.44 +15.7 +84.22 +92.24 +1.79 +92.24 +93.589 +89.92 +92.24 +93.501 +89.124 +101788 28.13 +92.24 +9.9 +92.24 +11.32 +92.24 +93.486a +92.24 +89.119 +93.387 +101800 33.212 +101802 90.21 +92.24 +39.45 +92.4 +67.9 +67.38 +33.215 +92.24 +31.104 +92.27 +67.9 +20.37 +101815 33.357 +89.5 +92.1 +92.24 +12.1 +67.44 +67.60 +60.22 +67.167 67.60 +67.55 +15.101 +84.16 +93.480a +89.108 +93.65 +15.169 +89.93 +93.364a +101834 15.101 +89.8 +28.38 +89.87 +33.151 +92.11 +92.24 +33.217 +92.27 +33.256 +83.9 +92.24 +11.37 +89.124 +28.67 +28.67 +92.24 +87.42 +89.62 +89.62 +89.48 +89.53 +15.230 +89.139 +15.230 +89.125 +69.8 +93.364a +92.24 +89.107 +92.1 +11.40 +13.4 +37.33 +53.51 +101870 90.44 +92.24 +34.29 +11.36 +101875 34.30 +24.50 +92.24 +37.133 +92.4 +92.27 +90.65 +89.119 +93.387 +93.169a +89.59 +92.4 +37.27 +92.27 +69.8 +101891 67.148 +39.21 +92.24 +36.18 +89.59 +92.24 +72.2 +92.24 +33.217 +68.11 +90.58 +92.7 +89.124 +90.15 +92.24 +87.42 +87.49 +87.49 +58.30 +67.9 +13.1 +92.23 +92.1 +65.6 +88.238 +9.1 +92.24 +12.1 +69.3 +88.238 +101922 92.1 +92.24 +87.42 +92.23 +59.72 +89.125 +89.134 +24.1 +90.21 +35.50 +92.24 +33.217 +92.24 +11.53 +64.14 +93.296 +92.24 +53.51 +89.23 +92.24 +42.4 +93.296 +89.57 +53.73 +92.24 +53.51 +42.4 +89.93 +92.1 +89.57 +92.24 +11.37 +89.87 +31.27 32.16 +92.24 +88.66 +92.24 +101960 92.1 +93.158b +89.92 +93.211 +89.92 +93.190b +92.24 +31.29 +36.7 +13.4 +34.42 8.32 +34.5 +34.42 +92.1 +89.92 +93.65 +89.59 +92.4 +90.41 +92.24 +11.37 +89.124 +92.11 +90.41 +92.24 +53.51 +101987 90.22 +92.24 +57.53 +29.16 +92.27 +89.93 +25.74 +58.31 +92.29 +90.45 +89.124 +101999 15.81 +93.211 +84.16 +93.405a +83.38 +85.26 +92.11 +39.1 +89.33 +30.118 +102011 67.17 +92.24 +15.81 +102015 84.3 +93.158b +89.108 +92.24 +11.37 +23.12 +89.124 +102023 15.81 +68.53 +89.92 +63.28 +92.25 +25.252 +92.24 +102031 11.51 +89.87 +88.229 +92.11 +89.93 +92.24 +63.21 +93.172 +89.52 +102041 93.65 +31.76 +92.11 +92.24 +88.227 +89.125 +102048 24.1 +90.21 +69.3 +41.36 +89.9 +92.24 +72.2 +92.24 +33.217 +33.69 +92.24 +93.211 +83.33 +59.23 +89.65 +92.6 +93.172 +13.4 +11.39 +89.92 +102069 93.171 +41.2 +92.16 +37.33 +92.24 +11.37 +41.32 +92.4 +58.8 +93.172 +89.92 +69.3 +63.20 +11.37 +88.295 +102085 28.1 +90.21 +69.3 +34.46 +9.1 +89.77 +42.11 +33.55 +102095 89.76 +31.85 +93.387 +93.169a +102100 92.4 +90.23 +93.387 +93.169a +31.85 +89.59 +34.46 +89.77 +31.85 +93.387 +102111 69.3 +89.77 +42.11 +33.55 +89.33 +89.77 +42.11 +33.55 +69.3 +34.46 +59.24 +9.11 +89.124 +89.65 +25.9 +34.46 +89.119 +93.387 +13.7 +102131 92.37 +88.295 +69.14 +93.387 +88.289 +35.20 +69.3 +13.107 13.80 +89.23 +89.65 +92.27 +20.54 +92.29 +67.55 +45.1 +36.29 +92.3 +28.49 +102150 92.1 +89.76 +33.55 +33.55 +74.27 +89.59 +12.1 +41.2 +93.387 +20.78 +89.124 +41.2 +67.130 +92.1 +89.124 +41.2 +89.119 +92.1 +93.387 +89.94 +92.27 +67.38 +41.2 +13.8 +8.4 +41.2 +89.76 +31.85 +92.24 +92.24 +12.15 +92.24 +12.15 +92.24 +25.43 +92.1 +89.93 +57.77 +92.25 +90.36 +92.1 +69.3 +76.24 +92.24 +88.66 +92.24 +12.1 +89.23 +89.65 +89.76 +33.55 +34.46 +89.46 +93.387 +89.63 +23.99 +91.14 +32.50 +93.441 +92.14 +92.7 +53.98 88.159 +92.27 +83.34 +24.16 +93.169a +93.387 +33.191 +20.76 +25.1 +92.29 +102222 27.12 +90.15 +92.7 +92.24 +12.18 +57.125 +89.77 +42.11 +33.55 +89.139 +89.77 +24.52 24.57 +31.102 +78.4 +32.50 +13.1 +68.3 +12.18 +67.38 +26.7 +68.22 +59.6 +90.66 +89.54 +89.65 +91.6 +102249 89.54 +89.50 +92.24 +35.31 +92.7 +92.24 +12.18 +102257 13.9 +76.7 +90.56 +92.7 +89.77 +42.11 +33.55 +89.139 +89.77 +24.52 24.57 +31.102 +64.14 +93.7 +31.85 +92.24 +12.1 +102274 57.227 +92.11 +13.62 +34.46 +89.46 +32.16 +90.21 +92.24 +89.3 +31.102 +92.29 +9.4 +93.7 +13.4 +89.94 +92.24 +33.53 +28.6 +90.21 +89.77 +31.102 +34.46 +92.24 +11.37 +92.24 +12.1 +33.216 +92.24 +93.7 +90.21 +88.69 +90.6 +92.6 +59.23 +92.24 +11.37 +89.52 +92.24 +89.3 +31.102 +88.69 +89.107 +92.24 +31.86 +93.7 +102320 59.7 +89.3 +42.11 +33.55 +13.1 +37.7 +33.473 +13.1 +89.23 +33.54 +90.21 +33.475 +59.24 +92.27 +69.3 +68.11 +59.23 +92.24 +33.54 +83.13 +92.24 +33.52 +92.24 +33.55 +92.24 +42.7 +92.11 +102348 90.21 +89.76 +33.55 +92.23 +34.46 +90.20 +92.24 +12.1 +28.58 +89.33 +92.24 +34.47 +89.77 +31.102 +23.88 +89.124 +92.24 +33.55 +69.3 +13.1 +89.3 +31.102 +89.125 +92.24 +42.7 +92.11 +23.88 +89.76 +92.11 +93.387 +92.4 +37.131 +89.121 +92.24 +33.473 +92.24 +33.55 +13.48 +90.36 +92.4 +33.474 +89.33 +33.54 +33.475 +59.24 +92.24 +20.76 +102396 3.4 +89.59 +90.41 +92.24 +11.37 +92.24 +88.70 +92.24 +93.7 +15.1 +90.6 +93.169a +93.387 +89.59 +92.24 +33.288 +92.24 +12.18 +57.125 +89.76 +92.24 +31.102 +11.23 +89.8 +9.1 +33.69 +64.11 89.74 +9.1 +76.18 +34.44 +92.23 +76.24 +89.139 +59.73 +102431 33.69 +92.24 +33.288 +92.24 +93.7 +89.92 +92.24 +10.29 +92.11 +69.3 +33.69 +89.92 +92.24 +10.29 +64.12 +90.23 +59.1 +89.125 +64.12 +90.23 +60.10 +89.92 +92.24 +10.29 +92.6 +92.27 +13.4 +93.387 +102460 92.29 +33.140 +34.44 +76.19 +90.1 +92.24 +12.1 +92.24 +67.48 +60.36 +89.92 +60.26 +67.167 +13.80 +33.55 +69.3 +76.25 +89.48 +92.24 +76.26 +92.24 +33.288 +89.23 +89.65 +89.77 +33.55 +92.24 +57.140 +67.130 +89.77 +33.288 +89.124 +92.24 +93.7 +90.8 +33.288 +57.102 +92.24 +12.1 +89.50 +92.15 +92.24 +33.55 +92.24 +36.28 +89.60 +59.72 +67.119 +102510 92.24 +10.29 +92.27 +33.286 +33.325 +90.4 +12.28 +90.6 +9.17 +31.22 +102521 92.24 +31.22 +63.4 +69.3 +13.1 +89.124 +92.24 +12.1 +63.4 +13.4 +89.50 +92.24 +33.55 +90.31 +92.24 +33.288 +92.24 +12.1 +69.3 +13.107 +89.23 +89.65 +102544 33.333 +92.24 +74.5 +23.92 +71.14 +70.2 +89.77 +33.333 +13.1 +92.24 +34.46 +89.125 +13.125 +92.24 +33.53 +92.24 +59.23 +37.7 +88.118 +89.59 +92.24 +33.288 +89.77 +31.102 +93.169a +93.387 +102571 92.24 +31.102 +89.124 +67.17 +92.24 +102577 92.24 +31.102 +37.7 +33.55 +37.119 +13.125 +67.119 +92.24 +67.62 +28.38 +31.102 +89.52 +92.24 +33.55 +36.5 +92.4 +13.3 +67.119 89.57 +93.387 +89.59 +89.77 +31.102 +34.46 +89.124 +102602 92.24 +31.102 +67.130 +37.7 +36.5 +13.1 +89.23 +59.23 +9.4 +12.1 +13.4 +89.76 +92.24 +31.102 +89.5 +93.387 +93.169a +89.23 +59.7 +90.23 +93.387 +53.41 +93.387 +49.1 +69.3 +13.70 +93.172 +69.7 +11.40 +69.3 +13.70 +87.76 +69.7 +87.84 +69.3 +13.70 +79.102 +102640 79.103 +89.23 +59.23 +92.7 +63.4 +13.4 +89.119 +93.387 +93.169a +102650 89.30 +92.7 +93.387 +89.46 +92.24 +93.7 +10.29 +13.4 +89.8 +33.288 +57.139 +102662 33.140 +67.136 +67.139 +67.78 +92.24 +57.139 +9.43 +13.4 +92.23 +58.41 +87.76 +57.12 +59.23 +13.4 +89.125 +37.7 +36.5 +89.92 +46.4 +13.1 +67.119 +92.24 +67.2 +92.24 +10.14 +102688 89.93 +92.4 +67.139 +13.4 +9.43 +37.7 +92.24 +58.19 +92.24 +41.38 +102699 37.27 +89.124 +102703 92.24 +67.69 +92.24 +67.1 +15.68 +92.24 +12.1 +92.24 +12.15 +92.11 +13.80 +89.3 +9.34 +13.80 +37.7 +33.55 +89.59 +92.24 +37.7 +33.55 +37.131 +89.59 +92.24 +35.53 +57.128 +89.94 +89.33 +13.4 +58.26 +15.68 +92.24 +12.1 +92.24 +12.18 +92.24 +12.15 +92.11 +84.22 +92.24 +26.3 +92.4 +33.83 +12.12 +92.24 +12.12 +89.52 +13.4 +67.130 +87.76 +89.125 +10.42 +102755 89.30 +10.42 +89.93 +57.139 +90.4 +12.1 +89.125 +89.136 +67.47 +69.3 +28.1 +12.1 +37.25 +92.24 +58.8 +69.3 +13.4 +12.22 +89.136 +67.38 +27.18 +12.1 +102778 89.126 +31.27 +90.1 +12.1 +92.16 +31.60 +67.55 +84.17 +92.24 +74.25 +89.92 +65.16 +58.19 +92.27 +67.55 +67.55 +102795 25.1 +41.27 +67.178 +89.92 +67.174 +89.92 +67.78 +89.92 +67.168 +25.252 +92.7 +89.62 +89.62 +89.54 +42.47 +90.41 +92.7 +13.48 +64.12 +92.1 +89.33 +89.93 92.1 +64.12 +92.7 +11.23 +33.170 +92.7 +92.23 +92.1 +88.128 +89.94 +28.1 +90.21 +102829 74.23 +92.24 +8.4 +33.215 +92.7 +92.24 +60.47 +91.12 +69.3 +92.24 +27.46 +92.7 +89.5 +92.24 +8.4 +92.1 +88.195 +69.7 +34.37 +89.125 +64.12 +12.28 +12.1 +34.53 +92.1 +64.12 +93.387 +93.169a +89.50 +92.28 +92.24 +25.118 +92.7 +102863 33.262 +92.7 +90.21 +89.65 +71.2 +92.24 +8.23 +92.7 +19.42 +57.71 +92.1 +89.52 +39.11 +92.7 +13.48 +33.251 +92.7 +25.46 +92.7 +69.3 +88.4 +89.125 +34.36 +92.7 +25.1 +89.59 +92.11 +25.46 +102892 88.4 +25.46 +89.5 +88.4 +67.88 +102898 69.3 +102900 67.136 +92.24 +85.23 +92.1 +83.9 +92.7 +9.46 +92.1 +92.27 +67.55 +24.87 +67.119 +102913 58.4 +93.387 +89.119 +92.7 +102918 25.1 +85.23 +83.9 +92.7 +67.38 +102924 58.43 +92.24 +14.74 +92.1 +89.33 +32.9 +89.5 +92.7 +33.69 +92.1 +92.24 +37.7 +33.55 +13.1 +25.1 +92.24 +33.55 +69.11 +32.1 +102944 33.54 +90.21 +93.7 +57.1 +60.11 +10.42 +60.10 +89.3 +92.24 +87.83 +89.92 +60.10 +89.3 +92.24 +87.84 +91.2 +89.136 +92.24 +89.3 +92.24 +87.83 +89.8 +58.10 +23.52 +89.136 +92.24 +89.3 +92.24 +87.84 +89.76 +102975 33.288 +102978 33.18 +102980 92.29 +13.4 +60.11 +34.44 +89.136 +60.10 +90.15 +1.46 +93.581 +89.57 +37.26 +13.129 +102994 93.9 +102996 92.24 +93.9 +93.581 +1.46 +58.68 +83.13 +92.24 +93.410 +89.94 +58.68 +92.24 +67.38 +93.480a +103010 37.25 +89.108 +92.24 +58.26 +92.11 +89.136 +92.24 +83.48 +93.480b +37.134 +13.1 +103022 13.4 +58.64 +92.4 +103026 33.54 +25.122 +23.56 +92.24 +69.3 +23.52 +33.85 68.81 +89.92 +33.81 +92.24 +69.3 +23.54 +89.33 +59.1 +92.24 +10.36 +92.24 +35.55 +78.28 +64.18 +92.24 +103048 92.24 +10.53 +103051 11.23 +92.7 +89.8 +93.180 +33.288 +58.26 +13.4 +91.11 +64.13 +67.47 +92.24 +89.8 +58.10 +23.52 +39.45 +92.24 +89.8 +12.18 +61.9 +89.93 +67.38 +91.2 +92.14 +33.69 +92.24 +33.53 +15.44 +92.24 +87.83 +89.92 +92.24 +10.42 +92.11 +89.23 +69.5 +69.5 +57.138 +92.24 +10.42 +92.24 +87.83 +89.108 +92.24 +10.42 +92.24 +87.84 +89.47 +11.23 +13.4 +69.3 +87.83 +58.26 +89.125 +92.24 +87.84 +92.24 +37.133 +92.4 +93.387 +37.135 +89.50 +13.30 +89.92 +69.3 +67.55 +6.8 +37.26 +37.4 +91.13 +92.1 +93.294a +33.69 +92.7 +90.21 +89.67 +53.51 +93.387 +92.7 +92.23 +35.2 +89.94 +33.223 +67.55 +59.24 +9.24 +53.51 +90.21 +71.27 +13.4 +63.1 +92.24 +33.55 +42.7 +37.136 +89.122 +93.387 +92.18 +89.76 +33.55 +34.46 +92.24 +88.66 +34.26 90.72 +103155 92.4 +12.18 +89.77 +31.102 +25.61 +34.46 +25.63 +103163 89.119 +93.387 +93.169a +69.9 +53.51 +69.9 +11.52 +92.12 +74.9 +89.125 +31.102 +89.76 +25.43 +42.3 +41.14 +72.12 +92.14 +13.147 +92.7 +72.2 +69.3 +33.301 +92.24 +33.303 +69.3 +90.16 +92.24 +33.312 +92.7 +59.15 +5.11 +63.1 +92.24 +63.12 +5.12 +92.1 +31.82 +90.23 +92.7 +89.119 +12.9{N:001} +90.21 +92.23 +58.36 +31.1 +103209 92.24 +25.244 +92.7 +90.80 +92.24 +56.30 +71.8 +92.18 +13.4 +103219 11.23 +89.65 +92.1 +53.51 +67.128 +33.256 +92.15 +67.128 +39.45 +89.46 +76.26 +92.24 +25.181 +92.24 +6.27 +71.28 +103236 19.18 +92.24 +39.41 +92.7 +89.23 +92.7 +89.60 +37.133 +33.312 +11.23 +103247 69.3 +92.24 +37.133 +89.57 +22.46 +92.24 +26.7 +89.125 +89.76 +92.24 +25.43 +35.27 +92.26 +89.23 +92.24 +59.23 +33.55 +33.144 +90.10 +60.10 +33.98 +90.10 +92.24 +25.43 +92.24 +11.89 +92.6 +64.12 +92.10 +89.124 +89.65 +92.26 +20.26 +89.92 +20.45 +27.58 +89.62 +90.1 +92.26 +20.47 +89.124 +33.69 +12.18 +41.11 +103292 25.20 +26.7 +69.5 +69.5 +13.126 +89.23 +92.24 +26.7 +25.20 +90.31 +92.24 +12.18 +89.94 +92.24 +12.18 +90.31 +92.24 +26.7 +103311 92.29 +92.26 +39.1 +89.49 +69.3 +71.8 +92.27 +25.1 +92.29 +90.45 +89.124 +89.65 +12.18 +36.1 +69.3 +13.1 +37.7 +33.55 +103330 28.58 +13.1 +92.24 +42.11 +92.24 +26.7 +103337 13.4 +88.271 +88.261 +88.272 +53.63 +53.100 +39.10 +39.22 +88.162 +88.178 +88.167 +39.13 +63.27 +88.160 +88.283 +88.287 +89.92 +92.24 +64.1 +92.29 +92.27 +33.423 +92.7 +64.14 +33.423 +90.21 +92.24 +92.24 +92.31 +42.8 +37.64 +12.1 +69.3 +57.131 +89.124 +92.24 +42.13 +92.24 +12.18 +13.4 +25.43 +25.123 +25.248 +25.167 +88.67 +57.109 88.1 +31.88 +88.59 +88.83 +90.31 +92.24 +92.31 +69.3 +13.69 +33.333 +103393 92.24 +92.24 +93.387 +93.169a +92.24 +26.7 +20.76 +89.105 +92.24 +25.30 +89.92 +92.24 +25.20 +89.65 +23.88 +12.18 +12.18 +89.93 +41.12 +69.3 +13.48 +88.222 +92.26 +88.188 +92.26 +88.161 +11.23 +89.67 +103422 27.33 +9.1 +13.8 +92.12 +88.297 +92.7 +92.24 +12.20 +75.5 +92.24 +92.31 +89.84 +30.6 +88.59 +27.58 +92.10 +89.62 +89.93 +92.6 +88.308 +92.26 +92.24 +22.4 +25.177 +103447 61.9 +36.17 +92.24 +33.333 +92.24 +93.387 +89.23 +89.65 +31.29 +92.12 +13.4 +92.13 +92.23 +13.4 +31.12 +92.25 +89.124 +92.24 +42.12 +92.25 +27.45 +59.27 +103470 67.47 +90.23 +92.25 +58.50 +92.24 +25.203 +90.65 +89.92 +69.3 +90.23 +92.24 +58.37 +89.23 +59.27 +92.24 +57.4 +15.208 +25.177 +103489 57.98 +92.24 +33.225 +92.24 +33.260 +92.24 +33.225 +89.5 +59.23 +88.1 +69.3 +31.67 +12.1 +69.3 +33.409 +89.23 +71.8 +92.27 +43.6 +9.1 +92.29 +89.93 +43.14 +91.15 +92.24 +43.6 +90.41 +92.24 +26.7 +92.25 +90.16 +92.24 +26.7 +43.14 +88.267 +89.124 +92.24 +43.6 +90.23 +92.24 +12.18 +90.16 +92.24 +12.18 +43.14 +23.88 +67.96 +103537 92.24 +88.4 +42.7 +69.3 +25.288 +89.23 +67.1 +57.4 +43.14 +69.3 +25.288 +89.46 +89.50 +67.139 +22.45 +103553 13.9 +92.24 +88.1 +90.58 +59.23 +89.94 +78.7 +90.58 +92.24 +10.11 +92.24 +31.102 +24.1 +79.126 +33.35 +92.7 +33.61 +92.24 +92.2 +8.30 +59.7 +25.1 +88.236 +89.5 +26.7 +92.29 +37.33 +92.7 +53.51 +103584 92.24 +6.27 +92.24 +93.387 +103589 39.45 +103591 69.8 +92.24 +53.51 +92.37 +33.55 +36.19 +91.2 +25.1 +92.7 +53.51 +89.59 +89.5 +92.24 +92.9 +8.63 +33.368 +89.124 +92.1 +69.3 +41.1 +33.368 +89.131 +103614 89.5 +92.24 +6.27 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +90.4 +92.27 +92.1 +41.38 +20.76 +89.92 92.1 +41.38 +89.23 +92.12 +13.4 +69.9 +53.51 +69.9 +11.52 +89.125 +58.71 +42.38 +89.93 +59.7 +92.24 +33.335 +92.29 +41.12 +22.42 25.248 +89.92 +88.76 +90.57 +92.11 +103651 90.57 +92.24 +93.182c +92.24 +12.1 +92.24 +63.21 +22.7 +92.1 +92.23 +90.91 +89.23 +92.1 +92.24 +33.481 8.55 +92.24 +93.169a +83.47 +92.24 +8.1 +92.1 +90.84 +92.24 +88.66 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +90.60 +92.24 +26.9 +92.7 +11.23 +72.6 +93.294a +53.74 +93.387 +93.169a +89.76 +30.59 +12.1 +92.24 +11.27 +92.24 +85.1 +83.13 +93.471 +89.92 +31.86 31.87 +89.119 +93.387 +93.169a +92.7 +25.89 +89.92 +22.42 +90.15 +12.1 +12.12 +92.4 +89.92 +12.9{N:001} +93.169a +93.387 +33.362 +92.24 +12.1 +89.92 +12.12 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +88.69 +92.4 +89.5 +58.28 +88.70 +12.21 26.10 +83.13 +92.24 +1.12 +89.119 +93.387 +89.34 +30.92 +92.4 +89.119 +92.11 +67.17 +42.37 +1.1 +13.1 +92.4 +53.46 88.24 +89.92 +88.34 +90.20 +92.11 +89.84 +25.43 +30.84 +92.4 +13.62 +35.53 +90.4 +93.169a +93.387 +90.59 +92.37 +89.8 +92.24 +25.88 +92.24 +30.59 +92.11 +89.57 +33.354 +87.23 +92.24 +88.66 +92.11 +92.27 +88.66 +92.4 +89.119 +92.24 +25.43 +89.119 +92.27 +90.65 +92.24 +37.128 +89.76 +92.24 +23.107 +92.11 +92.24 +40.8 +92.24 +88.297 +89.8 +92.24 +78.15 +92.24 +88.66 +92.11 +92.27 +59.54 +90.59 +92.4 +89.84 +59.23 +32.32 +89.92 +32.30 +28.26 +92.4 +92.24 +28.77 +92.24 +30.59 +92.11 +89.8 +92.24 +25.88 +92.11 +92.27 +30.62 +89.76 +92.11 +89.57 +30.68 +92.24 +67.69 +92.24 +67.145 +63.8 +92.24 +59.23 +103835 92.24 +93.387 +92.24 +83.23 +92.24 +1.11 +89.92 +92.24 +83.46 +92.24 +1.39 +103847 92.11 +89.119 +92.27 +89.93 +30.105 +30.84 +89.8 +30.63 +92.24 +92.24 +59.23 +42.3 +89.8 +92.24 +30.57 +92.24 +30.59 +92.11 +89.57 +92.24 +13.51 +103869 33.354 +87.23 +92.11 +92.4 +92.24 +25.60 +90.23 +92.24 +93.387 +89.119 +92.27 +89.93 +92.7 +31.56 +92.24 +33.260 33.98 +92.24 +72.2 +92.24 +33.217 +92.24 +21.26 +92.7 +89.119 +92.27 +89.93 +31.102 +33.484 +92.24 +12.18 +92.24 +33.288 +92.24 +88.24 +103904 13.4 +57.170 +92.24 +57.140 +92.4 +67.119 +37.128 +92.24 +57.62 +89.57 +33.354 +92.24 +87.23 +92.11 +103920 89.93 92.1 +33.212 +92.24 +103925 31.102 +90.23 +92.24 +12.9{N:001} +93.169a +89.92 +92.24 +25.43 +92.24 +90.41 +59.23 +92.24 +11.27 +69.3 +68.34 +33.349 +90.24 +92.7 +29.18 +90.45 +67.136 +92.24 +33.178 +92.1 +90.22 +92.24 +12.1 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +12.12 +92.24 +87.23 +57.71 +92.7 +12.18 30.6 +32.32 32.37 +89.92 +28.38 +89.48 +28.2 +92.11 +14.39 +92.24 +32.24 +92.24 +26.3 +92.7 +89.48 +92.24 +32.4 +92.7 +92.14 +13.4 +92.24 +25.61 +92.24 +33.312 +92.11 +92.14 +92.24 +78.15 +92.24 +87.23 +92.24 +57.132 +92.11 +83.9 89.5 +92.24 +11.27 +89.92 +92.14 +92.24 +78.33 +78.2 +92.24 +76.1 +92.11 +90.41 +92.4 +92.24 +31.102 +89.8 +92.24 +42.3 +92.24 +76.6 +92.24 +79.62 +92.11 +92.27 +104020 90.56 +92.24 +93.387 +23.94 +92.11 +89.121 +23.121 +89.87 +17.17 87.36 +83.23 +82.8 +92.11 +83.13 +92.24 +1.12 +87.31 +59.23 +12.44 37.56 +89.92 +12.44 37.38 +89.92 +12.44 76.1 +89.92 +12.44 37.52 +89.92 +59.23 +33.126 +33.127 +69.3 +104050 67.136 +92.24 +67.143 +92.29 +89.125 +89.93 +67.136 +92.24 +67.62 +89.93 +59.23 +37.31 +37.8 +92.24 +37.8 +92.11 +89.92 +92.11 +37.98 +87.51 +87.30 +59.23 +92.24 +11.33 +104075 13.4 +92.24 +11.34 +92.11 +92.24 +59.32 +92.24 +92.24 +59.23 +89.5 +59.23 +59.33 +104088 92.7 +13.1 +74.28 +92.24 +88.297 +89.92 +92.24 +88.289 +92.7 +89.5 +92.27 +67.30 +41.11 +89.8 +92.24 +12.44 +92.24 +12.44 +104107 89.8 +92.24 +12.44 +92.24 +12.44 +92.24 +1.7 12.44 +92.24 +12.37 +92.24 +67.38 +42.3 +90.56 +92.24 +58.26 +92.24 +31.107 36.23 +83.9 +92.27 +89.93 +92.4 +59.23 +41.3 +67.30 +89.5 +92.24 +25.20 +92.24 +26.7 +92.4 +42.7 +92.24 +25.2 +92.24 +26.7 +89.92 +92.24 +26.14 +89.93 +13.4 +58.26 +38.10 +58.8 +64.12 +89.93 +92.24 +63.21 +89.124 +92.24 +12.1 +59.57 +13.1 +89.5 +88.76 +89.26 +92.24 +78.3 +25.43 +92.11 +92.27 +25.43 +92.4 +104170 13.1 +92.4 +74.28 +92.24 +88.297 +23.95 +92.24 +93.387 +88.66 +104180 21.27 +104182 23.95 +89.87 +17.18 +83.13 +92.24 +1.12 +89.119 +93.387 +93.169a +89.59 +28.51 +67.136 +92.24 +67.143 +92.24 +15.83 +92.24 +78.33 +78.15 +92.24 +88.66 +92.11 +89.5 +88.67 +90.57 +92.4 +89.119 +93.387 +93.169a +89.23 +92.24 +88.66 +104215 21.27 +89.76 +31.102 +104219 92.29 +69.3 +90.16 +92.7 +12.1 +92.24 +57.84 +69.3 +89.25 +42.11 +104231 92.12 +33.368 +89.23 +13.4 +92.11 +42.30 +42.35 +90.6 +93.387 +93.169a +89.60 +42.11 +88.1 +92.27 +77.4 +92.24 +12.1 +89.59 +89.84 +92.11 +41.11 +89.47 +29.7 +90.21 +67.30 +92.7 +92.24 +11.37 +89.5 +10.1 +92.24 +33.131 +11.53 +90.1 +92.24 +33.131 +53.51 +89.5 +8.63 +42.32 +90.21 +13.1 +92.24 +67.78 +92.30 +89.120 +93.387 +11.75 +92.24 +11.67 +92.24 +93.182b +89.92 +11.73 +92.24 +34.44 +92.24 +33.288 +25.62 +69.3 +90.65 +89.92 +12.2 +83.13 +92.24 +41.38 +89.124 +91.4 +89.119 +93.387 +93.169a +92.7 +92.24 +67.30 +13.1 +83.30 +85.7 +83.26 +89.76 +92.24 +23.107 +92.24 +93.387 +104315 92.11 +13.4 +92.24 +22.42 +92.4 +92.24 +13.9 +92.24 +59.25 +63.4 +104326 92.24 +7.62 +92.24 +34.39 +92.24 +39.10 +20.53 +89.76 +92.24 +8.4 +92.11 +92.24 +33.55 +92.24 +33.330 +89.141 +33.332 +76.26 +89.59 +92.24 +60.11 +42.35 +89.119 +92.37 +13.62 +63.4 +58.71 +9.1 +13.9 +22.42 +89.93 +40.1 +92.24 +59.25 +89.119 +63.4 +11.34 +92.24 +12.1 +89.76 +92.24 +6.27 +13.44 +92.24 +39.10 +89.76 +92.11 +89.93 +15.81 +33.215 +22.42 +92.7 +92.24 +83.30 +89.92 +22.42 +92.24 +83.26 +91.15 +89.76 +92.11 +74.12 +92.24 +33.72 +92.24 +59.25 +89.119 +60.10 +12.18 +84.18 +92.24 +12.12 +89.46 +89.50 +67.130 +13.4 +11.73 +89.92 +11.77 +89.125 +13.4 +11.72 +92.24 +11.27 +89.92 +10.11 +92.24 +12.1 +45.5 +83.46 +92.24 +7.41 +92.24 +53.74 +89.92 +53.79 +13.4 +7.44 +92.37 +93.387 +93.169a +89.119 +92.27 +59.23 +7.1 +62.1 +59.62 +13.62 +7.15 +53.46 +89.119 +12.9{N:001} +89.119 +92.27 +89.93 +92.7 +45.6 +13.62 +85.70 +92.24 +12.1 +89.76 +12.18 +92.29 +89.60 +92.1 +93.294a +92.24 +37.117 +92.24 +93.387 +93.169a +90.36 +92.7 +92.24 +11.37 +89.65 +91.6 +33.212 +92.24 +30.68 +92.24 +57.103 +92.24 +12.1 +92.24 +104473 92.1 +90.41 +92.7 +91.15 +104478 28.38 +28.26 +92.1 +92.24 +28.77 +64.14 +33.66 +67.106 +67.106 +90.25 +92.27 +74.5 +33.68 +32.2 +92.24 +32.6 +92.1 +89.5 +92.24 +28.77 +92.24 +93.387 +92.27 +58.37 +67.144 +69.3 +28.26 +92.24 +9.2 +92.24 +9.2 +64.12 +67.38 +28.38 +92.24 +53.46 +53.74 +92.11 +89.92 +53.79 +90.6 +12.18 +13.4 +92.24 +11.37 +57.134 +89.92 +11.9 +89.92 +57.8 +92.24 +33.288 +89.119 +93.387 +93.169a +89.76 +92.24 +33.217 +92.27 +35.20 +13.48 +89.8 +92.24 +57.84 +92.24 +88.66 +92.24 +12.1 +92.24 +104548 92.1 +104550 92.24 +42.3 +92.24 +76.1 +92.11 +92.1 +92.24 +87.66 +59.23 +11.27 +104561 92.24 +57.103 +92.29 +92.24 +11.37 +33.215 +92.24 +32.23 +78.15 +92.24 +93.387 +104573 28.36 +92.14 +92.24 +30.68 +92.24 +28.77 +92.24 +28.80 +67.133 +92.24 +67.133 +83.13 +92.24 +12.1 +92.24 +92.24 +59.23 +42.35 +89.59 +28.26 +67.38 +92.24 +12.44 +89.92 +92.24 +12.44 +83.13 +92.24 +1.12 +90.4 +92.24 +11.33 +92.24 +58.46 +32.32 +92.24 +12.1 +89.8 +30.63 +92.24 +67.143 +92.27 +90.45 +90.6 +92.24 +93.387 +93.169a +92.24 +12.9{N:001} +92.4 +89.119 +92.27 +90.65 +92.24 +25.158 +89.92 +33.72 +89.84 +31.82 +89.76 +92.24 +31.85 +92.11 +89.47 +33.163 +69.3 +25.288 +89.26 +92.24 +22.2 +92.1 +90.36 +92.7 +104647 13.4 +25.205 +92.7 +92.29 +89.60 +53.61 +92.24 +53.61 +92.1 +84.18 +92.24 +12.12 +89.3 +92.27 +59.23 +11.56 +83.13 +1.11 +89.92 +83.46 +1.39 +33.127 +89.59 90.22 +90.51 +92.7 +89.8 +92.24 +78.15 +92.24 +87.23 +92.11 +76.1 +76.10 +90.4 +92.24 +12.18 +92.11 +83.13 +92.24 +26.1 +26.1 +85.69 +92.24 +93.387 +89.76 +92.24 +31.85 +83.13 +92.24 +26.3 +92.7 +89.5 +25.43 +74.18 +89.92 +31.94 +89.59 90.22 +74.10 +32.18 +89.107 +59.23 +92.24 +11.27 +92.14 +92.24 +81.15 +89.92 +81.12 +89.92 +81.3 +89.92 +81.8 +89.95 +27.18 +92.24 +78.33 +92.24 +28.17 +25.43 +92.24 +93.387 +89.59 90.22 +59.37 +78.51 +63.2 +92.24 +59.32 +92.24 +12.1 +104737 92.24 +74.5 +42.7 +78.34 +78.29 +59.23 +92.27 +33.163 +89.139 +31.6 +89.8 +92.24 +76.1 +92.24 +42.3 +83.13 +92.4 +92.11 +92.24 +33.357 +89.76 +92.24 +11.33 +89.92 +89.76 +93.387 +93.169a +67.95 +59.23 +92.24 +67.144 +92.24 +67.95 +92.24 +67.95 +72.6 +89.50 +33.168 +92.7 +92.1 +92.24 +37.117 +89.119 +12.9{N:001} +66.6 +41.11 +92.24 +33.313 +92.27 +33.312 +89.79 +78.44 +88.53 +89.92 +88.59 +89.123 +25.167 +25.171 +92.26 +89.84 +25.43 +68.63 +13.32 +92.24 +63.3 +92.24 +12.18 26.9 +89.76 +92.24 +63.7 +92.24 +25.248 +63.4 +11.34 +89.92 +60.10 +12.18 +64.14 +104816 33.312 +89.48 +60.10 +25.61 +92.24 +33.312 +92.7 +60.10 +12.9{N:001} +60.10 +31.102 +60.10 +53.41 +60.10 +12.1 +89.92 +12.12 +59.23 +92.24 +37.9 +59.23 +89.92 +84.29 +59.23 +89.92 +89.119 +59.23 +104844 92.22 +59.27 +92.4 +104848 92.24 +88.66 +89.8 +92.24 +81.1 +92.24 +57.84 +92.24 +93.387 +89.47 +33.69 +15.101 +84.22 +1.13 +55.24 +55.23 +104865 57.73 +92.24 +9.1 +104869 92.24 +15.101 +92.14 +13.4 +89.131 +104875 90.21 +89.93 +15.107 +84.22 +92.24 +83.54 +1.79 +92.24 +1.39 +92.24 +15.107 +92.37 +13.4 +89.93 +92.24 +15.101 +83.49 87.31 +59.23 +92.24 +1.11 +89.59 +59.37 +92.24 +59.23 +104900 92.11 +37.98 +89.104 +92.24 +53.74 +89.104 +92.24 +53.79 +89.104 +92.24 +53.76 +89.104 +92.24 +53.72 +89.92 +33.243 +89.60 +92.24 +75.5 +92.24 +11.27 +89.57 +42.42 +35.19 +89.57 +42.34 +92.24 +11.34 +92.24 +93.387 +67.119 +13.16 +92.24 +59.23 +78.51 +92.24 +63.3 +92.24 +31.102 +89.92 +92.24 +28.2 +92.24 +12.15 +92.24 +12.15 +78.51 +9.1 +88.100 +78.51 +81.1 +67.156 +92.24 +59.32 +92.24 +93.387 +89.59 +67.130 +13.4 +9.43 +16.12 +89.92 +15.190 +59.23 +14.4 +92.24 +33.236 +89.76 +92.24 +88.157 +92.24 +9.1 +89.76 +88.270 +89.60 +92.24 +88.158 +92.24 +31.8 +89.124 +33.251 +89.84 +25.43 +59.62 +92.24 +59.23 +90.23 +92.11 +92.27 +13.4 +92.24 +87.51 +93.387 +90.16 +92.27 +63.2 +92.24 +11.34 +62.1 +89.92 +63.5 +89.76 +59.23 +8.60 +92.24 +35.31 +89.8 +42.3 +89.84 +81.1 +92.22 +59.27 +63.14 +92.24 +23.188 +92.24 +11.34 +42.29 +89.57 +42.34 +92.25 +89.5 +25.43 +89.50 +92.29 +33.69 +105027 33.319 +89.119 +12.9{N:001} +67.130 +92.7 +41.11 +64.14 +89.93 +92.24 +11.37 +41.11 +13.8 +65.37 +92.24 +30.5 +92.11 +32.44 +105045 92.24 +26.14 +11.75 +92.24 +23.88 +92.24 +12.1 +89.26 +92.24 +28.13 +92.24 +13.69 +83.13 +92.11 +89.26 +92.24 +27.52 +92.24 +26.3 +92.11 +105066 25.197 +92.25 +57.77 +92.24 +88.272 +89.48 +41.20 +88.261 +58.28 +89.80 +25.22 +89.124 +92.7 +69.3 +61.9 +27.12 +92.24 +93.387 +89.65 +91.6 +92.11 +31.56 +89.92 +89.119 +92.11 +33.224 +64.14 +85.1 +72.2 +89.119 +92.24 +93.169a +68.37 +92.7 +89.4 +92.24 +67.18 +41.3 +92.24 +41.43 +41.43 +92.24 +88.266 +105110 92.24 +25.12 +92.24 +31.12 +89.94 +58.72 +92.24 +30.6 +92.24 +26.14 +92.7 +89.92 +49.1 +92.24 +58.71 +9.1 +92.24 +89.8 +12.1 +42.35 +13.8 +88.13 +89.92 +88.25 +92.24 +72.2 +89.47 +68.37 +92.24 +33.254 +33.70 +72.2 +59.27 +90.60 +92.24 +11.89 +92.11 +89.33 +13.4 +92.26 +63.17 +88.174 +91.12 +69.3 +88.289 +92.24 +1.28 +69.3 +15.114 +67.33 +88.176 +92.7 +69.7 +13.142 +71.6 +92.24 +12.34 +92.24 +57.232 +67.130 +57.232 +89.124 +89.126 +42.47 +42.41 +92.24 +57.4 +8.30 +92.24 +88.1 +89.59 +74.12 +57.96 +92.24 +57.40 +105186 59.24 +33.98 +20.14 +90.16 +92.24 +33.101 +92.7 +69.3 +15.40 +89.125 +89.65 +92.12 +65.20 +89.60 +42.34 +92.24 +57.40 +89.59 +105205 88.66 +92.24 +24.52 +89.93 +69.3 +25.275 +92.24 +12.18 +92.24 +88.24 +92.24 +12.1 +90.6 +92.27 +33.484 +67.119 + +37.128 +59.23 +88.201 +89.92 +88.178 +89.92 +88.173 +89.92 +33.84 +89.92 +33.400 +90.96 +105235 92.7 +89.105 +59.23 +88.199 +89.94 +13.3 +90.59 +92.26 +88.68 +25.51 +40.10 +92.26 +64.14 +89.93 +92.24 +12.1 +89.119 +93.387 +40.10 +92.7 +89.50 +13.3 +41.45 +92.24 +12.1 +64.12 +9.46 +25.45 +105264 41.11 +89.84 +25.43 +64.14 +89.93 +92.24 +93.387 +25.43 +105274 37.111 +92.25 +90.36 +92.4 +53.16 +105280 53.20 +92.24 +12.1 +105284 79.45 +79.46 +105287 88.271 +89.92 +88.261 +59.24 +89.139 +25.22 +69.8 +33.93 +83.9 +92.7 +64.14 +66.1 +11.27 +89.93 +88.149 +89.92 +33.379 +89.139 +33.34 +92.27 +69.3 +66.1 +89.125 +89.126 +33.349 +105313 92.29 +28.1 +32.16 +90.21 +59.24 +88.274 +89.139 +53.39 +89.139 +25.23 +89.106 +89.106 +53.64 +69.3 +57.1 +57.132 +89.5 +92.24 +37.64 +92.24 +93.387 +89.92 +12.1 +92.23 +92.7 +31.12 +72.10 +33.98 +89.23 +89.26 +92.29 +15.81 +92.24 +38.10 +92.24 +12.1 +90.57 +92.24 +58.26 +92.24 +36.23 +89.50 +69.3 +13.3 +57.8 +92.11 +89.23 +13.4 +67.9 +88.125 +89.124 +67.38 +14.36 +89.119 +12.9{N:001} +64.12 +11.14 +11.14 +41.11 +89.23 +92.24 +42.13 +92.24 +14.36 +89.141 +59.23 +88.1 +89.92 +88.13 +89.92 +72.2 +27.45 +92.14 +13.1 +25.94 +92.24 +12.9{N:001} +105391 69.3 +34.4 +92.24 +42.11 +92.24 +65.34 +92.24 +88.125 +89.124 +89.126 +105402 33.417 +89.23 +92.24 +28.71 +13.107 +90.1 +92.11 +88.150 +13.1 +105412 33.69 +89.124 +92.24 +59.23 +33.417 +90.1 +92.24 +14.36 +28.36 +89.23 +59.24 +92.24 +28.36 +14.36 +13.4 +89.47 +33.69 +23.94 +92.24 +23.104 +105433 23.94 +89.121 +92.24 +23.121 +105438 14.39 +92.6 +92.24 +93.387 +89.50 +27.58 +72.19 +92.16 +41.11 +69.3 +64.12 +32.54 +89.125 +64.12 +32.33 +65.42 68.73 +92.24 +22.45 +89.33 +92.24 +67.142 +88.110 +13.1 +105463 69.3 +13.3 +32.52 +89.125 +32.5 +92.14 +92.24 +30.59 +92.24 +12.9{N:001} +105474 69.3 +88.285 +6.197 +89.76 +92.27 +13.104 +88.96 +89.125 +59.37 +89.5 +12.18 +33.70 +92.25 +33.112 +89.92 +33.114 +89.92 +33.110 +12.21 26.10 +33.109 +89.92 +33.111 +92.24 +26.3 +92.7 +92.24 +12.9{N:001} +33.349 +67.88 +89.28 +59.23 +90.23 +33.126 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +12.1 +105515 12.12 +36.18 +92.26 +89.26 89.84 +53.59 +93.387 +92.24 +10.54 +92.24 +57.4 +10.53 +64.12 +92.24 +12.9{N:001} +89.33 +10.53 +13.4 +87.51 +92.24 +10.54 +64.12 +89.93 +92.24 +93.387 +87.51 +92.24 +11.33 +92.37 +21.22 +92.24 +11.34 +91.2 +64.12 +92.24 +11.33 +37.31 +92.24 +93.387 +105554 89.93 +92.24 +10.54 +92.24 +10.53 +89.5 +59.23 +92.24 +10.53 +25.43 +92.24 +10.54 +64.14 +89.93 +92.24 +93.387 +25.43 +92.24 +11.33 +105574 92.25 +37.111 +90.36 +92.11 +89.59 +92.11 +53.44 88.26 +79.49 +92.24 +53.43 +92.24 +2.7 +89.76 +33.98 +89.59 +13.83 +92.11 +92.25 +92.24 +11.33 +79.19 +69.3 +90.65 +79.57 +89.139 +8.54 +89.139 +92.12 +92.24 +92.31 +89.125 +89.59 +13.1 +88.24 +89.92 +88.34 +105611 71.25 +89.93 +92.24 +10.53 +25.43 +92.24 +92.25 +10.54 +64.12 +92.24 +92.25 +8.1 +92.24 +25.43 +92.24 +92.25 +10.54 +92.25 +25.43 +89.23 +92.23 +67.9 +92.24 +92.25 +8.4 +88.198 +89.125 +23.6 +89.92 +35.36 +92.11 +64.14 +89.93 +92.24 +93.387 +92.24 +11.33 +89.33 +58.67 +63.17 +92.24 +11.34 +92.11 +89.24 +92.29 +34.40 +9.24 +92.24 +10.14 +89.92 +92.24 +10.16 +89.87 +34.22 +90.58 +92.24 +10.54 +92.11 +89.87 +13.51 +92.24 +60.11 +105674 8.4 +63.4 +92.24 +28.77 +92.29 +78.2 +13.1 +105682 92.1 +33.140 +90.23 +93.387 +89.92 +90.23 +92.24 +11.33 +89.130 +89.93 +92.7 +92.24 +105696 59.27 +92.24 +92.25 +10.54 +105701 25.43 +64.12 +92.25 +89.94 +92.24 +10.54 +90.22 +87.14 +92.24 +10.53 +92.24 +10.36 +36.15 +92.24 +10.18 +92.7 +89.119 +12.9{N:001} +89.23 +92.29 +13.1 +88.12 +87.8 +92.24 +10.14 +92.6 +89.92 +92.24 +10.16 +105731 13.4 +33.330 +60.46 +89.80 +33.288 +89.59 +65.23 +92.6 +13.3 +89.92 +85.1 +67.89 +83.46 +92.24 +1.39 +89.92 +92.24 +10.14 +69.3 +88.177 +92.24 +10.36 +92.7 +89.125 +35.51 +92.11 +89.76 +36.10 +89.92 +33.231 +12.9{N:001} +92.24 +87.76 +36.15 +92.24 +89.4 +9.12 +57.12 +89.123 +25.251 +89.92 +16.6 +89.84 +88.44 +92.24 +26.3 +92.7 +64.12 +92.24 +93.387 +69.3 +89.8 +35.29 +64.12 +25.98 +89.125 +64.12 +87.76 +93.387 +90.45 +92.24 +25.2 +92.24 +12.1 +90.16 +26.4 +89.123 +25.72 +35.27 +64.12 +92.24 +12.9{N:001} +105804 69.3 +9.1 +28.1 +90.21 +71.8 +59.27 +105811 88.1 +42.7 +92.29 +57.136 +90.14 +12.9{N:001} +89.69 +87.76 +89.69 +87.84 +89.92 +92.24 +57.12 +92.24 +58.31 +42.7 +90.58 +92.11 +68.43 +92.24 +33.291 +28.1 +90.21 +89.102 +92.11 +89.102 +92.7 +92.24 +12.9{N:001} +85.1 +83.13 +1.11 +89.92 +88.238 +69.3 +13.69 +90.14 +92.11 +92.24 +61.14 +74.7 +89.119 89.76 +12.9{N:001} +89.92 +89.76 +92.24 +76.6 +92.24 +79.62 +92.11 +49.1 +92.24 +6.30 +92.24 +12.1 +89.60 +92.24 +74.5 +92.7 +13.29 +90.33 +92.24 +88.158 +92.24 +12.34 +89.33 +13.69 +92.4 +92.24 +39.29 +69.3 +90.33 +9.14 +105885 9.14 +89.125 +90.33 +92.24 +12.44 +90.33 +92.24 +12.44 +90.33 +92.24 +12.44 37.73 +92.24 +88.125 +92.29 +90.33 +92.24 +12.44 +92.24 +88.108 +105905 92.24 +1.12 +105909 15.203 +92.24 +6.30 +92.24 +12.1 +89.59 +74.5 +39.18 +67.136 +92.24 +67.142 +92.24 +88.110 +89.92 +59.23 +42.17 +13.29 +105927 13.29 +77.5 +92.24 +77.5 +92.7 +90.10 +72.2 +89.92 +49.1 +92.24 +6.39 +92.24 +88.13 +89.92 +49.17 +92.24 +8.49 +89.141 +77.1 +92.24 +33.217 +92.24 +25.248 +89.80 +59.23 +15.203 +92.24 +6.40 +92.24 +31.102 +90.10 +92.27 +74.5 +59.23 +92.24 +6.36 +92.24 +12.35 +92.24 +14.63 +14.70 +89.92 +18.1 +92.24 +6.38 +92.24 +21.28 21.29 +89.92 +92.24 +6.33 +92.24 +12.18 +92.27 +13.4 +33.98 +12.1 +89.76 +59.23 +33.178 +89.92 +33.171 +33.178 +67.33 +59.23 +67.1 +89.119 +12.18 +89.92 +90.23 +58.31 +27.57 +89.84 +78.44 +68.68 +89.92 +33.171 +106004 59.23 +92.24 +11.27 +89.92 +90.36 +92.1 +90.22 +92.1 +106013 33.98 +89.76 +33.29 +92.24 +33.74 +92.1 +89.5 +25.158 +28.26 +92.24 +28.77 +92.24 +33.217 +89.28 +92.27 +37.88 +13.8 +37.115 6.16 +89.59 +67.33 +92.11 +33.90 +64.12 +71.21 +92.1 +33.70 +106040 89.59 +28.1 +89.93 +92.7 +92.24 +89.4 +92.1 +92.14 +90.76 +59.23 +28.26 +92.7 +93.369 +92.24 +25.45 +11.23 +89.92 +31.87 +35.20 +89.119 +12.9{N:001} +92.27 +15.66 +84.18 +92.7 +89.57 +58.31 +92.29 +89.59 91.15 +27.2 +92.24 +90.24 +92.4 +89.92 +25.150 +92.24 +26.3 +92.7 +92.24 +11.23 +22.42 +89.92 +25.43 +89.123 +31.102 +90.15 +12.1 +12.12 +89.92 +12.9{N:001} +93.169a +93.387 +92.24 +88.66 +90.60 +59.23 +92.24 +25.43 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.84 +68.57 +93.294a +89.92 +93.361 +87.76 +93.387 +93.169a +59.23 +92.24 +11.27 +89.119 +93.387 +93.169a +92.24 +85.1 +83.13 +93.605 +89.105 +53.71 +89.92 +53.67 +92.7 +88.66 +89.92 +22.42 +90.15 +12.1 +12.12 +92.4 +89.92 +12.9{N:001} +93.169a +93.387 +33.349 +92.24 +12.1 +92.1 +67.33 +59.23 +92.24 +29.7 +92.7 +67.88 +89.5 +59.23 +33.171 +92.1 +90.36 +59.23 +92.7 +89.79 +25.123 +92.24 +33.171 +90.45 +89.27 +92.24 +34.5 +92.7 +90.23 +92.24 +33.217 +67.131 +92.24 +60.46 +67.186 +67.119 +92.24 +67.38 +33.301 +58.31 +92.29 +91.15 +92.24 +68.3 +83.13 +92.7 +42.11 +88.1 +68.22 +67.119 + +93.387 +93.169a +64.14 +13.1 +66.5 +92.1 +92.29 +26.16 +90.24 +59.23 +92.7 +89.26 +92.24 +106200 92.1 +106202 92.24 +26.3 +92.7 +89.102 +89.5 +92.24 +37.115 +92.1 +89.102 +89.5 +92.24 +33.436 +89.92 +28.44 +92.24 +33.217 +34.6 +92.1 +92.24 +88.66 +59.23 +92.7 +13.4 +89.23 +33.270 +92.1 +92.24 +12.1 +90.21 +25.18 +59.23 +92.7 +89.84 +25.49 +93.387 +93.169a +89.93 +92.29 +33.178 +90.22 +92.24 +25.43 +92.7 +67.128 +78.28 +89.92 +78.28 +78.31 +89.80 +28.18 +89.92 +58.28 +32.28 +89.57 +92.24 +30.114 +92.7 +92.24 +65.6 +89.59 +13.1 +88.41 +89.92 +88.318 +67.160 + +93.387 +59.37 +42.13 +88.13 +92.24 +90.4 +93.169a +93.387 +89.48 +33.357 +89.92 +33.354 +12.1 +106282 11.23 +25.3 +28.1 +92.7 +90.21 +92.24 +89.4 +92.1 +89.126 +106292 13.57 +92.24 +33.217 +13.117 +89.52 +92.24 +37.115 +92.1 +28.28 +89.26 +93.387 +13.48 +83.9 +63.1 +92.24 +55.12 +89.93 +92.24 +63.21 +59.23 +89.93 +92.24 +59.1 +92.24 +11.23 +89.119 +12.9{N:001} +31.82 +92.24 +37.115 +92.1 +78.31 +25.161 +25.253 +92.24 +33.260 +106330 33.70 +89.136 +92.12 +106334 90.44 +88.160 +89.92 +39.22 +89.136 +92.12 +106341 90.44 +25.8 +92.24 +93.387 +33.256 +89.136 +92.24 +89.25 +25.43 +28.1 +90.21 +89.57 +33.436 +92.24 +33.217 +13.73 +89.136 +92.24 +89.25 +39.7 88.167 +92.24 +93.387 +33.204 +69.3 +88.45 +31.29 +22.2 +13.83 +92.24 +37.115 +92.1 +91.1 +92.14 +89.130 +90.21 +59.23 +89.83 +89.69 +88.230 +89.69 +72.2 +93.387 +33.204 +106385 89.5 +92.29 +25.125 +91.2 +89.93 +25.125 +89.23 +28.1 +90.21 +92.29 +92.1 +89.41 +106398 21.18 +89.76 +92.24 +92.7 +33.171 +89.92 +35.31 +92.24 +12.18 +93.169a +93.387 +89.8 +92.24 +25.64 +89.92 +25.59 +92.1 +90.21 +89.5 +92.23 +25.190 +89.125 +89.84 +59.23 +25.158 +64.12 +67.88 +106426 67.38 +87.15 +93.387 +89.76 +92.24 +8.1 +92.1 +89.69 +89.76 +23.88 +89.69 +89.76 +23.99 +89.23 +92.1 +92.24 +23.88 +93.387 +89.92 +92.24 +23.99 +57.192 +89.124 +89.65 +92.24 +23.88 +13.8 +8.4 +92.29 +92.1 +42.13 +42.42 +106459 92.14 +30.86 +69.3 +28.1 +106464 19.45 30.18 +90.16 +92.24 +60.11 +92.24 +25.12 +90.65 +13.62 +92.24 +23.101 +89.92 +89.107 +93.387 +85.1 +89.23 +59.11 +78.28 +65.21 +89.124 +92.24 +68.11 +92.24 +8.4 +71.39 +90.38 +92.7 +106491 92.29 +33.301 +28.1 +90.21 +85.55 +89.92 +85.56 +59.23 +92.7 +89.57 +92.24 +92.7 +13.57 +89.92 +25.123 +92.24 +31.102 +89.59 +92.24 +25.203 +92.7 +59.52 +89.119 +93.387 +93.169a +89.119 +92.1 +89.76 +92.24 +92.2 +85.25 +67.55 +89.112 +92.7 +106526 65.17 +92.24 +33.217 +92.24 +93.387 +41.34 +89.49 +89.69 +15.81 +89.87 +34.50 +92.7 +89.69 +85.27 +33.212 +92.24 +90.24 +92.7 +90.21 +13.30 +13.8 +63.4 +30.6 +63.4 +26.4 +42.50 +92.24 +31.104 +92.24 +33.217 +89.93 +69.3 +25.263 +89.5 +92.23 +90.1 +92.24 +39.1 +106565 13.4 +92.11 +28.52 +20.31 +89.124 +92.7 +21.25 +106573 92.29 +90.15 +12.1 +89.33 +92.7 +57.102 +92.24 +90.36 +93.387 +69.3 +106584 92.24 +90.23 +92.11 +31.102 +89.125 +89.93 +92.24 +90.36 +92.11 +24.78 +90.65 +92.24 +58.31 +39.29 +64.1 +24.1 +89.5 +92.1 +89.92 +67.38 +33.212 +89.5 +92.1 +106608 89.65 +92.12 +25.150 +89.119 +93.387 +89.65 +92.12 +25.154 +25.43 +89.65 +92.12 +34.5 +12.18 +89.65 +92.12 +25.49 +89.92 +88.80 +59.33 +92.1 +92.24 +25.123 +90.22 +92.24 +58.31 +26.16 +92.24 +58.31 +25.43 +90.65 +26.6 +92.24 +63.4 +26.16 +92.23 +89.8 +88.167 +69.7 +89.8 +88.221 +89.125 +92.24 +88.53 +92.26 +31.1 +65.4 +92.25 +69.3 +92.24 +92.25 +106659 27.36 +89.125 +89.93 +92.24 +58.37 +59.27 +92.29 +26.16 +83.13 +92.7 +92.27 +89.93 +83.13 +93.387 +93.169a +92.27 +13.8 +58.2 +12.1 +13.77 +69.3 +57.235 57.236 +31.1 +92.24 +13.1 +58.33 +12.1 +89.125 +92.25 +87.70 +58.2 +87.76 +57.55 +13.8 +64.3 +9.1 +13.48 +89.92 +58.17 +13.7 +64.12 +9.1 +87.62 +92.25 +13.48 +36.16 +78.51 +23.99 +106708 23.99 +6.27 +89.47 +89.93 +92.24 +12.1 +92.11 +87.16 +89.92 +57.102 +92.11 +92.24 +33.126 +92.24 +87.30 +59.23 +33.126 +89.59 +89.5 +92.24 +33.126 +93.169a +53.61 +59.23 +9.16 +1.12 +89.92 +1.41 +89.92 +1.17 +89.92 +59.23 +9.18 +33.275 +90.21 +12.9{N:001} +93.169a +93.387 +89.57 +87.4 +12.1 +12.12 +89.52 +25.45 +92.1 +64.14 +67.88 +36.15 +67.139 +69.3 +83.13 +92.24 +85.25 +92.1 +106763 89.125 +67.38 +59.11 +78.28 +83.13 +92.24 +85.28 +92.1 +89.79 +25.251 +89.92 +16.6 +92.24 +92.25 +21.26 +13.9 +89.23 +12.1 +13.4 +92.24 +13.9 +89.119 +92.7 +89.102 +92.24 +25.1 +89.102 +92.24 +42.3 +90.24 +92.24 +25.88 +59.23 +42.7 +89.120 +33.382 +106800 33.446 +89.59 +41.1 +88.317 +89.92 +88.32 +58.26 +12.1 +88.34 +83.9 +11.4 +88.268 +89.92 +88.264 +83.9 +92.27 +14.37 +64.12 +1.27 +83.13 +9.23 +33.260 +23.88 +31.47 +89.48 +25.203 +92.1 +67.160 + +93.387 +90.21 +69.3 +89.48 +89.53 +15.230 +69.7 +89.48 +89.53 +42.47 +91.2 +89.65 +106842 53.27 +84.20 +92.24 +53.20 +89.92 +53.13 +92.24 +31.102 +92.7 +25.125 +89.92 +25.126 +59.23 +92.7 +89.94 +92.24 +58.31 +89.93 +92.7 +25.125 +89.92 +25.126 +92.1 +106866 30.54 +89.119 +12.9{N:001} +93.169a +93.361 +67.56 +15.66 +92.7 +89.59 +89.93 92.1 +25.146 +27.2 +92.24 +90.24 +92.7 +89.23 +92.23 +26.5 +90.65 +106886 73.1 +92.24 +90.24 +92.7 +25.225 +106892 92.24 +59.23 +92.24 +92.25 +25.9 +69.3 +92.24 +93.387 +93.169a +89.124 +92.24 +65.12 +92.11 +28.1 +89.33 +64.12 +10.14 +10.36 +89.107 +92.1 +35.27 +90.23 +92.24 +33.217 +89.50 +89.136 +30.54 +92.29 +15.66 +67.45 +71.8 +27.6 +92.24 +89.6 +92.1 +67.113 +89.136 +31.82 +89.119 +12.9{N:001} +90.21 +106934 92.37 +67.56 +15.81 +89.124 +31.1 +71.39 +93.121 +92.24 +11.23 +89.92 +42.44 +89.92 +34.19 +92.1 +89.124 +92.7 +33.194 +89.92 +35.23 +92.24 +57.40 +92.1 +15.66 +84.18 +92.7 +89.32 +25.18 +106962 59.23 +92.7 +89.92 +25.247 +89.26 +33.212 +90.21 +23.144 +106972 23.144 +64.9 +23.99 +89.125 +92.24 +12.1 +88.76 +92.11 +89.94 +69.3 +92.11 +58.50 +89.125 +89.93 +92.1 +106989 25.273 +89.101 +25.273 +90.65 +89.50 +25.75 +15.66 +92.11 +89.59 +24.1 +92.11 +67.55 +25.125 +89.92 92.1 +25.278 +13.1 +89.50 +34.53 +92.11 +89.119 +12.9{N:001} +89.79 +78.44 +25.123 +89.92 +92.24 +92.31 +87.6 +31.1 +89.33 +89.26 +92.24 +42.42 +93.387 +78.51 +23.99 +15.75 +21.7 +92.24 +23.88 +89.59 +57.79 +92.24 +92.7 +57.38 +92.24 +90.58 +92.1 +35.22 +11.23 +92.1 +92.24 +61.14 +25.125 +89.5 +12.9{N:001} +92.24 +58.31 +33.61 +92.7 +89.136 +92.1 +69.3 +22.8 +89.136 +92.7 +21.10 +27.58 +92.24 +88.122 88.282 +27.58 +92.24 +88.106 +41.21 +27.58 +92.24 +19.22 +107067 58.67 +92.24 +53.51 +92.4 +92.24 +12.18 +12.1 +53.14 +89.92 +33.368 +90.23 +93.387 +93.169a +89.92 +69.3 +90.23 +9.12 +31.82 +89.71 +92.1 +90.65 +31.82 +89.93 +90.23 +9.12 +89.65 +92.12 +58.37 +31.29 +31.82 +90.23 +9.12 +92.1 +78.28 +53.51 +67.182 +89.3 +10.1 +93.182b +10.2 +93.70 +93.105 +89.3 +93.105 +89.4 +33.55 +11.49 +89.4 +25.46 +39.45 +92.24 +11.33 +89.4 +88.13 +92.24 +89.5 +33.55 +13.48 +88.317 +91.2 +92.18 +13.1 +92.1 +57.192 +92.29 +31.1 +90.44 +92.24 +93.387 +57.69 +91.11 +107142 31.1 +59.23 +57.69 +13.1 +89.26 +92.24 +65.4 +92.24 +28.1 +93.387 +93.169a +92.24 +12.9{N:001} +92.1 +90.44 +92.27 +92.24 +59.23 +57.69 +107162 31.1 +6.225 +89.59 +93.387 +57.189 +89.92 +13.17 +89.119 +92.11 +90.65 +69.3 +92.2 +34.46 +92.24 +89.77 +33.55 +89.125 +92.24 +89.76 +31.102 +93.387 +92.24 +90.16 +12.1 +34.46 +89.13 90.9 +92.24 +31.102 +92.24 +27.18 +92.11 +89.92 +92.24 +76.7 +92.24 +23.93 +92.11 +89.92 +34.5 +24.78 +92.11 +58.6 +92.24 +23.99 +92.11 +107208 89.62 +13.16 +13.62 +92.24 +23.93 +92.24 +89.121 +23.121 +69.3 +90.21 +67.20 +57.125 +89.139 +67.20 +53.50 68.31 +89.124 +15.223 +90.26 +89.93 +57.56 +89.27 +92.27 +89.93 +57.56 +90.1 +93.387 +93.169a +11.23 +92.1 +107238 31.1 +92.3 +57.56 +89.124 +60.10 +91.6 +92.24 +83.40 +29.14 +107248 92.24 +83.33 +13.20 16.20 +83.45 89.56 +84.28 +15.223 68.66 89.56 +84.16 +92.24 +57.120 +92.24 +84.25 +33.312 +92.24 +12.1 +89.119 +93.387 +93.169a +89.50 +59.7 +11.18 +92.29 +26.16 +89.93 +89.65 +92.12 +58.36 +26.16 +89.93 +92.29 +92.24 +12.1 +92.7 +28.38 +89.130 +90.23 +92.27 +13.16 +92.24 +58.31 +41.12 +11.23 +41.46 +92.1 +13.48 +89.93 +24.32 +92.24 +61.9 +41.11 +64.14 +31.1 +58.59 +92.1 +89.23 +59.1 +41.11 +92.27 +67.11 +33.69 +92.7 +89.94 +67.38 +89.93 +25.138 +33.69 +92.24 +39.11 +92.24 +6.27 +92.24 +93.387 +92.27 +92.24 +89.40 +20.31 +92.27 +92.24 +12.22 +92.24 +25.28 +89.92 +92.24 +25.205 +89.5 +92.24 +25.191 +92.11 +92.24 +92.24 +9.7 +30.20 +107340 92.1 +92.24 +11.71 +89.5 +1.11 +13.77 +90.16 +92.27 +89.93 +25.63 +21.31 +12.9{N:001} +93.169a +93.387 +92.27 +58.18 +92.24 +8.1 +92.24 +87.60 +92.4 +58.5 +92.24 +8.1 +92.24 +79.18 +92.11 +89.8 +92.24 +42.3 +92.24 +74.5 +92.11 +107374 37.31 +92.37 +92.24 +59.23 +89.52 +11.23 +92.1 +25.45 +89.92 +25.48 +25.124 +89.92 +42.19 +92.1 +61.9 +13.30 +89.119 +12.9{N:001} +25.45 +93.131 +33.168 +89.92 +93.350 +33.168 +92.24 +58.31 +26.16 +89.119 +12.9{N:001} +69.1 +33.161 +89.93 +92.6 +73.1 +42.45 +35.5 +92.11 +107412 89.5 +92.24 +33.217 +42.50 +92.1 +89.108 +89.102 +93.216 +89.102 +92.24 +63.21 +42.44 +92.1 +92.27 +92.24 +33.126 +83.13 +6.64 +23.88 +25.125 +89.119 +12.9{N:001} +67.88 +67.55 +33.69 +25.125 +92.24 +88.63 +92.7 +28.1 +59.23 +9.1 +92.24 +12.9{N:001} +67.61 +92.23 +25.225 +89.125 +89.5 +59.23 +92.24 +33.178 +89.92 +92.24 +33.171 +89.123 +33.349 +92.24 +33.164 +92.7 +28.26 +90.58 +92.24 +12.1 +107467 92.24 +25.248 +92.24 +12.1 +92.24 +65.4 +78.44 +26.14 +37.119 +92.24 +26.3 +92.7 +89.92 +92.24 +26.14 +92.7 +89.119 +93.387 +93.169a +11.23 +92.24 +61.14 +59.7 +13.1 +72.1 +59.7 +88.47 +59.7 +88.12 +59.7 +88.28 +59.7 +25.97 +59.7 +33.360 +89.65 +92.12 +88.11 +89.92 +89.65 +92.12 +33.355 +92.29 +30.9 +92.27 +89.102 +27.12 +89.102 +27.13 +89.102 +24.52 +89.102 +24.1 +83.13 +92.1 +92.29 +42.8 +107525 92.24 +12.1 +92.24 +25.248 +85.1 +90.60 +92.7 +107533 25.125 +89.119 +12.9{N:001} +78.2 +89.33 +67.40 +67.9 +13.23 +92.24 +90.36 +92.1 +26.16 +90.40 +92.27 +107548 26.16 +89.124 +67.7 +69.3 +90.21 +89.4 +57.37 +33.69 +89.23 +92.1 +27.15 +13.8 +92.27 +13.1 +25.84 +13.1 +28.7 +89.102 +87.63 +28.7 +89.102 +57.24 +13.8 +59.23 +89.93 +13.8 +59.23 +27.14 +89.102 +23.16 +89.102 +23.29 +89.102 +57.24 +89.102 +57.37 +59.23 +74.9 +89.119 +92.24 +74.6 +92.1 +89.130 +88.4 +42.7 +34.4 +92.1 +92.24 +22.2 +89.94 +93.604 +28.1 +89.93 +92.7 +90.21 +107604 15.40 +84.3 +93.527 +67.136 +67.65 +92.24 +33.217 +92.23 +11.32 +92.1 +57.98 +90.23 +57.228 +57.71 +89.92 +57.125 +89.131 +107622 92.7 +58.50 +89.33 +107626 83.13 +93.475 +89.102 +60.70 +107631 60.69 60.70 +90.41 +92.24 +57.40 +92.1 +15.193 +69.3 +90.21 +25.9 +92.24 +57.73 +89.125 +25.9 +92.24 +42.13 +92.24 +59.67 +90.41 +57.228 +92.7 +89.94 +57.137 +59.23 +89.92 +57.24 +35.33 +57.125 +90.14 +93.121 +92.24 +90.14 +92.7 +79.45 +79.46 +53.20 +25.85 +25.94 +92.24 +12.1 +89.94 +92.24 +12.1 +92.1 +35.33 +59.23 +57.40 +92.7 +89.8 +92.24 +57.30 +92.11 +89.84 +87.23 +89.119 +93.387 +93.169a +107688 92.24 +12.1 +89.92 +12.12 +92.4 +92.24 +87.4 +67.95 +92.24 +67.95 +92.24 +67.95 +72.6 +33.20 +59.23 +11.27 +89.119 +93.387 +93.169a +33.20 +92.7 +92.24 +89.107 +92.1 +11.23 +33.20 +92.7 +59.23 +92.24 +11.27 +107719 78.7 +92.24 +63.20 +92.24 +93.208 +10.8 +92.24 +88.66 +92.24 +12.9{N:001} +93.169a +93.387 +90.60 +92.24 +26.9 +92.7 +93.294a +53.74 +93.387 +93.169a +89.76 +30.59 +12.1 +89.92 +93.361 +92.24 +11.23 +92.24 +83.13 +93.504 +11.27 +89.92 +31.87 +11.23 +89.119 +93.387 +92.7 +88.66 +89.92 +25.248 +90.7 +12.1 +12.12 +92.4 +33.349 +92.24 +12.1 +12.12 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +67.88 +107774 92.7 +33.178 +33.212 +92.24 +31.85 +92.7 +89.5 +93.387 +93.169a +89.92 +92.24 +25.43 +92.27 +90.65 +90.59 +59.23 +92.24 +11.27 +89.26 +92.24 +25.61 +92.24 +13.73 +92.7 +83.13 +92.24 +1.11 +92.27 +24.65 +89.76 +92.24 +33.98 +92.24 +72.2 +92.24 +33.217 +92.24 +15.86 +84.16 +92.7 +64.14 +89.93 +83.9 +63.2 +92.24 +1.39 +107821 13.86 +107823 59.62 +64.14 +89.93 +83.9 +92.7 +67.131 +92.27 +67.186 +33.212 +89.92 +32.16 +92.24 +88.66 +92.24 +12.1 +70.4 +70.4 +64.14 +27.12 +90.7 +93.120 +92.24 +25.45 +87.81 +92.4 +92.27 +13.4 +31.87 +90.36 +92.7 +35.20 +92.24 +93.387 +92.24 +89.93 +28.42 +92.4 +92.24 +92.7 +25.43 +89.119 +12.18 +107867 89.93 +92.4 +67.131 +92.27 +67.186 +33.212 +69.3 +68.34 +90.36 +92.7 +33.178 +89.92 +33.163 +90.22 +59.37 +92.24 +28.2 +92.24 +30.59 +92.11 +89.76 +59.23 +32.32 +89.92 +32.26 +12.21 +41.11 +65.17 +92.24 +12.9{N:001} +90.23 +78.44 +25.91 +89.141 +59.23 +42.11 +88.1 +13.86 +107906 59.62 +92.24 +28.2 +92.24 +12.1 +90.10 +59.23 +76.1 +74.6 +89.8 +92.24 +76.6 +92.24 +87.23 +92.11 +89.57 +59.23 +25.174 +107925 25.167 +89.79 +25.123 +33.349 +92.24 +12.12 +92.24 +75.3 +92.7 +89.57 +92.24 +63.13 +92.24 +57.88 +92.24 +11.27 +13.8 +92.24 +14.36 +92.27 +21.23 +92.4 +89.121 +92.24 +37.36 +92.24 +88.125 +89.87 +13.64 +84.22 +92.24 +37.64 +92.24 +12.15 +92.24 +25.43 +92.11 +89.119 +92.27 +90.65 +92.24 +37.128 +92.24 +40.8 +92.24 +88.310 +92.27 +13.4 +58.35 +92.24 +12.1 +92.24 +24.4 +10.43 13.79 87.47 +59.23 +42.38 +89.33 +90.6 +92.11 +42.35 +92.24 +59.23 +83.13 +92.24 +1.5 +89.92 +83.46 +92.24 +1.39 +92.24 +24.3 +89.92 +92.24 +24.4 +89.69 +12.44 37.70 +89.69 +12.44 37.52 +89.69 +12.44 +89.69 +12.44 +92.24 +59.23 +90.4 +92.11 +89.92 +90.41 +92.11 +42.35 +89.93 +92.11 +13.69 +65.54 +59.23 +89.92 +92.24 +59.23 +90.6 +92.11 +63.6 +89.93 +92.11 +13.4 +92.24 +87.51 +92.24 +11.34 +92.24 +11.33 +92.27 +13.4 +68.1 +10.43 87.47 +84.4 +92.24 +23.121 +89.49 +13.3 +92.11 +89.5 +59.23 +87.46 +89.33 +30.97 +89.119 +92.11 +78.44 +92.24 +59.32 +85.69 +89.93 +90.4 +92.11 +40.1 +92.24 +59.23 +90.59 +92.37 +40.4 +89.76 +92.24 +23.107 +92.24 +6.27 +92.11 +90.4 +92.11 +89.69 +92.24 +83.46 +92.24 +1.39 +89.69 +92.24 +83.13 +92.24 +1.5 +89.93 +92.7 +67.9 +108087 11.75 +89.92 +39.11 +92.24 +30.5 +89.26 +92.24 +42.11 +92.24 +88.110 +108098 91.4 +40.1 +89.76 +92.24 +8.1 +92.24 +8.63 +92.11 +89.76 +92.24 +23.99 +13.11 +92.7 +88.24 +89.92 +88.34 +89.92 +33.433 +83.33 +92.11 +89.65 +91.6 +68.11 +92.24 +31.104 +31.94 +108125 31.92 +89.92 +69.3 +13.42 +89.122 +92.24 +25.59 +92.24 +33.217 +92.27 +33.212 +92.24 +33.256 +90.56 +59.23 +42.38 +92.24 +1.43 +92.24 +1.43 +92.27 +35.20 +13.48 +92.1 +93.294a +67.38 +25.125 +90.23 +92.24 +24.78 +90.36 +92.7 +89.93 +59.34 +92.24 +57.38 +92.24 +22.2 +92.24 +93.387 +83.13 +92.24 +8.4 +92.1 +90.36 +92.24 +11.34 +92.11 +92.27 +13.4 +92.24 +11.33 +92.27 +35.20 +13.48 +92.1 +89.8 +92.24 +42.25 +92.24 +12.1 +92.24 +108188 92.1 +90.41 +92.7 +33.199 +92.24 +33.260 +92.24 +12.1 +92.24 +28.77 +92.24 +28.80 +67.133 +92.24 +67.133 +89.92 +89.122 +92.24 +67.144 +108208 67.38 +28.36 +92.24 +11.27 +92.11 +92.27 +30.58 +92.24 +12.1 +28.26 +92.14 +92.24 +78.15 +92.24 +87.23 +92.24 +28.77 +92.29 +90.56 +92.24 +11.37 +108230 13.4 +93.387 +89.119 +92.7 +92.24 +25.62 +92.24 +1.15 +92.27 +92.4 +33.204 +33.418 +59.23 +9.1 +89.92 +33.224 +59.23 +9.1 +89.84 +59.23 +32.32 +89.59 +13.11 +59.23 +9.1 +11.18 88.100 +89.119 +93.387 +89.57 +92.27 +89.93 +42.47 +68.74 +89.8 +92.24 +42.3 +92.11 +92.24 +42.3 +83.13 +92.1 +89.84 +76.1 +108274 25.1 +92.7 +28.1 +78.13 +39.29 +90.65 +90.36 +92.7 +89.92 +92.24 +83.13 +93.514 +89.92 +59.7 +69.3 +24.1 +92.24 +9.9 +92.1 +13.8 +8.4 +89.59 +25.150 +92.24 +26.3 +92.11 +63.5 +89.76 +25.43 +89.92 +89.57 +59.23 +78.15 +92.24 +31.45 +92.24 +32.26 +89.48 +28.2 +92.24 +28.77 +92.24 +12.1 +93.387 +89.119 +92.27 +13.69 +59.23 +92.24 +65.10 +92.24 +32.37 +89.92 +28.17 +28.70 +92.29 +33.69 +89.59 +92.23 +92.7 +88.153 +89.76 +33.31 +89.23 +89.65 +108340 92.24 +8.4 +85.27 +91.2 +92.24 +26.9 +89.107 +92.7 +85.1 +25.125 +108351 32.11 +92.7 +92.24 +62.7 +89.92 +92.24 +74.20 +92.24 +90.23 +93.387 +31.102 +92.7 +89.50 +64.12 89.37 +27.13 34.53 +92.24 +93.387 +93.169a +92.24 +12.9{N:001} +89.119 +92.11 +41.11 +74.18 +89.92 +74.15 +89.119 +92.11 +89.92 +74.17 +92.24 +31.104 +64.14 +33.224 +59.52 +89.5 +33.349 +27.58 +89.62 +92.12 +108392 92.24 +37.10 +92.7 +89.76 +92.24 +32.38 +89.92 +89.53 +31.12 +89.8 +92.24 +33.239 +92.24 +9.1 +89.8 +92.24 +58.19 +92.24 +41.38 +89.92 +69.3 +89.8 +93.387 +89.33 +89.119 +92.11 +85.69 +59.23 +92.24 +59.32 +92.24 +12.13 +70.7 8.2 +89.93 +108427 59.33 +89.119 +92.11 +92.27 +13.4 +92.24 +87.51 +59.23 +12.44 +89.92 +12.44 +89.119 +92.27 +89.93 +53.51 +53.51 +42.33 +89.141 +92.24 +49.20 +92.24 +9.8 +92.24 +26.7 +89.76 +92.24 +53.51 +92.24 +93.387 +52.8 +92.11 +89.76 +92.24 +108461 89.119 +92.27 +89.93 +23.95 +89.76 +92.24 +31.85 +92.24 +42.3 +92.24 +12.1 +92.24 +23.94 +92.11 +89.121 +23.121 +89.93 +92.7 +74.28 +13.1 +92.24 +88.297 +89.92 +92.24 +11.52 +92.24 +26.7 +92.7 +23.95 +92.7 +89.105 +92.11 +40.10 +92.4 +59.23 +92.24 +88.297 +13.102 +92.24 +90.31 +92.4 +33.40 +92.24 +33.333 +92.27 +13.1 +39.6 +92.4 +89.92 +92.11 +15.203 +84.4 +92.24 +83.10 +18.20 +92.11 +92.24 +6.27 +49.20 +92.24 +12.44 +89.92 +92.24 +12.44 +25.200 +28.29 +108528 39.59 +92.11 +89.76 +92.11 +89.50 +69.3 +92.12 +92.7 +56.30 +89.5 +5.1 +89.92 +89.5 +23.34 +89.139 +89.5 +63.14 +51.2 +89.139 +51.5 +89.139 +67.184 +92.27 +13.4 +58.65 +92.24 +67.135 +89.124 +92.24 +58.66 +92.24 +93.387 +92.23 +92.7 +30.121 +25.102 +89.5 +88.53 +89.92 +53.1 +92.24 +12.28 +92.27 +24.1 +53.15 +89.20 +88.217 +90.1 +92.24 +30.5 +92.24 +26.7 +92.11 +89.93 +69.3 +13.34 +92.24 +87.51 +90.16 +92.27 +59.23 +92.24 +11.34 +90.8 +92.24 +8.60 +89.92 +18.17 +35.31 +89.92 +63.5 +23.188 +92.24 +23.188 +92.24 +12.1 +89.30 +74.27 +89.107 +93.387 +89.122 +92.24 +12.43 58.19 +92.24 +41.38 +92.15 +64.12 +41.2 +83.13 +41.38 +36.21 +69.3 +18.6 +69.7 +24.72 +69.7 +24.74 +92.27 +13.51 +59.23 +108629 20.38 +92.24 +42.24 +89.8 +92.24 +33.330 +89.92 +33.236 +92.24 +9.1 +108641 91.6 +90.51 +30.13 +32.32 +89.5 +53.12 +89.92 +88.53 +89.92 +88.90 +8.1 +69.3 +89.48 +65.1 +92.12 +90.33 +25.14 +92.24 +26.7 +89.50 +89.30 +23.95 +92.24 +93.387 +92.24 +83.48 +25.9 +83.5 +92.24 +93.387 +85.1 +17.12 +108674 82.8 +92.24 +12.1 +92.24 +83.48 +30.20 +69.3 +92.24 +83.46 +92.24 +1.39 +89.23 +74.27 +89.92 +92.24 +23.88 +92.7 +21.12 24.30 +89.107 +92.24 +93.387 +89.119 +92.24 +12.1 +108699 24.19 +92.24 +93.387 +92.24 +23.88 +108705 67.47 +89.93 +92.7 +89.107 +92.11 +24.19 +13.8 +79.18 +89.50 +68.48 +92.24 +8.9 +92.24 +83.46 +92.24 +1.39 +88.271 +88.261 +25.30 +25.20 +88.106 +89.92 +92.24 +25.22 +108730 13.4 +53.63 +89.26 +92.27 +13.117 +92.24 +38.10 +92.24 +12.1 +13.8 +92.27 +89.93 +92.7 +41.11 +67.9 +108746 41.2 +13.8 +92.29 +108750 91.4 +68.37 +89.93 +92.7 +92.24 +59.23 +88.173 +88.178 +88.199 +33.400 +33.33 +84.4 +92.24 +33.74 +92.7 +69.3 +33.253 +90.59 +92.26 +49.20 +92.24 +41.43 +41.43 +89.105 +92.24 +42.8 +92.11 +89.92 +49.1 +92.24 +58.71 +92.24 +58.72 +90.23 +28.2 +89.8 +58.35 +92.24 +42.35 +92.11 +92.28 +69.3 +13.70 +11.40 +89.92 +93.172 +53.51 +89.92 +11.53 +41.31 +93.583 +87.76 +87.84 +89.125 +63.2 +89.92 +89.119 +63.2 +93.387 +89.50 +49.1 +64.12 +30.93 +92.24 +12.1 +53.46 +89.92 +25.43 +26.11 +88.80 +88.67 +88.53 +88.59 +25.167 +25.171 +92.26 +89.92 +40.10 +92.26 +89.67 +92.12 +90.25 90.33 +92.12 +31.1 +33.385 +64.14 +89.93 +92.24 +12.9{N:001} +40.10 +92.7 +108842 89.93 +92.7 +89.94 +89.101 +59.23 +92.29 +92.24 +25.43 +89.106 +89.106 +63.7 +92.24 +88.37 +89.92 +92.24 +25.248 +92.24 +93.387 +37.20 +83.13 +92.24 +26.3 +92.7 +89.57 +92.27 +89.93 +33.312 +89.119 +63.4 +11.34 +89.93 +25.99 33.352 +13.3 +92.24 +33.260 +92.24 +93.387 +85.73 +89.119 +92.7 +78.15 +89.84 +59.23 +32.32 +33.224 +89.92 +33.418 +92.26 +33.112 +33.114 +33.110 +26.10 +89.84 +92.24 +33.350 +33.109 +83.13 +92.24 +26.3 +92.7 +92.24 +12.1 +89.92 +59.23 +92.12 +71.8 +92.27 +42.7 +89.5 +33.99 +89.139 +89.5 +42.11 +59.23 +89.119 +33.126 +12.9{N:001} +93.169a +33.349 +92.24 +12.1 +12.12 +90.4 +92.11 +92.24 +10.54 +36.18 +92.24 +10.53 +64.12 +66.1 +89.119 +12.9{N:001} +92.24 +10.53 +25.43 +92.24 +10.54 +89.92 +69.3 +88.202 +90.33 +92.11 +92.24 +10.36 +36.15 +92.24 +10.18 +89.4 +59.23 +89.23 +92.29 +25.94 +13.1 +90.56 +12.9{N:001} +92.24 +10.14 10.18 +69.3 +88.168 +92.24 +10.36 +92.7 +108967 25.292 +92.24 +87.76 +36.15 +89.4 +59.23 +92.24 +89.4 +58.10 +57.12 +69.3 +89.84 +108980 64.12 +25.98 +89.125 +89.84 +88.44 +26.3 +87.14 +92.24 +12.9{N:001} +71.8 +92.27 +41.7 +89.85 +26.4 +42.41 +64.12 +92.24 +12.9{N:001} +89.92 +69.3 +9.1 +28.1 +90.21 +90.15 +12.9{N:001} +57.128 +92.24 +38.20 +92.24 +57.140 +92.24 +12.9{N:001} +93.387 +35.27 +89.23 +92.24 +88.22 +90.92 +92.27 +88.22 +89.92 +69.3 +13.69 +88.238 +92.24 +57.12 +92.24 +88.12 +89.92 +92.24 +58.32 +92.24 +87.76 +90.91 +28.1 +90.21 +89.93 +92.7 +109039 57.12 +83.13 +1.11 +92.24 +33.178 +68.68 +27.56 +67.136 +92.11 +89.80 +33.349 +33.178 +67.34 +89.93 +109054 92.4 +90.22 +92.24 +12.1 +71.9 +92.4 +7.49 +92.24 +33.260 +33.70 +92.24 +28.77 +92.24 +93.387 +89.26 +92.27 +89.93 +37.114 +89.59 +28.36 +92.11 +64.12 +71.21 +92.1 +33.70 +89.84 +32.32 +41.11 +90.58 +92.24 +11.10 +92.24 +22.45 +65.42 +92.24 +33.99 +92.7 +67.88 +89.84 +88.66 +5.25 +46.14 +28.7 +92.16 +71.21 +92.7 +92.22 +59.27 +33.184 +92.24 +89.4 +92.1 +59.23 +28.26 +92.7 +93.369 +92.24 +25.45 +11.23 +89.92 +31.87 +53.67 +89.92 +87.81 +89.119 +12.9{N:001} +92.27 +15.66 +84.18 +92.7 +89.57 +58.31 +92.29 +91.15 +28.1 +92.24 +90.24 +92.4 +89.93 +25.150 +92.24 +26.3 +92.7 +89.107 +93.288 +92.24 +31.87 +89.92 +25.45 +11.23 +92.27 +13.1 +63.20 +92.7 +92.7 +28.26 +59.23 +92.24 +83.1 +33.20 +92.7 +93.38 +92.24 +37.118 +92.1 +89.92 +93.255 +92.24 +10.52 +93.65 +90.24 +92.27 +57.125 +33.330 +89.67 +15.81 +84.18 +92.7 +34.53 +92.11 +89.92 +93.169d +92.24 +33.131 +93.179c +92.24 +13.1 +89.3 +53.51 +92.29 +58.50 +42.44 +89.57 +92.24 +37.64 +92.24 +12.1 +109192 13.48 +92.1 +25.155 35.14 +33.20 +92.7 +93.120 +92.24 +63.20 +92.7 +87.76 +93.387 +93.169a +67.88 +68.74 +90.36 +92.7 +89.76 +92.24 +33.178 +89.59 +13.29 +88.100 +109215 31.45 +89.5 +59.23 +30.59 +92.24 +12.1 +109222 33.262 +92.11 +90.21 +90.51 +59.11 +42.49 +90.36 +92.7 +89.92 +92.24 +83.13 +93.514 +89.92 +92.24 +83.13 +93.478 +33.20 +92.7 +93.234 +92.24 +23.141 +92.24 +25.45 +89.92 +93.92 +33.20 +92.24 +83.13 +93.514 +11.23 +89.92 +93.284 +89.92 +92.24 +89.113 +7.2 +92.11 +11.32 +109261 67.31 +33.68 +83.9 +92.7 +92.24 +33.48 +42.7 +90.22 +89.93 +83.9 +92.24 +93.515 +11.32 +33.68 +89.92 +90.22 +92.24 +84.4 +93.514 +89.93 +92.7 +33.68 +109284 33.69 +93.46 +13.134 +92.24 +35.21 +92.27 +37.99 +89.5 +12.9{N:001} +89.59 +92.11 +13.106 +92.24 +33.20 +92.24 +92.2 +8.30 +93.294a +29.8 +92.1 +92.24 +6.14 +92.24 +88.66 +90.60 +92.7 +93.294a +109312 93.340 +109314 93.361 +92.24 +11.32 +93.474 +89.119 +12.1 +12.12 +109322 12.9{N:001} +93.169a +93.387 +109326 88.66 +109328 22.42 25.248 +25.100 33.349 +92.24 +12.1 +67.88 +89.6 90.24 +59.23 +109336 29.18 +90.45 +67.33 90.9 +92.24 +33.178 +92.4 +68.55 +29.18 +109345 92.24 +42.11 +92.24 +31.102 31.85 +109350 92.24 +42.47 +92.24 +25.43 +109355 92.24 +25.174 +92.24 +25.59 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +83.33 90.20 +92.24 +12.1 +109368 12.12 +92.4 +28.1 +92.24 +30.92 +109374 11.23 +25.43 +109377 92.24 +12.1 +89.33 90.21 91.15 +92.24 +33.217 +92.4 +15.1 +109388 33.98 33.99 +109390 89.125 +109392 89.80 90.10 +76.1 76.7 +109396 12.18 +88.24 +109399 31.45 +59.11 78.3 +64.14 +28.1 +58.30 +13.3 +109407 90.38 +109409 89.87 89.92 +109411 13.48 +41.45 +92.4 +109415 92.24 +12.9{N:001} +31.51 57.125 +92.24 +33.260 +109421 22.2 +59.11 78.3 +109424 25.123 +12.18 +88.24 +89.52 +13.48 +109430 58.59 +59.23 +92.24 +31.102 +109435 92.24 +93.527 +109439 92.24 +93.419 +89.23 +109444 33.222 +92.24 +33.260 +92.24 +12.9{N:001} +109452 92.24 +93.527 +109455 93.419 +89.125 +109458 59.23 +80.1 +92.24 +31.85 +109463 92.24 +109465 92.24 +12.1 +15.40 +89.52 +109470 71.23 +109472 92.4 +33.70 +109475 89.23 +92.37 +109478 92.4 +33.198 +58.30 +34.56 +109486 92.16 +31.60 +109489 92.24 +12.1 +109492 92.24 +12.23 6.97 +35.27 87.79 +12.1 +23.88 +109498 70.3 73.2 +109500 85.60 +109502 92.24 +1.11 +92.24 +12.15 +92.11 +109508 23.94 +109510 92.24 +23.121 +93.169a +92.24 +21.23 +92.4 +109517 92.24 +38.10 88.173 +92.24 +15.81 +89.23 91.1 +11.23 +92.37 +32.4 +92.24 +15.87 +92.4 +92.24 +109533 57.42 89.53 89.64 +13.3 +89.125 +24.79 +109538 33.390 88.130 +109540 93.605 +89.34 +32.4 +25.159 33.90 +89.119 90.6 +92.24 +12.1 +92.4 +33.70 +109551 92.24 +33.217 +92.24 +12.1 +67.136 67.33 89.80 +59.11 78.3 +39.29 50.4 +89.23 91.1 +92.24 +25.150 33.168 +92.4 +109563 89.25 90.12 90.16 +31.10 31.8 +69.7 +109567 88.261 +69.7 +89.26 89.80 +88.154 +89.125 +64.14 78.53 +27.45 30.114 +109575 92.24 +12.1 +35.50 +92.24 +33.217 +78.4 +33.70 +64.12 89.61 +25.90 +109585 9.1 +89.125 +12.1 +92.24 +27.45 30.114 +92.24 +26.3 +92.4 +89.23 91.1 +69.9 +67.9 +89.80 +33.99 +33.367 +13.3 41.1 +89.34 +32.4 +69.9 +109604 88.230 +25.22 88.144 +12.1 +33.270 +69.9 +25.9 57.59 +90.16 +9.1 +33.357 87.4 +69.9 +90.7 +109616 69.9 +90.7 +58.37 +74.5 +109621 22.4 65.56 +109623 64.12 89.37 +93.387 +53.74 +89.125 +13.48 +109630 83.9 +109632 64.12 +109634 35.52 +35.36 +92.24 +109638 10.36 +61.9 78.4 +25.47 +109642 25.113 30.97 +57.96 +109647 92.24 +33.217 +92.24 +12.1 +89.125 +109653 92.24 +109655 9.20 +89.26 +25.45 +92.4 +13.3 13.48 +89.23 91.1 +11.23 +29.7 +92.24 +42.47 +92.4 +109667 92.24 +42.48 +67.92a +109671 67.92a +42.41 +89.60 +92.24 +109676 57.224 +109679 33.206 33.207 33.256 +109682 92.24 +33.217 +92.24 +12.1 +33.270 +109689 92.24 +12.1 +78.13 89.86 90.21 +88.24 +109694 88.15 +109696 88.317 +109698 92.24 +31.102 +13.3 41.1 +64.15 +32.4 +89.86 90.21 +109705 59.27 +109707 64.12 +10.14 +10.36 +109711 25.150 +109713 25.153 +109715 33.319 +109717 89.57 90.23 +92.24 +41.11 +109721 65.17 +92.24 +12.1 +92.24 +33.312 +109728 92.24 +109730 37.64 +109732 87.23 +89.92 +89.26 +109736 89.93 +92.4 +25.100 33.349 +92.24 +12.1 +68.55 +89.33 90.21 +27.13 33.238 +33.260 33.98 +24.52 24.57 +109747 92.4 +92.24 +12.1 +31.51 57.125 +109752 33.98 +9.1 +89.125 +64.14 +70.3 +109758 33.98 +12.1 +109761 89.93 +42.3 +83.13 83.9 +109765 92.24 +31.102 +89.23 +11.23 +109770 13.48 +41.45 +92.24 +11.32 +92.24 +12.1 +92.24 +109778 89.119 +92.24 +93.486a +109782 93.387 +93.169a +89.33 91.15 +92.24 +58.31 +24.78 +89.93 +109790 89.26 90.1 +92.24 +57.4 +11.57 +64.14 +89.93 +58.31 +109798 92.24 +93.172 +92.24 +20.61 +89.93 +92.24 +12.9{N:001} +93.169a +109807 92.24 +53.79 +109810 92.4 +15.159 39.45 +109813 12.1 +109815 25.90 +109817 59.23 +9.1 +39.6 +13.146 +92.4 +92.24 +11.37 +33.70 +109826 21.27 +89.48 89.57 +92.24 +59.33 68.27 +92.11 +92.24 +88.289 +67.88 +89.124 89.94 +13.123 +90.57 +92.11 +92.24 +38.10 88.173 +67.117 +67.66 78.47 +89.124 89.94 +11.23 +92.4 +85.17 +109848 67.109 +67.109 +67.148 +8.18 85.26 9.9 +109853 26.3 +78.31 +25.74 68.63 +92.24 +85.26 +109859 24.1 34.50 +89.80 89.84 +59.11 +25.12 +89.26 +25.1 30.58 +109868 91.6 +92.1 +93.294a +89.92 91.12 +60.70 +109874 60.69 60.70 +109876 13.147 +92.4 +92.24 +12.34 93.330 +89.23 +92.14 +92.4 +25.62 +109885 25.124 +109887 42.19 57.121 6.192 +25.204 33.368 +89.139 +69.12 +89.93 +109893 83.33 +92.24 +12.9{N:001} +92.4 +93.169a +67.33 +92.24 +92.11 +15.86 85.25 +109904 13.1 +92.24 +25.205 +92.4 +109909 92.24 +25.124 +89.47 +67.130 +25.176 +30.97 +85.65 +109917 93.393 +58.51 +109920 15.66 +93.361 +92.24 +11.23 +92.4 +109927 92.24 +12.1 +109930 92.24 +33.217 +92.24 +93.387 +89.57 +92.24 +74.19 +109938 25.150 +109940 90.24 90.36 +92.24 +31.85 31.88 +109944 92.24 +92.23 +31.66 +89.26 89.76 +92.24 +22.2 +109951 89.23 91.1 +58.31 +32.4 +109955 90.23 +109957 13.73 +89.23 91.1 +89.93 91.12 +109964 33.281 +109967 67.62 +22.15 +89.34 +109971 13.107 +109973 32.4 +109976 92.1 +67.130 +25.176 +15.66 +109981 92.24 +27.2 28.1 +92.24 +31.85 31.88 +109986 89.62 +89.62 +12.36 88.308 +109990 92.24 +88.308 +109994 89.53 +13.3 +92.24 +42.47 +92.4 +89.124 +67.42 +110002 93.361 +110004 92.4 +110008 33.215 +92.4 +92.24 +31.102 +110013 92.24 +25.43 +110019 29.7 +92.4 +88.1 +67.88 +25.18 +92.4 +24.1 +64.15 +89.93 +92.4 +110030 11.23 +110033 25.150 +89.27 90.23 +110036 67.136 90.23 +59.23 +92.24 +22.1 +110041 22.2 +92.4 +89.26 89.76 +92.24 +110046 31.85 +89.33 +67.38 +23.88 +89.67 +110052 13.30 +89.119 89.76 +12.9{N:001} +89.23 91.1 +74.5 +110058 33.349 +92.24 +12.1 +57.154 +89.36 89.6 90.24 +110064 89.27 90.23 +59.23 +92.24 +25.123 +110069 25.125 +90.44 +110072 83.33 +92.24 +12.1 +92.4 +67.192 +110078 67.92a +78.34 +33.170 +110082 92.24 +24.1 +110085 92.24 +85.26 +110088 75.5 +92.24 +57.38 85.29 +92.24 +31.104 +110094 89.124 89.94 +92.11 92.37 +92.24 +12.1 +110099 12.12 +92.4 +110102 92.24 +12.9{N:001} +92.4 +93.169a +36.1 +92.24 +15.19 +92.4 +110112 89.124 89.94 +110114 92.24 +12.9{N:001} +78.32 +110118 78.32 +92.24 +25.43 +110122 92.26 +110125 59.23 +64.15 +89.93 +92.4 +110131 89.48 89.57 +92.24 +74.19 +110135 92.24 +26.3 +88.317 +89.5 +53.45 88.25 +83.33 90.20 +92.24 +12.1 +110144 12.12 +92.4 +67.33 89.5 +92.24 +15.86 85.25 +92.24 +12.9{N:001} +92.4 +93.169a +89.108 +59.23 +92.24 +11.27 +92.11 +89.50 91.7 +11.23 +61.14 89.98 +33.161 +110163 33.168 +110165 89.119 89.5 +12.9{N:001} +93.169a +110169 64.14 +27.13 +110172 92.4 +92.24 +92.16 +71.21 71.34 +110177 41.11 +89.87 89.92 +25.90 +12.1 +64.14 +89.93 91.12 +41.11 +90.22 +78.31 +78.28 +89.23 +28.1 +110190 33.328 +110193 90.4 +92.24 +12.9{N:001} +93.169a +89.23 91.1 +110200 25.2 +92.24 +12.1 +92.24 +53.44 +110206 13.158 +110209 92.24 +88.271 +28.7 +59.27 +110214 92.24 +110216 10.55 23.63 8.6 +23.63 57.58 +89.80 89.84 +53.44 +110221 87.4 +110224 25.30 +25.20 +64.15 +89.93 +92.24 +11.37 +92.24 +110232 28.1 87.12 +92.24 +12.1 +92.24 +110237 88.296 +110239 88.144 +110241 92.24 +42.9 56.2 +92.24 +11.23 +92.11 +89.26 +38.9 +12.9{N:001} +110250 59.23 +110252 64.14 +89.93 91.12 +33.423 33.86 +110257 33.223 33.425 +89.23 +110260 33.312 +92.4 +92.24 +12.1 +89.13 89.27 89.60 90.23 +88.261 +89.125 +89.48 89.80 90.23 +53.44 +89.51 +92.24 +31.100 +31.100 +110274 9.1 +89.125 +92.24 +12.1 +92.24 +89.93 91.12 +57.71 +92.24 +12.18 +92.11 +92.24 +88.24 +84.16 90.59 +110288 89.124 89.94 +110290 92.24 +25.34 +110293 71.23 +110295 33.61 +110297 89.23 +92.37 +110300 33.228 +110302 89.48 90.23 +92.24 +25.43 25.44 +92.26 +89.23 91.1 +89.93 91.12 +41.7 +58.31 +90.41 90.59 +59.23 +92.24 +11.23 +83.13 +63.1 +92.24 +93.527 +89.124 +11.23 +33.168 +110322 59.52 78.31 +78.28 +89.92 +25.78 +88.103 +110328 42.8 +92.24 +57.4 +110332 42.41 +92.24 +8.30 +110336 64.14 +110338 33.327 +89.59 90.22 +41.11 +66.4 88.50 +89.7 90.20 +92.24 +11.10 +110346 92.23 +57.40 +110349 89.124 89.94 +11.23 +110352 25.1 +110354 28.13 +110356 92.24 +23.104 +110360 25.275 +64.14 +91.12 +92.24 +63.21 +92.24 +110368 25.59 +89.23 +89.30 89.65 +31.35 +110373 93.169a +23.99 +110376 23.94 +61.9 +110379 92.24 +12.1 +92.24 +23.104 +90.4 +92.24 +93.169a +15.165 +89.107 +92.11 +89.23 +110392 33.69 +89.76 +33.98 +12.9{N:001} +110397 92.4 +92.24 +23.88 +92.24 +85.66 +67.119 +92.24 +15.86 +92.24 +12.9{N:001} +69.5 +69.5 +15.141 +92.24 +23.104 +89.33 90.21 +92.37 +92.24 +12.9{N:001} +89.80 +33.324 +110419 33.103 33.80 +12.31 +110423 6.93 +12.1 +15.107 +110427 1.11 +110429 92.24 +23.121 +89.119 +93.387 +23.94 +60.46 +67.44 +92.4 +92.24 +23.88 +92.24 +85.66 +67.34 89.114 +89.107 +92.11 +18.4 +83.13 89.76 +1.34 +110448 15.78 +92.24 +12.9{N:001} +110452 1.6 +110454 61.9 +67.88 +89.107 +12.9{N:001} +110459 89.52 +25.150 +92.26 +89.76 +92.24 +33.98 +110466 89.124 89.94 +11.23 +89.6 +92.24 +67.1 +110472 92.24 +67.1 67.145 +110475 71.23 +110478 33.61 +89.23 +92.37 +72.19 +32.4 +110484 64.12 +57.233 +67.136 +14.59 + +12.9{N:001} +61.9 +15.81 +110493 33.69 +22.42 25.248 +110496 21.9 +67.47 +67.113 +20.34 +92.11 +13.119 +64.13 +92.24 +23.54 +92.24 +23.50 +23.50 +23.50 +110512 21.14 +89.124 +11.23 +110518 13.8 +14.53 88.125 +89.49 +92.24 + +110524 13.119 37.108 37.19 39.48 +64.12 +57.233 +89.23 +59.23 +110531 11.14 +11.14 14.36 +110534 11.14 +14.40 +110538 14.59 +69.7 +14.53 +89.46 +110544 23.66 +64.12 +92.24 +63.21 +89.125 +23.72 27.56 +110551 30.25 88.86 +89.23 +92.24 +23.66 +67.192 +23.66 +110558 92.24 +88.285 +67.192 +23.37 +89.124 +92.4 +14.40 +58.67 +30.25 88.86 +49.1 +6.39 +31.85 +110571 25.43 +110573 6.38 +25.59 +21.25 21.26 +89.33 +110578 37.96 90.86 +92.4 +92.24 +12.1 +89.57 +38.10 88.173 +89.125 +110586 57.62 90.74 +21.25 21.26 +89.76 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +23.99 +110597 92.4 +89.59 +89.69 +23.72 23.97 +89.69 +23.104 23.66 +89.114 +89.107 +92.11 +23.88 +89.47 +25.150 +92.26 +110611 74.15 +110613 92.24 +110615 64.14 +110617 41.7 +89.124 89.94 +11.23 +33.161 +110622 87.12 +92.24 +42.47 +83.9 +110628 36.1 +110630 89.119 89.5 89.76 +12.9{N:001} +110633 33.231 33.418 33.424 +110636 31.1 +92.11 +110639 89.26 89.80 89.84 +25.43 +89.26 +92.24 +42.42 +92.11 +88.102 +83.9 +110648 89.124 89.94 +11.23 +33.168 +110652 33.418 33.424 +92.24 +88.247 +25.153 +92.24 +25.290 +35.1 +92.24 +88.117 +25.168 +110663 59.23 +13.134 +110667 88.106 +57.145 +88.106 +110671 38.16 +89.125 +67.88 +92.24 +88.1 +68.66 +110678 92.26 +110681 59.23 +67.88 +25.125 +68.55 +33.178 +89.5 +59.23 +25.100 33.349 +89.23 +110691 25.2 30.59 +12.1 +89.119 +93.387 +93.169a +90.23 90.59 +110698 92.24 +12.18 +110701 68.52 +33.460 +110704 88.195 +89.124 +59.23 +27.45 +92.24 +65.22 88.4 +31.48 +110712 59.23 +58.14 +88.110 +85.16 +89.124 89.94 +92.37 +92.24 +12.1 +92.24 +25.248 +88.26 +110724 78.47 +89.87 89.92 +59.30 +110728 92.24 +26.9 +110731 92.24 +23.88 26.4 +110734 92.24 +8.1 9.8 +88.317 +67.33 +92.24 +15.86 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +13.32 37.122 +31.87 +92.24 +33.312 +110751 89.93 91.12 +110753 11.23 +33.178 +89.6 90.24 90.39 +92.4 +33.20 +92.24 +11.23 +59.23 +110762 34.62 +88.24 +33.467 +110766 92.24 +12.9{N:001} +33.68 +92.24 +33.48 6.63 +59.23 +92.24 +11.23 +92.24 +88.66 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +90.60 +110783 93.294a +110785 93.340 +110787 93.361 +92.24 +11.32 +93.474 +110792 12.1 +12.12 +92.4 +110796 12.9{N:001} +93.169a +93.387 +110800 88.66 +110802 25.248 +90.15 +12.1 +12.12 +110807 12.9{N:001} +93.169a +93.387 +11.23 +71.25 +33.349 +92.24 +12.1 +67.88 +89.6 +110818 78.53 +66.6 +110821 89.33 90.21 +78.6 +92.24 +31.102 +110827 78.32 +92.24 +25.43 +110831 59.27 +59.23 +110835 92.26 +89.52 +92.37 +92.4 +89.5 +110841 33.368 +110843 92.24 +11.32 +92.24 +12.1 +89.28 90.24 +92.24 +25.174 +110852 31.85 31.88 +67.136 89.80 +59.23 +92.24 +39.45 +110859 92.24 +22.2 +110862 25.171 +28.52 +92.24 +88.12 +56.24 +92.24 +12.1 +89.48 89.57 +92.24 +65.18 +110873 92.24 +37.64 +92.24 +12.1 +89.28 90.36 +110879 89.93 91.12 +24.78 +89.66 +66.5 88.12 +90.20 90.3 +12.1 +38.19 +92.24 +22.21 +110889 22.2 +89.92 +110892 92.24 +22.15 +22.36 +89.108 +92.4 +67.33 +92.24 +28.38 +92.24 +12.9{N:001} +93.169a +110904 1.11 +89.108 +12.28 +76.1 +92.11 +89.80 +2.3 +2.4 +90.51 90.90 +38.8 39.33 +92.24 +110916 28.1 87.12 +12.1 +110919 92.24 +110921 36.15 +92.24 +33.217 +92.24 +12.9{N:001} +92.4 +93.169a +110929 90.77 +38.8 +20.33 +67.96 +89.122 +85.26 +92.24 +12.9{N:001} +110939 92.24 +14.49 79.18 +92.24 +79.62 +92.11 +110945 15.81 +87.9 +83.9 89.26 90.6 +92.24 +11.27 +92.11 +110952 25.213 +89.26 90.6 +59.23 +92.24 +31.85 +67.33 +92.24 + +92.30 +89.33 +31.35 +92.24 +33.264 +92.4 +90.5 90.57 +110968 89.57 90.23 +92.27 +89.93 +33.178 +67.88 +89.6 90.24 +110975 90.22 +110977 65.18 +92.24 +33.313 +92.24 +12.1 +92.4 +110984 13.106 68.26 +59.23 +25.8 +88.1 +110989 42.11 +31.85 +89.76 89.84 +76.1 +89.59 +87.9 +92.24 +9.19 +92.24 +12.9{N:001} +92.4 +93.169a +89.119 89.26 90.6 +111006 92.11 +89.8 +92.24 +88.66 +92.24 +12.1 +92.4 +111014 12.9{N:001} +93.169a +93.387 +89.124 89.94 +11.23 +33.161 +111021 90.24 +92.24 +15.86 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +111030 92.4 +15.126 +84.17 +92.11 +89.57 90.23 +92.24 +111037 67.110 67.56 +25.242 +111040 89.122 +92.24 +30.5 +69.7 +25.262 +69.9 +89.26 +12.33 +69.9 +111050 33.98 33.99 +69.9 +111053 33.48 6.63 +64.12 +90.4 +92.4 +64.12 90.21 +111059 67.41 +92.24 + +92.24 +12.9{N:001} +111067 31.12 +111069 92.23 +41.10 89.83 +89.33 +111074 13.117 +92.24 +39.34 +67.18 +111079 28.38 +92.24 +9.1 +92.24 +88.139 +92.24 +9.4 +92.24 +20.31 +92.24 +39.1 +111091 39.39 +37.9 90.34 +59.23 +33.129 33.131 +12.22 +111097 53.55 +89.52 +92.37 +111101 92.24 +7.15 +92.24 +12.1 +17.12 +28.65 +111110 12.1 +111112 29.7 +111114 67.128 +111119 33.69 +111122 67.38 +92.24 +13.150 +32.4 +67.119 89.48 89.57 +92.24 +28.38 +92.11 +67.33 +92.24 +111133 67.1 +89.23 +92.24 +28.77 +92.24 +88.139 +67.20 +42.3 +58.50 +92.24 +13.150 +67.42 +67.119 +111147 83.9 +15.1 +111150 67.47 +28.38 +92.24 +88.140 +111155 92.24 +12.9{N:001} +93.169a +20.71 +92.24 +23.186 +92.24 +8.19 +92.11 +111165 13.100 +92.24 +24.21 +92.24 +15.86 85.25 +92.11 +111172 92.24 +15.86 85.25 +111175 89.8 +42.3 +92.24 +12.34 93.330 +83.13 89.48 89.80 89.84 +58.28 59.23 +76.1 76.7 +111183 33.477 +111185 33.480 +33.254 +111188 89.80 89.84 +58.28 59.23 +31.12 +88.21 +92.24 +20.31 +89.24 +111196 92.24 +25.43 +92.24 +72.2 +111201 31.51 +89.48 89.57 +92.24 +21.27 +92.37 +111207 89.26 +111209 90.88 +92.11 +92.24 +12.1 +42.3 +31.8 +89.48 89.57 +92.24 +31.35 +92.11 +92.24 +33.254 +89.49 89.59 +56.20 56.30 +59.23 +92.24 +111226 31.35 +92.24 +72.2 +89.125 +25.113 25.87 30.97 +92.24 +88.21 +89.124 89.94 +92.4 +71.25 +33.349 +92.24 +12.1 +67.88 +111242 11.23 +25.43 +111245 12.9{N:001} +89.33 90.21 +30.91 +111249 92.24 +12.1 +111253 89.57 +21.25 21.26 +89.76 89.80 +53.44 +12.18 26.9 30.6 +111259 31.85 31.88 +72.2 +89.57 +111263 89.92 89.93 +33.312 +111266 89.76 +92.24 +33.217 +92.4 +89.57 +57.62 90.74 +79.18 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +89.46 +111280 11.23 +13.30 +89.92 +13.34 +92.24 +33.239 +111287 33.224 +89.69 +89.76 +33.98 33.99 +89.69 +111293 33.48 6.63 +92.4 +89.124 89.94 +92.37 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +111303 92.24 +12.1 +92.24 +12.12 +92.4 +92.24 +25.43 25.44 +92.4 +111312 90.90 +25.150 +67.96 +111316 25.59 25.61 +65.20 88.1 +89.26 89.76 89.84 +88.66 +25.150 +111322 92.24 +26.3 +111325 74.19 +89.5 +58.28 59.23 +42.11 +111330 33.98 33.99 +65.20 88.1 +11.23 +92.24 +89.98 +33.178 +89.6 90.39 +92.4 +90.22 +92.24 +28.25 33.260 +92.24 +12.9{N:001} +15.230 +111345 33.357 +64.14 +89.93 91.12 +111352 21.23 +111354 92.24 +88.111 +111357 88.110 +9.1 +89.23 +111361 59.23 +92.24 +31.102 31.104 +89.124 +31.87 +111367 92.24 +12.9{N:001} +111370 74.19 +111373 37.120 +111375 92.24 +12.35 88.110 +89.94 +31.82 +89.119 89.26 +12.9{N:001} +90.23 +111385 33.327 +91.12 +90.45 +111389 41.7 +111391 92.24 +12.9{N:001} +36.1 +111395 92.24 +26.3 +90.23 +92.24 +25.43 +92.24 +12.1 +111404 92.24 +25.174 +92.24 +93.387 +89.94 +11.23 +33.327 +111413 33.126 +92.24 +12.9{N:001} +93.169a +93.387 +34.41 +111421 59.24 +11.23 +88.247 +41.11 +111427 89.8 +92.24 +33.239 +111433 92.4 +89.23 +92.37 +28.7 +92.16 +71.21 +41.44 +92.4 +89.33 91.15 +111443 88.246 +83.9 +111446 69.7 +57.85 +5.1 +23.1 +111452 89.125 +111454 42.47 +111456 42.48 +67.92a +111459 67.92a +42.41 +89.60 +92.24 +111464 57.224 +111468 89.33 90.21 +111471 37.35 +89.125 +89.59 +111475 58.59 +111479 92.24 +41.44 +92.4 +89.23 91.1 +89.92 89.93 91.12 +111489 33.327 +111495 25.1 +42.41 +69.7 +23.1 +89.23 +33.212 +111502 41.11 +83.9 +111505 88.247 +92.23 +42.41 +91.2 +88.243 +89.94 +92.24 +64.2 +33.327 +111515 25.150 33.168 +89.119 +12.9{N:001} +93.169a +93.387 +90.22 +111522 22.43 88.103 +42.41 +92.24 +111526 5.1 57.190 +23.1 57.190 +89.124 89.94 +11.23 +111532 25.288 +88.5 +89.124 89.94 +111538 36.15 +92.24 +33.98 +92.4 +89.76 90.8 +92.24 +6.63 +111546 29.3 +111548 34.1 +92.11 +89.59 +25.196 +89.92 91.12 +111554 64.12 +39.11 +31.1 +89.125 +33.418 33.424 +64.12 +11.23 +89.124 89.94 +92.11 92.37 +92.24 +12.9{N:001} +92.24 +22.42 25.248 +90.90 +111569 92.24 +22.42 25.248 +111572 67.15 +111574 59.23 +89.83 +92.24 +12.9{N:001} +89.108 +59.23 +111581 92.24 +33.20 +92.24 +92.2 +8.30 +93.294a +111589 33.477 +111591 59.23 +33.48 +61.10 61.9 +33.61 +92.24 +88.66 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +90.60 +59.23 +111605 93.294a +53.74 +93.387 +93.169a +111610 33.326 +12.1 +21.31 +92.4 +111615 93.387 +93.169a +92.24 +25.62 +92.4 +93.361 +73.1 +36.40 +111624 31.102 +88.66 +88.76 +25.248 +111629 12.1 +12.12 +111632 93.387 +93.169a +92.24 +12.9{N:001} +92.4 +64.14 +33.168 +111640 85.59 +111642 93.471 +15.18 +111645 93.527 +111647 33.327 +111650 33.235 +69.7 +31.47 +33.13 +111655 10.26 +61.19 +111658 31.33 33.442 +13.127 +89.126 +111662 30.68 +12.1 +92.24 +111666 31.85 +111668 92.24 +89.55 +92.24 +33.328 +111673 25.43 +111675 53.29 +26.3 +111678 26.13 +88.1 +111681 31.102 +73.8 +111684 31.68 +111686 31.65 +111688 33.377 +25.1 +111691 33.248 +111693 32.2 +69.9 +111696 33.69 +69.9 +111700 33.322 +111702 32.4 +111704 88.4 +92.24 +33.55 +111709 92.11 +72.18 +42.23 +29.6 +111716 88.12 +33.333 +13.73 +111720 88.140 +111722 36.26 +53.11 +111725 88.295 +53.47 +111728 88.115 +20.88 +111731 20.87 +20.85 +88.274 +88.280 +57.187 +33.255 +33.466 +111741 58.37 +39.1 +92.24 +72.15 +33.236 +111747 92.24 +33.217 +92.24 +87.23 +92.24 +25.119 +12.1 +111755 35.50 +92.1 +33.350 +111759 92.24 +74.6 +92.1 +93.387 +93.169a +92.24 +12.9{N:001} +92.4 +111768 31.87 +92.1 +31.1 +37.96 +111773 35.21 +92.24 +67.18 +111777 33.402 33.403 +111779 39.46 +111781 33.392 +89.125 +88.76 +111785 28.13 +41.7 +111788 31.105 +111790 59.49 +92.24 +88.66 +92.24 +12.9{N:001} +92.4 +111797 31.102 +111799 25.43 +92.24 +111802 93.387 +93.169a +92.24 +33.98 +71.17 +111808 78.44 +31.52 +65.17 +111812 93.387 +93.169a +111816 92.24 +1.39 +88.295 +21.27 +111821 87.45 +111823 92.1 +89.125 +111827 88.76 +111830 92.1 +87.45 +28.51 +93.169a +93.387 +92.24 +59.23 +25.167 +111839 58.59 +92.24 +67.62 +31.85 +111844 92.11 +111846 23.88 +67.96 +111849 92.24 +37.67 +92.24 +67.143 +23.128 +24.4 +111856 12.1 +87.4 +111859 87.23 +111861 92.24 +67.95 +92.24 +67.95 +72.6 +9.46 +93.361 +111869 92.24 +33.328 +35.47 +111874 92.24 +13.114 +111878 33.460 +111880 55.4 +111882 92.11 +92.24 +88.4 +55.4 +111887 31.102 +111889 88.1 +26.13 +111892 31.63 +111895 92.24 +31.102 +54.26 +111900 93.370 +111902 93.17d +111904 37.111 +92.24 +12.34 93.330 +111908 38.4 +111910 33.400 +111912 33.168 +60.46 +59.23 +90.45 +33.171 +33.178 +33.347 +33.349 +90.36 +59.23 +9.1 +90.36 +37.67 +111926 59.23 +92.24 +111929 87.26 +111932 88.104 +111934 88.104 +41.18 +41.3 +111938 59.23 +53.5 +111941 88.46 +111943 88.4 +111945 25.85 +90.20 +92.24 +21.31 +92.4 +12.1 +111952 25.1 +59.23 +9.1 +21.27 +111957 27.4 +27.4 +72.2 +111963 12.1 +111966 40.6 +12.1 +111969 9.1 +9.1 +93.387 +93.169a +92.24 +111976 37.130 +90.36 +59.23 +92.24 +33.264 +67.1 +58.47 +111985 37.96 +92.1 +33.259 +111989 53.74 +33.243 +11.37 +111993 31.104 +111995 72.2 +72.2 +33.69 +111999 33.253 +112001 25.3 +33.178 +92.24 +9.24 +112006 59.23 +80.1 +15.105 +53.46 +8.30 +89.120 +88.173 +112014 33.446 +64.16 +9.34 +112018 49.12 +66.10 88.48 +112021 88.49 +112023 32.34 +79.12 +112028 49.28 +112030 6.189 +112032 2.43 +112034 6.162 +65.3 +89.125 +112039 66.1 +9.34 +33.219 +53.1 +42.11 +88.1 +9.34 +112047 33.119 +27.12 +112050 78.44 +36.18 +112053 13.138 +112055 33.224 +9.34 +69.7 +37.21 +9.24 +89.125 +112063 33.119 +112065 93.11 +60.46 +42.31 +67.44 +93.128 +112071 93.11 +112073 31.12 +112075 92.24 +9.34 +31.12 +112079 36.28 +13.48 +112082 21.27 +112084 92.24 +23.52 +112087 68.11 +112089 31.102 +112091 25.43 +112093 53.44 +89.123 +88.93 +71.17 +92.24 +33.98 +112101 53.69 +25.15 +88.4 +42.42 +25.12 +112107 71.21 +92.24 +53.71 +112111 33.415 +112113 10.54 +10.53 +88.87 +88.94 +88.48 +34.58 +33.233 +112121 88.288 +112123 88.137 +89.125 +88.63 +39.24 +25.109 +92.24 +57.4 +10.8 +65.23 +36.1 +10.36 +112136 36.18 +112138 78.44 +88.46 +112143 92.24 +57.4 +10.8 +36.1 +112148 28.7 +92.16 +11.33 +12.1 +30.40 +112154 11.21 +112157 88.218 +112159 56.30 +92.24 +12.34 +90.71 +112164 71.21 +112166 33.265 +87.25 +112170 92.24 +11.10 +112174 90.71 +112176 33.389 +112178 21.4 +92.24 +12.34 +64.16 +53.67 +88.47 +112185 88.235 +112187 6.197 +112189 68.19 +112191 25.26 +112193 92.24 +28.77 +92.24 +31.104 +112198 53.29 +26.13 +112203 27.45 +60.46 +67.44 +53.66 +33.433 +112209 64.16 +10.54 +88.47 +112213 33.397 +88.87 +31.87 +112217 59.23 +53.67 +112221 10.54 +10.53 +65.23 +36.1 +10.36 +112227 92.24 +57.4 +10.8 +112231 92.24 +65.23 +53.66 +87.3 +87.25 +112237 57.61 +112242 31.102 +92.24 +112245 93.387 +93.169a +112249 33.61 +30.54 +112257 67.124 +112259 28.7 +92.16 +71.21 +41.3 +112264 10.8 +12.1 +112268 11.33 +12.1 +23.88 +7.45 +112273 31.93 +92.24 +72.2 +112277 33.276 +112280 92.24 +92.24 +53.1 +28.77 +112285 24.19 +112287 8.4 +88.16 +112290 12.18 +24.1 +12.28 +33.256 +112295 11.37 +31.85 +112298 1.39 +15.203 +112301 1.15 +112303 92.24 +12.18 +33.94 +33.69 +112309 61.16 +67.145 +34.26 +112313 92.24 +31.104 +31.47 +12.37 +31.9 +112319 33.236 +12.37 +112322 88.227 +33.255 +27.54 +92.24 +57.4 +26.13 27.54 +13.146 +34.66 +13.158 +5.7 +112333 92.24 +12.1 +42.35 +112337 57.129 +112339 33.349 +92.24 +31.86 +112343 28.2 +92.24 +72.2 +112347 59.23 +42.38 +12.1 +66.2 +112352 92.23 +57.141 +112355 33.349 +57.125 +112358 53.44 +112360 33.98 +12.1 +112363 33.347 +112365 33.230 +92.24 +11.23 +112369 88.4 +35.20 +93.387 +93.169a +33.242 +92.24 +33.98 +92.24 +31.104 +112379 92.24 +88.4 +33.236 +112383 36.32 +112385 92.24 +88.115 +112388 9.38 +33.13 +27.60 +112392 88.88 +92.10 +112395 53.5 +112397 92.24 +8.2 +50.7 +112401 78.8 +112403 65.40 +112405 92.24 +53.5 +112408 59.23 +65.40 +112412 33.288 +23.88 +92.24 +67.38 +112417 92.24 +67.135 +92.24 +33.98 +71.17 +112423 78.44 +31.52 +65.17 +112429 42.47 +112431 39.29 +112433 25.59 +112435 12.1 +23.88 +112439 21.31 +59.23 +9.1 +78.7 +31.86 +112445 33.327 +112447 33.224 +92.23 +112450 92.24 +67.154 +88.192 +89.125 +13.3 +58.59 +92.24 +31.86 +112459 33.99 +112461 41.3 +112463 25.43 +112465 31.102 +112467 88.29 +67.119 +112470 30.35 +92.24 +33.68 +92.24 +25.150 +92.24 +33.224 +112478 30.50 +92.24 +112482 57.103 +112487 33.460 +112489 85.51 +92.24 +8.30 +92.24 +11.84 +112495 30.20 68.20 +112498 68.20 +112501 92.24 +13.57 +28.58 +112505 59.23 +27.59 +92.10 +112509 92.24 +33.224 +68.11 +92.11 +112515 90.45 +21.18 +112518 92.10 +112520 92.24 +24.52 +112523 9.31 +112525 33.420 +89.125 +33.168 +64.12 +10.14 +67.116 +64.12 +10.49 +9.31 +64.12 +10.16 +67.116 +64.12 +10.50 +112540 78.44 +88.29 +57.117 +10.61 +92.24 +70.2 +10.61 +112550 10.61 +10.36 +112553 10.48 +112555 27.12 +60.46 +92.24 +57.4 +10.8 +71.29 +112562 57.168 +57.153 +92.24 +10.20 +112569 25.85 +90.20 +92.24 +12.1 +112574 92.24 +70.2 +10.61 +112578 10.13 +25.59 +112581 12.1 +112583 68.11 +92.24 +33.171 +112587 92.24 +33.178 +67.92a +112591 67.92a +112593 92.24 +88.252 +23.88 +23.99 +112599 33.327 +112601 33.415 +112606 92.24 +57.4 +112609 78.7 +10.11 +112612 35.39 +92.24 +31.104 +34.48 +112618 31.106 +88.107 +10.61 +33.44 +112623 59.3 +67.167 +60.29 +13.3 +112628 10.53 +10.54 +112631 42.11 +87.25 +33.263 +112635 35.51 +112637 34.57 +112639 11.27 +34.59 88.58 +34.59 88.58 +112643 22.15 +35.1 +112646 59.23 +42.11 +88.1 +25.79 +112651 67.116 +10.61 +34.35 +112656 25.30 +92.24 +93.387 +34.66 +25.1 +112662 56.30 +112664 92.24 +60.46 +33.289 +76.24 +112669 89.114 +112671 88.248 +27.12 +15.23 +92.24 +7.3 +112679 88.248 +89.125 +112682 33.375 +112684 88.244 +33.70 +92.24 +112688 71.21 +112690 25.3 +67.116 +34.66 +23.52 +46.2 +92.23 +22.46 +112698 92.24 +39.1 +33.393 +89.60 +112703 67.20 +112705 31.65 +36.35 +92.24 +12.34 93.330 +112711 11.17 31.103 +112713 10.61 +35.32 +92.11 +112718 22.18 +92.24 +11.32 +112722 92.24 +70.2 +10.61 +35.32 +92.24 +88.4 +68.67 +53.77 +60.75 +57.167 +65.18 +78.7 +92.24 +42.47 +112737 33.99 +112739 33.224 +112741 33.69 +92.24 +33.53 +4.15 +43.19 +112747 44.6 +112749 66.6 +92.24 +42.43 +92.24 +57.173 +92.11 +112756 53.77 +33.428 +112759 31.52 +89.138 +112764 60.11 +112766 60.12 +33.270 +92.24 +88.289 +90.20 +59.24 +33.417 +112775 92.24 +63.21 +25.251 +112779 33.319 +90.20 +92.24 +12.1 +112784 93.387 +93.169a +112787 92.24 +30.93 +12.28 +112792 36.19 +89.120 +30.79 +92.23 +90.45 +112798 88.241 +8.30 +67.110 +92.23 +85.51 +69.7 +42.16 +88.289 +92.20 +92.10 +88.28 +13.32 +67.130 +23.38 +89.125 +6.197 +59.13 +42.23 +112817 92.24 +8.66 +112820 92.24 +67.12 +112823 23.143 +112825 9.1 +92.24 +88.289 +28.60 +112830 15.143 +112832 56.30 +112836 13.113 +64.16 +112839 92.24 +42.11 +92.24 +88.4 +28.60 +112845 92.24 +58.36 +112848 24.29 +112850 74.5 +67.139 +87.80 +87.80 +6.8 87.80 +87.76 +92.24 +57.4 +37.63 +78.44 +87.4 +66.6 +31.1 +112865 92.24 +33.126 +92.24 +12.1 +112870 92.24 +33.236 +33.400 +112874 92.24 +112876 31.86 +57.13 +112879 88.192 +112881 11.23 +112883 89.125 +78.28 +35.27 +112888 31.86 +112890 25.45 +92.24 +92.24 +88.7 +25.79 65.48 +112896 33.224 +112898 33.168 +112901 33.235 +112904 31.19 +72.15 +33.98 +92.24 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +112914 92.24 +112916 53.1 +33.224 +88.218 +92.23 +32.3 +89.125 +25.10 +112924 33.440 +112926 33.454 +112929 13.107 +88.160 +33.447 +33.400 +31.32 +88.110 +33.452 +9.1 +88.266 +92.24 +30.5 +112941 57.47 +92.24 +72.2 +31.29 +57.194 +112947 92.24 +53.1 +112951 57.194 +59.22 +92.24 +53.1 +112956 25.83 +112958 92.23 +15.194 +112961 92.24 +1.39 +112964 69.7 +15.197 +112967 74.5 +112970 5.1 +112972 6.163 +112974 25.81 +112976 92.24 +25.3 +57.28 +90.71 +112981 88.308 +112983 21.4 +112985 25.20 +112987 32.50 +112989 20.13 +112991 90.95 +92.24 +9.1 +112995 20.33 +112997 20.31 +112999 89.17 +58.28 +92.24 +88.106 +113004 92.24 +25.107 +113007 25.15 +113009 31.67 +113011 92.24 +31.104 +113015 90.73 +25.235 +113019 91.14 +9.1 +12.1 +113024 13.161 +113026 68.66 +88.13 +53.5 +31.102 +25.43 +25.174 +88.59 +50.1 +92.24 +88.4 +50.4 +92.24 +31.104 +90.63 +92.24 +67.96 +23.88 +113045 33.312 +113047 33.274 +92.24 +88.4 +33.274 +90.20 +113053 33.270 +33.327 +90.20 +92.24 +12.1 +92.24 +23.92 +92.24 +59.23 +113063 93.387 +93.169a +92.24 +33.262 +113068 93.298 +93.297 +92.24 +88.4 +33.274 +36.19 +113075 92.24 +33.330 +88.33 +33.415 +67.119 +92.24 +24.21 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +113088 67.1 +58.47 +28.47 +92.24 +25.119 +113095 37.62 +92.24 +37.67 +92.24 +37.64 +113101 12.9{N:001} +92.24 +37.50 +92.24 +113107 23.126 +14.36 +15.80 +85.67 +113112 24.1 +92.23 +9.1 +69.7 +24.1 +74.5 +113119 87.4 +113121 76.6 +67.96 +72.6 +92.24 +57.26 +113127 92.24 +67.38 +41.38 +33.327 +113132 88.209 +69.7 +25.59 +113136 57.30 +71.20 +89.125 +113140 12.1 +92.24 +90.91 +92.4 +59.23 +59.57 +113147 25.115 +88.3 +59.58 +113151 42.11 +88.4 +57.97 +113155 57.100 +65.11 +113158 89.12 +88.4 +113161 92.24 +67.135 +113164 90.63 +92.24 +70.2 +23.88 +91.14 +93.361 +92.24 +35.48 +37.120 +13.155 +92.24 +88.115 +33.376 +113178 33.457 +92.24 +33.130 +28.19 +113183 33.219 +113186 92.24 +31.104 +31.68 +92.24 +88.66 +113193 93.294a +53.74 +93.387 +93.169a +90.4 90.44 +25.2 30.59 +12.1 +89.8 +33.288 +23.88 +92.24 +89.119 +93.387 +93.169a +93.361 +25.45 +9.46 +88.66 +88.76 +22.42 +90.15 +12.1 +12.12 +113217 93.387 +93.169a +92.24 +12.9{N:001} +92.4 +33.350 +113224 92.24 +12.1 +113227 53.14 +67.131 +10.20 +113231 53.29 +26.13 +64.12 67.45 +68.55 +113236 92.24 +89.6 90.24 +113239 29.18 +113241 92.24 +33.171 +92.1 +67.92a +113246 67.92a +25.18 +113249 34.50 +29.7 +113252 92.24 +8.73 +89.59 +25.123 +59.37 +57.55 +29.10 +92.24 +113262 73.8 +31.102 31.104 +113265 85.73 +67.18 +113268 92.24 +10.19 +113271 93.239 +113273 92.24 +10.16 +113276 93.130 +113278 33.301 +113283 89.26 +113285 89.15 +29.10 +113288 68.8 +92.24 +57.103 +92.24 +12.1 +113297 90.4 +92.24 +85.51 +92.24 +8.30 +92.1 +89.23 +113305 90.51 +92.4 +92.24 +12.1 +12.18 26.9 +25.266 +89.125 +76.1 +113314 25.43 +113316 32.34 88.93 +89.50 +113319 25.193 +92.24 +33.262 +92.24 +12.9{N:001} +92.4 +69.7 +92.1 +92.24 +37.117 +92.11 +89.125 +24.84 +92.24 +33.217 +89.8 +76.1 +12.1 +92.24 +21.27 +92.4 +113341 33.312 +33.313 +88.24 +113345 89.8 +92.24 +42.11 +92.4 +89.125 +89.8 +57.4 +30.63 +113354 88.66 +92.24 +57.71 +92.4 +89.119 +93.387 +93.169a +67.133 +67.133 +67.133 +113365 28.36 +67.38 +89.76 +92.24 +24.21 +92.24 +21.31 +92.4 +93.387 +93.169a +89.136 +13.163 +92.24 +23.99 +89.136 +28.36 +23.88 +113383 23.127 +89.76 +92.24 +33.217 +89.57 +113389 37.96 +92.1 +33.259 +113393 53.74 +113395 33.243 +90.44 +113398 89.15 +89.92 89.93 +113401 24.78 +89.125 +113404 25.193 +89.23 +28.1 +113408 31.85 +89.93 +33.301 +113413 74.2 +92.24 +35.48 +92.1 +37.120 +67.119 +92.30 +92.24 + +18.6 +58.59 +72.15 +33.98 +113428 92.1 +24.52 +89.80 89.84 +31.85 31.88 +113433 25.43 +92.24 +89.119 +93.387 +93.169a +92.24 +65.22 88.4 +35.48 +37.120 +89.76 +12.18 +88.24 +92.24 +85.73 +89.119 +92.4 +28.1 +113451 90.21 +34.26 35.18 +92.1 +59.23 +92.24 +113457 92.24 +93.415 +113461 93.384 +113463 93.125 +57.71 +88.76 +92.24 +12.9{N:001} +92.24 +93.289 +10.8 +89.33 +67.11 +92.1 +25.149 +113477 92.24 +37.115 6.16 +92.1 +25.193 +89.125 +85.6 +113484 93.563 +25.75 68.65 +27.41 +92.1 +113489 27.27 +13.142 +92.11 +92.24 +12.9{N:001} +13.17 90.70 +88.76 +90.14 +12.9{N:001} +113499 92.30 +92.24 + +113503 59.19 +113505 93.471 +35.19 +65.23 +113509 28.1 +89.50 +9.46 +92.1 +113514 74.6 +89.76 90.10 +92.24 +25.89 88.66 +92.24 +89.119 +93.387 +93.169a +113524 24.52 +90.14 +92.1 +90.4 +113529 33.270 +113531 57.116 +31.87 +9.1 +113535 75.2 +113537 89.93 +58.37 +33.224 +24.84 +64.12 +65.22 88.4 +55.17 +93.387 +93.169a +92.23 +55.18 +90.81 +92.24 +92.24 +41.18 +41.23 +89.59 +92.24 +55.19 55.20 +25.90 +113558 67.32 +89.93 +50.2 +113563 57.122 +89.67 +113566 72.18 +50.2 +71.34 +92.24 +42.47 +43.2 +60.46 +92.24 +43.15 +57.129 +30.3 +113578 33.69 +89.23 +13.142 +113582 92.24 +12.9{N:001} +32.26 +113586 59.23 +29.16 29.7 29.8 +93.169a +93.387 +23.94 +84.4 +23.121 +89.3 +10.29 +93.91 +89.8 +92.24 +33.217 +92.1 +89.26 89.5 +113602 24.89 +78.51 +37.115 6.14 +64.12 +88.114 +89.125 +92.24 +33.260 +92.24 +12.1 +113613 37.114 +89.26 +113616 59.23 +25.175 +90.38 +92.24 +30.93 +89.59 +113623 92.11 +90.61 +21.25 +92.24 +89.119 90.6 +93.387 +93.169a +89.123 +79.18 +67.96 +31.87 +92.24 +33.98 +89.23 91.1 +113638 23.118 +113640 23.96 +113642 25.175 +113644 37.66 +113646 33.277 34.48 +92.30 +34.48 +92.4 +113651 31.105 31.97 +92.30 +31.87 +68.11 +89.23 +88.231 +113659 74.5 +113661 29.10 +33.223 +83.33 90.20 +92.24 +12.1 +113667 33.454 +113669 92.23 +65.30 +89.60 +20.17 +92.24 +24.52 33.212 +68.63 +72.4 +92.10 +30.115 +92.24 +12.1 +42.43 +25.192 +33.234 +92.24 +33.260 +92.24 +72.2 +113689 92.24 +88.115 +33.376 +13.157 +89.23 +78.51 +78.28 +53.10 +59.64 +113699 92.24 +33.98 +92.11 +64.12 +23.165 +84.1 +113706 92.27 +113708 93.370 +113710 93.378 +113712 89.6 +92.24 +72.2 +31.68 +33.69 +23.93 +67.20 +13.107 +113721 31.72 +92.24 +113724 31.85 +89.130 +92.24 +79.7 +89.12 +92.24 +12.1 +113732 57.1 +92.24 +33.47 33.483 +113736 28.1 +12.9{N:001} +92.24 +113740 92.11 +113742 15.51 +113744 88.21 +59.24 +92.24 +53.62 +92.24 +53.62 +12.9{N:001} +89.124 89.94 +113753 79.123 +7.3 +113758 6.118 +2.50 +113761 2.53 +89.125 +113764 3.62 +113766 2.20 +113768 89.136 +113770 89.57 +65.1 +89.136 +113775 87.71 +89.50 +113779 79.50 +113784 6.118 +113786 65.1 +53.44 88.26 +65.31 +92.24 +57.13 +89.57 +59.23 +42.11 +88.1 +77.3 +89.124 89.87 +92.24 +67.155 +25.20 +13.161 +89.124 89.87 +68.66 +88.13 +31.85 31.88 +25.43 +22.42 +89.108 +92.24 +33.176 +92.24 +12.9{N:001} +90.16 +53.29 +26.3 +89.124 89.87 +92.24 +32.58 +113819 27.25 +33.440 +27.60 +28.1 32.4 +113824 13.129 +39.23 +89.124 89.87 +71.21 71.34 +87.76 +12.9{N:001} +113831 39.23 +89.125 +13.1 +88.61 +90.58 +59.23 +33.233 +25.170 +89.84 +88.59 +36.10 +92.24 +39.1 +113846 13.142 +92.11 +92.24 +12.1 +41.52 +89.48 89.57 +28.18 28.2 +72.2 +113855 30.27 +84.4 +92.24 +92.24 +12.34 +21.4 +37.1 +90.1 +92.11 +89.57 +92.24 +92.30 +25.2 30.59 +89.124 89.87 +113870 32.16 +113873 61.13 +67.142 +13.109 +67.78 +22.29 +89.23 +113880 92.24 +9.1 +25.39 +25.108 +88.220 +88.214 +33.402 33.403 +10.18 +36.24 +25.101 33.353 +53.47 +25.42 +40.7 +33.397 +88.92 +20.5 +25.106 +37.113 +88.98 +88.218 +25.112 +89.126 +113903 25.40 +57.1 +58.3 +53.1 53.5 +113908 92.24 +76.1 +92.11 +34.48 +113914 34.41 +89.23 +89.3 +113919 92.24 +15.94 +113922 92.24 +10.8 7.3 +113925 37.29 +9.35 +68.76 +88.289 88.310 +15.210 +25.20 +58.45 +67.88 +27.12 +113935 67.10 +32.17 +32.17 +72.2 +113940 74.5 +113943 89.83 +93.161 +113946 93.159 +39.1 +93.266 +61.9 +113952 39.1 +92.24 +72.2 +9.1 +88.266 +92.24 +26.14 30.5 +65.13 +89.6 +92.24 +31.102 +89.125 +113965 42.18 +113967 59.1 78.28 +89.23 +92.24 +32.51 +92.11 +28.59 +113974 59.23 +64.12 +113977 92.24 +92.30 +13.107 +89.124 89.87 +113982 27.38 36.32 +92.1 +92.24 +33.224 33.236 +92.24 +41.3 +92.24 +30.63 +92.24 +31.85 31.88 +92.24 +25.167 +92.24 +25.43 +92.24 +25.174 +92.24 +39.45 +92.24 +24.78 +58.30 +92.1 +13.107 +114006 93.405b +114008 93.482 +114010 93.521 +58.30 +39.45 +25.175 +89.92 91.12 +84.4 +59.23 +92.1 +21.23 +92.24 +12.9{N:001} +89.124 89.87 +89.93 91.12 +59.24 +92.24 +25.1 30.58 +41.2 +53.6 +89.119 +93.387 +93.169a +39.45 +89.124 89.87 +88.110 +9.1 +114036 88.232 +59.64 +114039 92.24 +88.107 +31.8 +114043 31.67 +89.124 +114046 68.11 +114048 92.27 +27.12 +114051 31.36 +28.1 29.6 +90.14 +114055 27.12 +114058 67.131 +67.152 +28.1 32.4 +53.9 +33.50 +92.24 +74.5 +114066 32.36 +89.48 +21.25 21.26 +89.76 +31.102 +92.24 +114073 93.387 +93.169a +59.23 +33.53 +33.261 +114079 65.40 +89.60 +33.224 +114083 33.417 +114085 72.16 +114087 33.226 +92.24 +114090 88.13 +89.59 +75.4 +114094 92.24 +92.24 +12.1 +9.1 +89.44 +58.28 59.23 59.24 +42.11 +88.1 +75.5 +33.319 +83.33 +92.24 +12.1 +114108 93.387 +93.169a +92.24 +67.62 +56.20 +23.88 +114115 23.121 +114117 92.24 +24.21 +92.11 +114121 92.24 +37.64 +92.11 +33.207 33.256 +92.24 +33.260 +68.14 +67.6 +67.8 +33.417 +33.419 +25.150 +89.84 +59.23 +25.167 +114137 33.224 33.236 +89.23 91.1 +114140 67.1 +114143 92.24 +72.15 +33.224 +31.54 +89.125 +89.8 +92.24 +57.4 +25.20 +114153 59.65 +33.243 +25.11 +92.24 +25.11 +114159 89.104 +89.122 +92.24 +72.2 +92.24 +31.56 +68.44 +89.104 +84.17 +92.24 +33.13 +31.65 +114173 88.86 +114175 59.23 +24.89 +90.45 +42.42 +53.76 +92.24 +35.21 +114183 68.32 +89.23 91.1 +92.1 +67.20 +53.27 +114189 92.24 +67.1 +92.24 +23.101 +92.1 +67.63 +92.24 +88.4 +39.29 50.4 +39.29 50.1 +92.24 +50.5 +68.22 +92.24 +31.102 +36.19 +67.134 +13.73 85.53 +92.1 +92.24 +92.24 +88.13 +57.121 +114213 38.16 +92.1 +92.24 +12.9{N:001} +92.24 +88.12 +56.28 +114221 92.30 +92.24 + +114226 58.50 +92.1 +89.125 +114230 59.24 +92.24 +25.104 +92.24 +24.21 +92.11 +68.63 68.79 +114239 92.1 +67.56 +89.23 +93.92 +92.1 +35.54 +25.104 +92.24 +67.38 +41.38 67.143 +114250 15.18 15.34 +114252 93.475 +93.221 +114255 93.442 +93.364a +114258 93.457 +93.234 +114261 58.50 +114263 92.1 +93.255 +15.168 +15.165 +114268 92.10 +114271 92.1 +65.31 +90.23 +35.19 +89.124 89.87 +93.369 +15.66 +114279 93.471 +92.24 +6.172 +114283 85.65 +114285 93.599 +114287 93.210 +15.81 +15.166 +114291 92.24 +6.64 +78.7 +92.24 +6.59 6.66 +93.17e +92.24 +2.55 +78.3 +20.18 65.26 88.106 +92.1 +13.131 +38.16 +92.11 +92.24 +12.9{N:001} +89.8 +92.24 +42.11 +92.11 +114314 37.120 +114316 78.1 +39.1 +92.24 +92.5 +33.98 33.99 +114322 92.24 +60.46 +92.1 +33.435 +92.23 +92.1 +35.6 +91.2 +59.23 +92.1 +35.54 +114334 92.11 +29.4 +89.124 +92.24 +12.9{N:001} +92.1 +85.13 85.14 +114342 74.6 +92.1 +89.59 +90.4 +92.1 +92.24 +33.258 +33.199 +114351 24.52 +59.23 +92.24 +11.37 +114356 21.23 +84.4 +8.19 +4.14 +21.23 +92.1 +92.24 +12.9{N:001} +89.122 +59.23 +42.11 +88.110 +114369 21.27 +114371 92.24 +37.64 +92.11 +92.24 +1.12 +114377 92.24 +33.357 +114380 92.24 +67.95 +92.24 +67.95 +72.6 +33.20 +93.302 +114388 93.16 +114390 92.24 +93.289 +10.8 +93.122a +85.55 +114396 93.506 +114398 93.365 +85.65 +114401 93.532 +23.144 +68.63 68.79 +67.17 +67.165 +15.7 15.81 +33.20 +114409 93.129 +114411 93.301 +114413 93.233 +114415 93.213 +114417 92.24 +11.23 +59.23 +92.24 +12.9{N:001} +90.60 +92.24 +26.9 +114426 92.24 +88.66 +114430 93.294a +87.76 +12.1 +89.94 +53.74 +93.169a +93.387 +89.8 +31.102 31.85 +30.93 +12.1 +114442 28.2 +72.2 +92.24 +89.8 +53.1 53.5 +89.13 89.27 89.60 +25.59 +23.88 +67.96 +114452 33.286 +92.24 +88.40 +12.1 +67.17 +67.78 +67.133 +114460 28.36 +67.1 +57.4 +92.24 +33.98 +92.11 +89.76 90.10 +33.258 +114469 35.50 +92.1 +89.8 +33.326 +92.24 +21.31 +92.4 +12.1 +93.364a +73.1 +36.40 9.46 +89.4 89.8 +57.9 +31.104 +88.66 +114485 22.42 +114487 12.1 +12.12 +114490 93.387 +93.169a +92.24 +21.31 +92.4 +114496 89.60 +85.65 +114500 93.508 +89.59 +92.24 +57.43 +62.4 +114506 37.104 +89.90 +1.88 +53.77 +64.12 +92.1 +114513 33.325 +89.65 +92.12 +114517 33.433 +60.10 +10.54 +10.53 +57.1 +10.36 +31.86 31.87 +114526 33.428 +88.96 +114529 36.26 +89.23 +71.21 +92.24 +53.71 +114535 89.37 +12.1 +37.39 +33.433 +114540 88.206 +114542 88.175 +114544 88.288 +114546 88.137 +114548 25.26 +89.125 +34.58 +25.105 +88.94 +88.12 +88.24 +88.84 +31.49 +92.24 +89.8 +92.24 +33.224 33.236 +31.87 71.17 +33.260 33.98 33.99 +89.49 89.59 +114565 74.2 74.4 +114567 25.150 +89.141 89.76 89.84 +92.24 +33.224 33.236 +92.24 +23.129 +114574 92.24 +33.455 +33.417 +89.23 +114580 36.26 +33.378 +114583 31.13 +78.7 +92.24 +63.20 +92.24 +11.51 +114590 33.124 +71.34 +114593 59.29 63.1 +10.8 +31.72 +33.224 +114599 71.21 +88.150 +57.192 +89.29 89.60 +33.69 +114605 63.20 +92.37 +57.4 +92.11 +53.79 +93.507 +67.86 +33.255 +88.106 +88.119 +23.19 +88.248 +92.24 +33.264 +114621 72.1 +89.26 +114624 89.15 +33.417 +92.11 +88.74 +89.59 +72.15 +89.5 +92.24 +31.104 +114634 30.35 +93.171 +33.13 +114638 33.330 +9.1 +31.62 68.44 +92.24 +72.2 +59.23 +53.29 +92.24 +53.29 +114648 92.24 +88.260 +114651 31.98 +92.23 +53.29 +89.125 +88.260 +92.11 +114658 92.24 +26.14 +114661 92.24 +26.13 +12.1 +28.1 +33.221 33.274 +114667 92.24 +42.11 +34.48 36.43 +114671 25.188 +114673 36.24 +114675 89.60 89.7 +59.24 +42.11 +88.1 +65.13 +89.124 +114682 33.70 +114684 66.1 +92.24 +23.129 +33.236 +9.31 +114690 88.87 +88.47 +88.94 +23.129 +92.24 +31.104 +92.24 +25.43 +92.24 +25.174 +9.37 +64.16 +90.23 +41.8 +53.6 +114706 33.397 +114708 6.197 +114710 87.82 +33.249 +89.59 +33.229 +92.24 +67.116 +114717 25.37 +25.38 +88.94 +88.28 +46.3 +88.1 +36.18 +92.24 +92.21 +10.53 +89.59 +114729 92.24 +33.98 +92.24 +12.1 +33.400 +92.24 +67.116 +64.16 +25.150 +32.34 +89.6 +59.23 +92.10 +13.26 +58.59 +88.4 +42.11 +89.5 +92.24 +33.224 33.236 +88.43 +88.46 +33.98 33.99 +72.14 +33.415 +89.59 +92.24 +39.6 90.16 +39.6 +25.196 +114760 33.69 +90.24 +92.4 +92.23 +88.116 +87.76 +57.4 +57.13 +36.18 +89.5 +59.23 +25.94 +114774 33.455 +114776 57.246 +89.125 +58.28 59.23 +31.85 31.88 +65.20 88.1 +28.51 +89.59 +92.24 +33.236 +92.24 +92.24 +21.31 +92.4 +12.1 +79.12 +89.5 +59.23 +89.23 91.1 +24.21 +92.24 +88.66 +92.24 +12.1 +21.28 21.29 +59.23 +9.1 +33.226 +92.4 +90.22 +30.52 +92.24 +53.10 +114809 92.24 +41.39 +25.12 25.20 +88.94 +114814 88.15 +114816 53.6 +41.2 +67.136 +92.24 +67.38 +67.143 +85.60 +92.24 +25.119 +25.61 +89.92 +24.21 +92.24 +79.18 +92.24 +87.22 +12.1 +114834 21.31 +92.4 +93.387 +93.169a +114839 23.100 +114841 90.36 +92.4 +89.59 +37.128 +92.4 +89.122 +59.23 +88.139 +114850 53.28 +114852 11.12 +57.5 58.48 +25.77 +65.22 88.4 +42.11 +114858 33.70 +114860 25.150 +114862 33.417 +89.79 +78.44 +37.42 +92.23 +114868 76.25 +29.10 +92.11 +37.56 +37.38 +36.18 +36.12 +89.7 +59.23 +42.11 +65.20 +77.2 +114881 92.23 +33.400 +39.24 +114885 88.63 +78.44 +88.59 +28.51 +90.58 +59.23 +9.1 +89.23 +114894 67.9 +114896 92.4 +32.50 +36.24 +31.67 +37.25 +25.20 +114903 25.27 +58.45 +13.8 +88.105 +114908 88.160 +41.3 +88.204 +88.198 +92.26 +89.124 +114915 92.24 +88.67 +114918 92.24 +25.36 +92.24 +21.31 +92.4 +12.1 +24.21 +114926 89.25 +42.11 +92.24 +89.5 +88.13 +114932 42.7 +92.4 +89.125 +89.8 +92.24 +92.11 +88.76 +21.27 +92.4 +89.76 +53.43 +41.53 +114945 58.72 +12.18 +88.24 +114949 59.50 +90.57 +92.4 +59.57 78.15 +90.4 +93.169a +93.387 +92.24 +21.31 +92.4 +89.59 +34.46 +92.24 +92.30 +88.66 +57.133 +13.48 +89.8 +25.61 +23.88 +67.96 +31.87 +92.24 +33.98 +89.92 +89.6 +114976 25.3 +114978 33.322 +89.59 +30.20 +88.4 +42.11 +35.12 +92.24 +31.102 +12.1 +114989 88.4 +114991 65.40 +92.24 +9.1 +89.124 +32.55 +33.440 +114998 10.26 +115002 39.23 +33.337 +13.157 +89.23 +115007 65.50 +115009 65.37 +39.17 +9.1 +67.48 +115015 60.49 +33.424 +34.41 +28.1 +115020 92.24 +64.2 92.31 +88.265 +115024 88.289 +115026 30.119 +115028 15.66 +84.18 +115031 93.42 +115033 93.369 +68.63 68.79 +115036 84.18 +92.1 +84.22 +93.543 +89.23 +83.2 +67.166 +30.75 +93.139 +92.24 +56.37 +115048 93.33 +68.65 +15.72 +89.59 90.22 +92.23 +92.11 +57.43 +89.124 89.87 +27.12 +89.93 +92.24 +92.5 +88.4 +42.11 +68.67 +89.48 89.57 +92.24 +71.39 +57.40 +89.59 +115070 65.34 +33.20 +115073 92.24 +89.108 +92.1 +59.23 +33.20 +92.24 +25.33 +92.4 +13.8 89.84 +31.102 +92.24 +88.66 +89.108 +59.23 +115088 93.294a +37.117 +93.387 +93.169a +115093 93.361 +92.24 +11.23 +93.377 +92.24 +25.45 +115100 42.44 +92.4 +115103 93.34 +92.24 +11.24 +115107 93.46 +92.24 +34.19 +92.4 +115112 92.24 +89.4 +7.2 +115116 11.32 +115118 88.66 +115120 22.42 +115122 12.1 +12.12 +92.4 +115126 12.9{N:001} +93.169a +93.387 +25.100 33.349 +92.24 +12.1 +92.1 +67.88 +29.18 +115136 90.45 +67.136 +92.24 +33.178 +92.1 +33.212 +115143 92.24 +25.43 +115146 92.24 +31.85 +115150 90.58 +92.24 +12.9{N:001} +93.169a +115155 90.59 +59.23 +92.24 +11.27 +89.59 +92.24 +34.5 +92.24 +31.102 31.104 31.85 +115165 13.124 +13.48 +89.48 89.5 90.23 +28.2 +59.23 +88.1 +92.24 +83.13 83.9 +92.4 +89.57 90.23 +93.387 +89.23 +25.123 +115180 25.150 +90.65 +89.13 89.27 90.9 +92.24 +25.43 +115186 89.33 90.21 +92.24 +26.11 +92.24 +11.27 +23.80 +90.4 +115194 11.23 +89.47 +115197 89.119 +93.387 +25.158 +90.65 +33.325 +115203 92.24 +66.1 +89.26 +92.24 +25.43 +89.126 +33.168 +64.2 +115212 64.12 +93.294a +9.31 +115216 67.38 +115218 37.117 +93.387 +93.169a +33.168 +115223 89.6 90.39 +92.24 +92.2 +36.40 +23.58 +13.8 83.13 +92.24 +37.115 +115232 93.288 +92.24 +67.9 +115236 65.33 +115238 67.38 +115242 92.1 +65.31 +15.70 +115247 92.11 +115250 92.24 +92.2 +25.50 +92.1 +25.3 +115257 92.3 +13.150 +89.59 +90.36 +115262 92.1 +35.19 +115265 92.24 +37.115 +92.24 +33.217 +89.124 +89.120 +92.24 +92.8 +31.14 31.3 +92.23 +90.45 +25.1 +89.59 +115279 89.37 +89.4 89.8 +71.30 +92.24 +65.20 +115286 89.125 +115288 25.65 +89.23 +71.12 +90.44 +115293 85.41 +115295 67.148 +89.59 +67.96 +92.11 +57.137 +67.130 +64.12 +87.76 +89.125 +87.30 +87.76 +11.23 +25.45 +78.7 +92.1 +89.124 89.94 +59.17 +78.28 +115315 13.8 89.119 +26.7 +115319 12.9{N:001} +89.50 +115322 92.1 +31.1 +34.6 +34.53 +92.11 +64.12 +92.1 +89.124 89.94 +115331 92.12 +115333 88.22 +115335 57.219 +115337 92.1 +57.226 +92.1 +93.294a +33.61 +92.24 +92.2 +8.30 +92.1 +57.156 +115349 33.69 +115353 92.10 +92.1 +57.220 +69.1 +11.23 +92.1 +115360 35.4 +89.119 +12.9{N:001} +23.84 +92.1 +92.24 +26.11 +13.8 89.119 +93.387 +31.82 33.301 +92.24 +36.15 +115373 33.61 +115375 28.1 +115377 89.93 91.12 +78.29 +115380 33.69 +90.45 +89.94 +67.34 +89.93 +77.3 +92.1 +34.57 7.31 +89.23 +25.59 +115391 89.76 +92.24 +33.178 +115395 57.102 +115397 33.20 +115399 93.120 +92.24 +37.118 +92.1 +89.119 +93.387 +93.169a +93.255 +93.38 +93.92 +93.234 +92.24 +42.44 +92.1 +92.24 +88.66 +92.24 +12.9{N:001} +93.169a +93.387 +89.108 +92.24 +26.9 +115423 63.19 67.11 89.81 +115425 58.29 89.82 +67.24 +33.70 +92.24 +10.20 +83.13 90.6 +92.24 +53.79 +92.24 +12.1 +67.33 +61.13 +92.24 +67.142 +115440 33.70 +92.4 +115443 12.15 +115445 37.96 +57.139 +59.23 +90.4 +115451 42.29 +92.24 +1.2 +115455 13.1 +14.48 +92.24 +14.49 79.18 +115460 58.62 +92.24 +58.1 +92.11 +115465 13.35 +92.24 +59.23 63.2 +92.24 +33.9 33.98 +92.24 +76.1 +92.11 +53.28 +92.24 +88.310 +90.45 +17.12 +83.23 +82.8 +92.24 +12.5{N:001} +83.13 +1.13 +78.52 +87.28 +13.48 +92.24 +12.28 +78.52 +58.40 +33.126 +115493 92.11 +57.131 +89.23 +115497 92.24 +12.28 +33.69 +67.9 +12.15 +92.1 +115505 92.1 +67.205 +23.58 +115510 67.55 +92.1 +115513 92.11 +115515 12.12 +115517 92.11 +115519 92.1 +115521 12.15 +115524 89.97 +15.173 15.194 +92.24 +10.43 +84.22 +92.24 +1.39 +33.69 +115533 53.56 +92.11 +59.23 +12.28 +12.1 +115539 89.136 +89.7 90.58 +92.24 +12.28 +33.69 +92.24 +13.9 +92.24 +12.28 +92.11 +14.4 +115551 92.24 +35.23 +92.11 +2.3 +2.4 +89.136 +89.7 90.58 +92.24 +12.15 +92.24 +12.1 +92.24 +37.71 37.72 6.112 +115565 67.95 84.22 +92.24 +67.143 +92.24 +67.95 +115571 92.24 +37.53 6.218 +92.24 +88.19 +37.53 6.218 +92.24 +37.64 +115579 25.104 25.43 +88.13 +115582 88.198 +88.139 +89.26 +115586 37.107 +115588 92.24 +12.1 +92.24 +12.1 +115593 6.202 +25.132 +78.29 +92.24 +34.8 +115600 12.9{N:001} +115602 67.33 +67.65 +92.24 +1.39 +7.42 +115608 42.12 +92.24 +9.17 +115613 92.24 +1.5 +92.11 +13.96 20.31 +115619 13.89 +115621 59.23 +67.104 +64.12 +6.162 6.172 +115626 64.12 +6.163 6.172 +79.120 +92.11 +64.12 +6.162 6.172 +115633 57.142 58.43 +115636 92.24 +58.31 +115640 92.24 +67.167 +115644 13.39 +115646 89.7 90.58 +115648 92.24 +12.28 +33.69 +67.9 +17.12 +87.34 +82.8 +92.1 +67.119 +71.8 +85.32 +92.24 +39.11 +115662 37.8 6.117 +92.24 +37.8 +115666 69.12 +59.23 +115669 35.24 +12.33 +89.57 +35.19 35.21 +15.66 +90.38 +92.24 +67.62 +57.131 57.138 +21.25 +89.26 +115681 71.21 +78.31 +31.47 +92.4 +92.24 +24.52 +115689 31.69 +89.23 +115692 92.24 +90.4 +12.28 +33.70 +33.98 +13.48 +28.43 31.90 +115700 59.23 +36.28 +115703 36.27 +57.125 +88.15 +38.17 +92.16 +92.4 +21.14 +30.50 +78.36 +21.25 21.26 +115714 67.65 +90.48 +33.70 +90.4 +92.24 +12.9{N:001} +90.1 +92.24 +24.52 +90.59 +92.4 +28.44 31.91 +33.268 +92.24 +12.1 +89.102 +33.477 +89.102 +33.480 +115734 58.45 +76.7 +115737 12.18 +88.24 +57.89 +89.8 +92.24 +92.11 +25.1 +89.23 +115746 12.28 +37.31 +92.24 +1.39 +92.24 +67.62 +89.6 90.24 +115754 33.70 +115756 33.223 +83.7 +115759 33.69 +115762 9.1 +115764 29.16 29.7 +92.11 +115767 10.30 +9.1 +115770 35.39 +92.11 +87.68 +92.11 +59.14 78.43 +115776 78.29 +12.28 +79.18 87.4 +115780 87.4 +87.13 +92.11 +59.23 +37.31 +37.8 83.51 +92.24 +37.8 +92.11 +115790 67.33 89.76 +92.24 +37.31 +92.11 +92.24 +59.23 +92.23 +85.62 +92.11 +37.32 +115801 67.38 +67.129 +24.1 +92.11 +92.24 +59.23 +37.31 +115809 24.7 +92.24 +59.14 +115813 78.29 +12.28 +87.68 +93.169a +89.26 +92.24 +24.78 +92.24 +23.99 +79.18 87.4 +115824 87.4 +87.13 +89.59 +25.89 88.66 +12.1 +90.36 +59.23 +90.78 +23.99 +89.23 +66.1 +92.11 +90.44 +115838 92.24 +59.23 +115841 90.4 +115843 92.24 +59.23 +115846 36.39 9.46 +84.22 +1.15 +15.165 +92.24 +36.6 68.2 +92.24 +21.25 21.26 +92.11 +89.76 +24.78 +88.38 +89.23 +115860 92.24 +53.44 88.26 +115863 92.24 +53.44 88.26 +89.3 90.16 +60.10 63.4 +59.23 +89.26 +115870 89.15 +115872 25.193 +10.49 +92.11 +33.131 +33.69 +33.198 +92.24 +33.126 +115881 92.24 +10.49 +92.1 +83.13 +83.10 83.9 +11.78 +33.113 +115890 67.55 89.97 +92.1 +115893 31.82 +83.46 +92.11 +115897 89.97 +91.13 +92.1 +115901 92.24 +9.46 +115904 92.1 +57.71 +92.24 +12.1 +89.50 +89.32 +92.24 +9.46 +57.98 9.15 +8.64 9.15 +115915 8.63 +115917 92.37 +64.9 +57.6 +92.24 +58.31 +89.59 +89.76 +92.24 +23.99 +13.100 +92.24 +92.24 +76.6 +92.24 +23.99 +115935 92.24 +12.34 +115938 37.127 +115940 59.7 +25.251 +23.99 +67.140 +67.86 +92.24 +23.88 +37.5 +37.26 +115950 89.23 +115952 91.7 +12.28 +30.42 35.1 +89.125 +10.29 +93.7 +30.42 35.1 +84.11 +71.25 71.35 +89.4 +58.28 +92.24 +11.23 +64.4 +89.59 +13.48 +88.77 +115970 31.87 +53.89 +92.24 +89.7 +92.24 +12.1 +89.57 +92.24 +40.9 +92.24 +88.310 +92.24 +11.12 +89.23 +89.26 89.76 +92.27 +24.78 +92.37 +88.308 +74.5 +92.24 +88.308 +35.1 +84.11 +11.23 +11.27 53.46 +33.312 33.313 +1.12 12.17 +34.8 +30.4 +92.24 +53.74 +116003 53.89 +92.24 +33.274 +92.4 +93.169a +31.87 +116010 92.24 +37.106 +92.37 +64.12 +116015 93.266 +83.13 +59.29 +92.24 +10.8 7.2 +92.11 +89.23 +116023 33.357 87.4 +116025 78.29 +93.266 +65.18 +89.8 +59.19 78.52 +116031 87.4 +116033 92.24 +7.2 +92.24 +45.1 +92.11 +89.23 +59.23 +7.2 +45.1 +90.1 +116044 89.124 89.94 +92.24 +59.23 +45.1 +12.1 +89.92 +91.3 +93.266 +31.87 +83.13 +59.29 +92.24 +7.2 +92.11 +64.12 +35.20 +89.57 +33.262 33.264 +92.24 +33.70 +116065 93.387 +64.12 +12.15 +37.9 +92.24 +10.8 +92.11 +116073 10.8 +116075 92.4 +116077 92.24 +25.158 +116080 92.24 +33.368 33.371 +92.24 +25.59 25.61 25.62 +116087 57.1 +89.47 +89.34 +33.69 +92.24 +12.18 +92.24 +88.24 +116096 67.205 +92.24 +33.103 +92.11 +24.52 31.56 +116102 88.226 +92.24 +26.3 +116106 64.12 +67.136 67.33 83.13 +92.24 +39.40 +67.33 +92.24 +67.142 +92.24 +27.46 +83.13 +92.24 +1.86 +83.5 92.28 +27.46 +92.24 +10.20 +116123 89.76 +27.45 +116126 24.1 +92.24 +42.11 +92.1 +67.94 +67.167 +89.47 +88.172 +92.24 +10.4 11.4 +116138 33.69 +67.86 +31.67 +92.24 +26.3 +89.124 89.94 +92.11 +116146 27.2 28.1 32.16 +92.24 +41.16 +92.1 +64.12 89.52 +33.463 +13.8 89.84 +92.24 +88.173 +92.1 +89.65 +15.93 +84.22 +92.24 +23.81 +92.1 +27.58 +11.23 +116167 83.13 +116170 26.3 +88.110 +31.105 +89.48 89.5 90.23 +92.24 +34.26 +89.122 +12.1 +23.88 +89.125 +25.150 +92.25 +67.33 +59.27 +67.92 +67.119 67.139 +116187 92.24 +67.205 +33.131 +89.59 +116192 88.225 +116194 63.20 +116196 31.12 +92.24 +88.118 +89.23 +34.8 +92.24 +93.387 +13.48 +89.68 +92.24 +67.65 68.1 +92.24 +31.84 +67.119 +67.66 +31.90 71.15 +57.1 +67.33 89.5 +92.24 +33.69 +116217 67.205 +92.24 +33.103 +92.11 +24.52 31.56 +116223 88.226 +92.24 +26.3 +116227 64.12 +67.136 67.33 83.13 +92.24 +39.40 +89.23 91.1 +116233 24.52 +39.40 +91.11 91.2 +116237 59.23 +92.24 +15.40 +84.4 +93.398 +90.4 +93.266 +89.94 +116246 88.172 +67.94 +67.167 +69.12 +92.24 +88.289 +116253 92.24 +8.8 +15.118 +83.13 +92.24 +1.86 +89.94 +116261 33.463 +116263 15.93 +84.22 +92.24 +23.81 +92.11 +89.131 89.65 +116270 92.24 +31.107 36.23 +89.87 +24.7 32.11 +116276 74.5 +15.93 +89.26 +31.97 +89.50 +25.252 +116284 13.92 +33.288 +15.93 +84.22 +92.24 +23.81 +92.11 +31.29 +116293 63.20 +116295 13.21 65.51 +89.23 +116299 33.215 +64.15 +92.30 +89.125 +116304 35.2 +92.24 +33.98 +92.24 +24.52 24.57 +92.30 +116312 92.24 +31.85 +92.24 +24.52 +89.23 91.1 +15.93 +84.22 +92.24 +23.81 +92.24 +31.102 31.85 +64.14 89.34 +33.69 +64.12 +33.463 +13.8 89.84 +92.24 +88.173 +92.1 +89.65 +15.93 +84.22 +92.24 +23.81 +92.1 +89.72 +92.24 +42.11 +67.131 +42.37 +1.1 1.39 +13.80 +89.23 +33.69 +83.7 +90.24 +92.24 +60.54 +61.10 +116352 23.81 +92.24 +12.1 +116356 92.24 +67.178 +92.24 +60.54 +89.122 +59.23 +92.24 +42.11 +92.11 +116366 83.13 +116368 67.55 +89.65 +15.93 +84.22 +92.24 +23.81 +92.1 +89.50 +89.32 +13.140 +116379 15.93 +84.22 +92.11 +116383 92.24 +67.18 +33.215 +116387 15.93 +89.26 +31.107 36.23 +67.55 +30.83 +116393 67.186 +67.205 +83.13 90.6 +93.91 +33.69 +67.48 +59.18 +67.78 +64.14 +33.86 +116404 67.205 +92.24 +33.103 +92.11 +24.52 31.56 +116410 88.226 +92.24 +26.3 +116414 89.23 +116416 92.11 +93.169e +23.85 +71.14 +116421 89.6 90.24 +58.37 +67.186 +33.70 +67.48 +116427 89.46 +85.65 +67.185 +92.24 +11.12 +92.24 +12.1 +89.23 +92.24 +15.93 +84.22 +92.24 +23.81 +92.11 +116442 92.11 +23.81 +89.122 +92.24 +42.11 +92.11 +64.13 +116450 92.24 +57.4 +92.24 +12.1 +89.50 +68.63 +15.93 +84.22 +92.30 +92.24 +23.81 +89.59 +116463 13.8 83.13 89.26 89.76 +92.24 +58.31 +58.59 +92.24 +31.107 36.23 +116470 15.118 20.60 +89.23 +92.24 +33.98 +92.24 +12.1 +23.88 +116478 13.124 +116480 79.96 +78.29 +59.24 +6.33 +79.94 +116486 15.32 +84.19 +63.24 +23.88 26.4 +116491 26.9 +116493 8.59 +116495 8.62 +116497 56.23 +30.15 +116500 30.66 +26.3 +116505 42.38 +28.68 +83.33 +92.11 +116510 59.23 +28.62 +116513 28.61 +92.24 +24.16 +92.11 +89.7 +116519 92.4 +92.24 +89.18 +89.50 +116524 53.89 +87.22 +15.17 15.32 +92.24 +1.11 +93.169a +92.24 +12.15 +92.24 +12.15 +18.6 +92.24 +33.274 +89.23 +116539 53.89 +116542 74.5 +25.57 +92.24 +74.23 +92.4 +89.124 +88.308 +89.4 +58.28 +89.8 +64.3 +89.120 +88.289 +89.50 +15.77 +89.79 +25.158 +92.24 +37.72 6.112 +92.24 +25.89 88.66 +89.59 +57.125 +88.76 +116567 25.89 88.66 +13.17 +89.57 +67.6 +35.1 +89.23 +59.23 +53.89 +89.3 90.16 +9.1 +30.86 +90.36 +9.1 +37.104 +92.24 +89.7 +92.24 +12.1 +89.59 +57.80 +89.102 +57.84 +116590 53.20 +90.24 +88.310 +74.5 +88.65 +92.24 +28.13 +116598 31.67 +89.32 +116601 92.37 +13.6 85.54 +74.23 +116605 89.26 90.44 +92.37 +71.35 +64.14 +90.39 +92.24 +11.12 +116615 92.11 +57.80 +89.6 +88.310 +116623 57.55 +92.24 +87.4 +89.125 +33.312 +116629 92.24 +12.1 +64.15 +116633 93.1 +61.9 +89.93 +92.24 +93.387 +116640 87.8 +13.48 +53.89 +89.125 +92.24 +33.70 +116647 92.11 +12.15 +92.1 +116652 92.1 +67.205 +23.58 +116656 64.14 +116658 83.13 +58.37 +33.69 +116662 53.87 +67.95 84.22 +92.24 +67.95 +89.8 +92.24 +58.21 +93.261 +116671 67.136 +92.24 +67.142 +92.24 +23.90 +92.11 +89.102 +33.171 +116680 33.172 +116682 92.24 +74.5 +21.18 +92.11 +84.4 +23.99 +89.123 89.79 +25.138 +78.16 +116692 8.73 +15.192 57.80 +116695 24.60 +89.25 +92.24 +53.7 +89.71 +116701 12.15 +27.15 +89.25 +116705 24.78 90.66 +92.24 +36.15 +116709 88.38 +13.48 +59.23 +92.24 +36.15 +92.11 +89.15 +21.25 +67.96 +33.127 +90.1 +92.24 +12.1 +53.89 +89.8 +92.24 +58.21 +93.261 +89.6 90.24 +116730 92.4 +92.24 +33.98 +116734 33.149 +33.69 +89.32 +32.47 88.249 +13.3 +92.24 +24.52 24.53 +116743 71.25 +116745 33.243 +89.26 +92.24 +67.78 +67.55 +116751 71.23 +92.24 +33.224 +116756 92.24 +58.19 +92.24 +58.20 +92.24 +33.97 +92.24 +12.1 +116765 13.48 +116767 71.23 +5.19 +116770 79.7 +5.1 +89.23 +59.24 +92.24 +23.2 +5.19 +28.15 +33.98 +88.13 +89.23 +9.43 +116785 92.24 +79.7 +5.1 +88.100 9.10 +92.24 +89.26 89.76 +92.24 +42.10 +92.24 +32.28 +36.11 +116797 89.44 89.60 90.25 +30.112 +116800 88.4 +116802 88.106 +89.47 +15.48 68.43 +92.24 +92.24 +58.20 68.1 +92.24 +93.387 +33.51 33.98 33.99 +84.17 +92.24 +88.101 88.37 +13.58 +116816 67.55 +85.49 +89.12 +41.52 +89.122 +23.121 65.39 +42.11 +116824 31.85 +84.17 +12.1 +116828 53.31 53.41 +116830 85.51 +8.30 +23.93 +23.121 +116835 56.20 +67.96 +116839 90.45 +89.68 +13.138 +92.24 +12.1 +116845 71.3 +92.24 +60.68 +14.39 +116850 90.78 +92.24 +57.84 +92.24 +12.17 +116856 34.8 +12.18 +88.24 +13.48 +116861 90.78 +88.4 +12.1 +33.98 +116866 76.1 +67.62 +67.143 +116870 34.26 +67.55 +13.67 +84.22 +41.52 +20.77 +116877 92.24 +12.15 +92.24 +12.15 +116882 25.200 +89.23 +2.14 +92.24 +14.35 +92.24 +83.46 +92.11 +116891 67.11 +2.10 +116894 23.194 +3.14 +65.32 66.3 +92.30 +90.38 +116901 43.1 +90.63 +33.356 33.470 +90.15 90.7 +92.24 +12.1 +116908 23.194 +3.17 +116911 3.17 +65.13 +116914 33.474 +67.61 83.26 +116917 92.24 +67.66 89.40 +78.51 89.48 +14.63 +116922 25.45 +33.301 +89.6 +116926 92.24 +65.21 +116929 18.6 90.51 +21.26 +116934 33.70 +116937 88.20 +92.24 +12.1 +29.14 29.17 +92.24 +42.42 +116945 92.24 +25.43 +116948 28.51 +90.23 +92.24 +33.126 9.19 +92.11 +35.19 35.37 +116955 35.19 35.37 +92.24 +11.27 +116959 25.12 +59.27 +116962 92.24 +58.31 +25.74 +28.51 +78.51 89.60 89.7 +92.24 +31.45 +92.24 +25.61 25.62 +67.119 +67.66 +116975 88.249 +13.48 +116978 41.45 +92.24 +89.76 +31.85 +116983 25.167 +57.131 +92.24 +33.288 +116988 92.24 +93.7 +33.286 +92.24 +12.1 +89.32 +90.29 +92.23 +116997 33.463 +116999 33.463 +117002 33.69 +91.8 +67.174 +88.69 +88.69 +117009 59.69 +59.69 +117013 61.9 +25.168 +57.60 +92.24 +33.288 +117019 9.1 +90.29 +92.24 +87.28 +33.463 +117025 92.11 +59.23 +33.445 33.456 +61.15 +89.57 +28.44 +92.24 +33.463 +89.5 +117035 78.31 +25.3 30.56 +24.25 72.5 +92.24 +57.133 +92.24 +33.288 +92.24 +13.61 +92.24 +30.57 +92.11 +92.24 +12.1 +31.21 +33.463 +89.59 +89.76 +60.11 +13.105 +13.61 +89.5 +117058 71.3 +33.253 +12.1 +78.16 +25.150 +117064 92.24 +21.15 +18.6 +92.24 +13.76 +25.59 25.61 +117072 64.12 +6.48 +92.24 +23.88 +117077 21.10 +117079 31.90 +117081 15.93 +117083 92.24 +83.15 +92.24 +6.160 +83.5 +36.9 +93.169a +90.36 +92.4 +15.93 +89.8 +92.24 +58.21 +93.261 +53.89 +13.48 +67.95 84.22 +92.24 +67.95 +117104 92.24 +93.261 +37.67 +93.321 93.566 +53.87 +92.24 +12.1 +92.24 +12.4 +92.24 +13.120 +93.7 +15.88 +84.3 +92.24 +20.74 +92.24 +37.67 +117123 33.470 +92.11 +117127 60.66 +63.20 +59.23 +57.90 +93.7 +89.104 +60.46 +33.145 +37.67 +88.13 +89.104 +67.44 +117140 37.67 +93.321 93.566 +117144 37.67 +22.42 +10.15 +10.17 +10.27 +69.9 +67.65 +67.142 +69.9 +23.88 +67.66 +117157 64.4 +92.24 +12.15 +92.24 +12.15 +68.11 +53.87 +117165 92.24 +67.95 +89.94 +32.11 +87.32 +117172 60.66 +93.7 +92.24 +10.22 +117177 63.20 +92.24 +57.244 +89.92 +91.3 +92.24 +89.3 +92.24 +10.30 +93.231b +92.24 +53.86 +57.125 +33.330 +117192 57.115 +89.8 +92.24 +33.55 +92.24 +11.12 +117200 92.24 +11.25 +92.11 +89.71 +15.40 23.60 +84.4 90.16 +92.24 +8.43 +93.7 +117210 92.24 +117212 10.25 +89.3 +92.11 +57.115 +93.7 +117218 92.24 +117220 92.24 +33.288 +33.470 +117224 89.120 +59.23 +33.445 33.456 +92.24 +87.67 +90.1 +92.24 +87.28 +33.470 +117234 89.136 +92.35 +60.66 +23.99 +9.1 +57.65 +89.136 +83.2 +33.262 +117244 23.88 +117246 33.139 +33.139 +33.69 +90.4 +93.7 +89.93 +93.231b +92.24 +60.66 +57.65 +57.114 +117258 67.128 +83.13 +92.24 +8.43 +92.24 +10.20 +117266 13.120 +92.11 +93.261 +91.3 +89.50 +117272 88.38 +89.76 90.4 +92.24 +53.92 +53.86 +117278 89.23 +92.24 +11.12 +90.23 +92.11 +33.339 +117285 59.75 +57.40 71.23 +117288 92.24 +58.21 +93.261 +13.81 +58.36 58.37 +53.87 +117296 89.8 +92.24 +58.21 +93.1 +33.131 +117302 13.64 +92.24 +53.86 +117306 71.38 +117308 33.333 +13.52 +13.107 +117312 90.23 +117314 33.69 +117316 10.2 +58.36 58.37 +34.31 +90.15 +117321 92.23 +68.19 +92.24 +6.114 +117326 28.60 +117328 90.16 +93.174 +10.35 +92.24 +12.9{N:001} +92.4 +90.23 +117336 10.2 +89.6 90.24 +53.87 +92.23 +33.59 93.266 +33.70 +117343 78.31 +59.75 +32.20 +117347 89.30 89.65 90.26 +89.8 +92.24 +64.3 +93.261 +13.81 +53.87 +58.36 58.37 +117356 13.48 85.7 +117358 89.4 89.8 +33.333 +33.330 +26.8 9.13 +89.125 +89.4 89.8 +76.1 +23.88 +13.47 +117368 33.262 +117371 53.87 +67.95 84.22 +92.24 +67.95 +89.8 +92.24 +58.21 +93.261 +117380 89.136 +13.36 76.24 +13.114 +33.330 +13.107 +89.26 +92.24 +92.11 +79.69 +117390 65.50 +117392 92.23 +88.38 +92.24 +33.55 +89.124 89.136 +68.10 +65.21 +25.61 25.62 +89.76 +117402 15.75 +92.24 +12.1 +117406 89.8 +78.52 +117409 89.120 +33.463 +117412 89.136 +92.24 +89.120 +33.463 +117417 13.48 +53.87 +89.136 +92.24 +89.78 +33.463 +90.4 +92.24 +33.69 +90.58 +92.11 +33.463 +12.9{N:001} +117432 31.59 +117434 53.87 +67.95 84.22 +92.24 +67.95 +89.8 +78.52 +117441 65.21 +34.44 57.124 +70.8 +13.48 +93.169a +117447 89.136 +92.24 +59.1 +117451 13.48 +53.87 +89.26 +92.24 +23.99 +13.146 +68.11 +89.136 +92.24 +89.26 +92.24 +13.89 +92.11 +67.95 84.22 +92.24 +67.95 +13.61 +117469 92.24 +53.86 +89.25 +117473 74.5 +21.27 +67.95 84.22 +92.24 +67.95 78.47 +92.24 +15.77 +90.4 +92.11 +92.24 +12.1 +67.88 +23.88 +89.57 +92.24 +33.169 33.347 +90.36 +92.11 +117492 92.4 +117494 66.1 +64.2 92.31 +53.89 +88.24 +88.2 +53.36 +63.29 +89.122 +92.24 +88.295 +117505 81.6 83.50 +92.24 +1.5 +13.3 +117512 89.90 +67.92 +71.30 +64.13 +92.24 +53.89 +60.47 +90.36 +92.24 +57.4 +88.310 +53.20 +53.17 +67.44 +92.24 +92.24 +11.12 +117531 42.7 +60.67 60.68 +117534 53.17 +117536 92.24 +33.55 +9.1 +37.104 +53.89 +117542 74.23 +117544 92.24 +33.98 +92.24 +33.463 +92.24 +67.48 +92.24 +33.55 +12.15 +67.95 84.22 +92.24 +67.95 +88.38 +117558 33.12 +90.23 +92.24 +33.69 +117563 64.2 92.31 +53.89 +117566 17.12 +83.23 +82.8 +92.24 +6.112 +92.24 +12.5{N:001} +83.13 +92.24 +1.11 +35.23 +92.24 +7.18 88.24 +117580 92.24 +7.17 +92.24 +70.3 +117585 45.2 +92.24 +12.9{N:001} +117589 9.1 +117591 59.23 +53.89 +117594 92.24 +57.80 +117597 57.84 +89.87 +53.20 +37.104 +89.25 +71.39 +117608 57.80 +117610 91.3 +117613 83.46 +1.39 +71.14 +69.8 +117618 53.87 +117620 92.24 +57.80 +89.8 +33.55 +92.24 +57.84 +117627 58.59 +117629 58.65 +92.24 +1.12 +53.14 +64.14 +28.39 +93.266 +67.62 +45.2 +92.24 +7.17 +117641 33.69 +30.45 +42.29 +59.23 +89.8 +92.24 +58.58 +92.24 +33.150 +117651 83.47 +92.24 +1.46 +117656 58.40 +35.25 +90.61 +78.52 +117662 31.22 +65.21 +34.43 +117666 89.13 +65.21 +33.288 +33.339 +117672 92.24 +60.46 +92.30 +117676 88.317 +71.14 +117679 60.49 +80.1 +25.9 57.59 +117683 33.431 +92.11 +33.69 +91.10 +67.142 +117689 33.69 +12.9{N:001} +117692 13.88 68.22 +37.9 +92.24 +11.58 +93.182b +117699 92.24 +11.58 +93.174 +34.43 +28.33 58.71 +117705 89.8 +92.24 +34.43 +117709 13.9 +92.24 +10.20 +92.11 +83.47 +67.142 +18.2 +92.1 +92.24 +8.30 +92.11 +15.174 +92.11 +84.4 +1.79 +93.398 +117726 92.11 +117728 68.11 85.55 +83.13 +92.24 +34.43 +92.1 +92.1 +30.50 +92.11 +33.69 +12.9{N:001} +117740 92.24 +34.43 +117743 34.43 +92.24 +11.58 +93.182b +67.48 +92.24 +67.142 +92.30 +33.69 +12.9{N:001} +85.33 +33.333 +92.1 +84.22 +92.24 +26.14 +92.11 +117761 83.46 +26.3 +92.11 +33.65 +92.11 +117768 92.11 +117770 12.1 +117772 92.11 +117774 92.1 +117776 11.12 +117778 69.5 +117780 33.224 +59.27 +92.24 +11.68 +92.11 +117786 59.27 +92.24 +11.57 11.89 +92.11 +33.69 +28.1 +92.24 +12.9{N:001} +117795 59.23 +28.1 +92.1 +84.3 +78.9 79.125 +84.19 +78.2 79.123 87.22 +92.11 +117804 88.77 +117806 92.24 +88.21 +92.11 +117810 92.24 +88.310 +92.11 +69.5 +117815 29.16 29.7 +67.128 +67.33 89.76 +92.24 +33.69 +58.71 +67.103 +92.24 +60.46 +89.94 +92.24 +67.103 +117828 67.105 +67.61 +13.98 +91.3 +89.127 91.7 +117835 92.24 +60.46 +33.334 +53.14 +117840 92.24 +7.18 +1.40 +117844 77.6 +7.17 +92.24 +60.46 +83.13 +117851 92.24 +6.105 +117854 92.24 +6.113 +117857 92.24 +53.26 +92.24 +53.26 +117862 33.69 +7.35 88.24 +117865 83.56 +92.24 +60.49 +6.160 +7.17 +92.24 +33.69 +7.35 +7.35 +90.27 +2.50 +6.116 +117878 92.24 +6.139 +92.24 +34.44 +79.115 +83.8 +2.49 +83.13 +117887 6.125 +2.50 +90.27 +92.24 +5.22 +117893 92.24 +6.218 +93.1 +92.24 +23.195 +117899 92.24 +6.61 +92.24 +34.44 +117904 83.49 +92.11 +6.99 +14.49 79.18 +14.62 +92.24 +40.13 +90.24 +117914 71.1 +67.38 +33.69 +63.16 89.4 +63.14 +117922 77.6 +89.136 +84.22 +92.24 +60.46 +7.17 +67.140 67.15 +67.15 +15.93 +92.24 +53.87 +92.24 +53.14 +68.22 +89.136 +84.22 +92.24 +60.49 +60.67 +92.24 +67.168 +117944 92.24 +53.89 +117947 89.120 +8.64 +117950 15.192 57.80 +90.36 +117954 92.24 +92.24 +11.12 +88.302 +117959 28.42 +92.24 +12.18 +92.24 +88.24 +67.129 +28.36 +92.24 +92.24 +7.35 88.24 +1.99 +67.128 +92.24 +60.46 +7.17 +117975 13.72 +117977 33.15 58.63 +67.117 67.119 90.23 +92.24 +67.1 67.145 67.78 +92.24 +67.41 67.63 +89.8 +117986 57.84 +117988 53.20 +15.192 57.80 +117991 74.5 +89.4 +26.13 +88.38 +92.24 +53.14 +117998 37.9 90.23 +5.1 +118001 5.6 +118003 58.40 +53.31 53.41 +33.334 +8.4 +67.119 +67.78 +62.5 62.6 +13.73 76.17 +118012 15.86 85.7 +93.387 +53.89 +92.24 +13.48 +88.1 +84.29 89.76 90.8 +92.24 +118022 79.129 +7.17 +118025 42.32 +118030 92.24 +42.35 +69.7 +89.76 90.8 +8.64 +4.21 +118037 4.17 +118039 89.76 90.8 +92.24 +57.4 +8.64 +15.93 +60.67 60.68 +84.22 +92.24 +7.35 88.24 +67.96 +37.128 +90.70 +118053 92.24 +8.64 +4.21 +118057 4.16 +118059 14.73 +4.18 +53.32 +92.24 +53.33 +53.44 +89.60 +92.24 +92.24 +8.63 +53.28 +78.13 +78.28 +92.24 +8.64 +92.24 +93.387 +118077 89.76 90.4 +12.18 26.9 +67.96 +118081 57.80 +88.34 +92.24 +12.1 +53.28 +92.24 +26.13 +92.4 +89.122 +65.39 +42.11 +89.57 +92.24 +53.14 +12.1 +23.88 +118098 89.26 +118100 34.44 +58.71 +31.22 +118104 89.59 +23.99 +13.107 +89.57 +37.128 +92.24 +67.136 89.13 +92.24 +60.46 +34.44 +36.28 +57.125 57.55 +92.24 +33.307 +92.24 +33.288 +92.24 +67.96 +57.132 57.140 +118124 83.5 89.5 +57.124 +71.30 +70.5 +23.99 +92.24 +57.123 +118132 57.124 +89.13 90.23 +23.121 +71.15 +89.32 +118139 74.9 +118141 23.88 +92.24 +57.123 +84.11 89.25 +69.7 +92.24 +60.46 +89.120 +8.64 +13.84 +118152 33.70 +59.23 +33.330 +89.8 +92.24 +33.55 +90.1 +93.266 +59.23 +92.24 +11.12 +18.1 +92.24 +8.64 +92.24 +4.17 +118169 92.24 +4.21 +89.109 +2.7 +118174 6.171 8.15 +79.29 +118177 3.26 +118179 92.11 +92.24 +33.52 +118183 59.23 +92.24 +11.12 +47.16 53.32 +33.69 +118189 92.24 +8.64 +92.24 +57.124 +118194 33.329 +90.58 +118197 92.24 +12.1 +118201 92.24 +7.17 +118204 59.23 +92.24 +6.1 6.118 +92.24 +53.13 +92.24 +8.64 +64.1 +53.32 +118214 78.40 +89.76 +8.64 +59.23 +53.28 +89.8 +92.24 +33.55 +118223 89.120 +23.183 +118226 13.107 +40.8 +89.50 +71.30 +89.136 +92.24 +58.59 +92.24 +83.13 +92.24 +1.11 +118238 53.28 +89.136 +92.37 +92.24 +1.12 +53.20 +65.21 87.28 +78.29 +118248 15.93 +93.387 +118251 84.22 +42.32 +7.18 7.35 +58.69 +92.24 +73.2 +89.125 +84.22 +92.37 +92.24 +1.11 +67.38 +24.19 +92.24 +8.18 85.26 +92.24 +12.1 +90.36 +92.4 +69.7 +118272 67.11 +57.80 +118275 64.13 +92.24 +53.89 +15.93 +84.22 +92.24 +7.35 +89.90 +67.168 +89.76 90.10 +8.64 +92.20 +89.32 +71.34 +92.11 +67.11 +24.78 +67.131 +42.37 +1.1 1.39 +118296 91.4 +60.68 +67.33 +67.66 +92.24 +67.143 +89.57 +13.36 +92.24 +88.289 +89.76 +92.24 +53.20 +92.37 +24.19 +118312 89.4 89.8 +78.52 +71.37 +92.24 +9.1 +60.67 +23.99 +118320 67.48 +118322 30.110 +118325 92.24 +93.387 +60.67 +57.80 +89.57 +92.24 +118332 88.310 +53.17 +67.33 +60.49 +89.120 +88.310 +34.50 +92.24 +92.11 +25.63 +89.57 +21.26 +118345 92.24 +33.55 +118348 14.61 +92.24 +67.62 +88.1 +118353 92.37 +92.24 +58.61 +92.24 +13.105 +89.90 +67.168 +92.24 +58.31 +53.20 +118364 57.80 +118366 92.24 +67.95 +67.10 +74.5 +92.24 +15.77 +88.38 +89.32 +118375 71.14 +68.34 +57.80 +89.26 +92.24 +92.23 +118382 67.128 +28.4 +88.310 +92.24 +53.14 +60.67 60.68 +53.28 +89.125 +83.13 89.76 +92.11 +29.11 +88.310 +89.90 +67.168 +118397 71.3 +8.64 +4.16 +118401 4.21 +13.38 +88.310 +89.47 +13.110 +84.22 +92.24 +1.39 +33.69 +53.20 +118412 53.16 +118414 25.1 +118416 9.8 +42.36 +92.1 +53.24 +118421 89.6 +88.310 +118424 25.87 +67.47 +33.69 +92.24 +12.1 +91.13 +83.13 +6.67 +33.52 6.64 +33.54 +90.24 +92.1 +15.84 85.10 +92.24 +42.7 +92.24 +25.2 30.59 +118442 61.6 +33.69 +118445 53.20 +118447 53.16 +118449 53.24 +118451 89.6 +88.310 +118454 25.1 +69.7 +25.87 +118458 89.8 +33.333 33.55 33.56 +57.80 +67.47 +33.69 +91.13 +15.84 85.10 +92.24 +42.7 +92.24 +25.2 30.59 +118470 76.22 +92.24 +60.46 +118474 92.24 +60.49 +76.21 +89.76 +118479 25.2 +88.26 +118482 89.76 +92.24 +53.16 +92.24 +9.8 +93.169a +93.387 +60.67 60.68 +118491 89.136 +59.23 +53.87 +118496 67.92 +53.13 +118499 67.11 +57.80 +92.24 +58.31 +53.20 +118505 67.10 +74.5 +13.38 +88.310 +89.136 +118512 53.20 +90.36 +88.310 +57.80 +67.95 84.22 +92.24 +67.95 +17.12 87.36 +83.23 +82.8 +92.24 +12.1 +92.24 +63.21 67.134 +13.28 +67.119 +85.32 +92.24 +39.11 +92.11 +37.8 6.117 +92.24 +37.8 +92.11 +118538 53.16 +88.38 +67.95 84.22 +92.24 +67.95 +92.24 +88.26 +118546 33.262 +92.4 +118549 92.24 +12.18 +92.24 +88.24 +118554 67.48 +92.24 +33.69 +118558 92.24 +34.43 34.44 +118561 34.43 +89.112 +92.11 +67.48 +92.24 +67.142 +92.30 +33.69 +12.9{N:001} +85.33 +33.333 +92.1 +83.46 +26.3 +92.11 +118578 92.24 +26.14 +92.11 +33.65 +92.11 +118584 92.24 +88.289 +92.11 +118588 92.24 +88.139 +92.11 +118593 29.16 +67.128 +118596 92.28 +40.8 +118599 67.130 +53.16 +89.6 +88.310 +118604 11.23 +118606 25.158 +89.48 89.57 90.23 +92.24 +15.87 +92.24 +7.35 88.24 +89.76 +92.24 +23.107 8.64 +93.169a +118617 13.84 +92.4 +1.99 41.16 +58.73 +118622 23.88 +84.29 +92.24 +6.160 +118628 92.24 +8.4 8.63 +92.11 +118632 53.87 +87.22 +37.9 +92.24 +7.2 +92.24 +12.1 +15.77 +89.109 89.78 89.79 +73.2 +26.3 +13.8 89.119 89.76 89.80 90.10 +31.45 +31.85 +53.32 88.31 +92.24 +88.31 +89.122 +26.13 +88.314 +118653 47.12 +92.24 +8.1 +2.7 +79.48 +31.48 +92.24 +33.274 +92.24 +25.61 25.62 +31.80 +118665 31.87 +92.24 +33.286 +118669 30.43 +92.26 +89.57 +90.55 +25.43 +118675 88.4 +42.11 +118678 68.36 +92.24 +15.128 +118682 64.14 +41.25 +118685 89.125 +25.150 +78.28 +118689 78.52 +78.52 +24.7 +67.21 +92.24 + +118696 30.64 +88.289 +92.4 +67.48 +92.24 +31.50 +92.24 +28.18 28.2 +92.24 +72.2 +67.130 +90.39 +88.310 +13.74 +53.20 +118712 25.255 +92.12 +30.53 +30.110 38.1 56.30 +118717 78.25 +2.3 +67.62 +20.44 +92.24 +39.6 +92.12 +76.24 +33.55 +33.59 93.266 +89.120 +88.80 +89.13 +60.11 +118732 60.12 +33.270 +23.99 +78.13 +31.29 +65.29 +38.6 +65.18 +92.24 +92.24 +12.15 +92.24 +12.15 +19.52 88.196 +118747 65.15 +31.1 +92.24 +8.64 +92.24 +34.44 +89.76 +118755 53.44 88.26 +118757 92.24 +12.18 +92.24 +25.89 88.66 +33.390 +118763 32.4 +92.24 +33.69 +92.1 +38.8 39.33 +92.1 +38.19 +118771 89.97 +56.20 56.30 +12.9{N:001} +92.24 +11.12 +92.11 +25.255 +92.24 +90.71 +84.22 +37.14 8.30 +12.1 +23.88 +118785 29.9 +92.24 +67.18 +67.142 +67.136 +118791 14.39 +25.175 +118794 50.3 74.13 +24.78 +89.104 +92.29 +118799 33.389 +118801 22.2 +25.201 +89.104 +92.29 +34.6 +92.24 +61.9 +41.3 +13.48 +118811 89.102 89.93 +92.24 +37.117 +24.80 25.57 +118816 92.24 +57.235 +92.24 +57.16 57.2 +118821 89.79 +25.123 +31.53 +32.16 +118827 57.16 +65.21 +118830 13.89 +118833 13.45 +92.24 +25.158 +118840 38.17 +118842 25.174 +57.40 71.23 +118846 92.24 +30.59 +92.24 +12.1 +42.7 +57.126 +92.24 +33.288 +118855 67.128 +67.106 67.107 +67.139 +67.139 +92.24 +118861 15.84 85.10 +118864 67.122 +118866 92.24 +88.12 +92.1 +89.77 +31.102 +23.88 +118874 68.53 +118876 25.87 +92.24 +9.20 +92.1 +83.13 89.5 90.6 +92.11 +118883 92.4 +118886 68.53 +84.22 89.48 +20.31 +89.125 +31.102 31.85 +84.22 89.48 +57.62 +26.4 +118896 31.85 +25.59 +31.84 58.1 +72.8 +13.105 +118902 24.7 +118904 89.26 89.76 +118906 33.263 +92.24 +67.27 +31.85 +32.2 +42.36 +92.24 +1.2 +33.9 +12.1 +89.48 +92.24 +118919 90.16 +24.18 +92.24 +24.7 +13.80 +31.85 +93.3 +66.11 +53.20 +78.29 +93.206 +57.80 +92.24 +12.1 +89.26 89.76 +118935 33.263 +118937 34.47 88.12 +33.262 33.263 +90.23 +92.24 +57.84 +92.11 +92.24 +12.1 +118946 89.26 89.76 +92.11 +23.99 +67.128 +33.70 +31.85 +93.118 +15.2 +92.24 +118956 24.1 90.79 +23.99 +118960 27.27 +89.26 +15.2 +92.11 +92.24 +12.1 +118967 67.17 +92.24 +15.2 +33.263 +25.93 +92.24 +12.1 +118975 89.120 +31.85 +71.3 +25.93 +118980 71.34 +31.35 +92.24 +15.77 34.23 +92.24 +12.1 +118987 13.69 +118989 92.24 +27.35 +92.11 +38.18 +13.48 +31.85 +93.285 +28.39 +89.6 90.24 +92.24 +67.129 +24.7 +36.13 53.7 +45.1 77.6 +6.44 +89.57 +21.18 +92.24 +10.8 +92.11 +89.76 +119011 56.31 +92.24 +41.38 9.23 +119015 92.24 +89.8 +31.85 +88.13 +57.139 +13.48 +31.85 +33.312 +93.7 +36.15 +15.40 +84.22 +80.1 +67.62 +119030 57.55 +89.57 +57.132 +119034 15.40 +119036 28.3 +83.6 +119039 31.85 +85.71 85.78 +83.13 84.22 +1.79 +92.24 +33.280 33.288 +64.12 +11.74 +83.13 +7.9 +85.69 +89.108 +93.180 +119053 93.157a +92.24 +57.134 +92.24 +33.280 33.288 +92.24 +58.31 +119061 30.53 85.60 +92.24 +92.24 +7.41 +119066 1.89 +119068 42.53 +119070 45.8 +92.24 +12.1 +31.85 +119075 92.37 +93.329 +74.1 +89.57 90.23 +23.49 +10.29 +57.125 +119083 78.29 +67.78 +67.156 +89.32 +31.87 +31.1 +92.24 +33.286 +89.47 +119093 90.15 +60.10 +68.48 +23.58 +119098 92.29 +64.14 +92.24 +1.30 +92.24 +1.5 +92.24 +59.9 +119107 64.12 +92.24 +2.28 +92.24 +83.25 +92.24 +1.62 +92.24 +1.69 +92.24 +60.6 +89.8 +31.85 +23.99 +119122 59.23 +119125 92.24 +33.288 +89.125 +67.46 83.31 +92.11 +24.1 +119132 25.130 33.20 34.55 +119134 33.275 +119136 11.73 +119138 11.77 +119140 83.46 +92.24 +1.39 +119144 92.24 +64.2 +33.69 +28.36 +119149 1.81 +25.9 27.42 +119152 91.3 +119154 29.8 +83.2 +90.15 +119158 15.40 +71.14 +119161 22.45 67.78 +15.89 +119164 67.38 +25.15 +65.21 +119169 1.12 +89.47 +119172 25.193 +92.11 +92.24 +12.1 +12.1 +92.11 +33.131 +119180 77.3 +92.11 +1.89 +31.85 +57.80 +93.7 +92.24 +93.180 +27.46 +119190 92.24 +58.52 +57.80 +92.24 +92.24 +33.288 +90.75 +89.7 90.25 90.58 +119199 33.70 +119201 90.56 +93.180 +33.129 33.131 +119205 10.29 +31.1 +119209 84.4 +23.121 +23.94 +74.2 +92.24 +12.1 +84.11 +92.11 +119218 33.17 +33.17 58.63 +57.136 +31.85 +119223 89.6 +67.62 +33.470 +93.180 +92.24 +93.157a +119230 92.24 +93.148 +31.85 +93.157a +23.117 +59.27 +92.24 +10.42 +93.202a +33.470 +119241 53.56 +83.46 +92.24 +79.104 +92.24 +6.218 +92.11 +31.85 +93.202a +23.102 +90.24 +92.24 +15.42 +92.24 +10.30 11.58 +93.182b +29.16 29.18 +119259 90.24 +92.24 +8.61 +92.11 +33.329 +31.85 +93.266 +23.52 +21.12 +67.175 +90.1 +92.24 +10.18 +92.11 +89.26 +24.1 +79.11 +92.24 +9.42 +119280 25.252 +92.24 +33.326 +92.24 +37.67 +31.85 +93.266 +79.123 +13.48 +31.25 +33.131 +10.42 +10.46 +93.373 +30.86 +89.126 +24.84 +92.24 +11.12 +92.24 +12.1 +119302 67.109 +119304 88.118 +25.115 +119307 57.30 +31.1 +92.24 +93.398 +65.10 +92.24 +33.389 +92.24 +53.82 +119317 30.31 +84.16 +92.24 +38.17 +31.85 +15.57 +93.398 +119325 25.252 +92.24 +88.178 +92.24 +37.67 +119331 92.24 +24.4 +64.12 +24.1 +25.178 +31.85 +42.7 90.45 +92.24 +51.6 +119341 92.24 +47.7 +92.24 +8.64 +119347 92.24 +20.34 +92.24 +10.43 +20.75 24.74 +92.11 +31.85 +15.31 +92.24 +79.30 +1.70 +64.12 +84.29 +1.60 79.80 +1.60 +92.27 +68.58 +68.58 +92.24 +93.397 +20.52 +31.85 +92.24 +7.61 +93.479 +15.119 +15.146 +67.136 +60.16 +67.186 +31.85 +93.306 +92.24 +88.275 +119382 20.32 +92.24 +31.107 36.23 +34.53 +92.24 +27.47 +89.79 +22.42 +119392 59.75 +33.69 +119395 13.41 +92.24 +67.78 +92.1 +33.201 +90.24 +93.86 +93.60 +93.326 +93.167 +119406 93.91 +119408 93.325 +119410 92.24 +53.79 +119413 90.8 +31.85 +39.52 +1.82 +13.9 42.41 +88.13 +57.60 +33.288 +20.30 +20.30 8.19 +4.14 +14.70 +76.1 +2.3 +21.14 +79.109 +6.33 +74.6 +89.122 +23.143 +13.48 +76.11 79.63 +83.13 +39.26 55.5 +1.94 7.22 +39.12 +15.65 +57.125 +9.34 +89.77 +23.93 +92.24 +23.121 +92.11 +119448 58.37 +38.13 +119451 31.53 +92.24 +37.128 +119455 65.21 +23.93 +90.61 +119459 58.37 +33.406 +119462 19.9 +68.58 +90.63 +119466 59.75 +37.115 6.14 +119469 7.24 +20.79 +119472 19.20 +119474 20.82 +6.33 +23.99 +15.23 +13.8 +6.187 +119481 4.20 +6.184 +57.37 +22.15 +88.126 +15.24 +83.46 +1.86 +119490 1.46 +119492 1.57 +119494 92.24 +1.53 +92.24 +1.39 +119501 65.17 +92.24 +9.23 +119506 59.23 +33.263 +89.26 89.76 +92.24 +31.85 +119512 90.92 +92.24 +33.288 +92.24 +12.1 +90.39 +92.4 +65.21 87.28 +119521 30.100 35.35 +119524 89.120 +92.4 +88.38 +89.51 +119529 92.4 +119531 59.18 +85.5 +92.4 +11.3 +33.270 +85.44 +13.149 +59.23 +119540 92.24 +30.32 37.6 +88.118 +89.76 +25.174 +15.230 +92.24 +13.76 +92.4 +50.4 +30.31 +84.16 +92.24 +92.24 +31.102 +36.6 68.2 +119557 68.24 +93.169a +119560 89.24 +92.24 +13.76 +92.11 +25.123 +25.175 +6.27 +25.189 +88.192 +119570 83.47 +82.8 +92.24 +6.112 +92.24 +12.1 +17.12 +119578 30.10 +92.24 +25.175 +92.31 +90.1 +92.24 +88.295 +90.59 +119587 39.35 +119590 25.291 +92.24 +25.291 26.4 +119594 23.79 25.288 +67.129 +78.51 +23.107 8.64 +39.18 +90.33 +92.24 +88.118 +39.31 +119604 29.15 +92.24 +25.150 +119609 64.12 +10.42 9.46 +33.26 +10.42 9.46 +92.1 +119615 88.197 +33.226 36.10 38.4 +12.9{N:001} +69.7 +25.288 +90.1 +92.11 +33.417 +119625 25.43 +12.9{N:001} +36.10 38.4 +119629 19.9 38.11 +59.24 +10.42 +119633 31.52 +89.57 +36.10 38.4 +25.175 +64.12 +10.42 +119640 15.192 41.7 +92.24 +12.1 +119645 10.42 +119648 36.10 38.4 +10.14 +119653 89.120 +36.10 38.4 +119656 34.8 +13.48 +59.23 +89.46 +10.39 +119663 10.42 +119665 89.136 +67.44 89.100 +92.24 +92.24 +8.4 9.12 +92.4 +10.14 +119673 33.244 38.5 +119675 87.11 +119678 78.28 89.126 +36.18 37.31 +92.24 +10.14 58.64 +92.24 +26.9 +119685 23.88 +119687 89.136 +92.24 +67.106 +67.106 +67.142 +89.8 +92.24 +25.7 +92.11 +36.10 38.4 +89.136 +92.24 +89.13 89.60 +92.24 +65.44 +89.57 +92.24 +57.129 90.63 +92.24 +88.25 +92.11 +119709 59.23 +33.226 36.10 38.4 +89.136 +67.16 +92.24 +67.37 85.23 +31.30 +119717 25.124 +119719 91.2 +25.273 +89.136 +67.50 +42.13 +25.249 +88.13 +92.24 +89.76 +92.11 +36.11 +38.16 +89.47 +92.24 +23.174 +8.30 +119736 92.24 +23.170 25.152 +25.152 8.47 +25.152 +119741 41.30 +41.30 79.88 +90.45 +92.24 +41.30 8.49 +119749 92.24 +23.175 +23.178 31.65 +119753 23.136 +89.126 +15.158 68.66 +83.9 90.42 90.60 +59.23 +22.42 +119760 92.24 +53.44 +119763 89.120 +92.23 +32.11 +92.24 +12.9{N:001} +30.46 35.39 +119771 13.21 +89.122 +92.24 +88.66 +92.24 +12.1 +119779 3.47 89.17 +79.40 88.201 +84.25 +23.191 +22.24 +119785 89.76 90.44 90.8 +119787 88.260 +119789 59.1 +119792 88.274 +119794 88.115 +64.12 +93.148 +119798 57.145 +23.22 +119801 57.186 +92.24 +10.44 +119806 32.4 +119808 89.93 +67.44 +25.1 +57.138 +92.24 +88.70 +30.117 +119816 41.52 +71.6 80.1 +119819 13.17 +89.71 +89.109 +8.73 +27.35 +92.11 +119827 15.77 +24.76 +119830 14.63 +2.3 +119833 14.53 +119835 14.57 +119837 14.6 +119839 6.93 +14.75 +119842 14.74 33.103 +33.98 +119845 92.24 +24.52 +33.163 +119849 59.72 +92.11 +33.98 +119854 31.55 +92.24 +33.323 +89.73 +4.3 4.4 +24.74 +92.24 +1.46 +20.79 +119864 78.4 +25.255 +119867 92.24 +24.26 +93.266 +33.69 +119872 25.256 +119874 25.261 +89.125 +15.77 +93.582a +1.46 +119880 1.89 +12.1 +23.88 +93.480b +1.12 +119886 60.8 +12.28 +51.4 +119890 11.32 11.33 11.78 +10.43 +33.42 +83.13 +1.11 +119896 56.28 +59.23 +12.1 +119900 26.9 +88.12 +88.38 +119904 34.43 34.44 +58.71 +31.22 +93.169a +119909 8.64 +47.16 +65.21 87.28 +33.70 +78.29 +92.24 +93.3 +27.58 +119918 36.27 +92.24 +33.70 +119924 21.14 +92.30 +36.27 +92.24 +83.46 +1.39 +28.39 +119932 78.28 +92.4 +92.24 +92.24 +89.122 +1.11 +34.26 68.44 +119940 92.24 +33.103 +92.24 +1.39 +16.7 +67.47 +119947 67.38 +33.286 +33.69 +59.75 +60.67 60.68 +92.1 +16.7 +119956 92.24 +1.39 +91.2 +119960 92.24 +1.5 +119963 92.24 +59.75 +60.67 +28.42 33.152 +92.24 +92.24 +16.7 +15.2 +64.12 +42.29 +119974 13.89 +92.24 +119977 16.7 +89.47 +37.64 +13.31 +33.238 +57.1 +33.350 88.66 +89.76 +119986 53.14 +25.94 +92.24 +12.1 +89.79 +53.7 +119993 53.59 +119996 92.24 +12.1 +92.4 +2.3 +20.48 +92.24 +25.34 +68.11 +92.24 +34.57 +120007 29.17 +120009 89.76 +120011 28.14 +120013 34.57 +12.28 +29.16 +92.24 +37.117 +64.12 +37.116 +92.24 +88.126 +64.12 +120024 92.11 +120027 8.1 +87.6 +92.24 +34.67 34.68 +83.9 90.6 +59.23 +120034 92.24 +23.62 +53.36 +120038 88.274 +120040 88.277 +56.20 56.30 +92.24 +12.1 +25.109 +92.24 +41.10 +25.81 +92.24 +57.17 +120051 92.11 +33.69 +69.5 +120056 35.54 +69.7 +69.5 +120061 35.54 +89.52 +25.156 +92.4 +33.69 +12.9{N:001} +92.1 +35.11 +120070 25.252 +120072 42.7 +92.1 +9.1 +29.7 +92.24 +36.1 +120080 33.70 +120082 92.24 +33.98 +92.24 +12.1 +120087 92.24 +67.68 89.39 +92.24 +41.3 +30.28 +41.44 +92.24 +31.85 +93.169a +93.387 +67.87 +120099 67.205 +92.24 +58.31 +120104 92.24 +67.87 +33.224 33.236 +58.45 +120109 28.34 +120111 31.75 +120113 66.2 +88.66 +28.44 31.91 +92.24 +26.3 +120119 5.1 5.7 +13.8 89.5 +120123 35.2 +92.24 +41.11 +120127 6.114 +90.16 +120130 23.1 +120133 76.12 +92.24 +92.24 +7.17 +53.14 +120139 15.194 +120141 4.2 +92.24 +8.64 +89.6 +88.310 +84.22 +92.24 +7.35 88.24 +90.4 +92.24 +53.89 +120153 92.24 +8.1 +14.66 +83.20 +92.24 +1.94 +89.47 +120161 93.169a +120163 88.26 +89.76 +92.24 +57.4 +8.64 +92.24 +11.12 +83.20 +92.24 +7.48 +24.78 +89.51 +15.40 +84.18 +92.11 +83.20 +92.24 +1.94 +92.24 +33.389 +92.11 +15.187 90.64 +120188 83.1 +13.89 +1.89 +91.2 +92.24 +67.62 +25.9 27.42 +120196 90.4 +92.11 +53.17 +67.140 67.86 +67.86 +92.24 +12.1 +53.20 +33.354 +120207 42.13 +33.74 +33.221 +92.24 +33.126 +92.11 +120214 92.24 +88.7 +120217 34.5 +120219 29.14 29.17 +120221 64.2 92.31 +53.20 +25.93 +92.24 +12.1 +36.12 +92.24 +36.1 37.58 +120231 36.18 +120233 92.11 +35.41 +90.24 90.36 +92.24 +23.88 +120239 64.12 +57.228 +90.46 +120243 89.79 +25.123 +120246 42.7 +120249 25.143 +120251 65.49 +120254 33.178 +90.39 +92.4 +120258 31.46 33.301 +120260 88.4 +26.13 +120263 89.5 +59.23 +88.4 +41.3 +25.1 +120269 78.31 +33.168 +120272 42.7 +120274 67.110 +15.74 +120278 92.24 +12.1 +92.24 +25.248 +92.24 +15.176 +84.4 +23.121 +89.76 +8.64 +34.44 +67.96 +92.24 +44.4 +92.24 +4.22 +92.24 +120296 92.24 +12.9{N:001} +92.4 +93.169a +75.5 +120302 13.8 89.5 90.10 +59.23 +88.1 +89.57 +92.24 +42.7 90.45 +92.24 +30.59 +92.11 +42.7 90.45 +83.13 +92.4 +92.24 +25.94 +90.20 +92.11 +90.4 +93.169a +93.387 +120322 92.24 +33.357 87.23 87.4 +67.95 84.22 +92.24 +67.95 +92.24 +67.95 +72.6 +120331 33.168 +120333 11.23 +31.54 +92.24 +33.51 33.98 +92.24 +25.150 +120341 67.106 84.29 +59.4 67.106 +33.49 +120345 28.1 +92.24 +11.23 +92.4 +93.361 +37.127 +89.108 +120354 67.110 +15.81 +34.50 +120358 33.20 +59.23 +92.24 +36.1 37.58 +120364 59.23 +92.24 +11.27 +33.20 +120369 92.24 +90.15 +92.24 +93.489 +92.24 +25.89 88.66 +90.60 +59.23 +120378 93.158b +12.1 +120381 12.9{N:001} +93.169a +93.387 +87.76 +92.24 +60.21 +10.2 11.15 +92.24 +120390 92.24 +15.137 +33.22 +11.23 +92.1 +59.23 78.44 +25.123 +31.1 +120399 27.46 88.308 +58.45 +90.71 +28.1 +120404 92.24 +27.45 +120407 92.24 +31.85 +13.9 +25.174 +89.124 89.87 89.94 +92.24 +25.174 +42.11 +68.23 +90.51 +89.59 91.15 +120419 88.100 88.36 +120421 59.30 +89.5 +92.23 +57.43 +89.124 89.94 +120429 57.43 +32.32 +33.163 +120433 92.24 +57.71 +59.23 +57.107 +120439 33.422 +12.1 +120443 92.11 +89.124 +33.163 +89.84 +31.85 +92.23 +31.37 +89.23 +92.24 +31.37 +64.4 +14.25 +1.69 +15.164 +120458 16.11 +89.23 +120461 31.29 +92.24 +9.1 +92.30 +120466 57.125 +120469 92.24 +12.9{N:001} +9.1 9.24 +31.38 +37.32 +120475 59.23 +92.24 +41.16 +92.11 +89.124 89.94 +33.368 +92.24 +11.23 +92.24 +87.61 +120486 92.24 +87.19 +92.11 +89.124 89.94 +92.24 +57.26 +120493 92.24 +87.60 88.51 +92.11 +89.33 +64.12 +3.56 +3.15 +13.93 +89.23 +15.104 +92.24 +1.28 +89.107 +92.24 +14.67 +120509 79.82 +92.24 +3.15 +120513 92.24 +3.56 +92.11 +15.120 +120518 92.24 +79.13 +92.24 +24.24 +92.11 +20.31 +120526 92.24 +57.26 +83.9 +92.24 +57.200 +92.11 +13.94 +25.119 +9.1 +120536 25.175 39.20 68.17 +27.46 88.308 +89.33 +30.115 +13.48 +57.125 +92.24 +57.121 6.192 +92.24 +23.88 +120547 33.286 +92.24 +25.43 +92.11 +92.23 +88.308 +33.69 +120555 90.7 +12.1 +88.308 +89.23 +92.24 +12.1 +88.309 +120563 88.106 +120565 88.308 +92.37 +92.23 +89.124 +59.27 +88.308 +89.26 +92.24 +57.4 +25.20 +31.74 +120577 88.303 +67.44 +92.24 +25.20 +23.49 +23.52 +88.289 +120585 92.24 +88.289 +68.22 +13.12 +23.99 +120591 31.67 +11.23 +92.1 +25.45 +59.23 +57.73 +65.20 88.1 +120599 59.23 +57.84 +79.129 88.36 +84.13 +120604 15.107 +120606 92.24 +12.12 +92.24 +14.36 +120613 13.70 +58.44 +120616 16.15 +14.61 +30.56 +13.87 +92.4 +33.260 33.98 +72.2 +120624 92.24 +120626 92.4 +53.23 +92.13 +92.24 +92.11 +42.38 +32.4 +11.23 +92.1 +25.45 +120638 59.23 +9.1 +67.110 +90.23 +92.24 +24.52 +67.123 +90.23 +92.24 +33.70 +67.123 +120650 88.173 +120652 88.173 +9.1 +88.13 +12.1 +120658 89.47 +68.37 85.44 +59.23 +88.256 +120663 59.53 +88.105 +89.84 +88.59 +34.53 57.125 +92.24 +85.31 +33.98 +92.24 +74.5 +21.27 +92.24 +23.88 +120677 89.124 89.94 +13.3 13.48 +42.20 +33.98 +120683 24.56 +58.50 +88.153 +120687 89.33 +120690 24.56 +33.98 +120695 42.20 +120697 64.4 +9.1 +30.4 +92.24 +8.18 +92.24 +13.71 23.46 +92.11 +83.13 +6.221 +120708 30.4 +120711 15.37 +120713 67.53 +29.14 +58.30 +120718 92.24 +24.13 27.39 +84.22 +33.333 +88.36 +92.24 +92.24 +37.133 +120727 68.11 +13.3 +120730 24.56 +29.14 +89.125 +42.20 +42.11 +120736 25.119 +13.8 67.136 67.33 89.5 +92.24 +42.7 +92.11 +120744 31.29 +53.6 +120748 88.85 +33.74 +120751 89.125 +31.12 +26.3 +120756 92.24 +53.1 +65.37 +53.1 +53.29 +120762 53.36 +90.20 +92.24 +12.1 +120767 12.12 +120770 34.50 +10.40 +120773 10.61 +13.8 67.136 +92.24 +22.2 +92.11 +88.33 +120780 13.32 +89.122 89.25 90.15 90.7 +92.24 +41.38 +11.23 +92.1 +120787 89.84 +88.238 +90.65 +92.24 +31.102 31.104 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +12.49 79.18 +89.23 +120801 15.93 +84.22 +11.44 7.20 +120805 9.24 +6.191 +13.8 +6.162 +14.50 79.20 +120811 15.93 +120813 57.53 +13.8 +79.52 +6.162 +120818 24.12 87.17 +90.57 +92.24 +49.11 +92.24 +6.162 +92.24 +14.50 79.20 +120827 33.69 +120829 17.12 +83.1 +33.177 87.25 +120833 92.24 +57.53 +33.69 +120837 17.1 +83.2 +120840 17.12 +83.51 +92.24 +6.117 +92.1 +120846 30.113 +120850 13.48 +56.28 +30.16 +88.110 +31.56 32.1 +11.23 +92.1 +25.45 +120859 92.24 +12.1 +30.86 30.92 +92.24 +57.53 +92.24 +1.39 9.23 +59.57 +89.5 +31.102 31.85 +120870 57.133 +92.24 +37.64 +120874 33.286 +92.24 +25.43 +92.11 +120880 87.74 88.127 +92.24 +57.53 +120884 92.24 +57.26 +22.22 +120889 92.11 +15.178 +120892 84.22 +56.1 +120895 92.11 +33.400 +92.24 +88.4 +33.126 +92.24 +33.131 +83.46 83.9 90.57 +120905 89.136 +33.333 +37.69 +36.20 +89.8 +92.24 +33.53 +25.43 +92.24 +11.89 +120916 64.12 +92.10 +88.4 +41.7 +120922 88.238 +88.289 +90.47 +33.417 +90.1 +92.24 +33.55 +64.12 +36.29 +89.23 +120933 59.29 +92.24 +33.55 +36.19 +120938 88.291 +89.5 +120941 13.48 +59.23 +88.312 +89.23 +92.24 +33.69 +120948 88.276 +33.69 +120952 20.82 +89.94 +120956 88.276 +89.124 +20.82 +13.48 +36.29 +33.55 +61.10 61.9 +33.70 +120966 42.7 +64.12 +90.8 +33.333 +37.133 +56.20 +67.62 +89.23 +92.24 +56.20 +88.82 +92.24 +120979 42.7 90.45 +88.76 +74.11 +88.76 +56.30 +11.23 +92.1 +120987 92.24 +65.40 +120990 31.102 31.85 +120992 33.69 +120995 42.11 +120999 74.5 +92.24 +31.102 31.85 +21.27 +92.11 +89.67 +11.23 +121007 11.24 +49.22 +13.5 +121011 57.43 +92.24 +67.183 +5.1 +121016 33.69 +92.11 +121019 63.20 +121021 15.35 15.52 +13.8 +22.42 25.248 +79.73 +121026 23.16 +121030 92.11 +92.24 +57.48 +92.24 +9.8 +121036 92.24 +65.40 +61.9 +121040 92.24 +31.102 31.85 +121044 90.51 +42.11 +65.39 +121048 89.4 +121050 89.125 +33.69 +121054 31.102 31.85 +121056 92.1 +42.11 +121059 28.47 +92.1 +92.24 +31.102 31.85 +121064 89.120 +92.24 +42.11 +92.1 +121069 28.47 +89.3 89.77 +92.24 +42.11 +92.1 +92.24 +31.102 31.85 +121077 31.35 +121079 60.10 63.4 +121081 92.24 +12.1 +88.4 +90.45 +121086 92.24 +12.37 +31.35 +121090 25.260 +121092 91.14 +9.24 +32.60 +25.1 +28.1 +121098 92.24 +31.102 31.85 +89.120 +92.24 +42.11 +42.46 65.36 +121105 93.7 +92.24 +10.20 +92.4 +121110 89.25 89.77 +42.11 +88.16 +53.17 +93.180 +92.24 +10.42 +92.11 +83.46 +92.24 +6.114 +24.7 32.11 +121123 92.24 +31.102 31.85 +42.15 +92.24 +42.11 +92.11 +121130 89.25 89.77 +92.24 +42.11 +92.24 +31.102 31.85 +68.22 +121137 13.106 +92.24 +33.53 +92.24 +33.69 +121143 31.85 +93.7 +92.24 +12.1 +121148 57.227 +92.11 +13.62 +88.13 +121153 34.11 +12.1 +33.131 +32.11 +121158 89.25 89.77 +42.11 +88.16 +9.1 +121164 89.25 89.77 +31.102 31.85 +121168 64.1 +89.93 +93.306 +92.24 +88.275 +121174 89.25 89.77 +42.11 +88.16 +34.53 +92.24 +33.195 +121181 58.36 +1.99 +15.68 +89.23 +64.13 +92.24 +9.8 +89.120 +23.186 26.9 +23.121 +121192 61.9 +89.93 +92.24 +31.102 31.85 +89.120 +42.11 +23.121 +121200 11.23 +92.1 +121204 33.243 +13.48 +28.1 +121209 30.110 56.24 56.30 +57.125 +89.23 +59.1 59.11 +88.291 +59.23 +121217 89.5 89.76 90.10 +33.99 +121220 88.291 +121222 88.100 88.36 +9.1 +74.2 +88.85 +89.93 +59.29 +92.24 +8.1 9.8 +89.94 +89.30 89.65 +92.24 +4.29 +92.24 +6.7 +84.22 +92.24 +8.19 +85.34 +89.57 +92.24 +33.301 +92.11 +92.4 +89.92 89.93 +59.29 +92.24 +8.1 +92.11 +15.186 +91.13 +121253 92.24 +6.41 +79.128 +121258 90.1 +14.4 +20.3 76.15 +15.161 +15.186 +90.1 +79.125 +6.50 +83.5 +92.24 +26.12 +92.24 +54.21 +25.3 +121274 92.24 +8.21 +79.125 +8.9 +121281 33.368 +91.13 +79.127 +2.3 +79.127 +3.3 3.64 +14.65 +121289 92.24 +8.21 +2.3 +92.24 +59.55 +92.24 +88.21 +92.24 +8.21 +13.9 37.104 +83.13 83.9 +92.24 +8.9 +92.4 +92.24 +79.58 +59.29 +92.24 +9.8 +121309 14.65 +92.24 +61.5 67.83 +92.24 +13.71 +121315 14.65 +90.1 +92.24 +1.21 +121320 59.23 +58.24 +121323 4.4 +121325 4.38 +121327 4.51 +121329 4.58 +37.1 +121332 37.1 +92.24 +58.24 58.8 +92.24 +9.6 +121338 92.24 +8.21 +37.1 +74.5 +92.23 +9.1 +37.32 +88.106 +59.39 +8.74 +23.115 +90.10 +92.11 +33.356 +92.24 +12.9{N:001} +121355 12.12 +121357 90.10 +92.11 +33.471 +92.24 +9.1 +92.24 +89.8 +64.3 +12.1 +13.3 13.80 +84.4 90.16 +92.24 +58.31 +8.19 +15.40 +33.356 33.470 +121374 33.471 +11.23 +92.1 +121378 71.22 +121380 61.9 +13.107 13.3 +69.16 +92.24 +1.78 +84.4 90.16 +92.24 +58.31 +1.53 +14.31 +92.24 +79.39 +121393 92.24 +79.41 +11.23 +92.1 +69.15 +74.5 +3.5 +3.39 +13.9 +121403 3.27 +3.36 +69.9 +5.26 +13.9 +79.39 +2.7 +121411 32.33 +121413 32.27 +83.9 +121416 28.47 +89.77 +92.24 +88.4 +41.3 +92.24 +42.11 +92.11 +13.8 89.80 89.84 +88.59 +32.32 +89.124 89.94 +121430 88.162 +88.170 +121433 39.7 88.167 +83.13 +92.24 +26.3 +121439 33.370 88.194 +121441 33.253 +90.31 +92.24 +72.2 +121448 92.24 +32.37 +84.13 +15.107 +89.125 +9.7 +41.41 +12.40 +89.23 +92.28 +88.162 +121460 39.7 88.167 +83.2 +39.34 39.36 +121464 59.23 +88.116 +13.105 +121468 92.24 +84.13 +32.37 +60.46 +91.6 +88.28 +121475 67.44 +25.249 +88.63 +33.305 +78.45 +88.76 +121482 42.13 +88.1 +88.242 +73.8 +89.87 89.94 +42.13 +88.13 +13.8 89.84 +22.42 +43.6 +92.24 +90.45 +22.42 +84.6 +39.26 +121498 84.6 +39.23 +83.9 +121503 92.34 +121505 92.24 +25.27 +121508 92.24 +55.4 +83.13 +92.24 +63.17 8.9 +121514 25.12 25.20 +121517 57.1 +20.82 +121520 25.21 88.163 +121523 74.5 +57.60 +39.23 +121527 39.26 +121530 89.26 90.44 +92.24 +121533 33.163 +121535 33.163 +121538 57.55 +89.26 +72.22 +33.163 +89.59 +83.13 +92.24 +25.111 +121547 57.149 +31.101 +121550 28.1 32.4 +121552 92.24 +25.33 +92.24 +41.38 +39.10 +92.24 +12.1 +121560 89.50 +121563 25.3 30.56 +121565 34.11 +92.24 +41.38 +39.11 +92.24 +12.1 +13.9 37.104 +89.139 +31.29 +121575 89.64 +92.24 +33.53 +33.69 +78.51 +88.160 +25.18 +92.24 +12.18 +121585 85.82 +83.13 +92.4 +121590 25.89 57.103 88.66 +121592 89.47 +33.69 +92.24 +12.1 +88.214 +39.1 +121599 88.52 +121601 25.89 57.103 88.66 +121603 36.18 +92.24 +12.1 +121607 39.18 +92.24 +12.34 +121611 15.61 +89.122 +121614 15.75 +92.24 +12.1 +121620 53.28 79.49 +8.30 +88.295 +121624 88.30 +26.3 +31.38 +25.136 +121629 25.142 +121631 25.138 +92.24 +25.135 +121635 13.62 +25.142 +13.64 +121639 92.24 +25.123 +121642 25.296 +87.62 88.56 +83.33 90.20 +12.9{N:001} +121647 87.20 +121650 33.387 +92.26 +11.23 +92.24 +33.387 +11.23 +121657 56.30 +92.24 +11.23 +92.11 +33.387 +33.55 +121664 56.30 +33.55 +89.124 89.87 +121668 33.55 +56.30 +121672 42.20 +33.55 +89.125 +56.28 +60.10 +121678 33.340 +121680 56.28 +92.24 +74.5 +21.27 +121685 20.31 +121690 92.24 +56.30 +92.24 +11.89 +91.13 +67.38 +92.24 +33.69 +67.205 +121700 67.207 +15.18 +84.22 +92.33 +92.24 +1.88 1.89 +121707 42.41 90.45 +83.2 +67.168 +121711 57.196 +121713 57.189 +121716 28.3 32.3 +92.24 +67.207 +58.30 +92.24 +23.88 +121723 89.23 +121725 1.36 +92.24 +67.106 +59.13 67.106 +24.18 +67.44 +121732 24.27 +89.133 +92.24 +33.69 +121738 92.24 +12.9{N:001} +25.1 30.58 +121742 23.88 +121744 42.7 +121747 92.30 +121749 67.38 +33.368 +13.8 83.13 89.119 89.5 +92.24 +88.219 +121755 59.23 +33.368 +64.2 +88.110 +121761 28.1 +88.4 +42.7 +121766 42.7 +88.289 +92.11 +121770 91.13 +67.38 +92.24 +57.26 +25.138 +25.140 +89.27 90.23 +92.24 +22.11 +121780 92.24 +13.119 +92.24 +57.30 +121785 23.205 +121787 92.24 +6.162 +121790 20.20 +13.3 13.48 +92.24 +2.49 +121796 92.24 +2.51 +2.61 +121800 92.24 +2.60 +92.11 +89.57 +33.262 +121808 20.44 +92.24 +8.63 +121812 64.12 +2.3 +13.135 +83.13 +61.13 +67.142 +91.13 +92.24 +57.173 +92.24 +42.43 +92.24 +43.13 +92.24 +1.95 +121828 92.24 +121830 90.7 +121832 33.83 +121834 92.24 +33.82 +92.24 +43.14 +84.22 +92.24 +24.54 +12.9{N:001} +12.8{N:001} +15.93 +88.253 +83.46 +92.24 +1.39 +121849 88.252 +23.6 35.45 +92.24 +26.3 +121854 67.136 67.33 +56.33 +20.72 56.33 +56.31 +20.82 +92.24 +88.12 +121862 39.1 +121865 11.23 +25.168 +67.119 +92.24 +15.86 +92.24 +12.9{N:001} +91.13 +92.24 +43.2 +85.60 +92.24 +65.2 +43.15 +92.24 +2.14 +25.168 +90.23 +92.11 +67.119 +57.125 +14.14 +121888 14.13 +25.168 +121892 74.19 +92.24 +26.3 +121897 92.24 +15.86 +92.24 +12.9{N:001} +67.21 +11.23 +121904 33.384 +90.31 +92.26 +89.59 +121909 56.30 +91.13 +92.24 +56.28 +67.58 +92.24 +67.58 7.39 7.49 +121917 11.23 +31.50 +58.59 +92.24 +24.89 +121923 92.24 +25.167 +92.24 +53.79 +121928 33.70 +90.30 +92.24 +33.126 +12.9{N:001} +91.13 +25.120 +92.24 +25.175 +92.24 +25.174 +93.191 +24.52 +121942 92.24 +89.40 +12.9{N:001} +24.1 27.5 +89.33 90.21 +121948 92.24 +12.9{N:001} +25.52 +121952 88.81 +121954 11.23 +92.1 +65.54 +59.23 +121959 33.463 +69.9 +92.24 +1.11 +69.9 +92.24 +1.39 +69.9 +58.37 +121969 33.463 +121973 92.24 +69.1 +69.1 +121977 92.24 +69.2 +69.2 +89.59 +121982 37.7 56.32 +56.30 56.32 +56.32 90.71 +24.89 +121987 83.9 +121989 33.178 +25.146 +121992 33.111 +23.144 74.26 +121995 83.9 +121997 33.312 +92.24 +53.77 +92.24 +11.32 +122003 33.178 +90.40 +92.11 +47.14 +6.202 +90.23 +92.24 +33.126 +92.24 +12.9{N:001} +122014 92.24 +33.178 +92.24 +31.85 +21.27 23.136 +92.24 +23.142 25.291 +122022 23.140 +92.11 +92.24 +12.9{N:001} +89.73 +88.289 +122029 90.45 +40.8 +92.11 +122033 33.275 +92.26 +92.24 +88.289 +122039 90.36 +92.26 +89.59 +23.136 +122044 74.9 +33.171 +88.12 +42.3 +93.142 +122050 9.1 +25.32 +92.4 +122054 33.178 +33.178 +92.24 +122058 14.10 +122061 14.10 +83.46 +92.24 +1.39 1.60 2.14 +67.168 +60.12 +122068 67.174 +60.15 +122071 67.55 +33.178 +122074 92.24 +1.5 +14.10 2.10 +13.128 +122079 92.24 +1.39 1.60 2.14 +23.199 +92.24 +23.199 43.15 +92.11 +11.23 +92.1 +122089 83.9 +122091 31.67 +89.122 +92.24 +72.2 +122096 16.13 31.61 +122098 92.11 +122101 92.24 +16.13 31.61 +88.295 +84.4 +31.10 31.8 +41.16 +92.11 +21.18 21.27 +9.20 +92.11 +84.4 +23.99 +122114 79.114 +59.9 +88.310 +93.296 +53.74 +93.169a +93.387 +30.93 +11.77 +15.137 +93.555 +93.442 +93.495 +93.415 +122129 93.436 +89.8 +28.20 +12.1 +12.12 +89.76 90.6 +53.44 +12.18 +89.48 89.57 +36.15 +122140 47.16 +8.64 +93.169a +93.387 +25.89 88.66 +122146 22.42 +122148 59.68 +33.362 +92.24 +12.1 +122153 12.12 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +92.24 +122161 92.24 +78.3 +92.11 +88.76 +13.55 +92.4 +89.48 89.57 +25.61 +23.88 +89.26 89.76 +23.93 +93.169a +93.387 +84.4 +23.121 +89.48 89.57 90.23 +57.132 +23.128 +122180 53.36 +122182 79.23 +13.32 37.122 +122185 1.11 +122188 92.24 +89.76 +76.1 +12.1 +37.119 +89.26 89.76 +31.85 +67.119 89.57 +21.18 +77.2 +28.38 +122200 67.145 +61.13 +122204 25.133 +122206 67.106 +67.38 +71.34 +122211 58.45 +27.46 +89.59 +92.24 +73.3 +122217 92.24 +31.85 +65.3 +2.49 +92.24 +13.96 +89.124 +122225 2.3 +27.45 +27.1 +89.48 +33.354 +122231 33.357 +122233 87.4 +67.33 +28.38 +93.169a +93.387 +92.27 +122240 24.1 +25.43 +89.124 +122245 67.38 +122247 24.1 +31.85 +25.133 +25.123 +33.96 +122253 65.5 +57.126 +92.24 +89.40 89.55 +92.24 +31.102 +21.25 +9.20 +90.24 +122263 21.26 +27.35 +122266 27.35 +33.60 53.79 +92.24 +90.24 +92.24 +90.41 90.59 +122273 25.89 57.103 +33.459 +27.34 +122277 92.14 +122279 58.30 92.36 +67.1 +33.152 +92.24 +122284 92.11 +12.18 +93.387 +33.282 +92.24 +90.41 90.59 +93.387 +24.78 +122293 92.24 +67.48 +122296 87.23 87.4 +122298 28.38 +122304 35.19 +92.11 +122307 67.39 +33.197 +122310 89.76 +92.24 +33.215 +122314 89.76 90.6 +12.18 +88.24 +15.66 +122319 1.11 +122322 27.39 +25.12 +12.28 +89.47 +27.55 +92.24 +77.5 +92.24 +26.14 +122332 30.25 +78.47 +25.59 +122336 92.24 +15.166 +122339 88.66 +67.33 +28.38 +93.169a +93.387 +64.12 +58.26 +36.15 +122348 41.29 +92.24 +67.18 +122352 92.24 +28.13 +122355 25.20 +89.125 +89.8 +92.24 +33.312 +122361 88.24 +89.93 +92.37 +88.24 +122366 59.23 +41.3 +13.3 +89.26 +33.54 +88.24 +122373 13.1 +92.1 +88.24 +122377 89.30 +12.12 +33.131 33.176 +92.24 +88.240 +56.20 +89.8 +92.24 +59.27 +42.11 +89.84 +53.59 +92.24 +92.24 +85.79 +122393 67.78 +41.3 +28.1 +122398 23.125 +2.51 6.69 +122401 6.69 +37.128 +89.121 +92.24 +65.37 +122407 41.3 +33.240 +89.125 +65.2 +23.107 8.64 +64.12 +4.24 +79.61 +122416 79.59 +93.387 +89.136 +28.6 30.100 +67.17 +42.37 +1.39 +89.136 +24.19 +67.33 +61.13 +92.24 +67.78 +90.38 +122431 92.24 +90.4 +92.11 +31.86 +122436 12.1 +92.24 +23.94 +92.11 +122441 23.121 +122443 87.23 87.4 +92.11 +57.71 +89.52 +92.24 +31.85 +122451 25.59 +13.1 +122454 12.1 +92.24 +9.20 +122458 88.30 +90.10 +92.24 +36.15 +92.24 +72.2 +89.48 89.57 +25.34 +73.8 +89.85 90.16 +26.3 +92.26 +25.43 +25.71 +13.55 +122474 90.16 +10.23 +23.125 +89.125 +23.128 +90.8 +33.98 +12.1 +23.88 +122484 13.89 +89.26 +59.23 +9.11 +64.12 +3.15 +122491 59.23 +79.18 +92.11 +64.12 +3.56 +3.15 +79.82 +92.24 +3.15 +122501 92.24 +3.56 +15.120 +89.124 +92.24 +33.98 +12.9{N:001} +13.89 +122510 92.24 +67.95 +89.94 +122515 92.24 +33.98 +92.24 +33.215 +122521 89.50 +85.44 +59.23 +88.105 88.199 +122526 59.23 +88.154 +122529 88.227 +122531 88.160 +122533 59.23 +33.387 +64.12 +23.48 +9.45 +92.24 +73.5 +79.98 +5.19 +25.18 +89.59 +90.10 +92.11 +59.62 +90.23 +21.25 +89.30 89.65 +90.78 +90.21 +88.68 +92.24 +12.9{N:001} +15.77 +122558 +23.88 +89.136 +90.1 +9.1 +30.117 +89.136 +90.20 +12.1 +30.93 +65.2 +89.93 +92.37 +64.12 + +23.88 +45.1 +7.2 +79.3 +89.57 +53.86 +88.24 +53.17 +79.3 +53.20 +25.86 +12.1 +122586 90.4 93.169a +93.387 +89.26 +90.27 +122591 33.53 +91.13 +85.32 +122595 93.582b + +30.93 +7.44 +65.2 +122601 92.24 +31.85 +122604 92.11 +69.5 +69.5 +25.194 +89.50 +92.24 +65.1 +122612 92.24 +31.102 +89.124 +31.105 + +122618 30.117 +92.24 +45.1 +122622 13.48 +122624 7.44 +79.107 +122627 2.24 +15.229 +122630 2.21 +88.306 +122633 15.228 25.182 +92.24 +33.98 +31.107 36.23 +122640 37.96 +89.124 +122643 10.1 +30.93 +37.69 +53.86 +11.55 +88.24 +11.55 +89.57 +57.62 +89.59 +33.204 +92.24 +76.14 88.11 +92.24 +84.4 +88.125 +122660 33.307 +13.62 +92.24 +25.215 +92.11 +14.36 +122667 67.9 +122669 11.55 +122671 67.38 +11.12 +12.1 +92.24 +122676 88.76 +122678 67.38 +88.76 +25.45 +33.168 +64.12 +11.77 +122685 11.77 +13.158 +92.24 +41.42 +25.20 +122691 55.4 +90.31 +92.24 +26.4 +92.24 +41.3 +122699 92.24 +11.37 +90.65 +88.4 +89.59 +67.139 +122706 33.387 +122708 64.12 +88.114 +89.25 +92.24 +88.4 +42.11 +24.45 +87.24 +92.24 +12.1 +122719 +34.51 +36.18 +90.38 +92.24 +12.9{N:001} +59.23 +9.6 +37.43 42.39 +89.69 +37.67 +89.37 +37.17 +89.69 +37.83 +89.37 +90.4 +92.11 +15.66 +89.57 +38.8 +88.114 +89.94 +33.354 +88.8 +89.33 +61.10 61.9 +122747 92.24 +25.2 +92.24 +12.1 +88.3 +33.123 +92.24 +92.24 +32.52 +9.1 +28.16 32.8 +64.12 +87.84 +122762 64.12 +57.1 +28.56 +92.24 +88.105 +92.24 +37.133 +89.125 +64.12 +12.1 +87.76 +59.23 +87.8 +92.24 +11.22 +25.43 25.44 +92.24 +12.1 +87.14 +92.24 +37.67 +87.8 +92.24 +46.5 +36.18 +122788 78.44 +53.59 +92.24 +57.13 +122794 92.24 +88.1 +122797 88.63 +89.125 +122800 92.24 +88.268 +89.23 +122804 25.89 +89.65 +89.26 +28.4 +12.1 +25.175 +92.12 +25.273 +24.78 +88.20 +122815 58.30 +87.5 +122818 88.289 +122820 19.7 +25.175 +89.125 +122824 88.3 +122826 24.78 +25.175 +122829 25.89 +90.20 +12.1 +89.23 +122835 33.312 +89.33 +122838 93.387 +24.78 +90.36 +122843 13.91 +58.59 +89.59 +41.47 +92.24 +41.47 +92.11 +122851 88.289 +122853 42.7 +69.7 +27.27 +88.154 +122858 92.24 +33.74 +92.11 +122862 33.393 +122864 33.394 +24.78 +122867 33.291 +89.124 +57.77 +92.24 +56.20 +88.15 +122874 92.37 +92.24 +88.310 +92.4 +15.206 +122880 92.24 +9.8 +92.11 +83.46 84.17 +92.24 +6.28 +89.59 +92.24 +88.118 +68.40 74.27 +92.24 +88.13 +41.2 +122894 92.24 +20.29 +13.66 23.136 +122899 64.12 +4.22 +15.24 +91.2 +31.60 +67.38 +122906 92.24 +44.4 +122909 35.43 +92.24 +26.4 +122913 10.54 +64.1 +36.18 +92.24 +57.4 +10.53 +89.59 +122922 92.12 +31.107 36.23 +92.24 +33.260 +89.76 +92.24 +92.24 +10.54 +41.3 +89.120 +33.99 +57.189 +24.45 +92.24 +122937 53.59 +88.28 +41.3 +122942 13.1 +122944 92.24 +83.21 +49.26 +8.12 +122949 49.7 +6.189 +122952 49.11 +6.162 +6.188 79.12 +89.125 +92.24 +26.1 +92.24 +26.3 +26.1 +122962 92.24 +23.128 +92.24 +88.60 +122967 88.104 +30.6 +122971 90.20 +92.24 +12.1 +65.3 +122976 61.10 61.9 +67.30 +122979 92.24 +53.46 +9.34 +92.24 +25.59 +122985 12.1 +79.12 +122988 36.18 +92.24 +92.21 +10.53 +64.12 +93.329 +36.15 +92.24 +93.7 +57.12 +122999 33.131 +123001 10.28 +13.48 +88.3 +123006 25.252 +92.23 +25.265 +92.24 +10.53 +64.1 +41.9 +123014 32.16 +64.12 +79.69 +8.6 +92.24 +9.36 +90.54 +87.4 +89.37 +123024 57.134 +57.103 +23.88 +123028 92.24 +123030 13.147 +92.24 +33.178 +123035 92.24 +61.17 +59.23 +30.21 +25.58 +25.35 +25.51 +88.54 +123044 38.16 +88.106 +57.145 +88.106 +123049 33.393 +57.145 +33.393 +89.124 +89.134 +33.470 +123058 33.312 +89.59 +33.470 +57.131 +89.23 +92.24 +25.1 +23.88 +25.104 +123068 90.79 +67.142 +65.20 +68.46 +92.24 +33.74 +123075 88.106 +123077 33.74 +92.24 +123080 33.70 +88.154 +123083 68.41 +123085 88.106 +123087 42.7 +88.1 +13.19 +22.42 +123092 15.158 +123094 89.33 +24.16 +12.9{N:001} +90.57 +88.12 +123100 24.54 +123103 33.171 +123105 89.124 +9.9 +12.9{N:001} +90.34 +42.7 +88.106 +123113 92.24 +20.12 +123116 89.67 +92.24 +88.1 +25.77 +13.48 +89.125 +123124 24.78 +89.26 +88.13 +25.119 +123129 92.24 +25.251 +123133 25.252 +69.7 +25.244 +123137 12.9{N:001} +92.24 +93.387 +88.27 +123142 92.24 +26.3 +123145 77.2 +67.86 +123148 33.436 +59.24 +92.24 +33.163 +123153 89.18 +123155 92.24 +123158 25.61 +89.125 +123161 88.59 +123163 53.59 +26.13 +88.1 +123168 67.139 +123170 33.387 +25.194 +92.24 +88.129 +123175 92.24 +88.1 +123178 93.387 +41.3 +123181 65.21 +88.3 +123184 25.1 +92.24 +30.59 +92.24 +12.1 +24.78 +123191 88.112 +89.33 +123194 93.387 +60.67 60.68 +90.39 +88.310 +123199 88.12 +90.36 +88.20 +89.59 +123204 15.172 +92.24 +12.1 +89.136 +20.65 +58.10 8.4 +89.136 +23.92 +26.9 +123215 15.10 +33.256 +123218 92.24 +123220 7.24 +26.9 +31.107 36.23 +67.30 +123225 13.28 +92.24 +92.24 +12.1 +25.167 +123231 67.142 +93.285 +45.1 77.6 +6.44 +83.13 84.22 +123237 59.3 +123240 60.17 +9.20 +21.19 +84.29 90.8 +2.7 +123248 67.38 +21.27 +58.69 +53.41 +123253 8.4 +23.111 +79.55 +89.125 +26.13 +88.1 +33.162 +90.59 +12.1 +89.26 89.76 +23.93 +93.169a +93.387 +123269 82.8 +12.1 +15.10 +123273 1.11 +36.18 +123276 12.28 +123278 12.44 +123280 12.44 +89.50 +93.387 +24.78 +8.4 +123287 92.24 +123289 30.5 +77.10 +89.48 +92.24 +67.130 +9.1 +25.20 +89.125 +25.2 +12.1 +92.24 +63.21 +123302 23.90 +67.78 +41.18 +89.33 90.21 +92.24 +24.78 +8.4 +68.34 +88.289 +123312 59.45 +92.24 +67.85 +67.78 +92.24 +25.4 +92.24 +11.37 +90.47 +41.11 +123323 88.272 +25.20 +88.284 +88.287 +88.287 +123329 13.144 88.143 +53.63 +123333 25.206 +123335 15.133 41.15 +123338 92.24 +123340 92.24 +88.96 +78.26 +33.400 +123345 90.46 +57.228 +92.24 +77.2 +123350 56.20 +23.88 +123353 23.121 +123355 89.57 +123357 89.93 +23.121 +33.215 +89.49 +89.136 +56.30 +89.4 +9.1 +8.4 +89.124 89.136 +23.88 +89.4 +12.1 +26.9 +89.124 +59.23 +92.24 +67.66 +67.21 +123377 30.22 32.34 +123379 30.25 88.86 +89.57 90.23 +33.178 +65.54 +59.23 +92.24 +123387 25.43 +25.71 68.12 +90.65 +123391 25.43 +79.114 +59.9 +88.289 +34.58 +123397 92.26 +89.120 +33.382 +59.27 +78.53 89.34 +57.125 +57.103 +123407 35.19 +64.12 +88.4 +37.39 +58.45 +57.103 +12.1 +123416 33.70 +64.12 +33.97 +12.1 +123422 35.19 +64.12 +90.16 +79.62 +123427 35.31 +92.24 +12.1 +89.59 +123432 59.23 +87.24 +92.24 +12.1 +123437 93.169a +93.387 +123441 92.24 +87.23 +123444 92.24 +76.6 +67.95 +92.24 +67.95 +92.24 +67.95 +72.6 +25.45 +123454 25.206 +92.24 +123458 24.91 78.37 +89.60 +27.46 +123462 13.107 +64.12 +28.34 +123466 13.111 +89.125 +78.53 +57.98 +92.24 +92.24 +93.387 +24.78 +25.125 +89.49 +123477 67.33 +92.24 +28.38 +92.24 +87.23 +123483 25.125 +25.133 +89.65 +33.389 +89.26 +33.126 +93.387 +25.119 +123492 92.24 +92.24 +87.23 +123496 92.24 +92.24 +12.1 +12.18 +123502 13.25 23.80 +123507 24.78 +89.37 +20.85 +123511 57.233 +123513 88.114 +123515 89.37 +88.245 +123519 89.37 +11.35 +123522 25.190 +123524 33.357 +92.24 +12.1 +89.26 +92.24 +123531 89.33 +92.24 +67.1 +92.24 +68.1 +92.24 +30.110 +84.3 +92.24 +10.8 +92.24 +12.1 +123545 67.18 +84.3 +92.4 +123549 92.24 +89.40 +92.24 +31.107 36.23 +92.24 +92.24 +12.1 +33.217 +89.92 +123559 92.24 +88.12 +22.33 +21.27 +92.24 +53.11 +123566 88.295 +13.118 92.28 +24.18 +89.52 +123571 92.24 +24.78 +89.8 +92.24 +30.59 +92.24 +12.1 +31.87 +42.40 +35.47 +92.24 +9.20 +123585 88.3 +123587 53.77 +123590 33.168 +92.24 +53.78 +123594 33.270 +92.24 +92.24 +93.387 +24.78 +123600 92.24 +92.24 +67.62 +28.38 +87.23 +34.6 +44.3 +92.24 +83.9 +123610 11.31 +92.24 +12.1 +123614 71.31 +89.125 +25.65 +123618 12.1 +69.7 +25.26 +89.125 +25.69 +69.7 +64.12 +37.50 +92.24 +35.49 +89.125 +13.3 +58.59 +92.24 +11.31 +123634 24.19 +92.24 +44.5 +57.126 +92.24 +79.23 +92.24 +79.18 +6.192 +67.116 +64.1 +36.18 +53.77 67.102 +123648 59.23 +92.26 +92.24 +88.53 +49.9 +89.33 +92.24 +12.1 +88.214 +39.1 +123659 88.52 +57.71 +25.89 +89.50 +88.56 +123665 92.24 +76.9 +76.3 8.30 +92.24 +12.1 +123672 87.20 +123674 67.1 +59.23 +92.24 +25.224 25.250 +123679 25.250 90.18 +123684 30.39 +123687 30.25 +27.56 +92.24 +39.9 +123692 12.34 +64.12 +4.14 +14.78 +15.227 +27.41 +123699 20.52 +123701 39.18 +74.21 +92.24 +31.102 +32.4 +92.24 +123708 92.24 +24.78 +92.24 +123713 1.39 +123715 11.22 +13.108 +89.94 +92.24 +12.1 +59.23 +88.66 +92.24 +33.307 +123726 92.24 +67.96 +123729 87.23 +89.119 90.6 +93.387 +67.106 +24.78 +123735 75.5 +74.19 +74.14 +31.94 +123740 92.24 +76.6 +123743 92.24 +67.95 +123747 72.6 +123749 90.4 +93.340 +92.24 +31.87 +11.23 +64.12 +31.1 +67.106 +67.106 +33.61 +25.150 +123761 33.262 +123764 70.3 +88.66 +92.24 +12.1 +123770 85.40 +33.20 +123773 92.24 +123775 93.420 +30.94 +123778 93.255 +92.24 +10.42 36.39 9.46 +92.1 +33.20 +92.26 +123785 34.62 +25.43 +25.248 +123789 59.23 +92.24 +89.119 +93.387 +93.349a +93.296 +87.76 +123797 53.74 +93.169a +93.387 +92.24 +92.4 +57.127 +58.34 +31.102 +123806 88.13 +92.24 +12.1 +92.4 +123811 21.31 +93.169a +93.387 +88.66 +123816 25.248 +123818 59.68 +123820 28.2 +92.24 +12.1 +123824 93.169a +92.24 +12.9{N:001} +92.4 +89.37 +92.4 +92.24 +12.14 +76.1 +123835 59.23 +92.24 +123838 23.88 +123840 53.5 +57.83 +123843 92.24 +28.2 +92.24 +33.312 +92.4 +57.4 +87.23 +123851 88.11 +123854 92.24 +65.2 +123857 65.53 +33.288 +92.4 +57.83 +123864 13.48 +34.6 +12.14 +58.8 +21.14 +92.24 +123871 92.24 +1.39 +123874 25.20 +88.267 +123880 68.64 +59.23 +68.64 +59.74 +123885 92.24 +31.102 +123888 92.24 +88.11 +123892 92.24 +88.11 +92.24 +28.17 +123898 92.24 +28.17 +92.24 +88.83 +123904 92.24 +88.83 +92.24 +25.174 +123910 92.24 +25.174 +92.24 +53.5 +123916 92.24 +53.5 +92.24 +25.34 +123922 92.24 +25.34 +92.24 +25.43 +123929 57.16 +123931 59.48 +123933 65.36 +69.7 +65.34 +13.9 +123938 92.24 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +28.2 +123948 57.17 +123950 32.42 +123952 32.48 +90.63 +29.13 +92.24 +53.28 +92.24 +67.24 +123960 88.310 +89.47 +11.23 +78.28 +68.63 +71.15 +123967 92.24 +33.312 +123970 30.92 +90.45 +123974 90.45 +123977 88.291 +67.9 +123981 78.15 +35.31 +123984 92.24 +34.56 +123987 92.24 +67.96 +37.64 +92.24 +12.9{N:001} +92.4 +123994 21.31 +93.169a +93.387 +89.47 +67.62 +67.86 +124001 29.10 +124004 89.71 +28.1 +124007 74.19 +124009 92.24 +57.17 +72.2 +124013 66.5 +31.1 +124016 67.139 +23.91 +124020 92.24 +23.91 8.5 +90.52 +124025 29.10 +32.4 +124028 67.56 +124030 92.24 +23.111 +92.24 +8.5 85.77 +92.1 +89.34 +124037 92.24 +12.9{N:001} +92.4 +93.169a +93.387 +28.42 +92.1 +124045 68.63 +124047 67.88 +74.12 +124051 92.24 +92.2 +23.101 +92.24 +124056 29.7 +90.45 +124060 28.10 +33.13 +36.33 +28.26 +124065 92.24 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +76.1 +124073 15.86 +89.125 +13.3 +24.46 +92.24 +92.30 +87.21 +124081 57.125 +124083 12.1 +12.12 +65.1 87.4 +124087 87.23 +33.103 +58.49 +13.35 +124093 92.24 +12.6{N:001} 79.14 +87.23 +92.24 +12.15 +92.1 +92.24 +58.53 +92.1 +124106 92.1 +25.87 +124110 92.24 +33.103 +92.4 +24.52 +124115 1.5 +13.35 +89.107 +124121 92.24 +88.24 +1.46 +124126 31.90 +92.24 +33.462 +33.98 +72.12 +90.45 +124133 30.35 +64.12 +6.104 +14.37 +124138 14.58 +80.1 +67.119 +124142 67.186 +14.43 +124145 1.32 +14.41 +124148 92.24 +26.3 +124152 60.46 +32.16 +124155 59.24 +33.460 +33.53 +57.4 +33.141 +124161 13.3 +124164 25.2 +9.1 +13.35 +33.460 +67.9 +89.125 +124171 12.18 +88.24 +36.1 +33.70 +124176 12.1 +9.1 +124179 85.7 +124181 53.81 +124183 92.24 +11.12 +64.12 +124190 33.250 +124192 13.132 +33.241 +20.31 +124196 92.24 +37.131 +124199 37.63 +34.48 +13.9 +124203 67.110 +20.31 +124207 41.48 +124209 92.24 +88.272 +124213 92.24 +41.35 +92.24 +72.2 +33.400 +124220 25.22 +72.11 +33.98 +124224 88.148 +124226 92.24 +56.30 +67.132 +124230 42.2 +124232 92.24 +20.31 +124236 23.67 +124239 92.24 +12.1 +12.28 +88.289 +124244 22.28 +89.125 +124247 14.57 +1.25 +37.111 +124251 56.20 +37.122 +124254 67.98 +1.39 +124257 22.28 +89.125 +60.55 +93.285 +88.13 +33.259 +37.120 +14.34 +41.38 +53.11 +13.9 +124269 11.61 +93.585 +124272 93.454 +14.72 +20.49 +14.66 56.31 +58.59 +67.62 +53.10 +13.9 +124281 88.12 +93.240 +25.230 +124285 92.24 +92.24 +88.141 +124289 88.272 +41.3 +21.23 +124293 24.8 +124295 24.52 +92.24 +88.12 +85.72 +124301 67.92 +124303 67.92 +25.280 +88.12 +88.140 +42.11 +38.13 +28.7 +12.9{N:001} +53.6 +124313 27.46 +21.23 +124316 88.20 +124318 +56.20 +38.2 +37.122 +124323 78.7 +92.24 +36.35 +8.4 +124328 25.20 +88.259 +41.11 +124332 37.52 +88.192 +25.164 +88.206 +12.49 +33.400 +124339 25.259 87.14 +89.35 +12.28 +79.62 +124344 76.1 +124348 13.35 +124352 12.9{N:001} +33.402 +56.30 +124357 64.12 +30.12 +4.2 +23.52 +58.9 +124363 44.11 +124365 20.38 +124368 32.7 +33.400 +124371 92.24 +20.38 +124375 20.39 +20.25 +38.14 +88.21 +25.111 +31.1 +92.24 +124383 14.40 +88.253 +79.57 +124387 79.60 +88.253 +124390 92.24 +31.12 +124393 23.14 +124396 8.23 +68.77 +88.278 +124400 68.56 +88.289 +88.303 +9.20 +31.79 +26.3 +36.11 +25.22 +124409 33.474 +58.26 +124412 79.88 88.18 +88.18 +31.67 +41.48 +92.24 +41.16 +92.24 +93.57 +92.24 +124423 38.14 +88.21 +25.104 +124427 33.417 +57.4 +88.142 +124431 4.7 +33.106 +124434 9.1 +33.1 +33.76 +13.146 +92.24 +92.24 +53.79 +30.24 +124444 1.78 +2.8 +124447 1.35 +124449 14.6 +15.161 +124452 92.24 +1.24 +92.24 +88.125 +13.32 +124458 33.373 +65.37 +33.76 +88.303 +124463 25.20 +8.4 +88.272 +92.24 +124468 21.14 +92.24 +124471 31.10 +41.3 +37.133 +124475 33.286 +124477 13.4 +87.76 +92.24 +88.267 +124484 39.61 +124486 37.27 +124489 21.14 +92.24 +88.259 +92.24 +41.38 +124495 28.2 +92.24 +12.9{N:001} +124499 21.31 +93.169a +93.387 +124504 67.55 +90.81 +39.61 +13.48 +124509 92.24 +61.13 +65.29 +92.24 +67.18 +124515 65.21 +124519 27.8 +92.24 +41.35 +92.24 +88.13 +124525 27.8 +31.64 +124528 92.24 +33.237 +124531 88.24 +33.330 +13.111 +124535 92.24 +92.24 +70.3 +33.14 +4.34 +15.90 +124542 92.24 +57.4 +8.70 +124546 4.37 +47.12 +124549 16.17 +2.17 +25.45 +67.40 +124554 60.49 +33.48 +124557 33.61 +124560 90.52 +124562 29.10 +124564 92.24 +88.41 +30.15 +29.7 +92.24 +33.281 +124571 92.24 +88.24 +53.79 +33.98 +124576 92.24 +92.24 +53.74 +124580 33.330 +92.24 +12.9{N:001} +124584 21.31 +124586 60.46 +32.16 +124591 61.13 +92.24 +67.142 +124595 33.406 +33.407 +124598 92.24 +57.4 +25.20 +124602 41.11 +124604 33.69 +83.6 +124607 92.24 +33.288 +92.24 +15.86 +124615 92.24 +10.20 +23.104 +59.23 +124620 68.11 +124622 67.65 +42.35 +124625 29.13 +124628 31.4 +124630 1.5 +124632 67.24 +124634 1.39 +124636 2.7 +124639 2.7 +13.82 +92.24 +92.24 +12.1 +33.98 +124647 92.24 +67.47 +1.39 +2.7 +14.34 +13.96 +124654 92.24 +67.38 +1.5 +124658 92.24 +1.3 +92.24 +124662 33.98 +65.11 +124665 2.3 +13.32 +124668 67.142 +56.20 +124671 20.31 +92.24 +53.11 +9.1 +124676 25.45 +124680 29.13 +124684 67.186 +124686 12.9{N:001} +64.12 +60.39 +67.167 +124691 60.39 +67.167 +64.12 +67.186 +124697 67.124 +12.9{N:001} +92.24 +33.288 +64.12 +124703 67.124 +31.1 +89.125 +25.168 +124709 25.3 +124712 21.32 +89.125 +59.23 +124716 41.52 +15.13 +124719 13.112 + +12.9{N:001} +64.12 +57.233 +124726 92.24 +1.5 +14.85 +13.93 +124731 2.1 +14.63 +20.53 +124735 1.39 +124737 92.24 +124740 42.12 +27.27 +124744 59.23 +20.53 +71.21 +58.30 +13.4 +124751 88.24 +41.3 +124754 53.5 +30.55 +124757 68.80 +92.24 +15.86 +92.24 +92.24 +12.1 + +124766 1.5 +14.63 +20.53 +124770 2.1 +14.63 +79.8 +124774 58.71 +1.5 +124777 1.39 +58.71 +124780 92.24 +33.288 +124783 30.55 +124786 88.13 +85.69 +89.47 +25.45 +124791 30.55 +68.63 +88.33 +124795 88.35 +124797 13.7 +124799 25.248 +124801 92.24 +92.24 +12.9{N:001} +92.4 +25.167 +21.26 +31.1 +64.14 +124810 92.24 +25.45 +92.4 +11.23 +93.294a +124816 92.24 +124819 32.37 +33.61 +124822 64.12 +124825 59.23 +33.48 +33.70 +124835 32.22 +124838 92.24 +27.24 +124841 31.79 +124843 64.12 +124845 92.24 +63.21 +33.54 +124849 92.24 +57.4 +124852 20.31 +124854 25.45 +124856 28.6 +37.120 +124860 92.24 +92.24 +88.141 +31.10 +31.76 +13.59 +92.24 +57.4 +21.13 74.20 +124870 59.62 +124872 88.66 +124874 28.1 +92.24 +12.9{N:001} +92.4 +124879 21.31 +93.169a +93.387 +124883 92.24 +87.23 +124886 67.38 +124888 67.95 +67.142 +67.95 +92.27 +13.69 +67.131 +67.65 +124896 24.52 +124898 24.1 +92.24 +8.23 +92.4 +124903 24.14 +124905 92.24 +8.30 +92.4 +24.76 +89.6 +92.24 +33.100 33.260 33.98 +92.24 +23.88 +124915 92.24 +23.88 +24.19 +124919 24.1 +124921 33.262 +124923 33.198 +124925 92.24 +23.88 +92.24 +67.96 +124930 13.69 +89.112 +92.24 +12.12 +124935 24.19 +92.4 +92.27 +24.1 +124940 24.52 +33.198 +89.93 +124944 89.59 +89.93 +124947 34.5 +124949 89.108 +92.4 +124952 91.12 +92.24 +34.5 +92.24 +92.5 +89.108 +92.24 +12.12 +124962 92.24 +12.15 +124965 93.169a +93.387 +89.92 +124969 33.61 +92.4 +89.59 +92.24 +25.123 +92.4 +13.1 +59.33 +89.93 +124980 92.24 +33.193 +124983 24.52 +124987 33.197 +124989 90.21 +92.24 +12.1 +14.36 +124995 89.119 +124999 14.53 88.125 +92.23 +89.67 +33.69 +90.21 +34.5 +125006 89.108 +125008 91.12 +125010 92.24 +14.53 88.125 +41.11 +33.253 +125016 41.7 +92.24 +72.2 +125020 89.67 +125022 92.24 +14.36 +41.11 +64.12 +125029 92.24 +14.36 +34.5 +125034 92.26 +125036 92.24 +23.107 +93.169a +92.24 +12.15 +125042 53.28 +92.4 +125045 59.23 +88.310 +89.67 +33.69 +90.21 +88.289 88.310 +125054 31.8 +125056 92.24 +72.2 +125059 13.1 +125061 92.4 +89.67 +33.275 +92.24 +88.310 +92.4 +125068 31.87 +125070 88.12 +91.15 +40.8 +92.4 +92.24 +88.310 +125077 53.28 +92.4 +89.122 +58.28 59.23 +88.21 +89.67 +33.69 +90.21 +125086 88.289 +33.255 +13.9 +125091 92.24 +33.260 +125096 89.119 +92.4 +9.46 +92.1 +125101 33.61 +125103 89.59 +125105 88.289 +91.12 +89.67 +125109 88.289 +90.65 +89.7 +92.24 +12.12 +35.16 +93.169a +93.387 +88.12 +89.93 +125120 40.12 +13.1 +90.39 +92.24 +88.289 +92.4 +125129 92.24 +92.5 +58.50 +89.125 +89.93 +125135 63.1 +92.24 +9.23 +89.93 +89.26 89.76 +125141 28.1 +125143 27.18 +125145 89.67 +92.24 +33.330 +125149 36.19 +92.24 +33.69 +90.21 +27.18 +125155 91.12 +92.24 +33.330 +125160 36.19 +33.255 +125166 92.24 +72.2 +125170 89.124 +71.8 +125173 36.19 +125175 92.24 +33.98 +70.3 +125180 92.24 +25.43 +92.24 +12.1 +73.7 88.38 +89.26 89.76 +125187 28.1 +125189 89.119 +125191 13.1 +92.24 +33.69 +89.119 +125196 68.11 +78.53 +92.30 +41.11 +71.25 +89.93 +125204 41.11 +25.45 +33.61 +125209 33.330 +28.33 +89.125 +33.330 +67.97 +125215 90.65 +67.131 +67.65 +92.24 +33.330 +92.24 +67.24 67.97 +125223 92.24 +33.260 +125226 24.52 +89.129 +33.330 +28.33 +33.61 +125234 72.1 +89.5 90.56 +125240 89.33 +92.24 +88.125 +13.93 +125245 92.24 +14.36 +92.24 +70.3 +67.20 +14.37 +92.24 +33.69 +125254 92.24 +14.36 +125257 91.12 +92.24 +11.23 +125261 88.198 +125263 92.24 +88.125 +125266 67.119 +67.38 +92.24 +25.43 +92.24 +11.23 +125274 92.24 +14.36 +68.11 +89.92 +88.306 +89.119 +125283 89.124 +92.24 +88.198 +92.24 +11.23 +125290 92.24 +88.125 +125295 92.24 +88.125 +41.11 +125300 28.1 +83.6 +15.15 +89.33 +92.24 +88.125 +32.25 +92.24 +32.25 8.23 +125310 9.46 +33.61 +125313 89.33 90.21 +40.8 +125316 92.24 +88.289 88.310 +90.44 +92.24 +9.19 +125322 11.26 +33.61 +125325 89.33 90.21 +27.18 +92.24 +67.131 +67.65 +9.32 +33.61 +125333 89.33 90.21 +39.57 +92.24 +12.35 +9.46 +33.61 +125341 27.18 +92.24 +12.12 +11.26 +33.61 +125348 28.1 +92.24 +125351 67.65 +9.32 +33.61 +125356 79.63 +125359 92.24 +33.260 +92.24 +12.1 +89.119 +125365 68.11 +125367 39.57 +92.24 +12.35 +125371 25.104 +92.24 +1.39 41.38 +69.7 +92.24 +89.5 +92.24 +41.38 +89.67 +125381 25.104 +92.24 +41.38 +125386 92.24 +25.43 +92.24 +12.12 +89.119 +125392 89.33 +125394 59.23 +92.24 +89.5 +92.24 +1.39 41.38 +92.24 +25.20 +92.24 +26.7 +125404 92.24 +25.20 +92.24 +24.16 +125409 92.24 +88.219 +92.24 +57.18 +13.1 +89.3 +92.24 +12.12 +89.125 +125419 92.24 +41.38 +125423 13.93 +92.24 +1.39 41.38 +125427 92.24 +25.20 +125430 89.124 +92.24 +90.45 +92.24 +25.2 30.59 +92.24 +12.1 +13.89 +125439 92.24 +67.95 +9.46 +61.13 +67.1 +125446 64.14 +33.212 +125449 53.83 +15.81 +125452 67.38 +53.83 +125455 85.7 +89.25 +28.1 +125459 61.13 +67.1 +125462 89.121 +92.4 +15.40 +89.125 +125467 58.67 +63.20 89.3 +92.4 +89.23 +89.65 +125473 92.4 +125475 71.14 +68.11 +89.108 +92.4 +89.125 +89.59 +28.36 +125485 59.23 +63.20 89.3 +92.4 +91.12 +125490 37.107 +57.1 +90.15 +92.24 +88.24 +125496 28.1 +59.23 +33.61 +125501 89.33 90.21 +125503 28.1 32.4 +92.24 +72.2 +89.125 +125508 28.1 +125511 89.33 90.21 +59.23 +33.254 +63.20 89.142 +92.24 +72.2 +125518 13.4 58.67 +125520 13.4 +92.24 +33.255 +89.131 +125525 92.24 +33.277 +125528 93.169a +125530 13.4 +92.24 +53.82 +125534 13.4 +92.24 +53.83 +92.24 +33.277 34.48 36.43 +92.24 +12.12 +125542 92.24 +12.15 +59.24 +92.24 +33.277 34.48 36.43 +92.24 +12.15 +69.7 +92.24 +12.12 +90.65 +92.24 +33.274 +92.24 +12.15 +89.93 +92.24 +12.12 +125563 24.52 33.212 +67.131 +68.1 +125568 68.11 +125570 89.119 +125572 68.11 +125575 67.65 +24.52 +89.87 89.93 +125579 89.119 +92.24 +12.15 +125584 92.24 +12.12 +68.11 +125589 13.4 +92.24 +33.288 +125594 33.286 +92.4 +92.24 +23.88 +92.24 +67.96 +125601 33.61 +125603 89.36 90.24 +92.24 +31.8 +125607 91.12 +125609 92.24 +37.107 +125612 57.125 +90.15 +125615 68.11 +89.119 +125620 57.40 +90.65 +90.22 +125624 33.224 +125626 89.125 +64.12 89.37 +92.24 +125630 37.107 +33.224 +125633 90.24 +59.23 +125636 72.1 +125641 33.254 +125643 64.14 +33.224 +125646 68.11 +89.119 +125650 9.46 +67.38 +68.11 +89.119 +125655 89.59 +67.32 +24.19 +125659 25.158 +125662 25.190 +89.122 +125665 67.33 +92.24 +15.86 +125669 89.67 +28.1 +125672 88.12 +125674 28.1 32.16 +125676 89.93 +59.24 +92.24 +42.7 +92.24 +88.13 +90.16 +125684 13.56 23.58 +24.1 +58.30 +25.43 +57.71 +92.4 +92.24 +12.12 +89.49 91.15 +10.36 +12.1 +33.131 +125697 13.4 +89.26 +125700 92.24 +9.23 +125703 31.27 +92.4 +89.33 +125707 31.27 +125709 25.45 +67.38 +10.36 +12.1 +125714 91.12 +67.129 +24.19 +125719 28.1 +125721 67.32 +24.19 +64.1 +125725 13.1 +89.33 +24.1 +125729 64.14 +125732 59.24 +92.24 +125735 92.24 +25.59 +125738 89.27 90.23 +125740 88.30 +125742 64.14 78.53 +92.30 +88.28 +125746 59.24 +92.24 +90.45 +92.24 +88.289 +89.93 +92.24 +88.139 +90.45 +89.92 +92.24 +88.289 +125759 92.24 +88.139 +89.92 +28.1 +125764 92.30 +24.19 +89.59 +92.24 +88.289 88.310 +20.43 +89.92 89.93 +88.310 +89.119 +125776 59.24 +92.24 +89.119 +125780 68.11 +125782 88.289 +59.24 +92.24 +88.289 +125787 24.1 90.79 +125789 69.7 +31.27 +125793 92.23 +31.8 +125796 92.24 +42.7 +92.24 +88.13 +88.12 +125802 64.14 +92.30 +88.12 +125806 92.24 +90.45 +92.24 +88.289 +90.16 +92.24 +12.34 +125814 89.33 +67.131 +67.65 +92.24 +12.34 +88.289 +89.57 +125822 24.19 +92.24 +12.15 +92.24 +12.15 +89.59 +13.100 +92.24 +42.11 +92.24 +12.34 +59.24 +92.24 +13.56 23.58 +90.16 +92.24 +12.1 +88.289 +125842 89.33 +58.13 +125845 89.119 +125847 68.11 +89.92 +125850 74.5 +88.289 +89.33 +125854 92.24 +12.1 +23.58 +89.26 89.76 +125859 24.20 +125861 92.24 +58.26 +92.24 +12.1 +125866 92.24 +58.26 +92.24 +12.34 +59.24 +92.24 +125874 88.13 +125877 90.16 +92.24 +12.1 +89.92 +92.24 +125883 25.43 +92.24 +11.23 +125887 90.21 +125890 92.24 +33.193 +125893 24.52 +67.131 +67.65 +125897 25.43 +92.26 +125900 64.14 +93.206 +90.16 +92.24 +12.35 +125907 20.72 +92.24 +10.49 +125911 89.93 +89.29 +125914 20.72 +125916 89.33 +92.24 +42.11 +125920 88.110 +125922 89.124 +92.24 +92.24 +10.49 +125927 88.12 +11.23 +125930 25.213 +89.65 90.26 +88.198 +125934 92.24 +9.23 +92.4 +28.1 +125939 15.2 +89.121 +92.24 +23.99 +84.22 +92.24 +23.88 +89.33 +25.43 +92.24 +11.23 +92.24 +125952 25.43 +68.11 +13.8 +92.24 +23.99 +59.24 +92.24 +88.198 +92.24 +11.89 +125963 20.85 +125966 28.1 +125968 59.24 +20.85 +125971 90.65 +23.88 +67.96 +125976 13.89 +89.26 89.76 +125979 28.1 +92.24 +25.43 +89.33 91.15 +92.30 +90.36 +92.4 +92.24 +23.113 +125989 23.113 +125991 92.4 +71.25 +90.36 +92.24 +11.23 +92.24 +23.113 +23.113 +89.124 +71.8 +126002 57.1 +92.24 +57.18 +92.24 +41.38 +126008 32.11 +92.24 +11.23 +126012 57.40 +126015 25.55 +92.24 +25.49 +126021 92.16 +92.24 +25.43 +92.24 +12.1 +13.89 +126029 9.46 +25.44 +126032 33.99 +69.7 +92.24 +33.101 +89.125 +90.10 +42.11 +126040 72.2 +89.26 89.76 +126043 28.1 +126045 89.142 +92.24 +72.2 +126049 89.87 +83.33 +126052 25.166 31.82 +92.24 +25.166 +92.4 +126058 30.118 +92.4 +92.24 +26.3 +89.33 +78.2 +126065 92.24 +12.1 +92.24 +26.3 +92.4 +126071 28.1 +59.23 +25.45 +89.67 +92.24 +26.3 +126078 30.118 +25.158 +126081 89.112 +92.24 +12.1 +126087 33.163 +57.125 +126091 89.33 +92.24 +33.330 +126095 36.19 +126097 92.24 +25.92 +90.20 +126101 90.45 +89.93 +126105 92.24 +33.330 +126109 31.85 +92.24 +9.19 +92.24 +12.15 +126115 93.169a +93.387 +126118 25.43 +92.26 +64.14 +57.71 +33.330 +92.4 +126125 92.24 +36.19 +92.24 +33.330 +126130 89.119 +126132 68.11 +126138 89.76 +126140 28.1 +126142 68.11 +126144 92.4 +89.77 +92.24 +12.18 +126149 92.4 +57.71 +25.45 +126153 59.23 +12.18 12.33 +31.35 +89.125 +27.45 +92.24 +12.33 +90.26 +89.3 +92.24 +12.1 +126165 89.33 +126167 53.81 +15.40 +84.22 +92.24 +9.23 +89.26 89.76 +126174 28.1 +92.24 +12.18 +92.24 +12.1 +59.24 +12.33 +126182 33.274 +93.169a +93.387 +13.8 +58.10 8.4 +15.81 +89.3 +92.24 +12.1 +126192 89.92 +59.24 +26.9 +126197 33.274 +92.24 +93.169a +126201 92.24 +12.1 +126208 92.24 +92.24 +53.83 +126212 33.212 +126214 15.81 +126216 67.38 +83.13 +92.24 +9.23 +126221 67.20 +9.46 +126224 89.3 +92.24 +12.1 +126229 39.57 +126231 89.33 +78.2 +126234 92.24 +89.119 +126238 92.24 +126240 92.24 +41.38 +126243 89.3 +92.24 +41.38 +126247 89.26 +126249 90.16 +92.24 +41.38 +33.70 +126254 92.24 +41.38 +126257 31.56 +92.4 +89.3 +92.24 +12.1 +126263 92.24 +28.1 +92.24 +12.1 +31.56 +92.4 +126273 92.24 +12.1 +126276 31.56 +92.4 +89.77 +126280 28.1 +92.24 +12.18 12.33 +92.24 +72.2 +126286 92.24 +12.18 12.33 +92.24 +31.8 +25.45 +25.43 +92.26 +89.33 +92.24 +25.43 +90.16 +92.24 +12.1 +126301 59.24 +92.24 +25.43 +90.16 +92.24 +12.1 +13.56 23.58 +126309 28.1 +92.24 +12.1 +92.24 +126314 25.43 +126316 28.1 +92.24 +12.1 +89.33 +92.24 +12.1 +25.43 +126324 89.26 89.76 +126326 28.36 +92.24 +25.43 +92.24 +12.1 +83.9 90.56 +92.4 +126334 92.24 +12.15 +126337 92.24 +58.52 +15.66 +92.24 +12.1 +84.22 +92.24 +1.39 +89.59 +23.88 +90.4 +126349 89.141 +126352 92.24 +25.43 +126356 92.4 +25.43 +92.24 +12.1 +89.125 +126363 25.43 +92.4 +89.93 +15.66 +92.24 +12.15 +126370 40.12 +90.39 +92.24 +88.289 88.310 +92.4 +25.45 +89.30 +78.4 +92.24 +12.1 +25.43 +92.4 +89.93 +92.4 +71.25 +92.26 +25.43 +12.1 +92.23 +67.9 +24.14 +89.67 +25.43 +92.26 +92.24 +12.1 +89.119 +92.4 +68.11 +126400 92.24 +25.43 +126403 83.13 +92.4 +88.38 +126407 89.26 89.76 +126409 28.1 +126413 68.11 +126417 92.4 +89.33 +63.20 +92.24 +12.18 +126423 57.71 +92.4 +89.93 +92.4 +24.14 +126429 33.262 +126431 92.24 +12.12 +15.66 +92.24 +12.15 +21.31 +92.24 +9.23 +126441 33.274 +126443 93.169a +126445 92.24 +12.15 +92.24 +12.15 +92.24 +12.1 +89.119 +126453 68.11 +126457 92.24 +12.1 +89.93 +92.4 +27.2 +126463 31.35 +92.24 +25.43 +126467 90.65 +92.24 +12.1 +90.56 +92.4 +92.24 +12.1 +25.43 +126477 92.24 +68.11 +89.119 +92.24 +25.43 +126483 92.24 +12.1 +68.11 +126487 92.24 +12.1 +126491 68.11 +89.76 +126494 88.38 +92.24 +25.43 +83.9 90.60 +92.4 +90.22 +25.158 +126502 67.33 +92.24 + +92.24 +30.110 +89.33 +64.14 +92.30 +126511 89.93 +92.4 +126514 83.13 +92.24 +41.38 +126518 25.251 +126521 89.80 +92.24 +25.43 +89.125 +92.24 +73.6 +25.43 +84.27 +13.45 +92.24 +25.251 +89.33 +92.24 +25.251 +38.2 +90.51 +126538 92.24 +25.252 +126541 88.38 +89.5 +92.24 +25.43 +92.4 +25.43 +89.33 +126549 60.46 +25.43 +92.4 +89.67 +126554 33.69 +126556 25.43 +92.24 +12.1 +126560 92.24 +11.23 +126563 88.198 +33.255 +126566 89.23 +92.24 +126569 25.43 +92.24 +11.23 +126574 24.1 +126576 74.5 +92.24 +12.1 +126581 24.1 +25.43 +89.93 +126585 92.24 +33.330 +126588 90.15 +126590 90.22 +92.24 +25.43 +92.24 +12.1 +25.43 +89.93 +92.24 +11.23 +126600 59.24 +92.24 +31.35 +126604 93.169a +126606 92.24 +53.82 +90.16 +92.24 +12.1 +13.56 23.58 +89.93 +59.24 +92.24 +25.43 +92.24 +13.56 23.58 +25.43 +92.24 +13.56 23.58 +126623 89.26 89.76 +126625 28.1 +126627 25.43 +92.24 +58.26 +92.24 +12.1 +67.31 +92.24 +12.1 +25.43 +126637 92.24 +33.330 +126640 42.7 +91.1 +126644 92.24 +25.43 +92.24 +12.1 +90.22 +92.24 +33.330 +126652 36.19 +89.93 +92.24 +33.330 +126657 22.30 +126660 89.33 +59.24 +92.24 +13.56 23.58 +126665 92.24 +12.1 +39.57 +92.24 +41.38 +126673 92.24 +39.57 +92.24 +39.57 +92.24 +41.38 +92.24 +31.102 31.85 +92.4 +126684 92.24 +39.57 +92.24 +41.38 +89.131 +126690 92.24 +31.35 +126693 93.169a +126695 92.24 +12.15 +92.24 +12.15 +126701 92.24 +15.81 +90.8 +2.7 +126706 23.107 +93.169a +93.387 +126710 89.76 +92.24 +2.7 +58.51 +89.125 +126716 92.24 +2.7 +126720 92.24 +8.64 +89.87 +92.24 +12.18 +126726 92.24 +33.262 +89.33 +92.24 +12.18 +126732 92.24 +72.2 +89.33 +60.12 +126737 92.24 +33.262 +92.24 +12.18 +126742 92.24 +2.7 +126745 92.24 +8.64 +126748 92.24 +60.12 +126751 92.24 +126754 89.30 +92.24 +33.264 +92.24 +9.1 +31.50 +92.24 +33.264 +92.24 +12.1 +78.2 +126766 89.33 +126769 92.24 +33.264 +92.24 +12.1 +126774 33.262 +90.24 +92.24 +12.15 +126779 92.24 +31.102 +90.23 +92.24 +12.15 +92.24 +12.15 +126787 92.24 +33.264 +126791 92.24 +126793 31.35 +92.24 +12.1 +33.255 +13.9 +126799 89.33 +126801 31.35 +90.23 +92.24 +33.264 +126806 33.262 +92.24 +12.1 +90.24 +92.24 +12.15 +126813 89.87 +126816 92.24 +33.264 +91.15 +23.88 +67.96 +90.90 +92.24 +12.1 +92.4 +89.87 +126827 92.24 +23.88 +90.6 +92.24 +12.15 +126834 92.24 +90.65 +92.24 +12.15 +90.65 +92.24 +23.88 +92.24 +126844 92.24 +12.15 +92.24 +12.15 +92.24 +23.88 +126853 33.61 +126855 92.24 +31.85 +90.23 +92.24 +9.19 +92.24 +12.15 +92.24 +12.15 +89.59 +28.1 +126867 23.88 +67.96 +90.65 +89.92 +126873 92.24 +25.158 +126877 89.7 +126879 91.15 +67.32 +126882 33.163 +89.8 +92.24 +30.59 +126887 31.56 +92.4 +89.92 +67.32 +28.1 +126893 31.56 +92.4 +126897 33.163 +32.4 +126900 90.65 +92.24 +33.164 +126904 33.163 +90.15 +126907 67.32 +126909 24.1 +92.24 +11.23 +126913 88.289 +88.289 +126916 89.44 +23.99 +33.163 +126920 90.90 +23.88 +126923 92.24 +88.289 +126927 23.99 +126929 88.289 +126931 23.99 +126933 90.24 +92.30 +33.69 +90.22 +33.161 +59.24 +88.21 +88.289 +126942 91.12 +126944 88.289 +126946 89.44 +23.99 +28.1 +126950 59.24 +92.24 +13.56 23.58 +126954 92.24 +12.1 +126957 88.289 +89.125 +92.24 +13.56 +126962 92.24 +12.1 +13.32 +126967 92.24 +12.35 +126970 20.16 +126972 28.1 +126974 89.3 +92.24 +12.1 +126979 92.24 +41.38 +63.1 +126983 92.24 +12.35 +13.73 +89.124 89.94 +28.1 +126989 92.24 +12.15 +92.24 +12.15 +85.10 +89.92 +90.51 +92.4 +30.15 +89.59 +28.1 +92.24 +73.2 +89.93 +127004 89.119 +92.24 +70.3 +127008 92.24 +12.15 +127011 93.169a +93.387 +127015 92.24 +73.2 +12.1 +127019 23.88 +67.96 +9.46 +13.154 37.120 +127024 89.122 +92.24 +12.23 +92.24 +53.77 +30.93 +87.54 +127032 92.24 +10.36 +127036 25.43 +70.4 +70.4 +92.1 +127042 92.1 +58.51 +89.125 +127046 59.24 +92.24 +32.16 +92.24 +72.2 +89.26 +92.24 +72.2 +92.24 +68.11 +89.119 +92.4 +127059 89.108 +92.4 +127063 92.24 +67.95 +13.1 +90.60 +92.4 +88.66 +88.76 +22.42 +90.14 +12.1 +12.12 +127076 93.169a +93.387 +92.24 +12.15 +92.24 +12.12 +89.26 89.80 +72.2 +127085 25.43 +25.125 +78.1 +89.33 +27.1 +127091 92.24 +10.36 +127094 41.11 +70.4 +70.4 +64.14 +33.330 +57.125 +90.14 +92.24 +12.12 +89.87 +87.54 +67.38 +33.161 +127108 33.61 +127111 64.12 +33.330 +28.33 +89.125 +127116 90.65 +67.131 +67.65 +90.22 +25.43 +92.26 +89.87 +127125 92.24 +25.43 +90.22 +41.11 +89.8 +92.24 +33.330 +127134 92.24 +33.330 +127137 64.14 +24.52 +127140 67.65 +90.22 +89.76 +127144 41.11 +89.33 +15.40 +84.22 +92.24 +41.38 +59.1 +31.9 +92.24 +127154 33.274 +93.169a +93.387 +15.81 +13.8 +9.12 +127162 92.24 +31.9 +89.92 +92.24 +53.83 +27.58 +127169 89.49 +127171 57.68 +127173 42.41 +89.125 +38.14 +59.31 +57.128 +59.24 +92.24 +36.25 +127183 68.11 +127185 92.24 +33.236 +92.24 +93.387 +12.1 +127191 90.65 +92.24 +68.11 +127195 92.24 +33.236 +127198 89.92 +92.24 +12.12 +127202 92.24 +12.15 +127205 89.65 +127207 15.7 +84.18 +127212 92.24 +33.236 +127215 15.166 +127217 57.125 +127220 7.3 +127222 33.22 +127225 33.69 +89.23 +92.24 +33.69 +127230 33.22 +57.98 +92.24 +42.11 +127235 92.24 +88.110 +127240 33.61 +127242 25.3 +90.8 +6.58 +127246 6.57 +89.125 +30.54 +85.7 +127253 83.39 +127255 83.39 +33.70 +89.49 +92.24 +25.123 +92.4 +78.46 +127263 33.20 +127265 92.24 +10.36 +92.24 +10.50 +127270 92.24 +30.93 +92.24 +53.77 +93.83d +92.24 +25.45 +127278 92.1 +25.43 +70.4 +70.4 +25.45 +89.6 +59.23 +25.6 33.178 +127287 22.47 +127289 23.129 +78.53 +22.47 +127293 92.24 +26.4 +89.23 +25.125 +78.1 +15.81 +11.23 +127301 33.263 +127303 92.24 +72.2 +89.86 +127308 72.2 +41.11 +78.2 +25.123 +127316 33.212 +92.24 +92.2 +36.40 +127322 72.2 +41.11 +25.45 +31.87 +127329 90.47 +90.41 +92.24 +11.23 +91.12 +127335 11.73 +127337 33.263 +127339 92.24 +25.43 +83.33 +11.32 +127344 88.4 +127346 15.72 +66.6 +92.24 +12.1 +89.23 +90.36 +92.24 +33.265 9.19 +15.40 +92.23 +57.55 +90.15 +92.24 +11.38 +89.50 +92.4 +71.25 +35.1 +92.24 +64.2 +89.49 89.59 +42.44 +13.3 +92.24 +72.2 +33.61 +127373 92.24 +11.32 +89.125 +92.24 +25.110 +127379 93.99 +127381 36.14 +92.4 +89.26 +127385 67.32 89.67 +15.81 +29.10 +127389 92.24 +42.11 +127393 33.98 +88.110 +33.374 +92.4 +127399 25.81 +127402 69.9 +127404 34.53 +92.24 +11.23 +127408 92.24 +30.56 +13.146 +127413 92.24 +11.32 +15.44 +25.45 +127418 41.44 +92.24 +88.106 +89.125 +92.24 +88.1 +92.24 +88.3 +89.3 +92.24 +12.1 +127430 92.24 +88.112 +127433 24.1 +92.24 +12.1 +93.93b +33.263 +90.1 +59.23 +127443 92.24 +72.2 +127446 89.93 +92.4 +33.262 +127450 28.1 +127452 92.24 +33.264 +92.4 +72.1 +127459 33.61 +127461 89.125 +127463 25.1 +127465 6.57 +127467 6.56 +127469 33.61 +89.124 +30.54 +67.53 +127474 34.50 +127476 83.39 +127478 83.39 +33.70 +22.42 +127482 33.20 +127484 92.24 +34.11 +33.20 +92.24 +34.11 +89.90 +33.126 +93.173c +93.169a +93.387 +87.76 +127496 10.49 +93.158b +92.24 +127500 12.1 +12.12 +25.43 +127504 93.169a +93.387 +37.122 +33.314 +127509 88.76 +127511 25.248 +127513 25.43 +59.68 +25.45 +78.44 +68.63 +127519 33.61 +127522 92.24 +89.118 +92.4 +21.25 +71.30 +127528 33.61 +127530 25.150 +39.30 +92.24 +60.68 +57.77 +92.24 +11.27 +31.104 +127539 34.30 +127541 9.1 +92.24 +67.24 +33.191 +127547 92.24 +56.30 +53.11 +92.24 +92.24 +12.1 +92.4 +88.66 +13.64 +127557 88.272 +127559 92.24 +127561 37.63 +127563 12.9{N:001} +92.4 +93.169a +93.387 +34.48 +127569 25.3 +32.4 +60.68 +59.23 +29.10 +127577 11.12 +127579 1.79 +93.398 +21.18 +92.24 +67.50 +92.24 +127586 31.85 +20.31 +127589 12.28 +92.24 +127592 13.32 +92.24 +127595 37.55 +89.125 +15.59 +92.24 +57.4 +85.68 +127602 56.30 +127604 +6.14 +67.96 +127608 14.57 +37.122 +64.12 +93.585 +127613 93.454 +127615 92.24 +83.18 +127618 11.61 +92.24 +64.1 +41.10 +127623 88.271 +127625 88.279 +36.35 +8.4 +58.36 +13.75 +28.48 +2.3 +67.96 +38.8 +90.68 +89.130 +64.1 +127639 33.487 +89.104 +8.4 +88.260 +89.104 +37.52 +76.24 +89.104 +12.49 +33.400 +127651 92.24 +12.34 +33.444 +33.446 +127656 92.24 +93.266 +8.1 +127660 92.24 +93.263 +92.24 +12.31 +25.161 +56.30 +33.400 +90.94 +89.125 +33.69 +33.419 +127672 12.9{N:001} +127674 89.104 +127676 59.7 +127678 32.4 +33.400 +89.104 +59.7 +58.9 +64.12 +92.24 +30.12 +4.2 +32.3 +127690 20.39 +22.9 +127694 92.24 +41.16 +92.24 +93.206 +41.11 +127700 92.24 +31.10 +92.24 +93.57 +38.14 +41.13 68.75 90.82 +127707 92.24 +39.35 +92.24 +93.218 +21.32 +127714 92.24 +127716 92.24 +23.28 +127719 21.5 79.57 +23.14 +53.60 88.151 +127723 36.2 +1.34 +2.8 +127727 14.4 +15.162 +3.2 +67.164 +23.202 +23.123 +23.99 +43.11 +14.25 +20.6 +1.69 +14.29 +92.24 +127741 88.149 +1.30 +15.26 +127745 92.24 +1.24 +92.24 +1.24 +67.95 +67.95 +13.32 +127753 33.459 +127756 60.54 +127758 93.11 +93.118 +33.69 +91.13 +127763 12.9{N:001} +127765 88.24 +60.8 +127769 56.30 +127771 59.23 +127773 33.417 +127778 59.23 +92.24 +42.11 +53.10 +127784 53.10 +127787 59.23 +92.24 +88.135 +127791 33.70 +127794 88.295 +53.11 +127798 33.386 +33.432 +127801 92.24 +25.20 +127804 41.11 +127806 92.24 +33.74 +127809 33.70 +33.373 +33.365 +33.365 +65.41 +89.60 +127816 25.45 +127818 29.7 +92.24 +33.98 +92.24 +33.281 +127824 92.24 +53.74 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +127832 33.69 +127835 61.13 +127837 67.1 +127839 33.407 +41.11 +127842 92.24 +127844 25.20 +92.24 +53.10 +127849 92.24 +30.116 39.16 +41.41 +12.18 +127856 25.45 +127858 74.15 +127860 92.24 +88.24 +127863 31.102 +127865 12.18 +88.24 +33.178 +127870 25.43 +12.1 +13.32 +34.53 +92.24 +88.76 +92.24 +12.9{N:001} +92.4 +93.169a +93.387 +127882 23.88 +67.96 +127885 89.104 +127887 31.37 +88.76 +21.18 +127891 2.3 +18.4 +89.104 +127895 88.76 +127897 25.251 +88.198 +127900 92.24 +127902 92.24 +8.4 +79.58 +6.162 +127907 92.24 +74.5 +37.120 +127911 88.292 +127913 85.40 +83.33 +92.24 +87.23 +127918 88.34 +127920 25.132 +127922 12.1 +21.31 +92.4 +127926 93.169a +93.387 +92.24 +12.9{N:001} +92.4 +87.23 +87.21 +76.6 +127935 37.35 +67.133 +59.23 +92.24 +67.133 +127941 67.38 +127943 67.95 +59.23 +92.24 +67.95 +72.6 +28.38 +93.169a +93.387 +127954 92.24 +12.1 +28.47 +92.24 +87.76 +127961 13.107 +67.111 +67.111 +71.34 +127966 33.153 +15.66 +127969 92.24 +12.28 +127972 92.24 +87.76 +127975 93.190c +127977 33.262 +92.24 +33.98 +92.24 +12.1 +127983 92.24 +33.264 +93.169a +93.387 +59.7 +24.1 +25.119 +92.24 +33.68 +127993 92.24 +31.56 +92.24 +33.98 +92.24 +33.460 +128000 36.19 +92.24 +128004 33.61 +128006 92.24 +67.145 +67.61 +93.190c +92.24 +60.16 +11.32 +92.24 +128015 92.24 +93.415 +88.66 +128019 25.248 +128022 92.24 +128025 92.24 +128028 92.24 +128032 92.24 +60.16 +12.33 +128036 83.33 +92.24 +6.112 +128042 93.169a +93.387 +92.24 +33.270 +92.24 +31.87 +92.24 +10.43 +92.24 +23.121 +128053 92.24 +12.44 +92.24 +37.67 +92.24 +1.39 +92.24 +25.43 +92.4 +128063 37.127 +92.4 +128066 92.24 +88.310 +92.4 +128070 92.24 +23.107 +128075 92.4 +37.64 +53.87 +92.24 +12.1 +128081 12.12 +128084 92.24 +87.23 +128087 92.24 +76.6 +128090 92.24 +67.95 +92.24 +67.95 +72.6 +91.13 +128098 92.24 +1.34 +128101 24.1 +128103 59.23 +24.16 +128108 19.14 +128110 52.1 +128113 59.23 +92.24 +11.56 +92.24 +1.39 +69.1 +72.6 +92.1 +128122 92.24 +61.7 +128125 92.24 +61.18 +33.69 +12.9{N:001} +92.24 +12.1 +92.24 +128134 92.24 +128137 92.24 +128139 92.24 +12.7{N:001} +92.1 +93.190c +92.24 +11.23 +128147 57.10 +128149 92.24 +22.2 +128152 37.64 +128154 25.174 +128156 93.169a +85.6 +128159 92.24 +1.66 +92.24 +33.129 +93.548 +128165 92.24 +33.98 +92.24 +12.1 +128170 92.24 +33.264 +93.169a +13.3 +128175 12.18 +128177 92.24 +12.10 +67.178 +128181 24.52 +83.40 +92.1 +33.80 +128186 64.12 +6.89 +33.69 +128190 24.7 +33.61 +128193 6.64 +128195 15.193 +92.24 +60.16 +11.32 +128200 93.471 +128203 93.584 +128206 93.550 +128209 93.476 +128212 93.573 +128215 93.603 +128218 93.514 +128220 15.90 +24.7 +92.24 +33.103 +128225 33.70 +128227 92.1 +128229 15.90 +24.1 +60.16 +6.105 +2.50 +128236 83.10 +92.24 +6.105 +64.1 +9.2 +9.1 +49.1 +6.175 +128245 49.15 +128247 92.24 +8.37 +6.178 +2.50 +128252 92.24 +8.10 +128256 92.24 +8.12 +79.27 +64.12 +8.15 +79.27 +64.12 +2.12 +128265 92.24 +8.23 +128268 64.12 +2.4 +2.3 +128272 92.24 +8.49 +128275 64.1 +2.57 +64.12 +128279 7.73 +79.72 +128282 92.24 +33.103 +128285 64.12 +14.74 +2.7 +128292 92.24 +82.8 +8.30 +128296 1.30 +60.16 +128300 92.24 +8.19 +128303 6.32 +79.94 +79.95 +15.40 +128308 92.24 +8.18 +128311 64.12 +92.24 +1.28 +14.37 +128316 92.24 +76.1 +128321 24.1 +128323 15.119 +128325 92.24 +8.49 +128328 64.12 +23.121 +128331 85.32 +92.24 +8.32 +128336 92.1 +33.69 +128339 25.252 +92.1 +128342 92.24 +60.46 +128345 92.24 +61.13 +128348 92.24 +23.88 +128351 13.3 +23.121 +128354 91.13 +23.88 +128358 92.24 +67.95 +92.24 +67.95 +128364 92.24 +57.63 +92.24 +23.99 +128369 92.24 +1.19 +128372 33.61 +128374 24.1 +128380 67.135 +13.107 +128384 92.24 +28.77 +92.24 +60.16 +1.30 +128390 24.1 +128392 92.24 +8.32 +92.1 +128396 92.24 +60.16 +6.105 +92.24 +2.50 +92.24 +60.16 +1.30 +12.28 +92.24 +60.16 +11.32 +128410 92.24 +6.105 +92.24 +60.16 +60.16 +11.32 +128417 92.24 +12.28 +92.24 +128421 93.471 +11.32 +33.61 +92.32 +33.69 +92.24 +18.6 +92.24 +60.16 +1.30 +128432 92.24 +8.32 +128435 92.24 +15.227 +128438 83.10 83.9 +92.24 +60.16 +6.105 +92.24 +2.50 +32.4 +92.24 +42.11 +128449 92.24 +42.47 +128452 92.24 +25.174 +128458 74.5 +25.177 +88.106 +128462 27.46 +92.24 +33.69 +128466 53.74 +128471 27.1 +128473 33.255 +128475 25.174 +128478 90.80 +128480 92.24 +33.126 +92.1 +128485 25.289 +91.2 +128490 90.21 +92.24 +25.43 +128494 92.24 +60.46 +68.43 +128498 29.16 +84.6 +13.59 +128502 41.52 +128504 92.24 +60.46 +42.11 +128514 15.3 +92.24 +6.105 +128519 92.24 +80.1 +128524 41.52 +91.2 +128529 88.198 +92.24 +42.11 +92.24 +93.282 +128535 92.1 +88.198 +92.24 +24.59 +8.24 +31.56 +128542 92.24 +12.18 +33.69 +92.24 +11.32 +92.24 +39.57 +128551 23.1 +128553 92.24 +3.4 +92.24 +23.88 +128560 92.24 +1.14 +92.24 +12.1 +128565 92.24 +12.28 +92.24 +128569 93.584 +11.32 +33.61 +92.32 +33.69 +92.24 +60.46 +128577 92.24 +61.13 +128580 13.3 +23.121 +128583 23.93 +28.1 +128586 92.24 +22.2 +128589 92.24 +57.52 +89.125 +59.57 +128595 92.24 +33.400 +128598 92.24 +33.69 +93.172 +128606 89.125 +11.44 +92.24 +12.34 93.330 +128611 25.252 +128613 90.66 +67.62 +91.13 +67.62 +92.24 +12.34 +15.215 +128623 7.24 +128625 27.46 +128628 22.2 +67.186 +60.19 +13.3 +31.87 +67.119 +23.99 +128638 92.24 +57.121 +92.24 +23.88 +92.24 +128644 8.24 +31.56 +128647 92.24 +12.18 +33.69 +92.24 +11.32 +92.24 +39.57 +128656 20.25 +128658 92.24 +23.99 +92.24 +60.49 +128663 92.24 +12.28 +92.24 +128667 93.550 +11.32 +33.61 +92.32 +33.69 +92.24 +128674 92.24 +6.32 +92.24 +79.94 +92.24 +79.95 +28.1 +83.6 +85.69 +83.5 +92.24 +37.72 +92.24 +12.34 93.330 +128689 18.6 +92.24 +33.126 +92.1 +128695 34.48 +92.24 +31.85 +92.1 +128701 92.24 +67.142 +93.29 +92.24 +33.270 +92.1 +92.24 +31.87 +92.1 +128711 20.61 +128714 83.5 +92.24 +12.34 93.330 +85.69 +91.2 +128722 59.3 +128725 83.2 +18.6 +92.24 +33.236 +93.57 +128731 33.224 +92.24 +93.58 +85.34 +88.306 +83.33 +92.24 +11.58 +93.182b +23.1 +5.15 +128743 88.271 +128748 18.6 +92.24 +33.236 +92.24 +93.282 +64.1 +128755 41.52 +128761 67.56 +128763 55.5 +90.32 +128767 92.24 +6.32 +92.24 +8.19 +92.1 +92.24 +128774 8.24 +31.56 +128777 92.24 +12.18 +33.69 +92.24 +11.32 +92.24 +39.57 +128786 92.24 +5.22 +92.24 +28.79 +128793 2.27 +79.27 +128797 92.24 +2.27 +33.61 +33.126 +58.71 +128803 92.23 +28.1 +128807 92.24 +57.125 +128810 92.24 +12.28 +92.24 +128814 93.476 +11.32 +33.61 +92.32 +33.69 +92.24 +12.15 +92.24 +12.15 +92.24 +128825 92.24 +8.23 +128828 64.12 +2.4 +2.3 +128832 92.24 +8.49 +128835 64.1 +2.57 +28.1 +128839 92.24 +42.11 +128842 92.24 +25.43 +128845 92.24 +31.88 +128848 92.24 +35.19 +128851 92.24 +25.174 +128855 92.24 +42.11 +128858 92.24 +61.13 +128861 92.24 +60.46 +91.2 +128868 13.140 +92.24 +9.34 +93.164 +92.24 +33.69 +128875 53.80 +128877 33.224 +128879 31.8 +92.24 +92.2 +87.76 +88.271 +128885 23.1 +5.15 +128890 67.78 +128892 41.52 +128895 25.1 +41.52 +128898 92.24 +88.271 +128901 91.13 +23.152 +128905 6.106 +128907 92.24 +88.276 +128912 22.2 +128918 92.24 +42.11 +128922 92.24 +36.40 +128925 20.61 +128927 23.99 +128929 32.16 +59.23 +92.24 +11.32 +128934 92.1 +128936 92.24 +27.34 +26.11 +128940 26.3 +128944 59.27 +128946 92.24 +42.11 +128950 33.69 +128952 92.24 +63.21 +92.24 +128956 93.476 +78.52 +128960 92.24 +33.236 +128965 27.2 +92.24 +28.76 +92.24 +12.34 93.330 +89.52 +33.69 +128973 85.34 +128976 58.37 +22.4 +89.130 +128981 18.6 +67.119 +71.8 +128985 15.84 +128987 92.24 +39.57 +128990 92.24 +36.19 +67.119 +67.66 +92.24 +42.11 +92.1 +128999 37.35 +129001 92.24 +11.55 +129004 37.57 +129007 37.53 +2.59 +64.12 +92.24 +6.118 +92.24 +2.19 +19.39 +64.12 +92.1 +57.125 +129019 92.24 +12.12 +92.1 +129025 92.24 +1.30 1.33 +92.24 +1.33 67.188 +92.24 +129031 8.24 +31.56 +129034 92.24 +12.18 +33.69 +92.24 +11.32 +129040 92.24 +12.28 +92.24 +129044 93.573 +11.32 +33.61 +92.32 +33.69 +92.24 +129051 92.24 +60.16 +12.33 +92.24 +12.1 +129057 92.24 +60.16 +1.30 +28.1 +129062 92.24 +42.11 +129065 33.265 +129068 23.88 +129070 23.121 +129072 13.3 +23.72 +129075 74.19 +92.24 +63.21 +129079 67.62 +23.117 +129083 27.1 +129085 42.11 +67.70 +90.20 +92.24 +12.1 +92.1 +129092 29.16 +92.16 +57.125 +129096 31.56 +129098 36.19 +129100 41.52 +129104 23.72 +15.84 +64.12 +57.233 +129111 32.16 +92.36 +67.1 +15.84 +129117 91.2 +129119 59.3 +9.19 +129122 93.573 +129125 79.56 +92.24 +6.162 +129130 15.227 +129132 92.1 +129134 79.27 +129136 65.17 +129138 92.24 +39.57 +129141 49.5 +129143 6.162 +79.27 +129148 13.102 +92.24 +33.126 +129153 92.24 +6.64 +92.24 +23.88 +129158 33.274 +92.24 +33.126 +129162 90.20 +92.24 +12.12 +92.1 +129167 90.20 +92.24 +12.28 +129171 92.24 +129173 8.24 +31.56 +129176 92.24 +12.18 +33.69 +92.24 +11.32 +129182 92.24 +12.28 +92.24 +129186 93.603 +11.32 +33.61 +92.32 +33.69 +92.24 +88.24 +92.24 +70.3 +92.24 +129197 92.24 +57.63 +93.91 +92.24 +79.110 +129203 92.23 +79.112 +129206 79.112 +129208 92.23 +79.110 +28.1 +129212 92.24 +42.11 +91.13 +129216 83.33 +129218 7.49 +71.9 +129222 79.112 +92.23 +74.5 +129226 78.9 +76.1 +129230 36.19 +92.1 +92.24 +33.98 +129236 34.48 +92.24 +33.126 +92.1 +91.13 +129243 92.24 +11.44 +92.24 +12.34 93.330 +92.24 +33.69 +129250 93.172 +129255 89.125 +33.253 +91.10 +129261 15.84 +129263 17.21 +83.33 +92.24 +8.49 +129269 32.16 +129271 92.1 +25.43 +129275 36.19 +92.24 +33.98 +92.24 +25.174 +92.1 +92.1 +129283 37.122 +129285 92.24 +67.1 +92.24 +27.46 +92.24 +67.62 +129293 92.24 +1.39 +63.1 +27.46 +92.24 +85.69 +129300 92.24 +1.39 +129303 67.56 +18.6 +129308 92.23 +18.1 +92.24 +57.121 +129313 92.24 +39.57 +129317 7.45 +129319 92.24 +7.15 +92.24 +12.1 +92.1 +129325 84.27 +129328 15.40 +67.128 +129331 33.61 +129334 92.24 +33.126 +92.24 +12.1 +92.1 +129340 92.24 +33.126 +92.24 +1.89 +92.24 +12.1 +92.1 +92.24 +58.71 +93.480b +92.24 +15.107 +129353 92.24 +1.11 +129356 92.24 +12.1 +92.1 +129360 92.24 +33.126 +92.1 +92.24 +58.71 +92.24 +129367 8.24 +31.56 +129370 92.24 +12.18 +33.69 +92.24 +11.32 +129376 92.24 +12.28 +92.24 +129380 93.514 +11.32 +33.61 +92.32 +33.69 +92.24 +72.6 +92.24 +33.270 +92.24 +31.87 +129392 70.3 +92.24 +89.16 +92.24 +1.4 +92.24 +12.1 +28.1 +129401 92.24 +42.11 +129405 69.9 +79.77 +69.9 +79.71 +71.28 +129411 79.77 +129413 79.71 +129416 79.74 +129419 69.9 +79.71 +69.9 +79.77 +67.62 +129425 23.44 +129427 92.24 +8.19 +92.1 +129431 33.69 +129433 57.26 +129436 57.28 +129438 92.23 +57.40 +129443 32.4 +129447 92.24 +22.12 +129450 88.79 +129452 57.53 +129454 32.42 +129456 49.22 +33.294 +129459 57.188 +129461 92.1 +2.49 +14.63 +90.12 +2.3 +129467 57.28 +129469 6.162 +79.27 +129472 49.3 +129475 24.19 +92.24 +25.191 +92.24 +49.23 +129482 6.203 +47.15 +92.24 +8.23 +129488 24.41 +92.1 +129491 59.7 +25.33 +33.417 +129495 38.4 +129497 25.76 +129499 41.52 +91.13 +17.1 +83.23 +92.24 +7.49 +129506 19.12 +129509 31.56 +92.24 +33.103 +92.1 +129514 79.110 +92.24 +7.49 +15.93 +129521 23.20 +129527 92.1 +92.24 +39.57 +129532 17.17 +129534 92.1 +129536 92.24 +6.112 +92.1 +64.12 +92.1 +39.57 +129543 17.12 +129545 92.24 +12.12 +92.1 +129549 92.24 +6.112 +129552 92.24 +129554 8.24 +31.56 +129557 92.24 +12.18 +33.69 +92.24 +11.32 +129564 24.1 +129566 91.13 +7.49 +79.110 +129570 92.24 +1.11 +129573 92.24 +33.103 +92.24 +60.46 +129578 24.52 +64.12 +6.89 +33.70 +129583 92.1 +33.69 +15.101 +83.1 +129588 28.47 +129591 13.107 +129594 71.34 +67.53 +13.3 +129598 12.18 +129600 91.13 +6.112 +85.3 +129604 92.24 +1.11 +129608 92.24 +6.112 +17.12 +129612 92.24 +17.12 +64.1 +24.31 +2.29 +2.30 +129619 2.36 +129621 1.38 +83.19 +92.24 +6.112 +64.1 +24.31 +2.34 +129629 83.19 +92.24 +6.112 +6.112 +60.25 +129636 83.46 +92.24 +6.112 +60.25 +60.13 +53.77 +17.12 +49.5 +129645 6.162 +79.27 +129649 92.24 +8.10 +129652 6.192 +2.50 +129656 92.24 +6.112 +15.40 +14.16 +129661 14.74 +129663 14.15 +129665 60.16 +6.102 +2.3 +14.63 +83.33 +92.24 +6.112 +129674 92.24 +60.16 +12.33 +92.24 +12.1 +129680 83.33 +92.24 +6.112 +64.12 +1.70 +6.223 +64.1 +2.11 2.46 +129690 83.10 +92.24 +6.112 +129694 83.19 +92.24 +6.112 +60.13 +12.32 +59.41 +8.23 +83.36 +129703 83.41 +129705 92.24 +12.32 +92.24 +60.46 +64.1 +4.14 +129712 92.24 +60.49 +12.32 +64.1 +4.17 +129718 92.24 +60.50 +12.32 +129722 92.24 +8.18 +64.12 +9.1 +129727 92.24 +60.51 +12.32 +64.1 +4.42 +15.245 +129734 92.24 +60.13 +12.32 +129742 89.91 +8.29 +60.15 +83.22 +129747 83.16 +59.41 +8.23 +129751 68.34 +129754 67.92a +129756 67.92a +33.69 +88.24 +88.24 +88.24 +12.9{N:001} +92.24 +12.1 +92.24 +12.7{N:001} +92.24 +129769 92.24 +129772 92.24 +129777 92.24 +12.32 +87.23 +129781 87.4 +129783 33.349 +92.24 +17.12 +129787 92.24 +6.112 +92.24 +23.88 +129792 92.24 +67.95 +92.24 +67.95 +17.22 +92.24 +60.25 +60.13 +53.77 +83.33 +92.24 +17.12 +129805 92.24 +6.112 +129808 53.56 +92.24 +23.88 +129812 92.24 +67.95 +92.24 +67.95 +129817 15.215 +92.24 +6.192 +129821 83.33 +92.24 +6.112 +33.69 +92.24 +12.9{N:001} +129828 92.24 +12.1 +92.4 +65.17 +129833 57.125 +92.24 +87.23 +129837 92.24 +87.4 +129840 92.24 +76.1 +129844 42.35 +92.24 +59.23 +129849 92.24 +30.59 +129854 42.35 +129856 24.1 +129858 92.24 +8.32 +92.24 +17.12 +129863 92.24 +6.112 +6.64 +33.61 +83.16 +129869 83.21 +6.55 +6.62 +60.16 +129874 24.1 +12.28 +76.11 +33.206 +129879 33.80 +129882 65.17 +79.110 +92.24 +6.64 +129887 13.38 +92.24 +6.62 +129892 74.5 +92.23 +129895 92.24 +1.11 +69.7 +129899 92.24 +1.39 +69.7 +83.51 +92.24 +1.39 +79.110 +92.24 +6.64 +69.9 +24.7 +129912 25.138 +129915 92.23 +65.17 +13.7 +79.110 +92.24 +6.64 +69.9 +24.7 +129927 92.24 +53.77 +33.69 +92.1 +129932 25.138 +91.13 +39.57 +92.24 +4.14 +92.24 +129939 92.24 +10.2 +93.174 +92.24 +10.33 +93.91 +79.110 +92.24 +6.64 +129949 92.24 +60.16 +6.62 +129954 24.1 +129956 83.10 +92.24 +6.112 +129960 92.24 +60.13 +12.32 +129965 83.10 +92.24 +53.77 +4.26 +17.1 +64.12 +20.72 +129973 8.17 +60.16 +129976 8.23 +60.16 +129980 92.24 +60.16 +12.33 +92.24 +12.1 +15.66 +129987 59.23 +92.24 +1.39 +129993 57.55 +129995 92.24 +8.32 +92.24 +17.12 +130000 92.24 +6.112 +130004 57.55 +92.24 +6.64 +92.24 +60.13 +12.32 +130011 92.24 +60.25 +60.13 +53.77 +17.22 +83.33 +92.24 +4.26 +130020 59.27 +6.83 +130023 6.124 +2.50 +59.41 +6.211 +130029 92.24 +33.178 +92.24 +11.27 +130034 33.109 +33.110 +58.71 +33.69 +65.17 +130040 57.55 +92.24 +6.64 +130044 79.110 +92.24 +6.62 +130049 20.72 +130051 37.131 +92.24 +12.1 +130055 92.24 +23.107 +130059 59.23 +10.2 +130062 33.2 +130064 11.55 +130066 11.55 +130070 92.24 +12.1 +92.4 +37.64 +130075 53.87 +130077 37.64 +130079 92.24 +1.39 +130082 24.1 +130084 24.52 +33.103 +12.28 +130088 83.19 +92.24 +6.112 +130092 92.24 +12.32 +130095 92.24 +53.77 +130099 92.24 +60.2 +130102 60.8 +60.8 +130105 60.80 +60.80 +33.69 +33.80 +130112 92.24 +4.26 +92.24 +20.72 +57.125 +92.24 +76.1 +130120 57.30 +130122 32.37 +130124 79.62 +130126 87.4 +130128 87.23 +130130 33.356 +130132 59.23 +42.38 +130136 92.24 +1.5 +130140 92.24 +1.39 +130143 83.51 +92.24 +1.39 +130148 92.24 +1.69 +130152 92.24 +130155 59.23 +33.69 +24.52 +92.24 +17.12 +130161 92.24 +6.112 +130164 92.24 +4.26 +92.24 +33.356 +130169 92.24 +87.4 +130172 92.24 +87.23 +130175 92.24 +76.6 +130178 92.24 +67.95 +92.24 +67.95 +130183 92.24 +60.13 +12.32 +33.69 +72.6 +130189 92.24 +53.77 +17.22 +130193 53.56 +130195 24.1 +130197 79.110 +92.24 +4.26 +130202 92.24 +60.16 +6.62 +130206 24.52 +130209 92.24 +60.13 +12.32 +33.69 +64.12 +33.80 +14.15 +130218 24.1 +130220 91.13 +4.29 +79.27 +130224 92.24 +17.12 +130229 6.37 +130233 6.192 +130235 15.40 +39.57 +130239 39.57 +130242 79.110 +92.24 +6.62 +92.24 +60.49 +24.52 +92.24 +60.49 +12.32 +33.69 +130254 15.40 +58.37 +4.29 +79.31 +130259 92.24 +17.12 +130265 18.1 +92.24 +22.42 +130269 92.24 +1.39 +130273 92.26 +20.72 +130278 6.33 +130282 79.110 +92.24 +6.62 +92.24 +60.50 +24.52 +92.24 +60.50 +12.32 +33.69 +130294 24.1 +130296 91.13 +4.29 +79.26 +130300 92.24 +17.12 +130304 18.6 +6.214 +130307 92.24 +8.30 +130311 24.52 +64.12 +33.103 +130315 83.10 +92.24 +60.13 +12.32 +33.69 +81.24 +3.41 +6.75 +130324 60.12 +81.24 +3.44 +6.75 +130329 92.24 +6.202 +130332 92.24 +6.197 +130335 20.25 +130338 79.110 +92.24 +6.62 +92.24 +60.51 +24.52 +33.103 +92.24 +60.51 +12.32 +33.69 +130351 24.1 +130353 91.13 +4.29 +79.35 +130357 92.24 +17.12 +83.49 +130361 33.126 +130363 92.24 +23.99 +130366 92.24 +23.108 +15.144 +130374 37.35 +130376 92.24 +60.64 +92.24 +1.39 +20.61 +130382 55.6 6.32 +130385 23.33 +130388 23.158 +130391 92.24 +4.3 4.4 +92.24 +1.39 +130397 79.110 +92.24 +60.52 +6.62 +24.1 +83.51 +92.24 +6.114 +92.24 +26.4 +92.24 +20.72 +130410 92.24 +33.98 +92.24 +12.1 +130416 92.24 +33.264 +130421 33.83 +33.80 +130424 33.69 +92.24 +37.63 +92.24 +88.24 +130430 70.3 +67.119 +67.30 +130434 56.20 +130436 38.8 +92.24 +20.83 +92.4 +130441 92.24 +85.69 +130444 92.24 +1.39 +130449 59.27 +6.174 +79.27 +130453 33.69 +130457 67.128 +67.78 +78.9 +67.119 +59.33 +130463 92.24 +87.81 +130467 92.24 +11.23 +130470 92.24 +67.62 +20.61 +64.12 +130477 24.1 +130479 79.110 +92.24 +6.62 +92.24 +60.53 +130485 14.87 +130487 13.107 +130489 92.24 +1.28 +13.48 +79.26 +64.12 +6.164 +8.13 +130497 92.24 +1.29 +78.44 +13.48 +64.12 +8.64 +130504 92.24 +1.30 +92.24 +1.5 +15.118 +130510 92.24 +1.39 +64.12 +3.5 +15.122 +92.24 +3.37 +130519 14.4 +130521 16.7 +130523 92.24 +1.5 +15.14 63.30 +64.12 +6.64 +79.120 +130530 59.23 +1.46 +130533 1.66 +130535 92.24 +80.1 +130538 15.3 +130540 92.24 +37.67 +92.24 +1.39 +130545 92.24 +87.41 +130548 92.24 +55.15 +130551 92.24 +57.26 +130554 92.24 +87.44 +130557 59.23 +87.76 +130560 87.84 +21.12 +130564 92.24 +1.57 +130568 92.24 +2.21 +92.24 +1.46 +130573 33.69 +92.24 +1.46 +130577 92.24 +2.21 +15.118 +130581 92.4 +130583 21.12 +92.4 +130586 8.18 +92.24 +17.12 +130590 92.24 +6.112 +130594 92.24 +88.173 +92.24 +4.26 +130600 92.24 +67.142 +92.24 +130604 92.24 +88.173 +130609 74.5 +13.90 +130613 24.1 +60.13 +12.28 +17.1 +130618 92.24 +60.13 +79.107 +92.24 +1.39 +37.16 +92.24 +60.13 +14.4 +92.24 +1.39 +130631 14.4 +14.4 +130634 92.24 +1.60 +69.9 +130638 92.24 +1.69 +69.9 +130642 59.24 +3.2 +130645 24.1 +58.37 +12.28 +15.101 +130650 82.1 +1.28 +130653 6.54 +12.1 +23.88 +130657 33.83 +33.80 +130660 92.24 +60.13 +12.28 +130666 20.25 +92.24 +1.60 +130670 92.24 +1.69 +33.69 +130674 20.25 +92.24 +1.60 +69.9 +92.24 +1.69 +69.9 +92.24 +3.2 +67.119 +33.484 +92.24 +87.76 +92.24 +12.1 +92.4 +130691 92.24 +8.16 +130695 33.212 +92.24 +60.1 +92.24 +33.484 +60.33 +60.27 +60.13 +60.80 +33.484 +130706 59.23 +10.2 +11.58 +93.182b +130711 10.2 +93.174 +60.21 +60.80 +33.484 +130717 10.2 +93.315 +60.21 +60.80 +130722 10.2 +93.82 +60.21 +60.80 +130727 10.2 +93.49 +60.21 +60.80 +130732 10.2 +93.275 +60.21 +60.80 +130737 10.2 +93.251a +60.21 +60.80 +130742 10.2 +93.349b +60.21 +60.80 +130747 10.2 +93.231b +60.21 +60.80 +130752 10.2 +93.184 +60.21 +60.80 +130757 10.2 +93.133 +60.21 +60.80 +130762 10.2 +93.202a +60.21 +60.80 +130767 10.2 +93.70 +60.21 +60.80 +33.484 +130774 24.1 +130776 91.13 +11.1 +130781 60.3 +92.23 +74.5 +130785 59.23 +11.55 +130788 10.2 +130790 11.55 +130792 33.2 +17.1 +83.33 +92.24 +6.112 +130798 83.33 +92.24 +4.26 +49.5 +6.174 +79.27 +130805 3.53 3.8 +130807 92.24 +8.30 +130811 33.83 +33.80 +130814 33.69 +92.24 +21.26 +92.24 +12.1 +92.4 +92.24 +17.12 +130823 92.24 +6.112 +130826 92.24 +4.26 +130829 59.23 +92.24 +12.28 +17.1 +83.19 +92.24 +6.112 +130837 92.24 +53.77 +130840 92.24 +60.13 +12.32 +130844 17.22 +83.33 +92.24 +6.112 +130849 92.24 +8.18 +130853 53.56 +92.24 +12.1 +33.69 +72.6 +92.24 +33.356 +130861 92.24 +87.23 +130864 92.24 +32.32 +130867 92.24 +33.349 +130870 92.24 +87.4 +130873 92.24 +76.1 +130876 92.24 +79.62 +92.24 +12.1 +92.4 +130882 92.24 +67.95 +92.24 +67.95 +72.6 +130888 33.28 +130891 92.24 +53.77 +33.69 +92.1 +130896 92.24 +49.5 +92.24 +6.174 +92.24 +79.27 +130905 84.6 +130908 33.69 +130910 87.53 +92.1 +130913 28.1 +130915 33.69 +92.1 +130919 92.24 +130922 92.24 +22.2 +92.24 +130927 47.8 +92.24 +6.174 +130932 79.28 +130935 92.24 +8.64 +92.24 +4.26 +130942 83.33 +92.24 +6.112 +92.24 +12.1 +130948 53.14 +130950 67.92a +130952 67.92a +130954 92.24 +7.15 +130958 92.24 +17.12 +130961 92.24 +6.112 +85.75 +130967 25.17 +67.128 +69.7 +23.39 +67.128 +69.7 +130974 24.93 +130977 92.24 +1.28 +69.7 +59.24 +14.67 +130983 92.24 +4.26 +92.24 +83.10 +83.10 +92.24 +6.112 +36.2 +130993 15.182 +130996 23.88 +1.78 +2.7 +131000 47.18 +92.24 +12.1 +59.23 +8.73 +131006 92.24 +8.23 +131010 67.30 +79.110 +92.24 +6.62 +92.24 +60.54 +91.5 +33.120 +131019 92.24 +1.11 +78.42 +67.200 +131024 24.1 +92.24 +60.16 +12.28 +131029 83.33 +92.24 +12.1 +17.1 +131036 60.16 +6.89 +131039 58.37 +12.28 +131043 17.1 +131045 92.24 +6.114 +131048 6.138 +2.50 +131053 6.211 +131057 92.24 +33.178 +92.24 +11.27 +59.23 +131063 92.24 +6.114 +92.24 +2.50 +92.24 +83.33 +92.24 +6.112 +131072 15.101 +92.24 +1.37 +92.24 +6.211 +92.24 +33.178 +92.24 +11.27 +131082 8.30 +92.24 +12.28 +83.33 +92.24 +12.1 +131089 57.55 +92.24 +12.28 +92.24 +6.138 +131095 59.42 +131098 92.24 +2.5 +92.24 +6.114 +131103 15.215 +131105 92.24 +1.39 +131108 91.5 +14.15 +131111 14.74 +131113 14.16 +131115 14.87 +131117 92.24 +60.16 +12.28 +92.24 +131122 92.24 +60.16 +6.89 +77.3 +131128 6.90 +131130 92.24 +60.46 +6.90 +131134 91.5 +2.13 +131137 2.3 +63.10 +131140 8.64 +131142 15.215 +131144 92.24 +1.39 +131147 92.24 +60.63 +92.24 +1.39 +14.66 +131153 92.24 +60.63 +92.24 +3.2 +14.66 +131159 59.23 +3.15 +79.34 +14.66 +131164 92.24 +60.49 +12.28 +6.90 +131169 64.12 +1.46 +131172 2.3 +14.63 +15.215 +131176 92.24 +1.70 +131179 13.48 +92.24 +60.63 +92.24 +1.70 +8.64 +131186 23.99 +92.24 +60.63 +92.24 +42.38 +92.24 +131193 92.24 +1.70 +92.24 +131197 23.88 +131199 92.24 +60.63 +92.24 +6.41 +20.40 +131205 92.24 +60.50 +12.28 +6.90 +131210 15.118 +131212 92.24 +1.5 +1.30 +131216 14.63 +64.12 +6.102 +131220 15.118 +131222 92.24 +60.63 +92.24 +1.76 +131228 92.24 +1.78 +92.24 +2.7 +131233 92.24 +33.126 +92.24 +1.30 +33.69 +92.24 +3.21 +131241 13.48 +92.24 +60.63 +92.24 +2.7 +131247 79.43 +131250 92.24 +9.1 +23.99 +90.12 +92.24 +2.7 +131257 79.42 +131259 92.24 +60.51 +12.28 +6.90 +131264 19.1 +92.24 +60.63 +92.24 +1.28 +131270 92.24 +60.63 +92.24 +1.29 +131275 92.24 +60.63 +92.24 +1.30 +131280 14.55 +92.24 +60.63 +131285 92.24 +67.186 +131288 14.37 +92.24 +60.63 +131293 92.24 +67.192 +64.1 +131297 24.1 +131299 24.52 +131301 4.42 +15.245 +131304 1.10 +33.69 +33.80 +131308 22.9 +22.9 +22.9 +92.24 +85.69 +131314 92.24 +1.39 +131317 92.24 +63.21 +33.80 +92.24 +6.89 +92.24 +60.12 +12.28 +92.24 +67.62 +6.90 +131329 92.24 +60.52 +12.28 +6.90 +131334 24.1 +1.30 +131337 92.24 +1.5 +15.118 +131341 92.24 +1.39 +131346 92.24 +6.220 +92.24 +1.58 +92.24 +1.20 +131353 79.110 +92.24 +1.58 +92.24 +1.20 +131359 15.101 +1.37 +131362 92.24 +1.58 +64.12 +1.37 +7.73 +131369 14.55 +92.24 +1.28 +131373 92.24 +1.6 +131376 92.24 +1.37 +92.24 +1.58 +131382 92.24 +1.37 +15.40 +4.47 +131387 92.24 +1.39 +131392 76.12 +64.12 +131395 76.12 +92.24 +4.56 +92.24 +1.39 +131401 33.69 +131405 20.25 +92.24 +3.15 +92.24 +1.39 +69.7 +59.24 +3.13 +69.7 +59.24 +3.2 +131418 92.24 +9.1 +131423 92.24 +33.483 +92.24 +12.1 +131428 92.24 +8.16 +131435 20.61 +131437 89.125 +131439 38.13 +67.174 +60.14 +131443 92.24 +24.90 +131446 64.12 +24.90 +4.56 +131450 19.16 +9.1 +131454 92.24 +67.142 +92.30 +25.9 +92.24 +9.1 +92.24 +23.99 +131465 13.17 +131468 25.12 +23.99 +131471 15.61 +92.24 +23.99 +131477 92.24 +64.3 +92.24 +4.47 +131482 4.29 +77.3 +131485 55.5 +131488 92.24 +8.10 +131491 64.12 +6.192 +64.1 +2.49 +131496 92.24 +8.18 +131499 64.12 +8.18 +9.1 +131504 8.12 +64.12 +8.12 +9.34 +131509 92.24 +8.20 +131512 64.12 +4.14 +131517 6.39 8.38 +64.12 +6.39 +2.59 +131522 92.24 +14.74 +92.24 +8.29 +131527 64.12 +14.74 +6.52 +4.29 +131532 15.230 +131534 55.5 +131537 8.44 +64.1 +4.56 +131541 8.45 +131544 92.24 +8.44 +131547 92.24 +76.12 +131550 20.25 +92.24 +9.1 +67.174 +60.14 +131558 37.67 +92.24 +12.28 +92.24 +1.20 +33.126 +131565 33.6 +93.2 +131569 92.24 +11.92 +33.126 +131573 93.32 +92.24 +22.9 +92.24 +131578 13.93 +91.13 +131581 59.75 +60.11 +22.9 +131587 92.24 +60.53 +12.28 +6.90 +131592 24.52 +33.103 +131596 92.24 +60.13 +79.105 +92.24 +6.114 +92.24 +2.50 +92.24 +83.33 +92.24 +12.1 +33.69 +92.24 +60.53 +12.28 +92.24 +131613 92.24 +6.89 +37.127 +92.24 +60.13 +12.28 +92.24 +37.114 +131622 92.24 +1.76 +92.24 +131626 93.468 +131628 37.127 +92.24 +60.13 +12.28 +92.24 +77.3 +131635 92.24 +67.199 +131638 67.186 +131640 67.174 +131642 67.168 +131644 20.61 +92.24 +60.63 +92.24 +9.1 +131650 92.24 +60.1 +92.24 +55.7 +92.24 +55.21 +60.9 +60.45 +33.212 +92.24 +60.1 +131664 24.1 +92.24 +4.29 +131668 92.24 +33.488 +131671 92.24 +17.12 +131676 6.39 +79.33 +131679 79.37 +131681 79.36 +131683 92.24 +8.10 +92.24 +4.29 +64.12 +8.10 +4.14 +131692 92.24 +8.19 +131695 15.40 +2.3 +131698 1.37 +131700 2.26 +20.61 +92.24 +60.63 +92.24 +9.1 +131707 92.24 +60.12 +22.13 23.158 +131712 92.24 +2.3 +131715 92.24 +1.37 +131718 92.24 +2.26 +92.24 +15.40 +131723 92.24 +8.19 +131727 92.24 +76.12 +92.24 +4.29 +131733 92.24 +8.19 +131738 92.24 +8.44 +131742 92.24 +8.44 +131745 64.1 +4.52 +131748 8.10 +131752 20.25 +131754 92.24 +63.21 +92.24 +9.1 +131760 20.61 +131762 92.24 +22.13 23.158 +131765 69.7 +41.52 +131768 92.24 +42.11 +92.24 +9.17 +131775 53.56 +92.24 +12.37 +131779 92.24 +6.97 +92.24 +2.50 +131784 92.24 +2.53 +131787 92.24 +2.56 +131790 92.24 +2.25 +131793 92.24 +3.62 +131796 74.5 +69.9 +24.41 +69.9 +24.58 +69.9 +15.227 +131805 41.52 +131807 92.24 +20.82 +131810 69.9 +131812 92.24 +131815 69.9 +131817 92.24 +88.271 +131820 69.9 +131822 92.24 +57.232 +131826 24.1 +58.37 +12.28 +76.11 +15.107 +131832 92.24 +1.11 +49.3 +1.34 +131837 92.24 +1.38 +131844 92.24 +8.18 +131847 64.12 +92.24 +1.28 +131851 92.24 +8.49 +131854 64.12 +7.45 +2.3 +131860 92.24 +8.30 +131863 6.65 +79.110 +131866 85.32 +92.24 +8.49 +131870 92.24 +82.8 +131873 92.24 +1.70 +131876 92.24 +82.7 +131879 92.24 +1.60 +131882 33.83 +33.80 +131885 64.13 +4.14 +14.77 +131890 33.83 +33.70 +92.24 +60.16 +14.15 +92.24 +131897 33.80 +131900 33.70 +92.24 +60.16 +14.15 +67.62 +33.61 +131907 24.52 +33.103 +131910 92.24 +1.11 +33.69 +6.55 +131915 33.70 +92.24 +60.16 +14.15 +131922 33.61 +131924 92.24 +12.28 +131927 17.1 +131929 92.24 +1.70 +131933 92.24 +1.60 +24.1 +15.203 +92.24 +8.30 +131940 92.24 +82.8 +131943 92.24 +1.5 +131946 33.463 +131948 92.24 +23.88 +131951 92.24 +67.95 +92.24 +67.95 +131956 42.35 +92.24 +1.5 +131960 92.24 +131964 92.24 +1.60 +131967 92.24 +131971 92.24 +1.69 +131974 92.24 +131978 67.78 +67.130 +131981 89.125 +131983 92.24 +67.142 +92.24 +14.74 +92.24 +60.54 +12.28 +131991 67.62 +6.90 +131994 68.22 +92.24 +28.77 +92.24 +12.1 +64.12 +33.215 +92.24 +132003 87.76 +92.24 +53.79 +132007 92.24 +33.103 +132010 24.52 +132012 92.24 +1.11 +67.55 +33.70 +132017 92.1 +132019 33.69 +15.35 +57.55 +92.24 +6.64 +92.24 +79.110 +132027 92.24 +8.30 +92.24 +12.28 +92.24 +17.1 +132034 92.24 +1.70 +132038 92.24 +1.60 +132041 15.37 +132043 92.24 +12.28 +33.69 +132048 92.1 +92.24 +6.65 +132052 33.69 +92.1 +57.55 +132056 23.11 +132059 79.42 +132061 92.24 +8.67 +89.125 +132065 92.24 +8.19 +132069 79.39 +64.12 +5.20 +132073 57.55 +92.24 +6.65 +132077 92.24 +8.30 +92.24 +12.28 +132082 23.11 +132087 92.24 +8.19 +92.1 +64.12 +5.20 +79.39 +132095 23.1 +132097 79.42 +92.24 +8.67 +92.1 +132102 33.69 +92.1 +71.21 +132106 67.55 +33.459 +132109 11.55 +132111 11.55 +132113 33.2 +132115 37.67 +132119 92.1 +6.213 +64.1 +6.218 +33.69 +17.9 +132126 81.2 +92.24 +7.15 +92.24 +12.1 +132132 92.24 +6.114 +132135 92.24 +53.56 +132140 92.24 +7.56 7.6 +92.24 +83.20 +92.24 +7.15 +132147 83.20 +132151 81.2 +132154 92.24 +11.55 +132157 92.24 +1.89 +92.24 +53.46 +20.22 +67.174 +60.27 +60.11 +132167 92.24 +60.11 +33.270 +92.1 +132172 33.459 +67.186 +60.39 +60.34 +60.29 +49.3 +6.164 +132181 92.24 +60.11 +3.9 +132185 92.24 +60.11 +6.105 +92.24 +83.33 +92.24 +12.9{N:001} +92.24 +1.39 +17.1 +132198 30.58 +132200 20.25 +2.3 +15.40 +132204 92.24 +8.19 +132208 20.45 +92.24 +39.11 +132215 30.58 +132217 20.25 +132219 71.34 +132221 20.61 +132224 92.24 +37.35 +79.112 +92.24 +1.5 +132231 2.10 +14.10 +92.24 +67.142 +92.24 +33.460 +132239 37.35 +132242 92.24 +2.7 +13.63 +132247 8.64 +132249 19.3 +92.24 +1.39 +132253 59.23 +22.13 23.158 +67.36 +132257 25.1 +132260 68.22 +92.24 +33.264 +132264 92.24 +4.4 +92.24 +15.101 +132269 92.24 +1.20 +132274 55.5 +132276 39.57 +132279 20.61 +132282 92.24 +8.7 +132286 92.24 +1.103 +92.24 +1.89 +92.24 +132293 33.131 +33.17 +93.585 +132297 93.398 +83.5 +132300 92.24 +12.9{N:001} +132303 20.76 +132305 24.7 +132307 92.24 +11.55 +132310 10.2 +132312 33.2 +132314 11.55 +92.24 +8.7 +132318 67.186 +60.12 +132321 60.62 +132324 13.140 +92.24 +8.7 +132328 85.32 +132330 7.75 +132332 92.24 +85.69 +132335 92.24 +1.39 +25.125 +132341 51.3 +132343 57.84 +15.193 +92.26 +132348 92.24 +60.11 +53.79 +38.13 +92.24 +85.69 +132355 92.24 +1.39 +132359 92.24 +60.12 +132362 60.62 +67.186 +23.186 +23.88 +132367 92.24 +12.1 +15.93 +132373 17.6 +132375 92.24 +8.49 +132379 25.251 +132381 13.122 +132383 92.24 +24.14 +132387 24.52 +33.80 +132391 92.24 +1.11 +33.69 +132395 15.101 +83.1 +132398 15.101 +132400 92.24 +1.11 +132403 92.24 +1.34 +132406 24.14 +132408 92.24 +39.11 +132413 92.30 +92.24 +67.199 +13.107 +14.87 +132420 92.24 +60.65 +92.24 +1.89 +20.60 +132426 20.61 +132428 92.24 +14.87 +9.19 +9.1 +60.80 +60.16 +132435 92.24 +63.21 +25.256 +13.48 +132441 87.23 +92.24 +12.1 +92.24 +1.11 +92.24 +22.9 +92.24 +60.49 +13.93 +91.13 +92.24 +22.9 +92.24 +60.50 +132457 67.56 +132459 92.24 +60.54 +12.28 +6.90 +132464 91.5 +33.80 +132468 92.24 +1.11 +33.69 +13.48 +92.24 +37.64 +92.24 +1.39 +92.24 +12.9{N:001} +92.4 +132480 92.24 +53.82 +132484 37.64 +132486 92.24 +67.95 +92.24 +67.95 +132491 92.24 +60.25 +60.13 +53.77 +92.24 +83.33 +92.24 +12.1 +17.12 +132501 92.24 +6.112 +132504 17.22 +132506 92.24 +8.18 +132510 53.56 +92.24 +12.1 +33.69 +33.349 +132516 12.9{N:001} +92.24 +12.1 +92.24 +12.7{N:001} +92.24 +132524 92.24 +132527 57.55 +92.24 +76.1 +132531 92.24 +132534 37.64 +132536 92.24 +11.55 +88.174 +132541 92.24 +88.173 +132545 92.24 +67.145 +92.24 +23.121 +56.20 +132552 92.24 +38.14 +92.24 +87.76 +132557 92.24 +53.79 +132560 92.24 +11.27 +132563 92.24 +53.58 +92.24 +33.126 +132574 20.40 88.266 +92.24 +20.40 88.266 +92.24 +1.39 +132580 79.110 +92.24 +7.15 +92.24 +12.1 +92.24 +132587 92.24 +1.11 +132590 24.1 +92.24 +6.139 +92.24 +34.44 +132597 92.24 +7.15 +132601 91.5 +14.16 +132604 14.74 +132606 14.15 +132608 14.87 +132610 2.13 +132613 33.477 +132615 24.1 +132617 92.24 +1.5 +9.34 +49.3 +92.24 +1.28 +132624 92.24 +1.29 +83.51 +92.24 +8.49 +132632 92.24 +8.10 +132635 6.192 +1.30 +60.21 +132639 23.50 +23.50 +23.50 +132643 33.83 +23.54 +132646 38.13 +23.52 +132649 24.1 +58.37 +33.477 +132653 92.24 +1.5 +132656 91.13 +4.54 +79.31 +132661 8.10 +60.16 +132664 8.17 +60.19 +132668 92.24 +8.10 +132671 60.16 +6.196 +132674 92.24 +8.44 +132677 15.212 +92.24 +60.63 +92.24 +1.30 +92.24 +1.5 +132685 15.215 +132688 92.24 +1.39 +132691 92.24 +4.54 +132694 83.33 +92.24 +9.34 +92.24 +67.62 +23.52 +132702 23.52 +92.24 +10.36 +132706 23.11 +132708 23.52 +10.42 +79.102 +132712 67.62 +37.57 +59.23 +92.24 +11.55 +132718 37.53 +2.59 +132721 18.4 +92.24 +10.36 +132726 92.24 +12.1 +132730 92.24 +6.112 +132734 92.24 +9.34 +21.14 +132738 92.24 +1.86 +83.5 +132742 83.2 +80.1 +77.3 +132746 92.24 +12.1 +132749 83.2 +35.45 +132752 67.186 +60.39 +60.34 +60.29 +132757 13.107 +55.5 +132760 92.24 +1.11 +92.24 +93.263 +132765 92.24 +12.28 +132768 92.24 +55.5 +132771 92.24 +4.54 +132774 55.5 +92.24 +4.54 +132778 92.24 +12.28 +132784 69.7 +80.1 +132787 27.27 +67.128 +132790 92.24 +1.11 +132793 15.215 +92.24 +4.54 +92.24 +132798 92.24 +4.52 +92.24 +67.98 +92.24 +33.131 +12.34 +132806 92.24 +12.34 93.330 +92.24 +31.8 +92.24 +1.39 +63.1 +15.215 +132815 92.24 +1.39 +132818 92.24 +12.28 +132823 15.215 +132825 24.52 +33.80 +132829 92.24 +1.11 +33.69 +67.42 +85.7 +92.24 +21.26 +132837 92.24 +76.1 +132840 92.24 +37.64 +92.24 +12.1 +92.4 +132846 92.24 +37.35 +92.24 +53.82 +132852 15.215 +92.24 +33.429 +92.24 +11.23 +92.4 +92.24 +33.427 +132861 83.33 +92.24 +12.1 +92.4 +67.92a +132867 67.92a +132870 39.57 +132873 92.24 +8.64 +92.24 +4.26 +132879 92.24 +33.98 +92.24 +33.264 +132886 25.104 +92.24 +23.88 +132890 67.119 +23.99 +132894 25.122 +1.11 +132897 92.24 +132900 85.75 +22.9 +92.24 +1.60 +132905 92.24 +1.69 +132908 15.107 +92.24 +12.34 +132914 88.178 +132916 32.4 +132918 59.13 +67.78 +132923 24.1 +92.24 +4.54 +132927 15.215 +132929 92.24 +1.39 +15.158 +92.24 +9.34 +132935 23.52 +92.24 +79.102 +132940 92.24 +9.34 +92.24 +60.11 +8.29 +92.24 +4.42 +92.24 +132950 15.245 +132952 92.24 +1.86 +132955 92.24 +80.1 +132958 83.5 +35.45 +83.2 +67.78 +132963 67.78 +132965 60.62 +67.78 +132968 85.26 +92.24 +4.52 +132972 47.2 +92.24 +4.52 +132976 92.24 +8.19 +132979 83.40 +92.24 +9.34 +2.7 +64.12 +1.76 +132987 15.205 +132990 35.1 +92.24 +1.39 +92.24 +9.34 +132996 79.110 +92.24 +1.39 +92.24 +8.19 +133003 13.43 +92.24 +1.76 +133007 47.2 +92.24 +4.54 +133011 92.24 +8.19 +133015 88.174 +92.24 +4.54 +133019 92.24 +9.34 +133022 15.37 +133024 55.5 +133026 92.24 +63.21 +92.24 +10.29 +133031 92.24 +36.19 +92.24 +33.330 +92.24 +12.1 +133039 92.24 +33.264 +93.169a +133043 17.1 +133045 92.24 +1.64 +92.24 +1.70 +133050 24.1 +133052 92.24 +1.70 +4.4 +15.101 +133057 8.17 +60.19 +133060 8.10 +60.16 +133064 92.24 +8.17 +133067 60.19 +6.196 +133071 92.24 +8.10 +133074 33.126 +33.401 +133077 92.24 +4.4 +133080 24.1 +133082 64.1 +4.13 +133085 92.24 +8.49 +133088 64.12 +4.12 +133091 92.24 +8.19 +133094 64.12 +8.19 +4.14 +133100 92.24 +4.54 +92.24 +76.1 +133106 92.24 +37.71 +133110 37.35 +133115 92.24 +8.10 +133118 64.12 +20.72 +133121 23.99 +133123 92.24 +20.29 +92.24 +23.99 +133128 23.139 +133130 25.213 +63.1 +92.24 +9.22 +36.35 +92.24 +4.4 +133138 53.56 +92.24 +4.54 +133143 92.24 +37.35 +92.24 +4.4 +133148 53.56 +92.24 +4.4 +33.69 +133153 64.1 +92.24 +4.4 +133158 74.5 +55.5 +133165 33.75 +33.70 +133169 33.401 +133173 37.35 +133175 67.174 +60.27 +60.11 +133179 33.29 +92.24 +33.74 +133184 33.401 +133186 92.24 +12.1 +33.400 +92.24 +33.126 +133193 92.24 +7.17 +133196 92.24 +133198 92.24 +1.11 +85.75 +133205 55.5 +133207 92.24 +11.27 +133210 39.57 +133215 37.35 +133217 59.23 +10.2 +133220 11.55 +133222 33.2 +133224 11.55 +133226 53.56 +133228 59.23 +92.24 +85.69 +133232 92.24 +1.39 +133235 33.61 +133237 92.24 +33.126 +133241 92.24 +6.64 +92.24 +23.88 +92.24 +4.26 +92.24 +20.72 +133250 42.37 +1.1 +133255 8.24 +31.56 +133260 55.23 +133262 55.23 +15.15 +133267 6.33 +133272 6.33 +20.61 +92.35 +133276 92.24 +25.174 +133279 92.24 +31.102 +92.24 +11.27 +133284 24.1 +58.37 +4.4 +15.101 +133289 92.24 +1.39 +133293 8.17 +60.11 +64.1 +4.25 +133298 33.70 +64.12 +4.54 +133302 92.24 +37.35 +92.24 +60.46 +4.4 +63.2 +133309 90.20 +133313 92.24 +1.39 +133316 92.24 +133319 85.69 +133321 53.56 +92.24 +4.4 +92.24 +60.46 +133327 23.139 +92.24 +20.29 +92.24 +23.99 +133335 33.477 +133340 2.3 +133342 92.24 +1.11 +15.107 +133346 92.24 +1.39 +90.20 +92.24 +9.1 +133352 31.8 +92.24 +85.69 +133356 92.24 +1.39 +133359 92.24 +33.477 +133364 42.29 +90.20 +92.24 +4.4 +33.69 +92.24 +85.69 +133372 92.24 +1.39 +133375 6.96 +92.24 +4.4 +133380 92.24 +20.29 +92.24 +6.33 +133385 23.88 +133390 23.186 +92.24 +6.96 +92.24 +4.4 +133397 33.70 +92.24 +6.96 +92.24 +4.4 +133406 59.7 +133408 53.56 +92.24 +6.96 +92.24 +4.4 +20.61 +133416 59.23 +92.24 +87.58 +133420 92.24 +133423 92.24 +57.26 +133426 92.24 +57.53 +133429 92.24 +87.84 +133432 92.24 +87.76 +133437 33.482 +133439 92.24 +8.30 +133442 92.24 +82.8 +133446 92.24 +8.16 +133453 74.5 +57.188 +133456 57.186 +133459 92.24 +133461 92.24 +33.482 +92.24 +33.126 +92.24 +4.4 +133468 92.24 +60.1 +92.24 +33.126 +133473 92.35 +92.24 +32.32 +133477 92.24 +133479 26.14 +32.15 60.4 +92.24 +60.1 +92.24 +4.4 +133486 60.1 +9.1 +133490 92.24 +60.1 +133493 60.38 +60.29 +60.15 +133497 24.1 +133499 91.13 +92.24 +4.26 +17.1 +133504 92.24 +1.46 +93.582a +133510 60.33 +60.27 +60.13 +60.80 +133515 92.24 +33.126 +133519 92.24 +33.126 +92.24 +12.12 +133524 33.61 +133526 92.24 +8.16 +133530 24.52 +33.103 +133533 92.24 +1.11 +64.12 +14.74 +2.7 +133540 64.12 +14.74 +14.15 +133545 92.24 +33.103 +133548 24.52 +64.12 +6.85 +6.84 +133553 92.24 +6.83 +133557 33.109 +33.110 +58.71 +83.33 +92.24 +6.112 +133564 83.33 +92.24 +60.13 +12.32 +133569 92.24 +53.77 +133572 92.23 +74.5 +27.12 +92.24 +33.110 +133579 92.24 +60.33 +60.27 +60.13 +60.80 +92.24 +37.131 +133587 92.24 +1.39 +133593 9.34 +133595 53.34 +133597 9.33 +133600 92.24 +15.156 +92.24 +4.26 +71.8 +83.5 +15.15 +133608 37.131 +133610 92.24 +9.1 +61.8 +92.24 +12.1 +133616 92.24 +4.26 +133620 92.24 +33.74 +133624 27.1 +33.254 +88.34 +133629 24.1 +58.37 +12.28 +15.245 +133634 1.10 +133636 33.217 +67.96 +33.215 +133640 92.24 +17.12 +133643 92.24 +1.39 +133647 59.23 +11.55 +133650 10.2 +133652 33.2 +133654 11.55 +33.69 +133657 33.80 +133659 53.58 +92.24 +12.1 +133665 33.357 +133668 92.24 +67.1 +92.24 +56.20 +133674 53.56 +92.24 +133677 92.24 +1.3 +133680 92.24 +1.3 +133683 1.69 +133685 1.78 +2.7 +133688 58.37 +12.28 +60.49 +15.144 +33.69 +20.60 +20.60 +93.420 +92.24 +133700 92.24 +6.197 +92.24 +25.19 +92.24 +88.271 +133707 23.35 +59.23 +92.24 +11.55 +133712 58.37 +12.28 +60.50 +15.144 +133717 33.69 +133719 33.80 +133723 53.56 +92.24 +4.4 +133727 92.24 +6.96 +133731 57.125 +33.482 +133734 92.24 +8.16 +133739 92.24 +8.30 +133744 23.34 +133746 92.24 +6.197 +92.24 +88.178 +92.24 +12.1 +92.24 +47.3 63.9 +79.99 +133756 92.24 +24.81 +92.24 +88.173 +133762 38.13 +133764 2.3 +133766 2.26 +90.20 +12.28 +88.24 +133771 90.20 +92.24 +4.26 +133775 92.24 +1.37 +92.24 +24.90 +133781 67.95 +67.95 +15.101 +133787 22.37 +67.92a +133790 67.92a +92.24 +53.56 +92.24 +4.4 +133796 92.24 +6.96 +133802 57.125 +92.24 +33.482 +92.24 +33.126 +133808 92.35 +133810 92.24 +25.174 +92.24 +11.27 +92.24 +36.19 +92.24 +33.330 +92.24 +12.1 +133821 92.24 +31.102 +93.169a +133825 24.52 +33.103 +133828 92.24 +1.11 +33.69 +33.61 +25.119 +92.24 +23.121 +92.24 +133837 12.9{N:001} +23.99 +133840 69.1 +33.69 +92.24 +12.18 +133845 23.80 +68.54 +92.24 +42.47 +133851 92.24 +42.11 +133854 15.156 +133858 24.1 +133860 91.13 +1.34 +79.27 +133865 92.24 +1.34 +17.12 +64.1 +9.2 +9.1 +133873 92.24 +8.10 +133876 6.192 +2.50 +133880 92.24 +8.30 +133883 6.5 +79.95 +133886 58.37 +12.28 +15.40 +133890 92.24 +7.15 +33.83 +133894 33.80 +133896 92.24 +17.12 +133899 92.24 +1.34 +43.17 +92.24 +43.17 6.5 +133906 43.14 +133909 92.24 +67.1 +43.14 +133913 23.198 +92.24 +43.15 +92.24 +2.14 +133919 43.17 +92.24 +17.12 +133923 92.24 +1.34 +92.24 +43.17 6.5 +133929 92.24 +2.14 +133932 43.14 +92.24 +2.14 +133936 58.37 +12.28 +15.40 +133940 92.24 +7.15 +92.24 +133944 92.24 +1.11 +133949 6.5 +79.95 +133952 58.37 +12.28 +92.24 +133956 37.13 +133958 92.24 +2.3 +15.40 +133962 92.24 +6.114 +133965 33.77 +33.80 +133968 92.24 +133970 92.24 +6.5 +92.24 +79.95 +33.69 +43.17 +133977 92.24 +43.17 6.5 +92.24 +79.95 +133982 43.18 +92.24 +3.38 +92.24 +3.27 +92.24 +2.14 +133990 23.197 +92.24 +3.38 +133995 43.17 +92.24 +12.28 +92.24 +43.17 6.5 +134002 92.24 +2.14 +134005 43.18 +92.24 +3.27 +92.24 +2.14 +134011 15.215 +134013 92.24 +7.66 +92.24 +88.178 +92.24 +12.1 +92.24 +134022 19.51 +92.24 +7.66 +83.20 +92.24 +1.89 +134029 15.40 +8.64 +134032 92.24 +7.66 +84.19 +92.24 +6.7 +92.24 +4.29 +134040 81.27 +60.39 +60.38 +134044 24.1 +58.37 +33.477 +134048 92.24 +1.5 +134052 25.215 +12.28 +60.16 +134056 22.13 +60.16 +92.24 +61.13 +134063 67.67 +92.24 +88.178 +92.24 +12.1 +134069 24.1 +64.12 +1.70 +6.223 +63.10 +2.3 +134076 92.24 +39.57 +134079 92.24 +4.4 +134083 92.24 +6.96 +134088 92.24 +60.1 +92.24 +33.126 +134093 17.1 +134095 92.24 +1.70 +92.24 +6.223 +134100 6.83 +92.24 +12.1 +134104 33.109 +92.24 +33.110 +93.266 +92.24 +87.76 +92.24 +12.1 +134113 92.24 +33.110 +92.24 +4.26 +33.69 +134120 25.215 +92.24 +42.11 +134124 12.9{N:001} +92.24 +12.1 +92.24 +12.7{N:001} +88.12 +134131 70.3 +92.24 +41.16 +134135 92.24 +37.67 +92.24 +11.55 +134142 53.58 +12.9{N:001} +134145 33.357 +92.24 +33.126 +134151 88.24 +134153 59.23 +92.24 +11.55 +15.84 +134158 53.56 +83.33 +134162 92.24 +88.14 +134165 24.19 +134169 24.1 +134171 79.110 +92.24 +7.15 +92.24 +7.17 +92.24 +33.264 +134179 92.24 +1.11 +134182 15.40 +92.24 +60.16 +12.28 +92.24 +134188 92.24 +60.16 +22.13 +134192 92.24 +7.15 +49.1 +6.165 +79.48 +14.50 +134199 49.15 +134201 92.24 +8.36 +6.178 +2.50 +134208 92.24 +60.13 +12.32 +134212 92.24 +60.16 +12.28 +60.16 +6.124 +2.50 +59.41 +92.24 +88.178 +92.24 +12.1 +92.24 +23.88 +134226 92.24 +67.95 +92.24 +67.95 +134231 59.42 +92.24 +7.15 +1.37 +134236 92.24 +14.49 +92.24 +12.1 +134242 92.24 +76.1 +134246 92.23 +74.5 +15.93 +134250 92.24 +7.15 +67.119 +68.22 +92.24 +60.16 +22.13 +92.24 +60.16 +12.28 +134261 24.52 +134263 33.80 +134265 92.24 +7.15 +33.69 +92.24 +60.16 +12.28 +15.35 +134273 47.4 +92.24 +60.16 +6.124 +92.24 +88.178 +92.24 +12.1 +134282 92.24 +2.14 +134285 15.37 +92.24 +60.46 +134289 47.4 +92.24 +6.124 +134294 92.24 +2.14 +134297 85.7 +23.179 +65.26 +134301 23.149 +134303 92.24 +9.1 +92.24 +134307 92.24 +33.482 +92.24 +4.4 +134312 92.24 +53.56 +92.24 +6.96 +134318 92.24 +60.49 +47.4 +92.24 +6.124 +134325 92.24 +1.70 +134328 13.48 +8.64 +64.12 +23.121 +134333 59.23 +4.1 +23.88 +92.24 +134338 92.24 +1.70 +23.99 +134342 92.24 +60.50 +47.4 +92.24 +6.124 +134349 92.24 +1.76 +134352 92.24 +1.78 +92.24 +2.7 +134357 13.48 +8.64 +134360 24.52 +92.24 +12.28 +92.24 +2.7 +33.69 +88.12 +134368 92.24 +134371 92.24 +134373 92.24 +88.24 +134377 56.20 +134379 8.64 +11.27 +134382 53.79 +47.4 +134385 8.64 +134388 23.34 +66.6 +134392 24.52 +92.24 +6.114 +33.69 +69.1 +12.9{N:001} +92.24 +12.1 +92.24 +12.7{N:001} +70.3 +134404 88.12 +92.24 +30.110 +134409 92.24 +60.51 +47.4 +92.24 +6.124 +134416 92.24 +1.28 +134421 14.68 +92.24 +9.1 +134425 2.3 +134427 14.68 +92.24 +9.1 +14.67 +78.2 +134433 33.400 +92.24 +33.126 +92.24 +12.1 +92.24 +134440 92.24 +37.13 +134443 92.24 +22.13 +134448 41.52 +134451 33.357 +134453 92.24 +60.52 +47.4 +92.24 +6.124 +134460 92.24 +6.112 +92.24 +4.4 +134465 13.48 +92.24 +1.82 +134469 14.55 +134471 23.40 +92.24 +8.21 +134476 92.24 +24.77 +134479 33.400 +92.24 +12.1 +92.24 +1.11 +134485 92.24 +24.77 +134490 92.24 +23.179 +134495 41.52 +134497 92.24 +42.11 +134501 92.24 +60.53 +47.4 +92.24 +6.124 +134508 92.24 +1.76 +92.24 +134512 93.468 +134514 79.81 +92.24 +2.7 +134519 77.3 +92.24 +1.99 +92.24 +37.67 +92.24 +134526 82.1 +1.28 +134529 24.1 +134531 92.24 +8.19 +92.24 +4.54 +134537 92.24 +8.19 +92.24 +4.4 +134543 92.24 +8.19 +92.24 +53.81 +12.39 +60.12 +53.39 +64.12 +4.55 +134554 12.37 +12.37 +134557 33.477 +134559 15.40 +134561 92.24 +37.67 +92.24 +1.39 +63.1 +15.125 +134569 92.24 +55.5 +92.24 + +92.24 +134575 92.24 +12.1 +92.24 +12.7{N:001} +91.13 +134581 64.12 +57.233 +25.119 +92.24 +23.72 +134587 13.32 +92.24 +6.162 +134593 49.22 +15.227 +134596 24.7 +92.24 +25.202 +134601 15.125 +134604 92.24 +80.1 +92.24 +33.129 +33.6 +93.414 +134611 92.24 +60.54 +47.4 +92.24 +6.124 +134618 92.24 +1.6 +134621 15.40 +33.80 +134625 92.24 +7.15 +134628 92.24 +6.112 +33.69 +13.107 +134633 91.5 +14.16 +134636 14.74 +134638 14.15 +134640 14.87 +134642 13.107 +64.1 +134645 13.107 +134648 9.1 +85.6 +134651 92.24 +1.39 +78.36 +14.87 +134658 13.48 +92.24 +1.89 +92.24 +134664 60.12 +63.14 +134667 92.24 +1.89 +92.24 +11.55 +20.60 +134673 93.420 +92.24 +134676 29.16 +90.20 +92.24 +12.1 +134682 92.24 +24.81 +92.24 +6.197 +92.24 +88.178 +92.24 +88.173 +134692 59.23 +1.66 +13.95 24.6 +134696 1.46 +134698 27.27 +134700 2.13 +134702 64.12 +86.5 +15.107 +134706 92.24 +1.5 +134709 92.24 +9.1 +134712 33.400 +92.24 +9.1 +92.24 +12.1 +134718 92.24 +22.13 +92.24 +2.13 +134725 92.24 +22.13 +134728 78.19 +134733 92.24 +60.16 +12.28 +92.24 +134738 92.24 +60.16 +6.124 +134742 33.70 +134744 92.1 +33.69 +84.24 +28.47 +134749 92.24 +56.30 +92.24 +88.275 +92.24 +134755 92.24 +17.12 +134758 2.7 +134762 88.271 +92.24 +37.67 +92.24 +1.39 +134768 88.285 +92.24 +85.69 +92.24 +1.39 +134774 92.24 +6.197 +92.24 +88.271 +134780 15.202 +92.1 +134783 1.86 +134785 12.18 +134787 24.1 +9.34 +17.12 +134791 4.4 +79.29 +59.41 +33.126 +33.401 +134797 8.10 +60.16 +134800 8.17 +60.19 +134803 92.24 +9.34 +134806 49.5 +6.169 +134809 6.170 79.29 +134811 49.29 +6.189 +134814 2.29 +65.2 +134817 2.43 +134820 92.24 +8.30 +134823 6.121 +2.50 +59.41 +25.187 +134828 92.24 +53.39 +92.24 +88.271 +134835 92.24 +8.16 +134838 33.61 +33.126 +28.77 +93.420 +92.24 +134844 92.24 +58.64 +92.24 +88.275 +134849 92.24 +25.187 +92.24 +1.39 +134854 24.1 +92.24 +9.34 +23.37 +134859 92.24 +8.64 +92.24 +11.27 +134865 92.24 +8.64 +92.24 +20.67 +93.169a +134871 25.213 +24.1 +134874 25.212 +134877 33.69 +92.1 +92.24 +12.28 +134883 25.213 +92.1 +33.69 +134887 92.24 +28.77 +92.24 +9.34 +134892 92.24 +4.4 +92.24 +15.188 +134897 92.24 +134899 92.24 +60.16 +8.10 +134903 92.24 +60.19 +8.17 +92.24 +4.4 +134909 24.1 +134915 67.62 +15.101 +134918 92.24 +1.20 +134921 89.48 +20.31 +13.54 +134925 25.213 +92.24 +85.69 +134929 92.24 +1.39 +134932 92.24 +33.126 +134935 33.61 +134937 92.24 +6.64 +92.24 +23.88 +134942 42.37 +1.1 +24.7 +92.24 +4.4 +134953 15.86 +92.35 +92.24 +26.14 +92.24 +134959 32.32 +92.24 +60.16 +8.10 +60.16 +1.46 +134966 83.5 +92.24 +9.34 +17.12 +134973 37.67 +60.16 +134976 92.24 +60.14 +13.97 +92.24 +134982 92.24 +58.37 +67.129 +134989 67.106 +134991 85.55 +71.34 +134994 92.24 +4.4 +135003 60.55 +135007 92.24 +60.16 +135012 20.31 +15.15 +135015 92.24 +60.19 +8.17 +135019 24.1 +135021 60.19 +37.67 +135024 37.64 +67.129 +37.65 +89.125 +37.35 +64.12 +37.67 +135032 67.199 +37.65 +135035 92.24 +4.4 +135039 30.67 +135042 92.24 +76.1 +135045 37.35 +135047 92.24 +4.4 +135052 92.24 +4.26 +55.5 +135056 92.24 +4.26 +39.57 +135062 12.9{N:001} +37.51 +135065 37.67 +37.67 +135068 92.24 +135071 33.314 +135073 30.93 +135075 31.87 +135077 33.69 +92.1 +92.24 +2.7 +135082 24.1 +92.28 +92.24 +88.275 +17.12 +135088 11.55 +135090 11.1 +135092 11.55 +135094 33.2 +135096 92.24 +60.19 +8.17 +135100 24.1 +135102 92.24 +4.4 +135105 88.198 +92.24 +88.275 +135111 20.41 +135113 49.22 +135115 92.24 +8.63 +135118 23.1 +135121 14.66 +135123 2.3 +135125 92.24 +12.1 +135129 92.24 +30.76 +135133 92.24 +30.67 +135139 30.67 +135142 92.24 +37.64 +135145 92.24 +4.4 +67.119 +13.126 +92.24 +33.98 +92.24 +12.1 +135154 92.24 +9.34 +135157 24.1 +135159 92.24 +1.89 +92.24 +135163 92.24 +135165 37.64 +135167 92.24 +37.67 +92.24 +1.39 +135173 24.1 +58.37 +12.28 +15.107 +135178 92.24 +1.11 +135181 37.35 +135184 92.24 +1.39 +14.39 +135188 92.24 +79.18 +135192 33.83 +135194 78.16 +33.80 +33.69 +20.60 +20.60 +93.420 +92.24 +135203 13.48 +85.70 +12.37 +135207 85.85 +58.28 +12.39 +53.39 +135212 85.85 +58.28 +4.38 +53.39 +135217 88.198 +135220 92.24 +6.197 +92.24 +25.19 +92.24 +88.271 +135227 23.34 +59.23 +92.24 +11.55 +135232 92.24 +37.67 +92.24 +1.39 +135238 88.271 +135240 92.24 +57.203 +92.24 +1.39 +135245 92.24 +76.1 +92.24 +88.254 +135250 57.28 +135252 24.52 +58.37 +33.103 +135256 92.24 +1.11 +33.69 +92.24 +11.12 +92.1 +15.40 +135267 34.4 +92.24 +88.289 +135274 92.24 +22.13 +135278 90.63 +135280 59.66 +135282 92.24 +88.289 +84.19 +92.24 +1.11 +135288 29.16 +92.24 +12.1 +92.24 +88.23 +135294 38.16 +135296 64.12 +135299 38.16 +135301 59.70 +92.24 +60.75 +135305 92.24 +42.11 +135309 92.24 +6.121 +135312 63.9 +63.9 +135315 60.75 +78.52 +33.357 +135320 88.254 +78.52 +24.90 +135324 25.142 +135329 92.24 +26.3 +135332 33.69 +135334 17.12 +37.68 +135337 10.61 +135341 25.142 +135344 90.79 +135349 67.186 +13.112 +92.24 +22.13 +135354 23.158 +135356 25.142 +135358 23.33 +135361 2.3 +14.66 +135364 87.44 +12.9{N:001} +92.24 +12.1 +92.24 +56.20 +135372 25.138 +135374 52.1 +135377 92.24 +37.67 +92.24 +1.39 +92.24 +135384 88.271 +135386 88.254 +135388 24.7 +92.24 +1.37 +92.24 +14.63 +135395 83.30 +17.1 +135398 92.24 +25.251 +92.24 +24.90 +135403 33.69 +22.9 +22.9 +92.24 +1.89 +92.24 +135410 93.420 +92.24 +1.89 +92.24 +76.11 +135417 67.199 +135419 92.24 +38.1 +135423 92.24 +57.203 +92.24 +1.39 +25.138 +135429 25.142 +135433 92.23 +57.188 +67.130 +92.24 +15.208 +135439 15.208 +2.49 +135442 2.51 +135444 2.29 +65.2 +135447 2.43 +135449 6.167 +135451 6.169 +135453 6.168 +135455 79.29 +135457 58.28 +3.60 +3.63 +135461 58.28 +6.118 +2.44 +135465 58.28 +6.118 +135468 3.60 +65.2 +135471 2.54 +135473 2.58 +135475 2.45 +135477 5.24 +135479 5.23 +135481 6.211 +135483 6.205 +135485 6.212 +135487 6.197 +135489 6.202 +135491 5.10 +135493 3.41 +135495 4.6 +135497 4.22 +135499 4.29 +135501 6.53 +135503 87.78 +135505 9.20 +9.1 +135508 92.24 +3.34 +135511 92.24 +25.12 +92.24 +26.4 +13.93 +135519 59.23 +92.24 +79.21 +135523 92.24 +79.20 +13.96 +135529 67.130 +135533 27.27 +92.24 +57.203 +135537 92.24 +57.28 +89.25 +135542 83.30 +17.1 +135545 92.24 +25.251 +92.24 +24.90 +135550 25.138 +135552 25.142 +33.69 +22.9 +22.9 +92.24 +1.89 +92.24 +135560 92.24 +49.5 +6.167 +135564 6.169 +135566 79.29 +135568 49.29 +135570 6.189 +135572 2.29 +65.2 +135575 2.43 +135578 67.199 +20.41 +92.24 +59.18 +57.30 +135584 59.23 +54.28 +135587 59.23 +92.24 +135590 42.21 +1.73 11.1 54.27 +135593 54.30 +135595 59.7 +92.24 +1.69 +57.198 +135600 83.30 +17.1 +135603 33.83 +24.7 +92.24 +1.37 +92.24 +14.63 +135610 33.69 +135612 64.1 +92.24 +1.89 +92.24 +135618 15.215 +2.15 +135621 92.24 +8.10 +135625 33.83 +25.138 +135628 25.142 +33.69 +22.9 +22.9 +92.24 +1.89 +92.24 +135638 57.28 +59.23 +92.24 +135642 92.24 +6.41 +135645 92.24 +1.69 +135648 92.24 +57.35 +135653 67.199 +20.41 +25.122 +135658 1.11 +135660 92.24 +11.27 +135663 92.24 +53.74 +135666 92.24 +53.79 +135669 56.30 +92.24 +12.1 +92.24 +56.30 +135675 90.16 +135678 15.203 +135680 12.28 +76.11 +2.24 +64.12 +7.70 +135687 15.215 +135689 92.24 +1.70 +33.69 +135693 68.82 +15.215 +93.420 +92.24 +135698 1.89 +135702 27.27 +67.128 +135705 14.74 +6.85 +135708 14.84 +135710 6.88 +135712 6.91 +135715 24.52 +135718 67.128 +135720 59.24 +42.53 +59.24 +42.51 +135726 27.27 +135729 67.128 +135731 14.74 +7.68 +135735 24.52 +135738 67.128 +135740 14.36 +6.104 +135744 14.37 +135747 67.128 +135749 33.103 +10.56 +135752 10.57 +135755 24.52 +135758 67.128 +135760 92.24 +57.203 +135764 92.24 +87.41 +92.24 +1.39 +135770 92.24 +53.100 +135773 31.67 +59.23 +92.24 +11.55 +135780 27.1 +8.64 +53.79 +135784 11.27 +135786 59.23 +92.24 +20.72 +135790 92.24 +1.39 +135794 24.52 +64.12 +33.80 +135798 11.1 +135801 92.24 +1.11 +33.69 +33.363 +92.24 +21.26 +135808 92.24 +87.23 +135811 92.24 +76.1 +92.24 +12.1 +92.4 +135817 70.3 +135819 88.12 +92.24 +30.110 +135824 56.30 +92.24 +88.275 +92.24 +135830 88.266 +92.24 +1.39 +135834 92.24 +88.271 +135838 38.8 +92.24 +20.83 +92.24 +87.76 +135845 9.17 +135848 60.49 +33.69 +33.363 +135852 92.24 +1.37 +135855 15.101 +135857 92.24 +67.95 +92.24 +67.95 +135862 17.22 +92.24 +53.77 +92.24 +60.25 +60.13 +135869 92.24 +60.13 +12.32 +135873 53.56 +92.24 +12.1 +92.24 +17.12 +135879 92.24 +6.112 +33.69 +72.6 +33.363 +135885 33.103 +135887 92.24 +6.112 +15.40 +33.69 +33.354 +92.24 +12.1 +92.4 +59.23 +92.24 +87.76 +135899 92.24 +53.58 +135902 92.24 +87.58 +135905 92.24 +135908 24.52 +64.12 +33.80 +11.1 +135914 64.12 +14.74 +2.7 +135919 64.12 +14.74 +14.15 +78.16 +33.69 +33.363 +135926 37.64 +12.9{N:001} +92.24 +12.1 +92.4 +92.24 +12.7{N:001} +25.125 +135935 25.133 +135938 92.24 +33.357 +135943 92.24 +34.68 +92.24 +4.26 +135948 92.24 +10.54 +135951 77.3 +135957 49.5 +6.167 +14.50 +79.48 +135962 92.24 +6.167 +92.24 +88.14 +92.24 +11.27 +135970 33.69 +92.1 +33.61 +25.119 +92.24 +135976 92.24 + +92.24 +34.68 +92.24 +4.26 +33.315 +135984 33.69 +92.1 +135987 92.24 +33.98 +70.3 +92.24 +12.1 +135994 17.22 +83.33 +92.24 +8.49 +135999 53.56 +136002 33.69 +92.1 +13.134 +136007 87.81 +136010 92.24 +11.23 +136013 92.24 +136015 92.24 +33.264 +93.169a +92.24 +12.1 +53.56 +136022 92.24 +33.264 +93.169a +136026 92.24 +26.9 +92.24 +33.461 +136031 24.1 +92.24 +1.11 +79.110 +136036 91.13 +4.29 +79.27 +136040 92.24 +17.12 +136044 33.131 +31.87 +136047 70.3 +136050 88.13 +56.20 +136053 55.5 +136055 92.24 +8.23 +136058 2.4 +2.3 +136062 92.24 +8.10 +136065 6.196 +136068 33.126 +33.61 +136071 92.23 +29.6 +136077 49.3 +6.172 +47.11 47.16 47.17 +8.64 +136082 33.131 +92.24 +33.126 +136086 92.24 +33.100 +92.24 +12.1 +136091 92.24 +55.7 +92.24 +136095 92.24 +1.11 +15.156 +136100 4.29 +79.27 +49.1 +6.167 +79.27 +79.48 +136108 92.24 +8.19 +136111 15.40 +6.32 +79.95 +136117 19.3 +92.24 +11.55 +136122 37.57 +136125 37.53 +2.59 +136129 19.51 +92.24 +7.66 +92.24 +6.197 +92.24 +88.178 +92.24 +88.173 +92.24 +12.1 +92.24 +12.7{N:001} +136145 92.24 +6.172 +136149 92.24 +8.48 +136152 33.126 +33.61 +37.67 +37.67 +136157 12.9{N:001} +37.51 +136160 24.1 +136162 12.28 +17.1 +136165 92.24 +1.28 +136168 33.83 +136170 33.80 +136172 33.69 +59.23 +92.24 +4.38 +92.24 +15.245 +136179 1.10 +84.24 +15.123 +136183 92.24 + +92.24 +136187 92.24 +12.1 +136190 23.1 +8.63 +37.67 +136194 8.63 +55.15 +136197 8.63 +76.11 +136200 8.63 +4.29 +136203 92.24 +17.12 +136208 8.63 +59.23 +136211 87.84 +136213 87.76 +136215 87.58 +136219 24.1 +92.24 +4.4 +136223 92.24 +37.67 +92.24 +1.39 +136228 92.24 +55.7 +136231 15.123 +136233 92.24 +55.5 +136236 92.24 +17.12 +136239 92.24 +4.29 +136243 92.24 +55.7 +136247 18.3 +92.24 +4.4 +136253 92.24 +53.81 +92.24 +136257 92.24 +33.477 +83.33 +136263 31.8 +92.24 +57.125 +92.24 +33.482 +92.24 +4.4 +136271 92.24 +53.56 +92.24 +6.96 +136276 23.88 +15.215 +92.24 +60.11 +136281 92.24 +1.22 +92.24 +2.3 +92.24 +14.63 +136288 2.26 +136290 92.24 +63.21 +20.61 +136294 92.24 +6.32 +92.24 +17.12 +136299 92.24 +4.29 +92.24 +15.40 +136304 92.24 +8.19 +136308 59.23 +92.24 +4.38 +23.15 +136313 92.24 +8.63 +136317 24.1 +12.28 +15.107 +136321 92.24 +1.11 +136324 92.24 +6.220 +92.24 +1.20 +136329 6.16 +79.123 +136332 92.24 +8.30 +136336 37.110 +92.24 +4.54 +92.24 +4.52 +92.24 +67.98 +136345 12.34 +136347 92.24 +12.34 93.330 +136350 37.114 +136352 60.39 +67.167 +136355 15.215 +136358 92.24 +1.20 +136361 79.112 +136363 6.55 +83.49 +136368 31.8 +67.128 +92.24 +11.55 +67.119 +67.67 +92.24 +60.39 +67.167 +136379 71.34 +37.127 +136382 78.9 +67.78 +136385 24.1 +6.112 +136388 17.12 +136392 56.22 +136396 92.24 +26.4 +92.24 +20.80 +136401 92.24 +33.264 +93.169a +136406 92.24 +33.98 +92.24 +12.1 +136413 53.56 +92.24 +4.4 +69.7 +92.24 +6.96 +136422 57.125 +92.24 +33.482 +136426 92.24 +8.16 +136430 92.24 +8.30 +136434 23.93 +136436 37.64 +136438 92.24 +53.82 +60.39 +67.167 +92.24 +63.21 +92.24 +23.121 +136447 23.93 +67.119 +67.67 +92.24 +60.39 +67.167 +136454 92.24 +23.93 +92.24 +60.46 +25.119 +136460 88.24 +92.24 +90.83 +63.14 +136465 92.24 +23.93 +92.24 +60.46 +136471 92.24 +60.49 +23.99 +136476 76.12 +91.2 +136479 53.87 +92.24 +12.1 +136483 92.24 +53.82 +136486 37.64 +136489 92.24 +60.39 +67.167 +136494 67.67 +92.24 +60.39 +67.167 +37.127 +92.24 +12.34 93.330 +136502 92.24 +7.24 +136506 15.40 +31.8 +92.24 +11.55 +92.24 +136512 92.24 +60.13 +79.107 +92.24 +1.39 +92.24 +93.87 +136520 93.243 +15.125 +136524 92.24 +55.5 +136527 92.24 +60.2 +136530 64.12 +92.24 +2.28 +92.24 +1.69 +136536 15.101 +136538 92.24 +81.15 +92.24 +1.39 +136543 15.147 +92.24 +1.94 +92.24 +11.27 +136549 92.24 +1.89 +92.24 +25.104 +136554 15.107 +2.3 +136557 92.24 +1.11 +136560 20.45 +136563 92.24 +12.34 +92.24 +31.8 +136568 15.215 +136570 92.24 +1.22 +92.24 +2.5 +136575 2.26 +83.5 +136578 92.24 +4.4 +136581 92.24 +53.81 +136584 38.13 +67.92a +136587 67.92a +136589 92.24 +67.95 +92.24 +67.95 +136594 24.1 +6.112 +136597 79.27 +136599 92.24 +17.12 +136605 92.24 +85.26 +13.95 +92.24 +1.3 +136611 92.24 +1.3 +136614 80.1 +136616 27.27 +136619 24.1 +92.24 +23.121 +92.24 +136625 92.24 +87.58 +17.1 +83.33 +92.24 +6.112 +136632 6.64 +79.110 +136635 58.37 +6.64 +79.110 +136640 92.24 +23.88 +136643 56.20 +92.24 +23.121 +136647 92.24 +33.61 +136650 92.24 +6.64 +136653 92.24 +42.11 +136658 92.24 +1.70 +92.24 +23.121 +92.24 +136666 92.24 +23.99 +136669 92.24 +1.19 +136672 92.24 +23.121 +92.24 +136678 56.20 +59.27 +136681 92.24 +42.11 +136685 92.24 +23.99 +136688 92.24 +1.19 +15.215 +136692 92.24 +1.22 +92.24 +2.3 +136697 92.24 +23.99 +92.24 +60.49 +92.24 +1.22 +92.24 +2.3 +136710 27.1 +136712 92.24 +6.64 +92.24 +23.88 +33.61 +15.215 +136719 92.24 +1.22 +92.24 +2.3 +136724 24.1 +1.5 +58.71 +136728 1.39 +58.71 +136731 92.24 +60.46 +1.5 +136735 92.24 +60.46 +1.39 +13.93 +136740 92.24 +1.69 +136744 67.128 +136746 24.1 +92.24 +1.89 +92.24 +53.46 +93.480b +58.71 +15.107 +136755 92.24 +1.11 +136758 92.24 +12.1 +77.3 +64.12 +10.57 +79.12 +92.24 +10.53 +136768 24.52 +33.80 +136772 92.24 +6.112 +33.69 +91.13 +92.24 +7.17 +92.24 +12.1 +136781 92.24 +9.1 +136784 85.75 +136789 11.12 +136794 92.24 +12.1 +136800 47.18 +59.23 +8.73 +136804 92.24 +8.23 +136808 92.24 +23.99 +136812 67.128 +69.9 +25.142 +69.9 +25.138 +69.9 +24.77 +136821 67.128 +136823 92.24 +67.18 +13.93 +136827 33.69 +92.24 +17.12 +136831 92.24 +6.112 +91.13 +58.71 +136836 59.23 +136838 33.69 +33.61 +136842 92.24 +33.98 +31.87 +136846 73.2 +136849 33.69 +92.1 +13.107 +92.1 +92.24 +61.7 +136856 92.24 +61.18 +92.24 +67.65 +136861 92.24 +67.66 +92.1 +92.24 +23.39 +136868 92.24 +1.78 +92.24 +2.7 +92.24 +23.88 +57.85 +92.24 +39.57 +57.131 +136882 12.1 +136886 92.1 +36.39 +136889 92.24 +25.268 +136892 31.106 +136894 25.186 +136896 20.85 +136898 88.274 +136900 53.101 +136902 53.64 +136904 59.23 +92.24 +33.255 +92.24 +63.14 +136911 92.24 +1.22 +92.24 +14.63 +2.3 +136917 2.26 +136920 92.24 +23.99 +92.24 +60.49 +136928 92.24 +60.16 +12.28 +92.24 +136933 92.24 +60.16 +6.124 +92.24 +59.41 +92.24 +60.16 +22.13 +92.24 +61.13 +136944 33.70 +136946 92.1 +33.69 +84.24 +28.47 +136951 92.24 +10.57 +92.24 +10.54 +92.24 +4.26 +136958 15.202 +92.1 +136961 12.18 +136963 1.46 +136966 81.6 +136968 28.47 +92.1 +92.24 +1.89 +92.24 +53.46 +93.480b +15.107 +136977 92.24 +1.11 +136980 92.24 +12.1 +136983 92.24 +14.49 +92.24 +12.1 +92.24 +14.49 +136990 64.1 +2.29 +65.2 +64.12 +2.29 +2.30 +2.47 +136998 7.61 +137001 81.6 +137003 7.48 +60.21 +137007 92.24 +7.48 +12.28 +60.21 +137012 33.65 +33.126 +137016 92.24 +60.21 +10.2 11.15 +11.58 +93.182b +137022 82.1 +7.48 +60.12 +137027 82.3 +7.48 +60.12 +137032 82.4 +7.48 +60.12 +137037 82.2 +7.48 +60.12 +137041 92.24 +7.61 +92.24 +1.89 +137046 7.43 +60.21 +137051 60.21 +33.126 +92.24 +60.21 +53.74 +92.24 +4.26 +137059 92.24 +33.70 +137062 92.1 +137064 81.1 +6.213 +2.50 +137068 81.2 +92.24 +1.89 +137072 92.24 +7.48 +137076 92.24 +7.61 +137080 92.24 +1.89 +79.91 +85.3 +137085 92.24 +81.12 +137088 59.19 +92.24 +81.15 +137092 81.2 +92.24 +1.89 +92.24 +6.213 +78.51 +81.27 +60.21 +60.80 +92.24 +81.12 +137104 92.24 +81.15 +137107 92.24 +81.3 +137110 58.33 +137113 81.2 +92.24 +7.61 +137117 60.33 +60.27 +60.13 +81.25 +81.1 +9.1 +137125 12.28 +137127 92.24 +7.41 7.77 +92.24 +7.61 +137132 2.30 +137134 92.24 +1.89 +2.49 +79.48 +64.1 +6.222 +79.48 +92.24 +7.43 +92.24 +7.61 +92.24 +1.89 +58.28 +2.29 +65.2 +79.12 +92.24 +7.43 +92.24 +60.46 +2.30 +92.24 +60.49 +2.31 +92.24 +60.50 +2.32 +92.24 +60.51 +2.33 +92.24 +60.52 +2.35 +92.24 +60.53 +2.36 +92.24 +60.54 +2.37 +92.24 +60.55 +2.38 +92.24 +60.56 +2.39 +92.24 +60.57 +2.40 +92.24 +60.58 +2.41 +92.24 +60.59 +2.42 +137190 92.24 +60.21 +7.48 +60.21 +2.43 +89.91 +137197 59.27 +92.24 +7.48 +137203 2.43 +137205 92.24 +1.103 +92.24 +1.89 +2.49 +79.48 +64.12 +2.46 6.222 +79.24 +137215 7.15 +137217 24.1 +137221 92.24 +12.9{N:001} +92.24 +12.1 +92.24 +12.7{N:001} +137228 92.24 +4.26 +7.15 +137234 92.24 +1.89 +137238 57.40 +92.24 +1.28 +69.7 +92.24 +1.29 +137245 14.37 +137248 92.24 +79.18 +92.24 +12.1 +14.39 +137255 92.24 +6.104 +137258 92.24 +4.26 +137261 41.11 +92.24 +11.55 +137265 92.24 +14.36 +137269 92.24 +37.67 +92.24 +1.39 +15.187 +92.24 +87.23 +137280 92.24 +7.48 +137285 79.112 +67.186 +137288 14.59 +137291 83.2 +137293 15.187 +92.24 +87.23 +137297 92.24 +65.1 +92.24 +11.55 +137306 15.93 +137309 59.24 +53.39 +137312 92.24 +137314 25.187 +137316 33.254 +137319 92.24 +33.61 +137322 92.24 +6.64 +92.24 +23.88 +92.24 +4.26 +137329 28.47 +92.1 +1.76 +2.7 +23.88 +79.25 +64.12 +2.11 +15.40 +137339 92.24 +6.112 +92.24 +12.1 +137344 92.24 +4.26 +137347 83.10 +92.24 +1.103 +137352 92.24 +1.76 +84.9 +137356 84.10 +3.4 +23.88 +137360 23.199 3.33 +60.21 +137363 67.174 +59.27 +90.46 +92.24 +23.199 3.33 +137370 92.24 +3.51 +92.24 +3.4 +137375 23.139 +92.24 +11.55 +137379 59.24 +33.474 +137383 67.128 +137385 92.24 +6.112 +92.24 +12.1 +137390 92.24 +4.26 +137396 92.24 +87.76 +137399 53.14 +137402 24.1 +92.24 +8.18 +137407 92.24 +33.126 +137411 92.24 +8.16 +137415 14.59 +137418 67.128 +137422 57.40 +14.36 +6.104 +137426 14.36 +1.28 +137429 12.9{N:001} +92.24 +12.1 +14.39 +137436 37.64 +137438 92.24 +67.95 +92.24 +67.95 +137443 33.69 +92.1 +137446 92.24 +33.98 +31.87 +137450 73.2 +137452 92.24 +12.9{N:001} +92.24 +12.1 +92.24 +26.9 +92.24 +53.79 +15.66 +92.24 +12.28 +137464 28.47 +92.24 +87.76 +137469 13.107 +67.111 +67.111 +71.34 +137474 91.13 +137476 67.56 +25.119 +92.24 +36.19 +92.24 +33.98 +92.24 +33.460 +92.24 +6.64 +137487 92.1 +93.190c +92.24 +24.52 +137492 24.7 +137496 24.52 +137498 24.7 +17.22 +53.56 +83.33 +92.24 +8.49 +92.24 +12.28 +92.24 +28.47 +92.1 +137511 33.69 +92.1 +13.134 +137516 87.81 +137519 92.24 +11.25 +137522 92.24 +53.79 +137525 92.24 +36.19 +92.24 +33.98 +92.24 +6.64 +137532 92.24 +12.1 +53.56 +137536 33.69 +92.1 +137539 6.55 +92.24 +33.98 +92.24 +33.460 +92.24 +6.64 +137548 92.24 +67.145 +67.61 +137552 92.24 +88.22 +88.22 +67.128 +137557 92.24 +88.257 +88.258 +67.128 +137562 92.24 +88.12 +88.13 +137566 67.128 +137568 92.24 +88.24 +88.26 +67.128 +91.13 +137574 67.56 +137576 92.24 +38.14 +92.1 +137580 92.1 +38.16 +59.27 +89.86 +92.24 +42.11 +137588 92.1 +92.24 +61.7 +137592 92.24 +61.18 +92.24 +60.46 +137597 92.24 +61.13 +92.24 +67.65 +137602 92.24 +67.66 +25.119 +92.24 +47.8 +92.24 +6.174 +137612 92.24 +30.122 +137616 92.24 +3.4 +92.24 +23.88 +137621 92.24 +7.48 +15.93 +137625 92.24 +1.89 +83.20 +92.24 +88.122 88.282 +137631 92.24 +53.101 +137634 92.24 +88.274 +137637 92.24 +20.85 +137640 92.24 +53.64 +137643 59.23 +25.103 +137647 33.254 +92.1 +93.169a +15.66 +92.24 +12.28 +92.1 +33.262 +137658 92.24 +11.32 +92.1 +137662 92.24 +10.33 +137665 92.24 +10.32 +93.91 +92.24 +1.30 1.33 +92.24 +14.50 +92.24 +1.33 67.188 +137675 92.24 +12.18 +137678 92.24 +10.57 +33.69 +137683 92.24 +24.52 +33.69 +137688 92.24 +23.39 +137691 92.24 +25.1 +57.125 +2.7 +23.88 +57.85 +33.262 +92.1 +59.23 +92.24 +24.52 +92.24 +33.98 +92.24 +33.460 +92.24 +6.64 +137711 59.72 90.87 +137714 90.87 +92.24 +12.1 +137719 92.24 +22.13 +92.24 +33.61 +137724 92.24 +6.64 +137730 68.47 +137732 92.24 +33.98 +92.24 +6.64 +92.24 +33.460 +137739 85.44 +92.24 +12.1 +92.24 +63.14 +137746 92.24 +3.4 +92.24 +23.88 +137752 92.24 +1.89 +92.24 +53.46 +92.24 +33.61 +137759 92.24 +6.64 +137762 33.69 +92.24 +33.262 +137766 69.1 +137768 67.56 +72.6 +137771 12.9{N:001} +93.169a +92.24 +88.66 +92.24 +12.9{N:001} +93.169a +137779 59.23 diff --git a/tf/0.1.1/mood.tf b/tf/0.1.1/mood.tf new file mode 100644 index 0000000..e0401e0 --- /dev/null +++ b/tf/0.1.1/mood.tf @@ -0,0 +1,28371 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=verbal mood +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +10 indicative +15 indicative +20 indicative +29 indicative +40 indicative +45 indicative +50 indicative +55 indicative +60 indicative +65 indicative +73 indicative +81 indicative +86 indicative +93 indicative +102 indicative +107 indicative +112 indicative +117 indicative +122 indicative +127 indicative +132 indicative +137 indicative +142 indicative +147 indicative +152 indicative +157 indicative +162 indicative +179 indicative +184 indicative +189 indicative +194 indicative +199 indicative +204 indicative +209 indicative +214 indicative +219 indicative +224 indicative +229 indicative +234 indicative +242 indicative +245 participle +283 indicative +participle +293 infinitive +295 indicative +298 participle +308 participle +311 participle +313 infinitive +indicative +316 infinitive +321 participle +imperative +327 indicative +329 participle +334 subjunctive +infinitive +344 participle +348 indicative +350 indicative +353 indicative +360 indicative +371 indicative +373 subjunctive +375 participle +381 participle +imperative +387 indicative +389 indicative +392 indicative +398 indicative +participle +407 participle +411 indicative +413 indicative +419 indicative +425 indicative +429 indicative +432 indicative +440 participle +450 imperative +454 indicative +457 participle +459 indicative +461 participle +466 indicative +474 indicative +infinitive +478 participle +482 indicative +489 participle +497 indicative +503 subjunctive +506 indicative +514 indicative +525 indicative +533 indicative +participle +536 indicative +545 participle +548 indicative +554 participle +557 participle +561 indicative +participle +imperative +570 subjunctive +imperative +575 participle +subjunctive +580 participle +583 indicative +585 imperative +589 indicative +593 indicative +596 participle +indicative +600 indicative +604 participle +607 indicative +612 participle +616 indicative +625 participle +indicative +629 participle +633 indicative +642 participle +646 infinitive +652 indicative +658 participle +660 imperative +663 indicative +668 participle +participle +imperative +678 imperative +682 imperative +686 subjunctive +689 indicative +691 infinitive +695 infinitive +699 participle +indicative +709 indicative +713 indicative +720 subjunctive +722 participle +728 participle +731 indicative +737 participle +739 indicative +743 indicative +746 participle +indicative +768 indicative +773 indicative +775 participle +780 participle +783 indicative +790 participle +796 indicative +infinitive +800 indicative +802 participle +805 imperative +808 indicative +815 participle +participle +imperative +825 imperative +830 indicative +832 participle +839 participle +indicative +848 indicative +853 participle +856 indicative +864 indicative +866 infinitive +868 participle +871 indicative +878 participle +indicative +882 participle +885 subjunctive +887 participle +893 indicative +899 indicative +903 participle +909 participle +imperative +912 indicative +919 indicative +921 participle +926 participle +928 participle +932 imperative +937 imperative +945 indicative +963 indicative +969 indicative +984 indicative +991 participle +996 participle +1002 participle +1006 indicative +1011 indicative +1013 infinitive +1016 participle +1019 imperative +1026 subjunctive +infinitive +1031 indicative +1035 indicative +1038 indicative +1045 infinitive +1058 indicative +1063 participle +1066 indicative +1070 indicative +1074 indicative +1083 participle +1086 indicative +1089 indicative +1093 infinitive +1096 indicative +1110 indicative +1115 indicative +1125 indicative +1129 indicative +1142 infinitive +1147 indicative +1149 participle +1152 indicative +1155 infinitive +1158 indicative +1162 participle +1165 indicative +1167 imperative +1171 participle +indicative +1174 infinitive +1178 indicative +1181 participle +1185 indicative +1190 imperative +indicative +1195 indicative +1198 participle +1201 participle +1205 imperative +1210 participle +1212 indicative +1220 indicative +1224 indicative +1231 infinitive +1236 participle +1243 indicative +1245 participle +1247 participle +indicative +1251 indicative +1255 imperative +1261 subjunctive +1264 participle +indicative +indicative +1271 indicative +1278 participle +1283 indicative +1292 indicative +1300 indicative +1303 indicative +1307 imperative +1311 indicative +1316 indicative +1322 indicative +1326 subjunctive +1332 indicative +1337 indicative +1339 indicative +1345 indicative +1354 indicative +1366 indicative +1371 indicative +1373 participle +subjunctive +1377 indicative +1381 imperative +1384 indicative +1389 indicative +1393 indicative +1395 indicative +1400 imperative +1402 indicative +1404 indicative +1407 participle +1410 indicative +indicative +1416 participle +1419 participle +indicative +1431 subjunctive +1433 participle +1438 participle +1455 participle +1460 indicative +1463 participle +1470 indicative +1474 indicative +1477 infinitive +1479 infinitive +imperative +1482 indicative +1488 participle +1494 indicative +1499 participle +1506 participle +1512 indicative +1515 indicative +1517 imperative +1521 indicative +1528 participle +1531 indicative +1534 participle +1536 indicative +1557 participle +1562 indicative +1567 participle +1574 indicative +1577 indicative +1582 participle +1588 participle +1594 participle +1604 indicative +1613 indicative +1618 participle +1623 participle +participle +1626 participle +1630 indicative +1633 indicative +1651 participle +1654 indicative +1659 participle +1661 indicative +1667 participle +1671 indicative +1673 participle +1681 indicative +1688 participle +1691 indicative +1697 indicative +1702 participle +1704 participle +1709 indicative +1715 indicative +1725 indicative +1733 indicative +1736 participle +1741 indicative +1747 indicative +1749 subjunctive +1752 subjunctive +1754 subjunctive +1759 participle +1762 imperative +1764 imperative +1775 indicative +1782 indicative +1791 subjunctive +1794 indicative +1797 indicative +1801 participle +1803 infinitive +1808 indicative +1814 indicative +1816 infinitive +1819 participle +1821 indicative +1824 indicative +1834 indicative +1841 imperative +1849 subjunctive +1855 subjunctive +1864 subjunctive +1866 indicative +infinitive +1874 indicative +infinitive +1877 infinitive +1880 indicative +1884 subjunctive +1897 subjunctive +1904 subjunctive +1908 subjunctive +1916 subjunctive +1921 indicative +1930 subjunctive +1932 subjunctive +1935 indicative +1942 indicative +1947 subjunctive +1958 subjunctive +1964 indicative +1966 indicative +1970 indicative +1974 subjunctive +1976 indicative +1981 indicative +1986 participle +1991 indicative +1997 subjunctive +2003 indicative +2009 subjunctive +2012 indicative +2020 subjunctive +2028 subjunctive +2033 indicative +2037 imperative +2046 imperative +2048 imperative +2054 participle +imperative +2059 imperative +participle +2067 indicative +2076 subjunctive +2089 indicative +2091 indicative +2095 subjunctive +2099 subjunctive +2103 indicative +2105 indicative +2107 indicative +2110 indicative +2115 participle +2119 infinitive +2122 indicative +2135 indicative +2137 imperative +2140 imperative +2144 indicative +2147 subjunctive +2158 subjunctive +2167 indicative +2169 imperative +2172 imperative +2176 indicative +2179 subjunctive +2192 subjunctive +2194 indicative +2197 subjunctive +2201 imperative +2206 indicative +2211 participle +2218 indicative +2220 infinitive +2224 participle +subjunctive +indicative +2228 indicative +2230 indicative +2234 indicative +2236 indicative +2244 indicative +2247 infinitive +2254 indicative +2263 indicative +2272 indicative +2282 subjunctive +2285 indicative +2288 infinitive +2293 imperative +2308 indicative +indicative +2311 indicative +2321 indicative +2324 infinitive +2330 indicative +2336 imperative +2343 participle +2345 infinitive +2350 infinitive +imperative +2359 indicative +2362 imperative +2367 participle +2369 imperative +2372 participle +2375 infinitive +2377 subjunctive +indicative +2380 indicative +indicative +2386 indicative +2392 indicative +2394 imperative +2399 imperative +2402 participle +2405 subjunctive +2417 indicative +2423 indicative +2430 subjunctive +2432 participle +2436 indicative +2443 indicative +2446 subjunctive +2453 indicative +2460 indicative +2462 indicative +2472 indicative +2474 imperative +2479 infinitive +2485 infinitive +2492 indicative +2503 subjunctive +2506 subjunctive +2512 indicative +2521 subjunctive +2526 indicative +2528 indicative +2534 participle +2537 imperative +2542 indicative +2547 subjunctive +2559 participle +2563 indicative +2567 subjunctive +2569 indicative +2574 indicative +2584 participle +infinitive +2587 subjunctive +2591 indicative +2593 indicative +2600 subjunctive +imperative +2607 participle +2611 imperative +2624 participle +2628 indicative +2631 participle +2633 subjunctive +2638 indicative +2644 indicative +2647 subjunctive +2650 indicative +2656 indicative +2660 infinitive +2664 imperative +2672 imperative +2676 imperative +2680 imperative +2695 imperative +2699 imperative +2707 indicative +2713 subjunctive +2718 imperative +2725 subjunctive +2731 indicative +2742 subjunctive +2749 indicative +2755 subjunctive +2757 imperative +2763 indicative +2768 subjunctive +2771 participle +2773 indicative +2775 indicative +2781 participle +imperative +2790 imperative +2793 subjunctive +2796 participle +2810 participle +2814 indicative +2817 imperative +2827 indicative +2831 indicative +2833 indicative +2835 imperative +2845 indicative +2850 indicative +2852 indicative +2855 indicative +2860 indicative +2869 indicative +2874 subjunctive +2884 indicative +2891 subjunctive +2897 indicative +2906 indicative +2911 indicative +2914 infinitive +2919 indicative +2923 indicative +2926 indicative +2930 indicative +2932 indicative +2934 infinitive +2939 indicative +2942 imperative +2947 subjunctive +2950 subjunctive +2956 subjunctive +2961 indicative +2969 imperative +2977 indicative +2979 indicative +2981 indicative +2990 indicative +2995 indicative +3001 participle +indicative +infinitive +3014 indicative +imperative +3021 indicative +3023 indicative +3025 indicative +3027 indicative +3037 indicative +3048 participle +3053 participle +3057 indicative +3065 subjunctive +participle +3068 subjunctive +3071 subjunctive +3074 subjunctive +3080 indicative +3082 indicative +3089 indicative +3093 imperative +3104 indicative +3108 subjunctive +3115 indicative +3124 imperative +3127 subjunctive +3132 indicative +indicative +3138 indicative +indicative +3143 indicative +3161 indicative +3164 indicative +3168 imperative +subjunctive +3177 imperative +3185 imperative +3195 indicative +infinitive +3206 subjunctive +3212 subjunctive +3221 indicative +3228 participle +subjunctive +3231 imperative +3233 indicative +3235 imperative +3237 indicative +imperative +3240 indicative +3245 participle +indicative +3249 participle +indicative +3253 participle +indicative +3256 indicative +3262 indicative +3269 indicative +3274 indicative +3277 indicative +3283 participle +indicative +3287 infinitive +3300 indicative +3303 participle +3309 subjunctive +3311 subjunctive +3318 imperative +3322 indicative +3328 imperative +3342 participle +3348 indicative +3350 participle +3358 participle +3362 participle +3368 indicative +3370 participle +3372 imperative +3377 indicative +3385 indicative +3392 indicative +3395 indicative +3409 indicative +3416 indicative +3418 indicative +3423 infinitive +3429 infinitive +3433 participle +3436 indicative +3440 indicative +3446 indicative +3451 participle +3455 indicative +3463 participle +3474 indicative +3486 indicative +3492 indicative +3499 indicative +3502 indicative +3506 indicative +3508 imperative +3512 participle +3518 indicative +3524 indicative +3526 indicative +3530 indicative +3538 indicative +3542 indicative +3546 indicative +3550 indicative +3556 indicative +3558 indicative +3565 participle +3572 participle +3574 indicative +3578 indicative +3586 indicative +3590 indicative +3594 indicative +3598 indicative +3603 indicative +3605 indicative +3611 indicative +3613 indicative +3619 indicative +3627 indicative +participle +3632 participle +3640 participle +3645 indicative +3650 imperative +3652 participle +indicative +3655 participle +3658 subjunctive +indicative +3661 infinitive +3663 participle +3666 indicative +3668 participle +indicative +imperative +3673 indicative +3678 indicative +3682 imperative +3684 subjunctive +3686 imperative +3688 imperative +3692 imperative +3696 indicative +3702 participle +3706 indicative +3709 participle +3712 participle +3717 indicative +3723 participle +indicative +3727 participle +indicative +3731 participle +3734 indicative +3737 indicative +3744 subjunctive +3747 imperative +3750 indicative +3757 indicative +3761 participle +3766 indicative +3768 imperative +3770 indicative +3773 imperative +3775 indicative +3780 imperative +3783 indicative +3785 participle +3788 indicative +3790 indicative +3792 participle +3794 indicative +3803 indicative +3805 indicative +3813 indicative +3815 indicative +3832 indicative +3839 indicative +3848 indicative +3853 imperative +3855 indicative +imperative +3859 indicative +3869 participle +3874 indicative +3878 participle +3880 participle +3882 indicative +3887 indicative +3892 indicative +3894 indicative +3898 participle +indicative +3901 participle +3904 indicative +3912 participle +indicative +3915 subjunctive +3917 participle +3922 participle +3927 indicative +3931 indicative +3935 participle +3939 indicative +infinitive +3945 participle +3948 indicative +3951 indicative +3955 subjunctive +3957 indicative +3964 indicative +3977 indicative +3981 subjunctive +3986 indicative +3989 imperative +3992 infinitive +3994 infinitive +4001 indicative +4003 imperative +4006 imperative +4009 infinitive +4014 participle +4019 indicative +4025 imperative +4028 indicative +4035 infinitive +4041 indicative +4043 participle +indicative +4046 participle +4048 imperative +indicative +4051 indicative +4055 indicative +4058 participle +indicative +4066 indicative +4072 indicative +participle +4075 indicative +4085 indicative +4087 participle +4097 indicative +4100 participle +4104 participle +4109 infinitive +4111 infinitive +4117 imperative +indicative +participle +4127 indicative +4131 infinitive +4134 indicative +4141 participle +4145 indicative +4147 participle +4149 indicative +4151 imperative +4159 indicative +4161 imperative +4164 participle +indicative +4170 imperative +indicative +4182 indicative +4188 participle +indicative +4191 participle +4195 indicative +4200 participle +4202 imperative +4206 indicative +4212 participle +4214 indicative +4216 subjunctive +4222 participle +4225 indicative +4227 indicative +4233 imperative +indicative +4239 participle +4243 participle +4247 indicative +4250 imperative +4252 indicative +4257 imperative +4261 indicative +4265 indicative +4269 participle +4273 indicative +4276 indicative +4284 indicative +4286 infinitive +indicative +4292 infinitive +imperative +4295 imperative +4298 subjunctive +4301 indicative +4309 infinitive +4312 indicative +4315 imperative +imperative +4321 imperative +4327 participle +indicative +4334 participle +4337 indicative +4339 indicative +4343 participle +4349 participle +4353 indicative +4355 participle +4360 participle +4362 indicative +4364 imperative +4367 participle +indicative +4371 indicative +4373 participle +4378 imperative +4383 participle +indicative +4392 participle +4395 indicative +4406 indicative +4412 participle +indicative +4417 indicative +4419 participle +4423 participle +4425 participle +imperative +4428 indicative +4430 indicative +4436 indicative +infinitive +4442 indicative +4447 participle +4454 indicative +4460 indicative +4462 indicative +4467 indicative +4472 infinitive +4477 indicative +4481 indicative +4484 subjunctive +4491 indicative +4494 indicative +4502 indicative +4512 indicative +4514 indicative +4523 indicative +4529 indicative +4533 indicative +4535 indicative +4543 indicative +4546 participle +4548 imperative +4551 participle +indicative +4554 participle +4560 indicative +4562 participle +imperative +4570 indicative +4572 participle +4575 indicative +4582 imperative +4584 participle +4587 participle +4589 indicative +4596 indicative +4601 subjunctive +4605 indicative +4609 participle +4611 participle +4613 indicative +imperative +4619 indicative +4622 indicative +4632 participle +4639 participle +4645 participle +indicative +imperative +4650 indicative +4654 indicative +4656 indicative +4660 indicative +4663 participle +indicative +4669 indicative +4673 indicative +4683 participle +4687 indicative +4690 participle +4692 participle +imperative +4698 participle +4702 indicative +4707 indicative +4711 indicative +4713 indicative +4715 infinitive +indicative +4721 indicative +4725 participle +4730 imperative +4733 indicative +4738 indicative +4742 participle +imperative +4745 imperative +4748 participle +indicative +4758 participle +imperative +indicative +4763 participle +4765 participle +4768 indicative +4772 indicative +4775 participle +4777 indicative +4785 indicative +4791 indicative +4795 indicative +4804 participle +4810 participle +4816 participle +4823 participle +4826 indicative +4830 indicative +participle +4833 participle +4837 participle +4840 indicative +4853 imperative +4859 subjunctive +4866 participle +4871 indicative +4877 infinitive +4880 infinitive +4892 indicative +4897 participle +4937 participle +4942 indicative +4945 participle +4947 participle +4952 subjunctive +4958 subjunctive +4960 imperative +4966 participle +4970 participle +imperative +participle +4974 indicative +4979 participle +imperative +4982 imperative +4984 imperative +4986 imperative +4988 indicative +4990 imperative +4992 subjunctive +5027 subjunctive +imperative +5033 indicative +5035 imperative +5038 subjunctive +5040 participle +5044 imperative +5049 subjunctive +5053 imperative +5062 subjunctive +5069 imperative +5074 subjunctive +5077 subjunctive +5081 participle +5089 imperative +5096 indicative +5099 indicative +5111 imperative +5113 indicative +5121 imperative +5132 imperative +5137 indicative +5146 indicative +5154 indicative +5165 subjunctive +5168 subjunctive +5172 subjunctive +5174 indicative +5181 subjunctive +5185 indicative +5187 participle +5195 participle +5199 indicative +5208 indicative +5213 indicative +5216 indicative +participle +5226 participle +5230 indicative +5233 subjunctive +5239 imperative +5245 indicative +5249 subjunctive +5255 subjunctive +5261 indicative +5276 subjunctive +5292 indicative +5300 imperative +5304 indicative +participle +5308 indicative +5313 indicative +5315 indicative +5320 imperative +5329 indicative +imperative +5336 imperative +5339 participle +5344 participle +5347 infinitive +5349 imperative +5352 participle +5357 infinitive +5364 indicative +5370 indicative +5386 participle +indicative +5390 imperative +5393 indicative +5398 indicative +5404 indicative +5419 subjunctive +5424 indicative +5436 subjunctive +5438 indicative +infinitive +5445 indicative +infinitive +5451 indicative +infinitive +5478 participle +5485 indicative +5490 participle +5497 indicative +5503 indicative +5508 indicative +5512 indicative +5516 participle +5520 indicative +5524 participle +5530 indicative +5533 participle +5536 indicative +5540 participle +indicative +5543 participle +5546 participle +5553 indicative +5556 participle +5563 indicative +5567 subjunctive +5579 indicative +5583 subjunctive +5588 indicative +5590 indicative +5593 participle +5598 indicative +5601 infinitive +5603 infinitive +5611 participle +5619 participle +5624 indicative +5627 indicative +5629 participle +5632 indicative +5634 participle +5637 indicative +5639 participle +imperative +5643 indicative +5645 indicative +5647 indicative +5650 indicative +5652 indicative +5655 indicative +5658 indicative +5661 indicative +5664 indicative +5668 subjunctive +5673 participle +indicative +5677 infinitive +5683 infinitive +indicative +5691 participle +5694 infinitive +indicative +5699 participle +imperative +5704 participle +5712 indicative +5714 infinitive +5716 indicative +5722 indicative +5725 indicative +imperative +5728 indicative +5736 indicative +5743 indicative +5746 indicative +5764 indicative +5778 indicative +5781 indicative +5792 indicative +5795 indicative +infinitive +5798 indicative +5801 participle +infinitive +5804 participle +5806 imperative +5809 indicative +5814 indicative +5816 participle +5821 participle +5824 participle +indicative +5829 indicative +indicative +5833 indicative +5835 indicative +5838 participle +5840 participle +5842 indicative +5844 indicative +indicative +5850 participle +5852 participle +5854 indicative +imperative +5865 indicative +5873 indicative +infinitive +5879 indicative +5886 indicative +5899 indicative +5903 participle +5912 indicative +5914 indicative +5920 indicative +5932 indicative +5935 indicative +5940 indicative +5944 participle +5948 indicative +5953 indicative +5959 indicative +5969 participle +5972 indicative +indicative +5983 indicative +5990 indicative +5999 indicative +6004 indicative +6011 indicative +6022 indicative +6030 infinitive +subjunctive +6034 imperative +6039 participle +6041 participle +6043 indicative +6045 imperative +6052 imperative +6056 indicative +6063 indicative +6078 indicative +6083 indicative +6095 indicative +6097 indicative +infinitive +6101 infinitive +6105 participle +indicative +6108 imperative +6112 indicative +6114 infinitive +6116 indicative +6121 indicative +6124 indicative +6126 indicative +6129 indicative +6135 indicative +6146 indicative +6148 infinitive +6150 participle +indicative +6164 indicative +6178 indicative +6181 indicative +6183 indicative +6189 indicative +6193 indicative +6195 indicative +6197 indicative +6203 indicative +6207 indicative +6216 participle +6218 indicative +6224 imperative +6227 participle +6230 indicative +6232 participle +6234 indicative +6237 infinitive +6239 subjunctive +6243 indicative +6246 indicative +6251 indicative +6256 subjunctive +6263 indicative +6266 indicative +6269 indicative +6273 indicative +6277 infinitive +6279 indicative +6282 imperative +6287 indicative +6289 indicative +6295 participle +6299 indicative +6304 subjunctive +6308 participle +indicative +6312 indicative +6316 indicative +6320 indicative +6326 subjunctive +6328 subjunctive +6330 participle +6335 participle +imperative +6341 indicative +6346 indicative +6350 indicative +6360 indicative +6362 indicative +6364 indicative +6366 indicative +6375 participle +6377 indicative +6380 participle +6382 indicative +6385 subjunctive +6395 indicative +6397 indicative +6399 participle +6404 indicative +6409 infinitive +6411 infinitive +6413 indicative +6418 indicative +6421 indicative +6428 participle +indicative +6432 indicative +6444 participle +6448 indicative +6452 participle +6455 indicative +6461 participle +6465 indicative +6472 indicative +6475 indicative +6478 indicative +6487 indicative +6495 indicative +6501 indicative +6508 indicative +6512 indicative +6521 indicative +6523 infinitive +6533 infinitive +6537 subjunctive +6545 indicative +6548 participle +6553 indicative +6557 participle +6560 indicative +6563 indicative +6569 indicative +6578 indicative +6582 subjunctive +6589 indicative +6594 subjunctive +6601 indicative +6611 participle +6613 imperative +6623 imperative +6638 indicative +6642 indicative +6644 infinitive +6646 participle +6655 indicative +6663 indicative +6673 indicative +6676 indicative +6683 indicative +6686 indicative +6698 indicative +6704 indicative +6706 indicative +6713 participle +6715 indicative +6719 infinitive +6722 participle +indicative +6730 indicative +6734 indicative +6745 indicative +6758 indicative +6775 indicative +6784 indicative +6787 indicative +6793 imperative +6799 indicative +6808 indicative +6811 indicative +6817 infinitive +6822 imperative +6831 subjunctive +6835 indicative +6839 participle +6843 indicative +6845 indicative +6850 indicative +6852 indicative +6854 participle +indicative +participle +6858 participle +6860 participle +6862 indicative +6864 indicative +6873 participle +indicative +6877 indicative +6887 indicative +6896 participle +6899 imperative +6906 indicative +6908 participle +6910 infinitive +6912 indicative +6915 imperative +6924 indicative +participle +6927 infinitive +6930 participle +indicative +6933 participle +6936 indicative +6942 indicative +6947 participle +6955 indicative +imperative +6967 subjunctive +6983 indicative +6990 participle +6993 indicative +6998 indicative +7007 participle +infinitive +7016 indicative +7018 indicative +7023 participle +imperative +indicative +7027 participle +7029 infinitive +7033 infinitive +7037 indicative +7042 participle +7045 indicative +7049 indicative +7055 indicative +7060 indicative +7064 infinitive +7069 participle +indicative +7075 infinitive +7077 indicative +7080 indicative +7085 indicative +7089 indicative +7093 indicative +7100 indicative +7112 participle +7114 imperative +7116 participle +7119 indicative +7125 indicative +7129 participle +indicative +7133 indicative +infinitive +7144 indicative +7147 indicative +indicative +7151 indicative +7155 indicative +7158 indicative +indicative +7167 indicative +7169 participle +7171 indicative +7173 participle +7175 indicative +7177 indicative +7179 indicative +7185 participle +7187 indicative +7191 subjunctive +7193 participle +indicative +7198 subjunctive +7200 indicative +7210 indicative +7215 indicative +7218 subjunctive +7224 subjunctive +7228 subjunctive +7230 subjunctive +7232 indicative +7240 indicative +7246 indicative +7249 indicative +7256 indicative +infinitive +7259 indicative +7262 indicative +7264 infinitive +7266 indicative +7269 indicative +7272 imperative +7276 participle +7278 participle +7285 participle +indicative +7290 indicative +7292 participle +7298 indicative +7303 participle +7309 participle +7311 indicative +7315 participle +7320 participle +7324 indicative +7330 indicative +7332 participle +7340 indicative +7346 participle +7348 indicative +7352 participle +7363 indicative +7368 indicative +7375 participle +7377 indicative +7381 participle +7383 participle +7386 indicative +7389 indicative +7400 indicative +7402 participle +indicative +7409 participle +7419 infinitive +7422 indicative +7427 indicative +7434 indicative +7437 indicative +7442 indicative +7444 indicative +7449 participle +7454 indicative +7460 indicative +7467 indicative +7471 indicative +7476 indicative +7481 indicative +7483 indicative +participle +subjunctive +7489 indicative +7493 participle +7496 subjunctive +7501 imperative +infinitive +7512 indicative +7515 imperative +7520 imperative +7526 infinitive +7531 imperative +7538 indicative +7540 participle +7542 indicative +7550 participle +7552 indicative +7560 indicative +7566 subjunctive +7570 indicative +7572 indicative +7575 infinitive +7581 infinitive +7588 indicative +7591 indicative +7598 participle +7600 indicative +7607 indicative +7611 indicative +7622 indicative +7625 subjunctive +7627 participle +7631 participle +indicative +7638 indicative +participle +7643 participle +7646 indicative +7651 indicative +7656 participle +imperative +7667 participle +indicative +7670 participle +7674 indicative +7682 indicative +7690 indicative +7698 indicative +7707 participle +7709 indicative +7717 indicative +7722 indicative +7725 indicative +7730 indicative +7732 indicative +7738 indicative +7747 indicative +7757 participle +7761 indicative +7769 indicative +7780 indicative +7791 participle +7793 imperative +7795 indicative +7801 participle +7806 participle +7808 indicative +7814 indicative +7816 indicative +7818 indicative +7820 indicative +7826 indicative +7832 participle +7836 participle +7840 participle +indicative +7844 indicative +7846 indicative +7850 indicative +7856 participle +7864 participle +7867 indicative +participle +7873 participle +indicative +7883 indicative +7885 indicative +7891 indicative +7895 indicative +7903 indicative +7911 indicative +7919 indicative +7922 indicative +7927 indicative +7933 participle +7939 indicative +7943 indicative +7952 indicative +7954 indicative +7960 indicative +7963 participle +7968 indicative +7975 infinitive +7978 infinitive +7989 indicative +7998 indicative +8019 indicative +8026 indicative +8032 indicative +8035 indicative +8050 indicative +8062 indicative +8070 indicative +8075 indicative +8080 indicative +8089 indicative +8095 participle +8098 indicative +8102 indicative +8112 indicative +8117 indicative +8119 infinitive +8122 participle +8124 infinitive +indicative +8132 indicative +8137 participle +indicative +8147 indicative +8153 indicative +8155 infinitive +8158 subjunctive +8161 participle +8166 indicative +imperative +8178 participle +8186 participle +indicative +infinitive +8190 participle +indicative +8197 indicative +8204 indicative +8208 indicative +8213 participle +8217 indicative +8221 indicative +8224 participle +indicative +8229 participle +8232 indicative +8242 participle +8245 indicative +8252 participle +indicative +8257 indicative +8261 indicative +8267 participle +indicative +8272 participle +8274 indicative +8281 indicative +8283 imperative +8287 participle +8291 subjunctive +8297 indicative +8301 indicative +infinitive +imperative +8306 infinitive +8309 indicative +8312 indicative +8323 indicative +imperative +8329 participle +8332 infinitive +8336 participle +8344 participle +8348 indicative +8350 participle +indicative +8362 indicative +8365 indicative +8367 indicative +8369 participle +8377 participle +indicative +8388 indicative +8391 infinitive +8396 infinitive +8403 subjunctive +8407 participle +8410 indicative +8416 infinitive +8419 participle +8421 indicative +8432 indicative +participle +8438 indicative +8447 indicative +8450 participle +8457 participle +8462 participle +indicative +participle +8467 indicative +8472 indicative +8475 indicative +8479 participle +imperative +8482 indicative +8484 imperative +8486 participle +8490 indicative +8494 indicative +imperative +8497 infinitive +8505 indicative +imperative +8508 participle +8513 indicative +8518 indicative +8523 participle +8526 indicative +8528 participle +infinitive +indicative +participle +8533 imperative +8539 participle +8542 indicative +8545 indicative +8550 indicative +8552 participle +8557 indicative +8565 indicative +8567 participle +8571 indicative +8573 participle +indicative +8581 participle +8588 indicative +8595 indicative +8600 participle +8602 indicative +8606 subjunctive +8614 indicative +indicative +8617 indicative +8625 participle +8631 indicative +8638 indicative +8643 subjunctive +8646 participle +indicative +8653 indicative +8665 indicative +imperative +8674 participle +8679 imperative +8682 indicative +8685 subjunctive +8696 subjunctive +8699 indicative +8708 indicative +8719 indicative +8723 participle +8730 indicative +8736 indicative +8741 indicative +8743 participle +8748 participle +8751 indicative +8753 imperative +8755 imperative +8758 participle +8762 indicative +8767 participle +8772 indicative +8776 participle +8779 indicative +8781 indicative +8785 participle +8788 indicative +8791 participle +indicative +8797 indicative +8803 indicative +imperative +8806 indicative +8814 subjunctive +8818 indicative +8820 participle +8823 indicative +8825 imperative +8831 indicative +8836 indicative +8838 indicative +8842 participle +8849 indicative +8853 indicative +8856 participle +8863 indicative +8865 indicative +8872 indicative +8882 indicative +8884 participle +8891 infinitive +8893 indicative +8897 participle +8901 indicative +8909 imperative +8916 participle +indicative +participle +imperative +8928 indicative +8932 indicative +8936 participle +8940 indicative +8942 participle +imperative +8946 indicative +8951 participle +indicative +8954 indicative +8961 participle +8966 participle +indicative +8969 participle +8971 imperative +8975 participle +indicative +8978 indicative +8980 infinitive +8986 infinitive +8991 indicative +8998 indicative +9003 participle +9011 participle +9014 indicative +9022 imperative +9025 indicative +9027 indicative +9036 participle +9040 indicative +9047 participle +9051 indicative +9054 indicative +9058 participle +9069 indicative +9076 indicative +9081 infinitive +participle +9084 participle +9089 participle +9092 participle +9094 indicative +9101 participle +9105 indicative +indicative +9114 indicative +9118 indicative +9120 subjunctive +9122 infinitive +9126 indicative +9129 subjunctive +9134 indicative +9145 infinitive +9149 indicative +9155 indicative +9158 indicative +9164 participle +9167 infinitive +9171 indicative +9179 participle +indicative +9182 indicative +9191 indicative +9194 indicative +9197 participle +9203 indicative +9206 participle +indicative +9215 participle +9218 indicative +9223 indicative +9229 participle +9234 participle +indicative +9241 infinitive +9245 participle +indicative +9249 participle +indicative +9253 indicative +9261 indicative +participle +9270 infinitive +indicative +9278 indicative +9284 indicative +9288 indicative +9296 participle +9298 indicative +9302 participle +9306 indicative +9308 infinitive +9312 indicative +9314 imperative +9316 imperative +9326 indicative +9329 participle +9333 indicative +9335 participle +9338 indicative +9340 indicative +9347 indicative +9349 indicative +9351 indicative +9360 indicative +9370 indicative +9373 indicative +9378 indicative +9381 imperative +9390 indicative +9393 indicative +infinitive +9411 participle +9418 indicative +9422 participle +indicative +9427 infinitive +9434 indicative +9450 indicative +9456 infinitive +indicative +9459 participle +9462 indicative +9464 indicative +9472 participle +9474 participle +9477 indicative +9480 indicative +9488 indicative +9501 indicative +9504 indicative +9511 indicative +9519 indicative +9521 indicative +9532 subjunctive +9536 indicative +participle +9544 subjunctive +9548 indicative +participle +9554 indicative +9559 subjunctive +9562 indicative +9567 indicative +9570 infinitive +9575 indicative +9579 infinitive +9582 infinitive +9591 infinitive +9596 infinitive +9598 participle +9602 indicative +infinitive +9605 participle +9611 indicative +9616 participle +indicative +9620 imperative +9626 indicative +9629 indicative +9640 indicative +9646 indicative +9649 infinitive +imperative +9653 imperative +9658 imperative +9663 subjunctive +9667 infinitive +indicative +9673 subjunctive +9679 indicative +9683 indicative +9689 subjunctive +9694 subjunctive +9697 indicative +9704 indicative +9709 infinitive +9722 indicative +9729 indicative +9732 indicative +9736 participle +9740 subjunctive +9744 subjunctive +9749 participle +9758 indicative +9771 indicative +9779 indicative +9783 indicative +9794 indicative +9800 imperative +indicative +9806 participle +9810 participle +9813 indicative +9818 indicative +9821 infinitive +9823 indicative +indicative +9838 participle +imperative +9842 indicative +9845 imperative +9850 participle +9852 indicative +9860 indicative +imperative +9864 participle +9867 indicative +9872 indicative +9875 indicative +9879 participle +9881 indicative +imperative +9885 imperative +9887 participle +9892 indicative +9899 participle +9904 indicative +9908 participle +9910 subjunctive +9921 subjunctive +9923 indicative +9927 participle +9932 indicative +9934 indicative +9936 infinitive +9940 participle +indicative +9944 indicative +9946 indicative +9949 indicative +9954 indicative +9957 indicative +9960 indicative +9964 indicative +9971 indicative +infinitive +9976 indicative +9984 indicative +9987 participle +9991 indicative +9994 participle +9997 participle +9999 imperative +10004 indicative +10007 indicative +10010 indicative +10020 indicative +10027 indicative +10029 infinitive +10031 participle +10034 indicative +10039 participle +10044 indicative +10047 indicative +10049 imperative +10054 indicative +10059 indicative +10065 indicative +10075 participle +10080 indicative +10085 indicative +infinitive +10090 indicative +10098 indicative +10101 subjunctive +10106 indicative +10110 imperative +10114 indicative +10117 indicative +10120 participle +10125 indicative +10129 indicative +10134 infinitive +10139 indicative +10145 indicative +10147 indicative +10150 participle +10154 indicative +10158 participle +10162 indicative +10167 indicative +10169 indicative +10172 participle +10176 indicative +10180 participle +10183 indicative +10191 indicative +10204 participle +10208 indicative +10214 indicative +10220 subjunctive +10222 participle +10225 imperative +10229 participle +10232 imperative +10234 participle +10238 indicative +10241 participle +imperative +10252 indicative +10257 participle +10261 indicative +10268 participle +10270 indicative +10276 indicative +10278 indicative +10282 subjunctive +10284 subjunctive +10290 subjunctive +10298 indicative +10305 indicative +10316 subjunctive +10325 indicative +10329 subjunctive +10335 participle +10338 indicative +10341 subjunctive +10349 subjunctive +10363 infinitive +10374 indicative +10384 indicative +10386 imperative +10389 imperative +10394 indicative +infinitive +10408 participle +infinitive +10420 indicative +10422 imperative +10425 imperative +10430 indicative +10435 infinitive +10439 participle +infinitive +10446 imperative +10448 subjunctive +10454 indicative +10464 indicative +10475 indicative +10477 subjunctive +10483 subjunctive +10488 indicative +10496 participle +indicative +10499 participle +10502 subjunctive +infinitive +10506 indicative +10509 indicative +10520 participle +10523 indicative +10533 subjunctive +10540 subjunctive +10544 imperative +imperative +10554 subjunctive +indicative +10562 subjunctive +imperative +10577 subjunctive +10582 subjunctive +10584 imperative +10592 subjunctive +imperative +10602 indicative +10606 subjunctive +10610 indicative +participle +10617 subjunctive +10621 indicative +participle +10627 indicative +10634 subjunctive +10643 subjunctive +indicative +10655 indicative +participle +10665 indicative +10670 participle +10673 indicative +10677 indicative +10684 indicative +10688 indicative +10693 indicative +10703 indicative +10711 indicative +infinitive +10719 participle +10721 infinitive +indicative +10730 participle +10732 infinitive +indicative +10736 infinitive +10747 indicative +10749 infinitive +10751 participle +10754 indicative +10756 participle +imperative +10762 indicative +10765 participle +10771 indicative +10776 indicative +10779 participle +10783 indicative +10789 indicative +10794 participle +10796 indicative +participle +imperative +10801 indicative +10803 participle +10807 indicative +10809 participle +imperative +10814 indicative +10819 indicative +10821 participle +indicative +10827 subjunctive +10829 participle +10834 participle +10836 participle +indicative +10840 participle +indicative +10847 participle +10849 participle +10854 indicative +10862 indicative +10865 indicative +10868 indicative +10871 infinitive +10878 indicative +10880 participle +10884 indicative +10890 subjunctive +10893 participle +10902 indicative +10906 subjunctive +10916 indicative +10918 indicative +10924 indicative +10929 indicative +10939 indicative +10944 indicative +10948 indicative +10951 participle +10954 participle +10956 indicative +infinitive +10966 participle +indicative +10969 indicative +10972 participle +10978 indicative +10981 indicative +10984 indicative +10992 indicative +10997 indicative +11005 indicative +11014 indicative +11017 imperative +indicative +11023 indicative +infinitive +11028 infinitive +indicative +11037 indicative +11039 infinitive +11047 indicative +11050 indicative +11055 subjunctive +11063 subjunctive +11065 indicative +indicative +11072 indicative +11081 indicative +infinitive +11085 indicative +11089 indicative +11095 indicative +11097 indicative +11103 indicative +11106 indicative +11109 indicative +11114 indicative +11117 indicative +11125 participle +infinitive +imperative +11129 indicative +11135 subjunctive +11138 subjunctive +11142 indicative +11147 indicative +imperative +11153 imperative +11155 infinitive +11161 indicative +11167 participle +11171 indicative +11174 imperative +11176 participle +11178 indicative +11182 subjunctive +11184 subjunctive +11189 indicative +11193 indicative +11198 indicative +11203 indicative +11207 infinitive +imperative +11211 indicative +11217 indicative +11220 indicative +11222 indicative +11224 indicative +11226 indicative +imperative +11234 indicative +11240 indicative +11246 indicative +11249 indicative +indicative +11255 indicative +11257 infinitive +imperative +imperative +11262 participle +11264 imperative +11267 indicative +11272 imperative +imperative +11278 participle +11281 indicative +participle +11284 indicative +participle +11291 indicative +11296 indicative +11301 indicative +11309 indicative +11312 indicative +11317 infinitive +11326 participle +11329 indicative +11331 participle +11334 indicative +infinitive +11337 participle +11340 indicative +11346 indicative +11353 participle +11356 indicative +11358 imperative +11360 indicative +11363 indicative +11367 indicative +11372 indicative +11375 indicative +11380 participle +11386 subjunctive +11395 indicative +11401 participle +11410 indicative +11429 indicative +11433 indicative +11437 indicative +11444 indicative +11452 indicative +11455 infinitive +11462 participle +11470 indicative +11477 participle +11481 indicative +11483 participle +11490 indicative +imperative +11500 subjunctive +11502 indicative +11506 indicative +11509 participle +11515 indicative +11521 participle +indicative +11524 participle +11526 indicative +11530 indicative +11535 indicative +11540 indicative +indicative +11543 imperative +11551 participle +indicative +11560 imperative +11564 imperative +11567 participle +11575 participle +11581 indicative +11585 participle +11588 indicative +11591 indicative +11593 indicative +11600 participle +indicative +11605 participle +11611 indicative +11615 indicative +11618 participle +11628 participle +11631 indicative +11634 indicative +11638 indicative +11640 imperative +11644 imperative +11646 indicative +11650 infinitive +11655 indicative +11658 indicative +infinitive +11668 indicative +11672 indicative +11674 indicative +11684 participle +infinitive +11688 indicative +11697 indicative +11699 imperative +indicative +11708 indicative +11714 indicative +11719 indicative +11725 infinitive +11727 infinitive +11729 infinitive +11734 indicative +11736 indicative +11747 participle +11749 participle +11755 indicative +11758 indicative +indicative +11761 imperative +11763 subjunctive +11782 participle +11785 indicative +11787 indicative +11789 indicative +indicative +infinitive +11795 infinitive +11797 indicative +indicative +11800 indicative +indicative +11807 indicative +11810 infinitive +11818 indicative +11821 infinitive +11824 indicative +11830 participle +11833 indicative +11841 participle +11843 indicative +indicative +11850 indicative +11855 indicative +11859 indicative +11865 subjunctive +11869 infinitive +indicative +11876 subjunctive +11879 infinitive +11881 indicative +11890 indicative +infinitive +11893 infinitive +11895 infinitive +11903 participle +11907 indicative +11912 imperative +11915 participle +11919 participle +11922 indicative +indicative +participle +imperative +11933 indicative +11936 subjunctive +11940 indicative +participle +imperative +11948 participle +11951 indicative +11954 indicative +indicative +11957 subjunctive +11959 indicative +11963 subjunctive +11968 participle +11971 indicative +11977 indicative +11979 indicative +11983 indicative +11987 indicative +11997 indicative +12000 participle +12002 imperative +12011 indicative +12013 participle +12018 participle +imperative +12025 subjunctive +12027 indicative +12033 indicative +12036 indicative +12040 indicative +12042 subjunctive +12044 participle +12048 participle +imperative +12053 imperative +12057 indicative +12061 participle +12072 participle +12074 participle +12076 indicative +12080 indicative +12087 indicative +12093 indicative +12100 indicative +12109 indicative +12115 indicative +12123 participle +12127 participle +indicative +participle +12134 participle +12136 participle +12145 participle +12149 indicative +12153 participle +12155 indicative +12160 indicative +12162 indicative +12172 indicative +12178 indicative +12181 participle +12183 participle +12188 indicative +12197 participle +12201 indicative +12203 indicative +12209 indicative +12213 indicative +12217 indicative +12226 indicative +12234 participle +12238 indicative +12243 participle +12248 participle +12253 indicative +12255 indicative +12257 indicative +12260 indicative +12264 indicative +12268 indicative +12274 participle +indicative +12278 participle +12280 indicative +12287 indicative +12291 participle +12295 indicative +12297 participle +12303 indicative +12308 indicative +12316 indicative +12323 subjunctive +12328 indicative +12333 participle +12336 indicative +participle +12340 indicative +12344 participle +12347 indicative +12350 indicative +12353 subjunctive +12357 subjunctive +12363 indicative +12369 subjunctive +imperative +12372 imperative +12376 indicative +12381 subjunctive +12385 participle +indicative +12388 participle +12393 indicative +12395 participle +12403 participle +12408 indicative +12412 indicative +12417 participle +12420 indicative +12422 indicative +12429 subjunctive +12433 indicative +12438 indicative +12444 indicative +12452 indicative +12455 participle +12457 subjunctive +12460 indicative +12466 indicative +12470 subjunctive +12473 indicative +12480 indicative +12484 participle +12487 indicative +12489 indicative +indicative +12496 indicative +12502 indicative +12506 indicative +12508 indicative +12511 participle +12514 indicative +12516 imperative +12518 imperative +12524 participle +indicative +12530 indicative +12532 participle +12535 indicative +12539 participle +indicative +12542 indicative +12544 participle +indicative +12550 indicative +12555 indicative +12558 indicative +12563 indicative +12571 indicative +12579 indicative +12588 indicative +12596 indicative +12600 participle +12602 indicative +12605 infinitive +12609 imperative +12611 indicative +12614 indicative +12619 indicative +12621 indicative +12626 indicative +12629 indicative +12633 indicative +12636 indicative +12641 indicative +12648 infinitive +12653 participle +12661 indicative +12664 indicative +12667 indicative +12669 indicative +12676 indicative +12681 indicative +12687 participle +indicative +12695 participle +12698 indicative +12702 indicative +12705 imperative +subjunctive +12709 subjunctive +12714 participle +12716 indicative +12721 indicative +12724 subjunctive +12730 indicative +12734 indicative +12738 indicative +12743 indicative +12747 indicative +12755 indicative +12760 indicative +12766 indicative +12768 participle +12770 indicative +12776 indicative +12779 indicative +12786 indicative +12789 indicative +12797 indicative +12799 participle +12805 participle +12810 indicative +12815 subjunctive +indicative +12824 participle +12828 indicative +12832 indicative +12834 participle +12836 infinitive +indicative +12844 indicative +12846 participle +12850 indicative +12854 participle +indicative +12863 indicative +12869 indicative +12873 infinitive +12875 participle +12881 indicative +infinitive +12884 indicative +12887 participle +imperative +12890 participle +imperative +12895 indicative +12902 participle +12906 imperative +12912 participle +indicative +12929 participle +12933 indicative +12935 indicative +12939 indicative +12941 participle +12945 indicative +12953 indicative +12955 indicative +12963 indicative +12966 participle +12968 indicative +12971 imperative +12980 subjunctive +imperative +12989 participle +12993 indicative +12996 indicative +13002 indicative +13005 participle +13009 participle +infinitive +13012 participle +indicative +13017 participle +13021 indicative +13025 indicative +13028 participle +13033 indicative +13037 indicative +13040 participle +13045 imperative +13053 indicative +13063 indicative +13069 participle +13073 indicative +13076 subjunctive +13080 indicative +13088 participle +13090 indicative +13093 indicative +13101 indicative +13104 indicative +13110 indicative +13115 imperative +13119 indicative +indicative +infinitive +13129 participle +13133 indicative +13136 indicative +13138 imperative +13146 indicative +13150 indicative +13159 indicative +13162 indicative +13165 imperative +13176 participle +indicative +13179 participle +13181 indicative +13186 indicative +13189 participle +13191 infinitive +13194 indicative +13196 participle +13199 indicative +13202 subjunctive +13204 participle +13206 indicative +13214 indicative +13220 indicative +13228 participle +indicative +13232 participle +13234 indicative +13254 indicative +13265 indicative +13268 indicative +13271 participle +13274 indicative +13276 indicative +13278 participle +13291 indicative +13293 indicative +13300 indicative +13308 indicative +13310 participle +13315 participle +13317 indicative +13330 indicative +13335 participle +13337 participle +13340 indicative +13348 participle +13350 indicative +13353 indicative +13358 indicative +13363 participle +13374 indicative +13376 indicative +13399 indicative +13408 indicative +13422 indicative +13427 participle +13430 indicative +13434 participle +13437 indicative +13443 indicative +indicative +13448 indicative +13455 indicative +13458 participle +indicative +13464 imperative +13470 subjunctive +13481 indicative +13487 indicative +13490 indicative +infinitive +13495 indicative +13501 infinitive +13507 indicative +13514 participle +13519 indicative +13529 subjunctive +13531 imperative +13533 imperative +13540 imperative +13542 indicative +13545 indicative +13547 indicative +13551 indicative +13563 indicative +infinitive +13571 indicative +13574 infinitive +13578 indicative +13583 indicative +13587 indicative +13606 infinitive +13614 subjunctive +13618 indicative +13626 indicative +13631 subjunctive +13637 indicative +13644 subjunctive +13649 indicative +13657 indicative +13662 indicative +13664 indicative +13667 indicative +13669 indicative +13678 indicative +13689 indicative +13692 participle +infinitive +indicative +13702 indicative +13708 infinitive +13713 subjunctive +indicative +13725 participle +13728 subjunctive +13733 indicative +13737 subjunctive +13743 indicative +13750 indicative +13757 participle +13763 subjunctive +13768 indicative +13772 subjunctive +13779 indicative +13790 participle +13795 participle +13799 indicative +13810 participle +13814 indicative +13820 participle +13824 participle +13828 indicative +13837 participle +13847 indicative +13857 indicative +13871 indicative +13873 infinitive +13876 infinitive +13880 participle +13886 participle +13894 indicative +13904 indicative +13911 imperative +13918 subjunctive +13931 indicative +13933 participle +13937 indicative +13941 indicative +13952 indicative +13958 indicative +13970 indicative +13976 indicative +13982 indicative +13984 indicative +13993 indicative +14002 indicative +14005 indicative +14008 participle +14013 imperative +14023 subjunctive +14029 imperative +14033 indicative +14043 indicative +14045 indicative +14049 indicative +14055 indicative +14061 subjunctive +14067 participle +14084 indicative +14092 indicative +14094 indicative +14104 participle +14108 participle +14110 participle +14114 indicative +infinitive +14122 indicative +14131 indicative +imperative +indicative +14139 indicative +14144 subjunctive +14149 subjunctive +participle +14152 participle +14159 participle +14163 indicative +14165 indicative +14169 infinitive +14177 participle +indicative +14181 indicative +14185 indicative +14189 subjunctive +14196 indicative +14198 participle +14205 indicative +14211 participle +imperative +14216 indicative +14229 participle +14232 indicative +14234 imperative +14238 subjunctive +14241 indicative +14246 participle +14248 indicative +14253 indicative +14255 indicative +infinitive +14261 imperative +14263 imperative +14265 indicative +infinitive +14269 indicative +14273 indicative +14282 indicative +14294 indicative +14299 indicative +14302 indicative +participle +14314 indicative +14318 indicative +14320 indicative +14325 indicative +14327 indicative +14332 infinitive +14335 indicative +14342 participle +14346 indicative +14348 indicative +14365 indicative +14370 subjunctive +14376 participle +14381 participle +14386 participle +imperative +14393 imperative +14402 imperative +infinitive +14415 imperative +14417 infinitive +14426 participle +14429 participle +14435 imperative +14438 subjunctive +14446 indicative +14452 indicative +14462 subjunctive +14466 indicative +14472 indicative +14479 indicative +14487 subjunctive +imperative +14495 subjunctive +14497 indicative +14502 indicative +14508 infinitive +14514 imperative +indicative +14519 subjunctive +14521 imperative +14525 indicative +14527 subjunctive +imperative +14533 subjunctive +14538 indicative +14542 indicative +14546 indicative +14555 subjunctive +14559 indicative +14572 indicative +14577 indicative +14584 indicative +14593 indicative +14596 indicative +14607 indicative +14614 indicative +14619 participle +14631 indicative +14639 indicative +14657 imperative +14665 subjunctive +14670 subjunctive +indicative +14680 subjunctive +14683 imperative +14686 indicative +14690 indicative +14695 subjunctive +14703 subjunctive +14709 indicative +14716 subjunctive +14725 indicative +14746 indicative +14763 indicative +participle +14766 participle +participle +14769 participle +14773 indicative +14780 indicative +14782 indicative +14786 indicative +14789 indicative +14798 indicative +14804 indicative +14807 indicative +14809 participle +14814 indicative +14817 indicative +14819 imperative +14822 indicative +14828 indicative +14831 imperative +14834 indicative +14841 indicative +14843 indicative +14847 indicative +infinitive +14856 imperative +14861 indicative +14867 indicative +14870 indicative +14877 indicative +14885 infinitive +14897 participle +participle +14902 indicative +14904 indicative +14910 participle +14912 indicative +14916 subjunctive +14925 indicative +14930 subjunctive +infinitive +14936 subjunctive +14938 subjunctive +14941 participle +indicative +14952 indicative +14958 indicative +14960 indicative +14969 indicative +14971 indicative +14980 indicative +14988 participle +14992 indicative +15001 indicative +15009 participle +15013 indicative +15020 indicative +15030 participle +15033 indicative +15036 indicative +15041 indicative +imperative +15045 imperative +15049 indicative +15055 indicative +15064 indicative +imperative +15075 indicative +15077 indicative +15080 participle +15085 subjunctive +15089 imperative +15093 participle +15095 imperative +15098 participle +15100 infinitive +indicative +15107 indicative +15114 indicative +15119 indicative +15124 participle +15127 imperative +15131 participle +indicative +15134 indicative +15137 indicative +15140 imperative +15143 indicative +15152 participle +indicative +15158 indicative +15161 participle +15166 indicative +15181 indicative +15183 participle +15188 participle +indicative +15193 indicative +15200 indicative +15207 participle +participle +indicative +15212 indicative +15222 indicative +15229 indicative +15234 participle +15239 participle +indicative +15244 participle +15249 indicative +imperative +15254 indicative +indicative +15267 indicative +15272 indicative +imperative +15280 participle +15286 indicative +15291 indicative +imperative +15296 indicative +indicative +15309 indicative +15314 indicative +imperative +15323 participle +15329 participle +indicative +15332 indicative +15335 indicative +15338 participle +15341 indicative +15343 participle +15346 indicative +15348 participle +participle +indicative +15357 imperative +indicative +15362 participle +15366 indicative +15372 indicative +15374 indicative +15377 indicative +15379 indicative +15382 indicative +15384 indicative +15386 infinitive +15394 participle +15396 indicative +15402 imperative +15408 imperative +15410 participle +15416 participle +15418 indicative +15420 indicative +15424 participle +15427 indicative +indicative +15435 imperative +15442 indicative +15452 subjunctive +15468 indicative +15474 indicative +15481 indicative +15488 indicative +15496 indicative +15508 indicative +15515 imperative +15517 participle +15521 imperative +15523 participle +15530 indicative +15532 indicative +15534 infinitive +indicative +15537 indicative +15540 indicative +15542 indicative +15546 indicative +15548 indicative +15550 indicative +15554 indicative +15556 indicative +15560 indicative +15564 participle +15567 indicative +15569 participle +15571 indicative +15573 participle +15575 indicative +15578 indicative +15582 indicative +15586 indicative +15589 indicative +15591 participle +15596 indicative +15600 participle +15603 indicative +15606 indicative +15610 indicative +15619 indicative +15621 indicative +15626 participle +imperative +15636 participle +15644 indicative +15647 indicative +15649 infinitive +indicative +15653 indicative +15656 indicative +15659 indicative +15664 indicative +15672 indicative +15675 indicative +15678 participle +15681 indicative +15683 participle +15685 participle +15697 indicative +15700 indicative +15702 participle +15704 indicative +15709 indicative +15716 indicative +15718 indicative +15730 indicative +15732 indicative +15739 indicative +15743 indicative +15750 indicative +15756 indicative +15759 infinitive +15761 indicative +15775 participle +15778 indicative +15783 subjunctive +15785 subjunctive +15787 indicative +15795 subjunctive +15802 participle +15810 indicative +15813 participle +15818 indicative +15823 participle +15825 participle +15828 indicative +participle +15836 indicative +15838 infinitive +15841 infinitive +15844 participle +15847 indicative +15851 indicative +15857 indicative +15864 indicative +15871 indicative +15874 participle +15884 infinitive +15886 indicative +15888 indicative +15892 subjunctive +15900 indicative +15903 indicative +15913 participle +15916 participle +15920 indicative +indicative +15924 infinitive +15927 indicative +15931 indicative +15938 indicative +15942 subjunctive +15948 indicative +15953 participle +indicative +15956 subjunctive +15958 infinitive +15963 indicative +imperative +15972 imperative +15976 indicative +15981 indicative +15984 indicative +15992 indicative +15996 indicative +16001 indicative +16006 participle +indicative +16013 participle +16015 indicative +16017 indicative +16023 indicative +16026 participle +16028 indicative +infinitive +16035 indicative +16039 participle +indicative +16042 participle +16052 indicative +16058 indicative +16060 indicative +16074 indicative +16076 indicative +16080 indicative +16085 participle +16088 participle +16090 indicative +16093 indicative +16095 indicative +16098 indicative +16100 participle +16104 participle +16107 participle +indicative +16110 participle +16113 indicative +imperative +imperative +16117 indicative +16122 participle +16125 participle +indicative +16128 participle +imperative +16135 indicative +16144 participle +16149 indicative +16153 subjunctive +16168 subjunctive +16179 participle +indicative +16187 indicative +16193 indicative +16201 indicative +indicative +16206 indicative +16214 infinitive +16216 indicative +16222 participle +16225 indicative +16229 indicative +16234 indicative +indicative +16240 indicative +16249 infinitive +16251 indicative +16253 indicative +16258 subjunctive +16262 infinitive +16266 indicative +16272 indicative +16274 indicative +16281 participle +16284 indicative +16287 imperative +16291 participle +16293 subjunctive +16295 participle +16303 indicative +infinitive +16306 infinitive +16308 indicative +16311 indicative +16317 imperative +16320 imperative +16324 participle +16326 indicative +16330 participle +16332 participle +16337 indicative +imperative +16348 indicative +16353 indicative +16358 indicative +16360 participle +16362 indicative +16367 indicative +16370 infinitive +16373 imperative +16375 imperative +16378 subjunctive +16392 participle +indicative +participle +16399 indicative +16401 infinitive +16405 subjunctive +imperative +16411 participle +16413 indicative +16415 participle +16417 indicative +participle +16423 participle +16426 participle +indicative +16433 participle +16436 indicative +16441 indicative +16443 indicative +16446 indicative +imperative +indicative +16456 indicative +16460 imperative +subjunctive +imperative +indicative +16465 participle +16470 participle +imperative +16476 indicative +16495 participle +16497 indicative +16500 participle +16503 subjunctive +16505 indicative +imperative +16510 participle +16513 indicative +imperative +16517 indicative +16522 indicative +16527 indicative +16529 participle +indicative +16537 indicative +16540 imperative +16545 participle +16548 indicative +16553 participle +16558 indicative +16563 indicative +16567 imperative +16578 participle +16582 indicative +16584 indicative +16587 indicative +infinitive +16593 indicative +16602 subjunctive +16607 indicative +infinitive +16613 indicative +16621 indicative +16626 infinitive +16633 indicative +participle +16637 indicative +16642 indicative +16644 subjunctive +16653 participle +16655 indicative +16658 participle +16661 indicative +16672 indicative +16676 indicative +16686 participle +16688 indicative +16692 infinitive +16702 indicative +16709 subjunctive +16712 indicative +16715 participle +16718 participle +16720 indicative +16722 indicative +indicative +infinitive +16733 infinitive +16735 participle +16738 indicative +16741 indicative +16745 indicative +16749 indicative +16753 indicative +16755 indicative +16761 participle +16764 subjunctive +16767 indicative +16774 indicative +16779 indicative +16781 indicative +16785 indicative +16790 participle +16796 participle +16805 indicative +16809 participle +indicative +16815 indicative +imperative +16818 indicative +16823 indicative +16826 participle +indicative +16830 indicative +16832 indicative +16838 indicative +16842 indicative +participle +imperative +16848 indicative +16850 participle +16855 indicative +16861 indicative +16865 participle +16868 indicative +16875 indicative +16878 participle +16880 indicative +16882 indicative +16884 participle +16888 indicative +16892 indicative +16896 indicative +16903 indicative +16908 indicative +16914 participle +16916 participle +indicative +16925 indicative +16933 indicative +16935 indicative +infinitive +16938 infinitive +16941 indicative +16947 indicative +16949 indicative +16955 participle +16959 infinitive +16961 indicative +16964 participle +16966 indicative +16970 participle +16972 indicative +16985 infinitive +16988 participle +16990 indicative +16992 indicative +16999 participle +17001 participle +17003 indicative +participle +indicative +17013 participle +indicative +participle +17020 indicative +17025 indicative +17027 participle +17033 indicative +17035 participle +indicative +17040 participle +17043 indicative +17045 indicative +infinitive +17054 indicative +17057 participle +indicative +17070 indicative +17080 indicative +17082 participle +17087 participle +17089 indicative +17096 participle +17098 indicative +17103 indicative +17111 indicative +17117 indicative +17122 indicative +17126 participle +17128 indicative +17136 indicative +17138 indicative +17142 infinitive +17150 indicative +17152 indicative +17157 indicative +17160 indicative +17163 indicative +17170 infinitive +17177 indicative +17180 infinitive +17186 indicative +17188 indicative +17192 participle +17195 participle +17197 indicative +17201 indicative +17203 subjunctive +17209 participle +17212 indicative +17216 indicative +17219 participle +17224 indicative +17230 participle +17239 indicative +17251 indicative +17255 subjunctive +17261 subjunctive +17263 participle +17266 indicative +17268 indicative +17273 subjunctive +17277 indicative +17280 indicative +17286 subjunctive +17289 participle +17291 indicative +17293 imperative +17296 indicative +17300 indicative +17304 indicative +participle +imperative +17310 participle +17313 indicative +17317 indicative +participle +17320 indicative +17326 participle +17328 indicative +17334 indicative +17336 participle +17340 indicative +17352 indicative +17359 participle +indicative +17362 subjunctive +17368 participle +17374 indicative +17381 participle +17385 indicative +17388 participle +17392 indicative +17404 participle +17407 indicative +17409 participle +imperative +17415 participle +17418 indicative +17422 indicative +17429 indicative +17431 indicative +17436 indicative +17442 indicative +17446 infinitive +17448 participle +indicative +17455 indicative +17457 subjunctive +17462 participle +17465 participle +17468 indicative +participle +17472 indicative +17474 infinitive +17478 participle +17480 participle +17482 indicative +infinitive +17485 participle +17487 indicative +17491 participle +17494 participle +indicative +17499 indicative +17507 participle +17509 indicative +17516 indicative +17530 participle +indicative +17533 participle +17538 participle +17540 participle +17547 participle +imperative +17551 indicative +17556 imperative +17563 participle +17569 indicative +17571 indicative +17573 infinitive +17575 indicative +17578 indicative +imperative +17585 indicative +17588 indicative +17592 imperative +17595 indicative +17598 indicative +17602 indicative +17610 participle +17613 indicative +17620 indicative +17633 indicative +17638 participle +17642 indicative +17644 indicative +17652 indicative +17657 participle +participle +indicative +17662 indicative +17669 participle +17671 participle +17674 participle +17677 participle +17679 indicative +17684 indicative +imperative +subjunctive +17688 indicative +17690 participle +17696 participle +17699 indicative +17703 imperative +17708 indicative +17718 indicative +17722 indicative +17726 indicative +17731 participle +17733 indicative +17735 participle +17743 indicative +17749 indicative +17758 participle +17761 participle +17766 participle +indicative +17769 participle +17773 indicative +17776 indicative +17782 participle +17784 indicative +17790 participle +17794 indicative +17814 participle +indicative +17825 indicative +17829 participle +17832 indicative +17840 indicative +infinitive +17843 participle +17848 indicative +17854 indicative +17862 indicative +17867 participle +17874 indicative +17884 indicative +participle +17893 indicative +17897 indicative +17905 participle +17907 indicative +17912 indicative +17914 participle +17918 indicative +17920 imperative +infinitive +17930 participle +17933 subjunctive +17936 subjunctive +17939 indicative +17944 indicative +17951 indicative +17955 indicative +17957 imperative +imperative +17960 indicative +17963 participle +indicative +17967 participle +17977 participle +17981 indicative +17989 infinitive +17993 imperative +17996 indicative +18000 participle +18004 participle +indicative +18009 indicative +18013 indicative +18031 indicative +18033 participle +18035 indicative +18039 participle +18042 indicative +18046 imperative +18049 indicative +18053 participle +indicative +18056 indicative +18059 indicative +18061 indicative +imperative +imperative +18067 indicative +18070 participle +imperative +18076 indicative +18081 imperative +indicative +18089 indicative +imperative +indicative +18094 participle +18104 indicative +infinitive +18110 imperative +18112 indicative +18114 participle +imperative +18118 participle +indicative +18124 indicative +18127 indicative +18132 imperative +imperative +imperative +18139 subjunctive +18145 indicative +18147 participle +18149 imperative +18153 participle +18157 indicative +18162 participle +18164 participle +18170 participle +18173 indicative +18176 participle +imperative +18183 participle +indicative +18187 participle +18190 subjunctive +18196 indicative +18200 indicative +18203 participle +18205 indicative +18207 indicative +18209 indicative +18223 indicative +18231 indicative +18236 participle +18238 indicative +18241 indicative +18243 participle +18246 indicative +18248 participle +indicative +18260 participle +imperative +18265 participle +18279 participle +18281 infinitive +18284 indicative +18287 imperative +18291 indicative +18308 indicative +18314 imperative +indicative +18323 indicative +18328 participle +18332 imperative +18337 imperative +18341 indicative +18344 participle +18348 participle +18355 indicative +18367 indicative +18374 participle +18379 indicative +18382 participle +18393 participle +18399 indicative +participle +indicative +18409 indicative +18411 participle +infinitive +18419 indicative +18424 indicative +18429 indicative +18434 indicative +18441 indicative +18449 participle +18453 indicative +participle +18462 participle +18467 indicative +18472 indicative +18480 indicative +18486 indicative +18491 indicative +18497 participle +18502 indicative +18509 indicative +18514 infinitive +18517 indicative +18523 participle +18529 participle +18531 indicative +18535 indicative +18540 imperative +18542 imperative +18547 participle +18553 indicative +18560 participle +18565 indicative +18568 indicative +18572 imperative +18576 indicative +18578 infinitive +18583 participle +18586 indicative +18589 participle +18591 indicative +18606 participle +18611 indicative +18614 participle +18625 indicative +18629 indicative +18636 participle +18640 indicative +18642 indicative +18648 indicative +participle +18653 participle +18661 indicative +18671 indicative +participle +18679 indicative +infinitive +18682 indicative +18685 indicative +18691 indicative +18695 imperative +18697 imperative +18705 participle +18708 participle +18711 indicative +18715 indicative +18718 infinitive +18720 participle +18722 indicative +18733 indicative +18735 indicative +18738 indicative +18755 participle +indicative +18771 indicative +participle +18775 indicative +18780 participle +indicative +18783 participle +18787 indicative +18792 indicative +18796 participle +18798 indicative +18801 indicative +18807 participle +18810 participle +18812 indicative +participle +18821 indicative +18824 participle +18830 indicative +18833 indicative +infinitive +18838 indicative +18844 participle +indicative +18847 indicative +18852 indicative +18854 indicative +18862 indicative +18865 indicative +18869 indicative +18872 indicative +18874 subjunctive +18878 participle +18883 subjunctive +18887 indicative +18889 indicative +participle +18902 participle +18904 indicative +18908 participle +18911 participle +participle +18916 subjunctive +indicative +18919 infinitive +18921 participle +participle +18926 indicative +18928 indicative +18930 indicative +imperative +18934 indicative +18940 indicative +18942 participle +18945 indicative +18948 indicative +18950 imperative +18953 subjunctive +18955 imperative +18957 imperative +18961 imperative +18967 indicative +18974 participle +indicative +infinitive +18979 infinitive +18985 infinitive +18989 infinitive +18995 indicative +18997 indicative +19002 participle +19008 indicative +19012 indicative +19014 indicative +19018 infinitive +19025 indicative +19030 indicative +participle +19035 participle +19040 participle +infinitive +19046 indicative +19050 indicative +19052 participle +indicative +19059 indicative +19063 participle +19067 indicative +19071 indicative +19076 indicative +19081 participle +19083 participle +19091 indicative +indicative +19094 indicative +infinitive +19106 participle +19112 indicative +19115 indicative +19119 indicative +19125 indicative +19127 infinitive +19130 indicative +19135 infinitive +imperative +19138 imperative +19143 imperative +19146 subjunctive +19149 indicative +19154 infinitive +19159 indicative +19163 indicative +imperative +imperative +19170 imperative +19176 indicative +19179 participle +19182 indicative +19186 infinitive +19189 infinitive +19192 participle +19196 indicative +19198 indicative +19207 indicative +19211 indicative +19214 participle +indicative +19220 participle +19225 indicative +19227 imperative +19230 participle +indicative +19234 indicative +infinitive +19246 indicative +19254 indicative +19257 indicative +19264 participle +19266 indicative +19272 indicative +19282 indicative +19284 participle +19287 indicative +19292 indicative +19294 participle +19298 participle +19300 indicative +infinitive +19306 indicative +participle +19315 indicative +19317 indicative +19329 indicative +19335 indicative +19337 indicative +19342 indicative +19353 indicative +infinitive +19357 indicative +19363 indicative +infinitive +19366 indicative +19369 subjunctive +19376 indicative +19385 indicative +19392 indicative +19404 indicative +19407 indicative +19416 indicative +19424 indicative +19435 indicative +19440 infinitive +19448 indicative +19450 infinitive +participle +19457 indicative +19459 imperative +19461 indicative +19466 indicative +19468 indicative +19471 indicative +19473 indicative +19477 indicative +19479 indicative +19486 indicative +19500 indicative +19502 infinitive +19504 indicative +19510 indicative +19515 participle +19517 indicative +19524 indicative +19533 indicative +19543 indicative +19548 indicative +19551 participle +participle +19556 indicative +19561 indicative +19564 subjunctive +19567 indicative +19574 participle +imperative +19580 indicative +19582 indicative +19586 infinitive +19588 infinitive +19590 infinitive +19592 infinitive +19595 indicative +19597 participle +19601 participle +19608 indicative +19611 imperative +19615 indicative +19617 indicative +19622 participle +19630 indicative +19635 subjunctive +19643 indicative +19653 indicative +19676 participle +19678 indicative +indicative +19683 indicative +19689 subjunctive +19696 subjunctive +19700 indicative +19702 infinitive +19706 subjunctive +19708 indicative +19717 indicative +indicative +19721 indicative +participle +19725 indicative +19732 indicative +19738 subjunctive +19740 indicative +19745 indicative +19747 indicative +19750 indicative +19754 indicative +19757 subjunctive +19762 subjunctive +19764 infinitive +19766 infinitive +19768 infinitive +19772 indicative +19776 indicative +19793 indicative +19798 indicative +19827 indicative +19830 indicative +19834 indicative +19840 infinitive +19844 infinitive +19846 participle +19850 indicative +infinitive +19854 indicative +19856 indicative +19863 participle +indicative +19867 indicative +19875 indicative +19879 participle +19883 indicative +19886 indicative +19889 infinitive +19895 subjunctive +19897 indicative +infinitive +19907 subjunctive +19909 indicative +19913 infinitive +19918 indicative +19922 indicative +19924 indicative +infinitive +19928 indicative +19931 indicative +19938 participle +19942 infinitive +19948 subjunctive +19954 indicative +19956 indicative +19959 indicative +19972 subjunctive +19976 subjunctive +19983 indicative +19990 indicative +19994 indicative +19997 indicative +19999 indicative +20009 participle +indicative +20013 participle +20016 indicative +20021 indicative +20023 imperative +20036 indicative +20039 participle +20041 indicative +20043 indicative +20051 participle +20056 participle +indicative +imperative +20068 subjunctive +20080 indicative +20083 indicative +infinitive +20089 indicative +20098 participle +infinitive +20113 indicative +20115 indicative +20121 indicative +20127 imperative +imperative +indicative +20131 participle +infinitive +20134 indicative +20137 infinitive +20140 indicative +20145 indicative +20149 indicative +20153 indicative +20159 indicative +20164 indicative +20168 infinitive +20173 indicative +20176 indicative +20181 infinitive +20183 indicative +20186 indicative +20191 indicative +20195 indicative +20200 indicative +20203 indicative +20210 indicative +20212 participle +20214 participle +20216 indicative +20226 indicative +20228 indicative +20230 infinitive +imperative +20234 indicative +20237 indicative +20248 indicative +20251 indicative +20266 indicative +20268 participle +subjunctive +20272 subjunctive +20274 participle +subjunctive +20278 subjunctive +20281 subjunctive +20283 subjunctive +20286 indicative +20289 indicative +20298 indicative +20300 participle +20303 indicative +20306 indicative +20312 indicative +20317 subjunctive +20319 indicative +20323 indicative +20327 participle +20331 indicative +20337 participle +20341 subjunctive +20347 indicative +20351 indicative +20357 indicative +20359 participle +20367 indicative +20370 indicative +20375 participle +20377 indicative +20381 participle +20398 participle +indicative +20404 indicative +20406 indicative +20413 participle +20416 indicative +20420 indicative +20422 indicative +20432 indicative +20436 indicative +20443 subjunctive +20453 subjunctive +20456 indicative +20462 subjunctive +20464 indicative +20468 subjunctive +20473 indicative +20475 infinitive +imperative +20478 indicative +20480 imperative +20482 indicative +20486 indicative +indicative +20490 indicative +20494 indicative +indicative +20500 indicative +20503 indicative +indicative +20508 indicative +20510 indicative +20517 subjunctive +20524 subjunctive +20526 subjunctive +20533 subjunctive +20535 subjunctive +20538 indicative +20543 indicative +20556 subjunctive +20560 indicative +20564 indicative +20568 indicative +20570 subjunctive +20580 subjunctive +20586 subjunctive +20591 participle +20601 subjunctive +indicative +20604 indicative +20610 indicative +20614 infinitive +20619 infinitive +20628 indicative +20633 indicative +infinitive +20639 indicative +20647 indicative +20650 indicative +20657 participle +subjunctive +20663 participle +20666 indicative +20669 indicative +20676 indicative +20680 indicative +20687 indicative +20693 infinitive +20698 indicative +20705 participle +20707 indicative +20710 indicative +20714 indicative +20717 indicative +20719 participle +indicative +20724 indicative +20727 imperative +imperative +20730 indicative +20734 indicative +20738 indicative +20742 indicative +20746 indicative +20749 indicative +20753 indicative +20759 indicative +20767 indicative +20770 indicative +20782 participle +20788 indicative +20800 indicative +20809 indicative +20811 infinitive +20819 infinitive +20821 infinitive +20829 infinitive +20832 indicative +20834 infinitive +20848 indicative +participle +20851 participle +20855 participle +20860 indicative +20862 indicative +20865 participle +20868 indicative +20879 indicative +20885 subjunctive +20887 indicative +20893 imperative +20898 indicative +20904 indicative +20911 indicative +20913 indicative +20919 subjunctive +20924 indicative +20932 participle +20934 indicative +20936 participle +imperative +20945 subjunctive +20947 indicative +20950 participle +20955 indicative +20960 indicative +20972 indicative +20978 participle +20980 indicative +20982 indicative +20991 indicative +infinitive +20994 indicative +20996 participle +20998 indicative +21003 indicative +21005 participle +21007 participle +21010 participle +participle +21013 participle +21015 indicative +21017 indicative +21020 participle +21022 indicative +21024 participle +21030 indicative +infinitive +21033 infinitive +21039 participle +21044 indicative +21047 participle +21051 subjunctive +21054 indicative +21057 indicative +21059 imperative +21068 imperative +21074 indicative +21076 indicative +21079 indicative +21081 indicative +infinitive +21087 indicative +21093 indicative +21095 participle +21105 indicative +21111 indicative +21116 indicative +21123 participle +21125 indicative +21131 indicative +21134 participle +21140 indicative +21142 participle +subjunctive +21148 subjunctive +21150 subjunctive +21152 indicative +21156 indicative +21161 indicative +21165 participle +21173 participle +21178 participle +21185 participle +21191 participle +participle +21197 participle +21202 indicative +21207 indicative +21210 subjunctive +21215 indicative +21218 indicative +21225 indicative +21229 indicative +21237 participle +21244 participle +participle +21249 indicative +21251 indicative +21256 indicative +21261 indicative +21264 participle +21267 indicative +21270 indicative +21272 indicative +infinitive +21276 participle +21280 participle +21282 participle +participle +21285 indicative +21287 indicative +21289 indicative +21292 indicative +21299 indicative +21305 indicative +21307 imperative +21311 imperative +21319 participle +indicative +21324 participle +21329 indicative +21332 indicative +21338 participle +21341 participle +indicative +21346 imperative +21348 imperative +21351 indicative +21355 infinitive +21368 indicative +21375 indicative +21378 participle +21380 participle +21383 participle +indicative +21387 indicative +21389 indicative +21393 indicative +21395 indicative +21397 indicative +21401 participle +21403 indicative +21416 indicative +21418 indicative +21422 participle +21427 indicative +21430 imperative +21432 indicative +participle +21437 indicative +imperative +21441 indicative +21445 indicative +21447 indicative +21451 indicative +21456 indicative +21461 subjunctive +21464 indicative +infinitive +21467 infinitive +21469 indicative +21472 indicative +21478 indicative +21484 participle +21486 indicative +infinitive +21494 participle +indicative +participle +21505 participle +21515 participle +21518 indicative +21536 indicative +21544 indicative +21548 indicative +21554 indicative +21575 indicative +21577 infinitive +21584 participle +21587 indicative +21589 indicative +21595 indicative +21599 participle +21601 indicative +21605 indicative +21607 infinitive +21611 indicative +21619 indicative +21623 subjunctive +21640 participle +21644 subjunctive +21648 indicative +21652 subjunctive +21656 imperative +21659 subjunctive +21666 subjunctive +21669 subjunctive +21671 participle +21673 imperative +21685 participle +indicative +21688 subjunctive +21692 indicative +21694 indicative +21699 indicative +21701 indicative +21707 indicative +21712 indicative +21716 participle +indicative +21723 indicative +21730 indicative +21733 indicative +21736 indicative +21744 participle +21747 indicative +21750 indicative +21753 indicative +21758 participle +indicative +21763 indicative +21777 indicative +21779 indicative +21786 indicative +21788 infinitive +21797 indicative +21800 indicative +21802 infinitive +21805 indicative +21809 indicative +21812 participle +21819 indicative +21822 participle +21825 indicative +21829 indicative +21831 participle +21840 indicative +21853 participle +21860 participle +indicative +21866 participle +21870 indicative +21873 imperative +21877 subjunctive +21879 indicative +21882 indicative +21887 subjunctive +indicative +21896 participle +indicative +21902 subjunctive +21905 indicative +21910 participle +21912 participle +21919 indicative +participle +indicative +21924 subjunctive +21935 participle +21943 participle +21945 indicative +infinitive +21950 participle +21954 indicative +infinitive +21960 participle +indicative +21967 indicative +21974 indicative +21981 indicative +21987 participle +21991 indicative +21993 indicative +21998 indicative +22003 indicative +22010 indicative +22014 indicative +22017 indicative +22019 indicative +22021 imperative +22030 imperative +22033 indicative +22035 participle +22038 participle +22042 infinitive +indicative +22045 indicative +22055 indicative +22057 participle +22059 indicative +22067 indicative +22070 indicative +22073 participle +indicative +22078 indicative +22082 indicative +22086 participle +22089 indicative +infinitive +22097 participle +participle +22103 indicative +22106 indicative +22113 imperative +22116 participle +22123 subjunctive +22126 subjunctive +22129 participle +indicative +22132 imperative +22135 infinitive +22137 indicative +22139 participle +subjunctive +22145 indicative +22147 infinitive +22150 indicative +22154 indicative +imperative +imperative +22158 participle +indicative +22165 indicative +22167 infinitive +22176 indicative +22185 participle +22193 participle +22197 indicative +22199 indicative +22203 indicative +22207 subjunctive +22213 indicative +22216 indicative +22219 indicative +22221 indicative +22231 indicative +22233 participle +22240 indicative +22244 infinitive +22249 infinitive +22257 indicative +22261 participle +22263 indicative +22267 infinitive +22270 participle +indicative +22285 participle +22287 participle +22290 infinitive +22292 indicative +22302 indicative +22305 participle +22310 indicative +infinitive +22315 participle +22320 participle +indicative +22324 indicative +22326 indicative +22330 indicative +22332 indicative +22336 indicative +22340 indicative +22342 imperative +22344 indicative +22346 imperative +22348 indicative +22355 indicative +22364 indicative +22367 indicative +22372 indicative +participle +22378 participle +22382 indicative +22386 indicative +22388 participle +22394 participle +22396 indicative +22402 indicative +22408 participle +infinitive +22411 indicative +22413 indicative +22417 indicative +22429 indicative +22431 participle +22433 indicative +22442 subjunctive +22446 indicative +22448 indicative +22450 indicative +22459 participle +22463 participle +22472 indicative +22474 indicative +22487 subjunctive +22491 indicative +participle +22502 subjunctive +22504 indicative +22508 indicative +22510 indicative +infinitive +22519 indicative +22529 indicative +22541 indicative +22546 indicative +22549 indicative +22556 indicative +22564 indicative +22570 indicative +22575 indicative +22577 participle +22581 participle +22586 indicative +22592 indicative +22595 indicative +22604 subjunctive +22607 indicative +imperative +22618 participle +22623 imperative +22626 indicative +22628 subjunctive +22637 indicative +22643 subjunctive +22645 indicative +22648 infinitive +22654 participle +22663 indicative +22668 indicative +22670 participle +22674 indicative +22676 imperative +22680 imperative +22682 indicative +22686 participle +22690 indicative +infinitive +22698 participle +indicative +22701 participle +22706 indicative +22712 indicative +22720 indicative +22726 indicative +22728 indicative +22733 participle +22738 indicative +22740 infinitive +22743 indicative +22756 indicative +participle +22762 indicative +22768 participle +22770 indicative +22784 indicative +22803 indicative +22805 indicative +22810 participle +indicative +22817 participle +22821 infinitive +indicative +22825 indicative +infinitive +22829 participle +22837 indicative +22840 participle +indicative +22849 indicative +22855 indicative +22860 subjunctive +22866 indicative +22868 imperative +22870 infinitive +22875 indicative +22877 infinitive +22885 infinitive +22888 indicative +22890 indicative +22900 indicative +22907 indicative +22913 imperative +indicative +22922 participle +22927 indicative +22930 participle +22937 participle +22940 participle +22945 indicative +22959 indicative +22965 indicative +22968 subjunctive +22973 participle +22980 indicative +22989 participle +indicative +22995 participle +22999 indicative +23001 indicative +23003 imperative +23005 indicative +imperative +23008 indicative +23014 indicative +23021 indicative +23024 indicative +23028 subjunctive +23032 indicative +23036 indicative +23039 indicative +participle +23043 indicative +23045 indicative +23048 infinitive +23051 infinitive +23059 participle +23062 participle +23064 subjunctive +participle +23068 indicative +23070 indicative +23078 indicative +23082 indicative +23084 subjunctive +23087 subjunctive +23093 indicative +23102 indicative +23104 indicative +23111 indicative +23115 infinitive +23120 indicative +23124 indicative +23127 indicative +23130 indicative +23133 infinitive +23138 participle +23142 participle +indicative +23145 indicative +23150 subjunctive +23152 indicative +23156 indicative +23160 participle +23162 indicative +23165 infinitive +23167 indicative +23169 indicative +23171 indicative +23177 indicative +23181 indicative +23185 participle +23193 indicative +23199 indicative +23203 indicative +infinitive +23206 participle +23213 participle +23216 participle +23220 indicative +23225 indicative +23228 indicative +23231 indicative +23237 participle +23240 participle +indicative +23246 indicative +infinitive +23255 indicative +23262 indicative +23264 participle +imperative +imperative +23277 indicative +23283 indicative +23285 participle +indicative +23289 indicative +23293 indicative +23295 indicative +23297 indicative +participle +indicative +23304 participle +23306 indicative +23309 participle +23311 indicative +23314 indicative +23319 indicative +23327 indicative +indicative +23341 indicative +23343 indicative +23346 indicative +23349 indicative +23351 indicative +23355 indicative +23359 indicative +23363 subjunctive +23365 participle +23370 indicative +23376 participle +23381 participle +23385 indicative +23389 indicative +23391 participle +indicative +indicative +23399 participle +indicative +23403 indicative +23411 indicative +23413 indicative +23415 indicative +23419 indicative +23424 participle +23429 subjunctive +23431 indicative +23448 indicative +23452 participle +23456 infinitive +indicative +23462 indicative +23464 participle +23480 indicative +23486 infinitive +indicative +participle +23491 indicative +23494 indicative +23498 indicative +23502 subjunctive +23506 indicative +infinitive +23510 indicative +23516 infinitive +23518 infinitive +23529 infinitive +23534 infinitive +23539 indicative +23543 participle +23545 indicative +infinitive +23550 participle +23552 participle +23556 indicative +23559 indicative +imperative +23566 indicative +23575 participle +23582 indicative +23586 indicative +23589 infinitive +imperative +23593 imperative +23598 imperative +23603 subjunctive +23607 infinitive +indicative +23613 indicative +23622 indicative +23626 indicative +23628 infinitive +23633 infinitive +23639 subjunctive +23648 subjunctive +23667 indicative +23670 subjunctive +23683 indicative +23686 indicative +23689 indicative +23693 participle +23697 subjunctive +23701 subjunctive +23706 participle +23713 indicative +23724 indicative +23733 indicative +23740 indicative +participle +23750 indicative +23752 infinitive +23754 indicative +23760 indicative +participle +23765 participle +23768 indicative +23773 indicative +23776 infinitive +23778 subjunctive +23791 indicative +23793 subjunctive +23796 indicative +23798 indicative +23800 participle +23803 indicative +23809 indicative +23815 imperative +23819 participle +23822 indicative +23830 participle +23835 indicative +23840 indicative +subjunctive +23851 subjunctive +23855 indicative +23858 participle +23860 indicative +23864 infinitive +23866 indicative +23868 participle +23870 indicative +23874 indicative +23876 infinitive +23880 indicative +23884 participle +23886 indicative +23890 indicative +23898 subjunctive +23900 subjunctive +23902 indicative +23907 indicative +23909 indicative +23912 indicative +23914 indicative +23918 participle +23922 indicative +23929 participle +23937 participle +23939 indicative +23941 participle +indicative +23945 indicative +23948 indicative +23952 indicative +23959 indicative +23965 participle +23972 subjunctive +indicative +23976 indicative +23978 indicative +23982 indicative +23984 indicative +23990 subjunctive +23993 indicative +23996 participle +23998 indicative +24006 indicative +24009 indicative +24011 imperative +24016 indicative +24021 participle +24026 indicative +24029 participle +24033 indicative +participle +24036 indicative +24042 indicative +24045 indicative +24049 indicative +24058 indicative +24063 subjunctive +24068 indicative +imperative +24071 participle +24077 indicative +24081 indicative +24085 participle +24087 participle +24092 indicative +indicative +imperative +24101 participle +24103 indicative +24105 indicative +24110 participle +24118 indicative +24120 imperative +24125 subjunctive +24129 participle +24132 participle +indicative +24135 indicative +24141 infinitive +24143 indicative +24147 participle +24151 indicative +24154 indicative +24156 participle +24165 indicative +24170 indicative +infinitive +24174 indicative +24181 indicative +infinitive +24188 participle +indicative +24195 indicative +24198 subjunctive +24200 indicative +24205 indicative +24212 indicative +24217 indicative +24220 participle +24224 indicative +24227 indicative +24231 indicative +24233 infinitive +24235 indicative +24242 participle +indicative +24249 indicative +24252 indicative +24256 indicative +24263 participle +indicative +24268 indicative +24272 indicative +24274 infinitive +indicative +24282 participle +24284 indicative +24290 participle +24292 indicative +24300 subjunctive +24306 indicative +24311 subjunctive +24314 indicative +24317 participle +24319 indicative +24324 indicative +24330 participle +24334 indicative +24337 indicative +24341 indicative +24346 indicative +24348 imperative +24352 indicative +24354 indicative +24361 indicative +24363 infinitive +24368 indicative +24373 indicative +24377 subjunctive +24385 indicative +24387 indicative +24392 subjunctive +24399 subjunctive +24405 participle +24407 indicative +24411 indicative +24419 indicative +24425 subjunctive +24430 imperative +24433 indicative +24436 infinitive +24444 participle +infinitive +24459 subjunctive +24461 imperative +24464 indicative +24466 infinitive +24475 participle +infinitive +24485 subjunctive +24487 imperative +24490 indicative +24493 infinitive +24502 participle +infinitive +24512 indicative +24517 indicative +24521 indicative +24530 subjunctive +24534 indicative +imperative +24540 imperative +24545 participle +indicative +24557 indicative +24564 indicative +24566 indicative +24569 participle +24571 indicative +24574 indicative +24577 infinitive +participle +24582 participle +indicative +24587 indicative +24591 indicative +indicative +24596 infinitive +24598 infinitive +24602 indicative +24608 indicative +24620 indicative +24624 indicative +24633 indicative +24641 indicative +24650 indicative +24653 imperative +24663 indicative +24666 indicative +24670 subjunctive +24675 subjunctive +24677 indicative +24683 participle +24687 subjunctive +24689 indicative +24691 indicative +24696 subjunctive +24700 indicative +24703 participle +24706 indicative +24708 indicative +24710 imperative +24713 infinitive +24717 imperative +24722 indicative +24728 indicative +24733 subjunctive +24742 subjunctive +24746 participle +24748 indicative +participle +24755 participle +24760 participle +24762 participle +24764 indicative +24769 subjunctive +24773 subjunctive +24777 indicative +24781 indicative +24792 indicative +24794 subjunctive +24796 subjunctive +24798 subjunctive +24800 subjunctive +24802 subjunctive +imperative +24812 indicative +24817 indicative +24824 participle +24826 indicative +24829 indicative +24833 indicative +imperative +24836 indicative +imperative +24839 imperative +24843 indicative +24848 imperative +imperative +24853 participle +24857 indicative +participle +24860 indicative +participle +24865 participle +24868 indicative +24877 participle +24883 indicative +24887 indicative +24896 participle +indicative +24902 indicative +24908 infinitive +24910 indicative +24917 infinitive +24925 infinitive +24929 indicative +participle +24935 indicative +infinitive +participle +24941 indicative +24955 indicative +24958 infinitive +24960 imperative +24962 indicative +24965 indicative +24967 indicative +24971 indicative +24974 indicative +24976 indicative +24998 subjunctive +25023 participle +25029 indicative +25036 indicative +25040 participle +25044 indicative +participle +25050 indicative +25053 participle +indicative +25056 participle +25060 indicative +25062 infinitive +25064 participle +25066 infinitive +25068 imperative +indicative +25077 indicative +25084 indicative +25088 indicative +25093 indicative +25096 indicative +25099 indicative +25102 indicative +25107 indicative +25109 indicative +25117 participle +25120 indicative +25124 subjunctive +25126 subjunctive +25130 indicative +25132 indicative +25135 subjunctive +25139 indicative +25141 imperative +25152 subjunctive +25160 indicative +25163 indicative +25165 indicative +indicative +infinitive +25172 indicative +25178 indicative +infinitive +25182 indicative +25184 indicative +25188 indicative +25194 indicative +indicative +25201 indicative +indicative +25205 infinitive +25213 indicative +25215 infinitive +25218 indicative +25220 participle +25223 indicative +infinitive +25230 participle +25234 indicative +25236 indicative +25239 participle +infinitive +25243 indicative +25249 indicative +25254 indicative +25260 subjunctive +25262 infinitive +25265 indicative +25271 subjunctive +25274 infinitive +25276 indicative +25286 indicative +infinitive +25289 infinitive +25291 infinitive +25299 indicative +25303 participle +25320 indicative +25325 participle +25330 indicative +indicative +infinitive +25334 infinitive +25338 imperative +25341 indicative +25345 subjunctive +25350 indicative +25353 imperative +25356 participle +25359 indicative +imperative +25363 indicative +25366 participle +25368 imperative +imperative +indicative +25374 participle +25378 participle +indicative +25384 participle +25388 indicative +25391 subjunctive +indicative +25396 indicative +25400 subjunctive +25404 indicative +25406 imperative +25410 indicative +25414 indicative +25416 indicative +25423 indicative +25435 indicative +25441 indicative +25443 imperative +25452 participle +25455 indicative +participle +25463 indicative +imperative +25467 imperative +25472 subjunctive +25474 indicative +25476 imperative +25481 indicative +25485 indicative +25489 indicative +25491 indicative +25493 participle +25501 indicative +25507 participle +indicative +25511 indicative +participle +25517 indicative +25520 indicative +25524 indicative +25527 indicative +25534 indicative +25540 indicative +25548 indicative +25555 participle +25561 participle +25564 participle +indicative +25567 participle +25569 participle +25573 participle +25575 participle +25586 indicative +25595 participle +25598 participle +25600 indicative +25609 participle +25613 indicative +25615 participle +25619 participle +25621 indicative +25625 indicative +25629 participle +25633 indicative +25641 indicative +25644 participle +indicative +25655 optative +25657 indicative +25662 indicative +25666 participle +25670 indicative +infinitive +25673 participle +25676 participle +25689 participle +25692 indicative +25695 indicative +25698 subjunctive +25704 indicative +25706 indicative +25709 indicative +25716 indicative +25722 indicative +25727 indicative +25734 indicative +25737 subjunctive +25739 indicative +25745 indicative +25753 indicative +indicative +25759 participle +25761 indicative +25764 participle +25768 participle +25771 indicative +25774 imperative +25778 indicative +indicative +25781 participle +25784 indicative +25786 imperative +25790 indicative +25795 subjunctive +25799 imperative +25801 imperative +25807 subjunctive +25813 subjunctive +25816 indicative +indicative +indicative +25822 indicative +25826 indicative +25828 indicative +imperative +25831 indicative +25833 indicative +25837 indicative +participle +imperative +25842 indicative +25854 subjunctive +25860 indicative +25868 participle +25870 indicative +25882 indicative +25888 indicative +25892 indicative +25898 subjunctive +25902 indicative +25904 indicative +25909 imperative +25912 indicative +25918 indicative +25925 indicative +25929 imperative +25932 indicative +25935 participle +25937 subjunctive +25940 indicative +25945 indicative +25948 subjunctive +25951 indicative +25956 indicative +25962 indicative +25964 participle +25967 indicative +25969 indicative +25973 indicative +25977 indicative +25983 indicative +25985 indicative +25989 infinitive +25992 indicative +25994 indicative +25997 indicative +26000 indicative +26003 indicative +26007 indicative +26009 indicative +26020 subjunctive +26027 participle +26029 indicative +26031 indicative +26035 indicative +26041 indicative +26043 indicative +26046 indicative +26048 indicative +26054 participle +26057 participle +26059 indicative +26063 indicative +26068 participle +26070 indicative +26080 indicative +26083 indicative +26086 imperative +subjunctive +26091 indicative +26095 participle +indicative +26099 indicative +26105 indicative +26110 indicative +26112 indicative +26116 indicative +26124 indicative +26127 indicative +26129 participle +26131 indicative +26137 indicative +26140 indicative +26146 indicative +26148 infinitive +26150 indicative +26154 indicative +26160 indicative +26162 participle +26164 indicative +26166 indicative +26177 subjunctive +26180 participle +indicative +26184 indicative +26187 indicative +26190 indicative +26196 indicative +26207 indicative +indicative +infinitive +26214 subjunctive +26217 subjunctive +26220 participle +26224 indicative +26228 indicative +imperative +26233 subjunctive +26236 indicative +26238 indicative +26249 indicative +26255 indicative +26259 imperative +26268 indicative +26272 indicative +26277 indicative +26280 infinitive +26282 indicative +26284 participle +26287 indicative +26293 subjunctive +26295 subjunctive +26299 subjunctive +26302 subjunctive +26309 subjunctive +26316 indicative +26320 indicative +26323 participle +26325 indicative +26330 indicative +26333 indicative +26335 participle +26345 indicative +26352 indicative +26357 subjunctive +26361 indicative +26365 indicative +26368 indicative +26375 indicative +26377 participle +26389 subjunctive +26391 indicative +26393 indicative +26395 indicative +26406 indicative +26408 indicative +26417 indicative +26421 participle +26433 indicative +26437 participle +26439 indicative +26441 participle +26445 participle +26447 participle +participle +26451 indicative +26453 indicative +26456 indicative +26460 indicative +26465 indicative +imperative +26474 indicative +26476 indicative +26506 indicative +26517 indicative +26519 indicative +26527 indicative +26530 indicative +26533 indicative +26539 infinitive +26557 infinitive +26563 indicative +26572 participle +26576 indicative +indicative +26581 indicative +26590 indicative +26592 infinitive +26594 participle +26597 indicative +participle +26603 indicative +26611 indicative +26614 indicative +26620 indicative +26625 imperative +26631 subjunctive +26641 indicative +26648 indicative +26653 indicative +26661 indicative +imperative +26667 participle +26670 infinitive +26687 participle +26695 participle +26697 indicative +26701 participle +26705 indicative +26709 indicative +26717 indicative +26720 participle +26724 indicative +26728 indicative +26731 participle +26735 indicative +26738 indicative +26747 indicative +26750 participle +26758 participle +26760 indicative +26767 indicative +26770 indicative +26776 participle +26781 indicative +26788 imperative +26797 indicative +26799 indicative +26806 subjunctive +26813 subjunctive +26815 participle +26825 indicative +26836 imperative +26840 indicative +26846 subjunctive +26849 infinitive +26853 indicative +infinitive +26856 imperative +26860 subjunctive +26862 indicative +26867 participle +26870 indicative +26873 indicative +26876 subjunctive +26882 imperative +indicative +infinitive +26890 indicative +26898 indicative +26902 indicative +26908 imperative +26911 indicative +26918 indicative +26924 indicative +26936 infinitive +26939 indicative +26942 subjunctive +26944 participle +26946 imperative +26948 subjunctive +26952 subjunctive +26959 imperative +26962 indicative +26965 participle +26972 indicative +26981 indicative +26986 indicative +26989 indicative +participle +26999 participle +27003 indicative +27006 subjunctive +27011 participle +27014 indicative +27016 participle +imperative +27023 imperative +27032 imperative +27034 imperative +27036 infinitive +27047 imperative +27051 infinitive +27060 participle +27063 participle +27069 imperative +27072 subjunctive +27075 indicative +27082 indicative +27088 indicative +27097 subjunctive +27101 indicative +27107 indicative +27115 indicative +indicative +27124 subjunctive +imperative +27129 imperative +27132 imperative +27134 indicative +27139 indicative +27145 infinitive +27152 imperative +indicative +27167 indicative +27172 indicative +27179 indicative +participle +27191 indicative +27194 indicative +27199 participle +27209 indicative +27213 indicative +27231 imperative +27240 subjunctive +27242 subjunctive +27245 indicative +27250 indicative +27255 subjunctive +27257 participle +imperative +27261 indicative +27265 indicative +27270 subjunctive +27278 subjunctive +27284 indicative +27290 indicative +27300 indicative +27313 imperative +imperative +27317 indicative +27321 indicative +27325 participle +27330 participle +27343 indicative +27345 subjunctive +27347 imperative +27350 indicative +27356 indicative +27366 participle +27368 subjunctive +27370 participle +27374 indicative +27376 indicative +imperative +27379 indicative +27389 indicative +27399 participle +subjunctive +27402 indicative +27409 indicative +27414 participle +27424 participle +27426 indicative +27428 participle +27434 participle +27437 indicative +27443 indicative +participle +27454 indicative +27456 indicative +27460 infinitive +27465 infinitive +27469 indicative +27474 indicative +imperative +27480 indicative +27483 indicative +27490 indicative +27495 subjunctive +indicative +27499 infinitive +27504 indicative +27506 indicative +indicative +indicative +infinitive +27518 indicative +27522 subjunctive +27531 indicative +27533 indicative +27544 indicative +27550 subjunctive +27554 participle +indicative +27557 indicative +27560 infinitive +27562 indicative +27566 subjunctive +27576 indicative +indicative +27582 indicative +27584 participle +subjunctive +27587 subjunctive +27591 indicative +27597 indicative +27599 imperative +27604 indicative +27609 participle +imperative +27615 subjunctive +imperative +27622 indicative +27624 indicative +27635 subjunctive +27639 indicative +27642 participle +27646 imperative +27649 indicative +27653 indicative +27658 indicative +27660 indicative +27663 indicative +27668 participle +indicative +27675 participle +27677 participle +27680 indicative +27682 indicative +27685 indicative +27691 participle +27694 indicative +infinitive +27697 infinitive +27706 indicative +27712 participle +27724 indicative +27726 indicative +27740 indicative +27745 indicative +27750 participle +27752 participle +27754 participle +indicative +27757 indicative +27760 indicative +imperative +27763 indicative +27768 participle +27770 participle +indicative +27774 indicative +27779 indicative +27782 indicative +27789 participle +27793 indicative +27799 subjunctive +27811 subjunctive +27819 participle +indicative +27827 indicative +27833 indicative +27835 indicative +indicative +27842 indicative +27846 infinitive +27848 indicative +27856 indicative +27861 indicative +27866 indicative +27871 indicative +27883 infinitive +27886 indicative +27890 indicative +27892 subjunctive +27894 infinitive +27899 indicative +27904 indicative +27906 indicative +27914 indicative +27918 imperative +27921 subjunctive +27923 indicative +27935 indicative +infinitive +27938 infinitive +27940 indicative +27943 indicative +27949 imperative +27952 imperative +27954 participle +27956 indicative +27961 indicative +27965 indicative +subjunctive +27972 indicative +27979 imperative +27989 indicative +27994 indicative +27996 indicative +27998 participle +28000 indicative +28004 indicative +28006 indicative +28009 infinitive +imperative +28012 imperative +28015 subjunctive +28028 participle +indicative +28033 participle +28036 participle +indicative +28039 participle +28041 indicative +participle +28048 indicative +28050 subjunctive +28053 indicative +28057 indicative +28059 indicative +28063 indicative +indicative +indicative +28068 imperative +indicative +28079 imperative +subjunctive +imperative +28083 participle +28085 indicative +28090 participle +indicative +28115 indicative +28117 participle +28121 participle +28124 subjunctive +28126 indicative +imperative +28130 imperative +28133 participle +28135 participle +28137 indicative +28140 indicative +28144 indicative +28149 indicative +28155 participle +participle +28159 indicative +28165 indicative +28170 participle +28173 indicative +28178 indicative +28183 infinitive +28187 indicative +28193 participle +28196 indicative +28200 subjunctive +28204 participle +28206 indicative +28211 indicative +28213 participle +28218 indicative +28222 participle +28226 indicative +28228 indicative +28235 indicative +28250 indicative +28260 indicative +participle +28266 participle +28277 indicative +28284 infinitive +28288 indicative +28291 indicative +28299 indicative +28302 participle +indicative +28306 participle +28309 indicative +28311 participle +28314 indicative +28326 indicative +28331 indicative +28336 participle +28341 indicative +28344 participle +28346 indicative +28351 indicative +28354 indicative +28357 indicative +28362 indicative +28365 indicative +28368 indicative +28378 indicative +28380 indicative +28382 indicative +28391 participle +28393 participle +28402 participle +28406 indicative +28411 indicative +indicative +28417 indicative +28421 indicative +28424 infinitive +28427 indicative +28429 infinitive +28432 infinitive +28437 infinitive +28440 infinitive +28442 imperative +28448 indicative +28450 participle +28457 indicative +28464 participle +28467 participle +participle +28470 indicative +28478 indicative +28481 indicative +participle +28484 indicative +28486 indicative +28489 indicative +28491 indicative +28499 participle +28501 indicative +28503 infinitive +28505 participle +28510 indicative +28514 indicative +28520 participle +indicative +28527 indicative +28531 indicative +28534 indicative +infinitive +28537 infinitive +28540 indicative +28545 indicative +28551 indicative +28553 indicative +28559 indicative +28567 infinitive +28570 indicative +28572 participle +indicative +28580 participle +28590 participle +28593 indicative +28595 indicative +28598 indicative +28603 indicative +28610 participle +28612 indicative +28614 indicative +28616 indicative +28625 indicative +28627 participle +28629 indicative +28631 imperative +28634 indicative +28640 indicative +28642 infinitive +28648 indicative +28653 indicative +28655 indicative +participle +28658 participle +28668 indicative +28670 participle +28673 indicative +infinitive +28676 indicative +28681 indicative +28683 participle +indicative +subjunctive +28692 indicative +28696 indicative +28703 indicative +28710 subjunctive +28716 participle +indicative +28721 subjunctive +28723 indicative +28731 indicative +imperative +28737 indicative +28740 indicative +28746 indicative +imperative +28752 participle +28757 infinitive +indicative +28763 indicative +28766 participle +28768 subjunctive +28772 indicative +28778 indicative +28781 indicative +28786 indicative +28790 indicative +28792 participle +28796 indicative +infinitive +28799 imperative +28804 indicative +28810 indicative +28813 participle +28816 indicative +28820 indicative +28822 indicative +28827 indicative +28833 indicative +28836 subjunctive +28839 indicative +participle +28844 participle +28853 subjunctive +28858 indicative +28865 indicative +participle +28870 indicative +28872 participle +28877 indicative +28879 indicative +28882 indicative +28886 participle +28892 subjunctive +28894 indicative +28898 indicative +28901 indicative +participle +28915 indicative +28928 participle +indicative +28931 participle +28936 participle +28939 participle +28943 participle +28947 imperative +28949 participle +28957 participle +28963 indicative +28965 indicative +28967 infinitive +28969 indicative +28975 imperative +28981 subjunctive +28983 subjunctive +28986 participle +28989 indicative +28992 participle +28996 indicative +29008 indicative +29016 indicative +29018 indicative +participle +29028 indicative +29033 participle +participle +indicative +imperative +29038 indicative +29041 participle +29043 participle +29046 participle +29048 indicative +29050 participle +imperative +subjunctive +29054 indicative +29056 infinitive +29061 participle +29064 indicative +29070 indicative +29081 participle +29085 participle +29088 indicative +indicative +29096 indicative +29098 indicative +29103 participle +29123 indicative +29127 indicative +29130 indicative +29136 participle +29143 participle +29145 indicative +29148 indicative +29150 participle +29160 indicative +participle +29166 participle +indicative +29172 indicative +29180 indicative +29183 indicative +29185 participle +29188 indicative +29192 indicative +29194 participle +29198 indicative +29204 participle +29206 participle +29208 indicative +29212 indicative +29217 indicative +participle +29222 indicative +29238 indicative +29240 indicative +29242 participle +29255 indicative +29258 participle +subjunctive +29268 indicative +29272 participle +29276 indicative +29280 indicative +29290 participle +indicative +29293 indicative +29297 indicative +29301 participle +29305 indicative +29307 participle +29311 participle +29315 indicative +29318 indicative +29321 imperative +indicative +29327 participle +indicative +29330 indicative +29332 imperative +29336 indicative +29339 imperative +imperative +29348 indicative +29355 indicative +29357 indicative +29360 participle +indicative +29366 indicative +29374 indicative +29376 indicative +29378 participle +29382 indicative +29389 indicative +29393 participle +indicative +29398 participle +participle +29401 participle +29403 participle +29405 indicative +29407 indicative +29410 indicative +29417 participle +indicative +29422 participle +29426 participle +indicative +29432 indicative +29435 participle +29439 indicative +29441 indicative +29449 participle +29451 participle +29453 indicative +29455 indicative +29457 participle +29462 imperative +29469 participle +29471 participle +indicative +29475 participle +indicative +29481 participle +indicative +29488 indicative +29491 indicative +29493 indicative +29497 subjunctive +29501 subjunctive +29505 indicative +29508 indicative +29516 infinitive +29518 indicative +29523 indicative +29530 participle +indicative +29535 participle +29539 participle +29542 participle +29547 participle +29553 indicative +29566 indicative +29579 indicative +infinitive +29584 participle +29589 indicative +29597 participle +29600 indicative +29602 participle +29608 infinitive +29612 subjunctive +29615 indicative +29619 indicative +29647 indicative +29653 participle +29665 indicative +29669 indicative +29675 participle +indicative +29682 indicative +29685 infinitive +29701 indicative +29703 infinitive +participle +29716 indicative +participle +29724 indicative +29728 participle +29736 indicative +29738 participle +29741 indicative +29745 indicative +29751 imperative +29754 indicative +29763 indicative +29767 indicative +29773 indicative +29784 indicative +29786 indicative +29796 subjunctive +29800 indicative +29811 indicative +29819 indicative +29827 infinitive +29837 infinitive +29840 participle +29842 indicative +29849 indicative +29853 indicative +29859 participle +29865 participle +29868 indicative +29871 indicative +29874 participle +29879 indicative +infinitive +29884 infinitive +29888 imperative +indicative +participle +29893 participle +infinitive +29898 subjunctive +29903 indicative +29908 indicative +29914 indicative +participle +29921 indicative +29924 infinitive +29930 participle +29932 indicative +infinitive +29936 indicative +29939 indicative +29945 indicative +participle +29949 indicative +29952 indicative +29954 indicative +29960 indicative +29970 indicative +29976 indicative +29980 participle +29984 indicative +29989 indicative +infinitive +30001 indicative +30017 participle +30032 participle +30035 indicative +imperative +participle +30047 indicative +30049 indicative +30051 optative +30056 indicative +30061 imperative +30064 indicative +30070 imperative +indicative +30075 indicative +30078 indicative +30084 indicative +30089 indicative +30091 indicative +30103 indicative +30116 indicative +30119 indicative +30125 indicative +30130 indicative +30132 participle +30135 indicative +30139 indicative +30145 indicative +30150 participle +30152 indicative +30156 imperative +30163 indicative +30172 indicative +30175 participle +30179 indicative +30186 indicative +30188 imperative +30192 optative +30199 indicative +30206 participle +30211 indicative +30221 indicative +30227 indicative +30231 indicative +30233 indicative +30240 indicative +30248 indicative +30254 indicative +30258 indicative +participle +30264 participle +30275 subjunctive +30284 imperative +30286 indicative +30296 indicative +30308 participle +30310 indicative +30313 participle +30318 indicative +30320 indicative +30327 indicative +30338 indicative +30346 imperative +30350 indicative +30356 indicative +30375 participle +30377 indicative +30382 indicative +30387 indicative +30392 indicative +30394 participle +indicative +30398 participle +indicative +30401 indicative +30405 infinitive +30417 indicative +30423 indicative +30431 indicative +30439 indicative +30443 infinitive +30446 indicative +30449 indicative +30457 indicative +30465 indicative +30468 indicative +30474 indicative +infinitive +30479 indicative +30489 participle +30493 indicative +30496 indicative +30499 indicative +30503 indicative +30510 indicative +30515 indicative +30521 optative +30523 infinitive +30526 participle +30528 indicative +participle +30531 indicative +30535 indicative +30538 indicative +30548 indicative +participle +30553 indicative +30558 participle +30567 indicative +30573 indicative +30576 participle +30581 participle +30587 indicative +30592 indicative +30600 indicative +30604 indicative +participle +30613 indicative +30615 indicative +30621 indicative +30631 indicative +30649 participle +30651 infinitive +30658 infinitive +30664 indicative +30671 infinitive +30676 participle +30678 infinitive +30696 indicative +30698 indicative +30701 infinitive +30705 infinitive +30722 indicative +30727 infinitive +30734 participle +30736 infinitive +30746 indicative +30748 indicative +30751 indicative +30763 indicative +30768 indicative +30773 infinitive +30780 indicative +participle +30786 indicative +30788 infinitive +30795 indicative +30811 indicative +30815 infinitive +30822 infinitive +30826 participle +30828 participle +30831 indicative +30834 infinitive +30837 indicative +30841 infinitive +30844 indicative +30851 indicative +30854 indicative +30860 indicative +30868 indicative +30874 participle +30876 participle +30887 indicative +30892 indicative +30895 indicative +30899 indicative +30904 imperative +30906 imperative +indicative +30912 indicative +30917 indicative +30922 indicative +30932 indicative +30934 participle +30936 participle +30941 indicative +30948 participle +30952 participle +30965 indicative +30967 indicative +30977 indicative +30981 subjunctive +30985 subjunctive +30990 participle +30994 indicative +30997 indicative +participle +31000 indicative +31010 participle +31015 participle +indicative +31021 participle +31030 participle +indicative +31034 participle +31043 indicative +31048 participle +31054 indicative +31057 participle +31059 participle +31065 indicative +31067 indicative +31069 indicative +31074 indicative +31078 infinitive +31081 indicative +31087 participle +31093 infinitive +31100 indicative +31110 indicative +31114 infinitive +31118 indicative +31125 participle +31130 indicative +31133 infinitive +31137 participle +31149 imperative +31151 indicative +31164 participle +31171 indicative +31175 indicative +participle +31184 infinitive +31189 subjunctive +31194 indicative +31204 infinitive +31211 infinitive +31215 participle +31222 indicative +31228 indicative +31232 indicative +31235 indicative +31246 indicative +31254 indicative +31270 indicative +participle +31280 participle +31284 indicative +31288 indicative +31294 imperative +31296 indicative +31308 participle +31315 indicative +31319 subjunctive +31325 indicative +31334 participle +31338 participle +31356 indicative +31362 participle +31370 participle +indicative +31375 indicative +31380 participle +31385 indicative +31392 indicative +31403 indicative +31405 indicative +participle +31411 indicative +31415 indicative +31429 indicative +31432 participle +31440 participle +31445 infinitive +31447 indicative +31455 indicative +31460 participle +31462 infinitive +31466 indicative +31470 indicative +31480 participle +indicative +31484 participle +31487 indicative +31491 indicative +31496 participle +31502 participle +31505 participle +31508 indicative +31511 participle +31521 participle +31523 indicative +31525 indicative +31533 indicative +31536 imperative +31541 participle +indicative +31545 indicative +31550 indicative +31553 indicative +31560 infinitive +31562 indicative +31566 indicative +31570 indicative +31573 indicative +31577 indicative +31581 indicative +participle +31588 indicative +31598 indicative +31618 participle +31624 participle +31633 participle +31643 participle +31649 indicative +31661 indicative +31668 participle +31675 indicative +31683 participle +31687 imperative +31692 imperative +31698 indicative +31704 indicative +31706 indicative +31718 indicative +31726 indicative +31728 participle +infinitive +31736 indicative +31738 infinitive +31741 participle +31744 imperative +31751 subjunctive +infinitive +31756 indicative +31760 indicative +31763 indicative +31770 infinitive +31784 indicative +31789 participle +31792 indicative +31796 indicative +31798 indicative +31802 participle +31805 subjunctive +31807 participle +indicative +31811 participle +31814 imperative +31817 participle +31820 participle +31823 imperative +31825 indicative +31828 infinitive +31830 indicative +31835 subjunctive +31838 indicative +31845 participle +31847 imperative +31849 indicative +31852 participle +participle +31855 subjunctive +31859 indicative +31862 subjunctive +31864 subjunctive +31866 imperative +31871 participle +31875 participle +31887 optative +31890 indicative +participle +31898 indicative +31901 indicative +31907 indicative +31909 infinitive +31917 indicative +31930 infinitive +31935 infinitive +31945 indicative +31953 participle +indicative +31962 participle +31977 indicative +31980 indicative +31985 indicative +31991 indicative +31994 infinitive +32000 participle +32002 participle +infinitive +32007 infinitive +32022 infinitive +32024 indicative +32032 indicative +32036 indicative +participle +32042 indicative +participle +32203 indicative +32208 indicative +32217 participle +32223 indicative +32230 participle +32232 indicative +32234 indicative +32239 indicative +32243 imperative +32248 subjunctive +32251 indicative +32256 indicative +32262 indicative +32266 participle +32268 indicative +32279 indicative +32284 indicative +32295 indicative +32299 subjunctive +indicative +32305 subjunctive +32308 indicative +32312 participle +32315 indicative +32317 indicative +indicative +32326 indicative +32328 indicative +32333 indicative +32340 indicative +32343 indicative +32347 imperative +32352 indicative +32357 indicative +32361 infinitive +32367 indicative +32371 subjunctive +32378 participle +indicative +32384 indicative +32386 indicative +32392 participle +32397 indicative +32403 indicative +32416 indicative +32425 indicative +32430 participle +32434 indicative +32438 indicative +participle +32441 indicative +32444 participle +32455 indicative +infinitive +32458 indicative +32465 participle +32468 indicative +32472 indicative +participle +32480 indicative +32482 infinitive +32484 indicative +32486 infinitive +32492 infinitive +participle +32496 infinitive +32501 participle +32504 participle +32507 indicative +32515 indicative +participle +32519 indicative +infinitive +32525 indicative +32535 indicative +32538 indicative +32545 participle +32551 indicative +32555 indicative +32558 indicative +32562 indicative +32568 imperative +32570 indicative +32572 participle +32576 imperative +32584 indicative +32586 indicative +32592 indicative +32600 indicative +32604 indicative +32613 indicative +32623 indicative +32634 indicative +32648 indicative +32659 indicative +32666 indicative +32672 participle +32675 participle +indicative +32682 indicative +32693 indicative +32695 infinitive +32699 participle +32703 indicative +32705 indicative +32712 indicative +participle +32719 indicative +32727 indicative +32735 indicative +32737 participle +32742 indicative +32752 indicative +infinitive +32755 indicative +32758 indicative +32764 indicative +32768 participle +imperative +32771 imperative +32777 participle +32782 indicative +32786 participle +32789 indicative +32794 indicative +32797 participle +32807 indicative +32812 indicative +32814 indicative +32824 participle +32828 indicative +32837 indicative +participle +32842 indicative +32847 participle +32850 indicative +32854 indicative +32858 participle +indicative +32862 participle +32867 indicative +participle +32871 indicative +32882 participle +indicative +32886 indicative +32891 participle +32893 participle +32896 indicative +32902 participle +32904 indicative +32906 infinitive +32908 indicative +32912 infinitive +32914 participle +32916 participle +indicative +32924 indicative +32927 indicative +32931 indicative +32935 infinitive +32940 indicative +32948 infinitive +32954 indicative +32958 indicative +32960 indicative +participle +32968 indicative +32973 infinitive +32976 infinitive +32983 indicative +participle +32990 indicative +32993 participle +33002 participle +indicative +33007 participle +33013 indicative +33015 indicative +33020 infinitive +33023 participle +33027 indicative +33032 indicative +participle +indicative +33038 imperative +33043 imperative +33050 participle +33052 indicative +33057 participle +33059 indicative +33065 indicative +33070 participle +indicative +33076 indicative +33081 indicative +33089 participle +infinitive +33093 indicative +33095 indicative +33100 infinitive +33103 participle +33106 indicative +33110 participle +imperative +33117 indicative +33121 indicative +33134 indicative +33144 indicative +33149 indicative +33156 imperative +33161 indicative +participle +33164 participle +33170 participle +33172 indicative +33175 indicative +33178 infinitive +33185 imperative +33190 participle +33193 participle +33196 indicative +33198 participle +33201 subjunctive +indicative +33204 infinitive +33206 participle +33209 indicative +33211 participle +indicative +imperative +33218 indicative +33223 indicative +33226 infinitive +33228 participle +imperative +33234 imperative +33240 indicative +33246 indicative +33253 indicative +33256 infinitive +33258 infinitive +33265 indicative +participle +33271 participle +33273 indicative +33280 indicative +participle +33283 indicative +participle +33289 indicative +participle +33303 indicative +33306 infinitive +33309 imperative +33311 participle +33316 indicative +participle +33319 indicative +33321 infinitive +33323 infinitive +33328 participle +33330 subjunctive +33335 participle +33342 indicative +33354 participle +33358 indicative +33360 indicative +33366 indicative +infinitive +33373 participle +33375 indicative +33378 indicative +33381 indicative +33383 infinitive +33392 participle +33396 participle +indicative +33401 indicative +33407 indicative +33409 infinitive +indicative +33416 infinitive +imperative +33419 imperative +33422 subjunctive +33429 indicative +33433 infinitive +33435 indicative +33437 participle +33439 indicative +imperative +33442 participle +33446 imperative +33453 participle +33456 participle +33459 indicative +indicative +33465 participle +33470 indicative +33473 indicative +33477 indicative +33479 participle +33481 indicative +33487 indicative +33489 indicative +33493 participle +33498 indicative +33500 imperative +33503 participle +33505 participle +indicative +33509 indicative +33519 indicative +33526 indicative +participle +33531 indicative +33542 participle +33550 indicative +33552 indicative +33554 participle +33557 indicative +33563 indicative +33565 participle +33569 participle +33571 indicative +infinitive +33580 indicative +33586 indicative +33590 indicative +33599 indicative +33601 indicative +33605 indicative +33609 indicative +33620 indicative +infinitive +infinitive +33624 indicative +33628 subjunctive +33634 indicative +33640 indicative +33651 participle +indicative +33662 indicative +33667 indicative +33676 indicative +33685 indicative +33694 indicative +33698 indicative +33708 participle +33710 indicative +33713 indicative +33717 indicative +33719 indicative +33722 infinitive +33727 indicative +33729 indicative +33735 participle +33742 indicative +33744 indicative +33747 indicative +33751 participle +33754 indicative +33758 indicative +33761 indicative +33764 indicative +33770 participle +33772 indicative +33783 participle +indicative +33786 indicative +33791 infinitive +33793 indicative +33800 indicative +33802 indicative +33811 indicative +33815 infinitive +33821 infinitive +33823 indicative +33832 indicative +33835 indicative +33846 indicative +33848 subjunctive +infinitive +33853 indicative +33858 indicative +33863 participle +33866 imperative +33868 imperative +33873 participle +indicative +33876 indicative +33881 indicative +33884 indicative +33887 infinitive +33889 infinitive +33891 infinitive +33893 infinitive +33895 participle +33898 indicative +33900 imperative +33906 indicative +33908 indicative +33914 indicative +33917 indicative +33922 optative +33926 indicative +33931 infinitive +33936 infinitive +33938 indicative +participle +33947 indicative +33949 indicative +33954 participle +33961 indicative +33965 indicative +33990 participle +33999 indicative +34002 participle +34005 indicative +34032 indicative +infinitive +34036 infinitive +34043 participle +34047 indicative +34052 indicative +infinitive +34059 indicative +34061 indicative +34065 participle +34073 indicative +34079 indicative +34086 participle +34089 indicative +34092 participle +34095 indicative +34097 indicative +34099 subjunctive +34105 subjunctive +34108 subjunctive +34110 subjunctive +34121 imperative +34127 imperative +34129 imperative +34141 indicative +34153 indicative +34160 participle +34163 indicative +34166 participle +34169 indicative +34171 indicative +34176 subjunctive +34184 indicative +34191 indicative +34194 participle +imperative +34200 imperative +34202 participle +34204 imperative +34206 participle +34208 imperative +34211 participle +34214 participle +34219 imperative +34226 participle +34234 subjunctive +34236 participle +34238 imperative +34242 participle +34246 imperative +34249 indicative +34251 subjunctive +34255 imperative +34260 indicative +34262 participle +34267 indicative +34273 participle +34275 indicative +34279 subjunctive +34281 participle +34286 indicative +34292 indicative +34295 subjunctive +34298 indicative +infinitive +34303 indicative +34307 indicative +34309 subjunctive +34313 imperative +34318 imperative +34320 imperative +34322 participle +34324 indicative +34330 indicative +34336 indicative +34342 imperative +34349 indicative +34352 imperative +34356 subjunctive +34359 imperative +34363 subjunctive +imperative +34366 indicative +imperative +34369 indicative +34373 participle +participle +participle +indicative +34384 indicative +indicative +34388 indicative +34393 indicative +34396 infinitive +34401 indicative +34403 indicative +34409 participle +34411 indicative +34418 indicative +34437 indicative +34439 indicative +infinitive +34445 imperative +subjunctive +34462 participle +34464 imperative +34474 indicative +34484 infinitive +34487 indicative +participle +34497 participle +34507 indicative +34512 indicative +34518 indicative +34528 indicative +34537 indicative +34544 indicative +34551 indicative +34556 indicative +34558 indicative +34561 participle +34565 participle +34570 participle +34572 indicative +34575 indicative +34578 indicative +34580 participle +34583 indicative +34585 indicative +34587 indicative +34594 participle +indicative +34603 indicative +infinitive +34609 infinitive +34613 participle +34616 participle +34618 indicative +34620 participle +34628 indicative +34633 indicative +34635 indicative +34643 indicative +34653 indicative +34661 participle +indicative +infinitive +34665 indicative +34669 participle +34673 indicative +34679 participle +34682 participle +subjunctive +34689 participle +34693 indicative +34696 participle +34699 indicative +34701 indicative +34704 indicative +34712 indicative +34717 indicative +34725 participle +34729 indicative +34733 participle +34737 imperative +34740 indicative +34747 subjunctive +34751 indicative +34754 infinitive +34756 imperative +34759 imperative +34766 indicative +34770 participle +participle +34776 indicative +34778 imperative +34780 indicative +34783 imperative +34785 indicative +34790 imperative +34793 indicative +34795 participle +34799 indicative +34802 participle +34804 participle +34807 indicative +indicative +34816 indicative +34818 participle +34823 participle +indicative +34827 participle +34829 indicative +34833 indicative +34836 participle +34839 indicative +34849 indicative +34855 imperative +indicative +participle +34865 indicative +34872 indicative +34876 participle +34880 indicative +34884 indicative +34887 imperative +34889 participle +indicative +34895 participle +indicative +34898 indicative +34901 indicative +imperative +34904 indicative +34908 indicative +infinitive +34911 indicative +34917 indicative +34921 indicative +34924 participle +34928 indicative +34933 indicative +34940 indicative +34955 indicative +34964 participle +34972 indicative +34976 participle +34978 indicative +34980 participle +34983 indicative +34985 participle +34990 indicative +34994 indicative +34998 participle +35000 indicative +35002 participle +35005 indicative +35010 indicative +35022 indicative +infinitive +35025 participle +indicative +35028 participle +imperative +35032 indicative +35034 indicative +35036 indicative +35038 indicative +35040 indicative +35043 indicative +35045 indicative +35047 indicative +35050 indicative +35054 subjunctive +35058 participle +35062 indicative +infinitive +35070 infinitive +indicative +35078 participle +35081 infinitive +indicative +35087 participle +imperative +35095 participle +35099 indicative +35102 infinitive +indicative +35106 indicative +35112 indicative +35115 indicative +imperative +indicative +35125 indicative +35131 indicative +35139 indicative +35150 indicative +35158 participle +indicative +35162 participle +35176 indicative +35180 participle +35185 indicative +35193 indicative +35196 indicative +35201 participle +35203 participle +35206 indicative +indicative +35211 indicative +indicative +35215 indicative +35217 indicative +35222 participle +35225 participle +35228 indicative +35230 indicative +indicative +35236 participle +35238 participle +35240 indicative +imperative +35251 indicative +35260 indicative +35266 subjunctive +35270 participle +35276 indicative +35278 imperative +35281 indicative +35287 participle +35289 indicative +35295 participle +35299 participle +35305 participle +indicative +35309 infinitive +35319 indicative +35321 indicative +35326 indicative +35330 participle +35334 participle +35336 indicative +35339 participle +35342 indicative +35345 indicative +35352 indicative +35356 indicative +35358 participle +35361 indicative +35365 indicative +35368 infinitive +35372 imperative +indicative +35376 indicative +35381 indicative +35389 participle +35391 infinitive +35393 indicative +35398 indicative +35400 participle +35402 indicative +indicative +35408 indicative +35411 indicative +35414 indicative +35416 participle +35422 indicative +indicative +35427 indicative +35437 indicative +35442 indicative +35450 indicative +35454 indicative +35459 indicative +35461 indicative +participle +35471 indicative +35475 indicative +35481 indicative +35483 indicative +35490 indicative +35495 indicative +35497 indicative +35499 indicative +35501 indicative +35506 indicative +35508 participle +infinitive +35514 indicative +35518 indicative +35520 indicative +35527 indicative +35529 imperative +35533 indicative +35539 indicative +35544 participle +35546 participle +35560 indicative +participle +35569 participle +35575 indicative +35588 indicative +35592 participle +35595 participle +35602 participle +35605 indicative +35608 indicative +35610 participle +35612 infinitive +35619 infinitive +35623 indicative +35628 indicative +35634 indicative +35638 indicative +35643 participle +indicative +35648 infinitive +35652 indicative +35658 participle +35661 indicative +35665 indicative +35672 participle +indicative +35677 participle +indicative +35680 participle +35682 infinitive +imperative +35685 indicative +35691 optative +35697 indicative +35699 indicative +infinitive +35713 participle +35715 subjunctive +35717 participle +35719 subjunctive +35721 indicative +35727 indicative +35737 indicative +35739 participle +35741 indicative +35745 indicative +35754 participle +subjunctive +35763 subjunctive +35766 indicative +35773 indicative +35777 indicative +35782 indicative +35788 participle +35790 indicative +35792 participle +35802 participle +indicative +35806 indicative +35814 indicative +35821 participle +35824 indicative +35826 indicative +35832 participle +indicative +35839 indicative +35843 indicative +35846 participle +subjunctive +35852 indicative +35857 indicative +35863 subjunctive +35867 subjunctive +35869 imperative +35871 indicative +35875 subjunctive +indicative +35882 subjunctive +35885 infinitive +indicative +indicative +35891 indicative +35902 indicative +infinitive +35909 indicative +35918 indicative +35920 infinitive +35922 participle +35925 participle +indicative +35935 indicative +35941 participle +35943 participle +35945 indicative +35952 indicative +35960 indicative +35963 subjunctive +35970 indicative +35972 participle +35974 indicative +35976 indicative +35983 indicative +35985 indicative +35987 participle +indicative +35990 participle +35993 indicative +35996 participle +indicative +36006 indicative +36008 indicative +36011 indicative +36018 participle +indicative +participle +36026 indicative +36034 indicative +36036 indicative +36039 indicative +36046 indicative +36052 participle +36056 indicative +36062 participle +36068 indicative +36074 indicative +36080 participle +36083 participle +indicative +36089 indicative +36100 indicative +36104 subjunctive +36106 indicative +36111 infinitive +36118 indicative +36121 indicative +36125 participle +36127 participle +36130 indicative +36138 indicative +36145 indicative +36148 indicative +36151 indicative +36157 indicative +36161 subjunctive +36166 infinitive +36168 indicative +36173 participle +36178 indicative +36181 subjunctive +36185 infinitive +36187 indicative +36192 participle +36196 indicative +36201 indicative +36211 indicative +36214 participle +participle +36217 participle +indicative +36220 indicative +36229 indicative +infinitive +36232 participle +36234 indicative +36239 indicative +participle +36247 indicative +participle +36250 participle +36257 indicative +36259 indicative +36262 participle +36264 indicative +36266 participle +36268 indicative +36277 infinitive +36283 indicative +36286 participle +36289 indicative +36291 indicative +36297 indicative +36300 infinitive +36304 indicative +36306 participle +imperative +36313 imperative +36316 indicative +36320 indicative +36325 participle +36327 indicative +36334 infinitive +36337 indicative +36343 indicative +participle +36347 imperative +indicative +36358 indicative +36360 participle +36365 indicative +36367 infinitive +36378 indicative +36382 indicative +36386 infinitive +36390 indicative +36394 participle +36403 indicative +36406 infinitive +participle +36409 indicative +36417 indicative +36424 indicative +36429 participle +36432 participle +36434 indicative +36440 indicative +36443 indicative +36447 indicative +indicative +36453 indicative +36455 participle +36461 participle +36464 indicative +participle +indicative +36468 participle +36473 indicative +36475 indicative +36482 indicative +36486 indicative +36492 indicative +36494 imperative +36499 participle +indicative +36505 participle +36507 indicative +36512 imperative +36518 participle +indicative +36522 imperative +36524 imperative +36526 indicative +36528 participle +36533 indicative +infinitive +36555 indicative +36557 indicative +36561 indicative +36563 imperative +36565 indicative +36567 indicative +36569 indicative +36571 participle +36573 indicative +36576 participle +36580 indicative +participle +36584 imperative +36586 indicative +36591 indicative +36594 indicative +36596 infinitive +infinitive +36599 indicative +36605 indicative +36608 infinitive +36610 participle +36612 participle +36615 indicative +36626 infinitive +36628 indicative +36630 infinitive +36636 infinitive +36638 indicative +36642 imperative +36658 infinitive +36664 subjunctive +36666 imperative +36669 imperative +36674 subjunctive +36676 participle +36687 imperative +36693 participle +indicative +36698 participle +36700 participle +36703 indicative +36708 participle +36711 indicative +36714 infinitive +36719 indicative +36727 indicative +36735 indicative +36737 indicative +36741 indicative +36744 indicative +36748 indicative +36751 indicative +infinitive +36755 participle +36758 indicative +36761 indicative +36763 participle +36765 indicative +36770 participle +36775 participle +indicative +36779 participle +36781 indicative +36792 participle +indicative +36797 indicative +infinitive +36800 participle +36803 indicative +36805 imperative +36809 participle +36816 subjunctive +36818 subjunctive +36825 indicative +36827 indicative +36830 imperative +36832 infinitive +36836 indicative +36838 indicative +36849 participle +36851 subjunctive +36859 indicative +36864 indicative +36869 imperative +36876 indicative +36879 indicative +36882 participle +36890 participle +36894 indicative +36897 indicative +36899 indicative +36902 infinitive +36906 indicative +36908 indicative +36911 indicative +36913 participle +36919 indicative +36922 infinitive +participle +36927 indicative +36932 indicative +36934 participle +36937 infinitive +36940 indicative +36943 participle +indicative +36958 indicative +36960 indicative +36966 infinitive +indicative +36970 participle +indicative +36978 participle +36980 indicative +36982 infinitive +36984 participle +36986 indicative +36992 infinitive +36994 infinitive +37003 infinitive +37008 infinitive +37010 indicative +37015 indicative +37018 infinitive +imperative +37022 imperative +37029 imperative +37034 subjunctive +37038 infinitive +indicative +37044 subjunctive +37051 indicative +37055 indicative +37057 participle +37063 participle +37065 participle +37069 subjunctive +37080 indicative +37082 subjunctive +37095 indicative +37098 indicative +37102 participle +37106 subjunctive +37110 subjunctive +37116 indicative +37125 participle +37131 indicative +37135 infinitive +37137 indicative +37140 infinitive +37153 participle +37155 imperative +37158 indicative +37161 indicative +37166 participle +37169 indicative +37174 infinitive +37177 indicative +37185 indicative +participle +37189 participle +indicative +37199 participle +37202 indicative +37205 infinitive +37209 indicative +37217 indicative +37220 infinitive +37222 subjunctive +37234 participle +37236 indicative +37240 participle +indicative +37244 indicative +37247 indicative +37250 infinitive +37257 indicative +37261 participle +37263 indicative +37268 participle +37270 imperative +37274 infinitive +37277 indicative +37282 indicative +37285 indicative +37292 indicative +37294 indicative +37298 participle +37303 indicative +37308 imperative +37313 indicative +participle +37316 indicative +37318 infinitive +37326 indicative +37328 imperative +37330 indicative +37334 indicative +37336 indicative +37342 indicative +37345 participle +37348 indicative +37353 subjunctive +37357 indicative +37359 participle +37362 indicative +37367 participle +37370 indicative +37374 indicative +37376 imperative +37383 participle +37385 indicative +37390 indicative +37392 indicative +37400 indicative +37404 indicative +37410 indicative +37419 participle +37423 indicative +indicative +37429 imperative +37443 indicative +infinitive +37450 indicative +37455 indicative +participle +37461 subjunctive +37464 indicative +infinitive +37472 indicative +37480 optative +37485 participle +37491 participle +37493 indicative +37498 indicative +37502 subjunctive +37511 indicative +37516 subjunctive +indicative +37519 participle +37527 participle +37529 indicative +37532 participle +37535 indicative +37537 indicative +37543 participle +37546 indicative +37550 indicative +37554 indicative +37559 imperative +37563 indicative +37568 indicative +37570 indicative +37573 infinitive +37583 indicative +37585 infinitive +37589 indicative +37595 participle +indicative +37601 infinitive +37605 indicative +37611 indicative +participle +37616 participle +37622 indicative +37624 indicative +subjunctive +37627 infinitive +37632 infinitive +37635 participle +indicative +37639 indicative +37644 participle +37649 indicative +37653 indicative +37657 subjunctive +37659 indicative +37666 indicative +37679 indicative +37683 subjunctive +37685 indicative +37688 imperative +37692 indicative +imperative +37696 participle +infinitive +37702 indicative +37704 imperative +37707 infinitive +37713 participle +imperative +37720 indicative +37723 indicative +37728 imperative +37730 infinitive +37737 indicative +37743 participle +37749 participle +37754 indicative +37762 indicative +37768 indicative +37781 indicative +37783 infinitive +37785 indicative +37797 imperative +37804 subjunctive +37809 imperative +imperative +indicative +37819 imperative +37830 subjunctive +37836 subjunctive +37838 imperative +37846 subjunctive +37849 indicative +37860 indicative +37866 imperative +participle +37869 participle +37881 imperative +37891 subjunctive +37893 subjunctive +37895 imperative +37897 participle +37900 imperative +37906 imperative +37908 indicative +37920 subjunctive +37923 subjunctive +37925 participle +37930 imperative +37935 participle +37944 indicative +37948 imperative +37950 indicative +37955 indicative +37964 indicative +37981 indicative +37985 participle +37994 participle +indicative +38001 indicative +38013 indicative +38017 indicative +38019 participle +38022 indicative +38025 participle +38028 indicative +38032 participle +indicative +38035 participle +38038 indicative +38043 participle +38048 indicative +38055 indicative +38057 indicative +38065 participle +imperative +indicative +38072 infinitive +38089 indicative +38094 imperative +38099 indicative +38101 imperative +38106 indicative +38114 indicative +38120 indicative +indicative +38131 indicative +38138 indicative +38147 indicative +38152 indicative +38159 indicative +38161 indicative +38170 indicative +38180 infinitive +subjunctive +38185 participle +38191 indicative +38196 participle +38198 indicative +38200 indicative +38207 indicative +infinitive +38211 indicative +38214 indicative +38216 infinitive +38218 indicative +38221 indicative +38223 imperative +38226 indicative +participle +38229 participle +38232 participle +38235 indicative +38238 indicative +38245 indicative +38247 indicative +38250 participle +indicative +indicative +38287 indicative +38290 indicative +38292 imperative +38294 indicative +38297 participle +infinitive +38300 indicative +38306 indicative +38309 participle +38312 indicative +38315 indicative +38322 indicative +38325 participle +38329 participle +indicative +participle +38338 indicative +38344 participle +38346 indicative +38354 participle +38356 participle +indicative +38361 participle +indicative +38366 participle +indicative +38369 participle +indicative +38374 participle +38379 participle +38385 indicative +38390 indicative +38396 participle +38399 indicative +38403 indicative +imperative +38410 subjunctive +38414 infinitive +38416 indicative +38418 indicative +38424 infinitive +38427 participle +38433 indicative +38435 participle +38441 indicative +38445 imperative +38448 imperative +38453 infinitive +38456 indicative +38465 indicative +38472 indicative +38474 participle +38478 participle +38484 indicative +38491 indicative +38496 participle +indicative +38500 indicative +38508 infinitive +indicative +38511 imperative +38515 subjunctive +38517 participle +indicative +38524 indicative +38526 indicative +38532 indicative +38540 indicative +38543 indicative +38546 indicative +38549 infinitive +participle +38556 indicative +indicative +38565 imperative +38567 infinitive +38571 indicative +38576 indicative +38579 subjunctive +imperative +38582 imperative +38586 imperative +38595 imperative +38601 imperative +38609 indicative +38611 participle +38615 subjunctive +38620 indicative +38626 indicative +38629 indicative +38634 subjunctive +38637 imperative +38644 indicative +38651 indicative +38653 indicative +38657 participle +subjunctive +38662 imperative +38666 indicative +38676 indicative +38678 indicative +participle +infinitive +38682 indicative +38687 indicative +38689 participle +38692 infinitive +38700 participle +indicative +38704 indicative +38707 indicative +imperative +38710 indicative +38712 imperative +38714 indicative +imperative +38717 indicative +38722 participle +indicative +38726 participle +indicative +38730 participle +indicative +38738 indicative +38747 indicative +38750 indicative +38752 indicative +38759 participle +indicative +38763 infinitive +38774 indicative +38778 participle +38781 indicative +participle +38786 indicative +38789 indicative +38792 participle +indicative +38797 indicative +38804 indicative +38811 indicative +38816 participle +38820 indicative +38825 participle +38829 indicative +38835 participle +indicative +38841 indicative +38849 indicative +38851 indicative +38856 indicative +38859 infinitive +38868 indicative +38876 indicative +38882 indicative +38889 indicative +38893 indicative +38903 participle +subjunctive +38910 indicative +38912 participle +38918 participle +subjunctive +38924 indicative +38927 indicative +38932 indicative +38935 participle +38940 indicative +38944 participle +38947 indicative +38952 subjunctive +38956 indicative +38960 participle +38964 participle +indicative +indicative +38972 indicative +38974 participle +indicative +participle +38978 participle +38980 indicative +38982 indicative +38989 participle +indicative +38993 indicative +39003 indicative +39006 infinitive +39009 participle +39016 indicative +39022 participle +39027 indicative +39030 indicative +39034 participle +39040 participle +39044 participle +indicative +infinitive +39052 indicative +39054 indicative +39058 indicative +39067 indicative +39073 indicative +39084 indicative +39095 indicative +39098 indicative +39104 infinitive +39109 imperative +39115 indicative +39124 indicative +39127 indicative +39133 imperative +39139 participle +39142 indicative +39153 participle +39156 subjunctive +39161 indicative +39170 subjunctive +39177 indicative +39181 subjunctive +39188 imperative +39196 indicative +39205 participle +39209 indicative +39218 subjunctive +39223 infinitive +indicative +39228 subjunctive +39232 participle +indicative +39237 participle +indicative +39242 indicative +39247 indicative +39263 indicative +39268 indicative +39275 participle +39281 indicative +39284 participle +imperative +39288 imperative +39292 indicative +39299 indicative +39309 indicative +39318 indicative +39320 infinitive +39323 infinitive +39329 indicative +39344 indicative +39354 participle +39357 indicative +39359 participle +39363 indicative +39367 participle +39370 indicative +39373 indicative +39380 indicative +39392 indicative +39398 indicative +39407 indicative +39411 indicative +39413 indicative +39422 indicative +39426 indicative +39434 indicative +indicative +39444 indicative +39446 indicative +39448 subjunctive +39455 participle +39470 participle +39478 indicative +39480 indicative +39490 indicative +39497 indicative +39500 participle +indicative +39503 participle +39505 indicative +39512 infinitive +39514 infinitive +39518 participle +39520 infinitive +39528 participle +39534 infinitive +39536 indicative +infinitive +39543 imperative +39549 indicative +39555 indicative +participle +39559 indicative +39564 indicative +39571 indicative +39575 indicative +39581 indicative +39585 indicative +39590 indicative +39596 imperative +39599 participle +39606 participle +39609 infinitive +39611 indicative +39614 subjunctive +imperative +39619 infinitive +participle +39622 infinitive +39627 indicative +39630 imperative +39634 indicative +39642 indicative +participle +39655 indicative +39657 imperative +39660 indicative +39662 indicative +39667 subjunctive +39678 indicative +39688 participle +39693 indicative +39702 indicative +39709 indicative +39717 participle +39719 indicative +39722 subjunctive +39734 subjunctive +39738 subjunctive +39741 subjunctive +39746 indicative +39753 infinitive +indicative +39756 indicative +39763 imperative +39767 infinitive +39774 indicative +39779 indicative +39786 indicative +39789 imperative +39791 imperative +39799 infinitive +39804 indicative +39807 participle +39810 indicative +39814 participle +39820 indicative +39822 indicative +39825 participle +39827 subjunctive +39830 indicative +39832 indicative +39837 indicative +39839 indicative +indicative +39846 indicative +39848 indicative +39858 indicative +39863 indicative +39866 participle +39870 imperative +imperative +imperative +imperative +39875 indicative +39886 indicative +39891 indicative +39893 indicative +39896 participle +39902 participle +39904 indicative +39911 indicative +39914 imperative +39918 subjunctive +39923 subjunctive +39928 indicative +39936 imperative +39941 indicative +39943 indicative +39946 indicative +39953 indicative +39958 indicative +39965 participle +indicative +39971 infinitive +39977 indicative +39982 indicative +imperative +39988 indicative +39990 indicative +39992 indicative +40001 indicative +40011 participle +40017 participle +40021 indicative +40029 imperative +40031 subjunctive +40034 subjunctive +40037 imperative +40045 indicative +40050 indicative +40052 indicative +40055 imperative +40061 indicative +40064 imperative +40069 indicative +40073 infinitive +40077 imperative +40079 participle +40082 imperative +40084 imperative +40088 participle +40097 indicative +40100 indicative +40103 indicative +40112 indicative +imperative +40117 participle +40121 participle +40126 participle +40131 subjunctive +40136 participle +40138 participle +40140 subjunctive +40147 participle +participle +40151 indicative +40153 indicative +40156 indicative +40158 indicative +40161 participle +indicative +40173 subjunctive +40175 subjunctive +40178 indicative +40182 imperative +40185 indicative +40192 indicative +40195 indicative +infinitive +40202 imperative +40208 indicative +40213 indicative +40215 indicative +40224 indicative +40230 indicative +40235 indicative +40242 indicative +40250 infinitive +40260 participle +40262 participle +40266 indicative +40268 indicative +40274 participle +40276 indicative +40280 subjunctive +40288 indicative +40292 infinitive +40294 subjunctive +infinitive +40302 infinitive +40304 infinitive +40306 infinitive +indicative +40317 indicative +40323 indicative +40325 indicative +40334 indicative +40340 participle +40348 participle +40350 participle +40355 indicative +40360 participle +40362 participle +40365 indicative +40370 indicative +40373 indicative +40378 indicative +40381 indicative +40383 indicative +40385 infinitive +40391 indicative +40394 indicative +40397 indicative +infinitive +40401 indicative +40404 subjunctive +indicative +40407 indicative +40409 infinitive +40413 indicative +40420 indicative +participle +40436 indicative +40463 indicative +40468 subjunctive +40470 participle +40474 indicative +40477 indicative +40479 indicative +40484 participle +indicative +40488 indicative +40490 indicative +40499 infinitive +indicative +40507 imperative +40514 indicative +40519 indicative +40529 imperative +40531 infinitive +40536 subjunctive +40545 indicative +40552 indicative +40555 indicative +40559 subjunctive +40566 subjunctive +40568 indicative +40574 participle +40583 indicative +40589 participle +indicative +40592 indicative +40602 indicative +40605 indicative +40607 indicative +40612 subjunctive +40615 indicative +40623 indicative +40630 indicative +40632 indicative +40636 indicative +40642 participle +40645 indicative +40650 subjunctive +40653 indicative +40655 indicative +40660 indicative +40662 participle +40668 indicative +participle +40675 indicative +40677 indicative +40681 imperative +40686 indicative +participle +40695 indicative +imperative +40703 indicative +40706 participle +indicative +40710 imperative +40718 subjunctive +40722 subjunctive +40726 subjunctive +40730 participle +40734 indicative +40737 indicative +participle +40747 imperative +40751 participle +40756 indicative +participle +40760 participle +infinitive +40766 participle +40770 indicative +40772 indicative +40775 indicative +40780 indicative +40786 indicative +40788 indicative +40792 participle +40795 participle +40799 indicative +40802 indicative +40808 indicative +40811 indicative +infinitive +40816 participle +imperative +40825 indicative +40830 indicative +40837 indicative +40848 participle +indicative +40851 imperative +40855 participle +40857 indicative +40864 infinitive +40874 indicative +40877 participle +40879 indicative +40882 participle +40888 indicative +40894 participle +40898 indicative +40901 indicative +40908 indicative +40911 indicative +40915 participle +40917 indicative +40922 indicative +40924 indicative +40932 indicative +40939 indicative +40941 indicative +40947 indicative +40950 participle +40952 indicative +40959 indicative +40962 indicative +40967 participle +40970 participle +40974 indicative +40981 participle +40984 indicative +40987 imperative +infinitive +40994 indicative +40997 indicative +infinitive +41001 indicative +41005 subjunctive +41009 subjunctive +41013 subjunctive +41015 infinitive +41017 infinitive +41020 participle +41022 imperative +41025 participle +indicative +41029 indicative +41032 indicative +41034 indicative +infinitive +indicative +41040 indicative +41046 indicative +41048 indicative +participle +41052 indicative +41054 indicative +imperative +41062 indicative +41071 subjunctive +41088 participle +41091 indicative +41102 indicative +41109 imperative +indicative +41113 indicative +41116 indicative +41119 indicative +41125 indicative +41128 participle +41130 imperative +41132 imperative +41136 indicative +41138 infinitive +41140 indicative +41142 participle +imperative +41147 imperative +indicative +41152 indicative +41159 indicative +41161 indicative +41168 participle +infinitive +41172 indicative +41174 infinitive +41180 participle +41184 participle +41186 participle +41190 indicative +infinitive +41206 indicative +imperative +indicative +41214 indicative +41218 subjunctive +41221 indicative +41223 subjunctive +participle +41226 participle +41231 indicative +41234 infinitive +41244 infinitive +41248 indicative +participle +41252 imperative +41256 indicative +41260 participle +41263 indicative +41269 participle +indicative +41273 infinitive +41278 indicative +41280 participle +indicative +41284 indicative +41288 indicative +41296 indicative +41300 indicative +41308 indicative +infinitive +41313 indicative +41316 participle +41318 participle +41322 indicative +participle +41327 subjunctive +41333 subjunctive +41341 subjunctive +participle +41346 participle +41351 participle +indicative +41354 imperative +41359 subjunctive +41365 infinitive +41368 subjunctive +participle +imperative +41377 subjunctive +41379 participle +41381 indicative +41384 imperative +41387 indicative +41393 participle +41398 participle +41400 indicative +41403 participle +41405 indicative +41407 indicative +41410 participle +41413 subjunctive +41418 imperative +41437 subjunctive +41440 subjunctive +41446 subjunctive +imperative +41454 indicative +41457 indicative +infinitive +41461 indicative +41471 participle +participle +41474 indicative +41478 indicative +41487 indicative +41491 indicative +41495 indicative +41498 indicative +41506 infinitive +41508 participle +imperative +41513 indicative +41515 indicative +41519 infinitive +41522 indicative +41525 indicative +41527 indicative +41529 participle +infinitive +41532 indicative +41534 imperative +41536 participle +41539 indicative +41543 indicative +41545 indicative +infinitive +41548 indicative +41550 imperative +41552 participle +41555 indicative +41557 indicative +41562 indicative +infinitive +41565 participle +41568 indicative +41574 participle +41577 indicative +41581 imperative +41599 imperative +41602 indicative +41606 indicative +41608 indicative +41612 indicative +41614 indicative +41620 imperative +41627 imperative +infinitive +41630 subjunctive +41635 indicative +41643 participle +indicative +41649 indicative +41654 participle +indicative +41660 indicative +41665 indicative +41691 indicative +infinitive +41697 indicative +41702 indicative +41706 indicative +infinitive +41715 participle +41717 infinitive +41719 participle +indicative +41724 indicative +41730 participle +41735 participle +infinitive +41739 participle +subjunctive +41742 infinitive +participle +41748 indicative +infinitive +41752 indicative +infinitive +41758 participle +41761 infinitive +41764 participle +41766 indicative +41769 indicative +41773 infinitive +41778 participle +41787 participle +41789 participle +indicative +41801 indicative +41805 participle +41807 indicative +infinitive +41820 subjunctive +41823 indicative +41831 indicative +41833 indicative +41836 participle +41838 infinitive +imperative +41841 indicative +participle +41850 infinitive +41853 indicative +41860 participle +41864 indicative +41866 indicative +41869 indicative +41875 participle +41880 participle +41884 participle +41889 indicative +41897 indicative +41900 participle +41902 subjunctive +41905 participle +indicative +41911 participle +41913 participle +41917 indicative +41923 participle +41925 imperative +41928 indicative +41933 participle +indicative +41942 indicative +41946 participle +41956 indicative +41962 participle +41964 subjunctive +41968 indicative +41971 indicative +41975 indicative +41979 subjunctive +41981 participle +indicative +41987 participle +imperative +41991 indicative +41995 indicative +41997 indicative +41999 indicative +42009 participle +42011 indicative +42014 indicative +42018 indicative +42025 imperative +42028 participle +42034 indicative +42043 participle +42048 indicative +42054 indicative +42058 participle +42061 participle +42064 indicative +42073 indicative +infinitive +42076 participle +indicative +42085 indicative +42091 infinitive +42094 indicative +infinitive +42103 indicative +42108 indicative +42113 participle +indicative +42120 indicative +42126 indicative +participle +indicative +42134 indicative +42137 indicative +42145 indicative +42147 infinitive +42150 imperative +42158 participle +indicative +42168 participle +indicative +42175 indicative +42177 participle +indicative +42184 indicative +42187 indicative +42192 indicative +42200 indicative +42202 infinitive +42206 indicative +42214 imperative +42219 imperative +42222 imperative +42234 imperative +42239 imperative +42241 participle +subjunctive +42249 indicative +42251 indicative +indicative +participle +42255 indicative +42257 indicative +infinitive +42260 indicative +42270 participle +indicative +42274 indicative +42279 participle +42283 indicative +42286 optative +42290 indicative +42296 indicative +42298 indicative +42307 participle +42309 indicative +42311 indicative +42314 indicative +infinitive +42320 participle +indicative +42325 participle +indicative +42329 imperative +42332 indicative +42338 indicative +42342 indicative +42349 subjunctive +42357 participle +42363 indicative +indicative +42371 indicative +42378 indicative +42384 indicative +42386 infinitive +42388 infinitive +indicative +42396 indicative +42398 indicative +42400 participle +42402 indicative +42404 indicative +42411 indicative +42414 indicative +42418 indicative +42421 participle +42423 participle +42426 participle +42428 indicative +42432 indicative +42435 imperative +42443 indicative +42445 infinitive +42447 indicative +42453 subjunctive +42458 indicative +42463 infinitive +42465 indicative +infinitive +indicative +indicative +42470 subjunctive +42473 subjunctive +42477 subjunctive +42484 participle +42492 indicative +42496 indicative +42502 indicative +42508 indicative +42510 imperative +42515 participle +42517 imperative +42521 indicative +42525 indicative +42528 indicative +42532 indicative +42534 imperative +42539 imperative +42542 indicative +42551 indicative +42569 indicative +42573 indicative +42575 imperative +42584 subjunctive +subjunctive +42599 indicative +42609 indicative +42618 indicative +42623 indicative +42631 indicative +42635 indicative +42639 indicative +42642 infinitive +42647 indicative +42651 indicative +42654 indicative +42658 indicative +42660 indicative +42662 infinitive +42666 indicative +42672 participle +42674 indicative +42677 indicative +42680 indicative +42682 participle +42690 indicative +42716 indicative +42721 indicative +42724 indicative +42730 infinitive +42736 infinitive +42739 participle +42744 participle +42746 indicative +42749 participle +42752 participle +indicative +42757 indicative +42760 indicative +42764 participle +42773 indicative +42778 participle +42780 participle +infinitive +42784 participle +42794 participle +indicative +42800 indicative +infinitive +42805 infinitive +42815 indicative +42820 indicative +42825 participle +42829 participle +42832 indicative +42844 participle +indicative +42848 imperative +42851 imperative +42854 subjunctive +42862 subjunctive +42867 indicative +42873 indicative +42876 imperative +42878 indicative +42894 indicative +42897 indicative +42908 indicative +42911 participle +infinitive +42917 subjunctive +42922 subjunctive +42924 indicative +42926 indicative +42930 subjunctive +42939 indicative +42943 subjunctive +42949 subjunctive +42957 indicative +42959 indicative +42964 imperative +42968 indicative +42977 subjunctive +42980 indicative +42982 indicative +42990 indicative +42996 subjunctive +indicative +42999 indicative +43005 indicative +43010 infinitive +43015 indicative +indicative +43021 indicative +43027 indicative +43033 subjunctive +43038 imperative +43041 subjunctive +43045 imperative +43049 subjunctive +imperative +43057 subjunctive +43062 subjunctive +43065 participle +indicative +indicative +43070 indicative +43075 imperative +43079 indicative +43083 indicative +43089 indicative +43093 imperative +43095 imperative +43101 indicative +43107 participle +43109 participle +43111 participle +43113 participle +43117 indicative +43120 participle +imperative +43124 indicative +43126 imperative +43128 subjunctive +43130 participle +imperative +43134 subjunctive +43136 subjunctive +43140 indicative +43142 indicative +43145 indicative +43150 indicative +43152 participle +43157 subjunctive +43160 participle +43162 imperative +43166 indicative +43168 infinitive +indicative +indicative +43172 indicative +43175 infinitive +43180 indicative +43187 participle +43192 indicative +43197 indicative +43201 indicative +43203 participle +43206 imperative +43209 participle +indicative +43212 participle +imperative +43218 indicative +43221 infinitive +43223 indicative +43228 participle +43230 indicative +indicative +43235 participle +43239 indicative +43246 participle +43250 indicative +43253 participle +43256 indicative +43260 indicative +43266 indicative +participle +infinitive +43278 indicative +43280 participle +imperative +43285 indicative +43288 participle +43293 indicative +43298 indicative +43301 indicative +43303 indicative +43311 indicative +imperative +43317 imperative +43324 indicative +43326 indicative +43330 indicative +43333 indicative +43341 infinitive +43344 indicative +43346 indicative +43348 imperative +43350 imperative +43353 subjunctive +43355 subjunctive +43360 participle +43370 indicative +43372 indicative +43382 indicative +43386 infinitive +43388 infinitive +43395 indicative +43401 indicative +43410 indicative +indicative +indicative +indicative +43417 indicative +43423 indicative +43427 indicative +43431 indicative +43436 indicative +indicative +indicative +indicative +indicative +indicative +43445 indicative +43449 indicative +43456 indicative +43461 indicative +43468 indicative +43474 indicative +43486 imperative +infinitive +43495 imperative +43499 imperative +43505 subjunctive +43509 infinitive +indicative +43515 indicative +indicative +43518 indicative +43523 indicative +43530 indicative +43534 indicative +indicative +participle +43543 indicative +43547 indicative +43549 participle +indicative +43556 indicative +43565 indicative +43567 indicative +43572 infinitive +43574 infinitive +43578 infinitive +participle +43582 indicative +43589 participle +43593 participle +43596 indicative +43602 indicative +43605 participle +imperative +43614 indicative +43620 indicative +43628 indicative +43631 indicative +43635 infinitive +43641 indicative +43647 participle +subjunctive +43651 indicative +43654 imperative +43660 indicative +43666 subjunctive +43673 participle +43679 indicative +43682 indicative +43685 indicative +43696 participle +43698 indicative +43705 indicative +43710 participle +43714 indicative +43717 participle +43725 indicative +43729 infinitive +43739 participle +43743 indicative +43746 indicative +43750 indicative +43765 indicative +43769 indicative +43772 indicative +43777 participle +43779 indicative +43783 infinitive +43788 indicative +43792 participle +43795 imperative +43799 indicative +43801 indicative +43803 participle +43813 participle +43815 indicative +43818 participle +43820 indicative +43822 indicative +43829 subjunctive +43831 participle +43834 indicative +43839 indicative +43841 participle +imperative +43845 infinitive +43850 imperative +43855 indicative +43861 indicative +43866 subjunctive +43875 subjunctive +43879 indicative +43883 participle +43887 participle +43890 indicative +43892 indicative +43898 indicative +43909 indicative +43911 subjunctive +43913 subjunctive +43915 subjunctive +43917 subjunctive +imperative +43927 indicative +43930 indicative +43934 participle +43937 indicative +43942 indicative +43945 indicative +imperative +43948 imperative +43951 indicative +43957 imperative +imperative +43962 participle +43965 indicative +43967 indicative +43971 participle +43975 indicative +43981 participle +43987 indicative +43990 indicative +43995 infinitive +44003 infinitive +44005 indicative +44007 participle +44010 indicative +infinitive +44014 indicative +44023 indicative +44025 indicative +44028 imperative +44030 participle +44033 indicative +44037 indicative +44040 indicative +44044 indicative +44046 indicative +44064 subjunctive +44075 participle +44079 participle +44082 indicative +44085 imperative +indicative +44090 indicative +44093 participle +44102 indicative +44106 indicative +44108 indicative +44110 indicative +44112 participle +indicative +44120 indicative +44125 indicative +44127 indicative +44131 participle +44136 indicative +44138 participle +44140 indicative +44143 infinitive +44149 indicative +44153 participle +44155 participle +44157 participle +indicative +44160 optative +44163 indicative +44169 indicative +44171 indicative +participle +44176 imperative +44180 participle +indicative +44184 subjunctive +44189 indicative +44192 imperative +44195 participle +44198 indicative +44200 infinitive +44204 participle +44206 indicative +44210 subjunctive +indicative +44214 indicative +44217 subjunctive +44221 indicative +44223 imperative +44227 indicative +44231 indicative +44233 indicative +44235 participle +44242 participle +indicative +44248 participle +indicative +44253 imperative +44256 participle +44260 indicative +44266 indicative +infinitive +44271 indicative +44274 indicative +44282 indicative +44284 participle +44288 indicative +44292 subjunctive +44296 infinitive +indicative +44300 indicative +44304 participle +44307 indicative +44311 participle +imperative +44320 infinitive +indicative +44323 participle +indicative +44326 indicative +44328 participle +44330 participle +44332 indicative +participle +44338 indicative +infinitive +44341 participle +44343 indicative +44348 imperative +44353 participle +44356 indicative +44361 indicative +indicative +44365 indicative +44376 indicative +44382 indicative +44384 indicative +44389 infinitive +44391 infinitive +44393 participle +44395 participle +44398 participle +indicative +44403 infinitive +44408 infinitive +44412 indicative +44417 infinitive +44419 indicative +44423 indicative +44427 infinitive +44431 infinitive +44433 participle +44437 indicative +44442 indicative +44445 imperative +44448 indicative +44453 indicative +44456 indicative +44460 participle +44462 indicative +44464 infinitive +44468 indicative +44471 infinitive +44473 participle +44477 indicative +infinitive +44484 indicative +44488 subjunctive +44491 indicative +44493 indicative +44496 participle +44503 indicative +44505 indicative +44514 indicative +imperative +44517 participle +44522 indicative +44525 participle +44530 indicative +44534 indicative +44542 imperative +44546 indicative +participle +44549 imperative +44554 indicative +participle +44559 indicative +44564 indicative +indicative +44568 indicative +44570 indicative +44573 indicative +indicative +44580 indicative +44584 indicative +44587 indicative +44590 participle +44593 indicative +44595 participle +44598 indicative +44603 indicative +44611 participle +44615 indicative +44618 participle +indicative +imperative +44626 imperative +44631 participle +44633 indicative +44636 indicative +44639 indicative +44644 participle +indicative +44650 participle +44653 indicative +indicative +44662 participle +44664 infinitive +44667 imperative +44670 imperative +44675 participle +44677 indicative +44679 participle +44683 indicative +44685 indicative +44694 participle +44696 indicative +44700 participle +imperative +44708 participle +indicative +participle +44717 indicative +44719 participle +44721 imperative +44726 subjunctive +44729 indicative +44731 indicative +44737 indicative +44739 participle +44741 participle +indicative +44744 indicative +44747 participle +44751 indicative +44758 indicative +44763 indicative +44769 indicative +44771 indicative +44777 participle +44784 indicative +44788 participle +44790 indicative +44798 participle +44808 indicative +44814 participle +infinitive +44823 indicative +44825 participle +participle +44828 participle +44848 indicative +44852 imperative +44857 participle +indicative +indicative +44863 indicative +44866 indicative +44869 indicative +participle +44873 indicative +44876 participle +44879 indicative +44891 indicative +44896 indicative +44901 indicative +44908 indicative +44911 indicative +44915 indicative +44925 indicative +44934 indicative +44941 participle +44945 indicative +infinitive +44948 participle +participle +44951 indicative +44953 indicative +44962 indicative +44966 indicative +participle +44980 indicative +44982 infinitive +44990 participle +44993 subjunctive +44998 indicative +45000 participle +45002 indicative +45007 participle +45015 participle +indicative +45026 indicative +participle +45030 imperative +45036 indicative +45039 indicative +45041 participle +45047 participle +indicative +45051 indicative +45056 imperative +45063 indicative +45069 indicative +45072 participle +45075 subjunctive +45078 indicative +45082 indicative +45086 subjunctive +45092 indicative +45095 participle +indicative +45099 infinitive +45101 indicative +45103 infinitive +45108 indicative +45112 indicative +45118 indicative +45120 indicative +45124 infinitive +45129 indicative +45132 indicative +45136 indicative +45141 indicative +45152 indicative +45157 indicative +45159 participle +45162 indicative +45165 infinitive +45169 participle +45171 participle +indicative +45175 indicative +45177 infinitive +45182 participle +indicative +45185 indicative +45191 subjunctive +indicative +45200 indicative +45202 participle +45206 indicative +45209 participle +45211 indicative +45214 subjunctive +45218 subjunctive +45222 participle +45227 indicative +45230 indicative +45236 indicative +45238 indicative +45243 indicative +45248 participle +indicative +45251 optative +45254 participle +45256 indicative +45259 indicative +45261 participle +45265 indicative +45267 participle +45269 indicative +45275 participle +45280 indicative +45285 subjunctive +indicative +45289 indicative +45295 infinitive +45305 indicative +45309 indicative +45313 indicative +45318 participle +indicative +45321 participle +45324 infinitive +45326 subjunctive +45330 infinitive +45340 indicative +45342 participle +45344 indicative +45347 indicative +45349 indicative +45352 indicative +45361 indicative +indicative +45366 infinitive +45370 participle +45374 indicative +45377 imperative +45380 indicative +45387 indicative +45391 indicative +45395 imperative +45407 indicative +infinitive +45415 participle +45420 indicative +45422 participle +45427 participle +45430 infinitive +indicative +45433 participle +45436 indicative +45441 subjunctive +participle +45447 subjunctive +45449 subjunctive +45456 subjunctive +45464 indicative +45468 participle +45470 indicative +45478 indicative +45486 indicative +45489 indicative +45494 indicative +45504 indicative +45508 indicative +45512 indicative +45521 indicative +45523 indicative +45526 participle +45530 infinitive +45538 indicative +45540 indicative +45543 infinitive +45545 indicative +45548 indicative +45552 indicative +45556 participle +45559 indicative +45564 indicative +45569 indicative +45583 indicative +45586 participle +45590 indicative +45592 participle +45596 indicative +45599 indicative +45602 indicative +infinitive +45607 indicative +45611 indicative +45614 infinitive +45620 indicative +45624 indicative +45629 imperative +45635 subjunctive +45647 indicative +45652 indicative +45654 participle +45658 indicative +45661 imperative +45666 participle +infinitive +45671 participle +45687 indicative +45695 indicative +45697 indicative +45701 participle +indicative +45704 participle +45713 indicative +45717 participle +45722 indicative +45724 indicative +45734 indicative +45740 participle +45742 indicative +45756 indicative +indicative +45760 participle +45769 indicative +indicative +45773 indicative +indicative +45779 indicative +45785 indicative +45787 indicative +45789 participle +45794 indicative +45800 subjunctive +45802 infinitive +45805 indicative +imperative +45808 subjunctive +45811 indicative +45816 participle +45818 indicative +45822 indicative +45824 subjunctive +45829 subjunctive +45834 subjunctive +45836 indicative +45838 infinitive +45846 indicative +45848 indicative +45865 indicative +45873 indicative +45878 indicative +45885 indicative +participle +45892 participle +45901 indicative +45906 imperative +45912 infinitive +infinitive +45916 indicative +45923 indicative +infinitive +45926 infinitive +45929 participle +45932 indicative +45943 indicative +45947 indicative +participle +45963 subjunctive +45968 indicative +45974 subjunctive +participle +45980 imperative +45982 indicative +45991 imperative +46000 imperative +46007 imperative +46014 indicative +46016 infinitive +46019 participle +46024 participle +46027 participle +46033 indicative +46045 indicative +46049 indicative +46056 indicative +participle +46062 subjunctive +46066 indicative +46086 participle +46093 participle +46101 indicative +46104 indicative +46109 participle +46118 participle +46120 infinitive +imperative +46123 imperative +46128 indicative +46133 indicative +46136 imperative +46144 subjunctive +46146 participle +46149 indicative +46155 indicative +46160 subjunctive +46162 participle +imperative +46166 indicative +46172 indicative +46177 subjunctive +46184 subjunctive +46190 indicative +46197 indicative +46199 imperative +46203 subjunctive +46215 subjunctive +46225 indicative +46229 participle +46236 imperative +46240 participle +46242 subjunctive +infinitive +46247 participle +infinitive +46250 infinitive +46257 indicative +participle +46267 participle +indicative +46273 participle +46279 indicative +46285 infinitive +46288 indicative +46294 participle +46297 indicative +46305 subjunctive +46308 indicative +46312 indicative +46317 participle +46319 participle +46326 participle +indicative +46335 subjunctive +46338 indicative +46340 indicative +46343 infinitive +46345 indicative +46347 indicative +46350 infinitive +46356 indicative +46362 indicative +infinitive +46367 indicative +46371 participle +participle +imperative +46378 subjunctive +46381 indicative +46383 indicative +46385 subjunctive +46388 indicative +46390 imperative +participle +46396 indicative +46401 participle +imperative +46409 indicative +46411 indicative +46416 indicative +46421 indicative +46431 subjunctive +46434 indicative +46437 participle +46439 imperative +46441 participle +indicative +46444 indicative +46447 indicative +46452 indicative +46455 indicative +46462 indicative +46466 indicative +46470 infinitive +46476 infinitive +46478 indicative +46484 subjunctive +46488 subjunctive +46495 participle +46497 participle +indicative +imperative +46502 imperative +46506 indicative +46510 subjunctive +46525 subjunctive +46527 participle +46529 participle +indicative +46532 indicative +46534 participle +46536 indicative +46543 participle +46545 imperative +46556 infinitive +participle +46571 participle +46573 imperative +46577 participle +46592 participle +indicative +46601 indicative +46604 indicative +infinitive +46611 optative +46616 infinitive +participle +46619 indicative +46627 indicative +infinitive +46632 indicative +46638 indicative +46642 participle +46645 indicative +46655 imperative +46661 participle +46664 participle +46669 participle +46672 participle +46675 participle +46681 indicative +46684 participle +46687 indicative +46689 participle +46697 indicative +46700 indicative +46707 subjunctive +46709 subjunctive +46719 indicative +46727 participle +46730 imperative +46733 indicative +46736 infinitive +46742 indicative +46747 subjunctive +46754 participle +imperative +46761 indicative +46767 indicative +46774 infinitive +46777 indicative +indicative +46782 indicative +46789 infinitive +indicative +46792 indicative +46795 indicative +46805 indicative +46808 indicative +46811 indicative +46816 participle +46818 imperative +46825 participle +imperative +46831 imperative +46834 indicative +46837 indicative +46840 participle +46845 indicative +infinitive +46855 indicative +46858 indicative +46860 imperative +46866 indicative +46869 indicative +46871 participle +indicative +46882 indicative +46888 participle +46892 indicative +46894 imperative +46896 infinitive +46901 indicative +46908 participle +46911 indicative +participle +46915 indicative +imperative +46930 imperative +46932 indicative +46937 participle +46940 participle +46944 indicative +46946 indicative +46953 participle +46958 participle +46962 participle +46966 indicative +participle +46973 indicative +46976 indicative +participle +imperative +46981 subjunctive +46986 participle +imperative +46991 participle +46996 indicative +46999 indicative +47002 infinitive +47006 indicative +47014 indicative +47019 participle +47021 participle +indicative +47025 indicative +47029 indicative +47039 indicative +47046 participle +47049 indicative +imperative +47054 participle +47057 indicative +47060 indicative +47064 participle +47077 indicative +47084 participle +47092 indicative +47099 indicative +47109 participle +47111 indicative +47113 indicative +47122 indicative +47125 participle +47132 participle +indicative +47141 participle +47143 participle +47148 participle +47150 indicative +47155 indicative +47158 indicative +participle +47161 indicative +47168 participle +47170 indicative +47175 indicative +47179 indicative +47182 indicative +47184 participle +47190 indicative +participle +47198 indicative +47202 indicative +47204 indicative +47209 indicative +47211 indicative +47215 participle +47217 indicative +47220 participle +47223 indicative +47227 indicative +47235 indicative +47240 infinitive +47242 indicative +47246 participle +47248 indicative +47254 participle +47256 indicative +47258 participle +47260 participle +47262 indicative +participle +imperative +47266 indicative +47268 participle +47273 indicative +participle +47279 indicative +47281 indicative +47291 indicative +47297 participle +47300 indicative +47303 imperative +47306 indicative +47310 subjunctive +47313 subjunctive +47316 subjunctive +47319 subjunctive +47324 indicative +participle +47337 indicative +47341 indicative +47350 indicative +47352 indicative +47355 indicative +47358 indicative +47361 indicative +47366 indicative +47372 participle +47377 indicative +47383 indicative +infinitive +47386 participle +indicative +47389 participle +47394 participle +47397 infinitive +47399 participle +47403 infinitive +47407 indicative +47409 participle +47411 indicative +47418 participle +47420 indicative +47422 indicative +47426 indicative +47434 indicative +47442 indicative +participle +47445 indicative +47448 participle +47454 participle +47462 participle +indicative +47468 indicative +47470 participle +47476 indicative +indicative +47481 participle +47493 participle +47496 indicative +47499 indicative +participle +47504 infinitive +47508 infinitive +47512 indicative +infinitive +47518 participle +47520 indicative +47528 indicative +47531 indicative +47538 participle +47543 participle +47550 participle +participle +47554 indicative +47559 indicative +47574 indicative +47577 participle +47582 participle +47591 indicative +47594 indicative +47600 participle +47604 imperative +47608 participle +47610 indicative +47617 indicative +47624 indicative +47629 imperative +47633 indicative +participle +47637 participle +47639 indicative +47641 indicative +47643 participle +imperative +47647 imperative +47652 indicative +participle +47657 participle +47670 indicative +47672 participle +infinitive +47678 indicative +participle +imperative +imperative +47686 indicative +47692 indicative +47697 indicative +47701 participle +47703 indicative +47706 indicative +47709 participle +47711 infinitive +47713 indicative +47719 indicative +infinitive +47725 indicative +47731 participle +47735 indicative +47739 indicative +47745 indicative +47747 participle +47751 participle +47754 indicative +47758 infinitive +47763 indicative +47772 indicative +47774 indicative +47777 participle +47781 indicative +47785 imperative +47791 imperative +47798 imperative +indicative +47803 indicative +47812 indicative +47817 indicative +47819 indicative +infinitive +47823 imperative +47829 imperative +47837 indicative +47842 subjunctive +47844 indicative +47851 infinitive +47854 indicative +47859 participle +47862 indicative +47878 indicative +47880 imperative +47884 indicative +47886 indicative +47888 participle +47892 indicative +47895 indicative +47898 participle +47900 indicative +47904 participle +47906 indicative +imperative +47911 indicative +47919 indicative +47924 participle +47926 participle +47929 participle +47932 indicative +47937 imperative +47940 indicative +47953 participle +47955 indicative +47959 indicative +47962 imperative +47967 participle +47970 participle +47972 indicative +47974 indicative +47983 indicative +47991 indicative +indicative +47997 indicative +47999 indicative +48001 imperative +48004 subjunctive +48010 indicative +48014 indicative +48018 indicative +48023 indicative +48030 indicative +48040 participle +48042 indicative +48049 participle +48054 indicative +48059 indicative +48065 participle +indicative +48070 participle +48072 participle +indicative +48076 participle +48082 indicative +48086 participle +48092 participle +48094 participle +participle +48098 indicative +48100 indicative +48110 participle +48115 participle +48118 imperative +48122 participle +48130 indicative +participle +48144 indicative +48150 participle +48153 indicative +48159 participle +indicative +48164 indicative +48171 indicative +participle +48178 indicative +48181 indicative +48183 participle +48187 indicative +participle +48193 indicative +48198 indicative +48203 participle +indicative +48212 indicative +48226 indicative +participle +48229 indicative +48232 indicative +48235 participle +48240 participle +48242 indicative +48249 indicative +48252 infinitive +48257 imperative +48260 indicative +48264 participle +48267 participle +48270 participle +48276 indicative +48280 indicative +48282 participle +48287 indicative +48290 indicative +imperative +48293 indicative +48296 participle +48300 participle +48302 indicative +48307 infinitive +48313 infinitive +48318 infinitive +48320 indicative +48325 participle +48329 indicative +48339 indicative +48354 indicative +48360 indicative +48369 indicative +48374 participle +indicative +48380 participle +indicative +48386 indicative +48389 participle +48391 participle +48393 imperative +48401 indicative +participle +48405 participle +48415 indicative +48421 participle +48424 indicative +48427 infinitive +48430 infinitive +48434 participle +indicative +48441 indicative +48444 infinitive +48447 indicative +48455 indicative +48458 participle +48460 indicative +48463 participle +48467 indicative +48472 indicative +48476 indicative +48478 participle +48486 indicative +48491 indicative +48499 indicative +48516 indicative +48528 indicative +48532 indicative +48535 indicative +48537 participle +infinitive +48550 indicative +48554 indicative +48561 indicative +48563 participle +48570 participle +48574 indicative +participle +48579 infinitive +48581 indicative +48583 infinitive +48585 indicative +48594 indicative +48600 indicative +48604 indicative +48607 indicative +48617 infinitive +48621 indicative +48625 indicative +48627 infinitive +48631 infinitive +48637 participle +48645 indicative +48655 indicative +48660 indicative +48663 indicative +48665 infinitive +48667 indicative +48669 participle +imperative +48676 indicative +48678 indicative +48683 indicative +48685 infinitive +48689 indicative +48692 infinitive +48696 participle +48699 indicative +48701 participle +indicative +48708 indicative +48710 indicative +48715 indicative +48719 indicative +48726 participle +indicative +48731 indicative +48737 indicative +48742 participle +48746 indicative +48750 indicative +participle +48758 participle +48761 indicative +48765 indicative +48769 indicative +48776 indicative +48786 participle +48788 indicative +48793 indicative +48798 participle +48801 participle +indicative +48804 infinitive +48806 indicative +48809 participle +indicative +48815 indicative +48820 imperative +48830 indicative +48832 imperative +48835 imperative +48842 indicative +48845 participle +indicative +48849 participle +indicative +48859 participle +48865 participle +indicative +48868 indicative +48874 indicative +48880 participle +48883 indicative +48885 indicative +48893 indicative +48897 participle +48901 indicative +infinitive +48905 participle +48918 indicative +48923 infinitive +48927 indicative +48931 indicative +infinitive +48936 infinitive +48943 infinitive +48956 participle +48963 imperative +48965 indicative +48975 imperative +48981 subjunctive +48986 indicative +48992 participle +48996 indicative +48999 indicative +49002 infinitive +49005 indicative +49009 indicative +49015 participle +49017 indicative +49024 indicative +participle +49035 indicative +49041 indicative +49047 indicative +49051 indicative +49060 indicative +49064 indicative +49068 indicative +49072 indicative +49076 indicative +49087 indicative +49093 indicative +indicative +49096 participle +49103 indicative +49107 subjunctive +49113 subjunctive +49117 indicative +49123 subjunctive +49132 indicative +49135 indicative +participle +49143 indicative +49149 indicative +49155 indicative +49159 indicative +49165 indicative +49168 indicative +49170 indicative +49174 infinitive +49177 participle +49197 indicative +49202 indicative +49204 indicative +49208 indicative +49222 indicative +49226 indicative +participle +49229 indicative +49231 indicative +49235 participle +49238 indicative +49242 indicative +49250 indicative +49260 indicative +49269 indicative +49272 indicative +49277 participle +49284 indicative +49287 indicative +49293 indicative +49304 subjunctive +49308 indicative +49310 indicative +49313 indicative +49315 indicative +49319 indicative +49323 indicative +49329 indicative +49331 indicative +49333 indicative +49336 indicative +49339 indicative +49342 indicative +49345 indicative +49348 subjunctive +49350 participle +49353 indicative +49356 indicative +49359 participle +49363 imperative +49368 indicative +49373 participle +indicative +49379 indicative +49382 indicative +49386 indicative +49390 indicative +49398 indicative +49402 participle +49404 indicative +49409 indicative +49413 indicative +49417 participle +49420 indicative +49424 subjunctive +49433 indicative +49438 indicative +participle +49444 indicative +49447 participle +49451 indicative +imperative +49458 participle +49464 indicative +49468 indicative +49471 indicative +49476 indicative +49480 indicative +49483 indicative +49487 subjunctive +49492 indicative +49496 participle +49498 indicative +49500 participle +49502 indicative +49505 participle +49511 indicative +49516 indicative +49520 participle +49522 infinitive +49527 indicative +49531 subjunctive +49534 participle +49536 participle +49540 indicative +49542 participle +49547 indicative +49549 indicative +49552 indicative +49560 indicative +49570 participle +49573 participle +indicative +imperative +49581 indicative +49586 participle +49588 indicative +49594 participle +49596 participle +49598 participle +indicative +49602 indicative +49605 indicative +49609 indicative +participle +49613 indicative +indicative +49616 imperative +49618 indicative +49620 indicative +49622 indicative +49624 indicative +49628 indicative +49633 indicative +49636 indicative +49647 participle +49651 participle +49653 indicative +49662 indicative +49664 indicative +49668 indicative +participle +49671 indicative +49676 participle +49680 indicative +49682 indicative +49688 indicative +49691 indicative +49695 indicative +infinitive +49701 indicative +49704 indicative +49708 imperative +49711 indicative +49722 indicative +49727 indicative +49730 indicative +49738 indicative +49747 indicative +49752 infinitive +indicative +49756 indicative +49760 imperative +49762 imperative +indicative +49767 participle +49771 indicative +49774 imperative +49781 indicative +indicative +49787 indicative +indicative +49791 indicative +49797 infinitive +participle +49803 indicative +indicative +49809 indicative +49818 indicative +indicative +49822 indicative +49825 indicative +49828 indicative +49833 indicative +49836 indicative +49838 indicative +49842 indicative +49844 indicative +49847 participle +49853 participle +49855 participle +49867 indicative +49873 indicative +49880 indicative +49892 participle +49894 indicative +49903 indicative +49905 indicative +49915 indicative +49919 indicative +49928 subjunctive +49930 imperative +49932 indicative +participle +49943 participle +49949 indicative +49953 imperative +49958 indicative +49963 indicative +49965 imperative +49968 imperative +49973 indicative +49976 indicative +49982 participle +49985 indicative +49987 indicative +49989 indicative +49993 participle +49996 indicative +50002 indicative +50010 indicative +50013 subjunctive +50017 indicative +50027 indicative +50035 indicative +50040 indicative +50048 indicative +50065 indicative +50071 indicative +50077 indicative +50083 indicative +50088 participle +50097 participle +50099 participle +50104 indicative +50119 indicative +50123 indicative +50128 participle +indicative +imperative +50134 imperative +50142 indicative +50147 participle +indicative +50154 indicative +50157 indicative +50161 indicative +50165 indicative +50169 indicative +indicative +50173 indicative +50175 imperative +50183 indicative +50186 indicative +50193 indicative +50202 indicative +50206 indicative +50215 indicative +50218 indicative +50224 indicative +50226 indicative +50233 indicative +50238 indicative +50249 indicative +50254 participle +50259 indicative +50264 indicative +50270 infinitive +50276 indicative +50279 subjunctive +50285 indicative +50287 indicative +50292 indicative +50304 indicative +50309 indicative +50312 indicative +50316 indicative +50320 indicative +50326 indicative +infinitive +50330 subjunctive +50335 indicative +50338 indicative +50342 indicative +50347 subjunctive +50350 indicative +infinitive +50356 indicative +50362 indicative +50364 infinitive +50366 participle +50368 indicative +50376 infinitive +50378 infinitive +indicative +50383 indicative +50388 subjunctive +50394 indicative +infinitive +50402 participle +50407 indicative +50410 participle +50415 indicative +50417 subjunctive +50419 indicative +50421 indicative +50423 infinitive +50428 indicative +indicative +50434 indicative +50437 indicative +50439 indicative +50442 indicative +50444 indicative +50447 participle +50451 indicative +50454 indicative +50457 indicative +50459 infinitive +indicative +50463 indicative +50466 indicative +50474 indicative +50477 indicative +50481 indicative +indicative +50485 indicative +indicative +50492 indicative +50496 indicative +50500 indicative +50503 subjunctive +50507 indicative +50510 indicative +50520 participle +50528 indicative +50535 indicative +infinitive +50544 participle +50547 subjunctive +50552 indicative +50562 indicative +50566 participle +50570 subjunctive +50572 subjunctive +50577 indicative +50586 subjunctive +50591 subjunctive +50597 participle +50601 indicative +50604 participle +50606 indicative +50609 indicative +50620 indicative +50626 indicative +50631 indicative +50641 indicative +50650 participle +indicative +50656 indicative +50662 subjunctive +50668 participle +50671 indicative +50676 subjunctive +50683 indicative +participle +50687 indicative +50700 indicative +50704 indicative +50706 indicative +participle +50718 indicative +50721 indicative +50723 indicative +50726 indicative +participle +50733 indicative +50744 indicative +50749 indicative +50753 indicative +50761 indicative +imperative +50764 indicative +50767 indicative +50770 indicative +50773 indicative +50775 indicative +50777 infinitive +50781 subjunctive +participle +50790 indicative +50792 indicative +50794 indicative +50800 participle +indicative +50805 participle +50809 indicative +50816 participle +50818 participle +50821 indicative +50833 indicative +indicative +50836 infinitive +50839 infinitive +50842 participle +50845 indicative +50847 participle +50854 indicative +50859 indicative +50864 participle +50867 indicative +50869 indicative +50871 indicative +50873 indicative +50879 indicative +50881 participle +50885 indicative +50890 indicative +50893 indicative +50900 indicative +50905 indicative +50910 indicative +50915 indicative +50921 participle +50925 indicative +50930 participle +50934 indicative +50941 indicative +50946 indicative +50950 indicative +50957 indicative +50959 indicative +50966 indicative +50971 indicative +50975 indicative +50981 indicative +50983 infinitive +50988 indicative +50993 participle +50999 indicative +51006 indicative +51014 participle +51018 indicative +51024 indicative +51027 indicative +51032 infinitive +51034 indicative +51038 imperative +51040 infinitive +51045 indicative +51051 subjunctive +51053 indicative +51062 participle +51067 participle +infinitive +indicative +51072 indicative +51075 indicative +51078 indicative +51081 indicative +51088 indicative +51090 participle +51092 imperative +51094 infinitive +51097 indicative +51101 indicative +51104 participle +indicative +51110 indicative +51114 indicative +51118 indicative +51122 participle +51126 indicative +51132 indicative +51140 indicative +51149 indicative +51152 indicative +51156 participle +51161 indicative +51166 subjunctive +51172 indicative +51176 indicative +51184 indicative +51186 indicative +51191 participle +51195 indicative +51201 imperative +51208 subjunctive +51210 subjunctive +51212 infinitive +indicative +51215 imperative +imperative +51221 imperative +51223 indicative +51227 indicative +51229 indicative +51231 indicative +51236 indicative +51240 indicative +51244 indicative +51248 indicative +51250 indicative +51255 indicative +indicative +51261 indicative +51264 indicative +51273 indicative +51276 indicative +51280 indicative +51284 infinitive +indicative +indicative +51290 imperative +51294 indicative +51305 indicative +51309 indicative +51312 indicative +51314 indicative +51316 indicative +51323 indicative +51325 indicative +51329 indicative +51334 indicative +51346 indicative +51348 participle +51355 participle +51360 infinitive +indicative +indicative +51366 indicative +51370 participle +51372 indicative +51374 subjunctive +51376 indicative +51379 indicative +51385 participle +51387 indicative +51391 indicative +51396 indicative +51400 indicative +51403 indicative +51405 indicative +51408 indicative +51412 indicative +51419 indicative +51424 indicative +51427 imperative +imperative +51431 indicative +51435 indicative +51438 indicative +51441 indicative +51446 indicative +51452 indicative +51456 participle +51458 imperative +51461 indicative +51465 indicative +infinitive +51470 indicative +51472 indicative +51479 indicative +51481 infinitive +indicative +51488 indicative +51490 subjunctive +51494 participle +51497 subjunctive +51503 indicative +51507 indicative +51511 indicative +imperative +indicative +51515 imperative +51520 imperative +51525 indicative +51530 participle +51532 indicative +51534 indicative +51541 subjunctive +51543 participle +51546 participle +51552 indicative +51556 indicative +51558 participle +51562 participle +51564 indicative +51566 infinitive +51570 indicative +51572 indicative +51579 indicative +51588 indicative +51596 participle +51598 indicative +51602 indicative +51605 indicative +51610 indicative +51612 infinitive +51616 indicative +51623 indicative +51631 indicative +51638 indicative +51641 indicative +51643 indicative +51646 indicative +51657 indicative +51665 indicative +51674 indicative +51677 indicative +51681 indicative +51685 participle +51688 indicative +51697 indicative +51702 indicative +51710 indicative +51715 indicative +51721 indicative +51725 participle +51728 indicative +51735 indicative +51739 indicative +51741 subjunctive +51743 subjunctive +51748 indicative +infinitive +51751 indicative +51761 subjunctive +51764 subjunctive +indicative +51771 imperative +51773 infinitive +51777 indicative +51781 imperative +51785 indicative +indicative +51792 indicative +51797 indicative +51801 participle +51804 indicative +51806 participle +51811 indicative +51813 indicative +51821 indicative +51823 indicative +51829 indicative +51834 indicative +51843 indicative +51850 indicative +51852 indicative +51864 indicative +51867 participle +51876 indicative +51881 indicative +51886 indicative +51895 participle +51900 participle +51903 indicative +51906 participle +51910 participle +51919 indicative +51924 indicative +51930 participle +51937 indicative +51940 indicative +51943 indicative +51951 participle +51959 participle +participle +51962 participle +51967 indicative +indicative +51970 indicative +51972 infinitive +indicative +51976 participle +51980 indicative +51983 subjunctive +51986 subjunctive +51994 indicative +51999 indicative +indicative +52004 imperative +imperative +52010 imperative +52013 indicative +52018 indicative +52023 indicative +52025 indicative +52032 indicative +52036 participle +52038 indicative +52041 indicative +52043 infinitive +52048 indicative +52051 participle +52056 indicative +imperative +52062 imperative +indicative +52066 indicative +52070 participle +52072 imperative +52074 imperative +52077 participle +52079 indicative +52081 indicative +52085 indicative +52087 participle +52093 indicative +52101 indicative +52103 imperative +52105 indicative +52107 imperative +52113 subjunctive +indicative +52118 indicative +52123 indicative +52125 participle +52131 indicative +52138 indicative +52143 indicative +52150 indicative +52152 indicative +52157 indicative +52159 infinitive +52165 indicative +52172 indicative +52177 participle +52181 indicative +52185 indicative +52189 indicative +52192 indicative +52195 infinitive +52201 subjunctive +52205 participle +52210 subjunctive +52216 indicative +52220 indicative +52224 indicative +52229 indicative +52234 indicative +52238 subjunctive +52243 indicative +52247 indicative +52253 indicative +indicative +52259 indicative +52265 indicative +52270 subjunctive +52274 indicative +52279 participle +52283 indicative +52287 participle +52291 indicative +52298 participle +52300 participle +52302 participle +52304 indicative +52311 indicative +52313 indicative +52322 indicative +52325 indicative +52329 indicative +52333 indicative +52342 participle +indicative +52348 indicative +52356 indicative +52358 infinitive +52363 indicative +52366 infinitive +52370 indicative +52372 imperative +52375 indicative +52384 indicative +52389 indicative +52393 participle +52400 participle +52405 indicative +52407 infinitive +52412 indicative +indicative +52420 indicative +52423 indicative +52432 participle +52436 subjunctive +52443 indicative +52446 indicative +52448 participle +52452 indicative +52455 indicative +52459 indicative +52463 indicative +52467 indicative +52477 indicative +52480 indicative +52483 subjunctive +52485 indicative +52489 participle +52491 participle +52494 indicative +infinitive +52504 indicative +52514 indicative +52519 subjunctive +52525 indicative +indicative +52533 indicative +52536 participle +52540 indicative +52547 indicative +52551 indicative +52554 indicative +52560 participle +52563 indicative +52568 indicative +indicative +52574 indicative +52579 infinitive +52582 indicative +52584 participle +52589 indicative +infinitive +52595 subjunctive +52600 indicative +52602 indicative +52610 indicative +52614 indicative +52623 indicative +52627 subjunctive +52634 indicative +52636 indicative +52638 infinitive +52642 participle +52652 indicative +52654 imperative +52657 indicative +52662 indicative +52664 participle +52670 indicative +52673 indicative +52676 indicative +52682 indicative +52689 indicative +52694 indicative +52697 indicative +52708 indicative +52713 indicative +52717 indicative +52720 participle +52722 indicative +52729 indicative +52735 indicative +52746 participle +52750 participle +52754 indicative +52757 indicative +52761 subjunctive +52764 subjunctive +52768 indicative +participle +52773 indicative +52775 infinitive +indicative +indicative +52785 indicative +52791 subjunctive +indicative +52804 indicative +52808 indicative +52818 indicative +52821 indicative +52824 imperative +52827 infinitive +52829 indicative +52836 indicative +52844 indicative +52850 participle +indicative +52853 participle +52860 indicative +52863 indicative +indicative +52868 imperative +52870 participle +52875 subjunctive +52877 indicative +52879 indicative +52890 indicative +52892 participle +52896 participle +52898 indicative +52900 indicative +52903 indicative +52908 participle +52913 participle +52915 indicative +infinitive +52918 infinitive +52921 subjunctive +52923 indicative +52934 indicative +indicative +52943 participle +52946 indicative +52955 indicative +52958 indicative +52968 participle +indicative +52971 participle +52978 indicative +52981 participle +52989 participle +52991 indicative +52994 indicative +52997 indicative +52999 imperative +53001 indicative +infinitive +53009 indicative +53017 indicative +53023 participle +53027 indicative +53032 indicative +53040 indicative +53054 indicative +53057 indicative +53064 indicative +53067 participle +53072 indicative +53078 indicative +53084 indicative +53090 indicative +53093 participle +53097 participle +53102 indicative +53107 indicative +indicative +53113 indicative +53116 indicative +53118 indicative +53122 indicative +53126 indicative +53131 indicative +imperative +53137 participle +53142 participle +53152 indicative +53159 indicative +53161 indicative +53165 subjunctive +53167 subjunctive +53172 indicative +53175 indicative +53178 indicative +53184 subjunctive +53187 indicative +53190 indicative +53195 indicative +53198 subjunctive +53200 subjunctive +53203 indicative +53209 indicative +53214 indicative +participle +53220 indicative +53222 infinitive +53224 indicative +53230 indicative +53234 indicative +53245 indicative +53259 indicative +53261 participle +53267 participle +53271 indicative +53276 imperative +53281 indicative +53286 indicative +53292 participle +53297 subjunctive +53300 participle +53305 indicative +53308 indicative +53312 indicative +53316 indicative +53319 indicative +53325 indicative +53328 participle +53333 subjunctive +53336 indicative +53342 subjunctive +53351 participle +53355 indicative +53359 participle +53364 indicative +53367 subjunctive +53371 subjunctive +53379 indicative +53388 participle +53392 participle +53395 subjunctive +53399 subjunctive +53407 indicative +53413 indicative +53415 indicative +53419 participle +53424 indicative +53427 indicative +53434 indicative +53442 indicative +53447 indicative +indicative +53451 indicative +53454 imperative +53458 indicative +infinitive +53467 participle +53469 subjunctive +53472 indicative +53478 indicative +participle +53484 indicative +53490 participle +53495 participle +indicative +53503 indicative +53508 participle +53513 indicative +53518 indicative +53521 participle +indicative +53526 indicative +53534 indicative +53541 indicative +53543 indicative +53550 participle +53555 subjunctive +53558 subjunctive +53560 indicative +53564 participle +53569 participle +53572 subjunctive +53577 indicative +53587 indicative +53591 indicative +53598 indicative +53603 participle +53605 indicative +53608 infinitive +53611 infinitive +53613 indicative +53619 indicative +53623 subjunctive +53631 subjunctive +53636 indicative +53641 participle +53646 participle +53650 indicative +53654 indicative +53665 indicative +53672 indicative +53674 participle +53679 participle +53685 indicative +53690 indicative +53693 participle +53696 indicative +53702 participle +53705 indicative +53709 indicative +53715 participle +53718 indicative +53722 indicative +53724 participle +53728 indicative +53733 indicative +53736 participle +53745 participle +indicative +53748 indicative +53753 indicative +53755 infinitive +53759 participle +53763 indicative +53769 indicative +53773 indicative +53776 subjunctive +53781 participle +53783 indicative +53788 indicative +53790 participle +53794 indicative +53800 indicative +53803 indicative +53806 indicative +53808 indicative +53814 indicative +53816 indicative +53822 indicative +53825 participle +53828 indicative +53830 participle +53833 indicative +53836 indicative +53840 indicative +infinitive +53846 subjunctive +participle +53858 indicative +53866 indicative +53868 indicative +53876 indicative +infinitive +indicative +53885 indicative +53889 indicative +53892 indicative +53894 indicative +53897 indicative +53902 indicative +53911 indicative +53917 indicative +53919 indicative +53926 indicative +infinitive +53936 indicative +53944 indicative +53948 infinitive +53950 indicative +53952 infinitive +53956 indicative +53965 indicative +53971 imperative +53974 imperative +53983 indicative +53988 indicative +53994 indicative +53996 indicative +54000 infinitive +54003 indicative +imperative +54013 indicative +54017 indicative +54026 indicative +54033 indicative +54036 indicative +54039 infinitive +54043 indicative +54046 indicative +54054 indicative +54056 imperative +54062 indicative +54072 indicative +54075 participle +54077 indicative +54083 indicative +54093 indicative +54103 indicative +54109 indicative +54111 indicative +54117 indicative +54124 indicative +54127 indicative +54130 indicative +54133 indicative +54139 indicative +54151 participle +indicative +54158 indicative +54160 indicative +54163 participle +54167 indicative +54169 participle +54171 indicative +54175 indicative +54180 indicative +54184 participle +54188 subjunctive +54192 infinitive +indicative +54201 indicative +54206 indicative +54210 participle +54215 indicative +54218 participle +54222 participle +54226 indicative +54232 indicative +54235 indicative +54243 indicative +54248 infinitive +indicative +indicative +54254 indicative +54257 infinitive +indicative +indicative +54262 indicative +54266 indicative +54269 indicative +54273 indicative +54282 indicative +54290 indicative +54294 indicative +54300 subjunctive +54305 indicative +54310 indicative +54314 imperative +54321 imperative +54323 indicative +54330 indicative +54332 infinitive +indicative +54335 imperative +54337 indicative +54341 indicative +54345 indicative +54350 indicative +54355 indicative +54357 indicative +54362 subjunctive +54364 indicative +54366 indicative +54368 indicative +54372 participle +54376 participle +54378 indicative +54380 indicative +54382 indicative +54387 indicative +54389 indicative +54392 participle +54397 indicative +54399 indicative +54404 indicative +54407 indicative +54409 indicative +54411 infinitive +54414 indicative +54421 indicative +54430 indicative +54434 indicative +54438 subjunctive +54442 indicative +54445 indicative +indicative +54451 participle +54456 indicative +54464 subjunctive +54467 indicative +54475 indicative +54477 indicative +54480 participle +54482 indicative +54486 indicative +54489 indicative +54491 infinitive +54494 indicative +54496 indicative +54502 infinitive +54504 indicative +54508 indicative +54511 indicative +54517 infinitive +54519 infinitive +54523 indicative +54528 indicative +indicative +54533 indicative +54536 indicative +54538 infinitive +54541 indicative +54551 indicative +54555 indicative +participle +54559 subjunctive +imperative +54564 imperative +54566 participle +54570 indicative +54575 participle +54580 indicative +54583 indicative +54588 infinitive +indicative +54591 participle +54596 indicative +54601 indicative +54606 participle +54610 indicative +54612 indicative +54617 indicative +54619 indicative +54624 indicative +54632 indicative +54636 indicative +54648 indicative +54650 indicative +54655 indicative +54665 indicative +infinitive +54670 indicative +54676 indicative +54685 indicative +54691 indicative +54693 indicative +54697 indicative +54704 indicative +54706 indicative +54713 indicative +54719 indicative +54732 participle +54736 indicative +indicative +54742 participle +54746 participle +54754 indicative +54759 subjunctive +54764 subjunctive +54766 indicative +indicative +54769 indicative +54777 indicative +imperative +54780 imperative +54787 indicative +54789 indicative +54797 indicative +54806 indicative +54814 indicative +54818 participle +indicative +54822 indicative +54833 participle +54835 participle +54839 indicative +54845 indicative +54847 participle +54854 indicative +54857 infinitive +54861 indicative +54864 indicative +participle +54868 subjunctive +infinitive +54875 participle +54878 indicative +54884 indicative +participle +54887 participle +indicative +54899 imperative +54903 participle +indicative +54910 participle +54915 participle +indicative +54919 participle +54927 indicative +54936 participle +54940 participle +54943 participle +54947 indicative +54952 indicative +54959 indicative +54962 indicative +54966 indicative +54973 indicative +imperative +54977 imperative +54981 indicative +54984 participle +54986 indicative +54992 participle +54996 subjunctive +55001 indicative +55007 indicative +55014 indicative +55019 indicative +55021 indicative +55024 indicative +55028 subjunctive +55032 indicative +55037 indicative +55039 indicative +55042 indicative +55046 indicative +55048 indicative +55051 indicative +55056 indicative +55059 indicative +55064 subjunctive +55071 indicative +55075 indicative +55080 participle +55089 indicative +55096 indicative +55098 indicative +55100 participle +55104 indicative +55108 participle +55112 indicative +55115 indicative +55119 indicative +55123 indicative +55130 indicative +55136 indicative +55140 indicative +55144 participle +55150 indicative +55154 indicative +55159 indicative +55163 indicative +55165 indicative +55172 indicative +55175 indicative +infinitive +55179 indicative +55181 indicative +55185 indicative +55188 indicative +55191 indicative +infinitive +55195 indicative +55197 indicative +55203 indicative +55208 indicative +55214 indicative +55217 indicative +55223 indicative +55226 indicative +55234 subjunctive +55237 indicative +indicative +55244 indicative +55248 indicative +indicative +55258 indicative +55260 indicative +55264 infinitive +55266 infinitive +55269 participle +55272 indicative +55275 indicative +55279 indicative +55284 indicative +55289 indicative +55291 indicative +55295 subjunctive +55301 indicative +55304 indicative +55308 indicative +55312 indicative +55317 indicative +55320 participle +55324 indicative +55326 indicative +55334 indicative +55338 participle +55340 indicative +55344 indicative +55349 participle +55354 subjunctive +55363 indicative +55365 indicative +55371 indicative +55373 indicative +55378 indicative +55381 indicative +55385 indicative +55388 indicative +indicative +55395 indicative +55400 participle +55403 indicative +55411 indicative +55420 indicative +55429 subjunctive +55432 indicative +indicative +55437 indicative +55439 indicative +55441 infinitive +55448 indicative +55453 indicative +55457 indicative +55462 indicative +55466 indicative +indicative +55469 indicative +55475 indicative +indicative +55484 indicative +55489 imperative +55492 indicative +infinitive +55500 indicative +55502 indicative +55509 indicative +55511 indicative +55517 indicative +55523 indicative +55528 indicative +indicative +55538 indicative +55540 indicative +55547 indicative +55549 indicative +55554 indicative +55558 indicative +55566 indicative +55569 indicative +infinitive +55581 indicative +55588 infinitive +indicative +55592 indicative +55600 indicative +55603 indicative +55608 subjunctive +55614 indicative +55617 indicative +55627 indicative +55629 indicative +55634 indicative +55640 indicative +55645 indicative +55648 participle +55656 indicative +55661 indicative +55667 indicative +indicative +55672 indicative +55676 indicative +55680 indicative +55684 indicative +indicative +55690 indicative +55692 indicative +55698 indicative +55703 indicative +55707 indicative +55709 participle +55711 participle +55714 indicative +55721 subjunctive +55725 subjunctive +55729 indicative +55734 indicative +55737 indicative +55739 indicative +55745 indicative +55751 subjunctive +55754 subjunctive +55762 indicative +55768 indicative +55772 indicative +55775 indicative +indicative +55780 subjunctive +55786 indicative +indicative +55792 participle +55796 indicative +55800 indicative +55803 indicative +55807 indicative +55810 subjunctive +55813 indicative +55815 indicative +55820 indicative +55826 indicative +55831 indicative +55833 subjunctive +55839 indicative +55841 indicative +55843 indicative +55851 indicative +55854 indicative +indicative +55860 indicative +55864 infinitive +55866 indicative +55868 indicative +55871 subjunctive +55876 indicative +55878 indicative +55883 participle +indicative +55890 indicative +55895 participle +55898 indicative +55906 subjunctive +indicative +55911 indicative +55918 subjunctive +55925 indicative +55927 infinitive +55931 participle +55935 indicative +indicative +55940 indicative +infinitive +55946 subjunctive +indicative +55952 participle +indicative +55956 indicative +55962 indicative +55970 indicative +55972 imperative +imperative +55980 indicative +participle +55983 indicative +55985 indicative +55987 indicative +participle +55994 participle +56000 indicative +indicative +56004 indicative +56006 participle +56008 participle +56010 indicative +56013 indicative +56015 indicative +56020 indicative +56022 indicative +56025 indicative +56027 indicative +56031 indicative +56035 indicative +56040 participle +56043 indicative +56045 indicative +56050 indicative +56053 imperative +56058 imperative +56060 participle +56062 participle +indicative +56065 indicative +56068 indicative +56070 indicative +56072 indicative +indicative +56082 indicative +56089 indicative +56093 indicative +56099 indicative +56105 indicative +56108 indicative +56111 indicative +56117 indicative +56119 indicative +56121 indicative +56127 indicative +56137 indicative +56139 indicative +56141 indicative +56146 infinitive +56149 indicative +56153 indicative +56159 indicative +56163 indicative +56169 indicative +56172 indicative +56175 indicative +56181 indicative +56184 indicative +56187 indicative +56192 participle +56194 indicative +56196 participle +56198 indicative +56204 indicative +56207 indicative +56210 indicative +56213 indicative +56218 indicative +indicative +56222 indicative +56229 indicative +56233 indicative +56235 indicative +56238 indicative +56244 indicative +56246 imperative +56248 indicative +56252 indicative +56254 indicative +56259 indicative +56264 indicative +56271 subjunctive +56274 subjunctive +56280 indicative +56283 indicative +56285 imperative +56287 indicative +56293 indicative +56296 indicative +56298 imperative +56303 indicative +56309 indicative +56311 indicative +56315 indicative +56317 indicative +56319 indicative +56322 participle +56324 indicative +56326 indicative +56329 indicative +56332 indicative +56336 indicative +56338 indicative +56343 indicative +56346 indicative +infinitive +56351 indicative +56354 infinitive +56356 indicative +56359 indicative +56363 indicative +56369 indicative +56371 indicative +56374 indicative +56380 indicative +56382 indicative +indicative +56387 indicative +56394 indicative +56398 indicative +56400 indicative +56402 indicative +56406 indicative +56412 indicative +56417 subjunctive +56422 subjunctive +56424 indicative +56429 indicative +56431 indicative +56435 participle +56438 indicative +56443 indicative +infinitive +56446 indicative +56448 indicative +56453 indicative +56457 indicative +56460 indicative +56463 indicative +56466 indicative +56470 participle +56472 indicative +56474 indicative +56480 indicative +56483 indicative +56486 indicative +56489 subjunctive +56492 indicative +56497 indicative +56501 participle +56505 indicative +56508 indicative +indicative +56512 indicative +56515 indicative +56525 indicative +56529 participle +subjunctive +56533 participle +56535 subjunctive +indicative +56544 participle +56546 indicative +56552 indicative +indicative +56559 indicative +56562 indicative +56566 indicative +56568 indicative +56572 indicative +56575 indicative +56579 participle +56589 participle +56593 indicative +56598 participle +56602 indicative +56609 indicative +56616 indicative +56621 indicative +56625 indicative +56631 subjunctive +56634 indicative +56639 indicative +56641 indicative +56649 indicative +56651 indicative +56656 indicative +56664 indicative +56671 indicative +56673 indicative +56675 indicative +56678 indicative +56684 indicative +56688 indicative +56695 indicative +56699 indicative +56704 indicative +56709 indicative +56716 subjunctive +indicative +56719 indicative +56721 indicative +56724 indicative +56728 indicative +56732 subjunctive +56734 subjunctive +56736 subjunctive +56738 indicative +56741 subjunctive +56744 subjunctive +56746 indicative +56758 indicative +56766 participle +56770 indicative +56774 indicative +56777 participle +56779 indicative +56783 indicative +56787 indicative +56790 indicative +56793 indicative +56796 indicative +56802 indicative +56808 indicative +56812 indicative +56817 indicative +56822 indicative +56829 indicative +56836 indicative +56839 indicative +56846 infinitive +indicative +56852 indicative +56854 indicative +56864 indicative +56867 indicative +56873 subjunctive +56876 indicative +56882 indicative +56887 indicative +infinitive +56892 indicative +56894 infinitive +56899 indicative +56906 indicative +56915 indicative +56920 indicative +56922 indicative +56925 indicative +56927 indicative +56932 indicative +participle +56936 indicative +56939 infinitive +indicative +56948 indicative +56950 indicative +56962 indicative +56967 indicative +56974 indicative +56977 indicative +56980 imperative +56983 indicative +56987 indicative +56991 indicative +56996 indicative +57004 indicative +57010 indicative +57013 indicative +57026 indicative +57028 indicative +57031 indicative +57034 indicative +57041 subjunctive +57047 indicative +57058 indicative +57062 indicative +57065 indicative +infinitive +57077 indicative +indicative +57084 subjunctive +57086 indicative +57093 indicative +57103 indicative +indicative +57112 indicative +57121 participle +indicative +57125 indicative +57130 indicative +participle +57138 indicative +57140 indicative +57143 indicative +57151 indicative +57154 indicative +infinitive +57161 indicative +57163 indicative +57168 indicative +57170 indicative +57172 indicative +57176 indicative +57179 indicative +57186 imperative +57190 indicative +57194 subjunctive +57197 imperative +57199 subjunctive +57201 subjunctive +57212 indicative +57214 infinitive +57217 indicative +57223 indicative +57232 indicative +participle +57238 indicative +57242 indicative +57246 indicative +57252 indicative +57256 indicative +57261 indicative +57264 indicative +57269 indicative +57271 participle +57285 indicative +57288 participle +57293 participle +57304 indicative +57306 indicative +57311 participle +57313 imperative +57315 indicative +indicative +57318 participle +57321 indicative +57326 indicative +57336 subjunctive +57344 indicative +57358 indicative +57360 indicative +57363 indicative +57366 indicative +57373 indicative +57376 subjunctive +57381 indicative +57387 indicative +57389 infinitive +57394 indicative +57396 indicative +57401 indicative +57406 subjunctive +57411 indicative +57418 indicative +57422 subjunctive +57426 indicative +57431 indicative +57435 indicative +57439 indicative +57445 indicative +57447 indicative +57449 subjunctive +57452 indicative +57458 indicative +indicative +57461 indicative +57470 indicative +57477 indicative +57480 indicative +57486 indicative +57488 indicative +57492 subjunctive +57495 indicative +57498 subjunctive +57502 indicative +57505 participle +57509 subjunctive +57513 subjunctive +57517 participle +57520 indicative +57525 participle +57530 indicative +57544 indicative +57551 subjunctive +57558 indicative +57561 indicative +57564 indicative +57571 indicative +57573 indicative +57580 indicative +57584 indicative +57590 indicative +57594 subjunctive +57597 indicative +57601 indicative +57605 indicative +57609 indicative +57613 indicative +57615 indicative +57623 indicative +57628 indicative +57635 participle +57639 subjunctive +indicative +57644 participle +57646 participle +57651 subjunctive +57655 indicative +57657 indicative +57662 indicative +57665 indicative +57676 participle +57679 participle +indicative +57682 indicative +57688 participle +57691 indicative +57693 indicative +57698 indicative +indicative +57702 indicative +57707 indicative +57714 indicative +57720 indicative +57728 participle +57735 participle +57737 participle +57742 indicative +57744 indicative +indicative +57747 participle +57749 indicative +57754 subjunctive +57760 indicative +57762 indicative +57764 participle +57766 indicative +57771 participle +57775 indicative +57779 indicative +57786 indicative +57788 participle +57791 participle +57794 participle +indicative +57799 indicative +57802 indicative +57804 indicative +57806 indicative +57809 imperative +57811 imperative +indicative +57816 indicative +57819 imperative +57821 indicative +57827 indicative +57829 indicative +57832 participle +57837 infinitive +57842 subjunctive +57846 participle +57849 indicative +57854 indicative +57858 indicative +57861 indicative +57864 imperative +57867 indicative +57872 participle +57876 indicative +57879 indicative +indicative +57885 indicative +57889 subjunctive +indicative +57896 indicative +57902 indicative +57907 indicative +57909 indicative +57912 indicative +57916 indicative +57920 indicative +57926 participle +indicative +57929 subjunctive +57933 indicative +57936 participle +57939 indicative +57941 imperative +57943 indicative +57945 participle +participle +57958 indicative +indicative +57963 imperative +57966 imperative +57968 infinitive +57975 participle +57980 participle +57982 indicative +indicative +57990 indicative +57995 indicative +57998 indicative +58001 indicative +58009 indicative +58011 indicative +58018 indicative +58020 subjunctive +58024 indicative +58028 indicative +58032 indicative +58047 participle +58051 indicative +58055 indicative +58058 indicative +58060 indicative +58065 subjunctive +58074 subjunctive +58080 indicative +58083 participle +58087 indicative +58089 indicative +58091 infinitive +58109 participle +subjunctive +58118 indicative +58120 subjunctive +58127 indicative +58132 indicative +58142 participle +58145 indicative +58150 indicative +58157 indicative +58168 subjunctive +58171 indicative +58175 indicative +58181 participle +58183 indicative +58188 subjunctive +58193 indicative +58203 subjunctive +58205 indicative +subjunctive +58208 subjunctive +58218 indicative +58222 indicative +58225 indicative +58230 indicative +58237 indicative +58241 indicative +58245 participle +58251 participle +58257 indicative +58263 indicative +58273 indicative +58280 indicative +58289 participle +58291 infinitive +58298 indicative +58302 indicative +58305 indicative +58312 indicative +58317 indicative +58321 participle +58323 participle +indicative +58326 indicative +58329 imperative +58338 subjunctive +58344 indicative +58351 indicative +58353 indicative +58362 indicative +58364 indicative +58373 subjunctive +58377 indicative +58381 indicative +58388 subjunctive +58395 indicative +58397 indicative +58407 participle +58411 participle +58413 indicative +58417 indicative +58423 indicative +58428 indicative +58430 participle +58432 participle +58442 participle +58446 indicative +58450 indicative +participle +58453 imperative +58456 imperative +58460 indicative +participle +58467 indicative +58475 indicative +58478 indicative +58481 indicative +participle +58487 indicative +58490 indicative +58494 participle +58500 indicative +58505 indicative +58512 indicative +58517 indicative +58520 infinitive +58526 indicative +58529 indicative +58532 indicative +58534 imperative +58539 indicative +58541 indicative +58546 participle +58548 subjunctive +58554 indicative +58562 indicative +58564 participle +58566 indicative +58569 infinitive +indicative +58574 indicative +58577 indicative +58582 indicative +58588 indicative +58590 participle +indicative +58595 subjunctive +58602 indicative +58610 participle +58614 subjunctive +58617 indicative +58620 subjunctive +58623 indicative +58625 participle +58629 indicative +58633 participle +58644 indicative +58649 subjunctive +58651 imperative +58654 indicative +58662 indicative +58666 subjunctive +indicative +58675 indicative +58678 subjunctive +58680 imperative +58689 indicative +58695 imperative +58700 indicative +58706 indicative +58709 indicative +58714 participle +58716 participle +indicative +58719 infinitive +58721 indicative +58724 indicative +indicative +58728 indicative +58735 indicative +58740 indicative +58751 indicative +58755 subjunctive +58760 indicative +58765 indicative +participle +58769 indicative +infinitive +58772 indicative +58777 indicative +58784 indicative +58790 indicative +58793 indicative +infinitive +58800 indicative +58807 indicative +58818 indicative +imperative +58823 indicative +58828 subjunctive +58831 participle +58836 indicative +58838 indicative +58842 indicative +imperative +58850 subjunctive +58852 indicative +58855 participle +indicative +58863 participle +58867 indicative +58876 subjunctive +58878 indicative +58881 indicative +58890 indicative +58894 indicative +infinitive +58898 indicative +58900 indicative +58905 indicative +58911 subjunctive +58915 subjunctive +58919 subjunctive +58921 indicative +58924 indicative +58927 indicative +58932 indicative +58942 indicative +58950 indicative +58954 subjunctive +58956 indicative +58969 indicative +58971 indicative +58973 participle +58977 indicative +58983 participle +58987 participle +58989 indicative +58991 participle +58998 indicative +59002 participle +59009 subjunctive +59013 subjunctive +59019 subjunctive +59022 indicative +59026 indicative +59028 subjunctive +59033 subjunctive +59037 participle +59041 participle +59045 indicative +59047 participle +59052 indicative +59054 indicative +59065 indicative +59068 participle +59074 indicative +59076 subjunctive +59079 subjunctive +59081 indicative +59088 indicative +59092 indicative +59094 indicative +59099 indicative +59108 participle +59110 indicative +59115 subjunctive +59123 participle +59132 indicative +59136 participle +59140 participle +59145 subjunctive +59150 participle +59153 indicative +59164 indicative +59169 indicative +indicative +59175 indicative +59179 participle +59181 indicative +59184 indicative +59190 indicative +infinitive +59197 infinitive +59201 indicative +participle +59204 indicative +59208 indicative +59212 indicative +59216 indicative +59219 indicative +59223 indicative +59226 indicative +59229 indicative +59232 indicative +59237 subjunctive +59244 indicative +59249 subjunctive +59252 indicative +59256 indicative +59273 indicative +59277 participle +59279 indicative +59285 infinitive +59287 indicative +59293 indicative +59298 indicative +59300 participle +59304 indicative +59309 indicative +59312 indicative +59317 indicative +59322 indicative +59324 indicative +59326 indicative +59328 indicative +59331 indicative +59340 indicative +59342 indicative +59351 indicative +59357 indicative +infinitive +59364 indicative +59369 indicative +59373 subjunctive +59376 indicative +59379 indicative +59389 participle +59393 indicative +59395 indicative +59397 subjunctive +59403 indicative +59405 indicative +59407 indicative +59412 subjunctive +59414 participle +59418 indicative +59426 indicative +59430 infinitive +59432 subjunctive +59434 subjunctive +59437 indicative +59440 indicative +59443 participle +59446 subjunctive +59448 indicative +59452 participle +indicative +59455 participle +59458 participle +59460 indicative +59464 indicative +59466 indicative +59469 indicative +59475 indicative +59477 indicative +59482 participle +59485 indicative +indicative +participle +59499 indicative +59503 indicative +59508 indicative +59510 imperative +59512 indicative +59515 indicative +59517 participle +59524 indicative +59528 indicative +59530 indicative +59533 indicative +59537 indicative +59541 indicative +59544 participle +59547 indicative +59549 indicative +59558 indicative +59564 indicative +59568 indicative +imperative +59572 indicative +59575 participle +59579 indicative +59583 indicative +59587 indicative +59590 indicative +59593 imperative +59596 indicative +59605 subjunctive +59607 participle +59611 indicative +59614 indicative +59618 indicative +indicative +59622 indicative +59630 indicative +59636 indicative +59642 indicative +59648 indicative +59655 indicative +indicative +59660 indicative +59666 indicative +infinitive +59670 indicative +59673 indicative +59677 indicative +59680 subjunctive +59683 indicative +59688 subjunctive +59692 indicative +59697 indicative +59700 subjunctive +59703 indicative +59709 indicative +indicative +59713 indicative +59716 infinitive +59718 indicative +59720 indicative +59722 indicative +59729 indicative +59731 infinitive +59738 indicative +indicative +59746 indicative +59749 indicative +59754 subjunctive +59757 subjunctive +59761 imperative +59765 indicative +59772 imperative +59781 indicative +59786 indicative +59789 indicative +infinitive +59795 subjunctive +59797 subjunctive +59801 indicative +59803 indicative +59809 indicative +59813 subjunctive +59817 indicative +indicative +59821 indicative +59826 indicative +59828 indicative +59830 indicative +59833 indicative +59837 indicative +59847 indicative +59856 indicative +59863 indicative +59866 indicative +59869 indicative +indicative +59874 imperative +59879 indicative +59881 indicative +59889 indicative +59892 indicative +59896 participle +59898 indicative +59903 indicative +imperative +59909 indicative +59920 indicative +59925 indicative +59930 indicative +59936 participle +indicative +59941 imperative +59960 imperative +59963 indicative +59966 participle +59973 indicative +59975 indicative +59979 indicative +59985 indicative +59990 subjunctive +59996 indicative +59998 subjunctive +60006 subjunctive +60013 indicative +60015 subjunctive +60021 indicative +60023 indicative +60029 indicative +60032 subjunctive +60043 infinitive +60047 indicative +60050 indicative +60053 indicative +60055 indicative +60060 indicative +60064 indicative +60066 indicative +60069 indicative +60079 indicative +60082 indicative +60086 indicative +60089 indicative +60094 indicative +60110 participle +60115 participle +60118 indicative +60120 participle +60124 participle +60126 indicative +60132 indicative +60135 indicative +60138 indicative +60147 indicative +60149 indicative +60151 infinitive +60157 indicative +60160 indicative +60164 subjunctive +60169 indicative +60174 indicative +60179 indicative +60184 indicative +60187 participle +60193 indicative +60198 indicative +60200 indicative +60204 participle +60208 indicative +60212 participle +60221 indicative +60230 indicative +60233 indicative +60237 indicative +60241 indicative +60246 indicative +60252 indicative +60254 indicative +60257 imperative +60262 imperative +indicative +60266 indicative +60268 indicative +60270 indicative +60274 indicative +60277 indicative +60279 indicative +60288 indicative +60291 indicative +60294 infinitive +60297 subjunctive +subjunctive +60301 indicative +60305 indicative +60314 indicative +60318 subjunctive +60322 indicative +60327 indicative +60332 indicative +imperative +subjunctive +60337 indicative +60348 indicative +60354 participle +60356 indicative +60362 participle +indicative +60368 subjunctive +60372 indicative +60377 indicative +60379 imperative +60389 indicative +60391 infinitive +60396 subjunctive +60407 subjunctive +60409 indicative +60416 participle +60423 indicative +60430 indicative +infinitive +60436 subjunctive +60439 indicative +60445 indicative +60447 indicative +60453 indicative +60455 indicative +60457 subjunctive +60466 subjunctive +60469 subjunctive +imperative +60472 indicative +60476 indicative +60483 subjunctive +60485 indicative +60489 indicative +60495 indicative +imperative +60506 subjunctive +indicative +60519 indicative +60521 indicative +60527 indicative +60536 subjunctive +60541 subjunctive +60543 indicative +60549 subjunctive +60552 indicative +60558 indicative +60564 subjunctive +60572 indicative +60574 subjunctive +60577 indicative +60580 indicative +60587 indicative +60589 indicative +60595 indicative +60600 indicative +60605 indicative +60610 indicative +60613 indicative +60616 indicative +60620 subjunctive +60623 subjunctive +60628 subjunctive +60633 subjunctive +60640 subjunctive +60643 indicative +60646 subjunctive +60652 indicative +indicative +60658 indicative +60663 indicative +60669 indicative +60676 indicative +60679 indicative +60686 indicative +60690 imperative +60695 indicative +60698 indicative +60706 indicative +60709 indicative +60714 indicative +60718 indicative +60722 indicative +60731 indicative +60733 participle +60737 indicative +60739 indicative +60743 indicative +60748 indicative +60755 participle +60760 indicative +60765 indicative +60771 indicative +60774 indicative +60778 indicative +60780 indicative +60789 subjunctive +60797 participle +60799 indicative +60803 subjunctive +60808 indicative +60821 indicative +60823 indicative +60829 indicative +60835 indicative +60837 indicative +60841 subjunctive +60843 indicative +60846 indicative +60851 participle +60853 subjunctive +60855 infinitive +60860 indicative +60863 indicative +60870 indicative +60874 subjunctive +60878 subjunctive +60882 indicative +60890 indicative +60894 indicative +60897 indicative +60900 participle +60906 indicative +60909 indicative +60913 indicative +60917 indicative +60925 indicative +60927 indicative +60931 subjunctive +60935 subjunctive +60940 subjunctive +60945 subjunctive +indicative +60951 participle +60953 indicative +60969 indicative +60979 indicative +60982 indicative +60993 indicative +60995 indicative +60998 infinitive +61001 indicative +infinitive +61006 subjunctive +61012 indicative +61020 indicative +61025 indicative +indicative +61029 participle +indicative +61034 indicative +61039 indicative +61041 indicative +61045 indicative +61049 indicative +61052 indicative +61057 indicative +61059 indicative +61064 indicative +61070 indicative +61073 indicative +61081 indicative +61084 indicative +61089 indicative +61095 indicative +61099 indicative +61104 indicative +61106 indicative +61109 indicative +61113 indicative +61115 indicative +indicative +61119 indicative +61121 infinitive +61123 indicative +61127 indicative +61131 indicative +61135 indicative +61141 indicative +61145 indicative +61148 indicative +61150 indicative +61155 indicative +61157 indicative +61164 indicative +61168 subjunctive +61170 indicative +61172 indicative +61178 subjunctive +61182 indicative +61189 indicative +61200 indicative +61203 indicative +61206 indicative +61215 indicative +61225 indicative +61229 indicative +61233 subjunctive +61236 indicative +61245 indicative +61251 imperative +61253 indicative +61258 subjunctive +participle +61263 indicative +61265 indicative +61271 indicative +61278 indicative +61288 indicative +61291 indicative +61295 indicative +61304 indicative +61309 indicative +61311 indicative +61317 indicative +indicative +61323 indicative +61328 indicative +61332 indicative +61336 indicative +61340 imperative +61344 indicative +61348 indicative +61350 indicative +61352 indicative +61357 indicative +61361 subjunctive +61364 indicative +61368 indicative +indicative +61373 indicative +imperative +indicative +61378 indicative +61380 subjunctive +61387 subjunctive +61390 indicative +61397 indicative +61399 indicative +61405 subjunctive +61410 indicative +61412 imperative +61414 indicative +61418 indicative +61421 participle +61428 indicative +61430 indicative +61433 imperative +61440 subjunctive +61443 indicative +61451 indicative +61453 subjunctive +61459 indicative +61464 subjunctive +61472 indicative +61477 indicative +61481 participle +61485 indicative +61488 subjunctive +61492 imperative +61500 indicative +61505 infinitive +61508 indicative +61515 indicative +61521 indicative +61524 indicative +61529 indicative +61531 indicative +61535 indicative +61539 indicative +61544 indicative +61546 indicative +61550 indicative +61552 indicative +61557 indicative +61559 indicative +61563 indicative +61567 indicative +61572 indicative +61576 indicative +61580 indicative +61586 indicative +61592 indicative +61597 indicative +61606 indicative +61610 indicative +61613 imperative +61620 indicative +61623 subjunctive +61628 indicative +61632 indicative +61639 indicative +61642 indicative +61647 indicative +61657 subjunctive +61662 indicative +61665 indicative +61670 subjunctive +61675 participle +61679 indicative +61687 indicative +61691 indicative +61698 indicative +61703 indicative +61705 subjunctive +61712 subjunctive +61721 indicative +61725 indicative +61729 imperative +61739 indicative +61742 indicative +61747 indicative +61756 indicative +61759 subjunctive +participle +61769 indicative +61775 participle +61785 subjunctive +61799 subjunctive +61803 subjunctive +61807 indicative +61812 indicative +61814 indicative +61817 subjunctive +61830 subjunctive +participle +61835 subjunctive +61841 indicative +61843 indicative +61847 indicative +61850 indicative +61852 indicative +61855 indicative +61858 subjunctive +61862 subjunctive +61868 indicative +61871 indicative +61883 indicative +61887 indicative +61890 indicative +61894 indicative +61896 indicative +61902 indicative +61907 indicative +61911 subjunctive +61916 participle +61918 indicative +61929 indicative +61933 indicative +61940 indicative +61944 participle +61950 indicative +61960 participle +61972 indicative +61982 participle +61985 participle +61988 indicative +61990 indicative +61993 indicative +indicative +61999 indicative +62002 indicative +62004 indicative +62008 participle +62014 indicative +62017 indicative +indicative +62023 indicative +62027 indicative +62030 indicative +62033 indicative +62037 indicative +62039 indicative +62043 indicative +62047 indicative +imperative +62050 infinitive +62052 subjunctive +62056 indicative +62059 indicative +62062 indicative +62069 participle +62071 indicative +62074 indicative +62080 indicative +62087 indicative +62093 indicative +62098 imperative +62107 indicative +62113 subjunctive +62126 indicative +62130 indicative +62133 indicative +62138 indicative +62143 indicative +62149 indicative +62152 participle +62156 indicative +62159 infinitive +62164 indicative +62176 indicative +62181 indicative +62192 indicative +62198 indicative +62208 indicative +62212 indicative +62216 indicative +62232 indicative +indicative +62236 indicative +62238 indicative +62245 participle +62248 indicative +62250 indicative +62257 indicative +participle +62260 participle +62264 indicative +62276 indicative +62281 indicative +62286 indicative +62297 indicative +62301 indicative +62305 indicative +imperative +62308 participle +62310 indicative +62312 imperative +62314 indicative +62316 indicative +62321 participle +62323 participle +62326 indicative +62330 participle +62332 indicative +62335 indicative +62340 indicative +imperative +62350 indicative +62352 indicative +62356 participle +62364 indicative +participle +62367 participle +62369 indicative +62378 indicative +indicative +62382 indicative +62384 indicative +indicative +62392 participle +62395 indicative +62401 indicative +62410 indicative +62415 indicative +62417 indicative +62427 indicative +62432 indicative +62438 subjunctive +62440 subjunctive +62444 indicative +62451 indicative +62457 indicative +indicative +62460 indicative +62464 indicative +participle +62471 indicative +62474 indicative +62478 imperative +62486 imperative +62488 indicative +62494 indicative +infinitive +62502 subjunctive +62504 indicative +participle +62508 indicative +infinitive +62511 indicative +62519 indicative +62523 indicative +62526 indicative +62531 indicative +62537 indicative +62540 indicative +62544 indicative +62550 indicative +62558 indicative +62562 indicative +indicative +62570 indicative +62580 indicative +62590 indicative +62593 subjunctive +62603 indicative +62606 indicative +62612 indicative +62614 indicative +62618 indicative +62621 indicative +62625 indicative +62629 indicative +62634 subjunctive +62639 participle +62643 indicative +62647 indicative +62652 indicative +62656 participle +62658 indicative +62663 indicative +62667 indicative +62672 indicative +62677 subjunctive +62683 indicative +subjunctive +62691 indicative +62693 participle +62700 indicative +62706 indicative +62712 indicative +62716 participle +62720 indicative +62727 indicative +62730 indicative +62734 indicative +imperative +62741 indicative +62745 indicative +62751 indicative +62753 imperative +indicative +62759 subjunctive +62763 indicative +62767 indicative +62771 participle +62780 indicative +62782 imperative +62787 indicative +62794 indicative +participle +imperative +imperative +indicative +62802 imperative +62806 imperative +62810 indicative +62814 indicative +62820 indicative +62825 indicative +infinitive +62831 indicative +62834 indicative +62841 indicative +62843 indicative +62849 indicative +62853 indicative +62860 indicative +62863 indicative +62869 indicative +62871 indicative +62874 indicative +infinitive +62879 indicative +infinitive +62882 indicative +62885 indicative +62892 indicative +participle +62899 participle +62904 indicative +62909 indicative +infinitive +62915 indicative +participle +62919 subjunctive +62921 indicative +62929 participle +indicative +62936 participle +62940 indicative +62945 indicative +62950 participle +62956 indicative +62961 indicative +62965 indicative +62968 imperative +62973 indicative +62975 imperative +imperative +imperative +62979 indicative +62986 subjunctive +indicative +62991 indicative +62998 indicative +63002 subjunctive +63004 indicative +63008 participle +63012 indicative +63015 participle +63019 indicative +63024 indicative +63038 indicative +63044 indicative +63049 indicative +participle +63062 indicative +63070 indicative +63074 indicative +63078 indicative +participle +63084 indicative +63092 imperative +63100 indicative +63104 indicative +indicative +63109 indicative +indicative +63115 indicative +63118 indicative +63123 indicative +63133 indicative +63144 indicative +63148 subjunctive +63151 subjunctive +63155 indicative +63159 subjunctive +indicative +63170 indicative +63177 indicative +63179 indicative +63204 participle +63210 participle +63212 indicative +indicative +63217 imperative +63222 indicative +63225 imperative +63234 indicative +63245 participle +63249 indicative +63251 subjunctive +63254 indicative +indicative +63259 indicative +63266 participle +indicative +63273 indicative +63278 indicative +indicative +63281 participle +63284 indicative +63292 indicative +63295 subjunctive +63305 indicative +63312 indicative +63316 subjunctive +63321 subjunctive +63323 indicative +63328 indicative +63337 participle +63343 participle +63345 indicative +63348 participle +63350 indicative +63362 indicative +63364 indicative +63371 participle +indicative +63375 indicative +63381 indicative +63384 indicative +63388 subjunctive +63390 indicative +63395 subjunctive +63399 indicative +63404 indicative +indicative +63408 indicative +63412 indicative +63418 participle +63423 participle +63430 subjunctive +63436 indicative +63440 indicative +63442 indicative +63447 indicative +63451 participle +63457 participle +63466 indicative +63472 indicative +63480 indicative +63483 infinitive +63485 indicative +63490 indicative +63502 indicative +participle +63513 indicative +63516 indicative +63527 indicative +63534 participle +63536 indicative +63539 participle +63544 indicative +63546 indicative +63556 indicative +63560 indicative +63562 indicative +63570 indicative +63572 indicative +63575 indicative +63583 indicative +63588 indicative +63596 indicative +63601 indicative +63607 participle +indicative +participle +63614 indicative +63616 indicative +63620 participle +63623 indicative +63628 indicative +63631 participle +63636 indicative +63645 participle +63648 participle +63654 indicative +63660 participle +63666 indicative +63668 indicative +63671 indicative +63675 indicative +63679 infinitive +63681 indicative +63689 indicative +63694 participle +63697 indicative +indicative +63703 indicative +63708 participle +63710 indicative +63725 indicative +63730 indicative +indicative +63734 indicative +63740 indicative +63742 indicative +63745 participle +indicative +63751 indicative +63754 participle +63757 indicative +63760 indicative +indicative +63766 indicative +63768 indicative +63770 participle +63774 indicative +indicative +63780 indicative +63782 imperative +63785 indicative +63789 indicative +indicative +63794 participle +63796 indicative +63801 indicative +63803 indicative +63808 imperative +63811 indicative +63816 imperative +63822 imperative +63824 indicative +63838 indicative +63842 participle +63846 indicative +63851 indicative +63854 participle +63865 participle +63867 indicative +63875 indicative +63879 indicative +63884 indicative +63890 participle +indicative +63900 indicative +63903 participle +63907 indicative +63915 indicative +63920 indicative +63924 participle +indicative +63927 indicative +63929 imperative +63933 subjunctive +63937 indicative +63941 subjunctive +indicative +63950 participle +63953 indicative +63957 indicative +63960 indicative +63965 indicative +63970 indicative +63974 subjunctive +63984 subjunctive +63994 subjunctive +64004 subjunctive +64010 indicative +64019 indicative +64024 participle +64026 indicative +64031 indicative +64035 indicative +64038 imperative +64044 imperative +64049 imperative +64054 imperative +64061 imperative +64065 indicative +64068 indicative +64077 indicative +64082 indicative +64084 indicative +64088 participle +64090 participle +64097 indicative +64105 indicative +participle +64113 indicative +64115 subjunctive +64118 indicative +64127 participle +64129 subjunctive +64136 indicative +64148 indicative +64150 indicative +64157 participle +64177 indicative +64181 indicative +infinitive +indicative +64185 indicative +64190 indicative +64192 indicative +64201 indicative +64206 participle +indicative +64214 indicative +64219 indicative +64221 indicative +64228 indicative +indicative +64234 indicative +64236 imperative +64246 indicative +64248 indicative +64252 infinitive +indicative +64260 indicative +64265 indicative +64272 indicative +64276 participle +64280 indicative +64283 indicative +64285 indicative +64288 indicative +64299 indicative +64302 indicative +64312 participle +64319 indicative +64323 indicative +64325 participle +64328 participle +64331 indicative +64335 imperative +64340 indicative +64342 indicative +64346 indicative +64360 participle +64362 indicative +64365 indicative +64369 imperative +imperative +64374 indicative +infinitive +64379 indicative +participle +64384 indicative +indicative +64388 indicative +64392 indicative +64401 indicative +64405 participle +64410 indicative +indicative +64419 indicative +64423 indicative +64428 indicative +64430 indicative +64432 indicative +64434 imperative +64438 indicative +64444 indicative +64446 indicative +64451 indicative +64453 indicative +64455 indicative +64457 imperative +64461 indicative +64467 indicative +64469 indicative +64473 indicative +64477 indicative +64480 indicative +64485 indicative +64487 indicative +64489 indicative +64491 indicative +64494 imperative +64500 indicative +64503 indicative +64505 indicative +64508 indicative +64510 indicative +64513 subjunctive +indicative +64520 indicative +64523 indicative +64526 indicative +64529 indicative +participle +64533 indicative +64538 participle +indicative +64541 imperative +64543 participle +64546 indicative +64550 indicative +64553 participle +64556 indicative +64565 indicative +64568 indicative +64570 participle +64574 participle +64577 indicative +64584 indicative +64590 infinitive +subjunctive +64593 indicative +64599 imperative +64601 indicative +64613 indicative +64616 indicative +64622 indicative +64626 infinitive +subjunctive +64629 indicative +64634 indicative +64638 participle +64643 participle +64646 indicative +64652 indicative +64654 indicative +64659 indicative +64664 subjunctive +64667 indicative +64672 infinitive +64674 participle +64682 indicative +64687 infinitive +64689 infinitive +indicative +64696 participle +64700 indicative +64704 indicative +64707 indicative +64709 participle +64712 infinitive +64720 participle +64723 participle +64731 participle +indicative +64737 infinitive +64739 infinitive +64745 indicative +64750 indicative +64757 indicative +64766 participle +indicative +64769 participle +64776 indicative +64781 indicative +64786 indicative +infinitive +64794 indicative +64800 indicative +64802 participle +64809 indicative +64829 participle +participle +64832 indicative +64835 indicative +64843 participle +indicative +64848 participle +64851 imperative +64854 indicative +64861 indicative +64865 indicative +participle +64874 participle +64881 indicative +64884 indicative +64886 participle +64891 indicative +64897 participle +64900 indicative +64905 participle +64908 indicative +64912 indicative +64914 indicative +participle +64942 indicative +participle +64965 participle +64971 indicative +64973 indicative +64984 indicative +infinitive +64989 indicative +65000 participle +65003 participle +65006 participle +indicative +65011 indicative +65020 indicative +65028 participle +indicative +65032 indicative +65039 indicative +65042 participle +65045 infinitive +65055 indicative +65059 indicative +65063 imperative +65070 imperative +65072 participle +65079 imperative +65082 indicative +65085 participle +65091 indicative +65093 indicative +65099 participle +65108 indicative +65117 infinitive +65121 indicative +65125 participle +65128 indicative +65133 participle +indicative +65139 imperative +65141 indicative +65147 infinitive +65157 indicative +65159 infinitive +65166 indicative +65170 indicative +65176 indicative +65184 infinitive +65189 indicative +65196 indicative +65203 participle +65207 indicative +65212 indicative +participle +65215 indicative +65217 participle +65222 indicative +65228 indicative +65233 indicative +infinitive +65240 indicative +infinitive +65244 indicative +participle +65259 participle +65263 indicative +65267 indicative +65269 indicative +65275 participle +65278 indicative +65280 indicative +participle +imperative +65287 participle +indicative +65293 indicative +65301 indicative +65309 participle +65335 participle +65344 indicative +participle +65355 indicative +65358 indicative +65362 participle +indicative +65366 infinitive +65369 participle +indicative +65373 participle +indicative +65376 participle +65382 indicative +65387 indicative +65393 participle +65399 imperative +65401 imperative +65409 indicative +65411 indicative +65413 indicative +65420 indicative +65422 participle +65428 indicative +65433 indicative +65436 indicative +65445 indicative +65458 indicative +65464 indicative +65479 indicative +65485 indicative +65487 indicative +65507 indicative +65516 infinitive +65524 indicative +65528 subjunctive +65532 indicative +65535 imperative +65543 participle +65555 indicative +65565 indicative +65568 participle +65578 participle +indicative +65583 indicative +participle +65591 indicative +65593 infinitive +65599 indicative +65602 indicative +65613 indicative +65616 subjunctive +65619 indicative +65624 indicative +65634 indicative +65639 indicative +65646 indicative +65650 infinitive +65652 indicative +65656 indicative +65665 participle +infinitive +65677 indicative +65679 indicative +65684 indicative +65693 participle +65695 participle +65698 indicative +65707 infinitive +65712 participle +indicative +65721 indicative +65728 indicative +65733 indicative +65739 indicative +65746 participle +65754 participle +65758 indicative +65763 indicative +65765 indicative +65769 indicative +65774 indicative +65776 indicative +65781 imperative +65787 subjunctive +65797 imperative +65806 indicative +65815 indicative +65817 participle +indicative +65822 indicative +65831 subjunctive +65838 imperative +65840 imperative +65854 indicative +65862 indicative +65876 subjunctive +65885 indicative +65887 indicative +65889 participle +imperative +65900 participle +65904 indicative +65906 indicative +65915 indicative +participle +65932 indicative +65944 indicative +65948 participle +65952 indicative +65961 indicative +65963 indicative +65970 indicative +65974 participle +65980 participle +65984 indicative +65991 participle +65995 participle +66004 indicative +66006 participle +66016 indicative +66035 participle +indicative +66038 indicative +66047 participle +66050 infinitive +66054 participle +66059 participle +66063 participle +infinitive +66068 indicative +66070 infinitive +66073 participle +66079 indicative +imperative +66085 indicative +66087 participle +66091 infinitive +66093 indicative +66099 indicative +66103 indicative +66106 indicative +66114 imperative +66116 participle +66121 indicative +66125 indicative +66133 participle +indicative +66136 indicative +66138 indicative +66144 participle +66146 participle +66148 participle +66152 indicative +66157 participle +66159 participle +66163 indicative +66167 indicative +66172 participle +66180 indicative +66186 participle +66189 participle +66196 indicative +66206 participle +66210 participle +66213 indicative +66220 indicative +66226 indicative +66232 participle +66234 infinitive +66248 indicative +66256 indicative +66258 indicative +66262 participle +66264 infinitive +66271 indicative +66273 indicative +66276 infinitive +66283 indicative +66287 indicative +66293 indicative +66303 indicative +66305 indicative +indicative +66316 indicative +66327 indicative +66331 indicative +66341 indicative +66347 infinitive +66351 indicative +66354 imperative +66356 imperative +66359 infinitive +66365 subjunctive +66373 subjunctive +66375 participle +66379 indicative +66383 infinitive +66389 indicative +66402 indicative +66406 indicative +66417 indicative +66422 subjunctive +66426 indicative +66432 subjunctive +66436 indicative +66451 indicative +66453 indicative +66458 indicative +66469 indicative +66474 participle +66482 indicative +66492 participle +66496 indicative +66498 participle +66502 infinitive +66509 participle +66514 indicative +66526 participle +66529 infinitive +66534 infinitive +66544 indicative +66549 indicative +66556 indicative +66562 participle +66565 indicative +66567 indicative +66575 indicative +66579 infinitive +66603 indicative +66608 participle +66613 indicative +66621 indicative +66626 participle +66629 indicative +66640 indicative +66648 indicative +66650 imperative +66668 indicative +66672 indicative +66678 indicative +66683 indicative +66687 participle +66693 participle +66699 indicative +66707 indicative +66714 participle +66719 indicative +infinitive +66723 participle +66731 participle +66735 indicative +66738 indicative +66740 indicative +66746 indicative +66748 participle +66752 participle +66755 participle +66757 infinitive +indicative +66760 participle +66765 infinitive +indicative +66769 participle +66771 subjunctive +66780 indicative +66785 participle +66790 indicative +infinitive +66797 subjunctive +66801 subjunctive +66804 infinitive +66812 participle +66814 indicative +66817 infinitive +66819 infinitive +66830 participle +indicative +66836 indicative +66841 infinitive +66846 imperative +66849 indicative +66852 indicative +66854 indicative +66856 infinitive +66859 participle +indicative +66863 participle +66866 subjunctive +66873 indicative +66878 participle +66883 indicative +66888 indicative +66895 participle +indicative +66901 indicative +66910 indicative +66913 participle +66915 indicative +66921 indicative +66925 participle +66950 participle +66953 indicative +66957 indicative +66959 indicative +66967 indicative +66980 indicative +66994 indicative +67005 infinitive +67007 infinitive +67014 indicative +67019 imperative +67025 imperative +67032 infinitive +67040 infinitive +67048 infinitive +67058 participle +67060 indicative +67065 indicative +participle +67068 indicative +67074 indicative +67085 participle +67089 indicative +67096 participle +67099 infinitive +indicative +67102 indicative +67109 indicative +67122 indicative +67130 indicative +67139 indicative +participle +indicative +67145 participle +67147 indicative +67154 indicative +67160 indicative +67164 participle +67170 indicative +participle +67178 participle +67181 participle +indicative +67186 indicative +67202 indicative +67205 indicative +67209 participle +67214 participle +67222 indicative +67224 indicative +67230 indicative +67236 infinitive +67243 infinitive +67250 participle +67252 indicative +67254 participle +67259 indicative +67262 indicative +67271 indicative +67279 participle +67283 participle +indicative +67286 indicative +67292 participle +67294 participle +67297 indicative +67300 participle +indicative +67303 indicative +67313 participle +67315 participle +indicative +67318 indicative +67322 imperative +67328 indicative +67331 indicative +67341 indicative +67343 infinitive +67347 imperative +67351 participle +67359 indicative +67362 indicative +67369 indicative +67371 participle +67374 indicative +67378 participle +indicative +67385 indicative +67396 participle +67404 indicative +67413 indicative +67424 indicative +infinitive +67428 indicative +67434 indicative +participle +67448 infinitive +67452 infinitive +67458 participle +67463 subjunctive +67467 indicative +67475 participle +67478 participle +67484 indicative +67486 participle +67495 participle +67499 indicative +67502 indicative +67509 indicative +67519 indicative +67525 participle +67527 indicative +imperative +67530 participle +imperative +67544 participle +indicative +67553 indicative +67555 participle +67562 indicative +67573 indicative +67577 infinitive +67581 participle +67584 indicative +67590 participle +indicative +participle +67594 indicative +67597 participle +67604 participle +67609 participle +67612 indicative +67615 indicative +67627 indicative +67632 optative +67635 participle +67637 indicative +67640 imperative +67644 indicative +67648 indicative +participle +67654 participle +67658 participle +67664 indicative +67670 indicative +67674 subjunctive +67676 participle +67678 indicative +67683 indicative +67687 participle +67689 indicative +67692 infinitive +67698 imperative +indicative +67706 indicative +infinitive +67716 participle +67721 indicative +indicative +infinitive +67733 indicative +67737 indicative +participle +67747 indicative +67752 infinitive +67761 indicative +67772 indicative +67776 participle +67780 participle +indicative +67783 indicative +infinitive +67787 participle +67800 indicative +67805 infinitive +67807 indicative +67812 imperative +67819 infinitive +indicative +67826 indicative +67828 participle +infinitive +67833 indicative +67839 indicative +67843 indicative +67845 indicative +67847 indicative +67852 indicative +67862 indicative +67867 indicative +67871 indicative +67873 indicative +67877 indicative +67879 imperative +67885 imperative +67889 subjunctive +67899 indicative +67904 indicative +67906 indicative +infinitive +67913 subjunctive +67915 indicative +67918 participle +67921 participle +indicative +67924 infinitive +67931 indicative +67935 indicative +participle +67942 indicative +67946 infinitive +67957 indicative +participle +67960 participle +67969 participle +67972 indicative +67980 indicative +67992 participle +67997 indicative +68000 indicative +68002 participle +68007 infinitive +68011 imperative +68015 participle +68022 indicative +68036 indicative +68038 indicative +68046 indicative +68069 indicative +68074 participle +indicative +68084 indicative +68086 indicative +68099 indicative +68108 indicative +68117 indicative +68124 participle +68136 participle +68141 indicative +infinitive +68149 indicative +68151 indicative +68153 participle +68155 indicative +68157 participle +68166 indicative +68176 participle +indicative +68180 indicative +68185 indicative +68188 participle +68193 indicative +participle +68205 indicative +68207 participle +68213 indicative +68218 indicative +68222 indicative +68226 participle +68231 participle +68235 indicative +68243 indicative +68249 indicative +68252 indicative +68257 imperative +68262 indicative +68267 participle +68273 infinitive +68278 indicative +68281 imperative +68291 imperative +68298 indicative +68300 participle +68304 indicative +68310 infinitive +68314 indicative +68324 indicative +68327 indicative +68336 indicative +infinitive +68349 participle +68353 indicative +68358 indicative +68367 indicative +68369 indicative +68378 indicative +indicative +68383 indicative +68387 indicative +68389 indicative +68396 indicative +68402 indicative +68406 indicative +68424 participle +68427 indicative +68431 indicative +68437 indicative +68445 indicative +68455 indicative +68457 participle +68466 indicative +68479 indicative +68486 participle +participle +68491 indicative +68500 indicative +68507 indicative +68514 participle +68516 indicative +68530 indicative +68535 indicative +68542 indicative +68546 indicative +68551 indicative +68563 indicative +68569 indicative +68576 indicative +68578 indicative +68583 indicative +68590 indicative +68594 participle +68598 indicative +68602 infinitive +68610 infinitive +68614 indicative +68617 indicative +68622 indicative +68631 participle +68633 indicative +68639 indicative +68645 indicative +68651 indicative +68660 indicative +68664 indicative +68669 infinitive +68677 participle +68679 participle +indicative +68682 indicative +68685 participle +participle +68690 indicative +infinitive +68700 indicative +68706 indicative +68709 participle +68711 indicative +68713 participle +68715 indicative +68719 participle +68722 indicative +68725 indicative +68729 participle +68732 indicative +68734 participle +68737 indicative +68744 infinitive +68747 indicative +68750 indicative +68755 indicative +68762 indicative +68768 indicative +68772 participle +68775 indicative +68791 participle +indicative +68796 participle +68798 infinitive +indicative +68817 participle +68820 indicative +infinitive +68823 indicative +68827 imperative +68838 indicative +68841 indicative +participle +indicative +68856 indicative +68858 indicative +infinitive +68863 imperative +subjunctive +68872 indicative +participle +68876 indicative +68887 indicative +68892 participle +68898 indicative +68900 participle +68918 indicative +68922 participle +68928 indicative +68938 indicative +68940 participle +68951 participle +68962 indicative +68964 participle +infinitive +68969 indicative +68971 infinitive +68976 indicative +68978 indicative +68985 participle +68988 imperative +68992 indicative +68999 indicative +69005 indicative +69007 indicative +69010 indicative +69016 indicative +69021 indicative +69029 indicative +69033 indicative +69035 infinitive +69041 indicative +69050 indicative +69060 indicative +69074 indicative +infinitive +69078 indicative +69086 indicative +69094 indicative +69096 participle +69099 infinitive +69105 indicative +69108 indicative +participle +69121 indicative +69134 indicative +69140 indicative +infinitive +69148 indicative +69157 indicative +69161 indicative +69175 indicative +69177 indicative +69189 indicative +69205 indicative +69216 indicative +69221 indicative +69223 participle +69235 indicative +69237 indicative +69245 indicative +69247 participle +69249 indicative +69254 indicative +69260 participle +69264 participle +69268 indicative +69273 participle +69279 indicative +imperative +indicative +69284 participle +69294 participle +69296 participle +69299 indicative +69304 indicative +69309 participle +69313 indicative +69317 indicative +69325 participle +69328 indicative +69331 participle +69333 participle +69336 imperative +69341 participle +69344 indicative +69349 subjunctive +69356 participle +indicative +69360 indicative +participle +69366 indicative +69381 indicative +69393 indicative +69399 indicative +69406 indicative +69412 participle +participle +69418 indicative +69424 participle +indicative +participle +69431 participle +69437 indicative +69442 indicative +69446 participle +69453 infinitive +69456 infinitive +69460 indicative +69464 participle +69467 participle +69470 indicative +69473 participle +69476 indicative +69478 indicative +69490 indicative +69494 participle +69496 participle +69501 participle +infinitive +69507 indicative +69513 participle +69515 indicative +69521 participle +69524 indicative +69532 infinitive +69536 indicative +69539 participle +69550 indicative +69560 indicative +69562 participle +indicative +participle +69567 participle +69573 participle +indicative +69580 participle +69582 indicative +69589 indicative +69596 participle +indicative +69601 subjunctive +69606 indicative +participle +69613 participle +indicative +69622 indicative +69628 indicative +69634 participle +69643 indicative +69646 indicative +69649 participle +imperative +69658 subjunctive +69661 subjunctive +69666 indicative +69674 optative +69678 indicative +69685 infinitive +69687 indicative +69701 indicative +69707 imperative +69714 imperative +69719 indicative +69734 participle +indicative +69737 participle +69740 indicative +imperative +69749 subjunctive +69754 indicative +69758 participle +69760 participle +69765 indicative +69773 indicative +69777 indicative +69780 participle +imperative +69783 imperative +69790 participle +69796 indicative +69799 participle +indicative +69802 imperative +69811 indicative +69818 indicative +participle +69822 indicative +69824 participle +69826 participle +69832 indicative +69837 indicative +69842 imperative +69844 imperative +69849 participle +69852 indicative +69854 participle +69859 indicative +69862 indicative +69864 indicative +69867 indicative +69871 optative +69875 indicative +69878 indicative +69881 participle +infinitive +69891 indicative +indicative +69898 indicative +69904 participle +69909 indicative +69919 indicative +69924 indicative +69926 indicative +69934 participle +69939 indicative +indicative +69946 indicative +69957 participle +69962 participle +69967 indicative +69973 indicative +69977 indicative +69982 indicative +69985 imperative +69988 indicative +69990 infinitive +69992 indicative +infinitive +69997 indicative +70009 indicative +70013 indicative +70019 indicative +70024 indicative +70030 indicative +70034 participle +70037 indicative +70041 participle +indicative +70048 infinitive +70056 participle +70065 participle +70068 indicative +70079 subjunctive +70083 participle +70088 participle +subjunctive +70095 infinitive +indicative +70098 infinitive +70104 indicative +70110 participle +70114 indicative +70116 participle +70122 indicative +70124 indicative +70126 indicative +70131 indicative +70135 indicative +70137 imperative +70139 imperative +70144 indicative +70149 infinitive +indicative +70155 participle +70157 indicative +70160 participle +70165 participle +70167 indicative +70173 participle +70178 indicative +70180 participle +70182 indicative +70186 indicative +participle +70193 indicative +70195 indicative +70197 indicative +70205 indicative +70215 indicative +imperative +70224 participle +imperative +70230 participle +70233 imperative +70241 imperative +indicative +70244 indicative +70248 participle +70250 participle +70254 subjunctive +70256 indicative +70259 indicative +70271 indicative +70276 indicative +70281 infinitive +70284 participle +70289 indicative +70294 imperative +70298 indicative +70302 infinitive +70316 indicative +70324 infinitive +indicative +70327 indicative +70330 indicative +70335 participle +70340 indicative +70347 participle +70353 indicative +indicative +70357 subjunctive +70359 subjunctive +70364 indicative +70372 indicative +70374 participle +indicative +70377 participle +70379 indicative +70381 indicative +70394 indicative +70399 indicative +70405 indicative +70408 participle +70410 indicative +70413 indicative +70415 participle +70419 participle +70427 indicative +70429 participle +70431 subjunctive +70438 indicative +70440 indicative +70443 participle +70446 participle +70449 indicative +70454 indicative +70457 indicative +70460 infinitive +70463 indicative +70470 indicative +70480 subjunctive +70482 participle +70490 indicative +70492 participle +70496 participle +70499 indicative +infinitive +70505 indicative +70508 participle +70510 indicative +70514 participle +70516 indicative +70521 indicative +70527 indicative +70532 indicative +70538 indicative +70544 indicative +participle +70547 participle +70552 participle +70559 indicative +70561 indicative +70567 indicative +infinitive +70571 participle +70574 indicative +70579 indicative +70595 indicative +70597 participle +70599 participle +70610 indicative +70612 indicative +70614 participle +70617 infinitive +70623 participle +70626 indicative +70635 participle +70639 indicative +participle +70642 indicative +70647 indicative +70651 imperative +70653 imperative +70657 indicative +70659 indicative +70663 participle +70669 indicative +70676 indicative +70682 participle +indicative +70686 indicative +70693 indicative +70695 indicative +70700 participle +70702 infinitive +70704 participle +indicative +70709 participle +70716 participle +70719 indicative +70722 indicative +70727 participle +70729 subjunctive +infinitive +70734 participle +70736 indicative +70739 participle +indicative +70745 indicative +70750 participle +70752 participle +70757 indicative +70760 participle +70766 participle +70770 participle +70773 indicative +70775 participle +70779 indicative +70781 imperative +70784 indicative +70789 participle +70792 indicative +70794 participle +70797 indicative +70800 participle +70806 indicative +70808 participle +70811 indicative +70817 indicative +70823 indicative +70826 infinitive +70844 participle +70848 participle +70856 participle +70862 participle +70867 indicative +70880 participle +70884 participle +70889 participle +70893 participle +indicative +70896 indicative +70899 indicative +70908 indicative +70916 imperative +70921 imperative +70925 indicative +70928 indicative +70934 indicative +70940 indicative +70944 participle +70946 participle +70954 participle +70957 participle +70960 indicative +70968 participle +70973 participle +indicative +70979 infinitive +70984 indicative +70987 indicative +infinitive +70990 participle +70992 indicative +70997 indicative +71000 participle +71002 participle +71010 participle +71016 indicative +71029 indicative +71034 participle +imperative +71037 imperative +71041 indicative +71046 indicative +71061 indicative +71064 imperative +71067 indicative +71072 indicative +71082 indicative +71087 optative +71091 indicative +imperative +71096 participle +71100 participle +71105 indicative +71110 participle +indicative +71115 participle +71118 indicative +71122 participle +71126 indicative +71129 imperative +71132 participle +71135 participle +imperative +71138 imperative +71142 participle +71145 indicative +71148 participle +71153 indicative +imperative +71156 indicative +71158 indicative +71164 indicative +71167 indicative +71173 participle +71177 participle +71184 indicative +71188 infinitive +71195 infinitive +71200 participle +71202 indicative +71206 participle +indicative +71217 indicative +71222 indicative +71229 indicative +participle +71232 participle +71242 indicative +71244 infinitive +71247 participle +71251 participle +71255 indicative +71259 indicative +71261 participle +imperative +71267 indicative +71269 participle +71271 indicative +71273 indicative +participle +71277 indicative +71281 indicative +71284 indicative +71287 infinitive +71289 infinitive +71294 indicative +71300 infinitive +71304 indicative +participle +71307 indicative +71310 indicative +71315 indicative +71323 indicative +participle +71332 imperative +71334 indicative +71341 indicative +71343 indicative +71351 indicative +71356 imperative +71360 imperative +71363 indicative +71366 indicative +71375 indicative +71381 indicative +participle +71390 indicative +infinitive +71394 participle +71401 participle +71404 indicative +71407 indicative +71410 indicative +71419 participle +71422 participle +71426 indicative +71430 indicative +71434 participle +71440 indicative +71444 indicative +71447 participle +71452 participle +71460 indicative +71467 indicative +71476 indicative +participle +71479 participle +71482 participle +71489 indicative +71497 indicative +71508 indicative +participle +71515 indicative +71521 indicative +71524 infinitive +71532 participle +71538 indicative +71540 indicative +71544 infinitive +71549 indicative +71551 infinitive +71555 infinitive +71558 indicative +71560 participle +71565 participle +71572 indicative +71575 infinitive +71582 participle +71586 participle +71592 indicative +71600 participle +71604 indicative +71610 indicative +71623 indicative +71625 indicative +71627 participle +71630 participle +71634 indicative +71639 infinitive +indicative +71644 infinitive +71651 indicative +71656 indicative +71663 infinitive +71665 indicative +71667 infinitive +71671 indicative +71678 participle +71686 indicative +71693 indicative +71697 indicative +71703 participle +71705 indicative +71709 participle +71711 indicative +71714 participle +71716 indicative +71719 participle +71721 indicative +participle +71727 indicative +71731 participle +71739 participle +71744 indicative +71749 participle +indicative +71752 indicative +71769 indicative +71772 participle +71775 participle +imperative +71778 imperative +71780 indicative +71788 indicative +71794 indicative +71804 indicative +71807 imperative +71810 indicative +71814 indicative +71821 imperative +71825 indicative +71831 indicative +participle +71838 indicative +71842 infinitive +71845 participle +71847 indicative +71856 indicative +71863 indicative +71866 indicative +71873 participle +71875 participle +imperative +71880 imperative +71883 participle +71886 indicative +71892 indicative +71902 infinitive +71904 infinitive +indicative +71919 indicative +71925 indicative +71928 indicative +71932 indicative +71941 indicative +71948 participle +71956 indicative +71958 infinitive +71962 participle +71964 indicative +71966 indicative +71969 participle +71980 indicative +71984 participle +71989 participle +71992 indicative +72000 participle +72008 indicative +72017 participle +72020 indicative +72025 participle +72030 indicative +72039 participle +indicative +72045 indicative +72056 participle +72060 indicative +72065 participle +72067 participle +72073 indicative +72075 indicative +72081 infinitive +72085 indicative +72095 indicative +72101 indicative +72104 infinitive +72107 participle +indicative +72112 indicative +72117 infinitive +72122 infinitive +72126 infinitive +72138 indicative +72145 participle +72151 indicative +72157 infinitive +infinitive +72164 indicative +72171 indicative +72173 indicative +72178 infinitive +72180 participle +72187 indicative +participle +72202 indicative +72208 infinitive +72215 indicative +72222 participle +72225 indicative +72228 indicative +infinitive +72233 indicative +72239 participle +indicative +72243 participle +72247 infinitive +72249 participle +72253 infinitive +72261 indicative +72267 indicative +participle +72280 indicative +infinitive +72290 indicative +participle +72295 participle +72303 indicative +72307 imperative +72310 indicative +72313 indicative +72318 participle +72323 indicative +72325 participle +imperative +72330 indicative +72338 indicative +72343 imperative +72345 imperative +72350 indicative +72353 indicative +72355 imperative +72360 imperative +72363 participle +indicative +72367 indicative +72370 indicative +72372 participle +72377 indicative +72379 infinitive +72381 participle +72386 indicative +72393 participle +72399 indicative +72402 participle +indicative +72408 indicative +72418 participle +indicative +72421 indicative +72424 indicative +72431 indicative +72445 participle +indicative +72456 participle +72460 indicative +participle +72463 participle +72465 participle +72471 indicative +infinitive +72477 participle +72486 indicative +72490 participle +indicative +infinitive +72502 indicative +indicative +72506 indicative +72508 infinitive +72511 indicative +72514 indicative +72519 indicative +participle +72522 participle +indicative +72526 indicative +72528 participle +72532 infinitive +indicative +72539 indicative +72544 indicative +imperative +72552 participle +indicative +72558 participle +72560 indicative +72571 indicative +72574 participle +72578 participle +participle +72582 indicative +infinitive +72585 participle +72591 indicative +72593 indicative +participle +72600 indicative +72604 participle +72612 indicative +72616 infinitive +72628 participle +72631 participle +72635 indicative +72641 indicative +72649 indicative +72656 indicative +72662 participle +72664 indicative +72670 indicative +72672 indicative +72677 indicative +72680 participle +72683 participle +72686 participle +72689 indicative +72694 participle +72705 participle +72720 participle +72725 participle +indicative +72732 imperative +72742 indicative +72745 participle +72747 participle +72749 participle +72753 indicative +72757 participle +72762 indicative +72767 indicative +72771 participle +72774 indicative +72785 indicative +72790 participle +72796 indicative +72806 indicative +72815 participle +72819 indicative +infinitive +72826 indicative +72833 indicative +72837 participle +infinitive +72849 participle +72852 participle +72855 indicative +72869 indicative +participle +72879 imperative +72885 indicative +72888 participle +72895 indicative +72902 participle +indicative +72908 participle +72910 participle +indicative +participle +72919 participle +72926 indicative +72933 participle +72936 indicative +72941 participle +72945 indicative +72951 participle +72959 indicative +72969 indicative +72974 participle +72978 indicative +72987 imperative +72990 participle +72992 participle +72995 indicative +73000 participle +73003 imperative +73010 indicative +73017 indicative +73028 indicative +73036 indicative +73042 participle +73048 indicative +73060 indicative +73066 indicative +73069 indicative +73084 participle +73086 indicative +73094 indicative +participle +indicative +73107 indicative +73120 indicative +73125 participle +73140 indicative +73144 indicative +73147 infinitive +indicative +73150 indicative +73153 imperative +indicative +73159 indicative +73165 infinitive +73175 participle +73184 indicative +73187 participle +73195 participle +73205 participle +participle +indicative +73212 participle +indicative +73215 infinitive +73219 indicative +73224 participle +participle +73229 indicative +73235 indicative +73240 indicative +73245 participle +73254 indicative +73263 indicative +73268 participle +73274 indicative +73278 participle +73287 indicative +73290 indicative +73294 indicative +73298 indicative +73303 participle +infinitive +73308 indicative +73310 indicative +73321 indicative +73323 indicative +73327 infinitive +73334 participle +73339 indicative +73341 indicative +73347 indicative +73353 indicative +73355 indicative +73359 imperative +73369 indicative +73375 indicative +73379 infinitive +73384 participle +indicative +73387 imperative +73389 subjunctive +73391 participle +73395 imperative +73399 imperative +73401 imperative +73404 indicative +73414 subjunctive +73417 subjunctive +73420 participle +73422 indicative +73427 infinitive +73433 participle +73436 indicative +73442 participle +73450 participle +73452 indicative +73454 infinitive +73461 participle +73467 indicative +infinitive +73476 participle +73479 indicative +73482 indicative +73486 participle +participle +73489 participle +73495 indicative +indicative +73500 infinitive +73506 indicative +73510 indicative +73516 imperative +indicative +73523 indicative +73527 indicative +73533 infinitive +73542 participle +73545 indicative +73547 indicative +73553 indicative +73555 indicative +participle +73561 indicative +73573 indicative +73575 participle +73585 indicative +73593 indicative +73601 participle +73608 indicative +73614 indicative +73620 indicative +73626 infinitive +73634 infinitive +73637 infinitive +73646 participle +73648 indicative +73650 indicative +73662 indicative +participle +73668 participle +73675 participle +73679 infinitive +73685 indicative +73693 indicative +73704 indicative +73715 infinitive +73717 infinitive +73719 participle +indicative +73733 participle +indicative +73743 indicative +73751 indicative +73753 indicative +73756 participle +73758 participle +73761 participle +73763 indicative +73766 infinitive +indicative +73770 imperative +73777 indicative +73779 indicative +73783 participle +73785 indicative +73787 indicative +73792 participle +73795 participle +73797 indicative +73801 indicative +73811 indicative +73813 participle +73822 participle +73832 participle +73836 indicative +infinitive +73839 participle +73845 participle +73849 indicative +73853 participle +73855 participle +73859 indicative +73865 indicative +participle +73872 infinitive +73875 participle +73877 indicative +73894 participle +73896 indicative +73900 infinitive +73908 indicative +participle +73913 participle +73917 participle +73926 participle +73928 indicative +73933 infinitive +73936 indicative +73943 participle +73947 participle +73950 indicative +73954 participle +73956 infinitive +73958 participle +73962 participle +indicative +73970 indicative +73977 participle +73982 participle +73984 indicative +73994 participle +73999 participle +infinitive +74005 indicative +74010 infinitive +74017 participle +74022 participle +74025 indicative +74031 indicative +74033 participle +74036 indicative +74041 participle +74046 indicative +74050 indicative +74054 indicative +participle +74064 indicative +74066 participle +74068 participle +74071 indicative +74073 indicative +74080 indicative +74086 indicative +74095 participle +74099 indicative +74105 subjunctive +74111 indicative +infinitive +74114 participle +74127 indicative +infinitive +74151 participle +74155 indicative +74161 participle +74167 indicative +74174 participle +74177 indicative +74188 indicative +74192 indicative +74196 indicative +74204 participle +participle +74207 indicative +infinitive +74211 infinitive +infinitive +74217 indicative +74223 infinitive +74231 participle +participle +74234 indicative +74240 indicative +74247 indicative +74254 infinitive +74262 infinitive +74267 indicative +74269 participle +74279 indicative +74287 participle +74294 indicative +74297 infinitive +74305 infinitive +74312 indicative +74314 indicative +74321 infinitive +74327 indicative +74332 indicative +74336 participle +74341 indicative +74352 infinitive +74354 indicative +74356 participle +74359 imperative +74362 indicative +74367 indicative +infinitive +74377 indicative +74383 indicative +74386 indicative +74388 indicative +74393 participle +74396 participle +74398 indicative +74400 indicative +74404 subjunctive +74417 indicative +74423 indicative +74425 participle +74432 indicative +74434 infinitive +74439 participle +74444 infinitive +74447 infinitive +74468 participle +74470 indicative +74477 participle +74479 indicative +74489 participle +74493 infinitive +74503 participle +74508 participle +74512 participle +74534 infinitive +74536 indicative +74541 indicative +74544 participle +74550 indicative +indicative +74553 participle +74555 participle +74557 infinitive +74568 participle +74581 indicative +74589 participle +74593 indicative +74603 infinitive +74609 infinitive +74619 participle +74622 indicative +imperative +74627 participle +indicative +74632 participle +74635 indicative +74639 participle +indicative +74651 participle +74655 indicative +74659 indicative +74661 participle +74663 indicative +74671 participle +74677 indicative +74680 participle +74682 participle +74695 indicative +74700 participle +subjunctive +74709 indicative +74715 indicative +74718 indicative +infinitive +74724 participle +74728 indicative +74730 participle +74737 participle +74743 infinitive +74746 indicative +74749 infinitive +74756 participle +74759 infinitive +74764 participle +74766 indicative +participle +74776 indicative +74781 participle +74785 indicative +74793 imperative +indicative +74808 indicative +74816 indicative +74822 infinitive +74824 participle +indicative +74831 participle +74837 indicative +74844 indicative +74847 indicative +74850 indicative +74852 infinitive +74856 participle +74869 indicative +74873 indicative +74879 indicative +74885 participle +74890 infinitive +74897 participle +74901 indicative +74905 infinitive +74908 indicative +74914 participle +74917 indicative +74926 indicative +74930 indicative +participle +74933 participle +74936 participle +participle +74940 imperative +74946 indicative +74948 indicative +infinitive +74952 participle +74954 indicative +74958 infinitive +74961 participle +74964 indicative +74969 participle +74977 indicative +74985 indicative +participle +74998 indicative +75006 infinitive +indicative +75009 participle +indicative +75012 participle +75022 participle +75025 indicative +75031 indicative +infinitive +75034 participle +75039 indicative +75044 indicative +participle +75047 indicative +75052 infinitive +participle +75058 imperative +75060 indicative +75063 indicative +participle +75071 participle +75074 infinitive +75079 indicative +75083 participle +75085 participle +75090 indicative +participle +75100 indicative +75102 indicative +75108 indicative +75114 participle +75116 participle +75119 indicative +indicative +75126 infinitive +75130 indicative +75138 participle +75140 indicative +75146 participle +75152 indicative +75160 participle +75164 indicative +75168 indicative +75173 participle +75175 indicative +75178 infinitive +75180 infinitive +75182 indicative +75185 participle +75187 indicative +75195 participle +75199 indicative +infinitive +75202 participle +75206 indicative +75209 participle +75213 infinitive +75218 participle +indicative +75229 indicative +75240 participle +indicative +75245 indicative +75253 indicative +75255 infinitive +75261 indicative +75270 indicative +75275 participle +75277 participle +participle +75283 participle +75286 indicative +75288 infinitive +participle +infinitive +75294 indicative +75298 participle +75301 subjunctive +75305 indicative +75308 participle +75310 indicative +75313 participle +indicative +75320 participle +75323 indicative +75327 infinitive +indicative +75330 subjunctive +75333 indicative +imperative +75340 indicative +75347 indicative +75361 participle +75369 indicative +75374 indicative +75382 participle +75387 indicative +75390 indicative +75392 participle +75397 participle +indicative +75403 participle +imperative +75409 indicative +75419 indicative +75423 subjunctive +75426 participle +imperative +75433 indicative +75436 participle +75442 participle +indicative +75450 indicative +75454 participle +75457 imperative +75459 indicative +75468 indicative +participle +75472 indicative +75474 participle +indicative +75478 participle +indicative +infinitive +75485 participle +75489 indicative +75494 participle +indicative +75499 indicative +75501 participle +75507 indicative +75511 indicative +75518 participle +75521 indicative +75528 indicative +75533 participle +75535 participle +75537 indicative +75540 infinitive +75542 infinitive +75548 indicative +75555 indicative +75561 indicative +75563 indicative +75571 participle +75584 participle +75586 participle +75593 participle +indicative +75598 participle +75602 indicative +75604 infinitive +75610 participle +75612 indicative +75620 participle +75625 participle +75629 indicative +75631 indicative +75640 indicative +75643 infinitive +75645 participle +75647 indicative +75653 participle +75656 participle +75665 indicative +75673 indicative +75683 participle +75689 indicative +75692 indicative +75698 indicative +75707 participle +75711 optative +75719 indicative +75732 indicative +75743 indicative +75751 indicative +75753 participle +75755 participle +75763 indicative +75766 infinitive +75772 indicative +75782 participle +75785 indicative +75789 participle +75800 subjunctive +75803 indicative +75808 participle +75812 indicative +75818 participle +75820 participle +75825 indicative +75833 participle +75843 participle +75852 indicative +75856 indicative +75858 optative +75863 infinitive +75866 indicative +75870 infinitive +75877 indicative +75879 participle +75885 indicative +participle +indicative +infinitive +75896 participle +75899 participle +75901 indicative +75907 indicative +infinitive +75910 infinitive +indicative +75918 participle +75923 indicative +75925 infinitive +75928 infinitive +75932 participle +75939 indicative +75947 indicative +75949 participle +75951 participle +75955 indicative +75960 indicative +75965 participle +indicative +75969 indicative +75974 participle +75987 participle +75992 indicative +75997 indicative +participle +76001 participle +76010 indicative +76016 infinitive +76022 participle +participle +76031 infinitive +76037 optative +76040 optative +76049 participle +76053 indicative +76055 indicative +76057 indicative +76065 indicative +76070 indicative +76072 participle +76077 indicative +infinitive +76091 infinitive +76099 participle +76104 indicative +76109 infinitive +76111 indicative +76115 indicative +infinitive +76124 indicative +76126 participle +76128 participle +76133 participle +76138 indicative +76141 indicative +indicative +76151 indicative +76158 participle +76160 indicative +76177 participle +76181 indicative +76185 participle +76194 participle +76204 infinitive +76206 infinitive +76213 indicative +76219 infinitive +indicative +76224 indicative +76226 indicative +76231 indicative +76238 indicative +76245 indicative +76255 indicative +76260 participle +76263 infinitive +76268 participle +76271 participle +participle +76275 indicative +76293 indicative +76295 participle +76297 indicative +76304 participle +76310 indicative +participle +76318 indicative +76330 participle +indicative +76333 indicative +76335 indicative +76345 imperative +76347 imperative +76350 subjunctive +76353 indicative +76358 indicative +76361 infinitive +76366 indicative +76373 indicative +76378 participle +76387 participle +76391 indicative +76398 indicative +76403 participle +76408 indicative +76412 infinitive +76416 participle +76419 infinitive +76422 indicative +76430 indicative +76441 indicative +76445 indicative +76456 indicative +76459 indicative +76463 infinitive +76465 indicative +76472 participle +76476 indicative +76485 indicative +76490 participle +76495 participle +indicative +76506 participle +76512 indicative +76515 indicative +76519 indicative +76523 participle +76527 indicative +76531 participle +76536 infinitive +76538 indicative +76540 participle +76542 participle +76544 indicative +76549 participle +indicative +76555 participle +76558 participle +76560 participle +76563 indicative +76567 participle +76570 indicative +participle +76578 participle +76593 participle +76597 indicative +76601 indicative +participle +76608 participle +76611 indicative +76613 indicative +76619 participle +76626 indicative +infinitive +76632 participle +76637 indicative +76642 indicative +76648 participle +76650 infinitive +76654 participle +76657 indicative +76660 infinitive +76663 participle +indicative +76667 participle +76675 indicative +76677 participle +76681 infinitive +76686 indicative +76691 infinitive +76695 participle +76699 infinitive +76703 infinitive +76707 indicative +76713 indicative +participle +76721 indicative +76725 indicative +76727 indicative +76731 indicative +76734 indicative +76740 indicative +76743 indicative +76748 participle +76750 subjunctive +76753 participle +76757 indicative +76762 participle +indicative +76771 participle +76776 indicative +76784 indicative +76787 indicative +76789 indicative +76796 participle +76800 indicative +76804 participle +76806 participle +76815 indicative +76817 indicative +participle +76824 participle +76827 indicative +76832 participle +76839 indicative +76846 participle +76849 infinitive +76862 participle +76865 indicative +76874 participle +infinitive +76884 infinitive +76894 infinitive +76896 indicative +76900 participle +76903 infinitive +76906 participle +76916 participle +indicative +76923 indicative +76932 indicative +participle +76935 participle +76940 indicative +76944 indicative +76948 indicative +76952 indicative +76954 participle +76961 indicative +76966 participle +76968 indicative +76974 participle +infinitive +76982 indicative +76990 participle +76994 indicative +77000 indicative +77009 participle +indicative +participle +77013 participle +77022 participle +participle +77026 indicative +77030 indicative +77035 indicative +77046 indicative +77048 indicative +77051 indicative +77053 indicative +77059 participle +77064 infinitive +77067 participle +77071 infinitive +77074 indicative +77078 infinitive +77080 participle +77086 participle +77092 indicative +77098 indicative +77114 participle +77118 indicative +77131 participle +indicative +77134 indicative +77143 indicative +77145 indicative +77147 indicative +77160 participle +indicative +77164 participle +77167 indicative +77172 participle +77177 indicative +77183 infinitive +77194 infinitive +77196 infinitive +77198 infinitive +77209 indicative +77211 participle +77213 participle +77216 indicative +participle +77223 indicative +77229 indicative +77234 participle +77243 participle +infinitive +77249 indicative +77258 participle +77261 participle +77264 indicative +77266 infinitive +77276 indicative +77280 indicative +participle +77286 indicative +77289 indicative +77294 indicative +77296 participle +77303 participle +77306 indicative +infinitive +77311 participle +77314 indicative +77317 indicative +77324 participle +77332 participle +77335 indicative +77341 indicative +77344 indicative +77348 participle +77358 participle +77360 participle +indicative +77363 participle +infinitive +77368 infinitive +77370 indicative +77377 participle +77390 indicative +77395 indicative +77398 indicative +imperative +77405 indicative +77410 indicative +77413 indicative +infinitive +77421 participle +77425 indicative +infinitive +77434 participle +indicative +77441 infinitive +77446 participle +77450 participle +participle +indicative +infinitive +77457 participle +77462 participle +77466 indicative +77471 participle +77474 participle +77480 participle +infinitive +77485 indicative +77488 infinitive +77492 indicative +77514 participle +indicative +77521 indicative +77530 indicative +77540 indicative +77549 participle +77551 infinitive +77555 indicative +77557 participle +infinitive +77562 indicative +77568 indicative +77575 indicative +participle +77582 participle +77586 participle +77589 participle +77594 participle +77598 indicative +77604 indicative +77607 participle +77610 indicative +77613 participle +indicative +77616 imperative +77623 indicative +77625 participle +77627 participle +77631 participle +77635 participle +77639 indicative +77641 indicative +77644 participle +77646 indicative +77651 participle +77655 indicative +77660 participle +infinitive +77666 participle +indicative +participle +77670 infinitive +77673 indicative +77678 participle +77680 indicative +77684 participle +77686 participle +indicative +77693 indicative +77698 participle +indicative +77703 indicative +77706 infinitive +77711 subjunctive +77713 infinitive +77718 indicative +77721 optative +77727 infinitive +77734 participle +77737 indicative +77744 indicative +77747 indicative +77750 indicative +77756 indicative +77766 indicative +participle +77778 participle +77786 indicative +77789 participle +77792 infinitive +77795 infinitive +77801 participle +77819 imperative +participle +77824 indicative +77830 participle +77833 participle +77842 indicative +77844 participle +77850 indicative +77854 indicative +77860 subjunctive +77868 indicative +77873 infinitive +77882 imperative +77884 indicative +77887 indicative +77895 indicative +participle +77900 indicative +77908 indicative +77915 indicative +77918 infinitive +77925 imperative +77938 indicative +77940 infinitive +77946 indicative +77953 indicative +77955 indicative +77965 participle +77972 indicative +77974 participle +participle +77977 infinitive +77983 imperative +participle +77991 indicative +77994 participle +78000 indicative +78011 participle +infinitive +78014 infinitive +78019 participle +78027 indicative +78029 indicative +78036 participle +78039 indicative +78044 indicative +78048 participle +indicative +infinitive +78052 participle +78054 infinitive +78062 indicative +78064 indicative +78066 infinitive +78068 infinitive +78071 participle +participle +78079 indicative +78082 indicative +78086 participle +78092 indicative +78094 participle +78100 indicative +78103 indicative +78107 infinitive +78109 indicative +78116 indicative +infinitive +78119 participle +78122 participle +indicative +78137 participle +78139 participle +78142 participle +indicative +78145 participle +78149 participle +78152 indicative +78156 indicative +78163 indicative +participle +78168 participle +78171 indicative +78178 indicative +78183 infinitive +78188 indicative +infinitive +78193 participle +indicative +participle +78207 participle +78213 participle +indicative +78217 indicative +78223 indicative +78231 participle +78234 indicative +78238 participle +78241 indicative +78249 participle +indicative +78254 participle +78261 participle +78265 indicative +78270 indicative +78274 participle +78276 participle +78279 indicative +78288 participle +78292 participle +78297 participle +78304 indicative +78306 indicative +78314 indicative +78319 indicative +78325 indicative +78331 indicative +78333 indicative +78341 infinitive +78346 indicative +78350 indicative +participle +78353 participle +78361 infinitive +78364 infinitive +78368 indicative +78377 participle +78379 indicative +participle +78385 imperative +78391 participle +indicative +78396 indicative +78404 participle +78407 subjunctive +78414 participle +78419 indicative +78425 participle +indicative +78434 indicative +78439 participle +78441 indicative +78446 indicative +78458 participle +indicative +78463 indicative +78465 indicative +78470 participle +indicative +78480 indicative +78482 indicative +78486 indicative +78496 participle +78498 infinitive +78505 infinitive +78508 indicative +78510 indicative +78512 indicative +78515 imperative +78518 indicative +indicative +78524 participle +78528 participle +imperative +78533 imperative +78537 indicative +78541 indicative +78545 indicative +78549 indicative +78551 indicative +78554 participle +78560 participle +78563 indicative +participle +infinitive +78579 participle +78583 participle +78587 participle +indicative +78592 participle +78601 indicative +78610 indicative +78614 infinitive +78620 participle +78625 indicative +78630 indicative +78635 participle +78638 imperative +78640 indicative +78656 participle +78661 indicative +78666 indicative +78672 indicative +participle +78682 indicative +78688 indicative +78692 indicative +78697 indicative +78702 participle +78705 indicative +78712 indicative +78716 participle +78718 infinitive +indicative +78728 indicative +78731 participle +78735 indicative +78740 participle +78746 indicative +participle +78751 participle +78754 indicative +78757 indicative +infinitive +78762 indicative +78764 optative +78767 indicative +participle +78773 indicative +78779 participle +78781 infinitive +78787 indicative +infinitive +78795 indicative +78799 indicative +infinitive +78811 indicative +78816 participle +imperative +78820 participle +infinitive +78827 indicative +78831 indicative +78833 infinitive +78839 indicative +78841 indicative +78845 indicative +78853 participle +78855 participle +78865 indicative +78870 indicative +78881 indicative +78883 imperative +78885 infinitive +78890 participle +78894 participle +78898 indicative +78906 participle +indicative +78911 participle +78916 imperative +78924 participle +78929 indicative +78932 indicative +78935 indicative +78937 indicative +78940 participle +78946 participle +78955 participle +78961 participle +78968 indicative +78974 indicative +78977 participle +78979 participle +78990 indicative +79000 participle +79006 indicative +participle +79011 participle +participle +79016 subjunctive +79018 indicative +79020 participle +79022 participle +79031 infinitive +79037 indicative +79042 indicative +79044 participle +79050 indicative +79053 indicative +79055 indicative +79058 indicative +79062 indicative +79068 indicative +79074 participle +79077 indicative +79080 indicative +79084 participle +79087 indicative +79089 subjunctive +79094 indicative +79097 participle +imperative +79103 indicative +79107 infinitive +indicative +79113 indicative +79120 participle +79123 participle +79125 indicative +79136 participle +79140 participle +79142 participle +79146 participle +indicative +79151 imperative +79156 indicative +79161 indicative +79167 indicative +79169 infinitive +79174 infinitive +79178 infinitive +79185 indicative +79192 indicative +79194 indicative +79198 indicative +participle +imperative +79202 imperative +79206 participle +79211 indicative +79213 participle +79217 participle +79222 infinitive +79227 infinitive +79229 participle +79231 imperative +79233 imperative +79240 indicative +79246 indicative +79249 indicative +79252 indicative +participle +79255 participle +79260 participle +79265 indicative +79274 indicative +participle +79277 participle +79279 participle +79283 participle +79286 indicative +79289 imperative +79295 indicative +79298 indicative +79305 indicative +79309 participle +imperative +79318 indicative +79320 infinitive +79322 participle +79325 participle +79330 participle +79334 indicative +79337 infinitive +79342 participle +79344 infinitive +79347 subjunctive +79352 indicative +79356 indicative +79360 indicative +79363 participle +79372 infinitive +indicative +79376 participle +79379 participle +79382 indicative +participle +indicative +79386 infinitive +79392 indicative +79394 participle +79397 indicative +79399 imperative +79403 indicative +79406 indicative +79409 indicative +79418 indicative +79422 indicative +79426 indicative +79429 indicative +79433 participle +79435 infinitive +79440 indicative +participle +79444 indicative +79448 indicative +participle +79453 participle +infinitive +79459 indicative +79463 indicative +79466 indicative +infinitive +79475 participle +79478 indicative +79484 participle +79487 indicative +79494 indicative +79505 indicative +79507 participle +79509 infinitive +79518 indicative +infinitive +79521 indicative +79525 participle +79528 indicative +participle +79535 participle +indicative +79538 infinitive +79541 participle +indicative +79547 indicative +79549 indicative +79553 indicative +79556 indicative +79559 indicative +79566 indicative +79571 participle +79576 indicative +79582 indicative +79590 indicative +79598 indicative +79602 participle +indicative +79610 indicative +79615 indicative +79617 infinitive +79625 indicative +79629 indicative +79633 participle +79641 indicative +participle +79645 indicative +79653 indicative +79660 participle +79663 participle +79665 subjunctive +79670 indicative +79673 participle +infinitive +79680 infinitive +79686 participle +79688 participle +79692 indicative +imperative +79696 indicative +79703 indicative +79708 infinitive +79710 participle +79712 participle +79716 indicative +79718 participle +79720 infinitive +79722 infinitive +79725 subjunctive +79729 indicative +79736 participle +79738 participle +79744 indicative +79746 indicative +79749 infinitive +79752 subjunctive +79758 imperative +79765 subjunctive +79770 participle +infinitive +79780 infinitive +79783 indicative +79785 infinitive +79793 participle +79796 participle +79798 participle +79802 indicative +79808 participle +79812 indicative +79816 imperative +79821 indicative +infinitive +79828 participle +79830 indicative +79835 indicative +79839 participle +79841 indicative +79845 infinitive +79848 participle +79850 infinitive +79855 participle +79860 participle +79863 indicative +79865 indicative +79867 infinitive +79869 indicative +79871 indicative +79875 indicative +79877 infinitive +79883 subjunctive +79888 participle +79891 infinitive +79897 subjunctive +79900 indicative +79908 indicative +79911 infinitive +79913 infinitive +79916 subjunctive +79920 indicative +79922 participle +79931 indicative +79934 participle +79936 infinitive +79939 indicative +79943 participle +79948 indicative +imperative +79959 subjunctive +79969 infinitive +79971 participle +79974 subjunctive +79979 participle +79981 participle +79991 infinitive +79995 participle +80000 participle +infinitive +80004 participle +80008 indicative +participle +80012 indicative +80014 participle +infinitive +80020 indicative +80022 indicative +80027 indicative +80029 participle +80042 participle +80044 participle +80050 infinitive +80052 indicative +80055 participle +80059 infinitive +80070 participle +80072 participle +80075 indicative +80084 participle +80087 infinitive +80090 indicative +80095 participle +80100 participle +80105 indicative +80111 participle +80113 participle +80117 indicative +80119 participle +80123 indicative +indicative +80131 subjunctive +participle +80138 infinitive +80144 indicative +80156 indicative +80163 participle +80165 indicative +infinitive +80169 participle +80172 participle +80177 participle +80189 indicative +80201 subjunctive +indicative +infinitive +80211 participle +80217 participle +80236 infinitive +indicative +80240 indicative +80243 indicative +80245 participle +80249 infinitive +80252 indicative +80255 indicative +80259 participle +80262 infinitive +80264 indicative +80267 participle +80271 infinitive +80275 participle +80281 participle +80286 indicative +participle +80289 infinitive +80293 indicative +80299 indicative +participle +80304 indicative +80308 participle +80312 participle +80326 indicative +infinitive +80332 indicative +80335 indicative +80343 indicative +80346 indicative +80350 participle +80361 participle +participle +80371 indicative +infinitive +infinitive +80383 indicative +80386 infinitive +80400 participle +80405 indicative +80410 indicative +80412 participle +80431 infinitive +80433 infinitive +indicative +80437 optative +80443 imperative +80446 indicative +participle +80458 indicative +80461 participle +80467 indicative +80472 indicative +80477 participle +80482 participle +80487 subjunctive +indicative +80492 participle +80495 infinitive +80498 infinitive +80501 infinitive +80506 infinitive +80514 participle +80520 participle +80522 indicative +80526 indicative +80535 participle +80545 participle +80547 participle +80550 indicative +80553 participle +imperative +80557 participle +indicative +80562 participle +80565 indicative +80574 participle +indicative +80579 participle +indicative +80587 participle +80589 infinitive +80594 indicative +80597 participle +80600 participle +80606 indicative +80612 indicative +80625 indicative +80627 participle +80632 subjunctive +80637 participle +infinitive +80647 indicative +infinitive +80655 infinitive +80658 infinitive +80660 indicative +80665 participle +imperative +80671 indicative +80676 participle +80685 participle +80690 participle +80694 indicative +80697 infinitive +80699 participle +80701 indicative +80706 participle +80712 participle +80714 infinitive +80716 indicative +80719 participle +80735 indicative +80739 participle +80743 infinitive +participle +80747 indicative +indicative +80751 participle +80755 infinitive +80759 indicative +80766 participle +indicative +80770 infinitive +indicative +80774 indicative +80779 indicative +80783 indicative +80788 indicative +80790 indicative +80792 infinitive +80796 indicative +80799 indicative +80802 indicative +80805 infinitive +80807 indicative +80811 participle +80815 indicative +80817 indicative +80820 indicative +80824 participle +80830 indicative +80833 participle +80840 indicative +80846 indicative +80851 participle +80854 indicative +participle +80861 participle +80865 indicative +80873 participle +80879 indicative +80882 indicative +80885 infinitive +80891 participle +80894 optative +80900 optative +80905 participle +80909 participle +80912 participle +80916 indicative +infinitive +80922 participle +80925 indicative +80930 indicative +80939 indicative +80946 participle +80948 infinitive +indicative +80954 participle +80959 indicative +80961 optative +infinitive +80966 infinitive +80972 participle +infinitive +80980 indicative +infinitive +80985 subjunctive +80994 indicative +80999 infinitive +indicative +81002 indicative +81007 participle +81017 participle +81032 participle +81035 indicative +81039 indicative +81047 participle +81050 indicative +81059 indicative +81066 participle +81068 infinitive +81070 infinitive +81074 indicative +81079 infinitive +81083 participle +81086 indicative +infinitive +81092 infinitive +81096 indicative +81098 indicative +81111 participle +subjunctive +81114 subjunctive +81118 indicative +participle +81127 infinitive +81133 indicative +indicative +81138 infinitive +81142 participle +81145 indicative +81151 indicative +81154 indicative +81160 infinitive +participle +81163 participle +81175 indicative +81177 infinitive +81189 participle +81197 indicative +81200 participle +81204 subjunctive +infinitive +81214 indicative +81225 participle +81230 indicative +participle +81234 infinitive +81243 participle +indicative +81248 indicative +81254 indicative +81261 indicative +81265 indicative +81267 infinitive +81276 infinitive +81279 indicative +81290 indicative +81296 participle +81298 participle +81300 indicative +81308 participle +81310 indicative +infinitive +81314 participle +81316 indicative +81325 participle +81341 indicative +81348 participle +81355 participle +81360 participle +81364 indicative +81366 participle +81376 indicative +81381 infinitive +81384 indicative +81386 indicative +81391 indicative +81393 indicative +81397 indicative +81399 imperative +81401 imperative +81409 indicative +81411 infinitive +81418 indicative +81422 indicative +81424 participle +81436 indicative +81438 infinitive +81442 infinitive +81456 infinitive +81464 participle +81473 indicative +81495 indicative +infinitive +81498 infinitive +81506 participle +81511 participle +81515 indicative +infinitive +81518 participle +81528 indicative +participle +81535 participle +81538 participle +infinitive +81545 indicative +81555 indicative +81557 infinitive +81567 participle +81573 indicative +indicative +81582 indicative +81586 indicative +81590 indicative +81596 indicative +81598 indicative +81606 participle +indicative +81609 infinitive +81613 indicative +81617 indicative +participle +81624 indicative +81627 indicative +81629 indicative +81639 indicative +81641 infinitive +81646 optative +81662 participle +81665 infinitive +81670 indicative +81675 indicative +81687 participle +81690 participle +indicative +81694 participle +81701 indicative +81709 indicative +infinitive +indicative +81717 indicative +81721 indicative +81723 infinitive +81728 indicative +81742 participle +81745 participle +infinitive +81753 indicative +participle +81763 indicative +81772 participle +indicative +81777 participle +81779 infinitive +81781 participle +indicative +81789 infinitive +81800 participle +indicative +81809 participle +81812 participle +81816 indicative +81824 participle +81827 participle +81832 participle +81836 indicative +81843 participle +81845 indicative +81849 participle +81856 indicative +81860 participle +81862 participle +81873 infinitive +indicative +81877 participle +81880 indicative +81899 infinitive +infinitive +81912 indicative +81917 participle +81922 participle +81927 indicative +81929 infinitive +81933 optative +participle +81940 participle +81946 infinitive +81948 participle +81950 participle +81953 infinitive +participle +81956 indicative +81963 indicative +81969 participle +81972 participle +81977 participle +infinitive +81981 participle +indicative +81984 participle +81987 participle +81989 indicative +81992 infinitive +81996 participle +81998 indicative +participle +82003 participle +82008 subjunctive +participle +82013 indicative +82016 participle +82021 indicative +82030 indicative +82036 participle +82044 participle +82046 indicative +82050 infinitive +82055 participle +82057 participle +82063 indicative +82067 indicative +participle +82071 infinitive +82076 infinitive +82086 indicative +82088 infinitive +82093 indicative +82100 indicative +82108 indicative +82111 indicative +82113 participle +82115 imperative +82119 infinitive +indicative +82122 imperative +indicative +82129 participle +82133 imperative +82136 indicative +82141 indicative +82145 indicative +82148 indicative +82153 infinitive +82158 indicative +participle +82168 indicative +82171 infinitive +82176 participle +indicative +82182 participle +82185 participle +indicative +82190 participle +82196 subjunctive +82199 participle +82202 indicative +82204 infinitive +82208 participle +infinitive +82214 participle +82225 infinitive +participle +indicative +82238 subjunctive +82243 infinitive +82245 indicative +82247 indicative +82255 indicative +82257 infinitive +82262 indicative +infinitive +indicative +82268 infinitive +82270 participle +82274 participle +82276 indicative +82278 participle +82280 indicative +82282 infinitive +82290 indicative +82298 indicative +82300 participle +82303 participle +82305 indicative +82311 participle +indicative +infinitive +82316 participle +82320 indicative +82323 indicative +82334 participle +82336 indicative +82339 participle +82348 indicative +82352 indicative +82354 indicative +82357 participle +82361 infinitive +82364 indicative +82366 optative +82370 participle +indicative +82376 participle +82382 participle +82386 participle +indicative +82392 participle +82396 indicative +82403 participle +indicative +82409 indicative +82417 indicative +82421 subjunctive +82424 participle +subjunctive +82429 participle +infinitive +82433 indicative +82438 indicative +82440 participle +infinitive +participle +82447 infinitive +82465 indicative +82467 infinitive +82472 participle +82474 indicative +82479 indicative +82483 indicative +82486 participle +82490 participle +82492 indicative +82499 participle +82505 participle +82512 participle +82520 participle +indicative +82527 indicative +82530 participle +82539 indicative +82542 indicative +82547 participle +82551 infinitive +82555 indicative +82559 participle +82565 indicative +82570 indicative +82572 infinitive +infinitive +82575 infinitive +82582 participle +82584 participle +82589 participle +participle +indicative +82593 infinitive +82602 indicative +82611 participle +82616 indicative +82618 indicative +82626 participle +infinitive +82630 participle +82632 participle +82635 participle +82639 indicative +82643 participle +82651 participle +82653 indicative +82655 indicative +82660 indicative +82663 participle +indicative +82673 indicative +82676 participle +82684 participle +82687 indicative +82691 participle +indicative +82699 participle +82702 indicative +82706 participle +82708 indicative +82711 infinitive +82719 indicative +82723 participle +82727 indicative +82738 participle +82741 participle +82744 indicative +82748 indicative +82751 indicative +82754 infinitive +82759 participle +82763 indicative +82767 infinitive +82770 participle +82775 participle +82777 indicative +82785 participle +82796 indicative +82803 participle +82805 indicative +infinitive +82812 infinitive +82816 participle +82819 indicative +infinitive +82828 infinitive +participle +82835 indicative +82837 infinitive +82839 infinitive +82849 indicative +82854 indicative +82860 indicative +82865 participle +82869 indicative +82871 indicative +82877 indicative +82880 infinitive +82882 indicative +82891 indicative +82894 indicative +82896 participle +82899 indicative +82907 indicative +participle +82914 participle +82934 indicative +82936 participle +82939 indicative +82942 participle +82945 indicative +participle +82957 indicative +82966 participle +imperative +82973 imperative +82975 indicative +82979 subjunctive +82981 participle +indicative +82986 subjunctive +82988 indicative +82998 indicative +83003 indicative +83006 subjunctive +83012 subjunctive +83016 subjunctive +83018 subjunctive +83020 indicative +83024 imperative +83029 indicative +83037 indicative +83039 indicative +83046 indicative +83049 participle +83052 participle +83058 participle +83075 participle +83080 indicative +83093 participle +83100 participle +83118 indicative +83135 indicative +83143 participle +83164 indicative +83178 indicative +83186 indicative +83190 indicative +83205 indicative +83211 participle +83216 indicative +83222 infinitive +83226 indicative +infinitive +83230 subjunctive +83237 infinitive +83241 indicative +infinitive +83257 indicative +83259 infinitive +83262 indicative +infinitive +83267 indicative +83274 subjunctive +83293 indicative +83304 infinitive +83307 indicative +83313 indicative +83318 participle +83329 indicative +83335 indicative +83341 indicative +83343 indicative +83359 participle +83366 indicative +83373 indicative +83390 participle +indicative +83394 infinitive +83398 participle +83404 indicative +83406 indicative +83408 indicative +83414 indicative +83419 participle +infinitive +83422 indicative +83424 indicative +83442 indicative +83455 infinitive +83462 indicative +83471 indicative +83473 indicative +83478 participle +83480 indicative +83488 indicative +83500 indicative +83513 participle +83519 indicative +83531 participle +83536 indicative +83542 participle +83546 indicative +83549 infinitive +83552 indicative +83559 infinitive +83562 participle +participle +83594 participle +83599 participle +83602 indicative +83606 indicative +83609 indicative +83611 participle +83614 indicative +83619 participle +83623 indicative +83627 indicative +83631 indicative +83633 participle +83635 indicative +83641 indicative +83648 participle +83650 indicative +83655 participle +83659 participle +83661 participle +83665 indicative +83682 indicative +participle +83692 indicative +83701 indicative +83713 indicative +83730 participle +83738 participle +83742 participle +83756 participle +83772 participle +83782 indicative +83790 indicative +83793 indicative +83798 indicative +83801 indicative +83815 indicative +83822 participle +83827 subjunctive +83831 participle +83833 indicative +83836 indicative +83846 participle +83855 participle +83858 participle +83862 indicative +83880 indicative +83882 indicative +83885 indicative +83889 indicative +83893 indicative +83895 participle +participle +83901 indicative +83903 infinitive +83914 participle +83927 participle +83931 indicative +83933 participle +83935 infinitive +indicative +83938 participle +83940 infinitive +indicative +83943 participle +83946 indicative +83950 indicative +83958 indicative +83966 indicative +83971 indicative +83975 indicative +83978 subjunctive +83983 subjunctive +83988 indicative +83997 subjunctive +84004 indicative +84006 indicative +84013 participle +84029 indicative +84081 indicative +84089 indicative +84099 indicative +84101 optative +84103 imperative +84112 indicative +84115 subjunctive +84121 indicative +84124 infinitive +84133 indicative +84135 indicative +84141 participle +84146 indicative +84148 optative +84151 indicative +84166 indicative +84176 indicative +84180 indicative +84183 indicative +84186 infinitive +84188 subjunctive +84192 subjunctive +84199 indicative +84202 indicative +84206 indicative +84214 infinitive +84216 indicative +84219 indicative +84224 indicative +84226 participle +84228 indicative +84230 participle +84234 indicative +84236 indicative +84238 indicative +84240 participle +84243 indicative +84247 participle +84254 indicative +84267 indicative +84272 infinitive +84285 indicative +84287 indicative +84295 indicative +84300 indicative +84305 indicative +84309 subjunctive +84312 subjunctive +84323 indicative +84339 indicative +participle +84357 participle +84360 indicative +84364 indicative +84366 indicative +84371 participle +84384 indicative +84403 participle +84422 infinitive +84426 participle +84435 indicative +84447 indicative +infinitive +84470 indicative +84481 indicative +84486 optative +84489 indicative +84491 indicative +84493 infinitive +84505 indicative +indicative +84516 indicative +84518 indicative +84523 indicative +84529 participle +84532 indicative +84542 participle +84544 participle +84547 participle +84550 indicative +84559 indicative +84567 indicative +84575 indicative +84580 indicative +84586 subjunctive +84602 indicative +indicative +84612 indicative +participle +84626 indicative +84640 infinitive +84645 participle +84650 infinitive +84665 participle +84686 infinitive +84703 indicative +84707 indicative +84714 indicative +84718 indicative +84731 infinitive +84751 indicative +84757 indicative +84760 participle +84764 participle +84767 participle +84769 participle +84771 indicative +84776 indicative +84783 indicative +84786 infinitive +84793 participle +84795 indicative +84801 participle +84804 indicative +84808 participle +84811 participle +84825 indicative +84829 indicative +84832 participle +84837 participle +84839 indicative +84842 indicative +84844 infinitive +84847 indicative +84853 indicative +84858 indicative +84865 infinitive +indicative +84868 participle +84871 participle +84879 indicative +84885 indicative +84891 participle +84895 subjunctive +84910 indicative +84919 indicative +84921 indicative +84933 indicative +84937 participle +84942 indicative +84955 indicative +84961 indicative +84970 participle +84975 participle +84983 indicative +84989 indicative +84997 indicative +infinitive +85000 indicative +85011 participle +85016 indicative +85020 participle +85026 indicative +85035 participle +indicative +85047 participle +indicative +85058 participle +85073 indicative +85085 indicative +85099 indicative +85103 indicative +85108 indicative +85114 indicative +85116 participle +85119 indicative +85130 participle +85138 indicative +85141 participle +85159 indicative +85180 indicative +85186 participle +85213 indicative +85229 participle +85232 indicative +85269 indicative +85280 indicative +85285 indicative +85287 subjunctive +85292 indicative +85295 indicative +85300 indicative +85310 subjunctive +85324 indicative +subjunctive +85331 subjunctive +85333 optative +85335 indicative +85340 indicative +85344 indicative +85347 indicative +85355 indicative +85357 indicative +85367 indicative +85382 subjunctive +85386 indicative +85396 indicative +85398 participle +85404 indicative +85406 subjunctive +85413 infinitive +85419 participle +indicative +85426 indicative +85429 indicative +85432 indicative +85434 participle +85437 participle +85441 indicative +85445 indicative +85448 indicative +85451 indicative +85455 indicative +indicative +85462 imperative +85464 infinitive +85470 participle +85478 imperative +85488 infinitive +85493 imperative +85502 imperative +85509 participle +85522 indicative +85525 indicative +85533 subjunctive +85536 indicative +85543 optative +85545 indicative +85548 indicative +85554 indicative +85556 indicative +85570 indicative +85575 indicative +85580 indicative +85584 participle +85588 indicative +85592 indicative +85601 indicative +85616 imperative +85630 indicative +85632 indicative +85638 indicative +85643 indicative +85651 participle +85656 participle +85659 indicative +85691 indicative +85693 participle +85695 indicative +85699 indicative +85705 indicative +85711 participle +85713 indicative +85717 subjunctive +85720 indicative +85728 participle +85732 indicative +85734 subjunctive +85739 subjunctive +85743 indicative +85749 infinitive +85752 participle +85760 indicative +85770 infinitive +85776 participle +85778 subjunctive +85783 indicative +85795 indicative +85802 infinitive +85807 indicative +85811 participle +85814 indicative +85816 infinitive +85827 indicative +85832 optative +85837 indicative +85847 indicative +85852 indicative +85854 indicative +85857 participle +85863 indicative +85875 indicative +85880 participle +85885 indicative +85888 indicative +85890 indicative +85904 participle +85908 indicative +85913 indicative +85931 indicative +85934 optative +85939 subjunctive +85945 participle +85948 subjunctive +85958 indicative +85963 indicative +85967 indicative +participle +85974 indicative +85976 indicative +85980 indicative +85982 indicative +85985 indicative +85987 indicative +85992 indicative +85994 indicative +indicative +86004 indicative +86008 participle +86013 indicative +86016 indicative +86020 indicative +86028 infinitive +indicative +86033 infinitive +86040 indicative +86042 indicative +86046 indicative +86049 indicative +86054 indicative +86057 indicative +86060 indicative +86064 participle +86069 indicative +86074 participle +infinitive +86082 indicative +86084 indicative +86094 indicative +86101 participle +86108 participle +86116 participle +86126 indicative +86149 indicative +86175 indicative +86192 indicative +86201 participle +86209 indicative +86220 subjunctive +86224 participle +86235 participle +86239 indicative +86275 indicative +86278 indicative +86283 participle +86285 infinitive +86287 indicative +86290 indicative +86300 indicative +86309 indicative +86312 indicative +86336 participle +86341 indicative +86345 participle +86350 indicative +86358 participle +86367 indicative +86374 infinitive +86379 indicative +indicative +infinitive +86389 indicative +indicative +86395 indicative +86399 indicative +86402 indicative +86409 indicative +86414 indicative +86421 indicative +86426 indicative +86441 indicative +86444 subjunctive +86446 indicative +86457 participle +infinitive +86473 indicative +86479 indicative +86485 participle +86493 indicative +86509 indicative +86514 indicative +86516 indicative +86530 participle +86536 indicative +participle +86547 indicative +86550 participle +86552 indicative +86556 indicative +86559 indicative +86564 indicative +indicative +86568 indicative +86574 indicative +86581 subjunctive +86583 indicative +86585 indicative +86590 indicative +86595 participle +86598 indicative +86607 indicative +86611 indicative +86614 participle +86618 indicative +86625 participle +86628 indicative +86630 indicative +86639 infinitive +86647 indicative +86650 indicative +86653 indicative +86656 indicative +86659 indicative +86662 indicative +86665 indicative +86682 indicative +86687 indicative +86697 indicative +86699 indicative +86705 participle +86708 participle +86712 participle +86715 participle +86717 indicative +86724 indicative +86729 indicative +86749 indicative +86753 indicative +86757 indicative +86765 indicative +86768 participle +86771 indicative +86782 participle +86784 participle +86795 indicative +86797 infinitive +86811 indicative +86815 indicative +participle +86827 indicative +86836 indicative +86840 infinitive +86854 indicative +86886 participle +86899 indicative +86914 indicative +86922 indicative +86926 indicative +86941 indicative +86953 indicative +86955 indicative +86966 participle +86975 participle +86977 participle +86989 subjunctive +86996 participle +indicative +87002 indicative +87006 indicative +87009 indicative +87013 indicative +87016 indicative +87023 optative +87027 indicative +indicative +87031 subjunctive +87033 indicative +87036 subjunctive +87041 participle +87044 participle +87047 participle +87050 indicative +87059 indicative +87062 subjunctive +87070 subjunctive +87081 indicative +indicative +87085 indicative +indicative +87088 indicative +87092 indicative +87098 indicative +87103 indicative +87106 participle +87110 indicative +87114 participle +87117 indicative +87121 indicative +87131 infinitive +87145 participle +infinitive +87150 infinitive +87154 indicative +87160 participle +87165 subjunctive +87175 indicative +87180 indicative +87195 indicative +indicative +87206 participle +participle +87209 indicative +87214 indicative +87221 indicative +87224 participle +87227 indicative +87232 subjunctive +87245 indicative +87248 participle +87250 participle +indicative +87258 indicative +87264 indicative +87270 indicative +87275 indicative +87278 indicative +87283 participle +87285 indicative +87294 participle +87300 indicative +87311 indicative +87317 indicative +imperative +indicative +87329 participle +87333 indicative +87352 indicative +87357 indicative +87363 participle +87371 infinitive +participle +87378 indicative +87387 participle +87390 indicative +87398 participle +87400 indicative +87409 indicative +87411 subjunctive +87417 indicative +87422 indicative +87424 infinitive +87427 indicative +87432 indicative +87436 infinitive +87439 indicative +87444 indicative +87455 indicative +87461 indicative +87464 subjunctive +87472 subjunctive +87481 indicative +87484 indicative +87487 indicative +87492 indicative +87496 indicative +87501 participle +87505 indicative +87508 indicative +87519 participle +87523 participle +87529 subjunctive +87533 indicative +87536 subjunctive +87540 indicative +87543 subjunctive +87546 indicative +87549 subjunctive +87551 participle +87554 subjunctive +87557 subjunctive +87559 indicative +87565 participle +87570 indicative +87575 indicative +87578 indicative +87594 indicative +87597 indicative +87603 indicative +87617 indicative +87621 indicative +87624 indicative +87626 indicative +87634 indicative +87638 indicative +87640 indicative +indicative +87645 participle +87647 indicative +87651 participle +87656 indicative +87660 indicative +87666 participle +87668 participle +87670 indicative +87672 indicative +87679 optative +87684 indicative +87691 indicative +87698 indicative +87701 indicative +87705 indicative +87709 indicative +87719 indicative +87723 indicative +87725 indicative +87728 indicative +87734 indicative +87738 indicative +87744 indicative +87759 indicative +87770 indicative +87775 indicative +87779 indicative +87783 indicative +87787 indicative +87789 indicative +indicative +87799 infinitive +87804 infinitive +87811 indicative +imperative +87828 imperative +87834 infinitive +87841 imperative +87843 indicative +87845 indicative +87847 subjunctive +87849 optative +87860 infinitive +87881 indicative +87889 indicative +87896 indicative +87899 subjunctive +87904 subjunctive +87944 indicative +87948 participle +indicative +87960 indicative +87962 imperative +87967 indicative +87972 indicative +87978 indicative +indicative +87983 subjunctive +87987 indicative +87992 indicative +87995 imperative +87997 imperative +88007 indicative +88010 indicative +88012 imperative +88020 participle +88028 subjunctive +88034 indicative +88039 subjunctive +88042 indicative +88045 indicative +88049 infinitive +88059 indicative +88063 indicative +88072 indicative +88079 indicative +88081 infinitive +88087 subjunctive +88097 indicative +88104 subjunctive +88109 indicative +88111 indicative +indicative +88116 participle +indicative +88129 subjunctive +88161 indicative +88166 indicative +88174 indicative +88182 subjunctive +88184 indicative +88194 subjunctive +88215 indicative +88222 indicative +88225 indicative +88228 indicative +88250 indicative +88257 infinitive +88262 participle +88273 imperative +88278 imperative +88285 infinitive +88299 indicative +88304 participle +88308 participle +88312 infinitive +88315 infinitive +indicative +88318 infinitive +88321 infinitive +88326 indicative +88336 indicative +88345 indicative +88351 indicative +88361 participle +88368 participle +88384 participle +88390 participle +88395 participle +88399 participle +88403 participle +88409 participle +88412 participle +88423 participle +88430 participle +88433 participle +88436 participle +88439 participle +88442 participle +88447 participle +88450 participle +imperative +88453 participle +imperative +88457 imperative +infinitive +88460 participle +infinitive +88463 participle +88468 participle +88472 participle +88476 participle +88478 imperative +88486 participle +participle +88500 participle +88504 participle +88506 imperative +88511 indicative +88515 indicative +indicative +88520 subjunctive +88524 imperative +88527 subjunctive +imperative +88532 participle +88535 indicative +88541 imperative +88546 imperative +88555 participle +imperative +88559 indicative +88567 participle +88570 participle +indicative +88574 participle +88581 indicative +88584 participle +88587 indicative +88591 indicative +88601 indicative +88603 infinitive +88608 imperative +88610 indicative +88617 indicative +88626 subjunctive +imperative +88633 indicative +88637 indicative +88644 participle +88647 infinitive +88663 indicative +88667 indicative +88671 participle +imperative +88698 imperative +88703 infinitive +88706 participle +88710 indicative +88714 indicative +88716 indicative +88718 indicative +88720 indicative +88730 indicative +88733 indicative +88745 indicative +88752 participle +88762 infinitive +88771 indicative +88774 indicative +88778 indicative +88780 subjunctive +88786 subjunctive +88795 subjunctive +88809 imperative +88819 imperative +88824 participle +88827 imperative +88834 indicative +infinitive +88839 participle +88841 indicative +88843 participle +88846 participle +88848 imperative +88852 participle +88854 participle +88856 imperative +88861 indicative +88864 indicative +88866 participle +88872 indicative +88874 indicative +88876 indicative +88878 indicative +88881 infinitive +88886 indicative +88892 indicative +88900 imperative +88902 participle +88906 indicative +88909 participle +88911 indicative +88913 indicative +88919 participle +88922 indicative +88924 indicative +88931 indicative +88935 indicative +88939 subjunctive +88942 indicative +88945 subjunctive +88948 indicative +88952 subjunctive +88955 subjunctive +88958 indicative +88963 indicative +88965 indicative +88970 participle +subjunctive +88975 indicative +88983 indicative +88989 indicative +88995 indicative +indicative +88998 indicative +89002 indicative +89008 indicative +89018 indicative +89024 subjunctive +89027 imperative +89031 infinitive +89037 indicative +89039 indicative +89051 participle +89054 infinitive +89064 indicative +89068 indicative +89074 imperative +89078 indicative +89081 imperative +89087 indicative +89108 participle +89120 indicative +89134 imperative +89149 participle +89153 infinitive +89156 infinitive +89164 indicative +89168 indicative +89171 imperative +89178 participle +89182 indicative +89186 participle +subjunctive +indicative +89200 indicative +89202 indicative +89210 infinitive +89214 infinitive +89219 imperative +89231 indicative +89234 indicative +89238 participle +89240 indicative +89245 indicative +89250 indicative +89263 subjunctive +89272 optative +89276 infinitive +89287 subjunctive +89298 imperative +89304 indicative +89311 indicative +89315 infinitive +89321 infinitive +89331 infinitive +89335 indicative +89338 indicative +89346 indicative +89349 indicative +89351 imperative +89361 imperative +89365 imperative +89373 indicative +indicative +89381 participle +infinitive +89387 indicative +89393 optative +89401 infinitive +89404 infinitive +89416 indicative +89426 indicative +89428 participle +89432 participle +89435 infinitive +89438 indicative +89443 participle +89449 participle +89456 infinitive +89464 participle +89470 subjunctive +89476 participle +89481 indicative +89493 indicative +infinitive +89498 indicative +89526 infinitive +89533 participle +infinitive +89537 indicative +89544 subjunctive +89547 indicative +indicative +89551 indicative +89557 indicative +indicative +89561 indicative +89565 infinitive +89572 participle +89579 participle +89581 infinitive +89589 subjunctive +89594 indicative +participle +infinitive +89601 infinitive +89608 subjunctive +89611 indicative +89614 participle +89618 indicative +89624 infinitive +89634 indicative +89637 indicative +89644 indicative +89647 indicative +89652 infinitive +89656 participle +89658 participle +89663 indicative +89669 indicative +89671 participle +89678 indicative +89681 indicative +89695 infinitive +89706 subjunctive +89709 participle +89723 subjunctive +89727 participle +89733 subjunctive +89745 indicative +89751 participle +89760 subjunctive +89767 subjunctive +89773 subjunctive +89778 indicative +89784 imperative +89802 indicative +89804 indicative +89821 imperative +89827 indicative +89833 imperative +89837 indicative +89840 imperative +89851 indicative +89860 indicative +89863 imperative +89870 imperative +89882 imperative +89888 imperative +89893 imperative +89898 imperative +89904 participle +89907 imperative +89912 participle +89915 imperative +89921 indicative +89924 imperative +89936 imperative +89947 imperative +89964 imperative +89969 indicative +89978 indicative +89980 infinitive +89992 indicative +participle +89995 imperative +90006 indicative +90017 indicative +90028 indicative +90032 indicative +90034 indicative +90037 infinitive +90051 indicative +90068 indicative +90083 indicative +90088 participle +90093 indicative +90103 indicative +90116 participle +90118 infinitive +90133 participle +90135 participle +90153 participle +90186 participle +90189 participle +90198 participle +90224 indicative +90236 participle +90244 indicative +90258 indicative +90264 infinitive +90268 participle +90278 indicative +90296 indicative +90309 indicative +90322 subjunctive +90326 subjunctive +90331 subjunctive +participle +90345 indicative +90356 indicative +90358 indicative +90363 indicative +90366 indicative +90377 indicative +90382 indicative +90390 indicative +indicative +90395 indicative +90404 subjunctive +90410 indicative +90412 indicative +90419 indicative +90423 indicative +90425 indicative +90429 infinitive +90431 infinitive +90438 subjunctive +90451 participle +90453 indicative +90456 participle +90460 indicative +90462 indicative +indicative +90473 indicative +90484 indicative +90499 indicative +90507 indicative +90515 infinitive +90517 participle +90522 indicative +90526 indicative +90529 indicative +90531 participle +90560 indicative +90571 indicative +90592 indicative +90596 subjunctive +90604 indicative +90608 subjunctive +90618 participle +90621 participle +indicative +90627 participle +subjunctive +90631 subjunctive +90641 indicative +90646 indicative +90659 indicative +90661 participle +90664 imperative +90667 participle +90670 indicative +90677 participle +90685 indicative +90687 infinitive +90696 participle +90707 indicative +90733 subjunctive +90744 indicative +90761 participle +90763 indicative +90769 participle +90771 indicative +90787 indicative +90790 indicative +90797 indicative +90800 indicative +90804 indicative +90808 indicative +90814 indicative +90816 indicative +90820 participle +90824 indicative +90834 indicative +90843 indicative +90862 indicative +90876 indicative +90885 subjunctive +90890 participle +90894 indicative +90907 participle +90912 indicative +90921 indicative +90924 indicative +infinitive +90928 indicative +90932 indicative +90939 indicative +90942 indicative +90946 indicative +90952 indicative +90955 indicative +90957 infinitive +90970 indicative +90975 indicative +90980 indicative +90984 indicative +90994 indicative +90998 indicative +91002 subjunctive +91005 indicative +91013 indicative +91016 indicative +91020 indicative +91025 indicative +91031 indicative +91033 indicative +91035 indicative +91039 indicative +91043 participle +indicative +91048 participle +91051 participle +91055 participle +91058 participle +91060 indicative +91066 indicative +91072 indicative +91079 indicative +91086 participle +91092 indicative +91095 indicative +91098 imperative +91100 indicative +91103 indicative +91106 infinitive +91109 participle +91111 indicative +91117 indicative +91132 indicative +91136 indicative +91140 indicative +91146 indicative +91150 indicative +91152 indicative +91157 indicative +91159 indicative +91164 indicative +indicative +91168 indicative +91175 indicative +91179 indicative +91187 indicative +91194 indicative +indicative +91205 indicative +91207 indicative +91211 imperative +91214 indicative +91216 infinitive +91224 imperative +91226 subjunctive +91238 indicative +91240 indicative +91242 participle +91252 indicative +91258 indicative +91262 imperative +91268 indicative +91282 participle +91284 participle +91295 imperative +91306 indicative +91313 subjunctive +91318 indicative +91320 subjunctive +91330 indicative +91334 indicative +91339 indicative +91342 participle +91345 indicative +91351 imperative +91354 subjunctive +91359 indicative +91365 indicative +91374 indicative +91382 indicative +91392 subjunctive +91397 indicative +91404 subjunctive +91411 indicative +91413 indicative +91417 indicative +91421 indicative +91423 indicative +91426 participle +91428 participle +indicative +91431 indicative +91434 indicative +91436 indicative +91438 indicative +91443 subjunctive +91445 indicative +91452 indicative +91457 indicative +91488 indicative +91490 indicative +91492 indicative +91494 indicative +91496 indicative +91498 indicative +participle +91503 participle +indicative +participle +indicative +participle +indicative +91515 indicative +91519 participle +91521 indicative +91528 participle +91533 subjunctive +91549 indicative +91551 indicative +91555 imperative +91559 indicative +91563 indicative +91573 indicative +91586 indicative +91590 participle +91594 indicative +91597 indicative +91604 subjunctive +91606 indicative +91611 participle +91627 indicative +91630 subjunctive +91640 indicative +91657 infinitive +91660 participle +indicative +91665 indicative +91667 subjunctive +91675 participle +91679 participle +91683 participle +91687 indicative +91689 participle +91693 participle +91700 participle +91713 infinitive +91725 subjunctive +91737 indicative +91744 indicative +imperative +91750 subjunctive +91754 indicative +91762 indicative +91764 subjunctive +91781 indicative +91787 infinitive +91805 indicative +91809 infinitive +91812 indicative +91815 infinitive +91819 participle +subjunctive +91835 infinitive +91841 infinitive +91846 indicative +91852 indicative +imperative +91859 indicative +91863 participle +91867 infinitive +91878 indicative +91884 indicative +91889 indicative +91893 indicative +91897 indicative +91900 indicative +91908 subjunctive +91910 participle +91915 indicative +91919 indicative +91922 indicative +91928 indicative +infinitive +91939 indicative +91950 indicative +91953 indicative +91960 indicative +91965 indicative +91968 indicative +91970 indicative +91976 indicative +91982 indicative +91984 imperative +92007 indicative +92011 indicative +92013 indicative +92015 indicative +92017 indicative +92034 indicative +92038 indicative +92041 indicative +92045 indicative +92064 indicative +92085 indicative +92088 indicative +92094 indicative +92101 indicative +92103 participle +92108 subjunctive +92112 optative +92115 indicative +92118 participle +92123 indicative +92125 indicative +indicative +92134 participle +92139 indicative +imperative +92147 subjunctive +92152 indicative +92155 participle +92160 indicative +92163 indicative +92174 indicative +92176 indicative +92181 indicative +92184 indicative +92187 imperative +92197 indicative +92202 infinitive +92211 imperative +92217 imperative +92224 imperative +92238 indicative +92251 indicative +92256 imperative +92266 subjunctive +92274 subjunctive +92277 subjunctive +92287 indicative +92294 indicative +92297 infinitive +92303 indicative +92315 indicative +92324 subjunctive +92330 indicative +imperative +92334 indicative +infinitive +92337 infinitive +92340 participle +indicative +92351 infinitive +92355 subjunctive +imperative +92361 imperative +92366 infinitive +92370 indicative +92378 indicative +92383 indicative +infinitive +92388 imperative +92393 indicative +92398 indicative +infinitive +92403 imperative +92407 indicative +92416 indicative +92430 indicative +92434 indicative +92439 indicative +imperative +92442 indicative +92454 indicative +92461 indicative +92465 indicative +92469 indicative +92473 indicative +92478 indicative +92483 indicative +92487 imperative +92494 indicative +participle +92497 indicative +92499 imperative +92502 indicative +92505 imperative +92509 indicative +92514 indicative +92524 indicative +92527 imperative +92529 indicative +92532 imperative +92536 indicative +92538 infinitive +92540 imperative +92545 participle +92549 indicative +92553 participle +indicative +92558 indicative +92560 imperative +92567 indicative +92570 imperative +92580 indicative +92583 indicative +92585 participle +92589 infinitive +92591 indicative +92594 infinitive +92597 participle +92604 infinitive +indicative +92608 imperative +92610 indicative +92614 imperative +92619 subjunctive +92621 indicative +92624 subjunctive +92628 indicative +92633 indicative +92639 indicative +92643 indicative +92646 participle +indicative +92653 participle +92657 participle +subjunctive +92661 participle +92664 participle +92667 participle +92670 participle +92673 participle +92676 participle +92679 participle +92684 participle +92686 indicative +92693 indicative +92696 infinitive +92699 indicative +92704 subjunctive +92709 participle +indicative +92715 subjunctive +92719 indicative +92728 indicative +92733 subjunctive +92743 participle +indicative +92749 subjunctive +92759 indicative +92764 subjunctive +92777 infinitive +92782 indicative +92784 subjunctive +92788 indicative +infinitive +92791 indicative +imperative +92794 indicative +imperative +92798 indicative +92805 participle +92809 indicative +92816 indicative +92821 infinitive +92826 indicative +92830 participle +92835 indicative +92839 participle +92841 indicative +92843 indicative +92847 indicative +92853 subjunctive +92857 indicative +92859 indicative +infinitive +92866 indicative +92869 subjunctive +92875 indicative +92879 infinitive +92884 indicative +92888 indicative +92891 indicative +92895 indicative +92898 indicative +infinitive +92902 indicative +92904 indicative +infinitive +92909 indicative +92913 indicative +92922 indicative +92938 indicative +participle +92948 indicative +92997 indicative +93003 participle +indicative +93009 indicative +93015 subjunctive +indicative +93019 subjunctive +indicative +93022 imperative +93030 subjunctive +93036 subjunctive +93039 participle +93043 participle +93049 participle +indicative +93055 infinitive +93057 indicative +93063 participle +93069 indicative +93072 participle +93077 participle +93081 participle +93084 indicative +93088 indicative +93094 subjunctive +93104 subjunctive +93106 indicative +93109 indicative +93116 indicative +93122 indicative +93128 indicative +93133 indicative +93141 indicative +93149 participle +indicative +93154 indicative +93156 infinitive +93158 infinitive +93161 indicative +93165 infinitive +93184 indicative +93187 infinitive +93189 indicative +93194 indicative +93201 indicative +93204 indicative +93213 indicative +93218 indicative +93225 indicative +93231 indicative +93233 indicative +93235 participle +93239 indicative +93246 indicative +93250 indicative +93252 indicative +93255 infinitive +93257 participle +93260 participle +93264 infinitive +93270 indicative +93277 indicative +93283 indicative +93289 indicative +93295 indicative +93300 subjunctive +93306 indicative +93311 participle +93316 indicative +93320 participle +93323 indicative +93328 indicative +93332 participle +93336 infinitive +93340 indicative +93345 indicative +93349 subjunctive +93356 infinitive +93362 indicative +93365 subjunctive +93367 indicative +93373 indicative +93377 indicative +93380 subjunctive +93385 indicative +93387 indicative +93392 indicative +93395 indicative +93400 participle +93402 subjunctive +93408 infinitive +93417 participle +93422 indicative +93426 subjunctive +93428 indicative +93435 subjunctive +93443 participle +93451 subjunctive +93457 participle +93464 subjunctive +93467 indicative +93474 subjunctive +93477 indicative +93482 subjunctive +93485 indicative +93492 subjunctive +93494 indicative +93499 participle +93502 indicative +93505 indicative +93509 imperative +93511 subjunctive +93515 participle +93517 indicative +93524 subjunctive +93531 indicative +93536 indicative +93540 participle +93542 indicative +93547 indicative +93551 participle +93554 subjunctive +93558 indicative +93560 infinitive +93569 indicative +93575 indicative +93581 indicative +93595 indicative +93602 indicative +93604 indicative +93607 participle +93612 indicative +93621 indicative +93625 indicative +93633 indicative +93637 infinitive +93643 indicative +93646 imperative +93651 indicative +indicative +93655 infinitive +93657 infinitive +93659 indicative +infinitive +93662 subjunctive +93666 indicative +93668 indicative +93674 subjunctive +93680 indicative +93685 indicative +93687 imperative +93691 indicative +93693 indicative +93700 indicative +93703 indicative +93713 indicative +93716 participle +infinitive +imperative +93720 subjunctive +93724 indicative +93734 indicative +93736 infinitive +93739 indicative +93741 indicative +93749 infinitive +infinitive +93754 imperative +93760 indicative +imperative +93764 indicative +93770 indicative +93772 indicative +93781 indicative +93788 indicative +93796 indicative +93804 indicative +imperative +93812 participle +93818 indicative +93821 indicative +93825 indicative +93830 indicative +93834 indicative +93839 indicative +93842 indicative +93847 infinitive +93849 indicative +93852 infinitive +93857 indicative +93860 infinitive +93865 indicative +93871 indicative +93873 indicative +93877 indicative +93879 indicative +93883 indicative +93887 imperative +93896 participle +imperative +93899 participle +93916 indicative +93919 indicative +infinitive +93923 participle +93925 imperative +93927 participle +93935 subjunctive +93938 indicative +93940 imperative +93944 participle +93949 indicative +93964 indicative +93971 indicative +93973 indicative +93977 indicative +93980 indicative +93982 indicative +93985 indicative +93990 imperative +93992 imperative +94006 indicative +participle +94017 subjunctive +94020 imperative +94025 indicative +94030 indicative +94033 indicative +94037 indicative +94039 indicative +94041 infinitive +94049 indicative +94063 participle +94065 participle +94068 participle +indicative +94076 participle +94078 participle +94082 indicative +94087 indicative +94093 participle +94097 indicative +94100 imperative +94106 infinitive +94108 infinitive +imperative +94114 indicative +infinitive +94122 participle +94128 indicative +94131 indicative +94142 indicative +94154 indicative +94158 infinitive +94199 imperative +participle +indicative +94206 infinitive +94211 indicative +94217 subjunctive +94220 indicative +94224 subjunctive +94227 indicative +94233 indicative +94238 indicative +94240 infinitive +94245 indicative +94253 participle +94255 indicative +94265 indicative +94269 participle +94273 indicative +94277 infinitive +94281 indicative +94283 indicative +94288 infinitive +94294 subjunctive +94298 participle +94304 indicative +94307 infinitive +94313 indicative +94316 infinitive +94320 indicative +94323 indicative +94328 indicative +94331 infinitive +94333 infinitive +94339 indicative +94341 indicative +94344 participle +94346 subjunctive +94348 subjunctive +94353 indicative +94356 indicative +94362 indicative +94372 indicative +indicative +94376 participle +indicative +94379 indicative +94381 indicative +94389 imperative +94400 infinitive +participle +94408 indicative +94414 imperative +94417 subjunctive +94425 subjunctive +94432 subjunctive +94437 indicative +94440 subjunctive +94444 subjunctive +94448 subjunctive +94455 indicative +94464 imperative +94472 imperative +94477 imperative +94480 participle +94482 participle +94485 indicative +94487 indicative +94489 participle +94501 indicative +94506 indicative +94509 indicative +94511 participle +94515 indicative +94521 subjunctive +94525 participle +94528 infinitive +94530 imperative +94533 indicative +94536 imperative +94541 subjunctive +94547 subjunctive +indicative +94555 indicative +94557 infinitive +indicative +94562 indicative +94570 indicative +participle +94573 indicative +94580 participle +indicative +94586 indicative +infinitive +94598 indicative +94606 indicative +94614 indicative +94620 participle +94627 indicative +94634 participle +94641 indicative +94687 indicative +94694 participle +94698 indicative +94704 indicative +94708 indicative +94716 participle +94719 indicative +94734 indicative +94747 indicative +94752 indicative +94759 subjunctive +94764 indicative +94767 indicative +94775 indicative +94781 subjunctive +94786 indicative +94789 indicative +94797 indicative +94819 indicative +94829 indicative +94832 indicative +94850 indicative +94853 infinitive +94859 indicative +94869 indicative +94874 participle +94876 infinitive +94881 indicative +94884 infinitive +94888 indicative +94892 indicative +94899 indicative +94906 indicative +94910 indicative +94914 participle +participle +94920 subjunctive +94930 subjunctive +94935 indicative +94938 indicative +94943 indicative +94945 indicative +94951 indicative +94961 indicative +94996 indicative +95002 indicative +95005 indicative +95007 imperative +95018 indicative +95027 subjunctive +95031 subjunctive +indicative +95034 participle +95037 participle +95040 subjunctive +95043 subjunctive +95053 subjunctive +95059 infinitive +95063 subjunctive +95065 indicative +95068 subjunctive +95071 participle +95075 subjunctive +95080 indicative +95084 subjunctive +95086 indicative +95089 indicative +indicative +95094 indicative +95098 indicative +95100 indicative +95102 indicative +95104 indicative +95108 indicative +95110 indicative +95114 indicative +95119 indicative +95123 indicative +95125 indicative +95127 indicative +95129 indicative +95133 indicative +95137 indicative +95140 indicative +95143 indicative +95147 indicative +95151 indicative +95154 subjunctive +95160 indicative +95162 indicative +95164 indicative +95167 indicative +95170 indicative +95174 indicative +95176 indicative +95181 indicative +95193 indicative +95198 indicative +95201 indicative +95204 indicative +95216 imperative +95220 imperative +95226 subjunctive +95229 participle +95233 indicative +95238 indicative +95241 indicative +95245 participle +95247 indicative +95254 participle +95257 indicative +95260 participle +95262 indicative +95264 indicative +95267 infinitive +95272 subjunctive +95276 participle +95279 participle +95284 subjunctive +95289 subjunctive +95294 subjunctive +95298 participle +95301 indicative +95305 subjunctive +95321 participle +95331 subjunctive +95333 indicative +95335 participle +95338 participle +95345 subjunctive +95347 indicative +95360 subjunctive +95362 indicative +95364 participle +95368 indicative +participle +95371 optative +95375 indicative +95384 subjunctive +95389 indicative +95391 participle +95395 participle +95405 indicative +95411 imperative +95413 subjunctive +95416 participle +95418 imperative +95420 subjunctive +95423 subjunctive +95428 indicative +95434 indicative +95437 indicative +indicative +95442 indicative +95446 indicative +95450 indicative +95456 subjunctive +95459 participle +95465 indicative +95474 indicative +95476 indicative +95481 indicative +95486 indicative +indicative +95494 indicative +95498 indicative +95504 infinitive +95508 subjunctive +95517 imperative +95523 imperative +95528 imperative +95532 indicative +95540 indicative +95547 indicative +95549 indicative +95556 indicative +95559 participle +95571 participle +95574 subjunctive +95583 subjunctive +95586 subjunctive +95591 indicative +95593 indicative +95597 subjunctive +95599 subjunctive +95604 indicative +95607 indicative +95616 indicative +95619 participle +95622 indicative +95625 participle +95632 indicative +95635 indicative +95638 subjunctive +95641 indicative +95643 indicative +95645 indicative +95647 indicative +95649 indicative +95653 imperative +95657 indicative +95669 imperative +95673 subjunctive +95675 imperative +95679 imperative +95689 imperative +95693 imperative +95697 participle +subjunctive +95701 imperative +95703 indicative +95707 infinitive +95710 subjunctive +95713 subjunctive +95718 indicative +95721 indicative +95739 imperative +95742 indicative +95744 infinitive +95746 imperative +95751 indicative +95755 infinitive +indicative +95762 imperative +95765 indicative +95767 infinitive +95777 indicative +95782 indicative +95785 indicative +infinitive +95790 imperative +95792 indicative +95797 indicative +95801 indicative +indicative +95806 imperative +95808 infinitive +95811 infinitive +95814 imperative +95821 imperative +95824 indicative +95829 indicative +95833 indicative +95837 indicative +95841 indicative +95844 indicative +95847 indicative +95852 indicative +95854 indicative +95860 indicative +95863 indicative +95873 indicative +95876 indicative +95886 indicative +95892 indicative +95901 indicative +95906 indicative +95908 indicative +95917 indicative +95924 indicative +95931 indicative +95933 infinitive +95936 indicative +95944 indicative +95946 indicative +95956 indicative +95961 indicative +95978 indicative +95981 indicative +95985 indicative +95989 indicative +95991 indicative +95999 indicative +96005 indicative +96008 indicative +96013 indicative +96025 indicative +96031 indicative +96036 indicative +96041 indicative +96046 indicative +96051 indicative +96054 indicative +96059 indicative +96065 indicative +96073 participle +96076 indicative +96084 participle +indicative +96090 indicative +96093 indicative +96099 participle +96116 indicative +96123 indicative +96144 subjunctive +96152 subjunctive +96161 indicative +96163 infinitive +96166 subjunctive +96178 indicative +96181 indicative +96188 subjunctive +96191 indicative +96196 participle +96202 subjunctive +96211 indicative +96213 participle +96218 subjunctive +96226 indicative +96228 participle +96236 indicative +96239 indicative +96245 indicative +96251 indicative +96257 indicative +96267 indicative +96277 indicative +subjunctive +96280 subjunctive +96283 indicative +96285 imperative +indicative +96291 imperative +96295 imperative +96300 indicative +96304 indicative +96306 indicative +96309 indicative +96315 indicative +96319 indicative +96321 indicative +96324 subjunctive +96327 indicative +96332 participle +indicative +96338 optative +96347 indicative +96351 indicative +96411 indicative +96420 indicative +96423 indicative +96426 indicative +96429 indicative +96432 indicative +96435 indicative +96438 indicative +96441 indicative +96445 indicative +96448 indicative +96453 indicative +indicative +96461 participle +96467 participle +96507 indicative +96512 subjunctive +96520 indicative +96528 infinitive +96530 indicative +96536 indicative +imperative +96540 indicative +96543 indicative +96546 indicative +96557 indicative +96561 indicative +96565 indicative +96567 indicative +96571 infinitive +96577 infinitive +96584 subjunctive +96590 subjunctive +96593 indicative +96597 participle +indicative +96632 participle +96646 imperative +96649 participle +96656 participle +96662 indicative +96675 indicative +96683 imperative +96691 imperative +participle +96696 subjunctive +96700 subjunctive +96703 subjunctive +96706 subjunctive +96709 subjunctive +96713 indicative +infinitive +96723 subjunctive +96726 infinitive +96729 indicative +96731 indicative +96736 subjunctive +96739 indicative +96743 participle +indicative +96747 indicative +96751 subjunctive +96754 subjunctive +96757 indicative +96762 infinitive +96764 indicative +96767 infinitive +96773 subjunctive +96775 indicative +96783 indicative +96789 participle +96793 subjunctive +96795 imperative +96798 subjunctive +96805 indicative +96812 subjunctive +96814 imperative +96819 subjunctive +96823 indicative +96834 indicative +96837 subjunctive +96846 indicative +96850 subjunctive +96852 indicative +96854 subjunctive +imperative +imperative +96860 imperative +imperative +96866 imperative +96868 indicative +96871 indicative +96876 indicative +96885 indicative +96890 subjunctive +96896 participle +96898 participle +96900 indicative +96914 indicative +96916 indicative +96924 imperative +96927 indicative +96933 indicative +96947 indicative +96952 imperative +96966 indicative +96969 imperative +96972 imperative +97005 participle +97013 participle +97049 participle +97058 infinitive +97060 infinitive +97069 indicative +97076 indicative +97087 indicative +97094 indicative +97102 indicative +97108 participle +97117 indicative +97125 participle +97128 indicative +97139 indicative +97141 infinitive +97147 participle +97156 indicative +97158 infinitive +97162 infinitive +97171 indicative +97174 participle +subjunctive +97183 participle +97190 indicative +97193 indicative +97196 indicative +97200 indicative +participle +97218 subjunctive +97226 indicative +97247 indicative +97256 indicative +97263 indicative +97266 indicative +97268 indicative +97272 indicative +97275 indicative +97282 indicative +97298 indicative +97302 infinitive +97306 subjunctive +97310 infinitive +97317 infinitive +97323 infinitive +97329 participle +97334 indicative +97337 indicative +97340 indicative +97342 subjunctive +97364 indicative +97380 participle +97388 indicative +97396 indicative +97419 participle +97426 participle +97431 participle +97434 participle +97448 indicative +97454 participle +97457 indicative +97462 indicative +97468 indicative +97475 indicative +97477 indicative +97487 infinitive +97491 indicative +97496 participle +97501 participle +97505 indicative +97510 participle +97512 subjunctive +97516 infinitive +indicative +participle +97528 indicative +97536 indicative +97543 subjunctive +97546 subjunctive +97550 indicative +97557 indicative +97560 indicative +97568 subjunctive +97583 infinitive +97585 infinitive +97591 subjunctive +97595 indicative +97597 infinitive +97605 indicative +97607 subjunctive +97615 indicative +97619 indicative +97625 indicative +97628 indicative +97636 subjunctive +97645 indicative +97647 participle +97659 participle +97663 indicative +97670 infinitive +97677 participle +97679 indicative +97688 participle +97699 participle +97708 indicative +97713 participle +97717 participle +97739 indicative +participle +97760 indicative +indicative +97764 infinitive +97767 indicative +97781 indicative +participle +97787 participle +97789 participle +97793 participle +97795 indicative +97798 participle +97801 participle +97807 participle +97820 indicative +97832 indicative +infinitive +97847 indicative +97859 indicative +97863 indicative +97872 participle +97874 indicative +97879 infinitive +97883 infinitive +97895 participle +97903 indicative +97915 indicative +97924 indicative +97926 participle +97933 participle +97938 participle +97944 participle +97948 participle +97953 indicative +97958 indicative +97967 infinitive +97975 participle +97977 indicative +97995 indicative +97997 participle +98001 indicative +98007 subjunctive +98014 indicative +98018 subjunctive +98021 indicative +98029 indicative +98039 participle +98044 participle +98048 indicative +98059 participle +98064 indicative +98066 indicative +98068 indicative +98074 participle +98078 participle +98088 participle +98100 indicative +participle +98107 participle +indicative +participle +98117 indicative +98125 infinitive +98135 indicative +98142 indicative +98157 participle +98161 indicative +98163 indicative +98180 indicative +98192 subjunctive +98201 participle +98204 participle +participle +98208 participle +participle +98212 participle +participle +98216 participle +98225 participle +98236 subjunctive +98241 participle +98244 indicative +98253 subjunctive +98264 indicative +98271 participle +98279 participle +indicative +98282 indicative +98285 indicative +98288 indicative +participle +98292 participle +98300 indicative +98302 indicative +98313 participle +98319 subjunctive +98327 indicative +98335 indicative +98340 indicative +98357 indicative +98360 participle +98363 participle +98367 participle +98370 participle +98375 participle +98378 indicative +98387 subjunctive +98390 indicative +98402 indicative +98409 infinitive +participle +98414 participle +98417 indicative +98421 participle +98425 indicative +participle +98429 indicative +98431 infinitive +98433 infinitive +98435 subjunctive +98443 participle +98450 participle +98457 participle +98460 participle +98462 participle +98466 indicative +98473 indicative +98478 indicative +98480 indicative +98482 infinitive +98487 infinitive +98493 indicative +98495 participle +98497 participle +98500 infinitive +98505 infinitive +98511 indicative +98513 subjunctive +98521 indicative +98527 participle +98533 indicative +98536 indicative +98538 indicative +98544 infinitive +98548 indicative +98553 participle +98558 subjunctive +98563 participle +98570 indicative +98573 indicative +98580 indicative +98582 participle +98588 indicative +98592 indicative +98596 indicative +98599 participle +subjunctive +98607 participle +98609 participle +98616 indicative +98621 indicative +98628 indicative +98638 indicative +imperative +indicative +98649 participle +98655 participle +98664 indicative +participle +98671 participle +98677 participle +98687 indicative +98691 participle +98694 indicative +98697 imperative +98702 participle +98707 indicative +98710 subjunctive +98716 participle +98718 indicative +98726 infinitive +98729 indicative +98732 indicative +98738 indicative +98740 imperative +98744 imperative +98752 participle +98755 subjunctive +98761 participle +98829 participle +98831 participle +98833 participle +98835 imperative +indicative +98838 participle +98841 participle +98843 participle +98846 participle +98851 participle +98854 participle +98857 participle +98862 indicative +98868 indicative +98870 indicative +98874 indicative +98885 indicative +imperative +98890 imperative +participle +98928 participle +indicative +98931 indicative +98935 indicative +98939 indicative +98941 indicative +98946 indicative +98950 imperative +98955 imperative +98959 imperative +indicative +98963 indicative +98966 indicative +98972 indicative +98978 indicative +98983 participle +98987 subjunctive +98995 participle +99000 imperative +99003 indicative +99005 indicative +99007 indicative +99011 indicative +99013 indicative +99019 indicative +99022 infinitive +99024 infinitive +99035 indicative +99038 indicative +99048 participle +99053 indicative +99061 participle +99068 participle +99073 indicative +99092 indicative +99095 participle +99111 infinitive +99115 indicative +99121 indicative +99124 indicative +indicative +99134 indicative +99137 indicative +99140 indicative +99143 indicative +99147 indicative +99153 subjunctive +99165 indicative +99172 indicative +99174 imperative +99180 infinitive +indicative +99199 indicative +99202 infinitive +99208 indicative +99213 participle +99217 participle +99221 infinitive +99235 indicative +99243 indicative +99249 indicative +99262 indicative +99264 indicative +99270 indicative +99280 indicative +99288 indicative +participle +99299 indicative +99301 indicative +99305 indicative +99310 indicative +99317 participle +99339 indicative +99346 indicative +99357 participle +99373 indicative +99376 indicative +99387 infinitive +99392 indicative +99395 subjunctive +99406 indicative +99428 subjunctive +99432 indicative +99444 participle +99446 indicative +99457 indicative +99459 participle +99465 subjunctive +99470 indicative +99474 indicative +99479 infinitive +99483 infinitive +indicative +99491 infinitive +imperative +99498 infinitive +99502 infinitive +99505 infinitive +99510 indicative +99513 subjunctive +99518 indicative +99545 subjunctive +99551 subjunctive +99554 indicative +99559 indicative +99565 indicative +99571 participle +99585 indicative +99588 participle +99590 indicative +99594 indicative +99614 participle +99625 participle +99637 participle +99642 subjunctive +99648 participle +99652 indicative +99663 indicative +99669 indicative +99674 participle +99713 participle +99729 indicative +99731 infinitive +99734 indicative +99741 indicative +99745 indicative +99752 indicative +99756 indicative +99767 subjunctive +99774 indicative +participle +subjunctive +99780 subjunctive +99785 subjunctive +99788 subjunctive +99792 subjunctive +99800 indicative +infinitive +99805 subjunctive +99809 subjunctive +99811 participle +99816 infinitive +99827 participle +99831 indicative +99834 participle +99840 indicative +99843 indicative +99855 indicative +99859 indicative +99864 infinitive +99873 participle +subjunctive +99880 indicative +indicative +indicative +99888 indicative +99894 participle +99897 participle +99902 indicative +99904 indicative +99909 indicative +99917 participle +99922 indicative +99936 indicative +participle +99944 participle +99956 participle +99984 participle +99988 participle +100006 indicative +100023 participle +indicative +100028 indicative +100031 participle +infinitive +100036 indicative +infinitive +100041 participle +100046 participle +100050 participle +100054 indicative +100070 participle +100075 participle +100082 participle +100093 participle +infinitive +100098 subjunctive +100105 indicative +100108 indicative +100111 infinitive +100113 imperative +100129 subjunctive +100135 indicative +100146 indicative +100149 subjunctive +100152 infinitive +100158 indicative +100174 participle +100176 imperative +100181 indicative +100186 participle +100189 participle +100194 indicative +infinitive +100197 infinitive +100202 participle +100208 participle +100210 participle +100214 indicative +100221 indicative +100229 indicative +100234 infinitive +100242 participle +100245 indicative +100251 indicative +100261 participle +100267 participle +participle +100274 infinitive +100285 infinitive +100293 infinitive +100296 participle +100299 imperative +100304 participle +100306 indicative +100312 indicative +indicative +indicative +100321 indicative +100324 indicative +100329 indicative +100335 infinitive +100339 indicative +100345 indicative +100351 subjunctive +100368 participle +indicative +100374 indicative +100376 indicative +100381 indicative +100387 indicative +100389 indicative +100391 indicative +100393 infinitive +100410 participle +100417 indicative +100419 participle +100422 subjunctive +100429 indicative +100433 indicative +participle +100441 participle +100445 participle +100447 indicative +100453 indicative +100456 participle +100465 indicative +100467 indicative +indicative +100478 indicative +100490 indicative +100494 indicative +100497 indicative +100499 indicative +100501 subjunctive +100505 participle +100510 indicative +subjunctive +100521 participle +100532 indicative +100544 indicative +100551 indicative +100557 indicative +100560 subjunctive +100563 infinitive +100570 imperative +100576 subjunctive +100578 indicative +100582 indicative +100595 indicative +100600 indicative +100603 indicative +100607 participle +100609 indicative +100613 indicative +100616 indicative +100619 indicative +100622 indicative +100628 indicative +100631 indicative +100635 indicative +100641 subjunctive +100644 indicative +indicative +100648 indicative +100651 indicative +100655 indicative +100659 indicative +participle +indicative +100682 indicative +100684 indicative +100686 indicative +100688 indicative +100693 indicative +100750 indicative +100753 indicative +100755 indicative +100759 indicative +100761 infinitive +indicative +100767 indicative +100776 participle +100781 indicative +100784 indicative +100792 indicative +100796 infinitive +100803 indicative +100808 indicative +100812 infinitive +indicative +100816 participle +100818 indicative +100824 indicative +100832 indicative +100838 indicative +100841 indicative +100845 participle +100852 indicative +100864 indicative +100867 indicative +100869 indicative +100874 indicative +100878 infinitive +100880 participle +100885 indicative +100890 indicative +100898 subjunctive +infinitive +100901 indicative +100905 indicative +100907 indicative +100912 subjunctive +100915 indicative +100918 indicative +100929 subjunctive +indicative +100939 subjunctive +100942 subjunctive +100948 indicative +100950 subjunctive +100954 indicative +100956 indicative +100966 indicative +100970 indicative +100975 subjunctive +100983 indicative +100998 subjunctive +101001 indicative +indicative +101006 indicative +101009 indicative +101012 infinitive +101015 indicative +101022 indicative +101028 indicative +101042 indicative +101044 indicative +101055 indicative +101057 imperative +101062 imperative +101066 indicative +infinitive +101072 indicative +101075 indicative +101082 indicative +101087 infinitive +101096 indicative +101098 indicative +101106 indicative +101108 indicative +101110 imperative +101113 indicative +101116 participle +101120 indicative +101124 indicative +101129 indicative +101131 indicative +101134 indicative +101138 indicative +101145 indicative +101151 indicative +101154 indicative +101159 indicative +101169 indicative +101172 participle +101175 indicative +subjunctive +101179 subjunctive +101183 indicative +101196 participle +101198 subjunctive +101206 subjunctive +101209 participle +101212 participle +101221 indicative +101224 indicative +101233 indicative +101236 indicative +101238 indicative +101240 participle +101244 participle +101247 participle +101254 subjunctive +101259 indicative +101261 indicative +101266 participle +101272 indicative +101274 indicative +101279 indicative +101283 indicative +101290 indicative +101294 indicative +101303 imperative +101305 indicative +101310 imperative +101313 indicative +101323 indicative +101325 indicative +101327 indicative +101331 indicative +101334 indicative +101339 infinitive +101347 subjunctive +101353 subjunctive +101358 subjunctive +101361 indicative +101371 indicative +101374 subjunctive +101378 subjunctive +101380 indicative +101388 participle +indicative +101391 participle +101394 subjunctive +101401 indicative +101411 imperative +imperative +imperative +101416 imperative +imperative +101425 indicative +101428 imperative +101433 indicative +101474 participle +101501 participle +101508 subjunctive +101514 participle +101533 indicative +101537 indicative +101540 participle +101550 indicative +101555 indicative +101557 participle +101560 participle +infinitive +101574 subjunctive +101578 indicative +101581 imperative +101583 indicative +101587 indicative +101591 indicative +101594 indicative +101596 imperative +101599 indicative +101605 indicative +101607 infinitive +101611 indicative +101616 indicative +101619 indicative +101624 participle +101629 indicative +101637 indicative +101640 indicative +101647 indicative +101658 indicative +101664 indicative +101667 indicative +101679 participle +101687 indicative +101689 participle +101696 participle +101701 infinitive +101708 subjunctive +101715 indicative +101720 indicative +101729 indicative +101734 indicative +101741 indicative +101744 infinitive +101747 indicative +101757 indicative +101767 indicative +101769 imperative +101775 indicative +101777 indicative +101787 indicative +participle +101800 participle +indicative +101804 participle +101808 indicative +101813 indicative +101815 indicative +101825 indicative +101830 participle +101834 indicative +101838 indicative +101843 indicative +101851 participle +101856 subjunctive +101858 indicative +101866 participle +indicative +infinitive +101875 indicative +infinitive +101881 indicative +101887 indicative +101892 indicative +101900 subjunctive +101906 participle +infinitive +101911 indicative +101914 indicative +101920 indicative +101924 participle +101926 indicative +101929 participle +101931 indicative +101942 participle +101948 indicative +101955 participle +101959 participle +101967 participle +101969 infinitive +101972 indicative +101990 subjunctive +101993 indicative +101996 infinitive +101999 indicative +102006 indicative +102008 participle +indicative +102013 infinitive +102020 indicative +102023 indicative +indicative +102026 indicative +102028 participle +102033 indicative +102042 indicative +102048 indicative +102051 indicative +102057 indicative +102065 participle +102070 indicative +102072 indicative +102075 infinitive +102085 participle +102088 indicative +102104 indicative +102106 subjunctive +102120 indicative +102125 participle +infinitive +102129 indicative +102138 optative +102142 indicative +102145 indicative +102148 indicative +102154 indicative +102157 subjunctive +102159 indicative +102161 indicative +102165 indicative +102172 indicative +102175 indicative +102184 participle +102187 participle +102192 indicative +102205 indicative +102211 indicative +102217 indicative +participle +indicative +102222 infinitive +102227 indicative +102237 indicative +participle +102242 indicative +102244 indicative +102252 participle +102257 participle +102270 indicative +102274 indicative +102279 indicative +102287 indicative +102291 participle +102295 indicative +102300 indicative +102304 indicative +102314 indicative +102324 indicative +102327 indicative +102329 indicative +102335 indicative +102338 participle +102345 infinitive +102352 indicative +102362 indicative +102367 indicative +102372 participle +102374 indicative +102379 indicative +102385 participle +102390 indicative +102394 participle +102405 subjunctive +102414 subjunctive +102421 indicative +102424 participle +102427 indicative +102429 indicative +102431 indicative +102441 indicative +102457 indicative +102461 indicative +102463 participle +102473 participle +102476 indicative +102479 infinitive +102496 indicative +102506 indicative +102509 subjunctive +102513 indicative +participle +102525 indicative +102530 indicative +102540 optative +102543 indicative +102546 participle +infinitive +102552 indicative +102556 indicative +102570 subjunctive +102572 participle +102576 infinitive +102581 indicative +participle +102585 participle +infinitive +102593 indicative +102599 subjunctive +102601 participle +102607 indicative +102612 indicative +102623 indicative +102625 indicative +102627 indicative +102632 indicative +102637 indicative +102645 indicative +102657 indicative +102662 indicative +102669 indicative +102671 indicative +102675 participle +102681 indicative +102691 indicative +102698 indicative +participle +102702 indicative +102707 indicative +102713 participle +102716 participle +102723 subjunctive +102727 subjunctive +102730 indicative +102732 indicative +102744 participle +102749 indicative +102765 participle +102767 indicative +102771 participle +102775 participle +102779 participle +102783 indicative +102794 infinitive +indicative +indicative +102804 indicative +102809 indicative +102812 imperative +102820 indicative +102824 indicative +102826 indicative +102832 indicative +102845 indicative +102847 indicative +102852 indicative +102863 indicative +102871 participle +indicative +102877 indicative +participle +102880 indicative +102885 infinitive +102887 indicative +102890 subjunctive +102893 infinitive +102902 infinitive +102910 indicative +102913 subjunctive +102918 indicative +infinitive +102924 infinitive +102929 indicative +102932 imperative +102937 infinitive +participle +102942 indicative +102944 indicative +102947 indicative +102967 indicative +102977 indicative +participle +102981 indicative +102991 participle +102993 indicative +103000 indicative +103005 indicative +103010 indicative +103020 indicative +103022 indicative +103026 indicative +imperative +103031 participle +imperative +103034 imperative +103037 participle +103047 participle +103057 indicative +103064 participle +indicative +103074 indicative +103077 imperative +103087 indicative +103099 indicative +103110 indicative +103112 imperative +103118 imperative +imperative +103122 indicative +103126 subjunctive +103130 indicative +103132 indicative +103136 participle +103139 indicative +103143 infinitive +indicative +103150 indicative +103153 indicative +103161 indicative +103171 indicative +103176 participle +indicative +103180 indicative +103184 infinitive +103190 participle +103197 indicative +103199 indicative +103207 indicative +103210 participle +103212 indicative +103217 subjunctive +103224 indicative +103227 indicative +103229 indicative +103234 indicative +103236 indicative +103238 participle +103244 indicative +103258 imperative +103264 indicative +103270 indicative +103279 indicative +103281 indicative +imperative +103286 subjunctive +103288 indicative +103290 imperative +103296 subjunctive +103300 indicative +103313 indicative +103318 subjunctive +103320 subjunctive +103324 indicative +103326 indicative +103331 indicative +103337 indicative +103358 indicative +103361 indicative +103366 participle +103370 indicative +103376 indicative +103390 indicative +103399 indicative +103407 indicative +103411 subjunctive +103413 subjunctive +103416 participle +103418 participle +103422 subjunctive +103430 imperative +103436 participle +103441 subjunctive +103445 imperative +103448 indicative +103455 indicative +103457 infinitive +103460 participle +indicative +103467 imperative +103476 indicative +103487 indicative +103489 imperative +103491 participle +103495 participle +103500 imperative +103503 indicative +103507 subjunctive +103511 indicative +103514 participle +103522 indicative +103526 participle +103533 indicative +103539 participle +103541 subjunctive +103545 indicative +103547 participle +103552 subjunctive +subjunctive +103565 imperative +103569 indicative +103574 indicative +infinitive +103579 indicative +103581 infinitive +103589 subjunctive +103593 participle +103596 indicative +103598 indicative +103600 infinitive +103606 subjunctive +103610 optative +infinitive +103626 indicative +103631 indicative +103644 indicative +103661 imperative +103672 indicative +103696 participle +103727 participle +103739 indicative +103746 infinitive +103755 participle +103777 indicative +103781 participle +103784 indicative +103802 indicative +103810 participle +103822 indicative +103831 infinitive +103851 indicative +participle +103858 participle +103867 infinitive +103874 participle +103882 participle +103895 participle +indicative +103904 indicative +103921 participle +103939 indicative +participle +103944 participle +103961 optative +103970 participle +103978 infinitive +103981 indicative +104001 participle +104009 participle +104019 indicative +104023 participle +104028 participle +104047 participle +104058 participle +104061 indicative +104068 indicative +104075 indicative +104086 participle +104089 participle +104100 indicative +104118 participle +104129 indicative +104137 participle +104146 indicative +104158 participle +104167 indicative +104170 participle +104175 indicative +104179 indicative +participle +104182 indicative +104184 indicative +104192 subjunctive +104197 participle +104199 participle +104214 indicative +participle +104232 subjunctive +104234 indicative +104237 participle +104245 indicative +104251 subjunctive +104253 imperative +104262 participle +104266 participle +104272 indicative +104278 participle +104291 participle +104305 participle +104307 indicative +104316 indicative +104321 participle +104332 participle +104343 participle +104347 subjunctive +104354 participle +104357 subjunctive +104368 participle +104374 participle +indicative +104387 indicative +104401 indicative +104406 indicative +104414 participle +104422 participle +104431 participle +indicative +104442 indicative +104464 indicative +104472 participle +104479 indicative +104484 indicative +104489 indicative +participle +infinitive +104504 indicative +104511 indicative +104520 infinitive +104538 indicative +104547 participle +104560 indicative +104566 infinitive +104573 infinitive +104580 participle +104590 participle +104592 subjunctive +104615 indicative +104625 indicative +104637 indicative +104639 infinitive +104647 indicative +104652 indicative +104668 indicative +104670 subjunctive +104679 infinitive +104688 infinitive +104700 participle +104702 participle +104704 subjunctive +infinitive +104720 infinitive +104722 participle +104729 subjunctive +104738 participle +infinitive +104744 indicative +104746 indicative +104751 participle +104774 indicative +104782 infinitive +104786 indicative +104794 participle +104798 participle +infinitive +104816 indicative +104847 indicative +104858 indicative +participle +104862 indicative +104864 indicative +104870 indicative +104872 indicative +104877 indicative +104885 participle +104887 indicative +104890 participle +104896 subjunctive +104901 indicative +104931 subjunctive +104958 subjunctive +104960 participle +104962 participle +104980 participle +104983 subjunctive +104989 indicative +104998 participle +105000 participle +105017 indicative +105025 indicative +105027 indicative +105032 infinitive +105037 indicative +105043 participle +participle +105047 participle +105056 participle +105066 participle +105068 indicative +105081 indicative +105087 indicative +105091 indicative +105093 indicative +105098 infinitive +105108 participle +105115 infinitive +105122 infinitive +105129 participle +105137 participle +105140 imperative +105148 indicative +105151 imperative +105154 imperative +105158 imperative +105163 imperative +105168 participle +105170 imperative +105173 imperative +participle +105181 subjunctive +infinitive +105185 participle +105194 imperative +105204 subjunctive +105207 participle +105210 imperative +105219 indicative +105233 imperative +105240 imperative +105245 participle +105253 indicative +105256 imperative +105264 imperative +105271 indicative +105274 indicative +105294 imperative +105298 indicative +105308 indicative +105314 imperative +participle +105324 indicative +105327 indicative +105338 imperative +105344 indicative +105356 imperative +105360 indicative +105371 imperative +105384 participle +105386 indicative +105392 imperative +105402 imperative +105406 participle +105410 indicative +105412 infinitive +105416 participle +105420 indicative +105424 participle +105426 indicative +105428 indicative +imperative +105431 participle +105433 imperative +105438 indicative +105443 imperative +105446 indicative +105453 participle +105460 indicative +105464 imperative +105467 imperative +105475 imperative +105479 indicative +105482 imperative +105485 participle +105493 participle +105495 participle +105501 participle +105516 participle +105531 indicative +105550 indicative +105563 imperative +105570 indicative +105575 indicative +105580 subjunctive +participle +105589 subjunctive +105596 participle +105606 subjunctive +105611 indicative +105615 infinitive +105624 participle +105629 indicative +105636 indicative +105638 indicative +105640 indicative +105649 indicative +105656 indicative +105664 indicative +105670 indicative +105680 indicative +105683 indicative +105701 imperative +105708 subjunctive +105713 imperative +105721 indicative +105723 imperative +105731 indicative +105739 subjunctive +105741 indicative +105750 imperative +105755 imperative +105764 imperative +105790 participle +105799 participle +105806 participle +105812 subjunctive +105814 indicative +105826 imperative +105829 participle +105832 participle +105840 indicative +105846 indicative +105851 imperative +105861 imperative +105868 infinitive +105870 infinitive +105877 indicative +105909 imperative +105915 subjunctive +infinitive +105924 participle +infinitive +105927 imperative +participle +105935 participle +105941 participle +105952 participle +105959 indicative +105966 participle +infinitive +105969 imperative +105980 indicative +105988 participle +105997 participle +106012 subjunctive +106021 infinitive +106028 indicative +106034 subjunctive +106036 indicative +106038 infinitive +106041 subjunctive +106048 indicative +106050 indicative +106062 indicative +106069 subjunctive +106074 subjunctive +106097 participle +106118 participle +106137 indicative +106158 participle +106173 participle +106178 participle +106183 indicative +106189 indicative +106193 infinitive +106199 infinitive +106224 participle +106231 indicative +106240 indicative +106249 subjunctive +106257 infinitive +106260 participle +106262 subjunctive +106269 participle +106283 indicative +infinitive +106295 indicative +106303 infinitive +106319 participle +106324 infinitive +106330 infinitive +106345 indicative +106350 participle +106356 indicative +106363 indicative +106366 participle +106368 infinitive +106383 indicative +106387 indicative +106390 indicative +106392 indicative +106396 indicative +106418 indicative +106427 indicative +106442 infinitive +106446 infinitive +106451 infinitive +106460 indicative +106462 indicative +106464 indicative +106470 participle +106473 infinitive +106477 infinitive +106484 infinitive +106492 participle +indicative +106495 indicative +106497 indicative +106512 subjunctive +106531 imperative +106534 participle +106536 participle +106539 participle +subjunctive +106545 indicative +106551 participle +106558 participle +106563 participle +106565 indicative +106578 indicative +106587 infinitive +106593 infinitive +participle +106599 indicative +106604 indicative +106626 imperative +106633 subjunctive +106637 participle +106641 participle +106652 participle +participle +106659 participle +106666 imperative +106678 participle +106681 indicative +106683 infinitive +106688 indicative +106691 participle +106695 participle +106698 participle +106701 indicative +106703 participle +106715 indicative +106717 indicative +106730 subjunctive +106741 subjunctive +106755 indicative +106778 imperative +106781 indicative +106783 participle +106788 infinitive +106791 infinitive +106796 imperative +106802 subjunctive +106813 participle +106816 indicative +106823 participle +106834 indicative +106838 indicative +106842 indicative +106851 indicative +106853 indicative +106861 imperative +106863 imperative +106866 indicative +106872 infinitive +106876 subjunctive +participle +106884 indicative +106890 indicative +106896 indicative +106905 indicative +106912 indicative +106918 indicative +106920 infinitive +106923 subjunctive +106929 indicative +106936 indicative +106938 indicative +106956 infinitive +106960 participle +indicative +106965 participle +106967 indicative +106969 indicative +106972 indicative +106978 indicative +106992 subjunctive +106995 indicative +106998 participle +107001 subjunctive +107004 subjunctive +107006 imperative +107017 imperative +107025 indicative +participle +107030 subjunctive +107042 imperative +107047 infinitive +107056 imperative +107059 imperative +107063 imperative +107067 indicative +107074 participle +107076 participle +107084 participle +107087 participle +107095 indicative +infinitive +107116 participle +107124 participle +107128 indicative +107132 indicative +107142 indicative +107145 infinitive +107148 participle +107160 indicative +107162 indicative +107166 subjunctive +107168 subjunctive +107171 participle +107191 infinitive +107203 participle +107209 subjunctive +107219 indicative +107222 indicative +107224 indicative +107227 subjunctive +107231 indicative +107238 indicative +107240 infinitive +107246 participle +107250 participle +107253 indicative +107269 subjunctive +107274 indicative +107280 indicative +107284 indicative +107287 infinitive +107291 imperative +107293 imperative +107296 participle +107298 indicative +107303 indicative +107306 indicative +107311 participle +indicative +107338 participle +107345 indicative +107349 indicative +107355 indicative +107371 infinitive +107374 infinitive +107389 imperative +107394 indicative +107397 indicative +107400 infinitive +107404 indicative +107409 imperative +107415 indicative +107431 imperative +107436 indicative +imperative +107441 imperative +107448 imperative +107462 imperative +107472 participle +107475 indicative +107490 indicative +107510 imperative +107513 indicative +107515 indicative +107517 indicative +107519 indicative +107523 imperative +107529 indicative +107533 indicative +107540 indicative +107544 infinitive +107548 indicative +107550 indicative +107555 indicative +107558 indicative +107561 indicative +107563 infinitive +indicative +107566 infinitive +indicative +107569 infinitive +107575 indicative +107577 infinitive +107579 infinitive +107581 infinitive +107583 infinitive +107585 indicative +107588 participle +107592 indicative +participle +107599 indicative +107604 indicative +107614 indicative +107636 indicative +107639 indicative +107643 indicative +107647 participle +107652 indicative +107655 indicative +indicative +participle +107674 indicative +107701 imperative +107707 indicative +107713 indicative +107763 indicative +107775 participle +participle +107787 indicative +107796 participle +107802 indicative +107811 participle +107820 indicative +participle +107823 participle +107831 indicative +107833 indicative +107841 indicative +107849 indicative +107858 participle +107872 indicative +107874 indicative +107877 participle +107879 participle +107881 subjunctive +107893 infinitive +107904 participle +107906 participle +107914 participle +107928 participle +107932 participle +107945 indicative +107953 indicative +107964 indicative +107972 indicative +107984 indicative +108014 indicative +108017 indicative +108025 indicative +108028 indicative +108036 indicative +108043 subjunctive +108047 participle +108049 indicative +108055 infinitive +108059 infinitive +108064 participle +108086 participle +participle +108099 indicative +108109 infinitive +108120 indicative +108123 participle +108128 participle +108135 indicative +108137 participle +108147 indicative +108151 indicative +108158 indicative +108174 indicative +108179 indicative +108187 participle +108191 infinitive +108199 participle +108209 indicative +108214 indicative +108217 infinitive +108230 indicative +108240 indicative +participle +108245 participle +108252 subjunctive +108261 indicative +participle +108268 participle +108274 indicative +108276 infinitive +108279 indicative +108289 indicative +108296 subjunctive +108300 participle +108320 indicative +108330 indicative +108334 subjunctive +108342 indicative +108348 indicative +participle +108351 participle +108365 indicative +108373 imperative +participle +108376 participle +108380 participle +108384 indicative +participle +108388 imperative +108391 indicative +108393 participle +108418 indicative +108426 indicative +participle +108431 indicative +108441 indicative +108456 participle +108464 indicative +108473 participle +108480 participle +108489 indicative +108493 participle +108498 participle +108506 indicative +108511 indicative +108515 participle +108519 participle +108525 indicative +108528 participle +108536 imperative +108551 indicative +108554 participle +108562 imperative +participle +108571 indicative +participle +108574 participle +108583 participle +108596 participle +108598 participle +indicative +108605 indicative +108615 participle +108618 indicative +108620 subjunctive +108622 subjunctive +108624 subjunctive +108626 indicative +108640 indicative +108642 participle +108662 indicative +108667 imperative +108671 indicative +participle +108679 imperative +108686 indicative +108691 indicative +108699 subjunctive +108710 indicative +108714 imperative +108730 indicative +108734 indicative +108743 indicative +108746 indicative +108751 imperative +108766 imperative +108769 participle +108778 participle +108782 participle +108788 participle +108792 indicative +108810 imperative +108817 participle +108824 participle +108827 participle +108833 subjunctive +108839 indicative +108851 indicative +108860 imperative +108868 indicative +108874 imperative +108879 imperative +108886 participle +108888 participle +108897 participle +108909 subjunctive +108920 participle +108928 imperative +108932 indicative +108937 imperative +108942 imperative +108947 imperative +108955 indicative +108961 imperative +108967 subjunctive +108970 imperative +108986 participle +108991 subjunctive +108994 imperative +109001 participle +109005 indicative +109013 indicative +109016 participle +indicative +109019 indicative +109022 indicative +109033 imperative +participle +109038 indicative +109044 imperative +participle +109050 participle +109058 subjunctive +109063 infinitive +109071 indicative +109073 subjunctive +109076 indicative +109078 infinitive +109081 imperative +109087 participle +109095 participle +infinitive +109098 indicative +109102 infinitive +109107 indicative +109121 indicative +109128 subjunctive +109133 subjunctive +109145 indicative +109149 indicative +109153 indicative +109166 indicative +109169 subjunctive +109172 imperative +109177 participle +109180 participle +109192 indicative +109195 indicative +109205 participle +109212 subjunctive +109215 participle +109222 indicative +109225 indicative +109238 indicative +109247 imperative +109262 subjunctive +109267 imperative +109274 subjunctive +109282 subjunctive +109284 imperative +109286 imperative +109290 indicative +109295 subjunctive +109302 imperative +109329 indicative +109337 participle +109343 participle +109370 participle +109375 participle +109383 indicative +109402 indicative +109404 indicative +109411 indicative +109417 participle +109428 infinitive +109433 participle +109444 indicative +109467 indicative +109471 infinitive +109473 infinitive +109479 indicative +109482 indicative +109487 indicative +109494 infinitive +109496 participle +109500 infinitive +109508 indicative +109514 participle +109520 participle +109524 indicative +109534 indicative +109536 participle +109538 participle +109542 indicative +indicative +109548 infinitive +109573 indicative +109577 infinitive +109581 indicative +109583 participle +109589 participle +109599 indicative +109601 indicative +109609 participle +109619 participle +109622 infinitive +109627 indicative +109635 subjunctive +109640 participle +109642 indicative +infinitive +109659 indicative +109662 indicative +109672 participle +109676 infinitive +109679 indicative +109699 participle +indicative +109702 indicative +109711 participle +109713 participle +109715 participle +109719 infinitive +109725 participle +109738 indicative +109743 participle +109750 indicative +109757 indicative +109762 indicative +109766 participle +109770 indicative +109777 participle +109787 indicative +109801 participle +109811 participle +109815 participle +109820 participle +109824 infinitive +109826 subjunctive +109829 infinitive +109835 indicative +109845 participle +109855 indicative +109859 infinitive +109864 indicative +infinitive +109876 indicative +109904 indicative +109913 participle +indicative +infinitive +109920 indicative +109936 infinitive +109938 infinitive +109946 infinitive +109953 indicative +109957 indicative +109963 indicative +indicative +109967 indicative +infinitive +109971 indicative +109973 indicative +109978 participle +indicative +109982 infinitive +109988 indicative +109991 participle +109995 subjunctive +110001 participle +110008 participle +110018 indicative +110023 participle +110025 infinitive +110033 indicative +110049 indicative +110052 indicative +110056 indicative +110061 infinitive +110069 indicative +110080 participle +110083 infinitive +110088 infinitive +110106 optative +110116 optative +110118 optative +110133 infinitive +110161 indicative +110163 indicative +110170 indicative +110175 indicative +110177 infinitive +110179 infinitive +110183 indicative +110185 subjunctive +110188 indicative +110191 indicative +110199 indicative +110206 infinitive +110211 infinitive +110217 infinitive +110232 participle +110237 infinitive +110239 infinitive +110254 indicative +110257 indicative +110260 indicative +110271 participle +indicative +110280 participle +110294 indicative +infinitive +110301 indicative +110304 infinitive +110308 indicative +110320 indicative +110322 infinitive +110325 infinitive +infinitive +110328 infinitive +110332 infinitive +110338 indicative +110340 subjunctive +110348 subjunctive +110352 indicative +110354 infinitive +110357 participle +110360 subjunctive +110367 participle +110371 indicative +110374 indicative +110376 indicative +110382 participle +110386 indicative +110392 indicative +110399 participle +110401 participle +110409 subjunctive +110411 participle +110425 indicative +110433 indicative +110438 participle +110440 participle +110444 indicative +110458 indicative +110460 imperative +110476 indicative +110478 infinitive +110482 indicative +110491 indicative +110493 subjunctive +110501 indicative +110508 participle +110512 subjunctive +110517 indicative +110524 subjunctive +110530 indicative +110537 indicative +110544 subjunctive +110549 subjunctive +110551 subjunctive +110554 participle +110556 indicative +110559 participle +110561 indicative +110565 participle +subjunctive +participle +110578 indicative +110595 participle +110600 subjunctive +110602 subjunctive +110606 subjunctive +110608 imperative +110611 imperative +110617 indicative +110620 indicative +110622 infinitive +110624 participle +110628 participle +110633 participle +110636 infinitive +110645 imperative +110650 indicative +110652 imperative +110655 imperative +110658 imperative +110661 imperative +110664 imperative +110671 subjunctive +110676 imperative +110683 imperative +110685 imperative +110688 imperative +110701 imperative +110704 imperative +110707 imperative +110710 imperative +110715 imperative +110722 optative +110745 optative +110748 participle +110752 indicative +110754 imperative +110757 imperative +110764 indicative +110768 infinitive +110811 indicative +infinitive +110820 indicative +110822 indicative +110827 indicative +110841 infinitive +110862 indicative +110871 infinitive +110880 indicative +110885 infinitive +110887 participle +110893 participle +110912 participle +110916 participle +110921 participle +110929 indicative +110945 subjunctive +infinitive +110952 infinitive +110956 participle +110962 indicative +110971 indicative +110977 subjunctive +110984 subjunctive +110994 subjunctive +111019 indicative +111038 infinitive +111044 infinitive +111059 indicative +111067 subjunctive +111074 subjunctive +111079 subjunctive +111089 participle +111091 participle +111094 participle +111105 infinitive +participle +111109 indicative +111112 indicative +111115 participle +111119 indicative +111124 participle +indicative +111128 infinitive +111140 indicative +111143 participle +111148 subjunctive +111151 indicative +111158 indicative +111165 indicative +111174 indicative +111193 participle +111201 indicative +111204 infinitive +111209 indicative +111217 infinitive +111222 subjunctive +111226 participle +111230 participle +111235 indicative +infinitive +111243 participle +111247 indicative +111264 indicative +111281 imperative +111283 imperative +111287 indicative +111309 participle +111312 participle +111320 optative +111325 optative +111335 imperative +111343 subjunctive +111345 subjunctive +111352 subjunctive +111366 indicative +111370 indicative +111373 indicative +111378 indicative +111385 indicative +111387 indicative +111389 indicative +111393 optative +111410 indicative +111418 infinitive +111424 participle +111431 indicative +111436 indicative +111438 indicative +infinitive +111443 indicative +111449 indicative +111460 participle +111464 infinitive +111470 indicative +111476 subjunctive +111480 infinitive +111485 indicative +111489 indicative +111495 indicative +infinitive +111498 imperative +111500 indicative +111502 participle +111507 participle +111509 participle +111513 indicative +111515 indicative +111523 participle +111527 subjunctive +111532 subjunctive +participle +111538 indicative +111546 imperative +111548 infinitive +111551 subjunctive +111556 imperative +111558 imperative +111567 optative +111588 indicative +111594 indicative +111638 indicative +111640 infinitive +111643 participle +111647 subjunctive +111650 infinitive +111652 infinitive +111659 indicative +111672 indicative +111684 participle +111686 indicative +111689 participle +infinitive +111693 participle +111696 indicative +111700 indicative +111702 indicative +111711 subjunctive +participle +111718 indicative +111742 indicative +111744 participle +111755 indicative +111758 indicative +111760 participle +111770 indicative +participle +111776 participle +111783 indicative +111785 participle +indicative +111790 indicative +111814 indicative +111819 infinitive +111822 indicative +111827 indicative +111832 subjunctive +111841 participle +infinitive +111871 indicative +111875 participle +111880 subjunctive +111886 participle +111892 participle +111897 indicative +111899 indicative +111904 indicative +111908 subjunctive +111910 infinitive +111912 indicative +111915 infinitive +111930 participle +111936 subjunctive +111952 indicative +111955 infinitive +111960 infinitive +111974 participle +111985 indicative +111997 indicative +111999 indicative +112001 indicative +infinitive +112008 participle +112024 infinitive +112039 indicative +112041 participle +112048 imperative +112053 indicative +112055 infinitive +112058 infinitive +112061 infinitive +112067 indicative +112073 indicative +112077 participle +112080 indicative +112082 indicative +112087 subjunctive +112102 indicative +112105 indicative +112107 indicative +112110 infinitive +112132 participle +112134 participle +112146 infinitive +112148 indicative +112152 indicative +112157 participle +112162 subjunctive +112164 indicative +112168 infinitive +112174 subjunctive +112189 participle +112192 participle +112203 imperative +112206 imperative +112208 participle +112219 imperative +112224 participle +112233 participle +112237 indicative +112249 indicative +participle +infinitive +112257 subjunctive +112259 subjunctive +112261 indicative +infinitive +112267 indicative +112270 participle +112279 indicative +112285 indicative +112288 indicative +112291 indicative +112293 indicative +112296 indicative +112299 indicative +112306 indicative +112311 indicative +112315 participle +112324 participle +112328 participle +infinitive +infinitive +112335 indicative +112343 participle +112356 participle +112358 indicative +112365 participle +112368 indicative +112373 participle +112383 indicative +112390 imperative +112392 imperative +112402 indicative +112410 indicative +participle +112418 participle +112429 indicative +112431 indicative +112433 indicative +112436 participle +112438 indicative +112445 imperative +112447 imperative +112452 imperative +112454 imperative +112469 indicative +imperative +112478 imperative +112484 indicative +112495 imperative +112498 imperative +112504 subjunctive +112506 imperative +112511 imperative +112515 participle +indicative +112521 participle +112525 subjunctive +112527 imperative +112542 imperative +112554 indicative +imperative +112560 infinitive +112563 infinitive +112568 indicative +112578 participle +indicative +112583 indicative +112594 participle +participle +indicative +112599 imperative +112602 subjunctive +112612 indicative +112615 indicative +112617 indicative +112621 imperative +112626 participle +112633 participle +112635 indicative +112637 indicative +112641 indicative +112643 participle +indicative +112649 indicative +112653 imperative +112656 subjunctive +112659 infinitive +indicative +participle +112667 indicative +112672 indicative +participle +112685 participle +112688 participle +112690 indicative +112692 infinitive +infinitive +infinitive +112697 infinitive +112699 participle +112705 indicative +112712 indicative +112714 imperative +112718 imperative +112725 subjunctive +112728 participle +112732 imperative +112735 participle +112741 indicative +112745 participle +112747 indicative +112759 imperative +112769 participle +112772 imperative +112778 subjunctive +indicative +112792 subjunctive +112796 participle +112802 imperative +112804 imperative +112809 imperative +112811 imperative +112815 imperative +112829 indicative +participle +112836 indicative +112847 participle +infinitive +112850 indicative +112852 indicative +112862 imperative +112872 subjunctive +112875 participle +112879 imperative +112882 indicative +112885 imperative +112887 indicative +112894 participle +112896 imperative +112898 imperative +112901 indicative +112904 indicative +participle +112918 indicative +112920 participle +112922 participle +112929 indicative +112937 participle +112941 participle +112944 participle +112946 infinitive +112950 indicative +112959 indicative +112965 infinitive +112967 indicative +112969 participle +112974 indicative +112977 participle +infinitive +indicative +112991 indicative +113003 indicative +113007 participle +113009 indicative +113015 indicative +113024 imperative +113026 imperative +113033 imperative +113039 imperative +113045 indicative +113047 indicative +113054 indicative +113059 participle +113066 participle +113073 infinitive +113090 indicative +113099 participle +113103 participle +113106 participle +113110 participle +113112 indicative +113116 infinitive +indicative +113130 imperative +113132 infinitive +113134 infinitive +113142 participle +113148 infinitive +infinitive +113154 infinitive +113156 participle +113162 participle +113164 subjunctive +113172 imperative +participle +113183 participle +113188 indicative +113223 indicative +113227 indicative +113235 indicative +113247 participle +113249 infinitive +participle +113256 subjunctive +participle +113265 indicative +113278 indicative +113286 indicative +113288 infinitive +113294 indicative +113305 indicative +113319 subjunctive +113331 imperative +113338 participle +113341 participle +113356 participle +113365 participle +113376 participle +113380 participle +113389 indicative +113401 indicative +113404 indicative +113406 indicative +113408 indicative +113410 indicative +113412 indicative +113417 infinitive +113422 imperative +113424 participle +113429 indicative +113441 imperative +113446 participle +113449 indicative +113452 indicative +113460 indicative +113464 optative +113474 indicative +113480 indicative +113482 participle +113486 indicative +113489 indicative +optative +113494 infinitive +113506 indicative +113509 indicative +113514 imperative +113524 indicative +113531 imperative +113536 indicative +113539 infinitive +imperative +113547 participle +indicative +113555 participle +subjunctive +113560 subjunctive +113563 indicative +113567 subjunctive +indicative +113570 participle +113575 infinitive +imperative +113578 indicative +113580 indicative +113587 imperative +113590 participle +113602 indicative +113613 indicative +113617 indicative +113624 subjunctive +113638 indicative +113640 indicative +113642 indicative +113644 indicative +113646 indicative +113648 indicative +113651 indicative +113654 indicative +113656 infinitive +113659 indicative +113661 imperative +participle +113667 infinitive +113674 participle +imperative +infinitive +113683 participle +113692 imperative +113697 indicative +113705 indicative +113707 indicative +113715 indicative +participle +113719 infinitive +113721 indicative +113731 indicative +participle +113736 indicative +113739 participle +113742 imperative +113747 participle +113755 indicative +113779 subjunctive +113783 indicative +113787 participle +113795 participle +113800 imperative +113802 imperative +113809 participle +113821 imperative +participle +113824 indicative +113827 indicative +113831 infinitive +113833 infinitive +113841 participle +113843 participle +113846 optative +113855 subjunctive +113861 participle +113870 imperative +113875 indicative +113879 indicative +113899 participle +113904 participle +113911 participle +113914 imperative +113918 indicative +113920 participle +113925 participle +113927 participle +113929 participle +113933 participle +113939 infinitive +participle +113947 indicative +113952 indicative +113956 participle +113965 indicative +113973 indicative +113979 indicative +113982 indicative +114004 indicative +114013 indicative +114018 indicative +114025 participle +infinitive +114031 indicative +114037 indicative +114041 participle +114043 participle +114046 imperative +114049 indicative +114051 indicative +participle +114055 indicative +114060 indicative +114064 participle +114066 infinitive +114093 subjunctive +114102 participle +indicative +114111 participle +infinitive +participle +114124 imperative +114127 imperative +114130 imperative +imperative +imperative +114139 indicative +114144 participle +114146 indicative +114153 indicative +114155 participle +114165 indicative +114170 indicative +114173 imperative +114176 imperative +imperative +114183 imperative +114187 indicative +114194 indicative +114198 indicative +114201 indicative +114204 indicative +114206 indicative +114213 indicative +114232 participle +114236 imperative +infinitive +114244 indicative +participle +114250 indicative +114260 indicative +114265 participle +imperative +114270 indicative +114277 indicative +114283 indicative +114288 participle +imperative +114302 indicative +indicative +114314 imperative +114317 indicative +114328 indicative +114332 indicative +114335 optative +114340 indicative +114342 indicative +114349 subjunctive +114351 subjunctive +114356 indicative +114360 indicative +114369 indicative +114385 imperative +114394 indicative +114399 indicative +114402 participle +imperative +114406 infinitive +indicative +114452 indicative +114460 indicative +114469 indicative +114497 indicative +114503 participle +subjunctive +114506 subjunctive +114513 indicative +114516 indicative +114521 participle +114531 indicative +114534 infinitive +114556 participle +114564 subjunctive +114567 infinitive +114572 participle +114575 participle +infinitive +114578 indicative +114590 infinitive +indicative +114595 indicative +participle +114599 indicative +114603 indicative +114620 indicative +114625 imperative +114629 subjunctive +114634 participle +114640 participle +114649 participle +114655 indicative +114664 infinitive +indicative +114669 indicative +participle +114682 imperative +114684 indicative +114686 participle +114689 infinitive +114693 participle +114710 participle +114713 subjunctive +114716 infinitive +114723 participle +114733 subjunctive +114737 imperative +infinitive +114742 participle +114758 subjunctive +participle +infinitive +114768 infinitive +114772 infinitive +114774 participle +114776 participle +114781 participle +114790 subjunctive +114794 indicative +114802 participle +114805 participle +114817 subjunctive +114822 participle +114839 indicative +114844 subjunctive +114850 subjunctive +114858 imperative +114860 imperative +114862 imperative +114868 imperative +imperative +114873 infinitive +infinitive +114880 infinitive +114882 infinitive +114884 infinitive +114888 participle +114893 indicative +114899 participle +participle +114909 participle +114911 participle +114924 indicative +114932 indicative +114939 indicative +114949 indicative +114960 participle +114965 subjunctive +114976 indicative +114978 infinitive +114980 subjunctive +114983 infinitive +114985 participle +114988 indicative +115004 imperative +115006 indicative +115017 imperative +participle +115022 indicative +115024 indicative +participle +115028 indicative +115034 imperative +infinitive +115042 infinitive +indicative +115050 imperative +115054 subjunctive +115056 imperative +115062 infinitive +115069 subjunctive +115071 indicative +115077 imperative +115079 participle +115129 indicative +115136 participle +115141 participle +115149 indicative +115166 subjunctive +115181 indicative +115191 indicative +115200 participle +infinitive +115204 participle +115209 indicative +115211 participle +115221 indicative +115227 indicative +115244 indicative +115249 indicative +115254 indicative +115258 infinitive +115263 subjunctive +115275 infinitive +indicative +115285 subjunctive +115293 indicative +115299 subjunctive +115323 indicative +115325 imperative +115333 indicative +115335 indicative +115338 imperative +115341 indicative +115346 indicative +115349 subjunctive +115355 indicative +115360 optative +115363 imperative +115369 participle +115373 indicative +115375 participle +115380 indicative +indicative +115385 imperative +115389 indicative +115395 indicative +115397 indicative +115427 participle +115440 indicative +115445 indicative +115451 indicative +115455 participle +115465 participle +115476 participle +indicative +115486 participle +115494 indicative +115499 indicative +115503 indicative +115507 indicative +115512 indicative +115518 indicative +115525 subjunctive +115531 indicative +115533 imperative +115543 indicative +115545 participle +115579 indicative +115582 indicative +115586 indicative +115606 indicative +115612 indicative +115616 indicative +115619 indicative +115622 indicative +115628 indicative +115633 indicative +115638 indicative +115644 indicative +115650 indicative +115652 imperative +115658 subjunctive +115668 indicative +115673 participle +115676 participle +infinitive +115681 indicative +115683 infinitive +115686 participle +115689 subjunctive +115695 participle +115697 indicative +115704 indicative +115709 indicative +participle +115715 participle +infinitive +115722 participle +115725 indicative +participle +115747 indicative +115751 participle +115754 indicative +115756 indicative +115759 participle +115761 indicative +115764 indicative +115770 indicative +115772 indicative +115781 indicative +115784 indicative +115792 infinitive +115797 indicative +115803 indicative +115807 participle +115809 indicative +115815 participle +115825 participle +115831 subjunctive +115834 indicative +115849 participle +115857 infinitive +115861 participle +115864 participle +115872 indicative +115875 infinitive +participle +indicative +115887 indicative +115892 indicative +participle +115898 imperative +115905 indicative +115912 indicative +115919 indicative +115926 subjunctive +115932 participle +115934 indicative +115938 subjunctive +115946 infinitive +115949 indicative +115954 indicative +115958 indicative +115960 indicative +115965 infinitive +115967 subjunctive +115978 infinitive +115986 indicative +115988 participle +indicative +115991 participle +infinitive +115999 imperative +116009 participle +116011 participle +116027 indicative +116032 indicative +116036 participle +116041 indicative +116047 participle +116063 participle +116074 indicative +116087 subjunctive +116090 indicative +116100 subjunctive +116102 subjunctive +116119 indicative +116126 indicative +116133 indicative +116138 indicative +116140 indicative +116146 indicative +116151 indicative +116157 indicative +116162 imperative +116166 indicative +116175 infinitive +116178 participle +116180 imperative +116189 indicative +116192 subjunctive +116203 indicative +116212 subjunctive +116215 infinitive +116221 subjunctive +116223 subjunctive +116233 participle +indicative +116239 participle +116246 indicative +116251 participle +116255 indicative +116261 indicative +116263 infinitive +116271 participle +116273 indicative +116276 indicative +infinitive +116281 subjunctive +116284 participle +116286 infinitive +116291 subjunctive +116295 infinitive +116298 indicative +participle +116304 indicative +116311 participle +116315 participle +116317 indicative +116322 participle +116324 indicative +116326 indicative +116332 indicative +116343 participle +116345 indicative +116352 indicative +116370 indicative +116377 indicative +116379 infinitive +116385 participle +116387 indicative +116391 indicative +116397 participle +116402 indicative +116408 subjunctive +116410 subjunctive +116418 indicative +116424 indicative +116428 indicative +116436 participle +116443 indicative +116455 subjunctive +infinitive +116470 subjunctive +116476 participle +116486 participle +116504 indicative +116513 participle +116523 participle +116526 participle +116534 subjunctive +116538 indicative +116542 participle +infinitive +116548 participle +116556 subjunctive +116564 subjunctive +116568 subjunctive +116577 participle +116580 indicative +116586 subjunctive +116593 participle +infinitive +116596 participle +116598 participle +116602 indicative +116607 indicative +116616 infinitive +116623 indicative +116627 participle +116640 indicative +infinitive +116645 participle +116650 indicative +116654 indicative +116660 indicative +116683 participle +infinitive +116693 participle +116695 participle +116700 participle +116702 indicative +116705 indicative +116709 participle +indicative +116713 participle +116718 participle +116735 infinitive +116738 indicative +116743 participle +infinitive +116750 indicative +116753 infinitive +116765 indicative +participle +116775 participle +116782 indicative +116784 indicative +116795 participle +participle +116804 participle +116814 subjunctive +116817 participle +116839 indicative +116841 subjunctive +116848 participle +116850 participle +116859 participle +116861 participle +116867 participle +116870 participle +116872 infinitive +116875 participle +116882 participle +116886 participle +116890 participle +116894 participle +116901 indicative +indicative +116908 participle +116923 indicative +116929 participle +116934 indicative +116940 infinitive +116948 indicative +116953 participle +116955 participle +116959 indicative +116965 infinitive +116976 subjunctive +116984 participle +116990 participle +116997 infinitive +indicative +indicative +117002 participle +117005 participle +indicative +117009 participle +indicative +117014 participle +indicative +117023 indicative +117036 participle +infinitive +117049 indicative +117059 infinitive +117063 subjunctive +117065 participle +infinitive +117068 participle +117071 indicative +117081 participle +117092 indicative +117098 participle +117114 participle +117116 participle +117123 participle +117130 indicative +117134 participle +117143 indicative +117155 participle +117157 participle +117162 indicative +117168 imperative +117176 indicative +117189 participle +117191 indicative +infinitive +117199 indicative +117204 participle +117212 participle +117215 indicative +117219 participle +117222 indicative +117232 indicative +117237 participle +117239 indicative +117242 participle +117244 indicative +117248 infinitive +117255 participle +indicative +117264 indicative +117266 indicative +117277 indicative +117283 indicative +117291 infinitive +117300 infinitive +117302 participle +117310 indicative +117314 indicative +117318 indicative +117322 indicative +117330 indicative +117341 indicative +117346 indicative +117352 indicative +117356 indicative +117368 indicative +117382 participle +117384 indicative +117393 indicative +117402 indicative +117416 indicative +participle +117425 participle +117428 indicative +117432 indicative +117444 indicative +117450 indicative +participle +117456 infinitive +infinitive +117462 infinitive +117468 indicative +117473 indicative +infinitive +117479 participle +117485 participle +117488 infinitive +117494 indicative +117500 participle +117508 participle +117511 indicative +117524 infinitive +117531 indicative +117534 participle +117539 indicative +117541 participle +117556 participle +117561 participle +indicative +117566 indicative +117585 indicative +117595 infinitive +117600 indicative +117603 infinitive +117608 subjunctive +117612 indicative +117617 indicative +117619 participle +117621 participle +117632 indicative +117634 indicative +117636 participle +infinitive +117641 indicative +imperative +indicative +117649 participle +117658 indicative +117661 indicative +117669 indicative +117675 indicative +117681 indicative +117683 participle +117685 indicative +imperative +117688 indicative +indicative +117692 indicative +117709 indicative +117715 participle +117720 infinitive +117728 indicative +117734 indicative +117736 indicative +117743 indicative +117751 indicative +117753 participle +117764 indicative +117767 indicative +117773 indicative +117780 subjunctive +117790 participle +imperative +117796 indicative +117805 indicative +117815 subjunctive +117819 infinitive +117821 indicative +117826 participle +117828 participle +117833 indicative +117844 indicative +117862 indicative +117871 participle +117874 participle +117882 participle +117889 participle +117897 participle +117908 participle +117914 indicative +117916 infinitive +117922 participle +117930 indicative +117935 participle +117950 indicative +117959 participle +117965 infinitive +117974 participle +117982 participle +117989 indicative +117991 participle +117994 infinitive +117996 participle +118010 participle +118012 participle +118016 participle +118027 indicative +118043 indicative +118050 participle +118061 participle +118063 participle +indicative +118081 indicative +118085 indicative +118094 infinitive +118096 participle +118103 indicative +118106 participle +118115 subjunctive +118117 participle +118127 infinitive +118130 participle +118139 indicative +118141 indicative +118143 participle +118150 indicative +118152 participle +118163 participle +118186 indicative +participle +118194 indicative +118212 indicative +118218 indicative +118226 indicative +118238 infinitive +118248 indicative +118263 infinitive +118273 subjunctive +118278 indicative +118288 indicative +118291 infinitive +118310 indicative +118314 indicative +118318 infinitive +118328 participle +118333 infinitive +118338 indicative +118341 participle +118347 participle +118350 participle +118364 indicative +118369 indicative +118371 participle +infinitive +118376 indicative +participle +118381 infinitive +118386 participle +118388 participle +118402 infinitive +118405 participle +118409 indicative +118414 indicative +118417 indicative +118424 indicative +118426 indicative +118429 imperative +118433 indicative +118436 indicative +118438 infinitive +118443 participle +118454 indicative +118456 indicative +118460 indicative +118462 indicative +imperative +indicative +118466 infinitive +118470 indicative +118476 subjunctive +118480 participle +indicative +118494 indicative +118497 participle +118500 participle +118506 indicative +infinitive +118515 participle +118519 indicative +118526 participle +118528 subjunctive +118539 indicative +118544 participle +118546 indicative +118556 infinitive +118561 indicative +118568 indicative +118570 participle +118581 indicative +118593 indicative +118605 participle +118617 indicative +118622 participle +118627 indicative +118639 subjunctive +118646 participle +118653 participle +118658 subjunctive +118667 participle +118669 subjunctive +118678 participle +118686 participle +118691 indicative +participle +118697 participle +118701 infinitive +118709 indicative +118719 participle +infinitive +118724 participle +118734 indicative +118736 indicative +118739 indicative +118745 participle +118748 participle +118755 indicative +118761 participle +118763 indicative +118765 participle +118769 indicative +118772 indicative +118779 infinitive +118783 participle +118785 imperative +118791 participle +indicative +118802 participle +118808 participle +participle +118814 indicative +118819 participle +118823 indicative +participle +infinitive +118830 participle +118833 subjunctive +118838 indicative +118844 indicative +118850 participle +subjunctive +118860 participle +indicative +118864 indicative +118871 indicative +118874 subjunctive +118876 indicative +118884 indicative +118895 indicative +118897 participle +118902 participle +118906 indicative +118910 indicative +infinitive +118920 participle +118922 participle +infinitive +118930 indicative +118935 indicative +infinitive +118938 participle +118948 participle +118950 indicative +118953 indicative +118956 infinitive +118960 indicative +118962 indicative +118970 indicative +infinitive +118978 infinitive +118980 indicative +infinitive +118983 participle +118987 indicative +118990 participle +118993 indicative +118996 participle +119000 participle +participle +indicative +119011 indicative +119020 indicative +119022 participle +119024 indicative +infinitive +119028 indicative +119030 infinitive +119034 indicative +119036 participle +119038 indicative +119040 indicative +119049 participle +119061 indicative +119065 participle +119081 indicative +119088 indicative +119090 participle +119095 participle +indicative +119120 indicative +119124 participle +119130 participle +119132 participle +119134 participle +119139 indicative +119146 participle +indicative +119150 indicative +119154 indicative +119158 indicative +119160 indicative +119162 infinitive +119165 indicative +119168 indicative +119172 indicative +119178 infinitive +119180 indicative +119184 indicative +119188 participle +119192 indicative +119196 participle +119199 indicative +119203 indicative +119206 participle +119211 infinitive +119220 indicative +119224 participle +indicative +119234 participle +119239 indicative +119241 indicative +119250 participle +119257 indicative +119263 indicative +119266 participle +indicative +119274 indicative +119280 indicative +119288 participle +indicative +infinitive +119294 participle +119296 infinitive +119303 infinitive +119308 participle +119317 indicative +119322 indicative +119325 participle +119334 participle +indicative +119337 indicative +119348 participle +119351 subjunctive +119354 indicative +119364 participle +119367 indicative +119372 indicative +participle +119382 indicative +119384 participle +participle +119393 subjunctive +119395 indicative +119399 participle +119415 indicative +119417 indicative +119419 indicative +119421 indicative +119424 indicative +119427 indicative +119430 indicative +119433 indicative +119439 indicative +indicative +119449 indicative +119451 participle +119457 subjunctive +119464 indicative +119470 indicative +indicative +indicative +119476 indicative +indicative +119483 participle +participle +participle +participle +119500 indicative +119507 participle +119512 indicative +119521 participle +119526 subjunctive +119530 participle +119532 participle +119536 participle +119545 subjunctive +119547 participle +119550 participle +119562 participle +119565 indicative +119568 participle +119576 indicative +119578 imperative +119580 participle +119590 subjunctive +119594 participle +119598 indicative +119602 participle +119604 indicative +119611 indicative +119615 imperative +119619 imperative +119622 participle +119625 indicative +119627 indicative +119629 indicative +119633 indicative +119636 indicative +119640 indicative +119648 indicative +119652 indicative +119657 indicative +119664 indicative +119672 indicative +119675 indicative +119679 indicative +119685 indicative +119694 participle +119696 indicative +119701 participle +119704 infinitive +119714 participle +indicative +119718 infinitive +119729 participle +indicative +119733 participle +119737 participle +119739 imperative +119743 imperative +119751 subjunctive +119753 subjunctive +119755 imperative +119765 indicative +119768 participle +119771 participle +119782 participle +subjunctive +119787 subjunctive +119801 indicative +119806 indicative +119810 participle +infinitive +119814 indicative +119819 indicative +119823 participle +119827 indicative +participle +119830 participle +119846 participle +indicative +119849 infinitive +119854 indicative +119856 participle +119859 subjunctive +119862 indicative +119866 indicative +119868 participle +119870 indicative +indicative +119876 indicative +119882 participle +119892 participle +119902 participle +119912 participle +119916 imperative +119918 subjunctive +119920 participle +119924 indicative +119926 participle +119930 participle +119938 participle +119944 indicative +119948 indicative +participle +119953 indicative +119966 indicative +119969 participle +119972 participle +119974 subjunctive +119977 participle +119981 participle +subjunctive +119986 subjunctive +120000 participle +120003 imperative +120007 imperative +120011 indicative +120013 participle +120015 imperative +120019 participle +120021 participle +120025 participle +120041 indicative +120047 participle +120049 participle +120052 indicative +120056 subjunctive +120061 subjunctive +120063 participle +120065 infinitive +120070 indicative +120072 indicative +120075 imperative +120077 participle +120080 indicative +120091 participle +imperative +120111 imperative +120115 infinitive +120123 indicative +120125 participle +indicative +120130 infinitive +120132 indicative +120137 participle +120139 indicative +120155 indicative +120163 subjunctive +120173 indicative +120175 subjunctive +120184 participle +120187 indicative +120189 participle +120193 participle +indicative +120198 subjunctive +120206 indicative +120209 participle +120219 imperative +120223 indicative +120226 imperative +120228 participle +120231 imperative +120234 indicative +120241 participle +120246 subjunctive +120249 participle +120254 imperative +120258 indicative +120262 indicative +120266 infinitive +participle +120270 indicative +120272 infinitive +120275 subjunctive +120283 participle +120300 optative +120307 infinitive +120311 participle +120331 indicative +120334 imperative +120343 indicative +120345 indicative +120350 participle +120355 subjunctive +indicative +120358 imperative +120361 participle +120367 indicative +120392 infinitive +120397 imperative +120401 subjunctive +participle +120409 indicative +120416 imperative +120418 subjunctive +120424 participle +120429 indicative +120431 imperative +120434 participle +120439 participle +120442 indicative +120445 imperative +120449 participle +120452 participle +indicative +120456 participle +120458 participle +120461 imperative +120466 indicative +120480 imperative +120500 indicative +120502 indicative +120509 indicative +120516 indicative +120523 indicative +120532 indicative +120536 indicative +120540 participle +indicative +120547 indicative +120549 participle +120552 participle +imperative +120557 indicative +120562 indicative +120565 indicative +120570 indicative +120575 participle +120577 participle +120581 participle +indicative +120587 participle +indicative +120591 imperative +120603 indicative +participle +120613 indicative +120618 participle +indicative +120625 infinitive +120632 imperative +120637 imperative +120643 infinitive +120647 infinitive +120657 indicative +120659 participle +120667 imperative +120672 participle +infinitive +120678 imperative +120685 participle +120692 indicative +120697 indicative +120699 participle +120708 indicative +120711 indicative +120714 indicative +120716 indicative +120719 participle +120727 participle +participle +120741 indicative +120744 indicative +120746 infinitive +120748 participle +120752 participle +120768 indicative +120770 infinitive +120780 infinitive +120789 imperative +120801 subjunctive +120811 subjunctive +120818 subjunctive +120821 participle +120827 subjunctive +120829 imperative +120835 subjunctive +120837 imperative +120840 imperative +120846 indicative +120850 indicative +120854 imperative +120861 indicative +120874 indicative +120876 participle +120880 indicative +120886 indicative +120890 indicative +120896 indicative +120901 participle +120908 indicative +120912 indicative +120919 indicative +120922 indicative +120924 indicative +participle +120936 subjunctive +120938 subjunctive +120941 indicative +120946 participle +120948 subjunctive +indicative +120952 subjunctive +120956 indicative +120958 indicative +indicative +120963 imperative +120966 imperative +120971 infinitive +participle +120979 participle +120981 indicative +120991 infinitive +subjunctive +120997 subjunctive +120999 indicative +121002 infinitive +121009 subjunctive +121011 participle +121016 subjunctive +121021 imperative +121024 imperative +121026 imperative +121029 subjunctive +121044 subjunctive +121047 indicative +121051 indicative +121055 indicative +121058 indicative +imperative +121069 indicative +121077 indicative +121080 indicative +121084 indicative +121088 indicative +121090 indicative +121095 indicative +infinitive +121104 indicative +121112 indicative +participle +121121 indicative +121125 indicative +121135 indicative +121137 indicative +121141 participle +121143 indicative +121148 indicative +121155 indicative +indicative +121160 indicative +121176 indicative +participle +121183 participle +121191 indicative +121199 indicative +121205 imperative +participle +121210 indicative +121213 indicative +121220 indicative +121225 infinitive +121239 indicative +121242 infinitive +121250 indicative +imperative +121256 participle +121261 participle +indicative +121270 participle +indicative +121278 indicative +121281 indicative +imperative +121287 indicative +121298 indicative +121304 participle +121309 participle +121315 participle +121330 indicative +121332 indicative +121340 infinitive +indicative +121351 indicative +121359 indicative +121366 participle +121371 indicative +121378 indicative +121381 infinitive +121389 indicative +121398 indicative +121401 infinitive +121407 infinitive +121416 imperative +121429 indicative +121439 imperative +121441 imperative +121446 indicative +121451 participle +121474 indicative +121491 indicative +121493 participle +121509 participle +121514 indicative +121517 indicative +indicative +121520 indicative +121523 indicative +infinitive +indicative +121527 indicative +121529 indicative +121533 infinitive +121535 indicative +121538 indicative +121541 indicative +121547 subjunctive +121550 indicative +121559 indicative +121563 subjunctive +infinitive +121571 indicative +121573 indicative +121578 indicative +121581 indicative +121585 indicative +121591 indicative +121593 indicative +121597 indicative +121600 indicative +121603 imperative +121607 imperative +121611 indicative +121614 imperative +121618 indicative +121620 imperative +121624 imperative +121627 imperative +121629 imperative +121631 imperative +121637 imperative +121643 imperative +121647 indicative +121650 imperative +121654 participle +121657 participle +121661 indicative +121664 indicative +121669 indicative +indicative +121677 indicative +121682 participle +infinitive +121685 infinitive +121689 indicative +121691 participle +121694 imperative +121697 participle +121701 indicative +121707 indicative +121711 indicative +121713 indicative +121716 indicative +121724 indicative +121729 participle +121732 participle +121735 infinitive +121740 subjunctive +121742 indicative +121744 indicative +121750 indicative +121759 indicative +121761 participle +121763 infinitive +121766 participle +121769 indicative +imperative +121774 imperative +participle +121781 participle +121785 indicative +121791 indicative +121798 indicative +121806 indicative +121808 indicative +121814 indicative +121818 imperative +121824 participle +121829 participle +121832 indicative +121837 participle +121843 indicative +indicative +121849 indicative +indicative +121857 indicative +indicative +121862 indicative +121866 imperative +121872 imperative +121875 indicative +121881 participle +121885 subjunctive +121889 imperative +121892 imperative +121901 indicative +121904 imperative +121909 subjunctive +imperative +121916 indicative +121918 imperative +121928 indicative +121933 imperative +indicative +121936 participle +121940 indicative +121945 indicative +121947 indicative +121959 imperative +121971 imperative +121984 subjunctive +indicative +121989 imperative +indicative +121992 imperative +indicative +121997 imperative +122003 imperative +122006 participle +122018 indicative +122020 participle +122022 indicative +122028 subjunctive +participle +indicative +122033 imperative +122038 imperative +122042 subjunctive +122044 indicative +122047 participle +122049 indicative +122055 indicative +122058 infinitive +122061 indicative +122072 indicative +122077 indicative +122081 indicative +122091 subjunctive +122096 subjunctive +122099 imperative +122102 participle +122108 indicative +122114 indicative +122148 optative +122165 participle +122169 participle +122183 participle +122192 participle +122198 infinitive +122204 indicative +122208 participle +participle +122222 participle +122226 participle +subjunctive +122240 participle +indicative +122247 participle +participle +imperative +122253 participle +participle +122264 indicative +122266 indicative +122274 participle +participle +122281 indicative +122287 participle +122298 indicative +122304 indicative +122308 indicative +122312 participle +122317 participle +122322 infinitive +indicative +122326 participle +122332 participle +122334 imperative +122337 participle +122348 participle +122359 participle +122368 imperative +122370 indicative +122372 indicative +122379 indicative +122382 participle +122394 imperative +participle +122402 indicative +122419 participle +122424 participle +122438 participle +122445 participle +122452 infinitive +122458 participle +122470 imperative +122472 participle +122482 participle +122484 participle +122497 indicative +122503 indicative +122508 indicative +122514 indicative +122518 participle +122522 participle +122542 imperative +122546 subjunctive +122550 indicative +122555 participle +122559 participle +122563 participle +122573 participle +indicative +122580 infinitive +122589 indicative +122592 imperative +indicative +122602 participle +122607 subjunctive +122613 participle +122615 participle +122618 indicative +122620 participle +122622 indicative +122633 indicative +122636 participle +122640 indicative +122653 subjunctive +122660 participle +122676 participle +122679 participle +122681 indicative +122686 infinitive +122691 indicative +122701 participle +122706 indicative +122714 participle +subjunctive +122721 imperative +122731 participle +122737 participle +122746 indicative +122751 participle +infinitive +122763 participle +122774 imperative +122777 imperative +122780 imperative +122783 imperative +122786 participle +122809 indicative +122812 participle +122818 participle +122820 participle +indicative +122824 participle +122826 participle +indicative +122835 indicative +122839 indicative +122843 participle +122846 subjunctive +122853 indicative +122855 indicative +122862 participle +122864 indicative +participle +122867 indicative +122869 indicative +122871 participle +122878 indicative +122889 participle +122892 subjunctive +122896 indicative +122898 indicative +122901 participle +122903 indicative +122915 participle +122923 indicative +122933 indicative +participle +122942 imperative +122970 indicative +122983 participle +122986 indicative +122988 participle +122994 indicative +122999 participle +123002 indicative +participle +123006 participle +123012 participle +123020 participle +123030 infinitive +123044 participle +123054 participle +123058 indicative +123061 subjunctive +123064 participle +123066 infinitive +123068 infinitive +123071 imperative +123080 infinitive +123083 imperative +123087 imperative +123089 imperative +123092 imperative +123109 participle +123114 participle +123120 subjunctive +123124 optative +123133 imperative +123135 subjunctive +123140 imperative +123151 participle +123166 participle +123170 indicative +subjunctive +123173 participle +123182 participle +123184 optative +123189 infinitive +123191 participle +123198 indicative +123204 subjunctive +123208 participle +123211 participle +123215 participle +indicative +123222 participle +123225 indicative +123233 participle +123239 indicative +123242 indicative +123249 indicative +123267 indicative +123271 participle +123274 participle +123283 participle +123290 imperative +123304 infinitive +123307 participle +123309 indicative +123314 participle +123320 infinitive +participle +123333 indicative +123335 participle +123343 participle +123345 indicative +123349 participle +infinitive +participle +123359 indicative +123362 subjunctive +123367 subjunctive +123375 indicative +123377 imperative +123379 imperative +123389 participle +123392 indicative +123402 indicative +123407 participle +123416 indicative +123422 indicative +123427 indicative +123433 subjunctive +123440 indicative +123454 imperative +123462 participle +123466 participle +123469 indicative +123474 imperative +123483 subjunctive +participle +123486 indicative +123502 indicative +123507 imperative +123522 imperative +123524 imperative +123535 infinitive +123552 participle +123562 indicative +123568 indicative +123572 participle +123580 imperative +123590 indicative +123602 participle +infinitive +123606 imperative +123625 participle +123629 participle +123634 participle +123637 indicative +123645 imperative +123652 imperative +123657 indicative +123660 indicative +123663 imperative +123672 subjunctive +123679 participle +123684 indicative +123687 imperative +imperative +123695 participle +indicative +participle +123699 infinitive +123701 imperative +123705 participle +123716 infinitive +123723 participle +123733 participle +123735 indicative +indicative +indicative +indicative +123755 indicative +123758 indicative +participle +123761 participle +123763 infinitive +123770 subjunctive +indicative +123782 imperative +123802 participle +123818 optative +123841 participle +123846 participle +123860 indicative +123864 subjunctive +123868 participle +123882 participle +imperative +123929 participle +123931 participle +123936 indicative +123948 indicative +123951 indicative +participle +participle +123964 imperative +123971 infinitive +123974 participle +123977 subjunctive +123982 indicative +123998 indicative +124001 infinitive +124005 participle +124007 participle +124010 participle +124014 indicative +124017 indicative +124022 infinitive +124026 participle +124029 indicative +124042 indicative +124045 indicative +124048 infinitive +124057 infinitive +124060 participle +124062 participle +indicative +124075 participle +124081 participle +124090 participle +124103 indicative +124107 indicative +124113 indicative +124116 participle +124119 participle +124125 indicative +124131 indicative +124133 participle +124136 participle +124143 subjunctive +124146 subjunctive +124153 participle +124161 indicative +124166 indicative +124173 participle +indicative +124179 indicative +124189 indicative +124192 indicative +124197 participle +124200 participle +participle +124207 indicative +124217 indicative +124224 indicative +124230 indicative +124236 indicative +124242 participle +124244 indicative +124248 participle +indicative +124252 participle +124257 indicative +124263 indicative +124267 participle +124273 participle +124275 indicative +124277 participle +infinitive +participle +124283 participle +124291 indicative +124298 participle +124308 indicative +indicative +124314 infinitive +124320 participle +infinitive +124330 participle +124333 participle +124337 participle +124339 indicative +124346 participle +124348 indicative +124360 participle +124368 indicative +participle +124375 indicative +participle +124380 participle +124388 participle +124393 participle +124395 participle +124402 participle +124406 participle +124408 participle +124411 participle +124414 indicative +participle +124425 indicative +124430 indicative +124436 participle +indicative +124443 indicative +124450 participle +124456 indicative +124460 participle +indicative +124468 participle +124472 participle +124475 participle +124477 participle +124484 indicative +124486 indicative +124489 participle +124505 participle +indicative +indicative +124516 indicative +124519 infinitive +124525 participle +infinitive +124529 participle +124533 indicative +124540 participle +124547 participle +124557 indicative +124560 indicative +124567 infinitive +124569 participle +124587 participle +124589 indicative +124602 participle +124604 participle +124606 indicative +124617 indicative +124620 indicative +124625 indicative +124628 participle +124631 indicative +124640 participle +124651 participle +indicative +124663 participle +indicative +124666 participle +124680 imperative +124697 indicative +124704 indicative +124706 indicative +124709 participle +124712 infinitive +124717 infinitive +124719 indicative +124729 indicative +124732 participle +indicative +124741 indicative +124745 participle +indicative +124748 infinitive +124755 participle +124757 participle +124767 participle +indicative +124771 participle +indicative +124783 indicative +124787 indicative +124791 participle +imperative +124797 infinitive +124807 imperative +124817 participle +124820 indicative +124827 participle +124834 indicative +124842 indicative +124856 participle +imperative +124864 participle +subjunctive +124870 imperative +124892 indicative +124896 indicative +124898 indicative +124903 indicative +124908 indicative +124917 indicative +124919 indicative +124921 indicative +124923 indicative +124930 indicative +124935 indicative +124938 indicative +124940 indicative +indicative +124948 subjunctive +124969 indicative +124975 subjunctive +participle +124978 indicative +124983 indicative +124987 indicative +124993 indicative +124998 indicative +125002 subjunctive +125005 indicative +125012 subjunctive +indicative +125016 indicative +125024 subjunctive +125027 indicative +125032 indicative +125042 indicative +125048 subjunctive +125052 indicative +125054 indicative +125059 indicative +125063 subjunctive +125067 indicative +125072 subjunctive +125077 subjunctive +125083 subjunctive +125086 indicative +125088 indicative +125095 indicative +125101 indicative +125105 subjunctive +125109 subjunctive +indicative +125121 indicative +125141 indicative +125143 indicative +125149 subjunctive +125151 participle +125153 indicative +125160 participle +125162 indicative +125169 indicative +125173 subjunctive +125184 indicative +125187 indicative +125191 indicative +125193 participle +125196 infinitive +125199 indicative +indicative +125204 infinitive +125206 indicative +125215 indicative +125222 indicative +125226 indicative +125230 indicative +125233 indicative +125243 indicative +125250 indicative +125252 participle +125256 infinitive +125261 participle +125265 indicative +125269 participle +125276 indicative +125282 indicative +125285 participle +125292 indicative +125297 indicative +125300 indicative +125302 indicative +125306 indicative +125311 indicative +125314 indicative +125323 indicative +125326 indicative +125331 indicative +125334 indicative +125338 indicative +125341 indicative +125345 indicative +125348 indicative +125353 indicative +125357 indicative +125365 indicative +125367 indicative +125371 imperative +125381 subjunctive +125385 indicative +125413 indicative +125421 indicative +125423 indicative +125432 participle +125437 indicative +125444 indicative +125447 indicative +125450 indicative +125455 indicative +125457 indicative +125461 indicative +125464 indicative +125467 indicative +125474 indicative +125476 indicative +125481 subjunctive +125484 indicative +125491 indicative +125496 indicative +125498 indicative +125503 indicative +125508 indicative +125518 indicative +125520 indicative +125526 participle +125530 indicative +125534 indicative +125538 participle +125546 participle +125552 indicative +125554 participle +125560 indicative +125563 indicative +125568 imperative +125572 subjunctive +125576 indicative +125586 indicative +125589 indicative +125594 indicative +125601 indicative +125605 participle +125612 indicative +125615 indicative +125621 indicative +125624 subjunctive +125631 indicative +125637 indicative +125640 indicative +125644 indicative +125646 indicative +125652 imperative +125657 subjunctive +subjunctive +125662 subjunctive +125670 subjunctive +125673 indicative +indicative +125679 participle +125684 indicative +imperative +125688 indicative +125695 subjunctive +125697 indicative +125703 indicative +125707 indicative +125713 indicative +125716 indicative +125718 indicative +indicative +125722 subjunctive +125725 indicative +125727 indicative +125730 indicative +125734 participle +125740 indicative +125745 indicative +125748 participle +125754 indicative +125758 indicative +125762 indicative +125765 indicative +125769 subjunctive +125775 indicative +125780 participle +125782 indicative +125785 participle +125787 indicative +125790 indicative +125794 imperative +125797 participle +125801 indicative +125805 indicative +125807 participle +125813 indicative +125819 indicative +125822 indicative +125828 subjunctive +125835 participle +125841 indicative +125847 indicative +125850 indicative +infinitive +125856 indicative +125860 indicative +125873 participle +125876 indicative +125883 participle +125889 indicative +125893 indicative +125897 subjunctive +125905 indicative +125907 indicative +125914 indicative +125921 indicative +125930 imperative +125932 indicative +125937 indicative +125939 indicative +125947 indicative +125952 participle +indicative +125959 participle +125964 indicative +125966 indicative +125971 indicative +125976 participle +125979 indicative +125989 indicative +125992 indicative +125998 infinitive +126002 subjunctive +126008 subjunctive +126013 participle +126015 subjunctive +126026 indicative +126030 subjunctive +126043 indicative +126048 indicative +126052 indicative +126058 subjunctive +126064 indicative +126071 indicative +126078 subjunctive +126080 indicative +126087 subjunctive +indicative +126095 indicative +126101 indicative +126104 indicative +126109 subjunctive +126118 subjunctive +126121 indicative +126126 participle +126132 indicative +126140 indicative +126142 indicative +126150 indicative +126155 imperative +126157 imperative +126164 indicative +126168 indicative +126174 indicative +126182 indicative +126187 participle +126191 indicative +126197 indicative +126204 indicative +126207 indicative +126212 indicative +126214 indicative +126220 indicative +126227 indicative +126229 indicative +126233 indicative +126246 indicative +126252 indicative +126257 indicative +126262 indicative +126264 participle +126267 indicative +126271 indicative +126276 indicative +126280 indicative +126291 subjunctive +126299 indicative +126303 participle +126307 indicative +126309 indicative +126314 participle +126316 indicative +126323 indicative +126326 indicative +126339 indicative +126346 subjunctive +126351 indicative +126357 indicative +126363 indicative +126366 indicative +126380 indicative +126384 indicative +126386 infinitive +126390 indicative +126392 subjunctive +126398 indicative +126405 participle +indicative +126409 indicative +126413 indicative +126423 indicative +126427 indicative +126429 indicative +126433 indicative +126441 subjunctive +126444 indicative +126453 indicative +126461 indicative +126463 indicative +126467 indicative +126475 indicative +126478 participle +126485 indicative +126491 indicative +126494 indicative +126501 subjunctive +126510 indicative +126513 indicative +126520 indicative +126529 indicative +126536 indicative +126539 participle +126541 indicative +126546 indicative +126550 indicative +126554 subjunctive +126556 indicative +126563 subjunctive +126565 indicative +126569 participle +126574 indicative +126576 indicative +126581 indicative +infinitive +126587 indicative +126592 participle +126595 subjunctive +126602 participle +126605 indicative +126611 indicative +126615 participle +126617 participle +indicative +126620 participle +126625 indicative +126627 indicative +126635 subjunctive +126640 subjunctive +126643 indicative +126652 subjunctive +126659 indicative +126663 participle +126667 indicative +126672 indicative +126676 participle +126683 indicative +126685 participle +126691 participle +126694 indicative +126700 indicative +126702 participle +126725 indicative +126727 participle +126731 indicative +126736 indicative +126738 participle +126753 indicative +126759 indicative +126765 indicative +126768 indicative +126774 indicative +126780 participle +126786 indicative +126793 participle +126797 indicative +126801 indicative +126806 indicative +126815 indicative +126821 indicative +126833 indicative +126835 participle +126838 indicative +126843 participle +126851 indicative +126853 indicative +126856 participle +126865 subjunctive +126869 indicative +126872 indicative +126876 indicative +126882 subjunctive +126887 indicative +126891 indicative +126893 indicative +126897 subjunctive +indicative +126900 indicative +126904 indicative +126909 subjunctive +126913 participle +126918 indicative +126920 indicative +126924 participle +126928 indicative +126935 indicative +126937 subjunctive +126941 indicative +126943 indicative +126948 indicative +126952 participle +126957 indicative +126960 participle +126964 indicative +126970 indicative +126972 indicative +126977 indicative +126985 indicative +126987 indicative +126993 indicative +126995 indicative +126999 indicative +127003 indicative +127014 indicative +127022 imperative +127036 indicative +127048 participle +127055 participle +127061 indicative +127065 indicative +127086 indicative +127089 indicative +127094 participle +127099 indicative +127106 indicative +127108 participle +127116 indicative +127120 subjunctive +127124 indicative +127128 subjunctive +127136 indicative +127138 indicative +127144 subjunctive +127146 indicative +127154 participle +127157 participle +127161 indicative +127167 imperative +127171 subjunctive +127173 indicative +127177 subjunctive +127180 participle +127183 participle +127191 indicative +127193 participle +127204 indicative +127207 indicative +127215 indicative +127217 imperative +127222 infinitive +127225 imperative +127228 participle +127230 infinitive +indicative +127237 participle +127240 infinitive +127242 indicative +127248 indicative +infinitive +127256 infinitive +127261 participle +subjunctive +indicative +127279 indicative +127285 indicative +127287 infinitive +127289 infinitive +127291 indicative +127296 indicative +127298 participle +127301 participle +127309 indicative +127314 indicative +127316 subjunctive +127323 participle +127326 indicative +127329 subjunctive +127337 indicative +127345 indicative +participle +127354 indicative +127356 participle +127362 indicative +infinitive +127368 subjunctive +127371 indicative +127377 participle +127381 indicative +127386 subjunctive +indicative +127392 indicative +127395 participle +127399 participle +127404 indicative +127409 participle +indicative +127415 indicative +127418 imperative +127425 participle +127429 indicative +127431 participle +127433 indicative +127437 indicative +127448 indicative +127450 indicative +127456 indicative +indicative +127459 infinitive +127463 indicative +127469 infinitive +127471 indicative +127474 infinitive +127479 indicative +127482 indicative +127486 imperative +127502 participle +127506 participle +127514 optative +127518 participle +infinitive +127527 indicative +infinitive +127530 participle +infinitive +127534 participle +127539 indicative +127544 participle +127555 participle +127567 participle +127569 indicative +participle +127573 infinitive +127581 participle +127586 participle +indicative +127592 participle +127597 participle +127609 indicative +127623 participle +127625 participle +127629 indicative +127634 participle +127639 participle +127642 indicative +127645 indicative +127648 indicative +127653 participle +indicative +127664 indicative +127667 infinitive +127669 indicative +optative +127678 indicative +indicative +127687 indicative +127690 indicative +127698 indicative +127705 indicative +127711 indicative +127713 indicative +127720 participle +127723 participle +127728 participle +127733 participle +participle +127738 participle +127751 indicative +127753 indicative +127760 participle +imperative +indicative +127768 infinitive +127773 infinitive +127784 indicative +127791 indicative +127797 indicative +127804 participle +127809 indicative +127811 participle +127818 imperative +127822 participle +127832 indicative +127838 indicative +127840 participle +127848 indicative +127850 participle +127854 participle +127858 participle +127867 participle +127872 imperative +participle +127887 participle +imperative +imperative +127892 participle +127895 imperative +127898 participle +127904 participle +127908 participle +infinitive +127913 infinitive +127952 indicative +127956 infinitive +127961 infinitive +127964 indicative +127966 indicative +participle +127977 indicative +127988 indicative +127991 participle +127994 participle +128000 participle +128004 participle +128023 participle +128026 indicative +128029 participle +128060 participle +128063 participle +128074 indicative +128095 imperative +indicative +128101 indicative +128108 indicative +128110 indicative +128121 indicative +128127 indicative +128132 participle +128135 indicative +128138 participle +128157 indicative +128162 participle +128173 indicative +128181 indicative +128188 participle +128190 indicative +imperative +128195 imperative +128220 indicative +infinitive +128225 indicative +128229 participle +indicative +128242 participle +128245 participle +128280 participle +128290 participle +128306 participle +128314 indicative +128321 indicative +128323 indicative +128331 indicative +128337 participle +128339 imperative +128341 indicative +128349 participle +128351 indicative +128354 imperative +participle +indicative +128363 indicative +128372 imperative +128374 indicative +128377 indicative +128380 indicative +infinitive +128390 indicative +128408 indicative +128416 indicative +128423 imperative +128425 indicative +128427 participle +128436 participle +128444 indicative +128458 indicative +infinitive +128462 indicative +128464 participle +128469 indicative +128471 indicative +128476 indicative +128478 indicative +128485 indicative +128487 indicative +128496 indicative +128498 imperative +128500 indicative +128502 imperative +128507 imperative +128511 indicative +128514 indicative +128524 subjunctive +128527 indicative +128529 indicative +128536 indicative +128538 participle +128540 imperative +128544 indicative +128548 participle +indicative +128551 infinitive +128558 indicative +128571 imperative +128573 indicative +128580 indicative +128583 indicative +indicative +128593 indicative +128599 participle +128601 infinitive +128605 indicative +128611 imperative +128613 infinitive +indicative +imperative +indicative +128619 infinitive +128625 subjunctive +128627 indicative +128631 imperative +128636 indicative +128643 participle +128645 imperative +128649 indicative +128653 participle +128656 subjunctive +128669 imperative +128671 indicative +128673 participle +128680 indicative +128682 indicative +128689 indicative +128695 indicative +128711 indicative +128717 indicative +128719 indicative +128724 indicative +128726 participle +128731 indicative +128734 infinitive +128740 infinitive +128743 infinitive +128745 indicative +128748 participle +128755 imperative +128759 indicative +128763 indicative +128773 participle +128775 imperative +128779 indicative +128783 participle +indicative +128789 participle +128791 indicative +128799 participle +128804 indicative +128808 participle +128816 imperative +128818 indicative +128824 participle +128837 indicative +128864 indicative +128868 indicative +128873 participle +128877 indicative +128879 indicative +128883 infinitive +128885 infinitive +128888 indicative +128892 subjunctive +128895 indicative +infinitive +128901 imperative +indicative +128908 participle +128916 indicative +128925 indicative +128929 indicative +128935 indicative +128937 participle +128942 indicative +128950 indicative +128959 indicative +128965 indicative +128971 indicative +128973 indicative +128980 indicative +imperative +128985 subjunctive +128988 participle +128991 participle +128997 indicative +129004 indicative +129014 indicative +129017 indicative +129023 indicative +129030 participle +129032 imperative +129036 indicative +129046 imperative +129048 indicative +129050 participle +129060 indicative +129066 indicative +129068 indicative +129071 indicative +imperative +participle +129075 imperative +129079 indicative +infinitive +129083 indicative +129086 participle +129092 imperative +129094 indicative +129096 indicative +129098 imperative +129100 imperative +129104 subjunctive +indicative +129111 subjunctive +129114 indicative +129118 indicative +129125 indicative +129130 indicative +129137 indicative +129139 participle +129141 indicative +129148 indicative +129158 indicative +129172 participle +129174 imperative +129178 indicative +129188 imperative +129190 indicative +129196 participle +129201 participle +129204 indicative +129206 participle +129209 indicative +indicative +129214 imperative +indicative +129219 participle +129222 infinitive +129224 indicative +129228 indicative +129230 indicative +129236 indicative +129240 imperative +subjunctive +129248 participle +129251 infinitive +129254 indicative +129256 indicative +imperative +indicative +129261 indicative +129263 indicative +129269 subjunctive +129272 indicative +129275 indicative +129283 indicative +129290 participle +infinitive +129296 infinitive +129298 participle +129302 indicative +129304 imperative +129306 indicative +129309 subjunctive +129314 participle +indicative +129328 subjunctive +129331 indicative +129351 participle +129366 participle +129368 imperative +129372 indicative +129382 imperative +129384 indicative +129399 indicative +129404 indicative +129409 indicative +indicative +129417 indicative +129423 indicative +129425 infinitive +129431 indicative +129434 indicative +129436 indicative +129440 indicative +129443 indicative +129446 indicative +129457 indicative +129459 infinitive +129463 participle +129467 subjunctive +129472 subjunctive +129475 subjunctive +129483 infinitive +129488 subjunctive +129492 subjunctive +indicative +129495 indicative +129497 imperative +129499 imperative +imperative +indicative +129506 indicative +129509 subjunctive +129514 subjunctive +129517 indicative +129521 indicative +129529 participle +indicative +129532 infinitive +129541 indicative +129543 indicative +129553 participle +129555 imperative +129559 indicative +129564 indicative +129566 imperative +129568 participle +129578 indicative +129581 participle +129584 participle +imperative +129588 indicative +129591 infinitive +129594 indicative +129596 indicative +129600 imperative +129602 indicative +129610 participle +129613 participle +129642 participle +participle +129658 indicative +129668 participle +129673 indicative +129699 participle +129721 participle +129732 participle +129741 participle +129748 indicative +129753 indicative +129757 participle +129767 indicative +129770 participle +129773 participle +129776 indicative +129785 participle +129790 participle +129796 indicative +129803 participle +129808 indicative +129810 participle +129817 indicative +129824 participle +129832 indicative +infinitive +129844 indicative +129852 indicative +129854 indicative +129856 indicative +129861 participle +129866 participle +129870 participle +129874 indicative +129877 participle +129883 infinitive +129887 infinitive +129892 indicative +129905 infinitive +129909 infinitive +129912 indicative +129917 indicative +infinitive +129922 infinitive +129929 indicative +129932 imperative +imperative +indicative +129945 infinitive +129954 indicative +129969 participle +129971 participle +participle +129979 indicative +129985 participle +129991 indicative +129993 indicative +129998 participle +130004 indicative +130015 indicative +130019 participle +130025 participle +130028 indicative +130034 indicative +130037 participle +130039 indicative +infinitive +130044 infinitive +130049 indicative +130051 indicative +130068 indicative +130077 indicative +130082 indicative +130084 indicative +130098 indicative +130107 participle +130111 indicative +130115 participle +infinitive +130150 indicative +130156 participle +indicative +130159 participle +130186 indicative +130191 indicative +130193 indicative +130195 indicative +130197 indicative +130206 indicative +130212 participle +130216 imperative +130218 indicative +130220 imperative +130225 participle +130228 participle +130231 indicative +130235 indicative +participle +130239 subjunctive +130242 indicative +130247 indicative +130251 participle +imperative +130254 indicative +130260 participle +130263 indicative +130265 infinitive +130274 indicative +130276 indicative +130282 indicative +130287 indicative +130291 participle +imperative +130294 indicative +130296 imperative +130301 participle +130304 participle +130311 indicative +130319 participle +130335 subjunctive +130338 indicative +130343 indicative +130348 participle +imperative +130351 indicative +130353 imperative +130358 participle +130368 indicative +130372 indicative +130380 infinitive +130397 indicative +130401 indicative +130408 participle +130419 indicative +130421 indicative +130424 participle +130434 indicative +130436 indicative +130442 participle +130447 indicative +130453 indicative +130456 subjunctive +130461 subjunctive +130471 participle +infinitive +130477 indicative +130479 indicative +130487 indicative +130491 indicative +130500 indicative +130508 indicative +130514 indicative +130521 participle +130525 indicative +130528 participle +130538 indicative +130561 indicative +130573 indicative +130579 imperative +130583 imperative +130588 participle +130599 indicative +130609 indicative +infinitive +130613 indicative +130616 participle +130623 participle +130631 subjunctive +130645 indicative +130648 participle +130652 participle +130655 participle +130657 indicative +130665 indicative +infinitive +130672 participle +130674 subjunctive +130684 subjunctive +130695 indicative +130699 participle +130704 participle +130715 participle +130771 participle +130774 indicative +130776 imperative +130781 infinitive +130783 indicative +130793 participle +130801 participle +130811 indicative +130814 participle +130821 participle +130832 indicative +130844 indicative +130853 indicative +130856 participle +130888 indicative +130893 participle +130897 participle +130903 indicative +130906 indicative +130908 indicative +130913 indicative +130915 indicative +130918 indicative +130920 participle +130927 indicative +130932 indicative +130941 indicative +130948 indicative +130959 participle +130963 indicative +130967 indicative +130970 indicative +130974 subjunctive +130990 indicative +130993 indicative +131000 indicative +131011 indicative +131016 indicative +131024 indicative +131032 indicative +131034 indicative +131041 indicative +131043 indicative +131047 participle +131051 indicative +131056 indicative +131072 indicative +131089 indicative +131095 indicative +131103 indicative +131108 indicative +131121 participle +131125 indicative +131128 subjunctive +131132 indicative +131134 indicative +131138 participle +131142 indicative +131151 indicative +131157 indicative +131162 indicative +131167 indicative +131173 participle +indicative +131179 indicative +131186 indicative +131196 participle +131203 indicative +131208 indicative +131210 indicative +131216 participle +131220 indicative +131237 indicative +131241 indicative +131252 indicative +131257 indicative +131262 indicative +131264 indicative +131280 subjunctive +131288 subjunctive +131297 indicative +131299 indicative +131302 participle +131305 participle +131312 participle +131326 participle +infinitive +131332 indicative +131334 indicative +131339 participle +131344 indicative +131353 indicative +131359 indicative +131369 indicative +131384 indicative +131390 indicative +131394 indicative +131401 indicative +131405 indicative +131422 indicative +131431 indicative +131435 subjunctive +131439 indicative +131450 subjunctive +131457 indicative +131465 indicative +131468 indicative +infinitive +131471 indicative +131483 participle +131503 indicative +131514 indicative +131516 indicative +131532 participle +131536 indicative +131550 infinitive +131555 indicative +131572 indicative +131578 indicative +imperative +indicative +131590 indicative +131592 indicative +131607 participle +131612 participle +131615 imperative +131620 participle +131628 indicative +131633 participle +131644 subjunctive +131658 indicative +131664 indicative +131672 participle +131675 participle +131695 indicative +131701 indicative +131721 participle +131731 indicative +131747 participle +131752 indicative +131760 indicative +131766 indicative +131775 indicative +131796 indicative +131798 infinitive +131800 infinitive +131802 infinitive +131805 indicative +131826 indicative +131830 participle +131834 participle +131858 participle +131864 participle +131866 indicative +131882 indicative +131887 indicative +131890 indicative +indicative +131900 indicative +131904 indicative +infinitive +131907 indicative +131912 participle +imperative +131915 indicative +131922 subjunctive +131927 participle +131935 indicative +indicative +131946 indicative +131949 participle +131956 indicative +131980 indicative +131991 subjunctive +infinitive +131994 indicative +132000 indicative +132010 indicative +132015 participle +132019 participle +imperative +imperative +132025 participle +132032 participle +132041 indicative +132045 participle +132047 infinitive +132052 indicative +132054 imperative +132056 imperative +132059 indicative +132068 indicative +132073 indicative +132082 indicative +132085 indicative +132095 indicative +132097 indicative +132102 indicative +132104 indicative +132107 infinitive +132118 indicative +132123 participle +imperative +132126 imperative +132136 participle +132146 imperative +132151 subjunctive +132153 indicative +132161 indicative +132166 indicative +132172 indicative +132177 participle +132180 indicative +132194 participle +132198 indicative +132200 infinitive +132202 indicative +132208 indicative +132215 subjunctive +132217 infinitive +132219 indicative +132221 infinitive +132223 indicative +132226 infinitive +132232 subjunctive +132240 indicative +132244 infinitive +132249 infinitive +132257 subjunctive +132260 subjunctive +132267 participle +132271 indicative +132276 indicative +132279 indicative +132293 indicative +132303 indicative +132305 indicative +132324 indicative +132328 infinitive +132333 participle +132337 indicative +132341 indicative +132344 indicative +132351 indicative +132353 participle +132369 indicative +132373 indicative +132381 indicative +132384 participle +132387 indicative +132393 participle +132395 imperative +132398 indicative +132406 indicative +132416 indicative +132424 indicative +132426 indicative +132438 indicative +132440 indicative +132450 indicative +imperative +132456 indicative +132462 indicative +132464 indicative +132470 participle +indicative +132484 indicative +132499 participle +132504 indicative +132510 indicative +132513 participle +indicative +132522 participle +132525 indicative +132527 indicative +132534 indicative +132538 indicative +132540 indicative +132549 infinitive +132551 infinitive +132564 participle +132574 infinitive +132576 participle +132580 indicative +132590 indicative +132601 indicative +132615 indicative +132620 participle +132641 participle +132643 indicative +participle +132646 participle +infinitive +132649 indicative +132656 imperative +132660 participle +132677 indicative +132685 indicative +132693 indicative +132698 participle +infinitive +132702 subjunctive +132706 subjunctive +132708 indicative +132712 indicative +infinitive +132721 indicative +132736 indicative +132741 indicative +132744 participle +132750 subjunctive +132757 indicative +132769 infinitive +132774 indicative +132783 indicative +132787 indicative +132793 indicative +132803 participle +132809 participle +132813 indicative +132823 indicative +132825 indicative +132831 participle +132833 indicative +132852 indicative +132859 participle +132870 indicative +132886 indicative +132894 imperative +132900 participle +132908 indicative +132913 participle +132916 participle +132920 indicative +132923 indicative +132927 indicative +132931 indicative +132935 indicative +132939 indicative +132950 subjunctive +132959 indicative +132972 indicative +132988 subjunctive +132990 indicative +132996 indicative +133003 indicative +133007 indicative +133015 indicative +133022 indicative +infinitive +133032 participle +133038 participle +133043 indicative +133050 indicative +133055 participle +participle +133080 indicative +indicative +133098 indicative +133119 participle +133128 indicative +133130 indicative +133138 indicative +133142 indicative +133148 indicative +133151 participle +133158 indicative +infinitive +133163 indicative +133166 participle +133171 indicative +133174 infinitive +133179 indicative +133188 infinitive +133200 participle +133202 indicative +133204 infinitive +133210 infinitive +133213 indicative +133226 indicative +133230 participle +133235 indicative +133248 participle +133254 indicative +133256 imperative +133263 indicative +133268 indicative +indicative +133273 infinitive +133275 indicative +133284 indicative +133287 participle +133292 indicative +133298 indicative +133308 indicative +133312 indicative +133319 participle +133321 indicative +133327 indicative +133334 indicative +133339 subjunctive +133344 infinitive +133352 indicative +133354 participle +133362 indicative +133364 infinitive +133368 participle +133370 participle +133374 infinitive +133379 indicative +133385 indicative +133387 indicative +133389 infinitive +133397 subjunctive +133403 subjunctive +133408 subjunctive +133413 subjunctive +133415 indicative +133435 subjunctive +133453 subjunctive +infinitive +133456 infinitive +133460 participle +133476 indicative +133478 participle +133480 imperative +133488 indicative +133497 indicative +133499 imperative +133502 participle +133514 participle +133524 participle +133530 indicative +133548 indicative +133551 participle +133557 indicative +133573 indicative +infinitive +133585 participle +133590 indicative +133595 indicative +133598 indicative +133601 participle +133606 subjunctive +133608 indicative +133624 indicative +133627 indicative +133629 indicative +133632 participle +133635 participle +133638 infinitive +133641 participle +133655 participle +133659 imperative +133663 imperative +133667 indicative +133674 imperative +133676 participle +133691 indicative +participle +indicative +indicative +133707 indicative +133715 indicative +133717 participle +133723 indicative +133731 indicative +133744 indicative +133753 participle +133762 indicative +133783 indicative +133786 indicative +133792 participle +133802 indicative +133809 indicative +133815 participle +133825 indicative +133830 participle +imperative +133838 participle +133841 indicative +133845 indicative +133854 indicative +133858 indicative +133860 imperative +133867 participle +133871 participle +133888 indicative +133892 participle +133897 participle +133901 imperative +133906 imperative +133908 indicative +133911 infinitive +133913 indicative +133919 indicative +133921 participle +133932 indicative +133938 indicative +133946 participle +133955 participle +133960 indicative +133965 indicative +133969 participle +133974 participle +imperative +133982 imperative +133990 indicative +133995 indicative +134005 indicative +134011 indicative +134022 indicative +134029 indicative +134044 indicative +134055 participle +134063 indicative +134069 indicative +134073 participle +134077 participle +134093 participle +134099 participle +134104 indicative +134117 participle +134142 subjunctive +134145 indicative +134156 indicative +134158 indicative +134165 indicative +134169 indicative +134171 indicative +134182 indicative +134187 participle +134194 participle +134199 participle +134211 indicative +134218 participle +134224 participle +134231 indicative +134247 indicative +infinitive +134253 subjunctive +134261 indicative +134267 participle +134271 imperative +134273 imperative +134285 indicative +134289 indicative +134297 indicative +134306 participle +134313 participle +134320 indicative +134328 indicative +134340 indicative +134344 indicative +134357 indicative +134360 indicative +134365 participle +134367 indicative +134369 participle +134372 indicative +134377 indicative +134383 indicative +134387 indicative +infinitive +134390 indicative +134392 indicative +134395 participle +134411 indicative +134419 indicative +134421 infinitive +134427 indicative +134433 indicative +134439 participle +134448 indicative +infinitive +134455 indicative +134465 indicative +134469 participle +134471 indicative +134479 indicative +134495 indicative +134503 indicative +134514 indicative +134519 subjunctive +134529 indicative +134553 indicative +134556 participle +134559 indicative +134566 infinitive +134579 imperative +indicative +134585 participle +134587 participle +134594 subjunctive +134596 subjunctive +134601 indicative +134607 participle +134613 indicative +134621 indicative +134630 participle +indicative +134633 indicative +134642 indicative +134645 indicative +134649 indicative +134658 indicative +134671 indicative +134676 indicative +134680 infinitive +134694 indicative +134698 indicative +134704 indicative +134712 indicative +134724 indicative +134730 indicative +134737 participle +134742 indicative +134745 participle +imperative +indicative +134756 participle +134762 indicative +134768 indicative +134770 participle +134780 indicative +134787 indicative +134789 participle +134793 participle +134796 participle +134805 indicative +participle +134811 participle +134818 participle +134825 participle +134838 participle +134854 indicative +134857 participle +134871 indicative +participle +134877 indicative +134883 indicative +134885 indicative +134895 participle +134898 participle +134909 indicative +indicative +134913 indicative +134915 indicative +infinitive +134923 indicative +134925 indicative +134927 participle +134935 indicative +134944 participle +134948 indicative +134951 indicative +134953 indicative +134958 participle +134965 indicative +134969 indicative +134975 indicative +134978 indicative +134981 indicative +134985 indicative +134988 subjunctive +134991 infinitive +indicative +134997 indicative +135000 indicative +135004 indicative +135009 indicative +135013 indicative +135019 indicative +indicative +135026 indicative +135033 indicative +135040 indicative +135049 indicative +135054 indicative +135058 indicative +135061 indicative +135077 indicative +135082 indicative +135086 indicative +indicative +135100 indicative +135105 indicative +135109 indicative +135111 participle +135118 indicative +135121 indicative +135127 indicative +135132 infinitive +135137 infinitive +135141 infinitive +135148 indicative +135157 indicative +indicative +135164 participle +135173 indicative +135176 participle +135180 participle +135186 indicative +135192 indicative +135196 participle +indicative +indicative +135203 indicative +135217 participle +135227 indicative +135238 indicative +135250 indicative +135252 indicative +135258 participle +135262 imperative +135267 subjunctive +135278 subjunctive +135280 indicative +135288 indicative +135294 imperative +135299 indicative +135301 imperative +135312 indicative +imperative +135317 indicative +135320 indicative +135325 imperative +135332 indicative +135334 indicative +135339 indicative +135344 subjunctive +135350 indicative +135362 indicative +135369 participle +135372 indicative +135374 indicative +135384 participle +135386 participle +135388 subjunctive +135396 participle +135403 participle +135418 indicative +135427 indicative +135429 indicative +135434 indicative +135515 indicative +135525 indicative +135533 indicative +135538 participle +135543 indicative +135550 participle +135552 participle +participle +135561 participle +135568 participle +135579 indicative +135591 participle +135598 indicative +135601 indicative +135603 indicative +participle +135610 participle +135618 indicative +135625 indicative +participle +135628 participle +participle +135638 indicative +135641 participle +135654 indicative +imperative +135669 indicative +135678 indicative +135687 indicative +135691 participle +135694 indicative +135702 subjunctive +135715 subjunctive +135726 subjunctive +135735 subjunctive +135744 subjunctive +135755 subjunctive +135763 indicative +135773 indicative +135780 indicative +135788 participle +135794 indicative +135803 participle +135824 indicative +135830 indicative +135838 indicative +135849 indicative +135855 indicative +135862 indicative +135873 indicative +135877 participle +135881 participle +135889 indicative +participle +imperative +135900 participle +135908 indicative +135923 participle +135926 indicative +135933 subjunctive +135935 subjunctive +135937 indicative +135942 indicative +135951 indicative +135954 indicative +135957 subjunctive +135968 indicative +135970 indicative +135972 imperative +135982 participle +135984 indicative +135992 indicative +135994 indicative +135999 infinitive +136002 indicative +136004 imperative +136006 indicative +136014 participle +136020 imperative +136025 indicative +136031 indicative +136034 participle +136036 imperative +136041 participle +136044 participle +136051 indicative +136053 indicative +136067 participle +136069 participle +136072 indicative +136077 participle +136079 participle +136082 indicative +136097 indicative +136102 participle +136111 indicative +136117 subjunctive +136122 indicative +136129 indicative +136143 indicative +136153 participle +136160 indicative +136163 participle +136168 indicative +136172 participle +136177 participle +136180 imperative +imperative +136190 subjunctive +136204 participle +136219 indicative +136231 participle +infinitive +136237 participle +136247 indicative +136256 participle +136263 indicative +136265 participle +136272 participle +136276 participle +indicative +136286 participle +136292 indicative +136297 participle +136302 participle +136311 indicative +136317 indicative +136319 participle +136323 participle +136336 indicative +136344 indicative +136350 indicative +136355 indicative +136361 indicative +136363 indicative +136368 subjunctive +136373 subjunctive +136379 indicative +infinitive +136385 indicative +136388 indicative +136393 indicative +136399 participle +136413 indicative +136422 indicative +136434 indicative +136436 indicative +136447 indicative +136449 subjunctive +136462 participle +136475 indicative +136478 indicative +136486 indicative +136494 subjunctive +136498 indicative +136506 indicative +infinitive +136521 infinitive +136536 indicative +136543 indicative +136552 participle +136554 indicative +136560 indicative +136566 participle +136568 indicative +136584 indicative +136594 indicative +136600 participle +136607 indicative +136616 indicative +136619 indicative +136627 participle +136633 indicative +136637 indicative +136639 indicative +136643 indicative +136648 participle +136657 indicative +136671 indicative +136678 indicative +136690 indicative +136705 indicative +136710 indicative +136716 participle +indicative +136724 indicative +136738 indicative +136743 indicative +136746 indicative +136753 participle +136760 participle +136763 participle +136768 indicative +136774 participle +imperative +136784 indicative +136791 indicative +136798 indicative +136800 indicative +136811 indicative +136820 indicative +136825 indicative +136827 indicative +136829 participle +136833 imperative +136835 indicative +136838 indicative +imperative +136847 indicative +136849 indicative +136851 indicative +136865 participle +indicative +136876 participle +indicative +136880 indicative +136885 indicative +136894 participle +136914 participle +136919 indicative +136925 indicative +136932 participle +136937 participle +136944 indicative +136947 participle +imperative +indicative +136958 indicative +136968 indicative +136975 participle +136982 participle +136996 participle +participle +137002 participle +137012 participle +137015 indicative +137045 participle +137060 participle +137063 indicative +137068 subjunctive +137083 indicative +137092 indicative +137111 indicative +137113 indicative +137124 indicative +137150 participle +137200 indicative +137217 indicative +137232 indicative +137237 indicative +137245 subjunctive +137252 indicative +137261 indicative +137273 indicative +137285 subjunctive +137290 indicative +137293 indicative +137306 subjunctive +137313 participle +137320 participle +137329 indicative +137337 participle +137359 participle +137365 participle +137382 indicative +137394 indicative +137399 indicative +137402 indicative +137417 indicative +137421 indicative +137432 indicative +137436 indicative +137443 indicative +137460 indicative +137464 infinitive +137469 infinitive +137472 indicative +137474 imperative +indicative +137479 participle +137490 participle +137492 participle +137496 indicative +137498 indicative +indicative +infinitive +137507 participle +137511 indicative +137513 imperative +137515 indicative +137526 participle +137534 imperative +137536 indicative +137539 subjunctive +137551 indicative +137553 participle +imperative +137559 imperative +137565 imperative +137570 imperative +137572 imperative +indicative +137581 infinitive +137587 indicative +137606 participle +137611 indicative +137623 subjunctive +137644 participle +137646 participle +137650 indicative +137654 infinitive +137661 indicative +137680 indicative +imperative +137684 participle +imperative +imperative +137689 participle +imperative +137692 participle +imperative +137697 indicative +137701 participle +137711 subjunctive +137714 indicative +137722 participle +137730 subjunctive +137739 indicative +137757 participle +137762 indicative +137764 participle +137767 indicative +137770 imperative diff --git a/tf/0.1.1/morph.tf b/tf/0.1.1/morph.tf new file mode 100644 index 0000000..d9669a3 --- /dev/null +++ b/tf/0.1.1/morph.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=morph +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +N-NSF +N-GSF +N-GSM +N-GSM +N-GSM +N-PRI +N-GSM +N-PRI +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-ASM +CONJ +T-APM +N-APM +P-GSM +CONJ +N-NSM +V-AAI-3S +T-ASM +N-PRI +CONJ +T-ASM +N-PRI +PREP +T-GSF +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +PREP +T-GSF +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +PREP +T-GSF +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +T-ASM +N-ASM +CONJ +N-PRI +V-AAI-3S +T-ASM +N-ASM +PREP +T-GSF +T-GSM +N-GSM +CONJ +N-NSM +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-ASM +CONJ +N-NSM +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-ASM +CONJ +N-NSM +V-AAI-3S +T-ASM +N-ASM +CONJ +N-NSM +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-ASM +CONJ +N-NSM +V-AAI-3S +T-ASM +N-ASM +CONJ +T-APM +N-APM +P-GSM +PREP +T-GSF +N-GSF +N-GSF +CONJ +PREP +T-ASF +N-ASF +N-GSF +N-NSM +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +CONJ +N-PRI +V-AAI-3S +T-ASM +N-PRI +T-ASM +N-ASM +N-GSF +PREP +R-GSF +V-API-3S +N-NSM +T-NSM +V-PPP-NSM +N-NSM +CONJ +A-NPF +T-NPF +N-NPF +PREP +N-PRI +ADV +N-PRI +N-NPF +A-NPF +CONJ +PREP +N-PRI +ADV +T-GSF +N-GSF +N-GSF +N-NPF +A-NPF +CONJ +PREP +T-GSF +N-GSF +N-GSF +ADV +T-GSM +N-GSM +N-NPF +A-NPF +CONJ +T-GSM +N-GSM +N-GSM +T-NSF +N-NSF +ADV +V-IAI-3S +V-APP-GSF +T-GSF +N-GSF +P-GSM +N-GSF +T-DSM +N-PRI +ADV +PRT +V-2AAN +P-APM +V-API-3S +PREP +N-DSF +V-PAP-NSF +PREP +N-GSN +A-GSN +CONJ +N-PRI +T-NSM +N-NSM +P-GSF +A-NSM +V-PAP-NSM +CONJ +PRT-N +V-PAP-NSM +P-ASF +V-AAN +V-AOI-3S +ADV +V-AAN +P-ASF +CONJ +D-APN +P-GSM +V-AOP-GSM +V-2AMM-2S +N-NSM +N-GSM +PREP +N-OI +V-2API-3S +P-DSM +V-PAP-NSM +N-PRI +N-NSM +N-PRI +PRT-N +V-AOS-2S +V-2AAN +N-ASF +T-ASF +N-ASF +P-2GS +CONJ +T-NSN +PREP +P-DSF +V-APP-NSN +PREP +N-GSN +A-GSN +V-PAI-3S +CONJ +V-FDI-3S +N-ASM +CONJ +V-FAI-2S +T-ASN +N-ASN +P-GSM +N-ASM +CONJ +P-NSM +V-FAI-3S +T-ASM +N-ASM +P-GSM +PREP +T-GPF +N-GPF +P-GPM +CONJ +D-NSN +A-NSN +V-2RAI-3S +CONJ +V-APS-3S +T-NSN +V-APP-NSN +PREP +N-GSM +PREP +T-GSM +N-GSM +V-PAP-GSM +V-2AMM-2S +T-NSF +N-NSF +PREP +N-DSF +V-FAI-3S +CONJ +V-FDI-3S +N-ASM +CONJ +V-FAI-3P +T-ASN +N-ASN +P-GSM +N-PRI +R-NSN +V-PAI-3S +V-PPP-NSN +PREP +P-1GP +T-NSM +N-NSM +CONJ +T-NSM +N-PRI +V-APP-NSM +PREP +T-GSM +N-GSM +V-AAI-3S +ADV +V-AAI-3S +P-DSM +T-NSM +N-NSM +N-GSM +CONJ +V-2AAI-3S +T-ASF +N-ASF +P-GSM +CONJ +PRT-N +V-IAI-3S +P-ASF +ADV +R-GSM +V-2AAI-3S +N-ASM +CONJ +V-AAI-3S +T-ASN +N-ASN +P-GSM +N-ASM +CONJ +T-GSM +N-GSM +V-APP-GSM +PREP +N-PRI +T-GSF +N-GSF +PREP +N-DPF +N-GSM +T-GSM +N-GSM +V-2AMM-2S +N-NPM +PREP +N-GPF +V-2ADI-3P +PREP +N-APN +V-PAP-NPM +ADV-I +V-PAI-3S +T-NSM +V-APP-NSM +N-NSM +T-GPM +A-GPM +CONJ +V-2AAI-1P +P-GSM +T-ASM +N-ASM +PREP +T-DSF +N-DSF +CONJ +V-2AAI-1P +V-AAN +P-DSM +CONJ +V-AAP-NSM +T-NSM +N-NSM +N-NSM +V-API-3S +CONJ +A-NSF +N-NSF +PREP +P-GSM +CONJ +V-2AAP-NSM +A-APM +T-APM +N-APM +CONJ +N-APM +T-GSM +N-GSM +V-INI-3S +PREP +P-GPM +ADV-I +T-NSM +N-NSM +V-PPS-3S +CONJ +T-NPM +V-2AAI-3P +P-DSM +PREP +N-PRI +T-GSF +N-GSF +CONJ +ADV +V-RPI-3S +PREP +T-GSM +N-GSM +CONJ +N-PRI +N-VSF +N-GSM +P-2NS +ADV-N +A-NSF-S +V-PAI-2S +PREP +T-DPM +N-DPM +N-GSM +CONJ +PREP +P-2GS +V-FDI-3S +V-PNP-NSM +R-NSM +V-FAI-3S +T-ASM +N-ASM +P-1GS +T-ASM +N-PRI +ADV +N-NSM +ADV +V-AAP-NSM +T-APM +N-APM +V-AAI-3S +PREP +P-GPM +T-ASM +N-ASM +T-GSM +V-PEP-GSM +N-GSM +CONJ +V-AAP-NSM +P-APM +PREP +N-PRI +V-2AAI-3S +V-AOP-NPM +V-AAM-2P +ADV +PREP +T-GSN +N-GSN +CONJ +CONJ +V-2AAS-2P +V-AAM-2P +P-1DS +ADV +P-1NS-K +V-2AAP-NSM +V-AAS-1S +P-DSM +CONJ +T-NPM +V-AAP-NPM +T-GSM +N-GSM +V-AOI-3P +CONJ +V-2AMM-2S +T-NSM +N-NSM +R-ASM +V-2AAI-3P +PREP +T-DSF +N-DSF +V-IAI-3S +P-APM +ADV +V-2AAP-NSM +V-API-3S +ADV +ADV +V-IAI-3S +T-NSN +N-NSN +CONJ +V-2AAP-NPM +T-ASM +N-ASM +V-2AOI-3P +N-ASF +A-ASF +ADV +CONJ +V-2AAP-NPM +PREP +T-ASF +N-ASF +V-2AAI-3P +T-ASN +N-ASN +PREP +N-GSF +T-GSF +N-GSF +P-GSN +CONJ +V-2AAP-NPM +V-AAI-3P +P-DSM +CONJ +V-AAP-NPM +T-APM +N-APM +P-GPM +V-AAI-3P +P-DSM +N-APN +N-ASM +CONJ +N-ASM +CONJ +N-ASF +CONJ +V-APP-NPM +PREP +N-OI +PRT-N +V-AAN +PREP +N-ASM +PREP +A-GSF +N-GSF +V-AAI-3P +PREP +T-ASF +N-ASF +P-GPM +CONJ +V-AAP-GPM +P-GPM +V-2AMM-2S +N-NSM +N-GSM +V-PEI-3S +PREP +N-OI +T-DSM +N-PRI +V-PAP-NSM +V-APP-NSM +V-2AAM-2S +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +P-GSM +CONJ +V-PAM-2S +PREP +N-ASF +CONJ +V-PAM-2S +ADV +ADV +PRT +V-2AAS-1S +P-2DS +CONJ +V-PAI-3S +N-NSM +V-PAN +T-ASN +N-ASN +T-GSN +V-AAN +P-ASN +CONJ +T-NSM +V-APP-NSM +V-2AAI-3S +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +P-GSM +N-GSF +CONJ +V-AAI-3S +PREP +N-ASF +CONJ +V-IAI-3S +ADV +ADV +T-GSF +N-GSF +N-GSM +CONJ +V-APS-3S +T-NSN +V-APP-NSN +PREP +N-GSM +PREP +T-GSM +N-GSM +V-PAP-GSM +PREP +N-GSF +V-AAI-1S +T-ASM +N-ASM +P-1GS +ADV +N-NSM +V-2AAP-NSM +CONJ +V-API-3S +PREP +T-GPM +N-GPM +V-API-3S +ADV +CONJ +V-AAP-NSM +V-2AAI-3S +A-APM +T-APM +N-APM +T-APM +PREP +N-PRI +CONJ +PREP +A-DPN +T-DPN +N-DPN +P-GSF +PREP +A-GSM +CONJ +ADV +PREP +T-ASM +N-ASM +R-ASM +V-AAI-3S +PREP +T-GPM +N-GPM +ADV +V-API-3S +T-NSN +V-APP-NSN +PREP +N-GSM +T-GSM +N-GSM +V-PAP-GSM +PREP +N-PRI +V-API-3S +N-NSF +N-NSM +CONJ +N-NSM +A-NSM +N-PRI +V-PAP-NSF +T-APN +N-APN +P-GSF +CONJ +PRT-N +V-IAI-3S +V-APN +CONJ +PRT-N +V-PAI-3P +CONJ +V-AAP-GSM +T-GSM +N-GSM +V-2AMM-2S +N-NSM +N-GSM +V-PEI-3S +PREP +N-OI +T-DSM +N-PRI +PREP +N-DSF +V-PAP-NSM +V-APP-NSM +V-2AAM-2S +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +P-GSM +CONJ +V-PNM-2S +PREP +N-ASF +N-PRI +CONJ +V-RAI-3P +T-NPM +V-PAP-NPM +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +T-NSM +V-APP-NSM +V-2AAI-3S +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +P-GSM +CONJ +V-2AAI-3S +PREP +N-ASF +N-PRI +CONJ +V-AAP-NSM +CONJ +N-NSM +V-PAI-3S +T-GSF +N-GSF +PREP +T-GSM +N-GSM +P-GSM +N-GSM +V-AOI-3S +ADV +V-2AAN +CONJ +V-APP-NSM +PREP +N-OI +V-AAI-3S +PREP +T-APN +N-APN +T-GSF +N-GSF +CONJ +V-2AAP-NSM +V-AAI-3S +PREP +N-ASF +V-PPP-ASF +N-PRI +ADV +V-APS-3S +T-NSN +V-APP-NSN +PREP +T-GPM +N-GPM +CONJ +N-NSM +V-FPI-3S +CONJ +PREP +T-DPF +N-DPF +D-DPF +V-PNI-3S +N-NSM +T-NSM +N-NSM +V-PAP-NSM +PREP +T-DSF +A-DSF +T-GSF +N-GSF +V-PAP-NSM +V-PAM-2P +CONJ +V-RAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +CONJ +D-NSM +V-PAI-3S +T-NSM +V-APP-NSM +PREP +N-GSM +T-GSM +N-GSM +V-PAP-GSM +N-NSF +V-PAP-GSM +PREP +T-DSF +A-DSF +V-AAM-2P +T-ASF +N-ASF +N-GSM +A-APF +V-PAM-2P +T-APF +N-APF +P-GSM +CONJ +P-NSM +T-NSM +N-NSM +V-IAI-3S +T-ASN +N-ASN +P-GSM +PREP +N-GPF +N-GSF +CONJ +N-ASF +A-ASF +PREP +T-ASF +N-ASF +P-GSM +CONJ +T-NSF +N-NSF +P-GSM +V-IAI-3S +N-NPF +CONJ +N-NSN +A-NSN +ADV +V-INI-3S +PREP +P-ASM +N-NSF +CONJ +A-NSF +T-NSF +N-NSF +CONJ +A-NSF +T-NSF +A-NSF +T-GSM +N-GSM +CONJ +V-IPI-3P +PREP +T-DSM +N-DSM +N-DSM +PREP +P-GSM +V-PMP-NPM +T-APF +N-APF +P-GPM +CONJ +V-2AAP-NSM +A-APM +T-GPM +N-GPM +CONJ +N-GPM +V-PNP-APM +PREP +T-ASN +N-ASN +V-2AAI-3S +P-DPM +N-VPN +N-GPF +I-NSM +V-AAI-3S +P-2DP +V-2AAN +PREP +T-GSF +V-PAP-GSF +N-GSF +CONJ +V-AAM-2P +N-ASM +A-ASM +T-GSF +N-GSF +CONJ +PRT-N +V-AAS-2P +V-PAN +PREP +F-2DPM +N-ASM +V-PAI-1P +T-ASM +N-PRI +CONJ +V-PAI-1S +P-2DP +CONJ +V-PNI-3S +T-NSM +N-NSM +PREP +T-GPM +N-GPM +D-GPM +V-AAN +N-APN +T-DSM +N-PRI +CONJ +ADV +T-NSF +N-NSF +PREP +T-ASF +N-ASF +T-GPN +N-GPN +V-PNI-3S +CONJ +A-NSN +N-NSN +PRT-N +V-PAP-NSN +N-ASM +A-ASM +V-PPI-3S +CONJ +PREP +N-ASN +V-PPI-3S +PRT +P-1NS +P-2AP +V-PAI-1S +PREP +N-DSN +PREP +N-ASF +CONJ +T-NSM +ADV +P-1GS +V-PNP-NSM +A-NSM-C +P-1GS +V-PAI-3S +R-GSM +PRT-N +V-PAI-1S +A-NSM +T-APN +N-APN +V-AAN +P-NSM +P-2AP +V-FAI-3S +PREP +N-DSN +A-DSN +CONJ +N-DSN +R-GSM +T-NSN +N-NSN +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-FAI-3S-ATT +T-ASF +N-ASF +P-GSM +CONJ +V-FAI-3S +T-ASM +N-ASM +P-GSM +PREP +T-ASF +N-ASF +CONJ +T-ASN +N-ASN +V-FAI-3S +N-DSN +A-DSN +ADV +V-PNI-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +PREP +T-ASM +N-ASM +PREP +T-ASM +N-ASM +T-GSN +V-APN +PREP +P-GSM +CONJ +T-NSM +V-IAI-3S +P-ASM +V-PAP-NSM +P-1NS +N-ASF +V-PAI-1S +PREP +P-2GS +V-APN +CONJ +P-2NS +V-PNI-2S +PREP +P-1AS +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-2AAM-2S +ADV +CONJ +ADV +V-PAP-NSN +V-PAI-3S +P-1DP +V-AAN +A-ASF +N-ASF +ADV +V-PAI-3S +P-ASM +CONJ +V-APP-NSM +T-NSM +N-NSM +ADV +V-2AAI-3S +PREP +T-GSN +N-GSN +CONJ +V-2AMM-2S +V-API-3P +T-NPM +N-NPM +CONJ +V-2AAI-3S +N-ASN +N-GSM +V-PAP-ASN +ADV +N-ASF +V-PNP-ASN +PREP +P-ASM +CONJ +V-2AMM-2S +N-NSF +PREP +T-GPM +N-GPM +V-PAP-NSF +D-NSM +V-PAI-3S +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +PREP +R-DSM +V-AAI-1S +ADV +T-NSM +N-NSM +V-API-3S +PREP +T-ASF +A-ASF +PREP +T-GSN +N-GSN +V-APN +PREP +T-GSM +A-GSM +CONJ +V-AAP-NSM +N-APF +A-NUI +CONJ +A-NUI +N-APF +ADV +V-AAI-3S +CONJ +V-2AAP-NSM +T-NSM +V-PAP-NSM +V-2AAI-3S +P-DSM +COND +V-PAI-2S +N-NSM +T-GSM +N-GSM +V-2AAM-2S +CONJ +T-NPM +N-NPM +D-NPM +N-NPM +V-2ADS-3P +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +V-RPI-3S +PRT-N +PREP +N-DSM +A-DSM +V-FDI-3S +T-NSM +N-NSM +CONJ +PREP +A-DSN +N-DSN +V-PNP-DSN +PREP +N-GSN +N-GSM +ADV +V-PAI-3S +P-ASM +T-NSM +A-NSM +PREP +T-ASF +A-ASF +N-ASF +CONJ +V-AAI-3S +P-ASM +PREP +T-ASN +N-ASN +T-GSN +N-GSN +CONJ +V-PAI-3S +P-DSM +COND +V-PAI-2S +N-NSM +T-GSM +N-GSM +V-2AAM-2S +F-2ASM +ADV +CONJ +V-RPI-3S +CONJ +T-DPM +N-DPM +P-GSM +V-FNI-3S +PREP +P-2GS +CONJ +PREP +N-GPF +V-FAI-3P +P-2AS +PRT-N +ADV +V-AAS-2S +PREP +N-ASM +T-ASM +N-ASM +P-2GS +V-IAI-3S +P-DSM +T-NSM +N-NSM +ADV +V-RPI-3S +PRT-N +V-FAI-2S +N-ASM +T-ASM +N-ASM +P-2GS +ADV +V-PAI-3S +P-ASM +T-NSM +A-NSM +PREP +N-ASN +A-ASN +ADV +CONJ +V-PAI-3S +P-DSM +A-APF +T-APF +N-APF +T-GSM +N-GSM +CONJ +T-ASF +N-ASF +P-GPF +CONJ +V-2AAI-3S +P-DSM +D-APN +A-APN +P-2DS +V-FAI-1S +COND +V-2AAP-NSM +V-AAS-2S +P-1DS +ADV +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-PAM-2S +N-VSM +CONJ +V-RPI-3S +N-ASM +T-ASM +N-ASM +P-2GS +V-FAI-2S +CONJ +P-DSM +A-DSM +V-FAI-2S +ADV +V-PAI-3S +P-ASM +T-NSM +A-NSM +CONJ +V-2AMM-2S +N-NPM +V-2AAI-3P +CONJ +V-IAI-3P +P-DSM +CONJ +V-AAP-NSM +CONJ +N-NSM +V-API-3S +V-AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NSM +T-ASF +N-PRI +V-2AAP-NSM +V-AAI-3S +PREP +N-PRI +T-ASF +A-ASF +PREP +N-DPN +N-PRI +CONJ +N-PRI +CONJ +V-APS-3S +T-NSN +V-APP-NSN +PREP +N-GSM +T-GSM +N-GSM +V-PAP-GSM +N-NSF +N-PRI +CONJ +N-NSF +N-PRI +N-ASF +N-GSF +ADV +T-GSM +N-GSM +N-NSF +T-GPN +N-GPN +T-NSM +N-NSM +T-NSM +V-PNP-NSM +PREP +N-DSF +N-ASN +A-ASN +V-2AAI-3S +CONJ +T-DPM +V-PNP-DPM +PREP +N-DSF +CONJ +N-DSF +N-GSM +N-NSN +V-AAI-3S +P-DPM +PREP +ADV +V-ADI-3S +T-NSM +N-NSM +V-PAN +CONJ +V-PAN +V-PAM-2P +CONJ +V-RAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +CONJ +V-PAP-NSM +PREP +T-ASF +N-ASF +T-GSF +N-GSF +V-2AAI-3S +A-NUI +N-APM +N-ASM +T-ASM +V-PPP-ASM +N-ASM +CONJ +N-ASM +T-ASM +N-ASM +P-GSM +V-PAP-APM +N-ASN +PREP +T-ASF +N-ASF +CONJ +V-IAI-3P +N-NPM +CONJ +V-PAI-3S +P-DPM +V-PAM-2P +ADV +P-1GS +CONJ +V-FAI-1S +P-2AP +N-APM +N-GPM +CONJ +T-NPM +ADV +V-2AAP-NPM +T-APN +N-APN +V-AAI-3P +P-DSM +CONJ +V-2AAP-NSM +ADV +V-2AAI-3S +A-APM +A-NUI +N-APM +N-ASM +T-ASM +T-GSM +N-GSM +CONJ +N-ASM +T-ASM +N-ASM +P-GSM +PREP +T-DSN +N-DSN +PREP +N-GSM +T-GSM +N-GSM +P-GPM +V-PAP-APM +T-APN +N-APN +P-GPM +CONJ +V-AAI-3S +P-APM +CONJ +T-NPM +ADV +V-2AAP-NPM +T-ASN +N-ASN +CONJ +T-ASM +N-ASM +P-GPM +V-AAI-3P +P-DSM +CONJ +V-IAI-3S +PREP +A-DSF +T-DSF +N-DSF +V-PAP-NSM +PREP +T-DPF +N-DPF +P-GPM +CONJ +V-PAP-NSM +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +V-PAP-NSM +A-ASF +N-ASF +CONJ +A-ASF +N-ASF +PREP +T-DSM +N-DSM +CONJ +V-2AAI-3S +T-NSF +N-NSF +P-GSM +PREP +A-ASF +T-ASF +N-ASF +CONJ +V-AAI-3P +P-DSM +A-APM +T-APM +ADV +V-PAP-APM +A-DPF +N-DPF +CONJ +N-DPF +V-PPP-APM +V-PNP-APM +CONJ +V-PNP-APM +CONJ +A-APM +CONJ +V-AAI-3S +P-APM +CONJ +V-AAI-3P +P-DSM +N-NPM +A-NPM +PREP +T-GSF +N-GSF +CONJ +N-GSF +CONJ +N-GPN +CONJ +N-GSF +CONJ +ADV +T-GSM +N-GSM +CONJ +V-2AAP-NSM +T-APM +N-APM +V-2AAI-3S +PREP +T-ASN +N-ASN +CONJ +V-AAP-GSM +P-GSM +V-2AAI-3P +P-DSM +T-NPM +N-NPM +P-GSM +CONJ +V-AAP-NSM +T-ASN +N-ASN +P-GSM +V-IAI-3S +P-APM +V-PAP-NSM +A-NPM +T-NPM +A-NPM +T-DSN +N-DSN +CONJ +P-GPM +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +A-NPM +T-NPM +V-PAP-NPM +CONJ +P-NPM +V-FPI-3P +A-NPM +T-NPM +A-NPM +CONJ +P-NPM +V-FAI-3P +T-ASF +N-ASF +A-NPM +T-NPM +V-PAP-NPM +CONJ +V-PAP-NPM +T-ASF +N-ASF +CONJ +P-NPM +V-FPI-3P +A-NPM +T-NPM +A-NPM +CONJ +P-NPM +V-FPI-3P +A-NPM +T-NPM +A-NPM +T-DSF +N-DSF +CONJ +P-NPM +T-ASM +N-ASM +V-FDI-3P +A-NPM +T-NPM +A-NPM +CONJ +P-NPM +N-NPM +N-GSM +V-FPI-3P +A-NPM +T-NPM +V-RPP-NPM +PREP +N-GSF +CONJ +P-GPM +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +A-NPM +V-PAI-2P +CONJ +V-AAS-3P +P-2AP +CONJ +V-AAS-3P +CONJ +V-2AAS-3P +A-ASN +A-ASN +PREP +P-2GP +V-PEP-NPM +PREP +P-1GS +V-PAM-2P +CONJ +V-PNM-2P +CONJ +T-NSM +N-NSM +P-2GP +A-NSM +PREP +T-DPM +N-DPM +CONJ +ADV +V-AAI-3P +T-APM +N-APM +T-APM +PREP +P-2GP +P-2NP +V-PAI-2P +T-NSN +N-NSN +T-GSF +N-GSF +CONJ +COND +T-NSN +N-NSN +V-APS-3S +PREP +I-DSN +V-FPI-3S +PREP +A-ASN-N +V-PAI-3S +ADV +COND +PRT-N +V-APP-NSN +ADV +V-PPN +PREP +T-GPM +N-GPM +P-2NP +V-PAI-2P +T-NSN +N-NSN +T-GSM +N-GSM +PRT-N +V-PNI-3S +N-NSF +V-2APN +ADV +N-GSN +V-PNP-NSF +CONJ-N +V-PAI-3P +N-ASM +CONJ +V-PAI-3P +P-ASM +PREP +T-ASM +N-ASM +CONJ +PREP +T-ASF +N-ASF +CONJ +V-PAI-3S +A-DPM +T-DPM +PREP +T-DSF +N-DSF +ADV +V-AAM-3S +T-NSN +N-NSN +P-2GP +PREP +T-GPM +N-GPM +ADV +V-2AAS-3P +P-2GP +T-APN +A-APN +N-APN +CONJ +V-AAS-3P +T-ASM +N-ASM +P-2GP +T-ASM +PREP +T-DPM +N-DPM +PRT-N +V-AAS-2P +CONJ +V-2AAI-1S +V-AAN +T-ASM +N-ASM +PRT +T-APM +N-APM +PRT-N +V-2AAI-1S +V-AAN +CONJ +V-AAN +CONJ +HEB +V-PAI-1S +P-2DP +ADV +PRT +V-2AAS-3S +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +N-LI +A-NSN +PRT +A-NSF +N-NSF +PRT-N +PRT-N +V-2AAS-3S +PREP +T-GSM +N-GSM +ADV +PRT +A-NPN +V-2ADS-3S +CONJ +COND +R-NSM +V-AAS-3S +A-ASF +T-GPF +N-GPF +D-GPF +T-GPF +A-GPF-S +CONJ +V-AAS-3S +ADV +T-APM +N-APM +A-NSM-S +V-FPI-3S +PREP +T-DSF +N-DSF +T-GPM +N-GPM +CONJ +PRT +R-NSM +V-AAS-3S +CONJ +V-AAS-3S +D-NSM +A-NSM +V-FPI-3S +PREP +T-DSF +N-DSF +T-GPM +N-GPM +CONJ +V-PAI-1S +P-2DP +CONJ +COND +PRT-N +V-AAS-3S +P-2GP +T-NSF +N-NSF +A-ASN-C +T-GPM +N-GPM +CONJ +N-GPM +PRT-N +PRT-N +V-2AAS-2P +PREP +T-ASF +N-ASF +T-GPM +N-GPM +V-AAI-2P +CONJ +V-API-3S +T-DPM +A-DPM +PRT-N +V-FAI-2S +CONJ +PRT +R-NSM +V-AAS-3S +A-NSM +V-FDI-3S +T-DSF +N-DSF +CONJ +P-1NS +V-PAI-1S +P-2DP +CONJ +A-NSM +T-NSM +V-PPP-NSM +T-DSM +N-DSM +P-GSM +A-NSM +V-FDI-3S +T-DSF +N-DSF +CONJ +PRT +R-NSM +V-2AAS-3S +T-DSM +N-DSM +P-GSM +ARAM +A-NSM +V-FDI-3S +T-DSN +N-DSN +CONJ +PRT +R-NSM +V-2AAS-3S +A-VSM +A-NSM +V-FDI-3S +PREP +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +COND +V-PAS-2S +T-ASN +N-ASN +P-2GS +PREP +T-ASN +N-ASN +ADV-K +V-APS-2S +CONJ +T-NSM +N-NSM +P-2GS +V-PAI-3S +X-ASN +PREP +P-2GS +V-2AAM-2S +ADV +T-ASN +N-ASN +P-2GS +PREP +T-GSN +N-GSN +CONJ +V-PAM-2S +ADV-S +V-2APM-2S +T-DSM +N-DSM +P-2GS +CONJ +ADV +V-2AAP-NSM +V-PAM-2S +T-ASN +N-ASN +P-2GS +V-PAM-2S +V-PAP-NSM +T-DSM +N-DSM +P-2GS +ADV +ADV +R-GSN-ATT +V-PAI-2S +PREP +P-GSM +PREP +T-DSF +N-DSF +PRT-N +ADV +P-2AS +V-2AAS-3S +T-NSM +N-NSM +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +T-DSM +N-DSM +CONJ +PREP +N-ASF +V-FPI-2S +HEB +V-PAI-1S +P-2DS +PRT-N +PRT-N +V-2AAS-2S +ADV +ADV +PRT +V-2AAS-2S +T-ASM +A-ASM-S +N-ASM +V-AAI-2P +CONJ +V-API-3S +PRT-N +V-FAI-2S +CONJ +P-1NS +V-PAI-1S +P-2DP +CONJ +A-NSM +T-NSM +V-PAP-NSM +N-ASF +PREP +T-ASN +V-AAN +P-ASF +ADV +V-AAI-3S +P-ASF +PREP +T-DSF +N-DSF +P-GSM +CONJ +COND +T-NSM +N-NSM +P-2GS +T-NSM +A-NSM +V-PAI-3S +P-2AS +V-2AAM-2S +P-ASM +CONJ +V-2AAM-2S +PREP +P-2GS +CONJ +V-PAI-3S +P-2DS +CONJ +V-2AMS-3S +A-NSN +T-GPN +N-GPN +P-2GS +CONJ +PRT-N +A-NSN +T-NSN +N-NSN +P-2GS +V-APS-3S +PREP +N-ASF +CONJ +COND +T-NSF +A-NSF +P-2GS +N-NSF +V-PAI-3S +P-2AS +V-AAM-2S +P-ASF +CONJ +V-2AAM-2S +PREP +P-2GS +CONJ +V-PAI-3S +P-2DS +CONJ +V-2AMS-3S +A-NSN +T-GPN +N-GPN +P-2GS +CONJ +PRT-N +A-NSN +T-NSN +N-NSN +P-2GS +PREP +N-ASF +V-2AAS-3S +CONJ +V-API-3S +PRT +R-NSM +V-AAS-3S +T-ASF +N-ASF +P-GSM +V-2AAM-3S +P-DSF +N-ASN +CONJ +P-1NS +V-PAI-1S +P-2DP +CONJ +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +P-GSM +ADV +N-GSM +N-GSF +V-PAI-3S +P-ASF +V-APN +CONJ +COND +R-NSM +V-RPP-ASF +V-AAS-3S +V-PNI-3S +ADV +V-AAI-2P +CONJ +V-API-3S +T-DPM +A-DPM +PRT-N +V-FAI-2S +CONJ +V-FAI-2S +T-DSM +N-DSM +T-APM +N-APM +P-2GS +CONJ +P-1NS +V-PAI-1S +P-2DP +PRT-N +V-AAN +ADV +CONJ-N +PREP +T-DSM +N-DSM +CONJ +V-PAI-3S +N-NSM +T-GSM +N-GSM +CONJ-N +PREP +T-DSF +N-DSF +CONJ +V-PAI-3S +N-NSN +T-GPM +N-GPM +P-GSM +CONJ-N +PREP +N-APN +CONJ +V-PAI-3S +N-NSF +T-GSM +A-GSM +N-GSM +CONJ-N +PREP +T-DSF +N-DSF +P-2GS +V-AAS-2S +CONJ +PRT-N +V-PNI-2S +A-ASF +N-ASF +V-AAN +A-ASF +PRT +A-ASF +CONJ +V-PAM-3S +T-NSM +N-NSM +P-2GP +PRT +PRT +PRT-N +PRT-N +CONJ +T-NSN +A-NSN +D-GPM +PREP +T-GSM +A-GSM +V-PAI-3S +V-AAI-2P +CONJ +V-API-3S +N-ASM +PREP +N-GSM +CONJ +N-ASM +PREP +N-GSM +CONJ +P-1NS +V-PAI-1S +P-2DP +PRT-N +V-2AAN +T-DSM +A-DSM +CONJ +R-NSM +P-2AS +V-PAI-3S +PREP +T-ASF +A-ASF +N-ASF +P-2GS +V-AAM-2S +P-DSM +CONJ +T-ASF +A-ASF +CONJ +T-DSM +V-PAP-DSM +P-2DS +V-APN +CONJ +T-ASM +N-ASM +P-2GS +V-2AAN +V-2AAM-2S +P-DSM +CONJ +T-ASN +N-ASN +CONJ +R-NSM +P-2AS +V-FAI-3S +N-ASN +A-ASN +V-PAM-2S +PREP +P-GSM +A-NUI +T-DSM +V-PAP-DSM +P-2AS +V-2AAM-2S +CONJ +T-ASM +V-PAP-ASM +PREP +P-2GS +V-AMN +PRT-N +V-2APS-2S +V-AAI-2P +CONJ +V-API-3S +V-FAI-2S +T-ASM +ADV +P-2GS +CONJ +V-FAI-2S +T-ASM +A-ASM +P-2GS +CONJ +P-1NS +V-PAI-1S +P-2DP +V-PAM-2P +T-APM +A-APM +P-2GP +CONJ +V-PNM-2P +PREP +T-GPM +V-PAP-GPM +P-2AP +ADV +V-2ADS-2P +N-NPM +T-GSM +N-GSM +P-2GP +T-GSM +PREP +N-DPM +CONJ +T-ASM +N-ASM +P-GSM +V-PAI-3S +PREP +A-APM +CONJ +A-APM +CONJ +V-PAI-3S +PREP +A-APM +CONJ +A-APM +CONJ +COND +V-AAS-2P +T-APM +V-PAP-APM +P-2AP +I-ASM +N-ASM +V-PAI-2P +PRT-I +CONJ +T-NPM +N-NPM +T-ASN +P-ASN +V-PAI-3P +CONJ +COND +V-ADS-2P +T-APM +N-APM +P-2GP +ADV +I-ASN +A-ASN +V-PAI-2P +PRT-I +CONJ +T-NPM +A-NPM +T-ASN +P-ASN +V-PAI-3P +CONJ +V-FDI-2P +P-2NP +A-NPM +ADV +T-NSM +N-NSM +P-2GP +T-NSM +A-NSM +A-NSM +V-PAI-3S +CONJ +V-PAM-2P +T-ASF +N-ASF +P-2GP +PRT-N +V-PAN +PREP +T-GPM +N-GPM +PREP +T-ASN +V-APN +P-DPM +CONJ +COND +PRT-N +N-ASM +PRT-N +V-PAI-2P +PREP +T-DSM +N-DSM +P-2GP +T-DSM +PREP +T-DPM +N-DPM +CONJ +CONJ +V-PAS-2S +N-ASF +PRT-N +V-AAS-2S +PREP +P-2GS +ADV +T-NPM +N-NPM +V-PAI-3P +PREP +T-DPF +N-DPF +CONJ +PREP +T-DPF +N-DPF +ADV +V-APS-3P +PREP +T-GPM +N-GPM +HEB +V-PAI-1S +P-2DP +V-PAI-3P +T-ASM +N-ASM +P-GPM +CONJ +P-2GS +V-PAP-GSM +N-ASF +PRT-N +V-2AAM-3S +T-NSF +A-NSF +P-2GS +I-ASN +V-PAI-3S +T-NSF +A-NSF +P-2GS +ADV +V-PAS-3S +P-2GS +T-NSF +N-NSF +PREP +T-DSN +A-DSN +CONJ +T-NSM +N-NSM +P-2GS +T-NSM +V-PAP-NSM +PREP +T-DSN +A-DSN +V-FAI-3S +P-2DS +CONJ +CONJ +V-PNS-2P +PRT-N +V-FDI-2P +ADV +T-NPM +N-NPM +CONJ +V-PAI-3P +PREP +T-DPF +N-DPF +CONJ +PREP +T-DPF +N-DPF +T-GPF +N-GPF +V-RAP-NPM +V-PNN +ADV +V-2APS-3P +T-DPM +N-DPM +HEB +V-PAI-1S +P-2DP +V-PAI-3P +T-ASM +N-ASM +P-GPM +CONJ +CONJ +P-2NS +V-PNS-2S +V-2AAM-2S +PREP +T-ASN +N-ASN +P-2GS +CONJ +V-AAP-NSM +T-ASF +N-ASF +P-2GS +V-ADM-2S +T-DSM +N-DSM +P-2GS +T-DSM +PREP +T-DSN +A-DSN +CONJ +T-NSM +N-NSM +P-2GS +T-NSM +V-PAP-NSM +PREP +T-DSN +A-DSN +V-FAI-3S +P-2DS +CONJ +V-PNP-NPM +PRT-N +V-AAS-2P +ADV +T-NPM +A-NPM +CONJ +V-PAI-3P +CONJ +PREP +T-DSF +N-DSF +P-GPM +V-FPI-3P +CONJ +PRT-N +V-APS-2P +P-DPM +CONJ +V-RAI-3S +T-NSM +N-NSM +P-2GP +R-GPN +N-ASF +V-PAI-2P +PREP +T-GSN +P-2AP +V-AAN +P-ASM +CONJ +ADV +V-PNM-2P +P-2NP +N-VSM +P-1GP +T-NSM +PREP +T-DPM +N-DPM +V-APM-3S +T-NSN +N-NSN +P-2GS +V-2AAM-3S +T-NSF +N-NSF +P-2GS +V-AOM-3S +T-NSN +N-NSN +P-2GS +ADV +PREP +N-DSM +CONJ +PREP +N-GSF +T-ASM +N-ASM +P-1GP +T-ASM +A-ASM +V-2AAM-2S +P-1DP +ADV +CONJ +V-2AAM-2S +P-1DP +T-APN +N-APN +P-1GP +ADV +CONJ +P-1NP +V-AAI-1P +T-DPM +N-DPM +P-1GP +CONJ +PRT-N +V-AAS-2S +P-1AP +PREP +N-ASM +CONJ +V-ADM-2S +P-1AP +PREP +T-GSM +A-GSM +CONJ +COND +V-2AAS-2P +T-DPM +N-DPM +T-APN +N-APN +P-GPM +V-FAI-3S +CONJ +P-2DP +T-NSM +N-NSM +P-2GP +T-NSM +A-NSM +CONJ +COND +PRT-N +V-2AAS-2P +T-DPM +N-DPM +CONJ-N +T-NSM +N-NSM +P-2GP +V-FAI-3S +T-APN +N-APN +P-2GP +CONJ +CONJ +V-PAS-2P +PRT-N +V-PNM-2P +ADV +T-NPM +N-NPM +A-NPM +CONJ +V-PAI-3P +T-APN +N-APN +P-GPM +ADV +V-2APS-3P +T-DPM +N-DPM +V-PAP-NPM +HEB +V-PAI-1S +P-2DP +V-PAI-3P +T-ASM +N-ASM +P-GPM +CONJ +P-2NS +V-PAP-NSM +V-AMM-2S +P-2GS +T-ASF +N-ASF +CONJ +T-ASN +N-ASN +P-2GS +V-AMM-2S +ADV +PRT-N +V-2APS-2S +T-DPM +N-DPM +V-PAP-NSM +CONJ +T-DSM +N-DSM +P-2GS +T-DSM +PREP +T-DSN +A-DSN +CONJ +T-NSM +N-NSM +P-2GS +T-NSM +V-PAP-NSM +PREP +T-DSN +A-DSN +V-FAI-3S +P-2DS +PRT-N +V-PAM-2P +P-2DP +N-APM +PREP +T-GSF +N-GSF +ADV +N-NSM +CONJ +N-NSF +V-PAI-3S +CONJ +ADV +N-NPM +V-PAI-3P +CONJ +V-PAI-3P +CONJ +V-PAM-2P +P-2DP +N-APM +PREP +N-DSM +ADV +CONJ-N +N-NSM +CONJ-N +N-NSF +V-PAI-3S +CONJ +ADV +N-NPM +PRT-N +V-PAI-3P +CONJ-N +V-PAI-3P +CONJ +ADV +V-PAI-3S +T-NSM +N-NSM +P-2GS +ADV +V-FDI-3S +CONJ +T-NSF +N-NSF +P-2GS +T-NSM +N-NSM +T-GSN +N-GSN +V-PAI-3S +T-NSM +N-NSM +CONJ +COND +V-PAS-3S +T-NSM +N-NSM +P-2GS +A-NSM +A-NSN +T-NSN +N-NSN +P-2GS +A-NSN +V-FDI-3S +CONJ +COND +T-NSM +N-NSM +P-2GS +A-NSM +V-PAS-3S +A-NSN +T-NSN +N-NSN +P-2GS +A-NSN +V-FDI-3S +CONJ +COND +T-NSN +N-NSN +T-NSN +PREP +P-2DS +N-NSN +V-PAI-3S +T-NSN +N-NSN +Q-NSN +A-NSM-N +V-PNI-3S +A-DPM +N-DPM +V-PAN +CONJ +PRT +T-ASM +A-ASM +V-FAI-3S +CONJ +T-ASM +A-ASM +V-FAI-3S +PRT +A-GSM +V-FDI-3S +CONJ +T-GSM +A-GSM +V-FAI-3S +PRT-N +V-PNI-2P +N-DSM +V-PAN +CONJ +N-DSM +PREP +D-ASN +V-PAI-1S +P-2DP +PRT-N +V-PAM-2P +T-DSF +N-DSF +P-2GP +I-ASN +V-2AAS-2P +PRT +I-ASN +V-2AAS-2P +CONJ-N +T-DSN +N-DSN +P-2GP +I-ASN +V-AMS-2P +PRT-I +T-NSF +N-NSF +A-NSN-C +V-PAI-3S +T-GSF +N-GSF +CONJ +T-NSN +N-NSN +T-GSN +N-GSN +V-AAM-2P +PREP +T-APN +N-APN +T-GSM +N-GSM +CONJ +PRT-N +V-PAI-3P +CONJ-N +V-PAI-3P +CONJ-N +V-PAI-3P +PREP +N-APF +CONJ +T-NSM +N-NSM +P-2GP +T-NSM +A-NSM +V-PAI-3S +P-APN +PRT-N +P-2NP +ADV +V-PAI-2P +P-GPN +CONJ +I-NSM +PREP +P-2GP +V-PAP-NSM +V-PNI-3S +V-2AAN +PREP +T-ASF +N-ASF +P-GSM +N-ASM +A-ASM +CONJ +PREP +N-GSN +I-ASN +V-PAI-2P +V-2AAM-2P +T-APN +N-APN +T-GSM +N-GSM +ADV +V-PAI-3P +PRT-N +V-PAI-3P +CONJ-N +V-PAI-3P +CONJ +V-PAI-1S +P-2DP +CONJ +CONJ-N +N-NSM +PREP +A-DSF +T-DSF +N-DSF +P-GSM +V-2AMI-3S +ADV +A-ASN +D-GPN +CONJ +COND +T-ASM +N-ASM +T-GSM +N-GSM +ADV +V-PAP-ASM +CONJ +ADV +PREP +N-ASM +V-PPP-ASM +T-NSM +N-NSM +ADV +V-PAI-3S +PRT-N +A-DSN +ADV +P-2AP +A-VPM +CONJ +PRT-N +V-AAS-2P +V-PAP-NPM +I-ASN +V-2AAS-1P +PRT +I-ASN +V-2AAS-1P +PRT +I-ASN +V-2AMS-1P +CONJ +A-APN +D-APN +T-NPN +N-NPN +V-PAI-3P +CONJ +V-RAI-3S +T-NSM +N-NSM +P-2GP +T-NSM +A-NSM +CONJ +V-PAI-2P +D-GPN +A-GPN +CONJ +V-PAM-2P +ADV-S +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +P-GSM +CONJ +D-NPN +A-NPN +V-FPI-3S +P-2DP +CONJ +PRT-N +V-AAS-2P +PREP +T-ASF +ADV +CONJ +T-NSF +ADV +V-FAI-3S +F-3GSF +A-NSN +T-DSF +N-DSF +T-NSF +N-NSF +P-GSF +PRT-N +V-PAM-2P +CONJ +PRT-N +V-APS-2P +CONJ +PREP +R-DSN +N-DSN +V-PAI-2P +V-FPI-2P +CONJ +PREP +R-DSN +N-DSN +V-PAI-2P +V-FPI-3S +P-2DP +CONJ +I-ASN +V-PAI-2S +T-ASN +N-ASN +T-ASN +PREP +T-DSM +N-DSM +T-GSM +N-GSM +P-2GS +CONJ +T-ASF +PREP +T-DSM +S-2SDSM +N-DSM +N-ASF +PRT-N +V-PAI-2S +PRT +ADV-I +V-FAI-2S +T-DSM +N-DSM +P-2GS +V-2AAM-2S +V-2AAS-1S +T-ASN +N-ASN +PREP +T-GSM +N-GSM +P-2GS +CONJ +V-2AMM-2S +T-NSF +N-NSF +PREP +T-DSM +N-DSM +P-2GS +N-VSM +V-2AAM-2S +ADV-S +PREP +T-GSM +N-GSM +P-2GS +T-ASF +N-ASF +CONJ +ADV +V-FAI-2S +V-2AAN +T-ASN +N-ASN +PREP +T-GSM +N-GSM +T-GSM +N-GSM +P-2GS +PRT-N +V-2AAS-2P +T-ASN +A-ASN +T-DPM +N-DPM +CONJ-N +V-2AAS-2P +T-APM +N-APM +P-2GP +PREP +T-GPM +N-GPM +PRT-N +ADV +V-FAI-3P +P-APM +PREP +T-DPM +N-DPM +P-GPM +CONJ +V-2APP-NPM +V-AAS-3P +P-2AP +V-PAM-2P +CONJ +V-FPI-3S +P-2DP +V-PAM-2P +CONJ +V-FAI-2P +V-PAM-2P +CONJ +V-2FPI-3S +P-2DP +CONJ +A-NSM +T-NSM +V-PAP-NSM +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +V-PAI-3S +CONJ +T-DSM +V-PAP-DSM +V-2FPI-3S +PRT +V-PAI-3S +PREP +P-2GP +I-NSM +N-NSM +R-ASM +V-FAI-3S +T-NSM +N-NSM +P-GSM +N-ASM +PRT-N +N-ASM +V-FAI-3S +P-DSM +PRT +CONJ +N-ASM +V-FAI-3S +PRT-N +N-ASM +V-FAI-3S +P-DSM +CONJ +COND +P-2NP +A-NPM +V-PAP-NPM +V-RAI-2P +N-APN +A-APN +V-PAN +T-DPN +N-DPN +P-2GP +Q-DSN +ADV +T-NSM +N-NSM +P-2GP +T-NSM +PREP +T-DPM +N-DPM +V-FAI-3S +A-APN +T-DPM +V-PAP-DPM +P-ASM +CONJ +A-APN +COND +K-APN +V-PAS-2P +CONJ +V-PAS-3P +P-2DP +T-NPM +N-NPM +ADV +CONJ +P-2NP +V-PAM-2P +P-DPM +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +V-2AAM-2P +PREP +T-GSF +A-GSF +N-GSF +CONJ +A-NSF +T-NSF +N-NSF +CONJ +A-NSF +T-NSF +N-NSF +T-NSF +V-PAP-NSF +PREP +T-ASF +N-ASF +CONJ +A-NPM +V-PAI-3P +T-NPM +V-PNP-NPM +PREP +P-GSF +CONJ +A-NSF +T-NSF +N-NSF +CONJ +V-RPP-NSF +T-NSF +N-NSF +T-NSF +V-PAP-NSF +PREP +T-ASF +N-ASF +CONJ +A-NPM +V-PAI-3P +T-NPM +V-PAP-NPM +P-ASF +V-PAM-2P +PREP +T-GPM +N-GPM +R-NPM +V-PNI-3P +PREP +P-2AP +PREP +N-DPN +N-GPN +CONJ +ADV +V-PAI-3P +N-NPM +A-NPM +PREP +T-GPM +N-GPM +P-GPM +V-FDI-2P +P-APM +PRT-I +V-PAI-3P +PREP +N-GPF +N-APF +PRT +PREP +N-GPM +N-APN +ADV +A-NSN +N-NSN +A-NSN +N-APM +A-APM +V-PAI-3S +CONJ +T-NSN +A-NSN +N-NSN +N-APM +A-APM +V-PAI-3S +PRT-N +V-PNI-3S +N-NSN +A-NSN +N-APM +A-APM +V-2AAN +CONJ-N +N-NSN +A-NSN +N-APM +A-APM +V-2AAN +A-NSN +N-NSN +PRT-N +V-PAP-NSN +N-ASM +A-ASM +V-PPI-3S +CONJ +PREP +N-ASN +V-PPI-3S +PRT +PREP +T-GPM +N-GPM +P-GPM +V-FDI-2P +P-APM +PRT-N +A-NSM +T-NSM +V-PAP-NSM +P-1DS +N-VSM +N-VSM +V-FDI-3S +PREP +T-ASF +N-ASF +T-GPM +N-GPM +CONJ +T-NSM +V-PAP-NSM +T-ASN +N-ASN +T-GSM +N-GSM +P-1GS +T-GSM +PREP +T-DPM +N-DPM +A-NPM +V-FAI-3P +P-1DS +PREP +D-DSF +T-DSF +N-DSF +N-VSM +N-VSM +PRT-N +T-DSN +S-2SDSN +N-DSN +V-AAI-1P +CONJ +T-DSN +S-2SDSN +N-DSN +N-APN +V-2AAI-1P +CONJ +T-DSN +S-2SDSN +N-DSN +N-APF +A-APF +V-AAI-1P +CONJ +ADV +V-FAI-1S +P-DPM +CONJ +ADV-N +V-2AAI-1S +P-2AP +V-PAM-2P +PREP +P-1GS +T-NPM +V-PNP-NPM +T-ASF +N-ASF +CONJ +A-NSM +R-NSM +V-PAI-3S +P-1GS +T-APM +N-APM +D-APM +CONJ +V-PAI-3S +P-APM +V-FPI-3S +N-DSM +A-DSM +R-NSM +V-AAI-3S +P-GSM +T-ASF +N-ASF +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +T-NSF +N-NSF +CONJ +V-2AAI-3P +T-NPM +N-NPM +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +V-AAI-3P +T-DSF +N-DSF +D-DSF +CONJ +PRT-N +V-2AAI-3S +CONJ +V-LPI-3S +PREP +T-ASF +N-ASF +CONJ +A-NSM +T-NSM +V-PAP-NSM +P-1GS +T-APM +N-APM +D-APM +CONJ +PRT-N +V-PAP-NSM +P-APM +V-FPI-3S +N-DSM +A-DSM +R-NSM +V-AAI-3S +P-GSM +T-ASF +N-ASF +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +T-NSF +N-NSF +CONJ +V-2AAI-3P +T-NPM +N-NPM +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +V-AAI-3P +T-DSF +N-DSF +D-DSF +CONJ +V-2AAI-3S +CONJ +V-IAI-3S +T-NSF +N-NSF +P-GSF +A-NSF +CONJ +V-2ADI-3S +ADV +V-AAI-3S +T-NSM +N-NSM +T-APM +N-APM +D-APM +V-IPI-3P +T-NPM +N-NPM +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-IAI-3S +V-PAP-NSM +P-APM +ADV +N-ASF +V-PAP-NSM +CONJ +PRT-N +ADV +T-NPM +N-NPM +P-GPM +CONJ +V-2AAP-GSM +P-GSM +PREP +T-GSN +N-GSN +V-AAI-3P +P-DSM +N-NPM +A-NPM +CONJ +V-2AMM-2S +A-NSM +V-2AAP-NSM +V-IAI-3S +P-DSM +V-PAP-NSM +N-VSM +COND +V-PAS-2S +V-PNI-2S +P-1AS +V-AAN +CONJ +V-AAP-NSM +T-ASF +N-ASF +V-ADI-3S +P-GSM +V-PAP-NSM +V-PAI-1S +V-APM-2S +CONJ +ADV +V-API-3S +P-GSM +T-NSF +N-NSF +CONJ +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-PAM-2S +A-DSM-N +V-2AAS-2S +CONJ +V-PAM-2S +F-2ASM +V-AAM-2S +T-DSM +N-DSM +CONJ +V-2AAM-2S +T-ASN +N-ASN +R-ASN +V-AAI-3S +N-NSM +PREP +N-ASN +P-DPM +CONJ +V-2AAP-GSM +P-GSM +PREP +N-PRI +V-2AAI-3S +P-DSM +N-NSM +V-PAP-NSM +P-ASM +CONJ +V-PAP-NSM +N-VSM +T-NSM +N-NSM +P-1GS +V-RPI-3S +PREP +T-DSF +N-DSF +A-NSM +ADV +V-PPP-NSM +V-PAI-3S +P-DSM +P-1NS +V-2AAP-NSM +V-FAI-1S +P-ASM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-IAI-3S +N-VSM +PRT-N +V-PAI-1S +A-NSM +CONJ +PREP +P-1GS +T-ASF +N-ASF +V-2AAS-2S +CONJ +ADV +V-2AAM-2S +N-DSM +CONJ +V-FPI-3S +T-NSM +N-NSM +P-1GS +CONJ +CONJ +P-1NS +V-PAI-1S +N-NSM +PREP +N-ASF +V-PAP-NSM +PREP +F-1ASM +N-APM +CONJ +V-PAI-1S +D-DSM +V-AOM-2S +CONJ +V-PNI-3S +CONJ +A-DSM +V-PNM-2S +CONJ +V-PNI-3S +CONJ +T-DSM +N-DSM +P-1GS +V-AAM-2S +D-ASN +CONJ +V-PAI-3S +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-AAI-3S +CONJ +V-2AAI-3S +T-DPM +V-PAP-DPM +HEB +V-PAI-1S +P-2DP +PREP +A-DSM-N +D-ASF +N-ASF +PREP +T-DSM +N-PRI +V-2AAI-1S +CONJ +V-PAI-1S +P-2DP +CONJ +A-NPM +PREP +N-GPF +CONJ +N-GPF +V-FAI-3P +CONJ +V-FPI-3P +PREP +N-PRI +CONJ +N-PRI +CONJ +N-PRI +PREP +T-DSF +N-DSF +T-GPM +N-GPM +CONJ +T-NPM +N-NPM +T-GSF +N-GSF +V-FPI-3P +PREP +T-ASN +N-ASN +T-ASN +A-ASN-C +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-DSM +N-DSM +V-PAM-2S +ADV +V-AAI-2S +V-AOM-3S +P-2DS +CONJ +V-API-3S +T-NSM +N-NSM +PREP +T-DSF +N-DSF +D-DSF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +N-GSM +V-2AAI-3S +T-ASF +N-ASF +P-GSM +V-RPP-ASF +CONJ +V-PAP-ASF +CONJ +V-ADI-3S +T-GSF +N-GSF +P-GSF +CONJ +V-AAI-3S +P-ASF +T-NSM +N-NSM +CONJ +V-API-3S +CONJ +V-IAI-3S +P-DSM +CONJ +A-GSF +V-2ADP-GSF +V-AAI-3P +P-DSM +V-PNP-APM +A-APM +CONJ +V-2AAI-3S +T-APN +N-APN +N-DSM +CONJ +A-APM +T-APM +ADV +V-PAP-APM +V-AAI-3S +ADV +V-APS-3S +T-NSN +V-APP-NSN +PREP +N-GSM +T-GSM +N-GSM +V-PAP-GSM +P-NSM +T-APF +N-APF +P-1GP +V-2AAI-3S +CONJ +T-APF +N-APF +V-AAI-3S +CONJ +T-NSM +N-NSM +V-2AAP-NSM +N-ASM +PREP +P-ASM +V-AAI-3S +V-2AAN +PREP +T-ASN +ADV +CONJ +V-2AAP-NSM +A-NSM +N-NSM +V-2AAI-3S +P-DSM +N-VSM +V-FAI-1S +P-2DS +COND +ADV +V-PNS-2S +CONJ +V-PAI-3S +P-DSM +T-NSM +N-NSM +T-NPF +N-NPF +N-APM +V-PAI-3P +CONJ +T-NPN +N-NPN +T-GSM +N-GSM +N-APF +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +V-PAI-3S +ADV-I +T-ASF +N-ASF +V-PAS-3S +CONJ +A-NSM +T-GPM +N-GPM +V-2AAI-3S +P-DSM +N-VSM +V-AAM-2S +P-1DS +ADV-S +V-2AAN +CONJ +V-AAN +T-ASM +N-ASM +P-1GS +CONJ +T-NSM +N-NSM +V-PAI-3S +P-DSM +V-PAM-2S +P-1DS +CONJ +V-2AAM-2S +T-APM +A-APM +V-AAN +T-APM +F-3GPM +A-APM +CONJ +V-2AAP-DSM +P-DSM +PREP +T-ASN +N-ASN +V-AAI-3P +P-DSM +T-NPM +N-NPM +P-GSM +CONJ +V-2AMM-2S +N-NSM +A-NSM +V-2ADI-3S +PREP +T-DSF +N-DSF +CONJ +T-ASN +N-ASN +V-PPN +PREP +T-GPN +N-GPN +CONJ +P-NSM +V-IAI-3S +CONJ +V-2AAP-NPM +V-AAI-3P +P-ASM +V-PAP-NPM +N-VSM +V-AAM-2S +V-PMI-1P +CONJ +V-PAI-3S +P-DPM +I-NSN +A-NPM +V-PAI-2P +A-VPM +ADV +V-APP-NSM +V-AAI-3S +T-DPM +N-DPM +CONJ +T-DSF +N-DSF +CONJ +V-2ADI-3S +N-NSF +A-NSF +CONJ +T-NPM +N-NPM +V-AAI-3P +V-PAP-NPM +A-NSM +V-PAI-3S +D-NSM +CONJ +CONJ +T-NPM +N-NPM +CONJ +T-NSF +N-NSF +P-DSM +V-PAI-3P +CONJ +V-2AAP-GSM +P-GSM +PREP +T-ASN +ADV +PREP +T-ASF +N-ASF +T-GPM +A-GPM +V-AAI-3P +P-DSM +A-NUI +V-PNP-NPM +PREP +T-GPN +N-GPN +V-PNP-NPM +A-NPM +ADV +CONJ +PRT-N +V-PAN +X-ASM +V-2AAN +PREP +T-GSF +N-GSF +D-GSF +CONJ +V-2AMM-2S +V-AAI-3P +V-PAP-NPM +I-NSN +P-1DP +CONJ +P-2DS +N-VSM +T-GSM +N-GSM +V-2AAI-2S +ADV +PREP +N-GSM +V-AAN +P-1AP +CONJ +V-IAI-3S +ADV +PREP +P-GPM +N-NSF +N-GPM +A-GPM +V-PPP-NSF +CONJ +T-NPM +N-NPM +V-IAI-3P +P-ASM +V-PAP-NPM +COND +V-PAI-2S +P-1AP +V-AAM-2S +P-1AP +PREP +T-ASF +N-ASF +T-GPM +N-GPM +CONJ +V-2AAI-3S +P-DPM +V-PAM-2P +CONJ +T-NPM +V-2AAP-NPM +V-2AAI-3P +PREP +T-APM +N-APM +CONJ +V-2AMM-2S +V-AAI-3S +A-NSF +T-NSF +N-NSF +PREP +T-GSM +N-GSM +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3P +PREP +T-DPN +N-DPN +CONJ +T-NPM +V-PAP-NPM +V-2AAI-3P +CONJ +V-2AAP-NPM +PREP +T-ASF +N-ASF +V-AAI-3P +A-APN +CONJ +T-APN +T-GPM +V-PNP-GPM +CONJ +V-2AMM-2S +A-NSF +T-NSF +N-NSF +V-2AAI-3S +PREP +N-ASF +T-DSM +N-DSM +CONJ +V-2AAP-NPM +P-ASM +V-AAI-3P +ADV +V-2AAS-3S +PREP +T-GPN +N-GPN +P-GPM +CONJ +V-2AAP-NSM +PREP +N-ASN +V-AAI-3S +CONJ +V-2AAI-3S +PREP +T-ASF +A-ASF +N-ASF +CONJ +V-2AMM-2S +V-IAI-3P +P-DSM +A-ASM +PREP +N-GSF +V-RPP-ASM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-ASF +N-ASF +P-GPM +V-2AAI-3S +T-DSM +A-DSM +V-PAM-2S +N-VSN +V-PPI-3P +P-2GS +T-NPF +N-NPF +CONJ +V-2AMM-2S +X-NPM +T-GPM +N-GPM +V-2AAI-3P +PREP +F-3DPM +D-NSM +V-PAI-3S +CONJ +T-NSM +N-NSM +V-RAP-NSM +T-APF +N-APF +P-GPM +V-2AAI-3S +CONJ +I-NSN +V-PNI-2P +A-APN +PREP +T-DPF +N-DPF +P-2GP +CONJ +I-NSN +V-PAI-3S +A-NSN-C +V-2AAN +V-PPI-3P +P-2GS +T-NPF +N-NPF +PRT +V-2AAN +V-PAM-2S +CONJ +V-PAM-2S +CONJ +CONJ +V-RAS-2P +CONJ +N-ASF +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +T-GSF +N-GSF +V-PAN +N-APF +ADV +V-PAI-3S +T-DSM +A-DSM +V-PAM-2S +V-AAM-2S +P-2GS +T-ASF +N-ASF +CONJ +V-PAM-2S +PREP +T-ASM +N-ASM +P-2GS +CONJ +V-APP-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-AOI-3P +CONJ +V-AAI-3P +T-ASM +N-ASM +T-ASM +V-2AAP-ASM +N-ASF +D-ASF +T-DPM +N-DPM +CONJ +V-PAP-NSM +ADV +T-NSM +N-NSM +V-2AAI-3S +N-ASM +V-PNP-ASM +PREP +T-ASN +N-ASN +N-ASM +V-PPP-ASM +CONJ +V-PAI-3S +P-DSM +V-PAM-2S +P-1DS +CONJ +V-2AAP-NSM +V-AAI-3S +P-DSM +CONJ +V-2ADI-3S +P-GSM +V-PNP-GSM +PREP +T-DSF +N-DSF +CONJ +V-2AMM-2S +A-NPM +N-NPM +CONJ +A-NPM +V-2AAP-NPM +V-INI-3P +T-DSM +N-DSM +CONJ +T-DPM +N-DPM +P-GSM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-IAI-3P +T-DPM +N-DPM +P-GSM +PREP +I-ASN +PREP +T-GPM +N-GPM +CONJ +A-GPM +V-PAI-3S +T-NSM +N-NSM +P-2GP +CONJ +T-NSM +V-AAP-NSM +V-2AAI-3S +PRT-N +N-ASF +N-GSM +V-PAI-3P +T-NPM +V-PAP-NPM +CONJ +T-NPM +ADV +V-PAP-NPM +CONJ +V-AOP-NPM +V-2AAM-2P +I-NSN +V-PAI-3S +N-ASN +V-PAI-1S +CONJ +PRT-N +N-ASF +CONJ +PRT-N +V-2AAI-1S +V-AAN +A-APM +CONJ +A-APM +ADV +V-PNI-3P +P-DSM +T-NPM +N-NPM +N-GSM +V-PAP-NPM +PREP +I-ASN +P-1NP +CONJ +T-NPM +N-NPM +V-PAI-1P +CONJ +T-NPM +N-NPM +P-2GS +PRT-N +V-PAI-3P +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +PRT-N +V-PNI-3P +T-NPM +N-NPM +T-GSM +N-GSM +V-PAN +PREP +K-ASN +PREP +P-GPM +V-PAI-3S +T-NSM +N-NSM +CONJ +V-FDI-3P +N-NPF +CONJ +V-APS-3S +PREP +P-GPM +T-NSM +N-NSM +CONJ +ADV +V-FAI-3P +CONJ +A-NSM-N +V-PAI-3S +N-ASN +N-GSN +A-GSN +PREP +N-DSN +A-DSN +CONJ +V-PAI-3S +T-NSN +N-NSN +P-GSN +PREP +T-GSN +N-GSN +CONJ +A-NSN +N-NSN +V-PNI-3S +CONJ-N +V-PAI-3P +N-ASM +A-ASM +PREP +N-APM +A-APM +CONJ +COND +PRT-N +V-PPI-3P +T-NPM +N-NPM +CONJ +T-NSM +N-NSM +V-PPI-3S +CONJ +T-NPM +N-NPM +V-PPI-3P +CONJ +V-PAI-3P +N-ASM +A-ASM +PREP +N-APM +A-APM +CONJ +A-NPM +V-PPI-3P +D-APN +P-GSM +V-PAP-GSM +P-DPM +V-2AMM-2S +N-NSM +A-NSM +V-2AAP-NSM +V-IAI-3S +P-DSM +V-PAP-NSM +CONJ +T-NSF +N-NSF +P-1GS +ADV +V-AAI-3S +CONJ +V-2AAP-NSM +V-2AAM-2S +T-ASF +N-ASF +P-2GS +PREP +P-ASF +CONJ +V-FDI-3S +CONJ +V-APP-NSM +T-NSM +N-NSM +V-IAI-3S +P-DSM +CONJ +T-NPM +N-NPM +P-GSM +CONJ +V-2AMM-2S +N-NSF +V-PAP-NSF +A-NUI +N-APN +V-2AAP-NSF +ADV +V-ADI-3S +T-GSN +N-GSN +T-GSN +N-GSN +P-GSM +CONJ +V-IAI-3S +PREP +F-3DSF +COND +ADV +V-AMS-1S +T-GSN +N-GSN +P-GSM +V-FPI-1S +CONJ +T-NSM +N-NSM +V-2APP-NSM +CONJ +V-2AAP-NSM +P-ASF +V-2AAI-3S +V-PAM-2S +N-VSF +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +CONJ +V-API-3S +T-NSF +N-NSF +PREP +T-GSF +N-GSF +D-GSF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-2AAP-NSM +T-APM +N-APM +CONJ +T-ASM +N-ASM +V-PPP-ASM +V-IAI-3S +V-PAM-2P +CONJ +PRT-N +V-2AAI-3S +T-NSN +N-NSN +CONJ +V-PAI-3S +CONJ +V-IAI-3P +P-GSM +CONJ +ADV +V-API-3S +T-NSM +N-NSM +V-2AAP-NSM +V-AAI-3S +T-GSF +N-GSF +P-GSF +CONJ +V-API-3S +T-NSN +N-NSN +CONJ +V-2AAI-3S +T-NSF +N-NSF +D-NSF +PREP +A-ASF +T-ASF +N-ASF +D-ASF +CONJ +V-PAP-DSM +ADV +T-DSM +N-DSM +V-AAI-3P +A-NUI +A-NPM +V-PAP-NPM +CONJ +V-PAP-NPM +V-AAM-2S +P-1AP +N-NSM +N-PRI +CONJ +V-2AAP-DSM +PREP +T-ASF +N-ASF +V-2AAI-3P +P-DSM +T-NPM +A-NPM +CONJ +V-PAI-3S +P-DPM +T-NSM +N-NSM +V-PAI-2P +CONJ +V-PNI-1S +D-ASN +V-AAN +V-PAI-3P +P-DSM +PRT +N-VSM +ADV +V-ADI-3S +T-GPM +N-GPM +P-GPM +V-PAP-NSM +PREP +T-ASF +N-ASF +P-2GP +V-AOM-3S +P-2DP +CONJ +V-API-3P +P-GPM +T-NPM +N-NPM +CONJ +V-AOI-3S +P-DPM +T-NSM +N-NSM +V-PAP-NSM +V-PAM-2P +A-NSM-N +V-PAM-3S +CONJ +T-NPM +V-2AAP-NPM +V-AAI-3P +P-ASM +PREP +A-DSF +T-DSF +N-DSF +D-DSF +CONJ +P-GPM +V-PNP-GPM +V-2AMM-2S +V-AAI-3P +P-DSM +A-ASM +V-PNP-ASM +CONJ +V-APP-GSN +T-GSN +N-GSN +V-AAI-3S +T-NSM +A-NSM +CONJ +V-AAI-3P +T-NPM +N-NPM +V-PAP-NPM +ADV-N +V-2API-3S +ADV +PREP +T-DSM +N-PRI +CONJ +T-NPM +N-NPM +V-IAI-3P +PREP +T-DSM +N-DSM +T-GPN +N-GPN +V-PAI-3S +T-APN +N-APN +CONJ +V-IAI-3S +T-NSM +N-NSM +T-APF +N-APF +A-APF +CONJ +T-APF +N-APF +V-PAP-NSM +PREP +T-DPF +N-DPF +P-GPM +CONJ +V-PAP-NSM +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +V-PAP-NSM +A-ASF +N-ASF +CONJ +A-ASF +N-ASF +CONJ +V-2AAP-NSM +T-APM +N-APM +V-AOI-3S +PREP +P-GPM +CONJ +V-IAI-3P +V-RPP-NPM +CONJ +V-RPP-NPM +ADV +N-NPN +PRT-N +V-PAP-NPN +N-ASM +ADV +V-PAI-3S +T-DPM +N-DPM +P-GSM +PRT +T-NSM +N-NSM +A-NSM +CONJ +T-NPM +N-NPM +A-NPM +CONJ +V-AOM-2P +T-GSM +N-GSM +T-GSM +N-GSM +ADV +V-2AAS-3S +N-APM +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-ADP-NSM +T-APM +A-NUI +N-APM +P-GSM +V-AAI-3S +P-DPM +N-ASF +N-GPN +A-GPN +CONJ +V-PAN +P-APN +CONJ +V-PAN +A-ASF +N-ASF +CONJ +A-ASF +N-ASF +CONJ +T-GPM +A-NUI +N-GPM +T-NPN +N-NPN +V-PAI-3S +D-NPN +A-NSM-S +N-NSM +T-NSM +V-PPP-NSM +N-NSM +CONJ +N-NSM +T-NSM +N-NSM +P-GSM +CONJ +N-NSM +T-NSM +T-GSM +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +P-GSM +N-NSM +CONJ +N-NSM +N-NSM +CONJ +N-NSM +T-NSM +N-NSM +N-NSM +T-NSM +T-GSM +N-GSM +CONJ +N-NSM +N-NSM +T-NSM +N-NSM +CONJ +N-NSM +T-NSM +N-NSM +T-NSM +CONJ +V-2AAP-NSM +P-ASM +D-APM +T-APM +A-NUI +V-AAI-3S +T-NSM +N-NSM +V-AAP-NSM +P-DPM +V-PAP-NSM +PREP +N-ASF +N-GPN +PRT-N +V-2AAS-2P +CONJ +PREP +N-ASF +N-GPM +PRT-N +V-2AAS-2P +CONJ +V-PNM-2P +ADV +PREP +T-APN +N-APN +T-APN +V-2RAP-APN +N-GSM +N-PRI +CONJ +V-PNP-NPM +V-PAM-2P +V-PAP-NPM +CONJ +V-RAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +V-PAP-APM +V-PAM-2P +A-APM +V-PAM-2P +A-APM +V-PAM-2P +N-APN +V-PAM-2P +ADV +V-2AAI-2P +ADV +V-2AAM-2P +PRT-N +V-ADS-2P +N-ASM +CONJ-N +N-ASM +CONJ-N +N-ASM +PREP +T-APF +N-APF +P-2GP +PRT-N +N-ASF +PREP +N-ASF +CONJ-N +A-NUI +N-APM +CONJ-N +N-APN +CONJ-N +N-ASF +CONJ +A-NSM +T-NSM +N-NSM +T-GSF +N-GSF +P-GSM +CONJ +PRT +PREP +R-ASF +N-ASF +PRT +N-ASF +V-2AAS-2P +V-AAM-2P +I-NSM +PREP +P-DSF +A-NSM +V-PAI-3S +ADV-K +V-AAM-2P +ADV +PRT +V-2AAS-2P +CONJ +V-PNP-NPM +PREP +T-ASF +N-ASF +V-ADM-2P +P-ASF +CONJ +PRT +COND +V-PAS-3S +T-NSF +N-NSF +A-NSF +V-2AAM-3S +T-NSF +N-NSF +P-2GP +PREP +P-ASF +CONJ +COND +PRT-N +V-PAS-3S +A-NSF +T-NSF +N-NSF +P-2GP +PREP +P-2AP +V-2APM-3S +CONJ +PRT +R-NSM +PRT-N +V-ADS-3S +P-2AP +CONJ-N +V-AAS-3S +T-APM +N-APM +P-2GP +V-PNP-NPM +ADV +T-GSF +N-GSF +PRT +T-GSF +N-GSF +D-GSF +V-AAM-2P +T-ASM +N-ASM +T-GPM +N-GPM +P-2GP +HEB +V-PAI-1S +P-2DP +A-NSN-C +V-FDI-3S +N-DSF +N-GPN +CONJ +N-GPN +PREP +N-DSF +N-GSF +PRT +T-DSF +N-DSF +D-DSF +V-2AMM-2S +P-1NS +V-PAI-1S +P-2AP +ADV +N-APN +PREP +A-DSN +N-GPM +CONJ +V-PNM-2P +A-NPM +ADV +T-NPM +N-NPM +CONJ +A-NPM +ADV +T-NPF +N-NPF +CONJ +V-PAM-2P +PREP +T-GPM +N-GPM +CONJ +V-FAI-3P +P-2AP +PREP +N-APN +CONJ +PREP +T-DPF +N-DPF +P-GPM +V-FAI-3P +P-2AP +CONJ +CONJ +PREP +N-APM +CONJ +N-APM +V-FPI-2P +PREP +P-1GS +PREP +N-ASN +P-DPM +CONJ +T-DPN +N-DPN +CONJ +CONJ +V-2AAS-3P +P-2AP +PRT-N +V-AAS-2P +ADV-I +PRT +I-ASN +V-AAS-2P +CONJ +V-FPI-3S +P-2DP +PREP +D-DSF +T-DSF +N-DSF +I-ASN +V-AAS-2P +CONJ +PRT-N +P-2NP +V-PAI-2P +T-NPM +V-PAP-NPM +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +P-2GP +T-NSN +V-PAP-NSN +PREP +P-2DP +CONJ +V-FAI-3S +N-NSM +N-ASM +PREP +N-ASM +CONJ +N-NSM +N-ASN +CONJ +V-FDI-3P +N-NPN +PREP +N-APM +CONJ +V-FAI-3P +P-APM +CONJ +V-FDI-2P +V-PPP-NPM +PREP +A-GPM +PREP +T-ASN +N-ASN +P-1GS +CONJ +T-NSM +V-AAP-NSM +PREP +N-ASN +D-NSM +V-FPI-3S +CONJ +CONJ +V-PAS-3P +P-2AP +PREP +T-DSF +N-DSF +D-DSF +V-PAM-2P +PREP +T-ASF +A-ASF +CONJ +HEB +V-PAI-1S +P-2DP +PRT-N +PRT-N +V-AAS-2P +T-APF +N-APF +T-GSM +N-PRI +ADV +V-2AAS-3S +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +V-PAI-3S +N-NSM +PREP +T-ASM +N-ASM +CONJ-N +N-NSM +PREP +T-ASM +N-ASM +P-GSM +A-NSN +T-DSM +N-DSM +CONJ +V-2ADS-3S +ADV +T-NSM +N-NSM +P-GSM +CONJ +T-NSM +N-NSM +ADV +T-NSM +N-NSM +P-GSM +COND +T-ASM +N-ASM +N-PRI +V-AAI-3P +Q-DSN +ADV +T-APM +N-APM +P-GSM +CONJ +PRT-N +V-AOM-2P +P-APM +CONJ +A-NSN-N +V-PAI-3S +V-RPP-NSN +R-NSN +PRT-N +V-FPI-3S +CONJ +A-NSN +R-NSN +PRT-N +V-FPI-3S +R-ASN +V-PAI-1S +P-2DP +PREP +T-DSF +N-DSF +V-2AAM-2P +PREP +T-DSN +N-DSN +CONJ +R-ASN +PREP +T-ASN +N-ASN +V-PAI-2P +V-AAM-2P +PREP +T-GPN +N-GPN +CONJ +PRT-N +V-PNM-2P +PREP +T-GPM +V-PAP-GPM +T-ASN +N-ASN +CONJ +PRT-N +V-PNP-GPM +T-ASF +N-ASF +V-AAN +CONJ +V-PNM-2P +ADV +T-ASM +V-PNP-ASM +CONJ +N-ASF +CONJ +N-ASN +V-AAN +PREP +N-DSF +PRT-I +A-NUI +N-NPN +N-GSN +V-PPI-3S +CONJ +A-NSN +PREP +P-GPN +PRT-N +V-FDI-3S +PREP +T-ASF +N-ASF +PREP +T-GSM +N-GSM +P-2GP +CONJ +CONJ +P-2GP +T-NPF +N-NPF +T-GSF +N-GSF +A-NPF +V-RPP-NPF +V-PAI-3P +CONJ +PRT-N +V-PNM-2P +A-GPN +N-GPN +V-PAI-2P +P-2NP +CONJ +A-NSM +R-NSM +V-FAI-3S +PREP +P-1DS +PREP +T-GPM +N-GPM +V-FAI-1S +P-1NS-K +PREP +P-DSM +PREP +T-GSM +N-GSM +P-1GS +T-GSM +PREP +T-DPM +N-DPM +CONJ +PRT +R-NSM +V-ADS-3S +P-1AS +PREP +T-GPM +N-GPM +V-FDI-1S +P-1NS-K +P-ASM +PREP +T-GSM +N-GSM +P-1GS +T-GSM +PREP +T-DPM +N-DPM +PRT-N +V-AAS-2P +CONJ +V-2AAI-1S +V-2AAN +N-ASF +PREP +T-ASF +N-ASF +PRT-N +V-2AAI-1S +V-2AAN +N-ASF +CONJ +N-ASF +CONJ +V-2AAI-1S +V-AAN +N-ASM +PREP +T-GSM +N-GSM +P-GSM +CONJ +N-ASF +PREP +T-GSF +N-GSF +P-GSF +CONJ +N-ASF +PREP +T-GSF +N-GSF +P-GSF +CONJ +A-NPM +T-GSM +N-GSM +T-NPM +N-NPM +P-GSM +T-NSM +V-PAP-NSM +N-ASM +PRT +N-ASF +PREP +P-1AS +PRT-N +V-PAI-3S +P-1GS +A-NSM +CONJ +T-NSM +V-PAP-NSM +N-ASM +PRT +N-ASF +PREP +P-1AS +PRT-N +V-PAI-3S +P-1GS +A-NSM +CONJ +R-NSM +PRT-N +V-PAI-3S +T-ASM +N-ASM +P-GSM +CONJ +V-PAI-3S +ADV +P-1GS +PRT-N +V-PAI-3S +P-1GS +A-NSM +T-NSM +V-2AAP-NSM +T-ASF +N-ASF +P-GSM +V-FAI-3S +P-ASF +CONJ +T-NSM +V-AAP-NSM +T-ASF +N-ASF +P-GSM +PREP +P-1GS +V-FAI-3S +P-ASF +T-NSM +V-PNP-NSM +P-2AP +P-1AS +V-PNI-3S +CONJ +T-NSM +P-1AS +V-PNP-NSM +V-PNI-3S +T-ASM +V-AAP-ASM +P-1AS +T-NSM +V-PNP-NSM +N-ASM +PREP +N-ASN +N-GSM +N-ASM +N-GSM +V-FDI-3S +CONJ +T-NSM +V-PNP-NSM +A-ASM +PREP +N-ASN +A-GSM +N-ASM +A-GSM +V-FDI-3S +CONJ +COND +R-NSM +V-AAS-3S +A-ASM +T-GPM +A-GPM +D-GPM +N-ASN +A-GSN +ADV +PREP +N-ASN +N-GSM +HEB +V-PAI-1S +P-2DP +PRT-N +PRT-N +V-AAS-3S +T-ASM +N-ASM +P-GSM +CONJ +V-2ADI-3S +ADV +V-AAI-3S +T-NSM +N-NSM +V-PAP-NSM +T-DPM +A-NUI +N-DPM +P-GSM +V-2AAI-3S +ADV +T-GSN +V-PAN +CONJ +V-PAN +PREP +T-DPF +N-DPF +P-GPM +CONJ +T-NSM +N-NSM +V-AAP-NSM +PREP +T-DSN +N-DSN +T-APN +N-APN +T-GSM +N-GSM +V-AAP-NSM +PREP +T-GPM +N-GPM +P-GSM +V-2AAI-3S +P-DSM +P-2NS +V-PAI-2S +T-NSM +V-PNP-NSM +PRT +A-ASM +V-PAI-1P +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-AOP-NPM +V-AAM-2P +N-DSM +R-APN +V-PAI-2P +CONJ +V-PAI-2P +A-NPM +V-PAI-3P +CONJ +A-NPM +V-PAI-3P +A-NPM +V-PPI-3P +CONJ +A-NPM +V-PAI-3P +CONJ +A-NPM +V-PPI-3P +CONJ +A-NPM +V-PPI-3P +CONJ +A-NSM +V-PAI-3S +COND +R-NSM +PRT-N +V-APS-3S +PREP +P-1DS +CONJ +D-GPM +V-PNP-GPM +V-ADI-3S +T-NSM +N-NSM +V-PAN +T-DPM +N-DPM +PREP +N-GSM +I-ASN +V-ADN +V-2AAI-2P +PREP +T-ASF +A-ASF +N-ASM +PREP +N-GSM +V-PPP-ASM +CONJ +I-ASN +V-2AAN +V-2AAI-2P +N-ASM +PREP +A-DPN +V-RPP-ASM +V-2AMM-2S +T-NPM +T-APN +A-APN +V-PAP-NPM +PREP +T-DPM +N-DPM +T-GPM +N-GPM +CONJ +I-ASN +V-2AAI-2P +N-ASM +V-2AAN +PRT +V-PAI-1S +P-2DP +CONJ +A-ASN-C +N-GSM +D-NSM +V-PAI-3S +PREP +R-GSM +V-RPI-3S +V-2AMM-2S +P-1NS +V-PAI-1S +T-ASM +N-ASM +P-1GS +PREP +N-GSN +P-2GS +R-NSM +V-FAI-3S +T-ASF +N-ASF +P-2GS +PREP +P-2GS +HEB +V-PAI-1S +P-2DP +PRT-N +V-RPI-3S +PREP +A-DPM +N-GPF +A-NSM-C +N-GSM +T-GSM +N-GSM +CONJ +T-NSM +A-NSM-C +PREP +T-DSF +N-DSF +T-GPM +N-GPM +A-NSM-C +P-GSM +V-PAI-3S +CONJ +PREP +T-GPF +N-GPF +N-GSM +T-GSM +N-GSM +ADV +ADV +T-NSF +N-NSF +T-GPM +N-GPM +V-PPI-3S +CONJ +N-NPM +V-PAI-3P +P-ASF +CONJ +A-NPM +T-NPM +N-NPM +CONJ +T-NSM +N-NSM +ADV +N-GSM +V-AAI-3P +CONJ +COND +V-PAI-2P +V-ADN +P-NSM +V-PAI-3S +N-NSM +T-NSM +V-PAP-NSM +V-PNN +T-NSM +V-PAP-NSM +N-APN +V-PAM-3S +CONJ +I-DSN +V-FAI-1S +T-ASF +N-ASF +D-ASF +A-NSF +V-PAI-3S +N-DPN +V-PNP-DPN +PREP +T-DPF +N-DPF +R-NPN +V-PAP-NPN +T-DPN +A-DPN +V-PAP-DPN +V-AAI-1P +P-2DP +CONJ +PRT-N +V-ADI-2P +V-AAI-1P +CONJ +PRT-N +V-AMI-2P +CONJ +V-2AAI-3S +N-NSM +CONJ-N +V-PAP-NSM +CONJ-N +V-PAP-NSM +CONJ +V-PAI-3P +N-ASN +V-PAI-3S +V-2AAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-PAP-NSM +CONJ +V-PAP-NSM +CONJ +V-PAI-3P +V-2AMM-2S +N-NSM +N-NSM +CONJ +N-NSM +A-NSM +N-GPM +CONJ +A-GPM +CONJ +V-API-3S +T-NSF +N-NSF +PREP +T-GPN +N-GPN +P-GSF +ADV +V-ADI-3S +V-PAN +T-APF +N-APF +PREP +R-DPF +V-2ADI-3P +T-NPF +A-NPF-S +N-NPF +P-GSM +CONJ +PRT-N +V-AAI-3P +INJ +P-2DS +N-PRI +INJ +P-2DS +N-PRI +CONJ +COND +PREP +N-DSF +CONJ +N-DSF +V-2ADI-3P +T-NPF +N-NPF +T-NPF +V-2ADP-NPF +PREP +P-2DP +PRT +ADV +PREP +N-DSM +CONJ +N-DSF +V-AAI-3P +ADV +V-PAI-1S +P-2DP +N-DSF +CONJ +N-DSF +A-NSN-C +V-FDI-3S +PREP +N-DSF +N-GSF +PRT +P-2DP +CONJ +N-PRI +PRT-N +P-2NS +ADV +N-GSM +V-FPI-2S +ADV +N-GSM +V-FDI-2S +CONJ +COND +PREP +N-DPN +V-AOI-3P +T-NPF +N-NPF +T-NPF +V-2ADP-NPF +PREP +P-2DS +PRT +V-AAI-3S +ADV +T-GSF +ADV +ADV +V-PAI-1S +P-2DP +CONJ +N-DSF +N-GPN +A-NSN-C +V-FDI-3S +PREP +N-DSF +N-GSF +PRT +P-2DS +PREP +D-DSM +T-DSM +N-DSM +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +V-PMI-1S +P-2DS +N-VSM +N-VSM +T-GSM +N-GSM +CONJ +T-GSF +N-GSF +CONJ +V-AAI-2S +D-APN +PREP +A-GPM +CONJ +A-GPM +CONJ +V-AAI-2S +P-APN +A-DPM +PRT +T-NSM +N-NSM +CONJ +ADV +N-NSF +V-2ADI-3S +PREP +P-2GS +A-NPN +P-1DS +V-API-3S +PREP +T-GSM +N-GSM +P-1GS +CONJ +A-NSM-N +V-PAI-3S +T-ASM +N-ASM +COND +PRT-N +T-NSM +N-NSM +CONJ-N +T-ASM +N-ASM +X-NSM +V-PAI-3S +COND +PRT-N +T-NSM +N-NSM +CONJ +COND +R-DSM +V-AAN +V-PNS-3S +T-NSM +N-NSM +V-PAM-2P +PREP +P-1AS +A-NPM +T-NPM +V-PAP-NPM +CONJ +V-RPP-NPM +P-1NS-K +V-FAI-1S +P-2AP +V-AAM-2P +T-ASM +N-ASM +P-1GS +PREP +P-2AP +CONJ +V-2AAM-2P +PREP +P-1GS +CONJ +V-PAI-1S +A-NSM +CONJ +A-NSM +T-DSF +N-DSF +CONJ +V-FAI-2P +N-ASF +T-DPF +N-DPF +P-2GP +CONJ +T-NSM +N-NSM +P-1GS +A-NSM +CONJ +T-NSN +N-NSN +P-1GS +A-NSN +V-PAI-3S +PREP +D-DSM +T-DSM +N-DSM +V-AOI-3S +T-NSM +N-NSM +T-DPN +N-DPN +PREP +T-GPM +A-GPM +CONJ +T-NPM +N-NPM +P-GSM +V-AAI-3P +CONJ +V-ADI-3P +V-PAN +N-APM +CONJ +V-PAN +CONJ +T-NPM +N-NPM +V-2AAP-NPM +V-2AAI-3P +P-DSM +V-2AMM-2S +T-NPM +N-NPM +P-2GS +V-PAI-3P +R-ASN +V-PAN +PRT-N +V-PAI-3S +PREP +N-DSN +CONJ +T-NSM +V-2AAI-3S +P-DPM +PRT-N +V-2AAI-2P +I-ASN +V-AAI-3S +N-PRI +ADV +V-AAI-3S +CONJ +T-NPM +PREP +P-GSM +ADV +V-2AAI-3S +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-APM +N-APM +T-GSF +N-GSF +V-2AAI-3P +R-NSN +V-2AAN +PRT-N +V-PAP-NSN +V-IAI-3S +P-DSM +CONJ-N +T-DPM +PREP +P-GSM +COND +PRT-N +T-DPM +N-DPM +A-DPM +PRT +PRT-N +V-2AAI-2P +PREP +T-DSM +N-DSM +CONJ +T-DPN +N-DPN +T-NPM +N-NPM +PREP +T-DSN +N-DSN +T-ASN +N-ASN +V-PAI-3P +CONJ +A-NPM +V-PAI-3P +CONJ +V-PAI-1S +P-2DP +CONJ +T-GSN +N-GSN +A-NSN-C +V-PAI-3S +ADV +CONJ +COND +V-LAI-2P +I-NSN +V-PAI-3S +N-ASN +V-PAI-1S +CONJ +PRT-N +N-ASF +PRT +PRT-N +V-AAI-2P +T-APM +A-APM +CONJ +V-PAI-3S +N-NSM +T-GSN +N-GSN +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-2AAP-NSM +ADV +V-2AAI-3S +PREP +T-ASF +N-ASF +P-GPM +CONJ +V-2AMM-2S +N-NSM +N-ASF +V-PAP-NSM +A-ASF +CONJ +V-AAI-3P +P-ASM +V-PAP-NPM +COND +V-PAI-3S +T-DPN +N-DPN +V-AAN +CONJ +V-AAS-3P +P-GSM +CONJ +T-NSM +V-2AAI-3S +P-DPM +I-NSM +V-FDI-3S +PREP +P-2GP +N-NSM +R-NSM +V-FAI-3S +N-ASN +A-ASN +CONJ +COND +V-2AAS-3S +D-NSN +T-DPN +N-DPN +PREP +N-ASM +PRT-I +V-FAI-3S +P-ASN +CONJ +V-FAI-3S +CONJ +Q-DSN +V-PAI-3S +N-NSM +N-GSN +CONJ +V-PAI-3S +T-DPN +N-DPN +ADV +V-PAN +ADV +V-PAI-3S +T-DSM +N-DSM +V-AAM-2S +P-2GS +T-ASF +N-ASF +CONJ +V-AAI-3S +CONJ +V-API-3S +A-NSF +ADV +T-NSF +A-NSF +CONJ +V-2AAP-NPM +T-NPM +N-NPM +N-ASN +V-2AAI-3P +PREP +P-GSM +ADV +P-ASM +V-AAS-3P +CONJ +T-NSM +N-NSM +V-2AAP-NSM +V-AAI-3S +ADV +CONJ +V-AAI-3P +P-DSM +A-NPM +CONJ +V-AAI-3S +P-APM +A-APM +CONJ +V-AAI-3S +P-DPM +CONJ +PRT-N +A-ASM +P-ASM +V-AAS-3P +CONJ +V-APS-3S +T-NSN +V-APP-NSN +PREP +N-GSM +T-GSM +N-GSM +V-PAP-GSM +V-2AMM-2S +T-NSM +N-NSM +P-1GS +R-ASM +V-AAI-1S +T-NSM +A-NSM +P-1GS +R-ASM +V-AAI-3S +T-NSF +N-NSF +P-1GS +V-FAI-1S +T-ASN +N-ASN +P-1GS +PREP +P-ASM +CONJ +N-ASF +T-DPN +N-DPN +V-FAI-3S +PRT-N +V-FAI-3S +CONJ-N +V-FAI-3S +CONJ-N +V-FAI-3S +X-NSM +PREP +T-DPF +N-DPF +T-ASF +N-ASF +P-GSM +N-ASM +V-RPP-ASM +PRT-N +V-FAI-3S +CONJ +N-ASN +V-PPP-ASN +PRT-N +V-FAI-3S +ADV +PRT +V-2AAS-3S +PREP +N-ASN +T-ASF +N-ASF +CONJ +T-DSN +N-DSN +P-GSM +N-NPN +V-FAI-3P-ATT +ADV +V-API-3S +P-DSM +V-PNP-NSM +A-NSM +CONJ +A-NSM +CONJ +V-AAI-3S +P-ASM +CONJ +T-ASM +A-ASM +V-PAN +CONJ +V-PAN +CONJ +V-IMI-3P +A-NPM +T-NPM +N-NPM +CONJ +V-IAI-3P +PRT-I +D-NSM +V-PAI-3S +T-NSM +N-NSM +N-PRI +CONJ +T-NPM +N-NPM +V-AAP-NPM +V-2AAI-3P +D-NSM +PRT-N +V-PAI-3S +T-APN +N-APN +COND +PRT-N +PREP +T-DSM +N-PRI +N-DSM +T-GPN +N-GPN +CONJ +V-RAP-NSM +T-APF +N-APF +P-GPM +V-2AAI-3S +P-DPM +A-NSF +N-NSF +V-APP-NSF +PREP +F-3GSF +V-PPI-3S +CONJ +A-NSF +N-NSF +PRT +N-NSF +V-APP-NSF +PREP +F-3GSF +PRT-N +V-FPI-3S +CONJ +COND +T-NSM +N-NSM +T-ASM +N-ASM +V-PAI-3S +PREP +F-3ASM +V-API-3S +CONJ +ADV-I +V-FPI-3S +T-NSF +N-NSF +P-GSM +CONJ +COND +P-1NS +PREP +N-PRI +V-PAI-1S +T-APN +N-APN +T-NPM +N-NPM +P-2GP +PREP +I-DSM +V-PAI-3P +PREP +D-ASN +P-NPM +N-NPM +P-2GP +V-FDI-3P +CONJ +COND +PREP +N-DSN +N-GSM +P-1NS +V-PAI-1S +T-APN +N-APN +PRT +V-AAI-3S +PREP +P-2AP +T-NSF +N-NSF +T-GSM +N-GSM +PRT +ADV-I +V-PNI-3S +X-NSM +V-2AAN +PREP +T-ASF +N-ASF +T-GSM +A-GSM +CONJ +T-APN +N-APN +P-GSM +V-AAN +COND +PRT-N +ADV-S +V-AAS-3S +T-ASM +A-ASM +CONJ +ADV +T-ASF +N-ASF +P-GSM +V-FAI-3S +T-NSM +PRT-N +V-PAP-NSM +PREP +P-1GS +PREP +P-1GS +V-PAI-3S +CONJ +T-NSM +PRT-N +V-PAP-NSM +PREP +P-1GS +V-PAI-3S +PREP +D-ASN +V-PAI-1S +P-2DP +A-NSF +N-NSF +CONJ +N-NSF +V-FPI-3S +T-DPM +N-DPM +CONJ +T-NSF +T-GSN +N-GSN +N-NSF +PRT-N +V-FPI-3S +CONJ +COND +R-NSM +V-2AAS-3S +N-ASM +PREP +T-GSM +N-GSM +T-GSM +N-GSM +V-FPI-3S +P-DSM +CONJ +PRT +R-NSM +V-2AAS-3S +PREP +T-GSN +N-GSN +T-GSN +A-GSN +PRT-N +V-FPI-3S +P-DSM +CONJ-N +PREP +D-DSM +T-DSM +N-DSM +CONJ-N +PREP +T-DSM +V-PAP-DSM +PRT +V-AAM-2P +T-ASN +N-ASN +A-ASN +CONJ +T-ASM +N-ASM +P-GSN +A-ASM +PRT +V-AAM-2P +T-ASN +N-ASN +A-ASN +CONJ +T-ASM +N-ASM +P-GSN +A-ASM +CONJ +PREP +T-GSM +N-GSM +T-NSN +N-NSN +V-PPI-3S +N-VPN +N-GPF +ADV-I +V-PNI-2P +A-APN +V-PAN +A-NPM +V-PAP-NPM +CONJ +PREP +T-GSN +N-GSN +T-GSF +N-GSF +T-NSN +N-NSN +V-PAI-3S +T-NSM +A-NSM +N-NSM +PREP +T-GSM +A-GSM +N-GSM +V-PAI-3S +A-APN +CONJ +T-NSM +A-NSM +N-NSM +PREP +T-GSM +A-GSM +N-GSM +V-PAI-3S +A-APN +CONJ +V-PAI-1S +P-2DP +CONJ +A-NSN +N-NSN +A-NSN +R-ASN +V-FAI-3P +T-NPM +N-NPM +V-FAI-3P +PREP +P-GSN +N-ASM +PREP +N-DSF +N-GSF +CONJ +PREP +T-GPM +N-GPM +P-2GS +V-FPI-2S +CONJ +PREP +T-GPM +N-GPM +P-2GS +V-FPI-2S +ADV +V-ADI-3P +P-DSM +X-NPM +T-GPM +N-GPM +CONJ +N-GPM +V-PAP-NPM +N-VSM +V-PAI-1P +PREP +P-2GS +N-ASN +V-2AAN +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-DPM +N-NSF +A-NSF +CONJ +N-NSF +N-ASN +V-PAI-3S +CONJ +N-NSN +PRT-N +V-FPI-3S +P-DSF +COND +PRT-N +T-ASN +N-ASN +N-GSM +T-GSM +N-GSM +CONJ +ADV +V-IAI-3S +N-NSM +PREP +T-DSF +N-DSF +T-GSN +N-GSN +A-APF +N-APF +CONJ +A-APF +N-APF +ADV +V-FDI-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +T-DSF +N-DSF +T-GSF +N-GSF +A-APF +N-APF +CONJ +A-APF +N-APF +N-NPM +N-NPM +V-FMI-3P +PREP +T-DSF +N-DSF +PREP +T-GSF +N-GSF +D-GSF +CONJ +V-FAI-3P +P-ASF +CONJ +V-AAI-3P +PREP +T-ASN +N-ASN +N-GSM +CONJ +V-2AMM-2S +A-NSN-C +N-GSM +ADV +N-NSF +N-GSM +V-FPI-3S +PREP +T-DSF +N-DSF +PREP +T-GSF +N-GSF +D-GSF +CONJ +V-FAI-3S +P-ASF +CONJ +V-2AAI-3S +PREP +T-GPN +N-GPN +T-GSF +N-GSF +V-AAN +T-ASF +N-ASF +N-GSM +CONJ +V-2AMM-2S +A-NSN-C +N-GSM +ADV +CONJ +CONJ +T-NSN +A-NSN +N-NSN +V-2AAS-3S +PREP +T-GSM +N-GSM +V-PNI-3S +PREP +A-GPM +N-GPM +V-PAP-NSN +N-ASF +CONJ +PRT-N +V-PAI-3S +ADV +V-PAI-3S +PREP +T-ASM +N-ASM +P-1GS +V-FAI-1S +ADV +V-2AAI-1S +CONJ +V-2AAP-NSN +V-PAI-3S +V-PAP-ASM +CONJ +V-RPP-ASM +CONJ +V-RPP-ASM +ADV +V-PNI-3S +CONJ +V-PAI-3S +PREP +F-3GSN +A-NUI +A-APN +N-APN +A-APN-C +F-3GSN +CONJ +V-2AAP-NPN +V-PAI-3S +ADV +CONJ +V-PNI-3S +T-NPN +A-NPN-S +T-GSM +N-GSM +D-GSM +A-NPN +T-GPN +A-GPN-S +ADV +V-FDI-3S +CONJ +T-DSF +N-DSF +D-DSF +T-DSF +A-DSF +ADV +P-GSM +V-PAP-GSM +T-DPM +N-DPM +V-2AMM-2S +T-NSF +N-NSF +CONJ +T-NPM +N-NPM +P-GSM +V-LAI-3P +ADV +V-PAP-NPM +P-DSM +V-AAN +CONJ +V-2AAI-3S +X-NSM +P-DSM +V-2AMM-2S +T-NSF +N-NSF +P-2GS +CONJ +T-NPM +N-NPM +P-2GS +ADV +V-RAI-3P +V-PAP-NPM +P-2DS +V-AAN +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +T-DSM +V-PAP-DSM +P-DSM +I-NSM +V-PAI-3S +T-NSF +N-NSF +P-1GS +CONJ +I-NPM +V-PAI-3P +T-NPM +N-NPM +P-1GS +CONJ +V-AAP-NSM +T-ASF +N-ASF +P-GSM +PREP +T-APM +N-APM +P-GSM +V-2AAI-3S +V-2AMM-2S +T-NSF +N-NSF +P-1GS +CONJ +T-NPM +N-NPM +P-1GS +CONJ +PRT +R-NSM +V-AAS-3S +T-ASN +N-ASN +T-GSM +N-GSM +P-1GS +T-GSM +PREP +N-DPM +P-NSM +P-1GS +N-NSM +CONJ +N-NSF +CONJ +N-NSF +V-PAI-3S +PREP +T-DSF +N-DSF +D-DSF +T-NSM +N-NSM +V-2AAP-NSM +T-GSF +N-GSF +V-INI-3S +PREP +T-ASF +N-ASF +CONJ +V-API-3P +PREP +P-ASM +N-NPM +A-NPM +CONJ +P-ASM +PREP +N-ASN +V-2AAP-ASM +V-PNN +CONJ +A-NSM +T-NSM +N-NSM +PREP +T-ASM +N-ASM +V-LAI-3S +CONJ +V-AAI-3S +P-DPM +A-APN +PREP +N-DPF +V-PAP-NSM +V-2AMM-2S +V-2AAI-3S +T-NSM +V-PAP-NSM +T-GSN +V-PAN +CONJ +PREP +T-DSN +V-PAN +P-ASM +PRT +R-NPN +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NPN +T-NPN +N-NPN +V-2AAI-3S +P-APN +CONJ +A-NPN +V-2AAI-3S +PREP +T-APN +A-APN +ADV +PRT-N +V-IAI-3S +N-ASF +A-ASF +CONJ +ADV +V-AAI-3S +PREP +T-ASN +PRT-N +V-PAN +N-ASN +N-GSF +CONJ +N-GSM +V-AAP-GSM +V-API-3S +CONJ +PREP +T-ASN +PRT-N +V-PAN +N-ASF +V-API-3S +CONJ +A-NPN +V-2AAI-3S +PREP +T-APF +N-APF +CONJ +V-2AAI-3P +T-NPF +N-NPF +CONJ +V-AAI-3P +P-APN +CONJ +A-NPN +V-2AAI-3S +PREP +T-ASF +N-ASF +T-ASF +A-ASF +CONJ +V-IAI-3S +N-ASM +PRT +R-NSN +A-NUI +CONJ +R-NSN +A-NUI +CONJ +R-NSN +A-NUI +T-NSM +V-PAP-NSM +N-APN +V-PAM-3S +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-2AAI-3P +P-DSM +PREP +I-ASN +PREP +N-DPF +V-PAI-2S +P-DPM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +CONJ +P-2DP +V-RPI-3S +V-2AAN +T-APN +N-APN +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +D-DPM +PRT-N +V-RPI-3S +CONJ +R-NSM +V-PAI-3S +V-FPI-3S +P-DSM +CONJ +V-FPI-3S +CONJ +R-NSM +PRT-N +V-PAI-3S +CONJ +R-ASN +V-PAI-3S +V-FPI-3S +PREP +P-GSM +PREP +D-ASN +PREP +N-DPF +P-DPM +V-PAI-1S +CONJ +V-PAP-NPM +PRT-N +V-PAI-3P +CONJ +V-PAP-NPM +PRT-N +V-PAI-3P +CONJ-N +V-PAI-3P +CONJ +V-PPI-3S +P-DPM +T-NSF +N-NSF +N-GSM +T-NSF +V-PAP-NSF +N-DSF +V-FAI-2P +CONJ +PRT-N +PRT-N +V-2AAS-2P +CONJ +V-PAP-NPM +V-FAI-2P +CONJ +PRT-N +PRT-N +V-2AAS-2P +CONJ +V-API-3S +T-NSF +N-NSF +T-GSM +N-GSM +D-GSM +CONJ +T-DPN +N-DPN +ADV +V-AAI-3P +CONJ +T-APM +N-APM +P-GPM +V-AAI-3P +PRT-N +ADV +V-2AAS-3P +T-DPM +N-DPM +CONJ +T-DPN +N-DPN +V-AAS-3P +CONJ +T-DSF +N-DSF +V-2AAS-3P +CONJ +V-AAS-3P +CONJ +V-FDI-1S +P-APM +CONJ +A-NPM +P-2GP +T-NPM +N-NPM +CONJ +V-PAI-3P +CONJ +T-NPN +N-NPN +P-2GP +CONJ +V-PAI-3P +CONJ +HEB +V-PAI-1S +P-2DP +CONJ +A-NPM +N-NPM +CONJ +A-NPM +V-AAI-3P +V-2AAN +R-APN +V-PAI-2P +CONJ +PRT-N +V-2AAI-3P +CONJ +V-AAN +R-APN +V-PAI-2P +CONJ +PRT-N +V-AAI-3P +CONJ +P-2NP +V-AAM-2P +T-ASF +N-ASF +T-GSM +V-AAP-GSM +A-GSM +V-PAP-GSM +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +PRT-N +V-PAP-GSM +V-PNI-3S +T-NSM +A-NSM +CONJ +V-PAI-3S +T-ASN +V-2RPP-ASN +PREP +T-DSF +N-DSF +P-GSM +D-NSM +V-PAI-3S +T-NSM +PREP +T-ASF +N-ASF +V-2APP-NSM +CONJ +T-NSM +PREP +T-APN +A-APN +V-2APP-NSM +D-NSM +V-PAI-3S +T-NSM +T-ASM +N-ASM +V-PAP-NSM +CONJ +ADV +PREP +N-GSF +V-PAP-NSM +P-ASM +CONJ +PRT-N +V-PAI-3S +N-ASF +PREP +F-3DSM +CONJ +A-NSM +V-PAI-3S +CONJ +V-2ADP-GSF +N-GSF +PRT +N-GSM +PREP +T-ASM +N-ASM +ADV +V-PPI-3S +CONJ +T-NSM +PREP +T-APF +N-APF +V-2APP-NSM +D-NSM +V-PAI-3S +T-NSM +T-ASM +N-ASM +V-PAP-NSM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-PAI-3S +T-ASM +N-ASM +CONJ +A-NSM +V-PNI-3S +CONJ +T-NSM +PREP +T-ASF +A-ASF +N-ASF +V-2APP-NSM +D-NSM +V-PAI-3S +T-NSM +T-ASM +N-ASM +V-PAP-NSM +CONJ +V-PAP-NSM +PRT +R-NSM +V-PAI-3S +CONJ +PRT +V-PAI-3S +R-ASN +A-NUI +CONJ +R-ASN +A-NUI +CONJ +R-ASN +A-NUI +A-ASF +N-ASF +V-AAI-3S +P-DPM +V-PAP-NSM +V-API-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +V-AAP-DSM +A-ASN +N-ASN +PREP +T-DSM +N-DSM +P-GSM +CONJ +PREP +T-DSN +V-PAN +T-APM +N-APM +V-2AAI-3S +P-GSM +T-NSM +A-NSM +CONJ +V-AAI-3S +N-APN +PREP +A-ASN +T-GSM +N-GSM +CONJ +V-2AAI-3S +CONJ +ADV +V-AAI-3S +T-NSM +N-NSM +CONJ +N-ASM +V-AAI-3S +ADV +V-2API-3S +CONJ +T-NPN +N-NPN +CONJ +V-2AAP-NPM +T-NPM +N-NPM +T-GSM +N-GSM +V-2AAI-3P +P-DSM +N-VSM +PRT-I +A-ASN +N-ASN +V-AAI-2S +PREP +T-DSM +S-2SDSM +N-DSM +CONJ +ADV-I +V-PAI-3S +N-APN +CONJ +T-NSM +V-IAI-3S +P-DPM +A-NSM +N-NSM +D-ASN +V-AAI-3S +CONJ +T-NPM +N-NPM +P-DSM +V-PAI-3P +CONJ +V-PAI-2S +V-2AAP-NPM +V-AAS-1P +P-APN +CONJ +T-NSM +V-PAI-3S +PRT-N +PRT-N +ADV +V-PAP-NPM +T-APN +N-APN +V-AAS-2P +ADV +P-DPN +T-ASM +N-ASM +V-2AAM-2P +V-PPN +A-APN +ADV +T-GSM +N-GSM +CONJ +PREP +N-DSM +T-GSM +N-GSM +V-FAI-1S +T-DPM +N-DPM +V-AAM-2P +ADV-S +T-APN +N-APN +CONJ +V-AAM-2P +P-APN +PREP +N-APF +PREP +T-ASN +V-AAN +P-APN +CONJ +T-ASM +N-ASM +V-2AAM-2P +PREP +T-ASF +N-ASF +P-1GS +A-ASF +N-ASF +V-AAI-3S +P-DPM +V-PAP-NSM +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +N-GSN +R-ASM +V-2AAP-NSM +N-NSM +V-AAI-3S +PREP +T-DSM +N-DSM +P-GSM +PRT +R-NSN +A-NSN-C +V-PAI-3S +A-GPN +T-GPN +N-GPN +CONJ +CONJ +V-APS-3S +A-NSN-C +T-GPN +N-GPN +V-PAI-3S +CONJ +V-PNI-3S +N-NSN +CONJ +V-2AAN +T-APN +N-APN +T-GSM +N-GSM +CONJ +V-PAN +PREP +T-DPM +N-DPM +P-GSN +A-ASF +N-ASF +V-AAI-3S +P-DPM +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSF +R-ASF +V-2AAP-NSF +N-NSF +V-AAI-3S +PREP +N-GSN +N-APN +A-APN +ADV +R-GSM +V-API-3S +A-NSN +D-APN +A-APN +V-AAI-3S +T-NSM +N-NSM +PREP +N-DPF +T-DPM +N-DPM +CONJ +ADV +N-GSF +A-ASN-N +V-IAI-3S +P-DPM +ADV +V-APS-3S +T-NSN +V-APP-NSN +PREP +T-GSM +N-GSM +V-PAP-GSM +V-FAI-1S +PREP +N-DPF +T-ASN +N-ASN +P-1GS +V-FDI-1S +V-RPP-APN +PREP +N-GSF +ADV +V-2AAP-NSM +T-APM +N-APM +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3P +P-DSM +T-NPM +N-NPM +P-GSM +V-PAP-NPM +V-AAM-2S +P-1DP +T-ASF +N-ASF +T-GPN +N-GPN +T-GSM +N-GSM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +T-NSM +V-PAP-NSM +T-ASN +A-ASN +N-ASN +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +T-NSN +A-NSN +N-NSN +D-NPM +V-PAI-3P +T-NPM +N-NPM +T-GSF +N-GSF +CONJ +T-NPN +N-NPN +V-PAI-3P +T-NPM +N-NPM +T-GSM +A-GSM +CONJ +T-NSM +A-NSM +T-NSM +V-AAP-NSM +P-APN +V-PAI-3S +T-NSM +A-NSM +CONJ +T-NSM +N-NSM +N-NSF +N-GSM +V-PAI-3S +CONJ +T-NPM +N-NPM +N-NPM +V-PAI-3P +CONJ +ADV +V-PPI-3S +T-NPN +N-NPN +CONJ +N-DSN +V-PPI-3S +ADV +V-FDI-3S +PREP +T-DSF +N-DSF +T-GSM +N-GSM +V-FAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-APM +N-APM +P-GSM +CONJ +V-FAI-3P +PREP +T-GSF +N-GSF +P-GSM +A-APN +T-APN +N-APN +CONJ +T-APM +V-PAP-APM +T-ASF +N-ASF +CONJ +V-FAI-3P +P-APM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +ADV +T-NPM +A-NPM +V-FAI-3P +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-GPM +ADV +T-NSM +N-NSM +T-NSM +V-PAP-NSM +N-APN +V-PAM-3S +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +V-RPP-DSM +PREP +T-DSM +N-DSM +R-ASM +V-2AAP-NSM +N-NSM +V-AAI-3S +CONJ +PREP +T-GSF +N-GSF +P-GSM +V-PAI-3S +CONJ +V-PAI-3S +K-APN +V-PAI-3S +CONJ +V-PAI-3S +T-ASM +N-ASM +D-ASM +ADV +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +V-PAP-DSM +A-APM +N-APM +CONJ +V-2AAP-NSM +A-ASM +A-ASM +N-ASM +V-2AAP-NSM +V-RAI-3S +A-APN +K-APN +V-IAI-3S +CONJ +V-AAI-3S +P-ASM +ADV +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSF +V-APP-DSF +PREP +T-ASF +N-ASF +CONJ +PREP +A-GSN +N-GSN +V-2AAP-DSF +R-ASF +ADV +V-API-3S +V-AAP-NPM +PREP +T-ASM +N-ASM +CONJ +V-AAP-NPM +V-AAI-3P +T-APN +A-APN +PREP +N-APN +CONJ +T-APN +A-APN +ADV +V-2AAI-3P +ADV +V-FDI-3S +PREP +T-DSF +N-DSF +T-GSM +N-GSM +V-FDI-3P +T-NPM +N-NPM +CONJ +V-FAI-3P-ATT +T-APM +A-APM +PREP +A-GSN +T-GPM +A-GPM +CONJ +V-FAI-3P +P-APM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +V-AAI-2P +D-APN +A-APN +V-PAI-3P +P-DSM +PRT +CONJ +T-NSM +V-2AAI-3S +P-DPM +PREP +D-ASN +A-NSM +N-NSM +V-APP-NSM +T-DSF +N-DSF +T-GPM +N-GPM +A-NSM +V-PAI-3S +N-DSM +N-DSM +R-NSM +V-PAI-3S +PREP +T-GSM +N-GSM +P-GSM +A-APN +CONJ +A-APN +CONJ +V-2ADI-3S +ADV +V-AAI-3S +T-NSM +N-NSM +T-APF +N-APF +D-APF +V-AAI-3S +ADV +CONJ +V-2AAP-NSM +PREP +T-ASF +N-ASF +P-GSM +V-IAI-3S +P-APM +PREP +T-DSF +N-DSF +P-GPM +CONJ +V-PPN +P-APM +CONJ +V-PAN +ADV-I +D-DSM +T-NSF +N-NSF +D-NSF +CONJ +T-NPF +N-NPF +PRT-N +D-NSM +V-PAI-3S +T-NSM +T-GSM +N-GSM +N-NSM +PRT-N +T-NSF +N-NSF +P-GSM +V-PPI-3S +N-PRI +CONJ +T-NPM +N-NPM +P-GSM +N-NSM +CONJ +N-PRI +CONJ +N-NSM +CONJ +N-NSM +CONJ +T-NPF +N-NPF +P-GSM +PRT-I +A-NPF +PREP +P-1AP +V-PAI-3P +CONJ +ADV-I +D-DSM +D-NPN +A-NPN +CONJ +V-IPI-3P +PREP +P-DSM +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +PRT-N +V-PAI-3S +N-NSM +A-NSM +COND +PRT-N +PREP +T-DSF +N-DSF +CONJ +PREP +T-DSF +N-DSF +P-GSM +CONJ +PRT-N +V-AAI-3S +ADV +N-APF +A-APF +PREP +T-ASF +N-ASF +P-GPM +PREP +D-DSM +T-DSM +N-DSM +V-AAI-3S +N-NSM +T-NSM +N-NSM +T-ASF +N-ASF +N-GSM +CONJ +V-2AAI-3S +T-DPM +N-DPM +P-GSM +D-NSM +V-PAI-3S +N-NSM +T-NSM +N-NSM +P-NSM +V-API-3S +PREP +T-GPM +A-GPM +CONJ +PREP +D-ASN +T-NPF +N-NPF +V-PAI-3P +PREP +P-DSM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-ASM +N-ASM +V-AAI-3S +CONJ +PREP +N-DSF +V-2AMI-3S +PREP +N-ASF +T-ASF +N-ASF +N-GSM +T-GSM +N-GSM +P-GSM +CONJ +V-IAI-3S +T-NSM +N-NSM +P-DSM +PRT-N +V-PAI-3S +P-2DS +V-PAN +P-ASF +CONJ +V-PAP-NSM +P-ASM +V-AAN +V-AOI-3S +T-ASM +N-ASM +CONJ +ADV +N-ASM +P-ASM +V-IAI-3P +CONJ +N-DPN +T-GSM +N-GSM +V-2ADP-DPN +V-ADI-3S +T-NSF +N-NSF +T-GSF +N-GSF +PREP +T-DSN +A-DSN +CONJ +V-AAI-3S +T-DSM +N-DSM +ADV +PREP +N-GSM +V-AAI-3S +P-DSF +V-2AAN +COND +R-ASN +V-AMS-3S +CONJ +T-NSF +V-APP-NSF +PREP +T-GSF +N-GSF +P-GSF +V-PAI-3S +V-2AAM-2S +P-1DS +ADV +PREP +N-DSM +T-ASF +N-ASF +N-GSM +T-GSM +N-GSM +CONJ +V-APP-NSM +T-NSM +N-NSM +PREP +T-APM +N-APM +CONJ +T-APM +V-PNP-APM +V-AAI-3S +V-APN +CONJ +V-AAP-NSM +V-AAI-3S +N-ASM +PREP +T-DSF +N-DSF +CONJ +V-API-3S +T-NSF +N-NSF +P-GSM +PREP +N-DSM +CONJ +V-API-3S +T-DSN +N-DSN +CONJ +V-AAI-3S +T-DSF +N-DSF +P-GSF +CONJ +V-2AAP-NPM +T-NPM +N-NPM +P-GSM +V-AAI-3P +T-ASN +N-ASN +CONJ +V-AAI-3P +P-ASM +CONJ +V-2AAP-NPM +V-AAI-3P +T-DSM +N-DSM +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-AAI-3S +ADV +PREP +N-DSN +PREP +A-ASM +N-ASM +PREP +A-ASF +CONJ +V-AAP-NPM +T-NPM +N-NPM +V-AAI-3P +P-DSM +ADV +PREP +T-GPF +N-GPF +CONJ +V-2AAP-NSM +V-2AAI-3S +A-ASM +N-ASM +CONJ +V-AOI-3S +PREP +P-DPM +CONJ +V-AAI-3S +T-APM +A-APM +P-GPM +CONJ +A-GSF +V-2ADP-GSF +V-2AAI-3P +P-DSM +T-NPM +N-NPM +V-PAP-NPM +A-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +ADV +V-2AAI-3S +CONJ +V-AAM-2S +T-APM +N-APM +CONJ +V-2AAP-NPM +PREP +T-APF +N-APF +V-AAS-3P +F-3DPM +N-APN +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +PRT-N +N-ASF +V-PAI-3P +V-2AAN +V-2AAM-2P +P-DPM +P-2NP +V-2AAN +CONJ +T-NPM +V-PAI-3P +P-DSM +PRT-N +V-PAI-1P +ADV +COND +PRT-N +A-NUI +N-APM +CONJ +A-NUI +N-APM +CONJ +T-NSM +V-2AAI-3S +V-PAM-2P +P-1DS +ADV +P-APM +CONJ +V-AAP-NSM +T-APM +N-APM +V-APN +PREP +T-GSM +N-GSM +V-2AAP-NSM +T-APM +A-NUI +N-APM +CONJ +T-APM +A-NUI +N-APM +V-AAP-NSM +PREP +T-ASM +N-ASM +V-AAI-3S +CONJ +V-AAP-NSM +V-AAI-3S +T-DPM +N-DPM +T-APM +N-APM +CONJ +T-NPM +N-NPM +T-DPM +N-DPM +CONJ +V-2AAI-3P +A-NPM +CONJ +V-API-3P +CONJ +V-AAI-3P +T-ASN +V-PAP-ASN +T-GPN +N-GPN +A-NUI +N-APM +A-APM +CONJ +T-NPM +V-PAP-NPM +V-IAI-3P +N-NPM +ADV +A-NPM +ADV +N-GPF +CONJ +N-GPN +CONJ +ADV +V-AAI-3S +T-APM +N-APM +V-2AAN +PREP +T-ASN +N-ASN +CONJ +V-PAN +P-ASM +PREP +T-ASN +ADV +ADV +R-GSM +V-AAS-3S +T-APM +N-APM +CONJ +V-AAP-NSM +T-APM +N-APM +V-2AAI-3S +PREP +T-ASN +N-ASN +PREP +A-ASF +V-ADN +CONJ +A-GSF +V-2ADP-GSF +A-NSM +V-IAI-3S +ADV +CONJ +T-NSN +N-NSN +ADV +N-APM +A-APM +PREP +T-GSF +N-GSF +V-IAI-3S +V-PPP-NSN +PREP +T-GPN +N-GPN +CONJ +V-IAI-3S +A-NSM +T-NSM +N-NSM +CONJ +A-DSF +N-DSF +T-GSF +N-GSF +V-2AAI-3S +PREP +P-APM +V-PAP-NSM +PREP +T-ASF +N-ASF +CONJ +T-NPM +N-NPM +V-2AAP-NPM +P-ASM +PREP +T-GSF +N-GSF +V-PAP-ASM +V-API-3P +V-PAP-NPM +CONJ +N-NSN +V-PAI-3S +CONJ +PREP +T-GSM +N-GSM +V-AAI-3P +CONJ +ADV +V-AAI-3S +T-NSM +N-NSM +P-DPM +V-PAP-NSM +V-PAM-2P +P-1NS +V-PAI-1S +PRT-N +V-PNM-2P +CONJ +V-AOP-NSM +P-DSM +T-NSM +N-NSM +V-2AAI-3S +N-VSM +COND +P-2NS +V-PAI-2S +V-AAM-2S +P-1AS +V-2AAN +PREP +P-2AS +PREP +T-APN +N-APN +CONJ +T-NSM +V-2AAI-3S +V-2AAM-2S +CONJ +V-2AAP-NSM +PREP +T-GSN +N-GSN +N-NSM +V-AAI-3S +PREP +T-APN +N-APN +CONJ +V-2AAI-3S +PREP +T-ASM +N-ASM +CONJ +V-PAP-NSM +T-ASM +N-ASM +V-AOI-3S +CONJ +V-AMP-NSM +V-PPN +V-AAI-3S +V-PAP-NSM +N-VSM +V-AAM-2S +P-1AS +CONJ +ADV +T-NSM +N-NSM +V-AAP-NSM +T-ASF +N-ASF +V-2ADI-3S +P-GSM +CONJ +V-PAI-3S +P-DSM +A-VSM +PREP +I-ASN +V-AAI-2S +CONJ +V-2AAP-GPM +P-GPM +PREP +T-ASN +N-ASN +V-AAI-3S +T-NSM +N-NSM +CONJ +T-NPM +PREP +T-DSN +N-DSN +V-AAI-3P +P-DSM +V-PAP-NPM +ADV +N-GSM +N-NSM +V-PAI-2S +CONJ +V-AAP-NPM +V-2AAI-3P +PREP +T-ASF +N-ASF +PREP +N-PRI +CONJ +V-2AAP-NPM +P-ASM +T-NPM +N-NPM +T-GSM +N-GSM +D-GSM +V-AAI-3P +PREP +A-ASF +T-ASF +A-ASF +D-ASF +CONJ +V-AAI-3P +P-DSM +A-APM +T-APM +ADV +V-PAP-APM +CONJ +V-IAI-3P +P-ASM +CONJ +ADV +V-AMS-3P +T-GSN +N-GSN +T-GSN +N-GSN +P-GSM +CONJ +K-NPM +V-ADI-3P +V-API-3P +ADV +V-PNI-3P +T-DSM +N-DSM +PREP +N-GPN +N-NPM +CONJ +N-NPM +V-PAP-NPM +PREP +I-ASN +T-NPM +N-NPM +P-2GS +V-PAI-3P +T-ASF +N-ASF +T-GPM +A-GPM-C +CONJ +PRT-N +V-PMI-3P +T-APF +N-APF +CONJ +N-ASM +V-PAS-3P +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-DPM +PREP +I-ASN +CONJ +P-2NP +V-PAI-2P +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-ASF +N-ASF +P-2GP +CONJ +T-NSM +N-NSM +V-2AAI-3S +V-PAM-2S +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +T-NSM +V-PAP-NSM +N-ASM +PRT +N-ASF +N-DSM +V-PAM-3S +CONJ +P-2NP +V-PAI-2P +PRT +R-NSM +V-2AAS-3S +T-DSM +N-DSM +PRT +T-DSF +N-DSF +N-NSN +COND +R-ASN +PREP +P-1GS +V-APS-2S +PRT-N +PRT-N +V-FAI-3S +T-ASM +N-ASM +P-GSM +PRT +T-ASF +N-ASF +P-GSM +CONJ +V-AAI-2P +T-ASM +N-ASM +T-GSM +N-GSM +PREP +T-ASF +N-ASF +P-2GP +N-VPM +ADV +V-AAI-3S +PREP +P-2GP +N-NSM +V-PAP-NSM +T-NSM +N-NSM +D-NSM +T-DPN +N-DPN +P-1AS +V-PAI-3S +CONJ +T-NSF +N-NSF +P-GPM +ADV +V-PAI-3S +PREP +P-1GS +CONJ +ADV +V-PNI-3P +P-1AS +V-PAP-NPM +N-APF +N-APN +N-GPM +CONJ +V-ADP-NSM +T-ASM +N-ASM +V-2AAI-3S +P-DPM +V-PAM-2P +CONJ +V-PAM-2P +PRT-N +T-NSN +V-PNP-NSN +PREP +T-ASN +N-ASN +V-PAI-3S +T-ASM +N-ASM +CONJ +T-NSN +V-PNP-NSN +PREP +T-GSN +N-GSN +D-NSN +V-PAI-3S +T-ASM +N-ASM +ADV +V-2AAP-NPM +T-NPM +N-NPM +V-PAI-3P +P-DSM +V-RAI-2S +CONJ +T-NPM +N-NPM +V-AAP-NPM +T-ASM +N-ASM +V-API-3P +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +A-NSF +N-NSF +R-ASF +PRT-N +V-AAI-3S +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +V-FPI-3S +V-2AAM-2P +P-APM +V-PAI-3P +A-NPM +N-NPM +A-GPM +CONJ +COND +A-NSM +A-ASM +V-PAS-3S +A-NPM +PREP +N-ASM +V-FNI-3P +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-AAM-2S +P-1DP +T-ASF +N-ASF +CONJ +T-NSM +V-2AAI-3S +N-ASF +CONJ +P-2NP +A-NPM +V-PAI-2P +PRT-N +V-PAI-2P +CONJ +A-NSN +T-NSN +V-PNP-NSN +PREP +T-ASN +N-ASN +PREP +T-ASF +N-ASF +V-PAI-3S +CONJ +PREP +N-ASM +V-PPI-3S +CONJ +T-NPN +V-PNP-NPN +PREP +T-GSN +N-GSN +PREP +T-GSF +N-GSF +V-PNI-3S +D-NPN-K +V-PAI-3S +T-ASM +N-ASM +CONJ +PREP +T-GSF +N-GSF +V-PNI-3P +N-NPM +A-NPM +N-NPM +N-NPF +N-NPF +N-NPF +N-NPF +N-NPF +D-NPN +V-PAI-3S +T-NPN +V-PAP-NPN +T-ASM +N-ASM +CONJ +T-NSN +A-DPF +N-DPF +V-2AAN +PRT-N +V-PAI-3S +T-ASM +N-ASM +CONJ +V-2AAP-NSM +ADV +T-NSM +N-NSM +V-AAI-3S +PREP +T-APN +N-APN +N-GSF +CONJ +N-GSF +CONJ +V-2AMM-2S +N-NSF +A-NSF +PREP +T-GPN +N-GPN +D-GPN +V-2AAP-NSF +V-IAI-3S +V-PAP-NSF +V-AAM-2S +P-1AS +N-VSM +N-NSM +N-PRI +T-NSF +N-NSF +P-1GS +ADV +V-PNI-3S +CONJ +T-NSM +PRT-N +V-ADI-3S +P-DSF +N-ASM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +P-GSM +V-IAI-3P +P-ASM +V-PAP-NPM +V-AAM-2S +P-ASF +CONJ +V-PAI-3S +ADV +P-1GP +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +PRT-N +V-2API-1S +COND +PRT-N +PREP +T-APN +N-APN +T-APN +V-2RAP-APN +N-GSM +N-PRI +CONJ +T-NSF +V-2AAP-NSF +V-IAI-3S +P-DSM +V-PAP-NSF +N-VSM +V-PAM-2S +P-1DS +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +PRT-N +V-PAI-3S +A-NSN +V-2AAN +T-ASM +N-ASM +T-GPN +N-GPN +CONJ +V-2AAN +T-DPN +N-DPN +CONJ +T-NSF +V-2AAI-3S +PRT +N-VSM +CONJ +CONJ +T-NPN +N-NPN +V-PAI-3S +PREP +T-GPN +N-GPN +T-GPN +V-PAP-GPN +PREP +T-GSF +N-GSF +T-GPM +N-GPM +P-GPN +ADV +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSF +INJ +N-VSF +A-NSF +P-2GS +T-NSF +N-NSF +V-AOM-3S +P-2DS +ADV +V-PAI-2S +CONJ +V-API-3S +T-NSF +N-NSF +P-GSF +PREP +T-GSF +N-GSF +D-GSF +CONJ +V-2AAP-NSM +ADV +T-NSM +N-NSM +V-2AAI-3S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +V-2AAP-NSM +PREP +T-ASN +N-ASN +V-INI-3S +ADV +CONJ +V-2AAI-3P +P-DSM +N-NPM +A-NPM +V-PAP-NPM +PREP +F-3GPM +A-APM +A-APM +A-APM +A-APM +CONJ +A-APM +A-APM +CONJ +V-AAI-3P +P-APM +PREP +T-APM +N-APM +P-GSM +CONJ +V-AAI-3S +P-APM +CONJ +T-ASM +N-ASM +V-AAN +V-PAP-APM +A-APM +V-PAP-APM +A-APM +A-NPM +CONJ +A-APM +V-PAP-APM +CONJ +A-APM +V-PAP-APM +CONJ +V-AAI-3P +T-ASM +N-ASM +N-PRI +CONJ +T-NSM +N-NSM +V-ADP-NSM +T-APM +N-APM +P-GSM +V-2AAI-3S +V-PNI-1S +PREP +T-ASM +N-ASM +CONJ +ADV +N-NPF +A-NPF +V-PAI-3P +P-1DS +CONJ +PRT-N +V-PAI-3P +I-ASN +V-2AAS-3P +CONJ +V-AAN +P-APM +A-APM +PRT-N +V-PAI-1S +PRT-N +ADV +V-APS-3P +PREP +T-DSF +N-DSF +CONJ +V-PAI-3P +P-DSM +T-NPM +N-NPM +ADV-I +P-1DP +PREP +N-DSF +N-NPM +D-NPM +CONJ +V-AAN +N-ASM +D-ASM +CONJ +V-PAI-3S +P-DPM +T-NSM +N-NSM +Q-APM +N-APM +V-PAI-2P +CONJ +T-NPM +V-2AAI-3P +A-NUI +CONJ +A-APN +N-APN +CONJ +V-AAP-NSM +T-DSM +N-DSM +V-2AAN +PREP +T-ASF +N-ASF +V-2AAI-3S +T-APM +A-NUI +N-APM +CONJ +T-APM +N-APM +CONJ +V-AAP-NSM +V-AAI-3S +CONJ +V-IAI-3S +T-DPM +N-DPM +CONJ +T-NPM +N-NPM +T-DPM +N-DPM +CONJ +V-2AAI-3P +A-NPM +CONJ +V-API-3P +CONJ +T-ASN +V-PAP-ASN +T-GPN +N-GPN +A-NUI +N-APF +A-APF +V-AAI-3P +CONJ +T-NPM +V-PAP-NPM +V-IAI-3P +A-NPM +N-NPM +ADV +N-GPF +CONJ +N-GPN +CONJ +V-AAP-NSM +T-APM +N-APM +V-2AAI-3S +PREP +T-ASN +N-ASN +CONJ +V-2AAI-3S +PREP +T-APN +N-APN +N-PRI +CONJ +V-2AAP-NPM +T-NPM +N-NPM +CONJ +N-NPM +V-PAP-NPM +V-AAI-3P +P-ASM +N-ASN +PREP +T-GSM +N-GSM +V-AAN +P-DPM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-DPM +A-GSF +V-2ADP-GSF +V-PAI-2P +N-NSF +CONJ +V-PAI-3S +T-NSM +N-NSM +CONJ +ADV +ADV +N-NSM +CONJ +V-PAI-3S +V-PAP-NSM +T-NSM +N-NSM +PRT +T-ASN +N-ASN +T-GSM +N-GSM +V-PAN +V-PAI-2P +CONJ +T-APN +N-APN +T-GPM +N-GPM +PRT-N +V-PNI-2P +N-NSF +A-NSF +CONJ +N-NSF +N-ASN +V-PAI-3S +CONJ +N-NSN +PRT-N +V-FPI-3S +P-DSF +COND +PRT-N +T-NSN +N-NSN +N-GSM +CONJ +V-2AAP-NSM +P-APM +V-2AAI-3S +CONJ +T-NPM +N-NPM +V-2AAP-NPM +PREP +T-ASN +ADV +V-2ADI-3P +N-APM +V-2AAN +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-PAM-2P +CONJ +V-PAM-2P +PREP +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +N-GPM +CONJ +T-NPM +V-INI-3P +PREP +F-3DPM +V-PAP-NPM +CONJ +N-APM +PRT-N +V-2AAI-1P +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +I-ASN +V-PNI-2P +PREP +F-2DPM +A-VPM +CONJ +N-APM +PRT-N +V-PAI-2P +ADV-N +V-PAI-2P +CONJ-N +V-PAI-2P +T-APM +A-NUI +N-APM +T-GPM +A-GPM +CONJ +Q-APM +N-APM +V-2AAI-2P +CONJ-N +T-APM +A-NUI +N-APM +T-GPM +A-GPM +CONJ +Q-APF +N-APF +V-2AAI-2P +ADV-I +PRT-N +V-PAI-2P +CONJ +PRT-N +PREP +N-GPM +V-2AAI-1S +P-2DP +CONJ +V-PAM-2P +PREP +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +N-GPM +ADV +V-AAI-3P +CONJ +PRT-N +V-2AAI-3S +V-PAN +PREP +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +PREP +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +N-GPM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +PREP +T-APN +N-APN +N-GSF +T-GSF +N-GSM +V-IAI-3S +T-APM +N-APM +P-GSM +V-PAP-NSM +V-PAI-3P +T-NPM +N-NPM +I-ASM +V-PAN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-NPM +V-2AAI-3P +PRT +T-NPM +N-ASM +T-ASM +N-ASM +CONJ +A-NPM +N-ASM +CONJ +A-NPM +N-ASM +PRT +A-ASM +T-GPM +N-GPM +V-PAI-3S +P-DPM +CONJ +P-2NP +I-ASM +P-1AS +V-PAN +V-PAI-2P +CONJ +V-AOP-NSM +N-NSM +N-NSM +V-2AAI-3S +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-NSM +N-NSM +T-GSM +N-GSM +T-GSM +V-PAP-GSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +A-NSM +V-PAI-2S +N-VSM +N-PRI +CONJ +N-NSF +CONJ +N-NSN +PRT-N +V-AAI-3S +P-2DS +CONJ +T-NSM +N-NSM +P-1GS +T-NSM +PREP +T-DPM +N-DPM +CONJ +P-1NS-K +P-2DS +V-PAI-1S +CONJ +P-2NS +V-PAI-2S +N-NSM +CONJ +PREP +D-DSF +T-DSF +N-DSF +V-FAI-1S +P-1GS +T-ASF +N-ASF +CONJ +N-NPF +N-GSM +PRT-N +V-FAI-3P +P-GSF +V-FAI-1S +P-2DS +T-APF +N-APF +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +COND +R-ASN +V-AAS-2S +PREP +T-GSF +N-GSF +V-FDI-3S +V-RPP-NSN +PREP +T-DPM +N-DPM +CONJ +COND +R-ASN +V-AAS-2S +PREP +T-GSF +N-GSF +V-FDI-3S +V-RPP-NSN +PREP +T-DPM +N-DPM +ADV +V-AAI-3S +T-DPM +N-DPM +CONJ +A-DSM-N +V-2AAS-3P +CONJ +P-NSM +V-PAI-3S +T-NSM +N-NSM +PREP +ADV +V-ADI-3S +N-NSM +N-NSM +V-PAN +T-DPM +N-DPM +P-GSM +CONJ +V-PAI-3S +P-ASM +PREP +N-APN +V-2AAN +CONJ +A-APN +V-2AAN +PREP +T-GPM +A-GPM-C +CONJ +N-GPM +CONJ +N-GPM +CONJ +V-APN +CONJ +T-DSF +A-DSF +N-DSF +V-APN +CONJ +V-2AMP-NSM +P-ASM +T-NSM +N-NSM +V-ADI-3S +V-PAN +P-DSM +V-PAP-NSM +A-NSM-ATT +P-2DS +N-VSM +PRT-N +PRT-N +V-FDI-3S +P-2DS +D-NSN +CONJ +T-NSM +V-2APP-NSM +V-2AAI-3S +T-DSM +N-DSM +V-PAM-2S +ADV +P-1GS +N-VSM +N-NSN +P-1GS +V-PAI-2S +CONJ +PRT-N +V-PAI-2S +T-APN +T-GSM +N-GSM +CONJ +T-APN +T-GPM +N-GPM +ADV +T-NSM +N-NSM +V-2AAI-3S +T-DPM +N-DPM +P-GSM +COND +X-NSM +V-PAI-3S +ADV +P-1GS +V-2AAN +V-ADM-3S +F-3ASM +CONJ +V-AAM-3S +T-ASM +N-ASM +P-GSM +CONJ +V-PAM-3S +P-1DS +CONJ +COND +R-NSM +V-PAS-3S +T-ASF +N-ASF +P-GSM +V-AAN +V-FAI-3S +P-ASF +CONJ +PRT +R-NSM +V-AAS-3S +T-ASF +N-ASF +P-GSM +PREP +P-1GS +V-FAI-3S +P-ASF +CONJ +I-ASN +V-FPI-3S +N-NSM +COND +T-ASM +N-ASM +A-ASM +V-AAS-3S +CONJ +T-ASF +N-ASF +P-GSM +V-APS-3S +PRT +I-ASN +V-FAI-3S +N-NSM +N-ASN +T-GSF +N-GSF +P-GSM +CONJ +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-PNN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-GSM +PREP +T-GPM +N-GPM +P-GSM +CONJ +ADV +V-FAI-3S +A-DSM +PREP +T-ASF +N-ASF +P-GSM +HEB +V-PAI-1S +P-2DP +CONJ +V-PAI-3P +X-NPM +T-GPM +ADV +V-RAP-GPM +R-NPM +PRT-N +PRT-N +V-ADS-3P +N-GSM +ADV +PRT +V-2AAS-3P +T-ASM +N-ASM +T-GSM +N-GSM +V-PNP-ASM +PREP +T-DSF +N-DSF +P-GSM +CONJ +PREP +N-APF +A-NUI +V-PAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +N-ASM +CONJ +N-ASM +T-ASM +N-ASM +P-GSM +CONJ +V-PAI-3S +P-APM +PREP +N-ASN +A-ASN +PREP +A-ASF +CONJ +V-API-3S +PREP +P-GPM +CONJ +V-AAI-3S +T-NSN +N-NSN +P-GSM +ADV +T-NSM +N-NSM +CONJ +T-NPN +N-NPN +P-GSM +V-2ADI-3S +A-NPN +ADV +T-NSN +N-NSN +CONJ +V-2AMM-2S +V-API-3S +P-DPM +N-NSM +CONJ +N-NSM +V-PAP-NPM +PREP +P-GSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +T-DSM +N-DSM +N-VSM +A-NSN +V-PAI-3S +P-1AP +ADV +V-PAN +COND +V-PAI-2S +V-FAI-1S +ADV +A-APF +N-APF +P-2DS +A-ASF +CONJ +N-DSM +A-ASF +CONJ +N-DSM +A-ASF +ADV +P-GSM +V-PAP-GSM +V-2AMM-2S +N-NSF +A-NSF +V-AAI-3S +P-APM +CONJ +V-2AMM-2S +N-NSF +PREP +T-GSF +N-GSF +V-PAP-NSF +D-NSM +V-PAI-3S +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +PREP +R-DSM +V-AAI-1S +V-PAM-2P +P-GSM +CONJ +V-AAP-NPM +T-NPM +N-NPM +V-2AAI-3P +PREP +N-ASN +P-GPM +CONJ +V-AOI-3P +ADV +CONJ +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-AMP-NSM +P-GPM +V-2AAI-3S +V-APM-2P +CONJ +PRT-N +V-PNM-2P +CONJ +V-AAP-NPM +T-APM +N-APM +P-GPM +A-ASM-N +V-2AAI-3P +COND +PRT-N +P-ASM +N-ASM +ADV +CONJ +V-PAP-GPM +P-GPM +PREP +T-GSN +N-GSN +V-ADI-3S +P-DPM +T-NSM +N-NSM +V-PAP-NSM +A-DSM-N +V-2AAS-2P +T-ASN +N-ASN +ADV +R-GSM +T-NSM +N-NSM +T-GSM +N-GSM +PREP +A-GPM +V-APS-3S +CONJ +V-AAI-3P +P-ASM +T-NPM +N-NPM +V-PAP-NPM +CONJ +I-ASN +T-NPM +N-NPM +V-PAI-3P +CONJ +V-PAI-3S +N-ASM +V-2AAN +ADV-S +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +PRT +N-NSM +V-PNI-3S +CONJ +V-FAI-3S +A-APN +CONJ +V-PAI-1S +P-2DP +CONJ +N-NSM +ADV +V-2AAI-3S +CONJ +PRT-N +V-2AAI-3P +P-ASM +CONJ +V-AAI-3P +PREP +P-DSM +K-APN +V-AAI-3P +ADV +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +V-PAN +PREP +P-GPM +ADV +V-AAI-3P +T-NPM +N-NPM +CONJ +PREP +N-GSM +T-GSM +N-GSM +V-2AAI-3S +P-DPM +CONJ +V-2AAP-GPM +PREP +T-ASM +N-ASM +V-2AAI-3S +P-DSM +N-NSM +V-PAP-NSM +P-ASM +CONJ +V-PAP-NSM +N-VSM +V-AAM-2S +P-1GS +T-ASM +N-ASM +CONJ +V-PNI-3S +CONJ +ADV +V-PAI-3S +CONJ +ADV +V-PAI-3S +PREP +T-ASN +N-ASN +CONJ +ADV +PREP +T-ASN +N-ASN +CONJ +V-AAI-1S +P-ASM +T-DPM +N-DPM +P-2GS +CONJ +PRT-N +V-AOI-3P-ATT +P-ASM +V-AAN +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +INJ +N-VSF +A-VSF +CONJ +V-RPP-NSF +ADV +PRT-I +PREP +P-2GP +V-FDI-1S +ADV +PRT-I +V-FDI-1S +P-2GP +V-PAM-2P +P-1DS +P-ASM +ADV +CONJ +V-AAI-3S +P-DSN +T-NSM +N-NSM +CONJ +V-2AAI-3S +PREP +P-GSM +T-NSN +N-NSN +CONJ +V-API-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +D-GSF +ADV +T-NPM +N-NPM +V-2AAP-NPM +T-DSM +N-DSM +PREP +A-ASF +V-2AAI-3P +PREP +I-ASN +P-1NP +PRT-N +V-AOI-1P-ATT +V-2AAN +P-ASN +CONJ +T-NSM +V-PAI-3S +P-DPM +PREP +T-ASF +N-ASF +P-2GP +CONJ +HEB +V-PAI-1S +P-2DP +COND +V-PAS-2P +N-ASF +ADV +N-ASM +N-GSN +V-FAI-2P +T-DSN +N-DSN +D-DSN +V-2AAM-2S +ADV +ADV +CONJ +V-FDI-3S +CONJ +A-NSN-N +V-FAI-3S +P-2DP +CONJ +V-PPP-GPM +P-GPM +PREP +T-DSF +N-DSF +V-2AAI-3S +P-DPM +T-NSM +N-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-PPN +PREP +N-APF +N-GPM +CONJ +V-FAI-3P +P-ASM +CONJ +T-DSF +A-DSF +N-DSF +V-FPI-3S +CONJ +V-API-3P +ADV +CONJ +V-2AAP-GPM +P-GPM +PREP +N-PRI +V-2AAI-3P +T-NPM +T-APN +N-APN +V-PAP-NPM +T-DSM +N-DSM +CONJ +V-2AAI-3P +PRT-N +T-NSM +N-NSM +P-2GP +V-PAI-3S +N-APN +V-PAI-3S +PRT +CONJ +V-2AAP-ASM +PREP +T-ASF +N-ASF +V-AAI-3S +P-ASM +T-NSM +N-NSM +V-PAP-NSM +I-NSN +P-2DS +V-PAI-3S +N-VSM +T-NPM +N-NPM +T-GSF +N-GSF +PREP +I-GPM +V-PAI-3P +N-APN +PRT +N-ASM +PREP +T-GPM +N-GPM +P-GPM +PRT +PREP +T-GPM +A-GPM +CONJ +V-2AAP-GSM +PREP +T-GPM +A-GPM +V-IAI-3S +P-DSM +T-NSM +N-NSM +PRT +A-NPM +V-PAI-3P +T-NPM +N-NPM +CONJ +CONJ +PRT-N +V-AAS-1P +P-APM +V-AOP-NSM +PREP +N-ASF +V-2AAM-2S +N-ASN +CONJ +T-ASM +V-2AAP-ASM +ADV-S +N-ASM +V-AAM-2S +CONJ +V-AAP-NSM +T-ASN +N-ASN +P-GSM +V-FAI-2S +N-ASM +D-ASM +V-2AAP-NSM +V-2AAM-2S +P-DPM +PREP +P-1GS +CONJ +P-2GS +PREP +D-DSF +T-DSF +N-DSF +V-2AAI-3P +T-NPM +N-NPM +T-DSM +N-DSM +V-PAP-NPM +PRT-I +I-NSM +A-NSM-C +V-PAI-3S +PREP +T-DSF +N-DSF +T-GPM +N-GPM +CONJ +V-ADP-NSM +N-ASN +V-AAI-3S +P-ASN +PREP +A-DSN +P-GPM +CONJ +V-2AAI-3S +HEB +V-PAI-1S +P-2DP +COND +PRT-N +V-2APS-2P +CONJ +V-2ADS-2P +ADV +T-NPN +N-NPN +PRT-N +PRT-N +V-2AAS-2P +PREP +T-ASF +N-ASF +T-GPM +N-GPM +CONJ +R-NSM +V-FAI-3S +F-3ASM +ADV +T-NSN +N-NSN +D-NSN +D-NSM +V-PAI-3S +T-NSM +A-NSM-C +PREP +T-DSF +N-DSF +T-GPM +N-GPM +CONJ +COND +R-NSM +V-ADS-3S +A-ASN +N-ASN +D-ASN +PREP +T-DSN +N-DSN +P-1GS +P-1AS +V-PNI-3S +CONJ +PRT +R-NSM +V-AAS-3S +A-ASM +T-GPM +A-GPM +D-GPM +T-GPM +V-PAP-GPM +PREP +P-1AS +V-PAI-3S +P-DSM +CONJ +V-APS-3S +N-NSM +A-NSM +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-APS-3S +PREP +T-DSN +N-DSN +T-GSF +N-GSF +INJ +T-DSM +N-DSM +PREP +T-GPN +N-GPN +CONJ +N-NSF +V-2AAN +T-APN +N-APN +ADV +INJ +T-DSM +N-DSM +PREP +R-GSM +T-NSN +N-NSN +V-PNI-3S +CONJ +COND +T-NSF +N-NSF +P-2GS +PRT +T-NSM +N-NSM +P-2GS +V-PAI-3S +P-2AS +V-AAM-2S +P-ASM +CONJ +V-2AAM-2S +PREP +P-2GS +A-NSN +P-2DS +V-PAI-3S +V-2AAN +PREP +T-ASF +N-ASF +A-ASM +PRT +A-ASM +PRT +A-NUI +N-APF +PRT +A-NUI +N-APM +V-PAP-ASM +V-APN +PREP +T-ASN +N-ASN +T-ASN +A-ASN +CONJ +COND +T-NSM +N-NSM +P-2GS +V-PAI-3S +P-2AS +V-2AAM-2S +P-ASM +CONJ +V-2AAM-2S +PREP +P-2GS +A-NSN +P-2DS +V-PAI-3S +A-ASM +PREP +T-ASF +N-ASF +V-2AAN +PRT +A-NUI +N-APM +V-PAP-ASM +V-APN +PREP +T-ASF +N-ASF +T-GSN +N-GSN +V-PAM-2P +PRT-N +V-AAS-2P +A-GSN +T-GPN +A-GPN +D-GPN +CONJ +V-PAI-1S +P-2DP +CONJ +T-NPM +N-NPM +P-GPN +PREP +N-DPM +PREP +A-GSN +V-PAI-3P +T-ASN +N-ASN +T-GSM +N-GSM +P-1GS +T-GSM +PREP +N-DPM +I-NSN +P-2DP +V-PAI-3S +COND +V-2ADS-3S +X-DSM +N-DSM +A-NUI +N-NPN +CONJ +V-APS-3S +A-NSN +PREP +P-GPN +PRT-I +V-FAI-3S +T-APN +A-NUI +A-NUI +PREP +T-APN +N-APN +CONJ +V-AOP-NSM +V-PAI-3S +T-ASN +V-PPP-ASN +CONJ +COND +V-2ADS-3S +V-2AAN +P-ASN +HEB +V-PAI-1S +P-2DP +CONJ +V-PAI-3S +PREP +P-DSN +ADV +PRT +PREP +T-DPN +A-NUI +A-NUI +T-DPN +PRT-N +V-RPP-DPN +ADV +PRT-N +V-PAI-3S +N-NSN +PREP +T-GSM +N-GSM +P-2GP +T-GSM +PREP +N-DPM +CONJ +V-2AMS-3S +A-NSN +T-GPN +A-GPN +D-GPN +CONJ +COND +V-AAS-3S +T-NSM +N-NSM +P-2GS +V-PAM-2S +V-AAM-2S +P-ASM +ADV +P-2GS +CONJ +P-GSM +A-GSM +COND +P-2GS +V-AAS-3S +V-AAI-2S +T-ASM +N-ASM +P-2GS +CONJ +COND +PRT-N +V-AAS-3S +V-2AAM-2S +PREP +P-2GS +ADV +A-ASM +PRT +A-NUI +CONJ +PREP +N-GSN +A-NUI +PRT +A-GPM +N-GPM +V-APS-3S +A-NSN +N-NSN +CONJ +COND +V-AAS-3S +P-GPM +V-2AAM-2S +T-DSF +N-DSF +CONJ +COND +CONJ +T-GSF +N-GSF +V-AAS-3S +V-PAM-3S +P-2DS +ADV +T-NSM +A-NSM +CONJ +T-NSM +N-NSM +HEB +V-PAI-1S +P-2DP +COND +K-APN +V-AAS-2P +PREP +T-GSF +N-GSF +V-FDI-3S +V-RPP-NPN +PREP +N-DSM +CONJ +COND +K-APN +V-AAS-2P +PREP +T-GSF +N-GSF +V-FDI-3S +V-RPP-NPN +PREP +N-DSM +HEB +ADV +V-PAI-1S +P-2DP +CONJ +COND +A-NUI +PREP +P-2GP +V-AAS-3P +PREP +T-GSF +N-GSF +PREP +A-GSN +N-GSN +COND +R-GSN +V-AMS-3P +V-FDI-3S +P-DPM +PREP +T-GSM +N-GSM +P-1GS +T-GSM +PREP +N-DPM +CONJ +ADV +V-PAI-3P +V-RPP-NPM +A-NUI +PRT +A-NPM +PREP +T-ASN +S-1SASN +N-ASN +ADV +V-PAI-1S +PREP +A-DSN +P-GPM +ADV +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +N-VSM +ADV +V-FAI-3S +PREP +P-1AS +T-NSM +N-NSM +P-1GS +CONJ +V-FAI-1S +P-DSM +ADV +ADV +V-PAI-3S +P-DSM +T-NSM +N-NSM +PRT-N +V-PAI-1S +P-2DS +ADV +ADV +CONJ +ADV +ADV +A-NUI +PREP +D-ASN +V-API-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +N-DSM +R-NSM +V-AAI-3S +V-AAN +N-ASM +PREP +T-GPM +N-GPM +P-GSM +CONJ +V-AMP-GSM +P-GSM +V-PAN +V-API-3S +P-DSM +A-NSM +N-NSM +A-GPN +N-GPN +CONJ +PRT-N +V-PAP-GSM +P-GSM +V-2AAN +V-AAI-3S +T-NSM +N-NSM +V-APN +P-ASM +CONJ +T-ASF +N-ASF +CONJ +T-APN +N-APN +CONJ +A-APN +K-APN +V-PAI-3S +CONJ +V-APN +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-IAI-3S +P-DSM +V-PAP-NSM +V-AAM-2S +PREP +P-1DS +CONJ +A-APN +V-FAI-1S +P-2DS +CONJ +V-AOP-NSM +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +V-AAI-3S +P-ASM +CONJ +T-ASN +N-ASN +V-AAI-3S +P-DSM +CONJ +V-2AAP-NSM +T-NSM +N-NSM +D-NSM +V-2AAI-3S +A-ASM +T-GPM +N-GPM +P-GSM +R-NSM +V-IAI-3S +P-DSM +A-NUI +N-APN +CONJ +V-AAP-NSM +P-ASM +V-IAI-3S +V-PAP-NSM +V-2AAM-2S +COND +X-ASN +V-PAI-2S +CONJ +V-2AAP-NSM +T-NSM +N-NSM +P-GSM +V-IAI-3S +P-ASM +V-PAP-NSM +V-AAM-2S +PREP +P-1DS +CONJ +V-FAI-1S +P-2DS +CONJ +T-NSM +PRT-N +V-IAI-3S +CONJ +V-2AAP-NSM +V-2AAI-3S +P-ASM +PREP +N-ASF +ADV +V-2AAS-3S +T-ASN +V-PPP-ASN +CONJ +T-NPM +N-NPM +P-GSM +V-2AAP-NPM +T-APN +V-2ADP-APN +V-API-3P +ADV +CONJ +V-2AAP-NPM +V-AAI-3P +T-DSM +N-DSM +F-3GPM +A-APN +T-APN +V-2ADP-APN +ADV +V-ADP-NSM +P-ASM +T-NSM +N-NSM +P-GSM +V-PAI-3S +P-DSM +N-VSM +A-VSM +A-ASF +T-ASF +N-ASF +D-ASF +V-AAI-1S +P-2DS +CONJ +V-AAI-2S +P-1AS +PRT-N +V-IAI-3S +CONJ +P-2AS +V-AAN +T-ASM +N-ASM +P-2GS +ADV +P-1NS-K +P-2AS +V-AAI-1S +CONJ +V-APP-NSM +T-NSM +N-NSM +P-GSM +V-AAI-3S +P-ASM +T-DPM +N-DPM +ADV +R-GSM +V-2AAS-3S +A-ASN +T-ASN +V-PPP-ASN +P-DSM +ADV +CONJ +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +V-FAI-3S +P-2DP +COND +PRT-N +V-2AAS-2P +A-NSM +T-DSM +N-DSM +P-GSM +PREP +T-GPF +N-GPF +P-2GP +CONJ +V-2ADI-3S +ADV +V-AAI-3S +T-NSM +N-NSM +T-APM +N-APM +D-APM +V-AAI-3S +PREP +T-GSF +N-GSF +CONJ +V-2AAI-3S +PREP +T-APN +N-APN +T-GSF +N-GSF +ADV +T-GSM +N-GSM +CONJ +V-AAI-3P +P-DSM +N-NPM +A-NPM +CONJ +V-AAI-3S +P-APM +ADV +CONJ +V-2AAI-3P +P-DSM +N-NPM +V-PAP-NPM +P-ASM +CONJ +V-PAP-NPM +COND +V-PAI-3S +V-AAN +T-ASF +N-ASF +P-GSM +PREP +A-ASF +N-ASF +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +PRT-N +V-2AAI-2P +CONJ +T-NSM +V-AAP-NSM +PREP +N-GSF +A-ASN +CONJ +A-ASN +V-AAI-3S +P-APM +CONJ +V-2AAI-3S +PREP +D-GSN +V-FAI-3S +N-NSM +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +V-FPI-3S +T-DSF +N-DSF +P-GSM +CONJ +V-FDI-3P +T-NPM +A-NUI +PREP +N-ASF +A-ASF +CONJ +ADV-N +V-PAI-3P +A-NUI +CONJ +N-NSF +A-NSF +CONJ +R-ASN +T-NSM +N-NSM +V-AAI-3S +N-NSM +PRT-N +V-PAM-3S +V-PAI-3P +P-DSM +CONJ +I-ASN +N-NSM +V-ADI-3S +V-2AAN +N-ASN +N-GSN +CONJ +V-AAN +V-PAI-3S +P-DPM +CONJ +N-NSM +PREP +T-ASF +N-ASF +P-2GP +V-AAI-3S +P-2DP +V-AAN +T-APF +N-APF +P-2GP +CONJ +PREP +N-GSF +PRT-N +V-2RAI-3S +ADV +CONJ +V-PAI-1S +P-2DP +CONJ +PRT +R-NSM +V-AAS-3S +T-ASF +N-ASF +P-GSM +PRT-N +PREP +N-DSF +CONJ +V-AAS-3S +A-ASF +V-PNI-3S +V-PAI-3P +P-DSM +T-NPM +N-NPM +COND +ADV +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +T-GSF +N-GSF +PRT-N +V-PAI-3S +V-AAN +CONJ +T-NSM +V-2AAI-3S +P-DPM +PRT-N +A-NPM +V-PAI-3P +T-ASM +N-ASM +D-ASM +CONJ +R-DPM +V-RPI-3S +CONJ +V-PAI-3P +N-NPM +R-NPM +PREP +N-GSF +N-GSF +V-API-3P +ADV +CONJ +V-PAI-3P +N-NPM +R-NPM +V-API-3P +PREP +T-GPM +N-GPM +CONJ +V-PAI-3P +N-NPM +R-NPM +V-AAI-3P +F-3APM +PREP +T-ASF +N-ASF +T-GPM +N-GPM +T-NSM +V-PNP-NSM +V-PAN +V-PAM-3S +ADV +V-API-3P +P-DSM +N-NPN +CONJ +T-APF +N-APF +V-2AAS-3S +P-DPN +CONJ +V-ADS-3S +CONJ +T-NPM +N-NPM +V-AAI-3P +P-DPM +CONJ +T-NSM +N-NSM +V-2AAI-3S +V-2AAM-2P +T-APN +N-APN +CONJ +PRT-N +V-PAM-2P +P-APN +V-2AAN +PREP +P-1AS +CONJ +T-GPN +D-GPN +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +CONJ +V-2AAP-NSM +T-APF +N-APF +P-DPN +V-AOI-3S +ADV +CONJ +V-2AMM-2S +A-NSM +V-2AAP-NSM +P-DSM +V-2AAI-3S +N-VSM +I-ASN +A-ASN +V-AAS-1S +CONJ +V-2AAS-1S +N-ASF +A-ASF +CONJ +T-NSM +V-2AAI-3S +P-DSM +I-ASN +P-1AS +V-PAI-2S +PREP +T-GSN +A-GSN +A-NSM +V-PAI-3S +T-NSM +A-NSM +CONJ +COND +V-PAI-2S +PREP +T-ASF +N-ASF +V-2AAN +V-PAM-2S +T-APF +N-APF +V-PAI-3S +P-DSM +I-APF +CONJ +T-NSM +N-NSM +V-IAI-3S +T-ASN +PRT-N +V-FAI-2S +PRT-N +V-FAI-2S +PRT-N +V-FAI-2S +PRT-N +V-FAI-2S +V-PAM-2S +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +V-FAI-2S +T-ASM +ADV +P-2GS +ADV +F-2ASM +V-PAI-3S +P-DSM +T-NSM +N-NSM +D-APN +A-APN +V-AAI-1S +I-ASN +ADV +V-PAI-1S +V-IAI-3S +P-DSM +T-NSM +N-NSM +COND +V-PAI-2S +A-NSM +V-PAN +V-PAM-2S +V-AAM-2S +P-2GS +T-APN +V-PAP-APN +CONJ +V-2AAM-2S +A-DPM +CONJ +V-FAI-2S +N-ASM +PREP +N-DPM +CONJ +V-PAM-2S +V-PAM-2S +P-1DS +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-ASM +N-ASM +V-2AAI-3S +V-PPP-NSM +CONJ +V-IAI-3S +V-PAP-NSM +N-APN +A-APN +CONJ +T-NSM +N-NSM +V-2AAI-3S +T-DPM +N-DPM +P-GSM +HEB +V-PAI-1S +P-2DP +CONJ +A-NSM +ADV +V-FDI-3S +PREP +T-ASF +N-ASF +T-GPM +N-GPM +CONJ +ADV +V-PAI-1S +P-2DP +A-NSN-C +V-PAI-3S +N-ASF +PREP +N-GSN +N-GSF +V-2AAN +PRT +A-ASM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-AAP-NPM +T-NPM +N-NPM +V-IPI-3P +ADV +V-PAP-NPM +PRT-I +I-NSM +V-PNI-3S +V-APN +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +PREP +N-DPM +D-NSN +A-NSN +V-PAI-3S +CONJ +PREP +N-DSM +A-NPN +A-NPN +ADV +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-2AMM-2S +P-1NP +V-AAI-1P +A-APN +CONJ +V-AAI-1P +P-2DS +PRT-I +I-NSN +V-FDI-3S +P-1DP +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +HEB +V-PAI-1S +P-2DP +CONJ +P-2NP +T-NPM +V-AAP-NPM +P-1DS +PREP +T-DSF +N-DSF +CONJ +V-AAS-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +N-GSM +N-GSF +P-GSM +V-FDI-2P +CONJ +P-NPM +PREP +A-NUI +N-APM +V-PAP-NPM +T-APF +A-NUI +N-APF +T-GSM +N-PRI +CONJ +A-NSM +R-NSM +V-AAI-3S +N-APF +PRT +N-APM +PRT +N-APF +PRT +N-ASM +PRT +N-ASF +PRT +N-APN +PRT +N-APM +PREP +T-GSN +S-1SGSN +N-GSN +A-APN +V-FDI-3S +CONJ +N-ASF +A-ASF +V-FAI-3S +CONJ +A-NPM +A-NPM-S +V-FDI-3P +A-NPM-S +CONJ +A-NPM-S +A-NPM-S +CONJ +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +N-DSM +R-NSM +V-2AAI-3S +ADV +ADV +V-AMN +N-APM +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-AAP-NSM +PREP +T-GPM +N-GPM +PREP +N-GSN +T-ASF +N-ASF +V-AAI-3S +P-APM +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-2AAP-NSM +PREP +A-ASF +N-ASF +V-2AAI-3S +A-APM +V-RAP-APM +PREP +T-DSF +N-DSF +A-APM +CONJ +D-DPM +V-2AAI-3S +V-PAM-2P +CONJ +P-2NP +PREP +T-ASM +N-ASM +CONJ +COND +R-ASN +V-PAS-3S +A-NSN +V-FAI-1S +P-2DP +CONJ +T-NPM +V-2AAI-3P +CONJ +ADV +V-2AAP-NSM +PREP +A-ASF +CONJ +A-ASF +N-ASF +V-AAI-3S +ADV +CONJ +PREP +T-ASF +A-ASF +V-2AAP-NSM +V-2AAI-3S +A-APM +V-RAP-APM +CONJ +V-PAI-3S +P-DPM +I-ASN +ADV +V-RAI-2P +A-ASF +T-ASF +N-ASF +A-NPM +V-PAI-3P +P-DSM +CONJ +A-NSM-N +P-1AP +V-AMI-3S +V-PAI-3S +P-DPM +V-PAM-2P +CONJ +P-2NP +PREP +T-ASM +N-ASM +CONJ +A-GSF +V-2ADP-GSF +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-DSM +N-DSM +P-GSM +V-AAM-2S +T-APM +N-APM +CONJ +V-2AAM-2S +T-ASM +N-ASM +V-AMP-NSM +PREP +T-GPM +A-GPM-S +ADV +T-GPM +A-GPM-S +CONJ +V-2AAP-NPM +T-NPM +PREP +T-ASF +A-ASF +N-ASF +V-2AAI-3P +PREP +N-ASN +CONJ +V-2AAP-NPM +T-NPM +A-NPM-S +V-AAI-3P +CONJ +A-ASN-C +V-FDI-3P +CONJ +V-2AAI-3P +T-ASN +PREP +N-ASN +CONJ +P-NPM +CONJ +V-2AAP-NPM +V-IAI-3P +PREP +T-GSM +N-GSM +V-PAP-NPM +D-NPM +T-NPM +A-NPM-S +A-ASF +N-ASF +V-AAI-3P +CONJ +A-APM +P-APM +V-AAI-2S +P-1DP +T-DPM +V-AAP-DPM +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +T-ASM +N-ASM +CONJ +T-NSM +V-AOP-NSM +A-DSM +P-GPM +V-2AAI-3S +N-VSM +PRT-N +V-PAI-1S +P-2AS +PRT-I +N-GSN +V-AAI-2S +P-1DS +V-AAM-2S +T-ASN +S-2SASN +CONJ +V-PAM-2S +CONJ +V-PAI-1S +D-DSM +T-DSM +A-DSM-S +V-2AAN +ADV +CONJ +P-2DS +PRT-N +V-PAI-3S +P-1DS +R-ASN +V-PAI-1S +V-AAN +PREP +T-DPN +S-1SDPN +PRT +T-NSM +N-NSM +P-2GS +A-NSM +V-PAI-3S +CONJ +P-1NS +A-NSM +V-PAI-1S +ADV +V-FDI-3P +T-NPM +A-NPM-S +A-NPM-S +CONJ +T-NPM +A-NPM-S +A-NPM-S +CONJ +N-NSM +V-PAP-NSM +V-PAN +PREP +N-APN +V-2AAI-3S +T-APM +A-NUI +PREP +A-ASF +CONJ +PREP +T-DSF +N-DSF +V-2AAI-3S +P-DPM +V-2AMM-2S +V-PAI-1P +PREP +N-APN +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-FPI-3S +T-DPM +N-DPM +CONJ +N-DPM +CONJ +V-FAI-3P +P-ASM +PREP +N-ASM +CONJ +V-FAI-3P +P-ASM +T-DPN +N-DPN +PREP +T-ASN +V-AAN +CONJ +V-AAN +CONJ +V-AAN +CONJ +T-DSF +A-DSF +N-DSF +V-FPI-3S +ADV +V-2AAI-3S +P-DSM +T-NSF +N-NSF +T-GPM +N-GPM +N-GSM +PREP +T-GPM +N-GPM +P-GSF +V-PAP-NSF +CONJ +V-PAP-NSF +X-ASN +PREP +P-GSM +CONJ +T-NSM +V-2AAI-3S +P-DSF +I-ASN +V-PAI-2S +V-PAI-3S +P-DSM +V-2AAM-2S +CONJ +V-AAS-3P +D-NPM +T-NPM +A-NUI +N-NPM +P-1GS +A-NSM +PREP +A-GPN +CONJ +A-NSM +PREP +A-GPN +P-2GS +PREP +T-DSF +N-DSF +P-2GS +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +PRT-N +V-RAI-2P +I-ASN +V-PMI-2P +V-PNI-2P +V-2AAN +T-ASN +N-ASN +R-ASN +V-PAN +P-1NS +V-PAI-1S +V-PAI-3P +P-DSM +V-PNI-1P +V-PAI-3S +P-DPM +PRT +T-ASN +N-ASN +P-1GS +V-FDI-2P +CONJ +T-ASN +V-AAN +PREP +A-GPN +P-1GS +CONJ +PREP +A-GPN +PRT-N +V-PAI-3S +S-1SNSN +D-ASN +V-2AAN +CONJ +R-DPM +V-RPI-3S +PREP +T-GSM +N-GSM +P-1GS +CONJ +V-AAP-NPM +T-NPM +A-NUI +V-AAI-3P +PREP +T-GPM +A-NUI +N-GPM +CONJ +T-NSM +N-NSM +V-ADP-NSM +P-APM +V-2AAI-3S +V-RAI-2P +CONJ +T-NPM +N-NPM +T-GPN +N-GPN +V-PAI-3P +P-GPN +CONJ +T-NPM +A-NPM +V-PAI-3P +P-GPN +PRT-N +ADV +V-PAI-3S +PREP +P-2DP +CONJ +COND +R-NSM +V-PAS-3S +PREP +P-2DP +A-NSM +V-2ADN +V-FDI-3S +P-2GP +N-NSM +CONJ +PRT +R-NSM +V-PAS-3S +PREP +P-2DP +V-PAN +A-NSM-S +V-FDI-3S +P-2GP +N-NSM +ADV +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +V-2AAI-3S +V-APN +CONJ +V-AAN +CONJ +V-2AAN +T-ASF +N-ASF +P-GSM +N-ASN +PREP +A-GPM +CONJ +V-PNP-GPM +P-GPM +PREP +N-PRI +V-AAI-3S +P-DSM +N-NSM +A-NSM +CONJ +V-2AMM-2S +A-NUI +A-NPM +V-PNP-NPM +PREP +T-ASF +N-ASF +V-AAP-NPM +CONJ +N-NSM +V-PAI-3S +V-AAI-3P +V-PAP-NPM +V-AAM-2S +P-1AP +N-VSM +N-NSM +N-PRI +CONJ +T-NSM +N-NSM +V-AAI-3S +P-DPM +CONJ +V-AAS-3P +CONJ +T-NPM +ADV-C +V-AAI-3P +V-PAP-NPM +V-AAM-2S +P-1AP +N-VSM +N-NSM +N-PRI +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-AAI-3S +P-APM +CONJ +V-2AAI-3S +V-PAI-2P +I-ASN +V-AAS-1S +P-2DP +V-PAI-3P +P-DSM +N-VSM +CONJ +V-2APS-3P +T-NPM +N-NPM +P-1GP +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-ADI-3S +T-GPN +N-GPN +P-GPM +CONJ +ADV +V-AAI-3P +CONJ +V-AAI-3P +P-DSM +CONJ +ADV +V-AAI-3P +PREP +N-APN +CONJ +V-2AAI-3P +PREP +N-PRI +PREP +T-ASN +N-ASN +T-GPF +N-GPF +ADV +N-NSM +V-AAI-3S +A-NUI +N-APM +V-PAP-NSM +P-DPM +V-PNM-2P +PREP +T-ASF +N-ASF +T-ASF +PREP +P-2GP +CONJ +ADV +V-FAI-2P +N-ASF +V-RPP-ASF +CONJ +N-ASM +PREP +P-GSF +V-AAP-NPM +V-2AAM-2P +P-1DS +CONJ +COND +X-NSM +P-2DP +V-2AAS-3S +X-ASN +V-FAI-2P +CONJ +T-NSM +N-NSM +P-GPM +N-ASF +V-PAI-3S +CONJ +ADV +V-FAI-3S +P-APM +CONJ +D-NSN +V-2RAI-3S +CONJ +V-APS-3S +T-NSN +V-APP-NSN +PREP +T-GSM +N-GSM +V-PAP-GSM +V-2AAM-2P +T-DSF +N-DSF +N-PRI +V-2AMM-2S +T-NSM +N-NSM +P-2GS +V-PNI-3S +P-2DS +A-NSM +CONJ +V-RAP-NSM +PREP +N-ASF +CONJ +PREP +N-ASM +N-ASM +N-GSN +CONJ +T-NPM +N-NPM +V-AOP-NPM +CONJ +V-AAP-NPM +ADV +V-AAI-3S +P-DPM +T-NSM +N-NSM +V-2AAI-3P +T-ASF +N-ASF +CONJ +T-ASM +N-ASM +CONJ +V-AAI-3P +PREP +P-GPM +T-APN +N-APN +CONJ +V-AAI-3S +ADV +P-GPM +CONJ +T-NSM +A-NSM-S +N-NSM +V-AAI-3P +F-3GPM +T-APN +N-APN +PREP +T-DSF +N-DSF +CONJ +A-NPM +V-IAI-3P +N-APM +PREP +T-GPN +N-GPN +CONJ +V-IAI-3P +PREP +T-DSF +N-DSF +CONJ +T-NPM +N-NPM +T-NPM +V-PAP-NPM +P-ASM +CONJ +T-NPM +V-PAP-NPM +V-IAI-3P +V-PAP-NPM +HEB +T-DSM +N-DSM +N-PRI +V-RPP-NSM +T-NSM +V-PNP-NSM +PREP +N-DSN +N-GSM +HEB +PREP +T-DPN +A-DPN-S +CONJ +V-2AAP-GSM +P-GSM +PREP +N-APN +V-API-3S +A-NSF +T-NSF +N-NSF +V-PAP-NSF +I-NSM +V-PAI-3S +D-NSM +CONJ +T-NPM +N-NPM +V-IAI-3P +D-NSM +V-PAI-3S +T-NSM +N-NSM +N-NSM +T-NSM +PREP +N-PRI +T-GSF +N-GSF +CONJ +V-2AAI-3S +N-NSM +PREP +T-ASN +N-ASN +CONJ +V-2AAI-3S +A-APM +T-APM +V-PAP-APM +CONJ +V-PAP-APM +PREP +T-DSN +N-DSN +CONJ +V-AAI-3S +T-APF +N-APF +T-GPM +N-GPM +CONJ +T-APF +N-APF +T-GPM +V-PAP-GPM +T-APF +N-APF +CONJ +V-PAI-3S +P-DPM +V-RPI-3S +T-NSM +N-NSM +P-1GS +N-NSM +N-GSF +V-FPI-3S +CONJ +P-2NP +P-ASM +V-PAI-2P +N-ASN +N-GPM +CONJ +V-2AAI-3P +P-DSM +A-NPM +CONJ +A-NPM +PREP +T-DSN +N-DSN +CONJ +V-AAI-3S +P-APM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-2AAP-NPM +T-APN +A-APN +R-APN +V-AAI-3S +CONJ +T-APM +N-APM +T-APM +V-PAP-APM +PREP +T-DSN +N-DSN +CONJ +V-PAP-APM +HEB +T-DSM +N-DSM +N-PRI +V-AAI-3P +CONJ +V-2AAI-3P +P-DSM +V-PAI-2S +I-ASN +D-NPM +V-PAI-3P +CONJ +T-NSM +N-NSM +V-PAI-3S +P-DPM +PRT +ADV-N +V-2AAI-2P +CONJ +PREP +N-GSN +A-GPM +CONJ +V-PAP-GPM +V-AMI-2S +N-ASM +CONJ +V-2AAP-NSM +P-APM +V-2AAI-3S +ADV +T-GSF +N-GSF +PREP +N-ASF +CONJ +V-AOI-3S +ADV +CONJ +ADV +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-AAI-3S +CONJ +V-2AAP-NSM +N-ASF +A-ASF +PREP +T-GSF +N-GSF +V-2AAI-3S +PREP +P-ASF +CONJ +A-ASN-N +V-2AAI-3S +PREP +P-DSF +COND +PRT-N +N-APN +ADV +CONJ +V-PAI-3S +P-DSF +PRT-N +ADV-N +PREP +P-2GS +N-NSM +V-2ADS-3S +PREP +T-ASM +N-ASM +CONJ +V-API-3S +ADV +T-NSF +N-NSF +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-AAI-3P +V-PAP-NPM +ADV-I +ADV +V-API-3S +T-NSF +N-NSF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +HEB +V-PAI-1S +P-2DP +COND +V-PAS-2P +N-ASF +CONJ +PRT-N +V-APS-2P +PRT-N +ADV +T-ASN +T-GSF +N-GSF +V-FAI-2P +CONJ +COND-K +T-DSN +N-DSN +D-DSN +V-2AAS-2P +V-APM-2S +CONJ +V-APM-2S +PREP +T-ASF +N-ASF +V-FDI-3S +CONJ +A-APN +PRT +K-APN +V-AAS-2P +PREP +T-DSF +N-DSF +V-PAP-NPM +V-FDI-2P +CONJ +V-2AAP-GSM +P-GSM +PREP +T-ASN +N-ASN +V-2AAI-3P +P-DSM +V-PAP-DSM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +T-GSM +N-GSM +V-PAP-NPM +PREP +I-DSF +N-DSF +D-APN +V-PAI-2S +CONJ +I-NSM +P-2DS +V-AAI-3S +T-ASF +N-ASF +D-ASF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-FAI-1S +P-2AP +P-1NS-K +N-ASM +A-ASM +COND +R-ASM +V-2AAS-2P +P-1DS +P-1NS-K +P-2DP +V-FAI-1S +PREP +I-DSF +N-DSF +D-APN +V-PAI-1S +T-NSN +N-NSN +T-NSN +N-GSM +ADV-I +V-IAI-3S +PREP +N-GSM +PRT +PREP +N-GPM +CONJ +T-NPM +V-INI-3P +PREP +F-3DPM +V-PAP-NPM +COND +V-2AAS-1P +PREP +N-GSM +V-FAI-3S +P-1DP +CONJ +PREP +I-ASN +PRT-N +V-AAI-2P +P-DSM +CONJ +COND +V-2AAS-1P +PREP +N-GPM +V-PNI-1P +T-ASM +N-ASM +CONJ +A-NPM +ADV +N-ASM +V-PAI-3P +T-ASM +N-ASM +CONJ +V-AOP-NPM +T-DSM +N-DSM +V-2AAI-3P +PRT-N +V-RAI-1P +V-IAI-3S +P-DPM +CONJ +P-NSM +CONJ-N +P-1NS +V-PAI-1S +P-2DP +PREP +I-DSF +N-DSF +D-APN +V-PAI-1S +CONJ +I-NSN +P-2DP +V-PAI-3S +N-NSM +V-IAI-3S +N-APN +A-NUI +V-2AAP-NSM +T-DSN +A-DSN-S +V-2AAI-3S +N-VSN +V-PAM-2S +ADV +V-PNM-2S +PREP +T-DSM +N-DSM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-1NS +N-VSM +CONJ +PRT-N +V-2AAI-3S +CONJ +V-2AAP-NSM +T-DSN +A-DSN +V-2AAI-3S +ADV +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +PRT-N +V-PAI-1S +ADV +V-AOP-NSM +V-2AAI-3S +I-NSM +PREP +T-GPM +A-NUI +V-AAI-3S +T-ASN +N-ASN +T-GSM +N-GSM +V-PAI-3P +T-NSM +A-NSM +V-PAI-3S +P-DPM +T-NSM +N-NSM +HEB +V-PAI-1S +P-2DP +CONJ +T-NPM +N-NPM +CONJ +T-NPF +N-NPF +V-PAI-3P +P-2AP +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-2AAI-3S +N-NSM +PREP +P-2AP +PREP +N-DSF +N-GSF +CONJ +PRT-N +V-AAI-2P +P-DSM +CONJ +T-NPM +N-NPM +CONJ +T-NPF +N-NPF +V-AAI-3P +P-DSM +CONJ +P-2NP +V-2AAP-NPM +CONJ-N +V-AOI-2P +ADV +T-GSN +V-AAN +P-DSM +A-ASF +N-ASF +V-AAM-2P +N-NSM +V-IAI-3S +N-NSM +R-NSM +V-AAI-3S +N-ASM +CONJ +N-ASM +P-DSM +V-AAI-3S +CONJ +V-AAI-3S +PREP +P-DSM +N-ASF +CONJ +V-AAI-3S +N-ASM +CONJ +V-2AMI-3S +P-ASM +N-DPM +CONJ +V-AAI-3S +CONJ +ADV +V-AAI-3S +T-NSM +N-NSM +T-GPM +N-GPM +V-AAI-3S +T-APM +N-APM +P-GSM +PREP +T-APM +N-APM +V-2AAN +T-APM +N-APM +P-GSM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +T-APM +N-APM +P-GSM +PRT +R-ASM +V-AAI-3P +CONJ +R-ASM +V-AAI-3P +CONJ +R-ASM +V-AAI-3P +ADV +V-AAI-3S +A-APM +N-APM +A-APM-C +T-GPM +A-GPM-S +CONJ +V-AAI-3P +P-DPM +ADV +CONJ +ADV +V-AAI-3S +PREP +P-APM +T-ASM +N-ASM +P-GSM +V-PAP-NSM +V-2FPI-3P +T-ASM +N-ASM +P-1GS +CONJ +T-NPM +N-NPM +V-2AAP-NPM +T-ASM +N-ASM +V-2AAI-3P +PREP +F-3DPM +D-NSM +V-PAI-3S +T-NSM +N-NSM +V-PAM-2P +V-PAS-1P +P-ASM +CONJ +V-2AAS-1P +T-ASF +N-ASF +P-GSM +CONJ +V-2AAP-NPM +P-ASM +V-2AAI-3P +ADV +T-GSM +N-GSM +CONJ +V-AAI-3P +CONJ +CONJ +V-2AAS-3S +T-NSM +N-NSM +T-GSM +N-GSM +I-ASN +V-FAI-3S +T-DPM +N-DPM +D-DPM +V-PAI-3P +P-DSM +A-APM +ADV +V-FAI-3S +P-APM +CONJ +T-ASM +N-ASM +V-FDI-3S +A-DPM +N-DPM +R-NPM +V-FAI-3P +P-DSM +T-APM +N-APM +PREP +T-DPM +N-DPM +P-GPM +V-PAI-3S +P-DPM +T-NSM +N-NSM +ADV-N +V-2AAI-2P +PREP +T-DPF +N-DPF +N-ASM +R-ASM +V-AAI-3P +T-NPM +V-PAP-NPM +D-NSM +V-AOI-3S +PREP +N-ASF +N-GSF +PREP +N-GSM +V-2ADI-3S +D-NSF +CONJ +V-PAI-3S +A-NSF +PREP +N-DPM +P-1GP +PREP +D-ASN +V-PAI-1S +P-2DP +CONJ +V-FPI-3S +PREP +P-2GP +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +V-FPI-3S +N-DSN +V-PAP-DSN +T-APM +N-APM +P-GSF +CONJ +T-NSM +V-2AAP-NSM +PREP +T-ASM +N-ASM +D-ASM +V-FPI-3S +CONJ +PREP +PRT +R-ASM +V-2AAS-3S +V-FAI-3S +P-ASM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-AAP-NPM +T-APF +N-APF +P-GSM +V-2AAI-3P +CONJ +PREP +P-GPM +V-PAI-3S +CONJ +V-PAP-NPM +P-ASM +V-AAN +V-AOI-3P +T-APM +N-APM +CONJ +PREP +N-ASM +P-ASM +V-IAI-3P +CONJ +V-AOP-NSM +T-NSM +N-NSM +ADV +V-2AAI-3S +PREP +N-DPF +P-DPM +V-PAP-NSM +V-API-3S +T-NSF +N-NSF +T-GPM +N-GPM +N-DSM +N-DSM +R-NSM +V-AAI-3S +N-APM +T-DSM +N-DSM +P-GSM +CONJ +V-AAI-3S +T-APM +N-APM +P-GSM +V-AAN +T-APM +V-RPP-APM +PREP +T-APM +N-APM +CONJ +PRT-N +V-IAI-3P +V-2AAN +ADV +V-AAI-3S +A-APM +N-APM +V-PAP-NSM +V-2AAM-2P +T-DPM +V-RPP-DPM +V-2AMM-2S +T-ASN +N-ASN +P-1GS +V-RAI-1S +T-NPM +N-NPM +P-1GS +CONJ +T-NPN +A-NPN +V-RPP-NPN +CONJ +A-NPN +A-NPN +V-PAM-2P +PREP +T-APM +N-APM +CONJ +T-NPM +V-AAP-NPM +V-2AAI-3P +PRT +R-NSM +PREP +T-ASM +A-ASM +N-ASM +CONJ +R-NSM +PREP +T-ASF +N-ASF +P-GSM +CONJ +T-NPM +A-NPM +V-AAP-NPM +T-APM +N-APM +P-GSM +V-AAI-3P +CONJ +V-AAI-3P +CONJ +T-NSM +N-NSM +V-API-3S +CONJ +V-AAP-NSM +T-APN +N-APN +P-GSM +V-AAI-3S +T-APM +N-APM +D-APM +CONJ +T-ASF +N-ASF +P-GPM +V-AAI-3S +ADV +V-PAI-3S +T-DPM +N-DPM +P-GSM +PRT +T-NSM +N-NSM +A-NSM +V-PAI-3S +CONJ +T-NPM +V-RPP-NPM +PRT-N +V-IAI-3P +A-NPM +CONJ +V-PNM-2P +PREP +T-APF +N-APF +T-GPF +N-GPF +CONJ +COND +K-APM +V-2AAS-2P +V-AAM-2P +PREP +T-APM +N-APM +CONJ +T-NPM +N-NPM +D-NPM +V-2AAP-NPM +PREP +T-APF +N-APF +V-2AAI-3P +A-APM +R-APM +V-2AAI-3P +PRT +A-APM +CONJ +A-APM +CONJ +V-API-3S +T-NSM +N-NSM +V-PNP-GPM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +V-ADN +T-APM +V-PNP-APM +V-2AAI-3S +ADV +N-ASM +PRT-N +V-RMP-ASM +N-ASN +N-GSM +CONJ +V-PAI-3S +P-DSM +N-VSM +ADV-I +V-2AAI-2S +ADV +PRT-N +V-PAP-NSM +N-ASN +N-GSM +CONJ +T-NSM +V-API-3S +ADV +T-NSM +N-NSM +V-2AAI-3S +T-DPM +N-DPM +V-AAP-NPM +P-GSM +N-APM +CONJ +N-APF +V-2AAM-2P +P-ASM +PREP +T-ASN +N-ASN +T-ASN +A-ASN-C +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +CONJ +A-NPM +V-PAI-3P +A-NPM +CONJ +A-NPM +A-NPM +ADV +V-AOP-NPM +T-NPM +N-NPM +N-ASN +V-2AAI-3P +ADV +P-ASM +V-AAS-3P +PREP +N-DSM +CONJ +V-PAI-3P +P-DSM +T-APM +N-APM +P-GPM +PREP +T-GPM +N-GPM +V-PAP-APM +N-VSM +V-RAI-1P +CONJ +A-NSM +V-PAI-2S +CONJ +T-ASF +N-ASF +T-GSM +N-GSM +PREP +N-DSF +V-PAI-2S +CONJ +PRT-N +V-PAI-3S +P-2DS +PREP +A-GSM-N +CONJ +PRT-N +V-PAI-2S +PREP +N-ASN +N-GPM +CONJ +V-2AAM-2S +P-1DP +I-NSN +P-2DS +V-PAI-3S +V-PAI-3S +V-2AAN +N-ASM +N-DSM +PRT +PRT-N +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-ASF +N-ASF +P-GPM +V-2AAI-3S +I-ASN +P-1AS +V-PAI-2P +N-VPM +V-AAM-2P +P-1DS +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +T-NPM +V-AAI-3P +P-DSM +N-ASN +CONJ +V-PAI-3S +P-DPM +I-GSM +T-NSF +N-NSF +D-NSF +CONJ +T-NSF +N-NSF +V-PAI-3P +N-GSM +ADV +V-PAI-3S +P-DPM +CONJ +V-2AAM-2P +T-APN +N-GSM +N-DSM +CONJ +T-APN +T-GSM +N-GSM +T-DSM +N-DSM +CONJ +V-AAP-NPM +V-AAI-3P +CONJ +V-2AAP-NPM +P-ASM +V-2AAI-3P +PREP +D-DSF +T-DSF +N-DSF +V-2AAI-3P +P-DSM +N-NPM +V-PAP-NPM +PRT-N +V-PAN +N-ASF +CONJ +V-AAI-3P +P-ASM +V-PAP-NPM +N-VSM +N-NSM +V-2AAI-3S +COND +X-NSM +V-2AAS-3S +PRT-N +V-PAP-NSM +N-APN +V-FAI-3S +T-NSM +N-NSM +P-GSM +T-ASF +N-ASF +P-GSM +CONJ +V-FAI-3S +N-ASN +T-DSM +N-DSM +P-GSM +CONJ +V-IAI-3P +PREP +P-1DP +A-NUI +N-NPM +CONJ +T-NSM +A-NSM-S +V-AAP-NSM +V-AAI-3S +CONJ +PRT-N +V-PAP-NSM +N-ASN +V-AAI-3S +T-ASF +N-ASF +P-GSM +T-DSM +N-DSM +P-GSM +ADV +CONJ +T-NSM +A-NSM +CONJ +T-NSM +A-NSM +ADV +T-GPM +A-NUI +CONJ +ADV +A-GPM +V-2AAI-3S +T-NSF +N-NSF +CONJ +PREP +T-DSF +N-DSF +I-GSM +T-GPM +A-NUI +N-NSF +V-FDI-3S +CONJ +A-NPM +V-2AAI-3P +P-ASF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-PPI-2P +PRT-N +V-RAP-NPM +T-APF +N-APF +CONJ-N +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +PREP +T-DSF +N-DSF +CONJ-N +V-PAI-3P +CONJ-N +V-PPI-3P +CONJ +ADV +N-NPM +PREP +T-DSM +N-DSM +V-PAI-3P +CONJ +PREP +T-GSF +N-GSF +T-GPM +A-GPM +PRT-N +V-2AAI-2P +T-ASN +V-APP-ASN +P-2DP +PREP +T-GSM +N-GSM +V-PAP-GSM +P-1NS +V-PAI-1S +T-NSM +N-NSM +N-PRI +CONJ +T-NSM +N-NSM +N-PRI +CONJ +T-NSM +N-NSM +N-PRI +PRT-N +V-PAI-3S +T-NSM +N-NSM +A-GPM +CONJ +V-PAP-GPM +CONJ +V-AAP-NPM +T-NPM +N-NPM +V-IPI-3P +PREP +T-DSF +N-DSF +P-GSM +CONJ +T-NPM +N-NPM +V-AAP-NPM +CONJ +V-AAI-3S +T-APM +N-APM +V-API-3P +PREP +T-ASN +P-ASN +CONJ +V-AAI-3S +A-NSM +PREP +P-GPM +A-NSM +V-PAP-NSM +P-ASM +N-VSM +I-NSF +N-NSF +A-NSF +PREP +T-DSM +N-DSM +CONJ +T-NSM +V-IAI-3S +P-DSM +V-FAI-2S +N-ASM +T-ASM +N-ASM +P-2GS +PREP +A-DSF +T-DSF +N-DSF +P-2GS +CONJ +PREP +A-DSF +T-DSF +N-DSF +P-2GS +CONJ +PREP +A-DSF +T-DSF +N-DSF +P-2GS +D-NSF +V-PAI-3S +T-NSF +A-NSF +CONJ +A-NSF-S +N-NSF +A-NSF +A-NSF +P-DSF +V-FAI-2S +T-ASM +ADV +P-2GS +ADV +F-2ASM +PREP +D-DPF +T-DPF +A-DPF +N-DPF +A-NSM +T-NSM +N-NSM +V-PPI-3S +CONJ +T-NPM +N-NPM +CONJ +V-RPP-GPM +T-GPM +N-GPM +V-AAI-3S +P-APM +T-NSM +N-NSM +V-PAP-NSM +I-NSN +P-2DP +V-PAI-3S +PREP +T-GSM +N-GSM +I-GSM +N-NSM +V-PAI-3S +V-PAI-3P +P-DSM +T-GSM +N-PRI +V-PAI-3S +P-DPM +CONJ +ADV-I +N-PRI +PREP +N-DSN +V-PAI-3S +P-ASM +N-ASM +V-PAP-NSM +V-2AAI-3S +N-NSM +T-DSM +N-DSM +P-1GS +V-PNM-2S +PREP +A-GPN +P-1GS +ADV +PRT +V-2AAS-1S +T-APM +A-APM +P-2GS +ADV +T-GPM +N-GPM +P-2GS +CONJ +COND +N-PRI +V-PAI-3S +P-ASM +N-ASM +ADV-I +N-NSM +P-GSM +V-PAI-3S +CONJ +A-NSM-N +V-INI-3S +V-AON +P-DSM +N-ASM +CONJ-N +V-AAI-3S +X-NSM +PREP +D-GSF +T-GSF +N-GSF +V-AAN +P-ASM +ADV-N +ADV +T-NSM +N-NSM +V-AAI-3S +T-DPM +N-DPM +CONJ +T-DPM +N-DPM +P-GSM +V-PAP-NSM +PREP +T-GSF +N-GSM +N-GSF +V-AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +A-APN +COND +K-APN +V-2AAS-3P +P-2DP +V-AAM-2P +CONJ +V-PAM-2P +CONJ +PREP +T-APN +N-APN +P-GPM +PRT-N +V-PAM-2P +CONJ +V-PAI-3P +CONJ +PRT-N +V-PAI-3P +CONJ +V-PAI-3P +N-APN +A-APN +CONJ +V-PAI-3P-ATT +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +P-NPM +T-DSM +N-DSM +P-GPM +PRT-N +V-PAI-3P +V-AAN +P-APN +CONJ +A-APN +T-APN +N-APN +P-GPM +V-PAI-3P +PREP +T-ASN +V-APN +T-DPM +N-DPM +CONJ +V-PAI-3P +T-APN +N-APN +P-GPM +CONJ +V-PAI-3P +T-APN +N-APN +CONJ +V-PAI-3P +T-ASF +N-ASF-S +PREP +T-DPN +N-DPN +CONJ +T-APF +N-APF-S +PREP +T-DPF +N-DPF +CONJ +T-APM +N-APM +PREP +T-DPF +N-DPF +CONJ +V-PPN +PREP +T-GPM +N-GPM +HEB +CONJ +P-2NP +PRT-N +V-APS-2P +HEB +CONJ +A-NSM +V-PAI-3S +P-2GP +T-NSM +N-NSM +CONJ +A-NPM +P-2NP +N-NPM +V-PAI-2P +CONJ +N-ASM +P-2GP +PRT-N +V-AAS-2P +PREP +T-GSF +N-GSF +CONJ +A-NSM +V-PAI-3S +P-2GP +T-NSM +N-NSM +T-NSM +A-NSM +CONJ-N +V-APS-2P +N-NPM +CONJ +N-NSM +P-2GP +V-PAI-3S +A-NSM +T-NSM +N-NSM +CONJ +T-NSM +A-NSM-C +P-2GP +V-FDI-3S +P-2GP +N-NSM +CONJ +R-NSM +V-FAI-3S +F-3ASM +V-FPI-3S +CONJ +R-NSM +V-FAI-3S +F-3ASM +V-FPI-3S +CONJ +INJ +P-2DP +N-VPM +CONJ +N-VPM +N-VPM +CONJ +V-PAI-2P +T-ASF +N-ASF +T-GPM +N-GPM +PREP +T-GPM +N-GPM +CONJ +P-2NP +PRT-N +V-PNI-2P +CONJ-N +T-APM +V-PNP-APM +V-2AAN +V-PAI-2P +INJ +P-2DP +N-VPM +CONJ +N-VPM +N-VPM +CONJ +V-PAI-2P +T-ASF +N-ASF +CONJ +T-ASF +A-ASF +V-AAN +A-ASM +N-ASM +CONJ +CONJ +V-2ADS-3S +V-PAI-2P +P-ASM +N-ASM +N-GSF +A-ASM-C +P-2GP +INJ +P-2DP +N-VPM +A-VPM +T-NPM +V-PAP-NPM +PRT +R-NSM +V-AAS-3S +PREP +T-DSM +N-DSM +A-NSN-N +V-PAI-3S +CONJ +PRT +R-NSM +V-AAS-3S +PREP +T-DSM +N-DSM +T-GSM +N-GSM +V-PAI-3S +A-VPM +CONJ +A-VPM +CONJ +I-NSM +A-NSM-C +V-PAI-3S +T-NSM +N-NSM +PRT +T-NSM +N-NSM +T-NSM +V-AAP-NSM +T-ASM +N-ASM +CONJ +PRT +R-NSM +V-AAS-3S +PREP +T-DSN +N-DSN +A-NSN-N +V-PAI-3S +CONJ +PRT +R-NSM +V-AAS-3S +PREP +T-DSN +N-DSN +T-DSN +ADV +P-GSN +V-PAI-3S +A-VPM +CONJ +I-NSN +A-NSN-C +T-NSN +N-NSN +PRT +T-NSN +N-NSN +T-NSN +V-PAP-NSN +T-ASN +N-ASN +CONJ +T-NSM +V-AAP-NSM +PREP +T-DSN +N-DSN +V-PAI-3S +PREP +P-DSN +CONJ +PREP +A-DPN +T-DPN +ADV +P-GSN +CONJ +T-NSM +V-AAP-NSM +PREP +T-DSM +N-DSM +V-PAI-3S +PREP +P-DSM +CONJ +PREP +T-DSM +V-PAP-DSM +P-ASM +CONJ +T-NSM +V-AAP-NSM +PREP +T-DSM +N-DSM +V-PAI-3S +PREP +T-DSM +N-DSM +T-GSM +N-GSM +CONJ +PREP +T-DSM +V-PNP-DSM +ADV +P-GSM +INJ +P-2DP +N-VPM +CONJ +N-VPM +N-VPM +CONJ +V-PAI-2P +T-ASN +N-ASN +CONJ +T-ASN +N-ASN +CONJ +T-ASN +N-ASN +CONJ +V-AAI-2P +T-APN +A-APN-C +T-GSM +N-GSM +T-ASF +N-ASF +CONJ +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +CONJ +V-IAI-3S +D-APN +V-AAN +D-APN-K +PRT-N +V-AAN +N-VPM +A-VPM +T-NPM +V-PAP-NPM +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +V-PAP-NPM +INJ +P-2DP +N-VPM +CONJ +N-VPM +N-VPM +CONJ +V-PAI-2P +T-ASN +ADV +T-GSN +N-GSN +CONJ +T-GSF +N-GSF +CONJ +ADV +V-PAI-3P +PREP +N-GSF +CONJ +N-GSF +N-VSM +A-VSM +V-AAM-2S +ADV-S +T-ASN +ADV +T-GSN +N-GSN +CONJ +V-2ADS-3S +CONJ +T-NSN +ADV +P-GSN +A-NSN +INJ +P-2DP +N-VPM +CONJ +N-VPM +N-VPM +CONJ +V-PAI-2P +N-DPM +V-RPP-DPM +PRT +R-NPM +ADV +V-PEI-3P +A-NPM +CONJ +ADV +V-PAI-3P +N-GPN +A-GPM +CONJ +A-GSF +N-GSF +ADV +CONJ +P-2NP +PRT +ADV +V-PPI-2P +T-DPM +N-DPM +A-NPM +CONJ +ADV +V-PAI-2P +A-NPM +N-GSF +CONJ +N-GSF +INJ +P-2DP +N-VPM +CONJ +N-VPM +N-VPM +CONJ +V-PAI-2P +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-PAI-2P +T-APN +N-APN +T-GPM +A-GPM +CONJ +V-PAI-2P +COND +V-IMI-1P +PREP +T-DPF +N-DPF +T-GPM +N-GPM +P-1GP +PRT +PRT-N +V-IMI-1P +P-GPM +N-NPM +PREP +T-DSN +N-DSN +T-GPM +N-GPM +CONJ +V-PAI-2P +F-2DPM +CONJ +V-PAI-2P +N-NPM +T-GPM +V-AAP-GPM +T-APM +N-APM +CONJ +P-2NP +V-AAM-2P +T-ASN +N-ASN +T-GPM +N-GPM +P-2GP +N-VPM +N-VPN +N-GPF +ADV-I +V-2AAS-2P +PREP +T-GSF +N-GSF +T-GSF +N-GSF +V-2AMM-2S +PREP +D-ASN +P-1NS +V-PAI-1S +PREP +P-2AP +N-APM +CONJ +A-APM +CONJ +N-APM +PREP +P-GPM +V-FAI-2P +CONJ +V-FAI-2P +CONJ +PREP +P-GPM +V-FAI-2P +PREP +T-DPF +N-DPF +P-2GP +CONJ +V-FAI-2P +PREP +N-GSF +PREP +N-ASF +ADV +V-2AAS-3S +PREP +P-2AP +A-NSN +N-NSN +A-NSN +V-PPP-NSN +PREP +T-GSF +N-GSF +PREP +T-GSN +N-GSN +N-PRI +T-GSM +A-GSM +ADV +T-GSN +N-GSN +N-GSM +N-GSM +N-GSM +R-ASM +V-AAI-2P +ADV +T-GSM +N-GSM +CONJ +T-GSN +N-GSN +HEB +V-PAI-1S +P-2DP +V-FAI-3S +D-NPN +A-NPN +PREP +T-ASF +N-ASF +D-ASF +N-PRI +N-PRI +T-NSF +V-PAP-NSF +T-APM +N-APM +CONJ +V-PAP-NSF +T-APM +V-RPP-APM +PREP +P-ASF +ADV +V-AAI-1S +V-2AAN +T-APN +N-APN +P-2GS +R-ASM +N-ASM +N-NSF +V-PAI-3S +T-APN +N-APN +P-GSF +PREP +T-APF +N-APF +CONJ +PRT-N +V-AAI-2P +V-2AMM-2S +V-PPI-3S +P-2DP +T-NSM +N-NSM +P-2GP +CONJ +V-PAI-1S +P-2DP +PRT-N +PRT-N +P-1AS +V-2AAS-2P +PREP +ADV +ADV +PRT +V-2AAS-2P +V-RPP-NSM +T-NSM +V-PNP-NSM +PREP +N-DSN +N-GSM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +PREP +T-GSN +N-GSN +V-INI-3S +CONJ +V-2AAI-3P +T-NPM +N-NPM +P-GSM +V-AAN +P-DSM +T-APF +N-APF +T-GSN +N-GSN +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-DPM +PRT-N +V-PAI-2P +D-APN +A-APN +HEB +V-PAI-1S +P-2DP +PRT-N +PRT-N +V-APS-3S +ADV +PREP +N-ASM +N-NSM +R-NSM +PRT-N +V-FPI-3S +CONJ +V-PNP-GSM +P-GSM +PREP +T-GSN +N-GSN +T-GPF +N-GPF +V-2AAI-3P +P-DSM +T-NPM +N-NPM +PREP +A-ASF +V-PAP-NPM +V-2AAM-2S +P-1DP +PRT-I +D-NPN +V-FDI-3S +CONJ +I-NSN +T-NSN +N-NSN +T-GSF +S-2SGSF +N-GSF +CONJ +N-GSF +T-GSM +N-GSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-PAM-2P +PRT-N +X-NSM +P-2AP +V-AAS-3S +CONJ +A-NPM +V-FDI-3P +PREP +T-DSN +N-DSN +P-1GS +V-PAP-NPM +P-1NS +V-PAI-1S +T-NSM +N-NSM +CONJ +A-APM +V-FAI-3P +CONJ +V-FAI-2P +V-PAN +N-APM +CONJ +N-APF +N-GPM +V-PAM-2P +PRT-N +V-PPM-2P +CONJ +V-PAI-3S +V-2ADN +CONJ +ADV-N +V-PAI-3S +T-NSN +N-NSN +CONJ +V-FPI-3S +N-NSN +PREP +N-ASN +CONJ +N-NSF +PREP +N-ASF +CONJ +V-FDI-3P +N-NPM +CONJ +N-NPM +PREP +N-APM +CONJ +A-NPN +D-NPN +N-NSF +N-GPF +ADV +V-FAI-3P +P-2AP +PREP +N-ASF +CONJ +V-FAI-3P +P-2AP +CONJ +V-FDI-2P +V-PPP-NPM +PREP +A-GPN +T-GPN +N-GPN +PREP +T-ASN +N-ASN +P-1GS +CONJ +ADV +V-FPI-3P +A-NPM +CONJ +C-APM +V-FAI-3P +CONJ +V-FAI-3P +C-APM +CONJ +A-NPM +N-NPM +V-FPI-3P +CONJ +V-FAI-3P +A-APM +CONJ +PREP +T-ASN +V-APN +T-ASF +N-ASF +V-2FPI-3S +T-NSF +N-NSF +T-GPM +A-GPM +CONJ +T-NSM +V-AAP-NSM +PREP +N-ASN +D-NSM +V-FPI-3S +CONJ +V-FPI-3S +D-NSN +T-NSN +N-NSN +T-GSF +N-GSF +PREP +A-DSF +T-DSF +N-DSF +PREP +N-ASN +A-DPN +T-DPN +N-DPN +CONJ +ADV +V-FAI-3S +T-NSN +N-NSN +CONJ +CONJ +V-2AAS-2P +T-ASN +N-ASN +T-GSF +N-GSF +T-ASN +V-APP-ASN +PREP +N-PRI +T-GSM +N-GSM +V-2RAP-ASN +PREP +N-DSM +A-DSM +T-NSM +V-PAP-NSM +V-PAM-3S +ADV +T-NPM +PREP +T-DSF +N-DSF +V-PAM-3P +PREP +T-APN +N-APN +T-NSM +PREP +T-GSN +N-GSN +PRT-N +V-2AAM-3S +V-AAN +T-APN +PREP +T-GSF +N-GSF +P-GSM +CONJ +T-NSM +PREP +T-DSM +N-DSM +PRT-N +V-AAM-3S +ADV +V-AAN +T-ASN +N-ASN +P-GSM +CONJ +INJ +T-DPF +PREP +N-DSF +V-PAP-DPF +CONJ +T-DPF +V-PAP-DPF +PREP +D-DPF +T-DPF +N-DPF +CONJ +V-PNM-2P +CONJ +PRT-N +V-2ADS-3S +T-NSF +N-NSF +P-2GP +N-GSM +CONJ-N +N-DSN +CONJ +V-FDI-3S +ADV +N-NSF +A-NSF +R-NSF +PRT-N +V-2RAI-3S +PREP +N-GSF +N-GSM +ADV +T-GSM +ADV +CONJ-N +PRT-N +PRT-N +V-2ADS-3S +CONJ +COND +PRT-N +V-API-3P +T-NPF +N-NPF +D-NPF +PRT +PRT-N +V-API-3S +A-NSF +N-NSF +CONJ +PREP +T-APM +A-APM +V-FPI-3P +T-NPF +N-NPF +D-NPF +COND +ADV +X-NSM +P-2DP +V-2AAS-3S +V-2AMM-2S +ADV +T-NSM +N-NSM +PRT +ADV +PRT-N +V-AAS-2P +CONJ +V-FPI-3P +N-NPM +CONJ +N-NPM +CONJ +V-FAI-3P +N-APN +A-APN +CONJ +N-APN +CONJ +V-AAN +COND +A-NSN +CONJ +T-APM +A-APM +V-2AMM-2S +V-RAI-1S +P-2DP +CONJ +COND +V-2AAS-3P +P-2DP +V-2AMM-2S +PREP +T-DSF +A-DSF +V-PAI-3S +PRT-N +V-2AAS-2P +V-2AMM-2S +PREP +T-DPN +N-DPN +PRT-N +V-AAS-2P +CONJ +ADV +T-NSF +N-NSF +V-PNI-3S +PREP +N-GPF +CONJ +V-PEI-3S +ADV +N-GPF +ADV +V-FDI-3S +T-NSF +N-NSF +T-GSM +N-GSM +T-GSM +N-GSM +COND +ADV +V-PAS-3S +T-NSN +N-NSN +ADV +V-FPI-3P +T-NPM +N-NPM +CONJ +ADV +PREP +T-ASF +N-ASF +T-GPF +N-GPF +D-GPF +T-NSM +N-NSM +V-FPI-3S +CONJ +T-NSF +N-NSF +PRT-N +V-FAI-3S +T-ASN +N-ASN +P-GSF +CONJ +T-NPM +N-NPM +V-FNI-3P +PREP +T-GSM +N-GSM +CONJ +T-NPF +N-NPF +T-GPM +N-GPM +V-FPI-3P +CONJ +ADV +V-2FPI-3S +T-NSN +N-NSN +T-GSM +N-GSM +T-GSM +N-GSM +PREP +N-DSM +CONJ +ADV +V-FDI-3P +A-NPF +T-NPF +N-NPF +T-GSF +N-GSF +CONJ +V-FDI-3P +T-ASM +N-ASM +T-GSM +N-GSM +V-PNP-ASM +PREP +T-GPF +N-GPF +T-GSM +N-GSM +PREP +N-GSF +CONJ +N-GSF +A-GSF +CONJ +V-FAI-3S +T-APM +N-APM +P-GSM +PREP +N-GSF +A-GSF +CONJ +V-FAI-3P +T-APM +A-APM +P-GSM +PREP +T-GPM +A-GPM +N-GPM +PREP +N-GPN +N-GPM +ADV +N-GPN +P-GPM +CONJ +PREP +T-GSF +N-GSF +V-2AAM-2P +T-ASF +N-ASF +CONJ +ADV +T-NSM +N-NSM +P-GSF +V-2ADS-3S +A-NSM +CONJ +T-APN +N-APN +V-PAS-3S +V-PAI-2P +CONJ +ADV +T-NSN +N-NSN +ADV +CONJ +P-2NP +CONJ +V-2AAS-2P +A-APN +D-APN +V-PAM-2P +CONJ +ADV +V-PAI-3S +PREP +N-DPF +HEB +V-PAI-1S +P-2DP +CONJ +PRT-N +PRT-N +V-2AAS-3S +T-NSF +N-NSF +D-NSF +ADV +PRT +A-NPN +D-NPN +V-2ADS-3S +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +V-FDI-3S +CONJ +T-NPM +N-NPM +P-1GS +PRT-N +PRT-N +V-2AAS-3P +CONJ +PREP +T-GSF +N-GSF +CONJ +N-GSF +D-GSF +A-NSM-N +V-RAI-3S +CONJ-N +T-NPM +N-NPM +T-GPM +N-GPM +CONJ-N +T-NSM +N-NSM +COND +PRT-N +T-NSM +N-NSM +A-NSM +CONJ +ADV +T-NPF +N-NPF +T-GSM +N-PRI +ADV +V-FDI-3S +T-NSF +N-NSF +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +ADV +PREP +T-DPF +N-DPF +D-DPF +T-DPF +PREP +T-GSM +N-GSM +V-IAI-3P +V-PAP-NPM +CONJ +V-PAP-NPM +V-PAP-NPM +CONJ +V-PAP-NPM +ADV +R-GSF +N-GSF +V-2AAI-3S +N-PRI +PREP +T-ASF +N-ASF +CONJ +PRT-N +V-2AAI-3P +ADV +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3S +A-APM +ADV +V-FDI-3S +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +T-GSM +N-GSM +ADV +V-FDI-3P +A-NUI +PREP +T-DSM +N-DSM +A-NSM +V-PPI-3S +CONJ +A-NSM +V-PPI-3S +A-NUI +V-PAP-NPF +PREP +T-DSM +N-DSM +A-NSF +V-PPI-3S +CONJ +A-NSF +V-PPI-3S +CONJ +V-PAM-2P +CONJ +PRT-N +V-RAI-2P +I-DSF +N-DSF +T-NSM +N-NSM +P-2GP +V-PNI-3S +CONJ +D-ASN +V-PAM-2P +CONJ +COND +V-2LAI-3S +T-NSM +N-NSM +I-DSF +N-DSF +T-NSM +N-NSM +V-PNI-3S +PRT +V-AAI-3S +CONJ +PRT +PRT-N +V-AAI-3S +V-APN +T-ASF +N-ASF +P-GSM +PREP +D-ASN +CONJ +P-2NP +V-PNM-2P +A-NPM +CONJ +R-DSF +PRT-N +V-PAI-2P +N-DSF +T-NSM +N-NSM +T-GSM +N-GSM +V-PNI-3S +PRT-I +I-NSM +V-PAI-3S +T-NSM +A-NSM +CONJ +A-NSM +N-NSM +R-ASM +V-AAI-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +P-GSM +T-GSN +V-2AAN +P-DPM +T-ASF +N-ASF +PREP +N-DSM +A-NSM +T-NSM +N-NSM +D-NSM +R-ASM +ADV +V-PAP-ASM +V-2AAP-NSM +T-NSM +N-NSM +P-GSM +V-FAI-3S +HEB +V-PAI-1S +P-2DP +CONJ +PREP +A-DPN +T-DPN +V-PAP-DPN +P-GSM +V-FAI-3S +P-ASM +CONJ +COND +V-2AAS-3S +T-NSM +A-NSM +N-NSM +D-NSM +PREP +T-DSF +N-DSF +P-GSM +V-PAI-3S +P-1GS +T-NSM +N-NSM +CONJ +V-AMS-3S +V-PAN +T-APM +N-APM +P-GSM +CONJ +V-PAS-3S +CONJ +V-PAS-3S +PREP +T-GPM +V-PAP-GPM +V-FAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +PREP +N-DSF +R-DSF +PRT-N +V-PAI-3S +CONJ +PREP +N-DSF +R-DSF +PRT-N +V-PAI-3S +CONJ +V-FAI-3S +P-ASM +CONJ +T-ASN +N-ASN +P-GSM +PREP +T-GPM +N-GPM +V-FAI-3S +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +ADV +V-FPI-3S +T-NSF +N-NSF +T-GPM +N-GPM +A-NUI +N-DPF +R-NPF +V-2AAP-NPF +T-APF +N-APF +F-3GPF +V-2AAI-3P +PREP +N-ASF +T-GSM +N-GSM +CONJ +A-NUI +PREP +P-GPF +V-IAI-3P +A-NPF +CONJ +A-NUI +A-NPF +CONJ +T-NPF +A-NPF +V-2AAP-NPF +T-APF +N-APF +PRT-N +V-2AAI-3P +PREP +F-3GPF +N-ASN +CONJ +T-NPF +A-NPF +V-2AAI-3P +N-ASN +PREP +T-DPN +N-DPN +PREP +T-GPF +N-GPF +F-3GPF +CONJ +V-PAP-GSM +T-GSM +N-GSM +V-AAI-3P +A-NPF +CONJ +V-IAI-3P +CONJ +A-GSF +N-GSF +N-NSF +V-2RAI-3S +V-2AMM-2S +T-NSM +N-NSM +V-PNM-2P +PREP +N-ASF +ADV +V-API-3P +A-NPF +T-NPF +N-NPF +D-NPF +CONJ +V-AAI-3P +T-APF +N-APF +F-3GPF +CONJ +T-NPF +A-NPF +T-DPF +A-DPF +V-2AAI-3P +V-2AAM-2P +P-1DP +PREP +T-GSN +N-GSN +P-2GP +CONJ +T-NPF +N-NPF +P-1GP +V-PPI-3P +CONJ +V-ADI-3P +T-NPF +A-NPF +V-PAP-NPF +PRT-N +ADV +PRT-N +PRT-N +V-AAS-3S +P-1DP +CONJ +P-2DP +V-PNM-2P +ADV +PREP +T-APM +V-PAP-APM +CONJ +V-AAM-2P +F-2DPF +CONJ +V-PNP-GPF +P-GPF +V-AAN +V-2AAI-3S +T-NSM +N-NSM +CONJ +T-NPF +A-NPF +V-2AAI-3P +PREP +P-GSM +PREP +T-APM +N-APM +CONJ +V-API-3S +T-NSF +N-NSF +CONJ +ADV +V-PNI-3P +CONJ +T-NPF +A-NPF +N-NPF +V-PAP-NPF +N-VSM +N-VSM +V-AAM-2S +P-1DP +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +HEB +V-PAI-1S +P-2DP +PRT-N +V-RAI-1S +P-2AP +CONJ +V-PAM-2P +CONJ +PRT-N +V-RAI-2P +T-ASF +N-ASF +CONJ-N +T-ASF +N-ASF +CONJ +ADV +N-NSM +V-PAP-NSM +V-AAI-3S +T-APM +A-APM +N-APM +CONJ +V-AAI-3S +P-DPM +T-APN +V-PAP-APN +P-GSM +CONJ +PRT +R-DSM +V-AAI-3S +A-NUI +N-APN +CONJ +R-DSM +A-NUI +CONJ +R-DSM +A-ASN +A-DSM +PREP +T-ASF +A-ASF +N-ASF +CONJ +V-AAI-3S +ADV +V-AOP-NSM +T-NSM +T-APN +A-NUI +N-APN +V-2AAP-NSM +V-ADI-3S +PREP +P-DPN +CONJ +V-AAI-3S +A-APN +A-NUI +ADV +T-NSM +T-APN +A-NUI +V-AAI-3S +A-APN +A-NUI +CONJ +T-NSM +T-ASN +A-ASN +V-2AAP-NSM +V-2AAP-NSM +V-AAI-3S +N-ASF +CONJ +V-AAI-3S +T-ASN +N-ASN +T-GSM +N-GSM +P-GSM +CONJ +PREP +A-ASM +N-ASM +V-PNI-3S +T-NSM +N-NSM +T-GPM +N-GPM +D-GPM +CONJ +V-PAI-3S +N-ASM +PREP +P-GPM +CONJ +V-2AAP-NSM +T-NSM +T-APN +A-NUI +N-APN +V-2AAP-NSM +V-AAI-3S +A-APN +A-NUI +N-APN +V-PAP-NSM +N-VSM +A-NUI +N-APN +P-1DS +V-AAI-2S +V-2AAM-2S +A-APN +A-NUI +N-APN +V-AAI-1S +V-IAI-3S +P-DSM +T-NSM +N-NSM +P-GSM +ADV +N-VSM +A-VSM +CONJ +A-VSM +PREP +A-APN +V-IAI-2S +A-NSM +PREP +A-GPN +P-2AS +V-FAI-1S +V-2AAM-2S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +P-2GS +V-2AAP-NSM +CONJ +T-NSM +T-APN +A-NUI +N-APN +V-2AAI-3S +N-VSM +A-NUI +N-APN +P-1DS +V-AAI-2S +V-2AAM-2S +A-APN +A-NUI +N-APN +V-AAI-1S +V-IAI-3S +P-DSM +T-NSM +N-NSM +P-GSM +ADV +N-VSM +A-VSM +CONJ +A-VSM +PREP +A-APN +V-IAI-2S +A-NSM +PREP +A-GPN +P-2AS +V-FAI-1S +V-2AAM-2S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +P-2GS +CONJ +V-2AAP-NSM +CONJ +T-NSM +T-ASN +A-ASN +N-ASN +V-2RAP-NSM +V-2AAI-3S +N-VSM +V-2AAI-1S +P-2AS +CONJ +V-PAI-2S +A-NSM +N-NSM +V-PAP-NSM +ADV +PRT-N +V-AAI-2S +CONJ +V-PAP-NSM +ADV +PRT-N +V-AAI-2S +CONJ +V-AOP-NSM +V-2AAP-NSM +V-AAI-1S +T-ASN +N-ASN +P-2GS +PREP +T-DSF +N-DSF +V-2AAM-2S +V-PAI-2S +T-ASN +S-2SASN +CONJ +V-AOP-NSM +T-NSM +N-NSM +P-GSM +V-2AAI-3S +P-DSM +N-VSM +A-VSM +CONJ +A-VSM +V-2LAI-2S +CONJ +V-PAI-1S +ADV +PRT-N +V-AAI-1S +CONJ +V-PAI-1S +ADV +PRT-N +V-AAI-1S +CONJ +V-IAI-3S +P-2AS +V-2AAN +T-APN +N-APN +P-1GS +T-DPM +N-DPM +CONJ +PRT +V-2AAP-NSM +P-1NS +V-AMI-1S +T-ASN +S-1SASN +PREP +N-DSM +CONJ +V-AAM-2P +PREP +P-GSM +T-ASN +N-ASN +CONJ +V-2AAM-2P +T-DSM +V-PAP-DSM +T-APN +A-NUI +N-APN +CONJ +T-DSM +V-PAP-DSM +A-DSM +V-FPI-3S +CONJ +V-FPI-3S +CONJ +T-GSM +PRT-N +V-PAP-GSM +CONJ +R-ASN +V-PAI-3S +V-FPI-3S +PREP +P-GSM +CONJ +T-ASM +A-ASM +N-ASM +V-2AAM-2P +PREP +T-ASN +N-ASN +T-ASN +A-ASN-C +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +CONJ +CONJ +V-2AAS-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +T-DSF +N-DSF +P-GSM +CONJ +A-NPM +T-NPM +N-NPM +PREP +P-GSM +ADV +V-FAI-3S +PREP +N-GSM +N-GSF +P-GSM +CONJ +V-FPI-3P +PREP +P-GSM +A-NPN +T-NPN +N-NPN +CONJ +V-FAI-3S +P-APM +PREP +C-GPN +ADV +T-NSM +N-NSM +V-PAI-3S +T-APN +N-APN +PREP +T-GPM +N-GPM +CONJ +PRT +V-FAI-3S +T-APN +N-APN +PREP +A-GPN +P-GSM +CONJ +T-APN +N-APN +PREP +A-GPN +ADV +V-FAI-3S +T-NSM +N-NSM +T-DPN +PREP +A-GPN +P-GSM +V-PAM-2P +T-NPM +V-RPP-NPM +T-GSM +N-GSM +P-1GS +V-AAM-2P +T-ASF +V-RPP-ASF +P-2DP +PREP +N-GSF +N-GSM +N-ASF +CONJ +V-AAI-1S +CONJ +V-AAI-2P +P-1DS +V-2AAN +V-AAI-1S +CONJ +V-AAI-2P +P-1AS +A-NSM +V-IMI-1S +CONJ +V-2AAI-2P +P-1AS +A-NSM +CONJ +V-2AAI-2P +P-1AS +V-AAI-1S +CONJ +V-ADI-2P +P-1AS +PREP +N-DSF +V-IMI-1S +CONJ +V-2AAI-2P +PREP +P-1AS +ADV +V-FOI-3P +P-DSM +T-NPM +A-NPM +V-PAP-NPM +N-VSM +PRT-I +V-2AAI-1P +P-2AS +V-PAP-ASM +CONJ +V-AAI-1P +PRT +V-PAP-ASM +CONJ +V-AAI-1P +CONJ +PRT-I +V-2AAI-1P +P-2AS +A-ASM +CONJ +V-2AAI-1P +PRT +A-ASM +CONJ +V-2AAI-1P +CONJ +PRT-I +V-2AAI-1P +P-2AS +V-PAP-ASM +PRT +PREP +N-DSF +CONJ +V-2AAI-1P +PREP +P-2AS +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-FAI-3S +P-DPM +HEB +V-PAI-1S +P-2DP +PREP +K-ASN +V-AAI-2P +A-DSM +D-GPM +T-GPM +N-GPM +P-1GS +T-GPM +A-GPM-S +P-1DS +V-AAI-2P +ADV +V-FAI-3S +CONJ +T-DPN +PREP +A-GPN +V-RPP-NPM +V-PNM-2P +PREP +P-1GS +PREP +T-ASN +N-ASN +T-ASN +A-ASN +T-ASN +V-RPP-ASN +T-DSM +A-DSM +CONJ +T-DPM +N-DPM +P-GSM +CONJ +V-AAI-1S +CONJ +PRT-N +V-AAI-2P +P-1DS +V-2AAN +V-AAI-1S +CONJ +PRT-N +V-AAI-2P +P-1AS +A-NSM +V-IMI-1S +CONJ +PRT-N +V-2AAI-2P +P-1AS +A-NSM +CONJ +PRT-N +V-2AAI-2P +P-1AS +A-NSM +CONJ +PREP +N-DSF +CONJ +PRT-N +V-ADI-2P +P-1AS +ADV +V-FOI-3P +CONJ +P-NPM +V-PAP-NPM +N-VSM +PRT-I +V-2AAI-1P +P-2AS +V-PAP-ASM +PRT +V-PAP-ASM +PRT +A-ASM +PRT +A-ASM +PRT +A-ASM +PRT +PREP +N-DSF +CONJ +PRT-N +V-AAI-1P +P-2DS +ADV +V-FOI-3S +P-DPM +V-PAP-NSM +HEB +V-PAI-1S +P-2DP +PREP +K-ASN +PRT-N +V-AAI-2P +A-DSM +D-GPM +T-GPM +A-GPM-S +CONJ-N +P-1DS +V-AAI-2P +CONJ +V-FDI-3P +D-NPM +PREP +N-ASF +A-ASF +CONJ +T-NPM +A-NPM +PREP +N-ASF +A-ASF +CONJ +V-2ADI-3S +ADV +V-AAI-3S +T-NSM +N-NSM +A-APM +T-APM +N-APM +D-APM +V-2AAI-3S +T-DPM +N-DPM +P-GSM +V-RAI-2P +CONJ +PREP +A-NUI +N-APF +T-NSN +ARAM +V-PNI-3S +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PPI-3S +PREP +T-ASN +V-APN +ADV +V-API-3P +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +T-GSM +N-GSM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-GSM +V-PPP-GSM +N-GSM +CONJ +V-AMI-3P +CONJ +T-ASM +N-ASM +N-DSM +V-AAS-3P +CONJ +V-AAS-3P +CONJ +V-IAI-3P +PRT-N +PREP +T-DSF +N-DSF +CONJ +PRT-N +N-NSM +V-2ADS-3S +PREP +T-DSM +N-DSM +CONJ +T-GSM +N-GSM +V-2ADP-GSM +PREP +N-DSF +PREP +N-DSF +N-GSM +T-GSM +A-GSM +V-2AAI-3S +P-DSM +N-NSF +V-PAP-NSF +N-ASN +N-GSN +A-GSN +CONJ +V-AAI-3S +PREP +T-GSF +N-GSF +P-GSM +V-PNP-GSM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-AAI-3P +V-PAP-NPM +PREP +I-ASN +T-NSF +N-NSF +D-NSF +CONJ +V-INI-3S +D-NSN +V-APN +A-GSN +CONJ +V-APN +A-DPM +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +I-ASN +N-APM +V-PAI-2P +T-DSF +N-DSF +CONJ +N-ASN +A-ASN +V-ADI-3S +PREP +P-1AS +CONJ +ADV +T-APM +A-APM +V-PAI-2P +PREP +F-2GPM +CONJ +P-1AS +PRT-N +ADV +V-PAI-2P +CONJ +D-NSF +V-2AAP-NSF +T-ASN +N-ASN +D-ASN +PREP +T-GSN +N-GSN +P-1GS +PREP +T-ASN +V-AAN +P-1AS +V-AAI-3S +HEB +V-PAI-1S +P-2DP +COND +ADV +V-APS-3S +T-NSN +N-NSN +D-NSN +PREP +A-DSM +T-DSM +N-DSM +V-FPI-3S +CONJ +R-ASN +V-AAI-3S +D-NSF +PREP +N-ASN +P-GSF +ADV +A-NSM +T-GPM +A-NUI +T-NSM +V-PPP-NSM +N-NSM +N-NSM +V-AOP-NSM +PREP +T-APM +N-APM +V-2AAI-3S +V-PAI-2P +I-ASN +P-1DS +V-2AAN +P-1NS-K +P-2DP +V-FAI-1S +P-ASM +CONJ +T-NPM +V-AAI-3P +P-DSM +A-NUI +N-APN +CONJ +PREP +ADV +V-IAI-3S +N-ASF +CONJ +P-ASM +V-2AAS-3S +CONJ +T-DSF +A-DSF-S +T-GPN +A-GPN +V-2AAI-3P +T-NPM +N-NPM +T-DSM +N-DSM +V-PAP-NPM +V-PAI-2S +ADV-I +V-AAS-1P +P-2DS +V-2AAN +T-ASN +ARAM +CONJ +T-NSM +V-2AAI-3S +V-PAM-2P +PREP +T-ASF +N-ASF +PREP +T-ASM +A-ASM +CONJ +V-2AAM-2P +P-DSM +T-NSM +N-NSM +V-PAI-3S +T-NSM +N-NSM +P-1GS +ADV +V-PAI-3S +PREP +P-2AS +V-PAI-1S +T-ASN +ARAM +PREP +T-GPM +N-GPM +P-1GS +CONJ +V-AAI-3P +T-NPM +N-NPM +ADV +V-AAI-3S +P-DPM +T-NSM +N-NSM +CONJ +V-AAI-3P +T-ASN +ARAM +CONJ +A-GSF +V-2ADP-GSF +V-INI-3S +PREP +T-GPM +A-NUI +N-GPM +CONJ +V-PAP-GPM +P-GPM +V-2AAI-3S +HEB +V-PAI-1S +P-2DP +CONJ +A-NSM +PREP +P-2GP +V-FAI-3S +P-1AS +CONJ +V-PPP-NPM +ADV +V-ADI-3P +V-PAN +P-DSM +A-NSM +A-NSM +PRT-I +P-1NS +V-PAI-1S +N-VSM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +T-NSM +V-AAP-NSM +PREP +P-1GS +T-ASF +N-ASF +PREP +T-DSN +N-DSN +D-NSM +P-1AS +V-FAI-3S +PRT +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +ADV +V-RPI-3S +PREP +P-GSM +CONJ +INJ +T-DSM +N-DSM +D-DSM +PREP +R-GSM +T-NSM +N-NSM +T-GSM +N-GSM +V-PPI-3S +A-NSN +V-IAI-3S +P-DSM +COND +PRT-N +V-API-3S +T-NSM +N-NSM +D-NSM +CONJ +V-AOP-NSM +N-NSM +T-NSM +V-PAP-NSM +P-ASM +V-2AAI-3S +PRT-I +P-1NS +V-PAI-1S +HEB +V-PAI-3S +P-DSM +P-2NS +V-2AAI-2S +CONJ +V-PAP-GPM +P-GPM +T-NSM +N-NSM +V-2AAP-NSM +N-ASM +CONJ +V-AAP-NSM +V-AAI-3S +CONJ +V-2AAP-NSM +T-DPM +N-DPM +V-2AAI-3S +V-2AAM-2P +V-2AAM-2P +D-NSN +V-PAI-3S +T-NSN +N-NSN +P-1GS +CONJ +V-2AAP-NSM +N-ASN +CONJ +V-AAP-NSM +V-AAI-3S +P-DPM +V-PAP-NSM +V-2AAM-2P +PREP +P-GSN +A-NPM +CONJ +D-NSN +V-PAI-3S +T-NSN +N-NSN +P-1GS +T-GSF +N-GSF +T-NSN +PREP +A-GPM +V-PPP-NSN +PREP +N-ASF +N-GPF +CONJ +V-PAI-1S +P-2DP +PRT-N +PRT-N +V-2AAS-1S +PREP +ADV +PREP +D-GSN +T-GSN +N-GSN +T-GSF +N-GSF +ADV +T-GSF +N-GSF +D-GSF +CONJ +P-ASN +V-PAS-1S +PREP +P-2GP +A-ASN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GS +CONJ +V-AAP-NPM +V-2AAI-3P +PREP +T-ASN +N-ASN +T-GPF +N-GPF +ADV +V-PAI-3S +P-DPM +T-NSM +N-NSM +A-NPM +P-2NP +V-FPI-2P +PREP +P-1DS +PREP +T-DSF +N-DSF +D-DSF +CONJ +V-RPI-3S +V-FAI-1S +T-ASM +N-ASM +CONJ +V-FPI-3P +T-NPN +N-NPN +T-GSF +N-GSF +CONJ +PREP +T-ASN +V-APN +P-1AS +V-FAI-1S +P-2AP +PREP +T-ASF +N-ASF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +COND +A-NPM +V-FPI-3P +PREP +P-2DS +P-1NS +ADV-N +V-FPI-1S +V-IAI-3S +P-DSM +T-NSM +N-NSM +HEB +V-PAI-1S +P-2DS +CONJ +PREP +D-DSF +T-DSF +N-DSF +ADV +N-ASM +V-AAN +ADV +V-FDI-2S +P-1AS +V-PAI-3S +P-DSM +T-NSM +N-NSM +COND-K +V-PAS-3S +P-1AS +PREP +P-2DS +V-2AAN +PRT-N +PRT-N +P-2AS +V-FDI-1S +ADV +CONJ +A-NPM +T-NPM +N-NPM +V-2AAI-3P +ADV +V-PNI-3S +PREP +P-GPM +T-NSM +N-NSM +PREP +N-ASN +V-PPP-ASN +N-PRI +CONJ +V-PAI-3S +T-DPM +N-DPM +V-AAM-2P +ADV +ADV +R-GSM +V-2AAP-NSM +ADV +V-ADS-1S +CONJ +V-2AAP-NSM +T-ASM +N-ASM +CONJ +T-APM +A-NUI +N-APM +N-GSM +V-ADI-3S +V-PPN +CONJ +V-PAN +ADV +V-PAI-3S +P-DPM +A-NSF +V-PAI-3S +T-NSF +N-NSF +P-1GS +ADV +N-GSM +V-AAM-2P +ADV +CONJ +V-PAM-2P +PREP +P-1GS +CONJ +V-2AAP-NSM +A-ASN +V-2AAI-3S +PREP +N-ASN +P-GSM +V-PNP-NSM +CONJ +V-PAP-NSM +N-VSM +P-1GS +COND +A-NSN +V-PAI-3S +V-2AAM-3S +PREP +P-1GS +T-NSN +N-NSN +D-NSN +ADV +PRT-N +ADV +P-1NS +V-PAI-1S +CONJ +ADV +P-2NS +CONJ +V-PNI-3S +PREP +T-APM +N-APM +CONJ +V-PAI-3S +P-APM +V-PAP-APM +CONJ +V-PAI-3S +T-DSM +N-DSM +ADV +PRT-N +V-AAI-2P +A-ASF +N-ASF +V-AAN +PREP +P-1GS +V-PAM-2P +CONJ +V-PNM-2P +CONJ +PRT-N +V-2AAS-2P +PREP +N-ASM +PRT +T-NSN +N-NSN +A-NSN +CONJ +T-NSF +N-NSF +A-NSF +ADV +PREP +A-GSN +V-2AAP-NSM +V-ADI-3S +V-PAP-NSM +N-VSM +P-1GS +COND +PRT-N +V-PNI-3S +D-NSN +V-2AAN +COND +PRT-N +P-ASN +V-2AAS-1S +V-AOM-3S +T-NSN +N-NSN +P-2GS +CONJ +V-2AAP-NSM +ADV +V-2AAI-3S +P-APM +V-PAP-APM +CONJ +V-IAI-3P +V-RPP-NPM +P-GPM +T-NPM +N-NPM +CONJ +V-2AAP-NSM +P-APM +ADV +V-2AAP-NSM +V-ADI-3S +PREP +A-GSN +T-ASM +P-ASM +N-ASM +V-2AAP-NSM +ADV +ADV +V-PNI-3S +PREP +T-APM +N-APM +CONJ +V-PAI-3S +P-DPM +V-PAI-2P +A-ASN +CONJ +V-PMI-2P +V-2AMM-2S +V-RAI-3S +T-NSF +N-NSF +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PPI-3S +PREP +N-APF +A-GPM +V-PEM-2P +V-PAS-1P +V-2AMM-2S +V-RAI-3S +T-NSM +V-PAP-NSM +P-1AS +CONJ +ADV +P-GSM +V-PAP-GSM +V-2AMM-2S +N-NSM +A-NSM +T-GPM +A-NUI +V-2AAI-3S +CONJ +PREP +P-GSM +N-NSM +A-NSM +PREP +N-GPF +CONJ +N-GPN +PREP +T-GPM +N-GPM +CONJ +A-GPM-C +T-GSM +N-GSM +CONJ +T-NSM +V-PAP-NSM +P-ASM +V-AAI-3S +P-DPM +N-ASN +V-PAP-NSM +PRT +R-ASM +V-AAS-1S +P-NSM +V-PAI-3S +V-AAM-2P +P-ASM +CONJ +ADV +V-2AAP-NSM +T-DSM +N-DSM +V-2AAI-3S +V-PAM-2S +HEB +CONJ +V-AAI-3S +P-ASM +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +N-VSM +PREP +R-ASN +V-PAI-2S +ADV +V-2AAP-NPM +V-2AAI-3P +T-APF +N-APF +PREP +T-ASM +N-ASM +CONJ +V-AAI-3P +P-ASM +CONJ +V-2AMM-2S +A-NSM +T-GPM +PREP +N-GSM +V-AAP-NSM +T-ASF +N-ASF +V-AAI-3S +T-ASF +N-ASF +P-GSM +CONJ +V-AAP-NSM +T-ASM +N-ASM +T-GSM +N-GSM +V-2AAI-3S +P-GSM +T-ASN +N-ASN +ADV +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-AAM-2S +T-ASF +N-ASF +P-2GS +PREP +T-ASM +N-ASM +P-GSF +CONJ +A-NPM +T-NPM +V-2AAP-NPM +N-ASF +PREP +N-DSF +V-FMI-3P +PRT +V-PAI-2S +CONJ +PRT-N +V-PNI-1S +V-AAN +T-ASM +N-ASM +P-1GS +CONJ +V-FAI-3S +P-1DS +ADV +A-APN-C +A-NUI +N-APF +N-GPM +CONJ +ADV-I +V-APS-3P +T-NPF +N-NPF +CONJ +ADV +V-PAI-3S +V-2ADN +PREP +D-DSF +T-DSF +N-DSF +V-2AAI-3S +T-NSM +N-NSM +T-DPM +N-DPM +ADV +PREP +N-ASM +V-2AAI-2P +PREP +N-GPF +CONJ +N-GPN +V-2AAN +P-1AS +PREP +N-ASF +PREP +T-DSN +N-DSN +V-INI-1S +V-PAP-NSM +CONJ +PRT-N +V-AAI-2P +P-1AS +CONJ +D-NSN +A-NSN +V-2RAI-3S +CONJ +V-APS-3P +T-NPF +N-NPF +T-GPM +N-GPM +ADV +T-NPM +N-NPM +A-NPM +V-2AAP-NPM +P-ASM +V-2AAI-3P +CONJ +T-NPM +V-AAP-NPM +T-ASM +N-ASM +V-2AAI-3P +PREP +N-ASM +T-ASM +N-ASM +ADV +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +V-API-3P +CONJ +T-NSM +N-NSM +V-IAI-3S +P-DSM +PREP +ADV +ADV +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-2AAP-NSM +ADV +V-INI-3S +PREP +T-GPM +N-GPM +V-2AAN +T-ASN +N-ASN +CONJ +T-NPM +N-NPM +CONJ +T-NSN +N-NSN +A-NSN +V-IAI-3P +N-ASF +PREP +T-GSM +N-GSM +ADV +P-ASM +V-AAS-3P +CONJ +PRT-N +V-2AAI-3P +A-GPM +N-GPM +V-2AAP-GPM +CONJ +ADV +V-2AAP-NPM +A-NUI +V-2AAI-3P +D-NSM +V-IAI-3S +V-PNI-1S +V-AAN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +PREP +A-GPF +N-GPF +V-AAN +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +A-ASN-N +V-PNI-2S +I-ASN +D-NPM +P-2GS +V-PAI-3P +CONJ +T-NSM +N-NSM +V-IAI-3S +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-PAI-1S +P-2AS +PREP +T-GSM +N-GSM +T-GSM +V-PAP-GSM +CONJ +P-1DP +V-2AAS-2S +COND +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +P-DSM +T-NSM +N-NSM +P-2NS +V-2AAI-2S +ADV +V-PAI-1S +P-2DP +PREP +ADV +V-FDI-2P +T-ASM +N-ASM +T-GSM +N-GSM +V-PNP-ASM +PREP +A-GPN +T-GSF +N-GSF +CONJ +V-PNP-ASM +PREP +T-GPF +N-GPF +T-GSM +N-GSM +ADV +T-NSM +N-NSM +V-AAI-3S +T-APN +N-APN +P-GSM +V-PAP-NSM +V-AAI-3S +I-ASN +ADV +N-ASF +N-GPM +V-PAI-1P +V-2AAM-2S +ADV +V-AAI-2P +T-ASF +N-ASF +I-NSN +P-2DP +V-PAI-3S +CONJ +T-NPM +V-AOP-NPM +V-2AAI-3P +A-NSM +N-GSM +V-PAI-3S +ADV +V-AAI-3P +PREP +T-ASN +N-ASN +P-GSM +CONJ +V-AAI-3P +P-ASM +CONJ +T-NPM +V-AAI-3P +V-PAP-NPM +V-AAM-2S +P-1DP +N-VSM +I-NSM +V-PAI-3S +T-NSM +V-AAP-NSM +P-2AS +CONJ +T-NSM +N-NSM +V-INI-3S +ADV +PREP +T-DSF +N-DSF +CONJ +V-2AAI-3S +P-DSM +A-NSF +N-NSF +V-PAP-NSF +CONJ +P-2NS +V-IAI-2S +PREP +N-GSM +T-GSM +N-GSM +CONJ +T-NSM +V-ADI-3S +PREP +A-GPM +V-PAP-NSM +PRT-N +V-RAI-1S +I-ASN +V-PAI-2S +CONJ +V-2AAP-ASM +PREP +T-ASM +N-ASM +V-2AAI-3S +P-ASM +A-NSF +CONJ +V-PAI-3S +T-DPM +ADV +D-NSM +V-IAI-3S +PREP +N-GSM +T-GSM +N-GSM +CONJ +ADV +V-ADI-3S +PREP +N-GSM +CONJ +PRT-N +V-RAI-1S +T-ASM +N-ASM +CONJ +PREP +A-ASN +V-2AAP-NPM +T-NPM +V-RAP-NPM +V-2AAI-3P +T-DSM +N-DSM +ADV +CONJ +P-2NS +PREP +P-GPM +V-PAI-2S +CONJ +CONJ +T-NSF +N-NSF +P-2GS +A-ASM +P-2AS +V-PAI-3S +ADV +V-ADI-3S +V-PAN +CONJ +V-PAN +CONJ +PRT-N +V-RAI-1S +T-ASM +N-ASM +CONJ +ADV +N-NSM +V-AAI-3S +CONJ +V-API-3S +T-NSM +N-NSM +T-GSN +N-GSN +N-GSM +V-RAP-GSM-ATT +CONJ +ADV +N-ASM +V-AAN +ADV +V-FDI-2S +P-1AS +CONJ +V-2AAP-NSM +ADV +V-AAI-3S +ADV +CONJ +N-GSF +V-2ADP-GSF +N-ASN +V-2AAI-3P +A-NPM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +T-GSM +N-GSM +PREP +T-GSM +N-GSM +CONJ +V-AAN +P-ASM +CONJ +V-AAP-NPM +P-ASM +V-2AAI-3P +CONJ +V-AAI-3P +N-DSM +T-DSM +N-DSM +ADV +N-NSM +T-NSM +V-2AAP-NSM +P-ASM +V-2AAP-NSM +CONJ +V-API-3S +V-AOP-NSM +V-AAI-3S +T-APN +A-NUI +N-APN +T-DPM +N-DPM +CONJ +A-DPM-C +V-PAP-NSM +V-2AAI-1S +V-2AAP-NSM +N-ASN +A-ASM +CONJ +T-NPM +V-2AAI-3P +I-NSN +PREP +P-1AP +P-2NS +V-FDI-2S +CONJ +V-AAP-NSM +T-APN +N-APN +PREP +T-ASM +N-ASM +V-AAI-3S +CONJ +V-2AAP-NSM +V-AMI-3S +CONJ +T-NPM +N-NPM +V-2AAP-NPM +T-APN +N-APN +V-2AAI-3P +PRT-N +V-PAI-3S +V-2AAN +P-APN +PREP +T-ASM +N-ASM +CONJ +N-NSF +N-GSN +V-PAI-3S +CONJ +N-ASN +V-2AAP-NPM +V-AAI-3P +PREP +P-GPN +T-ASM +N-ASM +T-GSM +N-GSM +PREP +N-ASF +T-DPM +A-DPM +CONJ +V-API-3S +T-NSM +N-NSM +D-NSM +N-NSM +N-GSN +ADV +T-GSF +ADV +ADV +V-API-3S +T-NSN +V-APP-NSN +PREP +N-GSM +T-GSM +N-GSM +V-PAP-GSM +CONJ +V-2AAI-3P +T-APN +A-NUI +N-APN +T-ASF +N-ASF +T-GSM +V-RPP-GSM +R-ASM +V-AMI-3P +PREP +N-GPM +N-PRI +CONJ +V-AAI-3P +P-APN +PREP +T-ASM +N-ASM +T-GSM +N-GSM +ADV +V-AAI-3S +P-1DS +N-NSM +CONJ +T-NSM +N-NSM +V-API-3S +PREP +T-GSM +N-GSM +CONJ +V-AAI-3S +P-ASM +T-NSM +N-NSM +V-PAP-NSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +T-NSM +N-NSM +V-IAI-3S +P-2NS +V-PAI-2S +CONJ +PREP +T-DSN +V-PPN +P-ASM +PREP +T-GPM +N-GPM +CONJ +A-GPM-C +A-ASN-N +V-ADI-3S +ADV +V-PAI-3S +P-DSM +T-NSM +N-NSM +PRT-N +V-PAI-2S +Q-APN +P-2GS +V-PAI-3P +CONJ +PRT-N +V-ADI-3S +P-DSM +PREP +CONJ-N +A-ASN +N-ASN +CONJ +V-PAN +T-ASM +N-ASM +ADV +CONJ +PREP +N-ASF +V-LAI-3S +T-NSM +N-NSM +V-PAN +T-DSM +N-DSM +A-ASM +N-ASM +R-ASM +V-IAI-3P +CONJ +V-IAI-3P +ADV +N-ASM +A-ASM +V-PPP-ASM +N-ASM +CONJ +V-RPP-GPM +P-GPM +V-2AAI-3S +P-DPM +T-NSM +N-NSM +V-PAI-2P +I-ASM +V-AAS-1S +P-2DP +N-ASM +PRT +N-ASM +T-ASM +V-PPP-ASM +N-ASM +CONJ +V-2LAI-3S +CONJ +PREP +N-ASM +V-AAI-3P +P-ASM +CONJ +V-PNP-GSM +P-GSM +PREP +T-GSN +N-GSN +V-AAI-3S +PREP +P-ASM +T-NSF +N-NSF +P-GSM +V-PAP-NSF +A-NSN-N +P-2DS +CONJ +T-DSM +A-DSM +D-DSM +CONJ +A-APN +V-2AAI-1S +ADV +PREP +N-OI +PREP +P-ASM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +V-AAI-3P +T-APM +N-APM +CONJ +V-AMS-3P +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +V-AAS-3P +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-PAI-2P +I-ASM +PREP +T-GPM +A-NUI +V-AAS-1S +P-2DP +CONJ +T-NPM +V-2AAI-3P +T-ASM +N-ASM +V-PAI-3S +P-DPM +T-NSM +N-NSM +CONJ +I-ASN +V-AAS-1S +N-ASM +T-ASM +V-PPP-ASM +N-ASM +V-PAI-3P +A-NPM +V-APM-3S +CONJ +T-NSM +V-IAI-3S +CONJ +I-ASN +A-ASN +V-AAI-3S +CONJ +T-NPM +ADV +V-IAI-3P +V-PAP-NPM +V-APM-3S +CONJ +T-NSM +N-NSM +V-2AAP-NSM +CONJ +A-ASN-N +V-PAI-3S +CONJ +ADV +N-NSM +V-PNI-3S +V-2AAP-NSM +N-ASN +V-AMI-3S +T-APF +N-APF +PREP +T-GSM +N-GSM +V-PAP-NSM +A-NSM +V-PAI-1S +PREP +T-GSN +N-GSN +D-GSM +P-2NP +V-FDI-2P +CONJ +V-AOP-NSM +A-NSM +T-NSM +N-NSM +V-2AAI-3S +T-NSN +N-NSN +P-GSM +PREP +P-1AP +CONJ +PREP +T-APN +N-APN +P-1GP +ADV +V-AAI-3S +P-DPM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +V-AAP-NSM +V-AAI-3S +CONJ +V-APS-3S +ADV +T-NPM +N-NPM +T-GSM +N-GSM +V-2AAP-NPM +T-ASM +N-ASM +PREP +T-ASN +N-ASN +V-2AAI-3P +PREP +P-ASM +A-ASF +T-ASF +N-ASF +CONJ +V-AAP-NPM +P-ASM +N-ASF +A-ASF +V-AAI-3P +P-DSM +CONJ +V-AAP-NPM +N-ASM +PREP +N-GPF +V-AAI-3P +PREP +T-GSF +N-GSF +P-GSM +CONJ +N-ASM +PREP +T-DSF +A-DSF +P-GSM +CONJ +V-AAP-NPM +PREP +P-GSM +V-AAI-3P +P-DSM +V-PAP-NPM +V-PAM-2S +N-VSM +T-GPM +A-GPM +CONJ +V-AAP-NPM +PREP +P-ASM +V-2AAI-3P +T-ASM +N-ASM +CONJ +V-IAI-3P +PREP +T-ASF +N-ASF +P-GSM +CONJ +ADV +V-AAI-3P +P-DSM +V-AAI-3P +P-ASM +T-ASF +N-ASF +CONJ +V-AAI-3P +P-ASM +T-APN +N-APN +P-GSM +CONJ +V-2AAI-3P +P-ASM +PREP +T-ASN +V-AAN +CONJ +V-PNP-NPM +V-2AAI-3P +N-ASM +N-ASM +N-DSN +N-ASM +D-ASM +V-AAI-3P +CONJ +V-AAS-3S +T-ASM +N-ASM +P-GSM +CONJ +V-2AAP-NPM +PREP +N-ASM +V-PPP-ASM +N-PRI +R-NSN +V-PAI-3S +V-PPP-NSM +N-GSN +N-NSM +V-AAI-3P +P-DSM +V-2AAN +N-ASM +PREP +N-GSF +V-RPP-ASM +CONJ +V-ADP-NSM +PRT-N +V-AAI-3S +V-2AAN +CONJ +V-AAP-NPM +P-ASM +V-AMI-3P +T-APN +N-APN +P-GSM +V-PAP-NPM +N-ASM +CONJ +V-PNP-NPM +V-IAI-3P +P-ASM +ADV +CONJ +V-AAI-3P +ADV +T-GSF +N-GSF +P-GSM +T-ASF +N-ASF +P-GSM +V-RPP-ASF +D-NSM +V-PAI-3S +N-NSM +T-NSM +N-NSM +T-GPM +A-GPM +ADV +V-PPI-3P +PREP +P-DSM +A-NUI +N-NPM +A-NSM +PREP +A-GPN +CONJ +A-NSM +PREP +A-GPN +CONJ +T-NPM +V-PNP-NPM +V-IAI-3P +P-ASM +V-PAP-NPM +T-APF +N-APF +P-GPM +CONJ +V-PAP-NPM +T-NSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +PREP +A-DPF +N-DPF +V-PAP-NSM +V-AAM-2S +F-2ASM +COND +V-PAI-2S +N-NSM +T-GSM +N-GSM +CONJ +V-2AAM-2S +PREP +T-GSM +N-GSM +ADV +T-NPM +N-NPM +V-PAP-NPM +PREP +T-GPM +N-GPM +CONJ +A-GPM-C +V-IAI-3P +A-APM +V-AAI-3S +F-3ASM +V-AAN +PRT-N +V-PNI-3S +N-NSM +N-PRI +V-PAI-3S +V-2AAM-3S +ADV +PREP +T-GSM +N-GSM +CONJ +V-FAI-1P +PREP +P-ASM +V-2RAI-3S +PREP +T-ASM +N-ASM +V-ADM-3S +ADV +COND +V-PAI-3S +P-ASM +CONJ +V-2AAI-3S +CONJ +N-GSM +N-NSM +V-PAI-1S +CONJ +T-ASN +P-ASN +CONJ +T-NPM +N-NPM +T-NPM +V-APP-NPM +PREP +P-DSM +V-IAI-3P +P-ASM +CONJ +PREP +A-GSF +N-GSF +N-NSN +V-2ADI-3S +PREP +A-ASF +T-ASF +N-ASF +ADV +N-GSF +A-GSF +CONJ +PREP +T-ASF +A-ASF +N-ASF +V-AAI-3S +T-NSM +N-NSM +N-DSF +A-DSF +V-PAP-NSM +N-PRI +N-PRI +ARAM +ARAM +D-NSN +V-PAI-3S +N-VSM +P-1GS +N-VSM +P-1GS +CONJ +I-NSN +P-1AS +V-2AAI-2S +CONJ +X-NPM +T-GPM +ADV +V-RAP-GPM +V-AAP-NPM +V-IAI-3P +CONJ +N-ASM +V-PAI-3S +D-NSM +CONJ +ADV +A-NSM +PREP +P-GPM +V-2AAP-NSM +CONJ +V-2AAP-NSM +N-ASM +PRT +V-AAP-NSM +N-GSN +CONJ +V-2AAP-NSM +N-DSM +V-IAI-3S +P-ASM +CONJ +T-NPM +A-NPM +V-2AAI-3P +V-2AAM-2S +V-2AAS-1P +COND +V-PNI-3S +N-NSM +V-FAP-NSM +P-ASM +CONJ +T-NSM +N-NSM +ADV +V-AAP-NSM +N-DSF +A-DSF +V-AAI-3S +T-ASN +N-ASN +CONJ +V-2AMM-2S +T-NSN +N-NSN +T-GSM +N-GSM +V-API-3S +PREP +ADV +ADV +ADV +PREP +A-NUI +CONJ +T-NSF +N-NSF +V-API-3S +CONJ +T-NPF +N-NPF +V-API-3P +CONJ +T-NPN +N-NPN +V-API-3P +CONJ +A-NPN +N-NPN +T-GPM +V-RPP-GPM +A-GPM +V-API-3P +CONJ +V-2AAP-NPM +PREP +T-GPN +N-GPN +PREP +T-ASF +N-ASF +P-GSM +V-2AAI-3P +PREP +T-ASF +A-ASF +N-ASF +CONJ +V-API-3P +A-DPM +CONJ +T-NSM +N-NSM +CONJ +T-NPM +PREP +P-GSM +V-PAP-NPM +T-ASM +N-ASM +V-2AAP-NPM +T-ASM +N-ASM +CONJ +T-APN +V-PNP-APN +V-AOI-3P +ADV +V-PAP-NPM +ADV +N-GSM +N-NSM +V-IAI-3S +D-NSM +CONJ +V-IAI-3P +ADV +N-NPF +A-NPF +PREP +ADV +V-PAP-NPF +R-NPF +V-AAI-3P +T-DSM +N-DSM +PREP +T-GSF +N-GSF +V-PAP-NPF +P-DSM +PREP +R-DPF +V-IAI-3S +N-NSF +T-NSF +N-NSF +CONJ +N-NSF +T-NSF +T-GSM +N-GSM +CONJ +N-PRI +N-NSF +CONJ +T-NSF +N-NSF +T-GPM +N-GPM +N-GSM +CONJ +A-GSF +V-2ADP-GSF +V-2AAI-3S +N-NSM +A-NSM +PREP +N-GSF +ADV-K +N-PRI +R-NSM +CONJ +P-NSM +V-API-3S +T-DSM +N-DSM +D-NSM +V-2AAP-NSM +T-DSM +N-DSM +V-AMI-3S +T-ASN +N-ASN +T-GSM +N-GSM +ADV +T-NSM +N-NSM +V-AAI-3S +V-APN +CONJ +V-2AAP-NSM +T-ASN +N-ASN +T-NSM +N-PRI +V-AAI-3S +P-ASN +PREP +N-DSF +A-DSF +CONJ +V-AAI-3S +P-ASN +PREP +T-DSN +A-DSN +P-GSM +N-DSN +R-ASN +V-AAI-3S +PREP +T-DSF +N-DSF +CONJ +V-AAP-NSM +N-ASM +A-ASM +T-DSF +N-DSF +T-GSN +N-GSN +V-2AAI-3S +CONJ +ADV +N-PRI +T-NSF +N-NSF +CONJ +T-NSF +A-NSF +N-NSF +V-IAI-3S +V-PNP-NPF +PREP +T-GSM +N-GSM +CONJ +T-DSF +ADV +R-NSF +V-PAI-3S +PREP +T-ASF +N-ASF +V-API-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +PREP +N-ASM +V-PAP-NPM +N-VSM +V-API-1P +CONJ +D-NSM +T-NSM +A-NSM +V-2AAI-3S +ADV +V-PAP-NSM +PREP +A-APF +N-APF +V-PPI-1S +CONJ +V-AAM-2S +V-APN +T-ASM +N-ASM +ADV +T-GSF +A-GSF +N-GSF +PRT-N +ADV +V-2AAP-NPM +T-NPM +N-NPM +V-AAS-3P +P-ASM +CONJ +V-2AAS-3P +T-DSM +N-DSM +V-API-3S +PREP +T-GPM +A-GPM +CONJ +V-FDI-3S +T-NSF +A-NSF-S +N-NSF +A-NSF-C +T-GSF +A-GSF-S +V-IAI-3S +P-DPM +T-NSM +N-NSM +V-PAI-2P +N-ASF +V-PAM-2P +V-ADM-2P +ADV +V-RAI-2P +CONJ +T-NPM +V-AOP-NPM +V-ADI-3P +T-ASM +N-ASM +V-AAP-NPM +T-ASM +N-ASM +PREP +T-GSF +N-GSF +CONJ +ADV +N-GPN +T-DSF +V-PAP-DSF +PREP +A-ASF +N-GPN +V-2AAI-3S +N-PRI +T-NSF +N-NSF +CONJ +T-NSF +A-NSF +N-NSF +V-AAN +T-ASM +N-ASM +CONJ +V-2AMM-2S +N-NSM +A-NSM +V-2ADI-3S +CONJ +N-NSM +N-GSM +V-2AAP-NSM +PREP +N-GSM +CONJ +V-2AAP-NSM +V-AAI-3S +T-ASM +N-ASM +CONJ +V-INI-3S +ADV +P-GSM +CONJ +V-IAI-3S +T-NSF +N-NSF +P-GSM +ADV +N-NSF +CONJ +T-NSN +N-NSN +P-GSM +A-NSN +ADV +N-NSF +CONJ +PREP +T-GSM +N-GSM +P-GSM +V-API-3P +T-NPM +V-PAP-NPM +CONJ +V-AOI-3P +ADV +A-NPM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +T-DPF +N-DPF +PRT-N +V-PNM-2P +P-2NP +CONJ +V-RAI-1S +CONJ +N-ASM +T-ASM +V-RPP-ASM +V-PAI-2P +PRT-N +V-PAI-3S +ADV +CONJ +V-API-3S +ADV +V-2AAI-3S +V-PAM-2P +V-2AAM-2P +T-ASM +N-ASM +ADV +V-INI-3S +CONJ +ADV +V-AOP-NPF +V-2AAM-2P +T-DPM +N-DPM +P-GSM +CONJ +V-API-3S +PREP +T-GPM +A-GPM +CONJ +V-2AMM-2S +V-PAI-3S +P-2AP +PREP +T-ASF +N-ASF +ADV +P-ASM +V-FDI-2P +V-2AMM-2S +V-2AAI-1S +P-2DP +CONJ +V-2AAP-NPF +ADV +PREP +T-GSN +N-GSN +PREP +N-GSM +CONJ +N-GSF +A-GSF +V-2AAI-3P +V-AAN +T-DPM +N-DPM +P-GSM +CONJ +V-2AMM-2S +N-NSM +V-AAI-3S +P-DPF +V-PAP-NSM +V-PAM-2P +CONJ +T-NPF +V-2AAP-NPF +V-AAI-3P +P-GSM +T-APM +N-APM +CONJ +V-AAI-3P +P-DSM +ADV +V-PAI-3S +P-DPF +T-NSM +N-NSM +PRT-N +V-PNM-2P +V-PAM-2P +V-AAM-2P +T-DPM +N-DPM +P-1GS +CONJ +V-2AAS-3P +PREP +T-ASF +N-ASF +ADV-K +P-1AS +V-FDI-3P +CONJ +V-PNP-GPF +P-GPF +V-2AMM-2S +X-NPM +T-GSF +N-GSF +V-2AAP-NPM +PREP +T-ASF +N-ASF +V-AAI-3P +T-DPM +N-DPM +A-APN +T-APN +V-2ADP-APN +CONJ +V-APP-NPM +PREP +T-GPM +A-GPM-C +PRT +N-ASN +V-2AAP-NPM +N-APN +A-APN +V-AAI-3P +T-DPM +N-DPM +V-PAP-NPM +V-2AAM-2P +CONJ +T-NPM +N-NPM +P-GSM +N-GSF +V-2AAP-NPM +V-AAI-3P +P-ASM +P-1GP +V-PPP-GPM +CONJ +COND +V-APS-3S +D-NSN +PREP +T-GSM +N-GSM +P-1NP +V-FAI-1P +CONJ +P-2AP +A-APM +V-FAI-1P +CONJ +T-NPM +V-2AAP-NPM +N-APN +V-AAI-3P +ADV +V-API-3P +CONJ +V-API-3S +T-NSM +N-NSM +D-NSM +PREP +A-DPM +ADV +T-GSF +ADV +N-GSF +CONJ +T-NPM +A-NUI +N-NPM +V-AOI-3P +PREP +T-ASF +N-ASF +PREP +T-ASN +N-ASN +ADV +V-AMI-3S +P-DPM +T-NSM +N-NSM +CONJ +V-2AAP-NPM +P-ASM +V-AAI-3P +CONJ +T-NPM +V-AAI-3P +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-AAI-3S +P-DPM +V-PAP-NSM +V-API-3S +P-1DS +A-NSF +N-NSF +PREP +N-DSM +CONJ +PREP +T-GSF +N-GSF +CONJ +V-AOP-NPM +V-AAM-2P +A-APN +T-APN +N-APN +V-PAP-NPM +P-APM +PREP +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +T-GSM +N-GSM +CONJ +T-GSN +A-GSN +N-GSN +V-PAP-NPM +P-APM +V-PAN +A-APN +K-APN +V-ADI-1S +P-2DP +CONJ +V-2AMM-2S +P-1NS +PREP +P-2GP +V-PAI-1S +A-APF +T-APF +N-APF +ADV +T-GSF +N-GSF +T-GSM +N-GSM +N-NSF +T-GSN +N-GSN +N-GSM +N-GSM +N-GSM +N-GSM +ADV +V-RPI-3S +PREP +T-DSM +N-DSM +T-DSM +N-DSM +V-2AMM-2S +V-PAI-1S +T-ASM +N-ASM +P-1GS +PREP +N-GSN +P-2GS +R-NSM +V-FAI-3S +T-ASF +N-ASF +P-2GS +N-NSF +V-PAP-GSM +PREP +T-DSF +A-DSF +V-AAM-2P +T-ASF +N-ASF +N-GSM +A-APF +V-PAM-2P +T-APF +N-APF +P-GSM +V-2ADI-3S +N-NSM +T-NSM +V-PAP-NSM +PREP +T-DSF +A-DSF +V-PAP-NSM +N-ASN +N-GSF +PREP +N-ASF +N-GPF +CONJ +V-INI-3S +PREP +P-ASM +A-NSF +T-NSF +N-NSF +N-NSF +CONJ +T-NPM +N-NPM +A-NPM +CONJ +V-IPI-3P +PREP +P-GSM +PREP +T-DSM +N-DSM +N-DSM +V-PMP-NPM +T-APF +N-APF +P-GPM +CONJ +V-IAI-3S +T-NSM +N-NSM +V-RMP-NSM +N-APF +N-GSF +CONJ +N-ASF +A-ASF +PREP +T-ASF +N-ASF +P-GSM +CONJ +V-PAP-NSM +N-APF +CONJ +N-ASN +A-ASN +CONJ +V-IAI-3S +V-PAP-NSM +V-PNI-3S +T-NSM +A-NSM-C +P-1GS +ADV +P-1GS +R-GSM +PRT-N +V-PAI-1S +A-NSM +V-AAP-NSM +V-AAN +T-ASM +N-ASM +T-GPN +N-GPN +P-GSM +P-1NS +V-AAI-1S +P-2AP +N-DSN +CONJ +P-NSM +V-FAI-3S +P-2AP +N-DSN +A-DSN +CONJ +V-2ADI-3S +PREP +D-DPF +T-DPF +N-DPF +V-2AAI-3S +N-NSM +PREP +N-PRI +T-GSF +N-GSF +CONJ +V-API-3S +PREP +T-ASM +N-ASM +PREP +N-GSM +CONJ +ADV +V-PAP-NSM +PREP +T-GSN +N-GSN +V-2AAI-3S +V-PPP-APM +T-APM +N-APM +CONJ +T-ASN +N-ASN +ADV +N-ASF +V-PAP-ASN +PREP +P-ASM +CONJ +N-NSF +V-2ADI-3S +PREP +T-GPM +N-GPM +P-2NS +V-PAI-2S +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +PREP +P-2DS +V-AAI-1S +CONJ +ADV +T-NSN +N-NSN +P-ASM +V-PAI-3S +PREP +T-ASF +A-ASF +CONJ +V-IAI-3S +PREP +T-DSF +A-DSF +A-NUI +N-APF +V-PPP-NSM +PREP +T-GSM +N-GSM +CONJ +V-IAI-3S +PREP +T-GPN +N-GPN +CONJ +T-NPM +N-NPM +V-IAI-3P +P-DSM +CONJ +PREP +T-ASN +V-APN +T-ASM +N-ASM +V-2AAI-3S +T-NSM +N-NSM +PREP +T-ASF +N-ASF +V-PAP-NSM +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +V-PAP-NSM +CONJ +V-RPI-3S +T-NSM +N-NSM +CONJ +V-RAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +V-PAM-2P +CONJ +V-PAM-2P +PREP +T-DSN +N-DSN +CONJ +V-PAP-NSM +PREP +T-ASF +N-ASF +T-GSF +N-GSF +V-2AAI-3S +N-ASM +CONJ +N-ASM +T-ASM +N-ASM +N-GSM +V-PAP-APM +PREP +T-DSF +N-DSF +CONJ +V-IAI-3P +N-NPM +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +V-PAM-2P +ADV +P-1GS +CONJ +V-FAI-1S +P-2AP +V-2ADN +N-APM +N-GPM +CONJ +ADV +V-2AAP-NPM +T-APN +N-APN +V-AAI-3P +P-DSM +CONJ +V-2AAP-NSM +ADV +V-2AAI-3S +N-ASM +T-ASM +T-GSM +N-GSM +CONJ +N-ASM +T-ASM +N-ASM +P-GSM +CONJ +P-APM +PREP +T-DSN +N-DSN +V-PAP-APM +T-APN +N-APN +CONJ +ADV +V-AAI-3S +P-APM +CONJ +V-2AAP-NPM +T-ASM +N-ASM +P-GPM +N-ASM +PREP +T-DSN +N-DSN +PREP +T-GPM +N-GPM +V-2AAI-3P +ADV +P-GSM +CONJ +V-PNI-3P +PREP +N-PRI +CONJ +ADV +T-DPN +N-DPN +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-IAI-3S +CONJ +V-IPI-3P +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-IAI-3S +V-PAP-NSM +P-APM +ADV +N-ASF +V-PAP-NSM +CONJ +PRT-N +ADV +T-NPM +N-NPM +CONJ +ADV +V-IAI-3S +PREP +T-DSF +N-DSF +P-GPM +N-NSM +PREP +N-DSN +A-DSN +CONJ +V-AAI-3S +V-PAP-NSM +I-NSN +P-1DP +CONJ +P-2DS +N-VSM +A-VSM +V-2AAI-2S +V-AAN +P-1AP +V-RAI-1S +P-2AS +I-NSM +V-PAI-2S +T-NSM +A-NSM +T-GSM +N-GSM +CONJ +V-AAI-3S +P-DSM +T-NSM +N-NSM +V-APM-2S +CONJ +V-2AAM-2S +PREP +P-GSM +CONJ +T-NSN +N-NSN +T-NSN +A-NSN +V-AAP-NSN +P-ASM +CONJ +V-AAP-NSN +N-DSF +A-DSF +V-2AAI-3S +PREP +P-GSM +CONJ +V-API-3P +A-NPM +CONJ +V-PAN +P-APM +V-PAP-APM +I-NSN +V-PAI-3S +D-NSN +N-NSF +A-NSF +PREP +N-ASF +CONJ +T-DPN +N-DPN +T-DPN +A-DPN +V-PAI-3S +CONJ +V-PAI-3P +P-DSM +CONJ +V-2AAI-3S +T-NSF +N-NSF +P-GSM +ADV +ADV +PREP +A-ASF +T-ASF +A-ASF +T-GSF +N-GSF +CONJ +ADV +PREP +T-GSF +N-GSF +V-2AAP-NPM +V-2AAI-3P +PREP +T-ASF +N-ASF +N-GSM +CONJ +N-GSM +PREP +N-GSM +CONJ +N-GSM +CONJ +T-NSF +N-NSF +N-GSM +V-INI-3S +V-PAP-NSF +CONJ +ADV +V-PAI-3P +P-DSM +PREP +P-GSF +CONJ +V-2AAP-NSM +V-AAI-3S +P-ASF +V-AAP-NSM +T-GSF +N-GSF +CONJ +V-AAI-3S +P-ASF +T-NSM +N-NSM +CONJ +V-IAI-3S +P-DPM +CONJ +A-GSF +V-2ADP-GSF +ADV +V-AAI-3S +T-NSM +N-NSM +V-IAI-3P +PREP +P-ASM +A-APM +T-APM +ADV +V-PAP-APM +CONJ +T-APM +V-PNP-APM +CONJ +V-IAI-3S +V-RPP-NSF +A-NSF +T-NSF +N-NSF +PREP +T-ASF +N-ASF +CONJ +V-AAI-3S +A-APM +ADV +V-PAP-APM +A-DPF +N-DPF +CONJ +N-APN +A-APN +V-2AAI-3S +CONJ +PRT-N +V-IAI-3S +V-PAN +T-APN +N-APN +CONJ +V-2LAI-3P +P-ASM +CONJ +ADV +ADV +ADV +V-2AAP-NSM +V-2AAI-3S +CONJ +V-2AAI-3S +PREP +A-ASM +N-ASM +ADV-K +V-INI-3S +CONJ +V-AAI-3S +P-ASM +N-NSM +CONJ +T-NPM +PREP +P-GSM +CONJ +V-2AAI-3P +P-ASM +CONJ +V-PAI-3P +P-DSM +CONJ +A-NPM +V-PAI-3P +P-2AS +CONJ +V-PAI-3S +P-DPM +V-PAS-1P +ADV +PREP +T-APF +V-PPP-APF +N-APF +CONJ +CONJ +ADV +V-AAS-1S +CONJ +PREP +D-ASN +V-2AAI-1S +CONJ +V-2AAI-3S +V-PAP-NSM +PREP +T-APF +N-APF +P-GPM +PREP +A-ASF +T-ASF +N-ASF +CONJ +T-APN +N-APN +V-PAP-NSM +CONJ +V-PNI-3S +PREP +P-ASM +A-NSM +V-PAP-NSM +P-ASM +CONJ +V-PAP-NSM +V-PAP-NSM +P-DSM +CONJ +COND +V-PAS-2S +V-PNI-2S +P-1AS +V-AAN +CONJ +V-AOP-NSM +V-AAP-NSM +T-ASF +N-ASF +P-GSM +V-ADI-3S +CONJ +V-PAI-3S +P-DSM +V-PAI-1S +V-APM-2S +CONJ +ADV +V-2AAI-3S +PREP +P-GSM +T-NSF +N-NSF +CONJ +V-API-3S +CONJ +V-ADP-NSM +P-DSM +ADV +V-2AAI-3S +P-ASM +CONJ +V-PAI-3S +P-DSM +V-PAM-2S +A-DSM-N +A-ASN-N +V-2AAS-2S +CONJ +V-PAM-2S +F-2ASM +V-AAM-2S +T-DSM +N-DSM +CONJ +V-2AAM-2S +PREP +T-GSM +N-GSM +P-2GS +R-APN +V-AAI-3S +N-NSM +PREP +N-ASN +P-DPM +CONJ +T-NSM +V-2AAP-NSM +V-ADI-3S +V-PAN +A-APN +CONJ +V-PAN +T-ASM +N-ASM +CONJ +ADV-N +P-ASM +V-PNN +ADV +PREP +N-ASF +V-2AAN +CONJ +ADV +PREP +A-DPM +N-DPM +V-IAI-3S +CONJ +V-INI-3P +PREP +P-ASM +ADV +CONJ +V-2AAP-NSM +ADV +PREP +N-PRI +PREP +N-GPF +V-API-3S +CONJ +PREP +N-DSM +V-PAI-3S +CONJ +V-API-3P +A-NPM +CONJ +ADV-N +V-PAN +CONJ-N +T-APN +PREP +T-ASF +N-ASF +CONJ +V-IAI-3S +P-DPM +T-ASM +N-ASM +CONJ +V-PNI-3P +V-PAP-NPM +PREP +P-ASM +A-ASM +V-PPP-ASM +PREP +A-GPM +CONJ +PRT-N +V-PNP-NPM +V-2AAN +P-DSM +PREP +T-ASM +N-ASM +V-AAI-3P +T-ASF +N-ASF +ADV +V-IAI-3S +CONJ +V-AAP-NPM +V-PAI-3P +T-ASM +N-ASM +ADV +T-NSM +A-NSM +V-INI-3S +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-ASF +N-ASF +P-GPM +V-PAI-3S +T-DSM +A-DSM +N-VSN +V-PPI-3P +P-2GS +T-NPF +N-NPF +CONJ +V-IAI-3P +X-NPM +T-GPM +N-GPM +ADV +V-PNP-NPM +CONJ +V-PNP-NPM +PREP +T-DPF +N-DPF +P-GPM +I-ASN +D-NSM +ADV +V-PAI-3S +V-PAI-3S +I-NSM +V-PNI-3S +V-PAN +N-APF +COND +PRT-N +A-NSM +T-NSM +N-NSM +CONJ +ADV +T-NSM +N-NSM +V-2AAP-NSM +T-DSN +N-DSN +P-GSM +CONJ +ADV +V-PNI-3P +PREP +F-3DPM +V-PAI-3S +P-DPM +I-ASN +D-APN +V-PNI-2P +PREP +T-DPF +N-DPF +P-2GP +I-NSN +V-PAI-3S +A-NSN-C +V-2AAN +T-DSM +A-DSM +V-PPI-3P +P-2GS +T-NPF +N-NPF +PRT +V-2AAN +V-PAM-2S +CONJ +V-AAM-2S +T-ASM +N-ASM +P-2GS +CONJ +V-PAM-2S +CONJ +CONJ +V-RAS-2P +CONJ +N-ASF +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-PAN +N-APF +PREP +T-GSF +N-GSF +V-PAI-3S +T-DSM +A-DSM +P-2DS +V-PAI-1S +V-PAM-2S +V-AAM-2S +T-ASM +N-ASM +P-2GS +CONJ +V-PAM-2S +PREP +T-ASM +N-ASM +P-2GS +CONJ +V-API-3S +CONJ +ADV +V-AAP-NSM +T-ASM +N-ASM +V-2AAI-3S +PREP +A-GPM +CONJ +V-PMN +A-APM +CONJ +V-PAN +T-ASM +N-ASM +V-PAP-APM +CONJ +ADV +ADV-N +V-2AAI-1P +CONJ +V-2AAI-3S +ADV +PREP +T-ASF +N-ASF +CONJ +A-NSM +T-NSM +N-NSM +V-INI-3S +PREP +P-ASM +CONJ +V-IAI-3S +P-APM +CONJ +V-PAP-NSM +V-2AAI-3S +N-ASM +T-ASM +T-GSM +N-GSM +V-PNP-ASM +PREP +T-ASN +N-ASN +CONJ +V-PAI-3S +P-DSM +V-PAM-2S +P-1DS +CONJ +V-2AAP-NSM +V-AAI-3S +P-DSM +CONJ +V-PNI-3S +V-PNN +P-ASM +PREP +T-DSF +N-DSF +P-GSM +CONJ +A-NPM +N-NPM +CONJ +A-NPM +V-INI-3P +T-DSM +N-DSM +CONJ +T-DPM +N-DPM +P-GSM +CONJ +V-IAI-3P +A-NPM +CONJ +V-IAI-3P +P-DSM +CONJ +T-NPM +N-NPM +T-GPM +N-GPM +V-2AAP-NPM +CONJ +V-PAI-3S +PREP +T-GPM +A-GPM +CONJ +N-GPM +V-IAI-3P +T-DPM +N-DPM +P-GSM +CONJ +PREP +T-GPM +N-GPM +CONJ +A-GPM +V-PAI-3S +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-PAI-3S +P-DPM +PRT-N +N-ASF +N-GSM +V-PAI-3P +T-NPM +V-PAP-NPM +CONJ +T-NPM +ADV +V-PAP-NPM +PRT-N +V-2AAI-1S +V-AAN +A-APM +CONJ +A-APM +CONJ +V-IAI-3P +V-PAP-NPM +T-NPM +N-NPM +N-GSM +CONJ +T-NPM +N-NPM +CONJ +V-PNI-3P +CONJ +V-PAI-3P +P-DSM +PREP +I-ASN +T-NPM +N-NPM +N-GSM +CONJ +T-NPM +N-NPM +T-GPM +N-GPM +V-PAI-3P +CONJ +T-NPM +S-2SNPM +N-NPM +PRT-N +V-PAI-3P +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +PRT-N +V-PNI-3P +T-NPM +N-NPM +T-GSM +N-GSM +PREP +R-DSM +T-NSM +N-NSM +PREP +P-GPM +V-PAI-3S +V-PAN +K-ASM +N-ASM +V-PAI-3P +T-ASM +N-ASM +PREP +P-GPM +PRT-N +V-PNI-3P +V-PAN +CONJ +V-FDI-3P +N-NPF +CONJ +V-APS-3S +PREP +P-GPM +T-NSM +N-NSM +CONJ +ADV +V-FAI-3P +PREP +D-DSF +T-DSF +N-DSF +A-NSM-N +N-ASN +N-GSN +A-GSN +V-PAI-3S +PREP +N-ASN +A-ASN +CONJ +COND +PRT-N +V-PAI-3S +T-ASN +N-ASN +T-NSN +A-NSN +PREP +P-GSN +T-GSN +A-GSN +CONJ +A-NSN +N-NSN +V-PNI-3S +CONJ +A-NSM-N +V-PAI-3S +N-ASM +A-ASM +PREP +N-APM +A-APM +CONJ +COND +PRT-N +V-FAI-3S +T-NSM +N-NSM +T-APM +N-APM +CONJ +T-NSM +N-NSM +V-PPI-3S +CONJ +T-NPM +N-NPM +CONJ +N-ASM +A-ASM +PREP +N-APM +A-APM +CONJ +V-2ADI-3S +P-ASM +PREP +T-DPN +N-DPN +V-PNN +PREP +T-GPM +A-GPM +CONJ +T-NPM +N-NPM +P-GSM +V-ADI-3P +N-ASF +V-PAN +V-PAP-NPM +T-APM +N-APM +CONJ +T-NPM +N-NPM +V-IAI-3P +P-DSM +V-2AAM-2S +I-ASN +V-PAI-3P +T-DPN +N-DPN +R-ASN +PRT-N +V-PAI-3S +CONJ +V-PAI-3S +P-DPM +ADV-N +V-2AAI-2P +I-ASN +V-AAI-3S +N-PRI +ADV +N-ASF +V-2AAI-3S +CONJ +V-AAI-3S +P-NSM +CONJ +T-NPM +PREP +P-GSM +ADV +V-2AAI-3S +PREP +T-ASM +N-ASM +T-GSM +N-GSM +PREP +N-PRI +N-GSM +CONJ +T-APM +N-APM +T-GSF +N-GSF +V-2AAI-3S +R-APM +V-2AAN +PRT-N +V-PAI-3S +COND +PRT-N +T-APM +N-APM +CONJ +V-AAI-3S +CONJ +T-DPM +PREP +P-DSM +V-PAP-DPM +CONJ +V-IAI-3S +P-DPM +T-NSN +N-NSN +PREP +T-ASM +N-ASM +V-2ADI-3S +CONJ +PRT-N +T-NSM +N-NSM +PREP +T-ASN +N-ASN +CONJ +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +N-NSM +CONJ +T-GSN +N-GSN +CONJ +V-2AAI-3S +ADV +PREP +N-ASF +CONJ +V-IAI-3S +ADV +N-NSM +V-RPP-ASF +V-PAP-NSM +T-ASF +N-ASF +CONJ +V-IAI-3P +P-ASM +COND +T-DPN +N-DPN +V-FAI-3S +P-ASM +CONJ +V-AAS-3P +P-GSM +CONJ +V-PAI-3S +T-DSM +N-DSM +T-DSM +T-ASF +A-ASF +N-ASF +V-PAP-DSM +V-PAM-2S +PREP +T-ASN +A-ASN +CONJ +V-PAI-3S +P-DPM +V-PAI-3S +T-DPN +N-DPN +A-ASN +V-AAN +PRT +V-AAN +N-ASF +V-AAN +PRT +V-AAN +CONJ +T-NPM +V-IAI-3P +CONJ +V-AMP-NSM +P-APM +PREP +N-GSF +V-PNP-NSM +PREP +T-DSF +N-DSF +T-GSF +N-GSF +P-GPM +V-PAI-3S +T-DSM +N-DSM +V-AAM-2S +T-ASF +N-ASF +CONJ +V-AAI-3S +CONJ +V-API-3S +T-NSF +N-NSF +P-GSM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +ADV +PREP +T-GPM +N-GPM +N-ASN +V-IAI-3P +PREP +P-GSM +ADV +P-ASM +V-AAS-3P +CONJ +T-NSM +N-NSM +PREP +T-GPM +N-GPM +P-GSM +V-AAI-3S +PREP +T-ASF +N-ASF +CONJ +A-NSN +N-NSN +PREP +T-GSF +N-GSF +V-AAI-3S +CONJ +PREP +T-GSF +N-GSF +CONJ +PREP +N-GPN +CONJ +PREP +T-GSF +N-GSF +CONJ +ADV +T-GSM +N-GSM +CONJ +PREP +N-ASF +CONJ +N-ASF +N-NSN +A-NSN +V-PAP-NPM +K-APN +V-PAI-3S +V-2AAI-3P +PREP +P-ASM +CONJ +V-2AAI-3S +T-DPM +N-DPM +P-GSM +CONJ +N-NSN +V-PAS-3S +P-DSM +PREP +T-ASM +N-ASM +CONJ +PRT-N +V-PAS-3P +P-ASM +CONJ +A-APM +V-AAI-3S +CONJ +V-PAN +P-DSM +CONJ +P-GSM +V-AMS-3P +K-NPM +V-IAI-3P +N-APF +CONJ +T-NPN +N-NPN +T-NPN +A-NPN +CONJ +P-ASM +V-IAI-3P +V-IAI-3P +P-DSM +CONJ +V-IAI-3P +V-PAP-NPN +CONJ +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +A-APN +V-IAI-3S +P-DPM +CONJ +PRT-N +P-ASM +A-ASM +V-AAS-3P +CONJ +V-PAI-3S +PREP +T-ASN +N-ASN +CONJ +V-PNI-3S +R-APM +V-IAI-3S +P-NSM +CONJ +V-2AAI-3P +PREP +P-ASM +CONJ +V-AAI-3S +A-NUI +CONJ +V-PAS-3P +PREP +P-GSM +CONJ +CONJ +V-PAS-3S +P-APM +V-PAN +CONJ +V-PAN +N-ASF +V-PAN +T-APN +N-APN +CONJ +V-AAI-3S +T-APM +A-NUI +CONJ +V-AAI-3S +N-ASN +T-DSM +N-DSM +N-ASM +CONJ +N-ASM +T-ASM +T-GSM +N-GSM +CONJ +N-ASM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-AAI-3S +P-DPM +N-ASN +N-PRI +R-NSN +V-PAI-3S +N-NPM +N-GSF +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +T-ASM +T-GSM +N-GSM +CONJ +N-ASM +CONJ +N-ASM +T-ASM +N-ASM +CONJ +N-ASM +N-PRI +R-NSM +CONJ +V-AAI-3S +P-ASM +CONJ +V-PNI-3S +PREP +N-ASM +CONJ +V-PNI-3S +ADV +T-NSM +N-NSM +CONJ +PRT-N +V-PNN +P-APM +CONJ-N +N-ASM +V-2AAN +CONJ +V-AAP-NPM +T-NPM +PREP +P-GSM +V-2AAI-3P +V-AAN +P-ASM +CONJ +V-IAI-3P +CONJ +V-2AAI-3S +CONJ +T-NPM +N-NPM +T-NPM +PREP +N-GPN +V-2AAP-NPM +V-IAI-3P +CONJ +N-PRI +V-PAI-3S +CONJ +CONJ +PREP +T-DSM +N-DSM +T-GPN +N-GPN +V-PAI-3S +T-APN +N-APN +CONJ +V-ADP-NSM +P-APM +PREP +N-DPF +V-IAI-3S +P-DPM +ADV-I +V-PNI-3S +N-NSM +N-ASM +V-PAN +CONJ +COND +N-NSF +PREP +F-3ASF +V-APS-3S +PRT-N +V-PNI-3S +V-APN +T-NSF +N-NSF +D-NSF +CONJ +COND +N-NSF +PREP +F-3ASF +V-APS-3S +PRT-N +V-FDI-3S +T-NSF +N-NSF +D-NSF +V-2AAN +CONJ +COND +T-NSM +N-NSM +V-2AAI-3S +PREP +F-3ASM +CONJ +V-API-3S +PRT-N +V-PNI-3S +V-2AAN +CONJ +N-ASN +V-PAI-3S +CONJ +PRT-N +V-PNI-3S +A-NSM-N +PREP +T-ASF +N-ASF +T-GSM +A-GSM +V-2AAP-NSM +T-APN +N-APN +P-GSM +V-AAN +COND +PRT-N +ADV-S +T-ASM +A-ASM +V-AAS-3S +CONJ +ADV +T-ASF +N-ASF +P-GSM +V-FAI-3S +HEB +V-PAI-1S +P-2DP +CONJ +V-FPI-3S +T-DPM +N-DPM +T-GPM +N-GPM +A-NPN +T-NPN +N-NPN +CONJ +T-NPF +N-NPF +COND +K-APN +V-AAS-3P +CONJ +PRT +R-NSM +V-AAS-3S +PREP +T-ASN +N-ASN +T-ASN +A-ASN +PRT-N +V-PAI-3S +N-ASF +PREP +T-ASM +N-ASM +CONJ +A-NSM +V-PAI-3S +A-GSF +N-GSN +CONJ +V-IAI-3P +N-ASN +A-ASN +V-PAI-3S +CONJ +V-PNI-3P +T-NSF +N-NSF +P-GSM +CONJ +T-NPM +N-NPM +P-GSM +CONJ +ADV +V-PAP-NPM +V-AAI-3P +PREP +P-ASM +V-PAP-NPM +P-ASM +CONJ +V-INI-3S +PREP +P-ASM +N-NSM +CONJ +V-PAI-3P +P-DSM +V-2AMM-2S +T-NSF +N-NSF +P-2GS +CONJ +T-NPM +N-NPM +P-2GS +CONJ +T-NPF +N-NPF +P-2GS +ADV +V-PAI-3P +P-2AS +CONJ +V-AOP-NSM +P-DPM +V-PAI-3S +I-NSM +V-PAI-3S +T-NSF +N-NSF +P-1GS +CONJ +T-NPM +N-NPM +CONJ +V-AMP-NSM +T-APM +PREP +P-ASM +N-DSM +V-PNP-APM +V-PAI-3S +V-2AAM-2S +T-NSF +N-NSF +P-1GS +CONJ +T-NPM +N-NPM +P-1GS +PRT +R-NSM +V-AAS-3S +T-ASN +N-ASN +T-GSM +N-GSM +D-NSM +N-NSM +P-1GS +CONJ +N-NSF +CONJ +N-NSF +V-PAI-3S +CONJ +ADV +V-ADI-3S +V-PAN +PREP +T-ASF +N-ASF +CONJ +V-PPI-3S +PREP +P-ASM +N-NSM +A-NSM-S +CONJ +P-ASM +PREP +N-ASN +V-2AAP-ASM +V-PNN +PREP +T-DSF +N-DSF +CONJ +A-NSM +T-NSM +N-NSM +PREP +T-ASF +N-ASF +PREP +T-GSF +N-GSF +V-IAI-3P +CONJ +V-IAI-3S +P-APM +PREP +N-DPF +A-APN +CONJ +V-IAI-3S +P-DPM +PREP +T-DSF +N-DSF +P-GSM +V-PAM-2P +V-2AMM-2S +V-2AAI-3S +T-NSM +V-PAP-NSM +V-AAN +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +PRT +R-NSN +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +T-NPN +N-NPN +CONJ +V-2AAI-3S +P-ASN +CONJ +A-NSN +V-2AAI-3S +PREP +T-ASN +A-ASN +ADV +PRT-N +V-IAI-3S +N-ASF +A-ASF +CONJ +ADV +V-AAI-3S +PREP +T-ASN +PRT-N +V-PAN +N-ASN +N-GSF +CONJ +ADV +V-AAI-3S +T-NSM +N-NSM +V-API-3S +CONJ +PREP +T-ASN +PRT-N +V-PAN +N-ASF +V-API-3S +CONJ +A-NSN +V-2AAI-3S +PREP +T-APF +N-APF +CONJ +V-2AAI-3P +T-NPF +N-NPF +CONJ +V-AAI-3P +P-ASN +CONJ +N-ASM +PRT-N +V-AAI-3S +CONJ +A-NPN +V-2AAI-3S +PREP +T-ASF +N-ASF +T-ASF +A-ASF +CONJ +V-IAI-3S +N-ASM +V-PAP-NPN +CONJ +V-PPP-NPN +CONJ +V-IAI-3S +PREP +A-NUI +CONJ +PREP +A-NUI +CONJ +PREP +A-NUI +CONJ +V-IAI-3S +R-NSM +V-PAI-3S +N-APN +V-PAN +V-PAM-3S +CONJ +ADV +V-2ADI-3S +PREP +A-APF +V-IAI-3P +P-ASM +T-NPM +PREP +P-ASM +PREP +T-DPM +A-NUI +T-APF +N-APF +CONJ +V-IAI-3S +P-DPM +P-2DP +V-RPI-3S +T-NSN +N-NSN +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +D-DPM +T-DPM +ADV +PREP +N-DPF +T-NPN +A-NPN +V-PNI-3S +CONJ +V-PAP-NPM +V-PAS-3P +CONJ +PRT-N +V-2AAS-3P +CONJ +V-PAP-NPM +V-PAS-3P +CONJ +PRT-N +V-PAS-3P +PRT-N +ADV +V-AAS-3P +CONJ +V-APS-3S +P-DPM +CONJ +V-PAI-3S +P-DPM +PRT-N +V-RAI-2P +T-ASF +N-ASF +D-ASF +CONJ +ADV-I +A-APF +T-APF +N-APF +V-FDI-2P +T-NSM +V-PAP-NSM +T-ASM +N-ASM +V-PAI-3S +CONJ +D-NPM +V-PAI-3P +T-NPM +PREP +T-ASF +N-ASF +ADV +V-PPI-3S +T-NSM +N-NSM +CONJ +CONJ +V-AAS-3P +ADV +V-PNI-3S +T-NSM +N-NSM +CONJ +V-PAI-3S +T-ASM +N-ASM +T-ASM +V-2RPP-ASM +PREP +P-APM +CONJ +V-PAI-3P +ADV +T-NPM +PREP +T-APN +A-APN +V-PPP-NPM +D-NPM +R-NPM +CONJ +V-AAS-3P +T-ASM +N-ASM +ADV +PREP +N-GSF +V-PAI-3P +P-ASM +CONJ +PRT-N +V-PAI-3P +N-ASF +PREP +F-3DPM +CONJ +A-NPM +V-PAI-3P +ADV +V-2ADP-GSF +N-GSF +PRT +N-GSM +PREP +T-ASM +N-ASM +ADV +V-PPI-3P +CONJ +A-NPM +V-PAI-3P +T-NPM +PREP +T-APF +N-APF +V-PPP-NPM +D-NPM +V-PAI-3P +T-NPM +T-ASM +N-ASM +V-AAP-NPM +CONJ +T-NPF +N-NPF +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +T-NPF +PREP +T-APN +A-APN +N-NPF +V-PNP-NPF +V-PAI-3P +T-ASM +N-ASM +CONJ +A-NSM +V-PNI-3S +CONJ +V-PAI-3P +T-NPM +PREP +T-ASF +N-ASF +T-ASF +A-ASF +V-2APP-NPM +D-NPM +R-NPM +V-PAI-3P +T-ASM +N-ASM +CONJ +V-PNI-3P +CONJ +V-PAI-3P +PREP +A-NUI +CONJ +PREP +A-NUI +CONJ +PREP +A-NUI +CONJ +V-IAI-3S +P-DPM +CONJ +PRT-I +V-PNI-3S +T-NSM +N-NSM +CONJ +PREP +T-ASM +N-ASM +V-APS-3S +PRT +PREP +T-ASF +N-ASF +PRT-N +CONJ +PREP +T-ASF +N-ASF +V-APS-3S +CONJ +PRT-N +V-PAI-3S +X-NSN +A-NSN +COND +PRT-N +CONJ +V-APS-3S +CONJ-N +V-2ADI-3S +A-NSN +CONJ +CONJ +V-2AAS-3S +PREP +A-ASM +COND +X-NSM +V-PAI-3S +N-APN +V-PAN +V-PAM-3S +CONJ +V-IAI-3S +P-DPM +V-PAM-2P +I-ASN +V-PAI-2P +PREP +R-DSN +N-DSN +V-PAI-2P +V-FPI-3S +P-2DP +CONJ +V-FPI-3S +P-2DP +CONJ +R-NSM +V-PAI-3S +V-FPI-3S +P-DSM +CONJ +R-NSM +PRT-N +V-PAI-3S +CONJ +R-ASN +V-PAI-3S +V-FPI-3S +PREP +P-GSM +CONJ +V-IAI-3S +ADV +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +ADV +N-NSM +V-2AAS-3S +T-ASM +N-ASM +PREP +T-GSF +N-GSF +CONJ +V-PAS-3S +CONJ +V-PPS-3S +N-ASF +CONJ +N-ASF +CONJ +T-NSM +N-NSM +V-PAS-3S +CONJ +V-PPS-3S +ADV +PRT-N +V-RAI-3S +P-NSM +A-NSF +T-NSF +N-NSF +V-PAI-3S +ADV-S +N-ASM +ADV +N-ASM +ADV +A-NSM +N-NSM +PREP +T-DSM +N-DSM +CONJ +CONJ +V-2AAS-3S +T-NSM +N-NSM +ADV +V-PAI-3S +T-ASN +N-ASN +CONJ +V-RAI-3S +T-NSM +N-NSM +CONJ +V-IAI-3S +ADV-I +V-AAS-1P +T-ASF +N-ASF +T-GSM +N-GSM +PRT +PREP +I-DSN +N-DSF +P-ASF +V-2AAS-1P +ADV +N-DSM +N-GSN +R-NSM +CONJ +V-2APS-3S +PREP +T-GSF +N-GSF +A-NSN-C +V-PAP-NSN +A-GPN +T-GPN +N-GPN +T-GPN +PREP +T-GSF +N-GSF +CONJ +CONJ +V-2APS-3S +V-PAI-3S +CONJ +V-PNI-3S +A-NSN-C +A-GPN +T-GPN +N-GPN +CONJ +V-PAI-3S +N-APM +A-APM +CONJ +V-PNN +PREP +T-ASF +N-ASF +P-GSM +V-PAN +T-APN +N-APN +T-GSM +N-GSM +CONJ +D-DPF +N-DPF +A-DPF +V-IAI-3S +P-DPM +T-ASM +N-ASM +ADV +V-INI-3P-ATT +V-PAN +CONJ +ADV +N-GSF +PRT-N +V-IAI-3S +P-DPM +CONJ +PREP +A-ASF +T-DPM +A-DPM +N-DPM +V-IAI-3S +A-APN +CONJ +V-PAI-3S +P-DPM +PREP +D-DSF +T-DSF +N-DSF +A-GSF +V-2ADP-GSF +V-2AAS-1P +PREP +T-ASN +ADV +CONJ +V-2AAP-NPM +T-ASM +N-ASM +V-PAI-3P +P-ASM +ADV +V-IAI-3S +PREP +T-DSN +N-DSN +CONJ +A-NPN +N-NPN +V-IAI-3S +PREP +P-GSM +CONJ +V-PNI-3S +N-NSF +A-NSF +N-GSM +CONJ +T-NPN +N-NPN +V-IAI-3S +PREP +T-ASN +N-ASN +CONJ +ADV +V-PPN +T-ASN +N-ASN +CONJ +P-NSM +V-IAI-3S +PREP +T-DSF +N-DSF +PREP +T-ASN +N-ASN +V-PAP-NSM +CONJ +V-PAI-3P +P-ASM +CONJ +V-PAI-3P +P-DSM +N-VSM +PRT-N +V-PAI-3S +P-2DS +CONJ +V-PMI-1P +CONJ +V-APP-NSM +V-AAI-3S +T-DSM +N-DSM +CONJ +V-2AAI-3S +T-DSF +N-DSF +V-PAM-2S +V-RPM-2S +CONJ +V-AAI-3S +T-NSM +N-NSM +CONJ +V-2ADI-3S +N-NSF +A-NSF +CONJ +V-2AAI-3S +P-DPM +I-NSN +A-NPM +V-PAI-2P +ADV +ADV-I +PRT-N +V-PAI-2P +N-ASF +CONJ +V-AOI-3P +N-ASM +A-ASM +CONJ +V-IAI-3P +PREP +C-APM +PRT-I +I-NSM +D-NSM +V-PAI-3S +CONJ +CONJ +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +V-PAI-3S +P-DSM +CONJ +V-2AAI-3P +PREP +T-ASN +ADV +T-GSF +N-GSF +PREP +T-ASF +N-ASF +T-GPM +N-GPM +CONJ +V-2AAP-GSM +P-GSM +PREP +T-GSN +N-GSN +ADV +V-AAI-3S +P-DSM +PREP +T-GPN +N-GPN +N-NSM +PREP +N-DSN +A-DSN +R-NSM +T-ASF +N-ASF +V-IAI-3S +PREP +T-DPN +N-DPN +CONJ +CONJ-N +N-DSF +ADV-N +A-NSM-N +V-INI-3S +P-ASM +V-AAN +PREP +T-ASN +P-ASM +ADV +N-DPF +CONJ +N-DPF +V-RPN +CONJ +V-RPN +PREP +P-GSM +T-APF +N-APF +CONJ +T-APF +N-APF +V-RPN +CONJ +A-NSM-N +V-IAI-3S +P-ASM +V-AAN +CONJ +PREP +A-GSN +N-GSF +CONJ +N-GSF +PREP +T-DPN +N-DPN +CONJ +PREP +T-DPN +N-DPN +V-IAI-3S +V-PAP-NSM +CONJ +V-PAP-NSM +F-3ASM +N-DPM +CONJ +V-2AAP-NSM +T-ASM +N-ASM +PREP +ADV +V-2AAI-3S +CONJ +V-AAI-3S +P-ASM +CONJ +V-AAP-NSM +N-DSF +A-DSF +V-PAI-3S +I-NSN +P-1DS +CONJ +P-2DS +N-VSM +N-VSM +T-GSM +N-GSM +T-GSM +A-GSM-S +V-PAI-1S +P-2AS +T-ASM +N-ASM +PRT-N +P-1AS +V-AAS-2S +CONJ +V-IAI-3S +P-DSM +T-NSN +N-NSN +T-NSN +A-NSN +V-2AAM-2S +PREP +T-GSM +N-GSM +CONJ +V-IAI-3S +P-ASM +I-NSN +N-NSN +P-2DS +CONJ +V-PAI-3S +P-DSM +N-NSM +N-NSN +P-1DS +CONJ +A-NPM +V-PAI-1P +CONJ +V-IAI-3S +P-ASM +A-APN +CONJ +PRT-N +P-APN +V-AAS-3S +ADV +T-GSF +N-GSF +CONJ +V-IAI-3S +ADV +PREP +T-DSN +N-DSN +N-NSF +N-GPM +A-NSF +V-PPP-NSF +CONJ +V-AAI-3P +P-ASM +V-PAP-NPM +V-AAM-2S +P-1AP +PREP +T-APM +N-APM +CONJ +PREP +P-APM +V-2AAS-1P +CONJ +V-AAI-3S +P-DPM +CONJ +V-2AAP-NPN +T-NPN +N-NPN +T-NPN +A-NPN +V-2AAI-3P +PREP +T-APM +N-APM +CONJ +V-AAI-3S +T-NSF +N-NSF +PREP +T-GSM +N-GSM +PREP +T-ASF +N-ASF +ADV +A-NPM +CONJ +V-IPI-3P +PREP +T-DSF +N-DSF +CONJ +T-NPM +V-PAP-NPM +P-APM +V-2AAI-3P +CONJ +V-AAI-3P +PREP +T-ASF +N-ASF +CONJ +PREP +T-APM +N-APM +CONJ +V-2AAI-3P +V-2AAN +I-NSN +V-PAI-3S +T-NSN +V-2RAP-NSN +CONJ +V-PNI-3P +PREP +T-ASM +N-ASM +CONJ +V-PAI-3P +T-ASM +V-PNP-ASM +T-ASM +V-RAP-ASM +T-ASM +N-ASM +V-PNP-ASM +V-RPP-ASM +CONJ +V-PAP-ASM +CONJ +V-AOI-3P +CONJ +V-ADI-3P +P-DPM +T-NPM +V-2AAP-NPM +ADV +V-2ADI-3S +T-DSM +V-PNP-DSM +CONJ +PREP +T-GPM +N-GPM +CONJ +V-ADI-3P +V-PAN +P-ASM +V-2AAN +PREP +T-GPN +N-GPN +P-GPM +CONJ +V-PAP-GSM +P-GSM +PREP +T-ASN +N-ASN +V-IAI-3S +P-ASM +T-NSM +V-AOP-NSM +CONJ +PREP +P-GSM +V-PAS-3S +CONJ +PRT-N +V-AAI-3S +P-ASM +CONJ +V-PAI-3S +P-DSM +V-PAM-2S +PREP +T-ASM +N-ASM +P-2GS +PREP +T-APM +S-2SAPM +CONJ +V-AAM-2S +P-DPM +K-APN +T-NSM +N-NSM +P-2DS +V-RAI-3S +CONJ +V-AAI-3S +P-2AS +CONJ +V-2AAI-3S +CONJ +V-ADI-3S +V-PAN +PREP +T-DSF +N-DSF +K-APN +V-AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +A-NPM +V-IAI-3P +CONJ +V-AAP-GSM +T-GSM +N-GSM +PREP +T-DSN +N-DSN +ADV +PREP +T-ASN +ADV +V-API-3S +N-NSM +A-NSM +PREP +P-ASM +CONJ +V-IAI-3S +PREP +T-ASF +N-ASF +CONJ +V-PNI-3S +A-NSM +T-GPM +N-GPM +N-DSN +N-NSM +CONJ +V-2AAP-NSM +P-ASM +V-PAI-3S +PREP +T-APM +N-APM +P-GSM +CONJ +V-PAI-3S +P-ASM +A-APN +V-PAP-NSM +CONJ +T-NSN +N-NSN +P-1GS +ADV-S +V-PAI-3S +CONJ +V-2AAP-NSM +V-2AAS-2S +T-APF +N-APF +P-DSF +CONJ +V-APS-3S +CONJ +V-AAS-3S +CONJ +V-2AAI-3S +PREP +P-GSM +CONJ +V-IAI-3S +P-DSM +N-NSM +A-NSM +CONJ +V-IAI-3P +P-ASM +CONJ +N-NSF +V-PAP-NSF +PREP +N-DSF +N-GSN +A-NUI +N-APN +CONJ +A-APN +V-2AAP-NSF +PREP +A-GPM +N-GPM +CONJ +V-AAP-NSF +T-APN +PREP +P-GSF +A-APN +CONJ +A-ASN-N +V-APP-NSF +CONJ +ADV +PREP +T-ASN +A-ASN +V-2AAP-NSF +V-AAP-NSF +T-APN +PREP +T-GSM +N-GSM +V-2AAP-NSF +PREP +T-DSM +N-DSM +ADV +V-ADI-3S +T-GSN +N-GSN +P-GSM +CONJ +V-IAI-3S +CONJ +COND +V-AMS-1S +COND-K +T-GPN +N-GPN +P-GSM +V-FPI-1S +CONJ +ADV +V-API-3S +T-NSF +N-NSF +T-GSN +N-GSN +P-GSF +CONJ +V-2AAI-3S +T-DSN +N-DSN +CONJ +V-RPI-3S +PREP +T-GSF +N-GSF +CONJ +ADV +T-NSM +N-NSM +V-2AAP-NSM +PREP +F-3DSM +T-ASF +PREP +P-GSM +N-ASF +V-2AAP-ASF +V-2APP-NSM +PREP +T-DSM +N-DSM +V-IAI-3S +I-NSM +V-ADI-3S +P-1GS +T-GPN +N-GPN +CONJ +V-IAI-3P +P-DSM +T-NPM +N-NPM +P-GSM +V-PAI-2S +T-ASM +N-ASM +V-PAP-ASM +P-2AS +CONJ +V-PAI-2S +I-NSM +P-1GS +V-ADI-3S +CONJ +V-IMI-3S +V-2AAN +T-ASF +D-ASN +V-AAP-ASF +CONJ +T-NSF +N-NSF +V-AOP-NSF +CONJ +V-PAP-NSF +V-RAP-NSF +R-NSN +V-2RAI-3S +P-DSF +V-2AAI-3S +CONJ +V-2AAI-3S +P-DSM +CONJ +V-2AAI-3S +P-DSM +A-ASF +T-ASF +N-ASF +CONJ +T-NSM +V-2AAI-3S +P-DSF +N-VSF +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +V-PAM-2S +PREP +N-ASF +CONJ +V-PAM-2S +A-NSF +PREP +T-GSF +N-GSF +P-2GS +ADV +P-GSM +V-PAP-GSM +V-PNI-3P +PREP +T-GSM +N-GSM +V-PAP-NPM +CONJ +T-NSF +N-NSF +P-2GS +V-2AAI-3S +I-ASN +ADV +V-PAI-2S +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-ASM +N-ASM +V-PPP-ASM +V-PAI-3S +T-DSM +N-DSM +PRT-N +V-PNM-2S +ADV +V-PAM-2S +CONJ +PRT-N +V-AAI-3S +A-ASM-N +PREP +P-GSM +V-AAN +COND +PRT-N +T-ASM +N-ASM +CONJ +N-ASM +CONJ +N-ASM +T-ASM +N-ASM +N-GSM +CONJ +V-PNI-3P +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-PAI-3S +N-ASM +CONJ +V-PAP-APM +CONJ +V-PAP-APM +A-APN +CONJ +V-2AAP-NSM +V-PAI-3S +P-DPM +I-ASN +V-PPI-2P +CONJ +V-PAI-2P +T-NSN +N-NSN +PRT-N +V-2AAI-3S +CONJ +V-PAI-3S +CONJ +V-IAI-3P +P-GSM +CONJ +P-NSM +V-2AAP-NSM +A-APM +V-PAI-3S +T-ASM +N-ASM +T-GSN +N-GSN +CONJ +T-ASF +N-ASF +CONJ +T-APM +PREP +P-GSM +CONJ +V-PNI-3S +ADV +V-IAI-3S +T-NSN +N-NSN +CONJ +V-AAP-NSM +T-GSF +N-GSF +T-GSN +N-GSN +V-PAI-3S +P-DSF +ARAM +ARAM +R-NSN +V-PAI-3S +V-PPP-NSN +T-NSN +N-NSN +P-2DS +V-PAI-1S +V-PAM-2S +CONJ +ADV +V-2AAI-3S +T-NSN +N-NSN +CONJ +V-IAI-3S +CONJ +V-IAI-3S +N-GPN +A-NUI +CONJ +V-2AAI-3P +ADV +N-DSF +A-DSF +CONJ +V-AMI-3S +P-DPM +A-APN +CONJ +A-NSM-N +V-2AAS-3S +D-ASN +CONJ +V-2AAI-3S +V-APN +P-DSF +V-2AAN +CONJ +V-2AAI-3S +ADV +CONJ +V-PNI-3S +PREP +T-ASF +N-ASF +P-GSM +CONJ +V-PAI-3P +P-DSM +T-NPM +N-NPM +P-GSM +CONJ +V-2ADP-GSN +N-GSN +V-ADI-3S +V-PAN +PREP +T-DSF +N-DSF +CONJ +T-NPM +A-NPM +V-PAP-NPM +V-IPI-3P +V-PAP-NPM +ADV-I +D-DSM +D-NPN +CONJ +I-NSF +T-NSF +N-NSF +T-NSF +V-APP-NSF +D-DSM +CONJ +T-NPF +N-NPF +D-NPF +PREP +T-GPF +N-GPF +P-GSM +V-PNP-NPF +PRT-N +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +N-NSM +T-GSF +N-GSF +CONJ +N-NSM +N-GSM +CONJ +N-GSM +CONJ +N-GSM +CONJ +N-GSM +CONJ +PRT-N +V-PAI-3P +T-NPF +N-NPF +P-GSM +ADV +PREP +P-1AP +CONJ +V-IPI-3P +PREP +P-DSM +CONJ +V-IAI-3S +P-DPM +T-NSM +N-NSM +CONJ +PRT-N +V-PAI-3S +N-NSM +A-NSM +COND +PRT-N +PREP +T-DSF +N-DSF +P-GSM +CONJ +PREP +T-DPM +A-DPM +P-GSM +CONJ +PREP +T-DSF +N-DSF +P-GSM +CONJ +PRT-N +V-INI-3S +ADV +V-AAN +A-ASF-N +N-ASF +COND +PRT-N +A-DPM +A-DPM +V-2AAP-NSM +T-APF +N-APF +V-AAI-3S +CONJ +V-AAI-3S +PREP +T-ASF +N-ASF +P-GPM +CONJ +V-IAI-3S +T-APF +N-APF +N-DSM +V-PAP-NSM +CONJ +V-PNI-3S +T-APM +A-NUI +CONJ +V-ADI-3S +P-APM +V-PAN +A-NUI +A-NUI +CONJ +V-IAI-3S +P-DPM +N-ASF +T-GPN +N-GPN +T-GPN +A-GPN +CONJ +V-AAI-3S +P-DPM +CONJ +A-ASN-N +V-PAS-3P +PREP +N-ASF +COND +PRT-N +N-ASF +ADV +PRT-N +N-ASM +PRT-N +N-ASF +PRT-N +PREP +T-ASF +N-ASF +N-ASM +CONJ +V-RPP-APM +N-APN +CONJ +PRT-N +V-AMS-2P +A-NUI +N-APM +CONJ +V-IAI-3S +P-DPM +COND +ADV +V-2AAS-2P +PREP +N-ASF +ADV +V-PAM-2P +ADV +PRT +V-2AAS-2P +ADV +CONJ +PRT +R-NSM +N-NSM +PRT-N +V-ADS-3S +P-2AP +CONJ-N +V-AAS-3P +P-2GP +V-PNP-NPM +ADV +V-AAM-2P +T-ASM +N-ASM +T-ASM +ADV +T-GPM +N-GPM +P-2GP +PREP +N-ASN +P-DPM +CONJ +V-2AAP-NPM +V-AAI-3P +CONJ +V-PAS-3P +CONJ +N-APN +A-APN +V-IAI-3P +CONJ +V-IAI-3P +N-DSN +A-APM +A-APM +CONJ +V-IAI-3P +CONJ +V-AAI-3S +T-NSM +N-NSM +N-NSM +CONJ +A-NSN +V-2ADI-3S +T-NSN +N-NSN +P-GSM +CONJ +V-IAI-3P +CONJ +N-NSM +T-NSM +V-PAP-NSM +V-RPI-3S +PREP +A-GPM +CONJ +PREP +D-ASN +V-PAI-3P +T-NPF +N-NPF +PREP +P-DSM +CONJ +A-NPM +V-IAI-3P +CONJ +N-NSM +V-PAI-3S +CONJ +A-NPM +V-IAI-3P +CONJ +N-NSM +ADV +A-NSM +T-GPM +N-GPM +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-IAI-3S +R-ASM +P-1NS +V-AAI-1S +N-ASM +D-NSM +V-API-3S +CONJ +P-NSM +T-NSM +N-NSM +V-AAP-NSM +V-AAI-3S +T-ASM +N-ASM +CONJ +V-AAI-3S +P-ASM +PREP +N-DSF +PREP +N-ASF +T-ASF +N-ASF +N-GSM +T-GSM +N-GSM +P-GSM +CONJ +P-ASF +V-AAI-3S +CONJ +V-IAI-3S +T-NSM +N-NSM +T-DSM +N-DSM +CONJ +PRT-N +V-PAI-3S +P-2DS +V-PAN +T-ASF +N-ASF +T-GSM +N-GSM +P-2GS +CONJ +T-NSF +N-NSF +V-IAI-3S +P-DSM +CONJ +V-IAI-3S +P-ASM +V-AAN +CONJ +PRT-N +V-INI-3S-ATT +CONJ +T-NSM +N-NSM +V-INI-3S +T-ASM +N-ASM +V-RAP-NSM +P-ASM +N-ASM +A-ASM +CONJ +A-ASM +CONJ +V-IAI-3S +P-ASM +CONJ +V-AAP-NSM +P-GSM +A-APN +V-IAI-3S +CONJ +ADV +P-GSM +V-IAI-3S +CONJ +V-2ADP-GSF +N-GSF +A-GSF +ADV +N-NSM +T-DPN +N-DPN +P-GSM +N-ASN +V-AAI-3S +T-DPM +N-DPM-S +P-GSM +CONJ +T-DPM +N-DPM +CONJ +T-DPM +A-DPM-S +T-GSF +N-GSF +CONJ +V-2AAP-GSF +T-GSF +N-GSF +P-GSF +T-GSF +N-GSF +CONJ +V-ADP-GSF +V-AAI-3S +T-DSM +N-DSM +CONJ +T-DPM +V-PNP-DPM +CONJ +T-NSM +N-NSM +V-2AAI-3S +T-DSN +N-DSN +V-AAM-2S +P-1AS +COND +R-ASN +V-PAS-2S +CONJ +V-FAI-1S +P-2DS +CONJ +V-AAI-3S +P-DSF +CONJ +COND +P-1AS +V-AAS-2S +V-FAI-1S +P-2DS +ADV +A-GSN +T-GSF +N-GSF +P-1GS +CONJ +V-2AAP-NSF +V-2AAI-3S +T-DSF +N-DSF +P-GSF +I-ASN +V-AMS-1S +CONJ +T-NSF +V-2AAI-3S +T-ASF +N-ASF +N-GSM +T-GSM +V-PAP-GSM +CONJ +V-2AAP-NSF +ADV +PREP +N-GSF +PREP +T-ASM +N-ASM +V-AMI-3S +V-PAP-NSF +V-PAI-1S +CONJ +ADV +V-2AAS-2S +P-1DS +PREP +N-DSM +T-ASF +N-ASF +N-GSM +T-GSM +N-GSM +CONJ +A-NSM +V-2ADP-NSM +T-NSM +N-NSM +PREP +T-APM +N-APM +CONJ +T-APM +V-PNP-APM +PRT-N +V-AAI-3S +V-AAN +P-ASF +CONJ +ADV +V-AAP-NSM +N-ASM +T-NSM +N-NSM +V-AAI-3S +V-2AAN +T-ASF +N-ASF +P-GSM +CONJ +V-2AAP-NSM +V-AAI-3S +P-ASM +PREP +T-DSF +N-DSF +CONJ +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +N-DSM +CONJ +V-AAI-3S +P-ASF +T-DSN +N-DSN +CONJ +T-NSN +N-NSN +V-AAI-3S +P-ASF +T-DSF +N-DSF +P-GSF +CONJ +V-AAP-NPM +T-NPM +N-NPM +P-GSM +V-2AAI-3P +CONJ +V-AAI-3P +T-ASN +N-ASN +P-GSM +CONJ +V-AAI-3P +P-ASN +PREP +N-DSN +CONJ +V-PPI-3P +T-NPM +N-NPM +PREP +T-ASM +N-ASM +CONJ +V-AAI-3P +P-DSM +A-APN +K-APN +V-AAI-3P +CONJ +K-APN +V-AAI-3P +CONJ +V-PAI-3S +P-DPM +V-PAM-2P +P-2NP +P-NPM +PREP +A-ASF +PREP +A-ASM +N-ASM +CONJ +V-AMM-2P +ADV +CONJ +V-IAI-3P +T-NPM +V-PNP-NPM +CONJ +T-NPM +V-PAP-NPM +A-NPM +CONJ +CONJ-N +V-2AAN +V-IAI-3P +CONJ +V-2AAI-3P +PREP +T-DSN +N-DSN +PREP +A-ASM +N-ASM +PREP +A-ASF +CONJ +V-2AAI-3P +P-APM +V-PAP-APM +CONJ +V-2AAI-3P +A-NPM +CONJ +ADV +PREP +A-GPF +T-GPF +N-GPF +V-2AAI-3P +ADV +CONJ +V-2AAI-3P +P-APM +CONJ +V-2AAP-NSM +V-2AAI-3S +A-ASM +N-ASM +CONJ +V-AOI-3S +PREP +P-APM +CONJ +V-IAI-3P +ADV +N-NPN +PRT-N +V-PAP-NPN +N-ASM +CONJ +V-ADI-3S +V-PAN +P-APM +A-APN +CONJ +ADV +N-GSF +A-GSF +V-2ADP-GSF +V-2AAP-NPM +P-DSM +T-NPM +N-NPM +P-GSM +V-IAI-3P +CONJ +A-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +ADV +N-NSF +A-NSF +V-AAM-2S +P-APM +CONJ +V-2AAP-NPM +PREP +T-APM +N-DSM +N-APM +CONJ +N-APF +V-AAS-3P +F-3DPM +I-ASN +V-2AAS-3P +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-DPM +V-2AAM-2P +P-DPM +P-2NP +V-2AAN +CONJ +V-PAI-3P +P-DSM +V-2AAP-NPM +V-AAS-1P +N-GPN +A-GPN +N-APM +CONJ +V-FAI-1P +P-DPM +V-2AAN +CONJ +T-NSM +V-PAI-3S +P-DPM +Q-APM +N-APM +V-PAI-2P +V-PAM-2P +V-2AAM-2P +CONJ +V-2AAP-NPM +V-PAI-3P +A-NUI +CONJ +A-NUI +N-APM +CONJ +V-AAI-3S +P-DPM +V-APN +A-APM +N-APN +N-APN +PREP +T-DSM +A-DSM +N-DSM +CONJ +V-2AAI-3P +N-NPF +N-NPF +PREP +A-NUI +CONJ +PREP +A-NUI +CONJ +V-2AAP-NSM +T-APM +A-NUI +N-APM +CONJ +T-APM +A-NUI +N-APM +V-AAP-NSM +PREP +T-ASM +N-ASM +V-AAI-3S +CONJ +V-AAI-3S +T-APM +N-APM +CONJ +V-IAI-3S +T-DPM +N-DPM +CONJ +V-PAS-3P +P-DPM +CONJ +T-APM +A-NUI +N-APM +V-AAI-3S +A-DPM +CONJ +V-2AAI-3P +A-NPM +CONJ +V-API-3P +CONJ +V-AAI-3P +N-APN +A-NUI +N-GPM +N-APN +CONJ +PREP +T-GPM +N-GPM +CONJ +V-IAI-3P +T-NPM +V-2AAP-NPM +T-APM +N-APM +A-NPM +N-NPM +CONJ +ADV +V-AAI-3S +T-APM +N-APM +P-GSM +V-2AAN +PREP +T-ASN +N-ASN +CONJ +V-PAN +PREP +T-ASN +ADV +PREP +N-PRI +ADV +P-NSM +V-PAI-3S +T-ASM +N-ASM +CONJ +V-AMP-NSM +P-DPM +V-2AAI-3S +PREP +T-ASN +N-ASN +V-ADN +CONJ +A-GSF +V-2ADP-GSF +V-IAI-3S +T-NSN +N-NSN +PREP +A-DSN +T-GSF +N-GSF +CONJ +P-NSM +A-NSM +PREP +T-GSF +N-GSF +CONJ +V-2AAP-NSM +P-APM +V-PPP-APM +PREP +T-DSN +V-PAN +CONJ +V-IAI-3S +T-NSM +N-NSM +A-NSM +P-DPM +PREP +A-ASF +N-ASF +T-GSF +N-GSF +V-PNI-3S +PREP +P-APM +V-PAP-NSM +PREP +T-GSF +N-GSF +CONJ +V-IAI-3S +V-2AAN +P-APM +CONJ +T-NPM +V-2AAP-NPM +P-ASM +PREP +T-GSF +N-GSF +V-PAP-ASM +V-AAI-3P +CONJ +N-NSN +V-PAI-3S +CONJ +V-AAI-3P +CONJ +A-NPM +P-ASM +V-2AAI-3P +CONJ +V-API-3P +CONJ +T-NSM +ADV +V-AAI-3S +PREP +P-GPM +CONJ +V-PAI-3S +P-DPM +V-PAM-2P +P-1NS +V-PAI-1S +PRT-N +V-PNM-2P +CONJ +V-2AAI-3S +PREP +P-APM +PREP +T-ASN +N-ASN +CONJ +V-AAI-3S +T-NSM +N-NSM +CONJ +ADV +PREP +ADV +PREP +F-3DPM +V-IMI-3P +CONJ +PRT-N +V-AAI-3P +PREP +T-DPM +N-DPM +CONJ +V-IAI-3S +V-RPP-NSF +P-GPM +T-NSF +N-NSF +CONJ +V-AAP-NPM +PREP +T-ASF +N-ASF +V-2AAI-3P +PREP +N-PRI +CONJ +V-API-3P +CONJ +V-2AAP-GPM +P-GPM +PREP +T-GSN +N-GSN +ADV +V-2AAP-NPM +P-ASM +V-AAI-3P +A-ASF +T-ASF +N-ASF +D-ASF +CONJ +V-ADI-3P +PREP +T-DPM +N-DPM +T-APM +ADV +V-PAP-APM +V-PAN +ADV +V-IAI-3P +CONJ +V-PAI-3S +CONJ +PRT +ADV +V-INI-3S +PREP +N-APF +PRT +PREP +N-APF +PRT +PREP +N-APM +PREP +T-DPF +N-DPF +V-IAI-3P +T-APM +V-PAP-APM +CONJ +V-IAI-3P +P-ASM +CONJ +COND-K +T-GSN +N-GSN +T-GSN +N-GSN +P-GSM +V-AMS-3P +CONJ +PRT +K-NPM +V-ADI-3P +P-GSM +V-IPI-3P +CONJ +V-PPI-3P +PREP +P-ASM +T-NPM +N-NPM +CONJ +X-NPM +T-GPM +N-GPM +V-2AAP-NPM +PREP +N-GPN +CONJ +V-2AAP-NPM +X-APM +T-GPM +N-GPM +P-GSM +CONJ +A-DPF +N-DPF +D-NSN +V-PAI-3S +A-DPF +V-PAI-3P +T-APM +N-APM +CONJ +T-NPM +N-NPM +CONJ +A-NPM +T-NPM +A-NPM +COND +PRT-N +N-DSF +V-AMS-3P +T-APF +N-APF +PRT-N +V-PAI-3P +V-PAP-NPM +T-ASF +N-ASF +T-GPM +A-GPM-C +CONJ +PREP +N-GSF +COND +PRT-N +V-AMS-3P +PRT-N +V-PAI-3P +CONJ +A-NPN +A-NPN +V-PAI-3S +R-APN +V-2AAI-3P +V-PAN +N-APM +N-GPN +CONJ +N-GPM +CONJ +N-GPN +CONJ +V-PAI-3P +P-ASM +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +PREP +I-ASN +PRT-N +V-PAI-3P +T-NPM +N-NPM +P-2GS +PREP +T-ASF +N-ASF +T-GPM +A-GPM-C +CONJ +A-DPF +N-DPF +V-PAI-3P +T-ASM +N-ASM +CONJ +T-NSM +V-2AAI-3S +P-DPM +ADV +V-AAI-3S +N-NSM +PREP +P-2GP +T-GPM +N-GPM +ADV +V-RPI-3S +CONJ +D-NSM +T-NSM +N-NSM +T-DPN +N-DPN +P-1AS +V-PAI-3S +CONJ +T-NSF +N-NSF +P-GPM +ADV +V-PAI-3S +PREP +P-1GS +CONJ +ADV +V-PNI-3P +P-1AS +V-PAP-NPM +N-APF +N-APN +N-GPM +V-2AAP-NPM +T-ASF +N-ASF +T-GSM +N-GSM +V-PAI-2P +T-ASF +N-ASF +T-GPM +N-GPM +CONJ +V-IAI-3S +P-DPM +ADV +V-PAI-2P +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +T-ASF +N-ASF +P-2GP +V-AAS-2P +CONJ +N-NSM +V-2AAI-3S +V-PAM-2S +T-ASM +N-ASM +P-2GS +CONJ +T-ASF +N-ASF +P-2GS +CONJ +T-NSM +V-PAP-NSM +N-ASM +PRT +N-ASF +N-DSM +V-PAM-3S +CONJ +P-2NP +V-PAI-2P +COND +V-2AAS-3S +N-NSM +T-DSM +N-DSM +PRT +T-DSF +N-DSF +HEB +R-NSN +V-PAI-3S +N-NSN +COND +R-ASN +PREP +P-1GS +V-APS-2S +ADV-N +V-PAI-2P +P-ASM +A-ASN-N +V-AAN +T-DSM +N-DSM +PRT +T-DSF +N-DSF +V-PAP-NPM +T-ASM +N-ASM +T-GSM +N-GSM +T-DSF +N-DSF +P-2GP +R-DSF +V-AAI-2P +CONJ +A-APN +D-APN +A-APN +V-PAI-2P +CONJ +V-ADP-NSM +ADV +T-ASM +N-ASM +V-IAI-3S +P-DPM +V-AAM-2P +P-1GS +A-NPM +CONJ +V-2AAM-2P +A-NSN-N +V-PAI-3S +ADV +T-GSM +N-GSM +V-PNP-NSN +PREP +P-ASM +R-NSN +V-PNI-3S +V-AAN +P-ASM +CONJ +T-NPN +PREP +T-GSM +N-GSM +V-PNP-NPN +V-PAI-3S +T-NPN +V-PAP-NPN +T-ASM +N-ASM +CONJ +ADV +V-2AAI-3S +PREP +N-ASM +PREP +T-GSM +N-GSM +V-IAI-3P +P-ASM +T-NPM +N-NPM +P-GSM +T-ASF +N-ASF +CONJ +V-PAI-3S +P-DPM +ADV +CONJ +P-2NP +A-NPM +V-PAI-2P +PRT-N +V-PAI-2P +CONJ +A-NSN +T-NSN +ADV +V-PNP-NSN +PREP +T-ASM +N-ASM +PRT-N +V-PNI-3S +P-ASM +V-AAN +CONJ +PRT-N +V-PNI-3S +PREP +P-GSM +T-ASF +N-ASF +CONJ +PREP +T-ASF +N-ASF +CONJ +PREP +T-ASM +N-ASM +V-PNI-3S +V-PAP-NSM +A-APN +T-APN +N-APN +CONJ +V-IAI-3S +CONJ +T-NSN +PREP +T-GSM +N-GSM +V-PNP-NSN +D-NSN +V-PAI-3S +T-ASM +N-ASM +CONJ +ADV +PREP +T-GSF +N-GSF +T-GPM +N-GPM +T-NPM +N-NPM +T-NPM +A-NPM +V-PNI-3P +N-NPF +N-NPF +N-NPM +N-NPF +N-NPF +N-NPF +N-NSM +N-NSF +N-NSM +A-NSM +N-NSF +N-NSF +N-NSF +A-NPN +D-NPN +T-NPN +A-NPN +ADV +V-PNI-3S +CONJ +V-PAI-3S +T-ASM +N-ASM +CONJ +ADV +V-2AAP-NSM +V-2AAI-3S +PREP +T-APN +N-APN +N-GSF +CONJ +V-2AAP-NSM +PREP +N-ASF +A-ASM-N +V-2AAN +V-IAI-3S +CONJ +PRT-N +V-AOI-3S-ATT +V-2AAN +CONJ +ADV +V-AAP-NSF +PREP +P-GSM +N-NSF +R-GSF +T-NSN +N-NSN +P-GSF +V-IAI-3S +N-ASN +A-ASN +V-2AAP-NSF +V-2AAI-3S +PREP +T-APM +N-APM +P-GSM +CONJ +T-NSF +N-NSF +V-IAI-3S +N-NSF +N-NSF +T-DSN +N-DSN +CONJ +V-IAI-3S +P-ASM +CONJ +T-ASN +N-ASN +V-2AAS-3S +PREP +T-GSF +N-GSF +P-GSF +CONJ +V-IAI-3S +P-DSF +V-2AAM-2S +ADV-S +V-APN +T-APN +N-APN +CONJ +PRT-N +V-PAI-3S +A-NSN +V-2AAN +T-ASM +N-ASM +T-GPN +N-GPN +CONJ +T-DPN +N-DPN +V-2AAN +CONJ +T-NSF +V-ADI-3S +CONJ +V-PAI-3S +P-DSM +PRT +N-VSM +CONJ +T-NPN +N-NPN +ADV +T-GSF +N-GSF +V-PAI-3P +PREP +T-GPN +N-GPN +T-GPN +N-GPN +CONJ +V-2AAI-3S +P-DSF +PREP +D-ASM +T-ASM +N-ASM +V-PAM-2S +V-2RAI-3S +PREP +T-GSF +N-GSF +P-2GS +T-NSN +N-NSN +CONJ +V-2AAP-NSF +PREP +T-ASM +N-ASM +P-GSF +V-2AAI-3S +T-ASN +N-ASN +V-RPP-ASN +PREP +T-ASF +N-ASF +CONJ +T-ASN +N-ASN +V-2RAP-ASN +CONJ +ADV +V-2AAP-NSM +PREP +T-GPN +N-GPN +N-GSF +V-2AAI-3S +PREP +N-GSF +PREP +T-ASF +N-ASF +T-GSF +N-GSF +PREP +A-ASN +T-GPN +N-GPN +N-GSF +CONJ +V-PAI-3P +P-DSM +A-ASM +CONJ +A-ASM +CONJ +V-PAI-3P +P-ASM +CONJ +V-2AAS-3S +P-DSM +T-ASF +N-ASF +CONJ +V-2AMP-NSM +P-ASM +PREP +T-GSM +N-GSM +PREP +A-ASF +V-2AAI-3S +T-APM +N-APM +P-GSM +PREP +T-APN +N-APN +P-GSM +CONJ +V-AAP-NSM +V-ADI-3S +T-GSF +N-GSF +P-GSM +CONJ +V-AAP-NSM +PREP +T-ASM +N-ASM +V-AAI-3S +CONJ +V-PAI-3S +P-DSM +ARAM +R-NSN +V-PAI-3S +V-APM-2S +CONJ +V-2API-3P +P-GSM +T-NPF +N-NPF +CONJ +ADV +V-API-3S +T-NSM +N-NSM +T-GSF +N-GSF +P-GSM +CONJ +V-IAI-3S +ADV +CONJ +V-AMI-3S +P-DPM +CONJ +A-DSM-N +V-PAS-3P +CONJ +K-ASN +P-DPM +V-IMI-3S +P-NPM +ADV +A-ASN-C +V-IAI-3P +CONJ +ADV +V-IPI-3P +V-PAP-NPM +ADV +A-APN +V-RAI-3S +CONJ +V-PAI-3S +T-APM +A-APM +V-PAN +CONJ +A-APM +V-PAN +PREP +D-DPF +T-DPF +N-DPF +ADV +A-GSM +N-GSM +V-PAP-GSM +CONJ +PRT-N +V-PAP-GPM +I-ASN +V-2AAS-3P +V-ADP-NSM +T-APM +N-APM +V-PAI-3S +P-DPM +V-PNI-1S +PREP +T-ASM +N-ASM +CONJ +ADV +N-NPF +A-NPF +V-PAI-3P +P-1DS +CONJ +PRT-N +V-PAI-3P +I-ASN +V-2AAS-3P +CONJ +COND +V-AAS-1S +P-APM +A-APM +PREP +N-ASM +P-GPM +V-FPI-3P +PREP +T-DSF +N-DSF +CONJ +X-NPM +P-GPM +PREP +ADV +V-PAI-3P +CONJ +V-ADI-3P +P-DSM +T-NPM +N-NPM +P-GSM +CONJ +ADV-I +V-FDI-3S +X-NSM +D-APM +ADV +V-AAN +N-GPM +PREP +N-GSF +CONJ +V-IAI-3S +P-APM +Q-APM +N-APM +V-PAI-2P +CONJ +T-NPM +V-2AAI-3P +A-NUI +CONJ +V-PAI-3S +T-DSM +N-DSM +V-2AAN +PREP +T-GSF +N-GSF +CONJ +V-2AAP-NSM +T-APM +A-NUI +N-APM +V-AAP-NSM +V-AAI-3S +CONJ +V-IAI-3S +T-DPM +N-DPM +P-GSM +CONJ +V-PAS-3P +CONJ +V-AAI-3P +T-DSM +N-DSM +CONJ +V-IAI-3P +N-APN +A-APN +CONJ +V-AAP-NSM +P-APN +V-2AAI-3S +CONJ +D-APN +V-PAN +CONJ +V-2AAI-3P +CONJ +V-API-3P +CONJ +V-AAI-3P +N-APN +N-GPN +A-NUI +N-APF +CONJ +V-IAI-3P +ADV +A-NPM +CONJ +V-AAI-3S +P-APM +CONJ +ADV +V-2AAP-NSM +PREP +T-ASN +N-ASN +PREP +T-GPM +N-GPM +P-GSM +V-2AAI-3S +PREP +T-APN +N-APN +N-PRI +CONJ +V-2AAI-3P +T-NPM +N-NPM +CONJ +V-ADI-3P +V-PAN +P-DSM +V-PAP-NPM +PREP +P-GSM +N-ASN +PREP +T-GSM +N-GSM +V-PAP-NPM +P-ASM +CONJ +V-AAP-NSM +T-DSN +N-DSN +P-GSM +V-PAI-3S +I-ASN +T-NSF +N-NSF +D-NSF +V-PAI-3S +N-ASN +HEB +V-PAI-1S +P-2DP +COND +V-FPI-3S +T-DSF +N-DSF +D-DSF +N-ASN +CONJ +V-2AAP-NSM +P-APM +ADV +V-2AAP-NSM +V-2AAI-3S +PREP +T-ASN +ADV +CONJ +V-2ADI-3P +V-2AAN +N-APM +CONJ +COND +PRT-N +A-ASM +N-ASM +PRT-N +V-IAI-3P +PREP +F-3GPM +PREP +T-DSN +N-DSN +CONJ +V-IMI-3S +P-DPM +V-PAP-NSM +V-PAM-2P +V-PAM-2P +PREP +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +T-GSF +N-GSF +N-GSM +CONJ +V-INI-3P +PREP +C-APM +CONJ +N-APM +PRT-N +V-PAI-3P +CONJ +V-2AAP-NSM +V-PAI-3S +P-DPM +I-ASN +V-PNI-2P +CONJ +N-APM +PRT-N +V-PAI-2P +ADV-N +V-PAI-2P +CONJ-N +V-PAI-2P +V-RPP-ASF +V-PAI-2P +T-ASF +N-ASF +P-2GP +N-APM +V-PAP-NPM +PRT-N +V-PAI-2P +CONJ +N-APN +V-PAP-NPM +PRT-N +V-PAI-2P +CONJ +PRT-N +V-PAI-2P +ADV +T-APM +A-NUI +N-APM +V-AAI-1S +PREP +T-APM +A-APM +Q-APM +N-APM +N-GPN +A-APM +V-AAI-2P +V-PAI-3P +P-DSM +A-NUI +ADV +T-APM +A-NUI +PREP +T-APM +A-APM +Q-GPN +N-GPF +N-APN +N-GPN +V-AAI-2P +CONJ +V-PAI-3P +A-NUI +CONJ +V-IAI-3S +P-DPM +ADV-N +V-PAI-2P +CONJ +V-PNI-3P +PREP +N-PRI +CONJ +V-PAI-3P +P-DSM +A-ASM +CONJ +V-PAI-3P +P-ASM +CONJ +P-GSM +V-AMS-3S +CONJ +V-2ADP-NSM +T-GSF +N-GSF +T-GSM +A-GSM +V-AAI-3S +P-ASM +ADV +T-GSF +N-GSF +CONJ +V-AAP-NSM +PREP +T-APN +N-APN +P-GSM +V-2AAP-NSM +T-APF +N-APF +P-DSM +V-IAI-3S +P-ASM +COND +X-ASN +V-PAI-2S +CONJ +V-AAP-NSM +V-IAI-3S +V-PAI-1S +T-APM +N-APM +CONJ +ADV +N-APN +V-PAP-APM +V-PAI-1S +ADV +ADV +V-AAI-3S +T-APF +N-APF +PREP +T-APM +N-APM +P-GSM +CONJ +V-AAI-3S +CONJ +V-2AAI-3S +CONJ +V-IAI-3S +ADV +A-APN +CONJ +V-AAI-3S +P-ASM +PREP +N-ASM +P-GSM +V-PAP-NSM +CONJ-N +PREP +T-ASF +N-ASF +V-2AAS-2S +CONJ +V-2AAI-3S +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +P-GSM +PREP +T-APF +N-APF +N-GSF +T-GSF +N-GSM +CONJ +PREP +T-DSF +N-DSF +V-IAI-3S +T-APM +N-APM +P-GSM +V-PAP-NSM +P-DPM +I-ASM +P-1AS +V-PAN +V-PAI-3P +T-NPM +N-NPM +CONJ +T-NPM +V-2AAI-3P +P-DSM +V-PAP-NPM +CONJ +N-ASM +T-ASM +N-ASM +CONJ +A-NPM +N-ASM +CONJ +A-NPM +CONJ +A-NSM +T-GPM +N-GPM +CONJ +P-NSM +V-IAI-3S +P-APM +CONJ +P-2NP +I-ASM +P-1AS +V-PAN +V-PAI-2P +V-AOP-NSM +T-NSM +N-NSM +V-PAI-3S +P-DSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +CONJ +V-AAI-3S +P-DPM +CONJ +A-DSM-N +V-PAS-3P +PREP +P-GSM +CONJ +V-ADI-3S +V-PAN +P-APM +CONJ +V-PAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +A-APN +V-2AAN +CONJ +V-APN +PREP +T-GPM +A-GPM-C +CONJ +T-GPM +N-GPM +CONJ +T-GPM +N-GPM +CONJ +V-APN +CONJ +PREP +A-APF +N-APF +V-2AAN +CONJ +N-DSF +T-ASM +N-ASM +V-IAI-3S +CONJ +T-NSM +N-NSM +V-2AMP-NSM +P-ASM +V-ADI-3S +V-PAN +P-DSM +CONJ +T-NSM +V-2APP-NSM +CONJ +V-2AAP-NSM +T-APM +N-APM +P-GSM +V-AAI-3S +N-DSM +CONJ +V-PAI-3S +V-PAM-2S +ADV +P-1GS +N-VSM +CONJ +PRT-N +V-PAI-2S +T-APN +T-GSM +N-GSM +CONJ +T-APN +T-GPM +N-GPM +CONJ +V-ADP-NSM +T-ASM +N-ASM +PREP +T-DPM +N-DPM +P-GSM +V-2AAI-3S +P-DPM +COND +X-NSM +V-PAI-3S +ADV +P-1GS +V-2AAN +V-ADM-3S +F-3ASM +CONJ +V-AAM-3S +T-ASM +N-ASM +P-GSM +CONJ +V-PAM-3S +P-1DS +CONJ +COND +R-NSM +V-PAS-3S +T-ASF +N-ASF +P-GSM +V-AAN +V-FAI-3S +P-ASF +CONJ +PRT +R-NSM +V-FAI-3S +T-ASF +N-ASF +P-GSM +PREP +P-1GS +CONJ +T-GSN +N-GSN +V-FAI-3S +P-ASF +CONJ +I-NSN +V-PAI-3S +N-ASM +V-AAN +T-ASM +N-ASM +A-ASM +CONJ +V-APN +T-ASF +N-ASF +P-GSM +CONJ +I-ASN +V-2AAS-3S +N-NSM +N-ASN +T-GSF +N-GSF +P-GSM +CONJ +COND +R-NSM +V-AOS-3S +P-1AS +CONJ +T-APM +S-1SAPM +N-APM +PREP +T-DSF +N-DSF +D-DSF +T-DSF +N-DSF +CONJ +A-DSF +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-FOI-3S +P-ASM +CONJ +V-2AAS-3S +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-GSM +PREP +T-GPM +N-GPM +T-GPM +A-GPM +CONJ +V-IAI-3S +P-DPM +HEB +V-PAI-1S +P-2DP +CONJ +V-PAI-3P +X-NPM +T-GPM +ADV +V-RAP-GPM +R-NPM +PRT-N +PRT-N +V-ADS-3P +N-GSM +ADV +PRT +V-2AAS-3P +T-ASF +N-ASF +T-GSM +N-GSM +V-2RAP-ASF +PREP +N-DSF +CONJ +PREP +N-APF +A-NUI +V-PAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +CONJ +N-ASM +CONJ +V-PAI-3S +P-APM +PREP +N-ASN +A-ASN +PREP +A-ASF +A-APM +CONJ +V-API-3S +PREP +P-GPM +CONJ +T-NPN +N-NPN +P-GSM +V-2ADI-3S +V-PAP-NPN +A-NPN +ADV +R-APN +N-NSM +PREP +T-GSF +N-GSF +PRT-N +V-PNI-3S +ADV +V-AAN +CONJ +V-API-3S +P-DPM +N-NSM +PREP +N-DSM +CONJ +V-IAI-3P +V-PAP-NPM +T-DSM +N-DSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-PAI-3S +T-DSM +N-DSM +HEB +A-NSN +V-PAI-3S +P-1AP +ADV +V-PAN +CONJ +V-AAS-1P +A-APF +N-APF +P-2DS +A-ASF +CONJ +N-DSM +A-ASF +CONJ +N-DSM +A-ASF +CONJ +PRT-N +V-2LAI-3S +I-ASN +V-AOS-3S +CONJ +A-NPM +V-2ADI-3P +CONJ +V-2ADI-3S +N-NSF +V-PAP-NSF +P-DPM +CONJ +V-2ADI-3S +N-NSF +PREP +T-GSF +N-GSF +D-NSM +V-PAI-3S +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +V-PAM-2P +P-GSM +CONJ +ADV +V-AMP-NPM +ADV-N +A-ASM-N +V-2AAI-3P +CONJ +T-ASM +N-ASM +ADV +PREP +F-3GPM +CONJ +V-PAP-GPM +P-GPM +PREP +T-GSN +N-GSN +V-AMI-3S +P-DPM +CONJ +A-DSM-N +R-APN +V-2AAI-3P +V-ADS-3P +COND +PRT-N +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +PREP +A-GPM +V-2AAS-3S +CONJ +T-ASM +N-ASM +V-AAI-3P +PREP +F-3APM +V-PAP-NPM +I-NSN +V-PAI-3S +T-NSN +PREP +A-GPM +V-2AAN +CONJ +V-IAI-3P +P-ASM +V-PAP-NPM +CONJ +V-PAI-3P +T-NPM +N-NPM +CONJ +V-PAI-3S +N-ASM +V-2AAN +ADV-S +CONJ +T-NSM +V-IAI-3S +P-DPM +PRT +N-NSM +V-2AAP-NSM +ADV-S +V-PAI-3S +A-APN +CONJ +ADV-I +V-RPI-3S +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +A-APN +V-2AAS-3S +CONJ +V-APS-3S +CONJ +V-PAI-1S +P-2DP +CONJ +CONJ +N-NSM +V-2RAI-3S +CONJ +V-AAI-3P +P-DSM +K-APN +V-IAI-3P +ADV +V-RPI-3S +PREP +P-ASM +CONJ +V-2AAP-NPM +PREP +T-APM +N-APM +V-2AAI-3P +N-ASM +A-ASM +PREP +P-APM +CONJ +N-APM +V-PAP-APM +PREP +P-APM +CONJ +ADV +A-NSM +T-NSM +N-NSM +V-2AAP-NPM +P-ASM +V-API-3P +CONJ +V-PAP-NPM +V-INI-3P +P-ASM +CONJ +V-AAI-3S +P-APM +I-ASN +V-PAI-2P +PREP +F-3APM +CONJ +V-ADI-3S +P-DSM +A-NSM +PREP +T-GSM +N-GSM +N-VSM +V-AAI-1S +T-ASM +N-ASM +P-1GS +PREP +P-2AS +V-PAP-ASM +N-ASN +A-ASN +CONJ +COND +ADV +P-ASM +V-2AAS-3S +V-PAI-3S +P-ASM +CONJ +V-PAI-3S +CONJ +V-PAI-3S +T-APM +N-APM +CONJ +V-PPI-3S +CONJ +V-2AAI-1S +T-DPM +N-DPM +P-2GS +CONJ +P-ASN +V-2AAS-3P +CONJ +PRT-N +V-AAI-3P +CONJ +T-NSM +V-AOP-NSM +P-DPM +V-PAI-3S +INJ +N-VSF +A-VSF +ADV +PRT-I +PREP +P-2AP +V-FDI-1S +ADV +PRT-I +V-FDI-1S +P-2GP +V-PAM-2P +P-ASM +PREP +P-1AS +CONJ +V-AAI-3P +P-ASM +PREP +P-ASM +CONJ +V-2AAP-NSM +P-ASM +T-NSN +N-NSN +ADV +V-AAI-3S +P-ASM +CONJ +V-2AAP-NSM +PREP +T-GSF +N-GSF +V-IEI-3S +V-PAP-NSM +CONJ +V-AAI-3S +T-ASM +N-ASM +P-GSM +Q-NSM +N-NSM +V-PAI-3S +ADV +D-NSN +V-2RAI-3S +P-DSM +CONJ +T-NSM +V-2AAI-3S +PREP +ADV +CONJ +ADV +CONJ +PREP +N-ASN +P-ASM +V-2AAI-3S +CONJ +PREP +N-APN +CONJ +V-AAS-3S +P-ASM +CONJ +COND +X-ASN +V-PNI-2S +V-AAM-2S +P-1DP +V-AOP-NSM +PREP +P-1AP +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +T-NSN +COND +V-PNI-2S +A-NPN +A-NPN +T-DSM +V-PAP-DSM +ADV +V-AAP-NSM +T-NSM +N-NSM +T-GSN +N-GSN +V-IAI-3S +V-PAI-1S +V-PAM-2S +P-1GS +T-DSF +N-DSF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +CONJ +V-PAI-3S +N-NSM +V-AAI-3S +T-DSN +N-DSN +T-DSN +A-DSN +V-PAP-NSM +P-DSN +T-NSN +A-NSN +CONJ +A-NSN +N-NSN +P-1NS +V-PAI-1S +P-2DS +V-2AAM-2S +PREP +P-GSM +CONJ +ADV-N +V-2AAS-2S +PREP +P-ASM +CONJ +V-AAP-NSM +CONJ +A-NPN +V-AAP-NSM +V-2AAI-3S +CONJ +V-2ADI-3S +ADV +A-NSM +CONJ +T-APM +A-APM +V-PAN +CONJ +V-2AAI-3S +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-GSF +N-GSF +P-GSM +V-AAI-3S +P-ASM +CONJ +V-2AAI-3S +CONJ +V-2AAP-GSM +P-GSM +PREP +N-ASM +T-NPM +N-NPM +P-GSM +PREP +A-ASF +V-IAI-3P +P-ASM +CONJ +P-1NP +PRT-N +V-AOI-1P-ATT +V-2AAN +P-ASN +CONJ +V-2AAI-3S +P-DPM +D-NSN +T-NSN +N-NSN +PREP +A-DSN-N +V-PNI-3S +V-2AAN +COND +PRT-N +PREP +N-DSF +ADV-K +V-2AAP-NPM +V-INI-3P +PREP +T-GSF +N-GSF +CONJ +PRT-N +V-IAI-3S +CONJ +X-NSM +V-2AAS-3S +CONJ +V-IAI-3S +T-APM +N-APM +P-GSM +CONJ +V-IAI-3S +P-DPM +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PPI-3S +PREP +N-APF +N-GPM +CONJ +V-FAI-3P +P-ASM +CONJ +V-APP-NSM +PREP +A-APF +N-APF +V-FMI-3S +CONJ +T-NPM +V-IAI-3P +T-ASN +N-ASN +CONJ +V-INI-3P +P-ASM +V-AAN +CONJ +V-2AAI-3P +PREP +N-PRI +CONJ +PREP +T-DSF +N-DSF +V-2ADP-NSM +V-IAI-3S +P-APM +I-ASN +PREP +T-DSF +N-DSF +V-INI-2P +CONJ +T-NPM +V-IAI-3P +CONJ +PREP +C-APM +V-AOI-3P +PREP +T-DSF +N-DSF +I-NSM +A-NSM-C +CONJ +V-AAP-NSM +V-AAI-3S +T-APM +A-NUI +CONJ +V-PAI-3S +P-DPM +COND +X-NSM +V-PAI-3S +A-NSM-S +V-PAN +V-FDI-3S +A-GPM +A-NSM-S +CONJ +A-GPM +N-NSM +CONJ +V-2AAP-NSM +N-ASN +V-AAI-3S +P-ASN +PREP +A-DSN +P-GPM +CONJ +V-ADP-NSM +P-ASN +V-2AAI-3S +P-DPM +PRT +R-NSM +A-ASN +T-GPN +D-GPN +N-GPN +V-ADS-3S +PREP +T-DSN +N-DSN +P-1GS +P-1AS +V-PNI-3S +CONJ +PRT +R-NSM +P-1AS +V-PNS-3S +PRT-N +P-1AS +V-PNI-3S +CONJ +T-ASM +V-AAP-ASM +P-1AS +V-IAI-3S +P-DSM +T-NSM +N-NSM +N-VSM +V-2AAI-1P +X-ASM +PREP +T-DSN +N-DSN +P-2GS +V-PAP-ASM +N-APN +R-NSM +PRT-N +V-PAI-3S +P-1DP +CONJ +V-IAI-1P +P-ASM +CONJ +PRT-N +V-IAI-3S +P-1DP +CONJ +T-NSM +N-NSM +V-2AAI-3S +PRT-N +V-PAM-2P +P-ASM +CONJ +A-NSM-N +V-PAI-3S +R-NSM +V-FAI-3S +N-ASF +PREP +T-DSN +N-DSN +P-1GS +CONJ +V-FDI-3S +ADV +V-AAN +P-1AS +CONJ +R-NSM +PRT-N +V-PAI-3S +PREP +P-1GP +PREP +P-1GP +V-PAI-3S +CONJ +PRT +R-NSM +V-AAS-3S +P-2AP +N-ASN +N-GSN +PREP +N-DSN +CONJ +N-GSM +V-PAI-2P +HEB +V-PAI-1S +P-2DP +CONJ +PRT-N +PRT-N +V-AAS-3S +T-ASM +N-ASM +P-GSM +CONJ +PRT +R-NSM +V-AAS-3S +A-ASM +T-GPM +A-GPM +D-GPM +T-GPM +V-PAP-GPM +A-NSN +V-PAI-3S +P-DSM +ADV +COND +V-PNI-3S +N-NSM +A-NSM +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-RPI-3S +PREP +T-ASF +N-ASF +CONJ +COND +V-AAS-3S +P-2AS +T-NSF +N-NSF +P-2GS +V-AAM-2S +P-ASF +A-NSN +V-PAI-3S +P-2AS +A-ASM +V-2AAN +PREP +T-ASF +N-ASF +PRT +T-APF +A-NUI +N-APF +V-PAP-ASM +V-2AAN +PREP +T-ASF +N-ASF +PREP +T-ASN +N-ASN +T-ASN +A-ASN +CONJ +COND +T-NSM +N-NSM +P-2GS +V-PAS-3S +P-2AS +V-AAM-2S +P-ASM +A-NSN +V-PAI-3S +P-2AS +V-2AAN +PREP +T-ASF +N-ASF +A-ASM +PRT +T-APM +A-NUI +N-APM +V-PAP-ASM +V-APN +PREP +T-ASF +N-ASF +CONJ +COND +T-NSM +N-NSM +P-2GS +V-PAS-3S +P-2AS +V-2AAM-2S +P-ASM +A-NSN +V-PAI-3S +P-2AS +A-ASM +V-2AAN +PREP +T-ASF +N-ASF +T-GSM +N-GSM +PRT +A-NUI +N-APM +V-PAP-ASM +V-APN +PREP +T-ASF +N-ASF +ADV +T-NSM +N-NSM +P-GPM +PRT-N +V-PAI-3S +CONJ +T-NSN +N-NSN +PRT-N +V-PPI-3S +CONJ +A-NSM +N-DSN +V-FPI-3S +A-NSN +T-NSN +N-NSN +CONJ +COND +T-NSN +N-NSN +A-NSN +V-2ADS-3S +PREP +I-DSN +P-ASN +V-FAI-2P +V-PAM-2P +PREP +F-2DPM +N-ASN +CONJ +V-PAM-2P +PREP +C-DPM +CONJ +ADV +V-2AAP-NSM +V-PNI-3S +PREP +T-APN +N-APN +T-GSF +N-GSF +CONJ +ADV +T-GSM +N-GSM +CONJ +V-PNI-3P +ADV +N-NPM +PREP +P-ASM +CONJ +ADV +V-LAI-3S +ADV +V-IAI-3S +P-APM +CONJ +V-2AAP-NPM +N-NPM +V-IAI-3P +P-ASM +COND +V-PAI-3S +N-DSM +N-ASF +V-AAN +V-PAP-NPM +P-ASM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +P-DPM +I-ASN +P-2DP +V-ADI-3S +N-NSM +CONJ +T-NPM +V-2AAI-3P +V-AAI-3S +N-NSM +N-ASN +N-GSN +V-AAN +CONJ +V-AAN +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +PREP +T-ASF +N-ASF +P-2GP +V-AAI-3S +P-2DP +T-ASF +N-ASF +D-ASF +CONJ +PREP +N-GSF +N-GSF +A-ASN +CONJ +A-ASN +V-AAI-3S +P-APM +PREP +D-GSN +V-FAI-3S +N-NSM +T-ASM +N-ASM +P-GSM +CONJ +T-ASF +N-ASF +CONJ +V-FDI-3P +T-NPM +A-NUI +PREP +N-ASF +A-ASF +CONJ +ADV-N +V-PAI-3P +A-NUI +CONJ +A-NSF +N-NSF +CONJ +R-ASN +T-NSM +N-NSM +V-AAI-3S +N-NSM +PRT-N +V-PAM-3S +CONJ +PREP +T-ASF +N-ASF +ADV +T-NPM +N-NPM +PREP +D-GSN +V-IAI-3P +P-ASM +CONJ +V-PAI-3S +P-DPM +PRT +R-NSM +V-AAS-3S +T-ASF +N-ASF +P-GSM +CONJ +V-AAS-3S +A-ASF +V-PNI-3S +PREP +P-ASF +CONJ +COND +P-NSF +V-AAP-NSF +T-ASM +N-ASM +P-GSF +V-AAS-3S +A-ASM +V-PNI-3S +CONJ +V-IAI-3P +P-DSM +N-APN +CONJ +P-GPM +V-AMS-3S +CONJ +T-NPM +N-NPM +V-AAI-3P +P-DPM +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-AAI-3S +CONJ +V-2AAI-3S +P-DPM +V-2AAM-2P +T-APN +N-APN +V-PNN +PREP +P-1AS +PRT-N +V-PAM-2P +P-APN +CONJ +T-GPN +D-GPN +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +HEB +V-PAI-1S +P-2DP +PRT +R-NSM +PRT-N +V-ADS-3S +T-ASF +N-ASF +T-GSM +N-GSM +ADV +N-NSN +PRT-N +PRT-N +V-2AAS-3S +PREP +P-ASF +CONJ +V-ADP-NSM +P-APN +V-IAI-3S +V-PAP-NSM +T-APF +N-APF +PREP +P-APN +CONJ +V-PNP-GSM +P-GSM +PREP +N-ASF +A-NSM +V-2AAP-NSM +CONJ +V-AAP-NSM +P-ASM +V-IAI-3S +P-ASM +N-VSM +A-VSM +I-ASN +V-AAS-1S +CONJ +N-ASF +A-ASF +V-AAS-1S +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +I-ASN +P-1AS +V-PAI-2S +A-ASM +A-NSM-N +A-NSM +COND +PRT-N +A-NSM +T-NSM +N-NSM +T-APF +N-APF +V-RAI-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +V-PAM-2S +T-ASM +N-ASM +P-2GS +CONJ +T-ASF +N-ASF +CONJ +T-NSM +V-IAI-3S +P-DSM +N-VSM +D-APN +A-APN +V-AMI-1S +PREP +N-GSF +P-1GS +CONJ +T-NSM +N-NSM +V-AAP-NSM +P-DSM +V-AAI-3S +P-ASM +CONJ +V-2AAI-3S +P-DSM +A-NSN +P-2AS +V-PAI-3S +V-PAM-2S +K-APN +V-PAI-2S +V-AAM-2S +CONJ +V-2AAM-2S +T-DPM +A-DPM +CONJ +V-FAI-2S +N-ASM +PREP +N-DSM +CONJ +V-PAM-2S +V-PAM-2S +P-1DS +CONJ +T-NSM +V-AAP-NSM +PREP +T-DSM +N-DSM +V-2AAI-3S +V-PPP-NSM +CONJ +V-IAI-3S +V-PAP-NSM +N-APN +A-APN +CONJ +V-AMP-NSM +T-NSM +N-NSM +V-PAI-3S +T-DPM +N-DPM +P-GSM +ADV +ADV +T-NPM +T-APN +N-APN +V-PAP-NPM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +V-FDI-3P +CONJ +T-NPM +N-NPM +V-IPI-3P +PREP +T-DPM +N-DPM +P-GSM +CONJ +T-NSM +N-NSM +ADV +V-AOP-NSM +V-PAI-3S +P-DPM +N-VPN +ADV +A-NSN +V-PAI-3S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +V-2AAN +A-NSN-C +V-PAI-3S +N-ASF +PREP +T-GSF +N-GSF +T-GSF +N-GSF +V-2AAN +PRT +A-ASM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +V-2AAN +CONJ +T-NPM +ADV +V-IPI-3P +V-PAP-NPM +PREP +F-3APM +CONJ +I-NSM +V-PNI-3S +V-APN +V-AAP-NSM +P-DPM +T-NSM +N-NSM +V-PAI-3S +PREP +N-DPM +A-NSN +CONJ +PRT-N +PREP +N-DSM +CONJ +A-NPN +A-NPN +PREP +T-DSM +N-DSM +V-ADI-3S +T-NSM +N-NSM +V-PAN +P-DSM +V-2AMM-2S +P-1NP +V-AAI-1P +A-APN +CONJ +V-RAI-1P +P-2DS +V-IAI-3S +T-NSM +N-NSM +HEB +V-PAI-1S +P-2DP +A-NSM-N +V-PAI-3S +R-NSM +V-AAI-3S +N-ASF +PRT +N-APM +PRT +N-APF +PRT +N-ASF +PRT +N-ASM +PRT +N-APN +PRT +N-APM +PREP +P-1GS +CONJ +PREP +T-GSN +N-GSN +COND +PRT-N +V-2AAS-3S +ADV +PREP +T-DSM +N-DSM +D-DSM +A-APN +N-APF +CONJ +N-APM +CONJ +N-APF +CONJ +N-APF +CONJ +N-APN +CONJ +N-APM +PREP +N-GPM +CONJ +PREP +T-DSM +N-DSM +T-DSM +V-PNP-DSM +N-ASF +A-ASF +CONJ +A-NPM +A-NPM-S +V-FDI-3P +A-NPM-S +CONJ +T-NPM +A-NPM-S +A-NPM-S +CONJ +V-IAI-3P +PREP +T-DSF +N-DSF +V-PAP-NPM +PREP +N-APN +CONJ +V-IAI-3S +V-PAP-NSM +P-APM +T-NSM +N-NSM +CONJ +V-IPI-3P +CONJ +T-NPM +V-PAP-NPM +V-INI-3P +CONJ +V-2AAP-NSM +ADV +T-APM +A-NUI +V-ADI-3S +P-DPM +V-PAN +T-APN +V-PAP-APN +P-DSM +V-PAN +CONJ +V-2AMM-2S +V-PAI-1P +PREP +N-APN +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-FPI-3S +T-DPM +N-DPM +CONJ +T-DPM +N-DPM +CONJ +V-FAI-3P +P-ASM +N-DSM +CONJ +V-FAI-3P +P-ASM +T-DPN +N-DPN +CONJ +V-FAI-3P +P-DSM +CONJ +V-FAI-3P +P-DSM +CONJ +V-FAI-3P +P-ASM +CONJ +V-FAI-3P +CONJ +PREP +A-APF +N-APF +V-FMI-3S +CONJ +V-PNI-3P +P-DSM +N-NSM +CONJ +N-NSM +T-NPM +N-NPM +N-GSM +V-PAP-NPM +P-DSM +N-VSM +V-PAI-1P +CONJ +COND +R-ASN +V-AAS-1P +P-2AS +V-AAS-2S +P-1DP +CONJ +T-NSM +V-2AAI-3S +P-DPM +V-PAI-2P +I-ASN +P-1AS +V-AAS-1S +P-2DP +CONJ +T-NPM +V-2AAI-3P +P-DSM +V-2AAM-2S +P-1DP +CONJ +A-NSM +PREP +P-2GS +A-GPN +CONJ +A-NSM +PREP +A-GPN +V-AAS-1P +PREP +T-DSF +N-DSF +P-2GS +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +PRT-N +V-RAI-2P +I-ASN +V-PMI-2P +V-PNI-2P +V-2AAN +T-ASN +N-ASN +R-ASN +P-1NS +V-PAI-1S +PRT +T-ASN +N-ASN +R-ASN +P-1NS +V-PPI-1S +V-APN +CONJ +T-NPM +V-2AAI-3P +P-DSM +V-PNI-1P +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +T-ASN +N-ASN +R-ASN +P-1NS +V-PAI-1S +V-FDI-2P +CONJ +T-ASN +N-ASN +R-ASN +P-1NS +V-PPI-1S +V-FPI-2P +CONJ +T-NSN +V-AAN +PREP +A-GPN +P-1GS +PRT +PREP +A-GPN +PRT-N +V-PAI-3S +S-1SNSN +V-2AAN +CONJ +R-DPM +V-RPI-3S +CONJ +V-AAP-NPM +T-NPM +A-NUI +V-ADI-3P +V-PAN +PREP +N-GSM +CONJ +N-GSM +CONJ +V-ADP-NSM +P-APM +T-NSM +N-NSM +V-PAI-3S +P-DPM +V-RAI-2P +CONJ +T-NPM +V-PAP-NPM +V-PAN +T-GPN +N-GPN +V-PAI-3P +P-GPM +CONJ +T-NPM +A-NPM +P-GPM +V-PAI-3P +P-GPM +CONJ +PRT-N +ADV +V-PAI-3S +PREP +P-2DP +CONJ +PRT +R-NSM +V-PAS-3S +A-NSM +V-2ADN +PREP +P-2DP +V-FDI-3S +P-2GP +N-NSM +CONJ +PRT +R-NSM +V-PAS-3S +PREP +P-2DP +V-PAN +A-NSM-S +V-FDI-3S +A-GPM +N-NSM +CONJ +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +V-2AAI-3S +V-APN +CONJ +V-AAN +CONJ +V-2AAN +T-ASF +N-ASF +P-GSM +N-ASN +PREP +A-GPM +CONJ +V-PNI-3P +PREP +N-PRI +CONJ +V-PNP-GSM +P-GSM +PREP +N-PRI +CONJ +T-GPM +N-GPM +P-GSM +CONJ +N-GSM +A-GSM +T-NSM +N-NSM +N-GSM +N-NSM +A-NSM +N-NSM +V-INI-3S +PREP +T-ASF +N-ASF +CONJ +V-AAP-NSM +CONJ +N-NSM +T-NSM +A-NSM +V-PAI-3S +V-ADI-3S +V-PAN +CONJ +V-PAN +N-VSM +N-PRI +N-VSM +V-AAM-2S +P-1AS +CONJ +V-IAI-3P +P-DSM +A-NPM +CONJ +V-AAS-3S +CONJ +T-NSM +A-DSN +ADV +V-IAI-3S +N-VSM +N-PRI +V-AAM-2S +P-1AS +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +V-AAM-2P +P-ASM +CONJ +V-PAI-3P +T-ASM +A-ASM +V-PAP-NPM +P-DSM +V-PAM-2S +V-PAM-2S +V-PAI-3S +P-2AS +CONJ +T-NSM +V-2AAP-NSM +T-ASN +N-ASN +P-GSM +V-AAP-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +CONJ +V-AOP-NSM +P-DSM +T-NSM +N-NSM +V-2AAI-3S +I-ASN +P-2DS +V-AAS-1S +V-PAI-2S +CONJ +T-NSM +A-NSM +V-2AAI-3S +P-DSM +ARAM +CONJ +V-AAS-1S +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-PAM-2S +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +CONJ +ADV +V-AAI-3S +CONJ +V-IAI-3S +P-DSM +PREP +T-DSF +N-DSF +CONJ +ADV +V-PAI-3P +PREP +N-APN +PREP +N-PRI +CONJ +N-ASF +PREP +T-ASN +N-ASN +T-GPF +N-GPF +V-PAI-3S +A-NUI +T-GPM +N-GPM +P-GSM +CONJ +V-PAI-3S +P-DPM +V-PAM-2P +PREP +T-ASF +N-ASF +T-ASF +PREP +P-2GP +CONJ +ADV +V-PNP-NPM +PREP +P-ASF +V-FAI-2P +V-RPP-ASM +N-ASM +PREP +R-ASM +A-NSM-N +N-GPM +ADV-N +V-AAI-3S +V-AAM-2P +P-ASM +CONJ +V-PAM-2P +CONJ +COND +X-NSM +P-2DP +V-2AAS-3S +I-ASN +V-PAI-2P +D-ASN +V-2AAM-2P +T-NSM +N-NSM +P-GSM +N-ASF +V-PAI-3S +CONJ +ADV +P-ASM +V-PAI-3S +ADV +ADV +CONJ +V-2AAI-3P +CONJ +V-2AAI-3P +N-ASM +V-RPP-ASM +PREP +N-ASF +ADV +PREP +T-GSN +N-GSN +CONJ +V-PAI-3P +P-ASM +CONJ +X-NPM +T-GPM +ADV +V-RAP-GPM +V-IAI-3P +P-DPM +I-ASN +V-PAI-2P +V-PAP-NPM +T-ASM +N-ASM +CONJ +T-NPM +V-2AAI-3P +P-DPM +ADV +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3P +P-APM +CONJ +V-PAI-3P +T-ASM +N-ASM +PREP +T-ASM +N-ASM +CONJ +V-PAI-3P +P-DSM +T-APN +N-APN +P-GPM +CONJ +V-AAI-3S +PREP +P-ASM +CONJ +A-NPM +T-APN +N-APN +P-GPM +V-AAI-3P +PREP +T-ASF +N-ASF +CONJ +A-NPM +N-APF +V-AAP-NPM +PREP +T-GPM +N-GPM +CONJ +T-NPM +V-PAP-NPM +CONJ +T-NPM +V-PAP-NPM +V-IAI-3P +HEB +V-RPP-NSM +T-NSM +V-PNP-NSM +PREP +N-DSN +N-GSM +V-RPP-NSF +T-NSF +V-PNP-NSF +N-NSF +T-GSM +N-GSM +P-1GP +N-PRI +HEB +PREP +T-DPN +A-DPN-S +CONJ +V-2AAI-3S +PREP +N-APN +PREP +T-ASN +N-ASN +CONJ +ADV +ADV +V-PAP-GSF +T-GSF +N-GSF +V-AMP-NSM +A-APN +V-2AAI-3S +PREP +N-ASF +PREP +T-GPM +A-NUI +CONJ +T-DSF +ADV +V-2AAP-GPM +P-GPM +PREP +N-GSF +V-AAI-3S +CONJ +V-2AAP-NSM +PREP +ADV +N-ASF +V-PAP-ASF +N-APN +V-2AAI-3S +PRT-I +COND +X-ASN +V-FAI-3S +PREP +P-DSF +CONJ +V-2AAP-NSM +PREP +P-ASF +A-ASN-N +V-2AAI-3S +COND +PRT-N +N-APN +CONJ +T-NSM +N-NSM +PRT-N +V-IAI-3S +N-GPN +CONJ +V-AOP-NSM +V-2AAI-3S +P-DSF +ADV-N +PREP +T-ASM +N-ASM +PREP +P-2GS +A-NSM-N +N-ASM +V-2AAO-3S +CONJ +V-IAI-3P +T-NPM +N-NPM +P-GSM +CONJ +V-PNI-3P +PREP +N-APN +CONJ +V-2AAP-NSM +PREP +T-ASN +N-ASN +V-ADI-3S +V-PAN +T-APM +V-PAP-APM +CONJ +T-APM +V-PAP-APM +PREP +T-DSN +N-DSN +CONJ +T-APF +N-APF +T-GPM +N-GPM +CONJ +T-APF +N-APF +T-GPM +V-PAP-GPM +T-APF +N-APF +V-AAI-3S +CONJ +PRT-N +V-IAI-3S +CONJ +X-NSM +V-2AAS-3S +N-ASN +PREP +T-GSN +N-GSN +CONJ +V-IAI-3S +CONJ +V-IAI-3S +P-DPM +PRT-N +V-RPI-3S +CONJ +T-NSM +N-NSM +P-1GS +N-NSM +N-GSF +V-FPI-3S +A-DPN +T-DPN +N-DPN +CONJ +P-2NP +V-RAI-2P +P-ASM +N-ASN +N-GPM +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +V-IAI-3P +ADV-I +P-ASM +V-AAS-3P +CONJ +V-INI-3P +P-ASM +CONJ +A-NSM +T-NSM +N-NSM +V-IPI-3S +PREP +T-DSF +N-DSF +P-GSM +CONJ +CONJ +ADV +V-2ADI-3S +V-INI-3P +ADV +T-GSF +N-GSF +CONJ +V-PNP-NPM +ADV +V-2AAI-3P +T-ASF +N-ASF +V-RPP-ASF +PREP +N-GPF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-PAI-3S +P-DSM +HEB +V-2AAM-2S +T-NSF +N-NSF +R-ASF +V-ADI-2S +V-RPI-3S +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-PAI-3S +P-DPM +V-PAM-2P +N-ASF +N-GSM +HEB +V-PAI-1S +P-2DP +CONJ +PRT +R-NSM +V-2AAS-3S +T-DSN +N-DSN +D-DSN +V-APM-2S +CONJ +V-APM-2S +PREP +T-ASF +N-ASF +CONJ +PRT-N +V-APS-3S +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-PAS-3S +CONJ +R-ASN +V-PAI-3S +V-PNI-3S +V-FDI-3S +P-DSM +PREP +D-ASN +V-PAI-1S +P-2DP +A-APN +K-APN +V-PNI-2P +CONJ +V-PMI-2P +V-PAM-2P +CONJ +V-2AAI-2P +CONJ +V-FDI-3S +P-2DP +CONJ +CONJ +V-PAI-2P +V-PNP-NPM +V-PAM-2P +COND +X-ASN +V-PAI-2P +PREP +X-GSM +CONJ +CONJ +T-NSM +N-NSM +P-2GP +T-NSM +PREP +T-DPM +N-DPM +V-2AAS-3S +P-2DP +T-APN +N-APN +P-2GP +CONJ +V-PNI-3P +ADV +PREP +N-APN +CONJ +PREP +T-DSN +N-DSN +V-PAP-GSM +P-GSM +V-PNI-3P +PREP +P-ASM +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +CONJ +V-IAI-3P +P-DSM +PREP +I-DSF +N-DSF +D-APN +V-PAI-2S +PRT +I-NSM +P-2DS +V-AAI-3S +T-ASF +N-ASF +D-ASF +CONJ +D-APN +V-PAS-2S +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +V-FAI-1S +P-2AP +A-ASM +N-ASM +CONJ +V-AOM-2P +P-1DS +CONJ +V-FAI-1S +P-2DP +PREP +I-DSF +N-DSF +D-APN +V-PAI-1S +T-NSN +N-NSN +T-NSN +N-GSM +PREP +N-GSM +V-IAI-3S +PRT +PREP +N-GPM +V-AOM-2P +P-1DS +CONJ +V-INI-3P +PREP +F-3APM +V-PAP-NPM +COND +V-2AAS-1P +PREP +N-GSM +V-FAI-3S +CONJ +PREP +I-ASN +PRT-N +V-AAI-2P +P-DSM +CONJ +V-2AAS-1P +PREP +N-GPM +V-INI-3P +T-ASM +N-ASM +CONJ +A-NPM +V-IAI-3P +T-ASM +N-ASM +CONJ +ADV +N-NSM +V-IAI-3S +CONJ +V-AOP-NPM +T-DSM +N-DSM +V-PAI-3P +PRT-N +V-RAI-1P +CONJ +T-NSM +N-NSM +V-PAI-3S +P-DPM +CONJ-N +P-1NS +V-PAI-1S +P-2DP +PREP +I-DSF +N-DSF +D-APN +V-PAI-1S +CONJ +V-ADI-3S +P-DPM +PREP +N-DPF +V-PAN +N-ASM +N-NSM +V-AAI-3S +CONJ +V-AAI-3S +N-ASM +CONJ +V-AAI-3S +N-ASN +CONJ +V-AAI-3S +N-ASM +CONJ +V-2AMI-3S +P-ASM +N-DPM +CONJ +V-AAI-3S +CONJ +V-AAI-3S +PREP +T-APM +N-APM +T-DSM +N-DSM +N-ASM +CONJ +PREP +T-GPM +N-GPM +V-2AAS-3S +PREP +T-GPM +N-GPM +T-GSM +N-GSM +CONJ +V-2AAP-NPM +P-ASM +V-AAI-3P +CONJ +V-AAI-3P +A-ASM +CONJ +ADV +V-AAI-3S +PREP +P-APM +A-ASM +N-ASM +D-ASM-K +V-AAI-3P +CONJ +V-AAI-3P +CONJ +A-ASM +V-AAI-3S +D-ASM-K +V-AAI-3P +CONJ +A-APM +A-APM +PRT +R-APM +V-PAP-NPM +CONJ +R-APM +V-PAP-NPM +ADV +V-IAI-3S +A-ASM +N-ASM +A-ASM +V-AAI-3S +P-ASM +A-ASM-S +PREP +P-APM +V-PAP-NSM +CONJ +V-2FPI-3P +T-ASM +N-ASM +P-1GS +CONJ +D-NPM +T-NPM +N-NPM +PREP +F-3APM +V-2AAI-3P +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +V-PAM-2P +V-PAS-1P +P-ASM +CONJ +P-1GP +V-FDI-3S +T-NSF +N-NSF +CONJ +V-2AAP-NPM +V-AAI-3P +P-ASM +CONJ +V-2AAI-3P +P-ASM +ADV +T-GSM +N-GSM +I-ASN +V-FAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-FDI-3S +CONJ +V-FAI-3S +T-APM +N-APM +CONJ +V-FAI-3S +T-ASM +N-ASM +A-DPM +CONJ-N +T-ASF +N-ASF +D-ASF +V-2AAI-2P +N-ASM +R-ASM +V-AAI-3P +T-NPM +V-PAP-NPM +D-NSM +V-AOI-3S +PREP +N-ASF +N-GSF +PREP +N-GSM +V-2ADI-3S +D-NSF +CONJ +V-PAI-3S +A-NSF +PREP +N-DPM +P-1GP +CONJ +V-IAI-3P +P-ASM +V-AAN +CONJ +V-AOI-3P +T-ASM +N-ASM +CONJ +V-2AAI-3P +CONJ +PREP +P-APM +T-ASF +N-ASF +V-2AAI-3S +CONJ +V-2AAP-NPM +P-ASM +V-2AAI-3P +CONJ +V-PAI-3P +PREP +P-ASM +X-APM +T-GPM +N-GPM +CONJ +T-GPM +N-GPM +CONJ +P-ASM +V-AAS-3P +N-DSM +CONJ +V-2AAP-NPM +V-PAI-3P +P-DSM +N-VSM +V-RAI-1P +CONJ +A-NSM +V-PAI-2S +CONJ +PRT-N +V-PAI-3S +P-2DS +PREP +A-GSM-N +CONJ +PRT-N +V-PAI-2S +PREP +N-ASN +N-GPM +CONJ +PREP +N-GSF +T-ASF +N-ASF +T-GSM +N-GSM +V-PAI-2S +V-PAI-3S +V-2AAN +N-ASM +N-DSM +PRT +PRT-N +V-2AAS-1P +PRT +PRT-N +V-2AAS-1P +CONJ +T-NSM +V-RAP-NSM +P-GPM +T-ASF +N-ASF +V-2AAI-3S +P-DPM +I-ASN +P-1AS +V-PAI-2P +V-PAM-2P +P-1DS +N-ASN +CONJ +V-2AAS-1S +CONJ +T-NPM +V-AAI-3P +CONJ +V-PAI-3S +P-DPM +I-GSM +T-NSF +N-NSF +D-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NPM +V-2AAI-3P +P-DSM +N-GSM +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +T-APN +N-GSM +V-2AAM-2P +N-DSM +CONJ +T-APN +T-GSM +N-GSM +T-DSM +N-DSM +CONJ +V-IAI-3P +PREP +P-DSM +CONJ +V-PNI-3P +PREP +P-ASM +N-NPM +R-NPM +V-PAI-3P +N-ASF +PRT-N +V-PAN +CONJ +V-IAI-3P +P-ASM +V-PAP-NPM +N-VSM +N-NSM +V-AAI-3S +P-1DP +CONJ +COND +X-GSM +N-NSM +V-2AAS-3S +CONJ +V-2AAS-3S +N-ASF +CONJ +PRT-N +V-2AAS-3S +N-ASN +CONJ +V-2AAS-3S +T-NSM +N-NSM +P-GSM +T-ASF +N-ASF +CONJ +V-AAS-3S +N-ASN +T-DSM +N-DSM +P-GSM +A-NUI +N-NPM +V-IAI-3P +CONJ +T-NSM +A-NSM-S +V-2AAI-3S +N-ASF +CONJ +V-PAP-NSM +PRT-N +V-AAI-3S +N-ASN +CONJ +T-NSM +A-NSM +V-2AAI-3S +P-ASF +CONJ +V-2AAI-3S +PRT-N +V-2AAP-NSM +N-ASN +CONJ +T-NSM +A-NSM +ADV +CONJ +T-NPM +A-NUI +PRT-N +V-AAI-3P +N-ASN +A-ASN-S +A-GPN +CONJ +T-NSF +N-NSF +V-2AAI-3S +PREP +T-DSF +N-DSF +CONJ +V-2AAS-3P +I-GSM +P-GPM +N-NSF +V-FDI-3S +CONJ +T-NPM +A-NUI +V-2AAI-3P +P-ASF +N-ASF +V-IAI-3S +P-DPM +T-NSM +N-NSM +PRT-N +PREP +D-ASN +V-PPI-2P +PRT-N +V-RAP-NPM +T-APF +N-APF +CONJ-N +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +CONJ +PREP +A-GPM +V-2AAS-3P +CONJ-N +V-PAI-3P +CONJ-N +V-PPI-3P +CONJ +V-PAI-3P +ADV +N-NPM +PREP +T-DPM +N-DPM +CONJ +PREP +T-GPM +A-GPM +CONJ +V-PPI-3P +PRT-N +V-2AAI-2P +PREP +T-DSF +N-DSF +N-GSM +PREP +T-GSM +N-GSM +ADV-I +V-2AAI-3S +P-DSM +T-NSM +N-NSM +V-PAP-NSM +P-1NS +T-NSM +N-NSM +N-PRI +CONJ +N-NSM +N-PRI +CONJ +N-NSM +N-PRI +PRT-N +V-PAI-3S +N-NSM +A-GPM +CONJ +V-PAP-GPM +A-ASN +V-PPI-2P +CONJ +V-2AAP-NSM +A-NSM +T-GPM +N-GPM +V-AAP-NSM +P-GPM +V-PAP-GPM +V-RAP-NSM +CONJ +ADV +V-ADI-3S +P-DPM +V-AAI-3S +P-ASM +I-NSF +V-PAI-3S +N-NSF +A-NSF-S +A-GPN +V-ADI-3S +T-NSM +N-NSM +CONJ +A-NSF-S +V-PAI-3S +V-PAM-2S +N-PRI +N-NSM +T-NSM +N-NSM +P-1GP +N-NSM +A-NSM +V-PAI-3S +CONJ +V-FAI-2S +N-ASM +T-ASM +N-ASM +P-2GS +PREP +A-GSF +T-GSF +N-GSF +P-2GS +CONJ +PREP +A-GSF +T-GSF +N-GSF +P-2GS +CONJ +PREP +A-GSF +T-GSF +N-GSF +P-2GS +CONJ +PREP +A-GSF +T-GSF +N-GSF +P-2GS +A-NSF +D-NSF +V-FAI-2S +T-ASM +ADV +P-2GS +ADV +F-2ASM +A-NSF-C +D-GPF +A-NSF +N-NSF +PRT-N +V-PAI-3S +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +ADV +N-VSM +PREP +N-GSF +V-2AAI-2S +CONJ +A-NSM +V-PAI-3S +CONJ +PRT-N +V-PAI-3S +A-NSM +ADV +P-GSM +CONJ +T-NSN +V-PAN +P-ASM +PREP +A-GSF +T-GSF +N-GSF +CONJ +PREP +A-GSF +T-GSF +N-GSF +CONJ +PREP +A-GSF +T-GSF +N-GSF +CONJ +T-NSN +V-PAN +T-ASM +ADV +ADV +F-3ASM +A-NSN-C +V-PAI-3S +A-GPN +T-GPN +N-GPN +CONJ +N-GPF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +P-ASM +CONJ +ADV +V-ADI-3S +V-2AAI-3S +P-DSM +PRT-N +ADV +V-PAI-2S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +A-NSM-N +ADV-N +V-IAI-3S +P-ASM +V-AAN +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-IAI-3S +V-PAP-NSM +PREP +T-DSN +N-DSN +ADV-I +V-PAI-3P +T-NPM +N-NPM +CONJ +T-NSM +N-NSM +N-NSM +N-PRI +V-PAI-3S +P-NSM +N-PRI +V-2AAI-3S +PREP +T-DSN +N-DSN +T-DSN +A-DSN +V-2AAI-3S +N-NSM +T-DSM +N-DSM +P-1GS +V-PNM-2S +PREP +A-GPN +P-1GS +ADV +PRT +V-2AAS-1S +T-APM +A-APM +P-2GS +ADV +T-GPM +N-GPM +P-2GS +P-NSM +N-PRI +V-PAI-3S +P-ASM +N-ASM +CONJ +ADV-I +P-GSM +N-NSM +V-PAI-3S +CONJ +T-NSM +A-NSM +N-NSM +V-IAI-3S +P-GSM +ADV +CONJ +PREP +T-DSF +N-DSF +P-GSM +V-IAI-3S +V-PAM-2P +PREP +T-GPM +N-GPM +T-GPM +V-PAP-GPM +PREP +N-DPF +V-PAN +CONJ +N-APM +PREP +T-DPF +N-DPF +CONJ +N-APF-S +PREP +T-DPF +N-DPF +CONJ +N-APF-S +PREP +T-DPN +N-DPN +T-NPM +V-PAP-NPM +T-APF +N-APF +T-GPF +N-GPF +CONJ +N-DSF +A-APN +V-PNP-NPM +D-NPM +V-FDI-3P +A-ASN-C +N-ASN +CONJ +V-AAP-NSM +PREP +T-GSN +N-GSN +V-IAI-3S +ADV +T-NSM +N-NSM +V-PAI-3S +N-ASM +PREP +T-ASN +N-ASN +CONJ +A-NPM +A-NPM +V-IAI-3P +A-APN +CONJ +V-2AAP-NSF +A-NSF +N-NSF +A-NSF +V-2AAI-3S +N-APN +A-NUI +R-NSN +V-PAI-3S +N-NSM +CONJ +V-ADP-NSM +T-APM +N-APM +P-GSM +V-2AAI-3S +P-DPM +HEB +V-PAI-1S +P-2DP +CONJ +T-NSF +N-NSF +D-NSF +T-NSF +A-NSF +A-ASN-C +V-2AAI-3S +A-GPM +T-GPM +V-PAP-GPM +PREP +T-ASN +N-ASN +CONJ +A-NPM +PREP +T-GSN +V-PAP-GSN +P-DPM +V-2AAI-3P +CONJ +D-NSF +PREP +T-GSF +N-GSF +P-GSF +V-2AAI-3S +A-APN +K-APN +V-IAI-3S +A-ASM +T-ASM +N-ASM +P-GSF +CONJ +V-PNP-GSM +P-GSM +PREP +T-GSN +N-GSN +V-PAI-3S +P-DSM +A-NSM +T-GPM +N-GPM +P-GSM +N-VSM +V-2AAM-2S +A-NPM +N-NPM +CONJ +A-NPF +N-NPF +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-PAI-2S +D-APF +T-APF +A-APF +N-APF +PRT-N +PRT-N +V-APS-3S +PREP +N-ASM +N-NSM +R-NSM +PRT-N +PRT-N +V-APS-3S +CONJ +V-PNP-GSM +P-GSM +PREP +T-ASN +N-ASN +T-GPF +N-GPF +PREP +T-GSN +N-GSN +V-IAI-3S +P-ASM +PREP +A-ASF +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSM +V-2AAM-2S +P-1DP +PRT-I +D-NPN +V-FDI-3S +CONJ +I-NSN +T-NSN +N-NSN +CONJ +V-PAS-3S +D-APN +A-APN +V-PPN +CONJ +T-NSM +N-NSM +V-ADI-3S +V-PAN +P-DPM +V-PAM-2P +PRT-N +X-NSM +P-2AP +V-AAS-3S +A-NPM +V-FDI-3P +PREP +T-DSN +N-DSN +P-1GS +V-PAP-NPM +CONJ +P-1NS +V-PAI-1S +CONJ +A-APM +V-FAI-3P +CONJ +CONJ +V-AAS-2P +N-APM +CONJ +N-APF +N-GPM +PRT-N +V-PPM-2P +V-PAI-3S +V-2ADN +CONJ +ADV-N +T-NSN +N-NSN +CONJ +V-FPI-3S +N-NSN +PREP +N-ASN +CONJ +N-NSF +PREP +N-ASF +V-FDI-3P +N-NPM +PREP +N-APM +V-FDI-3P +N-NPM +N-NSF +N-GPF +D-NPN +CONJ +V-PAM-2P +P-2NP +F-2APM +V-FAI-3P +P-2AP +PREP +N-APN +CONJ +PREP +N-APF +V-2FPI-2P +CONJ +PREP +N-GPM +CONJ +N-GPM +V-FPI-2P +PREP +P-1GS +PREP +N-ASN +P-DPM +CONJ +PREP +A-APN +T-APN +N-APN +ADV-S +V-APN +T-NSN +N-NSN +V-PAI-3S +CONJ +CONJ +V-PAS-3P +P-2AP +V-PAP-NPM +PRT-N +V-PAM-2P +I-ASN +V-AAS-2P +CONJ +COND +R-ASN +V-APS-3S +P-2DP +PREP +D-DSF +T-DSF +N-DSF +D-ASN +V-PAM-2P +CONJ +PRT-N +V-PAI-2P +P-2NP +T-NPM +V-PAP-NPM +CONJ +T-NSN +N-NSN +T-NSN +A-NSN +CONJ +V-FAI-3S +N-NSM +N-ASM +PREP +N-ASM +CONJ +N-NSM +N-ASN +CONJ +V-FDI-3P +N-NPN +PREP +N-APM +CONJ +V-FAI-3P +P-APM +CONJ +V-FDI-2P +V-PPP-NPM +PREP +A-GPM +PREP +T-ASN +N-ASN +P-1GS +CONJ +T-NSM +V-AAP-NSM +PREP +N-ASN +D-NSM +V-FPI-3S +CONJ +CONJ +V-2AAS-2P +T-ASN +N-ASN +T-GSF +N-GSF +V-RAP-ASM +ADV +PRT-N +V-PAI-3S +T-NSM +V-PAP-NSM +V-PAM-3S +ADV +T-NPM +PREP +T-DSF +N-DSF +V-PAM-3P +PREP +T-APN +N-APN +T-NSM +PREP +T-GSN +N-GSN +PRT-N +V-2AAM-3S +CONJ-N +V-2AAM-3S +X-ASN +V-AAN +PREP +T-GSF +N-GSF +P-GSM +CONJ +T-NSM +PREP +T-ASM +N-ASM +PRT-N +V-AAM-3S +PREP +T-APN +ADV +V-AAN +T-ASN +N-ASN +P-GSM +CONJ +INJ +T-DPF +PREP +N-DSF +V-PAP-DPF +CONJ +T-DPF +V-PAP-DPF +PREP +D-DPF +T-DPF +N-DPF +CONJ +V-PNM-2P +CONJ +PRT-N +V-2ADS-3S +N-GSM +CONJ +V-FDI-3P +T-NPF +N-NPF +D-NPF +N-NSF +R-NSF +PRT-N +V-2RAI-3S +D-NSF +PREP +N-GSF +N-GSF +R-ASF +V-AAI-3S +T-NSM +N-NSM +ADV +T-GSM +ADV +CONJ +PRT-N +PRT-N +V-2ADS-3S +CONJ +COND +PRT-N +V-AAI-3S +N-NSM +T-APF +N-APF +PRT +PRT-N +V-API-3S +A-NSF +N-NSF +CONJ +PREP +T-APM +A-APM +R-APM +V-AMI-3S +V-AAI-3S +T-APF +N-APF +CONJ +COND +ADV +X-NSM +P-2DP +V-2AAS-3S +V-2AAM-2S +ADV +T-NSM +N-NSM +V-2AAM-2S +ADV +PRT-N +V-PAM-2P +CONJ +V-FPI-3P +N-NPM +CONJ +N-NPM +CONJ +V-FAI-3P +N-APN +CONJ +N-APN +PREP +T-ASN +V-PAN +COND +A-NSN +T-APM +A-APM +CONJ +P-2NP +V-PAM-2P +V-RAI-1S +P-2DP +A-APN +CONJ +PREP +D-DPF +T-DPF +N-DPF +PREP +T-ASF +N-ASF +D-ASF +T-NSM +N-NSM +V-FPI-3S +CONJ +T-NSF +N-NSF +PRT-N +V-FAI-3S +T-ASN +N-ASN +P-GSF +CONJ +T-NPM +N-NPM +V-FDI-3P +V-PAP-NPM +PREP +T-GSM +N-GSM +CONJ +T-NPF +N-NPF +T-NPF +PREP +T-DPM +N-DPM +V-FPI-3P +CONJ +ADV +V-FDI-3P +T-ASM +N-ASM +T-GSM +N-GSM +V-PNP-ASM +PREP +N-DPF +PREP +N-GSF +A-GSF +CONJ +N-GSF +CONJ +ADV +V-FAI-3S +T-APM +N-APM +CONJ +V-FAI-3S +T-APM +A-APM +P-GSM +PREP +T-GPM +A-GPM +N-GPM +PREP +N-GSN +N-GSF +ADV +N-GSN +N-GSM +CONJ +PREP +T-GSF +N-GSF +V-2AAM-2P +T-ASF +N-ASF +CONJ +ADV +T-NSM +N-NSM +P-GSF +A-NSM +V-2ADS-3S +CONJ +V-PAS-3S +T-APN +N-APN +V-PAI-2P +CONJ +ADV +T-NSN +N-NSN +V-PAI-3S +ADV +CONJ +P-2NP +CONJ +V-2AAS-2P +D-APN +V-PNP-APN +V-PAM-2P +CONJ +ADV +V-PAI-3S +PREP +N-DPF +HEB +V-PAI-1S +P-2DP +CONJ +PRT-N +PRT-N +V-2AAS-3S +T-NSF +N-NSF +D-NSF +ADV +R-GSM +D-NPN +A-NPN +V-2ADS-3S +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +V-FDI-3P +CONJ +T-NPM +N-NPM +P-1GS +PRT-N +V-FDI-3P +CONJ +PREP +T-GSF +N-GSF +D-GSF +PRT +T-GSF +N-GSF +A-NSM-N +V-RAI-3S +CONJ-N +T-NPM +N-NPM +PREP +N-DSM +CONJ-N +T-NSM +N-NSM +COND +PRT-N +T-NSM +N-NSM +V-PAM-2P +V-PAM-2P +CONJ +PRT-N +V-RAI-2P +PRT-I +T-NSM +N-NSM +V-PAI-3S +ADV +N-NSM +A-NSM +V-2AAP-NSM +T-ASF +N-ASF +P-GSM +CONJ +V-2AAP-NSM +T-DPM +N-DPM +P-GSM +T-ASF +N-ASF +A-DSM +T-ASN +N-ASN +P-GSM +CONJ +T-DSM +N-DSM +V-ADI-3S +CONJ +V-PAS-3S +CONJ +V-PAM-2P +CONJ +PRT-N +V-RAI-2P +PRT-I +T-NSM +N-NSM +T-GSF +N-GSF +V-PNI-3S +PRT +ADV +PRT +N-ASN +PRT +N-GSF +PRT +ADV +PRT-N +V-2AAP-NSM +ADV +V-2AAS-3S +P-2AP +V-PAP-APM +CONJ +R-ASN +P-2DP +V-PAI-1S +A-DPM +V-PAI-1S +V-PAM-2P +CONJ +V-IAI-3S +T-NSN +ARAM +CONJ +T-NPN +A-NPN +PREP +A-NUI +N-APF +CONJ +V-IAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +ADV-I +P-ASM +PREP +N-DSM +V-AAP-NPM +V-AAS-3P +CONJ +V-IAI-3P +PRT-N +PREP +T-DSF +N-DSF +PRT-N +ADV +V-FDI-3S +N-NSM +T-GSM +N-GSM +CONJ +V-PAP-GSM +P-GSM +PREP +N-DSF +PREP +T-DSF +N-DSF +N-GSM +T-GSM +A-GSM +V-PNP-GSM +P-GSM +V-2AAI-3S +N-NSF +V-PAP-NSF +N-ASN +N-GSN +N-GSF +A-GSF +A-GSF +V-AAP-NSF +T-ASF +N-ASN +V-AAI-3S +P-GSN +T-GSF +N-GSF +CONJ +X-NPM +V-IAI-3P +V-PAP-NPM +PREP +F-3APM +PREP +I-ASN +T-NSF +N-NSF +D-NSF +T-GSN +N-GSN +V-2RAI-3S +CONJ +V-INI-3S-ATT +D-NSN +T-NSN +N-NSN +V-APN +ADV +N-GPN +A-GPN +CONJ +V-APN +T-DPM +A-DPM +CONJ +V-INI-3P +P-DSF +CONJ +T-NSM +N-NSM +V-2AAI-3S +V-2AAM-2P +P-ASF +I-ASN +P-DSF +N-APM +V-PAI-2P +A-ASN +N-ASN +V-ADI-3S +PREP +P-1DS +CONJ +ADV +T-APM +A-APM +V-PAI-2P +PREP +F-2GPM +CONJ +CONJ +V-PAS-2P +V-PNI-2P +P-DPM +ADV +V-AAN +CONJ +P-1AS +PRT-N +ADV +V-PAI-2P +R-ASN +V-2AAI-3S +V-AAI-3S +V-2AAI-3S +V-AAN +T-ASN +N-ASN +P-1GS +PREP +T-ASM +N-ASM +CONJ +HEB +V-PAI-1S +P-2DP +COND +ADV +V-APS-3S +T-NSN +N-NSN +PREP +A-ASM +T-ASM +N-ASM +CONJ +R-ASN +V-AAI-3S +D-NSF +V-FPI-3S +PREP +N-ASN +P-GSF +CONJ +N-NSM +N-PRI +T-NSM +A-NSM +T-GPM +A-NUI +V-2AAI-3S +PREP +T-APM +N-APM +CONJ +P-ASM +V-2AAS-3S +P-DPM +CONJ +T-NPM +V-AAP-NPM +V-2AOI-3P +CONJ +V-ANI-3P +P-DSM +N-ASN +V-2AAN +CONJ +V-IAI-3S +ADV-I +P-ASM +ADV +V-2AAS-3S +CONJ +T-DSF +A-DSF-S +N-DSF +T-GPN +A-GPN +ADV +T-ASN +ARAM +V-IAI-3P +V-PAI-3P +P-DSM +T-NPM +N-NPM +P-GSM +V-PAI-2S +ADV-I +V-2AAP-NPM +V-AAS-1P +CONJ +V-2AAS-2S +T-ASN +ARAM +CONJ +V-PAI-3S +A-NUI +T-GPM +N-GPM +P-GSM +CONJ +V-PAI-3S +P-DPM +V-PAM-2P +PREP +T-ASF +N-ASF +CONJ +V-FAI-3S +P-2DP +N-NSM +N-ASN +N-GSN +V-PAP-NSM +V-AAM-2P +P-DSM +CONJ +COND +ADV +V-2AAS-3S +V-2AAM-2P +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +V-PAI-3S +ADV-I +V-PAI-3S +T-NSN +N-NSN +P-1GS +ADV +T-ASN +ARAM +PREP +T-GPM +N-GPM +P-1GS +V-2AAS-1S +CONJ +P-NSM +P-2DP +V-FAI-3S +N-ASN +A-ASN +V-RPP-ASN +A-ASN +CONJ +ADV +V-AAM-2P +P-1DP +CONJ +V-2AAI-3P +T-NPM +N-NPM +CONJ +V-2AAI-3P +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3P +ADV +V-2AAI-3S +P-DPM +CONJ +V-AAI-3P +T-ASN +ARAM +CONJ +A-GSF +V-2ADP-GSF +V-PNI-3S +PREP +T-GPM +A-NUI +CONJ +P-GPM +V-PNP-GPM +CONJ +V-PAP-GPM +T-NSM +N-NSM +V-2AAI-3S +HEB +V-PAI-1S +P-2DP +CONJ +V-FAI-3S +P-1AS +A-NSM +PREP +P-2GP +T-NSM +V-PAP-NSM +PREP +P-1GS +V-ADI-3P +V-PPN +CONJ +V-PAN +P-DSM +A-NSM +PREP +A-NSM +PRT-I +P-1NS +CONJ +T-NSM +V-2AAI-3S +P-DPM +A-NSM +T-GPM +A-NUI +T-NSM +V-PMP-NSM +PREP +P-1GS +PREP +T-ASN +N-ASN +CONJ +PRT +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +ADV +V-RPI-3S +PREP +P-GSM +CONJ +INJ +T-DSM +N-DSM +D-DSM +PREP +R-GSM +T-NSM +N-NSM +T-GSM +N-GSM +V-PPI-3S +A-NSN +P-DSM +COND +PRT-N +V-API-3S +T-NSM +N-NSM +D-NSM +CONJ +V-PAP-GPM +P-GPM +V-2AAP-NSM +N-ASM +V-AAP-NSM +V-AAI-3S +CONJ +V-AAI-3S +P-DPM +CONJ +V-2AAI-3S +V-2AAM-2P +D-NSN +V-PAI-3S +T-NSN +N-NSN +P-1GS +CONJ +V-2AAP-NSM +N-ASN +V-AAP-NSM +V-AAI-3S +P-DPM +CONJ +V-2AAI-3P +PREP +P-GSN +A-NPM +CONJ +V-2AAI-3S +P-DPM +D-NSN +V-PAI-3S +T-NSN +N-NSN +P-1GS +T-GSF +N-GSF +T-NSN +V-PPP-NSN +PREP +A-GPM +HEB +V-PAI-1S +P-2DP +CONJ +ADV-N +PRT-N +PRT-N +V-2AAS-1S +PREP +T-GSN +N-GSN +T-GSF +N-GSF +ADV +T-GSF +N-GSF +D-GSF +CONJ +P-ASN +V-PAS-1S +A-ASN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +V-AAP-NPM +V-2AAI-3P +PREP +T-ASN +N-ASN +T-GPF +N-GPF +CONJ +V-PAI-3S +P-DPM +T-NSM +N-NSM +CONJ +A-NPM +V-FPI-2P +CONJ +V-RPI-3S +V-FAI-1S +T-ASM +N-ASM +CONJ +T-NPN +N-NPN +V-FPI-3P +CONJ +PREP +T-ASN +V-APN +P-1AS +V-FAI-1S +P-2AP +PREP +T-ASF +N-ASF +CONJ +T-NSM +N-NSM +V-IAI-3S +P-DSM +COND +CONJ +A-NPM +V-FPI-3P +CONJ +PRT-N +P-1NS +CONJ +V-PAI-3S +P-DSM +T-NSM +N-NSM +HEB +V-PAI-1S +P-2DS +CONJ +P-2NS +ADV +D-DSF +T-DSF +N-DSF +ADV +PRT +ADV +N-ASM +V-AAN +ADV +P-1AS +V-FDI-2S +CONJ +T-NSM +ADV +V-IAI-3S +COND +V-PAS-3S +P-1AS +V-2AAN +P-2DS +PRT-N +PRT-N +P-2AS +V-FDI-1S +CONJ +ADV +CONJ +A-NPM +V-IAI-3P +CONJ +V-PNI-3P +PREP +N-ASN +R-GSN +T-NSN +N-NSN +N-PRI +CONJ +V-PAI-3S +T-DPM +N-DPM +P-GSM +V-AAM-2P +ADV +ADV +V-ADS-1S +CONJ +V-PAI-3S +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +PREP +P-GSM +CONJ +V-ADI-3S +V-PPN +CONJ +V-PAN +CONJ +V-PAI-3S +P-DPM +A-NSF +V-PAI-3S +T-NSF +N-NSF +P-1GS +ADV +N-GSM +V-AAM-2P +ADV +CONJ +V-PAM-2P +CONJ +V-2AAP-NSM +A-ASN +V-IAI-3S +PREP +T-GSF +N-GSF +CONJ +V-INI-3S +CONJ +COND +A-NSN +V-PAI-3S +V-2AAS-3S +PREP +P-GSM +T-NSF +N-NSF +CONJ +V-IAI-3S +N-PRI +T-NSM +N-NSM +A-NPN +A-NPN +P-2DS +V-2AAM-2S +T-ASN +N-ASN +D-ASN +PREP +P-1GS +CONJ +PRT-N +I-ASN +P-1NS +V-PAI-1S +CONJ +I-ASN +P-2NS +CONJ +V-PNI-3S +CONJ +V-PAI-3S +P-APM +V-PAP-APM +CONJ +V-PAI-3S +T-DSM +N-DSM +N-VSM +V-PAI-2S +PRT-N +V-AAI-2S +A-ASF +N-ASF +V-AAN +V-PAM-2P +CONJ +V-PNM-2P +CONJ +PRT-N +V-2AAS-2P +PREP +N-ASM +PRT +T-NSN +N-NSN +A-NSN +CONJ +T-NSF +N-NSF +A-NSF +CONJ +ADV +V-2AAP-NSM +V-ADI-3S +T-ASM +P-ASM +N-ASM +V-2AAP-NSM +CONJ +ADV +V-2AAP-NSM +V-2AAI-3S +P-APM +V-PAP-APM +CONJ +V-IAI-3P +V-PPP-NPM +P-GPM +T-NPM +N-NPM +CONJ +PRT-N +V-2LAI-3P +I-ASN +V-AOS-3P +P-DSM +CONJ +V-PNI-3S +T-ASN +A-ASN +CONJ +V-PAI-3S +P-DPM +V-PAI-2P +T-ASN +A-ASN +CONJ +V-PMI-2P +V-PAI-3S +V-2AAI-3S +T-NSF +N-NSF +V-2AMM-2S +V-PPI-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +T-APF +N-APF +T-GPM +A-GPM +V-PEM-2P +V-PAS-1P +V-2AMM-2S +T-NSM +V-PAP-NSM +P-1AS +V-RAI-3S +CONJ +ADV +ADV +P-GSM +V-PAP-GSM +V-PNI-3S +T-NSM +N-NSM +A-NSM +T-GPM +A-NUI +CONJ +PREP +P-GSM +N-NSM +PREP +N-GPF +CONJ +N-GPN +PREP +T-GPM +N-GPM +CONJ +T-GPM +N-GPM +CONJ +T-GPM +A-GPM-C +CONJ +V-LAI-3S-ATT +T-NSM +V-PAP-NSM +P-ASM +N-ASN +P-DPM +V-PAP-NSM +PRT +R-ASM +V-AAS-1S +P-NSM +V-PAI-3S +V-AAM-2P +P-ASM +CONJ +V-PAM-2P +ADV +CONJ +V-2AAP-NSM +ADV +V-2AAP-NSM +P-DSM +V-PAI-3S +HEB +CONJ +V-AAI-3S +P-ASM +CONJ +T-NPM +V-2AAI-3P +T-APF +N-APF +P-DSM +CONJ +V-AAI-3P +P-ASM +CONJ +A-NSM +X-NSM +T-GPM +V-RAP-GPM +V-AMP-NSM +T-ASF +N-ASF +V-AAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-2AAI-3S +P-GSM +T-ASN +N-ASN +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DPM +ADV +PREP +N-ASM +V-2AAI-2P +PREP +N-GPF +CONJ +N-GPN +V-2AAN +P-1AS +PREP +N-ASF +V-IMI-1S +PREP +P-2AP +PREP +T-DSN +N-DSN +V-PAP-NSM +CONJ +PRT-N +V-AAI-2P +P-1AS +CONJ +CONJ +V-APS-3P +T-NPF +N-NPF +CONJ +V-2AAP-NPM +P-ASM +V-2AAI-3P +A-NPM +CONJ +N-NSM +X-NSM +V-IAI-3S +P-DSM +V-RPP-NSM +N-ASF +PREP +A-GSN +CONJ +V-PAI-3P +P-ASM +CONJ +T-NSM +V-2AAP-NSM +T-ASF +N-ASF +A-NSM +V-2AAI-3S +CONJ +V-2AAI-3P +T-ASM +N-ASM +PREP +T-ASM +N-ASM +CONJ +V-PNI-3P +A-NPM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +CONJ +T-NPM +N-NPM +CONJ +T-NSM +N-NSM +PREP +ADV +V-AAI-3S +P-DSM +ADV +ADV +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-IAI-3S +V-PNP-NSM +PREP +T-GPM +N-GPM +CONJ +V-PMP-NSM +PREP +T-ASN +N-ASN +CONJ +T-NPM +N-NPM +CONJ +A-NSN +T-NSN +N-NSN +V-IAI-3P +PREP +T-GSM +N-GSM +N-ASF +PREP +T-ASN +V-AAN +P-ASM +CONJ +PRT-N +V-IAI-3P +CONJ +A-NPM +V-IAI-3P +PREP +P-GSM +CONJ +A-NPF +T-NPF +N-NPF +PRT-N +V-IAI-3P +CONJ +X-NPM +V-2AAP-NPM +V-IAI-3P +PREP +P-GSM +V-PAP-NPM +CONJ +P-1NP +V-AAI-1P +P-GSM +V-PAP-GSM +CONJ +P-1NS +V-FAI-1S +T-ASM +N-ASM +D-ASM +T-ASM +A-ASM +CONJ +PREP +A-GPF +N-GPF +A-ASM +A-ASM +V-FAI-1S +CONJ +CONJ-N +ADV +A-NSF +V-IAI-3S +T-NSF +N-NSF +P-GPM +CONJ +V-2AAP-NSM +PREP +A-ASN +T-NSM +N-NSM +V-AAI-3S +T-ASM +N-ASM +V-PAP-NSM +PRT-N +V-PNI-2S +A-ASN-N +I-ASN +D-NPM +P-2GS +V-PAI-3P +CONJ +T-NSM +V-IAI-3S +CONJ +PRT-N +V-ADI-3S +A-ASN-N +ADV +T-NSM +N-NSM +V-IAI-3S +P-ASM +CONJ +V-PAI-3S +P-DSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-NSM +N-NSM +T-GSM +A-GSM +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-1NS +V-PAI-1S +CONJ +V-FDI-2P +T-ASM +N-ASM +T-GSM +N-GSM +PREP +A-GPN +T-GSF +N-GSF +V-PNP-ASM +CONJ +V-PNP-ASM +PREP +T-GPF +N-GPF +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-APM +N-APM +P-GSM +V-PAI-3S +I-ASN +ADV +N-ASF +N-GPM +V-PAI-1P +V-AAI-2P +T-GSF +N-GSF +I-NSN +P-2DP +V-PEI-3S +CONJ +T-NPM +A-NPM +V-AAI-3P +P-ASM +A-ASM +V-PAN +N-GSM +CONJ +V-ADI-3P +X-NPM +V-PAN +P-DSM +CONJ +V-PAN +P-GSM +T-ASN +N-ASN +CONJ +V-PAN +P-ASM +CONJ +V-PAN +P-DSM +V-AAM-2S +CONJ +T-NPM +N-NPM +N-DPN +P-ASM +V-2AAI-3P +CONJ +V-PAP-GSM +T-GSM +N-GSM +ADV +PREP +T-DSF +N-DSF +V-PNI-3S +A-NSF +T-GPF +N-GPF +T-GSM +N-GSM +CONJ +V-2AAP-NSF +T-ASM +N-ASM +V-PMP-ASM +V-AAP-NSF +P-DSM +V-PAI-3S +CONJ +P-2NS +PREP +T-GSM +A-GSM +T-GSM +N-GSM +V-IAI-2S +CONJ +T-NSM +V-ADI-3S +V-PAP-NSM +CONJ-N +V-RAI-1S +CONJ-N +V-PNI-1S +P-2NS +I-ASN +V-PAI-2S +CONJ +V-2AAI-3S +ADV +PREP +T-ASN +N-ASN +CONJ +T-NSF +N-NSF +V-2AAP-NSF +P-ASM +V-ADI-3S +ADV +V-PAN +T-DPM +V-RAP-DPM +CONJ +D-NSM +PREP +P-GPM +V-PAI-3S +CONJ +T-NSM +ADV +V-INI-3S +CONJ +PREP +A-ASN +ADV +T-NPM +V-RAP-NPM +V-IAI-3P +T-DSM +N-DSM +ADV +PREP +P-GPM +V-PAI-2S +CONJ +CONJ +N-NSM +V-PAI-2S +CONJ +T-NSM +V-ADI-3S +V-PAN +CONJ +V-PAN +CONJ +PRT-N +V-RAI-1S +T-ASM +N-ASM +D-ASM +R-ASM +V-PAI-2P +CONJ +ADV +PREP +A-GSN +N-NSM +V-AAI-3S +CONJ +V-API-3S +T-NSM +N-NSM +T-ASN +N-ASN +ADV +V-2AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +ADV +N-ASM +ADV +V-AAN +ADV +P-1AS +V-FDI-2S +CONJ +V-2AAP-NSM +V-IAI-3S +CONJ +ADV +ADV +T-NPM +N-NPM +N-ASN +V-AAP-NPM +PREP +T-GPM +A-GPM-C +CONJ +N-GPM +CONJ +A-NSN +T-NSN +N-NSN +V-AAP-NPM +T-ASM +N-ASM +V-AAI-3P +CONJ +V-AAI-3P +N-DSM +CONJ +V-AAI-3S +P-ASM +T-NSM +N-NSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +T-NSM +V-AOP-NSM +P-DSM +V-PAI-3S +P-2NS +V-PAI-2S +CONJ +V-IAI-3P +P-GSM +T-NPM +N-NPM +A-APN +CONJ +T-NSM +N-NSM +ADV +V-IAI-3S +P-ASM +V-PAP-NSM +PRT-N +V-PNI-2S +A-ASN-N +V-2AAM-2S +Q-APN +P-2GS +V-PAI-3P +CONJ +T-NSM +N-NSM +ADV-N +A-ASN-N +V-ADI-3S +CONJ +V-PAN +T-ASM +N-ASM +CONJ +PREP +N-ASF +V-IAI-3S +P-DPM +A-ASM +N-ASM +R-ASM +V-INI-3P +CONJ +V-IAI-3S +V-RPP-NSM +T-NSM +V-PPP-NSM +N-NSM +PREP +T-GPM +N-GPM +R-NPM +PREP +T-DSF +N-DSF +N-ASM +V-LAI-3P +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-ADI-3S +V-PMN +ADV +V-IAI-3S +P-DPM +CONJ +T-NSM +N-NSM +V-ADI-3S +P-DPM +V-PAP-NSM +V-PAI-2P +V-AAS-1S +P-2DP +T-ASM +N-ASM +T-GPM +A-GPM +CONJ +V-IAI-3S +CONJ +PREP +N-ASM +V-LAI-3P +P-ASM +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-AAI-3P +T-ASM +N-ASM +CONJ +ADV +T-ASM +N-ASM +V-AAS-3S +P-DPM +CONJ +T-NSM +N-NSM +ADV +V-AOP-NSM +V-IAI-3S +P-DPM +CONJ +I-ASN +V-AAS-1S +R-ASM +V-PAI-2P +T-ASM +N-ASM +T-GPM +A-GPM +CONJ +T-NPM +ADV +V-AAI-3P +V-AAM-2S +P-ASM +CONJ +T-NSM +N-NSM +V-IAI-3S +P-DPM +CONJ +V-AAI-3S +I-ASN +A-ASN +CONJ +T-NPM +ADV +V-AAI-3P +V-AAM-2S +P-ASM +CONJ +T-NSM +N-NSM +V-PNP-NSM +T-DSM +N-DSM +T-ASN +A-ASN +V-AAN +V-AAI-3S +P-DPM +T-ASM +N-ASM +CONJ +V-AAI-3S +T-ASM +N-ASM +V-AAP-NSM +CONJ +V-APS-3S +CONJ +T-NPM +N-NPM +V-2AAI-3P +P-ASM +ADV +T-GSF +N-GSF +R-NSN +V-PAI-3S +N-NSN +CONJ +V-PAI-3P +A-ASF +T-ASF +N-ASF +CONJ +V-PAI-3P +P-ASM +N-ASF +CONJ +V-PAI-3P +P-DSM +V-AAP-NPM +A-ASM +N-ASM +CONJ +V-ADI-3P +V-PNN +P-ASM +V-PAM-2S +N-VSM +T-GPM +A-GPM +CONJ +V-IAI-3P +P-GSM +T-ASF +N-ASF +N-DSM +CONJ +V-IAI-3P +P-DSM +CONJ +V-PAP-NPM +T-APN +N-APN +V-IAI-3P +P-DSM +CONJ +ADV +V-AAI-3P +P-DSM +V-AAI-3P +P-ASM +T-ASF +N-ASF +CONJ +V-AAI-3P +P-ASM +T-APN +N-APN +P-GSM +CONJ +V-PAI-3P +P-ASM +CONJ +V-AAS-3P +P-ASM +CONJ +V-PAI-3P +V-PAP-ASM +X-ASM +N-ASM +N-ASM +V-PNP-ASM +PREP +N-GSM +T-ASM +N-ASM +N-GSM +CONJ +N-GSM +CONJ +V-AAS-3S +T-ASM +N-ASM +P-GSM +CONJ +V-PAI-3P +P-ASM +PREP +T-ASM +N-ASM +N-ASF +R-NSN +V-PAI-3S +V-PPP-NSM +N-GSN +N-NSM +CONJ +V-IAI-3P +P-DSM +V-RPP-ASM +N-ASM +CONJ +R-NSM +PRT-N +V-2AAI-3S +CONJ +V-PAI-3P +P-ASM +CONJ +V-PMI-3P +T-APN +N-APN +P-GSM +V-PAP-NPM +N-ASM +PREP +P-APN +I-NSM +I-ASN +V-AAS-3S +CONJ +V-IAI-3S +N-NSF +A-NSF +CONJ +V-AAI-3P +P-ASM +CONJ +V-IAI-3S +V-RPP-NSF +T-NSF +N-NSF +T-GSF +N-GSF +P-GSM +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +PREP +P-DSM +V-PAI-3P +A-NUI +N-APM +A-ASM +PREP +A-GPN +CONJ +A-ASM +PREP +A-GPN +P-GSM +CONJ +T-NPM +V-PNP-NPM +V-IAI-3P +P-ASM +V-PAP-NPM +T-APF +N-APF +P-GPM +CONJ +V-PAP-NPM +INJ +T-NSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +V-PAP-NSM +PREP +A-DPF +N-DPF +V-AAM-2S +F-2ASM +V-2AAP-NSM +PREP +T-GSM +N-GSM +ADV +CONJ +T-NPM +N-NPM +V-PAP-NPM +PREP +C-APM +PREP +T-GPM +N-GPM +V-IAI-3P +A-APM +V-AAI-3S +F-3ASM +V-AAN +PRT-N +V-PNI-3S +T-NSM +N-NSM +T-NSM +N-NSM +N-PRI +V-2AAM-3S +ADV +PREP +T-GSM +N-GSM +CONJ +V-2AAS-1P +CONJ +V-AAS-1P +CONJ +T-NPM +V-RPP-NPM +PREP +P-DSM +V-IAI-3P +P-ASM +CONJ +V-2ADP-GSF +N-GSF +A-GSF +N-NSN +V-2ADI-3S +PREP +A-ASF +T-ASF +N-ASF +ADV +N-GSF +A-GSF +CONJ +T-DSF +A-DSF +N-DSF +V-AAI-3S +T-NSM +N-NSM +N-DSF +A-DSF +ARAM +ARAM +ARAM +ARAM +R-NSN +V-PAI-3S +V-PPP-NSN +T-NSM +N-NSM +P-1GS +T-NSM +N-NSM +P-1GS +PREP +I-ASN +V-2AAI-2S +P-1AS +CONJ +X-NPM +T-GPM +V-RAP-GPM +V-AAP-NPM +V-IAI-3P +V-2AAM-2S +N-ASM +V-PAI-3S +CONJ +X-NSM +V-2AAP-NSM +CONJ +V-AAP-NSM +N-ASM +N-GSN +V-2AAP-NSM +N-DSM +V-IAI-3S +P-ASM +V-PAP-NSM +V-2AAM-2P +V-2AAS-1P +COND +V-PNI-3S +N-NSM +V-2AAN +P-ASM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +N-ASF +A-ASF +V-AAI-3S +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +V-API-3S +PREP +A-NUI +PREP +ADV +ADV +ADV +CONJ +T-NSM +N-NSM +T-NSM +V-RAP-NSM +PREP +A-GSF +P-GSM +V-2AAP-NSM +CONJ +ADV +V-AAI-3S +V-2AAI-3S +ADV +D-NSM +T-NSM +N-NSM +N-NSM +N-GSM +V-IAI-3S +CONJ +V-IAI-3P +CONJ +N-NPF +PREP +ADV +V-PAP-NPF +PREP +R-DPF +CONJ +N-NSF +T-NSF +N-NSF +CONJ +N-NSF +T-NSF +N-GSM +T-GSM +A-GSM +CONJ +N-GSM +N-NSF +CONJ +N-NSF +R-NPF +ADV +V-IAI-3S +PREP +T-DSF +N-DSF +V-IAI-3P +P-DSM +CONJ +V-IAI-3P +P-DSM +CONJ +A-NPF +A-NPF +T-NPF +V-2AAP-NPF +P-DSM +PREP +N-APN +CONJ +ADV +A-GSF +V-2ADP-GSF +CONJ +V-IAI-3S +N-NSF +R-NSN +V-PAI-3S +N-NSN +V-2AAP-NSM +N-PRI +T-NSM +PREP +N-GSF +A-NSM +N-NSM +R-NSM +CONJ +P-NSM +V-IAI-3S +V-PNP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +V-AAP-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +CONJ +V-AMI-3S +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-AAI-3S +COND +ADV +V-RAI-3S +CONJ +V-ADP-NSM +T-ASM +N-ASM +V-AAI-3S +P-ASM +COND +ADV +V-2AAI-3S +CONJ +V-2AAP-NSM +PREP +T-GSM +N-GSM +V-ADI-3S +T-ASN +N-ASN +T-DSM +N-PRI +CONJ +V-AAP-NSM +N-ASF +V-2AAP-NSM +P-ASM +V-AAI-3S +T-DSF +N-DSF +CONJ +V-AAI-3S +P-ASM +PREP +N-DSN +R-NSN +V-IAI-3S +V-RPP-NSN +PREP +N-GSF +CONJ +V-AAI-3S +N-ASM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +T-NSF +N-NSF +T-NSF +N-NSF +CONJ +N-NSF +T-NSF +N-GSM +V-IAI-3P +ADV +V-RPI-3S +CONJ +V-2ADP-GSN +T-GSN +N-GSN +N-NSF +T-NSF +N-NSF +CONJ +N-NSF +T-NSF +T-GSM +N-GSM +CONJ +N-NSF +V-AAI-3P +N-APN +CONJ +V-2AAP-NPF +V-AAS-3P +P-ASM +CONJ +ADV +ADV +T-DSF +A-DSF +T-GPN +N-GPN +V-PNI-3P +PREP +T-ASN +N-ASN +V-AAP-GSM +T-GSM +N-GSM +CONJ +V-IAI-3P +PREP +F-3APF +I-NSM +V-FAI-3S +P-1DP +T-ASM +N-ASM +PREP +T-GSF +N-GSF +T-GSN +N-GSN +CONJ +V-AAP-NPF +V-PAI-3P +CONJ +V-RPI-3S +T-NSM +N-NSM +CONJ +V-IAI-3S +A-NSM +ADV +CONJ +V-2AAP-NPF +PREP +T-ASN +N-ASN +V-2AAI-3P +N-ASM +V-PNP-ASM +PREP +T-DPN +A-DPN +V-RPP-ASM +N-ASF +A-ASF +CONJ +V-API-3P +CONJ +T-NSM +V-PAI-3S +P-DPF +PRT-N +V-PPM-2P +V-PAI-2P +N-ASM +T-ASM +A-ASM +T-ASM +V-RPP-ASM +V-API-3S +PRT-N +V-PAI-3S +ADV +V-2AAM-2S +T-NSM +N-NSM +ADV +V-AAI-3P +P-ASM +CONJ +V-PAM-2P +V-2AAM-2P +T-DPM +N-DPM +P-GSM +CONJ +T-DSM +N-DSM +CONJ +V-PAI-3S +P-2AP +PREP +T-ASF +N-ASF +ADV +P-ASM +V-FDI-2P +ADV +V-2AAI-3S +P-2DP +CONJ +V-2AAP-NPF +V-2AAI-3P +PREP +T-GSN +N-GSN +CONJ +V-IAI-3S +P-APF +N-NSM +CONJ +N-NSF +CONJ +A-DSM-N +A-ASN-N +V-2AAI-3P +CONJ +V-INI-3P +CONJ +V-2AAP-NSM +ADV +A-DSF-S +N-GSN +V-2API-3S +ADV-S +N-DSF +T-DSF +N-DSF +PREP +R-GSF +V-LAI-3S +A-NUI +N-APN +D-NSF +V-AOP-NSF +V-AAI-3S +T-DPM +PREP +P-GSM +V-2ADP-DPM +V-PAP-DPM +CONJ +V-PAP-DPM +D-NPM-K +V-AAP-NPM +CONJ +V-PAI-3S +CONJ +V-API-3S +PREP +P-GSF +V-AAI-3P +CONJ +PREP +D-APN +A-DPM +PREP +P-GPM +V-PAP-DPM +V-API-3S +PREP +A-DSF +N-DSF +V-PNP-DPM +PREP +N-ASM +D-NPM-K +V-2AAP-NPM +V-AAI-3P +T-DPM +A-DPM +CONJ-N +D-DPM +V-AAI-3P +CONJ +ADV +V-PNP-DPM +P-DPM +T-DPM +A-NUI +V-API-3S +CONJ +V-AAI-3S +T-ASF +N-ASF +P-GPM +CONJ +N-ASF +CONJ +T-DPM +V-ADP-DPM +P-ASM +V-RPP-ASM +PRT-N +V-AAI-3P +CONJ +V-2AAI-3S +P-DPM +V-AOP-NPM +PREP +T-ASM +N-ASM +A-ASM +V-AAM-2P +T-ASN +N-ASN +A-DSF +T-DSF +N-DSF +T-NSM +V-AAP-NSM +CONJ +V-APP-NSM +V-FPI-3S +CONJ +T-NSM +V-AAP-NSM +V-FPI-3S +CONJ +N-NPN +D-NPN +T-DPM +V-AAP-DPM +V-FAI-3S +PREP +T-DSN +N-DSN +P-1GS +N-APN +V-FAI-3P +N-DPF +A-DPF +V-FAI-3P +N-APM +V-FAI-3P +COND-K +A-ASN +X-ASN +V-2AAS-3P +PRT-N +PRT-N +P-APM +V-AAS-3S +PREP +A-APM +N-APF +V-FAI-3P +CONJ +ADV +V-FAI-3P +PRT +CONJ +T-NSM +N-NSM +N-NSM +PREP +T-ASN +V-AAN +P-DPM +V-API-3S +PREP +T-ASM +N-ASM +CONJ +V-AAI-3S +PREP +A-GPN +T-GSM +N-GSM +CONJ +D-NPM +V-2AAP-NPM +V-AAI-3P +ADV +T-GSM +N-GSM +V-PAP-GSM +CONJ +T-ASM +N-ASM +V-PAP-GSM +PREP +T-GPN +V-PAP-GPN +N-GPN +CONJ +A-APN +T-APN +V-RPP-APN +T-DPM +PREP +T-ASM +N-ASM +ADV +V-AAI-3P +CONJ +PREP +D-APN +CONJ +P-NSM +T-NSM +N-NSM +PREP +N-GSF +CONJ +ADV +N-GSF +V-AAI-3S +PREP +P-GPM +T-ASN +A-ASN +CONJ +A-ASM +N-ASN +T-GSF +A-GSF +N-GSF +CONJ +A-NPM +V-AAI-3P +V-ADN +N-ASF +PREP +T-GPN +V-RPP-GPN +PREP +P-1DP +N-GPN +ADV +V-2AAI-3P +P-1DP +T-NPM +PREP +N-GSF +N-NPM +CONJ +N-NPM +V-2ADP-NPM +T-GSM +N-GSM +V-AAI-3S +P-1DS-K +V-RAP-DSM +ADV +A-DPN +ADV +ADV +P-2DS +V-AAN +A-VSM-S +N-VSM +CONJ +V-2AAS-2S +PREP +R-GPM +V-API-2S +N-GPM +T-ASF +N-ASF +V-2ADI-3S +PREP +T-DPF +N-DPF +N-GSM +N-GSM +T-GSF +N-GSF +N-NSM +X-NSM +N-DSN +N-NSM +PREP +N-GSF +N-PRI +CONJ +N-NSF +P-DSM +PREP +T-GPF +N-GPF +N-PRI +CONJ +T-NSN +N-NSN +P-GSF +N-PRI +CONJ +V-IAI-3P +A-NPM +A-NPM +PREP +T-GSM +N-GSM +V-PNP-NPM +PREP +A-DPF +T-DPF +N-DPF +CONJ +N-DPN +T-GSM +N-GSM +A-NPM +CONJ +PRT-N +V-IAI-3S +P-DPM +N-NSN +CONJ +V-IAI-3S +T-NSF +N-PRI +N-NSF +CONJ +A-NPM +V-RAP-NPM +V-IAI-3P +PREP +T-DPF +N-DPF +P-GPM +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-ASM +PREP +T-DSF +N-DSF +T-GSF +N-GSF +P-GSM +PREP +T-GSM +N-GSM +PREP +T-ASN +N-ASN +T-GSF +N-GSF +V-2AAI-3S +T-GSN +V-AAN +V-2AAP-NSM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +A-NSN +T-NSN +N-NSN +T-GSM +N-GSM +V-IAI-3S +V-PNP-NSN +ADV +T-DSF +N-DSF +T-GSN +N-GSN +CONJ +V-API-3S +P-DSM +N-NSM +N-GSM +V-RAP-NSM +PREP +A-GPN +T-GSN +N-GSN +T-GSN +N-GSN +CONJ +V-API-3S +N-NSM +V-2AAP-NSM +CONJ +N-NSM +V-2AAI-3S +PREP +P-ASM +CONJ +V-2AAI-3S +PREP +P-ASM +T-NSM +N-NSM +PRT-N +V-PNM-2S +N-VSM +CONJ +V-API-3S +T-NSF +N-NSF +P-2GS +CONJ +T-NSF +N-NSF +P-2GS +N-PRI +V-FAI-3S +N-ASM +P-2DS +CONJ +V-FAI-2S +T-ASN +N-ASN +P-GSM +N-ASM +CONJ +V-FDI-3S +P-2DS +N-NSF +CONJ +N-NSF +CONJ +A-NPM +PREP +T-DSF +N-DSF +P-GSM +V-2FOI-3P +CONJ +V-FDI-3S +A-NSM +PREP +N-GSM +CONJ +N-ASM +CONJ +N-OI +PRT-N +PRT-N +V-2AAS-3S +CONJ +N-GSN +A-GSN +V-FPI-3S +ADV +PREP +N-GSF +N-GSF +P-GSM +CONJ +A-APM +T-GPM +N-GPM +N-PRI +V-FAI-3S +PREP +N-ASM +T-ASM +N-ASM +P-GPM +CONJ +P-NSM +V-FDI-3S +PREP +P-GSM +PREP +N-DSN +CONJ +N-DSF +N-GSM +V-AAN +N-APF +N-GPM +PREP +N-APN +CONJ +A-APM +PREP +N-DSF +A-GPM +V-AAN +N-DSM +N-ASM +V-RPP-ASM +CONJ +V-2AAI-3S +N-NSM +PREP +T-ASM +N-ASM +PREP +I-ASN +V-FDI-1S +D-ASN +CONJ +P-1NS +V-PAI-1S +N-NSM +CONJ +T-NSF +N-NSF +P-1GS +V-RAP-NSF +PREP +T-DPF +N-DPF +P-GSF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +P-1NS +V-PAI-1S +N-PRI +T-NSM +V-RAP-NSM +PREP +T-GSM +N-GSM +CONJ +V-2API-1S +V-AAN +PREP +P-2AS +CONJ +V-AMN +P-2DS +D-APN +CONJ +V-2AMM-2S +V-FDI-2S +V-PAP-NSM +CONJ +PRT-N +V-PNP-NSM +V-AAN +ADV +R-GSF +N-GSF +V-2ADS-3S +D-NPN +PREP +R-GPM +PRT-N +V-AAI-2S +T-DPM +N-DPM +P-1GS +R-NPM +V-FPI-3P +PREP +T-ASM +N-ASM +P-GPM +CONJ +V-IAI-3S +V-PAP-NSM +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +V-IAI-3P +PREP +T-DSN +V-PAN +PREP +T-DSM +N-DSM +P-ASM +CONJ +V-2AAP-NSM +PRT-N +V-INI-3S +V-AAN +P-DPM +CONJ +V-2AAI-3P +CONJ +N-ASF +V-RAI-3S-ATT +PREP +T-DSM +N-DSM +CONJ +P-NSM +V-IAI-3S +V-PAP-NSM +P-DPM +CONJ +V-IAI-3S +A-NSM +CONJ +V-2ADI-3S +ADV +V-API-3P +T-NPF +N-NPF +T-GSF +N-GSF +P-GSM +V-2AAI-3S +PREP +T-ASM +N-ASM +P-GSM +CONJ +PREP +D-APF +T-APF +N-APF +V-2AAI-3S +N-PRI +T-NSF +N-NSF +P-GSM +CONJ +V-IAI-3S +F-3ASF +N-APM +A-NUI +V-PAP-NSF +CONJ +ADV +P-1DS +V-RAI-3S +N-NSM +PREP +N-DPF +R-DPF +V-2AAI-3S +V-2AAN +N-ASN +P-1GS +PREP +N-DPM +CONJ +PREP +T-DSM +N-DSM +T-DSM +A-DSM +V-2API-3S +T-NSM +N-NSM +N-PRI +PREP +T-GSM +N-GSM +PREP +N-ASF +T-GSF +N-GSF +R-DSF +N-NSN +N-PRI +PREP +N-ASF +V-RPP-ASF +N-DSM +R-DSM +N-NSN +N-PRI +PREP +N-GSM +N-PRI +CONJ +T-NSN +N-NSN +T-GSF +N-GSF +N-PRI +CONJ +V-2AAP-NSM +PREP +P-ASF +V-2AAI-3S +V-PAM-2S +V-RPP-NSF +T-NSM +N-NSM +PREP +P-2GS +CONJ +T-NSF +PREP +T-DSM +N-DSM +V-API-3S +CONJ +V-INI-3S +A-NSM +V-PAO-3S +T-NSM +N-NSM +D-NSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +P-DSF +PRT-N +V-PNM-2S +N-PRI +CONJ +V-2AAI-2S +N-ASF +PREP +T-DSM +N-DSM +CONJ +V-2AMM-2S +V-FDI-2S +PREP +N-DSF +CONJ +V-FDI-2S +N-ASM +CONJ +V-FAI-2S +T-ASN +N-ASN +P-GSM +N-ASM +D-NSM +V-FDI-3S +A-NSM +CONJ +N-NSM +A-GSM-S +V-FPI-3S +CONJ +V-FAI-3S +P-DSM +N-NSM +T-NSM +N-NSM +T-ASM +N-ASM +N-PRI +T-GSM +N-GSM +P-GSM +CONJ +V-FAI-3S +PREP +T-ASM +N-ASM +N-PRI +PREP +T-APM +N-APM +CONJ +T-GSF +N-GSF +P-GSM +PRT-N +V-FDI-3S +N-NSN +CONJ +V-2AAI-3S +N-PRI +PREP +T-ASM +N-ASM +ADV-I +V-FDI-3S +D-NSN +CONJ +N-ASM +PRT-N +V-PAI-1S +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSF +N-NSN +A-NSN +V-FDI-3S +PREP +P-2AS +CONJ +N-NSF +A-GSM-S +V-FAI-3S +P-2DS +CONJ +CONJ +T-NSN +V-PPP-NSN +A-NSN +V-FPI-3S +N-NSM +N-GSM +CONJ +V-2AMM-2S +N-PRI +T-NSF +N-NSF +P-2GS +CONJ +P-NSF +V-2RAI-3S +N-ASM +PREP +N-DSN +P-GSF +CONJ +D-NSM +N-NSM +A-NSM +V-PAI-3S +P-DSF +T-DSF +V-PPP-DSF +N-DSF +CONJ +PRT-N +V-FAI-3S +PREP +T-GSM +N-GSM +A-NSN +N-NSN +CONJ +V-2AAI-3S +N-PRI +V-2AMM-2S +T-NSF +N-NSF +N-GSM +V-2ADO-3S +P-1DS +PREP +T-ASN +N-ASN +P-2GS +CONJ +V-2AAI-3S +PREP +P-GSF +T-NSM +N-NSM +CONJ +N-PRI +V-2AAP-NSF +PREP +T-DPF +N-DPF +D-DPF +V-AOI-3S +PREP +T-ASF +A-ASF +PREP +N-GSF +PREP +N-ASF +N-GSM +CONJ +V-2AAI-3S +PREP +T-ASM +N-ASM +N-GSM +CONJ +V-ADI-3S +T-ASF +N-PRI +CONJ +V-2ADI-3S +ADV +V-AAI-3S +T-ASM +N-ASM +T-GSF +N-GSF +T-NSF +N-PRI +V-AAI-3S +T-NSN +N-NSN +PREP +T-DSF +N-DSF +P-GSF +CONJ +V-API-3S +N-GSN +A-GSN +T-NSF +N-PRI +CONJ +V-AAI-3S +N-DSF +A-DSF +CONJ +V-2AAI-3S +V-RPP-NSF +P-2NS +PREP +N-DPF +CONJ +V-RPP-NSM +T-NSM +N-NSM +T-GSF +N-GSF +P-2GS +CONJ +ADV-I +P-1DS +D-NSN +CONJ +V-2AAS-3S +T-NSF +N-NSF +T-GSM +N-GSM +P-1GS +PREP +P-1AS +CONJ +V-2AMM-2S +ADV +V-2ADI-3S +T-NSF +N-NSF +T-GSM +N-GSM +P-2GS +PREP +T-APN +N-APN +P-1GS +V-AAI-3S +PREP +N-DSF +T-NSN +N-NSN +PREP +T-DSF +N-DSF +P-1GS +CONJ +A-NSF +T-NSF +V-AAP-NSF +CONJ +V-FDI-3S +N-NSF +T-DPN +V-RPP-DPN +P-DSF +PREP +N-GSM +CONJ +V-2AAI-3S +N-PRI +V-PAI-3S +T-NSF +N-NSF +P-1GS +T-ASM +N-ASM +CONJ +V-AAI-3S +T-NSN +N-NSN +P-1GS +PREP +T-DSM +N-DSM +T-DSM +N-DSM +P-1GS +CONJ +V-AAI-3S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +P-GSM +CONJ +V-2AMM-2S +PREP +T-GSM +ADV +V-FAI-3P-ATT +P-1AS +A-NPF +T-NPF +N-NPF +CONJ +V-AAI-3S +P-1DS +A-APN +T-NSM +A-NSM +CONJ +A-ASN +T-NSN +N-NSN +P-GSM +CONJ +T-NSN +N-NSN +P-GSM +PREP +N-APF +CONJ +N-APF +T-DPM +V-PNP-DPM +P-ASM +V-AAI-3S +N-ASN +PREP +N-DSM +P-GSM +V-AAI-3S +A-APM +N-DSF +N-GSF +P-GPM +V-2AAI-3S +N-APM +PREP +N-GPM +CONJ +V-AAI-3S +A-APM +V-PAP-APM +V-AAI-3S +A-GPM +CONJ +V-PAP-APM +V-AAI-3S +A-APM +V-2ADI-3S +N-PRI +N-GSM +P-GSM +V-APN +N-GSN +T-DSM +N-PRI +CONJ +T-DSN +N-DSN +P-GSM +PREP +T-ASM +N-ASM +ADV +V-AAI-3S +PREP +T-APM +N-APM +P-1GP +CONJ +V-AAI-3S +N-PRI +PREP +P-DSF +ADV +N-APM +A-APM +CONJ +V-AAI-3S +PREP +T-ASM +N-ASM +P-GSF +CONJ +T-DSF +N-PRI +V-API-3S +T-NSM +N-NSM +T-GSN +V-2AAN +P-ASF +CONJ +V-AAI-3S +N-ASM +CONJ +V-AAI-3P +T-NPM +A-NPM +CONJ +T-NPM +A-NPM +P-GSF +CONJ +V-IAI-3S +N-NSM +T-ASN +N-ASN +P-GSM +PREP +P-GSF +CONJ +V-IAI-3P +P-DSF +CONJ +V-2ADI-3S +PREP +T-DSF +N-DSF +T-DSF +A-DSF +V-2AAI-3P +V-2AAN +T-ASN +N-ASN +CONJ +V-IAI-3P +P-ASN +PREP +T-DSN +N-DSN +T-GSM +N-GSM +P-GSM +N-ASM +CONJ +V-AOP-NSF +T-NSF +N-NSF +P-GSM +V-2AAI-3S +PRT-N +CONJ +V-FPI-3S +N-NSM +CONJ +V-2AAI-3P +PREP +P-ASF +CONJ +V-PAI-3S +PREP +T-GSF +N-GSF +P-2GS +A-NSM-N +R-NSM +V-PPI-3S +T-DSN +N-DSN +D-DSN +CONJ +V-IAI-3P +T-DSM +N-DSM +P-GSM +T-ASN +PRT +V-PAO-3S +I-ASN +V-PPN +P-ASN +CONJ +V-AAP-NSM +N-ASN +V-AAI-3S +V-PAP-NSM +N-NSM +V-PAI-3S +N-NSN +P-GSM +CONJ +V-AAI-3P +A-NPM +CONJ +V-API-3S +T-NSN +N-NSN +P-GSM +ADV +CONJ +T-NSF +N-NSF +P-GSM +CONJ +V-IAI-3S +V-PAP-NSM +T-ASM +N-ASM +CONJ +V-2ADI-3S +N-NSM +PREP +A-APM +T-APM +V-PAP-APM +P-APM +CONJ +PREP +A-DSF +T-DSF +A-DSF +T-GSF +N-GSF +V-IPI-3S +A-NPN +T-NPN +N-NPN +D-NPN +CONJ +V-2AMI-3P +A-NPM +T-NPM +V-AAP-NPM +PREP +T-DSF +N-DSF +P-GPM +V-PAP-NPM +PRT-I +I-NSN +T-NSN +N-NSN +D-NSN +V-FDI-3S +CONJ +CONJ +N-NSF +N-GSM +V-IAI-3S +PREP +P-GSM +CONJ +N-NSM +T-NSM +N-NSM +P-GSM +V-API-3S +N-GSN +A-GSN +CONJ +V-AAI-3S +V-PAP-NSM +A-NSM +N-NSM +T-NSM +N-NSM +T-GSM +N-PRI +CONJ +V-ADI-3S +CONJ +V-AAI-3S +N-ASF +T-DSM +N-DSM +P-GSM +CONJ +V-AAI-3S +N-ASN +N-GSF +P-1DP +PREP +N-DSM +N-PRI +N-GSM +P-GSM +ADV +V-AAI-3S +PREP +N-GSN +T-GPM +A-GPM +PREP +N-GSM +N-GPM +P-GSM +N-ASF +PREP +A-GPM +P-1GP +CONJ +PREP +N-GSF +A-GPM +T-GPM +V-PAP-GPM +P-1AP +V-AAN +N-ASN +PREP +T-GPM +N-GPM +P-1GP +CONJ +V-APN +N-GSF +A-GSF +P-GSM +N-ASM +R-ASM +V-AAI-3S +PREP +N-PRI +T-ASM +N-ASM +P-1GP +T-GSN +V-2AAN +P-1DP +PREP +N-GSF +A-GPM +V-APP-APM +ADV +V-PAN +P-DSM +PREP +N-DSF +CONJ +N-DSF +PREP +P-GSM +A-DPF +T-DPF +N-DPF +P-1GP +CONJ +N-VSN +CONJ +P-2NS +N-NSM +A-GSM-S +V-FPI-2S +CONJ +V-FDI-2S +PREP +N-GSM +V-AAN +N-APF +P-GSM +T-GSN +V-2AAN +N-ASF +N-GSF +T-DSM +N-DSM +P-GSM +PREP +N-DSF +N-GPF +P-GPM +PREP +N-APN +N-GSN +N-GSM +P-1GP +PREP +R-DPN +V-FDI-3S +P-1AP +N-NSF +PREP +N-GSN +V-AAN +T-DPM +PREP +N-DSN +CONJ +N-DSF +N-GSM +V-PNP-DPM +T-GSN +V-AAN +T-APM +N-APM +P-1GP +PREP +N-ASF +N-GSF +CONJ +T-NSN +N-NSN +V-IAI-3S +CONJ +V-IPI-3S +N-DSN +CONJ +V-IAI-3S +PREP +T-DPF +A-DPF +ADV +N-GSF +N-GSF +P-GSM +PREP +T-ASM +N-PRI +CONJ +V-2ADI-3S +PREP +T-DPF +N-DPF +D-DPF +V-2AAI-3S +N-NSN +PREP +N-GSM +N-GSM +V-PEN +A-ASF +T-ASF +N-ASF +D-NSF +N-NSF +A-NSF-S +V-2ADI-3S +V-PAP-GSM +T-GSF +N-GSF +N-GSM +CONJ +V-INI-3P +A-NPM +V-PPN +A-NSM +PREP +T-ASF +F-3GSM +N-ASF +CONJ +V-2AAI-3S +CONJ +N-PRI +PREP +T-GSF +N-GSF +PREP +N-GSF +N-PRI +PREP +T-ASF +N-ASF +PREP +N-ASF +N-PRI +R-NSF +V-PPI-3S +N-PRI +PREP +T-ASN +V-PAN +P-ASM +PREP +N-GSM +CONJ +N-GSF +N-PRI +V-AMN +PREP +N-PRI +T-DSF +V-RPP-DSF +P-DSM +V-PAP-DSF +N-DSF +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-APM +ADV +V-API-3P +T-NPF +N-NPF +T-GSN +V-2AAN +P-ASF +CONJ +V-2AAI-3S +T-ASM +N-ASM +P-GSF +T-ASM +A-ASM-S +CONJ +V-AAI-3S +P-ASM +CONJ +V-AAI-3S +P-ASM +PREP +N-DSF +CONJ +PRT-N +V-IAI-3S +P-DPM +N-NSM +PREP +T-DSN +N-DSN +CONJ +N-NPM +V-IAI-3P +PREP +T-DSF +N-DSF +T-DSF +P-DSF +V-PAP-NPM +CONJ +V-PAP-NPM +N-APF +T-GSF +N-GSF +PREP +T-ASF +N-ASF +P-GPM +CONJ +N-NSM +N-GSM +V-2AAI-3S +P-DPM +CONJ +N-NSF +N-GSM +V-AAI-3S +P-APM +CONJ +V-AOI-3P +N-ASM +A-ASM +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +PRT-N +V-PNM-2P +CONJ +V-2AMM-2S +V-PMI-1S +P-2DP +N-ASF +A-ASF +R-NSF +V-FDI-3S +A-DSM +T-DSM +N-DSM +CONJ +V-API-3S +P-2DP +ADV +N-NSM +R-NSM +V-PAI-3S +N-NSM +N-NSM +PREP +N-DSF +N-PRI +CONJ +D-NSN +P-2DP +N-NSN +V-FAI-2P +N-ASN +V-RPP-ASN +CONJ +V-PNP-ASN +PREP +N-DSF +CONJ +ADV +V-2ADI-3S +PREP +T-DSM +N-DSM +N-NSN +N-GSF +A-GSF +V-PAP-GPM +T-ASM +N-ASM +CONJ +V-PAP-GPM +N-NSF +PREP +A-DPN-S +N-DSM +CONJ +PREP +N-GSF +N-NSF +PREP +N-DPM +N-GSF +CONJ +V-2ADI-3S +ADV +V-2AAI-3P +PREP +P-GPM +PREP +T-ASM +N-ASM +T-NPM +N-NPM +T-NPM +N-NPM +V-IAI-3P +PREP +C-APM +PRT +V-2AAS-1P +ADV +N-PRI +CONJ +V-2AAS-1P +T-ASN +N-ASN +D-ASN +T-ASN +V-2RAP-ASN +R-ASN +T-NSM +N-NSM +V-AAI-3S +P-1DP +CONJ +V-2AAI-3P +V-AAP-NPM +CONJ +V-2AAI-3P +PRT +T-ASF +N-PRI +CONJ +T-ASM +N-PRI +CONJ +T-ASN +N-ASN +V-PNP-ASN +PREP +T-DSF +N-DSF +CONJ +V-2AAP-NPM +V-AAI-3P +PREP +T-GSN +N-GSN +T-GSN +V-APP-GSN +P-DPM +PREP +T-GSN +N-GSN +D-GSN +CONJ +A-NPM +T-NPM +V-AAP-NPM +V-AAI-3P +PREP +T-GPN +V-APP-GPN +PREP +T-GPM +N-GPM +PREP +P-APM +CONJ +T-NSF +N-NSF +V-IAI-3S +A-APN +T-APN +N-APN +D-APN +V-PAP-NSF +PREP +T-DSF +N-DSF +P-GSF +CONJ +V-AAI-3P +T-NPM +N-NPM +V-PAP-NPM +CONJ +V-PAP-NPM +T-ASM +N-ASM +PREP +A-DPN +R-DPN +V-AAI-3P +CONJ +V-2AAI-3P +ADV +V-API-3S +PREP +P-APM +CONJ +ADV +V-API-3P +N-NPF +A-NUI +T-GSN +V-2AAN +P-ASM +CONJ +V-API-3S +T-NSN +N-NSN +P-GSM +N-NSM +T-NSN +V-APP-NSN +PREP +T-GSM +N-GSM +PREP +T-GSN +V-APN +P-ASM +PREP +T-DSF +N-DSF +CONJ +ADV +V-API-3P +T-NPF +N-NPF +T-GSM +N-GSM +P-GPM +PREP +T-ASM +N-ASM +N-GSM +V-2AAI-3P-ATT +P-ASM +PREP +N-APN +V-AAN +T-DSM +N-DSM +ADV +V-RPI-3S +PREP +N-DSM +N-GSM +CONJ +A-NSN +A-NSN +V-PAP-NSN +N-ASF +A-ASN +T-DSM +N-DSM +V-FPI-3S +CONJ +T-GSN +V-2AAN +N-ASF +PREP +T-ASN +V-RPP-ASN-ATT +PREP +T-DSM +N-DSM +N-GSM +N-ASN +N-GPF +PRT +A-NUI +N-APM +N-GPF +CONJ +V-2AMM-2S +N-NSM +V-IAI-3S +PREP +N-PRI +R-DSM +N-NSN +N-PRI +CONJ +T-NSM +N-NSM +D-NSM +A-NSM +CONJ +A-NSM +V-PNP-NSM +N-ASF +T-GSM +N-PRI +CONJ +N-NSN +A-NSN +V-IAI-3S +PREP +P-ASM +CONJ +V-IAI-3S +V-RPP-NSN +P-DSM +PREP +T-GSN +N-GSN +T-GSN +A-GSN +PRT-N +V-2AAN +N-ASM +ADV +PRT +PRT +V-2AAS-3S +T-ASM +N-ASM +N-GSM +CONJ +V-2AAI-3S +PREP +T-DSN +N-DSN +PREP +T-ASN +N-ASN +CONJ +PREP +T-DSN +V-2AAN +T-APM +N-APM +T-ASN +N-ASN +N-ASM +T-GSN +V-AAN +P-APM +PREP +T-ASN +V-RPP-ASN +T-GSM +N-GSM +PREP +P-GSM +CONJ +P-NSM +V-ADI-3S +P-ASN +PREP +T-APF +N-APF +CONJ +V-AAI-3S +T-ASM +N-ASM +CONJ +V-2AAI-3S +N-VSM +ADV +V-PAI-2S +T-ASM +N-ASM +P-2GS +PREP +T-ASN +N-ASN +P-2GS +PREP +N-DSF +CONJ +V-2AAI-3P +T-NPM +N-NPM +P-1GS +T-ASN +A-ASN +P-2GS +R-ASN +V-AAI-2S +PREP +N-ASN +A-GPM +T-GPM +N-GPM +N-NSN +PREP +N-ASF +N-GPN +CONJ +N-ASF +N-GSM +P-2GS +N-PRI +CONJ +V-IAI-3S +V-PAP-NPM +T-NSM +N-NSM +P-GSM +CONJ +T-NSF +N-NSF +PREP +T-DPN +V-PPP-DPN +PREP +P-GSM +CONJ +V-AAI-3S +P-APM +N-PRI +CONJ +V-2AAI-3S +PREP +N-PRI +T-ASF +N-ASF +P-GSM +V-2AMM-2S +D-NSM +V-PNI-3S +PREP +N-ASF +CONJ +N-ASF +A-GPM +PREP +T-DSM +N-PRI +CONJ +PREP +N-ASN +V-PPP-ASN +CONJ +CONJ +P-2GS +P-GSF +T-ASF +N-ASF +V-FDI-3S +N-NSF +ADV +PRT +V-APS-3P +PREP +A-GPF +N-GPF +N-NPM +CONJ +V-IAI-3S +N-NSF +N-NSF +N-NSF +N-PRI +PREP +N-GSF +N-PRI +D-NSF +V-RAP-NSF +PREP +N-DPF +A-DPF +V-AAP-NSF +PREP +N-GSM +N-APN +A-NUI +PREP +T-GSF +N-GSF +P-GSF +CONJ +P-NSF +N-NSF +ADV +N-GPN +A-NUI +A-GPN +R-NSF +PRT-N +V-INI-3S +T-GSN +N-GSN +N-DPF +CONJ +N-DPF +V-PAP-NSF +N-ASF +CONJ +N-ASF +CONJ +P-DSF +T-DSF +N-DSF +V-2AAP-NSF +V-INI-3S +T-DSM +N-DSM +CONJ +V-IAI-3S +PREP +P-GSM +A-DPM +T-DPM +V-PNP-DPM +N-ASF +N-PRI +CONJ +ADV +V-AAI-3P +A-APN +T-APN +PREP +T-ASM +N-ASM +N-GSM +V-AAI-3P +PREP +T-ASF +N-ASF +PREP +N-ASF +F-3GPM +N-PRI +CONJ +T-NSN +N-NSN +V-IAI-3S +CONJ +V-IPI-3S +V-PPP-NSN +N-DSF +CONJ +N-NSF +N-GSM +V-IAI-3S +PREP +P-ASN +CONJ +V-INI-3P +T-NPM +N-NPM +P-GSM +PREP +N-ASN +PREP +N-PRI +T-DSF +N-DSF +T-GSM +ARAM +CONJ +ADV +V-2ADI-3S +N-GPN +A-NUI +V-PAP-GPM +P-GPM +PREP +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +V-AAP-GPM +T-APF +N-APF +PREP +T-DSN +V-PAN +P-APM +V-AAI-3S +N-NSM +T-NSM +N-NSM +PREP +N-PRI +CONJ +PRT-N +V-2AAI-3P +T-NPM +N-NPM +P-GSM +CONJ +V-AAP-NPM +P-ASM +V-PAN +PREP +T-DSF +N-DSF +V-2AAI-3P +N-GSF +N-ASF +CONJ +V-IAI-3P +P-ASM +PREP +T-DPM +A-DPM +CONJ +T-DPM +A-DPM +CONJ +PRT-N +V-2AAP-NPM +V-AAI-3P +PREP +N-PRI +V-PAP-NPM +P-ASM +CONJ +V-2ADI-3S +PREP +N-APF +A-APF +V-2AAI-3P +P-ASM +PREP +T-DSN +N-DSN +V-PNP-ASM +PREP +A-DSN +T-GPM +N-GPM +CONJ +V-PAP-ASM +P-GPM +CONJ +V-PAP-ASM +P-APM +CONJ +V-IMI-3P +A-NPM +T-NPM +V-PAP-NPM +P-GSM +PREP +T-DSF +N-DSF +CONJ +T-DPF +N-DPF +P-GSM +CONJ +V-2AAP-NPM +P-ASM +V-2API-3P +CONJ +V-2AAI-3S +PREP +P-ASM +T-NSF +N-NSF +P-GSM +N-VSN +I-ASN +V-AAI-2S +P-1DP +ADV +V-2AMM-2S +T-NSM +N-NSM +P-2GS +P-1NS-K +V-PPP-NPM +V-PAI-1P +P-2AS +CONJ +V-2AAI-3S +PREP +P-APM +I-NSN +CONJ +V-IAI-2P +P-1AS +PRT-N +V-2LAI-2P +CONJ +PREP +T-DPN +T-GSM +N-GSM +P-1GS +V-PAN +P-1AS +V-PAI-3S +CONJ +P-NPM +PRT-N +V-AAI-3P +T-ASN +N-ASN +R-ASN +V-AAI-3S +P-DPM +CONJ +V-2AAI-3S +PREP +P-GPM +CONJ +V-2AAI-3S +PREP +N-PRI +CONJ +V-IAI-3S +V-PPP-NSM +P-DPM +CONJ +T-NSF +N-NSF +P-GSM +V-IAI-3S +A-APN +T-APN +N-APN +PREP +T-DSF +N-DSF +P-GSF +CONJ +N-NSM +V-IAI-3S +PREP +T-DSF +N-DSF +CONJ +N-DSF +CONJ +N-DSF +PREP +N-DSM +CONJ +N-DPM +CONJ +PREP +N-DSN +A-DSN +T-GSF +N-GSF +N-GSM +N-GSM +V-PAP-GSM +N-GSM +N-GSM +T-GSF +N-GSF +CONJ +V-PAP-GSM +T-GSF +N-GSF +N-GSM +CONJ +N-GSM +T-GSM +N-GSM +P-GSM +V-PAP-GSM +T-GSF +A-GSF +CONJ +N-GSF +N-GSF +CONJ +N-GSM +T-GSF +N-GSF +V-PAP-GSM +PREP +N-GSM +N-GSM +CONJ +N-GSM +V-2ADI-3S +N-NSN +N-GSM +PREP +N-ASM +T-ASM +N-GSM +N-ASM +PREP +T-DSF +A-DSF +CONJ +V-2AAI-3S +PREP +A-ASF +T-ASF +A-ASF +T-GSM +N-GSM +V-PAP-NSM +N-ASN +N-GSF +PREP +N-ASF +N-GPF +ADV +V-RPI-3S +PREP +N-DSF +N-GPM +N-GSM +T-GSM +N-GSM +N-NSF +V-PAP-GSM +PREP +T-DSF +A-DSF +V-AAM-2P +T-ASF +N-ASF +N-GSM +A-APF +V-PAM-2P +T-APF +N-APF +P-GSM +A-NSF +N-NSF +V-FPI-3S +CONJ +A-NSN +N-NSN +CONJ +N-NSM +V-FPI-3S +CONJ +V-FDI-3S +T-NPN +A-NPN +PREP +A-APF +CONJ +T-NPF +A-NPF +PREP +N-APF +A-APF +CONJ +V-FDI-3S +A-NSF +N-NSF +T-ASN +A-ASN +T-GSM +N-GSM +CONJ +V-IAI-3S +T-DPM +V-PNP-DPM +V-APN +PREP +P-GSM +N-DPM +N-VPN +N-GPF +I-NSM +V-AAI-3S +P-2DP +V-2AAN +PREP +T-GSF +V-PAP-GSF +N-GSF +CONJ +V-AAM-2P +N-APM +A-APM +T-GSF +N-GSF +CONJ +PRT-N +V-AMS-2P +V-PAN +PREP +F-2DPM +N-ASM +V-PAI-1P +T-ASM +N-PRI +CONJ +V-PAI-1S +P-2DP +CONJ +V-PNI-3S +T-NSM +N-NSM +PREP +T-GPM +N-GPM +D-GPM +V-AAN +N-APN +T-DSM +N-PRI +CONJ +ADV +CONJ +T-NSF +N-NSF +PREP +T-ASF +N-ASF +T-GPN +N-GPN +V-PNI-3S +CONJ +A-NSN +N-NSN +PRT-N +V-PAP-NSN +N-ASM +A-ASM +V-PPI-3S +CONJ +PREP +N-ASN +V-PPI-3S +CONJ +V-IAI-3P +P-ASM +T-NPM +N-NPM +V-PAP-NPM +CONJ +I-ASN +V-AAS-1P +CONJ +V-AOP-NSM +V-IAI-3S +P-DPM +T-NSM +V-PAP-NSM +A-NUI +N-APM +V-2AAM-3S +T-DSM +PRT-N +V-PAP-DSM +CONJ +T-NSM +V-PAP-NSM +N-APN +ADV +V-PAM-3S +CONJ +V-2AAI-3P +CONJ +N-NPM +V-APN +CONJ +V-2AAI-3P +PREP +P-ASM +N-VSM +I-ASN +V-AAS-1P +CONJ +T-NSM +V-2AAI-3S +PREP +P-APM +A-ASN-N +A-ASN-C +PREP +T-ASN +V-RPP-ASN +P-2DP +V-PAM-2P +CONJ +V-IAI-3P +P-ASM +CONJ +V-PMP-NPM +V-PAP-NPM +I-ASN +V-AAS-1P +CONJ +P-1NP +CONJ +V-2AAI-3S +P-DPM +A-ASM-N +V-AAS-2P +CONJ-N +V-AAS-2P +CONJ +V-PPM-2P +T-DPN +N-DPN +P-2GP +CONJ +V-PAP-GSM +T-GSM +N-GSM +CONJ +V-PNP-GPM +A-GPM +PREP +T-DPF +N-DPF +P-GPM +PREP +T-GSM +N-GSM +PRT-N +ADV +P-NSM +V-PAO-3S +T-NSM +N-NSM +V-ADI-3S +V-PAP-NSM +A-DPM +T-NSM +N-NSM +PRT +P-1NS +N-DSN +V-PAI-1S +P-2AP +CONJ +V-PNI-3S +T-NSM +A-NSM-C +P-1GS +R-GSM +PRT-N +V-PAI-1S +A-NSM +V-AAN +T-ASM +N-ASM +T-GPN +N-GPN +P-GSM +P-NSM +P-2AP +V-FAI-3S +PREP +N-DSN +A-DSN +CONJ +N-DSN +R-GSM +T-NSN +N-NSN +PREP +T-DSF +N-DSF +P-GSM +V-AAN +T-ASF +N-ASF +P-GSM +CONJ +V-2AAN +T-ASM +N-ASM +PREP +T-ASF +N-ASF +P-GSM +CONJ +T-ASN +N-ASN +V-FAI-3S +N-DSN +A-DSN +PRT +CONJ +A-APN +CONJ +A-APN +V-PAP-NSM +V-IMI-3S +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +T-NSM +N-NSM +V-PPP-NSM +PREP +P-GSM +PREP +N-GSF +T-GSF +N-GSF +T-GSM +N-GSM +P-GSM +CONJ +PREP +A-GPN +R-GPN +A-GPN +V-AAI-3S +T-NSM +N-NSM +V-AAI-3S +CONJ +D-ASN +PREP +A-DPN +V-AAI-3S +T-ASM +N-ASM +PREP +N-DSF +CONJ +V-2ADI-3S +PREP +T-DSN +V-APN +A-ASM +T-ASM +N-ASM +CONJ +N-GSM +V-APP-GSM +CONJ +V-PNP-GSM +V-APN +T-ASM +N-ASM +CONJ +V-2AAN +T-ASN +N-ASN +T-ASN +A-ASN +A-DSN +N-DSN +ADV +N-ASF +PREP +P-ASM +CONJ +N-ASF +PREP +N-GSM +V-2ADN +P-2NS +V-PAI-2S +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +PREP +P-2DS +V-AAI-1S +CONJ +P-NSM +N-NSM +V-IAI-3S +V-PMP-NSM +ADV +N-GPN +A-NUI +ADV +V-IPI-3S +V-PAP-NSM +N-NSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-GSM +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-GSM +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-GSM +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-GSM +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-GSM +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-PRI +T-GSM +N-GSM +CONJ +N-NSM +A-NSM +N-GSN +A-GSN +V-AAI-3S +PREP +T-GSM +N-GSM +CONJ +V-IPI-3S +PREP +T-DSN +N-DSN +PREP +T-DSF +A-DSF +N-APF +A-NUI +V-PPP-NSM +PREP +T-GSM +A-GSM +CONJ +PRT-N +V-2AAI-3S +A-ASN-N +PREP +T-DPF +N-DPF +D-DPF +CONJ +V-APP-GPF +P-GPF +V-AAI-3S +CONJ +V-2AAI-3S +P-DSM +T-NSM +A-NSM +COND +V-PAI-2S +N-NSM +T-GSM +N-GSM +V-2AAM-2S +T-DSM +N-DSM +D-DSM +CONJ +V-2ADS-3S +N-NSM +CONJ +V-ADI-3S +PREP +P-ASM +T-NSM +N-NSM +V-RPI-3S +CONJ +PRT-N +PREP +N-DSM +A-DSM +V-FDI-3S +T-NSM +N-NSM +CONJ +V-2AAP-NSM +P-ASM +V-AAI-3S +P-DSM +A-APF +T-APF +N-APF +T-GSF +N-GSF +PREP +N-DSF +N-GSM +CONJ +V-2AAI-3S +P-DSM +T-NSM +A-NSM +P-2DS +V-FAI-1S +T-ASF +N-ASF +D-ASF +A-ASF +CONJ +T-ASF +N-ASF +P-GPF +CONJ +P-1DS +V-RPI-3S +CONJ +COND +R-DSM +V-PAS-1S +V-PAI-1S +P-ASF +CONJ +COND +P-2NS +V-AAS-2S +PREP +P-1GS +V-FDI-3S +P-2GS +A-NSF +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-RPI-3S +V-FAI-2S +N-ASM +T-ASM +N-ASM +P-2GS +CONJ +P-DSM +A-DSM +V-FAI-2S +CONJ +V-2AAI-3S +P-ASM +PREP +N-PRI +CONJ +V-AAI-3S +PREP +T-ASN +N-ASN +T-GSN +N-GSN +CONJ +V-2AAI-3S +P-DSM +COND +V-PAI-2S +N-NSM +T-GSM +N-GSM +V-2AAM-2S +F-2ASM +ADV +ADV +CONJ +V-RPI-3S +CONJ +T-DPM +N-DPM +P-GSM +V-FNI-3S +PREP +P-2GS +T-GSN +V-AAN +P-2AS +CONJ +CONJ +PREP +N-GPF +V-FAI-3P +P-2AS +PRT-N +ADV +V-AAS-2S +PREP +N-ASM +T-ASM +N-ASM +P-2GS +CONJ +V-AOP-NSM +V-2AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +V-RPI-3S +PRT-N +V-FAI-2S +N-ASM +T-ASM +N-ASM +P-2GS +CONJ +V-AAP-NSM +A-ASM +N-ASM +T-NSM +A-NSM +V-2AAI-3S +PREP +P-GSM +ADV +N-GSM +CONJ +V-AAI-3S +T-NSM +N-NSM +PREP +T-DSF +N-DSF +T-GSN +N-GSN +PREP +T-ASF +N-ASF +CONJ +N-NSF +V-2AAI-3S +PREP +A-GSF +T-GSF +A-GSF +PREP +P-GSM +CONJ +P-NSM +V-IAI-3S +PREP +T-DPF +N-DPF +P-GPM +V-PPP-NSM +PREP +A-GPM +CONJ +V-2AAI-3S +PREP +N-PRI +ADV +V-IAI-3S +V-RPP-NSM +CONJ +V-2AAI-3S +PREP +T-ASN +V-2RAP-ASN +P-DSM +PREP +T-DSF +N-DSF +T-GPN +N-GPN +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +V-2AAN +CONJ +V-API-3S +P-DSM +N-NSN +T-GSM +N-GSM +N-GSM +CONJ +V-AAP-NSM +T-ASN +N-ASN +V-2AAI-3S +T-ASM +N-ASM +ADV +V-IAI-3S +V-RPP-NSN +N-NSN +N-GSM +PREP +P-1AS +R-GSN +PREP +V-AAI-3S +P-1AS +V-AMN +A-DPM +V-RAI-3S +P-1AS +V-AAN +N-DPM +N-ASF +CONJ +A-DPM +N-ASF +V-AAN +V-RPP-APM +PREP +N-DSF +V-AAN +N-ASM +N-GSM +A-ASM +CONJ +V-AAP-NSM +T-ASN +N-ASN +V-2AAP-NSM +T-DSM +N-DSM +V-AAI-3S +CONJ +A-GPM +T-NPM +N-NPM +PREP +T-DSF +N-DSF +V-IAI-3P +V-PAP-NPM +P-DSM +CONJ +V-ADI-3S +V-PAN +PREP +P-APM +CONJ +ADV +V-RPI-3S +T-NSF +N-NSF +D-NSF +PREP +T-DPN +N-DPN +P-2GP +CONJ +A-NPM +V-IAI-3P +P-DSM +CONJ +V-IAI-3P +PREP +T-DPM +N-DPM +T-GSF +N-GSF +T-DPM +V-PNP-DPM +PREP +T-GSN +N-GSN +P-GSM +CONJ +V-IAI-3P +PRT-I +N-NSM +N-PRI +V-PAI-3S +D-NSM +CONJ +V-2AAI-3S +PREP +P-APM +ADV +V-FAI-2P +P-1DS +T-ASF +N-ASF +D-ASF +N-VSM +V-AAM-2S +F-2ASM +V-AAI-1P +K-APN +V-2ADP-APN +PREP +T-ASF +N-PRI +V-AAM-2S +CONJ +ADV +PREP +T-DSF +N-DSF +P-2GS +CONJ +V-2AAI-3S +HEB +V-PAI-1S +P-2DP +CONJ +A-NSM-N +N-NSM +A-NSM +V-PAI-3S +PREP +T-DSF +N-DSF +P-GSM +CONJ +PREP +N-GSF +V-PAI-1S +P-2DP +A-NPF +N-NPF +V-IAI-3P +PREP +T-DPF +N-DPF +N-GSM +PREP +T-DSM +N-PRI +ADV +V-API-3S +T-NSM +N-NSM +PREP +N-APN +A-APN +CONJ +N-APM +A-NUI +ADV +V-2ADI-3S +N-NSM +A-NSM +PREP +A-ASF +T-ASF +N-ASF +CONJ +PREP +A-ASF-N +P-GPF +V-API-3S +N-NSM +COND +PRT-N +PREP +N-APN +T-GSF +N-GSF +PREP +N-ASF +N-ASF +CONJ +A-NPM +A-NPM +V-IAI-3P +PREP +T-DSM +N-PRI +PREP +N-GSM +T-GSM +N-GSM +CONJ +A-NSM-N +P-GPM +V-API-3S +COND +PRT-N +N-PRI +T-NSM +N-NSM +CONJ +V-API-3P +N-GSM +A-NPM +PREP +T-DSF +N-DSF +V-PAP-NPM +D-APN +CONJ +V-2AAP-NPM +V-2AAI-3P +P-ASM +ADV +T-GSF +N-GSF +CONJ +V-2AAI-3P +P-ASM +ADV +N-GSF +T-GSN +N-GSN +PREP +R-GSN +T-NSF +N-NSF +P-GPM +V-LPI-3S +CONJ +V-AAN +P-ASM +CONJ +P-NSM +V-2AAP-NSM +PREP +A-GSN +P-GPM +V-INI-3S +CONJ +V-2AAI-3S +PREP +N-PRI +N-ASF +T-GSF +N-GSF +CONJ +V-IAI-3S +V-PAP-NSM +P-APM +PREP +T-DPN +N-DPN +CONJ +V-IPI-3P +PREP +T-DSF +N-DSF +P-GSM +CONJ +PREP +N-DSF +V-IAI-3S +T-NSM +N-NSM +P-GSM +CONJ +PREP +T-DSF +N-DSF +V-IAI-3S +N-NSM +V-PAP-NSM +N-ASN +N-GSN +A-GSN +CONJ +V-AAI-3S +N-DSF +A-DSF +INJ +I-NSN +P-1DP +CONJ +P-2DS +N-VSM +A-VSM +V-2AAI-2S +V-AAN +P-1AP +V-RAI-1S +P-2AS +I-NSM +V-PAI-2S +T-NSM +A-NSM +T-GSM +N-GSM +CONJ +V-AAI-3S +P-DSN +T-NSM +N-NSM +V-PAP-NSM +V-APM-2S +CONJ +V-2AAM-2S +PREP +P-GSM +CONJ +T-NSN +N-NSN +V-AAP-NSN +P-ASM +PREP +T-ASN +A-ASN +V-2AAI-3S +PREP +P-GSM +A-ASN-N +V-AAP-NSN +P-ASM +CONJ +V-2ADI-3S +N-NSN +PREP +A-APM +CONJ +V-IAI-3P +PREP +C-APM +V-PAP-NPM +I-NSM +T-NSM +N-NSM +D-NSM +CONJ +PREP +N-DSF +CONJ +N-DSF +V-PAI-3S +T-DPN +A-DPN +N-DPN +CONJ +V-PNI-3P +CONJ +V-INI-3S +N-NSM +PREP +P-GSM +PREP +A-ASM +N-ASM +T-GSF +A-GSF +CONJ +V-2AAP-NSM +PREP +T-GSF +N-GSF +V-2AAI-3S +PREP +T-ASF +N-ASF +N-GSM +CONJ +N-NSF +T-GSM +N-GSM +V-IAI-3S +V-PPP-NSF +N-DSM +A-DSM +CONJ +V-AAI-3P +P-ASM +PREP +P-GSF +CONJ +V-2AAP-NSM +ADV +P-GSF +V-AAI-3S +T-DSM +N-DSM +CONJ +V-AAI-3S +P-ASF +CONJ +ADV +V-2AAP-NSF +V-IAI-3S +P-DPM +CONJ +V-PAP-GSM +T-GSM +N-GSM +A-NPM +K-NPM +V-IAI-3P +V-PAP-APM +N-DPF +A-DPF +V-2AAI-3P +P-APM +PREP +P-ASM +CONJ +T-NSM +A-DSM +A-DSM +P-GPM +T-APF +N-APF +V-PAP-NSM +V-IAI-3S +P-APM +CONJ +V-INI-3S +CONJ +N-NPN +PREP +A-GPM +V-PAP-NPN +CONJ +V-PAP-NPN +CONJ +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-PAP-NSM +PRT-N +V-IAI-3S +P-APN +V-PAN +CONJ +V-2LAI-3P +T-ASM +N-ASM +P-ASM +V-PAN +CONJ +V-2ADP-GSF +N-GSF +V-2AAP-NSM +V-AOI-3S +PREP +A-ASM +N-ASM +CONJ +T-NPM +N-NPM +V-IAI-3P +P-ASM +CONJ +V-2AAI-3P +ADV +P-GSM +CONJ +V-IAI-3P +P-ASM +T-GSN +PRT-N +V-PNN +PREP +P-GPM +CONJ +T-NSM +V-2AAI-3S +PREP +P-APM +CONJ +CONJ +T-DPF +A-DPF +N-DPF +V-AMN +P-1AS +T-ASF +N-ASF +T-GSM +N-GSM +V-PAI-3S +CONJ +PREP +D-ASN +V-2API-1S +CONJ +V-IAI-3S +V-PAP-NSM +PREP +T-APF +N-APF +T-GSF +N-GSF +CONJ +V-2ADI-3S +PREP +T-DSN +T-ASM +N-ASM +V-PNN +P-DSM +CONJ +V-PAN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +P-NSM +V-IAI-3S +V-RAP-NSM +PREP +T-ASF +N-ASF +N-PRI +CONJ +V-2AAI-3S +N-APN +A-NUI +V-RAP-APN +PREP +T-ASF +N-ASF +CONJ +T-NPM +N-NPM +PREP +P-GPN +V-2AAP-NPM +V-IAI-3P +T-APN +N-APN +CONJ +V-2AAP-NSM +PREP +A-ASN +T-GPN +N-GPN +R-NSN +V-IAI-3S +N-GSM +V-AAI-3S +P-ASM +PREP +T-GSF +N-GSF +V-2AAN +ADV +CONJ +V-AAP-NSM +PREP +T-GSN +N-GSN +V-IAI-3S +T-APM +N-APM +CONJ +ADV +V-AMI-3S +V-PAP-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +V-2AAM-2S +PREP +T-ASN +N-ASN +CONJ +V-AAM-2P +T-APN +N-APN +P-2GP +PREP +N-ASF +CONJ +V-AOP-NSM +N-NSM +V-2AAI-3S +N-VSM +PREP +A-GSF +N-GSF +V-AAP-NPM +A-ASN-N +V-2AAI-1P +CONJ +PREP +T-DSN +N-DSN +P-2GS +V-FAI-1S +T-APN +N-APN +CONJ +D-ASN +V-AAP-NPM +V-AAI-3P +N-ASN +N-GPM +A-ASN +CONJ +V-IPI-3S +T-NPN +N-NPN +P-GPM +CONJ +V-AAI-3P +T-DPM +A-DPM +PREP +T-DSN +A-DSN +N-DSN +T-GSM +V-2AAP-APM +V-2AMN +P-DPM +CONJ +V-2AAI-3P +CONJ +V-AAI-3P +A-APN +T-APN +N-APN +CONJ +V-PPN +P-APN +CONJ +V-2AAP-NSM +N-NSM +N-NSM +V-2AAI-3S +T-DPN +N-DPN +N-GSM +V-PAP-NSM +V-2AAM-2S +PREP +P-1GS +CONJ +N-NSM +A-NSM +V-PAI-1S +N-VSM +CONJ +N-NSN +V-2AAI-3S +P-ASM +CONJ +A-APM +T-APM +PREP +P-DSM +PREP +T-DSF +N-DSF +T-GPM +N-GPM +R-DSF +V-2AAI-3P +CONJ +ADV +CONJ +N-ASM +CONJ +N-ASM +N-APM +N-GSM +R-NPM +V-IAI-3P +N-NPM +T-DSM +N-DSM +CONJ +V-2AAI-3S +PREP +T-ASM +N-ASM +T-NSM +N-NSM +PRT-N +V-PNM-2S +PREP +T-GSM +ADV +N-APM +V-FDI-2S +V-PAP-NSM +CONJ +V-2AAP-NPM +T-APN +N-APN +PREP +T-ASF +N-ASF +V-2AAP-NPM +A-APN +V-AAI-3P +P-DSM +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-ASM +PREP +A-DSF +T-GPF +N-GPF +CONJ +V-2AMM-2S +N-NSM +A-NSM +N-GSF +CONJ +V-2AAP-NSM +T-ASM +N-ASM +V-2AAP-NSM +PREP +N-ASN +V-API-3S +P-GSM +V-PAP-NSM +N-VSM +COND +V-PAS-2S +V-PNI-2S +P-1AS +V-AAN +CONJ +V-AAP-NSM +T-ASF +N-ASF +V-ADI-3S +P-GSM +V-PAP-NSM +V-PAI-1S +V-APM-2S +CONJ +ADV +T-NSF +N-NSF +V-2AAI-3S +PREP +P-GSM +CONJ +P-NSM +V-AAI-3S +P-DSM +A-DSM-N +V-2AAN +CONJ +V-2AAP-NSM +V-AAM-2S +F-2ASM +T-DSM +N-DSM +CONJ +V-2AAM-2S +PREP +T-GSM +N-GSM +P-2GS +ADV +V-AAI-3S +N-NSM +PREP +N-ASN +P-DPM +CONJ +V-INI-3S +ADV +T-NSM +N-NSM +PREP +P-GSM +CONJ +V-INI-3P +N-NPM +A-NPM +V-PAN +CONJ +V-PPN +PREP +T-GPF +N-GPF +P-GPM +CONJ +P-NSM +V-IAI-3S +V-PAP-NSM +PREP +T-DPF +A-DPF +CONJ +V-PNP-NSM +CONJ +V-2ADI-3S +PREP +A-DSF +T-GPF +N-GPF +CONJ +P-NSM +V-IAI-3S +V-PAP-NSM +CONJ +V-IAI-3P +V-PNP-NPM +N-NPM +CONJ +N-NPM +R-NPM +V-IAI-3P +V-2RAP-NPM +PREP +A-GSF +N-GSF +T-GSF +N-GSF +CONJ +N-GSF +CONJ +N-PRI +CONJ +N-NSF +N-GSM +V-IAI-3S +PREP +T-ASN +V-PNN +P-ASM +CONJ +V-2AMM-2S +N-NPM +V-PAP-NPM +PREP +N-GSF +N-ASM +R-NSM +V-IAI-3S +V-RPP-NSM +CONJ +V-IAI-3P +P-ASM +V-2AAN +CONJ +V-2AAN +PREP +P-GSM +CONJ +PRT-N +V-2AAP-NPM +I-GSF +V-2AAS-3P +P-ASM +PREP +T-ASM +N-ASM +V-2AAP-NPM +PREP +T-ASN +N-ASN +PREP +T-GPM +N-GPM +V-AAI-3P +P-ASM +PREP +T-DSN +N-DSN +PREP +T-ASN +A-ASN +PREP +T-GSM +N-GSM +CONJ +V-2AAP-NSM +T-ASF +N-ASF +P-GPM +V-2AAI-3S +N-VSM +V-RPI-3P +P-2DS +T-NPF +N-NPF +P-2GS +CONJ +V-ADI-3P +V-PNN +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-PAP-NPM +I-NSM +V-PAI-3S +D-NSM +R-NSM +V-PAI-3S +N-APF +I-NSM +V-PNI-3S +N-APF +V-AAN +COND +PRT-N +A-NSM +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-APM +N-APM +P-GPM +V-AOP-NSM +V-2AAI-3S +PREP +P-APM +I-ASN +V-PNI-2P +PREP +T-DPF +N-DPF +P-2GP +I-NSN +V-PAI-3S +A-NSN-C +V-2AAN +V-RPI-3P +P-2DS +T-NPF +N-NPF +P-2GS +PRT +V-2AAN +V-PAM-2S +CONJ +V-PAM-2S +CONJ +CONJ +V-RAS-2P +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +N-ASF +V-PAI-3S +PREP +T-GSF +N-GSF +V-PAN +N-APF +V-2AAI-3S +T-DSM +V-RPP-DSM +P-2DS +V-PAI-1S +V-PAM-2S +CONJ +V-AAP-NSM +T-ASN +N-ASN +P-2GS +V-PNM-2S +PREP +T-ASM +N-ASM +P-2GS +CONJ +ADV +V-2AAP-NSM +PREP +P-GPM +V-AAP-NSM +PREP +R-ASN +V-INI-3S +V-2AAI-3S +PREP +T-ASM +N-ASM +P-GSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +N-NSF +V-2AAI-3S +A-APM +CONJ +V-IAI-3P +T-ASM +N-ASM +CONJ +V-API-3P +N-GSM +V-PAP-NPM +CONJ +V-2AAI-1P +A-APN +ADV +CONJ +PREP +D-APN +V-2AAI-3S +CONJ +V-ADI-3S +N-ASM +N-DSN +N-ASM +V-PNP-ASM +PREP +T-ASN +N-ASN +CONJ +V-2AAI-3S +P-DSM +V-PAM-2S +P-1DS +CONJ +V-2AAP-NSM +A-APN +V-2AAP-NSM +V-IAI-3S +P-DSM +CONJ +V-AAI-3S +N-ASF +A-ASF +N-NSM +P-DSM +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-IAI-3S +N-NSM +A-NSM +N-GPM +CONJ +A-GPM +R-NPM +V-IAI-3P +V-PNP-NPM +PREP +P-GPM +CONJ +V-IAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +P-GPM +PREP +T-APM +N-APM +P-GSM +V-PAP-NPM +PREP +I-ASN +PREP +T-GPM +N-GPM +CONJ +A-GPM +V-PAI-2P +CONJ +V-PAI-2P +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +PREP +P-APM +PRT-N +N-ASF +N-GSM +V-PAI-3P +T-NPM +V-PAP-NPM +CONJ +T-NPM +ADV +V-PAP-NPM +PRT-N +V-2RAI-1S +V-AAN +A-APM +CONJ +A-APM +PREP +N-ASF +CONJ +T-NPM +V-2AAI-3P +PREP +P-ASM +T-NPM +N-NPM +N-GSM +V-PAI-3P +A-APN +CONJ +N-APF +V-PMI-3P +ADV +CONJ +T-NPM +T-GPM +N-GPM +CONJ +T-NPM +S-2SNPM +V-PAI-3P +CONJ +V-PAI-3P +CONJ +T-NSM +N-NSM +V-2AAI-3S +PREP +P-APM +PRT-N +V-PNI-2P +T-APM +N-APM +T-GSM +N-GSM +PREP +R-DSM +T-NSM +N-NSM +PREP +P-GPM +V-PAI-3S +V-AAN +V-AAN +CONJ +V-FDI-3P +N-NPF +CONJ +CONJ +V-APS-3S +PREP +P-GPM +T-NSM +N-NSM +ADV +V-FAI-3P +PREP +D-DPF +T-DPF +N-DPF +CONJ +V-IAI-3S +CONJ +N-ASF +PREP +P-APM +CONJ +A-NSM-N +N-ASN +PREP +N-GSN +A-GSN +V-AAP-NSM +V-PAI-3S +PREP +N-ASN +A-ASN +CONJ +COND +PRT-N +CONJ +T-ASN +A-ASN +V-FAI-3S +CONJ +T-DSN +A-DSN +PRT-N +V-FAI-3S +T-NSN +N-NSN +T-NSN +PREP +T-GSN +A-GSN +CONJ +A-NSM-N +V-PAI-3S +N-ASM +A-ASM +PREP +N-APM +A-APM +CONJ +COND +PRT-N +V-FAI-3S +T-NSM +N-NSM +T-NSM +A-NSM +T-APM +N-APM +CONJ +P-NSM +V-FPI-3S +CONJ +T-NPM +N-NPM +V-FMI-3P +CONJ +N-ASM +A-ASM +PREP +N-APM +A-APM +A-NSN +CONJ +A-NSM-N +V-2AAP-NSM +A-ASM +V-PAI-3S +A-ASM +CONJ +V-PAI-3S +T-NSM +A-NSM +A-NSM +V-PAI-3S +CONJ +V-2ADI-3S +PREP +N-DSN +V-PNN +P-ASM +PREP +A-GPM +CONJ +V-IAI-3P +CONJ +V-IAI-3P +T-NPM +N-NPM +P-GSM +T-APM +N-APM +V-PAP-NPM +T-DPF +N-DPF +CONJ +X-NPM +T-GPM +N-GPM +V-2AAI-3P +I-ASN +V-PAI-2P +R-ASN +PRT-N +V-PAI-3S +T-DPN +N-DPN +CONJ +V-AOP-NSM +PREP +P-APM +V-2AAI-3S +T-NSM +N-NSM +CONJ-N +V-2AAI-2P +D-ASN +R-ASN +V-AAI-3S +N-PRI +ADV +V-AAI-3S +P-NSM +CONJ +T-NPM +PREP +P-GSM +V-PAP-NPM +ADV +V-2AAI-3S +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-APM +N-APM +T-GSF +N-GSF +V-2AAP-NSM +V-2AAI-3S +CONJ +V-AAI-3S +T-DPM +PREP +P-GSM +R-APM +V-2AAN +PRT-N +V-PAI-3S +COND +PRT-N +A-APM +T-APM +N-APM +CONJ +V-IAI-3S +P-DPM +V-PAI-3S +N-NSM +T-GSN +N-GSN +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-2ADI-3S +PREP +A-DSN +N-DSN +V-2AAN +P-ASM +PREP +T-ASF +N-ASF +CONJ +V-PAN +CONJ +V-IAI-3S +N-NSM +ADV +CONJ +T-NSF +N-NSF +P-GSM +T-NSF +A-NSF +V-IAI-3S +A-NSF +CONJ +V-IMI-3P +P-ASM +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +COND +PREP +T-DSN +N-DSN +V-PAI-3S +CONJ +V-2AAS-3P +V-PAN +P-GSM +CONJ +P-NSM +V-2LAI-3S +T-APM +N-APM +P-GPM +CONJ +V-2AAI-3S +T-DSM +N-DSM +T-DSM +A-ASF +V-PAP-DSM +T-ASF +N-ASF +V-PAM-2S +CONJ +V-2AAM-2S +PREP +T-ASN +A-ASN +CONJ +V-2AAP-NSM +V-2AAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +P-APM +V-PAI-1S +P-2AP +COND +V-PAI-3S +T-DSN +N-DSN +V-AAN +PRT +V-AAN +N-ASF +V-AAN +PRT +V-AAN +CONJ +V-AMP-NSM +A-APM +P-APM +V-2AAI-3S +P-DSM +V-AAM-2S +T-ASF +N-ASF +P-2GS +CONJ +T-NSM +V-AAI-3S +CONJ +V-API-3S +T-NSF +N-NSF +P-GSM +CONJ +P-NPM +V-API-3P +N-GSF +CONJ +V-IAI-3P +PREP +C-APM +PRT +I-ASN +V-AAO-3P +T-DSM +N-DSM +CONJ +V-2ADI-3S +PREP +T-DPF +N-DPF +D-DPF +V-2AAN +P-ASM +PREP +T-ASN +N-ASN +V-ADN +CONJ +V-IAI-3S +V-PAP-NSM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +ADV +V-2ADI-3S +N-NSF +V-AAI-3S +T-APM +N-APM +P-GSM +CONJ +V-AMP-NSM +PREP +P-GPM +A-NUI +R-APM +CONJ +N-APM +V-AAI-3S +N-ASM +R-ASM +CONJ +V-AAI-3S +N-ASM +CONJ +N-ASM +T-ASM +N-ASM +P-GSM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +N-GSM +CONJ +N-ASM +T-ASM +V-PPP-ASM +N-ASM +CONJ +N-ASM +N-GSM +CONJ +N-ASM +N-PRI +R-NSM +V-2ADI-3S +N-NSM +CONJ +V-2AAP-NSM +PREP +P-GPM +V-2AAI-3S +PREP +N-GSM +A-GSM +CONJ +N-NSM +A-NSM +N-GPM +P-GSM +CONJ +N-NSN +A-NSN +T-GSM +N-GSM +PREP +A-GSF +T-GSF +N-GSF +CONJ +N-PRI +CONJ +T-GSF +A-GSF +N-GSF +CONJ +N-GSF +R-NPM +V-2AAI-3P +V-AAN +P-GSM +CONJ +V-APN +PREP +T-GPF +N-GPF +P-GPM +CONJ +T-NPM +V-PPP-NPM +PREP +N-GPN +A-GPN +V-IPI-3P +CONJ +A-NSM +T-NSM +N-NSM +V-IAI-3P +V-PMN +P-GSM +CONJ +N-NSF +PREP +P-GSM +V-INI-3S +CONJ +V-INI-3S +A-APM +CONJ +P-NSM +V-AAP-NSM +T-APM +N-APM +P-GSM +PREP +T-APM +N-APM +P-GSM +V-IAI-3S +A-NPM +T-NPM +A-NPM +CONJ +S-2PNSF +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +A-NPM +T-NPM +V-PAP-NPM +ADV +CONJ +V-FPI-2P +A-NPM +T-NPM +V-PAP-NPM +ADV +CONJ +V-FAI-2P +A-NPM +V-PAI-2P +CONJ +V-AAS-3P +P-2AP +T-NPM +N-NPM +CONJ +CONJ +V-AAS-3P +P-2AP +CONJ +V-AAS-3P +CONJ +V-2AAS-3P +T-ASN +N-ASN +P-2GP +ADV +A-ASN +PREP +T-GSM +N-GSM +T-GSM +N-GSM +V-2AOM-2P +PREP +D-DSF +T-DSF +N-DSF +CONJ +V-AAM-2P +CONJ +V-2AMM-2S +T-NSM +N-NSM +P-2GP +A-NSM +PREP +T-DSM +N-DSM +CONJ +PREP +T-APN +P-APN +V-IAI-3P +T-DPM +N-DPM +T-NPM +N-NPM +P-GPM +ADV +INJ +P-2DP +T-DPM +A-DPM +CONJ +V-PAI-2P +T-ASF +N-ASF +P-2GP +INJ +P-2DP +T-NPM +V-RPP-NPM +ADV +CONJ +V-FAI-2P +INJ +T-NPM +V-PAP-NPM +ADV +CONJ +V-FAI-2P +CONJ +V-FAI-2P +INJ +CONJ +ADV +P-2AP +V-2AAS-3P +A-NPM +T-NPM +N-NPM +CONJ +PREP +T-APN +P-APN +V-IAI-3P +T-DPM +N-DPM +T-NPM +N-NPM +P-GPM +CONJ +V-PAI-1S +P-2DP +T-DPM +V-PAP-DPM +V-PAM-2P +T-APM +A-APM +P-2GP +ADV +V-PAM-2P +T-DPM +V-PAP-DPM +P-2AP +V-PAM-2P +T-APM +V-PNP-APM +P-2AP +V-PNM-2P +PREP +T-GPM +V-PAP-GPM +P-2AP +T-DSM +V-PAP-DSM +P-2AS +PREP +T-ASF +N-ASF +V-PAM-2S +CONJ +T-ASF +A-ASF +CONJ +PREP +T-GSM +V-PAP-GSM +P-2GS +T-ASN +N-ASN +CONJ +T-ASM +N-ASM +PRT-N +V-AAS-2S +A-DSM +V-PAP-DSM +P-2AS +V-PAM-2S +CONJ +PREP +T-GSM +V-PAP-GSM +T-APN +S-2SAPN +PRT-N +V-PAM-2S +CONJ +ADV +V-PAI-2P +CONJ +V-PAS-3P +P-2DP +T-NPM +N-NPM +V-PAM-2P +P-DPM +ADV +CONJ +COND +V-PAI-2P +T-APM +V-PAP-APM +P-2AP +I-NSF +N-NSF +P-2DP +V-PAI-3S +CONJ +CONJ +T-NPM +A-NPM +T-APM +V-PAP-APM +P-APM +V-PAI-3P +CONJ +COND +CONJ +V-PAS-2P +T-APM +V-PAP-APM +P-2AP +I-NSF +N-NSF +P-2DP +V-PAI-3S +CONJ +T-NPM +A-NPM +T-ASN +P-ASN +V-PAI-3P +CONJ +COND +V-AAS-2P +PREP +R-GPM +V-PAI-2P +V-2AAN +I-NSF +N-NSF +P-2DP +V-PAI-3S +CONJ +A-NPM +A-DPM +V-PAI-3P +CONJ +V-2AAS-3P +T-APN +A-APN +ADV +V-PAM-2P +T-APM +A-APM +P-2GP +CONJ +V-PAM-2P +CONJ +V-PAM-2P +A-ASN-N +V-PAP-NPM +CONJ +V-FDI-3S +T-NSM +N-NSM +P-2GP +A-NSM +CONJ +V-FDI-2P +N-NPM +A-GSM-S +CONJ +P-NSM +A-NSM +V-PAI-3S +PREP +T-APM +A-APM +CONJ +A-APM +V-PNM-2P +A-NPM +ADV +T-NSM +N-NSM +P-2GP +A-NSM +V-PAI-3S +CONJ +PRT-N +V-PAM-2P +CONJ +PRT-N +PRT-N +V-APS-2P +CONJ +PRT-N +V-PAM-2P +CONJ +PRT-N +PRT-N +V-APS-2P +V-PAM-2P +CONJ +V-FPI-2P +V-PAM-2P +CONJ +V-FPI-3S +P-2DP +N-ASN +A-ASN +V-RPP-ASN +V-RPP-ASN +V-PPP-ASN +V-FAI-3P +PREP +T-ASM +N-ASM +P-2GP +CONJ +R-DSN +N-DSN +V-PAI-2P +V-FPI-3S +P-2DP +CONJ +V-2AAI-3S +CONJ +N-ASF +P-DPM +PRT-I +V-PNI-3S +A-NSM +A-ASM +V-PAN +PRT-I +A-NPM +PREP +N-ASM +V-FNI-3P +PRT-N +V-PAI-3S +N-NSM +PREP +T-ASM +N-ASM +CONJ +V-RPP-NSM +A-NSM +V-FDI-3S +ADV +T-NSM +N-NSM +P-GSM +CONJ +I-ASN +V-PAI-2S +T-ASN +N-ASN +T-ASN +PREP +T-DSM +N-DSM +T-GSM +N-GSM +P-2GS +CONJ +T-ASF +N-ASF +T-ASF +PREP +T-DSM +A-DSM +N-DSM +PRT-N +V-PAI-2S +ADV-I +V-PNI-2S +V-PAN +T-DSM +N-DSM +P-2GS +N-VSM +V-2AAM-2S +V-2AAS-1S +T-ASN +N-ASN +T-ASN +PREP +T-DSM +N-DSM +P-2GS +P-NSM +T-ASF +PREP +T-DSM +N-DSM +P-2GS +N-ASF +PRT-N +V-PAP-NSM +N-VSM +V-2AAM-2S +ADV-S +T-ASF +N-ASF +PREP +T-GSM +N-GSM +P-2GS +CONJ +ADV +V-FAI-2S +T-ASN +N-ASN +T-ASN +PREP +T-DSM +N-DSM +T-GSM +N-GSM +P-2GS +V-2AAN +CONJ +PRT-N +V-PAI-3S +V-PAP-NSN +N-NSN +A-NSN +N-ASM +A-ASM +CONJ-N +ADV +N-NSN +A-NSN +V-PAP-NSN +N-ASM +A-ASM +CONJ +A-NSN +N-NSN +PREP +T-GSM +A-GSM +N-GSM +V-PPI-3S +CONJ +PRT-N +PREP +N-GPF +V-PAI-3P +N-APN +CONJ-N +PREP +N-GSF +N-ASF +V-PAI-3P +T-NSM +A-NSM +N-NSM +PREP +T-GSM +A-GSM +N-GSM +T-GSF +N-GSF +V-PAI-3S +T-ASN +A-ASN +CONJ +T-NSM +A-NSM +PREP +T-GSM +A-GSM +V-PAI-3S +T-ASN +A-ASN +CONJ +PREP +N-GSN +N-GSF +V-PAI-3S +T-NSN +N-NSN +P-GSM +CONJ +I-ASN +P-1AS +V-PAI-2P +N-VSM +N-VSM +CONJ +PRT-N +V-PAI-2P +R-APN +V-PAI-1S +A-NSM +T-NSM +V-PNP-NSM +PREP +P-1AS +CONJ +V-PAP-NSM +P-1GS +T-GPM +N-GPM +CONJ +V-PAP-NSM +P-APM +V-FAI-1S +P-2DP +I-DSM +V-PAI-3S +A-NSM +A-NSM +V-PAI-3S +N-DSM +V-PAP-DSM +N-ASF +R-NSM +V-AAI-3S +CONJ +V-AAI-3S +CONJ +V-AAI-3S +N-ASM +PREP +T-ASF +N-ASF +CONJ +N-GSF +V-2ADP-GSF +V-AAI-3S +T-NSM +N-NSM +T-DSF +N-DSF +D-DSF +CONJ +PRT-N +V-AAI-3S +V-AAN +P-ASF +PREP +T-ASN +ADV +V-RPN +P-ASF +CONJ +T-NSM +V-AAP-NSM +CONJ +PRT-N +V-AAP-NSM +A-NSM +V-PAI-3S +N-DSM +V-AAP-DSM +N-ASF +PREP +T-ASF +N-ASF +ADV +N-GSM +R-DSF +V-AAI-3S +T-NSM +N-NSM +CONJ +ADV +V-2AAI-3S +CONJ +V-2ADI-3S +T-NSN +N-NSN +T-GSF +N-GSF +D-GSF +A-NSN +CONJ +V-AAI-3S +A-APN +T-APN +N-APN +P-GSM +PREP +T-APF +N-APF +T-GSM +N-GSM +V-2AAI-3S +PREP +N-PRI +CONJ +N-GSM +X-GSM +N-NSM +ADV +V-PAP-NSM +V-IAI-3S-ATT +V-PAN +R-NSM +V-IAI-3S +P-DSM +A-NSM +CONJ +V-AAP-NSM +PREP +T-GSM +N-GSM +V-AAI-3S +PREP +P-ASM +A-APM-C +T-GPM +A-GPM +V-PAP-NSM +P-ASM +ADV +V-2AAP-NSM +V-AAS-3S +T-ASM +N-ASM +P-GSM +CONJ +T-NPM +V-2ADP-NPM +PREP +T-ASM +N-ASM +V-IAI-3P +P-ASM +ADV +V-PAP-NPM +CONJ +A-NSM +V-PAI-3S +R-DSM +V-2FDI-2S +D-ASN +CONJ +V-PAI-3S +T-ASN +N-ASN +P-1GP +CONJ +T-ASF +N-ASF +P-NSM +V-AAI-3S +P-1DP +CONJ +T-NSM +N-NSM +V-INI-3S +PREP +P-DPM +CONJ +ADV +P-GSM +PRT-N +ADV +V-PAP-GSM +PREP +T-GSF +N-GSF +V-AAI-3S +A-APM +T-NSM +N-NSM +V-PAP-NSM +P-DSM +N-VSM +PRT-N +V-PPM-2S +CONJ +PRT-N +V-PAI-1S +A-NSM +CONJ +PREP +T-ASF +N-ASF +P-1GS +V-2AAS-2S +CONJ +CONJ-N +F-1ASM +V-AAI-1S +PREP +P-2AS +V-2AAN +CONJ +V-2AAM-2S +N-DSM +CONJ +V-APM-3S +T-NSM +N-NSM +P-1GS +CONJ +CONJ +P-1NS +V-PAI-1S +N-NSM +PREP +N-ASF +V-PPP-NSM +V-PAP-NSM +PREP +F-1ASM +N-APM +CONJ +V-PAI-1S +D-DSM +V-AOM-2S +CONJ +V-PNI-3S +CONJ +A-DSM +V-PNM-2S +CONJ +V-PNI-3S +CONJ +T-DSM +N-DSM +P-1GS +V-AAM-2S +D-ASN +CONJ +V-PAI-3S +CONJ +V-AAP-NSM +D-APN +T-NSM +N-NSM +V-AAI-3S +P-ASM +CONJ +V-2APP-NSM +T-DSM +V-PAP-DSM +P-DSM +N-DSM +V-2AAI-3S +V-PAI-1S +P-2DP +CONJ-N +PREP +T-DSM +N-PRI +D-ASF +N-ASF +V-2AAI-1S +CONJ +V-AAP-NPM +PREP +T-ASM +N-ASM +T-NPM +V-APP-NPM +V-2AAI-3P +T-ASM +N-ASM +V-PAP-ASM +CONJ +V-2ADI-3S +PREP +T-DSM +ADV +V-AOI-3S +PREP +N-ASF +V-PPP-ASF +N-PRI +CONJ +V-INI-3P +P-DSM +T-NPM +N-NPM +P-GSM +CONJ +N-NSM +A-NSM +CONJ +ADV +V-AAI-3S +T-DSF +N-DSF +T-GSF +N-GSF +CONJ +V-2AMM-2S +V-IPI-3S +V-RAP-NSM +A-NSM +N-NSM +T-DSF +N-DSF +P-GSM +CONJ +P-NSF +V-IAI-3S +N-NSF +CONJ +N-NSM +T-GSF +N-GSF +A-NSM +V-IAI-3S +PREP +P-DSF +CONJ +V-2AAP-NSM +P-ASF +T-NSM +N-NSM +V-AOI-3S +PREP +P-DSF +CONJ +V-2AAI-3S +P-DSF +PRT-N +V-PAM-2S +CONJ +V-2AAP-NSM +V-ADI-3S +T-GSF +N-GSF +CONJ +T-NPM +V-PAP-NPM +V-2AAI-3P +CONJ +V-2AAI-3S +N-VSM +P-2DS +V-PAI-1S +V-APM-2S +CONJ +V-AAI-3S +T-NSM +A-NSM +CONJ +V-ADI-3S +V-PAN +CONJ +V-AAI-3S +P-ASM +T-DSF +N-DSF +P-GSM +CONJ +V-2AAI-3S +N-NSM +A-APM +CONJ +V-IAI-3P +T-ASM +N-ASM +V-PAP-NPM +CONJ +N-NSM +A-NSM +V-API-3S +PREP +P-1DP +CONJ +CONJ +V-ADI-3S +T-NSM +N-NSM +T-ASM +N-ASM +P-GSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +D-NSM +PREP +P-GSM +PREP +A-DSF +T-DSF +N-DSF +CONJ +A-DSF +T-DSF +A-DSF +CONJ +V-AAI-3P +N-DSM +T-NPM +N-NPM +P-GSM +PREP +A-GPN +D-GPN +CONJ +V-ADP-NSM +A-NUI +X-APM +T-GPM +N-GPM +P-GSM +T-NSM +N-NSM +V-AAI-3S +PREP +T-ASM +N-ASM +V-PAP-NSM +P-2NS +V-PAI-2S +T-NSM +V-PNP-NSM +PRT +A-ASM +V-PAI-1P +CONJ +V-2ADP-NPM +PREP +P-ASM +T-NPM +N-NPM +V-2AAI-3P +N-NSM +T-NSM +N-NSM +V-AAI-3S +P-1AP +PREP +P-2AS +V-PAP-NSM +P-2NS +V-PAI-2S +T-NSM +V-PNP-NSM +PRT +A-ASM +V-PAI-1P +PREP +D-DSF +T-DSF +N-DSF +V-AAI-3S +A-APM +PREP +N-GPF +CONJ +N-GPF +CONJ +N-GPN +A-GPN +CONJ +A-DPM +A-DPM +V-ADI-3S +V-PAN +CONJ +V-AOP-NSM +V-2AAI-3S +P-DPM +V-AOP-NPM +V-AAM-2P +N-DSM +R-APN +V-2AAI-2P +CONJ +V-AAI-2P +A-NPM +V-PAI-3P +A-NPM +V-PAI-3P +A-NPM +V-PPI-3P +CONJ +A-NPM +V-PAI-3P +A-NPM +V-PPI-3P +A-NPM +V-PPI-3P +CONJ +A-NSM +V-PAI-3S +COND +R-NSM +PRT-N +V-APS-3S +PREP +P-1DS +CONJ +V-2AAP-GPM +T-GPM +N-GPM +N-GSM +V-ADI-3S +V-PAN +PREP +T-APM +N-APM +PREP +N-GSM +I-ASN +V-ADN +V-2AAI-2P +PREP +T-ASF +A-ASF +N-ASM +PREP +N-GSM +V-PPP-ASM +CONJ +I-ASN +V-2AAN +V-2AAI-2P +N-ASM +PREP +A-DPN +N-DPN +V-RPP-ASM +V-2AMM-2S +T-NPM +PREP +N-DSM +A-DSM +CONJ +N-DSF +V-PAP-NPM +PREP +T-DPM +A-DPM +V-PAI-3P +CONJ +I-ASN +V-2AAN +V-2AAI-2P +N-ASM +PRT +V-PAI-1S +P-2DP +CONJ +A-ASN-C +N-GSM +D-NSM +V-PAI-3S +PREP +R-GSM +V-RPI-3S +V-2AMM-2S +V-PAI-1S +T-ASM +N-ASM +P-1GS +PREP +N-GSN +P-2GS +R-NSM +V-FAI-3S +T-ASF +N-ASF +P-2GS +PREP +P-2GS +V-PAI-1S +P-2DP +A-NSM-C +PREP +A-DPM +N-GPF +N-GSM +A-NSM-N +V-PAI-3S +CONJ +T-NSM +A-NSM-C +PREP +T-DSF +N-DSF +T-GSM +N-GSM +A-NSM-C +P-GSM +V-PAI-3S +CONJ +A-NSM +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +V-AAP-NSM +V-AAI-3P +T-ASM +N-ASM +V-APP-NPM +T-ASN +N-ASN +N-GSM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +A-NPM +T-ASF +N-ASF +T-GSM +N-GSM +V-AAI-3P +PREP +F-3APM +PRT-N +V-APP-NPM +PREP +P-GSM +CONJ +I-DSN +V-FAI-1S +T-APM +N-APM +T-GSF +N-GSF +D-GSF +CONJ +I-DSN +V-PAI-3P +A-NPM +A-NPM +V-PAI-3P +N-DPN +T-DPN +PREP +N-DSF +V-PNP-DPN +CONJ +V-PAP-DPN +C-DPN +R-NPN +V-PAI-3S +V-AAI-1P +P-2DP +CONJ +PRT-N +V-ADI-2P +V-AAI-1P +CONJ +PRT-N +V-AAI-2P +CONJ +V-2RAI-3S +N-NSM +T-NSM +N-NSM +PRT-N +V-PAP-NSM +N-ASM +CONJ-N +V-PAP-NSM +N-ASM +CONJ +V-PAI-2P +N-ASN +V-PAI-3S +V-2RAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-PAP-NSM +CONJ +V-PAP-NSM +CONJ +V-PAI-2P +V-2AMM-2S +N-NSM +N-NSM +CONJ +N-NSM +A-NSM +N-GPM +CONJ +A-GPM +CONJ +V-API-3S +T-NSF +N-NSF +PREP +A-GPN +T-GPN +N-GPN +P-GSF +CONJ +V-IAI-3S +X-NSM +T-GPM +N-GPM +P-ASM +CONJ +V-2AAS-3S +PREP +P-GSM +CONJ +V-2AAP-NSM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-API-3S +CONJ +V-2AMM-2S +N-NSF +R-NSF +V-IAI-3S +PREP +T-DSF +N-DSF +A-NSF +CONJ +V-2AAP-NSF +CONJ +V-PNI-3S +PREP +T-DSF +N-DSF +T-GSM +N-GSM +V-AAP-NSF +N-ASN +N-GSN +CONJ +V-2AAP-NSF +ADV +PREP +T-APM +N-APM +P-GSM +V-PAP-NSF +V-ADI-3S +T-DPN +N-DPN +V-PAN +T-APM +N-APM +P-GSM +CONJ +T-DPF +N-DPF +T-GSF +N-GSF +P-GSF +V-IAI-3S +CONJ +V-IAI-3S +T-APM +N-APM +P-GSM +CONJ +V-IAI-3S +T-DSN +N-DSN +CONJ +V-2AAP-NSM +T-NSM +N-NSM +T-NSM +V-AAP-NSM +P-ASM +V-2AAI-3S +PREP +F-3DSM +V-PAP-NSM +COND +D-NSM +V-IAI-3S +N-NSM +PRT +V-IAI-3S +I-NSF +CONJ +A-NSF +T-NSF +N-NSF +R-NSF +V-PMI-3S +P-GSM +CONJ +A-NSF +V-PAI-3S +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +PREP +P-ASM +N-VSM +V-PAI-1S +P-2DS +X-ASN +V-2AAN +CONJ +T-NSM +N-VSM +V-2AAM-2S +V-PAI-3S +A-NUI +N-NPM +V-IAI-3P +N-DSM +X-DSM +T-NSM +A-NSM +V-IAI-3S +N-APN +A-APN +CONJ +T-NSM +A-NSM +A-NUI +PRT-N +V-PAP-GPM +P-GPM +V-2AAN +A-DPM +V-ADI-3S +CONJ +I-NSM +P-GPM +A-ASN-C +V-FAI-3S +P-ASM +V-AOP-NSM +N-NSM +V-2AAI-3S +V-PAI-1S +CONJ +R-DSM +T-ASN +A-ASN-C +V-ADI-3S +CONJ +T-NSM +V-2AAI-3S +P-DSM +ADV +V-AAI-2S +CONJ +V-2APP-NSM +PREP +T-ASF +N-ASF +T-DSM +N-DSM +V-IAI-3S +V-PAI-2S +D-ASF +T-ASF +N-ASF +V-2AAI-1S +PREP +P-2GS +T-ASF +N-ASF +N-ASN +P-1DS +PREP +N-APM +PRT-N +V-AAI-2S +CONJ +D-NSF +T-DPN +N-DPN +V-AAI-3S +P-1GS +T-APM +N-APM +CONJ +T-DPF +N-DPF +P-GSF +V-AAI-3S +N-ASN +P-1DS +PRT-N +V-AAI-2S +CONJ +D-NSF +PREP +R-GSF +V-2AAI-1S +PRT-N +V-2AAI-3S +V-PAP-NSF +P-1GS +T-APM +N-APM +N-DSN +T-ASF +N-ASF +P-1GS +PRT-N +V-AAI-2S +CONJ +D-NSF +N-DSN +V-AAI-3S +T-APM +N-APM +P-1GS +R-GSN +PREP +V-PAI-1S +P-2DS +V-RPI-3P +T-NPF +N-NPF +P-GSF +T-NPF +A-NPF +CONJ +V-AAI-3S +A-ASN +CONJ +R-DSM +A-NSN +V-PPI-3S +ADV +V-PAI-3S +CONJ +V-2AAI-3S +P-DSF +V-RPI-3P +P-2GS +T-NPF +N-NPF +CONJ +V-ADI-3P +T-NPM +V-PNP-NPM +V-PAN +PREP +F-3DPM +I-NSM +D-NSM +V-PAI-3S +R-NSM +CONJ +N-APF +V-PAI-3S +CONJ +V-2AAI-3S +PREP +T-ASF +N-ASF +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +V-PNM-2S +PREP +N-ASF +CONJ +V-2ADI-3S +PREP +T-DSM +ADV +CONJ +P-NSM +V-IAI-3S +PREP +N-ASF +CONJ +N-ASF +V-PAP-NSM +CONJ +V-PMP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +PREP +P-DSM +T-NPM +A-NUI +CONJ +N-NPF +X-NPF +R-NPF +V-IAI-3P +V-RPP-NPF +PREP +N-GPN +A-GPN +CONJ +N-GPF +N-NSF +T-NSF +V-PPP-NSF +N-NSF +PREP +R-GSF +N-NPN +A-NUI +V-2LAI-3S +CONJ +N-NSF +N-NSF +N-GSM +N-GSM +N-GSM +CONJ +N-NSF +CONJ +A-NPF +A-NPF +R-NPF +V-IAI-3P +P-DPM +PREP +T-GPN +V-PAP-GPN +P-DPF +CONJ +V-PAP-GSM +N-GSM +A-GSM +CONJ +T-GPM +PREP +N-ASF +V-PNP-GPM +PREP +P-ASM +V-2AAI-3S +PREP +N-GSF +V-2AAI-3S +T-NSM +V-PAP-NSM +T-GSN +V-AAN +T-ASM +N-ASM +P-GSM +CONJ +PREP +T-DSN +V-PAN +P-ASM +R-NSN +PRT +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-API-3S +CONJ +T-NPN +N-NPN +T-GSM +N-GSM +V-2AAI-3S +P-ASN +CONJ +A-NSN +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2APP-NSN +V-API-3S +PREP +T-ASN +PRT-N +V-PAN +N-ASF +CONJ +A-NSN +V-2AAI-3S +PREP +A-DSN +T-GPF +N-GPF +CONJ +V-2APP-NPF +T-NPF +N-NPF +V-AAI-3P +P-ASN +CONJ +A-NSN +V-2AAI-3S +PREP +T-ASF +N-ASF +T-ASF +A-ASF +CONJ +V-2APP-NSN +V-AAI-3S +N-ASM +A-ASM +D-APN +V-PAP-NSM +V-IAI-3S +T-NSM +V-PAP-NSM +N-APN +V-PAN +V-PAM-3S +CONJ +V-IAI-3P +P-ASM +T-NPM +N-NPM +P-GSM +I-NSF +V-PAO-3S +D-NSF +T-NSF +N-NSF +CONJ +T-NSM +V-2AAI-3S +P-2DP +V-RPI-3S +V-2AAN +T-APN +N-APN +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +T-DPM +A-DPM +PREP +N-DPF +CONJ +V-PAP-NPM +PRT-N +V-PAS-3P +CONJ +V-PAP-NPM +PRT-N +V-PAS-3P +CONJ +V-PAI-3S +D-NSF +T-NSF +N-NSF +T-NSM +N-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +T-NPM +PREP +T-ASF +N-ASF +V-PAI-3P +T-NPM +V-AAP-NPM +ADV +V-PNI-3S +T-NSM +A-NSM +CONJ +V-PAI-3S +T-ASM +N-ASM +PREP +T-GSF +N-GSF +P-GPM +CONJ +PRT-N +V-AAP-NPM +V-APS-3P +CONJ +T-NPM +PREP +T-GSF +N-GSF +R-NPM +CONJ +V-AAS-3P +PREP +N-GSF +V-PNI-3P +T-ASM +N-ASM +CONJ +D-NPM +N-ASF +PRT-N +V-PAI-3P +R-NPM +PREP +N-ASM +V-PAI-3P +CONJ +PREP +N-DSM +N-GSM +V-PNI-3P +CONJ +T-NSN +PREP +T-APF +N-APF +V-2AAP-NSN +D-NPM +V-PAI-3P +T-NPM +V-AAP-NPM +CONJ +PREP +N-GPF +CONJ +N-GSM +CONJ +N-GPF +T-GSM +N-GSM +V-PNP-NPM +V-PPI-3P +CONJ +PRT-N +V-PAI-3P +CONJ +T-NSN +PREP +T-DSF +A-DSF +N-DSF +D-NPM +V-PAI-3P +R-NPM +PREP +N-DSF +A-DSF +CONJ +A-DSF +V-AAP-NPM +T-ASM +N-ASM +V-PAI-3P +CONJ +V-PAI-3P +PREP +N-DSF +CONJ +A-NSM-N +N-ASM +V-AAP-NSM +V-PAI-3S +P-ASM +N-DSN +PRT +ADV +N-GSF +V-PAI-3S +CONJ +PREP +N-GSF +V-PAI-3S +CONJ +T-NPM +V-PNP-NPM +V-PAS-3P +T-ASN +N-ASN +CONJ +PRT-N +V-PAI-3S +A-NSN +R-NSN +PRT-N +A-NSN +V-FDI-3S +CONJ-N +A-NSN +R-NSN +PRT-N +PRT-N +V-APS-3S +CONJ +PREP +A-ASN +V-2AAS-3S +CONJ +V-PAM-2P +ADV +V-PAI-2P +CONJ +PRT +R-NSM +V-PAS-3S +V-FPI-3S +P-DSM +CONJ +PRT +R-NSM +PRT-N +V-PAS-3S +CONJ +R-ASN +V-PAN +V-PAI-3S +V-FPI-3S +PREP +P-GSM +CONJ +V-2ADI-3S +PREP +P-ASM +T-NSF +N-NSF +CONJ +T-NPM +N-NPM +P-GSM +CONJ +PRT-N +V-INI-3P-ATT +V-2AAN +P-DSM +PREP +T-ASM +N-ASM +CONJ +V-2API-3S +P-DSM +T-NSF +N-NSF +P-2GS +CONJ +T-NPM +N-NPM +P-2GS +V-RAI-3P +ADV +V-2AAN +P-2AS +V-PAP-NPM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +PREP +P-APM +N-NSF +P-1GS +CONJ +N-NPM +P-1GS +D-NPM +V-PAI-3P +T-NPM +T-ASM +N-ASM +T-GSM +N-GSM +V-PAP-NPM +CONJ +V-PAP-NPM +CONJ +V-2ADI-3S +PREP +A-DSF +T-GPF +N-GPF +CONJ +P-NSM +V-2AAI-3S +PREP +N-ASN +CONJ +T-NPM +N-NPM +P-GSM +CONJ +V-2AAI-3S +PREP +P-APM +V-2AAS-1P +PREP +T-ASN +ADV +T-GSF +N-GSF +CONJ +V-API-3P +CONJ +V-PAP-GPM +P-GPM +V-AAI-3S +CONJ +V-2AAI-3S +N-NSF +N-GSM +PREP +T-ASF +N-ASF +CONJ +V-IPI-3P +CONJ +V-IAI-3P +CONJ +V-2AAP-NPM +V-AAI-3P +P-ASM +V-PAP-NPM +N-VSM +N-VSM +V-PMI-1P +CONJ +T-NSM +V-APP-NSM +V-AAI-3S +T-DSM +N-DSM +CONJ +T-DSM +N-DSM +T-GSN +N-GSN +CONJ +V-AMI-3P +CONJ +V-2ADI-3S +N-NSF +CONJ +V-2AAI-3S +P-DPM +ADV-I +T-NSF +N-NSF +P-2GP +CONJ +V-AOP-NPM +V-AAI-3P +V-PAP-NPM +PREP +C-APM +PRT-I +I-NSM +D-NSM +V-PAI-3S +CONJ +CONJ +T-DPM +N-DPM +CONJ +T-DSN +N-DSN +V-PAI-3S +CONJ +V-PAI-3P +P-DSM +CONJ +V-AAI-3P +PREP +T-ASF +N-ASF +T-GPM +N-GPM +R-NSF +V-PAI-3S +ADV +T-GSF +N-GSF +CONJ +P-DSM +V-2AAP-DSM +PREP +T-ASF +N-ASF +V-AAI-3S +N-NSM +X-NSM +PREP +T-GSF +N-GSF +V-PAP-NSM +N-APN +CONJ +N-DSM +A-DSM +PRT-N +V-AMI-3S +N-ASN +CONJ +PREP +N-DSF +PRT-N +V-IAI-3S +CONJ +PREP +T-DPN +N-DPN +CONJ +V-2AAP-NSM +T-ASM +N-ASM +V-AAP-NSM +V-2AAI-3S +P-DSM +CONJ +N-DSF +A-DSF +V-2AAI-3S +I-NSN +P-1DS +CONJ +P-2DS +N-VSM +N-VSM +T-GSM +N-GSM +T-GSM +A-GSM-S +V-PNI-1S +P-2GS +PRT-N +P-1AS +V-AAS-2S +CONJ +V-IAI-3S +T-DSN +N-DSN +T-DSN +A-DSN +V-2AAN +PREP +T-GSM +N-GSM +CONJ +A-DPM +N-DPM +V-LAI-3S +P-ASM +CONJ +V-IPI-3S +N-DPF +CONJ +N-DPF +V-PPP-NSM +CONJ +V-PAP-NSM +T-APN +N-APN +V-IPI-3S +PREP +T-GSN +N-GSN +PREP +T-APF +A-APF +CONJ +V-AAI-3S +P-ASM +T-NSM +N-NSM +I-NSN +P-2DS +N-NSN +V-PAI-3S +CONJ +T-NSM +V-2AAI-3S +N-NSM +CONJ +V-2AAI-3S +N-NPN +A-NPN +PREP +P-ASM +CONJ +V-IAI-3P +P-ASM +CONJ +PRT-N +V-AAS-3S +P-DPN +PREP +T-ASF +N-ASF +V-2AAN +CONJ +V-IAI-3S +ADV +N-NSF +N-GPM +A-GPM +V-PPP-NSF +PREP +T-DSN +N-DSN +CONJ +V-AAI-3P +P-ASM +CONJ +V-AAS-3S +P-DPN +PREP +D-APM +V-2AAN +CONJ +V-AAI-3S +P-DPN +CONJ +T-NPN +N-NPN +V-2AAP-NPN +PREP +T-GSM +N-GSM +V-2AAI-3P +PREP +T-APM +N-APM +CONJ +V-AAI-3S +T-NSF +N-NSF +PREP +T-GSM +N-GSM +PREP +T-ASF +N-ASF +CONJ +V-2API-3S +CONJ +T-NPM +V-PAP-NPM +V-2AAP-NPM +T-ASN +V-2RAP-ASN +V-2AAI-3P +CONJ +V-AAI-3P +PREP +T-ASF +N-ASF +CONJ +PREP +T-APM +N-APM +CONJ +V-2AAI-3P +V-2AAN +T-ASN +V-2RAP-ASN +CONJ +V-2AAI-3P +PREP +T-ASM +N-ASM +CONJ +V-2AAI-3P +V-PNP-ASM +T-ASM +N-ASM +PREP +R-GSM +T-NPN +N-NPN +V-2AAI-3S +V-RPP-ASM +CONJ +V-PAP-ASM +PREP +T-APM +N-APM +T-GSM +N-GSM +CONJ +V-AOI-3P +CONJ +V-AAI-3P +P-DPM +T-NPM +V-2AAP-NPM +ADV +V-API-3S +T-NSM +V-AOP-NSM +CONJ +V-AAI-3S +A-NSN +T-NSN +N-NSN +T-GSF +A-GSF +T-GPM +N-GPM +P-ASM +V-2AAN +PREP +P-GPN +CONJ +N-DSM +A-DSM +V-IPI-3P +CONJ +P-NSM +V-2AAP-NSM +PREP +N-ASN +V-AAI-3S +CONJ +V-INI-3S +P-GSM +T-NSM +N-NSM +PREP +R-GSM +V-2LAI-3S +T-NPN +N-NPN +V-PAN +PREP +P-DSM +CONJ +V-AAI-3S +P-ASM +V-PAP-NSM +V-PAM-2S +PREP +T-ASM +N-ASM +P-2GS +CONJ +V-PNM-2S +K-APN +P-2DS +V-AAI-3S +T-NSM +N-NSM +CONJ +V-2AAI-3S +PREP +A-ASF +T-ASF +N-ASF +V-PAP-NSM +K-APN +V-AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +PREP +T-DSN +V-PAN +T-ASM +N-ASM +V-ADI-3S +P-ASM +T-NSM +N-NSM +CONJ +A-NPM +V-IAI-3P +V-PAP-NPM +P-ASM +CONJ +V-2AMM-2S +V-2AAI-3S +N-NSM +R-DSM +N-NSN +N-NSM +CONJ +D-NSM +N-NSM +T-GSF +N-GSF +V-IAI-3S +CONJ +V-2AAP-NSM +PREP +T-APM +N-APM +N-GSM +V-IAI-3S +P-ASM +V-2AAN +PREP +T-ASM +N-ASM +P-GSM +CONJ +N-NSF +A-NSF +ADV +N-GPN +A-NUI +V-IAI-3S +P-DSM +CONJ +P-NSF +V-IAI-3S +CONJ +PREP +T-DSN +V-PAN +P-ASM +T-NPM +N-NPM +V-IAI-3P +P-ASM +CONJ +N-NSF +V-PAP-NSF +PREP +N-DSF +N-GSN +PREP +N-GPN +A-NUI +R-NSF +PRT-N +V-AAI-3S +PREP +A-GSM-N +V-APN +V-2AAP-NSF +ADV +V-ADI-3S +T-GSN +N-GSN +T-GSN +N-GSN +P-GSM +CONJ +ADV +V-2AAI-3S +T-NSF +N-NSF +T-GSN +N-GSN +P-GSF +CONJ +V-2AAI-3S +T-NSM +N-NSM +I-NSM +T-NSM +V-AMP-NSM +P-1GS +CONJ +V-PNP-GPM +A-GPM +V-2AAI-3S +T-NSM +N-NSM +N-VSM +T-NPM +N-NPM +V-PAI-3P +P-2AS +CONJ +V-PAI-3P +CONJ +T-NSM +N-NSM +V-2AAI-3S +V-ADI-3S +P-1GS +X-NSM +CONJ +P-1NS +V-2AAI-1S +N-ASF +V-2RAP-ASF +PREP +P-1GS +CONJ +T-NSF +N-NSF +V-2AAP-NSF +CONJ +PRT-N +V-2AAI-3S +V-PAP-NSF +V-2AAI-3S +CONJ +V-2AAP-NSF +P-DSM +PREP +R-ASF +N-ASF +V-ADI-3S +P-GSM +V-AAI-3S +PREP +A-GSM +T-GSM +N-GSM +CONJ +ADV +V-API-3S +ADV +CONJ +T-NSM +V-2AAI-3S +P-DSF +N-VSF +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +V-PNM-2S +PREP +N-ASF +ADV +P-GSM +V-PAP-GSM +V-PNI-3S +X-NSM +PREP +T-GSM +N-GSM +V-PAP-NSM +CONJ +V-RAI-3S +T-NSF +N-NSF +P-2GS +ADV-N +V-PAM-2S +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +V-AAP-NSM +V-ADI-3S +P-DSM +PRT-N +V-PNM-2S +ADV +V-AAM-2S +CONJ +V-FPI-3S +CONJ +V-2AAP-NSM +PREP +T-ASF +N-ASF +PRT-N +V-AAI-3S +V-2AAN +X-ASM +PREP +P-DSM +COND +PRT-N +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +T-ASF +N-ASF +CONJ +A-NPM +V-IAI-3P +CONJ +V-IMI-3P +P-ASF +CONJ +T-NSM +V-2AAI-3S +PRT-N +V-PAM-2P +PRT-N +V-2AAI-3S +CONJ +V-PAI-3S +CONJ +V-IAI-3P +P-GSM +V-RAP-NPM +CONJ +V-2AAI-3S +CONJ +P-NSM +V-AAP-NSM +T-GSF +N-GSF +P-GSF +V-AAI-3S +V-PAP-NSM +T-NSF +N-NSF +V-PAM-2S +CONJ +V-AAI-3S +T-NSN +N-NSN +P-GSF +CONJ +V-2AAI-3S +ADV +CONJ +V-AAI-3S +P-DSF +V-APN +V-2AAN +CONJ +V-2AAI-3P +T-NPM +N-NPM +P-GSF +CONJ +T-NSM +V-AAI-3S +P-DPM +A-DSM-N +V-2AAN +T-ASN +V-2RAP-ASN +CONJ +V-AMP-NSM +T-APM +A-NUI +V-AAI-3S +P-DPM +N-ASF +CONJ +N-ASF +PREP +A-APN +T-APN +N-APN +CONJ +N-APF +V-PAN +CONJ +V-AAI-3S +P-APM +V-PAN +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-PNN +CONJ +V-2AAI-3S +PREP +P-APM +A-ASN-N +V-PAM-2P +PREP +T-ASF +N-ASF +CONJ-N +N-ASF +CONJ-N +N-ASF +CONJ-N +N-ASM +CONJ-N +N-ASN +CONJ-N +PREP +A-NUI +N-APM +V-PAN +CONJ +PRT +PREP +R-ASF +N-ASF +V-2AAS-2P +ADV +V-PAM-2P +CONJ +ADV +V-PNM-2P +CONJ +PRT +K-NPM +PRT-N +V-PNS-3P +P-2AP +V-PNP-NPM +PREP +T-GSF +N-GSF +D-GSF +T-ASM +N-ASM +PREP +T-GPM +N-GPM +P-2GP +V-PAM-2P +PREP +N-ASN +PREP +P-APM +CONJ +V-PNP-NPM +V-INI-3P +PREP +T-APF +N-APF +V-PMP-NPM +CONJ +V-PAP-NPM +ADV +CONJ +V-AAI-3S +N-NSM +T-NSM +N-NSM +T-APN +V-PNP-APN +A-APN +CONJ +V-IAI-3S +PREP +T-ASN +V-PPN +PREP +X-GPM +CONJ +N-NSM +V-API-3S +PREP +A-GPM +CONJ +PREP +X-GPM +CONJ +N-NSM +V-2API-3S +CONJ +A-GPM +CONJ +N-NSM +X-NSM +T-GPM +A-GPM +V-2AAI-3S +CONJ +V-2AAI-3S +N-NSM +N-ASM +P-1NS +V-AAI-1S +CONJ +I-NSM +V-PAI-3S +D-NSM +PREP +R-GSM +V-PAI-1S +D-APN +CONJ +V-IAI-3S +V-2AAN +P-ASM +CONJ +V-AAP-NPM +T-NPM +N-NPM +V-ADI-3P +P-DSM +K-APN +V-AAI-3P +CONJ +V-2AAP-NSM +P-APM +V-AAI-3S +PREP +A-ASF +PREP +N-ASF +V-PPP-ASF +N-PRI +CONJ +T-NPM +N-NPM +V-2AAP-NPM +V-AAI-3P +P-DSM +CONJ +V-ADP-NSM +P-APM +V-IAI-3S +P-DPM +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +T-APM +N-ASF +N-GSF +V-PAP-APM +V-INI-3S +CONJ +T-NSF +N-NSF +V-ADI-3S +V-PAN +CONJ +V-2AAP-NPM +T-NPM +A-NUI +V-2AAI-3P +P-DSM +V-AAM-2S +T-ASM +N-ASM +CONJ +V-AOP-NPM +PREP +T-APF +N-DSM +N-APF +CONJ +N-APM +V-AAS-3P +CONJ +V-2AAS-3P +N-ASM +CONJ +ADV +PREP +A-DSM +N-DSM +V-PAI-1P +CONJ +V-2AAI-3S +PREP +P-APM +V-2AAM-2P +P-DPM +V-2AAN +P-2NP +CONJ +T-NPM +V-2AAI-3P +PRT-N +V-PAI-3P +P-1DP +A-NSN-C +PRT +N-NPM +A-NUI +CONJ +N-NPM +A-NUI +COND +PRT-I +V-AOP-NPM +P-1NP +V-AAS-1P +PREP +A-ASM +T-ASM +N-ASM +D-ASM +N-APN +CONJ +V-IAI-3P +ADV +A-NPM +N-NPM +CONJ +V-2AAI-3S +PREP +T-APM +N-APM +P-GSM +V-AAM-2P +P-APM +N-APF +ADV +PREP +A-NUI +CONJ +V-AAI-3P +ADV +CONJ +V-AAI-3P +A-APM +CONJ +V-2AAP-NSM +T-APM +A-NUI +N-APM +CONJ +T-APM +A-NUI +N-APM +V-AAP-NSM +PREP +T-ASM +N-ASM +V-AAI-3S +P-APM +CONJ +V-AAI-3S +CONJ +V-IAI-3S +T-DPM +N-DPM +V-2AAN +T-DSM +N-DSM +CONJ +V-2AAI-3P +CONJ +V-API-3P +A-NPM +CONJ +V-API-3S +T-NSN +V-AAP-NSN +P-DPM +N-GPN +N-NPM +A-NUI +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +V-PNP-ASM +P-ASM +PREP +A-APF +V-IAI-3P +P-DSM +T-NPM +N-NPM +CONJ +V-AAI-3S +P-APM +V-PAP-NSM +I-ASM +P-1AS +V-PAN +T-NPM +N-NPM +V-PAI-3P +CONJ +T-NPM +V-AOP-NPM +V-2AAI-3P +N-ASM +T-ASM +N-ASM +CONJ +A-NPM +N-ASM +CONJ +A-NPM +CONJ +N-NSM +X-NSM +T-GPM +A-GPM +V-2AAI-3S +CONJ +V-2AAI-3S +P-DPM +CONJ +P-2NP +I-ASM +P-1AS +V-PAN +V-PAI-2P +CONJ +N-NSM +V-AOP-NSM +V-2AAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-NSM +V-AAP-NSM +P-DPM +V-AAI-3S +A-DSM-N +V-PAN +D-ASN +V-2AAP-NSM +CONJ +V-PAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +A-APN +V-2AAN +CONJ +V-APN +PREP +T-GPM +A-GPM-C +CONJ +N-GPM +CONJ +N-GPM +CONJ +V-APN +CONJ +T-DSF +A-DSF +N-DSF +V-APN +CONJ +V-IAI-3S +PREP +A-APM +COND +X-NSM +V-PAI-3S +ADV +P-1GS +V-PNN +V-ADM-3S +F-3ASM +CONJ +V-AAM-3S +T-ASM +N-ASM +P-GSM +PREP +N-ASF +CONJ +V-PAM-3S +P-1DS +CONJ +COND +R-NSM +V-PAS-3S +T-ASF +N-ASF +P-GSM +V-AAN +V-FAI-3S +P-ASF +CONJ +PRT +R-NSM +V-AAS-3S +T-ASF +N-ASF +P-GSM +PREP +P-1GS +D-NSM +V-FAI-3S +P-ASF +CONJ +I-ASN +V-PPI-3S +N-NSM +V-AAP-NSM +T-ASM +N-ASM +A-ASM +CONJ +F-3ASM +V-AAP-NSM +PRT +V-APP-NSM +CONJ +PRT +R-NSM +V-AOS-3S +P-1AS +CONJ +T-APM +S-1SAPM +N-APM +D-ASM +T-NSM +N-NSM +T-GSM +N-GSM +V-FOI-3S +CONJ +V-2AAS-3S +PREP +T-DSF +N-DSF +P-GSM +CONJ +T-GSM +N-GSM +CONJ +T-GPM +A-GPM +N-GPM +CONJ +V-PAI-1S +P-2DP +ADV +V-PAI-3P +X-NPM +T-GPM +ADV +V-RAP-GPM +R-NPM +PRT-N +PRT-N +V-ADS-3P +N-GSM +ADV +PRT +V-2AAS-3P +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-2ADI-3S +PREP +T-APM +N-APM +D-APM +ADV +N-NPF +A-NUI +CONJ +V-2AAP-NSM +N-ASM +CONJ +N-ASM +CONJ +N-ASM +V-2AAI-3S +PREP +T-ASN +N-ASN +V-ADN +CONJ +V-2ADI-3S +PREP +T-DSN +V-PNN +P-ASM +T-NSN +N-NSN +T-GSN +N-GSN +P-GSM +A-NSN +CONJ +T-NSM +N-NSM +P-GSM +A-NSM +V-PAP-NSM +CONJ +V-2AMM-2S +N-NPM +A-NUI +V-IAI-3P +P-DSM +R-NPM +V-IAI-3P +N-NSM +CONJ +N-NSM +R-NPM +V-APP-NPM +PREP +N-DSF +V-IAI-3P +T-ASF +N-ASF +P-GSM +R-ASF +V-PAN +PREP +N-PRI +V-IAI-3S-ATT +CONJ +T-NSM +N-NSM +CONJ +T-NPM +PREP +P-DSM +V-IAI-3P +V-RPP-NPM +N-DSM +CONJ +V-AAP-NPM +V-2AAI-3P +T-ASF +N-ASF +P-GSM +CONJ +T-APM +A-NUI +N-APM +T-APM +V-RAP-APM +P-DSM +CONJ +V-2ADI-3S +PREP +T-DSN +V-PNN +P-APM +PREP +P-GSM +V-2AAI-3S +T-NSM +N-NSM +PREP +T-ASM +N-ASM +N-VSM +A-NSN +V-PAI-3S +P-1AP +ADV +V-PAN +CONJ +V-AAS-1P +N-APF +A-APF +A-ASF +P-2DS +CONJ +A-ASF +N-DSM +CONJ +A-ASF +N-DSM +PRT-N +V-RAP-NSM +R-ASN +V-PAI-3S +CONJ +D-APN +P-GSM +V-PAP-GSM +V-2ADI-3S +N-NSF +CONJ +V-IAI-3S +P-APM +CONJ +V-AOI-3P +PREP +T-DSN +V-2AAN +P-APM +PREP +T-ASF +N-ASF +CONJ +N-NSF +V-2ADI-3S +PREP +T-GSF +N-GSF +V-PAP-NSF +D-NSM +V-PAI-3S +T-NSM +N-NSM +P-1GS +T-NSM +V-RPP-NSM +P-GSM +V-PAM-2P +CONJ +PREP +T-DSN +V-2ADN +T-ASF +N-ASF +V-API-3S +N-NSM +A-NSM +CONJ +P-NPM +V-AAI-3P +CONJ +A-DSM-N +V-AAI-3P +PREP +D-DPF +T-DPF +N-DPF +A-ASN-N +R-GPN +V-RAI-3P +CONJ +V-2ADI-3S +T-DSF +ADV +N-DSF +V-2AAP-GPM +P-GPM +PREP +T-GSN +N-GSN +V-AAI-3S +P-DSM +N-NSM +A-NSM +CONJ +V-2AMM-2S +N-NSM +PREP +T-GSM +N-GSM +V-AAI-3S +V-PAP-NSM +N-VSM +V-PNI-1S +P-2GS +V-AAN +PREP +T-ASM +N-ASM +P-1GS +CONJ +A-NSM +P-1DS +V-PAI-3S +CONJ +V-2AMM-2S +N-NSN +V-PAI-3S +P-ASM +CONJ +ADV +V-PAI-3S +CONJ +V-PAI-3S +P-ASM +PREP +N-GSM +CONJ +ADV +V-PAI-3S +PREP +P-GSM +V-PAP-NSN +P-ASM +CONJ +V-API-1S +T-GPM +N-GPM +P-2GS +CONJ +V-2AAS-3P +P-ASN +CONJ +PRT-N +V-AOI-3P-ATT +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +INJ +N-VSF +A-VSF +CONJ +V-RPP-NSF +ADV +PRT-I +V-FDI-1S +PREP +P-2AP +CONJ +V-FDI-1S +P-2GP +V-2AAM-2S +ADV +T-ASM +N-ASM +P-2GS +CONJ +ADV +V-PNP-GSM +P-GSM +V-AAI-3S +P-ASM +T-NSN +N-NSN +CONJ +V-AAI-3S +CONJ +V-AAI-3S +T-NSM +N-NSM +T-DSN +N-DSN +T-DSN +A-DSN +CONJ +V-ADI-3S +T-ASM +N-ASM +CONJ +V-AAI-3S +P-ASM +T-DSM +N-DSM +P-GSM +CONJ +V-IPI-3P +A-NPM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +A-GPM +V-PAP-GPM +PREP +A-DPN +R-DPN +V-IAI-3S +V-2AAI-3S +PREP +T-APM +N-APM +P-GSM +V-2AMM-2P +P-2NP +PREP +T-APN +N-APN +P-2GP +T-APM +N-APM +D-APM +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +V-PPN +PREP +N-APF +N-GPM +CONJ +T-NPM +V-IAI-3P +T-ASN +N-ASN +D-ASN +CONJ +V-IAI-3S +V-RPP-NSN +PREP +P-GPM +CONJ +PRT-N +V-2ADS-3P +P-ASN +CONJ +V-INI-3P +V-AAN +P-ASM +PREP +T-GSN +N-GSN +D-GSN +CONJ +V-2AAI-3S +PREP +P-DPM +N-NSM +T-NSN +PRT +I-NSM +P-GPM +V-PAO-3S +A-NSM-C +CONJ +T-NSM +N-NSM +V-RAP-NSM +T-ASM +N-ASM +T-GSF +N-GSF +P-GPM +V-2ADP-NSM +N-ASN +V-AAI-3S +P-ASN +PREP +F-3DSM +CONJ +V-2AAI-3S +P-DPM +COND +R-NSM +V-ADS-3S +D-ASN +T-ASN +N-ASN +PREP +T-DSN +N-DSN +P-1GS +P-1AS +V-PNI-3S +CONJ +PRT +R-NSM +P-1AS +V-ADS-3S +V-PNI-3S +T-ASM +V-AAP-ASM +P-1AS +CONJ +T-NSM +A-NSM-C +PREP +A-DPM +P-2DP +V-PAP-NSM +D-NSM +V-PAI-3S +A-NSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +N-VSM +V-2AAI-1P +X-ASM +PREP +T-DSN +N-DSN +P-2GS +V-PAP-ASM +N-APN +CONJ +V-IAI-1P +P-ASM +CONJ +PRT-N +V-PAI-3S +PREP +P-1GP +CONJ +V-2AAI-3S +PREP +P-ASM +N-NSM +PRT-N +V-PAM-2P +CONJ +R-NSM +PRT-N +V-PAI-3S +PREP +P-2GP +PREP +P-2GP +V-PAI-3S +CONJ +V-2ADI-3S +PREP +T-DSN +V-PPN +T-APF +N-APF +T-GSF +N-GSF +P-GSM +CONJ +P-NSM +T-ASN +N-ASN +V-AAI-3S +T-GSN +V-PNN +PREP +N-PRI +CONJ +V-AAI-3S +N-APM +PREP +N-GSN +P-GSM +CONJ +V-AOP-NPM +V-2AAI-3P +PREP +N-ASF +N-GPM +CONJ +V-AAN +P-DSM +CONJ +PRT-N +V-ADI-3P +P-ASM +CONJ +T-NSN +N-NSN +P-GSM +V-IAI-3S +V-PNP-NSN +PREP +N-PRI +CONJ +V-2AAP-NPM +T-NPM +N-NPM +N-NSM +CONJ +N-NSM +V-2AAI-3P +N-VSM +V-PAI-2S +V-2AAS-1P +N-ASN +V-2AAN +PREP +T-GSM +N-GSM +CONJ +V-AAN +P-APM +CONJ +V-2APP-NSM +V-AAI-3S +P-DPM +CONJ +V-AOI-3P +PREP +A-ASF +N-ASF +CONJ +V-PNP-GPM +P-GPM +PREP +T-DSF +N-DSF +V-2AAI-3S +X-NSM +PREP +P-ASM +V-FAI-1S +P-2DS +COND +ADV +V-PNS-2S +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +T-NPF +N-NPF +N-APM +V-PAI-3P +CONJ +T-NPN +N-NPN +T-GSM +N-GSM +N-APF +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +V-PAI-3S +ADV-I +T-ASF +N-ASF +V-PAS-3S +CONJ +V-2AAI-3S +PREP +A-ASM +V-PAM-2S +P-1DS +CONJ +T-NSM +V-2AAI-3S +V-AAM-2S +P-1DS +ADV-S +V-2AAP-DSM +V-AAN +T-ASM +N-ASM +P-1GS +CONJ +V-2AAI-3S +P-DSM +V-2AAM-2S +T-APM +A-APM +V-AAN +T-APM +F-3GPM +A-APM +CONJ +P-2NS +V-2AAP-NSM +V-PAM-2S +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-2AAI-3S +CONJ +A-NSM +V-FAI-1S +P-2DS +N-VSM +CONJ +ADV-S +V-AAM-2S +P-1DS +V-AMN +T-DPM +PREP +T-ASM +N-ASM +P-1GS +CONJ +V-2AAI-3S +PREP +P-ASM +T-NSM +N-NSM +A-NSM-N +V-2AAP-NSM +T-ASF +N-ASF +PREP +N-ASN +CONJ +V-PAP-NSM +PREP +T-APN +ADV +A-NSM +V-PAI-3S +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +PREP +D-APN +V-AAI-3S +T-NSM +N-NSM +A-APM +A-NUI +CONJ +V-AAI-3S +P-APM +PREP +A-NUI +PREP +N-GSN +P-GSM +PREP +A-ASF +N-ASF +CONJ +N-ASM +ADV +V-IAI-3S-ATT +P-NSM +V-PNN +CONJ +V-IAI-3S +PREP +P-APM +PRT +T-NSM +N-NSM +A-NSM +CONJ +T-NPM +N-NPM +A-NPM +CONJ +V-AOM-2P +T-GSM +N-GSM +T-GSM +N-GSM +ADV +N-APM +V-2AAS-3S +PREP +T-ASM +N-ASM +P-GSM +V-PAM-2P +V-2AMM-2S +V-PAI-1S +P-2AP +ADV +N-APM +PREP +A-DSN +N-GPM +PRT-N +V-PAM-2P +N-ASN +PRT-N +N-ASF +PRT-N +N-APN +CONJ +A-ASM-N +PREP +T-ASF +N-ASF +V-ADS-2P +CONJ +PRT +PREP +R-ASF +N-ASF +V-2AAS-2P +ADV-S +V-PAM-2P +N-NSF +T-DSM +N-DSM +D-DSM +CONJ +COND +ADV +V-PAS-3S +N-NSM +N-GSF +V-2FPI-3S +PREP +P-ASM +T-NSF +N-NSF +P-2GP +CONJ +COND +PRT-N +PREP +P-2AP +V-FAI-3S +CONJ +PREP +P-DSF +T-DSF +N-DSF +V-PAM-2P +V-PAP-NPM +CONJ +V-PAP-NPM +T-APN +PREP +P-GPM +CONJ +A-NSM +T-NSM +N-NSM +T-GSM +N-GSM +P-GSM +PRT-N +V-PAM-2P +PREP +N-GSF +PREP +N-ASF +CONJ +PRT +PREP +R-ASF +N-ASF +V-PNS-2P +CONJ +V-PNS-3P +P-2AP +V-PAM-2P +T-APN +V-PPP-APN +P-2DP +CONJ +V-PAM-2P +T-APM +PREP +P-DSF +A-APM +CONJ +V-PAM-2P +P-DPM +V-RAI-3S +PREP +P-2AP +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +PRT +PREP +R-ASF +N-ASF +V-2AAS-2P +CONJ +PRT-N +V-PNS-3P +P-2AP +V-2AAP-NPM +PREP +T-APF +N-APF +P-GSF +V-2AAM-2P +CONJ +T-ASM +N-ASM +T-ASM +V-APP-ASM +P-1DP +PREP +T-GSF +N-GSF +P-2GP +PREP +T-APM +N-APM +V-PMI-1P +P-2DP +ADV +D-ASN +V-PAM-2P +CONJ +V-RAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +V-PAI-1S +P-2DP +CONJ +N-DPN +PREP +T-DSF +N-DSF +D-DSF +A-NSN-C +V-FDI-3S +PRT +T-DSF +N-DSF +D-DSF +INJ +P-2DS +N-PRI +INJ +P-2DS +N-PRI +CONJ +COND +PREP +N-DSF +CONJ +N-DSF +V-AOI-3P +T-NPF +N-NPF +T-NPF +V-2ADP-NPF +PREP +P-2DP +PRT +ADV +PREP +N-DSM +CONJ +N-DSF +V-PNP-NPM +V-AAI-3P +ADV +N-DSF +CONJ +N-DSF +A-NSN-C +V-FDI-3S +PREP +T-DSF +N-DSF +PRT +P-2DP +CONJ +N-PRI +PRT-N +P-2NS +ADV +N-GSM +V-FPI-2S +ADV +T-GSM +N-GSM +V-FDI-2S +T-NSM +V-PAP-NSM +P-2GP +P-1GS +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +P-2AP +P-1AS +V-PAI-3S +CONJ +T-NSM +P-1AS +V-PAP-NSM +V-PAI-3S +T-ASM +V-AAP-ASM +P-1AS +CONJ +V-AAI-3P +T-NPM +A-NUI +PREP +N-GSF +V-PAP-NPM +N-VSM +CONJ +T-NPN +N-NPN +V-PPI-3S +P-1DP +PREP +T-DSN +N-DSN +P-2GS +CONJ +V-2AAI-3S +P-DPM +V-IAI-1S +T-ASM +N-ASM +ADV +N-ASF +PREP +T-GSM +N-GSM +V-2AAP-ASM +V-2AMM-2S +V-RAI-1S +P-2DP +T-ASF +N-ASF +T-GSN +V-PAN +ADV +N-GPM +CONJ +N-GPM +CONJ +PREP +A-ASF +T-ASF +N-ASF +T-GSM +A-GSM +CONJ +A-ASN-N +P-2AP +PRT-N +PRT-N +V-FAI-3S +ADV +PREP +D-DSN +PRT-N +V-PAM-2P +CONJ +T-NPN +N-NPN +P-2DP +V-PPI-3S +CONJ +V-PAM-2P +CONJ +T-NPN +N-NPN +P-2GP +V-RPI-3S +PREP +T-DPM +N-DPM +PREP +P-DSF +T-DSF +N-DSF +V-ADI-3S +T-DSN +N-DSN +T-DSN +A-DSN +CONJ +V-2AAI-3S +V-PMI-1S +P-2DS +N-VSM +N-VSM +T-GSM +N-GSM +CONJ +T-GSF +N-GSF +CONJ +V-AAI-2S +D-APN +PREP +A-GPM +CONJ +A-GPM +CONJ +V-AAI-2S +P-APN +A-DPM +PRT +T-NSM +N-NSM +CONJ +ADV +N-NSF +V-2ADI-3S +PREP +P-2GS +A-NPN +P-1DS +V-API-3S +PREP +T-GSM +N-GSM +P-1GS +CONJ +A-NSM-N +V-PAI-3S +I-NSM +V-PAI-3S +T-NSM +N-NSM +COND +PRT-N +T-NSM +N-NSM +CONJ +I-NSM +V-PAI-3S +T-NSM +N-NSM +COND +PRT-N +T-NSM +N-NSM +CONJ +COND +R-DSM +V-AAN +V-PNS-3S +T-NSM +N-NSM +CONJ +V-2APP-NSM +PREP +T-APM +N-APM +PREP +A-ASF +V-2AAI-3S +A-NPM +T-NPM +N-NPM +T-NPM +V-PAP-NPM +R-APN +V-PAI-2P +CONJ +V-PAI-1S +P-2DP +CONJ +A-NPM +N-NPM +CONJ +N-NPM +V-AAI-3P +V-2AAN +R-APN +P-2NP +V-PAI-2P +CONJ +PRT-N +V-2AAI-3P +CONJ +V-AAN +R-APN +V-PAI-2P +CONJ +PRT-N +V-AAI-3P +CONJ +V-2AMM-2S +A-NSM +X-NSM +V-2AAI-3S +V-PAP-NSM +P-ASM +V-PAP-NSM +N-VSM +I-ASN +V-AAP-NSM +N-ASF +A-ASF +V-FAI-1S +CONJ +T-NSM +V-2AAI-3S +PREP +P-ASM +PREP +T-DSM +N-DSM +I-NSN +V-RPI-3S +ADV-I +V-PAI-2S +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +V-FAI-2S +N-ASM +T-ASM +N-ASM +P-2GS +PREP +A-GSF +T-GSF +N-GSF +P-2GS +CONJ +PREP +A-DSF +T-DSF +N-DSF +P-2GS +CONJ +PREP +A-DSF +T-DSF +N-DSF +P-2GS +CONJ +PREP +A-DSF +T-DSF +N-DSF +P-2GS +CONJ +T-ASM +ADV +P-2GS +ADV +F-2ASM +CONJ +V-2AAI-3S +P-DSM +ADV +V-ADI-2S +D-ASN +V-PAM-2S +CONJ +V-FDI-2S +CONJ +T-NSM +V-PAP-NSM +V-AAN +F-3ASM +V-2AAI-3S +PREP +T-ASM +N-ASM +CONJ +I-NSM +V-PAI-3S +P-1GS +ADV +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +N-NSM +X-NSM +V-IAI-3S +PREP +N-PRI +PREP +N-PRI +CONJ +N-DPM +V-2AAI-3S +R-NPM +CONJ +V-AAP-NPM +P-ASM +CONJ +N-APF +V-2AAP-NPM +V-2AAI-3P +V-2AAP-NPM +A-ASM +CONJ +PREP +N-ASF +N-NSM +X-NSM +V-IAI-3S +PREP +T-DSF +N-DSF +D-DSF +CONJ +V-2AAP-NSM +P-ASM +V-2AAI-3S +CONJ +ADV +CONJ +N-NSM +PREP +T-ASM +N-ASM +V-2AAP-NSM +CONJ +V-2AAP-NSM +V-2AAI-3S +CONJ +N-NSM +X-NSM +V-PAP-NSM +V-2AAI-3S +PREP +P-ASM +CONJ +V-2AAP-NSM +V-AOI-3S +CONJ +V-2AAP-NSM +V-AAI-3S +T-APN +N-APN +P-GSM +V-PAP-NSM +N-ASN +CONJ +N-ASM +CONJ +V-AAP-NSM +P-ASM +PREP +T-ASN +A-ASN +N-ASN +V-2AAI-3S +P-ASM +PREP +N-ASN +CONJ +V-AOI-3S +P-GSM +CONJ +PREP +T-ASF +ADV +V-2AAP-NSM +A-NUI +N-APN +V-AAI-3S +T-DSM +N-DSM +CONJ +V-2AAI-3S +V-APM-2S +P-GSM +CONJ +X-ASN +PRT +R-ASN +V-AAS-2S +P-1NS +PREP +T-DSN +V-PNN +P-1AS +V-FAI-1S +P-2DS +V-PAI-3S +P-2DS +I-NSM +D-GPM +T-GPM +A-GPM +V-2RAN +ADV +T-GSM +V-2AAP-GSM +PREP +T-APM +N-APM +CONJ +T-NSM +V-2AAI-3S +T-NSM +V-AAP-NSM +T-ASN +N-ASN +PREP +P-GSM +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +V-PNM-2S +CONJ +P-2NS +V-PAM-2S +ADV +CONJ +PREP +T-DSN +V-PNN +P-APM +P-NSM +V-2AAI-3S +PREP +N-ASF +X-ASF +CONJ +N-NSF +X-NSF +N-DSN +N-NSF +V-ADI-3S +P-ASM +PREP +T-ASF +N-ASF +CONJ +D-DSF +V-IAI-3S +N-NSF +V-PPP-NSF +N-PRI +R-NSF +CONJ +V-AOP-NSF +PREP +T-APM +N-APM +T-GSM +N-GSM +V-IAI-3S +T-ASM +N-ASM +P-GSM +CONJ +T-NSF +N-NSF +V-IPI-3S +PREP +A-ASF +N-ASF +CONJ +V-2AAP-NSF +V-2AAI-3S +N-VSM +PRT-N +V-PAI-3S +P-2DS +CONJ +T-NSF +N-NSF +P-1GS +A-ASF +P-1AS +V-PAN +V-IAI-3S +CONJ +V-2AAM-2S +P-DSF +CONJ +P-1DS +V-2ADS-3S +CONJ +V-AOP-NSM +V-2AAI-3S +P-DSF +T-NSM +N-NSM +N-VSF +N-VSF +V-PAI-2S +CONJ +V-PPI-2S +PREP +A-APN +CONJ +A-GPN +N-NSF +V-PAI-3S +PRT +A-GSN +CONJ +N-PRI +T-ASF +A-ASF +N-ASF +V-AMI-3S +R-NSF +PRT-N +V-FPI-3S +P-GSF +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +V-PNP-ASM +P-ASM +PREP +N-DSM +X-DSM +ADV +V-AMI-3S +V-2AAI-3S +X-NSM +T-GPM +N-GPM +P-GSM +PREP +P-ASM +N-VSM +V-AAM-2S +P-1AP +V-PNN +ADV +CONJ +N-NSM +V-AAI-3S +T-APM +N-APM +P-GSM +CONJ +V-2AAI-3S +P-DPM +CONJ +V-PNS-2P +V-PAM-2P +N-VSM +V-APM-3S +T-NSN +N-NSN +P-2GS +V-2AAM-3S +T-NSF +N-NSF +P-2GS +T-ASM +N-ASM +P-1GP +T-ASM +A-ASM +V-PAM-2S +P-1DP +T-ASN +PREP +N-ASF +CONJ +V-2AAM-2S +P-1DP +T-APF +N-APF +P-1GP +CONJ +CONJ +P-NPM +V-PAI-1P +A-DSM +V-PAP-DSM +P-1DP +CONJ +PRT-N +V-AAS-2S +P-1AP +PREP +N-ASM +CONJ +V-2AAI-3S +PREP +P-APM +I-NSM +PREP +P-2GP +V-FAI-3S +A-ASM +CONJ +V-FDI-3S +PREP +P-ASM +N-GSN +CONJ +V-2AAS-3S +P-DSM +N-VSM +V-AAM-2S +P-1DS +A-APM +N-APM +CONJ +A-NSM +P-1GS +V-2ADI-3S +PREP +N-GSF +PREP +P-1AS +CONJ +PRT-N +V-PAI-1S +R-ASN +V-FAI-1S +P-DSM +D-NSM-K +ADV +V-AOP-NSM +V-2AAS-3S +PRT-N +P-1DS +N-APM +V-PAM-2S +ADV +T-NSF +N-NSF +V-RPI-3S +CONJ +T-NPN +N-NPN +P-1GS +PREP +P-1GS +PREP +T-ASF +N-ASF +V-PAI-3P +PRT-N +V-PNI-1S +V-2AAP-NSM +V-2AAN +P-2DS +V-PAI-1S +P-2DP +COND +CONJ +PRT-N +V-FAI-3S +P-DSM +V-2AAP-NSM +PREP +T-ASN +V-PAN +A-ASM +P-GSM +PRT +PREP +T-ASF +N-ASF +P-GSM +V-APP-NSM +V-FAI-3S +P-DSM +K-GPM +V-PAI-3S +P-1NS-K +P-2DP +V-PAI-1S +V-PAM-2P +CONJ +V-FPI-3S +P-2DP +V-PAM-2P +CONJ +V-FAI-2P +V-PAM-2P +CONJ +V-2FPI-3S +P-2DP +CONJ +A-NSM +T-NSM +V-PAP-NSM +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +V-PAI-3S +CONJ +T-DSM +V-PAP-DSM +V-2FPI-3S +CONJ +I-ASM +PREP +P-2GP +T-ASM +N-ASM +V-FAI-3S +T-NSM +N-NSM +N-ASM +PRT-N +PREP +N-GSM +N-ASM +P-DSM +V-FAI-3S +PRT +CONJ +V-FAI-3S +N-ASN +V-FAI-3S +P-DSM +N-ASM +CONJ +COND +P-2NP +A-NPM +V-PAP-NPM +V-RAI-2P +N-APN +A-APN +V-PAN +T-DPN +N-DPN +P-2GP +Q-DSN +ADV +T-NSM +N-NSM +T-NSM +PREP +N-GSM +V-FAI-3S +N-ASN +A-ASN +T-DPM +V-PAP-DPM +P-ASM +CONJ +V-IAI-3S +V-PAP-NSM +N-ASN +CONJ +P-NSN +V-IAI-3S +A-ASN +CONJ +V-2ADI-3S +T-GSN +N-GSN +V-2AAP-GSN +V-AAI-3S +T-NSM +A-NSM +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +X-NPM +PREP +P-GPM +V-2AAI-3P +PREP +N-PRI +T-DSM +N-DSM +T-GPN +N-GPN +V-PAI-3S +T-APN +N-APN +CONJ +A-NPM +V-PAP-NPM +N-ASN +PREP +N-GSM +V-IAI-3P +PREP +P-GSM +CONJ +P-NSM +V-RAP-NSM +P-GPM +T-APN +N-APN +V-2AAI-3S +P-DPM +A-NSF +N-NSF +PREP +F-3ASF +V-APP-NSF +V-PPI-3S +CONJ +N-NSM +PREP +N-ASM +V-PAI-3S +CONJ +COND +CONJ +T-NSM +N-NSM +PREP +F-3ASM +V-API-3S +ADV-I +V-FPI-3S +T-NSF +N-NSF +P-GSM +CONJ +V-PAI-2P +PREP +N-PRI +V-PAN +P-1AS +T-APN +N-APN +CONJ +COND +P-1NS +PREP +N-PRI +V-PAI-1S +T-APN +N-APN +T-NPM +N-NPM +P-2GP +PREP +I-DSM +V-PAI-3P +PREP +D-ASN +P-NPM +P-2GP +N-NPM +V-FDI-3P +CONJ +COND +PREP +N-DSM +N-GSM +P-1NS +V-PAI-1S +T-APN +N-APN +PRT +V-AAI-3S +PREP +P-2AP +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +T-NSM +A-NSM +V-RPP-NSM +V-PAS-3S +T-ASF +F-3GSM +N-ASF +PREP +N-DSF +V-PAI-3S +T-NPN +V-PAP-NPN +P-GSM +CONJ +CONJ +A-NSM-C +P-GSM +V-2AAP-NSM +V-AAS-3S +P-ASM +T-ASF +N-ASF +P-GSM +V-PAI-3S +PREP +R-DSF +V-2LAI-3S +CONJ +T-APN +N-APN +P-GSM +V-PAI-3S +T-NSM +PRT-N +V-PAP-NSM +PREP +P-1GS +PREP +P-1GS +V-PAI-3S +CONJ +T-NSM +PRT-N +V-PAP-NSM +PREP +P-1GS +V-PAI-3S +CONJ +T-NSN +A-NSN +N-NSN +V-2AAS-3S +PREP +T-GSM +N-GSM +V-PNI-3S +PREP +A-GPM +N-GPM +V-PAP-NSN +N-ASF +CONJ +PRT-N +V-PAP-NSN +V-PAI-3S +V-FAI-1S +PREP +T-ASM +N-ASM +P-1GS +ADV +V-2AAI-1S +CONJ +V-2AAP-NSN +V-PAI-3S +V-RPP-ASM +CONJ +V-RPP-ASM +ADV +V-PNI-3S +CONJ +V-PAI-3S +A-APN +N-APN +A-APN-C +F-3GSN +A-NUI +CONJ +V-2AAP-NPN +V-PAI-3S +ADV +CONJ +V-PNI-3S +T-NPN +A-NPN-S +T-GSM +N-GSM +D-GSM +A-NPN +T-GPN +A-GPN-S +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-ASM +D-APN +V-AAP-NSF +N-ASF +X-NSF +N-NSF +PREP +T-GSM +N-GSM +V-2AAI-3S +P-DSM +A-NSF +T-NSF +N-NSF +T-NSF +V-AAP-NSF +P-2AS +CONJ +N-NPM +R-APM +V-AAI-2S +CONJ +P-NSM +V-2AAI-3S +PRT +A-NPM +T-NPM +V-PAP-NPM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-PAP-NPM +CONJ +T-GPM +N-GPM +V-PPP-GPM +V-ADI-3S +V-PAN +T-NSF +N-NSF +D-NSF +N-NSF +A-NSF +V-PAI-3S +N-ASN +V-PAI-3S +CONJ +N-NSN +PRT-N +V-FPI-3S +P-DSF +COND +PRT-N +T-NSN +N-NSN +N-GSM +CONJ +ADV +V-2ADI-3S +N-NSM +T-DPM +N-DPM +N-NSN +ADV +V-FDI-3S +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +T-DSF +N-DSF +D-DSF +N-NSF +N-GSM +V-FPI-3S +PREP +T-DSF +N-DSF +PREP +T-GPM +N-GPM +T-GSF +N-GSF +D-GSF +CONJ +V-FAI-3S +P-APM +CONJ +V-2AAI-3S +PREP +T-GPN +N-GPN +T-GSF +N-GSF +V-AAN +T-ASF +N-ASF +N-GSM +CONJ +V-2AMM-2S +A-NSN-C +N-GSM +ADV +N-NPM +N-NPM +V-FMI-3P +PREP +T-DSF +N-DSF +PREP +T-GSF +N-GSF +D-GSF +CONJ +V-FAI-3P +P-ASF +CONJ +V-AAI-3P +PREP +T-ASN +N-ASN +N-GSM +CONJ +V-2AMM-2S +A-NSN-C +N-GSM +ADV +A-NSM-N +N-ASM +V-AAP-NSM +PREP +N-ASF +V-PAI-3S +CONJ-N +PREP +T-ASM +N-ASM +CONJ +PREP +T-ASF +N-ASF +CONJ +T-NPM +V-PNP-NPM +T-ASN +N-ASN +V-PAS-3P +T-NSM +N-NSM +T-GSN +N-GSN +V-PAI-3S +T-NSM +N-NSM +P-2GS +CONJ +T-NSM +N-NSM +P-2GS +A-NSM +V-PAS-3S +CONJ +A-NSN +T-NSN +N-NSN +P-2GS +A-NSN +V-PAI-3S +CONJ +CONJ +A-NSM +V-PAS-3S +CONJ +T-NSN +N-NSN +P-2GS +A-NSN +CONJ +V-PAM-2S +PRT-N +T-NSN +N-NSN +T-NSN +PREP +P-2DS +N-NSN +V-PAI-3S +CONJ +COND +T-NSN +N-NSN +P-2GS +A-NSN +A-NSN +PRT-N +V-PAP-NSN +N-ASN +X-ASN +A-ASN +V-FDI-3S +A-NSN +A-NSN +ADV +CONJ +T-NSM +N-NSM +T-DSF +N-DSF +V-PAS-3S +P-2AS +CONJ +PREP +T-DSN +V-AAN +V-PAI-3S +P-ASM +N-NSM +ADV +V-AAS-3S +PREP +P-DSM +CONJ +V-2AAP-NSM +V-2AAI-3S +CONJ +T-NSM +N-NSM +V-2AAP-NSM +V-AAI-3S +CONJ +PRT-N +ADV-S +V-API-3S +PREP +T-GSN +N-GSN +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +P-ASM +ADV +P-2NP +T-NPM +N-NPM +T-ASN +ADV +T-GSN +N-GSN +CONJ +T-GSM +N-GSM +V-PAI-2P +CONJ +T-NSN +ADV +P-2GP +V-PAI-3S +N-GSF +CONJ +N-GSF +A-VPM +PRT-N +T-NSM +V-AAP-NSM +T-ASN +ADV +CONJ +T-ASN +ADV +V-AAI-3S +ADV +T-APN +V-PAP-APN +V-2AAM-2P +N-ASF +CONJ +V-2AMM-2S +A-NPN +A-NPN +P-2DP +V-PAI-3S +CONJ +INJ +P-2DP +T-DPM +N-DPM +CONJ +V-PAI-2P +T-ASN +N-ASN +CONJ +T-ASN +N-ASN +CONJ +A-ASN +N-ASN +CONJ +V-PNI-2P +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-IAI-3S +D-APN +V-AAN +D-APN-K +PRT-N +V-2AAN +INJ +P-2DP +T-DPM +N-DPM +CONJ +V-PAI-2P +T-ASF +N-ASF-S +PREP +T-DPF +N-DPF +CONJ +T-APM +N-APM +PREP +T-DPF +N-DPF +INJ +P-2DP +CONJ +V-PAI-2P +ADV +T-NPN +N-NPN +T-NPN +A-NPN +CONJ +T-NPM +N-NPM +T-NPM +V-PAP-NPM +ADV +PRT-N +V-RAI-3P +CONJ +V-AOP-NSM +X-NSM +T-GPM +A-GPM +V-PAI-3S +P-DSM +N-VSM +D-APN +V-PAP-NSM +CONJ +P-1AP +V-PAI-2S +CONJ +T-NSM +V-2AAI-3S +CONJ +P-2DP +T-DPM +A-DPM +INJ +CONJ +V-PAI-2P +T-APM +N-APM +N-APN +A-APN +CONJ +P-NPM +A-DSM +T-GPM +N-GPM +P-2GP +PRT-N +V-PAI-2P +T-DPN +N-DPN +INJ +P-2DP +CONJ +V-PAI-2P +T-APN +N-APN +T-GPM +N-GPM +CONJ +T-NPM +N-NPM +P-2GP +V-AAI-3P +P-APM +PRT +N-NPM +V-PAI-2P +CONJ +V-PAI-2P +T-DPN +N-DPN +T-GPM +N-GPM +P-2GP +CONJ +PRT +P-NPM +V-AAI-3P +P-APM +CONJ +P-2NP +V-PAI-2P +PREP +D-ASN +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-2AAI-3S +V-FAI-1S +PREP +P-APM +N-APM +CONJ +N-APM +CONJ +PREP +P-GPM +V-FAI-3P +CONJ +V-FAI-3P +CONJ +V-APS-3S +T-NSN +N-NSN +A-GPM +T-GPM +N-GPM +T-NSN +V-RPP-NSN +PREP +N-GSF +N-GSM +PREP +T-GSF +N-GSF +D-GSF +PREP +N-GSN +N-PRI +ADV +N-GSN +N-GSM +T-GSM +V-2AMP-GSM +ADV +T-GSN +N-GSN +CONJ +T-GSM +N-GSM +PRT +V-PAI-1S +P-2DP +V-FPI-3S +PREP +T-GSF +N-GSF +D-GSF +INJ +P-2DP +T-DPM +A-DPM +CONJ +V-AAI-2P +T-ASF +N-ASF +T-GSF +N-GSF +P-NPM +PRT-N +V-2AAI-2P +CONJ +T-APM +V-PNP-APM +V-AAI-2P +ADV-K +V-2AAP-GSM +P-GSM +V-ADI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +ADV +V-PAN +CONJ +V-PAN +P-ASM +PREP +A-GPN-C +V-PAP-NPM +P-ASM +V-AAN +X-ASN +PREP +T-GSN +N-GSN +P-GSM +PREP +R-DPM +V-APP-GPF +T-GPF +N-GPF +T-GSM +N-GSM +CONJ +V-PAN +C-APM +V-ADI-3S +V-PAN +PREP +T-APM +N-APM +P-GSM +ADV-S +V-PAM-2P +F-2DPM +PREP +T-GSF +N-GSF +R-NSF +V-PAI-3S +N-NSF +T-GPM +N-GPM +CONJ +A-NSN-N +V-PAI-3S +V-RPP-NSN +R-NSN +PRT-N +V-FPI-3S +CONJ +A-NSN +R-NSN +PRT-N +V-FPI-3S +PREP +R-GPN +K-APN +PREP +T-DSF +N-DSF +V-2AAI-2P +PREP +T-DSN +N-DSN +V-FPI-3S +CONJ +R-ASN +PREP +T-ASN +N-ASN +V-AAI-2P +PREP +T-DPN +N-DPN +V-FPI-3S +PREP +T-GPN +N-GPN +CONJ +V-PAI-1S +P-2DP +T-DPM +A-DPM +P-1GS +PRT-N +V-AOM-2P +PREP +T-GPM +V-PAP-GPM +T-ASN +N-ASN +CONJ +PREP +D-APN +PRT-N +V-PAP-GPM +A-ASN-C +X-ASN +V-AAN +CONJ +V-FAI-1S +P-2DP +I-ASM +V-AOS-2P +V-AOM-2P +T-ASM +PREP +T-ASN +V-AAN +V-PAP-ASM +N-ASF +V-2AAN +PREP +T-ASF +N-ASF +PRT +V-PAI-1S +P-2DP +D-ASM +V-AOM-2P +PRT-I +A-NUI +N-NPN +V-PPI-3P +N-GPN +A-NUI +CONJ +A-NSN +PREP +P-GPN +PRT-N +V-PAI-3S +V-RPP-NSN +PREP +T-GSM +N-GSM +CONJ +CONJ +T-NPF +N-NPF +T-GSF +N-GSF +P-2GP +A-NPF +V-RPI-3P +PRT-N +V-PNM-2P +A-GPN +N-GPN +V-PAI-2P +CONJ +V-PAI-1S +P-2DP +A-NSM +PRT +R-NSM +V-AAS-3S +PREP +P-1DS +PREP +T-GPM +N-GPM +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-FAI-3S +PREP +P-DSM +PREP +T-GPM +N-GPM +T-GSM +N-GSM +CONJ +T-NSM +V-ADP-NSM +P-1AS +PREP +T-GPM +N-GPM +V-FPI-3S +PREP +T-GPM +N-GPM +T-GSM +N-GSM +CONJ +A-NSM +R-NSM +V-FAI-3S +N-ASM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-FPI-3S +P-DSM +CONJ +T-DSM +PREP +T-ASN +A-ASN +N-ASN +V-AAP-DSM +PRT-N +V-FPI-3S +CONJ +CONJ +V-PAS-3P +P-2AP +PREP +T-APF +N-APF +CONJ +T-APF +N-APF +CONJ +T-APF +N-APF +PRT-N +V-AAS-2P +ADV-I +PRT +I-ASN +V-ADS-2P +PRT +I-ASN +V-2AAS-2P +CONJ +T-NSN +A-NSN +N-NSN +V-FAI-3S +P-2AP +PREP +P-DSF +T-DSF +N-DSF +R-APN +V-2AAN +V-PAI-3S +CONJ +V-2AAI-3S +X-NSM +PREP +T-GSM +N-GSM +P-DSM +N-VSM +V-2AAM-2S +T-DSM +N-DSM +P-1GS +V-AMN +PREP +P-1GS +T-ASF +N-ASF +CONJ +T-NSM +V-2AAI-3S +P-DSM +N-VSM +I-NSM +P-1AS +V-AAI-3S +N-ASM +PRT +N-ASM +PREP +P-2AP +CONJ +V-2AAI-3S +PREP +P-APM +V-PAM-2P +CONJ +V-PMM-2P +PREP +A-GSF +N-GSF +CONJ +PRT-N +PREP +T-DSN +V-PAN +X-DSM +T-NSF +N-NSF +P-GSM +V-PAI-3S +PREP +T-GPN +V-PAP-GPN +P-DSM +CONJ +V-2AAI-3S +N-ASF +PREP +P-APM +V-PAP-NSM +N-GSM +X-GSM +A-GSM +T-NSF +N-NSF +V-AAI-3S +CONJ +V-INI-3S +PREP +F-3DSM +V-PAP-NSM +I-ASN +V-AAS-1S +CONJ +PRT-N +V-PAI-1S +ADV-I +V-FAI-1S +T-APM +N-APM +P-1GS +CONJ +V-2AAI-3S +D-ASN +V-FAI-1S +V-2FAI-1S +P-1GS +T-APF +N-APF +CONJ +A-APF-C +V-FAI-1S +CONJ +V-FAI-1S +ADV +A-ASM +T-ASM +N-ASM +CONJ +T-APN +A-APN +P-1GS +CONJ +V-FAI-1S +T-DSF +N-DSF +P-1GS +N-VSF +V-PAI-2S +A-APN +A-APN +V-PNP-APN +PREP +N-APN +A-APN +V-PMM-2S +V-2AAM-2S +V-2AAM-2S +V-PPM-2S +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +A-VSM +D-DSF +T-DSF +N-DSF +T-ASF +N-ASF +P-2GS +V-PAI-3P +PREP +P-2GS +CONJ +R-APN +V-AAI-2S +I-DSM +V-FDI-3S +ADV +T-NSM +V-PAP-NSM +F-3DSM +CONJ +PRT-N +PREP +N-ASM +V-PAP-NSM +CONJ +V-2AAI-3S +PREP +T-APM +N-APM +P-GSM +PREP +D-ASN +V-PAI-1S +P-2DP +PRT-N +V-PAM-2P +T-DSF +N-DSF +I-ASN +V-2AAS-2P +CONJ-N +T-DSN +N-DSN +I-ASN +V-AMS-2P +CONJ +T-NSF +N-NSF +A-NSN-C +V-PAI-3S +T-GSF +N-GSF +CONJ +T-NSN +N-NSN +T-GSN +N-GSN +V-AAM-2P +T-APM +N-APM +CONJ +CONJ-N +V-PAI-3P +CONJ-N +V-PAI-3P +R-DPM +PRT-N +V-PAI-3S +N-NSN +CONJ-N +N-NSF +CONJ +T-NSM +N-NSM +V-PAI-3S +P-APM +Q-DSN +ADV +P-2NP +V-PAI-2P +T-GPN +N-GPN +CONJ +I-NSM +PREP +P-2GP +V-PAP-NSM +V-PNI-3S +PREP +T-ASF +N-ASF +P-GSM +V-2AAN +N-ASM +CONJ +COND +CONJ-N +A-ASN-S +V-PNI-2P +I-ASN +PREP +T-GPN +A-GPN +V-PAI-2P +V-AAM-2P +T-APN +N-APN +ADV +CONJ-N +V-PAI-3S +CONJ-N +V-AAI-3S +CONJ +V-PAI-1S +P-2DP +CONJ-N +N-NSM +PREP +A-DSF +T-DSF +N-DSF +P-GSM +V-2AMI-3S +ADV +A-ASN +D-GPN +CONJ +COND +PREP +N-DSM +T-ASM +N-ASM +V-PAP-ASM +ADV +CONJ +ADV +PREP +N-ASM +V-PPP-ASM +T-NSM +N-NSM +ADV +V-PAI-3S +Q-DSN +ADV +P-2AP +A-VPM +CONJ +P-2NP +PRT-N +V-PAM-2P +I-ASN +V-2AAS-2P +CONJ +I-ASN +V-2AAS-2P +CONJ +PRT-N +V-PPM-2P +CONJ +D-APN +A-NPN +T-NPN +N-NPN +T-GSM +N-GSM +V-PAI-3P +CONJ +P-2GP +T-NSM +N-NSM +V-RAI-3S +CONJ +V-PAI-2P +D-GPN +ADV +V-PAM-2P +T-ASF +N-ASF +P-GSM +CONJ +D-NPN +V-FPI-3S +P-2DP +PRT-N +V-PNM-2S +T-NSN +A-NSN +N-NSN +CONJ +V-AAI-3S +T-NSM +N-NSM +P-2GP +V-2AAN +P-2DP +T-ASF +N-ASF +V-AAM-2P +T-APN +V-PAP-APN +P-2GP +CONJ +V-2AAM-2P +N-ASF +V-AAM-2P +F-2DPM +N-APN +PRT-N +V-PPP-APN +N-ASM +A-ASM +PREP +T-DPM +N-DPM +ADV +N-NSM +PRT-N +V-PAI-3S +CONJ-N +N-NSM +V-PAI-3S +CONJ +ADV +V-PAI-3S +T-NSM +N-NSM +P-2GP +ADV +CONJ +T-NSF +N-NSF +P-2GP +V-FDI-3S +V-PAM-3P +P-2GP +T-NPF +N-NPF +V-RPP-NPF +CONJ +T-NPM +N-NPM +V-PPP-NPM +CONJ +P-2NP +A-NPM +N-DPM +V-PNP-DPM +T-ASM +N-ASM +F-3GPM +PRT-I +V-AAS-3S +PREP +T-GPM +N-GPM +CONJ +V-2AAP-GSM +CONJ +V-AAP-GSM +ADV +V-AAS-3P +P-DSM +A-NPM +T-NPM +N-NPM +D-NPM +R-APM +V-PAP-APM +V-2AAP-NSM +T-NSM +N-NSM +V-FAI-3S +HEB +V-PAI-1S +P-2DP +CONJ +V-FMI-3S +CONJ +V-FAI-3S +P-APM +CONJ +V-2AAP-NSM +V-FAI-3S +P-DPM +COND-K +PREP +T-DSF +A-DSF +COND-K +PREP +T-DSF +A-DSF +N-DSF +V-2AAS-3S +CONJ +V-2AAS-3S +ADV +A-NPM +V-PAI-3P +D-NPM +CONJ +D-ASN +V-PAM-2P +CONJ +COND +V-2LAI-3S +T-NSM +N-NSM +I-DSF +N-DSF +T-NSM +N-NSM +V-PNI-3S +PRT +PRT-N +V-AAI-3S +V-APN +T-ASM +N-ASM +P-GSM +CONJ +P-2NP +V-PNM-2P +A-NPM +CONJ +R-DSF +N-DSF +PRT-N +V-PAI-2P +T-NSM +N-NSM +T-GSM +N-GSM +V-PNI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +N-VSM +PREP +P-1AP +T-ASF +N-ASF +D-ASF +V-PAI-2S +PRT +CONJ +PREP +A-APM +CONJ +V-2AAI-3S +T-NSM +N-NSM +PRT-I +I-NSM +V-PAI-3S +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +R-ASM +V-FAI-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +P-GSM +T-GSN +V-PAN +PREP +N-DSM +T-ASN +N-ASN +A-NSM +T-NSM +N-NSM +D-NSM +R-ASM +V-PAP-ASM +ADV +V-2AAP-NSM +T-NSM +N-NSM +P-GSM +V-FAI-3S +ADV +V-PAI-1S +P-2DP +CONJ +PREP +A-DPN +T-DPN +V-PAP-DPN +P-GSM +V-FAI-3S +P-ASM +CONJ +COND +V-2AAS-3S +T-NSM +N-NSM +D-NSM +PREP +T-DSF +N-DSF +P-GSM +V-PAI-3S +T-NSM +N-NSM +P-1GS +V-PNN +CONJ +V-AMS-3S +V-PAN +T-APM +N-APM +CONJ +T-APF +N-APF +PRT +V-PAN +CONJ +V-PAN +CONJ +V-PPN +V-FAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +PREP +N-DSF +R-DSF +PRT-N +V-PAI-3S +CONJ +PREP +N-DSF +R-DSF +PRT-N +V-PAI-3S +CONJ +V-FAI-3S +P-ASM +CONJ +T-ASN +N-ASN +P-GSM +PREP +T-GPM +A-GPM +V-FAI-3S +CONJ +D-NSM +T-NSM +N-NSM +T-NSM +V-2AAP-NSM +T-ASN +N-ASN +T-GSM +N-GSM +P-GSM +CONJ +PRT-N +V-AAP-NSM +PRT +V-AAP-NSM +PREP +T-ASN +N-ASN +P-GSM +V-2FPI-3S +A-APF +CONJ +T-NSM +PRT-N +V-2AAP-NSM +CONJ +V-AAP-NSM +A-APN +N-GPF +V-2FPI-3S +A-APF +CONJ +A-DSM +R-DSM +V-API-3S +A-NSN +A-NSN +V-FPI-3S +PREP +P-GSM +CONJ +R-DSM +V-2AMI-3P +A-ASN +A-ASN-C +V-FAI-3P +P-ASM +V-2AAI-1S +N-ASN +V-2AAN +PREP +T-ASF +N-ASF +CONJ +I-ASN +V-PAI-1S +COND +ADV +V-API-3S +CONJ +N-ASN +V-PAI-1S +V-APN +CONJ +ADV +V-PPI-1S +ADV +R-GSN-ATT +V-APS-3S +V-PAI-2P +CONJ +V-2ADI-1S +N-ASF +V-2AAN +PREP +T-DSF +N-DSF +V-PAI-1S +P-2DP +PRT-N +CONJ +PRT +N-ASM +CONJ +V-FDI-3P +V-RPP-NPM +PREP +T-GSM +ADV +A-NUI +PREP +A-DSM +N-DSM +A-NPM +PREP +A-DPM +CONJ +A-NUI +PREP +A-DPM +V-FPI-3P +N-NSM +PREP +N-DSM +CONJ +N-NSM +PREP +N-DSM +N-NSF +PREP +N-ASF +CONJ +N-NSF +PREP +T-ASF +N-ASF +N-NSF +PREP +T-ASF +N-ASF +P-GSF +CONJ +N-NSF +PREP +T-ASF +N-ASF +CONJ +V-IAI-3S +CONJ +T-DPM +N-DPM +CONJ +V-2AAS-2P +N-ASF +V-PAP-ASF +PREP +N-GPF +ADV +V-PAI-2P +CONJ +N-NSM +V-PNI-3S +CONJ +V-PNI-3S +ADV +CONJ +CONJ +N-ASM +V-PAP-ASM +V-PAI-2P +CONJ +N-NSM +V-FDI-3S +CONJ +V-PNI-3S +N-VPM +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +T-GSM +N-GSM +V-PAN +V-RAI-2P +CONJ +T-ASM +N-ASM +D-ASM +ADV-I +PRT-N +V-PAM-2P +CONJ +I-ASN +CONJ +PREP +F-2GPM +PRT-N +V-PAI-2P +T-ASN +A-ASN +CONJ +ADV +V-PAI-2S +PREP +T-GSM +N-GSM +P-2GS +PREP +N-ASM +PREP +T-DSF +N-DSF +V-2AAM-2S +N-ASF +V-RPN +PREP +P-GSM +PRT-N +ADV +V-AAS-3S +P-2AS +PREP +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +P-2AS +V-FAI-3S +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +P-2AS +V-FAI-3S +PREP +N-ASF +V-PAI-1S +P-2DS +PRT-N +PRT-N +V-2AAS-2S +ADV +ADV +CONJ +T-ASN +A-ASN-S +N-ASN +V-2AAS-2S +CONJ +V-IAI-3P +X-NPM +PREP +P-DSM +T-DSM +N-DSM +V-PAP-NPM +P-DSM +PREP +T-GPM +N-GPM +R-GPM +T-ASN +N-ASN +N-NSM +V-AAI-3S +PREP +T-GPF +N-GPF +P-GPM +CONJ +V-AOP-NSM +V-2AAI-3S +P-DPM +V-PAI-2P +CONJ +T-NPM +N-NPM +D-NPM +A-NPM +PREP +A-APM +T-APM +N-APM +V-2ADI-3P +CONJ +D-APN +V-2RAI-3P +PRT-N +V-PAI-1S +P-2DP +CONJ +COND +PRT-N +V-PAS-2P +A-NPM +ADV +V-FMI-2P +PRT +D-NPM +T-NPM +A-NUI +A-NUI +PREP +R-APM +V-2AAI-3S +T-NSM +N-NSM +PREP +T-DSM +N-PRI +CONJ +V-AAI-3S +P-APM +V-PAI-2P +CONJ +P-NPM +N-NPM +V-2ADI-3P +PREP +A-APM +T-APM +N-APM +T-APM +V-PAP-APM +N-PRI +PRT-N +V-PAI-1S +P-2DP +CONJ +COND +PRT-N +V-AAS-2P +A-NPM +ADV +V-FMI-2P +CONJ +V-IAI-3S +D-ASF +T-ASF +N-ASF +N-ASF +V-IAI-3S +X-NSM +V-RPP-ASF +PREP +T-DSM +N-DSM +P-GSM +CONJ +V-2AAI-3S +V-PAP-NSM +N-ASM +PREP +P-DSF +CONJ +PRT-N +V-2AAI-3S +CONJ +V-2AAI-3S +PREP +T-ASM +N-ASM +V-2AMM-2S +A-APN +N-APN +PREP +R-GSN +V-PNI-1S +V-PAP-NSM +N-ASM +PREP +T-DSF +N-DSF +D-DSF +CONJ +PRT-N +V-PAI-1S +V-AAM-2S +P-ASF +CONJ +I-NSN +CONJ +T-ASF +N-ASF +V-PAI-3S +CONJ +T-NSM +V-AOP-NSM +V-PAI-3S +P-DSM +N-VSM +V-2AAM-2S +P-ASF +CONJ +D-ASN +T-ASN +N-ASN +ADV +R-GSN-ATT +V-AAS-1S +PREP +P-ASF +CONJ +V-2AAS-1S +N-APN +PRT +COND-K +V-AAS-3S +N-ASM +PREP +T-ASN +V-PAP-ASN +CONJ +COND +PRT-N +V-FAI-2S +P-ASF +CONJ +V-IAI-3S +V-PAP-NSM +PREP +A-DSF +T-GPF +N-GPF +PREP +T-DPN +N-DPN +CONJ +V-2AMM-2S +N-NSF +N-ASN +N-GSF +V-PAP-NSF +N-APN +A-NUI +A-NUI +CONJ +V-IAI-3S +V-PAP-NSF +CONJ +PRT-N +V-PNP-NSF +V-AAN +PREP +T-ASN +A-ASN +CONJ +V-2AAP-NSM +P-ASF +T-NSM +N-NSM +V-AAI-3S +CONJ +V-2AAI-3S +P-DSF +N-VSF +V-RPI-2S +T-GSF +N-GSF +P-2GS +CONJ +V-AAI-3S +P-DSF +T-APF +N-APF +CONJ +ADV +V-API-3S +CONJ +V-IAI-3S +T-ASM +N-ASM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-PAP-NSM +CONJ +T-DSN +N-DSN +V-AAI-3S +T-NSM +N-NSM +V-IAI-3S +T-DSM +N-DSM +CONJ +A-NUI +N-NPF +V-PAI-3P +PREP +R-DPF +V-PAI-3S +V-PNN +CONJ +PREP +P-DPF +V-PNP-NPM +V-PPM-2P +CONJ +PRT-N +T-DSF +N-DSF +T-GSN +N-GSN +CONJ +V-ADI-3S +P-DSM +T-NSM +N-NSM +CONJ +V-2AAI-3S +N-VPM +PRT-N +A-NSM +P-2GP +T-DSN +N-DSN +V-PAI-3S +T-ASM +N-ASM +P-GSM +PRT +T-ASM +N-ASM +PREP +T-GSF +N-GSF +CONJ +V-AAP-NSM +V-PAI-3S +CONJ +V-2AMM-2S +D-ASF +N-ASF +N-PRI +V-PAP-ASF +R-ASF +V-AAI-3S +T-NSM +N-NSM +A-NUI +CONJ +A-NUI +N-APN +V-APN +PREP +T-GSM +N-GSM +D-GSM +T-DSF +N-DSF +T-GSN +N-GSN +PRT-N +V-IAI-3S +CONJ +D-APN +V-PAP-GSM +P-GSM +V-IPI-3P +A-NPM +T-NPM +V-PNP-NPM +P-DSM +CONJ +A-NSM +T-NSM +N-NSM +V-IAI-3S +PREP +A-DPN +T-DPN +A-DPN +T-DPN +V-PNP-DPN +PREP +P-GSM +CONJ +V-IAI-3S +I-DSN +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +I-DSN +V-FAI-1S +P-ASF +A-NSF +V-PAI-3S +N-DSM +N-GSN +R-ASM +V-2AAP-NSM +N-NSM +V-2AAI-3S +PREP +N-ASM +F-3GSM +CONJ +V-AAI-3S +CONJ +V-2ADI-3S +PREP +N-ASN +CONJ +T-NPN +N-NPN +T-GSM +N-GSM +V-AAI-3S +PREP +T-DPM +N-DPM +P-GSN +CONJ +ADV +V-2AAI-3S +I-DSN +V-FAI-1S +T-ASF +N-ASF +T-GSM +N-GSM +A-NSF +V-PAI-3S +N-DSF +R-ASF +V-2AAP-NSF +N-NSF +V-AAI-3S +PREP +N-GSN +N-APN +A-APN +ADV +R-GSM +V-API-3S +A-NSN +CONJ +V-INI-3S +PREP +N-APF +CONJ +N-APF +V-PAP-NSM +CONJ +N-ASF +V-PMP-NSM +PREP +N-APN +CONJ +V-2AAI-3S +X-NSM +P-DSM +N-VSM +COND +A-NPM +T-NPM +V-PPP-NPM +CONJ +T-NSM +V-2AAI-3S +PREP +P-APM +V-PNM-2P +V-2AAN +PREP +T-GSF +A-GSF +N-GSF +CONJ +V-PAI-1S +P-2DP +A-NPM +V-FAI-3P +V-2AAN +CONJ +PRT-N +V-FAI-3P +PREP +PRT +R-GSM +V-APS-3S +T-NSM +N-NSM +CONJ +V-AAS-3S +T-ASF +N-ASF +CONJ +V-AMS-2P +ADV +V-RAN +CONJ +V-PAN +T-ASF +N-ASF +V-PAP-NPM +N-VSM +V-AAM-2S +P-1DP +CONJ +V-AOP-NSM +V-FAI-3S +P-2DP +PRT-N +V-RAI-1S +P-2AP +ADV-I +V-PAI-2P +ADV +V-FMI-2P +V-PAN +V-2AAI-1P +PREP +P-2GS +CONJ +V-2AAI-1P +CONJ +PREP +T-DPF +N-DPF +P-1GP +V-AAI-2S +CONJ +V-FAI-3S +V-PAP-NSM +P-2DP +PRT-N +V-RAI-1S +ADV-I +V-PAI-2P +V-2AAM-2P +PREP +P-1GS +A-NPM +N-NPM +N-GSF +ADV +V-FDI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +CONJ +V-2ADS-2P +N-PRI +CONJ +N-PRI +CONJ +N-PRI +CONJ +A-APM +T-APM +N-APM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +P-2AP +V-PPP-APM +ADV +CONJ +V-FAI-3P +PREP +N-GPF +CONJ +N-GPF +CONJ +PREP +N-GSM +CONJ +N-GSM +CONJ +V-FPI-3P +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +V-2AMM-2S +V-PAI-3P +A-NPM-S +R-NPM +V-FDI-3P +A-NPM-S +CONJ +V-PAI-3P +A-NPM-S +R-NPM +V-FDI-3P +A-NPM-S +PREP +P-DSF +T-DSF +N-DSF +V-2AAI-3P +X-NPM +N-NPM +V-PAP-NPM +P-DSM +V-2AAM-2S +CONJ +V-PNM-2S +ADV +CONJ +N-NSM +V-PAI-3S +P-2AS +V-AAN +CONJ +V-2AAI-3S +P-DPM +V-AOP-NPM +V-2AAM-2P +T-DSF +N-DSF +D-DSF +V-2AMM-2S +V-PAI-1S +N-APN +CONJ +N-APF +V-PAI-1S +ADV +CONJ +ADV +CONJ +T-DSF +A-DSF +V-PPI-1S +ADV +V-PAI-3S +P-1AS +ADV +CONJ +ADV +CONJ +T-DSF +V-PPP-DSF +V-PNN +CONJ +PRT-N +V-PNI-3S +N-ASM +V-2AMN +ADV +N-PRI +N-PRI +N-PRI +T-NSF +V-PAP-NSF +T-APM +N-APM +CONJ +V-PAP-NSF +T-APM +V-RPP-APM +PREP +P-ASF +ADV +V-AAI-1S +V-AAN +T-APN +N-APN +P-2GS +R-ASM +N-ASM +N-NSF +T-ASF +F-3GSF +N-ASF +PREP +T-APF +N-APF +CONJ +PRT-N +V-AAI-2P +V-2AMM-2S +V-PPI-3S +P-2DP +T-NSM +N-NSM +P-2GP +CONJ +V-PAI-1S +P-2DP +PRT-N +PRT-N +V-2AAS-2P +P-1AS +ADV +V-FAI-3S +ADV +V-2AAS-2P +V-RPP-NSM +T-NSM +V-PNP-NSM +PREP +N-DSN +N-GSM +CONJ +V-2ADI-3S +PREP +T-DSN +V-2AAN +P-ASM +PREP +N-ASM +X-GSM +T-GPM +N-GPM +T-GPM +N-GPM +N-DSN +V-2AAN +N-ASM +CONJ +P-NPM +V-IAI-3P +V-PMP-NPM +P-ASM +CONJ +V-2AMM-2S +N-NSM +X-NSM +A-NSM +V-IAI-3S +PREP +P-GSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +PREP +T-APM +A-APM +CONJ +N-APM +V-PAP-NSM +V-PAI-3S +T-DSN +N-DSN +V-AAN +PRT +PRT-N +CONJ +T-NPM +V-AAI-3P +CONJ +V-2ADP-NSM +V-ADI-3S +P-ASM +CONJ +V-AAI-3S +CONJ +PREP +P-APM +V-2AAI-3S +I-GSM +P-2GP +N-NSM +PRT +N-NSM +PREP +N-ASN +V-FDI-3S +CONJ +PRT-N +ADV +V-FAI-3S +P-ASM +PREP +N-DSF +T-GSN +N-GSN +CONJ +PRT-N +V-AAI-3P +V-AON +PREP +D-APN +CONJ +V-IAI-3S +PREP +T-APM +V-RPP-APM +N-ASF +V-PAP-NSM +ADV +T-APF +N-APF-S +V-IMI-3P +V-PAP-NSM +PREP +P-APM +CONJ +V-APS-2S +PREP +X-GSM +PREP +N-APM +PRT-N +V-APS-2S +PREP +T-ASF +N-ASF-S +PRT-N +ADV +A-NSM-C +P-2GS +V-PAS-3S +V-RPP-NSM +PREP +P-GSM +CONJ +V-2AAP-NSM +T-NSM +P-2AS +CONJ +P-ASM +V-AAP-NSM +V-FAI-3S +P-2DS +V-2AAM-2S +D-DSM +N-ASM +CONJ +ADV +V-AMS-2S +PREP +N-GSF +T-ASM +A-ASM-S +N-ASM +V-PAN +CONJ +CONJ +V-APS-2S +V-AOP-NSM +V-2AAM-2S +PREP +T-ASM +A-ASM-S +N-ASM +CONJ +CONJ +V-2AAS-3S +T-NSM +V-RAP-NSM +P-2AS +V-FAI-3S +P-2DS +N-VSM +V-2AAM-2S +A-ASN-C +ADV +V-FDI-3S +P-2DS +N-NSF +PREP +A-GPM +T-GPM +V-PNP-GPM +P-2DS +CONJ +A-NSM +T-NSM +V-PAP-NSM +F-3ASM +V-FPI-3S +CONJ +T-NSM +V-PAP-NSM +F-3ASM +V-FPI-3S +CONJ +V-IAI-3S +CONJ +T-DSM +V-RAP-DSM +P-ASM +CONJ +V-PAS-2S +N-ASN +PRT +N-ASN +PRT-N +V-PAM-2S +T-APM +A-APM +P-2GS +CONJ-N +T-APM +N-APM +P-2GS +CONJ-N +T-APM +A-APM +P-2GS +CONJ-N +N-APM +A-APM +PRT-N +ADV +CONJ +P-NPM +V-AAS-3P +P-2AS +CONJ +V-2ADS-3S +N-ASN +P-2DS +CONJ +CONJ +N-ASF +V-PAS-2S +V-PAM-2S +A-APM +A-APM +A-APM +A-APM +CONJ +A-NSM +V-FDI-2S +CONJ +PRT-N +V-PAI-3P +V-2AAN +P-2DS +CONJ +V-FPI-3S +P-2DS +PREP +T-DSF +N-DSF +T-GPM +A-GPM +CONJ +X-NSM +T-GPM +V-PNP-GPM +V-AAP-NSM +D-APN +V-2AAI-3S +P-DSM +A-NSM +R-NSM +V-FDI-3S +N-ASM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +T-NSM +V-2AAI-3S +P-DSM +N-NSM +X-NSM +V-IAI-3S +N-ASN +A-ASN +CONJ +V-AAI-3S +A-APM +CONJ +V-AAI-3S +T-ASM +N-ASM +P-GSM +T-DSF +N-DSF +T-GSN +N-GSN +V-2AAN +T-DPM +V-RPP-DPM +V-PNM-2P +CONJ +ADV +A-NPN +V-PAI-3S +CONJ +V-ADI-3P +PREP +A-GSF +A-NPM +V-PNN +T-NSM +A-NSM-S +V-2AAI-3S +P-DSM +N-ASM +V-AAI-1S +CONJ +V-PAI-1S +N-ASF +V-2AAP-NSM +V-2AAN +P-ASM +V-PAI-1S +P-2AS +V-PAM-2S +P-1AS +V-RPP-ASM +CONJ +A-NSM +V-2AAI-3S +N-APN +N-GPM +A-NUI +V-AAI-1S +CONJ +V-PNI-1S +V-AAN +P-APN +V-PAI-1S +P-2AS +V-PAM-2S +P-1AS +V-RPP-ASM +CONJ +A-NSM +V-2AAI-3S +N-ASF +V-AAI-1S +CONJ +PREP +D-ASN +PRT-N +V-PNI-1S +V-2AAN +CONJ +V-2ADP-NSM +T-NSM +N-NSM +V-AAI-3S +T-DSM +N-DSM +P-GSM +D-APN +ADV +V-APP-NSM +T-NSM +N-NSM +V-2AAI-3S +T-DSM +N-DSM +P-GSM +V-2AAM-2S +ADV +PREP +T-APF +N-APF +CONJ +N-APF +T-GSF +N-GSF +CONJ +T-APM +A-APM +CONJ +A-APM +CONJ +A-APM +CONJ +A-APM +V-2AAM-2S +ADV +CONJ +V-2AAI-3S +T-NSM +N-NSM +N-VSM +V-2RAI-3S +R-ASN +V-AAI-2S +CONJ +ADV +N-NSM +V-PAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +T-ASM +N-ASM +V-2AAM-2S +PREP +T-APF +N-APF +CONJ +N-APM +CONJ +V-AAM-2S +V-2AAN +CONJ +V-APS-3S +P-1GS +T-NSM +N-NSM +CONJ +V-PAI-1S +P-2DP +CONJ +A-NSM-N +T-GPM +N-GPM +D-GPM +T-GPM +V-RPP-GPM +V-FDI-3S +P-1GS +T-GSN +N-GSN +CONJ +V-INI-3P +P-DSM +N-NPM +A-NPM +CONJ +V-2APP-NSM +V-2AAI-3S +PREP +P-APM +COND +X-NSM +V-PNI-3S +PREP +P-1AS +CONJ +PRT-N +V-PAI-3S +T-ASM +N-ASM +P-GSM +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +T-APN +N-APN +CONJ +T-APM +N-APM +CONJ +T-APF +N-APF +PRT +ADV +CONJ +T-ASF +N-ASF +F-3GSM +PRT-N +V-PNI-3S +V-PAN +P-1GS +N-NSM +R-NSM +PRT-N +V-PAI-3S +T-ASM +N-ASM +F-3GSM +CONJ +V-PNI-3S +ADV +P-1GS +PRT-N +V-PNI-3S +V-PAN +P-1GS +N-NSM +CONJ +PRT-I +I-NSM +PREP +P-2GP +V-PAP-NSM +N-ASM +V-AAN +ADV-S +V-AAP-NSM +V-PAI-3S +T-ASF +N-ASF +COND +V-PAI-3S +PREP +N-ASM +CONJ +PRT-N +ADV +V-2AAP-GSM +P-GSM +N-ASM +CONJ +PRT-N +V-PAP-GSM +V-AAN +A-NPM +T-NPM +V-PAP-NPM +V-AMS-3P +P-DSM +V-PAN +V-PAP-NPM +CONJ +D-NSM +T-NSM +N-NSM +V-ADI-3S +V-PAN +CONJ +PRT-N +V-AAI-3S +V-AAN +PRT +PRT-I +I-NSM +N-NSM +V-PNP-NSM +A-DSM +N-DSM +V-2AAN +PREP +N-ASM +V-AAP-NSM +ADV-S +V-FDI-3S +COND +A-NSM +V-PAI-3S +PREP +A-NUI +N-DPF +V-AAN +T-DSM +PREP +A-NUI +N-GPF +V-PNP-DSM +PREP +P-ASM +CONJ +COND +PRT-N +ADV +P-GSM +ADV +V-PAP-GSM +N-ASF +V-AAP-NSM +V-PAI-3S +T-APN +PREP +N-ASF +CONJ +ADV +A-NSM +PREP +P-2GP +R-NSM +PRT-N +V-PMI-3S +A-DPN +T-DPN +F-3GSM +V-PAP-DPN +PRT-N +V-PNI-3S +V-PAN +P-1GS +N-NSM +CONJ +A-NSN +T-NSN +N-NSN +CONJ +COND +CONJ +T-NSN +N-NSN +V-APS-3S +PREP +I-DSN +V-FPI-3S +CONJ-N +PREP +N-ASF +CONJ-N +PREP +N-ASF +A-NSN +V-PAI-3S +ADV +V-PAI-3P +P-ASN +T-NSM +V-PAP-NSM +N-APN +V-PAN +V-PAM-3S +CONJ +V-IAI-3P +V-PAP-NPM +P-DSM +A-NPM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM +V-PAN +P-GSM +CONJ +V-IAI-3P +PRT +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-PAP-NPM +CONJ +D-NSM +A-APM +V-PNI-3S +CONJ +V-PAI-3S +P-DPM +CONJ +V-2AAI-3S +PREP +P-APM +T-ASF +N-ASF +D-ASF +V-PAP-NSM +I-NSM +N-NSM +PREP +P-2GP +V-PAP-NSM +A-NUI +N-APN +CONJ +V-AAP-NSM +PREP +P-GPN +A-ASN +PRT-N +V-PAI-3S +T-APN +A-NUI +A-NUI +PREP +T-DSF +A-DSF +CONJ +V-PNI-3S +PREP +T-ASN +V-2RAP-ASN +ADV +V-2AAS-3S +P-ASN +CONJ +V-2AAP-NSM +V-PAI-3S +PREP +T-APM +N-APM +P-GSM +V-PAP-NSM +CONJ +V-2AAP-NSM +PREP +T-ASM +N-ASM +V-PAI-3S +T-APM +A-APM +CONJ +T-APM +N-APM +V-PAP-NSM +P-DPM +V-2AOM-2P +P-1DS +CONJ +V-2AAI-1S +T-ASN +N-ASN +P-1GS +T-ASN +V-2RAP-ASN +V-PAI-1S +P-2DP +CONJ +ADV +N-NSF +PREP +T-DSM +N-DSM +V-FDI-3S +PREP +A-DSM +A-DSM +V-PAP-DSM +PRT +PREP +A-NUI +A-NUI +A-DPM +R-NPM +PRT-N +N-ASF +N-GSF +V-PAI-3P +PRT +I-NSF +N-NSF +N-APF +A-NUI +V-PAP-NSF +COND +V-AAS-3S +N-ASF +A-ASF +PRT-I +V-PAI-3S +N-ASM +CONJ +V-PAI-3S +T-ASF +N-ASF +CONJ +V-PAI-3S +ADV +ADV +R-GSM +V-2AAS-3S +CONJ +V-2AAP-NSF +V-PAI-3S +T-APF +N-APF +CONJ +N-APF +V-PAP-NSF +V-2AOM-2P +P-1DS +CONJ +V-2AAI-1S +T-ASF +N-ASF +R-ASF +V-AAI-1S +ADV +V-PAI-1S +P-2DP +V-PNI-3S +N-NSF +PREP +T-GPM +N-GPM +T-GSM +N-GSM +PREP +A-DSM +A-DSM +V-PAP-DSM +CONJ +V-2AAI-3S +N-NSM +X-NSM +V-IAI-3S +A-NUI +N-APM +CONJ +V-2AAI-3S +T-NSM +A-NSM-C +P-GPM +T-DSM +N-DSM +N-VSM +V-2AAM-2S +P-1DS +T-ASN +V-PAP-ASN +N-ASN +T-GSF +N-GSF +CONJ +T-NSM +V-2AAI-3S +P-DPM +T-ASM +N-ASM +CONJ +PREP +PRT-N +A-APF +N-APF +V-2AAP-NSM +A-APN +T-NSM +A-NSM-C +N-NSM +V-AAI-3S +PREP +N-ASF +A-ASF +CONJ +ADV +V-AAI-3S +T-ASF +N-ASF +P-GSM +V-PAP-NSM +ADV +CONJ +V-AAP-GSM +P-GSM +A-APN +V-2ADI-3S +N-NSF +A-NSF +PREP +T-ASF +N-ASF +D-ASF +CONJ +P-NSM +V-ADI-3S +V-PPN +CONJ +V-AOP-NSM +V-API-3S +A-DSM +T-GPM +N-GPM +T-GSF +N-GSF +D-GSF +CONJ +V-AAI-3S +P-ASM +PREP +T-APM +N-APM +P-GSM +V-PAN +N-APM +CONJ +V-IAI-3S +V-AAN +T-ASF +N-ASF +P-GSM +PREP +T-GPN +N-GPN +R-GPN +V-IAI-3P +T-NPM +N-NPM +CONJ +A-NSM-N +V-IAI-3S +P-DSM +CONJ +PREP +F-3ASM +V-2AAP-NSM +V-IAI-3S +Q-NPM +A-NPM +T-GSM +N-GSM +P-1GS +V-PMI-3P +N-GPM +CONJ +P-1NS +N-DSM +ADV +V-PMI-1S +V-2AAP-NSM +V-FDI-1S +PREP +T-ASM +N-ASM +P-1GS +CONJ +V-FAI-1S +P-DSM +N-VSM +V-2AAI-1S +PREP +T-ASM +N-ASM +CONJ +PREP +P-2GS +ADV-N +V-PAI-1S +A-NSM +V-APN +N-NSM +P-2GS +V-AAM-2S +P-1AS +ADV +A-ASM +T-GPM +A-GPM +P-2GS +CONJ +V-2AAP-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +F-3GSM +CONJ +ADV +P-GSM +ADV +V-PAP-GSM +V-2AAI-3S +P-ASM +T-NSM +N-NSM +P-GSM +CONJ +V-AOI-3S +CONJ +V-2AAP-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-AAI-3S +P-ASM +CONJ +V-2AAI-3S +T-NSM +N-NSM +P-DSM +N-VSM +V-2AAI-1S +PREP +T-ASM +N-ASM +CONJ +PREP +P-2GS +ADV-N +V-PAI-1S +A-NSM +V-APN +N-NSM +P-2GS +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +T-APM +N-APM +P-GSM +ADV +V-AAM-2P +N-ASF +T-ASF +A-ASF-S +CONJ +V-AAM-2P +P-ASM +CONJ +V-2AAM-2P +N-ASM +PREP +T-ASF +N-ASF +P-GSM +CONJ +N-APN +PREP +T-APM +N-APM +CONJ +V-PAM-2P +T-ASM +N-ASM +T-ASM +A-ASM +V-AAM-2P +CONJ +V-2AAP-NPM +V-APS-1P +CONJ +D-NSM +T-NSM +N-NSM +P-1GS +A-NSM +V-IAI-3S +CONJ +V-AAI-3S +V-IAI-3S +V-2RAP-NSM +CONJ +V-API-3S +CONJ +V-ADI-3P +V-PPN +CONJ +V-IAI-3S +T-NSM +N-NSM +P-GSM +T-NSM +A-NSM-C +PREP +N-DSM +CONJ +ADV +V-PNP-NSM +V-AAI-3S +T-DSF +N-DSF +V-AAI-3S +N-GSF +CONJ +N-GPM +CONJ +V-ADP-NSM +A-ASM +T-GPM +N-GPM +V-INI-3S +PRT +I-NSN +V-PAO-3S +D-NPN +CONJ +T-NSM +V-2AAI-3S +P-DSM +CONJ +T-NSM +N-NSM +P-2GS +V-PAI-3S +CONJ +V-AAI-3S +T-NSM +N-NSM +P-2GS +T-ASM +N-ASM +T-ASM +A-ASM +CONJ +V-PAP-ASM +P-ASM +V-2AAI-3S +CONJ +V-API-3S +CONJ +PRT-N +V-IAI-3S +V-2AAN +CONJ +T-NSM +N-NSM +P-GSM +V-2AAP-NSM +V-IAI-3S +P-ASM +CONJ +T-NSM +V-AOP-NSM +V-2AAI-3S +T-DSM +N-DSM +V-2AMM-2S +D-APN +N-APN +V-PAI-1S +P-2DS +CONJ +ADV-N +N-ASF +P-2GS +V-2AAI-1S +CONJ +P-1DS +ADV-N +V-AAI-2S +N-ASM +CONJ +PREP +T-GPM +A-GPM +P-1GS +V-APS-1S +CONJ +ADV +T-NSM +N-NSM +P-2GS +D-NSM +T-NSM +V-2AAP-NSM +P-2GS +T-ASM +N-ASM +PREP +N-GPF +V-2AAI-3S +V-AAI-2S +P-DSM +T-ASM +A-ASM +N-ASM +CONJ +T-NSM +V-2AAI-3S +P-DSM +N-VSN +P-2NS +ADV +PREP +P-1GS +V-PAI-2S +CONJ +A-NPN +T-NPN +S-1SNPN +S-2SNPN +V-PAI-3S +CONJ +V-APN +CONJ +V-2AON +V-IAI-3S +CONJ +T-NSM +N-NSM +P-2GS +D-NSM +A-NSM +V-IAI-3S +CONJ +V-AAI-3S +CONJ +V-2RAP-NSM +CONJ +V-API-3S +CONJ +V-IAI-3S +CONJ +PREP +T-APM +N-APM +N-NSM +X-NSM +V-IAI-3S +A-NSM +R-NSM +V-IAI-3S +N-ASM +CONJ +D-NSM +V-API-3S +P-DSM +ADV +V-PAP-NSM +T-APN +V-PAP-APN +P-GSM +CONJ +V-AAP-NSM +P-ASM +V-2AAI-3S +P-DSM +I-ASN +D-ASN +V-PAI-1S +PREP +P-2GS +V-2AAM-2S +T-ASM +N-ASM +T-GSF +N-GSF +P-2GS +CONJ +PRT-N +V-PNI-2S +ADV +V-PAN +CONJ +V-2AAI-3S +PREP +F-3DSM +T-NSM +N-NSM +I-ASN +V-AAS-1S +CONJ +T-NSM +N-NSM +P-1GS +V-PMI-3S +T-ASF +N-ASF +PREP +P-1GS +V-PAN +PRT-N +V-PAI-1S +V-PAN +V-PMI-1S +V-2AAI-1S +I-ASN +V-AAS-1S +CONJ +CONJ +V-APS-1S +PREP +T-GSF +N-GSF +V-ADS-3P +P-1AS +PREP +T-APM +N-APM +F-3GPM +CONJ +V-ADP-NSM +A-ASM +A-ASM +T-GPM +N-GPM +T-GSM +N-GSM +F-3GSM +V-IAI-3S +T-DSM +A-DSM-S +Q-ASN +V-PAI-2S +T-DSM +N-DSM +P-1GS +CONJ +T-NSM +V-2AAI-3S +A-NUI +N-APM +N-GSN +CONJ +T-NSM +V-2AAI-3S +P-DSM +V-ADM-2S +P-2GS +T-APN +N-APN +CONJ +V-AAP-NSM +ADV +V-AAM-2S +A-NUI +ADV +A-DSM +V-2AAI-3S +CONJ +P-2NS +Q-ASN +V-PAI-2S +CONJ +T-NSM +V-2AAI-3S +A-NUI +N-APM +N-GSM +V-PAI-3S +P-DSM +V-ADM-2S +P-2GS +T-APN +N-APN +CONJ +V-AAM-2S +A-NUI +CONJ +V-AAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +ADV +V-AAI-3S +CONJ +T-NPM +N-NPM +T-GSM +N-GSM +D-GSM +A-NPM-C +PREP +T-APM +N-APM +T-GSN +N-GSN +PREP +T-ASF +N-ASF +T-ASF +F-3GPM +V-PAI-3P +CONJ +P-1NS +P-2DP +V-PAI-1S +F-2DPM +V-AAM-2P +A-APM +PREP +T-GSM +N-GSM +T-GSF +N-GSF +CONJ +CONJ +V-2AAS-3S +V-ADS-3P +P-2AP +PREP +T-APF +A-APF +N-APF +T-NSM +A-NSM +PREP +A-DSN-S +CONJ +PREP +A-DSN +A-NSM +V-PAI-3S +CONJ +T-NSM +PREP +A-DSN-S +A-NSM +CONJ +PREP +A-DSN +A-NSM +V-PAI-3S +CONJ +COND +PREP +T-DSM +A-DSM +N-DSM +A-NPM +PRT-N +V-2ADI-2P +T-ASN +A-ASN +I-NSM +P-2DP +V-FAI-3S +CONJ +COND +PREP +T-DSM +A-DSM +A-NPM +PRT-N +V-2ADI-2P +T-ASN +S-1PASN +I-NSM +V-FAI-3S +P-2DP +A-NSM-N +N-NSM +V-PNI-3S +A-DPM +N-DPM +V-PAN +CONJ +PRT +T-ASM +A-ASM +V-FAI-3S +CONJ +T-ASM +A-ASM +V-FAI-3S +PRT +A-GSM +V-FDI-3S +CONJ +T-GSM +A-GSM +V-FAI-3S +PRT-N +V-PNI-2P +N-DSM +V-PAN +CONJ +N-DSM +CONJ +V-IAI-3P +D-APN +A-APN +T-NPM +N-NPM +A-NPM +V-PAP-NPM +CONJ +V-IAI-3P +P-ASM +CONJ +V-2AAI-3S +P-DPM +P-2NP +V-PAI-2P +T-NPM +V-PAP-NPM +F-2APM +PREP +T-GPM +N-GPM +CONJ +T-NSM +N-NSM +V-PAI-3S +T-APF +N-APF +P-2GP +CONJ +T-NSN +PREP +N-DPM +A-NSN +N-NSN +PREP +T-GSM +N-GSM +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +ADV +N-GSM +PREP +ADV +T-NSF +N-NSF +T-GSM +N-GSM +V-PPI-3S +CONJ +A-NSM +PREP +P-ASF +V-PMI-3S +CONJ +A-NSN-C +V-PAI-3S +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +V-2AAN +PRT +T-GSM +N-GSM +A-ASF +N-ASF +V-2AAN +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +P-GSM +CONJ +V-PAP-NSM +A-ASF +V-PAI-3S +CONJ +T-NSM +V-RPP-ASF +PREP +N-GSM +V-PAP-NSM +V-PAI-3S +CONJ +N-NSM +X-NSM +V-IAI-3S +A-NSM +CONJ +V-IMI-3S +N-ASF +CONJ +N-ASF +V-PPP-NSM +PREP +N-ASF +ADV +CONJ +A-NSM +X-NSM +N-DSN +N-NSM +V-LPI-3S +PREP +T-ASM +N-ASM +P-GSM +V-RPP-NSM +CONJ +V-PAP-NSM +V-APN +PREP +T-GPN +V-PAP-GPN +PREP +T-GSF +N-GSF +T-GSM +A-GSM +CONJ +CONJ +T-NPM +N-NPM +V-PNP-NPM +V-IAI-3P +T-APN +N-APN +P-GSM +CONJ +V-2ADI-3S +V-2AAN +T-ASM +A-ASM +CONJ +V-APN +P-ASM +PREP +T-GPM +N-GPM +PREP +T-ASM +N-ASM +N-PRI +CONJ +V-2AAI-3S +CONJ +T-NSM +A-NSM +CONJ +V-2API-3S +CONJ +PREP +T-DSM +N-DSM +V-AAP-NSM +T-APM +N-APM +P-GSM +V-PAP-NSM +PREP +N-DPF +V-PAI-3S +N-PRI +PREP +ADV +CONJ +N-ASM +PREP +T-DPM +N-DPM +P-GSM +CONJ +P-NSM +V-AAP-NSM +V-2AAI-3S +N-VSM +N-PRI +V-AAM-2S +P-1AS +CONJ +V-AAM-2S +N-ASM +CONJ +V-AAS-3S +T-ASN +N-ASN +T-GSM +N-GSM +P-GSM +N-GSN +CONJ +V-AAS-3S +T-ASF +N-ASF +P-1GS +CONJ +V-PPI-1S +PREP +T-DSF +N-DSF +D-DSF +CONJ +V-2AAI-3S +N-PRI +N-VSN +V-APM-2S +CONJ +V-2AAI-2S +T-APN +A-APN +P-2GS +PREP +T-DSF +N-DSF +P-2GS +CONJ +N-NSM +ADV +T-APN +A-APN +CONJ +ADV +ADV +V-PPI-3S +CONJ +P-2NS +V-PPI-2S +CONJ +PREP +A-DPN +D-DPN +ADV +P-1GP +CONJ +P-2GP +N-NSN +A-NSN +V-RPI-3S +ADV +T-NPM +V-PAP-NPM +V-2AAN +ADV +PREP +P-2AP +PRT-N +V-PNS-3P +CONJ-N +ADV +PREP +P-1AP +V-PAS-3P +CONJ +V-2AAI-3S +CONJ +V-PAI-1S +P-2AS +N-VSM +CONJ +V-AAS-2S +P-ASM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +P-1GS +CONJ +V-PAI-1S +A-NUI +N-APM +ADV +V-PNS-3S +P-DPM +CONJ +PRT-N +CONJ +P-NPM +V-2AAS-3P +PREP +T-ASM +N-ASM +D-ASM +T-GSF +N-GSF +CONJ +V-PAI-3S +N-PRI +V-PAI-3P +N-ASM +CONJ +T-APM +N-APM +V-AAM-3P +P-GPM +CONJ +T-NSM +V-2AAI-3S +PRT-N +N-VSM +N-PRI +CONJ +COND +X-NSM +PREP +A-GPM +V-AOS-3S +PREP +P-APM +V-FAI-3P +CONJ +V-2AAI-3S +P-DSM +COND +N-GSM +CONJ +T-GPM +N-GPM +PRT-N +V-PAI-3P +CONJ-N +COND +X-NSM +PREP +A-GPM +V-2AAS-3S +V-FPI-3P +CONJ +V-2AAI-3S +PREP +T-APM +N-APM +P-GSM +A-NSN +V-PAI-3S +T-GSN +T-APN +N-APN +PRT-N +V-2AAN +CONJ +INJ +PREP +R-GSM +V-PNI-3S +V-PAI-3S +P-DSM +COND +N-NSM +A-NSM +V-PNI-3S +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-RPI-3S +PREP +T-ASF +N-ASF +PRT +CONJ +V-AAS-3S +T-GPM +A-GPM +D-GPM +A-ASM +V-PAM-2P +F-2DPM +COND +V-2AAS-3S +T-NSM +N-NSM +P-2GS +V-AAM-2S +P-DSM +CONJ +COND +V-AAS-3S +V-2AAM-2S +P-DSM +CONJ +COND +ADV +T-GSF +N-GSF +V-AAS-3S +PREP +P-2AS +CONJ +ADV +V-AAS-3S +PREP +P-2AS +V-PAP-NSM +V-PAI-1S +V-FAI-2S +P-DSM +CONJ +V-2AAI-3P +T-NPM +N-NPM +T-DSM +N-DSM +V-2AAM-2S +P-1DP +N-ASF +CONJ +V-2AAI-3S +T-NSM +N-NSM +COND +V-PAI-2P +N-ASF +ADV +N-ASM +N-GSN +PRT +V-IAI-2P +T-DSF +N-DSF +D-DSF +V-APM-2S +CONJ +V-APM-2S +PREP +T-DSF +N-DSF +CONJ +PRT +V-AAI-3S +P-2DP +CONJ +I-NSM +PREP +P-2GP +V-PAP-NSM +N-ASM +V-PAP-ASM +PRT +V-PAP-ASM +R-NSM +V-2AAP-DSM +PREP +T-GSM +N-GSM +V-FAI-3S +P-DSM +ADV +V-2AAP-NSM +V-2AAM-2S +CONJ +PRT-I +V-FAI-3S +P-DSM +V-AAM-2S +I-ASN +V-AAS-1S +CONJ +V-AMP-NSM +V-PAM-2S +P-1DS +ADV +V-2AAS-1S +CONJ +V-2AAS-1S +CONJ +PREP +D-APN +V-FDI-2S +CONJ +V-FDI-2S +P-2NS +PRT-N +V-PAI-3S +N-ASF +T-DSM +N-DSM +CONJ +V-AAI-3S +T-APN +V-APP-APN +ADV +CONJ +P-2NP +CONJ +V-AAS-2P +A-APN +T-APN +V-APP-APN +P-2DP +V-PAM-2P +CONJ +N-NPM +A-NPM +V-PAI-1P +R-ASN +V-AAN +V-IAI-1P +V-RAI-1P +CONJ +V-2ADI-3S +PREP +T-DSN +V-PNN +PREP +N-PRI +CONJ +P-NSM +V-INI-3S +PREP +A-ASN +N-GSF +CONJ +N-GSF +CONJ +V-PNP-GSM +P-GSM +PREP +X-ASF +N-ASF +V-AAI-3P +A-NUI +A-NPM +N-NPM +R-NPM +V-2AAI-3P +ADV +CONJ +P-NPM +V-AAI-3P +N-ASF +V-PAP-NPM +N-VSM +N-VSM +V-AAM-2S +P-1AP +CONJ +V-2AAP-NSM +V-2AAI-3S +P-DPM +V-AOP-NPM +V-AAM-2P +F-2APM +T-DPM +N-DPM +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-APM +V-API-3P +CONJ +A-NSM +PREP +P-GPM +V-2AAP-NSM +CONJ +V-API-3S +V-AAI-3S +PREP +N-GSF +A-GSF +V-PAP-NSM +T-ASM +N-ASM +CONJ +V-2AAI-3S +PREP +N-ASN +PREP +T-APM +N-APM +P-GSM +V-PAP-NSM +P-DSM +CONJ +P-NSM +V-IAI-3S +N-NSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +PRT-N +T-NPM +A-NUI +V-API-3P +CONJ +T-NPM +A-NUI +ADV-I +PRT-N +V-API-3P +V-AAP-NPM +V-2AAN +N-ASF +T-DSM +N-DSM +COND +PRT-N +T-NSM +A-NSM +D-NSM +CONJ +V-2AAI-3S +P-DSM +V-2AAP-NSM +V-PNM-2S +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +CONJ +V-APP-NSM +PREP +T-GPM +N-GPM +PRT-I +V-PNI-3S +T-NSF +N-NSF +T-GSM +N-GSM +V-ADI-3S +P-DPM +CONJ +V-2AAI-3S +PRT-N +V-PNI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +N-GSF +CONJ-N +V-FAI-3P +V-2AMM-2S +ADV +PRT +ADV +CONJ +V-2AMM-2S +T-NSF +N-NSF +T-GSM +N-GSM +ADV +P-2GP +V-PAI-3S +CONJ +V-2AAI-3S +PREP +T-APM +N-APM +V-FDI-3P +N-NPF +ADV +V-FAI-2P +A-ASF +T-GPF +N-GPF +T-GSM +N-GSM +T-GSM +N-GSM +V-2AAN +CONJ +PRT-N +V-FDI-2P +CONJ +V-FAI-3P +P-2DP +V-2AMM-2S +ADV +V-2AMM-2S +ADV +PRT-N +V-2AAS-2P +CONJ-N +V-AAS-2P +CONJ +ADV +T-NSF +N-NSF +V-PAP-NSF +PREP +T-GSF +PREP +T-ASM +N-ASM +PREP +T-ASF +PREP +N-ASM +V-PAI-3S +ADV +V-FDI-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-PAI-3S +ADV-S +P-ASM +A-APN +V-2AAN +CONJ +V-APN +PREP +T-GSF +N-GSF +D-GSF +CONJ +ADV +V-2ADI-3S +PREP +T-DPF +N-DPF +N-PRI +ADV +V-FDI-3S +CONJ +PREP +T-DPF +N-DPF +T-GSM +N-GSM +T-GSM +N-GSM +V-IAI-3P +V-IAI-3P +V-IAI-3P +V-IPI-3P +ADV +R-GSF +N-GSF +V-2AAI-3S +N-PRI +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3S +A-APM +ADV +ADV +V-2ADI-3S +PREP +T-DPF +N-DPF +N-PRI +V-IAI-3P +V-IAI-3P +V-IAI-3P +V-IAI-3P +V-IAI-3P +V-IAI-3P +CONJ +R-DSF +N-DSF +V-2AAI-3S +N-PRI +PREP +N-GPN +V-AAI-3S +N-ASN +CONJ +N-ASN +PREP +N-GSM +CONJ +V-AAI-3S +A-APM +PREP +T-APN +P-APN +V-FDI-3S +R-DSF +N-DSF +T-NSM +N-NSM +T-GSM +N-GSM +V-PPI-3S +PREP +D-DSF +T-DSF +N-DSF +R-NSM +V-FDI-3S +PREP +T-GSN +N-GSN +CONJ +T-NPN +N-NPN +P-GSM +PREP +T-DSF +N-DSF +PRT-N +V-2AAM-3S +V-AAN +P-APN +CONJ +T-NSM +PREP +N-DSM +ADV +PRT-N +V-AAM-3S +PREP +T-APN +ADV +V-PAM-2P +T-GSF +N-GSF +N-PRI +COND +R-NSM +V-AAS-3S +T-ASF +N-ASF +P-GSM +V-AMN +V-FAI-3S +P-ASF +CONJ +PRT +R-NSM +V-FAI-3S +V-FAI-3S +P-ASF +V-PAI-1S +P-2DP +D-DSF +T-DSF +N-DSF +V-FDI-3P +A-NUI +PREP +N-GSF +A-GSF +T-NSM +A-NSM +V-FPI-3S +CONJ +T-NSM +A-NSM +V-FPI-3S +V-FDI-3P +V-PAP-NPF +A-NUI +PREP +T-ASN +P-ASN +T-NSF +A-NSF +V-FPI-3S +CONJ +T-NSF +A-NSF +V-FPI-3S +CONJ +V-AOP-NPM +V-PAI-3P +P-DSM +ADV-I +N-VSM +CONJ +T-NSM +V-2AAI-3S +P-DPM +ADV +T-NSN +N-NSN +ADV +CONJ +T-NPM +N-NPM +V-FPI-3P +CONJ +V-IAI-3S +N-ASF +P-DPM +PREP +T-ASN +V-PAN +ADV +V-PNN +P-APM +CONJ +PRT-N +V-PAN +V-PAP-NSM +N-NSM +X-NSM +V-IAI-3S +PREP +X-DSF +N-DSF +T-ASM +N-ASM +PRT-N +V-PNP-NSM +CONJ +N-ASM +PRT-N +V-PPP-NSM +CONJ +N-NSF +V-IAI-3S +PREP +T-DSF +N-DSF +D-DSF +CONJ +V-INI-3S +PREP +P-ASM +V-PAP-NSF +V-AAM-2S +P-1AS +PREP +T-GSM +N-GSM +P-1GS +CONJ +PRT-N +V-IAI-3S +PREP +N-ASM +CONJ +PREP +D-APN +V-2AAI-3S +PREP +F-3DSM +COND +CONJ +T-ASM +N-ASM +PRT-N +V-PNI-1S +CONJ-N +N-ASM +V-PPI-1S +PRT +PREP +T-ASN +V-PAN +P-1DS +N-ASM +T-ASF +N-ASF +D-ASF +V-FAI-1S +P-ASF +CONJ +PRT-N +PREP +N-ASN +V-PNP-NSF +V-PAS-3S +P-1AS +CONJ +V-2AAI-3S +T-NSM +N-NSM +V-AAM-2P +I-ASN +T-NSM +N-NSM +T-GSF +N-GSF +V-PAI-3S +CONJ +PRT-N +PRT-N +T-NSM +N-NSM +V-AAS-3S +T-ASF +N-ASF +T-GPM +A-GPM +P-GSM +T-GPM +V-PAP-GPM +P-DSM +N-GSF +CONJ +N-GSF +CONJ +V-PAI-3S +PREP +P-DPM +V-PAI-1S +P-2DP +CONJ +V-FAI-3S +T-ASF +N-ASF +P-GPM +PREP +N-DSN +ADV +T-NSM +N-NSM +T-GSM +N-GSM +V-2AAP-NSM +PRT-I +V-FAI-3S +T-ASF +N-ASF +PREP +T-GSF +N-GSF +CONJ +V-2AAI-3S +CONJ +PREP +X-APM +T-APM +V-2RAP-APM +PREP +F-3DPM +CONJ +V-PAI-3P +A-NPM +CONJ +V-PAP-APM +T-APM +A-APM +T-ASF +N-ASF +D-ASF +N-NPM +A-NUI +V-2AAI-3P +PREP +T-ASN +N-ASN +V-ADN +T-NSM +A-NSM +N-NSM +CONJ +T-NSM +A-NSM +N-NSM +T-NSM +N-NSM +V-APP-NSM +D-APN +PREP +F-3ASM +V-INI-3S +T-NSM +N-NSM +V-PAI-1S +P-2DS +CONJ +PRT-N +V-PAI-1S +ADV +T-NPM +A-NPM +T-GPM +N-GPM +A-NPM +A-NPM +N-NPM +PRT +ADV +CONJ +D-NSM +T-NSM +N-NSM +V-PAI-1S +ADV +T-GSN +N-GSN +V-PAI-1S +A-APN +K-APN +V-PNI-1S +CONJ +T-NSM +N-NSM +ADV +V-RAP-NSM +PRT-N +V-IAI-3S +CONJ-N +T-APM +N-APM +V-AAN +PREP +T-ASM +N-ASM +CONJ +V-IAI-3S +T-ASN +N-ASN +P-GSM +V-PAP-NSM +T-NSM +N-NSM +V-APM-2S +P-1DS +T-DSM +A-DSM +V-PAI-1S +P-2DP +V-2AAI-3S +D-NSM +V-RPP-NSM +PREP +T-ASM +N-ASM +P-GSM +PREP +D-ASM +CONJ +A-NSM +T-NSM +V-PAP-NSM +F-3ASM +V-FPI-3S +CONJ +T-NSM +V-PAP-NSM +F-3ASM +V-FPI-3S +CONJ +V-IAI-3P +P-DSM +CONJ +T-APN +N-APN +CONJ +P-GPN +V-PMS-3S +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-IAI-3P +P-DPM +CONJ +T-NSM +N-NSM +V-ADI-3S +P-APN +V-PAP-NSM +V-2AAM-2P +T-APN +N-APN +V-PNN +PREP +P-1AS +CONJ +PRT-N +V-PAM-2P +P-APN +CONJ +T-GPN +D-GPN +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +HEB +V-PAI-1S +P-2DP +PRT +R-NSM +PRT-N +V-ADS-3S +T-ASF +N-ASF +T-GSM +N-GSM +ADV +N-NSN +PRT-N +PRT-N +V-2AAS-3S +PREP +P-ASF +CONJ +V-AAI-3S +X-NSM +N-NSM +P-ASM +V-PAP-NSM +N-VSM +A-VSM +I-ASN +V-AAP-NSM +N-ASF +A-ASF +V-FAI-1S +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +I-ASN +P-1AS +V-PAI-2S +A-ASM +A-NSM-N +A-NSM +COND +PRT-N +A-NSM +T-NSM +N-NSM +T-APF +N-APF +V-RAI-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +PRT-N +V-AAS-2S +V-PAM-2S +T-ASM +N-ASM +P-2GS +CONJ +T-ASF +N-ASF +CONJ +T-NSM +V-2AAI-3S +D-APN +A-APN +V-AAI-1S +PREP +N-GSF +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +ADV +A-NSN +P-2DS +V-PAI-3S +A-APN +K-APN +V-PAI-2S +V-AAM-2S +CONJ +V-2AAM-2S +A-DPM +CONJ +V-FAI-2S +N-ASM +PREP +T-DPM +N-DPM +CONJ +V-PAM-2S +V-PAM-2S +P-1DS +CONJ +T-NSM +V-AAP-NSM +D-APN +A-NSM +V-AOI-3S +CONJ +V-IAI-3S +A-NSM +ADV +CONJ +V-2AAP-NSM +P-ASM +T-NSM +N-NSM +V-2AAI-3S +ADV +ADV +T-NPM +T-APN +N-APN +V-PAP-NPM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +V-PNI-3P +CONJ +A-NSN-C +V-PAI-3S +N-ASF +PREP +N-GSN +N-GSF +V-2AAN +PRT +A-ASM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +V-2AAN +CONJ +V-2AAI-3P +T-NPM +V-AAP-NPM +CONJ +I-NSM +V-PNI-3S +V-APN +CONJ +T-NSM +V-2AAI-3S +T-NPN +A-NPN +PREP +N-DPM +A-NPN +PREP +T-DSM +N-DSM +V-PAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +V-2AMM-2S +P-1NP +V-2AAP-NPM +T-APN +A-APN +V-AAI-1P +P-2DS +CONJ +T-NSM +V-2AAI-3S +P-DPM +HEB +V-PAI-1S +P-2DP +CONJ +A-NSM-N +V-PAI-3S +R-NSM +V-AAI-3S +N-ASF +PRT +N-ASF +PRT +N-APM +PRT +N-APM +PRT +N-APN +PREP +T-GSF +N-GSF +T-GSM +N-GSM +R-NSM +PRT-N +PRT-N +V-2AAS-3S +A-APN +PREP +T-DSM +N-DSM +D-DSM +CONJ +PREP +T-DSM +N-DSM +T-DSM +V-PNP-DSM +N-ASF +A-ASF +CONJ +V-2AAP-NSM +T-APM +A-NUI +V-2AAI-3S +PREP +P-APM +V-2AMM-2S +V-PAI-1P +PREP +N-PRI +CONJ +V-FPI-3S +A-NPN +T-NPN +V-RPP-NPN +PREP +T-GPM +N-GPM +T-DSM +N-DSM +T-GSM +N-GSM +CONJ +V-FPI-3S +T-DPN +N-DPN +CONJ +V-FPI-3S +CONJ +V-FPI-3S +CONJ +V-FPI-3S +CONJ +V-AAP-NPM +V-FAI-3P +P-ASM +CONJ +T-DSF +N-DSF +T-DSF +A-DSF +V-FMI-3S +CONJ +P-NPM +A-ASN-N +D-GPN +V-AAI-3P +CONJ +V-IAI-3S +T-NSN +N-NSN +D-NSN +V-RPP-NSN +PREP +P-GPM +CONJ +PRT-N +V-IAI-3P +T-APN +V-PPP-APN +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-ASM +PREP +N-PRI +A-NSM +X-NSM +V-INI-3S +PREP +T-ASF +N-ASF +V-PAP-NSM +CONJ +V-AAP-NSM +N-GSM +V-PNP-GSM +V-INI-3S +I-NSN +V-PAO-3S +D-NSN +CONJ +V-AAI-3P +P-DSM +CONJ +N-NSM +T-NSM +N-NSM +V-PNI-3S +CONJ +V-AAI-3S +V-PAP-NSM +N-VSM +N-VSM +N-PRI +V-AAM-2S +P-1AS +CONJ +T-NPM +V-PAP-NPM +V-IAI-3P +P-DSM +CONJ +V-AAS-3S +CONJ +P-NSM +A-DSN +ADV +V-IAI-3S +N-VSM +N-PRI +V-AAM-2S +P-1AS +CONJ +V-APP-NSM +T-NSM +N-NSM +V-AAI-3S +P-ASM +V-APN +PREP +P-ASM +CONJ +V-AAP-GSM +P-GSM +V-AAI-3S +P-ASM +I-ASN +P-2DS +V-AAS-1S +V-PAI-2S +CONJ +T-NSM +V-2AAI-3S +N-VSM +CONJ +V-AAS-1S +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-AAM-2S +T-NSF +N-NSF +P-2GS +V-RAI-3S +P-2AS +CONJ +ADV +V-AAI-3S +CONJ +V-IAI-3S +P-DSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +A-NSM +T-NSM +N-NSM +V-2AAP-NSM +V-AAI-3S +N-ASM +T-DSM +N-DSM +CONJ +V-2AAP-NSM +V-INI-3S +T-ASF +N-PRI +CONJ +V-2AMM-2S +N-NSM +N-DSN +V-PPP-NSM +N-NSM +CONJ +P-NSM +V-IAI-3S +N-NSM +CONJ +P-NSM +A-NSM +CONJ +V-IAI-3S +V-2AAN +T-ASM +N-ASM +I-NSM +V-PAI-3S +CONJ +PRT-N +V-INI-3S-ATT +PREP +T-GSM +N-GSM +CONJ +T-DSF +N-DSF +A-NSM +V-IAI-3S +CONJ +V-2AAP-NSM +PREP +T-ASN +ADV +V-2AAI-3S +PREP +N-ASF +CONJ +V-2AAS-3S +P-ASM +CONJ +D-GSF +V-PNN +V-IAI-3S-ATT +CONJ +ADV +V-2AAI-3S +PREP +T-ASM +N-ASM +V-AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +PREP +P-ASM +N-VSM +V-AAP-NSM +V-2AAM-2S +CONJ +ADV +PREP +T-DSM +N-DSM +P-2GS +P-1AS +V-AAN +V-PAI-3S +CONJ +V-AAP-NSM +V-2AAI-3S +CONJ +V-ADI-3S +P-ASM +V-PAP-NSM +CONJ +V-2AAP-NPM +A-NPM +V-IAI-3P +V-PAP-NPM +CONJ +PREP +A-DSM +N-DSM +V-2AAI-3S +V-AAN +CONJ +V-APP-NSM +N-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +N-VSM +V-2AMM-2S +T-APN +A-APN +P-1GS +T-GPN +V-PAP-GPN +T-DPM +A-DPM +V-PAI-1S +CONJ +COND +X-GSM +X-ASN +V-AAI-1S +V-PAI-1S +A-ASN +CONJ +V-2AAI-3S +PREP +P-ASM +T-NSM +N-NSM +CONJ +ADV +N-NSF +T-DSM +N-DSM +D-DSM +V-2ADI-3S +CONJ +CONJ +P-NSM +N-NSM +N-PRI +V-PAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +V-AAN +CONJ +V-AAN +T-ASN +V-2RAP-ASN +CONJ +V-PAP-GPM +P-GPM +D-APN +V-2AAP-NSM +V-2AAI-3S +N-ASF +PREP +T-ASN +V-PAN +ADV +N-PRI +P-ASM +CONJ +V-PAN +P-APM +CONJ +ADV +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +V-PPN +CONJ +V-2AAI-3S +N-NSM +X-NSM +A-NSM +V-AOI-3S +PREP +N-ASF +A-ASF +V-2AAN +F-3DSM +N-ASF +CONJ +V-AAN +CONJ +V-AAP-NSM +A-NUI +N-APM +F-3GSM +V-AAI-3S +P-DPM +A-NUI +N-APF +CONJ +V-2AAI-3S +PREP +P-APM +V-ADM-2P +PREP +R-DSM +V-PNI-1S +CONJ +T-NPM +N-NPM +P-GSM +V-IAI-3P +P-ASM +CONJ +V-AAI-3P +N-ASF +ADV +P-GSM +V-PAP-NPM +PRT-N +V-PAI-1P +D-ASM +V-AAN +PREP +P-1AP +CONJ +V-2ADI-3S +PREP +T-DSN +V-2AAN +P-ASM +V-2AAP-ASM +T-ASF +N-ASF +CONJ +V-2AAI-3S +V-APN +P-DSM +T-APM +N-APM +D-APM +R-DPM +V-LAI-3S-ATT +T-ASN +N-ASN +CONJ +V-2AAS-3S +I-NSM +I-ASN +V-ADI-3S +CONJ +V-2ADI-3S +T-NSM +A-NSM-S +V-PAP-NSM +N-VSM +T-NSF +N-NSF +P-2GS +A-NUI +N-APF +V-AMI-3S +CONJ +V-2AAI-3S +P-DSM +ADV +A-VSM +N-VSM +CONJ +PREP +A-DSN-S +A-NSM +V-2ADI-2S +V-PAM-2S +N-ASF +V-PAP-NSM +ADV +A-NUI +N-GPF +CONJ +V-2AAI-3S +T-NSM +A-NSM +V-PAP-NSM +N-VSM +T-NSF +N-NSF +P-2GS +V-AAI-3S +A-NUI +N-APF +CONJ +V-2AAI-3S +CONJ +D-DSM +CONJ +P-2NS +ADV +A-NUI +N-GPF +V-PNM-2S +CONJ +T-NSM +A-NSM +V-2AAI-3S +V-PAP-NSM +N-VSM +V-2AMM-2S +T-NSF +N-NSF +P-2GS +R-ASF +V-IAI-1S +V-PNP-ASF +PREP +N-DSN +CONJ +V-INI-1S +P-2AS +CONJ +N-NSM +A-NSM +V-PAI-2S +V-PAI-2S +R-ASN +PRT-N +V-AAI-2S +CONJ +V-PAI-2S +R-ASN +PRT-N +V-AAI-2S +V-PAI-3S +P-DSM +PREP +T-GSN +N-GSN +P-2GS +V-FAI-1S +P-2AS +A-VSM +N-VSM +V-2LAI-2S +CONJ +P-1NS +V-PAI-1S +N-NSM +A-NSM +V-PAP-NSM +R-ASN +PRT-N +V-AAI-1S +CONJ +V-PAP-NSM +R-ASN +PRT-N +V-AAI-1S +CONJ +PREP +I-ASN +PRT-N +V-AAI-2S +P-1GS +T-ASN +N-ASN +PREP +N-ASF +PRT +P-1NS-K +V-2AAP-NSM +PREP +N-DSM +P-ASN +V-AAI-1S +CONJ +T-DPM +V-RAP-DPM +V-2AAI-3S +V-AAM-2P +PREP +P-GSM +T-ASF +N-ASF +CONJ +V-2AAM-2P +T-DSM +T-APF +A-NUI +N-APF +V-PAP-DSM +CONJ +V-2AAI-3P +P-DSM +N-VSM +V-PAI-3S +A-NUI +N-APF +V-PAI-1S +P-2DP +CONJ +A-DSM +T-DSM +V-PAP-DSM +V-FPI-3S +CONJ +PREP +T-GSM +PRT-N +V-PAP-GSM +CONJ +R-ASN +V-PAI-3S +V-FPI-3S +ADV +T-APM +A-APM +P-1GS +D-APM +T-APM +PRT-N +V-AAP-APM +P-1AS +V-AAN +PREP +P-APM +V-2AAM-2P +ADV +CONJ +V-AAM-2P +P-APM +PREP +P-1GS +CONJ +V-2AAP-NSM +D-APN +V-INI-3S +ADV +V-PAP-NSM +PREP +N-APN +CONJ +V-2ADI-3S +ADV +V-AAI-3S +PREP +N-PRI +CONJ +N-ASF +PREP +T-ASN +N-ASN +T-ASN +V-PPP-ASN +N-GPF +V-AAI-3S +A-NUI +T-GPM +N-GPM +V-PAP-NSM +V-PAM-2P +PREP +T-ASF +ADV +N-ASF +PREP +R-DSF +V-PNP-NPM +V-FAI-2P +V-RPP-ASM +N-ASM +PREP +R-ASM +A-NSM-N +N-GPM +ADV +V-AAI-3S +CONJ +V-AAP-NPM +P-ASM +V-2AAM-2P +CONJ +COND +X-NSM +P-2AP +V-PAS-3S +PREP +I-ASN +V-PAI-2P +ADV +V-FAI-2P +CONJ +T-NSM +N-NSM +P-GSM +N-ASF +V-PAI-3S +CONJ +V-2AAP-NPM +T-NPM +V-RPP-NPM +V-2AAI-3P +ADV +V-2AAI-3S +P-DPM +CONJ +V-PAP-GPM +P-GPM +T-ASM +N-ASM +V-2AAI-3P +T-NPM +N-NPM +P-GSM +PREP +P-APM +I-ASN +V-PAI-2P +T-ASM +N-ASM +CONJ +T-NPM +V-2AAI-3P +CONJ +T-NSM +N-NSM +P-GSM +N-ASF +V-PAI-3S +CONJ +V-2AAI-3P +P-ASM +PREP +T-ASM +N-ASM +CONJ +V-AAP-NPM +P-GPM +T-APN +N-APN +PREP +T-ASM +N-ASM +V-AAI-3P +T-ASM +N-ASM +CONJ +V-PNP-GSM +P-GSM +V-IAI-3P +T-APN +N-APN +F-3GPM +PREP +T-DSF +N-DSF +CONJ +V-PAP-GSM +P-GSM +ADV +PREP +T-DSF +N-DSF +T-GSN +N-GSN +T-GPF +N-GPF +V-ADI-3P +A-NSN +T-NSN +N-NSN +T-GPM +N-GPM +V-PAP-NPM +V-PAN +T-ASM +N-ASM +N-DSF +A-DSF +PREP +A-GPF +R-GPF +V-2AAI-3P +N-GPF +V-PAP-NPM +V-RPP-NSM +T-NSM +V-PNP-NSM +PREP +N-DSN +N-GSM +T-NSM +N-NSM +PREP +N-DSM +N-NSF +CONJ +N-NSF +PREP +A-DPN-S +CONJ +X-NPM +T-GPM +N-GPM +PREP +T-GSM +N-GSM +V-2AAI-3P +PREP +P-ASM +N-VSM +V-AAM-2S +T-DPM +N-DPM +P-2GS +CONJ +V-AOP-NSM +V-2AAI-3S +V-PAI-1S +P-2DP +COND +D-NPM +V-FAI-3P +T-NPM +N-NPM +V-FAI-3P +CONJ +ADV +V-AAI-3S +V-2AAP-NSM +T-ASF +N-ASF +V-AAI-3S +PREP +P-ASF +V-PAP-NSM +CONJ +COND +V-2AAI-2S +PREP +T-DSF +N-DSF +D-DSF +CONJ +P-2NS +T-APN +PREP +N-ASF +CONJ +ADV +V-2API-3S +PREP +N-GPM +P-2GS +CONJ +V-FAI-3P +N-NPF +PREP +P-2AS +CONJ +V-FAI-3P +T-NPM +A-NPM +P-2GS +N-ASM +P-2DS +CONJ +V-FAI-3P +P-2AS +CONJ +V-FAI-3P +P-2AS +ADV +CONJ +V-FAI-3P-ATT +P-2AS +CONJ +T-APN +N-APN +P-2GS +PREP +P-2DS +CONJ +PRT-N +V-FAI-3P +N-ASM +PREP +N-ASM +PREP +P-2DS +PREP +R-GPM +PRT-N +V-2AAI-2S +T-ASM +N-ASM +T-GSF +N-GSF +P-2GS +CONJ +V-2AAP-NSM +PREP +T-ASN +N-ASN +V-ADI-3S +V-PAN +T-APM +V-PAP-APM +V-PAP-NSM +P-DPM +V-RPI-3S +CONJ +V-FDI-3S +T-NSM +N-NSM +P-1GS +N-NSM +N-GSF +CONJ +P-2NP +P-ASM +V-AAI-2P +N-ASN +N-GPM +CONJ +V-IAI-3S +V-PAP-NSM +T-ASN +PREP +N-ASF +PREP +T-DSN +N-DSN +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-IAI-3P +P-ASM +V-AAN +CONJ +T-NPM +A-NPM-S +T-GSM +N-GSM +CONJ +PRT-N +V-PAP-NSN +T-ASN +I-ASN +V-AAS-3P +CONJ +T-NSM +N-NSM +A-NSM +V-IMI-3S +P-GSM +V-PAP-NSM +CONJ +V-2ADI-3S +PREP +A-DSF +T-GPF +N-GPF +V-PAP-GSM +P-GSM +T-ASM +N-ASM +PREP +T-DSN +N-DSN +CONJ +V-PMP-GSM +V-2AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +PREP +T-DPM +A-DPM-C +CONJ +V-2AAI-3P +V-PAP-NPM +PREP +P-ASM +V-2AAM-2S +P-1DP +PREP +I-DSF +N-DSF +D-APN +V-PAI-2S +PRT +I-NSM +V-PAI-3S +T-NSM +V-2AAP-NSM +P-2DS +T-ASF +N-ASF +D-ASF +CONJ +V-AOP-NSM +V-2AAI-3S +PREP +P-APM +V-FAI-1S +P-2AP +P-1NS-K +N-ASM +CONJ +V-2AAM-2P +P-1DS +T-NSN +N-NSN +N-GSM +PREP +N-GSM +V-IAI-3S +PRT +PREP +N-GPM +CONJ +T-NPM +V-ADI-3P +PREP +F-3APM +V-PAP-NPM +CONJ +COND +V-2AAS-1P +PREP +N-GSM +V-FAI-3S +PREP +I-ASN +PRT-N +V-AAI-2P +P-DSM +CONJ +COND +V-2AAS-1P +PREP +N-GPM +T-NSM +N-NSM +A-NSM +V-FAI-3S +P-1AP +CONJ +V-RPP-NSM +V-PAI-3S +N-ASM +N-ASM +V-PAN +CONJ +V-ADI-3P +PRT-N +V-RAN +ADV-I +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-DPM +CONJ-N +P-1NS +V-PAI-1S +P-2DP +PREP +I-DSF +N-DSF +D-APN +V-PAI-1S +CONJ +V-ADI-3S +PREP +T-ASM +N-ASM +V-PAN +T-ASF +N-ASF +D-ASF +N-NSM +V-AAI-3S +N-ASM +CONJ +V-2AMI-3S +P-ASM +N-DPM +CONJ +V-AAI-3S +N-APM +A-APM +CONJ +N-DSM +V-AAI-3S +PREP +T-APM +N-APM +N-ASM +CONJ +PREP +T-GSM +N-GSM +T-GSM +N-GSM +V-FAI-3P +P-DSM +CONJ +T-NPM +N-NPM +V-AAI-3P +P-ASM +V-AAP-NPM +A-ASM +CONJ +V-2AMI-3S +A-ASM +N-ASM +V-AAN +CONJ +T-NPM +D-ASM-K +V-AAP-NPM +CONJ +V-AAP-NPM +V-AAI-3P +A-ASM +CONJ +V-2AMI-3S +A-ASM +V-AAN +CONJ +T-NPM +CONJ +D-ASM +V-AAP-NPM +V-2AAI-3P +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +I-ASN +V-AAS-1S +V-FAI-1S +T-ASM +N-ASM +P-1GS +T-ASM +A-ASM +ADV +D-ASM +V-2FPI-3P +CONJ +V-2AAP-NPM +P-ASM +T-NPM +N-NPM +V-INI-3P +PREP +C-APM +V-PAP-NPM +D-NSM +V-PAI-3S +T-NSM +N-NSM +V-PAS-1P +P-ASM +CONJ +P-1GP +V-2ADS-3S +T-NSF +N-NSF +CONJ +V-2AAP-NPM +P-ASM +ADV +T-GSM +N-GSM +V-AAI-3P +CONJ +I-ASN +V-FAI-3S +P-DPM +T-NSM +N-NSM +T-GSM +N-GSM +V-FDI-3S +CONJ +V-FAI-3S +T-APM +N-APM +D-APM +CONJ +V-FAI-3S +T-ASM +N-ASM +A-DPM +CONJ +V-AAP-NPM +V-2AAI-3P +PRT-N +V-2ADO-3S +CONJ +T-NSM +V-AAP-NSM +P-DPM +V-2AAI-3S +CONJ +I-NSN +V-PAI-3S +T-NSN +V-RPP-NSN +D-NSN +N-ASM +R-ASM +V-AAI-3P +T-NPM +V-PAP-NPM +D-NSM +V-AOI-3S +PREP +N-ASF +N-GSF +A-NSM +T-NSM +V-2AAP-NSM +PREP +D-ASM +T-ASM +N-ASM +V-FPI-3S +CONJ +PRT +PREP +R-ASM +V-2AAS-3S +V-FAI-3S +P-ASM +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-2AAN +PREP +P-ASM +T-APF +N-APF +PREP +P-DSF +T-DSF +N-DSF +CONJ +V-AOI-3P +T-ASM +N-ASM +CONJ +V-2AAI-3P +CONJ +PREP +P-APM +V-2AAI-3S +T-ASF +N-ASF +D-ASF +CONJ +V-AAP-NPM +V-AAI-3P +A-APM +V-PNP-APM +F-3APM +A-APM +V-PAN +CONJ +V-2ADS-3P +P-GSM +N-GSM +CONJ +V-2AAN +P-ASM +T-DSF +N-DSF +CONJ +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +V-AAI-3P +P-ASM +V-PAP-NPM +N-VSM +V-RAI-1P +CONJ +ADV +V-PAI-2S +CONJ +V-PAI-2S +CONJ +PRT-N +V-PAI-2S +N-ASN +CONJ +PREP +N-GSF +T-ASF +N-ASF +T-GSM +N-GSM +V-PAI-2S +V-PAI-3S +P-1AP +N-DSM +N-ASM +V-2AAN +PRT +PRT-N +CONJ +V-AAP-NSM +P-GPM +T-ASF +N-ASF +V-2AAI-3S +PREP +P-APM +V-AAM-2P +P-1DS +N-ASN +V-PAI-3S +I-GSM +N-ASF +CONJ +N-ASF +CONJ +T-NPM +V-2AAI-3P +N-GSM +CONJ +T-NSM +V-2AAI-3S +PREP +P-APM +PRT +V-2AAM-2P +T-APN +N-GSM +N-DSM +CONJ +T-APN +T-GSM +N-GSM +T-DSM +N-DSM +CONJ +PRT-N +V-AAI-3P +V-2ADN +P-GSM +N-GSN +PREP +T-GSM +N-GSM +CONJ +V-AAP-NPM +PREP +T-DSF +N-DSF +P-GSM +V-AAI-3P +CONJ +V-2AAP-NPM +X-NPM +T-GPM +N-GPM +T-NPM +V-PAP-NPM +N-ASF +PRT-N +V-PAN +V-AAI-3P +P-ASM +V-PAP-NPM +N-VSM +N-NSM +V-AAI-3S +P-1DP +COND +X-GSM +N-NSM +V-2AAS-3S +V-PAP-NSM +N-ASF +CONJ +D-NSM +A-NSM +V-PAS-3S +CONJ +V-2AAS-3S +T-NSM +N-NSM +P-GSM +T-ASF +N-ASF +CONJ +V-AAS-3S +N-ASN +T-DSM +N-DSM +P-GSM +CONJ +A-NUI +N-NPM +V-IAI-3P +CONJ +T-NSM +A-NSM-S +V-2AAP-NSM +N-ASF +V-2AAI-3S +A-NSM +CONJ +T-NSM +A-NSM +CONJ +T-NSM +A-NSM +V-2AAI-3S +P-ASF +CONJ +ADV +CONJ +T-NPM +A-NUI +PRT-N +V-2AAI-3P +N-APN +CONJ +V-2AAI-3P +ADV +CONJ +T-NSF +N-NSF +V-2AAI-3S +CONJ +T-NSF +N-NSF +PREP +T-DSF +N-DSF +I-GSM +P-GPM +N-NSF +V-PNI-3S +CONJ +T-NPM +A-NUI +V-2AAI-3P +P-ASF +N-ASF +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +T-NPM +N-NPM +T-GSM +N-GSM +D-GSM +V-PAI-3P +CONJ +V-PPI-3P +CONJ +T-NPM +V-APP-NPM +T-GSM +N-GSM +D-GSM +V-2AAN +CONJ +T-GSF +N-GSF +T-GSF +PREP +A-GPM +CONJ-N +V-PAI-3P +CONJ-N +V-PPI-3P +CONJ +CONJ-N +V-2AAN +ADV +V-PNI-3P +CONJ +A-NPM +V-PAI-3P +CONJ +N-NPM +N-GSM +V-PAI-3P +T-GSF +N-GSF +N-NPM +V-PAP-NPM +CONJ +CONJ +V-PPI-3P +T-NPM +A-NPM +CONJ +N-NSM +V-AAI-3S +PREP +T-GSF +N-GSF +ADV +V-PAI-3S +N-ASM +T-ASM +N-ASM +N-PRI +CONJ +N-ASM +N-PRI +CONJ +N-ASM +N-PRI +CONJ +N-NSM +PRT-N +V-PAI-3S +A-GPM +CONJ +V-PAP-GPM +CONJ +A-NPM +P-DSM +V-PAI-3P +CONJ +V-AOP-NPM +X-NPM +T-GPM +N-GPM +V-2AAI-3P +N-VSM +ADV +V-2AAI-2S +CONJ +ADV-N +V-IAI-3P +V-PAN +P-ASM +A-ASN-N +CONJ +V-2AAI-3S +PREP +P-APM +ADV-I +V-PAI-3P +T-ASM +N-ASM +V-PAN +N-PRI +N-ASM +CONJ +P-NSM +N-PRI +V-PAI-3S +PREP +N-DSF +N-GPM +V-2AAI-3S +N-NSM +T-DSM +N-DSM +P-1GS +V-PNM-2S +PREP +A-GPN +P-1GS +ADV +PRT +V-2AAS-1S +T-APM +A-APM +P-2GS +N-ASN +T-GPM +N-GPM +P-2GS +CONJ +N-PRI +P-ASM +N-ASM +V-PAI-3S +CONJ +ADV-I +P-GSM +N-NSM +V-PAI-3S +CONJ +V-PAP-GSM +A-GSM +T-GSM +N-GSM +V-2AAI-3S +T-DPM +N-DPM +V-PAM-2P +PREP +T-GPM +N-GPM +T-GPM +V-PAP-GPM +V-PAN +PREP +N-DPF +CONJ +V-PAP-GPM +N-APM +PREP +T-DPF +N-DPF +CONJ +N-APF-S +PREP +T-DPF +N-DPF +CONJ +N-APF-S +PREP +T-DPN +N-DPN +R-NPM +V-PAI-3P +T-APF +N-APF +T-GPF +N-GPF +CONJ +N-DSF +A-APN +V-PNI-3P +D-NPM +V-FDI-3P +A-ASN-C +N-ASN +CONJ +V-AAP-NSM +V-2AAI-3S +T-APM +V-PAP-APM +PREP +T-ASN +N-ASN +T-APN +N-APN +P-GPM +A-APM +CONJ +V-2AAI-3S +X-ASF +N-ASF +A-ASF +V-PAP-ASF +ADV +N-APN +A-NUI +CONJ +V-2AAI-3S +ADV +V-PAI-1S +P-2DP +CONJ +T-NSF +N-NSF +D-NSF +T-NSF +A-NSF +A-ASN-C +A-GPM +V-2AAI-3S +CONJ +A-NPM +D-NPM +PREP +T-GSN +V-PAP-GSN +P-DPM +V-2AAI-3P +PREP +T-APN +N-APN +CONJ +D-NSF +PREP +T-GSN +N-GSN +P-GSF +A-ASM +T-ASM +N-ASM +R-ASM +V-IAI-3S +V-2AAI-3S +CONJ +X-GPM +V-PAP-GPM +PREP +T-GSN +N-GSN +CONJ +N-DPM +A-DPM +CONJ +N-DPN +V-RPI-3S +V-2AAI-3S +D-APN +R-APN +V-PAI-2P +V-FDI-3P +N-NPF +PREP +R-DPF +PRT-N +V-FPI-3S +PREP +N-DSM +N-NSM +R-NSM +PRT-N +V-FPI-3S +CONJ +V-AAI-3P +P-ASM +V-PAP-NPM +N-VSM +CONJ +PRT-I +D-NPN +V-FDI-3S +CONJ +I-NSN +T-NSN +N-NSN +CONJ +V-PAS-3S +D-NPN +V-PNN +CONJ +T-NSM +V-2AAI-3S +V-PAM-2P +PRT-N +V-APS-2P +CONJ +A-NPM +V-FDI-3P +PREP +T-DSN +N-DSN +P-1GS +V-PAP-NPM +P-1NS +V-PAI-1S +CONJ +T-NSM +N-NSM +V-RAI-3S +PRT-N +V-AOS-2P +ADV +P-GPM +CONJ +CONJ +V-AAS-2P +N-APM +CONJ +N-APF +PRT-N +V-APS-2P +CONJ +V-PAI-3S +D-APN +V-2ADN +ADV-S +CONJ +PRT-N +ADV +T-NSN +N-NSN +ADV +V-IAI-3S +P-DPM +V-FPI-3S +N-NSN +PREP +N-ASN +CONJ +N-NSF +PREP +N-ASF +PRT +N-NPM +A-NPM +CONJ +PREP +N-APM +N-NPM +CONJ +N-NPM +V-FDI-3P +PRT +N-NPN +CONJ +PREP +N-GSM +N-NPN +A-NPN +V-FDI-3S +CONJ +PREP +D-GPN +A-GPN +V-FAI-3P +PREP +P-2AP +T-APF +N-APF +P-GPM +CONJ +V-FAI-3P +V-PAP-NPM +PREP +T-APF +N-APF +CONJ +N-APF +V-PPP-APM +PREP +N-APM +CONJ +N-APM +PREP +T-GSN +N-GSN +P-1GS +V-FDI-3S +P-2DP +PREP +N-ASN +CONJ +V-2AAM-2P +PREP +T-DPF +N-DPF +P-2GP +PRT-N +V-PAN +V-AON +CONJ +P-1NS +V-FAI-1S +P-2DP +N-ASN +CONJ +N-ASF +R-DSF +PRT-N +V-FDI-3P +V-2AAN +PRT +V-2AAN +A-NPM +T-NPM +V-PNP-NPM +P-2DP +CONJ +V-FPI-2P +CONJ +PREP +N-GPM +CONJ +N-GPM +CONJ +A-GPM +CONJ +A-GPM +CONJ +V-FAI-3P +PREP +P-2GP +CONJ +V-FDI-2P +V-PPP-NPM +PREP +A-GPM +PREP +T-ASN +N-ASN +P-1GS +CONJ +N-NSF +PREP +T-GSF +N-GSF +P-2GP +PRT-N +PRT-N +V-2AMS-3S +PREP +T-DSF +N-DSF +P-2GP +V-FDI-2P +T-APF +N-APF +P-2GP +CONJ +CONJ +V-2AAS-2P +V-PPP-ASF +PREP +N-GPN +N-PRI +ADV +V-2AAM-2P +CONJ +V-RAI-3S +T-NSF +N-NSF +P-GSF +ADV +T-NPM +PREP +T-DSF +N-DSF +V-PAM-3P +PREP +T-APN +N-APN +CONJ +T-NPM +PREP +A-DSN +P-GSF +V-PAM-3P +CONJ +T-NPM +PREP +T-DPF +N-DPF +PRT-N +V-PNM-3P +PREP +P-ASF +CONJ +N-NPF +N-GSF +D-NPF +V-PAI-3P +T-GSN +V-APN +A-APN +T-APN +V-RPP-APN +INJ +T-DPF +PREP +N-DSF +V-PAP-DPF +CONJ +T-DPF +V-PAP-DPF +PREP +D-DPF +T-DPF +N-DPF +CONJ +V-FDI-3S +N-NSF +A-NSF +PREP +T-GSF +N-GSF +CONJ +N-NSF +T-DSM +N-DSM +D-DSM +CONJ +V-FNI-3P +N-DSN +N-GSF +CONJ +V-FPI-3P +PREP +T-APN +N-APN +A-APN +CONJ +N-PRI +V-FDI-3S +V-PPP-NSF +PREP +N-GPN +ADV +R-GSM +V-APS-3P +N-NPM +N-GPN +CONJ +V-FDI-3P +N-NPN +PREP +N-DSM +CONJ +N-DSF +CONJ +N-DPN +CONJ +PREP +T-GSF +N-GSF +N-NSF +N-GPN +PREP +N-DSF +N-GSN +N-GSF +CONJ +N-GSM +V-PAP-GPM +N-GPM +PREP +N-GSM +CONJ +N-GSF +T-GPM +V-PNP-GPM +T-DSF +N-DSF +CONJ +T-NPF +N-NPF +T-GPM +N-GPM +V-FPI-3P +CONJ +ADV +V-FDI-3P +T-ASM +N-ASM +T-GSM +N-GSM +V-PNP-ASM +PREP +N-DSF +PREP +N-GSF +CONJ +N-GSF +A-GSF +CONJ +V-PMP-GPM +D-GPM +V-PNN +V-AAM-2P +CONJ +V-AAM-2P +T-APF +N-APF +P-2GP +CONJ +V-PAI-3S +T-NSF +N-NSF +P-2GP +CONJ +V-2AAI-3S +N-ASF +P-DPM +V-2AAM-2P +T-ASF +N-ASF +CONJ +A-APN +T-APN +N-APN +CONJ +V-2AAS-3P +ADV +V-PAP-NPM +PREP +F-2GPM +V-PAI-2P +CONJ +ADV +ADV +T-NSN +N-NSN +V-PAI-3S +ADV +CONJ +P-2NP +CONJ +V-2AAS-2P +D-APN +V-PNP-APN +V-PAM-2P +CONJ +ADV +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +HEB +V-PAI-1S +P-2DP +CONJ +PRT-N +PRT-N +V-2AAS-3S +T-NSF +N-NSF +D-NSF +ADV +PRT +A-NPN +V-2ADS-3S +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +V-FDI-3P +CONJ +T-NPM +N-NPM +P-1GS +PRT-N +PRT-N +V-FDI-3P +CONJ +V-PAM-2P +F-2DPM +PRT-N +ADV +V-APS-3P +P-2GP +T-NPF +N-NPF +PREP +N-DSF +CONJ +N-DSF +CONJ +N-DPF +A-DPF +CONJ +V-2AAS-3S +PREP +P-2AP +A-NSM +T-NSF +N-NSF +D-NSF +ADV +N-NSF +CONJ +V-FDI-3S +PREP +A-APM +T-APM +V-PNP-APM +PREP +N-ASN +A-GSF +T-GSF +N-GSF +CONJ +V-PAM-2P +PREP +A-DSM +N-DSM +V-PNP-NPM +CONJ +V-PAS-2P +V-2AAN +D-APN +A-APN +T-APN +V-PAP-APN +V-PNN +CONJ +V-APN +PREP +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +V-IAI-3S +V-PAP-NSM +T-APF +N-APF +PREP +T-DSN +N-DSN +CONJ +T-APF +N-APF +V-PNP-NSM +V-INI-3S +PREP +T-ASN +N-ASN +T-ASN +V-PPP-ASN +N-GPF +CONJ +A-NSM +T-NSM +N-NSM +V-IAI-3S +PREP +P-ASM +PREP +T-DSN +N-DSN +V-PAN +P-GSM +CONJ +V-IAI-3S +T-NSF +N-NSF +T-GPN +A-GPN +T-NSF +V-PPP-NSF +ARAM +CONJ +V-IAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +T-ASN +ADV-I +V-2AAS-3P +P-ASM +CONJ +V-INI-3P +T-ASM +N-ASM +CONJ +V-2AAI-3S +N-NSM +PREP +N-ASM +T-ASM +V-PPP-ASM +N-ASM +V-PAP-ASM +PREP +T-GSM +N-GSM +T-GPM +A-NUI +CONJ +V-2AAP-NSM +V-AAI-3S +T-DPM +N-DPM +CONJ +N-DPM +T-ASN +ADV-I +P-DPM +V-2AAS-3S +P-ASM +CONJ +V-2AOI-3P +CONJ +V-2AMI-3P +P-DSM +N-ASN +V-2AAN +CONJ +V-AAI-3S +CONJ +V-IAI-3S +N-ASF +T-GSN +V-2AAN +P-ASM +PREP +N-GSM +P-DPM +CONJ +V-2AAI-3S +T-NSF +N-NSF +T-GPN +A-GPN +R-DSF +V-IAI-3S +V-PPN +T-ASN +ARAM +CONJ +V-AAI-3S +N-ASM +CONJ +N-ASM +V-2AAP-NSM +V-AOP-NPM +V-AAM-2P +P-1DP +T-ASN +ARAM +CONJ +V-2AAS-1P +CONJ +T-NPM +V-2AAI-3P +P-DSM +V-PAI-2S +ADV-I +V-AAS-1P +CONJ +T-NSM +V-2AAI-3S +P-DPM +V-2AMM-2S +V-2AAP-GPM +P-2GP +PREP +T-ASF +N-ASF +V-FAI-3S +P-2DP +N-NSM +N-ASN +N-GSN +V-PAP-NSM +V-AAM-2P +P-DSM +PREP +T-ASF +N-ASF +PREP +R-ASF +V-PNI-3S +CONJ +V-FAI-2P +T-DSM +N-DSM +T-GSF +N-GSF +V-PAI-3S +P-2DS +T-NSM +N-NSM +ADV-I +V-PAI-3S +T-NSN +N-NSN +ADV +T-ASN +ARAM +PREP +T-GPM +N-GPM +P-1GS +V-2AAS-1S +D-NSM-K +P-2DP +V-FAI-3S +N-ASN +A-ASN +V-RPP-ASN +ADV +V-AAM-2P +CONJ +V-2AAP-NPM +V-2AAI-3P +ADV +V-LAI-3S-ATT +P-DPM +CONJ +V-AAI-3P +T-ASN +ARAM +CONJ +ADV +V-2ADI-3S +T-NSF +N-NSF +V-2AAI-3S +CONJ +T-NPM +N-NPM +PREP +P-DSM +CONJ +V-2AAI-3S +PREP +P-APM +N-DSF +V-AAI-1S +D-ASN +T-ASN +ARAM +V-2AAN +PREP +P-2GP +PREP +T-GSN +P-1AS +V-2AAN +CONJ +V-PAI-1S +P-2DP +CONJ +ADV-N +PRT-N +PRT-N +V-2AAS-1S +P-ASN +ADV +R-GSN-ATT +V-APS-3S +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +V-ADP-NSM +N-ASN +V-AAP-NSM +V-2AAI-3S +V-2AAM-2P +D-ASN +CONJ +V-AAM-2P +PREP +F-2APM +CONJ +V-PAI-1S +P-2DP +PRT-N +PRT-N +V-2AAS-1S +PREP +T-GSN +ADV +PREP +T-GSN +N-GSN +T-GSF +N-GSF +ADV +R-GSM +T-NSF +N-NSF +T-GSM +N-GSM +V-2AAS-3S +CONJ +V-2AAP-NSM +N-ASM +V-AAP-NSM +V-AAI-3S +CONJ +V-AAI-3S +P-DPM +V-PAP-NSM +D-NSN +V-PAI-3S +T-NSN +N-NSN +P-1GS +T-NSN +PREP +P-2GP +V-PPP-NSN +D-ASN +V-PAM-2P +PREP +T-ASF +S-1SASF +N-ASF +CONJ +T-NSN +N-NSN +ADV +PREP +T-ASN +V-AAN +V-PAP-NSM +T-NSF +A-NSF +N-NSF +PREP +T-DSN +N-DSN +P-1GS +D-NSN +T-NSN +N-NSN +T-NSN +PREP +P-2GP +V-PPP-NSN +ADV +V-2AMM-2S +T-NSF +N-NSF +T-GSM +V-PAP-GSM +P-1AS +PREP +P-1GS +PREP +T-GSF +N-GSF +CONJ +PRT +T-NSM +N-NSM +T-GSM +N-GSM +PREP +T-ASN +V-RPP-ASN +V-PNI-3S +ADV +INJ +T-DSM +N-DSM +D-DSM +PREP +R-GSM +V-PPI-3S +CONJ +P-NPM +V-ADI-3P +V-PAN +PREP +F-3APM +T-ASN +PRT-I +I-NSM +V-PAO-3S +PREP +P-GPM +T-NSM +D-ASN +V-PAN +V-PAP-NSM +CONJ +V-2ADI-3S +PREP +P-DPM +CONJ +N-NSF +T-NSN +I-NSM +P-GPM +V-PAI-3S +V-PAN +A-NSM-C +CONJ +T-NSM +V-2AAI-3S +P-DPM +T-NPM +N-NPM +T-GPN +N-GPN +V-PAI-3P +P-GPN +CONJ +T-NPM +V-PAP-NPM +P-GPN +N-NPM +V-PPI-3P +CONJ +P-2NP +PRT-N +ADV +CONJ +T-NSM +A-NSM-C +PREP +P-2DP +V-PNM-3S +ADV +T-NSM +A-NSM-C +CONJ +T-NSM +V-PNP-NSM +ADV +T-NSM +V-PAP-NSM +CONJ +I-NSM +A-NSM-C +T-NSM +V-PNP-NSM +PRT +T-NSM +V-PAP-NSM +PRT-I +T-NSM +V-PNP-NSM +CONJ +P-1NS +PREP +A-DSN +P-2GP +V-PAI-1S +ADV +T-NSM +V-PAP-NSM +CONJ +P-2NP +V-PAI-2P +T-NPM +V-RAP-NPM +PREP +P-1GS +PREP +T-DPM +N-DPM +P-1GS +P-1NS-K +V-PMI-1S +P-2DP +ADV +V-2AMI-3S +P-1DS +T-NSM +N-NSM +P-1GS +N-ASF +CONJ +V-PAS-2P +CONJ +V-PAS-2P +PREP +T-GSF +N-GSF +P-1GS +PREP +T-DSF +N-DSF +P-1GS +CONJ +V-FDI-2P +PREP +N-GPM +T-APF +A-NUI +N-APF +T-GSM +N-PRI +V-PAP-NPM +N-VSM +N-VSM +V-2AMM-2S +T-NSM +N-NSM +V-AMI-3S +P-2AP +T-GSN +V-AAN +ADV +T-ASM +N-ASM +CONJ +P-1NS +V-API-1S +PREP +P-2GS +CONJ +PRT-N +V-2AAS-3S +T-NSF +N-NSF +P-2GS +CONJ +P-2NS +PRT +V-AAP-NSM +V-AAM-2S +T-APM +N-APM +P-2GS +CONJ +T-NSM +V-2AAI-3S +P-DSM +N-VSM +PREP +P-2GS +A-NSM +V-PAI-1S +CONJ +PREP +N-ASF +CONJ +PREP +N-ASM +V-PNN +CONJ +T-NSM +V-2AAI-3S +V-PAI-1S +P-2DS +N-VSM +PRT-N +V-FAI-3S +ADV +N-NSM +ADV +ADV +P-1AS +PRT-N +V-RAN +V-FDI-2S +CONJ +V-2AAI-3S +P-DPM +ADV +V-AAI-1S +P-2AP +PREP +N-GSN +CONJ +N-GSF +CONJ +N-GPN +PRT-N +X-GSN +V-AAI-2P +CONJ +T-NPM +V-2AAI-3P +A-GSN-N +CONJ +V-2AAI-3S +P-DPM +CONJ +ADV +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +ADV +CONJ +N-ASF +CONJ +T-NSM +PRT-N +V-PAP-NSM +V-AAM-3S +T-ASN +N-ASN +P-GSM +CONJ +V-AAM-3S +N-ASF +CONJ +V-PAI-1S +P-2DP +CONJ +V-PAI-3S +D-ASN +T-ASN +V-RPP-ASN +T-ASN +CONJ +PREP +A-GPM +V-API-3S +V-APN +PREP +P-1DS +CONJ +CONJ +T-ASN +PREP +P-1GS +N-ASN +V-PAI-3S +CONJ +T-NPM +V-2AAI-3P +N-VSM +V-2AMM-2S +N-NPF +ADV +A-NUI +CONJ +T-NSM +V-2AAI-3S +P-DPM +A-NSN +V-PAI-3S +CONJ +V-2AAP-NSM +V-AOI-3S +PREP +T-ASN +N-ASN +PREP +T-ASN +N-ASN +T-GPF +N-GPF +CONJ +V-AAI-3P +P-DSM +CONJ +T-NPM +N-NPM +CONJ +V-2ADP-NSM +PREP +T-GSM +N-GSM +V-2AAI-3S +P-DPM +V-PNM-2P +PRT-N +V-2AAN +PREP +N-ASM +CONJ +P-NSM +V-API-3S +PREP +P-GPM +ADV +N-GSM +N-ASF +CONJ +V-2AAP-NSM +T-APN +N-APN +V-INI-3S +V-PAP-NSM +N-VSM +COND +V-PNI-2S +V-2AAM-2S +D-ASN +T-ASN +N-ASN +PREP +P-1GS +ADV +PRT-N +T-NSN +N-NSN +P-1GS +CONJ +T-NSN +S-2SNSN +V-PNM-3S +CONJ +V-API-3S +P-DSM +N-NSM +PREP +N-GSM +V-PAP-NSM +P-ASM +CONJ +V-2ADP-NSM +PREP +N-DSF +ADV +V-INI-3S +CONJ +V-2ADI-3S +T-NSM +N-NSM +P-GSM +ADV +N-NPM +N-GSN +V-PAP-NPM +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NSM +PREP +T-GSF +N-GSF +V-2AAP-NSM +PREP +T-APM +N-APM +V-2AAI-3S +V-PPP-APM +P-APM +PREP +T-GSF +N-GSF +CONJ +V-2AAI-3S +P-DPM +I-ASN +V-PAI-2P +V-2AAP-NPM +V-PNM-2P +CONJ +PRT-N +V-2AAS-2P +PREP +N-ASM +ADV +P-GSM +V-PAP-GSM +V-2AMM-2S +N-NSM +CONJ +T-NSM +V-PPP-NSM +N-NSM +A-NSM +T-GPM +A-NUI +V-INI-3S +P-APM +CONJ +V-AAI-3S +T-DSM +N-DSM +V-AAN +P-ASM +CONJ +N-NSM +V-2AAI-3S +P-DSM +N-VSM +N-DSN +T-ASM +N-ASM +T-GSM +N-GSM +V-PAI-2S +CONJ +T-NPM +PREP +P-ASM +V-2AAP-NPM +T-ASN +V-FDP-ASN +V-2AAI-3P +N-VSM +COND +V-FAI-1P +PREP +N-DSF +CONJ +V-AAI-3S +A-NSM +X-NSM +PREP +P-GPM +T-GSM +N-GSM +T-ASM +N-ASM +CONJ +V-2AAI-3S +T-ASN +N-ASN +P-GSM +T-ASN +A-ASN +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +V-PAM-2P +ADV +D-GSN +CONJ +V-AMP-NSM +T-GSN +N-GSN +V-ADI-3S +P-ASM +CONJ +V-2AAI-3S +N-NSM +PREP +T-APM +V-2ADP-APM +PREP +P-ASM +N-APM +CONJ +N-APM +T-GSN +N-GSN +CONJ +A-APM-C +ADV +PREP +N-ASM +V-2AAI-2P +PREP +N-GPF +CONJ +N-GPN +PREP +N-ASF +V-PAP-GSM +P-1GS +PREP +P-2GP +PREP +T-DSN +N-DSN +PRT-N +V-AAI-2P +T-APF +N-APF +PREP +P-1AS +CONJ +D-NSF +V-PAI-3S +P-2GP +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GSN +N-GSN +CONJ +V-2AAP-NPM +P-ASM +V-2AAI-3P +CONJ +V-2AAI-3P +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-IAI-3S +ADV +CONJ +V-AAP-GPM +N-ASN +PREP +A-DSN +T-GSF +N-GSF +CONJ +V-AAP-GPM +V-INI-3S +T-NSM +N-NSM +A-NSM +P-GPM +CONJ +N-NSF +X-NSF +V-2AAP-NSF +P-ASM +V-PNP-ASM +PREP +T-ASN +N-ASN +CONJ +V-AAP-NSF +P-DSM +V-2AAI-3S +CONJ +D-NSM +PREP +P-DSM +V-IAI-3S +CONJ +T-NSM +V-ADI-3S +V-PAP-NSM +PRT-N +V-RAI-1S +P-ASM +N-VSF +CONJ +PREP +A-ASN +A-NSM +V-2AAP-NSM +P-ASM +V-IAI-3S +CONJ +P-2NS +PREP +P-GPM +V-PAI-2S +CONJ +T-NSM +N-NSM +V-IAI-3S +N-VSM +PRT-N +V-PAI-1S +CONJ +V-2AAP-GSF +ADV +N-GSF +A-GSF +A-NSM +X-NSM +V-INI-3S +V-PAP-NSM +PREP +N-GSF +CONJ +D-NSM +PREP +P-GSM +V-IAI-3S +CONJ +CONJ +N-NSM +V-PAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +N-VSM +PRT-N +V-RAI-1S +R-ASN +V-PAI-2S +CONJ +ADV +ADV +V-PAP-GSM +P-GSM +V-AAI-3S +N-NSM +CONJ +V-2APP-NSM +T-NSM +N-NSM +V-AAI-3S +T-DSM +N-DSM +CONJ +V-API-3S +T-NSM +N-NSM +T-GSN +N-GSM +T-GSM +N-GSM +ADV +V-2AAI-3S +P-DSM +CONJ +ADV +N-ASM +V-AAN +ADV +V-FDI-2S +P-1AS +ADV +CONJ +V-2AAP-NSM +ADV +V-AAI-3S +ADV +CONJ +T-NPM +N-NPM +T-NPM +V-PAP-NPM +P-ASM +V-IAI-3P +P-DSM +V-PAP-NPM +CONJ +V-AAP-NPM +P-ASM +V-IAI-3P +V-PAP-NPM +V-AAM-2S +I-NSM +V-PAI-3S +T-NSM +V-AAP-NSM +P-2AS +CONJ +A-APN +A-APN +V-IAI-3P +V-PAP-NPM +PREP +P-ASM +CONJ +ADV +V-2ADI-3S +N-NSF +V-API-3S +T-NSN +N-NSN +T-GSM +N-GSM +PRT +N-NPM +CONJ +N-NPM +CONJ +V-2AAI-3P +P-ASM +PREP +T-ASN +N-ASN +P-GPM +V-PAP-NPM +COND +P-2NS +V-PAI-2S +T-NSM +N-NSM +V-2AAM-2S +P-1DP +CONJ +V-2AAI-3S +P-DPM +COND +P-2DP +V-2AAS-1S +PRT-N +PRT-N +V-AAS-2P +CONJ +COND +V-AAS-1S +PRT-N +PRT-N +V-AOS-2P +CONJ +PREP +T-GSM +ADV +V-FDI-3S +V-PNP-NSM +T-NSM +N-NSM +T-GSM +N-GSM +PREP +A-GPN +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-2AAI-3P +A-NPM +CONJ +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +T-NSM +PREP +P-APM +V-IAI-3S +P-2NP +V-PAI-2P +CONJ +P-1NS +V-PAI-1S +CONJ +T-NPM +V-2AAI-3P +I-ASN +ADV +V-PAI-1P +N-GSF +N-ASF +CONJ +P-NPM +V-AAI-1P +PREP +T-GSN +N-GSN +P-GSM +CONJ +V-2AAP-NSN +A-NSN +T-NSN +N-NSN +P-GPM +V-2AAI-3P +P-ASM +PREP +T-ASM +N-ASM +CONJ +V-ADI-3P +V-PAN +P-GSM +V-PAP-NPM +V-2AAI-1P +D-ASM +V-PAP-ASM +T-ASN +N-ASN +P-1GP +CONJ +V-PAP-ASM +N-APM +N-DSM +V-PAN +CONJ +V-PAP-ASM +F-3ASM +N-ASM +N-ASM +V-PAN +CONJ +T-NSM +N-NSM +V-AAI-3S +P-ASM +V-PAP-NSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +T-NSM +V-AOP-NSM +P-DSM +V-IAI-3S +P-2NS +V-PAI-2S +CONJ +T-NSM +N-NSM +V-2AAI-3S +PREP +T-APM +N-APM +CONJ +T-APM +N-APM +A-ASN-N +V-PAI-1S +A-ASN +PREP +T-DSM +N-DSM +D-DSM +CONJ +T-NPM +V-IAI-3P +V-PAP-NPM +CONJ +V-PAI-3S +T-ASM +N-ASM +V-PAP-NSM +PREP +A-GSF +T-GSF +N-GSF +CONJ +V-AMP-NSM +PREP +T-GSF +N-GSF +ADV +ADV +CONJ +N-NSM +V-AAP-NSM +V-AAI-3S +COND +T-NSM +N-NSM +N-NSM +V-PAI-3S +CONJ +V-2AAP-NSM +CONJ +PREP +T-GSF +N-GSF +N-GSM +V-PAI-3S +V-AAI-3S +P-ASM +PREP +N-ASM +V-PAP-ASM +CONJ +P-ASM +PREP +N-DPN +PREP +D-DPF +T-DPF +N-DPF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-ASM +N-ASM +V-2AOI-3S +ADV +CONJ +V-IAI-3S +V-PAP-NSM +PREP +A-GPM +N-GPM +V-2AAN +P-ASM +PREP +T-ASN +V-PAN +PREP +P-GSM +CONJ +V-IAI-3S +V-2AAN +X-ASN +N-ASN +PREP +P-GSM +V-PNP-ASN +CONJ +V-IAI-3S +P-ASM +PREP +N-DPM +A-DPM +CONJ +P-NSM +A-ASN-N +V-ADI-3S +P-DSM +CONJ +V-LAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +ADV +V-PAP-NPM +P-GSM +CONJ +T-NSM +N-NSM +V-AAP-NSM +P-ASM +PREP +T-DPN +N-DPN +P-GSM +CONJ +V-AAP-NSM +V-2AAP-NSM +N-ASF +A-ASF +V-AAI-3S +P-ASM +T-DSM +N-DSM +CONJ +V-2ADI-3P +A-NPM +PRT +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +PREP +P-DSF +T-DSF +N-DSF +PREP +C-GPM +CONJ +V-IAI-3P +PREP +N-DSF +V-PAP-NPM +PREP +F-3APM +CONJ +N-NSM +V-AMP-NSM +T-APM +N-APM +CONJ +T-APM +N-APM +CONJ +T-ASM +N-ASM +V-2AAI-3S +PREP +P-APM +V-AAI-2P +P-1DS +T-ASM +N-ASM +D-ASM +ADV +V-PAP-ASM +T-ASM +N-ASM +CONJ +V-2AMM-2S +P-1NS +PREP +P-2GP +V-AAP-NSM +A-ASN-N +V-2AAI-1S +PREP +T-DSM +N-DSM +D-DSM +A-ASN +R-GPN +V-PAI-2P +PREP +P-GSM +CONJ +CONJ-N +N-NSM +CONJ +V-AAI-3S +P-ASM +PREP +P-1AP +CONJ +V-2AMM-2S +A-NSN-N +A-NSN +N-GSM +V-PAI-3S +V-RPP-NSN +P-DSM +CONJ +V-AAP-NSM +P-ASM +V-FAI-1S +CONJ +V-2AAI-3P +ADV +V-PAP-NPM +V-PAM-2S +D-ASM +CONJ +V-AAM-2S +P-1DP +T-ASM +N-ASM +R-NSM +V-IAI-3S +V-APP-NSM +PREP +N-ASF +X-ASF +V-2ADP-ASF +PREP +T-DSF +N-DSF +CONJ +N-ASM +PREP +T-DSF +N-DSF +CONJ +ADV +T-NSM +N-NSM +V-AAI-3S +P-DPM +V-PAP-NSM +V-AAN +T-ASM +N-ASM +CONJ +T-NPM +V-IAI-3P +V-PAP-NPM +V-PAM-2S +V-PAM-2S +P-ASM +CONJ +T-NSM +A-ASN +V-2AAI-3S +PREP +P-APM +CONJ +I-ASN +A-ASN +V-AAI-3S +D-NSM +A-ASN-N +A-ASN +N-GSM +V-2AAI-1S +PREP +P-DSM +CONJ +V-AAP-NSM +P-ASM +V-FAI-1S +CONJ +T-NPM +V-INI-3P +N-DPF +A-DPF +V-PMP-NPM +P-ASM +V-APN +CONJ +V-IAI-3P +T-NPF +N-NPF +P-GPM +CONJ +N-NSM +V-AAI-3S +V-2ADN +T-ASN +N-ASN +P-GPM +CONJ +V-AAI-3S +T-ASM +PREP +N-ASF +CONJ +N-ASM +V-RPP-ASM +PREP +N-ASF +R-ASM +V-IMI-3P +CONJ +T-ASM +N-ASM +V-AAI-3S +T-DSN +N-DSN +P-GPM +CONJ +ADV +V-2AAI-3P +P-ASM +V-2ADP-NPM +N-ASM +X-ASM +N-ASM +V-PNP-ASM +PREP +N-GSM +V-AAI-3P +P-DSM +T-ASM +N-ASM +V-PAN +ADV +T-GSM +N-GSM +CONJ +V-IAI-3S +P-DSM +A-NSN +N-NSN +T-GSM +N-GSM +CONJ +N-GPF +R-NPF +V-IMI-3P +CONJ +V-IAI-3P +P-ASM +CONJ +V-2APP-NSM +PREP +P-APF +N-NSM +V-2AAI-3S +N-VPF +N-PRI +PRT-N +V-PAM-2P +PREP +P-1AS +ADV +PREP +F-2APF +V-PAM-2P +CONJ +PREP +T-APN +N-APN +P-2GP +CONJ +V-2AMM-2S +V-PNI-3P +N-NPF +PREP +R-DPF +V-FAI-3P +A-NPF +T-NPF +N-NPF +CONJ +T-NPF +N-NPF +R-NPF +PRT-N +V-AAI-3P +CONJ +N-NPM +R-NPM +PRT-N +V-AAI-3P +ADV +V-FMI-3P +V-PAN +T-DPN +N-DPN +V-2AAM-2P +PREP +P-1AP +CONJ +T-DPM +N-DPM +V-AAM-2P +P-1AP +CONJ +COND +PREP +A-DSN +N-DSN +D-APN +V-PAI-3P +PREP +T-DSN +A-DSN +I-NSN +V-2ADS-3S +CONJ +V-IPI-3P +CONJ +A-NPM +A-NPM +A-NUI +PREP +P-DSM +V-APN +CONJ +ADV +V-2AAI-3P +PREP +T-ASM +N-ASM +T-ASM +V-PPP-ASM +N-ASN +ADV +V-AAI-3P +P-ASM +CONJ +T-APM +A-APM +PRT +R-ASM +PREP +A-GPN +CONJ +R-ASM +PREP +A-GPN +CONJ +T-NSM +N-NSM +V-IAI-3S +N-VSM +V-2AAM-2S +P-DPM +CONJ +PRT-N +V-RAI-3P +I-ASN +V-PAI-3P +CONJ +V-PMP-NPM +T-APN +N-APN +P-GSM +V-2AAI-3P +N-APM +CONJ +V-LAI-3S +T-NSM +N-NSM +V-PAP-NSM +CONJ +V-IAI-3P +CONJ +T-NPM +N-NPM +V-PAP-NPM +A-APM +V-AAI-3S +V-AAM-3S +F-3ASM +COND +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-NSM +A-NSM +CONJ +V-AAI-3P +P-DSM +CONJ +T-NPM +N-NPM +V-PNP-NPM +N-ASN +V-PAP-NPM +P-DSM +CONJ +V-PAP-NPM +COND +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GPM +A-GPM +V-AAM-2S +F-2ASM +CONJ +V-IAI-3S +CONJ +N-NSF +PREP +P-DSM +T-NSM +N-NSM +T-GPM +A-GPM +D-NSM +CONJ +A-NSM +T-GPM +V-APP-GPM +A-GPM +V-IAI-3S +P-ASM +PRT-I +P-2NS +V-PAI-2S +T-NSM +N-NSM +V-AAM-2S +F-2ASM +CONJ +P-1AP +CONJ +V-AOP-NSM +T-NSM +A-NSM +V-PAP-NSM +P-DSM +V-IAI-3S +CONJ-N +V-PNI-2S +P-2NS +T-ASM +N-ASM +CONJ +PREP +T-DSN +P-DSN +N-DSN +V-PAI-2S +CONJ +PRT +P-1NP +ADV +CONJ +A-APN +R-GPN +V-AAI-1P +V-PAI-1P +CONJ +D-NSM +A-ASN-N +A-ASN +V-AAI-3S +CONJ +V-IAI-3S +N-VSM +V-APM-2S +P-1GS +CONJ +V-2AAS-2S +PREP +T-ASF +N-ASF +P-2GS +CONJ +V-2AAI-3S +P-DSM +HEB +P-2DS +V-PAI-1S +ADV +PREP +P-1GS +V-FDI-2S +PREP +T-DSM +N-DSM +CONJ +V-IAI-3S +ADV +ADV +N-NSF +A-NSF +CONJ +N-NSN +V-2ADI-3S +PREP +A-ASF +T-ASF +N-ASF +ADV +N-GSF +A-GSF +T-GSM +N-GSM +V-PAP-GSM +CONJ +V-API-3S +T-NSN +N-NSN +T-GSM +N-GSM +A-ASN +CONJ +V-AAP-NSM +N-DSF +A-DSF +T-NSM +N-NSM +V-2AAI-3S +N-VSM +PREP +N-APF +P-2GS +V-PMI-1S +T-ASN +N-ASN +P-1GS +CONJ +D-ASN +V-2AAP-NSM +V-AAI-3S +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-ASN +V-2ADP-ASN +V-IAI-3S +T-ASM +N-ASM +V-PAP-NSM +ADV +T-NSM +N-NSM +D-NSM +A-NSM +V-IAI-3S +CONJ +A-NPM +T-NPM +V-2ADP-NPM +PREP +T-ASF +N-ASF +D-ASF +N-NPM +V-AAP-NPM +T-APN +V-2ADP-APN +V-PAP-NPM +T-APN +N-APN +V-IAI-3P +CONJ +V-LAI-3P +PREP +ADV +A-NPM +T-NPM +A-NPM +P-DSM +CONJ +N-NPF +T-NPF +V-PAP-NPF +P-DSM +PREP +T-GSF +N-GSF +V-PAP-NPF +D-APN +CONJ +V-2AMM-2S +N-NSM +N-DSN +N-PRI +V-PAP-NSM +N-NSM +N-NSM +A-NSM +CONJ +A-NSM +D-NSM +PRT-N +V-IAI-3S +V-RNP-NSM +T-DSF +N-DSF +CONJ +T-DSF +N-DSF +P-GPM +PREP +N-GSF +N-GSF +T-GPM +A-GPM +R-NSM +V-INI-3S +T-ASF +N-ASF +T-GSM +N-GSM +D-NSM +V-2AAP-NSM +T-DSM +N-DSM +V-AMI-3S +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +V-2AAP-NSM +V-AAI-3S +P-ASN +N-DSF +CONJ +V-AAI-3S +P-ASM +PREP +N-DSN +A-DSN +ADV +PRT-N +V-IAI-3S +V-PNP-NSM +A-NSM-N +ADV-N +CONJ +N-NSF +N-GSF +V-IAI-3S +CONJ +N-NSN +V-IAI-3S +CONJ +V-AAP-NPF +T-NPF +N-NPF +R-NPF +V-IAI-3P +V-2RAP-NPF +PREP +T-GSF +N-GSF +P-DSM +V-ADI-3P +T-ASN +N-ASN +CONJ +ADV +V-API-3S +T-NSN +N-NSN +P-GSM +CONJ +V-AAP-NPF +V-AAI-3P +N-APN +CONJ +N-APN +CONJ +PRT +T-ASN +N-ASN +V-AAI-3P +PREP +T-ASF +N-ASF +CONJ +T-DSF +A-DSF +T-GPN +N-GPN +N-GSM +A-GSM +PREP +T-ASN +N-ASN +V-2AAI-3P +V-PAP-NPF +R-APN +V-AAI-3P +N-APN +CONJ +V-2AAI-3P +T-ASM +N-ASM +V-RPP-ASM +PREP +T-GSN +N-GSN +CONJ +V-2AAP-NPF +PRT-N +V-2AAI-3P +T-ASN +N-ASN +T-GSM +N-GSM +N-GSM +CONJ +V-2ADI-3S +PREP +T-DSN +V-PMN +P-APF +PREP +D-GSN +CONJ +V-2AMM-2S +N-NPM +A-NUI +V-2AAI-3P +P-DPF +PREP +N-DSF +V-PAP-DSF +CONJ +A-GPF +V-2ADP-GPF +P-GPF +CONJ +V-PAP-GPF +T-APN +N-APN +PREP +T-ASF +N-ASF +V-2AAI-3P +PREP +P-APF +I-ASN +V-PAI-2P +T-ASM +V-PAP-ASM +PREP +T-GPM +A-GPM +PRT-N +V-PAI-3S +ADV +CONJ +V-API-3S +V-APM-2P +ADV +V-AAI-3S +P-2DP +ADV +V-PAP-NSM +PREP +T-DSF +N-DSF +V-PAP-NSM +CONJ +V-PAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +V-APN +PREP +N-APF +N-GPM +A-GPM +CONJ +V-APN +CONJ +T-DSF +A-DSF +N-DSF +V-2AAN +CONJ +V-API-3P +T-GPN +N-GPN +P-GSM +CONJ +V-AAP-NPF +PREP +T-GSN +N-GSN +V-AAI-3P +D-APN +A-APN +T-DPM +A-NUI +CONJ +A-DPM +T-DPM +A-DPM +CONJ +V-IAI-3P +T-NSF +N-NSF +N-NSF +CONJ +N-NSF +CONJ +N-NSF +T-NSF +N-GSM +CONJ +T-NPF +A-NPF +PREP +P-DPF +V-IAI-3P +PREP +T-APM +N-APM +D-APN +CONJ +V-2API-3P +PREP +P-GPM +ADV +N-NSM +T-NPN +N-NPN +D-NPN +CONJ +V-IAI-3P +P-DPF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +V-2AAI-3S +PREP +T-ASN +N-ASN +CONJ +V-AAP-NSM +V-PAI-3S +T-APN +N-APN +A-APN +CONJ +V-2AAI-3S +PREP +F-3ASM +V-PAP-NSM +T-ASN +V-2RAP-ASN +CONJ +V-2AMM-2S +A-NUI +PREP +P-GPM +PREP +P-DSF +T-DSF +N-DSF +V-IAI-3P +V-PNP-NPM +PREP +N-ASF +V-PAP-ASF +N-APM +A-NUI +PREP +N-PRI +R-DSF +N-NSN +N-PRI +CONJ +P-NPM +V-IAI-3P +PREP +C-APM +PREP +A-GPN +T-GPN +V-RAP-GPN +D-GPN +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-APM +CONJ +V-PAN +CONJ +P-NSM +N-NSM +V-AAP-NSM +V-INI-3S +P-DPM +CONJ +T-NPM +N-NPM +P-GPM +V-IPI-3P +T-GSN +PRT-N +V-2AAN +P-ASM +CONJ +V-2AAI-3S +PREP +P-APM +I-NPM +T-NPM +N-NPM +D-NPM +R-APM +V-PAI-2P +PREP +C-APM +V-PAP-NPM +CONJ +V-API-3P +A-NPM +CONJ +V-AOP-NSM +A-NSM +N-DSN +N-NSM +V-2AAI-3S +PREP +P-ASM +P-2NS +A-NSM +V-PAI-2S +N-PRI +CONJ +PRT-N +V-2AAI-2S +T-APN +V-2ADP-APN +PREP +P-DSF +PREP +T-DPF +N-DPF +D-DPF +CONJ +V-2AAI-3S +P-DPM +I-APN +CONJ +T-NPM +V-2AAI-3P +P-DSM +T-APN +PREP +N-GSM +T-GSM +A-GSM +R-NSM +V-2ADI-3S +N-NSM +N-NSM +A-NSM +PREP +N-DSN +CONJ +N-DSM +PREP +T-GSM +N-GSM +CONJ +A-GSM +T-GSM +N-GSM +PRT +ADV +V-AAI-3P +P-ASM +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +P-1GP +PREP +N-ASN +N-GSM +CONJ +V-AAI-3P +P-ASM +CONJ +P-1NP +V-IAI-1P +CONJ +P-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +V-PMN +T-ASM +N-PRI +CONJ +PRT +CONJ +PREP +A-DPN +D-DPN +A-ASF +D-ASF +N-ASF +V-PAI-3S +PREP +R-GSM +D-NPN +V-2ADI-3S +CONJ +CONJ +N-NPF +X-NPF +PREP +P-1GP +V-2AAI-3P +P-1AP +V-2ADP-NPF +A-NPF +PREP +T-ASN +N-ASN +CONJ +PRT-N +V-2AAP-NPF +T-ASN +N-ASN +P-GSM +V-2AAI-3P +V-PAP-NPF +CONJ +N-ASF +N-GPM +V-RAN-ATT +R-NPM +V-PAI-3P +P-ASM +V-PAN +CONJ +V-2AAI-3P +X-NPM +T-GPM +PREP +P-1DP +PREP +T-ASN +N-ASN +CONJ +V-2AAI-3P +ADV +ADV +CONJ +T-NPF +N-NPF +V-2AAI-3P +CONJ +P-ASM +PRT-N +V-2AAI-3P +CONJ +P-NSM +V-2AAI-3S +PREP +P-APM +INJ +A-VPM +CONJ +A-NPM +T-DSF +N-DSF +T-GSN +V-PAN +PREP +A-DPN +R-DPN +V-AAI-3P +T-NPM +N-NPM +PRT-I +V-IAI-3S +D-APN +V-2AAN +T-ASM +N-ASM +CONJ +V-2AAN +PREP +T-ASF +N-ASF +P-GSM +CONJ +V-AMP-NSM +PREP +N-GSM +CONJ +PREP +A-GPM +T-GPM +N-GPM +V-AAI-3S +P-DPM +PREP +A-DPF +T-DPF +N-DPF +T-APN +PREP +F-3GSM +CONJ +V-AAI-3P +PREP +T-ASF +N-ASF +ADV +V-INI-3P +CONJ +P-NSM +V-AMI-3S +ADV-C +V-PNN +CONJ +V-ADI-3P +P-ASM +V-PAP-NPM +V-AAM-2S +PREP +P-1GP +CONJ +PREP +N-ASF +V-PAI-3S +CONJ +V-RAI-3S +ADV +T-NSF +N-NSF +CONJ +V-2AAI-3S +T-GSN +V-AAN +PREP +P-DPM +CONJ +V-2ADI-3S +PREP +T-DSN +V-APN +P-ASM +PREP +P-GPM +V-2AAP-NSM +T-ASM +N-ASM +V-AAI-3S +CONJ +V-AAP-NSM +V-IAI-3S +P-DPM +CONJ +P-GPM +T-NPM +N-NPM +V-API-3P +CONJ +V-2AAI-3P +P-ASM +CONJ +P-NSM +A-NSM +V-2ADI-3S +PREP +P-GPM +CONJ +V-2AAI-3P +PREP +C-APM +PRT-I +T-NSF +N-NSF +P-1GP +V-PPP-NSF +V-IAI-3S +PREP +P-1DP +ADV +V-IAI-3S +P-1DP +PREP +T-DSF +N-DSF +ADV +V-IAI-3S +P-1DP +T-APF +N-APF +CONJ +V-2AAP-NPM +P-DSF +T-DSF +N-DSF +V-AAI-3P +PREP +N-PRI +CONJ +V-2AAI-3P +V-RPP-APM +T-APM +A-NUI +CONJ +T-APM +PREP +P-DPM +V-PAP-APM +CONJ +ADV +V-API-3S +T-NSM +N-NSM +CONJ +V-API-3S +N-DSM +CONJ +P-NPM +V-INI-3P +T-APN +PREP +T-DSF +N-DSF +CONJ +ADV +V-2API-3S +P-DPM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +D-APN +P-GPM +V-PAP-GPM +P-NSM +V-2AAI-3S +PREP +A-DSN +P-GPM +CONJ +V-PAI-3S +P-DPM +N-NSF +P-2DP +CONJ +V-APP-NPM +CONJ +A-NPM +V-2ADP-NPM +V-IAI-3P +N-ASN +V-PAN +CONJ +V-2AAI-3S +P-DPM +I-NSN +V-RPP-NPM +V-PAI-2P +CONJ +PREP +I-ASN +N-NPM +V-PAI-3P +PREP +T-DSF +N-DSF +P-2GP +V-2AAM-2P +T-APF +N-APF +P-1GS +CONJ +T-APM +N-APM +P-1GS +CONJ +P-1NS +V-PAI-1S +P-NSM +V-AAM-2P +P-1AS +CONJ +V-2AAM-2P +CONJ +N-NSN +N-ASF +CONJ +N-APN +PRT-N +V-PAI-3S +ADV +P-1AS +V-PAP-ASM +V-PAI-2P +CONJ +D-ASN +V-2AAP-NSM +V-AAI-3S +P-DPM +T-APF +N-APF +CONJ +T-APM +N-APM +CONJ +ADV +V-PAP-GPM +P-GPM +PREP +T-GSF +N-GSF +CONJ +V-PAP-GPM +V-2AAI-3S +P-DPM +V-PAI-2P +X-ASN +A-ASN +ADV +CONJ +T-NPM +V-AAI-3P +P-DSM +N-GSM +A-GSM +N-ASN +CONJ +V-2AAP-NSM +PREP +P-GPM +V-2AAI-3S +CONJ +V-2AAI-3S +PREP +P-APM +D-NPM +T-NPM +N-NPM +P-1GS +R-APM +V-AAI-1S +PREP +P-2AP +ADV +V-PAP-NSM +PREP +P-2DP +CONJ +V-PAI-3S +V-APN +A-APN +T-APN +V-RPP-APN +PREP +T-DSM +N-DSM +N-GSM +CONJ +T-DPM +N-DPM +CONJ +N-DPM +PREP +P-1GS +ADV +V-AAI-3S +P-GPM +T-ASM +N-ASM +T-GSN +V-PAN +T-APF +N-APF +CONJ +V-2AAI-3S +P-DPM +CONJ +ADV +V-RPI-3S +V-2AAN +T-ASM +N-ASM +CONJ +V-2AAN +PREP +A-GPM +T-DSF +A-DSF +N-DSF +CONJ +V-APN +PREP +T-DSN +N-DSN +P-GSM +N-ASF +PREP +N-ASF +N-GPF +PREP +A-APN +T-APN +N-APN +V-AMP-NPM +PREP +N-PRI +P-2NP +N-NPM +D-GPN +CONJ +V-2AMM-2S +P-1NS +V-PAI-1S +T-ASF +N-ASF +T-GSM +N-GSM +P-1GS +PREP +P-2AP +CONJ +P-2NP +V-AAM-2P +PREP +T-DSF +N-DSF +ADV +R-GSM +V-AMS-2P +PREP +N-GSN +N-ASF +CONJ +V-2AAI-3S +P-APM +ADV +PREP +N-ASF +CONJ +V-AAP-NSM +T-APF +N-APF +P-GSM +V-AAI-3S +P-APM +CONJ +V-2ADI-3S +PREP +T-DSN +V-PAN +P-ASM +P-APM +V-2AAI-3S +PREP +P-GPM +CONJ +V-IPI-3S +PREP +T-ASM +N-ASM +CONJ +P-NPM +V-AAP-NPM +P-ASM +V-AAI-3P +PREP +N-PRI +PREP +N-GSF +A-GSF +CONJ +V-IAI-3P +V-PAP-NPM +PREP +A-GSN +PREP +T-DSN +N-DSN +T-ASM +N-ASM +PREP +N-DSF +V-IAI-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-IAI-3S +PREP +T-ASM +N-ASM +CONJ +N-NSM +V-IAI-3S +T-NSM +N-NSM +D-NSM +V-IAI-3S +PREP +N-DSF +PREP +T-ASM +N-ASM +A-NPN +PREP +P-GSM +V-2ADI-3S +CONJ +ADV +P-GSM +V-2ADI-3S +CONJ-N +A-NSN +R-NSN +V-2RAI-3S +PREP +P-DSM +N-NSF +V-IAI-3S +CONJ +T-NSF +N-NSF +V-IAI-3S +T-NSN +N-NSN +T-GPM +N-GPM +CONJ +T-NSN +N-NSN +PREP +T-DSF +N-DSF +V-PAI-3S +CONJ +T-NSF +N-NSF +P-ASN +PRT-N +V-2AAI-3S +V-2ADI-3S +N-NSM +V-RPP-NSM +PREP +N-GSM +N-NSN +P-DSM +N-NSM +D-NSM +V-2AAI-3S +PREP +N-ASF +CONJ +V-AAS-3S +PREP +T-GSN +N-GSN +CONJ +A-NPM +V-AAS-3P +PREP +P-GSM +PRT-N +V-IAI-3S +D-NSM +T-NSN +N-NSN +CONJ +CONJ +V-AAS-3S +PREP +T-GSN +N-GSN +T-NSN +N-NSN +T-NSN +A-NSN +R-NSN +V-PAI-3S +A-ASM +N-ASM +V-IAI-3S +V-PNP-ASM +PREP +T-ASM +N-ASM +PREP +T-DSM +N-DSM +V-IAI-3S +CONJ +T-NSM +N-NSM +PREP +P-GSM +V-2ADI-3S +CONJ +T-NSM +N-NSM +P-ASM +PRT-N +V-2AAI-3S +PREP +T-APN +A-APN +V-2AAI-3S +CONJ +T-NPM +A-NPM +P-ASM +PRT-N +V-2AAI-3P +CONJ +K-NPM +V-2AAI-3P +P-ASM +V-AAI-3S +N-ASF +N-NPN +N-GSM +V-2ADN +P-DPM +T-DPM +V-PAP-DPM +PREP +T-ASN +N-ASN +P-GSM +R-NPM +PRT-N +PREP +N-GPN +CONJ-N +PREP +N-GSN +N-GSF +CONJ-N +PREP +N-GSN +N-GSM +CONJ +PREP +N-GSM +V-API-3P +CONJ +T-NSM +N-NSM +N-NSF +V-2ADI-3S +CONJ +V-AAI-3S +PREP +P-1DP +CONJ +V-ADI-1P +T-ASF +N-ASF +P-GSM +N-ASF +ADV +A-GSM +PREP +N-GSM +A-NSM +N-GSF +CONJ +N-GSF +N-NSM +V-PAI-3S +PREP +P-GSM +CONJ +V-2RAI-3S +V-PAP-NSM +D-NSM +V-IAI-3S +R-ASM +V-2AAI-1S +T-NSM +ADV +P-1GS +V-PNP-NSM +PREP +P-1GS +V-2RAI-3S +CONJ +A-NSM-S +P-1GS +V-IAI-3S +CONJ +PREP +T-GSN +N-GSN +P-GSM +P-1NP +A-NPM +V-2AAI-1P +CONJ +N-ASF +PREP +N-GSF +CONJ +T-NSM +N-NSM +PREP +N-GSM +V-API-3S +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +PREP +N-GSM +N-GSM +V-2ADI-3S +N-ASM +A-NSM-N +V-RAI-3S-ATT +ADV +A-NSM +N-NSM +T-NSM +V-PAP-NSM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +D-NSM +V-ADI-3S +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +ADV +V-AAI-3P +PREP +P-ASM +T-NPM +A-NPM +PREP +N-GPN +N-APM +CONJ +N-APM +CONJ +V-AAS-3P +P-ASM +P-2NS +I-NSM +V-PAI-2S +CONJ +V-AAI-3S +CONJ +PRT-N +V-ADI-3S +CONJ +V-AAI-3S +CONJ +P-1NS +PRT-N +V-PAI-1S +T-NSM +N-NSM +CONJ +V-AAI-3P +P-ASM +CONJ +I-NSN +P-2NS +N-NSM +V-PAI-2S +CONJ +V-PAI-3S +PRT-N +V-PAI-1S +T-NSM +N-NSM +V-PAI-2S +P-2NS +CONJ +V-ADI-3S +PRT-N +CONJ +V-2AAI-3P +P-DSM +I-NSM +V-PAI-2S +CONJ +N-ASF +V-2AAS-1P +T-DPM +V-AAP-DPM +P-1AP +I-ASN +V-PAI-2S +PREP +F-2GSM +V-IAI-3S +P-1NS +N-NSF +V-PAP-GSM +PREP +T-DSF +A-DSF +V-AAM-2P +T-ASF +N-ASF +N-GSM +ADV +V-2AAI-3S +N-NSM +T-NSM +N-NSM +CONJ +V-RPP-NPM +V-IAI-3P +PREP +T-GPM +N-GPM +CONJ +V-AAI-3P +P-ASM +CONJ +V-2AAI-3P +P-DSM +CONJ +I-ASN +V-PAI-2S +COND +P-2NS +PRT-N +V-PAI-2S +T-NSM +N-NSM +CONJ-N +N-NSM +CONJ-N +T-NSM +N-NSM +V-ADI-3S +P-DPM +T-NSM +N-NSM +V-PAP-NSM +P-1NS +V-PAI-1S +PREP +N-DSN +A-NSM +P-2GP +V-PAI-3S +R-ASM +P-2NP +PRT-N +V-RAI-2P +T-NSM +ADV +P-1GS +V-PNP-NSM +R-GSM +PRT-N +V-PAI-1S +P-1NS +A-NSM +CONJ +V-AAS-1S +P-GSM +T-ASM +N-ASM +T-GSN +N-GSN +D-NPN +PREP +N-DSF +V-2ADI-3S +ADV +T-GSM +N-GSM +ADV +V-IAI-3S +V-PAP-NSM +T-NSM +N-NSM +T-DSF +ADV +V-PAI-3S +T-ASM +N-ASM +V-PNP-ASM +PREP +P-ASM +CONJ +V-PAI-3S +V-2AAM-2S +T-NSM +N-NSM +T-GSM +N-GSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +D-NSM +V-PAI-3S +PREP +R-GSM +P-1NS +V-2AAI-1S +ADV +P-1GS +V-PNI-3S +N-NSM +R-NSM +PREP +P-1GS +V-2RAI-3S +CONJ +A-NSM-S +P-1GS +V-IAI-3S +P-1NS-K +PRT-N +V-2LAI-1S +P-ASM +CONJ +CONJ +V-APS-3S +T-DSM +N-PRI +PREP +D-ASN +V-2AAI-1S +P-1NS +PREP +N-DSN +V-PAP-NSM +CONJ +V-AAI-3S +N-NSM +V-PAP-NSM +CONJ +V-RNI-1S +T-ASN +N-ASN +V-PAP-ASN +ADV +N-ASF +PREP +N-GSM +CONJ +V-AAI-3S +PREP +P-ASM +P-1NS-K +PRT-N +V-2LAI-1S +P-ASM +CONJ +T-NSM +V-AAP-NSM +P-1AS +V-PAN +PREP +N-DSN +D-NSM +P-1DS +V-2AAI-3S +PRT +PREP +R-ASM +V-2AAS-2S +T-ASN +N-ASN +V-PAP-ASN +CONJ +V-PAP-ASN +PREP +P-ASM +D-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +N-DSN +A-DSN +P-1NS-K +V-RAI-1S-ATT +CONJ +V-RAI-1S +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-DSF +ADV +ADV +V-LAI-3S +T-NSM +N-NSM +CONJ +PREP +T-GPM +N-GPM +P-GSM +A-NUI +CONJ +V-AAP-NSM +T-DSM +N-DSM +V-PAP-DSM +V-PAI-3S +V-2AAM-2S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-AAI-3P +T-NPM +A-NUI +N-NPM +P-GSM +V-PAP-GSM +CONJ +V-AAI-3P +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +V-2APP-NSM +CONJ +V-ADP-NSM +P-APM +V-PAP-APM +V-PAI-3S +P-DPM +I-ASN +V-PAI-2P +CONJ +T-NPM +V-2AAI-3P +P-DSM +HEB +R-NSN +V-PPI-3S +V-PPP-NSN +N-VSM +ADV-I +V-PAI-2S +V-PAI-3S +P-DPM +V-PNM-2P +CONJ +V-FDI-2P +CONJ +V-2AAI-3P +CONJ +V-2AAI-3P +ADV +V-PAI-3S +CONJ +PREP +P-DSM +V-AAI-3P +T-ASF +N-ASF +D-ASF +N-NSF +V-IAI-3S +ADV +A-NSF +V-IAI-3S +N-NSM +T-NSM +N-NSM +N-GSM +N-GSM +A-NSM +PREP +T-GPM +A-NUI +T-GPM +V-AAP-GPM +PREP +N-GSM +CONJ +V-AAP-GPM +P-DSM +V-PAI-3S +D-NSM +ADV-S +T-ASM +N-ASM +T-ASM +A-ASM +N-ASM +CONJ +V-PAI-3S +P-DSM +V-RAI-1P +T-ASM +N-ASM +R-NSN +V-PAI-3S +V-PPP-NSN +N-NSM +V-2AAI-3S +P-ASM +PREP +T-ASM +N-ASM +V-AAP-NSM +P-DSM +T-NSM +N-NSM +V-2AAI-3S +P-2NS +V-PAI-2S +N-NSM +T-NSM +N-NSM +N-GSM +P-2NS +V-FPI-2S +N-NSM +R-NSN +V-PPI-3S +N-NSM +T-DSF +ADV +V-AAI-3S +V-2AAN +PREP +T-ASF +N-ASF +CONJ +V-PAI-3S +N-ASM +CONJ +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-PAM-2S +P-1DS +CONJ +V-IAI-3S +T-NSM +N-NSM +PREP +N-PRI +PREP +T-GSF +N-GSF +N-GSM +CONJ +N-GSM +V-PAI-3S +N-NSM +T-ASM +N-PRI +CONJ +V-PAI-3S +P-DSM +R-ASM +V-AAI-3S +N-NSM +PREP +T-DSM +N-DSM +CONJ +T-NPM +N-NPM +V-RAI-1P +N-ASM +N-ASM +T-GSM +N-PRI +T-ASM +PREP +N-PRI +CONJ +V-2AAI-3S +P-DSM +N-PRI +PREP +N-PRI +V-PAN +V-PNI-3S +X-NSN +A-NSN +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-PNM-2S +CONJ +V-2AAM-2S +V-2AAI-3S +N-NSM +T-ASM +N-PRI +V-PNP-ASM +PREP +P-ASM +CONJ +V-PAI-3S +PREP +P-GSM +V-2AAM-2S +ADV +N-NSM +PREP +R-DSM +N-NSM +PRT-N +V-PAI-3S +V-PAI-3S +P-DSM +N-PRI +ADV-I +P-1AS +V-PAI-2S +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +PREP +T-GSM +P-2AS +N-ASM +V-AAN +V-PAP-ASM +PREP +T-ASF +N-ASF +P-2AS +V-2AAI-1S +V-ADI-3S +P-DSM +N-PRI +HEB +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GSM +N-GSM +P-2NS +N-NSM +T-GSM +N-PRI +V-PAI-2S +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +CONJ +V-2AAI-1S +P-2DS +CONJ +V-2AAI-1S +P-2AS +ADV +T-GSF +N-GSF +V-PAI-2S +A-APN-C +D-GPN +V-FDI-2S +CONJ +V-PAI-3S +P-DSM +HEB +HEB +V-PAI-1S +P-2DP +V-FDI-2P +T-ASM +N-ASM +V-2RAP-ASM +CONJ +T-APM +N-APM +T-GSM +N-GSM +V-PAP-APM +CONJ +V-PAP-APM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-DSF +N-DSF +T-DSF +A-DSF +N-NSM +V-2ADI-3S +PREP +N-PRI +T-GSF +N-GSF +CONJ +V-IAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +ADV +CONJ +V-API-3S +CONJ +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +P-GSM +PREP +T-ASM +N-ASM +CONJ +V-AAP-GSM +N-GSM +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +P-ASM +N-ASM +PRT-N +V-PAI-3P +CONJ +V-PAI-3S +P-DSF +T-NSM +N-NSM +I-NSN +P-1DS +CONJ +P-2DS +N-VSF +ADV-N +V-PAI-3S +T-NSF +N-NSF +P-1GS +V-PAI-3S +T-NSF +N-NSF +P-GSM +T-DPM +N-DPM +X-NSN +PRT +R-NSN +V-PAS-3S +P-2DP +V-AAM-2P +CONJ +V-IAI-3P +V-PNP-NPF +ADV +A-NPF +N-NPF +A-NUI +PREP +T-ASM +N-ASM +T-GPM +A-GPM +V-PAP-NPF +PREP +N-APM +A-NUI +PRT +A-APM +V-PAI-3S +P-DPM +T-NSM +N-NSM +V-AAM-2P +T-APF +N-APF +N-GSN +CONJ +V-AAI-3P +P-APF +ADV +ADV +CONJ +V-PAI-3S +P-DPM +V-AAM-2P +ADV +CONJ +V-PAM-2P +T-DSM +N-DSM +CONJ +T-NPM +V-AAI-3P +CONJ +ADV +V-ADI-3S +T-NSM +N-NSM +T-ASN +N-ASN +N-ASM +V-RPP-ASN +CONJ +PRT-N +V-2LAI-3S +ADV-I +V-PAI-3S +CONJ +V-2LAI-3P +T-NPM +N-NPM +T-NPM +V-RAP-NPM +T-ASN +N-ASN +V-PAI-3S +T-ASM +N-ASM +T-NSM +N-NSM +CONJ +V-PAI-3S +P-DSM +A-NSM +N-NSM +ADV-S +T-ASM +A-ASM +N-ASM +V-PAI-3S +CONJ +CONJ +V-APS-3P +T-ASM +A-ASM-C +P-2NS +V-RAI-2S +T-ASM +A-ASM +N-ASM +ADV +ADV +D-ASF +N-ASF +T-GPN +N-GPN +V-AAI-3S +T-NSM +N-NSM +PREP +N-PRI +T-GSF +N-GSF +CONJ +V-AAI-3S +T-ASF +N-ASF +P-GSM +CONJ +V-AAI-3P +PREP +P-ASM +T-NPM +N-NPM +P-GSM +PREP +D-ASN +V-2AAI-3S +PREP +N-PRI +P-NSM +CONJ +T-NSF +N-NSF +P-GSM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +P-GSM +CONJ +ADV +V-AAI-3P +PRT-N +A-APF +N-APF +CONJ +ADV +V-IAI-3S +T-NSN +ARAM +T-GPM +A-GPM +CONJ +V-2AAI-3S +PREP +N-APN +T-NSM +N-NSM +CONJ +V-2AAI-3S +PREP +T-DSN +N-DSN +T-APM +V-PAP-APM +N-APM +CONJ +N-APN +CONJ +N-APF +CONJ +T-APM +N-APM +V-PNP-APM +CONJ +V-AAP-NSM +N-ASN +PREP +N-GPN +A-APM +V-2AAI-3S +PREP +T-GSN +N-GSN +PRT +T-APN +N-APN +CONJ +T-APM +N-APM +CONJ +T-GPM +N-GPM +T-APN +N-APN +V-AAI-3S +CONJ +T-APF +N-APF +V-AAI-3S +CONJ +T-DPM +T-APF +N-APF +V-PAP-DPM +V-2AAI-3S +V-AAM-2P +D-APN +ADV +PRT-N +V-PAM-2P +T-ASM +N-ASM +T-GSM +N-GSM +P-1GS +N-ASM +N-GSN +V-API-3P +T-NPM +N-NPM +P-GSM +CONJ +V-RPP-NSN +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +P-2GS +V-FDI-3S +P-1AS +CONJ +V-ADI-3P +T-NPM +A-NPM +CONJ +V-2AAI-3P +P-DSM +I-ASN +N-ASN +V-PAI-2S +P-1DP +CONJ +D-APN +V-PAI-2S +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DPM +V-AAM-2P +T-ASM +N-ASM +D-ASM +CONJ +PREP +A-DPF +N-DPF +V-FAI-1S +P-ASM +CONJ +V-2AAI-3P +T-NPM +A-NPM +A-NUI +CONJ +A-NUI +N-DPN +V-API-3S +T-NSM +N-NSM +D-NSM +CONJ +P-2NS +PREP +A-DPF +N-DPF +V-FAI-2S +P-ASM +CONJ +D-NSM +V-IAI-3S +PREP +T-GSM +N-GSM +T-GSN +N-GSN +P-GSM +CONJ +ADV +V-API-3S +PREP +A-GPM +V-API-3P +T-NPM +N-NPM +P-GSM +CONJ +D-ASN +V-IAI-3S +CONJ +V-AAI-3P +T-DSF +N-DSF +CONJ +T-DSM +N-DSM +R-ASM +V-2AAI-3S +T-NSM +N-NSM +CONJ +ADV +V-IAI-3S +PREP +T-DPN +N-DPN +PREP +T-DSM +ARAM +PREP +T-DSF +N-DSF +A-NPM +V-AAI-3P +PREP +T-ASN +N-ASN +P-GSM +V-PAP-NPM +P-GSM +T-APN +N-APN +R-APN +V-IAI-3S +CONJ +P-NSM +N-NSM +PRT-N +V-IAI-3S +F-3ASM +P-DPM +PREP +T-ASN +P-ASM +V-PAN +A-APM +CONJ +CONJ +PRT-N +N-ASF +V-IAI-3S +CONJ +X-NSM +V-AAS-3S +PREP +T-GSM +N-GSM +CONJ +P-NSM +V-IAI-3S +I-NSN +V-IAI-3S +PREP +T-DSM +N-DSM +CONJ +V-IAI-3S +N-NSM +PREP +T-GPM +N-GPM +N-NSM +T-GPM +A-GPM +N-NSM +N-NSN +P-DSM +D-NSM +V-2AAI-3S +PREP +P-ASM +N-GSF +CONJ +V-2AAI-3S +P-DSM +HEB +V-RAI-1P +CONJ +PREP +N-GSM +V-2RAI-2S +N-NSM +CONJ +A-NSM-N +V-PNI-3S +D-APN +T-APN +N-APN +R-APN +P-2NS +V-PAI-2S +V-PAN +COND +PRT-N +V-PAS-3S +T-NSM +N-NSM +PREP +P-GSM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +HEB +HEB +V-PAI-1S +P-2DS +COND +PRT-N +X-NSM +V-APS-3S +ADV +PRT-N +V-PNI-3S +V-2AAN +T-ASF +N-ASF +T-GSM +N-GSM +V-PAI-3S +PREP +P-ASM +T-NSM +N-NSM +ADV-I +V-PNI-3S +N-NSM +V-APN +N-NSM +V-PAP-NSM +PRT-N +V-PNI-3S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +P-GSM +ADV +V-2AAN +CONJ +V-APN +V-ADI-3S +N-NSM +HEB +HEB +V-PAI-1S +P-2DS +COND +PRT-N +X-NSM +V-APS-3S +PREP +N-GSN +CONJ +N-GSN +PRT-N +V-PNI-3S +V-2AAN +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-NSN +V-RPP-NSN +PREP +T-GSF +N-GSF +N-NSF +V-PAI-3S +CONJ +T-NSN +V-RPP-NSN +PREP +T-GSN +N-GSN +N-NSN +V-PAI-3S +PRT-N +V-AAS-2S +CONJ +V-2AAI-1S +P-2DS +V-PAI-3S +P-2AP +V-APN +ADV +T-NSN +N-NSN +ADV +V-PAI-3S +V-PAI-3S +CONJ +T-ASF +N-ASF +P-GSN +V-PAI-2S +CONJ +PRT-N +V-RAI-2S +ADV-I +V-PNI-3S +CONJ +ADV-I +V-PAI-3S +ADV +V-PAI-3S +A-NSM +T-NSM +V-RPP-NSM +PREP +T-GSN +N-GSN +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +ADV-I +V-PNI-3S +D-NPN +V-2ADN +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GSM +N-PRI +CONJ +D-APN +PRT-N +V-PAI-2S +HEB +HEB +V-PAI-1S +P-2DS +CONJ +R-ASN +V-RAI-1P +V-PAI-1P +CONJ +R-ASN +V-RAI-1P-ATT +V-PAI-1P +CONJ +T-ASF +N-ASF +P-1GP +PRT-N +V-PAI-2P +COND +T-APN +A-APN +V-2AAI-1S +P-2DP +CONJ +PRT-N +V-PAI-2P +ADV-I +COND +V-2AAS-1S +P-2DP +T-APN +A-APN +V-FAI-2P +CONJ +A-NSM-N +V-RAI-3S +PREP +T-ASM +N-ASM +COND +PRT-N +T-NSM +PREP +T-GSM +N-GSM +V-2AAP-NSM +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +ADV +N-NSM +V-AAI-3S +T-ASM +N-ASM +PREP +T-DSF +A-DSF +ADV +V-PAI-3S +V-APN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +A-NSM +T-NSM +V-PAP-NSM +PREP +P-DSM +V-PAS-3S +N-ASF +A-ASF +CONJ +ADV +V-AAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +T-ASM +A-ASM +V-AAI-3S +CONJ +A-NSM +T-NSM +V-PAP-NSM +PREP +P-ASM +PRT-N +V-2AMS-3S +CONJ +V-PAS-3S +N-ASF +A-ASF +CONJ +PRT-N +V-AAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +PREP +T-ASM +N-ASM +CONJ +V-PAS-3S +T-ASM +N-ASM +CONJ +CONJ +V-APS-3S +T-NSM +N-NSM +PREP +P-GSM +T-NSM +V-PAP-NSM +PREP +P-ASM +PRT-N +V-PPI-3S +T-NSM +PRT-N +V-PAP-NSM +ADV +V-RPI-3S +CONJ +PRT-N +V-RAI-3S +PREP +T-ASN +N-ASN +T-GSM +A-GSM +N-GSM +T-GSM +N-GSM +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +V-2RAI-3S +PREP +T-ASM +N-ASM +CONJ +V-AAI-3P +T-NPM +N-NPM +ADV +T-ASN +N-ASN +PRT +T-ASN +N-ASN +CONJ +V-IAI-3S +A-NPN +P-GPM +T-NPN +N-NPN +CONJ +A-NSM +T-NSM +A-APN +V-PAP-NSM +V-PAI-3S +T-ASN +N-ASN +CONJ +PRT-N +V-PNI-3S +PREP +T-ASN +N-ASN +CONJ +PRT-N +V-APS-3S +T-NPN +N-NPN +P-GSM +CONJ +T-NSM +V-PAP-NSM +T-ASF +N-ASF +V-PNI-3S +PREP +T-ASN +N-ASN +CONJ +V-APS-3S +P-GSM +T-NPN +N-NPN +CONJ +PREP +N-DSM +V-PAI-3S +V-RPP-NPN +PREP +D-APN +V-2AAI-3S +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +P-GSM +PREP +T-ASF +A-ASF +N-ASF +CONJ +ADV +V-IAI-3S +PREP +P-GPM +CONJ +V-IAI-3S +CONJ +V-IAI-3S +V-PAP-NSM +CONJ +N-NSM +PREP +N-PRI +ADV +T-GSN +N-PRI +CONJ +N-NPN +A-NPN +V-IAI-3S +ADV +CONJ +V-IDI-3P +CONJ +V-IPI-3P +CONJ +ADV-N +V-IAI-3S +V-RPP-NSM +PREP +T-ASF +N-ASF +N-NSM +CONJ +V-2ADI-3S +N-NSF +PREP +T-GPM +N-GPM +N-GSM +PREP +A-GSM +PREP +N-GSM +CONJ +V-2AAI-3P +PREP +T-ASM +N-ASM +CONJ +V-2AAI-3P +P-DSM +HEB +R-NSM +V-IAI-3S +PREP +P-2GS +ADV +T-GSM +N-GSM +R-DSM +P-2NS +V-RAI-2S +V-2AAM-2S +D-NSM +V-PAI-3S +CONJ +A-NPM +V-PNI-3P +PREP +P-ASM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +PRT-N +V-PNI-3S +N-NSM +V-PAN +A-ASN-N +COND +PRT-N +V-PAS-3S +V-RPP-NSN +P-DSM +PREP +T-GSM +N-GSM +P-NPM +P-2NP +P-1DS +V-PAI-2P +CONJ +V-2AAI-1S +PRT-N +V-PAI-1S +P-1NS +T-NSM +N-NSM +CONJ +CONJ +V-RPP-NSM +V-PAI-1S +PREP +D-GSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +N-NSM +V-PAI-3S +CONJ +T-NSM +A-NSM +T-GSM +N-GSM +T-NSM +V-RAP-NSM +CONJ +V-PAP-NSM +P-GSM +N-DSF +V-PAI-3S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +D-NSF +T-NSF +N-NSF +T-NSF +S-1SNSF +V-RPI-3S +V-PAI-3S +D-ASM +V-PAN +CONJ +P-1AS +V-PPN +T-NSM +ADV +V-PNP-NSM +ADV +A-GPN +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +T-GSF +N-GSF +PREP +T-GSF +N-GSF +V-PAI-3S +CONJ +PREP +T-GSF +N-GSF +V-PAI-3S +T-NSM +PREP +T-GSM +N-GSM +V-PNP-NSM +ADV +A-GPN +V-PAI-3S +R-ASN +V-RAI-3S-ATT +CONJ +V-AAI-3S +D-ASN +V-PAI-3S +CONJ +T-ASF +N-ASF +P-GSM +A-NSM-N +V-PAI-3S +T-NSM +V-2AAP-NSM +P-GSM +T-ASF +N-ASF +V-AAI-3S +CONJ +T-NSM +N-NSM +A-NSM +V-PAI-3S +CONJ +R-ASM +V-AAI-3S +T-NSM +N-NSM +T-APN +N-APN +T-GSM +N-GSM +V-PAI-3S +CONJ +PRT-N +PREP +N-GSN +V-PAI-3S +T-ASN +N-ASN +T-NSM +N-NSM +V-PAI-3S +T-ASM +N-ASM +CONJ +A-APN +V-RAI-3S +PREP +T-DSF +N-DSF +P-GSM +T-NSM +V-PAP-NSM +PREP +T-ASM +N-ASM +V-PAI-3S +N-ASF +A-ASF +CONJ +T-NSM +V-PAP-NSM +T-DSM +N-DSM +PRT-N +V-FDI-3S +N-ASF +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-PAI-3S +PREP +P-ASM +CONJ +ADV +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +N-NSM +A-APM-C +N-APM +V-PAI-3S +CONJ +V-PAI-3S +PRT +N-NSM +CONJ +N-NSM +P-NSM +PRT-N +V-IAI-3S +CONJ +T-NPM +N-NPM +P-GSM +V-AAI-3S +T-ASF +N-ASF +CONJ +V-2AAI-3S +ADV +PREP +T-ASF +N-ASF +CONJ +V-IAI-3S +P-ASM +V-PNN +PREP +T-GSF +N-GSF +CONJ +V-PNI-3S +PREP +N-ASF +T-GSF +N-GSF +V-PPP-ASF +N-PRI +ADV +T-GSN +N-GSN +R-ASN +V-AAI-3S +N-PRI +N-PRI +T-DSM +N-DSM +P-GSM +CONJ +V-IAI-3S +ADV +N-NSF +T-GSM +N-PRI +CONJ +T-NSM +N-NSM +V-RAP-NSM +PREP +T-GSF +N-GSF +V-INI-3S +ADV +PREP +T-DSF +N-DSF +N-NSF +V-IAI-3S +ADV +A-NSF +V-PNI-3S +N-NSF +PREP +T-GSF +N-GSF +V-AAN +N-ASN +V-PAI-3S +P-DSF +T-NSM +N-NSM +V-2AAM-2S +P-1DS +V-2AAN +CONJ +T-NPM +N-NPM +P-GSM +V-2LAI-3P +PREP +T-ASF +N-ASF +CONJ +N-APF +V-AAS-3P +CONJ +V-PAI-3S +P-DSM +T-NSF +N-NSF +T-NSF +N-NSF +ADV-I +P-2NS +A-NSM +V-PAP-NSM +PREP +P-1GS +N-GSF +N-GSF +V-PAP-GSF +V-2AAN +V-PAI-2S +CONJ +PRT-N +V-PNI-3P +A-NPM +N-DPM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSF +COND +V-2LAI-2S +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +I-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +P-2DS +V-2AAM-2S +P-1DS +V-2AAN +PRT +P-2NS +V-AAI-2S +P-ASM +CONJ +PRT +V-AAI-3S +P-2DS +N-ASN +V-PAP-ASN +V-PAI-3S +P-DSM +N-VSM +CONJ-N +N-ASN +V-PAI-2S +CONJ +T-NSN +N-NSN +V-PAI-3S +A-NSN +CONJ +ADV-I +V-PAI-2S +T-ASN +N-ASN +T-ASN +V-PAP-ASN +PRT-N +P-2NS +A-NSM-C +V-PAI-2S +T-GSM +N-GSM +P-1GP +N-PRI +R-NSM +V-AAI-3S +P-1DP +T-ASN +N-ASN +CONJ +P-NSM +PREP +P-GSN +V-2AAI-3S +CONJ +T-NPM +N-NPM +P-GSM +CONJ +T-NPN +N-NPN +P-GSM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSF +A-NSM +T-NSM +V-PAP-NSM +PREP +T-GSN +N-GSN +D-GSN +V-FAI-3S +ADV +CONJ +PRT +R-NSM +V-2AAS-3S +PREP +T-GSN +N-GSN +R-GSN +P-1NS +V-FAI-1S +P-DSM +PRT-N +PRT-N +V-FAI-3S +PREP +T-ASM +N-ASM +CONJ +T-NSN +N-NSN +R-ASN +V-FAI-1S +P-DSM +V-FDI-3S +PREP +P-DSM +N-NSF +N-GSN +V-PNP-GSN +PREP +N-ASF +A-ASF +V-PAI-3S +PREP +P-ASM +T-NSF +N-NSF +N-VSM +V-2AAM-2S +P-1DS +D-ASN +T-ASN +N-ASN +CONJ +PRT-N +V-PAS-1S +CONJ-N +V-PNS-1S +ADV +V-PAN +V-PAI-3S +P-DSF +V-PAM-2S +V-AAM-2S +T-ASM +N-ASM +P-2GS +CONJ +V-2AAM-2S +ADV +V-ADI-3S +T-NSF +N-NSF +CONJ +V-2AAI-3S +PRT-N +V-PAI-1S +N-ASM +V-PAI-3S +P-DSF +T-NSM +N-NSM +ADV +V-2AAI-2S +CONJ +N-ASM +PRT-N +V-PAI-1S +CONJ +A-NUI +N-APM +V-2AAI-2S +CONJ +R-ASM +ADV +V-PAI-2S +PRT-N +V-PAI-3S +P-2GS +N-NSM +D-ASN +A-ASN +V-RAI-2S-ATT +V-PAI-3S +P-DSM +T-NSF +N-NSF +N-VSM +V-PAI-1S +CONJ +N-NSM +V-PAI-2S +P-2NS +T-NPM +N-NPM +P-1GP +PREP +T-DSN +N-DSN +D-DSN +V-AAI-3P +CONJ +P-2NP +V-PAI-2P +CONJ +PREP +N-DPN +V-PAI-3S +T-NSM +N-NSM +ADV +V-PAN +V-PAI-3S +V-PAI-3S +P-DSF +T-NSM +N-NSM +V-PAM-2S +P-1DS +N-VSF +CONJ +V-PNI-3S +N-NSF +ADV +CONJ-N +PREP +T-DSN +N-DSN +D-DSN +CONJ-N +PREP +N-DPN +V-FAI-2P +T-DSM +N-DSM +P-2NP +V-PAI-2P +R-ASN +PRT-N +V-RAI-2P +P-1NP +V-PAI-1P +R-ASN +V-RAI-1P +CONJ +T-NSF +N-NSF +PREP +T-GPM +A-GPM +V-PAI-3S +CONJ +V-PNI-3S +N-NSF +CONJ +ADV +V-PAI-3S +ADV +T-NPM +A-NPM +N-NPM +V-FAI-3P +T-DSM +N-DSM +PREP +N-DSN +CONJ +N-DSF +CONJ +CONJ +T-NSM +N-NSM +D-APM +V-PAI-3S +T-APM +V-PAP-APM +P-ASM +N-NSN +T-NSM +N-NSM +CONJ +T-APM +V-PAP-APM +PREP +N-DSN +CONJ +N-DSF +V-PAN +V-PAI-3S +V-PAI-3S +P-DSM +T-NSF +N-NSF +V-RAI-1S +CONJ +N-NSM +T-NSM +V-PPP-NSM +N-NSM +V-PNI-3S +CONJ +V-2AAS-3S +D-NSM +V-FAI-3S +P-1DP +A-APN +V-PAI-3S +P-DSF +T-NSM +N-NSM +P-1NS +T-NSM +V-PAP-NSM +P-2DS +V-PAI-1S +CONJ +PREP +D-DSM +V-2AAI-3P +T-NPM +N-NPM +P-GSM +CONJ +V-IAI-3P +CONJ +PREP +N-GSF +V-IAI-3S +CONJ +A-NSM-N +V-2AAI-3S +I-ASN +V-PAI-2S +PRT +I-ASN +V-PAI-2S +PREP +P-GSF +CONJ +V-AAI-3S +T-ASF +N-ASF +P-GSF +T-NSF +N-NSF +CONJ +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-PAI-3S +T-DPM +N-DPM +V-PAM-2P +V-2AAM-2P +N-ASM +R-NSM +V-2AAI-3S +P-1DS +A-APN +R-APN +V-AAI-1S +PRT-I +D-NSM +V-PAI-3S +T-NSM +N-NSM +V-2AAI-3P +PREP +T-GSF +N-GSF +CONJ +V-INI-3P +PREP +P-ASM +PREP +T-DSM +ADV +V-IAI-3P +P-ASM +T-NPM +N-NPM +V-PAP-NPM +HEB +V-2AAM-2S +CONJ +T-NSM +V-2AAI-3S +P-DPM +P-1NS +N-ASF +V-PAI-1S +V-2AAN +R-ASF +P-2NP +PRT-N +V-RAI-2P +CONJ +V-IAI-3P +T-NPM +N-NPM +PREP +C-APM +PRT-N +X-NSM +V-AAI-3S +P-DSM +V-2AAN +V-PAI-3S +P-DPM +T-NSM +N-NSM +S-1SNSN +N-NSN +V-PAI-3S +CONJ +V-PAS-1S +T-ASN +N-ASN +T-GSM +V-AAP-GSM +P-1AS +CONJ +V-AAS-1S +P-GSM +T-ASN +N-ASN +PRT-N +P-2NP +V-PAI-2P +CONJ +ADV +A-NSM +V-PAI-3S +CONJ +T-NSM +N-NSM +V-PNI-3S +V-2AMM-2S +V-PAI-1S +P-2DP +V-AAM-2P +T-APM +N-APM +P-2GP +CONJ +V-ADM-2P +T-APF +N-APF +CONJ +A-NPF +V-PAI-3P +PREP +N-ASM +ADV +T-NSM +V-PAP-NSM +N-ASM +V-PAI-3S +CONJ +V-PAI-3S +N-ASM +PREP +N-ASF +A-ASF +CONJ +ADV +V-PAS-3S +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-PAP-NSM +CONJ +PREP +D-DSM +T-NSM +N-NSM +V-PAI-3S +A-NSM +CONJ +A-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +CONJ +A-NSM +T-NSM +V-PAP-NSM +P-1NS +V-AAI-1S +P-2AP +V-PAN +R-ASN +PRT-N +P-2NP +V-RAI-2P +A-NPM +V-RAI-3P +CONJ +P-2NP +PREP +T-ASM +N-ASM +P-GPM +V-2RAI-2P +CONJ +PREP +T-GSF +N-GSF +D-GSF +A-NPM +T-GPM +N-GPM +V-AAI-3P +PREP +P-ASM +PREP +T-ASM +N-ASM +T-GSF +N-GSF +V-PAP-GSF +CONJ +V-2AAI-3S +P-1DS +A-APN +R-APN +V-AAI-1S +CONJ +ADV +V-2AAI-3P +PREP +P-ASM +T-NPM +N-NPM +V-IAI-3P +P-ASM +V-AAN +PREP +P-DPM +CONJ +V-AAI-3S +ADV +A-NUI +N-APF +CONJ +A-DSM +A-NPM-C +V-AAI-3P +PREP +T-ASM +N-ASM +P-GSM +PRT +T-DSF +N-DSF +V-IAI-3P +CONJ +ADV-N +PREP +T-ASF +S-2SASF +N-ASF +V-PAI-1P +CONJ +P-NPM +V-2RAI-1P-ATT +CONJ +V-RAI-1P +CONJ +D-NSM +V-PAI-3S +ADV +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +PREP +T-APF +A-NUI +N-APF +V-2AAI-3S +ADV +PREP +T-ASF +N-ASF +CONJ +P-NSM +N-NSM +V-AAI-3S +CONJ +N-NSM +PREP +T-DSF +A-DSF +N-DSF +N-ASF +PRT-N +V-PAI-3S +CONJ +ADV +V-2AAI-3S +PREP +T-ASF +N-ASF +V-ADI-3P +P-ASM +T-NPM +N-NPM +V-RAP-NPM-ATT +A-APN +K-APN +V-AAI-3S +PREP +N-DPN +PREP +T-DSF +N-DSF +CONJ +CONJ +P-NPM +V-2AAI-3P +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +ADV +PREP +T-ASF +N-PRI +T-GSF +N-GSF +ADV +V-AAI-3S +T-ASN +N-ASN +N-ASM +CONJ +V-IAI-3S +X-NSM +A-NSM +R-GSM +T-NSM +N-NSM +V-IAI-3S +PREP +N-PRI +D-NSM +V-AAP-NSM +CONJ +N-NSM +V-PAI-3S +PREP +T-GSF +N-GSF +PREP +T-ASF +N-ASF +V-2AAI-3S +PREP +P-ASM +CONJ +V-IAI-3S +CONJ +V-2AAS-3S +CONJ +V-ADS-3S +P-GSM +T-ASM +N-ASM +CONJ +V-IAI-3S-ATT +V-PAN +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +P-ASM +COND +PRT-N +N-APN +CONJ +N-APN +V-2AAS-2P +PRT-N +PRT-N +V-AAS-2P +V-PAI-3S +PREP +P-ASM +T-NSM +A-NSM +N-VSM +V-2AAM-2S +ADV +V-2AAN +T-ASN +N-ASN +P-1GS +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-PNM-2S +T-NSM +N-NSM +P-2GS +V-PAI-3S +V-AAI-3S +T-NSM +N-NSM +T-DSM +N-DSM +R-ASM +V-2AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +V-INI-3S +CONJ +ADV +P-GSM +V-PAP-GSM +T-NPM +N-NPM +V-AAI-3P +P-DSM +V-PAP-NPM +CONJ +T-NSM +N-NSM +P-GSM +V-PAI-3S +CONJ +V-2ADI-3S +T-ASF +N-ASF +PREP +P-GPM +PREP +R-DSF +ADV-C +V-2AAI-3S +CONJ +V-2AAI-3P +P-DSM +CONJ +ADV +N-ASF +A-ASF +V-AAI-3S +P-ASM +T-NSM +N-NSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +CONJ +D-DSF +T-DSF +N-DSF +PREP +R-DSF +V-2AAI-3S +P-DSM +T-NSM +N-NSM +T-NSM +N-NSM +P-2GS +V-PAI-3S +CONJ +V-AAI-3S +P-NSM +CONJ +T-NSF +N-NSF +P-GSM +A-NSF +CONJ +ADV +D-ASN +A-ASN +N-ASN +V-AAI-3S +T-NSM +N-NSM +V-2AAP-NSM +PREP +T-GSF +N-GSF +PREP +T-ASF +N-ASF +PREP +D-APN +V-IAI-3S +N-NSF +T-GPM +A-GPM +CONJ +V-2AAI-3S +N-NSM +PREP +N-APN +CONJ +V-PAI-3S +PREP +T-DPN +N-DPN +PREP +T-DSF +A-DSF +N-NSF +T-NSF +V-PPP-NSF +ADV +N-PRI +A-NUI +N-APF +V-PAP-NSF +PREP +D-DPF +V-INI-3S +N-NSN +T-GPM +V-PAP-GPM +A-GPM +A-GPM +A-GPM +V-PNP-GPM +T-ASF +T-GSN +N-GSN +N-ASF +CONJ +N-NSM +PREP +N-ASM +V-IAI-3S +PREP +T-DSF +N-DSF +CONJ +V-AAI-3S +T-ASN +N-ASN +CONJ +T-NSM +A-NSM-S +V-2AAP-NSM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +A-NSM +V-INI-3S +R-DSN +PRT +V-IPI-3S +N-DSN +CONJ +V-IAI-3S +X-NSM +N-NSM +ADV +A-NUI +CONJ +A-NUI +N-APN +V-PAP-NSM +PREP +T-DSF +N-DSF +P-GSM +T-NSM +N-NSM +D-ASM +V-PNP-ASM +V-2AAP-NSM +CONJ +V-2AAP-NSM +CONJ +A-ASM +N-ASM +ADV +V-PAI-3S +V-PAI-3S +P-DSM +V-PAI-2S +A-NSM +V-2ADN +V-ADI-3S +P-DSM +T-NSM +V-PAP-NSM +N-VSM +N-ASM +PRT-N +V-PAI-1S +CONJ +CONJ +V-APS-3S +T-NSN +N-NSN +V-2AAS-3S +P-1AS +PREP +T-ASF +N-ASF +CONJ +PREP +R-DSM +V-PNI-1S +P-1NS +A-NSM +PREP +P-1GS +V-PAI-3S +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-PAM-2S +V-AAM-2S +T-ASM +N-ASM +P-2GS +CONJ +V-PAM-2S +CONJ +ADV +V-2ADI-3S +A-NSM +T-NSM +N-NSM +CONJ +V-AAI-3S +T-ASM +N-ASM +P-GSM +CONJ +V-IAI-3S +CONJ +V-IAI-3S +N-NSN +PREP +D-DSF +T-DSF +N-DSF +CONJ +V-IAI-3P +T-NPM +A-NPM +T-DSM +V-RPP-DSM +N-NSN +V-PAI-3S +CONJ +PRT-N +V-PAI-3S +P-2DS +V-AAN +T-ASM +N-ASM +CONJ +R-NSM +V-ADI-3S +P-DPM +T-NSM +V-AAP-NSM +P-1AS +A-ASM +D-NSM +P-1DS +V-2AAI-3S +V-AAM-2S +T-ASM +N-ASM +P-2GS +CONJ +V-PAM-2S +V-AAI-3P +P-ASM +I-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +V-2AAP-NSM +P-2DS +V-AAM-2S +CONJ +V-PAM-2S +CONJ +T-NSM +V-APP-NSM +PRT-N +V-2LAI-3S +I-NSM +V-PAI-3S +CONJ +T-NSM +N-NSM +V-AAI-3S +N-GSM +V-PAP-GSM +PREP +T-DSM +N-DSM +PREP +D-APN +V-PAI-3S +P-ASM +T-NSM +N-NSM +PREP +T-DSN +N-DSN +CONJ +V-2AAI-3S +P-DSM +V-2AAM-2S +A-NSM +V-2RAI-2S +ADV-N +V-PAM-2S +CONJ +PRT-N +A-NSN +X-NSN +P-2DS +V-2ADS-3S +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-2AAI-3S +T-DPM +A-DPM +CONJ +N-NSM +V-PAI-3S +T-NSM +V-AAP-NSM +P-ASM +A-ASM +CONJ +PREP +D-ASN +V-IAI-3P +T-NPM +A-NPM +T-ASM +N-ASM +CONJ +D-APN +V-IAI-3S +PREP +N-DSN +CONJ +T-NSM +V-ADI-3S +P-DPM +T-NSM +N-NSM +P-1GS +ADV +ADV +V-PNI-3S +P-1NS-K +V-PNI-1S +CONJ +PREP +D-ASN +ADV +V-IAI-3P +P-ASM +V-AAN +T-NPM +A-NPM +CONJ +PRT-N +ADV +V-IAI-3S +T-ASN +N-ASN +CONJ +CONJ +N-ASM +A-ASM +V-IAI-3S +T-ASM +N-ASM +A-ASM +F-3ASM +V-PAP-NSM +T-DSM +N-DSM +CONJ +V-ADI-3S +T-NSM +N-NSM +CONJ +V-IAI-3S +P-DPM +HEB +HEB +V-PAI-1S +P-2DP +PRT-N +V-PNI-3S +T-NSM +N-NSM +V-PAN +PREP +F-3GSM +A-ASN-N +PRT +PRT-N +V-PAS-3S +X-ASN +T-ASM +N-ASM +V-PAP-ASM +CONJ +PRT +R-APN +D-NSM +V-PAS-3S +D-APN +CONJ +T-NSM +N-NSM +ADV +V-PAI-3S +CONJ +T-NSM +N-NSM +V-PAI-3S +T-ASM +N-ASM +CONJ +V-PAI-3S +P-DSM +A-APN +R-APN +P-NSM +V-PAI-3S +CONJ +A-APN-C +D-GPN +N-APN +V-FAI-3S +P-DSM +CONJ +P-2NP +V-PAS-2P +CONJ +ADV +T-NSM +N-NSM +V-PAI-3S +T-APM +A-APM +CONJ +V-PAI-3S +ADV +CONJ +T-NSM +N-NSM +R-APM +V-PAI-3S +V-PAI-3S +CONJ +CONJ-N +T-NSM +N-NSM +V-PAI-3S +A-ASM-N +CONJ +T-ASF +N-ASF +A-ASF +V-RAI-3S +T-DSM +N-DSM +CONJ +A-NPM +V-PAS-3P +T-ASM +N-ASM +ADV +V-PAI-3P +T-ASM +N-ASM +T-NSM +PRT-N +V-PAP-NSM +T-ASM +N-ASM +PRT-N +V-PAI-3S +T-ASM +N-ASM +T-ASM +V-AAP-ASM +P-ASM +HEB +HEB +V-PAI-1S +P-2DP +CONJ +T-NSM +T-ASM +N-ASM +P-1GS +V-PAP-NSM +CONJ +V-PAP-NSM +T-DSM +V-AAP-DSM +P-1AS +V-PAI-3S +N-ASF +A-ASF +CONJ +PREP +N-ASF +PRT-N +V-PNI-3S +CONJ +V-RAI-3S +PREP +T-GSM +N-GSM +PREP +T-ASF +N-ASF +HEB +HEB +V-PAI-1S +P-2DP +CONJ +V-PNI-3S +N-NSF +CONJ +ADV +V-PAI-3S +ADV +T-NPM +A-NPM +V-FAI-3P +T-GSF +N-GSF +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +T-NPM +V-AAP-NPM +V-FAI-3P +CONJ +ADV +T-NSM +N-NSM +V-PAI-3S +N-ASF +PREP +F-3DSM +ADV +CONJ +T-DSM +N-DSM +V-AAI-3S +N-ASF +V-PAN +PREP +F-3DSM +CONJ +N-ASF +V-AAI-3S +P-DSM +N-ASF +V-PAN +CONJ +N-NSM +N-GSM +V-PAI-3S +PRT-N +V-PAM-2P +D-ASN +CONJ +V-PNI-3S +N-NSF +PREP +R-DSF +A-NPM +T-NPM +PREP +T-DPN +N-DPN +V-FAI-3P +T-GSF +N-GSF +P-GSM +CONJ +V-FDI-3P +T-NPM +T-APN +A-APN +V-AAP-NPM +PREP +N-ASF +N-GSF +T-NPM +T-APN +A-APN +V-AAP-NPM +PREP +N-ASF +N-GSF +PRT-N +V-PNI-1S +P-1NS +V-PAN +PREP +F-1GSM +A-ASN-N +ADV +V-PAI-1S +V-PAI-1S +CONJ +T-NSF +N-NSF +T-NSF +S-1SNSF +A-NSF +V-PAI-3S +CONJ +PRT-N +V-PAI-1S +T-ASN +N-ASN +T-ASN +S-1SASN +CONJ +T-ASN +N-ASN +T-GSM +V-AAP-GSM +P-1AS +COND +P-1NS +V-PAS-1S +PREP +F-1GSM +T-NSF +N-NSF +P-1GS +PRT-N +V-PAI-3S +A-NSF +A-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +P-1GS +CONJ +V-RAI-1S +CONJ +A-NSF +V-PAI-3S +T-NSF +N-NSF +R-ASF +V-PAI-3S +PREP +P-1GS +P-2NP +V-RAI-2P +PREP +N-ASM +CONJ +V-RAI-3S +T-DSF +N-DSF +CONJ +P-1NS +PRT-N +PREP +N-GSM +T-ASF +N-ASF +V-PAI-1S +CONJ +D-APN +V-PAI-1S +CONJ +P-2NP +V-APS-2P +D-NSM +V-IAI-3S +T-NSM +N-NSM +T-NSM +V-PPP-NSM +CONJ +V-PAP-NSM +CONJ +P-2NP +V-AAI-2P +V-AON +PREP +N-ASF +PREP +T-DSN +N-DSN +P-GSM +CONJ +P-1NS +V-PAI-1S +T-ASF +N-ASF +A-ASF-C +T-GSM +N-GSM +CONJ +T-NPN +N-NPN +R-APN +V-RAI-3S +P-1DS +T-NSM +N-NSM +CONJ +V-AAS-1S +P-APN +P-NPN +T-NPN +N-NPN +R-APN +V-PAI-1S +V-PAI-3S +PREP +P-1GS +CONJ +T-NSM +N-NSM +P-1AS +V-RAI-3S +CONJ +T-NSM +V-AAP-NSM +P-1AS +N-NSM +D-NSM +V-RAI-3S +PREP +P-1GS +CONJ-N +N-ASF +P-GSM +ADV +V-2RAI-2P-ATT +CONJ-N +N-ASN +P-GSM +V-RAI-2P-ATT +CONJ +PRT-N +V-PAI-2P +T-ASM +N-ASM +P-GSM +PREP +P-2DP +V-PAP-ASM +CONJ +R-ASM +V-AAI-3S +D-NSM +D-DSM +P-2NP +PRT-N +V-PAI-2P +V-PAI-2P +T-APF +N-APF +CONJ +P-2NP +V-PAI-2P +PREP +P-DPF +N-ASF +A-ASF +V-PAN +CONJ +D-NPF +V-PAI-3P +T-NPF +V-PAP-NPF +PREP +P-1GS +CONJ +PRT-N +V-PAI-2P +V-2AAN +PREP +P-1AS +CONJ +N-ASF +V-PAS-2P +N-ASF +PREP +N-GPM +PRT-N +V-PAI-1S +CONJ +V-RAI-1S +P-2AP +CONJ +T-ASF +N-ASF +T-GSM +N-GSM +PRT-N +V-PAI-2P +PREP +F-2DPM +P-1NS +V-2RAI-1S +PREP +T-DSN +N-DSN +T-GSM +N-GSM +P-1GS +CONJ +PRT-N +V-PAI-2P +P-1AS +COND +A-NSM +V-2AAS-3S +PREP +T-DSN +N-DSN +T-DSN +A-DSN +D-ASM +V-FDI-2P +ADV-I +V-PNI-2P +P-2NP +V-AAN +N-ASF +PREP +C-GPM +V-PAP-NPM +CONJ +T-ASF +N-ASF +T-ASF +PREP +T-GSM +A-GSM +N-GSM +PRT-N +V-PAI-2P +PRT-N +V-PAM-2P +CONJ +P-1NS +V-FAI-1S +P-2GP +PREP +T-ASM +N-ASM +V-PAI-3S +T-NSM +V-PAP-NSM +P-2GP +N-NSM +PREP +R-ASM +P-2NP +V-RAI-2P +CONJ +COND +V-IAI-2P +N-DSM +PRT +V-IAI-2P +P-1DS +CONJ +PREP +P-1GS +D-NSM +V-AAI-3S +CONJ +COND +T-DPN +D-GSM +N-DPN +PRT-N +V-PAI-2P +ADV-I +T-DPN +S-1SDPN +N-DPN +V-FAI-2P +PREP +D-APN +V-2AAI-3S +T-NSM +N-NSM +ADV +T-GSF +N-GSF +T-GSF +N-GSF +T-GSF +N-GSF +CONJ +V-IAI-3S +P-DSM +N-NSM +A-NSM +CONJ +V-IAI-3P +T-APN +N-APN +R-APN +V-IAI-3S +PREP +T-GPM +V-PAP-GPM +CONJ +V-2AAI-3S +PREP +T-ASN +N-ASN +N-NSM +CONJ +ADV +V-INI-3S +PREP +T-GPM +N-GPM +P-GSM +CONJ +V-IAI-3S +ADV +T-NSN +ARAM +T-NSF +N-NSF +T-GPM +A-GPM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-APM +N-APM +CONJ +V-ADP-NSM +CONJ +A-NSM +N-NSM +V-PNI-3S +PREP +P-ASM +V-PAI-3S +PREP +N-ASM +ADV-I +V-AAS-1P +N-APM +CONJ +V-2AAS-3P +D-NPM +CONJ +D-ASN +V-IAI-3S +V-PAP-NSM +P-ASM +CONJ +P-NSM +V-2LAI-3S +I-ASN +V-PAN +V-IAI-3S +V-ADI-3S +P-DSM +T-NSM +N-NSM +A-GPN +N-GPN +N-NPM +PRT-N +V-PAI-3P +P-DPM +CONJ +A-NSM +A-ASN +X-ASN +V-2AAS-3S +V-PAI-3S +P-DSM +A-NSM +PREP +T-GPM +N-GPM +P-GSM +N-NSM +T-NSM +N-NSM +N-GSM +N-GSM +V-PAI-3S +N-NSN +ADV +R-NSM +V-PAI-3S +A-NUI +N-APM +A-APM +CONJ +A-NUI +N-APN +CONJ +D-NPN +I-NSN +V-PAI-3S +PREP +D-APM +V-2AAI-3S +T-NSM +N-NSM +V-AAM-2P +T-APM +N-APM +V-2AAN +CONJ +V-IAI-3S +N-NSM +A-NSM +PREP +T-DSM +N-DSM +CONJ +V-2AAI-3P +T-NPM +N-NPM +T-ASM +N-ASM +ADV +A-NPM +CONJ +V-2AAI-3S +T-APM +N-APM +T-NSM +N-NSM +CONJ +V-AAP-NSM +V-AAI-3S +T-DPM +V-PNP-DPM +ADV +CONJ +PREP +T-GPN +N-GPN +K-ASN +V-IAI-3P +CONJ +ADV +V-API-3P +V-PAI-3S +T-DPM +N-DPM +P-GSM +V-2AAM-2P +T-APN +V-AAP-APN +N-APN +CONJ +PRT-N +X-NSN +V-2AMS-3S +CONJ +V-2AAI-3P +CONJ +V-AAI-3P +A-NUI +N-APM +N-GPN +PREP +T-GPM +A-NUI +N-GPM +T-GPM +A-GPM +R-APN +V-AAI-3P +T-DPM +V-RAP-DPM +CONJ +T-NPM +N-NPM +V-2AAP-NPM +R-ASN +V-AAI-3S +N-ASN +V-IAI-3P +CONJ +D-NSM +V-PAI-3S +ADV +T-NSM +N-NSM +T-NSM +V-PNP-NSM +PREP +T-ASM +N-ASM +CONJ +V-2AAP-NSM +CONJ +V-PAI-3P +V-PNN +CONJ +V-PAN +P-ASM +CONJ +V-AAS-3P +N-ASM +V-AAI-3S +ADV +PREP +T-ASN +N-ASN +N-NSM +P-NSM +A-NSM +CONJ +ADV +A-NSF +V-2ADI-3S +V-2AAI-3P +T-NPM +N-NPM +P-GSM +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NPM +PREP +N-ASN +V-INI-3P +ADV +T-GSF +N-GSF +PREP +N-PRI +CONJ +N-NSF +ADV +V-2LAI-3S +CONJ +ADV-N +V-2LAI-3S +PREP +P-APM +T-NSM +N-NSM +PRT +T-NSF +N-NSF +N-GSM +A-GSM +V-PAP-GSM +V-IPI-3S +CONJ +V-RAP-NPM +ADV +N-APM +A-NUI +A-NUI +PRT +A-NUI +V-PAI-3P +T-ASM +N-ASM +V-PAP-ASM +PREP +T-GSF +N-GSF +CONJ +ADV +T-GSN +N-GSN +V-PNP-ASM +CONJ +V-AOI-3P +CONJ +T-NSM +V-PAI-3S +P-DPM +P-1NS +V-PAI-1S +PRT-N +V-PNM-2P +CONJ +V-IAI-3P +V-2AAN +P-ASM +PREP +T-ASN +N-ASN +CONJ +ADV +V-2ADI-3S +T-NSN +N-NSN +PREP +T-GSF +N-GSF +PREP +R-ASF +V-IAI-3P +T-DSF +ADV +T-NSM +N-NSM +T-NSM +V-RAP-NSM +ADV +T-GSF +N-GSF +V-2AAI-3P +CONJ +N-NSN +A-NSN +PRT-N +V-IAI-3S +ADV +COND +PRT-N +A-NSN +CONJ +CONJ +PRT-N +V-2AAI-3S +T-DPM +N-DPM +P-GSM +T-NSM +N-NSM +PREP +T-ASN +N-ASN +CONJ +A-NPM +T-NPM +N-NPM +P-GSM +V-2AAI-3P +CONJ +N-APN +V-2AAI-3S +PREP +N-GSF +ADV +T-GSM +N-GSM +ADV +V-2AAI-3P +T-ASM +N-ASM +V-AAP-GSM +T-GSM +N-GSM +CONJ +ADV +V-2AAI-3S +T-NSM +N-NSM +CONJ +N-NSM +PRT-N +V-PAI-3S +ADV +CONJ-N +T-NPM +N-NPM +P-GSM +V-2AAI-3P +P-NPM +PREP +T-APN +N-APN +CONJ +V-2AAI-3P +PREP +N-PRI +V-PAP-NPM +T-ASM +N-ASM +CONJ +V-2AAP-NPM +P-ASM +ADV +T-GSF +N-GSF +V-2AAI-3P +P-DSM +HEB +PRT-I +ADV +V-2RAI-2S +V-ADI-3S +P-DPM +T-NSM +N-NSM +CONJ +V-2AAI-3S +HEB +HEB +V-PAI-1S +P-2DP +V-PAI-2P +P-1AS +PRT-N +CONJ +V-2AAI-2P +N-APN +CONJ +CONJ +V-2AAI-2P +PREP +T-GPM +N-GPM +CONJ +V-API-2P +V-PNM-2P +PRT-N +T-ASF +N-ASF +T-ASF +V-PMP-ASF +CONJ +T-ASF +N-ASF +T-ASF +V-PAP-ASF +PREP +N-ASF +A-ASF +R-ASF +T-NSM +N-NSM +T-GSM +N-GSM +P-2DP +V-FAI-3S +CONJ +D-ASM +T-NSM +N-NSM +T-NSM +N-NSM +V-AAI-3S +CONJ +V-2AAI-3P +PREP +P-ASM +I-ASN +V-PAS-1P +CONJ +V-PNS-1P +T-APN +N-APN +T-GSM +N-GSM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DPM +D-NSN +V-PAI-3S +T-NSN +N-NSN +T-GSM +N-GSM +CONJ +V-PAS-2P +PREP +R-ASM +V-AAI-3S +D-NSM +CONJ +V-2AAI-3P +P-DSM +CONJ +I-ASN +N-ASN +V-PAI-2S +P-2NS +CONJ +V-2AAS-1P +CONJ +V-AAS-1P +P-2DS +I-ASN +V-PNI-2S +T-NPM +N-NPM +P-1GP +T-ASN +HEB +V-2AAI-3P +PREP +T-DSF +A-DSF +ADV +V-PAI-3S +V-RPP-NSN +N-ASM +PREP +T-GSM +N-GSM +V-AAI-3S +P-DPM +V-2AAN +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +HEB +HEB +V-PAI-1S +P-2DP +PRT-N +N-NSM +V-RAI-3S +P-2DP +T-ASM +N-ASM +PREP +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +P-1GS +V-PAI-3S +P-2DP +T-ASM +N-ASM +PREP +T-GSM +N-GSM +T-ASM +A-ASM +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +T-GSM +N-GSM +CONJ +N-ASF +V-PAP-NSM +T-DSM +N-DSM +CONJ +V-2AAI-3P +PREP +P-ASM +N-VSM +ADV +V-2AAM-2S +P-1DP +T-ASM +N-ASM +D-ASM +V-2AAI-3S +P-DPM +T-NSM +N-NSM +P-1NS +V-PAI-1S +T-NSM +N-NSM +T-GSF +N-GSF +T-NSM +V-PNP-NSM +PREP +P-1AS +PRT-N +PRT-N +V-AAS-3S +CONJ +T-NSM +V-PAP-NSM +PREP +P-1AS +PRT-N +PRT-N +V-FAI-3S +ADV +CONJ +V-2AAI-1S +P-2DP +CONJ +CONJ +V-RAI-2P-ATT +P-1AS +CONJ +PRT-N +V-PAI-2P +A-ASN +R-ASN +V-PAI-3S +P-1DS +T-NSM +N-NSM +PREP +P-1AS +V-FAI-3S +CONJ +T-ASM +V-PNP-ASM +PREP +P-1AS +PRT-N +PRT-N +V-2AAS-1S +ADV +CONJ +V-RAI-1S +PREP +T-GSM +N-GSM +PRT-N +CONJ +V-PAS-1S +T-ASN +N-ASN +T-ASN +S-1SASN +CONJ +T-ASN +N-ASN +T-GSM +V-AAP-GSM +P-1AS +CONJ +D-NSN +V-PAI-3S +T-NSN +N-NSN +T-GSM +V-AAP-GSM +P-1AS +CONJ +A-ASN +R-ASN +V-RAI-3S +P-1DS +PRT-N +V-AAS-1S +PREP +P-GSN +CONJ +V-AAS-1S +P-ASN +PREP +T-DSF +A-DSF-S +N-DSF +CONJ +D-NSN +V-PAI-3S +T-NSN +N-NSN +T-GSM +N-GSM +P-1GS +CONJ +A-NSM +T-NSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +V-PAP-NSM +PREP +P-ASM +V-PAS-3S +N-ASF +A-ASF +CONJ +V-AAS-1S +P-ASM +P-1NS +PREP +T-DSF +A-DSF-S +N-DSF +CONJ +V-IAI-3P +T-NPM +A-NPM +PREP +P-GSM +CONJ +V-2AAI-3S +P-1NS +V-PAI-1S +T-NSM +N-NSM +T-NSM +V-2AAP-NSM +PREP +T-GSM +N-GSM +CONJ +V-IAI-3P +PRT-N +D-NSM +V-PAI-3S +N-NSM +T-NSM +N-NSM +N-PRI +R-GSM +P-1NP +V-RAI-1P +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +ADV-I +ADV +V-PAI-3S +CONJ +PREP +T-GSM +N-GSM +V-RAI-1S +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DPM +PRT-N +V-PAM-2P +PREP +C-GPM +A-NSM-N +V-PNI-3S +V-2AAN +PREP +P-1AS +COND +PRT-N +T-NSM +N-NSM +T-NSM +V-AAP-NSM +P-1AS +V-AAS-3S +P-ASM +P-1NS-K +V-FAI-1S +P-ASM +PREP +T-DSF +A-DSF-S +N-DSF +V-PAI-3S +V-RPP-NSN +PREP +T-DPM +N-DPM +CONJ +V-FDI-3P +A-NPM +A-NPM +N-GSM +A-NSM +T-NSM +V-AAP-NSM +PREP +T-GSM +N-GSM +CONJ +V-2AAP-NSM +V-PNI-3S +PREP +P-1AS +PRT-N +CONJ +T-ASM +N-ASM +V-RAI-3S-ATT +X-NSM +COND +PRT-N +T-NSM +V-PAP-NSM +PREP +T-GSM +N-GSM +D-NSM +V-RAI-3S-ATT +T-ASM +N-ASM +HEB +HEB +V-PAI-1S +P-2DP +T-NSM +V-PAP-NSM +V-PAI-3S +N-ASF +A-ASF +P-1NS +V-PAI-1S +T-NSM +N-NSM +T-GSF +N-GSF +T-NPM +N-NPM +P-2GP +V-2AAI-3P +PREP +T-DSF +A-DSF +T-ASN +HEB +CONJ +V-2AAI-3P +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +PREP +T-GSM +N-GSM +V-PAP-NSM +CONJ +X-NSM +PREP +P-GSM +V-2AAS-3S +CONJ +PRT-N +V-2AAS-3S +P-1NS +V-PAI-1S +T-NSM +N-NSM +T-NSM +V-PAP-NSM +T-NSM +PREP +T-GSM +N-GSM +V-2AAP-NSM +COND +X-NSM +V-2AAS-3S +PREP +D-GSM +T-GSM +N-GSM +V-FAI-3S +PREP +T-ASM +N-ASM +CONJ +CONJ +T-NSM +N-NSM +R-ASM +P-1NS +V-FAI-1S +T-NSF +N-NSF +P-1GS +V-PAI-3S +PREP +T-GSF +T-GSM +N-GSM +N-GSF +CONJ +V-INI-3P +PREP +C-APM +T-NPM +A-NPM +V-PAP-NPM +ADV-I +V-PNI-3S +D-NSM +P-1DP +V-2AAN +T-ASF +N-ASF +V-2AAN +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +HEB +HEB +V-PAI-1S +P-2DP +COND +PRT-N +V-2AAS-2P +T-ASF +N-ASF +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +V-2AAS-2P +P-GSM +T-ASN +N-ASN +PRT-N +V-PAI-2P +N-ASF +PREP +F-2DPM +T-NSM +V-PAP-NSM +P-1GS +T-ASF +N-ASF +CONJ +V-PAP-NSM +P-1GS +T-ASN +N-ASN +V-PAI-3S +N-ASF +A-ASF +P-1NS-K +V-FAI-1S +P-ASM +T-DSF +A-DSF-S +N-DSF +CONJ +T-NSF +N-NSF +P-1GS +A-NSF +N-NSF +V-PAI-3S +CONJ +T-NSN +N-NSN +P-1GS +A-NSF +N-NSF +V-PAI-3S +T-NSM +V-PAP-NSM +P-1GS +T-ASF +N-ASF +CONJ +V-PAP-NSM +P-1GS +T-ASN +N-ASN +PREP +P-1DS +V-PAI-3S +P-1NS-K +PREP +P-DSM +ADV +V-AAI-3S +P-1AS +T-NSM +V-PAP-NSM +N-NSM +P-1NS-K +V-PAI-1S +PREP +T-ASM +N-ASM +CONJ +T-NSM +V-PAP-NSM +P-1AS +D-NSM-K +V-FAI-3S +PREP +P-1AS +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +PREP +N-GSM +V-2AAP-NSM +PRT-N +ADV +V-2AAI-3P +T-NPM +N-NPM +CONJ +V-2AAI-3P +T-NSM +V-PAP-NSM +D-ASM +T-ASM +N-ASM +V-FAI-3S +PREP +T-ASM +N-ASM +D-APN +V-2AAI-3S +PREP +N-DSF +V-PAP-NSM +PREP +N-PRI +CONJ +A-NPM +PREP +T-GPM +N-GPM +P-GSM +V-AAP-NPM +V-2AAI-3P +A-NSM +V-PAI-3S +T-NSM +N-NSM +D-NSM +I-NSM +V-PNI-3S +P-GSM +V-PAN +CONJ +T-NSM +N-NSM +V-RAP-NSM +PREP +F-3DSM +CONJ +V-PAI-3P +PREP +D-GSM +T-NPM +N-NPM +P-GSM +V-2AAI-3S +P-DPM +D-NSN +P-2AP +V-PAI-3S +CONJ +COND +V-PAS-2P +T-ASM +N-ASM +T-GSM +N-GSM +V-PAP-ASM +ADV +V-IAI-3S +T-ASN +A-ASN-C +T-NSN +N-NSN +V-PAI-3S +T-NSN +V-PAP-NSN +T-NSF +N-NSF +PRT-N +V-PAI-3S +A-ASN-N +T-NPN +N-NPN +R-APN +P-1NS +V-RAI-1S +P-2DP +N-NSN +V-PAI-3S +CONJ +N-NSF +V-PAI-3S +CONJ +V-PAI-3P +PREP +P-2GP +X-NPM +R-NPM +PRT-N +V-PAI-3P +CONJ +V-2LAI-3S +PREP +N-GSF +T-NSM +N-NSM +I-NPM +V-PAI-3P +T-NPM +PRT-N +V-PAP-NPM +CONJ +I-NSM +V-PAI-3S +T-NSM +V-FAP-NSM +P-ASM +CONJ +V-IAI-3S +PREP +D-ASN +V-RAI-1S-ATT +P-2DP +CONJ +A-NSM-N +V-PNI-3S +V-2AAN +PREP +P-1AS +COND +PRT-N +V-PAS-3S +V-RPP-NSN +P-DSM +PREP +T-GSM +N-GSM +PREP +D-GSM +A-NPM +T-GPM +N-GPM +P-GSM +V-2AAI-3P +PREP +T-APN +ADV +CONJ +ADV-N +PREP +P-GSM +V-IAI-3P +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-DPM +A-NUI +PRT-N +CONJ +P-2NP +V-PAI-2P +V-PAN +V-ADI-3S +P-DSM +N-NSM +N-NSM +N-VSM +PREP +I-ASM +V-FDI-1P +N-APN +N-GSF +A-GSF +V-PAI-2S +CONJ +P-1NP +V-RAI-1P +CONJ +V-RAI-1P +CONJ +P-2NS +V-PAI-2S +T-NSM +A-NSM +T-GSM +N-GSM +V-ADI-3S +P-DPM +T-NSM +N-NSM +PRT-N +P-1NS +P-2AP +T-APM +A-NUI +V-AMI-1S +CONJ +PREP +P-2GP +A-NSM +A-NSM +V-PAI-3S +CONJ +V-IAI-3S +T-ASM +N-ASM +N-GSM +N-GSM +CONJ +D-NSM +V-IAI-3S +V-PAN +P-ASM +A-NSM +PREP +T-GPM +A-NUI +CONJ +PREP +D-APN +V-IAI-3S +T-NSM +N-NSM +PREP +T-DSF +N-DSF +CONJ +PRT-N +V-IAI-3S +PREP +T-DSF +N-DSF +V-PAN +CONJ +V-IAI-3P +P-ASM +V-AAN +T-NPM +A-NPM +CONJ +V-IAI-3S +ADV +T-NSF +N-NSF +T-GPM +A-GPM +T-NSF +N-NSF +CONJ +V-2AAI-3P +PREP +P-ASM +T-NPM +N-NPM +P-GSM +V-2AAM-2S +ADV +CONJ +V-PAM-2S +PREP +T-ASF +N-ASF +CONJ +CONJ +T-NPM +N-NPM +P-2GS +V-FAI-3P +T-APN +N-APN +P-2GS +R-APN +V-PAI-2S +CONJ +A-NSM-N +X-ASN +PREP +A-DSN +V-PAI-3S +CONJ +V-PAI-3S +P-NSM +PREP +N-DSF +V-PAN +COND +D-APN +V-PAI-2S +V-AAM-2S +F-2ASM +T-DSM +N-DSM +CONJ +CONJ-N +T-NPM +N-NPM +P-GSM +V-IAI-3P +PREP +P-ASM +CONJ +V-PAI-3S +P-DPM +T-NSM +N-NSM +T-NSM +N-NSM +T-NSM +S-1SNSM +ADV-N +V-PAI-3S +CONJ +T-NSM +N-NSM +T-NSM +S-2PNSM +ADV +V-PAI-3S +A-NSM +PRT-N +V-PNI-3S +T-NSM +N-NSM +V-PAN +P-2AP +CONJ +P-1AS +V-PAI-3S +CONJ +P-1NS +V-PAI-1S +PREP +P-GSM +CONJ +T-NPN +N-NPN +P-GSM +A-NPN +V-PAI-3S +P-2NP +V-2AAM-2P +PREP +T-ASF +N-ASF +P-1NS +ADV-N +V-PAI-1S +PREP +T-ASF +N-ASF +D-ASF +CONJ +T-NSM +S-1SNSM +N-NSM +ADV-N +V-RPI-3S +CONJ +D-APN +V-2AAP-NSM +P-DPM +V-AAI-3S +PREP +T-DSF +N-DSF +CONJ +ADV +V-2AAI-3P +T-NPM +N-NPM +P-GSM +PREP +T-ASF +N-ASF +ADV +CONJ +P-NSM +V-2AAI-3S +PRT-N +ADV +CONJ +ADV +PREP +A-DSN +CONJ +T-NPM +A-NPM +V-IAI-3P +P-ASM +PREP +T-DSF +N-DSF +CONJ +V-IAI-3P +ADV-I +V-PAI-3S +D-NSM +CONJ +N-NSM +PREP +P-GSM +V-IAI-3S +A-NSM +PREP +T-DPM +N-DPM +PRT +T-NPM +V-IAI-3P +CONJ +A-NSM +V-PAI-3S +CONJ +A-NPM +V-IAI-3P +PRT-N +CONJ +V-PAI-3S +T-ASM +N-ASM +CONJ +A-NSM-N +N-DSF +V-IAI-3S +PREP +P-GSM +PREP +T-ASM +N-ASM +T-GPM +A-GPM +CONJ +ADV +T-GSF +N-GSF +V-PAP-GSF +V-2AAI-3S +N-NSM +PREP +T-ASN +N-ASN +CONJ +V-IAI-3S +CONJ +V-IAI-3P +T-NPM +A-NPM +V-PAP-NPM +ADV-I +D-NSM +N-APN +V-RAI-3S +PRT-N +V-RAP-NSM +CONJ +V-ADI-3S +P-DPM +N-NSM +CONJ +V-2AAI-3S +T-NSF +S-1SNSF +N-NSF +PRT-N +V-PAI-3S +S-1SNSF +CONJ +T-GSM +V-AAP-GSM +P-1AS +COND +X-NSM +V-PAS-3S +T-ASN +N-ASN +P-GSM +V-PAN +V-FDI-3S +PREP +T-GSF +N-GSF +ADV-I +PREP +T-GSM +N-GSM +V-PAI-3S +PRT +P-1NS +PREP +F-1GSM +V-PAI-1S +T-NSM +PREP +F-3GSM +V-PAP-NSM +T-ASF +N-ASF +T-ASF +A-ASF +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +T-ASF +N-ASF +T-GSM +V-AAP-GSM +P-ASM +D-NSM +A-NSM +V-PAI-3S +CONJ +N-NSF +PREP +P-DSM +PRT-N +V-PAI-3S +PRT-N +N-NSM +V-AAI-3S +P-2DP +T-ASM +N-ASM +CONJ +A-NSM-N +PREP +P-2GP +V-PAI-3S +T-ASM +N-ASM +I-ASN +P-1AS +V-AAN +V-PAI-2P +V-ADI-3S +T-NSM +N-NSM +N-ASN +V-PAI-2S +I-NSM +P-2AS +V-AAN +V-PAI-3S +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DPM +A-ASN +N-ASN +V-AAI-1S +CONJ +A-NPM +V-PAI-2P +PREP +D-ASN +N-NSM +V-RAI-3S +P-2DP +T-ASF +N-ASF +CONJ +PRT-N +PREP +T-GSM +N-GSM +V-PAI-3S +CONJ +PREP +T-GPM +N-GPM +CONJ +PREP +N-DSN +V-PAI-2P +N-ASM +COND +N-ASF +V-PAI-3S +N-NSM +PREP +N-DSN +CONJ +PRT-N +V-APS-3S +T-NSM +N-NSM +N-GSM +P-1DS +V-PAI-2P +CONJ +A-ASM +N-ASM +A-ASM +V-AAI-1S +PREP +N-DSN +PRT-N +V-PAM-2P +PREP +N-ASF +CONJ +T-ASF +A-ASF +N-ASF +V-AAM-2P +CONJ +V-IAI-3P +X-NPM +PREP +T-GPM +N-GPM +PRT-N +D-NSM +V-PAI-3S +R-ASM +V-AAN +V-PAI-3P +CONJ +V-2AAM-2S +N-DSF +V-PAI-3S +CONJ +A-ASN-N +P-DSM +V-PAI-3P +PRT-N +ADV +ADV +V-2AAI-3P +T-NPM +N-NPM +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +D-ASM +V-RAI-1P +ADV-I +V-PAI-3S +CONJ +T-NSM +N-NSM +CONJ +V-PNS-3S +A-NSM-N +V-PAI-3S +ADV-I +V-PAI-3S +CONJ +V-AAI-3S +PREP +T-DSN +N-DSN +V-PAP-NSM +T-NSM +N-NSM +CONJ +V-PAP-NSM +P-1AS-K +V-RAI-2P +CONJ +V-RAI-2P +ADV-I +V-PAI-1S +CONJ +PREP +F-1GSM +PRT-N +V-2RAI-1S +CONJ +V-PAI-3S +A-NSM +T-NSM +V-AAP-NSM +P-1AS +R-ASM +P-2NP +PRT-N +V-RAI-2P +P-1NS +V-RAI-1S +P-ASM +CONJ +PREP +P-GSM +V-PAI-1S +D-NSM-K +P-1AS +V-AAI-3S +CONJ +V-IAI-3P +P-ASM +V-AAN +CONJ +A-NSM-N +V-2AAI-3S +PREP +P-ASM +T-ASF +N-ASF +CONJ +ADV-N +V-2LAI-3S +T-NSF +N-NSF +P-GSM +CONJ +PREP +T-GSM +N-GSM +A-NPM +V-AAI-3P +PREP +P-ASM +CONJ +V-IAI-3P +T-NSM +N-NSM +CONJ +V-2AAS-3S +PRT-N +A-APN-C +N-APN +V-FAI-3S +R-GPN +D-NSM +V-AAI-3S +V-AAI-3P +T-NPM +N-NPM +T-GSM +N-GSM +V-PAP-GSM +PREP +P-GSM +D-APN +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +N-APM +CONJ +V-AAS-3P +P-ASM +CONJ +V-2AAI-3S +T-NSM +N-NSM +ADV +N-ASM +A-ASM +PREP +P-2GP +V-PAI-1S +CONJ +V-PAI-1S +PREP +T-ASM +V-AAP-ASM +P-1AS +V-FAI-2P +P-1AS +CONJ +PRT-N +V-FAI-2P +CONJ +ADV +V-PAI-1S +P-1NS +V-2AAN +P-2NP +PRT-N +V-PNI-2P +CONJ +V-2AAI-3P +T-NPM +A-NPM +PREP +F-3APM +ADV-I +V-PNN +D-NSM +V-PAI-3S +CONJ +P-1NP +PRT-N +V-FAI-1P +P-ASM +PRT-N +V-PAI-3S +PREP +T-ASF +N-ASF +T-GPM +N-GPM +V-PNN +CONJ +V-PAN +T-APM +N-APM +I-NSM +V-PAI-3S +T-NSM +N-NSM +D-NSM +R-ASM +V-2AAI-3S +V-FAI-2P +P-1AS +CONJ +PRT-N +V-FAI-2P +CONJ +ADV +V-PAI-1S +P-1NS +V-2AAN +P-2NP +PRT-N +V-PNI-2P +CONJ +PREP +T-DSF +A-DSF-S +N-DSF +T-DSF +A-DSF +T-GSF +N-GSF +V-LAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3S +V-PAP-NSM +COND +X-NSM +V-PAS-3S +V-PNM-3S +PREP +P-1AS +CONJ +V-PAM-3S +T-NSM +V-PAP-NSM +PREP +P-1AS +ADV +V-2AAI-3S +T-NSF +N-NSF +N-NPM +N-GSN +V-PAP-GSN +PREP +T-GSF +N-GSF +P-GSM +V-FAI-3P +CONJ +D-ASN +V-2AAI-3S +PREP +T-GSN +N-GSN +R-GSN +V-PAN +V-IAI-3P +T-NPM +V-AAP-NPM +PREP +P-ASM +CONJ +ADV-N +V-IAI-3S +N-NSN +CONJ +N-NSM +ADV-N +V-API-3S +CONJ +PREP +T-GSM +N-GSM +V-AAP-NPM +T-GPM +N-GPM +D-GPM +V-IAI-3P +D-NSM +V-PAI-3S +ADV +T-NSM +N-NSM +A-NPM +V-IAI-3P +D-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +T-NPM +V-IAI-3P +CONJ +PRT-N +PREP +T-GSF +N-GSF +T-NSM +N-NSM +V-PNI-3S +PRT-N +T-NSF +N-NSF +V-2AAI-3S +CONJ +PREP +T-GSN +N-GSN +N-PRI +CONJ +PREP +N-PRI +T-GSF +N-GSF +ADV +V-IAI-3S +N-PRI +V-PNI-3S +T-NSM +N-NSM +CONJ +N-NSN +V-2ADI-3S +PREP +T-DSM +N-DSM +PREP +P-ASM +CONJ +X-NPM +PREP +P-GPM +V-IAI-3P +V-AAN +P-ASM +CONJ +A-NSM-N +V-2AAI-3S +PREP +P-ASM +T-APF +N-APF +CONJ +V-2AAI-3P +T-NPM +N-NPM +PREP +T-APM +N-APM +CONJ +N-APM +CONJ +V-2AAI-3P +P-DPM +D-NPM +PREP +I-ASN +PRT-N +V-2AAI-2P +P-ASM +V-ADI-3P +T-NPM +N-NPM +ADV-N +V-AAI-3S +ADV +N-NSM +ADV +D-NSM +T-NSM +N-NSM +V-PAI-3S +CONJ +V-ADI-3P +P-DPM +T-NPM +N-NPM +PRT-N +CONJ +P-2NP +V-RPI-2P +PRT-N +X-NSM +PREP +T-GPM +N-GPM +V-AAI-3S +PREP +P-ASM +PRT +PREP +T-GPM +N-GPM +CONJ +T-NSM +N-NSM +D-NSM +T-NSM +PRT-N +V-PAP-NSM +T-ASM +N-ASM +A-NPM +V-PAI-3P +V-PAI-3S +PREP +P-APM +N-NSM +T-NSM +V-2AAP-NSM +PREP +P-ASM +ADV-C +V-PAP-NSM +A-NSM +PREP +P-GPM +PRT-N +T-NSM +N-NSM +P-1GP +V-PAI-3S +T-ASM +N-ASM +COND +PRT-N +V-AAS-3S +ADV-S +PREP +P-GSM +CONJ +V-2AAS-3S +I-ASN +V-PAI-3S +V-ADI-3P +CONJ +V-2AAI-3P +P-DSM +PRT-N +CONJ +P-2NS +PREP +T-GSF +N-GSF +V-PAI-2S +V-AAM-2S +CONJ +V-2AAM-2S +CONJ +PREP +T-GSF +N-GSF +N-NSM +PRT-N +V-PPI-3S +CONJ +V-AOI-3S +A-NSM +PREP +T-ASM +N-ASM +P-GSM +CONJ +N-NSM +V-AOI-3S +PREP +T-ASN +N-ASN +T-GPF +N-GPF +CONJ +N-GSM +ADV +V-2ADI-3S +PREP +T-ASN +N-ASN +CONJ +A-NSM +T-NSM +N-NSM +V-INI-3S +PREP +P-ASM +CONJ +V-AAP-NSM +V-IAI-3S +P-APM +CONJ +V-PAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +PREP +P-ASM +N-ASF +PREP +N-DSF +V-RPP-ASF +CONJ +V-AAP-NPM +P-ASF +PREP +A-DSN +V-PAI-3P +P-DSM +N-VSM +D-NSF +T-NSF +N-NSF +V-API-3S +A-DSN +V-PPP-NSF +CONJ +PREP +T-DSM +N-DSM +N-NSM +P-1DP +V-ADI-3S +T-APF +D-APF +V-PPN +CONJ +P-2NS +I-ASN +V-PAI-2S +CONJ +D-ASN +V-IAI-3P +V-PAP-NPM +P-ASM +CONJ +V-PAS-3P +V-PAN +P-GSM +CONJ +T-NSM +N-NSM +ADV +V-AAP-NSM +T-DSM +N-DSM +V-IAI-3S +PREP +T-ASF +N-ASF +CONJ +ADV +V-IAI-3P +V-PAP-NPM +P-ASM +V-AAP-NSM +V-2AAI-3S +PREP +P-APM +T-NSM +A-NSM +P-2GP +A-NSM-S +T-ASM +N-ASM +PREP +P-DSF +V-2AAM-3S +CONJ +ADV +ADV +V-AAP-NSM +V-IAI-3S +PREP +T-ASF +N-ASF +CONJ +T-NPM +V-AAP-NPM +CONJ +PREP +T-GSF +N-GSF +V-PPP-NPM +V-INI-3P +A-NSM +ADV +V-AMP-NPM +PREP +T-GPM +A-GPM-C +ADV +T-GPM +A-GPM-S +CONJ +V-API-3S +A-NSM +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +PREP +A-DSN +V-RAP-NSF +CONJ +T-NSM +N-NSM +V-AAP-NSM +CONJ +A-ASM-N +V-ADP-NSM +ADV +T-GSF +N-GSF +V-2AAI-3S +P-DSF +T-NSF +N-NSF +ADV-I +V-PAI-3P +D-NPM +T-NPM +N-NPM +P-2GS +A-NSM-N +P-2AS +V-AAI-3S +CONJ +T-NSF +V-2AAI-3S +A-NSM-N +N-VSM +CONJ +V-2AAI-3S +P-DSF +T-NSM +N-NSM +CONJ-N +P-1NS +P-2AS +V-PAI-1S +V-PNM-2S +CONJ +ADV-N +V-PAM-2S +CONJ +ADV +P-DPM +V-AAI-3S +T-NSM +N-NSM +V-PAP-NSM +P-1NS +V-PAI-1S +T-NSN +N-NSN +T-GSM +N-GSM +T-NSM +V-PAP-NSM +P-1DS +PRT-N +PRT-N +V-AAS-3S +PREP +T-DSF +N-DSF +CONJ +V-FAI-3S +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +V-2AAI-3P +P-DSM +T-NPM +N-NPM +P-2NS +PREP +F-2GSM +V-PAI-2S +T-NSF +N-NSF +P-2GS +PRT-N +V-PAI-3S +A-NSF +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DPM +COND-K +P-1NS +V-PAS-1S +PREP +F-1GSM +A-NSF +V-PAI-3S +T-NSF +N-NSF +P-1GS +CONJ +V-RAI-1S +ADV-I +V-2AAI-1S +CONJ +ADV-I +V-PAI-1S +CONJ +P-2NP +PRT-N +V-RAI-2P +ADV-I +V-PNI-1S +PRT +ADV-I +V-PAI-1S +P-2NP +PREP +T-ASF +N-ASF +V-PAI-2P +P-1NS +PRT-N +V-PAI-1S +A-ASM-N +CONJ +COND +CONJ +V-PAS-1S +P-1NS +T-NSF +N-NSF +T-NSF +S-1SNSF +A-NSF +V-PAI-3S +CONJ +A-NSM +PRT-N +V-PAI-1S +CONJ +P-1NS +CONJ +T-NSM +V-AAP-NSM +P-1AS +CONJ +CONJ +PREP +T-DSM +N-DSM +T-DSM +S-2PDSM +V-RPI-3S +CONJ +A-NUI +N-GPM +T-NSF +N-NSF +A-NSF +V-PAI-3S +P-1NS +V-PAI-1S +T-NSM +V-PAP-NSM +PREP +F-1GSM +CONJ +V-PAI-3S +PREP +P-1GS +T-NSM +V-AAP-NSM +P-1AS +N-NSM +CONJ +V-IAI-3P +P-DSM +ADV-I +V-PAI-3S +T-NSM +N-NSM +P-2GS +V-ADI-3S +N-NSM +CONJ-N +P-1AS +V-RAI-2P +CONJ-N +T-ASM +N-ASM +P-1GS +COND +P-1AS +V-2LAI-2P +PRT +CONJ +T-ASM +N-ASM +P-1GS +V-2LAI-2P +D-APN +T-APN +N-APN +V-AAI-3S +PREP +T-DSN +N-DSN +V-PAP-NSM +PREP +T-DSN +N-DSN +CONJ +A-NSM-N +V-AAI-3S +P-ASM +CONJ +ADV-N +V-2LAI-3S +T-NSF +N-NSF +P-GSM +CONJ +V-2AAI-3S +ADV +P-DPM +P-1NS +V-PAI-1S +CONJ +V-FAI-2P +P-1AS +CONJ +PREP +T-DSF +N-DSF +P-2GP +V-FDI-2P +ADV +P-1NS +V-PAI-1S +V-2AAN +P-2NP +PRT-N +V-PNI-2P +CONJ +V-IAI-3P +T-NPM +A-NPM +PRT-I +V-FAI-3S +F-3ASM +CONJ +V-PAI-3S +ADV +P-1NS +V-PAI-1S +V-2AAN +P-2NP +PRT-N +V-PNI-2P +CONJ +V-IAI-3S +P-DPM +P-2NP +PREP +T-GPM +ADV +V-PAI-2P +P-1NS +PREP +T-GPM +ADV +V-PAI-1S +P-2NP +PREP +D-GSM +T-GSM +N-GSM +V-PAI-2P +P-1NS +PRT-N +V-PAI-1S +PREP +T-GSM +N-GSM +D-GSM +CONJ +V-2AAI-1S +P-2DP +CONJ +V-FDI-2P +PREP +T-DPF +N-DPF +P-2GP +CONJ +COND +PRT-N +V-AAS-2P +CONJ +P-1NS +V-PAI-1S +V-FDI-2P +PREP +T-DPF +N-DPF +P-2GP +CONJ +V-IAI-3P +P-DSM +P-2NS +I-NSM +V-PAI-2S +V-2AAI-3S +P-DPM +T-NSM +N-NSM +X-ASN +R-ASN +T-ASF +N-ASF +CONJ +V-PAI-1S +P-2DP +V-PAI-1S +A-APN +PREP +P-2GP +V-PAN +CONJ +V-PAN +CONJ +T-NSM +V-AAP-NSM +P-1AS +A-NSM +V-PAI-3S +R-APN +P-1NS-K +V-AAI-1S +PREP +P-GSM +D-APN +V-PAI-1S +PREP +T-ASM +N-ASM +PRT-N +V-2AAI-3P +CONJ +T-ASM +N-ASM +P-DPM +V-IAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-AAS-2P +T-ASM +N-ASM +T-GSM +N-GSM +ADV +V-FDI-2P +CONJ +P-1NS +V-PAI-1S +CONJ +PREP +F-1GSM +V-PAI-1S +A-ASN-N +CONJ +ADV +V-AAI-3S +P-1AS +T-NSM +N-NSM +D-APN +V-PAI-1S +CONJ +T-NSM +V-AAP-NSM +P-1AS +PREP +P-1GS +V-PAI-3S +PRT-N +V-AAI-3S +P-1AS +A-ASM +CONJ +P-1NS +T-APN +A-APN +P-DSM +V-PAI-1S +ADV +D-APN +P-GSM +V-PAP-GSM +A-NPM +V-AAI-3P +PREP +P-ASM +CONJ +V-IAI-3S +T-NSM +N-NSM +PREP +T-APM +V-RAP-APM +P-DSM +A-APM +COND +P-2NP +V-AAS-2P +PREP +T-DSM +N-DSM +T-DSM +S-1SDSM +ADV +N-NPM +P-1GS +V-PAI-2P +CONJ +V-FDI-2P +T-ASF +N-ASF +CONJ +T-NSF +N-NSF +V-FAI-3S +P-2AP +V-ADI-3P +PREP +P-ASM +N-NSN +N-PRI +V-PAI-1P +CONJ +A-DSM-N +V-RAI-1P +ADV +ADV-I +P-2NS +V-PAI-2S +CONJ +A-NPM +V-FDI-2P +V-ADI-3S +P-DPM +T-NSM +N-NSM +HEB +HEB +V-PAI-1S +P-2DP +CONJ +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +V-PAI-3S +N-NSM +T-GSF +N-GSF +CONJ +T-NSM +N-NSM +PRT-N +V-PAI-3S +PREP +T-DSF +N-DSF +PREP +T-ASM +N-ASM +T-NSM +N-NSM +V-PAI-3S +PREP +T-ASM +N-ASM +CONJ +COND +T-NSM +N-NSM +P-2AP +V-AAS-3S +ADV +A-NPM +V-FDI-2P +V-RAI-1S +CONJ +N-NSN +N-PRI +V-PAI-2P +CONJ +V-PAI-2P +P-1AS +V-AAN +CONJ +T-NSM +N-NSM +T-NSM +S-1SNSM +PRT-N +V-PAI-3S +PREP +P-2DP +R-APN +P-1NS +V-RAI-1S-ATT +PREP +T-DSM +N-DSM +V-PAI-1S +CONJ +CONJ +P-2NP +R-APN +V-AAI-2P +PREP +T-GSM +N-GSM +V-PAI-2P +V-ADI-3P +CONJ +V-2AAI-3P +P-DSM +T-NSM +N-NSM +P-1GP +N-PRI +V-PAI-3S +V-PAI-3S +P-DPM +T-NSM +N-NSM +COND +N-NPN +T-GSM +N-PRI +V-PAI-2P +T-APN +N-APN +T-GSM +N-PRI +V-PAM-2P +CONJ +ADV +V-PAI-2P +V-AAN +P-1AS +N-ASM +R-NSM +T-ASF +N-ASF +P-2DP +V-RAI-1S +R-ASF +V-AAI-1S +PREP +T-GSM +N-GSM +D-ASN +N-PRI +PRT-N +V-AAI-3S +P-2NP +V-PAI-2P +T-APN +N-APN +T-GSM +N-GSM +P-2GP +V-2AAI-3P +P-DSM +P-1NP +PREP +N-GSF +PRT-N +V-API-1P +A-ASM +N-ASM +T-ASM +N-ASM +V-PAI-1P +V-2AAI-3S +P-DPM +T-NSM +N-NSM +COND +T-NSM +N-NSM +N-NSM +P-2GP +V-IAI-3S +PRT +V-IAI-2P +P-1AS +CONJ +P-1NS +PREP +T-GSM +N-GSM +V-2AAI-1S +CONJ +V-PAI-1S +CONJ +CONJ-N +PREP +F-1GSM +V-2RAI-1S +CONJ +D-NSM +P-1AS +V-AAI-3S +PREP +I-ASN +T-ASF +N-ASF +T-ASF +S-1SASF +PRT-N +V-PAI-2P +CONJ +PRT-N +V-PNI-2P +V-PAN +T-ASM +N-ASM +T-ASM +S-1SASM +P-2NP +PREP +T-GSM +N-GSM +T-GSM +A-GSM +V-PAI-2P +CONJ +T-APF +N-APF +T-GSM +N-GSM +P-2GP +V-PAN +V-PAI-2P +D-NSM +A-NSM +V-IAI-3S +PREP +N-GSF +CONJ +PREP +T-DSF +N-DSF +PRT-N +V-IAI-3S +CONJ +PRT-N +V-PAI-3S +N-NSF +PREP +P-DSM +CONJ +V-PAS-3S +T-ASN +N-ASN +PREP +T-GPN +A-GPN +V-PAI-3S +CONJ +N-NSM +V-PAI-3S +CONJ +T-NSM +N-NSM +P-GSM +CONJ +P-1NS +CONJ +T-ASF +N-ASF +V-PAI-1S +PRT-N +V-PAI-2P +P-1DS +I-NSM +PREP +P-2GP +V-PAI-3S +P-1AS +PREP +N-GSF +COND +N-ASF +V-PAI-1S +PREP +I-ASN +P-2NP +PRT-N +V-PAI-2P +P-1DS +T-NSM +V-PAP-NSM +PREP +T-GSM +N-GSM +T-APN +N-APN +T-GSM +N-GSM +V-PAI-3S +PREP +D-ASN +P-2NP +PRT-N +V-PAI-2P +CONJ +PREP +T-GSM +N-GSM +PRT-N +V-PAI-2P +V-ADI-3P +T-NPM +A-NPM +CONJ +V-2AAI-3P +P-DSM +PRT-N +ADV +V-PAI-1P +P-1NP +CONJ +N-NSM +V-PAI-2S +P-2NS +CONJ +N-ASN +V-PAI-2S +V-ADI-3S +N-NSM +P-1NS +N-ASN +PRT-N +V-PAI-1S +CONJ +V-PAI-1S +T-ASM +N-ASM +P-1GS +CONJ +P-2NP +V-PAI-2P +P-1AS +CONJ +P-1NS +PRT-N +V-PAI-1S +T-ASF +N-ASF +P-1GS +V-PAI-3S +T-NSM +V-PAP-NSM +CONJ +V-PAP-NSM +HEB +HEB +V-PAI-1S +P-2DP +COND +X-NSM +T-ASM +S-1SASM +N-ASM +V-AAS-3S +N-ASM +PRT-N +PRT-N +V-AAS-3S +PREP +T-ASM +N-ASM +V-2AAI-3P +P-DSM +T-NPM +A-NPM +ADV +V-RAI-1P +CONJ +N-ASN +V-PAI-2S +N-PRI +V-2AAI-3S +CONJ +T-NPM +N-NPM +CONJ +P-2NS +V-PAI-2S +COND +X-NSM +T-ASM +N-ASM +P-1GS +V-AAS-3S +PRT-N +PRT-N +V-ADS-3S +N-GSM +PREP +T-ASM +N-ASM +PRT-N +P-2NS +A-NSM-C +V-PAI-2S +T-GSM +N-GSM +P-1GP +N-PRI +R-NSM +V-2AAI-3S +CONJ +T-NPM +N-NPM +V-2AAI-3P +I-ASM +F-2ASM +V-PAI-2S +V-ADI-3S +N-NSM +COND +P-1NS +V-AAS-1S +F-1ASM +T-NSF +N-NSF +P-1GS +A-NSN-N +V-PAI-3S +V-PAI-3S +T-NSM +N-NSM +P-1GS +T-NSM +V-PAP-NSM +P-1AS +R-ASM +P-2NP +V-PAI-2P +CONJ +N-NSM +P-1GP +V-PAI-3S +CONJ +PRT-N +V-RAI-2P +P-ASM +CONJ +P-1NS +V-RAI-1S +P-ASM +COND-K +V-2AAS-1S +CONJ +PRT-N +V-RAI-1S +P-ASM +V-FDI-1S +A-NSM +P-2DP +N-NSM +CONJ +V-RAI-1S +P-ASM +CONJ +T-ASM +N-ASM +P-GSM +V-PAI-1S +N-PRI +T-NSM +N-NSM +P-2GP +V-ADI-3S +CONJ +V-2AAS-3S +T-ASF +N-ASF +T-ASF +S-1SASF +CONJ +V-2AAI-3S +CONJ +V-2AOI-3S +CONJ +V-2AAI-3P +T-NPM +A-NPM +PREP +P-ASM +A-NUI +N-APN +ADV-N +V-PAI-2S +CONJ +N-PRI +V-RAI-2S-ATT +V-2AAI-3S +P-DPM +N-NSM +HEB +HEB +V-PAI-1S +P-2DP +ADV +N-PRI +V-2ADN +P-1NS +V-PAI-1S +CONJ +V-AAI-3P +N-APM +CONJ +V-2AAS-3P +PREP +P-ASM +CONJ +N-NSM +V-2API-3S +CONJ +V-2AAI-3S +PREP +T-GSN +N-GSN +CONJ +V-PAP-NSM +V-2AAI-3S +N-ASM +A-ASM +PREP +N-GSF +CONJ +V-AAI-3P +P-ASM +T-NPM +N-NPM +P-GSM +V-PAP-NPM +HEB +I-NSM +V-2AAI-3S +D-NSM +PRT +T-NPM +N-NPM +P-GSM +CONJ +A-NSM +V-APS-3S +V-ADI-3S +N-NSM +CONJ-N +D-NSM +V-2AAI-3S +CONJ-N +T-NPM +N-NPM +P-GSM +CONJ +CONJ +V-APS-3S +T-NPN +N-NPN +T-GSM +N-GSM +PREP +P-DSM +V-PAI-3S +P-1AP +V-PNN +T-APN +N-APN +T-GSM +V-AAP-GSM +P-1AS +ADV +N-NSF +V-PAI-3S +V-PNI-3S +N-NSF +ADV +A-NSM-N +V-PNI-3S +V-PNN +CONJ +PREP +T-DSM +N-DSM +V-PAS-1S +V-PAI-1S +N-NSN +T-GSM +N-GSM +D-APN +V-2AAP-NSM +V-AAI-3S +ADV +CONJ +V-AAI-3S +N-ASM +PREP +T-GSN +N-GSN +CONJ +V-AAI-3S +P-GSM +T-ASM +N-ASM +PREP +T-APM +N-APM +CONJ +V-2AAI-3S +P-DSM +V-PAM-2S +V-AMM-2S +PREP +T-ASF +N-ASF +T-GSM +N-PRI +R-NSN +V-PPI-3S +V-RPP-NSM +CONJ +V-2AAI-3S +CONJ +V-AMI-3S +CONJ +V-2AAI-3S +V-PAP-NSM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +V-PAP-NPM +P-ASM +T-ASN +A-ASN-C +CONJ +N-NSM +V-IAI-3S +V-IAI-3P +PRT-N +D-NSM +V-PAI-3S +T-NSM +V-PNP-NSM +CONJ +V-PAP-NSM +A-NPM +V-IAI-3P +CONJ +D-NSM +V-PAI-3S +A-NPM +V-IAI-3P +PRT-N +CONJ +A-NSM +P-DSM +V-PAI-3S +D-NSM +V-IAI-3S +CONJ +P-1NS +V-PAI-1S +CONJ +V-IAI-3P +P-DSM +CONJ +ADV-I +V-API-3P +P-2GS +T-NPM +N-NPM +V-ADI-3S +D-NSM +T-NSM +N-NSM +T-NSM +V-PPP-NSM +N-NSM +N-ASM +V-AAI-3S +CONJ +V-AAI-3S +P-1GS +T-APM +N-APM +CONJ +V-2AAI-3S +P-1DS +CONJ +V-PAM-2S +PREP +T-ASM +N-PRI +CONJ +V-AMM-2S +CONJ +V-2AAP-NSM +CONJ +V-AMP-NSM +V-AAI-1S +CONJ +V-2AAI-3P +P-DSM +ADV-I +V-PAI-3S +D-NSM +V-PAI-3S +PRT-N +V-RAI-1S +V-PAI-3P +P-ASM +T-ASM +PRT +A-ASM +PREP +T-APM +N-APM +CONJ +V-IAI-3S +N-NSN +PREP +R-DSF +N-DSF +T-ASM +N-ASM +V-AAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3S +P-GSM +T-APM +N-APM +CONJ +ADV +V-IAI-3P +P-ASM +CONJ +T-NPM +N-NPM +ADV-I +V-AAI-3S +CONJ +T-NSM +V-2AAI-3S +P-DPM +N-ASM +V-AAI-3S +PREP +P-1GS +T-APM +N-APM +CONJ +V-AMI-1S +CONJ +V-PAI-1S +CONJ +V-IAI-3P +PREP +T-GPM +N-GPM +X-NPM +PRT-N +V-PAI-3S +PREP +N-GSM +D-NSM +T-NSM +N-NSM +CONJ +T-ASN +N-ASN +PRT-N +V-PAI-3S +A-NPM +V-IAI-3P +ADV-I +V-PNI-3S +N-NSM +A-NSM +D-APN +N-APN +V-PAN +CONJ +N-NSN +V-IAI-3S +PREP +P-DPM +CONJ +V-PAI-3P +T-DSM +A-DSM +ADV +I-ASN +P-2NS +V-PAI-2S +PREP +P-GSM +CONJ +V-AAI-3S +P-2GS +T-APM +N-APM +CONJ +T-NSM +V-2AAI-3S +CONJ +N-NSM +V-PAI-3S +CONJ +PRT-N +V-AAI-3P +T-NPM +A-NPM +PREP +P-GSM +CONJ +V-IAI-3S +A-NSM +CONJ +V-AAI-3S +ADV +R-GSN-ATT +V-AAI-3P +T-APM +N-APM +P-GSM +T-GSM +V-AAP-GSM +CONJ +V-AAI-3P +P-APM +V-PAP-NPM +D-NSM +V-PAI-3S +T-NSM +N-NSM +P-2GP +R-ASM +P-2NP +V-PAI-2P +CONJ +A-NSM +V-API-3S +CONJ +ADV-I +V-PAI-3S +ADV +CONJ +V-ADI-3P +T-NPM +N-NPM +P-GSM +CONJ +V-2AAI-3P +V-RAI-1P +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +P-1GP +CONJ +CONJ +A-NSM +V-API-3S +CONJ +ADV-I +ADV +V-PAI-3S +PRT-N +V-RAI-1P +PRT +I-NSM +V-AAI-3S +P-GSM +T-APM +N-APM +P-1NP +PRT-N +V-RAI-1P +P-ASM +V-AAM-2P +N-ASF +V-PAI-3S +P-NSM +PREP +F-3GSM +V-FAI-3S +D-APN +V-2AAI-3P +T-NPM +N-NPM +P-GSM +CONJ +V-INI-3P +T-APM +A-APM +CONJ +ADV +V-LMI-3P +T-NPM +A-NPM +CONJ +COND +X-NSM +P-ASM +V-AAS-3S +N-ASM +A-NSM +V-2ADS-3S +PREP +D-ASN +T-NPM +N-NPM +P-GSM +V-2AAI-3P +CONJ +N-ASF +V-PAI-3S +P-ASM +V-AAM-2P +CONJ +V-AAI-3P +T-ASM +N-ASM +PREP +A-GSN +R-NSM +V-IAI-3S +A-NSM +CONJ +V-2AAI-3P +P-DSM +V-2AAM-2S +N-ASF +T-DSM +N-DSM +P-1NP +V-RAI-1P +CONJ +D-NSM +T-NSM +N-NSM +A-NSM +V-PAI-3S +CONJ +V-ADI-3S +D-NSM +COND +A-NSM +V-PAI-3S +PRT-N +V-RAI-1S +A-ASN +V-RAI-1S +CONJ +A-NSM +V-PAP-NSM +ADV +V-PAI-1S +CONJ +V-2AAI-3P +P-DSM +I-ASN +V-AAI-3S +P-2DS +ADV-I +V-AAI-3S +P-2GS +T-APM +N-APM +V-ADI-3S +P-DPM +V-2AAI-1S +P-2DP +ADV +CONJ +PRT-N +V-AAI-2P +I-ASN +ADV +V-PAI-2P +V-PAN +PRT-N +CONJ +P-2NP +V-PAI-2P +P-GSM +N-NPM +V-2ADN +CONJ +V-AAI-3P +P-ASM +CONJ +V-2AAI-3P +P-2NS +N-NSM +D-GSM +V-PAI-2S +CONJ +P-1NP +T-GSM +N-GSM +N-NPM +V-PAI-1P +P-1NP +V-RAI-1P +CONJ +N-DSM +V-RAI-3S +T-NSM +N-NSM +CONJ +D-ASM +PRT-N +V-RAI-1P +ADV-I +V-PAI-3S +V-ADI-3S +T-NSM +N-NSM +CONJ +V-2AAI-3S +P-DPM +CONJ +PREP +D-DSN +T-NSN +A-NSN +V-PAI-3S +CONJ +P-2NP +PRT-N +V-RAI-2P +ADV-I +V-PAI-3S +CONJ +V-AAI-3S +P-1GS +T-APM +N-APM +V-RAI-1P +CONJ +T-NSM +N-NSM +A-GPM +PRT-N +V-PAI-3S +CONJ +COND +X-NSM +A-NSM +V-PAS-3S +CONJ +T-ASN +N-ASN +P-GSM +V-PAS-3S +D-GSM +V-PAI-3S +PREP +T-GSM +N-GSM +PRT-N +V-API-3S +CONJ +V-AAI-3S +X-NSM +N-APM +A-GSM +V-RPP-GSM +COND +PRT-N +V-IAI-3S +D-NSM +PREP +N-GSM +PRT-N +V-INI-3S-ATT +V-PAN +A-ASN-N +V-ADI-3P +CONJ +V-2AAI-3P +P-DSM +PREP +N-DPF +P-2NS +V-API-2S +A-NSM +CONJ +P-2NS +V-PAI-2S +P-1AP +CONJ +V-2AAI-3P +P-ASM +ADV +V-AAI-3S +N-NSM +CONJ +V-2AAI-3P +P-ASM +ADV +CONJ +V-2AAP-NSM +P-ASM +V-2AAI-3S +P-2NS +V-PAI-2S +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-ADI-3S +D-NSM +CONJ +V-2AAI-3S +CONJ +I-NSM +V-PAI-3S +N-VSM +CONJ +V-AAS-1S +PREP +P-ASM +V-2AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +V-RAI-2S-ATT +P-ASM +CONJ +T-NSM +V-PAP-NSM +PREP +P-2GS +D-NSM +V-PAI-3S +CONJ +T-NSM +V-IAI-3S +V-PAI-1S +N-VSM +CONJ +V-AAI-3S +P-DSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +N-ASN +P-1NS +PREP +T-ASM +N-ASM +D-ASM +V-2AAI-1S +CONJ +T-NPM +PRT-N +V-PAP-NPM +V-PAS-3P +CONJ +T-NPM +V-PAP-NPM +A-NPM +V-2ADS-3P +V-AAI-3P +D-APN +PREP +T-GPM +N-GPM +T-NPM +PREP +P-GSM +V-PAP-NPM +CONJ +V-2AAI-3P +P-DSM +PRT-N +CONJ +P-1NP +A-NPM +V-PAI-1P +V-2AAI-3S +P-DPM +T-NSM +N-NSM +COND +A-NPM +V-IAI-2P +PRT +PRT-N +V-IAI-2P +N-ASF +CONJ +ADV +V-PAI-2P +CONJ +V-PAI-1P +T-NSF +N-NSF +P-2GP +V-PAI-3S +HEB +HEB +V-PAI-1S +P-2DP +T-NSM +PRT-N +V-PNP-NSM +PREP +T-GSF +N-GSF +PREP +T-ASF +N-ASF +T-GPN +N-GPN +CONJ +V-PAP-NSM +ADV +D-NSM +N-NSM +V-PAI-3S +CONJ +N-NSM +CONJ +T-NSM +V-PNP-NSM +PREP +T-GSF +N-GSF +V-PAI-3S +N-NSM +T-GPN +N-GPN +D-DSM +T-NSM +N-NSM +V-PAI-3S +CONJ +T-NPN +N-NPN +T-GSF +N-GSF +P-GSM +V-PAI-3S +CONJ +T-APN +A-APN +N-APN +V-PAI-3S +PREP +N-ASN +CONJ +V-PAI-3S +P-APN +CONJ +T-APN +A-APN +A-APN +V-2AAS-3S +PREP +P-GPN +V-PNI-3S +CONJ +T-NPN +N-NPN +P-DSM +V-PAI-3S +CONJ +V-RAI-3P +T-ASF +N-ASF +P-GSM +CONJ +A-DSM +PRT-N +PRT-N +V-FAI-3P +CONJ +V-FDI-3P +PREP +P-GSM +CONJ +PRT-N +V-RAI-3P +T-GPM +A-GPM +T-ASF +N-ASF +D-ASF +T-ASF +N-ASF +V-2AAI-3S +P-DPM +T-NSM +N-NSM +CONJ +D-NPM +PRT-N +V-2AAI-3P +I-NPN +V-IAI-3S +R-APN +V-IAI-3S +P-DPM +CONJ +V-2AAI-3S +ADV +T-NSM +N-NSM +HEB +HEB +V-PAI-1S +P-2DP +CONJ +P-1NS +V-PAI-1S +T-NSF +N-NSF +T-GPN +N-GPN +A-NPM +K-NPM +V-2AAI-3P +PREP +P-1GS +N-NPM +V-PAI-3P +CONJ +N-NPM +CONJ +PRT-N +V-AAI-3P +P-GPM +T-NPN +N-NPN +P-1NS +V-PAI-1S +T-NSF +N-NSF +COND +PREP +P-1GS +X-NSM +V-2AAS-3S +V-FPI-3S +CONJ +V-FDI-3S +CONJ +V-FDI-3S +CONJ +N-ASF +V-FAI-3S +T-NSM +N-NSM +PRT-N +V-PNI-3S +COND +PRT-N +CONJ +V-AAS-3S +CONJ +V-AAS-3S +CONJ +V-AAS-3S +P-1NS +V-2AAI-1S +CONJ +N-ASF +V-PAS-3P +CONJ +A-ASN +V-PAS-3P +P-1NS +V-PAI-1S +T-NSM +N-NSM +T-NSM +A-NSM +T-NSM +N-NSM +T-NSM +A-NSM +T-ASF +N-ASF +P-GSM +V-PAI-3S +PREP +T-GPN +N-GPN +T-NSM +N-NSM +CONJ +PRT-N +V-PAP-NSM +N-NSM +R-GSM +PRT-N +V-PAI-3S +T-NPN +N-NPN +A-NPN +V-PAI-3S +T-ASM +N-ASM +V-PNP-ASM +CONJ +V-PAI-3S +T-APN +N-APN +CONJ +V-PAI-3S +CONJ +T-NSM +N-NSM +V-PAI-3S +P-APN +CONJ +V-PAI-3S +CONJ +N-NSM +V-PAI-3S +CONJ +PRT-N +V-PAI-3S +P-DSM +PREP +T-GPN +N-GPN +P-1NS +V-PAI-1S +T-NSM +N-NSM +T-NSM +A-NSM +CONJ +V-PAI-1S +T-APN +S-1SAPN +CONJ +V-PAI-3P +P-1AS +T-NPN +S-1SNPN +ADV +V-PAI-3S +P-1AS +T-NSM +N-NSM +P-1NS-K +V-PAI-1S +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +P-1GS +V-PAI-1S +PREP +T-GPN +N-GPN +CONJ +A-APN +N-APN +V-PAI-1S +R-NPN +PRT-N +V-PAI-3S +PREP +T-GSF +N-GSF +D-GSF +D-APN-K +P-1AS +V-2AAN +V-PAI-3S +CONJ +T-GSF +N-GSF +P-1GS +V-FAI-3P +CONJ +V-FDI-3S +A-NSF +N-NSF +A-NSM +N-NSM +PREP +D-ASN +P-1AS +T-NSM +N-NSM +V-PAI-3S +CONJ +P-1NS +V-PAI-1S +T-ASF +N-ASF +P-1GS +CONJ +ADV +V-2AAS-1S +P-ASF +A-NSM-N +V-AAI-3S +P-ASF +PREP +P-1GS +CONJ +P-1NS +V-PAI-1S +P-ASF +PREP +F-1GSM +N-ASF +V-PAI-1S +V-2AAN +P-ASF +CONJ +N-ASF +V-PAI-1S +ADV +V-2AAN +P-ASF +D-ASF +T-ASF +N-ASF +V-2AAI-1S +PREP +T-GSM +N-GSM +P-1GS +N-NSN +ADV +V-2ADI-3S +PREP +T-DPM +A-DPM +PREP +T-APM +N-APM +D-APM +CONJ +V-IAI-3P +A-NPM +PREP +P-GPM +N-ASN +V-PAI-3S +CONJ +V-PNI-3S +I-ASN +P-GSM +V-PAI-2P +A-NPM +V-IAI-3P +D-NPN +T-NPN +N-NPN +PRT-N +V-PAI-3S +V-PNP-GSM +PRT-N +N-NSN +V-PNI-3S +A-GPM +N-APM +V-AAN +V-2ADI-3S +ADV +T-NPN +N-NPN +PREP +T-DPN +N-DPN +N-NSM +V-IAI-3S +CONJ +V-IAI-3S +T-NSM +N-NSM +PREP +T-DSN +N-DSN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +V-AAI-3P +P-ASM +T-NPM +A-NPM +CONJ +V-IAI-3P +P-DSM +ADV +PRT-I +T-ASF +N-ASF +P-1GP +V-PAI-2S +COND +P-2NS +V-PAI-2S +T-NSM +N-NSM +V-2AAM-2S +P-1DP +N-DSF +V-ADI-3S +P-DPM +T-NSM +N-NSM +V-2AAI-1S +P-2DP +CONJ +PRT-N +V-PAI-2P +T-NPN +N-NPN +R-APN +P-1NS +V-PAI-1S +PREP +T-DSN +N-DSN +T-GSM +N-GSM +P-1GS +D-NPN +V-PAI-3S +PREP +P-1GS +CONJ +P-2NP +PRT-N +V-PAI-2P +CONJ +PRT-N +V-PAI-2P +PREP +T-GPN +N-GPN +T-GPN +S-1SGPN +T-NPN +N-NPN +T-NPN +S-1SNPN +T-GSF +N-GSF +P-1GS +V-PAI-3P +P-1NS-K +V-PAI-1S +P-APN +CONJ +V-PAI-3P +P-1DS +P-1NS-K +V-PAI-1S +P-DPM +N-ASF +A-ASF +CONJ +PRT-N +PRT-N +V-2AMS-3P +PREP +T-ASM +N-ASM +CONJ +PRT-N +V-FAI-3S +X-NSM +P-APN +PREP +T-GSF +N-GSF +P-1GS +T-NSM +N-NSM +P-1GS +R-ASN +V-RAI-3S +P-1DS +A-GPN +A-NSN-C +V-PAI-3S +CONJ +A-NSM-N +V-PNI-3S +V-PAN +PREP +T-GSF +N-GSF +T-GSM +N-GSM +P-1NS +CONJ +T-NSM +N-NSM +A-NSN +V-PAI-1P +V-AAI-3P +ADV +N-APM +T-NPM +A-NPM +CONJ +V-AAS-3P +P-ASM +V-ADI-3S +P-DPM +T-NSM +N-NSM +A-APN +N-APN +A-APN +V-AAI-1S +P-2DP +PREP +T-GSM +N-GSM +PREP +I-ASN +P-GPN +N-ASN +P-1AS +V-PAI-2P +V-ADI-3P +P-DSM +T-NPM +A-NPM +PREP +A-GSN +N-GSN +PRT-N +V-PAI-1P +P-2AS +CONJ +PREP +N-GSF +CONJ +CONJ +P-2NS +N-NSM +V-PAP-NSM +V-PAI-2S +F-2ASM +N-ASM +V-ADI-3S +P-DPM +T-NSM +N-NSM +PRT-N +V-PAI-3S +V-RPP-NSN +PREP +T-DSM +N-DSM +P-2GP +CONJ +P-1NS +V-2AAI-1S +N-NPM +V-PAI-2P +COND +D-APM +V-2AAI-3S +N-APM +PREP +R-APM +T-NSM +N-NSM +T-GSM +N-GSM +V-2ADI-3S +CONJ +PRT-N +V-PNI-3S +V-APN +T-NSF +N-NSF +R-ASM +T-NSM +N-NSM +V-AAI-3S +CONJ +V-AAI-3S +PREP +T-ASM +N-ASM +P-2NP +V-PAI-2P +CONJ +V-PAI-2S +CONJ +V-2AAI-1S +N-NSM +T-GSM +N-GSM +V-PAI-1S +COND +PRT-N +V-PAI-1S +T-APN +N-APN +T-GSM +N-GSM +P-1GS +PRT-N +V-PAM-2P +P-1DS +CONJ +COND +V-PAI-1S +COND-K +P-1DS +PRT-N +V-PAS-2P +T-DPN +N-DPN +V-PAM-2P +CONJ +V-2AAS-2P +CONJ +V-PAS-2P +CONJ +PREP +P-1DS +T-NSM +N-NSM +P-1NS-K +PREP +T-DSM +N-DSM +CONJ +V-IAI-3P +P-ASM +V-AAN +ADV +CONJ +V-2AAI-3S +PREP +T-GSF +N-GSF +P-GPM +CONJ +V-2AAI-3S +ADV +ADV +T-GSM +N-GSM +PREP +T-ASM +N-ASM +ADV +V-IAI-3S +V-PAP-NSM +N-NSM +T-ASN +A-ASN-S +CONJ +V-IAI-3S +ADV +CONJ +A-NPM +V-2AAI-3P +PREP +P-ASM +CONJ +V-IAI-3P +CONJ +PRT +N-NSM +N-ASN +A-ASN-N +V-AAI-3S +CONJ +A-NPN +K-APN +V-2AAI-3S +N-NSM +PREP +D-GSM +A-NPN +V-IAI-3S +CONJ +A-NPM +V-AAI-3P +PREP +P-ASM +ADV +CONJ +V-IAI-3S +X-NSM +V-PAP-NSM +N-NSM +PREP +N-GSF +PREP +T-GSF +N-GSF +N-GSF +CONJ +N-GSF +T-GSF +N-GSF +P-GSF +CONJ +V-IAI-3S +N-PRI +T-NSF +V-AAP-NSF +T-ASM +N-ASM +N-DSN +CONJ +V-AAP-NSF +T-APM +N-APM +P-GSM +T-DPF +N-DPF +P-GSF +R-GSF +T-NSM +N-NSM +N-NSM +V-IAI-3S +CONJ +V-AAI-3P +T-NPF +N-NPF +PREP +P-ASM +V-PAP-NPF +N-VSM +V-2AAM-2S +R-ASM +V-PAI-2S +V-PAI-3S +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +D-NSF +T-NSF +N-NSF +PRT-N +V-PAI-3S +PREP +N-ASM +CONJ +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-APS-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +P-GSF +CONJ +V-IAI-3S +T-NSM +N-NSM +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +P-GSF +CONJ +T-ASM +N-ASM +CONJ +ADV +V-AAI-3S +CONJ +V-PAI-3S +PRT +ADV +V-AAI-3S +PREP +R-DSM +V-IAI-3S +N-DSM +A-NUI +N-APF +ADV +PREP +D-ASN +V-PAI-3S +T-DPM +N-DPM +V-PAS-1P +PREP +T-ASF +N-ASF +ADV +V-PAI-3P +P-DSM +T-NPM +N-NPM +HEB +ADV +V-IAI-3P +P-2AS +V-AAN +T-NPM +A-NPM +CONJ +ADV +V-PAI-2S +ADV +V-ADI-3S +N-NSM +PRT-I +A-NUI +N-NPF +V-PAI-3P +T-GSF +N-GSF +COND +X-NSM +V-PAS-3S +PREP +T-DSF +N-DSF +PRT-N +V-PAI-3S +CONJ +T-ASN +N-ASN +T-GSM +N-GSM +D-GSM +V-PAI-3S +CONJ +COND +X-NSM +V-PAS-3S +PREP +T-DSF +N-DSF +V-PAI-3S +CONJ +T-NSN +N-NSN +PRT-N +V-PAI-3S +PREP +P-DSM +D-APN +V-2AAI-3S +CONJ +PREP +D-ASN +V-PAI-3S +P-DPM +N-NSM +T-NSM +A-NSM +P-1GP +V-RPI-3S +CONJ +V-PNI-1S +CONJ +V-AAS-1S +P-ASM +CONJ +V-2AAI-3P +T-NPM +N-NPM +P-DSM +N-VSM +COND +V-RPI-3S +V-FPI-3S +CONJ +V-LAI-3S-ATT +T-NSM +N-NSM +PREP +T-GSM +N-GSM +P-GSM +CONJ +D-NPM +V-AAI-3P +CONJ +PREP +T-GSF +N-GSF +T-GSM +N-GSM +V-PAI-3S +CONJ +ADV +V-2AAI-3S +P-DPM +T-NSM +N-NSM +N-DSF +N-NSM +V-2AAI-3S +CONJ +V-PAI-1S +PREP +P-2AP +CONJ +V-AAS-2P +CONJ +PRT-N +V-IMI-1S +ADV +CONJ +V-PAS-1P +PREP +P-ASM +CONJ +V-2AAI-3S +N-NSM +T-NSM +V-PPP-NSM +N-NSM +T-DPM +N-DPM +V-PAS-1P +CONJ +P-1NP +CONJ +V-2AAS-1P +PREP +P-GSM +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-ASM +A-APF +N-APF +ADV +V-PAP-ASM +PREP +T-DSN +N-DSN +CONJ +V-IAI-3S +N-NSF +ADV +T-GPN +N-GPN +ADV +PREP +N-GPM +A-NUI +CONJ +A-NPM +PREP +T-GPM +A-GPM +V-2LAI-3P +PREP +T-ASF +N-ASF +CONJ +N-PRI +CONJ +V-ADS-3P +P-APF +PREP +T-GSM +N-GSM +CONJ +ADV +V-AAI-3S +CONJ +N-NSM +V-PNI-3S +T-NSF +N-NSF +V-AAI-3S +P-DSM +CONJ +N-PRI +PREP +T-DSM +N-DSM +V-INI-3S +CONJ +V-2AAI-3S +T-NSF +N-NSF +PREP +N-ASM +N-VSM +COND +V-IAI-2S +ADV +PRT +PRT-N +V-2AAI-3S +T-NSM +N-NSM +P-1GS +CONJ +ADV +V-RAI-1S +CONJ +PRT +K-APN +V-AMS-2S +T-ASM +N-ASM +V-FAI-3S +P-2DS +T-NSM +N-NSM +V-PAI-3S +P-DSF +T-NSM +N-NSM +V-FMI-3S +T-NSM +N-NSM +P-2GS +V-PAI-3S +P-DSM +T-NSF +N-NSF +V-RAI-1S +CONJ +V-FMI-3S +PREP +T-DSF +N-DSF +PREP +T-DSF +A-DSF-S +N-DSF +V-2AAI-3S +P-DSF +T-NSM +N-NSM +P-1NS +V-PAI-1S +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-NSM +V-PAP-NSM +PREP +P-1AS +COND-K +V-2AAS-3S +V-FDI-3S +CONJ +A-NSM +T-NSM +V-PAP-NSM +CONJ +V-PAP-NSM +PREP +P-1AS +PRT-N +PRT-N +V-2AAS-3S +PREP +T-ASM +N-ASM +V-PAI-2S +D-ASN +V-PAI-3S +P-DSM +PRT +N-VSM +P-1NS +V-RAI-1S +CONJ +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-NSM +N-NSM +T-GSM +N-GSM +T-NSM +PREP +T-ASM +N-ASM +V-PNP-NSM +CONJ +D-ASN +V-2AAP-NSF +V-2AAI-3S +CONJ +V-AAI-3S +N-PRI +T-ASF +N-ASF +P-GSF +ADV +V-2AAP-NSF +T-NSM +N-NSM +V-PAI-3S +CONJ +V-PAI-3S +P-2AS +CONJ +D-NSF +ADV +V-AAI-3S +V-PPI-3S +ADV +CONJ +V-INI-3S +PREP +P-ASM +CONJ +ADV-N +V-2LAI-3S +T-NSM +N-NSM +PREP +T-ASF +N-ASF +CONJ +V-IAI-3S +ADV +PREP +T-DSM +N-DSM +ADV +V-AAI-3S +P-DSM +T-NSF +N-NSF +CONJ +T-NPM +A-NPM +T-NPM +V-PAP-NPM +PREP +P-GSF +PREP +T-DSF +N-DSF +CONJ +V-PNP-NPM +P-ASF +V-2AAP-NPM +T-ASF +N-PRI +CONJ +ADV +V-2AAI-3S +CONJ +V-2AAI-3S +V-AAI-3P +P-DSF +V-AAP-NPM +CONJ +V-PAI-3S +PREP +T-ASN +N-ASN +CONJ +V-AAS-3S +ADV +CONJ +T-NSF +N-PRI +ADV +V-2AAI-3S +ADV +V-IAI-3S +N-NSM +V-2AAP-NSF +P-ASM +V-2AAI-3S +PREP +ADV +T-APM +N-APM +V-PAP-NSF +P-DSM +N-VSM +COND +V-IAI-2S +ADV +PRT +PRT-N +V-2AAI-3S +P-1GS +T-NSM +N-NSM +CONJ +N-NSM +ADV +V-2AAI-3S +P-ASF +V-PAP-ASF +CONJ +T-APM +V-2AAP-APM +P-DSF +A-APM +V-PAP-APM +V-ADI-3S +T-DSN +N-DSN +CONJ +V-AAI-3S +F-3ASM +CONJ +V-2AAI-3S +ADV-I +V-RAI-2P +P-ASM +V-PAI-3P +P-DSM +N-VSM +V-PNM-2S +CONJ +V-2AAM-2S +V-AAI-3S +T-NSM +N-NSM +CONJ +V-IAI-3P +T-NPM +A-NPM +V-2AAM-2S +ADV +V-IAI-3S +P-ASM +CONJ +X-NPM +PREP +P-GPM +V-2AAI-3P +PRT-N +V-INI-3S +D-NSM +T-NSM +V-AAP-NSM +T-APM +N-APM +T-GSM +A-GSM +V-AAN +CONJ +CONJ +D-NSM +PRT-N +V-2AAS-3S +CONJ +N-NSM +ADV +V-PNP-NSM +PREP +F-3DSM +V-PNI-3S +PREP +T-ASN +N-ASN +CONJ +V-IAI-3S +N-NSN +CONJ +N-NSM +V-INI-3S +PREP +P-DSN +V-PAI-3S +T-NSM +N-NSM +V-AAM-2P +T-ASM +N-ASM +V-PAI-3S +P-DSM +T-NSF +N-NSF +T-GSM +V-RAP-GSM +N-NSF +N-VSM +ADV +V-PAI-3S +CONJ +A-NSM +V-PAI-3S +V-PAI-3S +P-DSF +T-NSM +N-NSM +PRT-N +V-2AAI-1S +P-2DS +CONJ +COND +V-AAS-2S +V-FDI-2S +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-AAI-3P +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +V-AAI-3S +T-APM +N-APM +ADV +CONJ +V-2AAI-3S +N-VSM +V-PAI-1S +P-2DS +CONJ +V-AAI-2S +P-1GS +CONJ +P-1NS +V-2LAI-1S +CONJ +ADV +P-1GS +V-PAI-2S +CONJ +PREP +T-ASM +N-ASM +T-ASM +V-RAP-ASM +V-2AAI-1S +CONJ +V-AAS-3P +CONJ +P-2NS +P-1AS +V-AAI-2S +CONJ +D-APN +V-2AAP-NSM +N-DSF +A-DSF +V-AAI-3S +N-VSM +V-PAM-2S +ADV +V-2AAI-3S +T-NSM +V-RAP-NSM +V-RPP-NSM +T-APM +N-APM +CONJ +T-APF +N-APF +N-DPF +CONJ +T-NSF +N-NSF +P-GSM +N-DSN +V-LPI-3S +V-PAI-3S +P-DPM +T-NSM +N-NSM +V-AAM-2P +P-ASM +CONJ +V-2AAM-2P +P-ASM +V-PAN +CONJ +A-NPM +PREP +T-GPM +A-GPM +T-NPM +V-2AAP-NPM +PREP +T-ASF +N-PRI +CONJ +V-ADP-NPM +R-ASN +V-AAI-3S +V-AAI-3P +PREP +P-ASM +CONJ +X-NPM +PREP +P-GPM +V-2AAI-3P +PREP +T-APM +N-APM +CONJ +V-2AAI-3P +P-DPM +R-APN +V-AAI-3S +N-NSM +CONJ +V-2AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +N-ASN +CONJ +V-IAI-3P +I-ASN +V-PAI-1P +CONJ +D-NSM +T-NSM +N-NSM +A-APN +N-APN +V-PAI-3S +COND +V-2AAS-1P +P-ASM +ADV +A-NPM +V-FAI-3P +PREP +P-ASM +CONJ +V-FDI-3P +T-NPM +A-NPM +CONJ +V-FAI-3P +P-1GP +CONJ +T-ASM +N-ASM +CONJ +T-ASN +N-ASN +CONJ +A-NSM +X-NSM +PREP +P-GPM +N-NSM +N-NSM +V-PAP-NSM +T-GSM +N-GSM +D-GSM +V-2AAI-3S +P-DPM +P-2NP +PRT-N +V-RAI-2P +A-ASN-N +CONJ-N +V-PNI-2P +CONJ +V-PAI-3S +P-2DP +CONJ +A-NSM +N-NSM +V-2AAS-3S +PREP +T-GSM +N-GSM +CONJ +PRT-N +A-NSN +T-NSN +N-NSN +V-2AMS-3S +CONJ +D-ASN +PREP +F-3GSM +PRT-N +V-2AAI-3S +CONJ +N-NSM +V-PAP-NSM +T-GSM +N-GSM +D-GSM +V-AAI-3S +CONJ +V-IAI-3S +N-NSM +V-PAN +PREP +T-GSN +N-GSN +CONJ +PRT-N +PREP +T-GSN +N-GSN +ADV +CONJ +CONJ +CONJ +T-APN +N-APN +T-GSM +N-GSM +T-APN +V-RPP-APN +V-2AAS-3S +PREP +A-ASN +CONJ +PREP +D-GSF +T-GSF +N-GSF +V-ADI-3P +CONJ +V-AAS-3P +P-ASM +CONJ +T-NSM +N-NSM +ADV-N +N-DSF +V-IAI-3S +PREP +T-DPM +A-DPM +CONJ +V-2AAI-3S +ADV +PREP +T-ASF +N-ASF +ADV +T-GSF +A-GSF +PREP +N-PRI +V-PPP-ASF +N-ASF +ADV-K +V-AAI-3S +PREP +T-GPM +N-GPM +CONJ +V-IAI-3S +ADV +T-NSN +ARAM +T-GPM +A-GPM +CONJ +V-2AAI-3P +A-NPM +PREP +N-APN +PREP +T-GSF +N-GSF +PREP +T-GSM +ARAM +CONJ +V-AAS-3P +F-3APM +CONJ +V-IAI-3P +T-ASM +N-ASM +CONJ +V-IAI-3P +PREP +C-GPM +PREP +T-DSN +N-DSN +V-RAP-NPM +I-NSN +V-PAI-3S +P-2DP +CONJ +PRT-N +PRT-N +V-2AAS-3S +PREP +T-ASF +N-ASF +CONJ +V-LAI-3P-ATT +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +N-APF +CONJ +COND +X-NSM +V-2AAS-3S +ADV-I +V-PAI-3S +V-AAS-3S +ADV +V-AAS-3P +P-ASM +CONJ +T-NSM +N-NSM +PREP +A-NUI +N-GPF +T-GSM +ARAM +V-2AAI-3S +PREP +N-ASF +ADV +V-IAI-3S +N-NSM +R-ASM +V-AAI-3S +PREP +A-GPM +N-NSM +CONJ +V-AAI-3P +P-DSM +N-ASN +ADV +CONJ +T-NSF +N-NSF +V-IAI-3S +CONJ +T-NSM +N-NSM +V-IAI-3S +A-NSM +PREP +T-GPM +V-PNP-GPM +PREP +P-DSM +CONJ +T-NSF +N-PRI +V-2AAP-NSF +N-ASF +N-GSN +N-GSF +A-GSF +A-GSF +V-AAI-3S +T-APM +N-APM +T-GSM +N-GSM +CONJ +V-AAI-3S +T-DPF +N-DPF +P-GSF +T-APM +N-APM +P-GSM +CONJ +T-NSF +N-NSF +V-API-3S +PREP +T-GSF +N-GSF +T-GSN +N-GSN +CONJ +V-PAI-3S +N-NSM +T-NSM +N-NSM +A-NSM +T-GPM +N-GPM +P-GSM +T-NSM +V-PAP-NSM +P-ASM +V-PAN +PREP +I-ASN +D-NSN +T-NSN +N-NSN +PRT-N +V-API-3S +A-GPM +N-GPN +CONJ +V-API-3S +A-DPM +CONJ +V-2AAI-3S +D-ASN +PRT-N +CONJ +PREP +T-GPM +A-GPM +V-IAI-3S +P-DSM +CONJ +CONJ +N-NSM +V-IAI-3S +CONJ +T-ASN +N-ASN +V-PAP-NSM +T-APN +V-PPP-APN +V-IAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +V-2AAM-2S +P-ASF +CONJ +PREP +T-ASF +N-ASF +T-GSM +N-GSM +P-1GS +V-AAS-3S +P-ASN +CONJ +T-APM +A-APM +ADV +V-PAI-2P +PREP +F-2GPM +CONJ +P-1AS +PRT-N +ADV +V-PAI-2P +CONJ +V-2AAI-3S +T-NSM +N-NSM +A-NSM +PREP +T-GPM +A-GPM +CONJ +ADV +V-PAI-3S +CONJ +V-2AAI-3P +PRT-N +PREP +T-ASM +N-ASM +ADV +CONJ +CONJ +CONJ +V-2AAS-3P +T-ASM +N-ASM +R-ASM +V-AAI-3S +PREP +A-GPM +CONJ +V-ADI-3P +T-NPM +N-NPM +CONJ +CONJ +T-ASM +N-ASM +V-AAS-3P +CONJ +A-NPM +T-GPM +A-GPM +PREP +P-ASM +V-IAI-3P +CONJ +V-IAI-3P +PREP +T-ASM +N-ASM +T-DSF +ADV +T-NSM +N-NSM +A-NSM +T-NSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-AAP-NPM +CONJ +V-PNI-3S +N-NSM +PREP +N-APN +V-2AAI-3P +T-APN +N-APN +T-GPM +N-GPM +CONJ +V-2AAI-3P +PREP +N-ASF +P-DSM +CONJ +V-IAI-3P +HEB +V-RPP-NSM +T-NSM +V-PNP-NSM +PREP +N-DSN +N-GSM +CONJ +T-NSM +N-NSM +T-GSM +N-PRI +CONJ +V-2AAP-NSM +N-ASN +T-NSM +N-NSM +V-AAI-3S +PREP +P-ASN +ADV +V-PAI-3S +V-RPP-NSN +PRT-N +V-PNM-2S +N-VSF +N-PRI +V-2AMM-2S +T-NSM +N-NSM +P-2GS +V-PNI-3S +V-PNP-NSM +PREP +N-ASM +N-GSF +D-APN +PRT-N +V-2AAI-3P +P-GSM +T-NPM +N-NPM +T-ASN +A-ASN-S +CONJ +ADV +V-API-3S +N-NSM +ADV +V-API-3P +CONJ +D-NPN +V-IAI-3S +V-RPP-NPN +PREP +P-DSM +CONJ +D-APN +V-AAI-3P +P-DSM +CONJ +V-IAI-3S +T-NSM +N-NSM +T-NSM +V-PAP-NSM +PREP +P-GSM +ADV +T-ASM +N-ASM +V-AAI-3S +PREP +T-GSN +N-GSN +CONJ +V-AAI-3S +P-ASM +PREP +A-GPM +PREP +D-ASN +CONJ +V-AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +V-AAI-3P +D-ASN +P-ASM +V-RAN +T-ASN +N-ASN +CONJ +T-NPM +N-NPM +V-2AAI-3P +PREP +F-3APM +V-PAI-2P +CONJ +PRT-N +V-PAI-2P +A-ASN-N +V-2AAM-2S +T-NSM +N-NSM +ADV +P-GSM +V-2AAI-3S +CONJ +V-IAI-3P +N-NPM +X-NPM +PREP +T-GPM +V-PAP-GPM +CONJ +V-AAS-3P +PREP +T-DSF +N-DSF +CONJ +D-NPM +V-2AAI-3P +N-DSM +T-DSM +PREP +N-PRI +T-GSF +N-GSF +CONJ +V-IAI-3P +P-ASM +V-PAP-NPM +N-VSM +V-PAI-1P +T-ASM +N-ASM +V-2AAN +V-PNI-3S +T-NSM +N-NSM +CONJ +V-PAI-3S +T-DSM +N-DSM +V-PNI-3S +N-NSM +CONJ +N-NSM +CONJ +V-PAI-3P +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +V-PNI-3S +P-DPM +V-PAP-NSM +V-2RAI-3S +T-NSF +N-NSF +CONJ +V-APS-3S +T-NSM +N-NSM +T-GSM +N-GSM +HEB +HEB +V-PAI-1S +P-2DP +COND +PRT-N +T-NSM +N-NSM +T-GSM +N-GSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-2AAS-3S +P-NSM +A-NSM +V-PAI-3S +CONJ +COND +V-2AAS-3S +A-ASM +N-ASM +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASF +N-ASF +P-GSM +V-PAI-3S +P-ASF +CONJ +T-NSM +V-PAP-NSM +T-ASF +N-ASF +P-GSM +PREP +T-DSM +N-DSM +D-DSM +PREP +N-ASF +A-ASF +V-FAI-3S +P-ASF +COND +P-1DS +X-NSM +V-PAS-3S +P-1DS +V-PAM-3S +CONJ +ADV +V-PAI-1S +P-1NS +ADV +CONJ +T-NSM +N-NSM +T-NSM +S-1SNSM +V-FDI-3S +COND +X-NSM +P-1DS +V-PAS-3S +V-FAI-3S +P-ASM +T-NSM +N-NSM +ADV +T-NSF +N-NSF +P-1GS +V-RPI-3S +CONJ +I-ASN +V-2AAS-1S +N-VSM +V-AAM-2S +P-1AS +PREP +T-GSF +N-GSF +D-GSF +CONJ +PREP +D-ASN +V-2AAI-1S +PREP +T-ASF +N-ASF +D-ASF +N-VSM +V-AAM-2S +P-2GS +T-ASN +N-ASN +CONJ +V-2AAI-3S +N-NSF +PREP +T-GSM +N-GSM +CONJ +V-AAI-1S +CONJ +ADV +V-FAI-1S +CONJ +T-NSM +N-NSM +T-NSM +V-RAP-NSM +CONJ +V-AAP-NSM +V-IAI-3S +N-ASF +V-2RAN +A-NPM +V-IAI-3P +N-NSM +P-DSM +V-RAI-3S +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +PRT-N +PREP +P-1AS +T-NSF +N-NSF +D-NSF +V-2RAI-3S +CONJ +PREP +P-2AP +ADV +V-PAI-3S +N-NSF +T-GSM +N-GSM +D-GSM +ADV +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +V-FPI-3S +ADV +COND +P-1NS-K +V-APS-1S +PREP +T-GSF +N-GSF +A-APM +V-FAI-1S +PREP +F-1ASM +CONJ +D-ASN +V-IAI-3S +V-PAP-NSM +I-DSM +N-DSM +V-IAI-3S-ATT +V-PAN +CONJ +V-ADI-3S +P-DSM +T-NSM +N-NSM +P-1NP +V-AAI-1P +PREP +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-PAI-3S +PREP +T-ASM +N-ASM +CONJ +ADV-I +V-PAI-2S +P-2NS +CONJ +V-PAI-3S +V-APN +T-ASM +N-ASM +T-GSM +N-GSM +I-NSM +V-PAI-3S +D-NSM +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +ADV +A-ASM +N-ASM +T-NSN +N-NSN +PREP +P-2DP +V-PAI-3S +V-PAM-2P +ADV +T-ASN +N-ASN +V-PAI-2P +CONJ +PRT-N +N-NSF +P-2AP +V-2AAS-3S +CONJ +T-NSM +V-PAP-NSM +PREP +T-DSF +N-DSF +PRT-N +V-RAI-3S +ADV-I +V-PAI-3S +ADV +T-ASN +N-ASN +V-PAI-2P +V-PAM-2P +PREP +T-ASN +N-ASN +CONJ +N-NPM +N-GSN +V-2ADS-2P +D-APN +V-AAI-3S +N-NSM +CONJ +V-2AAP-NSM +V-2API-3S +PREP +P-GPM +CONJ +P-GSM +D-APN +N-APN +V-RAP-GSM +PREP +P-GPM +PRT-N +V-IAI-3P +PREP +P-ASM +CONJ +T-NSM +N-NSM +N-GSM +T-GSM +N-GSM +V-APS-3S +R-ASM +V-2AAI-3S +N-VSM +I-NSM +V-AAI-3S +T-DSF +N-DSF +P-1GP +CONJ +T-NSM +N-NSM +N-GSM +I-DSM +V-API-3S +PREP +D-ASN +PRT-N +V-INI-3P-ATT +V-PAN +CONJ +ADV +V-2AAI-3S +N-NSM +V-RAI-3S +P-GPM +T-APM +N-APM +CONJ +V-AAI-3S +P-GPM +T-ASF +N-ASF +CONJ +PRT-N +V-2AAS-3P +T-DPM +N-DPM +CONJ +V-AAS-3P +T-DSF +N-DSF +CONJ +V-2APS-3P +CONJ +V-FDI-1S +P-APM +D-APN +V-2AAI-3S +N-NSM +CONJ +V-2AAI-3S +T-ASF +N-ASF +P-GSM +CONJ +V-AAI-3S +PREP +P-GSM +CONJ +CONJ +CONJ +PREP +T-GPM +N-GPM +A-NPM +V-AAI-3P +PREP +P-ASM +CONJ +PREP +T-APM +N-APM +PRT-N +V-IAI-3P +CONJ +PRT-N +A-NPM +V-2ADS-3P +CONJ +V-AAI-3P +T-ASF +N-ASF +T-GPM +N-GPM +ADV +PRT +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +N-NSM +V-AAI-3S +CONJ +V-2AAI-3S +T-NSM +V-PAP-NSM +PREP +P-1AS +PRT-N +V-PAI-3S +PREP +P-1AS +CONJ +PREP +T-ASM +V-AAP-ASM +P-1AS +CONJ +T-NSM +V-PAP-NSM +P-1AS +V-PAI-3S +T-ASM +V-AAP-ASM +P-1AS +P-1NS +N-NSN +PREP +T-ASM +N-ASM +V-2RAI-1S +CONJ +A-NSM +T-NSM +V-PAP-NSM +PREP +P-1AS +PREP +T-DSF +N-DSF +PRT-N +V-AAS-3S +CONJ +COND +X-NSM +V-AAS-3S +P-1GS +T-GPN +N-GPN +CONJ +PRT-N +V-AAS-3S +P-1NS +PRT-N +V-PAI-1S +P-ASM +CONJ +PRT-N +V-2AAI-1S +CONJ +V-PAS-1S +T-ASM +N-ASM +CONJ +CONJ +V-AAS-1S +T-ASM +N-ASM +T-NSM +V-PAP-NSM +P-1AS +CONJ +PRT-N +V-PAP-NSM +T-APN +N-APN +P-1GS +V-PAI-3S +T-ASM +V-PAP-ASM +P-ASM +T-NSM +N-NSM +R-ASM +V-AAI-1S +D-NSM +V-FAI-3S +P-ASM +PREP +T-DSF +A-DSF-S +N-DSF +CONJ +P-1NS +PREP +F-1GSM +PRT-N +V-AAI-1S +CONJ +T-NSM +V-AAP-NSM +P-1AS +N-NSM +P-NSM +P-1DS +N-ASF +V-RAI-3S +I-ASN +V-2AAS-1S +CONJ +I-ASN +V-AAS-1S +CONJ +V-RAI-1S +CONJ +T-NSF +N-NSF +P-GSM +N-NSF +A-NSF +V-PAI-3S +CONJ +R-APN +P-1NS +V-PAI-1S +ADV +V-RAI-3S-ATT +P-1DS +T-NSM +N-NSM +ADV +V-PAI-1S +CONJ +PREP +T-GSF +N-GSF +T-GSM +ARAM +T-NSM +N-NSM +V-RAP-NSM +CONJ +V-2AAI-3S +P-GSM +T-NSF +N-NSF +CONJ +V-2AAS-3S +PREP +T-GSM +N-GSM +D-GSM +PREP +T-ASM +N-ASM +V-AAP-NSM +T-APM +A-APM +T-APM +PREP +T-DSM +N-DSM +PREP +N-ASN +V-AAI-3S +P-APM +CONJ +N-GSN +V-PNP-GSN +T-GSM +A-GSM +ADV +V-RAP-GSM +PREP +T-ASF +N-ASF +CONJ +V-2AAS-3S +P-ASM +N-NSM +N-GSM +N-NSM +V-RAP-NSM +CONJ +A-APN +V-AAI-3S +P-DSM +T-NSM +N-NSM +PREP +T-APF +N-APF +CONJ +CONJ +PREP +N-GSM +V-2AAI-3S +CONJ +PREP +T-ASM +N-ASM +V-PAI-3S +V-PPI-3S +PREP +T-GSN +N-GSN +CONJ +V-PAI-3S +T-APN +N-APN +CONJ +V-2AAP-NSM +N-ASN +V-AAI-3S +F-3ASM +ADV +V-PAI-3S +N-ASN +PREP +T-ASM +N-ASM +CONJ +V-ADI-3S +V-PAN +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-PAN +T-DSN +N-DSN +R-DSN +V-IAI-3S +V-RPP-NSM +CONJ +V-PNI-3S +PREP +N-ASM +N-ASM +V-PAI-3S +P-DSM +N-VSM +P-2NS +V-PAI-2S +P-1GS +T-APM +N-APM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +R-ASN +P-1NS +V-PAI-1S +P-2NS +PRT-N +V-RAI-2S +ADV +CONJ +V-FDI-2S +PREP +D-APN +V-PAI-3S +P-DSM +N-NSM +PRT-N +PRT-N +V-AAS-2S +P-1GS +T-APM +N-APM +PREP +T-ASM +N-ASM +V-ADI-3S +N-NSM +P-DSM +COND +PRT-N +V-AAS-1S +P-2AS +PRT-N +V-PAI-2S +N-ASN +PREP +P-1GS +V-PAI-3S +P-DSM +N-NSM +N-NSM +N-VSM +PRT-N +T-APM +N-APM +P-1GS +ADV +CONJ +CONJ +T-APF +N-APF +CONJ +T-ASF +N-ASF +V-PAI-3S +P-DSM +N-NSM +T-NSM +V-RPP-NSM +PRT-N +V-PAI-3S +N-ASF +COND +PRT-N +T-APM +N-APM +V-AMN +CONJ +V-PAI-3S +A-NSM +A-NSM +CONJ +P-2NP +A-NPM +V-PAI-2P +CONJ +PRT-N +A-NPM +CONJ +V-2LAI-3S +T-ASM +V-PAP-ASM +P-ASM +PREP +D-ASN +V-2AAI-3S +CONJ +PRT-N +A-NPM +A-NPM +V-PAI-2P +CONJ +ADV +V-AAI-3S +T-APM +N-APM +P-GPM +CONJ +V-2AAI-3S +T-APN +N-APN +P-GSM +CONJ +V-2AAI-3S +ADV +V-2AAI-3S +P-DPM +V-PAI-2P +I-ASN +V-RAI-1S +P-2DP +P-2NP +V-PAI-2P +P-1AS +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +CONJ +ADV +V-PAI-2P +CONJ +V-PAI-1S +CONJ +COND +P-1NS +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-AAI-1S +P-2GP +T-APM +N-APM +CONJ +P-2NP +V-PAI-2P +V-PAN +C-GPM +T-APM +N-APM +CONJ +N-ASN +V-AAI-1S +P-2DP +CONJ +ADV +P-1NS +V-AAI-1S +P-2DP +CONJ +P-2NP +V-PAS-2P +HEB +HEB +V-PAI-1S +P-2DP +PRT-N +V-PAI-3S +N-NSM +A-NSM-C +T-GSM +N-GSM +P-GSM +CONJ-N +N-NSM +A-NSM-C +T-GSM +V-AAP-GSM +P-ASM +COND +D-APN +V-RAI-2P +A-NPM +V-PAI-2P +COND +V-PAS-2P +P-APN +PRT-N +PREP +A-GPM +P-2GP +V-PAI-1S +P-1NS +V-RAI-1S +I-APM +V-AMI-1S +CONJ +CONJ +T-NSF +N-NSF +V-APS-3S +T-NSM +V-PAP-NSM +P-1GS +T-ASM +N-ASM +V-AAI-3S +PREP +P-1AS +T-ASF +N-ASF +P-GSM +PREP +ADV +V-PAI-1S +P-2DP +PREP +T-GSN +V-2ADN +CONJ +V-PAS-2P +CONJ +V-2ADS-3S +CONJ +P-1NS +V-PAI-1S +HEB +HEB +V-PAI-1S +P-2DP +T-NSM +V-PAP-NSM +PRT +X-ASM +V-AAS-1S +P-1AS +V-PAI-3S +CONJ +T-NSM +P-1AS +V-PAP-NSM +V-PAI-3S +T-ASM +V-AAP-ASM +P-1AS +D-APN +V-2AAP-NSM +N-NSM +V-API-3S +T-DSN +N-DSN +CONJ +V-AAI-3S +CONJ +V-2AAI-3S +HEB +HEB +V-PAI-1S +P-2DP +CONJ +A-NSM +PREP +P-2GP +V-FAI-3S +P-1AS +V-IAI-3P +PREP +C-APM +T-NPM +N-NPM +V-PMP-NPM +PREP +I-GSM +V-PAI-3S +V-IAI-3S +V-PNP-NSM +A-NSM +PREP +T-GPM +N-GPM +P-GSM +PREP +T-DSM +N-DSM +T-GSM +N-GSM +R-ASM +V-IAI-3S +T-NSM +N-NSM +CONJ +V-PAI-3S +D-DSM +N-NSM +N-NSM +CONJ +V-PAI-3S +P-DSM +V-2AAM-2S +I-NSM +V-PAI-3S +PREP +R-GSM +V-PAI-3S +D-NSM +V-2AAP-NSM +ADV +PREP +T-ASN +N-ASN +T-GSM +N-GSM +V-PAI-3S +P-DSM +N-VSM +I-NSM +V-PAI-3S +CONJ +V-PNI-3S +T-NSM +N-NSM +V-PAI-3S +D-NSM +R-DSM +P-1NS +V-FAI-1S +T-ASN +N-ASN +CONJ +V-FAI-1S +P-DSM +CONJ +V-AAP-NSM +T-ASN +N-ASN +V-PAI-3S +CONJ +V-PAI-3S +N-DSM +N-GSM +N-GSM +CONJ +PREP +T-ASN +N-ASN +ADV +V-2AAI-3S +PREP +D-ASM +T-NSM +N-NSM +CONJ +V-PAI-3S +P-DSM +N-NSM +R-ASN +V-PAI-2S +V-AAM-2S +ADV-C +CONJ +V-2AAI-3S +A-NSM-N +T-GPM +V-PNP-GPM +D-ASN +PREP +I-ASN +V-2AAI-3S +P-DSM +CONJ +X-NPM +V-IAI-3P +CONJ +T-ASN +N-ASN +V-IAI-3S +N-NSM +CONJ +V-PAI-3S +P-DSM +N-NSM +V-AAM-2S +R-GPN +N-ASF +V-PAI-1P +PREP +T-ASF +N-ASF +PRT +CONJ +T-DPM +A-DPM +X-ASN +V-2AAS-3S +CONJ +V-2AAP-NSM +T-ASN +N-ASN +D-NSM +V-2AAI-3S +ADV +CONJ +V-IAI-3S +N-NSF +CONJ +ADV +V-2AAI-3S +V-PAI-3S +N-NSM +ADV +V-API-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-API-3S +PREP +P-DSM +COND +T-NSM +N-NSM +V-API-3S +PREP +P-DSM +CONJ +T-NSM +N-NSM +V-FAI-3S +P-ASM +PREP +F-3DSM +CONJ +ADV +V-FAI-3S +P-ASM +N-VPN +ADV +A-ASN +PREP +P-2GP +V-PAI-1S +V-FAI-2P +P-1AS +CONJ +ADV +V-2AAI-1S +T-DPM +A-DPM +CONJ +ADV +P-1NS +V-PAI-1S +V-2AAN +P-2NP +PRT-N +V-PNI-2P +CONJ +P-2DP +V-PAI-1S +ADV +N-ASF +A-ASF +V-PAI-1S +P-2DP +CONJ +V-PAS-2P +C-APM +ADV +V-AAI-1S +P-2AP +CONJ +CONJ +P-2NP +V-PAS-2P +C-APM +PREP +D-DSN +V-FDI-3P +A-NPM +CONJ +S-1SNPM +N-NPM +V-PAI-2P +COND +N-ASF +V-PAS-2P +PREP +C-DPM +V-PAI-3S +P-DSM +N-NSM +N-NSM +N-VSM +ADV-I +V-PAI-2S +V-ADI-3S +N-NSM +ADV +V-PAI-1S +P-1DS +ADV +V-AAN +PRT-N +V-PNI-2S +CONJ +V-FAI-2S +ADV +V-PAI-3S +P-DSM +N-NSM +N-VSM +PREP +I-ASN +PRT-N +V-PNI-1S +P-2DS +V-AAN +ADV +T-ASF +N-ASF +P-1GS +PREP +P-2GS +V-FAI-1S +V-PNI-3S +N-NSM +T-ASF +N-ASF +P-2GS +PREP +P-1GS +V-FAI-2S +HEB +HEB +V-PAI-1S +P-2DS +PRT-N +PRT-N +N-NSM +V-AAS-3S +ADV +R-GSM +V-ADS-2S +P-1AS +ADV +PRT-N +V-PPM-3S +P-2GP +T-NSF +N-NSF +V-PAI-2P +PREP +T-ASM +N-ASM +CONJ +PREP +P-1AS +V-PAM-2P +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GS +N-NPF +A-NPF +V-PAI-3P +CONJ +COND +PRT-N +PRT +V-2AAI-1S +P-2DP +CONJ +V-PNI-1S +V-AAN +N-ASM +P-2DP +CONJ +COND +V-AOS-1S +CONJ +V-AAS-1S +N-ASM +P-2DP +ADV +V-PNI-1S +CONJ +V-FDI-1S +P-2AP +PREP +F-1ASM +CONJ +ADV +V-PAI-1S +P-1NS +CONJ +P-2NP +V-PAS-2P +CONJ +ADV +P-1NS +V-PAI-1S +V-RAI-2P +T-ASF +N-ASF +V-PAI-3S +P-DSM +N-NSM +N-VSM +PRT-N +V-RAI-1P +ADV-I +V-PAI-2S +ADV-I +V-RAI-1P +T-ASF +N-ASF +V-PAI-3S +P-DSM +N-NSM +P-1NS +V-PAI-1S +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +A-NSM-N +V-PNI-3S +PREP +T-ASM +N-ASM +COND +PRT-N +PREP +P-1GS +COND +V-LAI-2P +P-1AS +PRT +CONJ +T-ASM +N-ASM +P-1GS +V-2LAI-2P +PREP +ADV +V-PAI-2P +P-ASM +CONJ +V-RAI-2P-ATT +V-PAI-3S +P-DSM +N-NSM +N-VSM +V-AAM-2S +P-1DP +T-ASM +N-ASM +CONJ +V-PAI-3S +P-1DP +V-PAI-3S +P-DSM +T-NSM +N-NSM +D-ASM +N-ASM +PREP +P-2GP +V-PAI-1S +CONJ +PRT-N +V-RAI-2S +P-1AS +N-VSM +T-NSM +V-RAP-NSM-ATT +P-1AS +V-RAI-3S-ATT +T-ASM +N-ASM +ADV-I +P-2NS +V-PAI-2S +V-AAM-2S +P-1DP +T-ASM +N-ASM +PRT-N +V-PAI-2S +CONJ +P-1NS +PREP +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +PREP +P-1DS +V-PAI-3S +T-APN +N-APN +R-APN +P-1NS +V-PAI-1S +P-2DP +PREP +F-1GSM +PRT-N +V-PAI-1S +CONJ +T-NSM +N-NSM +PREP +P-1DS +V-PAP-NSM +V-PAI-3S +T-APN +N-APN +P-GSM +V-PAM-2P +P-1DS +CONJ +P-1NS +PREP +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +PREP +P-1DS +CONJ +COND +PRT-N +PREP +T-APN +N-APN +P-APN +V-PAM-2P +HEB +HEB +V-PAI-1S +P-2DP +T-NSM +V-PAP-NSM +PREP +P-1AS +T-APN +N-APN +R-APN +P-1NS +V-PAI-1S +D-NSM-K +V-FAI-3S +CONJ +A-APN-C +D-GPN +V-FAI-3S +CONJ +P-1NS +PREP +T-ASM +N-ASM +V-PNI-1S +CONJ +X-ASN +PRT +R-ASN +V-AAS-2P +PREP +T-DSN +N-DSN +P-1GS +D-ASN +V-FAI-1S +CONJ +V-APS-3S +T-NSM +N-NSM +PREP +T-DSM +N-DSM +COND +X-ASN +V-AAS-2P +P-1AS +PREP +T-DSN +N-DSN +P-1GS +P-1NS +V-FAI-1S +COND +V-PAS-2P +P-1AS +T-APF +N-APF +T-APF +S-1SAPF +V-FAI-2P +P-1NS-K +V-FAI-1S +T-ASM +N-ASM +CONJ +A-ASM +N-ASM +V-FAI-3S +P-2DP +CONJ +V-PAS-3S +PREP +P-2GP +PREP +T-ASM +N-ASM +T-ASN +N-ASN +T-GSF +N-GSF +R-ASN +V-2AAN +T-NSM +N-NSM +PRT-N +V-PNI-3S +CONJ +PRT-N +V-PAI-3S +P-ASN +CONJ-N +V-PAI-3S +P-2NP +V-PAI-2P +P-ASN +CONJ +PREP +P-2DP +V-PAI-3S +CONJ +PREP +P-2DP +V-FDI-3S +PRT-N +V-FAI-1S +P-2AP +A-APM +V-PNI-1S +PREP +P-2AP +CONJ +ADV +A-ASN +T-NSM +N-NSM +P-1AS +ADV-N +V-PAI-3S +CONJ +P-2NP +V-PAI-2P +P-1AS +CONJ +P-1NS +V-PAI-1S +CONJ +P-2NP +V-FAI-2P +PREP +D-DSF +T-DSF +N-DSF +V-FDI-2P +P-2NP +CONJ +P-1NS +PREP +T-DSM +N-DSM +P-1GS +CONJ +P-2NP +PREP +P-1DS +P-1NS-K +PREP +P-2DP +T-NSM +V-PAP-NSM +T-APF +N-APF +P-1GS +CONJ +V-PAP-NSM +P-APF +D-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +P-1AS +CONJ +T-NSM +V-PAP-NSM +P-1AS +V-FPI-3S +PREP +T-GSM +N-GSM +P-1GS +P-1NS-K +V-FAI-1S +P-ASM +CONJ +V-FAI-1S +P-DSM +F-1ASM +V-PAI-3S +P-DSM +N-NSM +PRT-N +T-NSM +N-NSM +N-VSM +CONJ +I-NSN +V-2RAI-3S +CONJ +V-PAI-2S +P-1DP +V-PAN +F-2ASM +CONJ +PRT-I +T-DSM +N-DSM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +COND +X-NSM +V-PAS-3S +P-1AS +T-ASM +N-ASM +P-1GS +V-FAI-3S +CONJ +T-NSM +N-NSM +P-1GS +V-FAI-3S +P-ASM +CONJ +PREP +P-ASM +V-FDI-1P +CONJ +N-ASF +PREP +P-DSM +V-FDI-1P +T-NSM +PRT-N +V-PAP-NSM +P-1AS +T-APM +N-APM +P-1GS +PRT-N +V-PAI-3S +CONJ +T-NSM +N-NSM +R-ASM +V-PAI-2P +PRT-N +V-PAI-3S +S-1SNSM +CONJ +T-GSM +V-AAP-GSM +P-1AS +N-GSM +D-APN +V-RAI-1S +P-2DP +PREP +P-2DP +V-PAP-NSM +CONJ +T-NSM +N-NSM +T-NSN +N-NSN +T-NSN +A-NSN +R-ASN +V-FAI-3S +T-NSM +N-NSM +PREP +T-DSN +N-DSN +P-1GS +D-NSM +P-2AP +V-FAI-3S +A-APN +CONJ +V-FAI-3S +P-2AP +A-APN +R-APN +V-2AAI-1S +P-2DP +P-1NS +N-ASF +V-PAI-1S +P-2DP +N-ASF +T-ASF +S-1SASF +V-PAI-1S +P-2DP +PRT-N +ADV +T-NSM +N-NSM +V-PAI-3S +P-1NS +V-PAI-1S +P-2DP +PRT-N +V-PPM-3S +P-2GP +T-NSF +N-NSF +CONJ-N +V-PAM-3S +V-AAI-2P +CONJ +P-1NS +V-2AAI-1S +P-2DP +V-PAI-1S +CONJ +V-PNI-1S +PREP +P-2AP +COND +V-IAI-2P +P-1AS +PRT +V-2AOI-2P +CONJ +V-PNI-1S +PREP +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +A-NSM-C +P-1GS +V-PAI-3S +CONJ +ADV +V-RAI-1S-ATT +P-2DP +ADV +V-2ADN +CONJ +CONJ +V-2ADS-3S +V-AAS-2P +ADV-N +A-APN +V-FAI-1S +PREP +P-2GP +CONJ +V-PNI-3S +T-NSM +T-GSM +N-GSM +N-NSM +CONJ +PREP +P-1DS +PRT-N +V-PAI-3S +A-ASN-N +CONJ +CONJ +V-2AAS-3S +T-NSM +N-NSM +CONJ +V-PAI-1S +T-ASM +N-ASM +CONJ +ADV +V-ADI-3S +P-1DS +T-NSM +N-NSM +ADV +V-PAI-1S +V-PEM-2P +V-PAS-1P +ADV +P-1NS +V-PAI-1S +T-NSF +N-NSF +T-NSF +A-NSF +CONJ +T-NSM +N-NSM +P-1GS +T-NSM +N-NSM +V-PAI-3S +A-ASN +N-ASN +PREP +P-1DS +PRT-N +V-PAP-ASN +N-ASM +V-PAI-3S +P-ASN +CONJ +A-ASN +T-ASN +N-ASM +V-PAP-ASN +V-PAI-3S +P-ASN +CONJ +N-ASM +A-ASM-C +V-PAS-3S +ADV +P-2NP +A-NPM +V-PAI-2P +PREP +T-ASM +N-ASM +R-ASM +V-RAI-1S +P-2DP +V-AAM-2P +PREP +P-1DS +P-1NS-K +PREP +P-2DP +ADV +T-NSN +N-NSN +PRT-N +V-PNI-3S +N-ASM +V-PAN +PREP +F-3GSN +COND +PRT-N +V-PAS-3S +PREP +T-DSF +N-DSF +ADV +CONJ-N +P-2NP +COND +PRT-N +PREP +P-1DS +V-PAS-2P +P-1NS +V-PAI-1S +T-NSF +N-NSF +P-2NP +T-NPN +N-NPN +T-NSM +V-PAP-NSM +PREP +P-1DS +P-1NS-K +PREP +P-DSM +D-NSM +V-PAI-3S +N-ASM +A-ASM +CONJ +ADV +P-1GS +PRT-N +V-PNI-2P +V-PAN +A-ASN-N +COND +PRT-N +X-NSM +V-PAS-3S +PREP +P-1DS +V-API-3S +ADV +ADV +T-NSN +N-NSN +CONJ +V-API-3S +CONJ +V-PAI-3P +P-APN +CONJ +PREP +T-ASN +N-ASN +V-PAI-3P +CONJ +V-PPI-3S +COND +V-AAS-2P +PREP +P-1DS +CONJ +T-NPN +N-NPN +P-1GS +PREP +P-2DP +V-AAS-3S +COND +R-ASN +V-PAS-2P +V-AMM-2P +CONJ +V-FDI-3S +P-2DP +PREP +D-DSN +V-API-3S +T-NSM +N-NSM +P-1GS +CONJ +N-ASM +A-ASM +V-PAS-2P +CONJ +V-FDI-2P +S-1SNPM +N-NPM +ADV +V-AAI-3S +P-1AS +T-NSM +N-NSM +P-1NS-K +P-2AP +V-AAI-1S +V-AAM-2P +PREP +T-DSF +N-DSF +T-DSF +S-1SDSF +COND +T-APF +N-APF +P-1GS +V-AAS-2P +V-FAI-2P +PREP +T-DSF +N-DSF +P-1GS +ADV +P-1NS +T-GSM +N-GSM +P-1GS +T-APF +N-APF +V-RAI-1S +CONJ +V-PAI-1S +PREP +P-GSM +T-DSF +N-DSF +D-APN +V-RAI-1S +P-2DP +CONJ +T-NSF +N-NSF +T-NSF +S-1SNSF +PREP +P-2DP +V-PAS-3S +CONJ +T-NSF +N-NSF +P-2GP +V-APS-3S +D-NSF +V-PAI-3S +T-NSF +N-NSF +T-NSF +S-1SNSF +CONJ +V-PAS-2P +C-APM +ADV +V-AAI-1S +P-2AP +A-ASF-C +D-GSF +N-ASF +A-NSM-N +V-PAI-3S +CONJ +X-NSM +T-ASF +N-ASF +P-GSM +V-2AAS-3S +PREP +T-GPM +A-GPM +P-GSM +P-2NP +A-NPM +P-1GS +V-PAI-2P +COND +V-PAS-2P +R-ASN +P-1NS +V-PNI-1S +P-2DP +ADV-N +V-PAI-1S +P-2AP +N-APM +CONJ +T-NSM +N-NSM +PRT-N +V-RAI-3S +I-ASN +V-PAI-3S +P-GSM +T-NSM +N-NSM +CONJ +P-2AP +V-RAI-1S-ATT +A-APM +CONJ +A-APN +R-APN +V-AAI-1S +PREP +T-GSM +N-GSM +P-1GS +V-AAI-1S +P-2DP +PRT-N +P-2NP +P-1AS +V-AMI-2P +CONJ +P-1NS +V-AMI-1S +P-2AP +CONJ +V-AAI-1S +P-2AP +CONJ +P-2NP +V-PAS-2P +CONJ +N-ASM +V-PAS-2P +CONJ +T-NSM +N-NSM +P-2GP +V-PAS-3S +CONJ +X-ASN +PRT +R-ASN +V-AAS-2P +T-ASM +N-ASM +PREP +T-DSN +N-DSN +P-1GS +V-2AAS-3S +P-2DP +D-APN +V-PNI-1S +P-2DP +CONJ +V-PAS-2P +C-APM +COND +T-NSM +N-NSM +P-2AP +V-PAI-3S +V-PAI-2P +CONJ +P-1AS +ADV-S +P-2GP +V-RAI-3S +COND +PREP +T-GSM +N-GSM +V-IAI-2P +PRT +T-NSM +N-NSM +T-ASN +A-ASN +V-IAI-3S +CONJ +CONJ +PREP +T-GSM +N-GSM +PRT-N +V-PAI-2P +CONJ +P-1NS +V-AMI-1S +P-2AP +PREP +T-GSM +N-GSM +PREP +D-ASN +V-PAI-3S +P-2AP +T-NSM +N-NSM +V-PAM-2P +T-GSM +N-GSM +R-GSM +P-1NS +V-2AAI-1S +P-2DP +PRT-N +V-PAI-3S +N-NSM +A-NSM-C +T-GSM +N-GSM +P-GSM +COND +P-1AS +V-AAI-3P +CONJ +P-2AP +V-FAI-3P +COND +T-ASM +N-ASM +P-1GS +V-AAI-3P +CONJ +T-ASM +S-2PASM +V-FAI-3P +CONJ +D-APN +A-APN +V-FAI-3P +PREP +P-2AP +PREP +T-ASN +N-ASN +P-1GS +CONJ +PRT-N +V-RAI-3P +T-ASM +V-AAP-ASM +P-1AS +COND +PRT-N +V-2AAI-1S +CONJ +V-AAI-1S +P-DPM +N-ASF +PRT-N +V-IAI-3P +CONJ +ADV +N-ASF +PRT-N +V-PAI-3P +PREP +T-GSF +N-GSF +P-GPM +T-NSM +P-1AS +V-PAP-NSM +CONJ +T-ASM +N-ASM +P-1GS +V-PAI-3S +COND +T-APN +N-APN +PRT-N +V-AAI-1S +PREP +P-DPM +R-APN +A-NSM-N +A-NSM +V-AAI-3S +N-ASF +PRT-N +V-IAI-3P +CONJ +ADV +CONJ +V-RAI-3P-ATT +CONJ +V-RAI-3P +CONJ +P-1AS +CONJ +T-ASM +N-ASM +P-1GS +CONJ +CONJ +V-APS-3S +T-NSM +N-NSM +T-NSM +PREP +T-DSM +N-DSM +P-GPM +V-RPP-NSM +CONJ +V-AAI-3P +P-1AS +ADV +CONJ +V-2AAS-3S +T-NSM +N-NSM +R-ASM +P-1NS +V-FAI-1S +P-2DP +PREP +T-GSM +N-GSM +T-NSN +N-NSN +T-GSF +N-GSF +R-NSN +PREP +T-GSM +N-GSM +V-PNI-3S +D-NSM +V-FAI-3S +PREP +P-1GS +CONJ +CONJ +P-2NP +V-PAI-2P +CONJ +PREP +N-GSF +PREP +P-1GS +V-PAI-2P +D-APN +V-RAI-1S +P-2DP +CONJ +PRT-N +V-APS-2P +A-APM +V-FAI-3P +P-2AP +CONJ +V-PNI-3S +N-NSF +CONJ +A-NSM +T-NSM +V-AAP-NSM +P-2AP +V-AAS-3S +N-ASF +V-PAN +T-DSM +N-DSM +CONJ +D-APN +V-FAI-3P +CONJ +PRT-N +V-2AAI-3P +T-ASM +N-ASM +CONJ-N +P-1AS +CONJ +D-APN +V-RAI-1S +P-2DP +CONJ +CONJ +V-2AAS-3S +T-NSF +N-NSF +P-GPN +V-PAS-2P +P-GPN +CONJ +P-1NS +V-2AAI-1S +P-2DP +CONJ +D-APN +P-2DP +PREP +N-GSF +PRT-N +V-2AAI-1S +CONJ +PREP +P-2GP +V-IMI-1S +CONJ +ADV +V-PAI-1S +PREP +T-ASM +V-AAP-ASM +P-1AS +CONJ +A-NSM-N +PREP +P-2GP +V-PAI-3S +P-1AS +ADV-I +V-PAI-2S +CONJ +CONJ +D-APN +V-RAI-1S +P-2DP +T-NSF +N-NSF +V-RAI-3S +P-2GP +T-ASF +N-ASF +CONJ +P-1NS +T-ASF +N-ASF +V-PAI-1S +P-2DP +V-PAI-3S +P-2DP +CONJ +P-1NS +V-2AAS-1S +CONJ +COND +PRT-N +V-2AAS-1S +T-NSM +N-NSM +PRT-N +PRT-N +V-2AAS-3S +PREP +P-2AP +CONJ +COND +V-AOS-1S +V-FAI-1S +P-ASM +PREP +P-2AP +CONJ +V-2AAP-NSM +D-NSM +V-FAI-3S +T-ASM +N-ASM +PREP +N-GSF +CONJ +PREP +N-GSF +CONJ +PREP +N-GSF +PRT +PREP +N-GSF +CONJ +PRT-N +V-PAI-3P +PREP +P-1AS +CONJ +PREP +N-GSF +CONJ +PREP +T-ASM +N-ASM +V-PAI-1S +CONJ +ADV-N +V-PAI-2P +P-1AS +CONJ +PREP +N-GSF +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +V-RPI-3S +ADV +V-PAI-1S +A-APN +P-2DP +V-PAN +CONJ +PRT-N +V-PNI-2P +V-PAN +ADV +CONJ +CONJ +V-2AAS-3S +D-NSM +T-NSN +N-NSN +T-GSF +N-GSF +V-FAI-3S +P-2AP +PREP +T-ASF +N-ASF +A-ASF +CONJ +PRT-N +V-FAI-3S +PREP +F-3GSM +CONJ +K-APN +V-PAI-3S +V-FAI-3S +CONJ +T-APN +V-PNP-APN +V-FAI-3S +P-2DP +D-NSM +P-1AS +V-FAI-3S +CONJ +PREP +T-GSN +S-1SGSN +V-FDI-3S +CONJ +V-FAI-3S +P-2DP +A-NPN +K-APN +V-PAI-3S +T-NSM +N-NSM +S-1SNPN +V-PAI-3S +PREP +D-ASN +V-2AAI-1S +CONJ +PREP +T-GSN +S-1SGSN +V-PAI-3S +CONJ +V-FAI-3S +P-2DP +A-ASN +CONJ +ADV-N +V-PAI-2P +P-1AS +CONJ +ADV +A-ASN +CONJ +V-FDI-2P +P-1AS +CONJ +V-2AAI-3P +PREP +T-GPM +N-GPM +P-GSM +PREP +C-APM +I-NSN +V-PAI-3S +D-NSN +R-ASN +V-PAI-3S +P-1DP +A-ASN +CONJ +PRT-N +V-PAI-2P +P-1AS +CONJ +ADV +A-ASN +CONJ +V-FDI-2P +P-1AS +CONJ +CONJ +V-PAI-1S +PREP +T-ASM +N-ASM +CONJ +V-IAI-3P +I-NSN +V-PAI-3S +D-NSN +R-ASN +V-PAI-3S +T-ASN +A-ASN +PRT-N +V-RAI-1P +I-ASN +V-PAI-3S +V-2AAI-3S +N-NSM +CONJ +V-IAI-3P +P-ASM +V-PAN +CONJ +V-2AAI-3S +P-DPM +PREP +D-GSM +V-PAI-2P +PREP +C-GPM +CONJ +V-2AAI-1S +A-ASN +CONJ +PRT-N +V-PAI-2P +P-1AS +CONJ +ADV +A-ASN +CONJ +V-FDI-2P +P-1AS +HEB +HEB +V-PAI-1S +P-2DP +CONJ +V-FAI-2P +CONJ +V-FAI-2P +P-2NP +CONJ +T-NSM +N-NSM +V-2FOI-3S +P-2NP +V-FPI-2P +CONJ +T-NSF +N-NSF +P-2GP +PREP +N-ASF +V-FDI-3S +CONJ +T-NSF +N-NSF +V-PAS-3S +N-ASF +V-PAI-3S +CONJ +V-2AAI-3S +T-NSF +N-NSF +P-GSF +CONJ +CONJ +V-AAS-3S +T-ASN +N-ASN +ADV-N +V-PAI-3S +T-GSF +N-GSF +PREP +T-ASF +N-ASF +CONJ +V-API-3S +N-NSM +PREP +T-ASM +N-ASM +CONJ +PRT +CONJ +P-2NP +ADV +N-ASF +V-PAI-2P +CONJ +ADV +V-FDI-1S +P-2AP +CONJ +V-2FOI-3S +P-2GP +T-NSF +N-NSF +CONJ +T-ASF +N-ASF +P-2GP +A-NSM-N +V-PAI-3S +PREP +P-2GP +CONJ +PREP +D-DSF +T-DSF +N-DSF +P-1AS +PRT-N +V-FAI-2P +A-ASN-N +HEB +HEB +V-PAI-1S +P-2DP +PRT +X-ASN +V-AAS-2P +T-ASM +N-ASM +V-FAI-3S +P-2DP +PREP +T-DSN +N-DSN +P-1GS +ADV +ADV +PRT-N +V-AAI-2P +A-ASN-N +PREP +T-DSN +N-DSN +P-1GS +V-PAM-2P +CONJ +V-FDI-2P +CONJ +T-NSF +N-NSF +P-2GP +V-PAS-3S +V-RPP-NSF +D-APN +PREP +N-DPF +V-RAI-1S +P-2DP +V-PNI-3S +N-NSF +ADV +ADV-N +PREP +N-DPF +V-FAI-1S +P-2DP +CONJ +N-DSF +PREP +T-GSM +N-GSM +V-FAI-1S +P-2DP +PREP +D-DSF +T-DSF +N-DSF +PREP +T-DSN +N-DSN +P-1GS +V-FMI-2P +CONJ +PRT-N +V-PAI-1S +P-2DP +CONJ +P-1NS +V-FAI-1S +T-ASM +N-ASM +PREP +P-2GP +CONJ +P-NSM +T-NSM +N-NSM +V-PAI-3S +P-2AP +CONJ +P-2NP +P-1AS +V-RAI-2P +CONJ +V-RAI-2P +CONJ +P-1NS +PREP +T-GSM +N-GSM +V-2AAI-1S +V-2AAI-1S +PREP +T-GSM +N-GSM +CONJ +V-2RAI-1S +PREP +T-ASM +N-ASM +ADV +V-PAI-1S +T-ASM +N-ASM +CONJ +V-PNI-1S +PREP +T-ASM +N-ASM +V-PAI-3P +T-NPM +N-NPM +P-GSM +V-2AAM-2S +ADV +PREP +N-DSF +V-PAI-2S +CONJ +N-ASF +A-ASF-N +V-PAI-2S +ADV +V-RAI-1P +CONJ +V-RAI-2S +A-APN +CONJ +PRT-N +N-ASF +V-PAI-2S +CONJ +X-NSM +P-2AS +V-PAS-3S +PREP +D-DSN +V-PAI-1P +CONJ +PREP +N-GSM +V-2AAI-2S +V-ADI-3S +P-DPM +N-NSM +ADV +V-PAI-2P +V-2AMM-2S +V-PNI-3S +N-NSF +CONJ +V-2RAI-3S +CONJ +V-APS-2P +A-NSM +PREP +T-APN +A-APN +P-1AS-K +A-ASM +V-2AAS-2P +CONJ +PRT-N +V-PAI-1S +A-NSM +CONJ +T-NSM +N-NSM +PREP +P-1GS +V-PAI-3S +D-APN +V-RAI-1S +P-2DP +CONJ +PREP +P-1DS +N-ASF +V-PAS-2P +PREP +T-DSM +N-DSM +N-ASF +V-PAI-2P +CONJ +V-PAM-2P +P-1NS +V-RAI-1S +T-ASM +N-ASM +D-APN +V-AAI-3S +N-NSM +CONJ +V-AAP-NSM +T-APM +N-APM +P-GSM +PREP +T-ASM +N-ASM +V-2AAI-3S +N-VSM +V-2RAI-3S +T-NSF +N-NSF +V-AAM-2S +P-2GS +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +V-AAS-3S +P-2AS +ADV +V-AAI-2S +P-DSM +N-ASF +A-GSF +N-GSF +CONJ +A-ASN +R-ASN +V-RAI-2S +P-DSM +V-FAS-3S +P-DPM +N-ASF +A-ASF +CONJ +D-NSF +V-PAI-3S +T-NSF +A-NSF +N-NSF +CONJ +V-PAS-3P +P-2AS +T-ASM +A-ASM +A-ASM +N-ASM +CONJ +R-ASM +V-AAI-2S +N-ASM +N-ASM +P-1NS +P-2AS +V-AAI-1S +PREP +T-GSF +N-GSF +V-AAP-NSM +T-ASN +N-ASN +R-ASN +V-RAI-2S +P-1DS +CONJ +V-AAS-1S +CONJ +N-VSM +ADV +V-AAM-2S +P-1AS +P-2NS +PREP +F-2DSM +T-DSF +N-DSF +R-DSF +V-IAI-1S +PREP +T-GSN +T-ASM +N-ASM +V-PAN +PREP +P-2DS +V-AAI-1S +P-2GS +T-ASN +N-ASN +T-DPM +N-DPM +R-APM +V-AAI-2S +P-1DS +PREP +T-GSM +N-GSM +S-2SNPM +V-IAI-3P +P-1DS-K +P-APM +V-AAI-2S +CONJ +T-ASM +N-ASM +P-2GS +V-RAI-3P +ADV +V-RAI-3P +CONJ +A-NPN +K-APN +V-RAI-2S +P-1DS +PREP +P-2GS +V-PAI-3P +CONJ +T-APN +N-APN +R-APN +V-AAI-2S +P-1DS +V-RAI-1S +P-DPM +CONJ +P-NPM +V-2AAI-3P +CONJ +V-2AAI-3P +ADV +CONJ +PREP +P-2GS +V-2AAI-1S +CONJ +V-AAI-3P +CONJ +P-2NS +P-1AS +V-AAI-2S +P-1NS +PREP +P-GPM +V-PAI-1S +PRT-N +PREP +T-GSM +N-GSM +V-PAI-1S +CONJ +PREP +R-GPM +V-RAI-2S +P-1DS +CONJ +S-2SNPM +V-PAI-3P +CONJ +T-NPN +S-1SNPN +A-NPN +S-2SNPN +V-PAI-3S +CONJ +T-NPN +S-2SNPN +S-1SNPN +CONJ +V-RPI-1S +PREP +P-DPM +CONJ +ADV-N +V-PAI-1S +PREP +T-DSM +N-DSM +CONJ +P-NPM +PREP +T-DSM +N-DSM +V-PAI-3P +P-1NS-K +PREP +P-2AS +V-PNI-1S +N-VSM +A-VSM +V-AAM-2S +P-APM +PREP +T-DSN +N-DSN +P-2GS +R-DSN +V-RAI-2S +P-1DS +CONJ +V-PAS-3P +A-NSN +ADV +P-1NP +ADV +V-IMI-1S +PREP +P-GPM +P-1NS +V-IAI-1S +P-APM +PREP +T-DSN +N-DSN +P-2GS +R-DSN +V-RAI-2S +P-1DS +CONJ +V-AAI-1S +CONJ +A-NSM-N +PREP +P-GPM +V-2AMI-3S +COND +PRT-N +T-NSM +N-NSM +T-GSF +N-GSF +CONJ +T-NSF +N-NSF +V-APS-3S +CONJ +ADV +PREP +P-2AS +V-PNI-1S +CONJ +D-APN +V-PAI-1S +PREP +T-DSM +N-DSM +CONJ +V-PAS-3P +T-ASF +N-ASF +T-ASF +S-1SASF +V-RPP-ASF +PREP +F-3DPM +P-1NS +V-RAI-1S +P-DPM +T-ASM +N-ASM +P-2GS +CONJ +T-NSM +N-NSM +V-AAI-3S +P-APM +CONJ +PRT-N +V-PAI-3P +PREP +T-GSM +N-GSM +ADV +P-1NS +PRT-N +V-PAI-1S +PREP +T-GSM +N-GSM +PRT-N +V-PAI-1S +CONJ +V-AAS-2S +P-APM +PREP +T-GSM +N-GSM +CONJ +CONJ +V-AAS-2S +P-APM +PREP +T-GSM +A-GSM +PREP +T-GSM +N-GSM +PRT-N +V-PAI-3P +ADV +P-1NS +PRT-N +V-PAI-1S +PREP +T-GSM +N-GSM +V-AAM-2S +P-APM +PREP +T-DSF +N-DSF +T-NSM +N-NSM +T-NSM +S-2SNSM +N-NSF +V-PAI-3S +ADV +P-1AS +V-AAI-2S +PREP +T-ASM +N-ASM +P-1NS-K +V-AAI-1S +P-APM +PREP +T-ASM +N-ASM +CONJ +PREP +P-GPM +P-1NS +V-PAI-1S +F-1ASM +CONJ +V-PAS-3P +V-RPP-NPM +CONJ +P-NPM +PREP +N-DSF +CONJ +PRT-N +PREP +D-GPM +V-PAI-1S +ADV +CONJ +CONJ +PREP +T-GPM +V-PAP-GPM +PREP +T-GSM +N-GSM +P-GPM +PREP +P-1AS +CONJ +A-NPM +A-NSN +V-PAS-3P +ADV +N-NSM +P-2NS +PREP +P-1DS +P-1NS-K +PREP +P-2DS +CONJ +CONJ +P-NPM +PREP +P-1DP +V-PAS-3P +CONJ +T-NSM +N-NSM +V-PAS-3S +CONJ +P-2NS +P-1AS +V-AAI-2S +P-1NS-K +T-ASF +N-ASF +R-ASF +V-RAI-2S +P-1DS +V-RAI-1S +P-DPM +CONJ +V-PAS-3P +A-NSN +ADV +P-1NP +A-NSN +P-1NS +PREP +P-DPM +CONJ +P-2NS +PREP +P-1DS +CONJ +V-PAS-3P +V-RPP-NPM +PREP +A-ASN +CONJ +V-PAS-3S +T-NSM +N-NSM +CONJ +P-2NS +P-1AS +V-AAI-2S +CONJ +V-AAI-2S +P-APM +ADV +P-1AS +V-AAI-2S +N-NSM +R-ASN +V-RAI-2S +P-1DS +V-PAI-1S +CONJ +ADV +V-PAI-1S +P-1NS +D-NPM-K +V-PAS-3P +PREP +P-1GS +CONJ +V-PAS-3P +T-ASF +N-ASF +T-ASF +S-1SASF +R-ASF +V-RAI-2S +P-1DS +CONJ +V-AAI-2S +P-1AS +PREP +N-GSF +N-GSM +N-NSM +A-VSM +CONJ +T-NSM +N-NSM +P-2AS +PRT-N +V-2AAI-3S +CONJ +P-1NS +P-2AS +V-2AAI-1S +CONJ +D-NPM +V-2AAI-3P +CONJ +P-2NS +P-1AS +V-AAI-2S +CONJ +V-AAI-1S +P-DPM +T-ASN +N-ASN +P-2GS +CONJ +V-FAI-1S +CONJ +T-NSF +N-NSF +R-ASF +V-AAI-2S +P-1AS +PREP +P-DPM +V-PAS-3S +P-1NS-K +PREP +P-DPM +D-APN +V-2AAP-NSM +N-NSM +V-2AAI-3S +PREP +T-DPM +N-DPM +P-GSM +ADV +T-GSM +N-GSM +T-GPM +N-PRI +ADV +V-IAI-3S +N-NSM +PREP +R-ASM +V-2AAI-3S +P-NSM +CONJ +T-NPM +N-NPM +P-GSM +CONJ +V-2LAI-3S +CONJ +N-NSM +T-NSM +V-PAP-NSM +P-ASM +T-ASM +N-ASM +CONJ +ADV +V-API-3S +N-NSM +ADV +PREP +T-GPM +N-GPM +P-GSM +CONJ +T-NSM +N-NSM +V-2AAP-NSM +T-ASF +N-ASF +CONJ +PREP +T-GPM +N-GPM +CONJ +PREP +T-GPM +N-GPM +N-APM +V-PNI-3S +ADV +PREP +N-GPM +CONJ +N-GPF +CONJ +N-GPN +CONJ +N-NSM +V-RAP-NSM +A-APN +T-APN +V-PNP-APN +PREP +P-ASM +V-2AAI-3S +CONJ +V-PAI-3S +P-DPM +I-ASM +V-PAI-2P +V-ADI-3P +P-DSM +N-ASM +T-ASM +N-ASM +V-PAI-3S +P-DPM +P-1NS +V-PAI-1S +CONJ +V-LAI-3S +CONJ +N-NSM +T-NSM +V-PAP-NSM +P-ASM +PREP +P-GPM +CONJ +ADV +V-2AAI-3S +P-DPM +P-1NS +V-PAI-1S +V-2AAI-3P +PREP +T-APN +ADV +CONJ +V-2AAI-3P +ADV +CONJ +ADV +V-AAI-3S +P-APM +I-ASM +V-PAI-2P +CONJ +T-NPM +V-2AAI-3P +N-ASM +T-ASM +N-ASM +V-ADI-3S +N-NSM +V-2AAI-1S +P-2DP +CONJ +P-1NS +V-PAI-1S +CONJ +COND +P-1AS +V-PAI-2P +V-2AAM-2P +D-APM +V-PAN +CONJ +V-APS-3S +T-NSM +N-NSM +R-ASM +V-2AAI-3S +CONJ +R-APM +V-RAI-2S +P-1DS +PRT-N +V-AAI-1S +PREP +P-GPM +A-ASM-N +CONJ +N-NSM +N-NSM +V-PAP-NSM +N-ASF +V-AAI-3S +P-ASF +CONJ +V-AAI-3S +T-ASM +T-GSM +N-GSM +N-ASM +CONJ +V-AAI-3S +P-GSM +T-ASN +N-ASN +T-ASN +A-ASN +CONJ +V-IAI-3S +N-NSN +T-DSM +N-DSM +N-NSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-DSM +N-DSM +V-2AAM-2S +T-ASF +N-ASF +PREP +T-ASF +N-ASF +T-ASN +N-ASN +R-ASN +V-RAI-3S +P-1DS +T-NSM +N-NSM +PRT-N +PRT-N +V-2AAS-1S +P-ASN +CONJ +T-NSF +N-NSF +CONJ +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +T-GPM +A-GPM +V-2AAI-3P +T-ASM +N-ASM +CONJ +V-AAI-3P +P-ASM +CONJ +V-2AAI-3P +PREP +N-ASM +ADV-S +CONJ +V-IAI-3S +N-NSM +T-GSM +N-GSM +R-NSM +V-IAI-3S +N-NSM +T-GSM +N-GSM +D-GSM +CONJ +V-IAI-3S +N-NSM +T-NSM +V-AAP-NSM +T-DPM +A-DPM +CONJ +V-PAI-3S +A-ASM +N-ASM +V-2AAN +PREP +T-GSM +N-GSM +CONJ +V-IAI-3S +T-DSM +N-DSM +N-NSM +N-NSM +CONJ +A-NSM +N-NSM +CONJ +T-NSM +N-NSM +D-NSM +V-IAI-3S +A-NSM +T-DSM +N-DSM +CONJ +V-2AAI-3S +T-DSM +N-DSM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +V-LAI-3S +PREP +T-DSF +N-DSF +ADV +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-NSM +A-NSM +T-NSM +A-NSM +T-GSM +N-GSM +CONJ +V-2AAI-3S +T-DSF +N-DSF +CONJ +V-2AAI-3S +T-ASM +N-ASM +CONJ +V-PAI-3S +T-DSM +N-DSM +T-NSF +N-NSF +T-NSF +N-NSF +PRT-N +CONJ +P-2NS +PREP +T-GPM +N-GPM +T-GSM +N-GSM +D-GSM +V-PAI-2S +V-PAI-3S +D-NSM +PRT-N +V-PAI-1S +CONJ +V-LAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +N-ASF +V-RAP-NPM +CONJ +N-NSN +V-IAI-3S +CONJ +V-INI-3P +CONJ +CONJ +T-NSM +N-NSM +PREP +P-GPM +V-IAI-3S +V-RAP-NSM +CONJ +V-PMP-NSM +CONJ +T-NSM +N-NSM +V-AAI-3S +T-ASM +N-ASM +PREP +T-GPM +N-GPM +P-GSM +CONJ +PREP +T-GSF +N-GSF +P-GSM +V-ADI-3S +P-DSM +N-NSM +P-1NS +N-DSF +V-RAI-1S +T-DSM +N-DSM +P-1NS +ADV +V-AAI-1S +PREP +N-DSF +CONJ +PREP +T-DSN +N-DSN +ADV +A-NPM +T-NPM +A-NPM +V-PNI-3P +CONJ +PREP +A-DSN +V-AAI-1S +A-ASN-N +I-ASN +P-1AS +V-PAI-2S +V-AAM-2S +T-APM +V-2RAP-APM-ATT +I-ASN +V-AAI-1S +P-DPM +V-2AAM-2S +D-NPM +V-RAI-3P +R-APN +V-2AAI-1S +P-1NS +CONJ +D-APN +P-GSM +V-2AAP-GSM +A-NSM +V-RAP-NSM +T-GPM +N-GPM +V-AAI-3S +N-ASN +T-DSM +N-DSM +V-2AAP-NSM +ADV +V-PNI-2S +T-DSM +N-DSM +V-ADI-3S +P-DSM +N-NSM +COND +ADV +V-AAI-1S +V-AAM-2S +PREP +T-GSN +A-GSN +CONJ +COND +ADV +I-ASN +P-1AS +V-PAI-2S +CONJ +V-AAI-3S +P-ASM +T-NSM +N-NSM +V-RPP-ASM +PREP +N-ASM +T-ASM +N-ASM +CONJ +N-NSM +N-NSM +V-IAI-3S +V-RAP-NSM +CONJ +V-PMP-NSM +CONJ +V-2AAI-3P +P-DSM +PRT-N +CONJ +P-2NS +PREP +T-GPM +N-GPM +P-GSM +V-PAI-2S +V-ADI-3S +D-NSM +CONJ +V-2AAI-3S +PRT-N +V-PAI-1S +V-PAI-3S +A-NSM +PREP +T-GPM +N-GPM +T-GSM +N-GSM +V-PAP-NSM +A-NSM +R-GSM +V-AAI-3S +N-NSM +T-ASN +N-ASN +PRT-N +P-1NS +V-2AAI-1S +P-2AS +PREP +T-DSM +N-DSM +PREP +P-GSM +CONJ +ADV +V-ADI-3S +N-NSM +CONJ +ADV +N-NSM +V-AAI-3S +CONJ +V-PAI-3P +T-ASM +N-ASM +PREP +T-GSM +N-GSM +PREP +T-ASN +N-ASN +CONJ +V-IAI-3S +ADV +CONJ +P-NPM +PRT-N +V-2AAI-3P +PREP +T-ASN +N-ASN +CONJ +PRT-N +V-APS-3P +CONJ +V-2AAS-3P +T-ASN +ARAM +CONJ +V-2AAI-3S +T-NSM +N-NSM +ADV +PREP +P-APM +CONJ +V-PAI-3S +I-ASF +N-ASF +T-GSM +N-GSM +D-GSM +V-PAI-2P +V-ADI-3P +CONJ +V-2AAI-3P +P-DSM +COND +PRT-N +V-IAI-3S +V-PAP-NSM +D-NSM +A-ASN +PRT +PRT-N +P-2DS +V-AAI-1P +P-ASM +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +V-2AAM-2P +P-ASM +P-2NP +CONJ +PREP +T-ASM +N-ASM +P-2GP +V-AAM-2P +P-ASM +V-2AAI-3P +P-DSM +T-NPM +A-NPM +P-1DP +PRT-N +V-PAI-3S +V-AAN +A-ASM-N +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-APS-3S +R-ASM +V-2AAI-3S +V-PAP-NSM +I-DSM +N-DSM +V-IAI-3S-ATT +V-PAN +CONJ +V-2AAI-3S +ADV +PREP +T-ASN +N-ASN +T-NSM +N-NSM +CONJ +V-AAI-3S +T-ASM +N-ASM +CONJ +V-2AAI-3S +P-DSM +P-2NS +V-PAI-2S +T-NSM +N-NSM +T-GPM +A-GPM +V-ADI-3S +N-NSM +PREP +F-2GSM +P-2NS +D-ASN +V-PAI-2S +PRT +A-NPM +V-2AAI-3P +P-2DS +PREP +P-1GS +V-ADI-3S +T-NSM +N-NSM +PRT-I +P-1NS +A-NSM +V-PAI-1S +T-NSN +N-NSN +T-NSN +S-2SNSN +CONJ +T-NPM +N-NPM +V-AAI-3P +P-2AS +P-1DS +I-ASN +V-AAI-2S +V-ADI-3S +N-NSM +T-NSF +N-NSF +T-NSF +S-1SNSF +PRT-N +V-PAI-3S +PREP +T-GSM +N-GSM +D-GSM +COND +PREP +T-GSM +N-GSM +D-GSM +V-IAI-3S +T-NSF +N-NSF +T-NSF +S-1SNSF +PRT +T-NPM +N-NPM +T-NPM +S-1SNPM +V-INI-3P +CONJ +PRT-N +V-APS-1S +T-DPM +A-DPM +CONJ +ADV +T-NSF +N-NSF +T-NSF +S-1SNSF +PRT-N +V-PAI-3S +ADV +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +ADV-N +N-NSM +V-PAI-2S +P-2NS +V-ADI-3S +T-NSM +N-NSM +P-2NS +V-PAI-2S +CONJ +N-NSM +V-PAI-1S +P-1NS +PREP +D-ASN +V-RPI-1S +CONJ +PREP +D-ASN +V-2RAI-1S +PREP +T-ASM +N-ASM +CONJ +V-AAS-1S +T-DSF +N-DSF +A-NSM +T-NSM +V-PAP-NSM +PREP +T-GSF +N-GSF +V-PAI-3S +P-1GS +T-GSF +N-GSF +V-PAI-3S +P-DSM +T-NSM +N-NSM +I-NSN +V-PAI-3S +N-NSF +CONJ +D-ASN +V-2AAP-NSM +ADV +V-2AAI-3S +PREP +T-APM +A-APM +CONJ +V-PAI-3S +P-DPM +P-1NS +A-ASF-N +V-PAI-1S +PREP +P-DSM +N-ASF +CONJ +V-PAI-3S +N-NSF +P-2DP +CONJ +A-ASM +V-AAS-1S +P-2DP +PREP +T-DSM +ARAM +CONJ +V-PNI-2P +V-AAS-1S +P-2DP +T-ASM +N-ASM +T-GPM +A-GPM +CONJ +V-AAI-3P +ADV +V-PAP-NPM +PRT-N +D-ASM +CONJ +T-ASM +N-ASM +CONJ +V-IAI-3S +T-NSM +N-NSM +N-NSM +CONJ +ADV +V-2AAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +V-AAI-3S +CONJ +T-NPM +N-NPM +V-AAP-NPM +N-ASM +PREP +N-GPF +V-AAI-3P +P-GSM +T-DSF +N-DSF +CONJ +N-ASN +A-ASN +V-2AAI-3P +P-ASM +CONJ +V-INI-3P +PREP +P-ASM +CONJ +V-IAI-3P +V-PAM-2S +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +V-IAI-3P +P-DSM +N-APN +CONJ +V-2AAI-3S +ADV +ADV +T-NSM +N-NSM +CONJ +V-PAI-3S +P-DPM +V-2AAM-2S +V-PAI-1S +P-2DP +P-ASM +ADV +CONJ +V-2AAS-2P +CONJ +A-ASF-N +N-ASF +V-PAI-1S +PREP +P-DSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +ADV +V-PAP-NSM +T-ASM +A-ASM +N-ASM +CONJ +T-ASN +A-ASN +N-ASN +CONJ +V-PAI-3S +P-DPM +V-2AMM-2S +T-NSM +N-NSM +CONJ +ADV +V-2AAI-3P +P-ASM +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +V-AAI-3P +V-PAP-NPM +V-AAM-2S +V-AAM-2S +V-PAI-3S +P-DPM +T-NSM +N-NSM +V-2AAM-2P +P-ASM +P-2NP +CONJ +V-AAM-2P +CONJ +P-1NS +PRT-N +V-PAI-1S +PREP +P-DSM +N-ASF +V-ADI-3P +P-DSM +T-NPM +A-NPM +P-1NP +N-ASM +V-PAI-1P +CONJ +PREP +T-ASM +N-ASM +V-PAI-3S +V-2AAN +CONJ +N-ASM +N-GSM +F-3ASM +V-AAI-3S +CONJ +ADV +V-AAI-3S +T-NSM +N-NSM +D-ASM +T-ASM +N-ASM +ADV +V-AOI-3S +CONJ +V-2AAI-3S +PREP +T-ASN +N-ASN +ADV +CONJ +V-PAI-3S +T-DSM +N-DSM +ADV-I +V-PAI-2S +P-2NS +CONJ +T-NSM +N-NSM +N-ASF +PRT-N +V-AAI-3S +P-DSM +CONJ +V-PAI-3S +P-DSM +T-NSM +N-NSM +PRT-N +P-1DS +V-PAI-2S +PRT-N +V-RAI-2S +CONJ +N-ASF +V-PAI-1S +V-AAN +P-2AS +CONJ +N-ASF +V-PAI-1S +V-AAN +P-2AS +V-ADI-3S +N-NSM +PRT-N +V-IAI-2S +N-ASF +A-ASF-N +PREP +P-1GS +COND +PRT-N +V-IAI-3S +V-RPP-NSN +P-2DS +ADV +PREP +D-ASN +T-NSM +V-2AAP-NSM +P-1AS +P-2DS +A-ASF-C +N-ASF +V-PAI-3S +PREP +D-GSN +T-NSM +N-NSM +V-IAI-3S +V-AAN +P-ASM +CONJ +T-NPM +A-NPM +V-AAI-3P +V-PAP-NPM +COND +D-ASM +V-AAS-2S +PRT-N +V-PAI-2S +A-NSM +T-GSM +N-GSM +A-NSM +T-NSM +N-ASM +F-3ASM +V-PAP-NSM +V-PAI-3S +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-GPM +N-GPM +D-GPM +V-2AAI-3S +ADV +T-ASM +N-ASM +CONJ +V-AAI-3S +PREP +N-GSN +PREP +N-ASM +V-PPP-ASM +A-ASN +CONJ +ADV +N-PRI +CONJ +V-IAI-3S +N-NSF +T-GSM +ARAM +N-NSF +V-IAI-3S +ADV +A-NSF +CONJ +V-PAI-3S +T-DPM +A-DPM +V-2AAM-2S +T-NSM +N-NSM +P-2GP +CONJ +V-AAI-3P +D-NPM +V-AAM-2S +V-AAM-2S +V-AAM-2S +P-ASM +V-PAI-3S +P-DPM +T-NSM +N-NSM +T-ASM +N-ASM +P-2GP +V-AAS-1S +V-ADI-3P +T-NPM +N-NPM +PRT-N +V-PAI-1P +N-ASM +COND +PRT-N +N-ASM +CONJ +ADV +V-AAI-3S +P-ASM +P-DPM +CONJ +V-APS-3S +CONJ +V-2AAI-3P +T-ASM +N-ASM +CONJ +V-PAP-NSM +F-3DSM +T-ASM +N-ASM +V-2AAI-3S +PREP +T-ASM +V-PPP-ASM +N-GSN +N-ASM +R-NSN +V-PPI-3S +ADV +N-PRI +ADV +P-ASM +V-AAI-3P +CONJ +PREP +P-GSM +A-APM +A-NUI +ADV +CONJ +ADV +CONJ +A-ASN +T-ASM +N-ASM +CONJ +V-AAI-3S +CONJ +N-ASM +T-NSM +N-NSM +CONJ +V-AAI-3S +PREP +T-GSM +N-GSM +CONJ +V-IAI-3S +V-RPP-NSN +N-NSM +T-NSM +N-NSM +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +D-ASM +T-ASM +N-ASM +V-2AAI-3P +A-NPM +T-GPM +A-GPM +CONJ +ADV +T-GSF +N-GSF +V-IAI-3S +T-NSM +N-NSM +ADV +V-API-3S +T-NSM +N-NSM +CONJ +V-IAI-3S +V-RPP-NSN +ADV +ADV +ADV +CONJ +V-IAI-3P +T-DSM +N-DSM +T-NPM +N-NPM +T-GPM +A-GPM +PRT-N +V-PAM-2S +T-NSM +N-NSM +T-GPM +A-GPM +CONJ +CONJ +D-NSM +V-2AAI-3S +N-NSM +T-GPM +A-GPM +V-PAI-1S +V-ADI-3S +T-NSM +N-NSM +R-ASN +V-2RAI-1S +V-2RAI-1S +CONJ +ADV +T-NPM +N-NPM +V-AAI-3P +T-ASM +N-ASM +V-2AAI-3P +T-APN +N-APN +P-GSM +CONJ +V-AAI-3P +A-APN +N-APN +A-DSM +N-DSM +N-NSN +CONJ +T-ASM +N-ASM +CONJ +V-IAI-3S +T-NSM +N-NSM +A-NSM +PREP +T-GPM +ADV +A-NSM +PREP +A-GSM +CONJ +V-2AAI-3P +PREP +C-APM +PRT-N +V-AAS-1P +P-ASM +CONJ +V-2AAS-1P +PREP +P-GSM +I-GSM +V-FDI-3S +CONJ +T-NSF +N-NSF +V-APS-3S +V-AMI-3P +T-APN +N-APN +P-1GS +F-3DPM +CONJ +PREP +T-ASM +N-ASM +P-1GS +V-2AAI-3P +N-ASM +CONJ +PRT +T-NPM +N-NPM +D-APN +V-AAI-3P +CONJ +V-LAI-3P +PREP +T-DSM +N-DSM +T-GSM +N-GSM +T-NSF +N-NSF +P-GSM +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +P-GSM +N-NSF +T-NSF +T-GSM +N-GSM +CONJ +N-NSF +T-NSF +N-NSF +CONJ +N-NSM +V-2AAP-NSM +T-ASF +N-ASF +CONJ +T-ASM +N-ASM +V-RAP-ASM +R-ASM +V-IAI-3S +V-PAI-3S +T-DSF +N-DSF +N-VSF +V-2AAM-2S +T-NSM +N-NSM +P-2GS +ADV +V-PAI-3S +T-DSM +N-DSM +V-2AAM-2S +T-NSF +N-NSF +P-2GS +CONJ +PREP +D-GSF +T-GSF +N-GSF +V-2AAI-3S +T-NSM +N-NSM +P-ASF +PREP +T-APN +A-APN +PREP +D-ASN +T-NSM +N-NSM +V-RAP-NSM +CONJ +ADV +A-NPN +V-RPI-3S +CONJ +V-APS-3S +T-NSF +N-NSF +V-PAI-3S +V-PAI-1S +N-NSN +N-GSN +A-NSN +V-INI-3S +CONJ +N-ASM +A-ASM +T-GSN +N-GSN +N-DSM +V-2AAP-NPM +V-AAI-3P +P-GSM +T-DSN +N-DSN +CONJ +ADV +V-2AAI-3S +T-ASN +N-ASN +T-NSM +N-NSM +V-2AAI-3S +V-RPI-3S +CONJ +V-AAP-NSM +T-ASF +N-ASF +V-AAI-3S +T-ASN +N-ASN +CONJ +T-NPM +A-NPM +CONJ +N-NSF +V-IAI-3S +CONJ +PRT-N +V-AAS-3S +PREP +T-GSM +N-GSM +T-NPN +N-NPN +PREP +T-DSN +N-DSN +CONJ +V-IAI-3S +A-NSF +T-NSF +N-NSF +D-GSN +T-GSN +N-GSN +V-AAI-3P +T-ASM +N-ASM +CONJ +V-2APS-3P +P-GPM +T-NPN +N-NPN +CONJ +V-APS-3P +CONJ +V-2AAI-3P +T-NPM +N-NPM +CONJ +PRT +V-AAI-3P +T-APN +N-APN +T-GSM +A-GSM-S +CONJ +T-GSM +A-GSM +T-GSM +V-APP-GSM +P-DSM +CONJ +PREP +T-ASM +N-ASM +V-2AAP-NPM +ADV +V-2AAI-3P +ADV +P-ASM +V-RAP-ASM +PRT-N +V-AAI-3P +P-GSM +T-APN +N-APN +CONJ +A-NSM +T-GPM +N-GPM +N-DSF +P-GSM +T-ASF +N-ASF +V-AAI-3S +CONJ +V-2AAI-3S +ADV +N-NSN +CONJ +N-NSN +CONJ +T-NSM +V-RAP-NSM-ATT +V-RAI-3S +CONJ +A-NSF +V-PAI-3S +P-GSM +T-NSF +N-NSF +CONJ +D-NSM +V-RAI-3S +CONJ +A-APN +V-PAI-3S +CONJ +CONJ +P-2NP +V-PAS-2P +CONJ +V-2ADI-3S +D-NPN +CONJ +T-NSF +N-NSF +V-APS-3S +N-NSN +P-GSM +PRT-N +V-2FPI-3S +CONJ +ADV +A-NSF +N-NSF +V-PAI-3S +V-FDI-3P +PREP +R-ASM +V-AAI-3P +CONJ +PREP +D-APN +V-AAI-3S +T-ASM +N-ASM +N-PRI +PREP +N-GSF +V-PAP-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-RPP-NSM +PREP +T-ASM +N-ASM +T-GPM +A-GPM +CONJ +V-AAS-3S +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +V-AAI-3S +T-NSM +N-NSM +CONJ +V-2AAI-3S +CONJ +V-AAI-3S +T-ASN +N-ASN +P-GSM +CONJ +V-2AAI-3S +CONJ +N-NSM +T-NSM +V-2AAP-NSM +PREP +P-ASM +N-GSF +T-ASN +A-ASN-S +V-PAP-NSM +N-ASN +N-GSF +CONJ +N-GSF +ADV +N-APF +A-NUI +CONJ +V-2AAI-3P +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +V-AAI-3P +P-ASN +N-DPN +PREP +T-GPN +N-GPN +ADV +N-NSN +V-PAI-3S +T-DPM +A-DPM +V-PAN +CONJ +V-IAI-3S +PREP +T-DSM +N-DSM +ADV +V-API-3S +N-NSM +CONJ +PREP +T-DSM +N-DSM +N-NSN +A-NSN +PREP +R-DSN +ADV-N +A-NSM-N +V-IAI-3S +V-RPP-NSM +CONJ +ADV +PREP +T-ASF +N-ASF +T-GPM +A-GPM +CONJ +ADV +V-IAI-3S +T-NSN +N-NSN +V-AAI-3P +T-ASM +N-ASM +CONJ +T-DSF +A-DSF +T-GPN +N-GPN +N-NSF +T-NSF +N-NSF +V-PNI-3S +ADV +PREP +T-ASN +N-ASN +N-GSF +ADV +V-PAP-GSF +CONJ +V-PAI-3S +T-ASM +N-ASM +V-RPP-ASM +PREP +T-GSN +N-GSN +CONJ +V-PAI-3S +CONJ +V-PNI-3S +PREP +N-ASM +N-ASM +CONJ +PREP +T-ASM +A-ASM +N-ASM +R-ASM +V-IAI-3S +T-NSM +N-NSM +CONJ +V-PAI-3S +P-DPM +V-AAI-3P +T-ASM +N-ASM +PREP +T-GSN +N-GSN +CONJ +PRT-N +V-RAI-1P +ADV-I +V-AAI-3P +P-ASM +CONJ +V-2AAI-3S +T-NSM +N-NSM +CONJ +T-NSM +A-NSM +N-NSM +CONJ +V-INI-3P +PREP +T-ASN +N-ASN +CONJ +V-IAI-3P +T-NPM +A-NUI +ADV +CONJ +T-NSM +A-NSM +N-NSM +V-2AAI-3S +ADV-C +T-GSM +N-GSM +CONJ +V-2AAI-3S +A-NSM-S +PREP +T-ASN +N-ASN +CONJ +V-AAP-NSM +V-PAI-3S +V-PNP-APN +T-APN +N-APN +CONJ +PRT-N +V-2AAI-3S +CONJ +V-PNI-3S +CONJ +N-NSM +N-NSM +V-PAP-NSM +P-DSM +CONJ +V-2AAI-3S +PREP +T-ASN +N-ASN +CONJ +V-PAI-3S +T-APN +N-APN +V-PNP-APN +CONJ +T-ASN +N-ASN +R-NSN +V-IAI-3S +PREP +T-GSF +N-GSF +P-GSM +PRT-N +PREP +T-GPN +N-GPN +V-PNP-ASN +CONJ +ADV +V-RPP-ASN +PREP +A-ASM +N-ASM +CONJ +ADV +V-2AAI-3S +CONJ +T-NSM +A-NSM +N-NSM +T-NSM +V-2AAP-NSM +A-NSM-S +PREP +T-ASN +N-ASN +CONJ +V-2AAI-3S +CONJ +V-AAI-3S +CONJ +ADV-N +V-2LAI-3P +T-ASF +N-ASF +CONJ +V-PAI-3S +P-ASM +PREP +A-GPM +V-2AAN +CONJ +V-2AAI-3P +ADV +PREP +F-3APM +T-NPM +N-NPM +CONJ +N-NSF +V-LAI-3S +PREP +T-DSN +N-DSN +ADV +V-PAP-NSF +CONJ +ADV +V-IAI-3S +V-AAI-3S +PREP +T-ASN +N-ASN +CONJ +V-PAI-3S +A-NUI +N-APM +PREP +A-DPN +V-PNP-APM +ADV +V-INI-3S +T-NSN +N-NSN +T-GSM +N-GSM +A-ASM +PREP +T-DSF +N-DSF +CONJ +A-ASM +PREP +T-DPM +N-DPM +CONJ +V-PAI-3P +P-DSF +D-NPM +N-VSF +I-ASN +V-PAI-2S +V-PAI-3S +P-DPM +CONJ +V-AAI-3P +T-ASM +N-ASM +P-1GS +CONJ +PRT-N +V-RAI-1S +ADV-I +V-AAI-3P +P-ASM +D-APN +V-2AAP-NSF +V-2API-3S +PREP +T-APN +ADV +CONJ +V-PAI-3S +T-ASM +N-ASM +V-RAP-ASM +CONJ +PRT-N +V-2LAI-3S +CONJ +N-NSM +V-PAI-3S +V-PAI-3S +P-DSF +N-NSM +N-VSF +I-ASN +V-PAI-2S +I-ASM +V-PAI-2S +D-NSF +V-PAP-NSF +CONJ +T-NSM +N-NSM +V-PAI-3S +V-PAI-3S +P-DSM +N-VSM +COND +P-2NS +V-AAI-2S +P-ASM +V-2AAM-2S +P-1DS +ADV-I +V-AAI-2S +P-ASM +P-1NS-K +P-ASM +V-FAI-1S +V-PAI-3S +P-DSF +N-NSM +N-PRI +V-2APP-NSF +D-NSF +V-PAI-3S +P-DSM +ADV +ARAM +R-NSN +V-PPI-3S +N-VSM +V-PAI-3S +P-DSF +N-NSM +PRT-N +P-1GS +V-PMM-2S +CONJ +ADV-N +V-RAI-1S +PREP +T-ASM +N-ASM +CONJ +V-PNM-2S +PREP +T-APM +N-APM +P-1GS +CONJ +V-2AAM-2S +P-DPM +V-PAI-1S +PREP +T-ASM +N-ASM +P-1GS +CONJ +N-ASM +P-2GP +CONJ +N-ASM +P-1GS +CONJ +N-ASM +P-2GP +V-PNI-3S +N-PRI +T-NSF +N-NSF +V-PAP-NSF +T-DPM +N-DPM +CONJ +V-RAI-1S-ATT +T-ASM +N-ASM +CONJ +D-APN +V-2AAI-3S +P-DSF +CONJ +V-PAP-GSF +A-GSF +T-DSF +N-DSF +D-DSF +T-DSF +A-DSF +N-GPN +CONJ +T-GPF +N-GPF +V-RPP-GPF +ADV +V-IAI-3P +T-NPM +N-NPM +PREP +T-ASM +N-ASM +T-GPF +A-GPM +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-2AAI-3S +PREP +T-ASN +A-ASN +CONJ +V-PAI-3S +P-DPM +N-NSF +P-2DP +CONJ +D-ASN +V-2AAP-NSM +V-AAI-3S +CONJ +T-APF +N-APF +CONJ +T-ASF +N-ASF +P-DPM +CONJ +V-2AOI-3P +T-NPM +N-NPM +V-2AAP-NPM +T-ASM +N-ASM +CONJ +V-2AAI-3S +P-DPM +T-NSM +N-NSM +ADV +N-NSF +P-2DP +ADV +V-RAI-3S +P-1AS +T-NSM +N-NSM +P-1NS-K +V-PAI-1S +P-2AP +CONJ +D-ASN +V-2AAP-NSM +V-AAI-3S +CONJ +V-PAI-3S +P-DPM +V-2AAM-2P +N-ASN +A-ASN +PRT +V-2AAS-2P +X-GPM +T-APF +N-APF +V-RPI-3P +P-DPM +PRT +X-GPM +V-PAS-2P +V-RPI-3P +CONJ +N-NSM +A-NSM +PREP +T-GPM +A-NUI +T-NSM +V-PPP-NSM +N-NSM +PRT-N +V-IAI-3S +PREP +P-GPM +ADV +V-2AAI-3S +N-NSM +CONJ +V-IAI-3P +P-DSM +T-NPM +A-NPM +N-NPM +V-RAI-1P-ATT +T-ASM +N-ASM +CONJ +T-NSM +V-2AAI-3S +P-DPM +COND +PRT-N +V-2AAS-1S +PREP +T-DPF +N-DPF +P-GSM +T-ASM +N-ASM +T-GPM +N-GPM +CONJ +V-2AAS-1S +T-ASM +N-ASM +P-1GS +PREP +T-ASM +N-ASM +T-GPM +N-GPM +CONJ +V-2AAS-1S +P-1GS +T-ASF +N-ASF +PREP +T-ASF +N-ASF +P-GSM +PRT-N +PRT-N +V-AAS-1S +CONJ +PREP +N-APF +A-NUI +ADV +V-IAI-3P +ADV +T-NPM +N-NPM +P-GSM +CONJ +N-NSM +PREP +P-GPM +V-PNI-3S +T-NSM +N-NSM +T-GPF +N-GPF +V-RPP-GPF +CONJ +V-2AAI-3S +PREP +T-ASN +A-ASN +CONJ +V-2AAI-3S +N-NSF +P-2DP +ADV +V-PAI-3S +T-DSM +N-DSM +V-PAM-2S +T-ASM +N-ASM +P-2GS +ADV +CONJ +V-2AAM-2S +T-APF +N-APF +P-1GS +CONJ +V-PAM-2S +T-ASF +N-ASF +P-2GS +CONJ +V-2AAM-2S +PREP +T-ASF +N-ASF +P-1GS +CONJ +PRT-N +V-PNM-2S +A-NSM +CONJ +A-NSM +V-ADI-3S +N-NSM +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +P-1GS +CONJ +T-NSM +N-NSM +P-1GS +V-PAI-3S +P-DSM +T-NSM +N-NSM +CONJ +V-RAI-2S-ATT +P-1AS +V-RAI-2S +A-NPM +T-NPM +PRT-N +V-2AAP-NPM +CONJ +V-AAP-NPM +CONJ +PRT +CONJ +A-APN +A-APN +N-APN +V-AAI-3S +T-NSM +N-NSM +PREP +T-GPM +N-GPM +R-NPN +PRT-N +V-PAI-3S +V-RPP-NPN +PREP +T-DSN +N-DSN +D-DSN +CONJ +D-NPN +V-RPI-3S +CONJ +V-PAS-2P +CONJ +N-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +CONJ +V-PAP-NPM +N-ASF +V-PAS-2P +PREP +T-DSN +N-DSN +P-GSM +PREP +D-APN +V-AAI-3S +F-3ASM +ADV +N-NSM +T-DPM +N-DPM +PREP +T-GSF +N-GSF +T-GSF +N-GSF +CONJ +V-AAI-3S +ADV +V-IAI-3P +ADV +N-NSM +N-NSM +CONJ +N-NSM +T-NSM +V-PPP-NSM +N-NSM +CONJ +N-PRI +T-NSM +PREP +N-PRI +T-GSF +N-GSF +CONJ +T-NPM +T-GSM +N-GSM +CONJ +A-NPM +PREP +T-GPM +N-GPM +P-GSM +A-NUI +V-PAI-3S +P-DPM +N-NSM +N-NSM +V-PAI-1S +V-PAN +V-PAI-3P +P-DSM +V-PNI-1P +CONJ +P-1NP +PREP +P-2DS +V-2AAI-3P +CONJ +V-2AAI-3P +PREP +T-ASN +N-ASN +CONJ +PREP +D-DSF +T-DSF +N-DSF +V-AAI-3P +A-ASN-N +CONJ +N-GSF +ADV +V-PNP-GSF +V-2AAI-3S +N-NSM +PREP +T-ASM +N-ASM +CONJ +PRT-N +V-2LAI-3P +T-NPM +N-NPM +CONJ +N-NSM +V-PAI-3S +CONJ +V-PAI-3S +P-DPM +N-NSM +N-VPN +PRT-N +X-ASN +N-ASN +V-PAI-2P +V-ADI-3P +P-DSM +PRT-N +CONJ +T-NSM +V-2AAI-3S +P-DPM +V-2AAM-2P +PREP +T-APN +A-APN +N-APN +T-GSN +N-GSN +T-ASN +N-ASN +CONJ +V-FAI-2P +CONJ +V-2AAI-3P +CONJ +ADV-N +P-ASN +V-AAN +V-IAI-3P +PREP +T-GSN +N-GSN +T-GPM +N-GPM +CONJ +V-PAI-3S +T-NSM +N-NSM +D-NSM +R-ASM +V-IAI-3S +T-NSM +N-NSM +T-DSM +N-DSM +T-NSM +N-NSM +V-PAI-3S +CONJ +N-NSM +N-NSM +V-AAP-NSM +CONJ +T-NSM +N-NSM +V-PAI-3S +T-ASM +N-ASM +V-AMI-3S +CONJ +V-IAI-3S +A-NSM +CONJ +V-2AAI-3S +F-3ASM +PREP +T-ASF +N-ASF +CONJ +T-NPM +A-NPM +N-NPM +T-DSN +N-DSN +V-2AAI-3P +CONJ +PRT-N +V-IAI-3P +ADV +PREP +T-GSF +N-GSF +CONJ +ADV +PREP +N-GPM +A-GPM +V-PAP-NPM +T-ASN +N-ASN +T-GPM +N-GPM +CONJ +ADV +V-2AAI-3P +PREP +T-ASF +N-ASF +V-PAI-3P +N-ASF +V-PNP-ASF +CONJ +N-ASN +V-PNP-ASN +CONJ +N-ASM +V-PAI-3S +P-DPM +T-NSM +N-NSM +V-AAM-2P +PREP +T-GPN +N-GPN +R-GPN +V-AAI-2P +ADV +V-2AAI-3S +N-NSM +N-NSM +CONJ +V-AAI-3S +T-ASN +N-ASN +PREP +T-ASF +N-ASF +A-ASN +N-GPM +A-GPM +A-NUI +A-NUI +A-GPM +CONJ +D-GPM +V-PAP-GPM +PRT-N +V-API-3S +T-NSN +N-NSN +V-PAI-3S +P-DPM +T-NSM +N-NSM +V-PAM-2P +V-AAM-2P +A-NSM-N +T-GPM +N-GPM +V-IAI-3S +V-AAN +P-ASM +P-2NS +I-NSM +V-PAI-2S +V-RAP-NPM +CONJ +T-NSM +N-NSM +V-PAI-3S +V-PNI-3S +N-NSM +CONJ +V-PAI-3S +T-ASM +N-ASM +CONJ +V-PAI-3S +P-DPM +CONJ +T-ASN +N-ASN +ADV +D-NSN +ADV +A-ASN +V-API-3S +N-NSM +T-DPM +N-DPM +V-APP-NSM +PREP +A-GPM +CONJ +ADV +V-AAI-3P +V-PAI-3S +T-DSM +N-DSM +N-DSM +T-NSM +N-NSM +N-VSM +N-GSM +V-PAI-2S +P-1AS +A-ASN-C +D-GPM +V-PAI-3S +P-DSM +PRT +N-VSM +P-2NS +V-RAI-2S +CONJ +V-PAI-1S +P-2AS +V-PAI-3S +P-DSM +V-PAM-2S +T-APN +N-APN +P-1GS +V-PAI-3S +P-DSM +ADV +ADV +N-VSM +N-GSM +V-PAI-2S +P-1AS +V-PAI-3S +P-DSM +PRT +N-VSM +P-2NS +V-RAI-2S +CONJ +V-PAI-1S +P-2AS +V-PAI-3S +P-DSM +V-PAM-2S +T-APN +N-APN +P-1GS +V-PAI-3S +P-DSM +T-ASN +A-ASN +N-VSM +N-GSM +V-PAI-2S +P-1AS +V-API-3S +T-NSM +N-NSM +CONJ +V-2AAI-3S +P-DSM +T-ASN +A-ASN +V-PAI-2S +P-1AS +CONJ +V-2AAI-3S +P-DSM +N-VSM +A-APN +P-2NS +V-RAI-2S +P-2NS +V-PAI-2S +CONJ +V-PAI-1S +P-2AS +V-PAI-3S +P-DSM +N-NSM +V-PAM-2S +T-APN +N-APN +P-1GS +HEB +HEB +V-PAI-1S +P-2DS +ADV +V-IAI-2S +A-NSM-C +V-IAI-2S +F-2ASM +CONJ +V-IAI-2S +ADV +V-IAI-2S +CONJ +CONJ +V-AAS-2S +V-FAI-2S +T-APF +N-APF +P-2GS +CONJ +A-NSM +V-FAI-3S +P-2AS +CONJ +V-FAI-3S +ADV +PRT-N +V-PAI-2S +CONJ +D-ASN +V-2AAI-3S +V-PAP-NSM +I-DSM +N-DSM +V-FAI-3S +T-ASM +N-ASM +CONJ +D-ASN +V-2AAP-NSM +V-PAI-3S +P-DSM +V-PAM-2S +P-1DS +V-2APP-NSM +T-NSM +N-NSM +V-PAI-3S +T-ASM +N-ASM +R-ASM +V-IAI-3S +T-NSM +N-NSM +V-PAP-ASM +R-NSM +CONJ +V-2AAI-3S +PREP +T-DSN +N-DSN +PREP +T-ASN +N-ASN +P-GSM +CONJ +V-2AAI-3S +N-VSM +I-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +P-2AS +CONJ +D-ASM +V-2AAP-NSM +T-NSM +N-NSM +V-PAI-3S +T-DSM +N-DSM +N-VSM +CONJ +D-NSM +I-NSN +V-PAI-3S +P-DSM +T-NSM +N-NSM +COND +P-ASM +V-PAN +V-PAS-1S +ADV +V-PNI-1S +I-NSN +PREP +P-2AS +P-2NS +P-1DS +V-PAM-2S +CONJ +V-2AAI-3S +D-NSM +T-NSM +N-NSM +PREP +T-APM +N-APM +CONJ +T-NSM +N-NSM +D-NSM +PRT-N +V-PAI-3S +CONJ +PRT-N +V-2AAI-3S +P-DSM +T-NSM +N-NSM +CONJ +PRT-N +V-PAI-3S +CONJ +COND +P-ASM +V-PAN +V-PAS-1S +ADV +V-PNI-1S +I-NSN +PREP +P-2AS +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +V-PAP-NSM +PREP +D-GPN +CONJ +T-NSM +V-AAP-NSM +D-APN +CONJ +V-RAI-1P +CONJ +A-NSF +P-GSM +T-NSF +N-NSF +V-PAI-3S +CONJ +V-PAI-3S +CONJ +A-NPN +A-NPN +R-APN +V-AAI-3S +T-NSM +N-NSM +COND +R-NPN +V-PPS-3S +PREP +A-ASN +V-PNI-1S +CONJ-N +P-ASM +T-ASM +N-ASM +V-FAN +T-APN +V-PPP-APN +N-APN +INJ +N-VSM +PRT +T-ASM +A-ASM-S +N-ASM +V-AMI-1S +PREP +A-GPN +R-GPN +PRT +V-PAN +CONJ +V-PAN +V-ADI-3S +T-NSM +N-NSM +ADV +R-GSF +N-GSF +V-ANP-NSM +T-DPM +N-DPM +R-APM +V-AMI-3S +PREP +N-GSN +A-GSN +V-API-3S +R-DPM +CONJ +V-AAI-3S +F-3ASM +V-PAP-ASM +PREP +T-ASN +V-2AAN +P-ASM +PREP +A-DPN +N-DPN +PREP +N-GPF +A-NUI +V-PNP-NSM +P-DPM +CONJ +V-PAP-NSM +T-APN +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-PNP-NSM +V-AAI-3S +P-DPM +PREP +N-GPN +PRT-N +V-PPN +CONJ +V-PAN +T-ASF +N-ASF +T-GSM +N-GSM +R-ASF +V-AAI-2P +P-1GS +CONJ +PRT +N-NSM +V-AAI-3S +N-DSN +CONJ +P-2NP +PREP +N-DSN +A-DSN +V-FPI-2P +PRT-N +PREP +A-APF +D-APF +N-APF +PRT +CONJ +T-NPM +V-2AAP-NPM +V-IAI-3P +P-ASM +V-PAP-NPM +N-VSM +COND +PREP +T-DSM +N-DSM +D-DSM +V-PAI-2S +T-ASF +N-ASF +T-DSM +N-PRI +V-2AAI-3S +PREP +P-APM +PRT-N +P-2GP +V-PAI-3S +V-2AAN +N-APM +PRT +N-APM +R-APM +T-NSM +N-NSM +V-2AMI-3S +PREP +T-DSF +A-DSF +N-DSF +CONJ +V-FDI-2P +N-ASF +V-2AAP-GSN +T-GSN +A-GSN +N-GSN +PREP +P-2AP +CONJ +V-FDI-2P +P-1GS +N-NPM +PRT +PREP +N-PRI +CONJ +PREP +A-DSF +T-DSF +N-DSF +CONJ +N-DSF +CONJ +ADV +A-GSM-S +T-GSF +N-GSF +CONJ +D-APN +V-2AAP-NSM +V-PAP-GPM +P-GPM +V-API-3S +CONJ +N-NSF +V-2AAI-3S +P-ASM +PREP +T-GPM +N-GPM +P-GPM +CONJ +ADV +V-PAP-NPM +V-IAI-3P +PREP +T-ASM +N-ASM +V-PNP-GSM +P-GSM +CONJ +V-2AMM-2S +N-NPM +A-NUI +V-LAI-3P +P-DPM +PREP +N-DPF +A-DPF +R-NPM +CONJ +V-2AAI-3P +N-VPM +N-VPM +I-ASN +V-RAI-2P +V-PAP-NPM +PREP +T-ASM +N-ASM +D-NSM +T-NSM +N-NSM +T-NSM +V-APP-NSM +PREP +P-2GP +PREP +T-ASM +N-ASM +ADV +V-FDI-3S +R-ASM +N-ASM +V-ADI-2P +P-ASM +V-PNP-ASM +PREP +T-ASM +N-ASM +ADV +V-AAI-3P +PREP +N-PRI +PREP +N-GSN +T-GSN +V-PPP-GSN +N-GSM +R-NSN +V-PAI-3S +ADV +N-PRI +N-GSN +N-ASF +V-PAP-ASN +CONJ +ADV +V-2AAI-3P +PREP +T-ASN +N-ASN +V-2AAI-3P +ADV +V-IAI-3P +V-PAP-NPM +PRT +T-NSM +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSM +N-NSM +CONJ +N-NSM +N-NSM +CONJ +N-NSM +N-NSM +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +CONJ +N-NSM +N-GSM +D-NPM +A-NPM +V-IAI-3P +V-PAP-NPM +ADV +T-DSF +N-DSF +PREP +N-DPF +CONJ +N-PRI +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +PREP +T-DPM +N-DPM +P-GSM +CONJ +PREP +T-DPF +N-DPF +D-DPF +V-2AAP-NSM +PREP +A-DSN +T-GPM +N-GPM +N-NSM +V-2AAI-3S +PRT +V-IAI-3S +N-NSM +N-GPN +PREP +T-ASN +P-ASN +ADV +A-NUI +A-NUI +N-VPM +N-VPM +V-IAI-3S +V-APN +T-ASF +N-ASF +R-ASF +V-2AAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +PREP +N-GSN +N-PRI +PREP +N-GSM +T-GSM +V-2ADP-GSM +N-GSM +T-DPM +V-2AAP-DPM +N-ASM +CONJ +V-RPP-NSM +V-IAI-3S +PREP +P-1DP +CONJ +V-2AAI-3S +T-ASM +N-ASM +T-GSF +N-GSF +D-GSF +PRT +CONJ +D-NSM +V-ADI-3S +N-ASN +PREP +N-GSM +T-GSF +N-GSF +CONJ +A-NSM +V-2ADP-NSM +V-AAI-3S +A-NSM +CONJ +V-API-3S +A-NPN +T-NPN +N-NPN +P-GSM +CONJ +A-NSN +V-2ADI-3S +A-DPM +T-DPM +V-PAP-DPM +N-PRI +CONJ +V-APN +T-ASN +N-ASN +D-ASN +T-DSF +A-DSF +N-DSF +P-GPM +N-PRI +D-NSN +V-PAI-3S +N-ASN +N-GSN +CONJ +V-RPI-3S +PREP +N-DSF +N-GPM +V-AOM-3S +T-NSF +N-NSF +P-GSM +A-NSF +CONJ +PRT-N +V-PAM-3S +T-NSM +V-PAP-NSM +PREP +P-DSF +CONJ +T-ASF +N-ASF +P-GSM +V-2AAM-3S +A-NSM +CONJ +V-PAI-3S +T-GPM +N-GPM +V-2AAP-GPM +P-1DP +PREP +A-DSM +N-DSM +R-DSM +V-2AAI-3S +CONJ +V-2AAI-3S +PREP +P-1AP +T-NSM +N-NSM +N-NSM +V-AMP-NSM +PREP +T-GSN +N-GSN +N-GSM +ADV +T-GSF +N-GSF +R-GSF +V-API-3S +PREP +P-1GP +N-ASM +T-GSF +N-GSF +P-GSM +PREP +P-1DP +V-2ADN +A-ASM +D-GPM +CONJ +V-AAI-3P +A-NUI +N-PRI +T-ASM +V-PPP-ASM +N-ASM +R-NSM +V-API-3S +N-NSM +CONJ +N-ASM +CONJ +V-ADP-NPM +V-2AAI-3P +N-VSM +N-VSM +A-GPM +P-2NS +V-AAM-2S +R-ASM +V-AMI-2S +PREP +D-GPM +T-GPM +A-NUI +A-ASM +V-2AAN +T-ASM +N-ASM +T-GSF +N-GSF +D-GSF +CONJ +N-GSF +PREP +R-GSF +V-2AAI-3S +N-NSM +V-AON +PREP +T-ASM +N-ASM +T-ASM +A-ASM +CONJ +V-AAI-3P +N-APM +P-DPM +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +N-ASM +CONJ +V-API-3S +PREP +T-GPM +A-NUI +N-GPM +CONJ +PREP +T-DSN +V-PPN +T-ASF +N-ASF +T-GSF +N-GSF +V-IAI-3P +A-NPM +ADV +PREP +T-ASN +P-ASN +CONJ +V-2ADI-3S +ADV +PREP +T-GSM +N-GSM +N-NSM +ADV +V-PPP-GSF +N-GSF +A-GSF +CONJ +V-AAI-3S +A-ASM +T-ASM +N-ASM +ADV +V-IAI-3P +V-PNP-NPM +CONJ +V-API-3P +P-DPM +V-PEP-NPF +N-NPF +ADV +N-GSN +CONJ +V-AAI-3S +PREP +A-ASM +A-ASM +P-GPM +CONJ +V-API-3P +A-NPM +N-GSN +A-GSN +CONJ +V-ADI-3P +V-PAN +A-DPF +N-DPF +ADV +T-NSN +N-NSN +V-IAI-3S +V-PNN +P-DPM +CONJ +V-IAI-3P +V-PAP-NPM +PREP +N-PRI +A-NPM +N-NPM +A-NPM +PREP +A-GSN +N-GSN +T-GPN +PREP +T-ASM +N-ASM +CONJ +V-2ADP-GSF +T-GSF +N-GSF +D-GSF +V-2AAI-3S +T-NSN +N-NSN +CONJ +V-API-3S +CONJ +V-IAI-3P +A-NSM +A-NSM +T-DSF +A-DSF +N-DSF +V-PAP-GPM +P-GPM +CONJ +V-IMI-3P +CONJ +V-IAI-3P +V-PAP-NPM +V-2AMM-2S +PRT-I +A-NPM +D-NPM +T-NPM +V-PAP-NPM +V-PAI-3P +N-NPM +CONJ +ADV-I +P-1NP +V-PAI-1P +A-NSM +T-DSF +A-DSF +N-DSF +P-1GP +PREP +R-DSF +V-API-1P +N-NPM +CONJ +N-NPM +CONJ +N-NPM +CONJ +T-NPM +V-PAP-NPM +T-ASF +N-ASF +PRT +N-ASF +CONJ +N-ASF +N-ASM +CONJ +T-ASF +N-ASF +PRT +N-ASF +CONJ +N-ASF +N-ASF +CONJ +T-APN +N-APN +T-GSF +N-GSF +T-GSF +PREP +N-ASF +CONJ +T-NPM +V-PAP-NPM +A-NPM +PRT +A-NPM +CONJ +N-NPM +N-NPM +CONJ +N-NPM +V-PAI-1P +V-PAP-GPM +P-GPM +T-DPF +S-1PDPF +N-DPF +T-APN +A-APN +T-GSM +N-GSM +CONJ +V-IMI-3P +A-NPM +CONJ +V-IMI-3P +A-NSM +PREP +A-ASM +V-PAP-NPM +V-PAI-3S +D-NSN +I-NSN +V-PAN +CONJ +A-NPM +V-PAP-NPM +V-IAI-3P +CONJ +N-GSN +V-RPP-NPM +V-PAI-3P +CONJ +V-APP-NSM +PREP +T-DPM +A-NUI +T-NSM +N-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +CONJ +V-ADI-3S +P-DPM +N-VPM +A-VPM +CONJ +T-NPM +V-PAP-NPM +N-PRI +A-NPM +D-NSN +P-2DP +A-NSN +V-PAM-3S +CONJ +V-ADM-2P +T-APN +N-APN +P-1GS +CONJ +PRT-N +ADV +P-2NP +V-PAI-2P +D-NPM +V-PAI-3P +CONJ +V-PAI-3S +N-NSF +A-NSF +T-GSF +N-GSF +CONJ +D-NSN +V-PAI-3S +T-NSN +V-RPP-NSN-ATT +PREP +T-GSM +N-GSM +N-PRI +CONJ +V-FDI-3S +PREP +T-DPF +A-DPF-S +N-DPF +V-PAI-3S +T-NSM +N-NSM +V-FAI-1S +PREP +T-GSN +N-GSN +P-1GS +PREP +A-ASF +N-ASF +CONJ +V-FAI-3P +T-NPM +N-NPM +P-2GP +CONJ +T-NPF +N-NPF +P-2GP +CONJ +T-NPM +N-NPM +P-2GP +N-APF +V-FDI-3P +CONJ +T-NPM +A-NPM-C +P-2GP +N-DPN +V-FPI-3P +CONJ-P +PREP +T-APM +N-APM +P-1GS +CONJ +PREP +T-APF +N-APF +P-1GS +PREP +T-DPF +N-DPF +D-DPF +V-FAI-1S +PREP +T-GSN +N-GSN +P-1GS +CONJ +V-FAI-3P +CONJ +V-FAI-1S +N-APN +PREP +T-DSM +N-DSM +ADV +CONJ +N-APN +PREP +T-GSF +N-GSF +ADV +N-ASN +CONJ +N-ASN +CONJ +N-ASF +N-GSM +T-NSM +N-NSM +V-2FPI-3S +PREP +N-ASN +CONJ +T-NSF +N-NSF +PREP +N-ASN +ADV +V-2AAN +N-ASF +N-GSM +T-ASF +A-ASF +CONJ +A-ASF +CONJ +V-FDI-3S +A-NSM +COND +R-NSM +V-AMS-3S +T-ASN +N-ASN +N-GSM +V-FPI-3S +N-VPM +N-VPM +V-AAM-2P +T-APM +N-APM +D-APM +N-ASM +T-ASM +N-ASM +N-ASM +V-RPP-ASM +PREP +T-GSM +N-GSM +PREP +P-2AP +N-DPF +CONJ +N-DPN +CONJ +N-DPN +R-DPN +V-AAI-3S +PREP +P-GSM +T-NSM +N-NSM +PREP +A-DSN +P-2GP +ADV +P-NPM +V-RAI-2P +D-ASM +T-DSF +V-RPP-DSF +N-DSF +CONJ +N-DSF +T-GSM +N-GSM +A-ASM +PREP +N-GSF +A-GPM +V-AAP-NPM +V-AAI-2P +R-ASM +T-NSM +N-NSM +V-AAI-3S +V-AAP-NSM +T-APF +N-APF +T-GSM +N-GSM +CONJ +PRT-N +V-IAI-3S +A-NSN +V-PPN +P-ASM +PREP +P-GSM +CONJ +N-PRI +V-PAI-3S +PREP +P-ASM +V-IMI-1S +T-ASM +N-ASM +PREP +P-1GS +PREP +A-GSN +CONJ +PREP +A-GPN +P-1GS +V-PAI-3S +CONJ +PRT-N +V-APS-1S +PREP +D-ASN +V-API-3S +P-1GS +T-NSF +N-NSF +CONJ +V-ADI-3S +T-NSF +N-NSF +P-1GS +CONJ +ADV +CONJ +T-NSF +N-NSF +P-1GS +V-FAI-3S +PREP +N-DSF +CONJ +PRT-N +V-FAI-2S +T-ASF +N-ASF +P-1GS +PREP +N-ASM +CONJ-N +V-FAI-2S +T-ASM +A-ASM +P-2GS +V-2AAN +N-ASF +V-AAI-2S +P-1DS +N-APF +N-GSF +V-FAI-2S +P-1AS +N-GSF +PREP +T-GSN +N-GSN +P-2GS +N-VPM +N-VPM +V-PAP-NSN +V-2AAN +PREP +N-GSF +PREP +P-2AP +PREP +T-GSM +N-GSM +N-PRI +CONJ +CONJ +V-AAI-3S +CONJ +V-2API-3S +CONJ +T-NSN +N-NSN +P-GSM +V-PAI-3S +PREP +P-1DP +ADV +T-GSF +N-GSF +D-GSF +CONJ +N-NSM +V-PAP-NSM +CONJ +V-RAP-NSM +CONJ +N-DSM +V-AAI-3S +P-DSM +T-NSM +N-NSM +PREP +N-GSM +T-GSF +N-GSF +P-GSM +V-AAN +PREP +T-ASM +N-ASM +P-GSM +V-2AAP-NSM +V-AAI-3S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +CONJ-N +V-API-3S +PREP +N-ASM +CONJ-N +T-NSF +N-NSF +P-GSM +V-2AAI-3S +N-ASF +D-ASM +T-ASM +N-ASM +V-AAI-3S +T-NSM +N-NSM +R-GSM +A-NPM +P-1NP +V-PAI-1P +N-NPM +CONJ +T-DSF +A-DSF +T-GSM +N-GSM +V-APP-NSM +PRT +T-ASF +N-ASF +T-GSN +N-GSN +T-GSM +A-GSN +V-2AAP-NSM +PREP +T-GSM +N-GSM +V-AAI-3S +D-ASN +R-ASN +P-2NP +CONJ +V-PAI-2P +CONJ +V-PAI-2P +CONJ +PRT-N +N-PRI +V-2AAI-3S +PREP +T-APM +N-APM +CONJ +V-PAI-3S +P-NSM +V-2AAI-3S +N-NSM +T-DSM +N-DSM +P-1GS +V-PNM-2S +PREP +A-GPN +P-1GS +ADV +PRT +V-2AAS-1S +T-APM +A-APM +P-2GS +N-ASN +T-GPM +N-GPM +P-2GS +CONJ +ADV +V-PAM-3S +A-NSM +N-NSM +N-PRI +CONJ +CONJ +N-ASM +CONJ +N-ASM +V-AAI-3S +T-NSM +N-NSM +P-ASM +D-ASM +T-ASM +N-ASM +R-ASM +P-2NP +V-AAI-2P +CONJ +V-AAP-NPM +V-2API-3P +T-ASF +N-ASF +PRT +V-2AAI-3P +PREP +T-ASM +N-ASM +CONJ +T-APM +A-APM +N-APM +I-ASN +V-AAS-1P +N-VPM +N-VPM +CONJ +N-NSM +PREP +P-APM +V-AAM-2P +CONJ +V-APM-3S +A-NSM +P-2GP +PREP +T-DSN +N-DSN +N-GSM +N-GSM +PREP +N-ASF +T-GPF +N-GPF +P-2GP +CONJ +V-FDI-2P +T-ASF +N-ASF +T-GSN +A-GSN +N-GSN +CONJ +P-2DP +V-PAI-3S +T-NSF +N-NSF +CONJ +T-DPN +N-DPN +P-2GP +CONJ +A-DPM +T-DPM +PREP +A-ASF +PRT +K-APM +V-ADS-3S +N-NSM +T-NSM +N-NSM +P-1GP +PRT +A-DPM +N-DPM +A-DPM-C +V-ADI-3S +CONJ +V-IAI-3S +P-APM +V-PAP-NSM +V-APM-2P +PREP +T-GSF +N-GSF +T-GSF +A-GSF +D-GSF +PRT +CONJ +T-NPM +V-ADP-NPM +T-ASM +N-ASM +P-GSM +V-API-3P +CONJ +V-API-3P +PREP +T-DSF +N-DSF +D-DSF +N-NPF +ADV +A-NPF +CONJ +V-IAI-3P +V-PAP-NPM +T-DSF +N-DSF +T-GPM +N-GPM +CONJ +T-DSF +N-DSF +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +T-DPF +N-DPF +CONJ +V-INI-3S +A-DSF +N-DSF +N-NSM +CONJ +A-NPN +N-NPN +CONJ +N-NPN +PREP +T-GPM +N-GPM +V-INI-3S +CONJ +A-NPM +T-NPM +V-AAP-NPM +PREP +T-ASN +P-ASN +V-IAI-3P +A-APN +A-APN +CONJ +T-APN +N-APN +CONJ +T-APF +N-APF +V-IAI-3P +CONJ +V-IAI-3P +P-APN +A-DPM +CONJ +PRT +X-NSM +N-ASF +V-IAI-3S +PRT +PREP +N-ASF +V-PAP-NPM +ADV +PREP +T-DSN +N-DSN +PRT +V-PAP-NPM +PREP +N-ASM +N-ASM +V-IAI-3P +N-GSF +PREP +N-DSF +CONJ +N-DSF +N-GSF +V-PAP-NPM +T-ASM +N-ASM +CONJ +V-PAP-NPM +N-ASF +PREP +A-ASM +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +V-IAI-3S +T-APM +V-PPP-APM +PREP +N-ASF +PREP +T-ASN +P-ASN +CONJ +N-NSM +CONJ +N-NSM +V-IAI-3P +PREP +T-ASN +N-ASN +PREP +T-ASF +N-ASF +T-GSF +N-GSF +T-ASF +A-ASF +CONJ +X-NSM +N-NSM +A-NSM +PREP +N-GSF +N-GSF +P-GSM +V-PAP-NSM +V-IPI-3S +R-ASM +V-IAI-3P +PREP +N-ASF +PREP +T-ASF +N-ASF +T-GSN +N-GSN +T-ASF +V-PPP-ASF +A-ASF +T-GSN +V-PAN +N-ASF +PREP +T-GPM +V-PNP-GPM +PREP +T-ASN +N-ASN +R-NSM +V-2AAP-NSM +N-ASM +CONJ +N-ASM +V-PAP-APM +V-PAN +PREP +T-ASN +N-ASN +V-IAI-3S +N-ASF +V-2AAN +CONJ +N-NSM +V-AAP-NSM +PREP +P-ASM +PREP +T-DSM +N-DSM +V-2AAI-3S +V-AAM-2S +PREP +P-1AP +CONJ +T-NSM +V-IAI-3S +P-DPM +V-PAP-NSM +X-ASN +PREP +P-GPM +V-2AAN +CONJ +V-2AAI-3S +N-NSM +N-ASN +CONJ +N-ASN +PRT-N +V-PAI-3S +P-1DS +CONJ +R-ASN +V-PAI-1S +D-ASN +P-2DS +V-PAI-1S +PREP +T-DSN +N-DSN +N-GSM +N-GSM +T-GSM +N-GSM +V-PAM-2S +CONJ +V-AAP-NSM +P-ASM +T-GSF +A-GSF +N-GSF +V-AAI-3S +P-ASM +CONJ +ADV +V-API-3P +T-NPF +N-NPF +P-GSM +CONJ +T-NPN +N-NPN +CONJ +V-PNP-NSM +V-2AAI-3S +CONJ +V-IAI-3S +CONJ +V-2AAI-3S +PREP +P-DPM +PREP +T-ASN +N-ASN +V-PAP-NSM +CONJ +V-PNP-NSM +CONJ +V-PAP-NSM +T-ASM +N-ASM +CONJ +V-2AAI-3S +A-NSM +T-NSM +N-NSM +P-ASM +V-PAP-ASM +CONJ +V-PAP-ASM +T-ASM +N-ASM +CONJ +V-IAI-3P +P-ASM +CONJ +D-NSM +V-IAI-3S +T-NSM +PREP +T-ASF +N-ASF +V-PNP-NSM +PREP +T-DSF +A-DSF +N-DSF +T-GSN +N-GSN +CONJ +V-API-3P +N-GSN +CONJ +N-GSF +PREP +T-DSN +V-RAP-DSN +P-DSM +CONJ +V-PAP-GSM +P-GSM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +V-2AAI-3S +A-NSM +T-NSM +N-NSM +PREP +P-APM +PREP +T-DSF +N-DSF +T-DSF +V-PPP-DSF +N-GSM +A-NPM +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-ADI-3S +PREP +T-ASM +N-ASM +N-VPM +N-VPM +I-ASN +V-PAI-2P +PREP +D-DSN +PRT +P-1DP +I-ASN +V-PAI-2P +ADV +A-DSF +N-DSF +PRT +N-DSF +V-RAP-DPM +T-GSN +V-PAN +P-ASM +T-NSM +N-NSM +N-PRI +CONJ +N-PRI +CONJ +N-PRI +T-NSM +N-NSM +T-GPM +N-GPM +P-1GP +V-AAI-3S +T-ASM +N-ASM +P-GSM +N-ASM +PRT +R-ASM +P-2NP +V-AAI-2P +CONJ +V-ADI-2P +PREP +N-ASN +N-GSM +V-AAP-GSM +D-GSM +V-PAN +CONJ +P-2NP +T-ASM +A-ASM +CONJ +A-ASM +V-ADI-2P +CONJ +V-AMI-2P +N-ASM +N-ASM +V-APN +P-2DP +CONJ +T-ASM +N-ASM +T-GSF +N-GSF +V-AAI-2P +R-ASM +T-NSM +N-NSM +V-AAI-3S +PREP +A-GPM +R-GSM +P-1NP +N-NPM +V-PAI-1P +CONJ +PREP +T-DSF +N-DSF +T-GSN +N-GSN +P-GSM +D-ASM +R-ASM +V-PAI-2P +CONJ +V-RAI-2P +V-AAI-3S +T-NSN +N-NSN +P-GSM +CONJ +T-NSF +N-NSF +T-NSF +PREP +P-GSM +V-AAI-3S +P-DSM +T-ASF +N-ASF +D-ASF +PREP +A-GPM +P-2GP +CONJ +N-VPM +ADV +V-RAI-1S +CONJ +PREP +N-ASF +V-AAI-2P +ADV +CONJ +T-NPM +N-NPM +P-2GP +CONJ +T-NSM +N-NSM +R-APN +V-AAI-3S +PREP +N-GSN +A-GPM +T-GPM +N-GPM +V-2AAN +T-ASM +N-ASM +P-GSM +V-AAI-3S +ADV +CONJ +V-AAM-2P +CONJ +V-AAM-2P +PREP +T-ASN +V-APN +P-2GP +T-APF +N-APF +ADV +PRT +V-2AAS-3P +N-NPM +N-GSF +PREP +N-GSN +T-GSM +N-GSM +CONJ +V-AAS-3S +T-ASM +V-RPP-ASM +P-2DP +N-ASM +N-ASM +V-PAI-3S +PRT +R-ASM +N-ASM +V-ADN +ADV +N-GPM +N-GSF +A-GPN +R-GPN +V-AAI-3S +T-NSM +N-NSM +PREP +N-GSN +T-GPM +A-GPM +PREP +N-GSM +P-GSM +N-GPM +PRT +N-NSM +V-2AAI-3S +CONJ +N-ASM +P-2DP +V-FAI-3S +N-NSM +T-NSM +N-NSM +PREP +T-GPM +N-GPM +P-2GP +ADV +P-1AS +P-GSM +V-FDI-2P +PREP +A-APN +PRT +K-APN +V-AAS-3S +PREP +P-2AP +CONJ +V-FDI-3S +A-NSF +N-NSF +COND +R-NSF +PRT-N +V-AAS-3S +T-GSM +N-GSM +D-GSM +V-FPI-3S +PREP +T-GSM +N-GSM +CONJ +CONJ +A-NPM +T-NPM +N-NPM +PREP +N-PRI +CONJ +T-GPM +ADV +K-NPM +V-AAI-3P +CONJ +V-AAI-3P +T-APF +N-APF +D-APF +P-2NP +V-PAI-2P +T-NPM +N-NPM +T-GPM +N-GPM +CONJ +T-GSF +N-GSF +R-GSF +T-NSM +N-NSM +V-2AMI-3S +PREP +T-APM +N-APM +P-2GP +V-PAP-NSM +PREP +N-PRI +CONJ +PREP +T-DSN +N-DSN +P-2GS +V-FPI-3P +A-NPF +T-NPF +N-NPF +T-GSF +N-GSF +P-2DP +ADV-S +T-NSM +N-NSM +V-AAP-NSM +T-ASM +N-ASM +P-GSM +V-AAI-3S +P-ASM +V-PAP-ASM +P-2AP +PREP +T-DSN +V-PAN +A-ASM +PREP +T-GPF +N-GPF +P-2GP +CONJ +V-PAP-GPM +P-GPM +PREP +T-ASM +N-ASM +V-2AAI-3P +P-DPM +T-NPM +N-NPM +CONJ +T-NSM +N-NSM +T-GSN +N-GSN +CONJ +T-NPM +N-NPM +V-PNP-NPM +PREP +T-ASN +V-PAN +P-APM +T-ASM +N-ASM +CONJ +V-PAN +PREP +T-DSM +N-DSM +T-ASF +N-ASF +T-ASF +PREP +A-GPM +CONJ +V-2AAI-3P +P-DPM +T-APF +N-APF +CONJ +V-2AMI-3P +PREP +N-ASF +PREP +T-ASF +ADV +CONJ +V-IAI-3S +N-NSF +ADV +CONJ +A-NPM +T-GPM +V-AAP-GPM +T-ASM +N-ASM +V-AAI-3P +CONJ +V-AOI-3S +N-NSM +T-GPM +N-GPM +ADV +N-NPF +A-NUI +CONJ +V-2ADI-3S +PREP +T-ASF +ADV +V-APN +P-GPM +T-APM +N-APM +CONJ +T-APM +A-APM-C +CONJ +T-APM +N-APM +PREP +N-PRI +CONJ +N-NSM +T-NSM +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +K-NPM +V-IAI-3P +PREP +N-GSN +A-GSN +CONJ +V-AAP-NPM +P-APM +PREP +T-DSN +A-DSN +V-INI-3P +PREP +I-DSF +N-DSF +PRT +PREP +I-DSN +N-DSN +V-AAI-2P +D-ASN +P-2NP +ADV +N-NSM +V-APP-NSM +N-GSN +A-GSN +V-2AAI-3S +PREP +P-APM +N-VPM +T-GSM +N-GSM +CONJ +A-VPM-C +COND +P-1NP +ADV +V-PPI-1P +PREP +N-DSF +N-GSM +A-GSM +PREP +I-DSM +D-NSM +V-RPI-3S +A-NSN +V-PAM-3S +A-DPM +P-2DP +CONJ +A-DSM +T-DSM +N-DSM +N-PRI +CONJ +PREP +T-DSN +N-DSN +N-GSM +N-GSM +T-GSM +N-GSM +R-ASM +P-2NP +V-AAI-2P +R-ASM +T-NSM +N-NSM +V-AAI-3S +PREP +A-GPM +PREP +D-DSN +D-NSM +V-RAI-3S +PREP +P-2GP +A-NSM +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +V-APP-NSM +PREP +P-2GP +T-GPM +N-GPM +T-NSM +V-2ADP-NSM +PREP +N-ASF +N-GSF +CONJ +PRT-N +V-PAI-3S +PREP +A-DSM +A-DSM-N +T-NSF +N-NSF +CONJ +CONJ-N +V-PAI-3S +PREP +T-ASM +N-ASM +N-NSN +A-NSN +T-NSN +V-RPP-NSN +PREP +N-DPM +PREP +R-DSN +V-PAI-3S +V-APN +P-1AP +CONJ +V-PAP-NPM +T-ASF +T-GSM +N-GSM +CONJ +N-GSM +N-ASF +CONJ +V-2AMP-NPM +CONJ +N-NPM +A-NPM +V-PAI-3P +CONJ +N-NPM +V-IAI-3P +PRT +V-IAI-3P +P-APM +CONJ +PREP +T-DSM +N-DSM +V-IAI-3P +PRT +V-PAP-NPM +T-ASM +N-ASM +T-ASM +V-RPP-ASM +PREP +P-DPM +V-RAP-ASM +A-ASN-N +V-2AAN +V-IAI-3P +CONJ +V-AAP-NPM +P-APM +ADV +T-GSN +N-GSN +V-2AAN +V-IAI-3P +PREP +C-APM +V-PAP-NPM +I-ASN +V-AAS-1P +T-DPM +N-DPM +D-DPM +CONJ +PRT +CONJ +A-NSN +N-NSN +V-2RAI-3S +PREP +P-GPM +A-DPM +T-DPM +V-PAP-DPM +N-PRI +A-NSN +CONJ +PRT-N +V-PNI-1P +V-PNN +CONJ +CONJ +PRT-N +PREP +A-ASN-C +V-APS-3S +PREP +T-ASM +N-ASM +V-AMS-1P +P-DPM +ADV-N +V-PAN +PREP +T-DSN +N-DSN +D-DSN +A-DSM-N +N-GPM +CONJ +V-AAP-NPM +P-APM +V-AAI-3P +ADV +PRT-N +V-PNN +CONJ-N +V-PAN +PREP +T-DSN +N-DSN +T-GSM +N-GSM +CONJ +T-NSM +N-NSM +CONJ +N-NSM +V-AOP-NPM +V-2AAI-3P +PREP +P-APM +COND +A-NSN +V-PAI-3S +PREP +T-GSM +N-GSM +P-2GP +V-PAN +ADV +PRT +T-GSM +N-GSM +V-AAM-2P +CONJ +PRT-N +V-PNI-1P +P-1NP +R-APN +V-2AAI-1P +CONJ +V-AAI-1P +PRT-N +V-PAN +CONJ +T-NPM +V-AMP-NPM +V-AAI-3P +P-APM +A-ASN-N +V-PAP-NPM +T-ASN +ADV-I +V-AMS-3P +P-APM +PREP +T-ASM +N-ASM +CONJ +A-NPM +V-IAI-3P +T-ASM +N-ASM +PREP +T-DSN +V-2RAP-DSN +CONJ +N-GPN +A-GPN-C +A-NUI +V-IAI-3S +T-NSM +N-NSM +PREP +R-ASM +V-2LAI-3S +T-NSN +N-NSN +D-NSN +T-GSF +N-GSF +CONJ +V-APP-NPM +V-2AAI-3P +PREP +T-APM +A-APM +CONJ +V-AAI-3P +K-APN +PREP +P-APM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +V-2AAI-3P +CONJ +T-NPM +V-AAP-NPM +ADV +V-AAI-3P +N-ASF +PREP +T-ASM +N-ASM +CONJ +V-2AAI-3P +N-VSM +P-2NS +T-NSM +V-AAP-NSM +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +A-APN +T-APN +PREP +P-DPN +T-NSM +T-GSM +N-GSM +P-1GP +PREP +N-GSN +A-GSN +N-GSN +N-PRI +N-GSM +P-2GS +V-2AAP-NSM +CONJ +I-NSN +V-AAI-3P +N-NPN +CONJ +N-NPM +V-AAI-3P +A-APN +V-AAI-3P +T-NPM +N-NPM +T-GSF +N-GSF +CONJ +T-NPM +N-NPM +V-API-3P +PREP +T-ASN +P-ASN +PREP +T-GSM +N-GSM +CONJ +PREP +T-GSM +N-GSM +P-GSM +CONJ +V-API-3P +PREP +N-GSF +PREP +T-DSF +N-DSF +D-DSF +PREP +T-ASM +A-ASM +N-ASM +P-2GS +N-ASM +R-ASM +V-AAI-2S +PRT +N-NSM +CONJ +N-NSM +N-NSM +PREP +N-DPN +CONJ +N-DPM +N-PRI +V-AAN +K-APN +V-2ADN +T-NSF +N-NSF +P-2GS +CONJ +T-NSF +N-NSF +V-AAI-3S +CONJ +N-VSM +T-APN +ADV +V-2AAM-2S +PREP +T-APF +N-APF +P-GPM +CONJ +V-2AAM-2S +T-DPM +N-DPM +P-2GS +PREP +N-GSF +A-GSF +V-PAN +T-ASM +N-ASM +P-2GS +PREP +T-DSN +T-ASF +N-ASF +V-PAN +P-2AS +PREP +N-ASF +CONJ +N-APN +CONJ +N-APN +V-PNN +PREP +T-GSN +N-GSN +T-GSM +A-GSM +N-GSM +P-2GS +N-GSM +CONJ +V-AOP-GPM +P-GPM +V-API-3S +T-NSM +N-NSM +PREP +R-DSM +V-IAI-3P +V-RPP-NPM +CONJ +V-API-3P +A-NPM +T-GSM +A-GSN +N-GSN +CONJ +V-IAI-3P +T-ASM +N-ASM +T-GSM +N-GSM +PREP +N-GSF +CONJ +T-GSN +N-GSN +T-GPM +V-AAP-GPM +N-NSF +CONJ +N-NSF +V-IAI-3S +A-NSF +CONJ +CONJ-N +A-NSM +X-ASN +T-GPN +V-PAP-GPN +P-DSM +A-ASM +V-PAN +V-IAI-3S +CONJ +V-IAI-3S +P-DPM +A-NPN +A-NPN +CONJ +N-DSF +A-DSF +V-IAI-3P +T-ASN +N-ASN +T-GSM +N-GSM +N-GSM +T-GSF +N-GSF +T-NPM +N-NPM +PRT +N-NSF +A-NSF +V-IAI-3S +PREP +A-APM +P-APM +CONJ +CONJ-N +A-NSM +X-NSM +V-IAI-3S +PREP +P-DPM +CONJ +K-NPM +N-NPM +N-GPN +PRT +N-GPF +V-IAI-3P +V-PAP-NPM +V-IAI-3P +T-APF +N-APF +T-GPN +V-PPP-GPN +CONJ +V-IAI-3P +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-IPI-3S +A-DSM +CONJ +PRT +X-NSM +N-ASF +V-IAI-3S +CONJ +N-PRI +T-NSM +V-APP-NSM +N-NSM +PREP +T-GPM +N-GPM +R-NSN +V-PAI-3S +V-PPP-NSN +N-NSM +N-GSF +N-NSM +N-NSM +T-DSN +N-DSN +V-PAP-GSM +P-DSM +N-GSM +V-AAP-NSM +V-AAI-3S +T-ASN +N-ASN +CONJ +V-AAI-3S +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +N-NSM +X-NSM +N-NSM +N-DSN +PREP +N-DSF +T-DSF +N-DSF +P-GSM +V-AAI-3S +N-ASN +CONJ +V-AMI-3S +PREP +T-GSF +N-GSF +V-RAP-GSF +CONJ +T-GSF +N-GSF +CONJ +V-AAP-NSM +N-ASN +X-ASN +PREP +T-APM +N-APM +T-GPM +N-GPM +V-AAI-3S +CONJ +V-2AAI-3S +T-NSM +N-NSM +N-VSM +PREP +I-ASN +V-AAI-3S +T-NSM +N-NSM +T-ASF +N-ASF +P-2GS +V-ADN +P-2AS +T-ASN +N-ASN +T-ASN +A-ASN +CONJ +V-AMN +PREP +T-GSF +N-GSF +T-GSN +N-GSN +PRT-I +V-PAP-NSN +P-2DS +V-IAI-3S +CONJ +V-APP-NSN +PREP +T-DSF +S-2SDSF +N-DSF +V-IAI-3S +I-NSN +CONJ +V-2AMI-2S +PREP +T-DSF +N-DSF +P-2GS +T-ASN +N-ASN +D-ASN +PRT-N +V-ADI-2S +N-DPM +CONJ +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +V-PAP-NSM +T-APM +N-APM +D-APM +V-2AAP-NSM +V-AAI-3S +CONJ +V-2ADI-3S +N-NSM +A-NSM +PREP +A-APM +T-APM +V-PAP-APM +CONJ +V-2AAP-NPM +T-NPM +A-NPM-C +V-AAI-3P +P-ASM +CONJ +V-AAP-NPM +V-AAI-3P +CONJ +V-2ADI-3S +ADV +N-GPF +A-GPF +N-NSN +CONJ +T-NSF +N-NSF +P-GSM +PRT-N +V-RAP-NSF +T-ASN +V-2RAP-ASN +V-2AAI-3S +CONJ +V-ADI-3S +PREP +P-ASF +N-NSM +V-2AAM-2S +P-1DS +COND +D-GSN +T-ASN +N-ASN +V-2AMI-2P +CONJ +T-NSF +V-2AAI-3S +PRT +D-GSN +CONJ +T-NSM +N-NSM +PREP +P-ASF +I-NSN +CONJ +V-API-3S +P-2DP +V-AAN +T-ASN +N-ASN +N-GSM +V-2AMM-2S +T-NPM +N-NPM +T-GPM +V-AAP-GPM +T-ASM +N-ASM +P-2GS +PREP +T-DSF +N-DSF +CONJ +V-FAI-3P +P-2AS +CONJ +V-2AAI-3S +ADV +PREP +T-APM +N-APM +P-GSM +CONJ +V-AAI-3S +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-2AAI-3P +P-ASF +A-ASF +CONJ +V-AAP-NPM +V-AAI-3P +PREP +T-ASM +N-ASM +P-GSF +CONJ +V-2ADI-3S +N-NSM +A-NSM +PREP +A-ASF +T-ASF +N-ASF +CONJ +PREP +A-APM +T-APM +V-PAP-APM +D-APN +CONJ +PREP +T-GPF +N-GPF +T-GPM +N-GPM +V-INI-3S +N-NPN +CONJ +N-NPN +A-NPN +PREP +T-DSM +N-DSM +CONJ +V-IAI-3P +ADV +A-NPM +PREP +T-DSF +N-DSF +N-GSM +CONJ +T-GPM +A-GPM +A-NSM-N +V-IAI-3S +V-PPN +P-DPM +CONJ +V-IAI-3S +P-APM +T-NSM +N-NSM +CONJ +ADV +V-IPI-3P +V-PAP-NPM +T-DSM +N-DSM +N-NPN +PRT +N-GPM +CONJ +N-GPF +CONJ +CONJ +PREP +T-APF +N-APF +V-PAN +T-APM +A-APM +CONJ +V-PAN +PREP +N-GPN +CONJ +N-GPM +CONJ +V-PNP-GSM +N-GSM +COND-K +T-NSF +N-NSF +V-AAS-3S +X-DSM +P-GPM +CONJ +V-INI-3S +CONJ +T-NSN +N-NSN +T-GPF +ADV +N-PRI +N-GPF +V-PAP-NPM +A-APM +CONJ +V-PPP-APM +PREP +N-GPN +A-GPN +R-NPM +A-NPM +V-IPI-3P +CONJ +V-2AAP-NSM +T-NSM +N-NSM +CONJ +A-NPM +T-NPM +PREP +P-DSM +T-NSF +V-PAP-NSF +N-NSF +T-GPM +N-GPM +V-API-3P +N-GSM +CONJ +V-2AAI-3P +T-APF +N-APF +PREP +T-APM +N-APM +CONJ +V-2AMI-3P +P-APM +PREP +N-DSF +A-DSF +CONJ +N-NSM +N-GSM +PREP +N-GSF +V-AAI-3S +T-APF +N-APF +T-GSF +N-GSF +PRT +V-2AAP-NSM +P-APM +V-2AAI-3S +V-PNM-2P +CONJ +V-APP-NPM +V-PAM-2P +PREP +T-DSN +N-DSN +T-DSM +N-DSM +A-APN +T-APN +N-APN +T-GSF +N-GSF +D-GSF +CONJ +V-AAP-NPM +V-2AAI-3P +PREP +T-ASM +N-ASM +PREP +T-ASN +N-ASN +CONJ +V-IAI-3P +CONJ +V-2ADP-NSM +T-NSM +N-NSM +CONJ +T-NPM +PREP +P-DSM +V-AAI-3P +T-ASN +N-ASN +CONJ +A-ASF +T-ASF +N-ASF +T-GPM +N-GPM +N-PRI +CONJ +V-AAI-3P +PREP +T-ASN +N-ASN +V-APN +P-APM +CONJ +T-NPM +V-2ADP-NPM +N-NPM +PRT-N +V-2AAI-3P +P-APM +PREP +T-DSF +N-DSF +CONJ +V-AAP-NPM +V-AAI-3P +V-PAP-NPM +CONJ +V-2AAI-1P +T-ASN +N-ASN +V-RPP-ASN +PREP +A-DSF +N-DSF +CONJ +T-APM +N-APM +V-RAP-APM +PREP +T-GPF +N-GPF +CONJ +V-AAP-NPM +ADV +A-ASM-N +V-2AAI-1P +CONJ +ADV +V-AAI-3P +T-APM +N-APM +D-APM +PRT +T-NSM +N-NSM +T-GSN +N-GSN +CONJ +T-NPM +N-NPM +V-IAI-3P +PREP +P-GPM +PRT +I-NSN +V-2ADO-3S +D-NSN +CONJ +V-2ADP-NSM +X-NSM +V-AAI-3S +P-DPM +CONJ +V-2AMM-2S +T-NPM +N-NPM +R-APM +V-2AMI-2P +PREP +T-DSF +N-DSF +V-PAI-3P +V-RAP-NPM +PREP +T-DSN +N-DSN +CONJ +V-PAP-NPM +T-ASM +N-ASM +ADV +V-2AAP-NSM +T-NSM +N-NSM +PREP +T-DPM +N-DPM +V-IAI-3S +P-APM +PRT-N +PREP +N-GSF +CONJ +V-INI-3P +T-ASM +N-ASM +PRT-N +V-APS-3P +CONJ +V-2AAP-NPM +P-APM +V-AAI-3P +PREP +T-DSN +N-DSN +CONJ +V-AAI-3S +P-APM +T-NSM +N-NSM +V-PAP-NSM +N-DSF +V-AAI-1P +P-2DP +PRT-N +V-PAN +PREP +T-DSN +N-DSN +D-DSN +CONJ +V-2AMM-2S +V-RAI-2P +T-ASF +N-PRI +T-GSF +N-GSF +P-2GP +CONJ +V-PNI-2P +V-2AAN +PREP +P-1AP +T-ASN +N-ASN +T-GSM +N-GSM +D-GSM +CONJ +V-AOP-NSM +N-NSM +CONJ +T-NPM +N-NPM +V-2AAI-3P +V-PAI-3S +V-PAN +N-DSM +ADV +PRT +N-DPM +T-NSM +N-NSM +T-GPM +N-GPM +P-1GP +V-AAI-3S +N-ASM +R-ASM +P-2NP +V-AMI-2P +V-AAP-NPM +PREP +N-GSN +D-ASM +T-NSM +N-NSM +N-ASM +CONJ +N-ASM +V-AAI-3S +T-DSF +A-DSF +P-GSM +T-GSN +V-2AAN +N-ASF +T-DSM +N-PRI +CONJ +N-ASF +N-GPF +CONJ +P-1NP +V-PAI-1P +N-NPM +T-GPN +N-GPN +D-GPN +CONJ +T-ASN +N-ASN +T-ASN +A-ASN +R-ASN +V-AAI-3S +T-NSM +N-NSM +T-DPM +V-PAP-DPM +P-DSM +CONJ +T-NPM +V-AAP-NPM +V-IPI-3P +CONJ +V-INI-3P +V-2AAN +P-APM +CONJ +V-2AAP-NSM +X-NSM +PREP +T-DSN +N-DSN +N-NSM +N-DSN +N-PRI +N-NSM +A-NSM +A-DSM +T-DSM +N-DSM +V-AAI-3S +ADV +A-ASN +T-APM +N-APM +V-AAN +PRT +V-2AAI-3S +PREP +P-APM +N-VPM +N-VPM +V-PAM-2P +F-2DPM +PREP +T-DPM +N-DPM +D-DPM +I-ASN +V-PAN +V-PAI-2P +CONJ +PREP +D-GPF +T-GPF +N-GPF +V-2AAI-3S +N-NSM +V-PAP-NSM +V-PAN +X-ASM +F-3ASM +R-DSM +V-API-3S +N-GPM +N-NSM +ADV +A-GPM +R-NSM +V-API-3S +CONJ +A-NPM +K-NPM +V-IPI-3P +P-DSM +V-API-3P +CONJ +V-2ADI-3P +PREP +A-ASN-N +PREP +D-ASM +V-2AAI-3S +N-NSM +T-NSM +N-NSM +PREP +T-DPF +N-DPF +T-GSF +N-GSF +CONJ +V-AAI-3S +N-ASM +ADV +P-GSM +D-NSM-K +V-2AMI-3S +CONJ +A-NPM +K-NPM +V-IPI-3P +P-DSM +V-API-3P +CONJ +T-APN +ADV +V-PAI-1S +P-2DP +V-2AAM-2P +PREP +T-GPM +N-GPM +D-GPM +CONJ +V-2AAM-2P +P-APM +CONJ +COND +V-PAS-3S +PREP +N-GPM +T-NSF +N-NSF +D-NSF +PRT +T-NSN +N-NSN +D-NSN +V-FPI-3S +CONJ +COND +PREP +N-GSM +V-PAI-3S +PRT-N +V-FDI-2P +V-AAN +P-APM +PRT-N +ADV +CONJ +A-NPM +V-APS-2P +CONJ +V-API-3P +P-DSM +CONJ +V-ADP-NPM +T-APM +N-APM +V-AAP-NPM +V-AAI-3P +PRT-N +V-PAN +PREP +T-DSN +N-DSN +T-GSM +N-GSM +CONJ +V-AAI-3P +PRT +CONJ +T-NPM +V-INI-3P +V-PAP-NPM +PREP +N-GSN +T-GSN +N-GSN +CONJ +V-API-3P +PREP +T-GSN +N-GSN +V-APN +PRT +A-ASF +N-ASF +PREP +T-DSN +N-DSN +CONJ +PREP +N-ASM +PRT-N +V-IMI-3P +V-PAP-NPM +CONJ +V-PMP-NPM +T-ASM +N-ASM +N-ASM +CONJ +PREP +T-DPF +N-DPF +D-DPF +V-PAP-GPM +T-GPM +N-GPM +V-2ADI-3S +N-NSM +T-GPM +N-GPM +PREP +T-APM +A-APM +CONJ +V-IPI-3P +PREP +T-DSF +N-DSF +T-DSF +A-DSF +T-NPF +N-NPF +P-GPM +CONJ +T-NPM +A-NUI +V-ADP-NPM +T-ASN +N-ASN +T-GPM +N-GPM +V-2AAI-3P +PRT-N +A-NSN +V-PAI-3S +P-1AP +V-AAP-APM +T-ASM +N-ASM +T-GSM +N-GSM +V-PAN +N-DPF +CONJ +N-VPM +V-ADM-2P +N-APM +PREP +P-2GP +V-PPP-APM +A-NUI +A-APM +N-GSN +CONJ +N-GSF +R-APM +V-FAI-1P +PREP +T-GSF +N-GSF +D-GSF +CONJ +P-1NP +T-DSF +N-DSF +CONJ +T-DSF +N-DSF +T-GSM +N-GSM +V-FAI-1P +CONJ +V-AAI-3S +T-NSM +N-NSM +PREP +A-GSN +T-GSN +N-GSN +CONJ +V-AMI-3P +N-ASM +N-ASM +A-ASM +N-GSF +CONJ +N-GSN +A-GSN +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASM +N-ASM +N-ASM +R-APM +V-AAI-3P +PREP +T-GPM +N-GPM +CONJ +V-ADP-NPM +V-AAI-3P +P-DPM +T-APF +N-APF +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-IAI-3S +CONJ +V-IPI-3S +T-NSM +N-NSM +T-GPM +N-GPM +PREP +N-PRI +ADV +PRT +A-NSM +N-NSM +T-GPM +N-GPM +V-IAI-3P +T-DSF +N-DSF +CONJ +N-NSM +A-NSM +N-GSF +CONJ +N-GSF +V-IAI-3S +N-APN +CONJ +N-APN +A-APN +PREP +T-DSM +N-DSM +CONJ +V-AAI-3P +X-NPM +T-GPM +PREP +T-GSF +N-GSF +T-GSF +V-PPP-GSF +N-GPM +CONJ +N-GPM +CONJ +N-GPM +CONJ +T-GPM +PREP +N-GSF +CONJ +N-GSF +V-PAP-NPM +T-DSM +N-DSM +CONJ +PRT-N +V-IAI-3P +V-2AAN +T-DSF +N-DSF +CONJ +T-DSN +N-DSN +R-DSN +V-IAI-3S +ADV +V-2AAI-3P +N-APM +V-PAP-APM +CONJ +V-2RAI-1P-ATT +P-GSM +V-PAP-GSM +N-APN +A-APN +PREP +N-ASM +CONJ +T-ASM +N-ASM +PRT +V-AAI-3P +T-ASM +N-ASM +CONJ +T-APM +A-APM-C +CONJ +T-APM +N-APM +CONJ +V-2AAP-NPM +V-AAI-3P +P-ASM +CONJ +V-2AAI-3P +PREP +T-ASN +N-ASN +PRT +V-AAI-3P +N-APM +A-APM +V-PAP-APM +T-NSM +N-NSM +D-NSM +PRT-N +V-PMI-3S +V-PAP-NSM +N-APN +PREP +T-GSM +N-GSM +T-GSM +A-GSM +CONJ +T-GSM +N-GSM +CONJ +V-2RAI-1P-ATT +P-GSM +V-PAP-GSM +CONJ +N-NSM +T-NSM +N-NSM +D-NSM +V-FAI-3S +T-ASM +N-ASM +D-ASM +CONJ +V-FAI-3S +T-APN +N-APN +R-APN +V-AAI-3S +P-1DP +N-NSM +CONJ +V-AAP-NPM +PREP +P-ASM +A-NPM +T-NPM +V-PNP-NPM +PREP +T-DSN +N-DSN +V-2AAI-3P +T-ASN +N-ASN +P-GSM +ADV +N-ASN +N-GSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +COND +D-NPN +ADV +V-PAI-3S +CONJ +T-NSM +V-IAI-3S +N-VPM +N-VPM +CONJ +N-VPM +V-AAM-2P +T-NSM +N-NSM +T-GSF +N-GSF +V-API-3S +T-DSM +N-DSM +P-1GP +N-PRI +V-PAP-DSM +PREP +T-DSF +N-DSF +ADV +PRT +V-AAN +P-ASM +PREP +N-PRI +CONJ +V-2AAI-3S +PREP +P-ASM +V-2AAM-2S +PREP +T-GSF +N-GSF +P-2GS +CONJ +T-GSF +N-GSF +P-2GS +CONJ +V-PAM-2S +PREP +T-ASF +N-ASF +PRT +R-ASF +P-2DS +V-FAI-1S +ADV +V-2AAP-NSM +PREP +N-GSF +N-GPM +V-AAI-3S +PREP +N-PRI +ADV-K +PREP +T-ASN +V-2AAN +T-ASM +N-ASM +P-GSM +V-AAI-3S +P-ASM +PREP +T-ASF +N-ASF +D-ASF +PREP +R-ASF +P-2NP +ADV +V-PAI-2P +CONJ +PRT-N +V-AAI-3S +P-DSM +N-ASF +PREP +P-DSF +CONJ-N +N-ASN +N-GSM +CONJ +V-ADI-3S +V-2AAN +P-DSM +PREP +N-ASF +P-ASF +CONJ +T-DSN +N-DSN +P-GSM +PREP +P-ASM +PRT-N +V-PAP-GSN +P-DSM +N-GSN +CONJ +V-AAI-3S +ADV +T-NSM +N-NSM +CONJ +V-FDI-3S +T-NSN +N-NSN +P-GSM +A-NSN +PREP +N-DSF +A-DSF +CONJ +V-FAI-3P +CONJ +V-FAI-3P +P-ASN +N-APN +A-APN +CONJ +T-ASN +N-ASN +COND +R-DSM +V-FAI-3P +V-FAI-1S +P-1NS +T-NSM +N-NSM +V-2AAI-3S +CONJ +PREP +D-APN +V-FDI-3P +CONJ +V-FAI-3P +P-1DS +PREP +T-DSM +N-DSM +D-DSM +CONJ +V-AAI-3S +P-DSM +N-ASF +N-GSF +CONJ +ADV +V-AAI-3S +T-ASM +N-PRI +CONJ +V-2AAI-3S +P-ASM +T-DSF +N-DSF +T-DSF +A-DSF +CONJ +N-PRI +T-ASM +N-PRI +CONJ +N-PRI +T-APM +A-NUI +N-APM +CONJ +T-NPM +N-NPM +V-AAP-NPM +T-ASM +N-PRI +V-2AMI-3P +PREP +N-ASF +CONJ +V-IAI-3S +T-NSM +N-NSM +PREP +P-GSM +CONJ +V-AMI-3S +P-ASM +PREP +A-GPF +T-GPF +N-GPF +P-GSM +CONJ +V-AAI-3S +P-DSM +N-ASF +CONJ +N-ASF +PREP +N-PRI +N-GSM +N-GSF +CONJ +V-AAI-3S +P-ASM +V-PNP-ASM +PREP +N-ASF +CONJ +A-ASM +T-ASM +N-ASM +P-GSM +CONJ +V-2AAI-3S +N-NSM +PREP +A-ASF +T-ASF +N-ASF +CONJ +N-PRI +CONJ +N-NSF +A-NSF +CONJ +PRT-N +V-IAI-3P +N-APN +T-NPM +N-NPM +P-1GP +CONJ +N-PRI +V-AAP-NSM +V-PAP-APN +N-APN +PREP +N-ASF +V-AAI-3S +T-APM +N-APM +P-1GP +ADV-S +CONJ +PREP +T-DSM +A-DSM +V-API-3S +N-PRI +T-DPM +N-DPM +P-GSM +CONJ +A-NSN +V-2ADI-3S +T-DSM +N-PRI +T-NSN +N-NSN +N-PRI +CONJ +V-AAP-NSM +N-PRI +V-AMI-3S +N-PRI +T-ASM +N-ASM +P-GSM +CONJ +A-ASF +T-ASF +N-ASF +PREP +N-DPF +A-NUI +A-NUI +CONJ +V-2AAI-3S +N-PRI +PREP +N-ASF +CONJ +V-AAI-3S +P-NSM +CONJ +T-NPM +N-NPM +P-1GP +CONJ +V-API-3P +PREP +N-PRI +CONJ +V-API-3P +PREP +T-DSN +N-DSN +R-DSN +V-ADI-3S +N-PRI +N-GSF +N-GSN +PREP +T-GPM +N-GPM +N-PRI +PREP +N-PRI +CONJ +ADV +V-IAI-3S +T-NSM +N-NSM +T-GSF +N-GSF +R-GSF +V-AAI-3S +T-NSM +N-NSM +T-DSM +N-PRI +T-NSM +N-NSM +V-AAI-3S +CONJ +V-API-3S +PREP +N-DSF +ADV +R-GSM +V-2AAI-3S +PREP +N-ASF +N-NSM +A-NSM +R-NSM +PRT-N +V-2LAI-3S +T-ASM +N-PRI +D-NSM +V-ADP-NSM +T-ASN +N-ASN +P-1GP +V-AAI-3S +T-APM +N-APM +T-GSN +V-PAN +T-APN +N-APN +P-GPM +A-APN +PREP +T-ASN +PRT-N +V-PPN +PREP +R-DSM +N-DSM +V-API-3S +N-NSM +CONJ +V-IAI-3S +A-NSM +T-DSM +N-DSM +R-NSM +V-2API-3S +N-APM +A-APM +PREP +T-DSM +N-DSM +T-GSM +N-GSM +CONJ +V-APP-GSM +P-GSM +V-AMI-3S +P-ASM +T-NSF +N-NSF +N-PRI +CONJ +V-AMI-3S +P-ASM +F-3DSF +PREP +N-ASM +CONJ +V-API-3S +N-NSM +A-DSF +N-DSF +A-GPM +CONJ +V-IAI-3S +A-NSM +PREP +N-DPM +CONJ +N-DPN +P-GSM +CONJ +ADV +V-IPI-3S +P-DSM +A-NSM +N-NSM +V-2AAI-3S +PREP +T-ASF +N-ASF +P-GSM +V-ADN +T-APM +N-APM +P-GSM +T-APM +N-APM +N-PRI +CONJ +V-2AAP-NSM +X-ASM +V-PPP-ASM +V-ADI-3S +CONJ +V-AAI-3S +N-ASF +T-DSM +V-PPP-DSM +V-AAP-NSM +T-ASM +A-ASM +CONJ +V-IAI-3S +V-PAN +T-APM +N-APM +CONJ +T-NSM +N-NSM +PREP +N-GSF +P-GSM +V-PAI-3S +N-ASF +P-DPM +CONJ +T-NPM +PRT-N +V-AAI-3P +PRT +T-DSF +V-PAP-DSF +N-DSF +V-API-3S +P-DPM +V-PNP-DPM +CONJ +V-IAI-3S +P-APM +PREP +N-ASF +V-2AAP-NSM +N-VPM +N-NPM +V-PAI-2P +CONJ +I-NSN +V-PAI-2P +C-APM +CONJ +T-NSM +V-PAP-NSM +T-ASM +ADV +V-ADI-3S +P-ASM +V-2AAP-NSM +I-NSM +P-2AS +V-AAI-3S +N-ASM +CONJ +N-ASM +PREP +P-1GP +PRT-N +V-2AAN +P-1AS +P-2NS +V-PAI-2S +R-ASM +N-ASM +V-2AAI-2S +ADV +T-ASM +A-ASM +CONJ +V-2AAI-3S +N-NSM +PREP +T-DSM +N-DSM +D-DSM +CONJ +V-2ADI-3S +A-NSM +PREP +N-DSF +N-PRI +ADV +V-AAI-3S +N-APM +A-NUI +CONJ +V-APP-GPN +N-GPN +A-NUI +V-API-3S +P-DSM +PREP +T-DSF +A-DSF +T-GSN +N-GSN +N-PRI +N-NSM +PREP +N-DSF +N-GSN +N-GSF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +V-IAI-3S +T-ASN +N-ASN +CONJ +V-PNP-GSM +P-GSM +V-AAN +V-2ADI-3S +N-NSF +N-GSM +P-1NS +T-NSM +N-NSM +T-GPM +N-GPM +P-2GS +T-NSM +N-NSM +N-PRI +CONJ +N-PRI +CONJ +N-PRI +CONJ +A-NSM +V-2ADP-NSM +N-NSM +PRT-N +V-IAI-3S +V-AAN +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +V-AAM-2S +T-ASN +N-ASN +T-GPM +N-GPM +P-2GS +CONJ +T-NSM +N-NSM +PREP +R-DSM +V-RAI-2S +N-NSF +A-NSF +V-PAI-3S +V-2AAP-NSM +V-2AAI-1S +T-ASF +N-ASF +T-GSM +N-GSM +P-1GS +T-GSM +PREP +N-DSF +CONJ +T-GSM +N-GSM +P-GSM +V-AAI-1S +CONJ +V-2AAI-1S +V-2AMN +P-APM +CONJ +ADV +V-PAM-2S +V-AAS-1S +P-2AS +PREP +N-ASF +D-ASM +T-ASM +N-ASM +R-ASM +V-ADI-3P +V-2AAP-NPM +I-NSM +P-2AS +V-AAI-3S +N-ASM +CONJ +N-ASM +D-ASM +T-NSM +N-NSM +CONJ +N-ASM +CONJ +N-ASM +V-RAI-3S +PREP +N-DSF +N-GSM +T-GSM +V-APP-GSM +P-DSM +PREP +T-DSF +N-DSF +D-NSM +V-2AAI-3S +P-APM +V-AAP-NSM +N-APN +CONJ +N-APN +PREP +N-DSF +N-DSF +CONJ +PREP +A-DSF +N-DSF +CONJ +PREP +T-DSF +A-DSF +N-APN +A-NUI +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +V-2AAP-NSM +T-DPM +N-DPM +N-PRI +N-ASM +P-2DP +V-FAI-3S +T-NSM +N-NSM +PREP +T-GPM +N-GPM +P-2GP +ADV +P-1AS +D-NSM +V-PAI-3S +T-NSM +V-2ADP-NSM +PREP +T-DSF +N-DSF +PREP +T-DSF +A-DSF +PREP +T-GSM +N-GSM +T-GSM +V-PAP-GSM +P-DSM +PREP +T-DSN +N-DSN +N-PRI +CONJ +T-GPM +N-GPM +P-1GP +R-NSM +V-ADI-3S +N-APN +V-PAP-APN +V-2AAN +P-2DP +R-DSM +PRT-N +V-AAI-3P +A-NPM +V-2ADN +T-NPM +N-NPM +P-1GP +CONJ +V-ADI-3P +CONJ +V-2API-3P +PREP +T-DPF +N-DPF +P-GPM +PREP +N-ASF +V-2AAP-NPM +T-DSM +N-PRI +V-AAM-2S +P-1DP +N-APM +R-NPM +V-FDI-3P +P-1GP +CONJ +T-NSM +N-NSM +D-NSM +R-NSM +V-2AAI-3S +P-1AP +PREP +N-GSF +N-GSF +PRT-N +V-RAI-1P +I-NSN +V-2ADI-3S +P-DSM +CONJ +V-AAI-3P +PREP +T-DPF +N-DPF +D-DPF +CONJ +V-2AAI-3P-ATT +N-ASF +T-DSN +N-DSN +CONJ +V-IPI-3P +PREP +T-DPN +N-DPN +T-GPF +N-GPF +P-GPM +CONJ +V-AAI-3S +T-NSM +N-NSM +CONJ +V-AAI-3S +P-APM +V-PAN +T-DSF +N-DSF +T-GSM +N-GSM +ADV +V-RPI-3S +PREP +N-DSF +T-GPM +N-GPM +PRT-N +N-APN +CONJ +N-APF +V-AAI-2P +P-1DS +N-APN +A-NUI +PREP +T-DSF +A-DSF +N-NSM +N-PRI +CONJ +V-2AAI-2P +T-ASF +N-ASF +T-GSM +N-PRI +CONJ +T-ASN +N-ASN +T-GSM +N-GSM +N-PRI +T-APM +N-APM +R-APM +V-AAI-2P +V-PAN +P-DPM +CONJ +V-FAI-1S-ATT +P-2AP +ADV +N-GSF +T-NSF +N-NSF +T-GSN +N-GSN +V-IAI-3S +T-DPM +N-DPM +P-1GP +PREP +T-DSF +A-DSF +ADV +V-AMI-3S +T-NSM +V-PAP-NSM +T-DSM +N-DSM +V-AAN +P-ASF +PREP +T-ASM +N-ASM +R-ASM +V-LAI-3S-ATT +R-ASF +CONJ +V-2AAI-3P +V-ADP-NPM +T-NPM +N-NPM +P-1GP +PREP +N-GSM +PREP +T-DSF +N-DSF +T-GPN +N-GPN +R-GPN +V-AAI-3S +T-NSM +N-NSM +PREP +N-GSN +T-GPM +N-GPM +P-1GP +ADV +T-GPF +N-GPF +N-PRI +R-NSM +V-2AAI-3S +N-ASF +PREP +T-GSM +N-GSM +CONJ +V-AMI-3S +V-2AAN +N-ASN +T-DSM +N-DSM +N-PRI +CONJ +N-NSM +V-AAI-3S +P-DSM +N-ASM +CONJ +PRT-N +T-NSM +A-NSM-S +PREP +A-DPM +V-PAI-3S +ADV +T-NSM +N-NSM +V-PAI-3S +T-NSM +N-NSM +P-1DS +N-NSM +CONJ +T-NSF +N-NSF +N-NSN +T-GPM +N-GPM +P-1GS +I-ASM +N-ASM +V-FAI-2P +P-1DS +V-PAI-3S +N-NSM +PRT +I-NSM +N-NSM +T-GSF +N-GSF +P-1GS +PRT-I +T-NSF +N-NSF +P-1GS +V-AAI-3S +D-APN +A-APN +A-VPM +CONJ +A-VPM +N-DPF +CONJ +T-DPN +N-DPN +P-2NP +ADV +T-DSN +N-DSN +T-DSN +A-DSN +V-PAI-2P +ADV +T-NPM +N-NPM +P-2GP +CONJ +P-2NP +I-ASM +T-GPM +N-GPM +PRT-N +V-AAI-3P +T-NPM +N-NPM +P-2GP +CONJ +V-AAI-3P +T-APM +V-AAP-APM +PREP +T-GSF +N-GSF +T-GSM +A-GSM +R-GSM +ADV +P-2NP +N-NPM +CONJ +N-NPM +V-2ADI-2P +R-NPM +V-2AAI-2P +T-ASM +N-ASM +PREP +N-APF +N-GPM +CONJ +PRT-N +V-AAI-2P +CONJ +V-PAP-NPM +D-APN +V-IPI-3P +T-DPF +N-DPF +P-GPM +CONJ +V-IAI-3P +T-APM +N-APM +PREP +P-ASM +CONJ +V-PAP-NSM +A-NSM +N-GSN +A-GSN +V-AAP-NSM +PREP +T-ASM +N-ASM +V-2AAI-3S +N-ASF +N-GSM +CONJ +N-ASM +V-RAP-ASM +PREP +A-GPN +T-GSM +N-GSM +CONJ +V-2AAI-3S +V-2AMM-2S +V-PAI-1S +T-APM +N-APM +V-RPP-APM +CONJ +T-ASM +N-ASM +T-GSM +N-GSM +PREP +A-GPN +T-GSM +N-GSM +V-RAP-ASM +CONJ +V-AAP-NPM +N-DSF +A-DSF +V-2AAI-3P +T-APN +N-APN +P-GPM +CONJ +V-AAI-3P +ADV +PREP +P-ASM +CONJ +V-2AAP-NPM +ADV +T-GSF +N-GSF +V-IAI-3P +CONJ +T-NPM +N-NPM +V-2AMI-3P +T-APN +N-APN +P-GPM +PREP +T-APM +N-APM +N-GSM +V-PPP-GSM +N-GSM +CONJ +V-IAI-3P +T-ASM +N-ASM +V-PMP-ASM +CONJ +V-PAP-ASM +N-VSM +N-VSM +V-ADM-2S +T-ASN +N-ASN +P-1GS +CONJ +V-2AAP-NSM +T-APN +N-APN +V-AAI-3S +N-DSF +A-DSF +N-VSM +PRT-N +V-AAS-2S +P-DPM +D-ASF +T-ASF +N-ASF +CONJ +D-ASN +V-2AAP-NSM +V-API-3S +CONJ +N-NSM +V-IAI-3S +V-PAP-NSM +T-DSF +N-DSF +P-GSM +CONJ +V-2ADI-3S +PREP +D-DSF +T-DSF +N-DSF +N-NSM +A-NSM +PREP +T-ASF +N-ASF +T-ASF +PREP +N-DPN +CONJ +A-NPM +V-2API-3P +PREP +T-APF +N-APF +T-GSF +N-GSF +CONJ +N-GSF +ADV +T-GPM +N-GPM +CONJ +V-AAI-3P +T-ASM +N-ASM +N-NPM +A-NPM +CONJ +V-AAI-3P +N-ASM +A-ASM +PREP +P-DSM +CONJ +N-NSM +V-INI-3S +T-ASF +N-ASF +PREP +T-APM +N-APM +V-PNP-NSM +V-PAP-NSM +PRT +N-APM +CONJ +N-APF +V-IAI-3S +PREP +N-ASF +CONJ +PRT +T-NPM +V-2APP-NPM +V-2AAI-3P +V-PMP-NPM +T-ASM +N-ASM +CONJ +N-NSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +T-GSF +N-GSF +V-IAI-3S +P-DPM +T-ASM +N-ASM +CONJ +V-IAI-3P +T-NPM +N-NPM +T-DPN +V-PPP-DPN +PREP +T-GSM +N-GSM +ADV +PREP +T-DSN +V-PAN +P-APM +CONJ +V-PAN +T-APN +N-APN +R-APN +V-IAI-3S +CONJ +A-NPM +T-GPM +V-PAP-GPM +N-APN +A-APN +V-PAP-NPN +N-DSF +A-DSF +V-INI-3P +CONJ +A-NPM +V-RPP-NPM +CONJ +A-NPM +V-API-3P +CONJ +V-2ADI-3S +A-NSF +N-NSF +PREP +T-DSF +N-DSF +D-DSF +CONJ +N-NSM +X-NSM +N-DSN +N-NSM +V-IAI-3S +PREP +T-DSF +N-DSF +V-PAP-NSM +CONJ +V-PAP-NSM +T-ASN +N-ASN +T-GSF +N-GSF +V-PAP-NSM +V-PAN +X-ASM +A-ASM +F-3ASM +R-DSM +V-IAI-3P +A-NPM +PREP +A-GSM +ADV +A-GSM +V-PAP-NPM +D-NSM +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +T-NSF +V-PPP-NSF +A-NSF +CONJ +V-IAI-3P +P-DSM +PREP +T-ASN +A-DSM +N-DSM +T-DPF +N-DPF +V-RAN +P-APM +CONJ +ADV +V-AAI-3P +T-DSM +N-DSM +V-PMP-DSM +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +T-GSN +N-GSN +N-GSM +N-GSM +V-IPI-3P +PRT +N-NPM +CONJ +N-NPF +CONJ +T-NSM +N-NSM +CONJ +P-NSM +V-AAI-3S +CONJ +V-APP-NSM +V-IAI-3S +V-PAP-NSM +T-DSM +N-DSM +V-PAP-NSM +PRT +N-APN +CONJ +N-APF +A-APF +V-PNP-APF +V-IMI-3S +CONJ +T-NPM +PREP +N-DPN +N-NPM +V-AAP-NPM +CONJ +V-RNI-3S +T-NSF +N-NSF +T-ASM +N-ASM +T-GSM +N-GSM +V-AAI-3P +PREP +P-APM +N-ASM +CONJ +N-ASM +R-NPM +V-2AAP-NPM +V-ADI-3P +PREP +P-GPM +ADV +V-2AAS-3P +N-ASN +A-ASN +CONJ +ADV-N +V-IAI-3S +V-RAP-NSN +PREP +A-DSM-N +P-GPM +CONJ +ADV +V-RPP-NPM +V-IAI-3P +PREP +T-ASN +N-ASN +T-GSM +N-GSM +N-GSM +ADV +V-IAI-3P +T-APF +N-APF +PREP +P-APM +CONJ +V-IAI-3P +N-ASN +A-ASN +CONJ +T-NSM +N-NSM +V-2AAP-NSM +CONJ +PREP +T-GSF +N-GSF +T-GPF +N-GPF +T-GPM +N-GPM +V-PPI-3S +T-NSN +N-NSN +V-AAI-3S +P-DPM +N-APN +V-PAP-NSM +V-2AAM-2P +P-1DS-K +T-ASF +N-ASF +D-ASF +CONJ +COND +R-DSM +V-2AAS-1S +T-APF +N-APF +V-PAS-3S +N-ASN +A-ASN +CONJ +N-NSM +V-2AAI-3S +PREP +P-ASM +T-NSN +N-NSN +P-2GS +PREP +P-2DS +V-PAO-3S +PREP +N-ASF +CONJ +V-AAI-2S +T-ASF +N-ASF +T-GSM +N-GSM +PREP +N-GPN +V-PNN +PRT-N +V-PAI-3S +P-2DS +N-NSF +CONJ-N +N-NSM +PREP +T-DSM +N-DSM +D-DSM +CONJ +T-NSF +N-NSF +P-2GS +PRT-N +V-PAI-3S +A-NSF +PREP +T-GSM +N-GSM +CONJ +V-AAM-2S +PREP +T-GSF +N-GSF +P-2GS +D-GSF +CONJ +V-AOM-2S +T-GSM +N-GSM +PRT-I +COND +V-FPI-3S +P-2DS +T-NSF +N-NSF +T-GSF +N-GSF +P-2GS +CONJ +PREP +N-ASF +N-GSF +CONJ +N-ASM +N-GSF +P-2AS +V-PAP-ASM +V-PAI-1S +CONJ +V-AOP-NSM +T-NSM +N-NSM +V-2AAI-3S +V-AOM-2P +P-2NP +PREP +P-1GS +PREP +T-ASM +N-ASM +ADV +V-2AAS-3S +PREP +P-1AS +A-NSN-N +R-GPN +V-RAI-2P-ATT +PRT +CONJ +T-NPM +V-ADP-NPM +CONJ +V-AAP-NPM +T-ASM +N-ASM +T-GSM +N-GSM +V-IAI-3P +PREP +N-APN +PRT +A-APF +N-APF +T-GPM +N-GPM +V-IMI-3P +CONJ +N-NSM +N-GSM +V-AAI-3S +PREP +N-ASM +V-PAP-NSM +V-2AAM-2S +CONJ +V-PNM-2S +PREP +N-ASF +PREP +T-ASF +N-ASF +T-ASF +V-PAP-ASF +PREP +N-PRI +PREP +N-ASF +D-NSF +V-PAI-3S +A-NSF +CONJ +V-2AAP-NSM +V-AOI-3S +CONJ +V-2AMM-2S +N-NSM +N-NSM +N-NSM +N-NSM +N-GSF +N-GSF +N-GPM +R-NSM +V-IAI-3S +PREP +A-GSF +T-GSF +N-GSF +P-GSF +R-NSM +V-2LAI-3S +V-FAP-NSM +PREP +N-PRI +V-IAI-3S +CONJ +V-PAP-NSM +CONJ +V-PNP-NSM +PREP +T-GSN +N-GSN +P-GSM +CONJ +V-IAI-3S +T-ASM +N-ASM +N-ASM +CONJ +V-2AAI-3S +T-NSN +N-NSN +T-DSM +N-DSM +V-2AAM-2S +CONJ +V-APM-2S +T-DSN +N-DSN +D-DSN +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-AAI-3S +P-GSM +V-PAP-GSM +N-ASM +T-ASM +N-ASM +CONJ +V-2AAI-3S +PRT-I +PRT +V-PAI-2S +R-APN +V-PAI-2S +CONJ +T-NSM +V-2AAI-3S +CONJ +PRT +ADV-I +V-PNO-1S +COND +PRT-N +X-NSM +V-FAI-3S +P-1AS +PRT +V-AAI-3S +T-ASM +N-ASM +V-2AAP-ASM +V-AAN +PREP +P-DSM +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +R-ASF +V-IAI-3S +V-IAI-3S +D-NSF +ADV +N-NSN +PREP +N-ASF +V-API-3S +CONJ +ADV +N-NSM +PREP +T-GSM +V-PAP-GSM +P-ASM +A-NSM +ADV +PRT-N +V-PAI-3S +T-ASN +N-ASN +P-GSM +PREP +T-DSF +N-DSF +T-NSF +N-NSF +P-GSM +V-API-3S +T-ASF +N-ASF +P-GSM +I-NSM +V-FDI-3S +CONJ +V-PPI-3S +PREP +T-GSF +N-GSF +T-NSF +N-NSF +P-GSM +CONJ +V-AOP-NSM +T-NSM +N-NSM +T-DSM +N-DSM +V-2AAI-3S +V-PNI-1S +P-2GS +PREP +I-GSM +T-NSM +N-NSM +V-PAI-3S +D-ASN +PREP +F-3GSM +PRT +PREP +A-GSM +X-GSM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-ASN +N-ASN +P-GSM +CONJ +V-AMP-NSM +PREP +T-GSF +N-GSF +D-GSF +V-AMI-3S +P-DSM +T-ASM +N-ASM +CONJ +ADV +V-INI-3P +PREP +T-ASF +N-ASF +V-2AAI-3P +PREP +X-ASN +N-ASN +CONJ +V-PAI-3S +T-NSM +N-NSM +V-2AMM-2S +N-NSN +I-NSN +V-PAI-3S +P-1AS +V-APN +CONJ +V-AAI-3S +V-2AAN +T-ASN +N-ASN +CONJ +V-2AAI-3P +A-NPM +PREP +T-ASN +N-ASN +PRT +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +CONJ +V-AAI-3S +P-ASM +CONJ +ADV +V-2AAI-3P +PREP +T-GSN +N-GSN +N-NSN +N-GSM +V-AAI-3S +T-ASM +N-ASM +CONJ +PRT-N +V-2AAI-3S +P-ASM +ADV-N +T-NSM +N-NSM +CONJ +V-INI-3S +T-ASF +N-ASF +P-GSM +V-PAP-NSM +CONJ +N-NSM +V-API-3S +PREP +N-ASF +CONJ +V-PNP-NSM +V-IMI-3S +T-APF +N-APF +A-APF +ADV +T-GSN +V-2AAN +P-ASM +PREP +N-ASF +CONJ +T-NSM +N-NSM +ADV +V-PAP-NSM +N-GSF +CONJ +N-GSM +PREP +T-APM +N-APM +T-GSM +N-GSM +V-2AAP-NSM +T-DSM +N-DSM +V-AMI-3S +PREP +P-GSM +N-APF +PREP +N-ASF +PREP +T-APF +N-APF +ADV +COND +V-2AAS-3S +X-APM +T-GSF +N-GSF +V-PAP-APM +PRT +N-APM +CONJ +N-APF +V-RPP-APM +V-2AAS-3S +PREP +N-PRI +CONJ +PREP +T-DSN +V-PNN +V-2ADI-3S +P-ASM +V-PAN +T-DSF +N-DSF +PRT +ADV +P-ASM +V-AAI-3S +N-NSN +PREP +T-GSM +N-GSM +CONJ +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-AAI-3S +N-ASF +V-PAP-ASF +P-DSM +N-PRI +N-PRI +I-ASN +P-1AS +V-PAI-2S +CONJ +V-2AAI-3S +I-NSM +V-PAI-2S +N-VSM +CONJ +T-NSM +P-1NS +V-PAI-1S +N-NSM +R-ASM +P-2NS +V-PAI-2S +CONJ +V-2AAM-2S +CONJ +V-2AAM-2S +PREP +T-ASF +N-ASF +CONJ +V-FPI-3S +P-2DS +R-ASN +I-ASN +P-2AS +V-PAN +V-PAI-3S +CONJ +T-NPM +N-NPM +T-NPM +V-PAP-NPM +P-DSM +V-LAI-3P +A-NPM +PRT +V-PAP-NPM +T-GSF +N-GSF +CONJ +A-ASM-N +V-PAP-NPM +CONJ +V-API-3S +N-NSM +PREP +T-GSF +N-GSF +CONJ +V-RPP-GPM +T-GPM +N-GPM +P-GSM +A-ASN-N +V-IAI-3S +CONJ +V-PAP-NPM +P-ASM +V-2AAI-3P +PREP +N-ASF +CONJ +V-IAI-3S +V-PAP-NSM +N-APF +A-APF +PRT-N +CONJ +PRT-N +V-2AAI-3S +CONJ-N +V-2AAI-3S +CONJ +V-IAI-3S +X-NSM +N-NSM +N-DSN +N-NSM +PREP +N-DSF +CONJ +V-2AAI-3S +PREP +P-ASM +PREP +N-DSN +T-NSM +N-NSM +N-VSM +CONJ +T-NSM +V-2AAI-3S +V-2AMM-2S +P-1NS +N-VSM +CONJ +T-NSM +N-NSM +PREP +P-ASM +V-2AAP-NSM +V-AOM-2S +PREP +T-ASF +N-ASF +T-ASF +V-PPP-ASF +A-ASF +CONJ +V-AAM-2S +PREP +N-DSF +N-GSM +N-ASM +N-DSN +N-ASM +CONJ +V-2AMM-2S +V-PNI-3S +CONJ +V-2AAI-3S +N-ASM +N-ASM +N-DSN +V-2AAP-ASM +CONJ +V-2AAP-ASM +P-DSM +N-APF +ADV +V-AAS-3S +CONJ +V-ADI-3S +N-NSM +N-VSM +V-AAI-1S +PREP +A-GPM +PREP +T-GSM +N-GSM +D-GSM +K-APN +A-APN +T-DPM +A-DPM +P-2GS +V-AAI-3S +PREP +N-PRI +CONJ +ADV +V-PAI-3S +N-ASF +PREP +T-GPM +N-GPM +V-AAN +A-APM +T-APM +V-PMP-APM +T-ASN +N-ASN +P-2GS +CONJ +V-2AAI-3S +PREP +P-ASM +T-NSM +N-NSM +V-PNM-2S +CONJ +N-NSN +N-GSF +V-PAI-3S +P-1DS +D-NSM +T-GSN +V-AAN +T-ASN +N-ASN +P-1GS +PREP +PRT +N-GPN +CONJ +N-GPM +PRT +N-GPM +N-PRI +CONJ +P-1NS +V-FAI-1S +P-DSM +K-APN +P-ASM +PREP +T-GSN +N-GSN +P-1GS +V-2AAN +V-PAI-3S +CONJ +V-2AAI-3S +N-NSM +CONJ +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NSM +PREP +P-ASM +T-APF +N-APF +V-2AAI-3S +N-PRI +N-VSM +T-NSM +N-NSM +N-NSM +T-NSM +V-APP-NSM +P-2DS +PREP +T-DSF +N-DSF +R-DSF +V-INI-2S +V-RAI-3S +P-1AS +ADV +V-AAS-2S +CONJ +V-APS-2S +N-GSN +A-GSN +CONJ +ADV +V-2AAI-3P +PREP +P-GSM +T-GPM +N-GPM +ADV +N-NPF +PRT +V-AAI-3S +CONJ +V-2AAP-NSM +V-API-3S +CONJ +V-2AAP-NSM +N-ASF +V-AAI-3S +CONJ +V-2ADI-3S +PREP +T-GPM +PREP +N-DSF +N-GPM +N-APF +X-APF +CONJ +ADV +PREP +T-DPF +N-DPF +V-IAI-3S +T-ASM +N-ASM +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-IMI-3P +A-NPM +T-NPM +V-PAP-NPM +CONJ +V-IAI-3P +PRT-N +D-NSM +V-PAI-3S +T-NSM +V-AAP-NSM +PREP +N-PRI +T-APM +V-PMP-APM +T-ASN +N-ASN +D-ASN +CONJ +ADV +PREP +D-ASN +V-2LAI-3S +CONJ +V-RPP-APM +P-APM +V-2AAS-3S +PREP +T-APM +N-APM +CONJ +N-NSM +ADV +V-IPI-3S +CONJ +V-IAI-3S +A-APM +T-APM +V-PAP-APM +PREP +N-DSF +V-PAP-NSM +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +CONJ +ADV +V-IPI-3P +N-NPF +A-NPF +V-AMI-3P +T-NPM +A-NPM +V-2AAN +P-ASM +CONJ +V-2API-3S +T-DSM +N-DSM +T-NSF +N-NSF +P-GPM +CONJ +V-IMI-3P +CONJ +T-APF +N-APF +PRT +N-GSF +CONJ +N-GSF +ADV +P-ASM +V-2AAS-3P +CONJ +V-2AAP-NPM +T-NPM +N-NPM +P-GSM +N-GSF +PREP +T-GSN +N-GSN +V-AAI-3P +P-ASM +V-AAP-NPM +PREP +N-DSF +CONJ +V-2ADP-NSM +PREP +N-PRI +V-IAI-3S +V-PPN +T-DPM +N-DPM +CONJ +A-NPM +V-INI-3P +P-ASM +PRT-N +V-PAP-NPM +CONJ +V-PAI-3S +N-NSM +CONJ +N-NSM +V-2ADP-NSM +P-ASM +V-2AAI-3S +PREP +T-APM +N-APM +CONJ +V-ADI-3S +P-DPM +ADV +PREP +T-DSF +N-DSF +V-2AAI-3S +T-ASM +N-ASM +CONJ +CONJ +V-AAI-3S +P-DSM +CONJ +ADV +PREP +N-DSF +V-ADI-3S +PREP +T-DSN +N-DSN +N-GSM +CONJ +V-IAI-3S +V-PNP-NSM +CONJ +V-PNP-NSM +PREP +P-GPM +PREP +N-PRI +V-PNP-NSM +PREP +T-DSN +N-DSN +T-GSM +N-GSM +PRT +V-IAI-3S +CONJ +V-IAI-3S +PREP +T-APM +N-APM +CONJ +T-NPM +V-IAI-3P +V-2AAN +P-ASM +CONJ +V-2AAP-NPM +T-NPM +N-NPM +V-2AAI-3P +P-ASM +PREP +N-ASF +CONJ +V-AAI-3P +P-ASM +PREP +N-ASF +PRT +CONJ +T-NSF +N-NSF +PREP +A-GSF +T-GSF +N-GSF +CONJ +N-GSF +CONJ +N-GSF +V-IAI-3S +N-ASF +V-PPP-NSF +CONJ +V-PNP-NSF +T-DSM +N-DSM +T-GSM +N-GSM +CONJ +T-DSF +N-DSF +T-GSN +A-GSN +N-GSN +V-IPI-3S +CONJ +V-2ADI-3S +N-ASM +V-PNP-ASM +PREP +A-GPN +V-2AAN +CONJ +PREP +T-APM +A-APM +T-APM +V-PAP-APM +N-ASF +CONJ +V-2AAI-3S +ADV +N-ASM +X-ASM +N-DSN +N-ASM +PREP +N-GPN +A-NUI +V-PNP-ASM +PREP +N-GSM +R-NSM +V-IAI-3S +V-RPP-NSM +CONJ +V-2AAI-3S +P-DSM +T-NSM +N-NSM +N-VSM +V-PNI-3S +P-2AS +N-NSM +N-NSM +V-2AAM-2S +CONJ +V-AAM-2S +F-2DSM +CONJ +ADV +V-2AAI-3S +CONJ +V-2AAI-3P +P-ASM +A-NPM +T-NPM +V-PAP-NPM +N-ASF +CONJ +T-ASM +N-ASM +R-NPM +V-AAI-3P +PREP +T-ASM +N-ASM +CONJ +PREP +N-DSF +V-IAI-3S +X-NSM +N-NSF +N-DSN +N-PRI +R-NSF +V-PPP-NSF +V-PPI-3S +N-NSF +D-NSF +V-IAI-3S +A-NSF +N-GPN +A-GPN +CONJ +N-GPF +R-GPF +V-IAI-3S +CONJ +V-2ADI-3S +PREP +T-DPF +N-DPF +D-DPF +V-AAP-ASF +P-ASF +V-2AAN +CONJ +V-AAP-NPM +V-AAI-3P +PREP +N-DSN +CONJ +V-PAP-GSF +N-GSF +ADV +T-DSF +N-DSF +T-NPM +N-NPM +V-AAP-NPM +CONJ +N-NSM +V-PAI-3S +PREP +P-DSF +V-AAI-3P +A-NUI +N-APM +PREP +P-ASM +V-PAP-NPM +PRT-N +V-AAS-2S +V-2AAN +ADV +P-1GP +CONJ +V-2AAP-NSM +N-NSM +V-2AAI-3S +P-DPM +R-ASM +V-2ADP-ASM +V-2AAI-3P-ATT +PREP +T-ASN +N-ASN +CONJ +V-AAI-3P +P-DSM +A-NPF +T-NPF +N-NPF +V-PAP-NPF +CONJ +V-PMP-NPF +N-APM +CONJ +N-APN +K-APN +V-IAI-3S +PREP +P-GPF +V-PAP-NSF +T-NSF +N-NSF +CONJ +T-NSM +N-NSM +V-2AAP-NSM +ADV +A-APM +CONJ +V-2AAP-NSM +T-APN +N-APN +V-ADI-3S +CONJ +V-AAP-NSM +PREP +T-ASN +N-ASN +V-2AAI-3S +N-PRI +V-2AAM-2S +CONJ +T-NSF +V-AAI-3S +T-APM +N-APM +P-GSF +CONJ +V-2AAP-NSF +T-ASM +N-ASM +V-AAI-3S +CONJ +V-2AAP-NSM +P-DSF +N-ASF +V-AAI-3S +P-ASF +CONJ +V-AAP-NSM +T-APM +A-APM +CONJ +T-APF +N-APF +V-AAI-3S +P-ASF +V-PAP-ASF +CONJ +A-NSN +V-2ADI-3S +PREP +A-GSF +T-GSF +N-GSF +CONJ +V-AAI-3P +A-NPM +PREP +T-ASM +N-ASM +CONJ +V-2ADI-3S +N-APF +A-APF +V-AAN +PREP +N-DSF +PREP +X-DSM +N-DSM +N-DSM +CONJ +N-NSM +X-NSM +PREP +N-DSF +N-DSN +N-NSM +N-NSM +PREP +N-GSF +T-GSF +V-PPP-GSF +A-GSF +A-NSM +CONJ +V-PNP-NSM +T-ASM +N-ASM +PREP +A-DSM +T-DSM +N-DSM +P-GSM +V-PAP-NSM +N-APF +A-APF +T-DSM +N-DSM +CONJ +V-PNP-NSM +T-GSM +N-GSM +PREP +A-GSN +V-2AAI-3S +PREP +N-DSN +ADV +ADV +PREP +N-ASF +A-ASF +T-GSF +N-GSF +N-ASM +T-GSM +N-GSM +V-2AAP-ASM +PREP +P-ASM +CONJ +V-2AAP-ASM +P-DSM +N-VSM +CONJ +T-NSM +V-AAP-NSM +P-DSM +CONJ +A-NSM +V-2ADP-NSM +V-2AAI-3S +I-NSN +V-PAI-3S +N-VSM +CONJ +V-2AAI-3S +P-DSM +T-NPF +N-NPF +P-2GS +CONJ +T-NPF +N-NPF +P-2GS +V-2AAI-3P +PREP +N-ASN +PREP +T-GSM +N-GSM +CONJ +ADV +V-AAM-2S +N-APM +PREP +N-ASF +CONJ +V-AMM-2S +N-ASM +X-ASM +R-NSM +V-PPI-3S +N-NSM +D-NSM +V-PPI-3S +PREP +X-DSM +N-DSM +N-DSM +R-DSM +V-PAI-3S +N-NSF +PREP +N-ASF +CONJ +ADV +V-2AAI-3S +T-NSM +N-NSM +T-NSM +V-PAP-NSM +P-DSM +V-AAP-NSM +A-NUI +T-GPM +N-GPM +CONJ +N-ASM +A-ASM +T-GPM +V-PAP-GPM +P-DSM +CONJ +V-ADP-NSM +A-APN +P-DPM +V-AAI-3S +P-APM +PREP +T-ASF +N-ASF +CONJ +T-DSF +ADV +V-PAP-GPM +D-GPM +CONJ +T-DSF +N-DSF +V-PAP-GPM +V-2AAI-3S +N-NSM +PREP +T-ASN +N-ASN +V-ADN +PREP +N-ASF +A-ASF +CONJ +V-2ADI-3S +A-NSM +CONJ +V-IAI-3S +V-ADN +CONJ +V-PAP-GPM +P-GPM +V-2ADI-3S +PREP +P-ASM +N-NSF +CONJ +V-PAI-3S +T-ASM +N-ASM +V-RPP-ASM +CONJ +V-PAP-ASN +N-ASN +X-ASN +ADV +N-ASF +A-ASF +A-DPF +N-DPF +V-PPP-ASN +PREP +T-GSF +N-GSF +PREP +R-DSN +V-IAI-3S +A-NPN +T-NPN +A-NPN +CONJ +N-NPN +T-GSF +N-GSF +CONJ +N-NPN +T-GSM +N-GSM +CONJ +V-2ADI-3S +N-NSF +PREP +P-ASM +N-VSM +V-2AAP-NSM +V-AAM-2S +CONJ +V-2AAM-2S +CONJ +T-NSM +N-NSM +V-2AAI-3S +ADV-N +N-VSM +CONJ +ADV-N +V-2AAI-1S +A-ASN +A-ASN +CONJ +A-ASN +CONJ +N-NSF +ADV +PREP +A-GSN +PREP +P-ASM +R-APN +T-NSM +N-NSM +V-AAI-3S +P-2NS +PRT-N +V-PAM-2S +CONJ +D-NSN +V-2ADI-3S +PREP +ADV +CONJ +ADV +V-API-3S +T-NSN +N-NSN +PREP +T-ASM +N-ASM +CONJ +ADV +PREP +F-3DSM +V-IAI-3S +T-NSM +N-NSM +PRT +I-NSN +V-PAO-3S +T-NSN +N-NSN +R-ASN +V-2AAI-3S +V-2AMM-2S +T-NPM +N-NPM +T-NPM +V-RPP-NPM +PREP +T-GSM +N-GSM +V-AAP-NPM +T-ASF +N-ASF +T-GSM +N-GSM +V-2AAI-3P +PREP +T-ASM +N-ASM +CONJ +V-AAP-NPM +V-INI-3P +COND +N-NSM +T-NSM +V-PPP-NSM +N-NSM +ADV +V-PPI-3S +CONJ +T-GSM +N-GSM +V-PNP-GSM +PREP +T-GSN +N-GSN +V-2AAI-3S +T-NSN +N-NSN +V-2AMM-2S +N-NPM +A-NUI +V-PAP-NPM +P-2AS +CONJ +V-2AAP-NSM +V-2AAM-2S +CONJ +V-PNM-2S +PREP +P-DPM +A-ASN-N +V-PMP-NSM +CONJ +P-1NS +V-RAI-1S +P-APM +CONJ +V-2AAP-NSM +N-NSM +PREP +T-APM +N-APM +V-2AAI-3S +V-2AMM-2S +P-1NS +V-PAI-1S +R-ASM +V-PAI-2P +I-NSF +T-NSF +N-NSF +PREP +R-ASF +V-PAI-2P +CONJ +T-NPM +V-2AAI-3P +N-NSM +N-NSM +N-NSM +A-NSM +CONJ +V-PNP-NSM +T-ASM +N-ASM +PRT +V-PPP-NSM +PREP +A-GSN +T-GSN +N-GSN +T-GPM +A-GPM +V-API-3S +PREP +N-GSM +A-GSM +V-AMN +P-2AS +PREP +T-ASM +N-ASM +P-GSM +CONJ +V-AAN +N-APN +PREP +P-2GS +CONJ +V-ADP-NSM +P-APM +V-AAI-3S +CONJ +T-DSF +ADV +V-2AAP-NSM +V-2AAI-3S +PREP +P-DPM +CONJ +X-NPM +T-GPM +N-GPM +T-GPM +PREP +N-GSF +V-2AAI-3P +P-DSM +CONJ +T-DSF +ADV +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +T-NSM +N-NSM +V-IAI-3S +V-PAP-NSM +P-APM +V-AMP-NSM +T-APM +A-APM +P-GSM +CONJ +T-APM +A-APM +A-APM +CONJ +ADV +V-2ADI-3S +T-GSN +V-2AAN +T-ASM +N-ASM +V-AAP-NSM +P-DSM +T-NSM +N-NSM +V-2AAP-NSM +PREP +T-APM +N-APM +V-AAI-3S +CONJ +T-NSM +N-NSM +V-AAI-3S +P-ASM +V-PAP-NSM +V-2AAM-2S +CONJ +P-1NS +P-NSM +N-NSM +V-PAI-1S +CONJ +V-PAP-NSM +P-DSM +V-2AAI-3S +CONJ +V-PAI-3S +V-2RAP-APM +A-APM +PRT +V-IAI-3S +PREP +P-APM +P-2NP +V-PNI-2P +ADV +A-NSN +V-PAI-3S +N-DSM +A-DSM +V-PPN +PRT +V-PNN +A-DSM +P-1DS-K +T-NSM +N-NSM +V-AAI-3S +A-ASM-N +N-ASM +A-ASM +PRT +A-ASM +V-PAN +CONJ +CONJ +ADV +V-2AAI-1S +V-APP-NSM +CONJ +V-PNI-1S +I-DSM +N-DSM +V-AMI-2P +P-1AS +CONJ +T-NSM +N-NSM +V-IAI-3S +PREP +A-GSF +N-GSF +ADV +D-GSF +T-GSF +N-GSF +V-IMI-1S +V-PNP-NSM +T-ASF +A-ASF +PREP +T-DSM +N-DSM +P-1GS +CONJ +V-2AMM-2S +N-NSM +V-2AAI-3S +PREP +P-1GS +PREP +N-DSF +A-DSF +CONJ +V-PAI-3S +N-VSM +V-API-3S +P-2GS +T-NSF +N-NSF +CONJ +T-NPF +N-NPF +P-2GS +V-API-3P +PREP +T-GSM +N-GSM +CONJ +V-AAM-2S +PREP +N-ASF +CONJ +V-AMM-2S +N-ASM +R-NSM +V-PPI-3S +N-NSM +D-NSM +V-PPI-3S +PREP +N-DSF +N-GSM +N-GSM +PREP +N-ASF +CONJ +ADV +V-AAI-1S +PREP +P-2AS +PRT +P-2NS +ADV +V-AAI-2S +V-2ADP-NSM +CONJ +ADV +A-NPM +P-1NP +PREP +T-GSM +N-GSM +V-PAI-1P +V-AAN +A-APN +T-APN +V-RPP-APN +P-2DS +PREP +T-GSM +N-GSM +CONJ +N-NSM +V-AAP-NSM +T-ASN +N-ASN +V-2AAI-3S +PREP +N-GSF +V-PMI-1S +CONJ +PRT-N +V-PAI-3S +N-NSM +T-NSM +N-NSM +CONJ +PREP +A-DSN +N-DSN +T-NSM +V-PNP-NSM +P-ASM +CONJ +V-PNP-NSM +N-ASF +A-NSM +P-DSM +V-PAI-3S +T-ASM +N-ASM +R-ASM +V-AAI-3S +T-DPM +N-DPM +N-PRI +V-PMP-NSM +N-ASF +PREP +N-GSM +N-GSM +D-NSM +V-PAI-3S +A-GPM +N-NSM +P-2NP +V-RAI-2P +T-ASN +N-ASN +V-2ADP-ASN +PREP +A-GSF +T-GSF +N-GSF +V-AMP-NSM +PREP +T-GSF +N-GSF +PREP +T-ASN +N-ASN +R-ASN +V-AAI-3S +N-NSM +N-ASM +T-ASM +PREP +N-PRI +ADV +V-AAI-3S +P-ASM +T-NSM +N-NSM +N-DSN +A-DSN +CONJ +N-DSF +R-NSM +V-2AAI-3S +V-PAP-NSM +CONJ +V-PNP-NSM +A-APM +T-APM +V-PPP-APM +PREP +T-GSM +A-GSM +CONJ +T-NSM +N-NSM +V-IAI-3S +PREP +P-GSM +CONJ +P-1NP +N-NPM +A-GPN +R-GPN +V-AAI-3S +PRT +PREP +T-DSF +N-DSF +T-GPM +A-GPM +CONJ +N-PRI +R-ASM +CONJ +V-2AAI-3P +V-AAP-NPM +PREP +N-GSN +D-ASM +T-NSM +N-NSM +V-AAI-3S +PREP +T-DSF +A-DSF +N-DSF +CONJ +V-AAI-3S +P-ASM +A-ASM +V-2ADN +PRT-N +A-DSM +T-DSM +N-DSM +CONJ +N-DPM +T-DPM +V-RPP-DPM +PREP +T-GSM +N-GSM +P-1DP +R-NPM +V-2AAI-1P +CONJ +V-2AAI-1P +P-DSM +PREP +T-ASN +V-2AAN +P-ASM +PREP +A-GPM +CONJ +V-AAI-3S +P-1DP +V-AAN +T-DSM +N-DSM +CONJ +V-ADN +CONJ +D-NSM +V-PAI-3S +T-NSM +V-RPP-NSM +PREP +T-GSM +N-GSM +N-NSM +V-PAP-GPM +CONJ +A-GPM +D-DSM +A-NPM +T-NPM +N-NPM +V-PAI-3P +N-ASF +N-GPF +V-2AAN +PREP +T-GSN +N-GSN +P-GSM +A-ASM +T-ASM +V-PAP-ASM +PREP +P-ASM +ADV +V-PAP-GSM +T-GSM +N-GSM +T-APN +N-APN +D-APN +V-2AAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +PREP +A-APM +T-APM +V-PAP-APM +T-ASM +N-ASM +CONJ +V-2AAI-3P +T-NPM +PREP +N-GSF +A-NPM +K-NPM +V-2AAI-3P +T-DSM +N-DSM +CONJ +CONJ +PREP +T-APN +N-APN +T-NSF +N-NSF +T-GSN +A-GSN +N-GSN +V-RPI-3S +CONJ +V-IAI-3P +P-GPM +V-PAP-GPM +N-DPF +CONJ +V-PAP-GPM +T-ASM +N-ASM +ADV +V-ADI-3S +N-NSM +PRT-I +T-ASN +N-ASN +V-AAN +V-PNI-3S +X-NSM +T-GSN +PRT-N +V-APN +D-APM +R-NPM +T-ASN +N-ASN +T-ASN +A-ASN +V-2AAI-3P +ADV +CONJ +P-1NP +CONJ +V-AAI-3S +P-APM +PREP +T-DSN +N-DSN +N-GSM +N-GSM +V-APN +ADV +V-AAI-3P +P-ASM +V-AAN +N-APF +X-APF +CONJ +V-AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +T-NPM +V-PAP-NPM +PREP +T-ASF +N-ASF +CONJ +CONJ +T-NPN +N-NPN +V-ADI-3P +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +ADV +V-2AAI-3S +N-NSM +PREP +N-PRI +V-IMI-3P +PREP +P-ASM +T-NPM +PREP +N-GSF +V-PAP-NPM +CONJ +V-2AAI-2S +PREP +N-APM +N-ASF +V-PAP-APM +CONJ +V-2AAI-2S +P-DPM +CONJ +V-AMP-NSM +N-NSM +V-IMI-3S +P-DPM +ADV +V-PAP-NSM +P-1NS +V-IMI-1S +V-PNP-NSM +PREP +N-DSF +N-DSF +CONJ +V-2AAI-1S +PREP +N-DSF +N-ASN +V-PAP-ASN +N-ASN +X-ASN +ADV +N-ASF +A-ASF +A-DPF +N-DPF +V-PPP-ASF +PREP +T-GSM +N-GSM +CONJ +V-2AAI-3S +ADV +P-1GS +PREP +R-ASF +V-AAP-NSM +V-IAI-1S +CONJ +V-2AAI-1S +T-APN +A-APN +T-GSF +N-GSF +CONJ +T-APN +N-APN +CONJ +T-APN +N-APN +CONJ +T-APN +N-APN +T-GSM +N-GSM +CONJ +V-AAI-1S +CONJ +N-GSF +V-PAP-GSF +P-1DS +N-VSM +V-2AAP-NSM +V-AAM-2S +CONJ +V-2AAM-2S +CONJ +V-2AAI-1S +ADV-N +N-VSM +CONJ +A-NSN +PRT +A-NSN +ADV-N +V-2AAI-3S +PREP +T-ASN +N-ASN +P-1GS +CONJ +V-ADI-3S +PREP +A-GSN +N-NSF +PREP +T-GSM +N-GSM +R-APN +T-NSM +N-NSM +V-AAI-3S +P-2NS +PRT-N +V-PAM-2S +CONJ +D-NSN +V-2ADI-3S +PREP +ADV +CONJ +V-API-3S +ADV +A-NPN +PREP +T-ASM +N-ASM +CONJ +V-2AMM-2S +ADV +A-NPM +N-NPM +V-2AAI-3P +PREP +T-ASF +N-ASF +PREP +R-DSF +V-IAI-1P +V-RPP-NPM +PREP +N-GSF +PREP +P-1AS +CONJ +V-2AAI-3S +T-NSN +N-NSN +P-1DS +V-2AAN +P-DPM +A-ASN-N +V-AAP-ASM +CONJ +V-2AAI-3P +PREP +P-1DS +CONJ +T-NPM +A-NUI +N-NPM +D-NPM +CONJ +V-2AAI-1P +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-AAI-3S +P-1DP +ADV +V-2AAI-3S +T-ASM +N-ASM +PREP +T-DSM +N-DSM +P-GSM +V-APP-ASM +CONJ +V-2AAP-ASM +V-AAM-2S +PREP +N-ASF +CONJ +V-AMM-2S +N-ASM +T-ASM +V-PPP-ASM +N-ASM +R-NSM +V-FAI-3S +N-APN +PREP +P-2AS +PREP +R-DPN +V-FPI-2S +P-2NS +CONJ +A-NSM +T-NSM +N-NSM +P-2GS +CONJ +PREP +T-DSN +V-AMN +P-1AS +V-PAN +V-2AAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +PREP +P-APM +ADV +CONJ +PREP +P-1AP +PREP +N-DSF +CONJ +V-API-1S +T-GSN +N-GSN +T-GSM +N-GSM +ADV +V-IAI-3S +PRT +N-NSM +V-AAI-3S +N-DSN +CONJ +P-2NP +V-FPI-2P +PREP +N-DSN +A-DSN +CONJ +COND +T-ASF +A-ASF +N-ASF +V-AAI-3S +P-DPM +T-NSM +N-NSM +ADV +CONJ +P-1DP +V-AAP-DPM +PREP +T-ASM +N-ASM +N-ASM +N-ASM +P-1NS +I-NSM +V-IMI-1S +A-NSM +V-AAN +T-ASM +N-ASM +CONJ +V-AAP-NPM +D-APN +V-AAI-3P +CONJ +V-AAI-3P +T-ASM +N-ASM +V-PAP-NPM +PRT +CONJ +T-DPN +N-DPN +T-NSM +N-NSM +T-ASF +N-ASF +PREP +N-ASF +V-AAI-3S +PRT +CONJ +T-NPM +V-2APP-NPM +PREP +T-GSF +N-GSF +T-GSF +V-2ADP-GSF +PREP +N-DSM +V-2AAI-3P +ADV +N-GSF +CONJ +N-GSF +CONJ +N-GSF +A-DSM-N +V-PAP-NPM +T-ASM +N-ASM +COND +PRT-N +ADV +A-DPM +CONJ +V-IAI-3P +X-NPM +PREP +P-GPM +N-NPM +N-NPM +CONJ +N-NPM +R-NPM +V-2AAP-NPM +PREP +N-ASF +V-IAI-3P +CONJ +PREP +T-APM +N-APM +V-PMP-NPM +T-ASM +N-ASM +N-ASM +CONJ +V-IAI-3S +N-NSF +N-GSM +PREP +P-GPM +PRT +A-NSM +N-NSM +T-NSM +V-AAP-NSM +V-AAI-3S +PREP +T-ASM +N-ASM +CONJ +V-API-3S +T-NSM +N-NSM +PREP +P-GPM +PREP +T-APN +N-APN +T-GSF +N-GSF +T-GSF +V-PAP-GSF +PREP +N-PRI +CONJ +V-AAI-3P +N-ASM +ADV +N-GSF +R-NSM +V-2ADP-NSM +CONJ +V-2AAP-NSM +T-ASF +N-ASF +T-ASF +T-GSM +N-GSM +V-2AOI-3S +CONJ +V-IAI-3S +A-APM +T-DSF +N-DSF +T-GSF +N-GSF +V-PAN +T-DSM +N-DSM +CONJ +V-IAI-3S +N-NSM +A-NSM +CONJ +A-NSM +N-GSN +A-GSN +CONJ +N-GSF +CONJ +V-API-3S +N-NSM +A-NSM +T-DSM +N-DSM +CONJ +V-2AAI-3S +PREP +N-ASF +V-AAN +N-ASM +CONJ +V-2AAP-NSM +V-2AAI-3S +PREP +N-ASF +CONJ +V-2ADI-3S +P-DPM +CONJ +N-ASM +A-ASM +V-APN +PREP +T-DSF +N-DSF +CONJ +V-AAN +N-ASM +A-ASM +PRT +V-AAN +ADV-S +PREP +N-DSF +T-APM +N-APM +N-APM +CONJ +PREP +D-DPF +T-DPF +N-DPF +V-2AAI-3P +PREP +N-GPN +N-NPM +PREP +N-ASF +CONJ +V-2AAP-NSM +A-NSM +PREP +P-GPM +N-DSN +N-NSM +V-IAI-3S +PREP +T-GSN +N-GSN +N-ASF +A-ASF +V-PAN +V-FDN +PREP +A-ASF +T-ASF +N-ASF +R-NSF +V-2ADI-3S +PREP +N-GSM +CONJ +T-GPM +N-GPM +ADV +V-IMI-3S +X-NSM +V-AAI-3P +A-NSM +P-GPM +PREP +N-ASF +V-AAN +T-DPM +V-PAP-DPM +PREP +T-DSF +N-DSF +N-DPM +R-ASN +CONJ +V-AAI-3P +V-AAP-NPM +PREP +T-APM +A-APM-C +PREP +N-GSF +N-GSM +CONJ +N-GSM +CONJ +PREP +D-ASM +T-ASM +N-ASM +V-2AAI-3S +N-NSM +T-NSM +N-NSM +T-APF +N-APF +V-AAN +X-APM +T-GPM +PREP +T-GSF +N-GSF +CONJ +V-2AAI-3S +N-ASM +T-ASM +N-ASM +N-GSM +N-DSF +CONJ +V-2AAP-NSM +CONJ +A-NSN +V-PAI-3S +T-DPM +A-DPM +V-2AMI-3S +V-2AAN +CONJ +N-ASM +CONJ +V-IAI-3P +N-NPF +T-GPN +A-GPN +R-ASM +CONJ +V-AAP-NSM +V-2AMI-3S +PREP +N-ASF +V-2AAP-NSM +A-DPN +N-DPN +N-GPM +V-PAN +P-ASM +V-PNP-NSM +PREP +T-ASN +ARAM +V-2AAN +P-ASM +T-DSM +N-DSM +CONJ +PRT +T-NSM +N-NSM +V-IPI-3S +PREP +T-DSF +N-DSF +CONJ +N-NSF +V-IAI-3S +V-PNP-NSF +ADV +PREP +T-GSF +N-GSF +PREP +T-ASM +N-ASM +PREP +P-GSM +CONJ +ADV +V-IAI-3S-ATT +V-2AAN +P-ASM +T-NSM +N-NSM +T-DSF +N-DSF +D-DSF +T-NSM +N-NSM +V-IAI-3S +V-PPP-NSM +ADV +A-NUI +N-GPM +V-RPP-NSM +N-DPF +A-DPF +PRT +N-NPM +PREP +T-GSF +N-GSF +V-IAI-3P +T-ASF +N-ASF +CONJ +V-2AMM-2S +N-NSM +N-GSM +V-2AAI-3S +CONJ +N-NSN +V-AAI-3S +PREP +T-DSN +N-DSN +CONJ +V-AAP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +V-AAI-3S +P-ASM +V-PAP-NSM +V-2AAM-2S +PREP +N-DSN +CONJ +V-2AAI-3P +P-GSM +T-NPF +N-NPF +PREP +T-GPF +N-GPF +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +P-ASM +V-AMM-2S +CONJ +V-AMM-2S +T-APN +N-APN +P-2GS +CONJ +V-AAI-3S +ADV +CONJ +V-PAI-3S +P-DSM +V-2AMM-2S +T-ASN +N-ASN +P-2GS +CONJ +V-PAM-2S +P-1DS +CONJ +V-2AAP-NSM +V-IAI-3S +CONJ +PRT-N +V-2LAI-3S +CONJ +A-NSN +V-PAI-3S +T-NSN +V-PNP-NSN +PREP +T-GSM +N-GSM +CONJ +V-IAI-3S +N-ASN +V-PAN +CONJ +V-2AAP-NPM +A-ASF-S +CONJ +A-ASF +N-ASF +V-2AAI-3P +PREP +T-ASF +N-ASF +T-ASF +A-ASF +T-ASF +V-PAP-ASF +PREP +T-ASF +N-ASF +R-NSF +A-NSF +V-2API-3S +P-DPM +CONJ +V-2AAP-NPM +V-2AAI-3P +N-ASF +A-ASF +CONJ +ADV +V-2AAI-3S +T-NSM +N-NSM +PREP +P-GSM +CONJ +T-NSM +N-NSM +PREP +F-3DSM +V-2ADP-NSM +V-2AAI-3S +ADV +V-RAI-1S +ADV +CONJ +V-AAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +P-GSM +CONJ +V-AMI-3S +P-1AS +PREP +N-GSF +N-GSM +CONJ +A-GSF +T-GSF +N-GSF +T-GSM +N-GSM +T-GPM +A-GPM +PRT +V-2AAP-NSM +V-2AAI-3S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +T-GSF +N-GSF +N-GSM +T-GSM +V-PPP-GSM +N-GSM +ADV +A-NPM +V-IAI-3P +V-RPP-NPM +CONJ +V-PNP-NPM +CONJ +V-AAP-GSM +P-GSM +T-ASF +N-ASF +T-GSM +N-GSM +V-2AAI-3S +V-AAN +N-NSF +N-DSN +N-NSF +CONJ +V-2AAP-NSF +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-GSF +N-GSF +PRT-N +V-AAI-3S +T-ASM +N-ASM +CONJ +V-2AAP-NSF +V-AAI-3S +V-RAN +T-ASM +N-ASM +PREP +T-GSM +N-GSM +CONJ +T-NPM +PREP +P-ASF +V-2AAI-3P +V-PNI-2S +CONJ +T-NSF +V-INI-3S +ADV +V-PAN +CONJ +T-NPM +V-IAI-3P +T-NSM +N-NSM +V-PAI-3S +P-GSM +CONJ +T-NSM +N-NSM +V-IAI-3S +V-PAP-NSM +CONJ +V-AAP-NPM +V-2AAI-3P +P-ASM +CONJ +V-2AAI-3P +CONJ +V-AAP-NSM +P-DPM +T-DSF +N-DSF +V-PAN +V-ADI-3S +P-DPM +ADV +T-NSM +N-NSM +P-ASM +V-2AAI-3S +PREP +T-GSF +N-GSF +PRT +V-2AAI-3S +V-AAM-2P +N-DSM +CONJ +T-DPM +N-DPM +D-APN +CONJ +V-2AAP-NSM +V-AOI-3S +PREP +A-ASM +N-ASM +CONJ +V-2ADP-GSF +N-GSF +V-IAI-3S +N-NSM +PRT-N +A-NSM +PREP +T-DPM +N-DPM +PRT-I +I-NSN +T-NSM +N-NSM +V-2ADI-3S +CONJ +N-NSM +V-AAP-NSM +P-ASM +CONJ +PRT-N +V-2AAP-NSM +V-AAP-NSM +T-APM +N-APM +V-AAI-3S +V-APN +CONJ +V-2AAP-NSM +PREP +T-GSF +N-GSF +PREP +N-ASF +V-IAI-3S +CONJ +V-IAI-3S +V-PAP-NSM +N-DPM +CONJ +A-DPF +CONJ +ADV +V-IAI-3P +PREP +P-ASM +CONJ +V-AAP-NPM +N-ASM +T-ASM +PREP +T-GSM +N-GSM +T-GSM +N-GSM +V-IMI-3P +N-ASF +PREP +T-ASN +V-PPN +P-GPM +T-ASF +N-ASF +PREP +T-GSF +A-GSF +CONJ +A-DSF +N-DSF +T-NSM +N-NSM +V-AMP-NSM +N-ASF +A-ASF +V-AAP-NSM +PREP +T-GSN +N-GSN +V-IAI-3S +PREP +P-APM +CONJ +T-NSM +N-NSM +V-IAI-3S +N-GSM +N-NSF +CONJ +PRT-N +N-GSM +CONJ +ADV +V-AAI-3S +P-ASM +N-NSM +N-GSM +PREP +R-GPN +PRT-N +V-AAI-3S +T-ASF +N-ASF +T-DSM +N-DSM +CONJ +V-2ADP-NSM +A-NSM +V-AAI-3S +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-IAI-3S +CONJ +V-IPI-3S +CONJ +N-NSM +CONJ +N-NSM +V-AAI-3P +PREP +N-PRI +V-AAP-NPM +T-ASF +N-ASF +V-2AAP-NPM +N-ASM +T-ASM +V-APP-ASM +N-ASM +CONJ +V-IAI-3P +PREP +N-DSF +PREP +T-ASF +V-PAP-ASF +N-ASF +N-NPM +CONJ +N-NPM +PRT +T-NSM +N-NSM +CONJ +N-PRI +T-NSM +V-PPP-NSM +N-PRI +CONJ +N-NSM +T-NSM +N-NSM +PRT +N-PRI +N-GSM +T-GSM +N-GSM +A-NSM +CONJ +N-NSM +CONJ +V-PAP-GPM +P-GPM +T-DSM +N-DSM +CONJ +V-PAP-GPM +V-2AAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +PRT +V-AAM-2P +P-1DS +T-ASM +N-ASM +CONJ +N-ASM +PREP +T-ASN +N-ASN +R-ASN +V-RNI-1S +P-APM +ADV +V-AAP-NPM +CONJ +V-ADP-NPM +CONJ +V-2AAP-NPM +T-APF +N-APF +P-DPM +V-AAI-3P +PRT +CONJ +P-NPM +V-APP-NPM +PREP +T-GSN +A-GSN +N-GSN +V-2AAI-3P +PREP +N-ASF +PRT +ADV +V-AAI-3P +PREP +N-ASF +CONJ +V-2ADP-NPM +PREP +N-DSF +V-IAI-3P +T-ASM +N-ASM +T-GSM +N-GSM +PREP +T-DPF +N-DPF +T-GPM +A-GPM +CONJ +V-IAI-3P +CONJ +N-ASM +N-ASM +CONJ +V-2AAP-NPM +A-ASF +T-ASF +N-ASF +ADV +N-GSF +V-2AAI-3P +N-ASM +X-ASM +N-ASM +N-ASM +A-ASM +R-DSM +N-NSN +N-NSM +R-NSM +V-IAI-3S +PREP +T-DSM +N-DSM +N-DSM +N-DSM +N-DSM +A-DSM +D-NSM +V-ADP-NSM +N-ASM +CONJ +N-ASM +V-AAI-3S +V-AAN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-IMI-3S +P-DPM +N-NSM +T-NSM +N-NSM +CONJ +ADV +V-PPI-3S +T-NSN +N-NSN +P-GSM +V-PAP-NSM +V-AAN +T-ASM +N-ASM +PREP +T-GSF +N-GSF +CONJ +N-NSM +T-NSM +CONJ +N-NSM +V-APP-NSM +N-GSN +A-GSN +V-AAP-NSM +PREP +P-ASM +V-2AAI-3S +INJ +A-NSM +A-GSM +N-GSM +CONJ +A-GSF +N-GSF +N-VSM +A-GSM +A-VSM +A-GSF +N-GSF +PRT-N +V-FDI-2S +V-PAP-NSM +T-APF +N-APF +T-GSM +N-GSM +T-APF +A-APF +CONJ +ADV +V-2AMM-2S +N-NSF +N-GSM +PREP +P-2AS +CONJ +V-FDI-2S +A-NSM +PRT-N +V-PAP-NSM +T-ASM +N-ASM +ADV +N-GSM +CONJ +ADV +V-2AAI-3S +PREP +P-ASM +N-NSF +CONJ +N-NSN +CONJ +V-PAP-NSM +V-IAI-3S +N-APM +ADV +T-NSM +N-NSM +V-2AAP-NSM +T-ASN +V-2RAP-ASN +V-AAI-3S +V-PPP-NSM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +V-APP-NPM +PREP +T-GSF +N-GSF +T-NPM +PREP +N-ASM +V-2AAI-3P +PREP +N-ASF +T-GSF +N-GSF +CONJ +N-NSM +V-AAP-NSM +PREP +P-GPM +V-AAI-3S +PREP +N-APN +CONJ +P-NPM +V-2AAP-NPM +PREP +T-GSF +N-GSF +V-2ADI-3P +PREP +N-ASF +T-ASF +A-ASF +CONJ +V-2AAP-NPM +PREP +T-ASF +N-ASF +T-DSF +N-DSF +T-GPN +N-GPN +V-AAI-3P +CONJ +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +T-GPM +N-GPM +V-AAI-3P +T-NPM +N-NPM +PREP +P-APM +V-PAP-NPM +N-VPM +N-VPM +COND +V-PAI-3S +PREP +P-2DP +X-NSM +N-NSM +N-GSF +PREP +T-ASM +N-ASM +V-PAM-2P +CONJ +N-NSM +V-2AAP-NSM +CONJ +V-AAP-NSM +T-DSF +N-DSF +V-2AAI-3S +N-VPM +N-VPM +CONJ +T-NPM +V-PNP-NPM +T-ASM +N-ASM +V-AAM-2P +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +N-PRI +V-AMI-3S +T-APM +N-APM +P-1GP +CONJ +T-ASM +N-ASM +V-AAI-3S +PREP +T-DSF +N-DSF +PREP +N-DSF +N-GSF +CONJ +PREP +N-GSM +A-GSM +V-2AAI-3S +P-APM +PREP +P-GSF +CONJ +ADV +A-ASM +N-ASM +V-AAI-3S +P-APM +PREP +T-DSF +A-DSF +CONJ +V-2AAP-NSM +N-APN +A-NUI +PREP +N-DSF +N-PRI +V-AAI-3S +T-ASF +N-ASF +P-GPM +ADV +N-DPN +A-DPN +CONJ +A-NUI +CONJ +PREP +D-APN +V-AAI-3S +N-APM +ADV +N-PRI +N-GSM +ADV-K +V-AMI-3P +N-ASM +CONJ +V-AAI-3S +P-DPM +T-NSM +N-NSM +T-ASM +N-PRI +N-ASM +N-PRI +N-ASM +PREP +N-GSF +N-PRI +N-APN +A-NUI +CONJ +V-AAP-NSM +P-ASM +V-AAI-3S +T-ASM +N-PRI +P-DPM +PREP +N-ASM +R-DSM +CONJ +V-2AAI-3S +V-AAP-NSM +V-2AAI-1S +N-PRI +T-ASM +T-GSM +N-PRI +N-ASM +PREP +T-ASF +N-ASF +P-1GS +R-NSM +V-FAI-3S +A-APN +T-APN +N-APN +P-1GS +T-NSM +N-NSM +PREP +D-GSM +T-GSN +N-GSN +PREP +N-ASF +V-2AAI-3S +T-DSM +N-PRI +N-ASM +N-ASM +V-AAP-GSM +N-GSM +PREP +N-GSN +T-GSF +N-GSF +P-GSM +N-ASN +N-GSF +A-DSM +T-DSM +N-DSM +N-PRI +CONJ +ADV +V-IAI-3S +N-NSM +T-ASM +N-ASM +V-IAI-3S +I-ASN +P-1AS +V-PAN +V-PAI-2P +PRT-N +V-PAI-1S +P-1NS +CONJ +V-2AMM-2S +V-PNI-3S +PREP +P-1AS +R-GSM +PRT-N +V-PAI-1S +A-NSM +T-ASN +N-ASN +T-GPM +N-GPM +V-AAN +N-VPM +N-VPM +N-VPM +N-GSN +N-PRI +CONJ +T-NPM +PREP +P-2DP +V-PNP-NPM +T-ASM +N-ASM +P-1DP +T-NSM +N-NSM +T-GSF +N-GSF +D-GSF +V-2API-3S +CONJ +T-NPM +V-PAP-NPM +PREP +N-PRI +CONJ +T-NPM +N-NPM +P-GPM +D-ASM +V-AAP-NPM +CONJ +T-APF +N-APF +T-GPM +N-GPM +T-APF +PREP +A-ASN +N-ASN +V-PPP-APF +V-AAP-NPM +V-AAI-3P +CONJ +A-ASF-N +N-ASF +N-GSM +V-2AAP-NPM +V-AMI-3P +N-ASM +V-APN +P-ASM +CONJ +ADV +V-AAI-3P +A-APN +T-APN +PREP +P-GSM +V-RPP-APN +V-2AAP-NPM +PREP +T-GSN +N-GSN +V-AAI-3P +PREP +N-ASN +CONJ +T-NSM +N-NSM +V-AAI-3S +P-ASM +PREP +A-GPM +R-NSM +V-API-3S +PREP +N-APF +A-APF-C +T-DPM +V-2AAP-DPM +P-DSM +PREP +T-GSF +N-GSF +PREP +N-PRI +R-NPM +ADV +V-PAI-3P +N-NPM +P-GSM +PREP +T-ASM +N-ASM +CONJ +P-1NP +P-2AP +V-PMI-1P +T-ASF +PREP +T-APM +N-APM +V-2ADP-ASF +N-ASF +CONJ +D-ASF +T-NSM +N-NSM +V-RAI-3S +T-DPN +N-DPN +P-1GP +V-AAP-NSM +N-ASM +ADV +CONJ +PREP +T-DSM +N-DSM +T-DSM +A-DSM +V-RPI-3S +N-NSM +P-1GS +V-PAI-2S +P-2NS +P-1NS +ADV +V-RAI-1S +P-2AS +CONJ +CONJ +V-AAI-3S +P-ASM +PREP +A-GPM +ADV-N +V-PAP-ASM +V-PAN +PREP +N-ASF +ADV +V-RAI-3S-ATT +CONJ +V-FAI-1S +P-2DP +T-APN +A-APN +N-PRI +T-APN +A-APN +CONJ +CONJ +PREP +A-DSM +V-PAI-3S +PRT-N +V-FAI-2S +T-ASM +A-ASM +P-2GS +V-2AAN +N-ASF +CONJ +PRT +N-PRI +A-DSF +N-DSF +V-AAP-NSM +T-DSF +T-GSM +N-GSM +N-DSF +V-API-3S +CONJ +V-API-3S +PREP +T-APM +N-APM +P-GSM +CONJ +V-2AAI-3S +N-ASF +CONJ +R-ASM +T-NSM +N-NSM +V-AAI-3S +PRT-N +V-2AAI-3S +N-ASF +CONJ +A-NSN +V-PAM-3S +P-2DP +N-VPM +N-VPM +CONJ +PREP +D-GSM +P-2DP +N-NSF +N-GPF +V-PPI-3S +CONJ +PREP +A-GPN +R-GPN +PRT-N +V-AOI-2P-ATT +PREP +N-DSM +N-GSM +V-APN +PREP +D-DSM +A-NSM +T-NSM +V-PAP-NSM +V-PPI-3S +CONJ +V-PAM-2P +PRT-N +V-2AAS-3S +T-NSN +V-RPP-NSN-ATT +PREP +T-DPM +N-DPM +V-2AAM-2P +T-NPM +N-NPM +CONJ +V-AAM-2P +CONJ +V-APM-2P +CONJ +N-ASN +V-PNI-1S +P-1NS +PREP +T-DPF +N-DPF +P-2GP +N-ASN +R-ASN +PRT-N +PRT-N +V-AAS-2P +COND +X-NSM +V-PNS-3S +P-2DP +CONJ +V-PAP-GPM +P-GPM +V-IAI-3P +PREP +T-ASN +ADV +N-ASN +V-APN +P-DPM +T-APN +N-APN +D-APN +CONJ +V-APP-GSF +T-GSF +N-GSF +V-AAI-3P +A-NPM +T-GPM +A-GPM +CONJ +T-GPM +V-PNP-GPM +N-GPM +T-DSM +N-DSM +CONJ +T-DSM +N-DSM +R-NPM +V-PAP-NPM +P-DPM +V-IAI-3P +P-APM +V-PAN +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +T-DSN +V-PNP-DSN +N-DSN +ADV +A-NSF +T-NSF +N-NSF +V-API-3S +V-AAN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-NPM +A-NPM +V-2AAP-NPM +T-APM +N-APM +V-API-3P +N-GSM +CONJ +V-IAI-3P +T-DPN +PREP +N-GSM +V-PPP-DPN +V-PAP-NPM +PRT +V-ADP-NPM +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-2AAI-3P +V-IAI-3S +A-NSN +P-2DP +ADV-S +V-APN +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-PNI-2P +P-ASM +CONJ +PRT-N +V-PAI-2P +F-2APM +A-APM +T-GSF +A-GSF +N-GSF +V-2AMM-2S +V-PPI-1P +PREP +T-APN +N-APN +CONJ +ADV +V-RNI-3S +P-1DP +T-NSM +N-NSM +V-RAI-1S +P-2AS +PREP +N-ASN +N-GPN +T-GSN +V-PAN +P-2AS +PREP +N-ASF +ADV +A-GSN-S +T-GSF +N-GSF +CONJ +V-PAP-NPN +T-NPN +N-NPN +V-IAI-3P +CONJ +V-IAI-3P +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-AAI-3P +K-NPM +V-IAI-3P +V-RPP-NPM +PREP +N-ASF +A-ASF +CONJ +V-IPI-3S +T-NSM +N-NSM +T-GSM +N-GSM +PREP +A-GSF +T-GSF +N-GSF +CONJ +T-NPM +A-NPM +V-AAI-3P +T-APF +V-PNP-APF +N-APF +T-APF +A-APM +CONJ +T-APM +A-APM-S +T-GSF +N-GSF +CONJ +V-AAI-3P +N-ASM +PREP +T-ASM +N-ASM +CONJ +N-ASM +CONJ +V-2AAI-3P +P-APM +PREP +T-GPN +N-GPN +P-GPM +CONJ +T-NPM +V-AMP-NPM +T-ASM +N-ASM +T-GPM +N-GPM +PREP +P-APM +V-2AAI-3P +PREP +N-ASN +PRT +T-NPM +N-NPM +V-IPI-3P +N-GSF +CONJ +N-GSN +A-GSN +CONJ +V-2ADI-3S +PREP +N-DSN +PREP +T-ASN +P-ASN +V-2AAN +P-APM +PREP +T-ASF +N-ASF +T-GPM +A-GPM +CONJ +V-AAN +ADV +CONJ +V-AAN +PRT +A-GPM +CONJ +N-GPM +A-ASN +N-ASN +CONJ +T-NPM +V-AAP-NPM +A-NPM +V-AAI-3P +CONJ +V-AAI-3P +T-APF +N-APF +T-GPN +N-GPN +PREP +T-GPM +N-GPM +CONJ +PRT +A-ASM +N-ASM +V-AAI-3P +V-PNP-NPM +PREP +T-DSM +N-DSM +T-DSM +V-PAP-DSM +PREP +T-DSM +N-DSM +T-GSF +N-GSF +P-GSM +V-PAP-DSM +N-APN +CONJ +N-APN +V-PNN +PREP +T-GPF +N-GPF +P-GPM +CONJ +V-API-3S +T-NSN +N-NSN +T-GSF +N-GSF +CONJ +PRT +T-NPM +V-IAI-3P +PREP +T-DPM +A-DPM +CONJ +T-NPM +PREP +T-DPM +N-DPM +CONJ +ADV +V-2ADI-3S +N-NSF +T-GPN +PRT +N-GPN +CONJ +A-GPM +PREP +T-DPM +N-DPM +P-GPM +V-AAN +CONJ +V-AAN +P-APM +V-2AAP-NPM +V-2AAI-3P +PREP +T-APF +N-APF +T-GSF +N-GSF +N-ASF +CONJ +N-ASF +CONJ +T-ASF +A-ASF +ADV-K +V-PMP-NPM +V-IAI-3P +CONJ +X-NSM +N-NSM +A-NSM +T-DPM +N-DPM +PREP +N-DPN +V-INI-3S +A-NSM +PREP +N-GSF +N-GSF +P-GSM +R-NSM +ADV-N +V-AAI-3S +D-NSM +V-IAI-3S +T-GSM +N-GSM +V-PAP-GSM +R-NSM +V-AAP-NSM +P-DSM +CONJ +V-2AAP-NSM +CONJ +V-PAI-3S +N-ASF +T-GSN +V-APN +V-2AAI-3S +A-DSF +N-DSF +V-2AAM-2S +PREP +T-APM +N-APM +P-2GS +A-NSM +CONJ +V-ADI-3S +CONJ +V-IAI-3S +PRT +T-NPM +N-NPM +V-2AAP-NPM +R-ASN +V-AAI-3S +N-NSM +V-AAI-3P +T-ASF +N-ASF +P-GPM +ADV +V-PAP-NPM +T-NPM +N-NPM +V-APP-NPM +N-DPM +V-2AAI-3P +PREP +P-1AP +PRT +V-IAI-3P +T-ASM +N-ASM +N-ASM +CONJ +T-ASM +N-ASM +N-ASM +CONJ +P-NSM +V-IAI-3S +T-NSM +V-PNP-NSM +T-GSM +N-GSM +PRT +T-NSM +N-NSM +T-GSM +N-GSM +T-GSM +V-PAP-GSM +PREP +T-GSF +N-GSF +N-APM +CONJ +N-APN +PREP +T-APM +N-APM +V-AAP-NSM +PREP +T-DPM +N-DPM +V-IAI-3S +V-PAN +CONJ +V-AAP-NPM +T-NPM +N-NPM +N-NSM +CONJ +N-NSM +V-AAP-NPM +T-APN +N-APN +F-3GPM +V-AAI-3P +PREP +T-ASM +N-ASM +V-PAP-NPM +CONJ +V-PAP-NPM +N-VPM +I-ASN +D-APN +V-PAI-2P +CONJ +P-1NP +A-NPM +P-2DP +N-NPM +V-PAI-1P +V-PMP-NPM +P-2AP +PREP +D-GPN +T-GPN +A-GPN +V-PAN +PREP +N-ASM +V-PAP-ASM +R-NSM +V-AAI-3S +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +A-APN +T-APN +PREP +P-DPM +R-NSM +PREP +T-DPF +V-RNP-DPF +N-DPF +V-AAI-3S +A-APN +T-APN +N-APN +V-PNN +T-DPF +N-DPF +P-GPM +CONJ +PRT-N +A-ASM +F-3ASM +V-AAI-3S +V-PAP-NSM +ADV +P-2DP +N-APM +V-PAP-NSM +CONJ +N-APM +A-APM +V-PAP-NSM +N-GSF +CONJ +N-GSF +T-APF +N-APF +P-2GP +CONJ +D-APN +V-PAP-NPM +ADV +V-AAI-3P +T-APM +N-APM +T-GSN +PRT-N +V-PAN +P-DPM +CONJ +V-2AAI-3P +PREP +N-GSF +CONJ +N-GSN +A-NPM +CONJ +V-AAP-NPM +T-APM +N-APM +CONJ +V-AAP-NPM +T-ASM +N-ASM +V-IAI-3P +ADV +T-GSF +N-GSF +V-PAP-NPM +P-ASM +V-RAN +CONJ +V-AAP-GPM +T-GPM +N-GPM +P-ASM +V-2AAP-NSM +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +T-DSF +ADV +V-2AAI-3S +PREP +T-DSM +N-DSM +PREP +N-ASF +PRT +V-PMP-NPM +T-ASF +N-ASF +D-ASF +CONJ +V-AAP-NPM +A-APM +V-AAI-3P +PREP +T-ASF +N-ASF +CONJ +PREP +N-ASN +CONJ +PREP +N-ASF +V-PAP-NPM +T-APF +N-APF +T-GPM +N-GPM +V-PAP-NPM +V-PAN +T-DSF +N-DSF +CONJ +CONJ +V-PAI-3S +PREP +A-GPF +N-GPF +P-1AP +V-2AAN +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-AAP-NPM +P-DPM +PREP +N-ASF +A-APM-C +V-ADP-NPM +PREP +N-GPF +V-2AMI-3P +P-APM +T-DSM +N-DSM +PREP +R-ASM +V-LAI-3P +CONJ +V-2AAP-NPM +T-ASF +N-ASF +V-2AAI-3P +PREP +T-ASF +N-ASF +CONJ +V-AAP-NPM +PREP +N-DSF +T-ASM +N-ASM +V-2AAI-3P +PREP +N-ASF +ADV-K +V-AAI-3P +PREP +N-ASF +ADV +V-IAI-3P +V-RPP-NPM +T-DSF +N-DSF +T-GSM +N-GSM +PREP +T-ASN +N-ASN +R-ASN +V-AAI-3P +CONJ +V-2ADP-NPM +CONJ +V-2AAP-NPM +T-ASF +N-ASF +V-IAI-3P +K-APN +V-AAI-3S +T-NSM +N-NSM +PREP +P-GPM +CONJ +CONJ +V-AAI-3S +T-DPN +N-DPN +N-ASF +N-GSF +CONJ +V-IAI-3P +N-ASM +PRT-N +A-ASM +PREP +T-DPM +N-DPM +CONJ +X-NPM +V-2AAP-NPM +PREP +T-GSF +N-GSF +V-IAI-3P +T-APM +N-APM +CONJ +COND +PRT-N +V-APS-2P +T-DSN +N-DSN +T-DSN +N-GSM +PRT-N +V-PNI-2P +V-APN +CONJ +V-2ADP-GSF +N-GSF +CONJ +N-GSF +PRT-N +A-GSF +T-DSM +N-DSM +CONJ +T-DSM +N-DSM +PREP +P-APM +V-AAI-3P +V-PAN +N-ASM +CONJ +N-ASM +CONJ +X-APM +A-APM +PREP +P-GPM +PREP +T-APM +N-APM +CONJ +A-APM-C +PREP +N-PRI +PREP +T-GSN +N-GSN +D-GSN +PRT +CONJ +T-NPM +V-APP-NPM +PREP +T-GSF +N-GSF +V-INI-3P +T-ASF +PRT +N-ASF +CONJ +N-ASF +V-PNP-NPM +T-ASF +N-ASF +T-GPN +N-GPN +CONJ +V-IAI-3P +N-ASF +A-ASF +A-DPM +T-DPM +N-DPM +CONJ +V-2ADP-NPM +PREP +N-APN +V-API-3P +PREP +T-GSF +N-GSF +CONJ +T-GPM +N-GPM +CONJ +T-GPM +A-GPM-C +PRT +V-AAI-3P +K-APN +T-NSM +N-NSM +V-AAI-3S +PREP +P-GPM +CONJ +V-2AAI-3P +X-NPM +T-GPM +PREP +T-GSF +N-GSF +T-GPM +N-GPM +V-RAP-NPM +V-PAP-NPM +CONJ +V-PAI-3S +V-PAN +P-APM +PRT +V-PAN +V-PAN +T-ASM +N-ASM +N-GSM +PRT +V-API-3P +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +V-2AAN +PREP +T-GSM +N-GSM +D-GSM +CONJ +A-GSF +N-GSF +V-2ADP-GSF +V-2AAP-NSM +N-NSM +V-2AAI-3S +PREP +P-APM +N-VPM +N-VPM +P-2NP +V-PNI-2P +CONJ +PREP +N-GPF +A-GPF +PREP +P-2DP +V-AMI-3S +T-NSM +N-NSM +PREP +T-GSN +N-GSN +P-1GS +V-AAN +T-APN +N-APN +T-ASM +N-ASM +T-GSN +N-GSN +CONJ +V-AAN +CONJ +T-NSM +N-NSM +N-NSM +V-AAI-3S +P-DPM +V-2AAP-NSM +T-ASN +N-ASN +T-ASN +A-ASN +ADV +CONJ +P-1DP +CONJ +A-ASN-N +V-AAI-3S +ADV +PRT +P-1GP +CONJ +P-GPM +T-DSF +N-DSF +V-AAP-NSM +T-APF +N-APF +P-GPM +CONJ +ADV +I-ASN +V-PAI-2P +T-ASM +N-ASM +V-2AAN +N-ASM +PREP +T-ASM +N-ASM +T-GPM +N-GPM +R-ASM +V-AAN +CONJ-N +T-NPM +N-NPM +P-1GP +CONJ-N +P-1NP +V-AAI-1P +CONJ +V-PAI-1P +PREP +T-GSF +N-GSF +T-GSM +N-GSM +N-GSM +V-APN +PREP +R-ASM +N-ASM +D-NPM-K +CONJ +V-AAI-3S +A-NSN +T-NSN +N-NSN +CONJ +V-IAI-3P +N-GSM +CONJ +N-GSM +V-PNP-GPM +N-APN +CONJ +N-APN +K-APN +V-AAI-3S +T-NSM +N-NSM +PREP +T-DPN +N-DPN +PREP +P-GPM +CONJ +PREP +T-ASN +V-AAN +P-APM +V-ADI-3S +N-NSM +V-PAP-NSM +N-VPM +N-VPM +V-AAM-2P +P-1GS +N-PRI +V-ADI-3S +ADV +ADV-S +T-NSM +N-NSM +V-ADI-3S +V-2AAN +PREP +N-GPN +N-ASM +T-DSN +N-DSN +P-GSM +CONJ +D-DSN +V-PAI-3P +T-NPM +N-NPM +T-GPM +N-GPM +ADV +V-RPI-3S +PREP +D-APN +V-FAI-1S +CONJ +V-FAI-1S +T-ASF +N-ASF +N-PRI +T-ASF +V-RAP-ASF +CONJ +T-APN +V-RPP-APN +P-GSF +V-FAI-1S +CONJ +V-FAI-1S +P-ASF +ADV +PRT +V-AAS-3P +T-NPM +A-NPM +T-GPM +N-GPM +T-ASM +N-ASM +CONJ +A-NPN +T-NPN +N-NPN +PREP +R-APM +V-RPI-3S +T-NSN +N-NSN +P-1GS +PREP +P-APM +V-PAI-3S +N-NSM +V-PAP-NSM +D-APN +A-APN +PREP +N-GSM +CONJ +P-1NS +V-PAI-1S +PRT-N +V-PAN +T-DPM +PREP +T-GPN +N-GPN +V-PAP-DPM +PREP +T-ASM +N-ASM +CONJ +V-AAN +P-DPM +T-GSN +V-PMN +T-GPN +N-GPN +T-GPN +N-GPN +CONJ +T-GSF +N-GSF +CONJ +A-GSN +CONJ +T-GSN +N-GSN +CONJ +N-NSM +PREP +N-GPF +A-GPF +PREP +N-ASF +T-APM +V-PAP-APM +P-ASM +V-PAI-3S +PREP +T-DPF +N-DPF +PREP +A-ASN +N-ASN +V-PPP-NSM +ADV +V-AAI-3S +T-DPM +N-DPM +CONJ +T-DPM +A-DPM-C +PREP +A-DSF +T-DSF +N-DSF +V-AMP-APM +N-APM +PREP +P-GPM +V-AAN +PREP +N-ASF +PREP +T-DSM +N-DSM +CONJ +N-DSM +N-ASM +T-ASM +V-PPP-ASM +N-ASM +CONJ +N-ASM +N-APM +V-PNP-APM +PREP +T-DPM +N-DPM +V-AAP-NPM +PREP +N-GSF +P-GPM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +N-NPM +T-DPM +PREP +T-ASF +N-ASF +CONJ +N-ASF +CONJ +N-ASF +N-DPM +T-DPM +PREP +N-GPN +V-PAN +CONJ +V-AAI-1P +CONJ +X-NPM +PREP +P-1GP +V-AAI-3P +P-2AP +N-DPM +V-PAP-NPM +T-APF +N-APF +P-2GP +R-DPM +PRT-N +V-AMI-1P +V-AAI-3S +P-1DP +V-2ADP-DPM +ADV +V-AMP-APM +N-APM +V-AAN +PREP +P-2AP +PREP +T-DPM +A-DPM +P-1GP +N-DSM +CONJ +N-DSM +N-DPM +V-RAP-DPM +T-APF +N-APF +P-GPM +PREP +T-GSN +N-GSN +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +V-RAI-1P +N-ASM +CONJ +N-ASM +CONJ +P-APM +PREP +N-GSM +V-PAP-APM +T-APN +P-APN +CONJ +V-AAI-3S +T-DSN +N-DSN +T-DSN +A-DSN +CONJ +P-1DP +A-ASN-N +A-ASN-C +N-ASN +V-PMN +P-2DP +ADV +D-GPN +T-GPN +ADV +V-PMN +A-GPN +CONJ +N-GSN +CONJ +A-GPN +CONJ +N-GSF +PREP +R-GPN +V-PAP-NPM +F-2APM +ADV +V-FAI-2P +V-RPM-2P +PRT +CONJ +T-NPM +V-APP-NPM +V-2AAI-3P +PREP +N-ASF +CONJ +V-2AAP-NPM +T-ASN +N-ASN +V-AAI-3P +T-ASF +N-ASF +CONJ +V-2AAP-NPM +V-2AOI-3P +PREP +T-DSF +N-DSF +PRT +N-NSM +CONJ +N-NSM +CONJ +P-NPM +N-NPM +V-PAP-NPM +PREP +N-GSM +A-GSM +V-AAI-3P +T-APM +N-APM +CONJ +V-AAI-3P +CONJ +V-AAP-NPM +N-ASM +V-API-3P +PREP +N-GSF +PREP +T-GPM +N-GPM +PREP +T-APM +V-AAP-APM +P-APM +CONJ +N-NSM +CONJ +N-NSM +V-IAI-3P +PREP +N-DSF +V-PAP-NPM +CONJ +V-PMP-NPM +PREP +CONJ +A-GPM +A-GPM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +PREP +X-APF +N-APF +V-2AAI-3S +PREP +N-ASM +N-NSM +PRT +V-AAP-NPM +V-ADS-1P +T-APM +N-APM +PREP +N-ASF +A-ASF +PREP +R-DPF +V-AAI-1P +T-ASM +N-ASM +T-GSM +N-GSM +ADV-I +V-PAI-3P +CONJ +N-NSM +V-INI-3S +V-2AAN +CONJ +T-ASM +N-ASM +T-ASM +V-PPP-ASM +N-ASM +CONJ +N-NSM +V-IAI-3S +T-ASM +V-2AAP-ASM +PREP +P-GPM +PREP +N-GSF +CONJ +PRT-N +V-2AAP-ASM +P-DPM +PREP +T-ASN +N-ASN +PRT-N +V-PAN +D-ASM +CONJ +V-2ADI-3S +N-NSM +CONJ +V-APN +P-APM +PREP +C-GPM +PRT +T-ASM +N-ASM +V-2AAP-ASM +T-ASM +N-ASM +V-AAN +PREP +N-ASF +CONJ +N-NSM +V-AMP-NSM +N-ASM +V-2AAI-3S +V-APP-NSM +T-DSF +N-DSF +T-GSM +N-GSM +PREP +T-GPM +N-GPM +CONJ +V-INI-3S +T-ASF +N-ASF +CONJ +N-ASF +V-PAP-NSM +T-APF +N-APF +CONJ +V-AAI-3S +CONJ +PREP +N-ASF +CONJ +PREP +N-ASF +CONJ +V-2AMM-2S +V-IAI-3S +ADV +N-NSM +X-NSM +N-DSN +N-NSM +N-NSM +N-GSF +A-GSF +A-GSF +CONJ +N-GSM +N-GSM +R-NSM +V-IPI-3S +PREP +T-GPM +PREP +N-DPN +CONJ +N-DSN +N-GPM +V-AAI-3S +T-NSM +N-NSM +D-ASM +PREP +P-DSM +V-2AAN +CONJ +V-2AAP-NSM +V-2AAI-3S +P-ASM +PREP +T-APM +A-APM +T-APM +V-PAP-APM +PREP +T-DPM +N-DPM +D-DPM +CONJ +V-2LAI-3P +A-NPM +CONJ +N-NSM +T-NSM +N-NSM +P-GSM +V-IAI-3S +CONJ +ADV +V-INI-3P +T-APF +N-APF +V-IAI-3P +P-DPM +V-PAN +T-APN +N-APN +T-APN +V-RPP-APN +PREP +T-GPM +N-GPM +CONJ +A-GPM-C +T-GPM +PREP +N-DPN +PRT +CONJ +T-NPF +N-NPF +V-IPI-3P +T-DSF +N-DSF +CONJ +V-IAI-3P +T-DSM +N-DSM +PREP +N-ASF +CONJ +V-2AAI-3P +T-ASF +N-ASF +CONJ +A-ASF +N-ASF +V-APP-NPM +PREP +T-GSN +A-GSN +N-GSN +V-AAN +T-ASM +N-ASM +PREP +T-DSF +N-DSF +CONJ +V-2AAP-NPM +PREP +T-ASF +N-ASF +V-IAI-3P +PREP +T-ASF +N-ASF +V-AON +CONJ +PRT-N +V-AAI-3S +P-APM +T-NSN +N-NSN +N-GSM +CONJ +V-2AAP-NPM +T-ASF +N-ASF +V-2AAI-3P +PREP +N-ASF +CONJ +N-NSN +PREP +N-GSF +T-DSM +N-DSM +V-API-3S +N-NSM +N-NSM +X-NSM +V-IAI-3S +V-RAP-NSM +CONJ +V-PAP-NSM +P-ASM +CONJ +V-PAP-NSM +V-2AAP-NSM +PREP +N-ASF +V-AAM-2S +P-1DP +CONJ +ADV +T-ASN +N-ASN +V-2AAI-3S +ADV +V-AAI-1P +V-2AAN +PREP +N-ASF +V-PAP-NPM +CONJ +V-RNI-3S +T-NSM +N-NSM +P-1AP +V-AMN +P-APM +CONJ +V-APP-NPM +PREP +N-GSF +V-AAI-1P +PREP +N-ASF +CONJ +T-DSF +V-PAP-DSF +PREP +A-ASF +N-ASF +ADV-K +PREP +N-ASM +R-NSF +V-PAI-3S +A-NSF-S +T-GSF +N-GSF +N-GSF +N-NSF +N-NSF +CONJ +V-IAI-1P +V-PAP-NPM +PREP +D-DSF +T-DSF +N-DSF +N-APF +X-APF +PRT +T-DSF +N-DSF +T-GPN +N-GPN +V-2AAI-1P +ADV +T-GSF +N-GSF +PREP +N-ASM +ADV +N-ASF +V-PAN +V-IAI-1P +CONJ +V-AAP-NPM +V-IAI-1P +T-DPF +V-2AAP-DPF +N-DPF +CONJ +X-NSF +N-NSF +N-DSN +N-NSF +N-NSF +N-GSF +N-GPN +V-PNP-NSF +T-ASM +N-ASM +V-IAI-3S +R-GSF +T-ASF +N-ASF +T-NSM +N-NSM +V-AAI-3S +V-PAN +T-DPN +V-PPP-DPN +PREP +N-GSM +CONJ +ADV +V-API-3S +CONJ +T-NSM +N-NSM +P-GSF +V-AAI-3S +V-PAP-NSF +COND +V-RAI-2P +P-1AS +A-ASF +T-DSM +N-DSM +V-PAN +V-2AAP-NPM +PREP +T-ASM +N-ASM +P-1GS +V-PAM-2P +CONJ +V-ADI-3S +P-1AP +CONJ +V-2ADI-3S +V-PNP-GPM +P-1GP +PREP +T-ASF +N-ASF +N-ASF +X-ASF +V-PAP-ASF +N-ASN +N-ASM +V-AAN +P-1DP +R-NSF +N-ASF +A-ASF +V-IAI-3S +T-DPM +N-DPM +P-GSF +V-PNP-NSF +D-NSF +V-PAP-NSF +T-DSM +N-DSM +CONJ +P-1DP +V-IAI-3S +V-PAP-NSF +D-NPM +T-NPM +N-NPM +N-NPM +T-GSM +N-GSM +T-GSM +A-GSM-S +V-PAI-3P +R-NPM +V-PAI-3P +P-2DP +N-ASF +N-GSF +CONJ +D-ASN +V-IAI-3S +PREP +A-APF +N-APF +CONJ +N-NSM +V-AOP-NSM +CONJ +V-AAP-NSM +T-DSN +N-DSN +V-2AAI-3S +V-PAI-1S +P-2DS +PREP +N-DSN +N-GSM +N-GSM +V-2AAN +PREP +P-GSF +CONJ +V-2AAI-3S +P-DSF +T-DSF +N-DSF +CONJ +T-NPM +N-NPM +P-GSF +V-2AAP-NPM +CONJ +V-2AAI-3S +T-NSF +N-NSF +T-GSF +N-GSF +P-GPM +V-2ADP-NPM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +V-AAI-3P +PREP +T-ASF +N-ASF +PREP +T-APM +N-APM +CONJ +V-2AAP-NPM +P-APM +T-DPM +N-DPM +V-2AAI-3P +D-NPM +T-NPM +N-NPM +V-PAI-3P +P-1GP +T-ASF +N-ASF +A-NPM +V-PAP-NPM +CONJ +V-PAI-3P +N-APN +R-APN +V-PNN +CONJ-N +V-PAN +PRT-N +V-PAI-3S +P-1DP +A-DPM +V-PAP-DPM +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +P-GPM +CONJ +T-NPM +N-NPM +V-AAP-NPM +P-GPM +T-APN +N-APN +V-IAI-3P +V-PAN +CONJ +V-2AAP-NPM +P-DPM +A-APF +N-APF +V-2AAI-3P +PREP +N-ASF +V-AAP-NPM +T-DSM +N-DSM +ADV +V-PAN +P-APM +R-NSM +N-ASF +D-ASF +V-2AAP-NSM +V-2AAI-3S +P-APM +PREP +T-ASF +A-ASF-C +N-ASF +CONJ +T-APM +N-APM +P-GPM +V-ADI-3S +PREP +T-ASN +N-ASN +CONJ +PREP +T-ASN +N-ASN +N-NSM +CONJ +N-NSM +V-PNP-NPM +V-IAI-3P +T-ASM +N-ASM +CONJ +V-INI-3P +P-GPM +T-NPM +N-NPM +CONJ +ADV +N-NSM +A-NSM +V-2ADI-3S +CONJ +V-APN +T-APN +N-APN +T-GSN +N-GSN +CONJ +V-API-3P +ADV +T-NPF +N-NPF +A-NPF +CONJ +A-GPM +T-NPN +N-NPN +V-API-3S +CONJ +T-NSM +N-NSM +A-NSM +V-2ADP-NSM +CONJ +V-2AAP-NSM +V-RPP-APF +T-APF +N-APF +T-GSF +N-GSF +V-AMP-NSM +T-ASF +N-ASF +V-IAI-3S-ATT +F-3ASM +V-PAN +V-PAP-NSM +V-2RAN +T-APM +N-APM +CONJ +V-AAI-3S +N-NSM +A-DSF +N-DSF +V-PAP-NSM +A-ASN-N +A-ASN +V-AAS-2S +F-2DSM +CONJ +A-NPM +V-PAI-1P +ADV +CONJ +V-AAP-NSM +N-APN +V-AAI-3S +CONJ +A-NSM +V-2ADP-NSM +V-2AAI-3S +T-DSM +N-DSM +CONJ +N-DSM +CONJ +V-2AAP-NSM +P-APM +ADV +V-IAI-3S +N-VPM +I-ASN +P-1AS +V-PAN +V-PAI-3S +CONJ +V-APS-1S +CONJ +T-NPM +V-2AAI-3P +V-AAM-2S +PREP +T-ASM +N-ASM +N-ASM +CONJ +V-FPI-2S +P-2NS +CONJ +T-NSM +N-NSM +P-2GS +CONJ +V-AAI-3P +P-DSM +T-ASM +N-ASM +T-GSM +N-GSM +PREP +A-DPM +T-DPM +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-2AAP-NSM +P-APM +PREP +D-DSF +T-DSF +N-DSF +T-GSF +N-GSF +V-AAI-3S +PREP +T-GPF +N-GPF +CONJ +V-API-3S +P-NSM +CONJ +T-NPM +P-GSM +A-NPM +ADV +PRT +V-2AAP-NSM +P-APM +PREP +T-ASM +N-ASM +V-AAI-3S +N-ASF +CONJ +V-ADI-3S +ADV +V-RAP-NSM +T-DSM +N-DSM +CONJ +N-GSF +V-2ADP-GSF +V-AAI-3P +T-NPM +N-NPM +T-APM +N-APM +V-PAP-NPM +V-AAM-2S +T-APM +N-APM +D-APM +CONJ +V-AAI-3S +T-NSM +N-NSM +T-APM +N-APM +D-APM +PREP +T-ASM +N-ASM +CONJ +V-RAI-3P +T-NPM +N-NPM +CONJ +V-APS-2P +CONJ +ADV +V-2AAP-NPM +V-PNM-2P +PREP +N-DSF +CONJ +T-NSM +N-NSM +V-IAI-3S +PREP +P-APM +V-AAP-NPM +P-1AP +A-DSF +A-APM +N-APM +A-APM +V-PAP-APM +V-2AAI-3P +PREP +N-ASF +CONJ +ADV +ADV +P-1AP +V-PAI-3P +CONJ +PRT-N +CONJ +V-2AAP-NPM +P-NPM +P-1AP +V-2AAM-3P +CONJ +V-AAI-3P +T-DPM +N-DPM +T-NPM +N-NPM +T-APN +N-APN +D-APN +CONJ +V-AOI-3P +V-AAP-NPM +CONJ +A-NPM +V-PAI-3P +CONJ +V-2AAP-NPM +V-AAI-3P +P-APM +CONJ +V-2AAP-NPM +V-IAI-3P +V-2AAN +PREP +T-GSF +N-GSF +CONJ +V-2AAP-NPM +PREP +T-GSF +N-GSF +V-2AAI-3P +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NPM +V-AAI-3P +T-APM +N-APM +CONJ +V-2AAI-3P +CONJ +V-AAP-NPM +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +V-2AAI-3P +PREP +N-ASF +ADV +V-IAI-3S +N-NSF +T-GPM +A-GPM +CONJ +PREP +T-ASN +V-2RAP-ASN +T-DSM +N-DSM +V-2AAI-3S +PREP +P-APM +CONJ +PREP +N-APN +A-APN +V-ADI-3S +P-DPM +PREP +T-GPF +N-GPF +V-PAP-NSM +CONJ +V-PMP-NSM +CONJ +V-IAI-3S +T-ASM +N-ASM +V-2AAN +CONJ +V-2AAN +PREP +A-GPM +CONJ +CONJ +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +N-NSM +R-ASM +P-1NS +V-PAI-1S +P-2DP +CONJ +X-NPM +PREP +P-GPM +V-API-3P +CONJ +V-API-3P +T-DSM +N-DSM +CONJ +T-DSM +N-DSM +PRT +T-GPM +V-PNP-GPM +N-GPM +N-NSN +A-NSN +PRT +N-GPF +T-GPF +A-GPF-S +PRT-N +A-NPF +CONJ +T-NPM +A-NPM +V-AAP-NPM +CONJ +V-2AMP-NPM +T-GPM +A-GPM +N-APM +X-APM +A-APM +CONJ +V-AAP-NPM +V-IAI-3P +T-ASF +N-ASF +CONJ +V-2AAP-NPM +T-DSF +N-DSF +N-GSM +V-IAI-3P +P-APM +V-2AAN +PREP +T-ASM +N-ASM +CONJ +PRT-N +V-2AAP-NPM +P-APM +V-IAI-3P +N-ASM +CONJ +X-APM +N-APM +PREP +T-APM +N-APM +V-PAP-NPM +CONJ +T-NPM +T-ASF +N-ASF +V-AAP-NPM +D-NPM +CONJ +ADV +V-PAI-3P +R-APM +V-RNI-3S +N-NSM +CONJ +D-NPM +A-NPM +PREP +T-GPN +N-GPN +N-GSM +V-PAI-3P +N-ASM +A-ASM +V-PAN +N-ASM +V-PAP-NPM +CONJ +V-AAI-3P +T-ASM +N-ASM +CONJ +T-APM +N-APM +V-PAP-APM +D-APN +CONJ +V-2AAP-NPM +T-ASN +A-ASN +PREP +T-GSM +N-GSM +CONJ +T-GPM +A-GPM +V-AAI-3P +P-APM +CONJ +T-NPM +N-NPM +ADV +PREP +N-GSF +V-AAI-3P +PRT +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +PREP +N-ASF +R-NPM +V-2ADP-NPM +PREP +T-ASF +N-ASF +T-GPM +A-GPM +V-IAI-3P +CONJ +D-NPM +V-IAI-3P +A-NPM-C +T-GPM +PREP +N-DSF +R-NPM +V-ADI-3P +T-ASM +N-ASM +PREP +A-GSF +N-GSF +T-ASN +PREP +N-ASF +V-PAP-NPM +T-APF +N-APF +COND +V-PAO-3S +D-NPN +ADV +PRT +CONJ +A-NPM +PREP +P-GPM +V-AAI-3P +CONJ +T-GPF +N-GPF +N-GPF +T-GPM +A-GPM +CONJ +N-GPM +PRT-N +A-NPM +CONJ +ADV +V-2AAI-3P +T-NPM +PREP +T-GSF +N-GSF +A-NPM +CONJ +CONJ +PREP +T-DSF +N-DSF +V-2API-3S +PREP +T-GSM +N-GSM +T-NSM +N-NSM +T-GSM +N-GSM +V-2AAI-3P +ADV-K +V-PAP-NPM +CONJ +V-PAP-NPM +T-APM +N-APM +CONJ +ADV +ADV +T-ASM +N-ASM +V-AAI-3P +T-NPM +N-NPM +V-PNN +ADV +PREP +T-ASF +N-ASF +PRT +V-AAI-3P +PRT +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +ADV +CONJ +T-NPM +V-PAP-NPM +T-ASM +N-ASM +V-2AAI-3P +ADV +N-GPF +CONJ +V-2AAP-NPM +N-ASF +PREP +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +CONJ +ADV +ADV-S +V-2AAS-3P +PREP +P-ASM +V-IAI-3P +CONJ +PREP +T-DPF +N-DPF +V-PNP-GSM +P-APM +T-GSM +N-GSM +V-IPI-3S +T-NSN +N-NSN +P-GSM +PREP +P-DSM +V-PAP-GSM +A-ASF +V-PAP-ASF +T-ASF +N-ASF +CONJ +PRT +V-INI-3S +PREP +T-DSF +N-DSF +T-DPM +A-DPM +CONJ +T-DPM +V-PNP-DPM +CONJ +PREP +T-DSF +N-DSF +PREP +A-ASF +N-ASF +PREP +T-APM +V-PAP-APM +CONJ +X-NPM +CONJ +T-GPM +N-GPM +CONJ +A-GPM +N-GPM +V-IAI-3P +P-DSM +CONJ +X-NPM +V-IAI-3P +PRT +V-PAO-3S +T-NSM +A-NSM +D-NSM +I-ASN +V-PAN +CONJ +T-NPM +V-PAI-3S +A-GPN +N-GPN +N-NSM +V-PAN +CONJ +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +V-IMI-3S +CONJ +V-2ADP-NPM +P-GSM +PREP +T-ASM +N-ASM +N-ASM +V-2AAI-3P +V-PAP-NPM +V-PNI-1P +V-2AAN +I-NSF +T-NSF +A-NSF +D-NSF +T-NSF +PREP +P-2GS +V-PPP-NSF +N-NSF +CONJ +V-PAP-APN +X-APN +V-PAI-2S +PREP +T-APF +N-APF +P-1GP +CONJ +V-PNI-1P +V-2AAN +I-NPN +V-PAN +V-PAI-3S +D-NPN +CONJ +A-NPM +A-NPM +CONJ +T-NPM +V-PAP-NPM +A-NPM +PREP +A-ASN-N +A-ASN +V-IAI-3P +PRT +V-PAN +X-ASN +PRT +V-PAN +X-ASN +A-ASN-C +CONJ +V-APP-NSM +N-NSM +PREP +A-DSN +T-GSM +N-GSM +N-GSM +V-IAI-3S +N-VPM +A-VPM +PREP +A-APN +ADV +A-APM-C +P-2AP +V-PAI-1S +CONJ +V-PNP-NSM +CONJ +V-PAP-NSM +T-APN +N-APN +P-2GP +V-2AAI-1S +CONJ +N-ASM +PREP +R-DSM +V-LPI-3S +A-DSM +N-DSM +CONJ +R-ASN +V-PAP-NPM +V-PAI-2P +D-ASN +P-1NS +V-PAI-1S +P-2DP +T-NSM +N-NSM +T-NSM +V-AAP-NSM +T-ASM +N-ASM +CONJ +A-APN +T-APN +PREP +P-DSM +D-NSM +N-GSM +CONJ +N-GSF +N-NSM +V-PAP-NSM +PRT-N +PREP +A-DPM +N-DPM +V-PAI-3S +CONJ-N +PREP +N-GPF +A-GPM +V-PPI-3S +V-PNP-NSM +X-GSN +P-NSM +V-PAP-NSM +A-DPN +N-ASF +CONJ +N-ASF +CONJ +T-APN +A-APN +PRT +V-AAI-3S +PREP +A-GSN +A-ASN +N-ASN +N-GPM +V-PAN +PREP +A-GSN +N-GSN +T-GSF +N-GSF +V-AAP-NSM +V-RPP-APM +N-APM +CONJ +T-APF +N-APF +T-GSF +N-GSF +P-GPM +V-PAN +T-ASM +N-ASM +COND +PRT-I +PRT +V-AAO-3P +P-ASM +CONJ +V-2AAO-3P +PRT +CONJ +PRT-N +ADV +PREP +A-GSM +A-GSM +P-1GP +V-PAP-ASM +CONJ +PREP +P-DSM +V-PAI-1P +CONJ +V-PPI-1P +CONJ +V-PAI-1P +ADV +CONJ +X-NPM +T-GPM +PREP +P-2AP +N-GPM +V-RAI-3P-ATT +CONJ +T-GSM +CONJ +N-NSN +V-PAI-1P +CONJ +V-PAP-NPM +N-NSN +T-GSM +N-GSM +PRT-N +V-PAI-1P +V-PAN +N-DSM +PRT +N-DSM +PRT +N-DSM +N-DSN +N-GSF +CONJ +N-GSF +N-GSM +T-ASN +A-ASN +V-PAN +A-ASN +PRT +CONJ +T-APM +N-APM +T-GSF +N-GSF +V-2AAP-NSM +T-NSM +N-NSM +T-APN +ADV +V-PAI-3S +T-DPM +N-DPM +A-APM +ADV +V-PAN +CONJ +V-AAI-3S +N-ASF +PREP +R-DSF +V-PAI-3S +V-PAN +T-ASF +N-ASF +PREP +N-DSF +PREP +N-DSM +R-DSM +V-AAI-3S +N-ASF +V-2AAP-NSM +A-DPM +V-AAP-NSM +P-ASM +PREP +A-GPM +CONJ +V-AAP-NPM +N-ASF +A-GPM +PRT +T-NPM +V-IAI-3P +CONJ +T-NPM +V-2AAI-3P +V-FDI-1P +P-2GS +PREP +D-GSN +CONJ +ADV +ADV +T-NSM +N-NSM +V-2AAI-3S +PREP +A-GSN +P-GPM +CONJ +X-NPM +N-NPM +V-APP-NPM +P-DSM +V-AAI-3P +PREP +R-DPM +CONJ +N-NSM +T-NSM +N-NSM +CONJ +N-NSF +N-DSN +N-NSF +CONJ +A-NPM +PREP +P-DPM +PREP +D-APN +V-APP-NSM +PREP +T-GPF +N-GPF +V-2AAI-3S +PREP +N-ASF +CONJ +V-2AAP-NSM +X-ASM +A-ASM +N-DSN +N-ASM +A-ASM +T-DSN +N-DSN +ADV +V-2RAP-ASM +PREP +T-GSF +N-GSF +CONJ +N-ASF +N-ASF +P-GSM +PREP +T-ASN +V-RAN +N-ASM +V-PPN +A-APM +T-APM +A-APM +PREP +T-GSF +N-GSF +V-2AAI-3S +P-DPM +CONJ +PREP +T-ASN +A-ASM +V-PAN +V-IAI-3S +PREP +P-DPM +CONJ +V-INI-3P +CONJ +V-IAI-3P +N-NPM +T-DSF +N-DSF +CONJ +V-INI-3S +PREP +T-DSF +N-DSF +PREP +A-ASN +N-ASN +V-IAI-3S +PRT +A-APM +CONJ +N-APM +CONJ +ADV +V-2AAI-3P +PREP +T-GSF +N-GSF +PRT +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-IPI-3S +T-DSM +N-DSM +T-NSM +N-NSM +V-PNP-NSM +T-DPM +A-DPM +V-PAN +T-ASM +N-ASM +N-ASM +CONJ +V-PMP-GPM +P-GPM +CONJ +V-PAP-GPM +V-AMP-NSM +T-APN +N-APN +V-2AAI-3S +PREP +P-APM +T-NSN +N-NSN +P-2GP +PREP +T-ASF +N-ASF +P-2GP +A-NSM +P-1NS +PREP +T-GSM +ADV +PREP +T-APN +N-APN +V-FDI-1S +CONJ +V-2AAP-NSM +ADV +V-2AAI-3S +PREP +N-ASF +X-GSM +N-DSN +N-GSM +N-GSM +V-PNP-GSM +T-ASM +N-ASM +R-GSM +T-NSF +N-NSF +V-IAI-3S +V-PAP-NSF +T-DSF +N-DSF +CONJ +N-NSM +T-NSM +N-NSM +V-AAI-3S +T-DSM +N-DSM +PREP +A-DSM +T-DSM +N-DSM +P-GSM +CONJ +A-NPM +T-GPM +A-GPM +V-PAP-NPM +V-IAI-3P +CONJ +V-IPI-3P +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +N-DSF +PREP +N-GSN +T-DSM +N-DSM +PRT-N +V-PNM-2S +CONJ +V-PAM-2S +CONJ +PRT-N +V-AAS-2S +CONJ +P-1NS +V-PAI-1S +PREP +P-2GS +CONJ +A-NSM-N +V-FMI-3S +P-2DS +T-GSN +V-AAN +P-2AS +CONJ +N-NSM +A-NSM +V-PAI-3S +P-1DS +PREP +T-DSF +N-DSF +D-DSF +CONJ +V-AAI-3S +N-ASM +CONJ +N-APM +A-NUI +V-PAP-NSM +PREP +P-DPM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +N-GSM +V-PAP-GSM +N-GSM +T-GSF +N-GSF +V-2AAI-3P +ADV +T-NPM +A-NPM +T-DSM +N-DSM +CONJ +V-2AAI-3P +P-ASM +PREP +T-ASN +N-ASN +V-PAP-NPM +CONJ +PREP +T-ASM +N-ASM +V-PAI-3S +D-NSM +T-APM +N-APM +V-PNN +T-ASM +N-ASM +CONJ +V-PAP-GSM +T-GSM +N-GSM +V-PAN +T-ASN +N-ASN +V-2AAI-3S +T-NSM +N-NSM +PREP +T-APM +A-APM +PRT +COND +V-IAI-3S +N-NSN +X-NSN +PRT +N-NSN +A-NSN +INJ +A-VPM +PRT +PREP +N-ASM +V-2AMI-1S +P-2GP +CONJ +COND +V-PAI-3S +N-NPN +PREP +N-GSM +CONJ +N-GPN +CONJ +N-GSM +T-GSM +PREP +P-2AP +V-FDI-2P +P-NPM +PRT-N +V-PNI-1S +P-1NS +N-NSM +D-GPN +V-PAN +CONJ +V-AAI-3S +P-APM +PREP +T-GSN +N-GSN +CONJ +A-NPM +V-2ADP-NPM +N-ASM +T-ASM +N-ASM +V-IAI-3P +PREP +T-GSN +N-GSN +CONJ +A-NSN-N +D-GPN +T-DSM +N-DSM +V-IAI-3S +CONJ +T-NSM +N-NSM +ADV +V-AAP-NSM +N-APF +A-APF +T-DPM +N-DPM +V-AMP-NSM +V-IAI-3S +PREP +T-ASF +N-ASF +CONJ +PREP +P-DSM +N-NSF +CONJ +N-NSM +V-AMP-NSM +PREP +N-DPF +T-ASF +N-ASF +CONJ +V-IAI-3S +N-ASF +CONJ +V-AAI-3P +PREP +N-ASF +D-APM-K +V-2AAI-3S +ADV +CONJ +P-NSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-ADI-3S +T-DPM +A-DPM +CONJ +V-PAP-GPM +P-GPM +PREP +A-ASM-C +N-ASM +V-AAN +PRT-N +V-AAI-3S +CONJ +V-AMP-NSM +CONJ +V-2AAP-NSM +ADV +V-FAI-1S +PREP +P-2AP +T-GSM +N-GSM +V-PAP-GSM +V-API-3S +PREP +T-GSF +N-GSF +CONJ +V-2AAP-NSM +PREP +N-ASF +V-2AAP-NSM +CONJ +V-ADP-NSM +T-ASF +N-ASF +V-2AAI-3S +PREP +N-ASF +CONJ +V-AAP-NSM +N-ASM +X-ASM +V-2AAI-3S +V-PNP-NSM +ADV +T-ASF +A-ASF +N-ASF +CONJ +N-ASF +V-PAP-NSM +A-APM +T-APM +N-APM +CONJ +A-NSM +X-NSM +N-NSM +N-DSN +N-NSM +T-DSN +N-DSN +N-NSM +A-NSM +A-NSM +V-PAP-NSM +PREP +T-DPF +N-DPF +V-AAI-3S +PREP +N-ASF +D-NSM +V-IAI-3S +V-RPP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-PAP-NSM +T-DSN +N-DSN +V-IAI-3S +CONJ +V-IAI-3S +ADV +T-APN +PREP +T-GSM +N-GSM +V-PNP-NSM +ADV +T-ASN +N-ASN +N-GSM +PRT +D-NSM +V-ADI-3S +V-PNN +PREP +T-DSF +N-DSF +CONJ +V-AAP-NPM +P-GSM +N-NSF +CONJ +N-NSM +V-2AMI-3P +P-ASM +CONJ +ADV-C +P-DSM +V-2AMI-3P +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-PNP-GSM +P-GSM +V-2AAN +PREP +T-ASF +N-ASF +V-AMP-NPM +T-NPM +N-NPM +V-AAI-3P +T-DPM +N-DPM +V-ADN +P-ASM +R-NSM +V-2ADP-NSM +V-2AMI-3S +A-ASN +T-DPM +V-RAP-DPM +PREP +T-GSF +N-GSF +CONJ +ADV +T-DPM +A-DPM +V-INI-3S +A-DSF +V-PAP-NSM +PREP +T-GPF +N-GPF +V-PAN +T-ASM +N-ASM +N-ASM +CONJ +V-2ADI-3S +PREP +T-DSN +T-ASM +N-ASM +V-PAN +PREP +N-DSF +N-ASM +V-2AAP-ASM +T-APN +A-APN-C +N-APN +V-2AAN +PREP +N-ASF +CONJ +V-2AAN +X-APM +N-APM +PRT +V-2AAI-3S +PREP +P-APM +COND +N-ASN +A-ASN +V-2AAI-2P +V-AAP-NPM +CONJ +T-NPM +PREP +P-ASM +CONJ +CONJ-N +V-AAI-1P +COND +N-NSN +A-NSN +V-PAI-3S +PRT +V-2AAI-3S +CONJ +PREP +I-ASN +V-API-2P +CONJ +T-NPM +V-2AAI-3P +PREP +T-ASN +N-GSM +N-ASN +CONJ +V-2AAI-3S +N-NSM +N-NSM +V-AAI-3S +N-ASN +N-GSF +T-DSM +N-DSM +V-PAP-NSM +CONJ +V-AAS-3P +PREP +T-ASM +V-PNP-ASM +PREP +P-ASM +D-NSN +V-PAI-3S +PREP +T-ASM +N-ASM +CONJ +V-AAP-NPM +V-API-3P +PREP +T-ASN +N-ASN +T-GSM +N-GSM +N-GSM +CONJ +V-2AAP-GSM +P-DPM +T-GSM +N-GSM +N-APF +V-2AAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +PREP +P-APM +PRT +V-IAI-3P +N-DPF +CONJ +V-IAI-3P +CONJ +V-IAI-3P +T-NPM +A-NPM +N-NPM +ADV +A-NUI +CONJ +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-INI-3S +PREP +N-APM +A-APM +V-PNP-NSM +CONJ +V-PAP-NSM +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +ADV +X-NPM +V-IPI-3P +CONJ +V-IAI-3P +V-PAP-NPM +T-ASF +N-ASF +PREP +T-GSN +N-GSN +V-2AAP-NSM +PREP +P-GPM +V-AAI-3S +T-APM +N-APM +PREP +N-ASF +V-PNP-NSM +PREP +T-DSF +N-DSF +N-GSM +CONJ +D-NSN +V-2ADI-3S +PREP +N-APN +A-NUI +CONJ +A-APM +T-APM +V-PAP-APM +T-ASF +N-ASF +V-AAN +T-ASM +N-ASM +T-GSM +N-GSM +PRT +A-APM +CONJ +N-APM +PRT +N-APF +PRT-N +T-APF +V-2AAP-APF +T-NSM +N-NSM +V-IAI-3S +PREP +T-GPF +N-GPF +N-GSM +CONJ +CONJ +PREP +T-APM +V-PAP-APM +V-PPN +PREP +T-GSM +N-GSM +P-GSM +N-APN +PRT +N-APN +CONJ +V-PPN +PREP +P-GPM +T-APF +N-APF +PRT +T-APN +N-APN +T-APN +A-APN +V-PNN +CONJ +V-AAI-3P +X-NPM +CONJ +T-GPM +V-PNP-GPM +A-GPM +N-GPM +V-PAN +PREP +T-APM +V-PAP-APM +T-APN +N-APN +T-APN +A-APN +T-ASN +N-ASN +T-GSM +N-GSM +N-GSM +V-PAP-NPM +V-PAI-1S +P-2AP +T-ASM +N-ASM +R-ASM +N-NSM +V-PAI-3S +CONJ +X-GSM +N-GSM +A-GSM +N-GSM +A-NUI +N-NPM +D-ASN +V-IAI-3P +V-PAP-NPM +CONJ +V-AOP-NSN +T-NSN +N-NSN +T-NSN +A-NSN +V-2AAI-3S +P-DPM +T-ASM +N-ASM +V-PAI-1S +CONJ +T-ASM +N-ASM +V-PNI-1S +CONJ +P-2NP +I-NPM +V-PAI-2P +CONJ +V-ADP-NSM +PREP +P-APM +T-NSM +N-NSM +PREP +R-DSM +V-IAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +V-AAP-NSM +A-GPM +V-AAI-3S +PREP +P-GPM +CONJ +A-APM +CONJ +V-RPP-APM +V-2AAN +PREP +T-GSM +N-GSM +D-GSM +CONJ +D-NSN +V-2ADI-3S +A-NSN +A-DPM +PRT +A-DPM +CONJ +N-DPM +T-DPM +V-PAP-DPM +T-ASF +N-ASF +CONJ +V-2AAI-3S +N-NSM +PREP +A-APM +P-APM +CONJ +V-IPI-3S +T-NSN +N-NSN +T-GSM +N-GSM +N-GSM +PRT +A-NPM +T-GPM +V-RAP-GPM +V-INI-3P +V-PMP-NPM +CONJ +V-PAP-NPM +T-APF +N-APF +P-GPM +CONJ +A-NPM +T-GPM +T-APN +A-APN +V-AAP-GPM +V-2AAP-NPM +T-APF +N-APF +V-IAI-3P +PREP +A-GPM +CONJ +V-AAI-3P +T-APF +N-APF +P-GPF +CONJ +V-2AAI-3P +N-GSN +N-APF +A-NUI +ADV +PREP +N-ASN +T-GSM +N-GSM +T-NSM +N-NSM +V-IAI-3S +CONJ +V-IAI-3S +CONJ +ADV +V-API-3S +D-NPN +V-2AMI-3S +T-NSM +N-NSM +PREP +T-DSN +N-DSN +V-2AAP-NSM +T-ASF +N-ASF +CONJ +N-ASF +V-PNN +PREP +N-APN +V-2AAP-NSM +CONJ +PREP +T-ASN +V-2ADN +P-1AS +ADV +V-PAI-3S +P-1AS +CONJ +N-ASF +V-2AAN +CONJ +V-AAP-NSM +PREP +T-ASF +N-ASF +A-NUI +T-GPM +V-PAP-GPM +P-DSM +N-ASM +CONJ +N-ASM +P-NSM +V-2AAI-3S +N-ASM +PREP +T-ASF +N-ASF +CONJ +V-2ADI-3S +PREP +T-ASM +N-ASM +D-ASM +N-NSM +PRT-N +A-NSM +PREP +T-GSF +N-GSF +CONJ +X-NSM +N-NSM +N-DSN +N-NSM +V-PAP-NSM +N-APM +A-APM +N-GSF +V-IMI-3S +T-DPM +N-DPM +PRT-N +A-ASF +N-ASF +R-APM +CONJ +T-APM +PREP +T-APN +D-APN +N-APM +V-AAP-NSM +V-2AAI-3S +N-VPM +V-PNI-2P +CONJ +PREP +D-GSF +T-GSF +N-GSF +T-NSF +N-NSF +P-1DP +V-PAI-3S +CONJ +V-PAI-2P +CONJ +V-PAI-2P +CONJ +PRT-N +ADV +N-GSF +CONJ +ADV +A-GSF +T-GSF +N-GSF +T-NSM +N-NSM +D-NSM +V-AAP-NSM +V-AAI-3S +A-ASM +N-ASM +V-PAP-NSM +CONJ +PRT-N +V-PAI-3P +N-NPM +T-NPM +PREP +N-GPF +V-PNP-NPM +CONJ +PRT-N +ADV +D-NSN +V-PAI-3S +P-1DP +T-ASN +N-ASN +PREP +N-ASM +V-2AAN +CONJ +CONJ +T-ASN +T-GSF +A-GSF +N-GSF +N-GSF +N-ASN +PREP +A-ASN-N +V-APN +PRT +V-PAN +CONJ +V-PPN +T-GSF +N-GSF +P-GSF +R-ASF +A-NSF +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +V-PNI-3S +CONJ +V-AAP-NPM +CONJ +V-2ADP-NPM +A-NPM +N-GSM +V-IAI-3P +V-PAP-NPM +A-NSF +T-NSF +N-NSF +A-GPM +CONJ +V-API-3S +T-NSF +N-NSF +T-GSF +N-GSF +PRT +V-AAI-3P +ADV +PREP +T-ASN +N-ASN +V-AAP-NPM +N-ASM +CONJ +N-ASM +N-APM +N-APM +N-GSM +CONJ +N-GSM +V-PNP-GSM +V-2AAN +PREP +T-ASM +N-ASM +PRT-N +V-IAI-3P +P-ASM +T-NPM +N-NPM +CONJ +X-NPM +CONJ +T-GPM +N-GPM +V-PAP-NPM +P-DSM +A-NPM +V-AAP-NPM +PREP +P-ASM +V-IAI-3P +PRT-N +V-2AAN +F-3ASM +PREP +T-ASN +N-ASN +PRT +CONJ +A-NPM +A-ASN +X-ASN +V-IAI-3P +CONJ +T-NSF +N-NSF +V-IAI-3S +V-RPP-NSF +CONJ +T-NPM +A-NPM-C +PRT-N +V-2LAI-3P +I-GSN +PREP +V-2LAI-3P +CONJ +PREP +T-GSM +N-GSM +V-AAI-3P +N-ASM +V-2AAP-GPM +P-ASM +T-GPM +A-GPM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-ASF +N-ASF +V-IAI-3S +V-PNN +T-DSM +N-DSM +CONJ +V-2AAP-NPM +CONJ +A-NSM +V-PAI-3S +N-NSF +A-NSF +V-2ADI-3S +PREP +A-GPM +ADV +PREP +N-APF +A-NUI +V-PAP-NPM +A-NSF +T-NSF +N-NSF +A-GPM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-ASM +N-ASM +V-PAI-3S +N-VPM +A-NPM +CONJ +I-NSM +N-GPM +V-PAI-3S +R-NSM +PRT-N +V-PAI-3S +T-ASF +A-GPM +N-ASF +V-PAP-ASF +N-ASM +T-GSF +A-GSF +N-GSF +CONJ +T-GSM +A-GSM +CONJ +A-GPM +V-PAP-GPN +D-GPN +V-PAP-NSN +V-PAI-3S +P-2AP +V-RPP-APM +V-PAN +CONJ +A-ASN-N +A-ASN +V-PAN +CONJ +V-2AAI-2P +T-APM +N-APM +D-APM +CONJ-N +A-APM +CONJ-N +V-PAP-APM +T-ASF +N-ASF +P-1GP +CONJ +PRT +COND +N-NSM +CONJ +T-NPM +PREP +P-DSM +N-NPM +V-PAI-3P +PREP +X-ASM +N-ASM +A-NPM +V-PPI-3P +CONJ +N-NPM +V-PAI-3P +V-PAM-3P +C-DPM +CONJ +COND +X-ASN +ADV-C +V-PAI-2P +PREP +T-DSF +A-DSF +N-DSF +V-FPI-3S +CONJ +CONJ +V-PAI-1P +V-PPN +N-GSF +PREP +T-GSF +ADV +A-GSN-N +A-GSN +V-PAP-GSN +PREP +R-GSN +PRT-N +V-FDI-1P +V-2AAN +N-ASM +PREP +T-GSF +N-GSF +D-GSF +CONJ +D-APN +V-2AAP-NSM +V-AAI-3S +T-ASF +N-ASF +CONJ +PREP +T-ASN +V-AMN +T-ASM +N-ASM +T-NSM +N-NSM +V-AMP-NSM +T-APM +N-APM +CONJ +V-AAP-NSM +V-ADP-NSM +V-2AAI-3S +V-PNN +PREP +N-ASF +CONJ +V-2AAP-NSM +T-APN +N-APN +D-APN +CONJ +V-AAP-NSM +P-APM +N-DSM +A-DSM +V-2AAI-3S +PREP +T-ASF +N-ASF +PRT +V-AAP-NSM +N-APM +A-APM +V-2ADP-GSF +N-GSF +P-DSM +PREP +T-GPM +A-GPM +V-PAP-DSM +V-PPN +PREP +T-ASF +N-ASF +V-2ADI-3S +N-GSF +T-GSN +V-PAN +PREP +N-GSF +CONJ +V-INI-3S +P-DSM +N-NSM +N-GSM +A-NSM +CONJ +N-GPM +N-NSM +CONJ +N-NSM +CONJ +N-NSM +A-NSM +CONJ +N-NSM +CONJ +N-NPM +N-NSM +CONJ +N-NSM +CONJ +D-NPM +V-2AAP-NPM +V-IAI-3P +P-1AP +PREP +N-DSF +CONJ +P-1NP +V-AAI-1P +PREP +T-APF +N-APF +T-GPN +A-GPN +PREP +N-GSM +CONJ +V-2AAI-1P +PREP +P-APM +PREP +T-ASF +N-ASF +ADV +N-GPF +A-NUI +ADV +V-AAI-1P +N-APF +A-NUI +CONJ +PREP +T-DSF +A-DSF +T-GPN +N-GPN +V-RPP-GPM +P-1GP +V-AAN +N-ASM +T-NSM +N-NSM +V-INI-3S +P-DPM +V-PAP-NSM +V-PAN +T-DSF +ADV +PRT +V-IAI-3S +T-ASM +N-ASM +ADV +N-GSN +CONJ +V-IAI-3P +N-NPF +A-NPF +PREP +T-DSN +N-DSN +ADV +V-IAI-1P +V-RPP-NPM +CONJ +X-NSM +N-NSM +N-DSN +N-NSM +V-PNP-NSM +PREP +T-GSF +N-GSF +V-PPP-NSM +N-DSM +A-DSM +V-PNP-GSM +T-GSM +N-GSM +PREP +A-ASN-C +V-APP-NSM +PREP +T-GSM +N-GSM +V-2AAI-3S +PREP +T-GSN +N-GSN +ADV +CONJ +V-API-3S +A-NSM +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +CONJ +V-2AAP-NSM +V-2AAI-3S +PRT-N +V-PPM-2P +CONJ +T-NSF +N-NSF +P-GSM +PREP +P-DSM +V-PAI-3S +CONJ +V-2AAP-NSM +CONJ +V-AAP-NSM +T-ASM +N-ASM +CONJ +V-ADP-NSM +PRT +PREP +A-ASN +V-AAP-NSM +ADV +N-GSF +ADV +V-2AAI-3S +CONJ +V-2AAI-3P +T-ASM +N-ASM +V-PAP-ASM +CONJ +V-API-3P +PRT-N +ADV +CONJ +P-1NP +V-2AAP-NPM +PREP +T-ASN +N-ASN +V-API-1P +PREP +T-ASF +ADV-C +ADV +V-PAP-NPM +V-PAN +T-ASM +N-ASM +CONJ +ADV +V-RPP-NSM +V-IAI-3S +V-PAP-NSM +P-NSM +V-PAN +CONJ +ADV +V-IAI-3S +P-1DP +PREP +T-ASF +ADV-C +V-2AAP-NPM +P-ASM +V-2AAI-1P +PREP +N-ASF +ADV-K +V-AAP-NPM +T-DSF +V-PAP-DSF +V-AAI-1P +ADV +N-GSF +CONJ +T-DSF +A-DSF +V-2AAI-1P +PREP +N-ASF +CONJ +T-DSF +V-PPP-DSF +V-2AAI-1P +PREP +N-ASF +CONJ +V-LAI-3S +T-NSM +N-NSM +V-AAN +T-ASF +N-ASF +ADV +PRT-N +V-2ADS-3S +P-DSM +V-AAN +PREP +T-DSF +N-DSF +CONJ +V-IAI-3S +COND +A-NSN +V-PAO-3S +P-DSM +T-ASF +N-ASF +T-GSF +N-GSF +V-2ADN +PREP +N-APN +CONJ +PREP +T-GSF +N-GSF +V-AAP-NSM +PREP +N-ASF +V-AMI-3S +T-APM +A-APM-C +T-GSF +N-GSF +CONJ +ADV +V-2ADI-3P +PREP +P-ASM +V-2AAI-3S +P-DPM +P-2NP +V-PNI-2P +PREP +A-GSF-S +N-GSF +PREP +R-GSF +V-2AAI-1S +PREP +T-ASF +N-ASF +ADV +PREP +P-2GP +T-ASM +A-ASM +N-ASM +V-2ADI-1S +V-PAP-NSM +T-DSM +N-DSM +PREP +A-GSF +N-GSF +CONJ +N-GPN +CONJ +N-GPM +T-GPM +V-2AAP-GPM +P-1DS +PREP +T-DPF +N-DPF +T-GPM +A-GPM +ADV +V-AMI-1S +A-ASN-N +T-GPN +V-PAP-GPN +T-GSN +PRT-N +V-AAN +P-2DP +CONJ +V-AAN +P-2AP +A-DSF +CONJ +PREP +N-APM +V-PNP-NSM +PRT +A-DPM +CONJ +N-DPM +T-ASF +PREP +N-ASM +N-ASF +CONJ +N-ASF +PREP +T-ASM +N-ASM +P-1GP +N-ASM +CONJ +ADV +V-2AMM-2S +V-RPP-NSM +T-DSN +N-DSN +P-1NS +V-PNI-1S +PREP +N-PRI +T-APN +PREP +P-DSF +V-FAP-APN +P-1DS +PRT-N +V-RAP-NSM +ADV +CONJ +T-NSN +N-NSN +T-NSN +A-NSN +PREP +N-ASF +V-PNI-3S +P-1DS +V-PAP-NSN +CONJ +N-NPN +CONJ +N-NPF +P-1AS +V-PAI-3P +CONJ +A-GSM-N +N-GSM +V-PMI-1S +T-ASF +N-ASF +A-ASF +F-1DSM +ADV +V-AAS-1S +T-ASM +N-ASM +P-1GS +CONJ +T-ASF +N-ASF +R-ASF +V-2AAI-1S +PREP +T-GSM +N-GSM +N-GSM +V-ADN +T-ASN +N-ASN +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +ADV +V-2AMM-2S +P-1NS +V-RAI-1S +CONJ +ADV-N +V-FDI-2P +T-ASN +N-ASN +P-1GS +P-2NP +A-NPM +PREP +R-DPM +V-2AAI-1S +V-PAP-NSM +T-ASF +N-ASF +CONJ +V-PNI-1S +P-2DP +PREP +T-DSF +ADV +N-DSF +CONJ +A-NSM +V-PAI-1S +PREP +T-GSN +N-GSN +A-GPM +CONJ +PRT-N +V-AMI-1S +T-GSN +PRT-N +V-AAN +A-ASF +T-ASF +N-ASF +T-GSM +N-GSM +P-2DP +V-PAM-2P +F-2DPM +CONJ +A-DSN +T-DSN +N-DSN +PREP +R-DSN +P-2AP +T-NSN +N-NSN +T-NSN +A-NSN +V-2AMI-3S +N-APM +V-PAN +T-ASF +N-ASF +T-GSM +N-GSM +R-ASF +V-AMI-3S +PREP +T-GSN +N-GSN +T-GSM +A-GSM +P-1NS +V-RAI-1S +CONJ +V-FDI-3P +PREP +T-ASF +N-ASF +P-1GS +N-NPM +A-NPM +PREP +P-2AP +PRT-N +V-PNP-NPM +T-GSN +N-GSN +CONJ +PREP +P-2GP +P-GPM +V-FMI-3P +N-NPM +V-PAP-NPM +V-RPP-APN +T-GSN +V-PAN +T-APM +N-APM +ADV +F-3GPM +CONJ +V-PAM-2P +V-PAP-NPM +CONJ +N-ASF +N-ASF +CONJ +N-ASF +PRT-N +V-AMI-1S +PREP +N-GPN +V-PAP-NSM +A-ASM +A-ASM +CONJ +T-APN +ADV +V-PMI-1S +P-2AP +T-DSM +N-DSM +CONJ +T-DSM +N-DSM +T-GSF +N-GSF +P-GSM +T-DSM +V-PNP-DSM +V-AAN +CONJ +V-2AAN +T-ASF +N-ASF +PREP +T-DPM +V-RPP-DPM +A-DPM +N-GSN +PRT +N-GSN +PRT +N-GSM +A-GSM-N +V-AAI-1S +P-NPM +V-PAI-2P +CONJ +T-DPF +N-DPF +P-1GS +CONJ +T-DPM +V-PAP-DPM +PREP +P-1GS +V-AAI-3P +T-NPF +N-NPF +D-NPF +A-APN +V-AAI-1S +P-2DP +CONJ +ADV +V-PAP-APM +V-PAI-3S +V-PNN +T-GPM +V-PAP-GPM +PRT +V-PAN +T-GPM +N-GPM +T-GSM +N-GSM +N-GSM +CONJ +P-NSM +V-2AAI-3S +A-NSN +V-PAI-3S +ADV +V-PAN +PRT +V-PAN +CONJ +D-APN +V-2AAP-NSM +V-2AAP-NSM +T-APN +N-APN +P-GSM +PREP +A-DPM +P-DPM +V-ADI-3S +CONJ +A-NSM +V-2ADI-3S +N-NSM +A-GPM +CONJ +V-2AAP-NPM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-IAI-3P +P-ASM +V-PPP-NPM +ADV-S +PREP +T-DSM +N-DSM +R-DSM +V-LAI-3S-ATT +CONJ +ADV-N +V-PAI-3P +T-ASN +N-ASN +P-GSM +V-PAN +CONJ +V-IAI-3P +P-ASM +PREP +T-ASN +N-ASN +CONJ +ADV +V-2ADI-3S +V-APN +P-1AP +V-APP-APM +PREP +P-GPM +V-AAP-NPM +V-2AAI-1P +PREP +T-ASF +N-ASF +CONJ +T-DSF +ADV +PREP +T-ASF +N-ASF +ADV-K +PREP +N-APN +CONJ +V-2AAP-NPM +N-ASN +V-PAP-ASN +PREP +N-ASF +V-2AAP-NPM +V-API-1P +CONJ +V-2AAP-NPM +T-ASF +N-ASF +CONJ +V-2AAP-NPM +P-ASF +A-ASF +V-IAI-1P +PREP +N-ASF +CONJ +V-2AAI-1P +PREP +N-ASF +CONJ +ADV +T-NSN +N-NSN +V-IAI-3S +V-PNP-NSN +T-ASM +N-ASM +CONJ +V-2AAP-NPM +T-APM +N-APM +V-AAI-1P +ADV +N-APF +A-NUI +R-NPM +T-DSM +N-DSM +V-IAI-3P +PREP +T-GSN +N-GSN +PRT-N +V-PAN +PREP +N-APN +CONJ +ADV +V-2ADI-3S +V-AAN +P-1AP +T-APF +N-APF +V-2AAP-NPM +V-INI-1P +V-PAP-GPM +P-1AP +A-GPM +PREP +N-DPF +CONJ +N-DPN +ADV +ADV +T-GSF +N-GSF +CONJ +V-2AAP-NPM +T-APN +N-APN +PREP +T-ASM +N-ASM +V-ADP-NPM +V-ADI-1P +C-APM +CONJ +V-2AAI-1P +PREP +T-ASN +N-ASN +CONJ +D-NPM +V-AAI-3P +PREP +T-APN +A-APN +CONJ +P-1NP +T-ASM +N-ASM +V-AAP-NPM +PREP +N-GSF +V-AAI-1P +PREP +N-ASF +CONJ +V-ADP-NPM +T-APM +N-APM +V-AAI-1P +N-ASF +A-ASF +PREP +P-DPM +CONJ +T-DSF +ADV +V-2AAP-NPM +V-2AAI-1P +PREP +N-ASF +CONJ +V-2AAP-NPM +PREP +T-ASM +N-ASM +N-GSM +T-GSM +N-GSM +V-PAP-GSM +PREP +T-GPM +A-NUI +V-AAI-1P +PREP +P-DSM +CONJ +D-DSM +V-IAI-3P +N-NPF +A-NPF +N-NPF +V-PAP-NPF +CONJ +V-PAP-GPM +N-APF +A-APF-C +V-2AAI-3S +X-NSM +PREP +T-GSF +N-GSF +N-NSM +N-DSN +N-NSM +CONJ +V-2AAP-NSM +PREP +P-1AP +CONJ +V-AAP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +V-AAP-NSM +F-3GSM +T-APM +N-APM +CONJ +T-APF +N-APF +V-2AAI-3S +D-APN +V-PAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +T-ASM +N-ASM +R-GSM +V-PAI-3S +T-NSF +N-NSF +D-NSF +ADV +V-FAI-3P +PREP +N-PRI +T-NPM +A-NPM +CONJ +V-FAI-3P +PREP +N-APF +N-GPN +CONJ +ADV +V-AAI-1P +D-APN +V-IAI-1P +PRT +P-1NP +CONJ +T-NPM +A-NPM +T-GSN +PRT-N +V-PAN +P-ASM +PREP +N-PRI +ADV +V-ADI-3S +T-NSM +N-NSM +I-ASN +V-PAI-2P +V-PAP-NPM +CONJ +V-PAP-NPM +P-1GS +T-ASF +N-ASF +CONJ +P-1NS +PRT-N +ADV +V-APN +CONJ +CONJ +V-2AAN +PREP +N-PRI +ADV +V-PAI-1S +PREP +T-GSN +N-GSN +T-GSM +N-GSM +N-GSM +CONJ +PRT-N +V-PPP-GSM +P-GSM +V-AAI-1P +V-2AAP-NPM +T-GSM +N-GSM +T-NSN +N-NSN +V-PNM-3S +CONJ +PREP +T-APF +N-APF +D-APF +V-ADP-NPM +V-IAI-1P +PREP +N-APN +CONJ +V-2AAI-3P +CONJ +T-GPM +N-GPM +PREP +N-GSF +PREP +P-1DP +V-PAP-NPM +PREP +R-DSM +V-APS-1P +N-DSM +X-DSM +N-DSM +A-DSM +N-DSM +CONJ +V-2ADP-GPM +P-1GP +PREP +N-APN +ADV +V-ADI-3P +P-1AP +T-NPM +N-NPM +CONJ +T-DSF +V-PAP-DSF +V-IAI-3S +T-NSM +N-NSM +PREP +P-1DP +PREP +N-ASM +PRT +V-2ADI-3P +A-NPM +T-NPM +A-NPM-C +CONJ +V-ADP-NSM +P-APM +V-INI-3S +PREP +A-ASN +A-ASN +R-GPN +V-AAI-3S +T-NSM +N-NSM +PREP +T-DPN +N-DPN +PREP +T-GSF +N-GSF +P-GSM +CONJ +T-NPM +V-AAP-NPM +V-IAI-3P +T-ASM +N-ASM +PRT +V-2AAI-3P +P-DSM +V-PAI-2S +N-VSM +Q-NPF +N-NPF +T-GPM +V-RAP-GPM +V-PAI-3P +PREP +T-DPM +A-DPM +CONJ +A-NPM +N-NPM +T-GSM +N-GSM +V-PAI-3P +CONJ +V-API-3P +PREP +P-2GS +CONJ +V-PAI-2S +N-ASF +PREP +N-GSM +T-APM +PREP +T-APN +N-APN +A-APM +A-APM +V-PAP-NSM +PRT-N +V-PAN +P-APM +T-APN +N-APN +CONJ-N +T-DPN +N-DPN +V-PAN +CONJ +I-NSN +V-PAI-3S +ADV +V-FDI-3P +CONJ +V-2RAI-2S +CONJ +D-ASN +V-AAM-2S +R-ASN +P-2DS +V-PAI-1P +V-PAI-3P +P-1DP +N-NPM +A-NPM +N-ASF +V-PAP-NPM +PREP +F-3GPM +D-APM +V-2AAP-NSM +V-APM-2S +PREP +P-DPM +CONJ +V-AAM-2S +PREP +P-DPM +CONJ +V-FDI-3P +T-ASF +N-ASF +CONJ +V-FDI-3P +A-NPM +CONJ +R-GPN +V-RPI-3P +PREP +P-2GS +A-NSN-N +V-PAI-3S +CONJ +V-PAI-2S +CONJ +P-NSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +PREP +T-GPM +V-RAP-GPM +N-GPN +P-1NP +V-AAI-1P +V-AAP-NPM +V-PMN +P-APM +PRT +T-ASN +A-ASN +CONJ +N-ASN +CONJ +A-ASN +CONJ +N-ASF +ADV +T-NSM +N-NSM +V-2AAP-NSM +T-APM +N-APM +T-DSF +V-PPP-DSF +N-DSF +PREP +P-DPM +V-APP-NSM +V-IAI-3S +PREP +T-ASN +N-ASN +V-PAP-NSM +T-ASF +N-ASF +T-GPF +N-GPF +T-GSM +N-GSM +ADV +R-GSM +V-API-3S +PREP +A-GSM +A-GSM +P-GPM +T-NSF +N-NSF +CONJ +ADV +V-IAI-3P +T-NPF +A-NUI +N-NPF +V-PPN +T-NPM +PREP +T-GSF +N-GSF +A-NPM +V-ADP-NPM +P-ASM +PREP +T-DSN +N-DSN +V-IAI-3P +A-ASM +T-ASM +N-ASM +CONJ +V-2AAI-3P +PREP +P-ASM +T-APF +N-APF +V-PAP-NPM +N-VPM +N-VPM +V-PAM-2P +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +PREP +T-GSM +N-GSM +CONJ +T-GSM +N-GSM +CONJ +T-GSM +N-GSM +D-GSM +A-APM +ADV +V-PAP-NSM +PRT +ADV +CONJ +N-APM +V-2AAI-3S +PREP +T-ASN +N-ASN +CONJ +V-RAI-3S +T-ASM +A-ASM +N-ASM +D-ASM +CONJ +V-IAI-3P +V-RAP-NPM +N-ASM +T-ASM +A-ASM +PREP +T-DSF +N-DSF +PREP +P-DSM +V-IAI-3P +CONJ +R-ASM +PREP +T-ASN +N-ASN +V-2AAI-3S +T-NSM +N-NSM +PRT +V-API-3S +T-NSF +N-NSF +A-NSF +CONJ +V-2ADI-3S +N-NSF +T-GSM +N-GSM +CONJ +V-2ADP-NPM +T-GSM +N-GSM +V-IAI-3P +P-ASM +ADV +T-GSN +N-GSN +CONJ +ADV +V-API-3P +T-NPF +N-NPF +PRT +V-PAP-GPM +P-ASM +V-AAN +V-2AAI-3S +N-NSF +T-DSM +N-DSM +T-GSF +N-GSF +CONJ +A-NSF +N-PRI +V-PPI-3S +R-NSM +ADV +V-2AAP-NSM +N-APM +CONJ +N-APM +V-2AAI-3S +PREP +P-APM +CONJ +T-NPM +V-2AAP-NPM +T-ASM +N-ASM +CONJ +T-APM +N-APM +V-AMI-3P +V-PAP-NPM +T-ASM +N-ASM +ADV +V-AAP-NSM +T-NSM +N-NSM +V-2ADI-3S +P-GSM +CONJ +V-AAI-3S +V-APN +N-DPF +A-DPF +CONJ +V-INI-3S +I-NSM +V-PAO-3S +CONJ +I-NSN +V-PAI-3S +V-RAP-NSM +CONJ +A-NPM +A-ASN +X-ASN +V-IAI-3P +PREP +T-DSM +N-DSM +CONJ +PRT-N +V-PNP-GSM +P-GSM +V-2AAN +T-ASN +A-ASN +PREP +T-ASM +N-ASM +V-AAI-3S +V-PPN +P-ASM +PREP +T-ASF +N-ASF +CONJ +ADV +V-2ADI-3S +PREP +T-APM +N-APM +V-2AAI-3S +V-PPN +P-ASM +PREP +T-GPM +N-GPM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-IAI-3S +T-NSN +N-NSN +T-GSM +N-GSM +V-PAP-NPM +V-PAM-2S +P-ASM +PRT +V-PAP-NSM +V-PPN +PREP +T-ASF +N-ASF +T-NSM +N-NSM +V-PAI-3S +T-DSM +N-DSM +COND +V-PAI-3S +P-1DS +V-2AAN +X-ASN +PREP +P-2AS +CONJ +T-NSM +V-IAI-3S +ADV +V-PAI-2S +PRT-I +PRT-N +P-2NS +V-PAI-2S +T-NSM +A-NSM +T-NSM +PREP +D-GPF +T-GPF +N-GPF +V-AAP-NSM +CONJ +V-2AAP-NSM +PREP +T-ASF +A-ASF +T-APM +A-APM +N-APM +T-GPM +N-GPM +CONJ +V-2AAI-3S +T-NSM +N-NSM +PRT +P-1NS +V-PAI-1S +N-NSM +A-NSM +N-NSM +T-GSF +N-GSF +PRT-N +A-GSF +N-GSF +N-NSM +CONJ +V-PNI-1S +P-2GS +V-AAM-2S +P-1DS +V-AAN +PREP +T-ASM +N-ASM +CONJ +V-AAP-GSM +P-GSM +T-NSM +N-NSM +V-RAP-NSM +PREP +T-GPM +N-GPM +V-AAI-3S +T-DSF +N-DSF +T-DSM +N-DSM +CONJ +A-GSF +N-GSF +V-2ADP-GSF +V-AAI-3S +T-DSF +N-DSF +N-DSF +V-PAP-NSM +N-VPM +N-VPM +CONJ +N-VPM +V-AAM-2P +P-1GS +T-GSF +PREP +P-2AP +ADV +N-GSF +CONJ +V-AAP-NPM +CONJ +T-DSF +N-DSF +N-DSF +V-IAI-3S +P-DPM +ADV +V-2AAI-3P +N-ASF +CONJ +V-PAI-3S +P-1NS +V-PAI-1S +N-NSM +A-NSM +V-RPP-NSM +PREP +N-DSF +T-GSF +N-GSF +CONJ +V-RPP-NSM +PREP +T-DSF +N-DSF +D-DSF +PREP +T-APM +N-APM +N-PRI +V-RPP-NSM +PREP +N-ASF +T-GSM +A-GSM +N-GSM +V-PAP-NSM +N-NSM +T-GSM +N-GSM +ADV +A-NPM +P-2NP +V-PAI-2P +ADV +R-NSM +D-ASF +T-ASF +N-ASF +V-AAI-1S +ADV +N-GSM +V-PAP-NSM +CONJ +V-PAP-NSM +PREP +N-APF +PRT +N-APM +CONJ +N-APF +ADV +CONJ +T-NSM +N-NSM +V-PAI-3S +P-1DS +CONJ +A-NSN +T-NSN +N-NSN +PREP +R-GPM +CONJ +N-APF +V-ADP-NSM +PREP +T-APM +N-APM +PREP +N-ASF +V-INI-1S +V-FAP-NSM +CONJ +T-APM +ADV +V-PAP-APM +V-RPP-APM +PREP +N-PRI +CONJ +V-APS-3P +CONJ +V-2ADI-3S +P-1DS +V-PNP-DSM +CONJ +V-PAP-DSM +T-DSF +N-DSF +PREP +N-ASF +ADV +PREP +T-GSM +N-GSM +V-AAN +N-ASN +A-ASN +PREP +P-1AS +PRT +V-2AAI-1S +PREP +T-ASN +N-ASN +CONJ +V-AAI-1S +N-GSF +V-PAP-GSF +P-1DS +N-PRI +N-PRI +I-ASN +P-1AS +V-PAI-2S +CONJ +P-1NS +V-ADI-1S +I-NSM +V-PAI-2S +N-VSM +PRT +V-2AAI-3S +PREP +P-1AS +P-1NS +V-PAI-1S +N-NSM +T-NSM +N-NSM +R-ASM +P-2NS +V-PAI-2S +CONJ +PRT +T-NPM +PREP +P-1DS +V-PAP-NPM +T-ASN +N-ASN +V-ADI-3P +CONJ +PRT-N +V-AAI-3P +T-ASF +N-ASF +T-GSM +V-PAP-GSM +P-1DS +CONJ +V-2AAI-1S +I-ASN +V-AAS-1S +N-VSM +CONJ +T-NSM +N-NSM +V-2AAI-3S +PREP +P-1AS +V-2AAP-NSM +V-PNM-2S +PREP +N-ASF +ADV-K +P-2DS +V-FPI-3S +PREP +A-GPN +R-GPN +V-AAN +V-RPI-3S +P-2DS +CONJ +ADV +PRT-N +V-IAI-1S +PREP +T-GSF +N-GSF +T-GSN +N-GSN +D-GSN +V-PPP-NSM +PREP +T-GPM +V-PAP-GPM +P-1DS +V-2AAI-1S +PREP +N-ASF +CONJ +N-NSM +X-NSM +N-NSM +A-NSM +PREP +T-ASM +N-ASM +V-PPP-NSM +PREP +A-GPM +T-GPM +V-PAP-GPM +A-GPM +V-2AAP-NSM +PREP +P-1AS +CONJ +V-2AAP-NSM +V-2AAI-3S +P-1DS +N-PRI +N-VSM +V-AAM-2S +P-1NS-K +P-DSF +T-DSF +N-DSF +V-AAI-1S +PREP +P-ASM +CONJ +T-NSM +V-2AAI-3S +T-NSM +N-NSM +T-GPM +N-GPM +P-1GP +V-ADI-3S +P-2AS +V-2AAN +T-ASN +N-ASN +P-GSM +CONJ +V-2AAN +T-ASM +A-ASM +CONJ +V-AAN +N-ASF +PREP +T-GSN +N-GSN +P-GSM +CONJ +V-FDI-2S +P-DSM +PREP +A-APM +N-APM +N-NSM +R-GPN +V-RAI-2S-ATT +CONJ +V-AAI-2S +CONJ +ADV +I-ASN +V-PAI-2S +V-2AAP-NSM +V-AMM-2S +CONJ +V-AMM-2S +T-APF +N-APF +P-2GS +V-AMP-NSM +T-ASN +N-ASN +P-GSM +CONJ +V-2ADI-3S +P-1DS +V-AAP-DSM +PREP +N-PRI +CONJ +V-PNP-GSM +P-1GS +PREP +T-DSN +N-DSN +V-2ADN +P-1AS +PREP +N-DSF +CONJ +V-2AAN +P-ASM +V-PAP-ASM +P-1DS +V-AAM-2S +CONJ +V-2AAM-2S +PREP +N-DSN +PREP +N-PRI +CONJ +PRT-N +V-FNI-3P +P-2GS +N-ASF +PREP +P-1GS +P-1NS-K +V-2AAI-1S +N-VSM +P-NPM +V-PNI-3P +CONJ +P-1NS +V-IMI-1S +V-PAP-NSM +CONJ +V-PAP-NSM +PREP +T-APF +N-APF +T-APM +V-PAP-APM +PREP +P-2AS +CONJ +ADV +V-IPI-3S +T-NSN +N-NSN +N-GSM +T-GSM +N-GSM +P-2GS +CONJ +P-NSM +V-IMI-1S +V-RAP-NSM +CONJ +V-PAP-NSM +CONJ +V-PAP-NSM +T-APN +N-APN +T-GPM +V-PAP-GPM +P-ASM +CONJ +V-2AAI-3S +PREP +P-1AS +V-PNM-2S +CONJ +P-1NS +PREP +N-APN +ADV +V-FAI-1S +P-2AS +CONJ +V-IAI-3P +P-GSM +ADV +D-GSM +T-GSM +N-GSM +CONJ +V-AAI-3P +T-ASF +N-ASF +P-GPM +V-PAP-NPM +V-PAM-2S +PREP +T-GSF +N-GSF +T-ASM +D-ASM +CONJ +PRT-N +V-IAI-3S +P-ASM +V-PAN +PRT +V-PAP-GPM +P-GPM +CONJ +V-PAP-GPM +T-APN +N-APN +CONJ +N-ASM +V-PAP-GPM +PREP +T-ASM +N-ASM +V-AAI-3S +T-NSM +N-NSM +V-PPN +P-ASM +PREP +T-ASF +N-ASF +V-2AAP-NSM +N-DPF +V-PPN +P-ASM +CONJ +V-2AAS-3S +PREP +R-ASF +N-ASF +ADV +V-IAI-3P +P-DSM +CONJ +ADV +V-AAI-3P +P-ASM +T-DPM +N-DPM +V-2AAI-3S +PREP +T-ASM +V-RAP-ASM +N-ASM +T-NSM +N-NSM +COND +N-ASM +A-ASM +CONJ +A-ASM +V-PAN +V-PAI-3S +P-2DP +CONJ +V-AAP-NSM +T-NSM +N-NSM +V-2AAP-NSM +T-DSM +N-DSM +V-AAI-3S +V-PAP-NSM +V-PAI-2S +I-ASN +V-PAN +CONJ +T-NSM +N-NSM +D-NSM +A-NSM +V-PAI-3S +CONJ +V-2AAP-NSM +T-NSM +N-NSM +V-2AAI-3S +P-DSM +V-PAM-2S +P-1DS +P-2NS +A-NSM +V-PAI-2S +CONJ +T-NSM +V-IAI-3S +PRT +CONJ +V-ADI-3S +T-NSM +N-NSM +P-1NS +A-GSN +N-GSN +T-ASF +N-ASF +D-ASF +V-ADI-1S +CONJ +T-NSM +N-NSM +V-IAI-3S +CONJ +P-1NS +CONJ +V-RPI-1S +CONJ +ADV +V-2AAI-3P +PREP +P-GSM +T-NPM +V-PAP-NPM +P-ASM +V-PAN +CONJ +CONJ +T-NSM +N-NSM +V-AOI-3S +V-2AAP-NSM +CONJ +A-NSM +V-PAI-3S +CONJ +CONJ +P-ASM +V-IAI-3S +V-RAP-NSM +CONJ +T-DSF +ADV +V-PNP-NSM +V-2AAN +T-ASN +A-ASN +T-ASN +I-ASN +V-PPI-3S +PREP +T-GPM +A-GPM +V-AAI-3S +P-ASM +CONJ +V-AAI-3S +V-2AAN +T-APM +N-APM +CONJ +A-ASN +T-ASN +N-ASN +CONJ +V-2AAP-NSM +T-ASM +N-ASM +V-AAI-3S +PREP +P-APM +CONJ +T-NSM +N-NSM +V-AAP-NSM +T-DSN +N-DSN +V-2AAI-3S +N-VPM +N-VPM +P-1NS +A-DSF +N-DSF +A-DSF +V-RPI-1S +T-DSM +N-DSM +ADV +D-GSF +T-GSF +N-GSF +CONJ +T-NSM +N-NSM +N-NSM +V-AAI-3S +T-DPM +V-RAP-DPM +P-DSM +V-PAN +P-GSM +T-ASN +N-ASN +ADV +T-NSM +N-NSM +PREP +P-ASM +V-2AAI-3S +V-PAN +P-2AS +V-PAI-3S +T-NSM +N-NSM +N-VSM +V-RPP-VSM +CONJ +P-2NS +V-PNI-2S-ATT +V-PAP-NSM +P-1AS +PREP +T-ASM +N-ASM +CONJ +V-PAP-NSM +V-PAI-2S +P-1AS +V-PPN +CONJ +T-NPM +V-RAP-NPM +V-2AAI-3P +T-ASM +N-ASM +T-GSM +N-GSM +V-PAI-2S +PRT +V-IAI-3S +T-NSM +N-NSM +PRT-N +V-2LAI-1S +N-VPM +CONJ +V-PAI-3S +N-NSM +CONJ +V-RPI-3S +CONJ +N-ASM +T-GSM +N-GSM +P-2GS +PRT-N +V-FAI-2S +ADV +CONJ +T-NSM +N-NSM +V-2AAP-NSM +CONJ +T-NSN +A-NSN +N-NSN +V-PAI-3S +N-GPM +CONJ +T-NSN +A-NSN +N-GPM +V-IAI-3S +PREP +T-DSN +N-DSN +N-VPM +N-VPM +P-1NS +N-NSM +V-PAI-1S +N-NSM +N-GPM +PREP +N-GSF +CONJ +N-GSF +A-GPM +V-PPI-1S +CONJ +D-ASN +P-GSM +V-PAP-GSM +V-2ADI-3S +N-NSF +T-GPM +N-GPM +CONJ +N-GPM +CONJ +V-API-3S +T-NSN +N-NSN +CONJ +N-NPM +V-PAI-3P +PRT-N +V-PAN +N-ASF +CONJ-N +N-ASM +CONJ-N +N-ASN +CONJ +N-NPM +V-PAI-3P +T-APN +A-APN +CONJ +V-2ADI-3S +N-NSF +A-NSF +CONJ +V-2AAP-NPM +X-NPM +T-GPM +N-GPM +T-GSN +N-GSN +T-GPM +N-GPM +V-INI-3P +V-PAP-NPM +A-ASN-N +A-ASN +V-PAI-1P +PREP +T-DSM +N-DSM +D-DSM +CONJ +COND +N-NSN +V-AAI-3S +P-DSM +PRT +N-NSM +CONJ +A-GSF +N-GSF +V-PNP-GSF +T-NSM +N-NSM +V-AOP-NSM +PRT-N +V-APS-3S +T-NSM +N-NSM +PREP +P-GPM +V-AAI-3S +T-ASN +N-ASN +V-2AAP-ASN +V-AAN +P-ASM +PREP +A-GSN +P-GPM +PRT +V-PAN +PREP +T-ASF +N-ASF +CONJ +T-DSF +V-PAP-DSF +N-DSF +V-2AAP-NSM +P-DSM +T-NSM +N-NSM +V-2AAI-3S +V-PAM-2S +CONJ +ADV +V-ADI-2S +T-APN +PREP +P-1GS +PREP +N-PRI +ADV +V-PAI-3S +P-2AS +CONJ +PREP +N-ASF +V-AAN +CONJ +V-2ADP-GSF +N-GSF +V-AAP-NPM +N-ASF +T-NPM +A-NPM +V-AAI-3P +F-3APM +V-PAP-NPM +CONJ-N +V-2AAN +CONJ-N +V-2AAN +ADV +R-GSM +V-AAS-3P +T-ASM +N-ASM +CONJ +V-IAI-3P +A-NPM-C +A-NUI +T-NPM +D-ASF +T-ASF +N-ASF +V-AMP-NPM +R-NPM +V-2AAP-NPM +T-DPM +N-DPM +CONJ +T-DPM +A-DPM-C +V-2AAI-3P +N-DSN +V-AAI-1P +F-1APM +A-GSN-N +V-ADN +ADV +R-GSM +V-PAS-1P +T-ASM +N-ASM +CONJ +ADV +P-2NP +V-AAM-2P +T-DSM +N-DSM +PREP +T-DSN +N-DSN +ADV +V-2AAS-3S +P-ASM +PREP +P-2AP +ADV +V-PAP-APM +V-PAN +ADV-C +T-APN +PREP +P-GSM +CONJ +P-1NP +PREP +T-GSN +V-AAN +P-ASM +A-NPM +V-PAI-1P +T-GSN +V-2AAN +P-ASM +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +N-GSM +V-AAP-NSM +T-ASF +N-ASF +V-2ADP-NSM +CONJ +V-2AAP-NSM +PREP +T-ASF +N-ASF +V-AAI-3S +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +V-ADP-NSM +A-ASM +T-GPM +N-GPM +V-IAI-3S +T-ASM +N-ASM +D-ASM +V-PAM-2S +PREP +T-ASM +N-ASM +CONJ +V-PAI-3S +V-AAN +X-ASN +P-DSM +PRT +CONJ +T-NSM +V-2AAP-NSM +P-ASM +V-2AAI-3S +PREP +T-ASM +N-ASM +CONJ +V-PAI-3S +T-NSM +N-NSM +N-NSM +V-ADP-NSM +P-1AS +V-AAI-3S +D-ASM +T-ASM +N-ASM +V-2AAN +PREP +P-2AS +V-PAP-ASM +X-ASN +V-AAN +P-2DS +CONJ +T-NSM +N-NSM +V-2ADP-NSM +T-GSF +N-GSF +P-GSM +CONJ +V-AAP-NSM +PREP +A-ASF +V-INI-3S +I-NSN +V-PAI-3S +R-ASN +V-AAN +P-1DS +V-PAI-2S +CONJ +V-2AAI-3S +CONJ +T-NPM +A-NPM +V-2AMI-3P +T-GSN +V-AAN +P-2AS +ADV +ADV +T-ASM +N-ASM +V-2AAS-2S +PREP +T-ASN +N-ASN +ADV +V-PAP-NSM +X-ASN +ADV-C +V-PNN +PREP +P-GSM +CONJ +P-2NS +PRT-N +V-APS-2S +P-DPM +CONJ +V-PAI-3P +P-ASM +PREP +P-GPM +N-NPM +A-NPM-C +A-NUI +R-NPM +V-AAI-3P +F-3APM +CONJ-N +V-2AAN +CONJ-N +V-2AAN +ADV +R-GSM +V-2AAS-3P +P-ASM +CONJ +ADV +V-PAI-3P +A-NPM +V-PNP-NPM +T-ASF +PREP +P-2GS +N-ASF +PRT +CONJ +T-NSM +N-NSM +V-AAI-3S +T-ASM +N-ASM +V-AAP-NSM +A-DSM-N +V-AAN +CONJ +D-APN +V-AAI-2S +PREP +P-1AS +CONJ +V-ADP-NSM +X-APM +A-NUI +T-GPM +N-GPM +V-2AAI-3S +V-AAM-2P +N-APM +A-APM +CONJ +N-APM +A-NUI +CONJ +N-APM +A-APM +ADV +V-AOS-3P +ADV +N-GSF +PREP +A-GSF +N-GSF +T-GSF +N-GSF +PRT +N-APN +V-AAN +CONJ +V-AAP-NPM +T-ASM +N-ASM +V-AAS-3P +PREP +N-ASM +T-ASM +N-ASM +V-AAP-NSM +N-ASF +V-PAP-ASF +T-ASM +N-ASM +D-ASM +N-NSM +N-NSM +T-DSM +A-DSM-S +N-DSM +N-DSM +V-PAN +T-ASM +N-ASM +D-ASM +V-APP-ASM +PREP +T-GPM +A-GPM +CONJ +V-PAP-ASM +V-PPN +PREP +P-GPM +V-2AAP-NSM +PREP +T-DSN +N-DSN +V-2AMI-1S +V-2AAP-NSM +CONJ +A-NSM +V-PAI-3S +PRT +V-PNP-NSM +V-2AAN +T-ASF +N-ASF +PREP +R-ASF +V-IAI-3P +P-DSM +V-2AAI-1S +PREP +T-ASN +N-ASN +P-GPM +V-2AAI-1S +R-ASM +V-PPP-ASM +PREP +N-GPN +T-GSM +N-GSM +P-GPM +CONJ +A-ASN-N +A-ASN +N-GSM +PRT +N-GPN +N-ASN +V-PAP-ASM +CONJ +V-APP-GSF +P-1DS +N-GSF +PREP +T-ASM +N-ASM +V-FDN +ADV +V-AAI-1S +PREP +P-2AS +V-AAP-NSM +CONJ +T-DPM +N-DPM +V-PAN +PREP +P-ASM +PREP +P-2GS +PRT +CONJ +T-NPM +N-NPM +PREP +T-ASN +V-RPP-ASN +P-DPM +V-2AAP-NPM +T-ASM +N-ASM +V-2AAI-3P +PREP +N-GSF +PREP +T-ASF +N-ASF +CONJ +T-DSF +ADV +V-AAP-NPM +T-APM +N-APM +V-PNN +PREP +P-DSM +V-AAI-3P +PREP +T-ASF +N-ASF +R-NPM +V-2AAP-NPM +PREP +T-ASF +N-ASF +CONJ +V-2AAP-NPM +T-ASF +N-ASF +T-DSM +N-DSM +V-AAI-3P +CONJ +T-ASM +N-ASM +P-DSM +CONJ +V-2AAP-NSM +CONJ +V-AAP-NSM +PREP +I-GSF +N-GSF +V-PAI-3S +CONJ +V-2ADP-NSM +CONJ +PREP +N-GSF +V-IAI-3S +V-FDI-1S +P-2GS +CONJ +CONJ +T-NPM +N-NPM +P-2GS +V-2ADS-3P +V-AAP-NSM +PREP +T-DSN +N-DSN +T-GSM +N-GSM +V-PMN +P-ASM +CONJ +PREP +A-NUI +N-APF +V-2AAI-3S +T-NSM +N-NSM +N-NSM +PREP +A-GPM-C +X-GPM +CONJ +N-GSM +N-GSM +X-GSM +R-NPM +V-AAI-3P +T-DSM +N-DSM +PREP +T-GSM +N-GSM +CONJ +V-APP-GSM +P-GSM +V-ADI-3S +V-PAN +T-NSM +N-NSM +V-PAP-NSM +A-GSF +N-GSF +V-PAP-NPM +PREP +P-2GS +CONJ +N-GPN +V-PNP-GPN +T-DSN +N-DSN +D-DSN +PREP +T-GSF +S-2SGSF +N-GSF +PRT +ADV +CONJ +ADV +V-PNI-1P +PREP +A-GSF +N-GSF +A-VSM-S +N-VSM +CONJ +CONJ +PRT-N +PREP +A-ASN-C +P-2AS +V-PAS-1S +V-PAI-1S +V-AAN +P-2AS +P-1GP +ADV +T-DSF +S-2SDSF +N-DSF +CONJ +V-2AAP-NPM +T-ASM +N-ASM +D-ASM +N-ASM +CONJ +V-PAP-ASM +N-APF +A-DPM +T-DPM +A-DPM +T-DPM +PREP +T-ASF +N-ASF +PRT +N-ASM-S +T-GSF +T-GPM +N-GPM +N-GSF +R-NSM +CONJ +T-ASN +N-ASN +V-AAN +V-AAI-3S +R-ASM +CONJ +V-AAI-1P +PREP +R-GSM +V-FDI-2S +P-NSM +V-AAP-NSM +PREP +A-GPN +D-GPN +V-2AAN +R-GPN +P-1NP +V-PAI-1P +P-GSM +CONJ +V-2AMI-3P +CONJ +T-NPM +A-NPM +V-PAP-NPM +D-APN +ADV +V-PAN +PRT +V-ADI-3S +T-NSM +N-NSM +V-AAP-GSM +P-DSM +T-GSM +N-GSM +V-PAN +PREP +A-GPN +N-GPN +V-PAP-ASM +P-2AS +N-ASM +T-DSN +N-DSN +D-DSN +V-PNP-NSM +ADV +T-APN +PREP +F-1GSM +V-PNI-1S +V-PNP-GSM +P-2GS +V-2AAN +CONJ +PRT-N +A-NPF-C +V-PAI-3P +P-1DS +N-NPF +A-NUI +PREP +R-GSF +V-2AAI-1S +V-FAP-NSM +PREP +N-PRI +CONJ +V-2AAI-3P +P-1AS +PREP +X-ASM +V-PNP-ASM +PRT +N-ASF +N-GSM +V-PAP-ASM +CONJ-N +PREP +T-DSN +N-DSN +CONJ-N +PREP +T-DPF +N-DPF +CONJ-N +PREP +T-ASF +N-ASF +CONJ-N +V-PNI-3P +V-AAN +P-2DS +PREP +R-GPN +ADV +V-PAI-3P +P-1GS +CONJ +V-PAI-1S +D-ASN +P-2DS +CONJ +PREP +T-ASF +N-ASF +R-ASF +V-PAI-3P +N-ASF +ADV +V-PAI-1S +T-DSM +A-DSM +N-DSM +V-PAP-NSM +A-DPN +T-DPN +PREP +T-ASM +N-ASM +CONJ +T-DPN +PREP +T-DPM +N-DPM +V-RPP-DPN +V-PAP-NSM +N-ASF +PREP +T-ASM +N-ASM +R-ASF +CONJ +P-NPM +D-NPM +V-PNI-3P +V-PAN +V-FDN +N-ASF +PRT +A-GPM +CONJ +A-GPM +PREP +D-DSN +CONJ +P-NSM +V-PAI-1S +A-ASF +N-ASF +V-PAN +PREP +T-ASM +N-ASM +CONJ +T-APM +N-APM +PREP +A-GSN +CONJ +PREP +N-GPN +A-GPN-C +N-APF +V-FAP-NSM +PREP +T-ASN +N-ASN +P-1GS +V-2ADI-1S +CONJ +N-APF +PREP +R-DPF +V-2AAI-3P +P-1AS +V-RPP-ASM +PREP +T-DSN +N-DSN +PRT-N +PREP +N-GSM +CONJ-N +PREP +N-GSM +CONJ +X-NPM +PREP +T-GSF +N-GSF +A-NPM +R-APM +PREP +P-2GS +V-PAN +CONJ +V-PAN +V-IAI-3S +COND +X-ASN +V-PAO-3P +PREP +P-1AS +PRT +P-NPM +D-NPM +V-2AAM-3P +I-ASN +N-ASN +V-2AAI-3P +V-2AAP-GSM +P-1GS +PREP +T-GSN +N-GSN +PRT +PREP +A-GSF +D-GSF +N-GSF +R-GSF +V-AAI-1S +PREP +P-DPM +V-RAP-NSM +CONJ +PREP +N-GSF +A-GPM +P-1NS +V-PPI-1S +ADV +PREP +P-2GP +CONJ +V-2AMI-3S +P-APM +T-NSM +N-NSM +ADV-C +V-RAP-NSM +T-APN +PREP +T-GSF +N-GSF +V-2AAP-NSM +CONJ +N-NSM +T-NSM +N-NSM +V-2AAS-3S +V-FDI-1S +T-APN +PREP +P-2AP +V-AMP-NSM +T-DSM +N-DSM +V-PPN +P-ASM +PRT +V-PAN +N-ASF +CONJ +V-PAN +A-ASM-N +T-GPM +A-GPM +P-GSM +V-PAN +P-DSM +CONJ +PREP +N-APF +X-APF +T-NSM +N-NSM +V-2ADP-NSM +PREP +N-DSF +T-DSF +A-DSF +N-DSF +V-PAP-DSF +A-DSF +V-AMI-3S +T-ASM +N-ASM +CONJ +V-AAI-3S +P-GSM +PREP +T-GSF +PREP +N-ASM +N-ASM +N-GSF +CONJ +V-PNP-GSM +P-GSM +PREP +N-GSF +CONJ +N-GSF +CONJ +T-GSN +N-GSN +T-GSN +V-PAP-GSN +A-NSM +V-2ADP-NSM +T-NSM +N-NSM +V-ADI-3S +T-ASN +ADV +V-PAP-ASN +V-PNM-2S +CONJ +N-ASM +V-2AAP-NSM +V-FMI-1S +P-2AS +ADV +CONJ +V-PAP-NSM +CONJ +N-APN +V-FPI-3S +P-DSM +PREP +T-GSM +N-GSM +CONJ +CONJ +A-ASN-C +P-ASM +V-PMP-NSM +V-IAI-3S +P-DSM +CONJ +N-GSF +V-APP-GSF +V-2AAI-3S +T-NSM +N-NSM +N-ASM +N-ASM +N-ASM +PRT +V-PAP-NSM +N-ASF +V-2AMN +T-DPM +A-DPM +T-NSM +N-NSM +V-2AAI-3S +T-ASM +N-ASM +V-RPP-ASM +CONJ +N-NSM +V-2AAP-NSM +T-DSF +A-DSF +PREP +A-APF +N-APF +V-2AAI-3S +PREP +N-APN +PREP +N-GSF +PRT +V-AAI-3P +P-DSM +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-S +T-GPM +A-GPM +PREP +T-GSM +N-GSM +CONJ +V-IAI-3P +P-ASM +V-PMP-NPM +N-ASF +PREP +P-GSM +ADV +V-AMS-3S +P-ASM +PREP +N-PRI +N-ASF +V-PAP-NPM +V-2AAN +P-ASM +PREP +T-ASF +N-ASF +PRT +CONJ +T-NSM +N-NSM +V-ADI-3S +V-PPN +T-ASM +N-ASM +PREP +N-ASF +CONJ +F-3ASM +V-PAN +PREP +N-DSN +V-PNN +CONJ +V-PAI-3S +T-NPM +PREP +P-2DP +A-NPM +V-2AAP-NPM +V-PAM-3P +P-GSM +COND +X-NSN +A-NSN +V-PAI-3S +PREP +T-DSM +N-DSM +CONJ +V-AAP-NSM +PREP +P-DPM +N-APF +PRT-N +A-APF-C +A-NUI +PRT +A-NUI +V-2AAP-NSM +PREP +N-ASF +T-DSF +ADV +V-AAP-NSM +PREP +T-GSN +N-GSN +V-AAI-3S +T-ASM +N-ASM +V-APN +CONJ +V-2ADP-GSM +P-GSM +V-2AAI-3P +P-ASM +T-NPM +PREP +N-GPN +V-RAP-NPM +A-NPM +A-APN +CONJ +A-APN +N-APN +V-PAP-NPM +R-APN +V-AAN +PRT-N +V-IAI-3P +T-GSM +N-GSM +V-PNP-GSM +CONJ +CONJ-N +PREP +T-ASM +N-ASM +T-GPM +A-GPM +CONJ-N +PREP +T-ASN +N-ASN +CONJ-N +PREP +N-ASM +X-ASN +V-2AAI-1S +CONJ +T-NSM +N-NSM +V-PAP-NSM +T-DPM +A-DPM +N-ASF +V-2AMN +V-AOP-NSM +T-DSM +N-DSM +V-2AAI-3S +V-PAI-2S +PREP +N-APN +V-2AAP-NSM +ADV +PREP +D-GPN +V-APN +PREP +P-1GS +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +T-GSN +N-GSN +N-GSM +V-RAP-NSM +V-PAI-1S +ADV +P-1AS +V-PPN +V-PAI-3S +A-APM +A-ASN-N +V-RAI-1S +ADV +CONJ +P-2NS +ADV-C +V-PAI-2S +CONJ +PRT +COND +V-PAI-1S +CONJ +A-ASN +N-GSM +X-ASN +V-RAI-1S +PRT-N +V-PNI-1S +T-ASN +V-2AAN +CONJ +COND +A-NSN-N +V-PAI-3S +R-GPN +D-NPM +V-PAI-3P +P-1GS +A-NSM-N +V-PNI-3S +P-1AS +P-DPM +V-ADN +N-ASM +V-PMI-1S +ADV +T-NSM +N-NSM +V-AAP-NSM +PREP +T-GSN +N-GSN +V-ADI-3S +N-ASM +V-RMI-2S +PREP +N-ASM +V-FDI-2S +CONJ +N-GPF +X-GPF +V-2ADP-GPF +N-NSM +T-NSM +N-NSM +CONJ +N-NSF +V-AAI-3P +PREP +N-ASF +V-ADP-NPM +T-ASM +N-ASM +CONJ +ADV +A-APF-C +N-APF +V-IAI-3P +ADV +T-NSM +N-NSM +T-DSM +N-DSM +V-2AMI-3S +T-APN +PREP +T-ASM +N-ASM +V-PAP-NSM +N-NSM +X-NSM +V-PAI-3S +V-RPP-NSM +PREP +N-GSM +N-NSM +PREP +R-GSM +V-2ADP-GSM +P-1GS +PREP +N-APN +V-AAI-3P +T-NPM +N-NPM +CONJ +T-NPM +A-NPM-C +T-GPM +A-GPM +V-PMP-NPM +PREP +P-GSM +N-ASF +PREP +R-APM +V-ADI-1S +CONJ +PRT-N +V-PAI-3S +N-NSN +A-DPM +V-PNN +X-ASM +N-ASM +ADV +PRT +T-NSM +V-PPP-NSM +PREP +N-ASN +V-PAO-3S +T-APM +N-APM +PRT +N-ASM +N-GSF +V-2AAO-3S +PREP +T-GSN +N-GSN +CONJ +V-2AAP-GPM +ADV +N-ASF +A-ASF-N +V-AMP-NSM +T-DSF +ADV +V-AAP-NSM +PREP +T-GSN +N-GSN +V-AAI-1S +V-APN +T-ASM +N-ASM +PREP +R-GSM +V-APP-NPM +T-NPM +N-NPM +V-IAI-3P +A-ASF-N +N-ASF +R-GPN +P-1NS +V-IAI-1S +A-GPN +CONJ +N-APN +X-APN +PREP +T-GSF +A-GSF +N-GSF +V-IAI-3P +PREP +P-ASM +CONJ +PREP +X-GSM +N-GSM +V-RAP-GSM +R-ASM +V-PAN +V-IAI-3S +T-NSM +N-NSM +CONJ +P-1NS +V-PMP-NSM +T-ASF +PREP +D-GPN +N-ASF +V-IAI-1S +COND +V-PNO-3S +V-PNN +PREP +N-APN +ADV-K +V-PPN +PREP +D-GPN +CONJ +T-GSM +N-GSM +V-AMP-GSM +V-APN +P-ASM +PREP +T-ASF +T-GSM +A-GSM +N-ASF +V-AAI-1S +V-PPN +P-ASM +ADV +R-GSM +V-AAS-1S +P-ASM +PREP +N-ASM +CONJ +N-NSM +PREP +T-ASM +N-ASM +V-INI-1S +CONJ +P-NSM +T-GSM +N-GSM +V-AAN +V-PAI-3S +ADV +V-FDI-2S +P-GSM +CONJ +T-DSF +ADV +V-2AAP-GSM +T-GSM +N-GSM +CONJ +T-GSF +N-GSF +PREP +A-GSF +N-GSF +CONJ +V-2AAP-GPM +PREP +T-ASN +N-ASN +PREP +PRT +N-DPM +CONJ +N-DPM +T-DPM +PREP +N-ASF +T-GSF +N-GSF +CONJ +V-AAP-GSM +T-GSM +N-GSM +V-API-3S +T-NSM +N-NSM +CONJ +V-PAI-3S +T-NSM +N-NSM +N-VSM +N-VSM +CONJ +A-NPM +T-NPM +V-PAP-NPM +P-1DP +N-VPM +V-PAI-2P +D-ASM +PREP +R-GSM +A-NSN +T-NSN +N-NSN +T-GPM +A-GPM +V-2AAI-3P +P-1DS +PREP +PRT +N-DPN +CONJ +ADV +V-PAP-NPM +PRT-N +V-PAN +P-ASM +V-PAN +ADV-N +CONJ +P-1NS +V-2AMI-1S +A-ASN-N +A-ASN +N-GSM +P-ASM +V-RAN +CONJ +P-GSM +D-GSM +V-AMP-GSM +T-ASM +A-ASM +V-AAI-1S +V-PAN +PREP +R-GSM +A-ASN +X-ASN +V-AAN +T-DSM +N-DSM +PRT-N +V-PAI-1S +CONJ +V-2AAI-1S +P-ASM +PREP +P-2GP +CONJ +ADV-S +PREP +P-2GS +N-VSM +N-VSM +ADV +T-GSF +N-GSF +V-2ADP-GSF +V-2AAS-1S +I-ASN +V-AAS-1S +CONJ +A-NSN +P-1DS +V-PAI-3S +V-PAP-ASM +N-ASM +PRT-N +CONJ +T-APF +PREP +P-GSM +N-APF +V-AAN +CONJ +N-NSM +PREP +T-ASM +N-ASM +V-IAI-3S +V-PPI-3S +P-2DS +PREP +F-2GSM +V-PAN +ADV +T-NSM +N-NSM +V-AAP-NSM +T-ASF +N-ASF +V-INI-3S +N-VSM +N-VSM +PREP +A-GPN +R-GPN +V-PPI-1S +PREP +A-GPM +V-RNI-1S +F-1ASM +A-ASM +PREP +P-2GS +ADV +V-PNN +V-PAP-NSM +ADV-S +V-PAP-ASM +P-2AS +N-ASM +A-GPN +T-GPN +PREP +A-APM +PRT +N-GPN +CONJ +N-GPN +CONJ +V-PNI-1S +ADV +V-AAN +P-1GS +PRT +CONJ +T-ASF +N-ASF +P-1GS +PREP +N-GSF +T-ASF +PREP +N-GSF +V-2ADP-ASF +PREP +T-DSN +N-DSN +P-1GS +PRT +PREP +N-DPN +V-RAI-3P +A-NPM +A-NPM +V-PAP-NPM +P-1AS +ADV +COND +V-PAS-3P +V-PAN +CONJ +PREP +T-ASF +A-ASF-S +N-ASF +T-GSF +S-1PGSF +N-GSF +V-AAI-1S +N-NSM +CONJ +ADV +PREP +N-DSF +T-GSF +PREP +T-APM +N-APM +P-1GP +V-2ADP-GSF +PREP +T-GSM +N-GSM +N-GSF +V-RAI-1S +V-PPP-NSM +PREP +R-ASF +V-AAN +T-NSN +N-NSN +P-1GP +PREP +N-DSF +N-ASF +CONJ +N-ASF +V-PAP-NSN +V-PAI-3S +PREP +R-GSF +N-GSF +V-PPI-1S +PREP +A-GPM +N-VSM +I-ASN +A-ASM +V-PPI-3S +PREP +P-2DP +COND +T-NSM +N-NSM +A-APM +V-PAI-3S +PRT +CONJ +P-1NS +V-AAI-1S +F-1DSM +V-PAN +PREP +T-ASN +N-ASN +N-GSM +T-GSM +N-GSM +A-APN +A-APN +V-AAN +R-ASN +CONJ +V-AAI-1S +PREP +N-DPN +CONJ +PRT +A-APM +T-GPM +A-GPM +P-1NS +PREP +N-DPF +V-AAI-1S +T-ASF +PREP +T-GPM +N-GPM +N-ASF +V-2AAP-NSM +PRT +V-PPP-GPM +P-GPM +V-AAI-1S +N-ASF +CONJ +PREP +A-APF +T-APF +N-APF +ADV +V-PAP-NSM +P-APM +V-IAI-1S +V-PAN +PRT +ADV +V-PNP-NSM +P-DPM +V-IAI-1S +ADV +CONJ +PREP +T-APF +ADV +N-APF +PREP +R-DPN +V-PNP-NSM +PREP +T-ASF +N-ASF +PREP +N-GSF +CONJ +N-GSF +T-GSF +T-GPM +N-GPM +N-GSF +A-GSF +PREP +T-ASF +N-ASF +V-2AAI-1S +ADV +PREP +T-ASF +N-ASF +T-GSM +N-GSM +V-AAP-ASN +N-ASN +P-1AS +CONJ +T-APM +PREP +P-1DS +V-PNP-APM +N-VSM +PRT +A-GPM +P-1GP +V-2AAP-GPM +PREP +T-ASF +N-ASF +V-AAI-1S +N-ASF +V-PAP-ASF +PREP +P-1AS +T-DSF +N-DSF +N-DSF +N-PRI +N-PRI +I-ASN +P-1AS +V-PAI-2S +A-NSN +P-2DS +PREP +N-APN +V-PAN +CONJ +P-1NS +V-2AAI-1S +I-NSM +V-PAI-2S +N-VSM +CONJ +T-NSM +N-NSM +V-2AAI-3S +P-1NS +V-PAI-1S +N-NSM +R-ASM +P-2NS +V-PAI-2S +CONJ +V-2AAM-2S +CONJ +V-2AAM-2S +PREP +T-APM +N-APM +P-2GS +CONJ +PREP +D-ASN +V-API-1S +P-2DS +V-ADN +P-2AS +N-ASM +CONJ +N-ASM +PRT +R-GPN +V-2AAI-2S +P-1AS +PRT +R-GPN +V-FPI-1S +P-2DS +V-PMP-NSM +P-2AS +PREP +T-GSM +N-GSM +CONJ +PREP +T-GPN +N-GPN +PREP +R-APM +P-1NS +V-PAI-1S +P-2AS +V-AAN +N-APM +P-GPM +T-GSN +V-AAN +PREP +N-GSN +PREP +N-ASN +CONJ +T-GSF +N-GSF +T-GSM +N-GSM +PREP +T-ASM +N-ASM +T-GSN +V-2AAN +P-APM +N-ASF +N-GPF +CONJ +N-ASM +PREP +T-DPM +V-RPP-DPM +N-DSF +T-DSF +PREP +P-1AS +ADV +N-VSM +N-VSM +PRT-N +V-2ADI-1S +A-NSM +T-DSF +A-DSF +N-DSF +CONJ +PRT +T-DPM +PREP +N-DSF +ADV-S +CONJ +N-DPN +PRT +A-ASF +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +T-DPN +N-DPN +V-IAI-1S +V-PAN +CONJ +V-PAN +PREP +T-ASM +N-ASM +A-APN +T-GSF +N-GSF +N-APN +V-PAP-APM +PREP +D-GPN +A-NPM +P-1AS +V-2AMP-NPM +PREP +T-DSN +N-DSN +V-INI-3P +V-AMN +CONJ +V-2AAP-NSM +N-GSF +T-GSF +PREP +T-GSM +N-GSM +ADV +T-GSF +N-GSF +D-GSF +V-RAI-1S +V-PNP-NSM +PRT +A-DSM +CONJ +A-DSM +A-ASN-N +V-PAP-NSM +ADV +R-GPN +V-PAP-GPN +V-PNN +PRT +T-NPM +N-NPM +CONJ +N-NSM +V-AAI-3P +COND +A-NSM +T-NSM +N-NSM +COND +A-NSM-S +PREP +N-GSF +A-GPM +V-PAI-3S +N-ASN +V-PAN +PRT +T-DSM +N-DSM +CONJ +T-DPN +N-DPN +CONJ +D-APN +P-GSM +V-PNP-GSM +T-NSM +N-NSM +A-DSF +T-DSF +N-DSF +V-PAI-3S +V-PNI-2S +N-VSM +T-NPN +A-NPN +N-NPN +P-2AS +PREP +N-ASF +V-PAI-3S +CONJ +T-NSM +N-NSM +V-PAI-3S +A-VSM-S +N-VSM +PRT-N +V-PNI-1S +CONJ +N-GSF +CONJ +N-GSF +N-APN +V-PNI-1S +CONJ +V-PNI-3S +PREP +D-GPN +T-NSM +N-NSM +PREP +R-ASM +CONJ +V-PNP-NSM +V-PAI-1S +CONJ +V-PAN +P-ASM +D-GPN +PRT-N +V-PPI-1S +A-ASN-N +CONJ +PRT-N +V-PAI-3S +V-RPP-NSN +PREP +N-DSF +D-NSN +N-VSM +N-VSM +V-PAI-2S +T-DPM +N-DPM +V-RAI-1S +CONJ +V-PAI-2S +CONJ +T-NSM +N-NSM +PREP +T-ASM +N-ASM +PREP +A-DSN +P-1AS +V-PAI-2S +N-ASM +V-AAN +CONJ +T-NSM +N-NSM +PRT +V-ADO-1S +T-DSM +N-DSM +CONJ +PREP +A-DSN +CONJ +PREP +A-DSM +PRT-N +ADV +P-2AS +CONJ +CONJ +A-APM +T-APM +V-PAP-APM +P-1GS +ADV +V-2ADN +D-APM +A-NSM +CONJ +P-1NS +V-PAI-1S +ADV +T-GPN +N-GPN +D-GPN +V-2AAI-3S +PRT +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +PRT +T-NSF +N-NSF +CONJ +T-NPM +V-PNP-NPM +P-DPM +CONJ +V-AAP-NPM +V-IAI-3P +PREP +C-APM +V-PAP-NPM +CONJ +A-ASN-N +N-GSM +PRT +N-GPM +A-ASN +V-PAI-3S +T-NSM +N-NSM +D-NSM +CONJ +N-NSM +T-DSM +N-DSM +V-IAI-3S +V-RPN +V-INI-3S +T-NSM +N-NSM +D-NSM +COND +PRT-N +V-LDI-3S +N-ASM +CONJ +ADV +V-API-3S +T-GSN +V-PAN +P-1AP +PREP +T-ASF +N-ASF +V-IAI-3P +PRT +T-ASM +N-ASM +CONJ +X-APM +A-APM +N-APM +N-DSM +N-DSN +N-DSM +N-GSF +A-GSF +CONJ +V-2AAP-NPM +N-DSN +A-DSN +V-PAP-DSM +V-PAN +PREP +T-APM +PREP +T-ASF +N-ASF +N-APM +V-API-1P +V-PAP-GSM +PREP +P-1DP +N-GSM +N-GSM +N-GSM +PRT +T-DSF +A-DSF +V-2API-1P +PREP +N-ASF +PRT +T-NSM +N-NSM +ADV +T-DSM +N-DSM +V-ADP-NSM +V-AAI-3S +PREP +T-APM +A-APM +V-AOP-DSM +N-GSF +V-2AAN +ADV-K +V-APP-NPM +V-AAI-1P +T-ASF +N-ASF +PREP +T-ASN +T-APM +N-APM +V-PAN +A-APM +PRT +T-ASN +N-ASN +T-ASN +PREP +T-ASF +N-ASF +CONJ +N-ASF +V-AAP-NPM +V-2AAI-1P +PREP +N-APN +T-GSF +N-GSF +T-NSM +N-NSM +ADV-K +V-2AAP-NSM +N-ASN +A-ASN +V-PAP-ASN +PREP +T-ASF +N-ASF +V-AAI-3S +P-1AP +PREP +P-ASN +CONJ +PREP +A-DPF +N-DPF +V-PAP-NPM +CONJ +ADV +V-2ADP-NPM +PREP +T-ASF +N-ASF +PRT-N +V-PAP-GSM +P-1AP +T-GSM +N-GSM +V-AAI-1P +T-ASF +N-ASF +PREP +N-ASF +PRT +ADV +V-PNP-NPM +P-ASF +V-2AAI-1P +PREP +N-ASM +X-ASM +V-PPP-ASM +A-APM +N-APM +R-DSM +ADV +N-NSF +N-NSF +V-IAI-3S +CONJ +A-GSM +N-GSM +V-2ADP-GSM +CONJ +V-PAP-GSM +ADV +A-GSM +T-GSM +N-GSM +PREP +T-ASN +CONJ +T-ASF +N-ASF +ADV +V-2RAN +V-IAI-3S +T-NSM +N-NSM +V-PAP-NSM +P-DPM +N-VPM +V-PAI-1S +CONJ +PREP +N-GSF +CONJ +A-GSF +N-GSF +PRT-N +ADV +T-GSN +N-GSN +CONJ +T-GSN +N-GSN +CONJ +CONJ +T-GPF +N-GPF +P-1GP +V-FDN +V-PAN +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +T-DSM +N-DSM +CONJ +T-DSM +N-DSM +ADV +V-IPI-3S +PRT +T-DPN +PREP +N-GSM +V-PPP-DPN +CONJ +A-GSM +T-GSM +N-GSM +V-PAP-GSM +PREP +N-ASF +T-NPM +A-NPM-C +V-2AMI-3P +N-ASF +V-APN +ADV +COND +ADV-I +V-PNO-3P +V-AAP-NPM +PREP +N-ASM +N-ASM +T-GSF +N-GSF +V-PAP-ASM +PREP +N-ASM +CONJ +PREP +N-ASM +V-AAN +CONJ +V-AAP-GSM +N-GSM +V-AAP-NPM +T-GSF +N-GSF +V-RAN +V-AAP-NPM +ADV-C +V-INI-3P +T-ASF +N-ASF +CONJ +PREP +PRT-N +A-ASN +V-2AAI-3S +PREP +P-GSF +N-NSM +A-NSM +T-NSM +V-PPP-NSM +N-NSM +CONJ +V-APP-GSN +T-GSN +N-GSN +CONJ +PRT-N +V-PNP-GSN +V-PAN +T-DSM +N-DSM +V-2AAP-NPM +V-IPI-1P +CONJ +V-2AAP-NPM +N-ASN +X-ASN +V-PPP-ASN +N-PRI +V-AAI-1P +ADV +A-NPM +V-2ADN +T-GSF +N-GSF +R-ASF +V-AAP-NPM +N-DPF +V-INI-3P +V-PAP-NPM +T-ASN +N-ASN +PRT +V-PNP-NPM +PRT-N +PREP +T-ASF +N-ASF +V-2AAS-3P +V-AAP-NPM +T-ASN +N-ASN +ADV +V-IPI-3P +CONJ +ADV +V-PPP-GPM +P-1GP +T-DSF +ADV +N-ASF +V-IMI-3P +CONJ +T-DSF +A-DSF +A-NPM +T-ASF +N-ASF +T-GSN +N-GSN +V-AAI-3P +CONJ +CONJ-N +N-GSM +CONJ-N +N-GPN +V-PAP-GPN +PREP +A-APF-C +N-APF +PRT +N-GSM +PRT-N +A-GSM +V-PNP-GSM +A-ASN +V-IPI-3S +N-NSF +A-NSF +T-GSN +V-PPN +P-1AP +PRT +A-GSF +N-GSF +V-PAP-GSF +ADV +V-APP-NSM +T-NSM +N-NSM +PREP +A-DSN +P-GPM +V-2AAI-3S +INJ +N-VPM +PRT +V-IAI-3S +V-AAP-APM +P-1DS +PRT-N +V-PPN +PREP +T-GSF +N-GSF +PRT +V-AAN +T-ASF +N-ASF +D-ASF +CONJ +T-ASF +N-ASF +CONJ +T-APN +ADV +V-PAI-1S +P-2AP +V-PAN +CONJ +N-NSF +N-GSF +A-NSF-N +V-FDI-3S +PREP +P-2GP +ADV +T-GSN +N-GSN +CONJ +V-2AAI-3S +P-1DS +D-DSF +T-DSF +N-DSF +T-GSM +N-GSM +R-GSM +V-PAI-1S +R-DSM +CONJ +V-PAI-1S +N-NSM +V-PAP-NSM +PRT-N +V-PNM-2S +N-VSM +N-DSM +P-2AS +V-2AAN +V-PAI-3S +CONJ +V-2AMM-2S +V-RNI-3S +P-2DS +T-NSM +N-NSM +A-APM +T-APM +V-PAP-APM +PREP +P-2GS +CONJ +V-PAM-2P +N-VPM +CONJ +V-PAI-1S +T-DSM +N-DSM +CONJ +ADV +V-FDI-3S +PREP +R-ASM +N-ASM +V-RPI-3S +P-1DS +CONJ +V-PAI-3S +PREP +N-ASF +X-ASF +P-1AP +V-2AAN +CONJ +ADV +A-NSF +N-NSF +V-2ADI-3S +V-PPP-GPM +P-1GP +PREP +T-DSM +N-DSM +PREP +A-ASN +T-GSF +N-GSF +V-IAI-3P +T-NPM +N-NPM +V-PAN +X-ASF +N-ASF +P-DPM +CONJ +V-AAP-NPM +V-2AAI-3P +N-APF +A-NUI +CONJ +A-ASN +V-AAP-NPM +CONJ +ADV +V-AAP-NPM +V-2AAI-3P +N-APF +A-NUI +PRT +V-PNP-NPM +PRT-N +ADV +PREP +A-APM +N-APM +V-2AAS-1P +PREP +N-GSF +V-AAP-NPM +N-APF +A-APF +V-INI-3P +N-ASF +V-2ADN +CONJ +T-GPM +N-GPM +V-PAP-GPM +V-2AAN +PREP +T-GSN +N-GSN +CONJ +V-AAP-GPM +T-ASF +N-ASF +PREP +T-ASF +N-ASF +N-DSF +ADV +PREP +N-GSF +N-APF +V-PAN +V-PAP-GPM +V-2AAI-3S +T-NSM +N-NSM +T-DSM +N-DSM +CONJ +T-DPM +N-DPM +COND +PRT-N +D-NPM +V-AAS-3P +PREP +T-DSN +N-DSN +P-2NP +V-APN +PRT-N +V-PNI-2P +ADV +V-AAI-3P +T-NPM +N-NPM +T-APN +N-APN +T-GSF +N-GSF +CONJ +V-AAI-3P +P-ASF +V-2AAN +CONJ +ADV +R-GSN +N-NSF +V-IAI-3S-ATT +V-PNN +V-IAI-3S +T-NSM +N-NSM +A-APM +V-2AAN +N-GSF +V-PAP-NSM +A-ASF +N-ASF +ADV +V-PAP-NPM +A-NPM +V-PAI-2P +A-ASN-N +V-2AMP-NPM +CONJ +V-PAI-1S +P-2AP +V-2AAN +N-GSF +CONJ +D-NSN +PREP +T-GSF +S-2PGSF +N-GSF +V-PAI-3S +CONJ +A-GSM-N +P-2GP +N-NSF +PREP +T-GSF +N-GSF +V-2FMI-3S +CONJ +V-2AAP-NSM +D-APN +CONJ +V-2AAP-NSM +N-ASM +V-AAI-3S +T-DSM +N-DSM +PREP +A-GPM +CONJ +V-AAP-NSM +V-ADI-3S +V-PAN +CONJ +A-NPM +V-2ADP-NPM +A-NPM +CONJ +P-NPM +V-2AMI-3P +N-GSF +CONJ +V-IMI-1P +T-NPF +A-NPF +N-NPF +PREP +T-DSN +N-DSN +A-NPF +A-NUI +A-NUI +CONJ +V-APP-NPM +N-GSF +V-IAI-3P +T-ASN +N-ASN +V-PMP-NPM +T-ASM +N-ASM +PREP +T-ASF +N-ASF +CONJ +ADV +N-NSF +V-2ADI-3S +T-ASF +N-ASF +PRT-N +V-IAI-3P +CONJ +V-IAI-3P +N-ASM +X-ASM +V-PAP-ASM +N-ASM +PREP +R-ASM +V-AAN +T-ASN +N-ASN +V-INI-3P +COND +V-PNO-3P +CONJ +T-APF +N-APF +V-2AAP-NPM +V-IAI-3P +PREP +T-ASF +N-ASF +ADV +V-2AAP-NPM +T-APF +N-APF +T-GPN +N-GPN +CONJ +V-AAP-NPM +T-ASM +N-ASM +T-DSF +V-PAP-DSF +V-IAI-3P +PREP +T-ASM +N-ASM +CONJ +V-2AAP-NPM +PREP +N-ASM +A-ASM +V-AAI-3P +T-ASF +N-ASF +CONJ +PRT +T-NSF +N-NSF +V-AAP-NSF +V-AAI-3S +A-NSF +CONJ +T-NSF +N-NSF +V-IPI-3S +PREP +T-GSF +N-GSF +CONJ +T-GPM +N-GPM +N-NSF +V-2ADI-3S +CONJ +T-APM +N-APM +V-AAS-3P +PRT-N +X-NSM +V-AAP-NSM +V-2AAS-3S +CONJ +T-NSM +N-NSM +V-PNP-NSM +V-AAN +T-ASM +N-ASM +V-AAI-3S +P-APM +T-GSN +N-GSN +PRT +V-AAI-3S +T-APM +V-PNP-APM +V-PAN +V-AAP-APM +A-APM-S +PREP +T-ASF +N-ASF +V-PAN +CONJ +T-APM +A-APM +PRT +R-APM +PREP +N-DPF +CONJ +R-APM +PREP +X-GPN +T-GPN +PREP +T-GSN +N-GSN +CONJ +ADV +V-2ADI-3S +A-APM +V-APN +PREP +T-ASF +N-ASF +CONJ +V-APP-NPM +ADV +V-2AAI-1P +CONJ +N-NSF +T-NSF +N-NSF +V-PPI-3S +PRT +T-NPM +A-NPM +V-IAI-3P +T-ASF +PRT-N +V-2AAP-ASF +N-ASF +P-1DP +CONJ +V-AAP-NPM +N-ASF +V-2AMI-3P +A-APM +P-1AP +PREP +T-ASM +N-ASM +T-ASM +V-RAP-ASM +CONJ +PREP +T-ASN +N-ASN +CONJ +V-AAP-GSM +T-GSM +N-GSM +N-GPN +X-ASN +N-ASN +CONJ +V-2AAP-GSM +PREP +T-ASF +N-ASF +N-NSF +PREP +T-GSF +N-GSF +V-2AAP-NSF +V-AAI-3S +T-GSF +N-GSF +P-GSM +CONJ +ADV +V-2AAI-3P +T-NPM +A-NPM +V-PMP-ASN +T-ASN +N-ASN +PREP +T-GSF +N-GSF +P-GSM +PREP +C-APM +V-IAI-3P +ADV +N-NSM +V-PAI-3S +T-NSM +N-NSM +D-NSM +R-ASM +V-APP-ASM +PREP +T-GSF +N-GSF +V-PAN +T-NSF +N-NSF +PRT-N +V-AAI-3S +PRT +CONJ +T-NSM +V-AAP-NSM +T-ASN +N-ASN +PREP +T-ASN +N-ASN +V-2AAI-3S +A-ASN-N +A-ASN +CONJ +T-NPM +V-IAI-3P +P-ASM +V-PAN +V-PPN +PRT +V-PAN +ADV +A-ASM +CONJ +PREP +A-ASN +P-GPM +V-PAP-GPM +CONJ +V-PAP-GPM +A-ASN-N +A-ASN +PREP +P-ASM +V-PNP-ASN +V-2AMP-NPM +V-IAI-3P +P-ASM +V-PAN +N-ASM +CONJ +PREP +T-DPN +PREP +T-ASM +N-ASM +D-ASM +V-IAI-3S +N-NPN +T-DSM +A-DSM-S +T-GSF +N-GSF +N-DSN +N-DSM +R-NSM +V-ADP-NSM +P-1AP +N-APF +A-APF +ADV +V-AAI-3S +CONJ +V-2ADI-3S +T-ASM +N-ASM +T-GSM +N-GSM +N-DPM +CONJ +N-DSN +V-PPP-ASM +V-PNN +PREP +R-ASM +V-2AAP-NSM +CONJ +V-ADP-NSM +T-NSM +N-NSM +V-2AAP-NSM +T-APF +N-APF +P-DSM +V-ADI-3S +P-ASM +CONJ +D-GSN +V-2ADP-GSN +CONJ +T-NPM +A-NPM +T-NPM +PREP +T-DSF +N-DSF +V-PAP-NPM +N-APF +V-INI-3P +CONJ +V-IPI-3P +R-NPM +CONJ +A-DPF +N-DPF +V-AAI-3P +P-1AP +CONJ +V-PPP-DPM +V-2AMI-3P +T-APN +PREP +T-APF +N-APF +CONJ +PREP +A-APM +N-APM +V-API-1P +PREP +N-DSN +V-RAP-DSM +PREP +T-DSF +N-DSF +A-DSN +N-DSN +N-DPM +CONJ +V-APP-NPM +PREP +N-APF +V-AAI-1P +N-APF +A-APF +ADV +V-AAP-NPM +V-AAI-1P +PREP +N-ASN +CONJ +PREP +A-ASF +N-ASF +V-2ADP-GSM +N-GSM +A-NPM +V-2AAI-1P +PREP +N-APM +ADV +V-2AAP-NPM +N-APM +V-API-1P +PREP +P-DPM +V-AAN +N-APF +A-NUI +CONJ +ADV +PREP +T-ASF +N-ASF +V-2AAI-1P +ADV-K +T-NPM +N-NPM +V-AAP-NPM +T-APN +PREP +P-1GP +V-2AAI-3P +PREP +N-ASF +P-1DP +ADV +N-GSM +N-GSN +CONJ +A-GPF +N-GPF +R-APM +V-2AAP-NSM +T-NSM +N-NSM +V-AAP-NSM +T-DSM +N-DSM +V-2AAI-3S +N-ASN +CONJ +ADV +V-2AAI-1P +PREP +N-ASF +V-API-3S +T-DSM +N-DSM +V-PAN +PREP +F-3ASM +PREP +T-DSM +V-PAP-DSM +P-ASM +N-DSM +CONJ +V-2ADI-3S +PREP +N-APF +A-APF +V-AMN +P-ASM +T-APM +V-PAP-APM +T-GPM +A-GPM +A-APM-S +CONJ +V-2AAP-GPM +P-GPM +V-IAI-3S +PREP +P-APM +N-VPM +N-VPM +P-1NS +A-ASN-N +A-ASN +V-AAP-NSM +T-DSM +N-DSM +PRT +T-DPN +N-DPN +T-DPN +A-DPN +N-NSM +PREP +N-GPN +V-API-1S +PREP +T-APF +N-APF +T-GPM +A-GPM +R-NPM +V-AAP-NPM +P-1AS +V-INI-3P +V-AAN +PREP +T-ASN +A-ASF-N +N-ASF +N-GSM +V-PAN +PREP +P-1DS +CONJ +V-PAP-GPM +T-GPM +A-GPM +V-API-1S +V-AMN +N-ASM +PRT-N +ADV +T-GSN +N-GSN +P-1GS +X-ASN +V-PAN +V-PAP-NSM +CONJ +PREP +D-ASF +T-ASF +N-ASF +V-AAI-1S +P-2AP +V-2AAN +CONJ +V-AAN +CONJ +PREP +T-GSF +N-GSF +T-GSM +N-PRI +T-ASF +N-ASF +D-ASF +V-PNI-1S +CONJ +T-NPM +PREP +P-ASM +V-2AAI-3P +CONJ-N +P-1NP +N-APN +PREP +P-2GS +V-ADI-1P +PREP +T-GSF +N-GSF +CONJ-N +V-2ADP-NSM +X-NSM +T-GPM +N-GPM +V-AAI-3S +PRT +V-AAI-3S +X-ASN +PREP +P-2GS +A-ASN +CONJ +V-PAI-1P +PREP +P-2GS +V-AAN +R-APN +V-PAI-2S +CONJ +PRT +PREP +T-GSF +N-GSF +D-GSF +A-NSN +P-1DP +V-PAI-3S +CONJ +ADV +V-PPI-3S +CONJ +V-AMP-NPM +P-DSM +N-ASF +V-2AAI-3P +PREP +P-ASM +PREP +T-ASF +N-ASF +A-NPM-C +R-DPM +V-IMI-3S +V-PNP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +PRT +V-PAP-NSM +P-APM +PREP +T-GSM +N-GSM +PREP +PRT +T-GSM +N-GSM +N-GSM +CONJ +T-GPM +N-GPM +PREP +ADV +ADV +N-GSF +CONJ +PRT +T-NPM +V-IPI-3P +T-DPN +V-PPP-DPN +CONJ +T-NPM +V-IAI-3P +CONJ +A-NPM +V-PAP-NPM +PREP +C-APM +V-IMI-3P +V-2AAP-GSM +T-GSM +N-GSM +N-ASN +A-ASN +CONJ +ADV +T-NSN +N-NSN +T-NSN +A-NSN +V-AAI-3S +PREP +N-GSM +T-GSM +N-GSM +PREP +T-APM +N-APM +P-2GP +V-PAP-NSM +V-AOM-2S +PREP +T-ASM +N-ASM +D-ASM +CONJ +V-2AAM-2S +N-DSF +V-FAI-2P +CONJ +PRT-N +PRT-N +V-2AAS-2P +CONJ +V-PAP-NPM +V-FAI-2P +CONJ +PRT-N +PRT-N +V-2AAS-2P +CONJ +V-API-3S +T-NSF +N-NSF +T-GSM +N-GSM +D-GSM +CONJ +T-DPN +N-DPN +ADV +V-AAI-3P +CONJ +T-APM +N-APM +P-GPM +V-AAI-3P +PRT-N +ADV +V-2AAS-3P +T-DPM +N-DPM +CONJ +T-DPN +N-DPN +V-AAS-3P +CONJ +T-DSF +N-DSF +V-2AAS-3P +CONJ +V-AAS-3P +CONJ +V-FDI-1S +P-APM +CONJ +A-NSN +V-PAM-3S +P-2DP +CONJ +T-DPN +N-DPN +V-2API-3S +D-NSN +T-NSN +A-NSN +T-GSM +N-GSM +P-NPM +CONJ +V-FDI-3P +CONJ +V-AAI-3S +N-ASF +A-ASF +PREP +A-DSN +N-DSN +CONJ +V-INI-3S +A-APM +T-APM +V-PNP-APM +PREP +P-ASM +V-PAP-NSM +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-PAP-NSM +T-APN +PREP +T-GSM +N-GSM +N-GSM +N-GSM +PREP +A-GSF +N-GSF +ADV +N-NSM +N-NSM +N-GSM +N-GSM +A-NSM +N-NSM +V-RPP-NSM +PREP +N-ASN +N-GSM +R-ASN +V-ADI-3S +PREP +T-GPM +N-GPM +P-GSM +PREP +N-DPF +A-DPF +PREP +T-GSM +N-GSM +P-GSM +T-GSM +V-2ADP-GSM +PREP +N-GSN +N-PRI +PREP +N-ASF +T-GSM +V-APP-GSM +N-GSM +N-GSM +PREP +N-DSF +PREP +N-ASN +N-GSF +PREP +N-GSF +A-GPM +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +PREP +R-GSM +V-2AAI-1P +N-ASF +CONJ +N-ASF +PREP +N-ASF +N-GSF +PREP +A-DPN +T-DPN +N-DPN +PREP +T-GSN +N-GSN +P-GSM +PREP +R-DPN +V-PAI-2P +CONJ +P-2NP +A-NPM +N-GSM +N-GSM +A-DPM +T-DPM +V-PAP-DPM +PREP +N-DSF +A-DPM +N-GSM +A-DPM +A-DPM +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +PRT +ADV-S +V-PAI-1S +T-DSM +N-DSM +P-1GS +PREP +N-GSM +N-GSM +PREP +A-GPM +P-2GP +CONJ +T-NSF +N-NSF +P-2GP +V-PPI-3S +PREP +A-DSM +T-DSM +N-DSM +CONJ +N-NSM +P-1GS +V-PAI-3S +T-NSM +N-NSM +R-DSM +V-PAI-1S +PREP +T-DSN +N-DSN +P-1GS +PREP +T-DSN +N-DSN +T-GSM +N-GSM +P-GSM +ADV +ADV +N-ASF +P-2GP +V-PMI-1S +ADV +PREP +T-GPF +N-GPF +P-1GS +V-PNP-NSM +COND +ADV-I +ADV +PRT +V-FPI-1S +PREP +T-DSN +N-DSN +T-GSM +N-GSM +V-2AAN +PREP +P-2AP +CONJ +V-PAI-1S +V-2AAN +P-2AP +CONJ +V-2AAS-1S +X-ASN +N-ASN +A-ASN +P-2DP +PREP +T-ASN +V-APN +P-2AP +CONJ +D-NSN +V-PAI-3S +V-APN +PREP +P-2DP +PREP +T-GSF +PREP +C-DPM +N-GSF +PRT +P-2GP +CONJ +P-1GS +CONJ +N-VPM +PRT-N +V-PAI-1S +P-2AP +V-PAN +CONJ +ADV +V-2AMI-1S +V-2AAN +PREP +P-2AP +CONJ +V-API-1S +ADV +T-GSM +ADV +CONJ +X-ASM +N-ASM +V-2AAS-1S +CONJ +PREP +P-2DP +ADV +CONJ +PREP +T-DPN +A-DPN +N-DPN +PRT +N-DPM +CONJ +A-DPM +PRT +A-DPM +CONJ +A-DPM +N-NSM +V-PAI-1S +ADV +T-NSN +PREP +P-1AS +A-NSN +CONJ +P-2DP +T-DPM +PREP +N-DSF +V-AMN +CONJ +PRT-N +V-PNI-1S +T-ASN +N-ASN +CONJ +N-NSF +N-GSM +V-PAI-3S +PREP +N-ASF +A-DSM +T-DSM +V-PAP-DSM +PRT +A-DSM +ADV-S +CONJ +N-DSM +CONJ +N-NSF +N-GSM +PREP +P-DSN +V-PPI-3S +PREP +N-GSF +PREP +N-ASF +ADV +V-RPI-3S +CONJ +T-NSM +A-NSM +PREP +N-GSF +V-FDI-3S +CONJ +V-PPI-3S +N-NSF +N-GSM +PREP +N-GSM +PREP +A-ASF +N-ASF +CONJ +N-ASF +N-GPM +T-GPM +T-ASF +N-ASF +PREP +N-DSF +V-PAP-GPM +CONJ +T-NSN +A-NSN +T-GSM +N-GSM +A-NSN +V-PAI-3S +PREP +P-DPM +CONJ +T-NSM +N-NSM +P-DPM +V-AAI-3S +CONJ +T-NPN +A-NPN +P-GSM +T-NSF +PRT +A-NSF +P-GSM +N-NSF +CONJ +N-NSF +PREP +N-GSF +N-GSM +T-DPN +N-DPN +V-PPP-NPN +V-PPI-3S +PREP +T-ASN +V-PAN +P-APM +A-APM +CONJ +V-2AAP-NPM +T-ASM +N-ASM +PRT-N +ADV +N-ASM +V-AAI-3P +PRT +V-AAI-3P +CONJ +V-API-3P +PREP +T-DPM +N-DPM +P-GPM +CONJ +V-API-3S +T-NSF +A-NSF +P-GPM +N-NSF +V-PAP-NPM +V-PAN +A-NPM +V-API-3P +CONJ +V-AAI-3P +T-ASF +N-ASF +T-GSM +A-GSM +N-GSM +PREP +N-DSN +N-GSF +A-GSM +N-GSM +CONJ +N-GPN +CONJ +A-GPN +CONJ +N-GPN +CONJ +V-AAI-3S +P-APM +T-NSM +N-NSM +PREP +T-DPF +N-DPF +T-GPF +N-GPF +P-GPM +PREP +N-ASF +T-GSN +V-PEN +T-APN +N-APN +P-GPM +PREP +P-DPM +R-NPM +V-AAI-3P +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-DSN +N-DSN +CONJ +V-ADI-3P +CONJ +V-AAI-3P +T-DSF +N-DSF +PREP +T-ASM +V-AAP-ASM +R-NSM +V-PAI-3S +A-NSM +PREP +T-APM +N-APM +HEB +PREP +D-ASN +V-AAI-3S +P-APM +T-NSM +N-NSM +PREP +N-APN +N-GSF +CONJ +PRT +T-NPF +A-NPF +P-GPM +V-AAI-3P +T-ASF +A-ASF +N-ASF +PREP +T-ASF +PREP +N-ASF +PRT +ADV +CONJ +T-NPM +A-NPM +V-2AAP-NPM +T-ASF +A-ASF +N-ASF +T-GSF +A-GSF +V-API-3P +PREP +T-DSF +N-DSF +P-GPM +PREP +C-APM +A-NPM +PREP +A-DPM +T-ASF +N-ASF +V-PNP-NPM +CONJ +T-ASF +N-ASF +R-ASF +V-IAI-3S +T-GSF +N-GSF +P-GPM +PREP +F-3DPM +V-PAP-NPM +CONJ +ADV +PRT-N +V-AAI-3P +T-ASM +N-ASM +V-PAN +PREP +N-DSF +V-AAI-3S +P-APM +T-NSM +N-NSM +PREP +A-ASM +N-ASM +V-PAN +T-APN +PRT-N +V-PAP-APN +V-RPP-APM +A-DSF +N-DSF +N-DSF +N-DSF +N-DSF +A-APM +N-GSM +N-GSM +N-GSF +N-GSM +N-GSF +N-APM +A-APM +A-APM +N-APM +A-APM +N-APM +N-APM +A-GPN +N-DPM +A-APM +A-APM +A-APM +A-APM +A-APM +R-NPM +T-ASN +N-ASN +T-GSM +N-GSM +V-2AAP-NPM +CONJ +T-NPM +T-APN +D-APN +V-PAP-NPM +A-NPM +N-GSM +V-PAI-3P +PRT-N +ADV +P-APN +V-PAI-3P +CONJ +CONJ +V-PAI-3P +T-DPM +V-PAP-DPM +CONJ +A-NSM +V-PAI-2S +INJ +N-VSM +A-NSM +T-NSM +V-PAP-NSM +CONJ +PREP +R-DSN +V-PAI-2S +T-ASM +A-ASM +F-2ASM +V-PAI-2S +CONJ +T-APN +P-APN +V-PAI-2S +T-NSM +V-PAP-NSM +CONJ +V-RAI-1P +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +V-PAI-3S +PREP +N-ASF +PREP +T-APM +T-APN +D-APN +V-PAP-APM +CONJ +V-PNI-2S +D-ASN +INJ +N-VSM +T-NSM +V-PAP-NSM +T-APM +T-APN +D-APN +V-PAP-APM +CONJ +V-PAP-NSM +P-APN +CONJ +P-2NS +V-FDI-2S +T-ASN +N-ASN +T-GSM +N-GSM +PRT +T-GSM +N-GSM +T-GSF +N-GSF +P-GSM +CONJ +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +V-PAI-2S +V-PAP-NSM +CONJ +T-NSN +A-NSN +T-GSM +N-GSM +PREP +N-ASF +P-2AS +V-PAI-3S +CONJ +PREP +T-ASF +N-ASF +P-2GS +CONJ +A-ASF +N-ASF +V-PAI-2S +F-2DSM +N-ASF +PREP +N-DSF +N-GSF +CONJ +N-GSF +N-GSF +T-GSM +N-GSM +R-NSM +V-FAI-3S +A-DSM +PREP +T-APN +N-APN +P-GSM +PRT +T-DPM +PREP +N-ASF +N-GSN +A-GSN +N-ASF +CONJ +N-ASF +CONJ +N-ASF +V-PAP-DPM +N-ASF +A-ASF +CONJ +T-DPM +PREP +N-GSF +CONJ +V-PAP-DPM +T-DSF +N-DSF +CONJ +V-PMP-DPM +T-DSF +N-DSF +N-NSF +CONJ +N-NSM +N-NSF +CONJ +N-NSF +PREP +A-ASF +N-ASF +N-GSM +T-GSM +V-PNP-GSM +T-ASN +A-ASN +PRT +A-GSM +ADV-S +CONJ +N-GSM +CONJ +N-NSF +CONJ +N-NSF +CONJ +N-NSF +A-DSM +T-DSM +V-PNP-DSM +T-ASN +A-ASN +PRT +A-DSM +ADV-S +CONJ +N-DSM +CONJ +PRT-N +V-PAI-3S +N-NSF +PREP +T-DSM +N-DSM +CONJ +K-NPM +ADV +V-2AAI-3P +ADV +CONJ +V-FMI-3P +CONJ +K-NPM +PREP +N-DSM +V-2AAI-3P +PREP +N-GSM +V-FPI-3P +CONJ +PRT-N +T-NPM +N-NPM +N-GSM +A-NPM +PREP +T-DSM +N-DSM +CONJ +T-NPM +N-NPM +N-GSM +V-FPI-3P +CONJ +CONJ +N-NPN +T-NPN +PRT-N +N-ASM +V-PAP-NPN +N-DSF +T-APN +T-GSM +N-GSM +V-PAS-3P +D-NPM +N-ASM +PRT-N +V-PAP-NPM +F-3DPM +V-PAI-3P +N-NSM +R-NPM +V-PMI-3P +T-ASN +N-ASN +T-GSM +N-GSM +A-ASN +PREP +T-DPF +N-DPF +P-GPM +V-PAP-GSF +P-GPM +T-GSF +N-GSF +CONJ +ADV +C-GPM +T-GPM +N-GPM +V-PAP-GPM +PRT +CONJ +V-PNP-GPM +N-DSF +PREP +R-DSF +V-PAI-3S +T-NSM +N-NSM +T-APN +A-APN +T-GPM +N-GPM +PREP +T-ASN +N-ASN +P-1GS +PREP +N-GSM +N-GSM +CONJ +COND +P-2NS +A-NSM +V-PPI-2S +CONJ +V-PNI-2S +N-DSM +CONJ +V-PNI-2S +PREP +N-DSM +CONJ +V-PAI-2S +T-ASN +N-ASN +CONJ +V-PAI-2S +T-APN +V-PAP-APN +V-PPP-NSM +PREP +T-GSM +N-GSM +PRT +V-2RAI-2S +F-2ASM +V-PAN +N-ASM +A-GPM +N-ASN +T-GPM +PREP +N-DSN +N-ASM +A-GPM +N-ASM +A-GPM +V-PAP-ASM +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +PREP +T-DSM +N-DSM +CONJ +T-NSM +V-PAP-NSM +A-ASM +F-2ASM +PRT-N +V-PAI-2S +T-NSM +V-PAP-NSM +PRT-N +V-PAN +V-PAI-2S +T-NSM +V-PAP-NSM +PRT-N +V-PAN +V-PAI-2S +T-NSM +V-PNP-NSM +T-APN +N-APN +V-PAI-2S +R-NSM +PREP +N-DSM +V-PNI-2S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +T-ASM +N-ASM +V-PAI-2S +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +PREP +P-2AP +V-PPI-3S +PREP +T-DPN +N-DPN +ADV +V-RPI-3S +CONJ +PRT +N-NSF +V-PAI-3S +COND +N-ASM +V-PAS-2S +CONJ +COND +N-NSM +N-GSM +V-PAS-2S +T-NSF +N-NSF +P-2GS +N-NSF +V-2RAI-3S +CONJ +COND +T-NSF +N-NSF +T-APN +N-APN +T-GSM +N-GSM +V-PAS-3S +PRT-N +T-NSF +N-NSF +P-GSM +PREP +N-ASF +V-FPI-3S +CONJ +V-FAI-3S +T-NSF +PREP +N-GSF +N-NSF +T-ASM +N-ASM +V-PAP-NSF +P-2AS +T-ASM +PREP +N-GSN +CONJ +N-GSF +N-ASM +N-GSM +CONJ +PRT-N +T-NSM +PREP +T-DSN +A-DSN +A-NSM +V-PAI-3S +CONJ-N +T-NSF +PREP +T-DSN +A-DSN +PREP +N-DSF +N-NSF +CONJ +T-NSM +PREP +T-DSN +A-DSN +A-NSM +CONJ +N-NSF +N-GSF +PREP +N-DSN +PRT-N +N-DSN +R-GSM +T-NSM +N-NSM +PRT-N +PREP +N-GPM +CONJ +PREP +T-GSM +N-GSM +CONJ +I-NSN +T-NSN +A-NSN +T-GSM +A-GSM +PRT +I-NSF +T-NSF +N-NSF +T-GSF +N-GSF +A-NSN +PREP +A-ASM +N-ASM +CONJ +PRT +ADV-S +CONJ +V-API-3P +T-APN +N-APN +T-GSM +N-GSM +CONJ +I-NSN +COND +V-AAI-3P +X-NPM +PRT-N +T-NSF +N-NSF +P-GPM +T-ASF +N-ASF +T-GSM +N-GSM +V-FAI-3S +PRT-N +V-2ADO-3S +CONJ +V-PNM-3S +T-NSM +N-NSM +A-NSM +CONJ +A-NSM +N-NSM +N-NSM +ADV +V-RPI-3S +ADV +PRT +V-APS-2S +PREP +T-DPM +N-DPM +P-2GS +CONJ +V-FAI-2S +PREP +T-DSN +V-PPN +P-2AS +CONJ +COND +T-NSF +N-NSF +P-1GP +N-GSM +N-ASF +V-PAI-3S +I-ASN +V-FAI-1P +PRT-N +A-NSM +T-NSM +N-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +PREP +N-ASM +V-PAI-1S +PRT-N +V-2ADO-3S +CONJ +ADV-I +V-FAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +COND +T-NSF +N-NSF +T-GSM +N-GSM +PREP +T-DSN +S-1SDSN +N-DSN +V-AAI-3S +PREP +T-ASF +N-ASF +P-GSM +I-ASN +ADV +P-1NS-K +ADV +A-NSM +V-PPI-1S +CONJ +PRT-N +ADV +V-PPI-1P +CONJ +ADV +V-PAI-3P +X-NPM +P-1AP +V-PAN +CONJ +V-AAS-1P +T-APN +A-APN +CONJ +V-2AAS-3S +T-NPN +A-NPN +R-GPM +T-NSN +N-NSN +A-NSN +V-PAI-3S +CONJ +I-NSN +V-PNI-1P +PRT-N +ADV +CONJ +V-ADI-1P +PRT +A-APM +CONJ +N-APM +A-APM +PREP +N-ASF +V-PAN +ADV +V-RPI-3S +CONJ +PRT-N +V-PAI-3S +A-NSM +CONJ-N +A-NSM +PRT-N +V-PAI-3S +T-NSM +V-PAP-NSM +PRT-N +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASM +N-ASM +A-NPM +V-AAI-3P +ADV +V-API-3P +PRT-N +V-PAI-3S +T-NSM +V-PAP-NSM +N-ASF +PRT-N +V-PAI-3S +ADV +A-GSM +N-NSM +V-RPP-NSM +T-NSM +N-NSM +P-GPM +T-DPF +N-DPF +P-GPM +V-IAI-3P +N-NSM +N-GPF +PREP +T-APN +N-APN +P-GPM +R-GPM +T-NSN +N-NSN +N-GSF +CONJ +N-GSF +V-PAI-3S +A-NPM +T-NPM +N-NPM +P-GPM +V-AAN +N-ASN +N-NSN +CONJ +N-NSF +PREP +T-DPF +N-DPF +P-GPM +CONJ +N-ASF +N-GSF +PRT-N +V-2AAI-3P +PRT-N +V-PAI-3S +N-NSM +N-GSM +PREP +T-GPM +N-GPM +P-GPM +CONJ +V-RAI-1P +CONJ +K-APN +T-NSM +N-NSM +V-PAI-3S +T-DPM +PREP +T-DSM +N-DSM +V-PAI-3S +CONJ +A-NSN +N-NSN +V-2APS-3S +CONJ +A-NSM +V-2ADS-3S +A-NSM +T-NSM +N-NSM +T-DSM +N-DSM +CONJ +PREP +N-GPN +N-GSM +PRT-N +V-FPI-3S +A-NSF +N-NSF +PREP +P-GSM +CONJ +PREP +N-GSM +N-NSF +N-GSF +CONJ +ADV +ADV +N-GSM +N-NSF +N-GSM +V-RPI-3S +V-PPP-NSF +PREP +T-GSM +N-GSM +CONJ +T-GPM +N-GPM +CONJ +N-NSF +N-GSM +PREP +N-GSF +N-GSM +N-GSM +PREP +A-APM +T-APM +V-PAP-APM +CONJ +PRT-N +V-PAI-3S +N-NSF +CONJ +A-NPM +V-2AAI-3P +CONJ +V-PPI-3P +T-GSF +N-GSF +T-GSM +N-GSM +V-PPP-NPM +ADV +T-DSF +P-GSM +N-DSF +PREP +T-GSF +N-GSF +T-GSF +PREP +N-DSM +N-DSM +R-ASM +V-2AMI-3S +T-NSM +N-NSM +N-ASN +PREP +N-GSF +PREP +T-DSN +P-GSM +N-DSN +PREP +N-ASF +T-GSF +N-GSF +P-GSM +PREP +T-ASF +N-ASF +T-GPN +V-2RAP-GPN +N-GPN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +PREP +T-ASF +N-ASF +T-GSF +N-GSF +P-GSM +PREP +T-DSM +ADV +N-DSM +PREP +T-ASN +V-PAN +P-ASM +A-ASM +CONJ +V-PAP-ASM +T-ASM +PREP +N-GSF +N-GSM +CONJ +ADV-I +T-NSF +N-NSF +V-API-3S +PREP +I-GSM +N-GSM +T-GPN +N-GPN +PRT-N +CONJ +PREP +N-GSM +N-GSF +CONJ +V-PNI-1P +V-PPN +N-DSF +N-ASM +ADV +N-GPN +N-GSM +PRT +A-GPM +T-NSM +N-NSM +ADV +PRT-I +CONJ +N-GPN +PRT +CONJ +N-GPN +COND +A-NSM +T-NSM +N-NSM +R-NSM +V-FAI-3S +N-ASF +PREP +N-GSF +CONJ +N-ASF +PREP +T-GSF +N-GSF +CONJ +N-ASM +V-PAI-1P +PREP +T-GSF +N-GSF +PRT-N +V-2ADO-3S +CONJ +N-ASM +V-PAI-1P +CONJ +V-FAI-1P +I-ASN +V-RAN +N-PRI +T-ASM +N-ASM +P-1GP +PREP +N-ASF +CONJ +COND +N-PRI +PREP +N-GPN +V-API-3S +V-PAI-3S +N-ASN +CONJ +PRT-N +PREP +N-ASM +CONJ +I-ASN +T-NSF +N-NSF +V-PAI-3S +CONJ +V-AAI-3S +N-PRI +T-DSM +N-DSM +CONJ +V-API-3S +P-DSM +PREP +N-ASF +CONJ +T-DSM +V-PNP-DSM +T-NSM +N-NSM +V-PNI-3S +PRT-N +PREP +N-ASF +CONJ +PREP +N-ASN +CONJ +T-DSM +PRT-N +V-PNP-DSM +CONJ +V-PAP-DSM +PREP +T-ASM +V-PAP-ASM +T-ASM +A-ASM +V-PNI-3S +T-NSF +N-NSF +P-GSM +PREP +N-ASF +ADV +CONJ +N-PRI +V-PAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +R-DSM +T-NSM +N-NSM +V-PNI-3S +N-ASF +ADV +N-GPN +A-NPM +R-GPM +T-NPF +N-NPF +V-API-3P +CONJ +R-GPM +T-NPF +N-NPF +V-API-3P +A-NSM +N-NSM +R-GSM +PRT-N +PRT-N +V-ADS-3S +N-NSM +N-ASF +CONJ +T-NSM +N-NSM +D-NSM +PREP +T-ASF +N-ASF +PRT +CONJ +PREP +T-ASF +N-ASF +CONJ +V-PAI-1P +V-API-3S +T-DSM +N-PRI +T-NSF +N-NSF +PREP +N-ASF +CONJ +ADV-I +V-API-3S +V-PAP-DSM +PREP +N-DSF +PRT +PREP +N-DSF +PRT-N +PREP +N-DSF +CONJ +PREP +N-DSF +CONJ +V-2AAI-3S +N-ASN +N-GSF +N-ASF +T-GSF +N-GSF +T-GSF +N-GSF +T-GSF +PREP +T-DSF +N-DSF +PREP +T-ASN +V-PAN +P-ASM +N-ASM +A-GPM +T-GPM +V-PAP-GPM +PREP +N-GSF +PREP +T-ASN +V-APN +P-DPM +T-ASF +N-ASF +CONJ +N-ASM +N-GSF +T-DPM +PRT-N +PREP +N-GSF +ADV +CONJ +CONJ +T-DPM +V-PAP-DPM +T-DPN +N-DPN +T-GSF +PREP +N-DSF +N-GSF +T-GSM +N-GSM +P-1GP +N-PRI +CONJ +PRT-N +PREP +N-GSM +T-NSF +N-NSF +T-NSN +N-ASM +N-GSM +P-ASM +V-PAN +T-DSM +N-PRI +PRT +T-DSN +N-DSN +P-GSM +CONJ +PREP +N-GSF +N-GSF +CONJ +COND +T-NPM +PREP +N-GSM +N-NPM +V-RPI-3S +T-NSF +N-NSF +CONJ +V-RPI-3S +T-NSF +N-NSF +CONJ +T-NSM +N-NSM +N-ASF +V-PNI-3S +CONJ +ADV +PRT-N +V-PAI-3S +N-NSM +CONJ-N +N-NSF +PREP +D-ASN +PREP +N-GSF +CONJ +PREP +N-ASF +PREP +T-ASN +V-PAN +A-ASF +T-ASF +N-ASF +A-DSN +T-DSN +N-DSN +PRT-N +T-DSN +PREP +T-GSM +N-GSM +ADV +CONJ +CONJ +T-DSN +PREP +N-GSF +N-PRI +R-NSM +V-PAI-3S +N-NSM +A-GPM +P-1GP +PREP +R-GSM +V-AAI-3S +N-GSM +T-GSM +V-PAP-GSM +T-APM +A-APM +CONJ +V-PAP-GSM +T-APN +PRT-N +V-PAP-APN +ADV +V-PAP-APN +ADV +V-RPI-3S +CONJ +N-ASM +A-GPN +N-GPN +V-RAI-1S +P-2AS +R-NSM +PREP +N-ASF +PREP +N-DSF +V-AAI-3S +PREP +T-ASN +V-2ADN +P-ASM +N-ASM +A-GPN +N-GPN +PREP +T-ASN +V-RPP-ASN-ATT +ADV +V-FDI-3S +T-NSN +N-NSN +P-2GS +CONJ +PRT-N +V-AAP-NSM +T-DSF +N-DSF +V-AAI-3S +T-ASN +F-3GSM +N-ASN +V-RPP-ASN +A-NSM +ADV +V-PAP-NSM +CONJ +T-ASF +N-ASF +T-GSF +N-GSF +N-GSF +CONJ +PREP +T-ASF +N-ASF +T-GSM +N-GSM +PRT-N +V-API-3S +T-DSF +N-DSF +CONJ +V-API-3S +T-DSF +N-DSF +V-2AAP-NSM +N-ASF +T-DSM +N-DSM +CONJ +V-APP-NSM +CONJ +V-PAI-3S +A-NSM +R-ASN +V-RNI-3S +CONJ +V-AAN +CONJ +CONJ +V-API-3S +P-DSM +PREP +N-ASF +CONJ +PRT-N +V-2API-3S +PREP +P-ASM +ADV +CONJ +V-API-3S +P-DSM +CONJ +CONJ +PREP +P-1AP +R-DPM +V-PPN +V-PAI-3S +T-DPM +V-PAP-DPM +PREP +T-ASM +V-AAP-ASM +PREP +A-GPM +N-ASM +T-ASM +N-ASM +P-1GP +R-NSM +V-API-3S +PREP +T-APN +N-APN +P-1GP +CONJ +V-API-3S +PREP +T-ASF +N-ASF +P-1GP +CONJ +V-APP-NPM +PREP +N-GSF +N-ASF +V-PAS-1P +PREP +T-ASM +N-ASM +PREP +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +R-GSM +CONJ +T-ASF +N-ASF +V-RAI-1P +T-DSF +N-DSF +PREP +T-ASF +N-ASF +D-ASF +PREP +R-DSF +V-RAI-1P +CONJ +V-PNI-1P +PREP +N-DSF +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +PRT-N +ADV +CONJ +CONJ +V-PNI-1P +PREP +T-DPF +N-DPF +V-RAP-NPM +CONJ +T-NSF +N-NSF +N-ASF +V-PNI-3S +CONJ +T-NSF +N-NSF +N-ASF +CONJ +T-NSF +N-NSF +N-ASF +CONJ +T-NSF +N-NSF +PRT-N +V-PAI-3S +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-RPI-3S +PREP +T-DPF +N-DPF +P-1GP +PREP +N-GSN +A-GSN +T-GSN +V-APP-GSN +P-1DP +CONJ +ADV +N-NSM +V-PAP-GPM +P-1GP +A-GPM +ADV +PREP +N-ASM +PREP +A-GPM +V-2AAI-3S +CONJ +ADV +PREP +A-GSM +X-NSM +V-FDI-3S +CONJ +PREP +T-GSM +A-GSM +ADV +X-NSM +CONJ +V-PAI-3S +V-2AAN +CONJ +V-PAI-3S +T-ASF +F-3GSM +N-ASF +PREP +P-1AP +T-NSM +N-NSM +CONJ +ADV +A-GPM +V-PAP-GPM +P-1GP +N-NSM +PREP +P-1GP +V-2AAI-3S +CONJ +A-DSN +ADV +V-APP-NPM +ADV +PREP +T-DSN +N-DSN +P-GSM +V-FPI-1P +PREP +P-GSM +PREP +T-GSF +N-GSF +CONJ +COND +A-NPM +V-PAP-NPM +V-2API-1P +T-DSM +N-DSM +PREP +T-GSM +N-GSM +T-GSM +N-GSM +P-GSM +A-DSN +ADV +V-2APP-NPM +V-FPI-1P +PREP +T-DSF +N-DSF +P-GSM +CONJ +PRT-N +ADV +CONJ +CONJ +V-PNP-NPM +PREP +T-DSM +N-DSM +PREP +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +R-GSM +ADV +T-ASF +N-ASF +V-2AAI-1P +PREP +D-ASN +ADV +PREP +A-GSM +N-GSM +T-NSF +N-NSF +PREP +T-ASM +N-ASM +V-2AAI-3S +CONJ +PREP +T-GSF +N-GSF +T-NSM +N-NSM +CONJ +ADV +PREP +A-APM +N-APM +T-NSM +N-NSM +V-2AAI-3S +PREP +R-DSN +A-NPM +V-2AAI-3P +CONJ +ADV +N-GSM +N-NSF +V-IAI-3S +PREP +N-DSM +CONJ +N-NSF +PRT-N +V-PPI-3S +PRT-N +V-PAP-GSM +N-GSM +CONJ +V-AAI-3S +T-NSM +N-NSM +PREP +N-PRI +ADV +N-GSM +CONJ +PREP +T-APM +PRT-N +V-AAP-APM +PREP +T-DSN +N-DSN +T-GSF +N-GSF +N-PRI +R-NSM +V-PAI-3S +N-NSM +T-GSM +V-PAP-GSM +CONJ +PRT-N +ADV +T-NSN +N-NSN +ADV +CONJ +T-NSN +N-NSN +CONJ +COND +T-DSN +T-GSM +A-GSM +N-DSN +T-NPM +A-NPM +V-2AAI-3P +A-DSN +ADV +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +PREP +N-DSF +T-DSF +T-GSM +A-GSM +N-GSM +N-GSM +N-GSM +PREP +T-APM +A-APM +V-AAI-3S +CONJ +PRT-N +ADV +PREP +A-GSM +V-AAP-GSM +T-NSN +N-NSN +CONJ +PRT +T-NSN +N-NSN +PREP +A-GSM +PREP +N-ASN +CONJ +T-NSN +N-NSN +PREP +A-GPN +N-GPN +PREP +N-ASN +CONJ +COND +T-DSN +T-GSM +A-GSM +N-DSN +T-NSM +N-NSM +V-AAI-3S +PREP +T-GSM +A-GSM +A-DSN +ADV +T-NPM +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +T-GSF +N-GSF +V-PAP-NPM +PREP +N-DSF +V-FAI-3P +PREP +T-GSM +A-GSM +N-GSM +N-GSM +PRT +CONJ +ADV +PREP +A-GSN +N-GSN +PREP +A-APM +N-APM +PREP +N-ASN +ADV +CONJ +PREP +A-GSN +N-GSN +PREP +A-APM +N-APM +PREP +N-ASF +N-GSF +CONJ +ADV +PREP +T-GSF +N-GSF +T-GSM +A-GSM +N-GSM +A-NPM +V-API-3P +T-NPM +A-NPM +ADV +CONJ +PREP +T-GSF +N-GSF +T-GSM +A-GSM +A-NPM +V-FPI-3P +T-NPM +A-NPM +CONJ +N-NSM +V-2AAI-3S +CONJ +V-AAS-3S +T-NSN +N-NSN +CONJ +ADV +V-AAI-3S +T-NSF +N-NSF +V-AAI-3S +T-NSF +N-NSF +CONJ +ADV +V-AAI-3S +T-NSF +N-NSF +PREP +T-DSM +N-DSM +ADV +CONJ +T-NSF +N-NSF +V-AAS-3S +PREP +N-GSF +PREP +N-ASF +A-ASF +PREP +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +CONJ +I-ASN +V-FAI-1P +V-PAS-1P +T-DSF +N-DSF +CONJ +T-NSF +N-NSF +V-AAS-3S +PRT-N +V-2ADO-3S +R-NPM +V-2AAI-1P +T-DSF +N-DSF +ADV-I +ADV +V-FAI-1P +PREP +P-DSF +PRT +V-PAI-2P +CONJ +K-NPM +V-API-1P +PREP +N-ASM +N-ASM +PREP +T-ASM +N-ASM +P-GSM +V-API-1P +CONJ +V-2API-1P +P-DSM +PREP +T-GSN +N-GSN +PREP +T-ASM +N-ASM +CONJ +ADV +V-API-3S +N-NSM +PREP +A-GPM +PREP +T-GSF +N-GSF +T-GSM +N-GSM +ADV +CONJ +P-1NP +PREP +N-DSF +N-GSF +V-AAS-1P +CONJ +COND +A-NPM +V-2RAI-1P +T-DSN +N-DSN +T-GSM +N-GSM +P-GSM +CONJ +CONJ +T-GSF +N-GSF +V-FDI-1P +D-ASN +V-PAP-NPM +CONJ +T-NSM +A-NSM +P-1GP +N-NSM +V-API-3S +CONJ +V-APS-3S +T-NSN +N-NSN +T-GSF +N-GSF +T-GSN +ADV-N +V-PAN +P-1AP +T-DSF +N-DSF +CONJ +T-NSM +V-2AAP-NSM +V-RPI-3S +PREP +T-GSF +N-GSF +CONJ +COND +V-2AAI-1P +PREP +N-DSM +V-PAI-1P +CONJ +CONJ +V-FAI-1P +P-DSM +V-RAP-NPM +CONJ +N-NSM +V-APP-NSM +PREP +A-GPM +ADV-N +V-PAI-3S +N-NSM +P-GSM +ADV-N +V-PAI-3S +CONJ +R-ASN +V-2AAI-3S +T-DSF +N-DSF +V-2AAI-3S +ADV +CONJ +R-ASN +V-PAI-3S +V-PAI-3S +T-DSM +N-DSM +ADV +CONJ +P-2NP +V-PNM-2P +F-2APM +V-PAN +PRT +A-APM +T-DSF +N-DSF +CONJ +V-PAP-APM +T-DSM +N-DSM +PREP +N-DSM +N-DSM +CONJ +PRT-N +V-PAM-3S +T-NSF +N-NSF +PREP +T-DSN +A-DSN +P-2GP +N-DSN +PREP +T-ASN +V-PAN +T-DPF +N-DPF +P-GSN +CONJ-N +V-PAM-2P +T-APN +N-APN +P-2GP +N-APN +N-GSF +T-DSF +N-DSF +CONJ +V-AAM-2P +F-2APM +T-DSM +N-DSM +ADV +PREP +A-GPM +V-PAP-APM +CONJ +T-APN +N-APN +P-2GP +N-APN +N-GSF +T-DSM +N-DSM +CONJ +N-NSF +P-2GP +PRT-N +V-FAI-3S +CONJ +PRT-N +V-PAI-2P +PREP +N-ASM +CONJ +PREP +N-ASF +CONJ +I-NSN +V-AAS-1P +CONJ +PRT-N +V-PAI-1P +PREP +N-ASM +CONJ +PREP +N-ASF +PRT-N +V-2ADO-3S +PRT-N +V-RAI-2P +CONJ +R-DSN +V-PAI-2P +F-2APM +N-APM +PREP +N-ASF +N-NPM +V-PAI-2P +R-DSN +V-PAI-2P +CONJ +N-GSF +PREP +N-ASM +PRT +N-GSF +PREP +N-ASF +CONJ +N-NSF +T-DSM +N-DSM +CONJ +V-IAI-2P +N-NPM +T-GSF +N-GSF +CONJ +V-AAI-2P +PREP +N-GSF +PREP +R-ASM +V-API-2P +N-ASM +N-GSF +CONJ +V-APP-NPM +PREP +T-GSF +N-GSF +V-API-2P +T-DSF +N-DSF +A-ASN +V-PAI-1S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +P-2GP +CONJ +ADV +V-AAI-2P +T-APN +N-APN +P-2GP +A-APN +T-DSF +N-DSF +CONJ +T-DSF +N-DSF +PREP +T-ASF +N-ASF +ADV +ADV +V-AAM-2P +T-APN +N-APN +P-2GP +A-APN +T-DSF +N-DSF +PREP +N-ASM +CONJ +ADV +N-NPM +T-GSF +N-GSF +V-IAI-2P +A-NPM +V-IAI-2P +T-DSF +N-DSF +CONJ +I-ASM +N-ASM +V-IAI-2P +ADV +PREP +R-DPN +ADV +V-PNI-2P +CONJ +T-NSN +N-NSN +D-GPM +N-NSM +CONJ +ADV +V-APP-NPM +PREP +T-GSF +N-GSF +CONJ +V-APP-NPM +T-DSM +N-DSM +V-PAI-2P +T-ASM +N-ASM +P-2GP +PREP +N-ASM +CONJ +T-NSN +N-NSN +N-ASF +A-ASF +CONJ +T-NPN +N-NPN +T-GSF +N-GSF +N-NSM +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +N-NSF +A-NSF +PREP +N-DSM +N-DSM +T-DSM +N-DSM +P-1GP +PRT +N-VPM +V-PAI-2P +CONJ +V-PAP-DPM +N-ASM +V-PAI-1S +CONJ +T-NSM +N-NSM +V-PAI-3S +T-GSM +N-GSM +PREP +K-ASM +N-ASM +V-PAI-3S +CONJ +T-NSF +A-NSF +N-NSF +T-DSM +V-PAP-DSM +N-DSM +V-RPI-3S +N-DSM +CONJ +COND +V-2AAS-3S +T-NSM +N-NSM +V-RPI-3S +PREP +T-GSM +N-GSM +T-GSM +N-GSM +PRT +CONJ +V-PAP-GSM +T-GSM +N-GSM +N-NSF +V-FAI-3S +COND +V-2ADS-3S +N-DSM +A-DSM +CONJ +COND +V-2AAS-3S +T-NSM +N-NSM +A-NSF +V-PAI-3S +PREP +T-GSM +N-GSM +T-GSN +PRT-N +V-PAN +P-ASF +N-ASF +V-2ADP-ASF +N-DSM +A-DSM +CONJ +N-VPM +P-1GS +CONJ +P-2NP +V-API-2P +T-DSM +N-DSM +PREP +T-GSN +N-GSN +T-GSM +N-GSM +PREP +T-ASN +V-2ADN +P-2AP +A-DSM +T-DSM +PREP +A-GPM +V-APP-DSM +CONJ +V-AAS-1P +T-DSM +N-DSM +CONJ +ADV +V-IAI-1P +PREP +T-DSF +N-DSF +T-NPN +N-NPN +T-GPF +N-GPF +T-NPN +PREP +T-GSM +N-GSM +V-IMI-3S +PREP +T-DPN +N-DPN +P-1GP +PREP +T-ASN +V-AAN +T-DSM +N-DSM +CONJ +ADV +V-API-1P +PREP +T-GSM +N-GSM +V-2AAP-NPM +PREP +R-DSM +V-IPI-1P +CONJ +V-PAN +P-1AP +PREP +N-DSF +N-GSN +CONJ +PRT-N +N-DSF +N-GSN +CONJ +I-ASN +V-FAI-1P +T-NSM +N-NSM +N-NSF +PRT-N +V-2ADO-3S +CONJ +T-ASF +N-ASF +PRT-N +V-2AAI-1S +COND +PRT-N +PREP +N-GSM +CONJ +PRT +T-ASF +N-ASF +PRT-N +V-2LAI-1S +COND +PRT-N +T-NSM +N-NSM +V-IAI-3S +PRT-N +V-FAI-2S +CONJ +N-ASF +V-2AAP-NSF +T-NSF +N-NSF +PREP +T-GSF +N-GSF +V-ADI-3S +PREP +P-1DS +A-ASF +N-ASF +CONJ +ADV +N-GSM +N-NSF +A-NSF +CONJ +P-1NS +V-IAI-1S +ADV +N-GSM +PRT +CONJ +V-2AAP-GSF +T-GSF +N-GSF +T-NSF +N-NSF +V-AAI-3S +CONJ +P-1NS +V-2AAI-1S +CONJ +V-API-3S +P-1DS +T-NSF +N-NSF +T-NSF +PREP +N-ASF +D-NSF +PREP +N-ASM +CONJ +T-NSF +N-NSF +N-ASF +V-2AAP-NSF +PREP +T-GSF +N-GSF +V-AAI-3S +P-1AS +CONJ +PREP +P-GSF +V-AAI-3S +CONJ +PRT +T-NSM +N-NSM +A-NSM +CONJ +T-NSF +N-NSF +A-NSF +CONJ +A-NSF +CONJ +A-NSF +CONJ +T-NSN +A-NSN +P-1DS +V-2ADI-3S +N-NSM +PRT-N +V-2ADO-3S +CONJ +T-NSF +N-NSF +CONJ +V-2APS-3S +N-NSF +PREP +T-GSN +A-GSN +P-1DS +V-PNP-NSF +N-ASM +CONJ +V-2ADS-3S +PREP +N-ASF +A-NSF +T-NSF +N-NSF +PREP +T-GSF +N-GSF +CONJ +V-RAI-1P +CONJ +T-NSM +N-NSM +A-NSM +V-PAI-3S +CONJ +P-1NS +A-NSM +V-PAI-1S +V-RPP-NSM +PREP +T-ASF +N-ASF +CONJ +R-ASN +V-PNI-1S +PRT-N +V-PAI-1S +CONJ +PRT-N +R-ASN +V-PAI-1S +D-ASN +V-PAI-1S +CONJ +R-ASN +V-PAI-1S +D-ASN +V-PAI-1S +CONJ +COND +R-ASN +PRT-N +V-PAI-1S +D-ASN +V-PAI-1S +V-PAI-1S +T-DSM +N-DSM +CONJ +A-NSM +CONJ +ADV +ADV-N +P-1NS +V-PNI-1S +P-ASN +CONJ +T-NSF +V-PAP-NSF +PREP +P-1DS +N-NSF +CONJ +V-RAI-1S +CONJ +PRT-N +V-PAI-3S +PREP +P-1DS +D-NSN +V-PAI-3S +PREP +T-DSF +N-DSF +P-1GS +A-NSN +CONJ +T-NSN +V-PAN +V-PNI-3S +P-1DS +CONJ +T-NSN +V-PNN +T-ASN +A-ASN +PRT-N +CONJ +PRT-N +R-ASN +V-PAI-1S +A-ASN +V-PAI-1S +CONJ +R-ASN +PRT-N +V-PAI-1S +A-ASN +D-ASN +V-PAI-1S +CONJ +COND +R-ASN +PRT-N +V-PAI-1S +D-ASN +P-1NS +V-PAI-1S +ADV-N +P-1NS +V-PNI-1S +P-ASN +CONJ +T-NSF +V-PAP-NSF +PREP +P-1DS +N-NSF +PRT +V-PAI-1S +T-ASM +N-ASM +P-1DS +T-DSM +V-PAP-DSM +V-PAN +T-ASN +A-ASN +CONJ +P-1DS +T-NSN +A-NSN +V-PNI-3S +CONJ +V-PNI-1S +T-DSM +N-DSM +T-GSM +N-GSM +PREP +T-ASM +ADV +N-ASM +CONJ +V-PAI-1S +A-ASM +N-ASM +PREP +T-DPN +N-DPN +P-1GS +V-PNP-ASM +T-DSM +N-DSM +T-GSM +N-GSM +P-1GS +CONJ +V-PAP-ASM +P-1AS +PREP +T-DSM +N-DSM +T-GSF +N-GSF +T-DSM +V-PAP-DSM +PREP +T-DPN +N-DPN +P-1GS +A-NSM +N-NSM +P-1NS +I-NSM +P-1AS +V-FDI-3S +PREP +T-GSN +N-GSN +T-GSM +N-GSM +D-GSM +N-NSF +T-DSM +N-DSM +PREP +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +PRT +CONJ +PRT +P-NSM +P-1NS +T-DSM +N-DSM +V-PAI-1S +N-DSM +N-GSM +CONJ +T-DSF +N-DSF +N-DSM +N-GSF +PRT +A-NSN-N +N-NSN +ADV +T-DPM +PREP +N-DSM +N-DSM +CONJ +T-NSM +N-NSM +T-GSN +N-GSN +T-GSF +N-GSF +PREP +N-DSM +N-DSM +V-AAI-3S +P-2AS +PREP +T-GSM +N-GSM +T-GSF +N-GSF +CONJ +T-GSM +N-GSM +CONJ +T-NSN +A-NSN +T-GSM +N-GSM +PREP +R-DSN +V-IAI-3S +PREP +T-GSF +N-GSF +T-NSM +N-NSM +T-ASM +F-3GSM +N-ASM +V-AAP-NSM +PREP +N-DSN +N-GSF +N-GSF +CONJ +PREP +N-GSF +V-AAI-3S +T-ASF +N-ASF +PREP +T-DSF +N-DSF +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +V-APS-3S +PREP +P-1DP +T-DPM +V-PAP-DPM +PRT-N +PREP +N-ASF +CONJ +PREP +N-ASN +CONJ +T-NPM +PREP +N-ASF +V-PAP-NPM +T-APN +T-GSF +N-GSF +V-PAI-3P +CONJ +T-NPM +PREP +N-ASN +T-APN +T-GSN +N-GSN +CONJ +T-NSN +N-NSN +T-GSF +N-GSF +N-NSM +CONJ +T-NSN +N-NSN +T-GSN +N-GSN +N-NSF +CONJ +N-NSF +CONJ +T-NSN +N-NSN +T-GSF +N-GSF +N-NSF +PREP +N-ASM +CONJ +T-DSM +N-DSM +T-GSM +N-GSM +PRT-N +V-PPI-3S +CONJ +CONJ-N +V-PNI-3S +CONJ +T-NPM +PREP +N-DSF +V-PAP-NPM +N-DSM +V-AAN +PRT-N +V-PNI-3P +CONJ +P-2NP +V-PAI-2P +PRT-N +PREP +N-DSF +CONJ +PREP +N-DSN +COND +N-NSN +N-GSM +V-PAI-3S +PREP +P-2DP +CONJ +COND +X-NSM +N-ASN +N-GSM +PRT-N +V-PAI-3S +D-NSM +PRT-N +V-PAI-3S +P-GSM +CONJ +COND +N-NSM +PREP +P-2DP +PRT +T-NSN +N-NSN +A-NSN +PREP +N-ASF +CONJ +T-NSN +N-NSN +N-NSF +PREP +N-ASF +CONJ +COND +T-NSN +N-NSN +T-GSM +V-AAP-GSM +T-ASM +N-ASM +PREP +A-GPM +V-PAI-3S +PREP +P-2DP +T-NSM +V-AAP-NSM +PREP +A-GPM +N-ASM +N-ASM +V-FAI-3S +CONJ +T-APN +A-APN +N-APN +P-2GP +PREP +T-GSN +V-PAP-GSN +PREP +P-2DP +P-GSM +N-GSN +PRT +CONJ +N-VPM +N-NPM +V-PAI-1P +PRT-N +T-DSF +N-DSF +T-GSM +PREP +N-ASF +V-PAN +CONJ +COND +PREP +N-ASF +V-PAI-2P +V-PAI-2P +V-PAN +CONJ +COND +N-DSN +T-APF +N-APF +T-GSN +N-GSN +V-PAI-2P +V-FDI-2P +CONJ +K-NPM +N-DSN +N-GSM +V-PPI-3P +D-NPM +N-NPM +N-GSM +V-PAI-3P +CONJ +PRT-N +V-2AAI-2P +N-ASN +N-GSF +ADV +PREP +N-ASM +CONJ +V-2AAI-2P +N-ASN +N-GSF +PREP +R-DSN +V-PAI-1P +N-PRI +T-NSM +N-NSM +P-NSN +T-NSN +N-NSN +V-PAI-3S +T-DSN +N-DSN +P-1GP +CONJ +V-PAI-1P +N-NPN +N-GSM +CONJ +COND +N-NPN +CONJ +N-NPM +PRT +N-NPM +N-GSM +CONJ +A-NPM +N-GSM +COND +V-PAI-1P +CONJ +CONJ +V-APS-1P +CONJ +V-PNI-1S +CONJ +PRT-N +A-NPN +T-NPN +N-NPN +T-GSM +ADV +N-GSM +PREP +T-ASF +V-PAP-ASF +V-APN +PREP +P-1AP +N-ASF +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +T-ASF +N-ASF +T-GPM +N-GPM +T-GSM +N-GSM +V-PNI-3S +CONJ +T-DSF +N-DSF +T-NSF +N-NSF +V-2API-3S +PRT-N +A-NSF +CONJ +PREP +T-ASM +V-AAP-ASM +PREP +N-DSF +CONJ +CONJ +P-NSF +T-NSF +N-NSF +V-FPI-3S +PREP +T-GSF +N-GSF +T-GSF +N-GSF +PREP +T-ASF +N-ASF +T-GSF +N-GSF +T-GPN +N-GPN +T-GSM +N-GSM +CONJ +V-RAI-1P +CONJ +A-NSF +T-NSF +N-NSF +V-PAI-3S +CONJ +V-PAI-3S +ADV +T-GSM +ADV +CONJ +PRT-N +ADV +CONJ +CONJ +P-NPM +T-ASF +N-ASF +T-GSN +N-GSN +V-PAP-NPM +P-1NP +CONJ +P-NPM +PREP +F-1DPM +V-PAI-1P +V-PNP-NPM +N-ASF +T-ASF +N-ASF +T-GSN +N-GSN +P-1GP +CONJ +T-DSF +N-DSF +V-API-1P +CONJ +N-NSF +V-PPP-NSF +PRT-N +V-PAI-3S +N-NSF +CONJ +R-ASN +V-PAI-3S +X-NSF +I-ASN +V-PAI-3S +CONJ +COND +R-ASN +PRT-N +V-PAI-1P +V-PAI-1P +PREP +N-GSF +V-PNI-1P +CONJ +ADV +CONJ +T-NSN +N-NSN +V-PNI-3S +T-DSF +N-DSF +P-1GP +CONJ +T-ASN +I-ASN +V-ADS-1P +ADV +V-PAI-3S +PRT-N +V-RAI-1P +CONJ +P-NSN +T-NSN +N-NSN +V-PAI-3S +N-DPM +A-DPM +CONJ +T-NSM +V-PAP-NSM +T-APF +N-APF +V-RAI-3S +I-NSN +T-NSN +N-NSN +T-GSN +N-GSN +CONJ +PREP +N-ASM +V-PAI-3S +PREP +A-GPM +CONJ +V-RAI-1P +CONJ +T-DPM +V-PAP-DPM +T-ASM +N-ASM +A-APN +V-PAI-3S +PREP +A-ASN +T-DPM +PREP +N-ASF +A-DPM +V-PAP-DPM +CONJ +R-APM +V-2AAI-3S +CONJ +V-AAI-3S +A-APM +T-GSF +N-GSF +T-GSM +N-GSM +P-GSM +PREP +T-ASN +V-PAN +P-ASM +A-ASM-S +PREP +A-DPM +N-DPM +CONJ +R-APM +V-AAI-3S +D-APM +CONJ +V-AAI-3S +CONJ +R-APM +V-AAI-3S +D-APM +CONJ +V-AAI-3S +CONJ +R-APM +V-AAI-3S +D-APM +CONJ +V-AAI-3S +CONJ +I-ASN +V-FAI-1P +PREP +D-APN +COND +T-NSM +N-NSM +PREP +P-1GP +I-NSM +PREP +P-1GP +PRT +R-NSM +T-GSM +A-GSM +N-GSM +PRT-N +V-ADI-3S +CONJ +PREP +P-1GP +A-GPM +V-AAI-3S +P-ASM +ADV-I +PRT-I +CONJ +PREP +P-DSM +T-APN +A-APN +P-1DP +V-FDI-3S +I-NSM +V-FAI-3S +PREP +A-GPM +N-GSM +N-NSM +T-NSM +V-PAP-NSM +I-NSM +T-NSM +V-FAP-NSM +N-NSM +N-NSM +T-NSM +V-2AAP-NSM +CONJ +ADV +V-APP-NSM +R-NSM +V-PAI-3S +PREP +A-DSF +T-GSM +N-GSM +R-NSM +CONJ +V-PAI-3S +PREP +P-1GP +I-NSM +P-1AP +V-FAI-3S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +N-NSF +PRT +N-NSF +PRT +N-NSM +PRT +N-NSM +PRT +N-NSF +PRT +N-NSM +PRT +N-NSF +ADV +V-RPI-3S +CONJ +PREP +P-2GS +V-PPI-1P +A-ASF +T-ASF +N-ASF +V-API-1P +ADV +N-NPN +N-GSF +CONJ +PREP +D-DPN +A-DPN +V-PAI-1P +PREP +T-GSM +V-AAP-GSM +P-1AP +CONJ +V-RPI-1S +CONJ +CONJ-N +N-NSM +CONJ-N +N-NSF +CONJ-N +N-NPM +CONJ-N +N-NPF +CONJ-N +V-RAP-NPN +CONJ-N +V-PAP-NPN +CONJ-N +N-NPF +CONJ-N +N-NSN +CONJ-N +N-NSN +CONJ-N +X-NSF +N-NSF +A-NSF +V-FDI-3S +P-1AP +V-AAN +PREP +T-GSF +N-GSF +T-GSM +N-GSM +T-GSF +PREP +N-DSM +N-DSM +T-DSM +N-DSM +P-1GP +N-ASF +V-PAI-1S +PREP +N-DSM +PRT-N +V-PNI-1S +V-PAP-GSF +P-1DS +T-GSF +N-GSF +P-1GS +PREP +N-DSN +A-DSN +CONJ +N-NSF +P-1DS +V-PAI-3S +A-NSF +CONJ +A-NSF +N-NSF +T-DSF +N-DSF +P-1GS +CONJ +V-INI-1S +P-NSM +P-1NS +N-NSN +V-PAN +PREP +T-GSM +N-GSM +PREP +T-GPM +N-GPM +P-1GS +T-GPM +A-GPM +P-1GS +PREP +N-ASF +R-NPM +V-PAI-3P +N-NPM +R-GPM +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NPF +N-NPF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NPF +N-NPF +R-GPM +T-NPM +N-NPM +CONJ +PREP +R-GPM +T-NSM +N-NSM +T-ASN +PREP +N-ASF +T-NSM +V-PAP-NSM +PREP +A-GPN +N-NSM +A-NSM +PREP +T-APM +N-APM +HEB +CONJ +PRT-N +K-NSN +CONJ +V-RAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +PRT-N +A-NPM +T-NPM +PREP +N-PRI +D-NPM +N-PRI +CONJ-N +CONJ +V-PAI-3P +N-NSN +N-PRI +A-NPM +N-NPN +CONJ +PREP +N-PRI +V-FPI-3S +P-2DS +N-NSN +D-NSN +V-PAI-3S +PRT-N +T-NPN +N-NPN +T-GSF +N-GSF +D-NPN +N-NPN +T-GSM +N-GSM +CONJ +T-NPN +N-NPN +T-GSF +N-GSF +V-PNI-3S +PREP +N-ASN +CONJ +N-GSF +T-NSM +N-NSM +D-NSM +PREP +T-ASM +N-ASM +D-ASM +V-FDI-1S +CONJ +V-FDI-3S +T-DSF +N-DSF +N-NSM +CONJ +PRT-N +ADV +CONJ +CONJ +N-NSF +N-ASF +V-PAP-NSF +PREP +A-GSM +N-PRI +T-GSM +N-GSM +P-1GP +CONJ +ADV-N +V-APP-GPM +CONJ-N +V-AAP-GPM +X-ASN +A-ASN +PRT +A-ASN +CONJ +T-NSF +PREP +N-ASF +N-NSF +T-GSM +N-GSM +V-PAS-3S +PRT-N +PREP +N-GPN +CONJ +PREP +T-GSM +V-PAP-GSM +V-API-3S +P-DSF +CONJ +T-NSM +A-NSM-C +V-FAI-3S +T-DSM +A-DSM +ADV +V-RPI-3S +T-ASM +N-PRI +V-AAI-1S +CONJ +T-ASM +N-PRI +V-AAI-1S +CONJ +I-ASN +V-FAI-1P +PRT-N +N-NSF +PREP +T-DSM +N-DSM +PRT-N +V-2ADO-3S +CONJ +T-DSM +N-DSM +V-PAI-3S +V-FAI-1S +PRT +R-ASM +V-PAS-1S +CONJ +V-FAI-1S +PRT +R-ASM +V-PAS-1S +PRT +CONJ +PRT-N +T-GSM +V-PAP-GSM +CONJ-N +T-GSM +V-PAP-GSM +CONJ +T-GSM +V-PAP-GSM +N-GSM +CONJ +V-PAI-3S +T-NSF +N-NSF +T-DSM +N-PRI +CONJ +PREP +P-ASN +D-ASN +V-AAI-1S +P-2AS +ADV +V-AMS-1S +PREP +P-2DS +T-ASF +N-ASF +P-1GS +CONJ +ADV +V-2APS-3S +T-NSN +N-NSN +P-1GS +PREP +A-DSF +T-DSF +N-DSF +PRT +CONJ +R-ASM +V-PAI-3S +V-PAI-3S +CONJ +R-ASM +V-PAI-3S +V-PAI-3S +CONJ +V-FAI-2S +P-1DS +I-ASN +ADV +V-PNI-3S +CONJ +T-DSN +N-DSN +P-GSM +I-NSM +V-RAI-3S +INJ +N-VSM +PRT +I-NSM +V-PAI-2S +P-2NS +T-NSM +V-PNP-NSM +T-DSM +N-DSM +PRT-N +V-FAI-3S +T-NSN +N-NSN +T-DSM +V-AAP-DSM +I-ASN +P-1AS +V-AAI-2S +ADV +PRT +PRT-N +V-PAI-3S +T-NSM +N-NSM +N-ASF +T-GSM +N-GSM +PREP +T-GSN +P-GSN +N-GSN +V-AAN +N-ASN +PRT +R-ASN +PREP +N-ASF +CONJ +R-ASN +PREP +N-ASF +CONJ +COND +T-NSM +N-NSM +V-PAP-NSM +V-AMN +T-ASF +N-ASF +CONJ +V-AAN +T-ASN +A-ASN +P-GSM +V-AAI-3S +PREP +A-DSF +N-DSF +N-APN +N-GSF +V-RPP-APN +PREP +N-ASF +CONJ +CONJ +V-AAS-3S +T-ASM +N-ASM +T-GSF +N-GSF +P-GSM +PREP +N-APN +N-GSN +R-APN +V-AAI-3S +PREP +N-ASF +R-APM +CONJ +V-AAI-3S +P-1AP +PRT-N +ADV +PREP +A-GPM +CONJ +CONJ +PREP +N-GPN +ADV +CONJ +PREP +T-DSM +N-PRI +V-PAI-3S +V-FAI-1S +T-ASM +PRT-N +N-ASM +P-1GS +N-ASM +P-1GS +CONJ +T-ASF +PRT-N +V-RPP-ASF +V-RPP-ASF +CONJ +V-FDI-3S +PREP +T-DSM +N-DSM +ADV +V-API-3S +P-DPM +PRT-N +N-NSM +P-1GS +P-2NP +ADV +V-FPI-3P +N-NPM +N-GSM +V-PAP-GSM +CONJ +N-NSM +V-PAI-3S +PREP +T-GSM +N-PRI +COND +V-PAS-3S +T-NSM +N-NSM +T-GPM +N-GPM +N-PRI +ADV +T-NSF +N-NSF +T-GSF +N-GSF +T-NSN +N-NSN +V-FPI-3S +CONJ +N-ASM +V-PAP-NSM +CONJ +V-PAP-NSM +V-FAI-3S +N-NSM +PREP +T-GSF +N-GSF +CONJ +ADV +V-RAI-3S +N-NSM +COND +PRT-N +N-NSM +HEB +V-2AAI-3S +P-1DP +N-ASN +PRT +ADV +N-NSF +V-AOI-1P +CONJ +PRT +ADV +N-NSF +V-API-1P +CONJ +I-ASN +V-FAI-1P +CONJ +N-NPN +T-NPN +PRT-N +V-PAP-NPN +N-ASF +V-2AAI-3S +N-ASF +CONJ +N-ASF +T-ASF +PREP +N-GSF +CONJ +N-PRI +V-PAP-NSM +N-ASM +N-GSF +PREP +N-ASM +PRT-N +V-AAI-3S +PREP +I-ASN +CONJ +PRT-N +PREP +N-GSF +CONJ +ADV +PREP +N-GPN +V-AAI-3P +T-DSM +N-DSM +T-GSN +N-GSN +ADV +V-RPI-3S +V-2AMM-2S +V-PAI-1S +PREP +N-PRI +N-ASM +N-GSN +CONJ +N-ASF +N-GSN +CONJ +T-NSM +V-PAP-NSM +PREP +P-DSM +PRT-N +V-FPI-3S +N-VPM +PRT +T-NSF +N-NSF +T-GSF +S-1SGSF +N-GSF +CONJ +T-NSF +N-NSF +PREP +T-ASM +N-ASM +PREP +P-GPM +PREP +N-ASF +CONJ +V-PAI-1S +P-DPM +CONJ +N-ASM +N-GSM +V-PAI-3P +CONJ +PRT-N +PREP +N-ASF +CONJ +V-PAP-NPM +T-ASF +T-GSM +N-GSM +N-ASF +CONJ +T-ASF +A-ASF +V-AAN +V-PAP-NPM +T-DSF +N-DSF +T-GSM +N-GSM +PRT-N +V-2API-3P +CONJ +N-NSN +N-GSM +N-NSM +PREP +N-ASF +A-DSM +T-DSM +V-PAP-DSM +CONJ +N-NSM +V-PAI-3S +CONJ +T-ASF +N-ASF +T-ASF +PREP +N-GSM +T-NSM +V-AAP-NSM +N-NSM +V-FDI-3S +PREP +P-DSF +CONJ +T-NSF +PREP +N-GSF +N-NSF +ADV +V-PAI-3S +PRT-N +V-2AAS-2S +PREP +T-DSF +N-DSF +P-2GS +I-NSM +V-FDI-3S +PREP +T-ASM +N-ASM +D-NSN +V-PAI-3S +N-ASM +V-2AAN +PRT +I-NSM +V-FDI-3S +PREP +T-ASF +N-ASF +D-NSN +V-PAI-3S +N-ASM +PREP +A-GPM +V-2AAN +CONJ +I-ASN +V-PAI-3S +ADV +P-2GS +T-NSN +N-NSN +V-PAI-3S +PREP +T-DSN +N-DSN +P-2GS +CONJ +PREP +T-DSF +N-DSF +P-2GS +D-NSN +V-PAI-3S +T-NSN +N-NSN +T-GSF +N-GSF +R-ASN +V-PAI-1P +CONJ +COND +V-AAS-2S +PREP +T-DSN +N-DSN +P-2GS +N-ASM +N-ASM +CONJ +V-AAS-2S +PREP +T-DSF +N-DSF +P-2GS +CONJ +T-NSM +N-NSM +P-ASM +V-AAI-3S +PREP +A-GPM +V-FPI-2S +CONJ +N-DSF +V-PPI-3S +PREP +N-ASF +CONJ +N-DSN +V-PPI-3S +PREP +N-ASF +CONJ +V-PAI-3S +T-NSF +N-NSF +A-NSM +T-NSM +V-PAP-NSM +PREP +P-DSM +PRT-N +V-FPI-3S +CONJ +PRT-N +V-PAI-3S +N-NSF +PRT +A-GSM +CONJ +N-GSM +CONJ +T-NSM +P-NSM +N-NSM +A-GPM +V-PAP-NSM +PREP +A-APM +T-APM +V-PMP-APM +P-ASM +CONJ +A-NSM +PRT +R-NSM +V-AMS-3S +T-ASN +N-ASN +N-GSM +V-FPI-3S +CONJ +ADV-I +V-AMS-3P +PREP +R-ASM +PRT-N +V-AAI-3P +CONJ +ADV-I +V-AAS-3P +R-GSM +PRT-N +V-AAI-3P +CONJ +ADV-I +V-AAS-3P +ADV +V-PAP-GSM +CONJ +ADV-I +V-AAS-3P +COND +PRT-N +V-2APS-3P +ADV +V-RPI-3S +ADV +A-NPM +T-NPM +N-NPM +T-GPM +V-PMP-GPM +A-APN +CONJ +PRT-N +A-NPM +V-AAI-3P +T-DSN +N-DSN +CONJ +N-NSM +V-PAI-3S +N-VSM +I-NSM +V-AAI-3S +T-DSF +N-DSF +P-1GP +PRT +T-NSF +N-NSF +PREP +N-GSF +CONJ +T-NSF +N-NSF +PREP +N-GSN +N-GSM +CONJ +V-PAI-1S +PRT-N +PRT-N +V-AAI-3P +PRT +PREP +A-ASF +T-ASF +N-ASF +V-2AAI-3S +T-NSM +N-NSM +P-GPM +CONJ +PREP +T-APN +N-APN +T-GSF +N-GSF +T-NPN +N-NPN +P-GPM +CONJ +V-PAI-1S +PRT-N +N-PRI +PRT-N +V-2AAI-3S +A-NSM-S +N-NSM +V-PAI-3S +P-1NS +V-FAI-1S +P-2AP +PREP +PRT-N +N-DSN +PREP +N-DSN +A-DSN +V-FAI-1S +P-2AP +CONJ +N-NSM +V-PAI-3S +CONJ +V-PAI-3S +V-API-1S +T-DPM +P-1AS +PRT-N +V-PAP-DPM +A-NSM +V-2ADI-1S +T-DPM +P-1AS +PRT-N +V-PAP-DPM +CONJ +PREP +T-ASM +N-PRI +V-PAI-3S +A-ASF +T-ASF +N-ASF +V-AAI-1S +T-APF +N-APF +P-1GS +PREP +N-ASM +V-PAP-ASM +CONJ +V-PAP-ASM +CONJ +V-PAI-1S +PRT-N +V-ADI-3S +T-NSM +N-NSM +T-ASM +N-ASM +P-GSM +PRT-N +V-2ADO-3S +CONJ +CONJ +P-1NS +N-NSM +V-PAI-1S +PREP +N-GSN +N-PRI +N-GSF +N-PRI +PRT-N +V-ADI-3S +T-NSM +N-NSM +T-ASM +N-ASM +P-GSM +R-ASM +V-2AAI-3S +PRT +PRT-N +V-RAI-2P +PREP +N-DSM +I-ASN +V-PAI-3S +T-NSF +N-NSF +ADV +V-PAI-3S +T-DSM +N-DSM +PREP +T-GSM +N-PRI +N-VSM +T-APM +N-APM +P-2GS +V-AAI-3P +T-APN +N-APN +P-2GS +V-AAI-3P +P-1NS-K +V-API-1S +A-NSM +CONJ +V-PAI-3P +T-ASF +N-ASF +P-1GS +CONJ +I-ASN +V-PAI-3S +P-DSM +T-NSM +N-NSM +V-2AAI-1S +F-1DSM +A-APM +N-APM +R-NPM +PRT-N +V-AAI-3P +N-ASN +T-DSF +N-PRI +CONJ +ADV +CONJ +PREP +T-DSM +ADV +N-DSM +N-NSN +PREP +N-ASF +N-GSF +V-2RAI-3S +CONJ +COND +N-DSF +ADV-N +PREP +N-GPN +CONJ +T-NSF +N-NSF +ADV-N +V-PNI-3S +N-NSF +CONJ +I-NSN +R-ASN +V-PAI-3S +N-PRI +D-ASN +PRT-N +V-2AAI-3S +CONJ +T-NSF +N-NSF +V-2AAI-3S +CONJ +T-NPM +A-NPM +V-API-3P +ADV +V-RPI-3S +V-AAI-3S +P-DPM +T-NSM +N-NSM +N-ASN +N-GSF +N-APM +T-GSN +PRT-N +V-PAN +CONJ +N-APN +T-GSN +PRT-N +V-PAN +ADV +T-GSF +ADV +N-GSF +CONJ +N-PRI +V-PAI-3S +V-AOM-3S +T-NSF +N-NSF +P-GPM +PREP +N-ASF +CONJ +PREP +N-ASF +CONJ +PREP +N-ASN +CONJ +PREP +N-ASN +P-DPM +V-APM-3P +T-NPM +N-NPM +P-GPM +T-GSN +PRT-N +V-PAN +CONJ +T-ASM +N-ASM +P-GPM +PREP +A-GSN +V-AAM-2S +CONJ +V-PAI-1S +PRT-N +V-AAI-3P +CONJ +V-2AAS-3P +PRT-N +V-2ADO-3S +CONJ +T-DSN +P-GPM +N-DSN +T-NSF +N-NSF +T-DPN +N-DPN +PREP +T-ASN +V-AAN +P-APM +CONJ +COND +T-NSN +N-NSN +P-GPM +N-NSN +N-GSM +CONJ +T-NSN +N-NSN +P-GPM +N-NSN +N-GPN +Q-DSN +ADV +T-NSN +N-NSN +P-GPM +CONJ +V-PAI-1S +P-2DP +T-DPN +N-DPN +PRT +CONJ +PREP +K-ASN +V-PAI-1S +P-1NS +N-GPN +N-NSM +T-ASF +N-ASF +P-1GS +V-PAI-1S +COND +ADV-I +V-AAS-1S +P-1GS +T-ASF +N-ASF +CONJ +V-AAS-1S +X-APM +PREP +P-GPM +CONJ +COND +T-NSF +N-NSF +P-GPM +N-NSF +N-GSM +I-NSF +T-NSF +N-NSF +COND +PRT-N +N-NSF +PREP +A-GPM +CONJ +COND +T-NSF +N-NSF +A-NSF +CONJ +T-NSN +N-NSN +CONJ +COND +T-NSF +N-NSF +A-NSF +CONJ +T-NPM +N-NPM +CONJ +COND +X-NPM +T-GPM +N-GPM +V-API-3P +CONJ +P-2NS +N-NSF +V-PAP-NSM +V-API-2S +PREP +P-DPM +CONJ +N-NSM +T-GSF +N-GSF +T-GSF +N-GSF +T-GSF +N-GSF +V-2ADI-2S +PRT-N +V-PNM-2S +T-GPM +N-GPM +CONJ +COND +V-PNI-2S +PRT-N +P-2NS +T-ASF +N-ASF +V-PAI-2S +CONJ +T-NSF +N-NSF +P-2AS +CONJ +V-FAI-2S +V-API-3P +N-NPM +CONJ +P-1NS +V-APS-1S +ADV +T-DSF +N-DSF +V-API-3P +CONJ +P-2NS +T-DSF +N-DSF +V-RAI-2S +PRT-N +A-APN +V-PAM-2S +CONJ +V-PNM-2S +CONJ +COND +T-NSM +N-NSM +T-GPM +PREP +N-ASF +N-GPM +PRT-N +V-ADI-3S +CONJ-N +P-2GS +V-FDI-3S +CONJ +V-2AAM-2S +N-ASF +CONJ +N-ASF +N-GSM +PRT +PREP +T-APM +V-2AAP-APM +N-NSF +CONJ +PREP +P-2AS +N-NSF +N-GSM +COND +V-PAS-2S +T-DSF +N-DSF +CONJ +CONJ +P-2NS +V-2FPI-2S +CONJ +D-NPM-K +COND +PRT-N +V-PAS-3P +T-DSF +N-DSF +V-FPI-3P +CONJ +A-NSM +V-PAI-3S +T-NSM +N-NSM +ADV +V-AAN +P-APM +CONJ +COND +P-2NS +PREP +T-GSF +PREP +N-ASF +N-GSF +V-2API-2S +CONJ +PREP +N-ASF +V-API-2S +PREP +N-ASF +Q-DSN +ADV +D-NPM +T-NPM +PREP +N-ASF +V-FPI-3P +T-DSF +A-DSF +N-DSF +CONJ +N-VPM +PRT-N +V-PAI-1S +P-2AP +V-PAN +T-ASN +N-ASN +D-ASN +CONJ +PRT-N +V-PAS-2P +PREP +F-2DPM +A-NPM +CONJ +N-NSF +PREP +N-GSN +T-DSM +N-PRI +V-2RAI-3S +ADV +R-GSM +T-NSN +N-NSN +T-GPN +N-GPN +V-2AAS-3S +CONJ +ADV +A-NSM +N-PRI +V-FPI-3S +ADV +V-RPI-3S +V-FAI-3S +PREP +N-PRI +T-NSM +V-PNP-NSM +V-FAI-3S +N-APF +PREP +N-PRI +CONJ +D-NSF +P-DPM +T-NSF +PREP +P-1GS +N-NSF +CONJ +V-2AMS-1S +T-APF +N-APF +P-GPM +PRT +PREP +T-ASN +N-ASN +A-NPM +PREP +P-2AP +CONJ +PREP +T-ASF +N-ASF +A-NPM +PREP +T-APM +N-APM +CONJ +A-NPN +T-NPN +N-NPN +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +ADV +P-2NP +ADV +V-AAI-2P +T-DSM +N-DSM +CONJ +ADV +V-API-2P +T-DSF +D-GPM +N-DSF +ADV +CONJ +D-NPM +ADV +V-AAI-3P +T-DSN +S-2PDSN +N-DSN +CONJ +CONJ +P-NPM +ADV +V-APS-3P +CONJ +V-AAI-3S +T-NSM +N-NSM +T-APM +A-APM +PREP +N-ASF +CONJ +T-APM +A-APM +V-AAS-3S +INJ +N-NSN +N-GSM +CONJ +N-GSF +CONJ +N-GSF +N-GSM +ADV +A-NPN +T-NPN +N-NPN +P-GSM +CONJ +A-NPF +T-NPF +N-NPF +P-GSM +CONJ +I-NSM +V-2AAI-3S +N-ASM +N-GSM +PRT +I-NSM +N-NSM +P-GSM +V-2ADI-3S +PRT +I-NSM +V-AAI-3S +P-DSM +CONJ +V-FPI-3S +P-DSM +CONJ +PREP +P-GSM +CONJ +PREP +P-GSM +CONJ +PREP +P-ASM +T-NPN +A-NPN +P-DSM +T-NSF +N-NSF +PREP +T-APM +N-APM +HEB +CONJ +N-VPM +V-PAI-1S +PREP +T-GPM +N-GPM +T-GSM +N-GSM +P-2AP +V-AAN +T-APN +N-APN +P-2GP +N-ASF +V-PAP-ASF +A-ASF +T-DSM +N-DSM +A-ASF +T-ASF +A-ASF +N-ASF +P-2GP +CONJ +PRT-N +V-PEM-2P +T-DSM +N-DSM +D-DSM +CONJ +V-PPM-2P +T-DSF +N-DSF +T-GSM +N-GSM +PREP +T-ASN +V-PAN +P-2AP +I-NSN +T-NSN +N-NSN +T-GSM +N-GSM +T-NSN +A-NSN +CONJ +A-NSN +CONJ +A-NSN +CONJ +V-PAI-1S +PREP +T-GSF +N-GSF +T-GSF +V-APP-GSF +P-1DS +A-DSM +T-DSM +V-PAP-DSM +PREP +P-2DP +PRT-N +V-PAN +PREP +R-ASN +V-PAN +V-PAI-3S +CONJ +V-PAN +PREP +T-ASN +V-PAN +ADV +A-DSM +T-NSM +N-NSM +V-AAI-3S +N-ASN +N-GSF +CONJ +ADV +PREP +A-DSN +N-DSN +A-APN +N-APN +V-PAI-1P +CONJ +T-NPN +N-NPN +A-NPN +PRT-N +T-ASF +P-ASF +N-ASF +V-PAI-3S +ADV +T-NPM +A-NPM +A-NSN +N-NSN +V-PAI-1P +PREP +N-DSM +CONJ +T-NSN +PREP +A-NSM +C-GPM +N-NPN +CONJ +V-PAP-NPM +N-APN +A-APN +PREP +T-ASF +N-ASF +T-ASF +V-APP-ASF +P-1DP +CONJ +N-ASF +PREP +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +N-ASF +PREP +T-DSF +N-DSF +CONJ +T-NSM +V-PAP-NSM +PREP +T-DSF +N-DSF +CONJ +T-NSM +V-PAP-NSM +PREP +T-DSF +N-DSF +T-NSM +V-PAP-NSM +PREP +N-DSF +T-NSM +V-PMP-NSM +PREP +N-DSF +T-NSM +V-PAP-NSM +PREP +N-DSF +T-NSF +N-NSF +A-NSF +V-PAP-NPM +T-ASN +A-ASN +V-PPP-NPM +T-DSN +A-DSN +T-DSF +N-DSF +PREP +C-APM +A-NPM +T-DSF +N-DSF +C-APM +V-PNP-NPM +T-DSF +N-DSF +PRT-N +A-NPM +T-DSN +N-DSN +V-PAP-NPM +T-DSM +N-DSM +V-PAP-NPM +T-DSF +N-DSF +V-PAP-NPM +T-DSF +N-DSF +V-PAP-NPM +T-DSF +N-DSF +V-PAP-NPM +T-DPF +N-DPF +T-GPM +A-GPM +V-PAP-NPM +T-ASF +N-ASF +V-PAP-NPM +V-PAM-2P +T-APM +V-PAP-APM +V-PAM-2P +CONJ +PRT-N +V-PNM-2P +V-PAN +PREP +V-PAP-GPM +V-PAN +PREP +V-PAP-GPM +T-ASN +P-ASN +PREP +C-APM +V-PAP-NPM +PRT-N +T-APN +A-APN +V-PAP-NPM +CONJ +T-DPN +A-DPN +V-PMP-NPM +PRT-N +V-PNM-2P +A-NPM +PREP +F-2DPM +A-DSM-N +A-ASN +PREP +A-GSN +V-PAP-NPM +V-PMP-NPM +A-APN +PREP +A-GPM +N-GPM +COND +A-NSN +T-NSN +PREP +P-2GP +PREP +A-GPM +N-GPM +V-PAP-NPM +A-VPM +PRT-N +F-2APM +V-PAP-NPM +CONJ +V-2AAM-2P +N-ASM +T-DSF +N-DSF +CONJ +V-RPI-3S +P-1DS +N-NSF +P-1NS +V-FAI-1S +V-PAI-3S +N-NSM +CONJ +COND +V-PAS-3S +T-NSM +A-NSM +P-2GS +V-PAM-2S +P-ASM +COND +V-PAS-3S +V-PAM-2S +P-ASM +CONJ +D-ASN +V-PAP-NSM +N-APM +N-GSN +V-FAI-2S +PREP +T-ASF +N-ASF +P-GSM +PRT-N +V-PPM-2S +PREP +T-GSN +A-GSN +CONJ +V-PAM-2S +PREP +T-DSN +A-DSN +T-ASN +A-ASN +A-NSF +N-NSF +N-DPF +V-PAP-DPF +V-PMM-3S +CONJ +PRT-N +V-PAI-3S +N-NSF +COND +PRT-N +PREP +N-GSM +CONJ +T-NPF +V-PAP-NPF +PREP +N-GSM +V-RPP-NPF +V-PAI-3P +CONJ +T-NSM +V-PMP-NSM +T-DSF +N-DSF +T-DSF +T-GSM +N-GSM +N-DSF +V-RAI-3S +CONJ +T-NPM +V-RAP-NPM +F-3DPM +N-ASN +V-FDI-3P +CONJ +T-NPM +N-NPM +V-PAI-3P +N-NSM +PRT-N +T-DSN +A-DSN +N-DSN +CONJ +T-DSN +A-DSN +CONJ +V-PAI-2S +PRT-N +V-PNN +T-ASF +N-ASF +T-ASN +A-ASN +V-PAM-2S +CONJ +V-FAI-2S +N-ASM +PREP +P-GSF +CONJ +N-GSM +N-NSM +V-PAI-3S +P-2DS +PREP +T-ASN +A-ASN +CONJ +COND +T-ASN +A-ASN +V-PAS-2S +V-PNM-2S +CONJ +PRT-N +ADV +T-ASF +N-ASF +V-PAI-3S +CONJ +N-GSM +N-NSM +V-PAI-3S +A-NSM +PREP +N-ASF +T-DSM +T-ASN +A-ASN +V-PAP-DSM +CONJ +N-NSF +V-PMN +PRT-N +ADV +PREP +T-ASF +N-ASF +CONJ +CONJ +PREP +T-ASF +N-ASF +CONJ +PREP +D-ASN +CONJ +N-APM +V-PAI-2P +CONJ +N-NPM +N-GSM +V-PAI-3P +PREP +P-ASN +D-ASN +V-PAP-NPM +V-2AAM-2P +A-DPM +T-APF +N-APF +T-DSM +T-ASM +N-ASM +T-ASM +N-ASM +T-DSM +T-ASN +N-ASN +T-ASN +N-ASN +T-DSM +T-ASM +N-ASM +T-ASM +N-ASM +T-DSM +T-ASF +N-ASF +T-ASF +N-ASF +A-DSM-N +A-ASN-N +V-PAM-2P +COND +PRT-N +T-ASN +C-APM +V-PAN +CONJ +T-NSM +V-PAP-NSM +T-ASM +A-ASM +N-ASM +V-RAI-3S +CONJ +T-NSN +PRT-N +V-FAI-2S +PRT-N +V-FAI-2S +PRT-N +V-FAI-2S +PRT-N +V-FAI-2S +CONJ +COND +X-NSF +A-NSF +N-NSF +PREP +T-DSM +N-DSM +D-DSM +V-PPI-3S +PREP +T-DSM +V-FAI-2S +T-ASM +ADV +P-2GS +ADV +F-2ASM +T-NSF +N-NSF +T-DSM +ADV +A-ASN +PRT-N +V-PNI-3S +CONJ +N-NSN +N-GSM +T-NSF +N-NSF +CONJ +V-RAP-NPM +D-ASN +T-ASM +N-ASM +CONJ +N-NSF +ADV +P-2AP +PREP +N-GSM +V-APN +CONJ +ADV +ADV-C +P-1GP +T-NSF +N-NSF +PRT +ADV +V-AAI-1P +T-NSF +N-NSF +V-AAI-3S +CONJ +T-NSF +N-NSF +V-RAI-3S +CONJ +V-2AMS-1P +T-APN +N-APN +T-GSN +N-GSN +CONJ +V-AMS-1P +T-APN +N-APN +T-GSN +N-GSN +ADV +PREP +N-DSF +ADV +V-AAS-1P +PRT-N +N-DPM +CONJ +N-DPF +PRT-N +N-DPF +CONJ +N-DPF +PRT-N +N-DSF +CONJ +N-DSM +CONJ +V-AMM-2P +T-ASM +N-ASM +N-ASM +N-ASM +CONJ +T-GSF +N-GSF +N-ASF +PRT-N +V-PMM-2P +PREP +N-APF +CONJ +T-ASM +V-PAP-ASM +T-DSF +N-DSF +V-PMM-2P +PRT-N +PREP +N-APF +N-GPM +PRT +R-NSM +V-PAI-3S +V-2AAN +A-APN +CONJ +T-NSM +V-PAP-NSM +N-APN +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASM +PRT-N +V-PAP-ASM +PRT-N +V-PAM-3S +CONJ +T-NSM +PRT-N +V-PAP-NSM +T-ASM +V-PAP-ASM +PRT-N +V-PAM-3S +CONJ +T-NSM +N-NSM +P-ASM +V-2AMI-3S +P-2NS +I-NSM +V-PAI-2S +T-NSM +V-PAP-NSM +A-ASM +N-ASM +T-DSM +A-DSM +N-DSM +V-PAI-3S +PRT +V-PAI-3S +CONJ +V-FPI-3S +CONJ +V-PAI-3S +T-NSM +N-NSM +V-AAN +P-ASM +CONJ +PRT +R-NSM +V-PAI-3S +N-ASF +PREP +N-ASF +CONJ +R-NSM +V-PAI-3S +A-ASF +N-ASF +A-NSM +PREP +T-DSM +A-DSM +N-DSM +V-PPM-3S +T-NSM +V-PAP-NSM +T-ASF +N-ASF +N-DSM +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +N-DSM +V-PAI-3S +CONJ +V-PAI-3S +T-DSM +N-DSM +CONJ +T-NSM +PRT-N +V-PAP-NSM +N-DSM +PRT-N +V-PAI-3S +CONJ +V-PAI-3S +T-DSM +N-DSM +CONJ +A-NSM-N +P-1GP +F-3DSM +V-PAI-3S +CONJ +A-NSM-N +F-3DSM +V-PAI-3S +CONJ +PRT +COND +V-PAS-1P +T-DSM +N-DSM +V-PAI-1P +PRT +COND +V-PAS-1P +T-DSM +N-DSM +V-PAI-1P +CONJ +PRT +COND +V-PAS-1P +PRT +COND +V-PAS-1P +T-GSM +N-GSM +V-PAI-1P +CONJ +PREP +D-ASN +N-NSM +V-2AAI-3S +CONJ +V-AAI-3S +CONJ +CONJ +A-GPM +CONJ +V-PAP-GPM +V-AAS-3S +CONJ +P-2NS +I-ASN +V-PAI-2S +T-ASM +N-ASM +P-2GS +PRT +CONJ +P-2NS +I-ASN +V-PAI-2S +T-ASM +N-ASM +P-2GS +CONJ +A-NPM +V-FDI-1P +T-DSN +N-DSN +T-GSM +N-GSM +CONJ +V-RPI-3S +V-PAI-1S +P-1NS +V-PAI-3S +N-NSM +CONJ +P-1DS +V-FAI-3S +A-NSN +N-NSN +CONJ +A-NSF +N-NSF +V-FMI-3S +T-DSM +N-DSM +PRT +CONJ +A-NSM +P-1GP +PREP +F-3GSM +N-ASM +V-FAI-3S +T-DSM +N-DSM +CONJ +ADV-N +C-APM +V-PAS-1P +CONJ +D-ASN +V-AAM-2P +ADV +T-ASN +PRT-N +V-PAN +T-DSM +N-DSM +N-ASN +PRT +N-ASN +V-RAI-1S +CONJ +V-RPI-1S +PREP +N-DSM +N-DSM +CONJ +A-NSN-N +A-NSN +PREP +F-3GSM +COND +PRT-N +T-DSM +V-PNP-DSM +X-NSN +A-NSN +V-PAN +D-DSM +A-NSN +CONJ +COND +PREP +N-ASN +T-NSM +N-NSM +P-2GS +V-PPI-3S +ADV-N +PREP +N-ASF +V-PAI-2S +PRT-N +T-DSN +N-DSN +P-2GS +D-ASM +V-PAM-2S +PREP +R-GSM +N-NSM +V-2AAI-3S +CONJ +PRT-N +V-PPM-3S +P-2GP +T-NSN +A-NSN +CONJ +PRT-N +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +N-NSF +CONJ +N-NSF +CONJ +N-NSF +CONJ +N-NSF +CONJ +N-NSF +PREP +N-DSN +A-DSN +CONJ +T-NSM +PREP +D-DSM +V-PAP-NSM +T-DSM +N-DSM +A-NSM +T-DSM +N-DSM +CONJ +A-NSM +T-DPM +N-DPM +PRT +CONJ +V-PAI-1P +T-APN +T-GSF +N-GSF +CONJ +T-APN +T-GSF +N-GSF +T-GSF +PREP +C-APM +PRT-N +PREP +N-GSN +V-PAM-2S +T-ASN +N-ASN +T-GSM +N-GSM +PRT +A-NPN +A-NPN +CONJ +A-NSN +T-DSM +N-DSM +T-DSM +PREP +N-GSN +V-PAP-DSM +A-NSN +T-NSN +PRT-N +V-2AAN +N-APN +CONJ-N +V-2AAN +N-ASM +CONJ-N +PREP +R-DSN +T-NSM +N-NSM +P-2GS +V-PAI-3S +P-2NS +N-ASF +R-ASF +V-PAI-2S +PREP +F-2ASM +V-PAM-2S +PREP +T-GSM +N-GSM +A-NSM +T-NSM +PRT-N +V-PAP-NSM +F-3ASM +PREP +R-DSN +V-PAI-3S +CONJ +COND +T-NSM +V-PMP-NSM +V-2AAS-3S +V-RPI-3S +CONJ +PRT-N +PREP +N-GSF +CONJ +A-NSN +R-NSN +PRT-N +PREP +N-GSF +N-NSF +V-PAI-3S +CONJ +V-PAI-1P +P-1NP +T-NPM +A-NPM +T-APN +N-APN +T-GPM +A-GPM +V-PAN +CONJ +PRT-N +F-1DPM +V-PAN +A-NSM +P-1GP +T-DSM +ADV +V-PAM-3S +PREP +T-ASN +A-ASN +PREP +N-ASF +CONJ +CONJ +T-NSM +N-NSM +PRT-N +F-3DSM +V-AAI-3S +CONJ +ADV +V-RPI-3S +T-NPM +N-NPM +T-GPM +V-PAP-GPM +P-2AS +V-AAI-3P +PREP +P-1AS +CONJ +K-NPN +V-2API-3S +PREP +T-ASF +S-1PASF +N-ASF +V-2API-3S +CONJ +PREP +T-GSF +N-GSF +CONJ +PREP +T-GSF +N-GSF +T-GPF +N-GPF +T-ASF +N-ASF +V-PAS-1P +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +V-2AAO-3S +P-2DP +T-ASN +P-ASN +V-PAN +PREP +C-DPM +PREP +N-ASM +N-ASM +CONJ +ADV +PREP +A-DSN +N-DSN +V-PAS-2P +T-ASM +N-ASM +CONJ +N-ASM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +V-PMM-2P +C-APM +ADV +CONJ +T-NSM +N-NSM +V-2AMI-3S +P-1AP +PREP +N-ASF +T-GSM +N-GSM +CONJ +V-PAI-1S +N-ASM +N-ASM +N-GSF +V-RPN +PREP +N-GSF +N-GSM +PREP +T-ASN +V-AAN +T-APF +N-APF +T-GPM +N-GPM +CONJ +T-NPN +N-NPN +PREP +N-GSN +V-AAN +T-ASM +N-ASM +ADV +V-RPI-3S +PREP +D-ASN +V-FMI-1S +P-2DS +PREP +N-DPN +CONJ +T-DSN +N-DSN +P-2GS +V-FAI-1S +CONJ +ADV +V-PAI-3S +N-VPN +V-APM-2P +PREP +T-GSM +N-GSM +P-GSM +CONJ +ADV +A-NPN +T-NPN +N-NPN +V-PAM-2P +T-ASM +N-ASM +CONJ +V-AAM-3P +P-ASM +A-NPM +T-NPM +N-NPM +CONJ +ADV +N-NSM +V-PAI-3S +V-FDI-3S +T-NSF +N-NSF +T-GSM +N-PRI +CONJ +T-NSM +V-PMP-NSM +V-PAN +N-GPN +PREP +P-DSM +N-NPN +V-FAI-3P-ATT +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +V-AAO-3S +P-2AP +A-GSF +N-GSF +CONJ +N-GSF +PREP +T-DSN +V-PAN +PREP +T-ASN +V-PAN +P-2AP +PREP +T-DSF +N-DSF +PREP +N-DSF +N-GSN +A-GSN +CONJ +N-VPM +P-1GS +V-RPI-1S +CONJ +P-NSM +P-1NS +PREP +P-2GP +CONJ +CONJ +P-NPM +A-NPM +V-PAI-2P +N-GSF +V-RPP-NPM +A-GSF +T-GSF +N-GSF +V-PNP-NPM +CONJ +C-APM +V-PAN +CONJ +ADV-C +V-AAI-1S +P-2DP +PREP +N-GSN +ADV +V-PAP-NSM +P-2AP +PREP +T-ASF +N-ASF +T-ASF +V-APP-ASF +P-1DS +PREP +T-GSM +N-GSM +PREP +T-ASN +V-PAN +P-1AS +N-ASM +N-GSM +N-GSM +PREP +T-APN +N-APN +V-PAP-ASM +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +V-2ADS-3S +T-NSF +N-NSF +T-GPN +N-GPN +A-NSF +V-RPP-NSF +PREP +N-DSN +A-DSN +CONJ +V-PAI-1S +T-ASF +N-ASF +PREP +N-DSM +N-DSM +T-APN +PREP +T-ASM +N-ASM +CONJ +PRT-N +V-FAI-1S +V-PAN +X-ASN +R-GPN +PRT-N +V-ADI-3S +N-NSM +PREP +P-1GS +PREP +N-ASF +N-GPN +N-DSM +CONJ +N-DSN +PREP +N-DSF +N-GPN +CONJ +N-GPN +PREP +N-DSF +N-GSN +A-GSN +CONJ +P-1AS +PREP +N-PRI +CONJ +N-DSM +ADV +T-GSN +N-GSN +V-RAN +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +ADV +V-PNP-ASM +V-PMN +PRT-N +ADV +V-API-3S +N-NSM +CONJ +PRT-N +PREP +A-ASM +N-ASM +V-PAS-1S +CONJ +ADV +V-RPI-3S +V-FDI-3P +R-DPM +PRT-N +V-2API-3S +PREP +P-GSM +CONJ +R-NPM +PRT-N +V-2RAI-3P-ATT +V-FAI-3P +CONJ +CONJ +V-IPI-1S +T-APN +A-APN +T-GSN +V-2AAN +PREP +P-2AP +CONJ +ADV +ADV-N +N-ASM +V-PAP-NSM +PREP +T-DPN +N-DPN +D-DPN +CONJ +N-ASF +V-PAP-NSM +T-GSN +V-2AAN +PREP +P-2AP +PREP +A-GPM +N-GPN +ADV +PRT +V-PNS-1S +PREP +T-ASF +N-ASF +CONJ +V-PAI-1S +V-PNP-NSM +V-ADN +P-2AP +CONJ +PREP +P-2GP +V-APN +ADV +COND +P-2GP +ADV-S +PREP +N-GSN +V-APS-1S +CONJ +ADV +V-PNI-1S +PREP +N-PRI +V-PAP-NSM +T-DPM +A-DPM +CONJ +V-AAI-3P +N-NSF +CONJ +N-NSF +N-ASF +X-ASF +V-AMN +PREP +T-APM +A-APM +T-GPM +A-GPM +T-GPM +PREP +N-PRI +CONJ +V-AAI-3P +CONJ +N-NPM +V-PAI-3P +P-GPM +CONJ +COND +T-DPN +A-DPN +P-GPM +V-AAI-3P +T-NPN +N-NPN +V-PAI-3P +CONJ +PREP +T-DPN +A-DPN +V-AAN +P-DPM +CONJ +D-ASN +V-AAP-NSM +CONJ +V-AMP-NSM +P-DPM +T-ASM +N-ASM +D-ASM +V-FDI-1S +PREP +P-2GP +PREP +N-ASF +CONJ +V-RAI-1S +CONJ +V-PNP-NSM +PREP +P-2AP +PREP +N-DSN +N-GSF +N-GSM +V-FDI-1S +CONJ +N-VPM +V-PAI-1S +PREP +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +PREP +T-GSF +N-GSF +T-GSN +N-GSN +P-2AP +V-ADN +P-1DS +PREP +T-DPF +N-DPF +PREP +P-1GS +PREP +T-ASM +N-ASM +CONJ +V-APS-1S +PREP +T-GPM +V-PAP-GPM +PREP +T-DSF +N-DSF +CONJ +T-NSF +N-NSF +P-1GS +T-NSF +PREP +N-PRI +A-NSF +T-DPM +A-DPM +V-2ADS-3S +CONJ +PREP +N-DSF +V-2AAP-NSM +PREP +P-2AP +PREP +N-GSN +N-GSM +V-ADS-1S +P-2DP +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +PREP +A-GPM +P-2GP +HEB +CONJ +V-PAI-1S +P-2DP +N-ASF +T-ASF +N-ASF +P-1GP +V-PAP-ASF +N-ASF +T-GSF +N-GSF +T-GSF +PREP +N-DPF +CONJ +P-ASF +V-ADS-2P +PREP +N-DSM +ADV +T-GPM +A-GPM +CONJ +V-2AAS-2P +P-DSF +PREP +PRT +R-DSN +P-2GP +V-PAS-3S +N-DSN +CONJ +CONJ +P-NSF +V-AOI-3S +N-NSF +A-GPM +CONJ +P-1GS +P-GSM +V-ADM-2P +N-ASF +CONJ +N-ASM +T-APM +A-APM +P-1GS +PREP +N-DSM +N-DSM +R-NPM +PREP +T-GSF +N-GSF +P-1GS +T-ASM +F-3GPM +N-ASM +V-AAI-3P +R-DPM +V-PAI-1S +PRT-N +P-1NS +A-NSM +CONJ +CONJ +A-NPF +T-NPF +N-NPF +T-GPN +N-GPN +CONJ +T-ASF +PREP +N-ASM +P-GPM +N-ASF +V-ADM-2P +N-ASM +T-ASM +A-ASM +P-1GS +R-NSM +V-PAI-3S +N-NSF +T-GSF +N-GSF +PREP +N-ASM +V-ADM-2P +N-ASF +R-NSF +A-APN +V-AAI-3S +PREP +P-2AP +V-ADM-2P +N-ASM +CONJ +N-ASF +T-APM +A-APM +P-1GS +CONJ +A-APM +P-1GS +R-NPM +V-PAI-3P +A-NPM +PREP +T-DPM +N-DPM +R-NPM +CONJ +PREP +P-1GS +V-2RAI-3P +PREP +N-DSM +V-ADM-2P +N-ASM +T-ASM +A-ASM +P-1GS +PREP +N-DSM +V-ADM-2P +N-ASM +T-ASM +A-ASM +P-1GP +PREP +N-DSM +CONJ +N-ASM +T-ASM +A-ASM +P-1GS +V-ADM-2P +N-ASM +T-ASM +A-ASM +PREP +N-DSM +V-ADM-2P +T-APM +PREP +T-GPM +N-GSM +V-ADM-2P +N-ASM +T-ASM +A-ASM +P-1GS +V-ADM-2P +T-APM +PREP +T-GPM +N-GSM +T-APM +V-PAP-APM +PREP +N-DSM +V-ADM-2P +N-ASF +CONJ +N-ASF +T-APF +V-PAP-APF +PREP +N-DSM +V-ADM-2P +N-ASF +T-ASF +A-ASF +R-NSF +A-APN +V-AAI-3S +PREP +N-DSM +V-ADM-2P +N-ASM +T-ASM +A-ASM +PREP +N-DSM +CONJ +T-ASF +N-ASF +P-GSM +CONJ +P-1GS +V-ADM-2P +N-ASM +N-ASM +N-ASM +N-ASM +N-ASM +CONJ +T-APM +PREP +P-DPM +N-APM +V-ADM-2P +N-ASM +CONJ +N-ASF +N-ASM +CONJ +T-ASF +N-ASF +P-GSM +CONJ +N-ASM +CONJ +T-APM +PREP +P-DPM +A-APM +A-APM +V-ADM-2P +C-APM +PREP +N-DSN +A-DSN +V-PNI-3P +P-2AP +T-NPF +N-NPF +A-NPF +T-GSM +N-GSM +CONJ +N-VPM +V-PAI-1S +P-2AP +V-PAN +T-APM +T-APF +N-APF +CONJ +T-APN +N-APN +PREP +T-ASF +N-ASF +R-ASF +P-2NP +V-2AAI-2P +V-PAP-APM +CONJ +V-PAM-2P +PREP +P-GPM +CONJ +T-NPM +D-NPM +T-DSM +N-DSM +P-1GP +N-DSM +PRT-N +V-PAI-3P +CONJ +T-DSF +F-3GPM +N-DSF +CONJ +PREP +T-GSF +N-GSF +CONJ +N-GSF +V-PAI-3P +T-APF +N-APF +T-GPM +A-GPM +CONJ +T-NSF +P-2GP +N-NSF +PREP +A-APM +V-2ADI-3S +CONJ +PREP +P-2DP +V-PAI-1S +CONJ +V-PAI-1S +P-2AP +A-APM +V-PAN +PREP +T-ASN +A-ASN +CONJ +A-APM +PREP +T-ASN +A-ASN +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +V-FAI-3S +T-ASM +N-ASM +PREP +T-APM +N-APM +P-2GP +PREP +N-DSN +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +N-GSM +PREP +P-2GP +V-PNI-3S +P-2AP +N-NSM +T-NSM +A-NSM +P-1GS +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSM +T-NPM +A-NPM +P-1GS +V-PNI-1S +P-2AP +P-1NS +N-NSM +T-NSM +V-AAP-NSM +T-ASF +N-ASF +PREP +N-DSM +V-PNI-3S +P-2AP +N-NSM +T-NSM +A-NSM +P-1GS +CONJ +A-GSF +T-GSF +N-GSF +V-PNI-3S +P-2AP +N-NSM +T-NSM +N-NSM +T-GSF +N-GSF +CONJ +N-NSM +T-NSM +N-NSM +CONJ +T-DSM +V-PNP-DSM +P-2AP +V-AAN +PREP +T-ASN +N-ASN +P-1GS +CONJ +T-ASN +N-ASN +N-GSM +N-GSM +PREP +N-ASF +N-GSN +N-DPM +A-DPM +V-RPP-GSN +CONJ +V-APP-GSM +ADV +PRT +PREP +N-GPF +A-GPF +PREP +N-ASF +T-GSM +A-GSM +N-GSM +PREP +N-ASF +N-GSF +PREP +A-APN +T-APN +N-APN +V-APP-GSN +A-DSM +A-DSM +N-DSM +PREP +N-GSM +N-GSM +R-DSM +T-NSF +N-NSF +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +N-NSM +A-NSM +N-NSM +N-GSM +N-GSM +PREP +N-GSN +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +T-DSF +N-DSF +T-GSM +N-GSM +T-DSF +V-PAP-DSF +PREP +N-DSF +V-RPP-DPM +PREP +N-DSM +N-DSM +A-DPM +A-DPM +PREP +A-DPM +T-DPM +V-PMP-DPM +T-ASN +N-ASN +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +A-DSM +N-DSM +P-GPM +CONJ +P-1GP +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +V-PAI-1S +T-DSM +N-DSM +ADV +PREP +P-2GP +PREP +T-DSF +N-DSF +T-GSM +N-GSM +T-DSF +V-APP-DSF +P-2DP +PREP +N-DSM +N-DSM +CONJ +PREP +A-DSN +V-API-2P +PREP +P-DSM +PREP +A-DSM +N-DSM +CONJ +A-DSF +N-DSF +ADV +T-NSN +N-NSN +T-GSM +N-GSM +V-API-3S +PREP +P-2DP +CONJ +P-2AP +PRT-N +V-PPN +PREP +A-DSN-N +N-DSN +V-PNP-APM +T-ASF +N-ASF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +R-NSM +CONJ +V-FAI-3S +P-2AP +ADV +N-GSN +A-APM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +A-NSM +T-NSM +N-NSM +PREP +R-GSM +V-API-2P +PREP +N-ASF +T-GSM +N-GSM +P-GSM +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +CONJ +N-VPM +V-PAI-1S +P-2AP +PREP +T-GSN +N-GSN +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +T-ASN +P-ASN +V-PAS-2P +A-NPM +CONJ +PRT-N +V-PAS-3S +PREP +P-2DP +N-NPN +CONJ +V-PAS-2P +V-RPP-NPM +PREP +T-DSM +P-DSM +N-DSM +CONJ +PREP +T-DSF +P-DSF +N-DSF +CONJ +N-VPM +P-1GS +V-API-3S +P-1DS +PREP +P-2GP +PREP +T-GPM +N-GSF +CONJ +N-NPF +PREP +P-2DP +V-PAI-3P +CONJ +V-PAI-1S +D-ASN +CONJ +A-NSM +P-2GP +V-PAI-3S +PRT +P-1NS +V-PAI-1S +N-GSM +CONJ +P-1NS +N-GSM +CONJ +P-1NS +N-GSM +CONJ +P-1NS +N-GSM +V-RPI-3S +T-NSM +N-NSM +PRT-N +N-NSM +V-API-3S +PREP +P-2GP +PRT +PREP +T-ASN +N-ASN +N-GSM +V-API-2P +V-PAI-1S +CONJ +A-ASM-N +P-2GP +V-AAI-1S +COND +PRT-N +N-ASM +CONJ +N-ASM +CONJ +PRT-N +X-NSM +V-2AAS-3S +CONJ +PREP +T-ASN +S-1SASN +N-ASN +V-API-2P +CONJ +V-AAI-1S +CONJ +T-ASM +N-GSM +N-ASM +A-ASN +PRT-N +V-RAI-1S +COND +X-ASM +A-ASM +V-AAI-1S +CONJ +V-AAI-3S +P-1AS +N-NSM +PRT-N +V-PAN +CONJ +V-PMN +PRT-N +PREP +N-DSF +N-GSM +CONJ +PRT-N +V-APS-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +PRT +T-NSM +N-NSM +T-NSM +T-GSM +N-GSM +T-DPM +V-PEP-DPM +N-NSF +V-PAI-3S +CONJ +T-DPM +V-PPP-DPM +P-1DP +N-NSF +N-GSM +V-PAI-3S +CONJ +V-RPI-3S +V-FAI-1S +T-ASF +N-ASF +T-GPM +A-GPM +CONJ +T-ASF +N-ASF +T-GPM +A-GPM +V-FAI-1S +ADV-I +A-NSM +ADV-I +N-NSM +ADV-I +N-NSM +T-GSM +N-GSM +D-GSM +PRT-I +V-AAI-3S +T-NSM +N-NSM +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +CONJ +PREP +T-DSF +N-DSF +T-GSM +N-GSM +PRT-N +V-2AAI-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +T-ASM +N-ASM +V-AAI-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +T-GSN +N-GSN +V-AAN +T-APM +V-PAP-APM +CONJ +CONJ +A-NPM +N-APN +V-PAI-3P +CONJ +N-NPM +N-ASF +V-PAI-3P +CONJ +P-1NP +V-PAI-1P +N-ASM +V-RPP-ASM +PRT +A-DPM +N-ASN +CONJ +N-DPN +N-ASF +CONJ +P-DPM +T-DPM +A-DPM +PRT +A-DPM +CONJ +N-DPM +N-ASM +N-GSM +N-ASF +CONJ +N-GSM +N-ASF +CONJ +T-NSN +A-NSN +T-GSM +N-GSM +A-NSN-C +T-GPM +N-GPM +V-PAI-3S +CONJ +T-NSN +A-NSN +T-GSM +N-GSM +A-NSN-C +T-GPM +N-GPM +CONJ +N-VPM +V-PAI-2P +T-ASF +N-ASF +P-2GP +CONJ +PRT-N +A-NPM +A-NPM +PREP +N-ASF +PRT-N +A-NPM +A-NPM +PRT-N +A-NPM +A-NPM +CONJ +T-APN +A-APN +T-GSM +N-GSM +V-AMI-3S +T-NSM +N-NSM +CONJ +V-PAS-3S +T-APM +A-APM +CONJ +T-APN +A-APN +T-GSM +N-GSM +V-AMI-3S +T-NSM +N-NSM +CONJ +V-PAS-3S +T-APN +A-APN +CONJ +T-APN +A-APN +T-GSM +N-GSM +CONJ +T-APN +V-RPP-APN +T-APN +PRT-N +V-PAP-APN +V-AMI-3S +T-NSM +N-NSM +CONJ +T-APN +V-PAP-APN +V-AAS-3S +ADV +PRT-N +V-ADS-3S +A-NSF +N-NSF +PREP +T-GSM +N-GSM +CONJ +PREP +P-GSM +P-2NP +V-PAI-2P +PREP +N-DSM +N-DSM +R-NSM +V-AOI-3S +P-1DP +PREP +N-GSM +N-NSF +PRT +N-NSF +CONJ +N-NSM +CONJ +N-NSF +CONJ +ADV +V-RPI-3S +T-NSM +V-PNP-NSM +PREP +N-DSM +V-PNM-3S +N-VPM +P-1NS-K +V-2AAP-NSM +PREP +P-2AP +V-2AAI-1S +PRT-N +PREP +N-ASF +N-GSM +PRT +N-GSF +V-PAP-NSM +P-2DP +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +PRT-N +V-AAI-1S +X-ASN +V-RAN +PREP +P-2DP +COND +PRT-N +N-ASM +N-ASM +CONJ +D-ASM +V-RPP-ASM +P-1NS-K +PREP +N-DSF +CONJ +PREP +N-DSM +CONJ +PREP +N-DSM +A-DSM +V-2ADI-1S +PREP +P-2AP +CONJ +T-NSM +N-NSM +P-1GS +CONJ +T-NSN +N-NSN +P-1GS +PRT-N +PREP +A-DPM +N-GSF +N-DPM +CONJ +PREP +N-DSF +N-GSN +CONJ +N-GSF +CONJ +T-NSF +N-NSF +P-2GP +V-PAS-3S +PRT-N +PREP +N-DSF +N-GPM +CONJ +PREP +N-DSF +N-GSM +CONJ +N-ASF +V-PAI-1P +PREP +T-DPM +A-DPM +CONJ +PRT-N +N-ASF +T-GSM +N-GSM +D-GSM +CONJ-N +T-GPM +N-GPM +T-GSM +N-GSM +D-GSM +T-GPM +V-PPP-GPM +CONJ +V-PAI-1P +N-GSM +N-ASF +PREP +N-DSN +T-ASF +V-RPP-ASF +R-ASF +V-AAI-3S +T-NSM +N-NSM +PREP +T-GPM +N-GPM +PREP +N-ASF +P-1GP +R-ASF +A-NSM-N +T-GPM +N-GPM +T-GSM +N-GSM +D-GSM +V-RAI-3S +CONJ +COND +V-2AAI-3P +PRT +PRT-N +T-ASM +N-ASM +T-GSF +N-GSF +V-AAI-3P +CONJ +ADV +V-RPI-3S +R-APN +N-NSM +PRT-N +V-2AAI-3S +CONJ +N-NSN +PRT-N +V-AAI-3S +CONJ +PREP +N-ASF +N-GSM +PRT-N +V-2AAI-3S +K-APN +V-AAI-3S +T-NSM +N-NSM +T-DPM +V-PAP-DPM +P-ASM +CONJ +P-1DP +V-AAI-3S +T-NSM +N-NSM +PREP +T-GSN +N-GSN +CONJ +T-NSN +N-NSN +A-APN +V-PAI-3S +CONJ +T-APN +N-APN +T-GSM +N-GSM +CONJ +I-NSM +N-GPM +V-RAI-3S +T-APN +T-GSM +N-GSM +COND +PRT-N +T-NSN +N-NSN +T-GSM +N-GSM +T-NSN +PREP +P-DSM +ADV +CONJ +T-APN +T-GSM +N-GSM +A-NSM-N +V-RAI-3S +COND +PRT-N +T-NSN +N-NSN +T-GSM +N-GSM +CONJ +PRT-N +P-1NP +T-ASN +N-ASN +T-GSM +N-GSM +V-2AAI-1P +CONJ +T-ASN +N-ASN +T-ASN +PREP +T-GSM +N-GSM +CONJ +V-RAS-1P +T-APN +PREP +T-GSM +N-GSM +V-APP-APN +P-1DP +R-APN +CONJ +V-PAI-1P +PRT-N +PREP +A-DPM +A-GSF +N-GSF +N-DPM +CONJ +PREP +A-DPM +N-GSN +A-DPN +A-APN +V-PAP-NPM +CONJ +A-NSM +N-NSM +PRT-N +V-PNI-3S +T-APN +T-GSN +N-GSN +T-GSM +N-GSM +CONJ +N-NSF +P-DSM +V-PAI-3S +CONJ +PRT-N +V-PNI-3S +V-2AAN +CONJ +ADV +V-PPI-3S +CONJ +T-NSM +A-NSM +V-PAI-3S +PRT +A-APN +CONJ +P-NSM +PREP +A-GSM-N +V-PPI-3S +CONJ +I-NSM +V-2AAI-3S +N-ASM +N-GSM +R-NSM +V-FAI-3S +P-ASM +CONJ +P-1NP +N-ASM +N-GSM +V-PAI-1P +N-VPM +P-1NS-K +V-AOI-1S-ATT +PRT-N +V-AAN +P-2DP +ADV +A-DPM +CONJ +ADV +A-DPM +ADV +A-DPM +PREP +N-DSM +N-ASN +P-2AP +V-AAI-1S +PRT-N +N-ASN +CONJ +ADV-N +V-INI-2P +CONJ +CONJ-N +ADV +ADV +V-PNI-2P +CONJ +ADV +A-NPM +V-PAI-2P +CONJ +ADV +PREP +P-2DP +N-NSM +CONJ +N-NSF +PRT-I +A-NPM +V-PAI-2P +CONJ +PREP +N-ASM +V-PAI-2P +CONJ +CONJ +PRT +V-PAS-3S +X-NSM +P-1NS +V-PAI-1S +N-GSM +CONJ +A-NSM +P-1NS +N-GSM +PRT-N +N-NPM +V-PAI-2P +CONJ +I-NSN +V-PAI-3S +N-NSM +CONJ +I-NSN +V-PAI-3S +N-NSM +N-NPM +PREP +R-GPM +V-AAI-2P +ADV +CONJ +A-DSM +T-NSM +N-NSM +V-AAI-3S +P-1NS +V-AAI-1S +N-NSM +V-AAI-3S +CONJ +T-NSM +N-NSM +V-IAI-3S +CONJ +CONJ-N +T-NSM +V-PAP-NSM +V-PAI-3S +X-NSN +CONJ-N +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-PAP-NSM +N-NSM +CONJ +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-PAP-NSM +A-NSN +V-PAI-3P +CONJ +A-NSM +T-ASM +A-ASM +N-ASM +V-FDI-3S +PREP +T-ASM +A-ASM +N-ASM +CONJ +V-PAI-1P +N-GSM +A-NPM +N-GSM +N-NSN +N-GSM +N-NSF +V-PAI-2P +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-ASF +V-APP-ASF +P-1DS +ADV +A-NSM +N-NSM +N-ASM +V-AAI-1S +CONJ +A-NSM +V-PAI-3S +CONJ +A-NSM +V-PAM-3S +ADV +V-PAI-3S +CONJ +A-NSM-N +V-PNI-3S +N-ASM +A-ASM +V-2AAN +PREP +T-ASM +V-PNP-ASM +R-NSM +V-PAI-3S +N-NSM +N-NSM +CONJ +COND +X-NSM +V-PAI-3S +PREP +T-ASM +N-ASM +N-ASN +N-ASN +N-APM +A-APM +N-APN +N-ASM +N-ASF +A-GSM +T-NSN +N-NSN +A-NSN +V-FDI-3S +CONJ +T-NSF +N-NSF +V-FAI-3S +CONJ +PREP +N-DSN +V-PPI-3S +CONJ +A-GSM +T-NSN +N-NSN +A-NSN +V-PAI-3S +T-NSN +N-NSN +P-NSN +V-FAI-3S +COND +V-FAI-3S +X-GSM +T-NSN +N-NSN +R-ASN +V-AAI-3S +N-ASM +V-FDI-3S +COND +X-GSM +T-NSN +N-NSN +V-2FPI-3S +V-FPI-3S +CONJ +P-NSM +V-FPI-3S +CONJ +ADV +ADV +PREP +N-GSN +PRT-N +V-RAI-2P +CONJ +N-NSM +N-GSM +V-PAI-2P +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +PREP +P-2DP +V-PAI-3S +COND +X-NSM +T-ASM +N-ASM +T-GSM +N-GSM +V-PAI-3S +V-FAI-3S +D-ASM +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +A-NSM +V-PAI-3S +R-NPM +V-PAI-2P +P-2NP +A-NSM-N +F-3ASM +V-PAM-3S +COND +X-NSM +V-PAI-3S +A-NSM +V-PAN +PREP +P-2DP +PREP +T-DSM +N-DSM +D-DSM +A-NSM +V-2ADM-3S +CONJ +V-2ADS-3S +A-NSM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +D-GSM +N-NSF +PREP +T-DSM +N-DSM +V-PAI-3S +CONJ +V-RPI-3S +T-NSM +V-PNP-NSM +T-APM +A-APM +PREP +T-DSF +N-DSF +P-GPM +CONJ +ADV +N-NSM +V-PAI-3S +T-APM +N-APM +T-GPM +A-GPM +CONJ +V-PAI-3P +A-NPM +CONJ +A-NSM-N +V-PNM-3S +PREP +N-DPM +CONJ +A-NPN +P-2GP +V-PAI-3S +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSF +CONJ +N-NSM +CONJ +V-RAP-NPN +CONJ +V-PAP-NPN +A-NPN +P-2GP +CONJ +P-2NP +N-GSM +CONJ +N-NSM +N-GSM +ADV +P-1AP +V-PNM-3S +N-NSM +ADV +N-APM +N-GSM +CONJ +N-APM +N-GPN +N-GSM +ADV +A-ASN +V-PPI-3S +PREP +T-DPM +N-DPM +CONJ +A-NSM +X-NSM +V-APS-3S +CONJ +P-1DS +PREP +A-ASN-S +V-PAI-3S +CONJ +V-APS-1S +PREP +P-2GP +PRT +PREP +A-GSF +N-GSF +CONJ +CONJ-N +F-1ASM +V-PAI-1S +CONJ +A-ASN-N +F-1DSM +V-RAI-1S +CONJ +PRT-N +PREP +D-DSN +V-RPI-1S +CONJ +T-NSM +V-PAP-NSM +P-1AS +N-NSM +V-PAI-3S +CONJ +PRT-N +PREP +N-GSM +X-ASN +V-PAM-2P +ADV +PRT +V-2AAS-3S +T-NSM +N-NSM +R-NSM +CONJ +V-FAI-3S +T-APN +A-APN +T-GSN +N-GSN +CONJ +V-FAI-3S +T-APF +N-APF +T-GPF +N-GPF +CONJ +ADV +T-NSM +N-NSM +V-FDI-3S +A-DSM +PREP +T-GSM +N-GSM +CONJ +N-VPM +D-APN +V-AAI-1S +PREP +F-1ASM +CONJ +N-ASM +PREP +P-2AP +CONJ +PREP +P-1DP +V-2AAS-2P +T-ASN +PRT-N +PREP +R-NPN +V-RPI-3S +CONJ +PRT-N +A-NSM +PREP +T-GSM +A-GSM +V-PPS-2P +PREP +T-GSM +A-GSM +CONJ +I-NSM +P-2AS +V-PAI-3S +CONJ +V-PAI-2S +I-ASN +R-ASN +PRT-N +V-2AAI-2S +CONJ +COND +CONJ +V-2AAI-2S +I-ASN +V-PNI-2S +ADV +PRT-N +V-2AAP-NSM +ADV +V-RPP-NPM +V-PAI-2P +ADV +V-AAI-2P +ADV +P-1GP +V-AAI-2P +CONJ +V-2AAI-1S +PRT +V-AAI-2P +CONJ +CONJ +P-1NP +P-2DP +V-AAS-1P +CONJ +V-PAI-1S +T-NSM +N-NSM +P-1AP +T-APM +N-APM +A-APM-S +V-AAI-3S +ADV +A-APM +CONJ +N-NSN +V-AOI-1P +T-DSM +N-DSM +CONJ +N-DPM +CONJ +N-DPM +P-1NP +A-NPM +PREP +N-ASM +CONJ +P-2NP +A-NPM +PREP +N-DSM +P-1NP +A-NPM +CONJ +P-2NP +A-NPM +P-2NP +A-NPM +CONJ +P-1NP +A-NPM +ADV +T-GSF +ADV +N-GSF +CONJ +V-PAI-1P +CONJ +V-PAI-1P +CONJ +V-PAI-1P +CONJ +V-PPI-1P +CONJ +V-PAI-1P +CONJ +V-PAI-1P +V-PNP-NPM +T-DPF +A-DPF +N-DPF +V-PPP-NPM +V-PAI-1P +V-PPP-NPM +V-PNI-1P +V-PPP-NPM +V-PAI-1P +ADV +N-NPN +T-GSM +N-GSM +A-GPN +N-NSN +V-AOI-1P +ADV +ADV +PRT-N +V-PAP-NSM +P-2AP +V-PAI-1S +D-APN +CONJ +ADV +N-APN +P-1GS +A-APN +V-PAP-NSM +CONJ +COND +A-APM +N-APM +V-PAS-2P +PREP +N-DSM +CONJ +PRT-N +A-APM +N-APM +CONJ +PREP +N-DSM +N-DSM +PREP +T-GSN +N-GSN +P-1NS +P-2AP +V-AAI-1S +CONJ +V-PAI-1S +P-2AP +N-NPM +P-1GS +V-PNM-2P +PREP +D-ASN +P-ASN +V-AAI-1S +P-2DP +N-ASM +R-NSM +V-PAI-3S +P-1GS +N-NSN +A-NSN +CONJ +A-NSN +PREP +N-DSM +R-NSM +P-2AP +V-FAI-3S +T-APF +N-APF +P-1GS +T-APF +PREP +N-DSM +N-DSM +ADV +ADV +PREP +A-DSF +N-DSF +V-PAI-1S +CONJ +ADV +PRT-N +V-PNP-GSM +P-1GS +PREP +P-2AP +V-API-3P +X-NPM +CONJ +V-FDI-1S +ADV +PREP +P-2AP +COND +T-NSM +N-NSM +V-AAS-3S +CONJ +V-FDI-1S +PRT-N +T-ASM +N-ASM +T-GPM +V-RPP-GPM +CONJ +T-ASF +N-ASF +CONJ +PRT-N +PREP +N-DSM +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +PREP +N-DSF +I-ASN +V-PAI-2P +PREP +N-DSF +V-2AAS-1S +PREP +P-2AP +PRT +PREP +N-DSF +PRT +N-DSN +N-GSF +ADV +V-PPI-3S +PREP +P-2DP +N-NSF +CONJ +D-NSF +N-NSF +R-NSF +CONJ-N +PREP +T-DPN +N-DPN +CONJ +X-ASM +N-ASF +T-GSM +N-GSM +V-PAN +CONJ +P-2NP +V-RPP-NPM +V-PAI-2P +CONJ +PRT-I +ADV +V-AAI-2P +CONJ +V-APS-3S +PREP +A-GSN +P-2GP +T-NSM +T-ASN +N-ASN +D-ASN +V-AAP-NSM +CONJ +P-1NS +PRT +V-PAP-NSM +T-DSN +N-DSN +CONJ +V-PAP-NSM +T-DSN +N-DSN +ADV +V-RAI-1S +ADV +V-PAP-NSM +T-ASM +ADV +D-ASN +V-ADP-ASM +PREP +T-DSN +N-DSN +T-GSM +N-GSM +N-GSM +V-APP-GPM +P-2GP +CONJ +T-GSN +S-1SGSN +N-GSN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GP +N-GSM +V-2AAN +T-ASM +D-ASM +T-DSM +N-DSM +PREP +N-ASM +T-GSF +N-GSF +CONJ +T-NSN +N-NSN +V-APS-3S +PREP +T-DSF +N-DSF +T-GSM +N-GSM +PRT-N +A-NSN +T-NSN +N-NSN +P-2GP +PRT-N +V-RAI-2P +CONJ +A-NSF +N-NSF +A-ASN +T-ASN +N-ASN +V-PAI-3S +V-AAM-2P +T-ASF +A-ASF +N-ASF +CONJ +V-PAS-2P +A-NSN +N-NSN +ADV +V-PAI-2P +A-NPM +CONJ +CONJ +T-NSN +ARAM +P-1GP +N-NSM +V-API-3S +CONJ +V-PAS-1P +PRT-N +PREP +N-DSF +A-DSF +CONJ-N +PREP +N-DSF +N-GSF +CONJ +N-GSF +CONJ +PREP +A-DPN +N-GSF +CONJ +N-GSF +V-AAI-1S +P-2DP +PREP +T-DSF +N-DSF +PRT-N +V-PMN +N-DPM +PRT-N +ADV +T-DPM +N-DPM +T-GSM +N-GSM +D-GSM +PRT +T-DPM +N-DPM +CONJ +A-DPM +PRT +N-DPM +CONJ +PRT +V-IAI-2P +PREP +T-GSM +N-GSM +V-2AAN +CONJ +ADV +V-AAI-1S +P-2DP +PRT-N +V-PMN +COND +X-NSM +N-NSM +V-PPP-NSM +V-PAS-3S +N-NSM +PRT +N-NSM +PRT +N-NSM +PRT +A-NSM +PRT +N-NSM +PRT +A-NSM +T-DSM +D-DSM +CONJ-N +V-PAN +CONJ +I-NSN +P-1DS +T-APM +ADV +V-PAN +PRT-I +T-APM +ADV +P-2NP +V-PAI-2P +CONJ +T-APM +ADV +T-NSM +N-NSM +V-FAI-3S +V-AAM-2P +T-ASM +A-ASM +PREP +P-2GP +P-GPM +V-PAI-3S +X-NSM +P-2GP +N-ASN +V-PAP-NSM +PREP +T-ASM +A-ASM +V-PPN +PREP +T-GPM +A-GPM +CONJ +PRT-I +PREP +T-GPM +A-GPM +PRT +PRT-N +V-RAI-2P +CONJ +T-NPM +A-NPM +T-ASM +N-ASM +V-FAI-3P +CONJ +COND +PREP +P-2DP +V-PPI-3S +T-NSM +N-NSM +A-NPM +V-PAI-2P +N-GPN +A-GPN-S +PRT-N +V-RAI-2P +CONJ +N-APM +V-FAI-1P +PRT-I +A-APN +PRT +CONJ +COND +A-APN +N-APN +V-PAS-2P +T-APM +V-RPP-APM +PREP +T-DSF +N-DSF +D-APM +V-PAI-2P +PREP +N-ASF +P-2DP +V-PAI-1S +PRT-N +ADV +V-PAI-3S +PREP +P-2DP +A-NSM-N +A-NSM +R-NSM +V-FDI-3S +V-AAN +PREP +A-ASN +T-GSM +N-GSM +P-GSM +CONJ +N-NSM +PREP +N-GSM +V-PPI-3S +CONJ +D-NSN +PREP +A-GPM +PRT +CONJ +ADV +ADV +N-NSN +P-2DP +V-PAI-3S +CONJ +N-APN +V-PAI-2P +PREP +F-2GPM +PREP +I-ASN +PRT-I +ADV +V-PPI-2P +PREP +I-ASN +PRT-I +ADV +V-PPI-2P +CONJ +P-2NP +V-PAI-2P +CONJ +V-PAI-2P +CONJ +D-ASN +N-APM +PRT +PRT-N +V-RAI-2P +CONJ +A-NPM +N-GSM +N-ASF +PRT-N +V-FAI-3P +PRT-N +V-PPM-2P +CONJ-N +N-NPM +CONJ-N +N-NPM +CONJ-N +N-NPM +CONJ-N +A-NPM +CONJ-N +N-NPM +CONJ-N +N-NPM +CONJ-N +N-NPM +PRT-N +N-NPM +PRT-N +A-NPM +PRT-N +A-NPM +N-ASF +N-GSM +V-FAI-3P +CONJ +D-NPN +X-NPM +V-IAI-2P +CONJ +V-AMI-2P +CONJ +V-API-2P +CONJ +V-API-2P +PREP +T-DSN +N-DSN +T-GSM +N-GSM +N-GSM +N-GSM +CONJ +PREP +T-DSN +N-DSN +T-GSM +N-GSM +P-1GP +A-NPN +P-1DS +V-PAI-3S +CONJ +PRT-N +A-NPN +V-PAI-3S +A-NPN +P-1DS +V-PAI-3S +CONJ +PRT-N +P-1NS +V-FPI-1S +PREP +X-GSN +T-NPN +N-NPN +T-DSF +N-DSF +CONJ +T-NSF +N-NSF +T-DPN +N-DPN +CONJ +T-NSM +N-NSM +CONJ +D-ASF +CONJ +D-APN +V-FAI-3S +CONJ +T-NSN +N-NSN +PRT-N +T-DSF +N-DSF +CONJ +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +T-DSN +N-DSN +CONJ +T-NSM +N-NSM +CONJ +T-ASM +N-ASM +V-AAI-3S +CONJ +P-1AP +V-FAI-3S +PREP +T-GSF +N-GSF +P-GSM +PRT-N +V-RAI-2P +CONJ +T-NPN +N-NPN +P-2GP +N-NPN +N-GSM +V-PAI-3S +CONJ +V-AAP-NSM +T-APN +N-APN +T-GSM +N-GSM +V-AAS-1S +N-GSF +N-APN +PRT-N +V-2ADO-3S +PRT +PRT-N +V-RAI-2P +CONJ +T-NSM +V-PPP-NSM +T-DSF +N-DSF +A-NSN +N-NSN +V-PAI-3S +CONJ +V-PAI-3S +V-FDI-3P +T-NPM +A-NUI +PREP +N-ASF +A-ASF +CONJ +T-NSM +V-PPP-NSM +T-DSM +N-DSM +A-NSN +N-NSN +V-PAI-3S +V-PAM-2P +T-ASF +N-ASF +A-NSN +N-NSN +COND +R-ASN +V-AAS-3S +N-NSM +ADV +T-GSN +N-GSN +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +PREP +T-ASN +A-ASN +N-ASN +V-PAI-3S +PRT +PRT-N +V-RAI-2P +CONJ +T-NSN +N-NSN +P-2GP +N-NSM +T-GSN +PREP +P-2DP +A-GSN +N-GSN +V-PAI-3S +R-GSN +V-PAI-2P +PREP +N-GSM +CONJ +PRT-N +V-PAI-2P +F-2GPM +CONJ +V-API-2P +N-GSF +PRT +V-AAM-2P +T-ASM +N-ASM +PREP +T-DSN +N-DSN +P-2GP +CONJ +PREP +R-GPN +V-AAI-2P +A-NSN +N-DSM +N-GSF +PRT-N +V-PMN +CONJ +PREP +T-APF +N-APF +A-NSM +T-ASF +F-3GSM +N-ASF +V-PAM-3S +CONJ +A-NSF +T-ASM +A-ASM +N-ASM +V-PAM-3S +T-DSF +N-DSF +T-NSM +N-NSM +T-ASF +N-ASF +V-PAM-3S +CONJ +ADV +CONJ +T-NSF +N-NSF +T-DSM +N-DSM +T-NSF +N-NSF +T-GSN +A-GSN +N-GSN +PRT-N +V-PAI-3S +CONJ +T-NSM +N-NSM +CONJ +ADV +CONJ +T-NSM +N-NSM +T-GSN +A-GSN +N-GSN +PRT-N +V-PAI-3S +CONJ +T-NSF +N-NSF +PRT-N +V-PAM-2P +C-APM +COND +PRT-I +PRT +PREP +A-GSN +PREP +N-ASM +CONJ +V-AAS-2P +T-DSF +N-DSF +CONJ +ADV +PREP +T-ASN +P-ASN +V-PAS-2P +CONJ +PRT-N +V-PAS-3S +P-2AP +T-NSM +N-NSM +PREP +T-ASF +N-ASF +P-2GP +CONJ +D-ASN +V-PAI-1S +PREP +N-ASF +PRT-N +PREP +N-ASF +CONJ +V-PAI-1S +A-APM +N-APM +V-PAN +ADV +CONJ +F-1ASM +CONJ +A-NSM +V-PAI-3S +A-ASN +N-ASN +PREP +N-GSM +PRT +T-NSM +ADV +CONJ +T-NSM +ADV +CONJ +V-PAI-1S +T-DPM +N-DPM +CONJ +T-DPF +N-DPF +A-NSN +P-DPM +COND +V-AAS-3P +ADV +P-1NS-K +CONJ +COND +PRT-N +V-PNI-3P +V-AAM-3P +CONJ +A-NSN-C +V-PAI-3S +V-PAN +PRT +V-PPN +CONJ +T-DPM +V-RAP-DPM +V-PAI-1S +PRT-N +P-1NS +CONJ +T-NSM +N-NSM +N-ASF +PREP +N-GSM +PRT-N +V-APN +CONJ +COND +CONJ +V-APS-3S +V-PAM-3S +N-NSF +PRT +T-DSM +N-DSM +V-2APM-3S +CONJ +N-ASM +N-ASF +PRT-N +V-PAN +CONJ +T-DPM +A-DPM +V-PAI-1S +P-1NS +PRT-N +T-NSM +N-NSM +COND +X-NSM +N-NSM +V-PAI-3S +N-ASF +A-ASF +CONJ +D-NSF +V-PAI-3S +V-PAN +PREP +P-GSM +PRT-N +V-PAM-3S +P-ASF +CONJ +N-NSF +R-NSF +V-PAI-3S +N-ASM +A-ASM +CONJ +D-NSM +V-PAI-3S +V-PAN +PREP +P-GSF +PRT-N +V-PAM-3S +T-ASM +N-ASM +CONJ +V-RPI-3S +T-NSM +N-NSM +T-NSM +A-NSM +PREP +T-DSF +N-DSF +CONJ +V-RPI-3S +T-NSF +N-NSF +T-NSF +A-NSF +PREP +T-DSM +N-DSM +PRT +CONJ +T-NPN +N-NPN +P-2GP +A-NPN +V-PAI-3S +CONJ +ADV +A-NPN +V-PAI-3S +CONJ +COND +T-NSM +A-NSM +V-PMI-3S +V-PPM-3S +PRT-N +V-RPI-3S +T-NSM +N-NSM +PRT +T-NSF +N-NSF +PREP +T-DPN +D-DPN +CONJ +PREP +N-DSF +V-RAI-3S +P-2AP +T-NSM +N-NSM +CONJ +N-VSF +I-ASN +V-RAI-2S +COND +T-ASM +N-ASM +V-FAI-2S +PRT +N-VSM +I-ASN +V-RAI-2S +COND +T-ASF +N-ASF +V-FAI-2S +COND +PRT-N +ADV +A-DSM +V-RAI-3S +T-NSM +N-NSM +ADV +A-ASM +V-RAI-3S +T-NSM +N-NSM +ADV +V-PAM-3S +CONJ +ADV +PREP +T-DPF +N-DPF +A-DPF +V-PMI-1S +V-RPP-NSM +X-NSM +V-API-3S +PRT-N +V-PNM-3S +PREP +N-DSF +V-RPI-3S +X-NSM +PRT-N +V-PPM-3S +T-NSF +N-NSF +A-NSN-N +V-PAI-3S +CONJ +T-NSF +N-NSF +A-NSN-N +V-PAI-3S +CONJ +N-NSF +N-GPF +N-GSM +A-NSM +PREP +T-DSF +N-DSF +R-DSF +V-API-3S +PREP +D-DSF +V-PAM-3S +N-NSM +V-API-2S +PRT-N +P-2DS +V-PAM-3S +CONJ +COND +CONJ +V-PNI-2S +A-NSM +V-2ADN +ADV +V-ADM-2S +CONJ +T-NSM +PREP +N-DSM +V-APP-NSM +N-NSM +N-NSM +N-GSM +V-PAI-3S +ADV +T-NSM +A-NSM +V-APP-NSM +V-PAI-3S +N-NSM +N-GSM +N-GSF +V-API-2P +PRT-N +V-PNM-2P +N-NPM +N-GPM +N-VPM +A-NSM +PREP +R-DSN +V-API-3S +PREP +D-DSN +V-PAM-3S +PREP +N-DSM +CONJ +PREP +T-GPF +N-GPF +N-ASF +N-GSM +PRT-N +V-PAI-1S +CONJ +N-ASF +V-PAI-1S +ADV +V-RPP-NSM +PREP +N-GSM +A-NSM +V-PAN +CONJ +V-PAI-1S +D-ASN +A-ASN +V-PAN +PREP +T-ASF +V-RAP-ASF +N-ASF +CONJ +A-NSN +N-DSM +T-NSN +ADV +V-PAN +V-RPI-2S +N-DSF +PRT-N +V-PAM-2S +N-ASF +V-RPI-2S +PREP +N-GSF +PRT-N +V-PAM-2S +N-ASF +CONJ +COND +CONJ +V-AAS-2S +PRT-N +V-2AAI-2S +CONJ +COND +V-AAS-3S +T-NSF +N-NSF +PRT-N +V-2AAI-3S +CONJ +N-ASF +T-DSF +N-DSF +V-FAI-3P +T-NPM +D-NPM +CONJ +P-1NS +P-2GP +V-PNI-1S +CONJ +N-VPM +D-ASN +V-PAI-1S +T-NSM +N-NSM +V-RPP-NSM +V-PAI-3S +T-ASN +A-ASN +CONJ +CONJ +T-NPM +V-PAP-NPM +N-APF +ADV +PRT-N +V-PAP-NPM +V-PAS-3P +CONJ +T-NPM +V-PAP-NPM +ADV +PRT-N +V-PAP-NPM +CONJ +T-NPM +V-PAP-NPM +ADV +PRT-N +V-PAP-NPM +CONJ +T-NPM +V-PAP-NPM +ADV +PRT-N +V-PAP-NPM +CONJ +T-NPM +V-PNP-NPM +T-ASM +N-ASM +ADV +PRT-N +V-PNP-NPM +CONJ +V-PAI-3S +T-NSN +N-NSN +T-GSM +N-GSM +D-GSM +CONJ +V-PAI-1S +P-2AP +A-APM +V-PAN +T-NSM +N-NSM +V-PAI-3S +T-APN +T-GSM +N-GSM +ADV-I +V-AAS-3S +T-DSM +N-DSM +CONJ +T-NSM +V-AAP-NSM +V-PAI-3S +T-APN +T-GSM +N-GSM +ADV-I +V-AAS-3S +T-DSF +N-DSF +CONJ +V-RPI-3S +CONJ +T-NSF +N-NSF +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +V-PAI-3S +T-APN +T-GSM +N-GSM +CONJ +V-PAS-3S +A-NSF +CONJ +T-DSN +N-DSN +CONJ +T-DSN +N-DSN +CONJ +T-NSF +V-AAP-NSF +V-PAI-3S +T-APN +T-GSM +N-GSM +ADV-I +V-AAS-3S +T-DSM +N-DSM +CONJ +D-ASN +PREP +T-ASN +P-2GP +P-GPM +A-ASN +V-PAI-1S +PRT-N +CONJ +N-ASM +P-2DP +V-2AAS-1S +CONJ +PREP +T-ASN +A-ASN +CONJ +A-ASN +T-DSM +N-DSM +ADV +CONJ +COND +X-NSM +V-PAN +PREP +T-ASF +N-ASF +P-GSM +V-PAI-3S +COND +V-PAS-3S +A-NSM +CONJ +ADV +V-PAI-3S +V-PNN +R-ASN +V-PAI-3S +V-PAM-3S +PRT-N +V-PAI-3S +V-PAM-3P +CONJ +R-NSM +V-RAI-3S +PREP +T-DSF +N-DSF +P-GSM +A-NSM +PRT-N +V-PAP-NSM +N-ASF +CONJ +N-ASF +V-PAI-3S +PREP +T-GSN +A-GSN +N-GSN +CONJ +D-ASN +V-RAI-3S +PREP +T-DSF +A-DSF +N-DSF +V-PAN +T-ASF +F-3GSM +N-ASF +ADV +V-FAI-3S +CONJ +CONJ +T-NSM +V-PAP-NSM +T-ASF +F-3GSM +N-ASF +ADV +V-PAI-3S +CONJ +T-NSM +PRT-N +V-PAP-NSM +A-ASN-C +V-FAI-3S +N-NSF +V-RPI-3S +PREP +K-ASM +N-ASM +V-PAI-3S +T-NSM +N-NSM +P-GSF +CONJ +COND +V-APS-3S +T-NSM +N-NSM +A-NSF +V-PAI-3S +R-DSM +V-PAI-3S +V-APN +ADV +PREP +N-DSM +CONJ +A-NSF-C +V-PAI-3S +COND +ADV +V-AAS-3S +PREP +T-ASF +S-1SASF +N-ASF +CONJ +V-PAI-1S +P-1NS-K +N-ASN +N-GSM +V-PAN +CONJ +PREP +T-GPN +A-GPN +V-RAI-1P +CONJ +A-NPM +N-ASF +V-PAI-1P +T-NSF +N-NSF +V-PAI-3S +CONJ +T-NSF +N-NSF +V-PAI-3S +COND +X-NSM +V-PAI-3S +V-RAN +X-ASN +ADV-N +V-2AAI-3S +ADV +V-PAI-3S +V-2AAN +CONJ +COND +X-NSM +V-PAI-3S +T-ASM +N-ASM +D-NSM +V-RPI-3S +PREP +P-GSM +CONJ +PREP +T-GSF +N-GSF +T-GPN +A-GPN +V-RAI-1P +CONJ +A-NSN-N +N-NSN +PREP +N-DSM +CONJ +CONJ +A-NSM-N +N-NSM +COND +PRT-N +A-NSM +CONJ +COND +CONJ +V-PAI-3P +V-PPP-NPM +N-NPM +CONJ +PREP +N-DSM +CONJ +PREP +N-GSF +ADV +V-PAI-3P +N-NPM +A-NPM +CONJ +N-NPM +A-NPM +CONJ +P-1DP +A-NSM +N-NSM +T-NSM +N-NSM +PREP +R-GSM +T-NPN +A-NPN +CONJ +P-1NP +PREP +P-ASM +CONJ +A-NSM +N-NSM +N-NSM +N-NSM +PREP +R-GSM +T-NPN +A-NPN +CONJ +P-1NP +PREP +P-GSM +CONJ +PRT-N +PREP +A-DPM +T-NSF +N-NSF +CONJ +X-NPM +T-DSF +N-DSF +ADV +ADV +T-GSN +N-GSN +ADV +A-ASN +V-PAI-3P +CONJ +T-NSF +N-NSF +P-GPM +A-NSF +V-PAP-NSF +V-PPI-3S +CONJ +N-NSN +P-1AP +PRT-N +V-FAI-3S +T-DSM +N-DSM +CONJ-N +COND +PRT-N +V-2AAS-1P +V-PPI-1P +CONJ-N +COND +V-2AAS-1P +V-PAI-1P +CONJ +V-PAM-2P +PRT-N +ADV-I +T-NSF +N-NSF +P-2GP +D-NSF +N-NSN +V-2ADS-3S +T-DPM +A-DPM +CONJ +COND +X-NSM +V-2AAS-3S +P-2AS +T-ASM +V-PAP-ASM +N-ASF +PREP +N-DSN +V-PNP-ASM +PRT-I +T-NSF +N-NSF +P-GSM +A-GSM +V-PAP-GSM +V-FPI-3S +PREP +T-ASN +T-APN +A-APN +V-PAN +CONJ +V-PPI-3S +PREP +T-DSF +S-2SDSF +N-DSF +T-NSM +V-PAP-NSM +T-NSM +N-NSM +PREP +R-ASM +N-NSM +V-2AAI-3S +CONJ +ADV +V-PAP-NPM +PREP +T-APM +N-APM +CONJ +V-PAP-NPM +P-GPM +T-ASF +N-ASF +V-PAP-ASF +PREP +N-ASM +V-PAI-2P +CONJ +COND +N-NSN +V-PAI-3S +T-ASM +N-ASM +P-1GS +PRT-N +PRT-N +V-2AAS-1S +N-APN +PREP +T-ASM +N-ASM +CONJ +PRT-N +T-ASM +N-ASM +P-1GS +V-AAS-1S +PRT-N +V-PAI-1S +A-NSM +PRT-N +V-PAI-1S +N-NSM +PRT-I +N-ASM +T-ASM +N-ASM +P-1GP +V-RAI-1S +PRT-N +T-NSN +N-NSN +P-1GS +P-2NP +V-PAI-2P +PREP +N-DSM +COND +A-DPM +PRT-N +V-PAI-1S +N-NSM +CONJ +PRT +P-2DP +V-PAI-1S +CONJ +T-NSF +N-NSF +P-1GS +T-GSF +N-GSF +P-2NP +V-PAI-2P +PREP +N-DSM +T-NSF +S-1SNSF +N-NSF +T-DPM +P-1AS +V-PAP-DPM +V-PAI-3S +D-NSF +PRT-N +PRT-N +V-PAI-1P +N-ASF +V-2AAN +CONJ +V-2AAN +PRT-N +PRT-N +V-PAI-1P +N-ASF +N-ASF +N-ASF +V-PAN +ADV +CONJ +T-NPM +A-NPM +N-NPM +CONJ +T-NPM +N-NPM +T-GSM +N-GSM +CONJ +N-NSM +PRT +A-NSM +P-1NS +CONJ +N-NSM +PRT-N +V-PAI-1P +N-ASF +PRT-N +V-PNN +I-NSM +V-PMI-3S +A-DPN +N-DPN +PRT +I-NSM +V-PAI-3S +N-ASM +CONJ +T-ASM +N-ASM +P-GSM +PRT-N +V-PAI-3S +PRT +I-NSM +V-PAI-3S +N-ASF +CONJ +PREP +T-GSN +N-GSN +T-GSF +N-GSF +PRT-N +V-PAI-3S +PRT-N +PREP +N-ASM +D-APN +V-PAI-1S +PRT +CONJ +T-NSM +N-NSM +D-APN +PRT-N +V-PAI-3S +CONJ +PREP +T-DSM +N-GSM +N-DSM +V-RPI-3S +PRT-N +V-FAI-2S +N-ASM +V-PAP-ASM +PRT-N +T-GPM +N-GPM +V-PAI-3S +T-DSM +N-DSM +PRT +PREP +P-1AP +ADV +V-PAI-3S +CONJ +PREP +P-1AP +V-2API-3S +CONJ +V-PAI-3S +PREP +N-DSF +V-PAN +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-PAP-NSM +PREP +N-DSF +T-GSN +V-PAN +COND +P-1NP +P-2DP +T-APN +A-APN +V-AAI-1P +A-NSN +COND +P-1NP +P-2GP +T-APN +A-APN +V-FAI-1P +COND +A-NPM +T-GSF +P-2GP +N-GSF +V-PAI-3P +PRT-N +ADV +P-1NP +CONJ +PRT-N +V-ADI-1P +T-DSF +N-DSF +D-DSF +CONJ +A-APN +V-PAI-1P +CONJ +PRT-N +X-ASF +N-ASF +V-2AAS-1P +T-DSN +N-DSN +T-GSM +N-GSM +PRT-N +V-RAI-2P +CONJ +T-NPM +T-APN +A-APN +V-PNP-NPM +T-APN +PREP +T-GSN +N-GSN +V-PAI-3P +T-NPM +T-DSN +N-DSN +V-PAP-NPM +T-DSN +N-DSN +V-PNI-3P +ADV +CONJ +T-NSM +N-NSM +V-AAI-3S +T-DPM +T-ASN +N-ASN +V-PAP-DPM +PREP +T-GSN +N-GSN +V-PAN +CONJ +P-1NS +PRT-N +V-RNI-1S +A-DSN-N +D-GPN +CONJ +PRT-N +V-AAI-1S +D-APN +CONJ +ADV +V-2ADS-3S +PREP +P-1DS +CONJ +A-NSN +P-1DS +ADV +V-2AAN +PRT +T-ASN +N-ASN +P-1GS +A-NSM-N +V-FAI-3S +CONJ +COND +V-PMS-1S +PRT-N +V-PAI-3S +P-1DS +N-NSN +CONJ +N-NSF +P-1DS +V-PNI-3S +CONJ +INJ +P-1DS +V-PAI-3S +COND +PRT-N +V-AMS-1S +CONJ +COND +A-NSM +D-ASN +V-PAI-1S +N-ASM +V-PAI-1S +CONJ +COND +A-NSM +N-ASF +V-RPI-1S +CONJ +I-NSM +V-PAI-3S +P-1GS +T-NSM +N-NSM +CONJ +V-PMP-NSM +A-ASN +V-AAS-1S +T-ASN +N-ASN +PREP +T-ASN +PRT-N +V-ADN +T-DSF +N-DSF +P-1GS +PREP +T-DSN +N-DSN +CONJ +A-NSM +V-PAP-NSM +PREP +A-GPM +A-DPM +F-1ASM +V-AAI-1S +CONJ +T-APM +A-APM-C +V-AAS-1S +CONJ +V-2ADI-1S +T-DPM +A-DPM +ADV +A-NSM +CONJ +A-APM +V-AAS-1S +T-DPM +PREP +N-ASM +ADV +PREP +N-ASM +PRT-N +V-PAP-NSM +P-NSM +PREP +N-ASM +CONJ +T-APM +PREP +N-ASM +V-AAS-1S +T-DPM +A-DPM +ADV +A-NSM +PRT-N +V-PAP-NSM +A-NSM +N-GSM +CONJ +A-NSM +N-GSM +CONJ +V-AAS-1S +T-APM +A-APM +V-2ADI-1S +T-DPM +A-DPM +A-NSM +CONJ +T-APM +A-APM +V-AAS-1S +T-DPM +A-DPM +V-2RAI-1S +A-NPN +CONJ +ADV +X-APM +V-AAS-1S +CONJ +A-APN +V-PAI-1S +PREP +T-ASN +N-ASN +CONJ +N-NSM +P-GSN +V-2ADS-1S +PRT-N +V-RAI-2P +CONJ +T-NPM +PREP +N-DSN +V-PAP-NPM +PRT +A-NPM +V-PAI-3P +CONJ +A-NSM +V-PAI-3S +T-ASN +N-ASN +ADV +V-PAM-2P +CONJ +V-2AAS-2P +CONJ +A-NSM +T-NSM +V-PNP-NSM +A-APN +V-PNI-3S +CONJ +PRT +D-NPM +CONJ +A-ASM +N-ASM +V-2AAS-3P +CONJ +P-1NP +A-ASM +PRT +P-1NS +ADV +V-PAI-1S +ADV +PRT-N +ADV +ADV +V-PAI-1S +ADV +PRT-N +N-ASM +V-PAP-NSM +CONJ +V-PAI-1S +P-1GS +T-ASN +N-ASN +CONJ +V-PAI-1S +PRT-N +ADV-I +A-DPM +V-AAP-NSM +P-NSM +A-NSM +V-2ADS-1S +CONJ +N-VPM +PRT-N +V-PAI-1S +P-2AP +V-PAN +CONJ +T-NPM +N-NPM +P-1GP +A-NPM +PREP +T-ASF +N-ASF +V-IAI-3P +CONJ +A-NPM +PREP +T-GSF +N-GSF +V-2AAI-3P +CONJ +A-NPM +PREP +T-ASM +N-ASM +V-AMI-3P +PREP +T-DSF +N-DSF +CONJ +PREP +T-DSF +N-DSF +CONJ +A-NPM +T-ASN +P-ASN +A-ASN +N-ASN +V-2AAI-3P +CONJ +A-NPM +T-ASN +P-ASN +A-ASN +N-ASN +V-2AAI-3P +CONJ +V-IAI-3P +PREP +A-GSF +V-PAP-GSF +N-GSF +CONJ +T-NSF +N-NSF +V-IAI-3S +T-NSM +N-NSM +CONJ +PRT-N +PREP +T-DPM +A-DPM-C +P-GPM +V-AAI-3S +T-NSM +N-NSM +CONJ +V-API-3P +PREP +T-DSF +A-DSF +CONJ +D-NPN +N-NPM +P-1GP +V-AOI-3P +PREP +T-ASN +PRT-N +V-PAN +P-1AP +N-APM +A-GPN +ADV +D-NPM-K +V-AAI-3P +CONJ-N +N-NPM +V-PNM-2P +ADV +X-NPM +P-GPM +ADV +V-RPI-3S +V-AAI-3S +T-NSM +N-NSM +V-2AAN +CONJ +V-2AAN +CONJ +V-AAI-3P +V-PAN +CONJ-N +V-PAS-1P +ADV +X-NPM +P-GPM +V-AAI-3P +CONJ +V-2AAI-3P +A-DSF +N-DSF +A-NPF +N-NPF +CONJ-N +V-PAS-1P +T-ASM +N-ASM +ADV +X-NPM +P-GPM +V-AAI-3P +CONJ +PREP +T-GPM +N-GPM +V-IMI-3P +CONJ-N +V-PAM-2P +ADV +X-NPM +P-GPM +V-AAI-3P +CONJ +V-2AMI-3P +PREP +T-GSM +N-GSM +CONJ +D-NPN +ADV +V-IAI-3S +D-DPM +CONJ +V-2API-3S +PREP +N-ASF +P-1GP +PREP +R-APM +T-NPN +N-NPN +T-GPM +N-GPM +V-RAI-3S +CONJ +T-NSM +V-PAP-NSM +V-RAN +V-PAM-3S +PRT-N +V-2AAS-3S +N-NSM +P-2AP +PRT-N +V-2RAI-3S +COND +PRT-N +A-NSM +CONJ +A-NSM +T-NSM +N-NSM +R-NSM +PRT-N +V-FAI-3S +P-2AP +V-APN +PREP +R-ASN +V-PNI-2P +CONJ +V-FAI-3S +PREP +T-DSM +N-DSM +CONJ +T-ASF +N-ASF +T-GSN +V-PNN +V-2AAN +CONJ +A-VPM +P-1GS +V-PAM-2P +PREP +T-GSF +N-GSF +ADV +A-DPM +V-PAI-1S +V-AAM-2P +P-2NP +R-ASN +V-PAI-1S +T-NSN +N-NSN +T-GSF +N-GSF +R-ASN +V-PAI-1P +PRT-I +V-PAI-3S +N-NSF +T-GSN +N-GSN +T-GSM +N-GSM +T-ASM +N-ASM +R-ASM +V-PAI-1P +PRT-I +N-NSF +T-GSN +N-GSN +T-GSM +N-GSM +V-PAI-3S +CONJ +A-NSM +N-NSM +A-NSN +N-NSN +T-NPM +A-NPM +V-PAI-1P +CONJ +T-NPM +A-NPM +PREP +T-GSM +A-GSM +N-GSM +V-PAI-1P +V-PAM-2P +T-ASM +N-PRI +PREP +N-ASF +PRT-N +T-NPM +V-PAP-NPM +T-APF +N-APF +N-NPM +T-GSN +N-GSN +V-PAI-3P +CONJ +I-ASN +V-PAI-1S +CONJ +A-NSN +X-NSN +V-PAI-3S +PRT +CONJ +N-NSN +X-NSN +V-PAI-3S +CONJ +CONJ +R-APN +V-PAI-3P +N-DPN +CONJ +PRT-N +N-DSM +V-PAI-3P +CONJ +PRT-N +V-PAI-1S +P-2AP +N-APM +T-GPN +N-GPN +V-PNN +PRT-N +V-PNI-2P +N-ASN +N-GSM +V-PAN +CONJ +N-ASN +N-GPN +PRT-N +V-PNI-2P +N-GSF +N-GSM +V-PAN +CONJ +N-GSF +N-GPN +PRT +V-PAI-1P +T-ASM +N-ASM +PRT-N +A-NPM-C +P-GSM +V-PAI-1P +A-NPN +V-PAI-3S +CONJ +PRT-N +A-NPN +V-PAI-3S +A-NPN +V-PAI-3S +CONJ +PRT-N +A-NPN +V-PAI-3S +A-NSM-N +T-ASN +F-3GSM +V-PAM-3S +CONJ +T-ASN +T-GSM +A-GSM +A-ASN +T-ASN +PREP +N-DSN +V-PPP-ASN +V-PAM-2P +A-ASN-N +V-PAP-NPM +PREP +T-ASF +N-ASF +CONJ +T-GSM +N-GSM +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +P-GSF +COND +X-NSM +T-GPM +A-GPM +V-PAI-3S +P-2AP +CONJ +V-PAI-2P +V-PNN +A-ASN +T-ASN +V-PPP-ASN +P-2DP +V-PAM-2P +A-ASN-N +V-PAP-NPM +PREP +T-ASF +N-ASF +CONJ +COND +X-NSM +P-2DP +V-2AAS-3S +D-NSN +A-NSN +V-PAI-3S +PRT-N +V-PAM-2P +PREP +D-ASM +T-ASM +V-AAP-ASM +CONJ +T-ASF +N-ASF +CONJ +V-PAI-1S +N-ASF +PRT-N +T-ASF +F-2GSM +CONJ +T-ASF +T-GSM +A-GSM +CONJ +CONJ +I-NSN +T-NSF +N-NSF +P-1GS +V-PPI-3S +PREP +A-GSF +N-GSF +COND +P-1NS +N-DSF +V-PAI-1S +I-ASN +V-PPI-1S +PREP +R-GSN +P-1NS +V-PAI-1S +CONJ +CONJ +V-PAI-2P +CONJ +V-PAI-2P +CONJ +X-ASN +V-PAI-2P +A-APN +PREP +N-ASF +N-GSM +V-PAM-2P +A-NPM +V-PNM-2P +CONJ +A-DPM +CONJ +N-DPM +CONJ +T-DSF +N-DSF +T-GSM +N-GSM +ADV +P-1NS-K +A-APN +A-DPN +V-PAI-1S +V-PAP-NSM +PRT-N +T-ASN +F-1GSM +A-ASN +CONJ +T-ASN +T-GPM +A-GPM +CONJ +V-APS-3P +N-NPM +P-1GS +V-PNM-2P +ADV +P-1NS-K +N-GSM +CONJ +V-PAI-1S +P-2AP +CONJ +A-APN +P-1GS +V-RPI-2P +CONJ +ADV +V-AAI-1S +P-2DP +T-APF +N-APF +V-PAI-2P +CONJ +V-PAI-1S +P-2AP +V-RAN +CONJ +A-GSM +N-GSM +T-NSF +N-NSF +T-NSM +N-NSM +V-PAI-3S +CONJ +N-NSF +N-GSF +T-NSM +N-NSM +CONJ +N-NSF +T-GSM +N-GSM +T-NSM +N-NSM +A-NSM +N-NSM +V-PNP-NSM +PRT +V-PAP-NSM +PREP +N-GSF +V-PAP-NSM +V-PAI-3S +T-ASF +N-ASF +P-GSM +CONJ +A-NSF +N-NSF +V-PNP-NSF +PRT +V-PAP-NSF +A-DSF +T-DSF +N-DSF +V-PAI-3S +T-ASF +N-ASF +P-GSF +CONJ +V-PAI-3S +A-NSN +CONJ +T-NSN +P-NSN +T-DSF +V-RPP-DSF +CONJ +COND +PRT-N +V-PMI-3S +N-NSF +CONJ +V-AMM-3S +CONJ +COND +A-NSN +N-DSF +T-NSN +V-AMN +PRT +V-PPN +V-PMM-3S +CONJ +PRT +N-NSM +PRT-N +V-PAI-3S +V-PMN +T-ASF +N-ASF +N-NSF +CONJ +N-NSF +N-GSM +V-PAP-NSM +CONJ +T-NSF +N-NSF +N-NSF +N-GSM +V-PAI-3S +CONJ +PRT-N +V-PAI-3S +N-NSM +PREP +N-GSF +CONJ +N-NSF +PREP +N-GSM +CONJ +CONJ +PRT-N +V-API-3S +N-NSM +PREP +T-ASF +N-ASF +CONJ +N-NSF +PREP +T-ASM +N-ASM +PREP +D-ASN +V-PAI-3S +T-NSF +N-NSF +N-ASF +V-PAN +PREP +T-GSF +N-GSF +PREP +T-APM +N-APM +ADV +CONJ-N +N-NSF +ADV +N-GSM +CONJ-N +N-NSM +ADV +N-GSF +PREP +N-DSM +CONJ +ADV +T-NSF +N-NSF +PREP +T-GSM +N-GSM +ADV +CONJ +T-NSM +N-NSM +PREP +T-GSF +N-GSF +CONJ +T-NPN +A-NPN +PREP +T-GSM +N-GSM +PREP +P-2DP +P-DPM +V-AAM-2P +V-PAP-NSN +V-PAI-3S +N-ASF +A-ASF +T-DSM +N-DSM +V-PNN +CONJ-N +T-NSF +N-NSF +P-NSF +V-PAI-3S +P-2AP +CONJ +PRT +COND +N-NSM +V-PAS-3S +N-NSF +P-DSM +V-PAI-3S +CONJ +COND +N-NSF +V-PAS-3S +N-NSF +P-DSF +V-PAI-3S +CONJ +T-NSF +N-NSF +PREP +N-GSN +V-RPI-3S +P-DSF +CONJ +COND +X-NSM +V-PAI-3S +A-NSM +V-PAN +P-1NP +D-ASF +N-ASF +PRT-N +V-PAI-1P +CONJ-N +T-NPF +N-NPF +T-GSM +N-GSM +CONJ +D-ASN +V-PAP-NSM +PRT-N +V-PAI-1S +CONJ +PRT-N +PREP +T-ASN +A-ASN-C +CONJ +PREP +T-ASN +A-ASN-C +V-PNI-2P +CONJ +PRT +ADV-S +V-PNP-GPM +P-2GP +PREP +N-DSF +V-PAI-1S +N-APN +PREP +P-2DP +V-PAN +CONJ +N-ASN +X-ASN +V-PAI-1S +CONJ +V-PAI-3S +CONJ +N-NPF +PREP +P-2DP +V-PAN +CONJ +CONJ +T-NPM +A-NPM +A-NPM +V-2ADS-3P +PREP +P-2DP +CONJ +V-PNP-GPM +P-2GP +PREP +T-ASN +P-ASN +PRT-N +V-PAI-3S +A-ASN +N-ASN +V-2AAN +CONJ +A-NSM +T-ASN +A-ASN +N-ASN +V-PAI-3S +PREP +T-DSN +V-2AAN +CONJ +PRT +R-NSM +V-PAI-3S +CONJ +R-NSM +V-PAI-3S +CONJ +PRT-N +N-APF +PRT-N +V-PAI-2P +PREP +T-ASN +V-PAN +CONJ +V-PAN +PRT +T-GSF +N-GSF +T-GSM +N-GSM +V-PAI-2P +CONJ +V-PAI-2P +T-APM +PRT-N +V-PAP-APM +I-ASN +V-2AAS-1S +P-2DP +V-AAS-1S +P-2AP +PREP +D-DSN +PRT-N +V-PAI-1S +CONJ +P-1NS +V-2AAI-1S +PREP +T-GSM +N-GSM +R-ASN +CONJ +V-AAI-1S +P-2DP +CONJ +T-NSM +N-NSM +N-NSM +PREP +T-DSF +N-DSF +R-DSF +V-IPI-3S +V-2AAI-3S +N-ASM +CONJ +V-AAP-NSM +V-AAI-3S +CONJ +V-2AAI-3S +D-NSN +V-PAI-3S +P-1GS +T-NSN +N-NSN +T-NSN +PREP +P-2GP +D-ASN +V-PAM-2P +PREP +T-ASF +S-1SASF +N-ASF +ADV +CONJ +T-ASN +N-ASN +PREP +T-ASN +V-AAN +V-PAP-NSM +D-NSN +T-NSN +N-NSN +T-NSF +A-NSF +N-NSF +V-PAI-3S +PREP +T-DSN +S-1SDSN +N-DSN +D-ASN +V-PAM-2P +ADV +COND +V-PAS-2P +PREP +T-ASF +S-1SASF +N-ASF +CONJ +ADV +COND +V-PAS-2P +T-ASM +N-ASM +D-ASM +CONJ +T-ASN +N-ASN +V-PAS-2P +T-ASM +N-ASM +T-GSM +N-GSM +V-PAI-2P +ADV +R-GSM +V-2AAS-3S +CONJ +PRT +R-NSM +V-PAS-3S +T-ASM +N-ASM +PRT +V-PAS-3S +T-ASN +N-ASN +T-GSM +N-GSM +ADV +A-NSM +V-FDI-3S +T-GSN +N-GSN +CONJ +T-GSN +N-GSN +T-GSM +N-GSM +CONJ +V-PAM-3S +N-NSM +F-3ASM +CONJ +ADV +PREP +T-GSM +N-GSM +V-PAM-3S +CONJ +PREP +T-GSN +N-GSN +V-PAM-3S +CONJ +T-NSM +V-PAP-NSM +CONJ +V-PAP-NSM +N-ASN +F-3DSM +V-PAI-3S +CONJ +V-PAI-3S +PRT-N +V-PAP-NSM +T-ASN +N-ASN +PREP +D-ASN +PREP +P-2DP +A-NPM +A-NPM +CONJ +A-NPM +CONJ +V-PPI-3P +A-NPM +CONJ +COND +F-1APM +V-IAI-1P +PRT +PRT-N +V-IPI-1P +CONJ +V-PPP-NPM +PREP +T-GSM +N-GSM +V-PPI-1P +CONJ +PRT-N +PREP +T-DSM +N-DSM +V-APS-1P +CONJ +N-VPM +P-1GS +V-PNP-NPM +PREP +T-ASN +V-2AAN +C-APM +V-PNM-2P +COND +X-NSM +V-PAI-3S +PREP +N-DSM +V-PAM-3S +CONJ +PRT-N +PREP +N-ASN +V-PNS-2P +CONJ +T-APN +A-APN +ADV +PRT +V-2AAS-1S +V-FDI-1S +CONJ +N-VPM +PREP +T-GPN +A-GPN +PRT-N +V-PAI-1S +P-2AP +V-PAN +V-RAI-2P +CONJ +ADV +N-NPN +V-IAI-2P +PREP +T-APN +N-APN +T-APN +A-APN +ADV +PRT +V-IPI-2P +V-PPP-NPM +CONJ +V-PAI-1S +P-2DP +CONJ +A-NSM-N +PREP +N-DSN +N-GSM +V-PAP-NSM +V-PAI-3S +N-NSN +N-NSM +CONJ +A-NSM-N +V-PNI-3S +V-2AAN +N-NSM +N-NSM +COND +PRT-N +PREP +N-DSN +A-DSN +CONJ +N-NPF +N-GPN +V-PAI-3P +CONJ +T-NSN +P-NSN +N-NSN +CONJ +N-NPF +N-GPF +V-PAI-3P +CONJ +T-NSM +P-NSM +N-NSM +CONJ +N-NPF +N-GPN +V-PAI-3P +CONJ +T-NSM +P-NSM +N-NSM +T-NSM +V-PAP-NSM +T-APN +A-APN +PREP +A-DPM +CONJ +A-DSM +V-PPI-3S +T-NSF +N-NSF +T-GSN +N-GSN +PREP +T-ASN +V-PAP-ASN +CONJ +PRT +R-DSM +PREP +T-GSN +N-GSN +V-PPI-3S +N-NSM +N-GSF +CONJ +A-DSM +N-NSM +N-GSF +PREP +T-ASN +P-ASN +N-ASN +A-DSM +N-NSF +PREP +T-DSN +P-DSN +N-DSN +CONJ +A-DSM +N-NPN +N-GPN +PREP +T-DSN +A-DSN +N-DSN +CONJ +A-DSM +N-NPN +N-GPF +CONJ +A-DSM +N-NSF +CONJ +A-DSM +N-NPF +N-GPN +A-DSM +N-NPN +N-GPF +CONJ +A-DSM +N-NSF +N-GPF +CONJ +A-APN +D-APN +V-PAI-3S +T-NSN +A-NSN +CONJ +T-NSN +P-NSN +N-NSN +V-PAP-NSN +A-DSF +A-DSM +ADV +V-PNI-3S +CONJ +ADV +T-NSN +N-NSN +A-NSN +V-PAI-3S +CONJ +N-APN +A-APN +V-PAI-3S +CONJ +A-NPN +T-NPN +N-NPN +T-GSN +N-GSN +A-NPN +V-PAP-NPN +A-NSN +N-NSN +V-PAI-3S +ADV +CONJ +T-NSM +N-NSM +CONJ +CONJ +PREP +A-DSN +N-DSN +P-1NP +A-NPM +PREP +A-ASN +N-ASN +V-API-1P +CONJ +A-NPM +CONJ +N-NPM +CONJ +N-NPM +CONJ +A-NPM +CONJ +A-NPM +A-ASN +N-ASN +V-API-1P +CONJ +CONJ +T-NSN +N-NSN +V-PAI-3S +PRT-N +A-NSN +N-NSN +CONJ +A-NPN +COND +V-2AAS-3S +T-NSM +N-NSM +CONJ +PRT-N +V-PAI-1S +N-NSF +PRT-N +V-PAI-1S +PREP +T-GSN +N-GSN +PRT-N +PREP +D-ASN +PRT-N +V-PAI-3S +PREP +T-GSN +N-GSN +CONJ +COND +V-2AAS-3S +T-NSN +N-NSN +CONJ +PRT-N +V-PAI-1S +N-NSM +PRT-N +V-PAI-1S +PREP +T-GSN +N-GSN +PRT-N +PREP +D-ASN +PRT-N +V-PAI-3S +PREP +T-GSN +N-GSN +COND +A-NSN +T-NSN +N-NSN +N-NSM +ADV-I +T-NSF +N-NSF +COND +A-NSN +N-NSF +ADV-I +T-NSF +N-NSF +CONJ +ADV +T-NSM +N-NSM +V-2AMI-3S +T-APN +N-APN +A-ASN +A-ASN +P-GPN +PREP +T-DSN +N-DSN +ADV +V-AAI-3S +CONJ +COND +V-IAI-3S +T-NPN +A-NPN +A-NSN +N-NSN +ADV-I +T-NSN +N-NSN +CONJ +PRT +ADV +A-NPN +N-NPN +CONJ +A-NSN +N-NSN +CONJ +PRT-N +V-PNI-3S +T-NSM +N-NSM +V-2AAN +T-DSF +N-DSF +N-ASF +P-2GS +PRT-N +V-PAI-1S +PRT +ADV +T-NSF +N-NSF +T-DPM +N-DPM +N-ASF +P-2GP +PRT-N +V-PAI-1S +CONJ +A-DSN +ADV +T-NPN +V-PAP-NPN +A-NPN-C +V-PAN +N-NPN +T-GSN +N-GSN +A-NPN +V-PAI-3S +CONJ +R-APN +V-PAN +A-APN-C +T-GSN +N-GSN +V-PAI-1P +D-DPN +N-ASF +A-ASF-C +V-PAI-1P +CONJ +T-NPN +A-NPN +P-1GP +N-ASF +A-ASF-C +V-PAI-3S +CONJ +T-NPN +A-NPN +P-1GP +PRT-N +N-ASF +V-PAI-3S +CONJ +T-NSM +N-NSM +V-AAI-3S +T-ASN +N-ASN +T-DSN +V-PPP-DSN +V-2AAP-NSM +A-ASF-C +N-ASF +CONJ +PRT-N +V-PAS-3S +N-NSN +PREP +T-DSN +N-DSN +CONJ +T-ASN +P-ASN +PREP +C-GPN +V-PAS-3P +T-NPN +N-NPN +CONJ +CONJ +V-PAI-3S +A-NSN +N-NSN +V-PAI-3S +A-NPN +T-NPN +N-NPN +CONJ +V-PPI-3S +N-NSN +V-PAI-3S +A-NPN +T-NPN +N-NPN +CONJ +P-2NP +V-PAI-2P +N-NSN +N-GSM +CONJ +N-NPN +PREP +N-GSN +CONJ +PRT +R-APM +V-2AMI-3S +T-NSM +N-NSM +PREP +T-DSF +N-DSF +ADV-S +N-APM +ADV +N-APM +ADV +N-APM +ADV +N-APF +ADV +N-APN +N-GPN +N-APF +N-APF +N-APN +N-GPF +PRT-N +A-NPM +N-NPM +PRT-N +A-NPM +N-NPM +PRT-N +A-NPM +N-NPM +PRT-N +A-NPM +N-NPF +PRT-N +A-NPM +V-PAI-3P +N-APN +N-GPN +PRT-N +A-NPM +N-DPF +V-PAI-3P +PRT-N +A-NPM +V-PAI-3P +CONJ +V-PAM-2P +T-APN +N-APN +T-APN +A-APN-C +CONJ +ADV +PREP +N-ASF +N-ASF +P-2DP +V-PAI-1S +COND +T-DPF +N-DPF +T-GPM +N-GPM +CONJ +T-GPM +N-GPM +V-PAS-1S +CONJ +N-ASF +PRT-N +V-PAS-1S +V-2RAI-1S +N-NSM +V-PAP-NSM +PRT +N-NSN +V-PAP-NSN +CONJ +COND +V-PAS-1S +N-ASF +CONJ +V-RAS-1S +T-APN +N-APN +A-APN +CONJ +A-ASF +T-ASF +N-ASF +CONJ +COND +V-PAS-1S +A-ASF +T-ASF +N-ASF +CONJ +N-APN +V-PAN +CONJ +N-ASF +PRT-N +V-PAS-1S +A-NSN-N +V-PAI-1S +CONJ +COND +V-AAS-1S +A-APN +T-APN +V-PAP-APN +P-1GS +CONJ +COND +V-2AAS-1S +T-ASN +N-ASN +P-1GS +CONJ +V-FPI-1S +CONJ +N-ASF +PRT-N +V-PAS-1S +A-ASN-N +V-PPI-1S +T-NSF +N-NSF +V-PAI-3S +V-PNI-3S +T-NSF +N-NSF +PRT-N +V-PAI-3S +T-NSF +N-NSF +PRT-N +V-PNI-3S +PRT-N +V-PPI-3S +PRT-N +V-PAI-3S +PRT-N +V-PAI-3S +T-APN +F-3GSF +PRT-N +V-PPI-3S +PRT-N +V-PNI-3S +T-ASN +A-ASN +PRT-N +V-PAI-3S +PREP +T-DSF +N-DSF +CONJ +V-PAI-3S +T-DSF +N-DSF +A-APN +V-PAI-3S +A-APN +V-PAI-3S +A-APN +V-PAI-3S +A-APN +V-PAI-3S +T-NSF +N-NSF +ADV-N +V-PAI-3S +CONJ +CONJ +N-NPF +V-FPI-3P +CONJ +N-NPF +V-FDI-3P +CONJ +N-NSF +V-FPI-3S +CONJ +PREP +N-GSN +V-PAI-1P +CONJ +PREP +N-GSN +V-PAI-1P +CONJ +CONJ +V-2AAS-3S +T-NSN +A-NSN +T-NSN +PREP +N-GSN +V-FPI-3S +ADV +V-IMI-1S +A-NSM +V-IAI-1S +ADV +A-NSM +V-IAI-1S +ADV +A-NSM +V-INI-1S +ADV +A-NSM +ADV +V-2RAI-1S +N-NSM +V-RAI-1S +T-APN +T-GSM +A-GSM +CONJ +V-PAI-1P +ADV +PREP +N-GSN +PREP +N-DSN +CONJ +ADV +N-ASN +PREP +N-ASN +ADV +V-PAI-1S +PREP +N-GSN +CONJ +ADV +V-FDI-1S +ADV +CONJ +V-2API-1S +CONJ +ADV +V-PAI-3S +N-NSF +N-NSF +N-NSF +T-NPN +A-NPN +D-NPN +CONJ +A-NSF-C +D-GPF +T-NSF +N-NSF +V-PAM-2P +T-ASF +N-ASF +CONJ +V-PAM-2P +T-APN +A-APN +CONJ +CONJ +ADV +V-PAS-2P +CONJ +T-NSM +V-PAP-NSM +N-DSF +PRT-N +N-DPM +V-PAI-3S +CONJ +N-DSM +CONJ +A-NSM-N +V-PAI-3S +CONJ +N-DSN +V-PAI-3S +N-APN +CONJ +T-NSM +V-PAP-NSM +N-DPM +V-PAI-3S +N-ASF +CONJ +N-ASF +CONJ +N-ASF +T-NSM +V-PAP-NSM +N-DSF +F-3ASM +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +N-ASF +V-PAI-3S +CONJ +V-PAI-1S +A-APM +P-2AP +V-PAN +N-DPF +CONJ +CONJ +ADV +V-PAS-2P +CONJ +A-NSM-C +T-NSM +V-PAP-NSM +PRT +T-NSM +V-PAP-NSM +N-DPF +COND +ADV +PRT-N +V-PAS-3S +CONJ +T-NSF +N-NSF +N-ASF +V-2AAS-3S +CONJ +N-VPM +COND +ADV +V-2AAS-1S +PREP +P-2AP +N-DPF +V-PAP-NSM +I-ASN +P-2AP +V-FAI-1S +COND +PRT-N +P-2DP +V-AAS-1S +PRT +PREP +N-DSF +PRT +PREP +N-DSF +PRT +PREP +N-DSF +PRT +N-DSF +CONJ +T-NPN +A-NPN +N-ASF +V-PAP-NPN +CONJ +N-NSM +CONJ +N-NSF +COND +N-ASF +T-DPM +N-DPM +PRT-N +V-2AAS-3S +ADV-I +V-FPI-3S +T-NSN +V-PPP-NSN +PRT +T-NSN +V-PPP-NSN +CONJ +COND +CONJ +N-NSF +A-ASF +N-ASF +V-2AAS-3S +I-NSM +V-FDI-3S +PREP +N-ASM +ADV +COND +CONJ +P-2NP +PREP +T-GSF +N-GSF +PRT-N +A-ASM +N-ASM +V-2AAS-2P +ADV-I +V-FPI-3S +T-NSN +V-PPP-NSN +CONJ +PREP +N-ASM +V-FDI-2P +V-PAP-NPM +COND +V-2AAO-3S +D-NPN +N-NPN +N-GPF +V-PAI-3P +PREP +N-DSM +CONJ +A-NSN-N +A-NSN +CONJ +COND +PRT-N +V-RAS-1S +T-ASF +N-ASF +T-GSF +N-GSF +V-FDI-1S +T-DSM +V-PAP-DSM +A-NSM +CONJ +T-NSM +V-PAP-NSM +PREP +P-1DS +A-NSM +ADV +CONJ +P-2NP +CONJ +N-NPM +N-GPN +V-PAI-2P +PREP +T-ASF +N-ASF +T-GSF +N-GSF +V-PAM-2P +CONJ +V-PAS-2P +CONJ +T-NSM +V-PAP-NSM +N-DSF +V-PNM-3S +CONJ +V-PAS-3S +CONJ +COND +V-PNS-1S +N-DSF +T-NSN +N-NSN +P-1GS +V-PNI-3S +CONJ +T-NSM +N-NSM +P-1GS +A-NSM +V-PAI-3S +CONJ +I-NSN +V-PAI-3S +V-FDI-1S +T-DSN +N-DSN +CONJ +V-FDI-1S +CONJ +T-DSM +N-DSM +V-FAI-1S +T-DSN +N-DSN +CONJ +V-FAI-1S +CONJ +T-DSM +N-DSM +CONJ +COND +V-PAS-2S +N-DSN +T-NSM +V-PAP-NSM +T-ASM +N-ASM +T-GSM +N-GSM +ADV-I +V-FAI-3S +T-ASN +HEB +PREP +T-DSF +S-2SDSF +N-DSF +CONJ +I-ASN +V-PAI-2S +PRT-N +V-RAI-3S +CONJ +PRT +P-2NS +ADV +V-PAI-2S +CONJ +T-NSM +A-NSM +PRT-N +V-PPI-3S +V-PAI-1S +T-DSM +N-DSM +A-GPM +P-2GP +ADV +N-DPF +V-PAI-1S +CONJ +PREP +N-DSF +V-PAI-1S +A-NUI +N-APM +T-DSM +N-DSM +P-1GS +V-AAN +CONJ +CONJ +A-APM +V-AAS-1S +PRT +A-APM +N-APM +PREP +N-DSF +N-VPM +PRT-N +N-NPN +V-PNM-2P +T-DPF +N-DPF +CONJ +T-DSF +N-DSF +V-PAM-2P +CONJ +T-DPF +N-DPF +A-NPM +V-PNM-2P +PREP +T-DSM +N-DSM +V-RPI-3S +CONJ +PREP +A-DPM +CONJ +PREP +N-DPN +A-GPM +V-FAI-1S +T-DSM +N-DSM +D-DSM +CONJ +CONJ-N +ADV +V-FDI-3P +P-1GS +V-PAI-3S +N-NSM +CONJ +T-NPF +N-NPF +PREP +N-ASN +V-PAI-3P +PRT-N +T-DPM +V-PAP-DPM +CONJ +T-DPM +A-DPM +CONJ +T-NSF +N-NSF +PRT-N +T-DPM +A-DPM +CONJ +T-DPM +V-PAP-DPM +CONJ +COND +V-2AAS-3S +T-NSF +N-NSF +A-NSF +PREP +T-ASN +P-ASN +CONJ +A-NPM +V-PAS-3P +N-DPF +CONJ +V-2AAS-3P +N-NPM +PRT +A-NPM +PRT-N +V-FAI-3P +CONJ +V-PNI-2P +CONJ +COND +A-NPM +V-PAS-3P +CONJ +V-2AAS-3S +X-NSM +A-NSM +PRT +N-NSM +V-PPI-3S +PREP +A-GPM +V-PPI-3S +PREP +A-GPM +T-NPN +A-NPN +T-GSF +N-GSF +P-GSM +A-NPN +V-PNI-3S +CONJ +ADV +V-2AAP-NSM +PREP +N-ASN +V-FAI-3S +T-DSM +N-DSM +V-PAP-NSM +CONJ +ADV +T-NSM +N-NSM +PREP +P-2DP +V-PAI-3S +CONJ +I-NSN +V-PAI-3S +N-VPM +CONJ +V-PNS-2P +A-NSM +N-ASM +V-PAI-3S +N-ASF +V-PAI-3S +N-ASF +V-PAI-3S +N-ASF +V-PAI-3S +N-ASF +V-PAI-3S +A-NPN +PREP +N-ASF +V-PNM-3S +CONJ +N-DSF +X-NSM +V-PAI-3S +PREP +A-NUI +PRT +T-ASN +A-ASN-S +A-APM +CONJ +PREP +N-ASN +CONJ +A-NSM +V-PAM-3S +CONJ +COND +PRT-N +V-PAS-3S +N-NSM +V-PAM-3S +PREP +N-DSF +CONJ +V-PAM-3S +F-3DSM +CONJ +T-DSM +N-DSM +CONJ +N-NPM +A-NUI +PRT +A-NPM +V-PAM-3P +CONJ +T-NPM +A-NPM +V-PAM-3P +CONJ +COND +A-DSM +V-PNP-DSM +V-APS-3S +T-NSM +A-NSM-S +V-PAM-3S +CONJ +V-PNI-2P +PREP +A-ASM +A-NPM +V-PAN +CONJ +A-NPM +V-PAS-3P +CONJ +A-NPM +V-PPS-3P +CONJ +N-NPN +N-GPM +N-DPM +V-PPI-3S +CONJ +PRT-N +V-PAI-3S +N-GSF +T-NSM +N-NSM +CONJ +N-GSF +ADV +PREP +A-DPF +T-DPF +N-DPF +T-GPM +A-GPM +T-NPF +N-NPF +PREP +T-DPF +N-DPF +V-PAM-3P +CONJ +PRT-N +V-PPI-3S +P-DPF +V-PAN +CONJ +V-PPM-3P +ADV +CONJ +T-NSM +N-NSM +V-PAI-3S +CONJ +COND +X-ASN +V-2AAN +V-PAI-3P +PREP +N-DSM +T-APM +A-APM +N-APM +V-PAM-3P +CONJ +A-NSN +V-PAI-3S +N-DSF +V-PAN +PREP +N-DSF +PRT +PREP +P-2GP +T-NSM +N-NSM +T-GSM +N-GSM +V-2AAI-3S +PRT +PREP +P-2AP +A-APM +V-AAI-3S +COND +X-NSM +V-PAI-3S +V-PAN +N-NSM +PRT +A-NSM +V-PAM-3S +R-APN +V-PAI-1S +P-2DP +CONJ +N-GSM +N-NSF +V-PAI-3S +CONJ +COND +X-NSM +V-PAI-3S +V-PPI-3S +CONJ +N-VPM +P-1GS +V-PAM-2P +T-ASN +V-PAN +CONJ +T-ASN +V-PAN +N-DPF +PRT-N +V-PAM-2P +CONJ +A-NPN +ADV +CONJ +PREP +N-ASF +V-PNM-3S +CONJ +N-VPM +V-PAI-1S +P-2DP +T-ASN +N-ASN +R-ASN +V-AMI-1S +P-2DP +R-ASN +CONJ +V-2AAI-2P +PREP +R-DSN +CONJ +V-RAI-2P +PREP +R-GSN +CONJ +V-PPI-2P +I-DSM +N-DSM +V-AMI-1S +P-2DP +COND +V-PAI-2P +ADV +COND +PRT-N +ADV +V-AAI-2P +CONJ +V-AAI-1S +P-2DP +PREP +A-DPM-S +R-ASN +CONJ +V-2AAI-1S +CONJ +N-NSM +V-2AAI-3S +PREP +T-GPF +N-GPF +P-1GP +PREP +T-APF +N-APF +CONJ +CONJ +V-2API-3S +CONJ +CONJ +V-RPI-3S +T-DSF +N-DSF +T-DSF +A-DSF +PREP +T-APF +N-APF +CONJ +CONJ +V-API-3S +N-DSM +ADV +T-DPM +A-NUI +ADV +V-API-3S +ADV +A-DPM +N-DPM +ADV +PREP +R-GPM +T-NPM +A-NPM-C +V-PAI-3P +ADV +ADV +CONJ +X-NPM +V-API-3P +ADV +V-API-3S +N-DSM +ADV +T-DPM +N-DPM +A-DPM +CONJ +A-ASM-S +A-GPM +V-API-3S +P-1DS-K +ADV +T-DSN +N-DSN +CONJ +P-1NS +V-PAI-1S +T-NSM +A-NSM-S +T-GPM +N-GPM +R-NSM +PRT-N +V-PAI-1S +A-NSM +V-PPN +N-NSM +CONJ +V-AAI-1S +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +N-DSF +N-GSM +V-PAI-1S +R-NSN +V-PAI-1S +CONJ +T-NSF +N-NSF +P-GSM +T-NSF +PREP +P-1AS +PRT-N +A-NSF +V-AOI-3S +CONJ +A-ASM-C +P-GPM +A-GPM +V-AAI-1S +CONJ +PRT-N +P-1NS +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +PREP +P-1DS +CONJ +CONJ +P-1NS +CONJ +D-NPM +ADV +V-PAI-1P +CONJ +ADV +V-AAI-2P +CONJ +COND +N-NSM +V-PPI-3S +CONJ +PREP +A-GPM +V-RPI-3S +ADV-I +V-PAI-3P +PREP +P-2DP +X-NPM +CONJ +N-NSF +A-GPM +PRT-N +V-PAI-3S +CONJ +COND +N-NSF +A-GPM +PRT-N +V-PAI-3S +CONJ-N +N-NSM +V-RPI-3S +CONJ +COND +N-NSM +PRT-N +V-RPI-3S +PRT +A-NSN +T-NSN +N-NSN +P-1GP +A-NSF +CONJ +T-NSF +N-NSF +P-2GP +CONJ +V-PPI-1P +CONJ +N-NPM +T-GSM +N-GSM +CONJ +V-AAI-1P +PREP +T-GSM +N-GSM +CONJ +V-AAI-3S +T-ASM +N-ASM +R-ASM +PRT-N +V-AAI-3S +COND +PRT +A-NPM +PRT-N +V-PPI-3P +CONJ +COND +A-NPM +PRT-N +V-PPI-3P +CONJ-N +N-NSM +V-RPI-3S +CONJ +COND +N-NSM +PRT-N +V-RPI-3S +A-NSF +T-NSF +N-NSF +P-2GP +ADV +V-PAI-2P +PREP +T-DPF +N-DPF +P-2GP +PRT +CONJ +T-NPM +V-APP-NPM +PREP +N-DSM +V-2AMI-3P +COND +PREP +T-DSF +N-DSF +D-DSF +PREP +N-DSM +V-RAP-NPM +V-PAI-1P +ADV +A-NPM-C +A-GPM +N-GPM +V-PAI-1P +CONJ +ADV +V-RPI-3S +PREP +A-GPM +N-NSM +N-NSF +T-GPM +V-RPP-GPM +CONJ +CONJ +PREP +N-GSM +N-NSM +CONJ +PREP +N-GSM +N-NSF +A-GPM +CONJ +ADV +PREP +T-DSM +N-PRI +A-NPM +V-PAI-3P +ADV +CONJ +PREP +T-DSM +N-DSM +A-NPM +V-FPI-3P +CONJ +A-NSM +PREP +T-DSN +A-DSN +N-DSN +N-NSF +N-NSM +ADV +T-NPM +T-GSM +N-GSM +PREP +T-DSF +N-DSF +P-GSM +ADV +T-NSN +N-NSN +CONJ +V-PAS-3S +T-ASF +N-ASF +T-DSM +N-DSM +CONJ +N-DSM +CONJ +V-AAS-3S +A-ASF +N-ASF +CONJ +A-ASF +N-ASF +CONJ +N-ASF +CONJ +V-PAI-3S +P-ASM +V-PAN +ADV +R-GSM +V-2AAS-3S +A-APM +T-APM +A-APM +PREP +T-APM +N-APM +P-GSM +A-NSM-S +A-NSM +T-NSM +N-NSM +V-PPI-3S +CONJ +A-APN +V-AAI-3S +PREP +T-APM +N-APM +P-GSM +CONJ +CONJ +V-2AAS-3S +CONJ +A-NPN +V-RPI-3S +A-NSN +CONJ +ADV +T-GSM +V-AAP-GSM +P-DSM +T-APN +A-APN +CONJ +CONJ +V-2APS-3S +P-DSM +T-NPN +A-NPN +ADV +CONJ +P-NSM +T-NSM +N-NSM +V-2FPI-3S +T-DSM +V-AAP-DSM +P-DSM +T-APN +A-APN +CONJ +V-PAS-3S +T-NSM +N-NSM +A-NPN +PREP +A-DPN +CONJ +I-ASN +V-FAI-3P +T-NPM +V-PPP-NPM +PREP +T-GPM +A-GPM +COND +ADV +A-NPM +PRT-N +V-PPI-3P +I-ASN +CONJ +V-PPI-3P +PREP +P-GPM +I-ASN +CONJ +P-1NP +V-PAI-1P +A-ASF +N-ASF +N-VPM +PREP +N-ASF +V-PAI-1S +PRT +T-ASF +S-2PASF +N-ASF +R-ASF +V-PAI-1S +PREP +N-DSM +N-DSM +T-DSM +N-DSM +P-1GP +COND +PREP +N-ASM +V-AAI-1S +PREP +N-DSF +I-NSN +P-1DS +T-NSN +N-NSN +COND +A-NPM +PRT-N +V-PPI-3P +V-2AAS-1P +CONJ +V-2AAS-1P +CONJ +ADV +V-PAI-1P +PRT-N +V-PPM-2P +V-PAI-3P +N-APN +A-APN +N-NPF +A-NPF +V-AAM-2P +ADV +CONJ +PRT-N +V-PAM-2P +CONJ +N-ASF +N-GSM +X-NPM +V-PAI-3P +PREP +N-ASF +P-2DP +V-PAI-1S +CONJ +V-FAI-3S +X-NSM +ADV-I +V-PPI-3P +T-NPM +A-NPM +CONJ +I-DSN +N-DSN +V-PNI-3P +A-VSM +R-ASN +P-2NS +V-PAI-2S +PRT-N +V-PPI-3S +COND +PRT-N +V-2AAS-3S +CONJ +R-ASN +V-PAI-2S +PRT-N +T-ASN +N-ASN +T-ASN +V-FDP-ASN +V-PAI-2S +CONJ +A-ASM +N-ASM +COND +V-2AAO-3S +N-GSM +PRT +X-GSM +T-GPM +A-GPM +CONJ +T-NSM +N-NSM +V-PAI-3S +P-DSM +N-ASN +ADV +V-AAI-3S +CONJ +A-DSN +T-GPN +N-GPN +A-ASN +N-ASN +PRT-N +A-NSF +N-NSF +T-NSF +P-NSF +N-NSF +CONJ +PRT +A-NSF +N-GPM +CONJ +A-NSF +N-NSF +N-GPN +CONJ +A-NSF +N-NSF +A-GPN +CONJ +A-NSF +N-GPM +CONJ +N-NPN +A-NPN +CONJ +N-NPN +A-NPN +CONJ +PRT +A-NSF +T-NSF +T-GPN +A-GPN +N-NSF +CONJ +A-NSF +T-NSF +T-GPN +A-GPN +A-NSF +N-NSF +N-GSM +CONJ +A-NSF +N-NSF +N-GSF +CONJ +A-NSF +N-NSF +N-GPM +CONJ +N-NSM +N-GSM +V-PAI-3S +PREP +N-DSF +ADV +CONJ +T-NSF +N-NSF +T-GPM +A-GPM +V-PPI-3S +PREP +N-DSF +V-PPI-3S +PREP +N-DSF +V-PPI-3S +PREP +N-DSF +V-PPI-3S +PREP +N-DSF +V-PPI-3S +PREP +N-DSF +V-PPI-3S +PREP +N-DSF +V-PPI-3S +N-NSN +A-NSN +V-PPI-3S +N-NSN +A-NSN +COND +V-PAI-3S +N-NSN +A-NSN +V-PAI-3S +CONJ +A-NSN +ADV +CONJ +V-RPI-3S +V-2ADI-3S +T-NSM +A-NSM-S +N-NSM +N-PRI +PREP +N-ASF +V-PAP-ASF +T-NSM +A-NSM-S +N-PRI +PREP +N-ASN +V-PAP-ASN +CONJ +PRT-N +ADV-S +T-NSN +A-NSN +CONJ +T-NSN +A-NSN +ADV +T-NSN +A-NSN +T-NSM +A-NSM-S +N-NSM +PREP +N-GSF +A-NSM +T-NSM +A-NSM +N-NSM +PREP +N-GSM +K-NSM +T-NSM +A-NSM +D-NPM +CONJ +T-NPM +A-NPM +CONJ +K-NSM +T-NSM +A-NSM +D-NPM +CONJ +T-NPM +A-NPM +CONJ +ADV +V-AAI-1P +T-ASF +N-ASF +T-GSM +A-GSM +V-AAS-1P +CONJ +T-ASF +N-ASF +T-GSM +A-GSM +CONJ +D-ASN +V-PAI-1S +N-VPM +CONJ +N-NSF +CONJ +N-NSN +N-ASF +N-GSM +V-AAN +PRT-N +V-PNI-3S +CONJ-N +T-NSF +N-NSF +T-ASF +N-ASF +V-PAI-3S +V-2AMM-2S +N-ASN +P-2DP +V-PAI-1S +A-NPM +PRT-N +V-FPI-1P +CONJ +A-NPM +V-2FPI-1P +PREP +A-DSN +PREP +N-DSF +N-GSM +PREP +T-DSF +A-DSF-S +N-DSF +CONJ +V-FAI-3S +CONJ +T-NPM +A-NPM +V-FPI-3P +A-NPM +CONJ +P-1NP +V-2FPI-1P +CONJ +V-PAI-3S +T-NSN +A-NSN +D-NSN +V-AMN +N-ASF +CONJ +T-NSN +A-NSN +D-NSN +V-AMN +N-ASF +CONJ +CONJ +T-NSN +A-NSN +D-NSN +V-AMS-3S +N-ASF +CONJ +T-NSN +A-NSN +D-NSN +V-AMS-3S +N-ASF +ADV +V-FDI-3S +T-NSM +N-NSM +T-NSM +V-RPP-NSM +V-API-3S +T-NSM +N-NSM +PREP +N-ASN +N-VSM +ADV-I +P-2GS +T-NSN +N-NSN +N-VSM +ADV-I +P-2GS +T-NSN +N-NSN +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +T-NSM +N-NSM +CONJ +N-NSF +T-DSM +N-DSM +T-DSM +V-PAP-DSM +P-1DP +T-ASN +N-ASN +PREP +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +N-VPM +P-1GS +A-VPM +V-PNM-2P +A-NPM +A-NPM +V-PAP-NPM +PREP +T-DSN +N-DSN +T-GSM +N-GSM +ADV +V-RAP-NPM +CONJ +T-NSM +N-NSM +P-2GP +PRT-N +V-PAI-3S +A-NSM +PREP +N-DSM +CONJ +PREP +T-GSF +N-GSF +T-GSF +PREP +T-APM +A-APM +ADV +V-AAI-1S +T-DPF +N-DPF +T-GSF +N-GSF +ADV +CONJ +P-2NP +V-AAM-2P +PREP +A-ASF +N-GSN +A-NSM +P-2GP +PREP +F-3DSM +V-PAM-3S +V-PAP-NSM +X-ASN +COND +R-ASN +V-PPS-3S +CONJ +PRT-N +CONJ +V-2AAS-1S +ADV +N-NPF +V-PNS-3P +CONJ +CONJ +V-2ADS-1S +COND +R-APM +V-AAS-2P +PREP +N-GPF +D-APM +V-FAI-1S +V-2AAN +T-ASF +N-ASF +P-2GP +PREP +N-PRI +CONJ +COND +A-NSN +V-PAS-3S +T-GSN +P-1AS-K +V-PNN +PREP +P-1DS +V-FDI-3P +CONJ +V-FDI-1S +PREP +P-2AP +CONJ +N-ASF +V-2AAS-1S +CONJ +N-ASF +V-PNI-1S +CONJ +PREP +P-2AP +V-2AAP-ASN +V-FAI-1S +PRT +CONJ +V-FAI-1S +CONJ +P-2NP +P-1AS +V-AAS-2P +COND +ADV +V-PNS-1S +CONJ +PRT-N +V-PAI-1S +P-2AP +ADV +PREP +N-DSF +V-2AAN +CONJ +V-PAI-1S +N-ASM +X-ASM +V-AAN +PREP +P-2AP +COND +T-NSM +N-NSM +V-AAS-3S +CONJ +V-FAI-1S +PREP +N-DSF +ADV +T-GSF +N-GSF +CONJ +P-1DS +V-2RAI-3S +N-NSF +A-NSF +CONJ +A-NSF +CONJ +V-PNP-NPM +A-NPM +CONJ +COND +V-2AAS-3S +N-NSM +V-PAM-2P +CONJ +ADV +V-2ADS-3S +PREP +P-2AP +CONJ +T-ASN +N-ASN +N-GSM +V-PNI-3S +ADV +P-1NS-K +CONJ +PRT-N +X-NSM +P-ASM +V-AAS-3S +CONJ +V-AAM-2P +P-ASM +PREP +N-DSF +CONJ +V-2AAS-3S +PREP +P-1AS +CONJ +V-PNI-1S +P-ASM +PREP +T-GPM +N-GPM +CONJ +PREP +N-GSM +T-GSM +N-GSM +A-APN +V-AAI-1S +P-ASM +CONJ +V-2AAS-3S +PREP +P-2AP +PREP +T-GPM +N-GPM +CONJ +ADV +PRT-N +V-IAI-3S +N-NSN +CONJ +ADV +V-2AAS-3S +CONJ +V-FDI-3S +CONJ +V-AAS-3S +V-PAM-2P +V-PAM-2P +PREP +T-DSF +N-DSF +V-PNM-2P +V-PPM-2P +A-NPN +P-2GP +PREP +N-DSF +V-PNM-3S +CONJ +V-PAI-1S +P-2AP +N-VPM +V-RAI-2P +T-ASF +N-ASF +N-GSM +CONJ +V-PAI-3S +N-NSF +T-GSF +N-GSF +CONJ +PREP +N-ASF +T-DPM +A-DPM +V-AAI-3P +F-3APM +CONJ +CONJ +P-2NP +V-PPS-2P +T-DPM +D-DPM +CONJ +A-DSM +T-DSM +V-PAP-DSM +CONJ +V-PAP-DSM +CONJ +V-PAI-1S +PREP +T-DSF +N-DSF +N-GSM +CONJ +N-GSM +CONJ +N-GSM +CONJ +T-ASN +S-2PASN +N-ASN +D-NPM +V-AAI-3P +CONJ +V-AAI-3P +T-ASN +S-1SASN +N-ASN +CONJ +T-ASN +P-2GP +CONJ +V-PAM-2P +T-APM +D-APM +V-PNI-3P +P-2AP +T-NPF +N-NPF +T-GSF +N-GSF +V-PNI-3S +P-2AP +PREP +N-DSM +A-APN +N-NSM +CONJ +N-NSF +PREP +T-DSF +PREP +N-ASM +P-GPM +N-DSF +V-PNI-3P +P-2AP +T-NPM +N-NPM +A-NPM +V-ADM-2P +C-APM +PREP +N-DSN +A-DSN +T-NSM +N-NSM +T-DSF +S-1SDSF +N-DSF +N-GSM +COND +X-NSM +PRT-N +V-PAI-3S +T-ASM +N-ASM +V-PAM-3S +N-NSN +ARAM +ARAM +T-NSF +N-NSF +T-GSM +N-GSM +N-GSM +PREP +P-2GP +T-NSF +N-NSF +P-1GS +PREP +A-GPM +P-2GP +PREP +N-DSM +N-DSM +N-NSM +N-NSM +N-GSM +N-GSM +PREP +N-GSN +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +T-DSF +N-DSF +T-GSM +N-GSM +T-DSF +V-PAP-DSF +PREP +N-DSF +PREP +T-DPM +A-DPM +A-DPM +T-DPM +V-PAP-DPM +PREP +A-DSF +T-DSF +N-DSF +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +A-NSM +T-NSM +N-NSM +CONJ +N-NSM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-NSM +N-NSM +T-GPM +N-GPM +CONJ +N-NSM +A-GSF +N-GSF +T-NSM +V-PAP-NSM +P-1AP +PREP +A-DSF +T-DSF +N-DSF +P-1GP +PREP +T-ASN +V-PNN +P-1AP +V-PAN +T-APM +PREP +A-DSF +N-DSF +PREP +T-GSF +N-GSF +R-GSF +V-PPI-1P +P-NPM +PREP +T-GSM +N-GSM +CONJ +ADV +V-PAI-3S +T-NPN +N-NPN +T-GSM +N-GSM +PREP +P-1AP +ADV +PREP +T-GSM +N-GSM +V-PAI-3S +CONJ +T-NSF +N-NSF +P-1GP +CONJ +CONJ +V-PPI-1P +PREP +T-GSF +P-2GP +N-GSF +CONJ +N-GSF +CONJ +V-PPI-1P +PREP +T-GSF +P-2GP +N-GSF +T-GSF +V-PMP-GSF +PREP +N-DSF +T-GPN +P-GPN +N-GPN +R-GPN +CONJ +P-1NP +V-PAI-1P +CONJ +T-NSF +N-NSF +P-1GP +A-NSF +PREP +P-2GP +V-RAP-NPM +CONJ +ADV +V-PAI-2P +N-NPM +T-GPN +N-GPN +ADV +CONJ +T-GSF +N-GSF +CONJ +N-VPM +PRT-N +V-PAI-1P +P-2AP +V-PAN +PREP +T-GSF +N-GSF +P-1GP +T-GSF +V-2ADP-GSF +PREP +T-DSF +N-DSF +CONJ +PREP +N-ASF +PREP +N-ASF +V-API-1P +CONJ +V-APN +P-1AP +CONJ +T-GSN +V-PAN +CONJ +P-NPM +PREP +F-1DPM +T-ASN +N-ASN +T-GSM +N-GSM +V-RAI-1P +CONJ +PRT-N +V-2RAP-NPM +V-PAS-1P +PREP +F-1DPM +CONJ +PREP +T-DSM +N-DSM +T-DSM +V-PAP-DSM +T-APM +A-APM +R-NSM +PREP +D-GSM +N-GSM +V-ANI-3S +P-1AP +CONJ +V-FDI-3S +PREP +R-ASM +V-RAI-1P +CONJ +CONJ +ADV +V-FDI-3S +V-PAP-GPM +CONJ +P-2GP +PREP +P-1GP +T-DSF +N-DSF +CONJ +PREP +A-GPN +N-GPN +T-NSN +PREP +P-1AP +N-NSN +PREP +A-GPN +V-APS-3S +PREP +P-1GP +CONJ +T-NSF +N-NSF +P-1GP +D-NSF +V-PAI-3S +T-NSN +N-NSN +T-GSF +N-GSF +P-1GP +CONJ +PREP +N-DSF +CONJ +N-DSF +T-GSM +N-GSM +PRT-N +PREP +N-DSF +A-DSF +CONJ +PREP +N-DSF +N-GSM +V-2API-1P +PREP +T-DSM +N-DSM +CONJ +ADV-C +PREP +P-2AP +CONJ +V-PAI-1P +P-2DP +PRT-N +A-APN +CONJ +PRT +R-APN +V-PAI-2P +PRT +CONJ +V-PAI-2P +CONJ +V-PAI-1S +CONJ +ADV +N-GSN +V-FDI-2P +ADV +CONJ +V-2AAI-2P +P-1AP +PREP +N-GSN +CONJ +N-NSN +P-2GP +V-PAI-1P +ADV +CONJ +P-2NP +P-1GP +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GP +N-GSM +CONJ +D-DSF +T-DSF +N-DSF +V-INI-1S +ADV-C +PREP +P-2AP +V-2AAN +CONJ +A-ASF +N-ASF +V-2AAS-2P +CONJ +PREP +P-2GP +V-2AAN +PREP +N-ASF +CONJ +ADV +PREP +N-GSF +V-2AAN +PREP +P-2AP +CONJ +PREP +P-2GP +V-APN +PREP +T-ASF +N-ASF +CONJ +D-ASN +V-PNP-NSM +PRT-I +PRT-I +T-DSF +N-DSF +V-ADI-1S +PRT +R-APN +V-PNI-1S +PREP +N-ASF +V-PNI-1S +CONJ +V-PAS-3S +PREP +P-1DS +T-NSN +PRT +PRT +CONJ +T-NSN +PRT-N +PRT-N +CONJ +A-NSM +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +P-1GP +T-NSM +PREP +P-2AP +PRT-N +V-PAI-3S +PRT +CONJ +PRT-N +CONJ +T-NSM +T-GSM +N-GSM +N-NSM +N-NSM +N-NSM +T-NSM +PREP +P-2DP +PREP +P-1GP +V-APP-NSM +PREP +P-1GS +CONJ +N-GSM +CONJ +N-GSM +PRT-N +V-2ADI-3S +PRT +CONJ +PRT-N +CONJ +PRT +PREP +P-DSM +V-2RAI-3S +CONJ +K-NPF +N-NPF +N-GSM +PREP +P-DSM +T-NSN +PRT +CONJ +CONJ +PREP +P-GSM +T-NSN +HEB +T-DSM +N-DSM +PREP +N-ASF +PREP +P-1GP +CONJ +T-NSM +V-PAP-NSM +P-1AP +PREP +P-2DP +PREP +N-ASM +CONJ +V-AAP-NSM +P-1AP +N-NSM +T-NSM +CONJ +V-AMP-NSM +P-1AP +CONJ +V-2AAP-NSM +T-ASM +N-ASM +T-GSN +N-GSN +PREP +T-DPF +N-DPF +P-1GP +CONJ +P-1NS +N-ASM +T-ASM +N-ASM +V-PMI-1S +PREP +T-ASF +S-1SASF +N-ASF +CONJ +V-PNP-NSM +P-2GP +ADV-N +V-2AAI-1S +PREP +N-ASF +CONJ +PRT-N +V-PAI-1P +P-2GP +T-GSF +N-GSF +CONJ +A-NPM +V-PAI-1P +T-GSF +N-GSF +P-2GP +CONJ +T-DSF +N-DSF +V-RAI-2P +CONJ +V-AAI-1S +F-1DSM +D-ASN +T-ASN +PRT-N +ADV +PREP +N-DSF +PREP +P-2AP +V-2AAN +CONJ +COND +P-1NS +V-PAI-1S +P-2AP +CONJ +I-NSM +T-NSM +V-PAP-NSM +P-1AS +COND +PRT-N +T-NSM +V-PPP-NSM +PREP +P-1GS +CONJ +V-AAI-1S +D-ASN +P-ASN +CONJ +PRT-N +V-2AAP-NSM +N-ASF +V-2AAS-1S +PREP +R-GPM +P-1AS +V-PAN +V-IAI-3S +V-2RAP-NSM +PREP +A-APM +P-2AP +CONJ +T-NSF +S-1SNSF +N-NSF +A-GPM +P-2GP +V-PAI-3S +CONJ +PREP +A-GSF +N-GSF +CONJ +N-GSF +N-GSF +V-AAI-1S +P-2DP +PREP +A-GPN +N-GPN +PRT-N +CONJ +V-APS-2P +CONJ +CONJ +V-2AAS-2P +T-ASF +N-ASF +R-ASF +V-PAI-1S +ADV-C +PREP +P-2AP +CONJ +COND +X-NSM +V-RAI-3S +PRT-N +P-1AS +V-RAI-3S +CONJ +PREP +N-GSN +A-APM +P-2AP +CONJ +PRT-N +V-PAS-1S +A-NSN +T-DSM +D-DSM +T-NSF +N-NSF +D-NSF +T-NSF +PREP +T-GPM +A-GPM-C +CONJ +ADV-K +ADV +P-2AP +V-ADN +CONJ +V-AAN +PRT-N +ADV-I +T-DSF +A-DSF-C +N-DSF +V-APS-3S +T-NSM +D-NSM +CONJ +V-PAI-1S +P-2AP +V-AAN +PREP +P-ASM +N-ASF +CONJ +PREP +D-ASN +CONJ +V-AAI-1S +CONJ +V-2AAS-1S +T-ASF +N-ASF +P-2GP +COND +PREP +A-APN +A-NPM +V-PAI-2P +CONJ +R-DSM +X-ASN +V-PNI-2P +P-1NS-K +CONJ +CONJ +P-1NS +R-ASN +V-RNI-1S +COND +X-ASN +V-RNI-1S +PREP +P-2AP +PREP +N-DSN +N-GSM +CONJ +PRT-N +V-APS-1P +PREP +T-GSM +N-GSM +CONJ +PRT-N +P-GSM +T-APN +N-APN +V-PAI-1P +CONJ +V-2AAP-NSM +PREP +T-ASF +N-ASF +PREP +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +N-GSF +P-1DS +V-RPP-GSF +PREP +N-DSM +PRT-N +V-RAI-1S +N-ASF +T-DSN +N-DSN +P-1GS +T-DSN +PRT-N +V-2AAN +P-1AS +N-ASM +T-ASM +N-ASM +P-1GS +CONJ +V-AMP-NSM +P-DPM +V-2AAI-1S +PREP +N-ASF +CONJ +N-NSF +T-DSM +N-DSM +T-DSM +ADV +V-PAP-DSM +P-1AP +PREP +T-DSM +N-DSM +CONJ +T-ASF +N-ASF +T-GSF +N-GSF +P-GSM +V-PAP-DSM +PREP +P-1GP +PREP +A-DSM +N-DSM +CONJ +N-GSM +N-NSF +V-PAI-1P +T-DSM +N-DSM +PREP +T-DPM +V-PPP-DPM +CONJ +PREP +T-DPM +V-PEP-DPM +PRT +R-DPM +N-NSF +PREP +N-GSM +PREP +N-ASM +CONJ +R-DPM +N-NSF +PREP +N-GSF +PREP +N-ASF +CONJ +PREP +D-APN +I-NSM +A-NSM +CONJ +PRT-N +V-PAI-1P +V-PAP-NPM +T-ASM +N-ASM +T-GSM +N-GSM +ADV +T-NPM +A-NPM +CONJ +ADV +PREP +N-GSF +CONJ +ADV +PREP +N-GSM +PREP +N-GSM +PREP +N-DSM +V-PAI-1P +V-PMI-1P +ADV +F-1APM +V-PAN +PRT +PRT-N +V-PAI-1P +ADV +X-NPM +A-GPF +N-GPF +PREP +P-2AP +PRT +PREP +P-2GP +T-NSF +N-NSF +P-1GP +P-2NP +V-PAI-2P +V-RPP-NSF +PREP +T-DPF +N-DPF +P-1GP +V-PPP-NSF +CONJ +V-PPP-NSF +PREP +A-GPM +N-GPM +V-PPP-NPM +CONJ +V-PAI-2P +N-NSF +N-GSM +V-APP-NSF +PREP +P-1GP +V-RPP-NSF +PRT-N +A-DSN +CONJ +N-DSN +N-GSM +V-PAP-GSM +PRT-N +PREP +N-DPF +A-DPF +CONJ +PREP +N-DPF +N-DPF +A-DPF +CONJ +N-ASF +D-ASF +V-PAI-1P +PREP +T-GSM +N-GSM +PREP +T-ASM +N-ASM +PRT-N +CONJ +PREP +F-1GPM +A-NPM +V-PAI-1P +V-ADN +X-ASN +ADV +PREP +F-1GPM +CONJ +T-NSF +N-NSF +P-1GP +PREP +T-GSM +N-GSM +R-NSM +CONJ +V-AAI-3S +P-1AP +N-APM +A-GSF +N-GSF +PRT-N +N-GSN +CONJ +N-GSN +CONJ +T-NSN +N-NSN +V-PAI-3S +CONJ +T-NSN +N-NSN +V-PAI-3S +CONJ +COND +T-NSF +N-NSF +T-GSM +N-GSM +PREP +N-DPN +V-RPP-NSF +N-DPM +V-AOI-3S +PREP +N-DSF +CONJ +PRT-N +V-PNN +T-APM +N-APM +N-PRI +V-AAN +PREP +T-ASN +N-ASN +N-GSM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +P-GSM +T-ASF +V-PPP-ASF +ADV-I +PRT-I +ADV +T-NSF +N-NSF +T-GSN +N-GSN +V-FDI-3S +PREP +N-DSF +CONJ +COND +T-NSF +N-NSF +T-GSF +N-GSF +N-NSF +A-DSN +ADV +V-PAI-3S +T-NSF +N-NSF +T-GSF +N-GSF +N-DSF +CONJ +CONJ +PRT-N +V-RPI-3S +T-NSN +V-RPP-NSN +PREP +D-DSN +T-DSN +N-DSN +PREP +T-GSF +V-PAP-GSF +N-GSF +CONJ +COND +T-NSN +V-PPP-NSN +PREP +N-GSF +A-DSN +ADV +T-NSN +V-PAP-NSN +PREP +N-DSF +CONJ +V-PAP-NPM +D-ASF +N-ASF +A-DSF +N-DSF +V-PNI-1P +CONJ +PRT-N +ADV +N-NSM +V-IAI-3S +N-ASN +PREP +T-ASN +N-ASN +P-GSM +PREP +T-ASN +PRT-N +V-AAN +T-APM +N-APM +N-PRI +PREP +T-ASN +N-ASN +T-GSN +V-PPP-GSN +CONJ +V-API-3S +T-NPN +N-NPN +P-GPM +CONJ +ADV +T-GSF +ADV +N-GSF +T-NSN +P-NSN +N-NSN +PREP +T-DSF +N-DSF +T-GSF +A-GSF +N-GSF +V-PAI-3S +PRT-N +V-PPP-NSN +CONJ +PREP +N-DSM +V-PPI-3S +CONJ +ADV +ADV +PRT +ADV +V-PPS-3S +N-NSM +N-NSN +PREP +T-ASF +N-ASF +P-GPM +V-PNI-3S +CONJ +ADV +COND +V-AAS-3S +PREP +N-ASM +V-PPI-3S +T-NSN +N-NSN +CONJ +T-NSM +N-NSM +T-NSN +N-NSN +V-PAI-3S +CONJ +ADV +T-NSN +N-NSN +N-GSM +N-NSF +CONJ +P-1NP +A-NPM +V-RPP-DSN +N-DSN +T-ASF +N-ASF +N-GSM +V-PMP-NPM +T-ASF +P-ASF +N-ASF +V-PPI-1P +PREP +N-GSF +PREP +N-ASF +ADV +PREP +N-GSM +N-GSN +PREP +D-ASN +V-PAP-NPM +T-ASF +N-ASF +D-ASF +ADV +V-API-1P +PRT-N +V-PAI-1P +CONJ +V-2AMI-1P +T-APN +A-APN +T-GSF +N-GSF +PRT-N +V-PAP-NPM +PREP +N-DSF +CONJ-N +V-PAP-NPM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-DSF +N-DSF +T-GSF +N-GSF +V-PAP-NPM +F-1APM +PREP +A-ASF +N-ASF +N-GPM +PREP +T-GSM +N-GSM +CONJ +COND +CONJ +V-PAI-3S +V-RPP-NSN +T-NSN +N-NSN +P-1GP +PREP +T-DPM +V-PEP-DPM +V-PAI-3S +V-RPP-NSN +PREP +R-DPM +T-NSM +N-NSM +T-GSM +N-GSM +D-GSM +V-AAI-3S +T-APN +N-APN +T-GPM +A-GPM +PREP +T-ASN +PRT-N +V-AAN +T-ASM +N-ASM +T-GSN +N-GSN +T-GSF +N-GSF +T-GSM +N-GSM +R-NSM +V-PAI-3S +N-NSF +T-GSM +N-GSM +CONJ +PRT-N +F-1APM +V-PAI-1P +CONJ +N-ASM +N-ASM +N-ASM +CONJ +F-1APM +N-APM +P-2GP +PREP +N-ASM +CONJ +T-NSM +N-NSM +T-NSM +V-2AAP-NSM +PREP +N-GSN +N-NSN +V-FAI-3S +R-NSM +V-AAI-3S +PREP +T-DPF +N-DPF +P-1GP +PREP +N-ASM +T-GSF +N-GSF +T-GSF +N-GSF +T-GSM +N-GSM +PREP +N-DSN +N-GSM +CONJ +V-PAI-1P +T-ASM +N-ASM +D-ASM +PREP +A-DPN +N-DPN +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +V-PAS-3S +T-GSM +N-GSM +CONJ +PRT-N +PREP +P-1GP +PREP +A-DSM +V-PPP-NPM +CONJ +PRT-N +V-PPP-NPM +V-PMP-NPM +CONJ +PRT-N +V-PNP-NPM +V-PPP-NPM +CONJ +PRT-N +V-PPP-NPM +V-PPP-NPM +CONJ +PRT-N +V-PEP-NPM +ADV +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-DSN +N-DSN +V-PAP-NPM +CONJ +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +PREP +T-DSN +N-DSN +P-1GP +V-APS-3S +CONJ +ADV +P-1NP +T-NPM +V-PAP-NPM +PREP +N-ASM +V-PPI-1P +PREP +N-ASM +CONJ +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-APS-3S +PREP +T-DSF +A-DSF +N-DSF +P-1GP +CONJ +T-NSM +N-NSM +PREP +P-1DP +V-PMI-3S +CONJ +T-NSF +N-NSF +PREP +P-2DP +CONJ +V-PAP-NPM +T-ASN +P-ASN +N-ASN +T-GSF +N-GSF +PREP +T-ASN +V-RPP-ASN +V-AAI-1S +CONJ +V-AAI-1S +CONJ +P-1NP +V-PAI-1P +CONJ +CONJ +V-PAI-1P +V-RAP-NPM +CONJ +T-NSM +V-AAP-NSM +T-ASM +N-ASM +N-ASM +CONJ +P-1AP +PREP +N-DSM +V-FAI-3S +CONJ +V-FAI-3S +PREP +P-2DP +CONJ +T-NPN +A-NPN +PREP +P-2AP +CONJ +T-NSF +N-NSF +V-AAP-NSF +PREP +T-GPM +A-GPM-C +T-ASF +N-ASF +V-AAS-3S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +PRT-N +V-PAI-1P +CONJ +COND +CONJ +T-NSM +ADV +P-1GP +N-NSM +V-PPI-3S +CONJ +T-NSM +ADV +P-1GP +V-PPI-3S +N-DSF +CONJ +N-DSF +CONJ +T-NSN +ADV +A-NSN +T-GSF +N-GSF +PREP +N-ASF +PREP +N-ASF +A-ASN +N-ASN +N-GSF +V-PNI-3S +P-1DP +PRT-N +V-PAP-GPM +P-1GP +T-APN +V-PPP-APN +CONJ +T-APN +PRT-N +V-PPP-APN +CONJ +T-NPN +V-PPP-NPN +A-NPN +CONJ +T-NPN +PRT-N +V-PPP-NPN +A-NPN +CONJ +V-RAI-1P +CONJ +COND +T-NSF +A-NSF +P-1GP +N-NSF +T-GSN +N-GSN +V-APS-3S +PREP +N-GSM +V-PAI-1P +N-ASF +N-ASF +A-ASF +A-ASF +PREP +T-DPM +N-DPM +CONJ +CONJ +PREP +D-DSN +V-PAI-1P +T-ASN +N-ASN +P-1GP +T-ASN +PREP +N-GSM +V-AMN +V-PAP-NPM +COND +PRT +CONJ +V-AMP-NPM +PRT-N +A-NPM +V-FPI-1P +CONJ +CONJ +T-NPM +V-PAP-NPM +PREP +T-DSN +N-DSN +V-PAI-1P +V-PPP-NPM +PREP +R-DSN +V-PAI-1P +PRT-N +V-AMN +CONJ +V-AMN +CONJ +V-APS-3S +T-NSN +A-NSN +PREP +T-GSF +N-GSF +CONJ +T-NSM +V-ADP-NSM +P-1AP +PREP +P-ASN +D-ASN +N-NSM +T-NSM +V-2AAP-NSM +P-1DP +T-ASM +N-ASM +T-GSN +N-GSN +CONJ +V-PAP-NPM +ADV +CONJ +V-RAP-NPM +CONJ +V-PAP-NPM +PREP +T-DSN +N-DSN +V-PAI-1P +PREP +T-GSM +N-GSM +CONJ +PREP +N-GSF +V-PAI-1P +PRT-N +PREP +N-GSN +CONJ +V-PAI-1P +CONJ +V-PAI-1P +ADV +V-AAN +PREP +T-GSN +N-GSN +CONJ +V-AAN +PREP +T-ASM +N-ASM +CONJ +CONJ +V-PNI-1P +CONJ +V-PAP-NPM +CONJ +V-PAP-NPM +A-NPM +P-DSM +V-PAN +CONJ +T-APM +A-APM +P-1AP +V-APN +PREP +T-GSN +N-GSN +T-GSM +N-GSM +V-PAI-3S +CONJ +V-AMS-3S +A-NSM +T-APN +PREP +T-GSN +N-GSN +PREP +R-APN +V-AAI-3S +CONJ +A-ASN +CONJ +A-ASN +CONJ +V-RAP-NPM +T-ASM +N-ASM +T-GSM +N-GSM +N-APM +V-PAI-1P +CONJ +N-DSM +V-RPI-1P +CONJ +V-PAI-1S +CONJ +PREP +T-DPF +N-DPF +P-2GP +V-RPN +PRT-N +ADV +F-1APM +V-PAI-1P +P-2DP +CONJ +N-ASF +N-GSN +V-PAP-NPM +P-2DP +PREP +P-1GP +CONJ +V-PAS-2P +PREP +T-APM +PREP +N-DSN +V-PNP-APM +CONJ +PRT-N +PREP +N-DSF +CONJ +CONJ +V-2AAI-1P +N-DSM +CONJ +V-PAI-1P +P-2DP +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-PAI-3S +P-1AP +V-AAP-APM +D-ASN +CONJ +A-NSM +PREP +A-GPM +V-2AAI-3S +PRT +T-NPM +A-NPM +V-2AAI-3P +CONJ +PREP +A-GPM +V-2AAI-3S +CONJ +T-NPM +V-PAP-NPM +V-PAS-3P +ADV-N +F-3DPM +CONJ +T-DSM +PREP +P-GPM +V-2AAP-DSM +CONJ +V-APP-DSM +CONJ +P-1NP +PREP +T-GSM +ADV +A-ASM-N +V-RAI-1P +PREP +N-ASF +COND +CONJ +V-RAI-1P +PREP +N-ASF +N-ASM +CONJ +ADV +ADV-N +V-PAI-1P +CONJ +COND +X-NSM +PREP +N-DSM +A-NSF +N-NSF +T-NPN +A-NPN +V-2AAI-3S +V-2AMM-2S +V-2RAI-3S +A-NPN +CONJ +T-NPN +A-NPN +PREP +T-GSM +N-GSM +T-GSM +V-AAP-GSM +P-1AP +F-3DSM +PREP +N-GSM +CONJ +V-2AAP-GSM +P-1DP +T-ASF +N-ASF +T-GSF +N-GSF +ADV +CONJ +N-NSM +V-IAI-3S +V-PAP-NSM +PREP +N-DSM +N-ASM +F-3DSM +PRT-N +V-PNP-NSM +P-DPM +T-APN +N-APN +P-GPM +CONJ +V-2AMP-NSM +PREP +P-1DP +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +PREP +N-GSM +V-PAI-1P +ADV +T-GSM +N-GSM +V-PAP-GSM +PREP +P-1GP +V-PNI-1P +PREP +N-GSM +V-2APM-2P +T-DSM +N-DSM +T-ASM +PRT-N +V-2AAP-ASM +N-ASF +PREP +P-1GP +N-ASF +V-AAI-3S +CONJ +P-1NP +V-2ADS-1P +N-NSF +N-GSM +PREP +P-DSM +CONJ +V-PAP-NPM +CONJ +V-PAI-1P +PRT-N +PREP +A-ASN +T-ASF +N-ASF +T-GSM +N-GSM +V-ADN +P-2AP +CONJ +V-PAI-3S +N-DSM +A-DSM +V-AAI-1S +P-2GS +CONJ +PREP +N-DSF +N-GSF +V-AAI-1S +P-2DS +V-2AMM-2S +ADV +N-NSM +A-NSM +V-2AMM-2S +ADV +N-NSF +N-GSF +A-ASF-N +N-ASF +PREP +A-DSN-N +V-PAP-NPM +CONJ +PRT-N +V-APS-3S +T-NSF +N-NSF +CONJ +PREP +A-DSN +V-PAP-NPM +F-1APM +ADV +N-GSM +N-NPM +PREP +N-DSF +A-DSF +PREP +N-DPF +PREP +N-DPF +PREP +N-DPF +PREP +N-DPF +PREP +N-DPF +PREP +N-DPF +PREP +N-DPM +PREP +N-DPF +PREP +N-DPF +PREP +N-DSF +PREP +N-DSF +PREP +N-DSF +PREP +N-DSF +PREP +N-DSN +A-DSN +PREP +N-DSF +A-DSF +PREP +N-DSM +N-GSF +PREP +N-DSF +N-GSM +PREP +T-GPN +N-GPN +T-GSF +N-GSF +T-GPF +A-GPN +CONJ +A-GPN +PREP +N-GSF +CONJ +N-GSF +PREP +N-GSF +CONJ +N-GSF +ADV +A-NPM +CONJ +A-NPM +ADV +V-PPP-NPM +CONJ +V-PPP-NPM +ADV +V-PAP-NPM +CONJ +V-2AMM-2S +V-PAI-1P +ADV +V-PPP-NPM +CONJ +PRT-N +V-PPP-NPM +ADV +V-PPP-NPM +CONJ +ADV +V-PAP-NPM +ADV +A-NPM +CONJ +A-APM +V-PAP-NPM +ADV +A-ASN-N +V-PAP-NPM +CONJ +A-APN +V-PAP-NPM +A-VPM +T-NSN +N-NSN +P-1GP +V-2RAI-3S +PREP +P-2AP +T-NSF +N-NSF +P-1GP +V-RPI-3S +PRT-N +V-PPI-2P +PREP +P-1DP +CONJ +V-PPI-2P +PREP +T-DPN +N-DPN +P-2GP +CONJ +T-ASF +P-ASF +N-ASF +ADV +N-DPN +V-PAI-1S +V-APM-2P +CONJ +P-2NP +PRT-N +V-PNM-2P +V-PAP-NPM +A-DPM +CONJ +I-NSF +N-NSF +N-DSF +CONJ +N-DSF +PRT +I-NSF +N-NSF +N-DSN +PREP +N-ASN +CONJ +I-NSF +N-NSF +N-GSM +PREP +N-PRI +PRT +I-NSF +N-NSF +A-DSM +PREP +A-GSM +CONJ +I-NSF +N-NSF +N-DSM +N-GSM +PREP +N-GPN +CONJ +P-1NP +N-NSM +N-GSM +V-PAP-GSM +V-PAI-1P +ADV +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-FAI-1S +PREP +P-DPM +CONJ +V-FAI-1S +CONJ +V-FDI-1S +P-GPM +N-NSM +CONJ +P-NPM +V-FDI-3P +P-1GS +N-NSM +CONJ +V-2AAM-2P +PREP +A-GSN +P-GPM +CONJ +V-APM-2P +CONJ +A-GSN +PRT-N +V-PMM-2P +V-PAI-3S +N-NSM +P-1NS-K +V-FDI-1S +P-2AP +CONJ +V-FDI-1S +P-2DP +PREP +N-ASM +CONJ +P-2NP +V-FDI-2P +P-1DS +PREP +N-APM +CONJ +N-APF +V-PAI-3S +N-NSM +N-NSM +CONJ +A-VPM +V-PAP-NPM +D-APF +T-APF +N-APF +V-AAS-1P +F-1APM +PREP +A-GSM +N-GSM +N-GSF +CONJ +N-GSN +V-PAP-NPM +N-ASF +PREP +N-DSM +N-GSM +V-AAM-2P +P-1AP +A-ASM-N +V-AAI-1P +A-ASM-N +V-AAI-1P +A-ASM-N +V-AAI-1P +PREP +N-ASF +PRT-N +V-PAI-1S +CONJ +V-RAI-1S +CONJ +PREP +T-DPF +N-DPF +P-1GP +V-PAI-2P +PREP +T-ASN +V-2AAN +CONJ +V-PAN +A-NSF +P-1DS +N-NSF +PREP +P-2AP +A-NSF +P-1DS +N-NSF +PREP +P-2GP +V-RPI-1S +T-DSF +N-DSF +V-PMI-1S +T-DSF +N-DSF +PREP +A-DSF +T-DSF +N-DSF +P-1GP +CONJ +CONJ +V-2AAP-GPM +P-1GP +PREP +N-ASF +A-ASF-N +V-RAI-3S +N-ASF +T-NSF +N-NSF +P-1GP +CONJ +PREP +A-DSN +V-PPP-NPM +ADV +N-NPF +ADV +N-NPM +CONJ +T-NSM +V-PAP-NSM +T-APM +A-APM +T-NSM +N-NSM +V-AAI-3S +P-1AP +PREP +T-DSF +N-DSF +N-GSM +CONJ +PRT-N +ADV +PREP +T-DSF +N-DSF +P-GSM +CONJ +CONJ +PREP +T-DSF +N-DSF +R-DSF +V-API-3S +PREP +P-2DP +V-PAP-NSM +P-1DP +T-ASF +P-2GP +N-ASF +T-ASM +P-2GP +N-ASM +T-ASM +P-2GP +N-ASM +PREP +P-1GS +CONJ +P-1AS +ADV +V-2AON +CONJ +COND +CONJ +V-AAI-1S +P-2AP +PREP +T-DSF +N-DSF +PRT-N +V-PNI-1S +COND +CONJ +V-INI-1S +V-PAI-1S +CONJ +T-NSF +N-NSF +D-NSF +COND +CONJ +PREP +N-ASF +V-AAI-3S +P-2AP +ADV +V-PAI-1S +PRT-N +CONJ +V-API-2P +CONJ +CONJ +V-API-2P +PREP +N-ASF +CONJ +V-API-2P +PREP +N-ASM +CONJ +PREP +A-DSN-N +V-APS-2P +PREP +P-1GP +CONJ +T-NSF +PREP +N-ASM +N-NSF +N-ASF +PREP +N-ASF +A-ASF +V-PNI-3S +CONJ +T-NSF +T-GSM +N-GSM +N-NSF +N-ASM +V-PNI-3S +CONJ +V-2AMM-2S +P-NSN +D-NSN +T-NSN +PREP +N-ASM +V-APN +V-ADI-3S +P-2DP +Q-ASF +N-ASF +CONJ +N-ASF +CONJ +N-ASF +CONJ +N-ASM +CONJ +N-ASF +CONJ +N-ASM +CONJ +N-ASF +PREP +A-DSN +V-AAI-2P +F-2APM +A-APM +V-PAN +T-DSN +N-DSN +PRT +COND +CONJ +V-AAI-1S +P-2DP +PRT-N +PREP +T-GSM +V-AAP-GSM +CONJ-N +PREP +T-GSM +V-APP-GSM +CONJ +PREP +T-GSN +V-APN +T-ASF +N-ASF +P-2GP +T-ASF +PREP +P-1GP +PREP +P-2AP +PREP +T-GSM +N-GSM +PREP +D-ASN +V-RPI-1P +CONJ +PREP +T-DSF +N-DSF +P-1GP +ADV-C +ADV +V-2AOI-1P +PREP +T-DSF +N-DSF +N-GSM +CONJ +V-RPI-3S +T-NSN +N-NSN +P-GSM +PREP +A-GPM +P-2GP +CONJ +COND +X-ASN +P-DSM +PREP +P-2GP +V-RNI-1S +PRT-N +V-API-1S +CONJ +ADV +A-APN +PREP +N-DSF +V-AAI-1P +P-2DP +ADV +CONJ +T-NSF +N-NSF +P-1GP +PREP +N-GSM +N-NSF +V-AOI-3S +CONJ +T-NPN +N-NPN +P-GSM +ADV-C +PREP +P-2AP +V-PAI-3S +V-PMP-GSM +T-ASF +A-GPM +P-2GP +N-ASF +ADV +PREP +N-GSM +CONJ +N-GSM +V-ADI-2P +P-ASM +V-PAI-1S +CONJ +PREP +A-DSN +V-PAI-1S +PREP +P-2DP +CONJ +N-VPM +V-PAI-1P +P-2DP +T-ASF +N-ASF +T-GSM +N-GSM +T-ASF +V-RPP-ASF +PREP +T-DPF +N-DPF +T-GSF +N-GSF +CONJ +PREP +A-DSF +N-DSF +N-GSF +T-NSF +N-NSF +T-GSF +N-GSF +P-GPM +CONJ +T-NSF +PREP +N-GSN +N-NSF +P-GPM +V-AAI-3S +PREP +T-ASN +N-ASN +T-GSF +N-GSF +P-GPM +V-PAI-1S +CONJ +PREP +N-ASF +CONJ +PREP +N-ASF +A-NPM +PREP +A-GSF +N-GSF +V-PNP-NPM +P-1GP +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +T-GSF +N-GSF +T-GSF +PREP +T-APM +A-APM +CONJ +PRT-N +ADV +V-AAI-1P +CONJ +F-3APM +V-AAI-3P +ADV-S +T-DSM +N-DSM +CONJ +P-1DP +PREP +N-GSN +N-GSM +PREP +T-ASN +V-AAN +P-1AP +N-ASM +CONJ +ADV +V-ADI-3S +ADV +CONJ +V-AAS-3S +PREP +P-2AP +CONJ +T-ASF +N-ASF +D-ASF +CONJ +ADV +PREP +A-DSN +V-PAI-2P +N-DSF +CONJ +N-DSM +CONJ +N-DSF +CONJ +A-DSF +N-DSF +CONJ +T-DSF +PREP +P-1GP +PREP +P-2DP +N-DSF +CONJ +CONJ +PREP +D-DSF +T-DSF +N-DSF +V-PAS-2P +PRT-N +PREP +N-ASF +V-PAI-1S +CONJ +PREP +T-GSF +A-GPM +N-GSF +CONJ +T-ASN +T-GSF +S-2PGSF +N-GSF +A-ASN +V-PAP-NSM +CONJ +V-PAI-2P +T-ASF +N-ASF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +PREP +P-2AP +V-AAI-3S +A-NSM +V-PAP-NSM +CONJ +P-2NP +T-DSF +D-GSM +N-DSF +V-AAS-2P +CONJ +N-ASF +PREP +D-DSN +V-PAI-1S +CONJ +D-NSN +P-2DP +V-PAI-3S +R-NPM +PRT-N +ADV +T-ASN +V-AAN +CONJ +CONJ +T-ASN +V-PAN +V-ADI-2P +PREP +ADV +CONJ +ADV +CONJ +T-ASN +V-AAN +V-AAM-2P +ADV +ADV +T-NSF +N-NSF +T-GSN +V-PAN +ADV +CONJ +T-NSN +V-AAN +PREP +T-GSN +V-PAN +CONJ +COND +T-NSF +N-NSF +V-PNI-3S +ADV +COND +V-PAS-3S +A-NSM +PRT-N +ADV +PRT-N +V-PAI-3S +CONJ +PRT-N +CONJ +A-DPM +N-NSF +P-2DP +N-NSF +CONJ +PREP +N-GSF +PREP +T-DSM +ADV +N-DSM +T-NSN +P-2GP +N-NSN +PREP +T-ASN +D-GPM +N-ASN +CONJ +CONJ +T-NSN +D-GPM +N-NSN +V-2ADS-3S +PREP +T-ASN +P-2GP +N-ASN +ADV +V-2ADS-3S +N-NSF +ADV +V-RPI-3S +T-NSM +T-ASN +A-ASN +PRT-N +V-AAI-3S +CONJ +T-NSM +T-ASN +A-ASN +PRT-N +V-AAI-3S +CONJ +N-NSF +T-DSM +N-DSM +T-DSM +V-PAP-DSM +T-ASF +P-ASF +N-ASF +PREP +P-2GP +PREP +T-DSF +N-DSF +N-GSM +CONJ +PRT +T-ASF +N-ASF +V-ADI-3S +CONJ +A-NSM-C +V-PAP-NSM +A-NSM +V-2AAI-3S +PREP +P-2AP +CONJ +V-AAI-1P +PREP +P-GSM +T-ASM +N-ASM +R-GSM +T-NSM +N-NSM +PREP +T-DSN +N-DSN +PREP +A-GPF +T-GPF +N-GPF +CONJ +PRT-N +ADV +CONJ +CONJ +V-APP-NSM +PREP +T-GPF +N-GPF +N-NSM +P-1GP +PREP +T-DSF +N-DSF +D-DSF +T-DSF +V-PPP-DSF +PREP +P-1GP +PREP +T-ASF +P-GSM +T-GSM +N-GSM +N-ASF +CONJ +N-ASF +P-1GP +V-PMP-NPM +D-ASN +PRT-N +X-NSM +P-1AP +V-ADS-3S +PREP +T-DSF +N-DSF +D-DSF +T-DSF +V-PPP-DSF +PREP +P-1GP +CONJ +V-PAI-1P +A-APN +PRT-N +ADV +PREP +N-GSM +CONJ +CONJ +PREP +N-GPM +CONJ +V-AAI-1P +P-DPM +T-ASM +N-ASM +P-1GP +R-ASM +V-AAI-1P +PREP +A-DPN +ADV +A-ASM +V-PAP-ASM +CONJ +ADV +A-ASN +A-ASM-C +N-DSF +A-DSF +T-DSF +PREP +P-2AP +CONJ +PREP +N-GSM +N-NSM +S-1SNSM +CONJ +PREP +P-2AP +A-NSM +CONJ +N-NPM +P-1GP +N-NPM +N-GPF +N-NSF +N-GSM +CONJ +T-ASF +N-ASF +T-GSF +N-GSF +P-2GP +CONJ +P-1GP +N-GSF +PREP +P-2GP +PREP +P-APM +V-PMP-NPM +PREP +N-ASN +T-GPF +N-GPF +CONJ +PRT +PREP +T-GSF +N-GSF +T-GSF +PREP +T-APM +A-APM +A-NSN +P-1DS +V-PAI-3S +T-NSN +V-PAN +P-2DP +CONJ +V-RAI-1S +T-ASF +N-ASF +P-2GP +R-ASF +PREP +P-2GP +V-PNI-1S +N-DPM +CONJ +N-NSF +V-RPI-3S +PREP +ADV +CONJ +T-NSN +P-2GP +N-NSN +V-AAI-3S +T-APM +A-APM-C +CONJ +V-AAI-1S +T-APM +N-APM +CONJ +PRT-N +T-NSN +N-NSN +P-1GP +T-NSN +PREP +P-2GP +V-APS-3S +PREP +T-DSN +N-DSN +D-DSN +CONJ +ADV +V-IAI-1S +V-RPP-NPM +V-PAS-2P +PRT-N +ADV-I +COND +V-2AAS-3P +PREP +P-1DS +N-NPM +CONJ +V-2AAS-3P +P-2AP +A-APM +V-APS-1P +P-1NP +CONJ +PRT-N +V-PAS-1P +P-2NP +PREP +T-DSF +N-DSF +D-DSF +CONJ +A-ASN +V-ADI-1S +V-AAN +T-APM +N-APM +CONJ +V-2AAS-3P +PREP +P-2AP +CONJ +V-AAS-3P +T-ASF +V-RNP-ASF +N-ASF +P-2GP +D-ASF +A-ASF +V-PAN +ADV +ADV +N-ASF +CONJ +PRT-N +ADV +N-ASF +CONJ +D-ASN +T-NSM +V-PAP-NSM +ADV +ADV +CONJ +V-FAI-3S +CONJ +T-NSM +V-PAP-NSM +PREP +N-DPF +PREP +N-DPF +CONJ +V-FAI-3S +A-NSM +ADV +V-RMI-3S +T-DSF +N-DSF +PRT-N +PREP +N-GSF +PRT +PREP +N-GSF +CONJ +A-ASM +N-ASM +V-PAI-3S +T-NSM +N-NSM +CONJ +V-PAI-3S +T-NSM +N-NSM +A-ASF +N-ASF +V-AAN +PREP +P-2AP +CONJ +PREP +A-DSN +ADV +A-ASF +N-ASF +V-PAP-NPM +V-PAS-2P +PREP +A-ASN +N-ASN +A-ASN +ADV +V-RPI-3S +V-AAI-3S +V-AAI-3S +T-DPM +N-DPM +T-NSF +N-NSF +P-GSM +V-PAI-3S +PREP +T-ASM +N-ASM +CONJ +T-NSM +V-PAP-NSM +N-ASN +T-DSM +V-PAP-DSM +CONJ +N-ASM +PREP +N-ASF +V-FAI-3S +CONJ +V-FAI-3S +T-ASM +N-ASM +P-2GP +CONJ +V-FAI-3S +T-APN +N-APN +T-GSF +N-GSF +P-2GP +PREP +A-DSN +V-PPP-NPM +PREP +A-ASF +N-ASF +R-NSF +V-PNI-3S +PREP +P-1GP +N-ASF +T-DSM +N-DSM +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +D-GSF +PRT-N +ADV +V-PAI-3S +V-PAP-NSF +T-APN +N-APN +T-GPM +A-GPM +CONJ +CONJ +V-PAP-NSF +PREP +A-GPF +N-GPF +T-DSM +N-DSM +PREP +T-GSF +N-GSF +T-GSF +N-GSF +D-GSF +V-PAP-NPM +T-ASM +N-ASM +PREP +T-DSF +N-DSF +T-GSF +N-GSF +P-2GP +PREP +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +N-DSF +T-GSF +N-GSF +PREP +P-APM +CONJ +PREP +A-APM +CONJ +P-GPM +N-DSF +PREP +P-2GP +V-PAP-GPM +P-2AP +PREP +T-ASF +V-PAP-ASF +N-ASF +T-GSM +N-GSM +PREP +P-2DP +N-NSF +T-DSM +N-DSM +PREP +T-DSF +A-DSF +P-GSM +N-DSF +CONJ +P-NSM +P-1NS +N-NSM +V-PAI-1S +P-2AP +PREP +T-GSF +N-GSF +CONJ +N-GSF +T-GSM +N-GSM +R-NSM +PRT +PREP +N-ASN +A-NSM +PREP +P-2DP +CONJ +V-PAP-NSM +V-PAI-1S +PREP +P-2AP +CONJ +V-PNI-1S +T-ASN +PRT-N +V-PAP-NSM +V-AAN +T-DSF +N-DSF +R-DSF +V-PNI-1S +V-AAN +PREP +X-APM +T-APM +V-PNP-APM +P-1AP +ADV +PREP +N-ASF +V-PAP-APM +CONJ +PREP +N-DSF +V-PAP-NPM +PRT-N +PREP +N-ASF +V-PMI-1P +CONJ +T-NPN +N-NPN +T-GSF +N-GSF +P-1GP +PRT-N +A-NPN +CONJ +A-NPN +T-DSM +N-DSM +PREP +N-ASF +N-GPN +V-PAP-NPM +N-APM +CONJ +A-ASN +N-ASN +V-PMP-ASN +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-PAP-NPM +A-ASN +N-ASN +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +PREP +A-DSN +V-PAP-NPM +V-AAN +A-ASF +N-ASF +CONJ +V-APS-3S +P-2GP +T-NSF +N-NSF +T-APN +PREP +N-ASN +V-PAI-2P +COND +X-NSM +V-2RAI-3S +F-3DSM +N-GSM +V-PAN +D-ASN +V-PNM-3S +ADV +PREP +F-3GSM +CONJ +ADV +P-NSM +N-GSM +ADV +CONJ +P-1NP +CONJ +COND +PRT +A-ASN-C +X-ASN +V-ADS-1S +PREP +T-GSF +N-GSF +P-1GP +R-GSF +V-AAI-3S +T-NSM +N-NSM +PREP +N-ASF +CONJ +PRT-N +PREP +N-ASF +P-2GP +PRT-N +V-FPI-1S +CONJ +PRT-N +V-AAS-1S +ADV +PRT +V-PAN +P-2AP +PREP +T-GPF +N-GPF +CONJ +V-PAI-3S +PRT +T-NPF +N-NPF +A-NPF +CONJ +A-NPF +CONJ +T-NSF +N-NSF +T-GSN +N-GSN +A-NSF +CONJ +T-NSM +N-NSM +V-RPP-NSM +D-ASN +V-PNM-3S +T-NSM +D-NSM +CONJ +K-NPM +V-PAI-1P +T-DSM +N-DSM +PREP +N-GPF +V-PAP-NPM +D-NPM +CONJ +V-PAP-NPM +T-DSN +N-DSN +CONJ +PRT-N +V-PAI-1P +V-AAN +PRT +V-AAN +F-1APM +X-DPM +T-GPM +F-3APM +V-PAP-GPM +CONJ +P-NPM +PREP +F-3DPM +F-3APM +V-PAP-NPM +CONJ +V-PAP-NPM +F-3APM +F-3DPM +PRT-N +V-PAI-3P +CONJ +P-1NP +PRT-N +PREP +T-APN +A-APN +V-FDI-1P +CONJ +PREP +T-ASN +N-ASN +T-GSM +N-GSM +R-GSM +V-AAI-3S +P-1DP +T-NSM +N-NSM +N-GSN +V-2ADN +ADV +CONJ +P-2GP +CONJ +PRT-N +ADV +PRT-N +V-PNP-NPM +PREP +P-2AP +V-PAI-1P +F-1APM +CONJ +ADV +CONJ +P-2GP +V-AAI-1P +PREP +T-DSN +N-DSN +T-GSM +N-GSM +PRT-N +PREP +T-APN +A-APN +V-PNP-NPM +PREP +A-DPM +N-DPM +CONJ +N-ASF +V-PAP-NPM +V-PPP-GSF +T-GSF +N-GSF +P-2GP +PREP +P-2DP +V-APN +PREP +T-ASM +N-ASM +P-1GP +PREP +N-ASF +PREP +T-APN +ADV +P-2GP +V-AMN +PRT-N +PREP +A-DSM +N-DSM +PREP +T-APN +A-APN +V-ADN +CONJ +T-NSM +V-PNP-NSM +PREP +N-DSM +V-PNM-3S +CONJ +PRT-N +T-NSM +F-3ASM +V-PAP-NSM +D-NSM +V-PAI-3S +A-NSM +CONJ +R-ASM +T-NSM +N-NSM +V-PAI-3S +V-2AAI-1S +V-INI-2P +P-1GS +A-ASN +X-ASN +N-GSF +CONJ +CONJ +V-PNI-2P +P-1GS +CONJ +V-PAI-1S +P-2AP +N-GSM +N-DSM +CONJ +V-AMI-1S +P-2AP +A-DSM +N-DSM +N-ASF +A-ASF +V-AAN +T-DSM +N-DSM +CONJ +V-PNI-1S +PRT-N +ADV-I +ADV +T-NSM +N-NSM +V-AAI-3S +N-ASF +PREP +T-DSF +N-DSF +P-GSM +V-2APS-3S +T-NPN +N-NPN +P-2GP +PREP +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +T-GSF +PREP +N-ASM +CONJ +PRT +COND +T-NSM +V-PNP-NSM +V-PAI-3S +A-ASM +N-ASM +R-ASM +PRT-N +V-AAI-1P +PRT +V-PAI-2P +N-ASN +A-ASN +R-ASN +PRT-N +V-2AAI-2P +PRT +N-ASN +A-ASN +R-ASN +PRT-N +V-ADI-2P +ADV +V-PNI-2P +CONJ +V-PNI-1S +A-ASN-N +V-RAN +T-GPM +ADV +N-GPM +CONJ +COND +CONJ +N-NSM +T-DSM +N-DSM +CONJ +PRT-N +T-DSF +N-DSF +CONJ +PREP +A-DSN +V-AAP-NPM +PREP +A-DPN +PREP +P-2AP +PRT +N-ASF +V-AAI-1S +F-1ASM +V-PAP-NSM +CONJ +P-2NP +V-APS-2P +CONJ +ADV +T-ASN +T-GSM +N-GSM +N-ASN +V-AMI-1S +P-2DP +A-APF +N-APF +V-AAI-1S +V-2AAP-NSM +N-ASN +PREP +T-ASF +P-2GP +N-ASF +CONJ +V-PAP-NSM +PREP +P-2AP +CONJ +V-APP-NSM +PRT-N +V-AAI-1S +A-GSM-N +CONJ +T-ASN +N-ASN +P-1GS +V-AAI-3P +T-NPM +N-NPM +V-2AAP-NPM +PREP +N-GSF +CONJ +PREP +A-DSN +A-ASM +F-1ASM +P-2DP +V-AAI-1S +CONJ +V-FAI-1S +V-PAI-3S +N-NSF +N-GSM +PREP +P-1DS +CONJ +T-NSF +N-NSF +D-NSF +PRT-N +V-2FPI-3S +PREP +P-1AS +PREP +T-DPN +N-DPN +T-GSF +N-GSF +PREP +I-ASN +CONJ +PRT-N +V-PAI-1S +P-2AP +T-NSM +N-NSM +V-RAI-3S +CONJ +R-ASN +V-PAI-1S +CONJ +V-FAI-1S +CONJ +V-AAS-1S +T-ASF +N-ASF +T-GPM +V-PAP-GPM +N-ASF +CONJ +PREP +R-DSN +V-PNI-3P +V-APS-3P +ADV +CONJ +P-1NP +CONJ +T-NPM +D-NPM +N-NPM +N-NPM +A-NPM +V-PMP-NPM +PREP +N-APM +N-GSM +CONJ +PRT-N +N-NSN +CONJ +P-NSM +T-NSM +N-NSM +V-PMI-3S +PREP +N-ASM +N-GSN +CONJ +PRT-N +A-NSN +COND +CONJ +T-NPM +N-NPM +P-GSM +V-PPI-3P +ADV +N-NPM +N-GSF +R-GPM +T-NSN +N-NSN +V-FDI-3S +PREP +T-APN +N-APN +P-GPM +ADV +V-PAI-1S +PRT-N +X-NSM +V-AAS-3S +P-1AS +A-ASM +V-PAN +CONJ +COND +PRT-N +COND-K +ADV +A-ASM +V-ADM-2P +P-1AS +CONJ +P-1NS-K +A-ASN +X-ASN +V-ADS-1S +R-ASN +V-PAI-1S +PRT-N +PREP +N-ASM +V-PAI-1S +CONJ +ADV +PREP +N-DSF +PREP +D-DSF +T-DSF +N-DSF +T-GSF +N-GSF +CONJ +A-NPM +V-PNI-3P +PREP +T-ASF +N-ASF +P-1NS-K +V-FDI-1S +CONJ +ADV +V-PNI-2P +T-GPM +A-GPM +A-NPM +V-PAP-NPM +CONJ +V-PNI-2P +COND +X-NSM +P-2AP +V-PAI-3S +COND +X-NSM +V-PAI-3S +COND +X-NSM +V-PAI-3S +COND +X-NSM +V-PMI-3S +COND +X-NSM +PREP +N-ASN +P-2AP +V-PAI-3S +PREP +N-ASF +V-PAI-1S +ADV +CONJ +P-1NP +V-RAI-1P +CONJ +PRT +PREP +R-DSN +X-NSM +V-PAS-3S +PREP +N-DSF +V-PAI-1S +V-PAI-1S +P-1NS-K +A-NPM +V-PAI-3P +P-1NS-K +N-NPM +V-PAI-3P +P-1NS-K +N-NSN +N-PRI +V-PAI-3P +P-1NS-K +N-NPM +N-GSM +V-PAI-3P +V-PAP-NSM +V-PAI-1S +PREP +P-1NS +PREP +N-DPM +ADV-C +PREP +N-DPF +ADV-C +PREP +N-DPF +ADV +PREP +N-DPM +ADV +PREP +A-GPM +ADV +A-NUI +PREP +A-ASF +V-2AAI-1S +ADV +V-API-1S +ADV +V-API-1S +ADV +V-AAI-1S +N-ASN +PREP +T-DSM +N-DSM +V-RAI-1S +N-DPF +ADV +N-DPM +N-GPM +N-DPM +N-GPM +N-DPM +PREP +N-GSN +N-DPM +PREP +N-GPN +N-DPM +PREP +N-DSF +N-DPM +PREP +N-DSF +N-DPM +PREP +N-DSF +N-DPM +PREP +N-DPM +N-DSM +CONJ +N-DSM +PREP +N-DPF +ADV +PREP +N-DSM +CONJ +N-DSN +PREP +N-DPF +ADV +PREP +N-DSN +CONJ +N-DSF +ADV +T-GPN +ADV +T-NSF +N-NSF +P-1DS +T-NSF +PREP +N-ASF +T-NSF +N-NSF +A-GPF +T-GPF +N-GPF +I-NSM +V-PAI-3S +CONJ +PRT-N +V-PAI-1S +I-NSM +V-PPI-3S +CONJ +PRT-N +P-1NS +V-PPI-1S +COND +V-PNN +V-PAI-3S +T-APN +T-GSF +N-GSF +P-1GS +V-FDI-1S +T-NSM +N-NSM +CONJ +N-NSM +T-GSM +N-GSM +N-GSM +T-NSM +V-PAP-NSM +A-NSM +PREP +T-APM +N-APM +V-RAI-3S +CONJ +PRT-N +V-PNI-1S +PREP +N-DSF +T-NSM +N-NSM +N-GSM +T-GSM +N-GSM +V-IAI-3S +T-ASF +N-ASF +A-GPM +V-AAN +P-1AS +CONJ +PREP +N-GSF +PREP +N-DSF +V-API-1S +PREP +T-GSN +N-GSN +CONJ +V-2AAI-1S +T-APF +N-APF +P-GSM +V-PNN +V-PAI-3S +PRT +PRT-N +V-PAP-ASN +CONJ +V-FDI-1S +PREP +N-APF +CONJ +N-APF +N-GSM +V-RAI-1S +N-ASM +PREP +N-DSM +CONJ +PREP +N-DSN +PRT-N +V-RAI-1S +CONJ +ADV +T-GSN +N-GSN +PRT-N +V-RAI-1S +T-NSM +N-NSM +V-RAI-3S +PREP +N-GPN +A-GPN +V-2APP-ASM +T-ASM +D-ASM +ADV +A-GSM +N-GSM +CONJ +V-RAI-1S +T-ASM +D-ASM +N-ASM +CONJ +PREP +N-DSN +CONJ +ADV +T-GSN +N-GSN +PRT-N +V-RAI-1S +T-NSM +N-NSM +V-RAI-3S +CONJ +V-2API-3S +PREP +T-ASM +N-ASM +CONJ +V-AAI-3S +A-APN +N-APN +R-APN +V-AAN +PRT-N +V-PAP-NSN +N-DSM +PREP +T-GSM +D-GSM +V-FDI-1S +CONJ +PREP +F-1GSM +PRT-N +V-FDI-1S +COND +PRT-N +PREP +T-DPF +N-DPF +CONJ +COND +V-AAS-1S +V-ADN +PRT-N +V-FDI-1S +A-NSM +CONJ +N-ASF +V-FAI-1S +CONJ +V-PNI-1S +PRT-N +X-NSM +PREP +P-1AS +V-ADS-3S +PREP +R-ASN +V-PAI-3S +P-1AS +PRT +V-PAI-3S +PREP +P-1GS +CONJ +T-DSF +N-DSF +T-GPF +N-GPF +CONJ +CONJ +PRT-N +V-PPS-1S +V-API-3S +P-1DS +N-NSM +T-DSF +N-DSF +N-NSM +N-GSM +CONJ +P-1AS +V-PAS-3S +CONJ +PRT-N +V-PPS-1S +PREP +D-GSM +ADV +T-ASM +N-ASM +V-AAI-1S +CONJ +V-2AAS-3S +PREP +P-1GS +CONJ +V-RAI-3S-ATT +P-1DS +V-PAI-3S +P-2DS +T-NSF +N-NSF +P-1GS +CONJ +T-NSF +N-NSF +PREP +N-DSF +V-PPI-3S +CONJ +ADV-S +ADV +V-FDI-1S +PREP +T-DPF +N-DPF +CONJ +V-AAS-3S +PREP +P-1AS +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +V-PAI-1S +PREP +N-DPF +PREP +N-DPF +PREP +N-DPF +PREP +N-DPM +CONJ +N-DPF +PREP +N-GSM +CONJ +CONJ +V-PAS-1S +ADV +A-NSM +V-PAI-1S +V-2RAI-1S +A-NSM +P-2NP +P-1AS +V-AAI-2P +CONJ +P-1NS +V-IAI-1S +PREP +P-2GP +V-PPN +CONJ +A-ASN-N +V-AAI-1S +T-GPM +ADV +N-GPM +COND +CONJ +A-NSN-N +V-PAI-1S +PRT +T-NPN +N-NPN +T-GSM +N-GSM +V-API-3S +PREP +P-2DP +PREP +A-DSF +N-DSF +PRT +N-DPN +CONJ +N-DPN +CONJ +N-DPF +CONJ +I-NSN +V-PAI-3S +R-ASN +V-API-2P +PREP +T-APF +A-APF +N-APF +COND +PRT-N +CONJ +P-NSM +P-1NS +PRT-N +V-AAI-1S +P-2GP +V-ADM-2P +P-1DS +T-ASF +N-ASF +D-ASF +V-2AMM-2S +A-ASN +D-ASN +ADV +V-PAI-1S +V-2AAN +PREP +P-2AP +CONJ +PRT-N +V-FAI-1S +CONJ +PRT-N +V-PAI-1S +T-APN +P-2GP +CONJ +P-2AP +CONJ +PRT-N +V-PAI-3S +T-NPN +N-NPN +T-DPM +N-DPM +V-PAN +CONJ +T-NPM +N-NPM +T-DPN +N-DPN +CONJ +P-1NS +ADV-S +V-FAI-1S +CONJ +V-FPI-1S +PREP +T-GPF +N-GPF +P-2GP +COND +ADV-C +P-2AP +V-PAI-1S +A-ASN-C +V-PPI-1S +CONJ +V-PAM-3S +P-1NS +PRT-N +V-AAI-1S +P-2AP +CONJ +V-PAP-NSM +N-NSM +N-DSM +P-2AP +V-2AAI-1S +PRT-N +X-ASM +R-GPM +V-RAI-1S +PREP +P-2AP +PREP +P-GSM +V-AAI-1S +P-2AP +V-AAI-1S +N-ASM +CONJ +V-AAI-1S +T-ASM +N-ASM +PRT-I +V-AAI-3S +P-2AP +N-NSM +PRT-N +T-DSN +P-DSN +N-DSN +V-AAI-1P +PRT-N +T-DPN +P-DPN +N-DPN +ADV +V-PAI-2P +CONJ +P-2DP +V-PNI-1P +PREP +N-GSM +PREP +N-DSM +V-PAI-1P +CONJ +A-VPM +T-NPN +A-NPN +PREP +T-GSF +P-2GP +N-GSF +CONJ +V-PNI-1S +PRT-N +ADV-I +V-2AAP-NSM +PRT-N +K-APM +V-PAI-1S +V-2AAS-1S +P-2AP +P-1NS-K +V-APS-1S +P-2DP +K-ASM +PRT-N +V-PAI-2P +PRT-N +ADV-I +N-NSF +N-NSM +N-NPM +N-NPF +N-NPF +N-NPM +N-NPF +N-NPF +PRT-N +ADV +V-2AAP-GSM +P-1GS +V-AAS-3S +P-1AS +T-NSM +N-NSM +P-1GS +PREP +P-2AP +CONJ +V-AAS-1S +A-APM +T-GPM +V-RAP-GPM +CONJ +PRT-N +V-AAP-GPM +PREP +T-DSF +N-DSF +CONJ +N-DSF +CONJ +N-DSF +R-DSF +V-AAI-3P +A-ASN +D-ASN +V-PNI-1S +PREP +P-2AP +PREP +N-GSN +A-NUI +N-GPM +CONJ +A-GPM +V-FPI-3S +A-NSN +N-NSN +V-RAI-1S +CONJ +V-PAI-1S +ADV +V-PAP-NSM +T-ASN +A-ASN +CONJ +V-PAP-NSM +ADV +T-DPM +V-RAP-DPM +CONJ +T-DPM +A-DPM +A-DPM +CONJ +COND +V-2AAS-1S +PREP +T-ASN +ADV +PRT-N +V-FDI-1S +CONJ +V-PAI-2P +N-ASF +T-GSM +PREP +P-1DS +V-PAP-GSM +N-GSM +R-NSM +PREP +P-2AP +PRT-N +V-PAI-3S +CONJ +V-PAI-3S +PREP +P-2DP +CONJ +CONJ +V-API-3S +PREP +N-GSF +CONJ +V-PAI-3S +PREP +N-GSF +N-GSM +CONJ +CONJ +P-1NP +V-PAI-1P +PREP +P-DSM +CONJ +V-FAI-1P +PREP +P-DSM +PREP +N-GSF +N-GSM +PREP +P-2AP +F-2APM +V-PAM-2P +COND +V-PAI-2P +PREP +T-DSF +N-DSF +F-2APM +V-PAM-2P +PRT +PRT-N +V-PAI-2P +F-2APM +CONJ +N-NSM +N-NSM +PREP +P-2DP +COND +PRT-I +A-NPM +V-PAI-2P +CONJ +V-PAI-1S +CONJ +V-FDI-2P +CONJ +P-1NP +PRT-N +V-PAI-1P +A-NPM +CONJ +V-PNI-1P +PREP +T-ASM +N-ASM +PRT-N +V-AAN +P-2AP +A-ASN +A-ASN-N +PRT-N +CONJ +P-1NP +A-NPM +V-2APS-1P +CONJ +CONJ +P-2NP +T-ASN +A-ASN +V-PAS-2P +CONJ +P-1NP +ADV +A-NPM +V-PAS-1P +CONJ +PRT-N +V-PNI-1P +X-ASN +PREP +T-GSF +N-GSF +CONJ +PREP +T-GSF +N-GSF +CONJ +V-PAI-1P +CONJ +P-1NP +V-PAS-1P +CONJ +P-2NP +A-NPM +V-PAS-2P +CONJ +V-PNI-1P +D-ASN +T-ASF +P-2GP +N-ASF +PREP +D-ASN +D-APN +V-PAP-NSM +V-PAI-1S +CONJ +V-PAP-NSM +PRT-N +ADV +V-ADS-1S +PREP +T-ASF +N-ASF +R-ASF +T-NSM +N-NSM +V-AAI-3S +P-1DS +PREP +N-ASF +CONJ +PRT-N +PREP +N-ASF +N-VPM +A-ASN +V-PAM-2P +V-PPM-2P +V-PPM-2P +T-ASN +P-ASN +V-PAM-2P +V-PAM-2P +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +CONJ +N-GSF +V-FDI-3S +PREP +P-2GP +V-ADM-2P +C-APM +PREP +A-DSN +N-DSN +V-PNI-3P +P-2AP +T-NPM +A-NPM +A-NPM +T-NSF +N-NSF +T-GSM +N-GSM +N-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSN +A-GSN +N-GSN +PREP +A-GPM +P-2GP +N-NSM +N-NSM +PRT-N +PREP +N-GPM +CONJ-N +PREP +N-GSM +CONJ +PREP +N-GSM +N-GSM +CONJ +N-GSM +N-GSM +T-GSM +V-AAP-GSM +P-ASM +PREP +A-GPM +CONJ +T-NPM +PREP +P-1DS +A-NPM +N-NPM +T-DPF +N-DPF +T-GSF +N-GSF +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +T-GSM +V-2AAP-GSM +F-3ASM +PREP +T-GPF +N-GPF +P-1GP +ADV +V-2AMS-3S +P-1AP +PREP +T-GSM +N-GSM +T-GSM +V-RAP-GSM +A-GSM +PREP +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +N-GSM +P-1GP +R-DSM +T-NSF +N-NSF +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +V-PAI-1S +CONJ +ADV +ADV +V-PEI-2P +PREP +T-GSM +V-AAP-GSM +P-2AP +PREP +N-DSF +N-GSM +PREP +A-ASN +N-ASN +R-NSN +PRT-N +V-PAI-3S +A-NSN +COND +PRT-N +X-NPM +V-PAI-3P +T-NPM +V-PAP-NPM +P-2AP +CONJ +V-PAP-NPM +V-AAN +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +CONJ +COND +P-1NP +PRT +N-NSM +PREP +N-GSM +V-AMS-3S +P-2DP +PREP +R-ASN +V-AMI-1P +P-2DP +N-NSN +V-PAM-3S +ADV +V-RAI-1P +CONJ +ADV +ADV +V-PAI-1S +COND +X-NSM +P-2AP +V-PMI-3S +PREP +R-ASN +V-2AAI-2P +N-NSN +V-PAM-3S +CONJ +ADV +V-PAI-1S +N-APM +PRT +T-ASM +N-ASM +PRT +V-PAI-1S +N-DPM +V-PAN +COND +ADV +N-DPM +V-IAI-1S +PRT +N-GSM +N-NSM +PRT-N +V-IMI-1S +CONJ +N-VPM +V-PAI-1S +P-2DP +T-ASN +N-ASN +T-ASN +V-APP-ASN +PREP +P-1GS +CONJ +PRT-N +V-PAI-3S +PREP +N-ASM +CONJ +CONJ-N +P-1NS +PREP +N-GSM +V-2AAI-1S +P-ASN +CONJ-N +V-API-1S +CONJ +PREP +N-GSF +N-GSM +N-GSM +CONJ +V-AAI-2P +T-ASF +S-1SASF +N-ASF +PRT +PREP +T-DSM +N-DSM +CONJ +PREP +N-ASF +V-IAI-1S +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-IAI-1S +P-ASF +CONJ +V-IAI-1S +PREP +T-DSM +N-DSM +PREP +A-APM +N-APM +PREP +T-DSN +N-DSN +P-1GS +ADV-C +V-PAP-NSM +N-NSM +T-GPF +A-GPF +P-1GS +N-GPF +CONJ +ADV +V-AAI-3S +T-NSM +V-AAP-NSM +P-1AS +PREP +N-GSF +N-GSF +P-1GS +CONJ +V-AAP-NSM +PREP +T-GSF +N-GSF +P-GSM +V-AAN +T-ASM +N-ASM +P-GSM +PREP +P-1DS +CONJ +V-PMS-1S +P-ASM +PREP +T-DPN +N-DPN +ADV +PRT-N +V-2AMI-1S +N-DSF +CONJ +N-DSN +CONJ-N +V-2AAI-1S +PREP +N-APN +PREP +T-APM +PREP +P-1GS +N-APM +CONJ +V-2AAI-1S +PREP +N-ASF +CONJ +ADV +V-AAI-1S +PREP +N-ASF +ADV +PREP +A-APN +N-APN +V-2AAI-1S +PREP +N-APN +V-AAN +N-ASM +CONJ +V-AAI-1S +PREP +P-ASM +N-APF +A-NUI +CONJ +A-ASM +T-GPM +N-GPM +PRT-N +V-2AAI-1S +COND +PRT-N +N-ASM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +R-APN +V-PAI-1S +P-2DP +V-2AMM-2S +PREP +T-GSM +N-GSM +CONJ +PRT-N +V-PNI-1S +ADV +V-2AAI-1S +PREP +T-APN +N-APN +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +CONJ +V-IMI-1S +V-PPP-NSM +T-DSN +N-DSN +T-DPF +N-DPF +T-GSF +N-GSF +T-DPF +PREP +N-DSM +CONJ +ADV +V-PAP-NPM +V-IAI-3P +CONJ +T-NSM +V-PAP-NSM +P-1AP +ADV +ADV +V-PMI-3S +T-ASF +N-ASF +R-ASF +PRT +V-IAI-3S +CONJ +V-IAI-3P +PREP +P-1DS +T-ASM +N-ASM +ADV +PREP +A-GPN +N-GPN +ADV +V-2AAI-1S +PREP +N-APN +PREP +N-GSM +V-2AAP-NSM +CONJ +N-ASM +CONJ +V-2AAI-1S +PREP +N-ASF +CONJ +V-2AMI-1S +P-DPM +T-ASN +N-ASN +R-ASN +V-PAI-1S +PREP +T-DPN +N-DPN +CONJ +PREP +A-ASF +T-DPM +V-PAP-DPM +PRT-N +ADV-I +PREP +A-ASM +V-PAS-1S +PRT +V-2AAI-1S +CONJ +CONJ-N +N-NSM +T-NSM +PREP +P-1DS +N-NSM +V-PAP-NSM +V-API-3S +V-APN +CONJ +PREP +T-APM +A-APM +N-APM +R-NPM +V-2AAI-3P +V-AAN +T-ASF +N-ASF +P-1GP +R-ASF +V-PAI-1P +PREP +N-DSM +N-DSM +CONJ +P-1AP +V-FAI-3P +R-DPM +CONJ-N +PREP +N-ASF +V-AAI-1P +T-DSF +N-DSF +CONJ +T-NSF +N-NSF +T-GSN +N-GSN +V-AAS-3S +PREP +P-2AP +CONJ +PREP +T-GPM +V-PAP-GPM +V-PAN +X-ASN +A-NPM +PRT +V-IAI-3P +A-ASN-N +P-1DS +V-PAI-3S +N-ASN +N-GSM +T-NSM +N-NSM +PRT-N +V-PAI-3S +CONJ +P-1DS +T-NPM +V-PAP-NPM +A-ASN-N +V-2AMI-3P +CONJ +ADV-K +V-2AAP-NPM +CONJ +V-RPI-1S +T-ASN +N-ASN +T-GSF +N-GSF +ADV +N-NSM +T-GSF +N-GSF +CONJ +T-NSM +V-AAP-NSM +N-DSM +PREP +N-ASF +T-GSF +N-GSF +V-AAI-3S +CONJ +P-1DS +PREP +T-APN +N-APN +CONJ +V-2AAP-NPM +T-ASF +N-ASF +T-ASF +V-APP-ASF +P-1DS +N-NSM +CONJ +N-NSM +CONJ +N-NSM +T-NPM +V-PAP-NPM +N-NPM +V-PAN +A-APF +N-GSF +V-AAI-3P +P-1DS +CONJ +N-GSM +CONJ +P-1NP +PREP +T-APN +N-APN +CONJ +P-NPM +PREP +T-ASF +N-ASF +ADV +CONJ +T-GPM +A-GPM +V-PAS-1P +R-ASN +CONJ +V-AAI-1S +P-ASN +D-ASN +V-AAN +CONJ +ADV +V-2AAI-3S +N-NSM +PREP +N-ASF +PREP +N-ASN +P-DSM +V-2AAI-1S +CONJ +V-RPP-NSM +V-IAI-3S +CONJ +PREP +T-GSN +V-2AAN +X-APM +PREP +N-GSM +PREP +T-GPN +N-GPN +V-IAI-3S +CONJ +ADV +V-2AAI-3P +V-IAI-3S +CONJ +V-IAI-3S +F-3ASM +V-PNP-NSM +T-APM +PREP +N-GSF +CONJ +V-API-3P +P-DSM +CONJ +T-NPM +A-NPM +A-NPM +CONJ +CONJ +N-NSM +V-API-3S +P-GPM +T-DSF +N-DSF +CONJ +ADV +V-2AAI-1S +CONJ +PRT-N +V-PAI-3P +PREP +T-ASF +N-ASF +T-GSN +N-GSN +V-2AAI-1S +T-DSM +N-DSM +PREP +A-GPM +COND +P-2NS +A-NSM +V-PAP-NSM +ADV +CONJ +PRT-N +ADV +V-PAI-2S +ADV-I +V-PAI-2S +T-APN +N-APN +V-PAN +P-1NP +N-DSF +A-NPM +CONJ +PRT-N +PREP +N-GPN +A-NPM +CONJ +V-RAP-NPM +CONJ +PRT-N +V-PPI-3S +N-NSM +PREP +N-GPN +N-GSM +COND +PRT-N +PREP +N-GSF +N-GSM +N-GSM +CONJ +P-1NP +PREP +N-ASM +N-ASM +V-AAI-1P +CONJ +V-APS-1P +PREP +N-GSF +N-GSM +CONJ +PRT-N +PREP +N-GPN +N-GSM +CONJ +PREP +N-GPN +N-GSM +PRT-N +V-FPI-3S +A-NSF +N-NSF +CONJ +COND +V-PAP-NPM +V-APN +PREP +N-DSM +V-API-1P +CONJ +P-NPM +A-NPM +PRT-I +N-NSM +N-GSF +N-NSM +PRT-N +V-2ADO-3S +CONJ +COND +R-APN +V-AAI-1S +D-APN +ADV +V-PAI-1S +N-ASM +F-1ASM +V-PAI-1S +CONJ +P-1NS +PREP +N-GSM +N-DSM +V-2AAI-1S +CONJ +N-DSM +V-AAS-1S +N-DSM +V-RPI-1S +CONJ +V-PAI-1S +ADV-N +P-1NS +CONJ +V-PAI-3S +PREP +P-1DS +N-NSM +CONJ +R-ASN +ADV +V-PAI-1S +PREP +N-DSF +V-PAI-1S +PREP +N-DSF +T-DSF +T-GSM +N-GSM +T-GSM +N-GSM +T-GSM +V-AAP-GSM +P-1AS +CONJ +V-2AAP-GSM +F-3ASM +PREP +P-1GS +PRT-N +V-PAI-1S +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +COND +PREP +N-GSM +N-NSF +PRT +N-NSM +ADV +V-2AAI-3S +INJ +A-VPM +N-VPM +I-NSM +P-2AP +V-AAI-3S +R-DPM +PREP +N-APM +N-NSM +N-NSM +V-2API-3S +V-RPP-NSM +V-PAI-1S +D-ASN +ADV +V-2AAN +PREP +P-2GP +T-ASN +N-ASN +V-2AAI-2P +PREP +N-GPN +N-GSM +PRT +PREP +N-GSF +N-GSF +ADV +A-NPM +V-PAI-2P +V-ADP-NPM +N-DSN +ADV +N-DSF +V-PEI-2P +D-APN +V-2AAI-2P +ADV +COND +PRT +CONJ +ADV +CONJ +T-NSM +V-PAP-NSM +P-2DP +T-ASN +N-ASN +CONJ +V-PAP-NSM +N-APF +PREP +P-2DP +PREP +N-GPN +N-GSM +PRT +PREP +N-GSF +N-GSF +ADV +N-PRI +V-AAI-3S +T-DSM +N-DSM +CONJ +V-API-3S +P-DSM +PREP +N-ASF +PRT +V-PAI-2P +CONJ +T-NPM +PREP +N-GSF +D-NPM +N-NPM +N-PRI +V-PAI-3P +CONJ +T-NSF +N-NSF +V-2AAP-NSF +CONJ +PREP +N-GSF +V-PAI-3S +T-APN +N-APN +T-NSM +N-NSM +V-ADI-3S +T-DSM +N-PRI +CONJ +V-FPI-3P +PREP +P-2DS +A-NPN +T-NPN +N-NPN +CONJ +T-NPM +PREP +N-GSF +V-PPI-3P +PREP +T-DSM +A-DSM +N-PRI +CONJ +K-NPM +PREP +N-GPN +N-GSM +V-PAI-3P +PREP +N-ASF +V-PAI-3P +CONJ +V-RPI-3S +CONJ +A-NSM +A-NSM +R-NSM +PRT-N +V-PAI-3S +A-DPN +T-DPN +V-RPP-DPN +PREP +T-DSN +N-DSN +T-GSM +N-GSM +T-GSN +V-AAN +P-APN +CONJ +CONJ +PREP +N-DSM +A-NSM-N +V-PPI-3S +PREP +T-DSM +N-DSM +A-NSN +CONJ +T-NSM +A-NSM +PREP +N-GSF +V-FDI-3S +CONJ +T-NSM +N-NSM +PRT-N +V-PAI-3S +PREP +N-GSF +CONJ +T-NSM +V-AAP-NSM +P-APN +V-FDI-3S +PREP +P-DPN +N-NSM +P-1AP +V-AAI-3S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +V-2ADP-NSM +PREP +P-1GP +N-NSF +CONJ +V-RPI-3S +A-NSM +A-NSM +T-NSM +V-PMP-NSM +PREP +N-GSN +CONJ +PREP +T-APN +N-APN +T-NSF +N-NSF +T-GSM +N-PRI +V-2ADS-3S +PREP +N-DSM +N-DSM +CONJ +T-ASF +N-ASF +T-GSN +N-GSN +V-2AAS-1P +PREP +T-GSF +N-GSF +N-VPM +PREP +N-ASM +V-PAI-1S +CONJ +N-GSM +V-RPP-ASF +N-ASF +A-NSM-N +V-PAI-3S +PRT +V-PNI-3S +CONJ +V-API-3P +T-NPF +N-NPF +T-DSM +N-PRI +CONJ +T-DSN +N-DSN +P-GSM +PRT-N +V-PAI-3S +CONJ +T-DPN +N-DPN +ADV +PREP +A-GPN +CONJ +ADV +PREP +A-GSN +CONJ +T-DSN +N-DSN +P-2GS +R-NSM +V-PAI-3S +N-NSM +CONJ +D-ASN +V-PAI-1S +N-ASF +V-RPP-ASF +PREP +T-GSM +N-GSM +T-NSM +PREP +A-APN +CONJ +A-NUI +N-APN +V-2RAP-NSM +N-NSM +PRT-N +V-PAI-3S +PREP +T-ASN +V-AAN +T-ASF +N-ASF +CONJ +COND +PREP +N-GSM +T-NSF +N-NSF +ADV-N +PREP +N-GSF +CONJ +T-DSM +N-PRI +PREP +N-GSF +V-RNI-3S +T-NSM +N-NSM +CONJ +I-NSN +T-NSM +N-NSM +T-GPF +N-GPF +PREP +V-API-3S +ADV +PRT +V-2AAS-3S +T-NSN +N-NSN +R-DSM +V-RPI-3S +V-2APP-NSM +PREP +N-GPM +PREP +N-DSF +N-GSM +CONJ +T-NSM +N-NSM +A-GSM +PRT-N +V-PAI-3S +CONJ +T-NSM +N-NSM +A-NSM +V-PAI-3S +CONJ +T-NSM +N-NSM +PREP +T-GPF +N-GPF +T-GSM +N-GSM +PRT-N +V-2ADO-3S +CONJ +COND +V-API-3S +N-NSM +T-NSM +V-PNP-NSM +V-AAN +PRT +ADV +PREP +N-GSM +V-IAI-3S +T-NSF +N-NSF +CONJ +V-AAI-3S +T-NSF +N-NSF +T-APN +A-APN +PREP +N-ASF +CONJ +T-NSF +N-NSF +PREP +N-GSF +N-GSM +N-GSM +V-APS-3S +T-DPM +V-PAP-DPM +CONJ +PREP +T-GSN +V-2AAN +T-ASF +N-ASF +PREP +N-ASM +V-IPI-1P +V-PPP-NPM +PREP +T-ASF +V-PAP-ASF +V-APN +N-ASF +CONJ +T-NSM +N-NSM +N-NSM +P-1GP +V-2RAI-3S +PREP +N-ASM +CONJ +PREP +N-GSF +V-APS-1P +CONJ +V-2AAP-GSF +T-GSF +N-GSF +ADV-N +PREP +N-ASM +V-PAI-1P +CONJ +A-NPM +N-NPM +N-GSM +V-PAI-2P +PREP +T-GSF +N-GSF +PREP +N-DSM +N-DSM +CONJ +K-NPM +PREP +N-ASM +V-API-2P +N-ASM +V-AMI-2P +PRT-N +V-PAI-3S +A-NSM +CONJ-N +N-NSM +PRT-N +V-PAI-3S +N-NSM +CONJ-N +A-NSM +PRT-N +V-PAI-3S +A-NSN +CONJ +A-NSN +CONJ +A-NPM +P-2NP +A-NSM +V-PAI-2P +PREP +N-DSM +N-DSM +CONJ +COND +P-2NP +N-GSM +PRT +T-GSM +N-PRI +N-NSN +V-PAI-2P +PREP +N-ASF +N-NPM +CONJ +V-PAI-1S +PREP +K-ASM +N-ASM +T-NSM +N-NSM +A-NSM +V-PAI-3S +A-ASN-N +V-PAI-3S +N-GSM +N-NSM +A-GPM +V-PAP-NSM +CONJ +PREP +N-APM +CONJ +N-APM +V-PAI-3S +ADV +T-GSF +N-GSF +T-GSM +N-GSM +ADV +CONJ +P-1NP +ADV +V-IAI-1P +A-NPM +PREP +T-APN +N-APN +T-GSM +N-GSM +V-IMI-1P +V-RPP-NPM +CONJ +ADV +V-2AAI-3S +T-NSN +N-NSN +T-GSM +N-GSM +V-AAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +P-GSM +V-2ADP-ASM +PREP +N-GSF +V-2ADP-ASM +PREP +N-ASM +CONJ +T-APM +PREP +N-ASM +V-AAS-3S +CONJ +T-ASF +N-ASF +V-2AAS-1P +CONJ +CONJ +V-PAI-2P +N-NPM +V-AAI-3S +T-NSM +N-NSM +T-ASN +N-ASN +T-GSM +N-GSM +P-GSM +PREP +T-APF +N-APF +P-1GP +V-PAP-ASN +N-PRI +T-NSM +N-NSM +CONJ +V-PAI-2S +ADV-N +N-NSM +CONJ +N-NSM +CONJ +COND +N-NSM +CONJ +N-NSM +PREP +N-GSM +CONJ +PRT +ADV +PRT-N +V-RAP-NPM +N-ASM +V-AAI-2P +T-DPM +N-DSF +PRT-N +V-PAP-DPM +N-DPM +CONJ +ADV +V-2AAP-NPM +N-ASM +CONJ +ADV +V-APP-NPM +PREP +N-GSM +ADV-I +V-PAI-2P +ADV +PREP +T-APN +A-APN +CONJ +A-APN +N-APN +R-DPN +ADV +ADV +V-AAN +V-PAI-2P +V-PMI-2P +N-APF +CONJ +N-APM +CONJ +N-APM +CONJ +N-APM +V-PNI-1S +P-2AP +PRT-N +ADV-I +ADV +V-RAI-1S +PREP +P-2AP +V-PNM-2P +ADV +P-1NS +CONJ +P-1NS-K +ADV +P-2NP +N-VPM +V-PNI-1S +P-2GP +A-ASN-N +P-1AS +V-AAI-2P +CONJ +V-RAI-2P +CONJ +PREP +N-ASF +T-GSF +N-GSF +V-AMI-1S +P-2DP +T-ASN +A-ASN-C +CONJ +PRT-N +T-ASM +N-ASM +P-2GP +PREP +T-DSF +N-DSF +P-1GS +V-AAI-2P +CONJ-N +V-AAI-2P +CONJ +ADV +N-ASM +N-GSM +V-ADI-2P +P-1AS +ADV +N-ASM +N-ASM +CONJ +ADV-I +T-NSM +N-NSM +P-2GP +CONJ +V-PAI-1S +P-2DP +CONJ +COND +A-NSN +T-APM +N-APM +P-2GP +V-AAP-NPM +V-AAI-2P +P-1DS +CONJ +A-NSM +P-2GP +V-2RAI-1S +V-PAP-NSM +P-2DP +V-PAI-3P +P-2AP +PRT-N +ADV +CONJ +V-AAN +P-2AP +V-PAI-3P +CONJ +P-APM +V-PAS-2P +CONJ +A-NSN +V-PPN +PREP +A-DSN +ADV +CONJ +PRT-N +ADV +PREP +T-DSN +V-PAN +P-1AS +PREP +P-2AP +N-VPN +P-1GS +R-APM +ADV +V-PAI-1S +ADV +R-GSM +V-APS-3S +N-NSM +PREP +P-2DP +CONJ +V-IAI-1S +V-PAN +PREP +P-2AP +ADV +CONJ +V-AAN +T-ASF +N-ASF +P-1GS +CONJ +V-PMI-1S +PREP +P-2DP +V-PAM-2P +P-1DS +T-NPM +PREP +N-ASM +V-PAN +V-PAP-NPM +T-ASM +N-ASM +PRT-N +V-PAI-2P +CONJ +V-RPI-3S +CONJ +N-PRI +V-2AAI-3S +A-NUI +N-APM +A-ASM +PREP +T-GSF +N-GSF +CONJ +A-ASM +PREP +T-GSF +A-GSF +CONJ +PRT +T-NSM +PREP +T-GSF +N-GSF +PREP +N-ASF +V-RPI-3S +CONJ +T-NSM +PREP +T-GSF +A-GSF +PREP +T-GSF +N-GSF +R-NPN +V-PAI-3S +V-PPP-NPN +CONJ +D-NPF +V-PAI-3P +A-NUI +N-NPF +PRT +A-NSF +PREP +N-GSN +N-PRI +PREP +N-ASF +V-PAP-NSF +R-NSF +V-PAI-3S +N-PRI +CONJ +T-NSN +N-PRI +N-PRI +N-NSN +V-PAI-3S +PREP +T-DSF +N-DSF +CONJ +V-PAI-3S +T-DSF +ADV +N-PRI +CONJ +V-PAI-3S +PREP +T-GPN +N-GPN +P-GSF +CONJ +T-NSF +ADV +N-PRI +A-NSF +V-PAI-3S +R-NSF +V-PAI-3S +N-NSF +P-1GP +CONJ +V-RPI-3S +V-APM-2S +N-VSF +T-NSF +PRT-N +V-PAP-NSF +V-AAM-2S +CONJ +V-AAM-2S +T-NSF +PRT-N +V-PAP-NSF +CONJ +A-NPN +T-NPN +N-NPN +T-GSF +A-GSF +ADV +PRT +T-GSF +V-PAP-GSF +T-ASM +N-ASM +CONJ +N-VPM +P-2NP +PREP +N-PRI +N-GSF +N-NPN +V-PAI-2P +CONJ +ADV +ADV +T-NSM +PREP +N-ASF +V-APP-NSM +V-IAI-3S +T-ASM +PREP +N-ASN +ADV +CONJ +ADV +CONJ +I-ASN +V-PAI-3S +T-NSF +N-NSF +V-2AAM-2S +T-ASF +N-ASF +CONJ +T-ASM +N-ASM +P-GSF +CONJ +PRT-N +PRT-N +V-FAI-3S +T-NSM +N-NSM +T-GSF +N-GSF +PREP +T-GSM +N-GSM +T-GSF +A-GSF +CONJ +N-VPM +V-PAI-1P +PRT-N +N-GSF +N-NPN +CONJ +T-GSF +A-GSF +T-DSF +N-DSF +P-1AP +N-NSM +V-AAI-3S +CONJ +V-PAM-2P +CONJ +PRT-N +ADV +N-DSM +N-GSF +V-PPM-2P +V-2AAM-2S +P-1NS +N-NSM +V-PAI-1S +P-2DP +CONJ +COND +V-PPS-2P +N-NSM +P-2AP +A-ASN-N +V-FAI-3S +CONJ +V-PNI-1S +ADV +A-DSM +N-DSM +V-PPP-DSM +CONJ +N-NSM +V-PAI-3S +A-ASM +T-ASM +N-ASM +V-AAN +V-API-2P +PREP +N-GSM +R-NPM +PREP +N-DSM +V-PPI-2P +T-GSF +N-GSF +V-2AAI-2P +CONJ +P-1NP +N-DSN +PREP +N-GSF +N-ASF +N-GSF +V-PNI-1P +CONJ +PREP +N-DSM +N-DSM +CONJ-N +N-NSF +CONJ-N +N-NSF +X-ASN +V-PAI-3S +CONJ +N-NSF +PREP +N-GSF +V-PMP-NSF +V-IAI-2P +ADV +I-NSM +V-AAI-3S +P-2AP +N-DSF +PRT-N +V-PPN +T-NSF +N-NSF +PRT-N +PREP +T-GSM +V-PAP-GSM +P-2AP +A-NSF +N-NSF +A-ASN +T-ASN +N-ASN +V-PAI-3S +P-1NS +V-2RAI-1S +PREP +P-2AP +PREP +N-DSM +CONJ +A-ASN-N +A-ASN +V-FAI-2P +CONJ +T-NSM +V-PAP-NSM +P-2AP +V-FAI-3S +T-ASN +N-ASN +COND +R-NSM +V-PAS-3S +CONJ +N-VPM +COND +P-1NS +N-ASF +ADV +V-PAI-1S +I-ASN +ADV +V-PPI-1S +PRT +V-RPI-3S +T-NSN +N-NSN +T-GSM +N-GSM +V-2AAI-1S +CONJ +V-FMI-3P +T-NPM +V-PAP-NPM +P-2AP +CONJ +P-2NP +PREP +N-DSF +V-API-2P +N-VPM +ADV +PRT-N +T-ASF +N-ASF +PREP +N-ASF +T-DSF +N-DSF +CONJ +PREP +T-GSF +N-GSF +V-PAM-2P +C-DPM +CONJ +T-NSM +A-NSM +N-NSM +V-RPI-3S +PREP +A-DSM +N-DSM +PREP +T-DSM +V-FAI-2S +T-ASM +ADV +P-2GS +ADV +F-2ASM +CONJ +COND +C-APM +V-PAI-2P +CONJ +V-PAI-2P +V-PAM-2P +PRT-N +PREP +C-GPM +V-APS-2P +CONJ +V-PAI-1S +N-DSN +V-PAM-2P +CONJ +N-ASF +N-GSF +PRT-N +PRT-N +V-AAS-2P +CONJ +T-NSF +N-NSF +V-PAI-3S +PREP +T-GSN +N-GSN +CONJ +T-NSN +N-NSN +PREP +T-GSF +N-GSF +CONJ +D-NPN +C-DPN +V-PNI-3S +CONJ +PRT-N +COND +R-APN +V-PAS-2P +D-APN +V-PAS-2P +CONJ +COND +N-DSN +V-PPI-2P +PRT-N +V-PAI-2P +PREP +N-ASM +CONJ +A-NPN +V-PAI-3S +T-NPN +N-NPN +T-GSF +N-GSF +R-NPN +V-PAI-3S +N-NSF +N-NSF +N-NSF +N-NSF +N-NSF +N-NPF +N-NSF +N-NSM +N-NPM +N-NPF +N-NPF +N-NPF +N-NPM +N-NPF +N-NPM +CONJ +T-NPN +A-NPN +D-DPN +R-APN +V-PAI-1S +P-2DP +ADV +V-2AAI-1S +CONJ +T-NPM +T-APN +D-APN +V-PAP-NPM +N-ASF +N-GSM +PRT-N +V-FAI-3P +CONJ +T-NSM +N-NSM +T-GSN +N-GSN +V-PAI-3S +N-NSF +N-NSF +N-NSF +N-NSF +N-NSF +N-NSF +N-NSF +N-NSF +N-NSF +PREP +T-GPN +D-GPN +PRT-N +V-PAI-3S +N-NSM +CONJ +T-NPM +T-GSM +N-GSM +N-GSM +T-ASF +N-ASF +V-AAI-3P +PREP +T-DPN +N-DPN +CONJ +T-DPF +N-DPF +COND +V-PAI-1P +N-DSN +N-DSN +CONJ +V-PAS-1P +PRT-N +V-PNS-1P +A-NPM +C-APM +V-PMP-NPM +C-DPM +V-PAP-NPM +N-VPM +COND +CONJ +V-APS-3S +N-NSM +PREP +X-DSN +N-DSN +P-2NP +T-NPM +A-NPM +V-PAM-2P +T-ASM +D-ASM +PREP +N-DSN +N-GSF +V-PAP-NSM +F-2ASM +PRT-N +CONJ +P-2NS +V-APS-2S +C-GPM +T-APN +N-APN +V-PAM-2P +CONJ +ADV +V-FAI-2P +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +COND +V-PAI-3S +X-NSM +V-PAN +X-NSN +A-NSN-N +V-PAP-NSM +V-PAI-3S +F-3ASM +CONJ +T-ASN +N-ASN +F-3GSM +V-PAM-3S +A-NSM +CONJ +ADV +PREP +F-3ASM +A-ASM +T-ASN +N-ASN +V-FAI-3S +CONJ +PRT-N +PREP +T-ASM +A-ASM +CONJ +A-NSM +T-ASN +A-ASN +N-ASN +V-FAI-3S +CONJ +V-PAM-3S +T-NSM +V-PPP-NSM +T-ASM +N-ASM +T-DSM +V-PAP-DSM +PREP +A-DPN +A-DPN +PRT-N +V-PPM-2P +N-NSM +PRT-N +V-PPI-3S +CONJ +COND +R-ASN +V-PAS-3S +N-NSM +D-ASN +CONJ +V-FAI-3S +CONJ +T-NSM +V-PAP-NSM +PREP +T-ASF +N-ASF +F-3GSM +PREP +T-GSF +N-GSF +V-FAI-3S +N-ASF +CONJ +T-NSM +V-PAP-NSM +PREP +T-ASN +N-ASN +PREP +T-GSN +N-GSN +V-FAI-3S +N-ASF +A-ASF +CONJ +T-ASN +A-ASN +V-PAP-NPM +PRT-N +V-PAS-1P +CONJ +N-DSM +A-DSM +V-FAI-1P +PRT-N +V-PPP-NPM +PRT +CONJ +ADV +N-ASM +V-PAS-1P +V-PNS-1P +T-ASN +A-ASN +PREP +A-APM +CONJ +ADV-S +PREP +T-APM +A-APM +T-GSF +N-GSF +V-2AAM-2P +A-DPN +N-DPN +P-2DP +V-AAI-1S +T-DSF +S-1SDSF +N-DSF +K-NPM +V-PAI-3P +V-AAN +PREP +N-DSF +D-NPM +V-PAI-3P +P-2AP +V-PPN +CONJ +ADV +T-DSM +N-DSM +T-GSM +N-GSM +PRT-N +V-PPS-3P +CONJ +CONJ-N +T-NPM +V-PPP-NPM +P-NPM +N-ASM +V-PAI-3P +CONJ +V-PAI-3P +P-2AP +V-PPN +CONJ +PREP +T-DSF +S-2PDSF +N-DSF +V-ADS-3P +CONJ +P-1DS +PRT-N +V-2ADO-3S +V-PNN +COND +PRT-N +PREP +T-DSM +N-DSM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +R-GSM +P-1DS +N-NSM +V-RPI-3S +P-1NS-K +N-DSM +CONJ +X-NSN +V-PAI-3S +CONJ-N +N-NSF +CONJ-N +N-NSF +CONJ +A-NSF +N-NSF +CONJ +K-NPM +T-DSM +N-DSM +D-DSM +V-FAI-3P +N-NSF +CONJ +N-NSN +PREP +P-APM +CONJ +PREP +T-ASM +N-PRI +T-GSM +N-GSM +T-GSN +A-GSN +N-APM +P-1DS +A-NSM-N +V-PAM-3S +CONJ +P-1NS +T-APN +N-APN +T-GSM +N-GSM +PREP +T-DSN +N-DSN +P-1GS +V-PAI-1S +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +T-GSN +N-GSN +P-2GP +N-VPM +HEB +N-NSM +N-NSM +N-GSM +N-GSM +PREP +N-GSN +N-GSM +T-DPM +A-DPM +T-DPM +V-PAP-DPM +PREP +N-DSF +CONJ +A-DPM +PREP +N-DSM +N-DSM +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +A-NSM +T-NSM +N-NSM +CONJ +N-NSM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-NSM +V-AAP-NSM +P-1AP +PREP +A-DSF +N-DSF +A-DSF +PREP +T-DPN +A-DPN +PREP +N-DSM +ADV +V-AMI-3S +P-1AP +PREP +P-DSM +PREP +N-GSF +N-GSM +V-PAN +P-1AP +A-APM +CONJ +A-APM +PREP +P-GSM +PREP +N-DSF +V-AAP-NSM +P-1AP +PREP +N-ASF +PREP +N-GSM +N-GSM +PREP +P-ASM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +P-GSM +PREP +N-ASM +N-GSF +T-GSF +N-GSF +P-GSM +R-GSF +V-AAI-3S +P-1AP +PREP +T-DSM +V-RPP-DSM +PREP +R-DSM +V-PAI-1P +T-ASF +N-ASF +PREP +T-GSN +N-GSN +P-GSM +T-ASF +N-ASF +T-GPN +N-GPN +PREP +T-ASN +N-ASN +T-GSF +N-GSF +P-GSM +R-GSF +V-AAI-3S +PREP +P-1AP +PREP +A-DSF +N-DSF +CONJ +N-DSF +V-AAP-NSM +P-1DP +T-ASN +N-ASN +T-GSN +N-GSN +P-GSM +PREP +T-ASF +N-ASF +P-GSM +R-ASF +V-2AMI-3S +PREP +P-DSM +PREP +N-ASF +T-GSN +N-GSN +T-GPM +N-GPM +V-ADN +T-APN +A-APN +PREP +T-DSM +N-DSM +T-APN +PREP +T-DPM +N-DPM +CONJ +T-APN +PREP +T-GSF +N-GSF +PREP +P-DSM +PREP +R-DSM +CONJ +V-API-1P +V-APP-NPM +PREP +N-ASF +T-GSM +T-APN +A-APN +V-PAP-GSM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +P-GSM +PREP +T-ASN +V-PAN +PREP +N-ASM +N-GSF +P-GSM +P-1AP +T-APM +V-RAP-APM +PREP +T-DSM +N-DSM +PREP +R-DSM +CONJ +P-2NP +V-AAP-NPM +T-ASM +N-ASM +T-GSF +N-GSF +T-ASN +N-ASN +T-GSF +N-GSF +P-2GP +PREP +R-DSM +CONJ +V-AAP-NPM +V-API-2P +T-DSN +N-DSN +T-GSF +N-GSF +T-DSN +A-DSN +R-NSM +V-PAI-3S +N-NSM +T-GSF +N-GSF +P-1GP +PREP +N-ASF +T-GSF +N-GSF +PREP +N-ASM +T-GSF +N-GSF +P-GSM +PREP +D-ASN +P-1NS-K +V-AAP-NSM +T-ASF +PREP +P-2AP +N-ASF +PREP +T-DSM +N-DSM +N-DSM +CONJ +T-ASF +N-ASF +T-ASF +PREP +A-APM +T-APM +A-APM +PRT-N +V-PMI-1S +V-PAP-NSM +PREP +P-2GP +N-ASF +V-PMP-NSM +PREP +T-GPF +N-GPF +P-1GS +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-NSM +N-NSM +T-GSF +N-GSF +V-2AAO-3S +P-2DP +N-ASN +N-GSF +CONJ +N-GSF +PREP +N-DSF +P-GSM +V-RPP-APM +T-APM +N-APM +T-GSF +N-GSF +P-2GP +PREP +T-ASN +V-RAN +P-2AP +I-NSF +V-PAI-3S +T-NSF +N-NSF +T-GSF +N-GSF +P-GSM +I-NSM +T-NSM +N-NSM +T-GSF +N-GSF +T-GSF +N-GSF +P-GSM +PREP +T-DPM +A-DPM +CONJ +I-NSN +T-NSN +V-PAP-NSN +N-NSN +T-GSF +N-GSF +P-GSM +PREP +P-1AP +T-APM +V-PAP-APM +PREP +T-ASF +N-ASF +T-GSN +N-GSN +T-GSF +N-GSF +P-GSM +R-ASF +V-RAI-3S +PREP +T-DSM +N-DSM +V-AAP-NSM +P-ASM +PREP +A-GPM +CONJ +V-AAP-NSM +PREP +A-DSF +P-GSM +PREP +T-DPN +A-DPN +ADV +A-GSF +N-GSF +CONJ +N-GSF +CONJ +N-GSF +CONJ +N-GSF +CONJ +A-GSN +N-GSN +V-PPP-GSN +PRT-N +ADV +PREP +T-DSM +N-DSM +D-DSM +CONJ +CONJ +PREP +T-DSM +V-PAP-DSM +CONJ +A-APN +V-AAI-3S +PREP +T-APM +N-APM +P-GSM +CONJ +P-ASM +V-AAI-3S +N-ASF +PREP +A-APN +T-DSF +N-DSF +R-NSF +V-PAI-3S +T-NSN +N-NSN +P-GSM +T-NSN +N-NSN +T-GSM +T-APN +A-APN +PREP +A-DPN +V-PMP-GSM +CONJ +P-2AP +V-PAP-APM +A-APM +T-DPN +N-DPN +CONJ +T-DPF +N-DPF +P-2GP +PREP +R-DPF +ADV +V-AAI-2P +PREP +T-ASM +N-ASM +T-GSM +N-GSM +D-GSM +PREP +T-ASM +N-ASM +T-GSF +N-GSF +T-GSM +N-GSM +T-GSN +N-GSN +T-GSN +ADV +V-PAP-GSN +PREP +T-DPM +N-DPM +T-GSF +N-GSF +PREP +R-DPM +CONJ +P-1NP +A-NPM +V-2API-1P +PRT +PREP +T-DPF +N-DPF +T-GSF +N-GSF +P-1GP +V-PAP-NPM +T-APN +N-APN +T-GSF +N-GSF +CONJ +T-GPF +N-GPF +CONJ +V-IMI-1P +N-NPN +N-GSF +N-DSF +ADV +CONJ +T-NPM +A-NPM +CONJ +T-NSM +N-NSM +A-NSM +V-PAP-NSM +PREP +N-DSN +PREP +T-ASF +A-ASF +N-ASF +P-GSM +R-ASF +V-AAI-3S +P-1AP +CONJ +V-PAP-APM +P-1AP +A-APM +T-DPN +N-DPN +V-AAI-3S +T-DSM +N-DSM +N-DSF +V-PAI-2P +V-RPP-NPM +CONJ +V-AAI-3S +CONJ +V-AAI-3S +PREP +T-DPN +A-DPN +PREP +N-DSM +N-DSM +CONJ +V-AMS-3S +PREP +T-DPM +N-DPM +T-DPM +V-PNP-DPM +T-ASN +V-PAP-ASN +N-ASN +T-GSF +N-GSF +P-GSM +PREP +N-DSF +PREP +P-1AP +PREP +N-DSM +N-DSM +CONJ +T-DSF +N-DSF +V-PAI-2P +V-RPP-NPM +PREP +N-GSF +CONJ +D-NSN +PRT-N +PREP +P-2GP +N-GSM +T-NSN +N-NSN +PRT-N +PREP +N-GPN +CONJ +PRT-N +X-NSM +V-ADS-3S +CONJ +V-PAI-1P +P-GSM +N-NSN +V-APP-NPM +PREP +N-DSM +N-DSM +PREP +N-DPN +A-DPN +R-DPN +V-AAI-3S +T-NSM +N-NSM +CONJ +PREP +P-DPN +V-AAS-1P +CONJ +V-PAM-2P +CONJ +PRT +P-2NP +T-NPN +N-NPN +PREP +N-DSF +T-NPM +V-PPP-NPM +N-NSF +PREP +T-GSF +V-PPP-GSF +N-GSF +PREP +N-DSF +A-GSF +CONJ +V-IAI-2P +T-DSM +N-DSM +D-DSM +ADV +N-GSM +V-RPP-NPM +T-GSF +N-GSF +T-GSM +N-PRI +CONJ +A-NPM +T-GPF +N-GPF +T-GSF +N-GSF +N-ASF +PRT-N +V-PAP-NPM +CONJ +A-NPM +PREP +T-DSM +N-DSM +CONJ +ADV +PREP +N-DSM +N-DSM +P-2NP +T-NPM +PRT +V-PAP-NPM +ADV +V-AOI-2P +ADV +PREP +T-DSN +N-DSN +T-GSM +N-GSM +CONJ +P-NSM +V-PAI-3S +T-NSF +N-NSF +P-1GP +T-NSM +V-AAP-NSM +T-APN +A-APN +A-ASN +CONJ +T-ASN +N-ASN +T-GSM +N-GSM +T-ASF +N-ASF +V-AAP-NSM +PREP +T-DSF +N-DSF +P-GSM +T-ASM +N-ASM +T-GPF +N-GPF +PREP +N-DPN +V-AAP-NSM +CONJ +T-APM +A-NUI +V-AAS-3S +PREP +F-3DSM +PREP +A-ASM +A-ASM +N-ASM +V-PAP-NSM +N-ASF +CONJ +V-AAS-3S +T-APM +A-APM +PREP +A-DSN +N-DSN +T-DSM +N-DSM +PREP +T-GSM +N-GSM +V-AAP-NSM +T-ASF +N-ASF +PREP +P-DSM +CONJ +V-2AAP-NSM +V-AMI-3S +N-ASF +P-2DP +T-DPM +ADV +CONJ +N-ASF +T-DPM +ADV +CONJ +PREP +P-GSM +V-PAI-1P +T-ASF +N-ASF +T-NPM +A-NPM +PREP +A-DSN +N-DSN +PREP +T-ASM +N-ASM +PRT +CONJ +ADV-N +V-PAI-2P +A-NPM +CONJ +A-NPM +CONJ +V-PAI-2P +N-NPM +T-GPM +A-GPM +CONJ +A-NPM +T-GSM +N-GSM +V-APP-NPM +PREP +T-DSM +N-DSM +T-GPM +N-GPM +CONJ +N-GPM +V-PAP-GSM +A-GSM +P-GSM +N-GSM +N-GSM +PREP +R-DSM +A-NSF +N-NSF +V-PPP-NSF +V-PAI-3S +PREP +N-ASM +A-ASM +PREP +N-DSM +PREP +R-DSM +CONJ +P-2NP +V-PPI-2P +PREP +N-ASN +T-GSM +N-GSM +PREP +N-DSN +D-GSN +PREP +P-1NS +N-NSM +T-NSM +N-NSM +T-GSM +N-GSM +N-GSM +PREP +P-2GP +T-GPN +N-GPN +COND +PRT +V-AAI-2P +T-ASF +N-ASF +T-GSF +N-GSF +T-GSM +N-GSM +T-GSF +V-APP-GSF +P-1DS +PREP +P-2AP +CONJ +PREP +N-ASF +V-API-3S +P-1DS +T-NSN +N-NSN +ADV +V-AAI-1S +PREP +A-DSM +PREP +R-ASN +V-PNI-2P +V-PAP-NPM +V-AAN +T-ASF +N-ASF +P-1GS +PREP +T-DSN +N-DSN +T-GSM +N-GSM +R-NSN +A-DPF +N-DPF +PRT-N +V-API-3S +T-DPM +N-DPM +T-GPM +N-GPM +ADV +ADV +V-API-3S +T-DPM +A-DPM +N-DPM +P-GSM +CONJ +N-DPM +PREP +N-DSN +V-PAN +T-APN +N-APN +A-APN +CONJ +A-APN +CONJ +A-APN +T-GSF +N-GSF +PREP +N-DSM +N-DSM +PREP +T-GSN +N-GSN +R-GSN +N-NSM +V-AOI-1S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +T-GSM +N-GSM +T-GSF +V-APP-GSF +P-1DS +PREP +T-ASF +N-ASF +T-GSF +N-GSF +P-GSM +P-1DS +T-DSM +A-DSM-C +A-GPM +A-GPM +V-API-3S +T-NSF +N-NSF +D-NSF +T-DPN +N-DPN +V-AMN +T-ASN +A-ASN +N-ASN +T-GSM +N-GSM +CONJ +V-AAN +I-NSF +T-NSF +N-NSF +T-GSN +N-GSN +T-GSN +V-RPP-GSN +PREP +T-GPM +N-GPM +PREP +T-DSM +N-DSM +T-DSM +T-APN +A-APN +V-AAP-DSM +CONJ +V-APS-3S +ADV +T-DPF +N-DPF +CONJ +T-DPF +N-DPF +PREP +T-DPN +A-DPN +PREP +T-GSF +N-GSF +T-NSF +A-NSF +N-NSF +T-GSM +N-GSM +PREP +N-ASF +T-GPM +N-GPM +R-ASF +V-AAI-3S +PREP +T-DSM +N-DSM +N-DSM +T-DSM +N-DSM +P-1GP +PREP +R-DSM +V-PAI-1P +T-ASF +N-ASF +CONJ +N-ASF +PREP +N-DSF +PREP +T-GSF +N-GSF +P-GSM +CONJ +V-PMI-1S +PRT-N +V-PAN +PREP +T-DPF +N-DPF +P-1GS +PREP +P-2GP +R-NSF +V-PAI-3S +N-NSF +P-2GP +D-GSN +PREP +V-PAI-1S +T-APN +N-APN +P-1GS +PREP +T-ASM +N-ASM +PREP +R-GSM +A-NSF +N-NSF +PREP +N-DPM +CONJ +PREP +N-GSF +V-PPI-3S +CONJ +V-2AAS-3S +P-2DP +PREP +T-ASN +N-ASN +T-GSF +N-GSF +P-GSM +N-DSF +V-APN +PREP +T-GSN +N-GSN +P-GSM +PREP +T-ASM +ADV +N-ASM +V-AAN +T-ASM +N-ASM +PREP +T-GSF +N-GSF +PREP +T-DPF +N-DPF +P-2GP +PREP +N-DSF +V-RPP-NPM +CONJ +V-RPP-NPM +CONJ +V-AAS-2P +V-2AMN +PREP +A-DPM +T-DPM +A-DPM +I-NSN +T-NSN +N-NSN +CONJ +N-NSN +CONJ +N-NSN +CONJ +N-NSN +PRT +V-2AAN +T-ASF +V-PAP-ASF +T-GSF +N-GSF +N-ASF +T-GSM +N-GSM +CONJ +V-APS-2P +PREP +A-ASN +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +T-DSM +V-PNP-DSM +V-AAN +ADV +PREP +A-APN +R-GPN +V-PMI-1P +PRT +V-PAI-1P +PREP +T-ASF +N-ASF +T-ASF +V-PMP-ASF +PREP +P-1DP +P-DSM +T-NSF +N-NSF +PREP +T-DSF +N-DSF +CONJ +PREP +N-DSM +N-DSM +PREP +A-APF +T-APF +N-APF +T-GSM +N-GSM +T-GPM +N-GPM +HEB +CONJ +V-PAI-1S +P-2AP +P-1NS +T-NSM +N-NSM +PREP +N-DSM +ADV +V-AAN +T-GSF +N-GSF +R-GSF +V-API-2P +PREP +A-GSF +N-GSF +CONJ +N-GSF +PREP +N-GSF +V-PNP-NPM +C-GPM +PREP +N-DSF +V-PAP-NPM +V-PAN +T-ASF +N-ASF +T-GSN +N-GSN +PREP +T-DSM +N-DSM +T-GSF +N-GSF +A-NSN +N-NSN +CONJ +A-NSN +N-NSN +ADV +CONJ +V-API-2P +PREP +A-DSF +N-DSF +T-GSF +N-GSF +P-2GP +A-NSM +N-NSM +A-NSF +N-NSF +A-NSN +N-NSN +A-NSM +N-NSM +CONJ +N-NSM +A-GPM +T-NSM +PREP +A-GPM +CONJ +PREP +A-GPM +CONJ +PREP +A-DPM +CONJ +A-DSM +A-DSM +P-1GP +V-API-3S +T-NSF +N-NSF +PREP +T-ASN +N-ASN +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-PAI-3S +V-2AAP-NSM +PREP +N-ASN +V-AAI-3S +N-ASF +V-AAI-3S +N-APN +T-DPM +N-DPM +CONJ +T-NSN +V-2AAI-3S +I-NSN +V-PAI-3S +COND +PRT-N +CONJ +CONJ +V-2AAI-3S +PREP +T-APN +A-APN-C +N-APN +T-GSF +N-GSF +T-NSM +V-2AAP-NSM +P-NSM +V-PAI-3S +CONJ +T-NSM +V-2AAP-NSM +ADV +A-GPM +T-GPM +N-GPM +CONJ +V-AAS-3S +T-APN +A-APN +CONJ +P-NSM +V-AAI-3S +PRT +T-APM +N-APM +CONJ +T-APM +N-APM +CONJ +T-APM +N-APM +CONJ +T-APM +N-APM +CONJ +N-APM +PREP +T-ASM +N-ASM +T-GPM +A-GPM +PREP +N-ASN +N-GSF +PREP +N-ASF +T-GSN +N-GSN +T-GSM +N-GSM +ADV +V-AAS-1P +T-NPM +A-NPM +PREP +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +T-GSM +N-GSM +T-GSM +N-GSM +PREP +N-ASM +A-ASM +PREP +N-ASN +N-GSF +T-GSN +N-GSN +T-GSM +N-GSM +CONJ +ADV-N +V-PAS-1P +A-NPM +V-PNP-NPM +CONJ +V-PPP-NPM +A-DSM +N-DSM +T-GSF +N-GSF +PREP +T-DSF +N-DSF +T-GPM +N-GPM +PREP +N-DSF +PREP +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +V-PAP-NPM +PREP +N-DSF +V-AAS-1P +T-APN +A-APN +PREP +P-ASM +R-NSM +V-PAI-3S +T-NSF +N-NSF +N-NSM +PREP +R-GSM +A-NSN +T-NSN +N-NSN +V-PPP-NSN +CONJ +V-PPP-NSN +PREP +A-GSF +N-GSF +T-GSF +N-GSF +PREP +N-ASF +PREP +N-DSN +A-GSM +A-GSM +N-GSN +T-ASF +N-ASF +T-GSN +N-GSN +V-PMI-3S +PREP +N-ASF +F-3GSM +PREP +N-DSF +CONJ +D-ASN +V-PAI-1S +CONJ +V-PNI-1S +PREP +N-DSM +ADV-N +P-2AP +V-PAN +ADV +CONJ +T-NPN +N-NPN +V-PAI-3S +PREP +N-DSF +T-GSM +N-GSM +P-GPN +V-RPP-NPM +V-PAP-NPM +T-DSF +N-DSF +V-RPP-NPM +T-GSF +N-GSF +T-GSM +N-GSM +PREP +T-ASF +N-ASF +T-ASF +V-PAP-ASF +PREP +P-DPM +PREP +T-ASF +N-ASF +T-GSF +N-GSF +P-GPM +R-NPM +V-RAP-NPM +F-3APM +V-AAI-3P +T-DSF +N-DSF +PREP +N-ASF +N-GSF +A-GSF +PREP +N-DSF +CONJ +P-2NP +PRT-N +ADV +V-2AAI-2P +T-ASM +N-ASM +COND +PRT +P-ASM +V-AAI-2P +CONJ +PREP +P-DSM +V-API-2P +ADV +V-PAI-3S +N-NSF +PREP +T-DSM +N-DSM +V-2AMN +P-2AP +PREP +T-ASF +A-ASF-C +N-ASF +T-ASM +A-ASM +N-ASM +T-ASM +V-PPP-ASM +PREP +T-APF +N-APF +T-GSF +N-GSF +CONJ +V-PPN +T-DSN +N-DSN +T-GSM +N-GSM +P-2GP +CONJ +V-AMN +T-ASM +A-ASM +N-ASM +T-ASM +PREP +N-ASM +V-APP-ASM +PREP +N-DSF +CONJ +N-DSF +T-GSF +N-GSF +CONJ +V-2AMP-NPM +T-ASN +N-ASN +V-PAM-2P +N-ASF +A-NSM +PREP +T-GSM +ADV +P-GSM +CONJ +V-PAI-1P +C-GPM +N-NPN +V-PPM-2P +CONJ +PRT-N +V-PAM-2P +T-NSM +N-NSM +PRT-N +V-PAM-3S +PREP +N-DSM +P-2GP +CONJ-N +V-PAM-2P +N-ASM +T-DSM +A-DSM +T-NSM +V-PAP-NSM +ADV-N +V-PAM-3S +CONJ +ADV +V-PAM-3S +V-PNP-NSM +T-DPF +A-DPF +N-DPF +T-ASN +A-ASN +CONJ +V-PAS-3S +V-PAN +T-DSM +N-ASF +V-PAP-DSM +A-NSM +N-NSM +A-NSM +PREP +T-GSN +N-GSN +P-2GP +PRT-N +V-PNM-3S +CONJ +COND +X-NSM +A-NSM +PREP +N-ASF +T-GSF +N-GSF +CONJ +V-2AAS-3S +N-ASF +T-DPM +V-PAP-DPM +CONJ +PRT-N +V-PAM-2P +T-ASN +N-ASN +T-ASN +A-ASN +T-GSM +N-GSM +PREP +R-DSN +V-API-2P +PREP +N-ASF +N-GSF +A-NSF +N-NSF +CONJ +N-NSM +CONJ +N-NSF +CONJ +N-NSF +CONJ +N-NSF +V-APM-3S +PREP +P-2GP +PREP +A-DSF +N-DSF +CONJ +V-PNM-2P +PREP +C-APM +A-NPM +A-NPM +V-PNP-NPM +F-2DPM +ADV +CONJ +T-NSM +N-NSM +PREP +N-DSM +V-ADI-3S +P-2DP +CONJ +V-PNM-2P +N-NPM +T-GSM +N-GSM +ADV +N-NPN +A-NPN +CONJ +V-PAM-2P +PREP +N-DSF +ADV +CONJ +T-NSM +N-NSM +V-AAI-3S +P-2AP +CONJ +V-AAI-3S +F-3ASM +PREP +P-1GP +N-ASF +CONJ +N-ASF +T-DSM +N-DSM +PREP +N-ASF +N-GSF +CONJ +N-NSF +CONJ +N-NSF +A-NSF +PRT +N-NSF +CONJ-N +V-PPM-3S +PREP +P-2DP +ADV +V-PAI-3S +A-DPM +CONJ +N-NSF +CONJ +N-NSF +PRT +N-NSF +R-NPN +PRT-N +V-IAI-3S +CONJ +ADV +N-NSF +CONJ +D-ASN +V-RAM-2P +V-PAP-NPM +CONJ +A-NSM +N-NSM +PRT +A-NSM +PRT +N-NSM +R-NSN +V-PAI-3S +N-NSM +PRT-N +V-PAI-3S +N-ASF +PREP +T-DSF +N-DSF +T-GSM +N-GSM +CONJ +N-GSM +A-NSM-N +P-2AP +V-PAM-3S +A-DPM +N-DPM +CONJ +PREP +D-APN +V-PNI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +T-APM +N-APM +T-GSF +N-GSF +CONJ +PRT-N +V-PNM-2P +A-NPM +P-GPM +CONJ +V-IAI-2P +PRT +N-NSN +CONJ +ADV +N-NSN +PREP +N-DSM +ADV +N-NPN +N-GSN +V-PAM-2P +CONJ +T-NSM +N-NSM +T-GSN +N-GSN +PREP +A-DSF +N-DSF +CONJ +N-DSF +CONJ +N-DSF +V-PAP-NPM +I-NSN +V-PAI-3S +A-NSN +T-DSM +N-DSM +CONJ +PRT-N +V-PAM-2P +T-DPN +N-DPN +T-DPN +A-DPN +T-GSN +N-GSN +CONJ +ADV +CONJ +V-PAM-2P +CONJ +T-NPN +ADV +V-PNP-APN +PREP +P-GPM +A-NSN +V-PAI-3S +CONJ +V-PAN +CONJ +T-NPN +A-NPN +V-PPP-NPN +PREP +T-GSN +N-GSN +V-PPI-3S +CONJ +A-NSN +T-NSN +V-PPP-NSN +N-NSN +V-PAI-3S +CONJ +V-PAI-3S +V-PAM-2S +T-NSM +V-PAP-NSM +CONJ +V-2AAM-2S +PREP +T-GPM +A-GPM +CONJ +V-FAI-3S +P-2DS +T-NSM +N-NSM +CONJ +V-PAM-2P +ADV +ADV +V-PAI-2P +PRT-N +ADV +A-NPM +CONJ +ADV +A-NPM +V-PMP-NPM +T-ASM +N-ASM +CONJ +T-NPF +N-NPF +A-NPF +V-PAI-3P +PREP +D-ASN +PRT-N +V-PNM-2P +A-NPM +CONJ +V-PAM-2P +I-NSN +T-NSN +N-NSN +T-GSM +N-GSM +CONJ +PRT-N +V-PPM-2P +N-DSM +PREP +R-DSM +V-PAI-3S +N-NSF +CONJ +V-PPM-2P +PREP +N-DSN +V-PAP-NPM +F-2DPM +N-DPM +CONJ +N-DPM +CONJ +N-DPF +A-DPF +V-PAP-NPM +CONJ +V-PAP-NPM +T-DSF +N-DSF +P-2GP +T-DSM +N-DSM +V-PAP-NPM +ADV +PREP +A-GPN +PREP +N-DSN +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-DSM +N-DSM +CONJ +N-DSM +V-PPP-NPM +C-DPM +PREP +N-DSM +N-GSM +T-NPF +N-NPF +T-DPM +A-DPM +N-DPM +ADV +T-DSM +N-DSM +CONJ +N-NSM +V-PAI-3S +N-NSF +T-GSF +N-GSF +ADV +CONJ +T-NSM +N-NSM +N-NSF +T-GSF +N-GSF +P-NSM +N-NSM +T-GSN +N-GSN +CONJ +ADV +T-NSF +N-NSF +V-PPI-3S +T-DSM +N-DSM +ADV +CONJ +T-NPF +N-NPF +T-DPM +N-DPM +PREP +A-DSN +T-NPM +N-NPM +V-PAM-2P +T-APF +N-APF +ADV +CONJ +T-NSM +N-NSM +V-AAI-3S +T-ASF +N-ASF +CONJ +F-3ASM +V-AAI-3S +PREP +P-GSF +CONJ +P-ASF +V-AAS-3S +V-AAP-NSM +T-DSN +N-DSN +T-GSN +N-GSN +PREP +N-DSN +CONJ +V-AAS-3S +P-NSM +F-3DSM +T-ASF +N-ASF +A-ASF +PRT-N +V-PAP-ASF +N-ASM +PRT +N-ASF +PRT +X-ASN +T-GPN +D-GPN +CONJ +CONJ +V-PAS-3S +A-NSF +CONJ +A-NSF +ADV +V-PAI-3P +CONJ +T-NPM +N-NPM +V-PAN +T-APF +F-3GPM +N-APF +ADV +T-APN +F-3GPM +N-APN +T-NSM +V-PAP-NSM +T-ASF +F-3GSM +N-ASF +F-3ASM +V-PAI-3S +CONJ +A-NSM-N +PRT +T-ASF +F-3GSM +N-ASF +V-AAI-3S +CONJ +V-PAI-3S +CONJ +V-PAI-3S +P-ASF +ADV +CONJ +T-NSM +N-NSM +T-ASF +N-ASF +CONJ +V-PAI-1P +N-NPN +T-GSN +N-GSN +P-GSM +PREP +D-GSN +V-FAI-3S +N-NSM +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +V-FPI-3S +PREP +T-ASF +N-ASF +P-GSM +CONJ +V-FDI-3P +T-NPM +A-NUI +PREP +N-ASF +A-ASF +T-NSN +N-NSN +D-NSN +A-NSN +V-PAI-3S +CONJ +P-1NS +V-PAI-1S +PREP +N-ASM +CONJ +PREP +T-ASF +N-ASF +ADV +CONJ +P-2NP +T-NPM +PREP +A-ASM +A-NSM +T-ASF +F-3GSM +N-ASF +ADV +V-PAM-3S +ADV +F-3ASM +CONJ +T-NSF +N-NSF +CONJ +V-PNS-3S +T-ASM +N-ASM +T-NPN +N-NPN +V-PAM-2P +T-DPM +N-DPM +P-2GP +PREP +N-DSM +CONJ +D-NSN +V-PAI-3S +A-NSN +V-PAM-2S +T-ASM +N-ASM +P-2GS +CONJ +T-ASF +N-ASF +R-NSF +V-PAI-3S +N-NSF +A-NSF-S +PREP +N-DSF +CONJ +ADV +P-2DS +V-2ADS-3S +CONJ +V-FDI-2S +A-NSM +PREP +T-GSF +N-GSF +CONJ +T-NPM +N-NPM +PRT-N +V-PAM-2P +T-APN +N-APN +P-2GP +CONJ +V-PAM-2P +P-APN +PREP +N-DSF +CONJ +N-DSF +N-GSM +T-NPM +N-NPM +V-PAM-2P +T-DPM +PREP +N-ASF +N-DPM +PREP +N-GSM +CONJ +N-GSM +PREP +N-DSF +T-GSF +N-GSF +P-2GP +ADV +T-DSM +N-DSM +PRT-N +PREP +N-ASF +ADV +A-NPM +CONJ +ADV +N-NPM +N-GSM +V-PAP-NPM +T-ASN +N-ASN +T-GSM +N-GSM +PREP +N-GSF +PREP +N-GSF +V-PAP-NPM +ADV +T-DSM +N-DSM +CONJ +PRT-N +N-DPM +V-RAP-NPM +CONJ +COND +A-NSM +X-ASN +A-ASN +V-AAS-3S +D-ASN +V-FDI-3S +PREP +N-GSM +CONJ +N-NSM +CONJ +A-NSM +CONJ +T-NPM +N-NPM +T-APN +P-APN +V-PAM-2P +PREP +P-APM +V-PAP-NPM +T-ASF +N-ASF +V-RAP-NPM +CONJ +CONJ +P-GPM +CONJ +P-2GP +T-NSM +N-NSM +V-PAI-3S +PREP +N-DPM +CONJ +N-NSF +PRT-N +V-PAI-3S +PREP +P-DSM +T-GSN +A-GSN +V-PPM-2P +PREP +N-DSM +CONJ +PREP +T-DSN +N-DSN +T-GSF +N-GSF +P-GSM +V-AMM-2P +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-ASN +V-PNN +P-2AP +V-2AAN +PREP +T-APF +N-APF +T-GSM +A-GSM +CONJ +V-PAI-3S +P-1DP +T-NSF +N-NSF +PRT-N +PREP +N-ASN +CONJ +N-ASF +CONJ +PREP +T-APF +N-APF +PREP +T-APF +N-APF +PREP +T-APM +N-APM +T-GSN +N-GSN +D-GSM +PREP +T-APN +A-APN +T-GSF +N-GSF +PREP +T-DPN +A-DPN +PREP +D-ASN +V-2AAM-2P +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +V-AOS-2P +V-2AAN +PREP +T-DSF +N-DSF +T-DSF +A-DSF +CONJ +A-APN +V-ADP-NPM +V-2AAN +CONJ +V-2AAM-2P +V-AMP-NPM +T-ASF +N-ASF +P-2GP +PREP +N-DSF +CONJ +V-AMP-NPM +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +V-AMP-NPM +T-APM +N-APM +PREP +N-DSF +T-GSN +N-GSN +T-GSF +N-GSF +PREP +A-DPN +V-2AAP-NPM +T-ASM +N-ASM +T-GSF +N-GSF +PREP +R-DSM +V-FDI-2P +A-APN +T-APN +N-APN +T-GSM +A-GSM +T-APN +V-RPP-APN +V-AAN +CONJ +V-ADM-2P +T-ASF +N-ASF +T-GSN +A-GSN +CONJ +T-ASF +N-ASF +T-GSN +N-GSN +R-NSN +V-PAI-3S +N-NSN +N-GSM +PREP +A-GSF +N-GSF +CONJ +N-GSF +V-PNP-NPM +PREP +A-DSM +N-DSM +PREP +N-DSN +CONJ +PREP +P-ASN +V-PAP-NPM +PREP +A-DSF +N-DSF +CONJ +N-DSF +PREP +A-GPM +T-GPM +A-GPM +CONJ +PREP +P-1GS +CONJ +P-1DS +V-APS-3S +N-NSM +PREP +N-DSF +T-GSN +N-GSN +P-1GS +PREP +N-DSF +V-AAN +T-ASN +N-ASN +T-GSN +N-GSN +PREP +R-GSN +V-PAI-1S +PREP +N-DSF +CONJ +PREP +P-DSN +V-ADS-1S +ADV +V-PAI-3S +P-1AS +V-AAN +CONJ +CONJ +V-RAS-2P +CONJ +P-2NP +T-APN +PREP +P-1AS +I-ASN +V-PAI-1S +A-APN +V-FAI-3S +P-2DP +N-NSM +T-NSM +A-NSM +N-NSM +CONJ +A-NSM +N-NSM +PREP +N-DSM +R-ASM +V-AAI-1S +PREP +P-2AP +PREP +P-ASN +D-ASN +CONJ +V-2AAS-2P +T-APN +PREP +P-1GP +CONJ +V-AAS-3S +T-APF +N-APF +P-2GP +T-DPM +N-DPM +N-NSF +CONJ +N-NSF +PREP +N-GSF +PREP +N-GSM +N-GSM +CONJ +N-GSM +N-GSM +N-GSM +T-NSF +N-NSF +PREP +A-GPM +T-GPM +V-PAP-GPM +T-ASM +N-ASM +P-1GP +N-ASM +N-ASM +PREP +N-DSF +N-NSM +CONJ +N-NSM +N-NPM +N-GSM +N-GSM +A-DPM +T-DPM +A-DPM +PREP +N-DSM +N-DSM +T-DPM +V-PAP-DPM +PREP +N-DPM +PREP +N-DPM +CONJ +N-DPM +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +V-PAI-1S +T-DSM +N-DSM +P-1GS +PREP +A-DSF +T-DSF +N-DSF +P-2GP +ADV +PREP +A-DSF +N-DSF +P-1GS +PREP +A-GPM +P-2GP +PREP +N-GSF +T-ASF +N-ASF +V-PMP-NSM +PREP +T-DSF +N-DSF +P-2GP +PREP +T-ASN +N-ASN +PREP +T-GSF +A-GSF-S +N-GSF +ADV +T-GSM +ADV +V-2RAP-NSM +P-ASN +D-ASN +CONJ +T-NSM +V-ADP-NSM +PREP +P-2DP +N-ASN +A-ASN +V-FAI-3S +ADV +N-GSF +N-GSM +N-GSM +ADV +V-PAI-3S +A-NSN +P-1DS +D-ASN +V-PAN +PREP +A-GPM +P-2GP +PREP +T-ASN +V-PAN +P-1AS +PREP +T-DSF +N-DSF +P-2AP +PRT +PREP +T-DPM +N-DPM +P-1GS +CONJ +PREP +T-DSF +N-DSF +CONJ +N-DSF +T-GSN +N-GSN +N-APM +P-1GS +T-GSF +N-GSF +A-APM +P-2AP +V-PAP-APM +CONJ +N-NSM +P-1GS +T-NSM +N-NSM +ADV +V-PAI-1S +A-APM +P-2AP +PREP +N-DPN +N-GSM +N-GSM +CONJ +D-ASN +V-PNI-1S +CONJ +T-NSF +N-NSF +P-2GP +ADV +ADV +CONJ +ADV +V-PAS-3S +PREP +N-DSF +CONJ +A-DSF +N-DSF +PREP +T-ASN +V-PAN +P-2AP +T-APN +V-PAP-APN +CONJ +V-PAS-2P +A-NPM +CONJ +A-NPM +PREP +N-ASF +N-GSM +V-RPP-NPM +N-ASM +N-GSF +T-ASM +PREP +N-GSM +N-GSM +PREP +N-ASF +CONJ +N-ASM +N-GSM +CONJ +N-VPM +V-PNI-1S +V-PAN +P-2AP +CONJ +T-NPN +PREP +P-1AS +ADV +PREP +N-ASF +T-GSN +N-GSN +V-2RAI-3S +CONJ +T-APM +N-APM +P-1GS +A-APM +PREP +N-DSM +V-2ADN +PREP +A-DSN +T-DSN +N-DSN +CONJ +T-DPM +A-DPM +A-DPM +CONJ +T-APM +A-APM-C +T-GPM +N-GPM +PREP +N-DSM +V-2RAP-APM +T-DPM +N-DPM +P-1GS +ADV-C +V-PAN +ADV +T-ASM +N-ASM +T-GSM +N-GSM +V-PAN +PRT +X-NPM +CONJ +PREP +N-ASM +CONJ +N-ASF +CONJ +X-NPM +CONJ +PREP +N-ASF +T-ASM +N-ASM +V-PAI-3P +PRT +T-NPM +PREP +N-GSF +V-RAP-NPM +CONJ +PREP +N-ASF +T-GSN +N-GSN +V-PNI-1S +CONJ +T-NPM +PREP +N-GSF +T-ASM +N-ASM +V-PAI-3P +PRT-N +ADV +V-PNP-NPM +N-ASF +V-PAN +T-DPM +N-DPM +P-1GS +CONJ +I-NSN +ADV +CONJ +A-DSM +N-DSM +CONJ +N-DSF +CONJ +N-DSF +N-NSM +V-PPI-3S +CONJ +PREP +D-DSN +V-PAI-1S +CONJ +CONJ +V-2FOI-1S +CONJ +V-RAI-1S +CONJ +D-NSN +P-1DS +V-FDI-3S +PREP +N-ASF +PREP +T-GSF +P-2GP +N-GSF +CONJ +N-GSF +T-GSN +N-GSN +N-GSM +N-GSM +PREP +T-ASF +N-ASF +CONJ +N-ASF +P-1GS +CONJ +PREP +A-DSN-N +V-FPI-1S +CONJ +PREP +A-DSF +N-DSF +ADV +ADV +CONJ +ADV +V-FPI-3S +N-NSM +PREP +T-DSN +N-DSN +P-1GS +CONJ +PREP +N-GSF +CONJ +PREP +N-GSM +CONJ +P-1DS +T-NSN +V-PAN +N-NSM +CONJ +T-NSN +V-2AAN +N-NSN +CONJ +COND +T-NSN +V-PAN +PREP +N-DSF +D-NSN +P-1DS +N-NSM +N-GSN +CONJ +I-ASN +V-FMI-1S +PRT-N +V-PAI-1S +CONJ +V-PPI-1S +PREP +T-GPN +A-NUI +T-ASF +N-ASF +V-PAP-NSM +PREP +T-ASN +V-AAN +CONJ +PREP +N-DSM +V-PAN +CONJ +A-DSN +ADV +A-NSN-C +CONJ +T-NSN +V-PAN +T-DSF +N-DSF +A-NSN-C +PREP +P-2AP +CONJ +D-ASN +V-2RAP-NSM +V-RAI-1S +CONJ +V-FAI-1S +CONJ +V-FAI-1S +A-DPM +P-2DP +PREP +T-ASF +P-2GP +N-ASF +CONJ +N-ASF +T-GSF +N-GSF +CONJ +T-NSN +N-NSN +P-2GP +V-PAS-3S +PREP +N-DSM +N-DSM +PREP +P-1DS +PREP +T-GSF +S-1SGSF +N-GSF +ADV +PREP +P-2AP +ADV +ADV +T-GSN +N-GSN +T-GSM +N-GSM +V-PNM-2P +CONJ +CONJ +V-2AAP-NSM +CONJ +V-2AAP-NSM +P-2AP +CONJ +V-PAP-NSM +V-PAS-1S +T-APN +PREP +P-2GP +CONJ +V-PAI-2P +PREP +A-DSN +N-DSN +A-DSF +N-DSF +V-PAP-NPM +T-DSF +N-DSF +T-GSN +N-GSN +CONJ +PRT-N +V-PPP-NPM +PREP +A-DSN-N +PREP +T-GPM +V-PNP-GPM +R-NSF +V-PAI-3S +P-DPM +N-NSF +N-GSF +CONJ +P-2GP +N-GSF +CONJ +D-NSN +PREP +N-GSM +CONJ +P-2DP +V-API-3S +T-NSN +PREP +N-GSM +PRT-N +ADV +T-NSN +PREP +P-ASM +V-PAN +CONJ +CONJ +T-NSN +PREP +P-GSM +V-PAN +V-PAP-NPM +T-ASM +P-ASM +N-ASM +K-ASM +V-2AAI-2P +PREP +P-1DS +CONJ +ADV +V-PAI-2P +PREP +P-1DS +CONJ +COND +X-NSF +N-NSF +PREP +N-DSM +COND +X-NSN +N-NSN +N-GSF +COND +X-NSF +N-NSF +N-GSN +COND +X-NSM +N-NPN +CONJ +N-NPM +V-AAM-2P +P-1GS +T-ASF +N-ASF +CONJ +T-ASN +P-ASN +V-PAS-2P +T-ASF +P-ASF +N-ASF +V-PAP-NPM +A-NPM +T-ASN +A-ASN +V-PAP-NPM +A-ASN-N +PREP +N-ASF +CONJ-N +PREP +N-ASF +CONJ +T-DSF +N-DSF +C-APM +V-PNP-NPM +V-PAP-APM +F-2GPM +PRT-N +T-APN +F-2GPM +A-NPM +V-PAP-NPM +CONJ +CONJ +T-APN +A-GPM +A-NPM +D-ASN +V-PAM-2P +PREP +P-2DP +R-NSN +CONJ +PREP +N-DSM +N-DSM +R-NSM +PREP +N-DSF +N-GSM +V-PAP-NSM +PRT-N +N-ASM +V-ADI-3S +T-ASN +V-PAN +A-APN +N-DSM +CONJ +F-3ASM +V-AAI-3S +N-ASF +N-GSM +V-2AAP-NSM +PREP +N-DSN +N-GPM +V-2ADP-NSM +CONJ +N-DSN +V-APP-NSM +ADV +N-NSM +V-AAI-3S +F-3ASM +V-2ADP-NSM +A-NSM +ADV +N-GSM +CONJ +N-GSM +N-GSM +CONJ +CONJ +T-NSM +N-NSM +P-ASM +V-AAI-3S +CONJ +V-ADI-3S +P-DSM +T-ASN +N-ASN +T-ASN +PREP +A-ASN +N-ASN +CONJ +PREP +T-DSN +N-DSN +N-GSM +V-AAS-3S +A-NSN +N-NSN +A-GPM +CONJ +A-GPN +CONJ +A-GPM +CONJ +A-NSF +N-NSF +V-AMS-3S +CONJ +N-NSM +N-NSM +N-NSM +PREP +N-ASF +N-GSM +N-GSM +CONJ +A-VPM +P-1GS +ADV +ADV +V-AAI-2P +ADV +PRT-N +PREP +T-DSF +N-DSF +P-1GS +ADV +CONJ +ADV +A-DSN +ADV +PREP +T-DSF +N-DSF +P-1GS +PREP +N-GSM +CONJ +N-GSM +T-ASF +F-2GPM +N-ASF +V-PNM-2P +CONJ +N-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +P-2DP +CONJ +T-ASN +V-PAN +CONJ +T-ASN +V-PAN +PREP +T-GSF +N-GSF +A-APN +V-PAM-2P +ADV +N-GPM +CONJ +N-GPM +CONJ +V-2ADS-2P +A-NPM +CONJ +A-NPM +N-NPN +N-GSM +A-NPN +A-ASN +N-GSF +A-GSF +CONJ +V-RPP-GSF +PREP +R-DPM +V-PPI-2P +ADV +N-NPM +PREP +N-DSM +N-ASM +N-GSF +V-PAP-NPM +PREP +N-ASN +P-1DS +PREP +N-ASF +N-GSM +CONJ +PRT-N +PREP +A-ASN +V-2AAI-1S +CONJ-N +PREP +A-ASN +V-AAI-1S +CONJ +COND +CONJ +V-PPI-1S +PREP +T-DSF +N-DSF +CONJ +N-DSF +T-GSF +N-GSF +P-2GP +V-PAI-1S +CONJ +V-PAI-1S +A-DPM +P-2DP +CONJ +T-ASN +P-ASN +CONJ +P-2NP +V-PAM-2P +CONJ +V-PAM-2P +P-1DS +CONJ +V-PAI-1S +PREP +N-DSM +N-DSM +N-ASM +ADV +V-AAN +P-2DP +CONJ +P-1NS-K +V-PAS-1S +V-2AAP-NSM +T-APN +PREP +P-2GP +CONJ +A-ASM-N +A-ASM +V-PAI-1S +R-NSM +ADV +T-APN +PREP +P-2GP +V-FAI-3S +CONJ +T-NPM +A-NPM +T-APN +F-3GPM +V-PAI-3P +PRT-N +T-APN +N-GSM +N-GSM +CONJ +T-ASF +N-ASF +P-GSM +V-PAI-2P +CONJ +ADV +N-DSM +N-NSN +PREP +P-1DS +V-AAI-3S +PREP +T-ASN +N-ASN +CONJ +PRT +V-PAI-1S +D-ASM +V-AAN +ADV +PRT +V-2AAS-1S +T-APN +PREP +P-1AS +ADV +CONJ +V-2RAI-1S +PREP +N-DSM +CONJ +CONJ +P-NSM +ADV +V-FDI-1S +CONJ +V-ADI-1S +A-ASN +N-ASM +T-ASM +N-ASM +CONJ +A-ASM +CONJ +N-ASM +P-1GS +CONJ +P-2GP +N-ASM +CONJ +N-ASM +T-GSF +N-GSF +P-1GS +V-AAN +PREP +P-2AP +CONJ +V-PAP-NSM +V-IAI-3S +A-APM +P-2AP +CONJ +V-PAP-NSM +CONJ +V-AAI-2P +CONJ +V-AAI-3S +CONJ +CONJ +V-AAI-3S +ADV +N-DSM +CONJ +T-NSM +N-NSM +V-AAI-3S +P-ASM +CONJ +PRT-N +P-ASM +A-ASM +CONJ +CONJ +P-1AS +CONJ +PRT-N +N-ASF +PREP +N-ASF +V-2AAS-1S +CONJ +ADV-C +V-AAI-1S +P-ASM +CONJ +V-2AAP-NPM +P-ASM +ADV +V-2AOS-2P +P-1NS-K +A-NSM-C +V-PAS-1S +CONJ +V-PNM-2P +P-ASM +PREP +N-DSM +PREP +A-GSF +N-GSF +CONJ +T-APM +D-APM +A-APM +V-PAM-2P +CONJ +PREP +T-ASN +N-ASN +N-GSM +ADV +N-GSM +V-AAI-3S +V-ADP-NSM +T-DSF +N-DSF +CONJ +V-AAS-3S +T-ASN +P-2GP +N-ASN +T-GSF +PREP +P-1AS +N-GSF +N-VPM +P-1GS +T-ASN +A-ASN +V-PAM-2P +PREP +N-DSM +T-APN +P-APN +V-PAN +P-2DP +PRT +P-1DS +PRT-N +A-NSN +CONJ +P-2DP +A-NSN +V-PAM-2P +T-APM +N-APM +V-PAM-2P +T-APM +A-APM +N-APM +V-PAM-2P +T-ASF +N-ASF +CONJ +V-PAI-1P +T-NSF +N-NSF +P-1NP +T-NPM +N-DSN +N-GSM +V-PAP-NPM +CONJ +V-PNP-NPM +PREP +N-DSM +N-DSM +CONJ +PRT-N +PREP +N-DSF +V-2RAP-NPM +CONJ +P-1NS +V-PAP-NSM +N-ASF +CONJ +PREP +N-DSF +COND +X-NSM +A-NSM +V-PAI-3S +V-2RAN +PREP +N-DSF +P-1NS +ADV +N-DSF +A-NSM +PREP +N-GSN +N-PRI +N-GSF +N-PRI +A-NSM +PREP +A-GPM +PREP +N-ASM +N-NSM +PREP +N-ASN +V-PAP-NSM +T-ASF +N-ASF +PREP +N-ASF +T-ASF +PREP +N-DSM +V-2ADP-NSM +A-NSM +CONJ +R-NPN +V-IAI-3S +P-1DS +N-NPN +D-APN +V-RNI-1S +PREP +T-ASM +N-ASM +N-ASF +CONJ +PRT +CONJ +PRT +CONJ +V-PNI-1S +A-APN +N-ASF +V-PAN +PREP +T-ASN +V-PAP-ASN +T-GSF +N-GSF +N-GSM +N-GSM +T-GSM +N-GSM +P-1GS +PREP +R-ASM +T-APN +A-APN +V-API-1S +CONJ +V-PNI-1S +N-APN +CONJ +N-ASM +V-AAS-1S +CONJ +V-APS-1S +PREP +P-DSM +V-PAP-NSM +PRT-N +S-1SASF +N-ASF +T-ASF +PREP +N-GSM +CONJ +T-ASF +PREP +N-GSF +N-GSM +T-ASF +PREP +N-GSM +N-ASF +PREP +T-DSF +N-DSF +T-GSN +V-2AAN +P-ASM +CONJ +T-ASF +N-ASF +T-GSF +N-GSF +P-GSM +CONJ +N-ASF +N-GPN +P-GSM +V-PPP-NSM +T-DSM +N-DSM +P-GSM +COND +ADV-I +V-AAS-1S +PREP +T-ASF +N-ASF +T-ASF +PREP +A-GPM +PRT-N +CONJ +ADV +V-2AAI-1S +PRT +ADV +V-RPI-1S +CONJ +V-PAI-1S +COND +CONJ +V-2AAS-1S +PREP +R-DSN +CONJ +V-API-1S +PREP +N-GSM +N-GSM +N-VPM +P-1NS +ADV-N +V-PNI-1S +F-1ASM +V-2RAN +CONJ +A-ASN +PRT +T-APN +ADV +V-PNP-NSM +CONJ +T-DPN +ADV +V-PNP-NSM +PREP +N-ASM +V-PAI-1S +PREP +T-ASN +N-ASN +T-GSF +ADV +N-GSF +T-GSM +N-GSM +PREP +N-DSM +N-DSM +CONJ +K-NPM +A-NPM +D-ASN +V-PAS-1P +CONJ +COND +X-ASN +ADV +V-PAI-2P +CONJ +D-ASN +T-NSM +N-NSM +P-2DP +V-FAI-3S +ADV +PREP +R-ASN +V-AAI-1P +T-DSM +P-DSM +V-PAN +N-VPM +N-NPM +P-1GS +V-PNM-2P +CONJ +V-PAM-2P +T-APM +ADV +V-PAP-APM +ADV +V-PAI-2P +N-ASM +P-1AP +CONJ +A-NPM +V-PAI-3P +R-APM +ADV +V-IAI-1S +P-2DP +CONJ +ADV +CONJ +V-PAP-NSM +V-PAI-1S +T-APM +A-APM +T-GSM +N-GSM +T-GSM +N-GSM +R-GPM +T-NSN +N-NSN +N-NSF +R-GPM +T-NSM +N-NSM +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +PREP +T-DSF +N-DSF +P-GPM +T-NPM +T-APN +A-APN +V-PAP-NPM +CONJ +P-1GP +T-NSN +N-NSN +PREP +N-DPM +V-PAI-3S +PREP +R-GSM +CONJ +V-PNI-1P +N-ASM +N-ASM +N-ASM +N-ASM +R-NSM +V-FAI-3S +T-ASN +N-ASN +T-GSF +N-GSF +P-1GP +A-ASN +T-DSN +N-DSN +T-GSF +N-GSF +P-GSM +PREP +T-ASF +N-ASF +T-GSN +V-PNN +P-ASM +CONJ +V-AAN +P-DSM +T-APN +A-APN +CONJ +N-VPM +P-1GS +A-VPM +CONJ +A-VPM +N-NSF +CONJ +N-NSM +P-1GS +ADV +V-PAM-2P +PREP +N-DSM +A-VPM +N-ASF +V-PAI-1S +CONJ +N-ASF +V-PAI-1S +T-ASN +P-ASN +V-PAN +PREP +N-DSM +PRT +V-PAI-1S +CONJ +P-2AS +A-VSM +A-VSM +V-PMM-2S +P-DPF +R-NPF +PREP +T-DSN +N-DSN +V-AAI-3P +P-1DS +PREP +CONJ +N-GSM +CONJ +T-GPM +A-GPM +A-GPM +P-1GS +R-GPM +T-NPN +N-NPN +PREP +N-DSF +N-GSF +V-PAM-2P +PREP +N-DSM +ADV +ADV +V-FAI-1S +V-PAM-2P +T-NSN +A-NSN +P-2GP +V-APM-3S +A-DPM +N-DPM +T-NSM +N-NSM +ADV +A-ASN-N +V-PAM-2P +CONJ +PREP +A-DSN +T-DSF +N-DSF +CONJ +T-DSF +N-DSF +PREP +N-GSF +T-NPN +N-NPN +P-2GP +V-PPM-3S +PREP +T-ASM +N-ASM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +T-NSF +V-PAP-NSF +A-ASM +N-ASM +V-FAI-3S +T-APF +N-APF +P-2GP +CONJ +T-APN +N-APN +P-2GP +PREP +N-DSM +N-DSM +N-VPM +T-ASN +A-ASN +K-NPN +V-PAI-3S +A-NPN +K-NPN +A-NPN +K-NPN +A-NPN +K-NPN +A-NPN +K-NPN +A-NPN +K-NPN +A-NPN +COND +X-NSF +N-NSF +CONJ +COND +X-NSM +N-NSM +D-APN +V-PNM-2P +R-APN +CONJ +V-2AAI-2P +CONJ +V-2AAI-2P +CONJ +V-AAI-2P +CONJ +V-2AAI-2P +PREP +P-1DS +D-APN +V-PAM-2P +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +V-FDI-3S +PREP +P-2GP +CONJ +V-2AOI-1S +PREP +N-DSM +ADV +CONJ +ADV +PRT +V-2AAI-2P +T-ASN +PREP +P-1GS +V-PAN +PREP +R-DSN +CONJ +V-IAI-2P +CONJ +V-INI-2P +PRT-N +CONJ +PREP +N-ASF +V-PAI-1S +CONJ +P-1NS +V-2AAI-1S +PREP +R-DPM +V-PAI-1S +A-NSM +V-PAN +V-RAI-1S +CONJ +V-PPN +V-RAI-1S +CONJ +V-PAN +PREP +A-DSM +CONJ +PREP +A-DPM +V-RPI-1S +CONJ +V-PPN +CONJ +V-PAN +CONJ +V-PAN +CONJ +V-PPN +A-APN +V-PAI-1S +PREP +T-DSM +V-PAP-DSM +P-1AS +ADV +ADV +V-AAI-2P +V-AAP-NPM +P-1GS +T-DSF +N-DSF +CONJ +N-VPM +V-RAI-2P +CONJ +P-2NP +CONJ +ADV +V-2AAI-1S +PREP +N-GSF +PREP +N-DSF +T-GSN +N-GSN +A-NSF-N +N-NSF +P-1DS +V-AAI-3S +PREP +N-ASM +N-GSF +CONJ +N-GSF +COND +PRT-N +P-2NP +A-NPM +CONJ +CONJ +PREP +N-DSF +CONJ +ADV +CONJ +ADV +PREP +T-ASF +N-ASF +P-1DS +V-AAI-2P +PRT-N +CONJ +V-PAI-1S +T-ASN +N-ASN +CONJ +V-PAI-1S +T-ASM +N-ASM +T-ASM +V-PAP-ASM +PREP +N-ASM +P-2GP +CONJ +V-PAI-1S +A-APN +CONJ +V-PAI-1S +V-RPI-1S +V-ADP-NSM +PREP +N-GSM +T-APN +PREP +P-2GP +N-ASF +N-GSF +N-ASF +A-ASF +A-ASF +T-DSM +N-DSM +CONJ +T-NSM +N-NSM +P-1GS +V-FAI-3S +A-ASF +N-ASF +P-2GP +PREP +T-ASN +N-ASN +P-GSM +PREP +N-DSF +PREP +N-DSM +N-DSM +CONJ +T-DSM +N-DSM +CONJ +N-DSM +P-1GP +T-NSF +N-NSF +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +V-ADM-2P +A-ASM +A-ASM +PREP +N-DSM +N-DSM +V-PNI-3P +P-2AP +T-NPM +PREP +P-1DS +N-NPM +V-PNI-3P +P-2AP +A-NPM +T-NPM +A-NPM +CONJ +ADV-S +T-NPM +PREP +T-GSF +N-GSM +N-GSF +T-NSF +N-NSF +T-GSM +N-GSM +N-GSM +N-GSM +PREP +T-GSN +N-GSN +P-2GP +N-NSM +N-NSM +N-GSM +N-GSM +PREP +N-GSN +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +T-DPM +PREP +N-DPF +A-DPM +CONJ +A-DPM +N-DPM +PREP +N-DSM +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +V-PAI-1P +T-DSM +N-DSM +N-DSM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +ADV +PREP +P-2GP +V-PNP-NPM +V-AAP-NPM +T-ASF +N-ASF +P-2GP +PREP +N-DSM +N-DSM +CONJ +T-ASF +N-ASF +R-ASF +V-PAI-2P +PREP +A-APM +T-APM +A-APM +PREP +T-ASF +N-ASF +T-ASF +V-PNP-ASF +P-2DP +PREP +T-DPM +N-DPM +R-ASF +V-AAI-2P +PREP +T-DSM +N-DSM +T-GSF +N-GSF +T-GSN +N-GSN +T-GSN +V-PAP-GSN +PREP +P-2AP +ADV +CONJ +PREP +A-DSM +T-DSM +N-DSM +V-PAI-3S +V-PMP-NSN +CONJ +V-PPP-NSN +ADV +CONJ +PREP +P-2DP +PREP +R-GSF +N-GSF +V-AAI-2P +CONJ +V-2AAI-2P +T-ASF +N-ASF +T-GSM +N-GSM +PREP +N-DSF +ADV +V-2AAI-2P +PREP +N-GSM +T-GSM +A-GSM +N-GSM +P-1GP +R-NSM +V-PAI-3S +A-NSM +PREP +P-2GP +N-NSM +T-GSM +N-GSM +T-NSM +CONJ +V-AAP-NSM +P-1DP +T-ASF +P-2GP +N-ASF +PREP +N-DSN +PREP +D-ASN +CONJ +P-1NP +PREP +R-GSF +N-GSF +V-AAI-1P +PRT-N +V-PMI-1P +PREP +P-2GP +V-PNP-NPM +CONJ +V-PMP-NPM +CONJ +V-APS-2P +T-ASF +N-ASF +T-GSN +N-GSN +P-GSM +PREP +A-DSF +N-DSF +CONJ +N-DSF +A-DSF +V-AAN +ADV +T-GSM +N-GSM +PREP +A-ASF +N-ASF +PREP +A-DSN +N-DSN +A-DSN +V-PAP-NPM +CONJ +V-PPP-NPM +T-DSF +N-DSF +T-GSM +N-GSM +PREP +A-DSF +N-DSF +V-PPP-NPM +PREP +T-ASN +N-ASN +T-GSF +N-GSF +P-GSM +PREP +A-ASF +N-ASF +CONJ +N-ASF +PREP +N-GSF +V-PAP-NPM +T-DSM +N-DSM +T-DSM +V-AAP-DSM +P-2AP +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-GPM +A-GPM +PREP +T-DSN +N-DSN +R-NSM +V-ANI-3S +P-1AP +PREP +T-GSF +N-GSF +T-GSN +N-GSN +CONJ +V-AAI-3S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-GSF +N-GSF +P-GSM +PREP +R-DSM +V-PAI-1P +T-ASF +N-ASF +T-ASF +N-ASF +T-GPF +N-GPF +R-NSM +V-PAI-3S +N-NSF +T-GSM +N-GSM +T-GSM +A-GSM +A-NSM-S +A-GSF +N-GSF +CONJ +PREP +P-DSM +V-API-3S +T-NPN +A-NPN +PREP +T-DPM +N-DPM +CONJ +PREP +T-GSF +N-GSF +T-NPN +A-NPN +CONJ +T-NPN +A-NPN +CONJ +N-NPM +CONJ +N-NPF +CONJ +N-NPF +CONJ +N-NPF +T-NPN +A-NPN +PREP +P-GSM +CONJ +PREP +P-ASM +V-RPI-3S +CONJ +P-NSM +V-PAI-3S +PREP +A-GPM +CONJ +T-NPN +A-NPN +PREP +P-DSM +V-RAI-3S +CONJ +P-NSM +V-PAI-3S +T-NSF +N-NSF +T-GSN +N-GSN +T-GSF +N-GSF +R-NSM +V-PAI-3S +N-NSF +A-NSM-S +PREP +T-GPM +A-GPM +CONJ +V-2ADS-3S +P-NSM +PREP +A-DPN +V-PAP-NSM +CONJ +V-AAI-3S +PREP +P-DSM +A-NSN +T-NSN +N-NSN +V-AAN +CONJ +PREP +P-GSM +V-AAN +T-APN +A-APN +PREP +P-ASM +V-AAP-NSM +PREP +T-GSN +N-GSN +T-GSM +N-GSM +P-GSM +PREP +P-GSM +CONJ +T-APN +PREP +T-GSF +N-GSF +CONJ +T-APN +PREP +T-DPM +N-DPM +CONJ +P-2AP +ADV +V-PAP-APM +V-RPP-APM +CONJ +A-APM +T-DSF +N-DSF +PREP +T-DPN +N-DPN +T-DPN +A-DPN +CONJ +ADV +V-AAI-3S +PREP +T-DSN +N-DSN +T-GSF +N-GSF +P-GSM +PREP +T-GSM +N-GSM +V-AAN +P-2AP +A-APM +CONJ +A-APM +CONJ +A-APM +PREP +P-GSM +COND +PRT +V-PAI-2P +T-DSF +N-DSF +V-RPP-NPM +CONJ +A-NPM +CONJ +PRT-N +V-PPP-NPM +PREP +T-GSF +N-GSF +T-GSN +N-GSN +R-GSN +V-AAI-2P +T-GSN +V-APP-GSN +PREP +A-DSF +N-DSF +T-DSF +PREP +T-ASM +N-ASM +R-GSN +N-NSM +V-2ADI-1S +P-1NS +N-NSM +ADV +V-PAI-1S +PREP +T-DPN +N-DPN +PREP +P-2GP +CONJ +V-PAI-1S +T-APN +N-APN +T-GPF +N-GPF +T-GSM +N-GSM +PREP +T-DSF +N-DSF +P-1GS +PREP +T-GSN +N-GSN +P-GSM +R-NSN +V-PAI-3S +T-NSF +N-NSF +R-GSF +N-NSM +V-2ADI-1S +P-1NS +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-ASF +V-APP-ASF +P-1DS +PREP +P-2AP +V-AAN +T-ASM +N-ASM +T-GSM +N-GSM +T-ASN +N-ASN +T-ASN +V-RPP-ASN +PREP +T-GPM +N-GPM +CONJ +PREP +T-GPF +N-GPF +CONJ +ADV +V-API-3S +T-DPM +A-DPM +P-GSM +R-DPM +V-AAI-3S +T-NSM +N-NSM +V-AAN +I-NSN +T-NSN +N-NSN +T-GSF +N-GSF +T-GSN +N-GSN +D-GSN +PREP +T-DPN +N-DPN +R-NSM +V-PAI-3S +N-NSM +PREP +P-2DP +T-NSF +N-NSF +T-GSF +N-GSF +R-ASM +P-1NP +V-PAI-1P +V-PAP-NPM +A-ASM +N-ASM +CONJ +V-PAP-NPM +A-ASM +N-ASM +PREP +A-DSF +N-DSF +CONJ +V-AAS-1P +A-ASM +N-ASM +A-ASM +PREP +N-DSM +PREP +R-ASN +CONJ +V-PAI-1S +V-PNP-NSM +PREP +T-ASF +N-ASF +P-GSM +T-ASF +V-PMP-ASF +PREP +P-1DS +PREP +N-DSF +CONJ +V-PAI-1S +P-2AP +V-RAN +A-ASM +N-ASM +V-PAI-1S +PREP +P-2GP +CONJ +T-GPM +PREP +N-DSF +CONJ +K-NPM +PRT-N +V-RAI-3P +T-ASN +N-ASN +P-1GS +PREP +N-DSF +CONJ +V-APS-3P +T-NPF +N-NPF +P-GPM +V-APP-NPM +PREP +N-DSF +CONJ +PREP +A-ASN +N-ASN +T-GSF +N-GSF +T-GSF +N-GSF +PREP +N-ASF +T-GSN +N-GSN +T-GSM +N-GSM +N-GSM +PREP +R-DSM +V-PAI-3P +A-NPM +T-NPM +N-NPM +T-GSF +N-GSF +CONJ +N-GSF +A-NPM +D-ASN +V-PAI-1S +CONJ +A-NSM-N +P-2AP +V-PNS-3S +PREP +N-DSF +CONJ +COND +CONJ +T-DSF +N-DSF +V-PAI-1S +CONJ +T-DSN +N-DSN +PREP +P-2DP +V-PAI-1S +V-PAP-NSM +CONJ +V-PAP-NSM +P-2GP +T-ASF +N-ASF +CONJ +T-ASN +N-ASN +T-GSF +PREP +N-ASM +N-GSF +P-2GP +CONJ +ADV +V-2AAI-2P +T-ASM +N-ASM +N-ASM +T-ASM +N-ASM +PREP +P-DSM +V-PAM-2P +V-RPP-NPM +CONJ +V-PPP-NPM +PREP +P-DSM +CONJ +V-PPP-NPM +T-DSF +N-DSF +ADV +V-API-2P +V-PAP-NPM +PREP +N-DSF +V-PAM-2P +PRT-N +X-NSM +V-FDI-3S +T-NSM +V-PAP-NSM +P-2AP +PREP +T-GSF +N-GSF +CONJ +A-GSF +N-GSF +PREP +T-ASF +N-ASF +T-GPM +N-GPM +PREP +T-APN +N-APN +T-GSM +N-GSM +CONJ +PRT-N +PREP +N-ASM +CONJ +PREP +P-DSM +V-PAI-3S +A-NSN +T-NSN +N-NSN +T-GSF +N-GSF +ADV +CONJ +V-PAI-2P +V-RPP-NPM +PREP +P-DSM +R-NSM +V-PAI-3S +T-NSF +N-NSF +A-GSF +N-GSF +CONJ +N-GSF +PREP +R-DSM +CONJ +V-API-2P +N-DSF +A-DSF +PREP +T-DSF +N-DSF +T-GSN +N-GSN +T-GSF +N-GSF +PREP +T-DSF +N-DSF +T-GSM +N-GSM +V-2APP-NPM +P-DSM +PREP +T-DSN +N-DSN +PREP +R-DSN +CONJ +V-API-2P +PREP +T-GSF +N-GSF +T-GSF +N-GSF +T-GSM +N-GSM +T-GSM +V-AAP-GSM +P-ASM +PREP +A-GPM +CONJ +P-2AP +A-APM +V-PAP-APM +T-DPN +N-DPN +CONJ +T-DSF +N-DSF +T-GSF +N-GSF +P-2GP +V-AAI-3S +P-2AP +PREP +P-DSM +V-ADP-NSM +P-1DP +A-APN +T-APN +N-APN +V-AAP-NSM +T-ASN +PREP +P-1GP +N-ASN +T-DPN +N-DPN +R-NSN +V-IAI-3S +A-NSN +P-1DP +CONJ +P-ASN +V-RAI-3S +PREP +T-GSN +A-GSN +V-AAP-NSM +P-ASN +T-DSM +N-DSM +V-ADP-NSM +T-APF +N-APF +CONJ +T-APF +N-APF +V-AAI-3S +PREP +N-DSF +V-AAP-NSM +P-APM +PREP +P-DSM +CONJ +PRT-N +X-NSM +P-2AP +V-PAM-3S +PREP +N-DSF +CONJ +PREP +N-DSF +PRT +PREP +N-DSN +N-GSF +PRT +N-GSF +PRT +N-GPN +R-NPN +V-PAI-3S +N-NSF +T-GPN +V-PAP-GPN +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +A-NSM-N +P-2AP +V-PAM-3S +V-PAP-NSM +PREP +N-DSF +CONJ +N-DSF +T-GPM +N-GPM +R-APN +V-RAI-3S +V-PAP-NSM +ADV +V-PPP-NSM +PREP +T-GSM +N-GSM +T-GSF +N-GSF +P-GSM +CONJ +PRT-N +V-PAP-NSM +T-ASF +N-ASF +PREP +R-GSM +A-NSN +T-NSN +N-NSN +PREP +T-GPF +N-GPF +CONJ +N-GPM +V-PPP-NSN +CONJ +V-PPP-NSN +V-PAI-3S +T-ASF +N-ASF +T-GSM +N-GSM +COND +V-2AAI-2P +PREP +N-DSM +PREP +T-GPN +N-GPN +T-GSM +N-GSM +I-ASN +ADV +V-PAP-NPM +PREP +N-DSM +V-PPI-2P +PRT-N +V-AMS-2S +CONJ-N +V-ADS-2S +CONJ-N +V-2AAS-2S +R-NPN +V-PAI-3S +A-NPN +PREP +N-ASF +T-DSF +N-DSF +PREP +T-APN +N-APN +CONJ +N-APF +T-GPM +N-GPM +R-NPN +V-PAI-3S +PRT +V-PAP-NPN +N-ASM +N-GSF +PREP +N-DSF +CONJ +N-DSF +CONJ +N-DSF +N-GSN +PRT-N +PREP +N-DSF +X-DSF +PREP +N-ASF +T-GSF +N-GSF +CONJ +COND +V-API-2P +T-DSM +N-DSM +T-APN +ADV +V-PAM-2P +ADV +T-NSM +N-NSM +V-PAI-3S +V-PNP-NSM +PREP +A-DSF +T-GSM +N-GSM +T-APN +ADV +V-PAM-2P +PRT-N +T-APN +PREP +T-GSF +N-GSF +CONJ +V-2AAI-2P +CONJ +T-NSF +N-NSF +P-2GP +V-RPI-3S +PREP +T-DSM +N-DSM +PREP +T-DSM +N-DSM +CONJ +V-APS-3S +T-NSM +N-NSM +T-NSF +N-NSF +P-1GP +ADV +CONJ +P-2NP +PREP +P-DSM +V-FPI-2P +PREP +N-DSF +CONJ +V-AAM-2P +T-APN +N-APN +T-APN +PREP +T-GSF +N-GSF +N-ASF +N-ASF +N-ASN +N-ASF +A-ASF +CONJ +T-ASF +N-ASF +R-NSF +V-PAI-3S +N-NSF +PREP +R-APN +V-PNI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +R-DPM +CONJ +P-2NP +V-AAI-2P +PRT +ADV +V-IAI-2P +PREP +D-DPN +CONJ +ADV +V-2AMM-2P +CONJ +P-2NP +T-APN +A-APN +N-ASF +N-ASM +N-ASF +N-ASF +N-ASF +PREP +T-GSN +N-GSN +P-2GP +PRT-N +V-PNM-2P +PREP +C-APM +V-ADP-NPM +T-ASM +A-ASM +N-ASM +PREP +T-DPF +N-DPF +P-GSM +CONJ +V-AMP-NPM +T-ASM +A-ASM +T-ASM +V-PPP-ASM +PREP +N-ASF +PREP +N-ASF +T-GSM +V-AAP-GSM +P-ASM +ADV +PRT-N +V-PAI-3S +N-NSM +CONJ +A-NSM +N-NSF +CONJ +N-NSF +A-NSM +N-NSM +N-NSM +A-NSM +CONJ +A-NPN +CONJ +PREP +A-DPN +N-NSM +CONJ +V-AMM-2P +ADV +A-NPM +T-GSM +N-GSM +A-NPM +CONJ +V-RPP-NPM +N-APN +N-GSM +N-ASF +N-ASF +N-ASF +N-ASF +V-PNP-NPM +C-GPM +CONJ +V-PNP-NPM +F-2DPM +COND +X-NSM +PREP +X-ASM +V-PAS-3S +N-ASF +ADV +CONJ +T-NSM +N-NSM +V-ADI-3S +P-2DP +ADV +CONJ +P-2NP +CONJ +PREP +A-DPN +D-DPN +T-ASF +N-ASF +R-NSN +V-PAI-3S +N-NSM +T-GSF +N-GSF +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-PAM-3S +PREP +T-DPF +N-DPF +P-2GP +PREP +R-ASF +CONJ +V-API-2P +PREP +A-DSN +N-DSN +CONJ +A-NPM +V-PNM-2P +T-NSM +N-NSM +T-GSM +N-GSM +V-PAM-3S +PREP +P-2DP +ADV +PREP +A-DSF +N-DSF +V-PAP-NPM +CONJ +V-PAP-NPM +F-2APM +N-DPM +N-DPM +N-DPF +A-DPF +PREP +T-DSF +N-DSF +V-PAP-NPM +PREP +T-DPF +N-DPF +P-2GP +T-DSM +N-DSM +CONJ +A-ASN +X-ASN +COND +R-ASN +V-PAS-2P +PREP +N-DSM +PRT +PREP +N-DSN +A-APN +PREP +N-DSN +N-GSM +N-GSM +V-PAP-NPM +T-DSM +N-DSM +N-DSM +PREP +P-GSM +T-NPF +N-NPF +V-PMM-2P +T-DPM +N-DPM +ADV +V-IAI-3S +PREP +N-DSM +T-NPM +N-NPM +V-PAM-2P +T-APF +N-APF +CONJ +PRT-N +V-PPM-2P +PREP +P-APF +T-NPN +N-NPN +V-PAM-2P +T-DPM +N-DPM +PREP +A-APN +CONJ +D-NSN +A-NSN +V-PAI-3S +PREP +N-DSM +T-NPM +N-NPM +PRT-N +V-PAM-2P +T-APN +N-APN +P-2GP +CONJ +PRT-N +V-PAS-3P +T-NPM +N-NPM +V-PAM-2P +PREP +A-APN +T-DPM +PREP +N-ASF +N-DPM +PRT-N +PREP +N-DPF +ADV +A-NPM +CONJ +PREP +N-DSF +N-GSF +V-PNP-NPM +T-ASM +N-ASM +COND +R-ASN +V-PAS-2P +PREP +N-GSF +V-PNM-2P +ADV +T-DSM +N-DSM +CONJ +PRT-N +N-DPM +V-RAP-NPM +CONJ +PREP +N-GSM +V-FDI-2P +T-ASF +N-ASF +T-GSF +N-GSF +T-DSM +N-DSM +N-DSM +V-PAI-2P +CONJ +T-NSM +V-PAP-NSM +V-FDI-3S +R-ASN +V-AAI-3S +CONJ +PRT-N +V-PAI-3S +N-NSF +T-NPM +N-NPM +T-ASN +A-ASN +CONJ +T-ASF +N-ASF +T-DPM +N-DPM +V-PMM-2P +V-RAP-NPM +CONJ +CONJ +P-2NP +V-PAI-2P +N-ASM +PREP +N-DSM +T-DSF +N-DSF +V-PAM-2P +V-PAP-NPM +PREP +P-DSF +PREP +N-DSF +V-PNP-NPM +ADV +CONJ +PREP +P-1GP +CONJ +T-NSM +N-NSM +V-AAS-3S +P-1DP +N-ASF +T-GSM +N-GSM +V-AAN +T-ASN +N-ASN +T-GSM +N-GSM +PREP +R-ASN +CONJ +V-RPI-1S +CONJ +V-AAS-1S +P-ASN +ADV +V-PAI-3S +P-1AS +V-AAN +PREP +N-DSF +V-PAM-2P +PREP +T-APM +ADV +T-ASM +N-ASM +V-PMP-NPM +T-NSM +N-NSM +P-2GP +ADV +PREP +N-DSF +N-DSN +V-RPP-NSM +V-RAN +ADV +V-PAI-3S +P-2AP +A-DSM +A-DSM +V-PNN +T-APN +PREP +P-1AS +A-APN +V-FAI-3S +P-2DP +N-NSM +T-NSM +A-NSM +N-NSM +CONJ +A-NSM +N-NSM +CONJ +N-NSM +PREP +N-DSM +R-ASM +V-AAI-1S +PREP +P-2AP +PREP +P-ASN +D-ASN +CONJ +V-2AAS-2P +T-APN +PREP +P-1GP +CONJ +V-AAS-3S +T-APF +N-APF +P-2GP +PREP +N-DSM +T-DSM +A-DSM +CONJ +A-DSM +N-DSM +R-NSM +V-PAI-3S +PREP +P-2GP +P-2DP +V-FAI-3P +A-APN +T-APN +ADV +V-PNI-3S +P-2AP +N-NSM +T-NSM +A-NSM +P-1GS +CONJ +N-NSM +T-NSM +N-NSM +N-GSM +PREP +R-GSM +V-2AAI-2P +N-APF +COND +V-2AAS-3S +PREP +P-2AP +V-ADM-2P +P-ASM +CONJ +N-NSM +T-NSM +V-PPP-NSM +N-NSM +T-NPM +V-PAP-NPM +PREP +N-GSF +D-NPM +A-NPM +A-NPM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +R-NPM +V-AOI-3P +P-1DS +N-NSF +V-PNI-3S +P-2AP +N-NSM +T-NSM +PREP +P-2GP +N-NSM +N-GSM +N-GSM +ADV +V-PNP-NSM +PREP +P-2GP +PREP +T-DPF +N-DPF +CONJ +V-APS-2P +A-NPM +CONJ +V-RPP-NPM +PREP +A-DSN +N-DSN +T-GSM +N-GSM +CONJ +V-PAI-1S +P-DSM +CONJ +V-PAI-3S +A-ASM +N-ASM +PREP +P-2GP +CONJ +T-GPM +PREP +N-DSF +CONJ +T-GPM +PREP +N-DSF +V-PNI-3S +P-2AP +N-NSM +T-NSM +N-NSM +T-NSM +A-NSM +CONJ +N-NSM +V-ADM-2P +T-APM +PREP +N-DSF +N-APM +CONJ +N-ASM +CONJ +T-ASF +PREP +N-ASM +P-GSF +N-ASF +CONJ +CONJ +V-APS-3S +PREP +P-2DP +T-NSF +N-NSF +V-AAM-2P +CONJ +CONJ +PREP +T-DSF +N-GPM +N-DSF +V-APS-3S +CONJ +CONJ +T-ASF +PREP +N-GSF +CONJ +P-2NP +V-2AAS-2P +CONJ +V-2AAM-2P +N-DSM +V-PAM-2S +T-ASF +N-ASF +R-ASF +V-2AAI-2S +PREP +N-DSM +CONJ +P-ASF +V-PAS-2S +T-NSM +N-NSM +T-DSF +S-1SDSF +N-DSF +N-GSM +V-PAM-2P +P-1GS +T-GPM +N-GPM +T-NSF +N-NSF +PREP +P-2GP +N-NSM +CONJ +N-NSM +CONJ +N-NSM +T-DSF +N-DSF +N-GPM +PREP +N-DSM +N-DSM +CONJ +N-DSM +N-DSM +N-DSM +P-2DP +N-NSF +CONJ +N-NSF +V-PAI-1P +T-DSM +N-DSM +ADV +PREP +A-GPM +P-2GP +N-ASF +V-PMP-NPM +PREP +T-GPF +N-GPF +P-1GP +ADV +V-PAP-NPM +P-2GP +T-GSN +N-GSN +T-GSF +N-GSF +CONJ +T-GSM +N-GSM +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +T-GSF +N-GSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +T-GSM +N-GSM +CONJ +N-GSM +P-1GP +V-RAP-NPM +T-ASF +N-ASF +P-2GP +N-VPM +V-RPP-NPM +PREP +T-GSM +N-GSM +CONJ +T-NSN +N-NSN +P-1GP +V-AOI-3S +PREP +P-2AP +PRT-N +PREP +N-DSM +ADV +CONJ +CONJ +PREP +N-DSF +CONJ +PREP +N-DSN +A-DSN +CONJ +N-DSF +A-DSF +ADV +V-RAI-2P +K-NPM +V-AOI-1P +PREP +P-2DP +PREP +P-2AP +CONJ +P-2NP +V-AOI-2P +N-NPM +P-1GP +CONJ +T-GSM +N-GSM +V-ADP-NPM +T-ASM +N-ASM +PREP +N-DSF +A-DSF +PREP +N-GSF +N-GSN +A-GSN +CONJ +V-2ADN +P-2AP +N-ASM +A-DPM +T-DPM +V-PAP-DPM +PREP +T-DSF +N-DSF +CONJ +PREP +T-DSF +N-DSF +CONJ +PREP +P-2GP +V-RPI-3S +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +ADV +PREP +T-DSF +N-DSF +CONJ +N-DSF +CONJ +PREP +A-DSM +N-DSM +T-NSF +N-NSF +P-2GP +T-NSF +PREP +T-ASM +N-ASM +V-2RAI-3S +CONJ +PRT-N +N-ASF +V-PAN +P-1AP +V-PAN +X-ASN +CONJ +P-NPM +PREP +P-1GP +V-PAI-3P +A-ASF +N-ASF +V-2AAI-1P +PREP +P-2AP +CONJ +ADV +V-AAI-2P +PREP +T-ASM +N-ASM +PREP +T-GPN +N-GPN +V-PAN +N-DSM +V-PAP-DSM +CONJ +A-DSM +CONJ +V-PAN +PREP +T-GPM +N-GPM +T-ASM +N-ASM +P-GSM +R-ASM +V-AAI-3S +PREP +T-GPM +A-GPM +N-ASM +T-ASM +V-PNP-ASM +P-1AP +PREP +T-GSF +N-GSF +T-GSF +V-PNP-GSF +CONJ +N-VPM +P-NPM +V-RAI-2P +T-ASF +N-ASF +P-1GP +T-ASF +PREP +P-2AP +CONJ +PRT-N +A-NSF +V-2RAI-3S +CONJ +V-2AAP-NPM +CONJ +V-APP-NPM +PREP +N-DPM +ADV +V-RAI-2P +V-ADI-1P +PREP +T-DSM +N-DSM +P-1GP +V-AAN +PREP +P-2AP +T-ASN +N-ASN +T-GSM +N-GSM +PREP +A-DSM +N-DSM +CONJ +T-NSF +N-NSF +P-1GP +PRT-N +PREP +N-GSF +CONJ-N +PREP +N-GSF +CONJ-N +PREP +N-DSM +CONJ +ADV +V-RPI-1P +PREP +T-GSM +N-GSM +V-APN +T-ASN +N-ASN +ADV +V-PAI-1P +ADV +V-PAP-NPM +PRT-N +N-DPM +CONJ +N-DSM +T-DSM +V-PAP-DSM +T-APF +N-APF +P-1GP +CONJ +CONJ-N +PRT +PREP +N-DSM +N-GSF +V-AOI-1P +ADV +V-RAI-2P +CONJ-N +PREP +N-DSF +N-GSF +N-NSM +N-NSM +CONJ-N +V-PAP-NPM +PREP +N-GPM +N-ASF +CONJ-N +PREP +P-2GP +CONJ-N +PREP +A-GPM +V-PNP-NPM +PREP +N-DSN +V-PAN +ADV +N-GSM +N-NPM +CONJ +V-AOI-1P +A-NPM +PREP +A-DSN +P-2GP +ADV +COND +N-NSF +V-PAS-3S +T-APN +F-3GSF +N-APN +ADV +V-PNP-NPM +P-2GP +V-PAI-1P +V-2AAN +P-2DP +PRT-N +ADV +T-ASN +N-ASN +T-GSM +N-GSM +CONJ +CONJ +T-APF +F-1GPM +N-APF +CONJ +A-NPM +P-1DP +V-AOI-2P +CONJ +N-VPM +V-PAI-2P +T-ASM +N-ASM +P-1GP +CONJ +T-ASM +N-ASM +N-GSF +CONJ +N-GSF +V-PNP-NPM +PREP +T-ASN +PRT-N +V-AAN +X-ASM +P-2GP +V-AAI-1P +PREP +P-2AP +T-ASN +N-ASN +T-GSM +N-GSM +N-NPM +P-2NP +CONJ +T-NSM +N-NSM +ADV +ADV +CONJ +ADV +CONJ +ADV +P-2DP +T-DPM +V-PAP-DPM +V-AOI-1P +ADV +V-RAI-2P +ADV +A-ASM +A-ASM +P-2GP +ADV +N-NSM +N-APN +F-3GSM +V-PAP-NPM +CONJ +V-PNP-NPM +CONJ +V-PNP-NPM +P-2AP +PREP +T-ASN +V-PAN +P-2AP +ADV +T-GSM +N-GSM +T-GSM +V-PAP-GSM +P-2AP +PREP +T-ASF +F-3GSM +N-ASF +CONJ +N-ASF +CONJ +PREP +D-ASN +CONJ +P-1NP +V-PAI-1P +T-DSM +N-DSM +ADV +CONJ +V-2AAP-NPM +N-ASM +N-GSF +PREP +P-1GP +T-GSM +N-GSM +V-ADI-2P +PRT-N +N-ASM +N-GPM +CONJ +ADV +ADV +V-PAI-3S +N-ASM +N-GSM +R-NSM +CONJ +V-PMI-3S +PREP +P-2DP +T-DPM +V-PAP-DPM +CONJ +N-VPM +P-2NP +V-AOI-2P +N-NPM +T-GPF +N-GPF +T-GSM +N-GSM +T-GPF +V-PAP-GPF +PREP +T-DSF +N-DSF +PREP +N-DSM +N-DSM +CONJ +T-APN +P-APN +V-2AAI-2P +CONJ +P-2NP +PREP +T-GPM +A-GPM +N-GPM +ADV +CONJ +P-NPM +PREP +T-GPM +A-GPM +T-GPM +V-AAP-GPM +CONJ +T-ASM +N-ASM +N-ASM +CONJ +T-APM +N-APM +CONJ +P-1AP +V-AAP-GPM +CONJ +N-DSM +PRT-N +V-PAP-GPM +CONJ +A-DPM +N-DPM +A-GPM +V-PAP-GPM +P-1AP +T-DPN +N-DPN +V-AAN +CONJ +V-APS-3P +PREP +T-ASN +V-AAN +P-GPM +T-APF +N-APF +ADV +CONJ +V-AAI-3S +PREP +P-APM +T-NSF +N-NSF +PREP +N-ASN +CONJ +N-VPM +P-1NP +V-APP-NPM +PREP +P-2GP +PREP +N-ASM +N-GSF +N-DSN +PRT-N +N-DSF +ADV-C +V-AAI-1P +T-ASN +N-ASN +P-2GP +V-2AAN +PREP +A-DSF +N-DSF +CONJ +V-AAI-1P +V-2AAN +PREP +P-2AP +PRT +P-1NS +N-NSM +CONJ +ADV +CONJ +ADV +CONJ +V-AAI-3S +P-1AP +T-NSM +N-NSM +CONJ +I-NSF +P-1GP +N-NSF +PRT +N-NSF +PRT +N-NSM +N-GSF +PRT +PRT-I +CONJ +P-2NP +PREP +T-GSM +N-GSM +P-1GP +N-GSM +PREP +T-DSF +P-GSM +N-DSF +CONJ +P-2NP +V-PAI-2P +T-NSF +N-NSF +P-1GP +CONJ +T-NSF +N-NSF +CONJ +ADV-N +V-PAP-NPM +V-AAI-1P +V-APN +PREP +N-DPF +A-NPM +CONJ +V-AAI-1P +N-ASM +T-ASM +N-ASM +P-1GP +CONJ +N-ASM +T-GSM +N-GSM +PREP +T-DSN +N-DSN +T-GSM +N-GSM +PREP +T-ASN +V-AAN +CONJ +V-AAN +P-2AP +PREP +T-GSF +N-GSF +P-2GP +T-ASN +A-ASM-N +V-PPN +PREP +T-DPF +N-DPF +D-DPF +CONJ +P-NPM +V-RAI-2P +CONJ +PREP +D-ASN +V-PNI-1P +CONJ +CONJ +ADV +PREP +P-2AP +V-IAI-1P +V-IAI-1P +P-2DP +CONJ +V-PAI-1P +V-PPN +ADV +CONJ +V-2ADI-3S +CONJ +V-RAI-2P +PREP +D-ASN +P-1NS-K +ADV-N +V-PAP-NSM +V-AAI-1S +PREP +T-ASN +V-2AAN +T-ASF +N-ASF +P-2GP +PRT-N +ADV-I +V-AAI-3S +P-2AP +T-NSM +V-PAP-NSM +CONJ +PREP +A-ASN +V-2ADS-3S +T-NSM +N-NSM +P-1GP +CONJ +ADV +V-2AAP-GSM +N-GSM +PREP +P-1AP +PREP +P-2GP +CONJ +V-AMP-GSM +P-1DP +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +P-2GP +CONJ +CONJ +V-PAI-2P +N-ASF +P-1GP +A-ASF +ADV +V-PAP-NPM +P-1AP +V-2AAN +ADV +CONJ +P-1NP +P-2AP +N-VPM +PREP +D-ASN +V-API-1P +PREP +P-2DP +PREP +A-DSF +T-DSF +N-DSF +CONJ +N-DSF +P-1GP +PREP +T-GSF +P-2GP +N-GSF +CONJ +ADV +V-PAI-1P +COND +P-2NP +V-PAI-2P +PREP +N-DSM +CONJ +V-PNI-1P +I-ASF +N-ASF +T-DSM +N-DSM +V-2AAN +PREP +P-2GP +PREP +A-DSF +T-DSF +N-DSF +R-DSF +V-PAI-1P +PREP +P-2AP +PREP +T-GSM +N-GSM +P-1GP +N-GSF +CONJ +N-GSF +ADV +V-PNP-NPM +PREP +T-ASN +V-2AAN +P-2GP +T-ASN +N-ASN +CONJ +V-AAN +T-APN +N-APN +T-GSF +N-GSF +P-2GP +CONJ +P-NSM +T-NSM +N-NSM +CONJ +N-NSM +P-1GP +CONJ +T-NSM +N-NSM +P-1GP +N-NSM +V-AAO-3S +T-ASF +N-ASF +P-1GP +PREP +P-2AP +CONJ +P-2AP +T-NSM +N-NSM +V-AAO-3S +CONJ +V-AAO-3S +T-DSF +N-DSF +PREP +C-APM +CONJ +PREP +A-APM +ADV +CONJ +P-1NP +PREP +P-2AP +PREP +T-ASN +V-AAN +P-2GP +T-APF +N-APF +A-APF +PREP +N-DSF +PREP +T-GSM +N-GSM +CONJ +N-GSM +P-1GP +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GP +N-GSM +PREP +A-GPM +T-GPM +A-GPM +P-GSM +CONJ +N-VPM +A-ASN +V-PAI-1P +CONJ +V-PAI-1P +P-2AP +PREP +N-DSM +N-DSM +CONJ +ADV +V-2AAI-2P +PREP +P-1GP +T-NSN +ADV +V-PAI-3S +P-2AP +V-PAN +CONJ +V-PAN +N-DSM +ADV +CONJ +V-PAI-2P +CONJ +V-PAS-2P +ADV +CONJ +V-RAI-2P +I-APF +N-APF +V-AAI-1P +P-2DP +PREP +T-GSM +N-GSM +N-GSM +CONJ +D-NSN +V-PAI-3S +N-NSN +T-GSM +N-GSM +T-NSM +N-NSM +P-2GP +V-PMN +P-2AP +PREP +T-GSF +N-GSF +V-RAN +A-ASM +P-2GP +T-ASN +F-3GSM +N-ASN +V-PNN +PREP +N-DSM +CONJ +N-DSF +PRT-N +PREP +N-DSN +N-GSF +ADV +CONJ +T-NPN +N-NPN +T-NPN +PRT-N +V-RAP-NPN +T-ASM +N-ASM +T-ASN +PRT-N +V-PAN +CONJ +V-PAN +PREP +T-DSN +N-DSN +T-ASM +N-ASM +P-GSM +CONJ +A-NSM +N-NSM +PREP +A-GPM +D-GPM +ADV +CONJ +V-2AAI-1P +P-2DP +CONJ +V-ADI-1P +CONJ +PRT-N +V-AAI-3S +P-1AP +T-NSM +N-NSM +PREP +N-DSF +CONJ +PREP +N-DSM +PRT +T-NSM +V-PAP-NSM +V-PAI-3S +PRT-N +N-ASM +CONJ +T-ASM +N-ASM +T-ASM +CONJ +V-PAP-ASM +T-ASN +N-ASN +P-GSM +T-ASN +A-ASN +PREP +P-2AP +CONJ +PREP +T-GSF +N-GSF +PRT-N +N-ASF +V-PAI-2P +V-PAN +P-2DP +CONJ +P-NPM +P-2NP +A-NPM +V-PAI-2P +PREP +T-ASN +V-PAN +C-APM +CONJ +CONJ +V-PAI-2P +P-ASN +PREP +A-APM +T-APM +N-APM +PREP +A-DSF +T-DSF +N-DSF +CONJ +N-VPM +V-PAI-1P +P-2AP +V-PAN +ADV +CONJ +V-PNN +V-PAN +CONJ +V-PAN +T-APN +A-APN +CONJ +V-PNN +T-DPF +N-DPF +P-2GP +ADV +P-2DP +V-AAI-1P +CONJ +V-PAS-2P +ADV +PREP +T-APM +ADV +CONJ +A-GSN-N +N-ASF +V-PAS-2P +CONJ +N-VPM +PRT-N +V-PAI-1P +P-2AP +V-PAN +PREP +T-GPM +V-PPP-GPM +CONJ +PRT-N +V-PPS-2P +ADV +CONJ +T-NPM +A-NPM +T-NPM +PRT-N +V-PAP-NPM +N-ASF +CONJ +COND +V-PAI-1P +CONJ +N-NSM +V-2AAI-3S +CONJ +V-2AAI-3S +ADV +CONJ +T-NSM +N-NSM +T-APM +V-APP-APM +PREP +T-GSM +N-GSM +V-FAI-3S +PREP +P-DSM +CONJ +D-ASN +P-2DP +V-PAI-1P +PREP +N-DSM +N-GSM +CONJ +P-1NP +T-NPM +V-PAP-NPM +T-NPM +V-POP-NPM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +PRT-N +PRT-N +V-AAS-1P +T-APM +V-APP-APM +CONJ +P-NSM +T-NSM +N-NSM +PREP +N-DSN +PREP +N-DSF +N-GSM +CONJ +PREP +N-DSF +N-GSM +V-FDI-3S +PREP +N-GSM +CONJ +T-NPM +A-NPM +PREP +N-DSM +V-FMI-3P +ADV-S +ADV +P-1NP +T-NPM +V-PAP-NPM +T-NPM +V-POP-NPM +ADV +PREP +P-DPM +V-2FPI-1P +PREP +N-DPF +PREP +N-ASF +T-GSM +N-GSM +PREP +N-ASM +CONJ +ADV +ADV +PREP +N-DSM +V-FDI-1P +CONJ +V-PAM-2P +C-APM +PREP +T-DPM +N-DPM +D-DPM +CONJ +N-VPM +PREP +T-GPM +N-GPM +CONJ +T-GPM +N-GPM +PRT-N +N-ASF +V-PAI-2P +P-2DP +V-PPN +CONJ +P-NPM +ADV +V-RAI-2P +CONJ +ADV +N-NSM +PREP +N-DSF +N-NSF +N-GSM +ADV +V-PNI-3S +CONJ +V-PAS-3P +N-NSF +CONJ +N-NSF +ADV +A-NSM +N-NSM +P-DPM +V-PNI-3S +ADV +T-NSF +N-NSF +T-DSF +PREP +N-DSF +V-PAP-DSF +CONJ +PRT-N +PRT-N +V-2AAS-3P +CONJ +N-VPM +P-2NP +PRT-N +V-PAI-2P +PREP +N-DSN +CONJ +T-NSF +N-NSF +P-2AP +V-2AAS-3S +ADV +N-NSM +CONJ +A-NPM +P-2NP +V-PAI-2P +N-NPM +N-GSN +CONJ +N-NPM +N-GSF +PRT-N +V-PAI-1P +N-GSF +CONJ-N +N-GSN +PRT +CONJ +PRT-N +V-PAS-1P +ADV +T-NPM +A-NPM +CONJ +V-PAS-1P +CONJ +V-PAS-1P +CONJ +T-NPM +V-PAP-NPM +N-GSF +V-PAI-3P +CONJ +T-NPM +V-PPP-NPM +N-GSF +V-PAI-3P +CONJ +P-1NP +N-GSF +V-PAP-NPM +V-PAS-1P +V-AMP-NPM +N-ASM +N-GSF +CONJ +N-GSF +CONJ +N-ASF +N-ASF +N-GSF +CONJ +PRT-N +V-2AMI-3S +P-1AP +T-NSM +N-NSM +PREP +N-ASF +CONJ +PREP +N-ASF +N-GSF +PREP +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-GSM +V-2AAP-GSM +PREP +P-1GP +CONJ +CONJ +V-PAS-1P +CONJ +V-PAS-1P +ADV +PREP +P-DSM +V-AAS-1P +CONJ +V-PAM-2P +C-APM +CONJ +V-PAM-2P +A-NSM +T-ASM +A-ASM +ADV +CONJ +V-PAI-2P +CONJ +N-VPM +V-PAI-1P +P-2AP +V-RAN +T-APM +V-PAP-APM +PREP +P-2DP +CONJ +V-PMP-APM +P-2GP +PREP +N-DSM +CONJ +V-PAP-APM +P-2AP +CONJ +V-PNN +P-APM +ADV +PREP +N-DSF +PREP +T-ASN +N-ASN +P-GPM +V-PAM-2P +PREP +F-2DPM +CONJ +N-VPM +V-PAI-1P +P-2AP +V-PAM-2P +T-APM +A-APM +V-PNM-2P +T-APM +A-APM +V-PNM-2P +T-GPM +A-GPM +V-PAM-2P +PREP +A-APM +V-PAM-2P +PRT-N +X-NSM +A-ASN +PREP +A-GSN +X-DSM +V-2AAS-3S +CONJ +ADV +T-ASN +A-ASN +V-PAM-2P +PREP +C-APM +CONJ +PREP +A-APM +ADV +V-PAM-2P +ADV +V-PNM-2P +PREP +A-DSN +V-PAM-2P +CONJ +D-NSN +N-NSN +N-GSM +PREP +N-DSM +N-DSM +PREP +P-2AP +T-ASN +N-ASN +PRT-N +V-PAM-2P +N-APF +PRT-N +V-PAM-2P +CONJ +A-APN +V-PAM-2P +T-ASN +A-ASN +V-PAM-2P +PREP +A-GSN +N-GSN +A-GSN +V-PMM-2P +CONJ +P-NSM +T-NSM +N-NSM +T-GSF +N-GSF +V-AAO-3S +P-2AP +A-APM +CONJ +A-NSN +P-2GP +T-NSN +N-NSN +CONJ +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +ADV +PREP +T-DSF +N-DSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +V-APO-3S +A-NSM +T-NSM +V-PAP-NSM +P-2AP +R-NSM +CONJ +V-FAI-3S +N-VPM +V-PNM-2P +PREP +P-1GP +V-ADM-2P +T-APM +N-APM +A-APM +PREP +N-DSN +A-DSN +V-PAI-1S +P-2AP +T-ASM +N-ASM +V-APN +T-ASF +N-ASF +A-DPM +T-DPM +N-DPM +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +P-2GP +N-NSM +CONJ +N-NSM +CONJ +N-NSM +T-DSF +N-DSF +N-GPM +PREP +N-DSM +N-DSM +P-1GP +CONJ +N-DSM +N-DSM +N-DSM +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +CONJ +N-GSM +N-GSM +N-GSM +N-VPM +V-PAI-1P +V-PAN +T-DSM +N-DSM +ADV +PREP +P-2GP +ADV +A-NSN +V-PAI-3S +CONJ +V-PAI-3S +T-NSF +N-NSF +P-2GP +CONJ +V-PAI-3S +T-NSF +N-NSF +A-GSM +A-GSM +A-GPM +P-2GP +PREP +C-APM +CONJ +P-APM +P-1AP +PREP +P-2DP +V-PNN +PREP +T-DPF +N-DPF +T-GSM +N-GSM +PREP +T-GSF +N-GSF +P-2GP +CONJ +N-GSF +PREP +A-DPM +T-DPM +N-DPM +P-2GP +CONJ +T-DPF +N-DPF +R-DPF +V-PNI-2P +N-NSN +T-GSF +A-GSF +N-GSF +T-GSM +N-GSM +PREP +T-ASN +V-APN +P-2AP +T-GSF +N-GSF +T-GSM +N-GSM +PREP +R-GSF +CONJ +V-PAI-2P +COND +A-NSN +PREP +N-DSM +V-2AAN +T-DPM +V-PAP-DPM +P-2AP +N-ASF +CONJ +P-2DP +T-DPM +V-PPP-DPM +N-ASF +PREP +P-1GP +PREP +T-DSF +N-DSF +T-GSM +N-GSM +N-GSM +PREP +N-GSM +PREP +N-GPM +N-GSF +P-GSM +PREP +N-DSN +N-GSF +V-PAP-GSM +N-ASF +T-DPM +PRT-N +V-RAP-DPM +N-ASM +CONJ +T-DPM +PRT-N +V-PAP-DPM +T-DSN +N-DSN +T-GSM +N-GSM +P-1GP +N-GSM +R-NPM +V-FAI-3P +N-ASF +N-ASM +A-ASM +PREP +N-GSN +T-GSM +N-GSM +CONJ +PREP +T-GSF +N-GSF +T-GSF +N-GSF +P-GSM +CONJ +V-2AAS-3S +V-APN +PREP +T-DPM +A-DPM +P-GSM +CONJ +V-APN +PREP +A-DPM +T-DPM +V-AAP-DPM +PREP +T-DSF +N-DSF +D-DSF +CONJ +V-API-3S +T-NSN +N-NSN +P-1GP +PREP +P-2AP +PREP +R-ASN +CONJ +V-PNI-1P +ADV +PREP +P-2GP +CONJ +P-2AP +V-AAS-3S +T-GSF +N-GSF +T-NSM +N-NSM +P-1GP +CONJ +V-AAS-3S +A-ASF +N-ASF +N-GSF +CONJ +N-ASN +N-GSF +PREP +N-DSF +ADV +V-APS-3S +T-NSN +N-NSN +T-GSM +N-GSM +P-1GP +N-GSM +PREP +P-2DP +CONJ +P-2NP +PREP +P-DSM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +CONJ +N-VPM +V-PAI-1P +P-2AP +PREP +T-GSF +N-GSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +P-1GP +N-GSF +PREP +P-ASM +PREP +T-ASN +PRT-N +ADV +V-APN +P-2AP +PREP +T-GSM +N-GSM +CONJ-N +V-PPN +CONJ-N +PREP +N-GSN +CONJ-N +PREP +N-GSM +CONJ-N +PREP +N-GSF +ADV +PREP +P-1GP +ADV +CONJ +V-RAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PRT-N +X-NSM +P-2AP +V-AAS-3S +PREP +A-ASM-N +N-ASM +CONJ +COND +PRT-N +V-2AAS-3S +T-NSF +N-NSF +ADV-S +CONJ +V-APS-3S +T-NSM +N-NSM +T-GSF +N-GSF +T-NSM +N-NSM +T-GSF +N-GSF +T-NSM +V-PNP-NSM +CONJ +V-PPP-NSM +PREP +A-ASM +V-PPP-ASM +N-ASM +PRT +N-ASN +CONJ +P-ASM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-AAN +V-PAP-ASM +F-3ASM +CONJ +V-PAI-3S +N-NSM +PRT-N +V-PAI-2P +CONJ +ADV +V-PAP-NSM +PREP +P-2AP +D-APN +V-IAI-1S +P-2DP +CONJ +ADV +T-ASN +V-PAP-ASN +V-RAI-2P +PREP +T-ASN +V-APN +P-ASM +PREP +T-DSM +P-GSN +N-DSM +CONJ +T-NSN +N-NSN +T-GSF +N-GSF +ADV +V-PMI-3S +ADV +T-NSM +V-PAP-NSM +ADV +ADV +PREP +A-GSN +V-2ADS-3S +CONJ +ADV +V-FPI-3S +T-NSM +A-NSM +R-ASM +T-NSM +N-NSM +N-NSM +V-2FAI-3S +T-DSN +N-DSN +T-GSN +N-GSN +P-GSM +CONJ +V-FAI-3S +T-DSF +N-DSF +T-GSF +N-GSF +P-GSM +R-GSM +T-NSF +N-NSF +V-PAI-3S +PREP +N-ASF +T-GSM +N-GSM +PREP +A-DSF +N-DSF +CONJ +N-DPN +CONJ +N-DPN +N-GSN +CONJ +PREP +A-DSF +N-DSF +N-GSF +T-DPM +V-PEP-DPM +PREP +R-GPM +T-ASF +N-ASF +T-GSF +N-GSF +PRT-N +V-ADI-3P +PREP +T-ASN +V-APN +P-APM +CONJ +PREP +D-ASN +V-PAI-3S +P-DPM +T-NSM +N-NSM +N-ASF +N-GSF +PREP +T-ASN +V-AAN +P-APM +T-DSN +N-DSN +CONJ +V-APS-3P +A-NPM +T-NPM +PRT-N +V-AAP-NPM +T-DSF +N-DSF +CONJ +V-AAP-NPM +T-DSF +N-DSF +CONJ +P-1NP +V-PAI-1P +V-PAN +T-DSM +N-DSM +ADV +PREP +P-2GP +N-VPM +V-RPP-NPM +PREP +N-GSM +CONJ +V-AMI-3S +P-2AP +T-NSM +N-NSM +PREP +N-GSF +PREP +N-ASF +PREP +N-DSM +N-GSN +CONJ +N-DSF +N-GSF +PREP +R-ASN +CONJ +V-AAI-3S +P-2AP +PREP +T-GSN +N-GSN +P-1GP +PREP +N-ASF +N-GSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PRT +CONJ +N-VPM +V-PAM-2P +CONJ +V-PAM-2P +T-APF +N-APF +R-APF +V-API-2P +CONJ +PREP +N-GSM +CONJ +PREP +N-GSF +P-1GP +CONJ +P-NSM +T-NSM +N-NSM +P-1GP +N-NSM +N-NSM +CONJ +T-NSM +N-NSM +T-NSM +N-NSM +P-1GP +T-NSM +V-AAP-NSM +P-1AP +CONJ +V-2AAP-NSM +N-ASF +A-ASF +CONJ +N-ASF +A-ASF +PREP +N-DSF +V-AAO-3S +P-2GP +T-APF +N-APF +CONJ +V-AAO-3S +PREP +A-DSN +N-DSN +CONJ +N-DSM +A-DSM +N-VPM +T-ASN +A-ASN +V-PNM-2P +PREP +P-1GP +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PAS-3S +CONJ +V-PPS-3S +ADV +CONJ +PREP +P-2AP +CONJ +CONJ +V-APS-1P +PREP +T-GPM +A-GPM +CONJ +A-GPM +N-GPM +CONJ +PRT-N +A-GPM +T-NSF +N-NSF +CONJ +A-NSM +V-PAI-3S +T-NSM +N-NSM +R-NSM +V-FAI-3S +P-2AP +CONJ +V-FAI-3S +PREP +T-GSM +A-GSM +CONJ +V-2RAI-1P +PREP +N-DSM +PREP +P-2AP +CONJ +R-APN +V-PAI-1P +CONJ +V-PAI-2P +CONJ +V-FAI-2P +CONJ +T-NSM +N-NSM +V-AAO-3S +P-2GP +T-APF +N-APF +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +PREP +T-ASF +N-ASF +T-GSM +N-GSM +CONJ +N-VPM +V-PAI-1P +P-2DP +PREP +N-DSN +T-GSM +N-GSM +N-GSM +N-GSM +V-PMN +P-2AP +PREP +A-GSM +N-GSM +ADV +V-PAP-GSM +CONJ +PRT-N +PREP +T-ASF +N-ASF +R-ASF +V-2AAI-2P +PREP +P-1GP +CONJ +P-NPM +V-RAI-2P +ADV +V-PAI-3S +V-PNN +P-1AP +CONJ +PRT-N +V-AAI-1P +PREP +P-2DP +CONJ-N +ADV +N-ASM +V-2AAI-1P +PREP +X-GSM +CONJ +PREP +N-DSM +CONJ +N-DSM +N-GSF +CONJ +N-GSF +V-PNP-NPM +PREP +T-ASN +PRT-N +V-AAN +X-ASM +P-2GP +PRT-N +CONJ +PRT-N +V-PAI-1P +N-ASF +CONJ +CONJ +F-1APM +N-ASM +V-2AAS-1P +P-2DP +PREP +T-ASN +V-PNN +P-1AP +CONJ +CONJ +ADV +V-IAI-1P +PREP +P-2AP +D-ASN +V-IAI-1P +P-2DP +CONJ +COND +X-NSM +PRT-N +V-PAI-3S +V-PNN +CONJ-N +V-PAM-3S +CONJ +V-PAI-1P +X-APM +V-PAP-APM +PREP +P-2DP +ADV +A-ASN-N +V-PNP-APM +CONJ +V-PNP-APM +CONJ +T-DPM +D-DPM +V-PAI-1P +CONJ +V-PAI-1P +PREP +N-DSM +N-DSM +N-DSM +CONJ +PREP +N-GSF +V-PNP-NPM +T-ASM +F-3GPM +N-ASM +V-PAS-3P +CONJ +N-VPM +P-2NP +PRT-N +V-AAS-2P +V-PAP-NPM +CONJ +COND +X-NSM +PRT-N +V-PAI-3S +T-DSM +N-DSM +P-1GP +PREP +T-GSF +N-GSF +D-ASM +V-PMM-2P +PRT-N +V-PMN +P-DSM +CONJ +V-2APS-3S +CONJ +PRT-N +ADV +A-ASM +V-PNM-2P +CONJ +V-PAM-2P +ADV +N-ASM +CONJ +P-NSM +T-NSM +N-NSM +T-GSF +N-GSF +V-2AAO-3S +P-2DP +T-ASF +N-ASF +PREP +A-GSN +PREP +A-DSM +N-DSM +T-NSM +N-NSM +PREP +A-GPM +P-2GP +T-NSM +N-NSM +T-DSF +S-1SDSF +N-DSF +N-GSM +R-NSN +V-PAI-3S +N-NSN +PREP +A-DSF +N-DSF +ADV +V-PAI-1S +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +A-GPM +P-2GP +N-NSM +N-NSM +N-GSM +N-GSM +PREP +N-ASF +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +T-GSF +N-GSF +P-1GP +N-DSM +A-DSN +N-DSN +PREP +N-DSF +N-NSF +N-NSN +N-NSF +PREP +N-GSM +N-GSM +CONJ +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +ADV +V-AAI-1S +P-2AS +V-AAN +PREP +N-DSF +V-PNP-NSM +PREP +N-ASF +CONJ +V-AAS-2S +X-DPM +PRT-N +V-PAN +CONJ-N +V-PAN +N-DPM +CONJ +N-DPF +A-DPF +R-NPF +N-APF +V-PAI-3P +ADV +PRT +N-ASF +N-GSM +T-ASF +PREP +N-DSF +CONJ +T-NSN +N-NSN +T-GSF +N-GSF +V-PAI-3S +N-NSF +PREP +A-GSF +N-GSF +CONJ +N-GSF +A-GSF +CONJ +N-GSF +A-GSF +R-GPF +V-AAP-NPM +X-NPM +V-2API-3P +PREP +N-ASF +V-PAP-NPM +V-PAN +N-NPM +PRT-N +V-PAP-NPM +CONJ-N +R-APN +V-PAI-3P +CONJ-N +PREP +I-GPN +V-PNI-3P +CONJ +V-RAI-1P +CONJ +A-NSM +T-NSM +N-NSM +COND +X-NSM +P-DSM +ADV +V-PNS-3S +V-RAP-NSM +D-ASN +CONJ +PRT-N +A-DSM +N-NSM +V-PNI-3S +CONJ +A-DPM +CONJ +A-DPM +A-DPM +CONJ +A-DPM +A-DPM +CONJ +A-DPM +N-DPM +CONJ +N-DPM +N-DPM +N-DPM +N-DPM +N-DPM +N-DPM +A-DPM +CONJ +COND +X-NSN +A-NSN +V-PNI-3S +T-DSF +V-PAP-DSF +N-DSF +PREP +T-ASN +N-ASN +T-GSF +N-GSF +T-GSM +A-GSM +N-GSM +R-ASN +V-API-1S +P-1NS +N-ASF +V-PAI-1S +T-DSM +V-AAP-DSM +P-1AS +N-DSM +N-DSM +T-DSM +N-DSM +P-1GP +CONJ +A-ASM +P-1AS +V-ADI-3S +V-2AMP-NSM +PREP +N-ASF +T-ASN +A-ASN-C +V-PAP-ASM +A-ASM +CONJ +N-ASM +CONJ +N-ASM +CONJ +V-API-1S +CONJ +V-PAP-NSM +V-AAI-1S +PREP +N-DSF +CONJ +V-AAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +PREP +N-GSF +CONJ +N-GSF +T-GSF +PREP +N-DSM +N-DSM +T-NSM +N-NSM +A-NSM +CONJ +A-GSF +N-GSF +A-NSM +CONJ +N-NSM +N-NSM +V-2AAI-3S +PREP +T-ASM +N-ASM +A-APM +V-AAN +R-GPM +A-NSM-S +V-PAI-1S +P-1NS +CONJ +PREP +D-ASN +V-API-1S +CONJ +PREP +P-1DS +A-DSM-S +V-AMS-3S +N-NSM +N-NSM +T-ASF +A-ASF +N-ASF +PREP +N-ASF +T-GPM +V-PAP-GPM +V-PAN +PREP +P-DSM +PREP +N-ASF +A-ASF +CONJ +T-DSM +N-DSM +T-GPM +N-GPM +A-DSM +A-DSM +A-DSM +N-DSM +N-NSF +CONJ +N-NSF +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +N-VSN +N-VSM +D-ASF +T-ASF +N-ASF +V-PMI-1S +P-2DS +PREP +T-APF +V-PAP-APF +PREP +P-2AS +N-APF +CONJ +V-PMS-2S +PREP +P-DPF +T-ASF +A-ASF +N-ASF +V-PAP-NSM +N-ASF +CONJ +A-ASF +N-ASF +R-ASF +V-ADP-NPM +X-NPM +PREP +T-ASF +N-ASF +V-AAI-3P +R-GPM +V-PAI-3S +N-NSM +CONJ +N-NSM +R-APM +V-AAI-1S +T-DSM +N-DSM +CONJ +V-APS-3P +PRT-N +V-PAN +CONJ +V-PAI-1S +ADV-S +A-GPN +V-PPN +N-APF +N-APF +N-APF +N-APF +PREP +A-GPM +N-GPM +PREP +N-GPM +CONJ +A-GPM +T-GPM +PREP +N-DSF +V-PAP-GPM +CONJ +A-ASM +CONJ +A-ASM +N-ASM +V-PAS-1P +PREP +A-DSF +N-DSF +CONJ +N-DSF +D-NSN +A-NSN +CONJ +A-NSN +PREP +T-GSM +N-GSM +P-1GP +N-GSM +R-NSM +V-PAI-3S +A-APM +N-APM +V-APN +CONJ +PREP +N-ASF +N-GSF +V-2AAN +CONJ +A-NSM +N-NSM +A-NSM +CONJ +N-NSM +N-GSM +CONJ +N-GPM +N-NSM +N-NSM +N-NSM +T-NSM +V-2AAP-NSM +F-3ASM +N-ASN +PREP +A-GPM +T-ASN +N-ASN +N-DPM +A-DPM +PREP +R-ASN +V-API-1S +P-1NS +N-NSM +CONJ +N-NSM +N-NSM +N-GPN +PREP +N-DSF +CONJ +N-DSF +N-ASF +V-PAI-1S +PRT-N +V-PNI-1S +CONJ +V-PNI-1S +V-PNN +T-APM +N-APM +PREP +A-DSM +N-DSM +V-PAP-APM +A-APF +N-APF +ADV +N-GSF +CONJ +N-GSM +ADV +N-APF +PREP +N-DSF +A-DSF +PREP +N-GSF +CONJ +N-GSF +V-PAN +F-3APF +PRT-N +PREP +N-DPN +CONJ +N-DSN +PRT +N-DPM +PRT +N-DSM +A-DSM +CONJ +PREP +R-NSN +V-PAI-3S +N-DPF +V-PNP-DPF +N-ASF +N-GPN +A-GPN +N-NSF +PREP +N-DSF +V-PAM-3S +PREP +A-DSF +N-DSF +CONJ +V-PAI-1S +PRT-N +V-PAN +N-DSF +CONJ-N +V-PAN +N-GSM +CONJ +V-PAN +PREP +N-DSF +CONJ +N-PRI +A-NSM-S +V-API-3S +ADV +N-NSF +CONJ +N-PRI +PRT-N +V-API-3S +CONJ +T-NSF +N-NSF +V-APP-NSF +PREP +N-DSF +V-2RAI-3S +CONJ +V-FPI-3S +PREP +T-GSF +N-GSF +COND +V-AAS-3P +PREP +N-DSF +CONJ +N-DSF +CONJ +N-DSM +PREP +N-GSF +A-NSM +T-NSM +N-NSM +COND +X-NSM +N-GSF +V-PMI-3S +A-GSN +N-GSN +V-PAI-3S +CONJ +V-PAI-3S +T-ASM +N-ASM +V-PAN +A-ASM +A-GSF +N-GSF +N-ASM +A-ASM +A-ASM +A-ASM +A-ASM +A-ASM +PRT-N +A-ASM +PRT-N +N-ASM +CONJ +A-ASM +A-ASM +A-ASM +T-GSM +A-GSM +N-GSM +ADV +V-PMP-ASM +N-APN +V-PAP-ASM +PREP +N-DSF +PREP +A-GSF +N-GSF +CONJ +COND +X-NSM +T-GSM +A-GSM +N-GSM +V-2AAN +PRT-N +V-RAI-3S +ADV-I +N-GSF +N-GSM +V-FDI-3S +PRT-N +A-ASM +CONJ +PRT-N +V-APP-NSM +PREP +N-ASN +T-GSM +A-GSM +V-2AAS-3S +CONJ +V-PAI-3S +CONJ +N-ASF +A-ASF +V-PAN +PREP +T-GPM +ADV +CONJ +PRT-N +V-2AAS-3S +PREP +N-ASM +CONJ +N-ASF +T-GSM +A-GSM +ADV +N-APM +A-APM +PRT-N +A-APM +PRT-N +N-DSM +A-DSM +V-PAP-APM +PRT-N +A-APM +V-PAP-APM +T-ASN +N-ASN +T-GSF +N-GSF +PREP +A-DSF +N-DSF +CONJ +CONJ +D-NPM +V-PPM-3P +ADV-S +ADV +V-PAM-3P +A-NPM +V-PAP-NPM +ADV +N-APF +A-APF +PRT-N +A-APF +A-APM +A-APF +PREP +A-DPN +N-NPM +V-PAM-3P +A-GSF +N-GSF +N-NPM +ADV +V-PMP-NPM +N-GPN +CONJ +T-GPM +A-GPM +N-GPM +CONJ +T-NPM +ADV +V-AAP-NPM +N-ASM +A-ASM +F-3DPM +V-PMI-3P +CONJ +A-ASF +N-ASF +PREP +N-DSF +T-DSF +PREP +N-DSM +N-DSM +D-APN +P-2DS +V-PAI-1S +V-PAP-NSM +V-2AAN +PREP +P-2AS +ADV-C +CONJ +COND +V-PAS-1S +CONJ +V-RAS-2S +ADV +V-PAI-3S +V-PPN +PREP +N-DSM +N-GSM +R-NSF +V-PAI-3S +N-NSF +N-GSM +V-PAP-GSM +N-NSM +CONJ +N-NSN +T-GSF +N-GSF +CONJ +ADV +A-NSN +V-PAI-3S +T-NSN +T-GSF +N-GSF +N-NSN +R-NSM +V-API-3S +PREP +N-DSF +V-API-3S +PREP +N-DSN +V-API-3S +N-DPM +V-API-3S +PREP +N-DPN +V-API-3S +PREP +N-DSM +V-API-3S +PREP +N-DSF +CONJ +T-NSN +N-NSN +ADV +V-PAI-3S +CONJ +PREP +A-DPM +N-DPM +V-FDI-3P +X-NPM +T-GSF +N-GSF +V-PAP-NPM +N-DPN +A-DPN +CONJ +N-DPF +N-GPN +PREP +N-DSF +A-GPM +V-RPP-GPM +T-ASF +A-ASF +N-ASF +V-PAP-GPM +V-PAN +V-PMN +N-GPN +R-APN +T-NSM +N-NSM +V-AAI-3S +PREP +N-ASF +PREP +N-GSF +T-DPM +A-DPM +CONJ +V-RAP-DPM +T-ASF +N-ASF +CONJ +A-NSN +N-NSN +N-GSM +A-NSN +CONJ +A-NSN-N +A-NSN +PREP +N-GSF +V-PPP-NSN +CONJ +V-PPI-3S +PREP +N-GSM +N-GSM +CONJ +N-GSF +D-APN +V-PMP-NSM +T-DPM +N-DPM +V-FDI-2S +A-NSM +N-NSM +N-GSM +N-GSM +V-PPP-NSM +T-DPM +N-DPM +T-GSF +N-GSF +CONJ +T-GSF +A-GSF +N-GSF +R-DSF +V-RAI-2S +CONJ +T-APM +A-APM +CONJ +A-APM +N-APM +V-PNM-2S +CONJ +V-PAM-2S +F-2ASM +PREP +N-ASF +CONJ +T-NSF +A-NSF +N-NSF +PREP +A-ASN +V-PAI-3S +A-NSM +CONJ +T-NSF +N-NSF +PREP +A-APN +A-NSM +V-PAI-3S +V-PAP-NSF +N-ASF +N-GSF +T-GSF +ADV +CONJ +T-GSF +V-PAP-GSF +T-NSM +N-NSM +A-NSM +CONJ +A-GSF +N-GSF +A-NSM +CONJ +PREP +D-ASN +V-PAI-1P +CONJ +V-PNI-1P +CONJ +V-RAI-1P +PREP +N-DSM +V-PAP-DSM +R-NSM +V-PAI-3S +N-NSM +A-GPM +N-GPM +ADV-S +A-GPM +D-APN +V-PAM-2S +CONJ +V-PAM-2S +A-NSM-N +P-2GS +T-GSF +N-GSF +V-PAM-3S +CONJ +V-PNM-2S +N-NSM +T-GPM +A-GPM +PREP +N-DSM +PREP +N-DSF +PREP +N-DSF +PREP +N-DSF +PREP +N-DSF +ADV +V-PNI-1S +V-PAM-2S +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +PRT-N +V-PAM-2S +T-GSN +PREP +P-2DS +N-GSN +R-NSN +V-API-3S +P-2DS +PREP +N-GSF +PREP +N-GSF +T-GPF +N-GPF +T-GSN +N-GSN +D-APN +V-PAM-2S +PREP +D-DPN +V-PAM-2S +CONJ +P-2GS +T-NSF +N-NSF +A-NSF +V-PAS-3S +A-DPM +V-PAM-2S +F-2DSM +CONJ +T-DSF +N-DSF +V-PAM-2S +P-DPM +CONJ +D-ASN +V-PAP-NSM +V-FAI-2S +CONJ +F-2ASM +CONJ +T-APM +V-PAP-APM +P-2GS +A-DSM-C +PRT-N +V-AAS-2S +CONJ +V-PAM-2S +ADV +N-ASM +A-APM-C +ADV +N-APM +A-APF-C +ADV +N-APF +A-APF-C +ADV +N-APF +PREP +A-DSF +N-DSF +V-PAM-2S +N-APF +T-APF +ADV +N-APF +CONJ +COND +X-NSM +N-NSF +N-APN +PRT +A-APN +V-PAI-3S +V-PAM-3P +ADV-S +T-ASM +A-ASM +N-ASM +V-PAN +CONJ +N-APF +V-PAN +T-DPM +N-DPM +CONJ +D-NSN +V-PAI-3S +A-NSN +PREP +T-GSM +N-GSM +CONJ +T-NSF +ADV +N-NSF +CONJ +V-RPP-NSF +V-RAI-3S +PREP +N-ASM +CONJ +V-PAI-3S +T-DPF +N-DPF +CONJ +T-DPF +N-DPF +N-GSF +CONJ +N-GSF +CONJ +T-NSF +V-PAP-NSF +V-PAP-NSF +V-RAI-3S +CONJ +D-APN +V-PAM-2S +CONJ +A-NPM +V-PAS-3P +CONJ +COND +X-NSM +T-GPM +A-GPM +CONJ +ADV-S +A-GPM +PRT-N +V-PAI-3S +T-ASF +N-ASF +V-RDI-3S +CONJ +V-PAI-3S +A-GSM +A-NSM-C +N-NSF +V-PPM-3S +PRT-N +A-NSN +N-GPN +A-NUI +V-2RAP-NSF +A-GSM +N-GSM +N-NSF +PREP +N-DPN +A-DPN +V-PPP-NSF +COND +V-AAI-3S +COND +V-AAI-3S +COND +A-GPM +N-APM +V-AAI-3S +COND +V-PPP-DPM +V-AAI-3S +COND +A-DSN +N-DSN +A-DSN +V-AAI-3S +CONJ +A-APF-C +N-APF +V-PNM-2S +CONJ +CONJ +V-AAS-3P +T-GSM +N-GSM +V-PAN +V-PAI-3P +V-PAP-NPF +N-ASN +CONJ +T-ASF +A-ASF-S +N-ASF +V-AAI-3P +CONJ +ADV +CONJ +A-NPF +V-PAI-3P +V-PNP-NPF +T-APF +N-APF +CONJ +PRT-N +ADV +A-NPF +CONJ +CONJ +A-NPF +CONJ +A-NPF +V-PAP-NPF +T-APN +PRT-N +V-PAP-APN +CONJ +V-PNI-1S +A-APF-C +V-PAN +V-PAN +V-PAN +A-ASF-N +N-ASF +V-PAN +T-DSM +V-PNP-DSM +N-GSF +PREP +CONJ +ADV +X-NPM +V-2API-3P +ADV +T-GSM +N-GSM +COND +X-NSF +A-NSF +V-PAI-3S +N-APF +V-PAM-3S +P-DPF +CONJ +PRT-N +V-PPM-3S +T-NSF +N-NSF +CONJ +T-DPF +ADV +N-DPF +V-AAS-3S +T-NPM +ADV +V-RAP-NPM +A-NPM-C +A-GSF +N-GSF +V-PPM-3P +ADV-S +T-NPM +V-PAP-NPM +PREP +N-DSM +CONJ +N-DSF +CONJ +V-PAI-3S +T-NSF +N-NSF +N-ASM +V-PAP-ASM +PRT-N +V-FAI-2S +CONJ +A-NSM +T-NSM +N-NSM +T-GSM +N-GSM +P-GSM +PREP +A-GSM-C +N-ASF +PRT-N +V-PNM-2S +ADV +COND +PRT-N +PREP +A-NUI +PRT +A-GPM +N-GPM +T-APM +V-PAP-APM +PREP +A-GPM +V-PAM-2S +CONJ +CONJ +T-NPM +A-NPM +N-ASM +V-PAS-3P +V-PNI-1S +PREP +T-GSM +N-GSM +CONJ +N-GSM +N-GSM +CONJ +T-GPM +A-GPM +N-GPM +CONJ +D-APN +V-AAS-2S +ADV +N-GSN +A-ASN-N +V-PAP-NSM +PREP +N-ASF +N-APF +ADV +A-DSM-N +V-PAM-2S +CONJ-N +V-PAM-2S +N-DPF +A-DPF +F-2ASM +A-ASM +V-PAM-2S +ADV-N +V-PAM-2S +CONJ +N-DSM +A-DSM +V-PNM-2S +PREP +T-ASM +N-ASM +CONJ +T-APF +A-APF +P-2GS +N-APF +X-GPM +N-GPM +T-NPF +N-NPF +A-NPF +V-PAI-3P +V-PAP-NPF +PREP +N-ASF +CONJ +X-DPM +CONJ +V-PAI-3P +ADV +CONJ +T-NPN +N-NPN +T-NPN +A-NPN +A-NPN +CONJ +T-NPN +ADV +V-PAP-NPN +V-2APN +PRT-N +V-PNI-3P +K-NPM +V-PAI-3P +PREP +N-ASM +N-NPM +T-APM +A-APM +N-APM +A-GSF +N-GSF +A-APM +V-PNM-3P +CONJ +PRT-N +T-NSN +N-NSN +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +V-PPS-3S +CONJ +T-NPM +V-PAP-NPM +A-APM +N-APM +PRT-N +V-PAM-3P +CONJ +N-NPM +V-PAI-3P +CONJ +ADV +V-PAM-3P +CONJ +V-PAI-3P +A-NPM +CONJ +A-NPM +T-NPM +T-GSF +N-GSF +V-PNP-NPM +D-APN +V-PAM-2S +CONJ +V-PAM-2S +COND +X-NSM +V-PAI-3S +CONJ +PRT-N +V-PNI-3S +V-PAP-DPM +N-DPM +T-DPM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +T-DSF +PREP +N-ASF +N-DSF +V-RPI-3S +A-ASN-N +V-PNP-NSM +CONJ +V-PAP-NSM +PREP +N-APF +CONJ +N-APF +PREP +R-GPF +V-PNI-3S +N-NSM +N-NSF +N-NPF +N-NPF +A-NPF +N-NPF +N-GPM +V-RPP-GPM +T-ASM +N-ASM +CONJ +V-RPP-GPM +T-GSF +N-GSF +V-PAP-GPM +N-ASM +V-PAN +T-ASF +N-ASF +CONJ +V-PAI-3S +N-NSM +A-NSM +T-NSF +N-NSF +PREP +N-GSF +CONJ +A-ASN-N +V-AAI-1P +PREP +T-ASM +N-ASM +CONJ +CONJ-N +V-2AAN +X-ASN +V-PNI-1P +CONJ +V-PAP-NPM +N-APF +CONJ +N-APN +D-DPN +V-FPI-1P +CONJ +T-NPM +V-PNP-NPM +V-PAN +V-PAI-3P +PREP +N-ASM +CONJ +N-ASF +CONJ +N-APF +A-APF +A-APF +CONJ +A-APF +R-NPF +V-PAI-3P +T-APM +N-APM +PREP +N-ASM +CONJ +N-ASF +CONJ +N-NSF +A-GPN +T-GPN +A-GPN +V-PAI-3S +T-NSF +N-NSF +R-GSF +V-PMP-NPM +X-NPM +V-API-3P +PREP +T-GSF +N-GSF +CONJ +F-3APM +V-AAI-3P +N-DPF +A-DPF +CONJ +INJ +N-VSM +N-GSM +P-2NS +D-APN +V-PAM-2S +CONJ +V-PAM-2S +N-ASF +N-ASF +N-ASF +N-ASF +N-ASF +N-ASF +V-PNM-2S +T-ASM +A-ASM +N-ASM +T-GSF +N-GSF +V-2ADM-2S +T-GSF +A-GSF +N-GSF +PREP +R-ASF +V-API-2S +CONJ +V-AAI-2S +T-ASF +A-ASF +N-ASF +PREP +A-GPM +N-GPM +V-PAI-1S +PREP +T-GSM +N-GSM +T-GSM +V-PAP-GSM +T-APN +A-APN +CONJ +N-GSM +N-GSM +T-GSM +V-AAP-GSM +PREP +N-GSM +N-GSM +T-ASF +A-ASF +N-ASF +V-AAN +P-2AS +T-ASF +N-ASF +A-ASF +A-ASF +ADV +T-GSF +N-GSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +R-ASF +N-DPM +A-DPM +V-FAI-3S +T-NSM +A-NSM +CONJ +A-NSM +N-NSM +T-NSM +N-NSM +T-GPM +V-PAP-GPM +CONJ +N-NSM +T-GPM +V-PAP-GPM +T-NSM +A-NSM +V-PAP-NSM +N-ASF +N-ASN +A-ASN +V-PAP-NSM +R-ASM +V-2AAI-3S +A-NSM-N +N-GPM +CONJ-N +V-2AAN +V-PNI-3S +R-DSM +N-NSF +CONJ +N-NSN +A-NSN +HEB +T-DPM +A-DPM +PREP +T-DSM +ADV +N-DSM +V-PAM-2S +PRT-N +V-PAN +CONJ-N +V-RAN +PREP +N-GSM +N-DSF +CONJ +PREP +N-DSM +T-DSM +V-PAP-DSM +P-1DP +A-APN +ADV +PREP +N-ASF +V-PAN +V-PAN +PREP +N-DPN +A-DPN +A-APM +V-PAN +A-APM +V-PAP-APM +F-3DPM +N-ASM +A-ASM +PREP +T-ASN +V-PAP-ASN +CONJ +V-2ADS-3P +T-GSF +ADV +N-GSF +INJ +N-VSM +T-ASF +N-ASF +V-AAM-2S +V-PMP-NSM +T-APF +A-APF +N-APF +CONJ +N-APF +T-GSF +A-GSF +N-GSF +R-ASF +V-PNP-NPM +X-NPM +PREP +T-ASF +N-ASF +V-AAI-3P +T-NSF +N-NSF +PREP +P-2GP +N-NSM +N-NSM +N-GSM +N-GSM +PREP +N-GSN +N-GSM +PREP +N-ASF +N-GSF +T-GSF +PREP +N-DSM +N-DSM +N-DSM +A-DSN +N-DSN +N-NSF +N-NSN +N-NSF +PREP +N-GSM +N-GSM +CONJ +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +N-ASF +V-PAI-1S +T-DSM +N-DSM +R-DSM +V-PAI-1S +PREP +N-GPM +PREP +A-DSF +N-DSF +ADV +A-ASF +V-PAI-1S +T-ASF +PREP +P-2GS +N-ASF +PREP +T-DPF +N-DPF +P-1GS +N-GSF +CONJ +N-GSF +V-PAP-NSM +P-2AS +V-2AAN +V-RPP-NSM +P-2GS +T-GPN +N-GPN +CONJ +N-GSF +V-APS-1S +V-2AAP-NSM +N-ASF +T-GSF +PREP +P-2DS +A-GSF +N-GSF +R-NSF +V-AAI-3S +ADV-S +PREP +T-DSF +N-DSF +P-2GS +N-DSF +CONJ +T-DSF +N-DSF +P-2GS +N-DSF +CONJ +V-RPI-1S +CONJ +CONJ +PREP +P-2DS +PREP +R-ASF +N-ASF +V-PAI-1S +P-2AS +V-PAN +T-ASN +N-ASN +T-GSM +N-GSM +R-NSN +V-PAI-3S +PREP +P-2DS +PREP +T-GSF +N-GSF +T-GPF +N-GPF +P-1GS +CONJ +PRT-N +V-AAI-3S +P-1DP +T-NSM +N-NSM +N-ASN +N-GSF +CONJ +N-GSF +CONJ +N-GSF +CONJ +N-GSM +CONJ +PRT-N +V-AOS-2S +T-ASN +N-ASN +T-GSM +N-GSM +P-1GP +CONJ-N +P-1AS +T-ASM +N-ASM +P-GSM +CONJ +V-AAM-2S +T-DSN +N-DSN +PREP +N-ASF +N-GSM +T-GSM +V-AAP-GSM +P-1AP +CONJ +V-AAP-GSM +N-DSF +A-DSF +PRT-N +PREP +T-APN +N-APN +P-1GP +CONJ +PREP +A-ASF +N-ASF +CONJ +N-ASF +T-ASF +V-APP-ASF +P-1DP +PREP +N-DSM +N-DSM +PREP +N-GPM +A-GPM +CONJ +V-APP-ASF +ADV +PREP +T-GSF +N-GSF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PRT +V-AAP-GSM +T-ASM +N-ASM +CONJ +V-AAP-GSM +N-ASF +CONJ +N-ASF +PREP +T-GSN +N-GSN +PREP +R-ASN +V-API-1S +P-1NS +N-NSM +CONJ +N-NSM +CONJ +N-NSM +PREP +R-ASF +N-ASF +CONJ +D-APN +V-PAI-1S +CONJ +PRT-N +V-PNI-1S +CONJ +V-RAI-1S +R-DSM +V-RAI-1S +CONJ +V-RPI-1S +CONJ +V-PAI-3S +A-NSM +T-ASF +N-ASF +P-1GS +V-AAN +PREP +D-ASF +T-ASF +N-ASF +V-PAM-2S +N-ASF +V-PAP-GPM +N-GPM +R-GPM +PREP +P-1GS +V-AAI-2S +PREP +N-DSF +CONJ +N-DSF +T-DSF +PREP +N-DSM +N-DSM +T-ASF +A-ASF +N-ASF +V-AAM-2S +PREP +N-GSN +A-GSN +T-GSN +V-PAP-GSN +PREP +P-1DP +V-RAI-2S +D-ASN +CONJ +V-2API-3P +P-1AS +A-NPM +T-NPM +PREP +T-DSF +N-DSF +R-GPM +V-PAI-3S +N-NSM +CONJ +N-NSM +V-2AAO-3S +N-ASN +T-NSM +N-NSM +T-DSM +N-GSM +N-DSM +CONJ +ADV +P-1AS +V-AAI-3S +CONJ +PRT-N +T-ASF +N-ASF +P-1GS +V-AOI-3S +CONJ +V-2ADP-NSM +PREP +N-DSF +ADV +V-AAI-3S +P-1AS +CONJ +V-2AAI-3S +V-2AAO-3S +P-DSM +T-NSM +N-NSM +V-2AAN +N-ASN +PREP +N-GSM +PREP +D-DSF +T-DSF +N-DSF +CONJ +K-APN +PREP +N-DSF +V-AAI-3S +ADV-C +P-2NS +V-PAI-2S +CONJ +N-VSN +P-1GS +P-2NS +V-PPM-2S +PREP +T-DSF +N-DSF +T-DSF +PREP +N-DSM +N-DSM +CONJ +R-APN +V-AAI-2S +PREP +P-1GS +PREP +A-GPM +N-GPM +D-APN +V-2AMM-2S +A-DPM +N-DPM +R-NPM +A-NPM +V-FDI-3P +CONJ +A-APM +V-AAN +V-AAM-2S +ADV +A-NSM +N-NSM +N-GSM +N-GSM +A-NSM-N +V-PMP-NSM +V-PPI-3S +T-DPF +T-GSM +N-GSM +N-DPF +CONJ +T-DSM +V-AAP-DSM +V-AAS-3S +CONJ +COND +CONJ +V-PAS-3S +X-NSM +PRT-N +V-PPI-3S +COND +PRT-N +ADV +V-AAS-3S +V-PAI-3S +T-ASM +V-PAP-ASM +N-ASM +ADV-S +T-GPM +N-GPM +V-PAN +V-PAM-2S +R-ASN +V-PAI-1S +CONJ +V-FAI-3S +P-2DS +T-NSM +N-NSM +N-ASF +PREP +A-DPN +V-PAM-2S +N-ASM +N-ASM +V-RPP-ASM +PREP +A-GPM +PREP +N-GSN +N-PRI +PREP +T-ASN +N-ASN +P-1GS +PREP +R-DSN +V-PAI-1S +ADV +N-GPM +ADV +A-NSM +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +PRT-N +V-RPI-3S +PREP +D-ASN +A-APN +V-PAI-1S +PREP +T-APM +A-APM +CONJ +CONJ +P-NPM +V-2AAS-3P +N-GSF +T-GSF +PREP +N-DSM +N-DSM +PREP +N-GSF +A-GSF +A-NSM +T-NSM +N-NSM +CONJ +COND +V-2AAI-1P +CONJ +V-FAI-1P +COND +V-PAI-1P +CONJ +V-FAI-1P +COND +V-FDI-1P +D-NSM-K +V-FDI-3S +P-1AP +COND +V-PAI-1P +D-NSM +A-NSM +V-PAI-3S +CONJ +V-ADN +F-3ASM +PRT-N +V-PNI-3S +D-APN +V-PAM-2S +V-PNP-NSM +PREP +T-GSM +N-GSM +PRT-N +V-PAN +PREP +A-ASN-N +A-ASN +PREP +N-DSF +T-GPM +V-PAP-GPM +V-AAM-2S +V-AAN +F-2ASM +A-ASM +T-DSM +N-DSM +N-ASM +A-ASM +V-PAP-ASM +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +T-APF +A-APF +N-APF +V-PMM-2S +CONJ +PREP +A-ASN-C +N-GSF +V-FAI-3P +CONJ +T-NSM +N-NSM +P-GPM +ADV +N-NSF +N-ASF +V-FAI-3S +R-GPM +V-PAI-3S +N-NSM +CONJ +N-NSM +R-NPM +PREP +T-ASF +N-ASF +V-AAI-3P +V-PAP-NPM +N-ASF +ADV +V-2RAN +CONJ +V-PAI-3P +T-ASF +X-GPM +N-ASF +CONJ +T-NSM +A-NSM +N-NSM +T-GSM +N-GSM +V-RAI-3S +V-PAP-NSM +T-ASF +N-ASF +D-ASF +V-2AAI-3S +N-NSM +T-APM +V-PAP-APM +P-GSM +CONJ +V-2AAM-3S +PREP +N-GSF +A-NSM +T-NSM +V-PAP-NSM +T-ASN +N-ASN +N-GSM +CONJ +PREP +A-DSF +N-DSF +V-PAI-3S +PRT-N +ADV +N-NPN +A-NPN +CONJ +A-NPN +CONJ +CONJ +A-NPN +CONJ +A-NPN +CONJ +PRT +R-NPN +PREP +N-ASF +CONJ +R-NPN +PREP +N-ASF +CONJ +COND +X-NSM +V-AAS-3S +F-3ASM +PREP +D-GPN +V-FDI-3S +N-NSN +PREP +N-ASF +V-RPP-NSN +A-NSN +T-DSM +N-DSM +PREP +A-ASN +N-ASN +A-ASN +V-RPP-NSN +CONJ +T-APF +A-APF-C +N-APF +V-PAM-2S +CONJ +V-PAM-2S +N-ASF +N-ASF +N-ASF +N-ASF +PREP +T-GPM +V-PMP-GPM +T-ASM +N-ASM +PREP +A-GSF +N-GSF +CONJ +T-APF +A-APF +CONJ +A-APF +N-APF +V-PNM-2S +V-RAP-NSM +CONJ +V-PAI-3P +N-APF +CONJ +V-PAI-3S +N-ASM +N-GSM +PRT-N +V-PNN +CONJ +V-PAN +A-ASM +PREP +A-APM +A-ASM +A-ASM +PREP +N-DSF +V-PAP-ASM +T-APM +V-PMP-APM +PRT-N +ADV +V-2AAO-3S +P-DPM +T-NSM +N-NSM +N-ASF +PREP +N-ASF +N-GSF +CONJ +V-AAS-3P +PREP +T-GSF +T-GSM +A-GSM +N-GSF +V-RPP-NPM +PREP +P-GSM +PREP +T-ASN +D-GSM +N-ASN +CONJ +D-ASN +V-PAM-2S +CONJ +PREP +A-DPF-S +N-DPF +V-FDI-3P +N-NPM +A-NPM +CONJ +V-FDI-3P +T-NPM +N-NPM +A-NPM +A-NPM +N-NPM +A-NPM +A-NPM +N-DPM +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +N-NPM +A-NPM +V-RPP-NPM +A-NPM +ADV +PRT +A-NPM +V-PAP-NPM +N-ASF +N-GSF +CONJ +T-ASF +N-ASF +P-GSF +V-RNP-NPM +CONJ +D-APM +V-PMM-2S +CONJ +PREP +D-GPM +V-PAI-3P +T-NPM +V-PAP-NPM +PREP +T-APF +N-APF +CONJ +V-PAP-NPM +N-APN +V-RPP-APN +N-DPF +V-PPP-APN +N-DPF +A-DPF +ADV +V-PAP-APN +CONJ +ADV-N +PREP +N-ASF +N-GSF +V-2AAN +V-PNP-APN +CONJ +R-ASM +N-ASM +N-NSM +CONJ +N-NSM +V-2AAI-3P +N-DSM +ADV +CONJ +D-NPM +V-PMI-3P +T-DSF +N-DSF +N-NPM +V-RPP-NPM +T-ASM +N-ASM +A-NPM +PREP +T-ASF +N-ASF +CONJ +PRT-N +V-FAI-3P +PREP +A-ASN-C +CONJ +T-NSF +N-NSF +P-GPM +A-NSF +V-FDI-3S +A-DPM +ADV +CONJ +T-NSF +D-GPM +V-2ADI-3S +CONJ +P-2NS +V-AAI-2S +P-1GS +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +T-DPM +N-DPM +T-DPN +N-DPN +R-NPN +P-1DS +V-2ADI-3S +PREP +N-DSF +PREP +N-DSN +PREP +N-DPN +K-APM +N-APM +V-AAI-1S +CONJ +PREP +A-GPM +P-1AS +V-ANI-3S +T-NSM +N-NSM +CONJ +CONJ +A-NPM +T-NPM +V-PAP-NPM +V-PAN +ADV +PREP +N-DSM +N-DSM +V-FPI-3P +CONJ +A-NPM +N-NPM +CONJ +N-NPM +V-FAI-3P +PREP +T-ASN +A-ASN +V-PAP-NPM +CONJ +V-PPP-NPM +CONJ +P-2NS +V-PAM-2S +PREP +R-DPN +V-2AAI-2S +CONJ +V-API-2S +V-RAP-NSM +PREP +I-GPM +V-2AAI-2S +CONJ +CONJ +PREP +N-GSN +V-RAI-2S +A-APN +N-APN +T-APN +V-PNP-APN +P-2AS +V-AAN +PREP +N-ASF +PREP +N-GSF +T-GSF +PREP +N-DSM +N-DSM +A-NSF +N-NSF +A-NSF +CONJ +A-NSF +PREP +N-ASF +PREP +N-ASM +PREP +N-ASF +PREP +N-ASF +T-ASF +PREP +N-DSF +CONJ +A-NSM +V-PAS-3S +T-NSM +T-GSM +N-GSM +N-NSM +PREP +A-ASN +N-ASN +A-ASN +V-RPP-NSM +V-PNI-1S +PREP +T-GSM +N-GSM +CONJ +N-GSM +N-GSM +T-GSM +V-PAP-GSM +V-PAN +V-PAP-APM +CONJ +A-APM +CONJ +T-ASF +N-ASF +P-GSM +CONJ +T-ASF +N-ASF +P-GSM +V-AAM-2S +T-ASM +N-ASM +V-2AAM-2S +ADV +ADV +V-AAM-2S +V-AAM-2S +V-AAM-2S +PREP +A-DSF +N-DSF +CONJ +N-DSF +CONJ +V-FDI-3S +N-NSM +ADV +PRT-N +T-GSF +V-PAP-GSF +N-GSF +V-FDI-3P +CONJ +PREP +T-APF +A-APF +N-APF +F-3DPM +V-FAI-3P +N-APM +V-PPP-NPM +T-ASF +N-ASF +CONJ +PRT +PREP +T-GSF +N-GSF +T-ASF +N-ASF +V-FAI-3P +CONJ +PREP +T-APM +N-APM +V-2FPI-3P +CONJ +P-2NS +V-PAM-2S +PREP +A-DPN +V-AAM-2S +V-AAM-2S +N-ASN +N-GSM +T-ASF +N-ASF +P-2GS +V-AAM-2S +CONJ +P-1NS +ADV +V-PPI-1S +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +P-1GS +V-RAI-3S +T-ASM +A-ASM +N-ASM +V-RNI-1S +T-ASM +N-ASM +V-RAI-1S +T-ASF +N-ASF +V-RAI-1S +A-ASN +V-PNI-3S +P-1DS +T-NSM +T-GSF +N-GSF +N-NSM +R-ASM +V-FAI-3S +P-1DS +T-NSM +N-NSM +T-NSM +A-NSM +N-NSM +PREP +D-DSF +T-DSF +N-DSF +CONJ +PRT-N +ADV +P-1DS +CONJ +CONJ +A-DPM +T-DPM +V-RAP-DPM +T-ASF +N-ASF +P-GSM +V-AAM-2S +V-2AAN +PREP +P-1AS +ADV +CONJ +N-NSM +P-1AS +V-2AAI-3S +V-AAP-NSM +T-ASM +ADV +N-ASM +CONJ +V-AOI-3S +PREP +N-ASF +N-NSM +PREP +N-ASF +N-NSM +PREP +N-ASF +N-NSM +V-PAI-3S +A-NSM +PREP +P-1GS +N-ASM +V-2AAP-NSM +V-PAM-2S +PREP +F-2GSM +CONJ +V-PAI-3S +P-1DS +A-NSM +PREP +N-ASF +CONJ +N-ASM +V-AAI-1S +PREP +N-ASF +T-ASM +N-ASM +R-ASM +V-IAI-1S +PREP +N-DSF +PREP +N-DSM +V-PNP-NSM +V-PAM-2S +CONJ +T-APN +N-APN +ADV-S +T-APF +N-APF +N-NSM +T-NSM +N-NSM +A-APN +A-APN +P-1DS +V-AMI-3S +V-FAI-3S +P-DSM +T-NSM +N-NSM +PREP +T-APN +N-APN +P-GSM +R-ASM +CONJ +P-2NS +V-PMM-2S +CONJ +ADV +V-2AAI-3S +T-DPM +S-1PDPM +N-DPM +PREP +T-DSF +A-DSF-S +P-1GS +N-DSF +A-NSM-N +P-1DS +V-2ADI-3S +CONJ +A-NPM +P-1AS +V-2AAI-3P +PRT-N +P-DPM +V-AOO-3S +CONJ +T-NSM +N-NSM +P-1DS +V-2AAI-3S +CONJ +V-AAI-3S +P-1AS +CONJ +PREP +P-1GS +T-NSN +N-NSN +V-APS-3S +CONJ +V-AAS-3P +A-NPN +T-NPN +N-NPN +CONJ +V-API-1S +PREP +N-GSN +N-GSM +V-FDI-3S +P-1AS +T-NSM +N-NSM +PREP +A-GSN +N-GSN +A-GSN +CONJ +V-FAI-3S +PREP +T-ASF +N-ASF +P-GSM +T-ASF +A-ASF +R-DSM +T-NSF +N-NSF +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +V-ADM-2S +N-ASF +CONJ +N-ASM +CONJ +T-ASM +N-GSM +N-ASM +N-NSM +V-AAI-3S +PREP +N-DSF +CONJ +N-ASM +V-IAI-1S +PREP +N-DSF +V-PAP-ASM +V-AAM-2S +PREP +N-GSM +V-2AAN +V-PNI-3S +P-2AS +N-NSM +CONJ +N-NSM +CONJ +N-NSM +CONJ +N-NSF +CONJ +T-NPM +N-NPM +A-NPM +T-NSM +N-NSM +PREP +T-GSN +N-GSN +P-2GS +T-NSF +N-NSF +PREP +P-2GP +N-NSM +N-NSM +N-GSM +CONJ +N-NSM +N-GSM +N-GSM +PREP +N-ASF +A-GPM +N-GSM +CONJ +N-ASF +N-GSF +T-GSF +PREP +N-ASF +PREP +N-DSF +N-GSF +A-GSF +R-ASF +V-ADI-3S +T-NSM +A-NSM +N-NSM +PREP +N-GPM +A-GPM +CONJ +V-AAI-3S +N-DPM +A-DPM +T-ASM +N-ASM +P-GSM +PREP +N-DSN +R-ASN +V-API-1S +P-1NS +PREP +N-ASF +T-GSM +N-GSM +P-1GP +N-GSM +N-DSM +A-DSN +N-DSN +PREP +A-ASF +N-ASF +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +CONJ +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +D-GSN +PREP +V-IAI-1S +P-2AS +PREP +N-DSF +CONJ +T-APN +V-PAP-APN +V-AMS-2S +CONJ +V-AAS-2S +PREP +N-ASF +A-APM-C +ADV +P-1NS +P-2DS +V-AMI-1S +COND +X-NSM +V-PAI-3S +A-NSM +A-GSF +N-GSF +N-NSM +V-PAP-NSM +N-APN +A-APN +PRT-N +PREP +N-DSF +N-GSF +PRT +A-APN +CONJ +V-PAI-3S +T-ASM +N-ASM +V-PAN +ADV +N-GSM +N-ASM +A-ASM +PRT-N +A-ASM +PRT-N +A-ASM +PRT-N +A-ASM +PRT-N +N-ASM +PRT-N +A-ASM +CONJ +A-ASM +A-ASM +A-ASM +A-ASM +A-ASM +A-ASM +V-PNP-ASM +T-GSM +PREP +T-ASF +N-ASF +A-GSM +N-GSM +CONJ +V-PAS-3S +A-NSM +CONJ +V-PAN +PREP +T-DSF +N-DSF +T-DSF +V-PAP-DSF +CONJ +T-APM +V-PAP-APM +V-PAN +CONJ +V-PAI-3P +A-NPM +A-NPM +A-NPM +CONJ +N-NPM +ADV-S +T-NPM +PREP +T-GSF +N-GSF +R-APM +V-PAN +V-PAI-3S +R-NPM +A-APM +N-APM +V-PAI-3P +V-PAP-NPM +R-APN +PRT-N +V-PAI-3S +A-GSN +N-GSN +PREP +V-2AAI-3S +X-NSM +PREP +P-GPM +A-NSM +P-GPM +N-NSM +N-NPM +ADV +N-NPM +A-NPN +N-NPN +N-NPF +A-NPF +T-NSF +N-NSF +D-NSF +V-PAI-3S +A-NSF +PREP +R-ASF +N-ASF +V-PAM-2S +P-APM +ADV +CONJ +V-PAS-3P +PREP +T-DSF +N-DSF +PRT-N +V-PAP-NPM +A-DPM +N-DPM +CONJ +N-DPF +N-GPM +V-PMP-GPM +T-ASF +N-ASF +A-NPN +A-NPN +T-DPM +A-DPM +CONJ +T-DPM +V-RPP-DPM +CONJ +A-DPM +A-NSN-N +A-NSN +CONJ +V-RPI-3S +P-GPM +CONJ +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +N-ASM +V-RAN +V-PAI-3P +CONJ +T-DPN +N-DPN +V-PNI-3P +V-PAP-NPM +A-NPM +CONJ +A-NPM +CONJ +PREP +A-ASN +N-ASN +A-ASN +A-NPM +CONJ +P-2NS +V-PAM-2S +R-NPN +V-PAI-3S +T-DSF +V-PAP-DSF +N-DSF +N-APM +V-PAN +A-APM +A-APM +A-APM +V-PAP-APM +T-DSF +N-DSF +T-DSF +N-DSF +T-DSF +N-DSF +N-APF +ADV +PREP +N-DSN +A-APF +PRT-N +A-APF +CONJ-N +N-DSM +A-DSM +V-RPP-APF +A-APF +CONJ +V-PAS-3P +T-APF +A-APF +V-PAN +A-APF +A-APF +A-APF +A-APF +A-APF +A-APF +V-PPP-APF +T-DPM +A-DPM +N-DPM +CONJ +PRT-N +T-NSM +N-NSM +T-GSM +N-GSM +V-PPS-3S +T-APM +A-APM-C +ADV +V-PAM-2S +V-PAN +PREP +A-APN +F-2ASM +V-PMP-NSM +N-ASM +A-GPN +N-GPN +PREP +T-DSF +N-DSF +N-ASF +N-ASF +N-ASM +A-ASM +A-ASM +CONJ +T-NSM +PREP +A-GSF +V-2APS-3S +V-PAP-NSM +V-PAN +PREP +P-1GP +A-ASN-N +A-ASN +N-APM +A-DPM +N-DPM +V-PMN +PREP +A-DPN +A-APM +V-PAN +PRT-N +V-PAP-APM +PRT-N +V-PMP-APM +CONJ +A-ASF +N-ASF +A-ASF +V-PMP-APM +CONJ +T-ASF +N-ASF +T-ASF +T-GSM +N-GSM +P-1GP +N-GSM +V-PAS-3P +PREP +A-DPN +CONJ +V-2API-3S +T-NSF +N-NSF +T-GSM +N-GSM +A-NSF +A-DPM +N-DPM +V-PAP-NSF +P-1AP +CONJ +V-ADP-NPM +T-ASF +N-ASF +CONJ +T-APF +A-APF +N-APF +ADV +CONJ +ADV +CONJ +ADV +V-AAS-1P +PREP +T-DSM +ADV +N-DSM +V-PNP-NPM +T-ASF +A-ASF +N-ASF +CONJ +N-ASF +T-GSF +N-GSF +T-GSM +A-GSM +N-GSM +CONJ +N-GSM +P-1GP +N-GSM +N-GSM +R-NSM +V-AAI-3S +F-3ASM +PREP +P-1GP +CONJ +V-AMS-3S +P-1AP +PREP +A-GSF +N-GSF +CONJ +V-AAS-3S +F-3DSM +N-ASM +A-ASM +N-ASM +A-GPN +N-GPN +D-APN +V-PAM-2S +CONJ +V-PAM-2S +CONJ +V-PAM-2S +PREP +A-GSF +N-GSF +A-NSM-N +P-2GS +V-PAM-3S +V-PAM-2S +P-APM +N-DPF +N-DPF +V-PMN +V-PAN +PREP +A-ASN +N-ASN +A-ASN +A-APM +V-PAN +A-ASM-N +V-PAN +A-APM +V-PAN +A-APM +A-ASF +N-ASF +V-PMP-APM +PREP +A-APM +N-APM +CONJ +V-IAI-1P +PRT +CONJ +P-1NP +A-NPM +A-NPM +V-PPP-NPM +V-PAP-NPM +N-DPF +CONJ +N-DPF +A-DPF +PREP +N-DSF +CONJ +N-DSM +V-PAP-NPM +A-NPM +V-PAP-NPM +C-APM +CONJ +ADV +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +N-GSM +V-2API-3S +PRT-N +PREP +N-GPN +T-GPN +PREP +N-DSF +R-APN +V-AAI-1P +P-1NP +CONJ +PREP +T-ASN +P-GSM +N-ASN +V-AAI-3S +P-1AP +PREP +N-GSN +N-GSF +CONJ +N-GSF +N-GSN +A-GSN +R-GSN +V-AAI-3S +PREP +P-1AP +ADV +PREP +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +CONJ +V-APP-NPM +T-DSF +D-GSM +N-DSF +N-NPM +V-AOS-1P +PREP +N-ASF +N-GSF +A-GSF +A-NSM +T-NSM +N-NSM +CONJ +PREP +D-GPN +V-PNI-1S +P-2AS +V-PNN +CONJ +V-PAS-3P +A-GPN +N-GPN +V-PMN +T-NPM +V-RAP-NPM +N-DSM +D-NPN +V-PAI-3S +A-NPN +CONJ +A-NPN +T-DPM +N-DPM +CONJ +A-APF +N-APF +CONJ +N-APF +CONJ +N-ASF +CONJ +N-APF +A-APF +V-PMM-2S +CONJ +V-PAI-3P +A-NPF +CONJ +A-NPF +A-ASM +N-ASM +PREP +A-ASF +CONJ +A-ASF +N-ASF +V-PNM-2S +V-RAP-NSM +CONJ +T-NSM +D-NSM +V-RPI-3S +CONJ +V-PAI-3S +V-PAP-NSM +A-NSM +CONJ +V-FAI-1S +PREP +P-2AS +N-ASM +PRT +N-ASM +V-AAM-2S +V-2AAN +PREP +P-1AS +PREP +N-ASF +CONJ +ADV +V-AAN +V-RAI-1S +N-ASM +T-ASM +A-ASM +CONJ +N-ASM +ADV +V-AAM-2S +CONJ +A-NSN-N +P-DPM +V-PAS-3S +CONJ +V-PAM-3P +CONJ +T-NPM +S-1PNPM +A-GPN +N-GPN +V-PMN +PREP +T-APF +A-APF +N-APF +CONJ +PRT-N +V-PAS-3P +A-NPM +V-PNI-3P +P-2AS +T-NPM +PREP +P-1GS +A-NPM +V-ADM-2S +T-APM +V-PAP-APM +P-1AP +PREP +N-DSF +T-NSF +N-NSF +PREP +A-GPM +P-2GP +N-NSM +N-NSM +N-GSM +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +N-DSM +T-DSM +A-DSM +CONJ +A-DSM +P-1GP +CONJ +N-DSF +T-DSF +N-DSF +CONJ +N-DSM +T-DSM +N-DSM +P-1GP +CONJ +T-DSF +PREP +N-ASM +P-2GS +N-DSF +P-2DP +N-NSF +CONJ +N-NSF +PREP +N-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +V-PAI-1S +T-DSM +N-DSM +P-1GS +ADV +N-ASF +P-2GS +V-PMP-NSM +PREP +T-GPF +N-GPF +P-1GS +V-PAP-NSM +P-2GS +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +R-ASF +V-PAI-2S +PREP +T-ASM +N-ASM +N-ASM +CONJ +PREP +A-APM +T-APM +A-APM +ADV +T-NSF +N-NSF +T-GSF +N-GSF +P-2GS +A-NSF +V-2ADS-3S +PREP +N-DSF +A-GSN +A-GSN +T-GSN +PREP +P-1DP +PREP +N-ASM +CONJ +N-ASF +A-ASF +CONJ +N-ASF +V-2AAI-1S +PREP +T-DSF +N-DSF +P-2GS +CONJ +T-NPN +N-NPN +T-GPM +A-GPM +V-RPI-3S +PREP +P-2GS +N-VSM +CONJ +A-ASF +PREP +N-DSM +N-ASF +V-PAP-NSM +V-PAN +P-2DS +T-ASN +V-PAP-ASN +PREP +T-ASF +N-ASF +ADV +V-PAI-1S +D-NSM +V-PAP-NSM +ADV +N-NSM +N-NSM +CONJ +ADV +CONJ +N-NSM +N-GSM +N-GSM +V-PAI-1S +P-2AS +PREP +T-GSN +S-1SGSN +N-GSN +V-AAI-1S +PREP +T-DPM +N-DPM +R-ASM +N-ASM +T-ASM +PRT +P-2DS +A-ASM +CONJ +ADV +CONJ +P-2DS +CONJ +P-1DS +A-ASM +V-AAI-1S +P-2DS +R-ASM +P-ASM +D-NSN +V-PAI-3S +T-NPN +S-1SNPN +N-NPN +P-1NS +V-INI-1S +R-ASM +PREP +F-1ASM +V-PAN +CONJ +PREP +P-2GS +P-1DS +V-PAS-3S +PREP +T-DPM +N-DPM +T-GSN +N-GSN +CONJ +ADV +T-GSF +S-2SGSF +N-GSF +A-ASN-N +V-AAN +V-AAI-1S +CONJ +PRT-N +ADV +PREP +N-ASF +T-NSN +A-NSN +P-2GS +V-PAS-3S +CONJ +PREP +A-ASN +CONJ +ADV +PREP +D-ASN +V-API-3S +PREP +N-ASF +CONJ +A-ASM +P-ASM +V-PAS-2S +ADV-N +ADV +N-ASM +CONJ +PREP +N-ASM +N-ASM +A-ASM +ADV-S +P-1DS +CONJ +Q-DSN +ADV +P-2DS +CONJ +PREP +N-DSF +CONJ +PREP +N-DSM +CONJ +COND +P-1AS +V-PAI-2S +N-ASM +V-2AMM-2S +P-ASM +ADV +P-1AS +CONJ +COND +X-ASN +P-2AS +V-AAI-3S +PRT +V-PAI-3S +D-ASN +P-1DS +V-PAM-2S +P-1NS +N-NSM +V-AAI-1S +T-DSF +S-1SDSF +N-DSF +P-1NS +V-FAI-1S +CONJ +PRT-N +V-PAS-1S +P-2DS +CONJ +CONJ +F-2ASM +P-1DS +V-PAI-2S +PRT +N-VSM +P-1NS +P-2GS +V-2ADO-1S +PREP +N-DSM +V-AAM-2S +P-1GS +T-APN +N-APN +PREP +N-DSM +V-2RAP-NSM +T-DSF +N-DSF +P-2GS +V-AAI-1S +P-2DS +V-RAP-NSM +CONJ +CONJ +PREP +R-APN +V-PAI-1S +V-FAI-2S +CONJ +ADV +CONJ +V-PAM-2S +P-1DS +N-ASF +CONJ +V-PAI-1S +CONJ +PREP +T-GPF +N-GPF +P-2GP +V-FPI-1S +P-2DP +V-PNI-3S +P-2AS +N-NSM +T-NSM +A-NSM +P-1GS +PREP +N-DSM +N-DSM +N-NSM +N-NSM +N-NSM +N-NSM +T-NPM +A-NPM +P-1GS +T-NSF +N-NSF +T-GSM +N-GSM +N-GSM +N-GSM +PREP +T-GSN +N-GSN +P-2GP +ADV +CONJ +ADV +ADV +V-AAP-NSM +T-DPM +N-DPM +PREP +T-DPM +N-DPM +T-NSM +N-NSM +PREP +A-GSM-S +T-GPF +N-GPF +D-GPF +V-AAI-3S +P-1DP +PREP +N-DSM +R-ASM +V-AAI-3S +N-ASM +A-GPN +PREP +R-GSM +CONJ +V-AAI-3S +T-APM +N-APM +R-NSM +V-PAP-NSM +N-NSN +T-GSF +N-GSF +CONJ +N-NSM +T-GSF +N-GSF +P-GSM +PRT +V-PAP-NSM +T-APN +A-APN +T-DSN +N-DSN +T-GSF +N-GSF +P-GSM +N-ASM +T-GPF +N-GPF +V-AMP-NSM +V-AAI-3S +PREP +A-DSF +T-GSF +N-GSF +PREP +A-DPN +D-DSM +A-NSM-C +V-2ADP-NSM +T-GPM +N-GPM +K-DSN +A-ASN-C +N-ASN +PREP +P-APM +V-RAI-3S +CONJ +I-DSM +T-GPM +N-GPM +V-2AAI-3S +PRT +N-NSM +P-1GS +V-PAI-2S +P-2NS +P-1NS +ADV +V-RAI-1S +P-2AS +CONJ +ADV +P-1NS +V-FDI-1S +P-DSM +PREP +N-ASM +CONJ +P-NSM +V-FDI-3S +P-1DS +PREP +N-ASM +CONJ +CONJ +ADV +V-2AAS-3S +T-ASM +A-ASM-S +PREP +T-ASF +N-ASF +V-PAI-3S +CONJ +V-AAM-3P +P-DSM +A-NPM +N-NPM +N-GSM +CONJ +PRT +PREP +T-APM +N-APM +V-PAI-3S +T-NSM +V-PAP-NSM +T-APM +N-APM +P-GSM +N-APN +CONJ +T-APM +N-APM +P-GSM +N-GSN +N-ASF +CONJ +PREP +T-ASM +N-ASM +T-NSM +N-NSM +T-NSM +N-NSM +P-2GS +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +N-NSF +T-GSF +N-GSF +P-GSM +V-AAI-2S +N-ASF +CONJ +V-AAI-2S +N-ASF +PREP +D-ASN +V-AAI-3S +P-2AS +T-NSM +N-NSM +T-NSM +N-NSM +P-2GS +N-ASN +N-GSF +PREP +T-APM +A-APM +P-2GS +CONJ +N-VSM +P-2NS +PREP +N-APF +T-ASF +N-ASF +V-AAI-2S +CONJ +N-NPN +T-GPF +N-GPF +P-2GS +V-PAI-3P +T-NPM +N-NPM +P-NPM +V-FMI-3P +CONJ +P-2NS +V-PAI-2S +CONJ +A-NPM +V-FPI-3P +ADV +N-NSN +CONJ +ADV +N-ASN +V-FAI-2S +P-APM +ADV +N-ASN +CONJ +V-2FPI-3P +CONJ +P-2NS +T-NSM +P-NSM +V-PAI-2S +CONJ +T-NPN +N-NPN +P-2GS +PRT-N +V-FAI-3P +CONJ +PREP +I-ASM +T-GPM +N-GPM +V-RAI-3S-ATT +PRT +V-PNM-2S +PREP +A-GPN +P-1GS +ADV +PRT +V-2AAS-1S +T-APM +A-APM +P-2GS +N-ASN +T-GPM +N-GPM +P-2GS +PRT-I +A-NPM +V-PAI-3P +A-NPN +N-NPN +PREP +N-ASF +V-PPP-NPN +PREP +T-APM +V-PAP-APM +V-PAN +N-ASF +PREP +D-ASN +V-PAI-3S +ADV-C +V-PAN +P-1AP +T-DPN +V-APP-DPN +PRT-N +ADV +V-2APS-1P +CONJ +COND +T-NSM +PREP +N-GPM +V-APP-NSM +N-NSM +V-2ADI-3S +A-NSM +CONJ +A-NSF +N-NSF +CONJ +N-NSF +V-2AAI-3S +A-ASF +N-ASF +ADV-I +P-1NP +V-FDI-1P +V-AAP-NPM +D-GSF +N-GSF +R-NSF +N-ASF +V-2AAP-NSF +V-PPN +PREP +T-GSM +N-GSM +PREP +T-GPM +V-AAP-GPM +PREP +P-1AP +V-API-3S +V-PAP-GSM +T-GSM +N-GSM +PRT +N-DPN +CONJ +N-DPN +CONJ +A-DPF +N-DPF +CONJ +N-GSN +A-GSN +N-DPM +PREP +T-ASF +P-GSM +N-ASF +CONJ +PRT-N +N-DPM +V-AAI-3S +T-ASF +N-ASF +T-ASF +V-PAP-ASF +PREP +R-GSF +V-PAI-1P +CONJ +V-ADI-3S +ADV +X-NSM +V-PAP-NSM +I-NSN +V-PAI-3S +N-NSM +CONJ +V-PNI-2S +P-GSM +PRT +N-NSM +N-GSM +CONJ +V-PNI-2S +P-ASM +V-AAI-2S +P-ASM +A-ASN +X-ASN +PREP +N-APM +N-DSF +CONJ +N-DSF +V-AAI-2S +P-ASM +A-APN +V-AAI-2S +ADV +T-GPM +N-GPM +P-GSM +CONJ +PREP +T-DSN +V-AAN +P-DSM +T-APN +A-APN +A-ASN-N +V-AAI-3S +P-DSM +A-ASN +CONJ +ADV +ADV-N +V-PAI-1P +P-DSM +T-APN +A-APN +V-RPP-APN +CONJ +V-PAI-1P +T-ASM +A-ASN +X-ASN +PREP +N-APM +V-RPP-ASM +N-ASM +PREP +T-ASN +N-ASN +T-GSM +N-GSM +N-DSF +CONJ +N-DSF +V-RPP-ASM +ADV +N-DSF +N-GSM +PREP +A-GSM +V-ADS-3S +N-GSM +CONJ +V-IAI-3S +P-DSM +PREP +R-ASM +T-NPN +A-NPN +CONJ +PREP +R-GSM +T-NPN +A-NPN +A-APM +N-APM +PREP +N-ASF +V-2AAP-ASM +T-ASM +N-ASM +T-GSF +N-GSF +P-GPM +PREP +N-GPN +V-AAN +CONJ +PRT +T-NSM +V-PAP-NSM +CONJ +T-NPM +V-PPP-NPM +PREP +A-GSM +A-NPM +PREP +R-ASF +N-ASF +PRT-N +V-PNI-3S +N-APM +P-APM +V-PAN +V-PAP-NSM +V-FAI-1S +T-ASN +N-ASN +P-2GS +T-DPM +N-DPM +P-1GS +PREP +A-DSN +N-GSF +V-FAI-1S +P-2AS +CONJ +ADV +P-1NS +V-FDI-1S +V-2RAP-NSM +PREP +P-DSM +CONJ +ADV +V-2AMM-2S +P-1NS +CONJ +T-NPN +N-NPN +R-APN +P-1DS +V-AAI-3S +T-NSM +N-NSM +CONJ +CONJ +T-NPN +N-NPN +V-RAI-3S +N-GSN +CONJ +N-GSF +CONJ +P-NSM +ADV +V-2AAI-3S +T-GPN +P-GPN +CONJ +PREP +T-GSM +N-GSM +V-AAS-3S +T-ASM +T-ASN +N-ASN +T-GSM +N-GSM +V-PAP-ASM +D-NSN +V-PAI-3S +T-ASM +A-ASM +CONJ +V-AAS-3S +D-APM +K-NPM +N-DSM +N-GSM +PREP +A-GSN +T-GSN +V-PAN +A-NPM +N-GSF +V-IAI-3P +CONJ +PRT-N +ADV +N-GPM +V-PNI-3S +CONJ +N-GSN +N-PRI +V-PNI-3S +ADV +V-IAI-3S +PREP +A-APN +T-DPM +N-DPM +V-APN +CONJ +V-2ADS-3S +A-NSM +CONJ +A-NSM +N-NSM +T-APN +PREP +T-ASM +N-ASM +PREP +T-ASN +V-PPN +T-APF +N-APF +T-GSM +N-GSM +CONJ +PREP +R-DSN +V-2RAI-3S +P-NSM +V-APP-NSM +V-PNI-3S +T-DPM +V-PPP-DPM +V-AAN +ADV +N-VPM +A-VPM +N-GSF +A-GSF +A-NPM +V-AAM-2P +T-ASM +N-ASM +CONJ +N-ASM +T-GSF +N-GSF +P-1GP +N-ASM +A-ASM +V-PAP-ASM +T-DSM +V-AAP-DSM +P-ASM +ADV +CONJ +N-NSM +PREP +A-DSM +T-DSM +N-DSM +P-GSM +CONJ +A-GSF-C +N-GSF +D-NSM +PREP +N-ASM +V-RPI-3S +PREP +K-ASN +A-ASF-C +N-ASF +V-PAI-3S +T-GSM +N-GSM +T-NSM +V-AAP-NSM +P-ASM +CONJ +A-NSM +N-NSM +V-PPI-3S +PREP +X-GSM +CONJ +T-NSM +A-APN +V-AAP-NSM +N-NSM +CONJ +PRT +N-NSM +A-NSM +PREP +A-DSM +T-DSM +N-DSM +P-GSM +ADV +N-NSM +PREP +N-ASN +T-GPN +V-FPP-GPN +CONJ +N-NSM +ADV +N-NSM +PREP +T-ASM +N-ASM +P-GSM +R-GSM +N-NSM +V-PAI-1P +P-1NP +COND +T-ASF +N-ASF +CONJ +T-ASN +N-ASN +T-GSF +N-GSF +ADV +N-GSN +A-ASF +V-2AAS-1P +CONJ +ADV +V-PAI-3S +T-NSN +N-NSN +T-NSN +A-NSN +COND +ADV +T-GSF +N-GSF +P-GSM +V-AAS-2P +PRT-N +V-PAS-2P +T-APF +N-APF +P-2GP +ADV +PREP +T-DSM +N-DSM +PREP +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-DSF +A-DSF +ADV +V-AAI-3P +T-NPM +N-NPM +P-2GP +PREP +N-DSF +CONJ +V-2AAI-3P +T-APN +N-APN +P-1GS +A-NUI +N-APN +CONJ +V-AAI-1S +T-DSF +N-DSF +D-DSF +CONJ +V-2AAI-1S +ADV +V-PPI-3P +T-DSF +N-DSF +CONJ +P-NPM +PRT-N +V-2AAI-3P +T-APF +N-APF +P-1GS +ADV +V-AAI-1S +PREP +T-DSF +N-DSF +P-1GS +COND +V-FDI-3P +PREP +T-ASF +N-ASF +P-1GS +V-PAM-2P +N-VPM +PRT-N +ADV +V-FDI-3S +PREP +X-DSM +P-2GP +N-NSF +A-NSF +N-GSF +PREP +T-DSN +V-2AAN +PREP +N-GSM +V-PAP-GSM +CONJ +V-PAM-2P +F-2APM +PREP +A-ASF +N-ASF +ADV +R-GSM +T-ASN +ADV +V-PPI-3S +CONJ +PRT-N +V-APS-3S +X-NSM +PREP +P-2GP +N-DSF +T-GSF +N-GSF +CONJ +A-NPM +T-GSM +N-GSM +V-2RAI-1P +COND +T-ASF +N-ASF +T-GSF +N-GSF +ADV +N-GSN +A-ASF +V-2AAS-1P +PREP +T-DSN +V-PPN +COND +ADV +T-GSF +N-GSF +P-GSM +V-AAS-2P +PRT-N +V-PAS-2P +T-APF +N-APF +P-2GP +ADV +PREP +T-DSM +N-DSM +CONJ +I-NPM +V-AAP-NPM +V-AAI-3P +CONJ +PRT-N +A-NPM +T-NPM +V-2AAP-NPM +PREP +N-GSF +PREP +N-GSM +CONJ +I-DPM +V-AAI-3S +A-NUI +N-APN +PRT-I +T-DPM +V-AAP-DPM +R-GPM +T-NPN +N-NPN +V-2AAI-3S +PREP +T-DSF +A-DSF +CONJ +I-DPM +V-AAI-3S +PRT-N +V-FDN +PREP +T-ASF +N-ASF +P-GSM +COND +PRT-N +T-DPM +V-AAP-DPM +CONJ +V-PAI-1P +CONJ +PRT-N +V-AOI-3P-ATT +V-2AAN +PREP +N-ASF +CONJ +V-AOS-1P +PRT-N +ADV +V-PPP-GSF +N-GSF +V-2AAN +PREP +T-ASF +N-ASF +P-GSM +V-PAS-3S +X-NSM +PREP +P-2GP +V-RAN +CONJ +CONJ +V-PAI-1P +V-RPP-NPM +ADV +D-NPM-K +CONJ +PRT-N +V-AAI-3S +T-NSM +N-NSM +T-GSF +N-GSF +D-APM +PRT-N +V-RPP-NSM +T-DSF +N-DSF +T-DPM +V-AAP-DPM +CONJ +V-PNI-1P +PREP +T-ASF +N-ASF +T-NPM +V-AAP-NPM +ADV +V-RAI-3S-ATT +ADV +V-AAI-1S +PREP +T-DSF +N-DSF +P-1GS +COND +V-FDI-3P +PREP +T-ASF +N-ASF +P-1GS +CONJ +T-GPN +N-GPN +PREP +N-GSF +N-GSM +V-AOP-GPN +CONJ +V-RAI-3S-ATT +ADV +PREP +T-GSF +A-GSF +ADV +CONJ +V-AAI-3S +T-NSM +N-NSM +PREP +T-DSF +N-DSF +T-DSF +A-DSF +PREP +A-GPN +T-GPN +N-GPN +P-GSM +CONJ +PREP +D-DSM +ADV +COND +V-FDI-3P +PREP +T-ASF +N-ASF +P-1GS +CONJ +CONJ +V-PPI-3S +X-APM +V-2AAN +PREP +P-ASF +CONJ +T-NPM +ADV-C +V-APP-NPM +PRT-N +V-2AAI-3P +PREP +N-ASF +ADV +V-PAI-3S +X-ASF +N-ASF +ADV +PREP +N-PRI +V-PAP-NSM +PREP +D-ASM +N-ASM +ADV +V-RPI-3S +COND +ADV +T-GSF +N-GSF +P-GSM +V-AAS-2P +PRT-N +V-PAS-2P +T-APF +N-APF +P-2GP +CONJ +COND +P-APM +N-NSM +V-AAI-3S +PRT +PRT-N +PREP +A-GSF +N-GSF +V-IAI-3S +PREP +D-APN +PRT +V-PPI-3S +N-NSM +T-DSM +N-DSM +T-GSM +N-GSM +CONJ +T-NSM +V-2AAP-NSM +PREP +T-ASF +N-ASF +P-GSM +CONJ +P-NSM +V-AAI-3S +PREP +T-GPN +N-GPN +P-GSM +ADV +PREP +T-GPN +A-GPN +T-NSM +N-NSM +CONJ +V-AAS-1P +V-2AAN +PREP +D-ASF +T-ASF +N-ASF +CONJ +PRT-N +PREP +T-DSN +P-DSN +N-DSN +T-GSF +N-GSF +X-NSM +V-2AAS-3S +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PAP-NSM +CONJ +A-NSM +CONJ +A-NSM-C +PREP +A-ASF +N-ASF +A-ASF +CONJ +V-PNP-NSM +ADV +N-GSM +N-GSF +CONJ +N-GSN +PRT +N-GPM +CONJ +N-GPM +CONJ +A-NSM +N-GPF +CONJ +N-GPF +N-GSF +CONJ +PRT-N +V-PAI-3S +N-NSF +A-NSF +PREP +P-GSM +CONJ +A-NPN +A-NPN +CONJ +V-RPP-NPN +T-DPM +N-DPM +P-GSM +PREP +R-ASM +P-1DP +T-NSM +N-NSM +CONJ +V-PAP-NPM +N-ASM +A-ASM +V-2RAP-ASM +T-APM +N-APM +N-ASM +T-ASM +N-ASM +T-GSM +N-GSM +V-PAS-1P +T-GSF +N-GSF +CONJ +V-PAI-1P +N-ASM +PRT-N +PRT-N +V-PNP-ASM +V-AAN +T-DPF +N-DPF +P-1GP +CONJ +V-RPP-ASM +PREP +A-APN +PREP +N-ASF +ADV +N-GSF +CONJ +V-PNS-1P +PREP +N-GSF +T-DSM +N-DSM +T-GSF +N-GSF +CONJ +V-2AAS-1P +N-ASN +CONJ +N-ASF +V-2AAS-1P +PREP +A-ASF +N-ASF +CONJ +A-NSM +N-NSM +PREP +N-GPM +V-PPP-NSM +PREP +N-GPM +V-PPI-3S +T-APN +PREP +T-ASM +N-ASM +CONJ +V-PAS-3S +PRT +N-APN +CONJ +N-APF +PREP +N-GPF +V-PNP-NSM +V-PAN +T-DPM +V-PAP-DPM +CONJ +V-PPP-DPM +CONJ +CONJ +P-NSM +V-PNI-3S +N-ASF +CONJ +PREP +P-ASF +V-PAI-3S +ADV +PREP +T-GSM +N-GSM +ADV +CONJ +PREP +F-3GSM +V-PAN +PREP +N-GPF +CONJ +PRT-N +F-3DSM +X-NSM +V-PAI-3S +T-ASF +N-ASF +CONJ +V-PPP-NSM +PREP +T-GSM +N-GSM +ADV +CONJ +N-PRI +ADV +CONJ +T-NSM +N-NSM +PRT-N +F-3ASM +V-AAI-3S +V-AON +N-ASM +CONJ +T-NSM +V-AAP-NSM +PREP +P-ASM +N-NSM +P-1GS +V-PAI-2S +P-2NS +P-1NS +ADV +V-RAI-1S +P-2AS +ADV +CONJ +PREP +A-DSM +V-PAI-3S +P-2NS +N-NSM +PREP +T-ASM +N-ASM +PREP +T-ASF +N-ASF +N-PRI +R-NSM +PREP +T-DPF +N-DPF +T-GSF +N-GSF +P-GSM +PRT +N-APF +CONJ +N-APF +PREP +T-ASM +V-PNP-ASM +V-PAN +P-ASM +PREP +N-GSM +PREP +N-GSF +A-GSF +CONJ +N-GPN +V-AAP-NSM +CONJ +V-APP-NSM +PREP +T-GSF +N-GSF +CONJ +V-PAP-NSM +N-NSM +V-2AAI-3S +PREP +R-GPN +V-2AAI-3S +T-ASF +N-ASF +CONJ +V-APP-NSM +V-2ADI-3S +A-DPM +T-DPM +V-PAP-DPM +P-DSM +A-NSM +N-GSF +A-GSF +V-APP-NSM +PREP +T-GSM +N-GSM +N-NSM +PREP +T-ASF +N-ASF +N-PRI +PREP +R-GSM +A-NSM +P-1DP +T-NSM +N-NSM +CONJ +A-NSM +V-PAN +CONJ +A-NPM +V-2RAI-2P +T-DPF +N-DPF +CONJ +CONJ +V-PAP-NPM +V-PAN +N-NPM +PREP +T-ASM +N-ASM +ADV +V-PAI-2P +N-ASF +T-GSN +V-PAN +P-2AP +X-ASM +T-APN +N-APN +T-GSF +N-GSF +T-GPN +N-GPN +T-GSM +N-GSM +CONJ +V-2RAI-2P +V-PAP-NPM +N-ASF +N-GSN +PRT-N +A-GSF +N-GSF +CONJ +A-NSM +T-NSM +V-PAP-NSM +N-GSN +A-NSM +N-GSM +N-GSF +CONJ +A-NSM +V-PAI-3S +CONJ +V-PAI-3S +T-NSF +A-NSF +N-NSF +A-GPM +T-GPM +PREP +T-ASF +N-ASF +T-APN +N-APN +V-RPP-APN +V-PAP-GPM +PREP +N-ASF +PRT +A-GSN +CONJ +A-GSN +CONJ +V-2AAP-NPM +T-ASM +T-GSF +N-GSF +T-GSM +N-GSM +N-ASM +PREP +T-ASF +N-ASF +V-PPS-1P +PRT-N +ADV +V-PMP-NPM +N-ASM +N-GSF +PREP +A-GPN +N-GPN +CONJ +N-GSF +PREP +N-ASM +N-ASF +N-GPM +PRT +N-GSF +N-GPF +N-GSF +A-GPM +CONJ +N-GSN +A-GSN +CONJ +D-ASN +V-FAI-1P +COND +V-PAS-3S +T-NSM +N-NSM +CONJ +A-NSN +T-APM +ADV +V-APP-APM +PRT +V-ADP-APM +T-GSF +N-GSF +T-GSF +A-GSF +CONJ +A-APM +N-GSN +A-GSN +V-AOP-APM +CONJ +V-ADP-APM +A-ASN +N-GSM +N-ASN +PRT +N-APF +V-PAP-GSM +N-GSM +CONJ +V-2AAP-APM +ADV +V-PAN +PREP +N-ASF +V-PAP-APM +F-3DPM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-PAP-APM +CONJ +N-NSF +T-NSF +V-2AAP-NSF +T-ASM +PREP +P-GSF +V-PNP-ASM +ADV +N-ASM +CONJ +V-PAP-NSF +N-ASF +A-ASF +D-DPM +PREP +R-APM +CONJ +V-PPI-3S +V-PAI-3S +N-GSF +PREP +T-GSM +N-GSM +CONJ +V-PAP-NSF +N-APF +CONJ +N-APM +A-NSF +CONJ +N-GSF +ADV +R-GSF +T-NSN +N-NSN +PREP +N-ASF +CONJ +A-VPM +V-RPI-1P +PREP +P-2GP +T-APN +A-APN-C +CONJ +V-PPP-APN +N-GSF +COND +CONJ +ADV +V-PAI-1P +CONJ +PRT-N +A-NSM +T-NSM +N-NSM +V-2ADN +T-GSN +N-GSN +P-2GP +CONJ +T-GSF +N-GSF +R-GSF +V-AMI-2P +PREP +T-ASN +N-ASN +P-GSM +V-AAP-NPM +CONJ +V-PAP-NPM +T-DPM +A-DPM +CONJ +V-PAI-1P +A-ASM +P-2GP +T-ASF +P-ASF +N-ASF +V-PMN +PREP +T-ASF +N-ASF +T-GSF +N-GSF +ADV +N-GSN +CONJ +PRT-N +A-NPM +V-2ADS-2P +CONJ +N-NPM +T-GPM +PREP +N-GSF +CONJ +N-GSF +V-PAP-GPM +T-APF +N-APF +CONJ +T-DSM +N-PRI +V-ADP-NSM +T-NSM +N-NSM +CONJ +PREP +A-GSM-N +A-GSM-C +V-AAN +V-IAI-3S +V-AAI-3S +PREP +F-3GSM +V-PAP-NSM +COND +PRT +V-PAP-NSM +V-FAI-1S +P-2AS +CONJ +V-PAP-NSM +V-FAI-1S +P-2AS +CONJ +ADV +V-AAP-NSM +V-2AAI-3S +T-GSF +N-GSF +CONJ +N-NPM +PREP +T-GSM +A-GSM-C +V-PAI-3P +CONJ +P-DPM +A-GSF +N-GSF +N-NSN +PREP +N-ASF +T-NSM +N-NSM +PREP +R-DSM +A-ASN-C +V-PNP-NSM +V-AAN +T-DPM +N-DPM +T-GSF +N-GSF +T-ASN +A-ASN +T-GSF +N-GSF +P-GSM +T-NSM +N-NSM +V-AAI-3S +N-DSM +CONJ +PREP +A-NUI +N-GPN +A-GPN +PREP +R-DPN +A-NSN +V-ADN +N-ASM +A-ASF +N-ASF +V-PAS-1P +T-NPM +V-2AAP-NPM +V-AAN +T-GSF +V-PNP-GSF +N-GSF +R-ASF +V-PAI-1P +ADV +N-ASF +T-GSF +N-GSF +PRT +A-ASF +CONJ +A-ASF +CONJ +V-PNP-ASF +PREP +T-ASN +A-ASN-C +T-GSN +N-GSN +ADV +A-NSM +N-NSM +PREP +P-1GP +V-2AAI-3S +PREP +T-ASF +N-ASF +N-PRI +N-NSM +V-2ADP-NSM +PREP +T-ASM +N-ASM +CONJ +D-NSM +T-NSM +N-PRI +N-NSM +N-PRI +N-NSM +T-GSM +N-GSM +T-GSM +A-GSM-S +T-NSM +V-AAP-NSM +N-PRI +V-PAP-DSM +PREP +T-GSF +N-GSF +T-GPM +N-GPM +CONJ +V-AAP-NSM +P-ASM +R-DSM +CONJ +A-ASF +PREP +A-GPN +V-AAI-3S +N-PRI +PRT +ADV-S +V-PPP-NSM +N-NSM +N-GSF +CONJ +ADV +CONJ +N-NSM +N-PRI +R-NSN +V-PAI-3S +N-NSM +N-GSF +A-NSM +A-NSM +A-NSM +CONJ-N +N-ASF +N-GPF +CONJ-N +N-GSF +N-ASN +V-PAP-NSM +CONJ +V-RPP-NSM +T-DSM +N-DSM +T-GSM +N-GSM +V-PAI-3S +N-NSM +PREP +T-ASN +A-ASN +CONJ +V-PAM-2P +A-NSM +D-NSM +R-DSM +A-ASF +N-PRI +T-NSM +N-NSM +V-AAI-3S +PREP +T-GPN +N-GPN +CONJ +PRT +T-NPM +PREP +T-GPM +N-GPM +N-PRI +T-ASF +N-ASF +V-PAP-NPM +N-ASF +V-PAI-3P +V-PAN +PREP +T-ASM +N-ASM +T-ASM +N-ASM +D-NSN +V-PAI-3S +T-APM +N-APM +P-GPM +CONJ +V-2RAP-APM +PREP +T-GSF +N-GSF +N-PRI +CONJ +T-NSM +PRT-N +V-PPP-NSM +PREP +P-GPM +V-RAI-3S +N-PRI +CONJ +T-ASM +V-PAP-ASM +T-APF +N-APF +V-RAI-3S +CONJ +ADV +A-GSF +N-GSF +T-NSN +A-NSN +PREP +T-GSM +A-GSM-C +V-PPI-3S +CONJ +PRT +ADV +A-APF +V-PAP-NPM +N-NPM +V-PAI-3P +CONJ +ADV +V-PPP-NSM +CONJ +V-PAI-3S +CONJ +ADV +N-ASN +V-2AAN +PREP +N-PRI +CONJ +N-NSM +T-NSM +A-APF +V-PAP-NSM +V-RPI-3S +CONJ +ADV +PREP +T-DSF +N-DSF +T-GSM +N-GSM +V-IAI-3S +ADV +V-AAI-3S +P-DSM +N-PRI +PRT +CONJ +COND +N-NSF +PREP +T-GSF +A-GSF +N-GSF +V-IAI-3S +CONJ +T-NSM +N-NSM +PREP +P-GSF +V-RPI-3S +I-NSF +ADV +N-NSF +PREP +T-ASF +N-ASF +N-PRI +V-PMN +A-ASM +N-ASM +CONJ +PRT-N +PREP +T-ASF +N-ASF +N-PRI +V-PPN +CONJ +V-PPP-GSF +T-GSF +N-GSF +PREP +N-GSF +CONJ +N-GSM +N-NSF +V-PNI-3S +CONJ +PREP +R-ASM +V-PPI-3S +D-NPN +N-GSF +A-GSF +V-RAI-3S +PREP +R-GSF +A-NSM-N +V-RAI-3S +T-DSN +N-DSN +CONJ +A-NSN +CONJ +PREP +N-GSM +V-RAI-3S +T-NSM +N-NSM +P-1GP +PREP +R-ASF +N-ASF +PREP +N-GPM +A-ASN-N +N-NSM +V-AAI-3S +CONJ +A-NSN-C +ADV +A-NSN +V-PAI-3S +COND +PREP +T-ASF +N-ASF +N-PRI +V-PMI-3S +N-NSM +A-NSM +R-NSM +V-2RAI-3S +PRT-N +PREP +N-ASM +N-GSF +A-GSF +CONJ +PREP +N-ASF +N-GSF +A-GSF +CONJ +V-PPI-3S +CONJ +P-2NS +N-NSM +PREP +T-ASM +N-ASM +PREP +T-ASF +N-ASF +N-PRI +CONJ +PRT +N-NSF +V-PAP-GSF +N-GSF +V-PNI-3S +PREP +T-ASN +P-GSF +A-ASN +CONJ +A-ASN +CONJ +A-ASN-N +V-AAI-3S +T-NSM +N-NSM +CONJ +N-NSF +A-GSF-C +N-GSF +PREP +R-GSF +V-PAI-1P +T-DSM +N-DSM +CONJ +PREP +K-ASN +PRT-N +ADV +N-GSF +CONJ +PRT +T-NPM +ADV +N-GSF +V-PAI-3P +V-2RAP-NPM +N-NPM +CONJ +T-NSM +PREP +N-GSF +PREP +T-GSM +V-PAP-GSM +PREP +P-ASM +V-AAI-3S +N-NSM +CONJ +PRT-N +V-FOI-3S +P-2NS +N-NSM +PREP +T-ASM +N-ASM +PREP +D-ASN +CONJ +A-GSF-C +N-GSF +A-NSM +V-2RAI-3S +N-NSM +CONJ +PRT +T-NPM +A-NPM-C +V-PAI-3P +V-2RAP-NPM +N-NPM +PREP +T-ASN +N-DSM +V-PPN +V-PAN +CONJ +T-NSM +PREP +T-ASN +V-PAN +P-ASM +PREP +T-ASM +N-ASM +A-ASF +V-PAI-3S +T-ASF +N-ASF +ADV +CONJ +V-PNI-3S +V-PAN +PREP +T-ASN +A-ASN +T-APM +V-PNP-APM +PREP +P-GSM +T-DSM +N-DSM +ADV +V-PAP-NSM +PREP +T-ASN +V-PAN +PREP +P-GPM +CONJ +P-1DP +CONJ +V-IAI-3S +D-NSM +N-NSM +A-NSM +A-NSM +A-NSM +V-RPP-NSM +PREP +T-GPM +A-GPM +CONJ +A-NSM-C +T-GPM +N-GPM +V-2ADP-NSM +R-NSM +PRT-N +V-PAI-3S +PREP +N-ASF +N-ASF +ADV +T-NPM +N-NPM +ADV-C +PREP +T-GPF +A-GPF +N-GPF +N-APF +V-PAN +ADV +T-GPF +T-GSM +N-GSM +CONJ +D-ASN +V-AAI-3S +ADV +F-3ASM +V-AAP-NSM +CONJ +T-NSM +N-NSM +N-APM +V-PAI-3S +N-APM +V-PAP-APM +N-ASF +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +T-GSF +PREP +T-ASM +N-ASM +N-ASM +PREP +T-ASM +N-ASM +V-RPP-ASM +CONJ +N-NSN +PREP +T-DPN +V-PPP-DPN +V-PAI-1P +D-ASM +N-ASM +R-NSM +V-AAI-3S +PREP +A-DSF +T-GSM +N-GSM +T-GSF +N-GSF +PREP +T-DPM +N-DPM +N-NSM +T-GPN +A-GPN +CONJ +T-GSF +N-GSF +T-GSF +A-GSF +R-ASF +V-AAI-3S +T-NSM +N-NSM +PRT-N +N-NSM +CONJ +A-NSM +N-NSM +PREP +T-ASN +V-PAN +PRT +N-APN +CONJ +N-APF +V-PPI-3S +ADV +A-NSN +V-PAN +CONJ +D-ASM +X-ASN +R-ASN +V-AAS-3S +CONJ +PRT +COND +V-IAI-3S +PREP +N-GSF +PRT +CONJ-N +V-IAI-3S +N-NSM +V-PAP-GPM +T-GPM +V-PAP-GPM +PREP +N-ASM +T-APN +N-APN +R-NPM +N-DSN +CONJ +N-DSF +T-GPN +A-GPN +V-PAI-3P +ADV +V-RPI-3S +N-NSM +V-PAP-NSM +V-PAN +T-ASF +N-ASF +CONJ +V-PAI-3S +V-PAM-2S +V-FAI-2S +A-APN +PREP +T-ASM +N-ASM +T-ASM +V-APP-ASM +P-2DS +PREP +T-DSN +N-DSN +CONJ +ADV +A-GSF-C +N-GSF +V-2RAI-3S +K-DSN +CONJ +V-PAI-3S +N-NSM +A-GSF-C +N-GSF +R-NSF +PREP +A-DPF-C +N-DPF +V-RPI-3S +CONJ +COND +T-NSF +A-NSF-S +D-NSF +V-IAI-3S +A-NSF +PRT +PRT-N +A-GSF +N-NSM +V-IPI-3S +CONJ +V-PNP-NSM +P-APM +V-PAI-3S +V-2AMM-2S +N-NPF +V-PNI-3P +V-PAI-3S +N-NSM +CONJ +V-FAI-1S +PREP +T-ASM +N-ASM +N-PRI +CONJ +PREP +T-ASM +N-ASM +N-GSM +N-ASF +A-ASF +PRT-N +PREP +T-ASF +N-ASF +R-ASF +V-AAI-1S +T-DPM +N-DPM +P-GPM +PREP +N-DSF +V-2ADP-GSM +P-1GS +T-GSF +N-GSF +P-GPM +V-2AAN +P-APM +PREP +N-GSF +N-GSF +CONJ +P-NPM +PRT-N +V-AAI-3P +PREP +T-DSF +N-DSF +P-1GS +P-1NS-K +V-AAI-1S +P-GPM +V-PAI-3S +N-NSM +CONJ +D-NSF +T-NSF +N-NSF +R-ASF +V-FDI-1S +T-DSM +N-DSM +N-PRI +PREP +T-APF +N-APF +D-APF +V-PAI-3S +N-NSM +V-PAP-NSM +N-APM +P-1GS +PREP +T-ASF +N-ASF +P-GPM +CONJ +PREP +N-APF +P-GPM +V-FAI-1S +P-APM +CONJ +V-FDI-1S +P-DPM +PREP +N-ASM +CONJ +P-NPM +V-FDI-3P +P-1DS +PREP +N-ASM +CONJ +PRT-N +PRT-N +V-AAS-3P +A-NSM +T-ASM +N-ASM +P-GSM +CONJ +A-NSM +T-ASM +N-ASM +P-GSM +V-PAP-NSM +V-2AAM-2S +T-ASM +N-ASM +CONJ +A-NPM +V-FAI-3P +P-1AS +PREP +A-GSM +ADV +A-GSM +P-GPM +CONJ +A-NSM-ATT +V-FDI-1S +T-DPF +N-DPF +P-GPM +CONJ +T-GPF +N-GPF +P-GPM +PRT-N +PRT-N +V-APS-1S +ADV +PREP +T-DSN +V-PAN +A-ASF +V-RAI-3S +T-ASF +A-ASF-S +CONJ +T-NSN +V-PPP-NSN +CONJ +V-PAP-NSN +ADV +N-GSM +PRT +CONJ +V-IAI-3S +CONJ +T-NSF +A-NSF-S +N-APN +N-GSF +PRT +T-ASN +A-ASN +A-ASN +CONJ +V-API-3S +N-NSF +T-NSF +A-NSF-S +PREP +R-DSF +PRT +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GPM +N-GPM +R-NSF +V-PPI-3S +A-NPN +CONJ +PREP +T-ASN +A-ASN +N-ASN +N-NSF +T-NSF +V-PPP-NSF +A-NPN +A-GPN +V-PAP-NSF +A-ASN +N-ASN +CONJ +T-ASF +N-ASF +T-GSF +N-GSF +V-RPP-ASF +ADV +N-DSN +PREP +R-DSF +N-NSF +A-NSF +V-PAP-NSF +T-ASN +HEB +CONJ +T-NSF +N-NSF +N-PRI +T-NSF +V-AAP-NSF +CONJ +T-NPF +N-NPF +T-GSF +N-GSF +CONJ +ADV +P-GSF +N-PRI +N-GSF +V-PAP-NPN +T-ASN +N-ASN +PREP +R-GPN +PRT-N +V-PAI-3S +ADV +V-PAN +PREP +N-ASN +CONJ +D-GPM +ADV +V-RPP-GPM +PRT +PREP +T-ASF +A-ASF-S +N-ASF +PREP +A-GSN +V-PAI-3P +T-NPM +N-NPM +T-APF +N-APF +V-PAP-NPM +CONJ +PREP +T-ASF +A-ASF +ADV +T-GSM +N-GSM +A-NSM +T-NSM +N-NSM +PRT-N +ADV +N-GSN +R-ASN +V-PAI-3S +PREP +F-3GSM +CONJ +T-GPN +T-GSM +N-GSM +N-GPN +D-ASN +V-PAP-GSN +T-GSN +N-GSN +T-GSN +A-GSN +ADV-N +V-RPN +T-ASF +T-GPN +A-GPN +N-ASF +ADV +T-GSF +A-GSF-S +N-GSF +V-PAP-GSF +N-ASF +R-NSF +N-NSF +PREP +T-ASM +N-ASM +T-ASM +V-RAP-ASM +PREP +R-ASF +PRT +N-NPN +CONJ +N-NPF +V-PPI-3P +PRT-N +V-PNP-NPF +PREP +N-ASF +V-AAN +T-ASM +V-PAP-ASM +ADV +PREP +N-DPN +CONJ +N-DPN +CONJ +A-DPM +N-DPM +N-NPN +N-GSF +ADV +N-GSM +N-GSF +V-PNP-NPN +CONJ +V-2ADP-NSM +N-NSM +N-NSM +T-GPN +V-2ADP-GPN +A-GPN +PREP +T-GSF +A-GSF-C +CONJ +A-GSF-C +N-GSF +PRT-N +A-GSF +D-NSN +V-PAI-3S +PRT-N +D-GSF +T-GSF +N-GSF +CONJ-N +PREP +N-GSN +N-GPM +CONJ +N-GPM +CONJ +PREP +T-GSN +A-GSN +N-GSN +V-2AAI-3S +ADV +PREP +T-APN +A-APN +A-ASF +N-ASF +V-2AMP-NSM +CONJ +COND +T-NSN +N-NSN +N-GPM +CONJ +N-GPM +CONJ +N-NSF +N-GSF +V-PAP-NSF +T-APM +V-RPP-APM +V-PAI-3S +PREP +T-ASF +T-GSF +N-GSF +N-ASF +Q-DSN +ADV +T-NSN +N-NSN +T-GSM +N-GSM +R-NSM +PREP +N-GSN +A-GSN +F-3ASM +V-AAI-3S +A-ASM +T-DSM +N-DSM +V-FAI-3S-ATT +T-ASF +N-ASF +P-1GP +PREP +A-GPN +N-GPN +PREP +T-ASN +V-PAN +N-DSM +V-PAP-DSM +CONJ +PREP +D-ASN +N-GSF +A-GSF +N-NSM +V-PAI-3S +ADV +N-GSM +V-2ADP-GSM +PREP +N-ASF +T-GPF +PREP +T-DSF +A-DSF-S +N-DSF +N-GPF +V-2AAS-3P +T-NPM +V-RPP-NPM +T-ASF +N-ASF +T-GSF +A-GSF +N-GSF +CONJ +ADV +N-NSF +N-NSF +V-PPN +N-ASM +T-GSM +V-2AMP-GSM +CONJ +N-NSF +PREP +A-DPM +A-NSF +CONJ +PRT-N +ADV +V-PAI-3S +ADV +V-PAI-3S +T-NSM +V-2AMP-NSM +ADV +CONJ-N +T-NSF +A-NSF-S +ADV +N-GSN +V-RPI-3S +CONJ +V-APP-GSF +A-GSF +N-GSF +PREP +T-ASM +N-ASM +PREP +N-GSM +A-DSM +T-DSM +N-DSM +V-2AAP-NSM +T-ASN +N-ASN +T-GPM +N-GPM +CONJ +T-GPM +N-GPM +PREP +N-GSN +CONJ +N-GSN +A-GSN +CONJ +N-GSM +PRT +P-ASN +T-ASN +N-ASN +CONJ +A-ASM +T-ASM +N-ASM +V-AAI-3S +V-PAP-NSM +D-NSN +T-NSN +N-NSN +T-GSF +N-GSF +R-GSF +V-ADI-3S +PREP +P-2AP +T-NSM +N-NSM +CONJ +CONJ +T-ASF +N-ASF +CONJ +A-APN +T-APN +N-APN +T-GSF +N-GSF +T-DSN +N-DSN +ADV +V-AAI-3S +CONJ +ADV +PREP +N-DSN +A-NPN +V-PPI-3S +PREP +T-ASM +N-ASM +CONJ +ADV +N-GSF +PRT-N +V-PNI-3S +N-NSF +CONJ +N-NSF +PRT +T-APN +N-APN +T-GPN +PREP +T-DPM +N-DPM +D-DPN +V-PPN +CONJ +P-APN +T-APN +A-APN +N-DPF +A-DPF-C +PREP +D-APF +CONJ +V-2AAI-3S +N-NSM +PRT-N +PREP +A-APN +A-APN +A-APN +T-GPN +A-GPN +CONJ +PREP +P-ASM +T-ASM +N-ASM +ADV +V-APN +T-DSN +N-DSN +T-GSM +N-GSM +PREP +P-1GP +CONJ-N +CONJ +ADV +V-PAS-3S +F-3ASM +ADV +T-NSM +N-NSM +V-PNI-3S +PREP +T-APN +A-APN +PREP +N-ASM +PREP +N-DSN +A-DSN +CONJ +V-IAI-3S +P-ASM +ADV +V-2AAN +PREP +N-GSF +N-GSM +CONJ +ADV +ADV +PREP +N-DSF +T-GPM +N-GPM +PREP +N-ASF +T-GSF +N-GSF +PREP +T-GSF +N-GSF +P-GSM +V-RPI-3S +CONJ +PREP +K-ASN +V-PNI-3S +T-DPM +N-DPM +ADV +V-2AAN +CONJ +PREP +D-ASN +N-NSF +ADV +CONJ +T-NSM +N-NSM +ADV +V-APP-NSM +PREP +T-ASN +A-GPM +N-APF +V-2AAN +PREP +A-GSN +ADV +N-GSF +V-FPI-3S +T-DPM +P-ASM +V-PNP-DPM +PREP +N-ASF +CONJ +T-NSM +N-NSM +V-PAP-NSM +N-ASF +T-GPN +V-PAP-GPN +A-GPN +PRT-N +P-ASF +T-ASF +N-ASF +T-GPN +N-GPN +PREP +N-ASM +T-DPF +P-DPF +N-DPF +R-APF +V-PAI-3P +PREP +T-ASN +A-ASN +ADV-N +V-PNI-3S +T-APM +V-PNP-APM +V-AAN +CONJ +PRT-N +PRT +V-AMI-3P +V-PPP-NPF +PREP +T-ASN +A-ASF-N +V-PAN +ADV +N-ASF +N-GPF +T-APM +V-PAP-APM +ADV +V-RPP-APM +CONJ +PREP +P-DPF +N-NSF +N-GPF +PREP +N-ASM +CONJ +A-NSN +N-NSN +N-GPM +CONJ +N-GPM +V-PAN +N-APF +CONJ +V-PNP-NSM +PREP +T-ASM +N-ASM +V-PAI-3S +N-ASF +CONJ +N-ASF +PRT-N +V-AAI-2S +CONJ +N-ASN +V-AMI-2S +P-1DS +N-APN +CONJ +PREP +N-GSF +PRT-N +V-AAI-2S +ADV +V-2AAI-1S +T-NSM +N-NSM +V-2AMM-2S +PREP +N-DSF +N-GSN +V-RPI-3S +PREP +P-1GS +V-PAI-1S +T-GSN +V-AAN +T-ASN +N-ASN +P-2GS +A-ASN-C +V-PAP-NSM +CONJ +N-APF +CONJ +N-APF +CONJ +N-APN +CONJ +PREP +N-GSF +PRT-N +V-AAI-2S +CONJ-N +V-AAI-2S +R-NPF +PREP +N-ASM +V-PPI-3P +ADV +V-RAI-3S-ATT +V-2AMM-2S +V-PAI-1S +T-GSN +V-AAN +T-ASN +N-ASN +P-2GS +V-PAI-3S +T-ASN +A-ASN-S +CONJ +T-ASN +A-ASN +V-AAS-3S +PREP +R-DSN +N-DSN +V-RPP-NPM +V-PAI-1P +PREP +T-GSF +N-GSF +T-GSN +N-GSN +N-GSM +N-GSM +ADV +CONJ +PRT +A-NSM +N-NSM +V-RAI-3S +PREP +N-ASF +V-PAP-NSM +CONJ +ADV +V-PAP-NSM +T-APF +P-APF +N-APF +R-NPF +ADV-N +V-PNI-3P +V-2AAN +N-APF +CONJ +D-NSM +A-ASF +N-ASF +PREP +N-GPF +V-AAP-NSM +PREP +T-ASN +A-ASN +V-AAI-3S +PREP +A-DSF +T-GSM +N-GSM +T-ASN +A-ASN +V-PNP-NSM +ADV +V-APS-3P +T-NPM +A-NPM +P-GSM +N-ASN +T-GPM +N-GPM +P-GSM +CONJ +A-DSF +N-DSF +V-RAI-3S +PREP +T-ASN +A-ASN +T-APM +V-PPP-APM +CONJ +V-PAI-3S +P-1DP +CONJ +T-NSN +N-NSN +T-NSN +A-NSN +CONJ +PREP +T-ASN +V-RAN +D-NSF +T-NSF +N-NSF +R-ASF +V-FDI-1S +PREP +P-APM +PREP +T-APF +N-APF +D-APF +V-PAI-3S +N-NSM +V-PAP-NSM +N-APM +P-1GS +PREP +N-APF +P-GPM +CONJ +PREP +T-ASF +N-ASF +P-GPM +V-FAI-1S +P-APM +CONJ +T-GPF +N-GPF +P-GPM +CONJ +T-GPF +N-GPF +P-GPM +PRT-N +PRT-N +V-FPI-1S +ADV +CONJ +ADV +N-NSF +D-GPF +ADV-N +N-NSF +PREP +N-GSF +CONJ +N-VPM +V-PAP-NPM +N-ASF +PREP +T-ASF +N-ASF +T-GPN +A-GPN +PREP +T-DSN +N-DSN +N-GSM +R-ASF +V-AAI-3S +P-1DP +N-ASF +A-ASF +CONJ +V-PAP-ASF +PREP +T-GSN +N-GSN +D-NSN +V-PAI-3S +T-GSF +N-GSF +P-GSM +CONJ +N-ASM +A-ASM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-PNS-1P +PREP +A-GSF +N-GSF +PREP +N-DSF +N-GSF +V-RPP-NPM +T-APF +N-APF +PREP +N-GSF +A-GSF +CONJ +V-RPP-NPM +T-ASN +N-ASN +N-DSN +A-DSN +V-PAS-1P +T-ASF +N-ASF +T-GSF +N-GSF +A-ASF +CONJ +A-NSM +T-NSM +V-ADP-NSM +CONJ +V-PAS-1P +C-APM +PREP +N-ASM +N-GSF +CONJ +A-GPN +N-GPN +PRT-N +V-PAP-NPM +T-ASF +N-ASF +F-1GPM +ADV +N-NSN +X-DPM +CONJ +V-PAP-NPM +ADV +CONJ +D-DSN +K-DSN +V-PAI-2P +V-PAP-ASF +T-ASF +N-ASF +CONJ +ADV +V-PAP-GPM +P-1GP +PREP +T-ASN +V-2AAN +T-ASF +N-ASF +T-GSF +N-GSF +ADV-N +PREP +N-GPF +V-PPI-3S +N-NSF +CONJ +A-NSF +X-NSF +N-NSF +N-GSF +CONJ +N-NSN +N-GSN +V-PAP-GSN +V-PAN +T-APM +A-APM +X-NSM +V-AAP-NSM +N-ASM +N-GSM +ADV +N-GPM +PREP +A-DPM +PRT +A-DPM +N-DPM +V-PAI-3S +Q-DSN +V-PAI-2P +A-GSF +N-GSF +V-FPI-3S +T-NSM +T-ASM +N-ASM +T-GSM +N-GSM +V-AAP-NSM +CONJ +A-ASN +V-ADP-NSM +T-ASN +N-ASN +T-GSF +N-GSF +PREP +R-DSN +V-API-3S +CONJ +T-ASN +N-ASN +T-GSF +N-GSF +V-AAP-NSM +CONJ +V-RAI-1P +T-ASM +V-2AAP-ASM +P-1DS +N-NSF +P-1NS +V-FAI-1S +CONJ +ADV +V-FAI-3S +N-NSM +T-ASM +N-ASM +P-GSM +A-NSN +T-NSN +V-2AAN +PREP +N-APF +N-GSM +V-PAP-GSM +CONJ +V-PMM-2P +T-APF +ADV-C +N-APF +PREP +R-DPF +V-APP-NPM +V-AAI-2P +A-ASF +N-ASF +N-GPN +PRT +D-ASN +PRT +N-DPM +CONJ +N-DPF +V-PPP-NPM +CONJ +D-ASN +N-NPM +T-GPM +ADV +V-PPP-GPM +V-AOP-NPM +CONJ +CONJ +T-DPM +N-DPM +V-AAI-2P +CONJ +T-ASF +N-ASF +T-GPN +V-PAP-GPN +P-2GP +PREP +N-GSF +V-ADI-2P +V-PAP-NPM +V-PAN +F-2APM +N-ASF +A-ASF-C +CONJ +V-PAP-ASF +CONJ +PRT-N +V-2AAS-2P +T-ASF +N-ASF +P-2GP +R-NSF +V-PAI-3S +A-ASF +N-ASF +CONJ +N-GSF +N-ASF +V-PAI-2P +CONJ +T-ASN +N-ASN +T-GSM +N-GSM +V-AAP-NPM +V-AMS-2P +T-ASF +N-ASF +CONJ +ADV +A-ASN +K-ASN +K-ASN +T-NSM +V-PNP-NSM +V-FAI-3S +CONJ +PRT-N +V-FAI-3S +CONJ +T-NSM +A-NSM +P-1GS +PREP +N-GSF +V-FDI-3S +CONJ +COND +V-AMS-3S +PRT-N +V-PAI-3S +T-NSF +N-NSF +P-1GS +PREP +P-DSM +CONJ +P-1NP +V-PAI-1P +PRT-N +N-GSF +PREP +N-ASF +CONJ +N-GSF +PREP +N-ASF +N-GSF +CONJ +V-PAI-3S +N-NSF +V-PPP-GPN +N-NSF +N-NSM +N-GPN +PRT-N +V-PPP-GPN +CONJ +PREP +D-DSF +V-API-3P +T-NPM +A-NPM-C +N-DSF +V-PAI-1P +V-RPN +T-APM +N-APM +N-DSN +N-GSM +PREP +T-ASN +PRT-N +PREP +V-PEP-GPN +T-ASN +V-PPP-ASN +V-2RAN +N-DSF +N-PRI +A-ASF-C +N-ASF +PREP +N-PRI +V-AAI-3S +T-DSM +N-DSM +PREP +R-GSF +V-API-3S +V-PAN +A-NSM +V-PAP-GSM +PREP +T-DPN +N-DPN +P-GSM +T-GSM +N-GSM +CONJ +PREP +P-GSF +V-2AAP-NSM +ADV +V-PAI-3S +N-DSF +N-PRI +V-API-3S +T-GSN +PRT-N +V-2AAN +N-ASM +CONJ +PRT-N +V-IPI-3S +CONJ +V-AAI-3S +P-ASM +T-NSM +N-NSM +CONJ +PREP +T-GSF +N-GSF +V-RPI-3S +V-RAN +T-DSM +N-DSM +CONJ +ADV +N-GSF +A-NSN +V-AAN +CONJ +V-PAI-3S +V-AAN +T-ASM +V-PNP-ASM +T-DSM +N-DSM +CONJ +V-PAI-3S +CONJ +T-DPM +V-PAP-DPM +P-ASM +N-NSM +V-PNI-3S +N-DSF +N-PRI +V-APP-NSM +PREP +T-GPN +ADV-N +V-PPP-GPN +V-AOP-NSM +V-AAI-3S +N-ASF +PREP +N-ASF +T-GSM +N-GSM +P-GSM +PREP +R-GSF +V-AAI-3S +T-ASM +N-ASM +CONJ +T-GSF +PREP +N-ASF +N-GSF +N-NSM +V-2ADI-3S +N-DSF +V-PPP-NSM +N-PRI +V-AAI-3S +V-2AAN +PREP +N-ASM +V-IAI-3S-ATT +R-ASM +V-PAN +PREP +N-ASF +CONJ +V-2AAI-3S +PRT-N +V-PNP-NSM +ADV-I +V-PNI-3S +N-DSF +V-AAI-3S +PREP +N-ASF +T-GSF +N-GSF +ADV +A-ASF +PREP +N-DPF +V-AAP-NSM +PREP +N-PRI +CONJ +N-PRI +T-GPM +A-GPM +T-GSF +N-GSF +T-GSF +P-GSF +CONJ +V-INI-3S +T-ASF +T-APM +N-APM +V-PAP-ASF +N-ASF +R-GSF +N-NSM +CONJ +N-NSM +T-NSM +N-NSM +N-DSF +CONJ +P-DSF +N-DSF +N-ASF +PREP +N-ASF +N-GSN +V-2AAI-3S +CONJ +PREP +N-ASM +N-GSF +CONJ +A-ASM +V-ADI-3S +T-ASM +V-ADP-ASM +CONJ +CONJ +PREP +A-GSM +V-RPP-GSM +V-API-3P +CONJ +D-NPN +ADV +T-NPN +N-NPN +T-GSM +N-GSM +T-DSN +N-DSN +CONJ +ADV +T-NSF +N-NSF +T-NSF +PREP +T-ASN +N-ASN +T-GSF +N-GSF +T-NSF +A-NSF +PREP +N-ASF +V-2AAI-3P +D-NPM +A-NPM +PRT-N +V-AMP-NPM +T-APF +N-APF +CONJ +ADV +P-APF +V-2AAP-NPM +CONJ +V-ADP-NPM +CONJ +V-AAP-NPM +CONJ +A-NPM +CONJ +A-NPM +V-PAI-3P +PREP +T-GSF +N-GSF +CONJ +T-NPM +D-APN +V-PAP-NPM +V-PAI-3P +CONJ +N-ASF +V-PAI-3P +CONJ +PRT +COND +V-IAI-3P +D-GSF +PREP +R-GSF +V-2AAI-3P +PRT +V-IAI-3P +N-ASM +V-AAN +CONJ +ADV +V-PMI-3P +A-GSF-C +D-NSN +V-PAI-3S +A-GSF +CONJ +PRT-N +V-PNI-3S +P-APM +T-NSM +N-NSM +N-NSM +P-GPM +V-PPN +CONJ +V-AAI-3S +P-DPM +N-ASF +N-DSF +V-2RAI-3S-ATT +N-PRI +T-ASM +N-PRI +V-PPP-NSM +CONJ +T-ASM +A-ASM +V-IAI-3S +T-NSM +T-APF +N-APF +V-ADP-NSM +PREP +R-ASM +V-API-3S +CONJ +PREP +N-PRI +V-FPI-3S +P-2DS +N-NSN +V-ADP-NSM +CONJ +CONJ +PREP +A-GPM +V-PAN +A-NSM +T-NSM +N-NSM +ADV +P-ASM +CONJ +PREP +N-DSF +V-AMI-3S +N-DSF +CONJ +PREP +V-PAP-GPN +V-AAI-3S +N-PRI +T-ASM +N-PRI +CONJ +T-ASM +N-PRI +N-DSF +N-PRI +V-PAP-NSM +A-ASM +T-GPM +N-GPM +N-PRI +V-AAI-3S +CONJ +V-AAI-3S +PREP +T-ASN +N-ASN +T-GSF +N-GSF +P-GSM +N-DSF +N-PRI +V-PAP-NSM +PREP +T-GSF +N-GSF +T-GPM +N-GPM +N-PRI +V-AAI-3S +CONJ +PREP +T-GPN +N-GPN +P-GSM +V-ADI-3S +N-DSF +N-NSM +V-APP-NSM +V-2API-3S +A-ASN +PREP +T-GPM +N-GPM +P-GSM +CONJ +V-2AAI-3P +A-ASN +T-ASN +N-ASN +CONJ +PRT-N +V-AOI-3P +T-ASN +N-ASN +T-GSM +N-GSM +N-DSF +N-NSM +A-NSM +V-2ADP-NSM +V-ADI-3S +V-PPN +N-NSM +N-GSF +N-PRI +V-2AMP-NSM +ADV +V-PNN +T-DSM +N-DSM +T-GSM +N-GSM +PRT +A-ASF +V-PAN +N-GSF +N-ASF +A-ASM-C +N-ASM +V-ADP-NSM +T-GPM +N-GSF +N-GPM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-IAI-3S +PREP +T-ASF +N-ASF +N-DSF +V-2AAI-3S +N-ASF +PRT-N +V-AOP-NSM +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-ASM +A-ASM +ADV +V-PAP-NSM +V-AAI-3S +N-DSF +V-RAI-3S +T-ASN +ARAM +CONJ +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +PRT-N +T-NSM +V-PAP-NSM +T-APN +A-APN-S +V-2AAS-3S +P-GPM +N-DSF +V-2AAI-3P +T-ASF +A-ASF +N-ASF +ADV +PREP +A-GSF +N-GSF +R-GSF +N-ASF +V-2AAP-NPM +T-NPM +A-NPM +V-API-3P +N-DSF +T-NPN +N-NPN +N-PRI +V-2AAI-3P +V-APP-NPN +PREP +A-NUI +N-APF +N-DSF +N-PRI +T-NSF +N-NSF +PRT-N +V-2AMI-3S +T-DPM +V-AAP-DPM +V-ADP-NSF +T-APM +N-APM +PREP +N-GSF +CONJ +I-ASN +ADV +V-PAS-1S +CONJ +V-FAI-3S +T-NSM +N-NSM +P-1AS +V-PNP-ASM +PREP +N-PRI +N-PRI +N-PRI +N-PRI +PRT +N-PRI +CONJ +N-PRI +CONJ +T-GPM +N-GPM +R-NPM +PREP +N-GSF +V-ADI-3P +N-APF +V-ADI-3P +N-ASF +V-2AAI-3P +N-GPF +V-AAI-3P +N-APN +N-GPM +V-AAI-3P +N-ASF +N-GSN +V-2AAI-3P +N-APN +N-GSF +V-API-3P +PREP +N-GSF +V-AOI-3P +A-NPM +PREP +N-DSM +N-APF +A-GPM +V-AAI-3P +V-2AAI-3P +N-NPF +PREP +N-GSF +T-APM +A-APM +P-GPF +CONJ +A-NPM +V-API-3P +PRT-N +V-ADP-NPM +T-ASF +N-ASF +CONJ +A-GSF-C +N-GSF +V-2AAS-3P +CONJ +A-NPM +N-GPM +CONJ +N-GPF +N-ASF +V-2AAI-3P +CONJ +ADV +N-GPM +CONJ +N-GSF +V-API-3P +V-API-3P +V-API-3P +PREP +N-DSM +N-GSF +V-2AAI-3P +V-2AAI-3P +PREP +N-DPF +PREP +A-DPN +N-DPN +V-PPP-NPM +V-PPP-NPM +V-PPP-NPM +V-PPP-NPM +PREP +N-DPF +CONJ +N-DPN +CONJ +N-DPN +CONJ +T-DPF +N-DPF +T-GSF +N-GSF +R-GPM +PRT-N +V-IAI-3S +A-NSM +T-NSM +N-NSM +CONJ +D-NPM +A-NPM +V-APP-NPM +PREP +T-GSF +N-GSF +PRT-N +V-AMI-3P +T-ASF +N-ASF +T-GSM +N-GSM +PREP +P-1GP +A-ASN-C +X-ASN +V-AMP-GSM +CONJ +PRT-N +ADV +P-1GP +V-APS-3P +PRT +CONJ +P-1NP +V-PAP-NPM +D-ASN +V-PNP-ASN +P-1DP +N-ASN +N-GPM +V-2AMP-NPM +N-ASM +A-ASM +CONJ +T-ASF +A-ASF +N-ASF +PREP +N-GSF +V-PAS-1P +T-ASM +V-PNP-ASM +P-1DP +N-ASM +V-PAP-NPM +PREP +T-ASM +T-GSF +N-GSF +N-ASM +CONJ +N-ASM +N-ASM +R-NSM +PREP +T-GSF +V-PNP-GSF +P-DSM +N-GSF +V-AAI-3S +N-ASM +N-GSF +V-AAP-NSM +PRT +PREP +A-DSF +T-GSM +N-GSM +T-GSM +N-GSM +V-RAI-3S +CONJ +V-ADM-2P +T-ASM +V-RAP-ASM +D-ASF +PREP +T-GPM +A-GPM +PREP +F-3ASM +N-ASF +CONJ +PRT-N +V-2AAS-2P +T-DPF +N-DPF +P-2GP +V-PPP-NPM +ADV-N +ADV +N-GSN +V-2AAI-2P +PREP +T-ASF +N-ASF +V-PNP-NPM +CONJ +V-RPI-2P +T-GSF +N-GSF +R-NSF +P-2DP +ADV +N-DPM +V-PNI-3S +N-VSM +P-1GS +PRT-N +V-PAM-2S +N-GSF +N-GSM +CONJ-N +V-PPM-2S +PREP +P-GSM +V-PPP-NSM +CONJ +R-ASM +V-PAI-3S +N-NSM +V-PAI-3S +CONJ +V-PAI-3S +A-ASM +N-ASM +R-ASM +V-PNI-3S +PREP +N-ASF +V-PAI-2P +ADV +N-DPM +P-2DP +V-PPI-3S +T-NSM +N-NSM +CONJ +I-NSM +N-NSM +R-ASM +PRT-N +V-PAI-3S +N-NSM +CONJ +COND +V-PAI-2P +ADV +N-GSF +R-GSF +A-NPM +V-2RAI-3P +A-NPM +PRT +A-NPM +CONJ +PRT-N +N-NPM +V-PAI-2P +PRT +ADV +T-APM +T-GSF +N-GSF +P-1GP +N-APM +V-IAI-1P +N-APM +CONJ +V-IPI-1P +PRT-N +A-ASN +ADV +V-2FPI-1P +T-DSM +N-DSM +T-GPN +N-GPN +CONJ +V-FAI-1P +CONJ +PRT +T-NPM +PREP +A-APF +N-APF +PREP +T-ASN +V-PAP-ASN +P-DPM +V-IAI-3P +CONJ +T-NSM +PREP +T-ASN +V-PAP-ASN +PREP +T-ASN +V-2AAN +T-GSF +N-GSF +P-GSM +PRT +A-NSF +N-NSF +PRT +PREP +T-ASN +V-PAP-ASN +V-PAI-3S +PRT-N +N-GSF +V-PAN +CONJ +N-GSF +CONJ +ADV +N-ASM +A-ASM +N-GSF +T-DPM +PREP +P-GSF +V-RPP-DPM +V-PAI-3S +CONJ +T-APF +V-RPP-APF +N-APF +CONJ +T-APN +V-RPP-APN +N-APN +V-AAM-2P +CONJ +N-APF +A-APF +V-PAM-2P +T-DPM +N-DPM +P-2GP +CONJ +PRT-N +T-NSN +A-NSN +V-2APS-3S +CONJ +V-APS-3S +ADV +V-PAM-2P +PREP +A-GPM +N-ASF +CONJ +T-ASM +N-ASM +R-GSM +ADV +A-NSM-N +V-FDI-3S +T-ASM +N-ASM +V-PAP-NPM +PRT-N +X-NSM +V-PAP-NSM +PREP +T-GSF +N-GSF +T-GSM +N-GSM +PRT-N +X-NSF +N-NSF +N-GSF +ADV +V-PAP-NSF +V-PAS-3S +CONJ +PREP +D-GSF +V-APS-3P +T-NPM +A-NPM +PRT-N +X-NSM +N-NSM +PRT +A-NSM +ADV +N-PRI +R-NSM +PREP +N-GSF +A-GSF +V-2AMI-3S +T-APN +N-APN-S +F-3GSM +CONJ +V-RAI-2P +CONJ +CONJ +ADV +V-PAP-NSM +V-AAN +T-ASF +N-ASF +V-API-3S +CONJ +N-GSF +N-ASM +PRT-N +V-2AAI-3S +CONJ +PREP +N-GPN +V-AAP-NSM +P-ASF +CONJ +PRT-N +V-2RAI-2P +V-PPP-DSN +CONJ +V-RPP-DSN +N-DSN +CONJ +N-DSM +CONJ +N-DSM +CONJ +N-DSF +CONJ +N-GSF +N-DSM +CONJ +N-DSF +N-GPN +R-GSF +T-NPM +V-AAP-NPM +V-ADI-3P +PRT-N +V-APN +P-DPM +N-ASM +CONJ +PRT-N +V-IAI-3P +T-ASN +V-PPP-ASN +COND-K +N-NSN +V-2AAS-3S +T-GSN +N-GSN +V-FPI-3S +CONJ +ADV +A-NSN +V-IAI-3S +T-NSN +V-PPP-NSN +N-NSM +V-2AAI-3S +V-PAI-1S +A-NSM +CONJ +A-NSM +CONJ +V-2RAI-2P +N-PRI +N-DSN +CONJ +N-DSF +N-GSM +V-PAP-GSM +N-PRI +A-DSF +CONJ +N-DPF +N-GPM +N-DSF +CONJ +N-DSF +A-GPM-S +V-RPP-GPM +PREP +N-DPM +CONJ +N-DSM +A-GPM +N-DSM +CONJ +N-DPN +A-GPM +V-RPP-GPM +CONJ +N-GSF +A-GSF +N-DSM +N-DSM +CONJ +N-DSN +N-GSM +A-ASN-C +V-PAP-DSM +PREP +T-ASM +N-PRI +V-PAM-2P +PRT-N +V-ADS-2P +T-ASM +V-PAP-ASM +CONJ +COND +PRT-N +V-2AAI-3P +D-NPM +V-ADP-NPM +T-ASM +PREP +N-GSF +V-PAP-ASM +A-ASN +ADV +P-1NP +T-NPM +T-ASM +PREP +N-GPM +V-PMP-NPM +R-GSM +T-NSF +N-NSF +T-ASF +N-ASF +V-AAI-3S +ADV +CONJ +ADV +V-RNI-3S +V-PAP-NSM +ADV +ADV +P-1NS +V-FAI-1S +PRT-N +ADV +T-ASF +N-ASF +CONJ +CONJ +T-ASM +N-ASM +CONJ +T-NSN +ADV +ADV +V-PAI-3S +T-ASF +T-GPN +V-PPP-GPN +N-ASF +ADV +V-RPP-GPM +CONJ +V-AAS-3S +T-NPN +PRT-N +V-PPP-NPN +CONJ +N-ASF +A-ASF +V-PAP-NPM +V-PAS-1P +N-ASF +PREP +R-GSF +V-PAS-1P +ADV +T-DSM +N-DSM +PREP +N-GSF +CONJ +N-GSN +CONJ +CONJ +T-NSM +N-NSM +P-1GP +N-NSN +V-PAP-NSN +T-NSF +N-NSF +V-PAM-3S +T-GSF +N-GSF +PRT-N +V-PNM-2P +CONJ +PREP +D-GSF +V-2AAI-3P +X-NPM +V-AAP-NPM +N-APM +V-PNM-2P +T-GPM +N-GPM +ADV +V-RPP-NPM +T-GPM +V-PPP-GPM +ADV +CONJ +P-NPM +V-PAP-NPM +PREP +N-DSN +A-NSM +T-NSM +N-NSM +PREP +A-DPN +CONJ +T-NSF +N-NSF +A-NSF +CONJ +N-APM +CONJ +N-APM +V-FAI-3S +T-NSM +N-NSM +A-NSM +T-NSM +N-NSM +V-PPP-NPM +T-DPN +V-PAP-DPN +CONJ +P-NSM +V-RAI-3S-ATT +PRT-N +PRT-N +P-2AS +V-2AAS-1S +CONJ-N +PRT-N +PRT-N +P-2AS +V-2AAS-1S +CONJ +V-PAP-APM +P-1AP +V-PAN +N-NSM +P-1DS +N-NSM +PRT-N +V-FOI-1S +I-ASN +V-FAI-3S +P-1DS +N-NSM +V-PAM-2P +T-GPM +V-PNP-GPM +P-2GP +R-NPM +V-AAI-3P +P-2DP +T-ASM +N-ASM +T-GSM +N-GSM +R-GPM +T-ASF +N-ASF +T-GSF +N-GSF +V-PAP-NPM +V-PNM-2P +T-ASF +N-ASF +N-NSM +N-NSM +ADV +CONJ +ADV +T-NSM +P-NSM +CONJ +PREP +T-APM +N-APM +N-DPF +A-DPF +CONJ +A-DPF +PRT-N +V-PPM-2P +CONJ +A-NSN +N-DSF +V-PPN +T-ASF +N-ASF +PRT-N +N-DPN +PREP +R-DPN +PRT-N +V-API-3P +T-NPM +V-PAP-NPM +V-PAI-1P +N-ASN +PREP +R-GSM +V-2AAN +PRT-N +V-PAI-3P +N-ASF +T-NPM +T-DSF +N-DSF +V-PAP-NPM +CONJ +V-PPI-3S +R-GPN +N-GPN +T-NSN +N-NSN +PREP +N-GSF +PREP +T-APN +A-APN +PREP +T-GSM +N-GSM +D-GPN +T-NPN +N-NPN +V-PPI-3S +ADV +T-GSF +N-GSF +CONJ +CONJ +N-NSM +CONJ +V-AAS-3S +PREP +T-GSN +A-GSN +N-GSN +T-ASM +N-ASM +ADV +T-GSF +N-GSF +V-2AAI-3S +PRT +V-PNS-1P +PREP +P-ASM +ADV +T-GSF +N-GSF +T-ASM +N-ASM +P-GSM +V-PAP-NPM +CONJ +PRT-N +V-PAI-1P +ADV +V-PAP-ASF +N-ASF +CONJ +T-ASF +V-PAP-ASF +V-PAI-1P +CONJ +PREP +P-GSM +V-PAS-1P +PREP +A-GSN +T-DSM +N-DSM +N-ASF +N-GSF +D-NSN +V-PAI-3S +N-ASM +N-GPN +V-PAP-GPN +T-DSN +N-DSN +P-GSM +CONJ +T-GSF +N-GSF +CONJ +N-GSF +PRT-N +V-PNM-2P +CONJ +D-DPF +N-DPF +V-PPI-3S +T-NSM +N-NSM +V-PMM-2P +T-DPM +V-PNP-DPM +P-2GP +CONJ +V-PAM-2P +CONJ +P-NPM +V-PAI-3P +PREP +T-GPF +N-GPF +P-2GP +ADV +N-ASM +V-FAP-NPM +CONJ +PREP +N-GSF +D-ASN +V-PAS-3P +CONJ +PRT-N +V-PAP-NPM +CONJ +A-NSN +P-2DP +D-NSN +V-PNM-2P +PREP +P-1GP +CONJ +V-PPI-1P +CONJ +A-ASF +N-ASF +V-PAI-1P +PREP +A-DPN +ADV +V-PPN +V-PAP-NPM +CONJ +ADV-C +V-PAI-1S +D-ASN +V-AAN +CONJ +ADV-C +V-APS-1S +P-2DP +CONJ +T-NSM +N-NSM +T-GSF +N-GSF +T-NSM +V-2AAP-NSM +PREP +A-GPM +PREP +N-DSN +N-GSF +A-GSF +T-ASM +N-ASM +T-GPN +N-GPN +T-ASM +A-ASM +T-ASM +N-ASM +P-1GP +N-ASM +V-AAO-3S +P-2AP +PREP +A-DSN +A-DSN +PREP +T-ASN +V-AAN +T-ASN +N-ASN +P-GSM +V-PAP-NSM +PREP +P-1DP +T-ASN +A-ASN +PREP +P-GSM +PREP +N-GSM +N-GSM +R-DSM +T-NSF +N-NSF +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +CONJ +V-PAI-1S +P-2AP +N-VPM +V-PNM-2P +T-GSM +N-GSM +T-GSF +N-GSF +CONJ +CONJ +PREP +A-GPN +V-AAI-1S +P-2DP +V-PAI-2P +T-ASM +N-ASM +P-1GP +N-ASM +V-RPP-ASM +PREP +R-GSM +COND +ADV-C +V-PNS-3S +V-FDI-1S +P-2AP +V-ADM-2P +A-APM +T-APM +V-PNP-APM +P-2GP +CONJ +A-APM +T-APM +A-APM +V-PNI-3P +P-2AP +T-NPM +PREP +T-GSF +N-GSF +T-NSF +N-NSF +PREP +A-GPM +P-2GP +N-NSM +N-GSM +CONJ +N-GSM +N-GSM +N-GSM +N-NSM +T-DPF +A-NUI +N-DPF +T-DPF +PREP +T-DSF +N-DSF +V-PAN +N-VPM +P-1GS +A-ASF +N-ASF +V-ADM-2P +CONJ +N-DPM +A-DPM +V-2AAS-2P +V-PAP-NPM +CONJ +T-NSN +N-NSN +P-2GP +T-GSF +N-GSF +V-PNI-3S +N-ASF +CONJ +T-NSF +N-NSF +N-ASN +A-ASN +V-PAM-3S +CONJ +V-PAS-2P +A-NPM +CONJ +A-NPM +PREP +A-DSN-N +V-PPP-NPM +CONJ +COND +X-NSM +P-2GP +V-PPI-3S +N-GSF +V-PAM-3S +PREP +T-GSM +V-PAP-GSM +A-DPM +ADV +CONJ +PRT-N +V-PAP-GSM +N-GSM +CONJ +V-FPI-3S +P-DSM +CONJ +V-PAM-3S +PREP +N-DSF +A-ASN-N +V-PMP-NSM +CONJ +T-NSM +V-PMP-NSM +V-RAI-3S +N-DSM +N-GSF +V-PPP-DSM +CONJ +V-PPP-DSM +CONJ +PRT-N +V-PNM-3S +T-NSM +N-NSM +D-NSM +CONJ +V-FDI-3S +X-ASN +PREP +T-GSM +N-GSM +N-NSM +A-NSM +A-NSM +PREP +A-DPF +T-DPF +N-DPF +P-GSM +CONJ +V-PNM-3S +T-NSM +N-NSM +T-NSM +A-NSM +PREP +T-DSN +N-DSN +P-GSM +CONJ +T-NSM +A-NSM +PREP +T-DSF +N-DSF +P-GSM +CONJ +ADV +N-NSN +N-GSM +V-FDI-3S +CONJ +V-AAI-3S +T-NSM +N-NSM +PREP +T-DSM +N-DSM +CONJ +V-AAI-3S +T-ASM +N-ASM +CONJ +T-NSN +N-NSN +P-GSM +V-2AAI-3S +CONJ +T-NSF +N-NSF +T-GSN +N-GSN +P-GSM +V-2AMI-3S +ADV +CONJ +T-NSM +A-NSM +PREP +T-DPF +N-DPF +P-GSM +V-FPI-3S +A-NSM +N-NSM +R-NSM +V-PAI-3S +N-ASM +CONJ +A-NSM +V-2ADP-NSM +V-FDI-3S +T-ASM +N-ASM +T-GSF +N-GSF +R-ASM +V-ADI-3S +T-DPM +V-PAP-DPM +P-ASM +A-NSM-N +V-PPP-NSM +V-PAM-3S +CONJ +PREP +N-GSM +V-PPI-1S +CONJ +T-NSM +N-NSM +A-NSM +V-PAI-3S +A-GPN +CONJ +V-PAI-3S +P-NSM +A-ASM-N +CONJ +A-NSM +V-PPI-3S +PREP +T-GSF +A-GSF +N-GSF +V-PPP-NSM +CONJ +V-PPP-NSM +ADV +T-NSF +N-NSF +V-2AAP-NSF +V-PAI-3S +N-ASF +CONJ +T-NSF +N-NSF +V-APP-NSF +V-PAI-3S +N-ASM +PRT-N +V-PPM-2P +N-VPM +P-1GS +A-VPM +A-NSF +N-NSF +A-NSF +CONJ +A-NSN +N-NSN +A-NSN +ADV +V-PAI-3S +V-PAP-NSN +PREP +T-GSM +N-GSM +T-GPN +N-GPN +PREP +R-DSM +PRT-N +V-PAI-3S +N-NSF +PRT +N-GSF +N-NSN +V-AOP-NSM +V-AAI-3S +P-1AP +N-DSM +N-GSF +PREP +T-ASN +V-PAN +P-1AP +N-ASF +X-ASF +T-GPN +P-GSM +N-GPN +V-RAM-2P +N-VPM +P-1GS +A-VPM +CONJ +V-PAM-3S +A-NSM +N-NSM +A-NSM +PREP +T-ASN +V-AAN +A-NSM +PREP +T-ASN +V-AAN +A-NSM +PREP +N-ASF +CONJ +N-NSF +N-GSM +N-ASF +N-GSM +PRT-N +V-PNI-3S +CONJ +V-2AMP-NPM +A-ASF +N-ASF +CONJ +N-ASF +N-GSF +PREP +N-DSF +V-ADM-2P +T-ASM +A-ASM +N-ASM +T-ASM +V-PNP-ASM +V-AAN +T-APF +N-APF +P-2GP +CONJ +V-PNM-2P +N-NPM +N-GSM +CONJ +PRT-N +N-NPM +ADV +V-PNP-NPM +F-2APM +CONJ +COND +X-NSM +N-NSM +N-GSM +V-PAI-3S +CONJ +PRT-N +N-NSM +D-NSM +V-RAI-3S +N-DSM +V-PAP-DSM +T-ASN +N-ASN +T-GSF +N-GSF +P-GSM +PREP +N-DSN +CONJ +V-AAI-3S +F-3ASM +CONJ +V-2RAI-3S +CONJ +ADV +V-2ADI-3S +A-NSM +V-IAI-3S +CONJ +T-NSM +V-AAP-NSM +PREP +N-ASM +A-ASM +T-ASM +T-GSF +N-GSF +CONJ +V-AAP-NSM +V-2ADP-NSM +PRT-N +N-NSM +N-GSF +CONJ +N-NSM +N-GSN +D-NSM +A-NSM +PREP +T-DSF +N-DSF +P-GSM +V-FDI-3S +COND +X-NSM +V-PAI-3S +A-NSM +V-PAN +PRT-N +V-PAP-NSM +N-ASF +F-3GSM +CONJ +V-PAP-NSM +N-ASF +F-3GSM +D-GSM +T-NSF +N-NSF +A-NSF +N-NSF +A-NSF +CONJ +A-NSF +PREP +T-DSM +N-DSM +CONJ +N-DSM +V-PAI-3S +D-NSF +V-PNN +A-APM +CONJ +N-APF +PREP +T-DSF +N-DSF +P-GPM +A-ASM +F-3ASM +V-PAN +PREP +T-GSM +N-GSM +N-VPM +P-1GS +PRT-N +PREP +N-DPF +V-PAM-2P +T-ASF +N-ASF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-GSF +N-GSF +CONJ +COND +V-2AAS-3S +PREP +N-ASF +P-2GP +N-NSM +A-NSM +PREP +N-DSF +A-DSF +CONJ +V-2AAS-3S +CONJ +A-NSM +PREP +A-DSF +N-DSF +CONJ +V-AAS-2P +PREP +T-ASM +V-PAP-ASM +T-ASF +N-ASF +T-ASF +A-ASF +CONJ +V-2AAS-2P +P-2NS +V-PNM-2S +ADV +ADV +CONJ +T-DSM +A-DSM +V-2AAS-2P +P-2NS +V-2AAM-2S +ADV +PRT +V-PNM-2S +PREP +T-ASN +N-ASN +P-1GS +PRT-N +V-API-2P +PREP +F-2DPM +CONJ +V-2ADI-2P +N-NPM +N-GPM +A-GPM +V-AAM-2P +N-VPM +P-1GS +A-VPM +PRT-N +T-NSM +N-NSM +V-AMI-3S +T-APM +A-APM +T-DSM +N-DSM +A-APM +PREP +N-DSF +CONJ +N-APM +T-GSF +N-GSF +R-GSF +V-ADI-3S +T-DPM +V-PAP-DPM +P-ASM +CONJ +P-2NP +V-AAI-2P +T-ASM +A-ASM +PRT-N +T-NPM +A-NPM +V-PAI-3P +P-2GP +CONJ +P-NPM +V-PAI-3P +P-2AP +PREP +N-APN +PRT-N +P-NPM +V-PAI-3P +T-ASN +A-ASN +N-ASN +T-ASN +V-APP-ASN +PREP +P-2AP +COND +CONJ +N-ASM +A-ASM +V-PAI-2P +PREP +T-ASF +N-ASF +V-FAI-2S +T-ASM +ADV +P-2GS +ADV +F-2ASM +ADV +V-PAI-2P +CONJ +COND +V-PAI-2P +N-ASF +V-PNI-2P +V-PPP-NPM +PREP +T-GSM +N-GSM +ADV +N-NPM +CONJ +R-NSM +A-ASM +T-ASM +N-ASM +V-AAS-3S +CONJ +V-AAS-3S +PREP +A-DSM +V-2RAI-3S +A-GPM +A-NSM +CONJ +T-NSM +V-2AAP-NSM +PRT-N +V-AAS-2S +V-2AAI-3S +CONJ +PRT-N +V-AAS-2S +CONJ +COND +PRT-N +V-PAI-2S +CONJ +V-PAI-2S +V-2RAI-2S +N-NSM +N-GSM +ADV +V-PAM-2P +CONJ +ADV +V-PAM-2P +ADV +PREP +N-GSM +N-GSF +V-PPN +V-PAP-NPM +CONJ +T-NSF +N-NSF +A-NSF +T-DSM +PRT-N +V-AAP-DSM +N-ASN +V-PNI-3S +N-NSN +N-GSF +N-VPM +P-1GS +I-NSN +T-NSN +N-NSN +COND +N-ASF +V-PAN +V-PAS-3S +X-NSM +CONJ +N-APN +PRT-N +V-PAS-3S +PRT-N +V-PNI-3S +T-NSF +N-NSF +V-AAN +P-ASM +COND +N-NSM +PRT +N-NSF +A-NPM +V-PAS-3P +CONJ +V-PPP-NPM +T-GSF +A-GSF +N-GSF +CONJ +V-2AAS-3S +P-DPM +X-NSM +PREP +P-2GP +V-PAM-2P +PREP +N-DSF +V-PEM-2P +CONJ +V-PPM-2P +CONJ +PRT-N +V-2AAS-2P +P-DPM +T-APN +A-APN +T-GSN +N-GSN +I-NSN +T-NSN +N-NSN +ADV +CONJ +T-NSF +N-NSF +COND +PRT-N +V-PAS-3S +N-APN +A-NSF +V-PAI-3S +PREP +F-3ASF +CONJ +V-FAI-3S +X-NSM +P-2NS +N-ASF +V-PAI-2S +P-1NS-K +N-APN +V-PAI-1S +V-AAM-2S +P-1DS +T-ASF +N-ASF +P-2GS +ADV +T-GPN +N-GPN +P-1NS-K +P-2DS +V-FAI-1S +PREP +T-GPN +N-GPN +P-1GS +T-ASF +N-ASF +P-2NS +V-PAI-2S +CONJ +A-NSM +V-PAI-3S +T-NSM +N-NSM +ADV +V-PAI-2S +CONJ +T-NPN +N-NPN +V-PAI-3P +CONJ +V-PAI-3P +CONJ +INJ +N-VSM +A-VSM +V-PAI-2S +V-2AAN +CONJ +T-NSF +N-NSF +ADV +T-GPN +N-GPN +A-NSF +V-PAI-3S +N-PRI +T-NSM +N-NSM +P-1GP +PRT-N +PREP +N-GPN +V-API-3S +V-AAP-NSM +N-PRI +T-ASM +N-ASM +P-GSM +PREP +T-ASN +N-ASN +V-PAI-2S +CONJ +T-NSF +N-NSF +V-IAI-3S +T-DPN +N-DPN +P-GSM +CONJ +PREP +T-GPN +N-GPN +T-NSF +N-NSF +V-API-3S +CONJ +V-API-3S +T-NSF +N-NSF +T-NSF +V-PAP-NSF +CONJ +V-AAI-3S +N-PRI +T-DSM +N-DSM +CONJ +V-API-3S +P-DSM +PREP +N-ASF +CONJ +A-NSM +N-GSM +V-API-3S +V-PAI-2P +CONJ +PREP +N-GPN +V-PPI-3S +N-NSM +CONJ +PRT-N +PREP +N-GSF +ADV +CONJ +ADV +CONJ +N-PRI +T-NSF +N-NSF +PRT-N +PREP +N-GPN +V-API-3S +V-ADP-NSF +T-APM +N-APM +CONJ +A-DSF +N-DSF +V-2AAP-NSF +CONJ +ADV +T-NSN +N-NSN +ADV +N-GSN +A-NSN +V-PAI-3S +ADV +CONJ +T-NSF +N-NSF +ADV +N-GPN +A-NSF +V-PAI-3S +N-VPM +P-1GS +PRT-N +A-NPM +N-NPM +V-PNM-2P +V-RAP-NPM +CONJ +A-ASN-C +N-ASN +V-FDI-1P +CONJ +A-APN +V-PAI-1P +A-NPM +COND +X-NSM +PREP +N-DSM +PRT-N +V-PAI-3S +D-NSM +A-NSM +N-NSM +A-NSM +V-AAN +CONJ +A-ASN +T-ASN +N-ASN +CONJ +COND +T-GPM +N-GPM +T-APM +N-APM +PREP +T-APN +N-APN +V-PAI-1P +PREP +T-ASN +V-PPN +P-APM +P-1DP +CONJ +A-ASN +T-ASN +N-ASN +P-GPM +V-PAI-1P +V-2AMM-2S +CONJ +T-NPN +N-NPN +D-NPN +V-PAP-NPN +CONJ +PREP +N-GPM +A-GPM +V-PPP-NPN +V-PPI-3S +PREP +A-GSN-S +N-GSN +ADV +T-NSF +N-NSF +T-GSM +V-PAP-GSM +V-PNI-3S +ADV +CONJ +T-NSF +N-NSF +A-NSN +N-NSN +V-PAI-3S +CONJ +A-APN +V-PAI-3S +V-2AMM-2S +A-NSN +N-NSN +A-ASF +N-ASF +V-PAI-3S +CONJ +T-NSF +N-NSF +N-NSN +T-NSM +N-NSM +T-GSF +N-GSF +T-NSF +N-NSF +V-PPI-3S +PREP +T-DPN +N-DPN +P-1GP +T-NSF +V-PAP-NSF +A-ASN +T-ASN +N-ASN +CONJ +V-PAP-NSF +T-ASM +N-ASM +T-GSF +N-GSF +CONJ +V-PPP-NSF +PREP +T-GSF +N-GSF +CONJ +A-NSF +N-NSF +PRT +N-GPN +CONJ +N-GPN +PRT +N-GPN +CONJ +A-GPN +V-PPI-3S +CONJ +V-RPI-3S +T-DSF +N-DSF +T-DSF +A-DSF +CONJ +T-ASF +N-ASF +V-AAN +V-PNI-3S +A-NSM-N +N-GPM +A-NSN +A-NSN +A-NSF +N-GSM +A-GSM +PREP +P-DSF +V-PAI-1P +T-ASM +N-ASM +CONJ +N-ASM +CONJ +PREP +P-DSF +V-PNI-1P +T-APM +N-APM +T-APM +PREP +N-ASF +N-GSM +V-2RAP-APM +PREP +T-GSN +P-GSN +N-GSN +V-PNI-3S +N-NSF +CONJ +N-NSF +N-VPM +P-1GS +PRT-N +V-PAI-3S +D-NPN +ADV +V-PNN +PRT-I +T-NSF +N-NSF +PREP +T-GSF +P-GSF +N-GSF +V-PAI-3S +T-ASN +A-ASN +CONJ +T-ASN +A-ASN +N-VPM +P-1GS +PRT-N +V-PNI-3S +N-NSF +N-APF +V-AAN +PRT +N-NSF +N-APN +CONJ-N +A-ASN +V-AAN +A-ASN +N-ASN +I-NSM +A-NSM +CONJ +A-NSM +PREP +P-2DP +V-AAM-3S +PREP +T-GSF +A-GSF +N-GSF +T-APN +N-APN +P-GSM +PREP +N-DSF +N-GSF +CONJ +COND +V-PAI-2P +N-ASM +A-ASM +CONJ +N-ASF +PREP +T-DSF +N-DSF +P-2GP +PRT-N +V-PNM-2P +CONJ +V-PNM-2P +PREP +T-GSF +N-GSF +PRT-N +V-PAI-3S +D-NSF +T-NSF +N-NSF +ADV +V-PNP-NSF +CONJ +A-NSF +A-NSF +A-NSF +CONJ +ADV +N-NSM +CONJ +N-NSF +ADV +N-NSF +CONJ +A-NSN +A-NSN +N-NSN +CONJ +T-NSF +ADV +N-NSF +ADV-S +PRT +A-NSF +V-PAI-3S +ADV +A-NSF +A-NSF +A-NSF +A-NSF +N-GSN +CONJ +N-GPM +A-GPM +A-NSF +A-NSF +CONJ +N-NSM +N-GSF +PREP +N-DSF +V-PPI-3S +T-DPM +V-PAP-DPM +N-ASF +ADV-I +N-NPM +CONJ +ADV-I +N-NPF +PREP +P-2DP +PRT-N +ADV +PREP +T-GPF +N-GPF +P-2GP +T-GPF +V-PMP-GPF +PREP +T-DPN +N-DPN +P-2GP +V-PAI-2P +CONJ +PRT-N +V-PAI-2P +V-PAI-2P +CONJ +V-PAI-2P +CONJ +PRT-N +V-PNI-2P +V-2AAN +V-PNI-2P +CONJ +V-PAI-2P +PRT-N +V-PAI-2P +PREP +T-ASN +PRT-N +V-PMN +P-2AP +V-PAI-2P +CONJ +PRT-N +V-PAI-2P +CONJ +ADV +V-PMI-2P +CONJ +PREP +T-DPF +N-DPF +P-2GP +V-AAS-2P +N-VPF +PRT-N +V-RAI-2P +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +N-NSF +T-GSM +N-GSM +V-PAI-3S +CONJ +COND +R-NSM +V-AOS-3S +V-PAN +A-NSM +T-GSM +N-GSM +A-NSM +T-GSM +N-GSM +V-PPI-3S +PRT +V-PAI-2P +CONJ +ADV +T-NSF +N-NSF +V-PAI-3S +PREP +N-ASM +V-PAI-3S +T-NSN +N-NSN +R-ASN +V-AAI-3S +PREP +P-1DP +CONJ +A-ASF-C +N-ASF +V-PAI-3S +CONJ +V-PAI-3S +T-NSM +N-NSM +A-DPM +V-PMI-3S +CONJ +A-DPM +V-PAI-3S +N-ASF +CONJ +V-2APM-2P +T-DSM +N-DSM +CONJ +V-2AAM-2P +T-DSM +A-DSM +CONJ +V-FDI-3S +PREP +P-2GP +V-AAM-2P +T-DSM +N-DSM +CONJ +V-FAI-3S +P-2DP +V-AAM-2P +N-APF +A-VPM +CONJ +V-AAM-2P +N-APF +A-VPM +V-AAM-2P +CONJ +V-AAM-2P +CONJ +V-AAM-2P +T-NSM +N-NSM +P-2GP +PREP +N-ASN +V-2APM-3S +CONJ +T-NSF +N-NSF +PREP +N-ASF +V-APM-2P +PREP +N-GSM +CONJ +V-FAI-3S +P-2AP +PRT-N +V-PAM-2P +C-GPM +N-VPM +T-NSM +V-PAP-NSM +N-GSM +PRT +V-PAP-NSM +T-ASM +N-ASM +P-GSM +V-PAI-3S +N-GSM +CONJ +V-PAI-3S +N-ASM +CONJ +COND +N-ASM +V-PAI-2S +V-PAI-2S +PRT-N +N-NSM +N-GSM +CONJ +N-NSM +A-NSM +V-PAI-3S +N-NSM +CONJ +N-NSM +T-NSM +V-PNP-NSM +V-AAN +CONJ +V-AAN +CONJ +P-2NS +I-NSM +V-PAI-2S +T-NSM +V-PAP-NSM +T-ASM +ADV +V-PAM-2S +ADV +T-NPM +V-PAP-NPM +ADV +PRT +ADV +V-FDI-1P +PREP +D-ASF +T-ASF +N-ASF +CONJ +V-FAI-1P +ADV +N-ASM +CONJ +V-FDI-1P +CONJ +V-FAI-1P +R-NPM +PRT-N +V-PNI-2P +T-GSF +ADV +I-NSF +T-NSF +N-NSF +P-2GP +CONJ +V-PAI-2P +N-NSF +T-NSF +PREP +A-ASN +V-PEP-NSF +ADV +CONJ +V-PPP-NSF +PREP +T-GSN +V-PAN +P-2AP +COND +T-NSM +N-NSM +V-AAS-3S +CONJ +V-FAI-1P +CONJ +V-FAI-1P +D-ASN +PRT +D-ASN +CONJ +ADV +V-PNI-2P +PREP +T-DPF +N-DPF +P-2GP +A-NSF +N-NSF +D-NSF +A-NSF +V-PAI-3S +CONJ +V-RAP-DSM +A-ASM +V-PAN +CONJ +PRT-N +V-PAP-DSM +N-NSF +P-DSM +V-PAI-3S +V-PAM-2S +ADV +T-NPM +A-NPM +V-AAM-2P +V-PAP-NPM +PREP +T-DPF +N-DPF +P-2GP +T-DPF +V-PNP-DPF +T-NSM +N-NSM +P-2GP +V-2RAI-3S +CONJ +T-NPN +N-NPN +P-2GP +A-NPN +V-2RAI-3S +T-NSM +N-NSM +P-2GP +CONJ +T-NSM +N-NSM +V-RPI-3S +CONJ +T-NSM +N-NSM +P-GPM +PREP +N-ASN +P-2DP +V-FDI-3S +CONJ +V-FDI-3S +T-APF +N-APF +P-2GP +ADV +N-ASN +V-AAI-2P +PREP +A-DPF-S +N-DPF +V-2AMM-2S +T-NSM +N-NSM +T-GPM +N-GPM +T-GPM +V-AAP-GPM +T-APF +N-APF +P-2GP +T-NSM +V-RPP-NSM +PREP +P-2GP +V-PAI-3S +CONJ +T-NPF +N-NPF +T-GPM +V-AAP-GPM +PREP +T-APN +N-APN +N-GSM +HEB +V-2RAI-3P +V-AAI-2P +PREP +T-GSF +N-GSF +CONJ +V-AAI-2P +V-AAI-2P +T-APF +N-APF +P-2GP +PREP +N-DSF +N-GSF +V-AAI-2P +V-AAI-2P +T-ASM +A-ASM +PRT-N +V-PMI-3S +P-2DP +CONJ +N-VPM +V-AAM-2P +ADV +T-GSF +N-GSF +T-GSM +N-GSM +V-2AMM-2S +T-NSM +N-NSM +V-PNI-3S +T-ASM +A-ASM +N-ASM +T-GSF +N-GSF +V-PAP-NSM +PREP +P-DSM +ADV +V-2AAS-3S +A-ASM +CONJ +A-ASM +V-AAM-2P +CONJ +P-2NP +V-AAM-2P +T-APF +N-APF +P-2GP +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-RAI-3S +N-VPM +PRT-N +V-PAM-2P +PREP +C-GPM +CONJ +PRT-N +V-APS-2P +V-2AMM-2S +T-NSM +N-NSM +PREP +T-GPF +N-GPF +V-RAI-3S +N-VPM +V-2AAM-2P +N-ASN +T-GSF +N-GSF +CONJ +T-GSF +N-GSF +T-APM +N-APM +R-NPM +V-AAI-3P +PREP +T-DSN +N-DSN +N-GSM +V-2AMM-2S +V-PAI-1P +T-APM +V-AAP-APM +T-ASF +N-ASF +N-PRI +V-AAI-2P +CONJ +T-ASN +N-ASN +N-GSM +V-2AAI-2P +CONJ +V-PAI-3S +T-NSM +N-NSM +A-NSM +CONJ +A-NSM +CONJ +N-VPM +P-1GS +PREP +A-GPN +PRT-N +V-PAM-2P +CONJ-N +T-ASM +N-ASM +CONJ-N +T-ASF +N-ASF +CONJ-N +A-ASM +X-ASM +N-ASM +CONJ +V-PAM-3S +P-2GP +T-NSN +PRT +PRT +CONJ +T-NSN +PRT-N +PRT-N +CONJ +PRT-N +PREP +N-ASF +V-2AAS-2P +V-PAI-3S +X-NSM +PREP +P-2DP +V-PNM-3S +V-PAI-3S +X-NSM +V-PAM-3S +V-PAI-3S +X-NSM +PREP +P-2DP +V-ADM-3S +T-APM +A-APM-C +T-GSF +N-GSF +CONJ +V-ADM-3P +PREP +P-ASM +V-AAP-NPM +N-DSN +PREP +T-DSN +N-DSN +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +V-FAI-3S +T-ASM +V-PAP-ASM +CONJ +V-FAI-3S +P-ASM +T-NSM +N-NSM +COND-K +N-APF +V-PAS-3S +V-RAP-NSM +V-FPI-3S +P-DSM +CONJ +V-PMM-2P +C-DPM +T-APF +N-APF +CONJ +V-PNM-2P +PREP +C-GPM +ADV +V-APS-2P +A-ASN +V-PAI-3S +N-NSF +A-GSM +V-PMP-NSF +N-NSM +V-IAI-3S +N-NSM +A-NSM +P-1DP +CONJ +N-DSF +V-ADI-3S +T-GSN +PRT-N +V-AAN +CONJ +PRT-N +V-AAI-3S +PREP +T-GSF +N-GSF +N-APM +A-APM +CONJ +N-APM +A-NUI +CONJ +ADV +V-ADI-3S +CONJ +T-NSM +N-NSM +N-ASM +V-AAI-3S +CONJ +T-NSF +N-NSF +V-AAI-3S +T-ASM +N-ASM +P-GSF +N-VPM +P-1GS +COND +X-NSM +PREP +P-2DP +V-APS-3S +PREP +T-GSF +N-GSF +CONJ +V-AAS-3S +X-NSM +P-ASM +V-PAM-2P +CONJ +T-NSM +V-AAP-NSM +A-ASM +PREP +N-GSF +N-GSF +P-GSM +V-FAI-3S +N-ASF +P-GSM +PREP +N-GSM +CONJ +V-FAI-3S +N-ASN +N-GPF +N-NSM +N-NSM +N-GSM +N-GSM +A-DPM +A-DPM +N-GSF +N-GSM +N-GSF +N-GSF +N-GSF +CONJ +N-GSF +PREP +N-ASF +N-GSM +N-GSM +PREP +N-DSM +N-GSN +PREP +N-ASF +CONJ +N-ASM +N-GSN +N-GSM +N-GSM +N-NSF +CONJ +N-NSF +P-2DP +V-APO-3S +A-NSM +T-NSM +N-NSM +CONJ +N-NSM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +T-NSM +PREP +T-ASN +A-ASN +P-GSM +N-ASN +V-AAP-NSM +P-1AP +PREP +N-ASF +V-PAP-ASF +PREP +N-GSF +N-GSM +N-GSM +PREP +A-GPM +PREP +N-ASF +A-ASF +CONJ +A-ASF +CONJ +A-ASF +V-RPP-ASF +PREP +N-DPM +PREP +P-2AP +T-APM +PREP +N-DSF +N-GSM +V-PPP-APM +PREP +N-GSF +PREP +N-ASF +A-ASF +V-APN +PREP +N-DSM +A-DSM-S +PREP +R-DSM +V-PNI-2P +COND +ADV +ADV +V-PAP-NSN +V-APP-NPM +PREP +A-DPM +N-DPM +CONJ +T-NSN +N-NSN +P-2GP +T-GSF +N-GSF +A-NSN-C +N-GSN +T-GSN +V-PMP-GSN +CONJ +PREP +N-GSN +V-PPP-GSN +V-APS-3S +PREP +N-ASM +CONJ +N-ASF +CONJ +N-ASF +PREP +N-DSF +N-GSM +N-GSM +R-ASM +PRT-N +V-2AAP-NPM +V-PAI-2P +CONJ +PREP +R-ASM +ADV +PRT-N +V-PAP-NPM +V-PAP-NPM +V-PNM-2P +N-DSF +A-DSF +CONJ +V-RPP-DSF +V-PMP-NPM +T-ASN +N-ASN +T-GSF +N-GSF +N-ASF +N-GPF +PREP +R-GSF +N-GSF +V-AAI-3P +CONJ +V-AAI-3P +N-NPM +T-NPM +PREP +T-GSF +PREP +P-2AP +N-GSF +V-AAP-NPM +V-PAP-NPM +PREP +I-ASM +PRT +I-ASM +N-ASM +V-IAI-3S +T-NSN +PREP +P-DPM +N-NSN +N-GSM +V-PNP-NSN +T-APN +PREP +N-ASM +N-APN +CONJ +T-APF +PREP +D-APN +N-APF +R-DPM +V-API-3S +CONJ +PRT-N +F-3DPM +CONJ +P-2DP +V-IAI-3P +P-APN +R-APN +ADV +V-2API-3S +P-2DP +PREP +T-GPM +V-AMP-GPM +P-2AP +PREP +N-DSN +A-DSN +V-2APP-DSN +PREP +N-GSM +PREP +R-APN +V-AAN +V-PAI-3P +N-NPM +CONJ +V-AMP-NPM +T-APF +N-APF +T-GSF +N-GSF +P-2GP +V-PAP-NPM +ADV +V-AAM-2P +PREP +T-ASF +V-PPP-ASF +P-2DP +N-ASF +PREP +N-DSF +N-GSM +N-GSM +ADV +N-NPN +N-GSF +PRT-N +V-PEP-NPM +T-DPF +ADV-C +PREP +T-DSF +N-DSF +P-2GP +N-DPF +CONJ +PREP +T-ASM +V-AAP-ASM +P-2AP +A-ASM +CONJ +P-NPM +A-NPM +PREP +A-DSF +N-DSF +V-AOM-2P +CONJ +V-RPI-3S +A-NPM +V-FDI-2P +CONJ +P-1NS +A-NSM +CONJ +COND +N-ASM +V-PMI-2P +T-ASM +ADV +V-PAP-ASM +PREP +T-ASN +A-GSM +N-ASN +PREP +N-DSM +T-ASM +T-GSF +N-GSF +P-2GP +N-ASM +V-2APM-2P +V-RAP-NPM +CONJ +PRT-N +A-DPN +N-DSN +PRT +N-DSN +V-API-2P +PREP +T-GSF +A-GSF +P-2GP +N-GSF +A-GSF +CONJ +A-DSN +N-DSN +ADV +N-GSM +A-GSM +CONJ +A-GSM +N-GSM +PRT +V-RPP-GSM +PREP +N-GSF +N-GSM +CONJ +V-APP-GSM +PREP +A-GSM-S +T-GPM +N-GPM +PREP +P-2AP +T-APM +PREP +P-GSM +A-APM +PREP +N-ASM +T-ASM +V-AAP-ASM +P-ASM +PREP +A-GPM +CONJ +N-ASF +P-DSM +V-2AAP-ASM +CONJ +T-ASF +N-ASF +P-2GP +CONJ +N-ASF +V-PAN +PREP +N-ASM +T-APF +N-APF +P-2GP +V-RAP-NPM +PREP +T-DSF +N-DSF +T-GSF +N-GSF +PREP +N-ASF +A-ASF +PREP +N-GSF +C-APM +V-AAM-2P +ADV +V-RPP-NPM +PRT-N +PREP +N-GSF +A-GSF +CONJ +A-GSF +PREP +N-GSM +N-GSM +V-PAP-GSM +CONJ +V-PAP-GSM +CONJ +A-NSF +N-NSF +ADV +N-NSM +CONJ +A-NSF +N-NSF +P-GSF +ADV +N-NSN +N-GSM +V-API-3S +T-NSM +N-NSM +CONJ +T-NSN +N-NSN +V-2AAI-3S +CONJ +T-NSN +N-NSN +N-GSM +V-PAI-3S +PREP +T-ASM +N-ASM +CONJ +D-NSN +V-PAI-3S +T-NSN +N-NSN +T-NSN +V-APP-NSN +PREP +P-2AP +CONJ +V-2AMP-NPM +A-ASF +N-ASF +CONJ +A-ASM +N-ASM +CONJ +A-APF +CONJ +N-APM +CONJ +A-APF +N-APF +ADV +A-NPN +N-NPN +T-ASN +A-ASN +A-ASN +N-ASN +V-AAM-2P +CONJ +PREP +P-DSN +V-APS-2P +PREP +N-ASF +COND +V-ADI-2P +CONJ +A-NSM +T-NSM +N-NSM +V-PNP-NPM +PREP +R-ASM +N-ASM +V-PAP-ASM +PRT +PREP +N-GPM +V-RPP-ASM +CONJ +PREP +N-DSM +A-ASM +A-ASM +CONJ +P-NPM +ADV +N-NPM +V-PAP-NPM +V-PPI-2P +N-NSM +A-NSM +PREP +N-ASN +A-ASN +V-AAN +A-APF +N-APF +A-APF +N-DSM +PREP +N-GSM +N-GSM +CONJ +V-PAI-3S +PREP +N-DSF +V-2AMM-2S +V-PAI-1S +PREP +N-PRI +N-ASM +A-ASM +A-ASM +A-ASM +CONJ +T-NSM +V-PAP-NSM +PREP +P-DSM +PRT-N +PRT-N +V-APS-3S +CONJ +T-NSF +N-NSF +P-2DP +T-DPM +V-PAP-DPM +CONJ +V-PAP-DPM +N-NSM +R-ASM +V-AAI-3P +T-NPM +V-PAP-NPM +D-NSM +V-AOI-3S +PREP +N-ASF +N-GSF +CONJ +N-NSM +N-GSN +CONJ +N-NSF +N-GSN +R-NPM +V-PAI-3P +T-DSM +N-DSM +V-PAP-NPM +PREP +R-ASN +CONJ +V-API-3P +CONJ +P-2NP +N-NSN +A-NSN +A-NSN +N-NSN +N-NSN +A-NSN +N-NSM +PREP +N-ASF +ADV +V-AAS-2P +T-APF +N-APF +T-GSM +PREP +N-GSN +P-2AP +V-AAP-GSM +PREP +T-ASN +A-ASN +P-GSM +N-ASN +R-NPM +PRT +PRT-N +N-NSM +CONJ +ADV +N-NSM +N-GSM +T-NPM +PRT-N +V-RPP-NPM +CONJ +ADV +V-APP-NPM +A-VPM +V-PAI-1S +ADV +A-APM +CONJ +A-APM +V-PMN +T-GPF +A-GPF +N-GPF +R-NPF +V-PMI-3P +PREP +T-GSF +N-GSF +T-ASF +N-ASF +P-2GP +PREP +T-DPN +N-DPN +V-PAP-NPM +A-ASF +CONJ +PREP +R-DSN +V-PAI-3P +P-2GP +ADV +A-GPM +PREP +T-GPN +A-GPN +N-GPN +V-PAP-NPM +V-AAS-3P +T-ASM +N-ASM +PREP +N-DSF +N-GSF +V-2APM-2P +PREP +T-ASM +N-ASM +A-DSF +A-DSF +N-DSF +CONJ +N-DSM +ADV +V-PAP-DSM +CONJ +N-DPM +ADV +PREP +P-GSM +V-PPP-DPM +PREP +N-ASF +A-GPM +CONJ +N-ASM +A-GPM +CONJ +ADV +V-PAI-3S +T-NSN +N-NSN +T-GSM +N-GSM +V-PAP-APM +V-PAN +T-ASF +T-GPM +A-GPM +N-GPM +N-ASF +ADV +A-NPM +CONJ +PRT-N +ADV +V-PAP-NPM +N-ASN +T-GSF +N-GSF +T-ASF +N-ASF +CONJ +ADV +N-GSM +N-NPM +A-APM +V-AAM-2P +T-ASF +N-ASF +V-PAM-2P +T-ASM +N-ASM +V-PNM-2P +T-ASM +N-ASM +V-PAM-2P +T-NPM +N-NPM +V-PPP-NPM +PREP +A-DSM +N-DSM +T-DPM +N-DPM +PRT-N +ADV +T-DPM +A-DPM +CONJ +A-DPM +CONJ +CONJ +T-DPM +A-DPM +CONJ +D-NSN +N-NSF +COND +PREP +N-ASF +N-GSM +V-PAI-3S +X-NSM +N-APF +V-PAP-NSM +ADV +CONJ +I-NSN +N-NSN +COND +V-PAP-NPM +CONJ +V-PPP-NPM +V-FAI-2P +CONJ +COND +V-PAP-NPM +CONJ +V-PAP-NPM +V-FAI-2P +D-NSN +N-NSF +PREP +N-DSM +CONJ +PREP +D-ASN +V-API-2P +CONJ +CONJ +N-NSM +V-2AAI-3S +PREP +P-2GP +P-2DP +V-PAP-NSM +N-ASM +CONJ +V-AAS-2P +T-DPN +N-DPN +P-GSM +R-NSM +N-ASF +PRT-N +V-AAI-3S +CONJ-N +V-API-3S +N-NSM +PREP +T-DSN +N-DSN +P-GSM +R-NSM +V-PPP-NSM +PRT-N +V-IAI-3S +V-PAP-NSM +PRT-N +V-IAI-3S +CONJ +V-IAI-3S +T-DSM +V-PAP-DSM +ADV +R-NSM +P-NSM +T-APF +N-APF +P-1GP +V-AAI-3S +PREP +T-DSN +N-DSN +P-GSM +PREP +T-ASN +N-ASN +CONJ +T-DPF +N-DPF +V-2ADP-NPM +T-DSF +N-DSF +V-AAS-1P +R-GSM +T-DSM +N-DSM +V-API-2P +CONJ +V-IAI-2P +ADV +N-NPN +V-PPP-NPM +CONJ +V-2API-2P +ADV +PREP +T-ASM +N-ASM +CONJ +N-ASM +T-GPF +N-GPF +P-2GP +N-NPF +ADV +V-PPP-NPF +T-DPM +A-DPM +N-DPM +CONJ +COND +CONJ +X-NPM +V-PAI-3P +T-DSM +N-DSM +PREP +T-GSF +T-GPF +N-GPF +N-GSF +PREP +N-GSM +V-FPI-3P +V-AAP-NPM +T-ASF +PREP +N-DSM +A-ASF +N-ASF +P-2GP +R-GPF +V-PAM-3S +PRT-N +T-NSM +ADV +N-GSF +N-GPF +CONJ +N-GSF +N-GPN +PRT +N-GSF +N-GPN +N-NSM +CONJ +T-NSM +A-NSM +T-GSF +N-GSF +N-NSM +PREP +T-DSN +A-DSN +T-GSN +A-GSN +CONJ +A-GSN +N-GSN +R-NSN +V-PAI-3S +PREP +T-GSM +N-GSM +A-NSN +CONJ +ADV +PRT +CONJ +T-NPF +A-NPF +N-NPF +T-NPF +V-PAP-NPF +PREP +N-ASM +V-IAI-3P +F-3APF +V-PPP-NPF +T-DPM +A-DPM +N-DPM +ADV +N-NSF +V-AAI-3S +T-DSM +N-PRI +N-ASM +P-ASM +V-PAP-NSF +R-GSF +N-APN +V-AOI-2P +V-PAP-NPF +CONJ +PRT-N +V-PNP-NPF +A-ASF-N +N-ASF +T-NPM +N-NPM +ADV +V-PAP-NPM +PREP +N-ASF +ADV +A-DSN-C +N-DSN +T-DSN +A-DSN +V-PAP-NPM +N-ASF +ADV +CONJ +N-DPM +N-GSF +N-GSF +PREP +T-ASN +PRT-N +V-PPN +T-APF +N-APF +P-2GP +CONJ +T-NSN +N-NSN +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +A-NPM +PRT-N +V-PAP-NPM +A-ASN +PREP +A-GSN +PRT +N-ASF +PREP +N-GSF +CONJ +ADV-K +V-PAP-NPM +CONJ +PREP +D-ASN +V-API-2P +CONJ +N-ASF +V-AAS-2P +CONJ +T-NSM +V-PAP-NSM +N-ASF +V-PAN +CONJ +V-2AAN +N-APF +A-APF +V-AAM-3S +T-ASF +N-ASF +PREP +A-GSN +CONJ +N-APN +T-GSN +PRT-N +V-AAN +N-ASM +CONJ +V-AAM-3S +PREP +A-GSN +CONJ +V-AAM-3S +A-ASN +V-AAM-3S +N-ASF +CONJ +V-AAM-3S +P-ASF +CONJ +N-NPM +N-GSM +PREP +A-APM +CONJ +N-NPN +P-GSM +PREP +N-ASF +P-GPM +CONJ +N-NSN +N-GSM +PREP +V-PAP-APM +A-APN +CONJ +I-NSM +T-NSM +V-FAP-NSM +P-2AP +COND +T-GSM +A-GSN +N-NPM +V-2ADS-2P +CONJ +COND +CONJ +V-PAO-2P +PREP +N-ASF +A-NPM +CONJ +T-ASM +N-ASM +P-GPM +PRT-N +V-AOM-2P +CONJ-N +V-APS-2P +CONJ +N-ASM +T-ASM +N-ASM +V-AAM-2P +PREP +T-DPF +N-DPF +P-2GP +A-NPM +ADV +PREP +N-ASF +A-DSM +T-DSM +V-PAP-DSM +P-2AP +N-ASM +PREP +T-GSF +PREP +P-2DP +N-GSF +CONJ +PREP +N-GSF +CONJ +N-GSM +N-ASF +A-ASF +V-PAP-NPM +CONJ +PREP +R-DSN +V-PPI-2P +V-APS-3P +T-NPM +V-PAP-NPM +P-2GP +T-ASF +A-ASF +PREP +N-DSM +N-ASF +CONJ +A-NSN-C +V-PAP-APM +COND +V-PAO-3S +T-NSN +N-NSN +T-GSM +N-GSM +V-PAN +PRT +V-PAP-APM +CONJ +CONJ +N-NSM +ADV +PREP +N-GPF +V-2AAI-3S +A-NSM +PREP +A-GPM +CONJ +P-2AP +V-2AAS-3S +T-DSM +N-DSM +PRT +V-RPP-NSM +N-DSF +CONJ +V-APP-NSM +N-DSN +PREP +R-DSN +V-AOP-NSM +V-AAI-3S +CONJ +T-DPN +PREP +N-DSF +N-DPN +V-AAP-DPM +PRT +ADV +V-INI-3S +T-NSF +T-GSM +N-GSM +N-NSF +PREP +N-DPF +N-PRI +V-PPP-GSF +N-GSF +PREP +R-ASF +A-NPM +D-NSN +V-PAI-3S +A-NUI +N-NPF +V-API-3P +PREP +N-GSN +R-NSN +CONJ +P-2AP +ADV +V-PAI-3S +A-NSN +N-NSN +PRT-N +N-GSF +N-NSF +N-GSM +CONJ +N-GSF +A-GSF +N-NSN +PREP +N-ASM +PREP +N-GSF +N-GSM +N-GSM +R-NSM +V-PAI-3S +PREP +A-DSF +N-GSM +V-AOP-NSM +PREP +N-ASM +V-2APP-GPM +P-DSM +N-GPM +CONJ +N-GPF +CONJ +N-GPF +CONJ +N-GSM +V-2AAP-GSM +N-DSF +CONJ +P-2NP +T-ASF +P-ASF +N-ASF +V-AMM-2P +PREP +T-ASN +ADV-N +N-GPM +N-DPF +CONJ +N-DSN +N-GSM +T-ASM +A-ASM +PREP +N-DSF +N-ASM +V-AAN +CONJ +T-NSM +V-2AAP-NSM +N-DSF +V-RPI-3S +N-APF +CONJ +A-NSM +T-NSM +V-2RAP-NSM +N-NSM +T-ASN +N-ASN +T-GPN +N-GPN +V-RNN +V-RNP-APM +PREP +N-DPF +N-DPF +N-DPF +N-DPM +N-DPM +CONJ +A-DPF +N-DPF +PREP +R-DSN +V-PPI-3P +PRT-N +V-PAP-GPM +P-2GP +PREP +T-ASF +P-ASF +T-GSF +N-GSF +N-ASF +V-PAP-NPM +R-NPM +V-FAI-3P +N-ASM +T-DSM +ADV +V-PAP-DSM +V-AAN +V-PAP-APM +CONJ +A-APM +CONJ +PREP +D-ASN +CONJ +A-DPM +V-API-3S +CONJ +PRT +V-APS-3P +PREP +N-APM +N-DSF +CONJ +V-PAS-3P +PREP +N-ASM +N-DSN +CONJ +A-GPN +T-NSN +N-NSN +V-RAI-3S +CONJ +V-AAM-2P +CONJ +V-AAM-2P +PREP +N-APF +PREP +A-GPM +T-ASF +PREP +F-2APM +N-ASF +A-ASF +V-PAP-NPM +CONJ +N-NSF +V-PAI-3S +N-ASN +N-GPF +A-NPM +PREP +C-APM +PREP +N-GSM +A-NSM +ADV +V-2AAI-3S +N-ASN +PREP +F-3APM +P-ASN +V-PAP-NPM +ADV +A-NPM +N-NPM +A-GSF +N-GSF +N-GSM +COND +X-NSM +V-PAI-3S +ADV +N-APN +N-GSM +COND +X-NSM +V-PAI-3S +ADV +PREP +N-GSF +R-GSF +V-PAI-3S +T-NSM +N-NSM +CONJ +PREP +A-DPN +V-PPS-3S +T-NSM +N-NSM +PREP +N-GSM +N-GSM +R-DSM +V-PAI-3S +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +A-VPM +PRT-N +V-PPM-2P +T-DSF +PREP +P-2DP +N-DSF +PREP +N-ASM +P-2DP +V-PNP-DSF +ADV +A-GSN +P-2DP +V-PAP-GSN +CONJ +ADV +V-PAI-2P +T-DPN +T-GSM +N-GSM +N-DPN +V-PAM-2P +CONJ +CONJ +PREP +T-DSF +N-DSF +T-GSF +N-GSF +P-GSM +V-2AOS-2P +V-PNP-NPM +COND +V-PPI-2P +PREP +N-DSN +N-GSM +A-NPM +CONJ +T-NSN +T-GSF +N-GSF +CONJ +T-NSN +T-GSM +N-GSM +N-NSN +PREP +P-2AP +V-PMI-3S +CONJ +PRT-N +X-NSM +P-2GP +V-PAM-3S +ADV +N-NSM +PRT +N-NSM +PRT +A-NSM +PRT +ADV +N-NSM +CONJ +COND +ADV +N-NSM +PRT-N +V-PPM-3S +CONJ +V-PAM-3S +T-ASM +N-ASM +PREP +T-DSN +N-DSN +D-DSN +CONJ +T-NSM +N-NSM +T-GSN +V-AMN +T-ASN +N-ASN +PREP +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +COND +ADV-S +PREP +P-1GP +I-NSN +T-NSN +N-NSN +T-GPM +V-PAP-GPM +T-DSN +T-GSM +N-GSM +N-DSN +CONJ +COND +T-NSM +A-NSM +ADV +V-PPI-3S +T-NSM +A-NSM +CONJ +A-NSM +ADV-I +V-FDI-3S +CONJ +CONJ +T-NPM +V-PAP-NPM +PREP +T-ASN +N-ASN +T-GSM +N-GSM +A-DSM +N-DSM +V-PPM-3P +T-APF +N-APF +P-GPM +PREP +N-DSF +CONJ +A-APM-C +PREP +P-2DP +V-PAI-1S +T-NSM +N-NSM-C +CONJ +N-NSM +T-GPN +T-GSM +N-GSM +N-GPN +CONJ +T-NSM +T-GSF +V-PAP-GSF +V-PPN +N-GSF +N-NSM +V-AAM-2P +T-ASN +PREP +P-2DP +N-ASN +T-GSM +N-GSM +PRT-N +ADV +CONJ +ADV +PREP +N-ASM +CONJ-N +ADV +CONJ +ADV +CONJ-N +ADV +V-PAP-NPM +T-GPM +N-GPM +CONJ +V-PNP-NPM +N-NPM +T-GSN +N-GSN +CONJ +V-APP-GSM +T-GSM +N-GSM +V-FDI-2P-ATT +T-ASM +A-ASM +T-GSF +N-GSF +N-ASM +A-NPM-C +ADV +V-2APM-2P +A-DPM-C +CONJ +A-NPM +C-DPM +T-ASF +N-ASF +V-ADM-2P +CONJ +T-NSM +N-NSM +A-DPM +V-PMI-3S +CONJ +A-DPM +V-PAI-3S +N-ASF +CONJ +V-APM-2P +PREP +T-ASF +A-ASF +N-ASF +T-GSM +N-GSM +CONJ +P-2AP +V-AAS-3S +PREP +N-DSM +A-ASF +T-ASF +N-ASF +P-2GP +V-AAP-NPM +PREP +P-ASM +CONJ +P-DSM +V-PAI-3S +PREP +P-2GP +V-AAM-2P +V-AAM-2P +T-NSM +N-NSM +P-2GP +A-NSM +ADV +N-NSM +V-PNP-NSM +V-PAI-3S +V-PAP-NSM +X-ASM +V-2AAN +R-DSM +V-2AAM-2P +A-NPM +T-DSF +N-DSF +V-RAP-NPM +T-APN +P-APN +T-GPN +N-GPN +T-DSF +PREP +T-DSM +N-DSM +P-2GP +N-DSF +V-PPN +CONJ +T-NSM +N-NSM +A-GSF +N-GSF +T-NSM +V-AAP-NSM +P-2AP +PREP +T-ASF +A-ASF +P-GSM +N-ASF +PREP +N-DSM +ADV +V-2AAP-APM +P-NSM +V-FAI-3S +V-FAI-3S +V-FAI-3S +V-FAI-3S +P-DSM +T-NSN +N-NSN +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +P-2DP +PREP +N-GSM +T-GSM +A-GSM +N-GSM +ADV +V-PNI-1S +PREP +A-GPN +V-AAI-1S +V-PAP-NSM +CONJ +V-PAP-NSM +D-ASF +V-PAN +A-ASF +N-ASF +T-GSM +N-GSM +PREP +R-ASF +V-2AAS-2P +V-PNI-3S +P-2AP +T-NSF +PREP +N-DSF +A-NSF +CONJ +N-NSM +T-NSM +N-NSM +P-1GS +V-ADM-2P +C-APM +PREP +N-DSN +N-GSF +N-NSF +P-2DP +A-DPM +T-DPM +PREP +N-DSM +N-PRI +N-NSM +N-NSM +CONJ +N-NSM +N-GSM +N-GSM +T-DPM +P-1DP +V-2AAP-DPM +A-ASF +N-ASF +PREP +N-DSF +T-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +N-NSF +CONJ +N-NSF +P-2DP +V-APO-3S +PREP +N-DSF +T-GSM +N-GSM +CONJ +N-GSM +T-GSM +N-GSM +P-1GP +ADV +P-1DP +T-GSF +A-GSF +N-GSF +P-GSM +T-APN +A-APN +T-APN +PREP +N-ASF +CONJ +N-ASF +V-RPP-GSF +PREP +T-GSF +N-GSF +T-GSM +V-AAP-GSM +P-1AP +A-DSF +N-DSF +CONJ +N-DSF +PREP +R-GPF +T-NPN +A-NPN +CONJ +A-NPN-S +N-NPN +P-1DP +V-RPI-3S +CONJ +PREP +D-GPN +V-2ADS-2P +N-NPM +A-GSF +N-GSF +V-2AAP-NPM +T-GSF +PREP +T-DSM +N-DSM +PREP +N-DSF +N-GSF +CONJ +CONJ +P-ASN +D-ASN +N-ASF +A-ASF +V-AAP-NPM +V-AAM-2P +PREP +T-DSF +N-DSF +P-2GP +T-ASF +N-ASF +CONJ +PREP +T-DSF +N-DSF +T-ASF +N-ASF +CONJ +PREP +T-DSF +N-DSF +T-ASF +N-ASF +CONJ +PREP +T-DSF +N-DSF +T-ASF +N-ASF +CONJ +PREP +T-DSF +N-DSF +T-ASF +N-ASF +CONJ +PREP +T-DSF +N-DSF +T-ASF +N-ASF +CONJ +PREP +T-DSF +N-DSF +T-ASF +N-ASF +CONJ +D-NPN +P-2DP +V-PAP-NPN +CONJ +V-PAP-NPN +PRT-N +A-APM +CONJ-N +A-APM +V-PAI-3S +PREP +T-ASF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +N-ASF +CONJ +R-DSM +PRT-N +V-PAI-3S +D-APN +A-NSM +V-PAI-3S +V-PAP-NSM +V-2AAP-NSM +N-ASF +T-GSM +N-GSM +T-GPF +ADV +P-GSM +N-GPF +CONJ +N-VPM +ADV +V-AAM-2P +A-ASF +P-2GP +T-ASF +N-ASF +CONJ +N-ASF +V-PMN +CONJ +D-APN +V-PAP-NPM +PRT-N +PRT-N +V-AAS-2P +PRT +CONJ +ADV +ADV +V-FPI-3S +P-2DP +T-NSF +N-NSF +PREP +T-ASF +A-ASF +N-ASF +T-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +CONJ +V-FAI-1S +ADV +P-2AP +V-PAN +PREP +D-GPN +CONJ +V-RAP-APM +CONJ +V-RPP-APM +PREP +T-DSF +V-PAP-DSF +N-DSF +CONJ +A-ASN +V-PNI-1S +PREP +K-ASM +V-PAI-1S +PREP +D-DSN +T-DSN +N-DSN +V-PAN +P-2AP +PREP +N-DSF +V-RAP-NSM +CONJ +A-NSF +V-PAI-3S +T-NSF +N-NSF +T-GSN +N-GSN +P-1GS +ADV +CONJ +T-NSM +N-NSM +P-1GP +N-NSM +N-NSM +V-AAI-3S +P-1DS +CONJ +V-FAI-1S +CONJ +ADV +V-PAN +P-2AP +PREP +T-ASF +S-1SASF +N-ASF +T-ASF +D-GPN +N-ASF +V-PMN +CONJ +PRT-N +V-RPP-DPM +N-DPM +V-AAP-NPM +V-AAI-1P +P-2DP +T-ASF +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +N-ASF +CONJ +N-ASF +CONJ +V-AOP-NPM +N-NPM +T-GSF +D-GSM +N-GSF +CONJ +V-2AAP-NSM +PREP +N-GSM +N-GSM +N-ASF +CONJ +N-ASF +N-GSF +D-GSF +V-APP-GSF +P-DSM +PREP +T-GSF +A-GSF +N-GSF +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +P-1GS +D-NSM +V-PAI-3S +PREP +R-ASM +P-1NS +V-AAI-1S +CONJ +D-ASF +T-ASF +N-ASF +P-1NP +V-AAI-1P +PREP +N-GSM +V-APP-ASF +PREP +P-DSM +V-PAP-NPM +PREP +T-DSN +A-DSN +N-DSN +CONJ +V-PAI-1P +A-ASM-C +T-ASM +A-ASM +N-ASM +ADV +V-PAI-2P +R-DSM +V-PAP-NPM +ADV +N-DSM +V-PEP-DSM +PREP +A-DSM +N-DSM +ADV +R-GSM +N-NSF +V-AAS-3S +CONJ +A-NSM +V-AAS-3S +PREP +T-DPF +N-DPF +P-2GP +D-ASN +ADV-S +V-PAP-NPM +CONJ +A-NSF +N-NSF +N-GSF +A-GSF +N-GSF +PRT-N +V-PNI-3S +CONJ +PRT-N +N-DSN +N-GSM +V-API-3S +N-NSF +PRT +CONJ +PREP +N-GSN +A-GSN +V-PPP-NPM +V-AAI-3P +PREP +N-GSM +N-NPM +CONJ +V-2ADI-3P +CONJ +N-NPM +PREP +T-DSM +N-DSM +ADV +CONJ +PREP +P-2DP +V-FDI-3P +N-NPM +R-NPM +V-FAI-3P +N-APF +N-GSF +CONJ +T-ASM +V-AAP-ASM +P-APM +N-ASM +V-PNP-NPM +V-PAP-NPM +F-3DPM +A-ASF +N-ASF +CONJ +A-NPM +V-FAI-3P +P-GPM +T-DPF +N-DPF +PREP +R-APM +T-NSF +N-NSF +T-GSF +N-GSF +V-FPI-3S +CONJ +PREP +N-DSF +A-DPM +N-DPM +P-2AP +V-FDI-3P +R-DPM +T-NSN +N-NSN +ADV +PRT-N +V-PAI-3S +CONJ +T-NSF +N-NSF +P-GPM +PRT-N +V-PAI-3S +CONJ +COND +T-NSM +N-NSM +N-GPM +V-AAP-GPM +PRT-N +V-ADI-3S +CONJ +N-DPM +N-GSM +V-AAP-NSM +V-AAI-3S +PREP +N-ASF +V-PPP-APM +CONJ +A-GSM +N-GSM +PRT-N +V-ADI-3S +CONJ +A-ASM +N-PRI +N-GSF +N-ASM +V-AAI-3S +N-ASM +N-DSM +A-GPM +V-AAP-NSM +CONJ +N-APF +N-GPN +CONJ +N-GSF +V-AAP-NSM +N-DSF +V-AAI-3S +N-ASN +V-PAP-GPM +V-PAN +V-RAP-NSM +CONJ +A-ASM +N-PRI +V-PPP-ASM +PREP +T-GSF +T-GPM +A-GPM +PREP +N-DSF +N-GSF +V-ANI-3S +CONJ +N-DSN +CONJ +N-DSF +T-NSM +A-NSM +V-PAP-NSM +PREP +P-DPM +N-ASF +PREP +N-GSF +N-ASF +A-ASF +A-DPN +N-DPN +V-IAI-3S +V-RAI-3S +N-NSM +A-APM +PREP +N-GSM +V-PNN +CONJ +A-APM +PREP +N-ASF +N-GSF +V-PPP-APM +V-PAN +CONJ +ADV-S +T-APM +ADV +N-GSF +PREP +N-DSF +N-GSM +V-PNP-APM +CONJ +N-GSF +V-PAP-APM +N-NPM +A-NPM +N-APF +V-PAP-NPM +PRT-N +V-PAI-3P +ADV +N-NPM +N-DSF +CONJ +N-DSF +A-NPM-C +V-PAP-NPM +PRT-N +V-PAI-3P +PREP +P-GPM +PREP +N-DSM +A-ASF +N-ASF +CONJ +D-NPM +ADV +A-NPN +N-NPN +V-RPP-NPN +A-NPN +PREP +N-ASF +CONJ +N-ASF +PREP +R-DPM +V-PAI-3P +V-PAP-NPM +PREP +T-DSF +N-DSF +P-GPM +CONJ +V-2FPI-3P +V-PPP-NPM +N-ASM +N-GSF +N-ASF +V-PNP-NPM +T-ASF +PREP +N-DSF +N-ASF +N-NPM +CONJ +N-NPM +V-PAP-NPM +PREP +T-DPF +N-DPF +P-GPM +V-PNP-NPM +P-2DP +V-PAP-NPM +N-APM +A-APM +N-GSF +CONJ +A-APM +N-GSF +V-PAP-NPM +N-APF +A-APF +N-ASF +V-RPP-ASF +N-GSF +V-PAP-NPM +N-GSF +N-NPN +V-PAP-NPM +A-ASF +N-ASF +V-API-3P +V-AAP-NPM +T-DSF +N-DSF +T-GSM +N-PRI +T-GSM +N-PRI +R-NSM +N-ASM +N-GSF +V-AAI-3S +CONJ +N-ASF +A-GSF +N-GSF +V-2AAI-3S +N-NSN +A-NSN +PREP +N-GSM +N-DSF +V-ANP-NSN +V-AAI-3S +T-ASF +T-GSM +N-GSM +N-ASF +D-NPM +V-PAI-3P +N-NPF +A-NPF +CONJ +N-NPF +PREP +N-GSF +V-PPP-NPF +R-DPM +T-NSM +N-NSM +T-GSN +N-GSN +V-RPI-3S +CONJ +A-APN +N-GSF +V-PDP-NPM +V-PAI-3P +PREP +N-DPF +N-GSF +N-DPF +T-APM +ADV +V-PAP-APM +T-APM +PREP +N-DSF +V-PPP-APM +N-ASF +P-DPM +V-PNP-NPM +P-NPM +V-PAP-NPM +N-NPM +T-GSF +N-GSF +CONJ +R-DSM +X-NSM +V-RNI-3S +D-DSM +V-RPI-3S +CONJ +COND +V-2AAP-NPM +T-APN +N-APN +T-GSM +N-GSM +PREP +N-DSF +T-GSM +N-GSM +CONJ +N-GSM +N-GSM +N-GSM +CONJ +D-DPN +ADV +V-2APP-NPM +V-PNI-3P +V-2RAI-3S +P-DPM +T-NPN +A-NPN-S +A-NPN +T-GPN +A-GPN-S +CONJ +A-NSN-C +V-IAI-3S +P-DPM +PRT-N +V-RAN +T-ASF +N-ASF +T-GSF +N-GSF +PRT +V-2AAP-DPM +V-AAN +PREP +T-GSF +V-APP-GSF +P-DPM +A-GSF +N-GSF +V-RAI-3S +P-DPM +T-NSN +T-GSF +A-GSF +N-GSF +N-NSM +V-AAP-NSM +PREP +T-ASN +A-ASN +N-ASN +CONJ +N-NSF +V-AMP-NSF +PREP +N-ASM +N-GSM +A-VPM +ADV +D-ASF +A-ASF +N-ASF +P-2DP +V-PAI-1S +PREP +R-DPF +V-PAI-1S +PREP +N-DSF +P-2GP +T-ASF +A-ASF +N-ASF +V-APN +T-GPM +V-RPP-GPM +PREP +T-GPM +A-GPM +N-GPM +N-GPN +CONJ +T-GSF +T-GPM +N-GPM +P-2GP +N-GSF +T-GSM +N-GSM +CONJ +N-GSM +D-ASN +ADV-S +V-PAP-NPM +CONJ +V-FDI-3P +PREP +A-GPF-S +T-GPF +N-GPF +PREP +N-DSF +N-NPM +PREP +T-APF +A-APF +N-APF +P-GPM +V-PNP-NPM +CONJ +V-PAP-NPM +ADV-I +V-PAI-3S +T-NSF +N-NSF +T-GSF +N-GSF +P-GSM +CONJ +PREP +R-GSF +T-NPM +N-NPM +V-API-3P +A-NPN +ADV +V-PAI-3S +PREP +N-GSF +N-GSF +CONJ +V-PAI-3S +P-APM +D-NSN +V-PAP-APM +CONJ +N-NPM +V-IAI-3P +ADV +CONJ +N-NSF +PREP +N-GSN +CONJ +PREP +N-GSN +V-RAP-NSF +T-DSM +T-GSM +N-GSM +N-DSM +PREP +R-GPN +T-NSM +ADV +N-NSM +N-DSN +V-APP-NSM +V-2AMI-3S +CONJ +T-NPM +ADV +N-NPM +CONJ +T-NSF +N-NSF +T-DSM +P-DSM +N-DSM +V-RPP-NPM +V-PAI-3P +N-DSN +V-PPP-NPM +PREP +N-ASF +N-GSF +CONJ +N-GSF +T-GPM +A-GPM +N-GPM +CONJ +A-VPM +A-NSN +D-NSN +PRT-N +V-PAM-3S +P-2AP +CONJ +A-NSF +N-NSF +PREP +N-DSM +ADV +A-NPN +N-NPN +CONJ +A-NPN +N-NPN +ADV +N-NSF +A-NSF +PRT-N +V-PAI-3S +N-NSM +T-GSF +N-GSF +ADV +X-NPM +N-ASF +V-PNI-3P +CONJ +V-PAI-3S +PREP +P-2AP +V-PNP-NSM +PRT-N +X-APM +V-2AMN +CONJ +A-APM +PREP +N-ASF +V-AAN +CONJ +V-FAI-3S +N-NSF +N-GSM +ADV +N-NSM +PREP +R-DSF +T-NPM +N-NPM +ADV +V-FDI-3P +CONJ +N-NPN +V-PPP-NPN +V-FPI-3S +CONJ +N-NSF +CONJ +T-NPN +PREP +P-DSF +N-NPN +V-FPI-3S +ADV +D-GPN +A-GPN +V-PPP-GPN +V-PAI-3S +A-APM +V-PAN +P-2AP +PREP +A-DPF +N-DPF +CONJ +N-DPF +V-PAP-APM +CONJ +V-PAP-APM +T-ASF +N-ASF +T-GSF +T-GSM +N-GSM +N-GSF +PREP +R-ASF +N-NPM +V-PPP-NPM +V-FPI-3P +CONJ +N-NPN +V-PPP-NPN +V-PPI-3S +CONJ +A-APM +N-APM +CONJ +N-ASF +A-ASF +PREP +T-ASN +N-ASN +P-GSM +V-PAI-1P +PREP +R-DPM +N-NSF +V-PAI-3S +CONJ +A-VPM +D-APN +V-PAP-NPM +V-AAM-2P +A-NPM +CONJ +A-NPM +P-DSM +V-APN +PREP +N-DSF +CONJ +T-ASF +T-GSM +N-GSM +P-1GP +N-ASF +N-ASF +V-PNM-2P +ADV +CONJ +T-NSM +A-NSM +P-1GP +N-NSM +N-NSM +PREP +T-ASF +V-APP-ASF +P-DSM +N-ASF +V-AAI-3S +P-2DP +ADV +CONJ +PREP +A-DPF +N-DPF +V-PAP-NSM +PREP +P-DPF +PREP +D-GPN +PREP +R-DPF +V-PAI-3S +A-NPN +X-NPN +R-APN +T-NPM +A-NPM +CONJ +A-NPM +V-PAI-3P +ADV +CONJ +T-APF +A-APF +N-APF +PREP +T-ASF +A-ASF +P-GPM +N-ASF +CONJ +A-VPM +P-2NP +V-PAP-NPM +V-PMM-2P +CONJ +PRT-N +T-DSF +T-GPM +A-GPM +N-DSF +V-APP-NPM +V-2AAS-2P +T-GSM +A-GSM +N-GSM +CONJ +V-PAM-2P +PREP +N-DSF +CONJ +N-DSF +T-GSM +N-GSM +P-1GP +CONJ +N-GSM +N-GSM +N-GSM +P-DSM +T-NSF +N-NSF +CONJ +ADV +CONJ +PREP +N-ASF +N-GSM +R-NSN +V-IAI-3S +PREP +N-GSF +R-ASN +V-2RAI-1P-ATT +R-ASN +V-RAI-1P-ATT +T-DPM +N-DPM +P-1GP +R-ASN +V-ADI-1P +CONJ +T-NPF +N-NPF +P-1GP +V-AAI-3P +PREP +T-GSM +N-GSM +T-GSF +N-GSF +CONJ +T-NSF +N-NSF +V-API-3S +CONJ +V-RAI-1P-ATT +CONJ +V-PAI-1P +CONJ +V-PAI-1P +P-2DP +T-ASF +N-ASF +T-ASF +A-ASF +R-NSF +V-IAI-3S +PREP +T-ASM +N-ASM +CONJ +V-API-3S +P-1DP +R-ASN +V-RAI-1P-ATT +CONJ +V-2RAI-1P-ATT +V-PAI-1P +CONJ +P-2DP +CONJ +CONJ +P-2NP +N-ASF +V-PAS-2P +PREP +P-1GP +CONJ +CONJ +T-NSF +N-NSF +T-NSF +S-1PNSF +PREP +T-GSM +N-GSM +CONJ +PREP +T-GSM +N-GSM +P-GSM +N-GSM +N-GSM +CONJ +D-APN +V-PAI-1P +P-1NP +CONJ +T-NSF +N-NSF +P-1GP +V-PAS-3S +V-RPP-NSF +CONJ +V-PAI-3S +D-NSF +T-NSF +N-NSF +R-ASF +V-2RAI-1P-ATT +PREP +P-GSM +CONJ +V-PAI-1P +P-2DP +CONJ +T-NSM +N-NSM +N-NSN +V-PAI-3S +CONJ +PREP +P-DSM +PRT-N +V-PAI-3S +N-NSF +A-NSF-N +COND +V-2AAS-1P +CONJ +N-ASF +V-PAI-1P +PREP +P-GSM +CONJ +PREP +T-DSN +N-DSN +V-PAS-1P +V-PNI-1P +CONJ +PRT-N +V-PAI-1P +T-ASF +N-ASF +CONJ +COND +PREP +T-DSN +N-DSN +V-PAS-1P +ADV +P-NSM +V-PAI-3S +PREP +T-DSN +N-DSN +N-ASF +V-PAI-1P +PREP +C-GPM +CONJ +T-NSN +N-NSN +N-GSM +T-GSM +N-GSM +P-GSM +V-PAI-3S +P-1AP +PREP +A-GSF +N-GSF +COND +V-2AAS-1P +CONJ +N-ASF +PRT-N +V-PAI-1P +F-1APM +V-PAI-1P +CONJ +T-NSF +N-NSF +PRT-N +V-PAI-3S +PREP +P-1DP +COND +V-PAS-1P +T-APF +N-APF +P-1GP +V-PAI-3S +A-NSM +CONJ +A-NSM +CONJ +V-2AAS-3S +P-1DP +T-APF +N-APF +CONJ +V-AAS-3S +P-1AP +PREP +A-GSF +N-GSF +COND +V-2AAS-1P +CONJ +PRT-N +V-RAI-1P +N-ASM +V-PAI-1P +P-ASM +CONJ +T-NSM +N-NSM +P-GSM +PRT-N +V-PAI-3S +PREP +P-1DP +N-VPN +P-1GS +D-APN +V-PAI-1S +P-2DP +CONJ +PRT-N +V-2AAS-2P +CONJ +COND +X-NSM +V-2AAS-3S +V-PAI-1P +PREP +T-ASM +N-ASM +N-ASM +N-ASM +N-ASM +A-ASM +CONJ +P-NSM +N-NSM +V-PAI-3S +PREP +T-GPF +N-GPF +P-1GP +CONJ +PRT-N +PREP +T-GPF +S-1PGPF +ADV +CONJ +CONJ +PREP +A-GSM +T-GSM +N-GSM +CONJ +PREP +D-DSN +V-PAI-1P +CONJ +V-RAI-1P +P-ASM +COND +T-APF +N-APF +P-GSM +V-PAS-1P +T-NSM +V-PAP-NSM +CONJ +V-RAI-1S +P-ASM +CONJ +T-APF +N-APF +P-GSM +PRT-N +V-PAP-NSM +N-NSM +V-PAI-3S +CONJ +PREP +D-DSM +T-NSF +N-NSF +PRT-N +V-PAI-3S +CONJ +PRT +R-NSM +V-PAS-3S +P-GSM +T-ASM +N-ASM +ADV +PREP +D-DSN +T-NSF +N-NSF +T-GSM +N-GSM +V-RPI-3S +PREP +D-DSN +V-PAI-1P +CONJ +PREP +P-DSM +V-PAI-1P +T-NSM +V-PAP-NSM +PREP +P-DSM +V-PAN +ADV +D-NSM +V-AAI-3S +V-PAI-3S +CONJ +P-NSM +ADV +V-PAN +A-VPM +V-PAI-1S +P-2DP +PRT-N +N-ASF +A-ASF +CONJ +N-ASF +A-ASF +R-ASF +V-IAI-2P +PREP +N-GSF +T-NSF +N-NSF +T-NSF +A-NSF +V-PAI-3S +T-NSM +N-NSM +R-ASM +V-AAI-2P +ADV +N-ASF +A-ASF +V-PAI-1S +P-2DP +R-NSN +V-PAI-3S +A-NSN +PREP +P-DSM +CONJ +PREP +P-2DP +CONJ +T-NSF +N-NSF +V-PMI-3S +CONJ +T-NSN +N-NSN +T-NSN +A-NSN +ADV +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +T-DSN +N-DSN +V-PAN +CONJ +T-ASM +N-ASM +P-GSM +V-PAP-NSM +PREP +T-DSF +N-DSF +V-PAI-3S +ADV +ADV +T-NSM +V-PAP-NSM +T-ASM +N-ASM +P-GSM +PREP +T-DSN +N-DSN +V-PAI-3S +CONJ +N-NSN +PREP +P-DSM +PRT-N +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +T-ASM +N-ASM +P-GSM +PREP +T-DSF +N-DSF +V-PAI-3S +CONJ +PREP +T-DSF +N-DSF +V-PAI-3S +CONJ +PRT-N +V-RAI-3S +ADV +V-PAI-3S +CONJ +T-NSF +N-NSF +V-AAI-3S +T-APM +N-APM +P-GSM +N-VPN +V-PAI-1S +P-2DP +CONJ +V-RPI-3P +P-2DP +T-NPF +N-NPF +PREP +T-ASN +N-ASN +P-GSM +N-VPM +V-PAI-1S +P-2DP +CONJ +V-RAI-2P +T-ASM +PREP +N-GSF +N-VPM +V-PAI-1S +P-2DP +CONJ +V-RAI-2P +T-ASM +A-ASM +N-VPN +V-AAI-1S +P-2DP +CONJ +V-RAI-2P +T-ASM +N-ASM +N-VPM +V-AAI-1S +P-2DP +CONJ +V-RAI-2P +T-ASM +PREP +N-GSF +N-VPM +V-AAI-1S +P-2DP +CONJ +A-NPM +V-PAI-2P +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +PREP +P-2DP +V-PAI-3S +CONJ +V-RAI-2P +T-ASM +A-ASM +PRT-N +V-PAM-2P +T-ASM +N-ASM +CONJ-N +T-APN +PREP +T-DSM +N-DSM +COND +X-NSM +V-PAS-3S +T-ASM +N-ASM +PRT-N +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +P-DSM +CONJ +PRT-N +A-NSN +T-NSN +PREP +T-DSM +N-DSM +T-NSF +N-NSF +T-GSF +N-GSF +CONJ +T-NSF +N-NSF +T-GPM +N-GPM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-PAI-3S +PREP +T-GSM +N-GSM +CONJ +PREP +T-GSM +N-GSM +V-PAI-3S +CONJ +V-PMI-3S +T-NSM +N-NSM +CONJ +T-NSF +N-NSF +P-GSM +CONJ +T-NSM +V-PAP-NSM +T-ASN +N-ASN +T-GSM +N-GSM +V-PAI-3S +PREP +T-ASM +N-ASM +N-VPN +A-NSF-S +N-NSF +V-PAI-3S +CONJ +ADV +V-AAI-2P +CONJ +N-NSM +V-PNI-3S +CONJ +ADV +N-NPM +A-NPM +V-2RAI-3P +ADV +V-PAI-1P +CONJ +A-NSF-S +N-NSF +V-PAI-3S +PREP +P-1GP +V-2AAI-3P +CONJ +PRT-N +V-IAI-3P +PREP +P-1GP +CONJ +COND +PREP +P-1GP +V-IAI-3P +PRT +V-LAI-3P +PREP +P-1GP +CONJ +CONJ +V-APS-3P +CONJ +PRT-N +V-PAI-3P +A-NPM +PREP +P-1GP +CONJ +P-2NP +N-ASN +V-PAI-2P +PREP +T-GSM +A-GSM +CONJ +V-RAI-2P +A-NPM +V-AAI-1S +P-2DP +PRT-N +CONJ +PRT-N +V-RAI-2P +T-ASF +N-ASF +CONJ +CONJ +V-RAI-2P +P-ASF +CONJ +CONJ +A-NSN +N-NSN +PREP +T-GSF +N-GSF +PRT-N +V-PAI-3S +I-NSM +V-PAI-3S +T-NSM +N-NSM +COND +PRT-N +T-NSM +V-PNP-NSM +CONJ +N-NSM +PRT-N +V-PAI-3S +T-NSM +N-NSM +D-NSM +V-PAI-3S +T-NSM +N-NSM +T-NSM +V-PNP-NSM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +A-NSM +T-NSM +V-PNP-NSM +T-ASM +N-ASM +CONJ-N +T-ASM +N-ASM +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +V-PAI-3S +P-2NP +R-ASN +V-AAI-2P +PREP +N-GSF +PREP +P-2DP +V-PAM-3S +COND +PREP +P-2DP +V-AAS-3S +R-ASN +PREP +N-GSF +V-AAI-2P +CONJ +P-2NP +PREP +T-DSM +N-DSM +CONJ +PREP +T-DSM +N-DSM +V-FAI-2P +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +R-ASF +P-NSM +V-ADI-3S +P-1DP +T-ASF +N-ASF +T-ASF +A-ASF +D-APN +V-AAI-1S +P-2DP +PREP +T-GPM +V-PAP-GPM +P-2AP +CONJ +P-2NP +T-NSN +N-NSN +R-ASN +V-2AAI-2P +PREP +P-GSM +V-PAI-3S +PREP +P-2DP +CONJ +PRT-N +N-ASF +V-PAI-2P +CONJ +X-NSM +V-PAS-3S +P-2AP +CONJ +ADV +T-NSN +P-GSM +N-NSN +V-PAI-3S +P-2AP +PREP +A-GPN +CONJ +A-NSN +V-PAI-3S +CONJ +PRT-N +V-PAI-3S +N-NSN +CONJ +ADV +V-AAI-3S +P-2AP +V-PAI-2P +PREP +P-DSM +CONJ +N-VPN +ADV +V-PAM-2P +PREP +P-DSM +CONJ +COND +V-APS-3S +V-2AAS-1P +N-ASF +CONJ +PRT-N +V-APS-1P +PREP +P-GSM +PREP +T-DSF +N-DSF +P-GSM +COND +V-RAS-2P +CONJ +A-NSM +V-PAI-3S +V-PAI-2P +CONJ +CONJ +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +PREP +P-GSM +V-RPI-3S +V-2AAM-2P +A-ASF +N-ASF +V-RAI-3S +P-1DP +T-NSM +N-NSM +CONJ +N-APN +N-GSM +V-APS-1P +CONJ +V-PAI-1P +PREP +D-ASN +T-NSM +N-NSM +PRT-N +V-PAI-3S +P-1AP +CONJ +PRT-N +V-2AAI-3S +P-ASM +A-VPM +ADV +N-NPN +N-GSM +V-PAI-1P +CONJ +ADV-N +V-API-3S +I-NSN +V-FDI-1P +V-RAI-1P +CONJ +COND +V-APS-3S +A-NPM +P-DSM +V-FDI-1P +CONJ +V-FDI-1P +P-ASM +ADV +V-PAI-3S +CONJ +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +D-ASF +PREP +P-DSM +V-PAI-3S +F-3ASM +ADV +D-NSM +A-NSM +V-PAI-3S +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +V-PAI-3S +CONJ +T-NSF +N-NSF +V-PAI-3S +T-NSF +N-NSF +CONJ +V-RAI-2P +CONJ +D-NSM +V-API-3S +CONJ +T-APF +N-APF +V-AAS-3S +CONJ +N-NSF +PREP +P-DSM +PRT-N +V-PAI-3S +A-NSM +T-NSM +PREP +P-DSM +V-PAP-NSM +PRT-N +V-PAI-3S +A-NSM +T-NSM +V-PAP-NSM +PRT-N +V-RAI-3S-ATT +P-ASM +CONJ-N +V-RAI-3S +P-ASM +N-VPN +A-NSM-N +V-PAM-3S +P-2AP +T-NSM +V-PAP-NSM +T-ASF +N-ASF +A-NSM +V-PAI-3S +ADV +D-NSM +A-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASF +N-ASF +PREP +T-GSM +A-GSM +V-PAI-3S +CONJ +PREP +N-GSF +T-NSM +A-NSM +V-PAI-3S +PREP +D-ASN +V-API-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-AAS-3S +T-APN +N-APN +T-GSM +A-GSM +A-NSM +T-NSM +V-RPP-NSM +PREP +T-GSM +N-GSM +N-ASF +PRT-N +V-PAI-3S +CONJ +N-NSN +P-GSM +PREP +P-DSM +V-PAI-3S +CONJ +PRT-N +V-PNI-3S +V-PAN +CONJ +PREP +T-GSM +N-GSM +V-RPI-3S +PREP +D-DSN +A-NPN +V-PAI-3S +T-NPN +N-NPN +T-GSM +N-GSM +CONJ +T-NPN +N-NPN +T-GSM +A-GSM +A-NSM +T-NSM +PRT-N +V-PAP-NSM +N-ASF +PRT-N +V-PAI-3S +PREP +T-GSM +N-GSM +CONJ +T-NSM +PRT-N +V-PAP-NSM +T-ASM +N-ASM +P-GSM +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +R-ASF +V-AAI-2P +PREP +N-GSF +CONJ +V-PAS-1P +C-APM +PRT-N +ADV +N-PRI +PREP +T-GSM +A-GSM +V-IAI-3S +CONJ +V-AAI-3S +T-ASM +N-ASM +P-GSM +CONJ +PREP +I-GSN +V-AAI-3S +P-ASM +CONJ +T-NPN +N-NPN +P-GSM +A-NPN +V-IAI-3S +CONJ +T-NPN +T-GSM +N-GSM +P-GSM +A-NPN +N-VPM +PRT-N +V-PAM-2P +COND +V-PAI-3S +P-2AP +T-NSM +N-NSM +P-1NP +V-RAI-1P +CONJ +V-RAI-1P +PREP +T-GSM +N-GSM +PREP +T-ASF +N-ASF +CONJ +V-PAI-1P +T-APM +N-APM +T-NSM +PRT-N +V-PAP-NSM +V-PAI-3S +PREP +T-DSM +N-DSM +A-NSM +T-NSM +V-PAP-NSM +T-ASM +N-ASM +P-GSM +A-NSM +V-PAI-3S +CONJ +V-RAI-2P +CONJ +A-NSM +A-NSM +PRT-N +V-PAI-3S +N-ASF +A-ASF +PREP +P-DSM +V-PAP-ASF +PREP +D-DSN +V-RAI-1P +T-ASF +N-ASF +CONJ +D-NSM +PREP +P-1GP +T-ASF +N-ASF +P-GSM +V-AAI-3S +CONJ +P-1NP +V-PAI-1P +PREP +T-GPM +N-GPM +T-APF +N-APF +V-2AAN +CONJ +PRT +R-NSM +V-PAS-3S +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +V-PAS-3S +T-ASM +N-ASM +P-GSM +N-ASF +V-PAP-ASM +CONJ +V-AAS-3S +T-APN +N-APN +P-GSM +PREP +P-GSM +ADV-I +T-NSF +N-NSF +T-GSM +N-GSM +V-PAI-3S +PREP +P-DSM +N-VPN +V-PAS-1P +PRT-N +N-DSM +CONJ-N +T-DSF +N-DSF +CONJ +PREP +N-DSN +CONJ +N-DSF +PREP +D-DSN +V-FDI-1P +CONJ +PREP +T-GSF +N-GSF +V-PAI-1P +CONJ +PREP +P-GSM +V-FAI-1P +T-ASF +N-ASF +P-1GP +CONJ +COND +V-PAS-3S +P-1GP +T-NSF +N-NSF +CONJ +A-NSM-C +V-PAI-3S +T-NSM +N-NSM +T-GSF +N-GSF +P-1GP +CONJ +V-PAI-3S +A-APN +A-VPM +COND +T-NSF +N-NSF +PRT-N +V-PAS-3S +N-ASF +V-PAI-1P +PREP +T-ASM +N-ASM +CONJ +COND +R-ASN +V-PAS-1P +V-PAI-1P +PREP +P-GSM +CONJ +T-APF +N-APF +P-GSM +V-PAI-1P +CONJ +T-APN +A-APN +PREP +P-GSM +V-PAI-1P +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +P-GSM +CONJ +V-AAS-1P +T-DSN +N-DSN +T-GSM +N-GSM +P-GSM +N-GSM +N-GSM +CONJ +V-PAS-1P +C-APM +ADV +V-AAI-3S +N-ASF +P-1DP +CONJ +T-NSM +V-PAP-NSM +T-APF +N-APF +P-GSM +PREP +P-DSM +V-PAI-3S +CONJ +P-NSM +PREP +P-DSM +CONJ +PREP +D-DSN +V-PAI-1P +CONJ +V-PAI-3S +PREP +P-1DP +PREP +T-GSN +N-GSN +R-GSN +P-1DP +V-AAI-3S +A-VPM +PRT-N +A-DSN +N-DSN +V-PAM-2P +CONJ +V-PAM-2P +T-APN +N-APN +COND +PREP +T-GSM +N-GSM +V-PAI-3S +CONJ +A-NPM +N-NPM +V-2RAI-3P +PREP +T-ASM +N-ASM +PREP +D-DSN +V-PAI-2P +T-ASN +N-ASN +T-GSM +N-GSM +A-NSN +N-NSN +R-NSN +V-PAI-3S +N-ASM +N-ASM +PREP +N-DSF +V-2RAP-ASM +PREP +T-GSM +N-GSM +V-PAI-3S +CONJ +A-NSN +N-NSN +R-NSN +PRT-N +V-PAI-3S +T-ASM +N-ASM +PREP +T-GSM +N-GSM +PRT-N +V-PAI-3S +CONJ +D-NSN +V-PAI-3S +T-NSN +T-GSM +N-GSM +R-NSN +V-2RAI-2P-ATT +CONJ +V-PNI-3S +CONJ +ADV +PREP +T-DSM +N-DSM +V-PAI-3S +ADV +N-VPN +P-2NP +PREP +T-GSM +N-GSM +V-PAI-2P +CONJ +V-RAI-2P +P-APM +CONJ +A-NSM-C +V-PAI-3S +T-NSM +PREP +P-2DP +PRT +T-NSM +PREP +T-DSM +N-DSM +P-NPM +PREP +T-GSM +N-GSM +V-PAI-3P +PREP +D-ASN +PREP +T-GSM +N-GSM +V-PAI-3P +CONJ +T-NSM +N-NSM +P-GPM +V-PAI-3S +P-1NP +PREP +T-GSM +N-GSM +V-PAI-1P +T-NSM +V-PAP-NSM +T-ASM +N-ASM +V-PAI-3S +P-1GP +R-NSM +PRT-N +V-PAI-3S +PREP +T-GSM +N-GSM +PRT-N +V-PAI-3S +P-1GP +PREP +D-GSN +V-PAI-1P +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +T-ASN +N-ASN +T-GSF +N-GSF +A-VPM +V-PAS-1P +C-APM +CONJ +T-NSF +N-NSF +PREP +T-GSM +N-GSM +V-PAI-3S +CONJ +A-NSM +T-NSM +V-PAP-NSM +PREP +T-GSM +N-GSM +V-RPI-3S +CONJ +V-PAI-3S +T-ASM +N-ASM +T-NSM +PRT-N +V-PAP-NSM +PRT-N +V-2AAI-3S +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +N-NSF +V-PAI-3S +PREP +D-DSN +V-API-3S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +P-1DP +CONJ +T-ASM +N-ASM +P-GSM +T-ASM +A-ASM +V-RAI-3S +T-NSM +N-NSM +PREP +T-ASM +N-ASM +CONJ +V-AAS-1P +PREP +P-GSM +PREP +D-DSN +V-PAI-3S +T-NSF +N-NSF +PRT-N +CONJ +P-1NP +V-RAI-1P +T-ASM +N-ASM +CONJ +CONJ +P-NSM +V-AAI-3S +P-1AP +CONJ +V-AAI-3S +T-ASM +N-ASM +P-GSM +N-ASM +PREP +T-GPF +N-GPF +P-1GP +A-VPM +COND +ADV +T-NSM +N-NSM +V-AAI-3S +P-1AP +CONJ +P-1NP +V-PAI-1P +C-APM +V-PAN +N-ASM +A-NSM-N +ADV +V-RNI-3S +COND +V-PAS-1P +C-APM +T-NSM +N-NSM +PREP +P-1DP +V-PAI-3S +CONJ +T-NSF +N-NSF +P-GSM +PREP +P-1DP +V-RPP-NSF +V-PAI-3S +PREP +D-DSN +V-PAI-1P +CONJ +PREP +P-DSM +V-PAI-1P +CONJ +P-NSM +PREP +P-1DP +CONJ +PREP +T-GSN +N-GSN +P-GSM +V-RAI-3S +P-1DP +CONJ +P-1NP +V-RNI-1P +CONJ +V-PAI-1P +CONJ +T-NSM +N-NSM +V-RAI-3S +T-ASM +N-ASM +N-ASM +T-GSM +N-GSM +COND +R-NSM +V-AAS-3S +CONJ +N-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-NSM +N-NSM +PREP +P-DSM +V-PAI-3S +CONJ +P-NSM +PREP +T-DSM +N-DSM +CONJ +P-1NP +V-RAI-1P +CONJ +V-RAI-1P +T-ASF +N-ASF +R-ASF +V-PAI-3S +T-NSM +N-NSM +PREP +P-1DP +T-NSM +N-NSM +N-NSF +V-PAI-3S +CONJ +T-NSM +V-PAP-NSM +PREP +T-DSF +N-DSF +PREP +T-DSM +N-DSM +V-PAI-3S +CONJ +T-NSM +N-NSM +PREP +P-DSM +V-PAI-3S +PREP +D-DSN +V-RPI-3S +T-NSF +N-NSF +PREP +P-1GP +CONJ +N-ASF +V-PAS-1P +PREP +T-DSF +N-DSF +T-GSF +N-GSF +CONJ +ADV +D-NSM +V-PAI-3S +CONJ +P-1NP +V-PAI-1P +PREP +T-DSM +N-DSM +D-DSM +N-NSM +PRT-N +V-PAI-3S +PREP +T-DSF +N-DSF +CONJ +T-NSF +A-NSF +N-NSF +ADV +V-PAI-3S +T-ASM +N-ASM +CONJ +T-NSM +N-NSM +N-ASF +V-PAI-3S +CONJ +T-NSM +V-PNP-NSM +PRT-N +V-RPI-3S +PREP +T-DSF +N-DSF +P-1NP +V-PAI-1P +CONJ +P-NSM +A-NSM-S +V-AAI-3S +P-1AP +COND +X-NSM +V-2AAS-3S +CONJ +V-PAI-1S +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +P-GSM +V-PAS-3S +N-NSM +V-PAI-3S +CONJ +T-NSM +PRT-N +V-PAP-NSM +T-ASM +N-ASM +P-GSM +R-ASM +V-RAI-3S-ATT +PRT-N +V-PNI-3S +T-ASM +N-ASM +R-ASM +PRT-N +V-RAI-3S-ATT +V-PAN +CONJ +D-ASF +T-ASF +N-ASF +V-PAI-1P +PREP +P-GSM +CONJ +T-NSM +V-PAP-NSM +T-ASM +N-ASM +V-PAS-3S +CONJ +T-ASM +N-ASM +P-GSM +A-NSM +T-NSM +V-PAP-NSM +CONJ +N-NSM +V-PAI-3S +T-NSM +N-NSM +PREP +T-GSM +N-GSM +V-RPI-3S +CONJ +A-NSM +T-NSM +V-PAP-NSM +T-ASM +V-AAP-ASM +V-PAI-3S +T-ASM +V-RPP-ASM +PREP +P-GSM +PREP +D-DSN +V-PAI-1P +CONJ +V-PAI-1P +T-APN +N-APN +T-GSM +N-GSM +CONJ +T-ASM +N-ASM +V-PAS-1P +CONJ +T-APF +N-APF +P-GSM +V-PAS-1P +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +T-APF +N-APF +P-GSM +V-PAS-1P +CONJ +T-NPF +N-NPF +P-GSM +A-NPF +PRT-N +V-PAI-3P +CONJ +A-NSN +T-NSN +V-RPP-NSN +PREP +T-GSM +N-GSM +V-PAI-3S +T-ASM +N-ASM +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +T-NSF +V-AAP-NSF +T-ASM +N-ASM +T-NSF +N-NSF +P-1GP +I-NSM +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASM +N-ASM +COND +PRT-N +T-NSM +V-PAP-NSM +CONJ +N-NSM +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +D-NSM +V-PAI-3S +T-NSM +V-2AAP-NSM +PREP +N-GSN +CONJ +N-GSN +N-NSM +N-NSM +PRT-N +PREP +T-DSN +N-DSN +ADV +CONJ +PREP +T-DSN +N-DSN +CONJ +PREP +T-DSN +N-DSN +CONJ +T-NSN +N-NSN +V-PAI-3S +T-NSN +V-PAP-NSN +CONJ +T-NSN +N-NSN +V-PAI-3S +T-NSF +N-NSF +CONJ +A-NPM +V-PAI-3P +T-NPM +V-PAP-NPM +T-NSN +N-NSN +CONJ +T-NSN +N-NSN +CONJ +T-NSN +N-NSN +CONJ +T-NPM +A-NPM +PREP +T-ASN +A-ASN +V-PAI-3P +COND +T-ASF +N-ASF +T-GPM +N-GPM +V-PAI-1P +T-NSF +N-NSF +T-GSM +N-GSM +A-NSF-C +V-PAI-3S +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +T-GSM +N-GSM +CONJ +V-RAI-3S +PREP +T-GSM +N-GSM +P-GSM +T-NSM +V-PAP-NSM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +V-PAI-3S +T-ASF +N-ASF +PREP +F-3DSM +T-NSM +PRT-N +V-PAP-NSM +T-DSM +N-DSM +N-ASM +V-RAI-3S +P-ASM +CONJ +PRT-N +V-RAI-3S +PREP +T-ASF +N-ASF +R-ASF +V-RAI-3S +T-NSM +N-NSM +PREP +T-GSM +N-GSM +P-GSM +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +CONJ +N-ASF +A-ASF +V-AAI-3S +T-NSM +N-NSM +P-1DP +CONJ +D-NSF +T-NSF +N-NSF +PREP +T-DSM +N-DSM +P-GSM +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASM +N-ASM +V-PAI-3S +T-ASF +N-ASF +T-NSM +PRT-N +V-PAP-NSM +T-ASM +N-ASM +T-GSM +N-GSM +T-ASF +N-ASF +PRT-N +V-PAI-3S +D-APN +V-AAI-1S +P-2DP +T-DPM +V-PAP-DPM +PREP +T-ASN +N-ASN +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +V-RAS-2P +CONJ +N-ASF +A-ASF +V-PAI-2P +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +R-ASF +V-PAI-1P +PREP +P-ASM +CONJ +COND +X-ASN +V-PMS-1P +PREP +T-ASN +N-ASN +P-GSM +V-PAI-3S +P-1GP +CONJ +COND +V-RAI-1P +CONJ +V-PAI-3S +P-1GP +COND +R-ASN +V-PMS-1P +V-RAI-1P +CONJ +V-PAI-1P +T-APN +N-APN +R-APN +V-RAI-1P +PREP +P-GSM +COND +X-NSM +V-2AAS-3S +T-ASM +N-ASM +P-GSM +V-PAP-ASM +N-ASF +PRT-N +PREP +N-ASM +V-FAI-3S +CONJ +V-FAI-3S +N-ASF +P-DSM +T-DPM +V-PAP-DPM +PRT-N +PREP +N-ASM +V-PAI-3S +N-NSF +PREP +N-ASM +PRT-N +PREP +D-GSF +V-PAI-1S +CONJ +V-AAS-3S +A-NSF +N-NSF +N-NSF +V-PAI-3S +CONJ +V-PAI-3S +N-NSF +PRT-N +PREP +N-ASM +V-RAI-1P +CONJ +A-NSM +T-NSM +V-RPP-NSM +PREP +T-GSM +N-GSM +PRT-N +V-PAI-3S +CONJ +T-NSM +V-APP-NSM +PREP +T-GSM +N-GSM +V-PAI-3S +P-ASM +CONJ +T-NSM +A-NSM +PRT-N +V-PMI-3S +P-GSM +V-RAI-1P +CONJ +PREP +T-GSM +N-GSM +V-PAI-1P +CONJ +T-NSM +N-NSM +A-NSM +PREP +T-DSM +A-DSM +V-PNI-3S +CONJ +V-RAI-1P +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +V-PAI-3S +CONJ +V-RAI-3S +P-1DP +N-ASF +CONJ +V-PAI-1P +T-ASM +A-ASM +CONJ +V-PAI-1P +PREP +T-DSM +A-DSM +PREP +T-DSM +N-DSM +P-GSM +N-DSM +N-DSM +D-NSM +V-PAI-3S +T-NSM +A-NSM +N-NSM +CONJ +N-NSF +A-NSF +N-VPN +V-AAM-2P +F-2APN +PREP +T-GPN +N-GPN +T-NSM +A-NSM-C +A-DSF +N-DSF +CONJ +T-DPN +N-DPN +P-GSF +R-APM +V-PAI-1S +PREP +N-DSF +P-1NS +CONJ +PRT-N +P-1NS +A-NSM +CONJ +CONJ +A-NPM +T-NPM +V-RAP-NPM +T-ASF +N-ASF +PREP +T-ASF +N-ASF +T-ASF +V-PAP-ASF +PREP +P-1DP +CONJ +PREP +P-1GP +V-FDI-3S +PREP +T-ASM +N-ASM +V-FDI-3S +PREP +P-1GP +N-NSF +N-NSN +N-NSF +PREP +N-GSM +N-GSM +CONJ +PREP +N-GSM +N-GSM +T-GSM +N-GSM +T-GSM +N-GSM +PREP +N-DSF +CONJ +N-DSF +V-2AOI-1S +ADV +CONJ +V-RAI-1S +PREP +T-GPN +N-GPN +P-2GS +V-PAP-APM +PREP +N-DSF +ADV +N-ASF +V-2AAI-1P +PREP +T-GSM +N-GSM +CONJ +N-VSF +ADV +V-PAI-1S +P-2AS +V-PAP-NSM +P-2DS +PRT-N +ADV +N-ASF +A-ASF +CONJ +R-ASF +V-IAI-1P +PREP +N-GSF +CONJ +V-PAS-1P +C-APM +CONJ +D-NSF +V-PAI-3S +T-NSF +N-NSF +CONJ +V-PAS-1P +PREP +T-APF +N-APF +P-GSM +D-NSF +T-NSF +N-NSF +V-PAI-3S +ADV +V-AAI-2P +PREP +N-GSF +CONJ +PREP +P-DSF +V-PAS-2P +CONJ +V-2AAI-3P +PREP +T-ASM +N-ASM +A-NPM +A-NPM +T-NPM +PRT-N +V-PAP-NPM +N-ASM +N-ASM +V-PNP-ASM +PREP +N-DSF +D-NSM +V-PAI-3S +T-NSM +A-NSM +CONJ +T-NSM +N-NSM +V-PAM-2P +F-2APM +CONJ +PRT-N +V-AAS-2P +R-APN +V-ADI-1P +CONJ +N-ASM +A-ASM +V-2AAS-2P +A-NSM +T-NSM +V-PAP-NSM +CONJ +PRT-N +V-PAP-NSM +PREP +T-DSF +N-DSF +T-GSM +N-GSM +N-ASM +PRT-N +V-PAI-3S +T-NSM +V-PAP-NSM +PREP +T-DSF +N-DSF +D-NSM +CONJ +T-ASM +N-ASM +CONJ +T-ASM +N-ASM +V-PAI-3S +COND +X-NSM +V-PNI-3S +PREP +P-2AP +CONJ +D-ASF +T-ASF +N-ASF +PRT-N +V-PAI-3S +PRT-N +V-PAM-2P +P-ASM +PREP +N-ASF +CONJ +V-PAN +P-DSM +PRT-N +V-PAM-2P +CONJ +T-NSM +V-PAP-NSM +P-DSM +V-PAN +V-PAI-3S +T-DPN +N-DPN +P-GSM +T-DPN +A-DPN +V-PAP-NSM +A-APN +P-2DP +V-PAN +PRT-N +V-AOI-1S +PREP +N-GSM +CONJ +A-GSN +CONJ +V-PAI-1S +V-2ADN +PREP +P-2AP +CONJ +N-ASN +PREP +N-ASN +V-AAN +CONJ +T-NSF +N-NSF +P-1GP +V-RPP-NSF +V-PAS-3S +V-PNI-3S +P-2AS +T-NPN +N-NPN +T-GSF +N-GSF +P-2GS +T-GSF +A-GSF +T-NSM +A-NSM-C +N-DSM +T-DSM +A-DSM +R-ASM +P-1NS +V-PAI-1S +PREP +N-DSF +A-VSM +PREP +A-GPN +V-PNI-1S +P-2AS +V-PPN +CONJ +V-PAN +ADV +V-PPI-3S +P-2GS +T-NSF +N-NSF +CONJ +V-2AOI-1S +ADV +V-PNP-GPM +N-GPM +CONJ +V-PAP-GPM +P-2GS +T-DSF +N-DSF +ADV +P-2NS +PREP +N-DSF +V-PAI-2S +A-ASF-C +N-ASF +D-GPN +PRT-N +V-PAI-1S +CONJ +V-PAS-1S +T-APN +S-1SAPN +N-APN +PREP +T-DSF +N-DSF +V-PAP-APN +A-VSM +A-ASN +V-PAI-2S +COND +R-ASN +V-ADS-2S +PREP +T-APM +N-APM +CONJ +D-ASN +A-APM +R-NPM +V-AAI-3P +P-2GS +T-DSF +N-DSF +PREP +N-GSF +R-APM +ADV +V-FAI-2S +V-AAP-NSM +ADV +T-GSM +N-GSM +CONJ +PREP +T-GSN +N-GSN +V-2AAI-3P +A-ASN-N +V-PAP-NPM +PREP +T-GPM +A-GPM +CONJ +P-1NP +V-PAI-1P +V-PAN +T-APM +D-APM +CONJ +A-NPM +V-PNS-1P +T-DSF +N-DSF +V-AAI-1S +X-ASN +T-DSF +N-DSF +CONJ +T-NSM +V-PAP-NSM +P-GPF +N-NSM +PRT-N +V-PNI-3S +P-1AP +PREP +D-ASN +COND +V-2AAS-1S +V-FAI-1S +P-GSM +T-APN +N-APN +R-APN +V-PAI-3S +N-DPM +A-DPM +V-PAP-NSM +P-1AP +CONJ +PRT-N +V-PPP-NSM +PREP +D-DPM +CONJ-N +P-NSM +V-PNI-3S +T-APM +N-APM +CONJ +T-APM +V-PNP-APM +V-PAI-3S +CONJ +PREP +T-GSF +N-GSF +V-PAI-3S +A-VSM +PRT-N +V-PNM-2S +T-ASN +A-ASN +CONJ +T-ASN +A-ASN +T-NSM +V-PAP-NSM +PREP +T-GSM +N-GSM +V-PAI-3S +T-NSM +V-PAP-NSM +PRT-N +V-RAI-3S-ATT +T-ASM +N-ASM +N-DSM +V-RPI-3S +PREP +A-GPM +CONJ +PREP +P-GSF +T-GSF +N-GSF +CONJ +CONJ +P-1NP +V-PAI-1P +CONJ +V-RAI-2S +CONJ +T-NSF +N-NSF +P-1GP +A-NSF +V-PAI-3S +V-IAI-1S +A-APN +V-AAN +P-2DS +CONJ +PRT-N +V-PAI-1S +PREP +A-GSN +CONJ +N-GSM +P-2DS +V-PAN +CONJ +V-PAI-1S +ADV +P-2AS +V-2AAN +CONJ +N-ASN +PREP +N-ASN +V-FAI-1P +N-NSF +P-2DS +V-PNI-3P +P-2AS +T-NPM +A-NPM +V-PNM-2S +T-APM +A-APM +PREP +N-ASN +N-NSM +N-GSM +N-GSM +N-NSM +CONJ +N-NSM +N-GSM +T-DPM +PREP +N-DSM +N-DSM +V-RPP-DPM +CONJ +N-DSM +N-DSM +V-RPP-DPM +A-DPM +P-2DP +N-NSN +CONJ +N-NSF +CONJ +N-NSF +V-APO-3S +A-VPM +A-ASF +N-ASF +V-PMP-NSM +V-PAN +P-2DP +PREP +T-GSF +A-GSF +P-1GP +N-GSF +N-ASF +V-2AAI-1S +V-AAN +P-2DP +V-PAP-NSM +V-PNN +T-DSF +ADV +V-APP-DSF +T-DPM +A-DPM +N-DSF +CONJ +V-2API-3P +X-NPM +N-NPM +T-NPM +ADV +V-RPP-NPM +PREP +D-ASN +T-ASN +N-ASN +A-NPM +T-ASF +T-GSM +N-GSM +P-1GP +N-ASF +V-PAP-NPM +PREP +N-ASF +CONJ +T-ASM +A-ASM +N-ASM +CONJ +N-ASM +P-1GP +N-ASM +N-ASM +V-PNP-NPM +CONJ +V-PNI-1S +V-RAP-APM +ADV +A-APN +V-AAN +P-2AP +CONJ +N-NSM +N-ASM +PREP +N-GSF +N-GSF +V-AAP-NSM +T-ASN +A-ASN +T-APM +PRT-N +V-AAP-APM +V-AAI-3S +PRT +N-APM +T-APM +PRT-N +V-AAP-APM +T-ASF +F-3GPM +N-ASF +CONJ +V-2AAP-APM +T-ASN +A-ASN +N-ASN +PREP +N-ASF +A-GSF +N-GSF +N-DPM +A-DPM +PREP +N-ASM +V-RAI-3S +ADV +N-NSF +CONJ +N-NSF +CONJ +T-NPF +PREP +P-APF +N-NPF +T-ASM +A-ASM +N-ASM +D-DPM +V-AAP-NPF +CONJ +V-2AAP-NPF +ADV +N-GSF +A-GSF +V-PNI-3P +N-ASN +N-GSN +A-GSN +N-ASF +V-PAP-NPF +CONJ +ADV +CONJ +D-NPM +V-PNP-NPM +PRT +N-ASF +V-PAI-3P +CONJ +N-ASF +V-PAI-3P +CONJ +N-APF +V-PAI-3P +CONJ +ADV +T-DSM +A-DSM +V-PMP-NSM +V-INI-3S +PREP +T-GSM +N-GSM +N-GSN +PRT-N +T-NSM +N-PRI +T-NSM +N-NSM +V-AAI-3S +N-ASF +N-GSF +V-2AAN +CONJ +V-2AAI-3S +V-AAO-3S +P-2DS +N-NSM +CONJ +PRT +D-NPM +K-APN +PRT-N +V-RAI-3P +V-PAI-3P +CONJ +K-APN +ADV +ADV +T-NPN +A-NPN +N-NPN +V-PNI-3P +PREP +D-DPN +V-PPI-3P +INJ +P-DPM +CONJ +T-DSF +N-DSF +T-GSM +N-PRI +V-AOI-3P +CONJ +T-DSF +N-DSF +T-GSM +N-PRI +N-GSM +V-API-3P +CONJ +T-DSF +N-DSF +T-GSM +N-PRI +V-2AMI-3P +D-NPM +V-PAI-3P +T-NPM +PREP +T-DPF +N-DPF +P-2GP +N-NPF +V-PNP-NPM +ADV +F-3APM +V-PAP-NPM +N-NPF +A-NPF +PREP +N-GPM +V-PPP-NPF +N-NPN +A-NPN +A-NPN +ADV +V-2AAP-NPN +V-APP-NPN +N-NPN +A-NPN +N-GSF +V-PAP-NPN +T-APF +F-3GPN +N-APF +N-NPM +N-NPM +R-DPM +T-NSM +N-NSM +T-GSN +N-GSN +PREP +N-ASM +V-RPI-3S +CONJ +V-AAI-3S +CONJ +D-DPM +A-NSM +PREP +N-PRI +N-PRI +V-PAP-NSM +V-2AMM-2S +V-2AAI-3S +N-NSM +PREP +A-DPF +N-DPF +P-GSM +V-AAN +N-ASF +PREP +A-GPM +CONJ +V-AAN +A-APM +T-APM +A-APM +PREP +A-GPN +T-GPN +N-GPN +N-GSF +P-GPM +R-GPN +V-AAI-3P +CONJ +PREP +A-GPN +T-GPN +A-GPN +R-GPN +V-AAI-3P +PREP +P-GSM +A-NPM +A-NPM +D-NPM +V-PAI-3P +N-NPM +A-NPM +PREP +T-APF +N-APF +P-GPM +V-PNP-NPM +CONJ +T-NSN +N-NSN +P-GPM +V-PAI-3S +A-APN +V-PAP-NPM +N-APN +N-GSF +PREP +CONJ +A-VPM +P-2NP +V-APM-2P +T-GPN +N-GPN +T-GPN +V-RPP-GPN +PREP +T-GPM +N-GPM +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +CONJ +V-IAI-3P +P-2DP +PREP +A-GSM-S +T-GSM +N-GSM +V-FDI-3P +N-NPM +V-PNP-NPM +PREP +T-APF +F-3GPM +N-APF +T-GPF +N-GPF +D-NPM +V-PAI-3P +T-NPM +V-PAP-NPM +A-NPM +N-ASN +PRT-N +V-PAP-NPM +CONJ +A-VPM +P-2NP +V-PAP-NPM +F-2APM +T-DSF +A-DSF-S +P-2GP +N-DSF +PREP +N-DSN +A-DSN +V-PNP-NPM +F-2APM +PREP +N-DSF +N-GSM +V-AAM-2P +V-PNP-NPM +T-ASN +N-ASN +T-GSM +N-GSM +P-1GP +N-GSM +N-GSM +PREP +N-ASF +A-ASF +CONJ +PRT +R-APM +V-PMP-APM +V-PAM-2P +V-PAM-2P +PREP +N-GSN +V-PAP-NPM +CONJ +R-APM +V-PAM-2P +PREP +N-DSM +V-PAP-NPM +CONJ +T-ASM +PREP +T-GSF +N-GSF +V-RPP-ASM +N-ASM +CONJ +T-DSM +V-PNP-DSM +V-AAN +P-2AP +A-APM +CONJ +V-AAN +PREP +T-GSF +N-GSF +P-GSM +A-APM +PREP +N-DSF +A-DSM +N-DSM +N-DSM +P-1GP +PREP +N-GSM +N-GSM +T-GSM +N-GSM +P-1GP +N-NSF +N-NSF +N-NSN +CONJ +N-NSF +PREP +A-GSM +T-GSM +N-GSM +CONJ +ADV +CONJ +PREP +A-APM +T-APM +N-APM +HEB +N-NSF +N-GSM +N-GSM +R-ASF +V-AAI-3S +P-DSM +T-NSM +N-NSM +V-AAN +T-DPM +N-DPM +P-GSM +R-APN +V-2ADN +PREP +N-DSN +V-PAI-3S +CONJ +V-AAI-3S +V-AAP-NSM +PREP +T-GSM +N-GSM +P-GSM +T-DSM +N-DSM +P-GSM +N-DSM +R-NSM +V-AAI-3S +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-ASF +N-ASF +N-GSM +N-GSM +K-APN +V-2AAI-3S +A-NSM +T-NSM +V-PAP-NSM +CONJ +T-NPM +V-PAP-NPM +T-APM +N-APM +T-GSF +N-GSF +CONJ +V-PAP-NPM +T-APN +PREP +P-DSF +V-RPP-APN +CONJ +T-NSM +N-NSM +ADV +N-NSM +T-DPF +A-NUI +N-DPF +T-DPF +PREP +T-DSF +N-DSF +N-NSF +CONJ +N-NSF +P-2DP +PREP +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-IAI-3S +CONJ +T-NSM +V-PNP-NSM +CONJ +PREP +T-GPN +A-NUI +N-GPN +R-NPN +PREP +T-GSM +N-GSM +P-GSM +CONJ +PREP +N-GSM +N-GSM +T-NSM +N-NSM +T-NSM +A-NSM +T-NSM +A-NSM-S +T-GPM +A-GPM +CONJ +T-NSM +N-NSM +T-GPM +N-GPM +T-GSF +N-GSF +T-DSM +V-PAP-DSM +P-1AP +CONJ +V-AAP-DSM +P-1AP +PREP +T-GPF +N-GPF +P-1GP +PREP +T-DSN +N-DSN +P-GSM +CONJ +V-AAI-3S +P-1AP +N-ASF +N-APM +T-DSM +N-DSM +CONJ +N-DSM +P-GSM +P-DSM +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +V-2AMM-2S +V-PNI-3S +PREP +T-GPF +N-GPF +CONJ +V-FDI-3S +P-ASM +A-NSM +N-NSM +CONJ +R-NPM +P-ASM +V-AAI-3P +CONJ +V-FDI-3P +PREP +P-ASM +A-NPF +T-NPF +N-NPF +T-GSF +N-GSF +PRT +HEB +P-1NS +V-PAI-1S +T-NSN +N-LI +CONJ +T-NSN +N-LI +V-PAI-3S +N-NSM +T-NSM +N-NSM +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-IAI-3S +CONJ +T-NSM +V-PNP-NSM +T-NSM +N-NSM +P-1NS +N-NSM +T-NSM +N-NSM +P-2GP +CONJ +N-NSM +PREP +T-DSF +N-DSF +CONJ +N-DSF +CONJ +N-DSF +PREP +N-DSM +V-2ADI-1S +PREP +T-DSF +N-DSF +T-DSF +V-PPP-DSF +N-DSF +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-ASF +N-ASF +N-GSM +V-2ADI-1S +PREP +N-DSN +PREP +T-DSF +A-DSF +N-DSF +CONJ +V-AAI-1S +ADV +P-1GS +N-ASF +A-ASF +ADV +N-GSF +V-PAP-GSF +R-ASN +V-PAI-2S +V-AAM-2S +PREP +N-ASN +CONJ +V-AAM-2S +T-DPF +A-NUI +N-DPF +PREP +N-ASF +CONJ +PREP +N-ASF +CONJ +PREP +N-ASF +CONJ +PREP +N-APN +CONJ +PREP +N-APF +CONJ +PREP +N-ASF +CONJ +PREP +N-ASF +CONJ +V-AAI-1S +V-PAN +T-ASF +N-ASF +R-NSF +V-IAI-3S +PREP +P-1GS +CONJ +V-AAP-NSM +V-2AAI-1S +A-NUI +N-APF +A-APF +CONJ +PREP +A-DSN +T-GPF +N-GPF +A-ASM +N-ASM +N-GSM +V-RMP-ASM +A-ASM +CONJ +V-RPP-ASM +PREP +T-DPM +N-DPM +N-ASF +A-ASF +CONJ +T-NSF +N-NSF +P-GSM +CONJ +T-NPF +N-NPF +A-NPF +ADV +N-NSN +A-NSN +ADV +N-NSF +CONJ +T-NPM +N-NPM +P-GSM +ADV +N-NSF +N-GSN +CONJ +T-NPM +N-NPM +P-GSM +A-NPM +N-DSN +ADV +PREP +N-DSF +V-RPP-GSF +CONJ +T-NSF +N-NSF +P-GSM +ADV +N-NSF +N-GPN +A-GPN +CONJ +V-PAP-NSM +PREP +T-DSF +A-DSF +N-DSF +P-GSM +N-APM +A-NUI +CONJ +PREP +T-GSN +N-GSN +P-GSM +N-NSF +A-NSM +A-NSF +V-PNP-NSF +CONJ +T-NSF +N-NSF +P-GSM +ADV +T-NSM +N-NSM +V-PAI-3S +PREP +T-DSF +N-DSF +P-GSM +CONJ +ADV +V-2AAI-1S +P-ASM +V-2AAI-1S +PREP +T-APM +N-APM +P-GSM +ADV +A-NSM +CONJ +V-AAI-3S +T-ASF +A-ASF +P-GSM +PREP +P-1AS +V-PAP-NSM +PRT-N +V-PNM-2S +P-1NS +V-PAI-1S +T-NSM +A-NSM-S +CONJ +T-NSM +A-NSM-S +CONJ +T-NSM +V-PAP-NSM +CONJ +V-2ADI-1S +A-NSM +CONJ +V-2AMM-2S +V-PAP-NSM +V-PAI-1S +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-PAI-1S +T-APF +N-APF +T-GSM +N-GSM +CONJ +T-GSM +N-GSM +CONJ +V-AAM-2S +R-APN +V-2AAI-2S +CONJ +R-NPN +V-PAI-3P +CONJ +R-NPN +V-PAI-3S +V-2ADN +PREP +D-APN +T-NSN +N-NSN +T-GPM +A-NUI +N-GPM +R-APM +V-2AAI-2S +PREP +T-GSF +A-GSF +P-1GS +CONJ +T-APF +A-NUI +N-APF +T-APF +A-APF +T-NPM +A-NUI +N-NPM +N-NPM +T-GPF +A-NUI +N-GPF +V-PAI-3P +CONJ +T-NPF +N-NPF +T-NPF +A-NUI +A-NUI +N-NPF +V-PAI-3P +T-DSM +N-DSM +T-GSF +PREP +N-DSF +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +V-PAP-NSM +T-APM +A-NUI +N-APM +PREP +T-DSF +A-DSF +P-GSM +T-NSM +V-PAP-NSM +PREP +A-DSN +T-GPF +A-NUI +N-GPF +T-GPF +A-GPF +V-RAI-1S +T-APN +N-APN +P-2GS +CONJ +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +P-2GS +CONJ +CONJ +PRT-N +V-PNI-2S +V-AAN +A-APM +CONJ +V-AAI-2S +T-APM +V-PAP-APM +F-3APM +N-APM +CONJ +PRT-N +V-PAI-3P +CONJ +V-2AAI-2S +P-APM +A-APM +CONJ +N-ASF +V-PAI-2S +CONJ +V-AAI-2S +PREP +T-ASN +N-ASN +P-1GS +CONJ +PRT-N +V-RAI-2S +CONJ +V-PAI-1S +PREP +P-2GS +CONJ +T-ASF +N-ASF +P-2GS +T-ASF +A-ASF-S +V-AAI-2S +CONJ +V-PAM-2S +ADV-I +V-RAI-2S +CONJ +V-AAM-2S +CONJ +T-APN +A-APN-S +N-APN +V-AAM-2S +CONJ +COND +PRT-N +V-PNI-1S +P-2DS +CONJ +V-FAI-1S +T-ASF +N-ASF +P-2GS +PREP +T-GSM +N-GSM +P-GSF +COND +PRT-N +V-AAS-2S +CONJ +D-ASN +V-PAI-2S +CONJ +V-PAI-2S +T-APN +N-APN +T-GPM +N-GPM +R-APN +P-1NS-K +V-PAI-1S +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +T-DSM +V-PAP-DSM +V-FAI-1S +P-DSM +V-2AAN +PREP +T-GSN +N-GSN +T-GSF +N-GSF +R-NSN +V-PAI-3S +PREP +T-DSM +N-DSM +T-GSM +N-GSM +CONJ +T-DSM +N-DSM +T-GSF +PREP +N-DSF +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +A-NSM-S +CONJ +T-NSM +A-NSM-S +R-NSM +V-2ADI-3S +A-NSM +CONJ +V-AAI-3S +V-RAI-1S +P-2GS +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +A-NSM +V-PAI-2S +CONJ +T-ASF +N-ASF +PREP +T-GPM +V-PAP-GPM +A-APM +V-PAN +F-3APM +CONJ +PRT-N +V-PAI-3P +CONJ +N-NSF +T-GSM +N-GSM +PRT-N +V-PNM-2S +R-APN +V-PAN +V-PAI-2S +V-2AMM-2S +V-PAI-3S +T-NSM +A-NSM +V-PAN +PREP +P-2GP +PREP +N-ASF +CONJ +V-APS-2P +CONJ +V-FAI-2P +N-ASF +N-GPF +A-NUI +V-PNM-2S +A-NSM +ADV +N-GSM +CONJ +V-FAI-1S +P-2DS +T-ASM +N-ASM +T-GSF +N-GSF +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +T-NSM +V-PAP-NSM +PRT-N +PRT-N +V-APS-3S +PREP +T-GSM +N-GSM +T-GSM +A-GSM +CONJ +T-DSM +N-DSM +T-GSF +PREP +N-DSF +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +V-PAP-NSM +T-ASF +N-ASF +T-ASF +A-ASF +T-ASF +A-ASF +V-RAI-1S +ADV-I +V-PAI-2S +ADV +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-PAI-2S +T-ASN +N-ASN +P-1GS +CONJ +PRT-N +V-ADI-2S +T-ASF +N-ASF +P-1GS +CONJ +PREP +T-DPF +N-DPF +N-NSM +T-NSM +N-NSM +P-1GS +T-NSM +A-NSM +P-1GS +R-NSM +V-API-3S +PREP +P-2DP +ADV +T-NSM +N-NSM +V-PAI-3S +CONJ +V-PAI-1S +PREP +P-2GS +A-APN +CONJ +V-PAI-2S +ADV +V-PAP-APM +T-ASF +N-ASF +N-PRI +R-NSM +V-IAI-3S +T-DSM +N-PRI +V-2AAN +N-ASN +PREP +T-GPM +N-GPM +N-PRI +V-2AAN +A-APN +CONJ +V-AAN +ADV +V-PAI-2S +CONJ +P-2NS +V-PAP-APM +T-ASF +N-ASF +T-GPM +N-GPM +ADV +CONJ +V-AAM-2S +CONJ +COND +PRT-N +V-PNI-1S +P-2DS +ADV +CONJ +V-FAI-1S +PREP +P-GPM +PREP +T-DSF +N-DSF +T-GSN +N-GSN +P-1GS +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +T-DSM +V-PAP-DSM +V-FAI-1S +P-DSM +T-GSN +HEB +T-GSN +V-RPP-GSN +CONJ +V-FAI-1S +P-DSM +N-ASF +A-ASF +CONJ +PREP +T-ASF +N-ASF +V-RPP-NSN +N-NSN +A-NSN +R-ASN +A-NSM-N +V-RAI-3S +COND +PRT-N +T-NSM +V-PAP-NSM +CONJ +T-DSM +N-DSM +T-GSF +PREP +N-DPN +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-NSM +V-PAP-NSM +T-APM +N-APM +P-GSM +ADV +N-ASF +N-GSN +CONJ +T-NPM +N-NPM +P-GSM +A-NPM +N-DSN +V-RAI-1S +P-2GS +T-APN +N-APN +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +P-2GS +CONJ +T-APN +N-APN +P-2GS +T-APN +A-APN-S +A-APN-C +T-GPN +A-GPN-S +CONJ +V-PAI-1S +PREP +P-2GS +CONJ +V-PAI-2S +T-ASF +N-ASF +N-PRI +T-NSF +V-PAP-NSF +F-3ASF +N-ASF +CONJ +V-PAI-3S +CONJ +V-PAI-3S +T-APM +S-1SAPM +N-APM +V-AAN +CONJ +V-2AAN +A-APN +CONJ +V-AAI-1S +P-DSF +N-ASM +CONJ +V-AAS-3S +CONJ +PRT-N +V-PAI-3S +V-AAN +PREP +T-GSF +N-GSF +P-GSF +V-2AMM-2S +V-PAI-1S +P-ASF +PREP +N-ASF +CONJ +T-APM +V-PAP-APM +PREP +P-GSF +PREP +N-ASF +A-ASF +COND +PRT-N +V-FAI-3P +PREP +T-GPN +N-GPN +P-GSF +CONJ +T-APN +N-APN +P-GSF +V-FAI-1S +PREP +N-DSM +CONJ +V-FDI-3P +A-NPF +T-NPF +N-NPF +CONJ +P-1NS +V-PAI-1S +T-NSM +V-PAP-NSM +N-APM +CONJ +N-APF +CONJ +V-FAI-1S +P-2DP +A-DSM +PREP +T-APN +N-APN +P-2GP +CONJ +V-PAI-1S +P-2DP +T-DPM +A-DPM +T-DPM +PREP +N-DPN +K-NPM +PRT-N +V-PAI-3P +T-ASF +N-ASF +D-ASF +R-NPM +PRT-N +V-2AAI-3P +T-APN +A-APN +T-GSM +N-GSM +ADV +V-PAI-3P +PRT-N +V-PAI-1S +PREP +P-2AP +A-ASN +N-ASN +ADV +R-ASN +V-PAI-2P +V-AAM-2P +ADV +PRT +R-GSM +V-AAS-1S +CONJ +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-PAP-NSM +ADV +N-GSN +T-APN +N-APN +P-1GS +V-FAI-1S +P-DSM +N-ASF +PREP +T-GPN +N-GPN +CONJ +V-FAI-3S +P-APM +PREP +N-DSF +A-DSF +ADV +T-NPN +N-NPN +T-NPN +A-NPN +V-PPI-3S +ADV +P-1NS-K +V-2RAI-1S +PREP +T-GSM +N-GSM +P-1GS +CONJ +V-FAI-1S +P-DSM +T-ASM +N-ASM +T-ASM +A-ASM +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +CONJ +T-DSM +N-DSM +T-GSF +PREP +N-DPF +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +V-PAP-NSM +T-APN +A-NUI +N-APN +T-GSM +N-GSM +CONJ +T-APM +A-NUI +N-APM +V-RAI-1S +P-2GS +T-APN +N-APN +CONJ +N-ASN +V-PAI-2S +CONJ +V-PAI-2S +CONJ +A-NSM +V-PAI-2S +V-PNM-2S +V-PAP-NSM +CONJ +V-AAM-2S +T-APN +A-APN +R-NPN +V-IAI-3P +V-2AAN +CONJ +PRT-N +V-RAI-1S +P-2GS +N-APN +V-RPP-APN +PREP +T-GSM +N-GSM +P-1GS +CONJ +V-PAM-2S +ADV +V-2RAI-2S +CONJ +V-AAI-2S +CONJ +V-PAM-2S +CONJ +V-AAM-2S +CONJ +COND +PRT-N +V-AAS-2S +V-FAI-1S +ADV +N-NSM +CONJ +PRT-N +PRT-N +V-2AAS-2S +I-ASF +N-ASF +V-FAI-1S +PREP +P-2AS +CONJ +V-PAI-2S +A-APN +N-APN +PREP +N-DPF +R-NPN +PRT-N +V-AAI-3P +T-APN +N-APN +P-GPN +CONJ +V-FAI-3P +PREP +P-1GS +PREP +A-DPN +CONJ +A-NPM +V-PAI-3P +T-NSM +V-PAP-NSM +ADV +V-FMI-3S +PREP +N-DPN +A-DPN +CONJ +PRT-N +PRT-N +V-FAI-1S +T-ASN +N-ASN +P-GSM +PREP +T-GSF +N-GSF +T-GSF +N-GSF +CONJ +V-FAI-1S +T-ASN +N-ASN +P-GSM +PREP +T-GSM +N-GSM +P-1GS +CONJ +PREP +T-GPM +N-GPM +P-GSM +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +CONJ +T-DSM +N-DSM +T-GSF +PREP +N-DSF +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +A-NSM +T-NSM +A-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +N-PRI +T-NSM +V-PAP-NSM +CONJ +A-NSM-N +V-FAI-3S +CONJ +V-PAP-NSM +CONJ +A-NSM-N +V-PAI-3S +V-RAI-1S +P-2GS +T-APN +N-APN +V-2AMM-2S +V-RAI-1S +PREP +P-2GS +N-ASF +V-RPP-ASF +R-ASF +P-ASF +V-AAN +A-NSM-N +V-PNI-3S +CONJ +A-ASF +N-ASF +V-PAI-2S +CONJ +V-AAI-2S +P-1GS +T-ASM +N-ASM +CONJ +PRT-N +V-ADI-2S +T-ASN +N-ASN +P-1GS +V-2AMM-2S +V-PAS-1S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +T-GPM +V-PAP-GPM +F-3APM +A-APM +V-PAN +CONJ +PRT-N +V-PAI-3P +CONJ +V-PNI-3P +V-2AMM-2S +V-FAI-1S +P-APM +CONJ +V-FAI-3P +CONJ +V-FAI-3P +PREP +T-GPM +N-GPM +P-2GS +CONJ +V-2AAS-3P +CONJ +P-1NS +V-AAI-1S +P-2AS +CONJ +V-AAI-2S +T-ASM +N-ASM +T-GSF +N-GSF +P-1GS +P-1NS-K +P-2AS +V-FAI-1S +PREP +T-GSF +N-GSF +T-GSM +N-GSM +T-GSF +V-PAP-GSF +V-PNN +PREP +T-GSF +N-GSF +A-GSF +V-AAN +T-APM +V-PAP-APM +PREP +T-GSF +N-GSF +V-PNI-1S +ADV +V-PAM-2S +R-ASN +V-PAI-2S +CONJ +A-NSM-N +V-2AAS-3S +T-ASM +N-ASM +P-2GS +T-NSM +V-PAP-NSM +V-FAI-1S +P-ASM +N-ASM +PREP +T-DSM +N-DSM +T-GSM +N-GSM +P-1GS +CONJ +ADV +PRT-N +PRT-N +V-2AAS-3S +ADV +CONJ +V-FAI-1S +PREP +P-ASM +T-ASN +N-ASN +T-GSM +N-GSM +P-1GS +CONJ +T-ASN +N-ASN +T-GSF +N-GSF +T-GSM +N-GSM +P-1GS +T-GSF +A-GSF +N-PRI +T-NSF +V-PAP-NSF +PREP +T-GSM +N-GSM +PREP +T-GSM +N-GSM +P-1GS +CONJ +T-ASN +N-ASN +P-1GS +T-ASN +A-ASN +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +CONJ +T-DSM +N-DSM +T-GSF +PREP +N-DSF +N-GSF +V-AAM-2S +D-APN +V-PAI-3S +T-NSM +HEB +T-NSM +N-NSM +T-NSM +A-NSM +CONJ +A-NSM +T-NSF +N-NSF +T-GSF +N-GSF +T-GSM +N-GSM +V-RAI-1S +P-2GS +T-APN +N-APN +CONJ +V-PAI-2S +CONJ-N +A-NSM +CONJ-N +A-NSM +V-2AAI-1S +V-IAI-2S +A-NSM +PRT +A-NSM +ADV +CONJ +A-NSM +V-PAI-2S +CONJ +CONJ-N +A-NSM +CONJ-N +A-NSM +V-PAI-1S +P-2AS +V-AAN +PREP +T-GSN +N-GSN +P-1GS +CONJ +V-PAI-2S +CONJ +A-NSM +V-PAI-1S +CONJ +V-RAI-1S +CONJ +A-ASN-N +N-ASF +V-PAI-1S +CONJ +PRT-N +V-RAI-2S +CONJ +P-2NS +V-PAI-2S +T-NSM +A-NSM +CONJ +A-NSM +CONJ +A-NSM +CONJ +A-NSM +CONJ +A-NSM +V-PAI-1S +P-2DS +V-AAN +PREP +P-1GS +N-ASN +V-RPP-ASN +PREP +N-GSN +CONJ +V-AAS-2S +CONJ +N-APN +A-APN +CONJ +V-2AMS-2S +CONJ +PRT-N +V-APS-3S +T-NSF +N-NSF +T-GSF +N-GSF +P-2GS +CONJ +N-ASN +V-AAN +T-APM +N-APM +P-2GS +CONJ +V-PAS-2S +P-1NS +COND +K-APM +V-PAS-1S +V-PAI-1S +CONJ +V-PAI-1S +CONJ +V-PAM-2S +CONJ +V-AAM-2S +V-2AMM-2S +V-RAI-1S +PREP +T-ASF +N-ASF +CONJ +V-PAI-1S +COND +X-NSM +V-AAS-3S +T-GSF +N-GSF +P-1GS +CONJ +V-AAS-3S +T-ASF +N-ASF +V-FDI-1S +PREP +P-ASM +CONJ +V-FAI-1S +PREP +P-GSM +CONJ +P-NSM +PREP +P-1GS +T-NSM +V-PAP-NSM +V-FAI-1S +P-DSM +V-AAN +PREP +P-1GS +PREP +T-DSM +N-DSM +P-1GS +ADV +P-1NS-K +V-AAI-1S +CONJ +V-AAI-1S +PREP +T-GSM +N-GSM +P-1GS +PREP +T-DSM +N-DSM +P-GSM +T-NSM +V-PAP-NSM +N-ASN +V-AAM-3S +I-ASN +T-NSN +N-NSN +V-PAI-3S +T-DPF +N-DPF +PREP +D-APN +V-2AAI-1S +CONJ +V-2AMM-2S +N-NSF +V-RPP-NSF +PREP +T-DSM +N-DSM +CONJ +T-NSF +N-NSF +T-NSF +A-NSF-S +R-ASF +V-AAI-1S +ADV +N-GSF +V-PAP-GSF +PREP +P-1GS +V-PAP-NSM +V-2AAM-2S +ADV +CONJ +V-FAI-1S +P-2DS +R-APN +V-2ADN +PREP +D-APN +V-PAI-3S +ADV +V-2ADI-1S +PREP +N-DSN +CONJ +V-2AMM-2S +N-NSM +V-INI-3S +PREP +T-DSM +N-DSM +CONJ +PREP +T-ASM +N-ASM +V-PNP-NSM +CONJ +T-NSM +V-PNP-NSM +A-NSM +N-DSF +N-DSM +N-DSF +CONJ +N-DSN +CONJ +N-NSF +ADV +T-GSM +N-GSM +A-NSM +N-DSF +A-DSM +CONJ +ADV +T-GSM +N-GSM +N-APM +A-NUI +A-APM +CONJ +PREP +T-APM +N-APM +A-NUI +A-APM +A-APM-C +V-PNP-APM +V-RPP-APM +PREP +N-DPN +A-DPN +CONJ +PREP +T-APF +N-APF +P-GPM +N-APM +A-APM +CONJ +PREP +T-GSM +N-GSM +V-PNI-3P +N-NPF +CONJ +N-NPF +CONJ +N-NPF +CONJ +A-NUI +N-NPF +N-GSN +V-PPP-NPF +PREP +T-GSM +N-GSM +R-NPN +V-PAI-3P +T-NPN +A-NUI +N-NPN +T-GSM +N-GSM +CONJ +PREP +T-GSM +N-GSM +ADV +N-NSF +A-NSF +A-NSF +N-DSM +CONJ +PREP +A-DSN +T-GSM +N-GSM +CONJ +N-DSM +T-GSM +N-GSM +A-NPN +N-NPN +V-PAP-NPN +N-GPM +ADV +CONJ +ADV +CONJ +T-NSN +N-NSN +T-NSN +A-NSN-S +A-NSN +N-DSM +CONJ +T-NSN +A-NSN +N-NSN +A-NSN +N-DSM +CONJ +T-NSN +A-NSN +N-NSN +V-PAP-NSM +T-ASN +N-ASN +ADV +N-GSM +CONJ +T-NSN +A-NSN +N-NSN +A-NSN +N-DSM +V-PNP-DSM +CONJ +T-NPN +A-NPN +N-NPN +A-NSN +PREP +A-ASN +P-GPN +V-PAP-NSM +PREP +N-APF +A-NUI +ADV +CONJ +ADV +V-PAI-3P +N-GPM +CONJ +N-ASF +PRT-N +V-PAI-3P +N-GSF +CONJ +N-GSF +V-PAP-NPM +A-NSM +A-NSM +A-NSM +N-NSM +T-NSM +N-NSM +T-NSM +N-NSM +T-NSM +V-IAI-3S +CONJ +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-PNP-NSM +CONJ +CONJ +V-FAI-3P +T-NPN +N-NPN +N-ASF +CONJ +N-ASF +CONJ +N-ASF +T-DSM +V-PNP-DSM +PREP +T-DSM +N-DSM +T-DSM +V-PAP-DSM +PREP +T-APM +N-APM +T-GPM +N-GPM +V-FNI-3P +T-NPM +A-NUI +A-NPM +A-NPM-C +PREP +T-GSM +V-PNP-GSM +PREP +T-GSM +N-GSM +CONJ +V-FAI-3P +T-DSM +V-PAP-DSM +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-FAI-3P +T-APM +N-APM +P-GPM +PREP +T-GSM +N-GSM +V-PAP-NPM +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +P-1GP +A-NSM +V-PAI-2S +V-2AAN +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +P-2NS +V-AAI-2S +T-APN +A-APN +CONJ +PREP +T-ASN +N-ASN +P-2GS +V-IAI-3P +CONJ +V-API-3P +CONJ +V-2AAI-1S +PREP +T-ASF +A-ASF +T-GSM +V-PNP-GSM +PREP +T-GSM +N-GSM +N-ASN +V-RPP-ASN +ADV +CONJ +ADV +V-RPP-ASN +N-DPF +A-NUI +CONJ +V-2AAI-1S +N-ASM +A-ASM +V-PAP-ASM +PREP +N-DSF +A-DSF +I-NSM +A-NSM +V-AAN +T-ASN +N-ASN +CONJ +V-AAN +T-APF +N-APF +P-GSN +CONJ +V-INI-3S +A-NSM-N +PREP +T-DSM +N-DSM +CONJ-N +PREP +T-GSF +N-GSF +CONJ-N +ADV +T-GSF +N-GSF +V-AAN +T-ASN +N-ASN +CONJ-N +V-PAN +P-ASN +CONJ +V-IAI-1S +A-ASN +CONJ +A-NSM-N +A-NSM +V-API-3S +V-AAN +T-ASN +N-ASN +CONJ-N +V-PAN +P-ASN +CONJ +A-NSM +PREP +T-GPM +A-GPM-C +V-PAI-3S +P-1DS +PRT-N +V-PAM-2S +V-2AMM-2S +V-AAI-3S +T-NSM +N-NSM +T-NSM +PREP +T-GSF +N-GSF +N-GSM +T-NSF +N-NSF +N-PRI +V-AAN +T-ASN +N-ASN +CONJ +T-APF +A-NUI +N-APF +P-GSN +CONJ +V-2AAI-1S +PREP +A-DSN +T-GSM +N-GSM +CONJ +T-GPN +A-GPN +N-GPN +CONJ +PREP +A-DSN +T-GPM +A-GPM-C +N-ASN +V-RAP-ASN +ADV +V-RPP-ASN +V-PAP-NSM +N-APN +A-NUI +CONJ +N-APM +A-NUI +R-NPM +V-PAI-3P +T-NPN +A-NUI +N-NPN +T-GSM +N-GSM +V-RPP-NPM +PREP +A-ASF +T-ASF +N-ASF +CONJ +V-2AAI-3S +CONJ +V-2RAI-3S +PREP +T-GSF +A-GSF +T-GSM +V-PNP-GSM +PREP +T-GSM +N-GSM +CONJ +ADV +V-2AAI-3S +T-ASN +N-ASN +T-NPN +A-NPN +N-NPN +CONJ +T-NPM +A-NUI +A-NPM +A-NPM-C +V-2AAI-3P +PREP +T-GSN +N-GSN +V-PAP-NPM +A-NSM +N-ASF +CONJ +N-APF +A-APF +V-PAP-APF +N-GPN +R-NPF +V-PAI-3P +T-NPF +N-NPF +T-GPM +A-GPM +CONJ +V-PAI-3P +N-ASF +A-ASF +V-PAP-NPM +A-NSM +V-PAI-2S +V-2AAN +T-ASN +N-ASN +CONJ +V-AAN +T-APF +N-APF +P-GSN +CONJ +V-2API-2S +CONJ +V-AAI-2S +T-DSM +N-DSM +PREP +T-DSN +N-DSN +P-2GS +PREP +A-GSF +N-GSF +CONJ +N-GSF +CONJ +N-GSM +CONJ +N-GSN +CONJ +V-AAI-2S +P-APM +T-DSM +N-DSM +P-1GP +N-ASF +CONJ +N-APM +CONJ +V-FAI-3P +PREP +T-GSF +N-GSF +CONJ +V-2AAI-1S +CONJ +V-AAI-1S +N-ASF +N-GPM +A-GPM +N-DSM +T-GSM +N-GSM +CONJ +T-GPN +N-GPN +CONJ +T-GPM +A-GPM-C +CONJ +V-IAI-3S +T-NSM +N-NSM +P-GPM +N-NPF +N-GPF +CONJ +N-NPF +N-GPF +V-PAP-NPM +N-DSF +A-DSF +A-NSM +V-PAI-3S +T-NSN +N-NSN +T-NSN +V-RPP-NSN +V-2AAN +T-ASF +N-ASF +CONJ +N-ASM +CONJ +N-ASF +CONJ +N-ASF +CONJ +N-ASF +CONJ +N-ASF +CONJ +N-ASF +CONJ +A-ASN +N-ASN +R-NSN +PREP +T-DSM +N-DSM +CONJ +PREP +T-GSF +N-GSF +CONJ +ADV +T-GSF +N-GSF +CONJ +PREP +T-GSF +N-GSF +V-PAI-3S +CONJ +T-APN +PREP +P-DPM +A-APN +V-PAP-APM +V-AAI-1S +T-DSM +V-PNP-DSM +PREP +T-DSM +N-DSM +CONJ +T-DSN +N-DSN +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +T-NPN +A-NPN +N-NPN +V-IAI-3P +HEB +CONJ +T-NPM +A-NPM-C +V-2AAI-3P +CONJ +V-AAI-3P +CONJ +V-2AAI-1S +ADV +V-AAI-3S +T-NSN +N-NSN +A-ASF +PREP +T-GPF +A-NUI +N-GPF +CONJ +V-AAI-1S +A-GSN +PREP +T-GPN +A-GPN +N-GPN +V-PAP-GSN +ADV +N-NSF +N-GSF +V-PNM-2S +CONJ +V-2AAI-1S +CONJ +V-2AMM-2S +N-NSM +A-NSM +CONJ +T-NSM +V-PNP-NSM +PREP +P-ASM +V-PAP-NSM +N-ASN +CONJ +V-API-3S +P-DSM +N-NSM +CONJ +V-2AAI-3S +V-PAP-NSM +CONJ +CONJ +V-AAS-3S +CONJ +ADV +V-AAI-3S +T-ASF +N-ASF +T-ASF +A-ASF +V-AAI-1S +T-GSN +A-GSN +N-GSN +V-PAP-GSN +V-PNM-2S +CONJ +V-2AAI-3S +A-NSM +N-NSM +A-NSM +CONJ +T-DSM +V-PNP-DSM +PREP +P-ASM +V-API-3S +P-DSM +V-2AAN +T-ASF +N-ASF +PREP +T-GSF +N-GSF +CONJ +CONJ +C-APM +V-FAI-3P +CONJ +V-API-3S +P-DSM +N-NSF +A-NSF +CONJ +ADV +V-AAI-3S +T-ASF +N-ASF +T-ASF +A-ASF +V-AAI-1S +T-GSN +A-GSN +N-GSN +V-PAP-GSN +V-PNM-2S +CONJ +V-2AAI-1S +CONJ +V-2AMM-2S +N-NSM +A-NSM +CONJ +T-NSM +V-PNP-NSM +PREP +P-ASM +V-PAP-NSM +N-ASM +PREP +T-DSF +N-DSF +P-GSM +CONJ +V-AAI-1S +ADV +N-ASF +PREP +A-DSN +T-GPN +A-GPN +N-GPN +V-PAP-ASF +N-NSF +N-GSM +N-GSN +CONJ +A-NPF +N-NPF +N-GPF +N-GSN +CONJ +T-ASN +N-ASN +CONJ +T-ASM +N-ASM +PRT-N +V-AAS-2S +CONJ +ADV +V-AAI-3S +T-ASF +N-ASF +T-ASF +A-ASF +V-AAI-1S +N-ASF +T-GSN +A-GSN +N-GSN +V-PAP-GSN +V-PNM-2S +CONJ +V-2AAI-1S +CONJ +V-2AMM-2S +N-NSM +A-NSM +CONJ +T-NSM +V-PNP-NSM +ADV +P-GSM +N-NSN +P-DSM +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-IAI-3S +PREP +P-GSM +CONJ +V-API-3S +P-DPM +N-NSF +PREP +T-ASN +A-ASN +T-GSF +N-GSF +V-AAN +PREP +N-DSF +CONJ +PREP +N-DSM +CONJ +PREP +N-DSM +CONJ +PREP +T-GPN +N-GPN +T-GSF +N-GSF +CONJ +ADV +V-AAI-3S +T-ASF +A-ASF +N-ASF +V-2AAI-1S +ADV +T-GSN +N-GSN +T-APF +N-APF +T-GPM +V-RPP-GPM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +PREP +T-ASF +N-ASF +R-ASF +V-IAI-3P +CONJ +V-AAI-3P +N-DSF +A-DSF +V-PAP-NPM +T-NSM +N-NSM +T-NSM +A-NSM +CONJ +A-NSM +ADV +PRT-I +PRT-N +V-PAI-2S +CONJ +V-PAI-2S +T-ASN +N-ASN +P-1GP +PREP +T-GPM +V-PAP-GPM +PREP +T-GSF +N-GSF +CONJ +V-API-3S +P-DPM +A-DSM +N-NSF +A-NSF +CONJ +V-API-3S +P-DPM +CONJ +V-AMS-3P +ADV +N-ASM +A-ASM +ADV +V-APS-3P +CONJ +T-NPM +N-NPM +P-GPM +CONJ +T-NPM +N-NPM +P-GPM +T-NPM +V-PAP-NPM +V-PPN +ADV +CONJ +P-NPM +CONJ +V-2AAI-1S +ADV +V-AAI-3S +T-ASF +N-ASF +T-ASF +A-ASF +CONJ +N-NSM +A-NSM +V-2ADI-3S +CONJ +T-NSM +N-NSM +V-2ADI-3S +A-NSM +ADV +N-NSM +A-NSM +CONJ +T-NSF +N-NSF +A-NSF +V-2ADI-3S +ADV +N-NSN +CONJ +T-NPM +N-NPM +T-GSM +N-GSM +V-2AAI-3P +PREP +T-ASF +N-ASF +ADV +N-NSF +V-PAI-3S +T-APM +N-APM +P-GSF +PREP +N-GSM +A-GSM +V-PPP-NSF +CONJ +T-NSM +N-NSM +V-API-3S +ADV +N-NSN +V-PPP-NSN +CONJ +A-NSN +N-NSN +CONJ +N-NSF +PREP +T-GPM +N-GPM +P-GPM +V-API-3P +CONJ +T-NPM +N-NPM +T-GSF +N-GSF +CONJ +T-NPM +N-NPM-S +CONJ +T-NPM +N-NPM +CONJ +T-NPM +A-NPM +CONJ +T-NPM +A-NPM +CONJ +A-NSM +N-NSM +CONJ +A-NSM +V-AAI-3P +F-3APM +PREP +T-APN +N-APN +CONJ +PREP +T-APF +N-APF +T-GPN +N-GPN +CONJ +V-PAI-3P +T-DPN +N-DPN +CONJ +T-DPF +N-DPF +V-2AAM-2P +PREP +P-1AP +CONJ +V-AAM-2P +P-1AP +PREP +N-GSN +T-GSM +V-PNP-GSM +PREP +T-GSM +N-GSM +CONJ +PREP +T-GSF +N-GSF +T-GSN +N-GSN +CONJ +V-2AAI-3S +T-NSF +N-NSF +T-NSF +A-NSF +T-GSF +N-GSF +P-GPM +CONJ +I-NSM +V-PNI-3S +V-APN +PREP +D-ASN +V-2AAI-1S +A-APM +N-APM +V-RAP-APM +PREP +T-APF +A-APF +N-APF +T-GSF +N-GSF +V-PAP-APM +T-APM +A-APM +N-APM +T-GSF +N-GSF +CONJ +PRT-N +V-PAS-3S +N-NSM +PREP +T-GSF +N-GSF +CONJ-N +PREP +T-GSF +N-GSF +CONJ-N +PREP +A-ASN +N-ASN +CONJ +V-2AAI-1S +A-ASM +N-ASM +V-PAP-ASM +PREP +N-GSF +N-GSM +V-PAP-ASM +N-ASF +N-GSM +V-PAP-GSM +CONJ +V-AAI-3S +N-DSF +A-DSF +T-DPM +A-DPM +N-DPM +R-DPM +P-DPM +V-API-3S +V-AAN +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +V-PAP-NSM +PRT-N +V-AAS-2P +T-ASF +N-ASF +CONJ-N +T-ASF +N-ASF +CONJ-N +T-APN +N-APN +ADV +V-AAS-1P +T-APM +N-APM +T-GSM +N-GSM +P-1GP +PREP +T-GPN +N-GPN +P-GPM +CONJ +V-AAI-1S +T-ASM +N-ASM +T-GPM +V-RPP-GPM +A-NUI +A-NUI +A-NPF +N-NPF +V-RPP-NPM +PREP +A-GSF +N-GSF +N-GPM +N-PRI +PREP +N-GSF +N-GSM +A-NUI +N-NPF +V-RPP-NPM +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-GSM +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +PREP +N-GSF +N-PRI +A-NUI +N-NPF +V-RPP-NPM +PREP +D-APN +V-2AAI-1S +CONJ +V-2AMM-2S +N-NSM +A-NSM +R-ASM +P-ASM +V-AAN +A-NSM-N +V-INI-3S +PREP +A-GSN +N-GSN +CONJ +N-GPF +CONJ +N-GPM +CONJ +N-GPF +V-RAP-NPM +PREP +T-GSM +N-GSM +CONJ +PREP +T-GSN +N-GSN +V-RPP-APM +N-APF +A-APF +CONJ +N-NPM +PREP +T-DPF +N-DPF +P-GPM +CONJ +V-PAI-3P +N-DSF +A-DSF +V-PAP-NPM +T-NSF +N-NSF +T-DSM +N-DSM +P-1GP +T-DSM +V-PNP-DSM +PREP +T-DSM +N-DSM +CONJ +T-DSN +N-DSN +CONJ +A-NPM +T-NPM +N-NPM +V-LAI-3P +N-DSM +T-GSM +N-GSM +CONJ +T-GPM +A-GPM-C +CONJ +T-GPN +A-GPN +N-GPN +CONJ +V-2AAI-3P +PREP +T-GSM +N-GSM +PREP +T-APN +N-APN +P-GPM +CONJ +V-AAI-3P +T-DSM +N-DSM +V-PAP-NPM +HEB +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-DSM +N-DSM +P-1GP +PREP +T-APM +N-APM +T-GPM +N-GPM +HEB +CONJ +V-ADI-3S +A-NSM +PREP +T-GPM +A-GPM-C +V-PAP-NSM +P-1DS +D-NPM +T-NPM +V-RPP-NPM +T-APF +N-APF +T-APF +A-APF +I-NPM +V-PAI-3P +CONJ +ADV-I +V-2AAI-3P +CONJ +V-RAI-1S-ATT +P-DSM +N-VSM +P-1GS +P-2NS +V-RAI-2S +CONJ +V-2AAI-3S +P-1DS +D-NPM +V-PAI-3P +T-NPM +V-PNP-NPM +PREP +T-GSF +N-GSF +T-GSF +A-GSF +CONJ +V-AAI-3P +T-APF +N-APF +P-GPM +CONJ +V-AAI-3P +P-APF +PREP +T-DSN +N-DSN +T-GSN +N-GSN +PREP +D-ASN +V-PAI-3P +PREP +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +V-PAI-3P +P-DSM +N-GSF +CONJ +N-GSF +PREP +T-DSM +N-DSM +P-GSM +CONJ +T-NSM +V-PNP-NSM +PREP +T-GSM +N-GSM +V-FAI-3S +PREP +P-APM +PRT-N +V-FAI-3P +ADV +CONJ-N +V-FAI-3P +ADV +CONJ-N +PRT-N +V-2AAS-3S +PREP +P-APM +T-NSM +N-NSM +CONJ-N +A-NSN +N-NSN +CONJ +T-NSN +N-NSN +T-NSN +PREP +A-ASN +T-GSM +N-GSM +V-FAI-3S +P-APM +CONJ +V-FAI-3S +P-APM +PREP +N-GSF +N-APF +N-GPN +CONJ +V-FAI-3S +T-NSM +N-NSM +A-ASN +N-ASN +PREP +T-GPM +N-GPM +P-GPM +CONJ +CONJ +V-AAI-3S +T-ASF +N-ASF +T-ASF +A-ASF +V-2ADI-3S +N-NSF +PREP +T-DSM +N-DSM +ADV +N-ASN +CONJ +V-2AAI-1S +T-APM +A-NUI +N-APM +R-NPM +PREP +T-GSM +N-GSM +V-RAI-3P +CONJ +V-API-3P +P-DPM +A-NUI +N-NPF +CONJ +A-NSM +N-NSM +V-2AAI-3S +CONJ +V-API-3S +PREP +T-GSN +N-GSN +V-PAP-NSM +N-ASM +A-ASM +CONJ +V-API-3S +P-DSM +N-NPN +A-NPN +CONJ +V-FAI-3S +T-DPF +N-DPF +T-GPM +A-GPM +A-GPM +PREP +T-ASN +N-ASN +T-ASN +A-ASN +T-ASN +PREP +T-GSM +N-GSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-GPN +N-GPN +T-DPF +N-DPF +T-GPM +A-GPM +PREP +N-GSF +T-GSM +N-GSM +PREP +T-GSM +N-GSM +CONJ +V-2RAI-3S +T-NSM +N-NSM +T-ASM +N-ASM +CONJ +V-AAI-3S +P-ASM +PREP +T-GSN +N-GSN +T-GSN +N-GSN +CONJ +V-2AAI-3S +PREP +T-ASF +N-ASF +CONJ +V-2ADI-3P +N-NPF +CONJ +N-NPF +CONJ +N-NPF +CONJ +N-NSM +CONJ +T-NPM +A-NUI +N-NPM +T-NPM +V-PAP-NPM +T-APF +A-NUI +N-APF +V-AAI-3P +F-3APM +CONJ +V-AAS-3P +CONJ +T-NSM +A-NSM-S +V-AAI-3S +CONJ +V-2ADI-3S +N-NSF +CONJ +N-NSN +V-RPP-NPN +PREP +N-DSN +CONJ +V-API-3S +PREP +T-ASF +N-ASF +CONJ +T-NSN +A-NSN +T-GSF +N-GSF +V-2API-3S +CONJ +T-NSN +A-NSN +T-GPN +N-GPN +V-2API-3S +CONJ +A-NSM +N-NSM +A-NSM +V-2API-3S +CONJ +T-NSM +A-NSM +N-NSM +V-AAI-3S +CONJ +ADV +N-NSN +A-NSN +N-DSN +V-PPP-NSN +V-API-3S +PREP +T-ASF +N-ASF +CONJ +V-2ADI-3S +T-NSN +A-NSN +T-GSF +N-GSF +N-NSN +CONJ +V-2AAI-3S +T-NSN +A-NSN +T-GPN +N-GPN +T-GPN +PREP +T-DSF +N-DSF +T-NPN +V-PAP-NPN +N-APF +CONJ +T-NSN +A-NSN +T-GPN +N-GPN +V-2API-3P +CONJ +T-NSM +A-NSM +N-NSM +V-AAI-3S +CONJ +V-2AAI-3S +PREP +T-GSM +N-GSM +N-NSM +A-NSM +V-PPP-NSM +ADV +N-NSF +CONJ +V-2AAI-3S +PREP +T-ASN +A-ASN +T-GPM +N-GPM +CONJ +PREP +T-APF +N-APF +T-GPN +N-GPN +CONJ +T-NSN +N-NSN +T-GSM +N-GSM +V-PPI-3S +T-NSM +N-NSM +CONJ +V-2ADI-3S +T-NSN +A-NSN +T-GPN +N-GPN +PREP +N-ASF +CONJ +A-NPM +T-GPM +N-GPM +V-2AAI-3P +PREP +T-GPN +N-GPN +CONJ +V-API-3P +CONJ +T-NSM +A-NSM +N-NSM +V-AAI-3S +CONJ +V-2API-3S +T-NSN +A-NSN +T-GSM +N-GSM +CONJ +T-NSN +A-NSN +T-GSF +N-GSF +CONJ +T-NSN +A-NSN +T-GPM +N-GPM +CONJ +V-APS-3S +T-NSN +A-NSN +P-GPM +CONJ +T-NSF +N-NSF +PRT-N +V-2AAS-3S +T-ASN +A-ASN +P-GSF +CONJ +T-NSF +N-NSF +ADV +CONJ +V-2AAI-1S +CONJ +V-AAI-1S +A-GSM +N-GSM +V-PNP-GSM +PREP +N-DSN +V-PAP-GSM +N-DSF +A-DSF +INJ +INJ +INJ +T-APM +V-PAP-APM +PREP +T-GSF +N-GSF +PREP +T-GPM +A-GPM +N-GPF +T-GSF +N-GSF +T-GPM +A-GPM +N-GPM +T-GPM +V-PAP-GPM +V-PAN +CONJ +T-NSM +A-NSM +N-NSM +V-AAI-3S +CONJ +V-2AAI-1S +N-ASM +PREP +T-GSM +N-GSM +V-RAP-ASM +PREP +T-ASF +N-ASF +CONJ +V-API-3S +P-DSM +T-NSF +N-NSF +T-GSN +N-GSN +T-GSF +N-GSF +CONJ +V-AAI-3S +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +V-2AAI-3S +N-NSM +PREP +T-GSN +N-GSN +ADV +N-NSM +N-GSF +A-GSF +CONJ +V-API-3S +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +PREP +T-GSM +N-GSM +T-GSN +N-GSN +CONJ +PREP +T-GSM +N-GSM +V-2AAI-3P +N-NPF +PREP +T-ASF +N-ASF +CONJ +V-API-3S +P-DPM +N-NSF +ADV +V-PAI-3P +N-ASF +T-NPM +N-NPM +T-GSF +N-GSF +CONJ +V-API-3S +P-DPM +CONJ +PRT-N +V-FAI-3P +T-ASM +N-ASM +T-GSF +N-GSF +CONJ-N +A-ASN +A-ASN +CONJ-N +A-ASN +N-ASN +COND +PRT-N +T-APM +N-APM +R-NPM +PRT-N +V-PAI-3P +T-ASF +N-ASF +T-GSM +N-GSM +PREP +T-GPN +N-GPN +CONJ +V-API-3S +P-DPM +CONJ +PRT-N +V-AAS-3P +P-APM +CONJ +CONJ +V-FPI-3P +N-APM +A-NUI +CONJ +T-NSM +N-NSM +P-GPF +ADV +N-NSM +N-GSM +CONJ +V-AAS-3S +N-ASM +CONJ +PREP +T-DPF +N-DPF +D-DPF +V-FAI-3P +T-NPM +N-NPM +T-ASM +N-ASM +CONJ +PRT-N +PRT-N +V-FAI-3P +P-ASM +CONJ +V-FAI-3P +V-2AAN +CONJ +V-PAI-3S +T-NSM +N-NSM +PREP +P-GPM +CONJ +T-NPN +N-NPN +T-GPF +N-GPF +A-NPM +N-DPM +V-RPP-DPM +PREP +N-ASM +CONJ +PREP +T-APF +N-APF +P-GPF +ADV +N-NPM +A-NPM +N-DSM +CONJ +T-NPN +N-NPN +P-GPF +ADV +N-NPN +N-GPM +CONJ +V-IAI-3P +N-APF +ADV +N-APF +N-GPF +CONJ +T-NPM +N-NPM +P-GPF +ADV +N-GPM +V-IAI-3P +CONJ +V-IAI-3P +N-APM +ADV +N-APM +A-APM +CONJ +T-NSF +N-NSF +T-GPF +N-GPF +P-GPF +ADV +N-NSF +N-GPN +N-GPM +A-GPM +V-PAP-GPM +PREP +N-ASM +CONJ +V-PAI-3P +N-APF +A-APF +N-DPM +CONJ +N-APN +CONJ +PREP +T-DPF +N-DPF +P-GPF +T-NSF +N-NSF +P-GPF +V-AAN +T-APM +N-APM +N-APM +A-NUI +V-PAI-3P +PREP +P-GPF +N-ASM +T-ASM +N-ASM +T-GSF +N-GSF +N-NSN +P-DSM +ADV +N-PRI +CONJ +PREP +T-DSF +A-DSF +N-ASN +V-PAI-3S +N-NSM +T-NSF +N-OI +T-NSF +A-NSF +V-2AAI-3S +V-2AMM-2S +V-PNI-3S +ADV +A-NUI +N-OI +PREP +D-APN +CONJ +T-NSM +A-NSM +N-NSM +V-AAI-3S +CONJ +V-AAI-1S +N-ASF +A-ASF +PREP +T-GPN +A-GPN +N-GPN +T-GSN +N-GSN +T-GSN +A-GSN +T-GSN +PREP +T-GSM +N-GSM +V-PAP-ASM +T-DSM +A-DSM +N-DSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +V-AAM-2S +T-APM +A-APM +N-APM +T-APM +V-RPP-APM +PREP +T-DSM +N-DSM +T-DSM +A-DSM +N-DSM +CONJ +V-API-3P +T-NPM +A-NPM +N-NPM +T-NPM +V-RPP-NPM +PREP +T-ASF +N-ASF +CONJ +N-ASF +CONJ +N-ASM +CONJ +N-ASM +CONJ +V-AAS-3P +T-ASN +A-ASN +T-GPM +N-GPM +CONJ +T-NSM +N-NSM +T-GPN +N-GPN +T-GSN +A-GSN +N-NPF +N-GPF +V-AAI-1S +T-ASM +N-ASM +P-GPN +CONJ +ADV +V-2AAI-1S +T-APM +N-APM +PREP +T-DSF +N-DSF +CONJ +T-APM +V-PNP-APM +PREP +P-GPM +V-PAP-APM +N-APM +A-APM +CONJ +A-APM +CONJ +A-APM +CONJ +T-NPF +N-NPF +T-GPM +N-GPM +ADV +N-NPF +N-GPM +CONJ +PREP +T-GPN +N-GPN +P-GPM +V-PNI-3S +N-NSN +CONJ +N-NSM +CONJ +N-NSN +V-API-3P +T-NSN +A-NSN +T-GPM +N-GPM +PREP +T-GPF +A-GPF +N-GPF +D-GPF +PREP +T-GSN +N-GSN +CONJ +T-GSM +N-GSM +CONJ +T-GSN +N-GSN +T-GSN +V-PNP-GSN +PREP +T-GPN +N-GPN +P-GPM +CONJ +T-NSF +N-NSF +T-GPM +N-GPM +V-PAI-3S +PREP +T-DSN +N-DSN +P-GPM +CONJ +PREP +T-DPF +N-DPF +P-GPM +CONJ +T-NPF +N-NPF +P-GPM +A-NPF +N-DPM +V-PAP-NPF +N-APF +CONJ +PREP +P-DPF +V-PAI-3P +CONJ +T-NPM +A-NPM +T-GPM +N-GPM +R-NPM +PRT-N +V-API-3P +PREP +T-DPF +N-DPF +D-DPF +CONJ-N +V-AAI-3P +PREP +T-GPN +N-GPN +T-GPF +N-GPF +P-GPM +CONJ +PRT-N +V-FAI-3P +T-APN +N-APN +CONJ +T-APN +N-APN +T-APN +A-APN +CONJ +T-APN +A-APN +CONJ +T-APN +A-APN +CONJ +T-APN +A-APN +CONJ +T-APN +A-APN +R-APN +V-PNI-3P +CONJ-N +V-PAN +CONJ-N +V-PAN +CONJ-N +V-PAN +CONJ +PRT-N +V-AAI-3P +PREP +T-GPM +N-GPM +P-GPM +CONJ-N +PREP +T-GPN +N-GPF +P-GPM +CONJ-N +PREP +T-GSF +N-GSF +P-GPM +CONJ-N +PREP +T-GPN +N-GPN +P-GPM +CONJ +V-2AAI-1S +A-ASM +N-ASM +A-ASM +V-PAP-ASM +PREP +T-GSM +N-GSM +V-RPP-ASM +N-ASF +CONJ +T-NSF +N-NSF +PREP +T-ASF +N-ASF +P-GSM +CONJ +T-NSN +N-NSN +P-GSM +ADV +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +P-GSM +ADV +N-NPM +N-GSN +CONJ +V-PAP-NSM +PREP +T-DSF +N-DSF +P-GSM +N-ASN +V-RPP-ASN +CONJ +V-AAI-3S +T-ASM +N-ASM +P-GSM +T-ASM +A-ASM +PREP +T-GSF +N-GSF +CONJ +T-ASM +A-ASM +PREP +T-GSF +N-GSF +CONJ +V-AAI-3S +N-DSF +A-DSF +ADV +N-NSM +V-PNI-3S +CONJ +ADV +V-AAI-3S +V-AAI-3P +T-NPF +A-NUI +N-NPF +T-APF +F-3GPF +N-APF +CONJ +ADV +V-AAI-3P +T-NPF +A-NUI +N-NPF +V-IAI-1S-ATT +V-PAN +CONJ +V-AAI-1S +N-ASF +PREP +T-GSM +N-GSM +V-PAP-ASF +V-AAM-2S +R-APN +V-AAI-3P +T-NPF +A-NUI +N-NPF +CONJ +PRT-N +P-APN +V-AAS-2S +CONJ +T-NSM +N-NSM +R-ASM +V-RAP-ASM +PREP +T-GSF +N-GSF +CONJ +PREP +T-GSF +N-GSF +V-2AAI-1S +V-AAI-3S +T-ASF +N-ASF +P-GSM +T-ASF +A-ASF +PREP +T-ASM +N-ASM +CONJ +V-AAI-3S +PREP +T-DSM +V-PAP-DSM +PREP +T-APM +N-APM +T-GPM +N-GPM +R-NSM +V-AAI-3S +T-ASM +N-ASM +CONJ +T-APN +PREP +P-DSM +CONJ +T-ASF +N-ASF +CONJ +T-APN +PREP +P-DSF +CONJ +T-ASF +N-ASF +CONJ +T-APN +PREP +P-DSF +CONJ +N-NSM +ADV-N +V-FDI-3S +CONJ +PREP +T-DPF +N-DPF +T-GSF +N-GSF +T-GSM +A-GSM +N-GSM +CONJ +V-PAS-3S +V-PAN +CONJ +V-API-3S +T-NSN +N-NSN +T-GSM +N-GSM +ADV +V-AAI-3S +T-APM +F-3GSM +N-APM +T-APM +N-APM +CONJ +T-NSF +N-NSF +R-ASF +V-AAI-1S +PREP +T-GSM +N-GSM +ADV +V-PAP-ASF +PREP +P-1GS +CONJ +V-PAP-ASF +V-PAM-2S +V-2AAM-2S +T-ASN +N-ASN +T-ASN +V-RPP-ASN +PREP +T-DSF +N-DSF +T-GSM +N-GSM +T-GSM +V-RAP-GSM +PREP +T-GSF +N-GSF +CONJ +PREP +T-GSF +N-GSF +CONJ +V-2AAI-1S +PREP +T-ASM +N-ASM +V-PAP-NSM +P-DSM +V-2AAN +P-1DS +T-ASN +N-ASN +CONJ +V-PAI-3S +P-1DS +V-2AAM-2S +CONJ +V-2AAM-2S +P-ASN +CONJ +V-FAI-3S +P-2GS +T-ASF +N-ASF +CONJ +PREP +T-DSN +N-DSN +P-2GS +V-FDI-3S +A-NSN +ADV +N-NSN +CONJ +V-2AAI-1S +T-ASN +N-ASN +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +V-2AAI-1S +P-ASN +CONJ +V-IAI-3S +PREP +T-DSN +N-DSN +P-1GS +ADV +N-NSN +A-NSN +CONJ +ADV +V-2AAI-1S +P-ASN +V-API-3S +T-NSF +N-NSF +P-1GS +CONJ +V-PAI-3P +P-1DS +V-PAI-3S +P-2AS +ADV +V-AAN +PREP +N-DPM +CONJ +N-DPN +CONJ +N-DPF +CONJ +N-DPM +A-DPM +CONJ +V-API-3S +P-1DS +N-NSM +A-NSM +N-DSF +V-PAP-NSM +V-PAM-2S +CONJ +V-AAM-2S +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +T-ASN +N-ASN +CONJ +T-APM +V-PAP-APM +PREP +P-DSM +CONJ +T-ASF +N-ASF +T-ASF +ADV +T-GSM +N-GSM +V-2AAM-2S +ADV +CONJ +PRT-N +P-ASF +V-AAS-2S +CONJ +V-API-3S +T-DPN +N-DPN +CONJ +T-ASF +N-ASF +T-ASF +A-ASF +V-FAI-3P +N-APM +A-NUI +A-NUI +CONJ +V-FAI-1S +T-DPM +A-DPM +N-DPM +P-1GS +CONJ +V-FAI-3P +N-APF +A-APF +A-APF +A-NUI +V-RPP-NPM +N-APM +D-NPM +V-PAI-3P +T-NPF +A-NUI +N-NPF +CONJ +T-NPF +A-NUI +N-NPF +T-NPF +PREP +T-GSM +N-GSM +T-GSF +N-GSF +V-RAP-NPM +CONJ +COND +X-NSM +V-PAI-3S +P-APM +V-AAN +N-NSN +V-PNI-3S +PREP +T-GSN +N-GSN +P-GPM +CONJ +V-PAI-3S +T-APM +A-APM +P-GPM +CONJ +COND +X-NSM +V-AAS-3S +P-APM +V-AAN +ADV +V-PAI-3S +P-ASM +V-APN +D-NPM +V-PAI-3P +T-ASF +N-ASF +V-AAN +T-ASM +N-ASM +CONJ +PRT-N +N-NSM +V-PAS-3S +T-APF +N-APF +T-GSF +N-GSF +P-GPM +CONJ +N-ASF +V-PAI-3P +PREP +T-GPN +N-GPN +V-PAN +P-APN +PREP +N-ASN +CONJ +V-AAN +T-ASF +N-ASF +PREP +A-DSF +N-DSF +ADV +COND +V-AAS-3P +CONJ +CONJ +V-AAS-3P +T-ASF +N-ASF +P-GPM +T-NSN +N-NSN +T-NSN +V-PAP-NSN +PREP +T-GSF +N-GSF +V-FAI-3S +PREP +P-GPM +N-ASM +CONJ +V-FAI-3S +P-APM +CONJ +V-FAI-3S +P-APM +CONJ +T-NSN +N-NSN +P-GPM +PREP +T-GSF +N-GSF +T-GSF +N-GSF +T-GSF +A-GSF +R-NSF +V-PPI-3S +ADV +N-NSF +CONJ +N-NSF +ADV +CONJ +T-NSM +N-NSM +P-GPM +V-API-3S +CONJ +V-PAI-3P +PREP +T-GPM +N-GPM +CONJ +N-GPF +CONJ +N-GPF +CONJ +N-GPN +T-ASN +N-ASN +P-GPM +N-APF +A-APF +CONJ +A-ASN +CONJ +PRT-N +V-PAI-3P +T-APN +N-APN +P-GPM +V-APN +PREP +N-ASN +CONJ +T-NPM +V-PAP-NPM +PREP +T-GSF +N-GSF +V-PAI-3P +PREP +P-DPM +CONJ +V-PPI-3P +CONJ +N-APN +V-FAI-3P +C-DPM +CONJ +D-NPM +T-NPM +A-NUI +N-NPM +V-AAI-3P +T-APM +V-PAP-APM +PREP +T-GSF +N-GSF +CONJ +PREP +T-APF +A-APF +CONJ +A-ASN +N-APF +N-NSN +N-GSF +PREP +T-GSM +N-GSM +V-2AAI-3S +PREP +P-DPM +CONJ +V-2AAI-3P +PREP +T-APM +N-APM +P-GPM +CONJ +N-NSM +A-NSM +V-2AAI-3S +PREP +T-APM +V-PAP-APM +P-APM +CONJ +V-AAI-3P +N-GSF +A-GSF +PREP +T-GSM +N-GSM +V-PAP-GSF +P-DPM +V-2AAM-2P +ADV +CONJ +V-2AAI-3P +PREP +T-ASM +N-ASM +PREP +T-DSF +N-DSF +CONJ +V-AAI-3P +P-APM +T-NPM +A-NPM +P-GPM +CONJ +PREP +D-DSF +T-DSF +N-DSF +V-2ADI-3S +N-NSM +A-NSM +CONJ +T-NSN +A-NSN +T-GSF +N-GSF +V-2AAI-3S +CONJ +V-API-3P +PREP +T-DSM +N-DSM +N-APN +N-GPM +N-NPF +A-NUI +CONJ +T-NPM +A-NPM +A-NPM +V-2ADI-3P +CONJ +V-AAI-3P +N-ASF +T-DSM +N-DSM +T-GSM +N-GSM +T-NSF +N-OI +T-NSF +A-NSF +V-2AAI-3S +V-2AMM-2S +T-NSF +N-OI +T-NSF +A-NSF +V-PNI-3S +ADV +CONJ +T-NSM +A-NSM +N-NSM +V-AAI-3S +CONJ +V-2ADI-3P +N-NPF +A-NPF +PREP +T-DSM +N-DSM +V-PAP-NPM +V-2ADI-3S +T-NSF +N-NSF +T-GSM +N-GSM +T-GSM +N-GSM +P-1GP +CONJ +T-GSM +N-GSM +P-GSM +CONJ +V-FAI-3S +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +T-NPM +A-NUI +A-NPM +A-NPM-C +T-NPM +PREP +T-GSM +N-GSM +V-PNP-NPM +PREP +T-APM +N-APM +P-GPM +V-2AAI-3P +PREP +T-APN +N-APN +P-GPM +CONJ +V-AAI-3P +T-DSM +N-DSM +V-PAP-NPM +V-PAI-1P +P-2DS +N-VSM +T-NSM +N-NSM +T-NSM +N-NSM +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-IAI-3S +CONJ +V-2RAI-2S +T-ASF +N-ASF +P-2GS +T-ASF +A-ASF +CONJ +V-AAI-2S +CONJ +T-NPN +N-NPN +V-API-3P +CONJ +V-2AAI-3S +T-NSF +N-NSF +P-2GS +CONJ +T-NSM +N-NSM +T-GPM +A-GPM +V-APN +CONJ +V-2AAN +T-ASM +N-ASM +T-DPM +N-DPM +P-2GS +T-DPM +N-DPM +CONJ +T-DPM +A-DPM +CONJ +T-DPM +V-PNP-DPM +T-ASN +N-ASN +P-2GS +T-DPM +A-DPM +CONJ +T-DPM +A-DPM +CONJ +V-AAN +T-APM +V-PAP-APM +T-ASF +N-ASF +CONJ +V-2API-3S +T-NSM +N-NSM +T-GSM +N-GSM +T-NSM +PREP +T-DSM +N-DSM +CONJ +V-API-3S +T-NSF +N-NSF +T-GSF +N-GSF +P-GSM +PREP +T-DSM +N-DSM +P-GSM +CONJ +V-2ADI-3P +N-NPF +CONJ +N-NPF +CONJ +N-NPF +CONJ +N-NSM +CONJ +N-NSF +A-NSF +CONJ +N-NSN +A-NSN +V-API-3S +PREP +T-DSM +N-DSM +N-NSF +V-RPP-NSF +T-ASM +N-ASM +CONJ +T-NSF +N-NSF +ADV +T-GPM +N-GPM +P-GSF +CONJ +PREP +T-GSF +N-GSF +P-GSF +N-NSM +N-GPM +A-NUI +CONJ +PREP +N-DSF +V-PAP-NSF +CONJ +V-PAI-3S +V-PAP-NSF +CONJ +V-PPP-NSF +V-2AAN +CONJ +V-API-3S +A-NSN +N-NSN +PREP +T-DSM +N-DSM +CONJ +V-2AMM-2S +N-NSM +A-NSM +A-NSM +V-PAP-NSM +N-APF +A-NUI +CONJ +N-APN +A-NUI +CONJ +PREP +T-APF +N-APF +P-GSM +A-NUI +N-APN +CONJ +T-NSF +N-NSF +P-GSM +V-PAI-3S +T-ASN +A-ASN +T-GPM +N-GPM +T-GSM +N-GSM +CONJ +V-2AAI-3S +P-APM +PREP +T-ASF +N-ASF +CONJ +T-NSM +N-NSM +V-RAI-3S +PREP +T-GSF +N-GSF +T-GSF +V-PAP-GSF +V-2AAN +CONJ +CONJ +V-2AAS-3S +T-ASN +N-ASN +P-GSF +V-2AAS-3S +CONJ +V-2AAI-3S +N-ASM +A-ASN +R-NSM +V-PAI-3S +V-PAN +A-APN +T-APN +N-APN +PREP +N-DSF +A-DSF +CONJ +V-API-3S +T-NSN +N-NSN +P-GSF +PREP +T-ASM +N-ASM +CONJ +PREP +T-ASM +N-ASM +P-GSM +CONJ +T-NSF +N-NSF +V-2AAI-3S +PREP +T-ASF +A-ASF +ADV +V-PAI-3S +ADV +N-ASM +V-RPP-ASM +PREP +T-GSM +N-GSM +CONJ +ADV +V-PAS-3P +P-ASF +N-APF +A-APF +A-APF +A-NUI +CONJ +V-2ADI-3S +N-NSM +PREP +T-DSM +N-DSM +T-NSM +N-PRI +CONJ +T-NPM +N-NPM +P-GSM +T-GSN +V-AAN +PREP +T-GSM +N-GSM +CONJ +V-AAI-3S +T-NSM +N-NSM +CONJ +T-NPM +N-NPM +P-GSM +CONJ +PRT-N +V-AAI-3P +CONJ-N +N-NSM +P-GPM +V-API-3S +ADV +PREP +T-DSM +N-DSM +CONJ +V-API-3S +T-NSM +N-NSM +T-NSM +A-NSM +T-NSM +N-NSM +T-NSM +A-NSM +T-NSM +V-PPP-NSM +A-NSM +CONJ +T-NSM +N-NSM +T-NSM +V-PAP-NSM +T-ASF +N-ASF +A-ASF +V-API-3S +PREP +T-ASF +N-ASF +CONJ +T-NPM +N-NPM +P-GSM +PREP +P-GSM +V-API-3P +CONJ +V-AAI-1S +N-ASF +A-ASF +PREP +T-DSM +N-DSM +V-PAP-ASF +ADV +V-2ADI-3S +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +P-GSM +CONJ +V-API-3S +T-NSM +N-NSM +T-GPM +N-GPM +P-1GP +T-NSM +V-PAP-NSM +P-APM +PREP +T-GSM +N-GSM +P-1GP +N-GSF +CONJ +N-GSF +CONJ +P-NPM +V-AAI-3P +P-ASM +PREP +T-ASN +N-ASN +T-GSN +N-GSN +CONJ +PREP +T-ASM +N-ASM +T-GSF +N-GSF +P-GPM +CONJ +PRT-N +V-AAI-3P +T-ASF +N-ASF +P-GPM +ADV +N-GSM +PREP +D-ASN +V-PPM-2P +N-NPM +CONJ +T-NPM +PREP +P-DPM +V-PAP-NPM +INJ +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +CONJ +V-2AAI-3S +T-NSM +A-NSM +PREP +P-2AP +V-PAP-NSM +N-ASM +A-ASM +V-RAP-NSM +CONJ +A-ASM +N-ASM +V-PAI-3S +CONJ +ADV +V-2AAI-3S +T-NSM +N-NSM +CONJ +V-API-3S +PREP +T-ASF +N-ASF +V-AAI-3S +T-ASF +N-ASF +R-NSF +V-2AAI-3S +T-ASM +A-ASM +CONJ +V-API-3P +T-DSF +N-DSF +T-NPF +A-NUI +N-NPF +T-GSM +N-GSM +T-GSM +A-GSM +CONJ +V-PNS-3S +PREP +T-ASF +A-ASF +PREP +T-ASM +N-ASM +P-GSF +ADV +V-PPI-3S +ADV +N-ASM +CONJ +N-APM +CONJ +A-ASN +N-GSM +PREP +N-GSN +T-GSM +N-GSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +PREP +T-GSN +N-GSN +P-GSM +ADV +T-GSF +N-GSF +N-ASN +ADV +N-ASM +CONJ +P-ASF +A-ASF +V-AAS-3S +CONJ +V-AAI-3S +T-NSF +N-NSF +T-DSF +N-DSF +CONJ +V-AAI-3S +T-NSF +N-NSF +T-ASN +N-ASN +P-GSF +CONJ +V-2AAI-3S +T-ASM +N-ASM +R-ASM +V-2AAI-3S +T-NSM +N-NSM +PREP +T-GSN +N-GSN +P-GSM +CONJ +V-API-3S +T-NSM +N-NSM +PREP +T-DSF +N-DSF +CONJ +V-2AAI-3S +V-AAN +N-ASM +PREP +T-GPM +A-GPM +T-GSN +N-GSN +P-GSF +T-GPM +V-PAP-GPM +T-APF +N-APF +T-GSM +N-GSM +CONJ +V-PAP-GPM +T-ASF +N-ASF +N-GSM +CONJ +V-API-3S +PREP +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +V-2AAI-1S +PREP +T-GSF +N-GSF +N-ASN +V-PAP-ASN +V-PAP-ASN +N-APN +A-NUI +CONJ +N-APF +A-NUI +CONJ +PREP +T-GPN +N-GPN +P-GSN +A-NUI +N-APN +CONJ +PREP +T-APF +N-APF +P-GSN +N-APN +N-GSF +CONJ +T-NSN +N-NSN +R-ASN +V-2AAI-1S +V-IAI-3S +A-NSN +N-DSF +CONJ +T-NPM +N-NPM +P-GSN +ADV +N-GSF +CONJ +T-NSN +N-NSN +P-GSN +ADV +N-NSN +N-GSM +CONJ +V-AAI-3S +P-DSN +T-NSM +N-NSM +T-ASF +N-ASF +P-GSM +CONJ +T-ASM +N-ASM +P-GSM +CONJ +N-ASF +A-ASF +CONJ +A-ASF +PREP +T-GPF +N-GPF +P-GSN +ADV +V-RPP-ASF +PREP +N-ASM +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +P-GSN +V-API-3S +CONJ +V-API-3S +A-NSF +T-NSF +N-NSF +ADV +T-GSN +N-GSN +CONJ +V-AAI-3P +T-DSM +N-DSM +CONJ +V-AAI-3S +T-ASF +N-ASF +T-DSN +N-DSN +CONJ +V-AAI-3P +T-DSN +N-DSN +V-PAP-NPM +I-NSM +A-NSM +T-DSN +N-DSN +CONJ +I-NSM +V-PNI-3S +V-AAN +PREP +P-GSN +CONJ +V-API-3S +P-DSN +N-NSN +V-PAP-NSN +A-APN +CONJ +N-APF +CONJ +V-API-3S +P-DSN +N-NSF +V-AAN +N-APM +A-NUI +A-NUI +CONJ +V-AAI-3S +T-ASN +N-ASN +P-GSN +PREP +N-APF +PREP +T-ASM +N-ASM +V-AAN +T-ASN +N-ASN +P-GSM +CONJ +T-ASF +N-ASF +P-GSM +T-APM +PREP +T-DSM +N-DSM +V-PAP-APM +CONJ +V-API-3S +P-DSN +V-AAN +N-ASM +PREP +T-GPM +A-GPM +CONJ +V-AAN +P-APM +CONJ +V-API-3S +P-DSN +N-NSF +PREP +A-ASF +N-ASF +CONJ +N-ASM +CONJ +N-ASF +CONJ +N-ASN +CONJ +V-FAI-3P +P-ASM +A-NPM +T-NPM +V-PAP-NPM +PREP +T-GSF +N-GSF +PRT-N +V-RPI-3S +R-GSM +T-NSN +N-NSN +P-GSM +PREP +T-DSN +N-DSN +T-GSF +N-GSF +T-GSN +N-GSN +T-GSN +V-RPP-GSN +PREP +N-GSF +N-GSM +COND +X-NSM +V-PAI-3S +N-ASN +V-AAM-3S +COND +X-NSM +PREP +N-ASF +PREP +N-ASF +V-PAI-3S +COND +X-NSM +PREP +N-DSF +V-FAI-3S +V-PAI-3S +P-ASM +PREP +N-DSF +V-APN +ADV +V-PAI-3S +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GPM +A-GPM +CONJ +V-2AAI-1S +A-ASN +N-ASN +V-PAP-ASN +PREP +T-GSF +N-GSF +CONJ +V-IAI-3S +N-APN +A-NUI +A-APN +N-DSN +CONJ +V-IAI-3S +ADV +N-NSM +CONJ +T-ASF +N-ASF +T-GSN +A-GSN-S +N-GSN +A-ASF +V-PAI-3S +PREP +P-GSN +CONJ +V-PAI-3S +T-ASF +N-ASF +CONJ +T-APM +PREP +P-DSF +V-PAP-APM +CONJ +V-FAI-3P +T-ASN +N-ASN +T-ASN +A-ASN-S +R-GSN +V-API-3S +T-NSF +N-NSF +T-GSM +N-GSM +P-GSN +CONJ +V-PAI-3S +N-APN +A-APN +CONJ +CONJ +V-PAS-3S +N-ASN +PREP +T-GSM +N-GSM +V-PAN +PREP +T-ASF +N-ASF +PREP +T-GPM +N-GPM +CONJ +V-PAI-3S +T-APM +V-PAP-APM +PREP +T-GSF +N-GSF +PREP +T-APN +N-APN +R-NPN +V-API-3S +P-DSN +V-AAN +PREP +T-GSN +N-GSN +V-PAP-NSM +T-DPM +V-PAP-DPM +PREP +T-GSF +N-GSF +V-AAN +N-ASF +T-DSN +N-DSN +R-NSM +V-PAI-3S +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +V-AAI-3S +CONJ +V-API-3S +P-DSN +V-2AAN +N-ASN +T-DSF +N-DSF +T-GSN +N-GSN +CONJ +CONJ +V-AAS-3S +T-NSF +N-NSF +T-GSN +N-GSN +CONJ +V-AAS-3S +CONJ +COND +K-NPM +PRT-N +V-AAS-3P +T-DSF +N-DSF +T-GSN +N-GSN +V-APS-3P +CONJ +V-PAI-3S +A-APM +T-APM +A-APM +CONJ +T-APM +A-APM +CONJ +T-APM +A-APM +CONJ +T-APM +A-APM +CONJ +T-APM +A-APM +CONJ +T-APM +N-APM +CONJ +V-2AAS-3P +P-DPM +N-ASN +PREP +T-GSF +N-GSF +P-GPM +T-GSF +A-GSF +PRT +PREP +T-ASN +N-ASN +P-GPM +CONJ +CONJ +PRT-N +X-NSM +V-PNS-3S +V-AAN +PRT +V-AAN +COND +PRT-N +T-NSM +V-PAP-NSM +T-ASN +N-ASN +T-ASN +N-ASN +T-GSN +N-GSN +PRT +T-ASM +N-ASM +T-GSN +N-GSN +P-GSN +ADV +T-NSF +N-NSF +V-PAI-3S +T-NSM +V-PAP-NSM +N-ASM +V-AAM-3S +T-ASM +N-ASM +T-GSN +N-GSN +CONJ +N-NSM +N-GSM +V-PAI-3S +CONJ +T-NSM +N-NSM +P-GSN +A-NPM +A-NUI +A-NUI +CONJ +V-2AAI-1S +CONJ +V-2AMM-2S +T-NSN +N-NSN +V-2RAP-NSN +PREP +T-ASN +N-ASN +N-PRI +CONJ +PREP +P-GSN +A-NUI +A-NUI +A-NPF +N-NPF +V-PAP-NPF +T-ASN +N-ASN +P-GSN +CONJ +T-ASN +N-ASN +T-GSM +N-GSM +P-GSM +V-RPP-ASN +PREP +T-GPN +N-GPN +P-GPM +CONJ +V-AAI-1S +N-ASF +PREP +T-GSM +N-GSM +ADV +N-ASF +N-GPN +A-GPN +CONJ +ADV +N-ASF +N-GSF +A-GSF +CONJ +T-NSF +N-NSF +R-ASF +V-AAI-1S +ADV +N-GPM +V-PAP-GPM +PREP +T-DPF +N-DPF +P-GPM +CONJ +V-PAI-3P +N-ASF +A-ASF +PREP +T-GSM +N-GSM +CONJ +PREP +T-GPN +A-GPN +N-GPN +CONJ +T-GPM +A-GPM-C +CONJ +A-NSM-N +V-INI-3S +V-2AAN +T-ASF +N-ASF +COND +PRT-N +T-NPF +A-NUI +A-NUI +A-NPF +N-NPF +T-NPM +V-RPP-NPM +PREP +T-GSF +N-GSF +D-NPM +V-PAI-3P +R-NPM +PREP +N-GPF +PRT-N +V-API-3P +CONJ +N-NPF +V-PAI-3P +D-NPM +T-NPM +V-PAP-NPM +T-DSN +N-DSN +PRT +ADV +V-PAS-3S +D-NPM +V-API-3P +PREP +T-GPM +N-GPM +N-NSF +T-DSM +N-DSM +CONJ +T-DSN +N-DSN +CONJ +PREP +T-DSN +N-DSN +P-GPM +PRT-N +V-API-3S +N-NSN +A-NPM +V-PAI-3P +CONJ +V-2AAI-1S +A-ASM +N-ASM +V-PNP-ASM +PREP +N-DSN +V-PAP-ASM +N-ASN +A-ASN +V-AAN +PREP +T-APM +V-PNP-APM +PREP +T-GSF +N-GSF +CONJ +PREP +A-ASN +N-ASN +CONJ +N-ASF +CONJ +N-ASF +CONJ +N-ASM +V-PAP-NSM +PREP +N-DSF +A-DSF +V-AOM-2P +T-ASM +N-ASM +CONJ +V-2AAM-2P +P-DSM +N-ASF +CONJ +V-2AAI-3S +T-NSF +N-NSF +T-GSF +N-GSF +P-GSM +CONJ +V-AAM-2P +T-DSM +V-AAP-DSM +T-ASM +N-ASM +CONJ +T-ASF +N-ASF +CONJ +N-ASF +CONJ +N-APF +N-GPN +CONJ +A-NSM +N-NSM +A-NSM +V-AAI-3S +V-PAP-NSM +V-2AAI-3S +V-2AAI-3S +N-NSF +T-NSF +A-NSF +R-NSF +PREP +T-GSM +N-GSM +T-GSM +N-GSM +T-GSF +N-GSF +P-GSF +V-RAI-3S +A-APN +T-APN +N-APN +CONJ +A-NSM +N-NSM +A-NSM +V-AAI-3S +P-DPM +V-PAP-NSM +PREP +N-DSF +A-DSF +COND +X-NSM +V-PAI-3S +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +P-GSN +CONJ +V-PAI-3S +N-ASN +PREP +T-GSN +N-GSN +P-GSM +PRT +PREP +T-ASF +N-ASF +P-GSM +CONJ +P-NSM +V-FDI-3S +PREP +T-GSM +N-GSM +T-GSM +N-GSM +T-GSM +N-GSM +T-GSM +V-RPP-GSM +A-GSM +PREP +T-DSN +N-DSN +T-GSF +N-GSF +P-GSM +CONJ +V-FPI-3S +PREP +N-DSN +CONJ +N-DSN +PREP +N-GPM +A-GPM +CONJ +PREP +T-GSN +N-GSN +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +P-GPM +PREP +N-APM +N-GPM +V-PAI-3S +CONJ +PRT-N +V-PAI-3P +N-ASF +N-GSF +CONJ +N-GSF +T-NPM +V-PAP-NPM +T-ASN +N-ASN +CONJ +T-ASF +N-ASF +P-GSN +CONJ +COND +X-NSM +V-PAI-3S +T-ASN +N-ASN +T-GSN +N-GSN +P-GSN +ADV +V-PAI-3S +T-NSF +N-NSF +T-GPM +A-GPM +T-NPM +V-PAP-NPM +T-APF +N-APF +T-GSM +N-GSM +CONJ +T-ASF +N-ASF +N-GSM +CONJ +V-AAI-1S +N-GSF +PREP +T-GSM +N-GSM +V-PAP-GSF +V-AAM-2S +A-NPM +T-NPM +A-NPM +T-NPM +PREP +N-DSM +V-PAP-NPM +ADV +PRT +V-PAI-3S +T-NSN +N-NSN +CONJ +V-2FPI-3P +PREP +T-GPM +N-GPM +P-GPM +CONJ +T-NPN +N-NPN +P-GPM +V-PAI-3S +PREP +P-GPM +CONJ +V-2AAI-1S +CONJ +V-2AMM-2S +N-NSF +A-NSF +CONJ +PREP +T-ASF +N-ASF +V-PNP-ASM +A-ASM +N-ASM +N-GSM +V-PAP-NSM +PREP +T-GSF +N-GSF +P-GSM +N-ASM +A-ASM +CONJ +PREP +T-DSF +N-DSF +P-GSM +N-ASN +A-ASN +CONJ +A-NSM +N-NSM +V-2AAI-3S +PREP +T-GSM +N-GSM +V-PAP-NSM +PREP +N-DSF +A-DSF +T-DSM +V-PNP-DSM +PREP +T-GSF +N-GSF +V-AAM-2S +T-ASN +N-ASN +P-2GS +CONJ +V-AAM-2S +CONJ +V-2AAI-3S +T-NSF +N-NSF +V-AAN +CONJ +V-API-3S +T-NSM +N-NSM +T-GSF +N-GSF +CONJ +V-2AAI-3S +T-NSM +V-PNP-NSM +PREP +T-GSF +N-GSF +T-ASN +N-ASN +P-GSM +PREP +T-ASF +N-ASF +CONJ +V-API-3S +T-NSF +N-NSF +CONJ +A-NSM +N-NSM +V-2AAI-3S +PREP +T-GSM +N-GSM +T-GSM +PREP +T-DSM +N-DSM +V-PAP-NSM +CONJ +P-NSM +N-ASN +A-ASN +CONJ +A-NSM +N-NSM +T-NSM +V-PAP-NSM +N-ASF +PREP +T-GSN +N-GSN +V-2AAI-3S +PREP +T-GSN +N-GSN +CONJ +V-AAI-3S +N-DSF +A-DSF +T-DSM +V-PAP-DSM +T-ASN +N-ASN +T-ASN +A-ASN +V-PAP-NSM +V-AAM-2S +P-2GS +T-ASN +N-ASN +T-ASN +A-ASN +CONJ +V-AAM-2S +T-APM +N-APM +T-GSF +N-GSF +T-GSF +N-GSF +CONJ +V-AAI-3P +T-NPF +N-NPF +P-GSF +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-ASN +N-ASN +P-GSM +PREP +T-ASF +N-ASF +CONJ +V-AAI-3S +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +V-2AAI-3S +PREP +T-ASF +N-ASF +T-GSM +N-GSM +T-GSM +N-GSM +T-ASM +A-ASM +CONJ +V-API-3S +T-NSF +N-NSF +ADV +T-GSF +N-GSF +CONJ +V-2AAI-3S +N-NSN +PREP +T-GSF +N-GSF +ADV +T-GPM +N-GPM +T-GPM +N-GPM +PREP +N-GPM +A-GPM +A-GPM +CONJ +V-2AAI-1S +A-ASN +N-ASN +PREP +T-DSM +N-DSM +A-ASN +CONJ +A-ASN +N-APM +A-NUI +V-PAP-APM +N-APF +A-NUI +T-APF +A-APF-S +CONJ +PREP +P-DPF +V-API-3S +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +V-2AAI-1S +ADV +N-ASF +A-ASF +V-RPP-ASF +N-DSN +CONJ +T-APM +V-PAP-APM +PREP +T-GSN +N-GSN +CONJ +PREP +T-GSF +N-GSF +P-GSN +CONJ +PREP +T-GSM +N-GSM +T-GSN +N-GSN +P-GSN +V-RAP-APM +PREP +T-ASF +N-ASF +T-ASF +A-ASF +V-PAP-APM +N-APF +T-GSM +N-GSM +CONJ +V-PAI-3P +T-ASF +N-ASF +N-GSM +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +T-ASF +N-ASF +T-GSN +N-GSN +V-PAP-NPM +A-NPN +CONJ +A-NPN +T-NPN +N-NPN +P-2GS +N-VSM +T-NSM +N-NSM +T-NSM +N-NSM +A-NPF +CONJ +A-NPF +T-NPF +N-NPF +P-2GS +T-NSM +N-NSM +T-GPM +N-GPN +I-NSM +PRT-N +PRT-N +V-AOS-3S +N-VSM +CONJ +V-FAI-3S +T-ASN +N-ASN +P-2GS +CONJ +A-NSM +A-NSM +CONJ +A-NPN +T-NPN +N-NPN +V-FAI-3P +CONJ +V-FAI-3P +PREP +P-2GS +CONJ +T-NPN +N-NPN +P-2GS +V-API-3P +CONJ +PREP +D-APN +V-2AAI-1S +CONJ +V-2API-3S +T-NSM +N-NSM +T-GSF +N-GSF +T-GSN +N-GSN +PREP +T-DSM +N-DSM +CONJ +V-2AAI-3P +T-NPM +A-NUI +N-NPM +T-NPM +V-PAP-NPM +T-APF +A-NUI +N-APF +PREP +T-GSM +N-GSM +V-RMP-NPM +N-ASN +A-ASM +A-ASM +CONJ +V-RPP-NPM +PREP +T-APN +N-APN +N-APF +A-APF +CONJ +A-NSN +PREP +T-GPN +A-GPN +N-GPN +V-AAI-3S +T-DPM +A-NUI +N-DPM +A-NUI +N-APF +A-APF +V-PAP-APF +T-GSM +N-GSM +T-GSM +N-GSM +T-GSM +V-PAP-GSM +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-API-3S +T-NSM +N-NSM +N-GSM +PREP +T-GSF +N-GSF +T-GSM +N-GSM +CONJ +PREP +T-GSF +N-GSF +P-GSM +CONJ +A-NSM-N +V-INI-3S +V-2AAN +PREP +T-ASM +N-ASM +ADV +V-APS-3P +T-NPF +A-NUI +N-NPF +T-GPM +A-NUI +N-GPM +CONJ +V-AAI-1S +A-GSF +N-GSF +PREP +T-GSM +N-GSM +V-PAP-GSF +T-DPM +A-NUI +N-DPM +V-PAM-2P +CONJ +V-PAM-2P +T-APF +A-NUI +N-APF +T-GSM +N-GSM +T-GSM +N-GSM +PREP +T-ASF +N-ASF +CONJ +V-2AAI-3S +T-NSM +A-NSM-S +CONJ +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-ASF +N-ASF +CONJ +V-2ADI-3S +N-NSN +A-NSN +CONJ +A-NSN +PREP +T-APM +N-APM +T-APM +V-PAP-APM +T-ASN +N-ASN +T-GSN +N-GSN +CONJ +T-APM +V-PAP-APM +T-DSF +N-DSF +P-GSN +CONJ +T-NSM +A-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-ASF +N-ASF +CONJ +V-2ADI-3S +N-NSN +ADV +A-GSM +CONJ +A-NSF +N-NSF +N-GSF +T-NPN +PREP +T-DSF +N-DSF +V-2AAI-3S +CONJ +T-NSM +A-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-APM +N-APM +CONJ +T-APF +N-APF +T-GPN +N-GPN +CONJ +V-2ADI-3S +N-NSN +CONJ +V-AAI-1S +T-GSM +N-GSM +T-GPN +N-GPN +V-PAP-GSM +A-NSM +V-PAI-2S +T-NSM +V-PAP-NSM +CONJ +T-NSM +V-IAI-3S +T-NSM +A-NSM +CONJ +D-APN +V-AAI-2S +CONJ +N-ASN +A-GPM +CONJ +N-GPM +V-AAI-3P +CONJ +N-ASN +P-DPM +V-RAI-2S +V-2AAN +A-NPM +V-PAI-3P +CONJ +V-AAI-1S +T-GSN +N-GSN +V-PAP-GSM +PRT +N-VSM +T-NSM +N-NSM +T-NSM +N-NSM +A-NPF +CONJ +A-NPF +T-NPF +N-NPF +P-2GS +CONJ +T-NSM +A-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-ASM +N-ASM +CONJ +V-API-3S +P-DSM +V-AAN +T-APM +N-APM +PREP +N-DSN +CONJ +V-API-3P +T-NPM +N-NPM +N-ASN +A-ASN +CONJ +V-AAI-3P +T-ASN +N-ASN +T-GSM +N-GSM +T-GSM +V-PAP-GSM +T-ASF +N-ASF +PREP +T-APF +N-APF +D-APF +CONJ +PRT-N +V-AAI-3P +V-2AAN +P-DSM +N-ASF +CONJ +T-NSM +A-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-ASM +N-ASM +T-GSN +N-GSN +CONJ +V-2ADI-3S +T-NSF +N-NSF +P-GSN +V-RPP-NSF +CONJ +V-INI-3P +T-APF +N-APF +P-GPM +PREP +T-GSM +N-GSM +CONJ +V-AAI-3P +T-ASM +N-ASM +T-GSM +N-GSM +PREP +T-GPM +N-GPM +P-GPM +CONJ +PREP +T-GPN +N-GPN +P-GPM +CONJ +PRT-N +V-AAI-3P +PREP +T-GPN +N-GPN +P-GPM +CONJ +T-NSM +A-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-ASM +N-ASM +T-ASM +A-ASM +N-ASM +CONJ +V-API-3S +T-NSN +N-NSN +P-GSM +CONJ +V-APS-3S +T-NSF +N-NSF +T-GPM +N-GPM +T-GPM +PREP +N-GSF +N-GSM +CONJ +V-2AAI-1S +PREP +T-GSN +N-GSN +T-GSM +N-GSM +CONJ +PREP +T-GSN +N-GSN +T-GSN +N-GSN +CONJ +PREP +T-GSN +N-GSN +T-GSM +N-GSM +N-APN +A-APN +A-APN +ADV +N-NPM +CONJ +V-PAI-3P +N-NPN +N-GPN +V-PAP-NPN +N-APN +R-NPN +V-PNI-3S +PREP +T-APM +N-APM +T-GSF +N-GSF +A-GSF +V-2AAN +P-APM +PREP +T-ASM +N-ASM +T-GSF +N-GSF +T-GSF +A-GSF +T-GSM +N-GSM +T-GSM +N-GSM +V-2AMM-2S +V-PNI-1S +ADV +N-NSM +A-NSM +T-NSM +V-PAP-NSM +CONJ +V-PAP-NSM +T-APN +N-APN +P-GSM +CONJ +PRT-N +A-NSM +V-PAS-3S +CONJ +V-PAS-3P +T-ASF +N-ASF +P-GSM +CONJ +V-2AAI-3S +P-APM +PREP +T-ASM +N-ASM +T-ASM +V-PPP-ASM +ADV +N-PRI +CONJ +T-NSM +A-NSM +V-AAI-3S +T-ASF +N-ASF +P-GSM +PREP +T-ASM +N-ASM +CONJ +V-2AAI-3S +N-NSF +A-NSF +PREP +T-GSM +N-GSM +PREP +T-GSM +N-GSM +V-PAP-NSF +V-2RAI-3S +CONJ +V-2ADI-3P +N-NPF +CONJ +N-NPF +CONJ +N-NPF +CONJ +N-NSM +A-NSM +V-2ADI-3S +K-NSM +PRT-N +V-2ADI-3S +PREP +R-GSM +N-NSM +V-2ADI-3S +PREP +T-GSF +N-GSF +D-NSM +N-NSM +ADV +A-NSM +CONJ +V-2ADI-3S +T-NSF +N-NSF +T-NSF +A-NSF +PREP +A-APN +N-APN +CONJ +T-NPF +N-NPF +T-GPN +N-GPN +V-2AAI-3P +CONJ +N-NSF +T-NSF +A-NSF +V-API-3S +PREP +T-GSM +N-GSM +V-2AAN +P-DSF +T-ASN +N-ASN +T-GSM +N-GSM +T-GSM +N-GSM +T-GSF +N-GSF +P-GSM +CONJ +A-NSF +N-NSF +V-2AAI-3S +CONJ +N-NPN +PRT-N +V-API-3P +CONJ +N-NSF +A-NSF +ADV +A-NSF +V-PAI-3S +PREP +T-GSM +N-GSM +PREP +T-APM +N-APM +CONJ +V-AAI-3P +T-NPM +N-NPM +T-ASM +N-ASM +PREP +T-GSF +N-GSF +T-GSF +N-GSF +CONJ +A-NSF +V-PAI-3S +T-NSF +N-NSF +P-GSF +ADV +CONJ +V-2AAI-3S +A-NSM +PREP +T-GPM +A-NUI +N-GPM +T-GPM +V-PAP-GPM +T-APF +A-NUI +N-APF +CONJ +V-AAI-3S +PREP +P-1GS +V-PAP-NSM +V-PAM-2S +V-FAI-1S +P-2DS +T-ASN +N-ASN +T-GSF +N-GSF +T-GSF +A-GSF +T-GSF +V-PNP-GSF +PREP +N-GPN +A-GPN +PREP +R-GSF +V-AAI-3P +T-NPM +N-NPM +T-GSF +N-GSF +CONJ +V-API-3P +T-NPM +V-PAP-NPM +T-ASF +N-ASF +PREP +T-GSM +N-GSM +T-GSF +N-GSF +P-GSF +CONJ +V-AAI-3S +P-1AS +PREP +A-ASF +PREP +N-DSN +CONJ +V-2AAI-1S +N-ASF +V-PNP-ASF +PREP +N-ASN +A-ASN +V-PAP-APN +N-APN +N-GSF +V-PAP-NSM +N-APF +A-NUI +CONJ +N-APN +A-NUI +CONJ +T-NSF +N-NSF +V-IAI-3S +V-RPP-NSF +A-ASN +CONJ +A-ASN +CONJ +V-RPP-NSF +N-DSN +CONJ +N-DSM +A-DSM +CONJ +N-DPM +V-PAP-NSF +PREP +T-DSF +N-DSF +P-GSF +N-ASN +A-ASN +V-PAP-ASN +N-GPN +CONJ +T-APN +A-APN +T-GSF +N-GSF +P-GSF +CONJ +PREP +T-ASN +N-ASN +P-GSF +V-RPP-NSN +N-NSN +N-NSN +N-NSF +T-NSF +A-NSF +T-NSF +N-NSF +T-GPF +N-GPF +CONJ +T-GPN +N-GPN +T-GSF +N-GSF +CONJ +V-2AAI-1S +T-ASF +N-ASF +V-PAP-ASF +PREP +T-GSN +N-GSN +T-GPM +A-GPM +CONJ +PREP +T-GSN +N-GSN +T-GPM +N-GPM +N-GSM +CONJ +V-AAI-1S +V-2AAP-NSM +P-ASF +N-ASN +A-ASN +CONJ +V-2AAI-3S +P-1DS +T-NSM +N-NSM +PREP +I-ASN +V-AAI-2S +P-1NS +V-FAI-1S +P-2DS +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +T-GSN +N-GSN +T-GSN +V-PAP-GSN +P-ASF +T-GSN +V-PAP-GSN +T-APF +A-NUI +N-APF +CONJ +T-APN +A-NUI +N-APN +T-NSN +N-NSN +R-ASN +V-2AAI-2S +V-IAI-3S +CONJ +PRT-N +V-PAI-3S +CONJ +V-PAI-3S +V-PAN +PREP +T-GSF +N-GSF +CONJ +PREP +N-ASF +V-PAI-3S +CONJ +V-FPI-3P +T-NPM +V-PAP-NPM +PREP +T-GSF +N-GSF +R-GPM +T-NSN +N-NSN +PRT-N +V-RPI-3S +PREP +T-ASN +N-ASN +T-GSF +N-GSF +PREP +N-GSF +N-GSM +V-PAP-GPM +T-NSN +N-NSN +CONJ +V-IAI-3S +CONJ +PRT-N +V-PAI-3S +CONJ +V-FDI-3S +ADV +T-NSM +N-NSM +T-NSM +V-PAP-NSM +N-ASF +T-NPF +A-NUI +N-NPF +A-NUI +N-NPN +V-PAI-3P +ADV +T-NSF +N-NSF +V-PNI-3S +PREP +P-GPN +CONJ +N-NPM +A-NUI +V-PAI-3P +T-NPM +A-NUI +V-2AAI-3P +T-NSM +A-NSM +V-PAI-3S +T-NSM +A-NSM +ADV-N +V-2AAI-3S +CONJ +CONJ +V-2AAS-3S +ADV +P-ASM +V-AAN +V-PAI-3S +CONJ +T-NSN +N-NSN +R-NSN +V-IAI-3S +CONJ +PRT-N +V-PAI-3S +CONJ +P-NSM +A-NSM +V-PAI-3S +CONJ +PREP +T-GPM +A-NUI +V-PAI-3S +CONJ +PREP +N-ASF +V-PAI-3S +CONJ +T-NPN +A-NUI +N-NPN +R-APN +V-2AAI-2S +V-PAI-3P +A-NUI +N-NPM +R-NPM +N-ASF +ADV-N +V-2AAI-3P +CONJ +N-ASF +ADV +N-NPM +A-ASF +N-ASF +V-PAI-3P +PREP +T-GSN +N-GSN +D-NPM +A-ASF +N-ASF +V-PAI-3P +CONJ +T-ASF +N-ASF +CONJ +N-ASF +P-GPM +T-DSN +N-DSN +V-PAI-3P +D-NPM +PREP +T-GSN +N-GSN +V-FAI-3P +CONJ +T-NSN +N-NSN +V-FAI-3S +P-APM +CONJ +V-PAI-3S +N-NSM +N-GPM +CONJ +N-NSM +N-GPM +CONJ +T-NPM +PREP +P-GSM +A-NPM +CONJ +A-NPM +CONJ +A-NPM +CONJ +V-PAI-3S +P-1DS +T-NPN +N-NPN +R-APN +V-2AAI-2S +ADV +T-NSF +N-NSF +V-PNI-3S +V-PAI-3P +N-NPM +CONJ +N-NPM +CONJ +N-NPN +CONJ +N-NPF +CONJ +T-NPN +A-NUI +N-NPN +R-APN +V-2AAI-2S +CONJ +T-NSN +N-NSN +D-NPM +V-FAI-3P +T-ASF +N-ASF +CONJ +V-FAI-3P +P-ASF +V-RPP-ASF +CONJ +A-ASF +CONJ +T-APF +N-APF +P-GSF +V-FDI-3P +CONJ +P-ASF +V-FAI-3P +PREP +N-DSN +CONJ +T-NSM +N-NSM +V-AAI-3S +PREP +T-APF +N-APF +P-GPM +V-AAN +T-ASF +N-ASF +P-GSM +CONJ +V-AAN +A-ASF +N-ASF +CONJ +V-2AAN +T-ASF +N-ASF +P-GPM +T-DSN +N-DSN +ADV +V-FPI-3P +T-NPM +N-NPM +T-GSM +N-GSM +CONJ +T-NSF +N-NSF +R-ASF +V-2AAI-2S +V-PAI-3S +T-NSF +N-NSF +T-NSF +A-NSF +T-NSF +V-PAP-NSF +N-ASF +PREP +T-GPM +N-GPM +T-GSF +N-GSF +PREP +D-APN +V-2AAI-1S +A-ASM +N-ASM +V-PAP-ASM +PREP +T-GSM +N-GSM +V-PAP-ASM +N-ASF +A-ASF +CONJ +T-NSF +N-NSF +V-API-3S +PREP +T-GSF +N-GSF +P-GSM +CONJ +V-AAI-3S +PREP +A-DSF +N-DSF +V-PAP-NSM +V-2AAI-3S +V-2AAI-3S +N-NSF +T-NSF +A-NSF +CONJ +V-2ADI-3S +N-NSN +N-GPN +CONJ +N-NSF +A-GSN +N-GSN +A-GSN +CONJ +N-NSF +A-GSN +N-GSN +A-GSN +CONJ +V-RPP-GSN +CONJ +PREP +T-GSM +N-GSM +T-GSM +N-GSM +T-GSF +N-GSF +P-GSF +V-RAI-3P +A-NPN +T-NPN +N-NPN +CONJ +T-NPM +N-NPM +T-GSF +N-GSF +PREP +P-GSF +V-AAI-3P +CONJ +T-NPM +N-NPM +T-GSF +N-GSF +PREP +T-GSF +N-GSF +T-GSN +N-GSN +P-GSF +V-AAI-3P +CONJ +V-AAI-1S +A-ASF +N-ASF +PREP +T-GSM +N-GSM +V-PAP-ASF +T-NSM +N-NSM +P-1GS +V-2AAM-2P +PREP +P-GSF +CONJ +PRT-N +V-AAS-2P +T-DPF +N-DPF +P-GSF +CONJ +CONJ +PREP +T-GPF +N-GPF +P-GSF +PRT-N +V-2AAS-2P +CONJ +V-API-3P +P-GSF +T-NPF +N-NPF +ADV +T-GSM +N-GSM +CONJ +V-AAI-3S +T-NSM +N-NSM +T-APN +N-APN +P-GSF +V-2AAM-2P +P-DSF +ADV +CONJ +P-NSF +V-AAI-3S +CONJ +V-AAM-2P +T-APN +A-APN +PREP +T-APN +N-APN +P-GSF +PREP +T-DSN +N-DSN +R-DSN +V-AAI-3S +V-AAM-2P +P-DSF +A-ASN +K-APN +V-AAI-3S +P-ASF +CONJ +V-AAI-3S +D-ASM +N-ASM +CONJ +N-ASN +V-2AAM-2P +P-DSF +CONJ +PREP +T-DSF +N-DSF +P-GSF +V-PAI-3S +CONJ +V-PNI-1S +N-NSF +CONJ +N-NSF +PRT-N +V-PAI-1S +CONJ +N-ASN +PRT-N +PRT-N +V-2AAS-1S +PREP +D-ASN +PREP +A-DSF +N-DSF +V-FAI-3P +T-NPF +N-NPF +P-GSF +N-NSM +CONJ +N-NSN +CONJ +N-NSM +CONJ +PREP +N-DSN +V-FPI-3S +CONJ +A-NSM +N-NSM +T-NSM +N-NSM +T-NSM +V-AAP-NSM +P-ASF +CONJ +V-FAI-3P +CONJ +V-FDI-3P +PREP +P-ASF +T-NPM +N-NPM +T-GSF +N-GSF +T-NPM +PREP +P-GSF +V-AAP-NPM +CONJ +V-AAP-NPM +CONJ +V-PAS-3P +T-ASM +N-ASM +T-GSF +N-GSF +P-GSF +PREP +ADV +V-RAP-NPM +PREP +T-ASM +N-ASM +T-GSM +N-GSM +P-GSF +V-PAP-NPM +INJ +INJ +T-NSF +N-NSF +T-NSF +A-NSF +N-NSF +T-NSF +N-NSF +T-NSF +A-NSF +CONJ +A-DSF +N-DSF +V-2AAI-3S +T-NSF +N-NSF +P-2GS +CONJ +T-NPM +N-NPM +T-GSF +N-GSF +V-PAI-3P +CONJ +V-PAI-3P +PREP +P-ASF +CONJ +A-NSM-N +V-PAI-3S +ADV-N +T-ASM +N-ASM +P-GPM +N-ASM +N-GSM +CONJ +N-GSM +CONJ +N-GSM +A-GSM +CONJ +N-GPM +CONJ +A-GSN +CONJ +N-GSF +CONJ +A-GSN +CONJ +A-GSN +CONJ +A-ASN +N-ASN +A-ASN +CONJ +A-ASN +N-ASN +A-ASN +CONJ +A-ASN +N-ASN +PREP +N-GSN +A-GSN-S +CONJ +N-GSM +CONJ +N-GSM +CONJ +N-GSM +CONJ +N-ASN +CONJ +N-ASN +CONJ +N-APN +CONJ +N-ASN +CONJ +N-ASM +CONJ +N-ASM +CONJ +N-ASN +CONJ +N-ASF +CONJ +N-ASM +CONJ +N-APN +CONJ +N-APN +CONJ +N-GPM +CONJ +N-GPF +CONJ +N-GPN +CONJ +N-APF +N-GPM +CONJ +T-NSF +N-NSF +P-2GS +T-GSF +N-GSF +T-GSF +N-GSF +V-2AAI-3S +PREP +P-2GS +CONJ +A-NPN +T-NPN +A-NPN +CONJ +T-NPN +A-NPN +V-2AMI-3S +PREP +P-2GS +CONJ +ADV-N +PRT-N +PRT-N +P-APN +V-FAI-3P +T-NPM +N-NPM +D-GPN +T-NPM +V-AAP-NPM +PREP +P-GSF +PREP +ADV +V-FDI-3P +PREP +T-ASM +N-ASM +T-GSM +N-GSM +P-GSF +V-PAP-NPM +CONJ +V-PAP-NPM +V-PAP-NPM +INJ +INJ +T-NSF +N-NSF +T-NSF +A-NSF +T-NSF +V-RPP-NSF +A-ASN +CONJ +A-ASN +CONJ +A-ASN +CONJ +V-RPP-NSF +PREP +N-DSN +CONJ +N-DSM +A-DSM +CONJ +N-DSM +CONJ +A-DSF +N-DSF +V-API-3S +T-NSM +D-NSM +N-NSM +CONJ +A-NSM +N-NSM +CONJ +A-NSM +T-NSM +PREP +N-ASM +V-PAP-NSM +CONJ +N-NPM +CONJ +K-NPM +T-ASF +N-ASF +V-PNI-3P +PREP +ADV +V-2AAI-3P +CONJ +V-IAI-3P +V-PAP-NPM +T-ASM +N-ASM +T-GSF +N-GSF +P-GSF +V-PAP-NPM +I-NSF +A-NSF +T-DSF +N-DSF +T-DSF +A-DSF +CONJ +V-2AAI-3P +N-ASM +PREP +T-APF +N-APF +P-GPM +CONJ +V-IAI-3P +V-PAP-NPM +CONJ +V-PAP-NPM +V-PAP-NPM +INJ +INJ +T-NSF +N-NSF +T-NSF +A-NSF +PREP +R-DSF +V-AAI-3P +A-NPM +T-NPM +V-PAP-NPM +T-APN +N-APN +PREP +T-DSF +N-DSF +PREP +T-GSF +N-GSF +P-GSF +CONJ +A-DSF +N-DSF +V-API-3S +V-PPM-2S +PREP +P-DSF +N-VSM +CONJ +T-NPM +A-NPM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +V-AAI-3S +T-NSM +N-NSM +T-ASN +N-ASN +P-2GP +PREP +P-GSF +CONJ +V-AAI-3S +A-NSM +N-NSM +A-NSM +N-ASM +ADV +A-ASM +A-ASM +CONJ +V-2AAI-3S +PREP +T-ASF +N-ASF +V-PAP-NSM +ADV +N-DSN +V-FPI-3S +N-NSF +T-NSF +A-NSF +N-NSF +CONJ +PRT-N +PRT-N +V-APS-3S +ADV +CONJ +N-NSF +N-GPM +CONJ +A-GPM +CONJ +N-GPM +CONJ +N-GPM +PRT-N +PRT-N +V-APS-3S +PREP +P-2DS +ADV +CONJ +A-NSM +N-NSM +A-GSF +N-GSF +PRT-N +PRT-N +V-APS-3S +PREP +P-2DS +ADV +CONJ +N-NSF +N-GSM +PRT-N +PRT-N +V-APS-3S +PREP +P-2DS +ADV +CONJ +N-NSN +N-GSM +PRT-N +PRT-N +V-2AAS-3S +PREP +P-2DS +ADV +CONJ +N-NSF +N-GSM +CONJ +N-GSF +PRT-N +PRT-N +V-APS-3S +PREP +P-2DS +ADV +CONJ +T-NPM +N-NPM +P-2GS +V-IAI-3P +T-NPM +N-NPM-S +T-GSF +N-GSF +CONJ +PREP +T-DSF +N-DSF +P-2GS +V-API-3P +A-NPN +T-NPN +N-NPN +CONJ +PREP +P-DSF +V-API-3S +N-NSN +N-GPM +CONJ +A-GPM +CONJ +A-GPM +T-GPM +V-RPP-GPM +PREP +T-GSF +N-GSF +PREP +D-APN +V-AAI-1S +ADV +N-ASF +A-ASF +N-GSM +A-GSM +PREP +T-DSM +N-DSM +V-PAP-GPM +HEB +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +P-1GP +CONJ +A-NPF +CONJ +A-NPF +T-NPF +N-NPF +P-GSM +CONJ +V-AAI-3S +T-ASF +N-ASF +T-ASF +A-ASF +R-NSF +V-IAI-3S +T-ASF +N-ASF +PREP +T-DSF +N-DSF +P-GSF +CONJ +V-AAI-3S +T-ASN +N-ASN +T-GPM +N-GPM +P-GSM +PREP +N-GSF +P-GSF +CONJ +ADV +V-RAI-3P-ATT +HEB +CONJ +T-NSM +N-NSM +P-GSF +V-PAI-3S +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-2AAI-3P +T-NPM +A-NPM-C +T-NPM +A-NUI +A-NPM +CONJ +T-NPN +A-NPN +N-NPN +CONJ +V-AAI-3P +T-DSM +N-DSM +T-DSM +V-PNP-DSM +PREP +T-DSM +N-DSM +V-PAP-NPM +HEB +HEB +CONJ +N-NSF +PREP +T-GSM +N-GSM +V-2AAI-3S +V-PAP-NSF +V-PAM-2P +T-DSM +N-DSM +P-1GP +A-NPM +T-NPM +N-NPM +P-GSM +T-NPM +V-PNP-NPM +P-ASM +T-NPM +A-NPM +CONJ +T-NPM +A-NPM +CONJ +V-AAI-1S +ADV +N-ASF +N-GSM +A-GSM +CONJ +ADV +N-ASF +N-GPN +A-GPN +CONJ +ADV +N-ASF +N-GPF +A-GPF +V-PAP-GPM +HEB +CONJ +V-AAI-3S +N-NSM +T-NSM +N-NSM +P-1GP +T-NSM +N-NSM +V-PAS-1P +CONJ +V-PAS-1P +CONJ +V-FAI-1P +T-ASF +N-ASF +P-DSM +CONJ +V-2AAI-3S +T-NSM +N-NSM +T-GSN +N-GSN +CONJ +T-NSF +N-NSF +P-GSN +V-AAI-3S +F-3ASF +CONJ +V-API-3S +P-DSF +CONJ +V-2AMS-3S +A-ASN +A-ASN +A-ASN +CONJ +T-NSN +A-NSN +T-NPN +N-NPN +T-GPM +A-GPM +V-PAI-3S +CONJ +V-PAI-3S +P-1DS +V-AAM-2S +A-NPM +T-NPM +PREP +T-ASN +N-ASN +T-GSM +N-GSM +T-GSN +N-GSN +V-RPP-NPM +CONJ +V-PAI-3S +P-1DS +D-NPM +T-NPM +N-NPM +A-NPM +T-GSM +N-GSM +V-PAI-3P +CONJ +V-2AAI-1S +PREP +T-GPM +N-GPM +P-GSM +V-AAN +P-DSM +CONJ +V-PAI-3S +P-1DS +V-PAM-2S +PRT-N +V-PAI-1S +N-NSM +P-2GS +CONJ +T-GPM +N-GPM +P-2GS +T-GPM +V-PAP-GPM +T-ASF +N-ASF +N-GSM +T-DSM +N-DSM +V-AAM-2S +CONJ +T-NSF +N-NSF +N-GSM +V-PAI-3S +T-NSN +N-NSN +T-GSF +N-GSF +CONJ +V-2AAI-1S +T-ASM +N-ASM +V-RPP-ASM +CONJ +V-2AMM-2S +N-NSM +A-NSM +CONJ +T-NSM +V-PNP-NSM +PREP +P-ASM +V-PPP-NSM +A-NSM +CONJ +A-NSM +CONJ +PREP +N-DSF +V-PAI-3S +CONJ +V-PAI-3S +CONJ +T-NPM +N-NPM +P-GSM +N-NSF +N-GSN +CONJ +PREP +T-ASF +N-ASF +P-GSM +N-NPN +A-NPN +V-PAP-NSM +N-ASN +V-RPP-ASN +R-ASN +A-NSM-N +V-RAI-3S +COND +PRT-N +P-NSM +CONJ +V-RPP-NSM +N-ASN +V-RPP-ASN +N-DSN +CONJ +V-RPI-3S +T-NSN +N-NSN +P-GSM +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +T-NPN +N-NPN +T-NPN +PREP +T-DSM +N-DSM +V-IAI-3S +P-DSM +PREP +N-DPM +A-DPM +V-RMP-NPM +A-ASN +A-ASN +A-ASN +CONJ +PREP +T-GSN +N-GSN +P-GSM +V-PNI-3S +N-NSF +A-NSF +CONJ +PREP +P-DSF +V-AAS-3S +T-APN +N-APN +CONJ +P-NSM +V-FAI-3S +P-APM +PREP +N-DSF +A-DSF +CONJ +P-NSM +V-PAI-3S +T-ASF +N-ASF +T-GSM +N-GSM +T-GSM +N-GSM +T-GSF +N-GSF +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +V-PAI-3S +PREP +T-ASN +N-ASN +CONJ +PREP +T-ASM +N-ASM +P-GSM +N-ASN +V-RPP-ASN +N-NSM +N-GPM +CONJ +N-NSM +N-GPM +CONJ +V-2AAI-1S +A-ASM +N-ASM +V-RAP-ASM +PREP +T-DSM +N-DSM +CONJ +V-AAI-3S +PREP +N-DSF +A-DSF +V-PAP-NSM +A-DPN +T-DPN +N-DPN +T-DPN +V-PNP-DPN +PREP +N-DSN +V-PAM-2P +V-APM-2P +PREP +T-ASN +N-ASN +T-ASN +A-ASN +T-GSM +N-GSM +CONJ +V-2AAS-2P +N-APF +N-GPM +CONJ +N-APF +N-GPM +CONJ +N-APF +A-GPM +CONJ +N-APF +N-GPM +CONJ +T-GPM +V-PNP-GPM +PREP +P-GPM +CONJ +N-APF +A-GPM +PRT +A-GPM +CONJ +N-GPM +CONJ +A-GPM +CONJ +A-GPM +CONJ +V-2AAI-1S +T-ASN +N-ASN +CONJ +T-APM +N-APM +T-GSF +N-GSF +CONJ +T-APN +N-APN +P-GPM +V-RPP-APN +V-AAN +T-ASM +N-ASM +PREP +T-GSM +V-PNP-GSM +PREP +T-GSM +N-GSM +CONJ +PREP +T-GSN +N-GSN +P-GSM +CONJ +V-API-3S +T-NSN +N-NSN +CONJ +PREP +P-GSN +T-NSM +N-NSM +T-NSM +V-AAP-NSM +T-APN +N-APN +PREP +P-GSN +PREP +R-DPN +V-AAI-3S +T-APM +V-2AAP-APM +T-ASN +N-ASN +T-GSN +N-GSN +CONJ +T-APM +V-PAP-APM +T-DSF +N-DSF +P-GSN +V-PAP-NPM +V-API-3P +T-NPM +A-NUI +PREP +T-ASF +N-ASF +T-GSN +N-GSN +T-GSF +V-PPP-GSF +PREP +N-DSN +CONJ +T-NPM +A-NPM +V-API-3P +PREP +T-DSF +N-DSF +T-GSM +V-PNP-GSM +PREP +T-GSM +N-GSM +T-DSF +V-2AAP-DSF +PREP +T-GSN +N-GSN +P-GSM +CONJ +A-NPN +T-NPN +N-NPN +V-API-3P +PREP +T-GPF +N-GPF +P-GPM +CONJ +V-2AAI-1S +N-ASM +V-PAP-ASM +PREP +T-GSM +N-GSM +V-PAP-ASM +T-ASF +N-ASF +T-GSF +N-GSF +CONJ +N-ASF +A-ASF +PREP +T-ASF +N-ASF +P-GSM +CONJ +V-AAI-3S +T-ASM +N-ASM +T-NSM +N-NSM +T-NSM +A-NSM +R-NSM +V-PAI-3S +A-NSM +CONJ +T-NSM +N-NSM +CONJ +V-AAI-3S +P-ASM +A-APN +N-APN +CONJ +V-2AAI-3S +P-ASM +PREP +T-ASF +N-ASF +CONJ +V-AAI-3S +CONJ +V-AAI-3S +ADV +P-GSM +CONJ +PRT-N +V-AAS-3S +ADV +T-APN +N-APN +ADV +V-APS-3S +T-NPN +A-NPN +N-NPN +PREP +D-APN +V-PAI-3S +V-APN +P-ASM +A-ASM +N-ASM +CONJ +V-2AAI-1S +N-APM +CONJ +V-AAI-3P +PREP +P-APM +CONJ +N-NSN +V-API-3S +P-DPM +CONJ +T-APF +N-APF +T-GPM +V-RPP-GPM +PREP +T-ASF +N-ASF +N-GSM +CONJ +PREP +T-ASM +N-ASM +T-GSM +N-GSM +CONJ +R-NPM +PRT-N +V-AAI-3P +T-ASN +N-ASN +CONJ-N +T-ASF +N-ASF +P-GSM +CONJ +PRT-N +V-2AAI-3P +T-ASN +N-ASN +PREP +T-ASN +N-ASN +CONJ +PREP +T-ASF +N-ASF +P-GPM +CONJ +V-AAI-3P +CONJ +V-AAI-3P +PREP +T-GSM +N-GSM +A-APN +N-APN +T-NPM +A-NPM +T-GPM +A-GPM +PRT-N +V-AAI-3P +ADV +V-APS-3S +T-NPN +A-NPN +N-NPN +D-NSF +T-NSF +N-NSF +T-NSF +A-NSF-S +A-NSM +CONJ +A-NSM +T-NSM +V-PAP-NSM +N-ASN +PREP +T-DSF +N-DSF +T-DSF +A-DSF-S +PREP +D-GPM +T-NSM +A-NSM +N-NSM +PRT-N +V-PAI-3S +N-ASF +CONJ +V-FDI-3P +N-NPM +T-GSM +N-GSM +CONJ +T-GSM +N-GSM +CONJ +V-FAI-3P +PREP +P-GSM +T-APN +A-APN +N-APN +CONJ +CONJ +V-APS-3S +T-NPN +A-NPN +N-NPN +V-FPI-3S +T-NSM +N-NSM +PREP +T-GSF +N-GSF +P-GSM +CONJ +V-FDI-3S +V-AAN +T-APN +N-APN +T-APN +PREP +T-DPF +A-DPF +N-DPF +T-GSF +N-GSF +T-ASM +N-PRI +CONJ +N-PRI +V-2AAN +P-APM +PREP +T-ASM +N-ASM +R-GPM +T-NSM +N-NSM +P-GPM +ADV +T-NSF +N-NSF +T-GSF +N-GSF +CONJ +V-2AAI-3P +PREP +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +V-AAI-3P +T-ASF +N-ASF +T-GPM +A-GPM +CONJ +T-ASF +N-ASF +T-ASF +V-RPP-ASF +CONJ +V-2AAI-3S +N-NSN +PREP +T-GSM +N-GSM +CONJ +V-2AAI-3S +P-APM +CONJ +T-NSM +A-NSM +T-NSM +V-PAP-NSM +P-APM +V-API-3S +PREP +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +N-GSN +ADV +CONJ +T-NSN +N-NSN +CONJ +T-NSM +N-NSM +CONJ +V-FPI-3P +N-GSF +CONJ +N-GSF +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-2AAI-1S +N-ASM +A-ASM +A-ASM +CONJ +T-ASM +V-PNP-ASM +PREP +P-ASM +PREP +R-GSM +T-GSN +N-GSN +V-2AAI-3S +T-NSF +N-NSF +CONJ +T-NSM +N-NSM +CONJ +N-NSM +PRT-N +V-API-3S +P-DPM +CONJ +V-2AAI-1S +T-APM +A-APM +T-APM +A-APM +CONJ +T-APM +A-APM +V-RAP-APM +PREP +T-GSM +N-GSM +CONJ +N-NPN +V-API-3P +CONJ +A-NSN +N-NSN +V-API-3S +R-NSN +V-PAI-3S +T-GSF +N-GSF +CONJ +V-API-3P +T-NPM +A-NPM +PREP +T-GPN +V-RPP-GPN +PREP +T-DPN +N-DPN +PREP +T-APN +N-APN +P-GPM +CONJ +V-AAI-3S +T-NSF +N-NSF +T-APM +A-APM +T-APM +PREP +P-DSF +CONJ +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-AAI-3P +T-APM +A-APM +T-APM +PREP +P-DPM +CONJ +V-API-3P +A-NSM +PREP +T-APN +N-APN +P-GPM +CONJ +T-NSM +N-NSM +CONJ +T-NSM +N-NSM +V-API-3P +PREP +T-ASF +N-ASF +T-GSN +N-GSN +D-NSM +T-NSM +N-NSM +T-NSM +A-NSM +T-NSF +N-NSF +T-GSN +N-GSN +V-PAI-3S +CONJ +COND +X-NSM +PRT-N +V-API-3S +PREP +T-DSF +N-DSF +T-GSF +N-GSF +V-RPP-NSM +V-API-3S +PREP +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +V-2AAI-1S +N-ASM +A-ASM +CONJ +N-ASF +A-ASF +CONJ +T-NSM +A-NSM-S +N-NSM +CONJ +T-NSF +A-NSF-S +N-NSF +V-2AAI-3P +CONJ +T-NSF +N-NSF +PRT-N +V-PAI-3S +ADV +CONJ +V-2AAI-1S +T-ASF +N-ASF +T-ASF +A-ASF +N-PRI +A-ASF +V-PAP-ASF +PREP +T-GSM +N-GSM +PREP +T-GSM +N-GSM +V-RPP-ASF +ADV +N-ASF +V-RPP-ASF +T-DSM +N-DSM +P-GSF +CONJ +V-AAI-1S +N-GSF +A-GSF +PREP +T-GSM +N-GSM +V-PAP-GSF +V-2AMM-2S +T-NSF +N-NSF +T-GSM +N-GSM +PREP +T-GPM +N-GPM +CONJ +V-FAI-3S +PREP +P-GPM +CONJ +P-NPM +N-NPM +P-GSM +V-FDI-3P +CONJ +P-NSM +T-NSM +N-NSM +PREP +P-GPM +V-FDI-3S +CONJ +V-FAI-3S +A-ASN +N-ASN +PREP +T-GPM +N-GPM +P-GPM +CONJ +T-NSM +N-NSM +PRT-N +V-FDI-3S +ADV +CONJ-N +N-NSN +CONJ-N +N-NSF +CONJ-N +N-NSM +PRT-N +V-FDI-3S +ADV +CONJ +T-NPN +A-NPN-S +V-2AAI-3P +CONJ +V-2AAI-3S +T-NSM +V-PNP-NSM +PREP +T-DSM +N-DSM +V-2AMM-2S +A-APN +V-PAI-1S +A-APN +CONJ +V-PAI-3S +V-AAM-2S +CONJ +D-NPM +T-NPM +N-NPM +A-NPM +CONJ +A-NPM +V-PAI-3P +CONJ +V-2AAI-3S +P-1DS +V-2RAI-3P +P-1NS +T-NSN +N-LI +CONJ +T-NSN +N-LI +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +P-1NS +T-DSM +V-PAP-DSM +V-FAI-1S +PREP +T-GSF +N-GSF +T-GSN +N-GSN +T-GSF +N-GSF +ADV +T-NSM +V-PAP-NSM +V-FAI-3S +D-APN +CONJ +V-FDI-1S +P-DSM +N-NSM +CONJ +P-NSM +V-FDI-3S +P-1DS +N-NSM +CONJ +T-DPM +A-DPM +CONJ +A-DPM +CONJ +V-RPP-DPM +CONJ +N-DPM +CONJ +N-DPM +CONJ +N-DPM +CONJ +N-DPM +CONJ +A-DPM +T-DPM +A-DPM +T-NSN +N-NSN +P-GPM +PREP +T-DSF +N-DSF +T-DSF +V-PPP-DSF +N-DSN +CONJ +N-DSN +R-NSN +V-PAI-3S +T-NSM +N-NSM +T-NSM +A-NSM +CONJ +V-2AAI-3S +A-NSM +PREP +T-GPM +A-NUI +N-GPM +T-GPM +V-PAP-GPM +T-APF +A-NUI +N-APF +T-GPF +V-PAP-GPF +T-GPF +A-NUI +N-GPF +T-GPF +A-GPF-S +CONJ +V-AAI-3S +PREP +P-1GS +V-PAP-NSM +V-PAM-2S +V-FAI-1S +P-2DS +T-ASF +N-ASF +T-ASF +N-ASF +T-GSN +N-GSN +CONJ +V-AAI-3S +P-1AS +PREP +N-DSN +PREP +N-ASN +A-ASN +CONJ +A-ASN +CONJ +V-AAI-3S +P-1DS +T-ASF +N-ASF +T-ASF +A-ASF +N-PRI +V-PAP-ASF +PREP +T-GSM +N-GSM +PREP +T-GSM +N-GSM +V-PAP-ASF +T-ASF +N-ASF +T-GSM +N-GSM +T-NSM +N-NSM +P-GSF +A-NSM +N-DSM +A-DSM-S +ADV +N-DSM +N-DSF +V-PAP-DSM +V-PAP-NSF +N-ASN +A-ASN +CONJ +A-ASN +V-PAP-NSF +N-APM +A-NUI +CONJ +PREP +T-DPM +N-DPM +N-APM +A-NUI +CONJ +V-RPP-APN +N-APN +R-NPN +V-PAI-3S +T-GPF +A-NUI +N-GPF +N-GPM +N-PRI +PREP +N-GSF +N-NPM +A-NPM +CONJ +PREP +N-GSM +N-NPM +A-NPM +CONJ +PREP +N-GSM +N-NPM +A-NPM +CONJ +PREP +N-GPF +N-NPM +A-NPM +CONJ +T-NSN +N-NSN +T-GSF +N-GSF +V-PAP-NSM +N-APM +A-NUI +CONJ +PREP +P-GPM +A-NUI +N-APN +T-GPM +A-NUI +N-GPM +T-GSN +N-GSN +CONJ +T-NSM +V-PAP-NSM +PREP +P-1GS +V-IAI-3S +N-ASN +N-ASM +A-ASM +CONJ +V-AAS-3S +T-ASF +N-ASF +CONJ +T-APM +N-APM +P-GSF +CONJ +T-ASN +N-ASN +P-GSF +CONJ +T-NSF +N-NSF +A-NSF +V-PNI-3S +CONJ +T-NSN +N-NSN +P-GSF +K-NSN +T-NSN +N-NSN +CONJ +V-AAI-3S +T-ASF +N-ASF +T-DSM +N-DSM +PREP +N-GPM +A-NUI +N-GPF +T-NSN +N-NSN +CONJ +T-NSN +N-NSN +CONJ +T-NSN +N-NSN +P-GSF +A-NPN +V-PAI-3S +CONJ +V-AAI-3S +T-ASN +N-ASN +P-GSF +A-NUI +A-NUI +A-GPM +N-GPM +N-ASN +N-GSM +R-NSN +V-PAI-3S +N-GSM +CONJ +T-NSF +N-NSF +T-GSN +N-GSN +P-GSF +N-NSF +CONJ +T-NSF +N-NSF +N-NSN +A-NSN +A-NSN +N-DSM +A-DSM +T-NPM +N-NPM +T-GSN +N-GSN +T-GSF +N-GSF +A-DSM +N-DSM +A-DSM +V-RPP-NPM +T-NSM +N-NSM +T-NSM +A-NSM-S +N-NSF +T-NSM +A-NSM +N-NSF +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSN +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSN +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSM +T-NSM +A-NSM +N-NSF +CONJ +T-NPM +A-NUI +N-NPM +A-NUI +N-NPM +PREP +A-NSM +A-NSM +T-GPM +N-GPM +V-IAI-3S +PREP +A-GSM +N-GSM +CONJ +T-NSF +N-NSF +T-GSF +N-GSF +N-NSN +A-NSN +ADV +N-NSM +A-NSM +CONJ +N-ASM +PRT-N +V-2AAI-1S +PREP +P-DSF +CONJ +T-NSM +N-NSM +T-NSM +N-NSM +T-NSM +N-NSM +CONJ +T-NSN +N-NSN +N-NSM +P-GSF +V-PAI-3S +CONJ +T-NSF +N-NSF +PRT-N +V-PAI-3S +N-ASF +T-GSM +N-GSM +CONJ-N +T-GSF +N-GSF +CONJ +V-PAS-3P +P-DSF +CONJ +T-NSF +N-NSF +T-GSM +N-GSM +V-AAI-3S +P-ASF +CONJ +T-NSM +N-NSM +P-GSF +T-NSN +N-NSN +CONJ +V-FAI-3P +T-NPN +N-NPN +PREP +T-GSN +N-GSN +P-GSF +CONJ +T-NPM +N-NPM +T-GSF +N-GSF +V-PAI-3P +T-ASF +N-ASF +P-GPM +PREP +P-ASF +CONJ +T-NPM +N-NPM +P-GSF +PRT-N +PRT-N +V-APS-3P +N-GSF +CONJ +N-NSF +PRT-N +V-FDI-3S +ADV +CONJ +V-FAI-3P +T-ASF +N-ASF +CONJ +T-ASF +N-ASF +T-GPN +N-GPN +PREP +P-ASF +CONJ +PRT-N +PRT-N +V-2AAS-3S +PREP +P-ASF +A-NSN +A-NSN +CONJ +T-NSM +V-PAP-NSM +N-ASN +CONJ +N-ASN +COND +PRT-N +T-NPM +V-RPP-NPM +PREP +T-DSN +N-DSN +T-GSF +N-GSF +T-GSN +N-GSN +CONJ +V-AAI-3S +P-1DS +N-ASM +N-GSN +N-GSF +A-ASM +ADV +N-ASM +V-PNP-ASM +PREP +T-GSM +N-GSM +T-GSM +N-GSM +CONJ +T-GSN +N-GSN +PREP +A-DSN +T-GSF +N-GSF +P-GSF +CONJ +T-GSM +N-GSM +ADV +CONJ +ADV +N-NSN +N-GSF +V-PAP-NSN +N-APM +A-NUI +PREP +N-ASM +A-ASM +V-PAP-NSN +T-ASM +N-ASM +P-GSN +CONJ +T-NPN +N-NPN +T-GSN +N-GSN +PREP +N-ASF +T-GPN +N-GPN +CONJ +A-NSN +N-NSN +PRT-N +V-FDI-3S +ADV +CONJ +T-NSM +N-NSM +T-GSM +N-GSM +CONJ +T-GSN +N-GSN +PREP +P-DSF +V-FDI-3S +CONJ +T-NPM +N-NPM +P-GSM +V-FAI-3P +P-DSM +CONJ +V-FDI-3P +T-ASN +N-ASN +P-GSM +CONJ +T-NSN +N-NSN +P-GSM +PREP +T-GPN +N-GPN +P-GPM +CONJ +N-NSF +PRT-N +V-FDI-3S +ADV +CONJ +PRT-N +V-PAI-3P +N-ASF +N-GSN +N-GSM +CONJ +N-GSN +N-GSM +CONJ +N-NSM +T-NSM +N-NSM +V-FAI-3S +PREP +P-APM +CONJ +V-FAI-3P +PREP +T-APM +N-APM +T-GPM +N-GPM +CONJ +V-2AAI-3S +P-1DS +D-NPM +T-NPM +N-NPM +A-NPM +CONJ +A-NPM +CONJ +T-NSM +N-NSM +T-NSM +N-NSM +T-GPN +N-GPN +T-GPM +N-GPM +V-AAI-3S +T-ASM +N-ASM +P-GSM +V-AAN +T-DPM +N-DPM +P-GSM +R-APN +V-2ADN +PREP +N-DSN +V-PAI-3S +CONJ +V-2AMM-2S +V-PNI-1S +ADV +A-NSM +T-NSM +V-PAP-NSM +T-APM +N-APM +T-GSF +N-GSF +T-GSN +N-GSN +D-GSN +P-1NS-K +N-NSM +T-NSM +V-PAP-NSM +CONJ +V-PAP-NSM +D-APN +CONJ +ADV +V-AAI-1S +CONJ +V-AAI-1S +V-2AAI-1S +V-AAN +PREP +T-GPM +N-GPM +T-GSM +N-GSM +T-GSM +V-PAP-GSM +P-1DS +D-APN +CONJ +V-PAI-3S +P-1DS +V-PAM-2S +PRT-N +V-PAI-1S +N-NSM +P-2GS +CONJ +T-GPM +N-GPM +P-2GS +T-GPM +N-GPM +CONJ +T-GPM +V-PAP-GPM +T-APM +N-APM +T-GSN +N-GSN +D-GSN +T-DSM +N-DSM +V-AAM-2S +CONJ +V-PAI-3S +P-1DS +PRT-N +V-AAS-2S +T-APM +N-APM +T-GSF +N-GSF +T-GSN +N-GSN +D-GSN +CONJ +T-NSM +N-NSM +ADV +V-PAI-3S +T-NSM +V-PAP-NSM +V-AAM-3S +ADV +CONJ +T-NSM +A-NSM +V-APM-3S +ADV +CONJ +T-NSM +A-NSM +N-ASF +V-AAM-3S +ADV +CONJ +T-NSM +A-NSM +V-APM-3S +ADV +V-2AMM-2S +V-PNI-1S +ADV +CONJ +T-NSM +N-NSM +P-1GS +PREP +P-1GS +V-2AAN +A-DSM +ADV +T-NSN +N-NSN +P-GSM +V-PAI-3S +P-1NS +T-NSN +N-LI +CONJ +T-NSN +N-LI +T-NSM +A-NSM-S +CONJ +T-NSM +A-NSM-S +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +A-NPM +T-NPM +V-PAP-NPM +T-APF +N-APF +P-GPM +CONJ +V-FDI-3S +T-NSF +N-NSF +P-GPM +PREP +T-ASN +N-ASN +T-GSF +N-GSF +CONJ +T-DPM +N-DPM +V-2AAS-3P +PREP +T-ASF +N-ASF +ADV +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +T-NPM +N-NPM +CONJ +A-NSM +V-PAP-NSM +CONJ +V-PAP-NSM +N-ASN +P-1NS +N-NSM +V-AAI-1S +T-ASM +N-ASM +P-1GS +V-AAN +P-2DP +D-APN +PREP +T-DPF +N-DPF +P-1NS +V-PAI-1S +T-NSF +N-NSF +CONJ +T-NSN +N-NSN +N-PRI +T-NSM +N-NSM +T-NSM +A-NSM +T-NSM +A-NSM +CONJ +T-NSN +N-NSN +CONJ +T-NSF +N-NSF +V-PAI-3P +V-PNM-2S +CONJ +T-NSM +V-PAP-NSM +V-2AAM-3S +V-PNM-2S +CONJ +T-NSM +V-PAP-NSM +V-PNM-3S +T-NSM +V-PAP-NSM +V-2AAM-3S +N-ASN +N-GSF +ADV +V-PAI-1S +P-1NS +A-DSM +T-DSM +V-PAP-DSM +T-APM +N-APM +T-GSF +N-GSF +T-GSN +N-GSN +D-GSN +COND +X-NSM +V-2AAS-3S +PREP +P-APN +V-FAI-3S +T-NSM +N-NSM +PREP +P-ASM +T-APF +N-APF +T-APF +V-RPP-APF +PREP +T-DSN +N-DSN +D-DSN +CONJ +COND +X-NSM +V-2AAS-3S +PREP +T-GPM +N-GPM +T-GSN +N-GSN +T-GSF +N-GSF +D-GSF +V-2FAI-3S +T-NSM +N-NSM +T-ASN +N-ASN +P-GSM +PREP +T-GSN +N-GSN +T-GSF +N-GSF +CONJ +PREP +T-GSF +N-GSF +T-GSF +A-GSF +T-GPN +V-RPP-GPN +PREP +T-DSN +N-DSN +D-DSN +V-PAI-3S +T-NSM +V-PAP-NSM +D-APN +PRT +V-PNI-1S +ADV +HEB +V-PNM-2S +N-VSM +N-VSM +T-NSF +N-NSF +T-GSM +N-GSM +N-GSM +PREP +A-GPM diff --git a/tf/0.1.1/nodeId.tf b/tf/0.1.1/nodeId.tf new file mode 100644 index 0000000..21d2c36 --- /dev/null +++ b/tf/0.1.1/nodeId.tf @@ -0,0 +1,5572 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Node ID (as in the XML source data +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=int +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +154255 400010200010490 +154259 400010200120390 +154262 400010200130100 +154280 400010210050150 +154302 400010220140230 +400010230010220 +154358 400020010140270 +154361 400020020010200 +154405 400020050010370 +154412 400020050090290 +154417 400020060030110 +154446 400020080020210 +154470 400020090080180 +154529 400020130040370 +154533 400020130120290 +154584 400020150170070 +154592 400020160030060 +154628 400020170090210 +400020180020200 +154640 400020180150060 +154649 400020190050320 +154654 400020200010220 +154692 400020220010110 +154712 400020230020160 +154738 400030020010080 +154754 400030030100150 +154757 400030030120130 +154815 400030070010220 +154825 400030070140100 +154841 400030090020240 +400030090040070 +154847 400030090110140 +154882 400030110090140 +154933 400030140050120 +154943 400030150010150 +154965 400030160110040 +154976 400030170020160 +154979 400030170070110 +400030170080100 +155007 400040030020170 +155016 400040030120070 +155023 400040040010190 +155025 400040040050160 +155053 400040060020100 +155062 400040060120210 +155078 400040070010120 +155080 400040070050080 +155104 400040090020100 +155112 400040100010070 +155114 400040100060020 +155118 400040100080100 +155132 400040110070060 +155139 400040120010040 +155166 400040140090340 +400040150010330 +155189 400040160110100 +155204 400040170080080 +155238 400040190020100 +155374 400050030010120 +155384 400050040010060 +155390 400050050010080 +155396 400050060010100 +155405 400050070010060 +155410 400050080010100 +155425 400050100010120 +155449 400050120010110 +155473 400050130070070 +155515 400050160010230 +155535 400050170010100 +155561 400050180130150 +155605 400050200010220 +155607 400050200050190 +155621 400050210010150 +155623 400050210030130 +155634 400050220010380 +155647 400050220160060 +155655 400050220280030 +155663 400050230010400 +155671 400050230100100 +155694 400050250010310 +155727 400050270010050 +155729 400050270030030 +155733 400050280010190 +155747 400050290010140 +155775 400050300020130 +155802 400050310010100 +155810 400050320010220 +155828 400050330010150 +155830 400050330040120 +155841 400050340010060 +155874 400050360020140 +155900 400050380010100 +155902 400050380030080 +155916 400050390100130 +155941 400050410020090 +155957 400050430010120 +155959 400050430030100 +155970 400050440010370 +156005 400050460010080 +156019 400050470020090 +156033 400050480010110 +156053 400060010150130 +156097 400060030050100 +156129 400060050100160 +156184 400060070010060 +156190 400060070080070 +156213 400060090050240 +156241 400060120020120 +156259 400060140010150 +156272 400060150010130 +156341 400060190010180 +156354 400060200010180 +156383 400060220080120 +156393 400060230010120 +156403 400060230140110 +156438 400060250010200 +156464 400060260010230 +156503 400060280060070 +156515 400060290010140 +156517 400060290050110 +156527 400060300010210 +156546 400060310040090 +156560 400060320070100 +156595 400070010010050 +156633 400070040020130 +156644 400070040160070 +156650 400070050010210 +156721 400070090070180 +400070090070100 +156727 400070100020070 +156753 400070120010140 +156757 400070120030070 +156770 400070130010440 +156878 400070210040040 +156898 400070220010270 +156922 400070230020140 +156924 400070230060100 +400070230090070 +157049 400080020020120 +157051 400080020070070 +400080020080060 +157063 400080030070030 +157074 400080040020230 +157077 400080040060030 +157101 400080060020120 +400080060030110 +157110 400080070010060 +157115 400080080010230 +157119 400080080060100 +157146 400080090130030 +157173 400080100070140 +157186 400080110010220 +157223 400080130020100 +157292 400080170090100 +157311 400080190020110 +157314 400080190070060 +157320 400080200020250 +157340 400080210010150 +157343 400080210070100 +157353 400080220010140 +157374 400080240020140 +157390 400080250050040 +400080250060030 +157397 400080260020060 +400080260040040 +157415 400080270050130 +157453 400080290020160 +400080290040140 +157456 400080290050070 +157477 400080310060110 +157488 400080320020030 +157498 400080320130160 +157528 400080340020190 +157536 400080340120090 +157556 400090020020070 +157562 400090020110150 +157569 400090020190020 +157576 400090030020090 +157583 400090040030440 +157589 400090040090220 +157598 400090050050050 +157603 400090050110040 +157610 400090060030130 +157620 400090060160150 +157667 400090090150040 +157682 400090100090130 +157694 400090110020180 +157709 400090120010130 +157739 400090140070140 +157752 400090150020180 +157767 400090150200080 +157800 400090170080130 +157821 400090180010270 +157825 400090180110170 +157852 400090200020130 +157863 400090210010100 +157873 400090220010140 +157880 400090220090020 +157894 400090230030250 +157922 400090250010130 +157952 400090270110050 +400090270120040 +157966 400090280110090 +157968 400090280150050 +157973 400090280200040 +157981 400090290060070 +157995 400090300110040 +400090300120030 +158010 400090320040050 +158024 400090330120070 +158030 400090340010110 +158065 400090360010160 +158080 400090370010130 +158092 400090380010120 +158174 400100050090120 +158197 400100070040070 +158239 400100110040130 +158265 400100130020110 +158273 400100130140100 +158317 400100160010090 +158325 400100160100050 +158419 400100220100060 +158426 400100230010110 +158566 400100320010200 +158596 400100340010090 +158737 400110020010240 +158757 400110040020120 +158789 400110070070150 +158803 400110080020070 +158810 400110080090100 +158825 400110090060060 +158831 400110100030190 +158913 400110160140140 +158934 400110180090030 +158947 400110190100100 +158966 400110200010150 +158978 400110210010260 +400110210010030 +158981 400110210040030 +158984 400110210080190 +159001 400110220020120 +159012 400110230030060 +159021 400110230120150 +159035 400110240020120 +159045 400110250010280 +159052 400110250090090 +159085 400110270090080 +159091 400110270180150 +159104 400110280010080 +159115 400110290010230 +159166 400120020010160 +159169 400120020070110 +159177 400120030010420 +159179 400120030060380 +159197 400120040090200 +159201 400120040140150 +159215 400120050030180 +159230 400120060010080 +159265 400120100020050 +159271 400120100080110 +400120100100060 +159281 400120110010250 +159289 400120110150120 +159307 400120130010080 +159317 400120130120050 +159323 400120140010100 +159343 400120160020070 +159354 400120170090150 +400120180010140 +159389 400120200010160 +159428 400120230070070 +159435 400120240010170 +159450 400120250010220 +159470 400120260020090 +159483 400120270020130 +159497 400120280010160 +159543 400120310010180 +159610 400120340010080 +159640 400120360010170 +159642 400120360050140 +159670 400120380090070 +400120380100060 +159677 400120390010220 +159685 400120390130110 +159694 400120400010290 +159735 400120410210040 +159760 400120420260040 +159764 400120430010170 +159778 400120440010090 +159824 400120460010170 +159837 400120470010160 +400120470050130 +159848 400120480010170 +159862 400120490020170 +159880 400120500030190 +159924 400130030070070 +400130030080060 +159932 400130040020800 +160005 400130100020110 +160013 400130110010170 +160029 400130120010060 +160042 400130130010160 +160061 400130140080140 +160123 400130170010220 +160176 400130200010170 +160198 400130210100090 +160206 400130220010270 +160231 400130230010280 +160259 400130240050140 +160289 400130260010120 +160300 400130270010160 +160305 400130270090090 +160317 400130280010070 +160322 400130280090090 +160331 400130290010130 +160346 400130300080280 +160370 400130310050170 +160389 400130320080210 +160431 400130340110230 +160439 400130350080110 +400130350090100 +160458 400130360150090 +160467 400130370010130 +160484 400130380070090 +160517 400130400010140 +160564 400130430010130 +160688 400130510040030 +160692 400130520010250 +160734 400130540170090 +160763 400130560020080 +160779 400130570050180 +160810 400140020020220 +160845 400140040010090 +160884 400140080010170 +160977 400140150080220 +160986 400140150180110 +160995 400140160010120 +161004 400140170010130 +161015 400140180010060 +161134 400140260110040 +161145 400140270070060 +161153 400140280010170 +161156 400140280070120 +161167 400140290010030 +161192 400140300100040 +400140300110030 +161203 400140310110060 +400140310130040 +161221 400140330080050 +161251 400140360020100 +161268 400150010100110 +161278 400150020110070 +161284 400150030010170 +161297 400150040010170 +161313 400150050010260 +161316 400150050040130 +161342 400150070010220 +161345 400150070070160 +161363 400150100020270 +161378 400150110110090 +161386 400150120010140 +161389 400150120070080 +161397 400150130010140 +161415 400150140100080 +161421 400150150010090 +161428 400150160010070 +161433 400150170020160 +161490 400150220020200 +161496 400150220110110 +161498 400150220120050 +161514 400150230140070 +161522 400150240010140 +161539 400150250060040 +400150250070030 +161544 400150260010150 +161557 400150270010200 +161559 400150270040020 +161576 400150280010160 +161580 400150280070060 +161648 400150320010340 +161666 400150320250110 +161674 400150330020140 +161684 400150340020070 +161690 400150340090060 +161772 400160020010120 +161776 400160020080060 +161784 400160030020080 +161811 400160040080090 +161830 400160060010140 +161845 400160070060050 +161850 400160080010130 +161853 400160080060090 +161859 400160090010230 +161882 400160110010180 +161896 400160120010190 +161924 400160130150100 +161933 400160140010170 +161948 400160150010080 +161954 400160160010140 +161968 400160170010240 +161972 400160170070040 +161990 400160180010220 +162036 400160200060070 +162044 400160210060270 +162071 400160220090090 +162073 400160220100030 +162079 400160230010220 +162084 400160230070040 +162098 400160240010230 +162134 400160260010130 +162171 400160280010260 +162179 400160280100170 +162230 400170030020090 +162237 400170040010260 +162242 400170040080060 +162245 400170040140140 +162257 400170050010270 +162259 400170050040050 +162262 400170050100180 +162265 400170050150130 +162267 400170050160100 +162291 400170070060070 +162299 400170080010110 +162315 400170090110140 +162328 400170100060110 +162330 400170100070090 +162337 400170110010360 +162346 400170120010260 +162364 400170130010110 +162381 400170150020220 +162383 400170150030050 +162413 400170170010220 +162416 400170170060180 +162447 400170190010160 +162457 400170200010300 +162475 400170200190070 +162489 400170220070210 +162520 400170240140070 +162526 400170250010020 +162536 400170250120230 +162538 400170250130040 +162559 400170260010040 +162563 400170260060090 +162570 400170270010300 +162600 400180010100100 +162615 400180030020200 +162635 400180040010160 +162701 400180080010160 +162735 400180090020120 +162759 400180100010070 +162767 400180100080190 +162784 400180120040240 +162811 400180130060160 +162886 400180170080130 +162897 400180180010240 +162916 400180190020280 +162940 400180200010150 +162951 400180210010190 +162954 400180210070130 +162965 400180220010130 +162968 400180220060040 +163020 400180260070080 +163054 400180280200050 +163065 400180290080070 +163102 400180320010190 +163106 400180320090110 +163117 400180330020110 +163137 400180350010200 +163186 400190030080100 +163196 400190040010150 +163199 400190040060110 +163209 400190050020220 +163239 400190070010110 +163248 400190080010200 +163263 400190090010160 +163276 400190100010170 +163291 400190110010120 +163339 400190140010210 +163362 400190160020130 +163364 400190160070080 +163373 400190170010230 +163375 400190170050100 +163390 400190180010030 +163411 400190190080060 +163417 400190200010100 +163424 400190210010250 +163450 400190220030120 +163461 400190230010180 +163465 400190230080120 +163475 400190240010170 +163492 400190250070050 +163498 400190260010150 +163508 400190270010170 +163512 400190270070070 +163520 400190280010370 +163522 400190280060330 +163525 400190280100290 +163611 400200040020150 +163641 400200060100090 +163646 400200070010060 +163650 400200070070080 +163659 400200080040220 +163686 400200100020070 +163703 400200120010210 +163722 400200130010130 +163726 400200130070040 +163738 400200140060080 +163754 400200150110090 +163776 400200170130410 +163780 400200180010040 +163827 400200210010050 +163830 400200210070220 +400200210090200 +163850 400200220010160 +163853 400200220060120 +163862 400200220180030 +163865 400200230010280 +163897 400200250010180 +163900 400200250070130 +163914 400200260080390 +163953 400200300020180 +163959 400200300090040 +163962 400200300140060 +400200300160050 +163969 400200310010060 +163976 400200310120060 +400200310140050 +163988 400200320080050 +163992 400200330010080 +400200330030060 +164027 400210020010210 +164050 400210030070070 +164068 400210040110210 +400210050010200 +164072 400210050050160 +164138 400210090110150 +164140 400210090120100 +164160 400210100100040 +164164 400210110010130 +164202 400210130020150 +164204 400210130040070 +164244 400210150210050 +164249 400210160020060 +164255 400210160080150 +164257 400210160130110 +164294 400210190120080 +164299 400210190210110 +164313 400210200060060 +164318 400210210010330 +164336 400210210240100 +164369 400210230170130 +164380 400210240010220 +164383 400210240070170 +164388 400210240160080 +164393 400210250010110 +164407 400210250170280 +164411 400210250190030 +164414 400210250220080 +164422 400210260030030 +164433 400210270020060 +164438 400210270080130 +164440 400210270120090 +164451 400210280090110 +164454 400210280130070 +164463 400210290010050 +164465 400210290050020 +164477 400210300070050 +164491 400210310100030 +164495 400210310130490 +164498 400210310170160 +164535 400210330040240 +164551 400210340010170 +164593 400210370090050 +164599 400210380010200 +164626 400210400010110 +164635 400210410010210 +164637 400210410030040 +164650 400210420010290 +164652 400210420050250 +164655 400210420100200 +400210420100100 +164671 400210430010190 +164696 400210440090060 +164703 400210450030140 +164730 400220010100140 +164757 400220040050230 +400220040060220 +164762 400220040090150 +164779 400220050010150 +164818 400220080010160 +164875 400220120020100 +400220120040080 +164884 400220130010180 +164911 400220150010110 +164924 400220160100380 +400220160110370 +164927 400220160120240 +164938 400220160250110 +164945 400220170010110 +400220170040090 +164954 400220180030110 +164959 400220180090040 +164971 400220200020090 +164979 400220210010020 +164982 400220210030140 +165011 400220240010230 +400220240020220 +165073 400220290010150 +165114 400220310150140 +165143 400220340040050 +165151 400220350020140 +165156 400220360010070 +165164 400220370010250 +165191 400220390010090 +400220390040060 +165216 400220420010100 +400220420020090 +165223 400220420110040 +165227 400220430010300 +165231 400220430110200 +400220440010190 +165273 400230020010110 +165362 400230080010150 +165373 400230090020150 +165384 400230100010100 +165407 400230130010150 +165428 400230150010250 +165442 400230150180080 +165449 400230160010240 +165454 400230160060190 +165470 400230170010160 +165474 400230170040120 +165503 400230190010130 +165505 400230190020110 +165562 400230230010060 +165606 400230250010220 +165626 400230260010150 +165640 400230270010060 +165672 400230290010060 +165690 400230300020190 +165708 400230310020090 +165723 400230330010100 +165732 400230340030620 +400230340010300 +165794 400230370010120 +165809 400230370150140 +165821 400230380010060 +165826 400230390010170 +165833 400230390120070 +165858 400240020010210 +165883 400240030150170 +400240030160160 +165899 400240040020100 +165913 400240050080050 +165926 400240060080030 +165999 400240130010060 +166081 400240200010100 +166105 400240220020110 +166122 400240230010100 +400240230060060 +166147 400240250010030 +166154 400240260030070 +400240260050050 +166159 400240260120060 +166167 400240270010180 +166181 400240280020090 +166277 400240320190050 +166282 400240330010130 +166290 400240340010150 +166293 400240340050110 +166316 400240360010160 +166334 400240370010130 +166370 400240390020090 +166385 400240400010110 +166393 400240410010100 +166405 400240420040080 +166412 400240430010220 +166416 400240430060080 +166470 400240470010110 +166484 400240480030130 +166587 400250060010100 +166590 400250060060030 +166607 400250080010160 +166623 400250090050170 +166658 400250110080050 +166665 400250120010090 +166767 400250200120110 +400250200130100 +166772 400250200180050 +166776 400250210010250 +166780 400250210060050 +166786 400250210110080 +166797 400250220010170 +166804 400250220080100 +166808 400250220130050 +166812 400250230010250 +166816 400250230060050 +166822 400250230110080 +166834 400250240010380 +166841 400250240100300 +166844 400250240110150 +166863 400250250110040 +166867 400250260010390 +166872 400250260090150 +166920 400250290080090 +166946 400250310010220 +166972 400250320090260 +166993 400250340010220 +166999 400250340090060 +167045 400250370060350 +400250370070340 +167087 400250400020200 +167090 400250400070150 +167102 400250410010230 +167106 400250410100170 +167150 400250440050210 +400250440060200 +167169 400250450040150 +400250450050140 +167200 400260010110210 +167203 400260020010170 +167235 400260040020080 +167244 400260050010120 +167280 400260080060060 +167294 400260100010160 +167341 400260140010210 +167351 400260150030080 +167360 400260160020070 +167372 400260170110080 +167380 400260180010290 +167388 400260180120190 +400260180140170 +167425 400260210040100 +400260210050090 +167434 400260220020110 +167438 400260220090040 +167443 400260230010150 +167445 400260230050120 +167475 400260240230090 +167482 400260250010100 +167487 400260250080040 +167491 400260250120040 +167505 400260260120110 +167522 400260270080200 +167540 400260290010290 +167570 400260310010350 +167573 400260310060200 +167580 400260310150100 +167598 400260330010130 +167607 400260340010180 +167609 400260340050140 +167619 400260350010140 +167642 400260360120100 +167663 400260380010160 +167680 400260390080220 +167683 400260390110190 +167686 400260390130090 +167709 400260400110110 +167736 400260420060160 +400260420070150 +167741 400260420100080 +167774 400260450070260 +167781 400260450130130 +167795 400260460030050 +167800 400260470020250 +167826 400260480080080 +400260480100070 +167834 400260490020070 +167837 400260490070020 +167843 400260500010080 +167845 400260500060040 +167859 400260510020220 +167877 400260520010210 +167894 400260530020160 +167908 400260540010080 +167914 400260550010400 +167988 400260590010140 +168005 400260600070170 +168007 400260610020130 +168020 400260620020110 +168023 400260620070060 +168031 400260630060230 +168033 400260630100190 +168040 400260630180110 +168049 400260640010280 +168054 400260640080210 +168076 400260650080150 +168078 400260650090060 +168081 400260650150080 +168086 400260660040060 +168100 400260680010090 +168102 400260680020030 +168117 400260690140080 +168127 400260700060050 +168139 400260710100090 +168147 400260720020090 +168154 400260730010220 +168174 400260740050060 +168188 400260750080080 +168227 400270030020030 +168236 400270040010050 +168242 400270040060070 +168260 400270060010170 +168298 400270090090270 +168332 400270110130070 +168339 400270110200050 +168353 400270130010100 +168359 400270140020120 +168387 400270170040140 +168399 400270180010060 +168413 400270190130150 +168426 400270200010160 +168441 400270210010120 +168451 400270210140040 +168455 400270220010110 +168463 400270220120030 +168467 400270230010060 +168474 400270230120020 +168480 400270240010080 +168490 400270240200090 +168499 400270250020150 +168517 400270260060060 +168556 400270290230050 +400270290240040 +168597 400270320080070 +168642 400270370100080 +168649 400270380010130 +168668 400270400020220 +400270400030210 +168690 400270410010160 +168713 400270430010090 +168722 400270430100050 +168754 400270460110150 +168772 400270470010100 +168794 400270490010100 +168812 400270510020480 +168867 400270540190060 +168977 400270620150160 +168979 400270630020130 +168982 400270630050100 +168991 400270640010310 +169003 400270640180070 +169014 400270650010100 +169051 400280020020040 +169093 400280050010160 +169100 400280050110060 +169123 400280070020210 +169133 400280070140090 +169139 400280070230030 +169155 400280090020060 +400280090060020 +169168 400280100010200 +169175 400280100090090 +169187 400280110040140 +169208 400280130010120 +400280130020110 +169268 400280180070110 +169283 400280190070210 +169300 400280200090130 +169319 410010020020330 +169324 410010020080270 +410010020090120 +169335 410010030020130 +169399 410010070030180 +410010070040170 +169450 410010110020150 +169501 410010150020170 +169539 410010170020130 +169599 410010220020170 +169604 410010220070110 +169626 410010240010180 +169629 410010240020060 +169636 410010240110080 +169645 410010250020090 +169669 410010270070170 +169768 410010340130080 +169797 410010370050060 +169802 410010380020160 +169838 410010400100080 +169840 410010400130050 +169853 410010410090040 +169871 410010440020240 +169873 410010440040040 +169917 410020010080050 +169962 410020050030140 +169968 410020050110050 +169980 410020060090190 +169985 410020070010050 +169996 410020080020560 +169998 410020080030090 +170005 410020080160270 +170019 410020090120090 +170031 410020100030130 +170041 410020100160160 +170043 410020110010130 +170070 410020120180050 +170099 410020140130040 +170131 410020160020230 +170135 410020160060080 +170152 410020170020150 +170182 410020180130190 +170199 410020190020180 +170212 410020190200100 +170221 410020200010080 +170239 410020210090150 +170261 410020220090140 +170297 410020240020120 +170299 410020240060080 +170304 410020250020170 +410020250040150 +170329 410020260120130 +170333 410020260170080 +170346 410020270020150 +170389 410030030020120 +170401 410030040020130 +170418 410030050020170 +170440 410030060020140 +170489 410030090020110 +170502 410030100050080 +170517 410030110130080 +170525 410030120020080 +170617 410030210020110 +170623 410030210090030 +170628 410030220020200 +170647 410030230020110 +170654 410030240020110 +170663 410030250020110 +170672 410030260020140 +170686 410030270020190 +170704 410030280020170 +170720 410030290030240 +170734 410030300020040 +170758 410030320070170 +410030320090150 +170771 410030330020110 +170781 410030340020150 +170840 410040020080070 +170846 410040030020050 +170852 410040040020910 +170885 410040060020050 +170931 410040090020060 +170949 410040110020370 +170959 410040110120200 +170983 410040130020130 +171042 410040170100100 +171106 410040210020160 +171109 410040210060120 +171129 410040220010080 +171149 410040240020050 +171164 410040250010040 +171175 410040260020320 +171203 410040280010140 +171213 410040290010120 +171223 410040300020560 +410040300030550 +171250 410040320020240 +171272 410040330020100 +171292 410040350020080 +171303 410040360020100 +171341 410040380150080 +410040380170060 +171354 410040390070050 +171369 410040400020100 +171379 410040410060160 +171382 410040410090120 +171469 410050070020210 +171473 410050070060100 +171482 410050070160070 +171486 410050080010100 +410050080050080 +171496 410050090020050 +171501 410050090080080 +410050090100060 +171508 410050100020100 +171525 410050120040100 +171606 410050160020080 +171630 410050180070080 +171640 410050190060210 +171703 410050230050170 +171705 410050230070150 +171709 410050230130090 +171764 410050280010090 +171766 410050280040070 +171781 410050290100080 +171789 410050300020210 +171805 410050310020150 +171813 410050310130040 +171839 410050340010090 +410050340050060 +171854 410050350010180 +171858 410050350080110 +171868 410050360010130 +171879 410050370020170 +171908 410050390020130 +171942 410050410020170 +171947 410050410090100 +410050410090020 +171951 410050410140050 +171973 410050430020070 +171977 410050430100040 +172007 410060020140200 +172051 410060040020250 +172054 410060040070200 +172071 410060050020140 +172107 410060080020280 +172110 410060080050080 +172129 410060100020360 +172135 410060100090060 +172160 410060120020040 +172176 410060140020100 +172184 410060140130160 +172199 410060150010050 +172204 410060150070080 +172206 410060150110050 +172213 410060160010100 +172216 410060160060060 +172229 410060170100150 +172242 410060180010150 +172284 410060210020360 +172286 410060210020210 +172317 410060220160130 +172328 410060230020130 +172340 410060240020070 +172347 410060240090070 +172361 410060250100130 +410060250110120 +172443 410060310020130 +172510 410060350060150 +172521 410060360010140 +172533 410060370010080 +172539 410060370110110 +172550 410060380010080 +172558 410060380110060 +172642 410060450120110 +172698 410060490010110 +172718 410060500140070 +172801 410060560200100 +172826 410070020020140 +172858 410070040100120 +172867 410070050020250 +172887 410070060010360 +410070060050330 +172893 410070060130250 +172921 410070090020130 +410070090040110 +172932 410070100010180 +172949 410070110010390 +172952 410070110050160 +172984 410070140020340 +172990 410070140120240 +173025 410070180020370 +173029 410070180090300 +173058 410070200010110 +173060 410070200040090 +173079 410070210130230 +173131 410070260100100 +173140 410070270020200 +173160 410070280050160 +173162 410070280070020 +173175 410070290020140 +410070290040120 +173223 410070320080070 +173252 410070340080060 +410070340100040 +173273 410070360020050 +173278 410070360070070 +173284 410070370040120 +173304 410080010140200 +173320 410080030020110 +173335 410080040020150 +173344 410080050020050 +173349 410080050070030 +173433 410080120020110 +173461 410080140060110 +173471 410080150040120 +410080150050110 +173484 410080160020070 +173490 410080170020090 +173492 410080170050060 +173513 410080180110150 +410080190010130 +173525 410080190140030 +173528 410080200010110 +173539 410080200130020 +173543 410080210020040 +173554 410080220100050 +173568 410080230130140 +173579 410080240020100 +173607 410080260070060 +173631 410080270230080 +173638 410080280050140 +173648 410080280130050 +173655 410080290020090 +173660 410080290110090 +173667 410080300020070 +173674 410080310030280 +173719 410080330120150 +173721 410080330130040 +173734 410080340020250 +173824 410090010020260 +410090010040240 +173833 410090010130150 +173866 410090030020160 +173888 410090050020240 +173892 410090050080180 +173908 410090060010070 +173918 410090070070140 +173943 410090090070170 +173945 410090090100140 +173959 410090100050090 +173968 410090110040100 +410090110050090 +173976 410090120010220 +173982 410090120120120 +173994 410090130020150 +174031 410090160020060 +174036 410090170020160 +174040 410090170080100 +174063 410090180170070 +174072 410090190010200 +174074 410090190060160 +174104 410090210020110 +174114 410090210130260 +174120 410090220020120 +174130 410090220150080 +174137 410090230010110 +174139 410090230060070 +174147 410090240010120 +174161 410090250010040 +174167 410090250130180 +410090250150160 +174192 410090260120050 +174211 410090280060130 +174219 410090290020130 +174236 410090300080050 +174246 410090310070200 +174276 410090330060110 +174285 410090340010110 +174287 410090340040080 +174299 410090350070130 +174317 410090360100290 +174339 410090380010240 +174341 410090380050200 +174344 410090380070110 +174356 410090390010210 +174380 410090410010100 +174385 410090410130100 +174418 410090430020080 +174443 410090450020080 +174463 410090470020080 +174498 410090500040090 +174535 410100020020090 +174543 410100030010080 +174548 410100040010090 +174557 410100050010130 +174606 410100110020240 +174618 410100120020090 +174626 410100130020060 +174640 410100140070190 +174655 410100150010180 +174659 410100150040090 +174679 410100170070150 +174684 410100170130080 +174693 410100180010350 +174696 410100180060110 +174703 410100190010200 +174719 410100200010100 +410100200050070 +174732 410100210090220 +174737 410100210140080 +174753 410100220010120 +174764 410100230020190 +174787 410100240090330 +174790 410100240160270 +174815 410100260050070 +174821 410100270010180 +174838 410100280020090 +410100280060070 +174844 410100290010590 +174849 410100290070530 +174918 410100320270470 +174924 410100330020040 +174962 410100350100110 +410100350120090 +174971 410100360010080 +174976 410100370010190 +410100370050160 +174992 410100380010080 +175010 410100390010040 +175014 410100390060330 +175051 410100420020210 +175054 410100420080150 +175131 410100470020060 +175139 410100470110060 +410100470120050 +175146 410100480020050 +175151 410100480070080 +175153 410100480120040 +175158 410100490020060 +175166 410100490120060 +175182 410100510020090 +175189 410100510110070 +175191 410100510160030 +175196 410100520020100 +175230 410110020020270 +175256 410110030030060 +175258 410110030090120 +175280 410110050020110 +175289 410110060010070 +175326 410110090020250 +175333 410110090080190 +175379 410110130020130 +175389 410110130160080 +175399 410110140020120 +175444 410110160020090 +175454 410110170040200 +175457 410110170070110 +175492 410110190020070 +175506 410110210020120 +175509 410110210070070 +175516 410110220020390 +175519 410110220070340 +175521 410110230010310 +175527 410110230050110 +175542 410110230250050 +175548 410110240010150 +175550 410110240050110 +175556 410110240100030 +175604 410110280020170 +175610 410110280100090 +175617 410110290010190 +175626 410110290140070 +175646 410110310050280 +175650 410110310070030 +175653 410110310100070 +175659 410110320020030 +175672 410110330020060 +175678 410110330090130 +175680 410110330130090 +175687 410120010030220 +175703 410120020020170 +175754 410120060110060 +175761 410120070010190 +175766 410120070090120 +175800 410120100010250 +175803 410120100060200 +410120100060100 +175828 410120120090070 +175851 410120140020380 +175853 410120140050350 +175855 410120140060240 +175860 410120140110190 +175884 410120150010150 +175890 410120150120050 +175898 410120160050090 +175907 410120160140040 +175911 410120170010140 +175935 410120180140300 +410120190010290 +175939 410120190060240 +176002 410120240010170 +176017 410120250010150 +176034 410120260010300 +176048 410120260210110 +176066 410120280020190 +176070 410120280060080 +176072 410120280090050 +176079 410120290010440 +176084 410120290070020 +176118 410120310010080 +410120310030060 +176129 410120320020500 +176132 410120320060020 +176134 410120320080440 +176162 410120330210050 +176172 410120340020170 +176174 410120340040050 +176188 410120350020180 +176194 410120350100100 +176201 410120360010270 +176207 410120360090190 +176236 410120380020430 +176240 410120380070380 +176263 410120400010140 +176300 410120430020230 +176304 410120430080170 +176341 410130010070130 +176345 410130010130070 +176355 410130020020090 +176378 410130030120250 +176384 410130040010140 +176388 410130040070080 +176398 410130050050070 +176409 410130060070040 +176522 410130130100060 +176585 410130180010050 +176609 410130200020110 +176627 410130210020100 +176629 410130210070040 +176730 410130280190060 +176735 410130290010130 +176744 410130300010150 +176768 410130320010170 +176791 410130330030060 +176811 410130340200050 +176821 410130350030160 +176837 410130370010060 +176862 410140020010110 +176923 410140060010050 +176940 410140070090060 +176974 410140100020140 +176998 410140120020220 +177010 410140120160070 +177023 410140130080130 +177037 410140140030230 +177042 410140140090160 +177094 410140180060160 +177096 410140180090130 +177111 410140190040070 +177118 410140200010360 +177151 410140210240080 +177167 410140220120070 +177184 410140240020130 +177195 410140250010260 +177224 410140270020260 +177228 410140270070110 +177230 410140270100080 +177246 410140290010110 +177256 410140300020210 +177258 410140300060170 +177269 410140310010120 +177290 410140320100080 +177315 410140340020130 +177334 410140350090100 +177336 410140350110080 +177342 410140360020070 +410140360030060 +177366 410140370080050 +177368 410140370110020 +177419 410140410060080 +177431 410140410170110 +177444 410140420030050 +177476 410140440100100 +177486 410140450020060 +177518 410140480020150 +177630 410140570070210 +177633 410140580040170 +177658 410140600100080 +410140600110070 +177672 410140610140100 +177681 410140620010230 +177703 410140630010180 +177709 410140630090080 +177732 410140650150030 +177751 410140670020150 +177765 410140680040080 +177783 410140690080080 +177794 410140700060160 +177811 410140710060090 +177824 410140720080180 +177828 410140720140120 +177865 410150020120060 +177876 410150040070080 +410150040080070 +410150040110040 +177910 410150080060040 +177917 410150090060080 +177925 410150100010080 +177932 410150110010110 +177940 410150120010150 +177951 410150130010050 +177955 410150140010080 +177962 410150140100050 +177975 410150150150060 +178004 410150180030060 +410150180050040 +178041 410150210020180 +178097 410150260020110 +178109 410150270020130 +178129 410150290110170 +410150290120160 +178145 410150310010170 +178189 410150340020250 +178214 410150350020080 +178219 410150350070030 +178228 410150360120080 +178254 410150390030190 +178261 410150390010040 +178349 410150440090080 +178395 410160010020190 +178423 410160030020130 +178434 410160040020060 +178458 410160060010050 +178482 410160070030190 +178510 410160080140050 +178536 410160110020070 +178555 410160130010080 +178567 410160140090130 +178579 410160150020130 +178645 410160200010150 +178687 420010010010340 +178689 420010010020220 +178757 420010070020170 +178825 420010130010270 +178829 420010130070030 +178904 420010180020090 +178922 420010190020220 +178941 420010200020250 +178980 420010220080070 +179020 420010240160150 +179061 420010280020100 +179065 420010280060020 +179077 420010290080060 +179083 420010300020130 +179086 420010300060030 +179094 420010310020130 +179132 420010340010120 +179141 420010350020150 +179161 420010360020290 +179163 420010360030110 +179184 420010380010120 +179246 420010420060120 +179260 420010430020120 +179270 420010440010210 +179290 420010450040090 +179298 420010460020270 +179323 420010480090090 +179411 420010580020150 +179445 420010600020090 +179455 420010610020150 +179479 420010630050050 +179519 420010660020220 +179526 420010660100070 +179546 420010670110850 +420010680010840 +179618 420010760040520 +179688 420020020010080 +179694 420020030020080 +179752 420020070090150 +179791 420020100020290 +179796 420020100080220 +179811 420020120020100 +179829 420020130140120 +179849 420020150120210 +179928 420020200120080 +179943 420020210100170 +179975 420020230020130 +179990 420020240070110 +180002 420020250020250 +420020250030070 +180028 420020260100100 +180068 420020280130370 +420020290060360 +180116 420020340060360 +180121 420020340120300 +180149 420020360020410 +180319 420020480060190 +180324 420020480120050 +180326 420020480170080 +180333 420020490020180 +180339 420020490090110 +180427 420030030020350 +180439 420030040020210 +180447 420030040100130 +180486 420030070010170 +180492 420030070090100 +180508 420030080080240 +420030080100070 +180514 420030080170140 +180547 420030100060040 +180552 420030110010170 +180572 420030120070060 +180574 420030120100030 +180578 420030130010110 +180590 420030140060050 +180595 420030140120110 +180612 420030150060150 +180620 420030160010580 +180627 420030160110470 +180637 420030160260330 +180673 420030190010320 +180723 420030220140140 +180928 420040030010160 +180935 420040030110070 +180942 420040040020140 +180945 420040040070090 +180963 420040060020230 +180983 420040070030080 +180989 420040080020150 +180992 420040080070100 +181014 420040090140110 +181023 420040100010250 +181043 420040120020130 +181047 420040120080070 +181121 420040170150290 +181123 420040180010260 +181160 420040210030130 +181187 420040220190060 +181193 420040230020250 +181195 420040230050220 +181198 420040230110160 +420040230110030 +181211 420040240010130 +420040240030120 +181222 420040250010470 +181247 420040260020140 +181268 420040270130080 +181321 420040320020120 +181341 420040330120210 +181345 420040340010070 +181353 420040340110080 +181364 420040350060060 +181387 420040360100160 +420040360110150 +181445 420040400010130 +181468 420040410090080 +181476 420040410180110 +181507 420040430010200 +181510 420040430070150 +181588 420050040050150 +181602 420050050020180 +181604 420050050050150 +181655 420050080090090 +420050080100080 +181689 420050100150140 +181719 420050120120040 +181729 420050120250070 +420050120260060 +181741 420050130070030 +420050130080020 +181830 420050180020090 +181862 420050200020110 +181866 420050200070060 +181878 420050210090160 +420050210100150 +181891 420050220030450 +181899 420050220120200 +181906 420050230040060 +181911 420050230110040 +181918 420050240030130 +181928 420050240160160 +181931 420050240190130 +181965 420050260120050 +181982 420050270150040 +182018 420050300130110 +182029 420050310020160 +182049 420050330010230 +182070 420050340010200 +182089 420050350050120 +182099 420050360010160 +182111 420050360180170 +182133 420050370090160 +182159 420050390070050 +182180 420060020010110 +182188 420060030020480 +182192 420060030080420 +182194 420060030110110 +182203 420060040020270 +182219 420060040200090 +182227 420060050020100 +182278 420060080070140 +182296 420060090010180 +182299 420060090070130 +182314 420060100020090 +182333 420060110060080 +182457 420060200020200 +182473 420060210010060 +182479 420060210070060 +182517 420060230080080 +182532 420060240020090 +182540 420060250010070 +182548 420060250080040 +182559 420060260010080 +182573 420060270030220 +182622 420060310020100 +182624 420060310030060 +182631 420060320020090 +182646 420060330030100 +182687 420060350130180 +182701 420060360010080 +182791 420060420010250 +420060420030140 +182795 420060420070100 +182811 420060420260220 +182890 420060470010180 +182934 420060490010300 +182971 420070020010110 +182986 420070030120080 +182998 420070040100180 +183025 420070060200150 +420070060220130 +183030 420070060250090 +183063 420070080140030 +183090 420070090090150 +183095 420070090150090 +183137 420070120090200 +183162 420070130100040 +183176 420070140110050 +420070140120040 +183200 420070160090150 +183244 420070190050080 +183253 420070200010210 +183261 420070200150080 +183285 420070220020100 +183311 420070240010210 +183315 420070240070160 +183330 420070250020080 +183338 420070250100120 +183349 420070260020040 +183353 420070260060260 +183360 420070270030180 +183372 420070280010090 +183431 420070320110110 +183452 420070330130030 +183465 420070340100100 +183486 420070360010090 +183503 420070370020080 +183512 420070370110080 +183554 420070390110180 +183560 420070390160090 +183571 420070400020110 +183575 420070400080050 +183582 420070400150020 +183585 420070400170270 +183588 420070410010140 +183606 420070430010090 +183608 420070430040060 +183614 420070430100050 +183618 420070440020110 +183665 420070470010130 +183681 420070480010060 +183690 420070490050100 +183692 420070490080070 +183697 420070500010120 +183700 420070500060080 +183770 420080040120110 +183831 420080080140080 +183839 420080090010100 +183847 420080100010240 +183857 420080100130120 +183912 420080130150130 +183923 420080140010090 +183944 420080150010210 +183971 420080160130090 +184005 420080180130110 +184029 420080200010140 +184041 420080210010200 +184044 420080210070150 +184074 420080220170090 +184105 420080240050040 +184129 420080250010060 +184137 420080250110180 +184196 420080280090180 +184199 420080280120100 +184208 420080280220050 +184239 420080300010080 +184245 420080300100030 +184253 420080310020100 +184270 420080320120080 +184347 420080360010080 +184355 420080370020160 +184385 420080380170130 +184418 420080410020360 +184427 420080410150230 +184479 420080450020070 +184486 420080450090120 +184489 420080450150070 +184497 420080460010130 +184510 420080470010040 +184528 420080480010120 +420080480050090 +184536 420080490010180 +184540 420080490090100 +184550 420080500010110 +184561 420080510010250 +184585 420080520070080 +184594 420080530040030 +184603 420080540080040 +420080540090030 +184656 420090030020540 +184660 420090030050130 +184726 420090070130080 +184732 420090080010050 +184737 420090080070070 +184745 420090090010130 +184797 420090120060260 +184801 420090120120150 +184820 420090130010070 +184826 420090130090230 +184850 420090140060110 +184901 420090180020220 +184912 420090180170070 +184918 420090190010170 +184927 420090190110070 +184935 420090200010080 +184941 420090200100070 +184952 420090220010250 +184975 420090230010210 +185001 420090240130110 +185045 420090270010200 +185051 420090270100120 +185079 420090290020170 +185096 420090300020230 +185144 420090330150180 +185162 420090340010080 +185180 420090350070100 +420090350080090 +185220 420090380020390 +185224 420090380080330 +420090380090320 +185227 420090380100110 +185235 420090390020190 +185249 420090400020070 +185258 420090410010220 +185262 420090410060130 +185315 420090430160240 +185319 420090440010190 +185341 420090450080080 +185374 420090480020330 +420090480050310 +185391 420090480250090 +185399 420090490010210 +185402 420090490060170 +185417 420090500010150 +185458 420090530020110 +185467 420090540010180 +185473 420090540090110 +185498 420090570070090 +185505 420090580020250 +185525 420090590010050 +185530 420090590070100 +185538 420090600010170 +185553 420090610010160 +185556 420090610050030 +185567 420090620010220 +185603 420100020010110 +185614 420100020130120 +185626 420100030020080 +185648 420100050070060 +185654 420100060020110 +185708 420100090080090 +185724 420100100110300 +185742 420100110170080 +185749 420100120010140 +185761 420100130010270 +420100130010030 +185764 420100130040030 +185767 420100130080200 +185795 420100150030060 +185824 420100170070110 +420100170080100 +185834 420100180010110 +185843 420100190010240 +185889 420100210110640 +185893 420100210120090 +185910 420100210320030 +185945 420100230020370 +185958 420100240010220 +185978 420100250020130 +185981 420100250080070 +420100250090060 +185988 420100260010110 +185990 420100260060070 +185996 420100270010370 +186024 420100270340050 +186031 420100280010080 +420100280040060 +186039 420100290010130 +186048 420100300010240 +186058 420100300130120 +186126 420100350120150 +186150 420100370010080 +186158 420100370100090 +186202 420100400080200 +186205 420100400110120 +186214 420100400230050 +186219 420100410010280 +186239 420100420070090 +186245 420110010020290 +186255 420110010130180 +186260 420110010200110 +186270 420110020010140 +186274 420110020060100 +186276 420110020070050 +186308 420110050020350 +186318 420110050160210 +420110050180190 +186332 420110070010270 +186350 420110080010230 +186367 420110090010270 +186399 420110110010150 +186409 420110120020060 +186452 420110150010130 +186471 420110170010180 +186503 420110190010130 +186517 420110200010160 +186529 420110210010140 +186548 420110220080070 +186583 420110240160100 +186621 420110270010250 +186642 420110280010120 +186659 420110290060360 +186669 420110290160090 +186711 420110310280040 +186732 420110320210040 +186762 420110340090130 +186773 420110340220080 +186791 420110360010220 +186808 420110370010100 +186821 420110380010110 +186830 420110390010250 +186850 420110400010100 +186865 420110410070050 +186868 420110420020230 +186929 420110450010120 +186933 420110450080060 +186939 420110460010230 +420110460040210 +186956 420110470010140 +186985 420110490010500 +187030 420110510150080 +187037 420110520010170 +187041 420110520060120 +187070 420120010010270 +187078 420120010120160 +187091 420120020010350 +187119 420120040010200 +187136 420120050010040 +187149 420120050170050 +187181 420120080010240 +420120080040220 +187212 420120100020110 +187259 420120130010160 +187263 420120130080100 +187272 420120140010120 +420120140050090 +187281 420120150010230 +187304 420120160060070 +187314 420120170050110 +187324 420120180020370 +187344 420120190020160 +187347 420120190060120 +187361 420120200010190 +187363 420120200060150 +187384 420120220010200 +187388 420120220070150 +187410 420120240010140 +187440 420120260010090 +187446 420120270010080 +187454 420120270090130 +187466 420120280010200 +187500 420120300090070 +187514 420120320010140 +187574 420120360090120 +187578 420120360150060 +187593 420120370110120 +187620 420120390010190 +187647 420120410010140 +187649 420120410050110 +187660 420120420020250 +187689 420120440010110 +187702 420120450030130 +187780 420120480110080 +187786 420120480210060 +187795 420120490080050 +187808 420120510010080 +187815 420120510100060 +187824 420120520010160 +187862 420120540010180 +187871 420120540120050 +187882 420120550050040 +187888 420120560010170 +187911 420120580010160 +187935 420120590010120 +187962 420130020020170 +187964 420130020050140 +187966 420130020070120 +187977 420130030020090 +187979 420130030050060 +187984 420130040020270 +188008 420130050010100 +188011 420130050050060 +188035 420130070010190 +188060 420130080010190 +188062 420130080060150 +188082 420130090080040 +188096 420130110020180 +188119 420130120080070 +420130120100050 +188137 420130140010320 +188140 420130140050070 +188148 420130140160070 +188169 420130150070200 +420130150080190 +188188 420130160100240 +188209 420130170020080 +188227 420130180010120 +188259 420130200020080 +188287 420130230010080 +420130230050050 +188295 420130230100190 +188304 420130240090080 +188329 420130250190040 +420130250200030 +188333 420130250240080 +188335 420130250270050 +188339 420130260030120 +188354 420130270030120 +188356 420130270050040 +188358 420130270090060 +188364 420130280010290 +188407 420130300020120 +188421 420130310080110 +188431 420130320020200 +420130320040180 +188436 420130320090130 +188449 420130330020160 +188462 420130340010120 +188477 420130340150130 +188489 420130350010060 +188494 420130350070160 +188502 420130350170070 +188528 420140020020070 +188541 420140030110070 +188560 420140050020200 +188589 420140070120430 +188607 420140090020110 +188638 420140100160050 +420140100180030 +188659 420140120010360 +188696 420140140020070 +188708 420140150030160 +188721 420140160010280 +188736 420140170100080 +188749 420140180070170 +188758 420140180190050 +188763 420140190020150 +188772 420140190120050 +188777 420140200020100 +188792 420140210100280 +188814 420140220020110 +188816 420140220050080 +188824 420140230020200 +188835 420140230150070 +188843 420140240010130 +188860 420140250070410 +188907 420140280010150 +188929 420140300010110 +188942 420140310020250 +188988 420140340050080 +189026 420150020090080 +189038 420150030080290 +420150040010280 +189059 420150040220070 +189083 420150060120110 +189094 420150070010230 +189114 420150080020220 +189140 420150090080090 +189151 420150100020130 +189163 420150110010060 +189169 420150120020140 +189173 420150120080080 +189246 420150170010160 +189265 420150180080230 +420150180100210 +189312 420150210010180 +189314 420150210060140 +189327 420150220010500 +189407 420150270010210 +189414 420150270110120 +189438 420150290010260 +189441 420150290070210 +189458 420150300010180 +189474 420150310010150 +420150310050120 +189485 420150320010170 +189506 420160010010210 +189510 420160010070160 +189523 420160020020200 +189525 420160020060160 +189538 420160030010160 +189557 420160040020140 +189559 420160040050110 +189569 420160050020160 +189583 420160060010050 +189589 420160060070120 +189598 420160070010070 +189603 420160070080050 +189608 420160070140090 +189618 420160080020100 +189641 420160090020200 +189649 420160090140080 +189727 420160150020260 +189876 420160240020290 +189878 420160240050260 +189883 420160240100150 +189902 420160250010180 +420160250040160 +189924 420160260020240 +189943 420160270010320 +189948 420160270030030 +189961 420160280060130 +189972 420160290010090 +189981 420160300010140 +420160300040120 +189986 420160300080080 +189993 420160310010160 +190006 420170010010170 +190021 420170020010150 +190065 420170040140020 +190070 420170050020080 +190076 420170060010240 +190086 420170060110100 +190112 420170070100100 +190120 420170080030200 +190126 420170080090070 +190140 420170090020080 +190147 420170100010180 +190155 420170100120070 +190188 420170130050050 +190196 420170140020080 +190215 420170150050030 +190234 420170170010240 +190245 420170180010120 +190255 420170190020090 +190266 420170200010100 +190274 420170200150240 +190283 420170210020050 +420170210030040 +190289 420170210070080 +190296 420170220010190 +190315 420170230020060 +190317 420170230040020 +190319 420170230060020 +190327 420170240010240 +190358 420170260020160 +190406 420170290010150 +190465 420170340010170 +190479 420170350010130 +190491 420170370020050 +190493 420170370050020 +190497 420170370070110 +190514 420180020010150 +190534 420180030120070 +190545 420180040060320 +190556 420180050020180 +190569 420180060010100 +190571 420180060050070 +190596 420180080010090 +190622 420180090070060 +190632 420180100010140 +190644 420180110010280 +190648 420180110080210 +190687 420180130200070 +420180130210060 +190694 420180140010220 +190714 420180150010080 +190728 420180160060190 +190744 420180170010180 +190748 420180170040090 +190760 420180180060080 +420180180070070 +190768 420180190010330 +190771 420180190060110 +190778 420180200010180 +190793 420180210010070 +190799 420180220010260 +190802 420180220070210 +190828 420180240010330 +190855 420180260010070 +190863 420180270010110 +190872 420180280010100 +190874 420180280050070 +190879 420180290010420 +420180290050390 +190910 420180310010420 +190915 420180310080040 +190918 420180310130310 +190982 420180370010070 +190990 420180380030060 +420180380040050 +190997 420180390020060 +191004 420180390080080 +191006 420180390130040 +191020 420180400130060 +191025 420180410050050 +420180410080030 +191031 420180420020100 +191060 420190020020120 +191077 420190030090100 +191085 420190040020140 +191102 420190050070180 +191106 420190050130120 +191128 420190070050070 +191136 420190080010230 +191140 420190080140170 +191156 420190090010180 +191160 420190090080120 +191190 420190110150100 +191199 420190120010130 +191218 420190130110070 +191232 420190140120070 +191246 420190150110150 +191258 420190160010110 +191261 420190160060070 +191268 420190170020160 +191271 420190170050130 +191285 420190180050080 +420190180090070 +191293 420190190010090 +191303 420190200050270 +191305 420190200060100 +191315 420190210010150 +191317 420190210050120 +191326 420190220010420 +191328 420190220030080 +191335 420190220110150 +191359 420190240020150 +191374 420190250020060 +420190250040040 +191379 420190260010160 +191432 420190300010220 +420190300020210 +191453 420190310030060 +191456 420190310090080 +191475 420190330060100 +191483 420190340010080 +191534 420190380010160 +420190380020150 +191551 420190390020140 +191558 420190390110050 +191564 420190400020100 +191566 420190400040080 +191581 420190420010640 +191593 420190420140500 +191597 420190430020440 +191637 420190460010160 +191639 420190460030080 +191706 420200020030190 +191708 420200020060160 +191721 420200030010200 +191727 420200030110110 +191740 420200050060280 +191745 420200050090030 +191748 420200050120060 +191755 420200060030030 +191772 420200080020130 +191774 420200080060090 +191796 420200100020140 +191832 420200130010160 +191851 420200140090120 +191855 420200140140070 +191884 420200160120040 +191889 420200170010350 +191892 420200170060300 +191896 420200170120250 +420200170120100 +191913 420200180120060 +191936 420200190210080 +191964 420200210040270 +420200210050260 +191967 420200210060180 +191988 420200230010150 +191993 420200240010080 +192000 420200240090030 +192004 420200250010150 +192039 420200280010280 +420200280020270 +192042 420200280060230 +192101 420200340020290 +192144 420200370010220 +192171 420200390010080 +192175 420200390070030 +192183 420200410010100 +192191 420200420010250 +192195 420200420080190 +192223 420200450060420 +192225 420200460010390 +192278 420210030020130 +420210030030120 +192309 420210050020110 +192317 420210050130160 +420210060010150 +192330 420210070040140 +420210070050130 +192336 420210070110070 +192343 420210080010050 +192353 420210080140070 +192379 420210100010290 +192431 420210140010250 +192491 420210200080070 +192609 420210280010140 +192636 420210300040100 +192643 420210310010150 +192654 420210320010140 +192657 420210320050100 +192678 420210340010250 +192689 420210340180090 +192711 420210360060160 +192828 420220080060080 +192837 420220090010060 +192843 420220100010150 +420220100050120 +192861 420220110020210 +192865 420220110070160 +192895 420220140020100 +192906 420220150020150 +192918 420220160010160 +192930 420220170020100 +192940 420220180010200 +192962 420220190090160 +192982 420220200080450 +192999 420220210020110 +193048 420220250010150 +193079 420220270010100 +193139 420220310030100 +193149 420220320010100 +193163 420220330010150 +420220330050120 +193175 420220340010150 +193177 420220340040030 +193186 420220350020140 +193198 420220350160030 +193202 420220360010220 +193221 420220370010150 +193242 420220380010070 +420220380040050 +193247 420220380090050 +193266 420220400010110 +193284 420220420010190 +420220420020180 +193335 420220460020110 +193338 420220460060070 +193344 420220470010200 +193346 420220470040020 +193362 420220480010100 +420220480050070 +193370 420220490030120 +193376 420220490090050 +193398 420220510010070 +193410 420220520010220 +193466 420220550010130 +193478 420220560040170 +193492 420220570010070 +193494 420220570050040 +193498 420220580020110 +193506 420220580130060 +193508 420220580170030 +193518 420220590090120 +193529 420220600010080 +193531 420220600050050 +193553 420220610170100 +193574 420220640050070 +420220640060060 +193603 420220670010080 +193611 420220670090080 +193640 420220700010090 +193648 420220700110090 +193650 420220700160050 +193655 420220710010140 +420220710040120 +193676 420230020050180 +193693 420230030060070 +193700 420230030130060 +193705 420230040010160 +193719 420230050040170 +193734 420230060010080 +193742 420230070020070 +193830 420230130010470 +193847 420230140140240 +193865 420230150100070 +193875 420230180010250 +420230180040080 +193904 420230210040040 +193910 420230220010200 +193960 420230260020180 +193987 420230280010110 +193990 420230280070060 +194006 420230290020200 +194008 420230290050170 +194023 420230300030060 +194034 420230310020110 +194073 420230340010110 +194075 420230340050080 +194097 420230350110140 +194118 420230370020100 +194128 420230380010100 +194137 420230390010150 +194151 420230400010310 +194156 420230400080110 +194177 420230420020100 +420230420030090 +194187 420230430020120 +194219 420230460020140 +194223 420230460080080 +194241 420230470100070 +194277 420230500020570 +194395 420240040100080 +194410 420240050120100 +194422 420240060060280 +194428 420240070010190 +194512 420240130020300 +194558 420240170010120 +194572 420240180010220 +194589 420240190020030 +194627 420240210010100 +194663 420240230090080 +194689 420240250020300 +194691 420240250060260 +194743 420240290040130 +194789 420240320020220 +194822 420240340010090 +194845 420240360010130 +194851 420240360110040 +194863 420240380020140 +194874 420240390010120 +194884 420240390130150 +194889 420240390180100 +194912 420240410100060 +194927 420240440010320 +194929 420240440050290 +194961 420240450110290 +194991 420240490020100 +195018 420240510020140 +195100 430010070010090 +195150 430010120010310 +195200 430010150070160 +195202 430010150100130 +195222 430010170020140 +195235 430010180050110 +195247 430010190020230 +195260 430010190200050 +195269 430010200070070 +195275 430010210020070 +195282 430010210100030 +195289 430010210180020 +195293 430010220010140 +195304 430010230010160 +430010230020150 +195307 430010230040080 +195328 430010250050160 +195330 430010250070130 +195341 430010260050280 +195353 430010270050120 +195377 430010290100460 +195393 430010300030160 +195398 430010300110080 +195416 430010320040140 +195431 430010330060270 +195455 430010340040080 +195473 430010360020100 +195495 430010380030110 +195505 430010380130100 +430010380170070 +195513 430010390010050 +195558 430010410100090 +195569 430010420060110 +195591 430010430120060 +195610 430010450060190 +430010450080170 +195628 430010460020090 +195634 430010460110070 +195647 430010470090110 +195649 430010470120080 +195654 430010480010060 +195660 430010480100130 +195669 430010490010150 +430010490040120 +195683 430010500040120 +195686 430010500070080 +195697 430010510020230 +195700 430010510060190 +195746 430020030040100 +195754 430020040020140 +195757 430020040060050 +195765 430020050010120 +195790 430020070010080 +195800 430020080020080 +195821 430020090110040 +195835 430020100020210 +195843 430020100120040 +195939 430020160020170 +195952 430020170010140 +195956 430020170060090 +195969 430020180060090 +430020180080070 +195978 430020190040120 +195989 430020200010180 +196017 430020220060070 +196062 430020250030090 +196088 430030020070260 +430030020090240 +196091 430030020100060 +196096 430030020160160 +196110 430030030040180 +196113 430030030080140 +196123 430030040010230 +196142 430030050010220 +196145 430030050050180 +196175 430030070040060 +196189 430030080120070 +196205 430030090040060 +196212 430030100040120 +196223 430030110030160 +196250 430030130020160 +196309 430030170030120 +196327 430030180070160 +196341 430030190010270 +196389 430030210110090 +196417 430030230010140 +196451 430030260070210 +430030260090190 +196468 430030270040140 +196478 430030280010170 +196481 430030280060120 +196551 430030320010060 +196560 430030330010110 +196570 430030340010160 +196614 430040010030250 +196617 430040010070210 +196620 430040010110170 +196688 430040070080070 +196694 430040080010100 +196704 430040090010170 +196722 430040100040270 +196733 430040100160050 +196745 430040110010180 +430040110030160 +196785 430040130040430 +196818 430040150010180 +196821 430040150060130 +196832 430040160010100 +196846 430040170050040 +196849 430040170090250 +196853 430040170130060 +196866 430040190010300 +196868 430040190050260 +196870 430040190060050 +196881 430040200100110 +196890 430040210010220 +196892 430040210050180 +196895 430040210090140 +196910 430040220060110 +196920 430040230020160 +196950 430040250010170 +196953 430040250050070 +196964 430040260010090 +196985 430040270140090 +197004 430040280140170 +197030 430040310080030 +430040310090020 +197035 430040320010110 +430040320050080 +197041 430040330010100 +197048 430040340010190 +197065 430040350020100 +197073 430040350120160 +197079 430040350200080 +197085 430040350280190 +197103 430040370010150 +197141 430040390170070 +197169 430040420010230 +197172 430040420060190 +197180 430040420160090 +197196 430040440010120 +197206 430040450010180 +197245 430040470020100 +197256 430040470160080 +197269 430040480010140 +197280 430040490010120 +197283 430040490060070 +197290 430040500010090 +197313 430040510090060 +197320 430040520010090 +197327 430040520110100 +197335 430040530010170 +197342 430040530090100 +197435 430050060030170 +197441 430050060070060 +197448 430050070010270 +197451 430050070050230 +197453 430050070060130 +197455 430050070100090 +197467 430050080010110 +197497 430050100010140 +197509 430050110010160 +197521 430050120010120 +197526 430050120080050 +197533 430050130010150 +197552 430050140110130 +430050140130110 +430050140160080 +197563 430050150050100 +197571 430050160020120 +197580 430050170010110 +197610 430050190060210 +197613 430050190100170 +197625 430050190290100 +197642 430050200150080 +197663 430050220010210 +197671 430050230020080 +197688 430050240030290 +197715 430050250030220 +197737 430050260010160 +197748 430050270020090 +197757 430050280050290 +197784 430050300010300 +197788 430050300080030 +197792 430050300120190 +197822 430050320080100 +197843 430050340100050 +197865 430050360010310 +197871 430050360090230 +197876 430050360120080 +197889 430050370020080 +197905 430050380050160 +197911 430050380110070 +197914 430050390010110 +197929 430050400020080 +197939 430050420020110 +197980 430050450010090 +198057 430060050050220 +198063 430060050080070 +198075 430060060010100 +198082 430060070010150 +198092 430060080010290 +198103 430060090010110 +198114 430060100010070 +198145 430060110120070 +198155 430060120040120 +198167 430060130010160 +198182 430060140010180 +198198 430060150030100 +198200 430060150050080 +198213 430060160010200 +198265 430060200010070 +198296 430060220120080 +198326 430060240010250 +198328 430060240030120 +198347 430060250020110 +198351 430060250090040 +198358 430060260060190 +198361 430060260090160 +198400 430060280010110 +198413 430060290040140 +430060290060120 +198424 430060300010140 +198427 430060300040090 +198444 430060310110090 +198453 430060320010300 +198457 430060320080240 +198489 430060340010100 +198491 430060340050070 +198496 430060350010100 +198517 430060360020090 +198525 430060370010360 +198555 430060390010230 +198561 430060390100150 +198574 430060400010280 +198599 430060410010160 +198603 430060410080100 +198612 430060420020240 +198625 430060420180080 +198634 430060430040060 +198639 430060440010140 +198653 430060450010100 +198674 430060460030150 +198678 430060460090090 +198688 430060470030070 +198709 430060500010170 +198734 430060510120110 +198760 430060520070090 +198767 430060530010270 +198771 430060530080210 +198832 430060570010190 +198848 430060580010150 +198876 430060600010160 +198882 430060600090090 +198889 430060610030170 +198891 430060610010100 +198927 430060640020240 +198933 430060640090160 +198946 430060650020190 +430060650030180 +198950 430060650080130 +198972 430060670010100 +198980 430060680010240 +198982 430060680050200 +198994 430060690050080 +199001 430060700010160 +199014 430060710010140 +199028 430070010020210 +199053 430070030010240 +199096 430070060010180 +199117 430070070110100 +199128 430070080060130 +199164 430070110100040 +199176 430070120100050 +199180 430070120160070 +199209 430070150050070 +199217 430070160060110 +199233 430070170080140 +199253 430070180100160 +199279 430070200010090 +199289 430070210040080 +199297 430070220010170 +199336 430070250010110 +199346 430070260020070 +199351 430070260090110 +199359 430070270020040 +199362 430070270060080 +199367 430070270110040 +199378 430070280100070 +199382 430070280140030 +199397 430070290010070 +199408 430070300060120 +199423 430070310100120 +430070310110110 +199452 430070330010150 +199475 430070350010140 +199500 430070360060150 +199524 430070370150090 +199534 430070380010160 +199551 430070390010200 +199561 430070390140070 +199566 430070400010130 +199575 430070410010060 +199580 430070410070100 +199589 430070420020190 +199631 430070450110080 +199635 430070460010120 +199637 430070460040090 +199644 430070470010080 +199671 430070500010300 +199681 430070510020160 +199696 430070520030090 +199706 430070520140080 +199751 430080030150130 +199754 430080040030070 +199771 430080060010080 +199790 430080070060130 +199830 430080100030220 +199838 430080100130110 +199848 430080110010040 +430080110040020 +199853 430080110060120 +199865 430080120070220 +199885 430080130010140 +199887 430080130060100 +199896 430080140040190 +199906 430080140170060 +199913 430080140230080 +199919 430080150010090 +199944 430080170010140 +199969 430080190010070 +199974 430080190090090 +200002 430080200130090 +200009 430080210010210 +200025 430080220010150 +200031 430080220090080 +200037 430080230020250 +200058 430080240010080 +200067 430080240120050 +200076 430080250010050 +200079 430080250070110 +200093 430080260090150 +200102 430080270010070 +200108 430080280010270 +200116 430080280110180 +200132 430080290020170 +200136 430080290080110 +200142 430080300010070 +200147 430080310010290 +200171 430080330010160 +200179 430080330110060 +200183 430080340010180 +200187 430080340070120 +200211 430080360010080 +200216 430080370010050 +200247 430080390030070 +200252 430080390100140 +200265 430080400010190 +200269 430080400070100 +200282 430080410080120 +200291 430080420010300 +200294 430080420050090 +200300 430080420150170 +200313 430080430010160 +200343 430080440220110 +200367 430080450010080 +200394 430080470110110 +200405 430080480050130 +200407 430080480080100 +200414 430080490010150 +200439 430080510030150 +200450 430080520010090 +200452 430080520050050 +200463 430080520160150 +200488 430080540010110 +200496 430080540120140 +200515 430080550100050 +200530 430080560010110 +200546 430080570010120 +200555 430080580010120 +200558 430080580060070 +200564 430080590010060 +200588 430090020070120 +430090020080110 +200591 430090020090070 +200600 430090030010180 +200617 430090040020110 +200626 430090040120060 +200631 430090050010090 +200653 430090070020120 +200676 430090080010190 +200681 430090080060070 +200693 430090090010050 +200697 430090090060070 +200703 430090090130050 +200708 430090100010080 +200714 430090110010290 +200727 430090110160090 +200743 430090120020050 +200746 430090120070030 +200770 430090150010080 +200776 430090150100130 +200789 430090160010170 +200802 430090160190090 +200813 430090170010140 +200815 430090170060100 +200823 430090170160050 +200846 430090190040160 +430090190050150 +200851 430090190100060 +200863 430090200070120 +430090200080110 +200886 430090210160080 +200893 430090220010090 +200900 430090220100120 +200908 430090230010110 +200919 430090240010080 +200924 430090240110140 +430090240130120 +200927 430090240170080 +200934 430090250010140 +200940 430090250090070 +200946 430090260010100 +200953 430090270010190 +200972 430090280050110 +200982 430090290010070 +200987 430090290080050 +200994 430090300050190 +200996 430090300070160 +201001 430090300140050 +201009 430090310010070 +201024 430090320010110 +201033 430090330010100 +201042 430090340030110 +201053 430090350010060 +201057 430090350080100 +201068 430090360040090 +201071 430090360060030 +201077 430090370010140 +201089 430090380010040 +430090380040020 +201097 430090390020210 +201124 430090400110070 +201129 430090410010110 +201139 430090410120040 +201148 430100010030210 +430100010050190 +201234 430100070010150 +201238 430100070080090 +201261 430100090070060 +201274 430100100010120 +201286 430100100130080 +201307 430100120010390 +201344 430100140080170 +201365 430100160020100 +201386 430100170010160 +201390 430100170080090 +201425 430100200010110 +201435 430100210010140 +430100210030120 +201467 430100240070160 +430100240090140 +201478 430100250010090 +201486 430100250100150 +201498 430100260020110 +201507 430100270010110 +201531 430100290010090 +201549 430100310010080 +201554 430100320010180 +201556 430100320050140 +201566 430100330010210 +201581 430100340010160 +201584 430100340060110 +201590 430100340130040 +201593 430100350010360 +201596 430100350020100 +201606 430100360010130 +201616 430100360150050 +201641 430100380120120 +201683 430100410070160 +201717 430110020010200 +201737 430110030070060 +430110030080050 +201743 430110040010250 +201779 430110060030030 +201789 430110070010110 +201796 430110080010150 +201798 430110080050110 +201806 430110090010080 +201812 430110090090150 +201825 430110100010140 +201838 430110110040140 +201852 430110120010080 +201854 430110120060040 +201867 430110130090090 +201876 430110140010220 +201882 430110150020090 +201894 430110160010140 +201924 430110190010160 +201940 430110200050040 +201952 430110210010280 +201955 430110210070230 +201964 430110220010130 +201972 430110230010080 +201978 430110240010140 +201980 430110240050100 +201989 430110250010110 +202019 430110270010200 +202021 430110270030020 +202023 430110270050160 +202046 430110280120070 +202087 430110310140080 +202094 430110310240090 +202096 430110310260070 +202112 430110320160120 +430110320180100 +202122 430110330010220 +202140 430110340020040 +202143 430110340060060 +430110340080040 +202154 430110360010070 +202156 430110360050040 +202159 430110370010190 +202190 430110390010060 +202195 430110390070130 +202201 430110390140060 +202207 430110400010150 +202210 430110400060100 +202230 430110410130270 +430110410140260 +202234 430110410150050 +202238 430110420010060 +202242 430110420090120 +202249 430110420160050 +202254 430110430020080 +202257 430110430070030 +202274 430110440170100 +202317 430110470100100 +202346 430110490010340 +202357 430110500020170 +202376 430110510080310 +202403 430110530010080 +202417 430110540110170 +202437 430110550090130 +202451 430110560060170 +202456 430110560130100 +202464 430110570010170 +202537 430120040010240 +202559 430120060010130 +202575 430120070010260 +202578 430120070050110 +202596 430120090010100 +202619 430120100010080 +202646 430120120110060 +202658 430120130120130 +430120130130120 +202679 430120140100150 +202682 430120150010040 +202685 430120150050090 +202701 430120160130120 +202711 430120170010190 +202738 430120190010160 +202742 430120190070050 +202745 430120190120060 +202771 430120210130060 +430120210140050 +202795 430120230060100 +202807 430120240030220 +202809 430120240050140 +202819 430120240190050 +202843 430120260010060 +202855 430120260180080 +202867 430120270090070 +202880 430120280010050 +202886 430120280060100 +202906 430120290110050 +202912 430120300040110 +202932 430120320020100 +202941 430120330040050 +202947 430120340010340 +202951 430120340060120 +202960 430120340190100 +202974 430120350010120 +202981 430120350140100 +202990 430120350250090 +203018 430120370030100 +203024 430120380020200 +203029 430120380080140 +203040 430120390010320 +203044 430120390070260 +203068 430120410010120 +203088 430120420120090 +203094 430120430010110 +203108 430120440050220 +203163 430120480010440 +203173 430120480140310 +430120480140110 +203186 430120490080130 +203197 430120500020080 +203205 430120500100100 +203219 430130010070150 +203221 430130010110130 +203244 430130020040130 +203253 430130030010200 +203301 430130060060080 +430130060080060 +203310 430130070040130 +203318 430130080010120 +203326 430130080130120 +203333 430130090010170 +203335 430130090050130 +203348 430130100010240 +203365 430130110010120 +203368 430130110060080 +203386 430130120150060 +203398 430130130100040 +203420 430130150010110 +203422 430130150060070 +203429 430130160030150 +203456 430130180120140 +203467 430130190010140 +203473 430130190090060 +203482 430130200030170 +203504 430130210100110 +203507 430130210130080 +203520 430130230010160 +203538 430130240070080 +430130240090060 +203544 430130250020130 +203550 430130250110030 +203554 430130260010130 +203582 430130270110070 +203595 430130290010240 +203600 430130290100160 +203624 430130310040140 +203635 430130320010170 +203647 430130330010060 +203656 430130330110110 +203666 430130340010070 +203670 430130340080080 +203677 430130350010080 +203686 430130360010070 +203688 430130360050030 +203691 430130360080120 +203699 430130370010110 +430130370040080 +203710 430130380010080 +203718 430130380110110 +203749 430140020130070 +203755 430140030020200 +203775 430140050010120 +430140050040090 +203782 430140060010130 +203791 430140060140090 +203798 430140070010090 +203812 430140080010110 +430140080040080 +203820 430140090010140 +203822 430140090050100 +203835 430140090210070 +203839 430140100010130 +203864 430140110010120 +203886 430140120030230 +203888 430140120050150 +203906 430140130030170 +430140130030100 +203940 430140160060270 +203953 430140170050120 +203962 430140170170110 +203977 430140190010170 +203989 430140200010190 +204005 430140210010130 +204030 430140220010190 +204037 430140220090110 +204049 430140230040250 +204093 430140260010260 +204118 430140270090080 +204131 430140280010100 +204133 430140280030080 +204140 430140280110160 +204153 430140290020090 +204162 430140300010110 +204176 430140310030150 +204205 430150020010090 +204214 430150020110060 +204235 430150040070230 +204237 430150040080140 +204255 430150050080180 +204269 430150060010230 +204274 430150060100140 +204288 430150070010180 +204304 430150080010140 +204351 430150110010160 +204364 430150120010120 +204369 430150120080050 +204373 430150130010150 +204391 430150150010140 +204400 430150150150130 +204437 430150170010060 +204445 430150180060060 +204450 430150190010110 +204474 430150200010140 +204482 430150200150060 +204497 430150210020150 +204529 430150240010140 +204531 430150240020100 +204550 430150250030130 +204581 430150270010090 +204588 430160010010060 +204595 430160020050120 +204615 430160040020150 +204622 430160040110060 +204627 430160040170100 +204640 430160050090070 +204655 430160070020280 +204663 430160070120100 +204670 430160070230060 +204758 430160150010180 +204784 430160170010300 +204789 430160170090230 +204809 430160180010120 +430160180040110 +204819 430160190010060 +204824 430160190080200 +430160190100180 +204829 430160190160120 +204843 430160200030200 +204862 430160210030110 +204872 430160210120170 +204911 430160230120130 +204959 430160260110100 +204974 430160270120070 +204997 430160290010130 +205000 430160290050090 +205006 430160300010130 +205011 430160300070070 +205015 430160300140070 +205021 430160310010050 +205024 430160320010140 +205036 430160320160090 +205042 430160330010080 +205060 430170010050120 +205066 430170010130040 +205070 430170010170240 +205077 430170020020140 +205080 430170020080080 +205087 430170030010170 +205108 430170040100050 +205113 430170050060180 +205144 430170070010100 +205160 430170080130060 +205165 430170080200050 +205207 430170110170160 +205216 430170110290040 +205254 430170130070140 +205274 430170140130120 +205283 430170150020070 +205293 430170160010120 +205320 430170190020120 +205343 430170210020170 +205345 430170210070130 +205356 430170210200070 +205369 430170220100120 +205371 430170220130090 +205383 430170230140130 +205389 430170230220050 +205393 430170240010280 +205395 430170240020210 +430170240020120 +205412 430170250010390 +205423 430170250140060 +205435 430170260100110 +205463 430180020010170 +205503 430180040110040 +205506 430180050010050 +205511 430180050060040 +205525 430180060030040 +205535 430180070010050 +205539 430180070070050 +205545 430180080010140 +205547 430180080030050 +205551 430180080080060 +205559 430180090050110 +205561 430180090080080 +205589 430180110010220 +205592 430180110070170 +205596 430180110130110 +205636 430180140050110 +205692 430180170010170 +205706 430180170190040 +205711 430180180010110 +205744 430180200010080 +205765 430180210040060 +205770 430180210100060 +205774 430180220010160 +205781 430180220130050 +205785 430180230010160 +205815 430180250080100 +205826 430180250220030 +205829 430180260010230 +205865 430180280150130 +205881 430180290090070 +205891 430180300030130 +205900 430180310010140 +205910 430180310160090 +205916 430180320020120 +205937 430180330140080 +205943 430180340010130 +205951 430180350010190 +205966 430180360010420 +205976 430180360130210 +205999 430180370010080 +206004 430180370100330 +206007 430180370130050 +206032 430180380010070 +206043 430180380170080 +206048 430180390010180 +206062 430180400040060 +206097 430190030060060 +430190030070050 +206112 430190040080150 +430190040100130 +206116 430190040160070 +206134 430190050150050 +206149 430190060110030 +206154 430190060140160 +206165 430190070010180 +206170 430190070090100 +206193 430190090080060 +206202 430190100010190 +206208 430190100100110 +206217 430190110010230 +206219 430190110030120 +206239 430190120120170 +206280 430190140110070 +206289 430190150010060 +206296 430190150080080 +206302 430190150160090 +206310 430190160010060 +206353 430190190120090 +206364 430190200010240 +206384 430190210010210 +206390 430190210100050 +206396 430190210170060 +206401 430190220010060 +206407 430190230040200 +206437 430190240010120 +206441 430190240090050 +206445 430190240150150 +206486 430190260010180 +206488 430190260040080 +206495 430190260150050 +206502 430190270010080 +206519 430190280010150 +206522 430190280030050 +206548 430190300060040 +206559 430190310010340 +206604 430190330010290 +206636 430190350120050 +206647 430190360050070 +206653 430190370020080 +206660 430190380010250 +206715 430190400080120 +206787 430200020180140 +206851 430200070020190 +206884 430200090010100 +206903 430200110090280 +206911 430200120030200 +206929 430200130020060 +430200130050030 +206933 430200130080130 +206954 430200140130050 +206958 430200150010080 +430200150040050 +206964 430200150090210 +430200150100050 +206970 430200150170100 +206978 430200160010040 +206981 430200160050090 +206988 430200170010350 +207003 430200170200160 +207021 430200180050110 +207057 430200190320040 +207076 430200210010150 +207091 430200220060050 +207096 430200230010070 +207101 430200230080040 +207106 430200240010150 +207120 430200250010080 +207126 430200250100360 +207178 430200260270030 +207181 430200270010310 +207211 430200280040090 +207220 430200290010140 +207237 430200300040180 +207250 430200310010220 +207253 430200310050100 +207303 430210030010060 +207308 430210030070070 +207334 430210040100070 +207340 430210050010080 +430210050050050 +207346 430210050100030 +207350 430210060010140 +207374 430210070010130 +207386 430210070150130 +207388 430210070180050 +207401 430210080010230 +207421 430210090010130 +207433 430210100010110 +207460 430210120010060 +207469 430210120110050 +207471 430210120160050 +207500 430210150040120 +207504 430210150100060 +207509 430210150160090 +430210150180070 +207516 430210150250060 +207521 430210160010080 +430210160050040 +207526 430210160090090 +430210160110070 +207533 430210160180060 +207538 430210170010080 +207540 430210170050040 +207548 430210170130060 +207553 430210170200110 +430210170220090 +207556 430210170260050 +207560 430210170310070 +207567 430210180030270 +207569 430210180050090 +207577 430210180140150 +207597 430210190110060 +207618 430210200230070 +430210200240060 +207625 430210210010110 +207629 430210210090040 +207633 430210220010160 +207636 430210220050090 +207638 430210220060050 +207646 430210230010130 +207658 430210230160070 +207664 430210230260050 +207683 430210240140070 +207709 440010010080540 +207724 440010020020360 +207752 440010040020320 +207781 440010060070120 +440010060080110 +207791 440010070010180 +207851 440010100110390 +207893 440010130020330 +207960 440010160030330 +208022 440010200010220 +208042 440010210030370 +208083 440010240020320 +208085 440010240050300 +208137 440020020020100 +208154 440020030020060 +208168 440020040070100 +208213 440020070050090 +440020070070080 +208280 440020120060080 +208287 440020130010070 +208303 440020140130180 +440020140150160 +208332 440020160050430 +208406 440020200010180 +208423 440020210020090 +208439 440020220070580 +208453 440020220220120 +208472 440020240010170 +208484 440020250010190 +208492 440020250140070 +208527 440020280010110 +208540 440020290040250 +208562 440020300010380 +208566 440020300050170 +208593 440020320010110 +208628 440020340080210 +440020340110190 +208646 440020360010200 +208667 440020370060120 +208732 440020400090080 +208801 440020450090080 +208852 440030020020430 +208886 440030040030110 +208901 440030060010220 +208908 440030060100050 +208964 440030100010160 +209002 440030120010260 +209043 440030130230070 +209061 440030150010150 +440030150010110 +209096 440030170030120 +209099 440030170060080 +209121 440030190010460 +209162 440030220010150 +209164 440030220050120 +209181 440030230010140 +209220 440030250180140 +209247 440040010010340 +209340 440040080010580 +209344 440040080090500 +209358 440040100010330 +209366 440040100110230 +209428 440040130100070 +209436 440040130180070 +209460 440040160010060 +209506 440040190010310 +209532 440040210010210 +209581 440040240110580 +440040240120570 +209598 440040250020390 +209661 440040290040410 +209696 440040310020230 +209777 440040350080070 +209783 440040360010300 +209789 440040360040100 +209838 440050030010250 +209840 440050030050220 +209923 440050080010110 +209925 440050080060070 +209931 440050080130040 +440050080160020 +209947 440050090140140 +210032 440050150020220 +210104 440050190110180 +210165 440050230010210 +210196 440050240150070 +210202 440050250010220 +210205 440050250070170 +210229 440050260130050 +210243 440050280010280 +210251 440050280120170 +210266 440050290010120 +210344 440050350010140 +210350 440050350070090 +210358 440050360010280 +210401 440050380020120 +210425 440050390010080 +210502 440060020030190 +210516 440060030030170 +210638 440060110040120 +210670 440060130050370 +440060130060360 +210684 440060140030190 +210700 440060150020160 +210715 440070010010070 +210721 440070020010070 +210746 440070030020210 +210793 440070050120160 +210806 440070060010200 +210823 440070070020100 +211085 440070250030120 +211105 440070260130080 +440070260140070 +211117 440070270080200 +211166 440070310080190 +211188 440070330010190 +211229 440070350010290 +211235 440070350060070 +211270 440070370060150 +211321 440070400010240 +211328 440070400100140 +211368 440070420140180 +211372 440070420190130 +211404 440070440010640 +211461 440070480090140 +211490 440070510010200 +211501 440070510150060 +211562 440070560020160 +440070560030150 +211610 440070590070070 +440070590080060 +211618 440070600010130 +211622 440070600080070 +211720 440080070010090 +211743 440080090010370 +211764 440080100080100 +211804 440080130010050 +211826 440080140010090 +211837 440080150010090 +211870 440080180010120 +211880 440080190010150 +211893 440080200010210 +211952 440080240010180 +211955 440080240060140 +211983 440080260010230 +211986 440080260070150 +212007 440080270050340 +212039 440080290010110 +212058 440080300120060 +212065 440080310010110 +212067 440080310060080 +212080 440080320010470 +212109 440080330080130 +212120 440080340010200 +212124 440080340080140 +440080340100120 +212160 440080360120090 +212163 440080360150020 +212188 440080390010100 +212220 440090010010390 +212238 440090020110140 +212269 440090040070080 +212277 440090050010040 +440090050030030 +212282 440090050060070 +212349 440090100100080 +212356 440090100180050 +440090100210030 +212382 440090110220140 +212397 440090130010320 +440090130040300 +212423 440090150010370 +212460 440090170100270 +212464 440090170160210 +212487 440090180020080 +212511 440090200020140 +212528 440090210070250 +212558 440090220120060 +212579 440090240080110 +212607 440090260130050 +212618 440090270100220 +212636 440090280020210 +212720 440090340020130 +212722 440090340060090 +212735 440090350020140 +212783 440090380090060 +212789 440090380200060 +212795 440090390010290 +212828 440090400130070 +212832 440090400180020 +212921 440100030180030 +212925 440100040010100 +212930 440100040090030 +212934 440100040120150 +213021 440100110070260 +213044 440100130020090 +213046 440100130070050 +213053 440100140010120 +213056 440100140050020 +213065 440100150020130 +213093 440100170150270 +213117 440100190010270 +213124 440100190110050 +213139 440100210010170 +213143 440100210080110 +213153 440100220010330 +213217 440100250010150 +213232 440100260060070 +213248 440100280010140 +213274 440100300020420 +213290 440100300210230 +213296 440100310020140 +440100310030130 +213345 440100340030270 +213348 440100340070220 +213363 440100360010650 +213401 440100380140170 +213417 440100390020190 +213465 440100420080130 +213491 440100440010180 +213506 440100450020200 +213531 440100460100220 +213539 440100470110090 +213560 440110010010200 +213587 440110030010100 +213600 440110040070280 +213611 440110050120120 +213644 440110070040080 +440110070080050 +213652 440110080010130 +213654 440110080030020 +213665 440110090010140 +213683 440110110020160 +213716 440110130010360 +213726 440110130140240 +213736 440110140010140 +213747 440110150010180 +213763 440110160010170 +213768 440110160080110 +213807 440110180090120 +213832 440110190190080 +213838 440110200010210 +213883 440110220170340 +213953 440110280010220 +213971 440110290010290 +213976 440110290070240 +214015 440120030010350 +214018 440120030010060 +214079 440120070020100 +214093 440120070200040 +214105 440120080010110 +214119 440120080170090 +214133 440120090060090 +214172 440120110020300 +214176 440120110080240 +214245 440120150010050 +214254 440120150120060 +214281 440120170170070 +214294 440120180010140 +214361 440120220010080 +214437 440130020080180 +214535 440130090010320 +214544 440130100020120 +214566 440130110020150 +214568 440130110030050 +214644 440130150150140 +214752 440130220100200 +214769 440130230020260 +214792 440130250070220 +440130250080210 +214797 440130250160130 +214870 440130300010270 +214889 440130320020350 +214903 440130330120150 +214915 440130340010200 +214930 440130350020110 +214961 440130380010280 +214990 440130400060280 +214995 440130410010030 +215003 440130410090160 +215009 440130410170080 +215076 440130460010160 +215097 440130460290050 +215102 440130470010190 +215291 440140080020160 +215304 440140090030220 +215306 440140090060190 +215311 440140090100060 +215334 440140110120090 +215389 440140150020050 +440140150030040 +215584 440150010020190 +215600 440150020010340 +215676 440150050110110 +215699 440150070010340 +215708 440150070120240 +215729 440150080020130 +215753 440150100070160 +215802 440150130080050 +215809 440150140010140 +215819 440150150020540 +215824 440150150090470 +215848 440150170030190 +215916 440150220120230 +215935 440150230010230 +215959 440150240020150 +215961 440150240040130 +216005 440150280010300 +216086 440150360010240 +216091 440150360090160 +216115 440150380040160 +216167 440160010100230 +216193 440160030090210 +216204 440160030210080 +216276 440160090020210 +216287 440160090170060 +216300 440160100110080 +216357 440160140020220 +216386 440160150090140 +216406 440160160080150 +216422 440160170080150 +440160170090140 +216439 440160180090160 +216462 440160190010080 +216479 440160200020260 +216516 440160230090240 +216586 440160280060090 +216605 440160300020110 +216607 440160300060070 +216614 440160310010140 +216672 440160350090050 +216678 440160360010210 +216686 440160360120050 +216696 440160370010270 +216726 440160380120040 +216782 440170030010240 +216862 440170060130130 +216864 440170060150110 +216900 440170100010220 +216917 440170110010230 +216924 440170110150100 +216951 440170130030190 +216998 440170150100140 +217058 440170180120090 +217083 440170190090270 +217085 440170190100190 +217127 440170220010160 +217133 440170220100080 +217156 440170230160070 +217160 440170240010380 +217191 440170260010400 +217233 440170280100120 +217263 440170300010370 +217289 440170320010150 +217295 440170320080080 +217306 440170340010190 +217368 440180040010120 +217403 440180060060220 +217459 440180090010370 +217469 440180090160230 +217475 440180100070150 +217509 440180130010120 +217519 440180140010480 +217536 440180140220070 +217614 440180200010230 +217624 440180210040080 +217756 440190020010080 +217768 440190020150060 +217774 440190030010050 +217780 440190030070060 +217787 440190040010210 +217790 440190040080150 +217793 440190040170110 +217874 440190100080140 +217939 440190130220080 +217955 440190150010180 +218068 440190210190120 +218103 440190240030630 +218113 440190250010490 +218123 440190250110100 +218132 440190260020280 +218146 440190260210090 +218186 440190280080050 +218208 440190300010110 +218230 440190320010170 +218261 440190340010040 +218276 440190350030260 +218280 440190350080200 +218297 440190360010120 +218347 440190400010200 +218398 440200030050110 +218512 440200100080110 +218563 440200140010300 +218589 440200160010140 +218624 440200180060380 +218684 440200220030320 +218688 440200220110240 +218699 440200230110070 +218733 440200250030170 +218747 440200260020130 +218787 440200290010300 +218811 440200310030130 +218849 440200340010150 +218862 440200350010260 +218871 440200350110150 +218877 440200350190080 +218908 440200380060090 +218921 440210010010210 +218968 440210040010180 +219067 440210110020410 +219082 440210110190240 +219113 440210130010300 +219136 440210140010100 +219138 440210140060060 +219207 440210200070180 +219210 440210200100020 +219225 440210210010240 +219247 440210220040040 +219252 440210230010050 +219267 440210240070070 +219273 440210240150160 +219311 440210260170160 +219346 440210280010360 +219389 440210290130090 +219421 440210310050190 +219467 440210340090150 +219497 440210360070030 +219501 440210370010170 +219514 440210370190260 +440210370220240 +219536 440210390010240 +219551 440210390170080 +219569 440210400150080 +219591 440220020010070 +219598 440220020130820 +440220030010810 +219619 440220030270090 +219625 440220040010470 +219637 440220050020300 +219652 440220050220100 +219682 440220070080080 +219690 440220080010050 +440220080040030 +219695 440220080070110 +219719 440220100010040 +440220100030030 +219724 440220100060180 +219738 440220110010170 +219753 440220120010230 +219784 440220140010350 +440220140040330 +219840 440220180030170 +219854 440220190010180 +440220190030160 +219892 440220210020110 +219910 440220220130120 +219932 440220240010200 +219950 440220250070150 +219969 440220260090100 +219979 440220270010100 +219982 440220270070050 +219986 440220270120030 +219990 440220280010100 +219998 440220280120070 +220052 440230010030190 +220078 440230030010260 +220082 440230030070070 +220100 440230040010080 +220109 440230050010190 +220112 440230050050060 +220117 440230050110090 +220125 440230060030300 +220127 440230060010110 +220190 440230090150150 +220205 440230100010260 +220227 440230110010240 +220270 440230140010180 +220284 440230150010200 +220321 440230170030190 +220344 440230180110170 +220371 440230200010230 +220376 440230200080170 +220388 440230210010320 +220417 440230220090070 +220424 440230230020360 +220430 440230230080180 +220445 440230240010110 +220481 440230270180040 +220513 440230300010200 +220540 440230320010280 +220562 440230340010210 +220566 440230340040050 +220571 440230340100040 +220590 440240010010210 +220607 440240020010320 +220611 440240020080260 +440240020090250 +220645 440240050030420 +440240050030290 +220683 440240100010080 +220688 440240100100620 +220698 440240110030450 +220733 440240140010440 +220782 440240170010260 +220802 440240190010170 +220818 440240200020110 +220832 440240210060140 +220848 440240220120100 +220894 440240250010350 +220913 440240260010100 +220961 440250020150180 +220986 440250050050150 +440250050010140 +221025 440250070110090 +221048 440250090010210 +221063 440250100010130 +221104 440250120010130 +221138 440250140160530 +440250140170520 +221178 440250170010470 +221218 440250200030160 +221257 440250220130040 +221292 440250240020330 +221294 440250240050300 +221325 440250250090160 +221339 440250260110100 +221364 440260010010100 +221371 440260010120400 +221376 440260020070280 +221401 440260040010350 +221420 440260050060110 +221431 440260060020280 +221453 440260070140070 +221459 440260080010100 +221468 440260090050910 +221545 440260140090170 +221560 440260150010050 +440260150040030 +221565 440260150070090 +221581 440260160090620 +221630 440260190020370 +221684 440260220180300 +221711 440260240010180 +221717 440260240110020 +221725 440260250010380 +221728 440260250070100 +221737 440260260010240 +221745 440260260120130 +221752 440260270020050 +221757 440260270060030 +221772 440260290010320 +221814 440260310060110 +221825 440260320010130 +221965 440270100010260 +440270100030240 +222006 440270120080220 +222046 440270150010110 +222058 440270160040180 +222094 440270200010200 +222115 440270210050270 +222120 440270210150190 +222138 440270220020150 +222158 440270240010190 +222160 440270240020030 +222166 440270240100100 +222175 440270250020020 +222178 440270250040110 +222244 440270300100130 +222252 440270310010190 +222283 440270330130090 +222291 440270340020110 +222350 440270390120130 +222401 440270420010120 +222430 440270440020140 +222451 440280010020080 +222479 440280030010200 +222505 440280040130190 +222567 440280080010230 +222586 440280090010270 +222651 440280150010260 +222670 440280160010150 +222695 440280170160380 +222701 440280170190330 +222726 440280190010140 +222738 440280200010190 +222756 440280210010250 +222777 440280220010180 +222791 440280230010350 +222827 440280250010460 +222830 440280250070410 +222834 440280250130350 +222977 450010050010250 +223015 450010080010200 +223031 450010090010410 +223045 450010090200230 +223087 450010130060290 +223089 450010130040260 +223101 450010130190120 +223132 450010160010180 +223148 450010170010170 +223155 450010170120070 +223162 450010180010260 +223275 450010250190070 +223351 450010320020130 +223366 450020010020070 +223375 450020010090130 +223399 450020030010430 +223428 450020040140100 +223627 450020210010060 +223632 450020210080050 +223638 450020220010050 +223644 450020220060050 +223660 450020240010120 +223729 450020290020220 +223797 450030040130140 +223861 450030080070170 +450030080090100 +223864 450030080120070 +223881 450030090060270 +223889 450030100020170 +223895 450030110010100 +223903 450030120010040 +223923 450030130100130 +223957 450030190010230 +223959 450030190040210 +223976 450030200020140 +224139 450040020010070 +224170 450040050010410 +224183 450040060020240 +224220 450040090130080 +224326 450040160010560 +224349 450040160290280 +224367 450040170020070 +224383 450040180160060 +224419 450040210020080 +224432 450040230020070 +224502 450050030100140 +224515 450050050010200 +224549 450050080010170 +224572 450050100010200 +224635 450050130080060 +224660 450050150020080 +224669 450050150100290 +224717 450050170010320 +224745 450050180030200 +224762 450050190010220 +224779 450050200010060 +224785 450050200080310 +224790 450050210020230 +224810 450060010040070 +224824 450060030020120 +224835 450060040010260 +224841 450060040110170 +224854 450060050010130 +224865 450060060010200 +224867 450060060040170 +224892 450060080060050 +224896 450060090010120 +224986 450060160010210 +224988 450060160040180 +450060160040100 +225001 450060170010250 +225030 450060190090250 +225047 450060200010090 +225103 450070010030160 +225140 450070030060060 +225159 450070040020250 +225227 450070070100080 +225234 450070070180110 +225237 450070070250060 +225260 450070090070090 +225323 450070140010060 +225340 450070150080040 +225342 450070150130040 +225348 450070160030050 +225350 450070160080050 +225366 450070180010130 +225392 450070190080060 +225398 450070200010170 +225400 450070200030060 +225410 450070210010140 +225511 450080030010450 +225602 450080090010140 +225612 450080090160100 +225618 450080100010160 +225632 450080110010310 +225659 450080120030100 +225670 450080130010060 +225676 450080130080080 +225684 450080140010080 +225697 450080150130060 +225703 450080160010110 +225713 450080170010040 +225718 450080170070110 +225731 450080180010160 +225785 450080220010110 +225830 450080250010080 +225847 450080260120040 +225857 450080270010160 +225872 450080280010150 +225899 450080300010050 +225902 450080300080050 +225905 450080300130050 +225912 450080310060080 +225978 450080360020120 +225998 450080380010390 +226034 450090010010060 +226037 450090010070190 +226092 450090050120100 +226102 450090060010080 +226112 450090060120060 +226118 450090070020060 +226128 450090080040080 +226142 450090090010140 +226187 450090120080080 +226194 450090130020080 +226213 450090150010120 +226239 450090170010280 +226272 450090190010110 +450090190040090 +226279 450090200010100 +226289 450090200120090 +226355 450090250020170 +226377 450090260060070 +226386 450090270010200 +226413 450090290030180 +226464 450090330020170 +450090330030160 +226478 450100010010170 +226496 450100020010100 +226529 450100050010140 +226531 450100050050110 +226543 450100060010210 +226547 450100060080150 +226568 450100080020470 +226571 450100080040140 +226599 450100090110120 +226618 450100110010100 +226666 450100150010050 +226671 450100150080080 +226683 450100160070080 +450100160100060 +226701 450100180020040 +226723 450100190020050 +226727 450100190070140 +226740 450100200050120 +226750 450100210010160 +226766 450110010010080 +226791 450110020110320 +450110020130300 +226796 450110020200230 +226800 450110030010170 +226835 450110060010110 +226844 450110070010110 +226846 450110070030060 +226857 450110080020200 +226875 450110090020320 +226901 450110110010050 +226921 450110120010170 +226944 450110130060210 +226962 450110150010140 +226974 450110160010070 +226982 450110160100070 +227023 450110190010060 +227043 450110210010120 +227057 450110220080180 +227064 450110220120080 +227086 450110240010240 +227106 450110250060330 +227129 450110260070100 +227139 450110270020110 +227171 450110300010250 +227188 450110320010110 +227238 450110360120070 +227245 450120010040220 +227251 450120010030150 +227276 450120020150130 +227303 450120030210110 +227313 450120040010300 +227419 450120140010070 +227435 450120160010130 +227454 450120180010090 +227462 450120190040170 +227469 450120190100070 +227477 450120200020070 +227483 450120200090040 +227512 450130010060070 +227564 450130040090050 +227628 450130080010080 +227661 450130090230060 +227678 450130110030110 +227712 450130130010170 +227739 450140010010090 +227773 450140040010070 +227853 450140080150090 +227864 450140090010120 +227893 450140110010160 +450140110030150 +227917 450140130060110 +227925 450140140010200 +227936 450140140140070 +227943 450140150010110 +227951 450140150130100 +228089 450150030100090 +228098 450150040010200 +228154 450150080010360 +228172 450150090100120 +228183 450150100020080 +450150100050060 +228193 450150110040120 +228205 450150120020130 +228240 450150140030220 +228249 450150140160080 +228257 450150150010430 +228329 450150200010270 +228339 450150210030120 +228365 450150230140120 +228375 450150240070150 +228413 450150270070140 +228435 450150290010100 +228445 450150300040550 +228447 450150300010430 +228490 450150330020090 +228501 450160010010300 +228705 450160170040210 +228825 450160250010540 +228872 460010010010430 +228925 460010040010670 +228938 460010050020490 +228990 460010100040340 +229020 460010110060140 +229031 460010120010190 +229033 460010120050160 +229058 460010140010200 +229069 460010150020090 +229082 460010160070070 +229088 460010170030180 +229092 460010170090110 +229119 460010190010120 +229178 460010230010240 +229214 460010260060170 +229228 460010270020110 +229237 460010270140110 +229246 460010280020170 +229269 460010300010270 +229282 460010310030060 +229288 460020010050180 +229303 460020020040110 +229324 460020040020310 +229385 460020080010180 +229403 460020090030220 +229435 460020110010150 +229448 460020110170130 +229490 460020140010130 +229499 460020140160060 +229513 460020160010070 +229521 460030010020150 +229565 460030040030050 +229582 460030050100090 +229683 460030130060170 +229697 460030140010090 +229706 460030150010060 +229719 460030160010140 +229731 460030170010110 +229740 460030170120090 +229771 460030190120090 +229783 460030200030090 +229817 460040010010110 +229826 460040020010100 +229833 460040030010120 +229886 460040060030280 +229933 460040080100080 +229941 460040090010190 +460040090030180 +230031 460040160010050 +230047 460040170160160 +230060 460040180010080 +230074 460040190110200 +230124 460050020060130 +230135 460050030010540 +230147 460050040010280 +230181 460050060060090 +230188 460050070010110 +230192 460050070060060 +230220 460050090010290 +230295 460060020020080 +230302 460060020110100 +230309 460060030010070 +230311 460060030040040 +230317 460060040050110 +230372 460060090020080 +230469 460060150010090 +230487 460060160020100 +230496 460060160140070 +230529 460060190020210 +230532 460060190050140 +230556 460070010010080 +230612 460070050070140 +230631 460070060010070 +230655 460070080010120 +230668 460070090010040 +230689 460070110010090 +230719 460070130020150 +230757 460070150010050 +230776 460070160040070 +230783 460070160120070 +230849 460070220010150 +230867 460070240050100 +230888 460070260010140 +230909 460070280010050 +230914 460070280080060 +230928 460070290040070 +230934 460070290090370 +231002 460070340030210 +231031 460070350010210 +231047 460070360010180 +231082 460070370200100 +231111 460070390100120 +231135 460080010010080 +231152 460080020060050 +231166 460080040010180 +231177 460080040150050 +231184 460080050010170 +231230 460080070070100 +231248 460080080090040 +231252 460080080140030 +231314 460080130020190 +231345 460090020010090 +231372 460090050020180 +231423 460090090010090 +231441 460090100060170 +231458 460090110010130 +231490 460090130010190 +231522 460090150070080 +231551 460090170010060 +231556 460090170080040 +231578 460090190010110 +231593 460090200100160 +231605 460090210010150 +231617 460090220010080 +231623 460090220090080 +231629 460090230010090 +231636 460090240010150 +231638 460090240040120 +231649 460090240160040 +231662 460090250070050 +231672 460090260010120 +231693 460100010060470 +231695 460100010040440 +231755 460100060010140 +231772 460100070080100 +231784 460100080020110 +231795 460100090020120 +231807 460100100020100 +231832 460100120020060 +231839 460100130010070 +231863 460100140020060 +231896 460100170010080 +232024 460100280030060 +232036 460100290030190 +232070 460100320010270 +232090 460110010010060 +232096 460110020010130 +232109 460110030030210 +232157 460110060010060 +232162 460110060080080 +232223 460110120010130 +232250 460110140010210 +232256 460110140100060 +232260 460110150030060 +232283 460110170010140 +232371 460110230010390 +232388 460110240050150 +232408 460110250080210 +232504 460110320010110 +232514 460110330020080 +232522 460110340010110 +232538 460120010050080 +232544 460120020010140 +232559 460120030020220 +232562 460120030050080 +232569 460120030140100 +460120030160030 +232626 460120080100130 +232647 460120100080060 +232670 460120120010240 +232692 460120130010180 +232718 460120150020120 +232735 460120160030120 +232749 460120170010080 +232756 460120170090060 +232762 460120180010140 +232774 460120190010090 +232792 460120210060070 +232816 460120230020100 +232833 460120240090250 +232972 460130030020200 +232983 460130030100060 +233046 460130100010080 +233064 460130110130070 +233083 460130120170050 +233160 460140050190080 +233166 460140060030260 +233188 460140070020080 +233209 460140080030100 +233262 460140120020140 +233268 460140120080080 +233277 460140130020060 +233331 460140160200040 +233342 460140180010080 +233349 460140190020130 +233363 460140200010150 +233374 460140210010220 +233426 460140230200030 +233456 460140250160080 +233463 460140260010030 +233528 460140310010110 +233603 460140370080080 +233616 460140390020110 +233634 460150010040300 +233646 460150020050060 +233655 460150030010370 +233684 460150060010160 +233702 460150080010070 +233714 460150090080120 +233760 460150120030060 +233764 460150120090100 +233772 460150130010080 +233783 460150140060090 +233791 460150150010220 +233796 460150150080160 +233803 460150150160080 +233809 460150160010070 +233817 460150170060100 +233832 460150190010140 +233851 460150210010090 +233860 460150220010130 +233884 460150240010200 +233926 460150270100040 +233938 460150280010230 +233960 460150290090100 +233969 460150310080160 +233983 460150320010100 +233991 460150320110070 +234019 460150350020100 +234027 460150360010090 +234034 460150370020180 +234044 460150370130070 +234054 460150380010070 +234144 460150440070070 +234150 460150450010170 +234187 460150480010070 +234193 460150480090070 +234200 460150490020120 +234212 460150500010180 +234273 460150540140210 +234283 460150550030050 +234287 460150550080050 +234320 460150580020230 +234330 460150580150100 +234355 460160020010200 +234384 460160040010090 +234393 460160050010060 +234401 460160060010140 +234419 460160070110090 +234444 460160100010090 +234475 460160120010140 +234485 460160120170070 +234507 460160150010310 +460160150010030 +234538 460160170010150 +234596 460160220090020 +234653 470010030010620 +234691 470010050020170 +234705 470010060010080 +234714 470010060100170 +234736 470010070080110 +234738 470010070100090 +234747 470010080060260 +234795 470010100090270 +234817 470010120010330 +234854 470010130130260 +234856 470010130160240 +234862 470010140080140 +234879 470010150060080 +234900 470010170010070 +234907 470010170100160 +234921 470010180010150 +234996 470010230010160 +235029 470020020010150 +235050 470020030150110 +235060 470020040010240 +235079 470020050010140 +235083 470020050090070 +235089 470020060010250 +235115 470020090010140 +235118 470020090070090 +235126 470020100010040 +235132 470020100060120 +235176 470020140040490 +235226 470020170030090 +235263 470030020060110 +235273 470030030010240 +235361 470030090010140 +235385 470030110010110 +235426 470030140060200 +235476 470030180010200 +235534 470040030090340 +235579 470040060050050 +235597 470040070010190 +235679 470040130010340 +235687 470040130100040 +470040130110030 +235694 470040140010160 +235774 470050010010200 +235776 470050010040180 +235792 470050020010190 +235808 470050040010220 +235844 470050060050100 +235880 470050100010240 +235889 470050100130130 +235939 470050130030020 +235942 470050130060020 +235950 470050140080280 +235953 470050140110080 +235959 470050150020160 +235986 470050170020060 +235995 470050170110030 +236038 470050200110060 +236043 470050210010150 +236053 470060010010240 +236061 470060020010110 +236070 470060020130040 +236073 470060020170040 +236143 470060090080020 +236166 470060110070110 +236228 470060160150180 +236273 470070010060180 +236294 470070030010170 +236297 470070030050120 +236351 470070070010660 +236387 470070080140110 +236405 470070090110090 +236428 470070110010230 +236478 470070130040440 +236516 470070150090120 +236534 470080010040370 +236568 470080030040240 +236604 470080060030150 +236606 470080060070110 +236615 470080070020260 +236650 470080090010200 +236658 470080090110110 +236671 470080100060150 +236683 470080110010180 +236688 470080110080120 +236703 470080120010120 +236707 470080120060040 +236711 470080120100040 +236724 470080140010240 +236745 470080150020120 +236758 470080160010260 +236891 470090010010350 +236906 470090020060100 +236951 470090040150030 +236959 470090050040230 +236979 470090060010160 +237025 470090090020120 +237063 470090110070290 +237131 470100010010240 +237224 470100070110120 +237227 470100070170060 +237261 470100100050170 +237279 470100110010170 +237282 470100110060120 +237377 470100180030060 +237476 470110070040050 +237528 470110110010060 +237537 470110120010190 +470110120010110 +237546 470110120140070 +237573 470110150010190 +237588 470110160010080 +237648 470110210010070 +237659 470110210140050 +237679 470110230040040 +237706 470110260010240 +237772 470110310010170 +237823 470120020020260 +237850 470120030020300 +470120030030290 +237884 470120050050090 +237919 470120070070160 +237923 470120070150050 +237930 470120080010100 +237938 470120090020130 +237949 470120090150140 +237971 470120100150050 +237985 470120110120090 +238006 470120130010160 +238021 470120140010110 +238053 470120150110060 +238067 470120170020090 +238093 470120190010050 +238102 470120190140070 +238162 470130020010410 +238231 470130050110080 +238242 470130060010080 +238244 470130060040060 +238250 470130070010200 +238288 470130100010240 +238305 470130110020190 +238412 480010050010090 +238432 480010070010180 +238481 480010100120090 +238488 480010110040140 +238512 480010130010380 +238547 480010150030260 +238569 480010160150130 +238597 480010190010120 +238612 480010200060060 +238640 480010230010150 +238675 480020020150110 +238701 480020040060140 +238711 480020050010150 +238741 480020070020580 +238744 480020070030110 +238746 480020070050090 +238789 480020100010110 +238820 480020120120100 +238845 480020140030090 +238852 480020140120190 +238874 480020160010300 +480020160010140 +238877 480020160040120 +238904 480020170010130 +238919 480020180030050 +238924 480020190010080 +238968 480030010010130 +238996 480030040010070 +239001 480030050010270 +239024 480030070010090 +239026 480030070040070 +239033 480030080030210 +239035 480030080010090 +239064 480030100100180 +239080 480030110010150 +239104 480030130010200 +239112 480030130140070 +239135 480030150010040 +239157 480030160120040 +239165 480030160200100 +239177 480030170010220 +239259 480030220020170 +239287 480030240020110 +239296 480030250010070 +239345 480040010010250 +239382 480040040080170 +239411 480040060170040 +239421 480040070070060 +239457 480040110010080 +239474 480040120080030 +239480 480040130010310 +239499 480040140140080 +239513 480040150060110 +239515 480040150100080 +239530 480040170060060 +239536 480040180010250 +239569 480040210010070 +239579 480040220010150 +239594 480040230030190 +239618 480040240090100 +239642 480040260010090 +239649 480040270010240 +239652 480040270030050 +239657 480040270080060 +239677 480040280030070 +239683 480040290020130 +239693 480040300020240 +239714 480040310020080 +239730 480050020010120 +239733 480050020070060 +239738 480050030010120 +239748 480050040010100 +239789 480050100010100 +239797 480050100110090 +239805 480050110030090 +239824 480050130010050 +239848 480050140110060 +239855 480050150010100 +239866 480050160010090 +239887 480050170140100 +239890 480050170210050 +239913 480050210080140 +239915 480050210120100 +239946 480050250010060 +239954 480060010010230 +239966 480060010180060 +240019 480060070010050 +240023 480060070080310 +240079 480060120010170 +480060120010090 +240106 480060140010210 +240117 480060140160070 +240129 480060160020160 +240155 480060180010130 +240379 490010160060750 +240384 490010170020680 +240502 490020010020360 +240549 490020030230080 +240634 490020100120080 +240643 490020110030430 +240712 490020150010360 +240800 490030010011060 +240826 490030030020100 +240844 490030050010360 +240885 490030080010810 +240965 490030140010860 +240981 490030160020660 +241006 490030180020320 +241035 490030200010360 +241139 490040080020100 +241148 490040090010150 +241167 490040100070090 +241176 490040110021230 +241202 490040130020920 +241296 490040180010340 +241374 490040250020140 +241461 490040320070100 +241470 490050010010070 +241477 490050020020220 +241498 490050030010130 +241518 490050050040210 +241534 490050060010180 +241558 490050080100220 +490050080100040 +241596 490050130010130 +241608 490050140020140 +241610 490050140030030 +241623 490050150010180 +241682 490050220010250 +241691 490050230020160 +241706 490050240020140 +241716 490050250010490 +241732 490050260020310 +241755 490050280010130 +241778 490050290090160 +241782 490050290140110 +241825 490050330020130 +241835 490050330150060 +241842 490060010010080 +241852 490060020010130 +241871 490060040020150 +241884 490060050010590 +241918 490060070010090 +241926 490060080010150 +241928 490060080040130 +241941 490060090020270 +241948 490060090120170 +241973 490060110010460 +242011 490060130010190 +242088 490060180130440 +242101 490060190050280 +242116 490060200070070 +242141 490060220010170 +242209 500010030010880 +242238 500010060010150 +242278 500010080010120 +242289 500010090020420 +242291 500010090050390 +242323 500010120050490 +242325 500010120010470 +242377 500010160050070 +242384 500010170010140 +242412 500010190010470 +242460 500010220010090 +242497 500010250020340 +242500 500010250060300 +242526 500010270010510 +242531 500010270090430 +242543 500010270210310 +242613 500020020010390 +242632 500020030080160 +242642 500020050010310 +242665 500020070120040 +242709 500020120020280 +242746 500020140010440 +242763 500020150140250 +242807 500020190010150 +242819 500020200010090 +242834 500020220010140 +242857 500020240010080 +242864 500020250030320 +242889 500020260090030 +242898 500020270070170 +242910 500020280010110 +242928 500020300020190 +242944 500030010030070 +243019 500030070020100 +243029 500030080050660 +243099 500030120080110 +243107 500030130010060 +243135 500030150010040 +243147 500030160020060 +243153 500030170040130 +243167 500030180010330 +243199 500030200010380 +243228 500040010020140 +243250 500040030010280 +243252 500040030020050 +243278 500040040050030 +243322 500040080030250 +243325 500040080040220 +243342 500040090010130 +243359 500040100010180 +243362 500040100070130 +243372 500040110010130 +243382 500040120010060 +243416 500040150050390 +243418 500040150010250 +243425 500040150070170 +243494 500040200010130 +243564 510010030011020 +243618 510010060160400 +243660 510010090111320 +243741 510010150010360 +243790 510010180020560 +243797 510010180100130 +243848 510010220010520 +243940 510010260120650 +243947 510010270060200 +243963 510010280010350 +243974 510010280150210 +243990 510020010010550 +244034 510020040010080 +244079 510020070070050 +244274 510020210010410 +244305 510030010010160 +244318 510030020010080 +244337 510030040010150 +244369 510030070020090 +244385 510030090010440 +244423 510030120010250 +244441 510030130120090 +244459 510030150020160 +244495 510030170020210 +244513 510030180010090 +244521 510030190010100 +244531 510030200010070 +244540 510030210010100 +244548 510030220010210 +244556 510030220110040 +244575 510030240010090 +244596 510040010010180 +244604 510040010110080 +244616 510040030010220 +244632 510040040020060 +244706 510040100120100 +244721 510040110100120 +244736 510040120100170 +244751 510040130010160 +244807 510040170020120 +244850 520010020010500 +244891 520010050020290 +245004 520020010040360 +245015 520020020020070 +245064 520020050030070 +245083 520020070010070 +245115 520020090030080 +245137 520020100020150 +245150 520020110020310 +245176 520020130020330 +245202 520020140050660 +245248 520020160020060 +245265 520020170030200 +245280 520020180020160 +245358 520030030080060 +245370 520030040070050 +245381 520030050010250 +245420 520030060250070 +245425 520030070040170 +245439 520030080020070 +245530 520040010030280 +245537 520040010120180 +245539 520040010130140 +245637 520040090010170 +245659 520040100160300 +245661 520040100130190 +245686 520040130060190 +245693 520040130110100 +245705 520040140030060 +245720 520040150010220 +245783 520050010080250 +245792 520050020010120 +245794 520050020080080 +245806 520050030060120 +245819 520050040030220 +245821 520050040010120 +245824 520050040090060 +245864 520050080010440 +245875 520050090020300 +245902 520050110020100 +245911 520050120040260 +245935 520050140040150 +245947 520050150010180 +246017 520050250010040 +246068 530010030080530 +246070 530010030020100 +246115 530010050011050 +246132 530010060020790 +246206 530010110010490 +530010110010250 +246246 530020010040460 +246262 530020020030280 +246285 530020030010470 +246319 530020040190050 +246323 530020050010100 +246341 530020070010140 +246401 530020110020260 +246421 530020130010120 +246430 530020130150310 +246454 530020150030150 +246504 530030010040270 +246547 530030040010120 +246574 530030060040250 +246597 530030070010060 +246634 530030100070110 +246636 530030100110070 +246650 530030120010170 +246665 530030130030050 +246690 530030150070030 +246710 530030170010120 +246805 540010070010120 +246816 540010080010550 +246818 540010080040530 +246822 540010090010450 +246855 540010120010250 +246895 540010150020200 +246902 540010150090120 +246911 540010160020230 +246930 540010170010170 +246945 540010180060450 +246965 540010190060200 +246973 540010200060080 +246981 540020010030290 +247038 540020060070210 +247041 540020070010170 +247056 540020080030430 +247131 540030010040070 +247166 540030060010100 +247175 540030070010170 +247286 540040010010610 +247309 540040030050320 +247392 540040100010170 +247450 540040150010050 +247459 540040160010070 +247495 540050040010180 +247538 540050070010060 +247557 540050090010300 +247636 540050160010170 +247663 540050180010140 +247675 540050190010130 +247684 540050200010110 +247693 540050210010200 +247751 540060010010220 +247768 540060020010090 +247842 540060070010100 +247892 540060110030060 +247980 540060160150060 +247986 540060170010440 +248022 540060200010210 +248072 550010030010610 +248116 550010050210050 +248214 550010120010260 +248226 550010120150120 +248262 550010150010150 +248308 550020010030290 +248319 550020020020170 +248336 550020040010110 +248347 550020050010100 +248382 550020090010070 +248393 550020100010190 +248411 550020110040040 +248415 550020120010040 +248464 550020160060310 +248494 550020190080190 +248533 550020210010190 +248571 550020230080040 +248576 550020240050410 +248607 550030010010090 +248616 550030020010250 +248661 550030080010210 +550030080010130 +248681 550030090060110 +248746 550030140090230 +248766 550030160010280 +248963 550040140080120 +249009 550040180010250 +249171 560010090010210 +249214 560010120010140 +249229 560010130060210 +249295 560020030010270 +249347 560020090090040 +249370 560020120010550 +249401 560020140010190 +249459 560030040010560 +249509 560030080080100 +249523 560030090010150 +249541 560030110010090 +249564 560030130010110 +249573 560030140010150 +249637 570010040010470 +249677 570010070010180 +249754 570010140010190 +249770 570010150010300 +249774 570010150090230 +249800 570010180010090 +249807 570010190010170 +249814 570010190100080 +249819 570010200010070 +249833 570010210070070 +249845 570010220070080 +249896 580010030010410 +249927 580010050010130 +249936 580010050160120 +249951 580010060100070 +249960 580010070020160 +249979 580010080080190 +250015 580010100050150 +250034 580010110070040 +250039 580010120020040 +250042 580010120060040 +250056 580010130010200 +250084 580020010010110 +250110 580020030070310 +250145 580020060050130 +250147 580020060060060 +250151 580020060130050 +250183 580020090010230 +250237 580020120010130 +580020120020120 +250255 580020130090110 +580020130100100 +250266 580020140010410 +250336 580030010020270 +250350 580030020010130 +250362 580030030010160 +250402 580030060090160 +250416 580030070030420 +250458 580030100090120 +250467 580030110020110 +250479 580030120010020 +250493 580030130020190 +250519 580030150030160 +250563 580030180010120 +250574 580030190020070 +250583 580040010030140 +250595 580040020010050 +250611 580040030010200 +250617 580040030090130 +250619 580040030110110 +250635 580040040010200 +250651 580040050020090 +250671 580040070010240 +250679 580040070130120 +250706 580040100010190 +250811 580040160010160 +250825 580050010010460 +250840 580050020020260 +250853 580050030050110 +250866 580050040090070 +250873 580050050010650 +250882 580050050120110 +250889 580050060020130 +250951 580050110080070 +250984 580050130010100 +251040 580060030020060 +251100 580060080010130 +251114 580060090050130 +251144 580060110010280 +251178 580060140010100 +251205 580060170010690 +251315 580070040010120 +251374 580070080080040 +251390 580070100010110 +251434 580070130010130 +251443 580070140010160 +251455 580070150020240 +251474 580070170010110 +251486 580070180010150 +251508 580070200020400 +580070200020320 +251523 580070210070130 +251679 580080040110350 +251684 580080050010280 +251690 580080050090200 +251695 580080050170130 +580080050150120 +251706 580080060010150 +251717 580080070010110 +251726 580080080010550 +251736 580080080110440 +251751 580080090050170 +251781 580080100140260 +251812 580080110140040 +251960 580090080010530 +251964 580090080070470 +251968 580090080130410 +251977 580090090080280 +580090090080220 +252036 580090130010450 +252073 580090150020250 +252104 580090170010120 +252107 580090170070070 +252119 580090190010470 +252146 580090200010120 +252213 580090250010250 +252215 580090250030230 +252243 580090270020320 +252266 580100010040440 +252316 580100050020370 +252331 580100070010170 +580100070130150 +252345 580100080010280 +252347 580100080010190 +252349 580100080040160 +252363 580100090100070 +252405 580100130010120 +252432 580100150090410 +252436 580100150120120 +252471 580100190030540 +252474 580100190010260 +252515 580100230010100 +252532 580100250020070 +252545 580100260010270 +252604 580100300040050 +252745 580110040010270 +252751 580110040100120 +252783 580110060010190 +252788 580110060060130 +252800 580110070010270 +252865 580110110010180 +252879 580110120020260 +252915 580110130170090 +252924 580110140010070 +252933 580110150020100 +252966 580110180010090 +252971 580110190010090 +253021 580110230010210 +253037 580110240010360 +253063 580110270010150 +253074 580110280010170 +253087 580110290010150 +253154 580110350080100 +253173 580110370010340 +253203 580110390020170 +253260 580120030010170 +253285 580120050050160 +253311 580120070040060 +253322 580120080010140 +253394 580120120020230 +253457 580120170010190 +253459 580120170040170 +253464 580120170110090 +253493 580120200050070 +253505 580120210070060 +253577 580120260110130 +253587 580120270010150 +253668 580130050070110 +253676 580130060020120 +253809 580130170010280 +253835 580130180010140 +253838 580130180040100 +253847 580130190010080 +253853 580130200010520 +253897 580130220010030 +253908 580130230010130 +253953 590010020040180 +253960 590010030010090 +253969 590010040010130 +254014 590010070010110 +254045 590010100090040 +254094 590010130010070 +254125 590010160010050 +254160 590010190010040 +254217 590010230100210 +254235 590010250010240 +254289 590020010010150 +254331 590020030110050 +254334 590020030170120 +254352 590020050010040 +254416 590020090060060 +254434 590020110010080 +254436 590020110030030 +254469 590020140040140 +254499 590020160010110 +254525 590020180020080 +590020180040060 +254529 590020180100170 +254540 590020190010070 +254555 590020200040130 +254559 590020200030090 +254566 590020210010160 +254580 590020220010350 +254611 590020240010110 +254644 590030010050110 +254647 590030010070050 +254686 590030040010210 +254711 590030050110060 +254795 590030100110070 +254811 590030120030100 +254876 590030170010180 +254942 590040030060080 +254949 590040040010120 +254951 590040040030100 +254971 590040050020150 +254973 590040050040130 +254987 590040060060090 +255013 590040080070030 +255016 590040080110030 +255042 590040110010040 +255076 590040120110070 +255083 590040130010390 +255087 590040130040170 +255102 590040140010190 +590040140010090 +255119 590040150030130 +255197 590050040010260 +255242 590050070030070 +255249 590050070090170 +255262 590050080010130 +255274 590050090030080 +255280 590050090090070 +255285 590050100030160 +255299 590050110010040 +255303 590050110050160 +255318 590050120040160 +255331 590050120180140 +255434 590050190010320 +255446 590050200010180 +255533 600010060010360 +600010060010110 +255615 600010120010280 +255673 600010160020060 +255694 600010180010600 +255807 600020010010270 +255827 600020030020050 +255861 600020060020190 +255863 600020060050160 +255884 600020070070260 +255887 600020070090100 +255901 600020080070090 +255909 600020090010320 +255939 600020110010150 +255961 600020120110050 +256029 600020180010180 +256055 600020200010070 +256062 600020200100090 +256071 600020210010170 +256074 600020210060130 +256092 600020230010070 +256101 600020240010200 +256136 600030010020280 +256202 600030060020160 +256213 600030070010250 +256245 600030090100090 +256247 600030090140060 +256299 600030130020090 +256308 600030140020060 +256372 600030180020200 +256395 600030200010230 +256428 600030220010150 +256466 600040030060380 +256470 600040030110230 +256494 600040060010160 +256517 600040080010130 +256567 600040110260130 +256578 600040120010330 +256676 600040180020110 +256745 600050050020040 +256749 600050050050140 +256778 600050080010020 +256781 600050080030280 +256807 600050100010210 +256825 600050110010090 +256846 600050120150090 +256924 610010040010240 +257012 610010100030100 +257063 610010140010180 +257117 610010170090200 +257122 610010170170120 +257143 610010190020370 +257162 610010200010110 +257201 610020020020120 +257317 610020120010230 +257388 610020170010150 +257412 610020190010080 +257418 610020190090050 +257459 610020220010180 +257474 610030010030340 +257502 610030030010390 +257516 610030040020200 +610030040030190 +257531 610030050010280 +257534 610030050070230 +257571 610030080070200 +257588 610030090020080 +257601 610030100010230 +257647 610030130010140 +257659 610030140020640 +257668 610030150020520 +257685 610030160020300 +257709 610030170030150 +257780 620010030010140 +257807 620010040020090 +257815 620010050020230 +257850 620010070010270 +257852 620010070030100 +257888 620010090070150 +257902 620010100020040 +257913 620020010010080 +257920 620020010100110 +257947 620020030020110 +257960 620020040020040 +257990 620020060010130 +258002 620020070010130 +258019 620020080010240 +258021 620020080060190 +258086 620020120030120 +258095 620020130030080 +258102 620020130110070 +258108 620020140030070 +258114 620020140100080 +258121 620020140180180 +258144 620020150100130 +258197 620020180010210 +258205 620020180070040 +258212 620020180170050 +258225 620020190090080 +258234 620020190200070 +258262 620020220010140 +258267 620020220080070 +258296 620020240010080 +258302 620020240090180 +258317 620020250020120 +258332 620020270020180 +258341 620020270130070 +258366 620020280030190 +258371 620020280080040 +258383 620020290020040 +258386 620020290060110 +258398 620030010020100 +258408 620030010140110 +258414 620030020010100 +258422 620030020110120 +258424 620030020130100 +258428 620030020190040 +258458 620030050020140 +258461 620030050040060 +258483 620030070010040 +258486 620030070050100 +258493 620030080010140 +258504 620030080150130 +258528 620030090170080 +258561 620030110020110 +258595 620030130030080 +258601 620030140010140 +258603 620030140040110 +258626 620030150100110 +258635 620030160010130 +258675 620030180010120 +258686 620030190010080 +258698 620030200010170 +258712 620030210010290 +258722 620030220030170 +258737 620030230020210 +258768 620030240150130 +258779 620040010010210 +258828 620040030200040 +258836 620040040060200 +258871 620040060060150 +258891 620040070010220 +258912 620040080010120 +258920 620040090010250 +258927 620040090110150 +258939 620040100010260 +258958 620040110010120 +258968 620040120050160 +258981 620040130010180 +259009 620040150010090 +259051 620040170010260 +259063 620040170170100 +259071 620040180010270 +259091 620040190010070 +259098 620040200020060 +259122 620040210020160 +259139 620050010030060 +259157 620050020010090 +259174 620050030010110 +259184 620050030140160 +259216 620050050100080 +259246 620050060250110 +259257 620050070020120 +259285 620050090140120 +259305 620050100130220 +259321 620050110020200 +259350 620050130010180 +259361 620050130050050 +259367 620050140020180 +259384 620050150030070 +259389 620050150100090 +259420 620050160260060 +259434 620050180010240 +259454 620050190010140 +259468 620050200010150 +259476 620050200100070 +259499 620050210010060 +259570 630010050050180 +259583 630010060020100 +259591 630010060120120 +259618 630010080010110 +259638 630010090150130 +259684 630010120120150 +259714 640010020010130 +259739 640010040010140 +259749 640010050010260 +259777 640010080010100 +259821 640010110010080 +259852 640010120150070 +259908 650010030010230 +259957 650010050080600 +260032 650010090210040 +260041 650010100080100 +260069 650010120010400 +260110 650010140090360 +650010140100350 +260155 650010170030150 +260170 650010180020150 +260190 650010200030280 +260192 650010200040100 +260214 650010220020070 +260232 650010240010410 +260300 660010030010200 +260392 660010060110120 +260404 660010070010050 +260422 660010070240020 +260488 660010110010310 +260546 660010140010100 +260606 660010170020100 +260619 660010170190030 +260635 660010180080170 +260662 660010200010330 +260757 660020040020100 +260779 660020050120040 +260783 660020050180110 +260793 660020060020110 +260809 660020070110170 +260874 660020100060160 +660020100070100 +260956 660020130310080 +260973 660020140170100 +260993 660020160030150 +261013 660020170110270 +261033 660020170310070 +261089 660020200020120 +261112 660020210020050 +261122 660020220010200 +261126 660020220070140 +261146 660020230090120 +261163 660020240030280 +261174 660020240150090 +261192 660020260020420 +261203 660020260120250 +261209 660020270020110 +261255 660030010220120 +261260 660030010270040 +261312 660030040020110 +261319 660030040140080 +261390 660030080010300 +261393 660030080050260 +261415 660030090010170 +261433 660030090190100 +261443 660030090300050 +261474 660030110030090 +261481 660030120010520 +261556 660030150010100 +261571 660030160010160 +261589 660030170020100 +261599 660030170130150 +261610 660030180030090 +261618 660030180130120 +261630 660030180260070 +261649 660030200010070 +261676 660030210010240 +261708 660040010050290 +261721 660040010230110 +261734 660040020060280 +261790 660040050120140 +261864 660040080250170 +261926 660040100290310 +660040110030300 +262005 660050040020120 +262016 660050050020080 +262022 660050050100200 +262117 660050090050440 +262195 660050130020500 +262239 660050140020050 +262264 660060010140100 +262279 660060020040030 +262306 660060030090050 +262317 660060040070210 +262343 660060050090050 +262353 660060050170030 +262368 660060060040230 +262396 660060070090060 +262407 660060080040030 +262412 660060080080080 +262470 660060100080210 +262497 660060110110200 +262541 660060130020180 +262555 660060140020060 +262596 660060160020380 +262634 660070010040300 +262682 660070030010220 +262771 660070090050340 +262802 660070100050140 +262840 660070120010310 +660070120020300 +262870 660070130070140 +262883 660070140020060 +660070140040040 +262889 660070140090240 +262933 660070160010430 +263060 660080060020120 +263200 660080120070200 +263232 660080130050280 +263285 660090020080090 +263311 660090030110100 +263352 660090050140090 +263472 660090120060070 +263515 660090150020210 +263628 660090200020490 +263738 660100030020060 +263795 660100060020600 +263827 660100070020240 +263889 660100090130200 +263901 660100090250080 +263927 660100100230070 +263934 660100110020150 +263948 660110010070160 +263965 660110020020250 +264127 660110100020250 +264176 660110120030090 +264230 660110140060070 +264245 660110150130200 +264284 660110170010220 +264286 660110170020120 +264381 660120010020350 +264422 660120030090170 +264452 660120040190160 +264461 660120040290060 +264491 660120060020220 +264539 660120090020310 +264570 660120100030420 +264625 660120120010090 +264646 660120120250050 +264652 660120130020160 +264654 660120130030080 +264666 660120140020320 +264692 660120150020170 +264840 660130040020090 +264849 660130040150110 +264939 660130100010070 +264945 660130100080100 +264973 660130110160030 +264987 660130120120210 +265007 660130130020170 +265131 660130180050120 +265151 660140010040300 +265179 660140020020140 +265218 660140030170170 +265284 660140070010320 +265316 660140080060190 +265338 660140090070570 +265435 660140130030140 +265438 660140130080090 +265446 660140130170170 +265465 660140140040250 +265469 660140140080210 +265492 660140150080260 +265507 660140150240100 +265563 660140180240200 +265636 660150010110150 +265693 660150030150120 +660150030160110 +265705 660150030270100 +265717 660150040010050 +265725 660150040120160 +265727 660150040150130 +265812 660150080170140 +265826 660160010030220 +265916 660160050030280 +265921 660160050080090 +265932 660160050180130 +265947 660160070030150 +265949 660160070060120 +266052 660160120150140 +266112 660160150010040 +266117 660160150050170 +266156 660160170210020 +266167 660160180090130 +266225 660160210140170 +266252 660170010170340 +266255 660170010190320 +266372 660170070020070 +266431 660170080390100 +266469 660170100120060 +266475 660170110020200 +266546 660170150020180 +266560 660170160020280 +266587 660170170010280 +266646 660180020060550 +266654 660180020130480 +266699 660180040030410 +266703 660180040100350 +266733 660180060010060 +266750 660180070010290 +660180070010110 +266759 660180070130170 +266773 660180080010260 +266823 660180100100190 +266825 660180100110110 +266843 660180110020840 +266942 660180160010300 +266944 660180160020220 +266992 660180180090070 +267010 660180190130260 +267012 660180190140210 +267034 660180200010220 +267064 660180210150130 +267140 660190010040520 +267147 660190010130430 +267159 660190020020300 +267186 660190030020130 +267217 660190040210030 +660190040220020 +267225 660190050070170 +660190050080160 +267244 660190060030240 +267257 660190060180090 +267301 660190090020130 +660190090040110 +267314 660190090160090 +267329 660190100100280 +267363 660190110070030 +267398 660190120170060 +267428 660190150020130 +267484 660190170140460 +267557 660190200060250 +267729 660200050010110 +267785 660200080020290 +267903 660200120180070 +268021 660210030030530 +268025 660210030090470 +268068 660210050020100 +268073 660210050080040 +268076 660210050130100 +660210050140090 +268086 660210060020030 +268121 660210080010350 +268171 660210090240100 +268205 660210110060100 +268273 660210150020200 +268295 660210160070060 +268420 660210230020130 +268477 660210270020240 +268581 660220050070150 +268600 660220060020300 +268626 660220070020030 +268663 660220090020240 +268687 660220100020160 +660220100040140 +268716 660220120010030 +268722 660220120100070 +268803 660220170020070 +268811 660220170100040 +268884 660220200010070 +268887 660220200050030 +268890 660220200080040 diff --git a/tf/0.1.1/normalized.tf b/tf/0.1.1/normalized.tf new file mode 100644 index 0000000..28be883 --- /dev/null +++ b/tf/0.1.1/normalized.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=lemma normalized +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:21Z + +Βίβλος +γενέσεως +Ἰησοῦ +Χριστοῦ +υἱοῦ +Δαυείδ +υἱοῦ +Ἀβραάμ +Ἀβραάμ +ἐγέννησεν +τόν +Ἰσαάκ +δέ +Ἰσαάκ +ἐγέννησεν +τόν +Ἰακώβ +δέ +Ἰακώβ +ἐγέννησεν +τόν +Ἰούδαν +καί +τούς +ἀδελφούς +αὐτοῦ +δέ +Ἰούδας +ἐγέννησεν +τόν +Φαρές +καί +τόν +Ζαρά +ἐκ +τῆς +Θάμαρ +δέ +Φαρές +ἐγέννησεν +τόν +Ἐσρώμ +δέ +Ἐσρώμ +ἐγέννησεν +τόν +Ἀράμ +δέ +Ἀράμ +ἐγέννησεν +τόν +Ἀμιναδάβ +δέ +Ἀμιναδάβ +ἐγέννησεν +τόν +Ναασσών +δέ +Ναασσών +ἐγέννησεν +τόν +Σαλμών +δέ +Σαλμών +ἐγέννησεν +τόν +Βόες +ἐκ +τῆς +Ῥαχάβ +δέ +Βόες +ἐγέννησεν +τόν +Ἰωβήδ +ἐκ +τῆς +Ῥούθ +δέ +Ἰωβήδ +ἐγέννησεν +τόν +Ἰεσσαί +δέ +Ἰεσσαί +ἐγέννησεν +τόν +Δαυείδ +τόν +βασιλέα +δέ +Δαυείδ +ἐγέννησεν +τόν +Σολομῶνα +ἐκ +τῆς +τοῦ +Οὐρίου +δέ +Σολομών +ἐγέννησεν +τόν +Ῥοβοάμ +δέ +Ῥοβοάμ +ἐγέννησεν +τόν +Ἀβιά +δέ +Ἀβιά +ἐγέννησεν +τόν +Ἀσάφ +δέ +Ἀσάφ +ἐγέννησεν +τόν +Ἰωσαφάτ +δέ +Ἰωσαφάτ +ἐγέννησεν +τόν +Ἰωράμ +δέ +Ἰωράμ +ἐγέννησεν +τόν +Ὀζείαν +δέ +Ὀζείας +ἐγέννησεν +τόν +Ἰωαθάμ +δέ +Ἰωαθάμ +ἐγέννησεν +τόν +Ἄχαζ +δέ +Ἄχαζ +ἐγέννησεν +τόν +Ἐζεκίαν +δέ +Ἐζεκίας +ἐγέννησεν +τόν +Μανασσῆ +δέ +Μανασσῆς +ἐγέννησεν +τόν +Ἀμώς +δέ +Ἀμώς +ἐγέννησεν +τόν +Ἰωσείαν +δέ +Ἰωσείας +ἐγέννησεν +τόν +Ἰεχονίαν +καί +τούς +ἀδελφούς +αὐτοῦ +ἐπί +τῆς +μετοικεσίας +Βαβυλῶνος +δέ +Μετά +τήν +μετοικεσίαν +Βαβυλῶνος +Ἰεχονίας +ἐγέννησεν +τόν +Σαλαθιήλ +δέ +Σαλαθιήλ +ἐγέννησεν +τόν +Ζοροβαβέλ +δέ +Ζοροβαβέλ +ἐγέννησεν +τόν +Ἀβιούδ +δέ +Ἀβιούδ +ἐγέννησεν +τόν +Ἐλιακείμ +δέ +Ἐλιακείμ +ἐγέννησεν +τόν +Ἀζώρ +δέ +Ἀζώρ +ἐγέννησεν +τόν +Σαδώκ +δέ +Σαδώκ +ἐγέννησεν +τόν +Ἀχείμ +δέ +Ἀχείμ +ἐγέννησεν +τόν +Ἐλιούδ +δέ +Ἐλιούδ +ἐγέννησεν +τόν +Ἐλεάζαρ +δέ +Ἐλεάζαρ +ἐγέννησεν +τόν +Μαθθάν +δέ +Μαθθάν +ἐγέννησεν +τόν +Ἰακώβ +δέ +Ἰακώβ +ἐγέννησεν +τόν +Ἰωσήφ +τόν +ἄνδρα +Μαρίας +ἐξ +ἧς +ἐγεννήθη +Ἰησοῦς +ὁ +λεγόμενος +Χριστός +οὖν +Πᾶσαι +αἱ +γενεαί +ἀπό +Ἀβραάμ +ἕως +Δαυείδ +γενεαί +δεκατέσσαρες +καί +ἀπό +Δαυείδ +ἕως +τῆς +μετοικεσίας +Βαβυλῶνος +γενεαί +δεκατέσσαρες +καί +ἀπό +τῆς +μετοικεσίας +Βαβυλῶνος +ἕως +τοῦ +Χριστοῦ +γενεαί +δεκατέσσαρες +δέ +Τοῦ +Ἰησοῦ +Χριστοῦ +ἡ +γένεσις +οὕτως +ἦν +μνηστευθείσης +τῆς +μητρός +αὐτοῦ +Μαρίας +τῷ +Ἰωσήφ +πρίν +ἤ +συνελθεῖν +αὐτούς +εὑρέθη +ἐν +γαστρί +ἔχουσα +ἐκ +Πνεύματος +Ἁγίου +δέ +Ἰωσήφ +ὁ +ἀνήρ +αὐτῆς +δίκαιος +ὤν +καί +μή +θέλων +αὐτήν +δειγματίσαι +ἐβουλήθη +λάθρᾳ +ἀπολῦσαι +αὐτήν +δέ +ταῦτα +αὐτοῦ +ἐνθυμηθέντος +ἰδού +ἄγγελος +Κυρίου +κατ’ +ὄναρ +ἐφάνη +αὐτῷ +λέγων +Ἰωσήφ +υἱός +Δαυείδ +μή +φοβηθῇς +παραλαβεῖν +Μαρίαν +τήν +γυναῖκα +σου +γάρ +τό +ἐν +αὐτῇ +γεννηθέν +ἐκ +Πνεύματος +Ἁγίου +ἐστιν +δέ +τέξεται +υἱόν +καί +καλέσεις +τό +ὄνομα +αὐτοῦ +Ἰησοῦν +γάρ +αὐτός +σώσει +τόν +λαόν +αὐτοῦ +ἀπό +τῶν +ἁμαρτιῶν +αὐτῶν +δέ +Τοῦτο +ὅλον +γέγονεν +ἵνα +πληρωθῇ +τό +ῥηθέν +ὑπό +Κυρίου +διά +τοῦ +προφήτου +λέγοντος +Ἰδού +ἡ +παρθένος +ἐν +γαστρί +ἕξει +καί +τέξεται +υἱόν +καί +καλέσουσιν +τό +ὄνομα +αὐτοῦ +Ἐμμανουήλ +ὅ +ἐστιν +μεθερμηνευόμενον +Μεθ’ +ἡμῶν +ὁ +Θεός +δέ +ὁ +Ἰωσήφ +ἐγερθείς +ἀπό +τοῦ +ὕπνου +ἐποίησεν +ὡς +προσέταξεν +αὐτῷ +ὁ +ἄγγελος +Κυρίου +καί +παρέλαβεν +τήν +γυναῖκα +αὐτοῦ +καί +οὐκ +ἐγίνωσκεν +αὐτήν +ἕως +οὗ +ἔτεκεν +υἱόν +καί +ἐκάλεσεν +τό +ὄνομα +αὐτοῦ +Ἰησοῦν +δέ +Τοῦ +Ἰησοῦ +γεννηθέντος +ἐν +Βηθλέεμ +τῆς +Ἰουδαίας +ἐν +ἡμέραις +Ἠρῴδου +τοῦ +βασιλέως +ἰδού +μάγοι +ἀπό +ἀνατολῶν +παρεγένοντο +εἰς +Ἱεροσόλυμα +λέγοντες +Ποῦ +ἐστιν +ὁ +τεχθείς +βασιλεύς +τῶν +Ἰουδαίων +γάρ +εἴδομεν +αὐτοῦ +τόν +ἀστέρα +ἐν +τῇ +ἀνατολῇ +καί +ἤλθομεν +προσκυνῆσαι +αὐτῷ +δέ +ἀκούσας +ὁ +βασιλεύς +Ἠρῴδης +ἐταράχθη +καί +πᾶσα +Ἱεροσόλυμα +μετ’ +αὐτοῦ +καί +συναγαγών +πάντας +τούς +ἀρχιερεῖς +καί +γραμματεῖς +τοῦ +λαοῦ +ἐπυνθάνετο +παρ’ +αὐτῶν +ποῦ +ὁ +Χριστός +γεννᾶται +δέ +οἱ +εἶπαν +αὐτῷ +Ἐν +Βηθλέεμ +τῆς +Ἰουδαίας +γάρ +οὕτως +γέγραπται +διά +τοῦ +προφήτου +Καί +Βηθλέεμ +γῆ +Ἰούδα +σύ +οὐδαμῶς +ἐλαχίστη +εἶ +ἐν +τοῖς +ἡγεμόσιν +Ἰούδα +γάρ +ἐκ +σοῦ +ἐξελεύσεται +ἡγούμενος +ὅστις +ποιμανεῖ +τόν +λαόν +μου +τόν +Ἰσραήλ +Τότε +Ἠρῴδης +λάθρᾳ +καλέσας +τούς +μάγους +ἠκρίβωσεν +παρ’ +αὐτῶν +τόν +χρόνον +τοῦ +φαινομένου +ἀστέρος +καί +πέμψας +αὐτούς +εἰς +Βηθλέεμ +εἶπεν +Πορευθέντες +ἐξετάσατε +ἀκριβῶς +περί +τοῦ +παιδίου +δέ +ἐπάν +εὕρητε +ἀπαγγείλατε +μοι +ὅπως +κἀγώ +ἐλθών +προσκυνήσω +αὐτῷ +δέ +οἱ +ἀκούσαντες +τοῦ +βασιλέως +ἐπορεύθησαν +καί +ἰδού +ὁ +ἀστήρ +ὅν +εἶδον +ἐν +τῇ +ἀνατολῇ +προῆγεν +αὐτούς +ἕως +ἐλθών +ἐστάθη +ἐπάνω +οὗ +ἦν +τό +παιδίον +δέ +ἰδόντες +τόν +ἀστέρα +ἐχάρησαν +χαράν +μεγάλην +σφόδρα +καί +ἐλθόντες +εἰς +τήν +οἰκίαν +εἶδον +τό +παιδίον +μετά +Μαρίας +τῆς +μητρός +αὐτοῦ +καί +πεσόντες +προσεκύνησαν +αὐτῷ +καί +ἀνοίξαντες +τούς +θησαυρούς +αὐτῶν +προσήνεγκαν +αὐτῷ +δῶρα +χρυσόν +καί +λίβανον +καί +σμύρναν +καί +χρηματισθέντες +κατ’ +ὄναρ +μή +ἀνακάμψαι +πρός +Ἠρῴδην +δι’ +ἄλλης +ὁδοῦ +ἀνεχώρησαν +εἰς +τήν +χώραν +αὐτῶν +δέ +Ἀναχωρησάντων +αὐτῶν +ἰδού +ἄγγελος +κυρίου +φαίνεται +κατ’ +ὄναρ +τῷ +Ἰωσήφ +λέγων +Ἐγερθείς +παράλαβε +τό +παιδίον +καί +τήν +μητέρα +αὐτοῦ +καί +φεῦγε +εἰς +Αἴγυπτον +καί +ἴσθι +ἐκεῖ +ἕως +ἄν +εἴπω +σοι +γάρ +μέλλει +Ἠρῴδης +ζητεῖν +τό +παιδίον +τοῦ +ἀπολέσαι +αὐτό +δέ +ὁ +ἐγερθείς +παρέλαβεν +τό +παιδίον +καί +τήν +μητέρα +αὐτοῦ +νυκτός +καί +ἀνεχώρησεν +εἰς +Αἴγυπτον +καί +ἦν +ἐκεῖ +ἕως +τῆς +τελευτῆς +Ἠρῴδου +ἵνα +πληρωθῇ +τό +ῥηθέν +ὑπό +κυρίου +διά +τοῦ +προφήτου +λέγοντος +Ἐξ +Αἰγύπτου +ἐκάλεσα +τόν +υἱόν +μου +Τότε +Ἠρῴδης +ἰδών +ὅτι +ἐνεπαίχθη +ὑπό +τῶν +μάγων +ἐθυμώθη +λίαν +καί +ἀποστείλας +ἀνεῖλεν +πάντας +τούς +παῖδας +τούς +ἐν +Βηθλέεμ +καί +ἐν +πᾶσι +τοῖς +ὁρίοις +αὐτῆς +ἀπό +διετοῦς +καί +κατωτέρω +κατά +τόν +χρόνον +ὅν +ἠκρίβωσεν +παρά +τῶν +μάγων +τότε +ἐπληρώθη +τό +ῥηθέν +διά +Ἰερεμίου +τοῦ +προφήτου +λέγοντος +ἐν +Ῥαμά +ἠκούσθη +Φωνή +κλαυθμός +καί +ὀδυρμός +πολύς +Ῥαχήλ +κλαίουσα +τά +τέκνα +αὐτῆς +καί +οὐκ +ἤθελεν +παρακληθῆναι +ὅτι +οὐκ +εἰσίν +δέ +Τελευτήσαντος +τοῦ +Ἠρῴδου +ἰδού +ἄγγελος +Κυρίου +φαίνεται +κατ’ +ὄναρ +τῷ +Ἰωσήφ +ἐν +Αἰγύπτῳ +λέγων +Ἐγερθείς +παράλαβε +τό +παιδίον +καί +τήν +μητέρα +αὐτοῦ +καί +πορεύου +εἰς +γῆν +Ἰσραήλ +γάρ +τεθνήκασιν +οἱ +ζητοῦντες +τήν +ψυχήν +τοῦ +παιδίου +δέ +ὁ +ἐγερθείς +παρέλαβεν +τό +παιδίον +καί +τήν +μητέρα +αὐτοῦ +καί +εἰσῆλθεν +εἰς +γῆν +Ἰσραήλ +δέ +ἀκούσας +ὅτι +Ἀρχέλαος +βασιλεύει +τῆς +Ἰουδαίας +ἀντί +τοῦ +πατρός +αὐτοῦ +Ἠρῴδου +ἐφοβήθη +ἐκεῖ +ἀπελθεῖν +δέ +χρηματισθείς +κατ’ +ὄναρ +ἀνεχώρησεν +εἰς +τά +μέρη +τῆς +Γαλιλαίας +καί +ἐλθών +κατῴκησεν +εἰς +πόλιν +λεγομένην +Ναζαρέτ +ὅπως +πληρωθῇ +τό +ῥηθέν +διά +τῶν +προφητῶν +ὅτι +Ναζωραῖος +κληθήσεται +δέ +Ἐν +ταῖς +ἡμέραις +ἐκείναις +παραγίνεται +Ἰωάνης +ὁ +βαπτιστής +κηρύσσων +ἐν +τῇ +ἐρήμῳ +τῆς +Ἰουδαίας +λέγων +Μετανοεῖτε +γάρ +ἤγγικεν +ἡ +βασιλεία +τῶν +οὐρανῶν +γάρ +οὗτος +ἐστιν +ὁ +ῥηθείς +διά +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Φωνή +βοῶντος +ἐν +τῇ +ἐρήμῳ +Ἑτοιμάσατε +τήν +ὁδόν +Κυρίου +εὐθείας +ποιεῖτε +τάς +τρίβους +αὐτοῦ +δέ +Αὐτός +ὁ +Ἰωάνης +εἶχεν +τό +ἔνδυμα +αὐτοῦ +ἀπό +τριχῶν +καμήλου +καί +ζώνην +δερματίνην +περί +τήν +ὀσφύν +αὐτοῦ +δέ +ἡ +τροφή +αὐτοῦ +ἦν +ἀκρίδες +καί +μέλι +ἄγριον +Τότε +ἐξεπορεύετο +πρός +αὐτόν +Ἱεροσόλυμα +καί +πᾶσα +ἡ +Ἰουδαία +καί +πᾶσα +ἡ +περίχωρος +τοῦ +Ἰορδάνου +καί +ἐβαπτίζοντο +ἐν +τῷ +Ἰορδάνῃ +ποταμῷ +ὑπ’ +αὐτοῦ +ἐξομολογούμενοι +τάς +ἁμαρτίας +αὐτῶν +δέ +Ἰδών +πολλούς +τῶν +Φαρισαίων +καί +Σαδδουκαίων +ἐρχομένους +ἐπί +τό +βάπτισμα +εἶπεν +αὐτοῖς +Γεννήματα +ἐχιδνῶν +τίς +ὑπέδειξεν +ὑμῖν +φυγεῖν +ἀπό +τῆς +μελλούσης +ὀργῆς +οὖν +ποιήσατε +καρπόν +ἄξιον +τῆς +μετανοίας +καί +μή +δόξητε +λέγειν +ἐν +ἑαυτοῖς +Πατέρα +ἔχομεν +τόν +Ἀβραάμ +γάρ +λέγω +ὑμῖν +ὅτι +δύναται +ὁ +Θεός +ἐκ +τῶν +λίθων +τούτων +ἐγεῖραι +τέκνα +τῷ +Ἀβραάμ +δέ +ἤδη +ἡ +ἀξίνη +πρός +τήν +ῥίζαν +τῶν +δένδρων +κεῖται +οὖν +πᾶν +δένδρον +μή +ποιοῦν +καρπόν +καλόν +ἐκκόπτεται +καί +εἰς +πῦρ +βάλλεται +μέν +ἐγώ +ὑμᾶς +βαπτίζω +ἐν +ὕδατι +εἰς +μετάνοιαν +δέ +ὁ +ὀπίσω +μου +ἐρχόμενος +ἰσχυρότερος +μού +ἐστιν +οὗ +οὐκ +εἰμί +ἱκανός +τά +ὑποδήματα +βαστάσαι +αὐτός +ὑμᾶς +βαπτίσει +ἐν +Πνεύματι +Ἁγίῳ +καί +πυρί +οὗ +τό +πτύον +ἐν +τῇ +χειρί +αὐτοῦ +καί +διακαθαριεῖ +τήν +ἅλωνα +αὐτοῦ +καί +συνάξει +τόν +σῖτον +αὐτοῦ +εἰς +τήν +ἀποθήκην +δέ +τό +ἄχυρον +κατακαύσει +πυρί +ἀσβέστῳ +Τότε +παραγίνεται +ὁ +Ἰησοῦς +ἀπό +τῆς +Γαλιλαίας +ἐπί +τόν +Ἰορδάνην +πρός +τόν +Ἰωάνην +τοῦ +βαπτισθῆναι +ὑπ’ +αὐτοῦ +δέ +ὁ +διεκώλυεν +αὐτόν +λέγων +Ἐγώ +χρείαν +ἔχω +ὑπό +σοῦ +βαπτισθῆναι +καί +σύ +ἔρχῃ +πρός +με +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἄφες +ἄρτι +γάρ +οὕτως +πρέπον +ἐστίν +ἡμῖν +πληρῶσαι +πᾶσαν +δικαιοσύνην +τότε +ἀφίησιν +αὐτόν +δέ +βαπτισθείς +ὁ +Ἰησοῦς +εὐθύς +ἀνέβη +ἀπό +τοῦ +ὕδατος +καί +ἰδού +ἠνεῴχθησαν +οἱ +οὐρανοί +καί +εἶδεν +Πνεῦμα +Θεοῦ +καταβαῖνον +ὡσεί +περιστεράν +ἐρχόμενον +ἐπ’ +αὐτόν +καί +ἰδού +φωνή +ἐκ +τῶν +οὐρανῶν +λέγουσα +Οὗτος +ἐστιν +ὁ +Υἱός +μου +ὁ +ἀγαπητός +ἐν +ᾧ +εὐδόκησα +Τότε +ὁ +Ἰησοῦς +ἀνήχθη +εἰς +τήν +ἔρημον +ὑπό +τοῦ +Πνεύματος +πειρασθῆναι +ὑπό +τοῦ +διαβόλου +καί +νηστεύσας +ἡμέρας +τεσσεράκοντα +καί +τεσσεράκοντα +νύκτας +ὕστερον +ἐπείνασεν +καί +προσελθών +ὁ +πειράζων +εἶπεν +αὐτῷ +Εἰ +εἶ +Υἱός +τοῦ +Θεοῦ +εἰπέ +ἵνα +οἱ +λίθοι +οὗτοι +ἄρτοι +γένωνται +δέ +ὁ +ἀποκριθείς +εἶπεν +Γέγραπται +Οὐκ +ἐπ’ +ἄρτῳ +μόνῳ +ζήσεται +ὁ +ἄνθρωπος +ἀλλ’ +ἐπί +παντί +ῥήματι +ἐκπορευομένῳ +διά +στόματος +Θεοῦ +Τότε +παραλαμβάνει +αὐτόν +ὁ +διάβολος +εἰς +τήν +ἁγίαν +πόλιν +καί +ἔστησεν +αὐτόν +ἐπί +τό +πτερύγιον +τοῦ +ἱεροῦ +καί +λέγει +αὐτῷ +Εἰ +εἶ +Υἱός +τοῦ +Θεοῦ +βάλε +σεαυτόν +κάτω +γάρ +γέγραπται +ὅτι +Τοῖς +ἀγγέλοις +αὐτοῦ +ἐντελεῖται +περί +σοῦ +καί +ἐπί +χειρῶν +ἀροῦσιν +σε +μή +ποτε +προσκόψῃς +πρός +λίθον +τόν +πόδα +σου +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Πάλιν +γέγραπται +Οὐκ +ἐκπειράσεις +Κύριον +τόν +Θεόν +σου +Πάλιν +παραλαμβάνει +αὐτόν +ὁ +διάβολος +εἰς +ὄρος +ὑψηλόν +λίαν +καί +δείκνυσιν +αὐτῷ +πάσας +τάς +βασιλείας +τοῦ +κόσμου +καί +τήν +δόξαν +αὐτῶν +καί +εἶπεν +αὐτῷ +Ταῦτα +πάντα +σοι +δώσω +ἐάν +πεσών +προσκυνήσῃς +μοι +τότε +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ὕπαγε +Σατανᾶ +γάρ +γέγραπται +Κύριον +τόν +θεόν +σου +προσκυνήσεις +καί +αὐτῷ +μόνῳ +λατρεύσεις +Τότε +ἀφίησιν +αὐτόν +ὁ +διάβολος +καί +ἰδού +ἄγγελοι +προσῆλθον +καί +διηκόνουν +αὐτῷ +δέ +Ἀκούσας +ὅτι +Ἰωάνης +παρεδόθη +ἀνεχώρησεν +εἰς +τήν +Γαλιλαίαν +καί +καταλιπών +τήν +Ναζαρά +ἐλθών +κατῴκησεν +εἰς +Καφαρναούμ +τήν +παραθαλασσίαν +ἐν +ὁρίοις +Ζαβουλών +καί +Νεφθαλείμ +ἵνα +πληρωθῇ +τό +ῥηθέν +διά +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Γῆ +Ζαβουλών +καί +γῆ +Νεφθαλείμ +ὁδόν +θαλάσσης +πέραν +τοῦ +Ἰορδάνου +Γαλιλαία +τῶν +ἐθνῶν +ὁ +λαός +ὁ +καθήμενος +ἐν +σκοτίᾳ +φῶς +μέγα +εἶδεν +καί +τοῖς +καθημένοις +ἐν +χώρᾳ +καί +σκιᾷ +θανάτου +φῶς +ἀνέτειλεν +αὐτοῖς +Ἀπό +τότε +ἤρξατο +ὁ +Ἰησοῦς +κηρύσσειν +καί +λέγειν +Μετανοεῖτε +γάρ +ἤγγικεν +ἡ +βασιλεία +τῶν +οὐρανῶν +δέ +Περιπατῶν +παρά +τήν +θάλασσαν +τῆς +Γαλιλαίας +εἶδεν +δύο +ἀδελφούς +Σίμωνα +τόν +λεγόμενον +Πέτρον +καί +Ἀνδρέαν +τόν +ἀδελφόν +αὐτοῦ +βάλλοντας +ἀμφίβληστρον +εἰς +τήν +θάλασσαν +γάρ +ἦσαν +ἁλεεῖς +καί +λέγει +αὐτοῖς +Δεῦτε +ὀπίσω +μου +καί +ποιήσω +ὑμᾶς +ἁλεεῖς +ἀνθρώπων +δέ +οἱ +εὐθέως +ἀφέντες +τά +δίκτυα +ἠκολούθησαν +αὐτῷ +Καί +προβάς +ἐκεῖθεν +εἶδεν +ἄλλους +δύο +ἀδελφούς +Ἰάκωβον +τόν +τοῦ +Ζεβεδαίου +καί +Ἰωάνην +τόν +ἀδελφόν +αὐτοῦ +ἐν +τῷ +πλοίῳ +μετά +Ζεβεδαίου +τοῦ +πατρός +αὐτῶν +καταρτίζοντας +τά +δίκτυα +αὐτῶν +καί +ἐκάλεσεν +αὐτούς +δέ +οἱ +εὐθέως +ἀφέντες +τό +πλοῖον +καί +τόν +πατέρα +αὐτῶν +ἠκολούθησαν +αὐτῷ +Καί +περιῆγεν +ἐν +ὅλῃ +τῇ +Γαλιλαίᾳ +διδάσκων +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +καί +κηρύσσων +τό +εὐαγγέλιον +τῆς +βασιλείας +καί +θεραπεύων +πᾶσαν +νόσον +καί +πᾶσαν +μαλακίαν +ἐν +τῷ +λαῷ +καί +ἀπῆλθεν +ἡ +ἀκοή +αὐτοῦ +εἰς +ὅλην +τήν +Συρίαν +καί +προσήνεγκαν +αὐτῷ +πάντας +τούς +κακῶς +ἔχοντας +ποικίλαις +νόσοις +καί +βασάνοις +συνεχομένους +δαιμονιζομένους +καί +σεληνιαζομένους +καί +παραλυτικούς +καί +ἐθεράπευσεν +αὐτούς +καί +ἠκολούθησαν +αὐτῷ +ὄχλοι +πολλοί +ἀπό +τῆς +Γαλιλαίας +καί +Δεκαπόλεως +καί +Ἱεροσολύμων +καί +Ἰουδαίας +καί +πέραν +τοῦ +Ἰορδάνου +δέ +Ἰδών +τούς +ὄχλους +ἀνέβη +εἰς +τό +ὄρος +καί +καθίσαντος +αὐτοῦ +προσῆλθαν +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +καί +ἀνοίξας +τό +στόμα +αὐτοῦ +ἐδίδασκεν +αὐτούς +λέγων +Μακάριοι +οἱ +πτωχοί +τῷ +πνεύματι +ὅτι +αὐτῶν +ἐστιν +ἡ +βασιλεία +τῶν +οὐρανῶν +μακάριοι +οἱ +πενθοῦντες +ὅτι +αὐτοί +παρακληθήσονται +μακάριοι +οἱ +πραεῖς +ὅτι +αὐτοί +κληρονομήσουσιν +τήν +γῆν +μακάριοι +οἱ +πεινῶντες +καί +διψῶντες +τήν +δικαιοσύνην +ὅτι +αὐτοί +χορτασθήσονται +μακάριοι +οἱ +ἐλεήμονες +ὅτι +αὐτοί +ἐλεηθήσονται +μακάριοι +οἱ +καθαροί +τῇ +καρδίᾳ +ὅτι +αὐτοί +τόν +Θεόν +ὄψονται +μακάριοι +οἱ +εἰρηνοποιοί +ὅτι +αὐτοί +υἱοί +Θεοῦ +κληθήσονται +μακάριοι +οἱ +δεδιωγμένοι +ἕνεκεν +δικαιοσύνης +ὅτι +αὐτῶν +ἐστιν +ἡ +βασιλεία +τῶν +οὐρανῶν +μακάριοι +ἐστε +ὅταν +ὀνειδίσωσιν +ὑμᾶς +καί +διώξωσιν +καί +εἴπωσιν +πᾶν +πονηρόν +καθ’ +ὑμῶν +ψευδόμενοι +ἕνεκεν +ἐμοῦ +χαίρετε +καί +ἀγαλλιᾶσθε +ὅτι +ὁ +μισθός +ὑμῶν +πολύς +ἐν +τοῖς +οὐρανοῖς +γάρ +οὕτως +ἐδίωξαν +τούς +προφήτας +τούς +πρό +ὑμῶν +Ὑμεῖς +ἐστε +τό +ἅλας +τῆς +γῆς +δέ +ἐάν +τό +ἅλας +μωρανθῇ +ἐν +τίνι +ἁλισθήσεται +εἰς +οὐδέν +ἰσχύει +ἔτι +εἰ +μή +βληθέν +ἔξω +καταπατεῖσθαι +ὑπό +τῶν +ἀνθρώπων +Ὑμεῖς +ἐστε +τό +φῶς +τοῦ +κόσμου +οὐ +δύναται +πόλις +κρυβῆναι +ἐπάνω +ὄρους +κειμένη +οὐδέ +καίουσιν +λύχνον +καί +τιθέασιν +αὐτόν +ὑπό +τόν +μόδιον +ἀλλ’ +ἐπί +τήν +λυχνίαν +καί +λάμπει +πᾶσιν +τοῖς +ἐν +τῇ +οἰκίᾳ +οὕτως +λαμψάτω +τό +φῶς +ὑμῶν +ἔμπροσθεν +τῶν +ἀνθρώπων +ὅπως +ἴδωσιν +ὑμῶν +τά +καλά +ἔργα +καί +δοξάσωσιν +τόν +πατέρα +ὑμῶν +τόν +ἐν +τοῖς +οὐρανοῖς +Μή +νομίσητε +ὅτι +ἦλθον +καταλῦσαι +τόν +νόμον +ἤ +τούς +προφήτας +οὐκ +ἦλθον +καταλῦσαι +ἀλλά +πληρῶσαι +γάρ +ἀμήν +λέγω +ὑμῖν +ἕως +ἄν +παρέλθῃ +ὁ +οὐρανός +καί +ἡ +γῆ +ἰῶτα +ἕν +ἤ +μία +κεραία +οὐ +μή +παρέλθῃ +ἀπό +τοῦ +νόμου +ἕως +ἄν +πάντα +γένηται +οὖν +ἐάν +ὅς +λύσῃ +μίαν +τῶν +ἐντολῶν +τούτων +τῶν +ἐλαχίστων +καί +διδάξῃ +οὕτως +τούς +ἀνθρώπους +ἐλάχιστος +κληθήσεται +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +δ’ +ἄν +ὅς +ποιήσῃ +καί +διδάξῃ +οὗτος +μέγας +κληθήσεται +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +γάρ +λέγω +ὑμῖν +ὅτι +ἐάν +μή +περισσεύσῃ +ὑμῶν +ἡ +δικαιοσύνη +πλεῖον +τῶν +γραμματέων +καί +Φαρισαίων +οὐ +μή +εἰσέλθητε +εἰς +τήν +βασιλείαν +τῶν +οὐρανῶν +Ἠκούσατε +ὅτι +ἐρρέθη +τοῖς +ἀρχαίοις +Οὐ +φονεύσεις +δ’ +ἄν +ὅς +φονεύσῃ +ἔνοχος +ἔσται +τῇ +κρίσει +δέ +ἐγώ +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +ὀργιζόμενος +τῷ +ἀδελφῷ +αὐτοῦ +ἔνοχος +ἔσται +τῇ +κρίσει +δ’ +ἄν +ὅς +εἴπῃ +τῷ +ἀδελφῷ +αὐτοῦ +Ῥακά +ἔνοχος +ἔσται +τῷ +συνεδρίῳ +δ’ +ἄν +ὅς +εἴπῃ +Μωρέ +ἔνοχος +ἔσται +εἰς +τήν +γέενναν +τοῦ +πυρός +οὖν +ἐάν +προσφέρῃς +τό +δῶρον +σου +ἐπί +τό +θυσιαστήριον +κἀκεῖ +μνησθῇς +ὅτι +ὁ +ἀδελφός +σου +ἔχει +τι +κατά +σοῦ +ἄφες +ἐκεῖ +τό +δῶρον +σου +ἔμπροσθεν +τοῦ +θυσιαστηρίου +καί +ὕπαγε +πρῶτον +διαλλάγηθι +τῷ +ἀδελφῷ +σου +καί +τότε +ἐλθών +πρόσφερε +τό +δῶρον +σου +ἴσθι +εὐνοῶν +τῷ +ἀντιδίκῳ +σου +ταχύ +ἕως +ὅτου +εἶ +μετ’ +αὐτοῦ +ἐν +τῇ +ὁδῷ +μή +ποτέ +σε +παραδῷ +ὁ +ἀντίδικος +τῷ +κριτῇ +καί +ὁ +κριτής +τῷ +ὑπηρέτῃ +καί +εἰς +φυλακήν +βληθήσῃ +ἀμήν +λέγω +σοι +οὐ +μή +ἐξέλθῃς +ἐκεῖθεν +ἕως +ἄν +ἀποδῷς +τόν +ἔσχατον +κοδράντην +Ἠκούσατε +ὅτι +ἐρρέθη +Οὐ +μοιχεύσεις +δέ +ἐγώ +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +βλέπων +γυναῖκα +πρός +τό +ἐπιθυμῆσαι +αὐτήν +ἤδη +ἐμοίχευσεν +αὐτήν +ἐν +τῇ +καρδίᾳ +αὐτοῦ +δέ +εἰ +ὁ +ὀφθαλμός +σου +ὁ +δεξιός +σκανδαλίζει +σε +ἔξελε +αὐτόν +καί +βάλε +ἀπό +σοῦ +γάρ +συμφέρει +σοι +ἵνα +ἀπόληται +ἕν +τῶν +μελῶν +σου +καί +μή +ὅλον +τό +σῶμα +σου +βληθῇ +εἰς +γέενναν +καί +εἰ +ἡ +δεξιά +σου +χείρ +σκανδαλίζει +σε +ἔκκοψον +αὐτήν +καί +βάλε +ἀπό +σοῦ +γάρ +συμφέρει +σοι +ἵνα +ἀπόληται +ἕν +τῶν +μελῶν +σου +καί +μή +ὅλον +τό +σῶμα +σου +εἰς +γέενναν +ἀπέλθῃ +δέ +Ἐρρέθη +ἄν +Ὅς +ἀπολύσῃ +τήν +γυναῖκα +αὐτοῦ +δότω +αὐτῇ +ἀποστάσιον +δέ +ἐγώ +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +ἀπολύων +τήν +γυναῖκα +αὐτοῦ +παρεκτός +λόγου +πορνείας +ποιεῖ +αὐτήν +μοιχευθῆναι +καί +ἐάν +ὅς +ἀπολελυμένην +γαμήσῃ +μοιχᾶται +Πάλιν +ἠκούσατε +ὅτι +ἐρρέθη +τοῖς +ἀρχαίοις +Οὐκ +ἐπιορκήσεις +δέ +ἀποδώσεις +τῷ +Κυρίῳ +τούς +ὅρκους +σου +δέ +ἐγώ +λέγω +ὑμῖν +μή +ὀμόσαι +ὅλως +μήτε +ἐν +τῷ +οὐρανῷ +ὅτι +ἐστίν +θρόνος +τοῦ +Θεοῦ +μήτε +ἐν +τῇ +γῇ +ὅτι +ἐστιν +ὑποπόδιον +τῶν +ποδῶν +αὐτοῦ +μήτε +εἰς +Ἱεροσόλυμα +ὅτι +ἐστίν +πόλις +τοῦ +μεγάλου +Βασιλέως +μήτε +ἐν +τῇ +κεφαλῇ +σου +ὀμόσῃς +ὅτι +οὐ +δύνασαι +μίαν +τρίχα +ποιῆσαι +λευκήν +ἤ +μέλαιναν +δέ +ἔστω +ὁ +λόγος +ὑμῶν +ναί +ναί +οὔ +οὔ +δέ +τό +περισσόν +τούτων +ἐκ +τοῦ +πονηροῦ +ἐστιν +Ἠκούσατε +ὅτι +ἐρρέθη +Ὀφθαλμόν +ἀντί +ὀφθαλμοῦ +καί +ὀδόντα +ἀντί +ὀδόντος +δέ +ἐγώ +λέγω +ὑμῖν +μή +ἀντιστῆναι +τῷ +πονηρῷ +ἀλλ’ +ὅστις +σε +ῥαπίζει +εἰς +τήν +δεξιάν +σιαγόνα +σου +στρέψον +αὐτῷ +καί +τήν +ἄλλην +καί +τῷ +θέλοντι +σοι +κριθῆναι +καί +τόν +χιτῶνα +σου +λαβεῖν +ἄφες +αὐτῷ +καί +τό +ἱμάτιον +καί +ὅστις +σε +ἀγγαρεύσει +μίλιον +ἕν +ὕπαγε +μετ’ +αὐτοῦ +δύο +τῷ +αἰτοῦντι +σε +δός +καί +τόν +θέλοντα +ἀπό +σοῦ +δανίσασθαι +μή +ἀποστραφῇς +Ἠκούσατε +ὅτι +ἐρρέθη +Ἀγαπήσεις +τόν +πλησίον +σου +καί +μισήσεις +τόν +ἐχθρόν +σου +δέ +ἐγώ +λέγω +ὑμῖν +ἀγαπᾶτε +τούς +ἐχθρούς +ὑμῶν +καί +προσεύχεσθε +ὑπέρ +τῶν +διωκόντων +ὑμᾶς +ὅπως +γένησθε +υἱοί +τοῦ +Πατρός +ὑμῶν +τοῦ +ἐν +οὐρανοῖς +ὅτι +τόν +ἥλιον +αὐτοῦ +ἀνατέλλει +ἐπί +πονηρούς +καί +ἀγαθούς +καί +βρέχει +ἐπί +δικαίους +καί +ἀδίκους +γάρ +ἐάν +ἀγαπήσητε +τούς +ἀγαπῶντας +ὑμᾶς +τίνα +μισθόν +ἔχετε +οὐχί +καί +οἱ +τελῶναι +τό +αὐτό +ποιοῦσιν +καί +ἐάν +ἀσπάσησθε +τούς +ἀδελφούς +ὑμῶν +μόνον +τί +περισσόν +ποιεῖτε +οὐχί +καί +οἱ +ἐθνικοί +τό +αὐτό +ποιοῦσιν +οὖν +Ἔσεσθε +ὑμεῖς +τέλειοι +ὡς +ὁ +Πατήρ +ὑμῶν +ὁ +οὐράνιος +τέλειος +ἐστιν +δέ +Προσέχετε +τήν +δικαιοσύνην +ὑμῶν +μή +ποιεῖν +ἔμπροσθεν +τῶν +ἀνθρώπων +πρός +τό +θεαθῆναι +αὐτοῖς +δέ +εἰ +μήγε +μισθόν +οὐκ +ἔχετε +παρά +τῷ +Πατρί +ὑμῶν +τῷ +ἐν +τοῖς +οὐρανοῖς +οὖν +Ὅταν +ποιῇς +ἐλεημοσύνην +μή +σαλπίσῃς +ἔμπροσθεν +σου +ὥσπερ +οἱ +ὑποκριταί +ποιοῦσιν +ἐν +ταῖς +συναγωγαῖς +καί +ἐν +ταῖς +ῥύμαις +ὅπως +δοξασθῶσιν +ὑπό +τῶν +ἀνθρώπων +ἀμήν +λέγω +ὑμῖν +ἀπέχουσιν +τόν +μισθόν +αὐτῶν +δέ +σοῦ +ποιοῦντος +ἐλεημοσύνην +μή +γνώτω +ἡ +ἀριστερά +σου +τί +ποιεῖ +ἡ +δεξιά +σου +ὅπως +ᾖ +σου +ἡ +ἐλεημοσύνη +ἐν +τῷ +κρυπτῷ +καί +ὁ +Πατήρ +σου +ὁ +βλέπων +ἐν +τῷ +κρυπτῷ +ἀποδώσει +σοι +Καί +ὅταν +προσεύχησθε +οὐκ +ἔσεσθε +ὡς +οἱ +ὑποκριταί +ὅτι +φιλοῦσιν +ἐν +ταῖς +συναγωγαῖς +καί +ἐν +ταῖς +γωνίαις +τῶν +πλατειῶν +ἑστῶτες +προσεύχεσθαι +ὅπως +φανῶσιν +τοῖς +ἀνθρώποις +ἀμήν +λέγω +ὑμῖν +ἀπέχουσιν +τόν +μισθόν +αὐτῶν +δέ +ὅταν +σύ +προσεύχῃ +εἴσελθε +εἰς +τό +ταμεῖον +σου +καί +κλείσας +τήν +θύραν +σου +πρόσευξαι +τῷ +Πατρί +σου +τῷ +ἐν +τῷ +κρυπτῷ +καί +ὁ +Πατήρ +σου +ὁ +βλέπων +ἐν +τῷ +κρυπτῷ +ἀποδώσει +σοι +δέ +Προσευχόμενοι +μή +βατταλογήσητε +ὥσπερ +οἱ +ἐθνικοί +γάρ +δοκοῦσιν +ὅτι +ἐν +τῇ +πολυλογίᾳ +αὐτῶν +εἰσακουσθήσονται +οὖν +μή +ὁμοιωθῆτε +αὐτοῖς +γάρ +οἶδεν +ὁ +Πατήρ +ὑμῶν +ὧν +χρείαν +ἔχετε +πρό +τοῦ +ὑμᾶς +αἰτῆσαι +αὐτόν +οὖν +οὕτως +προσεύχεσθε +ὑμεῖς +Πάτερ +ἡμῶν +ὁ +ἐν +τοῖς +οὐρανοῖς +Ἁγιασθήτω +τό +ὄνομα +σου +ἐλθάτω +ἡ +βασιλεία +σου +γενηθήτω +τό +θέλημα +σου +ὡς +ἐν +οὐρανῷ +καί +ἐπί +γῆς +Τόν +ἄρτον +ἡμῶν +τόν +ἐπιούσιον +δός +ἡμῖν +σήμερον +καί +ἄφες +ἡμῖν +τά +ὀφειλήματα +ἡμῶν +ὡς +καί +ἡμεῖς +ἀφήκαμεν +τοῖς +ὀφειλέταις +ἡμῶν +καί +μή +εἰσενέγκῃς +ἡμᾶς +εἰς +πειρασμόν +ἀλλά +ῥῦσαι +ἡμᾶς +ἀπό +τοῦ +πονηροῦ +γάρ +Ἐάν +ἀφῆτε +τοῖς +ἀνθρώποις +τά +παραπτώματα +αὐτῶν +ἀφήσει +καί +ὑμῖν +ὁ +Πατήρ +ὑμῶν +ὁ +οὐράνιος +δέ +ἐάν +μή +ἀφῆτε +τοῖς +ἀνθρώποις +οὐδέ +ὁ +Πατήρ +ὑμῶν +ἀφήσει +τά +παραπτώματα +ὑμῶν +δέ +Ὅταν +νηστεύητε +μή +γίνεσθε +ὡς +οἱ +ὑποκριταί +σκυθρωποί +γάρ +ἀφανίζουσιν +τά +πρόσωπα +αὐτῶν +ὅπως +φανῶσιν +τοῖς +ἀνθρώποις +νηστεύοντες +ἀμήν +λέγω +ὑμῖν +ἀπέχουσιν +τόν +μισθόν +αὐτῶν +δέ +σύ +νηστεύων +ἄλειψαι +σου +τήν +κεφαλήν +καί +τό +πρόσωπον +σου +νίψαι +ὅπως +μή +φανῇς +τοῖς +ἀνθρώποις +νηστεύων +ἀλλά +τῷ +Πατρί +σου +τῷ +ἐν +τῷ +κρυφαίῳ +καί +ὁ +Πατήρ +σου +ὁ +βλέπων +ἐν +τῷ +κρυφαίῳ +ἀποδώσει +σοι +Μή +θησαυρίζετε +ὑμῖν +θησαυρούς +ἐπί +τῆς +γῆς +ὅπου +σής +καί +βρῶσις +ἀφανίζει +καί +ὅπου +κλέπται +διορύσσουσιν +καί +κλέπτουσιν +δέ +θησαυρίζετε +ὑμῖν +θησαυρούς +ἐν +οὐρανῷ +ὅπου +οὔτε +σής +οὔτε +βρῶσις +ἀφανίζει +καί +ὅπου +κλέπται +οὐ +διορύσσουσιν +οὐδέ +κλέπτουσιν +γάρ +ὅπου +ἐστιν +ὁ +θησαυρός +σου +ἐκεῖ +ἔσται +καί +ἡ +καρδία +σου +Ὁ +λύχνος +τοῦ +σώματος +ἐστιν +ὁ +ὀφθαλμός +οὖν +ἐάν +ᾖ +ὁ +ὀφθαλμός +σου +ἁπλοῦς +ὅλον +τό +σῶμα +σου +φωτεινόν +ἔσται +δέ +ἐάν +ὁ +ὀφθαλμός +σου +πονηρός +ᾖ +ὅλον +τό +σῶμα +σου +σκοτεινόν +ἔσται +οὖν +εἰ +τό +φῶς +τό +ἐν +σοί +σκότος +ἐστίν +τό +σκότος +πόσον +Οὐδείς +δύναται +δυσί +κυρίοις +δουλεύειν +γάρ +ἤ +τόν +ἕνα +μισήσει +καί +τόν +ἕτερον +ἀγαπήσει +ἤ +ἑνός +ἀνθέξεται +καί +τοῦ +ἑτέρου +καταφρονήσει +οὐ +δύνασθε +Θεῷ +δουλεύειν +καί +μαμωνᾷ +Διά +τοῦτο +λέγω +ὑμῖν +μή +μεριμνᾶτε +τῇ +ψυχῇ +ὑμῶν +τί +φάγητε +ἤ +τί +πίητε +μηδέ +τῷ +σώματι +ὑμῶν +τί +ἐνδύσησθε +οὐχί +ἡ +ψυχή +πλεῖον +ἐστιν +τῆς +τροφῆς +καί +τό +σῶμα +τοῦ +ἐνδύματος +ἐμβλέψατε +εἰς +τά +πετεινά +τοῦ +οὐρανοῦ +ὅτι +οὐ +σπείρουσιν +οὐδέ +θερίζουσιν +οὐδέ +συνάγουσιν +εἰς +ἀποθήκας +καί +ὁ +Πατήρ +ὑμῶν +ὁ +οὐράνιος +τρέφει +αὐτά +οὐχ +ὑμεῖς +μᾶλλον +διαφέρετε +αὐτῶν +δέ +τίς +ἐξ +ὑμῶν +μεριμνῶν +δύναται +προσθεῖναι +ἐπί +τήν +ἡλικίαν +αὐτοῦ +πῆχυν +ἕνα +καί +περί +ἐνδύματος +τί +μεριμνᾶτε +καταμάθετε +τά +κρίνα +τοῦ +ἀγροῦ +πῶς +αὐξάνουσιν +οὐ +κοπιῶσιν +οὐδέ +νήθουσιν +δέ +λέγω +ὑμῖν +ὅτι +οὐδέ +Σολομών +ἐν +πάσῃ +τῇ +δόξῃ +αὐτοῦ +περιεβάλετο +ὡς +ἕν +τούτων +δέ +εἰ +τόν +χόρτον +τοῦ +ἀγροῦ +σήμερον +ὄντα +καί +αὔριον +εἰς +κλίβανον +βαλλόμενον +ὁ +Θεός +οὕτως +ἀμφιέννυσιν +οὐ +πολλῷ +μᾶλλον +ὑμᾶς +ὀλιγόπιστοι +οὖν +μή +μεριμνήσητε +λέγοντες +Τί +φάγωμεν +ἤ +Τί +πίωμεν +ἤ +Τί +περιβαλώμεθα +γάρ +πάντα +ταῦτα +τά +ἔθνη +ἐπιζητοῦσιν +γάρ +οἶδεν +ὁ +Πατήρ +ὑμῶν +ὁ +οὐράνιος +ὅτι +χρῄζετε +τούτων +ἁπάντων +δέ +ζητεῖτε +πρῶτον +τήν +βασιλείαν +καί +τήν +δικαιοσύνην +αὐτοῦ +καί +ταῦτα +πάντα +προστεθήσεται +ὑμῖν +οὖν +μή +μεριμνήσητε +εἰς +τήν +αὔριον +γάρ +ἡ +αὔριον +μεριμνήσει +ἑαυτῆς +ἀρκετόν +τῇ +ἡμέρᾳ +ἡ +κακία +αὐτῆς +Μή +κρίνετε +ἵνα +μή +κριθῆτε +γάρ +ἐν +ᾧ +κρίματι +κρίνετε +κριθήσεσθε +καί +ἐν +ᾧ +μέτρῳ +μετρεῖτε +μετρηθήσεται +ὑμῖν +δέ +τί +βλέπεις +τό +κάρφος +τό +ἐν +τῷ +ὀφθαλμῷ +τοῦ +ἀδελφοῦ +σου +δέ +τήν +ἐν +τῷ +σῷ +ὀφθαλμῷ +δοκόν +οὐ +κατανοεῖς +ἤ +πῶς +ἐρεῖς +τῷ +ἀδελφῷ +σου +Ἄφες +ἐκβάλω +τό +κάρφος +ἐκ +τοῦ +ὀφθαλμοῦ +σου +καί +ἰδού +ἡ +δοκός +ἐν +τῷ +ὀφθαλμῷ +σοῦ +ὑποκριτά +ἔκβαλε +πρῶτον +ἐκ +τοῦ +ὀφθαλμοῦ +σοῦ +τήν +δοκόν +καί +τότε +διαβλέψεις +ἐκβαλεῖν +τό +κάρφος +ἐκ +τοῦ +ὀφθαλμοῦ +τοῦ +ἀδελφοῦ +σου +Μή +δῶτε +τό +ἅγιον +τοῖς +κυσίν +μηδέ +βάλητε +τούς +μαργαρίτας +ὑμῶν +ἔμπροσθεν +τῶν +χοίρων +μή +ποτε +καταπατήσουσιν +αὐτούς +ἐν +τοῖς +ποσίν +αὐτῶν +καί +στραφέντες +ῥήξωσιν +ὑμᾶς +Αἰτεῖτε +καί +δοθήσεται +ὑμῖν +ζητεῖτε +καί +εὑρήσετε +κρούετε +καί +ἀνοιγήσεται +ὑμῖν +γάρ +πᾶς +ὁ +αἰτῶν +λαμβάνει +καί +ὁ +ζητῶν +εὑρίσκει +καί +τῷ +κρούοντι +ἀνοιγήσεται +ἤ +ἐστιν +ἐξ +ὑμῶν +τίς +ἄνθρωπος +ὅν +αἰτήσει +ὁ +υἱός +αὐτοῦ +ἄρτον +μή +λίθον +ἐπιδώσει +αὐτῷ +ἤ +καί +ἰχθύν +αἰτήσει +μή +ὄφιν +ἐπιδώσει +αὐτῷ +οὖν +εἰ +ὑμεῖς +πονηροί +ὄντες +οἴδατε +δόματα +ἀγαθά +διδόναι +τοῖς +τέκνοις +ὑμῶν +πόσῳ +μᾶλλον +ὁ +Πατήρ +ὑμῶν +ὁ +ἐν +τοῖς +οὐρανοῖς +δώσει +ἀγαθά +τοῖς +αἰτοῦσιν +αὐτόν +οὖν +Πάντα +ἐάν +ὅσα +θέλητε +ἵνα +ποιῶσιν +ὑμῖν +οἱ +ἄνθρωποι +οὕτως +καί +ὑμεῖς +ποιεῖτε +αὐτοῖς +γάρ +οὗτος +ἐστιν +ὁ +νόμος +καί +οἱ +προφῆται +Εἰσέλθατε +διά +τῆς +στενῆς +πύλης +ὅτι +πλατεῖα +ἡ +πύλη +καί +εὐρύχωρος +ἡ +ὁδός +ἡ +ἀπάγουσα +εἰς +τήν +ἀπώλειαν +καί +πολλοί +εἰσιν +οἱ +εἰσερχόμενοι +δι’ +αὐτῆς +ὅτι +στενή +ἡ +πύλη +καί +τεθλιμμένη +ἡ +ὁδός +ἡ +ἀπάγουσα +εἰς +τήν +ζωήν +καί +ὀλίγοι +εἰσίν +οἱ +εὑρίσκοντες +αὐτήν +Προσέχετε +ἀπό +τῶν +ψευδοπροφητῶν +οἵτινες +ἔρχονται +πρός +ὑμᾶς +ἐν +ἐνδύμασιν +προβάτων +δέ +ἔσωθεν +εἰσιν +λύκοι +ἅρπαγες +ἀπό +τῶν +καρπῶν +αὐτῶν +ἐπιγνώσεσθε +αὐτούς +μήτι +συλλέγουσιν +ἀπό +ἀκανθῶν +σταφυλάς +ἤ +ἀπό +τριβόλων +σῦκα +οὕτως +πᾶν +δένδρον +ἀγαθόν +καρπούς +καλούς +ποιεῖ +δέ +τό +σαπρόν +δένδρον +καρπούς +πονηρούς +ποιεῖ +οὐ +δύναται +δένδρον +ἀγαθόν +καρπούς +πονηρούς +ἐνεγκεῖν +οὐδέ +δένδρον +σαπρόν +καρπούς +καλούς +ἐνεγκεῖν +πᾶν +δένδρον +μή +ποιοῦν +καρπόν +καλόν +ἐκκόπτεται +καί +εἰς +πῦρ +βάλλεται +ἄραγε +ἀπό +τῶν +καρπῶν +αὐτῶν +ἐπιγνώσεσθε +αὐτούς +Οὐ +πᾶς +ὁ +λέγων +μοι +Κύριε +Κύριε +εἰσελεύσεται +εἰς +τήν +βασιλείαν +τῶν +οὐρανῶν +ἀλλ’ +ὁ +ποιῶν +τό +θέλημα +τοῦ +Πατρός +μου +τοῦ +ἐν +τοῖς +οὐρανοῖς +πολλοί +ἐροῦσιν +μοι +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +Κύριε +Κύριε +οὐ +τῷ +σῷ +ὀνόματι +ἐπροφητεύσαμεν +καί +τῷ +σῷ +ὀνόματι +δαιμόνια +ἐξεβάλομεν +καί +τῷ +σῷ +ὀνόματι +δυνάμεις +πολλάς +ἐποιήσαμεν +καί +τότε +ὁμολογήσω +αὐτοῖς +ὅτι +Οὐδέποτε +ἔγνων +ὑμᾶς +ἀποχωρεῖτε +ἀπ’ +ἐμοῦ +οἱ +ἐργαζόμενοι +τήν +ἀνομίαν +οὖν +Πᾶς +ὅστις +ἀκούει +μου +τούς +λόγους +τούτους +καί +ποιεῖ +αὐτούς +ὁμοιωθήσεται +ἀνδρί +φρονίμῳ +ὅστις +ᾠκοδόμησεν +αὐτοῦ +τήν +οἰκίαν +ἐπί +τήν +πέτραν +καί +κατέβη +ἡ +βροχή +καί +ἦλθον +οἱ +ποταμοί +καί +ἔπνευσαν +οἱ +ἄνεμοι +καί +προσέπεσαν +τῇ +οἰκίᾳ +ἐκείνῃ +καί +οὐκ +ἔπεσεν +γάρ +τεθεμελίωτο +ἐπί +τήν +πέτραν +καί +πᾶς +ὁ +ἀκούων +μου +τούς +λόγους +τούτους +καί +μή +ποιῶν +αὐτούς +ὁμοιωθήσεται +ἀνδρί +μωρῷ +ὅστις +ᾠκοδόμησεν +αὐτοῦ +τήν +οἰκίαν +ἐπί +τήν +ἄμμον +καί +κατέβη +ἡ +βροχή +καί +ἦλθον +οἱ +ποταμοί +καί +ἔπνευσαν +οἱ +ἄνεμοι +καί +προσέκοψαν +τῇ +οἰκίᾳ +ἐκείνῃ +καί +ἔπεσεν +καί +ἦν +ἡ +πτῶσις +αὐτῆς +μεγάλη +Καί +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +τούς +λόγους +τούτους +ἐξεπλήσσοντο +οἱ +ὄχλοι +ἐπί +τῇ +διδαχῇ +αὐτοῦ +γάρ +ἦν +διδάσκων +αὐτούς +ὡς +ἐξουσίαν +ἔχων +καί +οὐχ +ὡς +οἱ +γραμματεῖς +αὐτῶν +δέ +Καταβάντος +αὐτοῦ +ἀπό +τοῦ +ὄρους +ἠκολούθησαν +αὐτῷ +ὄχλοι +πολλοί +καί +ἰδού +λεπρός +προσελθών +προσεκύνει +αὐτῷ +λέγων +Κύριε +ἐάν +θέλῃς +δύνασαι +με +καθαρίσαι +καί +ἐκτείνας +τήν +χεῖρα +ἥψατο +αὐτοῦ +λέγων +Θέλω +καθαρίσθητι +καί +εὐθέως +ἐκαθερίσθη +αὐτοῦ +ἡ +λέπρα +καί +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ὅρα +μηδενί +εἴπῃς +ἀλλά +ὕπαγε +σεαυτόν +δεῖξον +τῷ +ἱερεῖ +καί +προσένεγκον +τό +δῶρον +ὅ +προσέταξεν +Μωϋσῆς +εἰς +μαρτύριον +αὐτοῖς +δέ +Εἰσελθόντος +αὐτοῦ +εἰς +Καφαρναούμ +προσῆλθεν +αὐτῷ +ἑκατόνταρχος +παρακαλῶν +αὐτόν +καί +λέγων +Κύριε +ὁ +παῖς +μου +βέβληται +ἐν +τῇ +οἰκίᾳ +παραλυτικός +δεινῶς +βασανιζόμενος +λέγει +αὐτῷ +Ἐγώ +ἐλθών +θεραπεύσω +αὐτόν +δέ +ἀποκριθείς +ὁ +ἑκατόνταρχος +ἔφη +Κύριε +οὐκ +εἰμί +ἱκανός +ἵνα +ὑπό +μου +τήν +στέγην +εἰσέλθῃς +ἀλλά +μόνον +εἰπέ +λόγῳ +καί +ἰαθήσεται +ὁ +παῖς +μου +γάρ +καί +ἐγώ +εἰμι +ἄνθρωπος +ὑπό +ἐξουσίαν +ἔχων +ὑπ’ +ἐμαυτόν +στρατιώτας +καί +λέγω +τούτῳ +Πορεύθητι +καί +πορεύεται +καί +ἄλλῳ +Ἔρχου +καί +ἔρχεται +καί +τῷ +δούλῳ +μου +Ποίησον +τοῦτο +καί +ποιεῖ +δέ +ἀκούσας +ὁ +Ἰησοῦς +ἐθαύμασεν +καί +εἶπεν +τοῖς +ἀκολουθοῦσιν +Ἀμήν +λέγω +ὑμῖν +παρ’ +οὐδενί +τοσαύτην +πίστιν +ἐν +τῷ +Ἰσραήλ +εὗρον +δέ +λέγω +ὑμῖν +ὅτι +πολλοί +ἀπό +ἀνατολῶν +καί +δυσμῶν +ἥξουσιν +καί +ἀνακλιθήσονται +μετά +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +δέ +οἱ +υἱοί +τῆς +βασιλείας +ἐκβληθήσονται +εἰς +τό +σκότος +τό +ἐξώτερον +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +καί +εἶπεν +ὁ +Ἰησοῦς +τῷ +ἑκατοντάρχῃ +Ὕπαγε +ὡς +ἐπίστευσας +γενηθήτω +σοι +καί +ἰάθη +ὁ +παῖς +ἐν +τῇ +ὥρᾳ +ἐκείνῃ +Καί +ὁ +Ἰησοῦς +ἐλθών +εἰς +τήν +οἰκίαν +Πέτρου +εἶδεν +τήν +πενθεράν +αὐτοῦ +βεβλημένην +καί +πυρέσσουσαν +καί +ἥψατο +τῆς +χειρός +αὐτῆς +καί +ἀφῆκεν +αὐτήν +ὁ +πυρετός +καί +ἠγέρθη +καί +διηκόνει +αὐτῷ +δέ +Ὀψίας +γενομένης +προσήνεγκαν +αὐτῷ +δαιμονιζομένους +πολλούς +καί +ἐξέβαλεν +τά +πνεύματα +λόγῳ +καί +πάντας +τούς +κακῶς +ἔχοντας +ἐθεράπευσεν +ὅπως +πληρωθῇ +τό +ῥηθέν +διά +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Αὐτός +τάς +ἀσθενείας +ἡμῶν +ἔλαβεν +καί +τάς +νόσους +ἐβάστασεν +δέ +ὁ +Ἰησοῦς +Ἰδών +ὄχλον +περί +αὐτόν +ἐκέλευσεν +ἀπελθεῖν +εἰς +τό +πέραν +Καί +προσελθών +εἷς +γραμματεύς +εἶπεν +αὐτῷ +Διδάσκαλε +ἀκολουθήσω +σοι +ἐάν +ὅπου +ἀπέρχῃ +καί +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Αἱ +ἀλώπεκες +φωλεούς +ἔχουσιν +καί +τά +πετεινά +τοῦ +οὐρανοῦ +κατασκηνώσεις +δέ +ὁ +Υἱός +τοῦ +ἀνθρώπου +οὐκ +ἔχει +ποῦ +τήν +κεφαλήν +κλίνῃ +δέ +ἕτερος +τῶν +μαθητῶν +εἶπεν +αὐτῷ +Κύριε +ἐπίτρεψον +μοι +πρῶτον +ἀπελθεῖν +καί +θάψαι +τόν +πατέρα +μου +δέ +ὁ +Ἰησοῦς +λέγει +αὐτῷ +Ἀκολούθει +μοι +καί +ἄφες +τούς +νεκρούς +θάψαι +τούς +ἑαυτῶν +νεκρούς +Καί +ἐμβάντι +αὐτῷ +εἰς +τό +πλοῖον +ἠκολούθησαν +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +καί +ἰδού +σεισμός +μέγας +ἐγένετο +ἐν +τῇ +θαλάσσῃ +ὥστε +τό +πλοῖον +καλύπτεσθαι +ὑπό +τῶν +κυμάτων +δέ +αὐτός +ἐκάθευδεν +καί +προσελθόντες +ἤγειραν +αὐτόν +λέγοντες +Κύριε +σῶσον +ἀπολλύμεθα +καί +λέγει +αὐτοῖς +Τί +δειλοί +ἐστε +ὀλιγόπιστοι +τότε +ἐγερθείς +ἐπετίμησεν +τοῖς +ἀνέμοις +καί +τῇ +θαλάσσῃ +καί +ἐγένετο +γαλήνη +μεγάλη +δέ +οἱ +ἄνθρωποι +ἐθαύμασαν +λέγοντες +Ποταπός +ἐστιν +οὗτος +ὅτι +καί +οἱ +ἄνεμοι +καί +ἡ +θάλασσα +αὐτῷ +ὑπακούουσιν +Καί +ἐλθόντος +αὐτοῦ +εἰς +τό +πέραν +εἰς +τήν +χώραν +τῶν +Γαδαρηνῶν +ὑπήντησαν +αὐτῷ +δύο +δαιμονιζόμενοι +ἐκ +τῶν +μνημείων +ἐξερχόμενοι +χαλεποί +λίαν +ὥστε +μή +ἰσχύειν +τινά +παρελθεῖν +διά +τῆς +ὁδοῦ +ἐκείνης +καί +ἰδού +ἔκραξαν +λέγοντες +Τί +ἡμῖν +καί +σοί +Υἱέ +τοῦ +Θεοῦ +ἦλθες +ὧδε +πρό +καιροῦ +βασανίσαι +ἡμᾶς +δέ +ἦν +μακράν +ἀπ’ +αὐτῶν +ἀγέλη +χοίρων +πολλῶν +βοσκομένη +δέ +οἱ +δαίμονες +παρεκάλουν +αὐτόν +λέγοντες +Εἰ +ἐκβάλλεις +ἡμᾶς +ἀπόστειλον +ἡμᾶς +εἰς +τήν +ἀγέλην +τῶν +χοίρων +καί +εἶπεν +αὐτοῖς +Ὑπάγετε +δέ +οἱ +ἐξελθόντες +ἀπῆλθον +εἰς +τούς +χοίρους +καί +ἰδού +ὥρμησεν +πᾶσα +ἡ +ἀγέλη +κατά +τοῦ +κρημνοῦ +εἰς +τήν +θάλασσαν +καί +ἀπέθανον +ἐν +τοῖς +ὕδασιν +δέ +οἱ +βόσκοντες +ἔφυγον +καί +ἀπελθόντες +εἰς +τήν +πόλιν +ἀπήγγειλαν +πάντα +καί +τά +τῶν +δαιμονιζομένων +καί +ἰδού +πᾶσα +ἡ +πόλις +ἐξῆλθεν +εἰς +ὑπάντησιν +τῷ +Ἰησοῦ +καί +ἰδόντες +αὐτόν +παρεκάλεσαν +ὅπως +μεταβῇ +ἀπό +τῶν +ὁρίων +αὐτῶν +Καί +ἐμβάς +εἰς +πλοῖον +διεπέρασεν +καί +ἦλθεν +εἰς +τήν +ἰδίαν +πόλιν +Καί +ἰδού +προσέφερον +αὐτῷ +παραλυτικόν +ἐπί +κλίνης +βεβλημένον +καί +ὁ +Ἰησοῦς +ἰδών +τήν +πίστιν +αὐτῶν +εἶπεν +τῷ +παραλυτικῷ +Θάρσει +τέκνον +ἀφίενται +σου +αἱ +ἁμαρτίαι +καί +ἰδού +τινες +τῶν +γραμματέων +εἶπαν +ἐν +ἑαυτοῖς +Οὗτος +βλασφημεῖ +καί +ὁ +Ἰησοῦς +εἰδώς +τάς +ἐνθυμήσεις +αὐτῶν +εἶπεν +Ἵνα +τί +ἐνθυμεῖσθε +πονηρά +ἐν +ταῖς +καρδίαις +ὑμῶν +γάρ +τί +ἐστιν +εὐκοπώτερον +εἰπεῖν +Ἀφίενται +σου +αἱ +ἁμαρτίαι +ἤ +εἰπεῖν +Ἔγειρε +καί +περιπάτει +δέ +ἵνα +εἰδῆτε +ὅτι +ἐξουσίαν +ἔχει +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐπί +τῆς +γῆς +ἀφιέναι +ἁμαρτίας +τότε +λέγει +τῷ +παραλυτικῷ +Ἔγειρε +ἆρον +σου +τήν +κλίνην +καί +ὕπαγε +εἰς +τόν +οἶκον +σου +καί +ἐγερθείς +ἀπῆλθεν +εἰς +τόν +οἶκον +αὐτοῦ +δέ +ἰδόντες +οἱ +ὄχλοι +ἐφοβήθησαν +καί +ἐδόξασαν +τόν +Θεόν +τόν +δόντα +ἐξουσίαν +τοιαύτην +τοῖς +ἀνθρώποις +Καί +παράγων +ἐκεῖθεν +ὁ +Ἰησοῦς +εἶδεν +ἄνθρωπον +καθήμενον +ἐπί +τό +τελώνιον +Μαθθαῖον +λεγόμενον +καί +λέγει +αὐτῷ +Ἀκολούθει +μοι +καί +ἀναστάς +ἠκολούθησεν +αὐτῷ +Καί +ἐγένετο +αὐτοῦ +ἀνακειμένου +ἐν +τῇ +οἰκίᾳ +καί +ἰδού +πολλοί +τελῶναι +καί +ἁμαρτωλοί +ἐλθόντες +συνανέκειντο +τῷ +Ἰησοῦ +καί +τοῖς +μαθηταῖς +αὐτοῦ +καί +ἰδόντες +οἱ +Φαρισαῖοι +ἔλεγον +τοῖς +μαθηταῖς +αὐτοῦ +Διά +τί +μετά +τῶν +τελωνῶν +καί +ἁμαρτωλῶν +ἐσθίει +ὁ +διδάσκαλος +ὑμῶν +δέ +ὁ +ἀκούσας +εἶπεν +Οὐ +χρείαν +ἰατροῦ +ἔχουσιν +οἱ +ἰσχύοντες +ἀλλ’ +οἱ +κακῶς +ἔχοντες +δέ +πορευθέντες +μάθετε +τί +ἐστιν +Ἔλεος +θέλω +καί +οὐ +θυσίαν +γάρ +οὐ +ἦλθον +καλέσαι +δικαίους +ἀλλά +ἁμαρτωλούς +Τότε +προσέρχονται +αὐτῷ +οἱ +μαθηταί +Ἰωάνου +λέγοντες +Διά +τί +ἡμεῖς +καί +οἱ +Φαρισαῖοι +νηστεύομεν +δέ +οἱ +μαθηταί +σου +οὐ +νηστεύουσιν +καί +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Μή +δύνανται +οἱ +υἱοί +τοῦ +νυμφῶνος +πενθεῖν +ἐφ’ +ὅσον +μετ’ +αὐτῶν +ἐστιν +ὁ +νυμφίος +δέ +ἐλεύσονται +ἡμέραι +ὅταν +ἀπαρθῇ +ἀπ’ +αὐτῶν +ὁ +νυμφίος +καί +τότε +νηστεύσουσιν +δέ +οὐδείς +ἐπιβάλλει +ἐπίβλημα +ῥάκους +ἀγνάφου +ἐπί +ἱματίῳ +παλαιῷ +γάρ +αἴρει +τό +πλήρωμα +αὐτοῦ +ἀπό +τοῦ +ἱματίου +καί +χεῖρον +σχίσμα +γίνεται +οὐδέ +βάλλουσιν +οἶνον +νέον +εἰς +ἀσκούς +παλαιούς +δέ +εἰ +μήγε +ῥήγνυνται +οἱ +ἀσκοί +καί +ὁ +οἶνος +ἐκχεῖται +καί +οἱ +ἀσκοί +ἀπόλλυνται +ἀλλά +βάλλουσιν +οἶνον +νέον +εἰς +ἀσκούς +καινούς +καί +ἀμφότεροι +συντηροῦνται +Ταῦτα +αὐτοῦ +λαλοῦντος +αὐτοῖς +ἰδού +ἄρχων +εἷς +προσελθών +προσεκύνει +αὐτῷ +λέγων +ὅτι +Ἠ +θυγάτηρ +μου +ἄρτι +ἐτελεύτησεν +ἀλλά +ἐλθών +ἐπίθες +τήν +χεῖρα +σου +ἐπ’ +αὐτήν +καί +ζήσεται +καί +ἐγερθείς +ὁ +Ἰησοῦς +ἠκολούθει +αὐτῷ +καί +οἱ +μαθηταί +αὐτοῦ +Καί +ἰδού +γυνή +αἱμορροοῦσα +δώδεκα +ἔτη +προσελθοῦσα +ὄπισθεν +ἥψατο +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ +γάρ +ἔλεγεν +ἐν +ἑαυτῇ +Ἐάν +μόνον +ἅψωμαι +τοῦ +ἱματίου +αὐτοῦ +σωθήσομαι +δέ +ὁ +Ἰησοῦς +στραφείς +καί +ἰδών +αὐτήν +εἶπεν +Θάρσει +θύγατερ +ἡ +πίστις +σου +σέσωκεν +σε +καί +ἐσώθη +ἡ +γυνή +ἀπό +τῆς +ὥρας +ἐκείνης +καί +ὁ +Ἰησοῦς +ἐλθών +εἰς +τήν +οἰκίαν +τοῦ +ἄρχοντος +καί +ἰδών +τούς +αὐλητάς +καί +τόν +ὄχλον +θορυβούμενον +ἔλεγεν +Ἀναχωρεῖτε +γάρ +οὐ +ἀπέθανεν +τό +κοράσιον +ἀλλά +καθεύδει +καί +κατεγέλων +αὐτοῦ +δέ +ὅτε +ἐξεβλήθη +ὁ +ὄχλος +εἰσελθών +ἐκράτησεν +τῆς +χειρός +αὐτῆς +καί +ἠγέρθη +τό +κοράσιον +καί +ἐξῆλθεν +ἡ +φήμη +αὕτη +εἰς +ὅλην +τήν +γῆν +ἐκείνην +Καί +παράγοντι +ἐκεῖθεν +τῷ +Ἰησοῦ +ἠκολούθησαν +δύο +τυφλοί +κράζοντες +καί +λέγοντες +Ἐλέησον +ἡμᾶς +υἱός +Δαυείδ +δέ +ἐλθόντι +εἰς +τήν +οἰκίαν +προσῆλθον +αὐτῷ +οἱ +τυφλοί +καί +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Πιστεύετε +ὅτι +δύναμαι +τοῦτο +ποιῆσαι +λέγουσιν +αὐτῷ +Ναί +Κύριε +τότε +ἥψατο +τῶν +ὀφθαλμῶν +αὐτῶν +λέγων +Κατά +τήν +πίστιν +ὑμῶν +γενηθήτω +ὑμῖν +καί +ἠνεῴχθησαν +αὐτῶν +οἱ +ὀφθαλμοί +καί +ἐνεβριμήθη +αὐτοῖς +ὁ +Ἰησοῦς +λέγων +Ὁρᾶτε +μηδείς +γινωσκέτω +δέ +οἱ +ἐξελθόντες +διεφήμισαν +αὐτόν +ἐν +ὅλῃ +τῇ +γῇ +ἐκείνῃ +δέ +Αὐτῶν +ἐξερχομένων +ἰδού +προσήνεγκαν +αὐτῷ +κωφόν +δαιμονιζόμενον +καί +ἐκβληθέντος +τοῦ +δαιμονίου +ἐλάλησεν +ὁ +κωφός +καί +ἐθαύμασαν +οἱ +ὄχλοι +λέγοντες +Οὐδέποτε +ἐφάνη +οὕτως +ἐν +τῷ +Ἰσραήλ +δέ +οἱ +Φαρισαῖοι +ἔλεγον +Ἐν +τῷ +ἄρχοντι +τῶν +δαιμονίων +ἐκβάλλει +τά +δαιμόνια +Καί +περιῆγεν +ὁ +Ἰησοῦς +τάς +πόλεις +πάσας +καί +τάς +κώμας +διδάσκων +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +καί +κηρύσσων +τό +εὐαγγέλιον +τῆς +βασιλείας +καί +θεραπεύων +πᾶσαν +νόσον +καί +πᾶσαν +μαλακίαν +δέ +Ἰδών +τούς +ὄχλους +ἐσπλαγχνίσθη +περί +αὐτῶν +ὅτι +ἦσαν +ἐσκυλμένοι +καί +ἐρριμμένοι +ὡσεί +πρόβατα +μή +ἔχοντα +ποιμένα +τότε +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +μέν +Ὁ +θερισμός +πολύς +δέ +οἱ +ἐργάται +ὀλίγοι +οὖν +δεήθητε +τοῦ +Κυρίου +τοῦ +θερισμοῦ +ὅπως +ἐκβάλῃ +ἐργάτας +εἰς +τόν +θερισμόν +αὐτοῦ +Καί +προσκαλεσάμενος +τούς +δώδεκα +μαθητάς +αὐτοῦ +ἔδωκεν +αὐτοῖς +ἐξουσίαν +πνευμάτων +ἀκαθάρτων +ὥστε +ἐκβάλλειν +αὐτά +καί +θεραπεύειν +πᾶσαν +νόσον +καί +πᾶσαν +μαλακίαν +δέ +Τῶν +δώδεκα +ἀποστόλων +τά +ὀνόματα +ἐστιν +ταῦτα +πρῶτος +Σίμων +ὁ +λεγόμενος +Πέτρος +καί +Ἀνδρέας +ὁ +ἀδελφός +αὐτοῦ +καί +Ἰάκωβος +ὁ +τοῦ +Ζεβεδαίου +καί +Ἰωάνης +ὁ +ἀδελφός +αὐτοῦ +Φίλιππος +καί +Βαρθολομαῖος +Θωμᾶς +καί +Μαθθαῖος +ὁ +τελώνης +Ἰάκωβος +ὁ +τοῦ +Ἁλφαίου +καί +Θαδδαῖος +Σίμων +ὁ +Καναναῖος +καί +Ἰούδας +ὁ +Ἰσκαριώτης +ὁ +καί +παραδούς +αὐτόν +Τούτους +τούς +δώδεκα +ἀπέστειλεν +ὁ +Ἰησοῦς +παραγγείλας +αὐτοῖς +λέγων +Εἰς +ὁδόν +ἐθνῶν +μή +ἀπέλθητε +καί +εἰς +πόλιν +Σαμαρειτῶν +μή +εἰσέλθητε +δέ +πορεύεσθε +μᾶλλον +πρός +τά +πρόβατα +τά +ἀπολωλότα +οἴκου +Ἰσραήλ +δέ +πορευόμενοι +κηρύσσετε +λέγοντες +ὅτι +Ἤγγικεν +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀσθενοῦντας +θεραπεύετε +νεκρούς +ἐγείρετε +λεπρούς +καθαρίζετε +δαιμόνια +ἐκβάλλετε +δωρεάν +ἐλάβετε +δωρεάν +δότε +Μή +κτήσησθε +χρυσόν +μηδέ +ἄργυρον +μηδέ +χαλκόν +εἰς +τάς +ζώνας +ὑμῶν +μή +πήραν +εἰς +ὁδόν +μηδέ +δύο +χιτῶνας +μηδέ +ὑποδήματα +μηδέ +ῥάβδον +γάρ +ἄξιος +ὁ +ἐργάτης +τῆς +τροφῆς +αὐτοῦ +δ’ +ἄν +εἰς +ἥν +πόλιν +ἤ +κώμην +εἰσέλθητε +ἐξετάσατε +τίς +ἐν +αὐτῇ +ἄξιος +ἐστιν +κἀκεῖ +μείνατε +ἕως +ἄν +ἐξέλθητε +δέ +εἰσερχόμενοι +εἰς +τήν +οἰκίαν +ἀσπάσασθε +αὐτήν +καί +μέν +ἐάν +ᾖ +ἡ +οἰκία +ἀξία +ἐλθάτω +ἡ +εἰρήνη +ὑμῶν +ἐπ’ +αὐτήν +δέ +ἐάν +μή +ᾖ +ἀξία +ἡ +εἰρήνη +ὑμῶν +πρός +ὑμᾶς +ἐπιστραφήτω +καί +ἄν +ὅς +μή +δέξηται +ὑμᾶς +μηδέ +ἀκούσῃ +τούς +λόγους +ὑμῶν +ἐξερχόμενοι +ἔξω +τῆς +οἰκίας +ἤ +τῆς +πόλεως +ἐκείνης +ἐκτινάξατε +τόν +κονιορτόν +τῶν +ποδῶν +ὑμῶν +ἀμήν +λέγω +ὑμῖν +ἀνεκτότερον +ἔσται +γῇ +Σοδόμων +καί +Γομόρρων +ἐν +ἡμέρᾳ +κρίσεως +ἤ +τῇ +πόλει +ἐκείνῃ +Ἰδού +ἐγώ +ἀποστέλλω +ὑμᾶς +ὡς +πρόβατα +ἐν +μέσῳ +λύκων +οὖν +γίνεσθε +φρόνιμοι +ὡς +οἱ +ὄφεις +καί +ἀκέραιοι +ὡς +αἱ +περιστεραί +δέ +Προσέχετε +ἀπό +τῶν +ἀνθρώπων +γάρ +παραδώσουσιν +ὑμᾶς +εἰς +συνέδρια +καί +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +μαστιγώσουσιν +ὑμᾶς +δέ +καί +ἐπί +ἡγεμόνας +καί +βασιλεῖς +ἀχθήσεσθε +ἕνεκεν +ἐμοῦ +εἰς +μαρτύριον +αὐτοῖς +καί +τοῖς +ἔθνεσιν +δέ +ὅταν +παραδῶσιν +ὑμᾶς +μή +μεριμνήσητε +πῶς +ἤ +τί +λαλήσητε +γάρ +δοθήσεται +ὑμῖν +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +τί +λαλήσητε +γάρ +οὐ +ὑμεῖς +ἐστε +οἱ +λαλοῦντες +ἀλλά +τό +Πνεῦμα +τοῦ +Πατρός +ὑμῶν +τό +λαλοῦν +ἐν +ὑμῖν +δέ +παραδώσει +ἀδελφός +ἀδελφόν +εἰς +θάνατον +καί +πατήρ +τέκνον +καί +ἐπαναστήσονται +τέκνα +ἐπί +γονεῖς +καί +θανατώσουσιν +αὐτούς +καί +ἔσεσθε +μισούμενοι +ὑπό +πάντων +διά +τό +ὄνομα +μου +δέ +ὁ +ὑπομείνας +εἰς +τέλος +οὗτος +σωθήσεται +δέ +ὅταν +διώκωσιν +ὑμᾶς +ἐν +τῇ +πόλει +ταύτῃ +φεύγετε +εἰς +τήν +ἑτέραν +γάρ +ἀμήν +λέγω +ὑμῖν +οὐ +μή +τελέσητε +τάς +πόλεις +τοῦ +Ἰσραήλ +ἕως +ἔλθῃ +ὁ +Υἱός +τοῦ +ἀνθρώπου +Οὐκ +ἔστιν +μαθητής +ὑπέρ +τόν +διδάσκαλον +οὐδέ +δοῦλος +ὑπέρ +τόν +κύριον +αὐτοῦ +ἀρκετόν +τῷ +μαθητῇ +ἵνα +γένηται +ὡς +ὁ +διδάσκαλος +αὐτοῦ +καί +ὁ +δοῦλος +ὡς +ὁ +κύριος +αὐτοῦ +εἰ +τόν +οἰκοδεσπότην +Βεελζεβούλ +ἐπεκάλεσαν +πόσῳ +μᾶλλον +τούς +οἰκιακούς +αὐτοῦ +οὖν +μή +φοβηθῆτε +αὐτούς +γάρ +οὐδέν +ἐστιν +κεκαλυμμένον +ὅ +οὐκ +ἀποκαλυφθήσεται +καί +κρυπτόν +ὅ +οὐ +γνωσθήσεται +ὅ +λέγω +ὑμῖν +ἐν +τῇ +σκοτίᾳ +εἴπατε +ἐν +τῷ +φωτί +καί +ὅ +εἰς +τό +οὖς +ἀκούετε +κηρύξατε +ἐπί +τῶν +δωμάτων +καί +μή +φοβεῖσθε +ἀπό +τῶν +ἀποκτεννόντων +τό +σῶμα +δέ +μή +δυναμένων +τήν +ψυχήν +ἀποκτεῖναι +δέ +φοβεῖσθε +μᾶλλον +τόν +δυνάμενον +καί +ψυχήν +καί +σῶμα +ἀπολέσαι +ἐν +γεέννῃ +οὐχί +δύο +στρουθία +ἀσσαρίου +πωλεῖται +καί +ἕν +ἐξ +αὐτῶν +οὐ +πεσεῖται +ἐπί +τήν +γῆν +ἄνευ +τοῦ +Πατρός +ὑμῶν +δέ +καί +ὑμῶν +αἱ +τρίχες +τῆς +κεφαλῆς +πᾶσαι +ἠριθμημέναι +εἰσίν +οὖν +μή +φοβεῖσθε +πολλῶν +στρουθίων +διαφέρετε +ὑμεῖς +οὖν +Πᾶς +ὅστις +ὁμολογήσει +ἐν +ἐμοί +ἔμπροσθεν +τῶν +ἀνθρώπων +ὁμολογήσω +κἀγώ +ἐν +αὐτῷ +ἔμπροσθεν +τοῦ +Πατρός +μου +τοῦ +ἐν +τοῖς +οὐρανοῖς +δ’ +ἄν +ὅστις +ἀρνήσηται +με +ἔμπροσθεν +τῶν +ἀνθρώπων +ἀρνήσομαι +κἀγώ +αὐτόν +ἔμπροσθεν +τοῦ +Πατρός +μου +τοῦ +ἐν +τοῖς +οὐρανοῖς +Μή +νομίσητε +ὅτι +ἦλθον +βαλεῖν +εἰρήνην +ἐπί +τήν +γῆν +οὐκ +ἦλθον +βαλεῖν +εἰρήνην +ἀλλά +μάχαιραν +γάρ +ἦλθον +διχάσαι +ἄνθρωπον +κατά +τοῦ +πατρός +αὐτοῦ +καί +θυγατέρα +κατά +τῆς +μητρός +αὐτῆς +καί +νύμφην +κατά +τῆς +πενθερᾶς +αὐτῆς +καί +ἐχθροί +τοῦ +ἀνθρώπου +οἱ +οἰκιακοί +αὐτοῦ +Ὁ +φιλῶν +πατέρα +ἤ +μητέρα +ὑπέρ +ἐμέ +οὐκ +ἔστιν +μου +ἄξιος +καί +ὁ +φιλῶν +υἱόν +ἤ +θυγατέρα +ὑπέρ +ἐμέ +οὐκ +ἔστιν +μου +ἄξιος +καί +ὅς +οὐ +λαμβάνει +τόν +σταυρόν +αὐτοῦ +καί +ἀκολουθεῖ +ὀπίσω +μου +οὐκ +ἔστιν +μου +ἄξιος +ὁ +εὑρών +τήν +ψυχήν +αὐτοῦ +ἀπολέσει +αὐτήν +καί +ὁ +ἀπολέσας +τήν +ψυχήν +αὐτοῦ +ἕνεκεν +ἐμοῦ +εὑρήσει +αὐτήν +Ὁ +δεχόμενος +ὑμᾶς +ἐμέ +δέχεται +καί +ὁ +ἐμέ +δεχόμενος +δέχεται +τόν +ἀποστείλαντα +με +ὁ +δεχόμενος +προφήτην +εἰς +ὄνομα +προφήτου +μισθόν +προφήτου +λήμψεται +καί +ὁ +δεχόμενος +δίκαιον +εἰς +ὄνομα +δικαίου +μισθόν +δικαίου +λήμψεται +καί +ἐάν +ὅς +ποτίσῃ +ἕνα +τῶν +μικρῶν +τούτων +ποτήριον +ψυχροῦ +μόνον +εἰς +ὄνομα +μαθητοῦ +ἀμήν +λέγω +ὑμῖν +οὐ +μή +ἀπολέσῃ +τόν +μισθόν +αὐτοῦ +Καί +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +διατάσσων +τοῖς +δώδεκα +μαθηταῖς +αὐτοῦ +μετέβη +ἐκεῖθεν +τοῦ +διδάσκειν +καί +κηρύσσειν +ἐν +ταῖς +πόλεσιν +αὐτῶν +δέ +Ὁ +Ἰωάνης +ἀκούσας +ἐν +τῷ +δεσμωτηρίῳ +τά +ἔργα +τοῦ +Χριστοῦ +πέμψας +διά +τῶν +μαθητῶν +αὐτοῦ +εἶπεν +αὐτῷ +Σύ +εἶ +ὁ +ἐρχόμενος +ἤ +ἕτερον +προσδοκῶμεν +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Πορευθέντες +ἀπαγγείλατε +Ἰωάνει +ἅ +ἀκούετε +καί +βλέπετε +τυφλοί +ἀναβλέπουσιν +καί +χωλοί +περιπατοῦσιν +λεπροί +καθαρίζονται +καί +κωφοί +ἀκούουσιν +καί +νεκροί +ἐγείρονται +καί +πτωχοί +εὐαγγελίζονται +καί +μακάριος +ἐστιν +ἐάν +ὅς +μή +σκανδαλισθῇ +ἐν +ἐμοί +δέ +Τούτων +πορευομένων +ἤρξατο +ὁ +Ἰησοῦς +λέγειν +τοῖς +ὄχλοις +περί +Ἰωάνου +Τί +θεάσασθαι +ἐξήλθατε +εἰς +τήν +ἔρημον +κάλαμον +ὑπό +ἀνέμου +σαλευόμενον +ἀλλά +τί +ἰδεῖν +ἐξήλθατε +ἄνθρωπον +ἐν +μαλακοῖς +ἠμφιεσμένον +ἰδού +οἱ +τά +μαλακά +φοροῦντες +ἐν +τοῖς +οἴκοις +τῶν +βασιλέων +ἀλλά +τί +ἐξήλθατε +προφήτην +ἰδεῖν +ναί +λέγω +ὑμῖν +καί +περισσότερον +προφήτου +οὗτος +ἐστιν +περί +οὗ +γέγραπται +Ἰδού +ἐγώ +ἀποστέλλω +τόν +ἄγγελον +μου +πρό +προσώπου +σου +ὅς +κατασκευάσει +τήν +ὁδόν +σου +ἔμπροσθεν +σου +ἀμήν +λέγω +ὑμῖν +οὐκ +ἐγήγερται +ἐν +γεννητοῖς +γυναικῶν +μείζων +Ἰωάνου +τοῦ +Βαπτιστοῦ +δέ +ὁ +μικρότερος +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +μείζων +αὐτοῦ +ἐστιν +δέ +ἀπό +τῶν +ἡμερῶν +Ἰωάνου +τοῦ +Βαπτιστοῦ +ἕως +ἄρτι +ἡ +βασιλεία +τῶν +οὐρανῶν +βιάζεται +καί +βιασταί +ἁρπάζουσιν +αὐτήν +γάρ +πάντες +οἱ +προφῆται +καί +ὁ +νόμος +ἕως +Ἰωάνου +ἐπροφήτευσαν +καί +εἰ +θέλετε +δέξασθαι +αὐτός +ἐστιν +Ἠλείας +ὁ +μέλλων +ἔρχεσθαι +ὁ +ἔχων +ὦτα +ἀκουέτω +δέ +Τίνι +ὁμοιώσω +τήν +γενεάν +ταύτην +ὁμοία +ἐστίν +παιδίοις +καθημένοις +ἐν +ταῖς +ἀγοραῖς +ἅ +προσφωνοῦντα +τοῖς +ἑτέροις +λέγουσιν +Ηὐλήσαμεν +ὑμῖν +καί +οὐκ +ὠρχήσασθε +ἐθρηνήσαμεν +καί +οὐκ +ἐκόψασθε +γάρ +ἦλθεν +Ἰωάνης +μήτε +ἐσθίων +μήτε +πίνων +καί +λέγουσιν +Δαιμόνιον +ἔχει +ἦλθεν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐσθίων +καί +πίνων +καί +λέγουσιν +Ἰδού +ἄνθρωπος +φάγος +καί +οἰνοπότης +φίλος +τελωνῶν +καί +ἁμαρτωλῶν +καί +ἐδικαιώθη +ἡ +σοφία +ἀπό +τῶν +ἔργων +αὐτῆς +Τότε +ἤρξατο +ὀνειδίζειν +τάς +πόλεις +ἐν +αἷς +ἐγένοντο +αἱ +πλεῖσται +δυνάμεις +αὐτοῦ +ὅτι +οὐ +μετενόησαν +Οὐαί +σοι +Χοραζείν +οὐαί +σοι +Βηθσαϊδάν +ὅτι +εἰ +ἐν +Τύρῳ +καί +Σιδῶνι +ἐγένοντο +αἱ +δυνάμεις +αἱ +γενόμεναι +ἐν +ὑμῖν +ἄν +πάλαι +ἐν +σάκκῳ +καί +σποδῷ +μετενόησαν +πλήν +λέγω +ὑμῖν +Τύρῳ +καί +Σιδῶνι +ἀνεκτότερον +ἔσται +ἐν +ἡμέρᾳ +κρίσεως +ἤ +ὑμῖν +καί +Καφαρναούμ +μή +σύ +ἕως +οὐρανοῦ +ὑψωθήσῃ +ἕως +Ἅιδου +καταβήσῃ +ὅτι +εἰ +ἐν +Σοδόμοις +ἐγενήθησαν +αἱ +δυνάμεις +αἱ +γενόμεναι +ἐν +σοί +ἄν +ἔμεινεν +μέχρι +τῆς +σήμερον +πλήν +λέγω +ὑμῖν +ὅτι +γῇ +Σοδόμων +ἀνεκτότερον +ἔσται +ἐν +ἡμέρᾳ +κρίσεως +ἤ +σοί +Ἐν +ἐκείνῳ +τῷ +καιρῷ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +Ἐξομολογοῦμαι +σοι +Πάτερ +Κύριε +τοῦ +οὐρανοῦ +καί +τῆς +γῆς +ὅτι +ἔκρυψας +ταῦτα +ἀπό +σοφῶν +καί +συνετῶν +καί +ἀπεκάλυψας +αὐτά +νηπίοις +ναί +ὁ +Πατήρ +ὅτι +οὕτως +εὐδοκία +ἐγένετο +ἔμπροσθεν +σου +Πάντα +μοι +παρεδόθη +ὑπό +τοῦ +Πατρός +μου +καί +οὐδείς +ἐπιγινώσκει +τόν +Υἱόν +εἰ +μή +ὁ +Πατήρ +οὐδέ +τόν +Πατέρα +τις +ἐπιγινώσκει +εἰ +μή +ὁ +Υἱός +καί +ἐάν +ᾧ +ἀποκαλύψαι +βούληται +ὁ +Υἱός +Δεῦτε +πρός +με +πάντες +οἱ +κοπιῶντες +καί +πεφορτισμένοι +κἀγώ +ἀναπαύσω +ὑμᾶς +ἄρατε +τόν +ζυγόν +μου +ἐφ’ +ὑμᾶς +καί +μάθετε +ἀπ’ +ἐμοῦ +ὅτι +εἰμι +πραΰς +καί +ταπεινός +τῇ +καρδίᾳ +καί +εὑρήσετε +ἀνάπαυσιν +ταῖς +ψυχαῖς +ὑμῶν +γάρ +ὁ +ζυγός +μου +χρηστός +καί +τό +φορτίον +μου +ἐλαφρόν +ἐστιν +Ἐν +ἐκείνῳ +τῷ +καιρῷ +ἐπορεύθη +ὁ +Ἰησοῦς +τοῖς +σάββασιν +διά +τῶν +σπορίμων +δέ +οἱ +μαθηταί +αὐτοῦ +ἐπείνασαν +καί +ἤρξαντο +τίλλειν +στάχυας +καί +ἐσθίειν +δέ +οἱ +Φαρισαῖοι +ἰδόντες +εἶπαν +αὐτῷ +Ἰδού +οἱ +μαθηταί +σου +ποιοῦσιν +ὅ +ποιεῖν +οὐκ +ἔξεστιν +ἐν +σαββάτῳ +δέ +ὁ +εἶπεν +αὐτοῖς +Οὐκ +ἀνέγνωτε +τί +ἐποίησεν +Δαυείδ +ὅτε +ἐπείνασεν +καί +οἱ +μετ’ +αὐτοῦ +πῶς +εἰσῆλθεν +εἰς +τόν +οἶκον +τοῦ +Θεοῦ +καί +τούς +ἄρτους +τῆς +προθέσεως +ἔφαγον +ὅ +φαγεῖν +οὐκ +ἐξόν +ἦν +αὐτῷ +οὐδέ +τοῖς +μετ’ +αὐτοῦ +εἰ +μή +τοῖς +ἱερεῦσιν +μόνοις +ἤ +οὐκ +ἀνέγνωτε +ἐν +τῷ +νόμῳ +ὅτι +τοῖς +σάββασιν +οἱ +ἱερεῖς +ἐν +τῷ +ἱερῷ +τό +σάββατον +βεβηλοῦσιν +καί +ἀναίτιοι +εἰσιν +δέ +λέγω +ὑμῖν +ὅτι +τοῦ +ἱεροῦ +μεῖζον +ἐστιν +ὧδε +δέ +εἰ +ἐγνώκειτε +τί +ἐστιν +Ἔλεος +θέλω +καί +οὐ +θυσίαν +ἄν +οὐκ +κατεδικάσατε +τούς +ἀναιτίους +γάρ +ἐστιν +κύριος +τοῦ +σαββάτου +ὁ +Υἱός +τοῦ +ἀνθρώπου +Καί +μεταβάς +ἐκεῖθεν +ἦλθεν +εἰς +τήν +συναγωγήν +αὐτῶν +καί +ἰδού +ἄνθρωπος +χεῖρα +ἔχων +ξηράν +καί +ἐπηρώτησαν +αὐτόν +λέγοντες +Εἰ +ἔξεστιν +τοῖς +σάββασιν +θεραπεῦσαι +ἵνα +κατηγορήσωσιν +αὐτοῦ +δέ +ὁ +εἶπεν +αὐτοῖς +Τίς +ἔσται +ἐξ +ὑμῶν +ἄνθρωπος +ὅς +ἕξει +πρόβατον +ἕν +καί +ἐάν +ἐμπέσῃ +τοῦτο +τοῖς +σάββασιν +εἰς +βόθυνον +οὐχί +κρατήσει +αὐτό +καί +ἐγερεῖ +οὖν +πόσῳ +διαφέρει +ἄνθρωπος +προβάτου +ὥστε +ἔξεστιν +τοῖς +σάββασιν +καλῶς +ποιεῖν +τότε +λέγει +τῷ +ἀνθρώπῳ +Ἔκτεινον +σου +τήν +χεῖρα +καί +ἐξέτεινεν +καί +ἀπεκατεστάθη +ὑγιής +ὡς +ἡ +ἄλλη +δέ +ἐξελθόντες +οἱ +Φαρισαῖοι +συμβούλιον +ἔλαβον +κατ’ +αὐτοῦ +ὅπως +αὐτόν +ἀπολέσωσιν +δέ +Ὁ +Ἰησοῦς +γνούς +ἀνεχώρησεν +ἐκεῖθεν +καί +ἠκολούθησαν +αὐτῷ +πολλοί +καί +ἐθεράπευσεν +αὐτούς +πάντας +καί +ἐπετίμησεν +αὐτοῖς +ἵνα +μή +φανερόν +αὐτόν +ποιήσωσιν +ἵνα +πληρωθῇ +τό +ῥηθέν +διά +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Ἰδού +ὁ +παῖς +μου +ὅν +ᾑρέτισα +ὁ +ἀγαπητός +μου +ὅν +εὐδόκησεν +ἡ +ψυχή +μου +θήσω +τό +Πνεῦμα +μου +ἐπ’ +αὐτόν +καί +κρίσιν +τοῖς +ἔθνεσιν +ἀπαγγελεῖ +οὐκ +ἐρίσει +οὐδέ +κραυγάσει +οὐδέ +ἀκούσει +τις +ἐν +ταῖς +πλατείαις +τήν +φωνήν +αὐτοῦ +κάλαμον +συντετριμμένον +οὐ +κατεάξει +καί +λίνον +τυφόμενον +οὐ +σβέσει +ἕως +ἄν +ἐκβάλῃ +εἰς +νῖκος +τήν +κρίσιν +καί +τῷ +ὀνόματι +αὐτοῦ +ἔθνη +ἐλπιοῦσιν +Τότε +προσηνέχθη +αὐτῷ +δαιμονιζόμενος +τυφλός +καί +κωφός +καί +ἐθεράπευσεν +αὐτόν +ὥστε +τόν +κωφόν +λαλεῖν +καί +βλέπειν +καί +ἐξίσταντο +πάντες +οἱ +ὄχλοι +καί +ἔλεγον +Μήτι +οὗτος +ἐστιν +ὁ +υἱός +Δαυείδ +δέ +οἱ +Φαρισαῖοι +ἀκούσαντες +εἶπον +Οὗτος +οὐκ +ἐκβάλλει +τά +δαιμόνια +εἰ +μή +ἐν +τῷ +Βεελζεβούλ +ἄρχοντι +τῶν +δαιμονίων +δέ +εἰδώς +τάς +ἐνθυμήσεις +αὐτῶν +εἶπεν +αὐτοῖς +Πᾶσα +βασιλεία +μερισθεῖσα +καθ’ +ἑαυτῆς +ἐρημοῦται +καί +πᾶσα +πόλις +ἤ +οἰκία +μερισθεῖσα +καθ’ +ἑαυτῆς +οὐ +σταθήσεται +καί +εἰ +ὁ +Σατανᾶς +τόν +Σατανᾶν +ἐκβάλλει +ἐφ’ +ἑαυτόν +ἐμερίσθη +οὖν +πῶς +σταθήσεται +ἡ +βασιλεία +αὐτοῦ +καί +εἰ +ἐγώ +ἐν +Βεελζεβούλ +ἐκβάλλω +τά +δαιμόνια +οἱ +υἱοί +ὑμῶν +ἐν +τίνι +ἐκβάλλουσιν +διά +τοῦτο +αὐτοί +κριταί +ὑμῶν +ἔσονται +δέ +εἰ +ἐν +Πνεύματι +Θεοῦ +ἐγώ +ἐκβάλλω +τά +δαιμόνια +ἄρα +ἔφθασεν +ἐφ’ +ὑμᾶς +ἡ +βασιλεία +τοῦ +Θεοῦ +ἤ +πῶς +δύναται +τις +εἰσελθεῖν +εἰς +τήν +οἰκίαν +τοῦ +ἰσχυροῦ +καί +τά +σκεύη +αὐτοῦ +ἁρπάσαι +ἐάν +μή +πρῶτον +δήσῃ +τόν +ἰσχυρόν +καί +τότε +τήν +οἰκίαν +αὐτοῦ +διαρπάσει +ὁ +μή +ὤν +μετ’ +ἐμοῦ +κατ’ +ἐμοῦ +ἐστιν +καί +ὁ +μή +συνάγων +μετ’ +ἐμοῦ +σκορπίζει +Διά +τοῦτο +λέγω +ὑμῖν +πᾶσα +ἁμαρτία +καί +βλασφημία +ἀφεθήσεται +τοῖς +ἀνθρώποις +δέ +ἡ +τοῦ +Πνεύματος +βλασφημία +οὐκ +ἀφεθήσεται +καί +ἐάν +ὅς +εἴπῃ +λόγον +κατά +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἀφεθήσεται +αὐτῷ +δ’ +ἄν +ὅς +εἴπῃ +κατά +τοῦ +Πνεύματος +τοῦ +Ἁγίου +οὐκ +ἀφεθήσεται +αὐτῷ +οὔτε +ἐν +τούτῳ +τῷ +αἰῶνι +οὔτε +ἐν +τῷ +μέλλοντι +Ἤ +ποιήσατε +τό +δένδρον +καλόν +καί +τόν +καρπόν +αὐτοῦ +καλόν +ἤ +ποιήσατε +τό +δένδρον +σαπρόν +καί +τόν +καρπόν +αὐτοῦ +σαπρόν +γάρ +ἐκ +τοῦ +καρποῦ +τό +δένδρον +γινώσκεται +γεννήματα +ἐχιδνῶν +πῶς +δύνασθε +ἀγαθά +λαλεῖν +πονηροί +ὄντες +γάρ +ἐκ +τοῦ +περισσεύματος +τῆς +καρδίας +τό +στόμα +λαλεῖ +ὁ +ἀγαθός +ἄνθρωπος +ἐκ +τοῦ +ἀγαθοῦ +θησαυροῦ +ἐκβάλλει +ἀγαθά +καί +ὁ +πονηρός +ἄνθρωπος +ἐκ +τοῦ +πονηροῦ +θησαυροῦ +ἐκβάλλει +πονηρά +δέ +λέγω +ὑμῖν +ὅτι +πᾶν +ῥῆμα +ἀργόν +ὅ +λαλήσουσιν +οἱ +ἄνθρωποι +ἀποδώσουσιν +περί +αὐτοῦ +λόγον +ἐν +ἡμέρᾳ +κρίσεως +γάρ +ἐκ +τῶν +λόγων +σου +δικαιωθήσῃ +καί +ἐκ +τῶν +λόγων +σου +καταδικασθήσῃ +Τότε +ἀπεκρίθησαν +αὐτῷ +τινες +τῶν +γραμματέων +καί +Φαρισαίων +λέγοντες +Διδάσκαλε +θέλομεν +ἀπό +σοῦ +σημεῖον +ἰδεῖν +δέ +ὁ +ἀποκριθείς +εἶπεν +αὐτοῖς +Γενεά +πονηρά +καί +μοιχαλίς +σημεῖον +ἐπιζητεῖ +καί +σημεῖον +οὐ +δοθήσεται +αὐτῇ +εἰ +μή +τό +σημεῖον +Ἰωνᾶ +τοῦ +προφήτου +γάρ +ὥσπερ +ἦν +Ἰωνᾶς +ἐν +τῇ +κοιλίᾳ +τοῦ +κήτους +τρεῖς +ἡμέρας +καί +τρεῖς +νύκτας +οὕτως +ἔσται +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐν +τῇ +καρδίᾳ +τῆς +γῆς +τρεῖς +ἡμέρας +καί +τρεῖς +νύκτας +ἄνδρες +Νινευεῖται +ἀναστήσονται +ἐν +τῇ +κρίσει +μετά +τῆς +γενεᾶς +ταύτης +καί +κατακρινοῦσιν +αὐτήν +ὅτι +μετενόησαν +εἰς +τό +κήρυγμα +Ἰωνᾶ +καί +ἰδού +πλεῖον +Ἰωνᾶ +ὧδε +βασίλισσα +νότου +ἐγερθήσεται +ἐν +τῇ +κρίσει +μετά +τῆς +γενεᾶς +ταύτης +καί +κατακρινεῖ +αὐτήν +ὅτι +ἦλθεν +ἐκ +τῶν +περάτων +τῆς +γῆς +ἀκοῦσαι +τήν +σοφίαν +Σολομῶνος +καί +ἰδού +πλεῖον +Σολομῶνος +ὧδε +δέ +Ὅταν +τό +ἀκάθαρτον +πνεῦμα +ἐξέλθῃ +ἀπό +τοῦ +ἀνθρώπου +διέρχεται +δι’ +ἀνύδρων +τόπων +ζητοῦν +ἀνάπαυσιν +καί +οὐχ +εὑρίσκει +τότε +λέγει +Εἰς +τόν +οἶκον +μου +ἐπιστρέψω +ὅθεν +ἐξῆλθον +καί +ἐλθόν +εὑρίσκει +σχολάζοντα +καί +σεσαρωμένον +καί +κεκοσμημένον +τότε +πορεύεται +καί +παραλαμβάνει +μεθ’ +ἑαυτοῦ +ἑπτά +ἕτερα +πνεύματα +πονηρότερα +ἑαυτοῦ +καί +εἰσελθόντα +κατοικεῖ +ἐκεῖ +καί +γίνεται +τά +ἔσχατα +τοῦ +ἀνθρώπου +ἐκείνου +χείρονα +τῶν +πρώτων +οὕτως +ἔσται +καί +τῇ +γενεᾷ +ταύτῃ +τῇ +πονηρᾷ +Ἔτι +αὐτοῦ +λαλοῦντος +τοῖς +ὄχλοις +ἰδού +ἡ +μήτηρ +καί +οἱ +ἀδελφοί +αὐτοῦ +εἱστήκεισαν +ἔξω +ζητοῦντες +αὐτῷ +λαλῆσαι +δέ +εἶπεν +τις +αὐτῷ +Ἰδού +ἡ +μήτηρ +σου +καί +οἱ +ἀδελφοί +σου +ἔξω +ἑστήκασιν +ζητοῦντες +σοι +λαλῆσαι +δέ +ὁ +ἀποκριθείς +εἶπεν +τῷ +λέγοντι +αὐτῷ +Τίς +ἐστιν +ἡ +μήτηρ +μου +καί +τίνες +εἰσίν +οἱ +ἀδελφοί +μου +καί +ἐκτείνας +τήν +χεῖρα +αὐτοῦ +ἐπί +τούς +μαθητάς +αὐτοῦ +εἶπεν +Ἰδού +ἡ +μήτηρ +μου +καί +οἱ +ἀδελφοί +μου +γάρ +ἄν +ὅστις +ποιήσῃ +τό +θέλημα +τοῦ +Πατρός +μου +τοῦ +ἐν +οὐρανοῖς +αὐτός +μου +ἀδελφός +καί +ἀδελφή +καί +μήτηρ +ἐστίν +Ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ὁ +Ἰησοῦς +ἐξελθών +τῆς +οἰκίας +ἐκάθητο +παρά +τήν +θάλασσαν +καί +συνήχθησαν +πρός +αὐτόν +ὄχλοι +πολλοί +ὥστε +αὐτόν +εἰς +πλοῖον +ἐμβάντα +καθῆσθαι +καί +πᾶς +ὁ +ὄχλος +ἐπί +τόν +αἰγιαλόν +εἱστήκει +καί +ἐλάλησεν +αὐτοῖς +πολλά +ἐν +παραβολαῖς +λέγων +Ἰδού +ἐξῆλθεν +ὁ +σπείρων +τοῦ +σπείρειν +καί +ἐν +τῷ +σπείρειν +αὐτόν +μέν +ἅ +ἔπεσεν +παρά +τήν +ὁδόν +καί +ἐλθόντα +τά +πετεινά +κατέφαγεν +αὐτά +δέ +ἄλλα +ἔπεσεν +ἐπί +τά +πετρώδη +ὅπου +οὐκ +εἶχεν +γῆν +πολλήν +καί +εὐθέως +ἐξανέτειλεν +διά +τό +μή +ἔχειν +βάθος +γῆς +δέ +ἡλίου +ἀνατείλαντος +ἐκαυματίσθη +καί +διά +τό +μή +ἔχειν +ῥίζαν +ἐξηράνθη +δέ +ἄλλα +ἔπεσεν +ἐπί +τάς +ἀκάνθας +καί +ἀνέβησαν +αἱ +ἄκανθαι +καί +ἀπέπνιξαν +αὐτά +δέ +ἄλλα +ἔπεσεν +ἐπί +τήν +γῆν +τήν +καλήν +καί +ἐδίδου +καρπόν +μέν +ὅ +ἑκατόν +δέ +ὅ +ἑξήκοντα +δέ +ὅ +τριάκοντα +ὁ +ἔχων +ὦτα +ἀκουέτω +Καί +προσελθόντες +οἱ +μαθηταί +εἶπαν +αὐτῷ +Διά +τί +ἐν +παραβολαῖς +λαλεῖς +αὐτοῖς +δέ +ὁ +ἀποκριθείς +εἶπεν +ὅτι +Ὑμῖν +δέδοται +γνῶναι +τά +μυστήρια +τῆς +βασιλείας +τῶν +οὐρανῶν +δέ +ἐκείνοις +οὐ +δέδοται +γάρ +ὅστις +ἔχει +δοθήσεται +αὐτῷ +καί +περισσευθήσεται +δέ +ὅστις +οὐκ +ἔχει +καί +ὅ +ἔχει +ἀρθήσεται +ἀπ’ +αὐτοῦ +διά +τοῦτο +ἐν +παραβολαῖς +αὐτοῖς +λαλῶ +ὅτι +βλέποντες +οὐ +βλέπουσιν +καί +ἀκούοντες +οὐκ +ἀκούουσιν +οὐδέ +συνίουσιν +καί +ἀναπληροῦται +αὐτοῖς +ἡ +προφητεία +Ἠσαΐου +ἡ +λέγουσα +Ἀκοῇ +ἀκούσετε +καί +οὐ +μή +συνῆτε +καί +βλέποντες +βλέψετε +καί +οὐ +μή +ἴδητε +γάρ +ἐπαχύνθη +ἡ +καρδία +τοῦ +λαοῦ +τούτου +καί +τοῖς +ὠσίν +βαρέως +ἤκουσαν +καί +τούς +ὀφθαλμούς +αὐτῶν +ἐκάμμυσαν +μή +ποτε +ἴδωσιν +τοῖς +ὀφθαλμοῖς +καί +τοῖς +ὠσίν +ἀκούσωσιν +καί +τῇ +καρδίᾳ +συνῶσιν +καί +ἐπιστρέψωσιν +καί +ἰάσομαι +αὐτούς +δέ +μακάριοι +ὑμῶν +οἱ +ὀφθαλμοί +ὅτι +βλέπουσιν +καί +τά +ὦτα +ὑμῶν +ὅτι +ἀκούουσιν +γάρ +ἀμήν +λέγω +ὑμῖν +ὅτι +πολλοί +προφῆται +καί +δίκαιοι +ἐπεθύμησαν +ἰδεῖν +ἅ +βλέπετε +καί +οὐκ +εἶδαν +καί +ἀκοῦσαι +ἅ +ἀκούετε +καί +οὐκ +ἤκουσαν +οὖν +Ὑμεῖς +ἀκούσατε +τήν +παραβολήν +τοῦ +σπείραντος +Παντός +ἀκούοντος +τόν +λόγον +τῆς +βασιλείας +καί +μή +συνιέντος +ἔρχεται +ὁ +πονηρός +καί +ἁρπάζει +τό +ἐσπαρμένον +ἐν +τῇ +καρδίᾳ +αὐτοῦ +οὗτος +ἐστιν +ὁ +παρά +τήν +ὁδόν +σπαρείς +δέ +ὁ +ἐπί +τά +πετρώδη +σπαρείς +οὗτος +ἐστιν +ὁ +τόν +λόγον +ἀκούων +καί +εὐθύς +μετά +χαρᾶς +λαμβάνων +αὐτόν +δέ +οὐκ +ἔχει +ῥίζαν +ἐν +ἑαυτῷ +ἀλλά +πρόσκαιρος +ἐστιν +δέ +γενομένης +θλίψεως +ἤ +διωγμοῦ +διά +τόν +λόγον +εὐθύς +σκανδαλίζεται +δέ +ὁ +εἰς +τάς +ἀκάνθας +σπαρείς +οὗτος +ἐστιν +ὁ +τόν +λόγον +ἀκούων +καί +ἡ +μέριμνα +τοῦ +αἰῶνος +καί +ἡ +ἀπάτη +τοῦ +πλούτου +συμπνίγει +τόν +λόγον +καί +ἄκαρπος +γίνεται +δέ +ὁ +ἐπί +τήν +καλήν +γῆν +σπαρείς +οὗτος +ἐστιν +ὁ +τόν +λόγον +ἀκούων +καί +συνιείς +δή +ὅς +καρποφορεῖ +καί +μέν +ποιεῖ +ὅ +ἑκατόν +δέ +ὅ +ἑξήκοντα +δέ +ὅ +τριάκοντα +Ἄλλην +παραβολήν +παρέθηκεν +αὐτοῖς +λέγων +Ὡμοιώθη +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +σπείραντι +καλόν +σπέρμα +ἐν +τῷ +ἀγρῷ +αὐτοῦ +δέ +ἐν +τῷ +καθεύδειν +τούς +ἀνθρώπους +ἦλθεν +αὐτοῦ +ὁ +ἐχθρός +καί +ἐπέσπειρεν +ζιζάνια +ἀνά +μέσον +τοῦ +σίτου +καί +ἀπῆλθεν +δέ +ὅτε +ἐβλάστησεν +ὁ +χόρτος +καί +καρπόν +ἐποίησεν +τότε +ἐφάνη +καί +τά +ζιζάνια +δέ +προσελθόντες +οἱ +δοῦλοι +τοῦ +οἰκοδεσπότου +εἶπον +αὐτῷ +Κύριε +οὐχί +καλόν +σπέρμα +ἔσπειρας +ἐν +τῷ +σῷ +ἀγρῷ +οὖν +πόθεν +ἔχει +ζιζάνια +δέ +ὁ +ἔφη +αὐτοῖς +Ἐχθρός +ἄνθρωπος +τοῦτο +ἐποίησεν +δέ +οἱ +δοῦλοι +αὐτῷ +λέγουσιν +οὖν +Θέλεις +ἀπελθόντες +συλλέξωμεν +αὐτά +δέ +ὁ +φησιν +Οὔ +μή +ποτε +συλλέγοντες +τά +ζιζάνια +ἐκριζώσητε +ἅμα +αὐτοῖς +τόν +σῖτον +ἄφετε +συναυξάνεσθαι +ἀμφότερα +ἕως +τοῦ +θερισμοῦ +καί +ἐν +καιρῷ +τοῦ +θερισμοῦ +ἐρῶ +τοῖς +θερισταῖς +Συλλέξατε +πρῶτον +τά +ζιζάνια +καί +δήσατε +αὐτά +εἰς +δέσμας +πρός +τό +κατακαῦσαι +αὐτά +δέ +τόν +σῖτον +συναγάγετε +εἰς +τήν +ἀποθήκην +μου +Ἄλλην +παραβολήν +παρέθηκεν +αὐτοῖς +λέγων +Ὁμοία +ἐστίν +ἡ +βασιλεία +τῶν +οὐρανῶν +κόκκῳ +σινάπεως +ὅν +λαβών +ἄνθρωπος +ἔσπειρεν +ἐν +τῷ +ἀγρῷ +αὐτοῦ +μέν +ὅ +μικρότερον +ἐστιν +πάντων +τῶν +σπερμάτων +δέ +ὅταν +αὐξηθῇ +μεῖζον +τῶν +λαχάνων +ἐστίν +καί +γίνεται +δένδρον +ὥστε +ἐλθεῖν +τά +πετεινά +τοῦ +οὐρανοῦ +καί +κατασκηνοῖν +ἐν +τοῖς +κλάδοις +αὐτοῦ +Ἄλλην +παραβολήν +ἐλάλησεν +αὐτοῖς +Ὁμοία +ἐστίν +ἡ +βασιλεία +τῶν +οὐρανῶν +ζύμῃ +ἥν +λαβοῦσα +γυνή +ἐνέκρυψεν +εἰς +ἀλεύρου +σάτα +τρία +ἕως +οὗ +ἐζυμώθη +ὅλον +Ταῦτα +πάντα +ἐλάλησεν +ὁ +Ἰησοῦς +ἐν +παραβολαῖς +τοῖς +ὄχλοις +καί +χωρίς +παραβολῆς +οὐδέν +ἐλάλει +αὐτοῖς +ὅπως +πληρωθῇ +τό +ῥηθέν +διά +τοῦ +προφήτου +λέγοντος +Ἀνοίξω +ἐν +παραβολαῖς +τό +στόμα +μου +ἐρεύξομαι +κεκρυμμένα +ἀπό +καταβολῆς +Τότε +ἀφείς +τούς +ὄχλους +ἦλθεν +εἰς +τήν +οἰκίαν +Καί +προσῆλθον +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +λέγοντες +Διασάφησον +ἡμῖν +τήν +παραβολήν +τῶν +ζιζανίων +τοῦ +ἀγροῦ +δέ +ὁ +ἀποκριθείς +εἶπεν +Ὁ +σπείρων +τό +καλόν +σπέρμα +ἐστίν +ὁ +Υἱός +τοῦ +ἀνθρώπου +δέ +ὁ +ἀγρός +ἐστιν +ὁ +κόσμος +δέ +τό +καλόν +σπέρμα +οὗτοι +εἰσιν +οἱ +υἱοί +τῆς +βασιλείας +δέ +τά +ζιζάνια +εἰσιν +οἱ +υἱοί +τοῦ +πονηροῦ +δέ +ὁ +ἐχθρός +ὁ +σπείρας +αὐτά +ἐστιν +ὁ +διάβολος +δέ +ὁ +θερισμός +συντέλεια +αἰῶνος +ἐστιν +δέ +οἱ +θερισταί +ἄγγελοι +εἰσιν +οὖν +ὥσπερ +συλλέγεται +τά +ζιζάνια +καί +πυρί +κατακαίεται +οὕτως +ἔσται +ἐν +τῇ +συντελείᾳ +τοῦ +αἰῶνος +ἀποστελεῖ +ὁ +Υἱός +τοῦ +ἀνθρώπου +τούς +ἀγγέλους +αὐτοῦ +καί +συλλέξουσιν +ἐκ +τῆς +βασιλείας +αὐτοῦ +πάντα +τά +σκάνδαλα +καί +τούς +ποιοῦντας +τήν +ἀνομίαν +καί +βαλοῦσιν +αὐτούς +εἰς +τήν +κάμινον +τοῦ +πυρός +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +τότε +οἱ +δίκαιοι +ἐκλάμψουσιν +ἐν +τῇ +βασιλείᾳ +τοῦ +Πατρός +αὐτῶν +ὡς +ὁ +ἥλιος +ὁ +ἔχων +ὦτα +ἀκουέτω +Ὁμοία +ἐστίν +ἡ +βασιλεία +τῶν +οὐρανῶν +θησαυρῷ +κεκρυμμένῳ +ἐν +τῷ +ἀγρῷ +ὅν +εὑρών +ἄνθρωπος +ἔκρυψεν +καί +ἀπό +τῆς +χαρᾶς +αὐτοῦ +ὑπάγει +καί +πωλεῖ +ὅσα +ἔχει +καί +ἀγοράζει +τόν +ἀγρόν +ἐκεῖνον +Πάλιν +ὁμοία +ἐστίν +ἡ +βασιλεία +τῶν +οὐρανῶν +ἐμπόρῳ +ζητοῦντι +καλούς +μαργαρίτας +δέ +εὑρών +ἕνα +πολύτιμον +μαργαρίτην +ἀπελθών +πέπρακεν +πάντα +ὅσα +εἶχεν +καί +ἠγόρασεν +αὐτόν +Πάλιν +ὁμοία +ἐστίν +ἡ +βασιλεία +τῶν +οὐρανῶν +σαγήνῃ +βληθείσῃ +εἰς +τήν +θάλασσαν +καί +ἐκ +παντός +γένους +συναγαγούσῃ +ἥν +ὅτε +ἐπληρώθη +ἀναβιβάσαντες +ἐπί +τόν +αἰγιαλόν +καί +καθίσαντες +συνέλεξαν +τά +καλά +εἰς +ἄγγη +δέ +τά +σαπρά +ἔξω +ἔβαλον +οὕτως +ἔσται +ἐν +τῇ +συντελείᾳ +τοῦ +αἰῶνος +ἐξελεύσονται +οἱ +ἄγγελοι +καί +ἀφοριοῦσιν +τούς +πονηρούς +ἐκ +μέσου +τῶν +δικαίων +καί +βαλοῦσιν +αὐτούς +εἰς +τήν +κάμινον +τοῦ +πυρός +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +Συνήκατε +ταῦτα +πάντα +λέγουσιν +αὐτῷ +Ναί +δέ +ὁ +εἶπεν +αὐτοῖς +Διά +τοῦτο +πᾶς +γραμματεύς +μαθητευθείς +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +ὅμοιος +ἐστιν +ἀνθρώπῳ +οἰκοδεσπότῃ +ὅστις +ἐκβάλλει +ἐκ +τοῦ +θησαυροῦ +αὐτοῦ +καινά +καί +παλαιά +Καί +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +τάς +παραβολάς +ταύτας +μετῆρεν +ἐκεῖθεν +καί +ἐλθών +εἰς +τήν +πατρίδα +αὐτοῦ +ἐδίδασκεν +αὐτούς +ἐν +τῇ +συναγωγῇ +αὐτῶν +ὥστε +ἐκπλήσσεσθαι +αὐτούς +καί +λέγειν +Πόθεν +τούτῳ +ἡ +σοφία +αὕτη +καί +αἱ +δυνάμεις +οὐχ +οὗτος +ἐστιν +ὁ +τοῦ +τέκτονος +υἱός +οὐχ +ἡ +μήτηρ +αὐτοῦ +λέγεται +Μαριάμ +καί +οἱ +ἀδελφοί +αὐτοῦ +Ἰάκωβος +καί +Ἰωσήφ +καί +Σίμων +καί +Ἰούδας +καί +αἱ +ἀδελφαί +αὐτοῦ +οὐχί +πᾶσαι +πρός +ἡμᾶς +εἰσιν +οὖν +πόθεν +τούτῳ +ταῦτα +πάντα +καί +ἐσκανδαλίζοντο +ἐν +αὐτῷ +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐκ +ἔστιν +προφήτης +ἄτιμος +εἰ +μή +ἐν +τῇ +πατρίδι +καί +ἐν +τῇ +οἰκίᾳ +αὐτοῦ +καί +οὐκ +ἐποίησεν +ἐκεῖ +δυνάμεις +πολλάς +διά +τήν +ἀπιστίαν +αὐτῶν +Ἐν +ἐκείνῳ +τῷ +καιρῷ +ἤκουσεν +Ἠρῴδης +ὁ +τετραάρχης +τήν +ἀκοήν +Ἰησοῦ +καί +εἶπεν +τοῖς +παισίν +αὐτοῦ +Οὗτος +ἐστιν +Ἰωάνης +ὁ +Βαπτιστής +αὐτός +ἠγέρθη +ἀπό +τῶν +νεκρῶν +καί +διά +τοῦτο +αἱ +δυνάμεις +ἐνεργοῦσιν +ἐν +αὐτῷ +γάρ +Ὁ +Ἠρῴδης +κρατήσας +τόν +Ἰωάνην +ἔδησεν +καί +ἐν +φυλακῇ +ἀπέθετο +διά +Ἠρῳδιάδα +τήν +γυναῖκα +Φιλίππου +τοῦ +ἀδελφοῦ +αὐτοῦ +γάρ +ἔλεγεν +ὁ +Ἰωάνης +αὐτῷ +Οὐκ +ἔξεστιν +σοι +ἔχειν +αὐτήν +καί +θέλων +αὐτόν +ἀποκτεῖναι +ἐφοβήθη +τόν +ὄχλον +ὅτι +ὡς +προφήτην +αὐτόν +εἶχον +δέ +γενεσίοις +τοῦ +Ἠρῴδου +γενομένοις +ὠρχήσατο +ἡ +θυγάτηρ +τῆς +Ἠρῳδιάδος +ἐν +τῷ +μέσῳ +καί +ἤρεσεν +τῷ +Ἠρῴδῃ +ὅθεν +μεθ’ +ὅρκου +ὡμολόγησεν +αὐτῇ +δοῦναι +ἐάν +ὅ +αἰτήσηται +δέ +ἡ +προβιβασθεῖσα +ὑπό +τῆς +μητρός +αὐτῆς +φησίν +Δός +μοι +ὧδε +ἐπί +πίνακι +τήν +κεφαλήν +Ἰωάνου +τοῦ +Βαπτιστοῦ +καί +λυπηθείς +ὁ +βασιλεύς +διά +τούς +ὅρκους +καί +τούς +συνανακειμένους +ἐκέλευσεν +δοθῆναι +καί +πέμψας +ἀπεκεφάλισεν +Ἰωάνην +ἐν +τῇ +φυλακῇ +καί +ἠνέχθη +ἡ +κεφαλή +αὐτοῦ +ἐπί +πίνακι +καί +ἐδόθη +τῷ +κορασίῳ +καί +ἤνεγκεν +τῇ +μητρί +αὐτῆς +καί +προσελθόντες +οἱ +μαθηταί +αὐτοῦ +ἦραν +τό +πτῶμα +καί +ἔθαψαν +αὐτόν +καί +ἐλθόντες +ἀπήγγειλαν +τῷ +Ἰησοῦ +δέ +Ἀκούσας +ὁ +Ἰησοῦς +ἀνεχώρησεν +ἐκεῖθεν +ἐν +πλοίῳ +εἰς +ἔρημον +τόπον +κατ’ +ἰδίαν +καί +ἀκούσαντες +οἱ +ὄχλοι +ἠκολούθησαν +αὐτῷ +πεζῇ +ἀπό +τῶν +πόλεων +Καί +ἐξελθών +εἶδεν +πολύν +ὄχλον +καί +ἐσπλαγχνίσθη +ἐπ’ +αὐτοῖς +καί +ἐθεράπευσεν +τούς +ἀρρώστους +αὐτῶν +δέ +ὀψίας +γενομένης +προσῆλθον +αὐτῷ +οἱ +μαθηταί +λέγοντες +Ἔρημος +ἐστιν +ὁ +τόπος +καί +ἡ +ὥρα +ἤδη +παρῆλθεν +οὖν +ἀπόλυσον +τούς +ὄχλους +ἵνα +ἀπελθόντες +εἰς +τάς +κώμας +ἀγοράσωσιν +ἑαυτοῖς +βρώματα +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐ +χρείαν +ἔχουσιν +ἀπελθεῖν +δότε +αὐτοῖς +ὑμεῖς +φαγεῖν +δέ +οἱ +λέγουσιν +αὐτῷ +Οὐκ +ἔχομεν +ὧδε +εἰ +μή +πέντε +ἄρτους +καί +δύο +ἰχθύας +δέ +ὁ +εἶπεν +Φέρετε +μοι +ὧδε +αὐτούς +καί +κελεύσας +τούς +ὄχλους +ἀνακλιθῆναι +ἐπί +τοῦ +χόρτου +λαβών +τούς +πέντε +ἄρτους +καί +τούς +δύο +ἰχθύας +ἀναβλέψας +εἰς +τόν +οὐρανόν +εὐλόγησεν +καί +κλάσας +ἔδωκεν +τοῖς +μαθηταῖς +τούς +ἄρτους +δέ +οἱ +μαθηταί +τοῖς +ὄχλοις +καί +ἔφαγον +πάντες +καί +ἐχορτάσθησαν +καί +ἦραν +τό +περισσεῦον +τῶν +κλασμάτων +δώδεκα +κοφίνους +πλήρεις +δέ +οἱ +ἐσθίοντες +ἦσαν +ἄνδρες +ὡσεί +πεντακισχίλιοι +χωρίς +γυναικῶν +καί +παιδίων +Καί +εὐθέως +ἠνάγκασεν +τούς +μαθητάς +ἐμβῆναι +εἰς +τό +πλοῖον +καί +προάγειν +αὐτόν +εἰς +τό +πέραν +ἕως +οὗ +ἀπολύσῃ +τούς +ὄχλους +καί +ἀπολύσας +τούς +ὄχλους +ἀνέβη +εἰς +τό +ὄρος +κατ’ +ἰδίαν +προσεύξασθαι +δέ +ὀψίας +γενομένης +μόνος +ἦν +ἐκεῖ +δέ +τό +πλοῖον +ἤδη +σταδίους +πολλούς +ἀπό +τῆς +γῆς +ἀπεῖχεν +βασανιζόμενον +ὑπό +τῶν +κυμάτων +γάρ +ἦν +ἐναντίος +ὁ +ἄνεμος +δέ +τετάρτῃ +φυλακῇ +τῆς +νυκτός +ἦλθεν +πρός +αὐτούς +περιπατῶν +ἐπί +τήν +θάλασσαν +δέ +οἱ +μαθηταί +ἰδόντες +αὐτόν +ἐπί +τῆς +θαλάσσης +περιπατοῦντα +ἐταράχθησαν +λέγοντες +ὅτι +Φάντασμα +ἐστιν +καί +ἀπό +τοῦ +φόβου +ἔκραξαν +δέ +εὐθύς +ἐλάλησεν +ὁ +Ἰησοῦς +αὐτοῖς +λέγων +Θαρσεῖτε +ἐγώ +εἰμι +μή +φοβεῖσθε +δέ +ἀποκριθείς +αὐτῷ +ὁ +Πέτρος +εἶπεν +Κύριε +εἰ +σύ +εἶ +κέλευσον +με +ἐλθεῖν +πρός +σέ +ἐπί +τά +ὕδατα +δέ +ὁ +εἶπεν +Ἐλθέ +καί +καταβάς +ἀπό +τοῦ +πλοίου +Πέτρος +περιεπάτησεν +ἐπί +τά +ὕδατα +καί +ἦλθεν +πρός +τόν +Ἰησοῦν +δέ +βλέπων +τόν +ἄνεμον +ἐφοβήθη +καί +ἀρξάμενος +καταποντίζεσθαι +ἔκραξεν +λέγων +Κύριε +σῶσον +με +δέ +εὐθέως +ὁ +Ἰησοῦς +ἐκτείνας +τήν +χεῖρα +ἐπελάβετο +αὐτοῦ +καί +λέγει +αὐτῷ +Ὀλιγόπιστε +εἰς +τί +ἐδίστασας +καί +ἀναβάντων +αὐτῶν +εἰς +τό +πλοῖον +ἐκόπασεν +ὁ +ἄνεμος +δέ +οἱ +ἐν +τῷ +πλοίῳ +προσεκύνησαν +αὐτῷ +λέγοντες +Ἀληθῶς +Θεοῦ +Υἱός +εἶ +Καί +διαπεράσαντες +ἦλθον +ἐπί +τήν +γῆν +εἰς +Γεννησαρέτ +καί +ἐπιγνόντες +αὐτόν +οἱ +ἄνδρες +τοῦ +τόπου +ἐκείνου +ἀπέστειλαν +εἰς +ὅλην +τήν +περίχωρον +ἐκείνην +καί +προσήνεγκαν +αὐτῷ +πάντας +τούς +κακῶς +ἔχοντας +καί +παρεκάλουν +αὐτόν +ἵνα +μόνον +ἅψωνται +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ +καί +ὅσοι +ἥψαντο +διεσώθησαν +Τότε +προσέρχονται +τῷ +Ἰησοῦ +ἀπό +Ἱεροσολύμων +Φαρισαῖοι +καί +γραμματεῖς +λέγοντες +Διά +τί +οἱ +μαθηταί +σου +παραβαίνουσιν +τήν +παράδοσιν +τῶν +πρεσβυτέρων +γάρ +οὐ +νίπτονται +τάς +χεῖρας +ὅταν +ἄρτον +ἐσθίωσιν +δέ +ὁ +ἀποκριθείς +εἶπεν +αὐτοῖς +Διά +τί +καί +ὑμεῖς +παραβαίνετε +τήν +ἐντολήν +τοῦ +Θεοῦ +διά +τήν +παράδοσιν +ὑμῶν +γάρ +ὁ +Θεός +εἶπεν +Τίμα +τόν +πατέρα +καί +τήν +μητέρα +καί +Ὁ +κακολογῶν +πατέρα +ἤ +μητέρα +θανάτῳ +τελευτάτω +δέ +ὑμεῖς +λέγετε +ἄν +Ὅς +εἴπῃ +τῷ +πατρί +ἤ +τῇ +μητρί +Δῶρον +ἐάν +ὅ +ἐξ +ἐμοῦ +ὠφεληθῇς +οὐ +μή +τιμήσει +τόν +πατέρα +αὐτοῦ +ἤ +τήν +μητέρα +αὐτοῦ +καί +ἠκυρώσατε +τόν +λόγον +τοῦ +Θεοῦ +διά +τήν +παράδοσιν +ὑμῶν +ὑποκριταί +καλῶς +ἐπροφήτευσεν +περί +ὑμῶν +Ἠσαΐας +λέγων +Ὁ +λαός +οὗτος +τοῖς +χείλεσιν +με +τιμᾷ +δέ +ἡ +καρδία +αὐτῶν +πόρρω +ἀπέχει +ἀπ’ +ἐμοῦ +δέ +μάτην +σέβονται +με +διδάσκοντες +διδασκαλίας +ἐντάλματα +ἀνθρώπων +Καί +προσκαλεσάμενος +τόν +ὄχλον +εἶπεν +αὐτοῖς +Ἀκούετε +καί +συνίετε +οὐ +τό +εἰσερχόμενον +εἰς +τό +στόμα +κοινοῖ +τόν +ἄνθρωπον +ἀλλά +τό +ἐκπορευόμενον +ἐκ +τοῦ +στόματος +τοῦτο +κοινοῖ +τόν +ἄνθρωπον +Τότε +προσελθόντες +οἱ +μαθηταί +λέγουσιν +αὐτῷ +Οἶδας +ὅτι +οἱ +Φαρισαῖοι +ἀκούσαντες +τόν +λόγον +ἐσκανδαλίσθησαν +δέ +ὁ +ἀποκριθείς +εἶπεν +Πᾶσα +φυτεία +ἥν +οὐκ +ἐφύτευσεν +ὁ +Πατήρ +μου +ὁ +οὐράνιος +ἐκριζωθήσεται +ἄφετε +αὐτούς +εἰσιν +τυφλοί +ὁδηγοί +τυφλῶν +δέ +ἐάν +τυφλός +τυφλόν +ὁδηγῇ +ἀμφότεροι +εἰς +βόθυνον +πεσοῦνται +δέ +Ἀποκριθείς +ὁ +Πέτρος +εἶπεν +αὐτῷ +Φράσον +ἡμῖν +τήν +παραβολήν +δέ +ὁ +εἶπεν +Ἀκμήν +καί +ὑμεῖς +ἀσύνετοι +ἐστε +οὐ +νοεῖτε +ὅτι +πᾶν +τό +εἰσπορευόμενον +εἰς +τό +στόμα +εἰς +τήν +κοιλίαν +χωρεῖ +καί +εἰς +ἀφεδρῶνα +ἐκβάλλεται +δέ +τά +ἐκπορευόμενα +ἐκ +τοῦ +στόματος +ἐκ +τῆς +καρδίας +ἐξέρχεται +κἀκεῖνα +κοινοῖ +τόν +ἄνθρωπον +γάρ +ἐκ +τῆς +καρδίας +ἐξέρχονται +διαλογισμοί +πονηροί +φόνοι +μοιχεῖαι +πορνεῖαι +κλοπαί +ψευδομαρτυρίαι +βλασφημίαι +ταῦτα +ἐστιν +τά +κοινοῦντα +τόν +ἄνθρωπον +δέ +τό +ἀνίπτοις +χερσίν +φαγεῖν +οὐ +κοινοῖ +τόν +ἄνθρωπον +Καί +ἐξελθών +ἐκεῖθεν +ὁ +Ἰησοῦς +ἀνεχώρησεν +εἰς +τά +μέρη +Τύρου +καί +Σιδῶνος +καί +ἰδού +γυνή +Χαναναία +ἀπό +τῶν +ὁρίων +ἐκείνων +ἐξελθοῦσα +ἔκραζεν +λέγουσα +Ἐλέησον +με +Κύριε +υἱός +Δαυείδ +ἡ +θυγάτηρ +μου +κακῶς +δαιμονίζεται +δέ +ὁ +οὐκ +ἀπεκρίθη +αὐτῇ +λόγον +καί +προσελθόντες +οἱ +μαθηταί +αὐτοῦ +ἠρώτουν +αὐτόν +λέγοντες +Ἀπόλυσον +αὐτήν +ὅτι +κράζει +ὄπισθεν +ἡμῶν +δέ +ὁ +ἀποκριθείς +εἶπεν +Οὐκ +ἀπεστάλην +εἰ +μή +εἰς +τά +πρόβατα +τά +ἀπολωλότα +οἴκου +Ἰσραήλ +δέ +ἡ +ἐλθοῦσα +προσεκύνει +αὐτῷ +λέγουσα +Κύριε +βοήθει +μοι +δέ +ὁ +ἀποκριθείς +εἶπεν +Οὐκ +ἔστιν +καλόν +λαβεῖν +τόν +ἄρτον +τῶν +τέκνων +καί +βαλεῖν +τοῖς +κυναρίοις +δέ +ἡ +εἶπεν +Ναί +κύριε +γάρ +καί +τά +κυνάρια +ἐσθίει +ἀπό +τῶν +ψιχίων +τῶν +πιπτόντων +ἀπό +τῆς +τραπέζης +τῶν +κυρίων +αὐτῶν +τότε +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτῇ +Ὦ +γύναι +μεγάλη +σου +ἡ +πίστις +γενηθήτω +σοι +ὡς +θέλεις +καί +ἰάθη +ἡ +θυγάτηρ +αὐτῆς +ἀπό +τῆς +ὥρας +ἐκείνης +Καί +μεταβάς +ἐκεῖθεν +ὁ +Ἰησοῦς +ἦλθεν +παρά +τήν +θάλασσαν +τῆς +Γαλιλαίας +καί +ἀναβάς +εἰς +τό +ὄρος +ἐκάθητο +ἐκεῖ +καί +προσῆλθον +αὐτῷ +ὄχλοι +πολλοί +ἔχοντες +μεθ’ +ἑαυτῶν +χωλούς +κυλλούς +τυφλούς +κωφούς +καί +ἑτέρους +πολλούς +καί +ἔριψαν +αὐτούς +παρά +τούς +πόδας +αὐτοῦ +καί +ἐθεράπευσεν +αὐτούς +ὥστε +τόν +ὄχλον +θαυμάσαι +βλέποντας +κωφούς +λαλοῦντας +κυλλούς +ὑγιεῖς +καί +χωλούς +περιπατοῦντας +καί +τυφλούς +βλέποντας +καί +ἐδόξασαν +τόν +Θεόν +Ἰσραήλ +δέ +Ὁ +Ἰησοῦς +προσκαλεσάμενος +τούς +μαθητάς +αὐτοῦ +εἶπεν +Σπλαγχνίζομαι +ἐπί +τόν +ὄχλον +ὅτι +ἤδη +ἡμέραι +τρεῖς +προσμένουσιν +μοι +καί +οὐκ +ἔχουσιν +τί +φάγωσιν +καί +ἀπολῦσαι +αὐτούς +νήστεις +οὐ +θέλω +μή +ποτε +ἐκλυθῶσιν +ἐν +τῇ +ὁδῷ +καί +λέγουσιν +αὐτῷ +οἱ +μαθηταί +Πόθεν +ἡμῖν +ἐν +ἐρημίᾳ +ἄρτοι +τοσοῦτοι +ὥστε +χορτάσαι +ὄχλον +τοσοῦτον +καί +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Πόσους +ἄρτους +ἔχετε +δέ +οἱ +εἶπαν +Ἑπτά +καί +ὀλίγα +ἰχθύδια +καί +παραγγείλας +τῷ +ὄχλῳ +ἀναπεσεῖν +ἐπί +τήν +γῆν +ἔλαβεν +τούς +ἑπτά +ἄρτους +καί +τούς +ἰχθύας +καί +εὐχαριστήσας +ἔκλασεν +καί +ἐδίδου +τοῖς +μαθηταῖς +δέ +οἱ +μαθηταί +τοῖς +ὄχλοις +καί +ἔφαγον +πάντες +καί +ἐχορτάσθησαν +καί +τό +περισσεῦον +τῶν +κλασμάτων +ἑπτά +σπυρίδας +πλήρεις +ἦραν +δέ +οἱ +ἐσθίοντες +ἦσαν +τετρακισχίλιοι +ἄνδρες +χωρίς +γυναικῶν +καί +παιδίων +Καί +ἀπολύσας +τούς +ὄχλους +ἐνέβη +εἰς +τό +πλοῖον +καί +ἦλθεν +εἰς +τά +ὅρια +Μαγαδάν +Καί +προσελθόντες +οἱ +Φαρισαῖοι +καί +Σαδδουκαῖοι +πειράζοντες +ἐπηρώτησαν +αὐτόν +σημεῖον +ἐκ +τοῦ +οὐρανοῦ +ἐπιδεῖξαι +αὐτοῖς +δέ +ὁ +ἀποκριθείς +εἶπεν +αὐτοῖς +Ὀψίας +γενομένης +λέγετε +Εὐδία +γάρ +πυρράζει +ὁ +οὐρανός +καί +πρωΐ +Σήμερον +χειμών +γάρ +πυρράζει +στυγνάζων +ὁ +οὐρανός +μέν +τό +πρόσωπον +τοῦ +οὐρανοῦ +διακρίνειν +γινώσκετε +δέ +τά +σημεῖα +τῶν +καιρῶν +οὐ +δύνασθε +γενεά +πονηρά +καί +μοιχαλίς +σημεῖον +ἐπιζητεῖ +καί +σημεῖον +οὐ +δοθήσεται +αὐτῇ +εἰ +μή +τό +σημεῖον +Ἰωνᾶ +καί +καταλιπών +αὐτούς +ἀπῆλθεν +Καί +οἱ +μαθηταί +ἐλθόντες +εἰς +τό +πέραν +ἐπελάθοντο +ἄρτους +λαβεῖν +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ὁρᾶτε +καί +προσέχετε +ἀπό +τῆς +ζύμης +τῶν +Φαρισαίων +καί +Σαδδουκαίων +δέ +οἱ +διελογίζοντο +ἐν +ἑαυτοῖς +λέγοντες +ὅτι +Ἄρτους +οὐκ +ἐλάβομεν +δέ +γνούς +ὁ +Ἰησοῦς +εἶπεν +Τί +διαλογίζεσθε +ἐν +ἑαυτοῖς +ὀλιγόπιστοι +ὅτι +ἄρτους +οὐκ +ἔχετε +οὔπω +νοεῖτε +οὐδέ +μνημονεύετε +τούς +πέντε +ἄρτους +τῶν +πεντακισχιλίων +καί +πόσους +κοφίνους +ἐλάβετε +οὐδέ +τούς +ἑπτά +ἄρτους +τῶν +τετρακισχιλίων +καί +πόσας +σπυρίδας +ἐλάβετε +πῶς +οὐ +νοεῖτε +ὅτι +οὐ +περί +ἄρτων +εἶπον +ὑμῖν +δέ +προσέχετε +ἀπό +τῆς +ζύμης +τῶν +Φαρισαίων +καί +Σαδδουκαίων +τότε +συνῆκαν +ὅτι +οὐκ +εἶπεν +προσέχειν +ἀπό +τῆς +ζύμης +τῶν +ἄρτων +ἀλλά +ἀπό +τῆς +διδαχῆς +τῶν +Φαρισαίων +καί +Σαδδουκαίων +δέ +ὁ +Ἰησοῦς +Ἐλθών +εἰς +τά +μέρη +Καισαρίας +τῆς +Φιλίππου +ἠρώτα +τούς +μαθητάς +αὐτοῦ +λέγων +λέγουσιν +οἱ +ἄνθρωποι +Τίνα +εἶναι +τόν +Υἱόν +τοῦ +ἀνθρώπου +δέ +οἱ +εἶπαν +μέν +Οἱ +Ἰωάνην +τόν +Βαπτιστήν +δέ +ἄλλοι +Ἠλείαν +δέ +ἕτεροι +Ἱερεμίαν +ἤ +ἕνα +τῶν +προφητῶν +λέγει +αὐτοῖς +δέ +Ὑμεῖς +τίνα +με +εἶναι +λέγετε +δέ +ἀποκριθείς +Σίμων +Πέτρος +εἶπεν +Σύ +εἶ +ὁ +Χριστός +ὁ +Υἱός +τοῦ +Θεοῦ +τοῦ +ζῶντος +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Μακάριος +εἶ +Σίμων +Βαριωνᾶ +ὅτι +σάρξ +καί +αἷμα +οὐκ +ἀπεκάλυψεν +σοι +ἀλλ’ +ὁ +Πατήρ +μου +ὁ +ἐν +τοῖς +οὐρανοῖς +δέ +κἀγώ +σοι +λέγω +ὅτι +σύ +εἶ +Πέτρος +καί +ἐπί +ταύτῃ +τῇ +πέτρᾳ +οἰκοδομήσω +μου +τήν +ἐκκλησίαν +καί +πύλαι +Ἅιδου +οὐ +κατισχύσουσιν +αὐτῆς +δώσω +σοι +τάς +κλεῖδας +τῆς +βασιλείας +τῶν +οὐρανῶν +καί +ἐάν +ὅ +δήσῃς +ἐπί +τῆς +γῆς +ἔσται +δεδεμένον +ἐν +τοῖς +οὐρανοῖς +καί +ἐάν +ὅ +λύσῃς +ἐπί +τῆς +γῆς +ἔσται +λελυμένον +ἐν +τοῖς +οὐρανοῖς +τότε +ἐπετίμησεν +τοῖς +μαθηταῖς +ἵνα +μηδενί +εἴπωσιν +ὅτι +αὐτός +ἐστιν +ὁ +Χριστός +Ἀπό +τότε +ἤρξατο +Ἰησοῦς +Χριστός +δεικνύειν +τοῖς +μαθηταῖς +αὐτοῦ +ὅτι +δεῖ +αὐτόν +εἰς +Ἱεροσόλυμα +ἀπελθεῖν +καί +πολλά +παθεῖν +ἀπό +τῶν +πρεσβυτέρων +καί +ἀρχιερέων +καί +γραμματέων +καί +ἀποκτανθῆναι +καί +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθῆναι +καί +προσλαβόμενος +αὐτόν +ὁ +Πέτρος +ἤρξατο +ἐπιτιμᾶν +αὐτῷ +λέγων +Ἵλεως +σοι +Κύριε +οὐ +μή +ἔσται +σοι +τοῦτο +δέ +ὁ +στραφείς +εἶπεν +τῷ +Πέτρῳ +Ὕπαγε +ὀπίσω +μου +Σατανᾶ +σκάνδαλον +ἐμοῦ +εἶ +ὅτι +οὐ +φρονεῖς +τά +τοῦ +Θεοῦ +ἀλλά +τά +τῶν +ἀνθρώπων +Τότε +ὁ +Ἰησοῦς +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +Εἴ +τις +θέλει +ὀπίσω +μου +ἐλθεῖν +ἀπαρνησάσθω +ἑαυτόν +καί +ἀράτω +τόν +σταυρόν +αὐτοῦ +καί +ἀκολουθείτω +μοι +γάρ +ἐάν +ὅς +θέλῃ +τήν +ψυχήν +αὐτοῦ +σῶσαι +ἀπολέσει +αὐτήν +δ’ +ἄν +ὅς +ἀπολέσῃ +τήν +ψυχήν +αὐτοῦ +ἕνεκεν +ἐμοῦ +εὑρήσει +αὐτήν +γάρ +τί +ὠφεληθήσεται +ἄνθρωπος +ἐάν +τόν +κόσμον +ὅλον +κερδήσῃ +δέ +τήν +ψυχήν +αὐτοῦ +ζημιωθῇ +ἤ +τί +δώσει +ἄνθρωπος +ἀντάλλαγμα +τῆς +ψυχῆς +αὐτοῦ +γάρ +μέλλει +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἔρχεσθαι +ἐν +τῇ +δόξῃ +τοῦ +Πατρός +αὐτοῦ +μετά +τῶν +ἀγγέλων +αὐτοῦ +καί +τότε +ἀποδώσει +ἑκάστῳ +κατά +τήν +πρᾶξιν +αὐτοῦ +ἀμήν +λέγω +ὑμῖν +ὅτι +εἰσίν +τινες +τῶν +ὧδε +ἑστώτων +οἵτινες +οὐ +μή +γεύσωνται +θανάτου +ἕως +ἄν +ἴδωσιν +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐν +τῇ +βασιλείᾳ +αὐτοῦ +Καί +μεθ’ +ἡμέρας +ἕξ +παραλαμβάνει +ὁ +Ἰησοῦς +τόν +Πέτρον +καί +Ἰάκωβον +καί +Ἰωάνην +τόν +ἀδελφόν +αὐτοῦ +καί +ἀναφέρει +αὐτούς +εἰς +ὄρος +ὑψηλόν +κατ’ +ἰδίαν +καί +μετεμορφώθη +ἔμπροσθεν +αὐτῶν +καί +ἔλαμψεν +τό +πρόσωπον +αὐτοῦ +ὡς +ὁ +ἥλιος +δέ +τά +ἱμάτια +αὐτοῦ +ἐγένετο +λευκά +ὡς +τό +φῶς +καί +ἰδού +ὤφθη +αὐτοῖς +Μωϋσῆς +καί +Ἠλείας +συνλαλοῦντες +μετ’ +αὐτοῦ +δέ +ἀποκριθείς +ὁ +Πέτρος +εἶπεν +τῷ +Ἰησοῦ +Κύριε +καλόν +ἐστιν +ἡμᾶς +ὧδε +εἶναι +εἰ +θέλεις +ποιήσω +ὧδε +τρεῖς +σκηνάς +σοί +μίαν +καί +Μωϋσεῖ +μίαν +καί +Ἠλείᾳ +μίαν +ἔτι +αὐτοῦ +λαλοῦντος +ἰδού +νεφέλη +φωτεινή +ἐπεσκίασεν +αὐτούς +καί +ἰδού +φωνή +ἐκ +τῆς +νεφέλης +λέγουσα +Οὗτος +ἐστιν +ὁ +Υἱός +μου +ὁ +ἀγαπητός +ἐν +ᾧ +εὐδόκησα +ἀκούετε +αὐτοῦ +καί +ἀκούσαντες +οἱ +μαθηταί +ἔπεσαν +ἐπί +πρόσωπον +αὐτῶν +καί +ἐφοβήθησαν +σφόδρα +καί +προσῆλθεν +ὁ +Ἰησοῦς +καί +ἁψάμενος +αὐτῶν +εἶπεν +Ἐγέρθητε +καί +μή +φοβεῖσθε +δέ +ἐπάραντες +τούς +ὀφθαλμούς +αὐτῶν +οὐδένα +εἶδον +εἰ +μή +αὐτόν +Ἰησοῦν +μόνον +Καί +καταβαινόντων +αὐτῶν +ἐκ +τοῦ +ὄρους +ἐνετείλατο +αὐτοῖς +ὁ +Ἰησοῦς +λέγων +Μηδενί +εἴπητε +τό +ὅραμα +ἕως +οὗ +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐκ +νεκρῶν +ἐγερθῇ +Καί +ἐπηρώτησαν +αὐτόν +οἱ +μαθηταί +λέγοντες +οὖν +Τί +οἱ +γραμματεῖς +λέγουσιν +ὅτι +δεῖ +Ἠλείαν +ἐλθεῖν +πρῶτον +δέ +ὁ +ἀποκριθείς +εἶπεν +μέν +Ἠλείας +ἔρχεται +καί +ἀποκαταστήσει +πάντα +δέ +λέγω +ὑμῖν +ὅτι +Ἠλείας +ἤδη +ἦλθεν +καί +οὐκ +ἐπέγνωσαν +αὐτόν +ἀλλ’ +ἐποίησαν +ἐν +αὐτῷ +ὅσα +ἠθέλησαν +οὕτως +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +μέλλει +πάσχειν +ὑπ’ +αὐτῶν +τότε +συνῆκαν +οἱ +μαθηταί +ὅτι +περί +Ἰωάνου +τοῦ +Βαπτιστοῦ +εἶπεν +αὐτοῖς +Καί +ἐλθόντων +πρός +τόν +ὄχλον +προσῆλθεν +αὐτῷ +ἄνθρωπος +γονυπετῶν +αὐτόν +καί +λέγων +Κύριε +ἐλέησον +μου +τόν +υἱόν +ὅτι +σεληνιάζεται +καί +κακῶς +ἔχει +γάρ +πολλάκις +πίπτει +εἰς +τό +πῦρ +καί +πολλάκις +εἰς +τό +ὕδωρ +καί +προσήνεγκα +αὐτόν +τοῖς +μαθηταῖς +σου +καί +οὐκ +ἠδυνήθησαν +αὐτόν +θεραπεῦσαι +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +Ὦ +γενεά +ἄπιστος +καί +διεστραμμένη +ἕως +πότε +μεθ’ +ὑμῶν +ἔσομαι +ἕως +πότε +ἀνέξομαι +ὑμῶν +φέρετε +μοι +αὐτόν +ὧδε +καί +ἐπετίμησεν +αὐτῷ +ὁ +Ἰησοῦς +καί +ἐξῆλθεν +ἀπ’ +αὐτοῦ +τό +δαιμόνιον +καί +ἐθεραπεύθη +ὁ +παῖς +ἀπό +τῆς +ὥρας +ἐκείνης +Τότε +οἱ +μαθηταί +προσελθόντες +τῷ +Ἰησοῦ +κατ’ +ἰδίαν +εἶπον +Διά +τί +ἡμεῖς +οὐκ +ἠδυνήθημεν +ἐκβαλεῖν +αὐτό +δέ +ὁ +λέγει +αὐτοῖς +Διά +τήν +ὀλιγοπιστίαν +ὑμῶν +γάρ +ἀμήν +λέγω +ὑμῖν +ἐάν +ἔχητε +πίστιν +ὡς +κόκκον +σινάπεως +ἐρεῖτε +τῷ +ὄρει +τούτῳ +Μετάβα +ἔνθεν +ἐκεῖ +καί +μεταβήσεται +καί +οὐδέν +ἀδυνατήσει +ὑμῖν +δέ +Συστρεφομένων +αὐτῶν +ἐν +τῇ +Γαλιλαίᾳ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Μέλλει +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδίδοσθαι +εἰς +χεῖρας +ἀνθρώπων +καί +ἀποκτενοῦσιν +αὐτόν +καί +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθήσεται +καί +ἐλυπήθησαν +σφόδρα +δέ +Ἐλθόντων +αὐτῶν +εἰς +Καφαρναούμ +προσῆλθον +οἱ +τά +δίδραχμα +λαμβάνοντες +τῷ +Πέτρῳ +καί +εἶπαν +οὐ +Ὁ +διδάσκαλος +ὑμῶν +τελεῖ +δίδραχμα +λέγει +Ναί +καί +ἐλθόντα +εἰς +τήν +οἰκίαν +προέφθασεν +αὐτόν +ὁ +Ἰησοῦς +λέγων +Τί +σοι +δοκεῖ +Σίμων +οἱ +βασιλεῖς +τῆς +γῆς +ἀπό +τίνων +λαμβάνουσιν +τέλη +ἤ +κῆνσον +ἀπό +τῶν +υἱῶν +αὐτῶν +ἤ +ἀπό +τῶν +ἀλλοτρίων +δέ +εἰπόντος +Ἀπό +τῶν +ἀλλοτρίων +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Ἄραγε +ἐλεύθεροι +εἰσιν +οἱ +υἱοί +δέ +ἵνα +μή +σκανδαλίσωμεν +αὐτούς +πορευθείς +εἰς +θάλασσαν +βάλε +ἄγκιστρον +καί +τόν +ἀναβάντα +πρῶτον +ἰχθύν +ἆρον +καί +ἀνοίξας +τό +στόμα +αὐτοῦ +εὑρήσεις +στατῆρα +ἐκεῖνον +λαβών +δός +αὐτοῖς +ἀντί +ἐμοῦ +καί +σοῦ +Ἐν +ἐκείνῃ +τῇ +ὥρᾳ +προσῆλθον +οἱ +μαθηταί +τῷ +Ἰησοῦ +λέγοντες +ἄρα +Τίς +μείζων +ἐστίν +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +καί +προσκαλεσάμενος +παιδίον +ἔστησεν +αὐτό +ἐν +μέσῳ +αὐτῶν +καί +εἶπεν +Ἀμήν +λέγω +ὑμῖν +ἐάν +μή +στραφῆτε +καί +γένησθε +ὡς +τά +παιδία +οὐ +μή +εἰσέλθητε +εἰς +τήν +βασιλείαν +τῶν +οὐρανῶν +οὖν +ὅστις +ταπεινώσει +ἑαυτόν +ὡς +τό +παιδίον +τοῦτο +οὗτος +ἐστιν +ὁ +μείζων +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +καί +ἐάν +ὅς +δέξηται +ἕν +παιδίον +τοιοῦτο +ἐπί +τῷ +ὀνόματι +μου +ἐμέ +δέχεται +δ’ +ἄν +ὅς +σκανδαλίσῃ +ἕνα +τῶν +μικρῶν +τούτων +τῶν +πιστευόντων +εἰς +ἐμέ +συμφέρει +αὐτῷ +ἵνα +κρεμασθῇ +μύλος +ὀνικός +περί +τόν +τράχηλον +αὐτοῦ +καί +καταποντισθῇ +ἐν +τῷ +πελάγει +τῆς +θαλάσσης +Οὐαί +τῷ +κόσμῳ +ἀπό +τῶν +σκανδάλων +γάρ +ἀνάγκη +ἐλθεῖν +τά +σκάνδαλα +πλήν +οὐαί +τῷ +ἀνθρώπῳ +δι’ +οὗ +τό +σκάνδαλον +ἔρχεται +δέ +Εἰ +ἡ +χείρ +σου +ἤ +ὁ +πούς +σου +σκανδαλίζει +σε +ἔκκοψον +αὐτόν +καί +βάλε +ἀπό +σοῦ +καλόν +σοί +ἐστιν +εἰσελθεῖν +εἰς +τήν +ζωήν +κυλλόν +ἤ +χωλόν +ἤ +δύο +χεῖρας +ἤ +δύο +πόδας +ἔχοντα +βληθῆναι +εἰς +τό +πῦρ +τό +αἰώνιον +καί +εἰ +ὁ +ὀφθαλμός +σου +σκανδαλίζει +σε +ἔξελε +αὐτόν +καί +βάλε +ἀπό +σοῦ +καλόν +σοί +ἐστιν +μονόφθαλμον +εἰς +τήν +ζωήν +εἰσελθεῖν +ἤ +δύο +ὀφθαλμούς +ἔχοντα +βληθῆναι +εἰς +τήν +γέενναν +τοῦ +πυρός +Ὁρᾶτε +μή +καταφρονήσητε +ἑνός +τῶν +μικρῶν +τούτων +γάρ +λέγω +ὑμῖν +ὅτι +οἱ +ἄγγελοι +αὐτῶν +ἐν +οὐρανοῖς +διά +παντός +βλέπουσι +τό +πρόσωπον +τοῦ +Πατρός +μου +τοῦ +ἐν +οὐρανοῖς +Τί +ὑμῖν +δοκεῖ +ἐάν +γένηται +τινι +ἀνθρώπῳ +ἑκατόν +πρόβατα +καί +πλανηθῇ +ἕν +ἐξ +αὐτῶν +οὐχί +ἀφήσει +τά +ἐνενήκοντα +ἐννέα +ἐπί +τά +ὄρη +καί +πορευθείς +ζητεῖ +τό +πλανώμενον +καί +ἐάν +γένηται +εὑρεῖν +αὐτό +ἀμήν +λέγω +ὑμῖν +ὅτι +χαίρει +ἐπ’ +αὐτῷ +μᾶλλον +ἤ +ἐπί +τοῖς +ἐνενήκοντα +ἐννέα +τοῖς +μή +πεπλανημένοις +οὕτως +οὐκ +ἔστιν +θέλημα +ἔμπροσθεν +τοῦ +Πατρός +ὑμῶν +τοῦ +ἐν +οὐρανοῖς +ἵνα +ἀπόληται +ἕν +τῶν +μικρῶν +τούτων +δέ +Ἐάν +ἁμαρτήσῃ +ὁ +ἀδελφός +σου +ὕπαγε +ἔλεγξον +αὐτόν +μεταξύ +σοῦ +καί +αὐτοῦ +μόνου +ἐάν +σου +ἀκούσῃ +ἐκέρδησας +τόν +ἀδελφόν +σου +δέ +ἐάν +μή +ἀκούσῃ +παράλαβε +μετά +σοῦ +ἔτι +ἕνα +ἤ +δύο +ἵνα +ἐπί +στόματος +δύο +ἤ +τριῶν +μαρτύρων +σταθῇ +πᾶν +ῥῆμα +δέ +ἐάν +παρακούσῃ +αὐτῶν +εἰπόν +τῇ +ἐκκλησίᾳ +δέ +ἐάν +καί +τῆς +ἐκκλησίας +παρακούσῃ +ἔστω +σοι +ὥσπερ +ὁ +ἐθνικός +καί +ὁ +τελώνης +Ἀμήν +λέγω +ὑμῖν +ἐάν +ὅσα +δήσητε +ἐπί +τῆς +γῆς +ἔσται +δεδεμένα +ἐν +οὐρανῷ +καί +ἐάν +ὅσα +λύσητε +ἐπί +τῆς +γῆς +ἔσται +λελυμένα +ἐν +οὐρανῷ +ἀμήν +Πάλιν +λέγω +ὑμῖν +ὅτι +ἐάν +δύο +ἐξ +ὑμῶν +συμφωνήσωσιν +ἐπί +τῆς +γῆς +περί +παντός +πράγματος +ἐάν +οὗ +αἰτήσωνται +γενήσεται +αὐτοῖς +παρά +τοῦ +Πατρός +μου +τοῦ +ἐν +οὐρανοῖς +γάρ +οὗ +εἰσιν +συνηγμένοι +δύο +ἤ +τρεῖς +εἰς +τό +ἐμόν +ὄνομα +ἐκεῖ +εἰμι +ἐν +μέσῳ +αὐτῶν +Τότε +προσελθών +ὁ +Πέτρος +εἶπεν +αὐτῷ +Κύριε +ποσάκις +ἁμαρτήσει +εἰς +ἐμέ +ὁ +ἀδελφός +μου +καί +ἀφήσω +αὐτῷ +ἕως +ἑπτάκις +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Οὐ +λέγω +σοι +ἕως +ἑπτάκις +ἀλλά +ἕως +ἑβδομηκοντάκις +ἑπτά +Διά +τοῦτο +ὡμοιώθη +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +βασιλεῖ +ὅς +ἠθέλησεν +συνᾶραι +λόγον +μετά +τῶν +δούλων +αὐτοῦ +δέ +ἀρξαμένου +αὐτοῦ +συναίρειν +προσήχθη +αὐτῷ +εἷς +ὀφειλέτης +μυρίων +ταλάντων +δέ +μή +ἔχοντος +αὐτοῦ +ἀποδοῦναι +ἐκέλευσεν +ὁ +κύριος +πραθῆναι +αὐτόν +καί +τήν +γυναῖκα +καί +τά +τέκνα +καί +πάντα +ὅσα +ἔχει +καί +ἀποδοθῆναι +οὖν +πεσών +ὁ +δοῦλος +προσεκύνει +αὐτῷ +λέγων +Μακροθύμησον +ἐπ’ +ἐμοί +καί +πάντα +ἀποδώσω +σοι +δέ +σπλαγχνισθείς +ὁ +κύριος +τοῦ +δούλου +ἐκείνου +ἀπέλυσεν +αὐτόν +καί +τό +δάνειον +ἀφῆκεν +αὐτῷ +δέ +ἐξελθών +ὁ +δοῦλος +ἐκεῖνος +εὗρεν +ἕνα +τῶν +συνδούλων +αὐτοῦ +ὅς +ὤφειλεν +αὐτῷ +ἑκατόν +δηνάρια +καί +κρατήσας +αὐτόν +ἔπνιγεν +λέγων +Ἀπόδος +εἴ +τι +ὀφείλεις +οὖν +πεσών +ὁ +σύνδουλος +αὐτοῦ +παρεκάλει +αὐτόν +λέγων +Μακροθύμησον +ἐπ’ +ἐμοί +καί +ἀποδώσω +σοι +δέ +ὁ +οὐκ +ἤθελεν +ἀλλά +ἀπελθών +ἔβαλεν +αὐτόν +εἰς +φυλακήν +ἕως +ἀποδῷ +τό +ὀφειλόμενον +οὖν +οἱ +σύνδουλοι +αὐτοῦ +ἰδόντες +τά +γενόμενα +ἐλυπήθησαν +σφόδρα +καί +ἐλθόντες +διεσάφησαν +τῷ +κυρίῳ +ἑαυτῶν +πάντα +τά +γενόμενα +τότε +προσκαλεσάμενος +αὐτόν +ὁ +κύριος +αὐτοῦ +λέγει +αὐτῷ +Δοῦλε +πονηρέ +πᾶσαν +τήν +ὀφειλήν +ἐκείνην +ἀφῆκα +σοι +ἐπεί +παρεκάλεσας +με +οὐκ +ἔδει +καί +σέ +ἐλεῆσαι +τόν +σύνδουλον +σου +ὡς +κἀγώ +σέ +ἠλέησα +καί +ὀργισθείς +ὁ +κύριος +αὐτοῦ +παρέδωκεν +αὐτόν +τοῖς +βασανισταῖς +ἕως +οὗ +ἀποδῷ +πᾶν +τό +ὀφειλόμενον +αὐτῷ +Οὕτως +καί +ὁ +Πατήρ +μου +ὁ +οὐράνιος +ποιήσει +ὑμῖν +ἐάν +μή +ἀφῆτε +ἕκαστος +τῷ +ἀδελφῷ +αὐτοῦ +ἀπό +τῶν +καρδιῶν +ὑμῶν +Καί +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +τούς +λόγους +τούτους +μετῆρεν +ἀπό +τῆς +Γαλιλαίας +καί +ἦλθεν +εἰς +τά +ὅρια +τῆς +Ἰουδαίας +πέραν +τοῦ +Ἰορδάνου +καί +ἠκολούθησαν +αὐτῷ +ὄχλοι +πολλοί +καί +ἐθεράπευσεν +αὐτούς +ἐκεῖ +Καί +προσῆλθον +αὐτῷ +Φαρισαῖοι +πειράζοντες +αὐτόν +καί +λέγοντες +Εἰ +ἔξεστιν +ἀπολῦσαι +τήν +γυναῖκα +αὐτοῦ +κατά +πᾶσαν +αἰτίαν +δέ +ὁ +ἀποκριθείς +εἶπεν +Οὐκ +ἀνέγνωτε +ὅτι +ὁ +κτίσας +ἀπ’ +ἀρχῆς +ἄρσεν +καί +θῆλυ +ἐποίησεν +αὐτούς +καί +εἶπεν +Ἕνεκα +τούτου +καταλείψει +ἄνθρωπος +τόν +πατέρα +καί +τήν +μητέρα +καί +κολληθήσεται +τῇ +γυναικί +αὐτοῦ +καί +ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν +ὥστε +οὐκέτι +εἰσίν +δύο +ἀλλά +σάρξ +μία +οὖν +ὅ +ὁ +Θεός +συνέζευξεν +ἄνθρωπος +μή +χωριζέτω +λέγουσιν +αὐτῷ +οὖν +Τί +Μωϋσῆς +ἐνετείλατο +δοῦναι +βιβλίον +ἀποστασίου +καί +ἀπολῦσαι +λέγει +αὐτοῖς +Ὅτι +Μωϋσῆς +πρός +τήν +σκληροκαρδίαν +ὑμῶν +ἐπέτρεψεν +ὑμῖν +ἀπολῦσαι +τάς +γυναῖκας +ὑμῶν +δέ +ἀπ’ +ἀρχῆς +οὐ +γέγονεν +οὕτως +δέ +λέγω +ὑμῖν +ὅτι +ἄν +ὅς +ἀπολύσῃ +τήν +γυναῖκα +αὐτοῦ +μή +ἐπί +πορνείᾳ +καί +γαμήσῃ +ἄλλην +μοιχᾶται +λέγουσιν +αὐτῷ +οἱ +μαθηταί +Εἰ +οὕτως +ἐστίν +ἡ +αἰτία +τοῦ +ἀνθρώπου +μετά +τῆς +γυναικός +οὐ +συμφέρει +γαμῆσαι +δέ +ὁ +εἶπεν +αὐτοῖς +Οὐ +πάντες +χωροῦσιν +τόν +λόγον +τοῦτον +ἀλλ’ +οἷς +δέδοται +γάρ +εἰσίν +εὐνοῦχοι +οἵτινες +ἐκ +κοιλίας +μητρός +ἐγεννήθησαν +οὕτως +καί +εἰσίν +εὐνοῦχοι +οἵτινες +εὐνουχίσθησαν +ὑπό +τῶν +ἀνθρώπων +καί +εἰσίν +εὐνοῦχοι +οἵτινες +εὐνούχισαν +ἑαυτούς +διά +τήν +βασιλείαν +τῶν +οὐρανῶν +ὁ +δυνάμενος +χωρεῖν +χωρείτω +Τότε +προσηνέχθησαν +αὐτῷ +παιδία +ἵνα +τάς +χεῖρας +ἐπιθῇ +αὐτοῖς +καί +προσεύξηται +δέ +οἱ +μαθηταί +ἐπετίμησαν +αὐτοῖς +δέ +ὁ +Ἰησοῦς +εἶπεν +Ἄφετε +τά +παιδία +καί +μή +κωλύετε +αὐτά +ἐλθεῖν +πρός +με +γάρ +τῶν +τοιούτων +ἐστίν +ἡ +βασιλεία +τῶν +οὐρανῶν +καί +ἐπιθείς +τάς +χεῖρας +αὐτοῖς +ἐπορεύθη +ἐκεῖθεν +Καί +ἰδού +εἷς +προσελθών +αὐτῷ +εἶπεν +Διδάσκαλε +τί +ἀγαθόν +ποιήσω +ἵνα +σχῶ +ζωήν +αἰώνιον +δέ +ὁ +εἶπεν +αὐτῷ +Τί +με +ἐρωτᾷς +περί +τοῦ +ἀγαθοῦ +εἷς +ἐστιν +ὁ +ἀγαθός +δέ +εἰ +θέλεις +εἰς +τήν +ζωήν +εἰσελθεῖν +τήρει +τάς +ἐντολάς +λέγει +αὐτῷ +Ποίας +δέ +ὁ +Ἰησοῦς +ἔφη +Τό +Οὐ +φονεύσεις +Οὐ +μοιχεύσεις +Οὐ +κλέψεις +Οὐ +ψευδομαρτυρήσεις +Τίμα +τόν +πατέρα +καί +τήν +μητέρα +καί +Ἀγαπήσεις +τόν +πλησίον +σου +ὡς +σεαυτόν +λέγει +αὐτῷ +ὁ +νεανίσκος +Ταῦτα +πάντα +ἐφύλαξα +τί +ἔτι +ὑστερῶ +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Εἰ +θέλεις +τέλειος +εἶναι +ὕπαγε +πώλησον +σου +τά +ὑπάρχοντα +καί +δός +πτωχοῖς +καί +ἕξεις +θησαυρόν +ἐν +οὐρανοῖς +καί +δεῦρο +ἀκολούθει +μοι +δέ +ὁ +νεανίσκος +ἀκούσας +τόν +λόγον +ἀπῆλθεν +λυπούμενος +γάρ +ἦν +ἔχων +κτήματα +πολλά +δέ +Ὁ +Ἰησοῦς +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +Ἀμήν +λέγω +ὑμῖν +ὅτι +πλούσιος +δυσκόλως +εἰσελεύσεται +εἰς +τήν +βασιλείαν +τῶν +οὐρανῶν +δέ +πάλιν +λέγω +ὑμῖν +εὐκοπώτερον +ἐστιν +κάμηλον +διά +τρήματος +ῥαφίδος +εἰσελθεῖν +ἤ +πλούσιον +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +δέ +ἀκούσαντες +οἱ +μαθηταί +ἐξεπλήσσοντο +σφόδρα +λέγοντες +ἄρα +Τίς +δύναται +σωθῆναι +δέ +ἐμβλέψας +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Παρά +ἀνθρώποις +τοῦτο +ἀδύνατον +ἐστιν +δέ +παρά +Θεῷ +πάντα +δυνατά +Τότε +ἀποκριθείς +ὁ +Πέτρος +εἶπεν +αὐτῷ +Ἰδού +ἡμεῖς +ἀφήκαμεν +πάντα +καί +ἠκολουθήσαμεν +σοι +ἄρα +τί +ἔσται +ἡμῖν +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἀμήν +λέγω +ὑμῖν +ὅτι +ὑμεῖς +οἱ +ἀκολουθήσαντες +μοι +ἐν +τῇ +παλινγενεσίᾳ +ὅταν +καθίσῃ +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐπί +θρόνου +δόξης +αὐτοῦ +καθήσεσθε +καί +αὐτοί +ἐπί +δώδεκα +θρόνους +κρίνοντες +τάς +δώδεκα +φυλάς +τοῦ +Ἰσραήλ +καί +πᾶς +ὅστις +ἀφῆκεν +οἰκίας +ἤ +ἀδελφούς +ἤ +ἀδελφάς +ἤ +πατέρα +ἤ +μητέρα +ἤ +τέκνα +ἤ +ἀγρούς +ἕνεκεν +τοῦ +ἐμοῦ +ὀνόματος +πολλαπλασίονα +λήμψεται +καί +ζωήν +αἰώνιον +κληρονομήσει +δέ +Πολλοί +πρῶτοι +ἔσονται +ἔσχατοι +καί +ἔσχατοι +πρῶτοι +γάρ +Ὁμοία +ἐστιν +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +οἰκοδεσπότῃ +ὅστις +ἐξῆλθεν +ἅμα +πρωΐ +μισθώσασθαι +ἐργάτας +εἰς +τόν +ἀμπελῶνα +αὐτοῦ +δέ +συμφωνήσας +μετά +τῶν +ἐργατῶν +ἐκ +δηναρίου +τήν +ἡμέραν +ἀπέστειλεν +αὐτούς +εἰς +τόν +ἀμπελῶνα +αὐτοῦ +καί +ἐξελθών +περί +τρίτην +ὥραν +εἶδεν +ἄλλους +ἑστῶτας +ἐν +τῇ +ἀγορᾷ +ἀργούς +καί +ἐκείνοις +εἶπεν +Ὑπάγετε +καί +ὑμεῖς +εἰς +τόν +ἀμπελῶνα +καί +ἐάν +ὅ +ᾖ +δίκαιον +δώσω +ὑμῖν +δέ +οἱ +ἀπῆλθον +δέ +πάλιν +ἐξελθών +περί +ἕκτην +καί +ἐνάτην +ὥραν +ἐποίησεν +ὡσαύτως +δέ +περί +τήν +ἑνδεκάτην +ἐξελθών +εὗρεν +ἄλλους +ἑστῶτας +καί +λέγει +αὐτοῖς +Τί +ὧδε +ἑστήκατε +ὅλην +τήν +ἡμέραν +ἀργοί +λέγουσιν +αὐτῷ +Ὅτι +οὐδείς +ἡμᾶς +ἐμισθώσατο +λέγει +αὐτοῖς +Ὑπάγετε +καί +ὑμεῖς +εἰς +τόν +ἀμπελῶνα +δέ +ὀψίας +γενομένης +λέγει +ὁ +κύριος +τοῦ +ἀμπελῶνος +τῷ +ἐπιτρόπῳ +αὐτοῦ +Κάλεσον +τούς +ἐργάτας +καί +ἀπόδος +τόν +μισθόν +ἀρξάμενος +ἀπό +τῶν +ἐσχάτων +ἕως +τῶν +πρώτων +δέ +ἐλθόντες +οἱ +περί +τήν +ἑνδεκάτην +ὥραν +ἔλαβον +ἀνά +δηνάριον +καί +ἐλθόντες +οἱ +πρῶτοι +ἐνόμισαν +ὅτι +πλεῖον +λήμψονται +καί +ἔλαβον +τό +ἀνά +δηνάριον +καί +αὐτοί +δέ +λαβόντες +ἐγόγγυζον +κατά +τοῦ +οἰκοδεσπότου +λέγοντες +Οὗτοι +οἱ +ἔσχατοι +μίαν +ὥραν +ἐποίησαν +καί +ἴσους +αὐτούς +ἐποίησας +ἡμῖν +τοῖς +βαστάσασι +τό +βάρος +τῆς +ἡμέρας +καί +τόν +καύσωνα +δέ +ὁ +ἀποκριθείς +ἑνί +αὐτῶν +εἶπεν +Ἑταῖρε +οὐκ +ἀδικῶ +σε +οὐχί +δηναρίου +συνεφώνησας +μοι +ἆρον +τό +σόν +καί +ὕπαγε +δέ +θέλω +τούτῳ +τῷ +ἐσχάτῳ +δοῦναι +ὡς +καί +σοί +οὐκ +ἔξεστιν +μοι +ὅ +θέλω +ποιῆσαι +ἐν +τοῖς +ἐμοῖς +ἤ +ὁ +ὀφθαλμός +σου +πονηρός +ἐστιν +ὅτι +ἐγώ +ἀγαθός +εἰμι +Οὕτως +ἔσονται +οἱ +ἔσχατοι +πρῶτοι +καί +οἱ +πρῶτοι +ἔσχατοι +δέ +Ἰησοῦς +Μέλλων +ἀναβαίνειν +εἰς +Ἱεροσόλυμα +παρέλαβεν +τούς +δώδεκα +κατ’ +ἰδίαν +καί +ἐν +τῇ +ὁδῷ +εἶπεν +αὐτοῖς +Ἰδού +ἀναβαίνομεν +εἰς +Ἱεροσόλυμα +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδοθήσεται +τοῖς +ἀρχιερεῦσιν +καί +γραμματεῦσιν +καί +κατακρινοῦσιν +αὐτόν +εἰς +θάνατον +καί +παραδώσουσιν +αὐτόν +τοῖς +ἔθνεσιν +εἰς +τό +ἐμπαῖξαι +καί +μαστιγῶσαι +καί +σταυρῶσαι +καί +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθήσεται +Τότε +προσῆλθεν +αὐτῷ +ἡ +μήτηρ +τῶν +υἱῶν +Ζεβεδαίου +μετά +τῶν +υἱῶν +αὐτῆς +προσκυνοῦσα +καί +αἰτοῦσα +τι +ἀπ’ +αὐτοῦ +δέ +ὁ +εἶπεν +αὐτῇ +Τί +θέλεις +λέγει +αὐτῷ +Εἰπέ +ἵνα +καθίσωσιν +οὗτοι +οἱ +δύο +υἱοί +μου +εἷς +ἐκ +δεξιῶν +καί +εἷς +ἐξ +εὐωνύμων +σου +ἐν +τῇ +βασιλείᾳ +σου +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +Οὐκ +οἴδατε +τί +αἰτεῖσθε +δύνασθε +πιεῖν +τό +ποτήριον +ὅ +πίνειν +ἐγώ +μέλλω +λέγουσιν +αὐτῷ +Δυνάμεθα +λέγει +αὐτοῖς +μέν +Τό +ποτήριον +μου +πίεσθε +δέ +τό +καθίσαι +ἐκ +δεξιῶν +μου +καί +ἐξ +εὐωνύμων +οὐκ +ἔστιν +ἐμόν +τοῦτο +δοῦναι +ἀλλ’ +οἷς +ἡτοίμασται +ὑπό +τοῦ +Πατρός +μου +καί +ἀκούσαντες +οἱ +δέκα +ἠγανάκτησαν +περί +τῶν +δύο +ἀδελφῶν +δέ +ὁ +Ἰησοῦς +προσκαλεσάμενος +αὐτούς +εἶπεν +Οἴδατε +ὅτι +οἱ +ἄρχοντες +τῶν +ἐθνῶν +κατακυριεύουσιν +αὐτῶν +καί +οἱ +μεγάλοι +κατεξουσιάζουσιν +αὐτῶν +οὐχ +οὕτως +ἐστίν +ἐν +ὑμῖν +ἀλλ’ +ἐάν +ὅς +θέλῃ +ἐν +ὑμῖν +μέγας +γενέσθαι +ἔσται +ὑμῶν +διάκονος +καί +ἄν +ὅς +θέλῃ +ἐν +ὑμῖν +εἶναι +πρῶτος +ἔσται +ὑμῶν +δοῦλος +ὥσπερ +ὁ +Υἱός +τοῦ +ἀνθρώπου +οὐκ +ἦλθεν +διακονηθῆναι +ἀλλά +διακονῆσαι +καί +δοῦναι +τήν +ψυχήν +αὐτοῦ +λύτρον +ἀντί +πολλῶν +Καί +ἐκπορευομένων +αὐτῶν +ἀπό +Ἱερειχώ +ἠκολούθησεν +αὐτῷ +ὄχλος +πολύς +καί +ἰδού +δύο +τυφλοί +καθήμενοι +παρά +τήν +ὁδόν +ἀκούσαντες +ὅτι +Ἰησοῦς +παράγει +ἔκραξαν +λέγοντες +ἐλέησον +ἡμᾶς +Κύριε +υἱός +Δαυείδ +δέ +ὁ +ὄχλος +ἐπετίμησεν +αὐτοῖς +ἵνα +σιωπήσωσιν +δέ +οἱ +μεῖζον +ἔκραξαν +λέγοντες +ἐλέησον +ἡμᾶς +Κύριε +υἱός +Δαυείδ +καί +στάς +ὁ +Ἰησοῦς +ἐφώνησεν +αὐτούς +καί +εἶπεν +θέλετε +Τί +ποιήσω +ὑμῖν +λέγουσιν +αὐτῷ +Κύριε +ἵνα +ἀνοιγῶσιν +οἱ +ὀφθαλμοί +ἡμῶν +δέ +σπλαγχνισθείς +ὁ +Ἰησοῦς +ἥψατο +τῶν +ὀμμάτων +αὐτῶν +καί +εὐθέως +ἀνέβλεψαν +καί +ἠκολούθησαν +αὐτῷ +Καί +ὅτε +ἤγγισαν +εἰς +Ἱεροσόλυμα +καί +ἦλθον +εἰς +Βηθφαγή +εἰς +τό +ὄρος +τῶν +Ἐλαιῶν +τότε +Ἰησοῦς +ἀπέστειλεν +δύο +μαθητάς +λέγων +αὐτοῖς +Πορεύεσθε +εἰς +τήν +κώμην +τήν +κατέναντι +ὑμῶν +καί +εὐθύς +εὑρήσετε +ὄνον +δεδεμένην +καί +πῶλον +μετ’ +αὐτῆς +λύσαντες +ἀγάγετε +μοι +καί +ἐάν +τις +ὑμῖν +εἴπῃ +τι +ἐρεῖτε +ὅτι +Ὁ +Κύριος +αὐτῶν +χρείαν +ἔχει +δέ +εὐθύς +ἀποστελεῖ +αὐτούς +δέ +Τοῦτο +γέγονεν +ἵνα +πληρωθῇ +τό +ῥηθέν +διά +τοῦ +προφήτου +λέγοντος +Εἴπατε +τῇ +θυγατρί +Σιών +Ἰδού +ὁ +Βασιλεύς +σου +ἔρχεται +σοι +πραΰς +καί +ἐπιβεβηκώς +ἐπί +ὄνον +καί +ἐπί +πῶλον +υἱόν +ὑποζυγίου +δέ +οἱ +μαθηταί +πορευθέντες +καί +ποιήσαντες +καθώς +συνέταξεν +αὐτοῖς +ὁ +Ἰησοῦς +ἤγαγον +τήν +ὄνον +καί +τόν +πῶλον +καί +ἐπέθηκαν +ἐπ’ +αὐτῶν +τά +ἱμάτια +καί +ἐπεκάθισεν +ἐπάνω +αὐτῶν +δέ +ὁ +πλεῖστος +ὄχλος +ἔστρωσαν +ἑαυτῶν +τά +ἱμάτια +ἐν +τῇ +ὁδῷ +δέ +ἄλλοι +ἔκοπτον +κλάδους +ἀπό +τῶν +δένδρων +καί +ἐστρώννυον +ἐν +τῇ +ὁδῷ +δέ +οἱ +ὄχλοι +οἱ +προάγοντες +αὐτόν +καί +οἱ +ἀκολουθοῦντες +ἔκραζον +λέγοντες +Ὡσαννά +τῷ +υἱῷ +Δαυείδ +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου +Ὡσαννά +ἐν +τοῖς +ὑψίστοις +καί +εἰσελθόντος +αὐτοῦ +εἰς +Ἱεροσόλυμα +ἐσείσθη +πᾶσα +ἡ +πόλις +λέγουσα +Τίς +ἐστιν +οὗτος +δέ +οἱ +ὄχλοι +ἔλεγον +Οὗτος +ἐστιν +ὁ +προφήτης +Ἰησοῦς +ὁ +ἀπό +Ναζαρέθ +τῆς +Γαλιλαίας +Καί +εἰσῆλθεν +Ἰησοῦς +εἰς +τό +ἱερόν +καί +ἐξέβαλεν +πάντας +τούς +πωλοῦντας +καί +ἀγοράζοντας +ἐν +τῷ +ἱερῷ +καί +κατέστρεψεν +τάς +τραπέζας +τῶν +κολλυβιστῶν +καί +τάς +καθέδρας +τῶν +πωλούντων +τάς +περιστεράς +καί +λέγει +αὐτοῖς +Γέγραπται +Ὁ +οἶκος +μου +οἶκος +προσευχῆς +κληθήσεται +δέ +ὑμεῖς +αὐτόν +ποιεῖτε +σπήλαιον +λῃστῶν +Καί +προσῆλθον +αὐτῷ +τυφλοί +καί +χωλοί +ἐν +τῷ +ἱερῷ +καί +ἐθεράπευσεν +αὐτούς +δέ +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +ἰδόντες +τά +θαυμάσια +ἅ +ἐποίησεν +καί +τούς +παῖδας +τούς +κράζοντας +ἐν +τῷ +ἱερῷ +καί +λέγοντας +Ὡσαννά +τῷ +υἱῷ +Δαυείδ +ἠγανάκτησαν +καί +εἶπαν +αὐτῷ +Ἀκούεις +τί +οὗτοι +λέγουσιν +δέ +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Ναί +οὐδέποτε +ἀνέγνωτε +ὅτι +Ἐκ +στόματος +νηπίων +καί +θηλαζόντων +κατηρτίσω +αἶνον +Καί +καταλιπών +αὐτούς +ἐξῆλθεν +ἔξω +τῆς +πόλεως +εἰς +Βηθανίαν +καί +ηὐλίσθη +ἐκεῖ +δέ +Πρωΐ +ἐπαναγαγών +εἰς +τήν +πόλιν +ἐπείνασεν +καί +ἰδών +συκῆν +μίαν +ἐπί +τῆς +ὁδοῦ +ἦλθεν +ἐπ’ +αὐτήν +καί +οὐδέν +εὗρεν +ἐν +αὐτῇ +εἰ +μή +φύλλα +μόνον +καί +λέγει +αὐτῇ +Οὐ +μηκέτι +ἐκ +σοῦ +καρπός +γένηται +εἰς +τόν +αἰῶνα +καί +ἐξηράνθη +παραχρῆμα +ἡ +συκῆ +καί +ἰδόντες +οἱ +μαθηταί +ἐθαύμασαν +λέγοντες +Πῶς +παραχρῆμα +ἐξηράνθη +ἡ +συκῆ +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἀμήν +λέγω +ὑμῖν +ἐάν +ἔχητε +πίστιν +καί +μή +διακριθῆτε +οὐ +μόνον +τό +τῆς +συκῆς +ποιήσετε +ἀλλά +κἄν +τῷ +ὄρει +τούτῳ +εἴπητε +Ἄρθητι +καί +βλήθητι +εἰς +τήν +θάλασσαν +γενήσεται +καί +πάντα +ἄν +ὅσα +αἰτήσητε +ἐν +τῇ +προσευχῇ +πιστεύοντες +λήμψεσθε +Καί +ἐλθόντος +αὐτοῦ +εἰς +τό +ἱερόν +προσῆλθον +αὐτῷ +διδάσκοντι +οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +τοῦ +λαοῦ +λέγοντες +Ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιεῖς +καί +τίς +σοι +ἔδωκεν +τήν +ἐξουσίαν +ταύτην +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἐρωτήσω +ὑμᾶς +κἀγώ +λόγον +ἕνα +ἐάν +ὅν +εἴπητε +μοι +κἀγώ +ὑμῖν +ἐρῶ +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ +τό +βάπτισμα +τό +Ἰωάνου +πόθεν +ἦν +ἐξ +οὐρανοῦ +ἤ +ἐξ +ἀνθρώπων +δέ +οἱ +διελογίζοντο +ἐν +ἑαυτοῖς +λέγοντες +Ἐάν +εἴπωμεν +Ἐξ +οὐρανοῦ +ἐρεῖ +ἡμῖν +οὖν +Διά +τί +οὐκ +ἐπιστεύσατε +αὐτῷ +δέ +ἐάν +εἴπωμεν +Ἐξ +ἀνθρώπων +φοβούμεθα +τόν +ὄχλον +γάρ +πάντες +ὡς +προφήτην +ἔχουσιν +τόν +Ἰωάνην +καί +ἀποκριθέντες +τῷ +Ἰησοῦ +εἶπαν +Οὐκ +οἴδαμεν +ἔφη +αὐτοῖς +καί +αὐτός +Οὐδέ +ἐγώ +λέγω +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ +δέ +Τί +ὑμῖν +δοκεῖ +ἄνθρωπος +εἶχεν +τέκνα +δύο +προσελθών +τῷ +πρώτῳ +εἶπεν +Τέκνον +ὕπαγε +σήμερον +ἐργάζου +ἐν +τῷ +ἀμπελῶνι +δέ +ὁ +ἀποκριθείς +εἶπεν +Ἐγώ +κύριε +καί +οὐκ +ἀπῆλθεν +δέ +προσελθών +τῷ +δευτέρῳ +εἶπεν +ὡσαύτως +δέ +ὁ +ἀποκριθείς +εἶπεν +Οὐ +θέλω +ὕστερον +μεταμεληθείς +ἀπῆλθεν +τίς +ἐκ +τῶν +δύο +ἐποίησεν +τό +θέλημα +τοῦ +πατρός +λέγουσιν +Ὁ +ὕστερος +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμήν +λέγω +ὑμῖν +ὅτι +οἱ +τελῶναι +καί +αἱ +πόρναι +προάγουσιν +ὑμᾶς +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +γάρ +ἦλθεν +Ἰωάνης +πρός +ὑμᾶς +ἐν +ὁδῷ +δικαιοσύνης +καί +οὐκ +ἐπιστεύσατε +αὐτῷ +δέ +οἱ +τελῶναι +καί +αἱ +πόρναι +ἐπίστευσαν +αὐτῷ +δέ +ὑμεῖς +ἰδόντες +οὐδέ +μετεμελήθητε +ὕστερον +τοῦ +πιστεῦσαι +αὐτῷ +Ἄλλην +παραβολήν +ἀκούσατε +Ἄνθρωπος +ἦν +οἰκοδεσπότης +ὅστις +ἐφύτευσεν +ἀμπελῶνα +καί +φραγμόν +αὐτῷ +περιέθηκεν +καί +ὤρυξεν +ἐν +αὐτῷ +ληνόν +καί +ᾠκοδόμησεν +πύργον +καί +ἐξέδετο +αὐτόν +γεωργοῖς +καί +ἀπεδήμησεν +δέ +ὅτε +ἤγγισεν +ὁ +καιρός +τῶν +καρπῶν +ἀπέστειλεν +τούς +δούλους +αὐτοῦ +πρός +τούς +γεωργούς +λαβεῖν +τούς +καρπούς +αὐτοῦ +καί +λαβόντες +οἱ +γεωργοί +τούς +δούλους +αὐτοῦ +μέν +ὅν +ἔδειραν +δέ +ὅν +ἀπέκτειναν +δέ +ὅν +ἐλιθοβόλησαν +πάλιν +ἀπέστειλεν +ἄλλους +δούλους +πλείονας +τῶν +πρώτων +καί +ἐποίησαν +αὐτοῖς +ὡσαύτως +δέ +ὕστερον +ἀπέστειλεν +πρός +αὐτούς +τόν +υἱόν +αὐτοῦ +λέγων +Ἐντραπήσονται +τόν +υἱόν +μου +δέ +οἱ +γεωργοί +ἰδόντες +τόν +υἱόν +εἶπον +ἐν +ἑαυτοῖς +Οὗτος +ἐστιν +ὁ +κληρονόμος +δεῦτε +ἀποκτείνωμεν +αὐτόν +καί +σχῶμεν +τήν +κληρονομίαν +αὐτοῦ +καί +λαβόντες +αὐτόν +ἐξέβαλον +ἔξω +τοῦ +ἀμπελῶνος +καί +ἀπέκτειναν +οὖν +ὅταν +ἔλθῃ +ὁ +κύριος +τοῦ +ἀμπελῶνος +τί +ποιήσει +τοῖς +γεωργοῖς +ἐκείνοις +λέγουσιν +αὐτῷ +Κακούς +κακῶς +ἀπολέσει +αὐτούς +καί +τόν +ἀμπελῶνα +ἐκδώσεται +ἄλλοις +γεωργοῖς +οἵτινες +ἀποδώσουσιν +αὐτῷ +τούς +καρπούς +ἐν +τοῖς +καιροῖς +αὐτῶν +Λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Οὐδέποτε +ἀνέγνωτε +ἐν +ταῖς +γραφαῖς +Λίθον +ὅν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες +οὗτος +ἐγενήθη +εἰς +κεφαλήν +γωνίας +παρά +Κυρίου +ἐγένετο +αὕτη +καί +ἔστιν +θαυμαστή +ἐν +ὀφθαλμοῖς +ἡμῶν +διά +τοῦτο +λέγω +ὑμῖν +ὅτι +ἀρθήσεται +ἀφ’ +ὑμῶν +ἡ +βασιλεία +τοῦ +Θεοῦ +καί +δοθήσεται +ἔθνει +ποιοῦντι +τούς +καρπούς +αὐτῆς +καί +ὁ +πεσών +ἐπί +τόν +λίθον +τοῦτον +συνθλασθήσεται +δ’ +ἐφ’ +ἄν +ὅν +πέσῃ +λικμήσει +αὐτόν +Καί +οἱ +ἀρχιερεῖς +καί +οἱ +Φαρισαῖοι +ἀκούσαντες +τάς +παραβολάς +αὐτοῦ +ἔγνωσαν +ὅτι +περί +αὐτῶν +λέγει +καί +ζητοῦντες +αὐτόν +κρατῆσαι +ἐφοβήθησαν +τούς +ὄχλους +ἐπεί +εἰς +προφήτην +αὐτόν +εἶχον +Καί +ἀποκριθείς +ὁ +Ἰησοῦς +πάλιν +εἶπεν +ἐν +παραβολαῖς +αὐτοῖς +λέγων +Ὡμοιώθη +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +βασιλεῖ +ὅστις +ἐποίησεν +γάμους +τῷ +υἱῷ +αὐτοῦ +καί +ἀπέστειλεν +τούς +δούλους +αὐτοῦ +καλέσαι +τούς +κεκλημένους +εἰς +τούς +γάμους +καί +οὐκ +ἤθελον +ἐλθεῖν +πάλιν +ἀπέστειλεν +ἄλλους +δούλους +λέγων +Εἴπατε +τοῖς +κεκλημένοις +Ἰδού +τό +ἄριστον +μου +ἡτοίμακα +οἱ +ταῦροι +μου +καί +τά +σιτιστά +τεθυμένα +καί +πάντα +ἕτοιμα +δεῦτε +εἰς +τούς +γάμους +δέ +οἱ +ἀμελήσαντες +ἀπῆλθον +μέν +ὅς +εἰς +τόν +ἴδιον +ἀγρόν +δέ +ὅς +ἐπί +τήν +ἐμπορίαν +αὐτοῦ +δέ +οἱ +λοιποί +κρατήσαντες +τούς +δούλους +αὐτοῦ +ὕβρισαν +καί +ἀπέκτειναν +δέ +ὁ +βασιλεύς +ὠργίσθη +καί +πέμψας +τά +στρατεύματα +αὐτοῦ +ἀπώλεσεν +τούς +φονεῖς +ἐκείνους +καί +τήν +πόλιν +αὐτῶν +ἐνέπρησεν +τότε +λέγει +τοῖς +δούλοις +αὐτοῦ +μέν +Ὁ +γάμος +ἕτοιμος +ἐστιν +δέ +οἱ +κεκλημένοι +οὐκ +ἦσαν +ἄξιοι +οὖν +πορεύεσθε +ἐπί +τάς +διεξόδους +τῶν +ὁδῶν +καί +ἐάν +ὅσους +εὕρητε +καλέσατε +εἰς +τούς +γάμους +καί +οἱ +δοῦλοι +ἐκεῖνοι +ἐξελθόντες +εἰς +τάς +ὁδούς +συνήγαγον +πάντας +οὕς +εὗρον +τε +πονηρούς +καί +ἀγαθούς +καί +ἐπλήσθη +ὁ +νυμφών +ἀνακειμένων +δέ +ὁ +βασιλεύς +εἰσελθών +θεάσασθαι +τούς +ἀνακειμένους +εἶδεν +ἐκεῖ +ἄνθρωπον +οὐκ +ἐνδεδυμένον +ἔνδυμα +γάμου +καί +λέγει +αὐτῷ +Ἑταῖρε +πῶς +εἰσῆλθες +ὧδε +μή +ἔχων +ἔνδυμα +γάμου +δέ +ὁ +ἐφιμώθη +τότε +ὁ +βασιλεύς +εἶπεν +τοῖς +διακόνοις +Δήσαντες +αὐτοῦ +πόδας +καί +χεῖρας +ἐκβάλετε +αὐτόν +εἰς +τό +σκότος +τό +ἐξώτερον +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +γάρ +Πολλοί +εἰσιν +κλητοί +δέ +ὀλίγοι +ἐκλεκτοί +Τότε +πορευθέντες +οἱ +Φαρισαῖοι +συμβούλιον +ἔλαβον +ὅπως +αὐτόν +παγιδεύσωσιν +ἐν +λόγῳ +καί +ἀποστέλλουσιν +αὐτῷ +τούς +μαθητάς +αὐτῶν +μετά +τῶν +Ἠρῳδιανῶν +λέγοντας +Διδάσκαλε +οἴδαμεν +ὅτι +ἀληθής +εἶ +καί +τήν +ὁδόν +τοῦ +Θεοῦ +ἐν +ἀληθείᾳ +διδάσκεις +καί +οὐ +μέλει +σοι +περί +οὐδενός +γάρ +οὐ +βλέπεις +εἰς +πρόσωπον +ἀνθρώπων +οὖν +εἰπόν +ἡμῖν +τί +σοι +δοκεῖ +ἔξεστιν +δοῦναι +κῆνσον +Καίσαρι +ἤ +οὔ +δέ +ὁ +Ἰησοῦς +γνούς +τήν +πονηρίαν +αὐτῶν +εἶπεν +Τί +με +πειράζετε +ὑποκριταί +ἐπιδείξατε +μοι +τό +νόμισμα +τοῦ +κήνσου +δέ +οἱ +προσήνεγκαν +αὐτῷ +δηνάριον +καί +λέγει +αὐτοῖς +Τίνος +ἡ +εἰκών +αὕτη +καί +ἡ +ἐπιγραφή +λέγουσιν +Καίσαρος +τότε +λέγει +αὐτοῖς +οὖν +Ἀπόδοτε +τά +Καίσαρος +Καίσαρι +καί +τά +τοῦ +Θεοῦ +τῷ +Θεῷ +καί +ἀκούσαντες +ἐθαύμασαν +καί +ἀφέντες +αὐτόν +ἀπῆλθαν +Ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +προσῆλθον +αὐτῷ +Σαδδουκαῖοι +λέγοντες +μή +εἶναι +ἀνάστασιν +καί +ἐπηρώτησαν +αὐτόν +λέγοντες +Διδάσκαλε +Μωϋσῆς +εἶπεν +Ἐάν +τις +ἀποθάνῃ +μή +ἔχων +τέκνα +ἐπιγαμβρεύσει +ὁ +ἀδελφός +αὐτοῦ +τήν +γυναῖκα +αὐτοῦ +καί +ἀναστήσει +σπέρμα +τῷ +ἀδελφῷ +αὐτοῦ +δέ +ἦσαν +παρ’ +ἡμῖν +ἑπτά +ἀδελφοί +καί +ὁ +πρῶτος +γήμας +ἐτελεύτησεν +καί +μή +ἔχων +σπέρμα +ἀφῆκεν +τήν +γυναῖκα +αὐτοῦ +τῷ +ἀδελφῷ +αὐτοῦ +ὁμοίως +καί +ὁ +δεύτερος +καί +ὁ +τρίτος +ἕως +τῶν +ἑπτά +δέ +ὕστερον +πάντων +ἀπέθανεν +ἡ +γυνή +οὖν +ἐν +τῇ +ἀναστάσει +τίνος +τῶν +ἑπτά +γυνή +ἔσται +γάρ +πάντες +ἔσχον +αὐτήν +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Πλανᾶσθε +μή +εἰδότες +τάς +γραφάς +μηδέ +τήν +δύναμιν +τοῦ +Θεοῦ +γάρ +ἐν +τῇ +ἀναστάσει +οὔτε +γαμοῦσιν +οὔτε +γαμίζονται +ἀλλ’ +ὡς +ἄγγελοι +ἐν +τῷ +οὐρανῷ +εἰσιν +δέ +περί +τῆς +ἀναστάσεως +τῶν +νεκρῶν +οὐκ +ἀνέγνωτε +τό +ῥηθέν +ὑμῖν +ὑπό +τοῦ +Θεοῦ +λέγοντος +Ἐγώ +εἰμι +ὁ +Θεός +Ἀβραάμ +καί +ὁ +Θεός +Ἰσαάκ +καί +ὁ +Θεός +Ἰακώβ +οὐκ +ἔστιν +ὁ +Θεός +νεκρῶν +ἀλλά +ζώντων +καί +ἀκούσαντες +οἱ +ὄχλοι +ἐξεπλήσσοντο +ἐπί +τῇ +διδαχῇ +αὐτοῦ +δέ +Οἱ +Φαρισαῖοι +ἀκούσαντες +ὅτι +ἐφίμωσεν +τούς +Σαδδουκαίους +συνήχθησαν +ἐπί +τό +αὐτό +καί +ἐπηρώτησεν +εἷς +ἐξ +αὐτῶν +νομικός +πειράζων +αὐτόν +Διδάσκαλε +ποία +ἐντολή +μεγάλη +ἐν +τῷ +νόμῳ +δέ +ὁ +ἔφη +αὐτῷ +Ἀγαπήσεις +κύριον +τόν +Θεόν +σου +ἐν +ὅλῃ +τῇ +καρδίᾳ +σου +καί +ἐν +ὅλῃ +τῇ +ψυχῇ +σου +καί +ἐν +ὅλῃ +τῇ +διανοίᾳ +σου +αὕτη +ἐστίν +ἡ +μεγάλη +καί +πρώτη +ἐντολή +δευτέρα +ὁμοία +αὐτῇ +Ἀγαπήσεις +τόν +πλησίον +σου +ὡς +σεαυτόν +ἐν +ταύταις +ταῖς +δυσίν +ἐντολαῖς +ὅλος +ὁ +νόμος +κρέμαται +καί +οἱ +προφῆται +δέ +Συνηγμένων +τῶν +Φαρισαίων +ἐπηρώτησεν +αὐτούς +ὁ +Ἰησοῦς +λέγων +Τί +ὑμῖν +δοκεῖ +περί +τοῦ +Χριστοῦ +τίνος +υἱός +ἐστιν +λέγουσιν +αὐτῷ +Τοῦ +Δαυείδ +λέγει +αὐτοῖς +οὖν +Πῶς +Δαυείδ +ἐν +Πνεύματι +καλεῖ +αὐτόν +Κύριον +λέγων +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἄν +θῶ +τούς +ἐχθρούς +σου +ὑποκάτω +τῶν +ποδῶν +σου +οὖν +εἰ +Δαυείδ +καλεῖ +αὐτόν +Κύριον +πῶς +υἱός +αὐτοῦ +ἐστιν +καί +οὐδείς +ἐδύνατο +ἀποκριθῆναι +αὐτῷ +λόγον +οὐδέ +ἐτόλμησεν +τις +ἀπ’ +ἐκείνης +τῆς +ἡμέρας +ἐπερωτῆσαι +αὐτόν +οὐκέτι +Τότε +ὁ +Ἰησοῦς +ἐλάλησεν +τοῖς +ὄχλοις +καί +τοῖς +μαθηταῖς +αὐτοῦ +λέγων +Ἐπί +τῆς +Μωϋσέως +καθέδρας +ἐκάθισαν +οἱ +γραμματεῖς +καί +οἱ +Φαρισαῖοι +οὖν +πάντα +ἐάν +ὅσα +εἴπωσιν +ὑμῖν +ποιήσατε +καί +τηρεῖτε +δέ +κατά +τά +ἔργα +αὐτῶν +μή +ποιεῖτε +γάρ +λέγουσιν +καί +οὐ +ποιοῦσιν +δέ +δεσμεύουσιν +φορτία +βαρέα +καί +ἐπιτιθέασιν +ἐπί +τούς +ὤμους +τῶν +ἀνθρώπων +δέ +αὐτοί +τῷ +δακτύλῳ +αὐτῶν +οὐ +θέλουσιν +κινῆσαι +αὐτά +δέ +πάντα +τά +ἔργα +αὐτῶν +ποιοῦσιν +πρός +τό +θεαθῆναι +τοῖς +ἀνθρώποις +γάρ +πλατύνουσιν +τά +φυλακτήρια +αὐτῶν +καί +μεγαλύνουσιν +τά +κράσπεδα +δέ +φιλοῦσιν +τήν +πρωτοκλισίαν +ἐν +τοῖς +δείπνοις +καί +τάς +πρωτοκαθεδρίας +ἐν +ταῖς +συναγωγαῖς +καί +τούς +ἀσπασμούς +ἐν +ταῖς +ἀγοραῖς +καί +καλεῖσθαι +ὑπό +τῶν +ἀνθρώπων +Ῥαββεί +δέ +ὑμεῖς +μή +κληθῆτε +Ῥαββεί +γάρ +εἷς +ἐστιν +ὑμῶν +ὁ +διδάσκαλος +δέ +πάντες +ὑμεῖς +ἀδελφοί +ἐστε +καί +πατέρα +ὑμῶν +μή +καλέσητε +ἐπί +τῆς +γῆς +γάρ +εἷς +ἐστιν +ὑμῶν +ὁ +Πατήρ +ὁ +οὐράνιος +μηδέ +κληθῆτε +καθηγηταί +ὅτι +καθηγητής +ὑμῶν +ἐστιν +εἷς +ὁ +Χριστός +δέ +ὁ +μείζων +ὑμῶν +ἔσται +ὑμῶν +διάκονος +δέ +Ὅστις +ὑψώσει +ἑαυτόν +ταπεινωθήσεται +καί +ὅστις +ταπεινώσει +ἑαυτόν +ὑψωθήσεται +δέ +Οὐαί +ὑμῖν +γραμματεῖς +καί +Φαρισαῖοι +ὑποκριταί +ὅτι +κλείετε +τήν +βασιλείαν +τῶν +οὐρανῶν +ἔμπροσθεν +τῶν +ἀνθρώπων +γάρ +ὑμεῖς +οὐκ +εἰσέρχεσθε +οὐδέ +τούς +εἰσερχομένους +εἰσελθεῖν +ἀφίετε +Οὐαί +ὑμῖν +γραμματεῖς +καί +Φαρισαῖοι +ὑποκριταί +ὅτι +περιάγετε +τήν +θάλασσαν +καί +τήν +ξηράν +ποιῆσαι +ἕνα +προσήλυτον +καί +ὅταν +γένηται +ποιεῖτε +αὐτόν +υἱόν +γεέννης +διπλότερον +ὑμῶν +Οὐαί +ὑμῖν +ὁδηγοί +τυφλοί +οἱ +λέγοντες +ἄν +Ὅς +ὀμόσῃ +ἐν +τῷ +ναῷ +οὐδέν +ἐστιν +δ’ +ἄν +ὅς +ὀμόσῃ +ἐν +τῷ +χρυσῷ +τοῦ +ναοῦ +ὀφείλει +μωροί +καί +τυφλοί +γάρ +τίς +μείζων +ἐστίν +ὁ +χρυσός +ἤ +ὁ +ναός +ὁ +ἁγιάσας +τόν +χρυσόν +καί +ἄν +Ὅς +ὀμόσῃ +ἐν +τῷ +θυσιαστηρίῳ +οὐδέν +ἐστιν +δ’ +ἄν +ὅς +ὀμόσῃ +ἐν +τῷ +δώρῳ +τῷ +ἐπάνω +αὐτοῦ +ὀφείλει +τυφλοί +γάρ +τί +μεῖζον +τό +δῶρον +ἤ +τό +θυσιαστήριον +τό +ἁγιάζον +τό +δῶρον +οὖν +ὁ +ὀμόσας +ἐν +τῷ +θυσιαστηρίῳ +ὀμνύει +ἐν +αὐτῷ +καί +ἐν +πᾶσι +τοῖς +ἐπάνω +αὐτοῦ +καί +ὁ +ὀμόσας +ἐν +τῷ +ναῷ +ὀμνύει +ἐν +αὐτῷ +καί +ἐν +τῷ +κατοικοῦντι +αὐτόν +καί +ὁ +ὀμόσας +ἐν +τῷ +οὐρανῷ +ὀμνύει +ἐν +τῷ +θρόνῳ +τοῦ +Θεοῦ +καί +ἐν +τῷ +καθημένῳ +ἐπάνω +αὐτοῦ +Οὐαί +ὑμῖν +γραμματεῖς +καί +Φαρισαῖοι +ὑποκριταί +ὅτι +ἀποδεκατοῦτε +τό +ἡδύοσμον +καί +τό +ἄνηθον +καί +τό +κύμινον +καί +ἀφήκατε +τά +βαρύτερα +τοῦ +νόμου +τήν +κρίσιν +καί +τό +ἔλεος +καί +τήν +πίστιν +δέ +ἔδει +ταῦτα +ποιῆσαι +κἀκεῖνα +μή +ἀφεῖναι +ὁδηγοί +τυφλοί +οἱ +διϋλίζοντες +τόν +κώνωπα +δέ +τήν +κάμηλον +καταπίνοντες +Οὐαί +ὑμῖν +γραμματεῖς +καί +Φαρισαῖοι +ὑποκριταί +ὅτι +καθαρίζετε +τό +ἔξωθεν +τοῦ +ποτηρίου +καί +τῆς +παροψίδος +δέ +ἔσωθεν +γέμουσιν +ἐξ +ἁρπαγῆς +καί +ἀκρασίας +Φαρισαῖε +τυφλέ +καθάρισον +πρῶτον +τό +ἐντός +τοῦ +ποτηρίου +ἵνα +γένηται +καί +τό +ἐκτός +αὐτοῦ +καθαρόν +Οὐαί +ὑμῖν +γραμματεῖς +καί +Φαρισαῖοι +ὑποκριταί +ὅτι +παρομοιάζετε +τάφοις +κεκονιαμένοις +μέν +οἵτινες +ἔξωθεν +φαίνονται +ὡραῖοι +δέ +ἔσωθεν +γέμουσιν +ὀστέων +νεκρῶν +καί +πάσης +ἀκαθαρσίας +οὕτως +καί +ὑμεῖς +μέν +ἔξωθεν +φαίνεσθε +τοῖς +ἀνθρώποις +δίκαιοι +δέ +ἔσωθεν +ἐστε +μεστοί +ὑποκρίσεως +καί +ἀνομίας +Οὐαί +ὑμῖν +γραμματεῖς +καί +Φαρισαῖοι +ὑποκριταί +ὅτι +οἰκοδομεῖτε +τούς +τάφους +τῶν +προφητῶν +καί +κοσμεῖτε +τά +μνημεῖα +τῶν +δικαίων +καί +λέγετε +Εἰ +ἤμεθα +ἐν +ταῖς +ἡμέραις +τῶν +πατέρων +ἡμῶν +ἄν +οὐκ +ἤμεθα +αὐτῶν +κοινωνοί +ἐν +τῷ +αἵματι +τῶν +προφητῶν +ὥστε +μαρτυρεῖτε +ἑαυτοῖς +ὅτι +ἐστε +υἱοί +τῶν +φονευσάντων +τούς +προφήτας +καί +ὑμεῖς +πληρώσατε +τό +μέτρον +τῶν +πατέρων +ὑμῶν +ὄφεις +γεννήματα +ἐχιδνῶν +πῶς +φύγητε +ἀπό +τῆς +κρίσεως +τῆς +γεέννης +ἰδού +διά +τοῦτο +ἐγώ +ἀποστέλλω +πρός +ὑμᾶς +προφήτας +καί +σοφούς +καί +γραμματεῖς +ἐξ +αὐτῶν +ἀποκτενεῖτε +καί +σταυρώσετε +καί +ἐξ +αὐτῶν +μαστιγώσετε +ἐν +ταῖς +συναγωγαῖς +ὑμῶν +καί +διώξετε +ἀπό +πόλεως +εἰς +πόλιν +ὅπως +ἔλθῃ +ἐφ’ +ὑμᾶς +πᾶν +αἷμα +δίκαιον +ἐκχυννόμενον +ἐπί +τῆς +γῆς +ἀπό +τοῦ +αἵματος +Ἅβελ +τοῦ +δικαίου +ἕως +τοῦ +αἵματος +Ζαχαρίου +υἱοῦ +Βαραχίου +ὅν +ἐφονεύσατε +μεταξύ +τοῦ +ναοῦ +καί +τοῦ +θυσιαστηρίου +ἀμήν +λέγω +ὑμῖν +ἥξει +ταῦτα +πάντα +ἐπί +τήν +γενεάν +ταύτην +Ἰερουσαλήμ +Ἰερουσαλήμ +ἡ +ἀποκτείνουσα +τούς +προφήτας +καί +λιθοβολοῦσα +τούς +ἀπεσταλμένους +πρός +αὐτήν +ποσάκις +ἠθέλησα +ἐπισυναγαγεῖν +τά +τέκνα +σου +ὅν +τρόπον +ὄρνις +ἐπισυνάγει +τά +νοσσία +αὐτῆς +ὑπό +τάς +πτέρυγας +καί +οὐκ +ἠθελήσατε +ἰδού +ἀφίεται +ὑμῖν +ὁ +οἶκος +ὑμῶν +γάρ +λέγω +ὑμῖν +οὐ +μή +με +ἴδητε +ἀπ’ +ἄρτι +ἕως +ἄν +εἴπητε +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου +Καί +ὁ +Ἰησοῦς +ἐξελθών +ἀπό +τοῦ +ἱεροῦ +ἐπορεύετο +καί +προσῆλθον +οἱ +μαθηταί +αὐτοῦ +ἐπιδεῖξαι +αὐτῷ +τάς +οἰκοδομάς +τοῦ +ἱεροῦ +δέ +ὁ +ἀποκριθείς +εἶπεν +αὐτοῖς +Οὐ +βλέπετε +ταῦτα +πάντα +ἀμήν +λέγω +ὑμῖν +οὐ +μή +ἀφεθῇ +ὧδε +ἐπί +λίθον +λίθος +ὅς +οὐ +καταλυθήσεται +δέ +Καθημένου +αὐτοῦ +ἐπί +τοῦ +ὄρους +τῶν +Ἐλαιῶν +προσῆλθον +αὐτῷ +οἱ +μαθηταί +κατ’ +ἰδίαν +λέγοντες +Εἰπέ +ἡμῖν +πότε +ταῦτα +ἔσται +καί +τί +τό +σημεῖον +τῆς +σῆς +παρουσίας +καί +συντελείας +τοῦ +αἰῶνος +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Βλέπετε +μή +τις +ὑμᾶς +πλανήσῃ +γάρ +πολλοί +ἐλεύσονται +ἐπί +τῷ +ὀνόματι +μου +λέγοντες +Ἐγώ +εἰμι +ὁ +Χριστός +καί +πολλούς +πλανήσουσιν +δέ +μελλήσετε +ἀκούειν +πολέμους +καί +ἀκοάς +πολέμων +ὁρᾶτε +μή +θροεῖσθε +γάρ +δεῖ +γενέσθαι +ἀλλ’ +οὔπω +ἐστίν +τό +τέλος +γάρ +ἐγερθήσεται +ἔθνος +ἐπί +ἔθνος +καί +βασιλεία +ἐπί +βασιλείαν +καί +ἔσονται +λιμοί +καί +σεισμοί +κατά +τόπους +δέ +πάντα +ταῦτα +ἀρχή +ὠδίνων +τότε +παραδώσουσιν +ὑμᾶς +εἰς +θλῖψιν +καί +ἀποκτενοῦσιν +ὑμᾶς +καί +ἔσεσθε +μισούμενοι +ὑπό +πάντων +τῶν +ἐθνῶν +διά +τό +ὄνομα +μου +καί +τότε +σκανδαλισθήσονται +πολλοί +καί +ἀλλήλους +παραδώσουσιν +καί +μισήσουσιν +ἀλλήλους +καί +πολλοί +ψευδοπροφῆται +ἐγερθήσονται +καί +πλανήσουσιν +πολλούς +καί +διά +τό +πληθυνθῆναι +τήν +ἀνομίαν +ψυγήσεται +ἡ +ἀγάπη +τῶν +πολλῶν +δέ +ὁ +ὑπομείνας +εἰς +τέλος +οὗτος +σωθήσεται +καί +κηρυχθήσεται +τοῦτο +τό +εὐαγγέλιον +τῆς +βασιλείας +ἐν +ὅλῃ +τῇ +οἰκουμένῃ +εἰς +μαρτύριον +πᾶσιν +τοῖς +ἔθνεσιν +καί +τότε +ἥξει +τό +τέλος +οὖν +Ὅταν +ἴδητε +τό +βδέλυγμα +τῆς +ἐρημώσεως +τό +ῥηθέν +διά +Δανιήλ +τοῦ +προφήτου +ἑστός +ἐν +τόπῳ +ἁγίῳ +ὁ +ἀναγινώσκων +νοείτω +τότε +οἱ +ἐν +τῇ +Ἰουδαίᾳ +φευγέτωσαν +εἰς +τά +ὄρη +ὁ +ἐπί +τοῦ +δώματος +μή +καταβάτω +ἆραι +τά +ἐκ +τῆς +οἰκίας +αὐτοῦ +καί +ὁ +ἐν +τῷ +ἀγρῷ +μή +ἐπιστρεψάτω +ὀπίσω +ἆραι +τό +ἱμάτιον +αὐτοῦ +δέ +οὐαί +ταῖς +ἐν +γαστρί +ἐχούσαις +καί +ταῖς +θηλαζούσαις +ἐν +ἐκείναις +ταῖς +ἡμέραις +δέ +προσεύχεσθε +ἵνα +μή +γένηται +ἡ +φυγή +ὑμῶν +χειμῶνος +μηδέ +σαββάτῳ +γάρ +ἔσται +τότε +θλῖψις +μεγάλη +οἵα +οὐ +γέγονεν +ἀπ’ +ἀρχῆς +κόσμου +ἕως +τοῦ +νῦν +οὐδ’ +οὐ +μή +γένηται +καί +εἰ +μή +ἐκολοβώθησαν +αἱ +ἡμέραι +ἐκεῖναι +ἄν +οὐκ +ἐσώθη +πᾶσα +σάρξ +δέ +διά +τούς +ἐκλεκτούς +κολοβωθήσονται +αἱ +ἡμέραι +ἐκεῖναι +ἐάν +τότε +τις +ὑμῖν +εἴπῃ +Ἰδού +ὧδε +ὁ +Χριστός +ἤ +Ὧδε +μή +πιστεύσητε +γάρ +ἐγερθήσονται +ψευδόχριστοι +καί +ψευδοπροφῆται +καί +δώσουσιν +σημεῖα +μεγάλα +καί +τέρατα +ὥστε +πλανῆσαι +εἰ +δυνατόν +καί +τούς +ἐκλεκτούς +ἰδού +προείρηκα +ὑμῖν +οὖν +ἐάν +εἴπωσιν +ὑμῖν +Ἰδού +ἐν +τῇ +ἐρήμῳ +ἐστίν +μή +ἐξέλθητε +Ἰδού +ἐν +τοῖς +ταμείοις +μή +πιστεύσητε +γάρ +ὥσπερ +ἡ +ἀστραπή +ἐξέρχεται +ἀπό +ἀνατολῶν +καί +φαίνεται +ἕως +δυσμῶν +οὕτως +ἔσται +ἡ +παρουσία +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἐάν +ὅπου +ᾖ +τό +πτῶμα +ἐκεῖ +συναχθήσονται +οἱ +ἀετοί +δέ +Εὐθέως +μετά +τήν +θλῖψιν +τῶν +ἡμερῶν +ἐκείνων +ὁ +ἥλιος +σκοτισθήσεται +καί +ἡ +σελήνη +οὐ +δώσει +τό +φέγγος +αὐτῆς +καί +οἱ +ἀστέρες +πεσοῦνται +ἀπό +τοῦ +οὐρανοῦ +καί +αἱ +δυνάμεις +τῶν +οὐρανῶν +σαλευθήσονται +καί +τότε +φανήσεται +τό +σημεῖον +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἐν +οὐρανῷ +καί +τότε +κόψονται +πᾶσαι +αἱ +φυλαί +τῆς +γῆς +καί +ὄψονται +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐπί +τῶν +νεφελῶν +τοῦ +οὐρανοῦ +μετά +δυνάμεως +καί +δόξης +πολλῆς +καί +ἀποστελεῖ +τούς +ἀγγέλους +αὐτοῦ +μετά +σάλπιγγος +μεγάλης +καί +ἐπισυνάξουσιν +τούς +ἐκλεκτούς +αὐτοῦ +ἐκ +τῶν +τεσσάρων +ἀνέμων +ἀπ’ +ἄκρων +οὐρανῶν +ἕως +ἄκρων +αὐτῶν +δέ +Ἀπό +τῆς +συκῆς +μάθετε +τήν +παραβολήν +ὅταν +ἤδη +ὁ +κλάδος +αὐτῆς +γένηται +ἁπαλός +καί +τά +φύλλα +ἐκφύῃ +γινώσκετε +ὅτι +ἐγγύς +τό +θέρος +οὕτως +καί +ὑμεῖς +ὅταν +ἴδητε +πάντα +ταῦτα +γινώσκετε +ὅτι +ἐγγύς +ἐστιν +ἐπί +θύραις +ἀμήν +λέγω +ὑμῖν +ὅτι +οὐ +μή +παρέλθῃ +ἡ +γενεά +αὕτη +ἕως +ἄν +πάντα +ταῦτα +γένηται +ὁ +οὐρανός +καί +ἡ +γῆ +παρελεύσεται +δέ +οἱ +λόγοι +μου +οὐ +μή +παρέλθωσιν +δέ +Περί +τῆς +ἡμέρας +καί +ὥρας +ἐκείνης +οὐδείς +οἶδεν +οὐδέ +οἱ +ἄγγελοι +τῶν +οὐρανῶν +οὐδέ +ὁ +Υἱός +εἰ +μή +ὁ +Πατήρ +μόνος +γάρ +ὥσπερ +αἱ +ἡμέραι +τοῦ +Νῶε +οὕτως +ἔσται +ἡ +παρουσία +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +γάρ +ὡς +ἐν +ταῖς +ἡμέραις +ἐκείναις +ταῖς +πρό +τοῦ +κατακλυσμοῦ +ἦσαν +τρώγοντες +καί +πίνοντες +γαμοῦντες +καί +γαμίζοντες +ἄχρι +ἧς +ἡμέρας +εἰσῆλθεν +Νῶε +εἰς +τήν +κιβωτόν +καί +οὐκ +ἔγνωσαν +ἕως +ἦλθεν +ὁ +κατακλυσμός +καί +ἦρεν +ἅπαντας +οὕτως +ἔσται +καί +ἡ +παρουσία +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +τότε +ἔσονται +δύο +ἐν +τῷ +ἀγρῷ +εἷς +παραλαμβάνεται +καί +εἷς +ἀφίεται +δύο +ἀλήθουσαι +ἐν +τῷ +μύλῳ +μία +παραλαμβάνεται +καί +μία +ἀφίεται +οὖν +γρηγορεῖτε +ὅτι +οὐκ +οἴδατε +ποίᾳ +ἡμέρᾳ +ὁ +κύριος +ὑμῶν +ἔρχεται +δέ +ἐκεῖνο +γινώσκετε +ὅτι +εἰ +ᾔδει +ὁ +οἰκοδεσπότης +ποίᾳ +φυλακῇ +ὁ +κλέπτης +ἔρχεται +ἄν +ἐγρηγόρησεν +καί +ἄν +οὐκ +εἴασεν +διορυχθῆναι +τήν +οἰκίαν +αὐτοῦ +διά +τοῦτο +καί +ὑμεῖς +γίνεσθε +ἕτοιμοι +ὅτι +ᾗ +οὐ +δοκεῖτε +ὥρᾳ +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἔρχεται +ἄρα +Τίς +ἐστίν +ὁ +πιστός +καί +φρόνιμος +δοῦλος +ὅν +κατέστησεν +ὁ +κύριος +ἐπί +τῆς +οἰκετείας +αὐτοῦ +τοῦ +δοῦναι +αὐτοῖς +τήν +τροφήν +ἐν +καιρῷ +μακάριος +ὁ +δοῦλος +ἐκεῖνος +ὅν +οὕτως +ποιοῦντα +ἐλθών +ὁ +κύριος +αὐτοῦ +εὑρήσει +ἀμήν +λέγω +ὑμῖν +ὅτι +ἐπί +πᾶσιν +τοῖς +ὑπάρχουσιν +αὐτοῦ +καταστήσει +αὐτόν +δέ +ἐάν +εἴπῃ +ὁ +κακός +δοῦλος +ἐκεῖνος +ἐν +τῇ +καρδίᾳ +αὐτοῦ +Χρονίζει +μου +ὁ +κύριος +καί +ἄρξηται +τύπτειν +τούς +συνδούλους +αὐτοῦ +δέ +ἐσθίῃ +καί +πίνῃ +μετά +τῶν +μεθυόντων +ἥξει +ὁ +κύριος +τοῦ +δούλου +ἐκείνου +ἐν +ἡμέρᾳ +ᾗ +οὐ +προσδοκᾷ +καί +ἐν +ὥρᾳ +ᾗ +οὐ +γινώσκει +καί +διχοτομήσει +αὐτόν +καί +τό +μέρος +αὐτοῦ +μετά +τῶν +ὑποκριτῶν +θήσει +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +Τότε +ὁμοιωθήσεται +ἡ +βασιλεία +τῶν +οὐρανῶν +δέκα +παρθένοις +αἵτινες +λαβοῦσαι +τάς +λαμπάδας +ἑαυτῶν +ἐξῆλθον +εἰς +ὑπάντησιν +τοῦ +νυμφίου +δέ +πέντε +ἐξ +αὐτῶν +ἦσαν +μωραί +καί +πέντε +φρόνιμοι +γάρ +αἱ +μωραί +λαβοῦσαι +τάς +λαμπάδας +οὐκ +ἔλαβον +μεθ’ +ἑαυτῶν +ἔλαιον +δέ +αἱ +φρόνιμοι +ἔλαβον +ἔλαιον +ἐν +τοῖς +ἀγγείοις +μετά +τῶν +λαμπάδων +ἑαυτῶν +δέ +χρονίζοντος +τοῦ +νυμφίου +ἐνύσταξαν +πᾶσαι +καί +ἐκάθευδον +δέ +μέσης +νυκτός +κραυγή +γέγονεν +Ἰδού +ὁ +νυμφίος +ἐξέρχεσθε +εἰς +ἀπάντησιν +τότε +ἠγέρθησαν +πᾶσαι +αἱ +παρθένοι +ἐκεῖναι +καί +ἐκόσμησαν +τάς +λαμπάδας +ἑαυτῶν +δέ +αἱ +μωραί +ταῖς +φρονίμοις +εἶπαν +Δότε +ἡμῖν +ἐκ +τοῦ +ἐλαίου +ὑμῶν +ὅτι +αἱ +λαμπάδες +ἡμῶν +σβέννυνται +δέ +ἀπεκρίθησαν +αἱ +φρόνιμοι +λέγουσαι +Μή +ποτε +οὐ +μή +ἀρκέσῃ +ἡμῖν +καί +ὑμῖν +πορεύεσθε +μᾶλλον +πρός +τούς +πωλοῦντας +καί +ἀγοράσατε +ἑαυταῖς +δέ +ἀπερχομένων +αὐτῶν +ἀγοράσαι +ἦλθεν +ὁ +νυμφίος +καί +αἱ +ἕτοιμοι +εἰσῆλθον +μετ’ +αὐτοῦ +εἰς +τούς +γάμους +καί +ἐκλείσθη +ἡ +θύρα +δέ +ὕστερον +ἔρχονται +καί +αἱ +λοιπαί +παρθένοι +λέγουσαι +Κύριε +κύριε +ἄνοιξον +ἡμῖν +δέ +ὁ +ἀποκριθείς +εἶπεν +Ἀμήν +λέγω +ὑμῖν +οὐκ +οἶδα +ὑμᾶς +οὖν +Γρηγορεῖτε +ὅτι +οὐκ +οἴδατε +τήν +ἡμέραν +οὐδέ +τήν +ὥραν +γάρ +Ὥσπερ +ἄνθρωπος +ἀποδημῶν +ἐκάλεσεν +τούς +ἰδίους +δούλους +καί +παρέδωκεν +αὐτοῖς +τά +ὑπάρχοντα +αὐτοῦ +καί +μέν +ᾧ +ἔδωκεν +πέντε +τάλαντα +δέ +ᾧ +δύο +δέ +ᾧ +ἕν +ἑκάστῳ +κατά +τήν +ἰδίαν +δύναμιν +καί +ἀπεδήμησεν +Εὐθέως +πορευθείς +ὁ +τά +πέντε +τάλαντα +λαβών +ἠργάσατο +ἐν +αὐτοῖς +καί +ἐκέρδησεν +ἄλλα +πέντε +ὡσαύτως +ὁ +τά +δύο +ἐκέρδησεν +ἄλλα +δύο +δέ +ὁ +τό +ἕν +λαβών +ἀπελθών +ὤρυξεν +γῆν +καί +ἔκρυψεν +τό +ἀργύριον +τοῦ +κυρίου +αὐτοῦ +δέ +μετά +πολύν +χρόνον +ἔρχεται +ὁ +κύριος +τῶν +δούλων +ἐκείνων +καί +συναίρει +λόγον +μετ’ +αὐτῶν +καί +προσελθών +ὁ +τά +πέντε +τάλαντα +λαβών +προσήνεγκεν +ἄλλα +πέντε +τάλαντα +λέγων +Κύριε +πέντε +τάλαντα +μοι +παρέδωκας +ἴδε +ἄλλα +πέντε +τάλαντα +ἐκέρδησα +ἔφη +αὐτῷ +ὁ +κύριος +αὐτοῦ +Εὖ +δοῦλε +ἀγαθέ +καί +πιστέ +ἐπί +ὀλίγα +ἦς +πιστός +ἐπί +πολλῶν +σε +καταστήσω +εἴσελθε +εἰς +τήν +χαράν +τοῦ +κυρίου +σου +προσελθών +καί +ὁ +τά +δύο +τάλαντα +εἶπεν +Κύριε +δύο +τάλαντα +μοι +παρέδωκας +ἴδε +ἄλλα +δύο +τάλαντα +ἐκέρδησα +ἔφη +αὐτῷ +ὁ +κύριος +αὐτοῦ +Εὖ +δοῦλε +ἀγαθέ +καί +πιστέ +ἐπί +ὀλίγα +ἦς +πιστός +ἐπί +πολλῶν +σε +καταστήσω +εἴσελθε +εἰς +τήν +χαράν +τοῦ +κυρίου +σου +δέ +προσελθών +καί +ὁ +τό +ἕν +τάλαντον +εἰληφώς +εἶπεν +Κύριε +ἔγνων +σε +ὅτι +εἶ +σκληρός +ἄνθρωπος +θερίζων +ὅπου +οὐκ +ἔσπειρας +καί +συνάγων +ὅθεν +οὐ +διεσκόρπισας +καί +φοβηθείς +ἀπελθών +ἔκρυψα +τό +τάλαντον +σου +ἐν +τῇ +γῇ +ἴδε +ἔχεις +τό +σόν +δέ +ἀποκριθείς +ὁ +κύριος +αὐτοῦ +εἶπεν +αὐτῷ +δοῦλε +Πονηρέ +καί +ὀκνηρέ +ᾔδεις +ὅτι +θερίζω +ὅπου +οὐκ +ἔσπειρα +καί +συνάγω +ὅθεν +οὐ +διεσκόρπισα +οὖν +ἔδει +σε +βαλεῖν +τά +ἀργύρια +μου +τοῖς +τραπεζείταις +καί +ἄν +ἐλθών +ἐγώ +ἐκομισάμην +τό +ἐμόν +σύν +τόκῳ +οὖν +ἄρατε +ἀπ’ +αὐτοῦ +τό +τάλαντον +καί +δότε +τῷ +ἔχοντι +τά +δέκα +τάλαντα +γάρ +τῷ +ἔχοντι +παντί +δοθήσεται +καί +περισσευθήσεται +δέ +τοῦ +μή +ἔχοντος +καί +ὅ +ἔχει +ἀρθήσεται +ἀπ’ +αὐτοῦ +καί +τόν +ἀχρεῖον +δοῦλον +ἐκβάλετε +εἰς +τό +σκότος +τό +ἐξώτερον +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +δέ +Ὅταν +ἔλθῃ +ὁ +υἱός +τοῦ +ἀνθρώπου +ἐν +τῇ +δόξῃ +αὐτοῦ +καί +πάντες +οἱ +ἄγγελοι +μετ’ +αὐτοῦ +τότε +καθίσει +ἐπί +θρόνου +δόξης +αὐτοῦ +καί +συναχθήσονται +ἔμπροσθεν +αὐτοῦ +πάντα +τά +ἔθνη +καί +ἀφορίσει +αὐτούς +ἀπ’ +ἀλλήλων +ὥσπερ +ὁ +ποιμήν +ἀφορίζει +τά +πρόβατα +ἀπό +τῶν +ἐρίφων +καί +μέν +στήσει +τά +πρόβατα +ἐκ +δεξιῶν +αὐτοῦ +δέ +τά +ἐρίφια +ἐξ +εὐωνύμων +τότε +ἐρεῖ +ὁ +Βασιλεύς +τοῖς +ἐκ +δεξιῶν +αὐτοῦ +Δεῦτε +οἱ +εὐλογημένοι +τοῦ +Πατρός +μου +κληρονομήσατε +τήν +ἡτοιμασμένην +ὑμῖν +ἀπό +καταβολῆς +κόσμου +βασιλείαν +γάρ +ἐπείνασα +καί +ἐδώκατε +μοι +φαγεῖν +ἐδίψησα +καί +ἐποτίσατε +με +ξένος +ἤμην +καί +συνηγάγετε +με +γυμνός +καί +περιεβάλετε +με +ἠσθένησα +καί +ἐπεσκέψασθε +με +ἐν +φυλακῇ +ἤμην +καί +ἤλθατε +πρός +με +τότε +ἀποκριθήσονται +αὐτῷ +οἱ +δίκαιοι +λέγοντες +Κύριε +πότε +εἴδομεν +σε +πεινῶντα +καί +ἐθρέψαμεν +ἤ +διψῶντα +καί +ἐποτίσαμεν +δέ +πότε +εἴδομεν +σε +ξένον +καί +συνηγάγομεν +ἤ +γυμνόν +καί +περιεβάλομεν +δέ +πότε +εἴδομεν +σε +ἀσθενοῦντα +ἤ +ἐν +φυλακῇ +καί +ἤλθομεν +πρός +σε +καί +ἀποκριθείς +ὁ +Βασιλεύς +ἐρεῖ +αὐτοῖς +Ἀμήν +λέγω +ὑμῖν +ἐφ’ +ὅσον +ἐποιήσατε +ἑνί +τούτων +τῶν +ἀδελφῶν +μου +τῶν +ἐλαχίστων +ἐμοί +ἐποιήσατε +τότε +ἐρεῖ +καί +τοῖς +ἐξ +εὐωνύμων +κατηραμένοι +Πορεύεσθε +ἀπ’ +ἐμοῦ +εἰς +τό +πῦρ +τό +αἰώνιον +τό +ἡτοιμασμένον +τῷ +διαβόλῳ +καί +τοῖς +ἀγγέλοις +αὐτοῦ +γάρ +ἐπείνασα +καί +οὐκ +ἐδώκατε +μοι +φαγεῖν +ἐδίψησα +καί +οὐκ +ἐποτίσατε +με +ξένος +ἤμην +καί +οὐ +συνηγάγετε +με +γυμνός +καί +οὐ +περιεβάλετε +με +ἀσθενής +καί +ἐν +φυλακῇ +καί +οὐκ +ἐπεσκέψασθε +με +τότε +ἀποκριθήσονται +καί +αὐτοί +λέγοντες +Κύριε +πότε +εἴδομεν +σε +πεινῶντα +ἤ +διψῶντα +ἤ +ξένον +ἤ +γυμνόν +ἤ +ἀσθενῆ +ἤ +ἐν +φυλακῇ +καί +οὐ +διηκονήσαμεν +σοι +τότε +ἀποκριθήσεται +αὐτοῖς +λέγων +Ἀμήν +λέγω +ὑμῖν +ἐφ’ +ὅσον +οὐκ +ἐποιήσατε +ἑνί +τούτων +τῶν +ἐλαχίστων +οὐδέ +ἐμοί +ἐποιήσατε +καί +ἀπελεύσονται +οὗτοι +εἰς +κόλασιν +αἰώνιον +δέ +οἱ +δίκαιοι +εἰς +ζωήν +αἰώνιον +Καί +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +πάντας +τούς +λόγους +τούτους +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +Οἴδατε +ὅτι +μετά +δύο +ἡμέρας +τό +πάσχα +γίνεται +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδίδοται +εἰς +τό +σταυρωθῆναι +Τότε +συνήχθησαν +οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +τοῦ +λαοῦ +εἰς +τήν +αὐλήν +τοῦ +ἀρχιερέως +τοῦ +λεγομένου +Καϊάφα +καί +συνεβουλεύσαντο +ἵνα +τόν +Ἰησοῦν +δόλῳ +κρατήσωσιν +καί +ἀποκτείνωσιν +δέ +ἔλεγον +Μή +ἐν +τῇ +ἑορτῇ +ἵνα +μή +θόρυβος +γένηται +ἐν +τῷ +λαῷ +δέ +Τοῦ +Ἰησοῦ +γενομένου +ἐν +Βηθανίᾳ +ἐν +οἰκίᾳ +Σίμωνος +τοῦ +λεπροῦ +προσῆλθεν +αὐτῷ +γυνή +ἔχουσα +ἀλάβαστρον +μύρου +βαρυτίμου +καί +κατέχεεν +ἐπί +τῆς +κεφαλῆς +αὐτοῦ +ἀνακειμένου +δέ +ἰδόντες +οἱ +μαθηταί +ἠγανάκτησαν +λέγοντες +Εἰς +τί +ἡ +ἀπώλεια +αὕτη +γάρ +ἐδύνατο +τοῦτο +πραθῆναι +πολλοῦ +καί +δοθῆναι +πτωχοῖς +δέ +γνούς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Τί +κόπους +παρέχετε +τῇ +γυναικί +γάρ +ἔργον +καλόν +ἠργάσατο +εἰς +ἐμέ +γάρ +πάντοτε +τούς +πτωχούς +ἔχετε +μεθ’ +ἑαυτῶν +δέ +ἐμέ +οὐ +πάντοτε +ἔχετε +γάρ +αὕτη +βαλοῦσα +τό +μύρον +τοῦτο +ἐπί +τοῦ +σώματος +μου +πρός +τό +ἐνταφιάσαι +με +ἐποίησεν +ἀμήν +λέγω +ὑμῖν +ἐάν +ὅπου +κηρυχθῇ +τό +εὐαγγέλιον +τοῦτο +ἐν +ὅλῳ +τῷ +κόσμῳ +λαληθήσεται +καί +ὅ +ἐποίησεν +αὕτη +εἰς +μνημόσυνον +αὐτῆς +Τότε +εἷς +τῶν +δώδεκα +ὁ +λεγόμενος +Ἰούδας +Ἰσκαριώτης +πορευθείς +πρός +τούς +ἀρχιερεῖς +εἶπεν +θέλετε +Τί +μοι +δοῦναι +κἀγώ +ὑμῖν +παραδώσω +αὐτόν +δέ +οἱ +ἔστησαν +αὐτῷ +τριάκοντα +ἀργύρια +καί +ἀπό +τότε +ἐζήτει +εὐκαιρίαν +ἵνα +αὐτόν +παραδῷ +δέ +Τῇ +πρώτῃ +τῶν +ἀζύμων +προσῆλθον +οἱ +μαθηταί +τῷ +Ἰησοῦ +λέγοντες +θέλεις +Ποῦ +ἑτοιμάσωμεν +σοι +φαγεῖν +τό +πάσχα +δέ +ὁ +εἶπεν +Ὑπάγετε +εἰς +τήν +πόλιν +πρός +τόν +δεῖνα +καί +εἴπατε +αὐτῷ +Ὁ +Διδάσκαλος +λέγει +Ὁ +καιρός +μου +ἐγγύς +ἐστιν +πρός +σέ +ποιῶ +τό +πάσχα +μετά +τῶν +μαθητῶν +μου +καί +ἐποίησαν +οἱ +μαθηταί +ὡς +συνέταξεν +αὐτοῖς +ὁ +Ἰησοῦς +καί +ἡτοίμασαν +τό +πάσχα +δέ +Ὀψίας +γενομένης +ἀνέκειτο +μετά +τῶν +δώδεκα +μαθητῶν +καί +ἐσθιόντων +αὐτῶν +εἶπεν +Ἀμήν +λέγω +ὑμῖν +ὅτι +εἷς +ἐξ +ὑμῶν +παραδώσει +με +καί +λυπούμενοι +σφόδρα +ἤρξαντο +λέγειν +αὐτῷ +εἷς +ἕκαστος +Μήτι +ἐγώ +εἰμι +Κύριε +δέ +ὁ +ἀποκριθείς +εἶπεν +Ὁ +ἐμβάψας +μετ’ +ἐμοῦ +τήν +χεῖρα +ἐν +τῷ +τρυβλίῳ +οὗτος +με +παραδώσει +μέν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ὑπάγει +καθώς +γέγραπται +περί +αὐτοῦ +δέ +οὐαί +τῷ +ἀνθρώπῳ +ἐκείνῳ +δι’ +οὗ +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδίδοται +καλόν +ἦν +αὐτῷ +εἰ +οὐκ +ἐγεννήθη +ὁ +ἄνθρωπος +ἐκεῖνος +δέ +ἀποκριθείς +Ἰούδας +ὁ +παραδιδούς +αὐτόν +εἶπεν +Μήτι +ἐγώ +εἰμι +Ῥαββεί +λέγει +αὐτῷ +Σύ +εἶπας +δέ +Ἐσθιόντων +αὐτῶν +ὁ +Ἰησοῦς +λαβών +ἄρτον +καί +εὐλογήσας +ἔκλασεν +καί +δούς +τοῖς +μαθηταῖς +εἶπεν +Λάβετε +φάγετε +τοῦτο +ἐστιν +τό +σῶμα +μου +καί +λαβών +ποτήριον +καί +εὐχαριστήσας +ἔδωκεν +αὐτοῖς +λέγων +Πίετε +ἐξ +αὐτοῦ +πάντες +γάρ +τοῦτο +ἐστιν +τό +αἷμα +μου +τῆς +διαθήκης +τό +περί +πολλῶν +ἐκχυννόμενον +εἰς +ἄφεσιν +ἁμαρτιῶν +δέ +λέγω +ὑμῖν +οὐ +μή +πίω +ἀπ’ +ἄρτι +ἐκ +τούτου +τοῦ +γενήματος +τῆς +ἀμπέλου +ἕως +τῆς +ἡμέρας +ἐκείνης +ὅταν +αὐτό +πίνω +μεθ’ +ὑμῶν +καινόν +ἐν +τῇ +βασιλείᾳ +τοῦ +Πατρός +μου +Καί +ὑμνήσαντες +ἐξῆλθον +εἰς +τό +ὄρος +τῶν +Ἐλαιῶν +Τότε +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Πάντες +ὑμεῖς +σκανδαλισθήσεσθε +ἐν +ἐμοί +ἐν +τῇ +νυκτί +ταύτῃ +γάρ +γέγραπται +Πατάξω +τόν +ποιμένα +καί +διασκορπισθήσονται +τά +πρόβατα +τῆς +ποίμνης +δέ +μετά +τό +ἐγερθῆναι +με +προάξω +ὑμᾶς +εἰς +τήν +Γαλιλαίαν +δέ +ἀποκριθείς +ὁ +Πέτρος +εἶπεν +αὐτῷ +Εἰ +πάντες +σκανδαλισθήσονται +ἐν +σοί +ἐγώ +οὐδέποτε +σκανδαλισθήσομαι +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Ἀμήν +λέγω +σοι +ὅτι +ἐν +ταύτῃ +τῇ +νυκτί +πρίν +ἀλέκτορα +φωνῆσαι +τρίς +ἀπαρνήσῃ +με +λέγει +αὐτῷ +ὁ +Πέτρος +Κἄν +δέῃ +με +σύν +σοί +ἀποθανεῖν +οὐ +μή +σε +ἀπαρνήσομαι +ὁμοίως +καί +πάντες +οἱ +μαθηταί +εἶπαν +Τότε +ἔρχεται +μετ’ +αὐτῶν +ὁ +Ἰησοῦς +εἰς +χωρίον +λεγόμενον +Γεθσημανεί +καί +λέγει +τοῖς +μαθηταῖς +Καθίσατε +αὐτοῦ +ἕως +οὗ +ἀπελθών +ἐκεῖ +προσεύξωμαι +καί +παραλαβών +τόν +Πέτρον +καί +τούς +δύο +υἱούς +Ζεβεδαίου +ἤρξατο +λυπεῖσθαι +καί +ἀδημονεῖν +τότε +λέγει +αὐτοῖς +Περίλυπος +ἐστιν +ἡ +ψυχή +μου +ἕως +θανάτου +μείνατε +ὧδε +καί +γρηγορεῖτε +μετ’ +ἐμοῦ +καί +προελθών +μικρόν +ἔπεσεν +ἐπί +πρόσωπον +αὐτοῦ +προσευχόμενος +καί +λέγων +Πάτερ +μου +εἰ +δυνατόν +ἐστιν +παρελθάτω +ἀπ’ +ἐμοῦ +τό +ποτήριον +τοῦτο +πλήν +οὐχ +ὡς +ἐγώ +θέλω +ἀλλ’ +ὡς +σύ +καί +ἔρχεται +πρός +τούς +μαθητάς +καί +εὑρίσκει +αὐτούς +καθεύδοντας +καί +λέγει +τῷ +Πέτρῳ +Οὕτως +οὐκ +ἰσχύσατε +μίαν +ὥραν +γρηγορῆσαι +μετ’ +ἐμοῦ +γρηγορεῖτε +καί +προσεύχεσθε +ἵνα +μή +εἰσέλθητε +εἰς +πειρασμόν +μέν +τό +πνεῦμα +πρόθυμον +δέ +ἡ +σάρξ +ἀσθενής +πάλιν +ἐκ +δευτέρου +ἀπελθών +προσηύξατο +λέγων +Πάτερ +μου +εἰ +οὐ +δύναται +τοῦτο +παρελθεῖν +ἐάν +μή +αὐτό +πίω +γενηθήτω +τό +θέλημα +σου +καί +ἐλθών +πάλιν +εὗρεν +αὐτούς +καθεύδοντας +γάρ +ἦσαν +βεβαρημένοι +αὐτῶν +οἱ +ὀφθαλμοί +καί +ἀφείς +αὐτούς +πάλιν +ἀπελθών +προσηύξατο +ἐκ +τρίτου +τόν +αὐτόν +λόγον +εἰπών +πάλιν +τότε +ἔρχεται +πρός +τούς +μαθητάς +καί +λέγει +αὐτοῖς +Καθεύδετε +λοιπόν +καί +ἀναπαύεσθε +ἰδού +ἤγγικεν +ἡ +ὥρα +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδίδοται +εἰς +χεῖρας +ἁμαρτωλῶν +ἐγείρεσθε +ἄγωμεν +ἰδού +ἤγγικεν +ὁ +παραδιδούς +με +Καί +ἔτι +αὐτοῦ +λαλοῦντος +ἰδού +Ἰούδας +εἷς +τῶν +δώδεκα +ἦλθεν +καί +μετ’ +αὐτοῦ +ὄχλος +πολύς +μετά +μαχαιρῶν +καί +ξύλων +ἀπό +τῶν +ἀρχιερέων +καί +πρεσβυτέρων +τοῦ +λαοῦ +δέ +ὁ +παραδιδούς +αὐτόν +ἔδωκεν +αὐτοῖς +σημεῖον +λέγων +ἄν +Ὅν +φιλήσω +αὐτός +ἐστιν +κρατήσατε +αὐτόν +καί +εὐθέως +προσελθών +τῷ +Ἰησοῦ +εἶπεν +Χαῖρε +Ῥαββεί +καί +κατεφίλησεν +αὐτόν +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἑταῖρε +ἐφ’ +ὅ +πάρει +τότε +προσελθόντες +ἐπέβαλον +τάς +χεῖρας +ἐπί +τόν +Ἰησοῦν +καί +ἐκράτησαν +αὐτόν +καί +ἰδού +εἷς +τῶν +μετά +Ἰησοῦ +ἐκτείνας +τήν +χεῖρα +ἀπέσπασεν +τήν +μάχαιραν +αὐτοῦ +καί +πατάξας +τόν +δοῦλον +τοῦ +ἀρχιερέως +ἀφεῖλεν +αὐτοῦ +τό +ὠτίον +τότε +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἀπόστρεψον +τήν +μάχαιραν +σου +εἰς +τόν +τόπον +αὐτῆς +γάρ +πάντες +οἱ +λαβόντες +μάχαιραν +ἐν +μαχαίρῃ +ἀπολοῦνται +ἤ +δοκεῖς +ὅτι +οὐ +δύναμαι +παρακαλέσαι +τόν +Πατέρα +μου +καί +παραστήσει +μοι +ἄρτι +πλείω +δώδεκα +λεγιῶνας +ἀγγέλων +οὖν +πῶς +πληρωθῶσιν +αἱ +γραφαί +ὅτι +οὕτως +δεῖ +γενέσθαι +Ἐν +ἐκείνῃ +τῇ +ὥρᾳ +εἶπεν +ὁ +Ἰησοῦς +τοῖς +ὄχλοις +Ὡς +ἐπί +λῃστήν +ἐξήλθατε +μετά +μαχαιρῶν +καί +ξύλων +συλλαβεῖν +με +καθ’ +ἡμέραν +ἐν +τῷ +ἱερῷ +ἐκαθεζόμην +διδάσκων +καί +οὐκ +ἐκρατήσατε +με +δέ +Τοῦτο +ὅλον +γέγονεν +ἵνα +πληρωθῶσιν +αἱ +γραφαί +τῶν +προφητῶν +Τότε +οἱ +μαθηταί +πάντες +ἀφέντες +αὐτόν +ἔφυγον +δέ +Οἱ +κρατήσαντες +τόν +Ἰησοῦν +ἀπήγαγον +πρός +Καϊάφαν +τόν +ἀρχιερέα +ὅπου +οἱ +γραμματεῖς +καί +οἱ +πρεσβύτεροι +συνήχθησαν +δέ +ὁ +Πέτρος +ἠκολούθει +αὐτῷ +ἀπό +μακρόθεν +ἕως +τῆς +αὐλῆς +τοῦ +ἀρχιερέως +καί +εἰσελθών +ἔσω +ἐκάθητο +μετά +τῶν +ὑπηρετῶν +ἰδεῖν +τό +τέλος +δέ +Οἱ +ἀρχιερεῖς +καί +τό +συνέδριον +ὅλον +ἐζήτουν +ψευδομαρτυρίαν +κατά +τοῦ +Ἰησοῦ +ὅπως +αὐτόν +θανατώσωσιν +καί +οὐχ +εὗρον +πολλῶν +ψευδομαρτύρων +προσελθόντων +δέ +ὕστερον +προσελθόντες +δύο +εἶπαν +Οὗτος +ἔφη +Δύναμαι +καταλῦσαι +τόν +ναόν +τοῦ +Θεοῦ +καί +διά +τριῶν +ἡμερῶν +οἰκοδομῆσαι +καί +ἀναστάς +ὁ +ἀρχιερεύς +εἶπεν +αὐτῷ +Οὐδέν +ἀποκρίνῃ +τί +οὗτοι +σου +καταμαρτυροῦσιν +δέ +ὁ +Ἰησοῦς +ἐσιώπα +καί +ὁ +ἀρχιερεύς +εἶπεν +αὐτῷ +Ἐξορκίζω +σε +κατά +τοῦ +Θεοῦ +τοῦ +ζῶντος +ἵνα +ἡμῖν +εἴπῃς +εἰ +σύ +εἶ +ὁ +Χριστός +ὁ +Υἱός +τοῦ +Θεοῦ +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Σύ +εἶπας +πλήν +λέγω +ὑμῖν +ἀπ’ +ἄρτι +ὄψεσθε +τόν +Υἱόν +τοῦ +ἀνθρώπου +καθήμενον +ἐκ +δεξιῶν +τῆς +δυνάμεως +καί +ἐρχόμενον +ἐπί +τῶν +νεφελῶν +τοῦ +οὐρανοῦ +τότε +ὁ +ἀρχιερεύς +διέρρηξεν +τά +ἱμάτια +αὐτοῦ +λέγων +Ἐβλασφήμησεν +τί +ἔτι +χρείαν +μαρτύρων +ἔχομεν +ἴδε +νῦν +ἠκούσατε +τήν +βλασφημίαν +τί +ὑμῖν +δοκεῖ +δέ +οἱ +ἀποκριθέντες +εἶπαν +Ἔνοχος +θανάτου +ἐστίν +Τότε +ἐνέπτυσαν +εἰς +τό +πρόσωπον +αὐτοῦ +καί +ἐκολάφισαν +αὐτόν +δέ +οἱ +ἐράπισαν +λέγοντες +Προφήτευσον +ἡμῖν +Χριστέ +τίς +ἐστιν +ὁ +παίσας +σε +δέ +Ὁ +Πέτρος +ἐκάθητο +ἔξω +ἐν +τῇ +αὐλῇ +καί +προσῆλθεν +αὐτῷ +μία +παιδίσκη +λέγουσα +Καί +σύ +ἦσθα +μετά +Ἰησοῦ +τοῦ +Γαλιλαίου +δέ +ὁ +ἠρνήσατο +ἔμπροσθεν +πάντων +λέγων +Οὐκ +οἶδα +τί +λέγεις +δέ +ἐξελθόντα +εἰς +τόν +πυλῶνα +εἶδεν +αὐτόν +ἄλλη +καί +λέγει +τοῖς +ἐκεῖ +Οὗτος +ἦν +μετά +Ἰησοῦ +τοῦ +Ναζωραίου +καί +πάλιν +ἠρνήσατο +μετά +ὅρκου +ὅτι +Οὐκ +οἶδα +τόν +ἄνθρωπον +δέ +μετά +μικρόν +προσελθόντες +οἱ +ἑστῶτες +εἶπον +τῷ +Πέτρῳ +Ἀληθῶς +καί +σύ +ἐξ +αὐτῶν +εἶ +γάρ +καί +ἡ +λαλιά +σου +δῆλον +σε +ποιεῖ +τότε +ἤρξατο +καταθεματίζειν +καί +ὀμνύειν +ὅτι +Οὐκ +οἶδα +τόν +ἄνθρωπον +καί +εὐθύς +ἀλέκτωρ +ἐφώνησεν +καί +ἐμνήσθη +ὁ +Πέτρος +τοῦ +ῥήματος +Ἰησοῦ +εἰρηκότος +ὅτι +Πρίν +ἀλέκτορα +φωνῆσαι +τρίς +ἀπαρνήσῃ +με +καί +ἐξελθών +ἔξω +ἔκλαυσεν +πικρῶς +δέ +Πρωΐας +γενομένης +συμβούλιον +ἔλαβον +πάντες +οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +τοῦ +λαοῦ +κατά +τοῦ +Ἰησοῦ +ὥστε +θανατῶσαι +αὐτόν +καί +δήσαντες +αὐτόν +ἀπήγαγον +καί +παρέδωκαν +Πειλάτῳ +τῷ +ἡγεμόνι +Τότε +Ἰούδας +ὁ +παραδούς +αὐτόν +ἰδών +ὅτι +κατεκρίθη +μεταμεληθείς +ἔστρεψεν +τά +τριάκοντα +ἀργύρια +τοῖς +ἀρχιερεῦσιν +καί +πρεσβυτέροις +λέγων +Ἥμαρτον +παραδούς +αἷμα +ἀθῷον +δέ +οἱ +εἶπαν +Τί +πρός +ἡμᾶς +σύ +ὄψῃ +καί +ῥίψας +τά +ἀργύρια +εἰς +τόν +ναόν +ἀνεχώρησεν +καί +ἀπελθών +ἀπήγξατο +δέ +οἱ +ἀρχιερεῖς +λαβόντες +τά +ἀργύρια +εἶπαν +Οὐκ +ἔξεστιν +βαλεῖν +αὐτά +εἰς +τόν +κορβανᾶν +ἐπεί +τιμή +αἵματος +ἐστιν +δέ +συμβούλιον +λαβόντες +ἠγόρασαν +ἐξ +αὐτῶν +τόν +ἀγρόν +τοῦ +κεραμέως +εἰς +ταφήν +τοῖς +ξένοις +διό +ἐκλήθη +ὁ +ἀγρός +ἐκεῖνος +Ἀγρός +αἵματος +ἕως +τῆς +σήμερον +τότε +ἐπληρώθη +τό +ῥηθέν +διά +Ἱερεμίου +τοῦ +προφήτου +λέγοντος +Καί +ἔλαβον +τά +τριάκοντα +ἀργύρια +τήν +τιμήν +τοῦ +τετιμημένου +ὅν +ἐτιμήσαντο +ἀπό +υἱῶν +Ἰσραήλ +καί +ἔδωκαν +αὐτά +εἰς +τόν +ἀγρόν +τοῦ +κεραμέως +καθά +συνέταξεν +μοι +Κύριος +δέ +Ὁ +Ἰησοῦς +ἐστάθη +ἔμπροσθεν +τοῦ +ἡγεμόνος +καί +ἐπηρώτησεν +αὐτόν +ὁ +ἡγεμών +λέγων +Σύ +εἶ +ὁ +Βασιλεύς +τῶν +Ἰουδαίων +δέ +ὁ +Ἰησοῦς +ἔφη +Σύ +λέγεις +καί +ἐν +τῷ +κατηγορεῖσθαι +αὐτόν +ὑπό +τῶν +ἀρχιερέων +καί +πρεσβυτέρων +οὐδέν +ἀπεκρίνατο +τότε +λέγει +αὐτῷ +ὁ +Πειλᾶτος +Οὐκ +ἀκούεις +πόσα +σου +καταμαρτυροῦσιν +καί +οὐκ +ἀπεκρίθη +αὐτῷ +πρός +οὐδέ +ἕν +ῥῆμα +ὥστε +θαυμάζειν +τόν +ἡγεμόνα +λίαν +δέ +Κατά +ἑορτήν +εἰώθει +ὁ +ἡγεμών +ἀπολύειν +τῷ +ὄχλῳ +ἕνα +δέσμιον +ὅν +ἤθελον +δέ +εἶχον +τότε +δέσμιον +ἐπίσημον +λεγόμενον +Βαραββᾶν +οὖν +συνηγμένων +αὐτῶν +εἶπεν +αὐτοῖς +ὁ +Πειλᾶτος +θέλετε +Τίνα +ἀπολύσω +ὑμῖν +Βαραββᾶν +ἤ +Ἰησοῦν +τόν +λεγόμενον +Χριστόν +γάρ +ᾔδει +ὅτι +διά +φθόνον +παρέδωκαν +αὐτόν +δέ +Καθημένου +αὐτοῦ +ἐπί +τοῦ +βήματος +ἀπέστειλεν +πρός +αὐτόν +ἡ +γυνή +αὐτοῦ +λέγουσα +Μηδέν +σοί +καί +τῷ +δικαίῳ +ἐκείνῳ +γάρ +πολλά +ἔπαθον +σήμερον +κατ’ +ὄναρ +δι’ +αὐτόν +δέ +Οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +ἔπεισαν +τούς +ὄχλους +ἵνα +αἰτήσωνται +τόν +Βαραββᾶν +δέ +τόν +Ἰησοῦν +ἀπολέσωσιν +δέ +ἀποκριθείς +ὁ +ἡγεμών +εἶπεν +αὐτοῖς +θέλετε +Τίνα +ἀπό +τῶν +δύο +ἀπολύσω +ὑμῖν +δέ +οἱ +εἶπαν +Τόν +Βαραββᾶν +λέγει +αὐτοῖς +ὁ +Πειλᾶτος +οὖν +Τί +ποιήσω +Ἰησοῦν +τόν +λεγόμενον +Χριστόν +λέγουσιν +πάντες +Σταυρωθήτω +δέ +ὁ +ἔφη +γάρ +Τί +κακόν +ἐποίησεν +δέ +οἱ +περισσῶς +ἔκραζον +λέγοντες +Σταυρωθήτω +δέ +ὁ +Πειλᾶτος +ἰδών +ὅτι +οὐδέν +ὠφελεῖ +ἀλλά +μᾶλλον +θόρυβος +γίνεται +λαβών +ὕδωρ +ἀπενίψατο +τάς +χεῖρας +κατέναντι +τοῦ +ὄχλου +λέγων +Ἀθῷος +εἰμι +ἀπό +τοῦ +αἵματος +τούτου +ὑμεῖς +ὄψεσθε +καί +ἀποκριθείς +πᾶς +ὁ +λαός +εἶπεν +Τό +αἷμα +αὐτοῦ +ἐφ’ +ἡμᾶς +καί +ἐπί +τά +τέκνα +ἡμῶν +τότε +ἀπέλυσεν +αὐτοῖς +τόν +Βαραββᾶν +δέ +τόν +Ἰησοῦν +φραγελλώσας +παρέδωκεν +ἵνα +σταυρωθῇ +Τότε +οἱ +στρατιῶται +τοῦ +ἡγεμόνος +παραλαβόντες +τόν +Ἰησοῦν +εἰς +τό +πραιτώριον +συνήγαγον +ἐπ’ +αὐτόν +ὅλην +τήν +σπεῖραν +καί +ἐκδύσαντες +αὐτόν +χλαμύδα +κοκκίνην +περιέθηκαν +αὐτῷ +καί +πλέξαντες +στέφανον +ἐξ +ἀκανθῶν +ἐπέθηκαν +ἐπί +τῆς +κεφαλῆς +αὐτοῦ +καί +κάλαμον +ἐν +τῇ +δεξιᾷ +αὐτοῦ +καί +γονυπετήσαντες +ἔμπροσθεν +αὐτοῦ +ἐνέπαιξαν +αὐτῷ +λέγοντες +Χαῖρε +Βασιλεῦ +τῶν +Ἰουδαίων +καί +ἐμπτύσαντες +εἰς +αὐτόν +ἔλαβον +τόν +κάλαμον +καί +ἔτυπτον +εἰς +τήν +κεφαλήν +αὐτοῦ +καί +ὅτε +ἐνέπαιξαν +αὐτῷ +ἐξέδυσαν +αὐτόν +τήν +χλαμύδα +καί +ἐνέδυσαν +αὐτόν +τά +ἱμάτια +αὐτοῦ +καί +ἀπήγαγον +αὐτόν +εἰς +τό +σταυρῶσαι +δέ +Ἐξερχόμενοι +εὗρον +ἄνθρωπον +Κυρηναῖον +ὀνόματι +Σίμωνα +τοῦτον +ἠγγάρευσαν +ἵνα +ἄρῃ +τόν +σταυρόν +αὐτοῦ +Καί +ἐλθόντες +εἰς +τόπον +λεγόμενον +Γολγοθᾶ +ὅ +ἐστιν +λεγόμενος +κρανίου +τόπος +ἔδωκαν +αὐτῷ +πιεῖν +οἶνον +μετά +χολῆς +μεμιγμένον +καί +γευσάμενος +οὐκ +ἠθέλησεν +πιεῖν +δέ +σταυρώσαντες +αὐτόν +διεμερίσαντο +τά +ἱμάτια +αὐτοῦ +βάλλοντες +κλῆρον +καί +καθήμενοι +ἐτήρουν +αὐτόν +ἐκεῖ +καί +ἐπέθηκαν +ἐπάνω +τῆς +κεφαλῆς +αὐτοῦ +τήν +αἰτίαν +αὐτοῦ +γεγραμμένην +ΟΥΤΟΣ +ΕΣΤΙΝ +ΙΗΣΟΥΣ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ +Τότε +σταυροῦνται +σύν +αὐτῷ +δύο +λῃσταί +εἷς +ἐκ +δεξιῶν +καί +εἷς +ἐξ +εὐωνύμων +δέ +Οἱ +παραπορευόμενοι +ἐβλασφήμουν +αὐτόν +κινοῦντες +τάς +κεφαλάς +αὐτῶν +καί +λέγοντες +Ὁ +καταλύων +τόν +ναόν +καί +ἐν +τρισίν +ἡμέραις +οἰκοδομῶν +σῶσον +σεαυτόν +εἰ +εἶ +Υἱός +τοῦ +Θεοῦ +καί +κατάβηθι +ἀπό +τοῦ +σταυροῦ +ὁμοίως +οἱ +ἀρχιερεῖς +ἐμπαίζοντες +μετά +τῶν +γραμματέων +καί +πρεσβυτέρων +ἔλεγον +Ἄλλους +ἔσωσεν +ἑαυτόν +σῶσαι +οὐ +δύναται +Βασιλεύς +Ἰσραήλ +ἐστιν +καταβάτω +νῦν +ἀπό +τοῦ +σταυροῦ +καί +πιστεύσομεν +ἐπ’ +αὐτόν +πέποιθεν +ἐπί +τόν +Θεόν +ῥυσάσθω +νῦν +εἰ +θέλει +αὐτόν +γάρ +εἶπεν +ὅτι +Θεοῦ +Υἱός +εἰμι +δ’ +τό +αὐτό +καί +οἱ +λῃσταί +οἱ +συνσταυρωθέντες +σύν +αὐτῷ +ὠνείδιζον +αὐτόν +δέ +Ἀπό +ἕκτης +ὥρας +σκότος +ἐγένετο +ἐπί +πᾶσαν +τήν +γῆν +ἕως +ὥρας +ἐνάτης +δέ +περί +τήν +ἐνάτην +ὥραν +ἀνεβόησεν +ὁ +Ἰησοῦς +φωνῇ +μεγάλῃ +λέγων +Ἠλεί +Ἠλεί +λεμά +σαβαχθανεί +τοῦτ’ +ἔστιν +Θεέ +μου +θεέ +μου +ἵνα +τί +με +ἐγκατέλιπες +δέ +τινές +τῶν +ἐκεῖ +ἑστηκότων +ἀκούσαντες +ἔλεγον +ὅτι +Ἠλείαν +φωνεῖ +οὗτος +καί +εὐθέως +εἷς +ἐξ +αὐτῶν +δραμών +καί +λαβών +σπόγγον +τε +πλήσας +ὄξους +καί +περιθείς +καλάμῳ +ἐπότιζεν +αὐτόν +δέ +οἱ +λοιποί +εἶπαν +Ἄφες +ἴδωμεν +εἰ +ἔρχεται +Ἠλείας +σώσων +αὐτόν +δέ +ὁ +Ἰησοῦς +πάλιν +κράξας +φωνῇ +μεγάλῃ +ἀφῆκεν +τό +πνεῦμα +Καί +ἰδού +τό +καταπέτασμα +τοῦ +ναοῦ +ἐσχίσθη +ἀπ’ +ἄνωθεν +ἕως +κάτω +εἰς +δύο +καί +ἡ +γῆ +ἐσείσθη +καί +αἱ +πέτραι +ἐσχίσθησαν +καί +τά +μνημεῖα +ἀνεῴχθησαν +καί +πολλά +σώματα +τῶν +κεκοιμημένων +ἁγίων +ἠγέρθησαν +καί +ἐξελθόντες +ἐκ +τῶν +μνημείων +μετά +τήν +ἔγερσιν +αὐτοῦ +εἰσῆλθον +εἰς +τήν +ἁγίαν +πόλιν +καί +ἐνεφανίσθησαν +πολλοῖς +δέ +Ὁ +ἑκατόνταρχος +καί +οἱ +μετ’ +αὐτοῦ +τηροῦντες +τόν +Ἰησοῦν +ἰδόντες +τόν +σεισμόν +καί +τά +γινόμενα +ἐφοβήθησαν +σφόδρα +λέγοντες +Ἀληθῶς +Θεοῦ +Υἱός +ἦν +οὗτος +δέ +Ἦσαν +ἐκεῖ +γυναῖκες +πολλαί +ἀπό +μακρόθεν +θεωροῦσαι +αἵτινες +ἠκολούθησαν +τῷ +Ἰησοῦ +ἀπό +τῆς +Γαλιλαίας +διακονοῦσαι +αὐτῷ +ἐν +αἷς +ἦν +Μαρία +ἡ +Μαγδαληνή +καί +Μαρία +ἡ +τοῦ +Ἰακώβου +καί +Ἰωσήφ +μήτηρ +καί +ἡ +μήτηρ +τῶν +υἱῶν +Ζεβεδαίου +δέ +Ὀψίας +γενομένης +ἦλθεν +ἄνθρωπος +πλούσιος +ἀπό +Ἀριμαθαίας +τοὔνομα +Ἰωσήφ +ὅς +καί +αὐτός +ἐμαθητεύθη +τῷ +Ἰησοῦ +οὗτος +προσελθών +τῷ +Πειλάτῳ +ᾐτήσατο +τό +σῶμα +τοῦ +Ἰησοῦ +τότε +ὁ +Πειλᾶτος +ἐκέλευσεν +ἀποδοθῆναι +καί +λαβών +τό +σῶμα +ὁ +Ἰωσήφ +ἐνετύλιξεν +αὐτό +ἐν +σινδόνι +καθαρᾷ +καί +ἔθηκεν +αὐτό +ἐν +τῷ +καινῷ +αὐτοῦ +μνημείῳ +ὅ +ἐλατόμησεν +ἐν +τῇ +πέτρᾳ +καί +προσκυλίσας +λίθον +μέγαν +τῇ +θύρᾳ +τοῦ +μνημείου +ἀπῆλθεν +δέ +ἐκεῖ +Μαριάμ +ἡ +Μαγδαληνή +καί +ἡ +ἄλλη +Μαρία +Ἦν +καθήμεναι +ἀπέναντι +τοῦ +τάφου +δέ +Τῇ +ἐπαύριον +ἥτις +ἐστίν +μετά +τήν +Παρασκευήν +συνήχθησαν +οἱ +ἀρχιερεῖς +καί +οἱ +Φαρισαῖοι +πρός +Πειλᾶτον +λέγοντες +Κύριε +ἐμνήσθημεν +ὅτι +ἐκεῖνος +ὁ +πλάνος +εἶπεν +ἔτι +ζῶν +Μετά +τρεῖς +ἡμέρας +ἐγείρομαι +οὖν +κέλευσον +ἀσφαλισθῆναι +τόν +τάφον +ἕως +τῆς +τρίτης +ἡμέρας +μή +ποτε +ἐλθόντες +οἱ +μαθηταί +κλέψωσιν +αὐτόν +καί +εἴπωσιν +τῷ +λαῷ +Ἠγέρθη +ἀπό +τῶν +νεκρῶν +καί +ἔσται +ἡ +ἐσχάτη +πλάνη +χείρων +τῆς +πρώτης +ἔφη +αὐτοῖς +ὁ +Πειλᾶτος +Ἔχετε +κουστωδίαν +ὑπάγετε +ἀσφαλίσασθε +ὡς +οἴδατε +δέ +οἱ +πορευθέντες +ἠσφαλίσαντο +τόν +τάφον +σφραγίσαντες +τόν +λίθον +μετά +τῆς +κουστωδίας +δέ +Ὀψέ +σαββάτων +τῇ +ἐπιφωσκούσῃ +εἰς +μίαν +σαββάτων +ἦλθεν +Μαριάμ +ἡ +Μαγδαληνή +καί +ἡ +ἄλλη +Μαρία +θεωρῆσαι +τόν +τάφον +καί +ἰδού +σεισμός +μέγας +ἐγένετο +γάρ +ἄγγελος +Κυρίου +καταβάς +ἐξ +οὐρανοῦ +καί +προσελθών +ἀπεκύλισεν +τόν +λίθον +καί +ἐκάθητο +ἐπάνω +αὐτοῦ +δέ +ἦν +ἡ +εἰδέα +αὐτοῦ +ὡς +ἀστραπή +καί +τό +ἔνδυμα +αὐτοῦ +λευκόν +ὡς +χιών +δέ +ἀπό +τοῦ +φόβου +αὐτοῦ +ἐσείσθησαν +οἱ +τηροῦντες +καί +ἐγενήθησαν +ὡς +νεκροί +δέ +ἀποκριθείς +ὁ +ἄγγελος +εἶπεν +ταῖς +γυναιξίν +Μή +φοβεῖσθε +ὑμεῖς +γάρ +οἶδα +ὅτι +Ἰησοῦν +τόν +ἐσταυρωμένον +ζητεῖτε +οὐκ +ἔστιν +ὧδε +γάρ +ἠγέρθη +καθώς +εἶπεν +δεῦτε +ἴδετε +τόν +τόπον +ὅπου +ἔκειτο +καί +ταχύ +πορευθεῖσαι +εἴπατε +τοῖς +μαθηταῖς +αὐτοῦ +ὅτι +Ἠγέρθη +ἀπό +τῶν +νεκρῶν +καί +ἰδού +προάγει +ὑμᾶς +εἰς +τήν +Γαλιλαίαν +ἐκεῖ +αὐτόν +ὄψεσθε +ἰδού +εἶπον +ὑμῖν +καί +ἀπελθοῦσαι +ταχύ +ἀπό +τοῦ +μνημείου +μετά +φόβου +καί +χαρᾶς +μεγάλης +ἔδραμον +ἀπαγγεῖλαι +τοῖς +μαθηταῖς +αὐτοῦ +καί +ἰδού +Ἰησοῦς +ὑπήντησεν +αὐταῖς +λέγων +Χαίρετε +δέ +αἱ +προσελθοῦσαι +ἐκράτησαν +αὐτοῦ +τούς +πόδας +καί +προσεκύνησαν +αὐτῷ +τότε +λέγει +αὐταῖς +ὁ +Ἰησοῦς +Μή +φοβεῖσθε +ὑπάγετε +ἀπαγγείλατε +τοῖς +ἀδελφοῖς +μου +ἵνα +ἀπέλθωσιν +εἰς +τήν +Γαλιλαίαν +κἀκεῖ +με +ὄψονται +δέ +Πορευομένων +αὐτῶν +ἰδού +τινες +τῆς +κουστωδίας +ἐλθόντες +εἰς +τήν +πόλιν +ἀπήγγειλαν +τοῖς +ἀρχιερεῦσιν +ἅπαντα +τά +γενόμενα +καί +συναχθέντες +μετά +τῶν +πρεσβυτέρων +τε +συμβούλιον +λαβόντες +ἀργύρια +ἱκανά +ἔδωκαν +τοῖς +στρατιώταις +λέγοντες +Εἴπατε +ὅτι +Οἱ +μαθηταί +αὐτοῦ +νυκτός +ἐλθόντες +ἔκλεψαν +αὐτόν +ἡμῶν +κοιμωμένων +καί +ἐάν +ἀκουσθῇ +τοῦτο +ἐπί +τοῦ +ἡγεμόνος +ἡμεῖς +πείσομεν +καί +ὑμᾶς +ἀμερίμνους +ποιήσομεν +δέ +οἱ +λαβόντες +ἀργύρια +ἐποίησαν +ὡς +ἐδιδάχθησαν +Καί +διεφημίσθη +ὁ +λόγος +οὗτος +παρά +Ἰουδαίοις +μέχρι +τῆς +σήμερον +ἡμέρας +δέ +Οἱ +ἕνδεκα +μαθηταί +ἐπορεύθησαν +εἰς +τήν +Γαλιλαίαν +εἰς +τό +ὄρος +οὗ +ἐτάξατο +αὐτοῖς +ὁ +Ἰησοῦς +καί +ἰδόντες +αὐτόν +προσεκύνησαν +δέ +οἱ +ἐδίστασαν +καί +προσελθών +ὁ +Ἰησοῦς +ἐλάλησεν +αὐτοῖς +λέγων +Ἐδόθη +μοι +πᾶσα +ἐξουσία +ἐν +οὐρανῷ +καί +ἐπί +τῆς +γῆς +οὖν +πορευθέντες +μαθητεύσατε +πάντα +τά +ἔθνη +βαπτίζοντες +αὐτούς +εἰς +τό +ὄνομα +τοῦ +Πατρός +καί +τοῦ +Υἱοῦ +καί +τοῦ +Ἁγίου +Πνεύματος +διδάσκοντες +αὐτούς +τηρεῖν +πάντα +ὅσα +ἐνετειλάμην +ὑμῖν +καί +ἰδού +ἐγώ +μεθ’ +ὑμῶν +εἰμι +πάσας +τάς +ἡμέρας +ἕως +τῆς +συντελείας +τοῦ +αἰῶνος +Ἀρχή +τοῦ +εὐαγγελίου +Ἰησοῦ +Χριστοῦ +Υἱοῦ +Θεοῦ +Καθώς +γέγραπται +ἐν +τῷ +Ἠσαΐᾳ +τῷ +προφήτῃ +Ἰδού +ἀποστέλλω +τόν +ἄγγελον +μου +πρό +προσώπου +σου +ὅς +κατασκευάσει +τήν +ὁδόν +σου +φωνή +βοῶντος +ἐν +τῇ +ἐρήμῳ +Ἑτοιμάσατε +τήν +ὁδόν +Κυρίου +εὐθείας +ποιεῖτε +τάς +τρίβους +αὐτοῦ +ἐγένετο +Ἰωάνης +ὁ +βαπτίζων +ἐν +τῇ +ἐρήμῳ +κηρύσσων +βάπτισμα +μετανοίας +εἰς +ἄφεσιν +ἁμαρτιῶν +καί +ἐξεπορεύετο +πρός +αὐτόν +πᾶσα +ἡ +Ἰουδαία +χώρα +καί +οἱ +Ἱεροσολυμεῖται +πάντες +καί +ἐβαπτίζοντο +ὑπ’ +αὐτοῦ +ἐν +τῷ +Ἰορδάνῃ +ποταμῷ +ἐξομολογούμενοι +τάς +ἁμαρτίας +αὐτῶν +καί +ἦν +ὁ +Ἰωάνης +ἐνδεδυμένος +τρίχας +καμήλου +καί +ζώνην +δερματίνην +περί +τήν +ὀσφύν +αὐτοῦ +καί +ἔσθων +ἀκρίδας +καί +μέλι +ἄγριον +καί +ἐκήρυσσεν +λέγων +Ἔρχεται +ὁ +ἰσχυρότερος +μου +ὀπίσω +μου +οὗ +οὐκ +εἰμί +ἱκανός +κύψας +λῦσαι +τόν +ἱμάντα +τῶν +ὑποδημάτων +αὐτοῦ +ἐγώ +ἐβάπτισα +ὑμᾶς +ὕδατι +δέ +αὐτός +βαπτίσει +ὑμᾶς +Πνεύματι +Ἁγίῳ +Καί +ἐγένετο +ἐν +ἐκείναις +ταῖς +ἡμέραις +ἦλθεν +Ἰησοῦς +ἀπό +Ναζαρέτ +τῆς +Γαλιλαίας +καί +ἐβαπτίσθη +εἰς +τόν +Ἰορδάνην +ὑπό +Ἰωάνου +καί +εὐθύς +ἀναβαίνων +ἐκ +τοῦ +ὕδατος +εἶδεν +σχιζομένους +τούς +οὐρανούς +καί +τό +Πνεῦμα +ὡς +περιστεράν +καταβαῖνον +εἰς +αὐτόν +καί +φωνή +ἐγένετο +ἐκ +τῶν +οὐρανῶν +Σύ +εἶ +ὁ +Υἱός +μου +ὁ +ἀγαπητός +ἐν +σοί +εὐδόκησα +Καί +εὐθύς +τό +Πνεῦμα +αὐτόν +ἐκβάλλει +εἰς +τήν +ἔρημον +καί +ἦν +ἐν +τῇ +ἐρήμῳ +τεσσεράκοντα +ἡμέρας +πειραζόμενος +ὑπό +τοῦ +Σατανᾶ +καί +ἦν +μετά +τῶν +θηρίων +καί +οἱ +ἄγγελοι +διηκόνουν +αὐτῷ +Καί +μετά +τό +παραδοθῆναι +τόν +Ἰωάνην +ἦλθεν +ὁ +Ἰησοῦς +εἰς +τήν +Γαλιλαίαν +κηρύσσων +τό +εὐαγγέλιον +τοῦ +Θεοῦ +καί +λέγων +ὅτι +Πεπλήρωται +ὁ +καιρός +καί +ἤγγικεν +ἡ +βασιλεία +τοῦ +Θεοῦ +μετανοεῖτε +καί +πιστεύετε +ἐν +τῷ +εὐαγγελίῳ +Καί +παράγων +παρά +τήν +θάλασσαν +τῆς +Γαλιλαίας +εἶδεν +Σίμωνα +καί +Ἀνδρέαν +τόν +ἀδελφόν +Σίμωνος +ἀμφιβάλλοντας +ἐν +τῇ +θαλάσσῃ +γάρ +ἦσαν +ἁλεεῖς +καί +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Δεῦτε +ὀπίσω +μου +καί +ποιήσω +ὑμᾶς +γενέσθαι +ἁλεεῖς +ἀνθρώπων +καί +εὐθύς +ἀφέντες +τά +δίκτυα +ἠκολούθησαν +αὐτῷ +Καί +προβάς +ὀλίγον +εἶδεν +Ἰάκωβον +τόν +τοῦ +Ζεβεδαίου +καί +Ἰωάνην +τόν +ἀδελφόν +αὐτοῦ +καί +αὐτούς +ἐν +τῷ +πλοίῳ +καταρτίζοντας +τά +δίκτυα +καί +εὐθύς +ἐκάλεσεν +αὐτούς +καί +ἀφέντες +τόν +πατέρα +αὐτῶν +Ζεβεδαῖον +ἐν +τῷ +πλοίῳ +μετά +τῶν +μισθωτῶν +ἀπῆλθον +ὀπίσω +αὐτοῦ +Καί +εἰσπορεύονται +εἰς +Καφαρναούμ +καί +εὐθύς +τοῖς +σάββασιν +εἰσελθών +εἰς +τήν +συναγωγήν +ἐδίδασκεν +καί +ἐξεπλήσσοντο +ἐπί +τῇ +διδαχῇ +αὐτοῦ +γάρ +ἦν +διδάσκων +αὐτούς +ὡς +ἐξουσίαν +ἔχων +καί +οὐχ +ὡς +οἱ +γραμματεῖς +Καί +εὐθύς +ἦν +ἐν +τῇ +συναγωγῇ +αὐτῶν +ἄνθρωπος +ἐν +πνεύματι +ἀκαθάρτῳ +καί +ἀνέκραξεν +λέγων +Τί +ἡμῖν +καί +σοί +Ἰησοῦ +Ναζαρηνέ +ἦλθες +ἀπολέσαι +ἡμᾶς +οἶδα +σε +τίς +εἶ +ὁ +Ἅγιος +τοῦ +Θεοῦ +καί +ἐπετίμησεν +αὐτῷ +ὁ +Ἰησοῦς +Φιμώθητι +καί +ἔξελθε +ἐξ +αὐτοῦ +καί +τό +πνεῦμα +τό +ἀκάθαρτον +σπαράξαν +αὐτόν +καί +φωνῆσαν +φωνῇ +μεγάλῃ +ἐξῆλθεν +ἐξ +αὐτοῦ +καί +ἐθαμβήθησαν +ἅπαντες +ὥστε +συνζητεῖν +αὐτούς +λέγοντας +Τί +ἐστιν +τοῦτο +διδαχή +καινή +κατ’ +ἐξουσίαν +καί +τοῖς +πνεύμασι +τοῖς +ἀκαθάρτοις +ἐπιτάσσει +καί +ὑπακούουσιν +αὐτῷ +καί +ἐξῆλθεν +ἡ +ἀκοή +αὐτοῦ +εὐθύς +πανταχοῦ +εἰς +ὅλην +τήν +περίχωρον +τῆς +Γαλιλαίας +Καί +εὐθύς +ἐκ +τῆς +συναγωγῆς +ἐξελθόντες +ἦλθον +εἰς +τήν +οἰκίαν +Σίμωνος +καί +Ἀνδρέου +μετά +Ἰακώβου +καί +Ἰωάνου +δέ +ἡ +πενθερά +Σίμωνος +κατέκειτο +πυρέσσουσα +καί +εὐθύς +λέγουσιν +αὐτῷ +περί +αὐτῆς +καί +προσελθών +ἤγειρεν +αὐτήν +κρατήσας +τῆς +χειρός +καί +ἀφῆκεν +αὐτήν +ὁ +πυρετός +καί +διηκόνει +αὐτοῖς +δέ +Ὀψίας +γενομένης +ὅτε +ἔδυσεν +ὁ +ἥλιος +ἔφερον +πρός +αὐτόν +πάντας +τούς +κακῶς +ἔχοντας +καί +τούς +δαιμονιζομένους +καί +ἦν +ἐπισυνηγμένη +ὅλη +ἡ +πόλις +πρός +τήν +θύραν +καί +ἐθεράπευσεν +πολλούς +κακῶς +ἔχοντας +ποικίλαις +νόσοις +καί +δαιμόνια +πολλά +ἐξέβαλεν +καί +οὐκ +ἤφιεν +λαλεῖν +τά +δαιμόνια +ὅτι +ᾔδεισαν +αὐτόν +Καί +πρωΐ +ἔννυχα +λίαν +ἀναστάς +ἐξῆλθεν +καί +ἀπῆλθεν +εἰς +ἔρημον +τόπον +κἀκεῖ +προσηύχετο +καί +κατεδίωξεν +αὐτόν +Σίμων +καί +οἱ +μετ’ +αὐτοῦ +καί +εὗρον +αὐτόν +καί +λέγουσιν +αὐτῷ +ὅτι +Πάντες +ζητοῦσιν +σε +καί +λέγει +αὐτοῖς +Ἄγωμεν +ἀλλαχοῦ +εἰς +τάς +ἐχομένας +κωμοπόλεις +ἵνα +καί +ἐκεῖ +κηρύξω +γάρ +εἰς +τοῦτο +ἐξῆλθον +καί +ἦλθεν +κηρύσσων +εἰς +τάς +συναγωγάς +αὐτῶν +εἰς +ὅλην +τήν +Γαλιλαίαν +καί +τά +δαιμόνια +ἐκβάλλων +Καί +ἔρχεται +πρός +αὐτόν +λεπρός +παρακαλῶν +αὐτόν +καί +γονυπετῶν +λέγων +αὐτῷ +ὅτι +Ἐάν +θέλῃς +δύνασαι +με +καθαρίσαι +καί +σπλαγχνισθείς +ἐκτείνας +τήν +χεῖρα +αὐτοῦ +ἥψατο +καί +λέγει +αὐτῷ +Θέλω +καθαρίσθητι +καί +εὐθύς +ἀπῆλθεν +ἀπ’ +αὐτοῦ +ἡ +λέπρα +καί +ἐκαθερίσθη +καί +ἐμβριμησάμενος +αὐτῷ +εὐθύς +ἐξέβαλεν +αὐτόν +καί +λέγει +αὐτῷ +Ὅρα +μηδενί +μηδέν +εἴπῃς +ἀλλά +ὕπαγε +σεαυτόν +δεῖξον +τῷ +ἱερεῖ +καί +προσένεγκε +περί +τοῦ +καθαρισμοῦ +σου +ἅ +προσέταξεν +Μωϋσῆς +εἰς +μαρτύριον +αὐτοῖς +δέ +ὁ +ἐξελθών +ἤρξατο +κηρύσσειν +πολλά +καί +διαφημίζειν +τόν +λόγον +ὥστε +μηκέτι +αὐτόν +δύνασθαι +φανερῶς +εἰς +πόλιν +εἰσελθεῖν +ἀλλ’ +ἔξω +ἐπ’ +ἐρήμοις +τόποις +ἦν +καί +ἤρχοντο +πρός +αὐτόν +πάντοθεν +Καί +εἰσελθών +πάλιν +εἰς +Καφαρναούμ +δι’ +ἡμερῶν +ἠκούσθη +ὅτι +ἐν +οἴκῳ +ἐστίν +καί +συνήχθησαν +πολλοί +ὥστε +μηκέτι +χωρεῖν +μηδέ +τά +πρός +τήν +θύραν +καί +ἐλάλει +αὐτοῖς +τόν +λόγον +καί +ἔρχονται +φέροντες +πρός +αὐτόν +παραλυτικόν +αἰρόμενον +ὑπό +τεσσάρων +καί +μή +δυνάμενοι +προσενέγκαι +αὐτῷ +διά +τόν +ὄχλον +ἀπεστέγασαν +τήν +στέγην +ὅπου +ἦν +καί +ἐξορύξαντες +χαλῶσι +τόν +κράβαττον +ὅπου +ὁ +παραλυτικός +κατέκειτο +καί +ὁ +Ἰησοῦς +ἰδών +τήν +πίστιν +αὐτῶν +λέγει +τῷ +παραλυτικῷ +Τέκνον +ἀφίενται +σου +αἱ +ἁμαρτίαι +δέ +ἦσαν +τινες +τῶν +γραμματέων +ἐκεῖ +καθήμενοι +καί +διαλογιζόμενοι +ἐν +ταῖς +καρδίαις +αὐτῶν +Τί +οὗτος +οὕτως +λαλεῖ +βλασφημεῖ +τίς +δύναται +ἀφιέναι +ἁμαρτίας +εἰ +μή +εἷς +ὁ +Θεός +καί +εὐθύς +ὁ +Ἰησοῦς +ἐπιγνούς +τῷ +πνεύματι +αὐτοῦ +ὅτι +οὕτως +διαλογίζονται +ἐν +ἑαυτοῖς +λέγει +αὐτοῖς +Τί +ταῦτα +διαλογίζεσθε +ἐν +ταῖς +καρδίαις +ὑμῶν +τί +ἐστιν +εὐκοπώτερον +εἰπεῖν +τῷ +παραλυτικῷ +Ἀφίενται +σου +αἱ +ἁμαρτίαι +ἤ +εἰπεῖν +Ἔγειρε +καί +ἆρον +τόν +κράβαττον +σου +καί +περιπάτει +δέ +ἵνα +εἰδῆτε +ὅτι +ἐξουσίαν +ἔχει +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἀφιέναι +ἁμαρτίας +ἐπί +τῆς +γῆς +λέγει +τῷ +παραλυτικῷ +Σοί +λέγω +ἔγειρε +ἆρον +τόν +κράβαττον +σου +καί +ὕπαγε +εἰς +τόν +οἶκον +σου +καί +ἠγέρθη +καί +εὐθύς +ἄρας +τόν +κράβαττον +ἐξῆλθεν +ἔμπροσθεν +πάντων +ὥστε +ἐξίστασθαι +πάντας +καί +δοξάζειν +τόν +Θεόν +λέγοντας +ὅτι +Οὕτως +οὐδέποτε +εἴδαμεν +Καί +ἐξῆλθεν +πάλιν +παρά +τήν +θάλασσαν +καί +πᾶς +ὁ +ὄχλος +ἤρχετο +πρός +αὐτόν +καί +ἐδίδασκεν +αὐτούς +καί +παράγων +εἶδεν +Λευείν +τόν +τοῦ +Ἀλφαίου +καθήμενον +ἐπί +τό +τελώνιον +καί +λέγει +αὐτῷ +Ἀκολούθει +μοι +καί +ἀναστάς +ἠκολούθησεν +αὐτῷ +Καί +γίνεται +κατακεῖσθαι +αὐτόν +ἐν +τῇ +οἰκίᾳ +αὐτοῦ +καί +πολλοί +τελῶναι +καί +ἁμαρτωλοί +συνανέκειντο +τῷ +Ἰησοῦ +καί +τοῖς +μαθηταῖς +αὐτοῦ +γάρ +ἦσαν +πολλοί +καί +ἠκολούθουν +αὐτῷ +καί +οἱ +γραμματεῖς +τῶν +Φαρισαίων +ἰδόντες +ὅτι +ἐσθίει +μετά +τῶν +ἁμαρτωλῶν +καί +τελωνῶν +ἔλεγον +τοῖς +μαθηταῖς +αὐτοῦ +Ὅτι +μετά +τῶν +τελωνῶν +καί +ἁμαρτωλῶν +ἐσθίει +καί +ἀκούσας +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Οὐ +χρείαν +ἰατροῦ +ἔχουσιν +οἱ +ἰσχύοντες +ἀλλ’ +οἱ +κακῶς +ἔχοντες +οὐκ +ἦλθον +καλέσαι +δικαίους +ἀλλά +ἁμαρτωλούς +Καί +ἦσαν +νηστεύοντες +οἱ +μαθηταί +Ἰωάνου +καί +οἱ +Φαρισαῖοι +καί +ἔρχονται +καί +λέγουσιν +αὐτῷ +Διά +τί +οἱ +μαθηταί +Ἰωάνου +καί +οἱ +μαθηταί +τῶν +Φαρισαίων +νηστεύουσιν +δέ +οἱ +σοί +μαθηταί +οὐ +νηστεύουσιν +καί +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Μή +δύνανται +οἱ +υἱοί +τοῦ +νυμφῶνος +ἐν +ᾧ +ὁ +νυμφίος +μετ’ +αὐτῶν +ἐστιν +νηστεύειν +ὅσον +χρόνον +ἔχουσιν +τόν +νυμφίον +μετ’ +αὐτῶν +οὐ +δύνανται +νηστεύειν +δέ +ἐλεύσονται +ἡμέραι +ὅταν +ἀπαρθῇ +ἀπ’ +αὐτῶν +ὁ +νυμφίος +καί +τότε +νηστεύσουσιν +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +Οὐδείς +ἐπίβλημα +ῥάκους +ἀγνάφου +ἐπιράπτει +ἐπί +ἱμάτιον +παλαιόν +δέ +εἰ +μή +αἴρει +τό +πλήρωμα +τό +καινόν +ἀπ’ +αὐτοῦ +τοῦ +παλαιοῦ +καί +χεῖρον +σχίσμα +γίνεται +καί +οὐδείς +βάλλει +οἶνον +νέον +εἰς +ἀσκούς +παλαιούς +δέ +εἰ +μή +ῥήξει +ὁ +οἶνος +τούς +ἀσκούς +καί +ὁ +οἶνος +ἀπόλλυται +καί +οἱ +ἀσκοί +ἀλλά +οἶνον +νέον +εἰς +ἀσκούς +καινούς +Καί +ἐγένετο +αὐτόν +ἐν +τοῖς +σάββασιν +παραπορεύεσθαι +διά +τῶν +σπορίμων +καί +οἱ +μαθηταί +αὐτοῦ +ἤρξαντο +ὁδόν +ποιεῖν +τίλλοντες +τούς +στάχυας +καί +οἱ +Φαρισαῖοι +ἔλεγον +αὐτῷ +Ἴδε +τί +ποιοῦσιν +τοῖς +σάββασιν +ὅ +οὐκ +ἔξεστιν +καί +λέγει +αὐτοῖς +Οὐδέποτε +ἀνέγνωτε +τί +ἐποίησεν +Δαυείδ +ὅτε +χρείαν +ἔσχεν +καί +ἐπείνασεν +αὐτός +καί +οἱ +μετ’ +αὐτοῦ +πῶς +εἰσῆλθεν +εἰς +τόν +οἶκον +τοῦ +Θεοῦ +ἐπί +Ἀβιαθάρ +ἀρχιερέως +καί +τούς +ἄρτους +τῆς +προθέσεως +ἔφαγεν +οὕς +φαγεῖν +οὐκ +ἔξεστιν +εἰ +μή +τούς +ἱερεῖς +καί +ἔδωκεν +καί +τοῖς +σύν +αὐτῷ +οὖσιν +καί +ἔλεγεν +αὐτοῖς +Τό +σάββατον +διά +τόν +ἄνθρωπον +ἐγένετο +καί +οὐχ +ὁ +ἄνθρωπος +διά +τό +σάββατον +ὥστε +ἐστιν +ὁ +Υἱός +τοῦ +ἀνθρώπου +κύριος +καί +τοῦ +σαββάτου +Καί +εἰσῆλθεν +πάλιν +εἰς +συναγωγήν +καί +ἦν +ἐκεῖ +ἄνθρωπος +ἐξηραμμένην +ἔχων +τήν +χεῖρα +καί +παρετήρουν +αὐτόν +εἰ +τοῖς +σάββασιν +θεραπεύσει +αὐτόν +ἵνα +κατηγορήσωσιν +αὐτοῦ +καί +λέγει +τῷ +ἀνθρώπῳ +τῷ +τήν +ξηράν +χεῖρα +ἔχοντι +Ἔγειρε +εἰς +τό +μέσον +καί +λέγει +αὐτοῖς +Ἔξεστιν +τοῖς +σάββασιν +ἀγαθόν +ποιῆσαι +ἤ +κακοποιῆσαι +ψυχήν +σῶσαι +ἤ +ἀποκτεῖναι +δέ +οἱ +ἐσιώπων +καί +περιβλεψάμενος +αὐτούς +μετ’ +ὀργῆς +συνλυπούμενος +ἐπί +τῇ +πωρώσει +τῆς +καρδίας +αὐτῶν +λέγει +τῷ +ἀνθρώπῳ +Ἔκτεινον +τήν +χεῖρα +καί +ἐξέτεινεν +καί +ἀπεκατεστάθη +ἡ +χείρ +αὐτοῦ +καί +ἐξελθόντες +οἱ +Φαρισαῖοι +εὐθύς +μετά +τῶν +Ἠρῳδιανῶν +συμβούλιον +ἐδίδουν +κατ’ +αὐτοῦ +ὅπως +αὐτόν +ἀπολέσωσιν +Καί +ὁ +Ἰησοῦς +μετά +τῶν +μαθητῶν +αὐτοῦ +ἀνεχώρησεν +πρός +τήν +θάλασσαν +καί +πολύ +πλῆθος +ἀπό +τῆς +Γαλιλαίας +ἠκολούθησεν +καί +ἀπό +τῆς +Ἰουδαίας +καί +ἀπό +Ἱεροσολύμων +καί +ἀπό +τῆς +Ἰδουμαίας +καί +πέραν +τοῦ +Ἰορδάνου +καί +περί +Τύρον +καί +Σιδῶνα +πλῆθος +πολύ +ἀκούοντες +ὅσα +ποιεῖ +ἦλθον +πρός +αὐτόν +καί +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +ἵνα +πλοιάριον +προσκαρτερῇ +αὐτῷ +διά +τόν +ὄχλον +ἵνα +μή +θλίβωσιν +αὐτόν +γάρ +πολλούς +ἐθεράπευσεν +ὥστε +ἐπιπίπτειν +αὐτῷ +ἵνα +αὐτοῦ +ἅψωνται +ὅσοι +εἶχον +μάστιγας +καί +τά +πνεύματα +τά +ἀκάθαρτα +ὅταν +αὐτόν +ἐθεώρουν +προσέπιπτον +αὐτῷ +καί +ἔκραζον +λέγοντα +ὅτι +Σύ +εἶ +ὁ +Υἱός +τοῦ +Θεοῦ +καί +πολλά +ἐπετίμα +αὐτοῖς +ἵνα +μή +αὐτόν +φανερόν +ποιήσωσιν +Καί +ἀναβαίνει +εἰς +τό +ὄρος +καί +προσκαλεῖται +οὕς +ἤθελεν +αὐτός +καί +ἀπῆλθον +πρός +αὐτόν +καί +ἐποίησεν +δώδεκα +ἵνα +ὦσιν +μετ’ +αὐτοῦ +καί +ἵνα +ἀποστέλλῃ +αὐτούς +κηρύσσειν +καί +ἔχειν +ἐξουσίαν +ἐκβάλλειν +τά +δαιμόνια +καί +ἐποίησεν +τούς +δώδεκα +καί +ἐπέθηκεν +ὄνομα +τῷ +Σίμωνι +Πέτρον +καί +Ἰάκωβον +τόν +τοῦ +Ζεβεδαίου +καί +Ἰωάνην +τόν +ἀδελφόν +τοῦ +Ἰακώβου +καί +ἐπέθηκεν +αὐτοῖς +ὄνομα +Βοανηργές +ὅ +ἐστιν +Υἱοί +Βροντῆς +καί +Ἀνδρέαν +καί +Φίλιππον +καί +Βαρθολομαῖον +καί +Μαθθαῖον +καί +Θωμᾶν +καί +Ἰάκωβον +τόν +τοῦ +Ἁλφαίου +καί +Θαδδαῖον +καί +Σίμωνα +τόν +Καναναῖον +καί +Ἰούδαν +Ἰσκαριώθ +ὅς +καί +παρέδωκεν +αὐτόν +Καί +ἔρχεται +εἰς +οἶκον +καί +συνέρχεται +πάλιν +ὁ +ὄχλος +ὥστε +μή +δύνασθαι +αὐτούς +μηδέ +ἄρτον +φαγεῖν +καί +ἀκούσαντες +οἱ +παρ’ +αὐτοῦ +ἐξῆλθον +κρατῆσαι +αὐτόν +γάρ +ἔλεγον +ὅτι +ἐξέστη +καί +οἱ +γραμματεῖς +οἱ +ἀπό +Ἱεροσολύμων +καταβάντες +ἔλεγον +ὅτι +Βεελζεβούλ +ἔχει +καί +ὅτι +ἐν +τῷ +ἄρχοντι +τῶν +δαιμονίων +ἐκβάλλει +τά +δαιμόνια +καί +προσκαλεσάμενος +αὐτούς +ἐν +παραβολαῖς +ἔλεγεν +αὐτοῖς +Πῶς +δύναται +Σατανᾶς +Σατανᾶν +ἐκβάλλειν +καί +ἐάν +βασιλεία +ἐφ’ +ἑαυτήν +μερισθῇ +οὐ +δύναται +σταθῆναι +ἡ +βασιλεία +ἐκείνη +καί +ἐάν +οἰκία +ἐφ’ +ἑαυτήν +μερισθῇ +οὐ +δυνήσεται +ἡ +οἰκία +ἐκείνη +στῆναι +καί +εἰ +ὁ +Σατανᾶς +ἀνέστη +ἐφ’ +ἑαυτόν +καί +ἐμερίσθη +οὐ +δύναται +στῆναι +ἀλλά +τέλος +ἔχει +ἀλλ’ +οὐ +δύναται +οὐδείς +εἰς +τήν +οἰκίαν +τοῦ +ἰσχυροῦ +εἰσελθών +τά +σκεύη +αὐτοῦ +διαρπάσαι +ἐάν +μή +πρῶτον +τόν +ἰσχυρόν +δήσῃ +καί +τότε +τήν +οἰκίαν +αὐτοῦ +διαρπάσει +Ἀμήν +λέγω +ὑμῖν +ὅτι +ἀφεθήσεται +τοῖς +υἱοῖς +τῶν +ἀνθρώπων +πάντα +τά +ἁμαρτήματα +καί +αἱ +βλασφημίαι +ἐάν +ὅσα +βλασφημήσωσιν +δ’ +ἄν +ὅς +βλασφημήσῃ +εἰς +τό +Πνεῦμα +τό +Ἅγιον +οὐκ +ἔχει +ἄφεσιν +εἰς +τόν +αἰῶνα +ἀλλά +ἔνοχος +ἐστιν +αἰωνίου +ἁμαρτήματος +ὅτι +ἔλεγον +Πνεῦμα +ἀκάθαρτον +ἔχει +Καί +ἔρχονται +ἡ +μήτηρ +αὐτοῦ +καί +οἱ +ἀδελφοί +αὐτοῦ +καί +ἔξω +στήκοντες +ἀπέστειλαν +πρός +αὐτόν +καλοῦντες +αὐτόν +καί +ἐκάθητο +περί +αὐτόν +ὄχλος +καί +λέγουσιν +αὐτῷ +Ἰδού +ἡ +μήτηρ +σου +καί +οἱ +ἀδελφοί +σου +καί +αἱ +ἀδελφαί +σου +ἔξω +ζητοῦσιν +σε +καί +ἀποκριθείς +αὐτοῖς +λέγει +Τίς +ἐστιν +ἡ +μήτηρ +μου +καί +οἱ +ἀδελφοί +καί +περιβλεψάμενος +τούς +περί +αὐτόν +κύκλῳ +καθημένους +λέγει +Ἴδε +ἡ +μήτηρ +μου +καί +οἱ +ἀδελφοί +μου +ἄν +ὅς +ποιήσῃ +τό +θέλημα +τοῦ +Θεοῦ +οὗτος +ἀδελφός +μου +καί +ἀδελφή +καί +μήτηρ +ἐστίν +Καί +πάλιν +ἤρξατο +διδάσκειν +παρά +τήν +θάλασσαν +καί +συνάγεται +πρός +αὐτόν +ὄχλος +πλεῖστος +ὥστε +αὐτόν +εἰς +πλοῖον +ἐμβάντα +καθῆσθαι +ἐν +τῇ +θαλάσσῃ +καί +πᾶς +ὁ +ὄχλος +πρός +τήν +θάλασσαν +ἐπί +τῆς +γῆς +ἦσαν +καί +ἐδίδασκεν +αὐτούς +ἐν +παραβολαῖς +πολλά +καί +ἔλεγεν +αὐτοῖς +ἐν +τῇ +διδαχῇ +αὐτοῦ +Ἀκούετε +ἰδού +ἐξῆλθεν +ὁ +σπείρων +σπεῖραι +καί +ἐγένετο +ἐν +τῷ +σπείρειν +μέν +ὅ +ἔπεσεν +παρά +τήν +ὁδόν +καί +ἦλθεν +τά +πετεινά +καί +κατέφαγεν +αὐτό +καί +ἄλλο +ἔπεσεν +ἐπί +τό +πετρῶδες +ὅπου +οὐκ +εἶχεν +γῆν +πολλήν +καί +εὐθύς +ἐξανέτειλεν +διά +τό +μή +ἔχειν +βάθος +γῆς +καί +ὅτε +ἀνέτειλεν +ὁ +ἥλιος +ἐκαυματίσθη +καί +διά +τό +μή +ἔχειν +ῥίζαν +ἐξηράνθη +καί +ἄλλο +ἔπεσεν +εἰς +τάς +ἀκάνθας +καί +ἀνέβησαν +αἱ +ἄκανθαι +καί +συνέπνιξαν +αὐτό +καί +καρπόν +οὐκ +ἔδωκεν +καί +ἄλλα +ἔπεσεν +εἰς +τήν +γῆν +τήν +καλήν +καί +ἐδίδου +καρπόν +ἀναβαίνοντα +καί +αὐξανόμενα +καί +ἔφερεν +εἰς +τριάκοντα +καί +ἐν +ἑξήκοντα +καί +ἐν +ἑκατόν +καί +ἔλεγεν +Ὅς +ἔχει +ὦτα +ἀκούειν +ἀκουέτω +Καί +ὅτε +ἐγένετο +κατά +μόνας +ἠρώτων +αὐτόν +οἱ +περί +αὐτόν +σύν +τοῖς +δώδεκα +τάς +παραβολάς +καί +ἔλεγεν +αὐτοῖς +Ὑμῖν +δέδοται +τό +μυστήριον +τῆς +βασιλείας +τοῦ +Θεοῦ +δέ +ἐκείνοις +τοῖς +ἔξω +ἐν +παραβολαῖς +τά +πάντα +γίνεται +ἵνα +βλέποντες +βλέπωσιν +καί +μή +ἴδωσιν +καί +ἀκούοντες +ἀκούωσιν +καί +μή +συνιῶσιν +μή +ποτε +ἐπιστρέψωσιν +καί +ἀφεθῇ +αὐτοῖς +καί +λέγει +αὐτοῖς +Οὐκ +οἴδατε +τήν +παραβολήν +ταύτην +καί +πῶς +πάσας +τάς +παραβολάς +γνώσεσθε +ὁ +σπείρων +τόν +λόγον +σπείρει +δέ +οὗτοι +εἰσιν +οἱ +παρά +τήν +ὁδόν +ὅπου +σπείρεται +ὁ +λόγος +καί +ὅταν +ἀκούσωσιν +εὐθύς +ἔρχεται +ὁ +Σατανᾶς +καί +αἴρει +τόν +λόγον +τόν +ἐσπαρμένον +εἰς +αὐτούς +καί +εἰσιν +ὁμοίως +οἱ +ἐπί +τά +πετρώδη +σπειρόμενοι +οὗτοι +οἵ +ὅταν +ἀκούσωσιν +τόν +λόγον +εὐθύς +μετά +χαρᾶς +λαμβάνουσιν +αὐτόν +καί +οὐκ +ἔχουσιν +ῥίζαν +ἐν +ἑαυτοῖς +ἀλλά +πρόσκαιροι +εἰσιν +εἶτα +γενομένης +θλίψεως +ἤ +διωγμοῦ +διά +τόν +λόγον +εὐθύς +σκανδαλίζονται +καί +ἄλλοι +εἰσίν +οἱ +εἰς +τάς +ἀκάνθας +σπειρόμενοι +οὗτοι +εἰσιν +οἱ +τόν +λόγον +ἀκούσαντες +καί +αἱ +μέριμναι +τοῦ +αἰῶνος +καί +ἡ +ἀπάτη +τοῦ +πλούτου +καί +αἱ +περί +τά +λοιπά +ἐπιθυμίαι +εἰσπορευόμεναι +συνπνίγουσιν +τόν +λόγον +καί +ἄκαρπος +γίνεται +καί +εἰσιν +οἱ +ἐπί +τήν +γῆν +τήν +καλήν +σπαρέντες +ἐκεῖνοι +οἵτινες +ἀκούουσιν +τόν +λόγον +καί +παραδέχονται +καί +καρποφοροῦσιν +ἐν +τριάκοντα +καί +ἐν +ἑξήκοντα +καί +ἐν +ἑκατόν +Καί +ἔλεγεν +αὐτοῖς +ὅτι +Μήτι +ἔρχεται +ὁ +λύχνος +ἵνα +ὑπό +τόν +μόδιον +τεθῇ +ἤ +ὑπό +τήν +κλίνην +οὐχ +ἵνα +ἐπί +τήν +λυχνίαν +τεθῇ +γάρ +οὐ +ἐστιν +τι +κρυπτόν +ἐάν +μή +ἵνα +φανερωθῇ +οὐδέ +ἐγένετο +ἀπόκρυφον +ἀλλ’ +ἵνα +ἔλθῃ +εἰς +φανερόν +εἴ +τις +ἔχει +ὦτα +ἀκούειν +ἀκουέτω +Καί +ἔλεγεν +αὐτοῖς +Βλέπετε +τί +ἀκούετε +ἐν +ᾧ +μέτρῳ +μετρεῖτε +μετρηθήσεται +ὑμῖν +καί +προστεθήσεται +ὑμῖν +γάρ +ὅς +ἔχει +δοθήσεται +αὐτῷ +καί +ὅς +οὐκ +ἔχει +καί +ὅ +ἔχει +ἀρθήσεται +ἀπ’ +αὐτοῦ +Καί +ἔλεγεν +Οὕτως +ἐστίν +ἡ +βασιλεία +τοῦ +Θεοῦ +ὡς +ἄνθρωπος +βάλῃ +τόν +σπόρον +ἐπί +τῆς +γῆς +καί +καθεύδῃ +καί +ἐγείρηται +νύκτα +καί +ἡμέραν +καί +ὁ +σπόρος +βλαστᾷ +καί +μηκύνηται +ὡς +οὐκ +οἶδεν +αὐτός +αὐτομάτη +ἡ +γῆ +καρποφορεῖ +πρῶτον +χόρτον +εἶτεν +στάχυν +εἶτεν +πλήρης +σῖτος +ἐν +τῷ +στάχυϊ +δέ +ὅταν +παραδοῖ +ὁ +καρπός +εὐθύς +ἀποστέλλει +τό +δρέπανον +ὅτι +παρέστηκεν +ὁ +θερισμός +Καί +ἔλεγεν +Πῶς +ὁμοιώσωμεν +τήν +βασιλείαν +τοῦ +Θεοῦ +ἤ +ἐν +τίνι +παραβολῇ +αὐτήν +θῶμεν +ὡς +κόκκῳ +σινάπεως +ὅς +ὅταν +σπαρῇ +ἐπί +τῆς +γῆς +μικρότερον +ὄν +πάντων +τῶν +σπερμάτων +τῶν +ἐπί +τῆς +γῆς +καί +ὅταν +σπαρῇ +ἀναβαίνει +καί +γίνεται +μεῖζον +πάντων +τῶν +λαχάνων +καί +ποιεῖ +κλάδους +μεγάλους +ὥστε +δύνασθαι +ὑπό +τήν +σκιάν +αὐτοῦ +κατασκηνοῖν +τά +πετεινά +τοῦ +οὐρανοῦ +Καί +τοιαύταις +παραβολαῖς +πολλαῖς +ἐλάλει +αὐτοῖς +τόν +λόγον +καθώς +ἠδύναντο +ἀκούειν +δέ +χωρίς +παραβολῆς +οὐκ +ἐλάλει +αὐτοῖς +δέ +κατ’ +ἰδίαν +τοῖς +ἰδίοις +μαθηταῖς +ἐπέλυεν +πάντα +Καί +λέγει +αὐτοῖς +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ὀψίας +γενομένης +Διέλθωμεν +εἰς +τό +πέραν +καί +ἀφέντες +τόν +ὄχλον +παραλαμβάνουσιν +αὐτόν +ὡς +ἦν +ἐν +τῷ +πλοίῳ +καί +ἄλλα +πλοῖα +ἦν +μετ’ +αὐτοῦ +καί +γίνεται +λαῖλαψ +μεγάλη +ἀνέμου +καί +τά +κύματα +ἐπέβαλλεν +εἰς +τό +πλοῖον +ὥστε +ἤδη +γεμίζεσθαι +τό +πλοῖον +καί +αὐτός +ἦν +ἐν +τῇ +πρύμνῃ +ἐπί +τό +προσκεφάλαιον +καθεύδων +καί +ἐγείρουσιν +αὐτόν +καί +λέγουσιν +αὐτῷ +Διδάσκαλε +οὐ +μέλει +σοι +ὅτι +ἀπολλύμεθα +καί +διεγερθείς +ἐπετίμησεν +τῷ +ἀνέμῳ +καί +εἶπεν +τῇ +θαλάσσῃ +Σιώπα +πεφίμωσο +καί +ἐκόπασεν +ὁ +ἄνεμος +καί +ἐγένετο +γαλήνη +μεγάλη +καί +εἶπεν +αὐτοῖς +Τί +δειλοί +ἐστε +οὕτως +πῶς +οὐκ +ἔχετε +πίστιν +καί +ἐφοβήθησαν +φόβον +μέγαν +καί +ἔλεγον +πρός +ἀλλήλους +ἄρα +Τίς +οὗτος +ἐστιν +ὅτι +καί +ὁ +ἄνεμος +καί +ἡ +θάλασσα +ὑπακούει +αὐτῷ +Καί +ἦλθον +εἰς +τό +πέραν +τῆς +θαλάσσης +εἰς +τήν +χώραν +τῶν +Γερασηνῶν +καί +ἐξελθόντος +αὐτοῦ +ἐκ +τοῦ +πλοίου +εὐθύς +ὑπήντησεν +αὐτῷ +ἐκ +τῶν +μνημείων +ἄνθρωπος +ἐν +πνεύματι +ἀκαθάρτῳ +ὅς +τήν +κατοίκησιν +εἶχεν +ἐν +τοῖς +μνήμασιν +καί +οὐδέ +ἁλύσει +οὐκέτι +οὐδείς +ἐδύνατο +αὐτόν +δῆσαι +διά +τό +αὐτόν +πολλάκις +πέδαις +καί +ἁλύσεσιν +δεδέσθαι +καί +διεσπάσθαι +ὑπ’ +αὐτοῦ +τάς +ἁλύσεις +καί +τάς +πέδας +συντετρῖφθαι +καί +οὐδείς +ἴσχυεν +αὐτόν +δαμάσαι +καί +διά +παντός +νυκτός +καί +ἡμέρας +ἐν +τοῖς +μνήμασιν +καί +ἐν +τοῖς +ὄρεσιν +ἦν +κράζων +καί +κατακόπτων +ἑαυτόν +λίθοις +καί +ἰδών +τόν +Ἰησοῦν +ἀπό +μακρόθεν +ἔδραμεν +καί +προσεκύνησεν +αὐτόν +καί +κράξας +φωνῇ +μεγάλῃ +λέγει +Τί +ἐμοί +καί +σοί +Ἰησοῦ +Υἱέ +τοῦ +Θεοῦ +τοῦ +Ὑψίστου +ὁρκίζω +σε +τόν +Θεόν +μή +με +βασανίσῃς +γάρ +ἔλεγεν +αὐτῷ +τό +πνεῦμα +τό +ἀκάθαρτον +Ἔξελθε +ἐκ +τοῦ +ἀνθρώπου +καί +ἐπηρώτα +αὐτόν +Τί +ὄνομα +σοι +καί +λέγει +αὐτῷ +Λεγιών +ὄνομα +μοι +ὅτι +πολλοί +ἐσμεν +καί +παρεκάλει +αὐτόν +πολλά +ἵνα +μή +αὐτά +ἀποστείλῃ +ἔξω +τῆς +χώρας +δέ +ἦν +ἐκεῖ +πρός +τῷ +ὄρει +ἀγέλη +χοίρων +μεγάλη +βοσκομένη +καί +παρεκάλεσαν +αὐτόν +λέγοντες +Πέμψον +ἡμᾶς +εἰς +τούς +χοίρους +ἵνα +εἰς +αὐτούς +εἰσέλθωμεν +καί +ἐπέτρεψεν +αὐτοῖς +καί +ἐξελθόντα +τά +πνεύματα +τά +ἀκάθαρτα +εἰσῆλθον +εἰς +τούς +χοίρους +καί +ὥρμησεν +ἡ +ἀγέλη +κατά +τοῦ +κρημνοῦ +εἰς +τήν +θάλασσαν +ὡς +δισχίλιοι +καί +ἐπνίγοντο +ἐν +τῇ +θαλάσσῃ +Καί +οἱ +βόσκοντες +αὐτούς +ἔφυγον +καί +ἀπήγγειλαν +εἰς +τήν +πόλιν +καί +εἰς +τούς +ἀγρούς +καί +ἦλθον +ἰδεῖν +τί +ἐστιν +τό +γεγονός +καί +ἔρχονται +πρός +τόν +Ἰησοῦν +καί +θεωροῦσιν +τόν +δαιμονιζόμενον +τόν +ἐσχηκότα +τόν +λεγιῶνα +καθήμενον +ἱματισμένον +καί +σωφρονοῦντα +καί +ἐφοβήθησαν +καί +διηγήσαντο +αὐτοῖς +οἱ +ἰδόντες +πῶς +ἐγένετο +τῷ +δαιμονιζομένῳ +καί +περί +τῶν +χοίρων +καί +ἤρξαντο +παρακαλεῖν +αὐτόν +ἀπελθεῖν +ἀπό +τῶν +ὁρίων +αὐτῶν +καί +ἐμβαίνοντος +αὐτοῦ +εἰς +τό +πλοῖον +παρεκάλει +αὐτόν +ὁ +δαιμονισθείς +ἵνα +μετ’ +αὐτοῦ +ᾖ +καί +οὐκ +ἀφῆκεν +αὐτόν +ἀλλά +λέγει +αὐτῷ +Ὕπαγε +εἰς +τόν +οἶκον +σου +πρός +τούς +σούς +καί +ἀπάγγειλον +αὐτοῖς +ὅσα +ὁ +Κύριος +σοι +πεποίηκεν +καί +ἠλέησεν +σε +καί +ἀπῆλθεν +καί +ἤρξατο +κηρύσσειν +ἐν +τῇ +Δεκαπόλει +ὅσα +ἐποίησεν +αὐτῷ +ὁ +Ἰησοῦς +καί +πάντες +ἐθαύμαζον +Καί +διαπεράσαντος +τοῦ +Ἰησοῦ +ἐν +τῷ +πλοίῳ +πάλιν +εἰς +τό +πέραν +συνήχθη +ὄχλος +πολύς +ἐπ’ +αὐτόν +καί +ἦν +παρά +τήν +θάλασσαν +καί +ἔρχεται +εἷς +τῶν +ἀρχισυναγώγων +ὀνόματι +Ἰάειρος +καί +ἰδών +αὐτόν +πίπτει +πρός +τούς +πόδας +αὐτοῦ +καί +παρακαλεῖ +αὐτόν +πολλά +λέγων +ὅτι +Τό +θυγάτριον +μου +ἐσχάτως +ἔχει +ἵνα +ἐλθών +ἐπιθῇς +τάς +χεῖρας +αὐτῇ +ἵνα +σωθῇ +καί +ζήσῃ +καί +ἀπῆλθεν +μετ’ +αὐτοῦ +καί +ἠκολούθει +αὐτῷ +ὄχλος +πολύς +καί +συνέθλιβον +αὐτόν +Καί +γυνή +οὖσα +ἐν +ῥύσει +αἵματος +δώδεκα +ἔτη +καί +πολλά +παθοῦσα +ὑπό +πολλῶν +ἰατρῶν +καί +δαπανήσασα +τά +παρ’ +αὐτῆς +πάντα +καί +μηδέν +ὠφεληθεῖσα +ἀλλά +μᾶλλον +εἰς +τό +χεῖρον +ἐλθοῦσα +ἀκούσασα +τά +περί +τοῦ +Ἰησοῦ +ἐλθοῦσα +ἐν +τῷ +ὄχλῳ +ὄπισθεν +ἥψατο +τοῦ +ἱματίου +αὐτοῦ +γάρ +ἔλεγεν +ὅτι +Ἐάν +ἅψωμαι +κἄν +τῶν +ἱματίων +αὐτοῦ +σωθήσομαι +καί +εὐθύς +ἐξηράνθη +ἡ +πηγή +τοῦ +αἵματος +αὐτῆς +καί +ἔγνω +τῷ +σώματι +ὅτι +ἴαται +ἀπό +τῆς +μάστιγος +καί +εὐθύς +ὁ +Ἰησοῦς +ἐπιγνούς +ἐν +ἑαυτῷ +τήν +ἐξ +αὐτοῦ +δύναμιν +ἐξελθοῦσαν +ἐπιστραφείς +ἐν +τῷ +ὄχλῳ +ἔλεγεν +Τίς +ἥψατο +μου +τῶν +ἱματίων +καί +ἔλεγον +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +Βλέπεις +τόν +ὄχλον +συνθλίβοντα +σε +καί +λέγεις +Τίς +μου +ἥψατο +καί +περιεβλέπετο +ἰδεῖν +τήν +τοῦτο +ποιήσασαν +δέ +ἡ +γυνή +φοβηθεῖσα +καί +τρέμουσα +εἰδυῖα +ὅ +γέγονεν +αὐτῇ +ἦλθεν +καί +προσέπεσεν +αὐτῷ +καί +εἶπεν +αὐτῷ +πᾶσαν +τήν +ἀλήθειαν +δέ +ὁ +εἶπεν +αὐτῇ +Θυγάτηρ +ἡ +πίστις +σου +σέσωκεν +σε +ὕπαγε +εἰς +εἰρήνην +καί +ἴσθι +ὑγιής +ἀπό +τῆς +μάστιγος +σου +Ἔτι +αὐτοῦ +λαλοῦντος +ἔρχονται +ἀπό +τοῦ +ἀρχισυναγώγου +λέγοντες +ὅτι +Ἠ +θυγάτηρ +σου +ἀπέθανεν +τί +ἔτι +σκύλλεις +τόν +διδάσκαλον +δέ +ὁ +Ἰησοῦς +παρακούσας +τόν +λόγον +λαλούμενον +λέγει +τῷ +ἀρχισυναγώγῳ +Μή +φοβοῦ +μόνον +πίστευε +καί +οὐκ +ἀφῆκεν +οὐδένα +μετ’ +αὐτοῦ +συνακολουθῆσαι +εἰ +μή +τόν +Πέτρον +καί +Ἰάκωβον +καί +Ἰωάνην +τόν +ἀδελφόν +Ἰακώβου +καί +ἔρχονται +εἰς +τόν +οἶκον +τοῦ +ἀρχισυναγώγου +καί +θεωρεῖ +θόρυβον +καί +κλαίοντας +καί +ἀλαλάζοντας +πολλά +καί +εἰσελθών +λέγει +αὐτοῖς +Τί +θορυβεῖσθε +καί +κλαίετε +τό +παιδίον +οὐκ +ἀπέθανεν +ἀλλά +καθεύδει +καί +κατεγέλων +αὐτοῦ +δέ +αὐτός +ἐκβαλών +πάντας +παραλαμβάνει +τόν +πατέρα +τοῦ +παιδίου +καί +τήν +μητέρα +καί +τούς +μετ’ +αὐτοῦ +καί +εἰσπορεύεται +ὅπου +ἦν +τό +παιδίον +καί +κρατήσας +τῆς +χειρός +τοῦ +παιδίου +λέγει +αὐτῇ +Ταλιθά +κούμ +ὅ +ἐστιν +μεθερμηνευόμενον +Τό +κοράσιον +σοί +λέγω +ἔγειρε +καί +εὐθύς +ἀνέστη +τό +κοράσιον +καί +περιεπάτει +γάρ +ἦν +ἐτῶν +δώδεκα +καί +ἐξέστησαν +εὐθύς +ἐκστάσει +μεγάλῃ +καί +διεστείλατο +αὐτοῖς +πολλά +ἵνα +μηδείς +γνοῖ +τοῦτο +καί +εἶπεν +δοθῆναι +αὐτῇ +φαγεῖν +Καί +ἐξῆλθεν +ἐκεῖθεν +καί +ἔρχεται +εἰς +τήν +πατρίδα +αὐτοῦ +καί +ἀκολουθοῦσιν +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +καί +γενομένου +σαββάτου +ἤρξατο +διδάσκειν +ἐν +τῇ +συναγωγῇ +καί +οἱ +πολλοί +ἀκούοντες +ἐξεπλήσσοντο +λέγοντες +Πόθεν +τούτῳ +ταῦτα +καί +τίς +ἡ +σοφία +ἡ +δοθεῖσα +τούτῳ +καί +αἱ +δυνάμεις +τοιαῦται +διά +τῶν +χειρῶν +αὐτοῦ +γινόμεναι +οὐχ +οὗτος +ἐστιν +ὁ +τέκτων +ὁ +υἱός +τῆς +Μαρίας +καί +ἀδελφός +Ἰακώβου +καί +Ἰωσῆτος +καί +Ἰούδα +καί +Σίμωνος +καί +οὐκ +εἰσίν +αἱ +ἀδελφαί +αὐτοῦ +ὧδε +πρός +ἡμᾶς +καί +ἐσκανδαλίζοντο +ἐν +αὐτῷ +καί +ἔλεγεν +αὐτοῖς +ὁ +Ἰησοῦς +ὅτι +Οὐκ +ἔστιν +προφήτης +ἄτιμος +εἰ +μή +ἐν +τῇ +πατρίδι +αὐτοῦ +καί +ἐν +τοῖς +συγγενεῦσιν +αὐτοῦ +καί +ἐν +τῇ +οἰκίᾳ +αὐτοῦ +καί +οὐκ +ἐδύνατο +ἐκεῖ +ποιῆσαι +οὐδεμίαν +δύναμιν +εἰ +μή +ὀλίγοις +ἀρρώστοις +ἐπιθείς +τάς +χεῖρας +ἐθεράπευσεν +καί +ἐθαύμασεν +διά +τήν +ἀπιστίαν +αὐτῶν +Καί +περιῆγεν +τάς +κώμας +κύκλῳ +διδάσκων +Καί +προσκαλεῖται +τούς +δώδεκα +καί +ἤρξατο +αὐτούς +ἀποστέλλειν +δύο +δύο +καί +ἐδίδου +αὐτοῖς +ἐξουσίαν +τῶν +πνευμάτων +τῶν +ἀκαθάρτων +καί +παρήγγειλεν +αὐτοῖς +ἵνα +μηδέν +αἴρωσιν +εἰς +ὁδόν +εἰ +μή +ῥάβδον +μόνον +μή +ἄρτον +μή +πήραν +μή +εἰς +τήν +ζώνην +χαλκόν +ἀλλά +ὑποδεδεμένους +σανδάλια +καί +μή +ἐνδύσησθε +δύο +χιτῶνας +καί +ἔλεγεν +αὐτοῖς +ἐάν +Ὅπου +εἰσέλθητε +εἰς +οἰκίαν +ἐκεῖ +μένετε +ἕως +ἄν +ἐξέλθητε +ἐκεῖθεν +καί +ἄν +ὅς +τόπος +μή +δέξηται +ὑμᾶς +μηδέ +ἀκούσωσιν +ὑμῶν +ἐκπορευόμενοι +ἐκεῖθεν +ἐκτινάξατε +τόν +χοῦν +τόν +ὑποκάτω +τῶν +ποδῶν +ὑμῶν +εἰς +μαρτύριον +αὐτοῖς +Καί +ἐξελθόντες +ἐκήρυξαν +ἵνα +μετανοῶσιν +καί +δαιμόνια +πολλά +ἐξέβαλλον +καί +ἤλειφον +ἐλαίῳ +πολλούς +ἀρρώστους +καί +ἐθεράπευον +Καί +ἤκουσεν +ὁ +βασιλεύς +Ἠρῴδης +γάρ +φανερόν +ἐγένετο +τό +ὄνομα +αὐτοῦ +καί +ἔλεγον +ὅτι +Ἰωάνης +ὁ +Βαπτίζων +ἐγήγερται +ἐκ +νεκρῶν +καί +διά +τοῦτο +ἐνεργοῦσιν +αἱ +δυνάμεις +ἐν +αὐτῷ +δέ +ἄλλοι +ἔλεγον +ὅτι +Ἠλείας +ἐστίν +δέ +ἄλλοι +ἔλεγον +ὅτι +προφήτης +ὡς +εἷς +τῶν +προφητῶν +δέ +ἀκούσας +ὁ +Ἠρῴδης +ἔλεγεν +Ὅν +ἐγώ +ἀπεκεφάλισα +Ἰωάνην +οὗτος +ἠγέρθη +γάρ +Αὐτός +ὁ +Ἠρῴδης +ἀποστείλας +ἐκράτησεν +τόν +Ἰωάνην +καί +ἔδησεν +αὐτόν +ἐν +φυλακῇ +διά +Ἠρῳδιάδα +τήν +γυναῖκα +Φιλίππου +τοῦ +ἀδελφοῦ +αὐτοῦ +ὅτι +αὐτήν +ἐγάμησεν +γάρ +ἔλεγεν +ὁ +Ἰωάνης +τῷ +Ἠρῴδῃ +ὅτι +Οὐκ +ἔξεστιν +σοι +ἔχειν +τήν +γυναῖκα +τοῦ +ἀδελφοῦ +σου +δέ +ἡ +Ἠρῳδιάς +ἐνεῖχεν +αὐτῷ +καί +ἤθελεν +αὐτόν +ἀποκτεῖναι +καί +οὐκ +ἠδύνατο +γάρ +ὁ +Ἠρῴδης +ἐφοβεῖτο +τόν +Ἰωάνην +εἰδώς +αὐτόν +ἄνδρα +δίκαιον +καί +ἅγιον +καί +συνετήρει +αὐτόν +καί +ἀκούσας +αὐτοῦ +πολλά +ἠπόρει +καί +ἡδέως +αὐτοῦ +ἤκουεν +Καί +γενομένης +ἡμέρας +εὐκαίρου +ὅτε +Ἠρῴδης +τοῖς +γενεσίοις +αὐτοῦ +δεῖπνον +ἐποίησεν +τοῖς +μεγιστᾶσιν +αὐτοῦ +καί +τοῖς +χιλιάρχοις +καί +τοῖς +πρώτοις +τῆς +Γαλιλαίας +καί +εἰσελθούσης +τῆς +θυγατρός +αὐτῆς +τῆς +Ἠρῳδιάδος +καί +ὀρχησαμένης +ἤρεσεν +τῷ +Ἠρῴδῃ +καί +τοῖς +συνανακειμένοις +δέ +ὁ +βασιλεύς +εἶπεν +τῷ +κορασίῳ +Αἴτησον +με +ἐάν +ὅ +θέλῃς +καί +δώσω +σοι +καί +ὤμοσεν +αὐτῇ +Ὅτι +ἐάν +με +αἰτήσῃς +δώσω +σοι +ἕως +ἡμίσους +τῆς +βασιλείας +μου +καί +ἐξελθοῦσα +εἶπεν +τῇ +μητρί +αὐτῆς +Τί +αἰτήσωμαι +δέ +ἡ +εἶπεν +Τήν +κεφαλήν +Ἰωάνου +τοῦ +Βαπτίζοντος +καί +εἰσελθοῦσα +εὐθύς +μετά +σπουδῆς +πρός +τόν +βασιλέα +ᾐτήσατο +λέγουσα +Θέλω +ἵνα +ἐξαυτῆς +δῷς +μοι +ἐπί +πίνακι +τήν +κεφαλήν +Ἰωάνου +τοῦ +Βαπτιστοῦ +καί +περίλυπος +γενόμενος +ὁ +βασιλεύς +διά +τούς +ὅρκους +καί +τούς +ἀνακειμένους +οὐκ +ἠθέλησεν +ἀθετῆσαι +αὐτήν +καί +εὐθύς +ἀποστείλας +σπεκουλάτορα +ὁ +βασιλεύς +ἐπέταξεν +ἐνέγκαι +τήν +κεφαλήν +αὐτοῦ +καί +ἀπελθών +ἀπεκεφάλισεν +αὐτόν +ἐν +τῇ +φυλακῇ +καί +ἤνεγκεν +τήν +κεφαλήν +αὐτοῦ +ἐπί +πίνακι +καί +ἔδωκεν +αὐτήν +τῷ +κορασίῳ +καί +τό +κοράσιον +ἔδωκεν +αὐτήν +τῇ +μητρί +αὐτῆς +καί +ἀκούσαντες +οἱ +μαθηταί +αὐτοῦ +ἦλθαν +καί +ἦραν +τό +πτῶμα +αὐτοῦ +καί +ἔθηκαν +αὐτό +ἐν +μνημείῳ +Καί +συνάγονται +οἱ +ἀπόστολοι +πρός +τόν +Ἰησοῦν +καί +ἀπήγγειλαν +αὐτῷ +πάντα +ὅσα +ἐποίησαν +καί +ὅσα +ἐδίδαξαν +καί +λέγει +αὐτοῖς +Δεῦτε +ὑμεῖς +αὐτοί +κατ’ +ἰδίαν +εἰς +ἔρημον +τόπον +καί +ἀναπαύσασθε +ὀλίγον +γάρ +ἦσαν +οἱ +ἐρχόμενοι +καί +οἱ +ὑπάγοντες +πολλοί +καί +οὐδέ +φαγεῖν +εὐκαίρουν +καί +ἀπῆλθον +ἐν +τῷ +πλοίῳ +εἰς +ἔρημον +τόπον +κατ’ +ἰδίαν +καί +εἶδον +αὐτούς +ὑπάγοντας +καί +ἐπέγνωσαν +πολλοί +καί +πεζῇ +ἀπό +πασῶν +τῶν +πόλεων +συνέδραμον +ἐκεῖ +καί +προῆλθον +αὐτούς +Καί +ἐξελθών +εἶδεν +πολύν +ὄχλον +καί +ἐσπλαγχνίσθη +ἐπ’ +αὐτούς +ὅτι +ἦσαν +ὡς +πρόβατα +μή +ἔχοντα +ποιμένα +καί +ἤρξατο +διδάσκειν +αὐτούς +πολλά +Καί +ἤδη +ὥρας +πολλῆς +γενομένης +προσελθόντες +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +ἔλεγον +ὅτι +Ἔρημος +ἐστιν +ὁ +τόπος +καί +ἤδη +ὥρα +πολλή +ἀπόλυσον +αὐτούς +ἵνα +ἀπελθόντες +εἰς +τούς +κύκλῳ +ἀγρούς +καί +κώμας +ἀγοράσωσιν +ἑαυτοῖς +τί +φάγωσιν +δέ +ὁ +ἀποκριθείς +εἶπεν +αὐτοῖς +Δότε +αὐτοῖς +ὑμεῖς +φαγεῖν +καί +λέγουσιν +αὐτῷ +Ἀπελθόντες +ἀγοράσωμεν +δηναρίων +διακοσίων +ἄρτους +καί +δώσομεν +αὐτοῖς +φαγεῖν +δέ +ὁ +λέγει +αὐτοῖς +Πόσους +ἄρτους +ἔχετε +ὑπάγετε +ἴδετε +καί +γνόντες +λέγουσιν +Πέντε +καί +δύο +ἰχθύας +καί +ἐπέταξεν +αὐτοῖς +ἀνακλιθῆναι +πάντας +συμπόσια +συμπόσια +ἐπί +τῷ +χλωρῷ +χόρτῳ +καί +ἀνέπεσαν +πρασιαί +πρασιαί +κατά +ἑκατόν +καί +κατά +πεντήκοντα +καί +λαβών +τούς +πέντε +ἄρτους +καί +τούς +δύο +ἰχθύας +ἀναβλέψας +εἰς +τόν +οὐρανόν +εὐλόγησεν +καί +κατέκλασεν +τούς +ἄρτους +καί +ἐδίδου +τοῖς +μαθηταῖς +ἵνα +παρατιθῶσιν +αὐτοῖς +καί +τούς +δύο +ἰχθύας +ἐμέρισεν +πᾶσιν +καί +ἔφαγον +πάντες +καί +ἐχορτάσθησαν +καί +ἦραν +κλάσματα +δώδεκα +κοφίνων +πληρώματα +καί +ἀπό +τῶν +ἰχθύων +καί +ἦσαν +οἱ +φαγόντες +τούς +ἄρτους +πεντακισχίλιοι +ἄνδρες +Καί +εὐθύς +ἠνάγκασεν +τούς +μαθητάς +αὐτοῦ +ἐμβῆναι +εἰς +τό +πλοῖον +καί +προάγειν +εἰς +τό +πέραν +πρός +Βηθσαϊδάν +ἕως +αὐτός +ἀπολύει +τόν +ὄχλον +καί +ἀποταξάμενος +αὐτοῖς +ἀπῆλθεν +εἰς +τό +ὄρος +προσεύξασθαι +καί +ὀψίας +γενομένης +ἦν +τό +πλοῖον +ἐν +μέσῳ +τῆς +θαλάσσης +καί +αὐτός +μόνος +ἐπί +τῆς +γῆς +καί +ἰδών +αὐτούς +βασανιζομένους +ἐν +τῷ +ἐλαύνειν +γάρ +ἦν +ὁ +ἄνεμος +ἐναντίος +αὐτοῖς +περί +τετάρτην +φυλακήν +τῆς +νυκτός +ἔρχεται +πρός +αὐτούς +περιπατῶν +ἐπί +τῆς +θαλάσσης +καί +ἤθελεν +παρελθεῖν +αὐτούς +δέ +οἱ +ἰδόντες +αὐτόν +ἐπί +τῆς +θαλάσσης +περιπατοῦντα +ἔδοξαν +ὅτι +φάντασμα +ἐστιν +καί +ἀνέκραξαν +γάρ +πάντες +αὐτόν +εἶδαν +καί +ἐταράχθησαν +δέ +ὁ +εὐθύς +ἐλάλησεν +μετ’ +αὐτῶν +καί +λέγει +αὐτοῖς +Θαρσεῖτε +ἐγώ +εἰμι +μή +φοβεῖσθε +καί +ἀνέβη +πρός +αὐτούς +εἰς +τό +πλοῖον +καί +ἐκόπασεν +ὁ +ἄνεμος +καί +λίαν +ἐκ +περισσοῦ +ἐν +ἑαυτοῖς +ἐξίσταντο +γάρ +οὐ +συνῆκαν +ἐπί +τοῖς +ἄρτοις +ἀλλ’ +ἦν +πεπωρωμένη +αὐτῶν +ἡ +καρδία +Καί +διαπεράσαντες +ἐπί +τήν +γῆν +ἦλθον +εἰς +Γεννησαρέτ +καί +προσωρμίσθησαν +καί +ἐξελθόντων +αὐτῶν +ἐκ +τοῦ +πλοίου +εὐθύς +ἐπιγνόντες +αὐτόν +περιέδραμον +ὅλην +τήν +χώραν +ἐκείνην +καί +ἤρξαντο +ἐπί +τοῖς +κραβάττοις +τούς +κακῶς +ἔχοντας +περιφέρειν +ὅπου +ἤκουον +ὅτι +ἐστίν +καί +ἄν +ὅπου +εἰσεπορεύετο +εἰς +κώμας +ἤ +εἰς +πόλεις +ἤ +εἰς +ἀγρούς +ἐν +ταῖς +ἀγοραῖς +ἐτίθεσαν +τούς +ἀσθενοῦντας +καί +παρεκάλουν +αὐτόν +ἵνα +κἄν +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ +ἅψωνται +καί +ἄν +ὅσοι +ἥψαντο +αὐτοῦ +ἐσῴζοντο +Καί +συνάγονται +πρός +αὐτόν +οἱ +Φαρισαῖοι +καί +τινες +τῶν +γραμματέων +ἐλθόντες +ἀπό +Ἱεροσολύμων +καί +ἰδόντες +τινάς +τῶν +μαθητῶν +αὐτοῦ +ὅτι +κοιναῖς +χερσίν +τοῦτ’ +ἔστιν +ἀνίπτοις +ἐσθίουσιν +τούς +ἄρτους +γάρ +οἱ +Φαρισαῖοι +καί +πάντες +οἱ +Ἰουδαῖοι +ἐάν +μή +πυγμῇ +νίψωνται +τάς +χεῖρας +οὐκ +ἐσθίουσιν +κρατοῦντες +τήν +παράδοσιν +τῶν +πρεσβυτέρων +καί +ἀπ’ +ἀγορᾶς +ἐάν +μή +ῥαντίσωνται +οὐκ +ἐσθίουσιν +καί +ἄλλα +πολλά +ἐστιν +ἅ +παρέλαβον +κρατεῖν +βαπτισμούς +ποτηρίων +καί +ξεστῶν +καί +χαλκίων +καί +ἐπερωτῶσιν +αὐτόν +οἱ +Φαρισαῖοι +καί +οἱ +γραμματεῖς +Διά +τί +οὐ +περιπατοῦσιν +οἱ +μαθηταί +σου +κατά +τήν +παράδοσιν +τῶν +πρεσβυτέρων +ἀλλά +κοιναῖς +χερσίν +ἐσθίουσιν +τόν +ἄρτον +δέ +ὁ +εἶπεν +αὐτοῖς +Καλῶς +ἐπροφήτευσεν +Ἠσαΐας +περί +ὑμῶν +τῶν +ὑποκριτῶν +ὡς +γέγραπται +ὅτι +Οὗτος +ὁ +λαός +τοῖς +χείλεσιν +με +τιμᾷ +δέ +ἡ +καρδία +αὐτῶν +πόρρω +ἀπέχει +ἀπ’ +ἐμοῦ +δέ +μάτην +σέβονται +με +διδάσκοντες +διδασκαλίας +ἐντάλματα +ἀνθρώπων +ἀφέντες +τήν +ἐντολήν +τοῦ +Θεοῦ +κρατεῖτε +τήν +παράδοσιν +τῶν +ἀνθρώπων +καί +ἔλεγεν +αὐτοῖς +Καλῶς +ἀθετεῖτε +τήν +ἐντολήν +τοῦ +Θεοῦ +ἵνα +τήν +παράδοσιν +ὑμῶν +τηρήσητε +γάρ +Μωϋσῆς +εἶπεν +Τίμα +τόν +πατέρα +σου +καί +τήν +μητέρα +σου +καί +Ὁ +κακολογῶν +πατέρα +ἤ +μητέρα +θανάτῳ +τελευτάτω +δέ +ὑμεῖς +λέγετε +Ἐάν +εἴπῃ +ἄνθρωπος +τῷ +πατρί +ἤ +τῇ +μητρί +Κορβᾶν +ὅ +ἐστιν +Δῶρον +ἐάν +ὅ +ἐξ +ἐμοῦ +ὠφεληθῇς +οὐκέτι +ἀφίετε +αὐτόν +οὐδέν +ποιῆσαι +τῷ +πατρί +ἤ +τῇ +μητρί +ἀκυροῦντες +τόν +λόγον +τοῦ +Θεοῦ +τῇ +παραδόσει +ὑμῶν +ᾗ +παρεδώκατε +καί +παρόμοια +τοιαῦτα +πολλά +ποιεῖτε +Καί +προσκαλεσάμενος +πάλιν +τόν +ὄχλον +ἔλεγεν +αὐτοῖς +Ἀκούσατε +μου +πάντες +καί +σύνετε +οὐδέν +ἐστιν +ἔξωθεν +τοῦ +ἀνθρώπου +εἰσπορευόμενον +εἰς +αὐτόν +ὅ +δύναται +κοινῶσαι +αὐτόν +ἀλλά +τά +ἐκ +τοῦ +ἀνθρώπου +ἐκπορευόμενα +ἐστιν +τά +κοινοῦντα +τόν +ἄνθρωπον +Καί +ὅτε +εἰσῆλθεν +εἰς +οἶκον +ἀπό +τοῦ +ὄχλου +ἐπηρώτων +αὐτόν +οἱ +μαθηταί +αὐτοῦ +τήν +παραβολήν +καί +λέγει +αὐτοῖς +Οὕτως +καί +ὑμεῖς +ἀσύνετοι +ἐστε +οὐ +νοεῖτε +ὅτι +πᾶν +τό +ἔξωθεν +εἰσπορευόμενον +εἰς +τόν +ἄνθρωπον +οὐ +δύναται +αὐτόν +κοινῶσαι +ὅτι +οὐκ +εἰσπορεύεται +εἰς +αὐτοῦ +τήν +καρδίαν +ἀλλ’ +εἰς +τήν +κοιλίαν +καί +εἰς +τόν +ἀφεδρῶνα +ἐκπορεύεται +καθαρίζων +πάντα +τά +βρώματα +δέ +ἔλεγεν +ὅτι +Τό +ἐκ +τοῦ +ἀνθρώπου +ἐκπορευόμενον +ἐκεῖνο +κοινοῖ +τόν +ἄνθρωπον +γάρ +ἔσωθεν +ἐκ +τῆς +καρδίας +τῶν +ἀνθρώπων +οἱ +διαλογισμοί +οἱ +κακοί +ἐκπορεύονται +πορνεῖαι +κλοπαί +φόνοι +μοιχεῖαι +πλεονεξίαι +πονηρίαι +δόλος +ἀσέλγεια +ὀφθαλμός +πονηρός +βλασφημία +ὑπερηφανία +ἀφροσύνη +πάντα +ταῦτα +τά +πονηρά +ἔσωθεν +ἐκπορεύεται +καί +κοινοῖ +τόν +ἄνθρωπον +δέ +Ἐκεῖθεν +ἀναστάς +ἀπῆλθεν +εἰς +τά +ὅρια +Τύρου +Καί +εἰσελθών +εἰς +οἰκίαν +οὐδένα +γνῶναι +ἤθελεν +καί +οὐκ +ἠδυνάσθη +λαθεῖν +ἀλλ’ +εὐθύς +ἀκούσασα +περί +αὐτοῦ +γυνή +ἧς +τό +θυγάτριον +αὐτῆς +εἶχεν +πνεῦμα +ἀκάθαρτον +ἐλθοῦσα +προσέπεσεν +πρός +τούς +πόδας +αὐτοῦ +δέ +ἡ +γυνή +ἦν +Ἑλληνίς +Συροφοινίκισσα +τῷ +γένει +καί +ἠρώτα +αὐτόν +ἵνα +τό +δαιμόνιον +ἐκβάλῃ +ἐκ +τῆς +θυγατρός +αὐτῆς +καί +ἔλεγεν +αὐτῇ +Ἄφες +πρῶτον +χορτασθῆναι +τά +τέκνα +γάρ +οὐ +ἐστιν +καλόν +λαβεῖν +τόν +ἄρτον +τῶν +τέκνων +καί +τοῖς +κυναρίοις +βαλεῖν +δέ +ἡ +ἀπεκρίθη +καί +λέγει +αὐτῷ +Ναί +Κύριε +καί +τά +κυνάρια +ὑποκάτω +τῆς +τραπέζης +ἐσθίουσιν +ἀπό +τῶν +ψιχίων +τῶν +παιδίων +καί +εἶπεν +αὐτῇ +Διά +τοῦτον +τόν +λόγον +ὕπαγε +ἐξελήλυθεν +ἐκ +τῆς +θυγατρός +σου +τό +δαιμόνιον +καί +ἀπελθοῦσα +εἰς +τόν +οἶκον +αὐτῆς +εὗρεν +τό +παιδίον +βεβλημένον +ἐπί +τήν +κλίνην +καί +τό +δαιμόνιον +ἐξεληλυθός +Καί +πάλιν +ἐξελθών +ἐκ +τῶν +ὁρίων +Τύρου +ἦλθεν +διά +Σιδῶνος +εἰς +τήν +θάλασσαν +τῆς +Γαλιλαίας +ἀνά +μέσον +τῶν +ὁρίων +Δεκαπόλεως +Καί +φέρουσιν +αὐτῷ +κωφόν +καί +μογιλάλον +καί +παρακαλοῦσιν +αὐτόν +ἵνα +ἐπιθῇ +αὐτῷ +τήν +χεῖρα +καί +ἀπολαβόμενος +αὐτόν +ἀπό +τοῦ +ὄχλου +κατ’ +ἰδίαν +ἔβαλεν +τούς +δακτύλους +αὐτοῦ +εἰς +τά +ὦτα +αὐτοῦ +καί +πτύσας +ἥψατο +τῆς +γλώσσης +αὐτοῦ +καί +ἀναβλέψας +εἰς +τόν +οὐρανόν +ἐστέναξεν +καί +λέγει +αὐτῷ +Ἐφφαθά +ὅ +ἐστιν +Διανοίχθητι +καί +ἠνοίγησαν +αὐτοῦ +αἱ +ἀκοαί +καί +εὐθύς +ἐλύθη +ὁ +δεσμός +τῆς +γλώσσης +αὐτοῦ +καί +ἐλάλει +ὀρθῶς +καί +διεστείλατο +αὐτοῖς +ἵνα +μηδενί +λέγωσιν +δέ +ὅσον +αὐτοῖς +διεστέλλετο +αὐτοί +μᾶλλον +περισσότερον +ἐκήρυσσον +καί +ὑπερπερισσῶς +ἐξεπλήσσοντο +λέγοντες +Καλῶς +πάντα +πεποίηκεν +καί +ποιεῖ +τούς +κωφούς +ἀκούειν +καί +ἀλάλους +λαλεῖν +Ἐν +ἐκείναις +ταῖς +ἡμέραις +πάλιν +πολλοῦ +ὄχλου +ὄντος +καί +μή +ἐχόντων +τί +φάγωσιν +προσκαλεσάμενος +τούς +μαθητάς +λέγει +αὐτοῖς +Σπλαγχνίζομαι +ἐπί +τόν +ὄχλον +ὅτι +ἤδη +ἡμέραι +τρεῖς +προσμένουσιν +μοι +καί +οὐκ +ἔχουσιν +τί +φάγωσιν +καί +ἐάν +ἀπολύσω +αὐτούς +νήστεις +εἰς +οἶκον +αὐτῶν +ἐκλυθήσονται +ἐν +τῇ +ὁδῷ +καί +τινες +αὐτῶν +ἀπό +μακρόθεν +εἰσίν +καί +ἀπεκρίθησαν +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +ὅτι +Πόθεν +δυνήσεται +τις +τούτους +ὧδε +χορτάσαι +ἄρτων +ἐπ’ +ἐρημίας +καί +ἠρώτα +αὐτούς +Πόσους +ἄρτους +ἔχετε +δέ +οἱ +εἶπαν +Ἑπτά +καί +παραγγέλλει +τῷ +ὄχλῳ +ἀναπεσεῖν +ἐπί +τῆς +γῆς +καί +λαβών +τούς +ἑπτά +ἄρτους +εὐχαριστήσας +ἔκλασεν +καί +ἐδίδου +τοῖς +μαθηταῖς +αὐτοῦ +ἵνα +παρατιθῶσιν +καί +παρέθηκαν +τῷ +ὄχλῳ +καί +εἶχαν +ἰχθύδια +ὀλίγα +καί +εὐλογήσας +αὐτά +εἶπεν +καί +ταῦτα +παρατιθέναι +καί +ἔφαγον +καί +ἐχορτάσθησαν +καί +ἦραν +περισσεύματα +κλασμάτων +ἑπτά +σπυρίδας +δέ +ἦσαν +ὡς +τετρακισχίλιοι +καί +ἀπέλυσεν +αὐτούς +Καί +εὐθύς +ἐμβάς +εἰς +τό +πλοῖον +μετά +τῶν +μαθητῶν +αὐτοῦ +ἦλθεν +εἰς +τά +μέρη +Δαλμανουθά +Καί +ἐξῆλθον +οἱ +Φαρισαῖοι +καί +ἤρξαντο +συνζητεῖν +αὐτῷ +ζητοῦντες +παρ’ +αὐτοῦ +σημεῖον +ἀπό +τοῦ +οὐρανοῦ +πειράζοντες +αὐτόν +καί +ἀναστενάξας +τῷ +πνεύματι +αὐτοῦ +λέγει +Τί +ἡ +γενεά +αὕτη +ζητεῖ +σημεῖον +ἀμήν +λέγω +ὑμῖν +εἰ +δοθήσεται +τῇ +γενεᾷ +ταύτῃ +σημεῖον +καί +ἀφείς +αὐτούς +πάλιν +ἐμβάς +ἀπῆλθεν +εἰς +τό +πέραν +Καί +ἐπελάθοντο +λαβεῖν +ἄρτους +καί +εἰ +μή +ἕνα +ἄρτον +οὐκ +εἶχον +μεθ’ +ἑαυτῶν +ἐν +τῷ +πλοίῳ +καί +διεστέλλετο +αὐτοῖς +λέγων +Ὁρᾶτε +βλέπετε +ἀπό +τῆς +ζύμης +τῶν +Φαρισαίων +καί +τῆς +ζύμης +Ἠρῴδου +καί +διελογίζοντο +πρός +ἀλλήλους +ὅτι +ἄρτους +οὐκ +ἔχουσιν +καί +γνούς +λέγει +αὐτοῖς +Τί +διαλογίζεσθε +ὅτι +ἄρτους +οὐκ +ἔχετε +οὔπω +νοεῖτε +οὐδέ +συνίετε +πεπωρωμένην +ἔχετε +τήν +καρδίαν +ὑμῶν +ὀφθαλμούς +ἔχοντες +οὐ +βλέπετε +καί +ὦτα +ἔχοντες +οὐκ +ἀκούετε +καί +οὐ +μνημονεύετε +ὅτε +τούς +πέντε +ἄρτους +ἔκλασα +εἰς +τούς +πεντακισχιλίους +πόσους +κοφίνους +κλασμάτων +πλήρεις +ἤρατε +λέγουσιν +αὐτῷ +Δώδεκα +ὅτε +τούς +ἑπτά +εἰς +τούς +τετρακισχιλίους +πόσων +σπυρίδων +πληρώματα +κλασμάτων +ἤρατε +καί +λέγουσιν +Ἑπτά +καί +ἔλεγεν +αὐτοῖς +Οὔπω +συνίετε +Καί +ἔρχονται +εἰς +Βηθσαϊδάν +Καί +φέρουσιν +αὐτῷ +τυφλόν +καί +παρακαλοῦσιν +αὐτόν +ἵνα +αὐτοῦ +ἅψηται +καί +ἐπιλαβόμενος +τῆς +χειρός +τοῦ +τυφλοῦ +ἐξήνεγκεν +αὐτόν +ἔξω +τῆς +κώμης +καί +πτύσας +εἰς +τά +ὄμματα +αὐτοῦ +ἐπιθείς +τάς +χεῖρας +αὐτῷ +ἐπηρώτα +αὐτόν +Εἴ +τι +βλέπεις +καί +ἀναβλέψας +ἔλεγεν +Βλέπω +τούς +ἀνθρώπους +ὅτι +ὡς +δένδρα +περιπατοῦντας +ὁρῶ +εἶτα +πάλιν +ἐπέθηκεν +τάς +χεῖρας +ἐπί +τούς +ὀφθαλμούς +αὐτοῦ +καί +διέβλεψεν +καί +ἀπεκατέστη +καί +ἐνέβλεπεν +τηλαυγῶς +ἅπαντα +καί +ἀπέστειλεν +αὐτόν +εἰς +οἶκον +αὐτοῦ +λέγων +Μηδέ +εἰς +τήν +κώμην +εἰσέλθῃς +Καί +ἐξῆλθεν +ὁ +Ἰησοῦς +καί +οἱ +μαθηταί +αὐτοῦ +εἰς +τάς +κώμας +Καισαρίας +τῆς +Φιλίππου +καί +ἐν +τῇ +ὁδῷ +ἐπηρώτα +τούς +μαθητάς +αὐτοῦ +λέγων +αὐτοῖς +Τίνα +με +εἶναι +λέγουσιν +οἱ +ἄνθρωποι +δέ +οἱ +εἶπαν +αὐτῷ +λέγοντες +ὅτι +Ἰωάνην +τόν +Βαπτιστήν +καί +ἄλλοι +Ἠλείαν +δέ +ἄλλοι +ὅτι +εἷς +τῶν +προφητῶν +καί +αὐτός +ἐπηρώτα +αὐτούς +δέ +Ὑμεῖς +τίνα +με +εἶναι +λέγετε +ἀποκριθείς +ὁ +Πέτρος +λέγει +αὐτῷ +Σύ +εἶ +ὁ +Χριστός +καί +ἐπετίμησεν +αὐτοῖς +ἵνα +μηδενί +λέγωσιν +περί +αὐτοῦ +Καί +ἤρξατο +διδάσκειν +αὐτούς +ὅτι +δεῖ +τόν +Υἱόν +τοῦ +ἀνθρώπου +πολλά +παθεῖν +καί +ἀποδοκιμασθῆναι +ὑπό +τῶν +πρεσβυτέρων +καί +τῶν +ἀρχιερέων +καί +τῶν +γραμματέων +καί +ἀποκτανθῆναι +καί +μετά +τρεῖς +ἡμέρας +ἀναστῆναι +καί +παρρησίᾳ +τόν +λόγον +ἐλάλει +καί +ὁ +Πέτρος +προσλαβόμενος +αὐτόν +ἤρξατο +ἐπιτιμᾶν +αὐτῷ +δέ +ὁ +ἐπιστραφείς +καί +ἰδών +τούς +μαθητάς +αὐτοῦ +ἐπετίμησεν +Πέτρῳ +καί +λέγει +Ὕπαγε +ὀπίσω +μου +Σατανᾶ +ὅτι +οὐ +φρονεῖς +τά +τοῦ +Θεοῦ +ἀλλά +τά +τῶν +ἀνθρώπων +Καί +προσκαλεσάμενος +τόν +ὄχλον +σύν +τοῖς +μαθηταῖς +αὐτοῦ +εἶπεν +αὐτοῖς +Εἴ +τις +θέλει +ὀπίσω +μου +ἐλθεῖν +ἀπαρνησάσθω +ἑαυτόν +καί +ἀράτω +τόν +σταυρόν +αὐτοῦ +καί +ἀκολουθείτω +μοι +γάρ +ἐάν +ὅς +θέλῃ +τήν +ψυχήν +αὐτοῦ +σῶσαι +ἀπολέσει +αὐτήν +δ’ +ἄν +ὅς +ἀπολέσει +τήν +ψυχήν +αὐτοῦ +ἕνεκεν +ἐμοῦ +καί +τοῦ +εὐαγγελίου +σώσει +αὐτήν +γάρ +τί +ὠφελεῖ +ἄνθρωπον +κερδῆσαι +τόν +κόσμον +ὅλον +καί +ζημιωθῆναι +τήν +ψυχήν +αὐτοῦ +γάρ +τί +δοῖ +ἄνθρωπος +ἀντάλλαγμα +τῆς +ψυχῆς +αὐτοῦ +γάρ +ἐάν +ὅς +ἐπαισχυνθῇ +με +καί +τούς +ἐμούς +λόγους +ἐν +τῇ +γενεᾷ +ταύτῃ +τῇ +μοιχαλίδι +καί +ἁμαρτωλῷ +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐπαισχυνθήσεται +αὐτόν +ὅταν +ἔλθῃ +ἐν +τῇ +δόξῃ +τοῦ +Πατρός +αὐτοῦ +μετά +τῶν +ἀγγέλων +τῶν +ἁγίων +καί +ἔλεγεν +αὐτοῖς +Ἀμήν +λέγω +ὑμῖν +ὅτι +εἰσίν +τινες +τῶν +ὧδε +ἑστηκότων +οἵτινες +οὐ +μή +γεύσωνται +θανάτου +ἕως +ἄν +ἴδωσιν +τήν +βασιλείαν +τοῦ +Θεοῦ +ἐληλυθυῖαν +ἐν +δυνάμει +Καί +μετά +ἡμέρας +ἕξ +παραλαμβάνει +ὁ +Ἰησοῦς +τόν +Πέτρον +καί +τόν +Ἰάκωβον +καί +Ἰωάνην +καί +ἀναφέρει +αὐτούς +εἰς +ὄρος +ὑψηλόν +κατ’ +ἰδίαν +μόνους +καί +μετεμορφώθη +ἔμπροσθεν +αὐτῶν +καί +τά +ἱμάτια +αὐτοῦ +ἐγένετο +στίλβοντα +λευκά +λίαν +οἷα +γναφεύς +ἐπί +τῆς +γῆς +οὐ +δύναται +οὕτως +λευκᾶναι +καί +ὤφθη +αὐτοῖς +Ἠλείας +σύν +Μωϋσεῖ +καί +ἦσαν +συνλαλοῦντες +τῷ +Ἰησοῦ +καί +ἀποκριθείς +ὁ +Πέτρος +λέγει +τῷ +Ἰησοῦ +Ῥαββεί +καλόν +ἐστιν +ἡμᾶς +ὧδε +εἶναι +καί +ποιήσωμεν +τρεῖς +σκηνάς +σοί +μίαν +καί +Μωϋσεῖ +μίαν +καί +Ἠλείᾳ +μίαν +γάρ +οὐ +ᾔδει +τί +ἀποκριθῇ +γάρ +ἔκφοβοι +ἐγένοντο +καί +ἐγένετο +νεφέλη +ἐπισκιάζουσα +αὐτοῖς +καί +ἐγένετο +φωνή +ἐκ +τῆς +νεφέλης +Οὗτος +ἐστιν +ὁ +Υἱός +μου +ὁ +ἀγαπητός +ἀκούετε +αὐτοῦ +καί +ἐξάπινα +περιβλεψάμενοι +οὐκέτι +οὐδένα +εἶδον +ἀλλά +τόν +Ἰησοῦν +μόνον +μεθ’ +ἑαυτῶν +Καί +καταβαινόντων +αὐτῶν +ἐκ +τοῦ +ὄρους +διεστείλατο +αὐτοῖς +ἵνα +μηδενί +ἅ +εἶδον +διηγήσωνται +εἰ +μή +ὅταν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐκ +νεκρῶν +ἀναστῇ +καί +τόν +λόγον +ἐκράτησαν +πρός +ἑαυτούς +συνζητοῦντες +τί +ἐστιν +τό +ἐκ +νεκρῶν +ἀναστῆναι +καί +ἐπηρώτων +αὐτόν +λέγοντες +Ὅτι +λέγουσιν +οἱ +γραμματεῖς +ὅτι +δεῖ +Ἠλείαν +ἐλθεῖν +πρῶτον +δέ +ὁ +ἔφη +αὐτοῖς +μέν +Ἠλείας +ἐλθών +πρῶτον +ἀποκαθιστάνει +πάντα +καί +πῶς +γέγραπται +ἐπί +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἵνα +πολλά +πάθῃ +καί +ἐξουδενηθῇ +ἀλλά +λέγω +ὑμῖν +ὅτι +καί +Ἠλείας +ἐλήλυθεν +καί +ἐποίησαν +αὐτῷ +ὅσα +ἤθελον +καθώς +γέγραπται +ἐπ’ +αὐτόν +Καί +ἐλθόντες +πρός +τούς +μαθητάς +εἶδον +ὄχλον +πολύν +περί +αὐτούς +καί +γραμματεῖς +συνζητοῦντας +πρός +αὐτούς +καί +εὐθύς +πᾶς +ὁ +ὄχλος +ἰδόντες +αὐτόν +ἐξεθαμβήθησαν +καί +προστρέχοντες +ἠσπάζοντο +αὐτόν +καί +ἐπηρώτησεν +αὐτούς +Τί +συνζητεῖτε +πρός +αὑτούς +καί +ἀπεκρίθη +αὐτῷ +εἷς +ἐκ +τοῦ +ὄχλου +Διδάσκαλε +ἤνεγκα +τόν +υἱόν +μου +πρός +σέ +ἔχοντα +πνεῦμα +ἄλαλον +καί +ἐάν +ὅπου +αὐτόν +καταλάβῃ +ῥήσσει +αὐτόν +καί +ἀφρίζει +καί +τρίζει +τούς +ὀδόντας +καί +ξηραίνεται +καί +εἶπα +τοῖς +μαθηταῖς +σου +ἵνα +αὐτό +ἐκβάλωσιν +καί +οὐκ +ἴσχυσαν +δέ +ὁ +ἀποκριθείς +αὐτοῖς +λέγει +Ὦ +γενεά +ἄπιστος +ἕως +πότε +πρός +ὑμᾶς +ἔσομαι +ἕως +πότε +ἀνέξομαι +ὑμῶν +φέρετε +αὐτόν +πρός +με +καί +ἤνεγκαν +αὐτόν +πρός +αὐτόν +καί +ἰδών +αὐτόν +τό +πνεῦμα +εὐθύς +συνεσπάραξεν +αὐτόν +καί +πεσών +ἐπί +τῆς +γῆς +ἐκυλίετο +ἀφρίζων +καί +ἐπηρώτησεν +τόν +πατέρα +αὐτοῦ +Πόσος +χρόνος +ἐστίν +ὡς +τοῦτο +γέγονεν +αὐτῷ +δέ +ὁ +εἶπεν +Ἐκ +παιδιόθεν +καί +πολλάκις +καί +εἰς +πῦρ +αὐτόν +ἔβαλεν +καί +εἰς +ὕδατα +ἵνα +ἀπολέσῃ +αὐτόν +ἀλλ’ +εἴ +τι +δύνῃ +βοήθησον +ἡμῖν +σπλαγχνισθείς +ἐφ’ +ἡμᾶς +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Τό +Εἰ +δύνῃ +πάντα +δυνατά +τῷ +πιστεύοντι +εὐθύς +κράξας +ὁ +πατήρ +τοῦ +παιδίου +ἔλεγεν +Πιστεύω +βοήθει +μου +τῇ +ἀπιστίᾳ +δέ +ὁ +Ἰησοῦς +ἰδών +ὅτι +ἐπισυντρέχει +ὄχλος +ἐπετίμησεν +τῷ +πνεύματι +τῷ +ἀκαθάρτῳ +λέγων +αὐτῷ +Τό +ἄλαλον +καί +κωφόν +πνεῦμα +ἐγώ +ἐπιτάσσω +σοι +ἔξελθε +ἐξ +αὐτοῦ +καί +μηκέτι +εἰσέλθῃς +εἰς +αὐτόν +καί +κράξας +καί +πολλά +σπαράξας +ἐξῆλθεν +καί +ἐγένετο +ὡσεί +νεκρός +ὥστε +τούς +πολλούς +λέγειν +ὅτι +ἀπέθανεν +δέ +ὁ +Ἰησοῦς +κρατήσας +τῆς +χειρός +αὐτοῦ +ἤγειρεν +αὐτόν +καί +ἀνέστη +καί +εἰσελθόντος +αὐτοῦ +εἰς +οἶκον +οἱ +μαθηταί +αὐτοῦ +κατ’ +ἰδίαν +ἐπηρώτων +αὐτόν +Ὅτι +ἡμεῖς +οὐκ +ἠδυνήθημεν +ἐκβαλεῖν +αὐτό +καί +εἶπεν +αὐτοῖς +Τοῦτο +τό +γένος +ἐν +οὐδενί +δύναται +ἐξελθεῖν +εἰ +μή +ἐν +προσευχῇ +Κἀκεῖθεν +ἐξελθόντες +παρεπορεύοντο +διά +τῆς +Γαλιλαίας +καί +οὐκ +ἤθελεν +ἵνα +τις +γνοῖ +γάρ +ἐδίδασκεν +τούς +μαθητάς +αὐτοῦ +καί +ἔλεγεν +αὐτοῖς +ὅτι +Ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδίδοται +εἰς +χεῖρας +ἀνθρώπων +καί +ἀποκτενοῦσιν +αὐτόν +καί +ἀποκτανθείς +μετά +τρεῖς +ἡμέρας +ἀναστήσεται +δέ +οἱ +ἠγνόουν +τό +ῥῆμα +καί +ἐφοβοῦντο +αὐτόν +ἐπερωτῆσαι +Καί +ἦλθον +εἰς +Καφαρναούμ +Καί +ἐν +τῇ +οἰκίᾳ +γενόμενος +ἐπηρώτα +αὐτούς +Τί +ἐν +τῇ +ὁδῷ +διελογίζεσθε +δέ +οἱ +ἐσιώπων +γάρ +πρός +ἀλλήλους +διελέχθησαν +ἐν +τῇ +ὁδῷ +τίς +μείζων +καί +καθίσας +ἐφώνησεν +τούς +δώδεκα +καί +λέγει +αὐτοῖς +Εἴ +τις +θέλει +πρῶτος +εἶναι +ἔσται +πάντων +ἔσχατος +καί +πάντων +διάκονος +καί +λαβών +παιδίον +ἔστησεν +αὐτό +ἐν +μέσῳ +αὐτῶν +καί +ἐναγκαλισάμενος +αὐτό +εἶπεν +αὐτοῖς +ἄν +Ὅς +ἕν +τῶν +τοιούτων +παιδίων +δέξηται +ἐπί +τῷ +ὀνόματι +μου +ἐμέ +δέχεται +καί +ἄν +ὅς +ἐμέ +δέχηται +οὐκ +ἐμέ +δέχεται +ἀλλά +τόν +ἀποστείλαντα +με +Ἔφη +αὐτῷ +ὁ +Ἰωάνης +Διδάσκαλε +εἴδομεν +τινα +ἐν +τῷ +ὀνόματι +σου +ἐκβάλλοντα +δαιμόνια +ὅς +οὐκ +ἀκολουθεῖ +ἡμῖν +καί +ἐκωλύομεν +αὐτόν +ὅτι +οὐκ +ἠκολούθει +ἡμῖν +δέ +ὁ +Ἰησοῦς +εἶπεν +Μή +κωλύετε +αὐτόν +γάρ +οὐδείς +ἐστιν +ὅς +ποιήσει +δύναμιν +ἐπί +τῷ +ὀνόματι +μου +καί +δυνήσεται +ταχύ +κακολογῆσαι +με +γάρ +ὅς +οὐκ +ἔστιν +καθ’ +ἡμῶν +ὑπέρ +ἡμῶν +ἐστιν +γάρ +ἄν +Ὅς +ποτίσῃ +ὑμᾶς +ποτήριον +ὕδατος +ἐν +ὀνόματι +ὅτι +Χριστοῦ +ἐστε +ἀμήν +λέγω +ὑμῖν +ὅτι +οὐ +μή +ἀπολέσῃ +τόν +μισθόν +αὐτοῦ +Καί +ἄν +ὅς +σκανδαλίσῃ +ἕνα +τῶν +μικρῶν +τούτων +τῶν +πιστευόντων +καλόν +ἐστιν +αὐτῷ +μᾶλλον +εἰ +περίκειται +μύλος +ὀνικός +περί +τόν +τράχηλον +αὐτοῦ +καί +βέβληται +εἰς +τήν +θάλασσαν +Καί +ἐάν +σκανδαλίσῃ +σε +ἡ +χείρ +σου +ἀπόκοψον +αὐτήν +καλόν +ἐστίν +σε +κυλλόν +εἰσελθεῖν +εἰς +τήν +ζωήν +ἤ +τάς +δύο +χεῖρας +ἔχοντα +ἀπελθεῖν +εἰς +τήν +γέενναν +εἰς +τό +πῦρ +τό +ἄσβεστον +καί +ἐάν +ὁ +πούς +σου +σκανδαλίζῃ +σε +ἀπόκοψον +αὐτόν +καλόν +ἐστίν +σε +εἰσελθεῖν +εἰς +τήν +ζωήν +χωλόν +ἤ +τούς +δύο +πόδας +ἔχοντα +βληθῆναι +εἰς +τήν +γέενναν +καί +ἐάν +ὁ +ὀφθαλμός +σου +σκανδαλίζῃ +σε +ἔκβαλε +αὐτόν +καλόν +ἐστιν +σέ +μονόφθαλμον +εἰσελθεῖν +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +ἤ +δύο +ὀφθαλμούς +ἔχοντα +βληθῆναι +εἰς +τήν +γέενναν +ὅπου +ὁ +σκώληξ +αὐτῶν +οὐ +τελευτᾷ +καί +τό +πῦρ +οὐ +σβέννυται +γάρ +Πᾶς +πυρί +ἁλισθήσεται +καλόν +τό +ἅλας +δέ +ἐάν +τό +ἅλας +ἄναλον +γένηται +ἐν +τίνι +αὐτό +ἀρτύσετε +ἔχετε +ἐν +ἑαυτοῖς +ἅλα +καί +εἰρηνεύετε +ἐν +ἀλλήλοις +Καί +ἐκεῖθεν +ἀναστάς +ἔρχεται +εἰς +τά +ὅρια +τῆς +Ἰουδαίας +καί +πέραν +τοῦ +Ἰορδάνου +καί +συνπορεύονται +πάλιν +ὄχλοι +πρός +αὐτόν +καί +ὡς +εἰώθει +πάλιν +ἐδίδασκεν +αὐτούς +Καί +προσελθόντες +Φαρισαῖοι +ἐπηρώτων +αὐτόν +εἰ +ἔξεστιν +ἀνδρί +γυναῖκα +ἀπολῦσαι +πειράζοντες +αὐτόν +δέ +ὁ +ἀποκριθείς +εἶπεν +αὐτοῖς +Τί +ὑμῖν +ἐνετείλατο +Μωϋσῆς +δέ +οἱ +εἶπαν +Ἐπέτρεψεν +Μωϋσῆς +βιβλίον +ἀποστασίου +γράψαι +καί +ἀπολῦσαι +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Πρός +τήν +σκληροκαρδίαν +ὑμῶν +ἔγραψεν +ὑμῖν +τήν +ἐντολήν +ταύτην +δέ +ἀπό +ἀρχῆς +κτίσεως +ἄρσεν +καί +θῆλυ +ἐποίησεν +αὐτούς +ἕνεκεν +τούτου +καταλείψει +ἄνθρωπος +τόν +πατέρα +αὐτοῦ +καί +τήν +μητέρα +καί +ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν +ὥστε +οὐκέτι +εἰσίν +δύο +ἀλλά +μία +σάρξ +οὖν +ὅ +ὁ +Θεός +συνέζευξεν +ἄνθρωπος +μή +χωριζέτω +καί +εἰς +τήν +οἰκίαν +πάλιν +οἱ +μαθηταί +περί +τούτου +ἐπηρώτων +αὐτόν +καί +λέγει +αὐτοῖς +ἄν +Ὅς +ἀπολύσῃ +τήν +γυναῖκα +αὐτοῦ +καί +γαμήσῃ +ἄλλην +μοιχᾶται +ἐπ’ +αὐτήν +καί +ἐάν +αὐτή +ἀπολύσασα +τόν +ἄνδρα +αὐτῆς +γαμήσῃ +ἄλλον +μοιχᾶται +Καί +προσέφερον +αὐτῷ +παιδία +ἵνα +αὐτῶν +ἅψηται +δέ +οἱ +μαθηταί +ἐπετίμησαν +αὐτοῖς +δέ +ἰδών +ὁ +Ἰησοῦς +ἠγανάκτησεν +καί +εἶπεν +αὐτοῖς +Ἄφετε +τά +παιδία +ἔρχεσθαι +πρός +με +μή +κωλύετε +αὐτά +γάρ +τῶν +τοιούτων +ἐστίν +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀμήν +λέγω +ὑμῖν +ἄν +ὅς +μή +δέξηται +τήν +βασιλείαν +τοῦ +Θεοῦ +ὡς +παιδίον +οὐ +μή +εἰσέλθῃ +εἰς +αὐτήν +καί +ἐναγκαλισάμενος +αὐτά +κατευλόγει +τιθείς +τάς +χεῖρας +ἐπ’ +αὐτά +Καί +ἐκπορευομένου +αὐτοῦ +εἰς +ὁδόν +εἷς +προσδραμών +καί +γονυπετήσας +αὐτόν +ἐπηρώτα +αὐτόν +Διδάσκαλε +ἀγαθέ +τί +ποιήσω +ἵνα +ζωήν +αἰώνιον +κληρονομήσω +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Τί +με +λέγεις +ἀγαθόν +οὐδείς +ἀγαθός +εἰ +μή +εἷς +ὁ +Θεός +τάς +ἐντολάς +οἶδας +Μή +φονεύσῃς +Μή +μοιχεύσῃς +Μή +κλέψῃς +Μή +ψευδομαρτυρήσῃς +Μή +ἀποστερήσῃς +Τίμα +τόν +πατέρα +σου +καί +τήν +μητέρα +δέ +ὁ +ἔφη +αὐτῷ +Διδάσκαλε +ταῦτα +πάντα +ἐφυλαξάμην +ἐκ +νεότητος +μου +δέ +ὁ +Ἰησοῦς +ἐμβλέψας +αὐτῷ +ἠγάπησεν +αὐτόν +καί +εἶπεν +αὐτῷ +Ἕν +σε +ὑστερεῖ +ὕπαγε +ὅσα +ἔχεις +πώλησον +καί +δός +τοῖς +πτωχοῖς +καί +ἕξεις +θησαυρόν +ἐν +οὐρανῷ +καί +δεῦρο +ἀκολούθει +μοι +δέ +ὁ +στυγνάσας +ἐπί +τῷ +λόγῳ +ἀπῆλθεν +λυπούμενος +γάρ +ἦν +ἔχων +κτήματα +πολλά +Καί +περιβλεψάμενος +ὁ +Ἰησοῦς +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +Πῶς +δυσκόλως +οἱ +τά +χρήματα +ἔχοντες +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +εἰσελεύσονται +δέ +οἱ +μαθηταί +ἐθαμβοῦντο +ἐπί +τοῖς +λόγοις +αὐτοῦ +δέ +ὁ +Ἰησοῦς +πάλιν +ἀποκριθείς +λέγει +αὐτοῖς +Τέκνα +πῶς +δύσκολον +ἐστιν +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +εἰσελθεῖν +εὐκοπώτερον +ἐστιν +κάμηλον +διά +τῆς +τρυμαλιᾶς +τῆς +ῥαφίδος +διελθεῖν +ἤ +πλούσιον +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +εἰσελθεῖν +δέ +οἱ +περισσῶς +ἐξεπλήσσοντο +λέγοντες +πρός +ἑαυτούς +Καί +τίς +δύναται +σωθῆναι +ἐμβλέψας +αὐτοῖς +ὁ +Ἰησοῦς +λέγει +Παρά +ἀνθρώποις +ἀδύνατον +ἀλλ’ +οὐ +παρά +θεῷ +γάρ +πάντα +δυνατά +παρά +τῷ +θεῷ +Ἤρξατο +ὁ +Πέτρος +λέγειν +αὐτῷ +Ἰδού +ἡμεῖς +ἀφήκαμεν +πάντα +καί +ἠκολουθήκαμεν +σοι +ἔφη +ὁ +Ἰησοῦς +Ἀμήν +λέγω +ὑμῖν +οὐδείς +ἐστιν +ὅς +ἀφῆκεν +οἰκίαν +ἤ +ἀδελφούς +ἤ +ἀδελφάς +ἤ +μητέρα +ἤ +πατέρα +ἤ +τέκνα +ἤ +ἀγρούς +ἕνεκεν +ἐμοῦ +καί +ἕνεκεν +τοῦ +εὐαγγελίου +ἐάν +μή +λάβῃ +νῦν +ἐν +τῷ +καιρῷ +τούτῳ +ἑκατονταπλασίονα +οἰκίας +καί +ἀδελφούς +καί +ἀδελφάς +καί +μητέρας +καί +τέκνα +καί +ἀγρούς +μετά +διωγμῶν +καί +ἐν +τῷ +αἰῶνι +τῷ +ἐρχομένῳ +ζωήν +αἰώνιον +δέ +πολλοί +πρῶτοι +ἔσονται +ἔσχατοι +καί +οἱ +ἔσχατοι +πρῶτοι +δέ +Ἦσαν +ἐν +τῇ +ὁδῷ +ἀναβαίνοντες +εἰς +Ἱεροσόλυμα +καί +ἦν +προάγων +αὐτούς +ὁ +Ἰησοῦς +καί +ἐθαμβοῦντο +δέ +οἱ +ἀκολουθοῦντες +ἐφοβοῦντο +καί +παραλαβών +πάλιν +τούς +δώδεκα +ἤρξατο +αὐτοῖς +λέγειν +τά +μέλλοντα +αὐτῷ +συμβαίνειν +ὅτι +Ἰδού +ἀναβαίνομεν +εἰς +Ἱεροσόλυμα +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδοθήσεται +τοῖς +ἀρχιερεῦσιν +καί +τοῖς +γραμματεῦσιν +καί +κατακρινοῦσιν +αὐτόν +θανάτῳ +καί +παραδώσουσιν +αὐτόν +τοῖς +ἔθνεσιν +καί +ἐμπαίξουσιν +αὐτῷ +καί +ἐμπτύσουσιν +αὐτῷ +καί +μαστιγώσουσιν +αὐτόν +καί +ἀποκτενοῦσιν +καί +μετά +τρεῖς +ἡμέρας +ἀναστήσεται +Καί +προσπορεύονται +αὐτῷ +Ἰάκωβος +καί +Ἰωάνης +οἱ +υἱοί +Ζεβεδαίου +λέγοντες +αὐτῷ +Διδάσκαλε +θέλομεν +ἵνα +ἐάν +ὅ +αἰτήσωμεν +σε +ποιήσῃς +ἡμῖν +δέ +ὁ +εἶπεν +αὐτοῖς +θέλετε +Τί +με +ποιήσω +ὑμῖν +δέ +οἱ +εἶπαν +αὐτῷ +Δός +ἡμῖν +ἵνα +εἷς +ἐκ +σου +δεξιῶν +καί +εἷς +ἐξ +ἀριστερῶν +καθίσωμεν +ἐν +τῇ +δόξῃ +σου +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐκ +οἴδατε +τί +αἰτεῖσθε +δύνασθε +πιεῖν +τό +ποτήριον +ὅ +ἐγώ +πίνω +ἤ +τό +βάπτισμα +ὅ +ἐγώ +βαπτίζομαι +βαπτισθῆναι +δέ +οἱ +εἶπαν +αὐτῷ +Δυνάμεθα +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Τό +ποτήριον +ὅ +ἐγώ +πίνω +πίεσθε +καί +τό +βάπτισμα +ὅ +ἐγώ +βαπτίζομαι +βαπτισθήσεσθε +δέ +τό +καθίσαι +ἐκ +δεξιῶν +μου +ἤ +ἐξ +εὐωνύμων +οὐκ +ἔστιν +ἐμόν +δοῦναι +ἀλλ’ +οἷς +ἡτοίμασται +Καί +ἀκούσαντες +οἱ +δέκα +ἤρξαντο +ἀγανακτεῖν +περί +Ἰακώβου +καί +Ἰωάνου +καί +προσκαλεσάμενος +αὐτούς +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Οἴδατε +ὅτι +οἱ +δοκοῦντες +ἄρχειν +τῶν +ἐθνῶν +κατακυριεύουσιν +αὐτῶν +καί +οἱ +μεγάλοι +αὐτῶν +κατεξουσιάζουσιν +αὐτῶν +δέ +οὐχ +οὕτως +ἐστιν +ἐν +ὑμῖν +ἀλλ’ +ἄν +ὅς +θέλῃ +μέγας +γενέσθαι +ἐν +ὑμῖν +ἔσται +ὑμῶν +διάκονος +καί +ἄν +ὅς +θέλῃ +ἐν +ὑμῖν +εἶναι +πρῶτος +ἔσται +πάντων +δοῦλος +γάρ +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +οὐκ +ἦλθεν +διακονηθῆναι +ἀλλά +διακονῆσαι +καί +δοῦναι +τήν +ψυχήν +αὐτοῦ +λύτρον +ἀντί +πολλῶν +Καί +ἔρχονται +εἰς +Ἰερειχώ +Καί +ἐκπορευομένου +αὐτοῦ +ἀπό +Ἰερειχώ +καί +τῶν +μαθητῶν +αὐτοῦ +καί +ὄχλου +ἱκανοῦ +ὁ +υἱός +Τιμαίου +Βαρτιμαῖος +τυφλός +προσαίτης +ἐκάθητο +παρά +τήν +ὁδόν +καί +ἀκούσας +ὅτι +Ἰησοῦς +ὁ +Ναζαρηνός +ἐστιν +ἤρξατο +κράζειν +καί +λέγειν +Υἱέ +Δαυείδ +Ἰησοῦ +ἐλέησον +με +καί +ἐπετίμων +αὐτῷ +πολλοί +ἵνα +σιωπήσῃ +δέ +ὁ +πολλῷ +μᾶλλον +ἔκραζεν +Υἱέ +Δαυείδ +ἐλέησον +με +καί +στάς +ὁ +Ἰησοῦς +εἶπεν +Φωνήσατε +αὐτόν +καί +φωνοῦσιν +τόν +τυφλόν +λέγοντες +αὐτῷ +Θάρσει +ἔγειρε +φωνεῖ +σε +δέ +ὁ +ἀποβαλών +τό +ἱμάτιον +αὐτοῦ +ἀναπηδήσας +ἦλθεν +πρός +τόν +Ἰησοῦν +καί +ἀποκριθείς +αὐτῷ +ὁ +Ἰησοῦς +εἶπεν +Τί +σοι +ποιήσω +θέλεις +δέ +ὁ +τυφλός +εἶπεν +αὐτῷ +Ῥαββουνεί +ἵνα +ἀναβλέψω +καί +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ὕπαγε +ἡ +πίστις +σου +σέσωκεν +σε +καί +εὐθύς +ἀνέβλεψεν +καί +ἠκολούθει +αὐτῷ +ἐν +τῇ +ὁδῷ +Καί +ὅτε +ἐγγίζουσιν +εἰς +Ἱεροσόλυμα +εἰς +Βηθφαγή +καί +Βηθανίαν +πρός +τό +ὄρος +τῶν +Ἐλαιῶν +ἀποστέλλει +δύο +τῶν +μαθητῶν +αὐτοῦ +καί +λέγει +αὐτοῖς +Ὑπάγετε +εἰς +τήν +κώμην +τήν +κατέναντι +ὑμῶν +καί +εὐθύς +εἰσπορευόμενοι +εἰς +αὐτήν +εὑρήσετε +δεδεμένον +πῶλον +ἐφ’ +ὅν +οὐδείς +ἀνθρώπων +οὔπω +ἐκάθισεν +λύσατε +αὐτόν +καί +φέρετε +καί +ἐάν +τις +ὑμῖν +εἴπῃ +Τί +ποιεῖτε +τοῦτο +εἴπατε +Ὁ +Κύριος +αὐτοῦ +χρείαν +ἔχει +καί +εὐθύς +αὐτόν +ἀποστέλλει +πάλιν +ὧδε +καί +ἀπῆλθον +καί +εὗρον +πῶλον +δεδεμένον +πρός +θύραν +ἔξω +ἐπί +τοῦ +ἀμφόδου +καί +λύουσιν +αὐτόν +καί +τινες +τῶν +ἐκεῖ +ἑστηκότων +ἔλεγον +αὐτοῖς +Τί +ποιεῖτε +λύοντες +τόν +πῶλον +δέ +οἱ +εἶπαν +αὐτοῖς +καθώς +εἶπεν +ὁ +Ἰησοῦς +καί +ἀφῆκαν +αὐτούς +καί +φέρουσιν +τόν +πῶλον +πρός +τόν +Ἰησοῦν +καί +ἐπιβάλλουσιν +αὐτῷ +τά +ἱμάτια +αὐτῶν +καί +ἐκάθισεν +ἐπ’ +αὐτόν +καί +πολλοί +τά +ἱμάτια +αὐτῶν +ἔστρωσαν +εἰς +τήν +ὁδόν +δέ +ἄλλοι +στιβάδας +κόψαντες +ἐκ +τῶν +ἀγρῶν +καί +οἱ +προάγοντες +καί +οἱ +ἀκολουθοῦντες +ἔκραζον +Ὡσαννά +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου +Εὐλογημένη +ἡ +ἐρχομένη +βασιλεία +τοῦ +πατρός +ἡμῶν +Δαυείδ +Ὡσαννά +ἐν +τοῖς +ὑψίστοις +Καί +εἰσῆλθεν +εἰς +Ἱεροσόλυμα +εἰς +τό +ἱερόν +καί +ὀψέ +ἤδη +οὔσης +τῆς +ὥρας +περιβλεψάμενος +πάντα +ἐξῆλθεν +εἰς +Βηθανίαν +μετά +τῶν +δώδεκα +Καί +τῇ +ἐπαύριον +ἐξελθόντων +αὐτῶν +ἀπό +Βηθανίας +ἐπείνασεν +καί +ἰδών +ἀπό +μακρόθεν +συκῆν +ἔχουσαν +φύλλα +ἦλθεν +ἄρα +εἰ +τι +εὑρήσει +ἐν +αὐτῇ +καί +ἐλθών +ἐπ’ +αὐτήν +οὐδέν +εὗρεν +εἰ +μή +φύλλα +γάρ +ὁ +καιρός +οὐκ +ἦν +σύκων +καί +ἀποκριθείς +εἶπεν +αὐτῇ +Μηκέτι +εἰς +τόν +αἰῶνα +ἐκ +σοῦ +μηδείς +καρπόν +φάγοι +καί +ἤκουον +οἱ +μαθηταί +αὐτοῦ +Καί +ἔρχονται +εἰς +Ἱεροσόλυμα +Καί +εἰσελθών +εἰς +τό +ἱερόν +ἤρξατο +ἐκβάλλειν +τούς +πωλοῦντας +καί +τούς +ἀγοράζοντας +ἐν +τῷ +ἱερῷ +καί +τάς +τραπέζας +τῶν +κολλυβιστῶν +καί +τάς +καθέδρας +τῶν +πωλούντων +τάς +περιστεράς +κατέστρεψεν +καί +οὐκ +ἤφιεν +ἵνα +τις +διενέγκῃ +σκεῦος +διά +τοῦ +ἱεροῦ +καί +ἐδίδασκεν +καί +ἔλεγεν +αὐτοῖς +Οὐ +γέγραπται +ὅτι +Ὁ +οἶκος +μου +οἶκος +προσευχῆς +κληθήσεται +πᾶσιν +τοῖς +ἔθνεσιν +δέ +ὑμεῖς +πεποιήκατε +αὐτόν +σπήλαιον +λῃστῶν +καί +ἤκουσαν +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +καί +ἐζήτουν +πῶς +αὐτόν +ἀπολέσωσιν +γάρ +ἐφοβοῦντο +αὐτόν +γάρ +πᾶς +ὁ +ὄχλος +ἐξεπλήσσετο +ἐπί +τῇ +διδαχῇ +αὐτοῦ +Καί +ὅταν +ὀψέ +ἐγένετο +ἐξεπορεύοντο +ἔξω +τῆς +πόλεως +Καί +παραπορευόμενοι +πρωΐ +εἶδον +τήν +συκῆν +ἐξηραμμένην +ἐκ +ῥιζῶν +καί +ἀναμνησθείς +ὁ +Πέτρος +λέγει +αὐτῷ +Ῥαββεί +ἴδε +ἡ +συκῆ +ἥν +κατηράσω +ἐξήρανται +καί +ἀποκριθείς +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Ἔχετε +πίστιν +θεοῦ +ἀμήν +λέγω +ὑμῖν +ὅτι +ἄν +ὅς +εἴπῃ +τῷ +ὄρει +τούτῳ +Ἄρθητι +καί +βλήθητι +εἰς +τήν +θάλασσαν +καί +μή +διακριθῇ +ἐν +τῇ +καρδίᾳ +αὐτοῦ +ἀλλά +πιστεύῃ +ὅτι +ὅ +λαλεῖ +γίνεται +ἔσται +αὐτῷ +διά +τοῦτο +λέγω +ὑμῖν +πάντα +ὅσα +προσεύχεσθε +καί +αἰτεῖσθε +πιστεύετε +ὅτι +ἐλάβετε +καί +ἔσται +ὑμῖν +καί +ὅταν +στήκετε +προσευχόμενοι +ἀφίετε +εἴ +τι +ἔχετε +κατά +τινος +ἵνα +καί +ὁ +Πατήρ +ὑμῶν +ὁ +ἐν +τοῖς +οὐρανοῖς +ἀφῇ +ὑμῖν +τά +παραπτώματα +ὑμῶν +Καί +ἔρχονται +πάλιν +εἰς +Ἱεροσόλυμα +καί +ἐν +τῷ +ἱερῷ +περιπατοῦντος +αὐτοῦ +ἔρχονται +πρός +αὐτόν +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +καί +οἱ +πρεσβύτεροι +καί +ἔλεγον +αὐτῷ +Ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιεῖς +ἤ +τίς +σοι +ἔδωκεν +τήν +ἐξουσίαν +ταύτην +ἵνα +ταῦτα +ποιῇς +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἐπερωτήσω +ὑμᾶς +ἕνα +λόγον +καί +ἀποκρίθητε +μοι +καί +ἐρῶ +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ +τό +βάπτισμα +τό +Ἰωάνου +ἐξ +οὐρανοῦ +ἦν +ἤ +ἐξ +ἀνθρώπων +ἀποκρίθητε +μοι +καί +διελογίζοντο +πρός +ἑαυτούς +λέγοντες +Ἐάν +εἴπωμεν +Ἐξ +οὐρανοῦ +ἐρεῖ +οὖν +Διά +τί +οὐκ +ἐπιστεύσατε +αὐτῷ +ἀλλά +εἴπωμεν +Ἐξ +ἀνθρώπων +ἐφοβοῦντο +τόν +ὄχλον +γάρ +ἅπαντες +εἶχον +τόν +Ἰωάνην +ὅτι +ὄντως +προφήτης +ἦν +καί +ἀποκριθέντες +τῷ +Ἰησοῦ +λέγουσιν +Οὐκ +οἴδαμεν +καί +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Οὐδέ +ἐγώ +λέγω +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ +Καί +ἤρξατο +αὐτοῖς +ἐν +παραβολαῖς +λαλεῖν +ἀμπελῶνα +ἄνθρωπος +ἐφύτευσεν +καί +περιέθηκεν +φραγμόν +καί +ὤρυξεν +ὑπολήνιον +καί +ᾠκοδόμησεν +πύργον +καί +ἐξέδετο +αὐτόν +γεωργοῖς +καί +ἀπεδήμησεν +καί +ἀπέστειλεν +πρός +τούς +γεωργούς +τῷ +καιρῷ +δοῦλον +ἵνα +παρά +τῶν +γεωργῶν +λάβῃ +ἀπό +τῶν +καρπῶν +τοῦ +ἀμπελῶνος +καί +λαβόντες +αὐτόν +ἔδειραν +καί +ἀπέστειλαν +κενόν +καί +πάλιν +ἀπέστειλεν +πρός +αὐτούς +ἄλλον +δοῦλον +κἀκεῖνον +ἐκεφαλίωσαν +καί +ἠτίμασαν +καί +ἄλλον +ἀπέστειλεν +κἀκεῖνον +ἀπέκτειναν +καί +πολλούς +ἄλλους +μέν +οὕς +δέροντες +δέ +οὕς +ἀποκτέννοντες +ἔτι +εἶχεν +ἕνα +υἱόν +ἀγαπητόν +ἀπέστειλεν +αὐτόν +ἔσχατον +πρός +αὐτούς +λέγων +ὅτι +Ἐντραπήσονται +τόν +υἱόν +μου +δέ +ἐκεῖνοι +οἱ +γεωργοί +πρός +ἑαυτούς +εἶπαν +ὅτι +Οὗτος +ἐστιν +ὁ +κληρονόμος +δεῦτε +ἀποκτείνωμεν +αὐτόν +καί +ἡμῶν +ἔσται +ἡ +κληρονομία +καί +λαβόντες +ἀπέκτειναν +αὐτόν +καί +ἐξέβαλον +αὐτόν +ἔξω +τοῦ +ἀμπελῶνος +τί +ποιήσει +ὁ +κύριος +τοῦ +ἀμπελῶνος +ἐλεύσεται +καί +ἀπολέσει +τούς +γεωργούς +καί +δώσει +τόν +ἀμπελῶνα +ἄλλοις +οὐδέ +τήν +γραφήν +ταύτην +ἀνέγνωτε +Λίθον +ὅν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες +οὗτος +ἐγενήθη +εἰς +κεφαλήν +γωνίας +παρά +Κυρίου +ἐγένετο +αὕτη +καί +ἔστιν +θαυμαστή +ἐν +ὀφθαλμοῖς +ἡμῶν +Καί +ἐζήτουν +αὐτόν +κρατῆσαι +καί +ἐφοβήθησαν +τόν +ὄχλον +γάρ +ἔγνωσαν +ὅτι +πρός +αὐτούς +τήν +παραβολήν +εἶπεν +καί +ἀφέντες +αὐτόν +ἀπῆλθον +Καί +ἀποστέλλουσιν +πρός +αὐτόν +τινας +τῶν +Φαρισαίων +καί +τῶν +Ἠρῳδιανῶν +ἵνα +αὐτόν +ἀγρεύσωσιν +λόγῳ +καί +ἐλθόντες +λέγουσιν +αὐτῷ +Διδάσκαλε +οἴδαμεν +ὅτι +ἀληθής +εἶ +καί +οὐ +μέλει +σοι +περί +οὐδενός +γάρ +οὐ +βλέπεις +εἰς +πρόσωπον +ἀνθρώπων +ἀλλ’ +ἐπ’ +ἀληθείας +τήν +ὁδόν +τοῦ +Θεοῦ +διδάσκεις +ἔξεστιν +δοῦναι +κῆνσον +Καίσαρι +ἤ +οὔ +δῶμεν +ἤ +μή +δῶμεν +δέ +ὁ +εἰδώς +αὐτῶν +τήν +ὑπόκρισιν +εἶπεν +αὐτοῖς +Τί +με +πειράζετε +φέρετε +μοι +δηνάριον +ἵνα +ἴδω +δέ +οἱ +ἤνεγκαν +καί +λέγει +αὐτοῖς +Τίνος +ἡ +εἰκών +αὕτη +καί +ἡ +ἐπιγραφή +δέ +οἱ +εἶπαν +αὐτῷ +Καίσαρος +δέ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Τά +Καίσαρος +ἀπόδοτε +Καίσαρι +καί +τά +τοῦ +Θεοῦ +τῷ +Θεῷ +καί +ἐξεθαύμαζον +ἐπ’ +αὐτῷ +Καί +ἔρχονται +πρός +αὐτόν +Σαδδουκαῖοι +οἵτινες +λέγουσιν +ἀνάστασιν +μή +εἶναι +καί +ἐπηρώτων +αὐτόν +λέγοντες +Διδάσκαλε +Μωϋσῆς +ἔγραψεν +ἡμῖν +ὅτι +ἐάν +τινος +ἀδελφός +ἀποθάνῃ +καί +καταλίπῃ +γυναῖκα +καί +μή +ἀφῇ +τέκνον +ἵνα +λάβῃ +ὁ +ἀδελφός +αὐτοῦ +τήν +γυναῖκα +καί +ἐξαναστήσῃ +σπέρμα +τῷ +ἀδελφῷ +αὐτοῦ +ἑπτά +ἀδελφοί +ἦσαν +καί +ὁ +πρῶτος +ἔλαβεν +γυναῖκα +καί +ἀποθνῄσκων +οὐκ +ἀφῆκεν +σπέρμα +καί +ὁ +δεύτερος +ἔλαβεν +αὐτήν +καί +ἀπέθανεν +μή +καταλιπών +σπέρμα +καί +ὁ +τρίτος +ὡσαύτως +καί +οἱ +ἑπτά +οὐκ +ἀφῆκαν +σπέρμα +ἔσχατον +πάντων +καί +ἡ +γυνή +ἀπέθανεν +ἐν +τῇ +ἀναστάσει +ὅταν +ἀναστῶσιν +τίνος +αὐτῶν +γυνή +ἔσται +γάρ +οἱ +ἑπτά +ἔσχον +αὐτήν +γυναῖκα +ἔφη +αὐτοῖς +ὁ +Ἰησοῦς +Οὐ +διά +τοῦτο +πλανᾶσθε +μή +εἰδότες +τάς +γραφάς +μηδέ +τήν +δύναμιν +τοῦ +Θεοῦ +γάρ +ὅταν +ἐκ +νεκρῶν +ἀναστῶσιν +οὔτε +γαμοῦσιν +οὔτε +γαμίζονται +ἀλλ’ +εἰσίν +ὡς +ἄγγελοι +ἐν +τοῖς +οὐρανοῖς +δέ +περί +τῶν +νεκρῶν +ὅτι +ἐγείρονται +οὐκ +ἀνέγνωτε +ἐν +τῇ +βίβλῳ +Μωϋσέως +ἐπί +τοῦ +Βάτου +πῶς +εἶπεν +αὐτῷ +ὁ +Θεός +λέγων +Ἐγώ +ὁ +Θεός +Ἀβραάμ +καί +Θεός +Ἰσαάκ +καί +Θεός +Ἰακώβ +οὐκ +ἔστιν +Θεός +νεκρῶν +ἀλλά +ζώντων +πολύ +πλανᾶσθε +Καί +προσελθών +εἷς +τῶν +γραμματέων +ἀκούσας +αὐτῶν +συνζητούντων +εἰδώς +ὅτι +καλῶς +ἀπεκρίθη +αὐτοῖς +ἐπηρώτησεν +αὐτόν +Ποία +ἐστίν +ἐντολή +πρώτη +πάντων +ἀπεκρίθη +ὁ +Ἰησοῦς +ὅτι +Πρώτη +ἐστίν +Ἄκουε +Ἰσραήλ +Κύριος +ὁ +Θεός +ἡμῶν +Κύριος +εἷς +ἐστιν +καί +ἀγαπήσεις +Κύριον +τόν +Θεόν +σου +ἐξ +ὅλης +τῆς +καρδίας +σου +καί +ἐξ +ὅλης +τῆς +ψυχῆς +σου +καί +ἐξ +ὅλης +τῆς +διανοίας +σου +καί +ἐξ +ὅλης +τῆς +ἰσχύος +σου +δευτέρα +αὕτη +Ἀγαπήσεις +τόν +πλησίον +σου +ὡς +σεαυτόν +μείζων +τούτων +ἄλλη +ἐντολή +οὐκ +ἔστιν +καί +εἶπεν +αὐτῷ +ὁ +γραμματεύς +Καλῶς +Διδάσκαλε +ἐπ’ +ἀληθείας +εἶπες +ὅτι +εἷς +ἐστιν +καί +οὐκ +ἔστιν +ἄλλος +πλήν +αὐτοῦ +καί +τό +ἀγαπᾶν +αὐτόν +ἐξ +ὅλης +τῆς +καρδίας +καί +ἐξ +ὅλης +τῆς +συνέσεως +καί +ἐξ +ὅλης +τῆς +ἰσχύος +καί +τό +ἀγαπᾶν +τόν +πλησίον +ὡς +ἑαυτόν +περισσότερον +ἐστιν +πάντων +τῶν +ὁλοκαυτωμάτων +καί +θυσιῶν +καί +ὁ +Ἰησοῦς +ἰδών +αὐτόν +ὅτι +νουνεχῶς +ἀπεκρίθη +εἶπεν +αὐτῷ +Οὐ +μακράν +εἶ +ἀπό +τῆς +βασιλείας +τοῦ +Θεοῦ +καί +οὐδείς +οὐκέτι +ἐτόλμα +αὐτόν +ἐπερωτῆσαι +Καί +ἀποκριθείς +ὁ +Ἰησοῦς +ἔλεγεν +διδάσκων +ἐν +τῷ +ἱερῷ +Πῶς +λέγουσιν +οἱ +γραμματεῖς +ὅτι +ὁ +Χριστός +υἱός +Δαυείδ +ἐστιν +αὐτός +Δαυείδ +εἶπεν +ἐν +τῷ +Πνεύματι +τῷ +Ἁγίῳ +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἄν +θῶ +τούς +ἐχθρούς +σου +ὑποκάτω +τῶν +ποδῶν +σου +αὐτός +Δαυείδ +λέγει +αὐτόν +Κύριον +καί +πόθεν +αὐτοῦ +υἱός +ἐστιν +Καί +ὁ +πολύς +ὄχλος +ἤκουεν +αὐτοῦ +ἡδέως +Καί +ἐν +τῇ +διδαχῇ +αὐτοῦ +ἔλεγεν +Βλέπετε +ἀπό +τῶν +γραμματέων +τῶν +θελόντων +ἐν +στολαῖς +περιπατεῖν +καί +ἀσπασμούς +ἐν +ταῖς +ἀγοραῖς +καί +πρωτοκαθεδρίας +ἐν +ταῖς +συναγωγαῖς +καί +πρωτοκλισίας +ἐν +τοῖς +δείπνοις +οἱ +κατεσθίοντες +τάς +οἰκίας +τῶν +χηρῶν +καί +προφάσει +μακρά +προσευχόμενοι +οὗτοι +λήμψονται +περισσότερον +κρίμα +Καί +καθίσας +κατέναντι +τοῦ +γαζοφυλακίου +ἐθεώρει +πῶς +ὁ +ὄχλος +βάλλει +χαλκόν +εἰς +τό +γαζοφυλάκιον +καί +πολλοί +πλούσιοι +ἔβαλλον +πολλά +καί +ἐλθοῦσα +μία +χήρα +πτωχή +ἔβαλεν +λεπτά +δύο +ὅ +ἐστιν +κοδράντης +καί +προσκαλεσάμενος +τούς +μαθητάς +αὐτοῦ +εἶπεν +αὐτοῖς +Ἀμήν +λέγω +ὑμῖν +ὅτι +ἡ +χήρα +αὕτη +ἡ +πτωχή +πλεῖον +ἔβαλεν +πάντων +τῶν +βαλλόντων +εἰς +τό +γαζοφυλάκιον +γάρ +πάντες +ἐκ +τοῦ +περισσεύοντος +αὐτοῖς +ἔβαλον +δέ +αὕτη +ἐκ +τῆς +ὑστερήσεως +αὐτῆς +ἔβαλεν +πάντα +ὅσα +εἶχεν +ὅλον +τόν +βίον +αὐτῆς +Καί +ἐκπορευομένου +αὐτοῦ +ἐκ +τοῦ +ἱεροῦ +λέγει +αὐτῷ +εἷς +τῶν +μαθητῶν +αὐτοῦ +Διδάσκαλε +ἴδε +ποταποί +λίθοι +καί +ποταπαί +οἰκοδομαί +καί +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Βλέπεις +ταύτας +τάς +μεγάλας +οἰκοδομάς +οὐ +μή +ἀφεθῇ +ἐπί +λίθον +λίθος +ὅς +οὐ +μή +καταλυθῇ +Καί +καθημένου +αὐτοῦ +εἰς +τό +ὄρος +τῶν +Ἐλαιῶν +κατέναντι +τοῦ +ἱεροῦ +ἐπηρώτα +αὐτόν +κατ’ +ἰδίαν +Πέτρος +καί +Ἰάκωβος +καί +Ἰωάνης +καί +Ἀνδρέας +Εἰπόν +ἡμῖν +πότε +ταῦτα +ἔσται +καί +τί +τό +σημεῖον +ὅταν +μέλλῃ +ταῦτα +πάντα +συντελεῖσθαι +δέ +ὁ +Ἰησοῦς +ἤρξατο +λέγειν +αὐτοῖς +Βλέπετε +μή +τις +ὑμᾶς +πλανήσῃ +πολλοί +ἐλεύσονται +ἐπί +τῷ +ὀνόματι +μου +λέγοντες +ὅτι +Ἐγώ +εἰμι +καί +πολλούς +πλανήσουσιν +δέ +ὅταν +ἀκούσητε +πολέμους +καί +ἀκοάς +πολέμων +μή +θροεῖσθε +δεῖ +γενέσθαι +ἀλλ’ +οὔπω +τό +τέλος +γάρ +ἐγερθήσεται +ἔθνος +ἐπ’ +ἔθνος +καί +βασιλεία +ἐπί +βασιλείαν +ἔσονται +σεισμοί +κατά +τόπους +ἔσονται +λιμοί +ἀρχή +ὠδίνων +ταῦτα +δέ +Βλέπετε +ὑμεῖς +ἑαυτούς +παραδώσουσιν +ὑμᾶς +εἰς +συνέδρια +καί +εἰς +συναγωγάς +δαρήσεσθε +καί +ἐπί +ἡγεμόνων +καί +βασιλέων +σταθήσεσθε +ἕνεκεν +ἐμοῦ +εἰς +μαρτύριον +αὐτοῖς +καί +εἰς +πάντα +τά +ἔθνη +πρῶτον +κηρυχθῆναι +τό +εὐαγγέλιον +δεῖ +καί +ὅταν +ἄγωσιν +ὑμᾶς +παραδιδόντες +μή +προμεριμνᾶτε +τί +λαλήσητε +ἀλλ’ +ἐάν +ὅ +δοθῇ +ὑμῖν +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +τοῦτο +λαλεῖτε +γάρ +οὐ +ἐστε +ὑμεῖς +οἱ +λαλοῦντες +ἀλλά +τό +Πνεῦμα +τό +Ἅγιον +καί +παραδώσει +ἀδελφός +ἀδελφόν +εἰς +θάνατον +καί +πατήρ +τέκνον +καί +ἐπαναστήσονται +τέκνα +ἐπί +γονεῖς +καί +θανατώσουσιν +αὐτούς +καί +ἔσεσθε +μισούμενοι +ὑπό +πάντων +διά +τό +ὄνομα +μου +δέ +ὁ +ὑπομείνας +εἰς +τέλος +οὗτος +σωθήσεται +δέ +Ὅταν +ἴδητε +τό +βδέλυγμα +τῆς +ἐρημώσεως +ἑστηκότα +ὅπου +οὐ +δεῖ +ὁ +ἀναγινώσκων +νοείτω +τότε +οἱ +ἐν +τῇ +Ἰουδαίᾳ +φευγέτωσαν +εἰς +τά +ὄρη +ὁ +ἐπί +τοῦ +δώματος +μή +καταβάτω +μηδέ +εἰσελθάτω +τι +ἆραι +ἐκ +τῆς +οἰκίας +αὐτοῦ +καί +ὁ +εἰς +τόν +ἀγρόν +μή +ἐπιστρεψάτω +εἰς +τά +ὀπίσω +ἆραι +τό +ἱμάτιον +αὐτοῦ +δέ +οὐαί +ταῖς +ἐν +γαστρί +ἐχούσαις +καί +ταῖς +θηλαζούσαις +ἐν +ἐκείναις +ταῖς +ἡμέραις +δέ +προσεύχεσθε +ἵνα +μή +γένηται +χειμῶνος +γάρ +ἔσονται +αἱ +ἡμέραι +ἐκεῖναι +θλῖψις +οἵα +οὐ +γέγονεν +τοιαύτη +ἀπ’ +ἀρχῆς +κτίσεως +ἥν +ἔκτισεν +ὁ +Θεός +ἕως +τοῦ +νῦν +καί +οὐ +μή +γένηται +καί +εἰ +μή +ἐκολόβωσεν +Κύριος +τάς +ἡμέρας +ἄν +οὐκ +ἐσώθη +πᾶσα +σάρξ +ἀλλά +διά +τούς +ἐκλεκτούς +οὕς +ἐξελέξατο +ἐκολόβωσεν +τάς +ἡμέρας +καί +ἐάν +τότε +τις +ὑμῖν +εἴπῃ +Ἴδε +ὧδε +ὁ +Χριστός +Ἴδε +ἐκεῖ +μή +πιστεύετε +δέ +ἐγερθήσονται +ψευδόχριστοι +καί +ψευδοπροφῆται +καί +ποιήσουσιν +σημεῖα +καί +τέρατα +πρός +τό +ἀποπλανᾶν +εἰ +δυνατόν +τούς +ἐκλεκτούς +δέ +ὑμεῖς +βλέπετε +προείρηκα +ὑμῖν +πάντα +Ἀλλά +ἐν +ἐκείναις +ταῖς +ἡμέραις +μετά +τήν +θλῖψιν +ἐκείνην +ὁ +ἥλιος +σκοτισθήσεται +καί +ἡ +σελήνη +οὐ +δώσει +τό +φέγγος +αὐτῆς +καί +οἱ +ἀστέρες +ἔσονται +πίπτοντες +ἐκ +τοῦ +οὐρανοῦ +καί +αἱ +δυνάμεις +αἱ +ἐν +τοῖς +οὐρανοῖς +σαλευθήσονται +καί +τότε +ὄψονται +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐν +νεφέλαις +μετά +δυνάμεως +πολλῆς +καί +δόξης +καί +τότε +ἀποστελεῖ +τούς +ἀγγέλους +καί +ἐπισυνάξει +τούς +ἐκλεκτούς +αὐτοῦ +ἐκ +τῶν +τεσσάρων +ἀνέμων +ἀπ’ +ἄκρου +γῆς +ἕως +ἄκρου +οὐρανοῦ +δέ +Ἀπό +τῆς +συκῆς +μάθετε +τήν +παραβολήν +ὅταν +ἤδη +ὁ +κλάδος +αὐτῆς +ἁπαλός +γένηται +καί +ἐκφύῃ +τά +φύλλα +γινώσκετε +ὅτι +ἐγγύς +τό +θέρος +ἐστίν +οὕτως +καί +ὑμεῖς +ὅταν +ἴδητε +ταῦτα +γινόμενα +γινώσκετε +ὅτι +ἐγγύς +ἐστιν +ἐπί +θύραις +ἀμήν +λέγω +ὑμῖν +ὅτι +οὐ +μή +παρέλθῃ +ἡ +γενεά +αὕτη +μέχρις +οὗ +ταῦτα +πάντα +γένηται +ὁ +οὐρανός +καί +ἡ +γῆ +παρελεύσονται +δέ +οἱ +λόγοι +μου +οὐ +παρελεύσονται +δέ +Περί +τῆς +ἡμέρας +ἐκείνης +ἤ +τῆς +ὥρας +οὐδείς +οἶδεν +οὐδέ +οἱ +ἄγγελοι +ἐν +οὐρανῷ +οὐδέ +ὁ +Υἱός +εἰ +μή +ὁ +Πατήρ +Βλέπετε +ἀγρυπνεῖτε +γάρ +οὐκ +οἴδατε +πότε +ὁ +καιρός +ἐστιν +ὡς +ἄνθρωπος +ἀπόδημος +ἀφείς +τήν +οἰκίαν +αὐτοῦ +καί +δούς +τοῖς +δούλοις +αὐτοῦ +τήν +ἐξουσίαν +ἑκάστῳ +τό +ἔργον +αὐτοῦ +καί +τῷ +θυρωρῷ +ἐνετείλατο +ἵνα +γρηγορῇ +οὖν +γρηγορεῖτε +γάρ +οὐκ +οἴδατε +πότε +ὁ +κύριος +τῆς +οἰκίας +ἔρχεται +ἤ +ὀψέ +ἤ +μεσονύκτιον +ἤ +ἀλεκτοροφωνίας +ἤ +πρωΐ +μή +ἐλθών +ἐξαίφνης +εὕρῃ +ὑμᾶς +καθεύδοντας +δέ +ὅ +ὑμῖν +λέγω +πᾶσιν +λέγω +γρηγορεῖτε +δέ +Ἦν +τό +πάσχα +καί +τά +ἄζυμα +μετά +δύο +ἡμέρας +καί +ἐζήτουν +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +πῶς +αὐτόν +ἐν +δόλῳ +κρατήσαντες +ἀποκτείνωσιν +γάρ +ἔλεγον +Μή +ἐν +τῇ +ἑορτῇ +μή +ποτε +ἔσται +θόρυβος +τοῦ +λαοῦ +Καί +ὄντος +αὐτοῦ +ἐν +Βηθανίᾳ +ἐν +τῇ +οἰκίᾳ +Σίμωνος +τοῦ +λεπροῦ +κατακειμένου +αὐτοῦ +ἦλθεν +γυνή +ἔχουσα +ἀλάβαστρον +μύρου +νάρδου +πιστικῆς +πολυτελοῦς +συντρίψασα +τήν +ἀλάβαστρον +κατέχεεν +αὐτοῦ +τῆς +κεφαλῆς +δέ +τινες +ἦσαν +ἀγανακτοῦντες +πρός +ἑαυτούς +Εἰς +τί +ἡ +ἀπώλεια +αὕτη +τοῦ +μύρου +γέγονεν +γάρ +ἠδύνατο +τοῦτο +τό +μύρον +πραθῆναι +ἐπάνω +δηναρίων +τριακοσίων +καί +δοθῆναι +τοῖς +πτωχοῖς +καί +ἐνεβριμῶντο +αὐτῇ +δέ +ὁ +Ἰησοῦς +εἶπεν +Ἄφετε +αὐτήν +τί +αὐτῇ +κόπους +παρέχετε +καλόν +ἔργον +ἠργάσατο +ἐν +ἐμοί +γάρ +πάντοτε +τούς +πτωχούς +ἔχετε +μεθ’ +ἑαυτῶν +καί +ὅταν +θέλητε +δύνασθε +αὐτοῖς +εὖ +ποιῆσαι +δέ +ἐμέ +οὐ +πάντοτε +ἔχετε +ὅ +ἔσχεν +ἐποίησεν +προέλαβεν +μυρίσαι +τό +σῶμα +μου +εἰς +τόν +ἐνταφιασμόν +δέ +ἀμήν +λέγω +ὑμῖν +ἐάν +ὅπου +κηρυχθῇ +τό +εὐαγγέλιον +εἰς +ὅλον +τόν +κόσμον +καί +ὅ +ἐποίησεν +αὕτη +λαληθήσεται +εἰς +μνημόσυνον +αὐτῆς +Καί +Ἰούδας +Ἰσκαριώθ +ὁ +εἷς +τῶν +δώδεκα +ἀπῆλθεν +πρός +τούς +ἀρχιερεῖς +ἵνα +αὐτόν +παραδοῖ +αὐτοῖς +δέ +οἱ +ἀκούσαντες +ἐχάρησαν +καί +ἐπηγγείλαντο +αὐτῷ +ἀργύριον +δοῦναι +καί +ἐζήτει +πῶς +αὐτόν +εὐκαίρως +παραδοῖ +Καί +τῇ +πρώτῃ +ἡμέρᾳ +τῶν +ἀζύμων +ὅτε +τό +πάσχα +ἔθυον +λέγουσιν +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +θέλεις +Ποῦ +ἀπελθόντες +ἑτοιμάσωμεν +ἵνα +φάγῃς +τό +πάσχα +καί +ἀποστέλλει +δύο +τῶν +μαθητῶν +αὐτοῦ +καί +λέγει +αὐτοῖς +Ὑπάγετε +εἰς +τήν +πόλιν +καί +ἀπαντήσει +ὑμῖν +ἄνθρωπος +κεράμιον +ὕδατος +βαστάζων +ἀκολουθήσατε +αὐτῷ +καί +ἐάν +ὅπου +εἰσέλθῃ +εἴπατε +τῷ +οἰκοδεσπότῃ +ὅτι +Ὁ +Διδάσκαλος +λέγει +Ποῦ +ἐστιν +τό +κατάλυμα +μου +ὅπου +τό +πάσχα +μετά +τῶν +μαθητῶν +μου +φάγω +καί +αὐτός +ὑμῖν +δείξει +ἀνάγαιον +μέγα +ἐστρωμένον +ἕτοιμον +καί +ἐκεῖ +ἑτοιμάσατε +ἡμῖν +καί +ἐξῆλθον +οἱ +μαθηταί +καί +ἦλθον +εἰς +τήν +πόλιν +καί +εὗρον +καθώς +εἶπεν +αὐτοῖς +καί +ἡτοίμασαν +τό +πάσχα +Καί +ὀψίας +γενομένης +ἔρχεται +μετά +τῶν +δώδεκα +καί +αὐτῶν +ἀνακειμένων +καί +ἐσθιόντων +ὁ +Ἰησοῦς +εἶπεν +Ἀμήν +λέγω +ὑμῖν +ὅτι +παραδώσει +με +εἷς +ἐξ +ὑμῶν +ὁ +ἐσθίων +μετ’ +ἐμοῦ +ἤρξαντο +λυπεῖσθαι +καί +λέγειν +αὐτῷ +εἷς +κατά +εἷς +Μήτι +ἐγώ +δέ +ὁ +εἶπεν +αὐτοῖς +Εἷς +τῶν +δώδεκα +ὁ +ἐμβαπτόμενος +μετ’ +ἐμοῦ +εἰς +τό +τρύβλιον +ὅτι +μέν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ὑπάγει +καθώς +γέγραπται +περί +αὐτοῦ +δέ +οὐαί +τῷ +ἀνθρώπῳ +ἐκείνῳ +δι’ +οὗ +ὁ +Υἱός +τοῦ +ἀνθρώπου +παραδίδοται +καλόν +αὐτῷ +εἰ +οὐκ +ἐγεννήθη +ὁ +ἄνθρωπος +ἐκεῖνος +Καί +ἐσθιόντων +αὐτῶν +λαβών +ἄρτον +εὐλογήσας +ἔκλασεν +καί +ἔδωκεν +αὐτοῖς +καί +εἶπεν +Λάβετε +τοῦτο +ἐστιν +τό +σῶμα +μου +καί +λαβών +ποτήριον +εὐχαριστήσας +ἔδωκεν +αὐτοῖς +καί +ἔπιον +ἐξ +αὐτοῦ +πάντες +καί +εἶπεν +αὐτοῖς +Τοῦτο +ἐστιν +τό +αἷμα +μου +τῆς +διαθήκης +τό +ἐκχυννόμενον +ὑπέρ +πολλῶν +ἀμήν +λέγω +ὑμῖν +ὅτι +οὐκέτι +οὐ +μή +πίω +ἐκ +τοῦ +γενήματος +τῆς +ἀμπέλου +ἕως +τῆς +ἡμέρας +ἐκείνης +ὅταν +αὐτό +πίνω +καινόν +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +Καί +ὑμνήσαντες +ἐξῆλθον +εἰς +τό +ὄρος +τῶν +Ἐλαιῶν +Καί +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +ὅτι +Πάντες +σκανδαλισθήσεσθε +ὅτι +γέγραπται +Πατάξω +τόν +ποιμένα +καί +τά +πρόβατα +διασκορπισθήσονται +ἀλλά +μετά +τό +ἐγερθῆναι +με +προάξω +ὑμᾶς +εἰς +τήν +Γαλιλαίαν +δέ +ὁ +Πέτρος +ἔφη +αὐτῷ +Εἰ +καί +πάντες +σκανδαλισθήσονται +ἀλλ’ +οὐκ +ἐγώ +καί +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἀμήν +λέγω +σοι +ὅτι +σύ +σήμερον +ταύτῃ +τῇ +νυκτί +πρίν +ἤ +δίς +ἀλέκτορα +φωνῆσαι +τρίς +με +ἀπαρνήσῃ +δέ +ὁ +ἐκπερισσῶς +ἐλάλει +Ἐάν +δέῃ +με +συναποθανεῖν +σοι +οὐ +μή +σε +ἀπαρνήσομαι +δέ +ὡσαύτως +καί +πάντες +ἔλεγον +Καί +ἔρχονται +εἰς +χωρίον +οὗ +τό +ὄνομα +Γεθσημανεί +καί +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +Καθίσατε +ὧδε +ἕως +προσεύξωμαι +καί +παραλαμβάνει +τόν +Πέτρον +καί +τόν +Ἰάκωβον +καί +τόν +Ἰωάνην +μετ’ +αὐτοῦ +καί +ἤρξατο +ἐκθαμβεῖσθαι +καί +ἀδημονεῖν +καί +λέγει +αὐτοῖς +Περίλυπος +ἐστιν +ἡ +ψυχή +μου +ἕως +θανάτου +μείνατε +ὧδε +καί +γρηγορεῖτε +καί +προελθών +μικρόν +ἔπιπτεν +ἐπί +τῆς +γῆς +καί +προσηύχετο +ἵνα +εἰ +δυνατόν +ἐστιν +παρέλθῃ +ἀπ’ +αὐτοῦ +ἡ +ὥρα +καί +ἔλεγεν +Ἀββᾶ +ὁ +Πατήρ +πάντα +δυνατά +σοι +παρένεγκε +τό +ποτήριον +τοῦτο +ἀπ’ +ἐμοῦ +ἀλλ’ +οὐ +τί +ἐγώ +θέλω +ἀλλά +τί +σύ +καί +ἔρχεται +καί +εὑρίσκει +αὐτούς +καθεύδοντας +καί +λέγει +τῷ +Πέτρῳ +Σίμων +καθεύδεις +οὐκ +ἴσχυσας +μίαν +ὥραν +γρηγορῆσαι +γρηγορεῖτε +καί +προσεύχεσθε +ἵνα +μή +ἔλθητε +εἰς +πειρασμόν +μέν +τό +πνεῦμα +πρόθυμον +δέ +ἡ +σάρξ +ἀσθενής +καί +πάλιν +ἀπελθών +προσηύξατο +τόν +αὐτόν +λόγον +εἰπών +καί +πάλιν +ἐλθών +εὗρεν +αὐτούς +καθεύδοντας +γάρ +ἦσαν +καταβαρυνόμενοι +αὐτῶν +οἱ +ὀφθαλμοί +καί +οὐκ +ᾔδεισαν +τί +ἀποκριθῶσιν +αὐτῷ +καί +ἔρχεται +τό +τρίτον +καί +λέγει +αὐτοῖς +Καθεύδετε +τό +λοιπόν +καί +ἀναπαύεσθε +ἀπέχει +ἦλθεν +ἡ +ὥρα +ἰδού +παραδίδοται +ὁ +Υἱός +τοῦ +ἀνθρώπου +εἰς +τάς +χεῖρας +τῶν +ἁμαρτωλῶν +ἐγείρεσθε +ἄγωμεν +ἰδού +ὁ +παραδιδούς +με +ἤγγικεν +Καί +εὐθύς +ἔτι +αὐτοῦ +λαλοῦντος +παραγίνεται +ὁ +Ἰούδας +εἷς +τῶν +δώδεκα +καί +μετ’ +αὐτοῦ +ὄχλος +μετά +μαχαιρῶν +καί +ξύλων +παρά +τῶν +ἀρχιερέων +καί +τῶν +γραμματέων +καί +τῶν +πρεσβυτέρων +δέ +δεδώκει +ὁ +παραδιδούς +αὐτόν +σύσσημον +αὐτοῖς +λέγων +ἄν +Ὅν +φιλήσω +αὐτός +ἐστιν +κρατήσατε +αὐτόν +καί +ἀπάγετε +ἀσφαλῶς +καί +ἐλθών +εὐθύς +προσελθών +αὐτῷ +λέγει +Ῥαββεί +καί +κατεφίλησεν +αὐτόν +δέ +οἱ +ἐπέβαλαν +τάς +χεῖρας +αὐτῷ +καί +ἐκράτησαν +αὐτόν +δέ +εἷς +τις +τῶν +παρεστηκότων +σπασάμενος +τήν +μάχαιραν +ἔπαισεν +τόν +δοῦλον +τοῦ +ἀρχιερέως +καί +ἀφεῖλεν +αὐτοῦ +τό +ὠτάριον +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ὡς +ἐπί +λῃστήν +ἐξήλθατε +μετά +μαχαιρῶν +καί +ξύλων +συλλαβεῖν +με +καθ’ +ἡμέραν +ἤμην +πρός +ὑμᾶς +ἐν +τῷ +ἱερῷ +διδάσκων +καί +οὐκ +ἐκρατήσατε +με +ἀλλ’ +ἵνα +πληρωθῶσιν +αἱ +γραφαί +καί +ἀφέντες +αὐτόν +ἔφυγον +πάντες +Καί +νεανίσκος +τις +συνηκολούθει +αὐτῷ +περιβεβλημένος +σινδόνα +ἐπί +γυμνοῦ +καί +κρατοῦσιν +αὐτόν +δέ +ὁ +καταλιπών +τήν +σινδόνα +γυμνός +ἔφυγεν +Καί +ἀπήγαγον +τόν +Ἰησοῦν +πρός +τόν +ἀρχιερέα +καί +συνέρχονται +πάντες +οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +καί +οἱ +γραμματεῖς +καί +ὁ +Πέτρος +ἀπό +μακρόθεν +ἠκολούθησεν +αὐτῷ +ἕως +ἔσω +εἰς +τήν +αὐλήν +τοῦ +ἀρχιερέως +καί +ἦν +συνκαθήμενος +μετά +τῶν +ὑπηρετῶν +καί +θερμαινόμενος +πρός +τό +φῶς +δέ +Οἱ +ἀρχιερεῖς +καί +ὅλον +τό +συνέδριον +ἐζήτουν +κατά +τοῦ +Ἰησοῦ +μαρτυρίαν +εἰς +τό +θανατῶσαι +αὐτόν +καί +οὐχ +ηὕρισκον +γάρ +πολλοί +ἐψευδομαρτύρουν +κατ’ +αὐτοῦ +καί +ἴσαι +αἱ +μαρτυρίαι +οὐκ +ἦσαν +καί +τινες +ἀναστάντες +ἐψευδομαρτύρουν +κατ’ +αὐτοῦ +λέγοντες +ὅτι +Ἠμεῖς +ἠκούσαμεν +αὐτοῦ +λέγοντος +ὅτι +Ἐγώ +καταλύσω +τόν +ναόν +τοῦτον +τόν +χειροποίητον +καί +διά +τριῶν +ἡμερῶν +ἄλλον +ἀχειροποίητον +οἰκοδομήσω +καί +οὐδέ +οὕτως +ἴση +ἦν +ἡ +μαρτυρία +αὐτῶν +καί +ἀναστάς +εἰς +μέσον +ὁ +ἀρχιερεύς +ἐπηρώτησεν +τόν +Ἰησοῦν +λέγων +Οὐκ +ἀποκρίνῃ +οὐδέν +τί +οὗτοι +σου +καταμαρτυροῦσιν +δέ +ὁ +ἐσιώπα +καί +οὐκ +ἀπεκρίνατο +οὐδέν +πάλιν +ὁ +ἀρχιερεύς +ἐπηρώτα +αὐτόν +καί +λέγει +αὐτῷ +Σύ +εἶ +ὁ +Χριστός +ὁ +Υἱός +τοῦ +Εὐλογητοῦ +δέ +ὁ +Ἰησοῦς +εἶπεν +Ἐγώ +εἰμι +καί +ὄψεσθε +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἐκ +δεξιῶν +τῆς +δυνάμεως +καθήμενον +καί +ἐρχόμενον +μετά +τῶν +νεφελῶν +τοῦ +οὐρανοῦ +δέ +ὁ +ἀρχιερεύς +διαρρήξας +τούς +χιτῶνας +αὐτοῦ +λέγει +Τί +ἔτι +χρείαν +μαρτύρων +ἔχομεν +ἠκούσατε +τῆς +βλασφημίας +τί +ὑμῖν +φαίνεται +δέ +οἱ +πάντες +κατέκριναν +αὐτόν +ἔνοχον +εἶναι +θανάτου +Καί +ἤρξαντο +τινες +ἐμπτύειν +αὐτῷ +καί +περικαλύπτειν +αὐτοῦ +τό +πρόσωπον +καί +κολαφίζειν +αὐτόν +καί +λέγειν +αὐτῷ +Προφήτευσον +καί +οἱ +ὑπηρέται +ῥαπίσμασιν +αὐτόν +ἔλαβον +Καί +ὄντος +τοῦ +Πέτρου +κάτω +ἐν +τῇ +αὐλῇ +ἔρχεται +μία +τῶν +παιδισκῶν +τοῦ +ἀρχιερέως +καί +ἰδοῦσα +τόν +Πέτρον +θερμαινόμενον +ἐμβλέψασα +αὐτῷ +λέγει +Καί +σύ +μετά +τοῦ +Ναζαρηνοῦ +τοῦ +Ἰησοῦ +ἦσθα +δέ +ὁ +ἠρνήσατο +λέγων +Οὔτε +οἶδα +οὔτε +ἐπίσταμαι +σύ +τί +λέγεις +καί +ἐξῆλθεν +ἔξω +εἰς +τό +προαύλιον +καί +ἡ +παιδίσκη +ἰδοῦσα +αὐτόν +ἤρξατο +πάλιν +λέγειν +τοῖς +παρεστῶσιν +ὅτι +Οὗτος +ἐξ +αὐτῶν +ἐστιν +δέ +ὁ +πάλιν +ἠρνεῖτο +καί +μετά +μικρόν +πάλιν +οἱ +παρεστῶτες +ἔλεγον +τῷ +Πέτρῳ +Ἀληθῶς +ἐξ +αὐτῶν +εἶ +γάρ +καί +Γαλιλαῖος +εἶ +δέ +ὁ +ἤρξατο +ἀναθεματίζειν +καί +ὀμνύναι +ὅτι +Οὐκ +οἶδα +τόν +ἄνθρωπον +τοῦτον +ὅν +λέγετε +καί +εὐθύς +ἐκ +δευτέρου +ἀλέκτωρ +ἐφώνησεν +καί +ἀνεμνήσθη +ὁ +Πέτρος +τό +ῥῆμα +ὡς +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +ὅτι +Πρίν +ἀλέκτορα +δίς +φωνῆσαι +τρίς +με +ἀπαρνήσῃ +καί +ἐπιβαλών +ἔκλαιεν +Καί +εὐθύς +πρωΐ +οἱ +ἀρχιερεῖς +συμβούλιον +ἑτοιμάσαντες +μετά +τῶν +πρεσβυτέρων +καί +γραμματέων +καί +ὅλον +τό +συνέδριον +δήσαντες +τόν +Ἰησοῦν +ἀπήνεγκαν +καί +παρέδωκαν +Πειλάτῳ +καί +ἐπηρώτησεν +αὐτόν +ὁ +Πειλᾶτος +Σύ +εἶ +ὁ +Βασιλεύς +τῶν +Ἰουδαίων +δέ +ὁ +ἀποκριθείς +αὐτῷ +λέγει +Σύ +λέγεις +καί +κατηγόρουν +αὐτοῦ +οἱ +ἀρχιερεῖς +πολλά +δέ +ὁ +Πειλᾶτος +πάλιν +ἐπηρώτα +αὐτόν +λέγων +Οὐκ +ἀποκρίνῃ +οὐδέν +ἴδε +πόσα +σου +κατηγοροῦσιν +δέ +ὁ +Ἰησοῦς +οὐκέτι +οὐδέν +ἀπεκρίθη +ὥστε +θαυμάζειν +τόν +Πειλᾶτον +δέ +Κατά +ἑορτήν +ἀπέλυεν +αὐτοῖς +ἕνα +δέσμιον +ὅν +παρῃτοῦντο +δέ +ἦν +δεδεμένος +ὁ +λεγόμενος +Βαραββᾶς +μετά +τῶν +στασιαστῶν +οἵτινες +ἐν +τῇ +στάσει +φόνον +πεποιήκεισαν +καί +ἀναβάς +ὁ +ὄχλος +ἤρξατο +αἰτεῖσθαι +καθώς +ἐποίει +αὐτοῖς +δέ +ὁ +Πειλᾶτος +ἀπεκρίθη +αὐτοῖς +λέγων +Θέλετε +ἀπολύσω +ὑμῖν +τόν +Βασιλέα +τῶν +Ἰουδαίων +γάρ +ἐγίνωσκεν +ὅτι +διά +φθόνον +παραδεδώκεισαν +αὐτόν +οἱ +ἀρχιερεῖς +δέ +οἱ +ἀρχιερεῖς +ἀνέσεισαν +τόν +ὄχλον +ἵνα +μᾶλλον +τόν +Βαραββᾶν +ἀπολύσῃ +αὐτοῖς +δέ +ὁ +Πειλᾶτος +πάλιν +ἀποκριθείς +ἔλεγεν +αὐτοῖς +οὖν +Τί +ποιήσω +ὅν +λέγετε +τόν +Βασιλέα +τῶν +Ἰουδαίων +δέ +οἱ +πάλιν +ἔκραξαν +Σταύρωσον +αὐτόν +δέ +ὁ +Πειλᾶτος +ἔλεγεν +αὐτοῖς +γάρ +ἐποίησεν +Τί +κακόν +δέ +οἱ +περισσῶς +ἔκραξαν +Σταύρωσον +αὐτόν +δέ +ὁ +Πειλᾶτος +βουλόμενος +τῷ +ὄχλῳ +τό +ἱκανόν +ποιῆσαι +ἀπέλυσεν +αὐτοῖς +τόν +Βαραββᾶν +καί +παρέδωκεν +τόν +Ἰησοῦν +φραγελλώσας +ἵνα +σταυρωθῇ +δέ +Οἱ +στρατιῶται +ἀπήγαγον +αὐτόν +ἔσω +τῆς +αὐλῆς +ὅ +ἐστιν +Πραιτώριον +καί +συνκαλοῦσιν +ὅλην +τήν +σπεῖραν +καί +ἐνδιδύσκουσιν +αὐτόν +πορφύραν +καί +περιτιθέασιν +αὐτῷ +πλέξαντες +ἀκάνθινον +στέφανον +καί +ἤρξαντο +ἀσπάζεσθαι +αὐτόν +Χαῖρε +Βασιλεῦ +τῶν +Ἰουδαίων +καί +ἔτυπτον +αὐτοῦ +τήν +κεφαλήν +καλάμῳ +καί +ἐνέπτυον +αὐτῷ +καί +τιθέντες +τά +γόνατα +προσεκύνουν +αὐτῷ +καί +ὅτε +ἐνέπαιξαν +αὐτῷ +ἐξέδυσαν +αὐτόν +τήν +πορφύραν +καί +ἐνέδυσαν +αὐτόν +τά +ἱμάτια +αὐτοῦ +Καί +ἐξάγουσιν +αὐτόν +ἵνα +σταυρώσωσιν +αὐτόν +καί +ἀγγαρεύουσιν +παράγοντα +τινα +Σίμωνα +Κυρηναῖον +ἐρχόμενον +ἀπ’ +ἀγροῦ +τόν +πατέρα +Ἀλεξάνδρου +καί +Ῥούφου +ἵνα +ἄρῃ +τόν +σταυρόν +αὐτοῦ +καί +φέρουσιν +αὐτόν +ἐπί +τόν +τόπον +Γολγοθᾶν +ὅ +ἐστιν +μεθερμηνευόμενος +Κρανίου +τόπος +καί +ἐδίδουν +αὐτῷ +ἐσμυρνισμένον +οἶνον +δέ +ὅς +οὐκ +ἔλαβεν +καί +σταυροῦσιν +αὐτόν +καί +διαμερίζονται +τά +ἱμάτια +αὐτοῦ +βάλλοντες +κλῆρον +ἐπ’ +αὐτά +τίς +τί +ἄρῃ +δέ +ἦν +ὥρα +τρίτη +καί +ἐσταύρωσαν +αὐτόν +καί +ἦν +ἐπιγεγραμμένη +ἡ +ἐπιγραφή +τῆς +αἰτίας +αὐτοῦ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ +Καί +σύν +αὐτῷ +σταυροῦσιν +δύο +λῃστάς +ἕνα +ἐκ +δεξιῶν +καί +ἕνα +ἐξ +εὐωνύμων +αὐτοῦ +Καί +οἱ +παραπορευόμενοι +ἐβλασφήμουν +αὐτόν +κινοῦντες +τάς +κεφαλάς +αὐτῶν +καί +λέγοντες +Οὐά +ὁ +καταλύων +τόν +ναόν +καί +οἰκοδομῶν +ἐν +τρισίν +ἡμέραις +σῶσον +σεαυτόν +καταβάς +ἀπό +τοῦ +σταυροῦ +ὁμοίως +καί +οἱ +ἀρχιερεῖς +ἐμπαίζοντες +πρός +ἀλλήλους +μετά +τῶν +γραμματέων +ἔλεγον +Ἄλλους +ἔσωσεν +ἑαυτόν +σῶσαι +οὐ +δύναται +ὁ +Χριστός +ὁ +Βασιλεύς +Ἰσραήλ +καταβάτω +νῦν +ἀπό +τοῦ +σταυροῦ +ἵνα +ἴδωμεν +καί +πιστεύσωμεν +καί +οἱ +συνεσταυρωμένοι +σύν +αὐτῷ +ὠνείδιζον +αὐτόν +Καί +γενομένης +ὥρας +ἕκτης +σκότος +ἐγένετο +ἐφ’ +ὅλην +τήν +γῆν +ἕως +ὥρας +ἐνάτης +καί +τῇ +ἐνάτῃ +ὥρᾳ +ἐβόησεν +ὁ +Ἰησοῦς +φωνῇ +μεγάλῃ +Ἐλωΐ +Ἐλωΐ +λαμά +σαβαχθανεί +ὅ +ἐστιν +μεθερμηνευόμενον +Ὁ +Θεός +μου +ὁ +Θεός +μου +εἰς +τί +ἐγκατέλιπες +με +καί +τινες +τῶν +παρεστηκότων +ἀκούσαντες +ἔλεγον +Ἴδε +Ἠλείαν +φωνεῖ +δέ +τις +δραμών +καί +γεμίσας +σπόγγον +ὄξους +περιθείς +καλάμῳ +ἐπότιζεν +αὐτόν +λέγων +Ἄφετε +ἴδωμεν +εἰ +ἔρχεται +Ἠλείας +καθελεῖν +αὐτόν +δέ +ὁ +Ἰησοῦς +ἀφείς +φωνήν +μεγάλην +ἐξέπνευσεν +Καί +τό +καταπέτασμα +τοῦ +ναοῦ +ἐσχίσθη +εἰς +δύο +ἀπ’ +ἄνωθεν +ἕως +κάτω +δέ +ὁ +κεντυρίων +ὁ +παρεστηκώς +ἐξ +ἐναντίας +αὐτοῦ +Ἰδών +ὅτι +οὕτως +ἐξέπνευσεν +εἶπεν +Ἀληθῶς +οὗτος +ὁ +ἄνθρωπος +Υἱός +Θεοῦ +ἦν +δέ +Ἦσαν +καί +γυναῖκες +ἀπό +μακρόθεν +θεωροῦσαι +ἐν +αἷς +καί +Μαρία +ἡ +Μαγδαληνή +καί +Μαρία +ἡ +Ἰακώβου +τοῦ +μικροῦ +καί +Ἰωσῆτος +μήτηρ +καί +Σαλώμη +αἵ +ὅτε +ἦν +ἐν +τῇ +Γαλιλαίᾳ +ἠκολούθουν +αὐτῷ +καί +διηκόνουν +αὐτῷ +καί +ἄλλαι +πολλαί +αἱ +συναναβᾶσαι +αὐτῷ +εἰς +Ἱεροσόλυμα +Καί +ἤδη +ὀψίας +γενομένης +ἐπεί +ἦν +Παρασκευή +ὅ +ἐστιν +προσάββατον +ἐλθών +Ἰωσήφ +ὁ +ἀπό +Ἀριμαθαίας +εὐσχήμων +βουλευτής +ὅς +καί +αὐτός +ἦν +προσδεχόμενος +τήν +βασιλείαν +τοῦ +Θεοῦ +τολμήσας +εἰσῆλθεν +πρός +τόν +Πειλᾶτον +καί +ᾐτήσατο +τό +σῶμα +τοῦ +Ἰησοῦ +δέ +ὁ +Πειλᾶτος +ἐθαύμασεν +εἰ +ἤδη +τέθνηκεν +καί +προσκαλεσάμενος +τόν +κεντυρίωνα +ἐπηρώτησεν +αὐτόν +εἰ +πάλαι +ἀπέθανεν +καί +γνούς +ἀπό +τοῦ +κεντυρίωνος +ἐδωρήσατο +τό +πτῶμα +τῷ +Ἰωσήφ +καί +ἀγοράσας +σινδόνα +καθελών +αὐτόν +ἐνείλησεν +τῇ +σινδόνι +καί +κατέθηκεν +αὐτόν +ἐν +μνήματι +ὅ +ἦν +λελατομημένον +ἐκ +πέτρας +καί +προσεκύλισεν +λίθον +ἐπί +τήν +θύραν +τοῦ +μνημείου +δέ +ἡ +Μαρία +ἡ +Μαγδαληνή +καί +Μαρία +ἡ +Ἰωσῆτος +ἐθεώρουν +ποῦ +τέθειται +Καί +διαγενομένου +τοῦ +σαββάτου +Μαρία +ἡ +Μαγδαληνή +καί +Μαρία +ἡ +τοῦ +Ἰακώβου +καί +Σαλώμη +ἠγόρασαν +ἀρώματα +ἵνα +ἐλθοῦσαι +ἀλείψωσιν +αὐτόν +καί +λίαν +πρωΐ +τῇ +μιᾷ +τῶν +σαββάτων +ἔρχονται +ἐπί +τό +μνῆμα +ἀνατείλαντος +τοῦ +ἡλίου +καί +ἔλεγον +πρός +ἑαυτάς +Τίς +ἀποκυλίσει +ἡμῖν +τόν +λίθον +ἐκ +τῆς +θύρας +τοῦ +μνημείου +καί +ἀναβλέψασαι +θεωροῦσιν +ὅτι +ἀνακεκύλισται +ὁ +λίθος +γάρ +ἦν +μέγας +σφόδρα +καί +εἰσελθοῦσαι +εἰς +τό +μνημεῖον +εἶδον +νεανίσκον +καθήμενον +ἐν +τοῖς +δεξιοῖς +περιβεβλημένον +στολήν +λευκήν +καί +ἐξεθαμβήθησαν +δέ +ὁ +λέγει +αὐταῖς +Μή +ἐκθαμβεῖσθε +ζητεῖτε +Ἰησοῦν +τόν +Ναζαρηνόν +τόν +ἐσταυρωμένον +ἠγέρθη +οὐκ +ἔστιν +ὧδε +ἴδε +ὁ +τόπος +ὅπου +ἔθηκαν +αὐτόν +ἀλλά +ὑπάγετε +εἴπατε +τοῖς +μαθηταῖς +αὐτοῦ +καί +τῷ +Πέτρῳ +ὅτι +Προάγει +ὑμᾶς +εἰς +τήν +Γαλιλαίαν +ἐκεῖ +αὐτόν +ὄψεσθε +καθώς +εἶπεν +ὑμῖν +καί +ἐξελθοῦσαι +ἔφυγον +ἀπό +τοῦ +μνημείου +γάρ +εἶχεν +αὐτάς +τρόμος +καί +ἔκστασις +καί +οὐδενί +οὐδέν +εἶπαν +γάρ +ἐφοβοῦντο +δέ +Ἀναστάς +πρωΐ +πρώτῃ +σαββάτου +ἐφάνη +πρῶτον +Μαρίᾳ +τῇ +Μαγδαληνῇ +παρ’ +ἧς +ἐκβεβλήκει +ἑπτά +δαιμόνια +ἐκείνη +πορευθεῖσα +ἀπήγγειλεν +τοῖς +μετ’ +αὐτοῦ +γενομένοις +πενθοῦσι +καί +κλαίουσιν +κἀκεῖνοι +ἀκούσαντες +ὅτι +ζῇ +καί +ἐθεάθη +ὑπ’ +αὐτῆς +ἠπίστησαν +δέ +Μετά +ταῦτα +δυσίν +ἐξ +αὐτῶν +περιπατοῦσιν +ἐφανερώθη +ἐν +ἑτέρᾳ +μορφῇ +πορευομένοις +εἰς +ἀγρόν +κἀκεῖνοι +ἀπελθόντες +ἀπήγγειλαν +τοῖς +λοιποῖς +οὐδέ +ἐκείνοις +ἐπίστευσαν +δέ +Ὕστερον +ἀνακειμένοις +αὐτοῖς +τοῖς +ἕνδεκα +ἐφανερώθη +καί +ὠνείδισεν +τήν +ἀπιστίαν +αὐτῶν +καί +σκληροκαρδίαν +ὅτι +τοῖς +θεασαμένοις +αὐτόν +ἐγηγερμένον +οὐκ +ἐπίστευσαν +καί +εἶπεν +αὐτοῖς +Πορευθέντες +εἰς +τόν +κόσμον +ἅπαντα +κηρύξατε +τό +εὐαγγέλιον +πάσῃ +τῇ +κτίσει +ὁ +πιστεύσας +καί +βαπτισθείς +σωθήσεται +δέ +ὁ +ἀπιστήσας +κατακριθήσεται +δέ +σημεῖα +ταῦτα +τοῖς +πιστεύσασιν +παρακολουθήσει +ἐν +τῷ +ὀνόματι +μου +δαιμόνια +ἐκβαλοῦσιν +γλώσσαις +καιναῖς +λαλήσουσιν +ὄφεις +ἀροῦσιν +κἄν +θανάσιμον +τι +πίωσιν +οὐ +μή +αὐτούς +βλάψῃ +ἐπί +ἀρρώστους +χεῖρας +ἐπιθήσουσιν +καί +καλῶς +ἕξουσιν +μέν +οὖν +Ὁ +Κύριος +Ἰησοῦς +μετά +τό +λαλῆσαι +αὐτοῖς +ἀνελήμφθη +εἰς +τόν +οὐρανόν +καί +ἐκάθισεν +ἐκ +δεξιῶν +τοῦ +Θεοῦ +δέ +ἐκεῖνοι +ἐξελθόντες +ἐκήρυξαν +πανταχοῦ +τοῦ +Κυρίου +συνεργοῦντος +καί +τόν +λόγον +βεβαιοῦντος +διά +τῶν +ἐπακολουθούντων +σημείων +δέ +Πάντα +τά +παρηγγελμένα +τοῖς +περί +τόν +Πέτρον +συντόμως +ἐξήγγειλαν +δέ +Μετά +ταῦτα +καί +αὐτός +ὁ +Ἰησοῦς +ἀπό +ἀνατολῆς +καί +ἄχρι +δύσεως +ἐξαπέστειλεν +δι’ +αὐτῶν +τό +ἱερόν +καί +ἄφθαρτον +κήρυγμα +τῆς +αἰωνίου +σωτηρίας +Ἐπειδήπερ +πολλοί +ἐπεχείρησαν +ἀνατάξασθαι +διήγησιν +περί +τῶν +πεπληροφορημένων +ἐν +ἡμῖν +πραγμάτων +καθώς +παρέδοσαν +ἡμῖν +οἱ +ἀπ’ +ἀρχῆς +αὐτόπται +καί +ὑπηρέται +γενόμενοι +τοῦ +λόγου +ἔδοξε +κἀμοί +παρηκολουθηκότι +ἄνωθεν +πᾶσιν +ἀκριβῶς +καθεξῆς +σοι +γράψαι +κράτιστε +Θεόφιλε +ἵνα +ἐπιγνῷς +περί +ὧν +κατηχήθης +λόγων +τήν +ἀσφάλειαν +Ἐγένετο +ἐν +ταῖς +ἡμέραις +Ἠρῴδου +βασιλέως +τῆς +Ἰουδαίας +ἱερεύς +τις +ὀνόματι +Ζαχαρίας +ἐξ +ἐφημερίας +Ἀβιά +καί +γυνή +αὐτῷ +ἐκ +τῶν +θυγατέρων +Ἀαρών +καί +τό +ὄνομα +αὐτῆς +Ἐλεισάβετ +δέ +ἦσαν +δίκαιοι +ἀμφότεροι +ἐναντίον +τοῦ +Θεοῦ +πορευόμενοι +ἐν +πάσαις +ταῖς +ἐντολαῖς +καί +δικαιώμασιν +τοῦ +Κυρίου +ἄμεμπτοι +καί +οὐκ +ἦν +αὐτοῖς +τέκνον +καθότι +ἦν +ἡ +Ἐλεισάβετ +στεῖρα +καί +ἀμφότεροι +προβεβηκότες +ἦσαν +ἐν +ταῖς +ἡμέραις +αὐτῶν +δέ +Ἐγένετο +ἐν +τῷ +ἱερατεύειν +αὐτόν +ἐν +τῇ +τάξει +τῆς +ἐφημερίας +αὐτοῦ +ἔναντι +τοῦ +Θεοῦ +κατά +τό +ἔθος +τῆς +ἱερατείας +ἔλαχε +τοῦ +θυμιᾶσαι +εἰσελθών +εἰς +τόν +ναόν +τοῦ +Κυρίου +καί +πᾶν +τό +πλῆθος +τοῦ +λαοῦ +ἦν +προσευχόμενον +ἔξω +τῇ +ὥρᾳ +τοῦ +θυμιάματος +δέ +ὤφθη +αὐτῷ +ἄγγελος +Κυρίου +ἑστώς +ἐκ +δεξιῶν +τοῦ +θυσιαστηρίου +τοῦ +θυμιάματος +καί +ἐταράχθη +Ζαχαρίας +ἰδών +καί +φόβος +ἐπέπεσεν +ἐπ’ +αὐτόν +δέ +εἶπεν +πρός +αὐτόν +ὁ +ἄγγελος +Μή +φοβοῦ +Ζαχαρία +διότι +εἰσηκούσθη +ἡ +δέησις +σου +καί +ἡ +γυνή +σου +Ἐλεισάβετ +γεννήσει +υἱόν +σοι +καί +καλέσεις +τό +ὄνομα +αὐτοῦ +Ἰωάνην +καί +ἔσται +σοι +χαρά +καί +ἀγαλλίασις +καί +πολλοί +ἐπί +τῇ +γενέσει +αὐτοῦ +χαρήσονται +γάρ +ἔσται +μέγας +ἐνώπιον +Κυρίου +καί +οἶνον +καί +σίκερα +οὐ +μή +πίῃ +καί +Πνεύματος +Ἁγίου +πλησθήσεται +ἔτι +ἐκ +κοιλίας +μητρός +αὐτοῦ +καί +πολλούς +τῶν +υἱῶν +Ἰσραήλ +ἐπιστρέψει +ἐπί +Κύριον +τόν +Θεόν +αὐτῶν +καί +αὐτός +προελεύσεται +ἐνώπιον +αὐτοῦ +ἐν +πνεύματι +καί +δυνάμει +Ἠλεία +ἐπιστρέψαι +καρδίας +πατέρων +ἐπί +τέκνα +καί +ἀπειθεῖς +ἐν +φρονήσει +δικαίων +ἑτοιμάσαι +Κυρίῳ +λαόν +κατεσκευασμένον +καί +εἶπεν +Ζαχαρίας +πρός +τόν +ἄγγελον +Κατά +τί +γνώσομαι +τοῦτο +γάρ +ἐγώ +εἰμι +πρεσβύτης +καί +ἡ +γυνή +μου +προβεβηκυῖα +ἐν +ταῖς +ἡμέραις +αὐτῆς +καί +ἀποκριθείς +ὁ +ἄγγελος +εἶπεν +αὐτῷ +Ἐγώ +εἰμι +Γαβριήλ +ὁ +παρεστηκώς +ἐνώπιον +τοῦ +Θεοῦ +καί +ἀπεστάλην +λαλῆσαι +πρός +σέ +καί +εὐαγγελίσασθαι +σοι +ταῦτα +καί +ἰδού +ἔσῃ +σιωπῶν +καί +μή +δυνάμενος +λαλῆσαι +ἄχρι +ἧς +ἡμέρας +γένηται +ταῦτα +ἀνθ’ +ὧν +οὐκ +ἐπίστευσας +τοῖς +λόγοις +μου +οἵτινες +πληρωθήσονται +εἰς +τόν +καιρόν +αὐτῶν +καί +ἦν +προσδοκῶν +ὁ +λαός +τόν +Ζαχαρίαν +καί +ἐθαύμαζον +ἐν +τῷ +χρονίζειν +ἐν +τῷ +ναῷ +αὐτόν +δέ +ἐξελθών +οὐκ +ἐδύνατο +λαλῆσαι +αὐτοῖς +καί +ἐπέγνωσαν +ὅτι +ὀπτασίαν +ἑώρακεν +ἐν +τῷ +ναῷ +καί +αὐτός +ἦν +διανεύων +αὐτοῖς +καί +διέμενεν +κωφός +καί +ἐγένετο +ὡς +ἐπλήσθησαν +αἱ +ἡμέραι +τῆς +λειτουργίας +αὐτοῦ +ἀπῆλθεν +εἰς +τόν +οἶκον +αὐτοῦ +δέ +Μετά +ταύτας +τάς +ἡμέρας +συνέλαβεν +Ἐλεισάβετ +ἡ +γυνή +αὐτοῦ +καί +περιέκρυβεν +ἑαυτήν +μῆνας +πέντε +λέγουσα +ὅτι +Οὕτως +μοι +πεποίηκεν +Κύριος +ἐν +ἡμέραις +αἷς +ἐπεῖδεν +ἀφελεῖν +ὄνειδος +μου +ἐν +ἀνθρώποις +δέ +Ἐν +τῷ +μηνί +τῷ +ἕκτῳ +ἀπεστάλη +ὁ +ἄγγελος +Γαβριήλ +ἀπό +τοῦ +Θεοῦ +εἰς +πόλιν +τῆς +Γαλιλαίας +ᾗ +ὄνομα +Ναζαρέθ +πρός +παρθένον +ἐμνηστευμένην +ἀνδρί +ᾧ +ὄνομα +Ἰωσήφ +ἐξ +οἴκου +Δαυείδ +καί +τό +ὄνομα +τῆς +παρθένου +Μαριάμ +καί +εἰσελθών +πρός +αὐτήν +εἶπεν +Χαῖρε +κεχαριτωμένη +ὁ +Κύριος +μετά +σοῦ +δέ +ἡ +ἐπί +τῷ +λόγῳ +διεταράχθη +καί +διελογίζετο +ποταπός +εἴη +ὁ +ἀσπασμός +οὗτος +καί +εἶπεν +ὁ +ἄγγελος +αὐτῇ +Μή +φοβοῦ +Μαριάμ +γάρ +εὗρες +χάριν +παρά +τῷ +Θεῷ +καί +ἰδού +συλλήμψῃ +ἐν +γαστρί +καί +τέξῃ +υἱόν +καί +καλέσεις +τό +ὄνομα +αὐτοῦ +Ἰησοῦν +οὗτος +ἔσται +μέγας +καί +Υἱός +Ὑψίστου +κληθήσεται +καί +δώσει +αὐτῷ +Κύριος +ὁ +Θεός +τόν +θρόνον +Δαυείδ +τοῦ +πατρός +αὐτοῦ +καί +βασιλεύσει +ἐπί +τόν +οἶκον +Ἰακώβ +εἰς +τούς +αἰῶνας +καί +τῆς +βασιλείας +αὐτοῦ +οὐκ +ἔσται +τέλος +δέ +εἶπεν +Μαριάμ +πρός +τόν +ἄγγελον +Πῶς +ἔσται +τοῦτο +ἐπεί +ἄνδρα +οὐ +γινώσκω +καί +ἀποκριθείς +ὁ +ἄγγελος +εἶπεν +αὐτῇ +Πνεῦμα +Ἅγιον +ἐπελεύσεται +ἐπί +σέ +καί +δύναμις +Ὑψίστου +ἐπισκιάσει +σοι +διό +καί +τό +γεννώμενον +ἅγιον +κληθήσεται +Υἱός +Θεοῦ +καί +ἰδού +Ἐλεισάβετ +ἡ +συγγενίς +σου +καί +αὐτή +συνείληφεν +υἱόν +ἐν +γήρει +αὐτῆς +καί +οὗτος +μήν +ἕκτος +ἐστίν +αὐτῇ +τῇ +καλουμένῃ +στείρᾳ +ὅτι +οὐκ +ἀδυνατήσει +παρά +τοῦ +Θεοῦ +πᾶν +ῥῆμα +δέ +εἶπεν +Μαριάμ +Ἰδού +ἡ +δούλη +Κυρίου +γένοιτο +μοι +κατά +τό +ῥῆμα +σου +καί +ἀπῆλθεν +ἀπ’ +αὐτῆς +ὁ +ἄγγελος +δέ +Μαριάμ +Ἀναστᾶσα +ἐν +ταῖς +ἡμέραις +ταύταις +ἐπορεύθη +εἰς +τήν +ὀρεινήν +μετά +σπουδῆς +εἰς +πόλιν +Ἰούδα +καί +εἰσῆλθεν +εἰς +τόν +οἶκον +Ζαχαρίου +καί +ἠσπάσατο +τήν +Ἐλεισάβετ +καί +ἐγένετο +ὡς +ἤκουσεν +τόν +ἀσπασμόν +τῆς +Μαρίας +ἡ +Ἐλεισάβετ +ἐσκίρτησεν +τό +βρέφος +ἐν +τῇ +κοιλίᾳ +αὐτῆς +καί +ἐπλήσθη +Πνεύματος +Ἁγίου +ἡ +Ἐλεισάβετ +καί +ἀνεφώνησεν +κραυγῇ +μεγάλῃ +καί +εἶπεν +Εὐλογημένη +σύ +ἐν +γυναιξίν +καί +εὐλογημένος +ὁ +καρπός +τῆς +κοιλίας +σου +καί +πόθεν +μοι +τοῦτο +ἵνα +ἔλθῃ +ἡ +μήτηρ +τοῦ +Κυρίου +μου +πρός +ἐμέ +γάρ +ἰδού +ὡς +ἐγένετο +ἡ +φωνή +τοῦ +ἀσπασμοῦ +σου +εἰς +τά +ὦτα +μου +ἐσκίρτησεν +ἐν +ἀγαλλιάσει +τό +βρέφος +ἐν +τῇ +κοιλίᾳ +μου +καί +μακαρία +ἡ +πιστεύσασα +ὅτι +ἔσται +τελείωσις +τοῖς +λελαλημένοις +αὐτῇ +παρά +Κυρίου +Καί +εἶπεν +Μαριάμ +Μεγαλύνει +ἡ +ψυχή +μου +τόν +Κύριον +καί +ἠγαλλίασεν +τό +πνεῦμα +μου +ἐπί +τῷ +Θεῷ +τῷ +Σωτῆρι +μου +ὅτι +ἐπέβλεψεν +ἐπί +τήν +ταπείνωσιν +τῆς +δούλης +αὐτοῦ +γάρ +ἰδού +ἀπό +τοῦ +νῦν +μακαριοῦσιν +με +πᾶσαι +αἱ +γενεαί +ὅτι +ἐποίησεν +μοι +μεγάλα +ὁ +δυνατός +καί +ἅγιον +τό +ὄνομα +αὐτοῦ +καί +τό +ἔλεος +αὐτοῦ +εἰς +γενεάς +καί +γενεάς +τοῖς +φοβουμένοις +αὐτόν +Ἐποίησεν +κράτος +ἐν +βραχίονι +αὐτοῦ +διεσκόρπισεν +ὑπερηφάνους +διανοίᾳ +καρδίας +αὐτῶν +καθεῖλεν +δυνάστας +ἀπό +θρόνων +καί +ὕψωσεν +ταπεινούς +πεινῶντας +ἐνέπλησεν +ἀγαθῶν +καί +πλουτοῦντας +ἐξαπέστειλεν +κενούς +ἀντελάβετο +Ἰσραήλ +παιδός +αὐτοῦ +μνησθῆναι +ἐλέους +τῷ +Ἀβραάμ +καί +τῷ +σπέρματι +αὐτοῦ +εἰς +τόν +αἰῶνα +καθώς +ἐλάλησεν +πρός +τούς +πατέρας +ἡμῶν +δέ +Ἔμεινεν +Μαριάμ +σύν +αὐτῇ +ὡς +μῆνας +τρεῖς +καί +ὑπέστρεψεν +εἰς +τόν +οἶκον +αὐτῆς +δέ +Τῇ +Ἐλεισάβετ +ἐπλήσθη +ὁ +χρόνος +τοῦ +τεκεῖν +αὐτήν +καί +ἐγέννησεν +υἱόν +καί +ἤκουσαν +οἱ +περίοικοι +καί +οἱ +συγγενεῖς +αὐτῆς +ὅτι +ἐμεγάλυνεν +Κύριος +τό +ἔλεος +αὐτοῦ +μετ’ +αὐτῆς +καί +συνέχαιρον +αὐτῇ +Καί +ἐγένετο +ἐν +τῇ +ἡμέρᾳ +τῇ +ὀγδόῃ +ἦλθον +περιτεμεῖν +τό +παιδίον +καί +ἐκάλουν +αὐτό +ἐπί +τῷ +ὀνόματι +τοῦ +πατρός +αὐτοῦ +Ζαχαρίαν +καί +ἀποκριθεῖσα +ἡ +μήτηρ +αὐτοῦ +εἶπεν +Οὐχί +ἀλλά +κληθήσεται +Ἰωάνης +καί +εἶπαν +πρός +αὐτήν +ὅτι +ἐστιν +ἐκ +τῆς +συγγενείας +σου +Οὐδείς +ὅς +καλεῖται +τῷ +ὀνόματι +τούτῳ +δέ +ἐνένευον +τῷ +πατρί +αὐτοῦ +τό +ἄν +θέλοι +τί +καλεῖσθαι +αὐτό +καί +αἰτήσας +πινακίδιον +ἔγραψεν +λέγων +Ἰωάνης +ἐστίν +ὄνομα +αὐτοῦ +καί +ἐθαύμασαν +πάντες +δέ +ἀνεῴχθη +τό +στόμα +αὐτοῦ +παραχρῆμα +καί +ἡ +γλῶσσα +αὐτοῦ +καί +ἐλάλει +εὐλογῶν +τόν +Θεόν +Καί +ἐγένετο +φόβος +ἐπί +πάντας +τούς +περιοικοῦντας +αὐτούς +καί +ἐν +ὅλῃ +τῇ +ὀρεινῇ +τῆς +Ἰουδαίας +διελαλεῖτο +πάντα +τά +ῥήματα +ταῦτα +καί +ἔθεντο +πάντες +οἱ +ἀκούσαντες +ἐν +τῇ +καρδίᾳ +αὐτῶν +λέγοντες +ἄρα +Τί +τό +παιδίον +τοῦτο +ἔσται +γάρ +καί +χείρ +Κυρίου +ἦν +μετ’ +αὐτοῦ +Καί +Ζαχαρίας +ὁ +πατήρ +αὐτοῦ +ἐπλήσθη +Πνεύματος +Ἁγίου +καί +ἐπροφήτευσεν +λέγων +Εὐλογητός +Κύριος +ὁ +Θεός +τοῦ +Ἰσραήλ +ὅτι +ἐπεσκέψατο +καί +ἐποίησεν +λύτρωσιν +τῷ +λαῷ +αὐτοῦ +καί +ἤγειρεν +κέρας +σωτηρίας +ἡμῖν +ἐν +οἴκῳ +Δαυείδ +παιδός +αὐτοῦ +καθώς +ἐλάλησεν +διά +στόματος +τῶν +ἁγίων +ἀπ’ +αἰῶνος +προφητῶν +αὐτοῦ +σωτηρίαν +ἐξ +ἐχθρῶν +ἡμῶν +καί +ἐκ +χειρός +πάντων +τῶν +μισούντων +ἡμᾶς +ποιῆσαι +ἔλεος +μετά +τῶν +πατέρων +ἡμῶν +καί +μνησθῆναι +διαθήκης +ἁγίας +αὐτοῦ +ὅρκον +ὅν +ὤμοσεν +πρός +Ἀβραάμ +τόν +πατέρα +ἡμῶν +τοῦ +δοῦναι +ἡμῖν +ἐκ +χειρός +ἐχθρῶν +ῥυσθέντας +ἀφόβως +λατρεύειν +αὐτῷ +ἐν +ὁσιότητι +καί +δικαιοσύνῃ +ἐνώπιον +αὐτοῦ +πάσαις +ταῖς +ἡμέραις +ἡμῶν +δέ +παιδίον +Καί +σύ +προφήτης +Ὑψίστου +κληθήσῃ +γάρ +προπορεύσῃ +ἐνώπιον +Κυρίου +ἑτοιμάσαι +ὁδούς +αὐτοῦ +τοῦ +δοῦναι +γνῶσιν +σωτηρίας +τῷ +λαῷ +αὐτοῦ +ἐν +ἀφέσει +ἁμαρτιῶν +αὐτῶν +διά +σπλάγχνα +ἐλέους +Θεοῦ +ἡμῶν +ἐν +οἷς +ἐπισκέψεται +ἡμᾶς +ἀνατολή +ἐξ +ὕψους +ἐπιφᾶναι +τοῖς +ἐν +σκότει +καί +σκιᾷ +θανάτου +καθημένοις +τοῦ +κατευθῦναι +τούς +πόδας +ἡμῶν +εἰς +ὁδόν +εἰρήνης +δέ +Τό +παιδίον +ηὔξανεν +καί +ἐκραταιοῦτο +πνεύματι +καί +ἦν +ἐν +ταῖς +ἐρήμοις +ἕως +ἡμέρας +ἀναδείξεως +αὐτοῦ +πρός +τόν +Ἰσραήλ +δέ +Ἐγένετο +ἐν +ταῖς +ἡμέραις +ἐκείναις +ἐξῆλθεν +δόγμα +παρά +Καίσαρος +Αὐγούστου +ἀπογράφεσθαι +πᾶσαν +τήν +οἰκουμένην +αὕτη +ἀπογραφή +πρώτη +ἐγένετο +ἡγεμονεύοντος +τῆς +Συρίας +Κυρηνίου +καί +ἐπορεύοντο +πάντες +ἀπογράφεσθαι +ἕκαστος +εἰς +τήν +ἑαυτοῦ +πόλιν +δέ +Ἀνέβη +καί +Ἰωσήφ +ἀπό +τῆς +Γαλιλαίας +ἐκ +πόλεως +Ναζαρέθ +εἰς +τήν +Ἰουδαίαν +εἰς +πόλιν +Δαυείδ +ἥτις +καλεῖται +Βηθλεέμ +διά +τό +εἶναι +αὐτόν +ἐξ +οἴκου +καί +πατριᾶς +Δαυείδ +ἀπογράψασθαι +σύν +Μαριάμ +τῇ +ἐμνηστευμένῃ +αὐτῷ +οὔσῃ +ἐγκύῳ +δέ +Ἐγένετο +ἐν +τῷ +εἶναι +αὐτούς +ἐκεῖ +ἐπλήσθησαν +αἱ +ἡμέραι +τοῦ +τεκεῖν +αὐτήν +καί +ἔτεκεν +τόν +υἱόν +αὐτῆς +τόν +πρωτότοκον +καί +ἐσπαργάνωσεν +αὐτόν +καί +ἀνέκλινεν +αὐτόν +ἐν +φάτνῃ +διότι +οὐκ +ἦν +αὐτοῖς +τόπος +ἐν +τῷ +καταλύματι +Καί +ποιμένες +ἦσαν +ἐν +τῇ +χώρᾳ +τῇ +αὐτῇ +ἀγραυλοῦντες +καί +φυλάσσοντες +φυλακάς +τῆς +νυκτός +ἐπί +τήν +ποίμνην +αὐτῶν +καί +ἄγγελος +Κυρίου +ἐπέστη +αὐτοῖς +καί +δόξα +Κυρίου +περιέλαμψεν +αὐτούς +καί +ἐφοβήθησαν +φόβον +μέγαν +καί +εἶπεν +αὐτοῖς +ὁ +ἄγγελος +Μή +φοβεῖσθε +γάρ +ἰδού +εὐαγγελίζομαι +ὑμῖν +χαράν +μεγάλην +ἥτις +ἔσται +παντί +τῷ +λαῷ +ὅτι +ἐτέχθη +ὑμῖν +σήμερον +Σωτήρ +ὅς +ἐστιν +Χριστός +Κύριος +ἐν +πόλει +Δαυείδ +καί +τοῦτο +ὑμῖν +σημεῖον +εὑρήσετε +βρέφος +ἐσπαργανωμένον +καί +κείμενον +ἐν +φάτνῃ +καί +ἐξαίφνης +ἐγένετο +σύν +τῷ +ἀγγέλῳ +πλῆθος +στρατιᾶς +οὐρανίου +αἰνούντων +τόν +Θεόν +καί +λεγόντων +Δόξα +ἐν +ὑψίστοις +Θεῷ +καί +ἐπί +γῆς +εἰρήνη +ἐν +ἀνθρώποις +εὐδοκίας +Καί +ἐγένετο +ὡς +ἀπῆλθον +ἀπ’ +αὐτῶν +εἰς +τόν +οὐρανόν +οἱ +ἄγγελοι +οἱ +ποιμένες +ἐλάλουν +πρός +ἀλλήλους +δή +Διέλθωμεν +ἕως +Βηθλεέμ +καί +ἴδωμεν +τό +ῥῆμα +τοῦτο +τό +γεγονός +ὅ +ὁ +Κύριος +ἐγνώρισεν +ἡμῖν +καί +ἦλθαν +σπεύσαντες +καί +ἀνεῦραν +τε +τήν +Μαριάμ +καί +τόν +Ἰωσήφ +καί +τό +βρέφος +κείμενον +ἐν +τῇ +φάτνῃ +δέ +ἰδόντες +ἐγνώρισαν +περί +τοῦ +ῥήματος +τοῦ +λαληθέντος +αὐτοῖς +περί +τοῦ +παιδίου +τούτου +καί +πάντες +οἱ +ἀκούσαντες +ἐθαύμασαν +περί +τῶν +λαληθέντων +ὑπό +τῶν +ποιμένων +πρός +αὐτούς +δέ +ἡ +Μαρία +συνετήρει +πάντα +τά +ῥήματα +ταῦτα +συνβάλλουσα +ἐν +τῇ +καρδίᾳ +αὐτῆς +καί +ὑπέστρεψαν +οἱ +ποιμένες +δοξάζοντες +καί +αἰνοῦντες +τόν +Θεόν +ἐπί +πᾶσιν +οἷς +ἤκουσαν +καί +εἶδον +καθώς +ἐλαλήθη +πρός +αὐτούς +Καί +ὅτε +ἐπλήσθησαν +ἡμέραι +ὀκτώ +τοῦ +περιτεμεῖν +αὐτόν +καί +ἐκλήθη +τό +ὄνομα +αὐτοῦ +Ἰησοῦς +τό +κληθέν +ὑπό +τοῦ +ἀγγέλου +πρό +τοῦ +συλλημφθῆναι +αὐτόν +ἐν +τῇ +κοιλίᾳ +Καί +ὅτε +ἐπλήσθησαν +αἱ +ἡμέραι +τοῦ +καθαρισμοῦ +αὐτῶν +κατά +τόν +νόμον +Μωϋσέως +ἀνήγαγον +αὐτόν +εἰς +Ἱεροσόλυμα +παραστῆσαι +τῷ +Κυρίῳ +καθώς +γέγραπται +ἐν +νόμῳ +Κυρίου +ὅτι +Πᾶν +ἄρσεν +διανοῖγον +μήτραν +ἅγιον +τῷ +Κυρίῳ +κληθήσεται +καί +τοῦ +δοῦναι +θυσίαν +κατά +τό +εἰρημένον +ἐν +τῷ +νόμῳ +Κυρίου +ζεῦγος +τρυγόνων +ἤ +δύο +νοσσούς +περιστερῶν +Καί +ἰδού +ἄνθρωπος +ἦν +ἐν +Ἰερουσαλήμ +ᾧ +ὄνομα +Συμεών +καί +ὁ +ἄνθρωπος +οὗτος +δίκαιος +καί +εὐλαβής +προσδεχόμενος +παράκλησιν +τοῦ +Ἰσραήλ +καί +Πνεῦμα +Ἅγιον +ἦν +ἐπ’ +αὐτόν +καί +ἦν +κεχρηματισμένον +αὐτῷ +ὑπό +τοῦ +Πνεύματος +τοῦ +Ἁγίου +μή +ἰδεῖν +θάνατον +πρίν +ἤ +ἄν +ἴδῃ +τόν +Χριστόν +Κυρίου +καί +ἦλθεν +ἐν +τῷ +Πνεύματι +εἰς +τό +ἱερόν +καί +ἐν +τῷ +εἰσαγαγεῖν +τούς +γονεῖς +τό +παιδίον +Ἰησοῦν +τοῦ +ποιῆσαι +αὐτούς +κατά +τό +εἰθισμένον +τοῦ +νόμου +περί +αὐτοῦ +καί +αὐτός +ἐδέξατο +αὐτό +εἰς +τάς +ἀγκάλας +καί +εὐλόγησεν +τόν +Θεόν +καί +εἶπεν +Δέσποτα +Νῦν +ἀπολύεις +τόν +δοῦλον +σου +κατά +τό +ῥῆμα +σου +ἐν +εἰρήνῃ +ὅτι +εἶδον +οἱ +ὀφθαλμοί +μου +τό +σωτήριον +σου +ὅ +ἡτοίμασας +κατά +πρόσωπον +πάντων +τῶν +λαῶν +φῶς +εἰς +ἀποκάλυψιν +ἐθνῶν +καί +δόξαν +λαοῦ +σου +Ἰσραήλ +καί +ἦν +θαυμάζοντες +ὁ +πατήρ +αὐτοῦ +καί +ἡ +μήτηρ +ἐπί +τοῖς +λαλουμένοις +περί +αὐτοῦ +καί +εὐλόγησεν +αὐτούς +Συμεών +καί +εἶπεν +πρός +Μαριάμ +τήν +μητέρα +αὐτοῦ +Ἰδού +οὗτος +κεῖται +εἰς +πτῶσιν +καί +ἀνάστασιν +πολλῶν +ἐν +τῷ +Ἰσραήλ +καί +εἰς +σημεῖον +ἀντιλεγόμενον +δέ +καί +σοῦ +αὐτῆς +τήν +ψυχήν +διελεύσεται +ῥομφαία +ὅπως +ἄν +ἀποκαλυφθῶσιν +ἐκ +πολλῶν +καρδιῶν +διαλογισμοί +Καί +ἦν +Ἄννα +προφῆτις +θυγάτηρ +Φανουήλ +ἐκ +φυλῆς +Ἀσήρ +αὕτη +προβεβηκυῖα +ἐν +ἡμέραις +πολλαῖς +ζήσασα +μετά +ἀνδρός +ἔτη +ἑπτά +ἀπό +τῆς +παρθενίας +αὐτῆς +καί +αὐτή +χήρα +ἕως +ἐτῶν +ὀγδοήκοντα +τεσσάρων +ἥ +οὐκ +ἀφίστατο +τοῦ +ἱεροῦ +νηστείαις +καί +δεήσεσιν +λατρεύουσα +νύκτα +καί +ἡμέραν +καί +αὐτῇ +τῇ +ὥρᾳ +ἐπιστᾶσα +ἀνθωμολογεῖτο +τῷ +Θεῷ +καί +ἐλάλει +περί +αὐτοῦ +πᾶσιν +τοῖς +προσδεχομένοις +λύτρωσιν +Ἰερουσαλήμ +Καί +ὡς +ἐτέλεσαν +πάντα +τά +κατά +τόν +νόμον +Κυρίου +ἐπέστρεψαν +εἰς +τήν +Γαλιλαίαν +εἰς +πόλιν +ἑαυτῶν +Ναζαρέθ +δέ +Τό +παιδίον +ηὔξανεν +καί +ἐκραταιοῦτο +πληρούμενον +σοφίᾳ +καί +χάρις +Θεοῦ +ἦν +ἐπ’ +αὐτό +Καί +ἐπορεύοντο +οἱ +γονεῖς +αὐτοῦ +κατ’ +ἔτος +εἰς +Ἱερουσαλήμ +τῇ +ἑορτῇ +τοῦ +πάσχα +Καί +ὅτε +ἐγένετο +ἐτῶν +δώδεκα +ἀναβαινόντων +αὐτῶν +κατά +τό +ἔθος +τῆς +ἑορτῆς +καί +τελειωσάντων +τάς +ἡμέρας +ἐν +τῷ +ὑποστρέφειν +αὐτούς +ὑπέμεινεν +Ἰησοῦς +ὁ +παῖς +ἐν +Ἱερουσαλήμ +καί +οὐκ +ἔγνωσαν +οἱ +γονεῖς +αὐτοῦ +δέ +νομίσαντες +αὐτόν +εἶναι +ἐν +τῇ +συνοδίᾳ +ἦλθον +ἡμέρας +ὁδόν +καί +ἀνεζήτουν +αὐτόν +ἐν +τοῖς +συγγενεῦσιν +καί +τοῖς +γνωστοῖς +καί +μή +εὑρόντες +ὑπέστρεψαν +εἰς +Ἱερουσαλήμ +ἀναζητοῦντες +αὐτόν +καί +ἐγένετο +μετά +ἡμέρας +τρεῖς +εὗρον +αὐτόν +ἐν +τῷ +ἱερῷ +καθεζόμενον +ἐν +μέσῳ +τῶν +διδασκάλων +καί +ἀκούοντα +αὐτῶν +καί +ἐπερωτῶντα +αὐτούς +δέ +ἐξίσταντο +πάντες +οἱ +ἀκούοντες +αὐτοῦ +ἐπί +τῇ +συνέσει +καί +ταῖς +ἀποκρίσεσιν +αὐτοῦ +καί +ἰδόντες +αὐτόν +ἐξεπλάγησαν +καί +εἶπεν +πρός +αὐτόν +ἡ +μήτηρ +αὐτοῦ +Τέκνον +τί +ἐποίησας +ἡμῖν +οὕτως +ἰδού +ὁ +πατήρ +σου +κἀγώ +ὀδυνώμενοι +ζητοῦμεν +σε +καί +εἶπεν +πρός +αὐτούς +Τί +ὅτι +ἐζητεῖτε +με +οὐκ +ᾔδειτε +ὅτι +ἐν +τοῖς +τοῦ +Πατρός +μου +εἶναι +με +δεῖ +καί +αὐτοί +οὐ +συνῆκαν +τό +ῥῆμα +ὅ +ἐλάλησεν +αὐτοῖς +καί +κατέβη +μετ’ +αὐτῶν +καί +ἦλθεν +εἰς +Ναζαρέθ +καί +ἦν +ὑποτασσόμενος +αὐτοῖς +καί +ἡ +μήτηρ +αὐτοῦ +διετήρει +πάντα +τά +ῥήματα +ἐν +τῇ +καρδίᾳ +αὐτῆς +Καί +Ἰησοῦς +προέκοπτεν +ἐν +τῇ +σοφίᾳ +καί +ἡλικίᾳ +καί +χάριτι +παρά +Θεῷ +καί +ἀνθρώποις +δέ +Ἐν +ἔτει +πεντεκαιδεκάτῳ +τῆς +ἡγεμονίας +Τιβερίου +Καίσαρος +ἡγεμονεύοντος +Ποντίου +Πειλάτου +τῆς +Ἰουδαίας +καί +τετρααρχοῦντος +τῆς +Γαλιλαίας +Ἠρῴδου +δέ +Φιλίππου +τοῦ +ἀδελφοῦ +αὐτοῦ +τετρααρχοῦντος +τῆς +Ἰτουραίας +καί +Τραχωνίτιδος +χώρας +καί +Λυσανίου +τῆς +Ἀβιληνῆς +τετρααρχοῦντος +ἐπί +ἀρχιερέως +Ἄννα +καί +Καϊάφα +ἐγένετο +ῥῆμα +Θεοῦ +ἐπί +Ἰωάνην +τόν +Ζαχαρίου +υἱόν +ἐν +τῇ +ἐρήμῳ +καί +ἦλθεν +εἰς +πᾶσαν +τήν +περίχωρον +τοῦ +Ἰορδάνου +κηρύσσων +βάπτισμα +μετανοίας +εἰς +ἄφεσιν +ἁμαρτιῶν +ὡς +γέγραπται +ἐν +βίβλῳ +λόγων +Ἠσαΐου +τοῦ +προφήτου +Φωνή +βοῶντος +ἐν +τῇ +ἐρήμῳ +Ἑτοιμάσατε +τήν +ὁδόν +Κυρίου +εὐθείας +ποιεῖτε +τάς +τρίβους +αὐτοῦ +πᾶσα +φάραγξ +πληρωθήσεται +καί +πᾶν +ὄρος +καί +βουνός +ταπεινωθήσεται +καί +ἔσται +τά +σκολιά +εἰς +εὐθείας +καί +αἱ +τραχεῖαι +εἰς +ὁδούς +λείας +καί +ὄψεται +πᾶσα +σάρξ +τό +σωτήριον +τοῦ +Θεοῦ +οὖν +Ἔλεγεν +τοῖς +ἐκπορευομένοις +βαπτισθῆναι +ὑπ’ +αὐτοῦ +ὄχλοις +Γεννήματα +ἐχιδνῶν +τίς +ὑπέδειξεν +ὑμῖν +φυγεῖν +ἀπό +τῆς +μελλούσης +ὀργῆς +οὖν +ποιήσατε +καρπούς +ἀξίους +τῆς +μετανοίας +καί +μή +ἄρξησθε +λέγειν +ἐν +ἑαυτοῖς +Πατέρα +ἔχομεν +τόν +Ἀβραάμ +γάρ +λέγω +ὑμῖν +ὅτι +δύναται +ὁ +Θεός +ἐκ +τῶν +λίθων +τούτων +ἐγεῖραι +τέκνα +τῷ +Ἀβραάμ +δέ +ἤδη +καί +ἡ +ἀξίνη +πρός +τήν +ῥίζαν +τῶν +δένδρων +κεῖται +οὖν +πᾶν +δένδρον +μή +ποιοῦν +καρπόν +καλόν +ἐκκόπτεται +καί +εἰς +πῦρ +βάλλεται +Καί +ἐπηρώτων +αὐτόν +οἱ +ὄχλοι +λέγοντες +οὖν +Τί +ποιήσωμεν +δέ +ἀποκριθείς +ἔλεγεν +αὐτοῖς +Ὁ +ἔχων +δύο +χιτῶνας +μεταδότω +τῷ +μή +ἔχοντι +καί +ὁ +ἔχων +βρώματα +ὁμοίως +ποιείτω +δέ +ἦλθον +καί +τελῶναι +βαπτισθῆναι +καί +εἶπαν +πρός +αὐτόν +Διδάσκαλε +τί +ποιήσωμεν +δέ +ὁ +εἶπεν +πρός +αὐτούς +Μηδέν +πλέον +παρά +τό +διατεταγμένον +ὑμῖν +πράσσετε +δέ +ἐπηρώτων +αὐτόν +καί +στρατευόμενοι +λέγοντες +Τί +ποιήσωμεν +καί +ἡμεῖς +καί +εἶπεν +αὐτοῖς +Μηδένα +διασείσητε +μηδέ +συκοφαντήσητε +καί +ἀρκεῖσθε +τοῖς +ὀψωνίοις +ὑμῶν +δέ +Προσδοκῶντος +τοῦ +λαοῦ +καί +διαλογιζομένων +πάντων +ἐν +ταῖς +καρδίαις +αὐτῶν +περί +τοῦ +Ἰωάνου +μή +ποτε +αὐτός +εἴη +ὁ +Χριστός +ἀπεκρίνατο +λέγων +πᾶσιν +ὁ +Ἰωάνης +μέν +Ἐγώ +ὕδατι +βαπτίζω +ὑμᾶς +δέ +ἔρχεται +ὁ +ἰσχυρότερος +μου +οὗ +οὐκ +εἰμί +ἱκανός +λῦσαι +τόν +ἱμάντα +τῶν +ὑποδημάτων +αὐτοῦ +αὐτός +ὑμᾶς +βαπτίσει +ἐν +Πνεύματι +Ἁγίῳ +καί +πυρί +οὗ +τό +πτύον +ἐν +τῇ +χειρί +αὐτοῦ +διακαθᾶραι +τήν +ἅλωνα +αὐτοῦ +καί +συναγαγεῖν +τόν +σῖτον +εἰς +τήν +ἀποθήκην +αὐτοῦ +δέ +τό +ἄχυρον +κατακαύσει +πυρί +ἀσβέστῳ +μέν +οὖν +Πολλά +καί +ἕτερα +παρακαλῶν +εὐηγγελίζετο +τόν +λαόν +δέ +ὁ +Ἠρῴδης +ὁ +τετραάρχης +ἐλεγχόμενος +ὑπ’ +αὐτοῦ +περί +Ἠρῳδιάδος +τῆς +γυναικός +τοῦ +ἀδελφοῦ +αὐτοῦ +καί +περί +πάντων +ὧν +πονηρῶν +ἐποίησεν +ὁ +Ἠρῴδης +προσέθηκεν +καί +τοῦτο +ἐπί +πᾶσιν +κατέκλεισεν +τόν +Ἰωάνην +ἐν +φυλακῇ +δέ +Ἐγένετο +ἐν +τῷ +βαπτισθῆναι +ἅπαντα +τόν +λαόν +καί +Ἰησοῦ +βαπτισθέντος +καί +προσευχομένου +ἀνεῳχθῆναι +τόν +οὐρανόν +καί +καταβῆναι +τό +Πνεῦμα +τό +Ἅγιον +σωματικῷ +εἴδει +ὡς +περιστεράν +ἐπ’ +αὐτόν +καί +φωνήν +ἐξ +οὐρανοῦ +γενέσθαι +Σύ +εἶ +ὁ +Υἱός +μου +ὁ +ἀγαπητός +ἐν +σοί +εὐδόκησα +Καί +αὐτός +Ἰησοῦς +ἦν +ἀρχόμενος +ὡσεί +ἐτῶν +τριάκοντα +ὡς +ἐνομίζετο +ὤν +υἱός +Ἰωσήφ +τοῦ +Ἠλεί +τοῦ +Ματθάτ +τοῦ +Λευεί +τοῦ +Μελχεί +τοῦ +Ἰανναί +τοῦ +Ἰωσήφ +τοῦ +Ματταθίου +τοῦ +Ἀμώς +τοῦ +Ναούμ +τοῦ +Ἐσλεί +τοῦ +Ναγγαί +τοῦ +Μαάθ +τοῦ +Ματταθίου +τοῦ +Σεμεείν +τοῦ +Ἰωσήχ +τοῦ +Ἰωδά +τοῦ +Ἰωανάν +τοῦ +Ῥησά +τοῦ +Ζοροβάβελ +τοῦ +Σαλαθιήλ +τοῦ +Νηρεί +τοῦ +Μελχεί +τοῦ +Ἀδδεί +τοῦ +Κωσάμ +τοῦ +Ἐλμαδάμ +τοῦ +Ἤρ +τοῦ +Ἰησοῦ +τοῦ +Ἐλιέζερ +τοῦ +Ἰωρείμ +τοῦ +Μαθθάτ +τοῦ +Λευεί +τοῦ +Συμεών +τοῦ +Ἰούδα +τοῦ +Ἰωσήφ +τοῦ +Ἰωνάμ +τοῦ +Ἐλιακείμ +τοῦ +Μελεά +τοῦ +Μεννά +τοῦ +Ματταθά +τοῦ +Ναθάμ +τοῦ +Δαυείδ +τοῦ +Ἰεσσαί +τοῦ +Ἰωβήδ +τοῦ +Βοός +τοῦ +Σαλά +τοῦ +Ναασσών +τοῦ +Ἀμιναδάβ +τοῦ +Ἀδμείν +τοῦ +Ἀρνεί +τοῦ +Ἐσρώμ +τοῦ +Φαρές +τοῦ +Ἰούδα +τοῦ +Ἰακώβ +τοῦ +Ἰσαάκ +τοῦ +Ἀβραάμ +τοῦ +Θάρα +τοῦ +Ναχώρ +τοῦ +Σερούχ +τοῦ +Ῥαγαῦ +τοῦ +Φάλεκ +τοῦ +Ἔβερ +τοῦ +Σαλά +τοῦ +Καϊνάμ +τοῦ +Ἀρφαξάδ +τοῦ +Σήμ +τοῦ +Νῶε +τοῦ +Λάμεχ +τοῦ +Μαθουσαλά +τοῦ +Ἐνώχ +τοῦ +Ἰάρετ +τοῦ +Μαλελεήλ +τοῦ +Καϊνάμ +τοῦ +Ἐνώς +τοῦ +Σήθ +τοῦ +Ἀδάμ +τοῦ +Θεοῦ +δέ +Ἰησοῦς +πλήρης +Πνεύματος +Ἁγίου +ὑπέστρεψεν +ἀπό +τοῦ +Ἰορδάνου +καί +ἤγετο +ἐν +τῷ +Πνεύματι +ἐν +τῇ +ἐρήμῳ +ἡμέρας +τεσσεράκοντα +πειραζόμενος +ὑπό +τοῦ +διαβόλου +Καί +οὐκ +ἔφαγεν +οὐδέν +ἐν +ταῖς +ἡμέραις +ἐκείναις +καί +συντελεσθεισῶν +αὐτῶν +ἐπείνασεν +δέ +εἶπεν +αὐτῷ +ὁ +διάβολος +Εἰ +εἶ +Υἱός +τοῦ +Θεοῦ +εἰπέ +τῷ +λίθῳ +τούτῳ +ἵνα +γένηται +ἄρτος +καί +ἀπεκρίθη +πρός +αὐτόν +ὁ +Ἰησοῦς +Γέγραπται +ὅτι +Οὐκ +ἐπ’ +ἄρτῳ +μόνῳ +ζήσεται +ὁ +ἄνθρωπος +Καί +ἀναγαγών +αὐτόν +ἔδειξεν +αὐτῷ +πάσας +τάς +βασιλείας +τῆς +οἰκουμένης +ἐν +στιγμῇ +χρόνου +καί +εἶπεν +αὐτῷ +ὁ +διάβολος +Σοί +δώσω +τήν +ἐξουσίαν +ταύτην +ἅπασαν +καί +τήν +δόξαν +αὐτῶν +ὅτι +ἐμοί +παραδέδοται +καί +ἐάν +ᾧ +θέλω +δίδωμι +αὐτήν +οὖν +ἐάν +σύ +προσκυνήσῃς +ἐνώπιον +ἐμοῦ +ἔσται +σοῦ +πᾶσα +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Γέγραπται +Προσκυνήσεις +Κύριον +τόν +Θεόν +σου +καί +αὐτῷ +μόνῳ +λατρεύσεις +δέ +Ἤγαγεν +αὐτόν +εἰς +Ἱερουσαλήμ +καί +ἔστησεν +ἐπί +τό +πτερύγιον +τοῦ +ἱεροῦ +καί +εἶπεν +αὐτῷ +Εἰ +εἶ +Υἱός +τοῦ +Θεοῦ +βάλε +σεαυτόν +ἐντεῦθεν +κάτω +γάρ +γέγραπται +ὅτι +τοῖς +ἀγγέλοις +αὐτοῦ +ἐντελεῖται +περί +σοῦ +τοῦ +διαφυλάξαι +σε +καί +ὅτι +ἐπί +χειρῶν +ἀροῦσιν +σε +μή +ποτε +προσκόψῃς +πρός +λίθον +τόν +πόδα +σου +καί +ἀποκριθείς +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +ὅτι +Εἴρηται +Οὐκ +ἐκπειράσεις +Κύριον +τόν +Θεόν +σου +Καί +συντελέσας +πάντα +πειρασμόν +ὁ +διάβολος +ἀπέστη +ἀπ’ +αὐτοῦ +ἄχρι +καιροῦ +Καί +ὑπέστρεψεν +ὁ +Ἰησοῦς +ἐν +τῇ +δυνάμει +τοῦ +Πνεύματος +εἰς +τήν +Γαλιλαίαν +καί +φήμη +ἐξῆλθεν +καθ’ +ὅλης +τῆς +περιχώρου +περί +αὐτοῦ +καί +αὐτός +ἐδίδασκεν +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +δοξαζόμενος +ὑπό +πάντων +Καί +ἦλθεν +εἰς +Ναζαρά +οὗ +ἦν +τεθραμμένος +καί +εἰσῆλθεν +κατά +τό +εἰωθός +αὐτῷ +ἐν +τῇ +ἡμέρᾳ +τῶν +σαββάτων +εἰς +τήν +συναγωγήν +καί +ἀνέστη +ἀναγνῶναι +καί +ἐπεδόθη +αὐτῷ +βιβλίον +τοῦ +προφήτου +Ἠσαΐου +καί +ἀνοίξας +τό +βιβλίον +εὗρεν +τόν +τόπον +οὗ +ἦν +γεγραμμένον +Πνεῦμα +Κυρίου +ἐπ’ +ἐμέ +οὗ +εἵνεκεν +ἔχρισεν +με +εὐαγγελίσασθαι +πτωχοῖς +ἀπέσταλκεν +με +κηρῦξαι +αἰχμαλώτοις +ἄφεσιν +καί +τυφλοῖς +ἀνάβλεψιν +ἀποστεῖλαι +τεθραυσμένους +ἐν +ἀφέσει +κηρῦξαι +ἐνιαυτόν +Κυρίου +δεκτόν +καί +πτύξας +τό +βιβλίον +ἀποδούς +τῷ +ὑπηρέτῃ +ἐκάθισεν +καί +πάντων +οἱ +ὀφθαλμοί +ἐν +τῇ +συναγωγῇ +ἦσαν +ἀτενίζοντες +αὐτῷ +δέ +ἤρξατο +λέγειν +πρός +αὐτούς +ὅτι +Σήμερον +πεπλήρωται +ἡ +γραφή +αὕτη +ἐν +τοῖς +ὠσίν +ὑμῶν +καί +πάντες +ἐμαρτύρουν +αὐτῷ +καί +ἐθαύμαζον +ἐπί +τοῖς +λόγοις +τῆς +χάριτος +τοῖς +ἐκπορευομένοις +ἐκ +τοῦ +στόματος +αὐτοῦ +καί +ἔλεγον +Οὐχί +υἱός +Ἰωσήφ +ἐστιν +οὗτος +καί +εἶπεν +πρός +αὐτούς +Πάντως +ἐρεῖτε +μοι +τήν +παραβολήν +ταύτην +Ἰατρέ +θεράπευσον +σεαυτόν +ἠκούσαμεν +ὅσα +γενόμενα +εἰς +τήν +Καφαρναούμ +ποίησον +καί +ὧδε +ἐν +τῇ +πατρίδι +σου +δέ +εἶπεν +Ἀμήν +λέγω +ὑμῖν +ὅτι +οὐδείς +προφήτης +δεκτός +ἐστιν +ἐν +τῇ +πατρίδι +αὐτοῦ +δέ +ἐπ’ +ἀληθείας +λέγω +ὑμῖν +πολλαί +χῆραι +ἦσαν +ἐν +ταῖς +ἡμέραις +Ἠλείου +ἐν +τῷ +Ἰσραήλ +ὅτε +ἐκλείσθη +ὁ +οὐρανός +ἐπί +ἔτη +τρία +καί +μῆνας +ἕξ +ὡς +ἐγένετο +λιμός +μέγας +ἐπί +πᾶσαν +τήν +γῆν +καί +πρός +οὐδεμίαν +αὐτῶν +ἐπέμφθη +Ἠλείας +εἰ +μή +εἰς +Σάρεπτα +τῆς +Σιδωνίας +πρός +γυναῖκα +χήραν +καί +πολλοί +λεπροί +ἦσαν +ἐν +τῷ +Ἰσραήλ +ἐπί +Ἑλισαίου +τοῦ +προφήτου +καί +οὐδείς +αὐτῶν +ἐκαθαρίσθη +εἰ +μή +Ναιμάν +ὁ +Σύρος +καί +ἐπλήσθησαν +θυμοῦ +πάντες +ἐν +τῇ +συναγωγῇ +ἀκούοντες +ταῦτα +καί +ἀναστάντες +ἐξέβαλον +αὐτόν +ἔξω +τῆς +πόλεως +καί +ἤγαγον +αὐτόν +ἕως +ὀφρύος +τοῦ +ὄρους +ἐφ’ +οὗ +ἡ +πόλις +αὐτῶν +ᾠκοδόμητο +ὥστε +κατακρημνίσαι +αὐτόν +δέ +αὐτός +διελθών +διά +μέσου +αὐτῶν +ἐπορεύετο +Καί +κατῆλθεν +εἰς +Καφαρναούμ +πόλιν +τῆς +Γαλιλαίας +καί +ἦν +διδάσκων +αὐτούς +ἐν +τοῖς +σάββασιν +καί +ἐξεπλήσσοντο +ἐπί +τῇ +διδαχῇ +αὐτοῦ +ὅτι +ἐν +ἐξουσίᾳ +ἦν +ὁ +λόγος +αὐτοῦ +καί +ἐν +τῇ +συναγωγῇ +ἦν +ἄνθρωπος +ἔχων +πνεῦμα +δαιμονίου +ἀκαθάρτου +καί +ἀνέκραξεν +φωνῇ +μεγάλῃ +Ἔα +τί +ἡμῖν +καί +σοί +Ἰησοῦ +Ναζαρηνέ +ἦλθες +ἀπολέσαι +ἡμᾶς +οἶδα +σε +τίς +εἶ +ὁ +Ἅγιος +τοῦ +Θεοῦ +καί +ἐπετίμησεν +αὐτῷ +ὁ +Ἰησοῦς +λέγων +Φιμώθητι +καί +ἔξελθε +ἀπ’ +αὐτοῦ +καί +τό +δαιμόνιον +ῥίψαν +αὐτόν +εἰς +τό +μέσον +ἐξῆλθεν +ἀπ’ +αὐτοῦ +μηδέν +βλάψαν +αὐτόν +καί +ἐγένετο +θάμβος +ἐπί +πάντας +καί +συνελάλουν +πρός +ἀλλήλους +λέγοντες +Τίς +ὁ +λόγος +οὗτος +ὅτι +ἐν +ἐξουσίᾳ +καί +δυνάμει +ἐπιτάσσει +τοῖς +ἀκαθάρτοις +πνεύμασιν +καί +ἐξέρχονται +καί +ἐξεπορεύετο +ἦχος +περί +αὐτοῦ +εἰς +πάντα +τόπον +τῆς +περιχώρου +δέ +Ἀναστάς +ἀπό +τῆς +συναγωγῆς +εἰσῆλθεν +εἰς +τήν +οἰκίαν +Σίμωνος +δέ +πενθερά +τοῦ +Σίμωνος +ἦν +συνεχομένη +πυρετῷ +μεγάλῳ +καί +ἠρώτησαν +αὐτόν +περί +αὐτῆς +καί +ἐπιστάς +ἐπάνω +αὐτῆς +ἐπετίμησεν +τῷ +πυρετῷ +καί +ἀφῆκεν +αὐτήν +δέ +παραχρῆμα +ἀναστᾶσα +διηκόνει +αὐτοῖς +δέ +Δύνοντος +τοῦ +ἡλίου +ἅπαντες +ὅσοι +εἶχον +ἀσθενοῦντας +νόσοις +ποικίλαις +ἤγαγον +αὐτούς +πρός +αὐτόν +δέ +ὁ +ἑνί +ἑκάστῳ +αὐτῶν +τάς +χεῖρας +ἐπιτιθείς +ἐθεράπευεν +αὐτούς +δέ +ἐξήρχετο +καί +δαιμόνια +ἀπό +πολλῶν +κραυγάζοντα +καί +λέγοντα +ὅτι +Σύ +εἶ +ὁ +Υἱός +τοῦ +Θεοῦ +καί +ἐπιτιμῶν +οὐκ +εἴα +αὐτά +λαλεῖν +ὅτι +ᾔδεισαν +τόν +Χριστόν +αὐτόν +εἶναι +δέ +Γενομένης +ἡμέρας +ἐξελθών +ἐπορεύθη +εἰς +ἔρημον +τόπον +καί +οἱ +ὄχλοι +ἐπεζήτουν +αὐτόν +καί +ἦλθον +ἕως +αὐτοῦ +καί +κατεῖχον +αὐτόν +τοῦ +μή +πορεύεσθαι +ἀπ’ +αὐτῶν +δέ +ὁ +εἶπεν +πρός +αὐτούς +ὅτι +Καί +ταῖς +ἑτέραις +πόλεσιν +εὐαγγελίσασθαι +με +τήν +βασιλείαν +τοῦ +Θεοῦ +δεῖ +ὅτι +ἐπί +τοῦτο +ἀπεστάλην +καί +ἦν +κηρύσσων +εἰς +τάς +συναγωγάς +τῆς +Ἰουδαίας +δέ +Ἐγένετο +ἐν +τῷ +τόν +ὄχλον +ἐπικεῖσθαι +αὐτῷ +καί +ἀκούειν +τόν +λόγον +τοῦ +Θεοῦ +καί +αὐτός +ἦν +ἑστώς +παρά +τήν +λίμνην +Γεννησαρέτ +καί +εἶδεν +πλοῖα +δύο +ἑστῶτα +παρά +τήν +λίμνην +δέ +οἱ +ἁλεεῖς +ἀπ’ +αὐτῶν +ἀποβάντες +ἔπλυνον +τά +δίκτυα +δέ +ἐμβάς +εἰς +ἕν +τῶν +πλοίων +ὅ +ἦν +Σίμωνος +ἠρώτησεν +αὐτόν +ἀπό +τῆς +γῆς +ἐπαναγαγεῖν +ὀλίγον +δέ +καθίσας +ἐκ +τοῦ +πλοίου +ἐδίδασκεν +τούς +ὄχλους +δέ +ὡς +ἐπαύσατο +λαλῶν +εἶπεν +πρός +τόν +Σίμωνα +Ἐπανάγαγε +εἰς +τό +βάθος +καί +χαλάσατε +τά +δίκτυα +ὑμῶν +εἰς +ἄγραν +καί +ἀποκριθείς +Σίμων +εἶπεν +Ἐπιστάτα +δι’ +ὅλης +νυκτός +κοπιάσαντες +οὐδέν +ἐλάβομεν +δέ +ἐπί +τῷ +ῥήματι +σου +χαλάσω +τά +δίκτυα +καί +τοῦτο +ποιήσαντες +συνέκλεισαν +πλῆθος +ἰχθύων +πολύ +δέ +διερήσσετο +τά +δίκτυα +αὐτῶν +καί +κατένευσαν +τοῖς +μετόχοις +ἐν +τῷ +ἑτέρῳ +πλοίῳ +τοῦ +ἐλθόντας +συλλαβέσθαι +αὐτοῖς +καί +ἦλθαν +καί +ἔπλησαν +ἀμφότερα +τά +πλοῖα +ὥστε +βυθίζεσθαι +αὐτά +δέ +ἰδών +Σίμων +Πέτρος +προσέπεσεν +τοῖς +γόνασιν +Ἰησοῦ +λέγων +Ἔξελθε +ἀπ’ +ἐμοῦ +ὅτι +ἀνήρ +ἁμαρτωλός +εἰμι +Κύριε +γάρ +θάμβος +περιέσχεν +αὐτόν +καί +πάντας +τούς +σύν +αὐτῷ +ἐπί +τῇ +ἄγρᾳ +τῶν +ἰχθύων +ᾗ +συνέλαβον +δέ +ὁμοίως +καί +Ἰάκωβον +καί +Ἰωάνην +υἱούς +Ζεβεδαίου +οἵ +ἦσαν +κοινωνοί +τῷ +Σίμωνι +καί +εἶπεν +πρός +τόν +Σίμωνα +ὁ +Ἰησοῦς +Μή +φοβοῦ +ἀπό +τοῦ +νῦν +ἀνθρώπους +ἔσῃ +ζωγρῶν +καί +καταγαγόντες +τά +πλοῖα +ἐπί +τήν +γῆν +ἀφέντες +πάντα +ἠκολούθησαν +αὐτῷ +Καί +ἐγένετο +ἐν +τῷ +εἶναι +αὐτόν +ἐν +μιᾷ +τῶν +πόλεων +καί +ἰδού +ἀνήρ +πλήρης +λέπρας +δέ +ἰδών +τόν +Ἰησοῦν +πεσών +ἐπί +πρόσωπον +ἐδεήθη +αὐτοῦ +λέγων +Κύριε +ἐάν +θέλῃς +δύνασαι +με +καθαρίσαι +καί +ἐκτείνας +τήν +χεῖρα +ἥψατο +αὐτοῦ +λέγων +Θέλω +καθαρίσθητι +καί +εὐθέως +ἡ +λέπρα +ἀπῆλθεν +ἀπ’ +αὐτοῦ +καί +αὐτός +παρήγγειλεν +αὐτῷ +μηδενί +εἰπεῖν +ἀλλά +ἀπελθών +δεῖξον +σεαυτόν +τῷ +ἱερεῖ +καί +προσένεγκε +περί +τοῦ +καθαρισμοῦ +σου +καθώς +προσέταξεν +Μωϋσῆς +εἰς +μαρτύριον +αὐτοῖς +δέ +διήρχετο +μᾶλλον +ὁ +λόγος +περί +αὐτοῦ +καί +συνήρχοντο +ὄχλοι +πολλοί +ἀκούειν +καί +θεραπεύεσθαι +ἀπό +τῶν +ἀσθενειῶν +αὐτῶν +δέ +αὐτός +ἦν +ὑποχωρῶν +ἐν +ταῖς +ἐρήμοις +καί +προσευχόμενος +Καί +ἐγένετο +ἐν +μιᾷ +τῶν +ἡμερῶν +καί +αὐτός +ἦν +διδάσκων +καί +ἦσαν +καθήμενοι +Φαρισαῖοι +καί +νομοδιδάσκαλοι +οἵ +ἦσαν +ἐληλυθότες +ἐκ +πάσης +κώμης +τῆς +Γαλιλαίας +καί +Ἰουδαίας +καί +Ἱερουσαλήμ +καί +δύναμις +Κυρίου +ἦν +εἰς +τό +ἰᾶσθαι +αὐτόν +καί +ἰδού +ἄνδρες +φέροντες +ἐπί +κλίνης +ἄνθρωπον +ὅς +ἦν +παραλελυμένος +καί +ἐζήτουν +αὐτόν +εἰσενεγκεῖν +καί +θεῖναι +ἐνώπιον +αὐτοῦ +καί +μή +εὑρόντες +ποίας +εἰσενέγκωσιν +αὐτόν +διά +τόν +ὄχλον +ἀναβάντες +ἐπί +τό +δῶμα +διά +τῶν +κεράμων +καθῆκαν +αὐτόν +σύν +τῷ +κλινιδίῳ +εἰς +τό +μέσον +ἔμπροσθεν +τοῦ +Ἰησοῦ +καί +ἰδών +τήν +πίστιν +αὐτῶν +εἶπεν +Ἄνθρωπε +ἀφέωνται +σοι +αἱ +ἁμαρτίαι +σου +καί +ἤρξαντο +διαλογίζεσθαι +οἱ +γραμματεῖς +καί +οἱ +Φαρισαῖοι +λέγοντες +Τίς +ἐστιν +οὗτος +ὅς +λαλεῖ +βλασφημίας +τίς +δύναται +ἁμαρτίας +ἀφεῖναι +εἰ +μή +μόνος +ὁ +Θεός +δέ +ὁ +Ἰησοῦς +ἐπιγνούς +τούς +διαλογισμούς +αὐτῶν +ἀποκριθείς +εἶπεν +πρός +αὐτούς +Τί +διαλογίζεσθε +ἐν +ταῖς +καρδίαις +ὑμῶν +τί +ἐστιν +εὐκοπώτερον +εἰπεῖν +Ἀφέωνται +σοι +αἱ +ἁμαρτίαι +σου +ἤ +εἰπεῖν +Ἔγειρε +καί +περιπάτει +δέ +ἵνα +εἰδῆτε +ὅτι +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐξουσίαν +ἔχει +ἐπί +τῆς +γῆς +ἀφιέναι +ἁμαρτίας +εἶπεν +τῷ +παραλελυμένῳ +Σοί +λέγω +ἔγειρε +καί +ἄρας +τό +κλινίδιον +σου +πορεύου +εἰς +τόν +οἶκον +σου +καί +παραχρῆμα +ἀναστάς +ἐνώπιον +αὐτῶν +ἄρας +ἐφ’ +ὅ +κατέκειτο +ἀπῆλθεν +εἰς +τόν +οἶκον +αὐτοῦ +δοξάζων +τόν +Θεόν +καί +ἔκστασις +ἔλαβεν +ἅπαντας +καί +ἐδόξαζον +τόν +Θεόν +καί +ἐπλήσθησαν +φόβου +λέγοντες +ὅτι +Εἴδομεν +παράδοξα +σήμερον +Καί +μετά +ταῦτα +ἐξῆλθεν +καί +ἐθεάσατο +τελώνην +ὀνόματι +Λευείν +καθήμενον +ἐπί +τό +τελώνιον +καί +εἶπεν +αὐτῷ +Ἀκολούθει +μοι +καί +καταλιπών +πάντα +ἀναστάς +ἠκολούθει +αὐτῷ +Καί +ἐποίησεν +δοχήν +μεγάλην +Λευείς +αὐτῷ +ἐν +τῇ +οἰκίᾳ +αὐτοῦ +καί +ἦν +ὄχλος +πολύς +τελωνῶν +καί +ἄλλων +οἵ +ἦσαν +κατακείμενοι +μετ’ +αὐτῶν +καί +ἐγόγγυζον +οἱ +Φαρισαῖοι +καί +οἱ +γραμματεῖς +αὐτῶν +πρός +τούς +μαθητάς +αὐτοῦ +λέγοντες +Διά +τί +μετά +τῶν +τελωνῶν +καί +ἁμαρτωλῶν +ἐσθίετε +καί +πίνετε +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +πρός +αὐτούς +Οὐ +χρείαν +ἰατροῦ +ἔχουσιν +οἱ +ὑγιαίνοντες +ἀλλά +οἱ +κακῶς +ἔχοντες +οὐκ +ἐλήλυθα +καλέσαι +δικαίους +ἀλλά +ἁμαρτωλούς +εἰς +μετάνοιαν +δέ +Οἱ +εἶπαν +πρός +αὐτόν +Οἱ +μαθηταί +Ἰωάνου +νηστεύουσιν +πυκνά +καί +δεήσεις +ποιοῦνται +ὁμοίως +καί +οἱ +τῶν +Φαρισαίων +δέ +οἱ +σοί +ἐσθίουσιν +καί +πίνουσιν +δέ +ὁ +Ἰησοῦς +εἶπεν +πρός +αὐτούς +Μή +δύνασθε +τούς +υἱούς +τοῦ +νυμφῶνος +ἐν +ᾧ +ὁ +νυμφίος +μετ’ +αὐτῶν +ἐστιν +νηστεῦσαι +ποιῆσαι +δέ +ἐλεύσονται +ἡμέραι +καί +ὅταν +ἀπαρθῇ +ἀπ’ +αὐτῶν +ὁ +νυμφίος +τότε +νηστεύσουσιν +ἐν +ἐκείναις +ταῖς +ἡμέραις +δέ +Ἔλεγεν +καί +παραβολήν +πρός +αὐτούς +ὅτι +Οὐδείς +ἐπίβλημα +ἀπό +ἱματίου +καινοῦ +σχίσας +ἐπιβάλλει +ἐπί +ἱμάτιον +παλαιόν +δέ +εἰ +μήγε +καί +τό +καινόν +σχίσει +καί +τῷ +παλαιῷ +οὐ +συμφωνήσει +τό +ἐπίβλημα +τό +ἀπό +τοῦ +καινοῦ +καί +οὐδείς +βάλλει +οἶνον +νέον +εἰς +ἀσκούς +παλαιούς +δέ +εἰ +μήγε +ῥήξει +ὁ +οἶνος +ὁ +νέος +τούς +ἀσκούς +καί +αὐτός +ἐκχυθήσεται +καί +οἱ +ἀσκοί +ἀπολοῦνται +ἀλλά +οἶνον +νέον +εἰς +ἀσκούς +καινούς +βλητέον +καί +οὐδείς +πιών +παλαιόν +θέλει +νέον +γάρ +λέγει +Ὁ +παλαιός +χρηστός +ἐστιν +δέ +Ἐγένετο +ἐν +σαββάτῳ +διαπορεύεσθαι +αὐτόν +διά +σπορίμων +καί +ἔτιλλον +καί +ἤσθιον +οἱ +μαθηταί +αὐτοῦ +τούς +στάχυας +ψώχοντες +ταῖς +χερσίν +δέ +τινές +τῶν +Φαρισαίων +εἶπαν +Τί +ποιεῖτε +ὅ +οὐκ +ἔξεστιν +τοῖς +σάββασιν +καί +ἀποκριθείς +πρός +αὐτούς +εἶπεν +ὁ +Ἰησοῦς +Οὐδέ +ἀνέγνωτε +τοῦτο +ὅ +ἐποίησεν +Δαυείδ +ὁπότε +ἐπείνασεν +αὐτός +καί +οἱ +μετ’ +αὐτοῦ +ὄντες +ὡς +εἰσῆλθεν +εἰς +τόν +οἶκον +τοῦ +Θεοῦ +καί +τούς +ἄρτους +τῆς +προθέσεως +λαβών +ἔφαγεν +καί +ἔδωκεν +τοῖς +μετ’ +αὐτοῦ +οὕς +φαγεῖν +οὐκ +ἔξεστιν +εἰ +μή +μόνους +τούς +ἱερεῖς +καί +ἔλεγεν +αὐτοῖς +ἐστιν +Κύριος +τοῦ +σαββάτου +ὁ +Υἱός +τοῦ +ἀνθρώπου +δέ +Ἐγένετο +ἐν +ἑτέρῳ +σαββάτῳ +εἰσελθεῖν +αὐτόν +εἰς +τήν +συναγωγήν +καί +διδάσκειν +καί +ἦν +ἄνθρωπος +ἐκεῖ +καί +ἡ +χείρ +αὐτοῦ +ἡ +δεξιά +ἦν +ξηρά +δέ +παρετηροῦντο +αὐτόν +οἱ +γραμματεῖς +καί +οἱ +Φαρισαῖοι +εἰ +ἐν +τῷ +σαββάτῳ +θεραπεύει +ἵνα +εὕρωσιν +κατηγορεῖν +αὐτοῦ +δέ +αὐτός +ᾔδει +τούς +διαλογισμούς +αὐτῶν +δέ +εἶπεν +τῷ +ἀνδρί +τῷ +ξηράν +ἔχοντι +τήν +χεῖρα +Ἔγειρε +καί +στῆθι +εἰς +τό +μέσον +καί +ἀναστάς +ἔστη +δέ +εἶπεν +ὁ +Ἰησοῦς +πρός +αὐτούς +Ἐπερωτῶ +ὑμᾶς +εἰ +ἔξεστιν +τῷ +σαββάτῳ +ἀγαθοποιῆσαι +ἤ +κακοποιῆσαι +ψυχήν +σῶσαι +ἤ +ἀπολέσαι +καί +περιβλεψάμενος +πάντας +αὐτούς +εἶπεν +αὐτῷ +Ἔκτεινον +τήν +χεῖρα +σου +δέ +ὁ +ἐποίησεν +καί +ἀπεκατεστάθη +ἡ +χείρ +αὐτοῦ +δέ +αὐτοί +ἐπλήσθησαν +ἀνοίας +καί +διελάλουν +πρός +ἀλλήλους +ἄν +τί +ποιήσαιεν +τῷ +Ἰησοῦ +δέ +Ἐγένετο +ἐν +ταῖς +ἡμέραις +ταύταις +ἐξελθεῖν +αὐτόν +εἰς +τό +ὄρος +προσεύξασθαι +καί +ἦν +διανυκτερεύων +ἐν +τῇ +προσευχῇ +τοῦ +Θεοῦ +καί +ὅτε +ἐγένετο +ἡμέρα +προσεφώνησεν +τούς +μαθητάς +αὐτοῦ +καί +ἐκλεξάμενος +ἀπ’ +αὐτῶν +δώδεκα +οὕς +καί +ἀποστόλους +ὠνόμασεν +Σίμωνα +ὅν +καί +ὠνόμασεν +Πέτρον +καί +Ἀνδρέαν +τόν +ἀδελφόν +αὐτοῦ +καί +Ἰάκωβον +καί +Ἰωάνην +καί +Φίλιππον +καί +Βαρθολομαῖον +καί +Μαθθαῖον +καί +Θωμᾶν +καί +Ἰάκωβον +Ἀλφαίου +καί +Σίμωνα +τόν +καλούμενον +Ζηλωτήν +καί +Ἰούδαν +Ἰακώβου +καί +Ἰούδαν +Ἰσκαριώθ +ὅς +ἐγένετο +προδότης +καί +καταβάς +μετ’ +αὐτῶν +ἔστη +ἐπί +τόπου +πεδινοῦ +καί +ὄχλος +πολύς +μαθητῶν +αὐτοῦ +καί +πλῆθος +πολύ +τοῦ +λαοῦ +ἀπό +πάσης +τῆς +Ἰουδαίας +καί +Ἱερουσαλήμ +καί +τῆς +παραλίου +Τύρου +καί +Σιδῶνος +οἵ +ἦλθον +ἀκοῦσαι +αὐτοῦ +καί +ἰαθῆναι +ἀπό +τῶν +νόσων +αὐτῶν +καί +οἱ +ἐνοχλούμενοι +ἀπό +πνευμάτων +ἀκαθάρτων +ἐθεραπεύοντο +καί +πᾶς +ὁ +ὄχλος +ἐζήτουν +ἅπτεσθαι +αὐτοῦ +ὅτι +δύναμις +παρ’ +αὐτοῦ +ἐξήρχετο +καί +ἰᾶτο +πάντας +Καί +αὐτός +ἐπάρας +τούς +ὀφθαλμούς +αὐτοῦ +εἰς +τούς +μαθητάς +αὐτοῦ +ἔλεγεν +Μακάριοι +οἱ +πτωχοί +ὅτι +ὑμετέρα +ἐστίν +ἡ +βασιλεία +τοῦ +Θεοῦ +μακάριοι +οἱ +πεινῶντες +νῦν +ὅτι +χορτασθήσεσθε +μακάριοι +οἱ +κλαίοντες +νῦν +ὅτι +γελάσετε +μακάριοι +ἐστε +ὅταν +μισήσωσιν +ὑμᾶς +οἱ +ἄνθρωποι +καί +ὅταν +ἀφορίσωσιν +ὑμᾶς +καί +ὀνειδίσωσιν +καί +ἐκβάλωσιν +τό +ὄνομα +ὑμῶν +ὡς +πονηρόν +ἕνεκα +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +χάρητε +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +καί +σκιρτήσατε +γάρ +ἰδού +ὁ +μισθός +ὑμῶν +πολύς +ἐν +τῷ +οὐρανῷ +γάρ +κατά +τά +αὐτά +ἐποίουν +τοῖς +προφήταις +οἱ +πατέρες +αὐτῶν +Πλήν +οὐαί +ὑμῖν +τοῖς +πλουσίοις +ὅτι +ἀπέχετε +τήν +παράκλησιν +ὑμῶν +οὐαί +ὑμῖν +οἱ +ἐμπεπλησμένοι +νῦν +ὅτι +πεινάσετε +οὐαί +οἱ +γελῶντες +νῦν +ὅτι +πενθήσετε +καί +κλαύσετε +οὐαί +ὅταν +καλῶς +ὑμᾶς +εἴπωσιν +πάντες +οἱ +ἄνθρωποι +γάρ +κατά +τά +αὐτά +ἐποίουν +τοῖς +ψευδοπροφήταις +οἱ +πατέρες +αὐτῶν +Ἀλλά +λέγω +ὑμῖν +τοῖς +ἀκούουσιν +Ἀγαπᾶτε +τούς +ἐχθρούς +ὑμῶν +καλῶς +ποιεῖτε +τοῖς +μισοῦσιν +ὑμᾶς +εὐλογεῖτε +τούς +καταρωμένους +ὑμᾶς +προσεύχεσθε +περί +τῶν +ἐπηρεαζόντων +ὑμᾶς +τῷ +τύπτοντι +σε +ἐπί +τήν +σιαγόνα +πάρεχε +καί +τήν +ἄλλην +καί +ἀπό +τοῦ +αἴροντος +σου +τό +ἱμάτιον +καί +τόν +χιτῶνα +μή +κωλύσῃς +παντί +αἰτοῦντι +σε +δίδου +καί +ἀπό +τοῦ +αἴροντος +τά +σά +μή +ἀπαίτει +καί +καθώς +θέλετε +ἵνα +ποιῶσιν +ὑμῖν +οἱ +ἄνθρωποι +ποιεῖτε +αὐτοῖς +ὁμοίως +καί +εἰ +ἀγαπᾶτε +τούς +ἀγαπῶντας +ὑμᾶς +ποία +χάρις +ὑμῖν +ἐστίν +γάρ +καί +οἱ +ἁμαρτωλοί +τούς +ἀγαπῶντας +αὐτούς +ἀγαπῶσιν +γάρ +ἐάν +καί +ἀγαθοποιῆτε +τούς +ἀγαθοποιοῦντας +ὑμᾶς +ποία +χάρις +ὑμῖν +ἐστίν +καί +οἱ +ἁμαρτωλοί +τό +αὐτό +ποιοῦσιν +καί +ἐάν +δανίσητε +παρ’ +ὧν +ἐλπίζετε +λαβεῖν +ποία +χάρις +ὑμῖν +ἐστίν +καί +ἁμαρτωλοί +ἁμαρτωλοῖς +δανίζουσιν +ἵνα +ἀπολάβωσιν +τά +ἴσα +πλήν +ἀγαπᾶτε +τούς +ἐχθρούς +ὑμῶν +καί +ἀγαθοποιεῖτε +καί +δανίζετε +μηδέν +ἀπελπίζοντες +καί +ἔσται +ὁ +μισθός +ὑμῶν +πολύς +καί +ἔσεσθε +υἱοί +Ὑψίστου +ὅτι +αὐτός +χρηστός +ἐστιν +ἐπί +τούς +ἀχαρίστους +καί +πονηρούς +Γίνεσθε +οἰκτίρμονες +καθώς +ὁ +Πατήρ +ὑμῶν +οἰκτίρμων +ἐστίν +καί +μή +κρίνετε +καί +οὐ +μή +κριθῆτε +καί +μή +καταδικάζετε +καί +οὐ +μή +καταδικασθῆτε +ἀπολύετε +καί +ἀπολυθήσεσθε +δίδοτε +καί +δοθήσεται +ὑμῖν +μέτρον +καλόν +πεπιεσμένον +σεσαλευμένον +ὑπερεκχυννόμενον +δώσουσιν +εἰς +τόν +κόλπον +ὑμῶν +γάρ +ᾧ +μέτρῳ +μετρεῖτε +ἀντιμετρηθήσεται +ὑμῖν +δέ +Εἶπεν +καί +παραβολήν +αὐτοῖς +Μήτι +δύναται +τυφλός +τυφλόν +ὁδηγεῖν +οὐχί +ἀμφότεροι +εἰς +βόθυνον +ἐμπεσοῦνται +οὐκ +ἔστιν +μαθητής +ὑπέρ +τόν +διδάσκαλον +δέ +κατηρτισμένος +πᾶς +ἔσται +ὡς +ὁ +διδάσκαλος +αὐτοῦ +δέ +Τί +βλέπεις +τό +κάρφος +τό +ἐν +τῷ +ὀφθαλμῷ +τοῦ +ἀδελφοῦ +σου +δέ +τήν +δοκόν +τήν +ἐν +τῷ +ἰδίῳ +ὀφθαλμῷ +οὐ +κατανοεῖς +πῶς +δύνασαι +λέγειν +τῷ +ἀδελφῷ +σου +Ἀδελφέ +ἄφες +ἐκβάλω +τό +κάρφος +τό +ἐν +τῷ +ὀφθαλμῷ +σου +αὐτός +τήν +ἐν +τῷ +ὀφθαλμῷ +σοῦ +δοκόν +οὐ +βλέπων +ὑποκριτά +ἔκβαλε +πρῶτον +τήν +δοκόν +ἐκ +τοῦ +ὀφθαλμοῦ +σοῦ +καί +τότε +διαβλέψεις +τό +κάρφος +τό +ἐν +τῷ +ὀφθαλμῷ +τοῦ +ἀδελφοῦ +σου +ἐκβαλεῖν +γάρ +Οὐ +ἐστιν +ποιοῦν +δένδρον +καλόν +καρπόν +σαπρόν +οὐδέ +πάλιν +δένδρον +σαπρόν +ποιοῦν +καρπόν +καλόν +γάρ +ἕκαστον +δένδρον +ἐκ +τοῦ +ἰδίου +καρποῦ +γινώσκεται +γάρ +οὐ +ἐξ +ἀκανθῶν +συλλέγουσιν +σῦκα +οὐδέ +ἐκ +βάτου +σταφυλήν +τρυγῶσιν +ὁ +ἀγαθός +ἄνθρωπος +ἐκ +τοῦ +ἀγαθοῦ +θησαυροῦ +τῆς +καρδίας +προφέρει +τό +ἀγαθόν +καί +ὁ +πονηρός +ἐκ +τοῦ +πονηροῦ +προφέρει +τό +πονηρόν +γάρ +ἐκ +περισσεύματος +καρδίας +λαλεῖ +τό +στόμα +αὐτοῦ +δέ +Τί +με +καλεῖτε +Κύριε +κύριε +καί +οὐ +ποιεῖτε +ἅ +λέγω +Πᾶς +ὁ +ἐρχόμενος +πρός +με +καί +ἀκούων +μου +τῶν +λόγων +καί +ποιῶν +αὐτούς +ὑποδείξω +ὑμῖν +τίνι +ἐστίν +ὅμοιος +ὅμοιος +ἐστιν +ἀνθρώπῳ +οἰκοδομοῦντι +οἰκίαν +ὅς +ἔσκαψεν +καί +ἐβάθυνεν +καί +ἔθηκεν +θεμέλιον +ἐπί +τήν +πέτραν +δέ +πλημμύρης +γενομένης +προσέρηξεν +ὁ +ποταμός +τῇ +οἰκίᾳ +ἐκείνῃ +καί +οὐκ +ἴσχυσεν +σαλεῦσαι +αὐτήν +διά +τό +καλῶς +οἰκοδομῆσθαι +αὐτήν +δέ +ὁ +ἀκούσας +καί +μή +ποιήσας +ὅμοιος +ἐστιν +ἀνθρώπῳ +οἰκοδομήσαντι +οἰκίαν +ἐπί +τήν +γῆν +χωρίς +θεμελίου +ᾗ +προσέρηξεν +ὁ +ποταμός +καί +εὐθύς +συνέπεσεν +καί +ἐγένετο +τό +ῥῆγμα +τῆς +οἰκίας +ἐκείνης +μέγα +Ἐπειδή +ἐπλήρωσεν +πάντα +τά +ῥήματα +αὐτοῦ +εἰς +τάς +ἀκοάς +τοῦ +λαοῦ +εἰσῆλθεν +εἰς +Καφαρναούμ +δέ +Ἑκατοντάρχου +τινος +δοῦλος +κακῶς +ἔχων +ἤμελλεν +τελευτᾶν +ὅς +ἦν +αὐτῷ +ἔντιμος +δέ +ἀκούσας +περί +τοῦ +Ἰησοῦ +ἀπέστειλεν +πρός +αὐτόν +πρεσβυτέρους +τῶν +Ἰουδαίων +ἐρωτῶν +αὐτόν +ὅπως +ἐλθών +διασώσῃ +τόν +δοῦλον +αὐτοῦ +δέ +οἱ +παραγενόμενοι +πρός +τόν +Ἰησοῦν +παρεκάλουν +αὐτόν +σπουδαίως +λέγοντες +ὅτι +ἄξιος +ἐστιν +ᾧ +παρέξῃ +τοῦτο +γάρ +ἀγαπᾷ +τό +ἔθνος +ἡμῶν +καί +τήν +συναγωγήν +αὐτός +ᾠκοδόμησεν +ἡμῖν +δέ +ὁ +Ἰησοῦς +ἐπορεύετο +σύν +αὐτοῖς +δέ +ἤδη +αὐτοῦ +οὐ +μακράν +ἀπέχοντος +ἀπό +τῆς +οἰκίας +ἔπεμψεν +φίλους +ὁ +ἑκατοντάρχης +λέγων +αὐτῷ +Κύριε +μή +σκύλλου +γάρ +οὐ +εἰμι +ἱκανός +ἵνα +ὑπό +τήν +στέγην +μου +εἰσέλθῃς +διό +οὐδέ +ἐμαυτόν +ἠξίωσα +πρός +σέ +ἐλθεῖν +ἀλλά +εἰπέ +λόγῳ +καί +ἰαθήτω +ὁ +παῖς +μου +γάρ +καί +ἐγώ +εἰμι +ἄνθρωπος +ὑπό +ἐξουσίαν +τασσόμενος +ἔχων +ὑπ’ +ἐμαυτόν +στρατιώτας +καί +λέγω +τούτῳ +Πορεύθητι +καί +πορεύεται +καί +ἄλλῳ +Ἔρχου +καί +ἔρχεται +καί +τῷ +δούλῳ +μου +Ποίησον +τοῦτο +καί +ποιεῖ +δέ +ἀκούσας +ταῦτα +ὁ +Ἰησοῦς +ἐθαύμασεν +αὐτόν +καί +στραφείς +τῷ +ἀκολουθοῦντι +αὐτῷ +ὄχλῳ +εἶπεν +Λέγω +ὑμῖν +οὐδέ +ἐν +τῷ +Ἰσραήλ +τοσαύτην +πίστιν +εὗρον +καί +ὑποστρέψαντες +εἰς +τόν +οἶκον +οἱ +πεμφθέντες +εὗρον +τόν +δοῦλον +ὑγιαίνοντα +Καί +ἐγένετο +ἐν +τῷ +ἑξῆς +ἐπορεύθη +εἰς +πόλιν +καλουμένην +Ναΐν +καί +συνεπορεύοντο +αὐτῷ +οἱ +μαθηταί +αὐτοῦ +καί +ὄχλος +πολύς +δέ +ὡς +ἤγγισεν +τῇ +πύλῃ +τῆς +πόλεως +καί +ἰδού +ἐξεκομίζετο +τεθνηκώς +μονογενής +υἱός +τῇ +μητρί +αὐτοῦ +καί +αὐτή +ἦν +χήρα +καί +ὄχλος +τῆς +πόλεως +ἱκανός +ἦν +σύν +αὐτῇ +καί +ἰδών +αὐτήν +ὁ +Κύριος +ἐσπλαγχνίσθη +ἐπ’ +αὐτῇ +καί +εἶπεν +αὐτῇ +Μή +κλαῖε +καί +προσελθών +ἥψατο +τῆς +σοροῦ +δέ +οἱ +βαστάζοντες +ἔστησαν +καί +εἶπεν +Νεανίσκε +σοί +λέγω +ἐγέρθητι +καί +ἀνεκάθισεν +ὁ +νεκρός +καί +ἤρξατο +λαλεῖν +καί +ἔδωκεν +αὐτόν +τῇ +μητρί +αὐτοῦ +δέ +ἔλαβεν +φόβος +πάντας +καί +ἐδόξαζον +τόν +Θεόν +λέγοντες +ὅτι +Προφήτης +μέγας +ἠγέρθη +ἐν +ἡμῖν +καί +ὅτι +Ἐπεσκέψατο +ὁ +Θεός +τόν +λαόν +αὐτοῦ +καί +ἐξῆλθεν +ὁ +λόγος +οὗτος +περί +αὐτοῦ +ἐν +ὅλῃ +τῇ +Ἰουδαίᾳ +καί +πάσῃ +τῇ +περιχώρῳ +Καί +ἀπήγγειλαν +Ἰωάνει +οἱ +μαθηταί +αὐτοῦ +περί +πάντων +τούτων +καί +προσκαλεσάμενος +δύο +τινάς +τῶν +μαθητῶν +αὐτοῦ +ὁ +Ἰωάνης +ἔπεμψεν +πρός +τόν +Κύριον +λέγων +Σύ +εἶ +ὁ +ἐρχόμενος +ἤ +ἄλλον +προσδοκῶμεν +δέ +παραγενόμενοι +πρός +αὐτόν +οἱ +ἄνδρες +εἶπαν +Ἰωάνης +ὁ +Βαπτιστής +ἀπέστειλεν +ἡμᾶς +πρός +σέ +λέγων +Σύ +εἶ +ὁ +ἐρχόμενος +ἤ +ἄλλον +προσδοκῶμεν +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +ἐθεράπευσεν +πολλούς +ἀπό +νόσων +καί +μαστίγων +καί +πνευμάτων +πονηρῶν +καί +τυφλοῖς +πολλοῖς +ἐχαρίσατο +βλέπειν +καί +ἀποκριθείς +εἶπεν +αὐτοῖς +Πορευθέντες +ἀπαγγείλατε +Ἰωάνει +ἅ +εἴδετε +καί +ἠκούσατε +τυφλοί +ἀναβλέπουσιν +χωλοί +περιπατοῦσιν +λεπροί +καθαρίζονται +καί +κωφοί +ἀκούουσιν +νεκροί +ἐγείρονται +πτωχοί +εὐαγγελίζονται +καί +μακάριος +ἐστιν +ἐάν +ὅς +μή +σκανδαλισθῇ +ἐν +ἐμοί +δέ +Ἀπελθόντων +τῶν +ἀγγέλων +Ἰωάνου +ἤρξατο +λέγειν +πρός +τούς +ὄχλους +περί +Ἰωάνου +Τί +θεάσασθαι +ἐξήλθατε +εἰς +τήν +ἔρημον +κάλαμον +ὑπό +ἀνέμου +σαλευόμενον +ἀλλά +τί +ἰδεῖν +ἐξήλθατε +ἄνθρωπον +ἐν +μαλακοῖς +ἱματίοις +ἠμφιεσμένον +ἰδού +οἱ +ἐν +ἱματισμῷ +ἐνδόξῳ +καί +τρυφῇ +ὑπάρχοντες +ἐν +τοῖς +βασιλείοις +εἰσίν +ἀλλά +τί +ἰδεῖν +ἐξήλθατε +προφήτην +ναί +λέγω +ὑμῖν +καί +περισσότερον +προφήτου +οὗτος +ἐστιν +περί +οὗ +γέγραπται +Ἰδού +ἀποστέλλω +τόν +ἄγγελον +μου +πρό +προσώπου +σου +ὅς +κατασκευάσει +τήν +ὁδόν +σου +ἔμπροσθεν +σου +λέγω +ὑμῖν +μείζων +ἐν +γεννητοῖς +γυναικῶν +Ἰωάνου +οὐδείς +ἐστιν +δέ +ὁ +μικρότερος +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +μείζων +αὐτοῦ +ἐστιν +καί +πᾶς +ὁ +λαός +καί +οἱ +τελῶναι +ἀκούσας +ἐδικαίωσαν +τόν +Θεόν +βαπτισθέντες +τό +βάπτισμα +Ἰωάνου +δέ +οἱ +Φαρισαῖοι +καί +οἱ +νομικοί +τήν +βουλήν +τοῦ +Θεοῦ +ἠθέτησαν +εἰς +ἑαυτούς +μή +βαπτισθέντες +ὑπ’ +αὐτοῦ +οὖν +Τίνι +ὁμοιώσω +τούς +ἀνθρώπους +τῆς +γενεᾶς +ταύτης +καί +τίνι +εἰσίν +ὅμοιοι +ὅμοιοι +εἰσιν +παιδίοις +τοῖς +ἐν +ἀγορᾷ +καθημένοις +καί +προσφωνοῦσιν +ἀλλήλοις +ἅ +λέγει +Ηὐλήσαμεν +ὑμῖν +καί +οὐκ +ὠρχήσασθε +ἐθρηνήσαμεν +καί +οὐκ +ἐκλαύσατε +γάρ +ἐλήλυθεν +Ἰωάνης +ὁ +Βαπτιστής +μή +ἐσθίων +ἄρτον +μήτε +πίνων +οἶνον +καί +λέγετε +Δαιμόνιον +ἔχει +ἐλήλυθεν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐσθίων +καί +πίνων +καί +λέγετε +Ἰδού +ἄνθρωπος +φάγος +καί +οἰνοπότης +φίλος +τελωνῶν +καί +ἁμαρτωλῶν +καί +ἐδικαιώθη +ἡ +σοφία +ἀπό +πάντων +τῶν +τέκνων +αὐτῆς +δέ +Ἠρώτα +τις +τῶν +Φαρισαίων +αὐτόν +ἵνα +φάγῃ +μετ’ +αὐτοῦ +καί +εἰσελθών +εἰς +τόν +οἶκον +τοῦ +Φαρισαίου +κατεκλίθη +καί +ἰδού +γυνή +ἥτις +ἦν +ἐν +τῇ +πόλει +ἁμαρτωλός +καί +ἐπιγνοῦσα +ὅτι +κατάκειται +ἐν +τῇ +οἰκίᾳ +τοῦ +Φαρισαίου +κομίσασα +ἀλάβαστρον +μύρου +καί +στᾶσα +ὀπίσω +παρά +τούς +πόδας +αὐτοῦ +κλαίουσα +ἤρξατο +τοῖς +δάκρυσιν +βρέχειν +τούς +πόδας +αὐτοῦ +καί +ταῖς +θριξίν +τῆς +κεφαλῆς +αὐτῆς +ἐξέμασσεν +καί +κατεφίλει +τούς +πόδας +αὐτοῦ +καί +ἤλειφεν +τῷ +μύρῳ +δέ +ἰδών +ὁ +Φαρισαῖος +ὁ +καλέσας +αὐτόν +εἶπεν +ἐν +ἑαυτῷ +λέγων +εἰ +Οὗτος +ἦν +προφήτης +ἄν +ἐγίνωσκεν +τίς +καί +ποταπή +ἡ +γυνή +ἥτις +ἅπτεται +αὐτοῦ +ὅτι +ἁμαρτωλός +ἐστιν +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +πρός +αὐτόν +Σίμων +ἔχω +σοί +τι +εἰπεῖν +δέ +ὁ +Διδάσκαλε +εἰπέ +φησίν +δύο +χρεοφειλέται +ἦσαν +δανιστῇ +τινι +ὁ +εἷς +ὤφειλεν +δηνάρια +πεντακόσια +δέ +ὁ +ἕτερος +πεντήκοντα +μή +ἐχόντων +αὐτῶν +ἀποδοῦναι +ἀμφοτέροις +ἐχαρίσατο +οὖν +τίς +αὐτῶν +πλεῖον +ἀγαπήσει +αὐτόν +ἀποκριθείς +Σίμων +εἶπεν +Ὑπολαμβάνω +ὅτι +ᾧ +τό +πλεῖον +ἐχαρίσατο +δέ +ὁ +εἶπεν +αὐτῷ +Ὀρθῶς +ἔκρινας +καί +στραφείς +πρός +τήν +γυναῖκα +τῷ +Σίμωνι +ἔφη +Βλέπεις +ταύτην +τήν +γυναῖκα +εἰσῆλθον +εἰς +σου +τήν +οἰκίαν +ὕδωρ +μοι +ἐπί +πόδας +οὐκ +ἔδωκας +δέ +αὕτη +τοῖς +δάκρυσιν +ἔβρεξεν +μου +τούς +πόδας +καί +ταῖς +θριξίν +αὐτῆς +ἐξέμαξεν +φίλημα +μοι +οὐκ +ἔδωκας +δέ +αὕτη +ἀφ’ +ἧς +εἰσῆλθον +οὐ +διέλειπεν +καταφιλοῦσα +μου +τούς +πόδας +ἐλαίῳ +τήν +κεφαλήν +μου +οὐκ +ἤλειψας +δέ +αὕτη +μύρῳ +ἤλειψεν +τούς +πόδας +μου +οὗ +χάριν +λέγω +σοι +ἀφέωνται +αἱ +ἁμαρτίαι +αὐτῆς +αἱ +πολλαί +ὅτι +ἠγάπησεν +πολύ +δέ +ᾧ +ὀλίγον +ἀφίεται +ὀλίγον +ἀγαπᾷ +δέ +εἶπεν +αὐτῇ +Ἀφέωνται +σου +αἱ +ἁμαρτίαι +καί +ἤρξαντο +οἱ +συνανακείμενοι +λέγειν +ἐν +ἑαυτοῖς +Τίς +οὗτος +ἐστιν +ὅς +καί +ἁμαρτίας +ἀφίησιν +δέ +εἶπεν +πρός +τήν +γυναῖκα +Ἠ +πίστις +σου +σέσωκεν +σε +πορεύου +εἰς +εἰρήνην +Καί +ἐγένετο +ἐν +τῷ +καθεξῆς +καί +αὐτός +διώδευεν +κατά +πόλιν +καί +κώμην +κηρύσσων +καί +εὐαγγελιζόμενος +τήν +βασιλείαν +τοῦ +Θεοῦ +καί +σύν +αὐτῷ +οἱ +δώδεκα +καί +γυναῖκες +τινες +αἵ +ἦσαν +τεθεραπευμέναι +ἀπό +πνευμάτων +πονηρῶν +καί +ἀσθενειῶν +Μαρία +ἡ +καλουμένη +Μαγδαληνή +ἀφ’ +ἧς +δαιμόνια +ἑπτά +ἐξεληλύθει +καί +Ἰωάνα +γυνή +Χουζᾶ +ἐπιτρόπου +Ἠρῴδου +καί +Σουσάννα +καί +ἕτεραι +πολλαί +αἵτινες +διηκόνουν +αὐτοῖς +ἐκ +τῶν +ὑπαρχόντων +αὐταῖς +δέ +Συνιόντος +ὄχλου +πολλοῦ +καί +τῶν +κατά +πόλιν +ἐπιπορευομένων +πρός +αὐτόν +εἶπεν +διά +παραβολῆς +Ἐξῆλθεν +ὁ +σπείρων +τοῦ +σπεῖραι +τόν +σπόρον +αὐτοῦ +καί +ἐν +τῷ +σπείρειν +αὐτόν +ὅ +μέν +ἔπεσεν +παρά +τήν +ὁδόν +καί +κατεπατήθη +καί +τά +πετεινά +τοῦ +οὐρανοῦ +κατέφαγεν +αὐτό +καί +ἕτερον +κατέπεσεν +ἐπί +τήν +πέτραν +καί +φυέν +ἐξηράνθη +διά +τό +μή +ἔχειν +ἰκμάδα +καί +ἕτερον +ἔπεσεν +ἐν +μέσῳ +τῶν +ἀκανθῶν +καί +συνφυεῖσαι +αἱ +ἄκανθαι +ἀπέπνιξαν +αὐτό +καί +ἕτερον +ἔπεσεν +εἰς +τήν +γῆν +τήν +ἀγαθήν +καί +φυέν +ἐποίησεν +καρπόν +ἑκατονταπλασίονα +ταῦτα +λέγων +ἐφώνει +Ὁ +ἔχων +ὦτα +ἀκούειν +ἀκουέτω +δέ +Ἐπηρώτων +αὐτόν +οἱ +μαθηταί +αὐτοῦ +τίς +εἴη +αὕτη +ἡ +παραβολή +δέ +ὁ +εἶπεν +Ὑμῖν +δέδοται +γνῶναι +τά +μυστήρια +τῆς +βασιλείας +τοῦ +Θεοῦ +δέ +τοῖς +λοιποῖς +ἐν +παραβολαῖς +ἵνα +βλέποντες +μή +βλέπωσιν +καί +ἀκούοντες +μή +συνιῶσιν +δέ +ἔστιν +αὕτη +ἡ +παραβολή +ὁ +σπόρος +ἐστίν +ὁ +λόγος +τοῦ +Θεοῦ +δέ +οἱ +παρά +τήν +ὁδόν +εἰσιν +οἱ +ἀκούσαντες +εἶτα +ἔρχεται +ὁ +διάβολος +καί +αἴρει +τόν +λόγον +ἀπό +τῆς +καρδίας +αὐτῶν +ἵνα +μή +πιστεύσαντες +σωθῶσιν +δέ +οἱ +ἐπί +τῆς +πέτρας +οἵ +ὅταν +ἀκούσωσιν +μετά +χαρᾶς +δέχονται +τόν +λόγον +καί +οὗτοι +ῥίζαν +οὐκ +ἔχουσιν +οἵ +πρός +καιρόν +πιστεύουσιν +καί +ἐν +καιρῷ +πειρασμοῦ +ἀφίστανται +δέ +τό +εἰς +τάς +ἀκάνθας +πεσόν +οὗτοι +εἰσιν +οἱ +ἀκούσαντες +καί +ὑπό +μεριμνῶν +καί +πλούτου +καί +ἡδονῶν +τοῦ +βίου +πορευόμενοι +συνπνίγονται +καί +οὐ +τελεσφοροῦσιν +δέ +τό +ἐν +τῇ +καλῇ +γῇ +οὗτοι +εἰσιν +οἵτινες +ἐν +καρδίᾳ +καλῇ +καί +ἀγαθῇ +ἀκούσαντες +τόν +λόγον +κατέχουσιν +καί +καρποφοροῦσιν +ἐν +ὑπομονῇ +δέ +Οὐδείς +λύχνον +ἅψας +καλύπτει +αὐτόν +σκεύει +ἤ +ὑποκάτω +κλίνης +τίθησιν +ἀλλ’ +ἐπί +λυχνίας +τίθησιν +ἵνα +οἱ +εἰσπορευόμενοι +βλέπωσιν +τό +φῶς +γάρ +οὐ +ἐστιν +κρυπτόν +ὅ +οὐ +φανερόν +γενήσεται +οὐδέ +ἀπόκρυφον +ὅ +οὐ +μή +γνωσθῇ +καί +εἰς +φανερόν +ἔλθῃ +οὖν +βλέπετε +πῶς +ἀκούετε +γάρ +ἄν +ὅς +ἔχῃ +δοθήσεται +αὐτῷ +καί +ἄν +ὅς +μή +ἔχῃ +καί +ὅ +ἔχειν +δοκεῖ +ἀρθήσεται +ἀπ’ +αὐτοῦ +δέ +Παρεγένετο +πρός +αὐτόν +ἡ +μήτηρ +καί +οἱ +ἀδελφοί +αὐτοῦ +καί +οὐκ +ἠδύναντο +συντυχεῖν +αὐτῷ +διά +τόν +ὄχλον +δέ +ἀπηγγέλη +αὐτῷ +Ἠ +μήτηρ +σου +καί +οἱ +ἀδελφοί +σου +ἑστήκασιν +ἔξω +ἰδεῖν +σε +θέλοντες +δέ +ὁ +ἀποκριθείς +εἶπεν +πρός +αὐτούς +Μήτηρ +μου +καί +ἀδελφοί +μου +οὗτοι +εἰσιν +οἱ +τόν +λόγον +τοῦ +Θεοῦ +ἀκούοντες +καί +ποιοῦντες +δέ +Ἐγένετο +ἐν +μιᾷ +τῶν +ἡμερῶν +καί +αὐτός +ἐνέβη +εἰς +πλοῖον +καί +οἱ +μαθηταί +αὐτοῦ +καί +εἶπεν +πρός +αὐτούς +Διέλθωμεν +εἰς +τό +πέραν +τῆς +λίμνης +καί +ἀνήχθησαν +δέ +πλεόντων +αὐτῶν +ἀφύπνωσεν +καί +κατέβη +λαῖλαψ +ἀνέμου +εἰς +τήν +λίμνην +καί +συνεπληροῦντο +καί +ἐκινδύνευον +δέ +προσελθόντες +διήγειραν +αὐτόν +λέγοντες +Ἐπιστάτα +ἐπιστάτα +ἀπολλύμεθα +δέ +ὁ +διεγερθείς +ἐπετίμησεν +τῷ +ἀνέμῳ +καί +τῷ +κλύδωνι +τοῦ +ὕδατος +καί +ἐπαύσαντο +καί +ἐγένετο +γαλήνη +δέ +εἶπεν +αὐτοῖς +Ποῦ +ἡ +πίστις +ὑμῶν +δέ +φοβηθέντες +ἐθαύμασαν +λέγοντες +πρός +ἀλλήλους +ἄρα +Τίς +οὗτος +ἐστιν +ὅτι +καί +τοῖς +ἀνέμοις +καί +τῷ +ὕδατι +ἐπιτάσσει +καί +ὑπακούουσιν +αὐτῷ +Καί +κατέπλευσαν +εἰς +τήν +χώραν +τῶν +Γερασηνῶν +ἥτις +ἐστίν +ἀντιπέρα +τῆς +Γαλιλαίας +δέ +αὐτῷ +ἐξελθόντι +ἐπί +τήν +γῆν +ὑπήντησεν +ἀνήρ +τις +ἐκ +τῆς +πόλεως +ἔχων +δαιμόνια +καί +χρόνῳ +ἱκανῷ +οὐκ +ἐνεδύσατο +ἱμάτιον +καί +ἐν +οἰκίᾳ +οὐκ +ἔμενεν +ἀλλ’ +ἐν +τοῖς +μνήμασιν +δέ +ἰδών +τόν +Ἰησοῦν +ἀνακράξας +προσέπεσεν +αὐτῷ +καί +φωνῇ +μεγάλῃ +εἶπεν +Τί +ἐμοί +καί +σοί +Ἰησοῦ +Υἱέ +τοῦ +Θεοῦ +τοῦ +Ὑψίστου +δέομαι +σου +μή +με +βασανίσῃς +γάρ +παρήγγελλεν +τῷ +πνεύματι +τῷ +ἀκαθάρτῳ +ἐξελθεῖν +ἀπό +τοῦ +ἀνθρώπου +γάρ +πολλοῖς +χρόνοις +συνηρπάκει +αὐτόν +καί +ἐδεσμεύετο +ἁλύσεσιν +καί +πέδαις +φυλασσόμενος +καί +διαρήσσων +τά +δεσμά +ἠλαύνετο +ἀπό +τοῦ +δαιμονίου +εἰς +τάς +ἐρήμους +δέ +ἐπηρώτησεν +αὐτόν +ὁ +Ἰησοῦς +Τί +σοι +ὄνομα +ἐστιν +δέ +ὁ +εἶπεν +Λεγιών +ὅτι +εἰσῆλθεν +δαιμόνια +πολλά +εἰς +αὐτόν +καί +παρεκάλουν +αὐτόν +ἵνα +μή +ἐπιτάξῃ +αὐτοῖς +εἰς +τήν +ἄβυσσον +ἀπελθεῖν +δέ +ἦν +ἐκεῖ +ἀγέλη +χοίρων +ἱκανῶν +βοσκομένη +ἐν +τῷ +ὄρει +καί +παρεκάλεσαν +αὐτόν +ἵνα +ἐπιτρέψῃ +αὐτοῖς +εἰς +ἐκείνους +εἰσελθεῖν +καί +ἐπέτρεψεν +αὐτοῖς +δέ +τά +δαιμόνια +ἐξελθόντα +ἀπό +τοῦ +ἀνθρώπου +εἰσῆλθον +εἰς +τούς +χοίρους +καί +ὥρμησεν +ἡ +ἀγέλη +κατά +τοῦ +κρημνοῦ +εἰς +τήν +λίμνην +καί +ἀπεπνίγη +δέ +οἱ +βόσκοντες +ἰδόντες +τό +γεγονός +ἔφυγον +καί +ἀπήγγειλαν +εἰς +τήν +πόλιν +καί +εἰς +τούς +ἀγρούς +δέ +ἐξῆλθον +ἰδεῖν +τό +γεγονός +καί +ἦλθον +πρός +τόν +Ἰησοῦν +καί +εὗρον +καθήμενον +τόν +ἄνθρωπον +ἀφ’ +οὗ +τά +δαιμόνια +ἐξῆλθεν +ἱματισμένον +καί +σωφρονοῦντα +παρά +τούς +πόδας +τοῦ +Ἰησοῦ +καί +ἐφοβήθησαν +δέ +ἀπήγγειλαν +αὐτοῖς +οἱ +ἰδόντες +πῶς +ἐσώθη +ὁ +δαιμονισθείς +καί +ἠρώτησεν +ἅπαν +τό +πλῆθος +τῆς +περιχώρου +τῶν +Γερασηνῶν +αὐτόν +ἀπελθεῖν +ἀπ’ +αὐτῶν +ὅτι +φόβῳ +μεγάλῳ +συνείχοντο +δέ +αὐτός +ἐμβάς +εἰς +πλοῖον +ὑπέστρεψεν +δέ +ἐδεῖτο +αὐτοῦ +ὁ +ἀνήρ +ἀφ’ +οὗ +ἐξεληλύθει +τά +δαιμόνια +εἶναι +σύν +αὐτῷ +δέ +ἀπέλυσεν +αὐτόν +λέγων +Ὑπόστρεφε +εἰς +τόν +οἶκον +σου +καί +διηγοῦ +ὅσα +σοι +ἐποίησεν +ὁ +Θεός +καί +ἀπῆλθεν +καθ’ +ὅλην +τήν +πόλιν +κηρύσσων +ὅσα +ἐποίησεν +αὐτῷ +ὁ +Ἰησοῦς +δέ +Ἐν +τῷ +ὑποστρέφειν +τόν +Ἰησοῦν +ἀπεδέξατο +αὐτόν +ὁ +ὄχλος +γάρ +πάντες +ἦσαν +προσδοκῶντες +αὐτόν +καί +ἰδού +ἦλθεν +ἀνήρ +ᾧ +ὄνομα +Ἰάειρος +καί +οὗτος +ἄρχων +τῆς +συναγωγῆς +ὑπῆρχεν +καί +πεσών +παρά +τούς +πόδας +Ἰησοῦ +παρεκάλει +αὐτόν +εἰσελθεῖν +εἰς +τόν +οἶκον +αὐτοῦ +ὅτι +θυγάτηρ +μονογενής +ὡς +ἐτῶν +δώδεκα +ἦν +αὐτῷ +καί +αὐτή +ἀπέθνῃσκεν +δέ +Ἐν +τῷ +ὑπάγειν +αὐτόν +οἱ +ὄχλοι +συνέπνιγον +αὐτόν +καί +γυνή +οὖσα +ἐν +ῥύσει +αἵματος +ἀπό +ἐτῶν +δώδεκα +ἥτις +οὐκ +ἴσχυσεν +ἀπ’ +οὐδενός +θεραπευθῆναι +προσελθοῦσα +ὄπισθεν +ἥψατο +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ +καί +παραχρῆμα +ἔστη +ἡ +ῥύσις +τοῦ +αἵματος +αὐτῆς +καί +εἶπεν +ὁ +Ἰησοῦς +Τίς +ὁ +ἁψάμενος +μου +δέ +ἀρνουμένων +πάντων +εἶπεν +ὁ +Πέτρος +Ἐπιστάτα +οἱ +ὄχλοι +συνέχουσιν +σε +καί +ἀποθλίβουσιν +δέ +ὁ +Ἰησοῦς +εἶπεν +Ἥψατο +μού +τις +γάρ +ἐγώ +ἔγνων +δύναμιν +ἐξεληλυθυῖαν +ἀπ’ +ἐμοῦ +δέ +ἡ +γυνή +ἰδοῦσα +ὅτι +οὐκ +ἔλαθεν +τρέμουσα +ἦλθεν +καί +προσπεσοῦσα +αὐτῷ +δι’ +ἥν +αἰτίαν +ἥψατο +αὐτοῦ +ἀπήγγειλεν +ἐνώπιον +παντός +τοῦ +λαοῦ +καί +ὡς +ἰάθη +παραχρῆμα +δέ +ὁ +εἶπεν +αὐτῇ +Θυγάτηρ +ἡ +πίστις +σου +σέσωκεν +σε +πορεύου +εἰς +εἰρήνην +Ἔτι +αὐτοῦ +λαλοῦντος +ἔρχεται +τις +παρά +τοῦ +ἀρχισυναγώγου +λέγων +ὅτι +Τέθνηκεν +ἡ +θυγάτηρ +σου +μηκέτι +σκύλλε +τόν +Διδάσκαλον +δέ +ὁ +Ἰησοῦς +ἀκούσας +ἀπεκρίθη +αὐτῷ +Μή +φοβοῦ +μόνον +πίστευσον +καί +σωθήσεται +δέ +ἐλθών +εἰς +τήν +οἰκίαν +οὐκ +ἀφῆκεν +εἰσελθεῖν +τινα +σύν +αὐτῷ +εἰ +μή +Πέτρον +καί +Ἰωάνην +καί +Ἰάκωβον +καί +τόν +πατέρα +τῆς +παιδός +καί +τήν +μητέρα +δέ +πάντες +ἔκλαιον +καί +ἐκόπτοντο +αὐτήν +δέ +ὁ +εἶπεν +Μή +κλαίετε +οὐκ +ἀπέθανεν +ἀλλά +καθεύδει +καί +κατεγέλων +αὐτοῦ +εἰδότες +ὅτι +ἀπέθανεν +δέ +αὐτός +κρατήσας +τῆς +χειρός +αὐτῆς +ἐφώνησεν +λέγων +Ἠ +παῖς +ἔγειρε +καί +ἐπέστρεψεν +τό +πνεῦμα +αὐτῆς +καί +ἀνέστη +παραχρῆμα +καί +διέταξεν +αὐτῇ +δοθῆναι +φαγεῖν +καί +ἐξέστησαν +οἱ +γονεῖς +αὐτῆς +δέ +ὁ +παρήγγειλεν +αὐτοῖς +μηδενί +εἰπεῖν +τό +γεγονός +δέ +Συνκαλεσάμενος +τούς +δώδεκα +ἔδωκεν +αὐτοῖς +δύναμιν +καί +ἐξουσίαν +ἐπί +πάντα +τά +δαιμόνια +καί +νόσους +θεραπεύειν +καί +ἀπέστειλεν +αὐτούς +κηρύσσειν +τήν +βασιλείαν +τοῦ +Θεοῦ +καί +ἰᾶσθαι +καί +εἶπεν +πρός +αὐτούς +Μηδέν +αἴρετε +εἰς +τήν +ὁδόν +μήτε +ῥάβδον +μήτε +πήραν +μήτε +ἄρτον +μήτε +ἀργύριον +μήτε +ἀνά +δύο +χιτῶνας +ἔχειν +καί +ἄν +εἰς +ἥν +οἰκίαν +εἰσέλθητε +ἐκεῖ +μένετε +καί +ἐκεῖθεν +ἐξέρχεσθε +καί +ἄν +ὅσοι +μή +δέχωνται +ὑμᾶς +ἐξερχόμενοι +ἀπό +τῆς +πόλεως +ἐκείνης +τόν +κονιορτόν +ἀπό +τῶν +ποδῶν +ὑμῶν +ἀποτινάσσετε +εἰς +μαρτύριον +ἐπ’ +αὐτούς +δέ +ἐξερχόμενοι +διήρχοντο +κατά +τάς +κώμας +εὐαγγελιζόμενοι +καί +θεραπεύοντες +πανταχοῦ +δέ +Ἤκουσεν +Ἠρῴδης +ὁ +τετραάρχης +τά +γινόμενα +πάντα +καί +διηπόρει +διά +τό +λέγεσθαι +ὑπό +τινων +ὅτι +Ἰωάνης +ἠγέρθη +ἐκ +νεκρῶν +δέ +ὑπό +τινων +ὅτι +Ἠλείας +ἐφάνη +δέ +ἄλλων +ὅτι +προφήτης +τις +τῶν +ἀρχαίων +ἀνέστη +δέ +εἶπεν +Ἠρῴδης +Ἰωάνην +ἐγώ +ἀπεκεφάλισα +δέ +τίς +ἐστιν +οὗτος +περί +οὗ +ἀκούω +τοιαῦτα +καί +ἐζήτει +ἰδεῖν +αὐτόν +Καί +ὑποστρέψαντες +οἱ +ἀπόστολοι +διηγήσαντο +αὐτῷ +ὅσα +ἐποίησαν +Καί +παραλαβών +αὐτούς +ὑπεχώρησεν +κατ’ +ἰδίαν +εἰς +πόλιν +καλουμένην +Βηθσαϊδά +δέ +οἱ +ὄχλοι +γνόντες +ἠκολούθησαν +αὐτῷ +καί +ἀποδεξάμενος +αὐτούς +ἐλάλει +αὐτοῖς +περί +τῆς +βασιλείας +τοῦ +Θεοῦ +καί +τούς +χρείαν +θεραπείας +ἔχοντας +ἰᾶτο +δέ +Ἠ +ἡμέρα +ἤρξατο +κλίνειν +δέ +προσελθόντες +οἱ +δώδεκα +εἶπαν +αὐτῷ +Ἀπόλυσον +τόν +ὄχλον +ἵνα +πορευθέντες +εἰς +τάς +κύκλῳ +κώμας +καί +ἀγρούς +καταλύσωσιν +καί +εὕρωσιν +ἐπισιτισμόν +ὅτι +ὧδε +ἐν +ἐρήμῳ +τόπῳ +ἐσμέν +δέ +εἶπεν +πρός +αὐτούς +Δότε +αὐτοῖς +φαγεῖν +ὑμεῖς +δέ +οἱ +εἶπαν +Οὐκ +εἰσίν +ἡμῖν +πλεῖον +ἤ +ἄρτοι +πέντε +καί +ἰχθύες +δύο +εἰ +μήτι +πορευθέντες +ἡμεῖς +ἀγοράσωμεν +εἰς +πάντα +τόν +λαόν +τοῦτον +βρώματα +γάρ +ἦσαν +ὡσεί +πεντακισχίλιοι +ἄνδρες +δέ +εἶπεν +πρός +τούς +μαθητάς +αὐτοῦ +Κατακλίνατε +αὐτούς +κλισίας +ὡσεί +ἀνά +πεντήκοντα +καί +ἐποίησαν +οὕτως +καί +κατέκλιναν +ἅπαντας +δέ +λαβών +τούς +πέντε +ἄρτους +καί +τούς +δύο +ἰχθύας +ἀναβλέψας +εἰς +τόν +οὐρανόν +εὐλόγησεν +αὐτούς +καί +κατέκλασεν +καί +ἐδίδου +τοῖς +μαθηταῖς +παραθεῖναι +τῷ +ὄχλῳ +καί +ἔφαγον +καί +ἐχορτάσθησαν +πάντες +καί +ἤρθη +τό +περισσεῦσαν +αὐτοῖς +κλασμάτων +κόφινοι +δώδεκα +Καί +ἐγένετο +ἐν +τῷ +εἶναι +προσευχόμενον +αὐτόν +κατά +μόνας +συνῆσαν +αὐτῷ +οἱ +μαθηταί +καί +ἐπηρώτησεν +αὐτούς +λέγων +Τίνα +με +εἶναι +οἱ +ὄχλοι +λέγουσιν +δέ +οἱ +ἀποκριθέντες +εἶπαν +Ἰωάνην +τόν +Βαπτιστήν +δέ +ἄλλοι +Ἠλείαν +δέ +ἄλλοι +ὅτι +προφήτης +τις +τῶν +ἀρχαίων +ἀνέστη +δέ +εἶπεν +αὐτοῖς +δέ +Ὑμεῖς +τίνα +με +εἶναι +λέγετε +δέ +Πέτρος +ἀποκριθείς +εἶπεν +Τόν +Χριστόν +τοῦ +Θεοῦ +δέ +ὁ +ἐπιτιμήσας +αὐτοῖς +παρήγγειλεν +μηδενί +λέγειν +τοῦτο +εἰπών +ὅτι +Δεῖ +τόν +Υἱόν +τοῦ +ἀνθρώπου +πολλά +παθεῖν +καί +ἀποδοκιμασθῆναι +ἀπό +τῶν +πρεσβυτέρων +καί +ἀρχιερέων +καί +γραμματέων +καί +ἀποκτανθῆναι +καί +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθῆναι +δέ +Ἔλεγεν +πρός +πάντας +Εἴ +τις +θέλει +ὀπίσω +μου +ἔρχεσθαι +ἀρνησάσθω +ἑαυτόν +καί +ἀράτω +τόν +σταυρόν +αὐτοῦ +καθ’ +ἡμέραν +καί +ἀκολουθείτω +μοι +γάρ +ἐάν +ὅς +θέλῃ +τήν +ψυχήν +αὐτοῦ +σῶσαι +ἀπολέσει +αὐτήν +δ’ +ἄν +ὅς +ἀπολέσῃ +τήν +ψυχήν +αὐτοῦ +ἕνεκεν +ἐμοῦ +οὗτος +σώσει +αὐτήν +γάρ +τί +ὠφελεῖται +ἄνθρωπος +κερδήσας +τόν +κόσμον +ὅλον +δέ +ἑαυτόν +ἀπολέσας +ἤ +ζημιωθείς +γάρ +ἄν +ὅς +ἐπαισχυνθῇ +με +καί +τούς +ἐμούς +λόγους +τοῦτον +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐπαισχυνθήσεται +ὅταν +ἔλθῃ +ἐν +τῇ +δόξῃ +αὐτοῦ +καί +τοῦ +Πατρός +καί +τῶν +ἁγίων +ἀγγέλων +δέ +λέγω +ὑμῖν +ἀληθῶς +εἰσίν +τινες +τῶν +αὐτοῦ +ἑστηκότων +οἵ +οὐ +μή +γεύσωνται +θανάτου +ἕως +ἄν +ἴδωσιν +τήν +βασιλείαν +τοῦ +Θεοῦ +δέ +Ἐγένετο +μετά +τούς +λόγους +τούτους +ὡσεί +ἡμέραι +ὀκτώ +καί +παραλαβών +Πέτρον +καί +Ἰωάνην +καί +Ἰάκωβον +ἀνέβη +εἰς +τό +ὄρος +προσεύξασθαι +καί +ἐγένετο +ἐν +τῷ +προσεύχεσθαι +αὐτόν +τό +εἶδος +τοῦ +προσώπου +αὐτοῦ +ἕτερον +καί +ὁ +ἱματισμός +αὐτοῦ +λευκός +ἐξαστράπτων +καί +ἰδού +ἄνδρες +δύο +συνελάλουν +αὐτῷ +οἵτινες +ἦσαν +Μωϋσῆς +καί +Ἠλείας +οἵ +ὀφθέντες +ἐν +δόξῃ +ἔλεγον +τήν +ἔξοδον +αὐτοῦ +ἥν +πληροῦν +ἐν +Ἱερουσαλήμ +ἤμελλεν +δέ +ὁ +Πέτρος +καί +οἱ +σύν +αὐτῷ +ἦσαν +βεβαρημένοι +ὕπνῳ +δέ +διαγρηγορήσαντες +εἶδαν +τήν +δόξαν +αὐτοῦ +καί +τούς +δύο +ἄνδρας +τούς +συνεστῶτας +αὐτῷ +καί +ἐγένετο +ἐν +τῷ +διαχωρίζεσθαι +αὐτούς +ἀπ’ +αὐτοῦ +εἶπεν +ὁ +Πέτρος +πρός +τόν +Ἰησοῦν +Ἐπιστάτα +καλόν +ἐστιν +ἡμᾶς +ὧδε +εἶναι +καί +ποιήσωμεν +σκηνάς +τρεῖς +μίαν +σοί +καί +μίαν +Μωϋσεῖ +καί +μίαν +Ἠλείᾳ +μή +εἰδώς +ὅ +λέγει +δέ +ταῦτα +αὐτοῦ +λέγοντος +ἐγένετο +νεφέλη +καί +ἐπεσκίαζεν +αὐτούς +δέ +ἐφοβήθησαν +ἐν +τῷ +εἰσελθεῖν +αὐτούς +εἰς +τήν +νεφέλην +καί +φωνή +ἐγένετο +ἐκ +τῆς +νεφέλης +λέγουσα +Οὗτος +ἐστιν +ὁ +Υἱός +μου +ὁ +ἐκλελεγμένος +αὐτοῦ +ἀκούετε +καί +ἐν +τῷ +γενέσθαι +τήν +φωνήν +εὑρέθη +Ἰησοῦς +μόνος +καί +αὐτοί +ἐσίγησαν +καί +οὐδενί +ἀπήγγειλαν +ἐν +ἐκείναις +ταῖς +ἡμέραις +οὐδέν +ὧν +ἑώρακαν +δέ +Ἐγένετο +τῇ +ἑξῆς +ἡμέρᾳ +κατελθόντων +αὐτῶν +ἀπό +τοῦ +ὄρους +συνήντησεν +αὐτῷ +ὄχλος +πολύς +καί +ἰδού +ἀνήρ +ἀπό +τοῦ +ὄχλου +ἐβόησεν +λέγων +Διδάσκαλε +δέομαι +σου +ἐπιβλέψαι +ἐπί +τόν +υἱόν +μου +ὅτι +μονογενής +μοί +ἐστιν +καί +ἰδού +πνεῦμα +λαμβάνει +αὐτόν +καί +ἐξαίφνης +κράζει +καί +σπαράσσει +αὐτόν +μετά +ἀφροῦ +καί +μόλις +ἀποχωρεῖ +ἀπ’ +αὐτοῦ +συντρῖβον +αὐτόν +καί +ἐδεήθην +τῶν +μαθητῶν +σου +ἵνα +ἐκβάλωσιν +αὐτό +καί +οὐκ +ἠδυνήθησαν +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +Ὦ +γενεά +ἄπιστος +καί +διεστραμμένη +ἕως +πότε +ἔσομαι +πρός +ὑμᾶς +καί +ἀνέξομαι +ὑμῶν +προσάγαγε +ὧδε +τόν +υἱόν +σου +δέ +ἔτι +προσερχομένου +αὐτοῦ +ἔρρηξεν +αὐτόν +τό +δαιμόνιον +καί +συνεσπάραξεν +δέ +ἐπετίμησεν +ὁ +Ἰησοῦς +τῷ +πνεύματι +τῷ +ἀκαθάρτῳ +καί +ἰάσατο +τόν +παῖδα +καί +ἀπέδωκεν +αὐτόν +τῷ +πατρί +αὐτοῦ +δέ +ἐξεπλήσσοντο +πάντες +ἐπί +τῇ +μεγαλειότητι +τοῦ +Θεοῦ +δέ +Πάντων +θαυμαζόντων +ἐπί +πᾶσιν +οἷς +ἐποίει +εἶπεν +πρός +τούς +μαθητάς +αὐτοῦ +Θέσθε +ὑμεῖς +εἰς +τά +ὦτα +ὑμῶν +τούς +λόγους +τούτους +γάρ +ὁ +Υἱός +τοῦ +ἀνθρώπου +μέλλει +παραδίδοσθαι +εἰς +χεῖρας +ἀνθρώπων +δέ +οἱ +ἠγνόουν +τό +ῥῆμα +τοῦτο +καί +ἦν +παρακεκαλυμμένον +ἀπ’ +αὐτῶν +ἵνα +μή +αἴσθωνται +αὐτό +καί +ἐφοβοῦντο +ἐρωτῆσαι +αὐτόν +περί +τοῦ +ῥήματος +τούτου +δέ +Εἰσῆλθεν +ἐν +αὐτοῖς +διαλογισμός +τό +ἄν +τίς +αὐτῶν +εἴη +μείζων +δέ +ὁ +Ἰησοῦς +εἰδώς +τόν +διαλογισμόν +τῆς +καρδίας +αὐτῶν +ἐπιλαβόμενος +παιδίον +ἔστησεν +αὐτό +παρ’ +ἑαυτῷ +καί +εἶπεν +αὐτοῖς +ἐάν +Ὅς +δέξηται +τοῦτο +τό +παιδίον +ἐπί +τῷ +ὀνόματι +μου +ἐμέ +δέχεται +καί +ἄν +ὅς +ἐμέ +δέξηται +δέχεται +τόν +ἀποστείλαντα +με +γάρ +ὁ +μικρότερος +ἐν +πᾶσιν +ὑμῖν +ὑπάρχων +οὗτος +ἐστιν +μέγας +δέ +Ἀποκριθείς +ὁ +Ἰωάνης +εἶπεν +Ἐπιστάτα +εἴδομεν +τινα +ἐν +τῷ +ὀνόματι +σου +ἐκβάλλοντα +δαιμόνια +καί +ἐκωλύομεν +αὐτόν +ὅτι +οὐκ +ἀκολουθεῖ +μεθ’ +ἡμῶν +δέ +εἶπεν +πρός +αὐτόν +Ἰησοῦς +Μή +κωλύετε +γάρ +ὅς +οὐκ +ἔστιν +καθ’ +ὑμῶν +ὑπέρ +ὑμῶν +ἐστιν +δέ +Ἐγένετο +ἐν +τῷ +συμπληροῦσθαι +τάς +ἡμέρας +τῆς +ἀναλήμψεως +αὐτοῦ +καί +αὐτός +τό +πρόσωπον +ἐστήρισεν +τοῦ +πορεύεσθαι +εἰς +Ἱερουσαλήμ +καί +ἀπέστειλεν +ἀγγέλους +πρό +προσώπου +αὐτοῦ +καί +πορευθέντες +εἰσῆλθον +εἰς +κώμην +Σαμαρειτῶν +ὥστε +ἑτοιμάσαι +αὐτῷ +καί +οὐκ +ἐδέξαντο +αὐτόν +ὅτι +τό +πρόσωπον +αὐτοῦ +ἦν +πορευόμενον +εἰς +Ἱερουσαλήμ +δέ +ἰδόντες +οἱ +μαθηταί +Ἰάκωβος +καί +Ἰωάνης +εἶπαν +Κύριε +θέλεις +εἴπωμεν +πῦρ +καταβῆναι +ἀπό +τοῦ +οὐρανοῦ +καί +ἀναλῶσαι +αὐτούς +δέ +στραφείς +ἐπετίμησεν +αὐτοῖς +καί +ἐπορεύθησαν +εἰς +ἑτέραν +κώμην +Καί +πορευομένων +αὐτῶν +ἐν +τῇ +ὁδῷ +εἶπεν +τις +πρός +αὐτόν +Ἀκολουθήσω +σοι +ἐάν +ὅπου +ἀπέρχῃ +καί +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Αἱ +ἀλώπεκες +φωλεούς +ἔχουσιν +καί +τά +πετεινά +τοῦ +οὐρανοῦ +κατασκηνώσεις +δέ +ὁ +Υἱός +τοῦ +ἀνθρώπου +οὐκ +ἔχει +ποῦ +τήν +κεφαλήν +κλίνῃ +δέ +Εἶπεν +πρός +ἕτερον +Ἀκολούθει +μοι +δέ +ὁ +εἶπεν +Ἐπίτρεψον +μοι +πρῶτον +ἀπελθόντι +θάψαι +τόν +πατέρα +μου +δέ +εἶπεν +αὐτῷ +Ἄφες +τούς +νεκρούς +θάψαι +τούς +ἑαυτῶν +νεκρούς +δέ +σύ +ἀπελθών +διάγγελλε +τήν +βασιλείαν +τοῦ +Θεοῦ +δέ +Εἶπεν +καί +ἕτερος +Ἀκολουθήσω +σοι +Κύριε +δέ +πρῶτον +ἐπίτρεψον +μοι +ἀποτάξασθαι +τοῖς +εἰς +τόν +οἶκον +μου +δέ +εἶπεν +πρός +αὐτόν +ὁ +Ἰησοῦς +Οὐδείς +ἐπιβαλών +τήν +χεῖρα +ἐπ’ +ἄροτρον +καί +βλέπων +εἰς +τά +ὀπίσω +εὔθετος +ἐστιν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +δέ +Μετά +ταῦτα +ἀνέδειξεν +ὁ +Κύριος +ἑτέρους +ἑβδομήκοντα +καί +ἀπέστειλεν +αὐτούς +ἀνά +δύο +πρό +προσώπου +αὐτοῦ +εἰς +πᾶσαν +πόλιν +καί +τόπον +οὗ +ἤμελλεν +αὐτός +ἔρχεσθαι +δέ +ἔλεγεν +πρός +αὐτούς +μέν +Ὁ +θερισμός +πολύς +δέ +οἱ +ἐργάται +ὀλίγοι +οὖν +δεήθητε +τοῦ +Κυρίου +τοῦ +θερισμοῦ +ὅπως +ἐργάτας +ἐκβάλῃ +εἰς +τόν +θερισμόν +αὐτοῦ +ὑπάγετε +ἰδού +ἀποστέλλω +ὑμᾶς +ὡς +ἄρνας +ἐν +μέσῳ +λύκων +μή +βαστάζετε +βαλλάντιον +μή +πήραν +μή +ὑποδήματα +καί +μηδένα +κατά +τήν +ὁδόν +ἀσπάσησθε +δ’ +ἄν +εἰς +ἥν +οἰκίαν +εἰσέλθητε +πρῶτον +λέγετε +Εἰρήνη +τῷ +οἴκῳ +τούτῳ +καί +ἐάν +ἐκεῖ +ᾖ +υἱός +εἰρήνης +ἐπαναπαήσεται +ἐπ’ +αὐτόν +ἡ +εἰρήνη +ὑμῶν +δέ +εἰ +μήγε +ἐφ’ +ὑμᾶς +ἀνακάμψει +δέ +ἐν +αὐτῇ +τῇ +οἰκίᾳ +μένετε +ἔσθοντες +καί +πίνοντες +τά +παρ’ +αὐτῶν +γάρ +ἄξιος +ὁ +ἐργάτης +τοῦ +μισθοῦ +αὐτοῦ +μή +μεταβαίνετε +ἐξ +οἰκίας +εἰς +οἰκίαν +καί +ἄν +εἰς +ἥν +πόλιν +εἰσέρχησθε +καί +δέχωνται +ὑμᾶς +ἐσθίετε +τά +παρατιθέμενα +ὑμῖν +καί +θεραπεύετε +τούς +ἐν +αὐτῇ +ἀσθενεῖς +καί +λέγετε +αὐτοῖς +Ἤγγικεν +ἐφ’ +ὑμᾶς +ἡ +βασιλεία +τοῦ +Θεοῦ +δ’ +ἄν +εἰς +ἥν +πόλιν +εἰσέλθητε +καί +μή +δέχωνται +ὑμᾶς +ἐξελθόντες +εἰς +τάς +πλατείας +αὐτῆς +εἴπατε +Καί +τόν +κονιορτόν +τόν +κολληθέντα +ἡμῖν +ἐκ +τῆς +πόλεως +ὑμῶν +εἰς +τούς +πόδας +ἀπομασσόμεθα +ὑμῖν +πλήν +τοῦτο +γινώσκετε +ὅτι +ἤγγικεν +ἡ +βασιλεία +τοῦ +Θεοῦ +λέγω +ὑμῖν +ὅτι +Σοδόμοις +ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ἀνεκτότερον +ἔσται +ἤ +τῇ +πόλει +ἐκείνῃ +Οὐαί +σοι +Χοραζείν +οὐαί +σοι +Βηθσαϊδά +ὅτι +εἰ +ἐν +Τύρῳ +καί +Σιδῶνι +ἐγενήθησαν +αἱ +δυνάμεις +αἱ +γενόμεναι +ἐν +ὑμῖν +ἄν +πάλαι +ἐν +σάκκῳ +καί +σποδῷ +καθήμενοι +μετενόησαν +πλήν +Τύρῳ +καί +Σιδῶνι +ἀνεκτότερον +ἔσται +ἐν +τῇ +κρίσει +ἤ +ὑμῖν +καί +Καφαρναούμ +μή +σύ +ἕως +οὐρανοῦ +ὑψωθήσῃ +ἕως +τοῦ +Ἅιδου +καταβήσῃ +Ὁ +ἀκούων +ὑμῶν +ἐμοῦ +ἀκούει +καί +ὁ +ἀθετῶν +ὑμᾶς +ἐμέ +ἀθετεῖ +δέ +ὁ +ἐμέ +ἀθετῶν +ἀθετεῖ +τόν +ἀποστείλαντα +με +δέ +Ὑπέστρεψαν +οἱ +ἑβδομήκοντα +μετά +χαρᾶς +λέγοντες +Κύριε +καί +τά +δαιμόνια +ὑποτάσσεται +ἡμῖν +ἐν +τῷ +ὀνόματι +σου +δέ +εἶπεν +αὐτοῖς +Ἐθεώρουν +τόν +Σατανᾶν +ὡς +ἀστραπήν +ἐκ +τοῦ +οὐρανοῦ +πεσόντα +ἰδού +δέδωκα +ὑμῖν +τήν +ἐξουσίαν +τοῦ +πατεῖν +ἐπάνω +ὄφεων +καί +σκορπίων +καί +ἐπί +πᾶσαν +τήν +δύναμιν +τοῦ +ἐχθροῦ +καί +οὐδέν +ὑμᾶς +οὐ +μή +ἀδικήσει +πλήν +ἐν +τούτῳ +μή +χαίρετε +ὅτι +τά +πνεύματα +ὑμῖν +ὑποτάσσεται +δέ +χαίρετε +ὅτι +τά +ὀνόματα +ὑμῶν +ἐνγέγραπται +ἐν +τοῖς +οὐρανοῖς +Ἐν +αὐτῇ +τῇ +ὥρᾳ +ἠγαλλιάσατο +τῷ +Πνεύματι +τῷ +Ἁγίῳ +καί +εἶπεν +Ἐξομολογοῦμαι +σοι +Πάτερ +Κύριε +τοῦ +οὐρανοῦ +καί +τῆς +γῆς +ὅτι +ἀπέκρυψας +ταῦτα +ἀπό +σοφῶν +καί +συνετῶν +καί +ἀπεκάλυψας +αὐτά +νηπίοις +ναί +ὁ +Πατήρ +ὅτι +οὕτως +εὐδοκία +ἐγένετο +ἔμπροσθεν +σου +πάντα +μοι +παρεδόθη +ὑπό +τοῦ +Πατρός +μου +καί +οὐδείς +γινώσκει +τίς +ἐστιν +ὁ +Υἱός +εἰ +μή +ὁ +Πατήρ +καί +τίς +ἐστιν +ὁ +Πατήρ +εἰ +μή +ὁ +Υἱός +καί +ἐάν +ᾧ +ἀποκαλύψαι +βούληται +ὁ +Υἱός +Καί +στραφείς +πρός +τούς +μαθητάς +κατ’ +ἰδίαν +εἶπεν +Μακάριοι +οἱ +ὀφθαλμοί +οἱ +βλέποντες +ἅ +βλέπετε +γάρ +λέγω +ὑμῖν +ὅτι +πολλοί +προφῆται +καί +βασιλεῖς +ἠθέλησαν +ἰδεῖν +ἅ +ὑμεῖς +βλέπετε +καί +οὐκ +εἶδαν +καί +ἀκοῦσαι +ἅ +ἀκούετε +καί +οὐκ +ἤκουσαν +Καί +ἰδού +νομικός +τις +ἀνέστη +ἐκπειράζων +αὐτόν +λέγων +Διδάσκαλε +τί +ποιήσας +ζωήν +αἰώνιον +κληρονομήσω +δέ +ὁ +εἶπεν +πρός +αὐτόν +Ἐν +τῷ +νόμῳ +τί +γέγραπται +πῶς +ἀναγινώσκεις +δέ +ὁ +ἀποκριθείς +εἶπεν +Ἀγαπήσεις +Κύριον +τόν +Θεόν +σου +ἐξ +ὅλης +τῆς +καρδίας +σου +καί +ἐν +ὅλῃ +τῇ +ψυχῇ +σου +καί +ἐν +ὅλῃ +τῇ +ἰσχύϊ +σου +καί +ἐν +ὅλῃ +τῇ +διανοίᾳ +σου +καί +τόν +πλησίον +σου +ὡς +σεαυτόν +δέ +εἶπεν +αὐτῷ +Ὀρθῶς +ἀπεκρίθης +τοῦτο +ποίει +καί +ζήσῃ +δέ +ὁ +θέλων +δικαιῶσαι +ἑαυτόν +εἶπεν +πρός +τόν +Ἰησοῦν +Καί +τίς +ἐστίν +μου +πλησίον +ὑπολαβών +ὁ +Ἰησοῦς +εἶπεν +Ἄνθρωπος +τις +κατέβαινεν +ἀπό +Ἱερουσαλήμ +εἰς +Ἱερειχώ +καί +λῃσταῖς +περιέπεσεν +οἵ +καί +ἐκδύσαντες +αὐτόν +καί +πληγάς +ἐπιθέντες +ἀπῆλθον +ἀφέντες +ἡμιθανῆ +δέ +κατά +συγκυρίαν +ἱερεύς +τις +κατέβαινεν +ἐν +τῇ +ὁδῷ +ἐκείνῃ +καί +ἰδών +αὐτόν +ἀντιπαρῆλθεν +δέ +ὁμοίως +καί +Λευείτης +κατά +τόν +τόπον +ἐλθών +καί +ἰδών +ἀντιπαρῆλθεν +δέ +Σαμαρείτης +τις +ὁδεύων +ἦλθεν +κατ’ +αὐτόν +καί +ἰδών +ἐσπλαγχνίσθη +καί +προσελθών +κατέδησεν +τά +τραύματα +αὐτοῦ +ἐπιχέων +ἔλαιον +καί +οἶνον +δέ +ἐπιβιβάσας +αὐτόν +ἐπί +τό +ἴδιον +κτῆνος +ἤγαγεν +αὐτόν +εἰς +πανδοχεῖον +καί +ἐπεμελήθη +αὐτοῦ +καί +ἐπί +τήν +αὔριον +ἐκβαλών +δύο +δηνάρια +ἔδωκεν +τῷ +πανδοχεῖ +καί +εἶπεν +Ἐπιμελήθητι +αὐτοῦ +καί +τι +ἄν +ὅ +προσδαπανήσῃς +ἐγώ +ἐν +τῷ +ἐπανέρχεσθαι +με +ἀποδώσω +σοι +δοκεῖ +σοι +τίς +τούτων +τῶν +τριῶν +γεγονέναι +πλησίον +τοῦ +ἐμπεσόντος +εἰς +τούς +λῃστάς +δέ +ὁ +εἶπεν +Ὁ +ποιήσας +τό +ἔλεος +μετ’ +αὐτοῦ +δέ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Πορεύου +καί +σύ +ποίει +ὁμοίως +δέ +Ἐν +τῷ +πορεύεσθαι +αὐτούς +αὐτός +εἰσῆλθεν +εἰς +κώμην +τινά +δέ +γυνή +τις +ὀνόματι +Μάρθα +ὑπεδέξατο +αὐτόν +εἰς +τήν +οἰκίαν +καί +τῇδε +ἦν +ἀδελφή +καλουμένη +Μαριάμ +ἥ +καί +παρακαθεσθεῖσα +πρός +τούς +πόδας +τοῦ +Κυρίου +ἤκουεν +τόν +λόγον +αὐτοῦ +δέ +ἡ +Μάρθα +περιεσπᾶτο +περί +πολλήν +διακονίαν +δέ +ἐπιστᾶσα +εἶπεν +Κύριε +οὐ +μέλει +σοι +ὅτι +ἡ +ἀδελφή +μου +μόνην +με +διακονεῖν +κατέλειπεν +οὖν +εἰπόν +αὐτῇ +ἵνα +μοι +συναντιλάβηται +δέ +ἀποκριθείς +εἶπεν +αὐτῇ +ὁ +Κύριος +Μάρθα +Μάρθα +μεριμνᾷς +καί +θορυβάζῃ +περί +πολλά +δέ +ὀλίγων +χρεία +ἐστιν +ἤ +ἑνός +γάρ +Μαριάμ +τήν +ἀγαθήν +μερίδα +ἐξελέξατο +ἥτις +οὐκ +ἀφαιρεθήσεται +αὐτῆς +Καί +ἐγένετο +ἐν +τῷ +εἶναι +προσευχόμενον +αὐτόν +ἐν +τόπῳ +τινί +ὡς +ἐπαύσατο +εἶπεν +τις +τῶν +μαθητῶν +αὐτοῦ +πρός +αὐτόν +Κύριε +δίδαξον +ἡμᾶς +προσεύχεσθαι +καθώς +καί +Ἰωάνης +ἐδίδαξεν +τούς +μαθητάς +αὐτοῦ +δέ +εἶπεν +αὐτοῖς +Ὅταν +προσεύχησθε +λέγετε +Πάτερ +ἁγιασθήτω +τό +ὄνομα +σου +ἐλθάτω +ἡ +βασιλεία +σου +τόν +ἄρτον +ἡμῶν +τόν +ἐπιούσιον +δίδου +ἡμῖν +τό +καθ’ +ἡμέραν +καί +ἄφες +ἡμῖν +τάς +ἁμαρτίας +ἡμῶν +γάρ +καί +αὐτοί +ἀφίομεν +παντί +ὀφείλοντι +ἡμῖν +καί +μή +εἰσενέγκῃς +ἡμᾶς +εἰς +πειρασμόν +Καί +εἶπεν +πρός +αὐτούς +Τίς +ἐξ +ὑμῶν +ἕξει +φίλον +καί +πορεύσεται +πρός +αὐτόν +μεσονυκτίου +καί +εἴπῃ +αὐτῷ +Φίλε +χρῆσον +μοι +τρεῖς +ἄρτους +ἐπειδή +φίλος +μου +παρεγένετο +ἐξ +ὁδοῦ +πρός +με +καί +οὐκ +ἔχω +ὅ +παραθήσω +αὐτῷ +κἀκεῖνος +ἔσωθεν +ἀποκριθείς +εἴπῃ +Μή +μοι +κόπους +πάρεχε +ἤδη +ἡ +θύρα +κέκλεισται +καί +τά +παιδία +μου +μετ’ +ἐμοῦ +εἰς +τήν +κοίτην +εἰσίν +οὐ +δύναμαι +ἀναστάς +δοῦναι +σοι +λέγω +ὑμῖν +εἰ +καί +οὐ +δώσει +αὐτῷ +ἀναστάς +διά +τό +εἶναι +φίλον +αὐτοῦ +γε +διά +τήν +ἀναιδίαν +αὐτοῦ +ἐγερθείς +δώσει +αὐτῷ +ὅσων +χρῄζει +Κἀγώ +ὑμῖν +λέγω +αἰτεῖτε +καί +δοθήσεται +ὑμῖν +ζητεῖτε +καί +εὑρήσετε +κρούετε +καί +ἀνοιγήσεται +ὑμῖν +γάρ +πᾶς +ὁ +αἰτῶν +λαμβάνει +καί +ὁ +ζητῶν +εὑρίσκει +καί +τῷ +κρούοντι +ἀνοιγήσεται +δέ +τίνα +ἐξ +ὑμῶν +τόν +πατέρα +αἰτήσει +ὁ +υἱός +ἰχθύν +μή +ἀντί +ἰχθύος +ὄφιν +αὐτῷ +ἐπιδώσει +ἤ +καί +αἰτήσει +ᾠόν +ἐπιδώσει +αὐτῷ +σκορπίον +οὖν +εἰ +ὑμεῖς +πονηροί +ὑπάρχοντες +οἴδατε +δόματα +ἀγαθά +διδόναι +τοῖς +τέκνοις +ὑμῶν +πόσῳ +μᾶλλον +ὁ +Πατήρ +ὁ +ἐξ +οὐρανοῦ +δώσει +Πνεῦμα +Ἅγιον +τοῖς +αἰτοῦσιν +αὐτόν +Καί +ἦν +ἐκβάλλων +δαιμόνιον +καί +αὐτό +ἦν +κωφόν +δέ +ἐγένετο +τοῦ +δαιμονίου +ἐξελθόντος +ἐλάλησεν +ὁ +κωφός +καί +ἐθαύμασαν +οἱ +ὄχλοι +δέ +τινές +ἐξ +αὐτῶν +εἶπαν +Ἐν +Βεελζεβούλ +τῷ +ἄρχοντι +τῶν +δαιμονίων +ἐκβάλλει +τά +δαιμόνια +δέ +ἕτεροι +πειράζοντες +σημεῖον +ἐξ +οὐρανοῦ +ἐζήτουν +παρ’ +αὐτοῦ +δέ +αὐτός +εἰδώς +αὐτῶν +τά +διανοήματα +εἶπεν +αὐτοῖς +Πᾶσα +βασιλεία +ἐφ’ +ἑαυτήν +διαμερισθεῖσα +ἐρημοῦται +καί +οἶκος +ἐπί +οἶκον +πίπτει +δέ +εἰ +καί +ὁ +Σατανᾶς +ἐφ’ +ἑαυτόν +διεμερίσθη +πῶς +σταθήσεται +ἡ +βασιλεία +αὐτοῦ +ὅτι +λέγετε +ἐν +Βεελζεβούλ +ἐκβάλλειν +με +τά +δαιμόνια +δέ +εἰ +ἐγώ +ἐν +Βεελζεβούλ +ἐκβάλλω +τά +δαιμόνια +οἱ +υἱοί +ὑμῶν +ἐν +τίνι +ἐκβάλλουσιν +διά +τοῦτο +αὐτοί +ὑμῶν +κριταί +ἔσονται +δέ +εἰ +ἐν +δακτύλῳ +Θεοῦ +ἐγώ +ἐκβάλλω +τά +δαιμόνια +ἄρα +ἔφθασεν +ἐφ’ +ὑμᾶς +ἡ +βασιλεία +τοῦ +Θεοῦ +ὅταν +ὁ +ἰσχυρός +καθωπλισμένος +φυλάσσῃ +τήν +ἑαυτοῦ +αὐλήν +ἐν +εἰρήνῃ +ἐστίν +τά +ὑπάρχοντα +αὐτοῦ +δέ +ἐπάν +ἰσχυρότερος +αὐτοῦ +ἐπελθών +νικήσῃ +αὐτόν +τήν +πανοπλίαν +αὐτοῦ +αἴρει +ἐφ’ +ᾗ +ἐπεποίθει +καί +τά +σκῦλα +αὐτοῦ +διαδίδωσιν +Ὁ +μή +ὤν +μετ’ +ἐμοῦ +κατ’ +ἐμοῦ +ἐστιν +καί +ὁ +μή +συνάγων +μετ’ +ἐμοῦ +σκορπίζει +Ὅταν +τό +ἀκάθαρτον +πνεῦμα +ἐξέλθῃ +ἀπό +τοῦ +ἀνθρώπου +διέρχεται +δι’ +ἀνύδρων +τόπων +ζητοῦν +ἀνάπαυσιν +καί +μή +εὑρίσκον +λέγει +Ὑποστρέψω +εἰς +τόν +οἶκον +μου +ὅθεν +ἐξῆλθον +καί +ἐλθόν +εὑρίσκει +σεσαρωμένον +καί +κεκοσμημένον +τότε +πορεύεται +καί +παραλαμβάνει +ἕτερα +πνεύματα +πονηρότερα +ἑαυτοῦ +ἑπτά +καί +εἰσελθόντα +κατοικεῖ +ἐκεῖ +καί +γίνεται +τά +ἔσχατα +τοῦ +ἀνθρώπου +ἐκείνου +χείρονα +τῶν +πρώτων +δέ +Ἐγένετο +ἐν +τῷ +λέγειν +αὐτόν +ταῦτα +ἐπάρασα +φωνήν +τις +γυνή +ἐκ +τοῦ +ὄχλου +εἶπεν +αὐτῷ +Μακαρία +ἡ +κοιλία +ἡ +βαστάσασα +σε +καί +μαστοί +οὕς +ἐθήλασας +δέ +αὐτός +εἶπεν +Μενοῦν +μακάριοι +οἱ +ἀκούοντες +τόν +λόγον +τοῦ +Θεοῦ +καί +φυλάσσοντες +δέ +Τῶν +ὄχλων +ἐπαθροιζομένων +ἤρξατο +λέγειν +Ἠ +γενεά +αὕτη +γενεά +πονηρά +ἐστιν +σημεῖον +ζητεῖ +καί +σημεῖον +οὐ +δοθήσεται +αὐτῇ +εἰ +μή +τό +σημεῖον +Ἰωνᾶ +γάρ +καθώς +ἐγένετο +Ἰωνᾶς +τοῖς +Νινευείταις +σημεῖον +οὕτως +ἔσται +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +τῇ +γενεᾷ +ταύτῃ +βασίλισσα +νότου +ἐγερθήσεται +ἐν +τῇ +κρίσει +μετά +τῶν +ἀνδρῶν +τῆς +γενεᾶς +ταύτης +καί +κατακρινεῖ +αὐτούς +ὅτι +ἦλθεν +ἐκ +τῶν +περάτων +τῆς +γῆς +ἀκοῦσαι +τήν +σοφίαν +Σολομῶνος +καί +ἰδού +πλεῖον +Σολομῶνος +ὧδε +ἄνδρες +Νινευεῖται +ἀναστήσονται +ἐν +τῇ +κρίσει +μετά +τῆς +γενεᾶς +ταύτης +καί +κατακρινοῦσιν +αὐτήν +ὅτι +μετενόησαν +εἰς +τό +κήρυγμα +Ἰωνᾶ +καί +ἰδού +πλεῖον +Ἰωνᾶ +ὧδε +Οὐδείς +λύχνον +ἅψας +εἰς +κρύπτην +τίθησιν +οὐδέ +ὑπό +τόν +μόδιον +ἀλλ’ +ἐπί +τήν +λυχνίαν +ἵνα +οἱ +εἰσπορευόμενοι +τό +φέγγος +βλέπωσιν +ὁ +λύχνος +τοῦ +σώματος +ἐστιν +ὁ +ὀφθαλμός +σου +ὅταν +ὁ +ὀφθαλμός +σου +ἁπλοῦς +ᾖ +καί +ὅλον +τό +σῶμα +σου +φωτεινόν +ἐστιν +δέ +ἐπάν +πονηρός +ᾖ +καί +τό +σῶμα +σου +σκοτεινόν +οὖν +σκόπει +μή +τό +φῶς +τό +ἐν +σοί +σκότος +ἐστίν +οὖν +εἰ +τό +σῶμα +σου +ὅλον +φωτεινόν +μή +ἔχον +μέρος +τι +σκοτεινόν +ἔσται +φωτεινόν +ὅλον +ὡς +ὅταν +ὁ +λύχνος +τῇ +ἀστραπῇ +φωτίζῃ +σε +δέ +Ἐν +τῷ +λαλῆσαι +ἐρωτᾷ +αὐτόν +Φαρισαῖος +ὅπως +ἀριστήσῃ +παρ’ +αὐτῷ +δέ +εἰσελθών +ἀνέπεσεν +δέ +ὁ +Φαρισαῖος +ἰδών +ἐθαύμασεν +ὅτι +οὐ +πρῶτον +ἐβαπτίσθη +πρό +τοῦ +ἀρίστου +δέ +εἶπεν +ὁ +Κύριος +πρός +αὐτόν +Νῦν +ὑμεῖς +οἱ +Φαρισαῖοι +τό +ἔξωθεν +τοῦ +ποτηρίου +καί +τοῦ +πίνακος +καθαρίζετε +δέ +τό +ἔσωθεν +ὑμῶν +γέμει +ἁρπαγῆς +καί +πονηρίας +ἄφρονες +οὐχ +ὁ +ποιήσας +τό +ἔξωθεν +καί +τό +ἔσωθεν +ἐποίησεν +πλήν +τά +ἐνόντα +δότε +ἐλεημοσύνην +καί +ἰδού +πάντα +καθαρά +ὑμῖν +ἐστιν +ἀλλά +οὐαί +ὑμῖν +τοῖς +Φαρισαίοις +ὅτι +ἀποδεκατοῦτε +τό +ἡδύοσμον +καί +τό +πήγανον +καί +πᾶν +λάχανον +καί +παρέρχεσθε +τήν +κρίσιν +καί +τήν +ἀγάπην +τοῦ +Θεοῦ +δέ +ἔδει +ταῦτα +ποιῆσαι +κἀκεῖνα +μή +παρεῖναι +οὐαί +ὑμῖν +τοῖς +Φαρισαίοις +ὅτι +ἀγαπᾶτε +τήν +πρωτοκαθεδρίαν +ἐν +ταῖς +συναγωγαῖς +καί +τούς +ἀσπασμούς +ἐν +ταῖς +ἀγοραῖς +οὐαί +ὑμῖν +ὅτι +ἐστέ +ὡς +τά +μνημεῖα +τά +ἄδηλα +καί +οἱ +ἄνθρωποι +οἱ +περιπατοῦντες +ἐπάνω +οὐκ +οἴδασιν +δέ +Ἀποκριθείς +τις +τῶν +νομικῶν +λέγει +αὐτῷ +Διδάσκαλε +ταῦτα +λέγων +καί +ἡμᾶς +ὑβρίζεις +δέ +ὁ +εἶπεν +Καί +ὑμῖν +τοῖς +νομικοῖς +οὐαί +ὅτι +φορτίζετε +τούς +ἀνθρώπους +φορτία +δυσβάστακτα +καί +αὐτοί +ἑνί +τῶν +δακτύλων +ὑμῶν +οὐ +προσψαύετε +τοῖς +φορτίοις +οὐαί +ὑμῖν +ὅτι +οἰκοδομεῖτε +τά +μνημεῖα +τῶν +προφητῶν +δέ +οἱ +πατέρες +ὑμῶν +ἀπέκτειναν +αὐτούς +ἄρα +μάρτυρες +ἐστε +καί +συνευδοκεῖτε +τοῖς +ἔργοις +τῶν +πατέρων +ὑμῶν +ὅτι +μέν +αὐτοί +ἀπέκτειναν +αὐτούς +δέ +ὑμεῖς +οἰκοδομεῖτε +διά +τοῦτο +καί +ἡ +σοφία +τοῦ +Θεοῦ +εἶπεν +Ἀποστελῶ +εἰς +αὐτούς +προφήτας +καί +ἀποστόλους +καί +ἐξ +αὐτῶν +ἀποκτενοῦσιν +καί +διώξουσιν +ἵνα +ἐκζητηθῇ +τό +αἷμα +πάντων +τῶν +προφητῶν +τό +ἐκκεχυμένον +ἀπό +καταβολῆς +κόσμου +ἀπό +τῆς +γενεᾶς +ταύτης +ἀπό +αἵματος +Ἄβελ +ἕως +αἵματος +Ζαχαρίου +τοῦ +ἀπολομένου +μεταξύ +τοῦ +θυσιαστηρίου +καί +τοῦ +οἴκου +ναί +λέγω +ὑμῖν +ἐκζητηθήσεται +ἀπό +τῆς +γενεᾶς +ταύτης +οὐαί +ὑμῖν +τοῖς +νομικοῖς +ὅτι +ἤρατε +τήν +κλεῖδα +τῆς +γνώσεως +αὐτοί +οὐκ +εἰσήλθατε +καί +τούς +εἰσερχομένους +ἐκωλύσατε +Κἀκεῖθεν +ἐξελθόντος +αὐτοῦ +ἤρξαντο +οἱ +γραμματεῖς +καί +οἱ +Φαρισαῖοι +δεινῶς +ἐνέχειν +καί +ἀποστοματίζειν +αὐτόν +περί +πλειόνων +ἐνεδρεύοντες +αὐτόν +θηρεῦσαι +τι +ἐκ +τοῦ +στόματος +αὐτοῦ +Ἐν +οἷς +ἐπισυναχθεισῶν +τῶν +μυριάδων +τοῦ +ὄχλου +ὥστε +καταπατεῖν +ἀλλήλους +ἤρξατο +λέγειν +πρός +τούς +μαθητάς +αὐτοῦ +πρῶτον +Προσέχετε +ἑαυτοῖς +ἀπό +τῆς +ζύμης +ἥτις +ἐστίν +ὑπόκρισις +τῶν +Φαρισαίων +δέ +οὐδέν +ἐστίν +συγκεκαλυμμένον +ὅ +οὐκ +ἀποκαλυφθήσεται +καί +κρυπτόν +ὅ +οὐ +γνωσθήσεται +ἀνθ’ +ὧν +ὅσα +ἐν +τῇ +σκοτίᾳ +εἴπατε +ἐν +τῷ +φωτί +ἀκουσθήσεται +καί +ὅ +πρός +τό +οὖς +ἐλαλήσατε +ἐν +τοῖς +ταμείοις +κηρυχθήσεται +ἐπί +τῶν +δωμάτων +δέ +Λέγω +ὑμῖν +τοῖς +φίλοις +μου +μή +φοβηθῆτε +ἀπό +τῶν +ἀποκτεννόντων +τό +σῶμα +καί +μετά +ταῦτα +μή +ἐχόντων +περισσότερον +τι +ποιῆσαι +δέ +ὑποδείξω +ὑμῖν +τίνα +φοβηθῆτε +φοβήθητε +τόν +μετά +τό +ἀποκτεῖναι +ἔχοντα +ἐξουσίαν +ἐμβαλεῖν +εἰς +τήν +γέενναν +ναί +λέγω +ὑμῖν +τοῦτον +φοβήθητε +οὐχί +πέντε +στρουθία +πωλοῦνται +ἀσσαρίων +δύο +καί +ἕν +ἐξ +αὐτῶν +οὐκ +ἔστιν +ἐπιλελησμένον +ἐνώπιον +τοῦ +Θεοῦ +ἀλλά +καί +αἱ +τρίχες +τῆς +κεφαλῆς +ὑμῶν +πᾶσαι +ἠρίθμηνται +μή +φοβεῖσθε +πολλῶν +στρουθίων +διαφέρετε +δέ +λέγω +ὑμῖν +πᾶς +ἄν +ὅς +ὁμολογήσῃ +ἐν +ἐμοί +ἔμπροσθεν +τῶν +ἀνθρώπων +καί +ὁ +Υἱός +τοῦ +ἀνθρώπου +ὁμολογήσει +ἐν +αὐτῷ +ἔμπροσθεν +τῶν +ἀγγέλων +τοῦ +Θεοῦ +δέ +ὁ +ἀρνησάμενος +με +ἐνώπιον +τῶν +ἀνθρώπων +ἀπαρνηθήσεται +ἐνώπιον +τῶν +ἀγγέλων +τοῦ +Θεοῦ +καί +πᾶς +ὅς +ἐρεῖ +λόγον +εἰς +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἀφεθήσεται +αὐτῷ +δέ +τῷ +εἰς +τό +Ἅγιον +Πνεῦμα +βλασφημήσαντι +οὐκ +ἀφεθήσεται +δέ +ὅταν +εἰσφέρωσιν +ὑμᾶς +ἐπί +τάς +συναγωγάς +καί +τάς +ἀρχάς +καί +τάς +ἐξουσίας +μή +μεριμνήσητε +πῶς +ἤ +τί +ἀπολογήσησθε +ἤ +τί +εἴπητε +γάρ +τό +Ἅγιον +Πνεῦμα +διδάξει +ὑμᾶς +ἐν +αὐτῇ +τῇ +ὥρᾳ +ἅ +εἰπεῖν +δεῖ +δέ +Εἶπεν +τις +ἐκ +τοῦ +ὄχλου +αὐτῷ +Διδάσκαλε +εἰπέ +τῷ +ἀδελφῷ +μου +μερίσασθαι +μετ’ +ἐμοῦ +τήν +κληρονομίαν +δέ +ὁ +εἶπεν +αὐτῷ +Ἄνθρωπε +τίς +με +κατέστησεν +κριτήν +ἤ +μεριστήν +ἐφ’ +ὑμᾶς +δέ +εἶπεν +πρός +αὐτούς +Ὁρᾶτε +καί +φυλάσσεσθε +ἀπό +πάσης +πλεονεξίας +ὅτι +οὐκ +ἐν +τῷ +περισσεύειν +τινί +ἡ +ζωή +αὐτοῦ +ἐστιν +ἐκ +τῶν +ὑπαρχόντων +αὐτῷ +δέ +Εἶπεν +παραβολήν +πρός +αὐτούς +λέγων +Ἀνθρώπου +τινός +πλουσίου +ἡ +χώρα +εὐφόρησεν +καί +διελογίζετο +ἐν +ἑαυτῷ +λέγων +Τί +ποιήσω +ὅτι +οὐκ +ἔχω +ποῦ +συνάξω +τούς +καρπούς +μου +καί +εἶπεν +Τοῦτο +ποιήσω +καθελῶ +μου +τάς +ἀποθήκας +καί +μείζονας +οἰκοδομήσω +καί +συνάξω +ἐκεῖ +πάντα +τόν +σῖτον +καί +τά +ἀγαθά +μου +καί +ἐρῶ +τῇ +ψυχῇ +μου +Ψυχή +ἔχεις +πολλά +ἀγαθά +κείμενα +εἰς +ἔτη +πολλά +ἀναπαύου +φάγε +πίε +εὐφραίνου +δέ +εἶπεν +αὐτῷ +ὁ +Θεός +Ἄφρων +ταύτῃ +τῇ +νυκτί +τήν +ψυχήν +σου +ἀπαιτοῦσιν +ἀπό +σοῦ +δέ +ἅ +ἡτοίμασας +τίνι +ἔσται +οὕτως +ὁ +θησαυρίζων +αὑτῷ +καί +μή +εἰς +Θεόν +πλουτῶν +δέ +Εἶπεν +πρός +τούς +μαθητάς +αὐτοῦ +Διά +τοῦτο +λέγω +ὑμῖν +μή +μεριμνᾶτε +τῇ +ψυχῇ +τί +φάγητε +μηδέ +τῷ +σώματι +τί +ἐνδύσησθε +γάρ +ἡ +ψυχή +πλεῖον +ἐστιν +τῆς +τροφῆς +καί +τό +σῶμα +τοῦ +ἐνδύματος +κατανοήσατε +τούς +κόρακας +ὅτι +οὔτε +σπείρουσιν +οὔτε +θερίζουσιν +οἷς +οὐκ +ἔστιν +ταμεῖον +οὐδέ +ἀποθήκη +καί +ὁ +Θεός +τρέφει +αὐτούς +πόσῳ +μᾶλλον +ὑμεῖς +διαφέρετε +τῶν +πετεινῶν +δέ +τίς +ἐξ +ὑμῶν +μεριμνῶν +δύναται +ἐπί +τήν +ἡλικίαν +αὐτοῦ +προσθεῖναι +πῆχυν +οὖν +εἰ +οὐδέ +ἐλάχιστον +δύνασθε +τί +περί +τῶν +λοιπῶν +μεριμνᾶτε +κατανοήσατε +τά +κρίνα +πῶς +οὔτε +νήθει +οὔτε +ὑφαίνει +δέ +λέγω +ὑμῖν +οὐδέ +Σολομών +ἐν +πάσῃ +τῇ +δόξῃ +αὐτοῦ +περιεβάλετο +ὡς +ἕν +τούτων +δέ +εἰ +ἐν +ἀγρῷ +τόν +χόρτον +ὄντα +σήμερον +καί +αὔριον +εἰς +κλίβανον +βαλλόμενον +ὁ +Θεός +οὕτως +ἀμφιέζει +πόσῳ +μᾶλλον +ὑμᾶς +ὀλιγόπιστοι +καί +ὑμεῖς +μή +ζητεῖτε +τί +φάγητε +καί +τί +πίητε +καί +μή +μετεωρίζεσθε +γάρ +ταῦτα +πάντα +τά +ἔθνη +τοῦ +κόσμου +ἐπιζητοῦσιν +δέ +ὑμῶν +ὁ +Πατήρ +οἶδεν +ὅτι +χρῄζετε +τούτων +πλήν +ζητεῖτε +τήν +βασιλείαν +αὐτοῦ +καί +ταῦτα +προστεθήσεται +ὑμῖν +Μή +φοβοῦ +τό +μικρόν +ποίμνιον +ὅτι +εὐδόκησεν +ὁ +Πατήρ +ὑμῶν +δοῦναι +ὑμῖν +τήν +βασιλείαν +Πωλήσατε +τά +ὑπάρχοντα +ὑμῶν +καί +δότε +ἐλεημοσύνην +ποιήσατε +ἑαυτοῖς +βαλλάντια +μή +παλαιούμενα +θησαυρόν +ἀνέκλειπτον +ἐν +τοῖς +οὐρανοῖς +ὅπου +κλέπτης +οὐκ +ἐγγίζει +οὐδέ +σής +διαφθείρει +γάρ +ὅπου +ἐστιν +ὁ +θησαυρός +ὑμῶν +ἐκεῖ +καί +ἡ +καρδία +ὑμῶν +ἔσται +Ἔστωσαν +ὑμῶν +αἱ +ὀσφύες +περιεζωσμέναι +καί +οἱ +λύχνοι +καιόμενοι +καί +ὑμεῖς +ὅμοιοι +ἀνθρώποις +προσδεχομένοις +τόν +κύριον +ἑαυτῶν +πότε +ἀναλύσῃ +ἐκ +τῶν +γάμων +ἵνα +ἐλθόντος +καί +κρούσαντος +εὐθέως +ἀνοίξωσιν +αὐτῷ +μακάριοι +οἱ +δοῦλοι +ἐκεῖνοι +οὕς +γρηγοροῦντας +ἐλθών +ὁ +κύριος +εὑρήσει +ἀμήν +λέγω +ὑμῖν +ὅτι +περιζώσεται +καί +ἀνακλινεῖ +αὐτούς +καί +παρελθών +διακονήσει +αὐτοῖς +κἄν +ἐν +τῇ +δευτέρᾳ +κἄν +ἐν +τῇ +τρίτῃ +φυλακῇ +ἔλθῃ +καί +εὕρῃ +οὕτως +μακάριοι +εἰσιν +ἐκεῖνοι +δέ +τοῦτο +γινώσκετε +ὅτι +εἰ +ᾔδει +ὁ +οἰκοδεσπότης +ποίᾳ +ὥρᾳ +ὁ +κλέπτης +ἔρχεται +ἄν +οὐκ +ἀφῆκεν +διορυχθῆναι +τόν +οἶκον +αὐτοῦ +καί +ὑμεῖς +γίνεσθε +ἕτοιμοι +ὅτι +ᾗ +ὥρᾳ +οὐ +δοκεῖτε +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἔρχεται +δέ +Εἶπεν +ὁ +Πέτρος +Κύριε +πρός +ἡμᾶς +τήν +παραβολήν +ταύτην +λέγεις +ἤ +καί +πρός +πάντας +καί +εἶπεν +ὁ +Κύριος +ἄρα +Τίς +ἐστίν +ὁ +πιστός +οἰκονόμος +ὁ +φρόνιμος +ὅν +καταστήσει +ὁ +κύριος +ἐπί +τῆς +θεραπείας +αὐτοῦ +τοῦ +διδόναι +ἐν +καιρῷ +τό +σιτομέτριον +μακάριος +ὁ +δοῦλος +ἐκεῖνος +ὅν +ποιοῦντα +οὕτως +ἐλθών +ὁ +κύριος +αὐτοῦ +εὑρήσει +ἀληθῶς +λέγω +ὑμῖν +ὅτι +ἐπί +πᾶσιν +τοῖς +ὑπάρχουσιν +αὐτοῦ +καταστήσει +αὐτόν +δέ +ἐάν +εἴπῃ +ὁ +δοῦλος +ἐκεῖνος +ἐν +τῇ +καρδίᾳ +αὐτοῦ +Χρονίζει +ὁ +κύριος +μου +ἔρχεσθαι +καί +ἄρξηται +τύπτειν +τούς +παῖδας +καί +τάς +παιδίσκας +τε +ἐσθίειν +καί +πίνειν +καί +μεθύσκεσθαι +ἥξει +ὁ +κύριος +τοῦ +δούλου +ἐκείνου +ἐν +ἡμέρᾳ +ᾗ +οὐ +προσδοκᾷ +καί +ἐν +ὥρᾳ +ᾗ +οὐ +γινώσκει +καί +διχοτομήσει +αὐτόν +καί +τό +μέρος +αὐτοῦ +μετά +τῶν +ἀπίστων +θήσει +δέ +ἐκεῖνος +ὁ +δοῦλος +ὁ +γνούς +τό +θέλημα +τοῦ +κυρίου +αὐτοῦ +καί +μή +ἑτοιμάσας +ἤ +ποιήσας +πρός +τό +θέλημα +αὐτοῦ +δαρήσεται +πολλάς +δέ +ὁ +μή +γνούς +δέ +ποιήσας +ἄξια +πληγῶν +δαρήσεται +ὀλίγας +δέ +παντί +ᾧ +ἐδόθη +πολύ +πολύ +ζητηθήσεται +παρ’ +αὐτοῦ +καί +ᾧ +παρέθεντο +πολύ +περισσότερον +αἰτήσουσιν +αὐτόν +ἦλθον +Πῦρ +βαλεῖν +ἐπί +τήν +γῆν +καί +τί +θέλω +εἰ +ἤδη +ἀνήφθη +δέ +βάπτισμα +ἔχω +βαπτισθῆναι +καί +πῶς +συνέχομαι +ἕως +ὅτου +τελεσθῇ +δοκεῖτε +ὅτι +παρεγενόμην +εἰρήνην +δοῦναι +ἐν +τῇ +γῇ +λέγω +ὑμῖν +οὐχί +ἀλλ’ +ἤ +διαμερισμόν +γάρ +ἔσονται +διαμεμερισμένοι +ἀπό +τοῦ +νῦν +πέντε +ἐν +ἑνί +οἴκῳ +τρεῖς +ἐπί +δυσίν +καί +δύο +ἐπί +τρισίν +διαμερισθήσονται +πατήρ +ἐπί +υἱῷ +καί +υἱός +ἐπί +πατρί +μήτηρ +ἐπί +θυγατέρα +καί +θυγάτηρ +ἐπί +τήν +μητέρα +πενθερά +ἐπί +τήν +νύμφην +αὐτῆς +καί +νύμφη +ἐπί +τήν +πενθεράν +δέ +Ἔλεγεν +καί +τοῖς +ὄχλοις +Ὅταν +ἴδητε +νεφέλην +ἀνατέλλουσαν +ἐπί +δυσμῶν +εὐθέως +λέγετε +ὅτι +Ὄμβρος +ἔρχεται +καί +γίνεται +οὕτως +καί +ὅταν +νότον +πνέοντα +λέγετε +ὅτι +Καύσων +ἔσται +καί +γίνεται +ὑποκριταί +τό +πρόσωπον +τῆς +γῆς +καί +τοῦ +οὐρανοῦ +δοκιμάζειν +οἴδατε +δέ +τόν +καιρόν +τοῦτον +πῶς +οὐ +δοκιμάζετε +δέ +Τί +καί +ἀφ’ +ἑαυτῶν +οὐ +κρίνετε +τό +δίκαιον +γάρ +ὡς +ὑπάγεις +μετά +τοῦ +ἀντιδίκου +σου +ἐπ’ +ἄρχοντα +ἐν +τῇ +ὁδῷ +δός +ἐργασίαν +ἀπηλλάχθαι +ἀπ’ +αὐτοῦ +μή +ποτε +κατασύρῃ +σε +πρός +τόν +κριτήν +καί +ὁ +κριτής +σε +παραδώσει +τῷ +πράκτορι +καί +ὁ +πράκτωρ +σε +βαλεῖ +εἰς +φυλακήν +λέγω +σοι +οὐ +μή +ἐξέλθῃς +ἐκεῖθεν +ἕως +καί +τό +ἔσχατον +λεπτόν +ἀποδῷς +δέ +Παρῆσαν +τινες +ἐν +αὐτῷ +τῷ +καιρῷ +ἀπαγγέλλοντες +αὐτῷ +περί +τῶν +Γαλιλαίων +ὧν +τό +αἷμα +Πειλᾶτος +ἔμιξεν +μετά +τῶν +θυσιῶν +αὐτῶν +καί +ἀποκριθείς +εἶπεν +αὐτοῖς +Δοκεῖτε +ὅτι +οἱ +Γαλιλαῖοι +οὗτοι +ἁμαρτωλοί +παρά +πάντας +τούς +Γαλιλαίους +ἐγένοντο +ὅτι +ταῦτα +πεπόνθασιν +οὐχί +λέγω +ὑμῖν +ἀλλ’ +ἐάν +μή +μετανοῆτε +πάντες +ὁμοίως +ἀπολεῖσθε +ἤ +ἐκεῖνοι +οἱ +δέκα +ὀκτώ +ἐφ’ +οὕς +ἔπεσεν +ὁ +πύργος +ἐν +τῷ +Σιλωάμ +καί +ἀπέκτεινεν +αὐτούς +δοκεῖτε +ὅτι +αὐτοί +ὀφειλέται +ἐγένοντο +παρά +πάντας +τούς +ἀνθρώπους +τούς +κατοικοῦντας +Ἱερουσαλήμ +οὐχί +λέγω +ὑμῖν +ἀλλ’ +ἐάν +μή +μετανοήσητε +πάντες +ὡσαύτως +ἀπολεῖσθε +δέ +Ἔλεγεν +ταύτην +τήν +παραβολήν +συκῆν +εἶχεν +τις +πεφυτευμένην +ἐν +τῷ +ἀμπελῶνι +αὐτοῦ +καί +ἦλθεν +ζητῶν +καρπόν +ἐν +αὐτῇ +καί +οὐχ +εὗρεν +δέ +εἶπεν +πρός +τόν +ἀμπελουργόν +Ἰδού +τρία +ἔτη +ἀφ’ +οὗ +ἔρχομαι +ζητῶν +καρπόν +ἐν +τῇ +συκῇ +ταύτῃ +καί +οὐχ +εὑρίσκω +ἔκκοψον +αὐτήν +ἵνα +τί +καί +τήν +γῆν +καταργεῖ +δέ +ὁ +ἀποκριθείς +λέγει +αὐτῷ +Κύριε +ἄφες +αὐτήν +καί +τοῦτο +τό +ἔτος +ἕως +ὅτου +σκάψω +περί +αὐτήν +καί +βάλω +κόπρια +μέν +κἄν +ποιήσῃ +καρπόν +εἰς +τό +μέλλον +δέ +εἰ +μήγε +ἐκκόψεις +αὐτήν +δέ +Ἦν +διδάσκων +ἐν +μιᾷ +τῶν +συναγωγῶν +ἐν +τοῖς +σάββασιν +καί +ἰδού +γυνή +πνεῦμα +ἀσθενείας +ἔχουσα +ἔτη +δέκα +ὀκτώ +καί +ἦν +συνκύπτουσα +καί +μή +δυναμένη +ἀνακύψαι +εἰς +τό +παντελές +δέ +ἰδών +αὐτήν +ὁ +Ἰησοῦς +προσεφώνησεν +καί +εἶπεν +αὐτῇ +Γύναι +ἀπολέλυσαι +τῆς +ἀσθενείας +σου +καί +ἐπέθηκεν +αὐτῇ +τάς +χεῖρας +καί +παραχρῆμα +ἀνορθώθη +καί +ἐδόξαζεν +τόν +Θεόν +δέ +ἀποκριθείς +ὁ +ἀρχισυνάγωγος +ἀγανακτῶν +ὅτι +τῷ +σαββάτῳ +ἐθεράπευσεν +ὁ +Ἰησοῦς +ἔλεγεν +τῷ +ὄχλῳ +ὅτι +Ἕξ +ἡμέραι +εἰσίν +ἐν +αἷς +δεῖ +ἐργάζεσθαι +οὖν +ἐν +αὐταῖς +ἐρχόμενοι +θεραπεύεσθε +καί +μή +τῇ +ἡμέρᾳ +τοῦ +σαββάτου +δέ +ἀπεκρίθη +αὐτῷ +ὁ +Κύριος +καί +εἶπεν +Ὑποκριταί +οὐ +ἕκαστος +ὑμῶν +τῷ +σαββάτῳ +λύει +τόν +βοῦν +αὐτοῦ +ἤ +τόν +ὄνον +ἀπό +τῆς +φάτνης +καί +ἀπαγαγών +ποτίζει +δέ +ἰδού +ταύτην +θυγατέρα +Ἀβραάμ +οὖσαν +ἥν +ἔδησεν +ὁ +Σατανᾶς +δέκα +καί +ὀκτώ +ἔτη +λυθῆναι +ἀπό +τοῦ +δεσμοῦ +τούτου +τῇ +ἡμέρᾳ +τοῦ +σαββάτου +οὐκ +ἔδει +καί +ταῦτα +λέγοντος +αὐτοῦ +κατῃσχύνοντο +πάντες +οἱ +ἀντικείμενοι +αὐτῷ +καί +πᾶς +ὁ +ὄχλος +ἔχαιρεν +ἐπί +πᾶσιν +τοῖς +ἐνδόξοις +τοῖς +γινομένοις +ὑπ’ +αὐτοῦ +οὖν +Ἔλεγεν +Τίνι +ὁμοία +ἐστίν +ἡ +βασιλεία +τοῦ +Θεοῦ +καί +τίνι +ὁμοιώσω +αὐτήν +ὁμοία +ἐστίν +κόκκῳ +σινάπεως +ὅν +λαβών +ἄνθρωπος +ἔβαλεν +εἰς +κῆπον +ἑαυτοῦ +καί +ηὔξησεν +καί +ἐγένετο +εἰς +δένδρον +καί +τά +πετεινά +τοῦ +οὐρανοῦ +κατεσκήνωσεν +ἐν +τοῖς +κλάδοις +αὐτοῦ +Καί +πάλιν +εἶπεν +Τίνι +ὁμοιώσω +τήν +βασιλείαν +τοῦ +Θεοῦ +ὁμοία +ἐστίν +ζύμῃ +ἥν +λαβοῦσα +γυνή +ἔκρυψεν +εἰς +ἀλεύρου +σάτα +τρία +ἕως +οὗ +ἐζυμώθη +ὅλον +Καί +διεπορεύετο +κατά +πόλεις +καί +κώμας +διδάσκων +καί +πορείαν +ποιούμενος +εἰς +Ἱεροσόλυμα +δέ +Εἶπεν +τις +αὐτῷ +Κύριε +εἰ +ὀλίγοι +οἱ +σῳζόμενοι +δέ +ὁ +εἶπεν +πρός +αὐτούς +Ἀγωνίζεσθε +εἰσελθεῖν +διά +τῆς +στενῆς +θύρας +ὅτι +λέγω +ὑμῖν +πολλοί +ζητήσουσιν +εἰσελθεῖν +καί +οὐκ +ἰσχύσουσιν +ἀφ’ +ἄν +οὗ +ἐγερθῇ +ὁ +οἰκοδεσπότης +καί +ἀποκλείσῃ +τήν +θύραν +καί +ἄρξησθε +ἔξω +ἑστάναι +καί +κρούειν +τήν +θύραν +λέγοντες +Κύριε +ἄνοιξον +ἡμῖν +καί +ἀποκριθείς +ἐρεῖ +ὑμῖν +Οὐκ +οἶδα +ὑμᾶς +πόθεν +ἐστέ +τότε +ἄρξεσθε +λέγειν +Ἐφάγομεν +ἐνώπιον +σου +καί +ἐπίομεν +καί +ἐν +ταῖς +πλατείαις +ἡμῶν +ἐδίδαξας +καί +ἐρεῖ +λέγων +ὑμῖν +Οὐκ +οἶδα +πόθεν +ἐστέ +ἀπόστητε +ἀπ’ +ἐμοῦ +πάντες +ἐργάται +ἀδικίας +ἐκεῖ +ἔσται +ὁ +κλαυθμός +καί +ὁ +βρυγμός +τῶν +ὀδόντων +ὅταν +ὄψησθε +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +καί +πάντας +τούς +προφήτας +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +δέ +ὑμᾶς +ἐκβαλλομένους +ἔξω +καί +ἥξουσιν +ἀπό +ἀνατολῶν +καί +δυσμῶν +καί +ἀπό +βορρᾶ +καί +νότου +καί +ἀνακλιθήσονται +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +καί +ἰδού +εἰσίν +ἔσχατοι +οἵ +ἔσονται +πρῶτοι +καί +εἰσίν +πρῶτοι +οἵ +ἔσονται +ἔσχατοι +Ἐν +αὐτῇ +τῇ +ὥρᾳ +προσῆλθαν +τινες +Φαρισαῖοι +λέγοντες +αὐτῷ +Ἔξελθε +καί +πορεύου +ἐντεῦθεν +ὅτι +Ἠρῴδης +θέλει +σε +ἀποκτεῖναι +καί +εἶπεν +αὐτοῖς +Πορευθέντες +εἴπατε +τῇ +ἀλώπεκι +ταύτῃ +Ἰδού +ἐκβάλλω +δαιμόνια +καί +ἰάσεις +ἀποτελῶ +σήμερον +καί +αὔριον +καί +τῇ +τρίτῃ +τελειοῦμαι +πλήν +δεῖ +με +σήμερον +καί +αὔριον +καί +τῇ +ἐχομένῃ +πορεύεσθαι +ὅτι +οὐκ +ἐνδέχεται +προφήτην +ἀπολέσθαι +ἔξω +Ἱερουσαλήμ +Ἱερουσαλήμ +Ἱερουσαλήμ +ἡ +ἀποκτείνουσα +τούς +προφήτας +καί +λιθοβολοῦσα +τούς +ἀπεσταλμένους +πρός +αὐτήν +ποσάκις +ἠθέλησα +ἐπισυνάξαι +τά +τέκνα +σου +ὅν +τρόπον +ὄρνις +τήν +ἑαυτῆς +νοσσιάν +ὑπό +τάς +πτέρυγας +καί +οὐκ +ἠθελήσατε +ἰδού +ἀφίεται +ὑμῖν +ὁ +οἶκος +ὑμῶν +δέ +λέγω +ὑμῖν +οὐ +μή +ἴδητε +με +ἕως +ἥξει +ὅτε +εἴπητε +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου +Καί +ἐγένετο +ἐν +τῷ +ἐλθεῖν +αὐτόν +εἰς +οἶκον +τινος +τῶν +ἀρχόντων +τῶν +Φαρισαίων +σαββάτῳ +φαγεῖν +ἄρτον +καί +αὐτοί +ἦσαν +παρατηρούμενοι +αὐτόν +καί +ἰδού +ἄνθρωπος +τις +ὑδρωπικός +ἦν +ἔμπροσθεν +αὐτοῦ +καί +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +πρός +τούς +νομικούς +καί +Φαρισαίους +λέγων +Ἔξεστιν +τῷ +σαββάτῳ +θεραπεῦσαι +ἤ +οὔ +δέ +οἱ +ἡσύχασαν +καί +ἐπιλαβόμενος +ἰάσατο +αὐτόν +καί +ἀπέλυσεν +καί +πρός +αὐτούς +εἶπεν +Τίνος +ὑμῶν +υἱός +ἤ +βοῦς +εἰς +φρέαρ +πεσεῖται +καί +οὐκ +εὐθέως +ἀνασπάσει +αὐτόν +ἐν +ἡμέρᾳ +τοῦ +σαββάτου +καί +οὐκ +ἴσχυσαν +ἀνταποκριθῆναι +πρός +ταῦτα +δέ +Ἔλεγεν +πρός +τούς +κεκλημένους +παραβολήν +ἐπέχων +πῶς +τάς +πρωτοκλισίας +ἐξελέγοντο +λέγων +πρός +αὐτούς +Ὅταν +κληθῇς +ὑπό +τινος +εἰς +γάμους +μή +κατακλιθῇς +εἰς +τήν +πρωτοκλισίαν +μή +ποτε +ἐντιμότερος +σου +ᾖ +κεκλημένος +ὑπ’ +αὐτοῦ +καί +ἐλθών +ὁ +σέ +καί +αὐτόν +καλέσας +ἐρεῖ +σοι +Δός +τούτῳ +τόπον +καί +τότε +ἄρξῃ +μετά +αἰσχύνης +τόν +ἔσχατον +τόπον +κατέχειν +ἀλλ’ +ὅταν +κληθῇς +πορευθείς +ἀνάπεσε +εἰς +τόν +ἔσχατον +τόπον +ἵνα +ὅταν +ἔλθῃ +ὁ +κεκληκώς +σε +ἐρεῖ +σοι +Φίλε +προσανάβηθι +ἀνώτερον +τότε +ἔσται +σοι +δόξα +ἐνώπιον +πάντων +τῶν +συνανακειμένων +σοι +ὅτι +πᾶς +ὁ +ὑψῶν +ἑαυτόν +ταπεινωθήσεται +καί +ὁ +ταπεινῶν +ἑαυτόν +ὑψωθήσεται +δέ +Ἔλεγεν +καί +τῷ +κεκληκότι +αὐτόν +Ὅταν +ποιῇς +ἄριστον +ἤ +δεῖπνον +μή +φώνει +τούς +φίλους +σου +μηδέ +τούς +ἀδελφούς +σου +μηδέ +τούς +συγγενεῖς +σου +μηδέ +γείτονας +πλουσίους +μή +ποτε +καί +αὐτοί +ἀντικαλέσωσιν +σε +καί +γένηται +ἀνταπόδομα +σοι +ἀλλ’ +ὅταν +δοχήν +ποιῇς +κάλει +πτωχούς +ἀναπήρους +χωλούς +τυφλούς +καί +μακάριος +ἔσῃ +ὅτι +οὐκ +ἔχουσιν +ἀνταποδοῦναι +σοι +γάρ +ἀνταποδοθήσεται +σοι +ἐν +τῇ +ἀναστάσει +τῶν +δικαίων +δέ +τις +τῶν +συνανακειμένων +Ἀκούσας +ταῦτα +εἶπεν +αὐτῷ +Μακάριος +ὅστις +φάγεται +ἄρτον +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +δέ +ὁ +εἶπεν +αὐτῷ +Ἄνθρωπος +τις +ἐποίει +δεῖπνον +μέγα +καί +ἐκάλεσεν +πολλούς +καί +ἀπέστειλεν +τόν +δοῦλον +αὐτοῦ +τῇ +ὥρᾳ +τοῦ +δείπνου +εἰπεῖν +τοῖς +κεκλημένοις +Ἔρχεσθε +ὅτι +ἤδη +ἕτοιμα +ἐστιν +καί +ἤρξαντο +ἀπό +μιᾶς +πάντες +παραιτεῖσθαι +ὁ +πρῶτος +εἶπεν +αὐτῷ +Ἀγρόν +ἠγόρασα +καί +ἔχω +ἀνάγκην +ἐξελθών +ἰδεῖν +αὐτόν +ἐρωτῶ +σε +ἔχε +με +παρῃτημένον +καί +ἕτερος +εἶπεν +Ζεύγη +βοῶν +πέντε +ἠγόρασα +καί +πορεύομαι +δοκιμάσαι +αὐτά +ἐρωτῶ +σε +ἔχε +με +παρῃτημένον +καί +ἕτερος +εἶπεν +Γυναῖκα +ἔγημα +καί +διά +τοῦτο +οὐ +δύναμαι +ἐλθεῖν +καί +παραγενόμενος +ὁ +δοῦλος +ἀπήγγειλεν +τῷ +κυρίῳ +αὐτοῦ +ταῦτα +τότε +ὀργισθείς +ὁ +οἰκοδεσπότης +εἶπεν +τῷ +δούλῳ +αὐτοῦ +Ἔξελθε +ταχέως +εἰς +τάς +πλατείας +καί +ῥύμας +τῆς +πόλεως +καί +τούς +πτωχούς +καί +ἀναπήρους +καί +τυφλούς +καί +χωλούς +εἰσάγαγε +ὧδε +καί +εἶπεν +ὁ +δοῦλος +Κύριε +γέγονεν +ὅ +ἐπέταξας +καί +ἔτι +τόπος +ἐστίν +καί +εἶπεν +ὁ +κύριος +πρός +τόν +δοῦλον +Ἔξελθε +εἰς +τάς +ὁδούς +καί +φραγμούς +καί +ἀνάγκασον +εἰσελθεῖν +ἵνα +γεμισθῇ +μου +ὁ +οἶκος +γάρ +λέγω +ὑμῖν +ὅτι +οὐδείς +τῶν +ἀνδρῶν +ἐκείνων +τῶν +κεκλημένων +γεύσεται +μου +τοῦ +δείπνου +δέ +Συνεπορεύοντο +αὐτῷ +ὄχλοι +πολλοί +καί +στραφείς +εἶπεν +πρός +αὐτούς +Εἴ +τις +ἔρχεται +πρός +με +καί +οὐ +μισεῖ +τόν +πατέρα +αὐτοῦ +καί +τήν +μητέρα +καί +τήν +γυναῖκα +καί +τά +τέκνα +καί +τούς +ἀδελφούς +καί +τάς +ἀδελφάς +τε +ἔτι +καί +τήν +ψυχήν +ἑαυτοῦ +οὐ +δύναται +εἶναι +μου +μαθητής +ὅστις +οὐ +βαστάζει +τόν +σταυρόν +ἑαυτοῦ +καί +ἔρχεται +ὀπίσω +μου +οὐ +δύναται +εἶναι +μου +μαθητής +γάρ +οὐχί +Τίς +ἐξ +ὑμῶν +θέλων +πύργον +οἰκοδομῆσαι +πρῶτον +καθίσας +ψηφίζει +τήν +δαπάνην +εἰ +ἔχει +εἰς +ἀπαρτισμόν +ἵνα +μή +ποτε +θέντος +αὐτοῦ +θεμέλιον +καί +μή +ἰσχύοντος +ἐκτελέσαι +πάντες +οἱ +θεωροῦντες +ἄρξωνται +αὐτῷ +ἐμπαίζειν +λέγοντες +ὅτι +Οὗτος +ὁ +ἄνθρωπος +ἤρξατο +οἰκοδομεῖν +καί +οὐκ +ἴσχυσεν +ἐκτελέσαι +Ἤ +οὐχί +τίς +βασιλεύς +πορευόμενος +ἑτέρῳ +βασιλεῖ +συμβαλεῖν +εἰς +πόλεμον +καθίσας +πρῶτον +βουλεύσεται +εἰ +δυνατός +ἐστιν +ἐν +δέκα +χιλιάσιν +ὑπαντῆσαι +τῷ +μετά +εἴκοσι +χιλιάδων +ἐρχομένῳ +ἐπ’ +αὐτόν +δέ +εἰ +μήγε +ἔτι +αὐτοῦ +πόρρω +ὄντος +πρεσβείαν +ἀποστείλας +ἐρωτᾷ +τά +πρός +εἰρήνην +οὖν +οὕτως +πᾶς +ἐξ +ὑμῶν +ὅς +οὐκ +ἀποτάσσεται +πᾶσιν +τοῖς +ἑαυτοῦ +ὑπάρχουσιν +οὐ +δύναται +εἶναι +μου +μαθητής +οὖν +Καλόν +τό +ἅλας +δέ +ἐάν +καί +τό +ἅλας +μωρανθῇ +ἐν +τίνι +ἀρτυθήσεται +οὔτε +εἰς +γῆν +οὔτε +εἰς +κοπρίαν +εὔθετον +ἐστιν +ἔξω +βάλλουσιν +αὐτό +ὁ +ἔχων +ὦτα +ἀκούειν +ἀκουέτω +δέ +Ἦσαν +ἐγγίζοντες +αὐτῷ +πάντες +οἱ +τελῶναι +καί +οἱ +ἁμαρτωλοί +ἀκούειν +αὐτοῦ +καί +διεγόγγυζον +τε +οἵ +Φαρισαῖοι +καί +οἱ +γραμματεῖς +λέγοντες +ὅτι +Οὗτος +ἁμαρτωλούς +προσδέχεται +καί +συνεσθίει +αὐτοῖς +δέ +εἶπεν +πρός +αὐτούς +τήν +παραβολήν +ταύτην +λέγων +Τίς +ἄνθρωπος +ἐξ +ὑμῶν +ἔχων +ἑκατόν +πρόβατα +καί +ἀπολέσας +ἐξ +αὐτῶν +ἕν +οὐ +καταλείπει +τά +ἐνενήκοντα +ἐννέα +ἐν +τῇ +ἐρήμῳ +καί +πορεύεται +ἐπί +τό +ἀπολωλός +ἕως +εὕρῃ +αὐτό +καί +εὑρών +ἐπιτίθησιν +ἐπί +τούς +ὤμους +αὐτοῦ +χαίρων +καί +ἐλθών +εἰς +τόν +οἶκον +συνκαλεῖ +τούς +φίλους +καί +τούς +γείτονας +λέγων +αὐτοῖς +Συνχάρητε +μοι +ὅτι +εὗρον +τό +πρόβατον +μου +τό +ἀπολωλός +λέγω +ὑμῖν +ὅτι +οὕτως +χαρά +ἐν +τῷ +οὐρανῷ +ἔσται +ἐπί +ἑνί +ἁμαρτωλῷ +μετανοοῦντι +ἤ +ἐπί +ἐνενήκοντα +ἐννέα +δικαίοις +οἵτινες +οὐ +χρείαν +μετανοίας +ἔχουσιν +Ἤ +τίς +γυνή +δραχμάς +δέκα +ἔχουσα +ἐάν +ἀπολέσῃ +δραχμήν +μίαν +οὐχί +ἅπτει +λύχνον +καί +σαροῖ +τήν +οἰκίαν +καί +ζητεῖ +ἐπιμελῶς +ἕως +οὗ +εὕρῃ +καί +εὑροῦσα +συνκαλεῖ +τάς +φίλας +καί +γείτονας +λέγουσα +Συνχάρητε +μοι +ὅτι +εὗρον +τήν +δραχμήν +ἥν +ἀπώλεσα +οὕτως +λέγω +ὑμῖν +γίνεται +χαρά +ἐνώπιον +τῶν +ἀγγέλων +τοῦ +Θεοῦ +ἐπί +ἑνί +ἁμαρτωλῷ +μετανοοῦντι +δέ +Εἶπεν +Ἄνθρωπος +τις +εἶχεν +δύο +υἱούς +καί +εἶπεν +ὁ +νεώτερος +αὐτῶν +τῷ +πατρί +Πάτερ +δός +μοι +τό +ἐπιβάλλον +μέρος +τῆς +οὐσίας +δέ +ὁ +διεῖλεν +αὐτοῖς +τόν +βίον +καί +μετ’ +οὐ +πολλάς +ἡμέρας +συναγαγών +πάντα +ὁ +νεώτερος +υἱός +ἀπεδήμησεν +εἰς +χώραν +μακράν +καί +ἐκεῖ +διεσκόρπισεν +τήν +οὐσίαν +αὐτοῦ +ζῶν +ἀσώτως +δέ +δαπανήσαντος +αὐτοῦ +πάντα +ἐγένετο +λιμός +ἰσχυρά +κατά +τήν +χώραν +ἐκείνην +καί +αὐτός +ἤρξατο +ὑστερεῖσθαι +καί +πορευθείς +ἐκολλήθη +ἑνί +τῶν +πολιτῶν +τῆς +χώρας +ἐκείνης +καί +ἔπεμψεν +αὐτόν +εἰς +τούς +ἀγρούς +αὐτοῦ +βόσκειν +χοίρους +καί +ἐπεθύμει +γεμίσαι +τήν +κοιλίαν +αὐτοῦ +ἐκ +τῶν +κερατίων +ὧν +ἤσθιον +οἱ +χοῖροι +καί +οὐδείς +ἐδίδου +αὐτῷ +δέ +εἰς +ἑαυτόν +ἐλθών +ἔφη +Πόσοι +μίσθιοι +τοῦ +πατρός +μου +περισσεύονται +ἄρτων +δέ +ἐγώ +λιμῷ +ὧδε +ἀπόλλυμαι +ἀναστάς +πορεύσομαι +πρός +τόν +πατέρα +μου +καί +ἐρῶ +αὐτῷ +Πάτερ +ἥμαρτον +εἰς +τόν +οὐρανόν +καί +ἐνώπιον +σου +οὐκέτι +εἰμί +ἄξιος +κληθῆναι +υἱός +σου +ποίησον +με +ὡς +ἕνα +τῶν +μισθίων +σου +καί +ἀναστάς +ἦλθεν +πρός +τόν +πατέρα +ἑαυτοῦ +δέ +ἔτι +αὐτοῦ +μακράν +ἀπέχοντος +εἶδεν +αὐτόν +ὁ +πατήρ +αὐτοῦ +καί +ἐσπλαγχνίσθη +καί +δραμών +ἐπέπεσεν +ἐπί +τόν +τράχηλον +αὐτοῦ +καί +κατεφίλησεν +αὐτόν +δέ +εἶπεν +ὁ +υἱός +αὐτῷ +Πάτερ +ἥμαρτον +εἰς +τόν +οὐρανόν +καί +ἐνώπιον +σου +οὐκέτι +εἰμί +ἄξιος +κληθῆναι +υἱός +σου +δέ +εἶπεν +ὁ +πατήρ +πρός +τούς +δούλους +αὐτοῦ +Ταχύ +ἐξενέγκατε +στολήν +τήν +πρώτην +καί +ἐνδύσατε +αὐτόν +καί +δότε +δακτύλιον +εἰς +τήν +χεῖρα +αὐτοῦ +καί +ὑποδήματα +εἰς +τούς +πόδας +καί +φέρετε +τόν +μόσχον +τόν +σιτευτόν +θύσατε +καί +φαγόντες +εὐφρανθῶμεν +ὅτι +οὗτος +ὁ +υἱός +μου +νεκρός +ἦν +καί +ἀνέζησεν +ἦν +ἀπολωλώς +καί +εὑρέθη +καί +ἤρξαντο +εὐφραίνεσθαι +δέ +ἦν +ὁ +υἱός +αὐτοῦ +ὁ +πρεσβύτερος +ἐν +ἀγρῷ +καί +ὡς +ἐρχόμενος +ἤγγισεν +τῇ +οἰκίᾳ +ἤκουσεν +συμφωνίας +καί +χορῶν +καί +προσκαλεσάμενος +ἕνα +τῶν +παίδων +ἐπυνθάνετο +ἄν +τί +εἴη +ταῦτα +δέ +ὁ +εἶπεν +αὐτῷ +ὅτι +Ὁ +ἀδελφός +σου +ἥκει +καί +ἔθυσεν +ὁ +πατήρ +σου +τόν +μόσχον +τόν +σιτευτόν +ὅτι +ὑγιαίνοντα +αὐτόν +ἀπέλαβεν +δέ +ὠργίσθη +καί +οὐκ +ἤθελεν +εἰσελθεῖν +δέ +ὁ +πατήρ +αὐτοῦ +ἐξελθών +παρεκάλει +αὐτόν +δέ +ὁ +ἀποκριθείς +εἶπεν +τῷ +πατρί +Ἰδού +τοσαῦτα +ἔτη +δουλεύω +σοι +καί +οὐδέποτε +ἐντολήν +σου +παρῆλθον +καί +ἐμοί +οὐδέποτε +ἔδωκας +ἔριφον +ἵνα +μετά +τῶν +φίλων +μου +εὐφρανθῶ +δέ +ὅτε +ὁ +υἱός +σου +οὗτος +ὁ +καταφαγών +σου +τόν +βίον +μετά +πορνῶν +ἦλθεν +ἔθυσας +αὐτῷ +τόν +σιτευτόν +μόσχον +δέ +ὁ +εἶπεν +αὐτῷ +Τέκνον +σύ +πάντοτε +μετ’ +ἐμοῦ +εἶ +καί +πάντα +τά +ἐμά +σά +ἐστιν +δέ +εὐφρανθῆναι +καί +χαρῆναι +ἔδει +ὅτι +ὁ +ἀδελφός +σου +οὗτος +νεκρός +ἦν +καί +ἔζησεν +καί +ἀπολωλώς +καί +εὑρέθη +δέ +Ἔλεγεν +καί +πρός +τούς +μαθητάς +Ἄνθρωπος +τις +ἦν +πλούσιος +ὅς +εἶχεν +οἰκονόμον +καί +οὗτος +διεβλήθη +αὐτῷ +ὡς +διασκορπίζων +τά +ὑπάρχοντα +αὐτοῦ +καί +φωνήσας +αὐτόν +εἶπεν +αὐτῷ +Τί +τοῦτο +ἀκούω +περί +σοῦ +ἀπόδος +τόν +λόγον +τῆς +οἰκονομίας +σου +γάρ +οὐ +δύνῃ +ἔτι +οἰκονομεῖν +δέ +εἶπεν +ἐν +ἑαυτῷ +ὁ +οἰκονόμος +Τί +ποιήσω +ὅτι +ὁ +κύριος +μου +ἀφαιρεῖται +τήν +οἰκονομίαν +ἀπ’ +ἐμοῦ +σκάπτειν +οὐκ +ἰσχύω +ἐπαιτεῖν +αἰσχύνομαι +ἔγνων +τί +ποιήσω +ἵνα +ὅταν +μετασταθῶ +ἐκ +τῆς +οἰκονομίας +δέξωνται +με +εἰς +τούς +οἴκους +ἑαυτῶν +καί +προσκαλεσάμενος +ἕνα +ἕκαστον +τῶν +χρεοφειλετῶν +τοῦ +κυρίου +ἑαυτοῦ +ἔλεγεν +τῷ +πρώτῳ +Πόσον +ὀφείλεις +τῷ +κυρίῳ +μου +δέ +ὁ +εἶπεν +Ἑκατόν +βάτους +ἐλαίου +δέ +ὁ +εἶπεν +αὐτῷ +Δέξαι +σου +τά +γράμματα +καί +καθίσας +ταχέως +γράψον +πεντήκοντα +ἔπειτα +ἑτέρῳ +εἶπεν +δέ +Σύ +πόσον +ὀφείλεις +δέ +ὁ +εἶπεν +Ἑκατόν +κόρους +σίτου +λέγει +αὐτῷ +Δέξαι +σου +τά +γράμματα +καί +γράψον +ὀγδοήκοντα +καί +ἐπῄνεσεν +ὁ +κύριος +τόν +οἰκονόμον +τῆς +ἀδικίας +ὅτι +φρονίμως +ἐποίησεν +ὅτι +οἱ +υἱοί +τοῦ +αἰῶνος +τούτου +φρονιμώτεροι +ὑπέρ +τούς +υἱούς +τοῦ +φωτός +εἰς +τήν +γενεάν +τήν +ἑαυτῶν +εἰσιν +Καί +ἐγώ +ὑμῖν +λέγω +ἑαυτοῖς +ποιήσατε +φίλους +ἐκ +τοῦ +μαμωνᾶ +τῆς +ἀδικίας +ἵνα +ὅταν +ἐκλίπῃ +δέξωνται +ὑμᾶς +εἰς +τάς +αἰωνίους +σκηνάς +ὁ +πιστός +ἐν +ἐλαχίστῳ +καί +ἐν +πολλῷ +πιστός +ἐστιν +καί +ὁ +ἐν +ἐλαχίστῳ +ἄδικος +καί +ἐν +πολλῷ +ἄδικος +ἐστιν +οὖν +εἰ +ἐν +τῷ +ἀδίκῳ +μαμωνᾷ +πιστοί +οὐκ +ἐγένεσθε +τό +ἀληθινόν +τίς +ὑμῖν +πιστεύσει +καί +εἰ +ἐν +τῷ +ἀλλοτρίῳ +πιστοί +οὐκ +ἐγένεσθε +τό +ἡμέτερον +τίς +δώσει +ὑμῖν +Οὐδείς +οἰκέτης +δύναται +δυσί +κυρίοις +δουλεύειν +γάρ +ἤ +τόν +ἕνα +μισήσει +καί +τόν +ἕτερον +ἀγαπήσει +ἤ +ἑνός +ἀνθέξεται +καί +τοῦ +ἑτέρου +καταφρονήσει +οὐ +δύνασθε +Θεῷ +δουλεύειν +καί +μαμωνᾷ +δέ +Ἤκουον +ταῦτα +πάντα +οἱ +Φαρισαῖοι +φιλάργυροι +ὑπάρχοντες +καί +ἐξεμυκτήριζον +αὐτόν +καί +εἶπεν +αὐτοῖς +Ὑμεῖς +ἐστε +οἱ +δικαιοῦντες +ἑαυτούς +ἐνώπιον +τῶν +ἀνθρώπων +δέ +ὁ +Θεός +γινώσκει +τάς +καρδίας +ὑμῶν +ὅτι +τό +ἐν +ἀνθρώποις +ὑψηλόν +βδέλυγμα +ἐνώπιον +τοῦ +Θεοῦ +Ὁ +νόμος +καί +οἱ +προφῆται +μέχρι +Ἰωάνου +ἀπό +τότε +ἡ +βασιλεία +τοῦ +Θεοῦ +εὐαγγελίζεται +καί +πᾶς +εἰς +αὐτήν +βιάζεται +δέ +εὐκοπώτερον +ἐστιν +τόν +οὐρανόν +καί +τήν +γῆν +παρελθεῖν +ἤ +τοῦ +νόμου +μίαν +κεραίαν +πεσεῖν +Πᾶς +ὁ +ἀπολύων +τήν +γυναῖκα +αὐτοῦ +καί +γαμῶν +ἑτέραν +μοιχεύει +καί +ὁ +ἀπολελυμένην +ἀπό +ἀνδρός +γαμῶν +μοιχεύει +δέ +Ἄνθρωπος +τις +ἦν +πλούσιος +καί +ἐνεδιδύσκετο +πορφύραν +καί +βύσσον +εὐφραινόμενος +καθ’ +ἡμέραν +λαμπρῶς +δέ +πτωχός +τις +ὀνόματι +Λάζαρος +ἐβέβλητο +πρός +τόν +πυλῶνα +αὐτοῦ +εἱλκωμένος +καί +ἐπιθυμῶν +χορτασθῆναι +ἀπό +τῶν +πιπτόντων +ἀπό +τῆς +τραπέζης +τοῦ +πλουσίου +ἀλλά +καί +οἱ +κύνες +ἐρχόμενοι +ἐπέλειχον +τά +ἕλκη +αὐτοῦ +δέ +ἐγένετο +ἀποθανεῖν +τόν +πτωχόν +καί +ἀπενεχθῆναι +αὐτόν +ὑπό +τῶν +ἀγγέλων +εἰς +τόν +κόλπον +Ἀβραάμ +δέ +ἀπέθανεν +καί +ὁ +πλούσιος +καί +ἐτάφη +καί +ἐν +τῷ +Ἅιδῃ +ἐπάρας +τούς +ὀφθαλμούς +αὐτοῦ +ὑπάρχων +ἐν +βασάνοις +ὁρᾷ +Ἀβραάμ +ἀπό +μακρόθεν +καί +Λάζαρον +ἐν +τοῖς +κόλποις +αὐτοῦ +καί +αὐτός +φωνήσας +εἶπεν +Πάτερ +Ἀβραάμ +ἐλέησον +με +καί +πέμψον +Λάζαρον +ἵνα +βάψῃ +τό +ἄκρον +τοῦ +δακτύλου +αὐτοῦ +ὕδατος +καί +καταψύξῃ +τήν +γλῶσσαν +μου +ὅτι +ὀδυνῶμαι +ἐν +τῇ +φλογί +ταύτῃ +δέ +εἶπεν +Ἀβραάμ +Τέκνον +μνήσθητι +ὅτι +ἀπέλαβες +τά +ἀγαθά +σου +ἐν +τῇ +ζωῇ +σου +καί +Λάζαρος +ὁμοίως +τά +κακά +δέ +νῦν +ὧδε +παρακαλεῖται +δέ +σύ +ὀδυνᾶσαι +καί +ἐν +πᾶσι +τούτοις +μεταξύ +ἡμῶν +καί +ὑμῶν +χάσμα +μέγα +ἐστήρικται +ὅπως +οἱ +θέλοντες +διαβῆναι +ἔνθεν +πρός +ὑμᾶς +μή +δύνωνται +μηδέ +ἐκεῖθεν +πρός +ἡμᾶς +διαπερῶσιν +δέ +εἶπεν +οὖν +Ἐρωτῶ +σε +πάτερ +ἵνα +πέμψῃς +αὐτόν +εἰς +τόν +οἶκον +τοῦ +πατρός +μου +γάρ +ἔχω +πέντε +ἀδελφούς +ὅπως +διαμαρτύρηται +αὐτοῖς +ἵνα +μή +καί +αὐτοί +ἔλθωσιν +εἰς +τόν +τόπον +τοῦτον +τῆς +βασάνου +δέ +λέγει +Ἀβραάμ +Ἔχουσι +Μωϋσέα +καί +τούς +προφήτας +ἀκουσάτωσαν +αὐτῶν +δέ +ὁ +εἶπεν +Οὐχί +πάτερ +Ἀβραάμ +ἀλλ’ +ἐάν +τις +ἀπό +νεκρῶν +πορευθῇ +πρός +αὐτούς +μετανοήσουσιν +δέ +εἶπεν +αὐτῷ +Εἰ +Μωϋσέως +καί +τῶν +προφητῶν +οὐκ +ἀκούουσιν +οὐδέ +ἐάν +τις +ἐκ +νεκρῶν +ἀναστῇ +πεισθήσονται +δέ +Εἶπεν +πρός +τούς +μαθητάς +αὐτοῦ +Ἀνένδεκτον +ἐστιν +τοῦ +τά +σκάνδαλα +μή +ἐλθεῖν +δέ +οὐαί +δι’ +οὗ +ἔρχεται +λυσιτελεῖ +αὐτῷ +εἰ +λίθος +μυλικός +περίκειται +περί +τόν +τράχηλον +αὐτοῦ +καί +ἔρριπται +εἰς +τήν +θάλασσαν +ἤ +ἵνα +σκανδαλίσῃ +τῶν +μικρῶν +τούτων +ἕνα +προσέχετε +ἑαυτοῖς +ἐάν +ἁμάρτῃ +ὁ +ἀδελφός +σου +ἐπιτίμησον +αὐτῷ +καί +ἐάν +μετανοήσῃ +ἄφες +αὐτῷ +καί +ἐάν +ἑπτάκις +τῆς +ἡμέρας +ἁμαρτήσῃ +εἰς +σέ +καί +ἑπτάκις +ἐπιστρέψῃ +πρός +σέ +λέγων +Μετανοῶ +ἀφήσεις +αὐτῷ +Καί +εἶπαν +οἱ +ἀπόστολοι +τῷ +Κυρίῳ +Πρόσθες +ἡμῖν +πίστιν +δέ +εἶπεν +ὁ +Κύριος +Εἰ +ἔχετε +πίστιν +ὡς +κόκκον +σινάπεως +ἄν +ἐλέγετε +τῇ +συκαμίνῳ +ταύτῃ +Ἐκριζώθητι +καί +φυτεύθητι +ἐν +τῇ +θαλάσσῃ +καί +ἄν +ὑπήκουσεν +ὑμῖν +δέ +Τίς +ἐξ +ὑμῶν +ἔχων +δοῦλον +ἀροτριῶντα +ἤ +ποιμαίνοντα +ὅς +εἰσελθόντι +ἐκ +τοῦ +ἀγροῦ +ἐρεῖ +αὐτῷ +Εὐθέως +παρελθών +ἀνάπεσε +ἀλλ’ +οὐχί +ἐρεῖ +αὐτῷ +Ἑτοίμασον +τί +δειπνήσω +καί +περιζωσάμενος +διακόνει +μοι +ἕως +φάγω +καί +πίω +καί +μετά +ταῦτα +φάγεσαι +καί +πίεσαι +σύ +μή +ἔχει +χάριν +τῷ +δούλῳ +ὅτι +ἐποίησεν +τά +διαταχθέντα +οὕτως +καί +ὑμεῖς +ὅταν +ποιήσητε +πάντα +τά +διαταχθέντα +ὑμῖν +λέγετε +ὅτι +Δοῦλοι +ἀχρεῖοι +ἐσμεν +ὅ +ποιῆσαι +ὠφείλομεν +πεποιήκαμεν +Καί +ἐγένετο +ἐν +τῷ +πορεύεσθαι +εἰς +Ἱερουσαλήμ +καί +αὐτός +διήρχετο +διά +μέσον +Σαμαρίας +καί +Γαλιλαίας +καί +εἰσερχομένου +αὐτοῦ +εἴς +τινα +κώμην +ἀπήντησαν +δέκα +λεπροί +ἄνδρες +οἵ +ἔστησαν +πόρρωθεν +καί +αὐτοί +ἦραν +φωνήν +λέγοντες +Ἰησοῦ +Ἐπιστάτα +ἐλέησον +ἡμᾶς +καί +ἰδών +εἶπεν +αὐτοῖς +Πορευθέντες +ἐπιδείξατε +ἑαυτούς +τοῖς +ἱερεῦσιν +καί +ἐγένετο +ἐν +τῷ +ὑπάγειν +αὐτούς +ἐκαθαρίσθησαν +δέ +εἷς +ἐξ +αὐτῶν +ἰδών +ὅτι +ἰάθη +ὑπέστρεψεν +μετά +φωνῆς +μεγάλης +δοξάζων +τόν +Θεόν +καί +ἔπεσεν +ἐπί +πρόσωπον +παρά +τούς +πόδας +αὐτοῦ +εὐχαριστῶν +αὐτῷ +καί +αὐτός +ἦν +Σαμαρείτης +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +Οὐχ +οἱ +δέκα +ἐκαθαρίσθησαν +δέ +οἱ +ἐννέα +ποῦ +οὐχ +εὑρέθησαν +ὑποστρέψαντες +δοῦναι +δόξαν +τῷ +Θεῷ +εἰ +μή +ὁ +ἀλλογενής +οὗτος +καί +εἶπεν +αὐτῷ +Ἀναστάς +πορεύου +ἡ +πίστις +σου +σέσωκεν +σε +δέ +Ἐπερωτηθείς +ὑπό +τῶν +Φαρισαίων +πότε +ἔρχεται +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀπεκρίθη +αὐτοῖς +καί +εἶπεν +Οὐκ +ἔρχεται +ἡ +βασιλεία +τοῦ +Θεοῦ +μετά +παρατηρήσεως +οὐδέ +ἐροῦσιν +Ἰδού +ὧδε +ἤ +Ἐκεῖ +γάρ +ἰδού +ἡ +βασιλεία +τοῦ +Θεοῦ +ἐντός +ὑμῶν +ἐστιν +δέ +Εἶπεν +πρός +τούς +μαθητάς +Ἐλεύσονται +ἡμέραι +ὅτε +ἐπιθυμήσετε +μίαν +τῶν +ἡμερῶν +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἰδεῖν +καί +οὐκ +ὄψεσθε +καί +ἐροῦσιν +ὑμῖν +Ἰδού +ἐκεῖ +Ἰδού +ὧδε +μή +ἀπέλθητε +μηδέ +διώξητε +γάρ +ὥσπερ +ἡ +ἀστραπή +ἀστράπτουσα +ἐκ +τῆς +ὑπό +τόν +οὐρανόν +εἰς +τήν +ὑπ’ +οὐρανόν +λάμπει +οὕτως +ἔσται +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐν +τῇ +ἡμέρᾳ +αὐτοῦ +δέ +δεῖ +πρῶτον +αὐτόν +πολλά +παθεῖν +καί +ἀποδοκιμασθῆναι +ἀπό +τῆς +γενεᾶς +ταύτης +καί +καθώς +ἐγένετο +ἐν +ταῖς +ἡμέραις +Νῶε +οὕτως +ἔσται +καί +ἐν +ταῖς +ἡμέραις +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἤσθιον +ἔπινον +ἐγάμουν +ἐγαμίζοντο +ἄχρι +ἧς +ἡμέρας +εἰσῆλθεν +Νῶε +εἰς +τήν +κιβωτόν +καί +ἦλθεν +ὁ +κατακλυσμός +καί +ἀπώλεσεν +πάντας +καθώς +ὁμοίως +ἐγένετο +ἐν +ταῖς +ἡμέραις +Λώτ +ἤσθιον +ἔπινον +ἠγόραζον +ἐπώλουν +ἐφύτευον +ᾠκοδόμουν +δέ +ᾗ +ἡμέρᾳ +ἐξῆλθεν +Λώτ +ἀπό +Σοδόμων +ἔβρεξεν +πῦρ +καί +θεῖον +ἀπ’ +οὐρανοῦ +καί +ἀπώλεσεν +πάντας +κατά +τά +αὐτά +ἔσται +ᾗ +ἡμέρᾳ +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἀποκαλύπτεται +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ὅς +ἔσται +ἐπί +τοῦ +δώματος +καί +τά +σκεύη +αὐτοῦ +ἐν +τῇ +οἰκίᾳ +μή +καταβάτω +ἆραι +αὐτά +καί +ὁ +ἐν +ἀγρῷ +ὁμοίως +μή +ἐπιστρεψάτω +εἰς +τά +ὀπίσω +μνημονεύετε +τῆς +γυναικός +Λώτ +ἐάν +ὅς +ζητήσῃ +τήν +ψυχήν +αὐτοῦ +περιποιήσασθαι +ἀπολέσει +αὐτήν +καί +ἄν +ὅς +ἀπολέσει +ζωογονήσει +αὐτήν +λέγω +ὑμῖν +ταύτῃ +τῇ +νυκτί +ἔσονται +δύο +ἐπί +κλίνης +μιᾶς +ὁ +εἷς +παραλημφθήσεται +καί +ὁ +ἕτερος +ἀφεθήσεται +ἔσονται +ἀλήθουσαι +δύο +ἐπί +τό +αὐτό +ἡ +μία +παραλημφθήσεται +δέ +ἡ +ἑτέρα +ἀφεθήσεται +καί +ἀποκριθέντες +λέγουσιν +αὐτῷ +Ποῦ +Κύριε +δέ +ὁ +εἶπεν +αὐτοῖς +Ὅπου +τό +σῶμα +ἐκεῖ +καί +οἱ +ἀετοί +ἐπισυναχθήσονται +δέ +Ἔλεγεν +παραβολήν +αὐτοῖς +πρός +τό +δεῖν +πάντοτε +προσεύχεσθαι +αὐτούς +καί +μή +ἐνκακεῖν +λέγων +Κριτής +τις +ἦν +ἔν +τινι +πόλει +τόν +Θεόν +μή +φοβούμενος +καί +ἄνθρωπον +μή +ἐντρεπόμενος +δέ +χήρα +ἦν +ἐν +τῇ +πόλει +ἐκείνῃ +καί +ἤρχετο +πρός +αὐτόν +λέγουσα +Ἐκδίκησον +με +ἀπό +τοῦ +ἀντιδίκου +μου +καί +οὐκ +ἤθελεν +ἐπί +χρόνον +δέ +μετά +ταῦτα +εἶπεν +ἐν +ἑαυτῷ +Εἰ +καί +τόν +Θεόν +οὐ +φοβοῦμαι +οὐδέ +ἄνθρωπον +ἐντρέπομαι +γε +διά +τό +παρέχειν +μοι +κόπον +τήν +χήραν +ταύτην +ἐκδικήσω +αὐτήν +ἵνα +μή +εἰς +τέλος +ἐρχομένη +ὑπωπιάζῃ +με +δέ +Εἶπεν +ὁ +Κύριος +Ἀκούσατε +τί +ὁ +κριτής +τῆς +ἀδικίας +λέγει +δέ +οὐ +μή +ὁ +Θεός +ποιήσῃ +τήν +ἐκδίκησιν +τῶν +ἐκλεκτῶν +αὐτοῦ +τῶν +βοώντων +αὐτῷ +ἡμέρας +καί +νυκτός +καί +μακροθυμεῖ +ἐπ’ +αὐτοῖς +λέγω +ὑμῖν +ὅτι +ποιήσει +τήν +ἐκδίκησιν +αὐτῶν +ἐν +τάχει +πλήν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐλθών +ἆρα +εὑρήσει +τήν +πίστιν +ἐπί +τῆς +γῆς +δέ +Εἶπεν +καί +πρός +τινας +τούς +πεποιθότας +ἐφ’ +ἑαυτοῖς +ὅτι +εἰσίν +δίκαιοι +καί +ἐξουθενοῦντας +τούς +λοιπούς +τήν +παραβολήν +ταύτην +Ἄνθρωποι +δύο +ἀνέβησαν +εἰς +τό +ἱερόν +προσεύξασθαι +ὁ +εἷς +Φαρισαῖος +καί +ὁ +ἕτερος +τελώνης +ὁ +Φαρισαῖος +σταθείς +ταῦτα +πρός +ἑαυτόν +προσηύχετο +Ὁ +Θεός +εὐχαριστῶ +σοι +ὅτι +οὐκ +εἰμί +ὥσπερ +οἱ +λοιποί +τῶν +ἀνθρώπων +ἅρπαγες +ἄδικοι +μοιχοί +ἤ +ὡς +καί +οὗτος +ὁ +τελώνης +νηστεύω +δίς +τοῦ +σαββάτου +ἀποδεκατεύω +πάντα +ὅσα +κτῶμαι +δέ +ὁ +τελώνης +μακρόθεν +ἑστώς +οὐκ +ἤθελεν +οὐδέ +τούς +ὀφθαλμούς +ἐπᾶραι +εἰς +τόν +οὐρανόν +ἀλλ’ +ἔτυπτεν +τό +στῆθος +αὐτοῦ +λέγων +Ὁ +Θεός +ἱλάσθητι +μοι +τῷ +ἁμαρτωλῷ +λέγω +ὑμῖν +κατέβη +οὗτος +δεδικαιωμένος +εἰς +τόν +οἶκον +αὐτοῦ +παρ’ +ἐκεῖνον +ὅτι +πᾶς +ὁ +ὑψῶν +ἑαυτόν +ταπεινωθήσεται +δέ +ὁ +ταπεινῶν +ἑαυτόν +ὑψωθήσεται +δέ +Προσέφερον +αὐτῷ +καί +τά +βρέφη +ἵνα +αὐτῶν +ἅπτηται +δέ +ἰδόντες +οἱ +μαθηταί +ἐπετίμων +αὐτοῖς +δέ +ὁ +Ἰησοῦς +προσεκαλέσατο +αὐτά +λέγων +Ἄφετε +τά +παιδία +ἔρχεσθαι +πρός +με +καί +μή +κωλύετε +αὐτά +γάρ +τῶν +τοιούτων +ἐστίν +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀμήν +λέγω +ὑμῖν +ἄν +ὅς +μή +δέξηται +τήν +βασιλείαν +τοῦ +Θεοῦ +ὡς +παιδίον +οὐ +μή +εἰσέλθῃ +εἰς +αὐτήν +Καί +ἐπηρώτησεν +τις +ἄρχων +αὐτόν +λέγων +Διδάσκαλε +ἀγαθέ +τί +ποιήσας +ζωήν +αἰώνιον +κληρονομήσω +δέ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Τί +με +λέγεις +ἀγαθόν +οὐδείς +ἀγαθός +εἰ +μή +εἷς +ὁ +Θεός +τάς +ἐντολάς +οἶδας +Μή +μοιχεύσῃς +Μή +φονεύσῃς +Μή +κλέψῃς +Μή +ψευδομαρτυρήσῃς +Τίμα +τόν +πατέρα +σου +καί +τήν +μητέρα +δέ +ὁ +εἶπεν +Ταῦτα +πάντα +ἐφύλαξα +ἐκ +νεότητος +δέ +ἀκούσας +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἔτι +ἕν +σοι +λείπει +πάντα +ὅσα +ἔχεις +πώλησον +καί +διάδος +πτωχοῖς +καί +ἕξεις +θησαυρόν +ἐν +τοῖς +οὐρανοῖς +καί +δεῦρο +ἀκολούθει +μοι +δέ +ὁ +ἀκούσας +ταῦτα +περίλυπος +ἐγενήθη +γάρ +ἦν +πλούσιος +σφόδρα +δέ +ἰδών +αὐτόν +ὁ +Ἰησοῦς +εἶπεν +Πῶς +δυσκόλως +οἱ +τά +χρήματα +ἔχοντες +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +εἰσπορεύονται +γάρ +εὐκοπώτερον +ἐστιν +κάμηλον +διά +τρήματος +βελόνης +εἰσελθεῖν +ἤ +πλούσιον +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +εἰσελθεῖν +δέ +εἶπαν +οἱ +ἀκούσαντες +Καί +τίς +δύναται +σωθῆναι +δέ +ὁ +εἶπεν +Τά +ἀδύνατα +παρά +ἀνθρώποις +δυνατά +παρά +τῷ +Θεῷ +ἐστιν +δέ +Εἶπεν +ὁ +Πέτρος +Ἰδού +ἡμεῖς +ἀφέντες +τά +ἴδια +ἠκολουθήσαμεν +σοι +δέ +ὁ +εἶπεν +αὐτοῖς +Ἀμήν +λέγω +ὑμῖν +ὅτι +οὐδείς +ἐστιν +ὅς +ἀφῆκεν +οἰκίαν +ἤ +γυναῖκα +ἤ +ἀδελφούς +ἤ +γονεῖς +ἤ +τέκνα +ἕνεκεν +τῆς +βασιλείας +τοῦ +Θεοῦ +ὅς +οὐχί +μή +λάβῃ +πολλαπλασίονα +ἐν +τῷ +καιρῷ +τούτῳ +καί +ἐν +τῷ +αἰῶνι +τῷ +ἐρχομένῳ +ζωήν +αἰώνιον +δέ +Παραλαβών +τούς +δώδεκα +εἶπεν +πρός +αὐτούς +Ἰδού +ἀναβαίνομεν +εἰς +Ἱερουσαλήμ +καί +τελεσθήσεται +πάντα +τά +γεγραμμένα +διά +τῶν +προφητῶν +τῷ +Υἱῷ +τοῦ +ἀνθρώπου +γάρ +παραδοθήσεται +τοῖς +ἔθνεσιν +καί +ἐμπαιχθήσεται +καί +ὑβρισθήσεται +καί +ἐμπτυσθήσεται +καί +μαστιγώσαντες +ἀποκτενοῦσιν +αὐτόν +καί +τῇ +ἡμέρᾳ +τῇ +τρίτῃ +ἀναστήσεται +καί +αὐτοί +οὐδέν +τούτων +συνῆκαν +καί +ἦν +τό +ῥῆμα +τοῦτο +κεκρυμμένον +ἀπ’ +αὐτῶν +καί +οὐκ +ἐγίνωσκον +τά +λεγόμενα +δέ +Ἐγένετο +ἐν +τῷ +ἐγγίζειν +αὐτόν +εἰς +Ἱερειχώ +τυφλός +τις +ἐκάθητο +παρά +τήν +ὁδόν +ἐπαιτῶν +δέ +ἀκούσας +ὄχλου +διαπορευομένου +ἐπυνθάνετο +τί +εἴη +τοῦτο +δέ +ἀπήγγειλαν +αὐτῷ +ὅτι +Ἰησοῦς +ὁ +Ναζωραῖος +παρέρχεται +καί +ἐβόησεν +λέγων +Ἰησοῦ +υἱέ +Δαυείδ +ἐλέησον +με +καί +οἱ +προάγοντες +ἐπετίμων +αὐτῷ +ἵνα +σιγήσῃ +δέ +αὐτός +πολλῷ +μᾶλλον +ἔκραζεν +Υἱέ +Δαυείδ +ἐλέησον +με +δέ +σταθείς +ὁ +Ἰησοῦς +ἐκέλευσεν +αὐτόν +ἀχθῆναι +πρός +αὐτόν +δέ +ἐγγίσαντος +αὐτοῦ +ἐπηρώτησεν +αὐτόν +Τί +σοι +ποιήσω +θέλεις +δέ +ὁ +εἶπεν +Κύριε +ἵνα +ἀναβλέψω +καί +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἀνάβλεψον +ἡ +πίστις +σου +σέσωκεν +σε +καί +παραχρῆμα +ἀνέβλεψεν +καί +ἠκολούθει +αὐτῷ +δοξάζων +τόν +Θεόν +καί +πᾶς +ὁ +λαός +ἰδών +ἔδωκεν +αἶνον +τῷ +Θεῷ +Καί +εἰσελθών +διήρχετο +τήν +Ἱερειχώ +Καί +ἰδού +ἀνήρ +ὀνόματι +καλούμενος +Ζακχαῖος +καί +αὐτός +ἦν +ἀρχιτελώνης +καί +αὐτός +πλούσιος +καί +ἐζήτει +ἰδεῖν +τόν +Ἰησοῦν +τίς +ἐστιν +καί +οὐκ +ἠδύνατο +ἀπό +τοῦ +ὄχλου +ὅτι +τῇ +ἡλικίᾳ +μικρός +ἦν +καί +προδραμών +εἰς +τό +ἔμπροσθεν +ἀνέβη +ἐπί +συκομορέαν +ἵνα +ἴδῃ +αὐτόν +ὅτι +ἐκείνης +διέρχεσθαι +ἤμελλεν +καί +ὡς +ἦλθεν +ἐπί +τόν +τόπον +ἀναβλέψας +ὁ +Ἰησοῦς +εἶπεν +πρός +αὐτόν +Ζακχαῖε +σπεύσας +κατάβηθι +γάρ +σήμερον +ἐν +τῷ +οἴκῳ +σου +με +μεῖναι +δεῖ +καί +σπεύσας +κατέβη +καί +ὑπεδέξατο +αὐτόν +χαίρων +καί +ἰδόντες +πάντες +διεγόγγυζον +λέγοντες +ὅτι +Παρά +ἁμαρτωλῷ +ἀνδρί +εἰσῆλθεν +καταλῦσαι +δέ +σταθείς +Ζακχαῖος +εἶπεν +πρός +τόν +Κύριον +Κύριε +Ἰδού +τά +ἡμίσεια +μου +τῶν +ὑπαρχόντων +τοῖς +πτωχοῖς +δίδωμι +καί +εἴ +τινός +τι +ἐσυκοφάντησα +ἀποδίδωμι +τετραπλοῦν +δέ +εἶπεν +πρός +αὐτόν +ὁ +Ἰησοῦς +ὅτι +Σήμερον +σωτηρία +τῷ +οἴκῳ +τούτῳ +ἐγένετο +καθότι +καί +αὐτός +υἱός +Ἀβραάμ +ἐστιν +γάρ +ἦλθεν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ζητῆσαι +καί +σῶσαι +τό +ἀπολωλός +δέ +Ἀκουόντων +αὐτῶν +ταῦτα +προσθείς +εἶπεν +παραβολήν +διά +τό +εἶναι +ἐγγύς +Ἱερουσαλήμ +αὐτόν +καί +δοκεῖν +αὐτούς +ὅτι +παραχρῆμα +μέλλει +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀναφαίνεσθαι +οὖν +εἶπεν +Ἄνθρωπος +τις +εὐγενής +ἐπορεύθη +εἰς +χώραν +μακράν +λαβεῖν +ἑαυτῷ +βασιλείαν +καί +ὑποστρέψαι +δέ +καλέσας +δέκα +δούλους +ἑαυτοῦ +ἔδωκεν +αὐτοῖς +δέκα +μνᾶς +καί +εἶπεν +πρός +αὐτούς +Πραγματεύσασθε +ἐν +ᾧ +ἔρχομαι +δέ +οἱ +πολῖται +αὐτοῦ +ἐμίσουν +αὐτόν +καί +ἀπέστειλαν +πρεσβείαν +ὀπίσω +αὐτοῦ +λέγοντες +Οὐ +θέλομεν +τοῦτον +βασιλεῦσαι +ἐφ’ +ἡμᾶς +καί +ἐγένετο +ἐν +τῷ +ἐπανελθεῖν +αὐτόν +λαβόντα +τήν +βασιλείαν +καί +εἶπεν +φωνηθῆναι +αὐτῷ +τούς +δούλους +τούτους +οἷς +δεδώκει +τό +ἀργύριον +ἵνα +γνοῖ +τίς +τί +διεπραγματεύσατο +δέ +παρεγένετο +ὁ +πρῶτος +λέγων +Κύριε +ἡ +μνᾶ +σου +δέκα +μνᾶς +προσηργάσατο +καί +εἶπεν +αὐτῷ +Εὖγε +ἀγαθέ +δοῦλε +ὅτι +ἐν +ἐλαχίστῳ +πιστός +ἐγένου +ἴσθι +ἐξουσίαν +ἔχων +ἐπάνω +δέκα +πόλεων +καί +ἦλθεν +ὁ +δεύτερος +λέγων +κύριε +Ἠ +μνᾶ +σου +ἐποίησεν +πέντε +μνᾶς +δέ +εἶπεν +καί +τούτῳ +Καί +σύ +ἐπάνω +πέντε +πόλεων +γίνου +καί +ὁ +ἕτερος +ἦλθεν +λέγων +Κύριε +ἰδού +ἡ +μνᾶ +σου +ἥν +εἶχον +ἀποκειμένην +ἐν +σουδαρίῳ +γάρ +ἐφοβούμην +σε +ὅτι +ἄνθρωπος +αὐστηρός +εἶ +αἴρεις +ὅ +οὐκ +ἔθηκας +καί +θερίζεις +ὅ +οὐκ +ἔσπειρας +λέγει +αὐτῷ +Ἐκ +τοῦ +στόματος +σου +κρίνω +σε +πονηρέ +δοῦλε +ᾔδεις +ὅτι +ἐγώ +εἰμι +ἄνθρωπος +αὐστηρός +αἴρων +ὅ +οὐκ +ἔθηκα +καί +θερίζων +ὅ +οὐκ +ἔσπειρα +καί +διά +τί +οὐκ +ἔδωκας +μου +τό +ἀργύριον +ἐπί +τράπεζαν +ἄν +κἀγώ +ἐλθών +σύν +τόκῳ +αὐτό +ἔπραξα +καί +τοῖς +παρεστῶσιν +εἶπεν +Ἄρατε +ἀπ’ +αὐτοῦ +τήν +μνᾶν +καί +δότε +τῷ +τάς +δέκα +μνᾶς +ἔχοντι +καί +εἶπαν +αὐτῷ +Κύριε +ἔχει +δέκα +μνᾶς +λέγω +ὑμῖν +ὅτι +παντί +τῷ +ἔχοντι +δοθήσεται +δέ +ἀπό +τοῦ +μή +ἔχοντος +καί +ὅ +ἔχει +ἀρθήσεται +πλήν +τούς +ἐχθρούς +μου +τούτους +τούς +μή +θελήσαντας +με +βασιλεῦσαι +ἐπ’ +αὐτούς +ἀγάγετε +ὧδε +καί +κατασφάξατε +αὐτούς +ἔμπροσθεν +μου +Καί +εἰπών +ταῦτα +ἐπορεύετο +ἔμπροσθεν +ἀναβαίνων +εἰς +Ἱεροσόλυμα +Καί +ἐγένετο +ὡς +ἤγγισεν +εἰς +Βηθφαγή +καί +Βηθανίαν +πρός +τό +ὄρος +τό +καλούμενον +Ἐλαιῶν +ἀπέστειλεν +δύο +τῶν +μαθητῶν +λέγων +Ὑπάγετε +εἰς +τήν +κατέναντι +κώμην +ἐν +ᾗ +εἰσπορευόμενοι +εὑρήσετε +δεδεμένον +πῶλον +ἐφ’ +ὅν +οὐδείς +ἀνθρώπων +πώποτε +ἐκάθισεν +καί +λύσαντες +αὐτόν +ἀγάγετε +καί +ἐάν +τις +ὑμᾶς +ἐρωτᾷ +Διά +τί +λύετε +οὕτως +ἐρεῖτε +ὅτι +Ὁ +Κύριος +αὐτοῦ +χρείαν +ἔχει +δέ +ἀπελθόντες +οἱ +ἀπεσταλμένοι +εὗρον +καθώς +εἶπεν +αὐτοῖς +δέ +λυόντων +αὐτῶν +τόν +πῶλον +εἶπαν +οἱ +κύριοι +αὐτοῦ +πρός +αὐτούς +Τί +λύετε +τόν +πῶλον +δέ +οἱ +εἶπαν +ὅτι +Ὁ +Κύριος +αὐτοῦ +χρείαν +ἔχει +καί +ἤγαγον +αὐτόν +πρός +τόν +Ἰησοῦν +καί +ἐπιρίψαντες +αὐτῶν +τά +ἱμάτια +ἐπί +τόν +πῶλον +ἐπεβίβασαν +τόν +Ἰησοῦν +δέ +πορευομένου +αὐτοῦ +ὑπεστρώννυον +τά +ἱμάτια +ἑαυτῶν +ἐν +τῇ +ὁδῷ +δέ +ἐγγίζοντος +αὐτοῦ +ἤδη +πρός +τῇ +καταβάσει +τοῦ +ὄρους +τῶν +Ἐλαιῶν +ἤρξαντο +ἅπαν +τό +πλῆθος +τῶν +μαθητῶν +χαίροντες +αἰνεῖν +τόν +Θεόν +φωνῇ +μεγάλῃ +περί +πασῶν +ὧν +εἶδον +δυνάμεων +λέγοντες +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου +ὁ +Βασιλεύς +ἐν +οὐρανῷ +εἰρήνη +καί +δόξα +ἐν +ὑψίστοις +καί +τινες +τῶν +Φαρισαίων +ἀπό +τοῦ +ὄχλου +εἶπαν +πρός +αὐτόν +Διδάσκαλε +ἐπιτίμησον +τοῖς +μαθηταῖς +σου +καί +ἀποκριθείς +εἶπεν +Λέγω +ὑμῖν +ἐάν +οὗτοι +σιωπήσουσιν +οἱ +λίθοι +κράξουσιν +Καί +ὡς +ἤγγισεν +ἰδών +τήν +πόλιν +ἔκλαυσεν +ἐπ’ +αὐτήν +λέγων +ὅτι +Εἰ +ἔγνως +ἐν +τῇ +ἡμέρᾳ +ταύτῃ +καί +σύ +τά +πρός +εἰρήνην +δέ +νῦν +ἐκρύβη +ἀπό +ὀφθαλμῶν +σου +ὅτι +ἥξουσιν +ἡμέραι +ἐπί +σέ +καί +παρεμβαλοῦσιν +οἱ +ἐχθροί +σου +χάρακα +σοι +καί +περικυκλώσουσιν +σε +καί +συνέξουσιν +σε +πάντοθεν +καί +ἐδαφιοῦσιν +σε +καί +τά +τέκνα +σου +ἐν +σοί +καί +οὐκ +ἀφήσουσιν +λίθον +ἐπί +λίθον +ἐν +σοί +ἀνθ’ +ὧν +οὐκ +ἔγνως +τόν +καιρόν +τῆς +ἐπισκοπῆς +σου +Καί +εἰσελθών +εἰς +τό +ἱερόν +ἤρξατο +ἐκβάλλειν +τούς +πωλοῦντας +λέγων +αὐτοῖς +Γέγραπται +Καί +ἔσται +ὁ +οἶκος +μου +οἶκος +προσευχῆς +δέ +ὑμεῖς +αὐτόν +ἐποιήσατε +σπήλαιον +λῃστῶν +Καί +ἦν +διδάσκων +τό +καθ’ +ἡμέραν +ἐν +τῷ +ἱερῷ +δέ +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +ἐζήτουν +αὐτόν +ἀπολέσαι +καί +οἱ +πρῶτοι +τοῦ +λαοῦ +καί +οὐχ +εὕρισκον +τό +τί +ποιήσωσιν +γάρ +ὁ +λαός +ἅπας +ἐξεκρέμετο +αὐτοῦ +ἀκούων +Καί +ἐγένετο +ἐν +μιᾷ +τῶν +ἡμερῶν +διδάσκοντος +αὐτοῦ +τόν +λαόν +ἐν +τῷ +ἱερῷ +καί +εὐαγγελιζομένου +ἐπέστησαν +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +σύν +τοῖς +πρεσβυτέροις +καί +εἶπαν +λέγοντες +πρός +αὐτόν +Εἰπόν +ἡμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιεῖς +ἤ +τίς +ἐστιν +ὁ +δούς +σοι +τήν +ἐξουσίαν +ταύτην +δέ +ἀποκριθείς +εἶπεν +πρός +αὐτούς +Ἐρωτήσω +ὑμᾶς +κἀγώ +λόγον +καί +εἴπατε +μοι +Τό +βάπτισμα +Ἰωάνου +ἐξ +οὐρανοῦ +ἦν +ἤ +ἐξ +ἀνθρώπων +δέ +οἱ +συνελογίσαντο +πρός +ἑαυτούς +λέγοντες +ὅτι +Ἐάν +εἴπωμεν +Ἐξ +οὐρανοῦ +ἐρεῖ +Διά +τί +οὐκ +ἐπιστεύσατε +αὐτῷ +δέ +ἐάν +εἴπωμεν +Ἐξ +ἀνθρώπων +ὁ +λαός +ἅπας +καταλιθάσει +ἡμᾶς +γάρ +πεπεισμένος +ἐστιν +Ἰωάνην +προφήτην +εἶναι +καί +ἀπεκρίθησαν +μή +εἰδέναι +πόθεν +καί +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐδέ +ἐγώ +λέγω +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ +δέ +Ἤρξατο +πρός +τόν +λαόν +λέγειν +τήν +παραβολήν +ταύτην +ἄνθρωπος +ἐφύτευσεν +ἀμπελῶνα +καί +ἐξέδετο +αὐτόν +γεωργοῖς +καί +ἀπεδήμησεν +χρόνους +ἱκανούς +καί +καιρῷ +ἀπέστειλεν +πρός +τούς +γεωργούς +δοῦλον +ἵνα +ἀπό +τοῦ +καρποῦ +τοῦ +ἀμπελῶνος +δώσουσιν +αὐτῷ +δέ +οἱ +γεωργοί +ἐξαπέστειλαν +αὐτόν +δείραντες +κενόν +καί +προσέθετο +ἕτερον +δοῦλον +πέμψαι +δέ +οἱ +κἀκεῖνον +δείραντες +καί +ἀτιμάσαντες +ἐξαπέστειλαν +κενόν +καί +προσέθετο +τρίτον +πέμψαι +δέ +οἱ +καί +τοῦτον +τραυματίσαντες +ἐξέβαλον +δέ +εἶπεν +ὁ +κύριος +τοῦ +ἀμπελῶνος +Τί +ποιήσω +πέμψω +τόν +υἱόν +μου +τόν +ἀγαπητόν +ἴσως +τοῦτον +ἐντραπήσονται +δέ +ἰδόντες +αὐτόν +οἱ +γεωργοί +διελογίζοντο +πρός +ἀλλήλους +λέγοντες +Οὗτος +ἐστιν +ὁ +κληρονόμος +ἀποκτείνωμεν +αὐτόν +ἵνα +ἡμῶν +γένηται +ἡ +κληρονομία +καί +ἐκβαλόντες +αὐτόν +ἔξω +τοῦ +ἀμπελῶνος +ἀπέκτειναν +οὖν +τί +ποιήσει +αὐτοῖς +ὁ +κύριος +τοῦ +ἀμπελῶνος +ἐλεύσεται +καί +ἀπολέσει +τούς +γεωργούς +τούτους +καί +δώσει +τόν +ἀμπελῶνα +ἄλλοις +δέ +ἀκούσαντες +εἶπαν +Μή +γένοιτο +δέ +ὁ +ἐμβλέψας +αὐτοῖς +εἶπεν +οὖν +Τί +ἐστιν +τό +γεγραμμένον +τοῦτο +Λίθον +ὅν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες +οὗτος +ἐγενήθη +εἰς +κεφαλήν +γωνίας +πᾶς +ὁ +πεσών +ἐπ’ +ἐκεῖνον +τόν +λίθον +συνθλασθήσεται +δ’ +ἄν +ἐφ’ +ὅν +πέσῃ +λικμήσει +αὐτόν +Καί +ἐζήτησαν +οἱ +γραμματεῖς +καί +οἱ +ἀρχιερεῖς +ἐπιβαλεῖν +ἐπ’ +αὐτόν +τάς +χεῖρας +ἐν +αὐτῇ +τῇ +ὥρᾳ +καί +ἐφοβήθησαν +τόν +λαόν +γάρ +ἔγνωσαν +ὅτι +πρός +αὐτούς +εἶπεν +τήν +παραβολήν +ταύτην +Καί +παρατηρήσαντες +ἀπέστειλαν +ἐνκαθέτους +ὑποκρινομένους +ἑαυτούς +δικαίους +εἶναι +ἵνα +ἐπιλάβωνται +αὐτοῦ +λόγου +ὥστε +παραδοῦναι +αὐτόν +τῇ +ἀρχῇ +καί +τῇ +ἐξουσίᾳ +τοῦ +ἡγεμόνος +καί +ἐπηρώτησαν +αὐτόν +λέγοντες +Διδάσκαλε +οἴδαμεν +ὅτι +ὀρθῶς +λέγεις +καί +διδάσκεις +καί +οὐ +λαμβάνεις +πρόσωπον +ἀλλ’ +ἐπ’ +ἀληθείας +τήν +ὁδόν +τοῦ +Θεοῦ +διδάσκεις +ἔξεστιν +ἡμᾶς +Καίσαρι +φόρον +δοῦναι +ἤ +οὔ +δέ +κατανοήσας +αὐτῶν +τήν +πανουργίαν +εἶπεν +πρός +αὐτούς +Δείξατε +μοι +δηνάριον +ἔχει +τίνος +εἰκόνα +καί +ἐπιγραφήν +δέ +οἱ +εἶπαν +Καίσαρος +δέ +ὁ +εἶπεν +πρός +αὐτούς +Τοίνυν +ἀπόδοτε +τά +Καίσαρος +Καίσαρι +καί +τά +τοῦ +Θεοῦ +τῷ +Θεῷ +καί +οὐκ +ἴσχυσαν +ἐπιλαβέσθαι +αὐτοῦ +ῥήματος +ἐναντίον +τοῦ +λαοῦ +καί +θαυμάσαντες +ἐπί +τῇ +ἀποκρίσει +αὐτοῦ +ἐσίγησαν +δέ +Προσελθόντες +τινες +τῶν +Σαδδουκαίων +οἱ +ἀντιλέγοντες +ἀνάστασιν +μή +εἶναι +ἐπηρώτησαν +αὐτόν +λέγοντες +Διδάσκαλε +Μωϋσῆς +ἔγραψεν +ἡμῖν +ἐάν +τινος +ἀδελφός +ἀποθάνῃ +ἔχων +γυναῖκα +καί +οὗτος +ἄτεκνος +ᾖ +ἵνα +λάβῃ +ὁ +ἀδελφός +αὐτοῦ +τήν +γυναῖκα +καί +ἐξαναστήσῃ +σπέρμα +τῷ +ἀδελφῷ +αὐτοῦ +οὖν +ἑπτά +ἀδελφοί +ἦσαν +καί +ὁ +πρῶτος +λαβών +γυναῖκα +ἀπέθανεν +ἄτεκνος +καί +ὁ +δεύτερος +καί +ὁ +τρίτος +ἔλαβεν +αὐτήν +δέ +ὡσαύτως +καί +οἱ +ἑπτά +οὐ +κατέλιπον +τέκνα +καί +ἀπέθανον +ὕστερον +καί +ἡ +γυνή +ἀπέθανεν +οὖν +ἡ +γυνή +ἐν +τῇ +ἀναστάσει +τίνος +αὐτῶν +γυνή +γίνεται +γάρ +οἱ +ἑπτά +ἔσχον +αὐτήν +γυναῖκα +καί +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Οἱ +υἱοί +τοῦ +αἰῶνος +τούτου +γαμοῦσιν +καί +γαμίσκονται +δέ +οἱ +καταξιωθέντες +τοῦ +αἰῶνος +ἐκείνου +τυχεῖν +καί +τῆς +ἀναστάσεως +τῆς +ἐκ +νεκρῶν +οὔτε +γαμοῦσιν +οὔτε +γαμίζονται +γάρ +οὐδέ +ἀποθανεῖν +ἔτι +δύνανται +γάρ +ἰσάγγελοι +εἰσιν +καί +υἱοί +Θεοῦ +εἰσιν +τῆς +ἀναστάσεως +υἱοί +ὄντες +δέ +ὅτι +ἐγείρονται +οἱ +νεκροί +καί +Μωϋσῆς +ἐμήνυσεν +ἐπί +τῆς +Βάτου +ὡς +λέγει +Κύριον +τόν +Θεόν +Ἀβραάμ +καί +Θεόν +Ἰσαάκ +καί +Θεόν +Ἰακώβ +δέ +Θεός +οὐκ +ἔστιν +νεκρῶν +ἀλλά +ζώντων +γάρ +πάντες +αὐτῷ +ζῶσιν +δέ +ἀποκριθέντες +τινες +τῶν +γραμματέων +εἶπαν +Διδάσκαλε +καλῶς +εἶπας +γάρ +οὐκέτι +ἐτόλμων +ἐπερωτᾶν +αὐτόν +οὐδέν +δέ +Εἶπεν +πρός +αὐτούς +Πῶς +λέγουσιν +τόν +Χριστόν +εἶναι +Δαυείδ +υἱόν +γάρ +αὐτός +Δαυείδ +λέγει +ἐν +βίβλῳ +ψαλμῶν +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἄν +θῶ +τούς +ἐχθρούς +σου +ὑποπόδιον +τῶν +ποδῶν +σου +οὖν +Δαυείδ +αὐτόν +Κύριον +καλεῖ +καί +πῶς +αὐτοῦ +υἱός +ἐστιν +δέ +Ἀκούοντος +παντός +τοῦ +λαοῦ +εἶπεν +τοῖς +μαθηταῖς +Προσέχετε +ἀπό +τῶν +γραμματέων +τῶν +θελόντων +περιπατεῖν +ἐν +στολαῖς +καί +φιλούντων +ἀσπασμούς +ἐν +ταῖς +ἀγοραῖς +καί +πρωτοκαθεδρίας +ἐν +ταῖς +συναγωγαῖς +καί +πρωτοκλισίας +ἐν +τοῖς +δείπνοις +οἵ +κατεσθίουσιν +τάς +οἰκίας +τῶν +χηρῶν +καί +προφάσει +μακρά +προσεύχονται +οὗτοι +λήμψονται +περισσότερον +κρίμα +δέ +Ἀναβλέψας +εἶδεν +τούς +βάλλοντας +εἰς +τό +γαζοφυλάκιον +τά +δῶρα +αὐτῶν +πλουσίους +δέ +εἶδεν +τινα +χήραν +πενιχράν +βάλλουσαν +ἐκεῖ +λεπτά +δύο +καί +εἶπεν +Ἀληθῶς +λέγω +ὑμῖν +ὅτι +ἡ +χήρα +αὕτη +ἡ +πτωχή +πλεῖον +πάντων +ἔβαλεν +γάρ +πάντες +οὗτοι +ἐκ +τοῦ +περισσεύοντος +αὐτοῖς +ἔβαλον +εἰς +τά +δῶρα +δέ +αὕτη +ἐκ +τοῦ +ὑστερήματος +αὐτῆς +πάντα +τόν +βίον +ὅν +εἶχεν +ἔβαλεν +Καί +τινων +λεγόντων +περί +τοῦ +ἱεροῦ +ὅτι +λίθοις +καλοῖς +καί +ἀναθήμασιν +κεκόσμηται +εἶπεν +Ταῦτα +ἅ +θεωρεῖτε +ἐλεύσονται +ἡμέραι +ἐν +αἷς +οὐκ +ἀφεθήσεται +ἐπί +λίθῳ +λίθος +ὅς +οὐ +καταλυθήσεται +δέ +ἐπηρώτησαν +αὐτόν +λέγοντες +Διδάσκαλε +οὖν +πότε +ταῦτα +ἔσται +καί +τί +τό +σημεῖον +ὅταν +μέλλῃ +ταῦτα +γίνεσθαι +δέ +ὁ +εἶπεν +Βλέπετε +μή +πλανηθῆτε +γάρ +πολλοί +ἐλεύσονται +ἐπί +τῷ +ὀνόματι +μου +λέγοντες +Ἐγώ +εἰμι +καί +Ὁ +καιρός +ἤγγικεν +μή +πορευθῆτε +ὀπίσω +αὐτῶν +δέ +ὅταν +ἀκούσητε +πολέμους +καί +ἀκαταστασίας +μή +πτοηθῆτε +γάρ +δεῖ +ταῦτα +γενέσθαι +πρῶτον +ἀλλ’ +οὐκ +εὐθέως +τό +τέλος +Τότε +ἔλεγεν +αὐτοῖς +Ἐγερθήσεται +ἔθνος +ἐπ’ +ἔθνος +καί +βασιλεία +ἐπί +βασιλείαν +τε +σεισμοί +μεγάλοι +καί +κατά +τόπους +λοιμοί +καί +λιμοί +ἔσονται +τε +φόβητρα +καί +ἀπ’ +οὐρανοῦ +σημεῖα +μεγάλα +ἔσται +δέ +πρό +τούτων +πάντων +ἐπιβαλοῦσιν +ἐφ’ +ὑμᾶς +τάς +χεῖρας +αὐτῶν +καί +διώξουσιν +παραδιδόντες +εἰς +τάς +συναγωγάς +καί +φυλακάς +ἀπαγομένους +ἐπί +βασιλεῖς +καί +ἡγεμόνας +ἕνεκεν +τοῦ +ὀνόματος +μου +ἀποβήσεται +ὑμῖν +εἰς +μαρτύριον +οὖν +θέτε +ἐν +ταῖς +καρδίαις +ὑμῶν +μή +προμελετᾶν +ἀπολογηθῆναι +γάρ +ἐγώ +δώσω +ὑμῖν +στόμα +καί +σοφίαν +ᾗ +οὐ +δυνήσονται +ἀντιστῆναι +ἤ +ἀντειπεῖν +ἅπαντες +οἱ +ἀντικείμενοι +ὑμῖν +δέ +παραδοθήσεσθε +καί +ὑπό +γονέων +καί +ἀδελφῶν +καί +συγγενῶν +καί +φίλων +καί +θανατώσουσιν +ἐξ +ὑμῶν +καί +ἔσεσθε +μισούμενοι +ὑπό +πάντων +διά +τό +ὄνομα +μου +καί +θρίξ +ἐκ +τῆς +κεφαλῆς +ὑμῶν +οὐ +μή +ἀπόληται +ἐν +τῇ +ὑπομονῇ +ὑμῶν +κτήσεσθε +τάς +ψυχάς +ὑμῶν +δέ +Ὅταν +ἴδητε +κυκλουμένην +ὑπό +στρατοπέδων +Ἱερουσαλήμ +τότε +γνῶτε +ὅτι +ἤγγικεν +ἡ +ἐρήμωσις +αὐτῆς +τότε +οἱ +ἐν +τῇ +Ἰουδαίᾳ +φευγέτωσαν +εἰς +τά +ὄρη +καί +οἱ +ἐν +μέσῳ +αὐτῆς +ἐκχωρείτωσαν +καί +οἱ +ἐν +ταῖς +χώραις +μή +εἰσερχέσθωσαν +εἰς +αὐτήν +ὅτι +ἡμέραι +ἐκδικήσεως +αὗται +εἰσιν +τοῦ +πλησθῆναι +πάντα +τά +γεγραμμένα +οὐαί +ταῖς +ἐν +γαστρί +ἐχούσαις +καί +ταῖς +θηλαζούσαις +ἐν +ἐκείναις +ταῖς +ἡμέραις +γάρ +ἔσται +ἀνάγκη +μεγάλη +ἐπί +τῆς +γῆς +καί +ὀργή +τῷ +λαῷ +τούτῳ +καί +πεσοῦνται +στόματι +μαχαίρης +καί +αἰχμαλωτισθήσονται +εἰς +τά +ἔθνη +πάντα +καί +Ἱερουσαλήμ +ἔσται +πατουμένη +ὑπό +ἐθνῶν +ἄχρι +οὗ +πληρωθῶσιν +καιροί +ἐθνῶν +Καί +ἔσονται +σημεῖα +ἐν +ἡλίῳ +καί +σελήνῃ +καί +ἄστροις +καί +ἐπί +τῆς +γῆς +συνοχή +ἐθνῶν +ἐν +ἀπορίᾳ +ἤχους +θαλάσσης +καί +σάλου +ἀποψυχόντων +ἀνθρώπων +ἀπό +φόβου +καί +προσδοκίας +τῶν +ἐπερχομένων +τῇ +οἰκουμένῃ +γάρ +αἱ +δυνάμεις +τῶν +οὐρανῶν +σαλευθήσονται +καί +τότε +ὄψονται +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐν +νεφέλῃ +μετά +δυνάμεως +καί +δόξης +πολλῆς +δέ +ἀρχομένων +τούτων +γίνεσθαι +ἀνακύψατε +καί +ἐπάρατε +τάς +κεφαλάς +ὑμῶν +διότι +ἐγγίζει +ἡ +ἀπολύτρωσις +ὑμῶν +Καί +εἶπεν +παραβολήν +αὐτοῖς +Ἴδετε +τήν +συκῆν +καί +πάντα +τά +δένδρα +ὅταν +προβάλωσιν +ἤδη +βλέποντες +ἀφ’ +ἑαυτῶν +γινώσκετε +ὅτι +ἤδη +ἐγγύς +τό +θέρος +ἐστίν +οὕτως +καί +ὑμεῖς +ὅταν +ἴδητε +ταῦτα +γινόμενα +γινώσκετε +ὅτι +ἐγγύς +ἐστιν +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀμήν +λέγω +ὑμῖν +ὅτι +οὐ +μή +παρέλθῃ +ἡ +γενεά +αὕτη +ἕως +ἄν +πάντα +γένηται +ὁ +οὐρανός +καί +ἡ +γῆ +παρελεύσονται +δέ +οἱ +λόγοι +μου +οὐ +μή +παρελεύσονται +δέ +Προσέχετε +ἑαυτοῖς +μή +ποτε +βαρηθῶσιν +ὑμῶν +αἱ +καρδίαι +ἐν +κραιπάλῃ +καί +μέθῃ +καί +μερίμναις +βιωτικαῖς +καί +ἐπιστῇ +ἐφ’ +ὑμᾶς +αἰφνίδιος +ἡ +ἡμέρα +ἐκείνη +ὡς +παγίς +γάρ +ἐπεισελεύσεται +ἐπί +πάντας +τούς +καθημένους +ἐπί +πρόσωπον +πάσης +τῆς +γῆς +δέ +ἀγρυπνεῖτε +ἐν +παντί +καιρῷ +δεόμενοι +ἵνα +κατισχύσητε +ἐκφυγεῖν +ταῦτα +πάντα +τά +μέλλοντα +γίνεσθαι +καί +σταθῆναι +ἔμπροσθεν +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +δέ +Ἦν +διδάσκων +τάς +ἡμέρας +ἐν +τῷ +ἱερῷ +δέ +τάς +νύκτας +ἐξερχόμενος +ηὐλίζετο +εἰς +τό +ὄρος +τό +καλούμενον +Ἐλαιῶν +καί +πᾶς +ὁ +λαός +ὤρθριζεν +πρός +αὐτόν +ἐν +τῷ +ἱερῷ +ἀκούειν +αὐτοῦ +δέ +Ἤγγιζεν +ἡ +ἑορτή +τῶν +ἀζύμων +ἡ +λεγομένη +Πάσχα +καί +ἐζήτουν +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +τό +πῶς +ἀνέλωσιν +αὐτόν +γάρ +ἐφοβοῦντο +τόν +λαόν +δέ +Εἰσῆλθεν +Σατανᾶς +εἰς +Ἰούδαν +τόν +καλούμενον +Ἰσκαριώτην +ὄντα +ἐκ +τοῦ +ἀριθμοῦ +τῶν +δώδεκα +καί +ἀπελθών +συνελάλησεν +τοῖς +ἀρχιερεῦσιν +καί +στρατηγοῖς +τό +πῶς +αὐτοῖς +παραδῷ +αὐτόν +καί +ἐχάρησαν +καί +συνέθεντο +αὐτῷ +ἀργύριον +δοῦναι +καί +ἐξωμολόγησεν +καί +ἐζήτει +εὐκαιρίαν +τοῦ +παραδοῦναι +αὐτόν +ἄτερ +ὄχλου +αὐτοῖς +δέ +Ἦλθεν +ἡ +ἡμέρα +τῶν +ἀζύμων +ᾗ +ἔδει +θύεσθαι +τό +πάσχα +καί +ἀπέστειλεν +Πέτρον +καί +Ἰωάνην +εἰπών +Πορευθέντες +ἑτοιμάσατε +ἡμῖν +τό +πάσχα +ἵνα +φάγωμεν +δέ +οἱ +εἶπαν +αὐτῷ +θέλεις +Ποῦ +ἑτοιμάσωμεν +δέ +ὁ +εἶπεν +αὐτοῖς +Ἰδού +εἰσελθόντων +ὑμῶν +εἰς +τήν +πόλιν +συναντήσει +ὑμῖν +ἄνθρωπος +κεράμιον +ὕδατος +βαστάζων +ἀκολουθήσατε +αὐτῷ +εἰς +τήν +οἰκίαν +εἰς +ἥν +εἰσπορεύεται +καί +ἐρεῖτε +τῷ +οἰκοδεσπότῃ +τῆς +οἰκίας +Λέγει +σοι +ὁ +Διδάσκαλος +Ποῦ +ἐστιν +τό +κατάλυμα +ὅπου +τό +πάσχα +μετά +τῶν +μαθητῶν +μου +φάγω +κἀκεῖνος +ὑμῖν +δείξει +ἀνάγαιον +μέγα +ἐστρωμένον +ἐκεῖ +ἑτοιμάσατε +δέ +ἀπελθόντες +εὗρον +καθώς +εἰρήκει +αὐτοῖς +καί +ἡτοίμασαν +τό +πάσχα +Καί +ὅτε +ἐγένετο +ἡ +ὥρα +ἀνέπεσεν +καί +οἱ +ἀπόστολοι +σύν +αὐτῷ +καί +εἶπεν +πρός +αὐτούς +Ἐπιθυμίᾳ +ἐπεθύμησα +τοῦτο +τό +πάσχα +φαγεῖν +μεθ’ +ὑμῶν +πρό +τοῦ +με +παθεῖν +γάρ +λέγω +ὑμῖν +ὅτι +οὐκέτι +οὐ +μή +φάγω +αὐτό +ἕως +ὅτου +πληρωθῇ +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +καί +δεξάμενος +ποτήριον +εὐχαριστήσας +εἶπεν +Λάβετε +τοῦτο +καί +διαμερίσατε +εἰς +ἑαυτούς +γάρ +λέγω +ὑμῖν +οὐ +μή +πίω +ἀπό +τοῦ +νῦν +ἀπό +τοῦ +γενήματος +τῆς +ἀμπέλου +ἕως +οὗ +ἡ +βασιλεία +τοῦ +Θεοῦ +ἔλθῃ +καί +λαβών +ἄρτον +εὐχαριστήσας +ἔκλασεν +καί +ἔδωκεν +αὐτοῖς +λέγων +Τοῦτο +ἐστιν +τό +σῶμα +μου +τό +ὑπέρ +ὑμῶν +διδόμενον +τοῦτο +ποιεῖτε +εἰς +τήν +ἐμήν +ἀνάμνησιν +καί +τό +ποτήριον +ὡσαύτως +μετά +τό +δειπνῆσαι +λέγων +ἡ +καινή +διαθήκη +ἐν +τῷ +αἵματι +μου +Τοῦτο +τό +ποτήριον +τό +ὑπέρ +ὑμῶν +ἐκχυννόμενον +πλήν +ἰδού +ἡ +χείρ +τοῦ +παραδιδόντος +με +μετ’ +ἐμοῦ +ἐπί +τῆς +τραπέζης +ὅτι +μέν +ὁ +Υἱός +τοῦ +ἀνθρώπου +κατά +τό +ὡρισμένον +πορεύεται +πλήν +οὐαί +τῷ +ἀνθρώπῳ +ἐκείνῳ +δι’ +οὗ +παραδίδοται +καί +αὐτοί +ἤρξαντο +συνζητεῖν +πρός +ἑαυτούς +τό +ἄρα +τίς +εἴη +ἐξ +αὐτῶν +ὁ +τοῦτο +πράσσειν +μέλλων +δέ +Ἐγένετο +ἐν +αὐτοῖς +καί +φιλονεικία +τό +τίς +αὐτῶν +δοκεῖ +εἶναι +μείζων +δέ +ὁ +εἶπεν +αὐτοῖς +Οἱ +βασιλεῖς +τῶν +ἐθνῶν +κυριεύουσιν +αὐτῶν +καί +οἱ +ἐξουσιάζοντες +αὐτῶν +εὐεργέται +καλοῦνται +δέ +ὑμεῖς +οὐχ +οὕτως +ἀλλ’ +ὁ +μείζων +ἐν +ὑμῖν +γινέσθω +ὡς +ὁ +νεώτερος +καί +ὁ +ἡγούμενος +ὡς +ὁ +διακονῶν +γάρ +τίς +μείζων +ὁ +ἀνακείμενος +ἤ +ὁ +διακονῶν +οὐχί +ὁ +ἀνακείμενος +δέ +ἐγώ +ἐν +μέσῳ +ὑμῶν +εἰμι +ὡς +ὁ +διακονῶν +δέ +ὑμεῖς +ἐστε +οἱ +διαμεμενηκότες +μετ’ +ἐμοῦ +ἐν +τοῖς +πειρασμοῖς +μου +κἀγώ +διατίθεμαι +ὑμῖν +καθώς +διέθετο +μοι +ὁ +Πατήρ +μου +βασιλείαν +ἵνα +ἔσθητε +καί +πίνητε +ἐπί +τῆς +τραπέζης +μου +ἐν +τῇ +βασιλείᾳ +μου +καί +καθήσεσθε +ἐπί +θρόνων +τάς +δώδεκα +φυλάς +τοῦ +Ἰσραήλ +κρίνοντες +Σίμων +Σίμων +ἰδού +ὁ +Σατανᾶς +ἐξῃτήσατο +ὑμᾶς +τοῦ +σινιάσαι +ὡς +τόν +σῖτον +δέ +ἐγώ +ἐδεήθην +περί +σοῦ +ἵνα +μή +ἐκλίπῃ +ἡ +πίστις +σου +καί +σύ +ποτε +ἐπιστρέψας +στήρισον +τούς +ἀδελφούς +σου +δέ +ὁ +εἶπεν +αὐτῷ +Κύριε +μετά +σοῦ +ἕτοιμος +εἰμι +καί +εἰς +φυλακήν +καί +εἰς +θάνατον +πορεύεσθαι +δέ +ὁ +εἶπεν +Λέγω +σοι +Πέτρε +οὐ +φωνήσει +σήμερον +ἀλέκτωρ +ἕως +τρίς +με +μή +εἰδέναι +ἀπαρνήσῃ +Καί +εἶπεν +αὐτοῖς +Ὅτε +ἀπέστειλα +ὑμᾶς +ἄτερ +βαλλαντίου +καί +πήρας +καί +ὑποδημάτων +μή +τινος +ὑστερήσατε +δέ +οἱ +εἶπαν +Οὐθενός +δέ +εἶπεν +αὐτοῖς +Ἀλλά +νῦν +ὁ +ἔχων +βαλλάντιον +ἀράτω +ὁμοίως +καί +πήραν +καί +ὁ +μή +ἔχων +πωλησάτω +τό +ἱμάτιον +αὐτοῦ +καί +ἀγορασάτω +μάχαιραν +γάρ +λέγω +ὑμῖν +ὅτι +δεῖ +τοῦτο +τό +γεγραμμένον +τό +Καί +μετά +ἀνόμων +ἐλογίσθη +τελεσθῆναι +ἐν +ἐμοί +γάρ +καί +τό +περί +ἐμοῦ +τέλος +ἔχει +δέ +οἱ +εἶπαν +Κύριε +ἰδού +μάχαιραι +ὧδε +δύο +δέ +ὁ +εἶπεν +αὐτοῖς +Ἱκανόν +ἐστιν +Καί +ἐξελθών +ἐπορεύθη +κατά +τό +ἔθος +εἰς +τό +ὄρος +τῶν +Ἐλαιῶν +δέ +ἠκολούθησαν +αὐτῷ +καί +οἱ +μαθηταί +δέ +γενόμενος +ἐπί +τοῦ +τόπου +εἶπεν +αὐτοῖς +Προσεύχεσθε +μή +εἰσελθεῖν +εἰς +πειρασμόν +καί +αὐτός +ἀπεσπάσθη +ἀπ’ +αὐτῶν +ὡσεί +λίθου +βολήν +καί +θείς +τά +γόνατα +προσηύχετο +λέγων +Πάτερ +εἰ +βούλει +παρένεγκε +τοῦτο +τό +ποτήριον +ἀπ’ +ἐμοῦ +πλήν +μή +τό +θέλημα +μου +ἀλλά +τό +σόν +γινέσθω +δέ +ὤφθη +αὐτῷ +ἄγγελος +ἀπ’ +οὐρανοῦ +ἐνισχύων +αὐτόν +καί +γενόμενος +ἐν +ἀγωνίᾳ +ἐκτενέστερον +προσηύχετο +καί +ἐγένετο +ὁ +ἱδρώς +αὐτοῦ +ὡσεί +θρόμβοι +αἵματος +καταβαίνοντες +ἐπί +τήν +γῆν +καί +ἀναστάς +ἀπό +τῆς +προσευχῆς +ἐλθών +πρός +τούς +μαθητάς +εὗρεν +κοιμωμένους +αὐτούς +ἀπό +τῆς +λύπης +καί +εἶπεν +αὐτοῖς +Τί +καθεύδετε +ἀναστάντες +προσεύχεσθε +ἵνα +μή +εἰσέλθητε +εἰς +πειρασμόν +Ἔτι +αὐτοῦ +λαλοῦντος +ἰδού +ὄχλος +καί +ὁ +λεγόμενος +Ἰούδας +εἷς +τῶν +δώδεκα +προήρχετο +αὐτούς +καί +ἤγγισεν +τῷ +Ἰησοῦ +φιλῆσαι +αὐτόν +δέ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἰούδα +φιλήματι +τόν +Υἱόν +τοῦ +ἀνθρώπου +παραδίδως +δέ +οἱ +περί +αὐτόν +ἰδόντες +τό +ἐσόμενον +εἶπαν +Κύριε +εἰ +πατάξομεν +ἐν +μαχαίρῃ +καί +ἐπάταξεν +εἷς +τις +ἐξ +αὐτῶν +τοῦ +ἀρχιερέως +τόν +δοῦλον +καί +ἀφεῖλεν +τό +οὖς +αὐτοῦ +τό +δεξιόν +δέ +ἀποκριθείς +ὁ +Ἰησοῦς +εἶπεν +Ἐᾶτε +ἕως +τούτου +καί +ἁψάμενος +τοῦ +ὠτίου +ἰάσατο +αὐτόν +δέ +Εἶπεν +Ἰησοῦς +πρός +τούς +παραγενομένους +ἐπ’ +αὐτόν +ἀρχιερεῖς +καί +στρατηγούς +τοῦ +ἱεροῦ +καί +πρεσβυτέρους +Ὡς +ἐπί +λῃστήν +ἐξήλθατε +μετά +μαχαιρῶν +καί +ξύλων +καθ’ +ἡμέραν +ὄντος +μου +μεθ’ +ὑμῶν +ἐν +τῷ +ἱερῷ +οὐκ +ἐξετείνατε +τάς +χεῖρας +ἐπ’ +ἐμέ +ἀλλ’ +αὕτη +ἐστίν +ὑμῶν +ἡ +ὥρα +καί +ἡ +ἐξουσία +τοῦ +σκότους +δέ +Συλλαβόντες +αὐτόν +ἤγαγον +καί +εἰσήγαγον +εἰς +τήν +οἰκίαν +τοῦ +ἀρχιερέως +δέ +ὁ +Πέτρος +ἠκολούθει +μακρόθεν +δέ +περιαψάντων +πῦρ +ἐν +μέσῳ +τῆς +αὐλῆς +καί +συνκαθισάντων +ἐκάθητο +ὁ +Πέτρος +μέσος +αὐτῶν +δέ +παιδίσκη +τις +ἰδοῦσα +αὐτόν +καθήμενον +πρός +τό +φῶς +καί +ἀτενίσασα +αὐτῷ +εἶπεν +Καί +οὗτος +σύν +αὐτῷ +ἦν +δέ +ὁ +ἠρνήσατο +λέγων +Οὐκ +οἶδα +αὐτόν +γύναι +καί +μετά +βραχύ +ἕτερος +ἰδών +αὐτόν +ἔφη +Καί +σύ +ἐξ +αὐτῶν +εἶ +δέ +ὁ +Πέτρος +ἔφη +Ἄνθρωπε +οὐκ +εἰμί +καί +διαστάσης +ὡσεί +ὥρας +μιᾶς +ἄλλος +τις +διϊσχυρίζετο +λέγων +Ἐπ’ +ἀληθείας +καί +οὗτος +μετ’ +αὐτοῦ +ἦν +γάρ +καί +Γαλιλαῖος +ἐστιν +δέ +εἶπεν +ὁ +Πέτρος +Ἄνθρωπε +οὐκ +οἶδα +ὅ +λέγεις +καί +παραχρῆμα +ἔτι +λαλοῦντος +αὐτοῦ +ἐφώνησεν +ἀλέκτωρ +καί +στραφείς +ὁ +Κύριος +ἐνέβλεψεν +τῷ +Πέτρῳ +καί +ὑπεμνήσθη +ὁ +Πέτρος +τοῦ +λόγου +τοῦ +Κυρίου +ὡς +εἶπεν +αὐτῷ +ὅτι +Πρίν +ἀλέκτορα +φωνῆσαι +σήμερον +ἀπαρνήσῃ +με +τρίς +καί +ἐξελθών +ἔξω +ἔκλαυσεν +πικρῶς +Καί +οἱ +ἄνδρες +οἱ +συνέχοντες +αὐτόν +ἐνέπαιζον +αὐτῷ +δέροντες +καί +περικαλύψαντες +αὐτόν +ἐπηρώτων +λέγοντες +Προφήτευσον +τίς +ἐστιν +ὁ +παίσας +σε +καί +ἕτερα +πολλά +ἔλεγον +βλασφημοῦντες +εἰς +αὐτόν +Καί +ὡς +ἐγένετο +ἡμέρα +συνήχθη +τό +πρεσβυτέριον +τοῦ +λαοῦ +τε +ἀρχιερεῖς +καί +γραμματεῖς +καί +ἀπήγαγον +αὐτόν +εἰς +τό +συνέδριον +αὐτῶν +λέγοντες +Εἰ +σύ +εἶ +ὁ +Χριστός +εἰπόν +ἡμῖν +δέ +εἶπεν +αὐτοῖς +Ἐάν +ὑμῖν +εἴπω +οὐ +μή +πιστεύσητε +δέ +ἐάν +ἐρωτήσω +οὐ +μή +ἀποκριθῆτε +δέ +ἀπό +τοῦ +νῦν +ἔσται +καθήμενος +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἐκ +δεξιῶν +τῆς +δυνάμεως +τοῦ +Θεοῦ +δέ +εἶπαν +πάντες +οὖν +Σύ +εἶ +ὁ +Υἱός +τοῦ +Θεοῦ +δέ +ὁ +πρός +αὐτούς +ἔφη +Ὑμεῖς +λέγετε +ὅτι +ἐγώ +εἰμι +δέ +οἱ +εἶπαν +Τί +ἔτι +ἔχομεν +μαρτυρίας +χρείαν +γάρ +αὐτοί +ἠκούσαμεν +ἀπό +τοῦ +στόματος +αὐτοῦ +Καί +ἀναστάν +ἅπαν +τό +πλῆθος +αὐτῶν +ἤγαγον +αὐτόν +ἐπί +τόν +Πειλᾶτον +δέ +ἤρξαντο +κατηγορεῖν +αὐτοῦ +λέγοντες +εὕραμεν +Τοῦτον +διαστρέφοντα +τό +ἔθνος +ἡμῶν +καί +κωλύοντα +φόρους +Καίσαρι +διδόναι +καί +λέγοντα +ἑαυτόν +Χριστόν +βασιλέα +εἶναι +δέ +ὁ +Πειλᾶτος +ἠρώτησεν +αὐτόν +λέγων +Σύ +εἶ +ὁ +Βασιλεύς +τῶν +Ἰουδαίων +δέ +ὁ +ἀποκριθείς +αὐτῷ +ἔφη +Σύ +λέγεις +δέ +ὁ +Πειλᾶτος +εἶπεν +πρός +τούς +ἀρχιερεῖς +καί +τούς +ὄχλους +Οὐδέν +εὑρίσκω +αἴτιον +ἐν +τῷ +ἀνθρώπῳ +τούτῳ +δέ +οἱ +ἐπίσχυον +λέγοντες +ὅτι +Ἀνασείει +τόν +λαόν +διδάσκων +καθ’ +ὅλης +τῆς +Ἰουδαίας +καί +ἀρξάμενος +ἀπό +τῆς +Γαλιλαίας +ἕως +ὧδε +δέ +Πειλᾶτος +ἀκούσας +ἐπηρώτησεν +εἰ +ὁ +ἄνθρωπος +Γαλιλαῖος +ἐστιν +καί +ἐπιγνούς +ὅτι +ἐκ +τῆς +ἐξουσίας +Ἠρῴδου +ἐστίν +ἀνέπεμψεν +αὐτόν +πρός +Ἠρῴδην +ὄντα +καί +αὐτόν +ἐν +Ἱεροσολύμοις +ἐν +ταύταις +ταῖς +ἡμέραις +δέ +ὁ +Ἠρῴδης +ἰδών +τόν +Ἰησοῦν +ἐχάρη +λίαν +γάρ +ἦν +θέλων +ἐξ +ἱκανῶν +χρόνων +ἰδεῖν +αὐτόν +διά +τό +ἀκούειν +περί +αὐτοῦ +καί +ἤλπιζεν +ἰδεῖν +τι +σημεῖον +ὑπ’ +αὐτοῦ +γινόμενον +δέ +ἐπηρώτα +αὐτόν +ἐν +λόγοις +ἱκανοῖς +δέ +αὐτός +οὐδέν +ἀπεκρίνατο +αὐτῷ +δέ +εἱστήκεισαν +οἱ +ἀρχιερεῖς +καί +οἱ +γραμματεῖς +εὐτόνως +κατηγοροῦντες +αὐτοῦ +δέ +ὁ +Ἠρῴδης +ἐξουθενήσας +αὐτόν +σύν +τοῖς +στρατεύμασιν +αὐτοῦ +καί +ἐμπαίξας +περιβαλών +ἐσθῆτα +λαμπράν +ἀνέπεμψεν +αὐτόν +τῷ +Πειλάτῳ +δέ +ἐγένοντο +φίλοι +τε +ὅ +Ἠρῴδης +καί +ὁ +Πειλᾶτος +ἐν +αὐτῇ +τῇ +ἡμέρᾳ +μετ’ +ἀλλήλων +γάρ +προϋπῆρχον +ἐν +ἔχθρᾳ +ὄντες +πρός +αὑτούς +δέ +Πειλᾶτος +συνκαλεσάμενος +τούς +ἀρχιερεῖς +καί +τούς +ἄρχοντας +καί +τόν +λαόν +εἶπεν +πρός +αὐτούς +Προσηνέγκατε +μοι +τόν +ἄνθρωπον +τοῦτον +ὡς +ἀποστρέφοντα +τόν +λαόν +καί +ἰδού +ἐγώ +ἐνώπιον +ὑμῶν +ἀνακρίνας +οὐθέν +εὗρον +ἐν +τῷ +ἀνθρώπῳ +τούτῳ +αἴτιον +ὧν +κατηγορεῖτε +κατ’ +αὐτοῦ +ἀλλ’ +οὐδέ +Ἠρῴδης +γάρ +ἀνέπεμψεν +αὐτόν +πρός +ἡμᾶς +καί +ἰδού +οὐδέν +ἄξιον +θανάτου +ἐστίν +πεπραγμένον +αὐτῷ +οὖν +παιδεύσας +αὐτόν +ἀπολύσω +δέ +ἀνέκραγον +πανπληθεί +λέγοντες +Αἶρε +τοῦτον +δέ +ἀπόλυσον +ἡμῖν +τόν +Βαραββᾶν +ὅστις +ἦν +βληθείς +διά +στάσιν +τινά +γενομένην +ἐν +τῇ +πόλει +καί +φόνον +ἐν +τῇ +φυλακῇ +δέ +πάλιν +ὁ +Πειλᾶτος +προσεφώνησεν +αὐτοῖς +θέλων +ἀπολῦσαι +τόν +Ἰησοῦν +δέ +οἱ +ἐπεφώνουν +λέγοντες +Σταύρου +σταύρου +αὐτόν +δέ +ὁ +τρίτον +εἶπεν +πρός +αὐτούς +γάρ +Τί +κακόν +ἐποίησεν +οὗτος +οὐδέν +αἴτιον +θανάτου +εὗρον +ἐν +αὐτῷ +οὖν +παιδεύσας +αὐτόν +ἀπολύσω +δέ +οἱ +ἐπέκειντο +φωναῖς +μεγάλαις +αἰτούμενοι +αὐτόν +σταυρωθῆναι +καί +κατίσχυον +αἱ +φωναί +αὐτῶν +καί +Πειλᾶτος +ἐπέκρινεν +γενέσθαι +τό +αἴτημα +αὐτῶν +δέ +ἀπέλυσεν +τόν +διά +στάσιν +καί +φόνον +βεβλημένον +εἰς +φυλακήν +ὅν +ᾐτοῦντο +δέ +τόν +Ἰησοῦν +παρέδωκεν +τῷ +θελήματι +αὐτῶν +Καί +ὡς +ἀπήγαγον +αὐτόν +ἐπιλαβόμενοι +Σίμωνα +τινα +Κυρηναῖον +ἐρχόμενον +ἀπ’ +ἀγροῦ +ἐπέθηκαν +αὐτῷ +τόν +σταυρόν +φέρειν +ὄπισθεν +τοῦ +Ἰησοῦ +δέ +Ἠκολούθει +αὐτῷ +πολύ +πλῆθος +τοῦ +λαοῦ +καί +γυναικῶν +αἵ +ἐκόπτοντο +καί +ἐθρήνουν +αὐτόν +δέ +στραφείς +πρός +αὐτάς +Ἰησοῦς +εἶπεν +Θυγατέρες +Ἱερουσαλήμ +μή +κλαίετε +ἐπ’ +ἐμέ +πλήν +ἐφ’ +ἑαυτάς +κλαίετε +καί +ἐπί +τά +τέκνα +ὑμῶν +ὅτι +ἰδού +ἔρχονται +ἡμέραι +ἐν +αἷς +ἐροῦσιν +Μακάριαι +αἱ +στεῖραι +καί +αἱ +κοιλίαι +αἵ +οὐκ +ἐγέννησαν +καί +μαστοί +οἵ +οὐκ +ἔθρεψαν +τότε +ἄρξονται +λέγειν +τοῖς +ὄρεσιν +Πέσατε +ἐφ’ +ἡμᾶς +καί +τοῖς +βουνοῖς +Καλύψατε +ἡμᾶς +ὅτι +εἰ +ἐν +ὑγρῷ +ξύλῳ +ταῦτα +ποιοῦσιν +ἐν +τῷ +ξηρῷ +τί +γένηται +δέ +Ἤγοντο +καί +ἕτεροι +κακοῦργοι +δύο +σύν +αὐτῷ +ἀναιρεθῆναι +Καί +ὅτε +ἦλθον +ἐπί +τόν +τόπον +τόν +καλούμενον +Κρανίον +ἐκεῖ +ἐσταύρωσαν +αὐτόν +καί +τούς +κακούργους +μέν +ὅν +ἐκ +δεξιῶν +δέ +ὅν +ἐξ +ἀριστερῶν +δέ +ὁ +Ἰησοῦς +ἔλεγεν +Πάτερ +ἄφες +αὐτοῖς +γάρ +οὐ +οἴδασιν +τί +ποιοῦσιν +δέ +διαμεριζόμενοι +τά +ἱμάτια +αὐτοῦ +ἔβαλον +κλήρους +καί +εἱστήκει +ὁ +λαός +θεωρῶν +δέ +ἐξεμυκτήριζον +καί +οἱ +ἄρχοντες +λέγοντες +Ἄλλους +ἔσωσεν +σωσάτω +ἑαυτόν +εἰ +οὗτος +ἐστιν +ὁ +Χριστός +τοῦ +Θεοῦ +ὁ +ἐκλεκτός +δέ +ἐνέπαιξαν +αὐτῷ +καί +οἱ +στρατιῶται +προσερχόμενοι +ὄξος +προσφέροντες +αὐτῷ +καί +λέγοντες +Εἰ +σύ +εἶ +ὁ +Βασιλεύς +τῶν +Ἰουδαίων +σῶσον +σεαυτόν +δέ +ἦν +καί +ἐπιγραφή +ἐπ’ +αὐτῷ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ +ΟΥΤΟΣ +δέ +Εἷς +τῶν +κρεμασθέντων +κακούργων +ἐβλασφήμει +αὐτόν +Οὐχί +σύ +εἶ +ὁ +Χριστός +σῶσον +σεαυτόν +καί +ἡμᾶς +δέ +ἀποκριθείς +ὁ +ἕτερος +ἐπιτιμῶν +αὐτῷ +ἔφη +Οὐδέ +φοβῇ +σύ +τόν +Θεόν +ὅτι +ἐν +τῷ +αὐτῷ +κρίματι +εἶ +καί +μέν +ἡμεῖς +δικαίως +γάρ +ἄξια +ὧν +ἐπράξαμεν +ἀπολαμβάνομεν +δέ +οὗτος +οὐδέν +ἄτοπον +ἔπραξεν +καί +ἔλεγεν +Ἰησοῦ +μνήσθητι +μου +ὅταν +ἔλθῃς +εἰς +τήν +βασιλείαν +σου +καί +εἶπεν +αὐτῷ +Ἀμήν +σοι +λέγω +σήμερον +μετ’ +ἐμοῦ +ἔσῃ +ἐν +τῷ +Παραδείσῳ +Καί +ἦν +ἤδη +ὡσεί +ὥρα +ἕκτη +καί +σκότος +ἐγένετο +ἐφ’ +ὅλην +τήν +γῆν +ἕως +ὥρας +ἐνάτης +τοῦ +ἡλίου +ἐκλιπόντος +δέ +ἐσχίσθη +τό +καταπέτασμα +τοῦ +ναοῦ +μέσον +καί +φωνήσας +φωνῇ +μεγάλῃ +ὁ +Ἰησοῦς +εἶπεν +Πάτερ +εἰς +χεῖρας +σου +παρατίθεμαι +τό +πνεῦμα +μου +δέ +τοῦτο +εἰπών +ἐξέπνευσεν +δέ +ὁ +ἑκατοντάρχης +ἰδών +τό +γενόμενον +ἐδόξαζεν +τόν +Θεόν +λέγων +Ὄντως +ὁ +ἄνθρωπος +οὗτος +δίκαιος +ἦν +καί +πάντες +οἱ +συνπαραγενόμενοι +ἐπί +τήν +θεωρίαν +ταύτην +ὄχλοι +θεωρήσαντες +τά +γενόμενα +τύπτοντες +τά +στήθη +ὑπέστρεφον +δέ +εἱστήκεισαν +ἀπό +μακρόθεν +πάντες +οἱ +γνωστοί +αὐτῷ +καί +γυναῖκες +αἱ +συνακολουθοῦσαι +αὐτῷ +ἀπό +τῆς +Γαλιλαίας +ὁρῶσαι +ταῦτα +Καί +ἰδού +ἀνήρ +ὀνόματι +Ἰωσήφ +ὑπάρχων +βουλευτής +ἀνήρ +ἀγαθός +καί +δίκαιος +οὗτος +οὐκ +ἦν +συνκατατεθειμένος +τῇ +βουλῇ +καί +τῇ +πράξει +αὐτῶν +ἀπό +Ἀριμαθαίας +πόλεως +τῶν +Ἰουδαίων +ὅς +προσεδέχετο +τήν +βασιλείαν +τοῦ +Θεοῦ +οὗτος +προσελθών +τῷ +Πειλάτῳ +ᾐτήσατο +τό +σῶμα +τοῦ +Ἰησοῦ +καί +καθελών +ἐνετύλιξεν +αὐτό +σινδόνι +καί +ἔθηκεν +αὐτόν +ἐν +μνήματι +λαξευτῷ +οὗ +οὐκ +ἦν +κείμενος +οὐδείς +οὔπω +καί +ἡμέρα +Παρασκευῆς +ἦν +καί +σάββατον +ἐπέφωσκεν +δέ +Κατακολουθήσασαι +αἱ +γυναῖκες +αἵτινες +ἦσαν +συνεληλυθυῖαι +ἐκ +τῆς +Γαλιλαίας +αὐτῷ +ἐθεάσαντο +τό +μνημεῖον +καί +ὡς +ἐτέθη +τό +σῶμα +αὐτοῦ +δέ +ὑποστρέψασαι +ἡτοίμασαν +ἀρώματα +καί +μύρα +Καί +μέν +τό +σάββατον +ἡσύχασαν +κατά +τήν +ἐντολήν +δέ +τῇ +μιᾷ +τῶν +σαββάτων +ὄρθρου +βαθέως +ἐπί +τό +μνῆμα +ἦλθον +φέρουσαι +ἅ +ἡτοίμασαν +ἀρώματα +δέ +εὗρον +τόν +λίθον +ἀποκεκυλισμένον +ἀπό +τοῦ +μνημείου +δέ +εἰσελθοῦσαι +οὐχ +εὗρον +τό +σῶμα +τοῦ +Κυρίου +Ἰησοῦ +καί +ἐγένετο +ἐν +τῷ +ἀπορεῖσθαι +αὐτάς +περί +τούτου +καί +ἰδού +ἄνδρες +δύο +ἐπέστησαν +αὐταῖς +ἐν +ἐσθῆτι +ἀστραπτούσῃ +δέ +ἐμφόβων +γενομένων +αὐτῶν +καί +κλινουσῶν +τά +πρόσωπα +εἰς +τήν +γῆν +εἶπαν +πρός +αὐτάς +Τί +ζητεῖτε +τόν +ζῶντα +μετά +τῶν +νεκρῶν +οὐκ +ἔστιν +ὧδε +ἀλλά +ἠγέρθη +μνήσθητε +ὡς +ἐλάλησεν +ὑμῖν +ἔτι +ὤν +ἐν +τῇ +Γαλιλαίᾳ +λέγων +ὅτι +δεῖ +τόν +Υἱόν +τοῦ +ἀνθρώπου +παραδοθῆναι +εἰς +χεῖρας +ἀνθρώπων +ἁμαρτωλῶν +καί +σταυρωθῆναι +καί +τῇ +τρίτῃ +ἡμέρᾳ +ἀναστῆναι +καί +ἐμνήσθησαν +τῶν +ῥημάτων +αὐτοῦ +καί +ὑποστρέψασαι +ἀπό +τοῦ +μνημείου +ἀπήγγειλαν +ταῦτα +πάντα +τοῖς +ἕνδεκα +καί +πᾶσιν +τοῖς +λοιποῖς +δέ +ἦσαν +ἡ +Μαγδαληνή +Μαρία +καί +Ἰωάνα +καί +Μαρία +ἡ +Ἰακώβου +καί +αἱ +λοιπαί +σύν +αὐταῖς +ἔλεγον +πρός +τούς +ἀποστόλους +ταῦτα +καί +ἐφάνησαν +ἐνώπιον +αὐτῶν +ὡσεί +λῆρος +τά +ῥήματα +ταῦτα +καί +ἠπίστουν +αὐταῖς +δέ +Ὁ +Πέτρος +ἀναστάς +ἔδραμεν +ἐπί +τό +μνημεῖον +καί +παρακύψας +βλέπει +τά +ὀθόνια +μόνα +καί +ἀπῆλθεν +πρός +αὑτόν +θαυμάζων +τό +γεγονός +Καί +ἰδού +δύο +ἐξ +αὐτῶν +ἐν +αὐτῇ +τῇ +ἡμέρᾳ +ἦσαν +πορευόμενοι +εἰς +κώμην +ἀπέχουσαν +σταδίους +ἑξήκοντα +ἀπό +Ἱερουσαλήμ +ᾗ +ὄνομα +Ἐμμαοῦς +καί +αὐτοί +ὡμίλουν +πρός +ἀλλήλους +περί +πάντων +τῶν +συμβεβηκότων +τούτων +καί +ἐγένετο +ἐν +τῷ +ὁμιλεῖν +αὐτούς +καί +συνζητεῖν +καί +αὐτός +Ἰησοῦς +ἐγγίσας +συνεπορεύετο +αὐτοῖς +δέ +οἱ +ὀφθαλμοί +αὐτῶν +ἐκρατοῦντο +τοῦ +μή +ἐπιγνῶναι +αὐτόν +δέ +εἶπεν +πρός +αὐτούς +Τίνες +οἱ +λόγοι +οὗτοι +οὕς +ἀντιβάλλετε +πρός +ἀλλήλους +περιπατοῦντες +καί +ἐστάθησαν +σκυθρωποί +δέ +ἀποκριθείς +εἷς +ὀνόματι +Κλεοπᾶς +εἶπεν +πρός +αὐτόν +Σύ +μόνος +παροικεῖς +Ἱερουσαλήμ +καί +οὐκ +ἔγνως +τά +γενόμενα +ἐν +αὐτῇ +ἐν +ταῖς +ἡμέραις +ταύταις +καί +εἶπεν +αὐτοῖς +Ποῖα +δέ +οἱ +εἶπαν +αὐτῷ +Τά +περί +Ἰησοῦ +τοῦ +Ναζαρηνοῦ +ὅς +ἐγένετο +ἀνήρ +προφήτης +δυνατός +ἐν +ἔργῳ +καί +λόγῳ +ἐναντίον +τοῦ +Θεοῦ +καί +παντός +τοῦ +λαοῦ +τε +ὅπως +παρέδωκαν +αὐτόν +οἱ +ἀρχιερεῖς +καί +οἱ +ἄρχοντες +ἡμῶν +εἰς +κρίμα +θανάτου +καί +ἐσταύρωσαν +αὐτόν +δέ +ἡμεῖς +ἠλπίζομεν +ὅτι +αὐτός +ἐστιν +ὁ +μέλλων +λυτροῦσθαι +τόν +Ἰσραήλ +ἀλλά +γε +καί +σύν +πᾶσιν +τούτοις +τρίτην +ταύτην +ἡμέραν +ἄγει +ἀφ’ +οὗ +ταῦτα +ἐγένετο +ἀλλά +καί +γυναῖκες +τινες +ἐξ +ἡμῶν +ἐξέστησαν +ἡμᾶς +γενόμεναι +ὀρθριναί +ἐπί +τό +μνημεῖον +καί +μή +εὑροῦσαι +τό +σῶμα +αὐτοῦ +ἦλθον +λέγουσαι +καί +ὀπτασίαν +ἀγγέλων +ἑωρακέναι +οἵ +λέγουσιν +αὐτόν +ζῆν +καί +ἀπῆλθον +τινες +τῶν +σύν +ἡμῖν +ἐπί +τό +μνημεῖον +καί +εὗρον +οὕτως +καθώς +καί +αἱ +γυναῖκες +εἶπον +δέ +αὐτόν +οὐκ +εἶδον +καί +αὐτός +εἶπεν +πρός +αὐτούς +Ὦ +ἀνόητοι +καί +βραδεῖς +τῇ +καρδίᾳ +τοῦ +πιστεύειν +ἐπί +πᾶσιν +οἷς +ἐλάλησαν +οἱ +προφῆται +οὐχί +ἔδει +ταῦτα +παθεῖν +τόν +Χριστόν +καί +εἰσελθεῖν +εἰς +τήν +δόξαν +αὐτοῦ +καί +ἀρξάμενος +ἀπό +Μωϋσέως +καί +ἀπό +πάντων +τῶν +προφητῶν +διερμήνευσεν +αὐτοῖς +ἐν +πάσαις +ταῖς +γραφαῖς +τά +περί +ἑαυτοῦ +Καί +ἤγγισαν +εἰς +τήν +κώμην +οὗ +ἐπορεύοντο +καί +αὐτός +προσεποιήσατο +πορρώτερον +πορεύεσθαι +καί +παρεβιάσαντο +αὐτόν +λέγοντες +Μεῖνον +μεθ’ +ἡμῶν +ὅτι +πρός +ἑσπέραν +ἐστίν +καί +κέκλικεν +ἤδη +ἡ +ἡμέρα +καί +εἰσῆλθεν +τοῦ +μεῖναι +σύν +αὐτοῖς +καί +ἐγένετο +ἐν +τῷ +κατακλιθῆναι +αὐτόν +μετ’ +αὐτῶν +λαβών +τόν +ἄρτον +εὐλόγησεν +καί +κλάσας +ἐπεδίδου +αὐτοῖς +δέ +αὐτῶν +οἱ +ὀφθαλμοί +διηνοίχθησαν +καί +ἐπέγνωσαν +αὐτόν +καί +αὐτός +ἄφαντος +ἐγένετο +ἀπ’ +αὐτῶν +καί +εἶπαν +πρός +ἀλλήλους +Οὐχί +ἡ +καρδία +ἡμῶν +καιομένη +ἦν +ἐν +ἡμῖν +ὡς +ἐλάλει +ἡμῖν +ἐν +τῇ +ὁδῷ +ὡς +διήνοιγεν +ἡμῖν +τάς +γραφάς +Καί +ἀναστάντες +αὐτῇ +τῇ +ὥρᾳ +ὑπέστρεψαν +εἰς +Ἱερουσαλήμ +καί +εὗρον +ἠθροισμένους +τούς +ἕνδεκα +καί +τούς +σύν +αὐτοῖς +λέγοντας +ὅτι +ὄντως +ἠγέρθη +ὁ +Κύριος +καί +ὤφθη +Σίμωνι +καί +αὐτοί +ἐξηγοῦντο +τά +ἐν +τῇ +ὁδῷ +καί +ὡς +ἐγνώσθη +αὐτοῖς +ἐν +τῇ +κλάσει +τοῦ +ἄρτου +δέ +Ταῦτα +αὐτῶν +λαλούντων +αὐτός +ἔστη +ἐν +μέσῳ +αὐτῶν +καί +λέγει +αὐτοῖς +Εἰρήνη +ὑμῖν +δέ +πτοηθέντες +καί +ἔμφοβοι +γενόμενοι +ἐδόκουν +πνεῦμα +θεωρεῖν +καί +εἶπεν +αὐτοῖς +Τί +τεταραγμένοι +ἐστέ +καί +διά +τί +διαλογισμοί +ἀναβαίνουσιν +ἐν +τῇ +καρδίᾳ +ὑμῶν +ἴδετε +τάς +χεῖρας +μου +καί +τούς +πόδας +μου +ὅτι +ἐγώ +εἰμι +αὐτός +ψηλαφήσατε +με +καί +ἴδετε +ὅτι +πνεῦμα +σάρκα +καί +ὀστέα +οὐκ +ἔχει +καθώς +ἐμέ +ἔχοντα +θεωρεῖτε +καί +τοῦτο +εἰπών +ἔδειξεν +αὐτοῖς +τάς +χεῖρας +καί +τούς +πόδας +δέ +ἔτι +ἀπιστούντων +αὐτῶν +ἀπό +τῆς +χαρᾶς +καί +θαυμαζόντων +εἶπεν +αὐτοῖς +Ἔχετε +τι +βρώσιμον +ἐνθάδε +δέ +οἱ +ἐπέδωκαν +αὐτῷ +ἰχθύος +ὀπτοῦ +μέρος +καί +λαβών +ἐνώπιον +αὐτῶν +ἔφαγεν +δέ +Εἶπεν +πρός +αὐτούς +Οὗτοι +οἱ +λόγοι +μου +οὕς +ἐλάλησα +πρός +ὑμᾶς +ἔτι +ὤν +σύν +ὑμῖν +ὅτι +δεῖ +πληρωθῆναι +πάντα +τά +γεγραμμένα +ἐν +τῷ +νόμῳ +Μωϋσέως +καί +τοῖς +προφήταις +καί +ψαλμοῖς +περί +ἐμοῦ +τότε +διήνοιξεν +αὐτῶν +τόν +νοῦν +τοῦ +συνιέναι +τάς +γραφάς +καί +εἶπεν +αὐτοῖς +ὅτι +οὕτως +γέγραπται +παθεῖν +τόν +Χριστόν +καί +ἀναστῆναι +ἐκ +νεκρῶν +τῇ +τρίτῃ +ἡμέρᾳ +καί +κηρυχθῆναι +ἐπί +τῷ +ὀνόματι +αὐτοῦ +μετάνοιαν +εἰς +ἄφεσιν +ἁμαρτιῶν +εἰς +πάντα +τά +ἔθνη +ἀρξάμενοι +ἀπό +Ἱερουσαλήμ +ὑμεῖς +μάρτυρες +τούτων +καί +ἰδού +ἐγώ +ἐξαποστέλλω +τήν +ἐπαγγελίαν +τοῦ +Πατρός +μου +ἐφ’ +ὑμᾶς +δέ +ὑμεῖς +καθίσατε +ἐν +τῇ +πόλει +ἕως +οὗ +ἐνδύσησθε +ἐξ +ὕψους +δύναμιν +δέ +Ἐξήγαγεν +αὐτούς +ἕως +πρός +Βηθανίαν +καί +ἐπάρας +τάς +χεῖρας +αὐτοῦ +εὐλόγησεν +αὐτούς +καί +ἐγένετο +ἐν +τῷ +εὐλογεῖν +αὐτόν +αὐτούς +διέστη +ἀπ’ +αὐτῶν +καί +ἀνεφέρετο +εἰς +τόν +οὐρανόν +καί +αὐτοί +προσκυνήσαντες +αὐτόν +ὑπέστρεψαν +εἰς +Ἱερουσαλήμ +μετά +χαρᾶς +μεγάλης +καί +ἦσαν +εὐλογοῦντες +διά +παντός +ἐν +τῷ +ἱερῷ +τόν +Θεόν +Ἐν +ἀρχῇ +ἦν +ὁ +Λόγος +καί +ὁ +Λόγος +ἦν +πρός +τόν +Θεόν +καί +Θεός +ἦν +ὁ +Λόγος +Οὗτος +ἦν +ἐν +ἀρχῇ +πρός +τόν +Θεόν +πάντα +δι’ +αὐτοῦ +ἐγένετο +καί +χωρίς +αὐτοῦ +ἐγένετο +οὐδέ +ἕν +ὅ +γέγονεν +ἐν +αὐτῷ +ζωή +ἦν +καί +ἡ +ζωή +ἦν +τό +φῶς +τῶν +ἀνθρώπων +καί +τό +φῶς +ἐν +τῇ +σκοτίᾳ +φαίνει +καί +ἡ +σκοτία +αὐτό +οὐ +κατέλαβεν +Ἐγένετο +ἄνθρωπος +ἀπεσταλμένος +παρά +Θεοῦ +ὄνομα +αὐτῷ +Ἰωάνης +οὗτος +ἦλθεν +εἰς +μαρτυρίαν +ἵνα +μαρτυρήσῃ +περί +τοῦ +φωτός +ἵνα +πάντες +πιστεύσωσιν +δι’ +αὐτοῦ +οὐκ +ἦν +ἐκεῖνος +τό +φῶς +ἀλλ’ +ἵνα +μαρτυρήσῃ +περί +τοῦ +φωτός +τό +φῶς +τό +ἀληθινόν +ὅ +φωτίζει +πάντα +ἄνθρωπον +Ἦν +ἐρχόμενον +εἰς +τόν +κόσμον +ἐν +τῷ +κόσμῳ +ἦν +καί +ὁ +κόσμος +δι’ +αὐτοῦ +ἐγένετο +καί +ὁ +κόσμος +αὐτόν +οὐκ +ἔγνω +εἰς +τά +ἴδια +ἦλθεν +καί +οἱ +ἴδιοι +αὐτόν +οὐ +παρέλαβον +δέ +ὅσοι +ἔλαβον +αὐτόν +ἔδωκεν +ἐξουσίαν +τέκνα +Θεοῦ +γενέσθαι +αὐτοῖς +τοῖς +πιστεύουσιν +εἰς +τό +ὄνομα +αὐτοῦ +οἵ +οὐκ +ἐξ +αἱμάτων +οὐδέ +ἐκ +θελήματος +σαρκός +οὐδέ +ἐκ +θελήματος +ἀνδρός +ἀλλ’ +ἐκ +Θεοῦ +ἐγεννήθησαν +Καί +ὁ +Λόγος +σάρξ +ἐγένετο +καί +ἐσκήνωσεν +ἐν +ἡμῖν +καί +ἐθεασάμεθα +τήν +δόξαν +αὐτοῦ +δόξαν +ὡς +μονογενοῦς +παρά +Πατρός +πλήρης +χάριτος +καί +ἀληθείας +Ἰωάνης +μαρτυρεῖ +περί +αὐτοῦ +καί +κέκραγεν +λέγων +Οὗτος +ἦν +ὅν +εἶπον +Ὁ +ὀπίσω +μου +ἐρχόμενος +ἔμπροσθεν +μου +γέγονεν +ὅτι +πρῶτος +μου +ἦν +ὅτι +ἐκ +τοῦ +πληρώματος +αὐτοῦ +ἡμεῖς +πάντες +ἐλάβομεν +καί +χάριν +ἀντί +χάριτος +ὅτι +ὁ +νόμος +διά +Μωϋσέως +ἐδόθη +ἡ +χάρις +καί +ἡ +ἀλήθεια +διά +Ἰησοῦ +Χριστοῦ +ἐγένετο +Θεόν +οὐδείς +ἑώρακεν +πώποτε +μονογενής +Θεός +ὁ +ὤν +εἰς +τόν +κόλπον +τοῦ +Πατρός +ἐκεῖνος +ἐξηγήσατο +Καί +αὕτη +ἐστίν +ἡ +μαρτυρία +τοῦ +Ἰωάνου +ὅτε +ἀπέστειλαν +πρός +αὐτόν +οἱ +Ἰουδαῖοι +ἐξ +Ἱεροσολύμων +ἱερεῖς +καί +Λευείτας +ἵνα +ἐρωτήσωσιν +αὐτόν +Σύ +τίς +εἶ +καί +ὡμολόγησεν +καί +οὐκ +ἠρνήσατο +καί +ὡμολόγησεν +ὅτι +Ἐγώ +οὐκ +εἰμί +ὁ +Χριστός +καί +ἠρώτησαν +αὐτόν +οὖν +Τί +σύ +Ἠλείας +εἶ +καί +λέγει +Οὐκ +εἰμί +Ὁ +προφήτης +εἶ +σύ +καί +ἀπεκρίθη +Οὔ +οὖν +εἶπαν +αὐτῷ +Τίς +εἶ +ἵνα +ἀπόκρισιν +δῶμεν +τοῖς +πέμψασιν +ἡμᾶς +τί +λέγεις +περί +σεαυτοῦ +ἔφη +Ἐγώ +φωνή +βοῶντος +ἐν +τῇ +ἐρήμῳ +Εὐθύνατε +τήν +ὁδόν +Κυρίου +καθώς +εἶπεν +Ἠσαΐας +ὁ +προφήτης +Καί +ἀπεσταλμένοι +ἦσαν +ἐκ +τῶν +Φαρισαίων +καί +ἠρώτησαν +αὐτόν +καί +εἶπαν +αὐτῷ +οὖν +Τί +βαπτίζεις +εἰ +σύ +οὐκ +εἶ +ὁ +Χριστός +οὐδέ +Ἠλείας +οὐδέ +ὁ +προφήτης +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰωάνης +λέγων +Ἐγώ +βαπτίζω +ἐν +ὕδατι +μέσος +ὑμῶν +στήκει +ὅν +ὑμεῖς +οὐκ +οἴδατε +ὁ +ὀπίσω +μου +ἐρχόμενος +οὗ +οὐκ +εἰμί +ἐγώ +ἄξιος +ἵνα +λύσω +αὐτοῦ +τόν +ἱμάντα +τοῦ +ὑποδήματος +Ταῦτα +ἐν +Βηθανίᾳ +ἐγένετο +πέραν +τοῦ +Ἰορδάνου +ὅπου +ἦν +βαπτίζων +ὁ +Ἰωάνης +Τῇ +ἐπαύριον +βλέπει +τόν +Ἰησοῦν +ἐρχόμενον +πρός +αὐτόν +καί +λέγει +Ἴδε +ὁ +Ἀμνός +τοῦ +Θεοῦ +ὁ +αἴρων +τήν +ἁμαρτίαν +τοῦ +κόσμου +οὗτος +ἐστιν +ὑπέρ +οὗ +ἐγώ +εἶπον +Ὀπίσω +μου +ἔρχεται +ἀνήρ +ὅς +ἔμπροσθεν +μου +γέγονεν +ὅτι +πρῶτος +μου +ἦν +κἀγώ +οὐκ +ᾔδειν +αὐτόν +ἀλλ’ +ἵνα +φανερωθῇ +τῷ +Ἰσραήλ +διά +τοῦτο +ἦλθον +ἐγώ +ἐν +ὕδατι +βαπτίζων +Καί +ἐμαρτύρησεν +Ἰωάνης +λέγων +ὅτι +Τεθέαμαι +τό +Πνεῦμα +καταβαῖνον +ὡς +περιστεράν +ἐξ +οὐρανοῦ +καί +ἔμεινεν +ἐπ’ +αὐτόν +κἀγώ +οὐκ +ᾔδειν +αὐτόν +ἀλλ’ +ὁ +πέμψας +με +βαπτίζειν +ἐν +ὕδατι +ἐκεῖνος +μοι +εἶπεν +ἄν +Ἐφ’ +ὅν +ἴδῃς +τό +Πνεῦμα +καταβαῖνον +καί +μένον +ἐπ’ +αὐτόν +οὗτος +ἐστιν +ὁ +βαπτίζων +ἐν +Πνεύματι +Ἁγίῳ +κἀγώ +ἑώρακα +καί +μεμαρτύρηκα +ὅτι +οὗτος +ἐστιν +ὁ +Υἱός +τοῦ +Θεοῦ +Τῇ +ἐπαύριον +πάλιν +εἱστήκει +ὁ +Ἰωάνης +καί +ἐκ +τῶν +μαθητῶν +αὐτοῦ +δύο +καί +ἐμβλέψας +τῷ +Ἰησοῦ +περιπατοῦντι +λέγει +Ἴδε +ὁ +Ἀμνός +τοῦ +Θεοῦ +καί +ἤκουσαν +οἱ +δύο +μαθηταί +αὐτοῦ +λαλοῦντος +καί +ἠκολούθησαν +τῷ +Ἰησοῦ +δέ +ὁ +Ἰησοῦς +στραφείς +καί +θεασάμενος +αὐτούς +ἀκολουθοῦντας +λέγει +αὐτοῖς +Τί +ζητεῖτε +δέ +οἱ +εἶπαν +αὐτῷ +Ῥαββεί +ὅ +λέγεται +μεθερμηνευόμενον +Διδάσκαλε +ποῦ +μένεις +λέγει +αὐτοῖς +Ἔρχεσθε +καί +ὄψεσθε +οὖν +ἦλθαν +καί +εἶδαν +ποῦ +μένει +καί +παρ’ +αὐτῷ +ἔμειναν +τήν +ἡμέραν +ἐκείνην +ὥρα +ἦν +ὡς +δεκάτη +Ἦν +Ἀνδρέας +ὁ +ἀδελφός +Σίμωνος +Πέτρου +εἷς +ἐκ +τῶν +δύο +τῶν +ἀκουσάντων +παρά +Ἰωάνου +καί +ἀκολουθησάντων +αὐτῷ +εὑρίσκει +οὗτος +πρῶτον +τόν +ἀδελφόν +τόν +ἴδιον +Σίμωνα +καί +λέγει +αὐτῷ +Εὑρήκαμεν +τόν +Μεσσίαν +ὅ +ἐστιν +μεθερμηνευόμενον +Χριστός +ἤγαγεν +αὐτόν +πρός +τόν +Ἰησοῦν +ἐμβλέψας +αὐτῷ +ὁ +Ἰησοῦς +εἶπεν +Σύ +εἶ +Σίμων +ὁ +υἱός +Ἰωάνου +σύ +κληθήσῃ +Κηφᾶς +ὅ +ἑρμηνεύεται +Πέτρος +Τῇ +ἐπαύριον +ἠθέλησεν +ἐξελθεῖν +εἰς +τήν +Γαλιλαίαν +καί +εὑρίσκει +Φίλιππον +καί +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἀκολούθει +μοι +δέ +ἦν +ὁ +Φίλιππος +ἀπό +Βηθσαϊδά +ἐκ +τῆς +πόλεως +Ἀνδρέου +καί +Πέτρου +εὑρίσκει +Φίλιππος +τόν +Ναθαναήλ +καί +λέγει +αὐτῷ +Ὅν +ἔγραψεν +Μωϋσῆς +ἐν +τῷ +νόμῳ +καί +οἱ +προφῆται +εὑρήκαμεν +Ἰησοῦν +υἱόν +τοῦ +Ἰωσήφ +τόν +ἀπό +Ναζαρέτ +καί +εἶπεν +αὐτῷ +Ναθαναήλ +Ἐκ +Ναζαρέτ +εἶναι +δύναται +τι +ἀγαθόν +λέγει +αὐτῷ +ὁ +Φίλιππος +Ἔρχου +καί +ἴδε +εἶδεν +Ἰησοῦς +τόν +Ναθαναήλ +ἐρχόμενον +πρός +αὐτόν +καί +λέγει +περί +αὐτοῦ +Ἴδε +ἀληθῶς +Ἰσραηλείτης +ἐν +ᾧ +δόλος +οὐκ +ἔστιν +λέγει +αὐτῷ +Ναθαναήλ +Πόθεν +με +γινώσκεις +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῷ +Πρό +τοῦ +σε +Φίλιππον +φωνῆσαι +ὄντα +ὑπό +τήν +συκῆν +σε +εἶδον +ἀπεκρίθη +αὐτῷ +Ναθαναήλ +Ῥαββεί +σύ +εἶ +ὁ +Υἱός +τοῦ +Θεοῦ +σύ +Βασιλεύς +τοῦ +Ἰσραήλ +εἶ +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῷ +Ὅτι +εἶπον +σοι +ὅτι +εἶδον +σε +ὑποκάτω +τῆς +συκῆς +πιστεύεις +μείζω +τούτων +ὄψῃ +καί +λέγει +αὐτῷ +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ὄψεσθε +τόν +οὐρανόν +ἀνεῳγότα +καί +τούς +ἀγγέλους +τοῦ +Θεοῦ +ἀναβαίνοντας +καί +καταβαίνοντας +ἐπί +τόν +Υἱόν +τοῦ +ἀνθρώπου +Καί +τῇ +ἡμέρᾳ +τῇ +τρίτῃ +γάμος +ἐγένετο +ἐν +Κανά +τῆς +Γαλιλαίας +καί +ἦν +ἡ +μήτηρ +τοῦ +Ἰησοῦ +ἐκεῖ +δέ +ἐκλήθη +καί +ὁ +Ἰησοῦς +καί +οἱ +μαθηταί +αὐτοῦ +εἰς +τόν +γάμον +καί +ὑστερήσαντος +οἴνου +λέγει +ἡ +μήτηρ +τοῦ +Ἰησοῦ +πρός +αὐτόν +Οἶνον +οὐκ +ἔχουσιν +καί +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Τί +ἐμοί +καί +σοί +γύναι +οὔπω +ἥκει +ἡ +ὥρα +μου +λέγει +ἡ +μήτηρ +αὐτοῦ +τοῖς +διακόνοις +τι +ἄν +Ὅ +λέγῃ +ὑμῖν +ποιήσατε +δέ +ἦσαν +κείμεναι +ἐκεῖ +λίθιναι +ὑδρίαι +ἕξ +κατά +τόν +καθαρισμόν +τῶν +Ἰουδαίων +χωροῦσαι +ἀνά +μετρητάς +δύο +ἤ +τρεῖς +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Γεμίσατε +τάς +ὑδρίας +ὕδατος +καί +ἐγέμισαν +αὐτάς +ἕως +ἄνω +καί +λέγει +αὐτοῖς +Ἀντλήσατε +νῦν +καί +φέρετε +τῷ +ἀρχιτρικλίνῳ +δέ +οἱ +ἤνεγκαν +δέ +ὡς +ἐγεύσατο +ὁ +ἀρχιτρίκλινος +τό +ὕδωρ +οἶνον +γεγενημένον +καί +οὐκ +ᾔδει +πόθεν +ἐστίν +δέ +ᾔδεισαν +οἱ +διάκονοι +οἱ +ἠντληκότες +τό +ὕδωρ +φωνεῖ +τόν +νυμφίον +ὁ +ἀρχιτρίκλινος +καί +λέγει +αὐτῷ +Πᾶς +ἄνθρωπος +πρῶτον +τόν +καλόν +οἶνον +τίθησιν +καί +ὅταν +μεθυσθῶσιν +τόν +ἐλάσσω +σύ +τετήρηκας +τόν +καλόν +οἶνον +ἕως +ἄρτι +Ταύτην +ἀρχήν +τῶν +σημείων +ἐποίησεν +ὁ +Ἰησοῦς +ἐν +Κανά +τῆς +Γαλιλαίας +καί +ἐφανέρωσεν +τήν +δόξαν +αὐτοῦ +καί +ἐπίστευσαν +εἰς +αὐτόν +οἱ +μαθηταί +αὐτοῦ +Μετά +τοῦτο +κατέβη +εἰς +Καφαρναούμ +αὐτός +καί +ἡ +μήτηρ +αὐτοῦ +καί +οἱ +ἀδελφοί +καί +οἱ +μαθηταί +αὐτοῦ +καί +ἐκεῖ +ἔμειναν +οὐ +πολλάς +ἡμέρας +Καί +ἐγγύς +ἦν +τό +πάσχα +τῶν +Ἰουδαίων +καί +ἀνέβη +εἰς +Ἱεροσόλυμα +ὁ +Ἰησοῦς +καί +εὗρεν +ἐν +τῷ +ἱερῷ +τούς +πωλοῦντας +βόας +καί +πρόβατα +καί +περιστεράς +καί +τούς +κερματιστάς +καθημένους +καί +ποιήσας +φραγέλλιον +ἐκ +σχοινίων +πάντας +ἐξέβαλεν +ἐκ +τοῦ +ἱεροῦ +τε +τά +πρόβατα +καί +τούς +βόας +καί +τῶν +κολλυβιστῶν +τά +κέρματα +ἐξέχεεν +καί +τάς +τραπέζας +ἀνέτρεψεν +καί +τοῖς +τάς +περιστεράς +πωλοῦσιν +εἶπεν +Ἄρατε +ταῦτα +ἐντεῦθεν +μή +ποιεῖτε +τόν +οἶκον +τοῦ +Πατρός +μου +οἶκον +ἐμπορίου +ἐμνήσθησαν +οἱ +μαθηταί +αὐτοῦ +ὅτι +γεγραμμένον +ἐστίν +Ὁ +ζῆλος +τοῦ +οἴκου +σου +καταφάγεται +με +οὖν +ἀπεκρίθησαν +οἱ +Ἰουδαῖοι +καί +εἶπαν +αὐτῷ +Τί +σημεῖον +δεικνύεις +ἡμῖν +ὅτι +ταῦτα +ποιεῖς +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτοῖς +Λύσατε +τόν +ναόν +τοῦτον +καί +ἐν +τρισίν +ἡμέραις +ἐγερῶ +αὐτόν +οὖν +εἶπαν +οἱ +Ἰουδαῖοι +Τεσσεράκοντα +καί +ἕξ +ἔτεσιν +οἰκοδομήθη +ὁ +ναός +οὗτος +καί +σύ +ἐν +τρισίν +ἡμέραις +ἐγερεῖς +αὐτόν +δέ +ἐκεῖνος +ἔλεγεν +περί +τοῦ +ναοῦ +τοῦ +σώματος +αὐτοῦ +οὖν +ὅτε +ἠγέρθη +ἐκ +νεκρῶν +ἐμνήσθησαν +οἱ +μαθηταί +αὐτοῦ +ὅτι +τοῦτο +ἔλεγεν +καί +ἐπίστευσαν +τῇ +γραφῇ +καί +τῷ +λόγῳ +ὅν +εἶπεν +ὁ +Ἰησοῦς +δέ +Ὡς +ἦν +ἐν +τοῖς +Ἱεροσολύμοις +ἐν +τῷ +πάσχα +ἐν +τῇ +ἑορτῇ +πολλοί +ἐπίστευσαν +εἰς +τό +ὄνομα +αὐτοῦ +θεωροῦντες +αὐτοῦ +τά +σημεῖα +ἅ +ἐποίει +δέ +αὐτός +Ἰησοῦς +οὐκ +ἐπίστευεν +αὑτόν +αὐτοῖς +διά +τό +αὐτόν +γινώσκειν +πάντας +καί +ὅτι +οὐ +χρείαν +εἶχεν +ἵνα +τις +μαρτυρήσῃ +περί +τοῦ +ἀνθρώπου +γάρ +αὐτός +ἐγίνωσκεν +τί +ἦν +ἐν +τῷ +ἀνθρώπῳ +δέ +Ἦν +ἄνθρωπος +ἐκ +τῶν +Φαρισαίων +ἄρχων +τῶν +Ἰουδαίων +Νικόδημος +ὄνομα +αὐτῷ +οὗτος +ἦλθεν +πρός +αὐτόν +νυκτός +καί +εἶπεν +αὐτῷ +Ῥαββεί +οἴδαμεν +ὅτι +ἀπό +Θεοῦ +ἐλήλυθας +διδάσκαλος +γάρ +οὐδείς +δύναται +ταῦτα +τά +σημεῖα +ἅ +σύ +ποιεῖς +ποιεῖν +ἐάν +μή +ᾖ +ὁ +Θεός +μετ’ +αὐτοῦ +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῷ +Ἀμήν +ἀμήν +λέγω +σοι +ἐάν +μή +τις +γεννηθῇ +ἄνωθεν +οὐ +δύναται +ἰδεῖν +τήν +βασιλείαν +τοῦ +Θεοῦ +λέγει +πρός +αὐτόν +ὁ +Νικόδημος +Πῶς +δύναται +ἄνθρωπος +γεννηθῆναι +γέρων +ὤν +μή +δύναται +εἰς +τήν +κοιλίαν +τῆς +μητρός +αὐτοῦ +δεύτερον +εἰσελθεῖν +καί +γεννηθῆναι +ἀπεκρίθη +Ἰησοῦς +Ἀμήν +ἀμήν +λέγω +σοι +ἐάν +μή +τις +γεννηθῇ +ἐξ +ὕδατος +καί +Πνεύματος +οὐ +δύναται +εἰσελθεῖν +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +τό +γεγεννημένον +ἐκ +τῆς +σαρκός +σάρξ +ἐστιν +καί +τό +γεγεννημένον +ἐκ +τοῦ +Πνεύματος +πνεῦμα +ἐστιν +μή +θαυμάσῃς +ὅτι +εἶπον +σοι +Δεῖ +ὑμᾶς +γεννηθῆναι +ἄνωθεν +τό +πνεῦμα +ὅπου +θέλει +πνεῖ +καί +τήν +φωνήν +αὐτοῦ +ἀκούεις +ἀλλ’ +οὐκ +οἶδας +πόθεν +ἔρχεται +καί +ποῦ +ὑπάγει +οὕτως +ἐστίν +πᾶς +ὁ +γεγεννημένος +ἐκ +τοῦ +Πνεύματος +ἀπεκρίθη +Νικόδημος +καί +εἶπεν +αὐτῷ +Πῶς +δύναται +ταῦτα +γενέσθαι +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῷ +Σύ +εἶ +ὁ +διδάσκαλος +τοῦ +Ἰσραήλ +καί +ταῦτα +οὐ +γινώσκεις +ἀμήν +ἀμήν +λέγω +σοι +ὅτι +ὅ +οἴδαμεν +λαλοῦμεν +καί +ὅ +ἑωράκαμεν +μαρτυροῦμεν +καί +τήν +μαρτυρίαν +ἡμῶν +οὐ +λαμβάνετε +εἰ +τά +ἐπίγεια +εἶπον +ὑμῖν +καί +οὐ +πιστεύετε +πῶς +ἐάν +εἴπω +ὑμῖν +τά +ἐπουράνια +πιστεύσετε +καί +οὐδείς +ἀναβέβηκεν +εἰς +τόν +οὐρανόν +εἰ +μή +ὁ +ἐκ +τοῦ +οὐρανοῦ +καταβάς +ὁ +Υἱός +τοῦ +ἀνθρώπου +καί +καθώς +Μωϋσῆς +ὕψωσεν +τόν +ὄφιν +ἐν +τῇ +ἐρήμῳ +οὕτως +δεῖ +ὑψωθῆναι +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἵνα +πᾶς +ὁ +πιστεύων +ἐν +αὐτῷ +ἔχῃ +ζωήν +αἰώνιον +γάρ +Οὕτως +ἠγάπησεν +ὁ +Θεός +τόν +κόσμον +ὥστε +τόν +Υἱόν +τόν +μονογενῆ +ἔδωκεν +ἵνα +πᾶς +ὁ +πιστεύων +εἰς +αὐτόν +μή +ἀπόληται +ἀλλ’ +ἔχῃ +ζωήν +αἰώνιον +γάρ +οὐ +ἀπέστειλεν +ὁ +Θεός +τόν +Υἱόν +εἰς +τόν +κόσμον +ἵνα +κρίνῃ +τόν +κόσμον +ἀλλ’ +ἵνα +σωθῇ +ὁ +κόσμος +δι’ +αὐτοῦ +ὁ +πιστεύων +εἰς +αὐτόν +οὐ +κρίνεται +ὁ +μή +πιστεύων +ἤδη +κέκριται +ὅτι +μή +πεπίστευκεν +εἰς +τό +ὄνομα +τοῦ +μονογενοῦς +Υἱοῦ +τοῦ +Θεοῦ +δέ +αὕτη +ἐστιν +ἡ +κρίσις +ὅτι +τό +φῶς +ἐλήλυθεν +εἰς +τόν +κόσμον +καί +ἠγάπησαν +οἱ +ἄνθρωποι +μᾶλλον +τό +σκότος +ἤ +τό +φῶς +γάρ +ἦν +πονηρά +αὐτῶν +τά +ἔργα +γάρ +πᾶς +ὁ +φαῦλα +πράσσων +μισεῖ +τό +φῶς +καί +οὐκ +ἔρχεται +πρός +τό +φῶς +ἵνα +μή +ἐλεγχθῇ +τά +ἔργα +αὐτοῦ +δέ +ὁ +ποιῶν +τήν +ἀλήθειαν +ἔρχεται +πρός +τό +φῶς +ἵνα +φανερωθῇ +αὐτοῦ +τά +ἔργα +ὅτι +ἐν +Θεῷ +ἐστιν +εἰργασμένα +Μετά +ταῦτα +ἦλθεν +ὁ +Ἰησοῦς +καί +οἱ +μαθηταί +αὐτοῦ +εἰς +τήν +Ἰουδαίαν +γῆν +καί +ἐκεῖ +διέτριβεν +μετ’ +αὐτῶν +καί +ἐβάπτιζεν +δέ +ἦν +βαπτίζων +καί +Ἰωάνης +ἐν +Αἰνών +ἐγγύς +τοῦ +Σαλείμ +ὅτι +ὕδατα +πολλά +ἦν +ἐκεῖ +καί +παρεγίνοντο +καί +ἐβαπτίζοντο +γάρ +οὔπω +ἦν +βεβλημένος +εἰς +τήν +φυλακήν +Ἰωάνης +οὖν +Ἐγένετο +ζήτησις +ἐκ +τῶν +μαθητῶν +Ἰωάνου +μετά +Ἰουδαίου +περί +καθαρισμοῦ +καί +ἦλθον +πρός +τόν +Ἰωάνην +καί +εἶπαν +αὐτῷ +Ῥαββεί +ὅς +ἦν +μετά +σοῦ +πέραν +τοῦ +Ἰορδάνου +ᾧ +σύ +μεμαρτύρηκας +ἴδε +οὗτος +βαπτίζει +καί +πάντες +ἔρχονται +πρός +αὐτόν +ἀπεκρίθη +Ἰωάνης +καί +εἶπεν +Οὐ +δύναται +ἄνθρωπος +λαμβάνειν +οὐδέν +ἐάν +μή +ᾖ +δεδομένον +αὐτῷ +ἐκ +τοῦ +οὐρανοῦ +αὐτοί +ὑμεῖς +μοι +μαρτυρεῖτε +ὅτι +εἶπον +Οὐκ +εἰμί +ἐγώ +ὁ +Χριστός +ἀλλ’ +ὅτι +Ἀπεσταλμένος +εἰμί +ἔμπροσθεν +ἐκείνου +Ὁ +ἔχων +τήν +νύμφην +νυμφίος +ἐστίν +δέ +ὁ +φίλος +τοῦ +νυμφίου +ὁ +ἑστηκώς +καί +ἀκούων +αὐτοῦ +χαρᾷ +χαίρει +διά +τήν +φωνήν +τοῦ +νυμφίου +οὖν +αὕτη +ἡ +χαρά +ἡ +ἐμή +πεπλήρωται +δεῖ +ἐκεῖνον +αὐξάνειν +δέ +ἐμέ +ἐλαττοῦσθαι +Ὁ +ἄνωθεν +ἐρχόμενος +ἐπάνω +πάντων +ἐστίν +ὁ +ὤν +ἐκ +τῆς +γῆς +ἐκ +τῆς +γῆς +ἐστιν +καί +ἐκ +τῆς +γῆς +λαλεῖ +ὁ +ἐκ +τοῦ +οὐρανοῦ +ἐρχόμενος +ἐπάνω +πάντων +ἐστίν +ὅ +ἑώρακεν +καί +ἤκουσεν +τοῦτο +μαρτυρεῖ +καί +τήν +μαρτυρίαν +αὐτοῦ +οὐδείς +λαμβάνει +ὁ +λαβών +αὐτοῦ +τήν +μαρτυρίαν +ἐσφράγισεν +ὅτι +ὁ +Θεός +ἀληθής +ἐστιν +γάρ +ὅν +ἀπέστειλεν +ὁ +Θεός +τά +ῥήματα +τοῦ +Θεοῦ +λαλεῖ +γάρ +οὐ +ἐκ +μέτρου +δίδωσιν +τό +Πνεῦμα +ὁ +Πατήρ +ἀγαπᾷ +τόν +Υἱόν +καί +πάντα +δέδωκεν +ἐν +τῇ +χειρί +αὐτοῦ +ὁ +πιστεύων +εἰς +τόν +Υἱόν +ἔχει +ζωήν +αἰώνιον +δέ +ὁ +ἀπειθῶν +τῷ +Υἱῷ +οὐκ +ὄψεται +ζωήν +ἀλλ’ +ἡ +ὀργή +τοῦ +Θεοῦ +μένει +ἐπ’ +αὐτόν +οὖν +Ὡς +ἔγνω +ὁ +Κύριος +ὅτι +ἤκουσαν +οἱ +Φαρισαῖοι +ὅτι +Ἰησοῦς +πλείονας +μαθητάς +ποιεῖ +καί +βαπτίζει +ἤ +Ἰωάνης +καίτοιγε +Ἰησοῦς +αὐτός +οὐκ +ἐβάπτιζεν +ἀλλ’ +οἱ +μαθηταί +αὐτοῦ +ἀφῆκεν +τήν +Ἰουδαίαν +καί +ἀπῆλθεν +πάλιν +εἰς +τήν +Γαλιλαίαν +δέ +Ἔδει +αὐτόν +διέρχεσθαι +διά +τῆς +Σαμαρίας +οὖν +ἔρχεται +εἰς +πόλιν +τῆς +Σαμαρίας +λεγομένην +Συχάρ +πλησίον +τοῦ +χωρίου +ὅ +ἔδωκεν +Ἰακώβ +Ἰωσήφ +τῷ +υἱῷ +αὐτοῦ +δέ +ἦν +ἐκεῖ +πηγή +τοῦ +Ἰακώβ +οὖν +ὁ +Ἰησοῦς +κεκοπιακώς +ἐκ +τῆς +ὁδοιπορίας +ἐκαθέζετο +οὕτως +ἐπί +τῇ +πηγῇ +ὥρα +ἦν +ὡς +ἕκτη +ἔρχεται +γυνή +ἐκ +τῆς +Σαμαρίας +ἀντλῆσαι +ὕδωρ +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Δός +μοι +πεῖν +γάρ +οἱ +μαθηταί +αὐτοῦ +ἀπεληλύθεισαν +εἰς +τήν +πόλιν +ἵνα +τροφάς +ἀγοράσωσιν +οὖν +λέγει +αὐτῷ +ἡ +γυνή +ἡ +Σαμαρεῖτις +Πῶς +σύ +Ἰουδαῖος +ὤν +παρ’ +ἐμοῦ +γυναικός +Σαμαρείτιδος +οὔσης +πεῖν +αἰτεῖς +γάρ +οὐ +συνχρῶνται +Ἰουδαῖοι +Σαμαρείταις +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῇ +Εἰ +ᾔδεις +τήν +δωρεάν +τοῦ +Θεοῦ +καί +τίς +ἐστιν +ὁ +λέγων +σοι +Δός +μοι +πεῖν +ἄν +σύ +ᾔτησας +αὐτόν +καί +ἄν +ἔδωκεν +σοι +ὕδωρ +ζῶν +λέγει +αὐτῷ +Κύριε +οὔτε +ἄντλημα +ἔχεις +καί +τό +φρέαρ +ἐστίν +βαθύ +οὖν +πόθεν +ἔχεις +τό +ὕδωρ +τό +ζῶν +μή +σύ +μείζων +εἶ +τοῦ +πατρός +ἡμῶν +Ἰακώβ +ὅς +ἔδωκεν +ἡμῖν +τό +φρέαρ +καί +αὐτός +ἐξ +αὐτοῦ +ἔπιεν +καί +οἱ +υἱοί +αὐτοῦ +καί +τά +θρέμματα +αὐτοῦ +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῇ +Πᾶς +ὁ +πίνων +ἐκ +τοῦ +ὕδατος +τούτου +διψήσει +πάλιν +δ’ +ἄν +ὅς +πίῃ +ἐκ +τοῦ +ὕδατος +οὗ +ἐγώ +δώσω +αὐτῷ +οὐ +μή +διψήσει +εἰς +τόν +αἰῶνα +ἀλλά +τό +ὕδωρ +ὅ +δώσω +αὐτῷ +γενήσεται +ἐν +αὐτῷ +πηγή +ὕδατος +ἁλλομένου +εἰς +ζωήν +αἰώνιον +λέγει +πρός +αὐτόν +ἡ +γυνή +Κύριε +δός +μοι +τοῦτο +τό +ὕδωρ +ἵνα +μή +διψῶ +μηδέ +διέρχωμαι +ἐνθάδε +ἀντλεῖν +λέγει +αὐτῇ +Ὕπαγε +φώνησον +τόν +ἄνδρα +σου +καί +ἐλθέ +ἐνθάδε +ἀπεκρίθη +ἡ +γυνή +καί +εἶπεν +Οὐκ +ἔχω +ἄνδρα +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Καλῶς +εἶπες +ὅτι +Ἄνδρα +οὐκ +ἔχω +γάρ +πέντε +ἄνδρας +ἔσχες +καί +ὅν +νῦν +ἔχεις +οὐκ +ἔστιν +σου +ἀνήρ +τοῦτο +ἀληθές +εἴρηκας +λέγει +αὐτῷ +ἡ +γυνή +Κύριε +θεωρῶ +ὅτι +προφήτης +εἶ +σύ +οἱ +πατέρες +ἡμῶν +ἐν +τῷ +ὄρει +τούτῳ +προσεκύνησαν +καί +ὑμεῖς +λέγετε +ὅτι +ἐν +Ἱεροσολύμοις +ἐστίν +ὁ +τόπος +ὅπου +προσκυνεῖν +δεῖ +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Πίστευε +μοι +γύναι +ὅτι +ἔρχεται +ὥρα +ὅτε +οὔτε +ἐν +τῷ +ὄρει +τούτῳ +οὔτε +ἐν +Ἱεροσολύμοις +προσκυνήσετε +τῷ +Πατρί +ὑμεῖς +προσκυνεῖτε +ὅ +οὐκ +οἴδατε +ἡμεῖς +προσκυνοῦμεν +ὅ +οἴδαμεν +ὅτι +ἡ +σωτηρία +ἐκ +τῶν +Ἰουδαίων +ἐστίν +ἀλλά +ἔρχεται +ὥρα +καί +νῦν +ἐστιν +ὅτε +οἱ +ἀληθινοί +προσκυνηταί +προσκυνήσουσιν +τῷ +Πατρί +ἐν +πνεύματι +καί +ἀληθείᾳ +γάρ +καί +ὁ +Πατήρ +τοιούτους +ζητεῖ +τούς +προσκυνοῦντας +αὐτόν +Πνεῦμα +ὁ +Θεός +καί +τούς +προσκυνοῦντας +ἐν +πνεύματι +καί +ἀληθείᾳ +προσκυνεῖν +δεῖ +λέγει +αὐτῷ +ἡ +γυνή +Οἶδα +ὅτι +Μεσσίας +ὁ +λεγόμενος +Χριστός +ἔρχεται +ὅταν +ἔλθῃ +ἐκεῖνος +ἀναγγελεῖ +ἡμῖν +ἅπαντα +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Ἐγώ +ὁ +λαλῶν +σοι +εἰμι +Καί +ἐπί +τούτῳ +ἦλθαν +οἱ +μαθηταί +αὐτοῦ +καί +ἐθαύμαζον +ὅτι +μετά +γυναικός +ἐλάλει +μέντοι +οὐδείς +εἶπεν +Τί +ζητεῖς +ἤ +τί +λαλεῖς +μετ’ +αὐτῆς +οὖν +ἀφῆκεν +τήν +ὑδρίαν +αὐτῆς +ἡ +γυνή +καί +ἀπῆλθεν +εἰς +τήν +πόλιν +καί +λέγει +τοῖς +ἀνθρώποις +Δεῦτε +ἴδετε +ἄνθρωπον +ὅς +εἶπεν +μοι +πάντα +ἅ +ἐποίησα +μήτι +οὗτος +ἐστιν +ὁ +Χριστός +ἐξῆλθον +ἐκ +τῆς +πόλεως +καί +ἤρχοντο +πρός +αὐτόν +Ἐν +τῷ +μεταξύ +ἠρώτων +αὐτόν +οἱ +μαθηταί +λέγοντες +Ῥαββεί +φάγε +δέ +ὁ +εἶπεν +αὐτοῖς +Ἐγώ +βρῶσιν +ἔχω +φαγεῖν +ἥν +ὑμεῖς +οὐκ +οἴδατε +οὖν +ἔλεγον +οἱ +μαθηταί +πρός +ἀλλήλους +Μή +τις +ἤνεγκεν +αὐτῷ +φαγεῖν +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ἐμόν +βρῶμα +ἐστιν +ἵνα +ποιῶ +τό +θέλημα +τοῦ +πέμψαντος +με +καί +τελειώσω +αὐτοῦ +τό +ἔργον +οὐχ +ὑμεῖς +λέγετε +ὅτι +Ἔτι +τετράμηνος +ἐστιν +καί +ὁ +θερισμός +ἔρχεται +ἰδού +λέγω +ὑμῖν +ἐπάρατε +τούς +ὀφθαλμούς +ὑμῶν +καί +θεάσασθε +τάς +χώρας +ὅτι +λευκαί +εἰσιν +πρός +θερισμόν +ἤδη +ὁ +θερίζων +μισθόν +λαμβάνει +καί +συνάγει +καρπόν +εἰς +ζωήν +αἰώνιον +ἵνα +ὁμοῦ +χαίρῃ +ὁ +σπείρων +καί +ὁ +θερίζων +γάρ +ἐν +τούτῳ +ὁ +λόγος +ἐστίν +ἀληθινός +ὅτι +ἄλλος +ἐστίν +ὁ +σπείρων +καί +ἄλλος +ὁ +θερίζων +ἐγώ +ἀπέστειλα +ὑμᾶς +θερίζειν +ὅ +οὐχ +ὑμεῖς +κεκοπιάκατε +ἄλλοι +κεκοπιάκασιν +καί +ὑμεῖς +εἰς +τόν +κόπον +αὐτῶν +εἰσεληλύθατε +δέ +Ἐκ +τῆς +πόλεως +ἐκείνης +πολλοί +τῶν +Σαμαρειτῶν +ἐπίστευσαν +εἰς +αὐτόν +διά +τόν +λόγον +τῆς +γυναικός +μαρτυρούσης +ὅτι +Εἶπεν +μοι +πάντα +ἅ +ἐποίησα +οὖν +ὡς +ἦλθον +πρός +αὐτόν +οἱ +Σαμαρεῖται +ἠρώτων +αὐτόν +μεῖναι +παρ’ +αὐτοῖς +καί +ἔμεινεν +ἐκεῖ +δύο +ἡμέρας +καί +πολλῷ +πλείους +ἐπίστευσαν +διά +τόν +λόγον +αὐτοῦ +τε +τῇ +γυναικί +ἔλεγον +ὅτι +Οὐκέτι +διά +τήν +σήν +λαλιάν +πιστεύομεν +γάρ +αὐτοί +ἀκηκόαμεν +καί +οἴδαμεν +ὅτι +οὗτος +ἐστιν +ἀληθῶς +ὁ +Σωτήρ +τοῦ +κόσμου +δέ +Μετά +τάς +δύο +ἡμέρας +ἐξῆλθεν +ἐκεῖθεν +εἰς +τήν +Γαλιλαίαν +γάρ +αὐτός +Ἰησοῦς +ἐμαρτύρησεν +ὅτι +προφήτης +ἐν +τῇ +ἰδίᾳ +πατρίδι +τιμήν +οὐκ +ἔχει +οὖν +ὅτε +ἦλθεν +εἰς +τήν +Γαλιλαίαν +ἐδέξαντο +αὐτόν +οἱ +Γαλιλαῖοι +ἑωρακότες +πάντα +ὅσα +ἐποίησεν +ἐν +Ἱεροσολύμοις +ἐν +τῇ +ἑορτῇ +γάρ +καί +αὐτοί +ἦλθον +εἰς +τήν +ἑορτήν +οὖν +Ἦλθεν +πάλιν +εἰς +τήν +Κανά +τῆς +Γαλιλαίας +ὅπου +ἐποίησεν +τό +ὕδωρ +οἶνον +Καί +ἦν +τις +βασιλικός +οὗ +ὁ +υἱός +ἠσθένει +ἐν +Καφαρναούμ +οὗτος +ἀκούσας +ὅτι +Ἰησοῦς +ἥκει +ἐκ +τῆς +Ἰουδαίας +εἰς +τήν +Γαλιλαίαν +ἀπῆλθεν +πρός +αὐτόν +καί +ἠρώτα +ἵνα +καταβῇ +καί +ἰάσηται +αὐτοῦ +τόν +υἱόν +γάρ +ἤμελλεν +ἀποθνήσκειν +οὖν +εἶπεν +ὁ +Ἰησοῦς +πρός +αὐτόν +Ἐάν +μή +σημεῖα +καί +τέρατα +ἴδητε +οὐ +μή +πιστεύσητε +λέγει +πρός +αὐτόν +ὁ +βασιλικός +Κύριε +κατάβηθι +πρίν +ἀποθανεῖν +τό +παιδίον +μου +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Πορεύου +ὁ +υἱός +σου +ζῇ +ἐπίστευσεν +ὁ +ἄνθρωπος +τῷ +λόγῳ +ὅν +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +καί +ἐπορεύετο +δέ +ἤδη +αὐτοῦ +καταβαίνοντος +οἱ +δοῦλοι +ὑπήντησαν +αὐτῷ +λέγοντες +ὅτι +ὁ +παῖς +αὐτοῦ +ζῇ +οὖν +ἐπύθετο +τήν +ὥραν +παρ’ +αὐτῶν +ἐν +ᾗ +κομψότερον +ἔσχεν +οὖν +εἶπαν +αὐτῷ +ὅτι +Ἐχθές +ὥραν +ἑβδόμην +ἀφῆκεν +αὐτόν +ὁ +πυρετός +οὖν +ἔγνω +ὁ +πατήρ +ὅτι +ἐκείνῃ +τῇ +ὥρᾳ +ἐν +ᾗ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Ὁ +υἱός +σου +ζῇ +καί +ἐπίστευσεν +αὐτός +καί +ἡ +οἰκία +αὐτοῦ +ὅλη +δέ +πάλιν +Τοῦτο +δεύτερον +σημεῖον +ἐποίησεν +ὁ +Ἰησοῦς +ἐλθών +ἐκ +τῆς +Ἰουδαίας +εἰς +τήν +Γαλιλαίαν +Μετά +ταῦτα +ἦν +ἑορτή +τῶν +Ἰουδαίων +καί +ἀνέβη +Ἰησοῦς +εἰς +Ἱεροσόλυμα +δέ +Ἔστιν +ἐν +τοῖς +Ἱεροσολύμοις +ἐπί +τῇ +προβατικῇ +κολυμβήθρα +ἡ +ἐπιλεγομένη +Ἑβραϊστί +Βηθζαθά +πέντε +στοάς +ἔχουσα +ἐν +ταύταις +κατέκειτο +πλῆθος +τῶν +ἀσθενούντων +τυφλῶν +χωλῶν +ξηρῶν +ἐκδεχομένων +τήν +τοῦ +ὕδατος +κίνησιν +γάρ +ἄγγελος +κατά +καιρόν +κατέβαινεν +ἐν +τῇ +κολυμβήθρᾳ +καί +ἐτάρασσε +τό +ὕδωρ +οὖν +ὁ +πρῶτος +ἐμβάς +μετά +τήν +ταραχήν +τοῦ +ὕδατος +ὑγιής +ἐγίνετο +ᾧ +δήποτε +κατείχετο +νοσήματι +δέ +ἦν +τις +ἄνθρωπος +ἐκεῖ +τριάκοντα +καί +ὀκτώ +ἔτη +ἔχων +ἐν +τῇ +ἀσθενείᾳ +αὐτοῦ +ὁ +Ἰησοῦς +τοῦτον +κατακείμενον +ἰδών +καί +γνούς +ὅτι +πολύν +χρόνον +ἤδη +ἔχει +λέγει +αὐτῷ +Θέλεις +ὑγιής +γενέσθαι +ἀπεκρίθη +αὐτῷ +ὁ +ἀσθενῶν +Κύριε +ἄνθρωπον +οὐκ +ἔχω +ἵνα +ὅταν +ταραχθῇ +τό +ὕδωρ +βάλῃ +με +εἰς +τήν +κολυμβήθραν +δέ +ἐν +ᾧ +ἔρχομαι +ἐγώ +ἄλλος +πρό +ἐμοῦ +καταβαίνει +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἔγειρε +ἆρον +τόν +κράβαττον +σου +καί +περιπάτει +καί +εὐθέως +ἐγένετο +ὑγιής +ὁ +ἄνθρωπος +καί +ἦρεν +τόν +κράβαττον +αὐτοῦ +καί +περιεπάτει +δέ +Ἦν +σάββατον +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +οὖν +ἔλεγον +οἱ +Ἰουδαῖοι +τῷ +τεθεραπευμένῳ +Σάββατον +ἐστιν +καί +οὐκ +ἔξεστιν +σοι +ἆραι +τόν +κράβαττον +δέ +ὅς +ἀπεκρίθη +αὐτοῖς +Ὁ +ποιήσας +με +ὑγιῆ +ἐκεῖνος +μοι +εἶπεν +Ἆρον +τόν +κράβαττον +σου +καί +περιπάτει +ἠρώτησαν +αὐτόν +Τίς +ἐστιν +ὁ +ἄνθρωπος +ὁ +εἰπών +σοι +Ἆρον +καί +περιπάτει +δέ +ὁ +ἰαθείς +οὐκ +ᾔδει +τίς +ἐστιν +γάρ +ὁ +Ἰησοῦς +ἐξένευσεν +ὄχλου +ὄντος +ἐν +τῷ +τόπῳ +Μετά +ταῦτα +εὑρίσκει +αὐτόν +ὁ +Ἰησοῦς +ἐν +τῷ +ἱερῷ +καί +εἶπεν +αὐτῷ +Ἴδε +ὑγιής +γέγονας +μηκέτι +ἁμάρτανε +ἵνα +μή +χεῖρον +τι +σοί +γένηται +ἀπῆλθεν +ὁ +ἄνθρωπος +καί +εἶπεν +τοῖς +Ἰουδαίοις +ὅτι +Ἰησοῦς +ἐστιν +ὁ +ποιήσας +αὐτόν +ὑγιῆ +καί +διά +τοῦτο +ἐδίωκον +οἱ +Ἰουδαῖοι +τόν +Ἰησοῦν +ὅτι +ταῦτα +ἐποίει +ἐν +σαββάτῳ +δέ +ὁ +ἀπεκρίνατο +αὐτοῖς +Ὁ +Πατήρ +μου +ἕως +ἄρτι +ἐργάζεται +κἀγώ +ἐργάζομαι +οὖν +διά +τοῦτο +μᾶλλον +ἐζήτουν +αὐτόν +ἀποκτεῖναι +οἱ +Ἰουδαῖοι +ὅτι +οὐ +μόνον +ἔλυεν +τό +σάββατον +ἀλλά +καί +Πατέρα +ἴδιον +ἔλεγεν +τόν +Θεόν +ἴσον +ἑαυτόν +ποιῶν +τῷ +Θεῷ +οὖν +Ἀπεκρίνατο +ὁ +Ἰησοῦς +καί +ἔλεγεν +αὐτοῖς +Ἀμήν +ἀμήν +λέγω +ὑμῖν +οὐ +δύναται +ὁ +Υἱός +ποιεῖν +ἀφ’ +ἑαυτοῦ +οὐδέν +ἄν +μή +βλέπῃ +τι +τόν +Πατέρα +ποιοῦντα +γάρ +ἄν +ἅ +ἐκεῖνος +ποιῇ +ταῦτα +καί +ὁ +Υἱός +ὁμοίως +ποιεῖ +γάρ +ὁ +Πατήρ +φιλεῖ +τόν +Υἱόν +καί +δείκνυσιν +αὐτῷ +πάντα +ἅ +αὐτός +ποιεῖ +καί +μείζονα +τούτων +ἔργα +δείξει +αὐτῷ +ἵνα +ὑμεῖς +θαυμάζητε +γάρ +ὥσπερ +ὁ +Πατήρ +ἐγείρει +τούς +νεκρούς +καί +ζωοποιεῖ +οὕτως +καί +ὁ +Υἱός +οὕς +θέλει +ζωοποιεῖ +γάρ +οὐδέ +ὁ +Πατήρ +κρίνει +οὐδένα +ἀλλά +τήν +κρίσιν +πᾶσαν +δέδωκεν +τῷ +Υἱῷ +ἵνα +πάντες +τιμῶσι +τόν +Υἱόν +καθώς +τιμῶσι +τόν +Πατέρα +ὁ +μή +τιμῶν +τόν +Υἱόν +οὐ +τιμᾷ +τόν +Πατέρα +τόν +πέμψαντα +αὐτόν +ἀμήν +ἀμήν +λέγω +ὑμῖν +ὅτι +ὁ +τόν +λόγον +μου +ἀκούων +καί +πιστεύων +τῷ +πέμψαντι +με +ἔχει +ζωήν +αἰώνιον +καί +εἰς +κρίσιν +οὐκ +ἔρχεται +ἀλλά +μεταβέβηκεν +ἐκ +τοῦ +θανάτου +εἰς +τήν +ζωήν +ἀμήν +ἀμήν +λέγω +ὑμῖν +ὅτι +ἔρχεται +ὥρα +καί +νῦν +ἐστιν +ὅτε +οἱ +νεκροί +ἀκούσουσιν +τῆς +φωνῆς +τοῦ +Υἱοῦ +τοῦ +Θεοῦ +καί +οἱ +ἀκούσαντες +ζήσουσιν +γάρ +ὥσπερ +ὁ +Πατήρ +ἔχει +ζωήν +ἐν +ἑαυτῷ +οὕτως +καί +τῷ +Υἱῷ +ἔδωκεν +ζωήν +ἔχειν +ἐν +ἑαυτῷ +καί +ἐξουσίαν +ἔδωκεν +αὐτῷ +κρίσιν +ποιεῖν +ὅτι +Υἱός +ἀνθρώπου +ἐστίν +μή +θαυμάζετε +τοῦτο +ὅτι +ἔρχεται +ὥρα +ἐν +ᾗ +πάντες +οἱ +ἐν +τοῖς +μνημείοις +ἀκούσουσιν +τῆς +φωνῆς +αὐτοῦ +καί +ἐκπορεύσονται +οἱ +τά +ἀγαθά +ποιήσαντες +εἰς +ἀνάστασιν +ζωῆς +οἱ +τά +φαῦλα +πράξαντες +εἰς +ἀνάστασιν +κρίσεως +Οὐ +δύναμαι +ἐγώ +ποιεῖν +ἀπ’ +ἐμαυτοῦ +οὐδέν +καθώς +ἀκούω +κρίνω +καί +ἡ +κρίσις +ἡ +ἐμή +δικαία +ἐστίν +ὅτι +οὐ +ζητῶ +τό +θέλημα +τό +ἐμόν +ἀλλά +τό +θέλημα +τοῦ +πέμψαντος +με +Ἐάν +ἐγώ +μαρτυρῶ +περί +ἐμαυτοῦ +ἡ +μαρτυρία +μου +οὐκ +ἔστιν +ἀληθής +ἄλλος +ἐστίν +ὁ +μαρτυρῶν +περί +ἐμοῦ +καί +οἶδα +ὅτι +ἀληθής +ἐστιν +ἡ +μαρτυρία +ἥν +μαρτυρεῖ +περί +ἐμοῦ +ὑμεῖς +ἀπεστάλκατε +πρός +Ἰωάνην +καί +μεμαρτύρηκεν +τῇ +ἀληθείᾳ +δέ +ἐγώ +οὐ +παρά +ἀνθρώπου +τήν +μαρτυρίαν +λαμβάνω +ἀλλά +ταῦτα +λέγω +ἵνα +ὑμεῖς +σωθῆτε +ἐκεῖνος +ἦν +ὁ +λύχνος +ὁ +καιόμενος +καί +φαίνων +δέ +ὑμεῖς +ἠθελήσατε +ἀγαλλιαθῆναι +πρός +ὥραν +ἐν +τῷ +φωτί +αὐτοῦ +δέ +ἐγώ +ἔχω +τήν +μαρτυρίαν +μείζω +τοῦ +Ἰωάνου +γάρ +τά +ἔργα +ἅ +δέδωκεν +μοι +ὁ +Πατήρ +ἵνα +τελειώσω +αὐτά +αὐτά +τά +ἔργα +ἅ +ποιῶ +μαρτυρεῖ +περί +ἐμοῦ +ὅτι +ὁ +Πατήρ +με +ἀπέσταλκεν +καί +ὁ +πέμψας +με +Πατήρ +ἐκεῖνος +μεμαρτύρηκεν +περί +ἐμοῦ +οὔτε +φωνήν +αὐτοῦ +πώποτε +ἀκηκόατε +οὔτε +εἶδος +αὐτοῦ +ἑωράκατε +καί +οὐκ +ἔχετε +τόν +λόγον +αὐτοῦ +ἐν +ὑμῖν +μένοντα +ὅτι +ὅν +ἀπέστειλεν +ἐκεῖνος +τούτῳ +ὑμεῖς +οὐ +πιστεύετε +ἐραυνᾶτε +τάς +γραφάς +ὅτι +ὑμεῖς +δοκεῖτε +ἐν +αὐταῖς +ζωήν +αἰώνιον +ἔχειν +καί +ἐκεῖναι +εἰσιν +αἱ +μαρτυροῦσαι +περί +ἐμοῦ +καί +οὐ +θέλετε +ἐλθεῖν +πρός +με +ἵνα +ζωήν +ἔχητε +Δόξαν +παρά +ἀνθρώπων +οὐ +λαμβάνω +ἀλλά +ἔγνωκα +ὑμᾶς +ὅτι +τήν +ἀγάπην +τοῦ +Θεοῦ +οὐκ +ἔχετε +ἐν +ἑαυτοῖς +ἐγώ +ἐλήλυθα +ἐν +τῷ +ὀνόματι +τοῦ +Πατρός +μου +καί +οὐ +λαμβάνετε +με +ἐάν +ἄλλος +ἔλθῃ +ἐν +τῷ +ὀνόματι +τῷ +ἰδίῳ +ἐκεῖνον +λήμψεσθε +πῶς +δύνασθε +ὑμεῖς +πιστεῦσαι +δόξαν +παρά +ἀλλήλων +λαμβάνοντες +καί +τήν +δόξαν +τήν +παρά +τοῦ +μόνου +Θεοῦ +οὐ +ζητεῖτε +μή +δοκεῖτε +ὅτι +ἐγώ +κατηγορήσω +ὑμῶν +πρός +τόν +Πατέρα +ἔστιν +ὁ +κατηγορῶν +ὑμῶν +Μωϋσῆς +εἰς +ὅν +ὑμεῖς +ἠλπίκατε +γάρ +εἰ +ἐπιστεύετε +Μωϋσεῖ +ἄν +ἐπιστεύετε +ἐμοί +γάρ +περί +ἐμοῦ +ἐκεῖνος +ἔγραψεν +δέ +εἰ +τοῖς +ἐκείνου +γράμμασιν +οὐ +πιστεύετε +πῶς +τοῖς +ἐμοῖς +ῥήμασιν +πιστεύσετε +Μετά +ταῦτα +ἀπῆλθεν +ὁ +Ἰησοῦς +πέραν +τῆς +θαλάσσης +τῆς +Γαλιλαίας +τῆς +Τιβεριάδος +δέ +ἠκολούθει +αὐτῷ +ὄχλος +πολύς +ὅτι +ἑώρων +τά +σημεῖα +ἅ +ἐποίει +ἐπί +τῶν +ἀσθενούντων +δέ +ἀνῆλθεν +εἰς +τό +ὄρος +Ἰησοῦς +καί +ἐκεῖ +ἐκάθητο +μετά +τῶν +μαθητῶν +αὐτοῦ +δέ +ἦν +ἐγγύς +τό +πάσχα +ἡ +ἑορτή +τῶν +Ἰουδαίων +οὖν +ὁ +Ἰησοῦς +ἐπάρας +τούς +ὀφθαλμούς +καί +θεασάμενος +ὅτι +πολύς +ὄχλος +ἔρχεται +πρός +αὐτόν +λέγει +πρός +Φίλιππον +Πόθεν +ἀγοράσωμεν +ἄρτους +ἵνα +φάγωσιν +οὗτοι +δέ +τοῦτο +ἔλεγεν +πειράζων +αὐτόν +γάρ +αὐτός +ᾔδει +τί +ποιεῖν +ἔμελλεν +ἀπεκρίθη +αὐτῷ +ὁ +Φίλιππος +Διακοσίων +δηναρίων +ἄρτοι +οὐκ +ἀρκοῦσιν +αὐτοῖς +ἵνα +ἕκαστος +βραχύ +τι +λάβῃ +λέγει +αὐτῷ +εἷς +ἐκ +τῶν +μαθητῶν +αὐτοῦ +Ἀνδρέας +ὁ +ἀδελφός +Σίμωνος +Πέτρου +Ἔστιν +παιδάριον +ὧδε +ὅς +ἔχει +πέντε +ἄρτους +κριθίνους +καί +δύο +ὀψάρια +ἀλλά +ταῦτα +τί +ἐστιν +εἰς +τοσούτους +εἶπεν +ὁ +Ἰησοῦς +Ποιήσατε +τούς +ἀνθρώπους +ἀναπεσεῖν +δέ +ἦν +χόρτος +πολύς +ἐν +τῷ +τόπῳ +οὖν +ἀνέπεσαν +οἱ +ἄνδρες +τόν +ἀριθμόν +ὡς +πεντακισχίλιοι +οὖν +ἔλαβεν +τούς +ἄρτους +ὁ +Ἰησοῦς +καί +εὐχαριστήσας +διέδωκεν +τοῖς +ἀνακειμένοις +ὁμοίως +καί +ἐκ +τῶν +ὀψαρίων +ὅσον +ἤθελον +δέ +ὡς +ἐνεπλήσθησαν +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +Συναγάγετε +τά +περισσεύσαντα +κλάσματα +ἵνα +μή +τι +ἀπόληται +οὖν +συνήγαγον +καί +ἐγέμισαν +δώδεκα +κοφίνους +κλασμάτων +ἐκ +τῶν +πέντε +ἄρτων +τῶν +κριθίνων +ἅ +ἐπερίσσευσαν +τοῖς +βεβρωκόσιν +οὖν +Οἱ +ἄνθρωποι +ἰδόντες +ὅ +ἐποίησεν +σημεῖον +ἔλεγον +ὅτι +Οὗτος +ἐστιν +ἀληθῶς +ὁ +προφήτης +ὁ +ἐρχόμενος +εἰς +τόν +κόσμον +οὖν +γνούς +ὅτι +μέλλουσιν +ἔρχεσθαι +καί +ἁρπάζειν +αὐτόν +ἵνα +ποιήσωσιν +βασιλέα +ἀνεχώρησεν +πάλιν +εἰς +τό +ὄρος +Ἰησοῦς +αὐτός +μόνος +δέ +Ὡς +ὀψία +ἐγένετο +κατέβησαν +οἱ +μαθηταί +αὐτοῦ +ἐπί +τήν +θάλασσαν +καί +ἐμβάντες +εἰς +πλοῖον +ἤρχοντο +πέραν +τῆς +θαλάσσης +εἰς +Καφαρναούμ +καί +σκοτία +ἤδη +ἐγεγόνει +καί +οὔπω +ἐληλύθει +πρός +αὐτούς +ὁ +Ἰησοῦς +τε +ἥ +θάλασσα +ἀνέμου +μεγάλου +πνέοντος +διεγείρετο +οὖν +ἐληλακότες +ὡς +σταδίους +εἴκοσι +πέντε +ἤ +τριάκοντα +θεωροῦσιν +τόν +Ἰησοῦν +περιπατοῦντα +ἐπί +τῆς +θαλάσσης +καί +ἐγγύς +τοῦ +πλοίου +γινόμενον +καί +ἐφοβήθησαν +δέ +ὁ +λέγει +αὐτοῖς +Ἐγώ +εἰμι +μή +φοβεῖσθε +οὖν +ἤθελον +λαβεῖν +αὐτόν +εἰς +τό +πλοῖον +καί +εὐθέως +ἐγένετο +τό +πλοῖον +ἐπί +τῆς +γῆς +εἰς +ἥν +ὑπῆγον +Τῇ +ἐπαύριον +ὁ +ὄχλος +ὁ +ἑστηκώς +πέραν +τῆς +θαλάσσης +εἶδον +ὅτι +πλοιάριον +ἄλλο +οὐκ +ἦν +ἐκεῖ +εἰ +μή +ἕν +καί +ὅτι +οὐ +συνεισῆλθεν +τοῖς +μαθηταῖς +αὐτοῦ +ὁ +Ἰησοῦς +εἰς +τό +πλοῖον +ἀλλά +μόνοι +οἱ +μαθηταί +αὐτοῦ +ἀπῆλθον +ἀλλά +πλοιάρια +ἦλθεν +ἐκ +Τιβεριάδος +ἐγγύς +τοῦ +τόπου +ὅπου +ἔφαγον +τόν +ἄρτον +εὐχαριστήσαντος +τοῦ +Κυρίου +οὖν +ὅτε +εἶδεν +ὁ +ὄχλος +ὅτι +Ἰησοῦς +οὐκ +ἔστιν +ἐκεῖ +οὐδέ +οἱ +μαθηταί +αὐτοῦ +ἐνέβησαν +αὐτοί +εἰς +τά +πλοιάρια +καί +ἦλθον +εἰς +Καφαρναούμ +ζητοῦντες +τόν +Ἰησοῦν +καί +εὑρόντες +αὐτόν +πέραν +τῆς +θαλάσσης +εἶπον +αὐτῷ +Ῥαββεί +πότε +ὧδε +γέγονας +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +καί +εἶπεν +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ζητεῖτε +με +οὐχ +ὅτι +εἴδετε +σημεῖα +ἀλλ’ +ὅτι +ἐφάγετε +ἐκ +τῶν +ἄρτων +καί +ἐχορτάσθητε +ἐργάζεσθε +μή +τήν +βρῶσιν +τήν +ἀπολλυμένην +ἀλλά +τήν +βρῶσιν +τήν +μένουσαν +εἰς +ζωήν +αἰώνιον +ἥν +ὁ +Υἱός +τοῦ +ἀνθρώπου +ὑμῖν +δώσει +γάρ +τοῦτον +ὁ +Πατήρ +ὁ +Θεός +ἐσφράγισεν +οὖν +εἶπον +πρός +αὐτόν +Τί +ποιῶμεν +ἵνα +ἐργαζώμεθα +τά +ἔργα +τοῦ +Θεοῦ +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτοῖς +Τοῦτο +ἐστιν +τό +ἔργον +τοῦ +Θεοῦ +ἵνα +πιστεύητε +εἰς +ὅν +ἀπέστειλεν +ἐκεῖνος +οὖν +εἶπον +αὐτῷ +οὖν +Τί +σημεῖον +ποιεῖς +σύ +ἵνα +ἴδωμεν +καί +πιστεύσωμεν +σοι +τί +ἐργάζῃ +οἱ +πατέρες +ἡμῶν +τό +μάννα +ἔφαγον +ἐν +τῇ +ἐρήμῳ +καθώς +ἐστιν +γεγραμμένον +Ἄρτον +ἐκ +τοῦ +οὐρανοῦ +ἔδωκεν +αὐτοῖς +φαγεῖν +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμήν +ἀμήν +λέγω +ὑμῖν +οὐ +Μωϋσῆς +δέδωκεν +ὑμῖν +τόν +ἄρτον +ἐκ +τοῦ +οὐρανοῦ +ἀλλ’ +ὁ +Πατήρ +μου +δίδωσιν +ὑμῖν +τόν +ἄρτον +ἐκ +τοῦ +οὐρανοῦ +τόν +ἀληθινόν +γάρ +ὁ +ἄρτος +τοῦ +Θεοῦ +ἐστιν +ὁ +καταβαίνων +ἐκ +τοῦ +οὐρανοῦ +καί +ζωήν +διδούς +τῷ +κόσμῳ +οὖν +εἶπον +πρός +αὐτόν +Κύριε +πάντοτε +δός +ἡμῖν +τόν +ἄρτον +τοῦτον +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἐγώ +εἰμι +ὁ +ἄρτος +τῆς +ζωῆς +ὁ +ἐρχόμενος +πρός +ἐμέ +οὐ +μή +πεινάσῃ +καί +ὁ +πιστεύων +εἰς +ἐμέ +οὐ +μή +διψήσει +πώποτε +ἀλλ’ +εἶπον +ὑμῖν +ὅτι +καί +ἑωράκατε +με +καί +οὐ +πιστεύετε +Πᾶν +ὅ +δίδωσιν +μοι +ὁ +Πατήρ +πρός +ἐμέ +ἥξει +καί +τόν +ἐρχόμενον +πρός +με +οὐ +μή +ἐκβάλω +ἔξω +ὅτι +καταβέβηκα +ἀπό +τοῦ +οὐρανοῦ +οὐχ +ἵνα +ποιῶ +τό +θέλημα +τό +ἐμόν +ἀλλά +τό +θέλημα +τοῦ +πέμψαντος +με +δέ +τοῦτο +ἐστιν +τό +θέλημα +τοῦ +πέμψαντος +με +ἵνα +πᾶν +ὅ +δέδωκεν +μοι +μή +ἀπολέσω +ἐξ +αὐτοῦ +ἀλλά +ἀναστήσω +αὐτό +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +γάρ +τοῦτο +ἐστιν +τό +θέλημα +τοῦ +Πατρός +μου +ἵνα +πᾶς +ὁ +θεωρῶν +τόν +Υἱόν +καί +πιστεύων +εἰς +αὐτόν +ἔχῃ +ζωήν +αἰώνιον +καί +ἀναστήσω +αὐτόν +ἐγώ +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +οὖν +Ἐγόγγυζον +οἱ +Ἰουδαῖοι +περί +αὐτοῦ +ὅτι +εἶπεν +Ἐγώ +εἰμι +ὁ +ἄρτος +ὁ +καταβάς +ἐκ +τοῦ +οὐρανοῦ +καί +ἔλεγον +Οὐχ +οὗτος +ἐστιν +Ἰησοῦς +ὁ +υἱός +Ἰωσήφ +οὗ +ἡμεῖς +οἴδαμεν +τόν +πατέρα +καί +τήν +μητέρα +πῶς +νῦν +λέγει +ὅτι +Ἐκ +τοῦ +οὐρανοῦ +καταβέβηκα +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτοῖς +Μή +γογγύζετε +μετ’ +ἀλλήλων +οὐδείς +δύναται +ἐλθεῖν +πρός +με +ἐάν +μή +ὁ +Πατήρ +ὁ +πέμψας +με +ἑλκύσῃ +αὐτόν +κἀγώ +ἀναστήσω +αὐτόν +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +ἔστιν +γεγραμμένον +ἐν +τοῖς +προφήταις +Καί +ἔσονται +πάντες +διδακτοί +Θεοῦ +πᾶς +ὁ +ἀκούσας +παρά +τοῦ +Πατρός +καί +μαθών +ἔρχεται +πρός +ἐμέ +οὐχ +ὅτι +τόν +Πατέρα +ἑώρακεν +τις +εἰ +μή +ὁ +ὤν +παρά +τοῦ +Θεοῦ +οὗτος +ἑώρακεν +τόν +Πατέρα +ἀμήν +ἀμήν +λέγω +ὑμῖν +ὁ +πιστεύων +ἔχει +ζωήν +αἰώνιον +ἐγώ +εἰμι +ὁ +ἄρτος +τῆς +ζωῆς +οἱ +πατέρες +ὑμῶν +ἔφαγον +ἐν +τῇ +ἐρήμῳ +τό +μάννα +καί +ἀπέθανον +οὗτος +ἐστιν +ὁ +ἄρτος +ὁ +ἐκ +τοῦ +οὐρανοῦ +καταβαίνων +ἵνα +τις +ἐξ +αὐτοῦ +φάγῃ +καί +μή +ἀποθάνῃ +ἐγώ +εἰμι +ὁ +ἄρτος +ὁ +ζῶν +ὁ +ἐκ +τοῦ +οὐρανοῦ +καταβάς +ἐάν +τις +φάγῃ +ἐκ +τούτου +τοῦ +ἄρτου +ζήσει +εἰς +τόν +αἰῶνα +δέ +καί +ὁ +ἄρτος +ὅν +ἐγώ +δώσω +ἡ +σάρξ +μού +ἐστιν +ὑπέρ +τῆς +τοῦ +κόσμου +ζωῆς +οὖν +Ἐμάχοντο +πρός +ἀλλήλους +οἱ +Ἰουδαῖοι +λέγοντες +Πῶς +δύναται +οὗτος +ἡμῖν +δοῦναι +τήν +σάρκα +φαγεῖν +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ἐάν +μή +φάγητε +τήν +σάρκα +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +καί +πίητε +αὐτοῦ +τό +αἷμα +οὐκ +ἔχετε +ζωήν +ἐν +ἑαυτοῖς +ὁ +τρώγων +μου +τήν +σάρκα +καί +πίνων +μου +τό +αἷμα +ἔχει +ζωήν +αἰώνιον +κἀγώ +ἀναστήσω +αὐτόν +τῇ +ἐσχάτῃ +ἡμέρᾳ +γάρ +ἡ +σάρξ +μου +ἀληθής +βρῶσις +ἐστιν +καί +τό +αἷμα +μου +ἀληθής +πόσις +ἐστιν +ὁ +τρώγων +μου +τήν +σάρκα +καί +πίνων +μου +τό +αἷμα +ἐν +ἐμοί +μένει +κἀγώ +ἐν +αὐτῷ +καθώς +ἀπέστειλεν +με +ὁ +ζῶν +Πατήρ +κἀγώ +ζῶ +διά +τόν +Πατέρα +καί +ὁ +τρώγων +με +κἀκεῖνος +ζήσει +δι’ +ἐμέ +οὗτος +ἐστιν +ὁ +ἄρτος +ὁ +ἐξ +οὐρανοῦ +καταβάς +οὐ +καθώς +ἔφαγον +οἱ +πατέρες +καί +ἀπέθανον +ὁ +τρώγων +τοῦτον +τόν +ἄρτον +ζήσει +εἰς +τόν +αἰῶνα +Ταῦτα +εἶπεν +ἐν +συναγωγῇ +διδάσκων +ἐν +Καφαρναούμ +οὖν +Πολλοί +ἐκ +τῶν +μαθητῶν +αὐτοῦ +ἀκούσαντες +εἶπαν +Σκληρός +ἐστιν +ὁ +λόγος +οὗτος +τίς +δύναται +αὐτοῦ +ἀκούειν +δέ +ὁ +Ἰησοῦς +εἰδώς +ἐν +ἑαυτῷ +ὅτι +γογγύζουσιν +περί +τούτου +οἱ +μαθηταί +αὐτοῦ +εἶπεν +αὐτοῖς +Τοῦτο +ὑμᾶς +σκανδαλίζει +οὖν +ἐάν +θεωρῆτε +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἀναβαίνοντα +ὅπου +ἦν +τό +πρότερον +τό +πνεῦμα +ἐστιν +τό +ζωοποιοῦν +ἡ +σάρξ +οὐκ +ὠφελεῖ +οὐδέν +τά +ῥήματα +ἅ +ἐγώ +λελάληκα +ὑμῖν +πνεῦμα +ἐστιν +καί +ζωή +ἐστιν +ἀλλ’ +εἰσίν +ἐξ +ὑμῶν +τινες +οἵ +οὐ +πιστεύουσιν +γάρ +ᾔδει +ἐξ +ἀρχῆς +ὁ +Ἰησοῦς +τίνες +εἰσίν +οἱ +μή +πιστεύοντες +καί +τίς +ἐστιν +ὁ +παραδώσων +αὐτόν +καί +ἔλεγεν +Διά +τοῦτο +εἴρηκα +ὑμῖν +ὅτι +οὐδείς +δύναται +ἐλθεῖν +πρός +με +ἐάν +μή +ᾖ +δεδομένον +αὐτῷ +ἐκ +τοῦ +Πατρός +Ἐκ +τούτου +πολλοί +τῶν +μαθητῶν +αὐτοῦ +ἀπῆλθον +εἰς +τά +ὀπίσω +καί +οὐκέτι +μετ’ +αὐτοῦ +περιεπάτουν +οὖν +εἶπεν +ὁ +Ἰησοῦς +τοῖς +δώδεκα +Μή +καί +ὑμεῖς +θέλετε +ὑπάγειν +ἀπεκρίθη +αὐτῷ +Σίμων +Πέτρος +Κύριε +πρός +τίνα +ἀπελευσόμεθα +ῥήματα +ζωῆς +αἰωνίου +ἔχεις +καί +ἡμεῖς +πεπιστεύκαμεν +καί +ἐγνώκαμεν +ὅτι +σύ +εἶ +ὁ +Ἅγιος +τοῦ +Θεοῦ +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Οὐκ +ἐγώ +ὑμᾶς +τούς +δώδεκα +ἐξελεξάμην +καί +ἐξ +ὑμῶν +εἷς +διάβολος +ἐστιν +δέ +ἔλεγεν +τόν +Ἰούδαν +Σίμωνος +Ἰσκαριώτου +γάρ +οὗτος +ἔμελλεν +παραδιδόναι +αὐτόν +εἷς +ἐκ +τῶν +δώδεκα +Καί +μετά +ταῦτα +περιεπάτει +ὁ +Ἰησοῦς +ἐν +τῇ +Γαλιλαίᾳ +γάρ +οὐ +ἤθελεν +ἐν +τῇ +Ἰουδαίᾳ +περιπατεῖν +ὅτι +ἐζήτουν +αὐτόν +ἀποκτεῖναι +οἱ +Ἰουδαῖοι +δέ +ἦν +ἐγγύς +ἡ +ἑορτή +τῶν +Ἰουδαίων +ἡ +σκηνοπηγία +οὖν +εἶπον +πρός +αὐτόν +οἱ +ἀδελφοί +αὐτοῦ +Μετάβηθι +ἐντεῦθεν +καί +ὕπαγε +εἰς +τήν +Ἰουδαίαν +ἵνα +καί +οἱ +μαθηταί +σου +θεωρήσουσιν +τά +ἔργα +σοῦ +ἅ +ποιεῖς +γάρ +οὐδείς +τι +ἐν +κρυπτῷ +ποιεῖ +καί +ζητεῖ +αὐτός +ἐν +παρρησίᾳ +εἶναι +εἰ +ταῦτα +ποιεῖς +φανέρωσον +σεαυτόν +τῷ +κόσμῳ +γάρ +οὐδέ +οἱ +ἀδελφοί +αὐτοῦ +ἐπίστευον +εἰς +αὐτόν +οὖν +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ὁ +καιρός +ὁ +ἐμός +οὔπω +πάρεστιν +δέ +ὁ +καιρός +ὁ +ὑμέτερος +πάντοτε +ἐστιν +ἕτοιμος +οὐ +δύναται +ὁ +κόσμος +μισεῖν +ὑμᾶς +δέ +ἐμέ +μισεῖ +ὅτι +ἐγώ +μαρτυρῶ +περί +αὐτοῦ +ὅτι +τά +ἔργα +αὐτοῦ +πονηρά +ἐστιν +ὑμεῖς +ἀνάβητε +εἰς +τήν +ἑορτήν +ἐγώ +οὔπω +ἀναβαίνω +εἰς +τήν +ἑορτήν +ταύτην +ὅτι +ὁ +ἐμός +καιρός +οὔπω +πεπλήρωται +δέ +ταῦτα +εἰπών +αὐτοῖς +ἔμεινεν +ἐν +τῇ +Γαλιλαίᾳ +δέ +Ὡς +ἀνέβησαν +οἱ +ἀδελφοί +αὐτοῦ +εἰς +τήν +ἑορτήν +τότε +καί +αὐτός +ἀνέβη +οὐ +φανερῶς +ἀλλά +ὡς +ἐν +κρυπτῷ +οὖν +οἱ +Ἰουδαῖοι +ἐζήτουν +αὐτόν +ἐν +τῇ +ἑορτῇ +καί +ἔλεγον +Ποῦ +ἐστιν +ἐκεῖνος +καί +γογγυσμός +περί +αὐτοῦ +ἦν +πολύς +ἐν +τοῖς +ὄχλοις +μέν +οἱ +ἔλεγον +ὅτι +Ἀγαθός +ἐστιν +δέ +ἄλλοι +ἔλεγον +Οὔ +ἀλλά +πλανᾷ +τόν +ὄχλον +μέντοι +οὐδείς +παρρησίᾳ +ἐλάλει +περί +αὐτοῦ +διά +τόν +φόβον +τῶν +Ἰουδαίων +δέ +Ἤδη +τῆς +ἑορτῆς +μεσούσης +ἀνέβη +Ἰησοῦς +εἰς +τό +ἱερόν +καί +ἐδίδασκεν +οὖν +ἐθαύμαζον +οἱ +Ἰουδαῖοι +λέγοντες +Πῶς +οὗτος +γράμματα +οἶδεν +μή +μεμαθηκώς +οὖν +ἀπεκρίθη +αὐτοῖς +Ἰησοῦς +καί +εἶπεν +Ἠ +ἐμή +διδαχή +οὐκ +ἔστιν +ἐμή +ἀλλά +τοῦ +πέμψαντος +με +ἐάν +τις +θέλῃ +τό +θέλημα +αὐτοῦ +ποιεῖν +γνώσεται +περί +τῆς +διδαχῆς +πότερον +ἐκ +τοῦ +Θεοῦ +ἐστιν +ἤ +ἐγώ +ἀπ’ +ἐμαυτοῦ +λαλῶ +ὁ +ἀφ’ +ἑαυτοῦ +λαλῶν +τήν +δόξαν +τήν +ἰδίαν +ζητεῖ +δέ +ὁ +ζητῶν +τήν +δόξαν +τοῦ +πέμψαντος +αὐτόν +οὗτος +ἀληθής +ἐστιν +καί +ἀδικία +ἐν +αὐτῷ +οὐκ +ἔστιν +οὐ +Μωϋσῆς +ἔδωκεν +ὑμῖν +τόν +νόμον +καί +οὐδείς +ἐξ +ὑμῶν +ποιεῖ +τόν +νόμον +τί +με +ἀποκτεῖναι +ζητεῖτε +ἀπεκρίθη +ὁ +ὄχλος +Δαιμόνιον +ἔχεις +τίς +σε +ἀποκτεῖναι +ζητεῖ +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτοῖς +Ἕν +ἔργον +ἐποίησα +καί +πάντες +θαυμάζετε +διά +τοῦτο +Μωϋσῆς +δέδωκεν +ὑμῖν +τήν +περιτομήν +ὅτι +οὐχ +ἐκ +τοῦ +Μωϋσέως +ἐστίν +ἀλλ’ +ἐκ +τῶν +πατέρων +καί +ἐν +σαββάτῳ +περιτέμνετε +ἄνθρωπον +εἰ +περιτομήν +λαμβάνει +ἄνθρωπος +ἐν +σαββάτῳ +ἵνα +μή +λυθῇ +ὁ +νόμος +Μωϋσέως +ἐμοί +χολᾶτε +ὅτι +ὅλον +ἄνθρωπον +ὑγιῆ +ἐποίησα +ἐν +σαββάτῳ +μή +κρίνετε +κατ’ +ὄψιν +ἀλλά +τήν +δικαίαν +κρίσιν +κρίνατε +οὖν +Ἔλεγον +τινες +ἐκ +τῶν +Ἱεροσολυμειτῶν +Οὐχ +οὗτος +ἐστιν +ὅν +ἀποκτεῖναι +ζητοῦσιν +καί +ἴδε +παρρησίᾳ +λαλεῖ +καί +οὐδέν +αὐτῷ +λέγουσιν +Μή +ποτε +ἀληθῶς +ἔγνωσαν +οἱ +ἄρχοντες +ὅτι +οὗτος +ἐστιν +ὁ +Χριστός +ἀλλά +τοῦτον +οἴδαμεν +πόθεν +ἐστίν +δέ +ὁ +Χριστός +ὅταν +ἔρχηται +οὐδείς +γινώσκει +πόθεν +ἐστίν +οὖν +ἔκραξεν +ἐν +τῷ +ἱερῷ +διδάσκων +ὁ +Ἰησοῦς +καί +λέγων +Κἀμέ +οἴδατε +καί +οἴδατε +πόθεν +εἰμί +καί +ἀπ’ +ἐμαυτοῦ +οὐκ +ἐλήλυθα +ἀλλ’ +ἔστιν +ἀληθινός +ὁ +πέμψας +με +ὅν +ὑμεῖς +οὐκ +οἴδατε +ἐγώ +οἶδα +αὐτόν +ὅτι +παρ’ +αὐτοῦ +εἰμι +κἀκεῖνος +με +ἀπέστειλεν +οὖν +Ἐζήτουν +αὐτόν +πιάσαι +καί +οὐδείς +ἐπέβαλεν +ἐπ’ +αὐτόν +τήν +χεῖρα +ὅτι +οὔπω +ἐληλύθει +ἡ +ὥρα +αὐτοῦ +δέ +Ἐκ +τοῦ +ὄχλου +πολλοί +ἐπίστευσαν +εἰς +αὐτόν +καί +ἔλεγον +Ὁ +Χριστός +ὅταν +ἔλθῃ +μή +πλείονα +σημεῖα +ποιήσει +ὧν +οὗτος +ἐποίησεν +Ἤκουσαν +οἱ +Φαρισαῖοι +τοῦ +ὄχλου +γογγύζοντος +περί +αὐτοῦ +ταῦτα +καί +ἀπέστειλαν +οἱ +ἀρχιερεῖς +καί +οἱ +Φαρισαῖοι +ὑπηρέτας +ἵνα +πιάσωσιν +αὐτόν +οὖν +εἶπεν +ὁ +Ἰησοῦς +Ἔτι +χρόνον +μικρόν +μεθ’ +ὑμῶν +εἰμι +καί +ὑπάγω +πρός +τόν +πέμψαντα +με +ζητήσετε +με +καί +οὐχ +εὑρήσετε +καί +ὅπου +εἰμί +ἐγώ +ἐλθεῖν +ὑμεῖς +οὐ +δύνασθε +οὖν +εἶπον +οἱ +Ἰουδαῖοι +πρός +ἑαυτούς +Ποῦ +πορεύεσθαι +οὗτος +μέλλει +ὅτι +ἡμεῖς +οὐχ +εὑρήσομεν +αὐτόν +μή +μέλλει +εἰς +τήν +Διασποράν +τῶν +Ἑλλήνων +πορεύεσθαι +καί +διδάσκειν +τούς +Ἕλληνας +τίς +ἐστιν +ὁ +λόγος +οὗτος +ὅν +εἶπεν +Ζητήσετε +με +καί +οὐχ +εὑρήσετε +καί +ὅπου +εἰμί +ἐγώ +ἐλθεῖν +ὑμεῖς +οὐ +δύνασθε +δέ +Ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +τῇ +μεγάλῃ +τῆς +ἑορτῆς +εἱστήκει +ὁ +Ἰησοῦς +καί +ἔκραξεν +λέγων +Ἐάν +τις +διψᾷ +ἐρχέσθω +πρός +με +καί +πινέτω +ὁ +πιστεύων +εἰς +ἐμέ +καθώς +εἶπεν +ἡ +γραφή +ποταμοί +ὕδατος +ζῶντος +ἐκ +τῆς +κοιλίας +αὐτοῦ +ῥεύσουσιν +δέ +τοῦτο +εἶπεν +περί +τοῦ +Πνεύματος +οὗ +λαμβάνειν +ἔμελλον +οἱ +πιστεύσαντες +εἰς +αὐτόν +γάρ +οὔπω +ἦν +Πνεῦμα +ὅτι +Ἰησοῦς +οὐδέπω +ἐδοξάσθη +οὖν +Ἐκ +τοῦ +ὄχλου +ἀκούσαντες +τῶν +λόγων +τούτων +ἔλεγον +Οὗτος +ἐστιν +ἀληθῶς +ὁ +προφήτης +ἄλλοι +ἔλεγον +Οὗτος +ἐστιν +ὁ +Χριστός +δέ +οἱ +ἔλεγον +γάρ +Μή +ἐκ +τῆς +Γαλιλαίας +ὁ +Χριστός +ἔρχεται +οὐχ +ἡ +γραφή +εἶπεν +ὅτι +ἐκ +τοῦ +σπέρματος +Δαυείδ +καί +ἀπό +Βηθλεέμ +τῆς +κώμης +ὅπου +ἦν +Δαυείδ +ἔρχεται +ὁ +Χριστός +οὖν +σχίσμα +ἐγένετο +ἐν +τῷ +ὄχλῳ +δι’ +αὐτόν +δέ +τινές +ἐξ +αὐτῶν +ἤθελον +πιάσαι +αὐτόν +ἀλλ’ +οὐδείς +ἐπέβαλεν +ἐπ’ +αὐτόν +τάς +χεῖρας +οὖν +Ἦλθον +οἱ +ὑπηρέται +πρός +τούς +ἀρχιερεῖς +καί +Φαρισαίους +καί +εἶπον +αὐτοῖς +ἐκεῖνοι +Διά +τί +οὐκ +ἠγάγετε +αὐτόν +ἀπεκρίθησαν +οἱ +ὑπηρέται +Οὐδέποτε +ἐλάλησεν +οὕτως +ἄνθρωπος +ὡς +οὗτος +ὁ +ἄνθρωπος +λαλεῖ +οὖν +ἀπεκρίθησαν +αὐτοῖς +οἱ +Φαρισαῖοι +Μή +καί +ὑμεῖς +πεπλάνησθε +μή +τις +ἐκ +τῶν +ἀρχόντων +ἐπίστευσεν +εἰς +αὐτόν +ἤ +ἐκ +τῶν +Φαρισαίων +ἀλλά +ὁ +ὄχλος +οὗτος +ὁ +μή +γινώσκων +τόν +νόμον +ἐπάρατοι +εἰσιν +λέγει +πρός +αὐτούς +Νικόδημος +ὁ +ἐλθών +πρός +αὐτόν +πρότερον +ὤν +εἷς +ἐξ +αὐτῶν +Μή +ὁ +νόμος +ἡμῶν +κρίνει +τόν +ἄνθρωπον +ἐάν +μή +ἀκούσῃ +πρῶτον +παρ’ +αὐτοῦ +καί +γνῷ +τί +ποιεῖ +ἀπεκρίθησαν +καί +εἶπαν +αὐτῷ +Μή +καί +σύ +ἐκ +τῆς +Γαλιλαίας +εἶ +ἐραύνησον +καί +ἴδε +ὅτι +ἐκ +τῆς +Γαλιλαίας +προφήτης +οὐκ +ἐγείρεται +Καί +ἐπορεύθη +ἕκαστος +εἰς +τόν +οἶκον +αὐτοῦ +δέ +Ἰησοῦς +ἐπορεύθη +εἰς +τό +ὄρος +τῶν +ἐλαιῶν +δέ +Ὄρθρου +πάλιν +παρεγένετο +εἰς +τό +ἱερόν +καί +πᾶς +ὁ +λαός +ἤρχετο +πρός +αὐτόν +καί +καθίσας +ἐδίδασκεν +αὐτούς +δέ +ἄγουσι +οἱ +γραμματεῖς +καί +οἱ +Φαρισαῖοι +πρός +αὐτόν +γυναῖκα +ἐν +μοιχείᾳ +κατειλημμένην +καί +στήσαντες +αὐτήν +ἐν +μέσῳ +λέγουσιν +αὐτῷ +Διδάσκαλε +αὕτη +ἡ +γυνή +κατελήφθη +ἐπαυτοφώρῳ +μοιχευομένη +δέ +ἐν +τῷ +νόμῳ +Μωσῆς +ἡμῖν +ἐνετείλατο +τάς +τοιαύτας +λιθοβολεῖσθαι +οὖν +σύ +τί +λέγεις +δέ +τοῦτο +ἔλεγον +πειράζοντες +αὐτόν +ἵνα +ἔχωσι +κατηγορεῖν +αὐτοῦ +δέ +ὁ +Ἰησοῦς +κάτω +κύψας +τῷ +δακτύλῳ +ἔγραφεν +εἰς +τήν +γῆν +δέ +ὡς +ἐπέμενον +ἐρωτῶντες +αὐτόν +ἀνάκυψας +εἶπε +πρός +αὐτούς +Ὁ +ἀναμάρτητος +ὑμῶν +πρῶτος +τόν +λίθον +ἐπ’ +αὐτῇ +βαλέτω +καί +πάλιν +κάτω +κύψας +ἔγραφεν +εἰς +τήν +γῆν +δέ +οἱ +ἀκούσαντες +καί +ὑπό +τῆς +συνειδήσεως +ἐλεγχόμενοι +ἐξήρχοντο +εἷς +καθεῖς +ἀρξάμενοι +ἀπό +τῶν +πρεσβυτέρων +ἕως +τῶν +ἐσχάτων +καί +κατελείφθη +μόνος +ὁ +Ἰησοῦς +καί +ἡ +γυνή +ἐν +μέσῳ +ἑστῶσα +δέ +ὁ +Ἰησοῦς +ἀνακύψας +καί +μηδένα +θεασάμενος +πλήν +τῆς +γυναικός +εἶπεν +αὐτῇ +Ἠ +γυνή +ποῦ +εἰσιν +ἐκεῖνοι +οἱ +κατήγοροι +σου +οὐδείς +σε +κατέκρινεν +δέ +ἡ +εἶπεν +Οὐδείς +κύριε +δέ +εἶπε +αὐτῇ +ὁ +Ἰησοῦς +Οὐδέ +ἐγώ +σε +κατακρίνω +πορεύου +καί +μηκέτι +ἁμάρτανε +οὖν +Πάλιν +αὐτοῖς +ἐλάλησεν +ὁ +Ἰησοῦς +λέγων +Ἐγώ +εἰμι +τό +φῶς +τοῦ +κόσμου +ὁ +ἀκολουθῶν +μοι +οὐ +μή +περιπατήσῃ +ἐν +τῇ +σκοτίᾳ +ἀλλ’ +ἕξει +τό +φῶς +τῆς +ζωῆς +οὖν +εἶπον +αὐτῷ +οἱ +Φαρισαῖοι +Σύ +περί +σεαυτοῦ +μαρτυρεῖς +ἡ +μαρτυρία +σου +οὐκ +ἔστιν +ἀληθής +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτοῖς +Κἄν +ἐγώ +μαρτυρῶ +περί +ἐμαυτοῦ +ἀληθής +ἐστιν +ἡ +μαρτυρία +μου +ὅτι +οἶδα +πόθεν +ἦλθον +καί +ποῦ +ὑπάγω +δέ +ὑμεῖς +οὐκ +οἴδατε +πόθεν +ἔρχομαι +ἤ +ποῦ +ὑπάγω +ὑμεῖς +κατά +τήν +σάρκα +κρίνετε +ἐγώ +οὐ +κρίνω +οὐδένα +δέ +ἐάν +καί +κρίνω +ἐγώ +ἡ +κρίσις +ἡ +ἐμή +ἀληθινή +ἐστιν +ὅτι +μόνος +οὐκ +εἰμί +ἀλλ’ +ἐγώ +καί +ὁ +πέμψας +με +δέ +καί +ἐν +τῷ +νόμῳ +τῷ +ὑμετέρῳ +γέγραπται +ὅτι +δύο +ἀνθρώπων +ἡ +μαρτυρία +ἀληθής +ἐστιν +ἐγώ +εἰμι +ὁ +μαρτυρῶν +περί +ἐμαυτοῦ +καί +μαρτυρεῖ +περί +ἐμοῦ +ὁ +πέμψας +με +Πατήρ +οὖν +ἔλεγον +αὐτῷ +Ποῦ +ἐστιν +ὁ +Πατήρ +σου +ἀπεκρίθη +Ἰησοῦς +Οὔτε +ἐμέ +οἴδατε +οὔτε +τόν +Πατέρα +μου +εἰ +ἐμέ +ᾔδειτε +ἄν +καί +τόν +Πατέρα +μου +ᾔδειτε +Ταῦτα +τά +ῥήματα +ἐλάλησεν +ἐν +τῷ +γαζοφυλακίῳ +διδάσκων +ἐν +τῷ +ἱερῷ +καί +οὐδείς +ἐπίασεν +αὐτόν +ὅτι +οὔπω +ἐληλύθει +ἡ +ὥρα +αὐτοῦ +οὖν +Εἶπεν +πάλιν +αὐτοῖς +Ἐγώ +ὑπάγω +καί +ζητήσετε +με +καί +ἐν +τῇ +ἁμαρτίᾳ +ὑμῶν +ἀποθανεῖσθε +ὅπου +ἐγώ +ὑπάγω +ἐλθεῖν +ὑμεῖς +οὐ +δύνασθε +οὖν +ἔλεγον +οἱ +Ἰουδαῖοι +Μήτι +ἀποκτενεῖ +ἑαυτόν +ὅτι +λέγει +Ὅπου +ἐγώ +ὑπάγω +ἐλθεῖν +ὑμεῖς +οὐ +δύνασθε +καί +ἔλεγεν +αὐτοῖς +Ὑμεῖς +ἐκ +τῶν +κάτω +ἐστέ +ἐγώ +ἐκ +τῶν +ἄνω +εἰμί +ὑμεῖς +ἐκ +τούτου +τοῦ +κόσμου +ἐστέ +ἐγώ +οὐκ +εἰμί +ἐκ +τοῦ +κόσμου +τούτου +οὖν +εἶπον +ὑμῖν +ὅτι +ἀποθανεῖσθε +ἐν +ταῖς +ἁμαρτίαις +ὑμῶν +γάρ +ἐάν +μή +πιστεύσητε +ὅτι +ἐγώ +εἰμι +ἀποθανεῖσθε +ἐν +ταῖς +ἁμαρτίαις +ὑμῶν +οὖν +ἔλεγον +αὐτῷ +Σύ +τίς +εἶ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +τι +ὅ +Τήν +ἀρχήν +καί +λαλῶ +ὑμῖν +ἔχω +πολλά +περί +ὑμῶν +λαλεῖν +καί +κρίνειν +ἀλλ’ +ὁ +πέμψας +με +ἀληθής +ἐστιν +ἅ +κἀγώ +ἤκουσα +παρ’ +αὐτοῦ +ταῦτα +λαλῶ +εἰς +τόν +κόσμον +οὐκ +ἔγνωσαν +ὅτι +τόν +Πατέρα +αὐτοῖς +ἔλεγεν +οὖν +εἶπεν +ὁ +Ἰησοῦς +Ὅταν +ὑψώσητε +τόν +Υἱόν +τοῦ +ἀνθρώπου +τότε +γνώσεσθε +ὅτι +ἐγώ +εἰμι +καί +ἀπ’ +ἐμαυτοῦ +ποιῶ +οὐδέν +ἀλλά +καθώς +ἐδίδαξεν +με +ὁ +Πατήρ +ταῦτα +λαλῶ +καί +ὁ +πέμψας +με +μετ’ +ἐμοῦ +ἐστιν +οὐκ +ἀφῆκεν +με +μόνον +ὅτι +ἐγώ +τά +ἀρεστά +αὐτῷ +ποιῶ +πάντοτε +Ταῦτα +αὐτοῦ +λαλοῦντος +πολλοί +ἐπίστευσαν +εἰς +αὐτόν +οὖν +Ἔλεγεν +ὁ +Ἰησοῦς +πρός +τούς +πεπιστευκότας +αὐτῷ +Ἰουδαίους +Ἐάν +ὑμεῖς +μείνητε +ἐν +τῷ +λόγῳ +τῷ +ἐμῷ +ἀληθῶς +μαθηταί +μού +ἐστε +καί +γνώσεσθε +τήν +ἀλήθειαν +καί +ἡ +ἀλήθεια +ἐλευθερώσει +ὑμᾶς +ἀπεκρίθησαν +πρός +αὐτόν +Σπέρμα +Ἀβραάμ +ἐσμεν +καί +οὐδενί +δεδουλεύκαμεν +πώποτε +πῶς +σύ +λέγεις +ὅτι +Ἐλεύθεροι +γενήσεσθε +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +ποιῶν +τήν +ἁμαρτίαν +ἐστιν +δοῦλος +τῆς +ἁμαρτίας +δέ +ὁ +δοῦλος +οὐ +μένει +ἐν +τῇ +οἰκίᾳ +εἰς +τόν +αἰῶνα +ὁ +υἱός +μένει +εἰς +τόν +αἰῶνα +οὖν +ἐάν +ὁ +Υἱός +ὑμᾶς +ἐλευθερώσῃ +ὄντως +ἐλεύθεροι +ἔσεσθε +οἶδα +ὅτι +σπέρμα +Ἀβραάμ +ἐστε +ἀλλά +ζητεῖτε +με +ἀποκτεῖναι +ὅτι +ὁ +λόγος +ὁ +ἐμός +οὐ +χωρεῖ +ἐν +ὑμῖν +ἅ +ἐγώ +ἑώρακα +παρά +τῷ +Πατρί +λαλῶ +οὖν +καί +ὑμεῖς +ἅ +ἠκούσατε +παρά +τοῦ +πατρός +ποιεῖτε +ἀπεκρίθησαν +καί +εἶπαν +αὐτῷ +Ὁ +πατήρ +ἡμῶν +Ἀβραάμ +ἐστιν +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Εἰ +τέκνα +τοῦ +Ἀβραάμ +ἐστε +τά +ἔργα +τοῦ +Ἀβραάμ +ποιεῖτε +δέ +νῦν +ζητεῖτε +ἀποκτεῖναι +με +ἄνθρωπον +ὅς +τήν +ἀλήθειαν +ὑμῖν +λελάληκα +ἥν +ἤκουσα +παρά +τοῦ +Θεοῦ +τοῦτο +Ἀβραάμ +οὐκ +ἐποίησεν +ὑμεῖς +ποιεῖτε +τά +ἔργα +τοῦ +πατρός +ὑμῶν +εἶπαν +αὐτῷ +Ἠμεῖς +ἐκ +πορνείας +οὐκ +ἐγεννήθημεν +ἕνα +Πατέρα +τόν +Θεόν +ἔχομεν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Εἰ +ὁ +Θεός +Πατήρ +ὑμῶν +ἦν +ἄν +ἠγαπᾶτε +ἐμέ +γάρ +ἐγώ +ἐκ +τοῦ +Θεοῦ +ἐξῆλθον +καί +ἥκω +γάρ +οὐδέ +ἀπ’ +ἐμαυτοῦ +ἐλήλυθα +ἀλλ’ +ἐκεῖνος +με +ἀπέστειλεν +διά +τί +τήν +λαλιάν +τήν +ἐμήν +οὐ +γινώσκετε +ὅτι +οὐ +δύνασθε +ἀκούειν +τόν +λόγον +τόν +ἐμόν +ὑμεῖς +ἐκ +τοῦ +πατρός +τοῦ +διαβόλου +ἐστέ +καί +τάς +ἐπιθυμίας +τοῦ +πατρός +ὑμῶν +ποιεῖν +θέλετε +ἐκεῖνος +ἀνθρωποκτόνος +ἦν +ἀπ’ +ἀρχῆς +καί +ἐν +τῇ +ἀληθείᾳ +οὐκ +ἔστηκεν +ὅτι +οὐκ +ἔστιν +ἀλήθεια +ἐν +αὐτῷ +ὅταν +λαλῇ +τό +ψεῦδος +ἐκ +τῶν +ἰδίων +λαλεῖ +ὅτι +ψεύστης +ἐστίν +καί +ὁ +πατήρ +αὐτοῦ +δέ +ἐγώ +ὅτι +τήν +ἀλήθειαν +λέγω +οὐ +πιστεύετε +μοι +τίς +ἐξ +ὑμῶν +ἐλέγχει +με +περί +ἁμαρτίας +εἰ +ἀλήθειαν +λέγω +διά +τί +ὑμεῖς +οὐ +πιστεύετε +μοι +ὁ +ὤν +ἐκ +τοῦ +Θεοῦ +τά +ῥήματα +τοῦ +Θεοῦ +ἀκούει +διά +τοῦτο +ὑμεῖς +οὐκ +ἀκούετε +ὅτι +ἐκ +τοῦ +Θεοῦ +οὐκ +ἐστέ +Ἀπεκρίθησαν +οἱ +Ἰουδαῖοι +καί +εἶπαν +αὐτῷ +Οὐ +καλῶς +λέγομεν +ἡμεῖς +ὅτι +Σαμαρείτης +εἶ +σύ +καί +δαιμόνιον +ἔχεις +ἀπεκρίθη +Ἰησοῦς +Ἐγώ +δαιμόνιον +οὐκ +ἔχω +ἀλλά +τιμῶ +τόν +Πατέρα +μου +καί +ὑμεῖς +ἀτιμάζετε +με +δέ +ἐγώ +οὐ +ζητῶ +τήν +δόξαν +μου +ἔστιν +ὁ +ζητῶν +καί +κρίνων +ἀμήν +ἀμήν +λέγω +ὑμῖν +ἐάν +τις +τόν +ἐμόν +λόγον +τηρήσῃ +θάνατον +οὐ +μή +θεωρήσῃ +εἰς +τόν +αἰῶνα +εἶπαν +αὐτῷ +οἱ +Ἰουδαῖοι +Νῦν +ἐγνώκαμεν +ὅτι +δαιμόνιον +ἔχεις +Ἀβραάμ +ἀπέθανεν +καί +οἱ +προφῆται +καί +σύ +λέγεις +Ἐάν +τις +τόν +λόγον +μου +τηρήσῃ +οὐ +μή +γεύσηται +θανάτου +εἰς +τόν +αἰῶνα +μή +σύ +μείζων +εἶ +τοῦ +πατρός +ἡμῶν +Ἀβραάμ +ὅστις +ἀπέθανεν +καί +οἱ +προφῆται +ἀπέθανον +τίνα +σεαυτόν +ποιεῖς +ἀπεκρίθη +Ἰησοῦς +Ἐάν +ἐγώ +δοξάσω +ἐμαυτόν +ἡ +δόξα +μου +οὐδέν +ἐστιν +ἔστιν +ὁ +Πατήρ +μου +ὁ +δοξάζων +με +ὅν +ὑμεῖς +λέγετε +ὅτι +Θεός +ἡμῶν +ἐστιν +καί +οὐκ +ἐγνώκατε +αὐτόν +δέ +ἐγώ +οἶδα +αὐτόν +κἄν +εἴπω +ὅτι +οὐκ +οἶδα +αὐτόν +ἔσομαι +ὅμοιος +ὑμῖν +ψεύστης +ἀλλά +οἶδα +αὐτόν +καί +τόν +λόγον +αὐτοῦ +τηρῶ +Ἀβραάμ +ὁ +πατήρ +ὑμῶν +ἠγαλλιάσατο +ἵνα +ἴδῃ +τήν +ἡμέραν +τήν +ἐμήν +καί +εἶδεν +καί +ἐχάρη +οὖν +εἶπαν +οἱ +Ἰουδαῖοι +πρός +αὐτόν +Πεντήκοντα +ἔτη +οὔπω +ἔχεις +καί +Ἀβραάμ +ἑώρακας +εἶπεν +αὐτοῖς +Ἰησοῦς +Ἀμήν +ἀμήν +λέγω +ὑμῖν +πρίν +Ἀβραάμ +γενέσθαι +ἐγώ +εἰμί +οὖν +ἦραν +λίθους +ἵνα +βάλωσιν +ἐπ’ +αὐτόν +δέ +Ἰησοῦς +ἐκρύβη +καί +ἐξῆλθεν +ἐκ +τοῦ +ἱεροῦ +Καί +παράγων +εἶδεν +ἄνθρωπον +τυφλόν +ἐκ +γενετῆς +καί +ἠρώτησαν +αὐτόν +οἱ +μαθηταί +αὐτοῦ +λέγοντες +Ῥαββεί +τίς +ἥμαρτεν +οὗτος +ἤ +οἱ +γονεῖς +αὐτοῦ +ἵνα +τυφλός +γεννηθῇ +ἀπεκρίθη +Ἰησοῦς +Οὔτε +οὗτος +ἥμαρτεν +οὔτε +οἱ +γονεῖς +αὐτοῦ +ἀλλ’ +ἵνα +φανερωθῇ +τά +ἔργα +τοῦ +Θεοῦ +ἐν +αὐτῷ +δεῖ +ἡμᾶς +ἐργάζεσθαι +τά +ἔργα +τοῦ +πέμψαντος +με +ἕως +ἡμέρα +ἐστίν +ἔρχεται +νύξ +ὅτε +οὐδείς +δύναται +ἐργάζεσθαι +ὅταν +ἐν +τῷ +κόσμῳ +ὦ +εἰμι +φῶς +τοῦ +κόσμου +ταῦτα +εἰπών +ἔπτυσεν +χαμαί +καί +ἐποίησεν +πηλόν +ἐκ +τοῦ +πτύσματος +καί +ἐπέθηκεν +αὐτοῦ +τόν +πηλόν +ἐπί +τούς +ὀφθαλμούς +καί +εἶπεν +αὐτῷ +Ὕπαγε +νίψαι +εἰς +τήν +κολυμβήθραν +τοῦ +Σιλωάμ +ὅ +ἑρμηνεύεται +Ἀπεσταλμένος +οὖν +ἀπῆλθεν +καί +ἐνίψατο +καί +ἦλθεν +βλέπων +οὖν +Οἱ +γείτονες +καί +οἱ +θεωροῦντες +αὐτόν +τό +πρότερον +ὅτι +προσαίτης +ἦν +ἔλεγον +Οὐχ +οὗτος +ἐστιν +ὁ +καθήμενος +καί +προσαιτῶν +ἄλλοι +ἔλεγον +ὅτι +Οὗτος +ἐστιν +ἄλλοι +ἔλεγον +Οὐχί +ἀλλά +ὅμοιος +αὐτῷ +ἐστιν +ἐκεῖνος +ἔλεγεν +ὅτι +Ἐγώ +εἰμι +οὖν +ἔλεγον +αὐτῷ +οὖν +Πῶς +ἠνεῴχθησαν +σου +οἱ +ὀφθαλμοί +ἀπεκρίθη +ἐκεῖνος +Ὁ +ἄνθρωπος +ὁ +λεγόμενος +Ἰησοῦς +πηλόν +ἐποίησεν +καί +ἐπέχρισεν +μου +τούς +ὀφθαλμούς +καί +εἶπεν +μοι +ὅτι +Ὕπαγε +εἰς +τόν +Σιλωάμ +καί +νίψαι +οὖν +ἀπελθών +καί +νιψάμενος +ἀνέβλεψα +καί +εἶπαν +αὐτῷ +Ποῦ +ἐστιν +ἐκεῖνος +λέγει +Οὐκ +οἶδα +Ἄγουσιν +αὐτόν +τόν +ποτε +τυφλόν +πρός +τούς +Φαρισαίους +δέ +ἦν +σάββατον +ἐν +ᾗ +ἡμέρᾳ +τόν +πηλόν +ἐποίησεν +ὁ +Ἰησοῦς +καί +ἀνέῳξεν +αὐτοῦ +τούς +ὀφθαλμούς +οὖν +πάλιν +ἠρώτων +αὐτόν +καί +οἱ +Φαρισαῖοι +πῶς +ἀνέβλεψεν +δέ +ὁ +εἶπεν +αὐτοῖς +Πηλόν +ἐπέθηκεν +ἐπί +μου +τούς +ὀφθαλμούς +καί +ἐνιψάμην +καί +βλέπω +οὖν +ἔλεγον +ἐκ +τῶν +Φαρισαίων +τινές +Οὐκ +ἔστιν +παρά +Θεοῦ +οὗτος +ὁ +ἄνθρωπος +ὅτι +τό +σάββατον +οὐ +τηρεῖ +ἄλλοι +ἔλεγον +Πῶς +δύναται +ἄνθρωπος +ἁμαρτωλός +τοιαῦτα +σημεῖα +ποιεῖν +καί +σχίσμα +ἦν +ἐν +αὐτοῖς +οὖν +λέγουσιν +τῷ +τυφλῷ +πάλιν +Τί +σύ +λέγεις +περί +αὐτοῦ +ὅτι +ἠνέῳξεν +σου +τούς +ὀφθαλμούς +δέ +ὁ +εἶπεν +ὅτι +Προφήτης +ἐστίν +οὖν +οὐκ +ἐπίστευσαν +οἱ +Ἰουδαῖοι +περί +αὐτοῦ +ὅτι +ἦν +τυφλός +καί +ἀνέβλεψεν +ἕως +ὅτου +ἐφώνησαν +τούς +γονεῖς +αὐτοῦ +τοῦ +ἀναβλέψαντος +καί +ἠρώτησαν +αὐτούς +λέγοντες +Οὗτος +ἐστιν +ὁ +υἱός +ὑμῶν +ὅν +ὑμεῖς +λέγετε +ὅτι +τυφλός +ἐγεννήθη +οὖν +πῶς +βλέπει +ἄρτι +οὖν +ἀπεκρίθησαν +οἱ +γονεῖς +αὐτοῦ +καί +εἶπαν +Οἴδαμεν +ὅτι +οὗτος +ἐστιν +ὁ +υἱός +ἡμῶν +καί +ὅτι +τυφλός +ἐγεννήθη +δέ +πῶς +νῦν +βλέπει +οὐκ +οἴδαμεν +ἤ +τίς +ἤνοιξεν +αὐτοῦ +τούς +ὀφθαλμούς +ἡμεῖς +οὐκ +οἴδαμεν +αὐτόν +ἐρωτήσατε +ἡλικίαν +ἔχει +αὐτός +περί +ἑαυτοῦ +λαλήσει +ταῦτα +εἶπαν +οἱ +γονεῖς +αὐτοῦ +ὅτι +ἐφοβοῦντο +τούς +Ἰουδαίους +γάρ +ἤδη +συνετέθειντο +οἱ +Ἰουδαῖοι +ἵνα +ἐάν +τις +αὐτόν +ὁμολογήσῃ +Χριστόν +ἀποσυνάγωγος +γένηται +διά +τοῦτο +οἱ +γονεῖς +αὐτοῦ +εἶπαν +ὅτι +Ἠλικίαν +ἔχει +αὐτόν +ἐπερωτήσατε +οὖν +Ἐφώνησαν +τόν +ἄνθρωπον +ἐκ +δευτέρου +ὅς +ἦν +τυφλός +καί +εἶπαν +αὐτῷ +Δός +δόξαν +τῷ +Θεῷ +ἡμεῖς +οἴδαμεν +ὅτι +οὗτος +ὁ +ἄνθρωπος +ἁμαρτωλός +ἐστιν +οὖν +ἀπεκρίθη +ἐκεῖνος +Εἰ +ἁμαρτωλός +ἐστιν +οὐκ +οἶδα +ἕν +οἶδα +ὅτι +τυφλός +ὤν +ἄρτι +βλέπω +οὖν +εἶπαν +αὐτῷ +Τί +ἐποίησεν +σοι +πῶς +ἤνοιξεν +σου +τούς +ὀφθαλμούς +ἀπεκρίθη +αὐτοῖς +Εἶπον +ὑμῖν +ἤδη +καί +οὐκ +ἠκούσατε +τί +πάλιν +θέλετε +ἀκούειν +μή +καί +ὑμεῖς +θέλετε +αὐτοῦ +μαθηταί +γενέσθαι +καί +ἐλοιδόρησαν +αὐτόν +καί +εἶπαν +Σύ +μαθητής +ἐκείνου +εἶ +δέ +ἡμεῖς +τοῦ +Μωϋσέως +μαθηταί +ἐσμέν +ἡμεῖς +οἴδαμεν +ὅτι +Μωϋσεῖ +λελάληκεν +ὁ +Θεός +δέ +τοῦτον +οὐκ +οἴδαμεν +πόθεν +ἐστίν +ἀπεκρίθη +ὁ +ἄνθρωπος +καί +εἶπεν +αὐτοῖς +γάρ +Ἐν +τούτῳ +τό +θαυμαστόν +ἐστιν +ὅτι +ὑμεῖς +οὐκ +οἴδατε +πόθεν +ἐστίν +καί +ἤνοιξεν +μου +τούς +ὀφθαλμούς +οἴδαμεν +ὅτι +ὁ +Θεός +ἁμαρτωλῶν +οὐκ +ἀκούει +ἀλλ’ +ἐάν +τις +θεοσεβής +ᾖ +καί +τό +θέλημα +αὐτοῦ +ποιῇ +τούτου +ἀκούει +ἐκ +τοῦ +αἰῶνος +οὐκ +ἠκούσθη +ὅτι +ἠνέῳξεν +τις +ὀφθαλμούς +τυφλοῦ +γεγεννημένου +εἰ +μή +ἦν +οὗτος +παρά +Θεοῦ +οὐκ +ἠδύνατο +ποιεῖν +οὐδέν +ἀπεκρίθησαν +καί +εἶπαν +αὐτῷ +Ἐν +ἁμαρτίαις +σύ +ἐγεννήθης +ὅλος +καί +σύ +διδάσκεις +ἡμᾶς +καί +ἐξέβαλον +αὐτόν +ἔξω +Ἤκουσεν +Ἰησοῦς +ὅτι +ἐξέβαλον +αὐτόν +ἔξω +καί +εὑρών +αὐτόν +εἶπεν +Σύ +πιστεύεις +εἰς +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἀπεκρίθη +ἐκεῖνος +καί +εἶπεν +Καί +τίς +ἐστιν +Κύριε +ἵνα +πιστεύσω +εἰς +αὐτόν +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Καί +ἑώρακας +αὐτόν +καί +ὁ +λαλῶν +μετά +σοῦ +ἐκεῖνος +ἐστιν +δέ +ὁ +ἔφη +Πιστεύω +Κύριε +καί +προσεκύνησεν +αὐτῷ +καί +εἶπεν +ὁ +Ἰησοῦς +Εἰς +κρίμα +ἐγώ +εἰς +τόν +κόσμον +τοῦτον +ἦλθον +ἵνα +οἱ +μή +βλέποντες +βλέπωσιν +καί +οἱ +βλέποντες +τυφλοί +γένωνται +ἤκουσαν +ταῦτα +ἐκ +τῶν +Φαρισαίων +οἱ +μετ’ +αὐτοῦ +ὄντες +καί +εἶπαν +αὐτῷ +Μή +καί +ἡμεῖς +τυφλοί +ἐσμεν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Εἰ +τυφλοί +ἦτε +ἄν +οὐκ +εἴχετε +ἁμαρτίαν +δέ +νῦν +λέγετε +ὅτι +Βλέπομεν +ἡ +ἁμαρτία +ὑμῶν +μένει +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ὁ +μή +εἰσερχόμενος +διά +τῆς +θύρας +εἰς +τήν +αὐλήν +τῶν +προβάτων +ἀλλά +ἀναβαίνων +ἀλλαχόθεν +ἐκεῖνος +κλέπτης +ἐστίν +καί +λῃστής +δέ +ὁ +εἰσερχόμενος +διά +τῆς +θύρας +ἐστιν +ποιμήν +τῶν +προβάτων +τούτῳ +ὁ +θυρωρός +ἀνοίγει +καί +τά +πρόβατα +τῆς +φωνῆς +αὐτοῦ +ἀκούει +καί +τά +ἴδια +πρόβατα +φωνεῖ +κατ’ +ὄνομα +καί +ἐξάγει +αὐτά +ὅταν +τά +ἴδια +πάντα +ἐκβάλῃ +ἔμπροσθεν +αὐτῶν +πορεύεται +καί +τά +πρόβατα +αὐτῷ +ἀκολουθεῖ +ὅτι +οἴδασιν +τήν +φωνήν +αὐτοῦ +δέ +ἀλλοτρίῳ +οὐ +μή +ἀκολουθήσουσιν +ἀλλά +φεύξονται +ἀπ’ +αὐτοῦ +ὅτι +οὐκ +οἴδασιν +τῶν +ἀλλοτρίων +τήν +φωνήν +Ταύτην +τήν +παροιμίαν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +δέ +ἐκεῖνοι +οὐκ +ἔγνωσαν +τίνα +ἦν +ἅ +ἐλάλει +αὐτοῖς +οὖν +Εἶπεν +πάλιν +ὁ +Ἰησοῦς +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ὅτι +ἐγώ +εἰμι +ἡ +θύρα +τῶν +προβάτων +πάντες +ὅσοι +ἦλθον +πρό +ἐμοῦ +κλέπται +εἰσίν +καί +λῃσταί +ἀλλ’ +οὐκ +ἤκουσαν +αὐτῶν +τά +πρόβατα +ἐγώ +εἰμι +ἡ +θύρα +ἐάν +δι’ +ἐμοῦ +τις +εἰσέλθῃ +σωθήσεται +καί +εἰσελεύσεται +καί +ἐξελεύσεται +καί +νομήν +εὑρήσει +ὁ +κλέπτης +οὐκ +ἔρχεται +εἰ +μή +ἵνα +κλέψῃ +καί +θύσῃ +καί +ἀπολέσῃ +ἐγώ +ἦλθον +ἵνα +ζωήν +ἔχωσιν +καί +περισσόν +ἔχωσιν +ἐγώ +εἰμι +ὁ +ποιμήν +ὁ +καλός +ὁ +ποιμήν +ὁ +καλός +τήν +ψυχήν +αὐτοῦ +τίθησιν +ὑπέρ +τῶν +προβάτων +ὁ +μισθωτός +καί +οὐκ +ὤν +ποιμήν +οὗ +οὐκ +ἔστιν +τά +πρόβατα +ἴδια +θεωρεῖ +τόν +λύκον +ἐρχόμενον +καί +ἀφίησιν +τά +πρόβατα +καί +φεύγει +καί +ὁ +λύκος +ἁρπάζει +αὐτά +καί +σκορπίζει +ὅτι +μισθωτός +ἐστιν +καί +οὐ +μέλει +αὐτῷ +περί +τῶν +προβάτων +ἐγώ +εἰμι +ὁ +ποιμήν +ὁ +καλός +καί +γινώσκω +τά +ἐμά +καί +γινώσκουσι +με +τά +ἐμά +καθώς +γινώσκει +με +ὁ +Πατήρ +κἀγώ +γινώσκω +τόν +Πατέρα +καί +τήν +ψυχήν +μου +τίθημι +ὑπέρ +τῶν +προβάτων +καί +ἄλλα +πρόβατα +ἔχω +ἅ +οὐκ +ἔστιν +ἐκ +τῆς +αὐλῆς +ταύτης +κἀκεῖνα +με +ἀγαγεῖν +δεῖ +καί +τῆς +φωνῆς +μου +ἀκούσουσιν +καί +γενήσεται +μία +ποίμνη +εἷς +ποιμήν +διά +τοῦτο +με +ὁ +Πατήρ +ἀγαπᾷ +ὅτι +ἐγώ +τίθημι +τήν +ψυχήν +μου +ἵνα +πάλιν +λάβω +αὐτήν +οὐδείς +ἦρεν +αὐτήν +ἀπ’ +ἐμοῦ +ἀλλ’ +ἐγώ +τίθημι +αὐτήν +ἀπ’ +ἐμαυτοῦ +ἐξουσίαν +ἔχω +θεῖναι +αὐτήν +καί +ἐξουσίαν +ἔχω +πάλιν +λαβεῖν +αὐτήν +ταύτην +τήν +ἐντολήν +ἔλαβον +παρά +τοῦ +Πατρός +μου +Σχίσμα +πάλιν +ἐγένετο +ἐν +τοῖς +Ἰουδαίοις +διά +τούς +λόγους +τούτους +δέ +ἔλεγον +πολλοί +ἐξ +αὐτῶν +Δαιμόνιον +ἔχει +καί +μαίνεται +τί +αὐτοῦ +ἀκούετε +ἄλλοι +ἔλεγον +Ταῦτα +τά +ῥήματα +οὐκ +ἔστιν +δαιμονιζομένου +μή +δαιμόνιον +δύναται +τυφλῶν +ὀφθαλμούς +ἀνοῖξαι +Ἐγένετο +τότε +τά +ἐνκαίνια +ἐν +τοῖς +Ἱεροσολύμοις +χειμών +ἦν +καί +περιεπάτει +ὁ +Ἰησοῦς +ἐν +τῷ +ἱερῷ +ἐν +τῇ +στοᾷ +τοῦ +Σολομῶνος +οὖν +ἐκύκλωσαν +αὐτόν +οἱ +Ἰουδαῖοι +καί +ἔλεγον +αὐτῷ +Ἕως +πότε +τήν +ψυχήν +ἡμῶν +αἴρεις +εἰ +σύ +εἶ +ὁ +Χριστός +εἰπόν +ἡμῖν +παρρησίᾳ +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Εἶπον +ὑμῖν +καί +οὐ +πιστεύετε +τά +ἔργα +ἅ +ἐγώ +ποιῶ +ἐν +τῷ +ὀνόματι +τοῦ +Πατρός +μου +ταῦτα +μαρτυρεῖ +περί +ἐμοῦ +ἀλλά +ὑμεῖς +οὐ +πιστεύετε +ὅτι +οὐκ +ἐστέ +ἐκ +τῶν +προβάτων +τῶν +ἐμῶν +τά +πρόβατα +τά +ἐμά +τῆς +φωνῆς +μου +ἀκούουσιν +κἀγώ +γινώσκω +αὐτά +καί +ἀκολουθοῦσιν +μοι +κἀγώ +δίδωμι +αὐτοῖς +ζωήν +αἰώνιον +καί +οὐ +μή +ἀπόλωνται +εἰς +τόν +αἰῶνα +καί +οὐχ +ἁρπάσει +τις +αὐτά +ἐκ +τῆς +χειρός +μου +ὁ +Πατήρ +μου +ὅ +δέδωκεν +μοι +πάντων +μεῖζον +ἐστιν +καί +οὐδείς +δύναται +ἁρπάζειν +ἐκ +τῆς +χειρός +τοῦ +Πατρός +ἐγώ +καί +ὁ +Πατήρ +ἕν +ἐσμεν +Ἐβάστασαν +πάλιν +λίθους +οἱ +Ἰουδαῖοι +ἵνα +λιθάσωσιν +αὐτόν +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Πολλά +ἔργα +καλά +ἔδειξα +ὑμῖν +ἐκ +τοῦ +Πατρός +διά +ποῖον +αὐτῶν +ἔργον +ἐμέ +λιθάζετε +ἀπεκρίθησαν +αὐτῷ +οἱ +Ἰουδαῖοι +Περί +καλοῦ +ἔργου +οὐ +λιθάζομεν +σε +ἀλλά +περί +βλασφημίας +καί +ὅτι +σύ +ἄνθρωπος +ὤν +ποιεῖς +σεαυτόν +Θεόν +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Οὐκ +ἔστιν +γεγραμμένον +ἐν +τῷ +νόμῳ +ὑμῶν +ὅτι +Ἐγώ +εἶπα +Θεοί +ἐστε +εἰ +ἐκείνους +εἶπεν +θεούς +πρός +οὕς +ὁ +λόγος +τοῦ +Θεοῦ +ἐγένετο +καί +οὐ +δύναται +λυθῆναι +ἡ +γραφή +ὅν +ὁ +Πατήρ +ἡγίασεν +καί +ἀπέστειλεν +εἰς +τόν +κόσμον +ὑμεῖς +λέγετε +ὅτι +Βλασφημεῖς +ὅτι +εἶπον +Υἱός +τοῦ +Θεοῦ +εἰμι +εἰ +οὐ +ποιῶ +τά +ἔργα +τοῦ +Πατρός +μου +μή +πιστεύετε +μοι +δέ +εἰ +ποιῶ +κἄν +ἐμοί +μή +πιστεύητε +τοῖς +ἔργοις +πιστεύετε +ἵνα +γνῶτε +καί +γινώσκητε +ὅτι +ἐν +ἐμοί +ὁ +Πατήρ +κἀγώ +ἐν +τῷ +Πατρί +οὖν +Ἐζήτουν +αὐτόν +πιάσαι +πάλιν +καί +ἐξῆλθεν +ἐκ +τῆς +χειρός +αὐτῶν +Καί +ἀπῆλθεν +πάλιν +πέραν +τοῦ +Ἰορδάνου +εἰς +τόν +τόπον +ὅπου +ἦν +βαπτίζων +Ἰωάνης +τό +πρῶτον +καί +ἔμενεν +ἐκεῖ +καί +πολλοί +ἦλθον +πρός +αὐτόν +καί +ἔλεγον +ὅτι +μέν +Ἰωάνης +σημεῖον +οὐδέν +ἐποίησεν +δέ +πάντα +ὅσα +εἶπεν +Ἰωάνης +περί +τούτου +ἀληθῆ +ἦν +καί +πολλοί +ἐπίστευσαν +εἰς +αὐτόν +ἐκεῖ +δέ +Ἦν +τις +ἀσθενῶν +Λάζαρος +ἀπό +Βηθανίας +ἐκ +τῆς +κώμης +Μαρίας +καί +Μάρθας +τῆς +ἀδελφῆς +αὐτῆς +δέ +ἦν +Μαριάμ +ἡ +ἀλείψασα +τόν +Κύριον +μύρῳ +καί +ἐκμάξασα +τούς +πόδας +αὐτοῦ +ταῖς +θριξίν +αὐτῆς +ἧς +ὁ +ἀδελφός +Λάζαρος +ἠσθένει +οὖν +ἀπέστειλαν +αἱ +ἀδελφαί +πρός +αὐτόν +λέγουσαι +Κύριε +ἴδε +ὅν +φιλεῖς +ἀσθενεῖ +δέ +ἀκούσας +ὁ +Ἰησοῦς +εἶπεν +Αὕτη +ἡ +ἀσθένεια +οὐκ +ἔστιν +πρός +θάνατον +ἀλλ’ +ὑπέρ +τῆς +δόξης +τοῦ +Θεοῦ +ἵνα +δοξασθῇ +ὁ +Υἱός +τοῦ +Θεοῦ +δι’ +αὐτῆς +δέ +ἠγάπα +ὁ +Ἰησοῦς +τήν +Μάρθαν +καί +τήν +ἀδελφήν +αὐτῆς +καί +τόν +Λάζαρον +οὖν +ὡς +ἤκουσεν +ὅτι +ἀσθενεῖ +μέν +τότε +ἔμεινεν +ἐν +ᾧ +ἦν +τόπῳ +δύο +ἡμέρας +ἔπειτα +μετά +τοῦτο +λέγει +τοῖς +μαθηταῖς +Ἄγωμεν +εἰς +τήν +Ἰουδαίαν +πάλιν +λέγουσιν +αὐτῷ +οἱ +μαθηταί +Ῥαββεί +νῦν +ἐζήτουν +σε +λιθάσαι +οἱ +Ἰουδαῖοι +καί +πάλιν +ὑπάγεις +ἐκεῖ +ἀπεκρίθη +Ἰησοῦς +Οὐχί +δώδεκα +ὧραι +εἰσιν +τῆς +ἡμέρας +ἐάν +τις +περιπατῇ +ἐν +τῇ +ἡμέρᾳ +οὐ +προσκόπτει +ὅτι +τό +φῶς +τοῦ +κόσμου +τούτου +βλέπει +δέ +ἐάν +τις +περιπατῇ +ἐν +τῇ +νυκτί +προσκόπτει +ὅτι +τό +φῶς +οὐκ +ἔστιν +ἐν +αὐτῷ +ταῦτα +εἶπεν +καί +μετά +τοῦτο +λέγει +αὐτοῖς +Λάζαρος +ὁ +φίλος +ἡμῶν +κεκοίμηται +ἀλλά +πορεύομαι +ἵνα +ἐξυπνίσω +αὐτόν +οὖν +εἶπαν +οἱ +μαθηταί +αὐτῷ +Κύριε +εἰ +κεκοίμηται +σωθήσεται +δέ +εἰρήκει +ὁ +Ἰησοῦς +περί +τοῦ +θανάτου +αὐτοῦ +δέ +ἐκεῖνοι +ἔδοξαν +ὅτι +περί +τῆς +κοιμήσεως +τοῦ +ὕπνου +λέγει +οὖν +τότε +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +παρρησίᾳ +Λάζαρος +ἀπέθανεν +καί +χαίρω +δι’ +ὑμᾶς +ἵνα +πιστεύσητε +ὅτι +οὐκ +ἤμην +ἐκεῖ +ἀλλά +ἄγωμεν +πρός +αὐτόν +οὖν +εἶπεν +Θωμᾶς +ὁ +λεγόμενος +Δίδυμος +τοῖς +συνμαθηταῖς +Ἄγωμεν +καί +ἡμεῖς +ἵνα +ἀποθάνωμεν +μετ’ +αὐτοῦ +οὖν +Ἐλθών +ὁ +Ἰησοῦς +εὗρεν +αὐτόν +τέσσαρας +ἡμέρας +ἤδη +ἔχοντα +ἐν +τῷ +μνημείῳ +δέ +ἦν +Βηθανία +ἐγγύς +τῶν +Ἱεροσολύμων +ὡς +ἀπό +σταδίων +δεκαπέντε +δέ +πολλοί +ἐκ +τῶν +Ἰουδαίων +ἐληλύθεισαν +πρός +τήν +Μάρθαν +καί +Μαριάμ +ἵνα +παραμυθήσωνται +αὐτάς +περί +τοῦ +ἀδελφοῦ +οὖν +ὡς +ἤκουσεν +ὅτι +Ἰησοῦς +ἔρχεται +ἡ +Μάρθα +ὑπήντησεν +αὐτῷ +δέ +Μαριάμ +ἐν +τῷ +οἴκῳ +ἐκαθέζετο +οὖν +εἶπεν +ἡ +Μάρθα +πρός +Ἰησοῦν +Κύριε +εἰ +ἦς +ὧδε +ἄν +οὐκ +ἀπέθανεν +ὁ +ἀδελφός +μου +καί +νῦν +οἶδα +ὅτι +ἄν +ὅσα +αἰτήσῃ +τόν +Θεόν +δώσει +σοι +ὁ +Θεός +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Ἀναστήσεται +ὁ +ἀδελφός +σου +λέγει +αὐτῷ +ἡ +Μάρθα +Οἶδα +ὅτι +ἀναστήσεται +ἐν +τῇ +ἀναστάσει +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +εἶπεν +αὐτῇ +ὁ +Ἰησοῦς +Ἐγώ +εἰμι +ἡ +ἀνάστασις +καί +ἡ +ζωή +ὁ +πιστεύων +εἰς +ἐμέ +κἄν +ἀποθάνῃ +ζήσεται +καί +πᾶς +ὁ +ζῶν +καί +πιστεύων +εἰς +ἐμέ +οὐ +μή +ἀποθάνῃ +εἰς +τόν +αἰῶνα +πιστεύεις +τοῦτο +λέγει +αὐτῷ +Ναί +Κύριε +ἐγώ +πεπίστευκα +ὅτι +σύ +εἶ +ὁ +Χριστός +ὁ +Υἱός +τοῦ +Θεοῦ +ὁ +εἰς +τόν +κόσμον +ἐρχόμενος +καί +τοῦτο +εἰποῦσα +ἀπῆλθεν +καί +ἐφώνησεν +Μαριάμ +τήν +ἀδελφήν +αὐτῆς +λάθρᾳ +εἰποῦσα +Ὁ +Διδάσκαλος +πάρεστιν +καί +φωνεῖ +σε +δέ +ἐκείνη +ὡς +ἤκουσεν +ἐγείρεται +ταχύ +καί +ἤρχετο +πρός +αὐτόν +δέ +οὔπω +ἐληλύθει +ὁ +Ἰησοῦς +εἰς +τήν +κώμην +ἀλλ’ +ἦν +ἔτι +ἐν +τῷ +τόπῳ +ὅπου +ὑπήντησεν +αὐτῷ +ἡ +Μάρθα +οὖν +οἱ +Ἰουδαῖοι +οἱ +ὄντες +μετ’ +αὐτῆς +ἐν +τῇ +οἰκίᾳ +καί +παραμυθούμενοι +αὐτήν +ἰδόντες +τήν +Μαριάμ +ὅτι +ταχέως +ἀνέστη +καί +ἐξῆλθεν +ἠκολούθησαν +αὐτῇ +δόξαντες +ὅτι +ὑπάγει +εἰς +τό +μνημεῖον +ἵνα +κλαύσῃ +ἐκεῖ +οὖν +ἡ +Μαριάμ +ὡς +ἦλθεν +ὅπου +ἦν +Ἰησοῦς +ἰδοῦσα +αὐτόν +ἔπεσεν +πρός +αὐτοῦ +τούς +πόδας +λέγουσα +αὐτῷ +Κύριε +εἰ +ἦς +ὧδε +ἄν +οὐκ +ἀπέθανεν +μου +ὁ +ἀδελφός +οὖν +Ἰησοῦς +ὡς +εἶδεν +αὐτήν +κλαίουσαν +καί +τούς +συνελθόντας +αὐτῇ +Ἰουδαίους +κλαίοντας +ἐνεβριμήσατο +τῷ +πνεύματι +καί +ἐτάραξεν +ἑαυτόν +καί +εἶπεν +Ποῦ +τεθείκατε +αὐτόν +λέγουσιν +αὐτῷ +Κύριε +ἔρχου +καί +ἴδε +ἐδάκρυσεν +ὁ +Ἰησοῦς +οὖν +ἔλεγον +οἱ +Ἰουδαῖοι +Ἴδε +πῶς +ἐφίλει +αὐτόν +δέ +τινές +ἐξ +αὐτῶν +εἶπαν +Οὐκ +ἐδύνατο +οὗτος +ὁ +ἀνοίξας +τούς +ὀφθαλμούς +τοῦ +τυφλοῦ +ποιῆσαι +ἵνα +καί +οὗτος +μή +ἀποθάνῃ +οὖν +Ἰησοῦς +πάλιν +ἐμβριμώμενος +ἐν +ἑαυτῷ +ἔρχεται +εἰς +τό +μνημεῖον +δέ +ἦν +σπήλαιον +καί +λίθος +ἐπέκειτο +ἐπ’ +αὐτῷ +λέγει +ὁ +Ἰησοῦς +Ἄρατε +τόν +λίθον +λέγει +αὐτῷ +ἡ +ἀδελφή +τοῦ +τετελευτηκότος +Μάρθα +Κύριε +ἤδη +ὄζει +γάρ +τεταρταῖος +ἐστιν +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Οὐκ +εἶπον +σοι +ὅτι +ἐάν +πιστεύσῃς +ὄψῃ +τήν +δόξαν +τοῦ +Θεοῦ +οὖν +ἦραν +τόν +λίθον +δέ +ὁ +Ἰησοῦς +ἦρεν +τούς +ὀφθαλμούς +ἄνω +καί +εἶπεν +Πάτερ +εὐχαριστῶ +σοι +ὅτι +ἤκουσας +μου +δέ +ἐγώ +ᾔδειν +ὅτι +πάντοτε +μου +ἀκούεις +ἀλλά +διά +τόν +ὄχλον +τόν +περιεστῶτα +εἶπον +ἵνα +πιστεύσωσιν +ὅτι +σύ +με +ἀπέστειλας +καί +ταῦτα +εἰπών +φωνῇ +μεγάλῃ +ἐκραύγασεν +Λάζαρε +δεῦρο +ἔξω +ἐξῆλθεν +ὁ +τεθνηκώς +δεδεμένος +τούς +πόδας +καί +τάς +χεῖρας +κειρίαις +καί +ἡ +ὄψις +αὐτοῦ +σουδαρίῳ +περιεδέδετο +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Λύσατε +αὐτόν +καί +ἄφετε +αὐτόν +ὑπάγειν +οὖν +Πολλοί +ἐκ +τῶν +Ἰουδαίων +οἱ +ἐλθόντες +πρός +τήν +Μαριάμ +καί +θεασάμενοι +ὅ +ἐποίησεν +ἐπίστευσαν +εἰς +αὐτόν +δέ +τινές +ἐξ +αὐτῶν +ἀπῆλθον +πρός +τούς +Φαρισαίους +καί +εἶπαν +αὐτοῖς +ἅ +ἐποίησεν +Ἰησοῦς +οὖν +Συνήγαγον +οἱ +ἀρχιερεῖς +καί +οἱ +Φαρισαῖοι +συνέδριον +καί +ἔλεγον +Τί +ποιοῦμεν +ὅτι +οὗτος +ὁ +ἄνθρωπος +πολλά +σημεῖα +ποιεῖ +ἐάν +ἀφῶμεν +αὐτόν +οὕτως +πάντες +πιστεύσουσιν +εἰς +αὐτόν +καί +ἐλεύσονται +οἱ +Ῥωμαῖοι +καί +ἀροῦσιν +ἡμῶν +καί +τόν +τόπον +καί +τό +ἔθνος +δέ +εἷς +τις +ἐξ +αὐτῶν +Καϊάφας +ἀρχιερεύς +ὤν +τοῦ +ἐνιαυτοῦ +ἐκείνου +εἶπεν +αὐτοῖς +Ὑμεῖς +οὐκ +οἴδατε +οὐδέν +οὐδέ +λογίζεσθε +ὅτι +συμφέρει +ὑμῖν +ἵνα +εἷς +ἄνθρωπος +ἀποθάνῃ +ὑπέρ +τοῦ +λαοῦ +καί +μή +ὅλον +τό +ἔθνος +ἀπόληται +δέ +τοῦτο +ἀφ’ +ἑαυτοῦ +οὐκ +εἶπεν +ἀλλά +ἀρχιερεύς +ὤν +τοῦ +ἐνιαυτοῦ +ἐκείνου +ἐπροφήτευσεν +ὅτι +ἔμελλεν +Ἰησοῦς +ἀποθνήσκειν +ὑπέρ +τοῦ +ἔθνους +καί +οὐχ +ὑπέρ +τοῦ +ἔθνους +μόνον +ἀλλ’ +ἵνα +καί +τά +τέκνα +τοῦ +Θεοῦ +τά +διεσκορπισμένα +συναγάγῃ +εἰς +ἕν +οὖν +ἀπ’ +ἐκείνης +τῆς +ἡμέρας +ἐβουλεύσαντο +ἵνα +ἀποκτείνωσιν +αὐτόν +οὖν +Ὁ +Ἰησοῦς +οὐκέτι +παρρησίᾳ +περιεπάτει +ἐν +τοῖς +Ἰουδαίοις +ἀλλά +ἀπῆλθεν +ἐκεῖθεν +εἰς +τήν +χώραν +ἐγγύς +τῆς +ἐρήμου +εἰς +Ἐφραίμ +λεγομένην +πόλιν +κἀκεῖ +ἔμεινεν +μετά +τῶν +μαθητῶν +δέ +Ἦν +ἐγγύς +τό +πάσχα +τῶν +Ἰουδαίων +καί +ἀνέβησαν +πολλοί +εἰς +Ἱεροσόλυμα +ἐκ +τῆς +χώρας +πρό +τοῦ +πάσχα +ἵνα +ἁγνίσωσιν +ἑαυτούς +οὖν +ἐζήτουν +τόν +Ἰησοῦν +καί +ἔλεγον +μετ’ +ἀλλήλων +ἐν +τῷ +ἱερῷ +ἑστηκότες +Τί +δοκεῖ +ὑμῖν +ὅτι +οὐ +μή +ἔλθῃ +εἰς +τήν +ἑορτήν +δέ +δεδώκεισαν +οἱ +ἀρχιερεῖς +καί +οἱ +Φαρισαῖοι +ἐντολάς +ἵνα +ἐάν +τις +γνῷ +ποῦ +ἐστιν +μηνύσῃ +ὅπως +πιάσωσιν +αὐτόν +οὖν +Ὁ +Ἰησοῦς +πρό +ἕξ +ἡμερῶν +τοῦ +πάσχα +ἦλθεν +εἰς +Βηθανίαν +ὅπου +ἦν +Λάζαρος +ὅν +ἤγειρεν +ἐκ +νεκρῶν +Ἰησοῦς +οὖν +ἐποίησαν +αὐτῷ +δεῖπνον +ἐκεῖ +καί +ἡ +Μάρθα +διηκόνει +δέ +ὁ +Λάζαρος +ἦν +εἷς +ἐκ +τῶν +ἀνακειμένων +σύν +αὐτῷ +οὖν +ἡ +Μαριάμ +λαβοῦσα +λίτραν +μύρου +νάρδου +πιστικῆς +πολυτίμου +ἤλειψεν +τούς +πόδας +τοῦ +Ἰησοῦ +καί +ἐξέμαξεν +ταῖς +θριξίν +αὐτῆς +τούς +πόδας +αὐτοῦ +δέ +ἡ +οἰκία +ἐπληρώθη +ἐκ +τῆς +ὀσμῆς +τοῦ +μύρου +δέ +λέγει +Ἰούδας +ὁ +Ἰσκαριώτης +εἷς +τῶν +μαθητῶν +αὐτοῦ +ὁ +μέλλων +αὐτόν +παραδιδόναι +Διά +τί +τοῦτο +τό +μύρον +οὐκ +ἐπράθη +τριακοσίων +δηναρίων +καί +ἐδόθη +πτωχοῖς +δέ +εἶπεν +τοῦτο +οὐχ +ὅτι +περί +τῶν +πτωχῶν +ἔμελεν +αὐτῷ +ἀλλ’ +ὅτι +κλέπτης +ἦν +καί +τό +γλωσσόκομον +ἔχων +τά +βαλλόμενα +ἐβάσταζεν +οὖν +εἶπεν +ὁ +Ἰησοῦς +Ἄφες +αὐτήν +ἵνα +εἰς +τήν +ἡμέραν +τοῦ +ἐνταφιασμοῦ +μου +τηρήσῃ +αὐτό +γάρ +τούς +πτωχούς +πάντοτε +ἔχετε +μεθ’ +ἑαυτῶν +δέ +ἐμέ +οὐ +πάντοτε +ἔχετε +οὖν +Ἔγνω +ὁ +ὄχλος +πολύς +ἐκ +τῶν +Ἰουδαίων +ὅτι +ἐκεῖ +ἐστιν +καί +ἦλθον +οὐ +διά +τόν +Ἰησοῦν +μόνον +ἀλλ’ +ἵνα +καί +ἴδωσιν +τόν +Λάζαρον +ὅν +ἤγειρεν +ἐκ +νεκρῶν +δέ +ἐβουλεύσαντο +οἱ +ἀρχιερεῖς +ἵνα +καί +τόν +Λάζαρον +ἀποκτείνωσιν +ὅτι +πολλοί +τῶν +Ἰουδαίων +δι’ +αὐτόν +ὑπῆγον +καί +ἐπίστευον +εἰς +τόν +Ἰησοῦν +Τῇ +ἐπαύριον +ὁ +ὄχλος +πολύς +ὁ +ἐλθών +εἰς +τήν +ἑορτήν +ἀκούσαντες +ὅτι +ἔρχεται +Ἰησοῦς +εἰς +Ἱεροσόλυμα +ἔλαβον +τά +βαΐα +τῶν +φοινίκων +καί +ἐξῆλθον +εἰς +ὑπάντησιν +αὐτῷ +καί +ἐκραύγαζον +Ὡσαννά +εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου +καί +ὁ +Βασιλεύς +τοῦ +Ἰσραήλ +δέ +εὑρών +ὀνάριον +ὁ +Ἰησοῦς +ἐκάθισεν +ἐπ’ +αὐτό +καθώς +ἐστιν +γεγραμμένον +Μή +φοβοῦ +θυγάτηρ +Σιών +ἰδού +ὁ +Βασιλεύς +σου +ἔρχεται +καθήμενος +ἐπί +πῶλον +ὄνου +Ταῦτα +οὐκ +ἔγνωσαν +αὐτοῦ +οἱ +μαθηταί +τό +πρῶτον +ἀλλ’ +ὅτε +ἐδοξάσθη +Ἰησοῦς +τότε +ἐμνήσθησαν +ὅτι +ταῦτα +ἦν +γεγραμμένα +ἐπ’ +αὐτῷ +καί +ταῦτα +ἐποίησαν +αὐτῷ +οὖν +Ἐμαρτύρει +ὁ +ὄχλος +ὁ +ὤν +μετ’ +αὐτοῦ +ὅτε +τόν +Λάζαρον +ἐφώνησεν +ἐκ +τοῦ +μνημείου +καί +ἤγειρεν +αὐτόν +ἐκ +νεκρῶν +διά +τοῦτο +καί +ὑπήντησεν +αὐτῷ +ὁ +ὄχλος +ὅτι +ἤκουσαν +τοῦτο +αὐτόν +πεποιηκέναι +τό +σημεῖον +οὖν +οἱ +Φαρισαῖοι +εἶπαν +πρός +ἑαυτούς +Θεωρεῖτε +ὅτι +οὐκ +ὠφελεῖτε +οὐδέν +ἴδε +ὁ +κόσμος +ὀπίσω +αὐτοῦ +ἀπῆλθεν +δέ +Ἦσαν +Ἕλληνες +τινες +ἐκ +τῶν +ἀναβαινόντων +ἵνα +προσκυνήσωσιν +ἐν +τῇ +ἑορτῇ +οὖν +οὗτοι +προσῆλθον +Φιλίππῳ +τῷ +ἀπό +Βηθσαϊδά +τῆς +Γαλιλαίας +καί +ἠρώτων +αὐτόν +λέγοντες +Κύριε +θέλομεν +τόν +Ἰησοῦν +ἰδεῖν +ἔρχεται +ὁ +Φίλιππος +καί +λέγει +τῷ +Ἀνδρέᾳ +ἔρχεται +Ἀνδρέας +καί +Φίλιππος +καί +λέγουσιν +τῷ +Ἰησοῦ +δέ +ὁ +Ἰησοῦς +ἀποκρίνεται +αὐτοῖς +λέγων +Ἐλήλυθεν +ἡ +ὥρα +ἵνα +δοξασθῇ +ὁ +Υἱός +τοῦ +ἀνθρώπου +ἀμήν +ἀμήν +λέγω +ὑμῖν +ἐάν +μή +ὁ +κόκκος +τοῦ +σίτου +πεσών +εἰς +τήν +γῆν +ἀποθάνῃ +αὐτός +μόνος +μένει +δέ +ἐάν +ἀποθάνῃ +πολύν +καρπόν +φέρει +ὁ +φιλῶν +τήν +ψυχήν +αὐτοῦ +ἀπολλύει +αὐτήν +καί +ὁ +μισῶν +τήν +ψυχήν +αὐτοῦ +ἐν +τῷ +κόσμῳ +τούτῳ +εἰς +ζωήν +αἰώνιον +φυλάξει +αὐτήν +ἐάν +ἐμοί +τις +διακονῇ +ἐμοί +ἀκολουθείτω +καί +ὅπου +εἰμί +ἐγώ +ἐκεῖ +καί +ὁ +διάκονος +ὁ +ἐμός +ἔσται +ἐάν +τις +ἐμοί +διακονῇ +τιμήσει +αὐτόν +ὁ +Πατήρ +νῦν +ἡ +ψυχή +μου +τετάρακται +καί +τί +εἴπω +Πάτερ +σῶσον +με +ἐκ +τῆς +ὥρας +ταύτης +ἀλλά +διά +τοῦτο +ἦλθον +εἰς +τήν +ὥραν +ταύτην +Πάτερ +δόξασον +σου +τό +ὄνομα +οὖν +ἦλθεν +φωνή +ἐκ +τοῦ +οὐρανοῦ +Καί +ἐδόξασα +καί +πάλιν +δοξάσω +οὖν +ὁ +ὄχλος +ὁ +ἑστώς +καί +ἀκούσας +ἔλεγεν +βροντήν +γεγονέναι +ἄλλοι +ἔλεγον +Ἄγγελος +αὐτῷ +λελάληκεν +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +Οὐ +δι’ +ἐμέ +ἡ +φωνή +αὕτη +γέγονεν +ἀλλά +δι’ +ὑμᾶς +νῦν +ἐστίν +κρίσις +τοῦ +κόσμου +τούτου +νῦν +ὁ +ἄρχων +τοῦ +κόσμου +τούτου +ἐκβληθήσεται +ἔξω +ἐάν +κἀγώ +ὑψωθῶ +ἐκ +τῆς +γῆς +πάντας +ἑλκύσω +πρός +ἐμαυτόν +δέ +τοῦτο +ἔλεγεν +σημαίνων +ποίῳ +θανάτῳ +ἤμελλεν +ἀποθνήσκειν +οὖν +ἀπεκρίθη +αὐτῷ +ὁ +ὄχλος +Ἠμεῖς +ἠκούσαμεν +ἐκ +τοῦ +νόμου +ὅτι +ὁ +Χριστός +μένει +εἰς +τόν +αἰῶνα +καί +πῶς +λέγεις +σύ +ὅτι +δεῖ +ὑψωθῆναι +τόν +Υἱόν +τοῦ +ἀνθρώπου +τίς +ἐστιν +οὗτος +ὁ +Υἱός +τοῦ +ἀνθρώπου +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἔτι +μικρόν +χρόνον +τό +φῶς +ἐν +ὑμῖν +ἐστιν +περιπατεῖτε +ὡς +τό +φῶς +ἔχετε +ἵνα +μή +σκοτία +ὑμᾶς +καταλάβῃ +καί +ὁ +περιπατῶν +ἐν +τῇ +σκοτίᾳ +οὐκ +οἶδεν +ποῦ +ὑπάγει +ὡς +τό +φῶς +ἔχετε +πιστεύετε +εἰς +τό +φῶς +ἵνα +υἱοί +φωτός +γένησθε +Ταῦτα +ἐλάλησεν +Ἰησοῦς +καί +ἀπελθών +ἐκρύβη +ἀπ’ +αὐτῶν +δέ +αὐτοῦ +Τοσαῦτα +σημεῖα +πεποιηκότος +ἔμπροσθεν +αὐτῶν +οὐκ +ἐπίστευον +εἰς +αὐτόν +ἵνα +ὁ +λόγος +Ἠσαΐου +τοῦ +προφήτου +πληρωθῇ +ὅν +εἶπεν +Κύριε +τίς +ἐπίστευσεν +τῇ +ἀκοῇ +ἡμῶν +καί +ὁ +βραχίων +Κυρίου +τίνι +ἀπεκαλύφθη +διά +τοῦτο +οὐκ +ἠδύναντο +πιστεύειν +ὅτι +πάλιν +εἶπεν +Ἠσαΐας +Τετύφλωκεν +αὐτῶν +τούς +ὀφθαλμούς +καί +ἐπώρωσεν +αὐτῶν +τήν +καρδίαν +ἵνα +μή +ἴδωσιν +τοῖς +ὀφθαλμοῖς +καί +νοήσωσιν +τῇ +καρδίᾳ +καί +στραφῶσιν +καί +ἰάσομαι +αὐτούς +ταῦτα +εἶπεν +Ἠσαΐας +ὅτι +εἶδεν +τήν +δόξαν +αὐτοῦ +καί +ἐλάλησεν +περί +αὐτοῦ +μέντοι +ὅμως +καί +ἐκ +τῶν +ἀρχόντων +πολλοί +ἐπίστευσαν +εἰς +αὐτόν +ἀλλά +διά +τούς +Φαρισαίους +οὐχ +ὡμολόγουν +ἵνα +μή +ἀποσυνάγωγοι +γένωνται +γάρ +ἠγάπησαν +τήν +δόξαν +τῶν +ἀνθρώπων +μᾶλλον +ἤπερ +τήν +δόξαν +τοῦ +Θεοῦ +δέ +Ἰησοῦς +ἔκραξεν +καί +εἶπεν +Ὁ +πιστεύων +εἰς +ἐμέ +οὐ +πιστεύει +εἰς +ἐμέ +ἀλλά +εἰς +τόν +πέμψαντα +με +καί +ὁ +θεωρῶν +ἐμέ +θεωρεῖ +τόν +πέμψαντα +με +ἐγώ +φῶς +εἰς +τόν +κόσμον +ἐλήλυθα +ἵνα +πᾶς +ὁ +πιστεύων +εἰς +ἐμέ +ἐν +τῇ +σκοτίᾳ +μή +μείνῃ +καί +ἐάν +τίς +ἀκούσῃ +μου +τῶν +ῥημάτων +καί +μή +φυλάξῃ +ἐγώ +οὐ +κρίνω +αὐτόν +γάρ +οὐ +ἦλθον +ἵνα +κρίνω +τόν +κόσμον +ἀλλ’ +ἵνα +σώσω +τόν +κόσμον +ὁ +ἀθετῶν +ἐμέ +καί +μή +λαμβάνων +τά +ῥήματα +μου +ἔχει +τόν +κρίνοντα +αὐτόν +ὁ +λόγος +ὅν +ἐλάλησα +ἐκεῖνος +κρινεῖ +αὐτόν +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +ὅτι +ἐγώ +ἐξ +ἐμαυτοῦ +οὐκ +ἐλάλησα +ἀλλ’ +ὁ +πέμψας +με +Πατήρ +αὐτός +μοι +ἐντολήν +δέδωκεν +τί +εἴπω +καί +τί +λαλήσω +καί +οἶδα +ὅτι +ἡ +ἐντολή +αὐτοῦ +ζωή +αἰώνιος +ἐστιν +οὖν +ἅ +ἐγώ +λαλῶ +καθώς +εἴρηκεν +μοι +ὁ +Πατήρ +οὕτως +λαλῶ +δέ +Πρό +τῆς +ἑορτῆς +τοῦ +πάσχα +ὁ +Ἰησοῦς +εἰδώς +ὅτι +ἦλθεν +αὐτοῦ +ἡ +ὥρα +ἵνα +μεταβῇ +ἐκ +τοῦ +κόσμου +τούτου +πρός +τόν +Πατέρα +ἀγαπήσας +τούς +ἰδίους +τούς +ἐν +τῷ +κόσμῳ +εἰς +τέλος +ἠγάπησεν +αὐτούς +καί +δείπνου +γινομένου +τοῦ +διαβόλου +ἤδη +βεβληκότος +εἰς +τήν +καρδίαν +ἵνα +παραδοῖ +αὐτόν +Ἰούδας +Σίμωνος +Ἰσκαριώτης +εἰδώς +ὅτι +πάντα +ἔδωκεν +αὐτῷ +ὁ +Πατήρ +εἰς +τάς +χεῖρας +καί +ὅτι +ἀπό +Θεοῦ +ἐξῆλθεν +καί +πρός +τόν +Θεόν +ὑπάγει +ἐγείρεται +ἐκ +τοῦ +δείπνου +καί +τίθησιν +τά +ἱμάτια +καί +λαβών +λέντιον +διέζωσεν +ἑαυτόν +εἶτα +βάλλει +ὕδωρ +εἰς +τόν +νιπτῆρα +καί +ἤρξατο +νίπτειν +τούς +πόδας +τῶν +μαθητῶν +καί +ἐκμάσσειν +τῷ +λεντίῳ +ᾧ +ἦν +διεζωσμένος +οὖν +ἔρχεται +πρός +Σίμωνα +Πέτρον +λέγει +αὐτῷ +Κύριε +σύ +νίπτεις +μου +τούς +πόδας +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῷ +Ὅ +ἐγώ +ποιῶ +σύ +οὐκ +οἶδας +ἄρτι +δέ +γνώσῃ +μετά +ταῦτα +λέγει +αὐτῷ +Πέτρος +Οὐ +μή +νίψῃς +μου +τούς +πόδας +εἰς +τόν +αἰῶνα +ἀπεκρίθη +Ἰησοῦς +αὐτῷ +Ἐάν +μή +νίψω +σε +οὐκ +ἔχεις +μέρος +μετ’ +ἐμοῦ +λέγει +αὐτῷ +Σίμων +Πέτρος +Κύριε +μή +τούς +πόδας +μου +μόνον +ἀλλά +καί +τάς +χεῖρας +καί +τήν +κεφαλήν +λέγει +αὐτῷ +Ἰησοῦς +Ὁ +λελουμένος +οὐκ +ἔχει +χρείαν +εἰ +μή +τούς +πόδας +νίψασθαι +ἀλλ’ +ἔστιν +καθαρός +ὅλος +καί +ὑμεῖς +καθαροί +ἐστε +ἀλλ’ +οὐχί +πάντες +γάρ +ᾔδει +τόν +παραδιδόντα +αὐτόν +διά +τοῦτο +εἶπεν +ὅτι +Οὐχί +πάντες +καθαροί +ἐστε +οὖν +Ὅτε +ἔνιψεν +τούς +πόδας +αὐτῶν +καί +ἔλαβεν +τά +ἱμάτια +αὐτοῦ +καί +ἀνέπεσεν +πάλιν +εἶπεν +αὐτοῖς +Γινώσκετε +τί +πεποίηκα +ὑμῖν +ὑμεῖς +φωνεῖτε +με +Ὁ +Διδάσκαλος +καί +ὁ +Κύριος +καί +καλῶς +λέγετε +γάρ +εἰμί +οὖν +εἰ +ἐγώ +ὁ +Κύριος +καί +ὁ +Διδάσκαλος +ἔνιψα +ὑμῶν +τούς +πόδας +καί +ὑμεῖς +ὀφείλετε +νίπτειν +ἀλλήλων +τούς +πόδας +γάρ +ὑπόδειγμα +ἔδωκα +ὑμῖν +ἵνα +καθώς +ἐγώ +ἐποίησα +ὑμῖν +καί +ὑμεῖς +ποιῆτε +ἀμήν +ἀμήν +λέγω +ὑμῖν +οὐκ +ἔστιν +δοῦλος +μείζων +τοῦ +κυρίου +αὐτοῦ +οὐδέ +ἀπόστολος +μείζων +τοῦ +πέμψαντος +αὐτόν +εἰ +ταῦτα +οἴδατε +μακάριοι +ἐστε +ἐάν +ποιῆτε +αὐτά +οὐ +περί +πάντων +ὑμῶν +λέγω +ἐγώ +οἶδα +τίνας +ἐξελεξάμην +ἀλλ’ +ἵνα +ἡ +γραφή +πληρωθῇ +Ὁ +τρώγων +μου +τόν +ἄρτον +ἐπῆρεν +ἐπ’ +ἐμέ +τήν +πτέρναν +αὐτοῦ +ἀπ’ +ἄρτι +λέγω +ὑμῖν +πρό +τοῦ +γενέσθαι +ἵνα +πιστεύητε +ὅταν +γένηται +ὅτι +ἐγώ +εἰμι +ἀμήν +ἀμήν +λέγω +ὑμῖν +ὁ +λαμβάνων +ἄν +τινα +πέμψω +ἐμέ +λαμβάνει +δέ +ὁ +ἐμέ +λαμβάνων +λαμβάνει +τόν +πέμψαντα +με +Ταῦτα +εἰπών +Ἰησοῦς +ἐταράχθη +τῷ +πνεύματι +καί +ἐμαρτύρησεν +καί +εἶπεν +Ἀμήν +ἀμήν +λέγω +ὑμῖν +ὅτι +εἷς +ἐξ +ὑμῶν +παραδώσει +με +ἔβλεπον +εἰς +ἀλλήλους +οἱ +μαθηταί +ἀπορούμενοι +περί +τίνος +λέγει +ἦν +ἀνακείμενος +εἷς +ἐκ +τῶν +μαθητῶν +αὐτοῦ +ἐν +τῷ +κόλπῳ +τοῦ +Ἰησοῦ +ὅν +ἠγάπα +ὁ +Ἰησοῦς +οὖν +νεύει +τούτῳ +Σίμων +Πέτρος +καί +λέγει +αὐτῷ +Εἰπέ +τίς +ἐστιν +περί +οὗ +λέγει +ἐκεῖνος +ἀναπεσών +οὕτως +ἐπί +τό +στῆθος +τοῦ +Ἰησοῦ +λέγει +αὐτῷ +Κύριε +τίς +ἐστιν +οὖν +ἀποκρίνεται +ὁ +Ἰησοῦς +ἐστιν +Ἐκεῖνος +ᾧ +ἐγώ +βάψω +τό +ψωμίον +καί +δώσω +αὐτῷ +οὖν +βάψας +τό +ψωμίον +λαμβάνει +καί +δίδωσιν +Ἰούδᾳ +Σίμωνος +Ἰσκαριώτου +καί +μετά +τό +ψωμίον +τότε +εἰσῆλθεν +εἰς +ἐκεῖνον +ὁ +Σατανᾶς +οὖν +λέγει +αὐτῷ +Ἰησοῦς +Ὅ +ποιεῖς +ποίησον +τάχιον +δέ +ἔγνω +οὐδείς +τῶν +ἀνακειμένων +τοῦτο +πρός +τί +εἶπεν +αὐτῷ +γάρ +τινές +ἐδόκουν +ἐπεί +τό +γλωσσόκομον +εἶχεν +Ἰούδας +ὅτι +λέγει +αὐτῷ +Ἰησοῦς +Ἀγόρασον +ὧν +χρείαν +ἔχομεν +εἰς +τήν +ἑορτήν +ἤ +ἵνα +τοῖς +πτωχοῖς +τι +δῷ +οὖν +λαβών +τό +ψωμίον +ἐκεῖνος +ἐξῆλθεν +εὐθύς +δέ +ἦν +νύξ +οὖν +Ὅτε +ἐξῆλθεν +λέγει +Ἰησοῦς +Νῦν +ἐδοξάσθη +ὁ +Υἱός +τοῦ +ἀνθρώπου +καί +ὁ +Θεός +ἐδοξάσθη +ἐν +αὐτῷ +εἰ +ὁ +Θεός +ἐδοξάσθη +ἐν +αὐτῷ +καί +ὁ +Θεός +δοξάσει +αὐτόν +ἐν +αὑτῷ +καί +εὐθύς +δοξάσει +αὐτόν +τεκνία +ἔτι +μικρόν +μεθ’ +ὑμῶν +εἰμι +ζητήσετε +με +καί +καθώς +εἶπον +τοῖς +Ἰουδαίοις +ὅτι +Ὅπου +ἐγώ +ὑπάγω +ἐλθεῖν +ὑμεῖς +οὐ +δύνασθε +καί +ὑμῖν +λέγω +ἄρτι +ἐντολήν +καινήν +δίδωμι +ὑμῖν +ἵνα +ἀγαπᾶτε +ἀλλήλους +καθώς +ἠγάπησα +ὑμᾶς +ἵνα +καί +ὑμεῖς +ἀγαπᾶτε +ἀλλήλους +ἐν +τούτῳ +γνώσονται +πάντες +ὅτι +ἐμοί +μαθηταί +ἐστε +ἐάν +ἀγάπην +ἔχητε +ἐν +ἀλλήλοις +Λέγει +αὐτῷ +Σίμων +Πέτρος +Κύριε +ποῦ +ὑπάγεις +ἀπεκρίθη +Ἰησοῦς +Ὅπου +ὑπάγω +μοι +νῦν +ἀκολουθῆσαι +οὐ +δύνασαι +δέ +ἀκολουθήσεις +ὕστερον +λέγει +αὐτῷ +Πέτρος +Κύριε +διά +τί +οὐ +δύναμαι +σοι +ἀκολουθῆσαι +ἄρτι +τήν +ψυχήν +μου +ὑπέρ +σοῦ +θήσω +ἀποκρίνεται +Ἰησοῦς +Τήν +ψυχήν +σου +ὑπέρ +ἐμοῦ +θήσεις +ἀμήν +ἀμήν +λέγω +σοι +οὐ +μή +ἀλέκτωρ +φωνήσῃ +ἕως +οὗ +ἀρνήσῃ +με +τρίς +Μή +ταρασσέσθω +ὑμῶν +ἡ +καρδία +πιστεύετε +εἰς +τόν +Θεόν +καί +εἰς +ἐμέ +πιστεύετε +ἐν +τῇ +οἰκίᾳ +τοῦ +Πατρός +μου +μοναί +πολλαί +εἰσιν +δέ +εἰ +μή +ἄν +εἶπον +ὑμῖν +ὅτι +πορεύομαι +ἑτοιμάσαι +τόπον +ὑμῖν +καί +ἐάν +πορευθῶ +καί +ἑτοιμάσω +τόπον +ὑμῖν +πάλιν +ἔρχομαι +καί +παραλήμψομαι +ὑμᾶς +πρός +ἐμαυτόν +ἵνα +ὅπου +εἰμί +ἐγώ +καί +ὑμεῖς +ἦτε +καί +ὅπου +ἐγώ +ὑπάγω +οἴδατε +τήν +ὁδόν +Λέγει +αὐτῷ +Θωμᾶς +Κύριε +οὐκ +οἴδαμεν +ποῦ +ὑπάγεις +πῶς +οἴδαμεν +τήν +ὁδόν +λέγει +αὐτῷ +Ἰησοῦς +Ἐγώ +εἰμι +ἡ +ὁδός +καί +ἡ +ἀλήθεια +καί +ἡ +ζωή +οὐδείς +ἔρχεται +πρός +τόν +Πατέρα +εἰ +μή +δι’ +ἐμοῦ +εἰ +ἐγνώκειτε +με +ἄν +καί +τόν +Πατέρα +μου +ᾔδειτε +ἀπ’ +ἄρτι +γινώσκετε +αὐτόν +καί +ἑωράκατε +Λέγει +αὐτῷ +Φίλιππος +Κύριε +δεῖξον +ἡμῖν +τόν +Πατέρα +καί +ἀρκεῖ +ἡμῖν +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Τοσοῦτον +χρόνον +μεθ’ +ὑμῶν +εἰμι +καί +οὐκ +ἔγνωκας +με +Φίλιππε +ὁ +ἑωρακώς +ἐμέ +ἑώρακεν +τόν +Πατέρα +πῶς +σύ +λέγεις +Δεῖξον +ἡμῖν +τόν +Πατέρα +οὐ +πιστεύεις +ὅτι +ἐγώ +ἐν +τῷ +Πατρί +καί +ὁ +Πατήρ +ἐν +ἐμοί +ἐστιν +τά +ῥήματα +ἅ +ἐγώ +λέγω +ὑμῖν +ἀπ’ +ἐμαυτοῦ +οὐ +λαλῶ +δέ +ὁ +Πατήρ +ἐν +ἐμοί +μένων +ποιεῖ +τά +ἔργα +αὐτοῦ +πιστεύετε +μοι +ὅτι +ἐγώ +ἐν +τῷ +Πατρί +καί +ὁ +Πατήρ +ἐν +ἐμοί +δέ +εἰ +μή +διά +τά +ἔργα +αὐτά +πιστεύετε +ἀμήν +ἀμήν +λέγω +ὑμῖν +ὁ +πιστεύων +εἰς +ἐμέ +τά +ἔργα +ἅ +ἐγώ +ποιῶ +κἀκεῖνος +ποιήσει +καί +μείζονα +τούτων +ποιήσει +ὅτι +ἐγώ +πρός +τόν +Πατέρα +πορεύομαι +καί +τι +ἄν +ὅ +αἰτήσητε +ἐν +τῷ +ὀνόματι +μου +τοῦτο +ποιήσω +ἵνα +δοξασθῇ +ὁ +Πατήρ +ἐν +τῷ +Υἱῷ +ἐάν +τι +αἰτήσητε +με +ἐν +τῷ +ὀνόματι +μου +ἐγώ +ποιήσω +Ἐάν +ἀγαπᾶτε +με +τάς +ἐντολάς +τάς +ἐμάς +τηρήσετε +κἀγώ +ἐρωτήσω +τόν +Πατέρα +καί +ἄλλον +Παράκλητον +δώσει +ὑμῖν +ἵνα +ᾖ +μεθ’ +ὑμῶν +εἰς +τόν +αἰῶνα +τό +Πνεῦμα +τῆς +ἀληθείας +ὅ +λαβεῖν +ὁ +κόσμος +οὐ +δύναται +ὅτι +οὐ +θεωρεῖ +αὐτό +οὐδέ +γινώσκει +ὑμεῖς +γινώσκετε +αὐτό +ὅτι +παρ’ +ὑμῖν +μένει +καί +ἐν +ὑμῖν +ἔσται +οὐκ +ἀφήσω +ὑμᾶς +ὀρφανούς +ἔρχομαι +πρός +ὑμᾶς +καί +ἔτι +μικρόν +ὁ +κόσμος +με +οὐκέτι +θεωρεῖ +δέ +ὑμεῖς +θεωρεῖτε +με +ὅτι +ἐγώ +ζῶ +καί +ὑμεῖς +ζήσετε +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +γνώσεσθε +ὑμεῖς +ὅτι +ἐγώ +ἐν +τῷ +Πατρί +μου +καί +ὑμεῖς +ἐν +ἐμοί +κἀγώ +ἐν +ὑμῖν +ὁ +ἔχων +τάς +ἐντολάς +μου +καί +τηρῶν +αὐτάς +ἐκεῖνος +ἐστιν +ὁ +ἀγαπῶν +με +δέ +ὁ +ἀγαπῶν +με +ἀγαπηθήσεται +ὑπό +τοῦ +Πατρός +μου +κἀγώ +ἀγαπήσω +αὐτόν +καί +ἐμφανίσω +αὐτῷ +ἐμαυτόν +Λέγει +αὐτῷ +Ἰούδας +οὐχ +ὁ +Ἰσκαριώτης +Κύριε +καί +τί +γέγονεν +ὅτι +μέλλεις +ἡμῖν +ἐμφανίζειν +σεαυτόν +καί +οὐχί +τῷ +κόσμῳ +ἀπεκρίθη +Ἰησοῦς +καί +εἶπεν +αὐτῷ +Ἐάν +τις +ἀγαπᾷ +με +τόν +λόγον +μου +τηρήσει +καί +ὁ +Πατήρ +μου +ἀγαπήσει +αὐτόν +καί +πρός +αὐτόν +ἐλευσόμεθα +καί +μονήν +παρ’ +αὐτῷ +ποιησόμεθα +ὁ +μή +ἀγαπῶν +με +τούς +λόγους +μου +οὐ +τηρεῖ +καί +ὁ +λόγος +ὅν +ἀκούετε +οὐκ +ἔστιν +ἐμός +ἀλλά +τοῦ +πέμψαντος +με +Πατρός +Ταῦτα +λελάληκα +ὑμῖν +παρ’ +ὑμῖν +μένων +δέ +ὁ +Παράκλητος +τό +Πνεῦμα +τό +Ἅγιον +ὅ +πέμψει +ὁ +Πατήρ +ἐν +τῷ +ὀνόματι +μου +ἐκεῖνος +ὑμᾶς +διδάξει +πάντα +καί +ὑπομνήσει +ὑμᾶς +πάντα +ἅ +εἶπον +ὑμῖν +ἐγώ +Εἰρήνην +ἀφίημι +ὑμῖν +εἰρήνην +τήν +ἐμήν +δίδωμι +ὑμῖν +οὐ +καθώς +ὁ +κόσμος +δίδωσιν +ἐγώ +δίδωμι +ὑμῖν +μή +ταρασσέσθω +ὑμῶν +ἡ +καρδία +μηδέ +δειλιάτω +ἠκούσατε +ὅτι +ἐγώ +εἶπον +ὑμῖν +Ὑπάγω +καί +ἔρχομαι +πρός +ὑμᾶς +εἰ +ἠγαπᾶτε +με +ἄν +ἐχάρητε +ὅτι +πορεύομαι +πρός +τόν +Πατέρα +ὅτι +ὁ +Πατήρ +μείζων +μού +ἐστιν +καί +νῦν +εἴρηκα +ὑμῖν +πρίν +γενέσθαι +ἵνα +ὅταν +γένηται +πιστεύσητε +οὐκέτι +πολλά +λαλήσω +μεθ’ +ὑμῶν +γάρ +ἔρχεται +ὁ +τοῦ +κόσμου +ἄρχων +καί +ἐν +ἐμοί +οὐκ +ἔχει +οὐδέν +ἀλλ’ +ἵνα +γνῷ +ὁ +κόσμος +ὅτι +ἀγαπῶ +τόν +Πατέρα +καί +καθώς +ἐνετείλατο +μοι +ὁ +Πατήρ +οὕτως +ποιῶ +Ἐγείρεσθε +ἄγωμεν +ἐντεῦθεν +Ἐγώ +εἰμι +ἡ +ἄμπελος +ἡ +ἀληθινή +καί +ὁ +Πατήρ +μου +ὁ +γεωργός +ἐστιν +πᾶν +κλῆμα +ἐν +ἐμοί +μή +φέρον +καρπόν +αἴρει +αὐτό +καί +πᾶν +τό +καρπόν +φέρον +καθαίρει +αὐτό +ἵνα +καρπόν +πλείονα +φέρῃ +ἤδη +ὑμεῖς +καθαροί +ἐστε +διά +τόν +λόγον +ὅν +λελάληκα +ὑμῖν +μείνατε +ἐν +ἐμοί +κἀγώ +ἐν +ὑμῖν +καθώς +τό +κλῆμα +οὐ +δύναται +καρπόν +φέρειν +ἀφ’ +ἑαυτοῦ +ἐάν +μή +μένῃ +ἐν +τῇ +ἀμπέλῳ +οὕτως +οὐδέ +ὑμεῖς +ἐάν +μή +ἐν +ἐμοί +μένητε +ἐγώ +εἰμι +ἡ +ἄμπελος +ὑμεῖς +τά +κλήματα +ὁ +μένων +ἐν +ἐμοί +κἀγώ +ἐν +αὐτῷ +οὗτος +φέρει +καρπόν +πολύν +ὅτι +χωρίς +ἐμοῦ +οὐ +δύνασθε +ποιεῖν +οὐδέν +ἐάν +μή +τις +μένῃ +ἐν +ἐμοί +ἐβλήθη +ἔξω +ὡς +τό +κλῆμα +καί +ἐξηράνθη +καί +συνάγουσιν +αὐτά +καί +εἰς +τό +πῦρ +βάλλουσιν +καί +καίεται +ἐάν +μείνητε +ἐν +ἐμοί +καί +τά +ῥήματα +μου +ἐν +ὑμῖν +μείνῃ +ἐάν +ὅ +θέλητε +αἰτήσασθε +καί +γενήσεται +ὑμῖν +ἐν +τούτῳ +ἐδοξάσθη +ὁ +Πατήρ +μου +ἵνα +καρπόν +πολύν +φέρητε +καί +γενήσεσθε +ἐμοί +μαθηταί +καθώς +ἠγάπησεν +με +ὁ +Πατήρ +κἀγώ +ὑμᾶς +ἠγάπησα +μείνατε +ἐν +τῇ +ἀγάπῃ +τῇ +ἐμῇ +ἐάν +τάς +ἐντολάς +μου +τηρήσητε +μενεῖτε +ἐν +τῇ +ἀγάπῃ +μου +καθώς +ἐγώ +τοῦ +Πατρός +μου +τάς +ἐντολάς +τετήρηκα +καί +μένω +ἐν +αὐτοῦ +τῇ +ἀγάπῃ +Ταῦτα +λελάληκα +ὑμῖν +ἵνα +ἡ +χαρά +ἡ +ἐμή +ἐν +ὑμῖν +ᾖ +καί +ἡ +χαρά +ὑμῶν +πληρωθῇ +αὕτη +ἐστίν +ἡ +ἐντολή +ἡ +ἐμή +ἵνα +ἀγαπᾶτε +ἀλλήλους +καθώς +ἠγάπησα +ὑμᾶς +μείζονα +ταύτης +ἀγάπην +οὐδείς +ἔχει +ἵνα +τις +τήν +ψυχήν +αὐτοῦ +θῇ +ὑπέρ +τῶν +φίλων +αὐτοῦ +ὑμεῖς +φίλοι +μού +ἐστε +ἐάν +ποιῆτε +ὅ +ἐγώ +ἐντέλλομαι +ὑμῖν +οὐκέτι +λέγω +ὑμᾶς +δούλους +ὅτι +ὁ +δοῦλος +οὐκ +οἶδεν +τί +ποιεῖ +αὐτοῦ +ὁ +κύριος +δέ +ὑμᾶς +εἴρηκα +φίλους +ὅτι +πάντα +ἅ +ἤκουσα +παρά +τοῦ +Πατρός +μου +ἐγνώρισα +ὑμῖν +οὐχ +ὑμεῖς +με +ἐξελέξασθε +ἀλλ’ +ἐγώ +ἐξελεξάμην +ὑμᾶς +καί +ἔθηκα +ὑμᾶς +ἵνα +ὑμεῖς +ὑπάγητε +καί +καρπόν +φέρητε +καί +ὁ +καρπός +ὑμῶν +μένῃ +ἵνα +τι +ἄν +ὅ +αἰτήσητε +τόν +Πατέρα +ἐν +τῷ +ὀνόματι +μου +δῷ +ὑμῖν +ταῦτα +ἐντέλλομαι +ὑμῖν +ἵνα +ἀγαπᾶτε +ἀλλήλους +Εἰ +ὁ +κόσμος +ὑμᾶς +μισεῖ +γινώσκετε +ὅτι +ἐμέ +πρῶτον +ὑμῶν +μεμίσηκεν +εἰ +ἐκ +τοῦ +κόσμου +ἦτε +ἄν +ὁ +κόσμος +τό +ἴδιον +ἐφίλει +δέ +ὅτι +ἐκ +τοῦ +κόσμου +οὐκ +ἐστέ +ἀλλ’ +ἐγώ +ἐξελεξάμην +ὑμᾶς +ἐκ +τοῦ +κόσμου +διά +τοῦτο +μισεῖ +ὑμᾶς +ὁ +κόσμος +μνημονεύετε +τοῦ +λόγου +οὗ +ἐγώ +εἶπον +ὑμῖν +Οὐκ +ἔστιν +δοῦλος +μείζων +τοῦ +κυρίου +αὐτοῦ +εἰ +ἐμέ +ἐδίωξαν +καί +ὑμᾶς +διώξουσιν +εἰ +τόν +λόγον +μου +ἐτήρησαν +καί +τόν +ὑμέτερον +τηρήσουσιν +ἀλλά +ταῦτα +πάντα +ποιήσουσιν +εἰς +ὑμᾶς +διά +τό +ὄνομα +μου +ὅτι +οὐκ +οἴδασιν +τόν +πέμψαντα +με +εἰ +μή +ἦλθον +καί +ἐλάλησα +αὐτοῖς +ἁμαρτίαν +οὐκ +εἴχοσαν +δέ +νῦν +πρόφασιν +οὐκ +ἔχουσιν +περί +τῆς +ἁμαρτίας +αὐτῶν +ὁ +ἐμέ +μισῶν +καί +τόν +Πατέρα +μου +μισεῖ +εἰ +τά +ἔργα +μή +ἐποίησα +ἐν +αὐτοῖς +ἅ +οὐδείς +ἄλλος +ἐποίησεν +ἁμαρτίαν +οὐκ +εἴχοσαν +δέ +νῦν +καί +ἑωράκασιν +καί +μεμισήκασιν +καί +ἐμέ +καί +τόν +Πατέρα +μου +ἀλλ’ +ἵνα +πληρωθῇ +ὁ +λόγος +ὁ +ἐν +τῷ +νόμῳ +αὐτῶν +γεγραμμένος +ὅτι +Ἐμίσησαν +με +δωρεάν +Ὅταν +ἔλθῃ +ὁ +Παράκλητος +ὅν +ἐγώ +πέμψω +ὑμῖν +παρά +τοῦ +Πατρός +τό +Πνεῦμα +τῆς +ἀληθείας +ὅ +παρά +τοῦ +Πατρός +ἐκπορεύεται +ἐκεῖνος +μαρτυρήσει +περί +ἐμοῦ +δέ +καί +ὑμεῖς +μαρτυρεῖτε +ὅτι +ἀπ’ +ἀρχῆς +μετ’ +ἐμοῦ +ἐστε +Ταῦτα +λελάληκα +ὑμῖν +ἵνα +μή +σκανδαλισθῆτε +ἀποσυναγώγους +ποιήσουσιν +ὑμᾶς +ἀλλ’ +ἔρχεται +ὥρα +ἵνα +πᾶς +ὁ +ἀποκτείνας +ὑμᾶς +δόξῃ +λατρείαν +προσφέρειν +τῷ +Θεῷ +καί +ταῦτα +ποιήσουσιν +ὅτι +οὐκ +ἔγνωσαν +τόν +Πατέρα +οὐδέ +ἐμέ +ἀλλά +ταῦτα +λελάληκα +ὑμῖν +ἵνα +ὅταν +ἔλθῃ +ἡ +ὥρα +αὐτῶν +μνημονεύητε +αὐτῶν +ὅτι +ἐγώ +εἶπον +ὑμῖν +δέ +ταῦτα +ὑμῖν +ἐξ +ἀρχῆς +οὐκ +εἶπον +ὅτι +μεθ’ +ὑμῶν +ἤμην +δέ +νῦν +ὑπάγω +πρός +τόν +πέμψαντα +με +καί +οὐδείς +ἐξ +ὑμῶν +ἐρωτᾷ +με +Ποῦ +ὑπάγεις +ἀλλ’ +ὅτι +ταῦτα +λελάληκα +ὑμῖν +ἡ +λύπη +πεπλήρωκεν +ὑμῶν +τήν +καρδίαν +ἀλλ’ +ἐγώ +τήν +ἀλήθειαν +λέγω +ὑμῖν +συμφέρει +ὑμῖν +ἵνα +ἐγώ +ἀπέλθω +γάρ +ἐάν +μή +ἀπέλθω +ὁ +Παράκλητος +οὐ +μή +ἔλθῃ +πρός +ὑμᾶς +δέ +ἐάν +πορευθῶ +πέμψω +αὐτόν +πρός +ὑμᾶς +καί +ἐλθών +ἐκεῖνος +ἐλέγξει +τόν +κόσμον +περί +ἁμαρτίας +καί +περί +δικαιοσύνης +καί +περί +κρίσεως +μέν +περί +ἁμαρτίας +ὅτι +οὐ +πιστεύουσιν +εἰς +ἐμέ +δέ +περί +δικαιοσύνης +ὅτι +πρός +τόν +Πατέρα +ὑπάγω +καί +οὐκέτι +θεωρεῖτε +με +δέ +περί +κρίσεως +ὅτι +ὁ +ἄρχων +τοῦ +κόσμου +τούτου +κέκριται +Ἔτι +ἔχω +πολλά +ὑμῖν +λέγειν +ἀλλ’ +οὐ +δύνασθε +βαστάζειν +ἄρτι +δέ +ὅταν +ἔλθῃ +ἐκεῖνος +τό +Πνεῦμα +τῆς +ἀληθείας +ὁδηγήσει +ὑμᾶς +εἰς +τήν +ἀλήθειαν +πᾶσαν +γάρ +οὐ +λαλήσει +ἀφ’ +ἑαυτοῦ +ἀλλ’ +ὅσα +ἀκούει +λαλήσει +καί +τά +ἐρχόμενα +ἀναγγελεῖ +ὑμῖν +ἐκεῖνος +ἐμέ +δοξάσει +ὅτι +ἐκ +τοῦ +ἐμοῦ +λήμψεται +καί +ἀναγγελεῖ +ὑμῖν +πάντα +ὅσα +ἔχει +ὁ +Πατήρ +ἐμά +ἐστιν +διά +τοῦτο +εἶπον +ὅτι +ἐκ +τοῦ +ἐμοῦ +λαμβάνει +καί +ἀναγγελεῖ +ὑμῖν +Μικρόν +καί +οὐκέτι +θεωρεῖτε +με +καί +πάλιν +μικρόν +καί +ὄψεσθε +με +οὖν +Εἶπαν +ἐκ +τῶν +μαθητῶν +αὐτοῦ +πρός +ἀλλήλους +Τί +ἐστιν +τοῦτο +ὅ +λέγει +ἡμῖν +Μικρόν +καί +οὐ +θεωρεῖτε +με +καί +πάλιν +μικρόν +καί +ὄψεσθε +με +καί +Ὅτι +ὑπάγω +πρός +τόν +Πατέρα +οὖν +ἔλεγον +τί +ἐστιν +Τοῦτο +ὅ +λέγει +τό +μικρόν +οὐκ +οἴδαμεν +τί +λαλεῖ +ἔγνω +Ἰησοῦς +ὅτι +ἤθελον +αὐτόν +ἐρωτᾶν +καί +εἶπεν +αὐτοῖς +Περί +τούτου +ζητεῖτε +μετ’ +ἀλλήλων +ὅτι +εἶπον +Μικρόν +καί +οὐ +θεωρεῖτε +με +καί +πάλιν +μικρόν +καί +ὄψεσθε +με +ἀμήν +ἀμήν +λέγω +ὑμῖν +ὅτι +κλαύσετε +καί +θρηνήσετε +ὑμεῖς +δέ +ὁ +κόσμος +χαρήσεται +ὑμεῖς +λυπηθήσεσθε +ἀλλ’ +ἡ +λύπη +ὑμῶν +εἰς +χαράν +γενήσεται +ὅταν +ἡ +γυνή +τίκτῃ +λύπην +ἔχει +ὅτι +ἦλθεν +ἡ +ὥρα +αὐτῆς +δέ +ὅταν +γεννήσῃ +τό +παιδίον +οὐκέτι +μνημονεύει +τῆς +θλίψεως +διά +τήν +χαράν +ὅτι +ἐγεννήθη +ἄνθρωπος +εἰς +τόν +κόσμον +οὖν +μέν +καί +ὑμεῖς +νῦν +λύπην +ἔχετε +δέ +πάλιν +ὄψομαι +ὑμᾶς +καί +χαρήσεται +ὑμῶν +ἡ +καρδία +καί +τήν +χαράν +ὑμῶν +οὐδείς +αἴρει +ἀφ’ +ὑμῶν +καί +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ἐμέ +οὐκ +ἐρωτήσετε +οὐδέν +ἀμήν +ἀμήν +λέγω +ὑμῖν +ἄν +τι +αἰτήσητε +τόν +Πατέρα +δώσει +ὑμῖν +ἐν +τῷ +ὀνόματι +μου +ἕως +ἄρτι +οὐκ +ᾐτήσατε +οὐδέν +ἐν +τῷ +ὀνόματι +μου +αἰτεῖτε +καί +λήμψεσθε +ἵνα +ἡ +χαρά +ὑμῶν +ᾖ +πεπληρωμένη +Ταῦτα +ἐν +παροιμίαις +λελάληκα +ὑμῖν +ἔρχεται +ὥρα +ὅτε +οὐκέτι +ἐν +παροιμίαις +λαλήσω +ὑμῖν +ἀλλά +παρρησίᾳ +περί +τοῦ +Πατρός +ἀπαγγελῶ +ὑμῖν +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ἐν +τῷ +ὀνόματι +μου +αἰτήσεσθε +καί +οὐ +λέγω +ὑμῖν +ὅτι +ἐγώ +ἐρωτήσω +τόν +Πατέρα +περί +ὑμῶν +γάρ +αὐτός +ὁ +Πατήρ +φιλεῖ +ὑμᾶς +ὅτι +ὑμεῖς +ἐμέ +πεφιλήκατε +καί +πεπιστεύκατε +ὅτι +ἐγώ +παρά +τοῦ +Θεοῦ +ἐξῆλθον +ἐξῆλθον +ἐκ +τοῦ +Πατρός +καί +ἐλήλυθα +εἰς +τόν +κόσμον +πάλιν +ἀφίημι +τόν +κόσμον +καί +πορεύομαι +πρός +τόν +Πατέρα +Λέγουσιν +οἱ +μαθηταί +αὐτοῦ +Ἴδε +νῦν +ἐν +παρρησίᾳ +λαλεῖς +καί +παροιμίαν +οὐδεμίαν +λέγεις +νῦν +οἴδαμεν +ὅτι +οἶδας +πάντα +καί +οὐ +χρείαν +ἔχεις +ἵνα +τίς +σε +ἐρωτᾷ +ἐν +τούτῳ +πιστεύομεν +ὅτι +ἀπό +Θεοῦ +ἐξῆλθες +ἀπεκρίθη +αὐτοῖς +Ἰησοῦς +Ἄρτι +πιστεύετε +ἰδού +ἔρχεται +ὥρα +καί +ἐλήλυθεν +ἵνα +σκορπισθῆτε +ἕκαστος +εἰς +τά +ἴδια +κἀμέ +μόνον +ἀφῆτε +καί +οὐκ +εἰμί +μόνος +ὅτι +ὁ +Πατήρ +μετ’ +ἐμοῦ +ἐστιν +ταῦτα +λελάληκα +ὑμῖν +ἵνα +ἐν +ἐμοί +εἰρήνην +ἔχητε +ἐν +τῷ +κόσμῳ +θλῖψιν +ἔχετε +ἀλλά +θαρσεῖτε +ἐγώ +νενίκηκα +τόν +κόσμον +Ταῦτα +ἐλάλησεν +Ἰησοῦς +καί +ἐπάρας +τούς +ὀφθαλμούς +αὐτοῦ +εἰς +τόν +οὐρανόν +εἶπεν +Πάτερ +ἐλήλυθεν +ἡ +ὥρα +δόξασον +σου +τόν +Υἱόν +ἵνα +ὁ +Υἱός +δοξάσῃ +σέ +καθώς +ἔδωκας +αὐτῷ +ἐξουσίαν +πάσης +σαρκός +ἵνα +πᾶν +ὅ +δέδωκας +αὐτῷ +δώσῃ +αὐτοῖς +ζωήν +αἰώνιον +δέ +αὕτη +ἐστιν +ἡ +αἰώνιος +ζωή +ἵνα +γινώσκωσιν +σέ +τόν +μόνον +ἀληθινόν +Θεόν +καί +ὅν +ἀπέστειλας +Ἰησοῦν +Χριστόν +ἐγώ +σε +ἐδόξασα +ἐπί +τῆς +γῆς +τελειώσας +τό +ἔργον +ὅ +δέδωκας +μοι +ἵνα +ποιήσω +καί +Πάτερ +νῦν +δόξασον +με +σύ +παρά +σεαυτῷ +τῇ +δόξῃ +ᾗ +εἶχον +πρό +τοῦ +τόν +κόσμον +εἶναι +παρά +σοί +Ἐφανέρωσα +σου +τό +ὄνομα +τοῖς +ἀνθρώποις +οὕς +ἔδωκας +μοι +ἐκ +τοῦ +κόσμου +σοί +ἦσαν +κἀμοί +αὐτούς +ἔδωκας +καί +τόν +λόγον +σου +τετήρηκαν +νῦν +ἔγνωκαν +ὅτι +πάντα +ὅσα +δέδωκας +μοι +παρά +σοῦ +εἰσιν +ὅτι +τά +ῥήματα +ἅ +ἔδωκας +μοι +δέδωκα +αὐτοῖς +καί +αὐτοί +ἔλαβον +καί +ἔγνωσαν +ἀληθῶς +ὅτι +παρά +σοῦ +ἐξῆλθον +καί +ἐπίστευσαν +ὅτι +σύ +με +ἀπέστειλας +Ἐγώ +περί +αὐτῶν +ἐρωτῶ +οὐ +περί +τοῦ +κόσμου +ἐρωτῶ +ἀλλά +περί +ὧν +δέδωκας +μοι +ὅτι +σοί +εἰσιν +καί +τά +ἐμά +πάντα +σά +ἐστιν +καί +τά +σά +ἐμά +καί +δεδόξασμαι +ἐν +αὐτοῖς +καί +οὐκέτι +εἰμί +ἐν +τῷ +κόσμῳ +καί +αὐτοί +ἐν +τῷ +κόσμῳ +εἰσίν +κἀγώ +πρός +σέ +ἔρχομαι +Πάτερ +ἅγιε +τήρησον +αὐτούς +ἐν +τῷ +ὀνόματι +σου +ᾧ +δέδωκας +μοι +ἵνα +ὦσιν +ἕν +καθώς +ἡμεῖς +ὅτε +ἤμην +μετ’ +αὐτῶν +ἐγώ +ἐτήρουν +αὐτούς +ἐν +τῷ +ὀνόματι +σου +ᾧ +δέδωκας +μοι +καί +ἐφύλαξα +καί +οὐδείς +ἐξ +αὐτῶν +ἀπώλετο +εἰ +μή +ὁ +υἱός +τῆς +ἀπωλείας +ἵνα +ἡ +γραφή +πληρωθῇ +δέ +νῦν +πρός +σέ +ἔρχομαι +καί +ταῦτα +λαλῶ +ἐν +τῷ +κόσμῳ +ἵνα +ἔχωσιν +τήν +χαράν +τήν +ἐμήν +πεπληρωμένην +ἐν +ἑαυτοῖς +ἐγώ +δέδωκα +αὐτοῖς +τόν +λόγον +σου +καί +ὁ +κόσμος +ἐμίσησεν +αὐτούς +ὅτι +οὐκ +εἰσίν +ἐκ +τοῦ +κόσμου +καθώς +ἐγώ +οὐκ +εἰμί +ἐκ +τοῦ +κόσμου +οὐκ +ἐρωτῶ +ἵνα +ἄρῃς +αὐτούς +ἐκ +τοῦ +κόσμου +ἀλλ’ +ἵνα +τηρήσῃς +αὐτούς +ἐκ +τοῦ +πονηροῦ +ἐκ +τοῦ +κόσμου +οὐκ +εἰσίν +καθώς +ἐγώ +οὐκ +εἰμί +ἐκ +τοῦ +κόσμου +ἁγίασον +αὐτούς +ἐν +τῇ +ἀληθείᾳ +ὁ +λόγος +ὁ +σός +ἀλήθεια +ἐστιν +καθώς +ἐμέ +ἀπέστειλας +εἰς +τόν +κόσμον +κἀγώ +ἀπέστειλα +αὐτούς +εἰς +τόν +κόσμον +καί +ὑπέρ +αὐτῶν +ἐγώ +ἁγιάζω +ἐμαυτόν +ἵνα +ὦσιν +ἡγιασμένοι +καί +αὐτοί +ἐν +ἀληθείᾳ +δέ +Οὐ +περί +τούτων +ἐρωτῶ +μόνον +ἀλλά +καί +περί +τῶν +πιστευόντων +διά +τοῦ +λόγου +αὐτῶν +εἰς +ἐμέ +ἵνα +πάντες +ἕν +ὦσιν +καθώς +Πατήρ +σύ +ἐν +ἐμοί +κἀγώ +ἐν +σοί +ἵνα +καί +αὐτοί +ἐν +ἡμῖν +ὦσιν +ἵνα +ὁ +κόσμος +πιστεύῃ +ὅτι +σύ +με +ἀπέστειλας +κἀγώ +τήν +δόξαν +ἥν +δέδωκας +μοι +δέδωκα +αὐτοῖς +ἵνα +ὦσιν +ἕν +καθώς +ἡμεῖς +ἕν +ἐγώ +ἐν +αὐτοῖς +καί +σύ +ἐν +ἐμοί +ἵνα +ὦσιν +τετελειωμένοι +εἰς +ἕν +ἵνα +γινώσκῃ +ὁ +κόσμος +ὅτι +σύ +με +ἀπέστειλας +καί +ἠγάπησας +αὐτούς +καθώς +ἐμέ +ἠγάπησας +Πατήρ +ὅ +δέδωκας +μοι +θέλω +ἵνα +ὅπου +εἰμί +ἐγώ +κἀκεῖνοι +ὦσιν +μετ’ +ἐμοῦ +ἵνα +θεωρῶσιν +τήν +δόξαν +τήν +ἐμήν +ἥν +δέδωκας +μοι +ὅτι +ἠγάπησας +με +πρό +καταβολῆς +κόσμου +Πατήρ +δίκαιε +καί +ὁ +κόσμος +σε +οὐκ +ἔγνω +δέ +ἐγώ +σε +ἔγνων +καί +οὗτοι +ἔγνωσαν +ὅτι +σύ +με +ἀπέστειλας +καί +ἐγνώρισα +αὐτοῖς +τό +ὄνομα +σου +καί +γνωρίσω +ἵνα +ἡ +ἀγάπη +ἥν +ἠγάπησας +με +ἐν +αὐτοῖς +ᾖ +κἀγώ +ἐν +αὐτοῖς +Ταῦτα +εἰπών +Ἰησοῦς +ἐξῆλθεν +σύν +τοῖς +μαθηταῖς +αὐτοῦ +πέραν +τοῦ +χειμάρρου +τῶν +Κέδρων +ὅπου +ἦν +κῆπος +εἰς +ὅν +εἰσῆλθεν +αὐτός +καί +οἱ +μαθηταί +αὐτοῦ +δέ +ᾔδει +καί +Ἰούδας +ὁ +παραδιδούς +αὐτόν +τόν +τόπον +ὅτι +πολλάκις +συνήχθη +Ἰησοῦς +ἐκεῖ +μετά +τῶν +μαθητῶν +αὐτοῦ +οὖν +ὁ +Ἰούδας +λαβών +τήν +σπεῖραν +καί +ἐκ +τῶν +ἀρχιερέων +καί +ἐκ +τῶν +Φαρισαίων +ὑπηρέτας +ἔρχεται +ἐκεῖ +μετά +φανῶν +καί +λαμπάδων +καί +ὅπλων +οὖν +Ἰησοῦς +εἰδώς +πάντα +τά +ἐρχόμενα +ἐπ’ +αὐτόν +ἐξῆλθεν +καί +λέγει +αὐτοῖς +Τίνα +ζητεῖτε +ἀπεκρίθησαν +αὐτῷ +Ἰησοῦν +τόν +Ναζωραῖον +λέγει +αὐτοῖς +Ἐγώ +εἰμι +δέ +εἱστήκει +καί +Ἰούδας +ὁ +παραδιδούς +αὐτόν +μετ’ +αὐτῶν +οὖν +ὡς +εἶπεν +αὐτοῖς +Ἐγώ +εἰμι +ἀπῆλθαν +εἰς +τά +ὀπίσω +καί +ἔπεσαν +χαμαί +οὖν +πάλιν +ἐπηρώτησεν +αὐτούς +Τίνα +ζητεῖτε +δέ +οἱ +εἶπαν +Ἰησοῦν +τόν +Ναζωραῖον +ἀπεκρίθη +Ἰησοῦς +Εἶπον +ὑμῖν +ὅτι +ἐγώ +εἰμι +οὖν +εἰ +ἐμέ +ζητεῖτε +ἄφετε +τούτους +ὑπάγειν +ἵνα +πληρωθῇ +ὁ +λόγος +ὅν +εἶπεν +ὅτι +Οὕς +δέδωκας +μοι +οὐκ +ἀπώλεσα +ἐξ +αὐτῶν +οὐδένα +οὖν +Σίμων +Πέτρος +ἔχων +μάχαιραν +εἵλκυσεν +αὐτήν +καί +ἔπαισεν +τόν +τοῦ +ἀρχιερέως +δοῦλον +καί +ἀπέκοψεν +αὐτοῦ +τό +ὠτάριον +τό +δεξιόν +δέ +ἦν +ὄνομα +τῷ +δούλῳ +Μάλχος +οὖν +εἶπεν +ὁ +Ἰησοῦς +τῷ +Πέτρῳ +Βάλε +τήν +μάχαιραν +εἰς +τήν +θήκην +τό +ποτήριον +ὅ +δέδωκεν +μοι +ὁ +Πατήρ +οὐ +μή +πίω +αὐτό +οὖν +Ἠ +σπεῖρα +καί +ὁ +χιλίαρχος +καί +οἱ +ὑπηρέται +τῶν +Ἰουδαίων +συνέλαβον +τόν +Ἰησοῦν +καί +ἔδησαν +αὐτόν +καί +ἤγαγον +πρός +Ἅνναν +πρῶτον +γάρ +ἦν +πενθερός +τοῦ +Καϊάφα +ὅς +ἦν +ἀρχιερεύς +τοῦ +ἐνιαυτοῦ +ἐκείνου +δέ +ἦν +Καϊάφας +ὁ +συμβουλεύσας +τοῖς +Ἰουδαίοις +ὅτι +συμφέρει +ἕνα +ἄνθρωπον +ἀποθανεῖν +ὑπέρ +τοῦ +λαοῦ +δέ +Ἠκολούθει +τῷ +Ἰησοῦ +Σίμων +Πέτρος +καί +ἄλλος +μαθητής +δέ +ὁ +μαθητής +ἐκεῖνος +ἦν +γνωστός +τῷ +ἀρχιερεῖ +καί +συνεισῆλθεν +τῷ +Ἰησοῦ +εἰς +τήν +αὐλήν +τοῦ +ἀρχιερέως +δέ +ὁ +Πέτρος +εἱστήκει +πρός +τῇ +θύρᾳ +ἔξω +οὖν +ἐξῆλθεν +ὁ +μαθητής +ὁ +ἄλλος +ὁ +γνωστός +τοῦ +ἀρχιερέως +καί +εἶπεν +τῇ +θυρωρῷ +καί +εἰσήγαγεν +τόν +Πέτρον +οὖν +λέγει +τῷ +Πέτρῳ +ἡ +παιδίσκη +ἡ +θυρωρός +Μή +καί +σύ +ἐκ +τῶν +μαθητῶν +τοῦ +ἀνθρώπου +τούτου +εἶ +λέγει +ἐκεῖνος +Οὐκ +εἰμί +δέ +εἱστήκεισαν +οἱ +δοῦλοι +καί +οἱ +ὑπηρέται +ἀνθρακιάν +πεποιηκότες +ὅτι +ψῦχος +ἦν +καί +ἐθερμαίνοντο +δέ +καί +ὁ +Πέτρος +μετ’ +αὐτῶν +ἦν +ἑστώς +καί +θερμαινόμενος +οὖν +Ὁ +ἀρχιερεύς +ἠρώτησεν +τόν +Ἰησοῦν +περί +τῶν +μαθητῶν +αὐτοῦ +καί +περί +τῆς +διδαχῆς +αὐτοῦ +ἀπεκρίθη +αὐτῷ +Ἰησοῦς +Ἐγώ +παρρησίᾳ +λελάληκα +τῷ +κόσμῳ +ἐγώ +πάντοτε +ἐδίδαξα +ἐν +συναγωγῇ +καί +ἐν +τῷ +ἱερῷ +ὅπου +πάντες +οἱ +Ἰουδαῖοι +συνέρχονται +καί +ἐν +κρυπτῷ +ἐλάλησα +οὐδέν +τί +με +ἐρωτᾷς +ἐρώτησον +τούς +ἀκηκοότας +τί +ἐλάλησα +αὐτοῖς +ἴδε +οὗτοι +οἴδασιν +ἅ +εἶπον +ἐγώ +δέ +ταῦτα +αὐτοῦ +εἰπόντος +εἷς +παρεστηκώς +τῶν +ὑπηρετῶν +ἔδωκεν +ῥάπισμα +τῷ +Ἰησοῦ +εἰπών +Οὕτως +ἀποκρίνῃ +τῷ +ἀρχιερεῖ +ἀπεκρίθη +αὐτῷ +Ἰησοῦς +Εἰ +κακῶς +ἐλάλησα +μαρτύρησον +περί +τοῦ +κακοῦ +δέ +εἰ +καλῶς +τί +με +δέρεις +οὖν +ἀπέστειλεν +αὐτόν +ὁ +Ἄννας +δεδεμένον +πρός +Καϊάφαν +τόν +ἀρχιερέα +δέ +Σίμων +Πέτρος +Ἦν +ἑστώς +καί +θερμαινόμενος +οὖν +εἶπον +αὐτῷ +Μή +καί +σύ +ἐκ +τῶν +μαθητῶν +αὐτοῦ +εἶ +ἠρνήσατο +ἐκεῖνος +καί +εἶπεν +Οὐκ +εἰμί +λέγει +εἷς +ἐκ +τῶν +δούλων +τοῦ +ἀρχιερέως +ὤν +συγγενής +οὗ +ἀπέκοψεν +Πέτρος +τό +ὠτίον +Οὐκ +ἐγώ +εἶδον +σε +ἐν +τῷ +κήπῳ +μετ’ +αὐτοῦ +οὖν +πάλιν +ἠρνήσατο +Πέτρος +καί +εὐθέως +ἀλέκτωρ +ἐφώνησεν +οὖν +Ἄγουσιν +τόν +Ἰησοῦν +ἀπό +τοῦ +Καϊάφα +εἰς +τό +πραιτώριον +δέ +ἦν +πρωΐ +καί +αὐτοί +οὐκ +εἰσῆλθον +εἰς +τό +πραιτώριον +ἵνα +μή +μιανθῶσιν +ἀλλά +φάγωσιν +τό +πάσχα +οὖν +ἐξῆλθεν +ὁ +Πειλᾶτος +ἔξω +πρός +αὐτούς +καί +φησίν +Τίνα +κατηγορίαν +τοῦ +ἀνθρώπου +τούτου +φέρετε +ἀπεκρίθησαν +καί +εἶπαν +αὐτῷ +Εἰ +μή +ἦν +ποιῶν +οὗτος +κακόν +ἄν +οὐκ +σοι +παρεδώκαμεν +αὐτόν +οὖν +εἶπεν +αὐτοῖς +ὁ +Πειλᾶτος +Λάβετε +αὐτόν +ὑμεῖς +καί +κατά +τόν +νόμον +ὑμῶν +κρίνατε +αὐτόν +εἶπον +αὐτῷ +οἱ +Ἰουδαῖοι +Ἠμῖν +οὐκ +ἔξεστιν +ἀποκτεῖναι +οὐδένα +ἵνα +ὁ +λόγος +τοῦ +Ἰησοῦ +πληρωθῇ +ὅν +εἶπεν +σημαίνων +ποίῳ +θανάτῳ +ἤμελλεν +ἀποθνήσκειν +οὖν +Εἰσῆλθεν +πάλιν +εἰς +τό +πραιτώριον +ὁ +Πειλᾶτος +καί +ἐφώνησεν +τόν +Ἰησοῦν +καί +εἶπεν +αὐτῷ +Σύ +εἶ +ὁ +Βασιλεύς +τῶν +Ἰουδαίων +ἀπεκρίθη +Ἰησοῦς +Ἀφ’ +ἑαυτοῦ +σύ +τοῦτο +λέγεις +ἤ +ἄλλοι +εἶπον +σοι +περί +ἐμοῦ +ἀπεκρίθη +ὁ +Πειλᾶτος +Μήτι +ἐγώ +Ἰουδαῖος +εἰμι +τό +ἔθνος +τό +σόν +καί +οἱ +ἀρχιερεῖς +παρέδωκαν +σε +ἐμοί +τί +ἐποίησας +ἀπεκρίθη +Ἰησοῦς +Ἠ +βασιλεία +ἡ +ἐμή +οὐκ +ἔστιν +ἐκ +τοῦ +κόσμου +τούτου +εἰ +ἐκ +τοῦ +κόσμου +τούτου +ἦν +ἡ +βασιλεία +ἡ +ἐμή +ἄν +οἱ +ὑπηρέται +οἱ +ἐμοί +ἠγωνίζοντο +ἵνα +μή +παραδοθῶ +τοῖς +Ἰουδαίοις +δέ +νῦν +ἡ +βασιλεία +ἡ +ἐμή +οὐκ +ἔστιν +ἐντεῦθεν +οὖν +εἶπεν +αὐτῷ +ὁ +Πειλᾶτος +Οὐκοῦν +βασιλεύς +εἶ +σύ +ἀπεκρίθη +ὁ +Ἰησοῦς +Σύ +λέγεις +ὅτι +βασιλεύς +εἰμι +ἐγώ +εἰς +τοῦτο +γεγέννημαι +καί +εἰς +τοῦτο +ἐλήλυθα +εἰς +τόν +κόσμον +ἵνα +μαρτυρήσω +τῇ +ἀληθείᾳ +πᾶς +ὁ +ὤν +ἐκ +τῆς +ἀληθείας +ἀκούει +μου +τῆς +φωνῆς +λέγει +αὐτῷ +ὁ +Πειλᾶτος +Τί +ἐστιν +ἀλήθεια +Καί +τοῦτο +εἰπών +πάλιν +ἐξῆλθεν +πρός +τούς +Ἰουδαίους +καί +λέγει +αὐτοῖς +Ἐγώ +οὐδεμίαν +εὑρίσκω +ἐν +αὐτῷ +αἰτίαν +δέ +ἔστιν +συνήθεια +ὑμῖν +ἵνα +ἕνα +ἀπολύσω +ὑμῖν +ἐν +τῷ +πάσχα +οὖν +βούλεσθε +ἀπολύσω +ὑμῖν +τόν +Βασιλέα +τῶν +Ἰουδαίων +οὖν +ἐκραύγασαν +πάλιν +λέγοντες +Μή +τοῦτον +ἀλλά +τόν +Βαραββᾶν +δέ +ἦν +ὁ +Βαραββᾶς +λῃστής +οὖν +Τότε +ἔλαβεν +ὁ +Πειλᾶτος +τόν +Ἰησοῦν +καί +ἐμαστίγωσεν +καί +οἱ +στρατιῶται +πλέξαντες +στέφανον +ἐξ +ἀκανθῶν +ἐπέθηκαν +αὐτοῦ +τῇ +κεφαλῇ +καί +ἱμάτιον +πορφυροῦν +περιέβαλον +αὐτόν +καί +ἤρχοντο +πρός +αὐτόν +καί +ἔλεγον +Χαῖρε +ὁ +Βασιλεύς +τῶν +Ἰουδαίων +καί +ἐδίδοσαν +αὐτῷ +ῥαπίσματα +Καί +ἐξῆλθεν +πάλιν +ἔξω +ὁ +Πειλᾶτος +καί +λέγει +αὐτοῖς +Ἴδε +ἄγω +ὑμῖν +αὐτόν +ἔξω +ἵνα +γνῶτε +ὅτι +οὐδεμίαν +αἰτίαν +εὑρίσκω +ἐν +αὐτῷ +οὖν +ἐξῆλθεν +ὁ +Ἰησοῦς +ἔξω +φορῶν +τόν +ἀκάνθινον +στέφανον +καί +τό +πορφυροῦν +ἱμάτιον +καί +λέγει +αὐτοῖς +Ἰδού +ὁ +ἄνθρωπος +οὖν +ὅτε +εἶδον +αὐτόν +οἱ +ἀρχιερεῖς +καί +οἱ +ὑπηρέται +ἐκραύγασαν +λέγοντες +Σταύρωσον +σταύρωσον +λέγει +αὐτοῖς +ὁ +Πειλᾶτος +Λάβετε +αὐτόν +ὑμεῖς +καί +σταυρώσατε +γάρ +ἐγώ +οὐχ +εὑρίσκω +ἐν +αὐτῷ +αἰτίαν +ἀπεκρίθησαν +αὐτῷ +οἱ +Ἰουδαῖοι +Ἠμεῖς +νόμον +ἔχομεν +καί +κατά +τόν +νόμον +ὀφείλει +ἀποθανεῖν +ὅτι +Υἱόν +Θεοῦ +ἑαυτόν +ἐποίησεν +οὖν +Ὅτε +ἤκουσεν +ὁ +Πειλᾶτος +τοῦτον +τόν +λόγον +μᾶλλον +ἐφοβήθη +καί +εἰσῆλθεν +εἰς +τό +πραιτώριον +πάλιν +καί +λέγει +τῷ +Ἰησοῦ +Πόθεν +εἶ +σύ +δέ +ὁ +Ἰησοῦς +ἀπόκρισιν +οὐκ +ἔδωκεν +αὐτῷ +οὖν +λέγει +αὐτῷ +ὁ +Πειλᾶτος +οὐ +Ἐμοί +λαλεῖς +οὐκ +οἶδας +ὅτι +ἐξουσίαν +ἔχω +ἀπολῦσαι +σε +καί +ἐξουσίαν +ἔχω +σταυρῶσαι +σε +ἀπεκρίθη +Ἰησοῦς +Οὐκ +εἶχες +ἐξουσίαν +οὐδεμίαν +κατ’ +ἐμοῦ +εἰ +μή +ἦν +δεδομένον +σοι +ἄνωθεν +διά +τοῦτο +ὁ +παραδούς +μέ +σοι +μείζονα +ἁμαρτίαν +ἔχει +ἐκ +τούτου +ὁ +Πειλᾶτος +ἐζήτει +ἀπολῦσαι +αὐτόν +δέ +οἱ +Ἰουδαῖοι +ἐκραύγασαν +λέγοντες +Ἐάν +τοῦτον +ἀπολύσῃς +οὐκ +εἶ +φίλος +τοῦ +Καίσαρος +πᾶς +ὁ +βασιλέα +ἑαυτόν +ποιῶν +ἀντιλέγει +τῷ +Καίσαρι +οὖν +Ὁ +Πειλᾶτος +ἀκούσας +τῶν +λόγων +τούτων +ἤγαγεν +ἔξω +τόν +Ἰησοῦν +καί +ἐκάθισεν +ἐπί +βήματος +εἰς +τόπον +λεγόμενον +Λιθόστρωτον +δέ +Ἑβραϊστί +Γαββαθα +δέ +ἦν +Παρασκευή +τοῦ +πάσχα +ὥρα +ἦν +ὡς +ἕκτη +καί +λέγει +τοῖς +Ἰουδαίοις +Ἴδε +ὁ +Βασιλεύς +ὑμῶν +οὖν +ἐκραύγασαν +ἐκεῖνοι +Ἆρον +ἆρον +σταύρωσον +αὐτόν +λέγει +αὐτοῖς +ὁ +Πειλᾶτος +Τόν +Βασιλέα +ὑμῶν +σταυρώσω +ἀπεκρίθησαν +οἱ +ἀρχιερεῖς +Οὐκ +ἔχομεν +βασιλέα +εἰ +μή +Καίσαρα +οὖν +τότε +παρέδωκεν +αὐτόν +αὐτοῖς +ἵνα +σταυρωθῇ +οὖν +Παρέλαβον +τόν +Ἰησοῦν +καί +βαστάζων +ἑαυτῷ +τόν +σταυρόν +ἐξῆλθεν +εἰς +τόν +λεγόμενον +Κρανίου +τόπον +ὅ +λέγεται +Ἑβραϊστί +Γολγοθᾶ +ὅπου +αὐτόν +ἐσταύρωσαν +καί +μετ’ +αὐτοῦ +ἄλλους +δύο +ἐντεῦθεν +καί +ἐντεῦθεν +δέ +μέσον +τόν +Ἰησοῦν +δέ +ἔγραψεν +καί +τίτλον +ὁ +Πειλᾶτος +καί +ἔθηκεν +ἐπί +τοῦ +σταυροῦ +δέ +ἦν +γεγραμμένον +ΙΗΣΟΥΣ +Ο +ΝΑΖΩΡΑΙΟΣ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ +οὖν +τοῦτον +τόν +τίτλον +ἀνέγνωσαν +πολλοί +τῶν +Ἰουδαίων +ὅτι +ἐγγύς +τῆς +πόλεως +ἦν +ὁ +τόπος +ὅπου +ἐσταυρώθη +ὁ +Ἰησοῦς +καί +ἦν +γεγραμμένον +Ἑβραϊστί +Ῥωμαϊστί +Ἑλληνιστί +οὖν +ἔλεγον +τῷ +Πειλάτῳ +οἱ +ἀρχιερεῖς +τῶν +Ἰουδαίων +Μή +γράφε +Ὁ +Βασιλεύς +τῶν +Ἰουδαίων +ἀλλ’ +ὅτι +ἐκεῖνος +εἶπεν +Βασιλεύς +τῶν +Ἰουδαίων +εἰμι +ἀπεκρίθη +ὁ +Πειλᾶτος +Ὅ +γέγραφα +γέγραφα +οὖν +ὅτε +Οἱ +στρατιῶται +ἐσταύρωσαν +τόν +Ἰησοῦν +ἔλαβον +τά +ἱμάτια +αὐτοῦ +καί +ἐποίησαν +τέσσερα +μέρη +ἑκάστῳ +στρατιώτῃ +μέρος +καί +τόν +χιτῶνα +δέ +ἦν +ὁ +χιτών +ἄραφος +ἐκ +τῶν +ἄνωθεν +ὑφαντός +δι’ +ὅλου +οὖν +εἶπαν +πρός +ἀλλήλους +Μή +σχίσωμεν +αὐτόν +ἀλλά +λάχωμεν +περί +αὐτοῦ +τίνος +ἔσται +ἵνα +ἡ +γραφή +πληρωθῇ +Διεμερίσαντο +τά +ἱμάτια +μου +ἑαυτοῖς +καί +ἐπί +τόν +ἱματισμόν +μου +ἔβαλον +κλῆρον +οὖν +μέν +Οἱ +στρατιῶται +ταῦτα +ἐποίησαν +δέ +εἱστήκεισαν +παρά +τῷ +σταυρῷ +τοῦ +Ἰησοῦ +ἡ +μήτηρ +αὐτοῦ +καί +ἡ +ἀδελφή +τῆς +μητρός +αὐτοῦ +Μαρία +ἡ +τοῦ +Κλωπᾶ +καί +Μαρία +ἡ +Μαγδαληνή +οὖν +Ἰησοῦς +ἰδών +τήν +μητέρα +καί +τόν +μαθητήν +παρεστῶτα +ὅν +ἠγάπα +λέγει +τῇ +μητρί +Γύναι +ἴδε +ὁ +υἱός +σου +εἶτα +λέγει +τῷ +μαθητῇ +Ἴδε +ἡ +μήτηρ +σου +καί +ἀπ’ +ἐκείνης +τῆς +ὥρας +ἔλαβεν +ὁ +μαθητής +αὐτήν +εἰς +τά +ἴδια +Μετά +τοῦτο +ὁ +Ἰησοῦς +εἰδώς +ὅτι +ἤδη +πάντα +τετέλεσται +ἵνα +τελειωθῇ +ἡ +γραφή +λέγει +Διψῶ +σκεῦος +ὄξους +μεστόν +ἔκειτο +οὖν +σπόγγον +μεστόν +τοῦ +ὄξους +ὑσσώπῳ +περιθέντες +προσήνεγκαν +αὐτοῦ +τῷ +στόματι +οὖν +ὅτε +ἔλαβεν +τό +ὄξος +ὁ +Ἰησοῦς +εἶπεν +Τετέλεσται +καί +κλίνας +τήν +κεφαλήν +παρέδωκεν +τό +πνεῦμα +οὖν +Οἱ +Ἰουδαῖοι +ἐπεί +Παρασκευή +ἦν +ἵνα +μή +μείνῃ +ἐπί +τοῦ +σταυροῦ +τά +σώματα +ἐν +τῷ +σαββάτῳ +γάρ +ἦν +μεγάλη +ἡ +ἡμέρα +ἐκείνου +τοῦ +σαββάτου +ἠρώτησαν +τόν +Πειλᾶτον +ἵνα +κατεαγῶσιν +αὐτῶν +τά +σκέλη +καί +ἀρθῶσιν +οὖν +ἦλθον +οἱ +στρατιῶται +καί +μέν +κατέαξαν +τά +σκέλη +τοῦ +πρώτου +καί +τοῦ +ἄλλου +τοῦ +συνσταυρωθέντος +αὐτῷ +δέ +ἐπί +τόν +Ἰησοῦν +ἐλθόντες +ὡς +εἶδον +ἤδη +αὐτόν +τεθνηκότα +οὐ +κατέαξαν +αὐτοῦ +τά +σκέλη +ἀλλ’ +εἷς +τῶν +στρατιωτῶν +λόγχῃ +αὐτοῦ +τήν +πλευράν +ἔνυξεν +καί +ἐξῆλθεν +εὐθύς +αἷμα +καί +ὕδωρ +καί +ὁ +ἑωρακώς +μεμαρτύρηκεν +καί +ἀληθινή +ἐστιν +αὐτοῦ +ἡ +μαρτυρία +καί +ἐκεῖνος +οἶδεν +ὅτι +ἀληθῆ +λέγει +ἵνα +καί +ὑμεῖς +πιστεύητε +γάρ +ἐγένετο +ταῦτα +ἵνα +ἡ +γραφή +πληρωθῇ +Ὀστοῦν +αὐτοῦ +οὐ +συντριβήσεται +καί +πάλιν +ἑτέρα +γραφή +λέγει +Ὄψονται +εἰς +ὅν +ἐξεκέντησαν +δέ +Μετά +ταῦτα +ἠρώτησεν +τόν +Πειλᾶτον +Ἰωσήφ +ἀπό +Ἁριμαθαίας +ὤν +μαθητής +τοῦ +Ἰησοῦ +δέ +κεκρυμμένος +διά +τόν +φόβον +τῶν +Ἰουδαίων +ἵνα +ἄρῃ +τό +σῶμα +τοῦ +Ἰησοῦ +καί +ἐπέτρεψεν +ὁ +Πειλᾶτος +οὖν +ἦλθεν +καί +ἦρεν +τό +σῶμα +αὐτοῦ +δέ +ἦλθεν +καί +Νικόδημος +ὁ +ἐλθών +πρός +αὐτόν +νυκτός +τό +πρῶτον +φέρων +μίγμα +σμύρνης +καί +ἀλόης +ὡς +λίτρας +ἑκατόν +οὖν +ἔλαβον +τό +σῶμα +τοῦ +Ἰησοῦ +καί +ἔδησαν +αὐτό +ὀθονίοις +μετά +τῶν +ἀρωμάτων +καθώς +ἔθος +ἐστίν +τοῖς +Ἰουδαίοις +ἐνταφιάζειν +δέ +ἦν +ἐν +τῷ +τόπῳ +ὅπου +ἐσταυρώθη +κῆπος +καί +ἐν +τῷ +κήπῳ +μνημεῖον +καινόν +ἐν +ᾧ +οὐδέπω +οὐδείς +ἦν +τεθειμένος +οὖν +ἐκεῖ +διά +τήν +Παρασκευήν +τῶν +Ἰουδαίων +ὅτι +ἐγγύς +ἦν +τό +μνημεῖον +ἔθηκαν +τόν +Ἰησοῦν +δέ +Τῇ +μιᾷ +τῶν +σαββάτων +Μαρία +ἡ +Μαγδαληνή +ἔρχεται +πρωΐ +εἰς +τό +μνημεῖον +σκοτίας +ἔτι +οὔσης +καί +βλέπει +τόν +λίθον +ἠρμένον +ἐκ +τοῦ +μνημείου +οὖν +τρέχει +καί +ἔρχεται +πρός +Σίμωνα +Πέτρον +καί +πρός +τόν +ἄλλον +μαθητήν +ὅν +ἐφίλει +ὁ +Ἰησοῦς +καί +λέγει +αὐτοῖς +Ἦραν +τόν +Κύριον +ἐκ +τοῦ +μνημείου +καί +οὐκ +οἴδαμεν +ποῦ +ἔθηκαν +αὐτόν +οὖν +Ἐξῆλθεν +ὁ +Πέτρος +καί +ὁ +ἄλλος +μαθητής +καί +ἤρχοντο +εἰς +τό +μνημεῖον +δέ +ἔτρεχον +οἱ +δύο +ὁμοῦ +καί +ὁ +ἄλλος +μαθητής +προέδραμεν +τάχιον +τοῦ +Πέτρου +καί +ἦλθεν +πρῶτος +εἰς +τό +μνημεῖον +καί +παρακύψας +βλέπει +κείμενα +τά +ὀθόνια +μέντοι +οὐ +εἰσῆλθεν +οὖν +ἔρχεται +καί +Σίμων +Πέτρος +ἀκολουθῶν +αὐτῷ +καί +εἰσῆλθεν +εἰς +τό +μνημεῖον +καί +θεωρεῖ +τά +ὀθόνια +κείμενα +καί +τό +σουδάριον +ὅ +ἦν +ἐπί +τῆς +κεφαλῆς +αὐτοῦ +οὐ +μετά +τῶν +ὀθονίων +κείμενον +ἀλλά +χωρίς +ἐντετυλιγμένον +εἰς +ἕνα +τόπον +οὖν +τότε +εἰσῆλθεν +καί +ὁ +ἄλλος +μαθητής +ὁ +ἐλθών +πρῶτος +εἰς +τό +μνημεῖον +καί +εἶδεν +καί +ἐπίστευσεν +γάρ +οὐδέπω +ᾔδεισαν +τήν +γραφήν +ὅτι +δεῖ +αὐτόν +ἐκ +νεκρῶν +ἀναστῆναι +οὖν +ἀπῆλθον +πάλιν +πρός +αὑτούς +οἱ +μαθηταί +δέ +Μαρία +εἱστήκει +πρός +τῷ +μνημείῳ +ἔξω +κλαίουσα +οὖν +ὡς +ἔκλαιεν +παρέκυψεν +εἰς +τό +μνημεῖον +καί +θεωρεῖ +δύο +ἀγγέλους +ἐν +λευκοῖς +καθεζομένους +ὅπου +ἔκειτο +τό +σῶμα +τοῦ +Ἰησοῦ +ἕνα +πρός +τῇ +κεφαλῇ +καί +ἕνα +πρός +τοῖς +ποσίν +καί +λέγουσιν +αὐτῇ +ἐκεῖνοι +Γύναι +τί +κλαίεις +λέγει +αὐτοῖς +ὅτι +Ἦραν +τόν +Κύριον +μου +καί +οὐκ +οἶδα +ποῦ +ἔθηκαν +αὐτόν +ταῦτα +εἰποῦσα +ἐστράφη +εἰς +τά +ὀπίσω +καί +θεωρεῖ +τόν +Ἰησοῦν +ἑστῶτα +καί +οὐκ +ᾔδει +ὅτι +Ἰησοῦς +ἐστιν +λέγει +αὐτῇ +Ἰησοῦς +Γύναι +τί +κλαίεις +τίνα +ζητεῖς +ἐκείνη +δοκοῦσα +ὅτι +ὁ +κηπουρός +ἐστιν +λέγει +αὐτῷ +Κύριε +εἰ +σύ +ἐβάστασας +αὐτόν +εἰπέ +μοι +ποῦ +ἔθηκας +αὐτόν +κἀγώ +αὐτόν +ἀρῶ +λέγει +αὐτῇ +Ἰησοῦς +Μαριάμ +στραφεῖσα +ἐκείνη +λέγει +αὐτῷ +Ἑβραϊστί +Ῥαββουνεί +ὅ +λέγεται +Διδάσκαλε +λέγει +αὐτῇ +Ἰησοῦς +Μή +μου +ἅπτου +γάρ +οὔπω +ἀναβέβηκα +πρός +τόν +Πατέρα +δέ +πορεύου +πρός +τούς +ἀδελφούς +μου +καί +εἰπέ +αὐτοῖς +Ἀναβαίνω +πρός +τόν +Πατέρα +μου +καί +Πατέρα +ὑμῶν +καί +Θεόν +μου +καί +Θεόν +ὑμῶν +ἔρχεται +Μαριάμ +ἡ +Μαγδαληνή +ἀγγέλλουσα +τοῖς +μαθηταῖς +ὅτι +Ἑώρακα +τόν +Κύριον +καί +ταῦτα +εἶπεν +αὐτῇ +οὖν +Οὔσης +ὀψίας +τῇ +ἡμέρᾳ +ἐκείνῃ +τῇ +μιᾷ +σαββάτων +καί +τῶν +θυρῶν +κεκλεισμένων +ὅπου +ἦσαν +οἱ +μαθηταί +διά +τόν +φόβον +τῶν +Ἰουδαίων +ἦλθεν +ὁ +Ἰησοῦς +καί +ἔστη +εἰς +τό +μέσον +καί +λέγει +αὐτοῖς +Εἰρήνη +ὑμῖν +καί +τοῦτο +εἰπών +ἔδειξεν +καί +τάς +χεῖρας +καί +τήν +πλευράν +αὐτοῖς +οὖν +ἐχάρησαν +οἱ +μαθηταί +ἰδόντες +τόν +Κύριον +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +πάλιν +Εἰρήνη +ὑμῖν +καθώς +ἀπέσταλκεν +με +ὁ +Πατήρ +κἀγώ +πέμπω +ὑμᾶς +καί +τοῦτο +εἰπών +ἐνεφύσησεν +καί +λέγει +αὐτοῖς +Λάβετε +Πνεῦμα +Ἅγιον +ἄν +ἀφῆτε +τινων +τάς +ἁμαρτίας +ἀφέωνται +αὐτοῖς +ἄν +τινων +κρατῆτε +κεκράτηνται +δέ +Θωμᾶς +εἷς +ἐκ +τῶν +δώδεκα +ὁ +λεγόμενος +Δίδυμος +οὐκ +ἦν +μετ’ +αὐτῶν +ὅτε +ἦλθεν +Ἰησοῦς +οὖν +ἔλεγον +αὐτῷ +οἱ +ἄλλοι +μαθηταί +Ἑωράκαμεν +τόν +Κύριον +δέ +ὁ +εἶπεν +αὐτοῖς +Ἐάν +μή +ἴδω +ἐν +ταῖς +χερσίν +αὐτοῦ +τόν +τύπον +τῶν +ἥλων +καί +βάλω +τόν +δάκτυλον +μου +εἰς +τόν +τόπον +τῶν +ἥλων +καί +βάλω +μου +τήν +χεῖρα +εἰς +τήν +πλευράν +αὐτοῦ +οὐ +μή +πιστεύσω +Καί +μεθ’ +ἡμέρας +ὀκτώ +πάλιν +ἦσαν +ἔσω +οἱ +μαθηταί +αὐτοῦ +καί +Θωμᾶς +μετ’ +αὐτῶν +ἔρχεται +ὁ +Ἰησοῦς +τῶν +θυρῶν +κεκλεισμένων +καί +ἔστη +εἰς +τό +μέσον +καί +εἶπεν +Εἰρήνη +ὑμῖν +εἶτα +λέγει +τῷ +Θωμᾷ +Φέρε +τόν +δάκτυλον +σου +ὧδε +καί +ἴδε +τάς +χεῖρας +μου +καί +φέρε +τήν +χεῖρα +σου +καί +βάλε +εἰς +τήν +πλευράν +μου +καί +μή +γίνου +ἄπιστος +ἀλλά +πιστός +ἀπεκρίθη +Θωμᾶς +καί +εἶπεν +αὐτῷ +Ὁ +Κύριος +μου +καί +ὁ +Θεός +μου +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ὅτι +ἑώρακας +με +πεπίστευκας +μακάριοι +οἱ +μή +ἰδόντες +καί +πιστεύσαντες +οὖν +μέν +καί +Πολλά +ἄλλα +σημεῖα +ἐποίησεν +ὁ +Ἰησοῦς +ἐνώπιον +τῶν +μαθητῶν +ἅ +οὐκ +ἔστιν +γεγραμμένα +ἐν +τῷ +βιβλίῳ +τούτῳ +δέ +ταῦτα +γέγραπται +ἵνα +πιστεύητε +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Χριστός +ὁ +Υἱός +τοῦ +Θεοῦ +καί +ἵνα +πιστεύοντες +ζωήν +ἔχητε +ἐν +τῷ +ὀνόματι +αὐτοῦ +Μετά +ταῦτα +ἐφανέρωσεν +ἑαυτόν +πάλιν +Ἰησοῦς +τοῖς +μαθηταῖς +ἐπί +τῆς +θαλάσσης +τῆς +Τιβεριάδος +δέ +ἐφανέρωσεν +οὕτως +ἦσαν +ὁμοῦ +Σίμων +Πέτρος +καί +Θωμᾶς +ὁ +λεγόμενος +Δίδυμος +καί +Ναθαναήλ +ὁ +ἀπό +Κανᾶ +τῆς +Γαλιλαίας +καί +οἱ +τοῦ +Ζεβεδαίου +καί +ἄλλοι +ἐκ +τῶν +μαθητῶν +αὐτοῦ +δύο +λέγει +αὐτοῖς +Σίμων +Πέτρος +Ὑπάγω +ἁλιεύειν +λέγουσιν +αὐτῷ +Ἐρχόμεθα +καί +ἡμεῖς +σύν +σοί +ἐξῆλθον +καί +ἐνέβησαν +εἰς +τό +πλοῖον +καί +ἐν +ἐκείνῃ +τῇ +νυκτί +ἐπίασαν +οὐδέν +δέ +πρωΐας +ἤδη +γινομένης +ἔστη +Ἰησοῦς +εἰς +τόν +αἰγιαλόν +μέντοι +οὐ +ᾔδεισαν +οἱ +μαθηταί +ὅτι +Ἰησοῦς +ἐστιν +οὖν +λέγει +αὐτοῖς +Ἰησοῦς +Παιδία +μή +τι +προσφάγιον +ἔχετε +ἀπεκρίθησαν +αὐτῷ +Οὔ +δέ +ὁ +εἶπεν +αὐτοῖς +Βάλετε +εἰς +τά +δεξιά +μέρη +τοῦ +πλοίου +τό +δίκτυον +καί +εὑρήσετε +οὖν +ἔβαλον +καί +οὐκέτι +αὐτό +ἑλκύσαι +ἴσχυον +ἀπό +τοῦ +πλήθους +τῶν +ἰχθύων +οὖν +λέγει +ὁ +μαθητής +ἐκεῖνος +ὅν +ἠγάπα +ὁ +Ἰησοῦς +τῷ +Πέτρῳ +Ὁ +Κύριος +ἐστιν +οὖν +Σίμων +Πέτρος +ἀκούσας +ὅτι +ὁ +Κύριος +ἐστιν +τόν +ἐπενδύτην +διεζώσατο +γάρ +ἦν +γυμνός +καί +ἔβαλεν +ἑαυτόν +εἰς +τήν +θάλασσαν +δέ +οἱ +ἄλλοι +μαθηταί +τῷ +πλοιαρίῳ +ἦλθον +γάρ +οὐ +ἦσαν +μακράν +ἀπό +τῆς +γῆς +ἀλλά +ὡς +ἀπό +πηχῶν +διακοσίων +σύροντες +τό +δίκτυον +τῶν +ἰχθύων +οὖν +ὡς +ἀπέβησαν +εἰς +τήν +γῆν +βλέπουσιν +ἀνθρακιάν +κειμένην +καί +ὀψάριον +ἐπικείμενον +καί +ἄρτον +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ἐνέγκατε +ἀπό +τῶν +ὀψαρίων +ὧν +ἐπιάσατε +νῦν +ἀνέβη +Σίμων +Πέτρος +καί +εἵλκυσεν +τό +δίκτυον +εἰς +τήν +γῆν +μεστόν +ἰχθύων +μεγάλων +ἑκατόν +πεντήκοντα +τριῶν +καί +τοσούτων +ὄντων +οὐκ +ἐσχίσθη +τό +δίκτυον +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Δεῦτε +ἀριστήσατε +οὐδείς +τῶν +μαθητῶν +ἐτόλμα +ἐξετάσαι +αὐτόν +Σύ +τίς +εἶ +εἰδότες +ὅτι +ὁ +Κύριος +ἐστιν +ἔρχεται +Ἰησοῦς +καί +λαμβάνει +τόν +ἄρτον +καί +δίδωσιν +αὐτοῖς +καί +τό +ὀψάριον +ὁμοίως +τοῦτο +ἤδη +τρίτον +ἐφανερώθη +Ἰησοῦς +τοῖς +μαθηταῖς +ἐγερθείς +ἐκ +νεκρῶν +οὖν +Ὅτε +ἠρίστησαν +λέγει +τῷ +Σίμωνι +Πέτρῳ +ὁ +Ἰησοῦς +Σίμων +Ἰωάνου +ἀγαπᾷς +με +πλέον +τούτων +λέγει +αὐτῷ +Ναί +Κύριε +σύ +οἶδας +ὅτι +φιλῶ +σε +λέγει +αὐτῷ +Βόσκε +τά +ἀρνία +μου +λέγει +αὐτῷ +πάλιν +δεύτερον +Σίμων +Ἰωάνου +ἀγαπᾷς +με +λέγει +αὐτῷ +Ναί +Κύριε +σύ +οἶδας +ὅτι +φιλῶ +σε +λέγει +αὐτῷ +Ποίμαινε +τά +προβάτια +μου +λέγει +αὐτῷ +τό +τρίτον +Σίμων +Ἰωάνου +φιλεῖς +με +ἐλυπήθη +ὁ +Πέτρος +ὅτι +εἶπεν +αὐτῷ +τό +τρίτον +Φιλεῖς +με +καί +εἶπεν +αὐτῷ +Κύριε +πάντα +σύ +οἶδας +σύ +γινώσκεις +ὅτι +φιλῶ +σε +λέγει +αὐτῷ +Ἰησοῦς +Βόσκε +τά +προβάτια +μου +ἀμήν +ἀμήν +λέγω +σοι +ὅτε +ἦς +νεώτερος +ἐζώννυες +σεαυτόν +καί +περιεπάτεις +ὅπου +ἤθελες +δέ +ὅταν +γηράσῃς +ἐκτενεῖς +τάς +χεῖρας +σου +καί +ἄλλος +ζώσει +σε +καί +οἴσει +ὅπου +οὐ +θέλεις +δέ +τοῦτο +εἶπεν +σημαίνων +ποίῳ +θανάτῳ +δοξάσει +τόν +Θεόν +καί +τοῦτο +εἰπών +λέγει +αὐτῷ +Ἀκολούθει +μοι +ἐπιστραφείς +ὁ +Πέτρος +βλέπει +τόν +μαθητήν +ὅν +ἠγάπα +ὁ +Ἰησοῦς +ἀκολουθοῦντα +ὅς +καί +ἀνέπεσεν +ἐν +τῷ +δείπνῳ +ἐπί +τό +στῆθος +αὐτοῦ +καί +εἶπεν +Κύριε +τίς +ἐστιν +ὁ +παραδιδούς +σε +οὖν +τοῦτον +ἰδών +ὁ +Πέτρος +λέγει +τῷ +Ἰησοῦ +Κύριε +δέ +οὗτος +τί +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἐάν +αὐτόν +μένειν +θέλω +ἕως +ἔρχομαι +τί +πρός +σέ +σύ +μοι +ἀκολούθει +οὖν +ἐξῆλθεν +οὗτος +ὁ +λόγος +εἰς +τούς +ἀδελφούς +ὅτι +ὁ +μαθητής +ἐκεῖνος +οὐκ +ἀποθνήσκει +δέ +οὐκ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +ὅτι +οὐκ +ἀποθνήσκει +ἀλλ’ +Ἐάν +αὐτόν +μένειν +θέλω +ἕως +ἔρχομαι +τί +πρός +σέ +Οὗτος +ἐστιν +ὁ +μαθητής +ὁ +μαρτυρῶν +περί +τούτων +καί +ὁ +γράψας +ταῦτα +καί +οἴδαμεν +ὅτι +ἀληθής +αὐτοῦ +ἡ +μαρτυρία +ἐστίν +δέ +Ἔστιν +καί +ἄλλα +πολλά +ἅ +ἐποίησεν +ὁ +Ἰησοῦς +ἐάν +ἅτινα +γράφηται +καθ’ +ἕν +οἶμαι +οὐδ’ +αὐτόν +τόν +κόσμον +χωρήσειν +τά +γραφόμενα +βιβλία +ὦ +Θεόφιλε +μέν +Τόν +πρῶτον +λόγον +ἐποιησάμην +περί +πάντων +ὧν +τε +ποιεῖν +καί +διδάσκειν +ἤρξατο +ὁ +Ἰησοῦς +ἄχρι +ἧς +ἡμέρας +ἐντειλάμενος +τοῖς +ἀποστόλοις +οὕς +ἐξελέξατο +διά +Πνεύματος +Ἁγίου +ἀνελήμφθη +οἷς +καί +παρέστησεν +ἑαυτόν +ζῶντα +μετά +τό +παθεῖν +αὐτόν +ἐν +πολλοῖς +τεκμηρίοις +δι’ +ἡμερῶν +τεσσεράκοντα +ὀπτανόμενος +αὐτοῖς +καί +λέγων +τά +περί +τῆς +βασιλείας +τοῦ +Θεοῦ +καί +συναλιζόμενος +παρήγγειλεν +αὐτοῖς +ἀπό +Ἱεροσολύμων +μή +χωρίζεσθαι +ἀλλά +περιμένειν +τήν +ἐπαγγελίαν +τοῦ +Πατρός +ἥν +ἠκούσατε +μου +ὅτι +μέν +Ἰωάνης +ἐβάπτισεν +ὕδατι +δέ +ὑμεῖς +ἐν +Πνεύματι +Ἁγίῳ +βαπτισθήσεσθε +οὐ +μετά +πολλάς +ταύτας +ἡμέρας +μέν +οὖν +Οἱ +συνελθόντες +ἠρώτων +αὐτόν +λέγοντες +Κύριε +εἰ +ἐν +τῷ +χρόνῳ +τούτῳ +ἀποκαθιστάνεις +τήν +βασιλείαν +τῷ +Ἰσραήλ +εἶπεν +πρός +αὐτούς +Οὐχ +ὑμῶν +ἐστιν +γνῶναι +χρόνους +ἤ +καιρούς +οὕς +ὁ +Πατήρ +ἔθετο +ἐν +τῇ +ἰδίᾳ +ἐξουσίᾳ +ἀλλά +λήμψεσθε +δύναμιν +ἐπελθόντος +τοῦ +Ἁγίου +Πνεύματος +ἐφ’ +ὑμᾶς +καί +ἔσεσθε +μου +μάρτυρες +τε +ἔν +Ἱερουσαλήμ +καί +ἐν +πάσῃ +τῇ +Ἰουδαίᾳ +καί +Σαμαρίᾳ +καί +ἕως +ἐσχάτου +τῆς +γῆς +καί +ταῦτα +εἰπών +βλεπόντων +αὐτῶν +ἐπήρθη +καί +νεφέλη +ὑπέλαβεν +αὐτόν +ἀπό +τῶν +ὀφθαλμῶν +αὐτῶν +καί +ὡς +ἀτενίζοντες +ἦσαν +εἰς +τόν +οὐρανόν +πορευομένου +αὐτοῦ +καί +ἰδού +ἄνδρες +δύο +παρειστήκεισαν +αὐτοῖς +ἐν +ἐσθήσεσι +λευκαῖς +οἵ +καί +εἶπαν +Ἄνδρες +Γαλιλαῖοι +τί +ἑστήκατε +βλέποντες +εἰς +τόν +οὐρανόν +οὗτος +ὁ +Ἰησοῦς +ὁ +ἀναλημφθείς +ἀφ’ +ὑμῶν +εἰς +τόν +οὐρανόν +οὕτως +ἐλεύσεται +ὅν +τρόπον +ἐθεάσασθε +αὐτόν +πορευόμενον +εἰς +τόν +οὐρανόν +Τότε +ὑπέστρεψαν +εἰς +Ἱερουσαλήμ +ἀπό +ὄρους +τοῦ +καλουμένου +Ἐλαιῶνος +ὅ +ἐστιν +ἐγγύς +Ἱερουσαλήμ +σαββάτου +ὁδόν +ἔχον +καί +ὅτε +εἰσῆλθον +εἰς +τό +ὑπερῷον +ἀνέβησαν +οὗ +ἦσαν +καταμένοντες +τε +ὅ +Πέτρος +καί +Ἰωάνης +καί +Ἰάκωβος +καί +Ἀνδρέας +Φίλιππος +καί +Θωμᾶς +Βαρθολομαῖος +καί +Μαθθαῖος +Ἰάκωβος +Ἀλφαίου +καί +Σίμων +ὁ +Ζηλωτής +καί +Ἰούδας +Ἰακώβου +οὗτοι +πάντες +ἦσαν +προσκαρτεροῦντες +ὁμοθυμαδόν +τῇ +προσευχῇ +σύν +γυναιξίν +καί +Μαριάμ +τῇ +μητρί +τοῦ +Ἰησοῦ +καί +σύν +τοῖς +ἀδελφοῖς +αὐτοῦ +Καί +ἐν +ταῖς +ἡμέραις +ταύταις +ἀναστάς +ἐν +μέσῳ +τῶν +ἀδελφῶν +Πέτρος +εἶπεν +τε +ἦν +ὄχλος +ὀνομάτων +ἐπί +τό +αὐτό +ὡσεί +ἑκατόν +εἴκοσι +Ἄνδρες +ἀδελφοί +ἔδει +πληρωθῆναι +τήν +γραφήν +ἥν +προεῖπεν +τό +Πνεῦμα +τό +Ἅγιον +διά +στόματος +Δαυείδ +περί +Ἰούδα +τοῦ +γενομένου +ὁδηγοῦ +τοῖς +συλλαβοῦσιν +Ἰησοῦν +ὅτι +κατηριθμημένος +ἦν +ἐν +ἡμῖν +καί +ἔλαχεν +τόν +κλῆρον +τῆς +διακονίας +ταύτης +μέν +οὖν +οὗτος +ἐκτήσατο +χωρίον +ἐκ +μισθοῦ +τῆς +ἀδικίας +καί +πρηνής +γενόμενος +ἐλάκησεν +μέσος +καί +ἐξεχύθη +πάντα +τά +σπλάγχνα +αὐτοῦ +καί +γνωστόν +ἐγένετο +πᾶσι +τοῖς +κατοικοῦσιν +Ἱερουσαλήμ +ὥστε +κληθῆναι +τό +χωρίον +ἐκεῖνο +τῇ +ἰδίᾳ +διαλέκτῳ +αὐτῶν +Ἀκελδαμάχ +τοῦτ’ +ἔστιν +Χωρίον +αἵματος +γάρ +γέγραπται +ἐν +βίβλῳ +Ψαλμῶν +Γενηθήτω +ἡ +ἔπαυλις +αὐτοῦ +ἔρημος +καί +μή +ἔστω +ὁ +κατοικῶν +ἐν +αὐτῇ +καί +Τήν +ἐπισκοπήν +αὐτοῦ +λαβέτω +ἕτερος +οὖν +δεῖ +τῶν +ἀνδρῶν +συνελθόντων +ἡμῖν +ἐν +παντί +χρόνῳ +ᾧ +εἰσῆλθεν +καί +ἐξῆλθεν +ἐφ’ +ἡμᾶς +ὁ +Κύριος +Ἰησοῦς +ἀρξάμενος +ἀπό +τοῦ +βαπτίσματος +Ἰωάνου +ἕως +τῆς +ἡμέρας +ἧς +ἀνελήμφθη +ἀφ’ +ἡμῶν +μάρτυρα +τῆς +ἀναστάσεως +αὐτοῦ +σύν +ἡμῖν +γενέσθαι +ἕνα +τούτων +Καί +ἔστησαν +δύο +Ἰωσήφ +τόν +καλούμενον +Βαρσαββᾶν +ὅς +ἐπεκλήθη +Ἰοῦστος +καί +Μαθθίαν +καί +προσευξάμενοι +εἶπαν +Κύριε +καρδιογνῶστα +πάντων +Σύ +ἀνάδειξον +ὅν +ἐξελέξω +ἐκ +τούτων +τῶν +δύο +ἕνα +λαβεῖν +τόν +τόπον +τῆς +διακονίας +ταύτης +καί +ἀποστολῆς +ἀφ’ +ἧς +παρέβη +Ἰούδας +πορευθῆναι +εἰς +τόν +τόπον +τόν +ἴδιον +καί +ἔδωκαν +κλήρους +αὐτοῖς +καί +ἔπεσεν +ὁ +κλῆρος +ἐπί +Μαθθίαν +καί +συνκατεψηφίσθη +μετά +τῶν +ἕνδεκα +ἀποστόλων +Καί +ἐν +τῷ +συνπληροῦσθαι +τήν +ἡμέραν +τῆς +Πεντηκοστῆς +ἦσαν +πάντες +ὁμοῦ +ἐπί +τό +αὐτό +καί +ἐγένετο +ἄφνω +ἐκ +τοῦ +οὐρανοῦ +ἦχος +ὥσπερ +φερομένης +πνοῆς +βιαίας +καί +ἐπλήρωσεν +ὅλον +τόν +οἶκον +οὗ +ἦσαν +καθήμενοι +καί +ὤφθησαν +αὐτοῖς +διαμεριζόμεναι +γλῶσσαι +ὡσεί +πυρός +καί +ἐκάθισεν +ἐφ’ +ἕνα +ἕκαστον +αὐτῶν +καί +ἐπλήσθησαν +πάντες +Πνεύματος +Ἁγίου +καί +ἤρξαντο +λαλεῖν +ἑτέραις +γλώσσαις +καθώς +τό +Πνεῦμα +ἐδίδου +ἀποφθέγγεσθαι +αὐτοῖς +δέ +Ἦσαν +κατοικοῦντες +εἰς +Ἰερουσαλήμ +Ἰουδαῖοι +ἄνδρες +εὐλαβεῖς +ἀπό +παντός +ἔθνους +τῶν +ὑπό +τόν +οὐρανόν +δέ +γενομένης +τῆς +φωνῆς +ταύτης +συνῆλθεν +τό +πλῆθος +καί +συνεχύθη +ὅτι +ἤκουον +εἷς +ἕκαστος +τῇ +ἰδίᾳ +διαλέκτῳ +λαλούντων +αὐτῶν +δέ +ἐξίσταντο +καί +ἐθαύμαζον +λέγοντες +ἰδού +Οὐχί +πάντες +οὗτοι +οἱ +λαλοῦντες +εἰσιν +Γαλιλαῖοι +καί +πῶς +ἡμεῖς +ἀκούομεν +ἕκαστος +τῇ +ἰδίᾳ +διαλέκτῳ +ἡμῶν +ἐν +ᾗ +ἐγεννήθημεν +Πάρθοι +καί +Μῆδοι +καί +Ἐλαμεῖται +καί +οἱ +κατοικοῦντες +τήν +Μεσοποταμίαν +τε +Ἰουδαίαν +καί +Καππαδοκίαν +Πόντον +καί +τήν +Ἀσίαν +τε +Φρυγίαν +καί +Παμφυλίαν +Αἴγυπτον +καί +τά +μέρη +τῆς +Λιβύης +τῆς +κατά +Κυρήνην +καί +οἱ +ἐπιδημοῦντες +Ῥωμαῖοι +τε +Ἰουδαῖοι +καί +προσήλυτοι +Κρῆτες +καί +Ἄραβες +ἀκούομεν +λαλούντων +αὐτῶν +ταῖς +ἡμετέραις +γλώσσαις +τά +μεγαλεῖα +τοῦ +Θεοῦ +δέ +ἐξίσταντο +πάντες +καί +διηποροῦντο +ἄλλος +πρός +ἄλλον +λέγοντες +θέλει +τοῦτο +Τί +εἶναι +δέ +ἕτεροι +διαχλευάζοντες +ἔλεγον +ὅτι +Γλεύκους +μεμεστωμένοι +εἰσίν +δέ +Σταθείς +σύν +τοῖς +ἕνδεκα +ὁ +Πέτρος +ἐπῆρεν +τήν +φωνήν +αὐτοῦ +καί +ἀπεφθέγξατο +αὐτοῖς +Ἄνδρες +Ἰουδαῖοι +καί +οἱ +κατοικοῦντες +Ἱερουσαλήμ +πάντες +τοῦτο +ὑμῖν +γνωστόν +ἔστω +καί +ἐνωτίσασθε +τά +ῥήματα +μου +γάρ +οὐ +ὡς +ὑμεῖς +ὑπολαμβάνετε +οὗτοι +μεθύουσιν +γάρ +ἔστιν +ὥρα +τρίτη +τῆς +ἡμέρας +ἀλλά +τοῦτο +ἐστιν +τό +εἰρημένον +διά +τοῦ +προφήτου +Ἰωήλ +Καί +ἔσται +ἐν +ταῖς +ἐσχάταις +ἡμέραις +λέγει +ὁ +Θεός +ἐκχεῶ +ἀπό +τοῦ +Πνεύματος +μου +ἐπί +πᾶσαν +σάρκα +καί +προφητεύσουσιν +οἱ +υἱοί +ὑμῶν +καί +αἱ +θυγατέρες +ὑμῶν +καί +οἱ +νεανίσκοι +ὑμῶν +ὁράσεις +ὄψονται +καί +οἱ +πρεσβύτεροι +ὑμῶν +ἐνυπνίοις +ἐνυπνιασθήσονται +καίγε +ἐπί +τούς +δούλους +μου +καί +ἐπί +τάς +δούλας +μου +ἐν +ταῖς +ἡμέραις +ἐκείναις +ἐκχεῶ +ἀπό +τοῦ +Πνεύματος +μου +καί +προφητεύσουσιν +καί +δώσω +τέρατα +ἐν +τῷ +οὐρανῷ +ἄνω +καί +σημεῖα +ἐπί +τῆς +γῆς +κάτω +αἷμα +καί +πῦρ +καί +ἀτμίδα +καπνοῦ +ὁ +ἥλιος +μεταστραφήσεται +εἰς +σκότος +καί +ἡ +σελήνη +εἰς +αἷμα +πρίν +ἐλθεῖν +ἡμέραν +Κυρίου +τήν +μεγάλην +καί +ἐπιφανῆ +καί +ἔσται +πᾶς +ἐάν +ὅς +ἐπικαλέσηται +τό +ὄνομα +Κυρίου +σωθήσεται +Ἄνδρες +Ἰσραηλεῖται +ἀκούσατε +τούς +λόγους +τούτους +Ἰησοῦν +τόν +Ναζωραῖον +ἄνδρα +ἀποδεδειγμένον +ἀπό +τοῦ +Θεοῦ +εἰς +ὑμᾶς +δυνάμεσι +καί +τέρασι +καί +σημείοις +οἷς +ἐποίησεν +δι’ +αὐτοῦ +ὁ +Θεός +ἐν +μέσῳ +ὑμῶν +καθώς +αὐτοί +οἴδατε +τοῦτον +τῇ +ὡρισμένῃ +βουλῇ +καί +προγνώσει +τοῦ +Θεοῦ +ἔκδοτον +διά +χειρός +ἀνόμων +προσπήξαντες +ἀνείλατε +ὅν +ὁ +Θεός +ἀνέστησεν +λύσας +τάς +ὠδῖνας +τοῦ +θανάτου +καθότι +οὐκ +ἦν +δυνατόν +κρατεῖσθαι +αὐτόν +ὑπ’ +αὐτοῦ +γάρ +Δαυείδ +λέγει +εἰς +αὐτόν +Προορώμην +τόν +Κύριον +ἐνώπιον +μου +διά +παντός +ὅτι +ἐκ +δεξιῶν +μού +ἐστιν +ἵνα +μή +σαλευθῶ +διά +τοῦτο +ηὐφράνθη +μου +ἡ +καρδία +καί +ἠγαλλιάσατο +ἡ +γλῶσσα +μου +δέ +ἔτι +καί +ἡ +σάρξ +μου +κατασκηνώσει +ἐπ’ +ἐλπίδι +ὅτι +οὐκ +ἐνκαταλείψεις +τήν +ψυχήν +μου +εἰς +Ἅιδην +οὐδέ +δώσεις +τόν +Ὅσιον +σου +ἰδεῖν +διαφθοράν +ἐγνώρισας +μοι +ὁδούς +ζωῆς +πληρώσεις +με +εὐφροσύνης +μετά +τοῦ +προσώπου +σου +Ἄνδρες +ἀδελφοί +ἐξόν +εἰπεῖν +μετά +παρρησίας +πρός +ὑμᾶς +περί +τοῦ +πατριάρχου +Δαυείδ +ὅτι +καί +ἐτελεύτησεν +καί +ἐτάφη +καί +τό +μνῆμα +αὐτοῦ +ἔστιν +ἐν +ἡμῖν +ἄχρι +τῆς +ἡμέρας +ταύτης +οὖν +προφήτης +ὑπάρχων +καί +εἰδώς +ὅτι +ὅρκῳ +ὤμοσεν +αὐτῷ +ὁ +Θεός +ἐκ +καρποῦ +τῆς +ὀσφύος +αὐτοῦ +καθίσαι +ἐπί +τόν +θρόνον +αὐτοῦ +προϊδών +ἐλάλησεν +περί +τῆς +ἀναστάσεως +τοῦ +Χριστοῦ +ὅτι +οὔτε +ἐνκατελείφθη +εἰς +Ἅιδην +οὔτε +ἡ +σάρξ +αὐτοῦ +εἶδεν +διαφθοράν +τοῦτον +τόν +Ἰησοῦν +ἀνέστησεν +ὁ +Θεός +οὗ +πάντες +ἡμεῖς +ἐσμεν +μάρτυρες +οὖν +τῇ +δεξιᾷ +τοῦ +Θεοῦ +ὑψωθείς +τε +τήν +ἐπαγγελίαν +τοῦ +Πνεύματος +τοῦ +Ἁγίου +λαβών +παρά +τοῦ +Πατρός +ἐξέχεεν +τοῦτο +ὅ +ὑμεῖς +καί +βλέπετε +καί +ἀκούετε +γάρ +οὐ +Δαυείδ +ἀνέβη +εἰς +τούς +οὐρανούς +δέ +λέγει +αὐτός +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἄν +θῶ +τούς +ἐχθρούς +σου +ὑποπόδιον +τῶν +ποδῶν +σου +οὖν +ἀσφαλῶς +γινωσκέτω +πᾶς +οἶκος +Ἰσραήλ +ὅτι +καί +Κύριον +καί +Χριστόν +ἐποίησεν +ὁ +Θεός +αὐτόν +τοῦτον +τόν +Ἰησοῦν +ὅν +ὑμεῖς +ἐσταυρώσατε +δέ +Ἀκούσαντες +κατενύγησαν +τήν +καρδίαν +τε +εἶπον +πρός +τόν +Πέτρον +καί +τούς +λοιπούς +ἀποστόλους +Τί +ποιήσωμεν +ἄνδρες +ἀδελφοί +δέ +Πέτρος +πρός +αὐτούς +Μετανοήσατε +καί +βαπτισθήτω +ἕκαστος +ὑμῶν +ἐπί +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +εἰς +ἄφεσιν +τῶν +ἁμαρτιῶν +ὑμῶν +καί +λήμψεσθε +τήν +δωρεάν +τοῦ +Ἁγίου +Πνεύματος +γάρ +ὑμῖν +ἐστιν +ἡ +ἐπαγγελία +καί +τοῖς +τέκνοις +ὑμῶν +καί +πᾶσιν +τοῖς +εἰς +μακράν +ἄν +ὅσους +προσκαλέσηται +Κύριος +ὁ +Θεός +ἡμῶν +τε +ἑτέροις +λόγοις +πλείοσιν +διεμαρτύρατο +καί +παρεκάλει +αὐτούς +λέγων +Σώθητε +ἀπό +τῆς +γενεᾶς +τῆς +σκολιᾶς +ταύτης +μέν +οὖν +οἱ +ἀποδεξάμενοι +τόν +λόγον +αὐτοῦ +ἐβαπτίσθησαν +καί +προσετέθησαν +ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ψυχαί +ὡσεί +τρισχίλιαι +δέ +ἦσαν +προσκαρτεροῦντες +τῇ +διδαχῇ +τῶν +ἀποστόλων +καί +τῇ +κοινωνίᾳ +τῇ +κλάσει +τοῦ +ἄρτου +καί +ταῖς +προσευχαῖς +δέ +Ἐγίνετο +πάσῃ +ψυχῇ +φόβος +δέ +πολλά +τέρατα +καί +σημεῖα +διά +τῶν +ἀποστόλων +ἐγίνετο +δέ +πάντες +οἱ +πιστεύσαντες +ἐπί +τό +αὐτό +εἶχον +ἅπαντα +κοινά +καί +τά +κτήματα +καί +τάς +ὑπάρξεις +ἐπίπρασκον +καί +διεμέριζον +αὐτά +πᾶσιν +καθότι +ἄν +τις +χρείαν +εἶχεν +τε +καθ’ +ἡμέραν +προσκαρτεροῦντες +ὁμοθυμαδόν +ἐν +τῷ +ἱερῷ +τε +κλῶντες +κατ’ +οἶκον +ἄρτον +μετελάμβανον +τροφῆς +ἐν +ἀγαλλιάσει +καί +ἀφελότητι +καρδίας +αἰνοῦντες +τόν +Θεόν +καί +ἔχοντες +χάριν +πρός +ὅλον +τόν +λαόν +δέ +ὁ +Κύριος +προσετίθει +τούς +σῳζομένους +καθ’ +ἡμέραν +ἐπί +τό +αὐτό +δέ +Πέτρος +καί +Ἰωάνης +ἀνέβαινον +εἰς +τό +ἱερόν +ἐπί +τήν +ὥραν +τῆς +προσευχῆς +τήν +ἐνάτην +καί +τις +ἀνήρ +χωλός +ἐκ +κοιλίας +μητρός +αὐτοῦ +ὑπάρχων +ἐβαστάζετο +ὅν +ἐτίθουν +καθ’ +ἡμέραν +πρός +τήν +θύραν +τοῦ +ἱεροῦ +τήν +λεγομένην +Ὡραίαν +τοῦ +αἰτεῖν +ἐλεημοσύνην +παρά +τῶν +εἰσπορευομένων +εἰς +τό +ἱερόν +ὅς +ἰδών +Πέτρον +καί +Ἰωάνην +μέλλοντας +εἰσιέναι +εἰς +τό +ἱερόν +ἠρώτα +ἐλεημοσύνην +λαβεῖν +δέ +Πέτρος +ἀτενίσας +εἰς +αὐτόν +σύν +τῷ +Ἰωάνῃ +εἶπεν +Βλέψον +εἰς +ἡμᾶς +δέ +ὁ +ἐπεῖχεν +αὐτοῖς +προσδοκῶν +τι +παρ’ +αὐτῶν +λαβεῖν +δέ +εἶπεν +Πέτρος +Ἀργύριον +καί +χρυσίον +οὐχ +ὑπάρχει +μοι +δέ +ὅ +ἔχω +τοῦτο +σοι +δίδωμι +ἐν +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +τοῦ +Ναζωραίου +περιπάτει +καί +πιάσας +αὐτόν +τῆς +δεξιᾶς +χειρός +ἤγειρεν +αὐτόν +δέ +παραχρῆμα +ἐστερεώθησαν +αἱ +βάσεις +αὐτοῦ +καί +τά +σφυδρά +καί +ἐξαλλόμενος +ἔστη +καί +περιεπάτει +καί +εἰσῆλθεν +σύν +αὐτοῖς +εἰς +τό +ἱερόν +περιπατῶν +καί +ἁλλόμενος +καί +αἰνῶν +τόν +Θεόν +καί +εἶδεν +πᾶς +ὁ +λαός +αὐτόν +περιπατοῦντα +καί +αἰνοῦντα +τόν +Θεόν +δέ +ἐπεγίνωσκον +αὐτόν +ὅτι +οὗτος +ἦν +ὁ +πρός +τήν +ἐλεημοσύνην +καθήμενος +ἐπί +τῇ +Ὡραίᾳ +Πύλῃ +τοῦ +ἱεροῦ +καί +ἐπλήσθησαν +θάμβους +καί +ἐκστάσεως +ἐπί +τῷ +συμβεβηκότι +αὐτῷ +δέ +Κρατοῦντος +αὐτοῦ +τόν +Πέτρον +καί +τόν +Ἰωάνην +συνέδραμεν +πᾶς +ὁ +λαός +πρός +αὐτούς +ἐπί +τῇ +στοᾷ +τῇ +καλουμένῃ +Σολομῶντος +ἔκθαμβοι +δέ +ἰδών +ὁ +Πέτρος +ἀπεκρίνατο +πρός +τόν +λαόν +Ἄνδρες +Ἰσραηλεῖται +τί +θαυμάζετε +ἐπί +τούτῳ +ἤ +ἡμῖν +τί +ἀτενίζετε +ὡς +ἰδίᾳ +δυνάμει +ἤ +εὐσεβείᾳ +πεποιηκόσιν +τοῦ +περιπατεῖν +αὐτόν +ὁ +Θεός +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +ὁ +Θεός +τῶν +πατέρων +ἡμῶν +ἐδόξασεν +τόν +Παῖδα +αὐτοῦ +Ἰησοῦν +μέν +ὅν +ὑμεῖς +παρεδώκατε +καί +ἠρνήσασθε +κατά +πρόσωπον +Πειλάτου +κρίναντος +ἐκείνου +ἀπολύειν +δέ +ὑμεῖς +τόν +Ἅγιον +καί +Δίκαιον +ἠρνήσασθε +καί +ᾐτήσασθε +ἄνδρα +φονέα +χαρισθῆναι +ὑμῖν +δέ +τόν +Ἀρχηγόν +τῆς +ζωῆς +ἀπεκτείνατε +ὅν +ὁ +Θεός +ἤγειρεν +ἐκ +νεκρῶν +οὗ +ἡμεῖς +μάρτυρες +ἐσμεν +καί +ἐπί +τῇ +πίστει +τοῦ +ὀνόματος +αὐτοῦ +τοῦτον +ὅν +θεωρεῖτε +καί +οἴδατε +ἐστερέωσεν +τό +ὄνομα +αὐτοῦ +καί +ἡ +πίστις +ἡ +δι’ +αὐτοῦ +ἔδωκεν +αὐτῷ +τήν +ὁλοκληρίαν +ταύτην +ἀπέναντι +πάντων +ὑμῶν +καί +ἀδελφοί +νῦν +οἶδα +ὅτι +κατά +ἄγνοιαν +ἐπράξατε +ὥσπερ +καί +οἱ +ἄρχοντες +ὑμῶν +δέ +ὁ +Θεός +ἅ +προκατήγγειλεν +διά +στόματος +πάντων +τῶν +προφητῶν +παθεῖν +τόν +Χριστόν +αὐτοῦ +ἐπλήρωσεν +οὕτως +οὖν +μετανοήσατε +καί +ἐπιστρέψατε +πρός +τό +ἐξαλειφθῆναι +ὑμῶν +τάς +ἁμαρτίας +ὅπως +ἄν +ἔλθωσιν +καιροί +ἀναψύξεως +ἀπό +προσώπου +τοῦ +Κυρίου +καί +ἀποστείλῃ +τόν +προκεχειρισμένον +ὑμῖν +Χριστόν +Ἰησοῦν +δεῖ +μέν +ὅν +οὐρανόν +δέξασθαι +ἄχρι +χρόνων +ἀποκαταστάσεως +πάντων +ὧν +ἐλάλησεν +ὁ +Θεός +διά +στόματος +τῶν +ἁγίων +ἀπ’ +αἰῶνος +αὐτοῦ +προφητῶν +μέν +Μωϋσῆς +εἶπεν +ὅτι +Προφήτην +ὑμῖν +ἀναστήσει +Κύριος +ὁ +Θεός +ἐκ +τῶν +ἀδελφῶν +ὑμῶν +ὡς +ἐμέ +αὐτοῦ +ἀκούσεσθε +κατά +πάντα +ἄν +ὅσα +λαλήσῃ +πρός +ὑμᾶς +δέ +ἔσται +πᾶσα +ψυχή +ἐάν +ἥτις +μή +ἀκούσῃ +τοῦ +προφήτου +ἐκείνου +ἐξολεθρευθήσεται +ἐκ +τοῦ +λαοῦ +δέ +καί +πάντες +οἱ +προφῆται +ἀπό +Σαμουήλ +καί +τῶν +καθεξῆς +ὅσοι +ἐλάλησαν +καί +κατήγγειλαν +τάς +ἡμέρας +ταύτας +ὑμεῖς +ἐστε +οἱ +υἱοί +τῶν +προφητῶν +καί +τῆς +διαθήκης +ἧς +ὁ +Θεός +διέθετο +πρός +τούς +πατέρας +ὑμῶν +λέγων +πρός +Ἀβραάμ +Καί +ἐν +τῷ +σπέρματι +σου +ἐνευλογηθήσονται +πᾶσαι +αἱ +πατριαί +τῆς +γῆς +ὑμῖν +πρῶτον +ὁ +Θεός +ἀναστήσας +τόν +Παῖδα +αὐτοῦ +ἀπέστειλεν +αὐτόν +εὐλογοῦντα +ὑμᾶς +ἐν +τῷ +ἀποστρέφειν +ἕκαστον +ἀπό +τῶν +πονηριῶν +ὑμῶν +δέ +Λαλούντων +αὐτῶν +πρός +τόν +λαόν +ἐπέστησαν +αὐτοῖς +οἱ +ἱερεῖς +καί +ὁ +στρατηγός +τοῦ +ἱεροῦ +καί +οἱ +Σαδδουκαῖοι +διαπονούμενοι +διά +τό +διδάσκειν +αὐτούς +τόν +λαόν +καί +καταγγέλλειν +ἐν +τῷ +Ἰησοῦ +τήν +ἀνάστασιν +τήν +ἐκ +νεκρῶν +καί +ἐπέβαλον +αὐτοῖς +τάς +χεῖρας +καί +ἔθεντο +εἰς +τήρησιν +εἰς +τήν +αὔριον +γάρ +ἦν +ἑσπέρα +ἤδη +δέ +πολλοί +τῶν +ἀκουσάντων +τόν +λόγον +ἐπίστευσαν +καί +ἐγενήθη +ἀριθμός +τῶν +ἀνδρῶν +ὡς +χιλιάδες +πέντε +δέ +Ἐγένετο +ἐπί +τήν +αὔριον +συναχθῆναι +αὐτῶν +τούς +ἄρχοντας +καί +τούς +πρεσβυτέρους +καί +τούς +γραμματεῖς +ἐν +Ἰερουσαλήμ +καί +Ἄννας +ὁ +ἀρχιερεύς +καί +Καϊάφας +καί +Ἰωάνης +καί +Ἀλέξανδρος +καί +ὅσοι +ἦσαν +ἐκ +γένους +ἀρχιερατικοῦ +καί +στήσαντες +αὐτούς +ἐν +τῷ +μέσῳ +ἐπυνθάνοντο +Ἐν +ποίᾳ +δυνάμει +ἤ +ἐν +ποίῳ +ὀνόματι +ἐποιήσατε +τοῦτο +ὑμεῖς +τότε +Πέτρος +πλησθείς +Πνεύματος +Ἁγίου +εἶπεν +πρός +αὐτούς +Ἄρχοντες +τοῦ +λαοῦ +καί +πρεσβύτεροι +εἰ +ἡμεῖς +σήμερον +ἀνακρινόμεθα +ἐπί +εὐεργεσίᾳ +ἀνθρώπου +ἀσθενοῦς +ἐν +τίνι +οὗτος +σέσωσται +γνωστόν +ἔστω +πᾶσιν +ὑμῖν +καί +παντί +τῷ +λαῷ +Ἰσραήλ +ὅτι +ἐν +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +τοῦ +Ναζωραίου +ὅν +ὑμεῖς +ἐσταυρώσατε +ὅν +ὁ +Θεός +ἤγειρεν +ἐκ +νεκρῶν +ἐν +τούτῳ +οὗτος +παρέστηκεν +ἐνώπιον +ὑμῶν +ὑγιής +οὗτος +ἐστιν +ὁ +λίθος +ὁ +ἐξουθενηθείς +ὑφ’ +ὑμῶν +τῶν +οἰκοδόμων +ὁ +γενόμενος +εἰς +κεφαλήν +γωνίας +καί +οὐκ +ἔστιν +ἐν +ἄλλῳ +οὐδενί +ἡ +σωτηρία +γάρ +οὐδέ +ἐστιν +ὑπό +τόν +οὐρανόν +ὄνομα +ἕτερον +τό +δεδομένον +ἐν +ἀνθρώποις +ἐν +ᾧ +δεῖ +σωθῆναι +ἡμᾶς +δέ +Θεωροῦντες +τήν +τοῦ +Πέτρου +καί +Ἰωάνου +παρρησίαν +καί +καταλαβόμενοι +ὅτι +ἄνθρωποι +ἀγράμματοι +εἰσιν +καί +ἰδιῶται +ἐθαύμαζον +τε +ἐπεγίνωσκον +αὐτούς +ὅτι +σύν +τῷ +Ἰησοῦ +ἦσαν +τε +βλέποντες +τόν +ἄνθρωπον +τόν +τεθεραπευμένον +σύν +αὐτοῖς +ἑστῶτα +οὐδέν +ἀντειπεῖν +εἶχον +δέ +κελεύσαντες +αὐτούς +ἔξω +τοῦ +συνεδρίου +ἀπελθεῖν +συνέβαλλον +πρός +ἀλλήλους +λέγοντες +Τί +ποιήσωμεν +τοῖς +ἀνθρώποις +τούτοις +γάρ +μέν +ὅτι +γνωστόν +σημεῖον +γέγονεν +δι’ +αὐτῶν +πᾶσιν +τοῖς +κατοικοῦσιν +Ἱερουσαλήμ +φανερόν +καί +οὐ +δυνάμεθα +ἀρνεῖσθαι +ἀλλ’ +ἵνα +μή +ἐπί +πλεῖον +διανεμηθῇ +εἰς +τόν +λαόν +ἀπειλησώμεθα +αὐτοῖς +μηκέτι +λαλεῖν +ἐπί +τῷ +ὀνόματι +τούτῳ +μηδενί +ἀνθρώπων +καί +καλέσαντες +αὐτούς +παρήγγειλαν +καθόλου +μή +φθέγγεσθαι +μηδέ +διδάσκειν +ἐπί +τῷ +ὀνόματι +τοῦ +Ἰησοῦ +δέ +ὁ +Πέτρος +καί +Ἰωάνης +ἀποκριθέντες +εἶπον +πρός +αὐτούς +Εἰ +δίκαιον +ἐστιν +ἐνώπιον +τοῦ +Θεοῦ +ὑμῶν +ἀκούειν +μᾶλλον +ἤ +τοῦ +Θεοῦ +κρίνατε +γάρ +οὐ +δυνάμεθα +ἡμεῖς +ἅ +εἴδαμεν +καί +ἠκούσαμεν +μή +λαλεῖν +δέ +οἱ +προσαπειλησάμενοι +ἀπέλυσαν +αὐτούς +μηδέν +εὑρίσκοντες +τό +πῶς +κολάσωνται +αὐτούς +διά +τόν +λαόν +ὅτι +πάντες +ἐδόξαζον +τόν +Θεόν +ἐπί +τῷ +γεγονότι +γάρ +ἐτῶν +πλειόνων +τεσσεράκοντα +ἦν +ὁ +ἄνθρωπος +ἐφ’ +ὅν +γεγόνει +τό +σημεῖον +τοῦτο +τῆς +ἰάσεως +δέ +Ἀπολυθέντες +ἦλθον +πρός +τούς +ἰδίους +καί +ἀπήγγειλαν +ὅσα +πρός +αὐτούς +οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +εἶπαν +δέ +οἱ +ἀκούσαντες +ὁμοθυμαδόν +ἦραν +φωνήν +πρός +τόν +Θεόν +καί +εἶπαν +Δέσποτα +σύ +ὁ +ποιήσας +τόν +οὐρανόν +καί +τήν +γῆν +καί +τήν +θάλασσαν +καί +πάντα +τά +ἐν +αὐτοῖς +ὁ +τοῦ +πατρός +ἡμῶν +διά +Πνεύματος +Ἁγίου +στόματος +Δαυείδ +παιδός +σου +εἰπών +Ἵνα +τί +ἐφρύαξαν +ἔθνη +καί +λαοί +ἐμελέτησαν +κενά +παρέστησαν +οἱ +βασιλεῖς +τῆς +γῆς +καί +οἱ +ἄρχοντες +συνήχθησαν +ἐπί +τό +αὐτό +κατά +τοῦ +Κυρίου +καί +κατά +τοῦ +Χριστοῦ +αὐτοῦ +γάρ +συνήχθησαν +ἐπ’ +ἀληθείας +ἐν +τῇ +πόλει +ταύτῃ +ἐπί +τόν +ἅγιον +Παῖδα +σου +Ἰησοῦν +ὅν +ἔχρισας +τε +Ἠρῴδης +καί +Πόντιος +Πειλᾶτος +σύν +ἔθνεσιν +καί +λαοῖς +Ἰσραήλ +ποιῆσαι +ὅσα +γενέσθαι +ἡ +χείρ +σου +καί +ἡ +βουλή +προώρισεν +καί +Κύριε +τά +νῦν +ἔπιδε +ἐπί +τάς +ἀπειλάς +αὐτῶν +καί +δός +τοῖς +δούλοις +σου +μετά +παρρησίας +πάσης +λαλεῖν +τόν +λόγον +σου +ἐν +τῷ +τήν +χεῖρα +ἐκτείνειν +σε +εἰς +ἴασιν +καί +σημεῖα +καί +τέρατα +γίνεσθαι +διά +τοῦ +ὀνόματος +τοῦ +ἁγίου +Παιδός +σου +Ἰησοῦ +καί +δεηθέντων +αὐτῶν +ἐσαλεύθη +ὁ +τόπος +ἐν +ᾧ +ἦσαν +συνηγμένοι +καί +ἐπλήσθησαν +ἅπαντες +τοῦ +Ἁγίου +Πνεύματος +καί +ἐλάλουν +τόν +λόγον +τοῦ +Θεοῦ +μετά +παρρησίας +δέ +Τοῦ +πλήθους +τῶν +πιστευσάντων +καρδία +καί +ψυχή +ἦν +μία +καί +οὐδέ +εἷς +τι +τῶν +ὑπαρχόντων +αὐτῷ +ἴδιον +εἶναι +ἔλεγεν +ἀλλ’ +ἦν +αὐτοῖς +πάντα +κοινά +καί +δυνάμει +μεγάλῃ +ἀπεδίδουν +τό +μαρτύριον +τοῦ +Κυρίου +Ἰησοῦ +τῆς +ἀναστάσεως +οἱ +ἀπόστολοι +τε +χάρις +μεγάλη +ἦν +ἐπί +πάντας +αὐτούς +γάρ +οὐδέ +ἐνδεής +τις +ἦν +ἐν +αὐτοῖς +γάρ +ὅσοι +κτήτορες +χωρίων +ἤ +οἰκιῶν +ὑπῆρχον +πωλοῦντες +ἔφερον +τάς +τιμάς +τῶν +πιπρασκομένων +καί +ἐτίθουν +παρά +τούς +πόδας +τῶν +ἀποστόλων +δέ +διεδίδετο +ἑκάστῳ +καθότι +ἄν +τις +χρείαν +εἶχεν +δέ +Ἰωσήφ +ὁ +ἐπικληθείς +Βαρνάβας +ἀπό +τῶν +ἀποστόλων +ὅ +ἐστιν +μεθερμηνευόμενον +Υἱός +παρακλήσεως +Λευείτης +Κύπριος +τῷ +γένει +ὑπάρχοντος +αὐτῷ +ἀγροῦ +πωλήσας +ἤνεγκεν +τό +χρῆμα +καί +ἔθηκεν +πρός +τούς +πόδας +τῶν +ἀποστόλων +δέ +Ἀνήρ +τις +Ἀνανίας +ὀνόματι +σύν +Σαπφείρῃ +τῇ +γυναικί +αὐτοῦ +ἐπώλησεν +κτῆμα +καί +ἐνοσφίσατο +ἀπό +τῆς +τιμῆς +συνειδυίης +καί +τῆς +γυναικός +καί +ἐνέγκας +μέρος +τι +παρά +τούς +πόδας +τῶν +ἀποστόλων +ἔθηκεν +δέ +εἶπεν +ὁ +Πέτρος +Ἀνανία +διά +τί +ἐπλήρωσεν +ὁ +Σατανᾶς +τήν +καρδίαν +σου +ψεύσασθαι +σε +τό +Πνεῦμα +τό +Ἅγιον +καί +νοσφίσασθαι +ἀπό +τῆς +τιμῆς +τοῦ +χωρίου +οὐχί +μένον +σοί +ἔμενεν +καί +πραθέν +ἐν +τῇ +σῇ +ἐξουσίᾳ +ὑπῆρχεν +τί +ὅτι +ἔθου +ἐν +τῇ +καρδίᾳ +σου +τό +πρᾶγμα +τοῦτο +οὐκ +ἐψεύσω +ἀνθρώποις +ἀλλά +τῷ +Θεῷ +δέ +ὁ +Ἀνανίας +ἀκούων +τούς +λόγους +τούτους +πεσών +ἐξέψυξεν +καί +ἐγένετο +φόβος +μέγας +ἐπί +πάντας +τούς +ἀκούοντας +δέ +ἀναστάντες +οἱ +νεώτεροι +συνέστειλαν +αὐτόν +καί +ἐξενέγκαντες +ἔθαψαν +δέ +Ἐγένετο +ὡς +ὡρῶν +τριῶν +διάστημα +καί +ἡ +γυνή +αὐτοῦ +μή +εἰδυῖα +τό +γεγονός +εἰσῆλθεν +δέ +ἀπεκρίθη +πρός +αὐτήν +Πέτρος +Εἰπέ +μοι +εἰ +τοσούτου +τό +χωρίον +ἀπέδοσθε +δέ +ἡ +εἶπεν +Ναί +τοσούτου +δέ +ὁ +Πέτρος +πρός +αὐτήν +Τί +ὅτι +συνεφωνήθη +ὑμῖν +πειράσαι +τό +Πνεῦμα +Κυρίου +ἰδού +οἱ +πόδες +τῶν +θαψάντων +τόν +ἄνδρα +σου +ἐπί +τῇ +θύρᾳ +καί +ἐξοίσουσιν +σε +δέ +ἔπεσεν +παραχρῆμα +πρός +τούς +πόδας +αὐτοῦ +καί +ἐξέψυξεν +δέ +εἰσελθόντες +οἱ +νεανίσκοι +εὗρον +αὐτήν +νεκράν +καί +ἐξενέγκαντες +ἔθαψαν +πρός +τόν +ἄνδρα +αὐτῆς +Καί +ἐγένετο +φόβος +μέγας +ἐφ’ +ὅλην +τήν +ἐκκλησίαν +καί +ἐπί +πάντας +τούς +ἀκούοντας +ταῦτα +δέ +Διά +τῶν +χειρῶν +τῶν +ἀποστόλων +ἐγίνετο +σημεῖα +καί +τέρατα +πολλά +ἐν +τῷ +λαῷ +καί +ἦσαν +ὁμοθυμαδόν +πάντες +ἐν +τῇ +στοᾷ +Σολομῶντος +δέ +τῶν +λοιπῶν +οὐδείς +ἐτόλμα +κολλᾶσθαι +αὐτοῖς +ἀλλ’ +ἐμεγάλυνεν +αὐτούς +ὁ +λαός +δέ +μᾶλλον +προσετίθεντο +πιστεύοντες +τῷ +Κυρίῳ +πλήθη +τε +ἀνδρῶν +καί +γυναικῶν +ὥστε +καί +εἰς +τάς +πλατείας +ἐκφέρειν +τούς +ἀσθενεῖς +καί +τιθέναι +ἐπί +κλιναρίων +καί +κραβάττων +ἵνα +ἐρχομένου +Πέτρου +κἄν +ἡ +σκιά +ἐπισκιάσῃ +τινί +αὐτῶν +δέ +συνήρχετο +καί +τό +πλῆθος +τῶν +πέριξ +Ἱερουσαλήμ +πόλεων +φέροντες +ἀσθενεῖς +καί +ὀχλουμένους +ὑπό +πνευμάτων +ἀκαθάρτων +οἵτινες +ἅπαντες +ἐθεραπεύοντο +δέ +Ἀναστάς +ὁ +ἀρχιερεύς +καί +πάντες +οἱ +σύν +αὐτῷ +ἡ +οὖσα +αἵρεσις +τῶν +Σαδδουκαίων +ἐπλήσθησαν +ζήλου +καί +ἐπέβαλον +τάς +χεῖρας +ἐπί +τούς +ἀποστόλους +καί +ἔθεντο +αὐτούς +ἐν +τηρήσει +δημοσίᾳ +δέ +Ἄγγελος +Κυρίου +διά +νυκτός +ἤνοιξε +τάς +θύρας +τῆς +φυλακῆς +τε +ἐξαγαγών +αὐτούς +εἶπεν +Πορεύεσθε +καί +σταθέντες +λαλεῖτε +ἐν +τῷ +ἱερῷ +τῷ +λαῷ +πάντα +τά +ῥήματα +τῆς +Ζωῆς +ταύτης +δέ +ἀκούσαντες +εἰσῆλθον +ὑπό +τόν +ὄρθρον +εἰς +τό +ἱερόν +καί +ἐδίδασκον +δέ +Παραγενόμενος +ὁ +ἀρχιερεύς +καί +οἱ +σύν +αὐτῷ +συνεκάλεσαν +τό +συνέδριον +καί +πᾶσαν +τήν +γερουσίαν +τῶν +υἱῶν +Ἰσραήλ +καί +ἀπέστειλαν +εἰς +τό +δεσμωτήριον +ἀχθῆναι +αὐτούς +δέ +οἱ +παραγενόμενοι +ὑπηρέται +οὐχ +εὗρον +αὐτούς +ἐν +τῇ +φυλακῇ +δέ +ἀναστρέψαντες +ἀπήγγειλαν +λέγοντες +ὅτι +εὕρομεν +Τό +δεσμωτήριον +κεκλεισμένον +ἐν +πάσῃ +ἀσφαλείᾳ +καί +τούς +φύλακας +ἑστῶτας +ἐπί +τῶν +θυρῶν +δέ +ἀνοίξαντες +ἔσω +οὐδένα +εὕρομεν +δέ +ὡς +ἤκουσαν +τούς +λόγους +τούτους +τε +ὅ +στρατηγός +τοῦ +ἱεροῦ +καί +οἱ +ἀρχιερεῖς +διηπόρουν +περί +αὐτῶν +ἄν +τί +γένοιτο +τοῦτο +δέ +παραγενόμενος +τις +ἀπήγγειλεν +αὐτοῖς +ὅτι +Ἰδού +οἱ +ἄνδρες +οὕς +ἔθεσθε +ἐν +τῇ +φυλακῇ +εἰσίν +ἑστῶτες +ἐν +τῷ +ἱερῷ +καί +διδάσκοντες +τόν +λαόν +Τότε +ἀπελθών +ὁ +στρατηγός +σύν +τοῖς +ὑπηρέταις +ἦγεν +αὐτούς +οὐ +μετά +βίας +γάρ +ἐφοβοῦντο +τόν +λαόν +μή +λιθασθῶσιν +δέ +ἀγαγόντες +αὐτούς +ἔστησαν +ἐν +τῷ +συνεδρίῳ +καί +ἐπηρώτησεν +αὐτούς +ὁ +ἀρχιερεύς +λέγων +Παραγγελίᾳ +παρηγγείλαμεν +ὑμῖν +μή +διδάσκειν +ἐπί +τῷ +ὀνόματι +τούτῳ +καί +ἰδού +πεπληρώκατε +τήν +Ἱερουσαλήμ +τῆς +διδαχῆς +ὑμῶν +καί +βούλεσθε +ἐπαγαγεῖν +ἐφ’ +ἡμᾶς +τό +αἷμα +τοῦ +ἀνθρώπου +τούτου +δέ +ἀποκριθείς +Πέτρος +καί +οἱ +ἀπόστολοι +εἶπαν +δεῖ +Πειθαρχεῖν +Θεῷ +μᾶλλον +ἤ +ἀνθρώποις +ὁ +Θεός +τῶν +πατέρων +ἡμῶν +ἤγειρεν +Ἰησοῦν +ὅν +ὑμεῖς +διεχειρίσασθε +κρεμάσαντες +ἐπί +ξύλου +τοῦτον +ὁ +Θεός +Ἀρχηγόν +καί +Σωτῆρα +ὕψωσεν +τῇ +δεξιᾷ +αὐτοῦ +τοῦ +δοῦναι +μετάνοιαν +τῷ +Ἰσραήλ +καί +ἄφεσιν +ἁμαρτιῶν +καί +ἡμεῖς +ἐσμεν +μάρτυρες +τῶν +ῥημάτων +τούτων +καί +τό +Πνεῦμα +τό +Ἅγιον +ὅ +ἔδωκεν +ὁ +Θεός +τοῖς +πειθαρχοῦσιν +αὐτῷ +δέ +οἱ +ἀκούσαντες +διεπρίοντο +καί +ἐβούλοντο +ἀνελεῖν +αὐτούς +δέ +Ἀναστάς +τις +ἐν +τῷ +συνεδρίῳ +Φαρισαῖος +ὀνόματι +Γαμαλιήλ +νομοδιδάσκαλος +τίμιος +παντί +τῷ +λαῷ +ἐκέλευσεν +ἔξω +βραχύ +τούς +ἀνθρώπους +ποιῆσαι +τε +εἶπεν +πρός +αὐτούς +Ἄνδρες +Ἰσραηλεῖται +προσέχετε +ἑαυτοῖς +ἐπί +τοῖς +ἀνθρώποις +τούτοις +τί +πράσσειν +μέλλετε +γάρ +πρό +τούτων +τῶν +ἡμερῶν +ἀνέστη +Θευδᾶς +λέγων +εἶναι +τινα +ἑαυτόν +ᾧ +προσεκλίθη +ἀνδρῶν +ἀριθμός +ὡς +τετρακοσίων +ὅς +ἀνῃρέθη +καί +πάντες +ὅσοι +ἐπείθοντο +αὐτῷ +διελύθησαν +καί +ἐγένοντο +εἰς +οὐδέν +μετά +τοῦτον +ἀνέστη +Ἰούδας +ὁ +Γαλιλαῖος +ἐν +ταῖς +ἡμέραις +τῆς +ἀπογραφῆς +καί +ἀπέστησεν +λαόν +ὀπίσω +αὐτοῦ +κἀκεῖνος +ἀπώλετο +καί +πάντες +ὅσοι +ἐπείθοντο +αὐτῷ +διεσκορπίσθησαν +καί +τά +νῦν +λέγω +ὑμῖν +ἀπόστητε +ἀπό +τῶν +ἀνθρώπων +τούτων +καί +ἄφετε +αὐτούς +ὅτι +ἐάν +ᾖ +ἐξ +ἀνθρώπων +ἡ +βουλή +αὕτη +ἤ +τό +ἔργον +τοῦτο +καταλυθήσεται +δέ +εἰ +ἐκ +Θεοῦ +ἐστιν +οὐ +δυνήσεσθε +καταλῦσαι +αὐτούς +μή +ποτε +καί +θεομάχοι +εὑρεθῆτε +δέ +ἐπείσθησαν +αὐτῷ +καί +προσκαλεσάμενοι +τούς +ἀποστόλους +δείραντες +παρήγγειλαν +μή +λαλεῖν +ἐπί +τῷ +ὀνόματι +τοῦ +Ἰησοῦ +καί +ἀπέλυσαν +μέν +οὖν +Οἱ +ἐπορεύοντο +χαίροντες +ἀπό +προσώπου +τοῦ +συνεδρίου +ὅτι +κατηξιώθησαν +ὑπέρ +τοῦ +Ὀνόματος +ἀτιμασθῆναι +τε +πᾶσαν +ἡμέραν +ἐν +τῷ +ἱερῷ +καί +κατ’ +οἶκον +οὐκ +ἐπαύοντο +διδάσκοντες +καί +εὐαγγελιζόμενοι +τόν +Χριστόν +Ἰησοῦν +δέ +Ἐν +ταῖς +ἡμέραις +ταύταις +πληθυνόντων +τῶν +μαθητῶν +ἐγένετο +γογγυσμός +τῶν +Ἑλληνιστῶν +πρός +τούς +Ἑβραίους +ὅτι +παρεθεωροῦντο +ἐν +τῇ +διακονίᾳ +τῇ +καθημερινῇ +αἱ +χῆραι +αὐτῶν +δέ +οἱ +δώδεκα +προσκαλεσάμενοι +τό +πλῆθος +τῶν +μαθητῶν +εἶπαν +Οὐκ +ἀρεστόν +ἐστιν +ἡμᾶς +καταλείψαντας +τόν +λόγον +τοῦ +Θεοῦ +διακονεῖν +τραπέζαις +δέ +ἀδελφοί +ἐπισκέψασθε +ἄνδρας +ἐξ +ὑμῶν +μαρτυρουμένους +ἑπτά +πλήρεις +Πνεύματος +καί +σοφίας +οὕς +καταστήσομεν +ἐπί +τῆς +χρείας +ταύτης +δέ +ἡμεῖς +τῇ +προσευχῇ +καί +τῇ +διακονίᾳ +τοῦ +λόγου +προσκαρτερήσομεν +καί +ἤρεσεν +ὁ +λόγος +ἐνώπιον +παντός +τοῦ +πλήθους +καί +ἐξελέξαντο +Στέφανον +ἄνδρα +πλήρη +πίστεως +καί +Πνεύματος +Ἁγίου +καί +Φίλιππον +καί +Πρόχορον +καί +Νικάνορα +καί +Τίμωνα +καί +Παρμενᾶν +καί +Νικόλαον +προσήλυτον +Ἀντιοχέα +οὕς +ἔστησαν +ἐνώπιον +τῶν +ἀποστόλων +καί +προσευξάμενοι +ἐπέθηκαν +αὐτοῖς +τάς +χεῖρας +Καί +ὁ +λόγος +τοῦ +Θεοῦ +ηὔξανεν +καί +ἐπληθύνετο +ὁ +ἀριθμός +τῶν +μαθητῶν +ἐν +Ἱερουσαλήμ +σφόδρα +τε +πολύς +ὄχλος +τῶν +ἱερέων +ὑπήκουον +τῇ +πίστει +δέ +Στέφανος +πλήρης +χάριτος +καί +δυνάμεως +ἐποίει +τέρατα +καί +σημεῖα +μεγάλα +ἐν +τῷ +λαῷ +δέ +ἀνέστησαν +τινες +τῶν +ἐκ +τῆς +συναγωγῆς +τῆς +λεγομένης +Λιβερτίνων +καί +Κυρηναίων +καί +Ἀλεξανδρέων +καί +τῶν +ἀπό +Κιλικίας +καί +Ἀσίας +συνζητοῦντες +τῷ +Στεφάνῳ +καί +οὐκ +ἴσχυον +ἀντιστῆναι +τῇ +σοφίᾳ +καί +τῷ +Πνεύματι +ᾧ +ἐλάλει +τότε +ὑπέβαλον +ἄνδρας +λέγοντας +ὅτι +Ἀκηκόαμεν +αὐτοῦ +λαλοῦντος +ῥήματα +βλάσφημα +εἰς +Μωϋσῆν +καί +τόν +Θεόν +τε +συνεκίνησαν +τόν +λαόν +καί +τούς +πρεσβυτέρους +καί +τούς +γραμματεῖς +καί +ἐπιστάντες +συνήρπασαν +αὐτόν +καί +ἤγαγον +εἰς +τό +συνέδριον +τε +ἔστησαν +μάρτυρας +ψευδεῖς +λέγοντας +Ὁ +ἄνθρωπος +οὗτος +οὐ +παύεται +λαλῶν +ῥήματα +κατά +τοῦ +τόπου +τοῦ +ἁγίου +καί +τοῦ +νόμου +γάρ +ἀκηκόαμεν +αὐτοῦ +λέγοντος +ὅτι +Ἰησοῦς +ὁ +Ναζωραῖος +οὗτος +καταλύσει +τόν +τόπον +τοῦτον +καί +ἀλλάξει +τά +ἔθη +ἅ +παρέδωκεν +ἡμῖν +Μωϋσῆς +καί +ἀτενίσαντες +εἰς +αὐτόν +πάντες +οἱ +καθεζόμενοι +ἐν +τῷ +συνεδρίῳ +εἶδον +τό +πρόσωπον +αὐτοῦ +ὡσεί +πρόσωπον +ἀγγέλου +δέ +Εἶπεν +ὁ +ἀρχιερεύς +Εἰ +ταῦτα +οὕτως +ἔχει +δέ +ὁ +ἔφη +Ἄνδρες +ἀδελφοί +καί +πατέρες +ἀκούσατε +Ὁ +Θεός +τῆς +δόξης +ὤφθη +τῷ +πατρί +ἡμῶν +Ἀβραάμ +ὄντι +ἐν +τῇ +Μεσοποταμίᾳ +πρίν +ἤ +κατοικῆσαι +αὐτόν +ἐν +Χαρράν +καί +εἶπεν +πρός +αὐτόν +Ἔξελθε +ἐκ +τῆς +γῆς +σου +καί +τῆς +συγγενείας +σου +καί +δεῦρο +εἰς +τήν +γῆν +ἄν +ἥν +σοι +δείξω +τότε +ἐξελθών +ἐκ +γῆς +Χαλδαίων +κατῴκησεν +ἐν +Χαρράν +κἀκεῖθεν +μετά +τό +ἀποθανεῖν +τόν +πατέρα +αὐτοῦ +μετῴκισεν +αὐτόν +εἰς +τήν +γῆν +ταύτην +εἰς +ἥν +ὑμεῖς +νῦν +κατοικεῖτε +καί +οὐκ +ἔδωκεν +αὐτῷ +κληρονομίαν +ἐν +αὐτῇ +οὐδέ +βῆμα +ποδός +καί +ἐπηγγείλατο +δοῦναι +αὐτῷ +εἰς +κατάσχεσιν +αὐτήν +καί +τῷ +σπέρματι +αὐτοῦ +μετ’ +αὐτόν +οὐκ +ὄντος +αὐτῷ +τέκνου +δέ +ἐλάλησεν +οὕτως +ὁ +Θεός +ὅτι +ἔσται +τό +σπέρμα +αὐτοῦ +πάροικον +ἐν +γῇ +ἀλλοτρίᾳ +καί +δουλώσουσιν +καί +κακώσουσιν +αὐτό +ἔτη +τετρακόσια +καί +τό +ἔθνος +ἐάν +ᾧ +δουλεύσουσιν +κρινῶ +ἐγώ +ὁ +Θεός +εἶπεν +καί +μετά +ταῦτα +ἐξελεύσονται +καί +λατρεύσουσιν +μοι +ἐν +τῷ +τόπῳ +τούτῳ +καί +ἔδωκεν +αὐτῷ +διαθήκην +περιτομῆς +καί +οὕτως +ἐγέννησεν +τόν +Ἰσαάκ +καί +περιέτεμεν +αὐτόν +τῇ +ἡμέρᾳ +τῇ +ὀγδόῃ +καί +Ἰσαάκ +τόν +Ἰακώβ +καί +Ἰακώβ +τούς +δώδεκα +πατριάρχας +Καί +οἱ +πατριάρχαι +ζηλώσαντες +τόν +Ἰωσήφ +ἀπέδοντο +εἰς +Αἴγυπτον +καί +ἦν +ὁ +Θεός +μετ’ +αὐτοῦ +καί +ἐξείλατο +αὐτόν +ἐκ +πασῶν +τῶν +θλίψεων +αὐτοῦ +καί +ἔδωκεν +αὐτῷ +χάριν +καί +σοφίαν +ἐναντίον +Φαραώ +βασιλέως +Αἰγύπτου +καί +κατέστησεν +αὐτόν +ἡγούμενον +ἐπ’ +Αἴγυπτον +καί +ὅλον +τόν +οἶκον +αὐτοῦ +δέ +ἦλθεν +λιμός +ἐφ’ +ὅλην +τήν +Αἴγυπτον +καί +Χανάαν +καί +θλῖψις +μεγάλη +καί +οὐχ +ηὕρισκον +χορτάσματα +οἱ +πατέρες +ἡμῶν +δέ +Ἰακώβ +ἀκούσας +ὄντα +σιτία +εἰς +Αἴγυπτον +ἐξαπέστειλεν +τούς +πατέρας +ἡμῶν +πρῶτον +καί +ἐν +τῷ +δευτέρῳ +ἐγνωρίσθη +Ἰωσήφ +τοῖς +ἀδελφοῖς +αὐτοῦ +καί +φανερόν +ἐγένετο +τῷ +Φαραώ +τό +γένος +Ἰωσήφ +δέ +ἀποστείλας +Ἰωσήφ +μετεκαλέσατο +Ἰακώβ +τόν +πατέρα +αὐτοῦ +καί +πᾶσαν +τήν +συγγένειαν +ἐν +ψυχαῖς +ἑβδομήκοντα +πέντε +καί +κατέβη +Ἰακώβ +εἰς +Αἴγυπτον +καί +ἐτελεύτησεν +αὐτός +καί +οἱ +πατέρες +ἡμῶν +καί +μετετέθησαν +εἰς +Συχέμ +καί +ἐτέθησαν +ἐν +τῷ +μνήματι +ᾧ +ὠνήσατο +Ἀβραάμ +τιμῆς +ἀργυρίου +παρά +τῶν +υἱῶν +Ἐμμώρ +ἐν +Συχέμ +δέ +Καθώς +ἤγγιζεν +ὁ +χρόνος +τῆς +ἐπαγγελίας +ἧς +ὡμολόγησεν +ὁ +Θεός +τῷ +Ἀβραάμ +ὁ +λαός +ηὔξησεν +καί +ἐπληθύνθη +ἐν +Αἰγύπτῳ +ἄχρι +οὗ +ἀνέστη +ἐπ’ +Αἴγυπτον +βασιλεύς +ἕτερος +ὅς +οὐκ +ᾔδει +τόν +Ἰωσήφ +οὗτος +κατασοφισάμενος +τό +γένος +ἡμῶν +ἐκάκωσεν +τούς +πατέρας +τοῦ +ποιεῖν +τά +βρέφη +αὐτῶν +ἔκθετα +εἰς +τό +μή +ζωογονεῖσθαι +Ἐν +ᾧ +καιρῷ +ἐγεννήθη +Μωϋσῆς +καί +ἦν +ἀστεῖος +τῷ +Θεῷ +ὅς +ἀνετράφη +μῆνας +τρεῖς +ἐν +τῷ +οἴκῳ +τοῦ +πατρός +δέ +ἐκτεθέντος +αὐτοῦ +ἀνείλατο +αὐτόν +ἡ +θυγάτηρ +Φαραώ +καί +ἀνεθρέψατο +αὐτόν +ἑαυτῇ +εἰς +υἱόν +καί +ἐπαιδεύθη +Μωϋσῆς +πάσῃ +σοφίᾳ +Αἰγυπτίων +δέ +ἦν +δυνατός +ἐν +λόγοις +καί +ἔργοις +αὐτοῦ +δέ +Ὡς +ἐπληροῦτο +αὐτῷ +τεσσερακονταέτης +χρόνος +ἀνέβη +ἐπί +τήν +καρδίαν +αὐτοῦ +ἐπισκέψασθαι +τούς +ἀδελφούς +αὐτοῦ +τούς +υἱούς +Ἰσραήλ +καί +ἰδών +τινα +ἀδικούμενον +ἠμύνατο +καί +ἐποίησεν +ἐκδίκησιν +τῷ +καταπονουμένῳ +πατάξας +τόν +Αἰγύπτιον +δέ +ἐνόμιζεν +συνιέναι +τούς +ἀδελφούς +ὅτι +ὁ +Θεός +διά +χειρός +αὐτοῦ +δίδωσιν +σωτηρίαν +αὐτοῖς +δέ +οἱ +οὐ +συνῆκαν +τε +τῇ +ἐπιούσῃ +ἡμέρᾳ +ὤφθη +αὐτοῖς +μαχομένοις +καί +συνήλλασσεν +αὐτούς +εἰς +εἰρήνην +εἰπών +Ἄνδρες +ἀδελφοί +ἐστε +ἵνα +τί +ἀδικεῖτε +ἀλλήλους +δέ +ὁ +ἀδικῶν +τόν +πλησίον +ἀπώσατο +αὐτόν +εἰπών +Τίς +σε +κατέστησεν +ἄρχοντα +καί +δικαστήν +ἐφ’ +ἡμῶν +μή +ἀνελεῖν +με +σύ +θέλεις +ὅν +τρόπον +ἀνεῖλες +ἐχθές +τόν +Αἰγύπτιον +δέ +ἔφυγεν +Μωϋσῆς +ἐν +τῷ +λόγῳ +τούτῳ +καί +ἐγένετο +πάροικος +ἐν +γῇ +Μαδιάμ +οὗ +ἐγέννησεν +υἱούς +δύο +Καί +πληρωθέντων +ἐτῶν +τεσσεράκοντα +ὤφθη +αὐτῷ +ἐν +τῇ +ἐρήμῳ +τοῦ +ὄρους +Σινᾶ +ἄγγελος +ἐν +φλογί +πυρός +βάτου +δέ +ὁ +Μωϋσῆς +ἰδών +ἐθαύμαζεν +τό +ὅραμα +δέ +προσερχομένου +αὐτοῦ +κατανοῆσαι +ἐγένετο +φωνή +Κυρίου +Ἐγώ +ὁ +Θεός +τῶν +πατέρων +σου +ὁ +Θεός +Ἀβραάμ +καί +Ἰσαάκ +καί +Ἰακώβ +δέ +ἔντρομος +γενόμενος +Μωϋσῆς +οὐκ +ἐτόλμα +κατανοῆσαι +δέ +εἶπεν +αὐτῷ +ὁ +Κύριος +Λῦσον +τό +ὑπόδημα +τῶν +ποδῶν +σου +γάρ +ὁ +τόπος +ἐφ’ +ᾧ +ἕστηκας +γῆ +ἁγία +ἐστίν +ἰδών +εἶδον +τήν +κάκωσιν +τοῦ +λαοῦ +μου +τοῦ +ἐν +Αἰγύπτῳ +καί +τοῦ +στεναγμοῦ +αὐτοῦ +ἤκουσα +καί +κατέβην +ἐξελέσθαι +αὐτούς +καί +νῦν +δεῦρο +ἀποστείλω +σε +εἰς +Αἴγυπτον +Τοῦτον +τόν +Μωϋσῆν +ὅν +ἠρνήσαντο +εἰπόντες +Τίς +σε +κατέστησεν +ἄρχοντα +καί +δικαστήν +τοῦτον +ὁ +Θεός +καί +ἄρχοντα +καί +λυτρωτήν +ἀπέσταλκεν +σύν +χειρί +ἀγγέλου +τοῦ +ὀφθέντος +αὐτῷ +ἐν +τῇ +βάτῳ +οὗτος +ἐξήγαγεν +αὐτούς +ποιήσας +τέρατα +καί +σημεῖα +ἐν +γῇ +Αἰγύπτῳ +καί +ἐν +Ἐρυθρᾷ +Θαλάσσῃ +καί +ἐν +τῇ +ἐρήμῳ +ἔτη +τεσσεράκοντα +οὗτος +ἐστιν +ὁ +Μωϋσῆς +ὁ +εἴπας +τοῖς +υἱοῖς +Ἰσραήλ +Προφήτην +ὑμῖν +ἀναστήσει +ὁ +Θεός +ἐκ +τῶν +ἀδελφῶν +ὑμῶν +ὡς +ἐμέ +οὗτος +ἐστιν +ὁ +γενόμενος +ἐν +τῇ +ἐκκλησίᾳ +ἐν +τῇ +ἐρήμῳ +μετά +τοῦ +ἀγγέλου +τοῦ +λαλοῦντος +αὐτῷ +ἐν +τῷ +ὄρει +Σινᾶ +καί +τῶν +πατέρων +ἡμῶν +ὅς +ἐδέξατο +λόγια +ζῶντα +δοῦναι +ὑμῖν +ᾧ +οὐκ +ἠθέλησαν +ὑπήκοοι +γενέσθαι +οἱ +πατέρες +ἡμῶν +ἀλλά +ἀπώσαντο +καί +ἐστράφησαν +ἐν +ταῖς +καρδίαις +αὐτῶν +εἰς +Αἴγυπτον +εἰπόντες +τῷ +Ἀαρών +Ποίησον +ἡμῖν +θεούς +οἵ +προπορεύσονται +ἡμῶν +γάρ +ὁ +Μωϋσῆς +οὗτος +ὅς +ἐξήγαγεν +ἡμᾶς +ἐκ +γῆς +Αἰγύπτου +οὐκ +οἴδαμεν +τί +ἐγένετο +αὐτῷ +καί +ἐμοσχοποίησαν +ἐν +ταῖς +ἡμέραις +ἐκείναις +καί +ἀνήγαγον +θυσίαν +τῷ +εἰδώλῳ +καί +εὐφραίνοντο +ἐν +τοῖς +ἔργοις +τῶν +χειρῶν +αὐτῶν +δέ +ἔστρεψεν +ὁ +Θεός +καί +παρέδωκεν +αὐτούς +λατρεύειν +τῇ +στρατιᾷ +τοῦ +οὐρανοῦ +καθώς +γέγραπται +ἐν +βίβλῳ +τῶν +προφητῶν +Μή +σφάγια +καί +θυσίας +προσηνέγκατε +μοι +ἔτη +τεσσεράκοντα +ἐν +τῇ +ἐρήμῳ +οἶκος +Ἰσραήλ +καί +ἀνελάβετε +τήν +σκηνήν +τοῦ +Μολόχ +καί +τό +ἄστρον +τοῦ +θεοῦ +Ῥομφά +τούς +τύπους +οὕς +ἐποιήσατε +προσκυνεῖν +αὐτοῖς +καί +μετοικιῶ +ὑμᾶς +ἐπέκεινα +Βαβυλῶνος +Ἠ +σκηνή +τοῦ +μαρτυρίου +ἦν +τοῖς +πατράσιν +ἡμῶν +ἐν +τῇ +ἐρήμῳ +καθώς +διετάξατο +ὁ +λαλῶν +τῷ +Μωϋσῇ +ποιῆσαι +αὐτήν +κατά +τόν +τύπον +ὅν +ἑωράκει +ἥν +καί +εἰσήγαγον +διαδεξάμενοι +οἱ +πατέρες +ἡμῶν +μετά +Ἰησοῦ +ἐν +τῇ +κατασχέσει +τῶν +ἐθνῶν +ὧν +ἐξῶσεν +ὁ +Θεός +ἀπό +προσώπου +τῶν +πατέρων +ἡμῶν +ἕως +τῶν +ἡμερῶν +Δαυείδ +ὅς +εὗρεν +χάριν +ἐνώπιον +τοῦ +Θεοῦ +καί +ᾐτήσατο +εὑρεῖν +σκήνωμα +τῷ +οἴκῳ +Ἰακώβ +δέ +Σολομῶν +οἰκοδόμησεν +αὐτῷ +οἶκον +ἀλλ’ +οὐχ +ὁ +Ὕψιστος +ἐν +χειροποιήτοις +κατοικεῖ +καθώς +ὁ +προφήτης +λέγει +Ὁ +οὐρανός +μοι +θρόνος +δέ +ἡ +γῆ +ὑποπόδιον +τῶν +ποδῶν +μου +ποῖον +οἶκον +οἰκοδομήσετε +μοι +λέγει +Κύριος +ἤ +τίς +τόπος +τῆς +καταπαύσεως +μου +οὐχί +ἡ +χείρ +μου +ἐποίησεν +ταῦτα +πάντα +Σκληροτράχηλοι +καί +ἀπερίτμητοι +καρδίαις +καί +τοῖς +ὠσίν +ὑμεῖς +ἀεί +τῷ +Πνεύματι +τῷ +Ἁγίῳ +ἀντιπίπτετε +ὡς +οἱ +πατέρες +ὑμῶν +καί +ὑμεῖς +τίνα +τῶν +προφητῶν +οὐκ +ἐδίωξαν +οἱ +πατέρες +ὑμῶν +καί +ἀπέκτειναν +τούς +προκαταγγείλαντας +περί +τῆς +ἐλεύσεως +τοῦ +Δικαίου +οὗ +νῦν +ὑμεῖς +προδόται +καί +φονεῖς +ἐγένεσθε +οἵτινες +ἐλάβετε +τόν +νόμον +εἰς +διαταγάς +ἀγγέλων +καί +οὐκ +ἐφυλάξατε +δέ +Ἀκούοντες +ταῦτα +διεπρίοντο +ταῖς +καρδίαις +αὐτῶν +καί +ἔβρυχον +τούς +ὀδόντας +ἐπ’ +αὐτόν +δέ +ὑπάρχων +πλήρης +Πνεύματος +Ἁγίου +ἀτενίσας +εἰς +τόν +οὐρανόν +εἶδεν +δόξαν +Θεοῦ +καί +Ἰησοῦν +ἑστῶτα +ἐκ +δεξιῶν +τοῦ +Θεοῦ +καί +εἶπεν +Ἰδού +θεωρῶ +τούς +οὐρανούς +διηνοιγμένους +καί +τόν +Υἱόν +τοῦ +ἀνθρώπου +ἐκ +δεξιῶν +τοῦ +Θεοῦ +ἑστῶτα +δέ +κράξαντες +φωνῇ +μεγάλῃ +συνέσχον +τά +ὦτα +αὐτῶν +καί +ὥρμησαν +ὁμοθυμαδόν +ἐπ’ +αὐτόν +καί +ἐκβαλόντες +ἔξω +τῆς +πόλεως +ἐλιθοβόλουν +καί +οἱ +μάρτυρες +ἀπέθεντο +τά +ἱμάτια +αὐτῶν +παρά +τούς +πόδας +νεανίου +καλουμένου +Σαύλου +καί +ἐλιθοβόλουν +τόν +Στέφανον +ἐπικαλούμενον +καί +λέγοντα +Κύριε +Ἰησοῦ +δέξαι +τό +πνεῦμα +μου +δέ +θείς +τά +γόνατα +ἔκραξεν +φωνῇ +μεγάλῃ +Κύριε +μή +στήσῃς +αὐτοῖς +ταύτην +τήν +ἁμαρτίαν +καί +τοῦτο +εἰπών +ἐκοιμήθη +δέ +Σαῦλος +ἦν +συνευδοκῶν +τῇ +ἀναιρέσει +αὐτοῦ +δέ +Ἐγένετο +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +διωγμός +μέγας +ἐπί +τήν +ἐκκλησίαν +τήν +ἐν +Ἱεροσολύμοις +δέ +πάντες +διεσπάρησαν +κατά +τάς +χώρας +τῆς +Ἰουδαίας +καί +Σαμαρίας +πλήν +τῶν +ἀποστόλων +δέ +συνεκόμισαν +τόν +Στέφανον +ἄνδρες +εὐλαβεῖς +καί +ἐποίησαν +κοπετόν +μέγαν +ἐπ’ +αὐτῷ +δέ +Σαῦλος +ἐλυμαίνετο +τήν +ἐκκλησίαν +κατά +τούς +οἴκους +εἰσπορευόμενος +σύρων +τε +ἄνδρας +καί +γυναῖκας +παρεδίδου +εἰς +φυλακήν +οὖν +μέν +Οἱ +διασπαρέντες +διῆλθον +εὐαγγελιζόμενοι +τόν +λόγον +δέ +Φίλιππος +κατελθών +εἰς +τήν +πόλιν +τῆς +Σαμαρίας +ἐκήρυσσεν +αὐτοῖς +τόν +Χριστόν +δέ +προσεῖχον +οἱ +ὄχλοι +τοῖς +λεγομένοις +ὑπό +τοῦ +Φιλίππου +ὁμοθυμαδόν +ἐν +τῷ +ἀκούειν +αὐτούς +καί +βλέπειν +τά +σημεῖα +ἅ +ἐποίει +γάρ +πολλοί +τῶν +ἐχόντων +πνεύματα +ἀκάθαρτα +βοῶντα +φωνῇ +μεγάλῃ +ἐξήρχοντο +δέ +πολλοί +παραλελυμένοι +καί +χωλοί +ἐθεραπεύθησαν +δέ +ἐγένετο +πολλή +χαρά +ἐν +τῇ +πόλει +ἐκείνῃ +δέ +Ἀνήρ +τις +ὀνόματι +Σίμων +προϋπῆρχεν +ἐν +τῇ +πόλει +μαγεύων +καί +ἐξιστάνων +τό +ἔθνος +τῆς +Σαμαρίας +λέγων +εἶναι +τινα +μέγαν +ἑαυτόν +ᾧ +προσεῖχον +πάντες +ἀπό +μικροῦ +ἕως +μεγάλου +λέγοντες +Οὗτος +ἐστιν +ἡ +δύναμις +τοῦ +Θεοῦ +ἡ +καλουμένη +Μεγάλη +δέ +προσεῖχον +αὐτῷ +διά +τό +ἱκανῷ +χρόνῳ +ταῖς +μαγίαις +ἐξεστακέναι +αὐτούς +δέ +ὅτε +ἐπίστευσαν +τῷ +Φιλίππῳ +εὐαγγελιζομένῳ +περί +τῆς +βασιλείας +τοῦ +Θεοῦ +καί +τοῦ +ὀνόματος +Ἰησοῦ +Χριστοῦ +ἐβαπτίζοντο +τε +ἄνδρες +καί +γυναῖκες +δέ +ὁ +Σίμων +καί +αὐτός +ἐπίστευσεν +καί +βαπτισθείς +ἦν +προσκαρτερῶν +τῷ +Φιλίππῳ +θεωρῶν +τε +σημεῖα +καί +δυνάμεις +μεγάλας +γινομένας +ἐξίστατο +δέ +οἱ +ἐν +Ἱεροσολύμοις +ἀπόστολοι +Ἀκούσαντες +ὅτι +δέδεκται +ἡ +Σαμάρια +τόν +λόγον +τοῦ +Θεοῦ +ἀπέστειλαν +πρός +αὐτούς +Πέτρον +καί +Ἰωάνην +οἵτινες +καταβάντες +προσηύξαντο +περί +αὐτῶν +ὅπως +λάβωσιν +Πνεῦμα +Ἅγιον +γάρ +οὐδέπω +ἦν +ἐπιπεπτωκός +ἐπ’ +οὐδενί +αὐτῶν +δέ +μόνον +βεβαπτισμένοι +ὑπῆρχον +εἰς +τό +ὄνομα +τοῦ +κυρίου +Ἰησοῦ +τότε +ἐπετίθεσαν +τάς +χεῖρας +ἐπ’ +αὐτούς +καί +ἐλάμβανον +Πνεῦμα +Ἅγιον +δέ +ὁ +Σίμων +ἰδών +ὅτι +διά +τῆς +ἐπιθέσεως +τῶν +χειρῶν +τῶν +ἀποστόλων +δίδοται +τό +Πνεῦμα +προσήνεγκεν +αὐτοῖς +χρήματα +λέγων +Δότε +κἀμοί +τήν +ἐξουσίαν +ταύτην +ἵνα +ἐάν +ᾧ +ἐπιθῶ +τάς +χεῖρας +λαμβάνῃ +Πνεῦμα +Ἅγιον +δέ +Πέτρος +εἶπεν +πρός +αὐτόν +Τό +ἀργύριον +σου +σύν +σοί +εἴη +εἰς +ἀπώλειαν +ὅτι +ἐνόμισας +τήν +δωρεάν +τοῦ +Θεοῦ +διά +χρημάτων +κτᾶσθαι +οὐκ +ἔστιν +σοι +μερίς +οὐδέ +κλῆρος +ἐν +τῷ +λόγῳ +τούτῳ +γάρ +ἡ +καρδία +σου +οὐκ +ἔστιν +εὐθεῖα +ἔναντι +τοῦ +Θεοῦ +οὖν +μετανόησον +ἀπό +τῆς +κακίας +σου +ταύτης +καί +δεήθητι +τοῦ +Κυρίου +ἄρα +εἰ +ἀφεθήσεται +σοι +ἡ +ἐπίνοια +τῆς +καρδίας +σου +γάρ +εἰς +χολήν +πικρίας +καί +σύνδεσμον +ἀδικίας +σε +ὄντα +ὁρῶ +δέ +ἀποκριθείς +ὁ +Σίμων +εἶπεν +Δεήθητε +ὑμεῖς +ὑπέρ +ἐμοῦ +πρός +τόν +Κύριον +ὅπως +ἐπέλθῃ +ἐπ’ +ἐμέ +μηδέν +ὧν +εἰρήκατε +μέν +οὖν +Οἱ +διαμαρτυράμενοι +καί +λαλήσαντες +τόν +λόγον +τοῦ +Κυρίου +ὑπέστρεφον +εἰς +Ἱεροσόλυμα +τε +πολλάς +κώμας +τῶν +Σαμαρειτῶν +εὐηγγελίζοντο +δέ +Ἄγγελος +Κυρίου +ἐλάλησεν +πρός +Φίλιππον +λέγων +Ἀνάστηθι +καί +πορεύου +κατά +μεσημβρίαν +ἐπί +τήν +ὁδόν +τήν +καταβαίνουσαν +ἀπό +Ἰερουσαλήμ +εἰς +Γάζαν +αὕτη +ἐστίν +ἔρημος +καί +ἀναστάς +ἐπορεύθη +καί +ἰδού +ἀνήρ +Αἰθίοψ +εὐνοῦχος +δυνάστης +Κανδάκης +βασιλίσσης +Αἰθιόπων +ὅς +ἦν +ἐπί +πάσης +τῆς +γάζης +αὐτῆς +ὅς +ἐληλύθει +προσκυνήσων +εἰς +Ἱερουσαλήμ +ἦν +δέ +ὑποστρέφων +καί +καθήμενος +ἐπί +τοῦ +ἅρματος +αὐτοῦ +καί +ἀνεγίνωσκεν +τόν +προφήτην +Ἠσαΐαν +δέ +εἶπεν +τό +Πνεῦμα +τῷ +Φιλίππῳ +Πρόσελθε +καί +κολλήθητι +τῷ +ἅρματι +τούτῳ +δέ +προσδραμών +ὁ +Φίλιππος +ἤκουσεν +αὐτοῦ +ἀναγινώσκοντος +Ἠσαΐαν +τόν +προφήτην +καί +εἶπεν +Ἆρα +γε +γινώσκεις +ἅ +ἀναγινώσκεις +δέ +ὁ +εἶπεν +γάρ +ἄν +Πῶς +δυναίμην +ἐάν +μή +τις +ὁδηγήσει +με +τε +παρεκάλεσεν +τόν +Φίλιππον +ἀναβάντα +καθίσαι +σύν +αὐτῷ +δέ +ἡ +περιοχή +τῆς +γραφῆς +ἥν +ἀνεγίνωσκεν +ἦν +αὕτη +Ὡς +πρόβατον +ἐπί +σφαγήν +ἤχθη +καί +ὡς +ἀμνός +ἐναντίον +τοῦ +κείροντος +αὐτόν +ἄφωνος +οὕτως +οὐκ +ἀνοίγει +τό +στόμα +αὐτοῦ +Ἐν +τῇ +ταπεινώσει +ἡ +κρίσις +αὐτοῦ +ἤρθη +τήν +γενεάν +αὐτοῦ +τίς +διηγήσεται +ὅτι +αἴρεται +ἀπό +τῆς +γῆς +ἡ +ζωή +αὐτοῦ +δέ +ἀποκριθείς +ὁ +εὐνοῦχος +τῷ +Φιλίππῳ +εἶπεν +Δέομαι +σου +περί +τίνος +ὁ +προφήτης +λέγει +τοῦτο +περί +ἑαυτοῦ +ἤ +περί +ἑτέρου +τινός +δέ +ὁ +Φίλιππος +ἀνοίξας +τό +στόμα +αὐτοῦ +καί +ἀρξάμενος +ἀπό +τῆς +γραφῆς +ταύτης +εὐηγγελίσατο +αὐτῷ +τόν +Ἰησοῦν +δέ +ὡς +ἐπορεύοντο +κατά +τήν +ὁδόν +ἦλθον +ἐπί +τι +ὕδωρ +καί +φησιν +ὁ +εὐνοῦχος +Ἰδού +ὕδωρ +τί +κωλύει +με +βαπτισθῆναι +καί +ἐκέλευσεν +στῆναι +τό +ἅρμα +καί +κατέβησαν +ἀμφότεροι +εἰς +τό +ὕδωρ +τε +ὅ +Φίλιππος +καί +ὁ +εὐνοῦχος +καί +ἐβάπτισεν +αὐτόν +δέ +ὅτε +ἀνέβησαν +ἐκ +τοῦ +ὕδατος +Πνεῦμα +Κυρίου +ἥρπασεν +τόν +Φίλιππον +καί +οὐκ +εἶδεν +αὐτόν +οὐκέτι +ὁ +εὐνοῦχος +γάρ +ἐπορεύετο +τήν +ὁδόν +αὐτοῦ +χαίρων +δέ +Φίλιππος +εὑρέθη +εἰς +Ἄζωτον +καί +διερχόμενος +εὐηγγελίζετο +τάς +πόλεις +πάσας +ἕως +τοῦ +ἐλθεῖν +αὐτόν +εἰς +Καισάριαν +δέ +Ὁ +Σαῦλος +ἔτι +ἐμπνέων +ἀπειλῆς +καί +φόνου +εἰς +τούς +μαθητάς +τοῦ +Κυρίου +προσελθών +τῷ +ἀρχιερεῖ +ᾐτήσατο +παρ’ +αὐτοῦ +ἐπιστολάς +εἰς +Δαμασκόν +πρός +τάς +συναγωγάς +ὅπως +ἐάν +εὕρῃ +τινας +τῆς +Ὁδοῦ +ὄντας +τε +ἄνδρας +καί +γυναῖκας +δεδεμένους +ἀγάγῃ +εἰς +Ἱερουσαλήμ +δέ +Ἐν +τῷ +πορεύεσθαι +ἐγένετο +αὐτόν +ἐγγίζειν +τῇ +Δαμασκῷ +τε +ἐξαίφνης +αὐτόν +περιήστραψεν +φῶς +ἐκ +τοῦ +οὐρανοῦ +καί +πεσών +ἐπί +τήν +γῆν +ἤκουσεν +φωνήν +λέγουσαν +αὐτῷ +Σαούλ +Σαούλ +τί +με +διώκεις +δέ +εἶπεν +Τίς +εἶ +Κύριε +δέ +ὁ +Ἐγώ +εἰμι +Ἰησοῦς +ὅν +σύ +διώκεις +ἀλλά +ἀνάστηθι +καί +εἴσελθε +εἰς +τήν +πόλιν +καί +λαληθήσεται +σοι +ὅ +τί +σε +ποιεῖν +δεῖ +δέ +οἱ +ἄνδρες +οἱ +συνοδεύοντες +αὐτῷ +εἱστήκεισαν +ἐνεοί +μέν +ἀκούοντες +τῆς +φωνῆς +δέ +μηδένα +θεωροῦντες +δέ +ἠγέρθη +Σαῦλος +ἀπό +τῆς +γῆς +δέ +ἀνεῳγμένων +τῶν +ὀφθαλμῶν +αὐτοῦ +οὐδέν +ἔβλεπεν +δέ +χειραγωγοῦντες +αὐτόν +εἰσήγαγον +εἰς +Δαμασκόν +καί +ἦν +βλέπων +ἡμέρας +τρεῖς +μή +καί +οὐκ +ἔφαγεν +οὐδέ +ἔπιεν +δέ +Ἦν +τις +μαθητής +ὀνόματι +Ἀνανίας +ἐν +Δαμασκῷ +καί +εἶπεν +πρός +αὐτόν +ἐν +ὁράματι +ὁ +Κύριος +Ἀνανία +δέ +ὁ +εἶπεν +Ἰδού +ἐγώ +Κύριε +δέ +ὁ +Κύριος +πρός +αὐτόν +Ἀναστάς +πορεύθητι +ἐπί +τήν +ῥύμην +τήν +καλουμένην +Εὐθεῖαν +καί +ζήτησον +ἐν +οἰκίᾳ +Ἰούδα +Σαῦλον +ὀνόματι +Ταρσέα +γάρ +ἰδού +προσεύχεται +καί +εἶδεν +ἄνδρα +Ἀνανίαν +ὀνόματι +εἰσελθόντα +καί +ἐπιθέντα +αὐτῷ +χεῖρας +ὅπως +ἀναβλέψῃ +δέ +ἀπεκρίθη +Ἀνανίας +Κύριε +ἤκουσα +ἀπό +πολλῶν +περί +τοῦ +ἀνδρός +τούτου +ὅσα +κακά +τοῖς +ἁγίοις +σου +ἐποίησεν +ἐν +Ἱερουσαλήμ +καί +ὧδε +ἔχει +ἐξουσίαν +παρά +τῶν +ἀρχιερέων +δῆσαι +πάντας +τούς +ἐπικαλουμένους +τό +ὄνομα +σου +δέ +εἶπεν +πρός +αὐτόν +ὁ +Κύριος +Πορεύου +ὅτι +σκεῦος +ἐκλογῆς +ἐστίν +μοι +οὗτος +τοῦ +βαστάσαι +τό +ὄνομα +μου +ἐνώπιον +τε +ἐθνῶν +καί +βασιλέων +τε +υἱῶν +Ἰσραήλ +γάρ +ἐγώ +ὑποδείξω +αὐτῷ +ὅσα +αὐτόν +ὑπέρ +τοῦ +ὀνόματος +μου +παθεῖν +δεῖ +δέ +Ἀπῆλθεν +Ἀνανίας +καί +εἰσῆλθεν +εἰς +τήν +οἰκίαν +καί +ἐπιθείς +ἐπ’ +αὐτόν +τάς +χεῖρας +εἶπεν +Σαούλ +ἀδελφέ +ὁ +Κύριος +Ἰησοῦς +ὁ +ὀφθείς +σοι +ἐν +τῇ +ὁδῷ +ᾗ +ἤρχου +ἀπέσταλκεν +με +ὅπως +ἀναβλέψῃς +καί +πλησθῇς +Πνεύματος +Ἁγίου +καί +εὐθέως +ἀπέπεσαν +ἀπό +αὐτοῦ +τῶν +ὀφθαλμῶν +ὡς +λεπίδες +τε +ἀνέβλεψεν +καί +ἀναστάς +ἐβαπτίσθη +καί +λαβών +τροφήν +ἐνίσχυσεν +δέ +Ἐγένετο +μετά +τῶν +ἐν +Δαμασκῷ +μαθητῶν +ἡμέρας +τινάς +καί +εὐθέως +ἐν +ταῖς +συναγωγαῖς +ἐκήρυσσεν +τόν +Ἰησοῦν +ὅτι +οὗτος +ἐστιν +ὁ +Υἱός +τοῦ +Θεοῦ +δέ +ἐξίσταντο +πάντες +οἱ +ἀκούοντες +καί +ἔλεγον +Οὐχ +οὗτος +ἐστιν +ὁ +πορθήσας +εἰς +Ἱερουσαλήμ +τούς +ἐπικαλουμένους +τό +ὄνομα +τοῦτο +καί +ὧδε +εἰς +τοῦτο +ἐληλύθει +ἵνα +δεδεμένους +αὐτούς +ἀγάγῃ +ἐπί +τούς +ἀρχιερεῖς +δέ +Σαῦλος +μᾶλλον +ἐνεδυναμοῦτο +καί +συνέχυννεν +Ἰουδαίους +τούς +κατοικοῦντας +ἐν +Δαμασκῷ +συμβιβάζων +ὅτι +οὗτος +ἐστιν +ὁ +Χριστός +δέ +Ὡς +ἐπληροῦντο +ἡμέραι +ἱκαναί +συνεβουλεύσαντο +οἱ +Ἰουδαῖοι +ἀνελεῖν +αὐτόν +δέ +ἐγνώσθη +τῷ +Σαύλῳ +ἡ +ἐπιβουλή +αὐτῶν +δέ +παρετηροῦντο +καί +τάς +πύλας +τε +ἡμέρας +καί +νυκτός +ὅπως +αὐτόν +ἀνέλωσιν +δέ +λαβόντες +οἱ +μαθηταί +αὐτοῦ +νυκτός +διά +τοῦ +τείχους +καθῆκαν +αὐτόν +χαλάσαντες +ἐν +σπυρίδι +δέ +Παραγενόμενος +εἰς +Ἱερουσαλήμ +ἐπείραζεν +κολλᾶσθαι +τοῖς +μαθηταῖς +καί +πάντες +ἐφοβοῦντο +αὐτόν +μή +πιστεύοντες +ὅτι +ἐστίν +μαθητής +δέ +Βαρνάβας +ἐπιλαβόμενος +αὐτόν +ἤγαγεν +πρός +τούς +ἀποστόλους +καί +διηγήσατο +αὐτοῖς +πῶς +ἐν +τῇ +ὁδῷ +εἶδεν +τόν +Κύριον +καί +ὅτι +ἐλάλησεν +αὐτῷ +καί +πῶς +ἐν +Δαμασκῷ +ἐπαρρησιάσατο +ἐν +τῷ +ὀνόματι +Ἰησοῦ +καί +ἦν +εἰσπορευόμενος +καί +ἐκπορευόμενος +μετ’ +αὐτῶν +εἰς +Ἱερουσαλήμ +παρρησιαζόμενος +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου +τε +ἐλάλει +καί +συνεζήτει +πρός +τούς +Ἑλληνιστάς +δέ +οἱ +ἐπεχείρουν +ἀνελεῖν +αὐτόν +δέ +ἐπιγνόντες +οἱ +ἀδελφοί +κατήγαγον +αὐτόν +εἰς +Καισάριαν +καί +ἐξαπέστειλαν +αὐτόν +εἰς +Ταρσόν +μέν +οὖν +Ἠ +ἐκκλησία +καθ’ +ὅλης +τῆς +Ἰουδαίας +καί +Γαλιλαίας +καί +Σαμαρίας +εἶχεν +εἰρήνην +οἰκοδομουμένη +καί +πορευομένη +τῷ +φόβῳ +τοῦ +Κυρίου +καί +τῇ +παρακλήσει +τοῦ +Ἁγίου +Πνεύματος +ἐπληθύνετο +δέ +Ἐγένετο +Πέτρον +διερχόμενον +διά +πάντων +κατελθεῖν +καί +πρός +τούς +ἁγίους +τούς +κατοικοῦντας +Λύδδα +δέ +εὗρεν +ἐκεῖ +ἄνθρωπον +τινα +ὀνόματι +Αἰνέαν +ἐξ +ἐτῶν +ὀκτώ +κατακείμενον +ἐπί +κραβάττου +ὅς +ἦν +παραλελυμένος +καί +εἶπεν +αὐτῷ +ὁ +Πέτρος +Αἰνέα +ἰᾶται +σε +Ἰησοῦς +Χριστός +ἀνάστηθι +καί +στρῶσον +σεαυτῷ +καί +εὐθέως +ἀνέστη +καί +εἶδαν +αὐτόν +πάντες +οἱ +κατοικοῦντες +Λύδδα +καί +τόν +Σαρῶνα +οἵτινες +ἐπέστρεψαν +ἐπί +τόν +Κύριον +δέ +Ἐν +Ἰόππῃ +ἦν +τις +μαθήτρια +ὀνόματι +Ταβειθά +ἥ +διερμηνευομένη +λέγεται +Δορκάς +αὕτη +ἦν +πλήρης +ἔργων +ἀγαθῶν +καί +ἐλεημοσυνῶν +ὧν +ἐποίει +δέ +ἐγένετο +ἐν +ταῖς +ἡμέραις +ἐκείναις +ἀσθενήσασαν +αὐτήν +ἀποθανεῖν +δέ +λούσαντες +ἔθηκαν +ἐν +ὑπερῴῳ +δέ +οὔσης +Λύδδας +ἐγγύς +τῇ +Ἰόππῃ +οἱ +μαθηταί +ἀκούσαντες +ὅτι +Πέτρος +ἐστίν +ἐν +αὐτῇ +ἀπέστειλαν +δύο +ἄνδρας +πρός +αὐτόν +παρακαλοῦντες +Μή +ὀκνήσῃς +διελθεῖν +ἕως +ἡμῶν +δέ +ἀναστάς +Πέτρος +συνῆλθεν +αὐτοῖς +ὅν +παραγενόμενον +ἀνήγαγον +εἰς +τό +ὑπερῷον +καί +παρέστησαν +αὐτῷ +πᾶσαι +αἱ +χῆραι +κλαίουσαι +καί +ἐπιδεικνύμεναι +χιτῶνας +καί +ἱμάτια +ὅσα +ἐποίει +μετ’ +αὐτῶν +οὖσα +ἡ +Δορκάς +δέ +ὁ +Πέτρος +ἐκβαλών +ἔξω +πάντας +καί +θείς +τά +γόνατα +προσηύξατο +καί +ἐπιστρέψας +πρός +τό +σῶμα +εἶπεν +Ταβειθά +ἀνάστηθι +δέ +ἡ +ἤνοιξεν +τούς +ὀφθαλμούς +αὐτῆς +καί +ἰδοῦσα +τόν +Πέτρον +ἀνεκάθισεν +δέ +δούς +αὐτῇ +χεῖρα +ἀνέστησεν +αὐτήν +δέ +φωνήσας +τούς +ἁγίους +καί +τάς +χήρας +παρέστησεν +αὐτήν +ζῶσαν +δέ +γνωστόν +ἐγένετο +καθ’ +ὅλης +τῆς +Ἰόππης +καί +ἐπίστευσαν +πολλοί +ἐπί +τόν +Κύριον +δέ +Ἐγένετο +ἡμέρας +ἱκανάς +μεῖναι +ἐν +Ἰόππῃ +παρά +τινι +Σίμωνι +βυρσεῖ +δέ +Ἀνήρ +τις +ἐν +Καισαρίᾳ +ὀνόματι +Κορνήλιος +ἑκατοντάρχης +ἐκ +σπείρης +τῆς +καλουμένης +Ἰταλικῆς +εὐσεβής +καί +φοβούμενος +τόν +Θεόν +σύν +παντί +τῷ +οἴκῳ +αὐτοῦ +ποιῶν +ἐλεημοσύνας +πολλάς +τῷ +λαῷ +καί +δεόμενος +τοῦ +Θεοῦ +διά +παντός +εἶδεν +ἐν +ὁράματι +φανερῶς +ὡσεί +περί +ὥραν +ἐνάτην +τῆς +ἡμέρας +ἄγγελον +τοῦ +Θεοῦ +εἰσελθόντα +πρός +αὐτόν +καί +εἰπόντα +αὐτῷ +Κορνήλιε +δέ +ὁ +ἀτενίσας +αὐτῷ +καί +ἔμφοβος +γενόμενος +εἶπεν +Τί +ἐστιν +Κύριε +δέ +εἶπεν +αὐτῷ +Αἱ +προσευχαί +σου +καί +αἱ +ἐλεημοσύναι +σου +ἀνέβησαν +εἰς +μνημόσυνον +ἔμπροσθεν +τοῦ +Θεοῦ +καί +νῦν +πέμψον +ἄνδρας +εἰς +Ἰόππην +καί +μετάπεμψαι +Σίμωνα +τινα +ὅς +ἐπικαλεῖται +Πέτρος +οὗτος +ξενίζεται +παρά +τινι +Σίμωνι +βυρσεῖ +ᾧ +ἐστιν +οἰκία +παρά +θάλασσαν +δέ +ὡς +ἀπῆλθεν +ὁ +ἄγγελος +ὁ +λαλῶν +αὐτῷ +φωνήσας +δύο +τῶν +οἰκετῶν +καί +στρατιώτην +εὐσεβῆ +τῶν +προσκαρτερούντων +αὐτῷ +καί +ἐξηγησάμενος +ἅπαντα +αὐτοῖς +ἀπέστειλεν +αὐτούς +εἰς +τήν +Ἰόππην +δέ +Τῇ +ἐπαύριον +ὁδοιπορούντων +ἐκείνων +καί +τῇ +πόλει +ἐγγιζόντων +ἀνέβη +Πέτρος +ἐπί +τό +δῶμα +προσεύξασθαι +περί +ὥραν +ἕκτην +δέ +ἐγένετο +πρόσπεινος +καί +ἤθελεν +γεύσασθαι +δέ +παρασκευαζόντων +αὐτῶν +ἐγένετο +ἐπ’ +αὐτόν +ἔκστασις +καί +θεωρεῖ +τόν +οὐρανόν +ἀνεῳγμένον +καί +καταβαῖνον +σκεῦος +τι +ὡς +ὀθόνην +μεγάλην +τέσσαρσιν +ἀρχαῖς +καθιέμενον +ἐπί +τῆς +γῆς +ἐν +ᾧ +ὑπῆρχεν +πάντα +τά +τετράποδα +καί +ἑρπετά +τῆς +γῆς +καί +πετεινά +τοῦ +οὐρανοῦ +καί +ἐγένετο +φωνή +πρός +αὐτόν +Πέτρε +Ἀναστάς +θῦσον +καί +φάγε +δέ +ὁ +Πέτρος +εἶπεν +Μηδαμῶς +Κύριε +ὅτι +οὐδέποτε +ἔφαγον +πᾶν +κοινόν +καί +ἀκάθαρτον +καί +φωνή +πάλιν +ἐκ +δευτέρου +πρός +αὐτόν +Ἅ +ὁ +Θεός +ἐκαθάρισεν +σύ +μή +κοίνου +δέ +τοῦτο +ἐγένετο +ἐπί +τρίς +καί +εὐθύς +ἀνελήμφθη +τό +σκεῦος +εἰς +τόν +οὐρανόν +δέ +Ὡς +ἐν +ἑαυτῷ +διηπόρει +ὁ +Πέτρος +ἄν +τί +εἴη +τό +ὅραμα +ὅ +εἶδεν +ἰδού +οἱ +ἄνδρες +οἱ +ἀπεσταλμένοι +ὑπό +τοῦ +Κορνηλίου +διερωτήσαντες +τήν +οἰκίαν +τοῦ +Σίμωνος +ἐπέστησαν +ἐπί +τόν +πυλῶνα +καί +φωνήσαντες +ἐπυνθάνοντο +εἰ +Σίμων +ὁ +ἐπικαλούμενος +Πέτρος +ἐνθάδε +ξενίζεται +δέ +Τοῦ +Πέτρου +διενθυμουμένου +περί +τοῦ +ὁράματος +εἶπεν +τό +Πνεῦμα +Ἰδού +ἄνδρες +δύο +ζητοῦντες +σε +ἀλλά +ἀναστάς +κατάβηθι +καί +πορεύου +σύν +αὐτοῖς +μηδέν +διακρινόμενος +ὅτι +ἐγώ +ἀπέσταλκα +αὐτούς +δέ +καταβάς +Πέτρος +πρός +τούς +ἄνδρας +εἶπεν +Ἰδού +ἐγώ +εἰμι +ὅν +ζητεῖτε +τίς +ἡ +αἰτία +δι’ +ἥν +πάρεστε +δέ +οἱ +εἶπαν +Κορνήλιος +ἑκατοντάρχης +ἀνήρ +δίκαιος +καί +φοβούμενος +τόν +Θεόν +τε +μαρτυρούμενος +ὑπό +ὅλου +τοῦ +ἔθνους +τῶν +Ἰουδαίων +ἐχρηματίσθη +ὑπό +ἀγγέλου +ἁγίου +μεταπέμψασθαι +σε +εἰς +τόν +οἶκον +αὐτοῦ +καί +ἀκοῦσαι +ῥήματα +παρά +σοῦ +οὖν +εἰσκαλεσάμενος +αὐτούς +ἐξένισεν +δέ +Τῇ +ἐπαύριον +ἀναστάς +ἐξῆλθεν +σύν +αὐτοῖς +καί +τινες +τῶν +ἀδελφῶν +τῶν +ἀπό +Ἰόππης +συνῆλθον +αὐτῷ +δέ +τῇ +ἐπαύριον +εἰσῆλθεν +εἰς +τήν +Καισάριαν +δέ +ὁ +Κορνήλιος +ἦν +προσδοκῶν +αὐτούς +συνκαλεσάμενος +τούς +συγγενεῖς +αὐτοῦ +καί +τούς +ἀναγκαίους +φίλους +δέ +Ὡς +ἐγένετο +τοῦ +εἰσελθεῖν +τόν +Πέτρον +συναντήσας +αὐτῷ +ὁ +Κορνήλιος +πεσών +ἐπί +τούς +πόδας +προσεκύνησεν +δέ +ὁ +Πέτρος +ἤγειρεν +αὐτόν +λέγων +Ἀνάστηθι +καί +ἐγώ +αὐτός +ἄνθρωπος +εἰμι +καί +συνομιλῶν +αὐτῷ +εἰσῆλθεν +καί +εὑρίσκει +συνεληλυθότας +πολλούς +τε +ἔφη +πρός +αὐτούς +Ὑμεῖς +ἐπίστασθε +ὡς +ἀθέμιτον +ἐστιν +ἀνδρί +Ἰουδαίῳ +κολλᾶσθαι +ἤ +προσέρχεσθαι +ἀλλοφύλῳ +κἀμοί +ὁ +Θεός +ἔδειξεν +μηδένα +ἄνθρωπον +κοινόν +ἤ +ἀκάθαρτον +λέγειν +διό +καί +ἀναντιρρήτως +ἦλθον +μεταπεμφθείς +οὖν +πυνθάνομαι +Τίνι +λόγῳ +μετεπέμψασθε +με +Καί +ὁ +Κορνήλιος +ἔφη +Ἀπό +τετάρτης +ἡμέρας +μέχρι +ταύτης +τῆς +ὥρας +ἤμην +προσευχόμενος +τήν +ἐνάτην +ἐν +τῷ +οἴκῳ +μου +καί +ἰδού +ἀνήρ +ἔστη +ἐνώπιον +μου +ἐν +ἐσθῆτι +λαμπρᾷ +καί +φησίν +Κορνήλιε +εἰσηκούσθη +σου +ἡ +προσευχή +καί +αἱ +ἐλεημοσύναι +σου +ἐμνήσθησαν +ἐνώπιον +τοῦ +Θεοῦ +οὖν +πέμψον +εἰς +Ἰόππην +καί +μετακάλεσαι +Σίμωνα +ὅς +ἐπικαλεῖται +Πέτρος +οὗτος +ξενίζεται +ἐν +οἰκίᾳ +Σίμωνος +βυρσέως +παρά +θάλασσαν +οὖν +ἐξαυτῆς +ἔπεμψα +πρός +σέ +τε +σύ +καλῶς +ἐποίησας +παραγενόμενος +οὖν +νῦν +πάντες +ἡμεῖς +ἐνώπιον +τοῦ +Θεοῦ +πάρεσμεν +ἀκοῦσαι +πάντα +τά +προστεταγμένα +σοι +ὑπό +τοῦ +Κυρίου +δέ +Πέτρος +Ἀνοίξας +τό +στόμα +εἶπεν +Ἐπ’ +ἀληθείας +καταλαμβάνομαι +ὅτι +οὐκ +ἔστιν +προσωπολήμπτης +ὁ +Θεός +ἀλλ’ +ἐν +παντί +ἔθνει +ὁ +φοβούμενος +αὐτόν +καί +ἐργαζόμενος +δικαιοσύνην +δεκτός +αὐτῷ +ἐστιν +τόν +λόγον +ὅν +ἀπέστειλεν +τοῖς +υἱοῖς +Ἰσραήλ +εὐαγγελιζόμενος +εἰρήνην +διά +Ἰησοῦ +Χριστοῦ +οὗτος +ἐστιν +πάντων +Κύριος +ὑμεῖς +οἴδατε +τό +ῥῆμα +γενόμενον +καθ’ +ὅλης +τῆς +Ἰουδαίας +ἀρξάμενος +ἀπό +τῆς +Γαλιλαίας +μετά +τό +βάπτισμα +ὅ +ἐκήρυξεν +Ἰωάνης +Ἰησοῦν +τόν +ἀπό +Ναζαρέθ +ὡς +ἔχρισεν +αὐτόν +ὁ +Θεός +Πνεύματι +Ἁγίῳ +καί +δυνάμει +ὅς +διῆλθεν +εὐεργετῶν +καί +ἰώμενος +πάντας +τούς +καταδυναστευομένους +ὑπό +τοῦ +διαβόλου +ὅτι +ὁ +Θεός +ἦν +μετ’ +αὐτοῦ +καί +ἡμεῖς +μάρτυρες +πάντων +ὧν +ἐποίησεν +τε +ἔν +τῇ +χώρᾳ +τῶν +Ἰουδαίων +καί +Ἱερουσαλήμ +ὅν +καί +ἀνεῖλαν +κρεμάσαντες +ἐπί +ξύλου +τοῦτον +ὁ +Θεός +ἤγειρεν +ἐν +τῇ +τρίτῃ +ἡμέρᾳ +καί +ἔδωκεν +αὐτόν +ἐμφανῆ +γενέσθαι +οὐ +παντί +τῷ +λαῷ +ἀλλά +μάρτυσιν +τοῖς +προκεχειροτονημένοις +ὑπό +τοῦ +Θεοῦ +ἡμῖν +οἵτινες +συνεφάγομεν +καί +συνεπίομεν +αὐτῷ +μετά +τό +ἀναστῆναι +αὐτόν +ἐκ +νεκρῶν +καί +παρήγγειλεν +ἡμῖν +κηρύξαι +τῷ +λαῷ +καί +διαμαρτύρασθαι +ὅτι +οὗτος +ἐστιν +ὁ +ὡρισμένος +ὑπό +τοῦ +Θεοῦ +Κριτής +ζώντων +καί +νεκρῶν +τούτῳ +πάντες +οἱ +προφῆται +μαρτυροῦσιν +ἄφεσιν +ἁμαρτιῶν +λαβεῖν +διά +τοῦ +ὀνόματος +αὐτοῦ +πάντα +τόν +πιστεύοντα +εἰς +αὐτόν +Ἔτι +λαλοῦντος +τοῦ +Πέτρου +τά +ῥήματα +ταῦτα +ἐπέπεσεν +τό +Πνεῦμα +τό +Ἅγιον +ἐπί +πάντας +τούς +ἀκούοντας +τόν +λόγον +καί +ἐξέστησαν +οἱ +ἐκ +περιτομῆς +πιστοί +ὅσοι +συνῆλθαν +τῷ +Πέτρῳ +ὅτι +καί +ἐπί +τά +ἔθνη +ἡ +δωρεά +τοῦ +Ἁγίου +Πνεύματος +ἐκκέχυται +γάρ +ἤκουον +αὐτῶν +λαλούντων +γλώσσαις +καί +μεγαλυνόντων +τόν +Θεόν +τότε +ἀπεκρίθη +Πέτρος +Μήτι +τό +ὕδωρ +κωλῦσαι +δύναται +τις +τοῦ +μή +βαπτισθῆναι +τούτους +οἵτινες +τό +Πνεῦμα +τό +Ἅγιον +ἔλαβον +ὡς +καί +ἡμεῖς +δέ +προσέταξεν +αὐτούς +ἐν +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +βαπτισθῆναι +τότε +ἠρώτησαν +αὐτόν +ἐπιμεῖναι +ἡμέρας +τινάς +δέ +Ἤκουσαν +οἱ +ἀπόστολοι +καί +οἱ +ἀδελφοί +οἱ +ὄντες +κατά +τήν +Ἰουδαίαν +ὅτι +καί +τά +ἔθνη +ἐδέξαντο +τόν +λόγον +τοῦ +Θεοῦ +δέ +Ὅτε +ἀνέβη +Πέτρος +εἰς +Ἱερουσαλήμ +διεκρίνοντο +πρός +αὐτόν +οἱ +ἐκ +περιτομῆς +λέγοντες +ὅτι +Εἰσῆλθες +πρός +ἄνδρας +ἀκροβυστίαν +ἔχοντας +καί +συνέφαγες +αὐτοῖς +δέ +ἀρξάμενος +Πέτρος +ἐξετίθετο +αὐτοῖς +καθεξῆς +λέγων +Ἐγώ +ἤμην +προσευχόμενος +ἐν +πόλει +Ἰόππῃ +καί +εἶδον +ἐν +ἐκστάσει +ὅραμα +καταβαῖνον +σκεῦος +τι +ὡς +ὀθόνην +μεγάλην +τέσσαρσιν +ἀρχαῖς +καθιεμένην +ἐκ +τοῦ +οὐρανοῦ +καί +ἦλθεν +ἄχρι +ἐμοῦ +εἰς +ἥν +ἀτενίσας +κατενόουν +καί +εἶδον +τά +τετράποδα +τῆς +γῆς +καί +τά +θηρία +καί +τά +ἑρπετά +καί +τά +πετεινά +τοῦ +οὐρανοῦ +δέ +ἤκουσα +καί +φωνῆς +λεγούσης +μοι +Πέτρε +Ἀναστάς +θῦσον +καί +φάγε +δέ +εἶπον +Μηδαμῶς +Κύριε +ὅτι +κοινόν +ἤ +ἀκάθαρτον +οὐδέποτε +εἰσῆλθεν +εἰς +τό +στόμα +μου +δέ +ἀπεκρίθη +ἐκ +δευτέρου +φωνή +ἐκ +τοῦ +οὐρανοῦ +Ἅ +ὁ +Θεός +ἐκαθάρισεν +σύ +μή +κοίνου +δέ +τοῦτο +ἐγένετο +ἐπί +τρίς +καί +ἀνεσπάσθη +πάλιν +ἅπαντα +εἰς +τόν +οὐρανόν +καί +ἰδού +ἐξαυτῆς +τρεῖς +ἄνδρες +ἐπέστησαν +ἐπί +τήν +οἰκίαν +ἐν +ᾗ +ἦμεν +ἀπεσταλμένοι +ἀπό +Καισαρίας +πρός +με +δέ +εἶπεν +τό +Πνεῦμα +μοι +συνελθεῖν +αὐτοῖς +μηδέν +διακρίναντα +δέ +ἦλθον +σύν +ἐμοί +καί +οἱ +ἕξ +ἀδελφοί +οὗτοι +καί +εἰσήλθομεν +εἰς +τόν +οἶκον +τοῦ +ἀνδρός +δέ +ἀπήγγειλεν +ἡμῖν +πῶς +εἶδεν +τόν +ἄγγελον +ἐν +τῷ +οἴκῳ +αὐτοῦ +σταθέντα +καί +εἰπόντα +Ἀπόστειλον +εἰς +Ἰόππην +καί +μετάπεμψαι +Σίμωνα +τόν +ἐπικαλούμενον +Πέτρον +ὅς +λαλήσει +ῥήματα +πρός +σέ +ἐν +οἷς +σωθήσῃ +σύ +καί +πᾶς +ὁ +οἶκος +σου +δέ +ἐν +τῷ +ἄρξασθαι +με +λαλεῖν +ἐπέπεσεν +τό +Πνεῦμα +τό +Ἅγιον +ἐπ’ +αὐτούς +ὥσπερ +καί +ἐφ’ +ἡμᾶς +ἐν +ἀρχῇ +δέ +ἐμνήσθην +τοῦ +ῥήματος +τοῦ +Κυρίου +ὡς +ἔλεγεν +μέν +Ἰωάνης +ἐβάπτισεν +ὕδατι +δέ +ὑμεῖς +βαπτισθήσεσθε +ἐν +Πνεύματι +Ἁγίῳ +οὖν +εἰ +τήν +ἴσην +δωρεάν +ἔδωκεν +αὐτοῖς +ὁ +Θεός +ὡς +καί +ἡμῖν +πιστεύσασιν +ἐπί +τόν +Κύριον +Ἰησοῦν +Χριστόν +ἐγώ +τίς +ἤμην +δυνατός +κωλῦσαι +τόν +Θεόν +δέ +ἀκούσαντες +ταῦτα +ἡσύχασαν +καί +ἐδόξασαν +τόν +Θεόν +λέγοντες +Ἄρα +καί +τοῖς +ἔθνεσιν +ὁ +Θεός +τήν +μετάνοιαν +εἰς +ζωήν +ἔδωκεν +μέν +οὖν +Οἱ +διασπαρέντες +ἀπό +τῆς +θλίψεως +τῆς +γενομένης +ἐπί +Στεφάνῳ +διῆλθον +ἕως +Φοινίκης +καί +Κύπρου +καί +Ἀντιοχείας +μηδενί +λαλοῦντες +τόν +λόγον +εἰ +μή +μόνον +Ἰουδαίοις +δέ +Ἦσαν +τινες +ἐξ +αὐτῶν +ἄνδρες +Κύπριοι +καί +Κυρηναῖοι +οἵτινες +ἐλθόντες +εἰς +Ἀντιόχειαν +ἐλάλουν +καί +πρός +τούς +Ἕλληνας +εὐαγγελιζόμενοι +τόν +Κύριον +Ἰησοῦν +καί +ἦν +χείρ +Κυρίου +μετ’ +αὐτῶν +τε +πολύς +ἀριθμός +ὁ +πιστεύσας +ἐπέστρεψεν +ἐπί +τόν +Κύριον +δέ +Ἠκούσθη +ὁ +λόγος +περί +αὐτῶν +εἰς +τά +ὦτα +τῆς +ἐκκλησίας +τῆς +οὔσης +ἐν +Ἱερουσαλήμ +καί +ἐξαπέστειλαν +Βαρνάβαν +ἕως +Ἀντιοχείας +ὅς +παραγενόμενος +καί +ἰδών +τήν +χάριν +τήν +τοῦ +Θεοῦ +ἐχάρη +καί +παρεκάλει +πάντας +τῇ +προθέσει +τῆς +καρδίας +προσμένειν +τῷ +Κυρίῳ +ὅτι +ἦν +ἀνήρ +ἀγαθός +καί +πλήρης +Πνεύματος +Ἁγίου +καί +πίστεως +καί +προσετέθη +ὄχλος +ἱκανός +τῷ +Κυρίῳ +δέ +ἐξῆλθεν +εἰς +Ταρσόν +ἀναζητῆσαι +Σαῦλον +καί +εὑρών +ἤγαγεν +εἰς +Ἀντιόχειαν +δέ +ἐγένετο +αὐτοῖς +καί +ἐνιαυτόν +ὅλον +συναχθῆναι +ἐν +τῇ +ἐκκλησίᾳ +καί +διδάξαι +ὄχλον +ἱκανόν +τε +χρηματίσαι +πρώτως +ἐν +Ἀντιοχείᾳ +τούς +μαθητάς +Χριστιανούς +δέ +Ἐν +ταύταις +ταῖς +ἡμέραις +κατῆλθον +ἀπό +Ἱεροσολύμων +προφῆται +εἰς +Ἀντιόχειαν +δέ +ἀναστάς +εἷς +ἐξ +αὐτῶν +ὀνόματι +Ἅγαβος +ἐσήμαινεν +διά +τοῦ +Πνεύματος +λιμόν +μεγάλην +μέλλειν +ἔσεσθαι +ἐφ’ +ὅλην +τήν +οἰκουμένην +ἥτις +ἐγένετο +ἐπί +Κλαυδίου +δέ +τῶν +μαθητῶν +καθώς +εὐπορεῖτο +τις +ὥρισαν +ἕκαστος +αὐτῶν +εἰς +διακονίαν +πέμψαι +τοῖς +κατοικοῦσιν +ἐν +τῇ +Ἰουδαίᾳ +ἀδελφοῖς +ὅ +καί +ἐποίησαν +ἀποστείλαντες +πρός +τούς +πρεσβυτέρους +διά +χειρός +Βαρνάβα +καί +Σαύλου +δέ +Κατ’ +ἐκεῖνον +τόν +καιρόν +ἐπέβαλεν +Ἠρῴδης +ὁ +βασιλεύς +τάς +χεῖρας +κακῶσαι +τινας +τῶν +ἀπό +τῆς +ἐκκλησίας +δέ +ἀνεῖλεν +Ἰάκωβον +τόν +ἀδελφόν +Ἰωάνου +μαχαίρῃ +δέ +ἰδών +ὅτι +ἀρεστόν +ἐστιν +τοῖς +Ἰουδαίοις +προσέθετο +συλλαβεῖν +καί +Πέτρον +δέ +ἦσαν +ἡμέραι +τῶν +ἀζύμων +ὅν +καί +πιάσας +ἔθετο +εἰς +φυλακήν +παραδούς +τέσσαρσιν +τετραδίοις +στρατιωτῶν +φυλάσσειν +αὐτόν +βουλόμενος +μετά +τό +πάσχα +ἀναγαγεῖν +αὐτόν +τῷ +λαῷ +οὖν +μέν +ὁ +Πέτρος +ἐτηρεῖτο +ἐν +τῇ +φυλακῇ +δέ +προσευχή +ἦν +γινομένη +ἐκτενῶς +ὑπό +τῆς +ἐκκλησίας +πρός +τόν +Θεόν +περί +αὐτοῦ +δέ +Ὅτε +ἤμελλεν +προαγαγεῖν +αὐτόν +ὁ +Ἠρῴδης +τῇ +νυκτί +ἐκείνῃ +ὁ +Πέτρος +ἦν +κοιμώμενος +μεταξύ +δύο +στρατιωτῶν +δεδεμένος +ἁλύσεσιν +δυσίν +τε +φύλακες +πρό +τῆς +θύρας +ἐτήρουν +τήν +φυλακήν +καί +ἰδού +ἄγγελος +Κυρίου +ἐπέστη +καί +φῶς +ἔλαμψεν +ἐν +τῷ +οἰκήματι +δέ +πατάξας +τήν +πλευράν +τοῦ +Πέτρου +ἤγειρεν +αὐτόν +λέγων +Ἀνάστα +ἐν +τάχει +καί +ἐξέπεσαν +αὐτοῦ +αἱ +ἁλύσεις +ἐκ +τῶν +χειρῶν +δέ +εἶπεν +ὁ +ἄγγελος +πρός +αὐτόν +Ζῶσαι +καί +ὑπόδησαι +τά +σανδάλια +σου +δέ +ἐποίησεν +οὕτως +καί +λέγει +αὐτῷ +Περιβαλοῦ +τό +ἱμάτιον +σου +καί +ἀκολούθει +μοι +καί +ἐξελθών +ἠκολούθει +καί +οὐκ +ᾔδει +ὅτι +ἀληθές +ἐστιν +τό +γινόμενον +διά +τοῦ +ἀγγέλου +δέ +ἐδόκει +ὅραμα +βλέπειν +δέ +διελθόντες +πρώτην +καί +δευτέραν +φυλακήν +ἦλθαν +ἐπί +τήν +πύλην +τήν +σιδηρᾶν +τήν +φέρουσαν +εἰς +τήν +πόλιν +ἥτις +αὐτομάτη +ἠνοίγη +αὐτοῖς +καί +ἐξελθόντες +προῆλθον +ῥύμην +μίαν +καί +εὐθέως +ἀπέστη +ὁ +ἄγγελος +ἀπ’ +αὐτοῦ +καί +ὁ +Πέτρος +ἐν +ἑαυτῷ +γενόμενος +εἶπεν +Νῦν +οἶδα +ἀληθῶς +ὅτι +ἐξαπέστειλεν +ὁ +Κύριος +τόν +ἄγγελον +αὐτοῦ +καί +ἐξείλατο +με +ἐκ +χειρός +Ἠρῴδου +καί +πάσης +τῆς +προσδοκίας +τοῦ +λαοῦ +τῶν +Ἰουδαίων +τε +συνιδών +ἦλθεν +ἐπί +τήν +οἰκίαν +τῆς +Μαρίας +τῆς +μητρός +Ἰωάνου +τοῦ +ἐπικαλουμένου +Μάρκου +οὗ +ἱκανοί +ἦσαν +συνηθροισμένοι +καί +προσευχόμενοι +δέ +κρούσαντος +αὐτοῦ +τήν +θύραν +τοῦ +πυλῶνος +προσῆλθεν +ὑπακοῦσαι +παιδίσκη +ὀνόματι +Ῥόδη +καί +ἐπιγνοῦσα +τήν +φωνήν +τοῦ +Πέτρου +ἀπό +τῆς +χαρᾶς +οὐκ +ἤνοιξεν +τόν +πυλῶνα +δέ +εἰσδραμοῦσα +ἀπήγγειλεν +ἑστάναι +τόν +Πέτρον +πρό +τοῦ +πυλῶνος +δέ +οἱ +πρός +αὐτήν +εἶπαν +Μαίνῃ +δέ +ἡ +διϊσχυρίζετο +οὕτως +ἔχειν +δέ +οἱ +ἔλεγον +Ὁ +ἄγγελος +ἐστιν +αὐτοῦ +δέ +ὁ +Πέτρος +ἐπέμενεν +κρούων +δέ +ἀνοίξαντες +εἶδαν +αὐτόν +καί +ἐξέστησαν +δέ +κατασείσας +αὐτοῖς +τῇ +χειρί +σιγᾶν +διηγήσατο +αὐτοῖς +πῶς +ὁ +Κύριος +αὐτόν +ἐξήγαγεν +ἐκ +τῆς +φυλακῆς +τε +εἶπεν +Ἀπαγγείλατε +Ἰακώβῳ +καί +τοῖς +ἀδελφοῖς +ταῦτα +καί +ἐξελθών +ἐπορεύθη +εἰς +ἕτερον +τόπον +δέ +Γενομένης +ἡμέρας +ἦν +τάραχος +οὐκ +ὀλίγος +ἐν +τοῖς +στρατιώταις +ἄρα +τί +ὁ +Πέτρος +ἐγένετο +δέ +Ἠρῴδης +ἐπιζητήσας +αὐτόν +καί +μή +εὑρών +ἀνακρίνας +τούς +φύλακας +ἐκέλευσεν +ἀπαχθῆναι +καί +κατελθών +ἀπό +τῆς +Ἰουδαίας +εἰς +Καισάριαν +διέτριβεν +δέ +Ἦν +θυμομαχῶν +Τυρίοις +καί +Σιδωνίοις +δέ +ὁμοθυμαδόν +παρῆσαν +πρός +αὐτόν +καί +πείσαντες +Βλάστον +τόν +ἐπί +τοῦ +κοιτῶνος +τοῦ +βασιλέως +ᾐτοῦντο +εἰρήνην +διά +τό +τρέφεσθαι +αὐτῶν +τήν +χώραν +ἀπό +τῆς +βασιλικῆς +δέ +τακτῇ +ἡμέρᾳ +ὁ +Ἠρῴδης +ἐνδυσάμενος +ἐσθῆτα +βασιλικήν +καθίσας +ἐπί +τοῦ +βήματος +ἐδημηγόρει +πρός +αὐτούς +δέ +ὁ +δῆμος +ἐπεφώνει +Θεοῦ +φωνή +καί +οὐκ +ἀνθρώπου +δέ +παραχρῆμα +ἐπάταξεν +αὐτόν +ἄγγελος +Κυρίου +ἀνθ’ +ὧν +οὐκ +ἔδωκεν +τήν +δόξαν +τῷ +Θεῷ +καί +γενόμενος +σκωληκόβρωτος +ἐξέψυξεν +δέ +Ὁ +λόγος +τοῦ +Κυρίου +ηὔξανεν +καί +ἐπληθύνετο +δέ +Βαρνάβας +καί +Σαῦλος +ὑπέστρεψαν +ἐξ +Ἱερουσαλήμ +πληρώσαντες +τήν +διακονίαν +συνπαραλαβόντες +Ἰωάνην +τόν +ἐπικληθέντα +Μάρκον +δέ +Ἦσαν +ἐν +Ἀντιοχείᾳ +κατά +τήν +οὖσαν +ἐκκλησίαν +προφῆται +καί +διδάσκαλοι +τε +ὅ +Βαρνάβας +καί +Συμεών +ὁ +καλούμενος +Νίγερ +καί +Λούκιος +ὁ +Κυρηναῖος +τε +Μαναήν +Ἠρῴδου +τοῦ +τετραάρχου +σύντροφος +καί +Σαῦλος +δέ +Λειτουργούντων +αὐτῶν +τῷ +Κυρίῳ +καί +νηστευόντων +εἶπεν +τό +Πνεῦμα +τό +Ἅγιον +δή +Ἀφορίσατε +μοι +τόν +Βαρνάβαν +καί +Σαῦλον +εἰς +τό +ἔργον +ὅ +προσκέκλημαι +αὐτούς +τότε +νηστεύσαντες +καί +προσευξάμενοι +καί +ἐπιθέντες +τάς +χεῖρας +αὐτοῖς +ἀπέλυσαν +μέν +οὖν +Αὐτοί +ἐκπεμφθέντες +ὑπό +τοῦ +Ἁγίου +Πνεύματος +κατῆλθον +εἰς +Σελεύκιαν +τε +ἐκεῖθεν +ἀπέπλευσαν +εἰς +Κύπρον +καί +γενόμενοι +ἐν +Σαλαμῖνι +κατήγγελλον +τόν +λόγον +τοῦ +Θεοῦ +ἐν +ταῖς +συναγωγαῖς +τῶν +Ἰουδαίων +δέ +εἶχον +καί +Ἰωάνην +ὑπηρέτην +δέ +διελθόντες +ὅλην +τήν +νῆσον +ἄχρι +Πάφου +εὗρον +ἄνδρα +τινά +μάγον +ψευδοπροφήτην +Ἰουδαῖον +ᾧ +ὄνομα +Βαριησοῦς +ὅς +ἦν +σύν +τῷ +ἀνθυπάτῳ +Σεργίῳ +Παύλῳ +ἀνδρί +συνετῷ +οὗτος +προσκαλεσάμενος +Βαρνάβαν +καί +Σαῦλον +ἐπεζήτησεν +ἀκοῦσαι +τόν +λόγον +τοῦ +Θεοῦ +δέ +ἀνθίστατο +αὐτοῖς +Ἐλύμας +ὁ +μάγος +γάρ +οὕτως +μεθερμηνεύεται +τό +ὄνομα +αὐτοῦ +ζητῶν +διαστρέψαι +τόν +ἀνθύπατον +ἀπό +τῆς +πίστεως +δέ +Σαῦλος +ὁ +καί +Παῦλος +πλησθείς +Πνεύματος +Ἁγίου +ἀτενίσας +εἰς +αὐτόν +εἶπεν +Ὦ +πλήρης +παντός +δόλου +καί +πάσης +ῥᾳδιουργίας +υἱέ +διαβόλου +ἐχθρέ +πάσης +δικαιοσύνης +οὐ +παύσῃ +διαστρέφων +τάς +ὁδούς +τοῦ +Κυρίου +τάς +εὐθείας +καί +νῦν +ἰδού +χείρ +Κυρίου +ἐπί +σέ +καί +ἔσῃ +τυφλός +μή +βλέπων +τόν +ἥλιον +ἄχρι +καιροῦ +δέ +παραχρῆμα +ἔπεσεν +ἐπ’ +αὐτόν +ἀχλύς +καί +σκότος +καί +περιάγων +ἐζήτει +χειραγωγούς +τότε +ὁ +ἀνθύπατος +ἰδών +τό +γεγονός +ἐπίστευσεν +ἐκπλησσόμενος +ἐπί +τῇ +διδαχῇ +τοῦ +Κυρίου +δέ +Ἀναχθέντες +ἀπό +τῆς +Πάφου +οἱ +περί +Παῦλον +ἦλθον +εἰς +Πέργην +τῆς +Παμφυλίας +δέ +Ἰωάνης +ἀποχωρήσας +ἀπ’ +αὐτῶν +ὑπέστρεψεν +εἰς +Ἱεροσόλυμα +δέ +Αὐτοί +διελθόντες +ἀπό +τῆς +Πέργης +παρεγένοντο +εἰς +Ἀντιόχειαν +τήν +Πισιδίαν +καί +ἐλθόντες +εἰς +τήν +συναγωγήν +τῇ +ἡμέρᾳ +τῶν +σαββάτων +ἐκάθισαν +δέ +μετά +τήν +ἀνάγνωσιν +τοῦ +νόμου +καί +τῶν +προφητῶν +ἀπέστειλαν +οἱ +ἀρχισυνάγωγοι +πρός +αὐτούς +λέγοντες +Ἄνδρες +ἀδελφοί +εἴ +ἐστιν +ἐν +ὑμῖν +τίς +λόγος +παρακλήσεως +πρός +τόν +λαόν +λέγετε +δέ +Παῦλος +ἀναστάς +καί +κατασείσας +τῇ +χειρί +εἶπεν +Ἄνδρες +Ἰσραηλεῖται +καί +οἱ +φοβούμενοι +τόν +Θεόν +ἀκούσατε +ὁ +Θεός +τοῦ +λαοῦ +τούτου +Ἰσραήλ +ἐξελέξατο +τούς +πατέρας +ἡμῶν +καί +τόν +λαόν +ὕψωσεν +ἐν +τῇ +παροικίᾳ +ἐν +γῇ +Αἰγύπτου +καί +μετά +βραχίονος +ὑψηλοῦ +ἐξήγαγεν +αὐτούς +ἐξ +αὐτῆς +καί +ὡς +τεσσερακονταετῆ +χρόνον +ἐτροποφόρησεν +αὐτούς +ἐν +τῇ +ἐρήμῳ +καί +καθελών +ἔθνη +ἑπτά +ἐν +γῇ +Χανάαν +κατεκληρονόμησεν +τήν +γῆν +αὐτῶν +ὡς +ἔτεσιν +τετρακοσίοις +καί +πεντήκοντα +καί +μετά +ταῦτα +ἔδωκεν +κριτάς +ἕως +Σαμουήλ +προφήτου +κἀκεῖθεν +ᾐτήσαντο +βασιλέα +καί +ἔδωκεν +αὐτοῖς +ὁ +Θεός +τόν +Σαούλ +υἱόν +Κείς +ἄνδρα +ἐκ +φυλῆς +Βενιαμείν +ἔτη +τεσσεράκοντα +καί +μεταστήσας +αὐτόν +ἤγειρεν +τόν +Δαυείδ +αὐτοῖς +εἰς +βασιλέα +ᾧ +καί +εἶπεν +μαρτυρήσας +Εὗρον +Δαυείδ +τόν +τοῦ +Ἰεσσαί +ἄνδρα +κατά +τήν +καρδίαν +μου +ὅς +ποιήσει +πάντα +τά +θελήματα +μου +ὁ +Θεός +ἀπό +τούτου +τοῦ +σπέρματος +κατ’ +ἐπαγγελίαν +ἤγαγεν +τῷ +Ἰσραήλ +Σωτῆρα +Ἰησοῦν +προκηρύξαντος +Ἰωάνου +πρό +προσώπου +τῆς +εἰσόδου +αὐτοῦ +βάπτισμα +μετανοίας +παντί +τῷ +λαῷ +Ἰσραήλ +δέ +ὡς +ἐπλήρου +Ἰωάνης +τόν +δρόμον +ἔλεγεν +Τί +ἐμέ +εἶναι +ὑπονοεῖτε +οὐκ +εἰμί +ἐγώ +ἀλλ’ +ἰδού +ἔρχεται +μετ’ +ἐμέ +οὗ +οὐκ +εἰμί +ἄξιος +τό +ὑπόδημα +τῶν +ποδῶν +λῦσαι +Ἄνδρες +ἀδελφοί +υἱοί +γένους +Ἀβραάμ +καί +οἱ +ἐν +ὑμῖν +φοβούμενοι +τόν +Θεόν +ἡμῖν +ὁ +λόγος +τῆς +σωτηρίας +ταύτης +ἐξαπεστάλη +γάρ +οἱ +κατοικοῦντες +ἐν +Ἱερουσαλήμ +καί +οἱ +ἄρχοντες +αὐτῶν +τοῦτον +ἀγνοήσαντες +καί +τάς +φωνάς +τῶν +προφητῶν +τάς +κατά +πᾶν +σάββατον +ἀναγινωσκομένας +κρίναντες +ἐπλήρωσαν +καί +μηδεμίαν +αἰτίαν +θανάτου +εὑρόντες +ᾐτήσαντο +Πειλᾶτον +ἀναιρεθῆναι +αὐτόν +δέ +ὡς +ἐτέλεσαν +πάντα +τά +περί +αὐτοῦ +γεγραμμένα +καθελόντες +ἀπό +τοῦ +ξύλου +ἔθηκαν +εἰς +μνημεῖον +δέ +ὁ +Θεός +ἤγειρεν +αὐτόν +ἐκ +νεκρῶν +ὅς +ὤφθη +ἐπί +ἡμέρας +πλείους +τοῖς +συναναβᾶσιν +αὐτῷ +ἀπό +τῆς +Γαλιλαίας +εἰς +Ἰερουσαλήμ +οἵτινες +νῦν +εἰσιν +μάρτυρες +αὐτοῦ +πρός +τόν +λαόν +καί +ἡμεῖς +ὑμᾶς +εὐαγγελιζόμεθα +τήν +πρός +τούς +πατέρας +γενομένην +ἐπαγγελίαν +ὅτι +ταύτην +ὁ +Θεός +ἐκπεπλήρωκεν +τοῖς +τέκνοις +ἡμῶν +ἀναστήσας +Ἰησοῦν +ὡς +καί +ἐν +τῷ +ψαλμῷ +τῷ +δευτέρῳ +γέγραπται +Υἱός +μου +εἶ +σύ +ἐγώ +σήμερον +γεγέννηκα +σε +δέ +ὅτι +ἀνέστησεν +αὐτόν +ἐκ +νεκρῶν +μηκέτι +μέλλοντα +ὑποστρέφειν +εἰς +διαφθοράν +οὕτως +εἴρηκεν +ὅτι +Δώσω +ὑμῖν +τά +ὅσια +Δαυείδ +τά +πιστά +διότι +καί +ἐν +ἑτέρῳ +λέγει +Οὐ +δώσεις +τόν +Ὅσιον +σου +ἰδεῖν +διαφθοράν +γάρ +μέν +Δαυείδ +ἰδίᾳ +γενεᾷ +ὑπηρετήσας +τῇ +τοῦ +Θεοῦ +βουλῇ +ἐκοιμήθη +καί +προσετέθη +πρός +τούς +πατέρας +αὐτοῦ +καί +εἶδεν +διαφθοράν +δέ +ὅν +ὁ +Θεός +ἤγειρεν +οὐκ +εἶδεν +διαφθοράν +οὖν +γνωστόν +ἔστω +ὑμῖν +ἄνδρες +ἀδελφοί +ὅτι +διά +τούτου +ὑμῖν +ἄφεσις +ἁμαρτιῶν +καταγγέλλεται +καί +ἀπό +πάντων +ὧν +οὐκ +ἠδυνήθητε +ἐν +νόμῳ +Μωϋσέως +δικαιωθῆναι +ἐν +τούτῳ +πᾶς +ὁ +πιστεύων +δικαιοῦται +οὖν +βλέπετε +μή +ἐπέλθῃ +τό +εἰρημένον +ἐν +τοῖς +προφήταις +Ἴδετε +οἱ +καταφρονηταί +καί +θαυμάσατε +καί +ἀφανίσθητε +ὅτι +ἔργον +ἐργάζομαι +ἐγώ +ἐν +ταῖς +ἡμέραις +ὑμῶν +ἔργον +ὅ +οὐ +μή +πιστεύσητε +ἐάν +τις +ἐκδιηγῆται +ὑμῖν +δέ +Ἐξιόντων +αὐτῶν +παρεκάλουν +εἰς +τό +μεταξύ +σάββατον +λαληθῆναι +αὐτοῖς +τά +ῥήματα +ταῦτα +δέ +λυθείσης +τῆς +συναγωγῆς +ἠκολούθησαν +πολλοί +τῶν +Ἰουδαίων +καί +τῶν +σεβομένων +προσηλύτων +τῷ +Παύλῳ +καί +τῷ +Βαρνάβᾳ +οἵτινες +προσλαλοῦντες +αὐτοῖς +ἔπειθον +αὐτούς +προσμένειν +τῇ +χάριτι +τοῦ +Θεοῦ +δέ +Τῷ +ἐρχομένῳ +σαββάτῳ +σχεδόν +πᾶσα +ἡ +πόλις +συνήχθη +ἀκοῦσαι +τόν +λόγον +τοῦ +Θεοῦ +δέ +οἱ +Ἰουδαῖοι +ἰδόντες +τούς +ὄχλους +ἐπλήσθησαν +ζήλου +καί +ἀντέλεγον +τοῖς +ὑπό +Παύλου +λαλουμένοις +βλασφημοῦντες +τε +παρρησιασάμενοι +ὁ +Παῦλος +καί +ὁ +Βαρνάβας +εἶπαν +ἦν +ἀναγκαῖον +Ὑμῖν +πρῶτον +λαληθῆναι +τόν +λόγον +τοῦ +Θεοῦ +ἐπειδή +ἀπωθεῖσθε +αὐτόν +καί +οὐκ +κρίνετε +ἑαυτούς +ἀξίους +τῆς +αἰωνίου +ζωῆς +ἰδού +στρεφόμεθα +εἰς +τά +ἔθνη +γάρ +οὕτως +ἐντέταλται +ἡμῖν +ὁ +Κύριος +Τέθεικα +σε +εἰς +φῶς +ἐθνῶν +τοῦ +εἶναι +σε +εἰς +σωτηρίαν +ἕως +ἐσχάτου +τῆς +γῆς +δέ +ἀκούοντα +τά +ἔθνη +ἔχαιρον +καί +ἐδόξαζον +τόν +λόγον +τοῦ +Κυρίου +καί +ἐπίστευσαν +ὅσοι +ἦσαν +τεταγμένοι +εἰς +ζωήν +αἰώνιον +δέ +διεφέρετο +ὁ +λόγος +τοῦ +Κυρίου +δι’ +ὅλης +τῆς +χώρας +δέ +οἱ +Ἰουδαῖοι +παρώτρυναν +τάς +σεβομένας +γυναῖκας +τάς +εὐσχήμονας +καί +τούς +πρώτους +τῆς +πόλεως +καί +ἐπήγειραν +διωγμόν +ἐπί +τόν +Παῦλον +καί +Βαρνάβαν +καί +ἐξέβαλον +αὐτούς +ἀπό +τῶν +ὁρίων +αὐτῶν +δέ +οἱ +ἐκτιναξάμενοι +τόν +κονιορτόν +τῶν +ποδῶν +ἐπ’ +αὐτούς +ἦλθον +εἰς +Ἰκόνιον +τε +οἵ +μαθηταί +ἐπληροῦντο +χαρᾶς +καί +Πνεύματος +Ἁγίου +δέ +Ἐγένετο +ἐν +Ἰκονίῳ +κατά +τό +αὐτό +εἰσελθεῖν +αὐτούς +εἰς +τήν +συναγωγήν +τῶν +Ἰουδαίων +καί +λαλῆσαι +οὕτως +ὥστε +πιστεῦσαι +τε +Ἰουδαίων +καί +Ἑλλήνων +πολύ +πλῆθος +δέ +οἱ +ἀπειθήσαντες +Ἰουδαῖοι +ἐπήγειραν +καί +ἐκάκωσαν +τάς +ψυχάς +τῶν +ἐθνῶν +κατά +τῶν +ἀδελφῶν +οὖν +μέν +ἱκανόν +χρόνον +διέτριψαν +παρρησιαζόμενοι +ἐπί +τῷ +Κυρίῳ +τῷ +μαρτυροῦντι +ἐπί +τῷ +λόγῳ +τῆς +χάριτος +αὐτοῦ +διδόντι +σημεῖα +καί +τέρατα +γίνεσθαι +διά +τῶν +χειρῶν +αὐτῶν +δέ +ἐσχίσθη +τό +πλῆθος +τῆς +πόλεως +καί +μέν +οἱ +ἦσαν +σύν +τοῖς +Ἰουδαίοις +δέ +οἱ +σύν +τοῖς +ἀποστόλοις +δέ +ὡς +ἐγένετο +ὁρμή +τῶν +τε +ἐθνῶν +καί +Ἰουδαίων +σύν +τοῖς +ἄρχουσιν +αὐτῶν +ὑβρίσαι +καί +λιθοβολῆσαι +αὐτούς +συνιδόντες +κατέφυγον +εἰς +τάς +πόλεις +τῆς +Λυκαονίας +Λύστραν +καί +Δέρβην +καί +τήν +περίχωρον +κἀκεῖ +εὐαγγελιζόμενοι +ἦσαν +Καί +τις +ἀνήρ +ἀδύνατος +τοῖς +ποσίν +ἐν +Λύστροις +ἐκάθητο +χωλός +ἐκ +κοιλίας +μητρός +αὐτοῦ +ὅς +οὐδέποτε +περιεπάτησεν +οὗτος +ἤκουεν +τοῦ +Παύλου +λαλοῦντος +ὅς +ἀτενίσας +αὐτῷ +καί +ἰδών +ὅτι +ἔχει +πίστιν +τοῦ +σωθῆναι +εἶπεν +μεγάλῃ +φωνῇ +Ἀνάστηθι +ἐπί +τούς +πόδας +σου +ὀρθός +καί +ἥλατο +καί +περιεπάτει +τε +οἵ +ὄχλοι +ἰδόντες +ὅ +ἐποίησεν +Παῦλος +ἐπῆραν +τήν +φωνήν +αὐτῶν +Λυκαονιστί +λέγοντες +Οἱ +θεοί +ὁμοιωθέντες +ἀνθρώποις +κατέβησαν +πρός +ἡμᾶς +τε +ἐκάλουν +τόν +Βαρνάβαν +Δία +δέ +τόν +Παῦλον +Ἑρμῆν +ἐπειδή +αὐτός +ἦν +ὁ +ἡγούμενος +τοῦ +λόγου +τε +ὅ +ἱερεύς +τοῦ +Διός +τοῦ +ὄντος +πρό +τῆς +πόλεως +ταύρους +καί +στέμματα +ἐπί +τούς +πυλῶνας +ἐνέγκας +σύν +τοῖς +ὄχλοις +ἤθελεν +θύειν +δέ +ἀκούσαντες +οἱ +ἀπόστολοι +Βαρνάβας +καί +Παῦλος +διαρρήξαντες +τά +ἱμάτια +ἑαυτῶν +ἐξεπήδησαν +εἰς +τόν +ὄχλον +κράζοντες +καί +λέγοντες +Ἄνδρες +τί +ταῦτα +ποιεῖτε +καί +ἡμεῖς +ὁμοιοπαθεῖς +ὑμῖν +ἄνθρωποι +ἐσμεν +εὐαγγελιζόμενοι +ὑμᾶς +ἀπό +τούτων +τῶν +ματαίων +ἐπιστρέφειν +ἐπί +θεόν +ζῶντα +ὅς +ἐποίησεν +τόν +οὐρανόν +καί +τήν +γῆν +καί +τήν +θάλασσαν +καί +πάντα +τά +ἐν +αὐτοῖς +ὅς +ἐν +ταῖς +παρῳχημέναις +γενεαῖς +εἴασεν +πάντα +τά +ἔθνη +πορεύεσθαι +ταῖς +ὁδοῖς +αὐτῶν +καίτοι +οὐκ +ἀμάρτυρον +αὑτόν +ἀφῆκεν +ἀγαθουργῶν +οὐρανόθεν +ὑμῖν +ὑετούς +διδούς +καί +καιρούς +καρποφόρους +ἐμπιπλῶν +τροφῆς +καί +εὐφροσύνης +τάς +καρδίας +ὑμῶν +καί +ταῦτα +λέγοντες +μόλις +κατέπαυσαν +τούς +ὄχλους +τοῦ +μή +θύειν +αὐτοῖς +δέ +Ἐπῆλθαν +ἀπό +Ἀντιοχείας +καί +Ἰκονίου +Ἰουδαῖοι +καί +πείσαντες +τούς +ὄχλους +καί +λιθάσαντες +τόν +Παῦλον +ἔσυρον +ἔξω +τῆς +πόλεως +νομίζοντες +αὐτόν +τεθνηκέναι +δέ +κυκλωσάντων +τῶν +μαθητῶν +αὐτόν +ἀναστάς +εἰσῆλθεν +εἰς +τήν +πόλιν +Καί +τῇ +ἐπαύριον +ἐξῆλθεν +σύν +τῷ +Βαρνάβᾳ +εἰς +Δέρβην +τε +εὐαγγελιζόμενοι +τήν +πόλιν +ἐκείνην +καί +μαθητεύσαντες +ἱκανούς +ὑπέστρεψαν +εἰς +τήν +Λύστραν +καί +εἰς +Ἰκόνιον +καί +εἰς +Ἀντιόχειαν +ἐπιστηρίζοντες +τάς +ψυχάς +τῶν +μαθητῶν +παρακαλοῦντες +ἐμμένειν +τῇ +πίστει +καί +ὅτι +δεῖ +διά +πολλῶν +θλίψεων +ἡμᾶς +εἰσελθεῖν +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +δέ +χειροτονήσαντες +αὐτοῖς +κατ’ +ἐκκλησίαν +πρεσβυτέρους +προσευξάμενοι +μετά +νηστειῶν +παρέθεντο +αὐτούς +τῷ +Κυρίῳ +εἰς +ὅν +πεπιστεύκεισαν +καί +διελθόντες +τήν +Πισιδίαν +ἦλθον +εἰς +τήν +Παμφυλίαν +καί +λαλήσαντες +ἐν +Πέργῃ +τόν +λόγον +κατέβησαν +εἰς +Ἀτταλίαν +κἀκεῖθεν +ἀπέπλευσαν +εἰς +Ἀντιόχειαν +ὅθεν +ἦσαν +παραδεδομένοι +τῇ +χάριτι +τοῦ +Θεοῦ +εἰς +τό +ἔργον +ὅ +ἐπλήρωσαν +δέ +Παραγενόμενοι +καί +συναγαγόντες +τήν +ἐκκλησίαν +ἀνήγγελλον +ὅσα +ἐποίησεν +ὁ +Θεός +μετ’ +αὐτῶν +καί +ὅτι +ἤνοιξεν +τοῖς +ἔθνεσιν +θύραν +πίστεως +δέ +διέτριβον +χρόνον +οὐκ +ὀλίγον +σύν +τοῖς +μαθηταῖς +Καί +τινες +κατελθόντες +ἀπό +τῆς +Ἰουδαίας +ἐδίδασκον +τούς +ἀδελφούς +ὅτι +Ἐάν +μή +περιτμηθῆτε +τῷ +ἔθει +τῷ +Μωϋσέως +οὐ +δύνασθε +σωθῆναι +δέ +γενομένης +στάσεως +καί +ζητήσεως +οὐκ +ὀλίγης +τῷ +Παύλῳ +καί +τῷ +Βαρνάβᾳ +πρός +αὐτούς +ἔταξαν +ἀναβαίνειν +Παῦλον +καί +Βαρνάβαν +καί +τινας +ἄλλους +ἐξ +αὐτῶν +πρός +τούς +ἀποστόλους +καί +πρεσβυτέρους +εἰς +Ἱερουσαλήμ +περί +τοῦ +ζητήματος +τούτου +μέν +οὖν +Οἱ +προπεμφθέντες +ὑπό +τῆς +ἐκκλησίας +διήρχοντο +τήν +τε +Φοινίκην +καί +Σαμάριαν +ἐκδιηγούμενοι +τήν +ἐπιστροφήν +τῶν +ἐθνῶν +καί +ἐποίουν +χαράν +μεγάλην +πᾶσιν +τοῖς +ἀδελφοῖς +δέ +παραγενόμενοι +εἰς +Ἱεροσόλυμα +παρεδέχθησαν +ἀπό +τῆς +ἐκκλησίας +καί +τῶν +ἀποστόλων +καί +τῶν +πρεσβυτέρων +τε +ἀνήγγειλαν +ὅσα +ὁ +Θεός +ἐποίησεν +μετ’ +αὐτῶν +δέ +Ἐξανέστησαν +τινες +τῶν +ἀπό +τῆς +αἱρέσεως +τῶν +Φαρισαίων +πεπιστευκότες +λέγοντες +ὅτι +δεῖ +περιτέμνειν +αὐτούς +τε +παραγγέλλειν +τηρεῖν +τόν +νόμον +Μωϋσέως +τε +Συνήχθησαν +οἱ +ἀπόστολοι +καί +οἱ +πρεσβύτεροι +ἰδεῖν +περί +τοῦ +λόγου +τούτου +δέ +Πολλῆς +ζητήσεως +γενομένης +ἀναστάς +Πέτρος +εἶπεν +πρός +αὐτούς +Ἄνδρες +ἀδελφοί +ὑμεῖς +ἐπίστασθε +ὅτι +ἀφ’ +ἡμερῶν +ἀρχαίων +ἐν +ὑμῖν +ἐξελέξατο +ὁ +Θεός +διά +τοῦ +στόματος +μου +ἀκοῦσαι +τά +ἔθνη +τόν +λόγον +τοῦ +εὐαγγελίου +καί +πιστεῦσαι +καί +ὁ +καρδιογνώστης +Θεός +ἐμαρτύρησεν +αὐτοῖς +δούς +τό +Πνεῦμα +τό +Ἅγιον +καθώς +καί +ἡμῖν +καί +οὐθέν +διέκρινεν +μεταξύ +τε +ἡμῶν +καί +αὐτῶν +τῇ +πίστει +καθαρίσας +τάς +καρδίας +αὐτῶν +οὖν +νῦν +τί +πειράζετε +τόν +Θεόν +ἐπιθεῖναι +ζυγόν +ἐπί +τόν +τράχηλον +τῶν +μαθητῶν +ὅν +βαστάσαι +οὔτε +οἱ +πατέρες +ἡμῶν +οὔτε +ἡμεῖς +ἰσχύσαμεν +ἀλλά +πιστεύομεν +διά +τῆς +χάριτος +τοῦ +Κυρίου +Ἰησοῦ +σωθῆναι +καθ’ +ὅν +τρόπον +κἀκεῖνοι +δέ +Ἐσίγησεν +πᾶν +τό +πλῆθος +καί +ἤκουον +Βαρνάβα +καί +Παύλου +ἐξηγουμένων +σημεῖα +καί +τέρατα +ὅσα +ἐποίησεν +ὁ +Θεός +ἐν +τοῖς +ἔθνεσιν +δι’ +αὐτῶν +δέ +Μετά +τό +σιγῆσαι +αὐτούς +ἀπεκρίθη +Ἰάκωβος +λέγων +Ἄνδρες +ἀδελφοί +ἀκούσατε +μου +Συμεών +ἐξηγήσατο +καθώς +πρῶτον +ὁ +Θεός +ἐπεσκέψατο +λαβεῖν +ἐξ +ἐθνῶν +λαόν +τῷ +ὀνόματι +αὐτοῦ +καί +τούτῳ +συμφωνοῦσιν +οἱ +λόγοι +τῶν +προφητῶν +καθώς +γέγραπται +Μετά +ταῦτα +ἀναστρέψω +καί +ἀνοικοδομήσω +τήν +σκηνήν +Δαυείδ +τήν +πεπτωκυῖαν +καί +τά +κατεστραμμένα +αὐτῆς +ἀνοικοδομήσω +καί +ἀνορθώσω +αὐτήν +ὅπως +ἄν +ἐκζητήσωσιν +οἱ +κατάλοιποι +τῶν +ἀνθρώπων +τόν +Κύριον +καί +πάντα +τά +ἔθνη +ἐφ’ +οὕς +ἐπικέκληται +τό +ὄνομα +μου +ἐπ’ +αὐτούς +λέγει +Κύριος +ποιῶν +ταῦτα +γνωστά +ἀπ’ +αἰῶνος +διό +ἐγώ +κρίνω +μή +παρενοχλεῖν +τοῖς +ἀπό +τῶν +ἐθνῶν +ἐπιστρέφουσιν +ἐπί +τόν +Θεόν +ἀλλά +ἐπιστεῖλαι +αὐτοῖς +τοῦ +ἀπέχεσθαι +τῶν +ἀλισγημάτων +τῶν +εἰδώλων +καί +τῆς +πορνείας +καί +πνικτοῦ +καί +τοῦ +αἵματος +γάρ +Μωϋσῆς +ἐκ +γενεῶν +ἀρχαίων +κατά +πόλιν +τούς +κηρύσσοντας +αὐτόν +ἔχει +ἐν +ταῖς +συναγωγαῖς +κατά +πᾶν +σάββατον +ἀναγινωσκόμενος +Τότε +ἔδοξε +τοῖς +ἀποστόλοις +καί +τοῖς +πρεσβυτέροις +σύν +ὅλῃ +τῇ +ἐκκλησίᾳ +ἐκλεξαμένους +ἄνδρας +ἐξ +αὐτῶν +πέμψαι +εἰς +Ἀντιόχειαν +σύν +τῷ +Παύλῳ +καί +Βαρνάβᾳ +Ἰούδαν +τόν +καλούμενον +Βαρσαββᾶν +καί +Σιλᾶν +ἄνδρας +ἡγουμένους +ἐν +τοῖς +ἀδελφοῖς +γράψαντες +διά +χειρός +αὐτῶν +Οἱ +ἀπόστολοι +καί +οἱ +πρεσβύτεροι +ἀδελφοί +τοῖς +κατά +τήν +Ἀντιόχειαν +καί +Συρίαν +καί +Κιλικίαν +ἀδελφοῖς +τοῖς +ἐξ +ἐθνῶν +χαίρειν +Ἐπειδή +ἠκούσαμεν +ὅτι +τινές +ἐξ +ἡμῶν +ἐτάραξαν +ὑμᾶς +λόγοις +ἀνασκευάζοντες +τάς +ψυχάς +ὑμῶν +οἷς +οὐ +διεστειλάμεθα +ἔδοξεν +ἡμῖν +γενομένοις +ὁμοθυμαδόν +ἐκλεξαμένους +ἄνδρας +πέμψαι +πρός +ὑμᾶς +σύν +τοῖς +ἀγαπητοῖς +ἡμῶν +Βαρνάβᾳ +καί +Παύλῳ +ἀνθρώποις +παραδεδωκόσι +τάς +ψυχάς +αὐτῶν +ὑπέρ +τοῦ +ὀνόματος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +οὖν +ἀπεστάλκαμεν +Ἰούδαν +καί +Σιλᾶν +καί +αὐτούς +διά +λόγου +ἀπαγγέλλοντας +τά +αὐτά +γάρ +ἔδοξεν +τῷ +Πνεύματι +τῷ +Ἁγίῳ +καί +ἡμῖν +μηδέν +πλέον +βάρος +ἐπιτίθεσθαι +ὑμῖν +πλήν +τούτων +τῶν +ἐπάναγκες +ἀπέχεσθαι +εἰδωλοθύτων +καί +αἵματος +καί +πνικτῶν +καί +πορνείας +ἐξ +ὧν +διατηροῦντες +ἑαυτούς +εὖ +πράξετε +Ἔρρωσθε +μέν +οὖν +Οἱ +ἀπολυθέντες +κατῆλθον +εἰς +Ἀντιόχειαν +καί +συναγαγόντες +τό +πλῆθος +ἐπέδωκαν +τήν +ἐπιστολήν +δέ +ἀναγνόντες +ἐχάρησαν +ἐπί +τῇ +παρακλήσει +τε +Ἰούδας +καί +Σιλᾶς +καί +αὐτοί +προφῆται +ὄντες +διά +λόγου +πολλοῦ +παρεκάλεσαν +τούς +ἀδελφούς +καί +ἐπεστήριξαν +δέ +ποιήσαντες +χρόνον +ἀπελύθησαν +μετ’ +εἰρήνης +ἀπό +τῶν +ἀδελφῶν +πρός +τούς +ἀποστείλαντας +αὐτούς +δέ +Παῦλος +καί +Βαρνάβας +διέτριβον +ἐν +Ἀντιοχείᾳ +διδάσκοντες +καί +εὐαγγελιζόμενοι +μετά +καί +ἑτέρων +πολλῶν +τόν +λόγον +τοῦ +Κυρίου +δέ +Μετά +τινας +ἡμέρας +εἶπεν +πρός +Βαρνάβαν +Παῦλος +δή +Ἐπιστρέψαντες +ἐπισκεψώμεθα +τούς +ἀδελφούς +κατά +πόλιν +πᾶσαν +ἐν +αἷς +κατηγγείλαμεν +τόν +λόγον +τοῦ +Κυρίου +πῶς +ἔχουσιν +δέ +Βαρνάβας +ἐβούλετο +συνπαραλαβεῖν +καί +τόν +Ἰωάνην +τόν +καλούμενον +Μάρκον +δέ +Παῦλος +ἠξίου +τόν +ἀποστάντα +ἀπ’ +αὐτῶν +ἀπό +Παμφυλίας +καί +μή +συνελθόντα +αὐτοῖς +εἰς +τό +ἔργον +μή +συνπαραλαμβάνειν +τοῦτον +δέ +ἐγένετο +παροξυσμός +ὥστε +ἀποχωρισθῆναι +αὐτούς +ἀπ’ +ἀλλήλων +τε +τόν +Βαρνάβαν +παραλαβόντα +τόν +Μάρκον +ἐκπλεῦσαι +εἰς +Κύπρον +δέ +Παῦλος +ἐπιλεξάμενος +Σιλᾶν +ἐξῆλθεν +παραδοθείς +τῇ +χάριτι +τοῦ +Κυρίου +ὑπό +τῶν +ἀδελφῶν +δέ +διήρχετο +τήν +Συρίαν +καί +Κιλικίαν +ἐπιστηρίζων +τάς +ἐκκλησίας +δέ +Κατήντησεν +καί +εἰς +Δέρβην +καί +εἰς +Λύστραν +καί +ἰδού +ἦν +ἐκεῖ +μαθητής +τις +ὀνόματι +Τιμόθεος +υἱός +γυναικός +Ἰουδαίας +πιστῆς +δέ +πατρός +Ἕλληνος +ὅς +ἐμαρτυρεῖτο +ὑπό +τῶν +ἐν +Λύστροις +καί +Ἰκονίῳ +ἀδελφῶν +ἠθέλησεν +ὁ +Παῦλος +τοῦτον +σύν +αὐτῷ +ἐξελθεῖν +καί +λαβών +περιέτεμεν +αὐτόν +διά +τούς +Ἰουδαίους +τούς +ὄντας +ἐν +τοῖς +τόποις +ἐκείνοις +γάρ +ᾔδεισαν +ἅπαντες +ὅτι +Ἕλλην +ὁ +πατήρ +αὐτοῦ +ὑπῆρχεν +δέ +Ὡς +διεπορεύοντο +τάς +πόλεις +παρεδίδοσαν +αὐτοῖς +φυλάσσειν +τά +δόγματα +τά +κεκριμένα +ὑπό +τῶν +ἀποστόλων +καί +πρεσβυτέρων +τῶν +ἐν +Ἱεροσολύμοις +μέν +οὖν +Αἱ +ἐκκλησίαι +ἐστερεοῦντο +τῇ +πίστει +καί +ἐπερίσσευον +τῷ +ἀριθμῷ +καθ’ +ἡμέραν +δέ +Διῆλθον +τήν +Φρυγίαν +καί +Γαλατικήν +χώραν +κωλυθέντες +ὑπό +τοῦ +Ἁγίου +Πνεύματος +λαλῆσαι +τόν +λόγον +ἐν +τῇ +Ἀσίᾳ +δέ +ἐλθόντες +κατά +τήν +Μυσίαν +ἐπείραζον +εἰς +τήν +Βιθυνίαν +πορευθῆναι +καί +οὐκ +εἴασεν +αὐτούς +τό +Πνεῦμα +Ἰησοῦ +δέ +παρελθόντες +τήν +Μυσίαν +κατέβησαν +εἰς +Τρῳάδα +καί +ὅραμα +διά +νυκτός +τῷ +Παύλῳ +ὤφθη +ἀνήρ +Μακεδών +τις +ἦν +ἑστώς +καί +παρακαλῶν +αὐτόν +καί +λέγων +Διαβάς +εἰς +Μακεδονίαν +βοήθησον +ἡμῖν +δέ +ὡς +τό +ὅραμα +εἶδεν +εὐθέως +ἐζητήσαμεν +ἐξελθεῖν +εἰς +Μακεδονίαν +συμβιβάζοντες +ὅτι +προσκέκληται +ὁ +Θεός +ἡμᾶς +εὐαγγελίσασθαι +αὐτούς +δέ +Ἀναχθέντες +ἀπό +Τρῳάδος +εὐθυδρομήσαμεν +εἰς +Σαμοθρᾴκην +δέ +τῇ +ἐπιούσῃ +εἰς +Νέαν +Πόλιν +κἀκεῖθεν +εἰς +Φιλίππους +ἥτις +ἐστίν +πρώτη +τῆς +μερίδος +Μακεδονίας +πόλις +κολωνία +δέ +Ἦμεν +διατρίβοντες +ἐν +ταύτῃ +τῇ +πόλει +ἡμέρας +τινάς +τε +τῇ +ἡμέρᾳ +τῶν +σαββάτων +ἐξήλθομεν +ἔξω +τῆς +πύλης +παρά +ποταμόν +οὗ +προσευχήν +εἶναι +ἐνομίζομεν +καί +καθίσαντες +ἐλαλοῦμεν +ταῖς +συνελθούσαις +γυναιξίν +καί +τις +γυνή +ὀνόματι +Λυδία +πορφυρόπωλις +πόλεως +Θυατείρων +σεβομένη +τόν +Θεόν +ἤκουεν +ἧς +τήν +καρδίαν +ὁ +Κύριος +διήνοιξεν +προσέχειν +τοῖς +λαλουμένοις +ὑπό +Παύλου +δέ +ὡς +ἐβαπτίσθη +καί +ὁ +οἶκος +αὐτῆς +παρεκάλεσεν +λέγουσα +Εἰ +κεκρίκατε +με +πιστήν +τῷ +Κυρίῳ +εἶναι +εἰσελθόντες +εἰς +τόν +οἶκον +μου +μένετε +καί +παρεβιάσατο +ἡμᾶς +δέ +Ἐγένετο +πορευομένων +ἡμῶν +εἰς +τήν +προσευχήν +παιδίσκην +τινά +ἔχουσαν +πνεῦμα +Πύθωνα +ὑπαντῆσαι +ἡμῖν +ἥτις +ἐργασίαν +πολλήν +παρεῖχεν +τοῖς +κυρίοις +αὐτῆς +μαντευομένη +αὕτη +κατακολουθοῦσα +τῷ +Παύλῳ +καί +ἡμῖν +ἔκραζεν +λέγουσα +Οὗτοι +οἱ +ἄνθρωποι +δοῦλοι +τοῦ +Θεοῦ +τοῦ +Ὑψίστου +εἰσίν +οἵτινες +καταγγέλλουσιν +ὑμῖν +ὁδόν +σωτηρίας +δέ +τοῦτο +ἐποίει +ἐπί +πολλάς +ἡμέρας +δέ +Παῦλος +διαπονηθείς +καί +ἐπιστρέψας +τῷ +πνεύματι +εἶπεν +Παραγγέλλω +σοι +ἐν +ὀνόματι +Ἰησοῦ +Χριστοῦ +ἐξελθεῖν +ἀπ’ +αὐτῆς +καί +ἐξῆλθεν +αὐτῇ +τῇ +ὥρᾳ +δέ +οἱ +κύριοι +αὐτῆς +Ἰδόντες +ὅτι +ἐξῆλθεν +ἡ +ἐλπίς +τῆς +ἐργασίας +αὐτῶν +ἐπιλαβόμενοι +τόν +Παῦλον +καί +τόν +Σιλᾶν +εἵλκυσαν +εἰς +τήν +ἀγοράν +ἐπί +τούς +ἄρχοντας +καί +προσαγαγόντες +αὐτούς +τοῖς +στρατηγοῖς +εἶπαν +Οὗτοι +οἱ +ἄνθρωποι +ἐκταράσσουσιν +ἡμῶν +τήν +πόλιν +Ἰουδαῖοι +ὑπάρχοντες +καί +καταγγέλλουσιν +ἔθη +ἅ +παραδέχεσθαι +οὐδέ +ποιεῖν +οὐκ +ἔξεστιν +ἡμῖν +Ῥωμαίοις +οὖσιν +καί +συνεπέστη +ὁ +ὄχλος +κατ’ +αὐτῶν +καί +οἱ +στρατηγοί +περιρήξαντες +αὐτῶν +τά +ἱμάτια +ἐκέλευον +ῥαβδίζειν +δέ +ἐπιθέντες +αὐτοῖς +πολλάς +πληγάς +ἔβαλον +εἰς +φυλακήν +παραγγείλαντες +τῷ +δεσμοφύλακι +ἀσφαλῶς +τηρεῖν +αὐτούς +ὅς +παραγγελίαν +τοιαύτην +λαβών +ἔβαλεν +αὐτούς +εἰς +τήν +ἐσωτέραν +φυλακήν +καί +τούς +πόδας +αὐτῶν +ἠσφαλίσατο +εἰς +τό +ξύλον +δέ +Κατά +τό +μεσονύκτιον +Παῦλος +καί +Σιλᾶς +προσευχόμενοι +ὕμνουν +τόν +Θεόν +δέ +ἐπηκροῶντο +αὐτῶν +οἱ +δέσμιοι +δέ +ἄφνω +σεισμός +μέγας +ἐγένετο +ὥστε +σαλευθῆναι +τά +θεμέλια +τοῦ +δεσμωτηρίου +δέ +ἠνεῴχθησαν +παραχρῆμα +αἱ +θύραι +πᾶσαι +καί +πάντων +τά +δεσμά +ἀνέθη +δέ +ὁ +δεσμοφύλαξ +ἔξυπνος +γενόμενος +καί +ἰδών +ἀνεῳγμένας +τάς +θύρας +τῆς +φυλακῆς +σπασάμενος +τήν +μάχαιραν +ἤμελλεν +ἑαυτόν +ἀναιρεῖν +νομίζων +ἐκπεφευγέναι +τούς +δεσμίους +δέ +ἐφώνησεν +Παῦλος +μεγάλῃ +φωνῇ +λέγων +Μηδέν +κακόν +πράξῃς +σεαυτῷ +γάρ +ἅπαντες +ἐσμεν +ἐνθάδε +δέ +αἰτήσας +φῶτα +εἰσεπήδησεν +καί +ἔντρομος +γενόμενος +προσέπεσεν +τῷ +Παύλῳ +καί +Σιλᾷ +καί +προαγαγών +αὐτούς +ἔξω +ἔφη +Κύριοι +τί +με +ποιεῖν +δεῖ +ἵνα +σωθῶ +δέ +οἱ +εἶπαν +Πίστευσον +ἐπί +τόν +Κύριον +Ἰησοῦν +καί +σωθήσῃ +σύ +καί +ὁ +οἶκος +σου +καί +ἐλάλησαν +αὐτῷ +τόν +λόγον +τοῦ +Θεοῦ +σύν +πᾶσιν +τοῖς +ἐν +τῇ +οἰκίᾳ +αὐτοῦ +καί +παραλαβών +αὐτούς +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +τῆς +νυκτός +ἔλουσεν +ἀπό +τῶν +πληγῶν +καί +ἐβαπτίσθη +αὐτός +καί +οἱ +αὐτοῦ +ἅπαντες +παραχρῆμα +τε +ἀναγαγών +αὐτούς +εἰς +τόν +οἶκον +παρέθηκεν +τράπεζαν +καί +ἠγαλλιάσατο +πανοικεί +πεπιστευκώς +τῷ +Θεῷ +δέ +Ἠμέρας +γενομένης +ἀπέστειλαν +οἱ +στρατηγοί +τούς +ῥαβδούχους +λέγοντες +Ἀπόλυσον +τούς +ἀνθρώπους +ἐκείνους +δέ +ἀπήγγειλεν +ὁ +δεσμοφύλαξ +τούς +λόγους +τούτους +πρός +τόν +Παῦλον +ὅτι +Ἀπέσταλκαν +οἱ +στρατηγοί +ἵνα +ἀπολυθῆτε +οὖν +νῦν +ἐξελθόντες +πορεύεσθε +ἐν +εἰρήνῃ +δέ +ὁ +Παῦλος +ἔφη +πρός +αὐτούς +Δείραντες +ἡμᾶς +δημοσίᾳ +ἀκατακρίτους +ἀνθρώπους +Ῥωμαίους +ὑπάρχοντας +ἔβαλαν +εἰς +φυλακήν +καί +νῦν +λάθρᾳ +ἡμᾶς +ἐκβάλλουσιν +γάρ +οὐ +ἀλλά +ἐλθόντες +αὐτοί +ἡμᾶς +ἐξαγαγέτωσαν +δέ +ἀπήγγειλαν +τοῖς +στρατηγοῖς +οἱ +ῥαβδοῦχοι +τά +ῥήματα +ταῦτα +δέ +ἐφοβήθησαν +ἀκούσαντες +ὅτι +Ῥωμαῖοι +εἰσιν +καί +ἐλθόντες +παρεκάλεσαν +αὐτούς +καί +ἐξαγαγόντες +ἠρώτων +ἀπελθεῖν +ἀπό +τῆς +πόλεως +δέ +ἐξελθόντες +ἀπό +τῆς +φυλακῆς +εἰσῆλθον +πρός +τήν +Λυδίαν +καί +ἰδόντες +παρεκάλεσαν +τούς +ἀδελφούς +καί +ἐξῆλθαν +δέ +Διοδεύσαντες +τήν +Ἀμφίπολιν +καί +τήν +Ἀπολλωνίαν +ἦλθον +εἰς +Θεσσαλονίκην +ὅπου +ἦν +συναγωγή +τῶν +Ἰουδαίων +δέ +κατά +τό +εἰωθός +τῷ +Παύλῳ +εἰσῆλθεν +πρός +αὐτούς +καί +ἐπί +σάββατα +τρία +διελέξατο +αὐτοῖς +ἀπό +τῶν +γραφῶν +διανοίγων +καί +παρατιθέμενος +ὅτι +ἔδει +τόν +Χριστόν +παθεῖν +καί +ἀναστῆναι +ἐκ +νεκρῶν +καί +ὅτι +οὗτος +ἐστιν +ὁ +Χριστός +ὁ +Ἰησοῦς +ὅν +ἐγώ +καταγγέλλω +ὑμῖν +καί +τινες +ἐξ +αὐτῶν +ἐπείσθησαν +καί +προσεκληρώθησαν +τῷ +Παύλῳ +καί +τῷ +Σιλᾷ +τε +τῶν +σεβομένων +Ἑλλήνων +πλῆθος +πολύ +τε +γυναικῶν +τῶν +πρώτων +οὐκ +ὀλίγαι +δέ +οἱ +Ἰουδαῖοι +Ζηλώσαντες +καί +προσλαβόμενοι +τῶν +ἀγοραίων +ἄνδρας +τινάς +πονηρούς +καί +ὀχλοποιήσαντες +ἐθορύβουν +τήν +πόλιν +καί +ἐπιστάντες +τῇ +οἰκίᾳ +Ἰάσονος +ἐζήτουν +αὐτούς +προαγαγεῖν +εἰς +τόν +δῆμον +δέ +μή +εὑρόντες +αὐτούς +ἔσυρον +Ἰάσονα +καί +τινας +ἀδελφούς +ἐπί +τούς +πολιτάρχας +βοῶντες +ὅτι +Οἱ +τήν +οἰκουμένην +ἀναστατώσαντες +οὗτοι +καί +ἐνθάδε +πάρεισιν +οὕς +ὑποδέδεκται +Ἰάσων +καί +οὗτοι +πάντες +ἀπέναντι +τῶν +δογμάτων +Καίσαρος +πράσσουσιν +βασιλέα +ἕτερον +εἶναι +Ἰησοῦν +λέγοντες +δέ +ἐτάραξαν +τόν +ὄχλον +καί +τούς +πολιτάρχας +ἀκούοντας +ταῦτα +καί +λαβόντες +τό +ἱκανόν +παρά +τοῦ +Ἰάσονος +καί +τῶν +λοιπῶν +ἀπέλυσαν +αὐτούς +δέ +Οἱ +ἀδελφοί +εὐθέως +διά +νυκτός +ἐξέπεμψαν +τε +τόν +Παῦλον +καί +τόν +Σιλᾶν +εἰς +Βέροιαν +οἵτινες +παραγενόμενοι +εἰς +τήν +συναγωγήν +τῶν +Ἰουδαίων +ἀπῄεσαν +δέ +οὗτοι +ἦσαν +εὐγενέστεροι +τῶν +ἐν +Θεσσαλονίκῃ +οἵτινες +ἐδέξαντο +τόν +λόγον +μετά +πάσης +προθυμίας +τό +καθ’ +ἡμέραν +ἀνακρίνοντες +τάς +γραφάς +εἰ +ἔχοι +ταῦτα +οὕτως +μέν +οὖν +πολλοί +ἐξ +αὐτῶν +ἐπίστευσαν +καί +τῶν +Ἑλληνίδων +γυναικῶν +τῶν +εὐσχημόνων +καί +ἀνδρῶν +οὐκ +ὀλίγοι +δέ +Ὡς +ἔγνωσαν +οἱ +ἀπό +τῆς +Θεσσαλονίκης +Ἰουδαῖοι +ὅτι +καί +ἐν +τῇ +Βεροίᾳ +κατηγγέλη +ὑπό +τοῦ +Παύλου +ὁ +λόγος +τοῦ +Θεοῦ +ἦλθον +κἀκεῖ +σαλεύοντες +καί +ταράσσοντες +τούς +ὄχλους +δέ +εὐθέως +τότε +τόν +Παῦλον +ἐξαπέστειλαν +οἱ +ἀδελφοί +πορεύεσθαι +ἕως +ἐπί +τήν +θάλασσαν +τε +ὑπέμειναν +τε +ὅ +Σιλᾶς +καί +ὁ +Τιμόθεος +ἐκεῖ +δέ +οἱ +καθιστάνοντες +τόν +Παῦλον +ἤγαγον +ἕως +Ἀθηνῶν +καί +λαβόντες +ἐντολήν +πρός +τόν +Σιλᾶν +καί +τόν +Τιμόθεον +ἵνα +ὡς +τάχιστα +ἔλθωσιν +πρός +αὐτόν +ἐξῄεσαν +δέ +Ἐν +ταῖς +Ἀθήναις +ἐκδεχομένου +αὐτούς +τοῦ +Παύλου +παρωξύνετο +τό +πνεῦμα +αὐτοῦ +ἐν +αὐτῷ +θεωροῦντος +κατείδωλον +οὖσαν +τήν +πόλιν +οὖν +μέν +διελέγετο +ἐν +τῇ +συναγωγῇ +τοῖς +Ἰουδαίοις +καί +τοῖς +σεβομένοις +καί +ἐν +τῇ +ἀγορᾷ +κατά +πᾶσαν +ἡμέραν +πρός +τούς +παρατυγχάνοντας +δέ +τινές +καί +τῶν +Ἐπικουρίων +καί +Στοϊκῶν +φιλοσόφων +συνέβαλλον +αὐτῷ +καί +τινες +ἔλεγον +ἄν +θέλοι +ὁ +σπερμολόγος +οὗτος +Τί +λέγειν +δέ +οἱ +δοκεῖ +Ξένων +δαιμονίων +καταγγελεύς +εἶναι +ὅτι +τόν +Ἰησοῦν +καί +τήν +ἀνάστασιν +εὐηγγελίζετο +δέ +ἐπιλαβόμενοι +αὐτοῦ +ἐπί +τόν +Ἄρειον +πάγον +ἤγαγον +λέγοντες +Δυνάμεθα +γνῶναι +τίς +ἡ +καινή +αὕτη +ἡ +ὑπό +σοῦ +λαλουμένη +διδαχή +γάρ +ξενίζοντα +τινα +εἰσφέρεις +εἰς +τάς +ἀκοάς +ἡμῶν +οὖν +βουλόμεθα +γνῶναι +τίνα +εἶναι +θέλει +ταῦτα +δέ +Ἀθηναῖοι +πάντες +καί +οἱ +ἐπιδημοῦντες +ξένοι +εἰς +οὐδέν +ἕτερον +ηὐκαίρουν +ἤ +λέγειν +τι +ἤ +ἀκούειν +τι +καινότερον +δέ +Σταθείς +Παῦλος +ἐν +μέσῳ +τοῦ +Ἀρείου +Πάγου +ἔφη +Ἄνδρες +Ἀθηναῖοι +κατά +πάντα +ὡς +δεισιδαιμονεστέρους +ὑμᾶς +θεωρῶ +γάρ +διερχόμενος +καί +ἀναθεωρῶν +τά +σεβάσματα +ὑμῶν +εὗρον +καί +βωμόν +ἐν +ᾧ +ἐπεγέγραπτο +ΑΓΝΩΣΤΩ +ΘΕΩ +οὖν +ὅ +ἀγνοοῦντες +εὐσεβεῖτε +τοῦτο +ἐγώ +καταγγέλλω +ὑμῖν +ὁ +Θεός +ὁ +ποιήσας +τόν +κόσμον +καί +πάντα +τά +ἐν +αὐτῷ +οὗτος +οὐρανοῦ +καί +γῆς +Κύριος +ὑπάρχων +οὐκ +ἐν +χειροποιήτοις +ναοῖς +κατοικεῖ +οὐδέ +ὑπό +χειρῶν +ἀνθρωπίνων +θεραπεύεται +προσδεόμενος +τινος +αὐτός +διδούς +πᾶσι +ζωήν +καί +πνοήν +καί +τά +πάντα +τε +ἐποίησεν +ἐξ +ἑνός +πᾶν +ἔθνος +ἀνθρώπων +κατοικεῖν +ἐπί +παντός +προσώπου +τῆς +γῆς +ὁρίσας +προστεταγμένους +καιρούς +καί +τάς +ὁροθεσίας +τῆς +κατοικίας +αὐτῶν +ζητεῖν +τόν +Θεόν +εἰ +ἄρα +γε +ψηλαφήσειαν +αὐτόν +καί +εὕροιεν +γε +καί +οὐ +μακράν +ἀπό +ἑνός +ἑκάστου +ἡμῶν +ὑπάρχοντα +γάρ +ἐν +αὐτῷ +ζῶμεν +καί +κινούμεθα +καί +ἐσμέν +ὡς +καί +τινες +τῶν +καθ’ +ὑμᾶς +ποιητῶν +εἰρήκασιν +γάρ +Τοῦ +καί +γένος +ἐσμέν +οὖν +ὑπάρχοντες +γένος +τοῦ +Θεοῦ +οὐκ +ὀφείλομεν +νομίζειν +χρυσῷ +ἤ +ἀργύρῳ +ἤ +λίθῳ +χαράγματι +τέχνης +καί +ἐνθυμήσεως +ἀνθρώπου +τό +Θεῖον +εἶναι +ὅμοιον +μέν +οὖν +τούς +χρόνους +τῆς +ἀγνοίας +ὑπεριδών +ὁ +Θεός +τά +νῦν +ἀπαγγέλλει +τοῖς +ἀνθρώποις +πάντας +πανταχοῦ +μετανοεῖν +καθότι +ἔστησεν +ἡμέραν +ἐν +ᾗ +μέλλει +κρίνειν +τήν +οἰκουμένην +ἐν +δικαιοσύνῃ +ἐν +ἀνδρί +ᾧ +ὥρισεν +πίστιν +παρασχών +πᾶσιν +ἀναστήσας +αὐτόν +ἐκ +νεκρῶν +δέ +ἀκούσαντες +ἀνάστασιν +νεκρῶν +μέν +οἱ +ἐχλεύαζον +δέ +οἱ +εἶπαν +Ἀκουσόμεθα +σου +περί +τούτου +καί +πάλιν +οὕτως +ὁ +Παῦλος +ἐξῆλθεν +ἐκ +μέσου +αὐτῶν +δέ +τινές +ἄνδρες +κολληθέντες +αὐτῷ +ἐπίστευσαν +ἐν +οἷς +καί +Διονύσιος +ὁ +Ἀρεοπαγείτης +καί +γυνή +ὀνόματι +Δάμαρις +καί +ἕτεροι +σύν +αὐτοῖς +Μετά +ταῦτα +χωρισθείς +ἐκ +τῶν +Ἀθηνῶν +ἦλθεν +εἰς +Κόρινθον +καί +εὑρών +τινα +Ἰουδαῖον +ὀνόματι +Ἀκύλαν +Ποντικόν +τῷ +γένει +προσφάτως +ἐληλυθότα +ἀπό +τῆς +Ἰταλίας +καί +Πρίσκιλλαν +γυναῖκα +αὐτοῦ +διά +τό +διατεταχέναι +Κλαύδιον +χωρίζεσθαι +πάντας +τούς +Ἰουδαίους +ἀπό +τῆς +Ῥώμης +προσῆλθεν +αὐτοῖς +καί +διά +τό +ὁμότεχνον +εἶναι +ἔμενεν +παρ’ +αὐτοῖς +καί +ἠργάζοντο +γάρ +ἦσαν +σκηνοποιοί +τῇ +τέχνῃ +δέ +διελέγετο +ἐν +τῇ +συναγωγῇ +κατά +πᾶν +σάββατον +ἔπειθεν +τε +Ἰουδαίους +καί +Ἕλληνας +δέ +Ὡς +κατῆλθον +ἀπό +τῆς +Μακεδονίας +τε +ὅ +Σιλᾶς +καί +ὁ +Τιμόθεος +συνείχετο +τῷ +λόγῳ +ὁ +Παῦλος +διαμαρτυρόμενος +τοῖς +Ἰουδαίοις +εἶναι +τόν +Χριστόν +Ἰησοῦν +δέ +ἀντιτασσομένων +αὐτῶν +καί +βλασφημούντων +ἐκτιναξάμενος +τά +ἱμάτια +εἶπεν +πρός +αὐτούς +Τό +αἷμα +ὑμῶν +ἐπί +τήν +κεφαλήν +ὑμῶν +καθαρός +ἐγώ +ἀπό +τοῦ +νῦν +εἰς +τά +ἔθνη +πορεύσομαι +καί +μεταβάς +ἐκεῖθεν +ἦλθεν +εἰς +οἰκίαν +τινός +ὀνόματι +Τιτίου +Ἰούστου +σεβομένου +τόν +Θεόν +οὗ +ἡ +οἰκία +ἦν +συνομοροῦσα +τῇ +συναγωγῇ +δέ +Κρίσπος +ὁ +ἀρχισυνάγωγος +ἐπίστευσεν +τῷ +Κυρίῳ +σύν +ὅλῳ +τῷ +οἴκῳ +αὐτοῦ +καί +πολλοί +τῶν +Κορινθίων +ἀκούοντες +ἐπίστευον +καί +ἐβαπτίζοντο +δέ +Εἶπεν +ὁ +Κύριος +ἐν +νυκτί +δι’ +ὁράματος +τῷ +Παύλῳ +Μή +φοβοῦ +ἀλλά +λάλει +καί +μή +σιωπήσῃς +διότι +ἐγώ +εἰμι +μετά +σοῦ +καί +οὐδείς +ἐπιθήσεται +σοι +τοῦ +κακῶσαι +σε +διότι +λαός +πολύς +ἐστί +μοι +ἐν +τῇ +πόλει +ταύτῃ +δέ +Ἐκάθισεν +ἐνιαυτόν +καί +μῆνας +ἕξ +διδάσκων +ἐν +αὐτοῖς +τόν +λόγον +τοῦ +Θεοῦ +δέ +Γαλλίωνος +ὄντος +ἀνθυπάτου +τῆς +Ἀχαΐας +κατεπέστησαν +ὁμοθυμαδόν +οἱ +Ἰουδαῖοι +τῷ +Παύλῳ +καί +ἤγαγον +αὐτόν +ἐπί +τό +βῆμα +λέγοντες +ὅτι +Παρά +τόν +νόμον +ἀναπείθει +οὗτος +τούς +ἀνθρώπους +σέβεσθαι +τόν +Θεόν +δέ +μέλλοντος +τοῦ +Παύλου +ἀνοίγειν +τό +στόμα +εἶπεν +ὁ +Γαλλίων +πρός +τούς +Ἰουδαίους +μέν +Εἰ +ἦν +ἀδίκημα +τι +ἤ +ῥᾳδιούργημα +πονηρόν +ὦ +Ἰουδαῖοι +ἄν +κατά +λόγον +ἀνεσχόμην +ὑμῶν +δέ +εἰ +ἐστιν +ζητήματα +περί +λόγου +καί +ὀνομάτων +καί +νόμου +τοῦ +καθ’ +ὑμᾶς +ὄψεσθε +αὐτοί +οὐ +βούλομαι +ἐγώ +κριτής +τούτων +εἶναι +καί +ἀπήλασεν +αὐτούς +ἀπό +τοῦ +βήματος +δέ +πάντες +ἐπιλαβόμενοι +Σωσθένην +τόν +ἀρχισυνάγωγον +ἔτυπτον +ἔμπροσθεν +τοῦ +βήματος +καί +οὐδέν +τούτων +τῷ +Γαλλίωνι +ἔμελεν +δέ +Ὁ +Παῦλος +ἔτι +προσμείνας +ἡμέρας +ἱκανάς +τοῖς +ἀδελφοῖς +ἀποταξάμενος +ἐξέπλει +εἰς +τήν +Συρίαν +καί +σύν +αὐτῷ +Πρίσκιλλα +καί +Ἀκύλας +κειράμενος +ἐν +Κενχρεαῖς +τήν +κεφαλήν +γάρ +εἶχεν +εὐχήν +δέ +κατήντησαν +εἰς +Ἔφεσον +κἀκείνους +κατέλιπεν +αὐτοῦ +δέ +αὐτός +εἰσελθών +εἰς +τήν +συναγωγήν +διελέξατο +τοῖς +Ἰουδαίοις +δέ +ἐρωτώντων +αὐτῶν +ἐπί +πλείονα +χρόνον +μεῖναι +οὐκ +ἐπένευσεν +ἀλλά +ἀποταξάμενος +καί +εἰπών +Πάλιν +ἀνακάμψω +πρός +ὑμᾶς +τοῦ +Θεοῦ +θέλοντος +ἀνήχθη +ἀπό +τῆς +Ἐφέσου +καί +κατελθών +εἰς +Καισάριαν +ἀναβάς +καί +ἀσπασάμενος +τήν +ἐκκλησίαν +κατέβη +εἰς +Ἀντιόχειαν +καί +ποιήσας +χρόνον +τινά +ἐξῆλθεν +διερχόμενος +καθεξῆς +τήν +Γαλατικήν +χώραν +καί +Φρυγίαν +στηρίζων +πάντας +τούς +μαθητάς +δέ +Ἰουδαῖος +τις +Ἀπολλῶς +ὀνόματι +Ἀλεξανδρεύς +τῷ +γένει +ἀνήρ +λόγιος +δυνατός +ὤν +ἐν +ταῖς +γραφαῖς +κατήντησεν +εἰς +Ἔφεσον +οὗτος +ἦν +κατηχημένος +τήν +ὁδόν +τοῦ +Κυρίου +καί +ζέων +τῷ +πνεύματι +ἐλάλει +καί +ἐδίδασκεν +ἀκριβῶς +τά +περί +τοῦ +Ἰησοῦ +ἐπιστάμενος +μόνον +τό +βάπτισμα +Ἰωάνου +τε +οὗτος +ἤρξατο +παρρησιάζεσθαι +ἐν +τῇ +συναγωγῇ +δέ +ἀκούσαντες +αὐτοῦ +Πρίσκιλλα +καί +Ἀκύλας +προσελάβοντο +αὐτόν +καί +ἀκριβέστερον +αὐτῷ +ἐξέθεντο +τήν +ὁδόν +τοῦ +Θεοῦ +δέ +βουλομένου +αὐτοῦ +διελθεῖν +εἰς +τήν +Ἀχαΐαν +προτρεψάμενοι +οἱ +ἀδελφοί +ἔγραψαν +τοῖς +μαθηταῖς +ἀποδέξασθαι +αὐτόν +ὅς +παραγενόμενος +συνεβάλετο +πολύ +τοῖς +πεπιστευκόσιν +διά +τῆς +χάριτος +γάρ +εὐτόνως +τοῖς +Ἰουδαίοις +διακατηλέγχετο +δημοσίᾳ +ἐπιδεικνύς +διά +τῶν +γραφῶν +εἶναι +τόν +Χριστόν +Ἰησοῦν +δέ +Ἐγένετο +ἐν +τῷ +τόν +Ἀπολλῶ +εἶναι +ἐν +Κορίνθῳ +Παῦλον +διελθόντα +τά +ἀνωτερικά +μέρη +ἐλθεῖν +εἰς +Ἔφεσον +καί +εὑρεῖν +τινας +μαθητάς +τε +εἶπεν +πρός +αὐτούς +Εἰ +Πνεῦμα +Ἅγιον +ἐλάβετε +πιστεύσαντες +δέ +οἱ +πρός +αὐτόν +Ἀλλ’ +οὐδ’ +ἠκούσαμεν +εἰ +Πνεῦμα +Ἅγιον +ἔστιν +τε +εἶπεν +οὖν +Εἰς +τί +ἐβαπτίσθητε +δέ +οἱ +εἶπαν +Εἰς +τό +Ἰωάνου +βάπτισμα +δέ +εἶπεν +Παῦλος +Ἰωάνης +ἐβάπτισεν +βάπτισμα +μετανοίας +τῷ +λαῷ +λέγων +ἵνα +πιστεύσωσιν +εἰς +τόν +ἐρχόμενον +μετ’ +αὐτόν +τοῦτ’ +ἔστιν +εἰς +τόν +Ἰησοῦν +δέ +ἀκούσαντες +ἐβαπτίσθησαν +εἰς +τό +ὄνομα +τοῦ +Κυρίου +Ἰησοῦ +καί +ἐπιθέντος +αὐτοῖς +τοῦ +Παύλου +χεῖρας +ἦλθε +τό +Πνεῦμα +τό +Ἅγιον +ἐπ’ +αὐτούς +τε +ἐλάλουν +γλώσσαις +καί +ἐπροφήτευον +δέ +ἦσαν +οἱ +πάντες +ἄνδρες +ὡσεί +δώδεκα +δέ +Εἰσελθών +εἰς +τήν +συναγωγήν +ἐπαρρησιάζετο +ἐπί +μῆνας +τρεῖς +διαλεγόμενος +καί +πείθων +περί +τῆς +βασιλείας +τοῦ +Θεοῦ +δέ +ὡς +τινες +ἐσκληρύνοντο +καί +ἠπείθουν +κακολογοῦντες +τήν +Ὁδόν +ἐνώπιον +τοῦ +πλήθους +ἀποστάς +ἀπ’ +αὐτῶν +ἀφώρισεν +τούς +μαθητάς +καθ’ +ἡμέραν +διαλεγόμενος +ἐν +τῇ +σχολῇ +Τυράννου +δέ +τοῦτο +ἐγένετο +ἐπί +ἔτη +δύο +ὥστε +πάντας +τούς +κατοικοῦντας +τήν +Ἀσίαν +ἀκοῦσαι +τόν +λόγον +τοῦ +Κυρίου +τε +Ἰουδαίους +καί +Ἕλληνας +τε +Δυνάμεις +οὐ +τάς +τυχούσας +ὁ +Θεός +ἐποίει +διά +τῶν +χειρῶν +Παύλου +ὥστε +καί +ἐπί +τούς +ἀσθενοῦντας +ἀποφέρεσθαι +ἀπό +τοῦ +χρωτός +αὐτοῦ +σουδάρια +ἤ +σιμικίνθια +καί +ἀπαλλάσσεσθαι +ἀπ’ +αὐτῶν +τάς +νόσους +τε +τά +πνεύματα +τά +πονηρά +ἐκπορεύεσθαι +δέ +Ἐπεχείρησαν +τινες +καί +τῶν +περιερχομένων +Ἰουδαίων +ἐξορκιστῶν +ὀνομάζειν +ἐπί +τούς +ἔχοντας +τά +πνεύματα +τά +πονηρά +τό +ὄνομα +τοῦ +Κυρίου +Ἰησοῦ +λέγοντες +Ὁρκίζω +ὑμᾶς +τόν +Ἰησοῦν +ὅν +Παῦλος +κηρύσσει +δέ +τινος +Σκευᾶ +Ἰουδαίου +ἀρχιερέως +ἑπτά +υἱοί +τοῦτο +ἦσαν +ποιοῦντες +δέ +ἀποκριθέν +τό +πνεῦμα +τό +πονηρόν +εἶπεν +αὐτοῖς +Τόν +Ἰησοῦν +γινώσκω +καί +τόν +Παῦλον +ἐπίσταμαι +δέ +ὑμεῖς +τίνες +ἐστέ +καί +ἐφαλόμενος +ἐπ’ +αὐτούς +ὁ +ἄνθρωπος +ἐν +ᾧ +ἦν +τό +πνεῦμα +τό +πονηρόν +κατακυριεύσας +ἀμφοτέρων +ἴσχυσεν +κατ’ +αὐτῶν +ὥστε +γυμνούς +καί +τετραυματισμένους +ἐκφυγεῖν +ἐκ +τοῦ +οἴκου +ἐκείνου +δέ +τοῦτο +ἐγένετο +γνωστόν +πᾶσιν +τε +Ἰουδαίοις +καί +Ἕλλησιν +τοῖς +κατοικοῦσιν +τήν +Ἔφεσον +καί +ἐπέπεσεν +φόβος +ἐπί +πάντας +αὐτούς +καί +ἐμεγαλύνετο +τό +ὄνομα +τοῦ +Κυρίου +Ἰησοῦ +τε +πολλοί +τῶν +πεπιστευκότων +ἤρχοντο +ἐξομολογούμενοι +καί +ἀναγγέλλοντες +τάς +πράξεις +αὐτῶν +δέ +ἱκανοί +τῶν +τά +περίεργα +πραξάντων +συνενέγκαντες +τάς +βίβλους +κατέκαιον +ἐνώπιον +πάντων +καί +συνεψήφισαν +τάς +τιμάς +αὐτῶν +καί +εὗρον +ἀργυρίου +μυριάδας +πέντε +Οὕτως +κατά +κράτος +τοῦ +Κυρίου +ὁ +λόγος +ηὔξανεν +καί +ἴσχυεν +δέ +Ὡς +ἐπληρώθη +ταῦτα +ἔθετο +ὁ +Παῦλος +ἐν +τῷ +πνεύματι +διελθών +τήν +Μακεδονίαν +καί +Ἀχαΐαν +πορεύεσθαι +εἰς +Ἱεροσόλυμα +εἰπών +ὅτι +Μετά +τό +γενέσθαι +με +ἐκεῖ +δεῖ +με +καί +Ῥώμην +ἰδεῖν +δέ +ἀποστείλας +εἰς +τήν +Μακεδονίαν +δύο +τῶν +διακονούντων +αὐτῷ +Τιμόθεον +καί +Ἔραστον +αὐτός +ἐπέσχεν +χρόνον +εἰς +τήν +Ἀσίαν +δέ +Ἐγένετο +κατά +τόν +καιρόν +ἐκεῖνον +τάραχος +οὐκ +ὀλίγος +περί +τῆς +Ὁδοῦ +γάρ +τις +Δημήτριος +ὀνόματι +ἀργυροκόπος +ποιῶν +ναούς +ἀργυροῦς +Ἀρτέμιδος +παρείχετο +τοῖς +τεχνίταις +οὐκ +ὀλίγην +ἐργασίαν +οὕς +καί +τούς +περί +τά +τοιαῦτα +ἐργάτας +συναθροίσας +εἶπεν +Ἄνδρες +ἐπίστασθε +ὅτι +ἐκ +ταύτης +τῆς +ἐργασίας +ἡ +εὐπορία +ἡμῖν +ἐστιν +καί +θεωρεῖτε +καί +ἀκούετε +ὅτι +οὐ +μόνον +Ἐφέσου +ἀλλά +σχεδόν +πάσης +τῆς +Ἀσίας +ὁ +Παῦλος +οὗτος +πείσας +μετέστησεν +ἱκανόν +ὄχλον +λέγων +ὅτι +οὐκ +εἰσίν +θεοί +οἱ +διά +χειρῶν +γινόμενοι +δέ +οὐ +μόνον +τοῦτο +κινδυνεύει +ἡμῖν +τό +μέρος +εἰς +ἀπελεγμόν +ἐλθεῖν +ἀλλά +καί +τό +τῆς +μεγάλης +θεᾶς +Ἀρτέμιδος +ἱερόν +εἰς +οὐθέν +λογισθῆναι +τε +μέλλειν +καί +καθαιρεῖσθαι +τῆς +μεγαλειότητος +αὐτῆς +ἥν +ὅλη +ἡ +Ἀσία +καί +ἡ +οἰκουμένη +σέβεται +δέ +Ἀκούσαντες +καί +γενόμενοι +πλήρεις +θυμοῦ +ἔκραζον +λέγοντες +Μεγάλη +ἡ +Ἄρτεμις +Ἐφεσίων +καί +ἐπλήσθη +ἡ +πόλις +τῆς +συγχύσεως +τε +ὥρμησαν +ὁμοθυμαδόν +εἰς +τό +θέατρον +συναρπάσαντες +Γάϊον +καί +Ἀρίσταρχον +Μακεδόνας +συνεκδήμους +Παύλου +δέ +Παύλου +βουλομένου +εἰσελθεῖν +εἰς +τόν +δῆμον +οὐκ +εἴων +αὐτόν +οἱ +μαθηταί +δέ +τινές +καί +τῶν +Ἀσιαρχῶν +ὄντες +αὐτῷ +φίλοι +πέμψαντες +πρός +αὐτόν +παρεκάλουν +μή +δοῦναι +ἑαυτόν +εἰς +τό +θέατρον +μέν +οὖν +ἄλλοι +ἄλλο +τι +ἔκραζον +γάρ +ἡ +ἐκκλησία +ἦν +συγκεχυμένη +καί +οἱ +πλείους +οὐκ +ᾔδεισαν +τίνος +ἕνεκα +συνεληλύθεισαν +δέ +ἐκ +τοῦ +ὄχλου +συνεβίβασαν +Ἀλέξανδρον +προβαλόντων +αὐτόν +τῶν +Ἰουδαίων +δέ +ὁ +Ἀλέξανδρος +κατασείσας +τήν +χεῖρα +ἤθελεν +ἀπολογεῖσθαι +τῷ +δήμῳ +δέ +ἐπιγνόντες +ὅτι +Ἰουδαῖος +ἐστιν +φωνή +μία +ἐγένετο +ἐκ +πάντων +ὡς +ἐπί +ὥρας +δύο +κράζοντες +Μεγάλη +ἡ +Ἄρτεμις +Ἐφεσίων +δέ +ὁ +γραμματεύς +καταστείλας +τόν +ὄχλον +φησίν +Ἄνδρες +Ἐφέσιοι +γάρ +τίς +ἀνθρώπων +ἐστιν +ὅς +οὐ +γινώσκει +τήν +Ἐφεσίων +πόλιν +οὖσαν +νεωκόρον +τῆς +μεγάλης +Ἀρτέμιδος +καί +τοῦ +διοπετοῦς +οὖν +ἀναντιρρήτων +ὄντων +τούτων +δέον +ἐστίν +ὑμᾶς +κατεσταλμένους +ὑπάρχειν +καί +μηδέν +προπετές +πράσσειν +γάρ +ἠγάγετε +τούς +ἄνδρας +τούτους +οὔτε +ἱεροσύλους +οὔτε +βλασφημοῦντας +τήν +θεόν +ἡμῶν +οὖν +μέν +εἰ +Δημήτριος +καί +οἱ +σύν +αὐτῷ +τεχνῖται +ἔχουσι +πρός +τινα +λόγον +ἀγοραῖοι +ἄγονται +καί +ἀνθύπατοι +εἰσιν +ἐγκαλείτωσαν +ἀλλήλοις +δέ +εἰ +τι +περαιτέρω +ἐπιζητεῖτε +ἐν +τῇ +ἐννόμῳ +ἐκκλησίᾳ +ἐπιλυθήσεται +γάρ +καί +κινδυνεύομεν +ἐγκαλεῖσθαι +στάσεως +περί +τῆς +σήμερον +μηδενός +αἰτίου +ὑπάρχοντος +περί +οὗ +οὐ +δυνησόμεθα +ἀποδοῦναι +λόγον +περί +τῆς +συστροφῆς +ταύτης +καί +ταῦτα +εἰπών +ἀπέλυσεν +τήν +ἐκκλησίαν +δέ +Μετά +τό +παύσασθαι +τόν +θόρυβον +ὁ +Παῦλος +μεταπεμψάμενος +τούς +μαθητάς +καί +παρακαλέσας +ἀσπασάμενος +ἐξῆλθεν +πορεύεσθαι +εἰς +Μακεδονίαν +δέ +διελθών +τά +μέρη +ἐκεῖνα +καί +παρακαλέσας +αὐτούς +λόγῳ +πολλῷ +ἦλθεν +εἰς +τήν +Ἑλλάδα +τε +ποιήσας +μῆνας +τρεῖς +γενομένης +ἐπιβουλῆς +αὐτῷ +ὑπό +τῶν +Ἰουδαίων +μέλλοντι +ἀνάγεσθαι +εἰς +τήν +Συρίαν +ἐγένετο +γνώμης +τοῦ +ὑποστρέφειν +διά +Μακεδονίας +δέ +συνείπετο +αὐτῷ +Σώπατρος +Πύρρου +Βεροιαῖος +δέ +Θεσσαλονικέων +Ἀρίσταρχος +καί +Σεκοῦνδος +καί +Γάϊος +Δερβαῖος +καί +Τιμόθεος +δέ +Ἀσιανοί +Τυχικός +καί +Τρόφιμος +δέ +οὗτοι +προελθόντες +ἔμενον +ἡμᾶς +ἐν +Τρῳάδι +δέ +ἡμεῖς +ἐξεπλεύσαμεν +μετά +τάς +ἡμέρας +τῶν +ἀζύμων +ἀπό +Φιλίππων +καί +ἤλθομεν +πρός +αὐτούς +εἰς +τήν +Τρῳάδα +ἄχρι +ἡμερῶν +πέντε +ὅπου +διετρίψαμεν +ἡμέρας +ἑπτά +δέ +Ἐν +τῇ +μιᾷ +τῶν +σαββάτων +συνηγμένων +ἡμῶν +κλάσαι +ἄρτον +ὁ +Παῦλος +διελέγετο +αὐτοῖς +μέλλων +ἐξιέναι +τῇ +ἐπαύριον +τε +παρέτεινεν +τόν +λόγον +μέχρι +μεσονυκτίου +δέ +ἦσαν +λαμπάδες +ἱκαναί +ἐν +τῷ +ὑπερῴῳ +οὗ +ἦμεν +συνηγμένοι +δέ +τις +νεανίας +ὀνόματι +Εὔτυχος +καθεζόμενος +ἐπί +τῆς +θυρίδος +καταφερόμενος +ὕπνῳ +βαθεῖ +διαλεγομένου +τοῦ +Παύλου +ἐπί +πλεῖον +κατενεχθείς +ἀπό +τοῦ +ὕπνου +ἔπεσεν +ἀπό +τοῦ +τριστέγου +κάτω +καί +ἤρθη +νεκρός +δέ +καταβάς +ὁ +Παῦλος +ἐπέπεσεν +αὐτῷ +καί +συμπεριλαβών +εἶπεν +Μή +θορυβεῖσθε +γάρ +ἡ +ψυχή +αὐτοῦ +ἐν +αὐτῷ +ἐστιν +δέ +ἀναβάς +καί +κλάσας +τόν +ἄρτον +καί +γευσάμενος +τε +ἐφ’ +ἱκανόν +ὁμιλήσας +ἄχρι +αὐγῆς +οὕτως +ἐξῆλθεν +δέ +ἤγαγον +τόν +παῖδα +ζῶντα +καί +παρεκλήθησαν +οὐ +μετρίως +δέ +Ἠμεῖς +προελθόντες +ἐπί +τό +πλοῖον +ἀνήχθημεν +ἐπί +τήν +Ἆσσον +ἐκεῖθεν +μέλλοντες +ἀναλαμβάνειν +τόν +Παῦλον +γάρ +οὕτως +διατεταγμένος +ἦν +μέλλων +αὐτός +πεζεύειν +δέ +ὡς +συνέβαλλεν +ἡμῖν +εἰς +τήν +Ἆσσον +ἀναλαβόντες +αὐτόν +ἤλθομεν +εἰς +Μιτυλήνην +κἀκεῖθεν +ἀποπλεύσαντες +τῇ +ἐπιούσῃ +κατηντήσαμεν +ἄντικρυς +Χίου +δέ +τῇ +ἑτέρᾳ +παρεβάλομεν +εἰς +Σάμον +δέ +τῇ +ἐχομένῃ +ἤλθομεν +εἰς +Μίλητον +γάρ +κεκρίκει +ὁ +Παῦλος +παραπλεῦσαι +τήν +Ἔφεσον +ὅπως +μή +γένηται +αὐτῷ +χρονοτριβῆσαι +ἐν +τῇ +Ἀσίᾳ +γάρ +ἔσπευδεν +εἰ +δυνατόν +εἴη +αὐτῷ +τήν +ἡμέραν +τῆς +Πεντηκοστῆς +γενέσθαι +εἰς +Ἱεροσόλυμα +δέ +Ἀπό +τῆς +Μιλήτου +πέμψας +εἰς +Ἔφεσον +μετεκαλέσατο +τούς +πρεσβυτέρους +τῆς +ἐκκλησίας +δέ +ὡς +παρεγένοντο +πρός +αὐτόν +εἶπεν +αὐτοῖς +Ὑμεῖς +ἐπίστασθε +ἀπό +πρώτης +ἡμέρας +ἀφ’ +ἧς +ἐπέβην +εἰς +τήν +Ἀσίαν +πῶς +μεθ’ +ὑμῶν +τόν +πάντα +χρόνον +ἐγενόμην +δουλεύων +τῷ +Κυρίῳ +μετά +πάσης +ταπεινοφροσύνης +καί +δακρύων +καί +πειρασμῶν +τῶν +συμβάντων +μοι +ἐν +ταῖς +ἐπιβουλαῖς +τῶν +Ἰουδαίων +ὡς +ὑπεστειλάμην +οὐδέν +τῶν +συμφερόντων +τοῦ +μή +ἀναγγεῖλαι +ὑμῖν +καί +διδάξαι +ὑμᾶς +δημοσίᾳ +καί +κατ’ +οἴκους +διαμαρτυρόμενος +τε +Ἰουδαίοις +καί +Ἕλλησιν +τήν +εἰς +Θεόν +μετάνοιαν +καί +πίστιν +εἰς +τόν +Κύριον +ἡμῶν +Ἰησοῦν +καί +νῦν +ἰδού +δεδεμένος +τῷ +πνεύματι +ἐγώ +πορεύομαι +εἰς +Ἱερουσαλήμ +τά +ἐν +αὐτῇ +συναντήσοντα +ἐμοί +μή +εἰδώς +πλήν +ὅτι +τό +Πνεῦμα +τό +Ἅγιον +κατά +πόλιν +διαμαρτύρεται +μοι +λέγον +ὅτι +δεσμά +καί +θλίψεις +με +μένουσιν +ἀλλ’ +οὐδενός +λόγου +ποιοῦμαι +τήν +ψυχήν +τιμίαν +ἐμαυτῷ +ὡς +τελειώσω +τόν +δρόμον +μου +καί +τήν +διακονίαν +ἥν +ἔλαβον +παρά +τοῦ +Κυρίου +Ἰησοῦ +διαμαρτύρασθαι +τό +εὐαγγέλιον +τῆς +χάριτος +τοῦ +Θεοῦ +καί +νῦν +ἰδού +ἐγώ +οἶδα +ὅτι +οὐκέτι +ὄψεσθε +τό +πρόσωπον +μου +ὑμεῖς +πάντες +ἐν +οἷς +διῆλθον +κηρύσσων +τήν +βασιλείαν +διότι +μαρτύρομαι +ὑμῖν +ἐν +τῇ +σήμερον +ἡμέρᾳ +ὅτι +καθαρός +εἰμι +ἀπό +τοῦ +αἵματος +πάντων +γάρ +οὐ +ὑπεστειλάμην +τοῦ +μή +ἀναγγεῖλαι +πᾶσαν +τήν +βουλήν +τοῦ +Θεοῦ +ὑμῖν +προσέχετε +ἑαυτοῖς +καί +παντί +τῷ +ποιμνίῳ +ἐν +ᾧ +ὑμᾶς +τό +Πνεῦμα +τό +Ἅγιον +ἔθετο +ἐπισκόπους +ποιμαίνειν +τήν +ἐκκλησίαν +τοῦ +Θεοῦ +ἥν +περιεποιήσατο +διά +τοῦ +αἵματος +τοῦ +ἰδίου +ἐγώ +οἶδα +ὅτι +εἰσελεύσονται +μετά +τήν +ἄφιξιν +μου +λύκοι +βαρεῖς +εἰς +ὑμᾶς +μή +φειδόμενοι +τοῦ +ποιμνίου +καί +ἐξ +ὑμῶν +αὐτῶν +ἀναστήσονται +ἄνδρες +λαλοῦντες +διεστραμμένα +τοῦ +ἀποσπᾶν +τούς +μαθητάς +ὀπίσω +ἑαυτῶν +διό +γρηγορεῖτε +μνημονεύοντες +ὅτι +τριετίαν +νύκτα +καί +ἡμέραν +οὐκ +ἐπαυσάμην +μετά +δακρύων +νουθετῶν +ἕνα +ἕκαστον +καί +τά +νῦν +παρατίθεμαι +ὑμᾶς +τῷ +Κυρίῳ +καί +τῷ +λόγῳ +τῆς +χάριτος +αὐτοῦ +τῷ +δυναμένῳ +οἰκοδομῆσαι +καί +δοῦναι +τήν +κληρονομίαν +ἐν +τοῖς +ἡγιασμένοις +πᾶσιν +ἀργυρίου +ἤ +χρυσίου +ἤ +ἱματισμοῦ +οὐδενός +ἐπεθύμησα +αὐτοί +γινώσκετε +ὅτι +ταῖς +χρείαις +μου +καί +τοῖς +οὖσιν +μετ’ +ἐμοῦ +ὑπηρέτησαν +αἱ +χεῖρες +αὗται +πάντα +ὑπέδειξα +ὑμῖν +ὅτι +οὕτως +κοπιῶντας +δεῖ +ἀντιλαμβάνεσθαι +τῶν +ἀσθενούντων +τε +μνημονεύειν +τῶν +λόγων +τοῦ +Κυρίου +Ἰησοῦ +ὅτι +αὐτός +εἶπεν +Μακάριον +ἐστιν +μᾶλλον +διδόναι +ἤ +λαμβάνειν +καί +ταῦτα +εἰπών +θείς +τά +γόνατα +αὐτοῦ +σύν +πᾶσιν +αὐτοῖς +προσηύξατο +δέ +ἱκανός +ἐγένετο +κλαυθμός +πάντων +καί +ἐπιπεσόντες +ἐπί +τόν +τράχηλον +τοῦ +Παύλου +κατεφίλουν +αὐτόν +ὀδυνώμενοι +μάλιστα +ἐπί +τῷ +λόγῳ +ᾧ +εἰρήκει +ὅτι +οὐκέτι +μέλλουσιν +τό +πρόσωπον +αὐτοῦ +θεωρεῖν +δέ +προέπεμπον +αὐτόν +εἰς +τό +πλοῖον +δέ +Ὡς +ἐγένετο +ἀναχθῆναι +ἡμᾶς +ἀποσπασθέντας +ἀπ’ +αὐτῶν +εὐθυδρομήσαντες +ἤλθομεν +εἰς +τήν +Κῶ +δέ +τῇ +ἑξῆς +εἰς +τήν +Ῥόδον +κἀκεῖθεν +εἰς +Πάταρα +καί +εὑρόντες +πλοῖον +διαπερῶν +εἰς +Φοινίκην +ἐπιβάντες +ἀνήχθημεν +δέ +ἀναφάναντες +τήν +Κύπρον +καί +καταλιπόντες +αὐτήν +εὐώνυμον +ἐπλέομεν +εἰς +Συρίαν +καί +κατήλθομεν +εἰς +Τύρον +γάρ +ἐκεῖσε +τό +πλοῖον +ἦν +ἀποφορτιζόμενον +τόν +γόμον +δέ +ἀνευρόντες +τούς +μαθητάς +ἐπεμείναμεν +αὐτοῦ +ἡμέρας +ἑπτά +οἵτινες +τῷ +Παύλῳ +ἔλεγον +διά +τοῦ +Πνεύματος +μή +ἐπιβαίνειν +εἰς +Ἱεροσόλυμα +δέ +ὅτε +ἐγένετο +ἐξαρτίσαι +ἡμᾶς +τάς +ἡμέρας +ἐξελθόντες +ἐπορευόμεθα +προπεμπόντων +ἡμᾶς +πάντων +σύν +γυναιξί +καί +τέκνοις +ἕως +ἔξω +τῆς +πόλεως +καί +θέντες +τά +γόνατα +ἐπί +τόν +αἰγιαλόν +προσευξάμενοι +ἀπησπασάμεθα +ἀλλήλους +καί +ἐνέβημεν +εἰς +τό +πλοῖον +δέ +ἐκεῖνοι +ὑπέστρεψαν +εἰς +τά +ἴδια +δέ +Ἠμεῖς +τόν +πλοῦν +διανύσαντες +ἀπό +Τύρου +κατηντήσαμεν +εἰς +Πτολεμαΐδα +καί +ἀσπασάμενοι +τούς +ἀδελφούς +ἐμείναμεν +ἡμέραν +μίαν +παρ’ +αὐτοῖς +δέ +τῇ +ἐπαύριον +ἐξελθόντες +ἤλθομεν +εἰς +Καισαρίαν +καί +εἰσελθόντες +εἰς +τόν +οἶκον +Φιλίππου +τοῦ +εὐαγγελιστοῦ +ὄντος +ἐκ +τῶν +ἑπτά +ἐμείναμεν +παρ’ +αὐτῷ +δέ +τούτῳ +ἦσαν +θυγατέρες +τέσσαρες +παρθένοι +προφητεύουσαι +δέ +Ἐπιμενόντων +ἡμέρας +πλείους +κατῆλθεν +τις +ἀπό +τῆς +Ἰουδαίας +προφήτης +ὀνόματι +Ἄγαβος +καί +ἐλθών +πρός +ἡμᾶς +καί +ἄρας +τήν +ζώνην +τοῦ +Παύλου +δήσας +ἑαυτοῦ +τούς +πόδας +καί +τάς +χεῖρας +εἶπεν +Τάδε +λέγει +τό +Πνεῦμα +τό +Ἅγιον +Τόν +ἄνδρα +οὗ +ἐστιν +ἡ +ζώνη +αὕτη +οὕτως +δήσουσιν +ἐν +Ἱερουσαλήμ +οἱ +Ἰουδαῖοι +καί +παραδώσουσιν +εἰς +χεῖρας +ἐθνῶν +δέ +ὡς +ἠκούσαμεν +ταῦτα +παρεκαλοῦμεν +τε +ἡμεῖς +καί +οἱ +ἐντόπιοι +τοῦ +μή +ἀναβαίνειν +αὐτόν +εἰς +Ἱερουσαλήμ +τότε +ἀπεκρίθη +ὁ +Παῦλος +Τί +ποιεῖτε +κλαίοντες +καί +συνθρύπτοντες +μου +τήν +καρδίαν +γάρ +ἐγώ +οὐ +μόνον +δεθῆναι +ἀλλά +καί +ἀποθανεῖν +εἰς +Ἱερουσαλήμ +ἑτοίμως +ἔχω +ὑπέρ +τοῦ +ὀνόματος +τοῦ +Κυρίου +Ἰησοῦ +δέ +μή +πειθομένου +αὐτοῦ +ἡσυχάσαμεν +εἰπόντες +Τοῦ +Κυρίου +τό +θέλημα +γινέσθω +δέ +Μετά +τάς +ἡμέρας +ταύτας +ἐπισκευασάμενοι +ἀνεβαίνομεν +εἰς +Ἱεροσόλυμα +δέ +συνῆλθον +καί +τῶν +μαθητῶν +ἀπό +Καισαρίας +σύν +ἡμῖν +ἄγοντες +παρ’ +ᾧ +ξενισθῶμεν +Μνάσωνι +τινι +Κυπρίῳ +ἀρχαίῳ +μαθητῇ +δέ +Γενομένων +ἡμῶν +εἰς +Ἱεροσόλυμα +ἀσμένως +ἀπεδέξαντο +ἡμᾶς +οἱ +ἀδελφοί +δέ +τῇ +ἐπιούσῃ +εἰσῄει +ὁ +Παῦλος +σύν +ἡμῖν +πρός +Ἰάκωβον +τε +παρεγένοντο +πάντες +οἱ +πρεσβύτεροι +καί +ἀσπασάμενος +αὐτούς +ἐξηγεῖτο +καθ’ +ἕν +ἕκαστον +ὧν +ἐποίησεν +ὁ +Θεός +ἐν +τοῖς +ἔθνεσιν +διά +τῆς +διακονίας +αὐτοῦ +δέ +οἱ +ἀκούσαντες +ἐδόξαζον +τόν +Θεόν +τε +εἶπαν +αὐτῷ +Θεωρεῖς +ἀδελφέ +πόσαι +μυριάδες +τῶν +πεπιστευκότων +εἰσίν +ἐν +τοῖς +Ἰουδαίοις +καί +πάντες +ζηλωταί +τοῦ +νόμου +ὑπάρχουσιν +δέ +κατηχήθησαν +περί +σοῦ +ὅτι +διδάσκεις +ἀποστασίαν +ἀπό +Μωϋσέως +τούς +κατά +τά +ἔθνη +πάντας +Ἰουδαίους +λέγων +μή +περιτέμνειν +αὐτούς +τά +τέκνα +μηδέ +τοῖς +ἔθεσιν +περιπατεῖν +οὖν +τί +ἐστιν +πάντως +ἀκούσονται +ὅτι +ἐλήλυθας +οὖν +τοῦτο +ποίησον +ὅ +σοι +λέγομεν +εἰσίν +ἡμῖν +ἄνδρες +τέσσαρες +εὐχήν +ἔχοντες +ἐφ’ +ἑαυτῶν +τούτους +παραλαβών +ἁγνίσθητι +σύν +αὐτοῖς +καί +δαπάνησον +ἐπ’ +αὐτοῖς +ἵνα +ξυρήσονται +τήν +κεφαλήν +καί +γνώσονται +πάντες +ὅτι +ὧν +κατήχηνται +περί +σοῦ +οὐδέν +ἐστιν +ἀλλά +στοιχεῖς +καί +αὐτός +φυλάσσων +τόν +νόμον +δέ +περί +τῶν +πεπιστευκότων +ἐθνῶν +ἡμεῖς +ἐπεστείλαμεν +κρίναντες +φυλάσσεσθαι +αὐτούς +τε +τό +εἰδωλόθυτον +καί +αἷμα +καί +πνικτόν +καί +πορνείαν +τότε +ὁ +Παῦλος +παραλαβών +τούς +ἄνδρας +τῇ +ἐχομένῃ +ἡμέρᾳ +σύν +αὐτοῖς +ἁγνισθείς +εἰσῄει +εἰς +τό +ἱερόν +διαγγέλλων +τήν +ἐκπλήρωσιν +τῶν +ἡμερῶν +τοῦ +ἁγνισμοῦ +ἕως +οὗ +προσηνέχθη +ὑπέρ +ἑνός +ἑκάστου +αὐτῶν +ἡ +προσφορά +δέ +Ὡς +ἔμελλον +αἱ +ἑπτά +ἡμέραι +συντελεῖσθαι +οἱ +ἀπό +τῆς +Ἀσίας +Ἰουδαῖοι +θεασάμενοι +αὐτόν +ἐν +τῷ +ἱερῷ +συνέχεον +πάντα +τόν +ὄχλον +καί +ἐπέβαλαν +ἐπ’ +αὐτόν +τάς +χεῖρας +κράζοντες +Ἄνδρες +Ἰσραηλεῖται +βοηθεῖτε +οὗτος +ἐστιν +ὁ +ἄνθρωπος +ὁ +κατά +τοῦ +λαοῦ +καί +τοῦ +νόμου +καί +τοῦ +τόπου +τούτου +πάντας +πανταχῇ +διδάσκων +τε +ἔτι +καί +Ἕλληνας +εἰσήγαγεν +εἰς +τό +ἱερόν +καί +κεκοίνωκεν +τόν +ἅγιον +τόπον +τοῦτον +γάρ +ἦσαν +προεωρακότες +Τρόφιμον +τόν +Ἐφέσιον +ἐν +τῇ +πόλει +σύν +αὐτῷ +ἐνόμιζον +ὅτι +ὅν +εἰς +τό +ἱερόν +εἰσήγαγεν +ὁ +Παῦλος +τε +ἐκινήθη +ἡ +πόλις +ὅλη +καί +ἐγένετο +συνδρομή +τοῦ +λαοῦ +καί +ἐπιλαβόμενοι +τοῦ +Παύλου +εἷλκον +αὐτόν +ἔξω +τοῦ +ἱεροῦ +καί +εὐθέως +ἐκλείσθησαν +αἱ +θύραι +τε +Ζητούντων +αὐτόν +ἀποκτεῖναι +ἀνέβη +φάσις +τῷ +χιλιάρχῳ +τῆς +σπείρης +ὅτι +ὅλη +Ἱερουσαλήμ +συνχύννεται +ὅς +ἐξαυτῆς +παραλαβών +στρατιώτας +καί +ἑκατοντάρχας +κατέδραμεν +ἐπ’ +αὐτούς +δέ +οἱ +ἰδόντες +τόν +χιλίαρχον +καί +τούς +στρατιώτας +ἐπαύσαντο +τύπτοντες +τόν +Παῦλον +τότε +ἐγγίσας +ὁ +χιλίαρχος +ἐπελάβετο +αὐτοῦ +καί +ἐκέλευσεν +δεθῆναι +ἁλύσεσι +δυσί +καί +ἐπυνθάνετο +τίς +εἴη +καί +τί +ἐστιν +πεποιηκώς +δέ +ἄλλοι +ἄλλο +τι +ἐπεφώνουν +ἐν +τῷ +ὄχλῳ +δέ +μή +δυναμένου +αὐτοῦ +γνῶναι +τό +ἀσφαλές +διά +τόν +θόρυβον +ἐκέλευσεν +ἄγεσθαι +αὐτόν +εἰς +τήν +παρεμβολήν +δέ +ὅτε +ἐγένετο +ἐπί +τούς +ἀναβαθμούς +συνέβη +βαστάζεσθαι +αὐτόν +ὑπό +τῶν +στρατιωτῶν +διά +τήν +βίαν +τοῦ +ὄχλου +γάρ +ἠκολούθει +τό +πλῆθος +τοῦ +λαοῦ +κράζοντες +Αἶρε +αὐτόν +τε +Μέλλων +εἰσάγεσθαι +εἰς +τήν +παρεμβολήν +ὁ +Παῦλος +λέγει +τῷ +χιλιάρχῳ +Εἰ +ἔξεστιν +μοι +εἰπεῖν +τι +πρός +σέ +δέ +ὁ +ἔφη +Ἑλληνιστί +γινώσκεις +ἄρα +οὐκ +σύ +εἶ +ὁ +Αἰγύπτιος +ὁ +πρό +τούτων +τῶν +ἡμερῶν +ἀναστατώσας +καί +ἐξαγαγών +εἰς +τήν +ἔρημον +τούς +τετρακισχιλίους +ἄνδρας +τῶν +σικαρίων +δέ +εἶπεν +ὁ +Παῦλος +μέν +Ἐγώ +εἰμι +ἄνθρωπος +Ἰουδαῖος +Ταρσεύς +τῆς +Κιλικίας +οὐκ +ἀσήμου +πόλεως +πολίτης +δέ +δέομαι +σου +ἐπίτρεψον +μοι +λαλῆσαι +πρός +τόν +λαόν +δέ +ἐπιτρέψαντος +αὐτοῦ +ὁ +Παῦλος +ἑστώς +ἐπί +τῶν +ἀναβαθμῶν +κατέσεισεν +τῇ +χειρί +τῷ +λαῷ +δέ +πολλῆς +σιγῆς +γενομένης +προσεφώνησεν +τῇ +Ἑβραΐδι +διαλέκτῳ +λέγων +Ἄνδρες +ἀδελφοί +καί +πατέρες +ἀκούσατε +μου +τῆς +πρός +ὑμᾶς +νυνί +ἀπολογίας +δέ +ἀκούσαντες +ὅτι +τῇ +Ἑβραΐδι +διαλέκτῳ +προσεφώνει +αὐτοῖς +μᾶλλον +παρέσχον +ἡσυχίαν +καί +φησίν +Ἐγώ +εἰμι +ἀνήρ +Ἰουδαῖος +γεγεννημένος +ἐν +Ταρσῷ +τῆς +Κιλικίας +δέ +ἀνατεθραμμένος +ἐν +τῇ +πόλει +ταύτῃ +παρά +τούς +πόδας +Γαμαλιήλ +πεπαιδευμένος +κατά +ἀκρίβειαν +τοῦ +πατρῴου +νόμου +ὑπάρχων +ζηλωτής +τοῦ +Θεοῦ +καθώς +πάντες +ὑμεῖς +ἐστε +σήμερον +ὅς +ταύτην +τήν +Ὁδόν +ἐδίωξα +ἄχρι +θανάτου +δεσμεύων +καί +παραδιδούς +εἰς +φυλακάς +τε +ἄνδρας +καί +γυναῖκας +ὡς +καί +ὁ +ἀρχιερεύς +μαρτυρεῖ +μοι +καί +πᾶν +τό +πρεσβυτέριον +παρ’ +ὧν +καί +ἐπιστολάς +δεξάμενος +πρός +τούς +ἀδελφούς +εἰς +Δαμασκόν +ἐπορευόμην +ἄξων +καί +τούς +ἐκεῖσε +ὄντας +δεδεμένους +εἰς +Ἱερουσαλήμ +ἵνα +τιμωρηθῶσιν +δέ +Ἐγένετο +μοι +πορευομένῳ +καί +ἐγγίζοντι +τῇ +Δαμασκῷ +περί +μεσημβρίαν +ἐξαίφνης +ἐκ +τοῦ +οὐρανοῦ +περιαστράψαι +φῶς +ἱκανόν +περί +ἐμέ +τε +ἔπεσα +εἰς +τό +ἔδαφος +καί +ἤκουσα +φωνῆς +λεγούσης +μοι +Σαούλ +Σαούλ +τί +με +διώκεις +δέ +ἐγώ +ἀπεκρίθην +Τίς +εἶ +Κύριε +τε +εἶπεν +πρός +ἐμέ +Ἐγώ +εἰμι +Ἰησοῦς +ὁ +Ναζωραῖος +ὅν +σύ +διώκεις +δέ +μέν +οἱ +σύν +ἐμοί +ὄντες +τό +φῶς +ἐθεάσαντο +δέ +οὐκ +ἤκουσαν +τήν +φωνήν +τοῦ +λαλοῦντος +μοι +δέ +εἶπον +Τί +ποιήσω +Κύριε +δέ +ὁ +Κύριος +εἶπεν +πρός +με +Ἀναστάς +πορεύου +εἰς +Δαμασκόν +κἀκεῖ +σοι +λαληθήσεται +περί +πάντων +ὧν +ποιῆσαι +τέτακται +σοι +δέ +ὡς +οὐκ +ἐνέβλεπον +ἀπό +τῆς +δόξης +τοῦ +φωτός +ἐκείνου +χειραγωγούμενος +ὑπό +τῶν +συνόντων +μοι +ἦλθον +εἰς +Δαμασκόν +δέ +Ἀνανίας +τις +ἀνήρ +εὐλαβής +κατά +τόν +νόμον +μαρτυρούμενος +ὑπό +πάντων +τῶν +κατοικούντων +Ἰουδαίων +ἐλθών +πρός +ἐμέ +καί +ἐπιστάς +εἶπεν +μοι +Σαούλ +ἀδελφέ +ἀνάβλεψον +κἀγώ +αὐτῇ +τῇ +ὥρᾳ +ἀνέβλεψα +εἰς +αὐτόν +δέ +ὁ +εἶπεν +Ὁ +Θεός +τῶν +πατέρων +ἡμῶν +προεχειρίσατο +σε +γνῶναι +τό +θέλημα +αὐτοῦ +καί +ἰδεῖν +τόν +Δίκαιον +καί +ἀκοῦσαι +φωνήν +ἐκ +τοῦ +στόματος +αὐτοῦ +ὅτι +ἔσῃ +αὐτῷ +πρός +πάντας +ἀνθρώπους +μάρτυς +ὧν +ἑώρακας +καί +ἤκουσας +καί +νῦν +τί +μέλλεις +ἀναστάς +βάπτισαι +καί +ἀπόλουσαι +τάς +ἁμαρτίας +σου +ἐπικαλεσάμενος +τό +ὄνομα +αὐτοῦ +δέ +Ἐγένετο +μοι +ὑποστρέψαντι +εἰς +Ἱερουσαλήμ +καί +προσευχομένου +μου +ἐν +τῷ +ἱερῷ +γενέσθαι +με +ἐν +ἐκστάσει +καί +ἰδεῖν +αὐτόν +λέγοντα +μοι +Σπεῦσον +καί +ἔξελθε +ἐν +τάχει +ἐξ +Ἱερουσαλήμ +διότι +οὐ +παραδέξονται +σου +μαρτυρίαν +περί +ἐμοῦ +κἀγώ +εἶπον +Κύριε +αὐτοί +ἐπίστανται +ὅτι +ἐγώ +ἤμην +φυλακίζων +καί +δέρων +κατά +τάς +συναγωγάς +τούς +πιστεύοντας +ἐπί +σέ +καί +ὅτε +ἐξεχύννετο +τό +αἷμα +Στεφάνου +τοῦ +μάρτυρος +σου +καί +αὐτός +ἤμην +ἐφεστώς +καί +συνευδοκῶν +καί +φυλάσσων +τά +ἱμάτια +τῶν +ἀναιρούντων +αὐτόν +καί +εἶπεν +πρός +με +Πορεύου +ὅτι +ἐγώ +εἰς +ἔθνη +μακράν +ἐξαποστελῶ +σε +δέ +Ἤκουον +αὐτοῦ +ἄχρι +τούτου +τοῦ +λόγου +καί +ἐπῆραν +τήν +φωνήν +αὐτῶν +λέγοντες +Αἶρε +ἀπό +τῆς +γῆς +τόν +τοιοῦτον +γάρ +οὐ +καθῆκεν +αὐτόν +ζῆν +τε +κραυγαζόντων +αὐτῶν +καί +ῥιπτούντων +τά +ἱμάτια +καί +κονιορτόν +βαλλόντων +εἰς +τόν +ἀέρα +ἐκέλευσεν +ὁ +χιλίαρχος +εἰσάγεσθαι +αὐτόν +εἰς +τήν +παρεμβολήν +εἴπας +μάστιξιν +ἀνετάζεσθαι +αὐτόν +ἵνα +ἐπιγνῷ +δι’ +ἥν +αἰτίαν +οὕτως +ἐπεφώνουν +αὐτῷ +δέ +ὡς +προέτειναν +αὐτόν +τοῖς +ἱμᾶσιν +εἶπεν +πρός +τόν +ἑστῶτα +ἑκατόνταρχον +ὁ +Παῦλος +Εἰ +ἄνθρωπον +Ῥωμαῖον +καί +ἀκατάκριτον +μαστίζειν +ἔξεστιν +ὑμῖν +δέ +ἀκούσας +ὁ +ἑκατοντάρχης +προσελθών +τῷ +χιλιάρχῳ +ἀπήγγειλεν +λέγων +μέλλεις +Τί +ποιεῖν +γάρ +ὁ +ἄνθρωπος +οὗτος +Ῥωμαῖος +ἐστιν +δέ +προσελθών +ὁ +χιλίαρχος +εἶπεν +αὐτῷ +Λέγε +μοι +σύ +Ῥωμαῖος +εἶ +δέ +ὁ +ἔφη +Ναί +δέ +ἀπεκρίθη +ὁ +χιλίαρχος +Ἐγώ +πολλοῦ +κεφαλαίου +τήν +πολιτείαν +ταύτην +ἐκτησάμην +δέ +ὁ +Παῦλος +ἔφη +δέ +Ἐγώ +καί +γεγέννημαι +οὖν +εὐθέως +ἀπέστησαν +ἀπ’ +αὐτοῦ +οἱ +μέλλοντες +αὐτόν +ἀνετάζειν +δέ +καί +ὁ +χιλίαρχος +ἐφοβήθη +ἐπιγνούς +ὅτι +Ῥωμαῖος +ἐστιν +καί +ὅτι +αὐτόν +ἦν +δεδεκώς +δέ +Τῇ +ἐπαύριον +βουλόμενος +γνῶναι +τό +ἀσφαλές +τό +τί +κατηγορεῖται +ὑπό +τῶν +Ἰουδαίων +ἔλυσεν +αὐτόν +καί +ἐκέλευσεν +συνελθεῖν +τούς +ἀρχιερεῖς +καί +πᾶν +τό +συνέδριον +καί +καταγαγών +τόν +Παῦλον +ἔστησεν +εἰς +αὐτούς +δέ +ὁ +Παῦλος +ἀτενίσας +τῷ +συνεδρίῳ +εἶπεν +Ἄνδρες +ἀδελφοί +ἐγώ +πάσῃ +συνειδήσει +ἀγαθῇ +πεπολίτευμαι +τῷ +Θεῷ +ἄχρι +ταύτης +τῆς +ἡμέρας +δέ +ὁ +ἀρχιερεύς +Ἀνανίας +ἐπέταξεν +τοῖς +παρεστῶσιν +αὐτῷ +τύπτειν +αὐτοῦ +τό +στόμα +τότε +ὁ +Παῦλος +πρός +αὐτόν +εἶπεν +Τύπτειν +σε +μέλλει +ὁ +Θεός +τοῖχε +κεκονιαμένε +καί +σύ +κάθῃ +κρίνων +με +κατά +τόν +νόμον +καί +παρανομῶν +κελεύεις +με +τύπτεσθαι +δέ +οἱ +παρεστῶτες +εἶπαν +Τόν +ἀρχιερέα +τοῦ +Θεοῦ +λοιδορεῖς +τε +ἔφη +ὁ +Παῦλος +Οὐκ +ᾔδειν +ἀδελφοί +ὅτι +ἐστίν +ἀρχιερεύς +γάρ +γέγραπται +ὅτι +Ἄρχοντα +τοῦ +λαοῦ +σου +οὐκ +ἐρεῖς +κακῶς +δέ +ὁ +Παῦλος +γνούς +ὅτι +τό +ἕν +μέρος +ἐστίν +Σαδδουκαίων +δέ +τό +ἕτερον +Φαρισαίων +ἔκραζεν +ἐν +τῷ +συνεδρίῳ +Ἄνδρες +ἀδελφοί +ἐγώ +Φαρισαῖος +εἰμι +υἱός +Φαρισαίων +περί +ἐλπίδος +καί +ἀναστάσεως +νεκρῶν +κρίνομαι +δέ +τοῦτο +αὐτοῦ +λαλοῦντος +ἐγένετο +στάσις +τῶν +Φαρισαίων +καί +Σαδδουκαίων +καί +ἐσχίσθη +τό +πλῆθος +γάρ +Σαδδουκαῖοι +λέγουσιν +μή +εἶναι +ἀνάστασιν +μήτε +ἄγγελον +μήτε +πνεῦμα +δέ +Φαρισαῖοι +ὁμολογοῦσιν +τά +ἀμφότερα +δέ +ἐγένετο +κραυγή +μεγάλη +καί +ἀναστάντες +τινές +τῶν +γραμματέων +τοῦ +μέρους +τῶν +Φαρισαίων +διεμάχοντο +λέγοντες +Οὐδέν +κακόν +εὑρίσκομεν +ἐν +τῷ +ἀνθρώπῳ +τούτῳ +δέ +εἰ +πνεῦμα +ἐλάλησεν +αὐτῷ +ἤ +ἄγγελος +δέ +πολλῆς +στάσεως +γινομένης +ὁ +χιλίαρχος +φοβηθείς +μή +διασπασθῇ +ὁ +Παῦλος +ὑπ’ +αὐτῶν +ἐκέλευσεν +τό +στράτευμα +καταβάν +ἁρπάσαι +αὐτόν +ἐκ +μέσου +αὐτῶν +τε +ἄγειν +εἰς +τήν +παρεμβολήν +δέ +Τῇ +ἐπιούσῃ +νυκτί +ἐπιστάς +αὐτῷ +ὁ +Κύριος +εἶπεν +Θάρσει +γάρ +ὡς +διεμαρτύρω +τά +περί +ἐμοῦ +εἰς +Ἱερουσαλήμ +οὕτω +δεῖ +σε +καί +εἰς +Ῥώμην +μαρτυρῆσαι +δέ +Γενομένης +ἡμέρας +ποιήσαντες +συστροφήν +οἱ +Ἰουδαῖοι +ἀνεθεμάτισαν +ἑαυτούς +λέγοντες +μήτε +φαγεῖν +μήτε +πιεῖν +ἕως +οὗ +ἀποκτείνωσιν +τόν +Παῦλον +δέ +ἦσαν +πλείους +τεσσεράκοντα +οἱ +ταύτην +τήν +συνωμοσίαν +ποιησάμενοι +οἵτινες +προσελθόντες +τοῖς +ἀρχιερεῦσιν +καί +τοῖς +πρεσβυτέροις +εἶπαν +Ἀναθέματι +ἀνεθεματίσαμεν +ἑαυτούς +μηδενός +γεύσασθαι +ἕως +οὗ +ἀποκτείνωμεν +τόν +Παῦλον +οὖν +νῦν +ὑμεῖς +ἐμφανίσατε +τῷ +χιλιάρχῳ +σύν +τῷ +συνεδρίῳ +ὅπως +καταγάγῃ +αὐτόν +εἰς +ὑμᾶς +ὡς +μέλλοντας +διαγινώσκειν +ἀκριβέστερον +τά +περί +αὐτοῦ +δέ +ἡμεῖς +πρό +τοῦ +ἐγγίσαι +αὐτόν +ἕτοιμοι +ἐσμεν +τοῦ +ἀνελεῖν +αὐτόν +δέ +ὁ +υἱός +τῆς +ἀδελφῆς +Παύλου +Ἀκούσας +τήν +ἐνέδραν +παραγενόμενος +καί +εἰσελθών +εἰς +τήν +παρεμβολήν +ἀπήγγειλεν +τῷ +Παύλῳ +δέ +ὁ +Παῦλος +προσκαλεσάμενος +ἕνα +τῶν +ἑκατονταρχῶν +ἔφη +Τόν +νεανίαν +τοῦτον +ἄπαγε +πρός +τόν +χιλίαρχον +γάρ +ἔχει +ἀπαγγεῖλαι +τι +αὐτῷ +μέν +οὖν +ὁ +παραλαβών +αὐτόν +ἤγαγεν +πρός +τόν +χιλίαρχον +καί +φησίν +Ὁ +δέσμιος +Παῦλος +προσκαλεσάμενος +με +ἠρώτησεν +τοῦτον +τόν +νεανίσκον +ἀγαγεῖν +πρός +σέ +ἔχοντα +τι +λαλῆσαι +σοι +δέ +ὁ +χιλίαρχος +ἐπιλαβόμενος +τῆς +χειρός +αὐτοῦ +καί +ἀναχωρήσας +κατ’ +ἰδίαν +ἐπυνθάνετο +Τί +ἐστιν +ὅ +ἀπαγγεῖλαι +μοι +ἔχεις +δέ +εἶπεν +ὅτι +Οἱ +Ἰουδαῖοι +συνέθεντο +τοῦ +ἐρωτῆσαι +σε +ὅπως +αὔριον +τόν +Παῦλον +καταγάγῃς +εἰς +τό +συνέδριον +ὡς +μέλλων +τι +ἀκριβέστερον +πυνθάνεσθαι +περί +αὐτοῦ +οὖν +σύ +μή +πεισθῇς +αὐτοῖς +γάρ +ἐνεδρεύουσιν +αὐτόν +ἐξ +αὐτῶν +ἄνδρες +πλείους +τεσσεράκοντα +οἵτινες +ἀνεθεμάτισαν +ἑαυτούς +μήτε +φαγεῖν +μήτε +πιεῖν +ἕως +οὗ +ἀνέλωσιν +αὐτόν +καί +νῦν +εἰσιν +ἕτοιμοι +προσδεχόμενοι +τήν +ἀπό +σοῦ +ἐπαγγελίαν +μέν +οὖν +ὁ +χιλίαρχος +ἀπέλυσε +τόν +νεανίσκον +παραγγείλας +μηδενί +ἐκλαλῆσαι +ὅτι +ταῦτα +ἐνεφάνισας +πρός +ἐμέ +Καί +προσκαλεσάμενος +τινας +δύο +τῶν +ἑκατονταρχῶν +εἶπεν +Ἑτοιμάσατε +στρατιώτας +διακοσίους +καί +ἱππεῖς +ἑβδομήκοντα +καί +δεξιολάβους +διακοσίους +ὅπως +πορευθῶσιν +ἕως +Καισαρίας +ἀπό +τρίτης +ὥρας +τῆς +νυκτός +τε +κτήνη +παραστῆσαι +ἵνα +ἐπιβιβάσαντες +τόν +Παῦλον +διασώσωσι +πρός +Φήλικα +τόν +ἡγεμόνα +γράψας +ἐπιστολήν +ἔχουσαν +τόν +τύπον +τοῦτον +Κλαύδιος +Λυσίας +τῷ +κρατίστῳ +ἡγεμόνι +Φήλικι +χαίρειν +Τόν +ἄνδρα +τοῦτον +συλλημφθέντα +ὑπό +τῶν +Ἰουδαίων +καί +μέλλοντα +ἀναιρεῖσθαι +ὑπ’ +αὐτῶν +ἐπιστάς +σύν +τῷ +στρατεύματι +ἐξειλάμην +μαθών +ὅτι +Ῥωμαῖος +ἐστιν +τε +βουλόμενος +ἐπιγνῶναι +τήν +αἰτίαν +δι’ +ἥν +ἐνεκάλουν +αὐτῷ +κατήγαγον +εἰς +τό +συνέδριον +αὐτῶν +εὗρον +ὅν +ἐγκαλούμενον +περί +ζητημάτων +τοῦ +νόμου +αὐτῶν +δέ +μηδέν +ἄξιον +θανάτου +ἤ +δεσμῶν +ἔγκλημα +ἔχοντα +δέ +μηνυθείσης +μοι +ἐπιβουλῆς +εἰς +τόν +ἄνδρα +ἔσεσθαι +ἐξαυτῆς +ἔπεμψα +πρός +σέ +παραγγείλας +καί +τοῖς +κατηγόροις +λέγειν +πρός +αὐτόν +ἐπί +σοῦ +μέν +οὖν +Οἱ +στρατιῶται +κατά +τό +διατεταγμένον +αὐτοῖς +ἀναλαβόντες +τόν +Παῦλον +ἤγαγον +διά +νυκτός +εἰς +τήν +Ἀντιπατρίδα +δέ +τῇ +ἐπαύριον +ἐάσαντες +τούς +ἱππεῖς +ἀπέρχεσθαι +σύν +αὐτῷ +ὑπέστρεψαν +εἰς +τήν +παρεμβολήν +οἵτινες +εἰσελθόντες +εἰς +τήν +Καισαρίαν +καί +ἀναδόντες +τήν +ἐπιστολήν +τῷ +ἡγεμόνι +παρέστησαν +καί +τόν +Παῦλον +αὐτῷ +δέ +ἀναγνούς +καί +ἐπερωτήσας +ἐκ +ποίας +ἐπαρχείας +ἐστίν +καί +πυθόμενος +ὅτι +ἀπό +Κιλικίας +ἔφη +Διακούσομαι +σου +ὅταν +καί +οἱ +κατήγοροι +σου +παραγένωνται +κελεύσας +ἐν +τῷ +πραιτωρίῳ +τοῦ +Ἠρῴδου +φυλάσσεσθαι +αὐτόν +δέ +Μετά +πέντε +ἡμέρας +κατέβη +ὁ +ἀρχιερεύς +Ἀνανίας +μετά +πρεσβυτέρων +τινῶν +καί +ῥήτορος +Τερτύλλου +τινός +οἵτινες +ἐνεφάνισαν +τῷ +ἡγεμόνι +κατά +τοῦ +Παύλου +δέ +κληθέντος +αὐτοῦ +ἤρξατο +κατηγορεῖν +ὁ +Τέρτυλλος +λέγων +Πολλῆς +εἰρήνης +τυγχάνοντες +διά +σοῦ +καί +διορθωμάτων +γινομένων +τῷ +ἔθνει +τούτῳ +διά +τῆς +σῆς +προνοίας +τε +πάντῃ +καί +πανταχοῦ +ἀποδεχόμεθα +μετά +πάσης +εὐχαριστίας +κράτιστε +Φῆλιξ +δέ +ἵνα +μή +ἐπί +πλεῖον +σε +ἐνκόπτω +παρακαλῶ +ἀκοῦσαι +σε +ἡμῶν +συντόμως +τῇ +σῇ +ἐπιεικείᾳ +γάρ +εὑρόντες +τόν +ἄνδρα +τοῦτον +λοιμόν +καί +κινοῦντα +στάσεις +πᾶσιν +τοῖς +Ἰουδαίοις +τοῖς +κατά +τήν +οἰκουμένην +τε +πρωτοστάτην +τῆς +τῶν +Ναζωραίων +αἱρέσεως +ὅς +καί +τό +ἱερόν +βεβηλῶσαι +ἐπείρασεν +ὅν +καί +ἐκρατήσαμεν +παρ’ +οὗ +δυνήσῃ +αὐτός +ἀνακρίνας +περί +πάντων +τούτων +ἐπιγνῶναι +ὧν +ἡμεῖς +κατηγοροῦμεν +αὐτοῦ +δέ +συνεπέθεντο +καί +οἱ +Ἰουδαῖοι +φάσκοντες +ταῦτα +οὕτως +ἔχειν +τε +Ἀπεκρίθη +ὁ +Παῦλος +νεύσαντος +αὐτῷ +τοῦ +ἡγεμόνος +λέγειν +Ἐκ +πολλῶν +ἐτῶν +ὄντα +σε +κριτήν +τῷ +ἔθνει +τούτῳ +ἐπιστάμενος +εὐθύμως +τά +περί +ἐμαυτοῦ +ἀπολογοῦμαι +δυναμένου +σου +ἐπιγνῶναι +ὅτι +οὐ +πλείους +εἰσίν +μοι +ἡμέραι +δώδεκα +ἀφ’ +ἧς +ἀνέβην +προσκυνήσων +εἰς +Ἱερουσαλήμ +καί +εὗρον +με +πρός +τινα +διαλεγόμενον +ἤ +ἐπίστασιν +ὄχλου +ποιοῦντα +οὔτε +ἐν +τῷ +ἱερῷ +οὔτε +ἐν +ταῖς +συναγωγαῖς +οὔτε +κατά +τήν +πόλιν +οὐδέ +δύνανται +παραστῆσαι +σοι +περί +ὧν +νυνί +κατηγοροῦσιν +μου +δέ +ὁμολογῶ +τοῦτο +σοι +ὅτι +κατά +τήν +Ὁδόν +ἥν +λέγουσιν +αἵρεσιν +οὕτως +λατρεύω +τῷ +πατρῴῳ +Θεῷ +πιστεύων +πᾶσι +τοῖς +κατά +τόν +νόμον +καί +τοῖς +ἐν +τοῖς +προφήταις +γεγραμμένοις +ἔχων +ἐλπίδα +εἰς +τόν +Θεόν +ἥν +καί +αὐτοί +οὗτοι +προσδέχονται +μέλλειν +ἔσεσθαι +ἀνάστασιν +τε +δικαίων +καί +ἀδίκων +ἐν +τούτῳ +καί +αὐτός +ἀσκῶ +ἀπρόσκοπον +συνείδησιν +ἔχειν +πρός +τόν +Θεόν +καί +τούς +ἀνθρώπους +διά +παντός +δέ +δι’ +ἐτῶν +πλειόνων +ἐλεημοσύνας +ποιήσων +εἰς +τό +ἔθνος +μου +παρεγενόμην +καί +προσφοράς +ἐν +αἷς +εὗρον +με +ἡγνισμένον +ἐν +τῷ +ἱερῷ +οὐ +μετά +ὄχλου +οὐδέ +μετά +θορύβου +δέ +τινές +ἀπό +τῆς +Ἀσίας +Ἰουδαῖοι +οὕς +ἐπί +σοῦ +παρεῖναι +καί +κατηγορεῖν +ἔδει +εἴ +τι +ἔχοιεν +πρός +ἐμέ +ἤ +αὐτοί +οὗτοι +εἰπάτωσαν +τί +ἀδίκημα +εὗρον +στάντος +μου +ἐπί +τοῦ +συνεδρίου +ἤ +περί +μιᾶς +ταύτης +φωνῆς +ἧς +ἐκέκραξα +ἐν +αὐτοῖς +ἑστώς +ὅτι +Περί +ἀναστάσεως +νεκρῶν +ἐγώ +κρίνομαι +σήμερον +ἐφ’ +ὑμῶν +δέ +Ἀνεβάλετο +αὐτούς +ὁ +Φῆλιξ +ἀκριβέστερον +εἰδώς +τά +περί +τῆς +Ὁδοῦ +εἴπας +Ὅταν +Λυσίας +ὁ +χιλίαρχος +καταβῇ +διαγνώσομαι +τά +καθ’ +ὑμᾶς +διαταξάμενος +τῷ +ἑκατοντάρχῃ +τηρεῖσθαι +αὐτόν +τε +ἔχειν +ἄνεσιν +καί +κωλύειν +μηδένα +τῶν +ἰδίων +αὐτοῦ +ὑπηρετεῖν +αὐτῷ +δέ +Μετά +ἡμέρας +τινάς +ὁ +Φῆλιξ +παραγενόμενος +σύν +Δρουσίλλῃ +τῇ +ἰδίᾳ +γυναικί +οὔσῃ +Ἰουδαίᾳ +μετεπέμψατο +τόν +Παῦλον +καί +ἤκουσεν +αὐτοῦ +περί +τῆς +εἰς +Χριστόν +Ἰησοῦν +πίστεως +δέ +διαλεγομένου +αὐτοῦ +περί +δικαιοσύνης +καί +ἐγκρατείας +καί +τοῦ +κρίματος +τοῦ +μέλλοντος +ἔμφοβος +γενόμενος +ὁ +Φῆλιξ +ἀπεκρίθη +Τό +νῦν +ἔχον +πορεύου +δέ +καιρόν +μεταλαβών +μετακαλέσομαι +σε +ἅμα +καί +ἐλπίζων +ὅτι +χρήματα +δοθήσεται +αὐτῷ +ὑπό +τοῦ +Παύλου +διό +καί +πυκνότερον +αὐτόν +μεταπεμπόμενος +ὡμίλει +αὐτῷ +δέ +Διετίας +πληρωθείσης +ἔλαβεν +ὁ +Φῆλιξ +διάδοχον +Πόρκιον +Φῆστον +τε +θέλων +χάριτα +καταθέσθαι +τοῖς +Ἰουδαίοις +ὁ +Φῆλιξ +κατέλιπε +τόν +Παῦλον +δεδεμένον +οὖν +Φῆστος +ἐπιβάς +τῇ +ἐπαρχείῳ +μετά +τρεῖς +ἡμέρας +ἀνέβη +εἰς +Ἱεροσόλυμα +ἀπό +Καισαρίας +τε +ἐνεφάνισαν +αὐτῷ +οἱ +ἀρχιερεῖς +καί +οἱ +πρῶτοι +τῶν +Ἰουδαίων +κατά +τοῦ +Παύλου +καί +παρεκάλουν +αὐτόν +αἰτούμενοι +χάριν +κατ’ +αὐτοῦ +ὅπως +μεταπέμψηται +αὐτόν +εἰς +Ἱερουσαλήμ +ἐνέδραν +ποιοῦντες +ἀνελεῖν +αὐτόν +κατά +τήν +ὁδόν +μέν +οὖν +ὁ +Φῆστος +ἀπεκρίθη +τηρεῖσθαι +τόν +Παῦλον +εἰς +Καισαρίαν +δέ +ἑαυτόν +μέλλειν +ἐν +τάχει +ἐκπορεύεσθαι +οὖν +φησίν +Οἱ +ἐν +ὑμῖν +δυνατοί +συνκαταβάντες +κατηγορείτωσαν +αὐτοῦ +εἴ +τί +ἄτοπον +ἐστιν +ἐν +τῷ +ἀνδρί +δέ +Διατρίψας +ἐν +αὐτοῖς +ἡμέρας +οὐ +πλείους +ὀκτώ +ἤ +δέκα +καταβάς +εἰς +Καισαρίαν +τῇ +ἐπαύριον +καθίσας +ἐπί +τοῦ +βήματος +ἐκέλευσεν +τόν +Παῦλον +ἀχθῆναι +δέ +παραγενομένου +αὐτοῦ +περιέστησαν +αὐτόν +οἱ +ἀπό +Ἱεροσολύμων +καταβεβηκότες +Ἰουδαῖοι +πολλά +καί +βαρέα +αἰτιώματα +καταφέροντες +ἅ +ἀποδεῖξαι +οὐκ +ἴσχυον +τοῦ +Παύλου +ἀπολογουμένου +ὅτι +Οὔτε +εἰς +τόν +νόμον +τῶν +Ἰουδαίων +οὔτε +εἰς +τό +ἱερόν +οὔτε +εἰς +Καίσαρα +τι +ἥμαρτον +δέ +ὁ +Φῆστος +θέλων +τοῖς +Ἰουδαίοις +χάριν +καταθέσθαι +ἀποκριθείς +τῷ +Παύλῳ +εἶπεν +Θέλεις +εἰς +Ἱεροσόλυμα +ἀναβάς +ἐκεῖ +περί +τούτων +κριθῆναι +ἐπ’ +ἐμοῦ +δέ +εἶπεν +ὁ +Παῦλος +ἐπί +τοῦ +βήματος +Καίσαρος +Ἑστώς +εἰμι +οὗ +με +κρίνεσθαι +δεῖ +Ἰουδαίους +οὐδέν +ἠδίκηκα +ὡς +καί +σύ +κάλλιον +ἐπιγινώσκεις +οὖν +μέν +εἰ +ἀδικῶ +καί +ἄξιον +θανάτου +τι +πέπραχα +οὐ +παραιτοῦμαι +τό +ἀποθανεῖν +δέ +εἰ +οὐδέν +ἐστιν +ὧν +οὗτοι +κατηγοροῦσιν +μου +οὐδείς +δύναται +με +αὐτοῖς +χαρίσασθαι +Καίσαρα +ἐπικαλοῦμαι +τότε +ὁ +Φῆστος +συνλαλήσας +μετά +τοῦ +συμβουλίου +ἀπεκρίθη +Καίσαρα +ἐπικέκλησαι +ἐπί +Καίσαρα +πορεύσῃ +δέ +Ἠμερῶν +τινῶν +διαγενομένων +Ἀγρίππας +ὁ +βασιλεύς +καί +Βερνίκη +κατήντησαν +εἰς +Καισαρίαν +ἀσπασάμενοι +τόν +Φῆστον +δέ +ὡς +πλείους +ἡμέρας +διέτριβον +ἐκεῖ +ὁ +Φῆστος +τῷ +βασιλεῖ +ἀνέθετο +τά +κατά +τόν +Παῦλον +λέγων +Ἀνήρ +τίς +ἐστιν +καταλελειμμένος +ὑπό +Φήλικος +δέσμιος +περί +οὗ +γενομένου +μου +εἰς +Ἱεροσόλυμα +ἐνεφάνισαν +οἱ +ἀρχιερεῖς +καί +οἱ +πρεσβύτεροι +τῶν +Ἰουδαίων +αἰτούμενοι +κατ’ +αὐτοῦ +καταδίκην +πρός +οὕς +ἀπεκρίθην +ὅτι +οὐκ +ἔστιν +ἔθος +Ῥωμαίοις +χαρίζεσθαι +τινα +ἄνθρωπον +πρίν +ἤ +ὁ +κατηγορούμενος +κατά +πρόσωπον +ἔχοι +τούς +κατηγόρους +τε +τόπον +ἀπολογίας +λάβοι +περί +τοῦ +ἐγκλήματος +οὖν +συνελθόντων +ἐνθάδε +ἀναβολήν +μηδεμίαν +ποιησάμενος +τῇ +ἑξῆς +καθίσας +ἐπί +τοῦ +βήματος +ἐκέλευσα +ἀχθῆναι +τόν +ἄνδρα +περί +οὗ +σταθέντες +οἱ +κατήγοροι +ἔφερον +οὐδεμίαν +αἰτίαν +ὧν +ἐγώ +ὑπενόουν +πονηρῶν +δέ +ζητήματα +τινα +περί +τῆς +ἰδίας +δεισιδαιμονίας +εἶχον +πρός +αὐτόν +καί +περί +τινος +Ἰησοῦ +τεθνηκότος +ὅν +ζῆν +ἔφασκεν +ὁ +Παῦλος +δέ +ἐγώ +ἀπορούμενος +τήν +περί +τούτων +ζήτησιν +ἔλεγον +εἰ +βούλοιτο +πορεύεσθαι +εἰς +Ἱεροσόλυμα +κἀκεῖ +κρίνεσθαι +περί +τούτων +δέ +τοῦ +Παύλου +ἐπικαλεσαμένου +τηρηθῆναι +αὐτόν +εἰς +τήν +τοῦ +Σεβαστοῦ +διάγνωσιν +ἐκέλευσα +τηρεῖσθαι +αὐτόν +ἕως +οὗ +ἀναπέμψω +αὐτόν +πρός +Καίσαρα +δέ +Ἀγρίππας +πρός +τόν +Φῆστον +Ἐβουλόμην +καί +αὐτός +τοῦ +ἀνθρώπου +ἀκοῦσαι +φησίν +Αὔριον +ἀκούσῃ +αὐτοῦ +οὖν +Τῇ +ἐπαύριον +ἐλθόντος +τοῦ +Ἀγρίππα +καί +τῆς +Βερνίκης +μετά +πολλῆς +φαντασίας +καί +εἰσελθόντων +εἰς +τό +ἀκροατήριον +σύν +τε +χιλιάρχοις +καί +ἀνδράσιν +τοῖς +κατ’ +ἐξοχήν +τῆς +πόλεως +καί +κελεύσαντος +τοῦ +Φήστου +ἤχθη +ὁ +Παῦλος +καί +φησιν +ὁ +Φῆστος +Ἀγρίππα +βασιλεῦ +καί +πάντες +οἱ +συνπαρόντες +ἡμῖν +ἄνδρες +θεωρεῖτε +τοῦτον +περί +οὗ +ἅπαν +τό +πλῆθος +τῶν +Ἰουδαίων +ἐνέτυχον +μοι +ἔν +τε +Ἱεροσολύμοις +καί +ἐνθάδε +βοῶντες +μή +δεῖν +αὐτόν +ζῆν +μηκέτι +δέ +ἐγώ +κατελαβόμην +μηδέν +ἄξιον +θανάτου +αὐτόν +πεπραχέναι +δέ +αὐτοῦ +τούτου +ἐπικαλεσαμένου +τόν +Σεβαστόν +ἔκρινα +πέμπειν +περί +οὗ +ἀσφαλές +τι +γράψαι +τῷ +κυρίῳ +οὐκ +ἔχω +διό +προήγαγον +αὐτόν +ἐφ’ +ὑμῶν +καί +μάλιστα +ἐπί +σοῦ +βασιλεῦ +Ἀγρίππα +ὅπως +τῆς +ἀνακρίσεως +γενομένης +σχῶ +τί +γράψω +γάρ +ἄλογον +μοι +δοκεῖ +πέμποντα +δέσμιον +μή +καί +τάς +κατ’ +αὐτοῦ +αἰτίας +σημᾶναι +δέ +Ἀγρίππας +πρός +τόν +Παῦλον +ἔφη +Ἐπιτρέπεται +σοι +ὑπέρ +σεαυτοῦ +λέγειν +τότε +ὁ +Παῦλος +ἐκτείνας +τήν +χεῖρα +ἀπελογεῖτο +βασιλεῦ +Ἀγρίππα +Περί +πάντων +ὧν +ἐγκαλοῦμαι +ὑπό +Ἰουδαίων +ἥγημαι +ἐμαυτόν +μακάριον +ἐπί +σοῦ +σήμερον +ἀπολογεῖσθαι +μέλλων +μάλιστα +ὄντα +σε +γνώστην +πάντων +τῶν +κατά +Ἰουδαίους +τε +ἐθῶν +καί +ζητημάτων +διό +δέομαι +μακροθύμως +ἀκοῦσαι +μου +μέν +οὖν +Τήν +βίωσιν +μου +ἐκ +νεότητος +τήν +ἀπ’ +ἀρχῆς +γενομένην +ἐν +τῷ +ἔθνει +μου +τε +ἔν +Ἱεροσολύμοις +ἴσασι +πάντες +Ἰουδαῖοι +προγινώσκοντες +με +ἄνωθεν +ἐάν +θέλωσι +μαρτυρεῖν +ὅτι +κατά +τήν +ἀκριβεστάτην +αἵρεσιν +τῆς +ἡμετέρας +θρησκείας +ἔζησα +Φαρισαῖος +καί +νῦν +ἐπ’ +ἐλπίδι +τῆς +εἰς +τούς +πατέρας +ἡμῶν +γενομένης +ὑπό +τοῦ +Θεοῦ +ἐπαγγελίας +ἕστηκα +κρινόμενος +εἰς +ἥν +καταντῆσαι +τό +δωδεκάφυλον +ἡμῶν +ἐν +ἐκτενείᾳ +νύκτα +καί +ἡμέραν +λατρεῦον +ἐλπίζει +περί +ἧς +ἐλπίδος +ἐγκαλοῦμαι +ὑπό +Ἰουδαίων +βασιλεῦ +τί +ἄπιστον +κρίνεται +παρ’ +ὑμῖν +εἰ +ὁ +Θεός +νεκρούς +ἐγείρει +μέν +οὖν +ἐγώ +ἔδοξα +ἐμαυτῷ +δεῖν +πρός +τό +ὄνομα +Ἰησοῦ +τοῦ +Ναζωραίου +πολλά +ἐναντία +πρᾶξαι +ὅ +καί +ἐποίησα +ἐν +Ἱεροσολύμοις +καί +τε +πολλούς +τῶν +ἁγίων +ἐγώ +ἐν +φυλακαῖς +κατέκλεισα +τήν +παρά +τῶν +ἀρχιερέων +ἐξουσίαν +λαβών +τε +ἀναιρουμένων +αὐτῶν +κατήνεγκα +ψῆφον +καί +κατά +πάσας +τάς +συναγωγάς +πολλάκις +τιμωρῶν +αὐτούς +ἠνάγκαζον +βλασφημεῖν +τε +περισσῶς +ἐμμαινόμενος +αὐτοῖς +ἐδίωκον +ἕως +καί +εἰς +τάς +ἔξω +πόλεις +Ἐν +οἷς +πορευόμενος +εἰς +τήν +Δαμασκόν +μετ’ +ἐξουσίας +καί +ἐπιτροπῆς +τῆς +τῶν +ἀρχιερέων +ἡμέρας +μέσης +κατά +τήν +ὁδόν +εἶδον +οὐρανόθεν +ὑπέρ +τήν +λαμπρότητα +τοῦ +ἡλίου +περιλάμψαν +φῶς +με +καί +τούς +σύν +ἐμοί +πορευομένους +βασιλεῦ +τε +πάντων +ἡμῶν +καταπεσόντων +εἰς +τήν +γῆν +ἤκουσα +φωνήν +λέγουσαν +πρός +με +τῇ +Ἑβραΐδι +διαλέκτῳ +Σαούλ +Σαούλ +τί +με +διώκεις +σκληρόν +σοι +πρός +κέντρα +λακτίζειν +δέ +ἐγώ +εἶπα +Τίς +εἶ +Κύριε +δέ +ὁ +Κύριος +εἶπεν +Ἐγώ +εἰμι +Ἰησοῦς +ὅν +σύ +διώκεις +ἀλλά +ἀνάστηθι +καί +στῆθι +ἐπί +τούς +πόδας +σου +γάρ +εἰς +τοῦτο +ὤφθην +σοι +προχειρίσασθαι +σε +ὑπηρέτην +καί +μάρτυρα +τε +ὧν +εἶδες +με +τε +ὧν +ὀφθήσομαι +σοι +ἐξαιρούμενος +σε +ἐκ +τοῦ +λαοῦ +καί +ἐκ +τῶν +ἐθνῶν +εἰς +οὕς +ἐγώ +ἀποστέλλω +σε +ἀνοῖξαι +ὀφθαλμούς +αὐτῶν +τοῦ +ἐπιστρέψαι +ἀπό +σκότους +εἰς +φῶς +καί +τῆς +ἐξουσίας +τοῦ +Σατανᾶ +ἐπί +τόν +Θεόν +τοῦ +λαβεῖν +αὐτούς +ἄφεσιν +ἁμαρτιῶν +καί +κλῆρον +ἐν +τοῖς +ἡγιασμένοις +πίστει +τῇ +εἰς +ἐμέ +Ὅθεν +βασιλεῦ +Ἀγρίππα +οὐκ +ἐγενόμην +ἀπειθής +τῇ +οὐρανίῳ +ὀπτασίᾳ +ἀλλά +τε +τοῖς +ἐν +Δαμασκῷ +πρῶτον +καί +Ἱεροσολύμοις +τε +πᾶσαν +τήν +χώραν +τῆς +Ἰουδαίας +καί +τοῖς +ἔθνεσιν +ἀπήγγελλον +μετανοεῖν +καί +ἐπιστρέφειν +ἐπί +τόν +Θεόν +ἄξια +τῆς +μετανοίας +ἔργα +πράσσοντας +ἕνεκα +τούτων +Ἰουδαῖοι +με +συλλαβόμενοι +ἐν +τῷ +ἱερῷ +ἐπειρῶντο +διαχειρίσασθαι +οὖν +τυχών +ἐπικουρίας +τῆς +ἀπό +τοῦ +Θεοῦ +ἄχρι +τῆς +ἡμέρας +ταύτης +ἕστηκα +μαρτυρόμενος +τε +μικρῷ +καί +μεγάλῳ +οὐδέν +λέγων +ἐκτός +ὧν +μελλόντων +γίνεσθαι +τε +οἱ +προφῆται +καί +Μωϋσῆς +ἐλάλησαν +εἰ +παθητός +ὁ +Χριστός +εἰ +πρῶτος +ἐξ +ἀναστάσεως +νεκρῶν +μέλλει +φῶς +καταγγέλλειν +τε +τῷ +λαῷ +καί +τοῖς +ἔθνεσιν +δέ +Ταῦτα +αὐτοῦ +ἀπολογουμένου +ὁ +Φῆστος +μεγάλῃ +τῇ +φωνῇ +φησιν +Μαίνῃ +Παῦλε +τά +πολλά +γράμματα +σε +εἰς +μανίαν +περιτρέπει +δέ +ὁ +Παῦλος +φησίν +κράτιστε +Φῆστε +Οὐ +μαίνομαι +ἀλλά +ἀληθείας +καί +σωφροσύνης +ῥήματα +ἀποφθέγγομαι +γάρ +ἐπίσταται +περί +τούτων +ὁ +βασιλεύς +πρός +ὅν +καί +παρρησιαζόμενος +λαλῶ +γάρ +λανθάνειν +αὐτόν +τούτων +οὐ +πείθομαι +οὐθέν +γάρ +οὐ +ἐστιν +πεπραγμένον +ἐν +γωνίᾳ +τοῦτο +βασιλεῦ +Ἀγρίππα +πιστεύεις +τοῖς +προφήταις +οἶδα +ὅτι +πιστεύεις +δέ +ὁ +Ἀγρίππας +πρός +τόν +Παῦλον +Ἐν +ὀλίγῳ +με +πείθεις +Χριστιανόν +ποιῆσαι +δέ +ὁ +Παῦλος +ἄν +Εὐξαίμην +τῷ +Θεῷ +καί +ἐν +ὀλίγῳ +καί +ἐν +μεγάλῳ +οὐ +μόνον +σέ +ἀλλά +καί +πάντας +τούς +ἀκούοντας +μου +σήμερον +γενέσθαι +τοιούτους +ὁποῖος +καί +ἐγώ +εἰμι +παρεκτός +τῶν +δεσμῶν +τούτων +Ἀνέστη +τε +ὁ +βασιλεύς +καί +ὁ +ἡγεμών +τε +ἥ +Βερνίκη +καί +οἱ +συνκαθήμενοι +αὐτοῖς +καί +ἀναχωρήσαντες +ἐλάλουν +πρός +ἀλλήλους +λέγοντες +ὅτι +Οὐδέν +θανάτου +ἤ +δεσμῶν +ἄξιον +πράσσει +ὁ +ἄνθρωπος +οὗτος +δέ +Ἀγρίππας +τῷ +Φήστῳ +ἔφη +Ἀπολελύσθαι +ἐδύνατο +ὁ +ἄνθρωπος +οὗτος +εἰ +μή +ἐπεκέκλητο +Καίσαρα +δέ +Ὡς +ἐκρίθη +τοῦ +ἀποπλεῖν +ἡμᾶς +εἰς +τήν +Ἰταλίαν +παρεδίδουν +τε +τόν +Παῦλον +καί +τινας +ἑτέρους +δεσμώτας +ἑκατοντάρχῃ +ὀνόματι +Ἰουλίῳ +σπείρης +Σεβαστῆς +δέ +ἐπιβάντες +πλοίῳ +Ἀδραμυττηνῷ +μέλλοντι +πλεῖν +εἰς +τούς +κατά +τήν +Ἀσίαν +τόπους +ἀνήχθημεν +ὄντος +σύν +ἡμῖν +Ἀριστάρχου +Μακεδόνος +Θεσσαλονικέως +τε +τῇ +ἑτέρᾳ +κατήχθημεν +εἰς +Σιδῶνα +τε +ὁ +Ἰούλιος +φιλανθρώπως +τῷ +Παύλῳ +χρησάμενος +ἐπέτρεψεν +πρός +τούς +φίλους +πορευθέντι +ἐπιμελείας +τυχεῖν +κἀκεῖθεν +ἀναχθέντες +ὑπεπλεύσαμεν +τήν +Κύπρον +διά +τό +τούς +ἀνέμους +εἶναι +ἐναντίους +τε +τό +πέλαγος +τό +κατά +τήν +Κιλικίαν +καί +Παμφυλίαν +διαπλεύσαντες +κατήλθαμεν +εἰς +Μύρρα +τῆς +Λυκίας +ὁ +ἑκατοντάρχης +Κἀκεῖ +εὑρών +πλοῖον +Ἀλεξανδρῖνον +πλέον +εἰς +τήν +Ἰταλίαν +ἐνεβίβασεν +ἡμᾶς +εἰς +αὐτό +δέ +ἐν +ἱκαναῖς +ἡμέραις +βραδυπλοοῦντες +καί +μόλις +γενόμενοι +κατά +τήν +Κνίδον +μή +προσεῶντος +ἡμᾶς +τοῦ +ἀνέμου +ὑπεπλεύσαμεν +τήν +Κρήτην +κατά +Σαλμώνην +τε +μόλις +παραλεγόμενοι +αὐτήν +ἤλθομεν +εἰς +τόπον +τινά +καλούμενον +Καλούς +Λιμένας +ᾧ +ἐγγύς +πόλις +Λασαία +ἦν +δέ +Ἱκανοῦ +χρόνου +διαγενομένου +καί +ὄντος +ἤδη +ἐπισφαλοῦς +τοῦ +πλοός +διά +τό +καί +τήν +Νηστείαν +ἤδη +παρεληλυθέναι +παρῄνει +ὁ +Παῦλος +λέγων +αὐτοῖς +Ἄνδρες +θεωρῶ +ὅτι +μετά +ὕβρεως +καί +πολλῆς +ζημίας +οὐ +μόνον +τοῦ +φορτίου +καί +τοῦ +πλοίου +ἀλλά +καί +τῶν +ψυχῶν +ἡμῶν +ἔσεσθαι +μέλλειν +τόν +πλοῦν +δέ +ὁ +ἑκατοντάρχης +τῷ +κυβερνήτῃ +καί +τῷ +ναυκλήρῳ +μᾶλλον +ἐπείθετο +ἤ +τοῖς +ὑπό +Παύλου +λεγομένοις +δέ +ἀνευθέτου +τοῦ +λιμένος +ὑπάρχοντος +πρός +παραχειμασίαν +οἱ +πλείονες +ἔθεντο +βουλήν +ἀναχθῆναι +ἐκεῖθεν +εἴ +πως +δύναιντο +καταντήσαντες +εἰς +Φοίνικα +λιμένα +τῆς +Κρήτης +βλέποντα +κατά +λίβα +καί +κατά +χῶρον +παραχειμάσαι +δέ +Ὑποπνεύσαντος +νότου +δόξαντες +τῆς +προθέσεως +κεκρατηκέναι +ἄραντες +ἆσσον +παρελέγοντο +τήν +Κρήτην +δέ +μετ’ +οὐ +πολύ +ἔβαλεν +κατ’ +αὐτῆς +ἄνεμος +τυφωνικός +ὁ +καλούμενος +Εὐρακύλων +δέ +συναρπασθέντος +τοῦ +πλοίου +καί +μή +δυναμένου +ἀντοφθαλμεῖν +τῷ +ἀνέμῳ +ἐπιδόντες +ἐφερόμεθα +δέ +ὑποδραμόντες +νησίον +τι +καλούμενον +Κλαῦδα +ἰσχύσαμεν +μόλις +περικρατεῖς +γενέσθαι +τῆς +σκάφης +ἥν +ἄραντες +βοηθείαις +ἐχρῶντο +ὑποζωννύντες +τό +πλοῖον +τε +φοβούμενοι +μή +εἰς +τήν +Σύρτιν +ἐκπέσωσιν +χαλάσαντες +τό +σκεῦος +οὕτως +ἐφέροντο +δέ +σφοδρῶς +χειμαζομένων +ἡμῶν +τῇ +ἑξῆς +ἐκβολήν +ἐποιοῦντο +καί +τῇ +τρίτῃ +αὐτόχειρες +τήν +σκευήν +τοῦ +πλοίου +ἔριψαν +δέ +μήτε +ἡλίου +μήτε +ἄστρων +ἐπιφαινόντων +ἐπί +πλείονας +ἡμέρας +τε +χειμῶνος +οὐκ +ὀλίγου +ἐπικειμένου +λοιπόν +περιῃρεῖτο +ἐλπίς +πᾶσα +τοῦ +σῴζεσθαι +ἡμᾶς +τε +Πολλῆς +ἀσιτίας +ὑπαρχούσης +τότε +σταθείς +ὁ +Παῦλος +ἐν +μέσῳ +αὐτῶν +εἶπεν +ὦ +ἄνδρες +μέν +Ἔδει +πειθαρχήσαντας +μοι +μή +ἀνάγεσθαι +ἀπό +τῆς +Κρήτης +τε +κερδῆσαι +τήν +ὕβριν +ταύτην +καί +τήν +ζημίαν +καί +τά +νῦν +παραινῶ +ὑμᾶς +εὐθυμεῖν +γάρ +ἀποβολή +ψυχῆς +οὐδεμία +ἔσται +ἐξ +ὑμῶν +πλήν +τοῦ +πλοίου +γάρ +παρέστη +μοι +ταύτῃ +τῇ +νυκτί +τοῦ +Θεοῦ +οὗ +εἰμι +ᾧ +καί +λατρεύω +ἄγγελος +λέγων +Μή +φοβοῦ +Παῦλε +Καίσαρι +σε +παραστῆναι +δεῖ +καί +ἰδού +κεχάρισται +σοι +ὁ +Θεός +πάντας +τούς +πλέοντας +μετά +σοῦ +διό +εὐθυμεῖτε +ἄνδρες +γάρ +πιστεύω +τῷ +Θεῷ +ὅτι +οὕτως +ἔσται +καθ’ +ὅν +τρόπον +λελάληται +μοι +δέ +δεῖ +εἰς +νῆσον +τινα +ἡμᾶς +ἐκπεσεῖν +δέ +Ὡς +τεσσαρεσκαιδεκάτη +νύξ +ἐγένετο +διαφερομένων +ἡμῶν +ἐν +τῷ +Ἀδρίᾳ +κατά +μέσον +τῆς +νυκτός +ὑπενόουν +οἱ +ναῦται +προσάγειν +τινά +χώραν +αὐτοῖς +καί +βολίσαντες +εὗρον +ὀργυιάς +εἴκοσι +δέ +βραχύ +διαστήσαντες +καί +πάλιν +βολίσαντες +εὗρον +ὀργυιάς +δεκαπέντε +τε +φοβούμενοι +μή +που +κατά +τραχεῖς +τόπους +ἐκπέσωμεν +ἐκ +πρύμνης +ῥίψαντες +ἀγκύρας +τέσσαρας +ηὔχοντο +ἡμέραν +γενέσθαι +δέ +Τῶν +ναυτῶν +ζητούντων +φυγεῖν +ἐκ +τοῦ +πλοίου +καί +χαλασάντων +τήν +σκάφην +εἰς +τήν +θάλασσαν +προφάσει +ὡς +ἐκ +πρῴρης +ἀγκύρας +ἐκτείνειν +μελλόντων +εἶπεν +ὁ +Παῦλος +τῷ +ἑκατοντάρχῃ +καί +τοῖς +στρατιώταις +Ἐάν +μή +οὗτοι +μείνωσιν +ἐν +τῷ +πλοίῳ +ὑμεῖς +σωθῆναι +οὐ +δύνασθε +τότε +ἀπέκοψαν +οἱ +στρατιῶται +τά +σχοινία +τῆς +σκάφης +καί +εἴασαν +αὐτήν +ἐκπεσεῖν +δέ +Ἄχρι +οὗ +ἡμέρα +ἤμελλεν +γίνεσθαι +παρεκάλει +ὁ +Παῦλος +ἅπαντας +μεταλαβεῖν +τροφῆς +λέγων +Τεσσαρεσκαιδεκάτην +ἡμέραν +σήμερον +προσδοκῶντες +ἄσιτοι +διατελεῖτε +μηθέν +προσλαβόμενοι +διό +παρακαλῶ +ὑμᾶς +μεταλαβεῖν +τροφῆς +γάρ +τοῦτο +πρός +τῆς +ὑμετέρας +σωτηρίας +ὑπάρχει +γάρ +οὐδενός +ὑμῶν +θρίξ +ἀπό +τῆς +κεφαλῆς +ἀπολεῖται +δέ +εἴπας +ταῦτα +καί +λαβών +ἄρτον +εὐχαρίστησεν +τῷ +Θεῷ +ἐνώπιον +πάντων +καί +κλάσας +ἤρξατο +ἐσθίειν +δέ +εὔθυμοι +γενόμενοι +πάντες +καί +αὐτοί +προσελάβοντο +τροφῆς +δέ +ἤμεθα +αἱ +πᾶσαι +ψυχαί +ἐν +τῷ +πλοίῳ +διακόσιαι +ἑβδομήκοντα +ἕξ +δέ +κορεσθέντες +τροφῆς +ἐκούφιζον +τό +πλοῖον +ἐκβαλλόμενοι +τόν +σῖτον +εἰς +τήν +θάλασσαν +δέ +Ὅτε +ἡμέρα +ἐγένετο +τήν +γῆν +οὐκ +ἐπεγίνωσκον +δέ +κατενόουν +κόλπον +τινα +ἔχοντα +αἰγιαλόν +εἰς +ὅν +ἐξῶσαι +τό +πλοῖον +ἐβουλεύοντο +εἰ +δύναιντο +καί +τάς +ἀγκύρας +περιελόντες +εἴων +εἰς +τήν +θάλασσαν +ἅμα +ἀνέντες +τάς +ζευκτηρίας +τῶν +πηδαλίων +καί +ἐπάραντες +τόν +ἀρτέμωνα +τῇ +πνεούσῃ +κατεῖχον +εἰς +τόν +αἰγιαλόν +δέ +περιπεσόντες +εἰς +τόπον +διθάλασσον +ἐπέκειλαν +τήν +ναῦν +καί +μέν +ἡ +πρῷρα +ἐρείσασα +ἔμεινεν +ἀσάλευτος +δέ +ἡ +πρύμνα +ἐλύετο +ὑπό +τῆς +βίας +δέ +Τῶν +στρατιωτῶν +βουλή +ἐγένετο +ἵνα +τούς +δεσμώτας +ἀποκτείνωσιν +μή +τις +ἐκκολυμβήσας +διαφύγῃ +δέ +ὁ +ἑκατοντάρχης +βουλόμενος +διασῶσαι +τόν +Παῦλον +ἐκώλυσεν +αὐτούς +τοῦ +βουλήματος +τε +ἐκέλευσεν +τούς +δυναμένους +κολυμβᾶν +ἀπορίψαντας +πρώτους +ἐπί +τήν +γῆν +ἐξιέναι +καί +τούς +λοιπούς +μέν +οὕς +ἐπί +σανίσιν +δέ +οὕς +ἐπί +τινων +τῶν +ἀπό +τοῦ +πλοίου +καί +οὕτως +ἐγένετο +πάντας +διασωθῆναι +ἐπί +τήν +γῆν +Καί +διασωθέντες +τότε +ἐπέγνωμεν +ὅτι +Μελίτη +ἡ +νῆσος +καλεῖται +τε +οἵ +βάρβαροι +παρεῖχαν +τήν +οὐ +τυχοῦσαν +φιλανθρωπίαν +ἡμῖν +γάρ +ἅψαντες +πυράν +προσελάβοντο +πάντας +ἡμᾶς +διά +τόν +ὑετόν +τόν +ἐφεστῶτα +καί +διά +τό +ψῦχος +δέ +συστρέψαντος +τοῦ +Παύλου +φρυγάνων +τι +πλῆθος +καί +ἐπιθέντος +ἐπί +τήν +πυράν +ἔχιδνα +ἀπό +τῆς +θέρμης +ἐξελθοῦσα +καθῆψεν +τῆς +χειρός +αὐτοῦ +δέ +ὡς +εἶδον +οἱ +βάρβαροι +κρεμάμενον +τό +θηρίον +ἐκ +τῆς +χειρός +αὐτοῦ +πρός +ἀλλήλους +ἔλεγον +Πάντως +φονεύς +ἐστιν +ὁ +ἄνθρωπος +οὗτος +ὅν +διασωθέντα +ἐκ +τῆς +θαλάσσης +ζῆν +ἡ +Δίκη +οὐκ +εἴασεν +μέν +οὖν +ὁ +ἀποτινάξας +τό +θηρίον +εἰς +τό +πῦρ +ἔπαθεν +οὐδέν +κακόν +δέ +οἱ +προσεδόκων +αὐτόν +μέλλειν +πίμπρασθαι +ἤ +καταπίπτειν +ἄφνω +νεκρόν +δέ +ἐπί +πολύ +αὐτῶν +προσδοκώντων +καί +θεωρούντων +μηδέν +ἄτοπον +εἰς +αὐτόν +γινόμενον +μεταβαλόμενοι +ἔλεγον +αὐτόν +εἶναι +θεόν +δέ +Ἐν +τοῖς +περί +τόν +τόπον +ἐκεῖνον +ὑπῆρχεν +χωρία +τῷ +πρώτῳ +τῆς +νήσου +ὀνόματι +Ποπλίῳ +ὅς +ἀναδεξάμενος +ἡμᾶς +ἡμέρας +τρεῖς +φιλοφρόνως +ἐξένισεν +δέ +ἐγένετο +τόν +πατέρα +τοῦ +Ποπλίου +πυρετοῖς +καί +δυσεντερίῳ +συνεχόμενον +κατακεῖσθαι +πρός +ὅν +εἰσελθών +καί +προσευξάμενος +ὁ +Παῦλος +ἐπιθείς +τάς +χεῖρας +αὐτῷ +ἰάσατο +αὐτόν +δέ +τούτου +γενομένου +καί +οἱ +λοιποί +οἱ +ἐν +τῇ +νήσῳ +ἔχοντες +ἀσθενείας +προσήρχοντο +καί +ἐθεραπεύοντο +οἵ +καί +πολλαῖς +τιμαῖς +ἐτίμησαν +ἡμᾶς +καί +ἀναγομένοις +ἐπέθεντο +τά +πρός +τάς +χρείας +δέ +Μετά +τρεῖς +μῆνας +ἀνήχθημεν +ἐν +πλοίῳ +παρακεχειμακότι +ἐν +τῇ +νήσῳ +Ἀλεξανδρινῷ +παρασήμῳ +Διοσκούροις +καί +καταχθέντες +εἰς +Συρακούσας +ἐπεμείναμεν +ἡμέρας +τρεῖς +ὅθεν +περιελθόντες +κατηντήσαμεν +εἰς +Ῥήγιον +καί +μετά +μίαν +ἡμέραν +ἐπιγενομένου +νότου +δευτεραῖοι +ἤλθομεν +εἰς +Ποτιόλους +οὗ +εὑρόντες +ἀδελφούς +παρεκλήθημεν +παρ’ +αὐτοῖς +ἐπιμεῖναι +ἡμέρας +ἑπτά +καί +οὕτως +εἰς +τήν +Ῥώμην +ἤλθαμεν +κἀκεῖθεν +οἱ +ἀδελφοί +ἀκούσαντες +τά +περί +ἡμῶν +ἦλθαν +εἰς +ἀπάντησιν +ἡμῖν +ἄχρι +Ἀππίου +Φόρου +καί +Τριῶν +Ταβερνῶν +οὕς +ἰδών +ὁ +Παῦλος +εὐχαριστήσας +τῷ +Θεῷ +ἔλαβε +θάρσος +δέ +Ὅτε +εἰσήλθομεν +εἰς +Ῥώμην +ἐπετράπη +τῷ +Παύλῳ +μένειν +καθ’ +ἑαυτόν +σύν +τῷ +φυλάσσοντι +αὐτόν +στρατιώτῃ +δέ +Ἐγένετο +μετά +ἡμέρας +τρεῖς +συνκαλέσασθαι +αὐτόν +τούς +ὄντας +τῶν +Ἰουδαίων +πρώτους +δέ +συνελθόντων +αὐτῶν +ἔλεγεν +πρός +αὐτούς +ἄνδρες +ἀδελφοί +Ἐγώ +οὐδέν +ἐναντίον +ποιήσας +τῷ +λαῷ +ἤ +τοῖς +ἔθεσι +τοῖς +πατρῴοις +δέσμιος +ἐξ +Ἱεροσολύμων +παρεδόθην +εἰς +τάς +χεῖρας +τῶν +Ῥωμαίων +οἵτινες +ἀνακρίναντες +με +ἐβούλοντο +ἀπολῦσαι +διά +τό +μηδεμίαν +αἰτίαν +θανάτου +ὑπάρχειν +ἐν +ἐμοί +δέ +ἀντιλεγόντων +τῶν +Ἰουδαίων +ἠναγκάσθην +ἐπικαλέσασθαι +Καίσαρα +οὐχ +ὡς +τοῦ +ἔθνους +μου +τι +κατηγορεῖν +ἔχων +οὖν +διά +ταύτην +τήν +αἰτίαν +παρεκάλεσα +ὑμᾶς +ἰδεῖν +καί +προσλαλῆσαι +γάρ +εἵνεκεν +τῆς +ἐλπίδος +τοῦ +Ἰσραήλ +τήν +ἅλυσιν +ταύτην +περίκειμαι +δέ +οἱ +πρός +αὐτόν +εἶπαν +οὔτε +Ἠμεῖς +γράμματα +περί +σοῦ +ἐδεξάμεθα +ἀπό +τῆς +Ἰουδαίας +οὔτε +παραγενόμενος +τις +τῶν +ἀδελφῶν +ἀπήγγειλεν +ἤ +ἐλάλησεν +τι +περί +σοῦ +πονηρόν +δέ +ἀξιοῦμεν +παρά +σοῦ +ἀκοῦσαι +ἅ +φρονεῖς +γάρ +μέν +περί +τῆς +αἱρέσεως +ταύτης +γνωστόν +ἡμῖν +ἐστιν +ὅτι +πανταχοῦ +ἀντιλέγεται +δέ +Ταξάμενοι +αὐτῷ +ἡμέραν +ἦλθον +πρός +αὐτόν +εἰς +τήν +ξενίαν +πλείονες +οἷς +ἐξετίθετο +διαμαρτυρόμενος +τήν +βασιλείαν +τοῦ +Θεοῦ +τε +πείθων +αὐτούς +περί +τοῦ +Ἰησοῦ +ἀπό +τε +τοῦ +νόμου +Μωϋσέως +καί +τῶν +προφητῶν +ἀπό +πρωΐ +ἕως +ἑσπέρας +καί +μέν +οἱ +ἐπείθοντο +τοῖς +λεγομένοις +δέ +οἱ +ἠπίστουν +δέ +ἀσύμφωνοι +ὄντες +πρός +ἀλλήλους +ἀπελύοντο +εἰπόντος +τοῦ +Παύλου +ῥῆμα +ἕν +ὅτι +Καλῶς +τό +Πνεῦμα +τό +Ἅγιον +ἐλάλησεν +διά +Ἠσαΐου +τοῦ +προφήτου +πρός +τούς +πατέρας +ὑμῶν +λέγων +Πορεύθητι +πρός +τόν +λαόν +τοῦτον +καί +εἰπόν +Ἀκοῇ +ἀκούσετε +καί +οὐ +μή +συνῆτε +καί +βλέποντες +βλέψετε +καί +οὐ +μή +ἴδητε +γάρ +ἐπαχύνθη +ἡ +καρδία +τοῦ +λαοῦ +τούτου +καί +τοῖς +ὠσίν +βαρέως +ἤκουσαν +καί +τούς +ὀφθαλμούς +αὐτῶν +ἐκάμμυσαν +μή +ποτε +ἴδωσιν +τοῖς +ὀφθαλμοῖς +καί +τοῖς +ὠσίν +ἀκούσωσιν +καί +τῇ +καρδίᾳ +συνῶσιν +καί +ἐπιστρέψωσιν +καί +ἰάσομαι +αὐτούς +οὖν +γνωστόν +ἔστω +ὑμῖν +ὅτι +τοῖς +ἔθνεσιν +ἀπεστάλη +τοῦτο +τό +σωτήριον +τοῦ +Θεοῦ +αὐτοί +καί +ἀκούσονται +δέ +Ἐνέμεινεν +διετίαν +ὅλην +ἐν +ἰδίῳ +μισθώματι +καί +ἀπεδέχετο +πάντας +τούς +εἰσπορευομένους +πρός +αὐτόν +κηρύσσων +τήν +βασιλείαν +τοῦ +Θεοῦ +καί +διδάσκων +τά +περί +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +μετά +πάσης +παρρησίας +ἀκωλύτως +Παῦλος +δοῦλος +Χριστοῦ +Ἰησοῦ +κλητός +ἀπόστολος +ἀφωρισμένος +εἰς +εὐαγγέλιον +Θεοῦ +ὅ +προεπηγγείλατο +διά +τῶν +προφητῶν +αὐτοῦ +ἐν +γραφαῖς +ἁγίαις +περί +τοῦ +Υἱοῦ +αὐτοῦ +τοῦ +γενομένου +ἐκ +σπέρματος +Δαυείδ +κατά +σάρκα +τοῦ +ὁρισθέντος +Υἱοῦ +Θεοῦ +ἐν +δυνάμει +κατά +πνεῦμα +ἁγιωσύνης +ἐξ +ἀναστάσεως +νεκρῶν +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν +δι’ +οὗ +ἐλάβομεν +χάριν +καί +ἀποστολήν +εἰς +ὑπακοήν +πίστεως +ἐν +πᾶσιν +τοῖς +ἔθνεσιν +ὑπέρ +τοῦ +ὀνόματος +αὐτοῦ +ἐν +οἷς +ἐστε +καί +ὑμεῖς +κλητοί +Ἰησοῦ +Χριστοῦ +πᾶσιν +τοῖς +οὖσιν +ἐν +Ῥώμῃ +ἀγαπητοῖς +Θεοῦ +κλητοῖς +ἁγίοις +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +μέν +Πρῶτον +εὐχαριστῶ +τῷ +Θεῷ +μου +διά +Ἰησοῦ +Χριστοῦ +περί +πάντων +ὑμῶν +ὅτι +ἡ +πίστις +ὑμῶν +καταγγέλλεται +ἐν +ὅλῳ +τῷ +κόσμῳ +γάρ +μάρτυς +μού +ἐστιν +ὁ +Θεός +ᾧ +λατρεύω +ἐν +τῷ +πνεύματι +μου +ἐν +τῷ +εὐαγγελίῳ +τοῦ +Υἱοῦ +αὐτοῦ +ὡς +ἀδιαλείπτως +μνείαν +ὑμῶν +ποιοῦμαι +πάντοτε +ἐπί +τῶν +προσευχῶν +μου +δεόμενος +εἴ +πως +ἤδη +ποτέ +εὐοδωθήσομαι +ἐν +τῷ +θελήματι +τοῦ +Θεοῦ +ἐλθεῖν +πρός +ὑμᾶς +γάρ +ἐπιποθῶ +ἰδεῖν +ὑμᾶς +ἵνα +μεταδῶ +τι +χάρισμα +πνευματικόν +ὑμῖν +εἰς +τό +στηριχθῆναι +ὑμᾶς +δέ +τοῦτο +ἐστιν +συνπαρακληθῆναι +ἐν +ὑμῖν +διά +τῆς +ἐν +ἀλλήλοις +πίστεως +τε +ὑμῶν +καί +ἐμοῦ +δέ +ἀδελφοί +οὐ +θέλω +ὑμᾶς +ἀγνοεῖν +ὅτι +πολλάκις +προεθέμην +ἐλθεῖν +πρός +ὑμᾶς +καί +ἐκωλύθην +ἄχρι +τοῦ +δεῦρο +ἵνα +τινά +καρπόν +σχῶ +καί +ἐν +ὑμῖν +καθώς +καί +ἐν +τοῖς +λοιποῖς +ἔθνεσιν +τε +Ἕλλησιν +καί +Βαρβάροις +τε +σοφοῖς +καί +ἀνοήτοις +ὀφειλέτης +εἰμί +οὕτως +τό +κατ’ +ἐμέ +πρόθυμον +καί +ὑμῖν +τοῖς +ἐν +Ῥώμῃ +εὐαγγελίσασθαι +γάρ +οὐ +ἐπαισχύνομαι +τό +εὐαγγέλιον +γάρ +δύναμις +Θεοῦ +ἐστιν +εἰς +σωτηρίαν +παντί +τῷ +πιστεύοντι +τε +Ἰουδαίῳ +πρῶτον +καί +Ἕλληνι +γάρ +δικαιοσύνη +Θεοῦ +ἐν +αὐτῷ +ἀποκαλύπτεται +ἐκ +πίστεως +εἰς +πίστιν +καθώς +γέγραπται +δέ +Ὁ +δίκαιος +ἐκ +πίστεως +ζήσεται +γάρ +Ἀποκαλύπτεται +ὀργή +Θεοῦ +ἀπ’ +οὐρανοῦ +ἐπί +πᾶσαν +ἀσέβειαν +καί +ἀδικίαν +ἀνθρώπων +τῶν +τήν +ἀλήθειαν +ἐν +ἀδικίᾳ +κατεχόντων +διότι +τό +γνωστόν +τοῦ +Θεοῦ +φανερόν +ἐστιν +ἐν +αὐτοῖς +γάρ +ὁ +θεός +αὐτοῖς +ἐφανέρωσεν +γάρ +τά +ἀόρατα +αὐτοῦ +ἥ +τε +ἀΐδιος +αὐτοῦ +δύναμις +καί +θειότης +ἀπό +κτίσεως +κόσμου +τοῖς +ποιήμασιν +νοούμενα +καθορᾶται +εἰς +τό +εἶναι +αὐτούς +ἀναπολογήτους +διότι +γνόντες +τόν +Θεόν +οὐχ +ὡς +Θεόν +ἐδόξασαν +ἤ +ηὐχαρίστησαν +ἀλλά +ἐματαιώθησαν +ἐν +τοῖς +διαλογισμοῖς +αὐτῶν +καί +ἐσκοτίσθη +ἡ +ἀσύνετος +αὐτῶν +καρδία +φάσκοντες +εἶναι +σοφοί +ἐμωράνθησαν +καί +ἤλλαξαν +τήν +δόξαν +τοῦ +ἀφθάρτου +Θεοῦ +ἐν +ὁμοιώματι +εἰκόνος +φθαρτοῦ +ἀνθρώπου +καί +πετεινῶν +καί +τετραπόδων +καί +ἑρπετῶν +Διό +παρέδωκεν +αὐτούς +ὁ +Θεός +ἐν +ταῖς +ἐπιθυμίαις +τῶν +καρδιῶν +αὐτῶν +εἰς +ἀκαθαρσίαν +τοῦ +ἀτιμάζεσθαι +τά +σώματα +αὐτῶν +ἐν +αὐτοῖς +οἵτινες +μετήλλαξαν +τήν +ἀλήθειαν +τοῦ +Θεοῦ +ἐν +τῷ +ψεύδει +καί +ἐσεβάσθησαν +καί +ἐλάτρευσαν +τῇ +κτίσει +παρά +τόν +Κτίσαντα +ὅς +ἐστιν +εὐλογητός +εἰς +τούς +αἰῶνας +ἀμήν +Διά +τοῦτο +παρέδωκεν +αὐτούς +ὁ +Θεός +εἰς +πάθη +ἀτιμίας +γάρ +τε +αἵ +θήλειαι +αὐτῶν +μετήλλαξαν +τήν +φυσικήν +χρῆσιν +εἰς +τήν +παρά +φύσιν +τε +ὁμοίως +καί +οἱ +ἄρσενες +ἀφέντες +τήν +φυσικήν +χρῆσιν +τῆς +θηλείας +ἐξεκαύθησαν +ἐν +τῇ +ὀρέξει +αὐτῶν +εἰς +ἀλλήλους +ἄρσενες +ἐν +ἄρσεσιν +τήν +ἀσχημοσύνην +κατεργαζόμενοι +καί +τήν +ἀντιμισθίαν +ἥν +ἔδει +τῆς +πλάνης +αὐτῶν +ἐν +ἑαυτοῖς +ἀπολαμβάνοντες +Καί +καθώς +οὐκ +ἐδοκίμασαν +τόν +Θεόν +ἔχειν +ἐν +ἐπιγνώσει +παρέδωκεν +αὐτούς +ὁ +Θεός +εἰς +ἀδόκιμον +νοῦν +ποιεῖν +τά +μή +καθήκοντα +πεπληρωμένους +πάσῃ +ἀδικίᾳ +πονηρίᾳ +πλεονεξίᾳ +κακίᾳ +μεστούς +φθόνου +φόνου +ἔριδος +δόλου +κακοηθείας +ψιθυριστάς +καταλάλους +θεοστυγεῖς +ὑβριστάς +ὑπερηφάνους +ἀλαζόνας +ἐφευρετάς +κακῶν +γονεῦσιν +ἀπειθεῖς +ἀσυνέτους +ἀσυνθέτους +ἀστόργους +ἀνελεήμονας +οἵτινες +τό +δικαίωμα +τοῦ +Θεοῦ +ἐπιγνόντες +ὅτι +οἱ +τά +τοιαῦτα +πράσσοντες +ἄξιοι +θανάτου +εἰσίν +οὐ +μόνον +αὐτά +ποιοῦσιν +ἀλλά +καί +συνευδοκοῦσιν +τοῖς +πράσσουσιν +Διό +ἀναπολόγητος +εἶ +ὦ +ἄνθρωπε +πᾶς +ὁ +κρίνων +γάρ +ἐν +ᾧ +κρίνεις +τόν +ἕτερον +σεαυτόν +κατακρίνεις +γάρ +τά +αὐτά +πράσσεις +ὁ +κρίνων +δέ +οἴδαμεν +ὅτι +τό +κρίμα +τοῦ +Θεοῦ +ἐστιν +κατά +ἀλήθειαν +ἐπί +τούς +τά +τοιαῦτα +πράσσοντας +δέ +λογίζῃ +τοῦτο +ὦ +ἄνθρωπε +ὁ +κρίνων +τούς +τά +τοιαῦτα +πράσσοντας +καί +ποιῶν +αὐτά +ὅτι +σύ +ἐκφεύξῃ +τό +κρίμα +τοῦ +Θεοῦ +ἤ +τοῦ +πλούτου +τῆς +χρηστότητος +αὐτοῦ +καί +τῆς +ἀνοχῆς +καί +τῆς +μακροθυμίας +καταφρονεῖς +ἀγνοῶν +ὅτι +τό +χρηστόν +τοῦ +Θεοῦ +εἰς +μετάνοιαν +σε +ἄγει +δέ +κατά +τήν +σκληρότητα +σου +καί +ἀμετανόητον +καρδίαν +θησαυρίζεις +σεαυτῷ +ὀργήν +ἐν +ἡμέρᾳ +ὀργῆς +καί +ἀποκαλύψεως +δικαιοκρισίας +τοῦ +Θεοῦ +ὅς +ἀποδώσει +ἑκάστῳ +κατά +τά +ἔργα +αὐτοῦ +μέν +τοῖς +καθ’ +ὑπομονήν +ἔργου +ἀγαθοῦ +δόξαν +καί +τιμήν +καί +ἀφθαρσίαν +ζητοῦσιν +ζωήν +αἰώνιον +δέ +τοῖς +ἐξ +ἐριθείας +καί +ἀπειθοῦσι +τῇ +ἀληθείᾳ +δέ +πειθομένοις +τῇ +ἀδικίᾳ +ὀργή +καί +θυμός +θλῖψις +καί +στενοχωρία +ἐπί +πᾶσαν +ψυχήν +ἀνθρώπου +τοῦ +κατεργαζομένου +τό +κακόν +τε +Ἰουδαίου +πρῶτον +καί +Ἕλληνος +δέ +δόξα +καί +τιμή +καί +εἰρήνη +παντί +τῷ +ἐργαζομένῳ +τό +ἀγαθόν +τε +Ἰουδαίῳ +πρῶτον +καί +Ἕλληνι +γάρ +οὐ +ἐστιν +προσωπολημψία +παρά +τῷ +Θεῷ +γάρ +Ὅσοι +ἀνόμως +ἥμαρτον +ἀνόμως +καί +ἀπολοῦνται +καί +ὅσοι +ἐν +νόμῳ +ἥμαρτον +διά +νόμου +κριθήσονται +γάρ +οὐ +οἱ +ἀκροαταί +νόμου +δίκαιοι +παρά +τῷ +Θεῷ +ἀλλ’ +οἱ +ποιηταί +νόμου +δικαιωθήσονται +γάρ +ὅταν +ἔθνη +τά +μή +νόμον +ἔχοντα +φύσει +τά +τοῦ +νόμου +ποιῶσιν +οὗτοι +νόμον +μή +ἔχοντες +ἑαυτοῖς +εἰσιν +νόμος +οἵτινες +ἐνδείκνυνται +τό +ἔργον +τοῦ +νόμου +γραπτόν +ἐν +ταῖς +καρδίαις +αὐτῶν +συνμαρτυρούσης +αὐτῶν +τῆς +συνειδήσεως +καί +μεταξύ +ἀλλήλων +τῶν +λογισμῶν +κατηγορούντων +ἤ +καί +ἀπολογουμένων +ἡμέρᾳ +ἐν +ᾗ +κρίνει +ὁ +Θεός +τά +κρυπτά +τῶν +ἀνθρώπων +κατά +τό +εὐαγγέλιον +μου +διά +Χριστοῦ +Ἰησοῦ +δέ +Εἰ +σύ +Ἰουδαῖος +ἐπονομάζῃ +καί +ἐπαναπαύῃ +νόμῳ +καί +καυχᾶσαι +ἐν +Θεῷ +καί +γινώσκεις +τό +θέλημα +καί +δοκιμάζεις +τά +διαφέροντα +κατηχούμενος +ἐκ +τοῦ +νόμου +τε +πέποιθας +σεαυτόν +εἶναι +ὁδηγόν +τυφλῶν +φῶς +τῶν +ἐν +σκότει +παιδευτήν +ἀφρόνων +διδάσκαλον +νηπίων +ἔχοντα +τήν +μόρφωσιν +τῆς +γνώσεως +καί +τῆς +ἀληθείας +ἐν +τῷ +νόμῳ +οὖν +ὁ +διδάσκων +ἕτερον +σεαυτόν +οὐ +διδάσκεις +ὁ +κηρύσσων +μή +κλέπτειν +κλέπτεις +ὁ +λέγων +μή +μοιχεύειν +μοιχεύεις +ὁ +βδελυσσόμενος +τά +εἴδωλα +ἱεροσυλεῖς +ὅς +ἐν +νόμῳ +καυχᾶσαι +διά +τῆς +παραβάσεως +τοῦ +νόμου +τόν +Θεόν +ἀτιμάζεις +γάρ +τό +ὄνομα +τοῦ +Θεοῦ +δι’ +ὑμᾶς +βλασφημεῖται +ἐν +τοῖς +ἔθνεσιν +καθώς +γέγραπται +γάρ +μέν +περιτομή +ὠφελεῖ +ἐάν +νόμον +πράσσῃς +δέ +ἐάν +παραβάτης +νόμου +ᾖς +ἡ +περιτομή +σου +ἀκροβυστία +γέγονεν +οὖν +ἐάν +ἡ +ἀκροβυστία +τά +δικαιώματα +τοῦ +νόμου +φυλάσσῃ +οὐχ +ἡ +ἀκροβυστία +αὐτοῦ +εἰς +περιτομήν +λογισθήσεται +καί +κρινεῖ +ἡ +ἐκ +φύσεως +ἀκροβυστία +τόν +νόμον +τελοῦσα +σέ +τόν +διά +γράμματος +καί +περιτομῆς +παραβάτην +νόμου +γάρ +οὐ +ὁ +ἐν +τῷ +φανερῷ +Ἰουδαῖος +ἐστιν +οὐδέ +ἡ +ἐν +τῷ +φανερῷ +ἐν +σαρκί +περιτομή +ἀλλ’ +ὁ +ἐν +τῷ +κρυπτῷ +Ἰουδαῖος +καί +περιτομή +καρδίας +ἐν +πνεύματι +οὐ +γράμματι +οὗ +ὁ +ἔπαινος +οὐκ +ἐξ +ἀνθρώπων +ἀλλ’ +ἐκ +τοῦ +Θεοῦ +οὖν +Τί +τό +περισσόν +τοῦ +Ἰουδαίου +ἤ +τίς +ἡ +ὠφέλεια +τῆς +περιτομῆς +πολύ +κατά +πάντα +τρόπον +γάρ +μέν +πρῶτον +ὅτι +ἐπιστεύθησαν +τά +λόγια +τοῦ +Θεοῦ +γάρ +τί +εἰ +ἠπίστησαν +τινες +μή +ἡ +ἀπιστία +αὐτῶν +τήν +πίστιν +τοῦ +Θεοῦ +καταργήσει +μή +γένοιτο +δέ +γινέσθω +ὁ +Θεός +ἀληθής +δέ +πᾶς +ἄνθρωπος +ψεύστης +καθάπερ +γέγραπται +Ὅπως +ἄν +δικαιωθῇς +ἐν +τοῖς +λόγοις +σου +καί +νικήσεις +ἐν +τῷ +κρίνεσθαι +σε +δέ +εἰ +ἡ +ἀδικία +ἡμῶν +Θεοῦ +δικαιοσύνην +συνίστησιν +τί +ἐροῦμεν +μή +ἄδικος +ὁ +Θεός +ὁ +ἐπιφέρων +τήν +ὀργήν +κατά +ἄνθρωπον +λέγω +μή +γένοιτο +ἐπεί +πῶς +κρινεῖ +ὁ +Θεός +τόν +κόσμον +δέ +εἰ +ἡ +ἀλήθεια +τοῦ +Θεοῦ +ἐν +τῷ +ἐμῷ +ψεύσματι +ἐπερίσσευσεν +εἰς +τήν +δόξαν +αὐτοῦ +τί +ἔτι +κἀγώ +ὡς +ἁμαρτωλός +κρίνομαι +καί +μή +καθώς +βλασφημούμεθα +καί +καθώς +φασίν +τινες +ἡμᾶς +λέγειν +ὅτι +Ποιήσωμεν +τά +κακά +ἵνα +ἔλθῃ +τά +ἀγαθά +ὧν +τό +κρίμα +ἔνδικον +ἐστιν +οὖν +Τί +προεχόμεθα +οὐ +πάντως +γάρ +προῃτιασάμεθα +τε +Ἰουδαίους +καί +Ἕλληνας +πάντας +ὑφ’ +ἁμαρτίαν +εἶναι +καθώς +γέγραπται +ὅτι +Οὐκ +ἔστιν +δίκαιος +οὐδέ +εἷς +οὐκ +ἔστιν +ὁ +συνίων +οὐκ +ἔστιν +ὁ +ἐκζητῶν +τόν +Θεόν +πάντες +ἐξέκλιναν +ἅμα +ἠχρεώθησαν +οὐκ +ἔστιν +ὁ +ποιῶν +χρηστότητα +οὐκ +ἔστιν +ἕως +ἑνός +τάφος +ἀνεῳγμένος +ὁ +λάρυγξ +αὐτῶν +ταῖς +γλώσσαις +αὐτῶν +ἐδολιοῦσαν +ἰός +ἀσπίδων +ὑπό +τά +χείλη +αὐτῶν +ὧν +τό +στόμα +ἀρᾶς +καί +πικρίας +γέμει +ὀξεῖς +οἱ +πόδες +αὐτῶν +ἐκχέαι +αἷμα +σύντριμμα +καί +ταλαιπωρία +ἐν +ταῖς +ὁδοῖς +αὐτῶν +καί +ὁδόν +εἰρήνης +οὐκ +ἔγνωσαν +οὐκ +ἔστιν +φόβος +Θεοῦ +ἀπέναντι +τῶν +ὀφθαλμῶν +αὐτῶν +δέ +Οἴδαμεν +ὅτι +ὅσα +ὁ +νόμος +λέγει +τοῖς +ἐν +τῷ +νόμῳ +λαλεῖ +ἵνα +πᾶν +στόμα +φραγῇ +καί +ὑπόδικος +γένηται +πᾶς +ὁ +κόσμος +τῷ +Θεῷ +διότι +ἐξ +ἔργων +νόμου +οὐ +δικαιωθήσεται +πᾶσα +σάρξ +ἐνώπιον +αὐτοῦ +γάρ +διά +νόμου +ἐπίγνωσις +ἁμαρτίας +δέ +Νυνί +χωρίς +νόμου +δικαιοσύνη +Θεοῦ +πεφανέρωται +μαρτυρουμένη +ὑπό +τοῦ +νόμου +καί +τῶν +προφητῶν +δέ +δικαιοσύνη +Θεοῦ +διά +πίστεως +Ἰησοῦ +Χριστοῦ +εἰς +πάντας +τούς +πιστεύοντας +γάρ +οὐ +ἐστιν +διαστολή +γάρ +πάντες +ἥμαρτον +καί +ὑστεροῦνται +τῆς +δόξης +τοῦ +Θεοῦ +δικαιούμενοι +δωρεάν +τῇ +αὐτοῦ +χάριτι +διά +τῆς +ἀπολυτρώσεως +τῆς +ἐν +Χριστῷ +Ἰησοῦ +ὅν +προέθετο +ὁ +Θεός +ἱλαστήριον +διά +πίστεως +ἐν +τῷ +αὐτοῦ +αἵματι +εἰς +ἔνδειξιν +τῆς +δικαιοσύνης +αὐτοῦ +διά +τήν +πάρεσιν +τῶν +προγεγονότων +ἁμαρτημάτων +ἐν +τῇ +ἀνοχῇ +τοῦ +Θεοῦ +πρός +τήν +ἔνδειξιν +τῆς +δικαιοσύνης +αὐτοῦ +ἐν +τῷ +νῦν +καιρῷ +εἰς +τό +εἶναι +αὐτόν +δίκαιον +καί +δικαιοῦντα +τόν +ἐκ +πίστεως +Ἰησοῦ +οὖν +Ποῦ +ἡ +καύχησις +ἐξεκλείσθη +διά +ποίου +νόμου +τῶν +ἔργων +οὐχί +ἀλλά +διά +νόμου +πίστεως +γάρ +λογιζόμεθα +δικαιοῦσθαι +πίστει +ἄνθρωπον +χωρίς +ἔργων +νόμου +ἤ +Ἰουδαίων +ὁ +Θεός +μόνον +οὐχί +καί +ἐθνῶν +ναί +καί +ἐθνῶν +εἴπερ +εἷς +ὁ +Θεός +ὅς +δικαιώσει +περιτομήν +ἐκ +πίστεως +καί +ἀκροβυστίαν +διά +τῆς +πίστεως +οὖν +νόμον +καταργοῦμεν +διά +τῆς +πίστεως +μή +γένοιτο +ἀλλά +νόμον +ἱστάνομεν +οὖν +ἐροῦμεν +Τί +εὑρηκέναι +Ἀβραάμ +τόν +προπάτορα +ἡμῶν +κατά +σάρκα +γάρ +εἰ +Ἀβραάμ +ἐξ +ἔργων +ἐδικαιώθη +ἔχει +καύχημα +ἀλλ’ +οὐ +πρός +Θεόν +γάρ +τί +ἡ +γραφή +λέγει +δέ +Ἐπίστευσεν +Ἀβραάμ +τῷ +Θεῷ +καί +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην +δέ +τῷ +ἐργαζομένῳ +ὁ +μισθός +λογίζεται +οὐ +κατά +χάριν +ἀλλά +κατά +ὀφείλημα +δέ +τῷ +μή +ἐργαζομένῳ +δέ +πιστεύοντι +ἐπί +τόν +δικαιοῦντα +τόν +ἀσεβῆ +λογίζεται +ἡ +πίστις +αὐτοῦ +εἰς +δικαιοσύνην +καθάπερ +καί +Δαυείδ +λέγει +τόν +μακαρισμόν +τοῦ +ἀνθρώπου +ᾧ +ὁ +Θεός +λογίζεται +δικαιοσύνην +χωρίς +ἔργων +Μακάριοι +ὧν +αἱ +ἀνομίαι +ἀφέθησαν +καί +ὧν +αἱ +ἁμαρτίαι +ἐπεκαλύφθησαν +μακάριος +ἀνήρ +οὗ +οὐ +μή +λογίσηται +Κύριος +ἁμαρτίαν +οὖν +ὁ +μακαρισμός +οὗτος +ἐπί +τήν +περιτομήν +ἤ +καί +ἐπί +τήν +ἀκροβυστίαν +γάρ +λέγομεν +Ἐλογίσθη +τῷ +Ἀβραάμ +ἡ +πίστις +εἰς +δικαιοσύνην +οὖν +πῶς +ἐλογίσθη +ὄντι +ἐν +περιτομῇ +ἤ +ἐν +ἀκροβυστίᾳ +οὐκ +ἐν +περιτομῇ +ἀλλ’ +ἐν +ἀκροβυστίᾳ +καί +ἔλαβεν +σημεῖον +περιτομῆς +σφραγῖδα +τῆς +δικαιοσύνης +τῆς +πίστεως +τῆς +ἐν +τῇ +ἀκροβυστίᾳ +εἰς +τό +εἶναι +αὐτόν +πατέρα +πάντων +τῶν +πιστευόντων +δι’ +ἀκροβυστίας +εἰς +τό +λογισθῆναι +αὐτοῖς +τήν +δικαιοσύνην +καί +πατέρα +περιτομῆς +τοῖς +οὐκ +ἐκ +περιτομῆς +μόνον +ἀλλά +καί +τοῖς +στοιχοῦσιν +τοῖς +ἴχνεσιν +τῆς +ἐν +ἀκροβυστίᾳ +πίστεως +τοῦ +πατρός +ἡμῶν +Ἀβραάμ +γάρ +Οὐ +διά +νόμου +ἡ +ἐπαγγελία +τό +κληρονόμον +κόσμου +αὐτόν +εἶναι +τῷ +Ἀβραάμ +ἤ +τῷ +σπέρματι +αὐτοῦ +ἀλλά +διά +δικαιοσύνης +πίστεως +γάρ +εἰ +οἱ +ἐκ +νόμου +κληρονόμοι +κεκένωται +ἡ +πίστις +καί +κατήργηται +ἡ +ἐπαγγελία +γάρ +ὁ +νόμος +ὀργήν +κατεργάζεται +δέ +οὗ +οὐκ +ἔστιν +νόμος +οὐδέ +παράβασις +Διά +τοῦτο +ἐκ +πίστεως +ἵνα +κατά +χάριν +εἰς +τό +εἶναι +βεβαίαν +τήν +ἐπαγγελίαν +παντί +τῷ +σπέρματι +οὐ +τῷ +ἐκ +τοῦ +νόμου +μόνον +ἀλλά +καί +τῷ +ἐκ +πίστεως +Ἀβραάμ +ὅς +ἐστιν +πατήρ +πάντων +ἡμῶν +κατέναντι +οὗ +ἐπίστευσεν +Θεοῦ +τοῦ +ζωοποιοῦντος +τούς +νεκρούς +καί +καλοῦντος +τά +μή +ὄντα +ὡς +ὄντα +καθώς +γέγραπται +ὅτι +Πατέρα +πολλῶν +ἐθνῶν +τέθεικα +σε +ὅς +παρ’ +ἐλπίδα +ἐπ’ +ἐλπίδι +ἐπίστευσεν +εἰς +τό +γενέσθαι +αὐτόν +πατέρα +πολλῶν +ἐθνῶν +κατά +τό +εἰρημένον +Οὕτως +ἔσται +τό +σπέρμα +σου +καί +μή +ἀσθενήσας +τῇ +πίστει +κατενόησεν +τό +ἑαυτοῦ +σῶμα +νενεκρωμένον +ἑκατονταετής +που +ὑπάρχων +καί +τήν +νέκρωσιν +τῆς +μήτρας +Σάρρας +δέ +εἰς +τήν +ἐπαγγελίαν +τοῦ +Θεοῦ +οὐ +διεκρίθη +τῇ +ἀπιστίᾳ +ἀλλά +ἐνεδυναμώθη +τῇ +πίστει +δούς +δόξαν +τῷ +Θεῷ +καί +πληροφορηθείς +ὅτι +ἐστιν +δυνατός +ὅ +ἐπήγγελται +καί +ποιῆσαι +διό +καί +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην +δέ +Οὐκ +ἐγράφη +δι’ +αὐτόν +μόνον +ὅτι +ἐλογίσθη +αὐτῷ +ἀλλά +καί +δι’ +ἡμᾶς +οἷς +λογίζεσθαι +μέλλει +τοῖς +πιστεύουσιν +ἐπί +τόν +ἐγείραντα +ἐκ +νεκρῶν +Ἰησοῦν +τόν +Κύριον +ἡμῶν +ὅς +παρεδόθη +διά +τά +παραπτώματα +ἡμῶν +καί +ἠγέρθη +διά +τήν +δικαίωσιν +ἡμῶν +οὖν +Δικαιωθέντες +ἐκ +πίστεως +εἰρήνην +ἔχωμεν +πρός +τόν +Θεόν +διά +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +δι’ +οὗ +καί +τήν +προσαγωγήν +ἐσχήκαμεν +τῇ +πίστει +εἰς +τήν +χάριν +ταύτην +ἐν +ᾗ +ἑστήκαμεν +καί +καυχώμεθα +ἐπ’ +ἐλπίδι +τῆς +δόξης +τοῦ +Θεοῦ +δέ +οὐ +μόνον +ἀλλά +καί +καυχώμεθα +ἐν +ταῖς +θλίψεσιν +εἰδότες +ὅτι +ἡ +θλῖψις +ὑπομονήν +κατεργάζεται +δέ +ἡ +ὑπομονή +δοκιμήν +δέ +ἡ +δοκιμή +ἐλπίδα +δέ +ἡ +ἐλπίς +οὐ +καταισχύνει +ὅτι +ἡ +ἀγάπη +τοῦ +Θεοῦ +ἐκκέχυται +ἐν +ταῖς +καρδίαις +ἡμῶν +διά +Πνεύματος +Ἁγίου +τοῦ +δοθέντος +ἡμῖν +γάρ +ἔτι +Χριστός +ὄντων +ἡμῶν +ἀσθενῶν +ἔτι +κατά +καιρόν +ὑπέρ +ἀσεβῶν +ἀπέθανεν +γάρ +μόλις +ὑπέρ +δικαίου +τις +ἀποθανεῖται +γάρ +ὑπέρ +τοῦ +ἀγαθοῦ +τάχα +τις +καί +τολμᾷ +ἀποθανεῖν +δέ +συνίστησιν +τήν +ἑαυτοῦ +ἀγάπην +εἰς +ἡμᾶς +ὁ +Θεός +ὅτι +ἔτι +ἁμαρτωλῶν +ὄντων +ἡμῶν +Χριστός +ὑπέρ +ἡμῶν +ἀπέθανεν +οὖν +πολλῷ +μᾶλλον +δικαιωθέντες +νῦν +ἐν +τῷ +αἵματι +αὐτοῦ +σωθησόμεθα +δι’ +αὐτοῦ +ἀπό +τῆς +ὀργῆς +γάρ +εἰ +ἐχθροί +ὄντες +κατηλλάγημεν +τῷ +Θεῷ +διά +τοῦ +θανάτου +τοῦ +Υἱοῦ +αὐτοῦ +πολλῷ +μᾶλλον +καταλλαγέντες +σωθησόμεθα +ἐν +τῇ +ζωῇ +αὐτοῦ +δέ +οὐ +μόνον +ἀλλά +καί +καυχώμενοι +ἐν +τῷ +Θεῷ +διά +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +δι’ +οὗ +νῦν +τήν +καταλλαγήν +ἐλάβομεν +Διά +τοῦτο +ὥσπερ +δι’ +ἑνός +ἀνθρώπου +ἡ +ἁμαρτία +εἰς +τόν +κόσμον +εἰσῆλθεν +καί +διά +τῆς +ἁμαρτίας +ὁ +θάνατος +καί +οὕτως +εἰς +πάντας +ἀνθρώπους +ὁ +θάνατος +διῆλθεν +ἐφ’ +ᾧ +πάντες +ἥμαρτον +γάρ +ἄχρι +νόμου +ἁμαρτία +ἦν +ἐν +κόσμῳ +δέ +ἁμαρτία +οὐκ +ἐλλογεῖται +μή +ὄντος +νόμου +ἀλλά +ἐβασίλευσεν +ὁ +θάνατος +ἀπό +Ἀδάμ +μέχρι +Μωϋσέως +καί +ἐπί +τούς +μή +ἁμαρτήσαντας +ἐπί +τῷ +ὁμοιώματι +τῆς +παραβάσεως +Ἀδάμ +ὅς +ἐστιν +τύπος +τοῦ +μέλλοντος +Ἀλλ’ +οὐχ +ὡς +τό +παράπτωμα +οὕτως +καί +τό +χάρισμα +γάρ +εἰ +τῷ +τοῦ +ἑνός +παραπτώματι +οἱ +πολλοί +ἀπέθανον +πολλῷ +μᾶλλον +ἡ +χάρις +τοῦ +Θεοῦ +καί +ἡ +δωρεά +ἐν +χάριτι +τῇ +τοῦ +ἑνός +ἀνθρώπου +Ἰησοῦ +Χριστοῦ +εἰς +τούς +πολλούς +ἐπερίσσευσεν +καί +οὐχ +ὡς +δι’ +ἑνός +ἁμαρτήσαντος +τό +δώρημα +γάρ +μέν +τό +κρίμα +ἐξ +ἑνός +εἰς +κατάκριμα +δέ +τό +χάρισμα +ἐκ +πολλῶν +παραπτωμάτων +εἰς +δικαίωμα +γάρ +εἰ +τῷ +τοῦ +ἑνός +παραπτώματι +ὁ +θάνατος +ἐβασίλευσεν +διά +τοῦ +ἑνός +πολλῷ +μᾶλλον +οἱ +τήν +περισσείαν +τῆς +χάριτος +καί +τῆς +δωρεᾶς +τῆς +δικαιοσύνης +λαμβάνοντες +ἐν +ζωῇ +βασιλεύσουσιν +διά +τοῦ +ἑνός +Ἰησοῦ +Χριστοῦ +Ἄρα +οὖν +ὡς +δι’ +ἑνός +παραπτώματος +εἰς +πάντας +ἀνθρώπους +εἰς +κατάκριμα +οὕτως +καί +δι’ +ἑνός +δικαιώματος +εἰς +πάντας +ἀνθρώπους +εἰς +δικαίωσιν +ζωῆς +γάρ +ὥσπερ +διά +τῆς +παρακοῆς +τοῦ +ἑνός +ἀνθρώπου +ἁμαρτωλοί +κατεστάθησαν +οἱ +πολλοί +οὕτως +καί +διά +τῆς +ὑπακοῆς +τοῦ +ἑνός +δίκαιοι +κατασταθήσονται +οἱ +πολλοί +δέ +νόμος +παρεισῆλθεν +ἵνα +πλεονάσῃ +τό +παράπτωμα +δέ +οὗ +ἐπλεόνασεν +ἡ +ἁμαρτία +ὑπερεπερίσσευσεν +ἡ +χάρις +ἵνα +ὥσπερ +ἐβασίλευσεν +ἡ +ἁμαρτία +ἐν +τῷ +θανάτῳ +οὕτως +καί +ἡ +χάρις +βασιλεύσῃ +διά +δικαιοσύνης +εἰς +ζωήν +αἰώνιον +διά +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν +οὖν +Τί +ἐροῦμεν +ἐπιμένωμεν +τῇ +ἁμαρτίᾳ +ἵνα +ἡ +χάρις +πλεονάσῃ +μή +γένοιτο +οἵτινες +ἀπεθάνομεν +τῇ +ἁμαρτίᾳ +πῶς +ἔτι +ζήσομεν +ἐν +αὐτῇ +ἤ +ἀγνοεῖτε +ὅτι +ὅσοι +ἐβαπτίσθημεν +εἰς +Χριστόν +Ἰησοῦν +εἰς +τόν +θάνατον +αὐτοῦ +ἐβαπτίσθημεν +οὖν +συνετάφημεν +αὐτῷ +διά +τοῦ +βαπτίσματος +εἰς +τόν +θάνατον +ἵνα +ὥσπερ +ἠγέρθη +Χριστός +ἐκ +νεκρῶν +διά +τῆς +δόξης +τοῦ +Πατρός +οὕτως +καί +ἡμεῖς +ἐν +καινότητι +ζωῆς +περιπατήσωμεν +γάρ +εἰ +σύμφυτοι +γεγόναμεν +τῷ +ὁμοιώματι +τοῦ +θανάτου +αὐτοῦ +ἀλλά +καί +τῆς +ἀναστάσεως +ἐσόμεθα +τοῦτο +γινώσκοντες +ὅτι +ὁ +παλαιός +ἡμῶν +ἄνθρωπος +συνεσταυρώθη +ἵνα +καταργηθῇ +τό +σῶμα +τῆς +ἁμαρτίας +τοῦ +μηκέτι +δουλεύειν +ἡμᾶς +τῇ +ἁμαρτίᾳ +γάρ +ὁ +ἀποθανών +δεδικαίωται +ἀπό +τῆς +ἁμαρτίας +δέ +εἰ +ἀπεθάνομεν +σύν +Χριστῷ +πιστεύομεν +ὅτι +καί +συνζήσομεν +αὐτῷ +εἰδότες +ὅτι +Χριστός +ἐγερθείς +ἐκ +νεκρῶν +οὐκέτι +ἀποθνῄσκει +θάνατος +αὐτοῦ +οὐκέτι +κυριεύει +γάρ +ὅ +ἀπέθανεν +τῇ +ἁμαρτίᾳ +ἀπέθανεν +ἐφάπαξ +δέ +ὅ +ζῇ +ζῇ +τῷ +Θεῷ +οὕτως +καί +ὑμεῖς +λογίζεσθε +ἑαυτούς +εἶναι +μέν +νεκρούς +τῇ +ἁμαρτίᾳ +δέ +ζῶντας +τῷ +Θεῷ +ἐν +Χριστῷ +Ἰησοῦ +οὖν +Μή +βασιλευέτω +ἡ +ἁμαρτία +ἐν +τῷ +θνητῷ +ὑμῶν +σώματι +εἰς +τό +ὑπακούειν +ταῖς +ἐπιθυμίαις +αὐτοῦ +μηδέ +παριστάνετε +τά +μέλη +ὑμῶν +ὅπλα +ἀδικίας +τῇ +ἁμαρτίᾳ +ἀλλά +παραστήσατε +ἑαυτούς +τῷ +Θεῷ +ὡσεί +ἐκ +νεκρῶν +ζῶντας +καί +τά +μέλη +ὑμῶν +ὅπλα +δικαιοσύνης +τῷ +Θεῷ +γάρ +ἁμαρτία +ὑμῶν +οὐ +κυριεύσει +γάρ +οὐ +ἐστε +ὑπό +νόμον +ἀλλά +ὑπό +χάριν +οὖν +Τί +ἁμαρτήσωμεν +ὅτι +οὐκ +ἐσμέν +ὑπό +νόμον +ἀλλά +ὑπό +χάριν +μή +γένοιτο +οὐκ +οἴδατε +ὅτι +ᾧ +παριστάνετε +ἑαυτούς +δούλους +εἰς +ὑπακοήν +δοῦλοι +ἐστε +ᾧ +ὑπακούετε +ἤτοι +ἁμαρτίας +εἰς +θάνατον +ἤ +ὑπακοῆς +εἰς +δικαιοσύνην +δέ +χάρις +τῷ +Θεῷ +ὅτι +ἦτε +δοῦλοι +τῆς +ἁμαρτίας +δέ +ὑπηκούσατε +ἐκ +καρδίας +εἰς +ὅν +παρεδόθητε +τύπον +διδαχῆς +δέ +ἐλευθερωθέντες +ἀπό +τῆς +ἁμαρτίας +ἐδουλώθητε +τῇ +δικαιοσύνῃ +ἀνθρώπινον +λέγω +διά +τήν +ἀσθένειαν +τῆς +σαρκός +ὑμῶν +γάρ +ὥσπερ +παρεστήσατε +τά +μέλη +ὑμῶν +δοῦλα +τῇ +ἀκαθαρσίᾳ +καί +τῇ +ἀνομίᾳ +εἰς +τήν +ἀνομίαν +οὕτως +νῦν +παραστήσατε +τά +μέλη +ὑμῶν +δοῦλα +τῇ +δικαιοσύνῃ +εἰς +ἁγιασμόν +γάρ +ὅτε +δοῦλοι +τῆς +ἁμαρτίας +ἦτε +ἐλεύθεροι +ἦτε +τῇ +δικαιοσύνῃ +οὖν +τίνα +καρπόν +εἴχετε +τότε +ἐφ’ +οἷς +νῦν +ἐπαισχύνεσθε +γάρ +τό +τέλος +ἐκείνων +θάνατος +δέ +νυνί +ἐλευθερωθέντες +ἀπό +τῆς +ἁμαρτίας +δέ +δουλωθέντες +τῷ +Θεῷ +ἔχετε +τόν +καρπόν +ὑμῶν +εἰς +ἁγιασμόν +δέ +τό +τέλος +ζωήν +αἰώνιον +γάρ +τά +ὀψώνια +τῆς +ἁμαρτίας +θάνατος +δέ +τό +χάρισμα +τοῦ +Θεοῦ +ζωή +αἰώνιος +ἐν +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν +Ἤ +ἀδελφοί +ἀγνοεῖτε +γάρ +γινώσκουσιν +νόμον +λαλῶ +ὅτι +ὁ +νόμος +κυριεύει +τοῦ +ἀνθρώπου +ἐφ’ +ὅσον +χρόνον +ζῇ +γάρ +ἡ +ὕπανδρος +γυνή +τῷ +ζῶντι +ἀνδρί +δέδεται +νόμῳ +δέ +ἐάν +ἀποθάνῃ +ὁ +ἀνήρ +κατήργηται +ἀπό +τοῦ +νόμου +τοῦ +ἀνδρός +ἄρα +οὖν +ζῶντος +τοῦ +ἀνδρός +μοιχαλίς +χρηματίσει +ἐάν +γένηται +ἀνδρί +ἑτέρῳ +δέ +ἐάν +ἀποθάνῃ +ὁ +ἀνήρ +ἐλευθέρα +ἐστίν +ἀπό +τοῦ +νόμου +τοῦ +μή +εἶναι +αὐτήν +μοιχαλίδα +γενομένην +ἀνδρί +ἑτέρῳ +ὥστε +ἀδελφοί +μου +καί +ὑμεῖς +ἐθανατώθητε +τῷ +νόμῳ +διά +τοῦ +σώματος +τοῦ +Χριστοῦ +εἰς +τό +γενέσθαι +ὑμᾶς +ἑτέρῳ +τῷ +ἐκ +νεκρῶν +ἐγερθέντι +ἵνα +καρποφορήσωμεν +τῷ +Θεῷ +γάρ +ὅτε +ἦμεν +ἐν +τῇ +σαρκί +τά +παθήματα +τῶν +ἁμαρτιῶν +τά +διά +τοῦ +νόμου +ἐνηργεῖτο +ἐν +τοῖς +μέλεσιν +ἡμῶν +εἰς +τό +καρποφορῆσαι +τῷ +θανάτῳ +δέ +νυνί +κατηργήθημεν +ἀπό +τοῦ +νόμου +ἀποθανόντες +ἐν +ᾧ +κατειχόμεθα +ὥστε +δουλεύειν +ἡμᾶς +ἐν +καινότητι +πνεύματος +καί +οὐ +παλαιότητι +γράμματος +οὖν +Τί +ἐροῦμεν +ὁ +νόμος +ἁμαρτία +μή +γένοιτο +ἀλλά +τήν +ἁμαρτίαν +οὐκ +ἔγνων +εἰ +μή +διά +νόμου +γάρ +τε +τήν +ἐπιθυμίαν +οὐκ +ᾔδειν +εἰ +μή +ὁ +νόμος +ἔλεγεν +Οὐκ +ἐπιθυμήσεις +δέ +ἀφορμήν +λαβοῦσα +ἡ +ἁμαρτία +διά +τῆς +ἐντολῆς +κατειργάσατο +ἐν +ἐμοί +πᾶσαν +ἐπιθυμίαν +γάρ +χωρίς +νόμου +ἁμαρτία +νεκρά +δέ +ἐγώ +ἔζων +χωρίς +νόμου +ποτέ +δέ +ἐλθούσης +τῆς +ἐντολῆς +ἡ +ἁμαρτία +ἀνέζησεν +δέ +ἐγώ +ἀπέθανον +καί +εὑρέθη +μοι +ἡ +ἐντολή +ἡ +εἰς +ζωήν +αὕτη +εἰς +θάνατον +γάρ +ἡ +ἁμαρτία +ἀφορμήν +λαβοῦσα +διά +τῆς +ἐντολῆς +ἐξηπάτησεν +με +καί +δι’ +αὐτῆς +ἀπέκτεινεν +ὥστε +μέν +ὁ +νόμος +ἅγιος +καί +ἡ +ἐντολή +ἁγία +καί +δικαία +καί +ἀγαθή +οὖν +Τό +ἀγαθόν +ἐμοί +ἐγένετο +θάνατος +μή +γένοιτο +ἀλλά +ἡ +ἁμαρτία +ἵνα +φανῇ +ἁμαρτία +διά +τοῦ +ἀγαθοῦ +μοι +κατεργαζομένη +θάνατον +ἵνα +γένηται +καθ’ +ὑπερβολήν +ἁμαρτωλός +ἡ +ἁμαρτία +διά +τῆς +ἐντολῆς +γάρ +οἴδαμεν +ὅτι +ὁ +νόμος +πνευματικός +ἐστιν +δέ +ἐγώ +σάρκινος +εἰμι +πεπραμένος +ὑπό +τήν +ἁμαρτίαν +γάρ +ὅ +κατεργάζομαι +οὐ +γινώσκω +γάρ +οὐ +ὅ +θέλω +τοῦτο +πράσσω +ἀλλ’ +ὅ +μισῶ +τοῦτο +ποιῶ +δέ +εἰ +ὅ +οὐ +θέλω +τοῦτο +ποιῶ +σύνφημι +τῷ +νόμῳ +ὅτι +καλός +δέ +νυνί +οὐκέτι +ἐγώ +κατεργάζομαι +αὐτό +ἀλλά +ἡ +ἐνοικοῦσα +ἐν +ἐμοί +ἁμαρτία +γάρ +οἶδα +ὅτι +οὐκ +οἰκεῖ +ἐν +ἐμοί +τοῦτ’ +ἔστιν +ἐν +τῇ +σαρκί +μου +ἀγαθόν +γάρ +τό +θέλειν +παράκειται +μοι +δέ +τό +κατεργάζεσθαι +τό +καλόν +οὔ +γάρ +οὐ +ὅ +θέλω +ἀγαθόν +ποιῶ +ἀλλά +ὅ +οὐ +θέλω +κακόν +τοῦτο +πράσσω +δέ +εἰ +ὅ +οὐ +θέλω +τοῦτο +ἐγώ +ποιῶ +οὐκέτι +ἐγώ +κατεργάζομαι +αὐτό +ἀλλά +ἡ +οἰκοῦσα +ἐν +ἐμοί +ἁμαρτία +ἄρα +εὑρίσκω +τόν +νόμον +ἐμοί +τῷ +θέλοντι +ποιεῖν +τό +καλόν +ὅτι +ἐμοί +τό +κακόν +παράκειται +γάρ +συνήδομαι +τῷ +νόμῳ +τοῦ +Θεοῦ +κατά +τόν +ἔσω +ἄνθρωπον +δέ +βλέπω +ἕτερον +νόμον +ἐν +τοῖς +μέλεσιν +μου +ἀντιστρατευόμενον +τῷ +νόμῳ +τοῦ +νοός +μου +καί +αἰχμαλωτίζοντα +με +ἐν +τῷ +νόμῳ +τῆς +ἁμαρτίας +τῷ +ὄντι +ἐν +τοῖς +μέλεσιν +μου +Ταλαίπωρος +ἄνθρωπος +ἐγώ +τίς +με +ῥύσεται +ἐκ +τοῦ +σώματος +τοῦ +θανάτου +τούτου +χάρις +τῷ +Θεῷ +διά +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν +ἄρα +οὖν +μέν +αὐτός +ἐγώ +τῷ +νοΐ +δουλεύω +νόμῳ +Θεοῦ +δέ +τῇ +σαρκί +νόμῳ +ἁμαρτίας +ἄρα +Οὐδέν +κατάκριμα +νῦν +τοῖς +ἐν +Χριστῷ +Ἰησοῦ +γάρ +ὁ +νόμος +τοῦ +Πνεύματος +τῆς +ζωῆς +ἐν +Χριστῷ +Ἰησοῦ +ἠλευθέρωσεν +σε +ἀπό +τοῦ +νόμου +τῆς +ἁμαρτίας +καί +τοῦ +θανάτου +γάρ +τό +ἀδύνατον +τοῦ +νόμου +ἐν +ᾧ +ἠσθένει +διά +τῆς +σαρκός +ὁ +Θεός +τόν +ἑαυτοῦ +Υἱόν +πέμψας +ἐν +ὁμοιώματι +σαρκός +ἁμαρτίας +καί +περί +ἁμαρτίας +κατέκρινεν +τήν +ἁμαρτίαν +ἐν +τῇ +σαρκί +ἵνα +τό +δικαίωμα +τοῦ +νόμου +πληρωθῇ +ἐν +ἡμῖν +τοῖς +περιπατοῦσιν +μή +κατά +σάρκα +ἀλλά +κατά +πνεῦμα +γάρ +οἱ +κατά +σάρκα +ὄντες +τά +τῆς +σαρκός +φρονοῦσιν +δέ +οἱ +κατά +πνεῦμα +τά +τοῦ +πνεύματος +γάρ +τό +φρόνημα +τῆς +σαρκός +θάνατος +δέ +τό +φρόνημα +τοῦ +πνεύματος +ζωή +καί +εἰρήνη +διότι +τό +φρόνημα +τῆς +σαρκός +ἔχθρα +εἰς +Θεόν +γάρ +τῷ +νόμῳ +τοῦ +Θεοῦ +οὐχ +ὑποτάσσεται +γάρ +οὐδέ +δύναται +δέ +οἱ +ἐν +σαρκί +ὄντες +Θεῷ +ἀρέσαι +οὐ +δύνανται +δέ +Ὑμεῖς +ἐστέ +οὐκ +ἐν +σαρκί +ἀλλά +ἐν +πνεύματι +εἴπερ +Πνεῦμα +Θεοῦ +οἰκεῖ +ἐν +ὑμῖν +δέ +εἰ +τις +Πνεῦμα +Χριστοῦ +οὐκ +ἔχει +οὗτος +οὐκ +ἔστιν +αὐτοῦ +δέ +εἰ +Χριστός +ἐν +ὑμῖν +μέν +τό +σῶμα +νεκρόν +διά +ἁμαρτίαν +δέ +τό +πνεῦμα +ζωή +διά +δικαιοσύνην +δέ +εἰ +τό +Πνεῦμα +τοῦ +ἐγείραντος +τόν +Ἰησοῦν +ἐκ +νεκρῶν +οἰκεῖ +ἐν +ὑμῖν +ὁ +ἐγείρας +ἐκ +νεκρῶν +Χριστόν +Ἰησοῦν +ζωοποιήσει +καί +τά +θνητά +σώματα +ὑμῶν +διά +τοῦ +ἐνοικοῦντος +ἐν +ὑμῖν +αὐτοῦ +Πνεύματος +Ἄρα +οὖν +ἀδελφοί +ὀφειλέται +ἐσμέν +οὐ +τῇ +σαρκί +τοῦ +κατά +σάρκα +ζῆν +γάρ +εἰ +κατά +σάρκα +ζῆτε +μέλλετε +ἀποθνήσκειν +δέ +εἰ +πνεύματι +τάς +πράξεις +τοῦ +σώματος +θανατοῦτε +ζήσεσθε +γάρ +ὅσοι +Πνεύματι +Θεοῦ +ἄγονται +οὗτοι +υἱοί +Θεοῦ +εἰσιν +γάρ +οὐ +ἐλάβετε +πνεῦμα +δουλείας +πάλιν +εἰς +φόβον +ἀλλά +ἐλάβετε +πνεῦμα +υἱοθεσίας +ἐν +ᾧ +κράζομεν +Ἀββᾶ +ὁ +Πατήρ +αὐτό +τό +Πνεῦμα +συνμαρτυρεῖ +τῷ +πνεύματι +ἡμῶν +ὅτι +ἐσμέν +τέκνα +Θεοῦ +δέ +εἰ +τέκνα +καί +κληρονόμοι +μέν +κληρονόμοι +Θεοῦ +δέ +συνκληρονόμοι +Χριστοῦ +εἴπερ +συνπάσχομεν +ἵνα +καί +συνδοξασθῶμεν +γάρ +Λογίζομαι +ὅτι +οὐκ +ἄξια +τά +παθήματα +τοῦ +νῦν +καιροῦ +πρός +τήν +μέλλουσαν +ἀποκαλυφθῆναι +εἰς +ἡμᾶς +δόξαν +γάρ +ἡ +ἀποκαραδοκία +τῆς +κτίσεως +τήν +ἀποκάλυψιν +τῶν +υἱῶν +τοῦ +Θεοῦ +ἀπεκδέχεται +γάρ +τῇ +ματαιότητι +ἡ +κτίσις +ὑπετάγη +οὐχ +ἑκοῦσα +ἀλλά +διά +τόν +ὑποτάξαντα +ἐφ’ +ἑλπίδι +διότι +καί +αὐτή +ἡ +κτίσις +ἐλευθερωθήσεται +ἀπό +τῆς +δουλείας +τῆς +φθορᾶς +εἰς +τήν +ἐλευθερίαν +τῆς +δόξης +τῶν +τέκνων +τοῦ +Θεοῦ +γάρ +οἴδαμεν +ὅτι +πᾶσα +ἡ +κτίσις +συνστενάζει +καί +συνωδίνει +ἄχρι +τοῦ +νῦν +δέ +οὐ +μόνον +ἀλλά +καί +αὐτοί +τήν +ἀπαρχήν +τοῦ +Πνεύματος +ἔχοντες +ἡμεῖς +καί +αὐτοί +ἐν +ἑαυτοῖς +στενάζομεν +ἀπεκδεχόμενοι +υἱοθεσίαν +τήν +ἀπολύτρωσιν +τοῦ +σώματος +ἡμῶν +γάρ +τῇ +ἐλπίδι +ἐσώθημεν +δέ +ἐλπίς +βλεπομένη +οὐκ +ἔστιν +ἐλπίς +γάρ +ὅ +βλέπει +τις +τί +ἐλπίζει +δέ +εἰ +ὅ +οὐ +βλέπομεν +ἐλπίζομεν +δι’ +ὑπομονῆς +ἀπεκδεχόμεθα +δέ +Ὡσαύτως +καί +τό +Πνεῦμα +συναντιλαμβάνεται +τῇ +ἀσθενείᾳ +ἡμῶν +γάρ +τό +τί +προσευξώμεθα +καθό +δεῖ +οὐκ +οἴδαμεν +ἀλλά +αὐτό +τό +Πνεῦμα +ὑπερεντυγχάνει +στεναγμοῖς +ἀλαλήτοις +δέ +ὁ +ἐραυνῶν +τάς +καρδίας +οἶδεν +τί +τό +φρόνημα +τοῦ +Πνεύματος +ὅτι +κατά +Θεόν +ἐντυγχάνει +ὑπέρ +ἁγίων +δέ +Οἴδαμεν +ὅτι +τοῖς +ἀγαπῶσιν +τόν +Θεόν +πάντα +συνεργεῖ +εἰς +ἀγαθόν +τοῖς +κατά +πρόθεσιν +κλητοῖς +οὖσιν +ὅτι +οὕς +προέγνω +καί +προώρισεν +συμμόρφους +τῆς +εἰκόνος +τοῦ +Υἱοῦ +αὐτοῦ +εἰς +τό +εἶναι +αὐτόν +πρωτότοκον +ἐν +πολλοῖς +ἀδελφοῖς +δέ +οὕς +προώρισεν +τούτους +καί +ἐκάλεσεν +καί +οὕς +ἐκάλεσεν +τούτους +καί +ἐδικαίωσεν +δέ +οὕς +ἐδικαίωσεν +τούτους +καί +ἐδόξασεν +οὖν +Τί +ἐροῦμεν +πρός +ταῦτα +εἰ +ὁ +Θεός +ὑπέρ +ἡμῶν +τίς +καθ’ +ἡμῶν +γε +ὅς +τοῦ +ἰδίου +Υἱοῦ +οὐκ +ἐφείσατο +ἀλλά +ὑπέρ +ἡμῶν +πάντων +παρέδωκεν +αὐτόν +πῶς +οὐχί +καί +σύν +αὐτῷ +τά +πάντα +ἡμῖν +χαρίσεται +τίς +ἐγκαλέσει +κατά +ἐκλεκτῶν +Θεοῦ +Θεός +ὁ +δικαιῶν +τίς +ὁ +κατακρινῶν +Χριστός +Ἰησοῦς +ὁ +ἀποθανών +δέ +μᾶλλον +ἐγερθείς +ὅς +ἐστιν +ἐν +δεξιᾷ +τοῦ +Θεοῦ +ὅς +καί +ἐντυγχάνει +ὑπέρ +ἡμῶν +τίς +ἡμᾶς +χωρίσει +ἀπό +τῆς +ἀγάπης +τοῦ +Χριστοῦ +θλῖψις +ἤ +στενοχωρία +ἤ +διωγμός +ἤ +λιμός +ἤ +γυμνότης +ἤ +κίνδυνος +ἤ +μάχαιρα +καθώς +γέγραπται +ὅτι +Ἕνεκεν +σοῦ +θανατούμεθα +ὅλην +τήν +ἡμέραν +ἐλογίσθημεν +ὡς +πρόβατα +σφαγῆς +ἀλλ’ +ἐν +τούτοις +πᾶσιν +ὑπερνικῶμεν +διά +τοῦ +ἀγαπήσαντος +ἡμᾶς +γάρ +πέπεισμαι +ὅτι +οὔτε +θάνατος +οὔτε +ζωή +οὔτε +ἄγγελοι +οὔτε +ἀρχαί +οὔτε +ἐνεστῶτα +οὔτε +μέλλοντα +οὔτε +δυνάμεις +οὔτε +ὕψωμα +οὔτε +βάθος +οὔτε +τις +κτίσις +ἑτέρα +δυνήσεται +ἡμᾶς +χωρίσαι +ἀπό +τῆς +ἀγάπης +τοῦ +Θεοῦ +τῆς +ἐν +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν +Ἀλήθειαν +λέγω +ἐν +Χριστῷ +οὐ +ψεύδομαι +συνμαρτυρούσης +μοι +τῆς +συνειδήσεως +μου +ἐν +Πνεύματι +Ἁγίῳ +ὅτι +λύπη +μοί +ἐστιν +μεγάλη +καί +ἀδιάλειπτος +ὀδύνη +τῇ +καρδίᾳ +μου +γάρ +ηὐχόμην +αὐτός +ἐγώ +ἀνάθεμα +εἶναι +ἀπό +τοῦ +Χριστοῦ +ὑπέρ +τῶν +ἀδελφῶν +μου +τῶν +συγγενῶν +μου +κατά +σάρκα +οἵτινες +εἰσιν +Ἰσραηλεῖται +ὧν +ἡ +υἱοθεσία +καί +ἡ +δόξα +καί +αἱ +διαθῆκαι +καί +ἡ +νομοθεσία +καί +ἡ +λατρεία +καί +αἱ +ἐπαγγελίαι +ὧν +οἱ +πατέρες +καί +ἐξ +ὧν +ὁ +Χριστός +τό +κατά +σάρκα +ὁ +ὤν +ἐπί +πάντων +Θεός +εὐλογητός +εἰς +τούς +αἰῶνας +ἀμήν +δέ +Οὐχ +οἷον +ὅτι +ἐκπέπτωκεν +ὁ +λόγος +τοῦ +Θεοῦ +γάρ +οὐ +πάντες +οἱ +ἐξ +Ἰσραήλ +οὗτοι +Ἰσραήλ +οὐδ’ +ὅτι +εἰσίν +σπέρμα +Ἀβραάμ +πάντες +τέκνα +ἀλλ’ +Ἐν +Ἰσαάκ +κληθήσεται +σοι +σπέρμα +τοῦτ’ +ἔστιν +οὐ +τά +τέκνα +τῆς +σαρκός +ταῦτα +τέκνα +τοῦ +Θεοῦ +ἀλλά +τά +τέκνα +τῆς +ἐπαγγελίας +λογίζεται +εἰς +σπέρμα +γάρ +ἐπαγγελίας +ὁ +λόγος +οὗτος +Κατά +τόν +καιρόν +τοῦτον +ἐλεύσομαι +καί +ἔσται +τῇ +Σάρρᾳ +υἱός +δέ +οὐ +μόνον +ἀλλά +καί +Ῥεβέκκα +κοίτην +ἔχουσα +ἐξ +ἑνός +Ἰσαάκ +τοῦ +πατρός +ἡμῶν +γάρ +μήπω +γεννηθέντων +μηδέ +πραξάντων +τι +ἀγαθόν +ἤ +φαῦλον +ἵνα +ἡ +κατ’ +ἐκλογήν +πρόθεσις +τοῦ +Θεοῦ +μένῃ +οὐκ +ἐξ +ἔργων +ἀλλ’ +ἐκ +τοῦ +καλοῦντος +ἐρρέθη +αὐτῇ +ὅτι +Ὁ +μείζων +δουλεύσει +τῷ +ἐλάσσονι +καθάπερ +γέγραπται +Τόν +Ἰακώβ +ἠγάπησα +δέ +τόν +Ἠσαῦ +ἐμίσησα +οὖν +Τί +ἐροῦμεν +μή +ἀδικία +παρά +τῷ +θεῷ +μή +γένοιτο +γάρ +τῷ +Μωϋσεῖ +λέγει +Ἐλεήσω +ἄν +ὅν +ἐλεῶ +καί +οἰκτειρήσω +ἄν +ὅν +οἰκτείρω +ἄρα +οὖν +οὐ +τοῦ +θέλοντος +οὐδέ +τοῦ +τρέχοντος +ἀλλά +τοῦ +ἐλεῶντος +Θεοῦ +γάρ +λέγει +ἡ +γραφή +τῷ +Φαραώ +ὅτι +Εἰς +αὐτό +τοῦτο +ἐξήγειρα +σε +ὅπως +ἐνδείξωμαι +ἐν +σοί +τήν +δύναμιν +μου +καί +ὅπως +διαγγελῇ +τό +ὄνομα +μου +ἐν +πάσῃ +τῇ +γῇ +ἄρα +οὖν +ὅν +θέλει +ἐλεεῖ +δέ +ὅν +θέλει +σκληρύνει +οὖν +Ἐρεῖς +μοι +Τί +ἔτι +μέμφεται +γάρ +τῷ +βουλήματι +αὐτοῦ +τίς +ἀνθέστηκεν +ὦ +ἄνθρωπε +μενοῦνγε +τίς +εἶ +σύ +ὁ +ἀνταποκρινόμενος +τῷ +Θεῷ +μή +ἐρεῖ +τό +πλάσμα +τῷ +πλάσαντι +Τί +με +ἐποίησας +οὕτως +ἤ +οὐκ +ἔχει +ὁ +κεραμεύς +ἐξουσίαν +τοῦ +πηλοῦ +ἐκ +τοῦ +αὐτοῦ +φυράματος +ποιῆσαι +σκεῦος +μέν +ὅ +εἰς +τιμήν +δέ +ὅ +εἰς +ἀτιμίαν +δέ +εἰ +ὁ +Θεός +θέλων +ἐνδείξασθαι +τήν +ὀργήν +καί +γνωρίσαι +τό +δυνατόν +αὐτοῦ +ἤνεγκεν +ἐν +πολλῇ +μακροθυμίᾳ +σκεύη +ὀργῆς +κατηρτισμένα +εἰς +ἀπώλειαν +καί +ἵνα +γνωρίσῃ +τόν +πλοῦτον +τῆς +δόξης +αὐτοῦ +ἐπί +σκεύη +ἐλέους +ἅ +προητοίμασεν +εἰς +δόξαν +οὕς +καί +ἐκάλεσεν +ἡμᾶς +οὐ +μόνον +ἐξ +Ἰουδαίων +ἀλλά +καί +ἐξ +ἐθνῶν +ὡς +καί +ἐν +τῷ +Ὡσηέ +λέγει +Καλέσω +τόν +οὐ +λαόν +μου +λαόν +μου +καί +τήν +οὐκ +ἠγαπημένην +ἠγαπημένην +καί +ἔσται +ἐν +τῷ +τόπῳ +οὗ +ἐρρέθη +αὐτοῖς +Οὐ +λαός +μου +ὑμεῖς +ἐκεῖ +κληθήσονται +υἱοί +Θεοῦ +ζῶντος +δέ +Ἠσαΐας +κράζει +ὑπέρ +τοῦ +Ἰσραήλ +Ἐάν +ᾖ +ὁ +ἀριθμός +τῶν +υἱῶν +Ἰσραήλ +ὡς +ἡ +ἄμμος +τῆς +θαλάσσης +τό +ὑπόλειμμα +σωθήσεται +γάρ +λόγον +συντελῶν +καί +συντέμνων +ποιήσει +Κύριος +ἐπί +τῆς +γῆς +καί +καθώς +προείρηκεν +Ἠσαΐας +Εἰ +μή +Κύριος +Σαβαώθ +ἐγκατέλιπεν +ἡμῖν +σπέρμα +ἄν +ὡς +Σόδομα +ἐγενήθημεν +καί +ἄν +ὡς +Γόμορρα +ὡμοιώθημεν +οὖν +Τί +ἐροῦμεν +ὅτι +ἔθνη +τά +μή +διώκοντα +δικαιοσύνην +κατέλαβεν +δικαιοσύνην +δέ +δικαιοσύνην +τήν +ἐκ +πίστεως +δέ +Ἰσραήλ +διώκων +νόμον +δικαιοσύνης +εἰς +νόμον +οὐκ +ἔφθασεν +διά +τί +ὅτι +οὐκ +ἐκ +πίστεως +ἀλλ’ +ὡς +ἐξ +ἔργων +προσέκοψαν +τῷ +λίθῳ +τοῦ +προσκόμματος +καθώς +γέγραπται +Ἰδού +τίθημι +ἐν +Σιών +λίθον +προσκόμματος +καί +πέτραν +σκανδάλου +καί +ὁ +πιστεύων +ἐπ’ +αὐτῷ +οὐ +καταισχυνθήσεται +Ἀδελφοί +μέν +ἡ +εὐδοκία +τῆς +ἐμῆς +καρδίας +καί +ἡ +δέησις +πρός +τόν +Θεόν +ὑπέρ +αὐτῶν +εἰς +σωτηρίαν +γάρ +μαρτυρῶ +αὐτοῖς +ὅτι +ζῆλον +Θεοῦ +ἔχουσιν +ἀλλ’ +οὐ +κατ’ +ἐπίγνωσιν +γάρ +ἀγνοοῦντες +τήν +τοῦ +Θεοῦ +δικαιοσύνην +καί +τήν +ἰδίαν +στῆσαι +ζητοῦντες +τῇ +δικαιοσύνῃ +τοῦ +Θεοῦ +οὐχ +ὑπετάγησαν +γάρ +τέλος +νόμου +Χριστός +εἰς +δικαιοσύνην +παντί +τῷ +πιστεύοντι +γάρ +Μωϋσῆς +γράφει +ὅτι +τήν +δικαιοσύνην +τήν +ἐκ +νόμου +ὁ +ποιήσας +ἄνθρωπος +ζήσεται +ἐν +αὐτῇ +δέ +ἡ +ἐκ +πίστεως +δικαιοσύνη +οὕτως +λέγει +Μή +εἴπῃς +ἐν +τῇ +καρδίᾳ +σου +Τίς +ἀναβήσεται +εἰς +τόν +οὐρανόν +τοῦτ’ +ἔστιν +Χριστόν +καταγαγεῖν +ἤ +Τίς +καταβήσεται +εἰς +τήν +ἄβυσσον +τοῦτ’ +ἔστιν +Χριστόν +ἐκ +νεκρῶν +ἀναγαγεῖν +ἀλλά +τί +λέγει +Ἐγγύς +σου +τό +ῥῆμα +ἐστιν +ἐν +τῷ +στόματι +σου +καί +ἐν +τῇ +καρδίᾳ +σου +τοῦτ’ +ἔστιν +τό +ῥῆμα +τῆς +πίστεως +ὅ +κηρύσσομεν +ὅτι +ἐάν +ὁμολογήσῃς +ἐν +τῷ +στόματι +σου +Κύριον +Ἰησοῦν +καί +πιστεύσῃς +ἐν +τῇ +καρδίᾳ +σου +ὅτι +ὁ +Θεός +αὐτόν +ἤγειρεν +ἐκ +νεκρῶν +σωθήσῃ +γάρ +καρδίᾳ +πιστεύεται +εἰς +δικαιοσύνην +δέ +στόματι +ὁμολογεῖται +εἰς +σωτηρίαν +γάρ +λέγει +ἡ +γραφή +Πᾶς +ὁ +πιστεύων +ἐπ’ +αὐτῷ +οὐ +καταισχυνθήσεται +γάρ +οὐ +ἐστιν +διαστολή +τε +Ἰουδαίου +καί +Ἕλληνος +γάρ +ὁ +αὐτός +Κύριος +πάντων +πλουτῶν +εἰς +πάντας +τούς +ἐπικαλουμένους +αὐτόν +γάρ +Πᾶς +ἄν +ὅς +ἐπικαλέσηται +τό +ὄνομα +Κυρίου +σωθήσεται +οὖν +πῶς +ἐπικαλέσωνται +εἰς +ὅν +οὐκ +ἐπίστευσαν +δέ +πῶς +πιστεύσωσιν +οὗ +οὐκ +ἤκουσαν +δέ +πῶς +ἀκούσωσιν +χωρίς +κηρύσσοντος +δέ +πῶς +κηρύξωσιν +ἐάν +μή +ἀποσταλῶσιν +καθάπερ +γέγραπται +Ὡς +ὡραῖοι +οἱ +πόδες +τῶν +εὐαγγελιζομένων +ἀγαθά +Ἀλλ’ +οὐ +πάντες +ὑπήκουσαν +τῷ +εὐαγγελίῳ +γάρ +Ἠσαΐας +λέγει +Κύριε +τίς +ἐπίστευσεν +τῇ +ἀκοῇ +ἡμῶν +ἄρα +ἡ +πίστις +ἐξ +ἀκοῆς +δέ +ἡ +ἀκοή +διά +ῥήματος +Χριστοῦ +ἀλλά +λέγω +μή +οὐκ +ἤκουσαν +μενοῦνγε +Εἰς +πᾶσαν +τήν +γῆν +ἐξῆλθεν +ὁ +φθόγγος +αὐτῶν +καί +εἰς +τά +πέρατα +τῆς +οἰκουμένης +τά +ῥήματα +αὐτῶν +ἀλλά +λέγω +μή +Ἰσραήλ +οὐκ +ἔγνω +πρῶτος +Μωϋσῆς +λέγει +Ἐγώ +παραζηλώσω +ὑμᾶς +ἐπ’ +οὐκ +ἔθνει +ἐπ’ +ἔθνει +ἀσυνέτῳ +παροργιῶ +ὑμᾶς +δέ +Ἠσαΐας +ἀποτολμᾷ +καί +λέγει +Εὑρέθην +τοῖς +ἐμέ +μή +ζητοῦσιν +ἐμφανής +ἐγενόμην +τοῖς +ἐμέ +μή +ἐπερωτῶσιν +δέ +πρός +τόν +Ἰσραήλ +λέγει +Ὅλην +τήν +ἡμέραν +ἐξεπέτασα +τάς +χεῖρας +μου +πρός +λαόν +ἀπειθοῦντα +καί +ἀντιλέγοντα +οὖν +Λέγω +μή +ἀπώσατο +ὁ +Θεός +τόν +λαόν +αὐτοῦ +μή +γένοιτο +γάρ +καί +ἐγώ +Ἰσραηλείτης +εἰμί +ἐκ +σπέρματος +Ἀβραάμ +φυλῆς +Βενιαμείν +οὐκ +ἀπώσατο +ὁ +Θεός +τόν +λαόν +αὐτοῦ +ὅν +προέγνω +ἤ +οὐκ +οἴδατε +ἐν +Ἠλείᾳ +τί +λέγει +ἡ +γραφή +ὡς +ἐντυγχάνει +τῷ +Θεῷ +κατά +τοῦ +Ἰσραήλ +Κύριε +τούς +προφήτας +σου +ἀπέκτειναν +τά +θυσιαστήρια +σου +κατέσκαψαν +κἀγώ +ὑπελείφθην +μόνος +καί +ζητοῦσιν +τήν +ψυχήν +μου +ἀλλά +τί +λέγει +αὐτῷ +ὁ +χρηματισμός +Κατέλιπον +ἐμαυτῷ +ἑπτακισχιλίους +ἄνδρας +οἵτινες +οὐκ +ἔκαμψαν +γόνυ +τῇ +Βάαλ +οὖν +οὕτως +καί +ἐν +τῷ +νῦν +καιρῷ +λίμμα +κατ’ +ἐκλογήν +χάριτος +γέγονεν +δέ +εἰ +χάριτι +οὐκέτι +ἐξ +ἔργων +ἐπεί +ἡ +χάρις +οὐκέτι +γίνεται +χάρις +οὖν +Τί +ὅ +ἐπιζητεῖ +Ἰσραήλ +τοῦτο +οὐκ +ἐπέτυχεν +δέ +ἡ +ἐκλογή +ἐπέτυχεν +δέ +οἱ +λοιποί +ἐπωρώθησαν +καθάπερ +γέγραπται +Ἔδωκεν +αὐτοῖς +ὁ +Θεός +πνεῦμα +κατανύξεως +ὀφθαλμούς +τοῦ +μή +βλέπειν +καί +ὦτα +τοῦ +μή +ἀκούειν +ἕως +τῆς +σήμερον +ἡμέρας +καί +Δαυείδ +λέγει +Γενηθήτω +ἡ +τράπεζα +αὐτῶν +εἰς +παγίδα +καί +εἰς +θήραν +καί +εἰς +σκάνδαλον +καί +εἰς +ἀνταπόδομα +αὐτοῖς +σκοτισθήτωσαν +οἱ +ὀφθαλμοί +αὐτῶν +τοῦ +μή +βλέπειν +καί +τόν +νῶτον +αὐτῶν +διά +παντός +σύνκαμψον +οὖν +Λέγω +μή +ἔπταισαν +ἵνα +πέσωσιν +μή +γένοιτο +ἀλλά +τῷ +αὐτῶν +παραπτώματι +ἡ +σωτηρία +τοῖς +ἔθνεσιν +εἰς +τό +παραζηλῶσαι +αὐτούς +δέ +εἰ +τό +παράπτωμα +αὐτῶν +πλοῦτος +κόσμου +καί +τό +ἥττημα +αὐτῶν +πλοῦτος +ἐθνῶν +πόσῳ +μᾶλλον +τό +πλήρωμα +αὐτῶν +δέ +λέγω +Ὑμῖν +τοῖς +ἔθνεσιν +μέν +οὖν +ἐφ’ +ὅσον +εἰμι +ἐγώ +ἐθνῶν +ἀπόστολος +τήν +διακονίαν +μου +δοξάζω +εἴ +πως +παραζηλώσω +μου +τήν +σάρκα +καί +σώσω +τινάς +ἐξ +αὐτῶν +γάρ +εἰ +ἡ +ἀποβολή +αὐτῶν +καταλλαγή +κόσμου +τίς +ἡ +πρόσλημψις +εἰ +μή +ζωή +ἐκ +νεκρῶν +δέ +εἰ +ἡ +ἀπαρχή +ἁγία +καί +τό +φύραμα +καί +εἰ +ἡ +ῥίζα +ἁγία +καί +οἱ +κλάδοι +δέ +Εἰ +τινες +τῶν +κλάδων +ἐξεκλάσθησαν +δέ +σύ +ἀγριέλαιος +ὤν +ἐνεκεντρίσθης +ἐν +αὐτοῖς +καί +συνκοινωνός +τῆς +ῥίζης +τῆς +πιότητος +τῆς +ἐλαίας +ἐγένου +μή +κατακαυχῶ +τῶν +κλάδων +δέ +εἰ +κατακαυχᾶσαι +οὐ +σύ +τήν +ῥίζαν +βαστάζεις +ἀλλά +ἡ +ῥίζα +σέ +οὖν +ἐρεῖς +Ἐξεκλάσθησαν +κλάδοι +ἵνα +ἐγώ +ἐγκεντρισθῶ +καλῶς +τῇ +ἀπιστίᾳ +ἐξεκλάσθησαν +δέ +σύ +τῇ +πίστει +ἕστηκας +μή +ὑψηλά +φρόνει +ἀλλά +φοβοῦ +γάρ +εἰ +ὁ +Θεός +τῶν +κατά +φύσιν +κλάδων +οὐκ +ἐφείσατο +οὐδέ +σοῦ +φείσεται +οὖν +ἴδε +χρηστότητα +καί +ἀποτομίαν +Θεοῦ +μέν +ἐπί +τούς +πεσόντας +ἀποτομία +δέ +ἐπί +σέ +χρηστότης +Θεοῦ +ἐάν +ἐπιμένῃς +τῇ +χρηστότητι +ἐπεί +καί +σύ +ἐκκοπήσῃ +δέ +κἀκεῖνοι +ἐάν +μή +ἐπιμένωσιν +τῇ +ἀπιστίᾳ +ἐνκεντρισθήσονται +γάρ +δυνατός +ἐστιν +ὁ +Θεός +πάλιν +ἐνκεντρίσαι +αὐτούς +γάρ +εἰ +σύ +ἐκ +τῆς +κατά +φύσιν +ἀγριελαίου +ἐξεκόπης +καί +παρά +φύσιν +ἐνεκεντρίσθης +εἰς +καλλιέλαιον +πόσῳ +μᾶλλον +οὗτοι +οἱ +κατά +φύσιν +ἐνκεντρισθήσονται +τῇ +ἰδίᾳ +ἐλαίᾳ +γάρ +ἀδελφοί +Οὐ +θέλω +ὑμᾶς +ἀγνοεῖν +τό +μυστήριον +τοῦτο +ἵνα +μή +ἦτε +ἐν +ἑαυτοῖς +φρόνιμοι +ὅτι +πώρωσις +ἀπό +μέρους +τῷ +Ἰσραήλ +γέγονεν +ἄχρι +οὗ +τό +πλήρωμα +τῶν +ἐθνῶν +εἰσέλθῃ +καί +οὕτως +πᾶς +Ἰσραήλ +σωθήσεται +καθώς +γέγραπται +Ἥξει +ἐκ +Σιών +ὁ +Ῥυόμενος +ἀποστρέψει +ἀσεβείας +ἀπό +Ἰακώβ +καί +αὕτη +αὐτοῖς +ἡ +παρ’ +ἐμοῦ +διαθήκη +ὅταν +ἀφέλωμαι +τάς +ἁμαρτίας +αὐτῶν +μέν +κατά +τό +εὐαγγέλιον +ἐχθροί +δι’ +ὑμᾶς +δέ +κατά +τήν +ἐκλογήν +ἀγαπητοί +διά +τούς +πατέρας +γάρ +ἀμεταμέλητα +τά +χαρίσματα +καί +ἡ +κλῆσις +τοῦ +Θεοῦ +γάρ +ὥσπερ +ὑμεῖς +ποτε +ἠπειθήσατε +τῷ +Θεῷ +δέ +νῦν +ἠλεήθητε +τῇ +τούτων +ἀπειθείᾳ +οὕτως +καί +οὗτοι +νῦν +ἠπείθησαν +τῷ +ὑμετέρῳ +ἐλέει +ἵνα +καί +αὐτοί +νῦν +ἐλεηθῶσιν +γάρ +συνέκλεισεν +ὁ +Θεός +τούς +πάντας +εἰς +ἀπείθειαν +ἵνα +τούς +πάντας +ἐλεήσῃ +Ὦ +βάθος +πλούτου +καί +σοφίας +καί +γνώσεως +Θεοῦ +ὡς +ἀνεξεραύνητα +τά +κρίματα +αὐτοῦ +καί +ἀνεξιχνίαστοι +αἱ +ὁδοί +αὐτοῦ +γάρ +Τίς +ἔγνω +νοῦν +Κυρίου +ἤ +τίς +σύμβουλος +αὐτοῦ +ἐγένετο +ἤ +τίς +προέδωκεν +αὐτῷ +καί +ἀνταποδοθήσεται +αὐτῷ +ὅτι +ἐξ +αὐτοῦ +καί +δι’ +αὐτοῦ +καί +εἰς +αὐτόν +τά +πάντα +αὐτῷ +ἡ +δόξα +εἰς +τούς +αἰῶνας +ἀμήν +οὖν +ἀδελφοί +Παρακαλῶ +διά +τῶν +οἰκτιρμῶν +τοῦ +Θεοῦ +ὑμᾶς +παραστῆσαι +τά +σώματα +ὑμῶν +θυσίαν +ζῶσαν +ἁγίαν +τῷ +Θεῷ +εὐάρεστον +τήν +λογικήν +λατρείαν +ὑμῶν +καί +μή +συνσχηματίζεσθε +τῷ +αἰῶνι +τούτῳ +ἀλλά +μεταμορφοῦσθε +τῇ +ἀνακαινώσει +τοῦ +νοός +εἰς +τό +δοκιμάζειν +ὑμᾶς +τί +τό +θέλημα +τοῦ +Θεοῦ +τό +ἀγαθόν +καί +εὐάρεστον +καί +τέλειον +γάρ +Λέγω +διά +τῆς +χάριτος +τῆς +δοθείσης +μοι +παντί +τῷ +ὄντι +ἐν +ὑμῖν +μή +ὑπερφρονεῖν +παρ’ +ὅ +φρονεῖν +δεῖ +ἀλλά +φρονεῖν +εἰς +τό +σωφρονεῖν +ὡς +ἑκάστῳ +ὁ +Θεός +ἐμέρισεν +μέτρον +πίστεως +γάρ +καθάπερ +ἐν +ἑνί +σώματι +πολλά +μέλη +ἔχομεν +δέ +τά +μέλη +πάντα +οὐ +τήν +αὐτήν +πρᾶξιν +ἔχει +οὕτως +οἱ +πολλοί +ἕν +σῶμα +ἐσμεν +ἐν +Χριστῷ +δέ +τό +καθ’ +εἷς +ἀλλήλων +μέλη +δέ +ἔχοντες +χαρίσματα +διάφορα +κατά +τήν +χάριν +τήν +δοθεῖσαν +ἡμῖν +εἴτε +προφητείαν +κατά +τήν +ἀναλογίαν +τῆς +πίστεως +εἴτε +διακονίαν +ἐν +τῇ +διακονίᾳ +εἴτε +ὁ +διδάσκων +ἐν +τῇ +διδασκαλίᾳ +εἴτε +ὁ +παρακαλῶν +ἐν +τῇ +παρακλήσει +ὁ +μεταδιδούς +ἐν +ἁπλότητι +ὁ +προϊστάμενος +ἐν +σπουδῇ +ὁ +ἐλεῶν +ἐν +ἱλαρότητι +ἡ +ἀγάπη +ἀνυπόκριτος +ἀποστυγοῦντες +τό +πονηρόν +κολλώμενοι +τῷ +ἀγαθῷ +τῇ +φιλαδελφίᾳ +εἰς +ἀλλήλους +φιλόστοργοι +τῇ +τιμῇ +ἀλλήλους +προηγούμενοι +τῇ +σπουδῇ +μή +ὀκνηροί +τῷ +πνεύματι +ζέοντες +τῷ +Κυρίῳ +δουλεύοντες +τῇ +ἐλπίδι +χαίροντες +τῇ +θλίψει +ὑπομένοντες +τῇ +προσευχῇ +προσκαρτεροῦντες +ταῖς +χρείαις +τῶν +ἁγίων +κοινωνοῦντες +τήν +φιλοξενίαν +διώκοντες +εὐλογεῖτε +τούς +διώκοντας +εὐλογεῖτε +καί +μή +καταρᾶσθε +χαίρειν +μετά +χαιρόντων +κλαίειν +μετά +κλαιόντων +τό +αὐτό +εἰς +ἀλλήλους +φρονοῦντες +μή +τά +ὑψηλά +φρονοῦντες +ἀλλά +τοῖς +ταπεινοῖς +συναπαγόμενοι +μή +γίνεσθε +φρόνιμοι +παρ’ +ἑαυτοῖς +μηδενί +κακόν +ἀντί +κακοῦ +ἀποδιδόντες +προνοούμενοι +καλά +ἐνώπιον +πάντων +ἀνθρώπων +εἰ +δυνατόν +τό +ἐξ +ὑμῶν +μετά +πάντων +ἀνθρώπων +εἰρηνεύοντες +ἀγαπητοί +μή +ἑαυτούς +ἐκδικοῦντες +ἀλλά +δότε +τόπον +τῇ +ὀργῇ +γάρ +γέγραπται +Ἐμοί +ἐκδίκησις +ἐγώ +ἀνταποδώσω +λέγει +Κύριος +ἀλλά +ἐάν +πεινᾷ +ὁ +ἐχθρός +σου +ψώμιζε +αὐτόν +ἐάν +διψᾷ +πότιζε +αὐτόν +γάρ +τοῦτο +ποιῶν +ἄνθρακας +πυρός +σωρεύσεις +ἐπί +τήν +κεφαλήν +αὐτοῦ +μή +νικῶ +ὑπό +τοῦ +κακοῦ +ἀλλά +νίκα +ἐν +τῷ +ἀγαθῷ +τό +κακόν +Πᾶσα +ψυχή +ἐξουσίαις +ὑπερεχούσαις +ὑποτασσέσθω +γάρ +οὐ +ἔστιν +ἐξουσία +εἰ +μή +ὑπό +Θεοῦ +δέ +αἱ +οὖσαι +ὑπό +Θεοῦ +τεταγμέναι +εἰσίν +ὥστε +ὁ +ἀντιτασσόμενος +τῇ +ἐξουσίᾳ +τῇ +τοῦ +Θεοῦ +διαταγῇ +ἀνθέστηκεν +δέ +οἱ +ἀνθεστηκότες +ἑαυτοῖς +κρίμα +λήμψονται +γάρ +οἱ +ἄρχοντες +εἰσίν +φόβος +οὐκ +τῷ +ἀγαθῷ +ἔργῳ +ἀλλά +τῷ +κακῷ +δέ +θέλεις +μή +φοβεῖσθαι +τήν +ἐξουσίαν +τό +ἀγαθόν +ποίει +καί +ἕξεις +ἔπαινον +ἐξ +αὐτῆς +γάρ +Θεοῦ +διάκονος +ἐστιν +σοί +εἰς +τό +ἀγαθόν +δέ +ἐάν +τό +κακόν +ποιῇς +φοβοῦ +γάρ +οὐ +εἰκῇ +τήν +μάχαιραν +φορεῖ +γάρ +Θεοῦ +διάκονος +ἐστιν +ἔκδικος +εἰς +ὀργήν +τῷ +τό +κακόν +πράσσοντι +διό +ἀνάγκη +ὑποτάσσεσθαι +οὐ +μόνον +διά +τήν +ὀργήν +ἀλλά +καί +διά +τήν +συνείδησιν +γάρ +διά +τοῦτο +καί +φόρους +τελεῖτε +γάρ +λειτουργοί +Θεοῦ +εἰσιν +εἰς +αὐτό +τοῦτο +προσκαρτεροῦντες +ἀπόδοτε +πᾶσιν +τάς +ὀφειλάς +τῷ +τόν +φόρον +τόν +φόρον +τῷ +τό +τέλος +τό +τέλος +τῷ +τόν +φόβον +τόν +φόβον +τῷ +τήν +τιμήν +τήν +τιμήν +Μηδενί +μηδέν +ὀφείλετε +εἰ +μή +τό +ἀλλήλους +ἀγαπᾶν +γάρ +ὁ +ἀγαπῶν +τόν +ἕτερον +νόμον +πεπλήρωκεν +γάρ +τό +Οὐ +μοιχεύσεις +Οὐ +φονεύσεις +Οὐ +κλέψεις +Οὐκ +ἐπιθυμήσεις +καί +εἴ +τις +ἑτέρα +ἐντολή +ἐν +τῷ +λόγῳ +τούτῳ +ἀνακεφαλαιοῦται +ἐν +τῷ +Ἀγαπήσεις +τόν +πλησίον +σου +ὡς +σεαυτόν +ἡ +ἀγάπη +τῷ +πλησίον +κακόν +οὐκ +ἐργάζεται +οὖν +πλήρωμα +νόμου +ἡ +ἀγάπη +Καί +εἰδότες +τοῦτο +τόν +καιρόν +ὅτι +ὥρα +ἤδη +ὑμᾶς +ἐξ +ὕπνου +ἐγερθῆναι +γάρ +νῦν +ἐγγύτερον +ἡμῶν +ἡ +σωτηρία +ἤ +ὅτε +ἐπιστεύσαμεν +ἡ +νύξ +προέκοψεν +δέ +ἡ +ἡμέρα +ἤγγικεν +οὖν +ἀποθώμεθα +τά +ἔργα +τοῦ +σκότους +δέ +ἐνδυσώμεθα +τά +ὅπλα +τοῦ +φωτός +ὡς +ἐν +ἡμέρᾳ +εὐσχημόνως +περιπατήσωμεν +μή +κώμοις +καί +μέθαις +μή +κοίταις +καί +ἀσελγείαις +μή +ἔριδι +καί +ζήλῳ +ἀλλά +ἐνδύσασθε +τόν +Κύριον +Ἰησοῦν +Χριστόν +καί +τῆς +σαρκός +πρόνοιαν +μή +ποιεῖσθε +εἰς +ἐπιθυμίας +δέ +Τόν +ἀσθενοῦντα +τῇ +πίστει +προσλαμβάνεσθε +μή +εἰς +διακρίσεις +διαλογισμῶν +μέν +ὅς +πιστεύει +φαγεῖν +πάντα +δέ +ὁ +ἀσθενῶν +λάχανα +ἐσθίει +ὁ +ἐσθίων +τόν +μή +ἐσθίοντα +μή +ἐξουθενείτω +δέ +ὁ +μή +ἐσθίων +τόν +ἐσθίοντα +μή +κρινέτω +γάρ +ὁ +Θεός +αὐτόν +προσελάβετο +σύ +τίς +εἶ +ὁ +κρίνων +ἀλλότριον +οἰκέτην +τῷ +ἰδίῳ +κυρίῳ +στήκει +ἤ +πίπτει +δέ +σταθήσεται +γάρ +δυνατεῖ +ὁ +Κύριος +στῆσαι +αὐτόν +γάρ +μέν +ὅς +κρίνει +ἡμέραν +παρ’ +ἡμέραν +δέ +ὅς +κρίνει +πᾶσαν +ἡμέραν +ἕκαστος +ἐν +τῷ +ἰδίῳ +νοΐ +πληροφορείσθω +ὁ +φρονῶν +τήν +ἡμέραν +Κυρίῳ +φρονεῖ +καί +ὁ +ἐσθίων +Κυρίῳ +ἐσθίει +γάρ +εὐχαριστεῖ +τῷ +Θεῷ +καί +ὁ +μή +ἐσθίων +Κυρίῳ +οὐκ +ἐσθίει +καί +εὐχαριστεῖ +τῷ +Θεῷ +γάρ +Οὐδείς +ἡμῶν +ἑαυτῷ +ζῇ +καί +οὐδείς +ἑαυτῷ +ἀποθνῄσκει +γάρ +τε +ἐάν +ζῶμεν +τῷ +Κυρίῳ +ζῶμεν +τε +ἐάν +ἀποθνήσκωμεν +τῷ +Κυρίῳ +ἀποθνήσκομεν +οὖν +τε +ἐάν +ζῶμεν +τε +ἐάν +ἀποθνήσκωμεν +τοῦ +Κυρίου +ἐσμέν +γάρ +εἰς +τοῦτο +Χριστός +ἀπέθανεν +καί +ἔζησεν +ἵνα +καί +νεκρῶν +καί +ζώντων +κυριεύσῃ +δέ +Σύ +τί +κρίνεις +τόν +ἀδελφόν +σου +ἤ +καί +σύ +τί +ἐξουθενεῖς +τόν +ἀδελφόν +σου +γάρ +πάντες +παραστησόμεθα +τῷ +βήματι +τοῦ +Θεοῦ +γάρ +γέγραπται +Ζῶ +ἐγώ +λέγει +Κύριος +ὅτι +ἐμοί +κάμψει +πᾶν +γόνυ +καί +πᾶσα +γλῶσσα +ἐξομολογήσεται +τῷ +Θεῷ +ἄρα +οὖν +ἕκαστος +ἡμῶν +περί +ἑαυτοῦ +λόγον +δώσει +τῷ +Θεῷ +οὖν +Μηκέτι +ἀλλήλους +κρίνωμεν +ἀλλά +τοῦτο +κρίνατε +μᾶλλον +τό +μή +τιθέναι +τῷ +ἀδελφῷ +πρόσκομμα +ἤ +σκάνδαλον +οἶδα +καί +πέπεισμαι +ἐν +Κυρίῳ +Ἰησοῦ +ὅτι +οὐδέν +κοινόν +δι’ +ἑαυτοῦ +εἰ +μή +τῷ +λογιζομένῳ +τι +κοινόν +εἶναι +ἐκείνῳ +κοινόν +γάρ +εἰ +διά +βρῶμα +ὁ +ἀδελφός +σου +λυπεῖται +οὐκέτι +κατά +ἀγάπην +περιπατεῖς +μή +τῷ +βρώματι +σου +ἐκεῖνον +ἀπόλλυε +ὑπέρ +οὗ +Χριστός +ἀπέθανεν +οὖν +μή +βλασφημείσθω +ὑμῶν +τό +ἀγαθόν +γάρ +οὐ +ἐστιν +ἡ +βασιλεία +τοῦ +Θεοῦ +βρῶσις +καί +πόσις +ἀλλά +δικαιοσύνη +καί +εἰρήνη +καί +χαρά +ἐν +Πνεύματι +Ἁγίῳ +γάρ +ὁ +ἐν +τούτῳ +δουλεύων +τῷ +Χριστῷ +εὐάρεστος +τῷ +Θεῷ +καί +δόκιμος +τοῖς +ἀνθρώποις +ἄρα +οὖν +διώκομεν +τά +τῆς +εἰρήνης +καί +τά +τῆς +οἰκοδομῆς +τῆς +εἰς +ἀλλήλους +μή +ἕνεκεν +βρώματος +κατάλυε +τό +ἔργον +τοῦ +Θεοῦ +μέν +πάντα +καθαρά +ἀλλά +κακόν +τῷ +ἀνθρώπῳ +τῷ +διά +προσκόμματος +ἐσθίοντι +καλόν +τό +μή +φαγεῖν +κρέα +μηδέ +πιεῖν +οἶνον +μηδέ +ἐν +ᾧ +ὁ +ἀδελφός +σου +προσκόπτει +σύ +πίστιν +ἥν +ἔχεις +κατά +σεαυτόν +ἔχε +ἐνώπιον +τοῦ +Θεοῦ +μακάριος +ὁ +μή +κρίνων +ἑαυτόν +ἐν +ᾧ +δοκιμάζει +δέ +ἐάν +ὁ +διακρινόμενος +φάγῃ +κατακέκριται +ὅτι +οὐκ +ἐκ +πίστεως +δέ +πᾶν +ὅ +οὐκ +ἐκ +πίστεως +ἁμαρτία +ἐστίν +δέ +Ὀφείλομεν +ἡμεῖς +οἱ +δυνατοί +τά +ἀσθενήματα +τῶν +ἀδυνάτων +βαστάζειν +καί +μή +ἑαυτοῖς +ἀρέσκειν +ἕκαστος +ἡμῶν +τῷ +πλησίον +ἀρεσκέτω +εἰς +τό +ἀγαθόν +πρός +οἰκοδομήν +γάρ +καί +ὁ +Χριστός +οὐχ +ἑαυτῷ +ἤρεσεν +ἀλλά +καθώς +γέγραπται +Οἱ +ὀνειδισμοί +τῶν +ὀνειδιζόντων +σε +ἐπέπεσαν +ἐπ’ +ἐμέ +γάρ +ὅσα +προεγράφη +εἰς +τήν +ἡμετέραν +διδασκαλίαν +ἐγράφη +ἵνα +διά +τῆς +ὑπομονῆς +καί +διά +τῆς +παρακλήσεως +τῶν +γραφῶν +τήν +ἐλπίδα +ἔχωμεν +δέ +ὁ +Θεός +τῆς +ὑπομονῆς +καί +τῆς +παρακλήσεως +δῴη +ὑμῖν +τό +αὐτό +φρονεῖν +ἐν +ἀλλήλοις +κατά +Χριστόν +Ἰησοῦν +ἵνα +ὁμοθυμαδόν +ἐν +ἑνί +στόματι +δοξάζητε +τόν +Θεόν +καί +Πατέρα +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +Διό +προσλαμβάνεσθε +ἀλλήλους +καθώς +καί +ὁ +Χριστός +προσελάβετο +ἡμᾶς +εἰς +δόξαν +τοῦ +Θεοῦ +γάρ +λέγω +Χριστόν +διάκονον +περιτομῆς +γεγενῆσθαι +ὑπέρ +ἀληθείας +Θεοῦ +εἰς +τό +βεβαιῶσαι +τάς +ἐπαγγελίας +τῶν +πατέρων +δέ +τά +ἔθνη +ὑπέρ +ἐλέους +δοξάσαι +τόν +Θεόν +καθώς +γέγραπται +Διά +τοῦτο +ἐξομολογήσομαι +σοι +ἐν +ἔθνεσιν +καί +τῷ +ὀνόματι +σου +ψαλῶ +καί +πάλιν +λέγει +ἔθνη +Εὐφράνθητε +μετά +τοῦ +λαοῦ +αὐτοῦ +καί +πάλιν +πάντα +τά +ἔθνη +Αἰνεῖτε +τόν +Κύριον +καί +ἐπαινεσάτωσαν +αὐτόν +πάντες +οἱ +λαοί +καί +πάλιν +Ἠσαΐας +λέγει +Ἔσται +ἡ +ῥίζα +τοῦ +Ἰεσσαί +καί +ὁ +ἀνιστάμενος +ἄρχειν +ἐθνῶν +ἐπ’ +αὐτῷ +ἔθνη +ἐλπιοῦσιν +δέ +Ὁ +Θεός +τῆς +ἐλπίδος +πληρώσαι +ὑμᾶς +πάσης +χαρᾶς +καί +εἰρήνης +ἐν +τῷ +πιστεύειν +εἰς +τό +περισσεύειν +ὑμᾶς +ἐν +τῇ +ἐλπίδι +ἐν +δυνάμει +Πνεύματος +Ἁγίου +δέ +ἀδελφοί +μου +Πέπεισμαι +καί +αὐτός +ἐγώ +περί +ὑμῶν +ὅτι +καί +αὐτοί +μεστοί +ἐστε +ἀγαθωσύνης +πεπληρωμένοι +πάσης +τῆς +γνώσεως +δυνάμενοι +καί +ἀλλήλους +νουθετεῖν +δέ +τολμηροτέρως +ἔγραψα +ὑμῖν +ἀπό +μέρους +ὡς +ἐπαναμιμνήσκων +ὑμᾶς +διά +τήν +χάριν +τήν +δοθεῖσαν +μοι +ἀπό +τοῦ +Θεοῦ +εἰς +τό +εἶναι +με +λειτουργόν +Χριστοῦ +Ἰησοῦ +εἰς +τά +ἔθνη +ἱερουργοῦντα +τό +εὐαγγέλιον +τοῦ +Θεοῦ +ἵνα +γένηται +ἡ +προσφορά +τῶν +ἐθνῶν +εὐπρόσδεκτος +ἡγιασμένη +ἐν +Πνεύματι +Ἁγίῳ +οὖν +ἔχω +τήν +καύχησιν +ἐν +Χριστῷ +Ἰησοῦ +τά +πρός +τόν +Θεόν +γάρ +οὐ +τολμήσω +λαλεῖν +τι +ὧν +οὐ +κατειργάσατο +Χριστός +δι’ +ἐμοῦ +εἰς +ὑπακοήν +ἐθνῶν +λόγῳ +καί +ἔργῳ +ἐν +δυνάμει +σημείων +καί +τεράτων +ἐν +δυνάμει +Πνεύματος +Ἁγίου +ὥστε +με +ἀπό +Ἰερουσαλήμ +καί +κύκλῳ +μέχρι +τοῦ +Ἰλλυρικοῦ +πεπληρωκέναι +τό +εὐαγγέλιον +τοῦ +Χριστοῦ +δέ +οὕτως +φιλοτιμούμενον +εὐαγγελίζεσθαι +οὐχ +ὅπου +ὠνομάσθη +Χριστός +ἵνα +μή +ἐπ’ +ἀλλότριον +θεμέλιον +οἰκοδομῶ +ἀλλά +καθώς +γέγραπται +Ὄψονται +οἷς +οὐκ +ἀνηγγέλη +περί +αὐτοῦ +καί +οἵ +οὐκ +ἀκηκόασιν +συνήσουσιν +Διό +καί +ἐνεκοπτόμην +τά +πολλά +τοῦ +ἐλθεῖν +πρός +ὑμᾶς +δέ +νυνί +μηκέτι +τόπον +ἔχων +ἐν +τοῖς +κλίμασι +τούτοις +δέ +ἐπιποθίαν +ἔχων +τοῦ +ἐλθεῖν +πρός +ὑμᾶς +ἀπό +ἱκανῶν +ἐτῶν +ὡς +ἄν +πορεύωμαι +εἰς +τήν +Σπανίαν +γάρ +ἐλπίζω +διαπορευόμενος +θεάσασθαι +ὑμᾶς +καί +ὑφ’ +ὑμῶν +προπεμφθῆναι +ἐκεῖ +ἐάν +ὑμῶν +πρῶτον +ἀπό +μέρους +ἐμπλησθῶ +δέ +νυνί +πορεύομαι +εἰς +Ἱερουσαλήμ +διακονῶν +τοῖς +ἁγίοις +γάρ +ηὐδόκησαν +Μακεδονία +καί +Ἀχαΐα +κοινωνίαν +τινά +ποιήσασθαι +εἰς +τούς +πτωχούς +τῶν +ἁγίων +τῶν +ἐν +Ἱερουσαλήμ +γάρ +ηὐδόκησαν +καί +ὀφειλέται +εἰσίν +αὐτῶν +γάρ +εἰ +τοῖς +πνευματικοῖς +αὐτῶν +ἐκοινώνησαν +τά +ἔθνη +ὀφείλουσιν +καί +ἐν +τοῖς +σαρκικοῖς +λειτουργῆσαι +αὐτοῖς +οὖν +τοῦτο +ἐπιτελέσας +καί +σφραγισάμενος +αὐτοῖς +τόν +καρπόν +τοῦτον +ἀπελεύσομαι +δι’ +ὑμῶν +εἰς +Σπανίαν +δέ +οἶδα +ὅτι +ἐρχόμενος +πρός +ὑμᾶς +ἐν +πληρώματι +εὐλογίας +Χριστοῦ +ἐλεύσομαι +δέ +ἀδελφοί +Παρακαλῶ +διά +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +καί +διά +τῆς +ἀγάπης +τοῦ +Πνεύματος +ὑμᾶς +συναγωνίσασθαι +μοι +ἐν +ταῖς +προσευχαῖς +ὑπέρ +ἐμοῦ +πρός +τόν +Θεόν +ἵνα +ῥυσθῶ +ἀπό +τῶν +ἀπειθούντων +ἐν +τῇ +Ἰουδαίᾳ +καί +ἡ +διακονία +μου +ἡ +εἰς +Ἱερουσαλήμ +εὐπρόσδεκτος +τοῖς +ἁγίοις +γένηται +ἵνα +ἐν +χαρᾷ +ἐλθών +πρός +ὑμᾶς +διά +θελήματος +Θεοῦ +συναναπαύσωμαι +ὑμῖν +δέ +ὁ +Θεός +τῆς +εἰρήνης +μετά +πάντων +ὑμῶν +ἀμήν +δέ +Συνίστημι +ὑμῖν +Φοίβην +τήν +ἀδελφήν +ἡμῶν +οὖσαν +διάκονον +τῆς +ἐκκλησίας +τῆς +ἐν +Κενχρεαῖς +ἵνα +αὐτήν +προσδέξησθε +ἐν +Κυρίῳ +ἀξίως +τῶν +ἁγίων +καί +παραστῆτε +αὐτῇ +ἐν +ἄν +ᾧ +ὑμῶν +χρῄζῃ +πράγματι +γάρ +καί +αὐτή +ἐγενήθη +προστάτις +πολλῶν +καί +ἐμοῦ +αὐτοῦ +Ἀσπάσασθε +Πρίσκαν +καί +Ἀκύλαν +τούς +συνεργούς +μου +ἐν +Χριστῷ +Ἰησοῦ +οἵτινες +ὑπέρ +τῆς +ψυχῆς +μου +τόν +ἑαυτῶν +τράχηλον +ὑπέθηκαν +οἷς +εὐχαριστῶ +οὐκ +ἐγώ +μόνος +ἀλλά +καί +πᾶσαι +αἱ +ἐκκλησίαι +τῶν +ἐθνῶν +καί +τήν +κατ’ +οἶκον +αὐτῶν +ἐκκλησίαν +ἀσπάσασθε +Ἐπαίνετον +τόν +ἀγαπητόν +μου +ὅς +ἐστιν +ἀπαρχή +τῆς +Ἀσίας +εἰς +Χριστόν +ἀσπάσασθε +Μαριάν +ἥτις +πολλά +ἐκοπίασεν +εἰς +ὑμᾶς +ἀσπάσασθε +Ἀνδρόνικον +καί +Ἰουνίαν +τούς +συγγενεῖς +μου +καί +συναιχμαλώτους +μου +οἵτινες +εἰσιν +ἐπίσημοι +ἐν +τοῖς +ἀποστόλοις +οἵ +καί +πρό +ἐμοῦ +γέγοναν +ἐν +Χριστῷ +ἀσπάσασθε +Ἀμπλιᾶτον +τόν +ἀγαπητόν +μου +ἐν +Κυρίῳ +ἀσπάσασθε +Οὐρβανόν +τόν +συνεργόν +ἡμῶν +ἐν +Χριστῷ +καί +Στάχυν +τόν +ἀγαπητόν +μου +ἀσπάσασθε +Ἀπελλῆν +τόν +δόκιμον +ἐν +Χριστῷ +ἀσπάσασθε +τούς +ἐκ +τῶν +Ἀριστοβούλου +ἀσπάσασθε +Ἠρῳδίωνα +τόν +συγγενῆ +μου +ἀσπάσασθε +τούς +ἐκ +τῶν +Ναρκίσσου +τούς +ὄντας +ἐν +Κυρίῳ +ἀσπάσασθε +Τρύφαιναν +καί +Τρυφῶσαν +τάς +κοπιώσας +ἐν +Κυρίῳ +ἀσπάσασθε +Περσίδα +τήν +ἀγαπητήν +ἥτις +πολλά +ἐκοπίασεν +ἐν +Κυρίῳ +ἀσπάσασθε +Ῥοῦφον +τόν +ἐκλεκτόν +ἐν +Κυρίῳ +καί +τήν +μητέρα +αὐτοῦ +καί +ἐμοῦ +ἀσπάσασθε +Ἀσύνκριτον +Φλέγοντα +Ἑρμῆν +Πατρόβαν +Ἑρμᾶν +καί +τούς +σύν +αὐτοῖς +ἀδελφούς +ἀσπάσασθε +Φιλόλογον +καί +Ἰουλίαν +Νηρέα +καί +τήν +ἀδελφήν +αὐτοῦ +καί +Ὀλυμπᾶν +καί +τούς +σύν +αὐτοῖς +πάντας +ἁγίους +ἀσπάσασθε +ἀλλήλους +ἐν +φιλήματι +ἁγίῳ +ἀσπάζονται +ὑμᾶς +αἱ +ἐκκλησίαι +πᾶσαι +τοῦ +Χριστοῦ +δέ +ἀδελφοί +Παρακαλῶ +ὑμᾶς +σκοπεῖν +τούς +τάς +διχοστασίας +καί +τά +σκάνδαλα +παρά +τήν +διδαχήν +ἥν +ὑμεῖς +ἐμάθετε +ποιοῦντας +καί +ἐκκλίνετε +ἀπ’ +αὐτῶν +γάρ +οἱ +τοιοῦτοι +τῷ +Κυρίῳ +ἡμῶν +Χριστῷ +οὐ +δουλεύουσιν +ἀλλά +τῇ +ἑαυτῶν +κοιλίᾳ +καί +διά +τῆς +χρηστολογίας +καί +εὐλογίας +ἐξαπατῶσιν +τάς +καρδίας +τῶν +ἀκάκων +γάρ +ἡ +ὑμῶν +ὑπακοή +εἰς +πάντας +ἀφίκετο +οὖν +ἐφ’ +ὑμῖν +χαίρω +δέ +θέλω +ὑμᾶς +σοφούς +εἶναι +εἰς +τό +ἀγαθόν +δέ +ἀκεραίους +εἰς +τό +κακόν +δέ +ὁ +Θεός +τῆς +εἰρήνης +συντρίψει +τόν +Σατανᾶν +ὑπό +τούς +πόδας +ὑμῶν +ἐν +τάχει +Ἠ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +μεθ’ +ὑμῶν +Ἀσπάζεται +ὑμᾶς +Τιμόθεος +ὁ +συνεργός +μου +καί +Λούκιος +καί +Ἰάσων +καί +Σωσίπατρος +οἱ +συγγενεῖς +μου +ἀσπάζομαι +ὑμᾶς +ἐγώ +Τέρτιος +ὁ +γράψας +τήν +ἐπιστολήν +ἐν +Κυρίῳ +ἀσπάζεται +ὑμᾶς +Γάϊος +ὁ +ξένος +μου +καί +ὅλης +τῆς +ἐκκλησίας +ἀσπάζεται +ὑμᾶς +Ἔραστος +ὁ +οἰκονόμος +τῆς +πόλεως +καί +Κούαρτος +ὁ +ἀδελφός +δέ +Τῷ +δυναμένῳ +ὑμᾶς +στηρίξαι +κατά +τό +εὐαγγέλιον +μου +καί +τό +κήρυγμα +Ἰησοῦ +Χριστοῦ +κατά +ἀποκάλυψιν +μυστηρίου +χρόνοις +αἰωνίοις +σεσιγημένου +δέ +φανερωθέντος +νῦν +τε +διά +γραφῶν +προφητικῶν +κατ’ +ἐπιταγήν +τοῦ +αἰωνίου +Θεοῦ +εἰς +ὑπακοήν +πίστεως +εἰς +πάντα +τά +ἔθνη +γνωρισθέντος +μόνῳ +σοφῷ +Θεῷ +διά +Ἰησοῦ +Χριστοῦ +ᾧ +ἡ +δόξα +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Παῦλος +κλητός +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διά +θελήματος +Θεοῦ +καί +Σωσθένης +ὁ +ἀδελφός +τῇ +ἐκκλησίᾳ +τοῦ +Θεοῦ +τῇ +οὔσῃ +ἐν +Κορίνθῳ +ἡγιασμένοις +ἐν +Χριστῷ +Ἰησοῦ +κλητοῖς +ἁγίοις +σύν +πᾶσιν +τοῖς +ἐπικαλουμένοις +τό +ὄνομα +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἐν +παντί +τόπῳ +αὐτῶν +καί +ἡμῶν +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +Εὐχαριστῶ +τῷ +Θεῷ +πάντοτε +περί +ὑμῶν +ἐπί +τῇ +χάριτι +τοῦ +Θεοῦ +τῇ +δοθείσῃ +ὑμῖν +ἐν +Χριστῷ +Ἰησοῦ +ὅτι +ἐν +παντί +ἐπλουτίσθητε +ἐν +αὐτῷ +ἐν +παντί +λόγῳ +καί +πάσῃ +γνώσει +καθώς +τό +μαρτύριον +τοῦ +Χριστοῦ +ἐβεβαιώθη +ἐν +ὑμῖν +ὥστε +ὑμᾶς +μή +ὑστερεῖσθαι +ἐν +μηδενί +χαρίσματι +ἀπεκδεχομένους +τήν +ἀποκάλυψιν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὅς +καί +βεβαιώσει +ὑμᾶς +ἕως +τέλους +ἀνεγκλήτους +ἐν +τῇ +ἡμέρᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +πιστός +ὁ +Θεός +δι’ +οὗ +ἐκλήθητε +εἰς +κοινωνίαν +τοῦ +Υἱοῦ +αὐτοῦ +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν +δέ +ἀδελφοί +Παρακαλῶ +ὑμᾶς +διά +τοῦ +ὀνόματος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἵνα +τό +αὐτό +λέγητε +πάντες +καί +μή +ᾖ +ἐν +ὑμῖν +σχίσματα +δέ +ἦτε +κατηρτισμένοι +ἐν +τῷ +αὐτῷ +νοΐ +καί +ἐν +τῇ +αὐτῇ +γνώμῃ +γάρ +ἀδελφοί +μου +ἐδηλώθη +μοι +περί +ὑμῶν +ὑπό +τῶν +Χλόης +ὅτι +ἔριδες +ἐν +ὑμῖν +εἰσιν +δέ +λέγω +τοῦτο +ὅτι +ἕκαστος +ὑμῶν +λέγει +μέν +Ἐγώ +εἰμι +Παύλου +δέ +Ἐγώ +Ἀπολλῶ +δέ +Ἐγώ +Κηφᾶ +δέ +Ἐγώ +Χριστοῦ +μεμέρισται +ὁ +Χριστός +μή +Παῦλος +ἐσταυρώθη +ὑπέρ +ὑμῶν +ἤ +εἰς +τό +ὄνομα +Παύλου +ἐβαπτίσθητε +εὐχαριστῶ +ὅτι +οὐδένα +ὑμῶν +ἐβάπτισα +εἰ +μή +Κρίσπον +καί +Γάϊον +ἵνα +μή +τις +εἴπῃ +ὅτι +εἰς +τό +ἐμόν +ὄνομα +ἐβαπτίσθητε +δέ +ἐβάπτισα +καί +τόν +Στεφανᾶ +οἶκον +λοιπόν +οὐκ +οἶδα +εἴ +τινα +ἄλλον +ἐβάπτισα +γάρ +ἀπέστειλεν +με +Χριστός +οὐ +βαπτίζειν +ἀλλά +εὐαγγελίζεσθαι +οὐκ +ἐν +σοφίᾳ +λόγου +ἵνα +μή +κενωθῇ +ὁ +σταυρός +τοῦ +Χριστοῦ +γάρ +μέν +Ὁ +λόγος +ὁ +τοῦ +σταυροῦ +τοῖς +ἀπολλυμένοις +μωρία +ἐστίν +δέ +τοῖς +σῳζομένοις +ἡμῖν +δύναμις +Θεοῦ +ἐστιν +γάρ +γέγραπται +Ἀπολῶ +τήν +σοφίαν +τῶν +σοφῶν +καί +τήν +σύνεσιν +τῶν +συνετῶν +ἀθετήσω +ποῦ +σοφός +ποῦ +γραμματεύς +ποῦ +συνζητητής +τοῦ +αἰῶνος +τούτου +οὐχί +ἐμώρανεν +ὁ +Θεός +τήν +σοφίαν +τοῦ +κόσμου +γάρ +ἐπειδή +ἐν +τῇ +σοφίᾳ +τοῦ +Θεοῦ +οὐκ +ἔγνω +ὁ +κόσμος +διά +τῆς +σοφίας +τόν +Θεόν +εὐδόκησεν +ὁ +Θεός +διά +τῆς +μωρίας +τοῦ +κηρύγματος +σῶσαι +τούς +πιστεύοντας +ἐπειδή +καί +Ἰουδαῖοι +σημεῖα +αἰτοῦσιν +καί +Ἕλληνες +σοφίαν +ζητοῦσιν +δέ +ἡμεῖς +κηρύσσομεν +Χριστόν +ἐσταυρωμένον +μέν +Ἰουδαίοις +σκάνδαλον +δέ +ἔθνεσιν +μωρίαν +δέ +αὐτοῖς +τοῖς +κλητοῖς +τε +Ἰουδαίοις +καί +Ἕλλησιν +Χριστόν +Θεοῦ +δύναμιν +καί +Θεοῦ +σοφίαν +ὅτι +τό +μωρόν +τοῦ +Θεοῦ +σοφώτερον +τῶν +ἀνθρώπων +ἐστίν +καί +τό +ἀσθενές +τοῦ +Θεοῦ +ἰσχυρότερον +τῶν +ἀνθρώπων +γάρ +ἀδελφοί +Βλέπετε +τήν +κλῆσιν +ὑμῶν +ὅτι +οὐ +πολλοί +σοφοί +κατά +σάρκα +οὐ +πολλοί +δυνατοί +οὐ +πολλοί +εὐγενεῖς +ἀλλά +τά +μωρά +τοῦ +κόσμου +ἐξελέξατο +ὁ +Θεός +ἵνα +καταισχύνῃ +τούς +σοφούς +καί +τά +ἀσθενῆ +τοῦ +κόσμου +ἐξελέξατο +ὁ +Θεός +ἵνα +καταισχύνῃ +τά +ἰσχυρά +καί +τά +ἀγενῆ +τοῦ +κόσμου +καί +τά +ἐξουθενημένα +τά +μή +ὄντα +ἐξελέξατο +ὁ +Θεός +ἵνα +τά +ὄντα +καταργήσῃ +ὅπως +μή +καυχήσηται +πᾶσα +σάρξ +ἐνώπιον +τοῦ +Θεοῦ +δέ +ἐξ +αὐτοῦ +ὑμεῖς +ἐστε +ἐν +Χριστῷ +Ἰησοῦ +ὅς +ἐγενήθη +ἡμῖν +ἀπό +Θεοῦ +σοφία +τε +δικαιοσύνη +καί +ἁγιασμός +καί +ἀπολύτρωσις +ἵνα +καθώς +γέγραπται +Ὁ +καυχώμενος +ἐν +Κυρίῳ +καυχάσθω +ἀδελφοί +Κἀγώ +ἐλθών +πρός +ὑμᾶς +ἦλθον +οὐ +καθ’ +ὑπεροχήν +λόγου +ἤ +σοφίας +καταγγέλλων +ὑμῖν +τό +μαρτύριον +τοῦ +Θεοῦ +γάρ +οὐ +ἔκρινα +τι +εἰδέναι +ἐν +ὑμῖν +εἰ +μή +Ἰησοῦν +Χριστόν +καί +τοῦτον +ἐσταυρωμένον +κἀγώ +ἐν +ἀσθενείᾳ +καί +ἐν +φόβῳ +καί +ἐν +τρόμῳ +πολλῷ +ἐγενόμην +πρός +ὑμᾶς +καί +ὁ +λόγος +μου +καί +τό +κήρυγμα +μου +οὐκ +ἐν +πειθοῖς +σοφίας +λόγοις +ἀλλ’ +ἐν +ἀποδείξει +Πνεύματος +καί +δυνάμεως +ἵνα +ἡ +πίστις +ὑμῶν +ᾖ +μή +ἐν +σοφίᾳ +ἀνθρώπων +ἀλλ’ +ἐν +δυνάμει +Θεοῦ +δέ +Σοφίαν +λαλοῦμεν +ἐν +τοῖς +τελείοις +δέ +οὐ +σοφίαν +τοῦ +αἰῶνος +τούτου +οὐδέ +τῶν +ἀρχόντων +τοῦ +αἰῶνος +τούτου +τῶν +καταργουμένων +ἀλλά +λαλοῦμεν +Θεοῦ +σοφίαν +ἐν +μυστηρίῳ +τήν +ἀποκεκρυμμένην +ἥν +προώρισεν +ὁ +Θεός +πρό +τῶν +αἰώνων +εἰς +δόξαν +ἡμῶν +ἥν +οὐδείς +τῶν +ἀρχόντων +τοῦ +αἰῶνος +τούτου +ἔγνωκεν +γάρ +εἰ +ἔγνωσαν +ἄν +οὐκ +τόν +Κύριον +τῆς +δόξης +ἐσταύρωσαν +ἀλλά +καθώς +γέγραπται +Ἅ +ὀφθαλμός +οὐκ +εἶδεν +καί +οὖς +οὐκ +ἤκουσεν +καί +ἐπί +καρδίαν +ἀνθρώπου +οὐκ +ἀνέβη +ὅσα +ἡτοίμασεν +ὁ +Θεός +τοῖς +ἀγαπῶσιν +αὐτόν +γάρ +ἡμῖν +ἀπεκάλυψεν +ὁ +Θεός +διά +τοῦ +Πνεύματος +γάρ +τό +Πνεῦμα +πάντα +ἐραυνᾷ +καί +τά +βάθη +τοῦ +Θεοῦ +γάρ +τίς +ἀνθρώπων +οἶδεν +τά +τοῦ +ἀνθρώπου +εἰ +μή +τό +πνεῦμα +τοῦ +ἀνθρώπου +τό +ἐν +αὐτῷ +οὕτως +καί +τά +τοῦ +Θεοῦ +οὐδείς +ἔγνωκεν +εἰ +μή +τό +Πνεῦμα +τοῦ +Θεοῦ +δέ +οὐ +ἡμεῖς +τό +πνεῦμα +τοῦ +κόσμου +ἐλάβομεν +ἀλλά +τό +πνεῦμα +τό +ἐκ +τοῦ +Θεοῦ +ἵνα +εἰδῶμεν +τά +ὑπό +τοῦ +Θεοῦ +χαρισθέντα +ἡμῖν +ἅ +καί +λαλοῦμεν +οὐκ +ἐν +διδακτοῖς +ἀνθρωπίνης +σοφίας +λόγοις +ἀλλ’ +ἐν +διδακτοῖς +Πνεύματος +πνευματικοῖς +πνευματικά +συνκρίνοντες +δέ +ψυχικός +ἄνθρωπος +οὐ +δέχεται +τά +τοῦ +Πνεύματος +τοῦ +Θεοῦ +γάρ +μωρία +αὐτῷ +ἐστίν +καί +οὐ +δύναται +γνῶναι +ὅτι +πνευματικῶς +ἀνακρίνεται +δέ +ὁ +πνευματικός +ἀνακρίνει +μέν +πάντα +δέ +αὐτός +ὑπ’ +οὐδενός +ἀνακρίνεται +γάρ +τίς +ἔγνω +νοῦν +Κυρίου +ὅς +συμβιβάσει +αὐτόν +δέ +ἡμεῖς +νοῦν +Χριστοῦ +ἔχομεν +ἀδελφοί +Κἀγώ +ἠδυνήθην +οὐκ +λαλῆσαι +ὑμῖν +ὡς +πνευματικοῖς +ἀλλ’ +ὡς +σαρκίνοις +ὡς +νηπίοις +ἐν +Χριστῷ +γάλα +ὑμᾶς +ἐπότισα +οὐ +βρῶμα +γάρ +οὔπω +ἐδύνασθε +Ἀλλ’ +οὐδέ +ἔτι +νῦν +δύνασθε +γάρ +ἔτι +σαρκικοί +ἐστε +γάρ +ὅπου +ἐν +ὑμῖν +ζῆλος +καί +ἔρις +οὐχί +σαρκικοί +ἐστε +καί +κατά +ἄνθρωπον +περιπατεῖτε +γάρ +ὅταν +μέν +λέγῃ +τις +Ἐγώ +εἰμι +Παύλου +δέ +ἕτερος +Ἐγώ +Ἀπολλῶ +οὐκ +ἄνθρωποι +ἐστε +οὖν +τί +ἐστιν +Ἀπολλῶς +δέ +τί +ἐστιν +Παῦλος +διάκονοι +δι’ +ὧν +ἐπιστεύσατε +ὡς +καί +ἑκάστῳ +ὁ +Κύριος +ἔδωκεν +ἐγώ +ἐφύτευσα +Ἀπολλῶς +ἐπότισεν +ἀλλά +ὁ +Θεός +ηὔξανεν +ὥστε +οὔτε +ὁ +φυτεύων +ἐστίν +τι +οὔτε +ὁ +ποτίζων +ἀλλ’ +ὁ +αὐξάνων +Θεός +δέ +ὁ +φυτεύων +καί +ὁ +ποτίζων +ἕν +εἰσιν +δέ +ἕκαστος +τόν +ἴδιον +μισθόν +λήμψεται +κατά +τόν +ἴδιον +κόπον +γάρ +ἐσμεν +Θεοῦ +συνεργοί +Θεοῦ +γεώργιον +Θεοῦ +οἰκοδομή +ἐστε +Κατά +τήν +χάριν +τοῦ +Θεοῦ +τήν +δοθεῖσαν +μοι +ὡς +σοφός +ἀρχιτέκτων +θεμέλιον +ἔθηκα +δέ +ἄλλος +ἐποικοδομεῖ +δέ +ἕκαστος +βλεπέτω +πῶς +ἐποικοδομεῖ +γάρ +οὐδείς +δύναται +θεμέλιον +ἄλλον +θεῖναι +παρά +τόν +κείμενον +ὅς +ἐστιν +Ἰησοῦς +Χριστός +δέ +εἰ +τις +ἐποικοδομεῖ +ἐπί +τόν +θεμέλιον +χρυσίον +ἀργύριον +λίθους +τιμίους +ξύλα +χόρτον +καλάμην +ἑκάστου +τό +ἔργον +φανερόν +γενήσεται +γάρ +ἡ +ἡμέρα +δηλώσει +ὅτι +ἐν +πυρί +ἀποκαλύπτεται +καί +ἑκάστου +τό +ἔργον +ὁποῖον +ἐστιν +τό +πῦρ +αὐτό +δοκιμάσει +εἴ +μενεῖ +τινος +τό +ἔργον +ὅ +ἐποικοδόμησεν +μισθόν +λήμψεται +εἴ +τινος +τό +ἔργον +κατακαήσεται +ζημιωθήσεται +δέ +αὐτός +σωθήσεται +δέ +ὡς +οὕτως +διά +πυρός +Οὐκ +οἴδατε +ὅτι +ναός +Θεοῦ +ἐστε +καί +τό +Πνεῦμα +τοῦ +Θεοῦ +ἐν +ὑμῖν +οἰκεῖ +εἴ +τις +τόν +ναόν +τοῦ +Θεοῦ +φθείρει +φθερεῖ +τοῦτον +ὁ +Θεός +γάρ +ὁ +ναός +τοῦ +Θεοῦ +ἅγιος +ἐστιν +οἵτινες +ἐστε +ὑμεῖς +Μηδείς +ἑαυτόν +ἐξαπατάτω +εἴ +τις +δοκεῖ +σοφός +εἶναι +ἐν +ὑμῖν +ἐν +τῷ +αἰῶνι +τούτῳ +μωρός +γενέσθω +ἵνα +γένηται +σοφός +γάρ +ἡ +σοφία +τοῦ +κόσμου +τούτου +μωρία +παρά +τῷ +Θεῷ +ἐστιν +γάρ +γέγραπται +Ὁ +δρασσόμενος +τούς +σοφούς +ἐν +τῇ +πανουργίᾳ +αὐτῶν +καί +πάλιν +Κύριος +γινώσκει +τούς +διαλογισμούς +τῶν +σοφῶν +ὅτι +εἰσίν +μάταιοι +ὥστε +μηδείς +καυχάσθω +ἐν +ἀνθρώποις +γάρ +πάντα +ὑμῶν +ἐστιν +εἴτε +Παῦλος +εἴτε +Ἀπολλῶς +εἴτε +Κηφᾶς +εἴτε +κόσμος +εἴτε +ζωή +εἴτε +θάνατος +εἴτε +ἐνεστῶτα +εἴτε +μέλλοντα +πάντα +ὑμῶν +δέ +ὑμεῖς +Χριστοῦ +δέ +Χριστός +Θεοῦ +Οὕτως +ἡμᾶς +λογιζέσθω +ἄνθρωπος +ὡς +ὑπηρέτας +Χριστοῦ +καί +οἰκονόμους +μυστηρίων +Θεοῦ +ὧδε +λοιπόν +ζητεῖται +ἐν +τοῖς +οἰκονόμοις +ἵνα +πιστός +τις +εὑρεθῇ +δέ +ἐμοί +εἰς +ἐλάχιστον +ἐστιν +ἵνα +ἀνακριθῶ +ὑφ’ +ὑμῶν +ἤ +ὑπό +ἀνθρωπίνης +ἡμέρας +ἀλλ’ +οὐδέ +ἐμαυτόν +ἀνακρίνω +γάρ +οὐδέν +ἐμαυτῷ +σύνοιδα +ἀλλ’ +οὐκ +ἐν +τούτῳ +δεδικαίωμαι +δέ +ὁ +ἀνακρίνων +με +Κύριος +ἐστιν +ὥστε +μή +πρό +καιροῦ +τι +κρίνετε +ἕως +ἄν +ἔλθῃ +ὁ +Κύριος +ὅς +καί +φωτίσει +τά +κρυπτά +τοῦ +σκότους +καί +φανερώσει +τάς +βουλάς +τῶν +καρδιῶν +καί +τότε +ὁ +ἔπαινος +γενήσεται +ἑκάστῳ +ἀπό +τοῦ +Θεοῦ +δέ +ἀδελφοί +Ταῦτα +μετεσχημάτισα +εἰς +ἐμαυτόν +καί +Ἀπολλῶν +δι’ +ὑμᾶς +ἵνα +ἐν +ἡμῖν +μάθητε +τό +Μή +ὑπέρ +ἅ +γέγραπται +ἵνα +μή +εἷς +ὑπέρ +τοῦ +ἑνός +φυσιοῦσθε +κατά +τοῦ +ἑτέρου +γάρ +τίς +σε +διακρίνει +δέ +ἔχεις +τί +ὅ +οὐκ +ἔλαβες +δέ +εἰ +καί +ἔλαβες +τί +καυχᾶσαι +ὡς +μή +λαβών +ἤδη +κεκορεσμένοι +ἐστέ +ἤδη +ἐπλουτήσατε +χωρίς +ἡμῶν +ἐβασιλεύσατε +καί +ὄφελον +γε +ἐβασιλεύσατε +ἵνα +καί +ἡμεῖς +ὑμῖν +συνβασιλεύσωμεν +γάρ +δοκῶ +ὁ +Θεός +ἡμᾶς +τούς +ἀποστόλους +ἐσχάτους +ἀπέδειξεν +ὡς +ἐπιθανατίους +ὅτι +θέατρον +ἐγενήθημεν +τῷ +κόσμῳ +καί +ἀγγέλοις +καί +ἀνθρώποις +ἡμεῖς +μωροί +διά +Χριστόν +δέ +ὑμεῖς +φρόνιμοι +ἐν +Χριστῷ +ἡμεῖς +ἀσθενεῖς +δέ +ὑμεῖς +ἰσχυροί +ὑμεῖς +ἔνδοξοι +δέ +ἡμεῖς +ἄτιμοι +ἄχρι +τῆς +ἄρτι +ὥρας +καί +πεινῶμεν +καί +διψῶμεν +καί +γυμνιτεύομεν +καί +κολαφιζόμεθα +καί +ἀστατοῦμεν +καί +κοπιῶμεν +ἐργαζόμενοι +ταῖς +ἰδίαις +χερσίν +λοιδορούμενοι +εὐλογοῦμεν +διωκόμενοι +ἀνεχόμεθα +δυσφημούμενοι +παρακαλοῦμεν +ὡς +περικαθάρματα +τοῦ +κόσμου +πάντων +περίψημα +ἐγενήθημεν +ἕως +ἄρτι +Οὐκ +ἐντρέπων +ὑμᾶς +γράφω +ταῦτα +ἀλλ’ +ὡς +τέκνα +μου +ἀγαπητά +νουθετῶν +γάρ +ἐάν +μυρίους +παιδαγωγούς +ἔχητε +ἐν +Χριστῷ +ἀλλ’ +οὐ +πολλούς +πατέρας +γάρ +ἐν +Χριστῷ +Ἰησοῦ +διά +τοῦ +εὐαγγελίου +ἐγώ +ὑμᾶς +ἐγέννησα +οὖν +παρακαλῶ +ὑμᾶς +μιμηταί +μου +γίνεσθε +Διά +τοῦτο +αὐτό +ἔπεμψα +ὑμῖν +Τιμόθεον +ὅς +ἐστίν +μου +τέκνον +ἀγαπητόν +καί +πιστόν +ἐν +Κυρίῳ +ὅς +ὑμᾶς +ἀναμνήσει +τάς +ὁδούς +μου +τάς +ἐν +Χριστῷ +Ἰησοῦ +καθώς +πανταχοῦ +ἐν +πάσῃ +ἐκκλησίᾳ +διδάσκω +δέ +ὡς +μή +ἐρχομένου +μου +πρός +ὑμᾶς +ἐφυσιώθησαν +τινες +δέ +ἐλεύσομαι +ταχέως +πρός +ὑμᾶς +ἐάν +ὁ +Κύριος +θελήσῃ +καί +γνώσομαι +οὐ +τόν +λόγον +τῶν +πεφυσιωμένων +ἀλλά +τήν +δύναμιν +γάρ +οὐ +ἐν +λόγῳ +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀλλ’ +ἐν +δυνάμει +τί +θέλετε +ἐν +ῥάβδῳ +ἔλθω +πρός +ὑμᾶς +ἤ +ἐν +ἀγάπῃ +τε +πνεύματι +πραΰτητος +Ὅλως +ἀκούεται +ἐν +ὑμῖν +πορνεία +καί +τοιαύτη +πορνεία +ἥτις +οὐδέ +ἐν +τοῖς +ἔθνεσιν +ὥστε +τινα +γυναῖκα +τοῦ +πατρός +ἔχειν +καί +ὑμεῖς +πεφυσιωμένοι +ἐστέ +καί +οὐχί +μᾶλλον +ἐπενθήσατε +ἵνα +ἀρθῇ +ἐκ +μέσου +ὑμῶν +ὁ +τό +ἔργον +τοῦτο +πράξας +γάρ +ἐγώ +μέν +ἀπών +τῷ +σώματι +δέ +παρών +τῷ +πνεύματι +ἤδη +κέκρικα +ὡς +παρών +τόν +οὕτως +τοῦτο +κατεργασάμενον +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου +Ἰησοῦ +συναχθέντων +ὑμῶν +καί +τοῦ +ἐμοῦ +πνεύματος +σύν +τῇ +δυνάμει +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +παραδοῦναι +τόν +τοιοῦτον +τῷ +Σατανᾷ +εἰς +ὄλεθρον +τῆς +σαρκός +ἵνα +τό +πνεῦμα +σωθῇ +ἐν +τῇ +ἡμέρᾳ +τοῦ +Κυρίου +Οὐ +καλόν +τό +καύχημα +ὑμῶν +οὐκ +οἴδατε +ὅτι +μικρά +ζύμη +ὅλον +τό +φύραμα +ζυμοῖ +ἐκκαθάρατε +τήν +παλαιάν +ζύμην +ἵνα +ἦτε +νέον +φύραμα +καθώς +ἐστε +ἄζυμοι +γάρ +καί +τό +πάσχα +ἡμῶν +Χριστός +ἐτύθη +ὥστε +ἑορτάζωμεν +μή +ἐν +ζύμῃ +παλαιᾷ +μηδέ +ἐν +ζύμῃ +κακίας +καί +πονηρίας +ἀλλ’ +ἐν +ἀζύμοις +εἰλικρινίας +καί +ἀληθείας +Ἔγραψα +ὑμῖν +ἐν +τῇ +ἐπιστολῇ +μή +συναναμίγνυσθαι +πόρνοις +οὐ +πάντως +τοῖς +πόρνοις +τοῦ +κόσμου +τούτου +ἤ +τοῖς +πλεονέκταις +καί +ἅρπαξιν +ἤ +εἰδωλολάτραις +ἐπεί +ἄρα +ὠφείλετε +ἐκ +τοῦ +κόσμου +ἐξελθεῖν +δέ +νῦν +ἔγραψα +ὑμῖν +μή +συναναμίγνυσθαι +ἐάν +τις +ἀδελφός +ὀνομαζόμενος +ᾖ +πόρνος +ἤ +πλεονέκτης +ἤ +εἰδωλολάτρης +ἤ +λοίδορος +ἤ +μέθυσος +ἤ +ἅρπαξ +τῷ +τοιούτῳ +μηδέ +συνεσθίειν +γάρ +τί +μοι +τούς +ἔξω +κρίνειν +οὐχί +τούς +ἔσω +ὑμεῖς +κρίνετε +δέ +τούς +ἔξω +ὁ +Θεός +κρινεῖ +ἐξάρατε +τόν +πονηρόν +ἐξ +ὑμῶν +αὐτῶν +Τολμᾷ +τις +ὑμῶν +πρᾶγμα +ἔχων +πρός +τόν +ἕτερον +κρίνεσθαι +ἐπί +τῶν +ἀδίκων +καί +οὐχί +ἐπί +τῶν +ἁγίων +ἤ +οὐκ +οἴδατε +ὅτι +οἱ +ἅγιοι +τόν +κόσμον +κρινοῦσιν +καί +εἰ +ἐν +ὑμῖν +κρίνεται +ὁ +κόσμος +ἀνάξιοι +ἐστε +κριτηρίων +ἐλαχίστων +οὐκ +οἴδατε +ὅτι +ἀγγέλους +κρινοῦμεν +μήτιγε +βιωτικά +μέν +οὖν +ἐάν +βιωτικά +κριτήρια +ἔχητε +τούς +ἐξουθενημένους +ἐν +τῇ +ἐκκλησίᾳ +τούτους +καθίζετε +πρός +ἐντροπήν +ὑμῖν +λέγω +οὐκ +οὕτως +ἔνι +ἐν +ὑμῖν +οὐδείς +σοφός +ὅς +δυνήσεται +διακρῖναι +ἀνά +μέσον +τοῦ +ἀδελφοῦ +αὐτοῦ +ἀλλά +ἀδελφός +μετά +ἀδελφοῦ +κρίνεται +καί +τοῦτο +ἐπί +ἀπίστων +μέν +οὖν +ἤδη +ὅλως +ἥττημα +ὑμῖν +ἐστιν +ὅτι +κρίματα +ἔχετε +μεθ’ +ἑαυτῶν +διά +τί +οὐχί +μᾶλλον +ἀδικεῖσθε +διά +τί +οὐχί +μᾶλλον +ἀποστερεῖσθε +ἀλλά +ὑμεῖς +ἀδικεῖτε +καί +ἀποστερεῖτε +καί +τοῦτο +ἀδελφούς +ἤ +οὐκ +οἴδατε +ὅτι +ἄδικοι +Θεοῦ +βασιλείαν +οὐ +κληρονομήσουσιν +μή +πλανᾶσθε +οὔτε +πόρνοι +οὔτε +εἰδωλολάτραι +οὔτε +μοιχοί +οὔτε +μαλακοί +οὔτε +ἀρσενοκοῖται +οὔτε +κλέπται +οὔτε +πλεονέκται +οὐ +μέθυσοι +οὐ +λοίδοροι +οὐχ +ἅρπαγες +βασιλείαν +Θεοῦ +κληρονομήσουσιν +καί +ταῦτα +τινες +ἦτε +ἀλλά +ἀπελούσασθε +ἀλλά +ἡγιάσθητε +ἀλλά +ἐδικαιώθητε +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +καί +ἐν +τῷ +Πνεύματι +τοῦ +Θεοῦ +ἡμῶν +Πάντα +μοι +ἔξεστιν +ἀλλ’ +οὐ +πάντα +συμφέρει +πάντα +μοι +ἔξεστιν +ἀλλ’ +οὐκ +ἐγώ +ἐξουσιασθήσομαι +ὑπό +τινος +τά +βρώματα +τῇ +κοιλίᾳ +καί +ἡ +κοιλία +τοῖς +βρώμασιν +δέ +ὁ +Θεός +καί +ταύτην +καί +ταῦτα +καταργήσει +δέ +τό +σῶμα +οὐ +τῇ +πορνείᾳ +ἀλλά +τῷ +Κυρίῳ +καί +ὁ +Κύριος +τῷ +σώματι +δέ +ὁ +Θεός +καί +τόν +Κύριον +ἤγειρεν +καί +ἡμᾶς +ἐξεγερεῖ +διά +τῆς +δυνάμεως +αὐτοῦ +οὐκ +οἴδατε +ὅτι +τά +σώματα +ὑμῶν +μέλη +Χριστοῦ +ἐστιν +οὖν +ἄρας +τά +μέλη +τοῦ +Χριστοῦ +ποιήσω +πόρνης +μέλη +μή +γένοιτο +ἤ +οὐκ +οἴδατε +ὅτι +ὁ +κολλώμενος +τῇ +πόρνῃ +ἕν +σῶμα +ἐστιν +γάρ +φησίν +Ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν +δέ +ὁ +κολλώμενος +τῷ +Κυρίῳ +ἕν +πνεῦμα +ἐστιν +φεύγετε +τήν +πορνείαν +πᾶν +ἁμάρτημα +ἐάν +ὅ +ποιήσῃ +ἄνθρωπος +ἐκτός +τοῦ +σώματος +ἐστιν +δέ +ὁ +πορνεύων +εἰς +τό +ἴδιον +σῶμα +ἁμαρτάνει +ἤ +οὐκ +οἴδατε +ὅτι +τό +σῶμα +ὑμῶν +ναός +τοῦ +ἐν +ὑμῖν +Ἁγίου +Πνεύματος +ἐστιν +οὗ +ἔχετε +ἀπό +Θεοῦ +καί +οὐκ +ἐστέ +ἑαυτῶν +γάρ +ἠγοράσθητε +τιμῆς +δή +δοξάσατε +τόν +Θεόν +ἐν +τῷ +σώματι +ὑμῶν +δέ +Περί +ὧν +ἐγράψατε +καλόν +ἀνθρώπῳ +γυναικός +μή +ἅπτεσθαι +δέ +διά +τάς +πορνείας +ἕκαστος +τήν +ἑαυτοῦ +γυναῖκα +ἐχέτω +καί +ἑκάστη +τόν +ἴδιον +ἄνδρα +ἐχέτω +τῇ +γυναικί +ὁ +ἀνήρ +τήν +ὀφειλήν +ἀποδιδότω +δέ +ὁμοίως +καί +ἡ +γυνή +τῷ +ἀνδρί +ἡ +γυνή +τοῦ +ἰδίου +σώματος +οὐκ +ἐξουσιάζει +ἀλλά +ὁ +ἀνήρ +δέ +ὁμοίως +καί +ὁ +ἀνήρ +τοῦ +ἰδίου +σώματος +οὐκ +ἐξουσιάζει +ἀλλά +ἡ +γυνή +μή +ἀποστερεῖτε +ἀλλήλους +εἰ +μήτι +ἄν +ἐκ +συμφώνου +πρός +καιρόν +ἵνα +σχολάσητε +τῇ +προσευχῇ +καί +πάλιν +ἐπί +τό +αὐτό +ἦτε +ἵνα +μή +πειράζῃ +ὑμᾶς +ὁ +Σατανᾶς +διά +τήν +ἀκρασίαν +ὑμῶν +δέ +τοῦτο +λέγω +κατά +συνγνώμην +οὐ +κατ’ +ἐπιταγήν +δέ +θέλω +πάντας +ἀνθρώπους +εἶναι +ὡς +καί +ἐμαυτόν +ἀλλά +ἕκαστος +ἔχει +ἴδιον +χάρισμα +ἐκ +Θεοῦ +μέν +ὁ +οὕτως +δέ +ὁ +οὕτως +δέ +Λέγω +τοῖς +ἀγάμοις +καί +ταῖς +χήραις +καλόν +αὐτοῖς +ἐάν +μείνωσιν +ὡς +κἀγώ +δέ +εἰ +οὐκ +ἐγκρατεύονται +γαμησάτωσαν +γάρ +κρεῖττον +ἐστιν +γαμεῖν +ἤ +πυροῦσθαι +δέ +τοῖς +γεγαμηκόσιν +παραγγέλλω +οὐκ +ἐγώ +ἀλλά +ὁ +Κύριος +γυναῖκα +ἀπό +ἀνδρός +μή +χωρισθῆναι +δέ +ἐάν +καί +χωρισθῇ +μενέτω +ἄγαμος +ἤ +τῷ +ἀνδρί +καταλλαγήτω +καί +ἄνδρα +γυναῖκα +μή +ἀφιέναι +δέ +τοῖς +λοιποῖς +λέγω +ἐγώ +οὐχ +ὁ +Κύριος +εἴ +τις +ἀδελφός +ἔχει +γυναῖκα +ἄπιστον +καί +αὕτη +συνευδοκεῖ +οἰκεῖν +μετ’ +αὐτοῦ +μή +ἀφιέτω +αὐτήν +καί +γυνή +ἥτις +ἔχει +ἄνδρα +ἄπιστον +καί +οὗτος +συνευδοκεῖ +οἰκεῖν +μετ’ +αὐτῆς +μή +ἀφιέτω +τόν +ἄνδρα +γάρ +ἡγίασται +ὁ +ἀνήρ +ὁ +ἄπιστος +ἐν +τῇ +γυναικί +καί +ἡγίασται +ἡ +γυνή +ἡ +ἄπιστος +ἐν +τῷ +ἀδελφῷ +ἄρα +ἐπεί +τά +τέκνα +ὑμῶν +ἀκάθαρτα +ἐστιν +δέ +νῦν +ἅγια +ἐστιν +δέ +εἰ +ὁ +ἄπιστος +χωρίζεται +χωριζέσθω +οὐ +δεδούλωται +ὁ +ἀδελφός +ἤ +ἡ +ἀδελφή +ἐν +τοῖς +τοιούτοις +δέ +ἐν +εἰρήνῃ +κέκληκεν +ὑμᾶς +ὁ +Θεός +γάρ +γύναι +τί +οἶδας +εἰ +τόν +ἄνδρα +σώσεις +ἤ +ἄνερ +τί +οἶδας +εἰ +τήν +γυναῖκα +σώσεις +Εἰ +μή +ὡς +ἑκάστῳ +μεμέρικεν +ὁ +Κύριος +ὡς +ἕκαστον +κέκληκεν +ὁ +Θεός +οὕτως +περιπατείτω +καί +οὕτως +ἐν +ταῖς +ἐκκλησίαις +πάσαις +διατάσσομαι +περιτετμημένος +τις +ἐκλήθη +μή +ἐπισπάσθω +ἐν +ἀκροβυστίᾳ +κέκληται +τις +μή +περιτεμνέσθω +ἡ +περιτομή +οὐδέν +ἐστιν +καί +ἡ +ἀκροβυστία +οὐδέν +ἐστιν +ἀλλά +τήρησις +ἐντολῶν +Θεοῦ +ἕκαστος +ἐν +τῇ +κλήσει +ᾗ +ἐκλήθη +ἐν +ταύτῃ +μενέτω +δοῦλος +ἐκλήθης +μή +σοι +μελέτω +ἀλλ’ +εἰ +καί +δύνασαι +ἐλεύθερος +γενέσθαι +μᾶλλον +χρῆσαι +γάρ +ὁ +ἐν +Κυρίῳ +κληθείς +δοῦλος +ἀπελεύθερος +Κυρίου +ἐστίν +ὁμοίως +ὁ +ἐλεύθερος +κληθείς +ἐστιν +δοῦλος +Χριστοῦ +τιμῆς +ἠγοράσθητε +μή +γίνεσθε +δοῦλοι +ἀνθρώπων +ἀδελφοί +ἕκαστος +ἐν +ᾧ +ἐκλήθη +ἐν +τούτῳ +μενέτω +παρά +Θεῷ +δέ +Περί +τῶν +παρθένων +ἐπιταγήν +Κυρίου +οὐκ +ἔχω +δέ +γνώμην +δίδωμι +ὡς +ἠλεημένος +ὑπό +Κυρίου +πιστός +εἶναι +οὖν +Νομίζω +τοῦτο +καλόν +ὑπάρχειν +διά +τήν +ἐνεστῶσαν +ἀνάγκην +ὅτι +καλόν +ἀνθρώπῳ +τό +οὕτως +εἶναι +δέδεσαι +γυναικί +μή +ζήτει +λύσιν +λέλυσαι +ἀπό +γυναικός +μή +ζήτει +γυναῖκα +δέ +ἐάν +καί +γαμήσῃς +οὐχ +ἥμαρτες +καί +ἐάν +γήμῃ +ἡ +παρθένος +οὐχ +ἥμαρτεν +δέ +θλῖψιν +τῇ +σαρκί +ἕξουσιν +οἱ +τοιοῦτοι +δέ +ἐγώ +ὑμῶν +φείδομαι +δέ +ἀδελφοί +Τοῦτο +φημι +ὁ +καιρός +συνεσταλμένος +ἐστίν +τό +λοιπόν +ἵνα +καί +οἱ +ἔχοντες +γυναῖκας +ὡς +μή +ἔχοντες +ὦσιν +καί +οἱ +κλαίοντες +ὡς +μή +κλαίοντες +καί +οἱ +χαίροντες +ὡς +μή +χαίροντες +καί +οἱ +ἀγοράζοντες +ὡς +μή +κατέχοντες +καί +οἱ +χρώμενοι +τόν +κόσμον +ὡς +μή +καταχρώμενοι +γάρ +παράγει +τό +σχῆμα +τοῦ +κόσμου +τούτου +δέ +θέλω +ὑμᾶς +ἀμερίμνους +εἶναι +ὁ +ἄγαμος +μεριμνᾷ +τά +τοῦ +Κυρίου +πῶς +ἀρέσῃ +τῷ +Κυρίῳ +δέ +ὁ +γαμήσας +μεριμνᾷ +τά +τοῦ +κόσμου +πῶς +ἀρέσῃ +τῇ +γυναικί +καί +μεμέρισται +καί +ἡ +γυνή +ἡ +ἄγαμος +καί +ἡ +παρθένος +μεριμνᾷ +τά +τοῦ +Κυρίου +ἵνα +ᾖ +ἁγία +καί +τῷ +σώματι +καί +τῷ +πνεύματι +δέ +ἡ +γαμήσασα +μεριμνᾷ +τά +τοῦ +κόσμου +πῶς +ἀρέσῃ +τῷ +ἀνδρί +δέ +τοῦτο +πρός +τό +ὑμῶν +αὐτῶν +σύμφορον +λέγω +οὐχ +ἵνα +βρόχον +ὑμῖν +ἐπιβάλω +ἀλλά +πρός +τό +εὔσχημον +καί +εὐπάρεδρον +τῷ +Κυρίῳ +ἀπερισπάστως +δέ +Εἰ +τις +ἀσχημονεῖν +ἐπί +τήν +παρθένον +αὐτοῦ +νομίζει +ἐάν +ᾖ +ὑπέρακμος +καί +οὕτως +ὀφείλει +γίνεσθαι +ὅ +θέλει +ποιείτω +οὐχ +ἁμαρτάνει +γαμείτωσαν +δέ +ὅς +ἕστηκεν +ἐν +τῇ +καρδίᾳ +αὐτοῦ +ἑδραῖος +μή +ἔχων +ἀνάγκην +δέ +ἐξουσίαν +ἔχει +περί +τοῦ +ἰδίου +θελήματος +καί +τοῦτο +κέκρικεν +ἐν +τῇ +ἰδίᾳ +καρδίᾳ +τηρεῖν +τήν +ἑαυτοῦ +παρθένον +καλῶς +ποιήσει +ὥστε +καί +ὁ +γαμίζων +τήν +ἑαυτοῦ +παρθένον +καλῶς +ποιεῖ +καί +ὁ +μή +γαμίζων +κρεῖσσον +ποιήσει +Γυνή +δέδεται +ἐφ’ +ὅσον +χρόνον +ζῇ +ὁ +ἀνήρ +αὐτῆς +δέ +ἐάν +κοιμηθῇ +ὁ +ἀνήρ +ἐλευθέρα +ἐστίν +ᾧ +θέλει +γαμηθῆναι +μόνον +ἐν +Κυρίῳ +δέ +μακαριωτέρα +ἐστιν +ἐάν +οὕτως +μείνῃ +κατά +τήν +ἐμήν +γνώμην +δέ +δοκῶ +κἀγώ +Πνεῦμα +Θεοῦ +ἔχειν +δέ +Περί +τῶν +εἰδωλοθύτων +οἴδαμεν +ὅτι +πάντες +γνῶσιν +ἔχομεν +ἡ +γνῶσις +φυσιοῖ +δέ +ἡ +ἀγάπη +οἰκοδομεῖ +εἴ +τις +δοκεῖ +ἐγνωκέναι +τι +οὔπω +ἔγνω +καθώς +δεῖ +γνῶναι +δέ +εἰ +τις +ἀγαπᾷ +τόν +Θεόν +οὗτος +ἔγνωσται +ὑπ’ +αὐτοῦ +οὖν +Περί +τῆς +βρώσεως +τῶν +εἰδωλοθύτων +οἴδαμεν +ὅτι +οὐδέν +εἴδωλον +ἐν +κόσμῳ +καί +ὅτι +οὐδείς +Θεός +εἰ +μή +εἷς +γάρ +εἴπερ +καί +εἰσίν +λεγόμενοι +θεοί +εἴτε +ἐν +οὐρανῷ +εἴτε +ἐπί +γῆς +ὥσπερ +εἰσίν +θεοί +πολλοί +καί +κύριοι +πολλοί +ἀλλ’ +ἡμῖν +εἷς +Θεός +ὁ +Πατήρ +ἐξ +οὗ +τά +πάντα +καί +ἡμεῖς +εἰς +αὐτόν +καί +εἷς +Κύριος +Ἰησοῦς +Χριστός +δι’ +οὗ +τά +πάντα +καί +ἡμεῖς +δι’ +αὐτοῦ +ἀλλ’ +οὐκ +ἐν +πᾶσιν +ἡ +γνῶσις +δέ +τινές +τῇ +συνηθείᾳ +ἕως +ἄρτι +τοῦ +εἰδώλου +ὡς +εἰδωλόθυτον +ἐσθίουσιν +καί +ἡ +συνείδησις +αὐτῶν +ἀσθενής +οὖσα +μολύνεται +δέ +βρῶμα +ἡμᾶς +οὐ +παραστήσει +τῷ +Θεῷ +οὔτε +ἐάν +μή +φάγωμεν +ὑστερούμεθα +οὔτε +ἐάν +φάγωμεν +περισσεύομεν +δέ +βλέπετε +μή +πως +ἡ +ἐξουσία +ὑμῶν +αὕτη +πρόσκομμα +γένηται +τοῖς +ἀσθενέσιν +γάρ +ἐάν +τις +ἴδῃ +σέ +τόν +ἔχοντα +γνῶσιν +ἐν +εἰδωλίῳ +κατακείμενον +οὐχί +ἡ +συνείδησις +αὐτοῦ +ἀσθενοῦς +ὄντος +οἰκοδομηθήσεται +εἰς +τό +τά +εἰδωλόθυτα +ἐσθίειν +γάρ +ἀπόλλυται +ἐν +τῇ +σῇ +γνώσει +ὁ +ἀσθενῶν +ὁ +ἀδελφός +δι’ +ὅν +Χριστός +ἀπέθανεν +δέ +οὕτως +ἁμαρτάνοντες +εἰς +τούς +ἀδελφούς +καί +τύπτοντες +αὐτῶν +τήν +συνείδησιν +ἀσθενοῦσαν +εἰς +Χριστόν +ἁμαρτάνετε +διόπερ +εἰ +βρῶμα +σκανδαλίζει +τόν +ἀδελφόν +μου +οὐ +μή +φάγω +κρέα +εἰς +τόν +αἰῶνα +ἵνα +μή +τόν +ἀδελφόν +μου +σκανδαλίσω +Οὐκ +εἰμί +ἐλεύθερος +οὐκ +εἰμί +ἀπόστολος +οὐχί +Ἰησοῦν +τόν +Κύριον +ἡμῶν +ἑόρακα +οὐ +τό +ἔργον +μου +ὑμεῖς +ἐστε +ἐν +Κυρίῳ +εἰ +ἄλλοις +οὐκ +εἰμί +ἀπόστολος +ἀλλά +γε +ὑμῖν +εἰμι +γάρ +ἡ +σφραγίς +μου +τῆς +ἀποστολῆς +ὑμεῖς +ἐστε +ἐν +Κυρίῳ +Ἠ +ἐμή +ἀπολογία +τοῖς +ἐμέ +ἀνακρίνουσιν +ἐστιν +αὕτη +μή +οὐκ +ἔχομεν +ἐξουσίαν +φαγεῖν +καί +πεῖν +μή +οὐκ +ἔχομεν +ἐξουσίαν +ἀδελφήν +γυναῖκα +περιάγειν +ὡς +καί +οἱ +λοιποί +ἀπόστολοι +καί +οἱ +ἀδελφοί +τοῦ +Κυρίου +καί +Κηφᾶς +ἤ +μόνος +ἐγώ +καί +Βαρνάβας +οὐκ +ἔχομεν +ἐξουσίαν +μή +ἐργάζεσθαι +τίς +στρατεύεται +ἰδίοις +ὀψωνίοις +ποτέ +τίς +φυτεύει +ἀμπελῶνα +καί +τόν +καρπόν +αὐτοῦ +οὐκ +ἐσθίει +ἤ +τίς +ποιμαίνει +ποίμνην +καί +ἐκ +τοῦ +γάλακτος +τῆς +ποίμνης +οὐκ +ἐσθίει +μή +κατά +ἄνθρωπον +ταῦτα +λαλῶ +ἤ +καί +ὁ +νόμος +ταῦτα +οὐ +λέγει +γάρ +ἐν +τῷ +Μωϋσέως +νόμῳ +γέγραπται +Οὐ +κημώσεις +βοῦν +ἀλοῶντα +μή +τῶν +βοῶν +μέλει +τῷ +Θεῷ +ἤ +δι’ +ἡμᾶς +πάντως +λέγει +γάρ +δι’ +ἡμᾶς +ἐγράφη +ὅτι +ὀφείλει +ἐπ’ +ἐλπίδι +ἀροτριᾶν +ὁ +ἀροτριῶν +καί +ὁ +ἀλοῶν +ἐπ’ +ἐλπίδι +τοῦ +μετέχειν +Εἰ +ἡμεῖς +ὑμῖν +τά +πνευματικά +ἐσπείραμεν +μέγα +εἰ +ἡμεῖς +ὑμῶν +τά +σαρκικά +θερίσομεν +εἰ +ἄλλοι +τῆς +ὑμῶν +ἐξουσίας +μετέχουσιν +οὐ +μᾶλλον +ἡμεῖς +ἀλλ’ +οὐκ +ἐχρησάμεθα +τῇ +ἐξουσίᾳ +ταύτῃ +ἀλλά +πάντα +στέγομεν +ἵνα +μή +τινα +ἐνκοπήν +δῶμεν +τῷ +εὐαγγελίῳ +τοῦ +Χριστοῦ +οὐκ +οἴδατε +ὅτι +οἱ +τά +ἱερά +ἐργαζόμενοι +τά +ἐκ +τοῦ +ἱεροῦ +ἐσθίουσιν +οἱ +τῷ +θυσιαστηρίῳ +παρεδρεύοντες +τῷ +θυσιαστηρίῳ +συνμερίζονται +οὕτως +καί +ὁ +Κύριος +διέταξεν +τοῖς +τό +εὐαγγέλιον +καταγγέλλουσιν +ἐκ +τοῦ +εὐαγγελίου +ζῆν +δέ +ἐγώ +οὐ +κέχρημαι +οὐδενί +τούτων +δέ +οὐκ +ἔγραψα +ταῦτα +ἵνα +οὕτως +γένηται +ἐν +ἐμοί +γάρ +καλόν +μοι +μᾶλλον +ἀποθανεῖν +ἤ +τό +καύχημα +μου +οὐδείς +κενώσει +γάρ +ἐάν +εὐαγγελίζωμαι +οὐκ +ἔστιν +μοι +καύχημα +γάρ +ἀνάγκη +μοι +ἐπίκειται +γάρ +οὐαί +μοί +ἐστιν +ἐάν +μή +εὐαγγελίσωμαι +γάρ +εἰ +ἑκών +τοῦτο +πράσσω +μισθόν +ἔχω +δέ +εἰ +ἄκων +οἰκονομίαν +πεπίστευμαι +οὖν +τίς +ἐστιν +μού +ὁ +μισθός +ἵνα +εὐαγγελιζόμενος +ἀδάπανον +θήσω +τό +εὐαγγέλιον +εἰς +τό +μή +καταχρήσασθαι +τῇ +ἐξουσίᾳ +μου +ἐν +τῷ +εὐαγγελίῳ +γάρ +Ἐλεύθερος +ὤν +ἐκ +πάντων +πᾶσιν +ἐμαυτόν +ἐδούλωσα +ἵνα +τούς +πλείονας +κερδήσω +καί +ἐγενόμην +τοῖς +Ἰουδαίοις +ὡς +Ἰουδαῖος +ἵνα +Ἰουδαίους +κερδήσω +τοῖς +ὑπό +νόμον +ὡς +ὑπό +νόμον +μή +ὤν +αὐτός +ὑπό +νόμον +ἵνα +τούς +ὑπό +νόμον +κερδήσω +τοῖς +ἀνόμοις +ὡς +ἄνομος +μή +ὤν +ἄνομος +Θεοῦ +ἀλλ’ +ἔννομος +Χριστοῦ +ἵνα +κερδάνω +τούς +ἀνόμους +ἐγενόμην +τοῖς +ἀσθενέσιν +ἀσθενής +ἵνα +τούς +ἀσθενεῖς +κερδήσω +τοῖς +πᾶσιν +γέγονα +πάντα +ἵνα +πάντως +τινάς +σώσω +δέ +πάντα +ποιῶ +διά +τό +εὐαγγέλιον +ἵνα +συνκοινωνός +αὐτοῦ +γένωμαι +Οὐκ +οἴδατε +ὅτι +οἱ +ἐν +σταδίῳ +τρέχοντες +μέν +πάντες +τρέχουσιν +δέ +εἷς +λαμβάνει +τό +βραβεῖον +οὕτως +τρέχετε +ἵνα +καταλάβητε +δέ +πᾶς +ὁ +ἀγωνιζόμενος +πάντα +ἐγκρατεύεται +οὖν +μέν +ἐκεῖνοι +ἵνα +φθαρτόν +στέφανον +λάβωσιν +δέ +ἡμεῖς +ἄφθαρτον +τοίνυν +ἐγώ +οὕτως +τρέχω +ὡς +οὐκ +ἀδήλως +οὕτως +πυκτεύω +ὡς +οὐκ +ἀέρα +δέρων +ἀλλά +ὑπωπιάζω +μου +τό +σῶμα +καί +δουλαγωγῶ +μή +πως +ἄλλοις +κηρύξας +αὐτός +ἀδόκιμος +γένωμαι +γάρ +ἀδελφοί +Οὐ +θέλω +ὑμᾶς +ἀγνοεῖν +ὅτι +οἱ +πατέρες +ἡμῶν +πάντες +ὑπό +τήν +νεφέλην +ἦσαν +καί +πάντες +διά +τῆς +θαλάσσης +διῆλθον +καί +πάντες +εἰς +τόν +Μωϋσῆν +ἐβαπτίσαντο +ἐν +τῇ +νεφέλῃ +καί +ἐν +τῇ +θαλάσσῃ +καί +πάντες +τό +αὐτό +πνευματικόν +βρῶμα +ἔφαγον +καί +πάντες +τό +αὐτό +πνευματικόν +πόμα +ἔπιον +γάρ +ἔπινον +ἐκ +πνευματικῆς +ἀκολουθούσης +πέτρας +δέ +ἡ +πέτρα +ἦν +ὁ +Χριστός +ἀλλ’ +οὐκ +ἐν +τοῖς +πλείοσιν +αὐτῶν +εὐδόκησεν +ὁ +Θεός +γάρ +κατεστρώθησαν +ἐν +τῇ +ἐρήμῳ +δέ +Ταῦτα +τύποι +ἡμῶν +ἐγενήθησαν +εἰς +τό +μή +εἶναι +ἡμᾶς +ἐπιθυμητάς +κακῶν +καθώς +κἀκεῖνοι +ἐπεθύμησαν +μηδέ +εἰδωλολάτραι +γίνεσθε +καθώς +τινες +αὐτῶν +ὥσπερ +γέγραπται +Ἐκάθισεν +ὁ +λαός +φαγεῖν +καί +πεῖν +καί +ἀνέστησαν +παίζειν +μηδέ +πορνεύωμεν +καθώς +τινες +αὐτῶν +ἐπόρνευσαν +καί +ἔπεσαν +μιᾷ +ἡμέρᾳ +εἰκοσιτρεῖς +χιλιάδες +μηδέ +ἐκπειράζωμεν +τόν +Κύριον +καθώς +τινες +αὐτῶν +ἐπείρασαν +καί +ὑπό +τῶν +ὄφεων +ἀπώλλυντο +μηδέ +γογγύζετε +καθάπερ +τινές +αὐτῶν +ἐγόγγυσαν +καί +ἀπώλοντο +ὑπό +τοῦ +ὀλοθρευτοῦ +δέ +ταῦτα +τυπικῶς +συνέβαινεν +ἐκείνοις +δέ +ἐγράφη +πρός +νουθεσίαν +ἡμῶν +εἰς +οὕς +τά +τέλη +τῶν +αἰώνων +κατήντηκεν +Ὥστε +ὁ +δοκῶν +ἑστάναι +βλεπέτω +μή +πέσῃ +πειρασμός +ὑμᾶς +οὐκ +εἴληφεν +εἰ +μή +ἀνθρώπινος +δέ +πιστός +ὁ +Θεός +ὅς +οὐκ +ἐάσει +ὑμᾶς +πειρασθῆναι +ὑπέρ +ὅ +δύνασθε +ἀλλά +ποιήσει +σύν +τῷ +πειρασμῷ +καί +τήν +ἔκβασιν +τοῦ +δύνασθαι +ὑπενεγκεῖν +Διόπερ +ἀγαπητοί +μου +φεύγετε +ἀπό +τῆς +εἰδωλολατρείας +ὡς +φρονίμοις +λέγω +κρίνατε +ὑμεῖς +ὅ +φημι +Τό +ποτήριον +τῆς +εὐλογίας +ὅ +εὐλογοῦμεν +οὐχί +ἐστίν +κοινωνία +τοῦ +αἵματος +τοῦ +Χριστοῦ +τόν +ἄρτον +ὅν +κλῶμεν +οὐχί +κοινωνία +τοῦ +σώματος +τοῦ +Χριστοῦ +ἐστιν +ὅτι +εἷς +ἄρτος +ἕν +σῶμα +οἱ +πολλοί +ἐσμεν +γάρ +οἱ +πάντες +ἐκ +τοῦ +ἑνός +ἄρτου +μετέχομεν +βλέπετε +τόν +Ἰσραήλ +κατά +σάρκα +οὐχ +οἱ +ἐσθίοντες +τάς +θυσίας +κοινωνοί +τοῦ +θυσιαστηρίου +εἰσίν +οὖν +τί +φημι +ὅτι +εἰδωλόθυτον +τί +ἐστιν +ἤ +ὅτι +εἴδωλον +τί +ἐστιν +ἀλλ’ +ὅτι +ἅ +θύουσιν +δαιμονίοις +καί +οὐ +Θεῷ +θύουσιν +δέ +οὐ +θέλω +ὑμᾶς +κοινωνούς +τῶν +δαιμονίων +γίνεσθαι +οὐ +δύνασθε +ποτήριον +Κυρίου +πίνειν +καί +ποτήριον +δαιμονίων +οὐ +δύνασθε +τραπέζης +Κυρίου +μετέχειν +καί +τραπέζης +δαιμονίων +ἤ +παραζηλοῦμεν +τόν +Κύριον +μή +ἰσχυρότεροι +αὐτοῦ +ἐσμεν +Πάντα +ἔξεστιν +ἀλλ’ +οὐ +πάντα +συμφέρει +πάντα +ἔξεστιν +ἀλλ’ +οὐ +πάντα +οἰκοδομεῖ +μηδείς +τό +ἑαυτοῦ +ζητείτω +ἀλλά +τό +τοῦ +ἑτέρου +Πᾶν +τό +ἐν +μακέλλῳ +πωλούμενον +ἐσθίετε +μηδέν +ἀνακρίνοντες +διά +τήν +συνείδησιν +γάρ +τοῦ +Κυρίου +ἡ +γῆ +καί +τό +πλήρωμα +αὐτῆς +εἴ +τις +τῶν +ἀπίστων +καλεῖ +ὑμᾶς +καί +θέλετε +πορεύεσθαι +πᾶν +τό +παρατιθέμενον +ὑμῖν +ἐσθίετε +μηδέν +ἀνακρίνοντες +διά +τήν +συνείδησιν +δέ +ἐάν +τις +ὑμῖν +εἴπῃ +Τοῦτο +ἱερόθυτον +ἐστιν +μή +ἐσθίετε +δι’ +ἐκεῖνον +τόν +μηνύσαντα +καί +τήν +συνείδησιν +δέ +λέγω +συνείδησιν +οὐχί +τήν +ἑαυτοῦ +ἀλλά +τήν +τοῦ +ἑτέρου +γάρ +ἵνα +τί +ἡ +ἐλευθερία +μου +κρίνεται +ὑπό +ἄλλης +συνειδήσεως +εἰ +ἐγώ +χάριτι +μετέχω +τί +βλασφημοῦμαι +ὑπέρ +οὗ +ἐγώ +εὐχαριστῶ +οὖν +Εἴτε +ἐσθίετε +εἴτε +πίνετε +εἴτε +τι +ποιεῖτε +πάντα +εἰς +δόξαν +Θεοῦ +ποιεῖτε +ἀπρόσκοποι +γίνεσθε +καί +Ἰουδαίοις +καί +Ἕλλησιν +καί +τῇ +ἐκκλησίᾳ +τοῦ +Θεοῦ +καθώς +κἀγώ +πάντα +πᾶσιν +ἀρέσκω +ζητῶν +μή +τό +ἐμαυτοῦ +σύμφορον +ἀλλά +τό +τῶν +πολλῶν +ἵνα +σωθῶσιν +μιμηταί +μου +γίνεσθε +καθώς +κἀγώ +Χριστοῦ +δέ +Ἐπαινῶ +ὑμᾶς +ὅτι +πάντα +μου +μέμνησθε +καί +καθώς +παρέδωκα +ὑμῖν +τάς +παραδόσεις +κατέχετε +δέ +Θέλω +ὑμᾶς +εἰδέναι +ὅτι +παντός +ἀνδρός +ἡ +κεφαλή +ὁ +Χριστός +ἐστιν +δέ +κεφαλή +γυναικός +ὁ +ἀνήρ +δέ +κεφαλή +τοῦ +Χριστοῦ +ὁ +Θεός +πᾶς +ἀνήρ +προσευχόμενος +ἤ +προφητεύων +κατά +κεφαλῆς +ἔχων +καταισχύνει +τήν +κεφαλήν +αὐτοῦ +δέ +πᾶσα +γυνή +προσευχομένη +ἤ +προφητεύουσα +ἀκατακαλύπτῳ +τῇ +κεφαλῇ +καταισχύνει +τήν +κεφαλήν +αὐτῆς +γάρ +ἐστιν +ἕν +καί +τό +αὐτό +τῇ +ἐξυρημένῃ +γάρ +εἰ +οὐ +κατακαλύπτεται +γυνή +καί +κειράσθω +δέ +εἰ +αἰσχρόν +γυναικί +τό +κείρασθαι +ἤ +ξυρᾶσθαι +κατακαλυπτέσθω +γάρ +μέν +ἀνήρ +οὐκ +ὀφείλει +κατακαλύπτεσθαι +τήν +κεφαλήν +εἰκών +καί +δόξα +Θεοῦ +ὑπάρχων +δέ +ἡ +γυνή +δόξα +ἀνδρός +ἐστιν +γάρ +οὐ +ἐστιν +ἀνήρ +ἐκ +γυναικός +ἀλλά +γυνή +ἐξ +ἀνδρός +γάρ +καί +οὐκ +ἐκτίσθη +ἀνήρ +διά +τήν +γυναῖκα +ἀλλά +γυνή +διά +τόν +ἄνδρα +διά +τοῦτο +ὀφείλει +ἡ +γυνή +ἐξουσίαν +ἔχειν +ἐπί +τῆς +κεφαλῆς +διά +τούς +ἀγγέλους +πλήν +οὔτε +γυνή +χωρίς +ἀνδρός +οὔτε +ἀνήρ +χωρίς +γυναικός +ἐν +Κυρίῳ +γάρ +ὥσπερ +ἡ +γυνή +ἐκ +τοῦ +ἀνδρός +οὕτως +καί +ὁ +ἀνήρ +διά +τῆς +γυναικός +δέ +τά +πάντα +ἐκ +τοῦ +Θεοῦ +ἐν +ὑμῖν +αὐτοῖς +κρίνατε +πρέπον +ἐστίν +γυναῖκα +ἀκατακάλυπτον +τῷ +Θεῷ +προσεύχεσθαι +οὐδέ +ἡ +φύσις +αὐτή +διδάσκει +ὑμᾶς +ὅτι +μέν +ἐάν +ἀνήρ +κομᾷ +ἀτιμία +αὐτῷ +ἐστιν +δέ +ἐάν +γυνή +κομᾷ +δόξα +αὐτῇ +ἐστιν +ὅτι +ἡ +κόμη +ἀντί +περιβολαίου +δέδοται +αὐτῇ +δέ +Εἰ +τις +δοκεῖ +φιλόνεικος +εἶναι +ἡμεῖς +τοιαύτην +συνήθειαν +οὐκ +ἔχομεν +οὐδέ +αἱ +ἐκκλησίαι +τοῦ +Θεοῦ +δέ +Τοῦτο +παραγγέλλων +οὐκ +ἐπαινῶ +ὅτι +οὐκ +εἰς +τό +κρεῖσσον +ἀλλά +εἰς +τό +ἧσσον +συνέρχεσθε +γάρ +μέν +πρῶτον +συνερχομένων +ὑμῶν +ἐν +ἐκκλησίᾳ +ἀκούω +σχίσματα +ἐν +ὑμῖν +ὑπάρχειν +καί +μέρος +τι +πιστεύω +γάρ +δεῖ +καί +αἱρέσεις +ἐν +ὑμῖν +εἶναι +ἵνα +καί +οἱ +δόκιμοι +φανεροί +γένωνται +ἐν +ὑμῖν +οὖν +Συνερχομένων +ὑμῶν +ἐπί +τό +αὐτό +οὐκ +ἔστιν +κυριακόν +δεῖπνον +φαγεῖν +γάρ +ἕκαστος +τό +ἴδιον +δεῖπνον +προλαμβάνει +ἐν +τῷ +φαγεῖν +καί +μέν +ὅς +πεινᾷ +δέ +ὅς +μεθύει +γάρ +μή +οἰκίας +οὐκ +ἔχετε +εἰς +τό +ἐσθίειν +καί +πίνειν +ἤ +τῆς +ἐκκλησίας +τοῦ +Θεοῦ +καταφρονεῖτε +καί +καταισχύνετε +τούς +μή +ἔχοντας +τί +εἴπω +ὑμῖν +ἐπαινέσω +ὑμᾶς +ἐν +τούτῳ +οὐκ +ἐπαινῶ +γάρ +ἐγώ +παρέλαβον +ἀπό +τοῦ +Κυρίου +ὅ +καί +παρέδωκα +ὑμῖν +ὅτι +ὁ +Κύριος +Ἰησοῦς +ἐν +τῇ +νυκτί +ᾗ +παρεδίδετο +ἔλαβεν +ἄρτον +καί +εὐχαριστήσας +ἔκλασεν +καί +εἶπεν +Τοῦτο +ἐστιν +μού +τό +σῶμα +τό +ὑπέρ +ὑμῶν +τοῦτο +ποιεῖτε +εἰς +τήν +ἐμήν +ἀνάμνησιν +ὡσαύτως +καί +τό +ποτήριον +μετά +τό +δειπνῆσαι +λέγων +Τοῦτο +τό +ποτήριον +ἡ +καινή +διαθήκη +ἐστίν +ἐν +τῷ +ἐμῷ +αἵματι +τοῦτο +ποιεῖτε +ὁσάκις +ἐάν +πίνητε +εἰς +τήν +ἐμήν +ἀνάμνησιν +γάρ +ὁσάκις +ἐάν +ἐσθίητε +τόν +ἄρτον +τοῦτον +καί +τό +ποτήριον +πίνητε +τόν +θάνατον +τοῦ +Κυρίου +καταγγέλλετε +ἄχρι +οὗ +ἔλθῃ +ὥστε +ἄν +ὅς +ἐσθίῃ +τόν +ἄρτον +ἤ +πίνῃ +τό +ποτήριον +τοῦ +Κυρίου +ἀναξίως +ἔνοχος +ἔσται +τοῦ +σώματος +καί +τοῦ +αἵματος +τοῦ +Κυρίου +δέ +δοκιμαζέτω +ἄνθρωπος +ἑαυτόν +καί +οὕτως +ἐκ +τοῦ +ἄρτου +ἐσθιέτω +καί +ἐκ +τοῦ +ποτηρίου +πινέτω +γάρ +ὁ +ἐσθίων +καί +πίνων +κρίμα +ἑαυτῷ +ἐσθίει +καί +πίνει +μή +διακρίνων +τό +σῶμα +διά +τοῦτο +ἐν +ὑμῖν +πολλοί +ἀσθενεῖς +καί +ἄρρωστοι +καί +κοιμῶνται +ἱκανοί +δέ +εἰ +ἑαυτούς +διεκρίνομεν +ἄν +οὐκ +ἐκρινόμεθα +δέ +κρινόμενοι +ὑπό +τοῦ +Κυρίου +παιδευόμεθα +ἵνα +μή +σύν +τῷ +κόσμῳ +κατακριθῶμεν +ὥστε +ἀδελφοί +μου +συνερχόμενοι +εἰς +τό +φαγεῖν +ἀλλήλους +ἐκδέχεσθε +εἴ +τις +πεινᾷ +ἐν +οἴκῳ +ἐσθιέτω +ἵνα +μή +εἰς +κρίμα +συνέρχησθε +δέ +Τά +λοιπά +ὡς +ἄν +ἔλθω +διατάξομαι +δέ +ἀδελφοί +Περί +τῶν +πνευματικῶν +οὐ +θέλω +ὑμᾶς +ἀγνοεῖν +Οἴδατε +ὅτι +ὅτε +ἔθνη +ἦτε +πρός +τά +εἴδωλα +τά +ἄφωνα +ὡς +ἄν +ἤγεσθε +ἀπαγόμενοι +διό +γνωρίζω +ὑμῖν +ὅτι +οὐδείς +ἐν +Πνεύματι +Θεοῦ +λαλῶν +λέγει +ΑΝΑΘΕΜΑ +ΙΗΣΟΥΣ +καί +οὐδείς +δύναται +εἰπεῖν +ΚΥΡΙΟΣ +ΙΗΣΟΥΣ +εἰ +μή +ἐν +Πνεύματι +Ἁγίῳ +δέ +Διαιρέσεις +χαρισμάτων +εἰσίν +δέ +τό +αὐτό +Πνεῦμα +καί +διαιρέσεις +διακονιῶν +εἰσιν +καί +ὁ +αὐτός +Κύριος +καί +διαιρέσεις +ἐνεργημάτων +εἰσίν +δέ +ὁ +αὐτός +Θεός +ὁ +ἐνεργῶν +τά +πάντα +ἐν +πᾶσιν +δέ +ἑκάστῳ +δίδοται +ἡ +φανέρωσις +τοῦ +Πνεύματος +πρός +τό +συμφέρον +γάρ +μέν +ᾧ +διά +τοῦ +Πνεύματος +δίδοται +λόγος +σοφίας +δέ +ἄλλῳ +λόγος +γνώσεως +κατά +τό +αὐτό +Πνεῦμα +ἑτέρῳ +πίστις +ἐν +τῷ +αὐτῷ +Πνεύματι +δέ +ἄλλῳ +χαρίσματα +ἰαμάτων +ἐν +τῷ +ἑνί +Πνεύματι +δέ +ἄλλῳ +ἐνεργήματα +δυνάμεων +δέ +ἄλλῳ +προφητεία +δέ +ἄλλῳ +διακρίσεις +πνευμάτων +ἑτέρῳ +γένη +γλωσσῶν +δέ +ἄλλῳ +ἑρμηνεία +γλωσσῶν +δέ +πάντα +ταῦτα +ἐνεργεῖ +τό +ἕν +καί +τό +αὐτό +Πνεῦμα +διαιροῦν +ἰδίᾳ +ἑκάστῳ +καθώς +βούλεται +γάρ +Καθάπερ +τό +σῶμα +ἕν +ἐστιν +καί +μέλη +πολλά +ἔχει +δέ +πάντα +τά +μέλη +τοῦ +σώματος +πολλά +ὄντα +ἕν +σῶμα +ἐστιν +οὕτως +καί +ὁ +Χριστός +γάρ +καί +ἐν +ἑνί +Πνεύματι +ἡμεῖς +πάντες +εἰς +ἕν +σῶμα +ἐβαπτίσθημεν +εἴτε +Ἰουδαῖοι +εἴτε +Ἕλληνες +εἴτε +δοῦλοι +εἴτε +ἐλεύθεροι +καί +πάντες +ἕν +Πνεῦμα +ἐποτίσθημεν +γάρ +καί +τό +σῶμα +ἔστιν +οὐκ +ἕν +μέλος +ἀλλά +πολλά +ἐάν +εἴπῃ +ὁ +πούς +Ὅτι +οὐκ +εἰμί +χείρ +οὐκ +εἰμί +ἐκ +τοῦ +σώματος +οὐ +παρά +τοῦτο +οὐκ +ἔστιν +ἐκ +τοῦ +σώματος +καί +ἐάν +εἴπῃ +τό +οὖς +Ὅτι +οὐκ +εἰμί +ὀφθαλμός +οὐκ +εἰμί +ἐκ +τοῦ +σώματος +οὐ +παρά +τοῦτο +οὐκ +ἔστιν +ἐκ +τοῦ +σώματος +εἰ +ὅλον +τό +σῶμα +ὀφθαλμός +ποῦ +ἡ +ἀκοή +εἰ +ὅλον +ἀκοή +ποῦ +ἡ +ὄσφρησις +δέ +νῦν +ὁ +Θεός +ἔθετο +τά +μέλη +ἕν +ἕκαστον +αὐτῶν +ἐν +τῷ +σώματι +καθώς +ἠθέλησεν +δέ +εἰ +ἦν +τά +πάντα +ἕν +μέλος +ποῦ +τό +σῶμα +δέ +μέν +νῦν +πολλά +μέλη +δέ +ἕν +σῶμα +δέ +οὐ +δύναται +ὁ +ὀφθαλμός +εἰπεῖν +τῇ +χειρί +Χρείαν +σου +οὐκ +ἔχω +ἤ +πάλιν +ἡ +κεφαλή +τοῖς +ποσίν +Χρείαν +ὑμῶν +οὐκ +ἔχω +ἀλλά +πολλῷ +μᾶλλον +τά +δοκοῦντα +ἀσθενέστερα +ὑπάρχειν +μέλη +τοῦ +σώματος +ἀναγκαῖα +ἐστιν +καί +ἅ +εἶναι +ἀτιμότερα +τοῦ +σώματος +δοκοῦμεν +τούτοις +τιμήν +περισσοτέραν +περιτίθεμεν +καί +τά +ἀσχήμονα +ἡμῶν +εὐσχημοσύνην +περισσοτέραν +ἔχει +δέ +τά +εὐσχήμονα +ἡμῶν +οὐ +χρείαν +ἔχει +ἀλλά +ὁ +θεός +συνεκέρασεν +τό +σῶμα +τῷ +ὑστερουμένῳ +δούς +περισσοτέραν +τιμήν +ἵνα +μή +ᾖ +σχίσμα +ἐν +τῷ +σώματι +ἀλλά +τό +αὐτό +ὑπέρ +ἀλλήλων +μεριμνῶσιν +τά +μέλη +καί +εἴτε +πάσχει +ἕν +μέλος +συνπάσχει +πάντα +τά +μέλη +εἴτε +δοξάζεται +μέλος +συνχαίρει +πάντα +τά +μέλη +δέ +ὑμεῖς +ἐστε +σῶμα +Χριστοῦ +καί +μέλη +ἐκ +μέρους +Καί +μέν +οὕς +ἔθετο +ὁ +Θεός +ἐν +τῇ +ἐκκλησίᾳ +πρῶτον +ἀποστόλους +δεύτερον +προφήτας +τρίτον +διδασκάλους +ἔπειτα +δυνάμεις +ἔπειτα +χαρίσματα +ἰαμάτων +ἀντιλήμψεις +κυβερνήσεις +γένη +γλωσσῶν +μή +πάντες +ἀπόστολοι +μή +πάντες +προφῆται +μή +πάντες +διδάσκαλοι +μή +πάντες +δυνάμεις +μή +πάντες +ἔχουσιν +χαρίσματα +ἰαμάτων +μή +πάντες +γλώσσαις +λαλοῦσιν +μή +πάντες +διερμηνεύουσιν +δέ +ζηλοῦτε +τά +χαρίσματα +τά +μείζονα +Καί +ἔτι +καθ’ +ὑπερβολήν +ὁδόν +ὑμῖν +δείκνυμι +Ἐάν +ταῖς +γλώσσαις +τῶν +ἀνθρώπων +καί +τῶν +ἀγγέλων +λαλῶ +δέ +ἀγάπην +μή +ἔχω +γέγονα +χαλκός +ἠχῶν +ἤ +κύμβαλον +ἀλαλάζον +καί +ἐάν +ἔχω +προφητείαν +καί +εἰδῶ +τά +μυστήρια +πάντα +καί +πᾶσαν +τήν +γνῶσιν +καί +ἐάν +ἔχω +πᾶσαν +τήν +πίστιν +ὥστε +ὄρη +μεθιστάναι +δέ +ἀγάπην +μή +ἔχω +οὐθέν +εἰμι +καί +ἐάν +ψωμίσω +πάντα +τά +ὑπάρχοντα +μου +καί +ἐάν +παραδῶ +τό +σῶμα +μου +ἵνα +καυθήσομαι +δέ +ἀγάπην +μή +ἔχω +οὐδέν +ὠφελοῦμαι +Ἠ +ἀγάπη +μακροθυμεῖ +χρηστεύεται +ἡ +ἀγάπη +οὐ +ζηλοῖ +ἡ +ἀγάπη +οὐ +περπερεύεται +οὐ +φυσιοῦται +οὐκ +ἀσχημονεῖ +οὐ +ζητεῖ +τά +ἑαυτῆς +οὐ +παροξύνεται +οὐ +λογίζεται +τό +κακόν +οὐ +χαίρει +ἐπί +τῇ +ἀδικίᾳ +δέ +συνχαίρει +τῇ +ἀληθείᾳ +πάντα +στέγει +πάντα +πιστεύει +πάντα +ἐλπίζει +πάντα +ὑπομένει +Ἠ +ἀγάπη +οὐδέποτε +πίπτει +δέ +εἴτε +προφητεῖαι +καταργηθήσονται +εἴτε +γλῶσσαι +παύσονται +εἴτε +γνῶσις +καταργηθήσεται +γάρ +ἐκ +μέρους +γινώσκομεν +καί +ἐκ +μέρους +προφητεύομεν +δέ +ὅταν +ἔλθῃ +τό +τέλειον +τό +ἐκ +μέρους +καταργηθήσεται +ὅτε +ἤμην +νήπιος +ἐλάλουν +ὡς +νήπιος +ἐφρόνουν +ὡς +νήπιος +ἐλογιζόμην +ὡς +νήπιος +ὅτε +γέγονα +ἀνήρ +κατήργηκα +τά +τοῦ +νηπίου +γάρ +βλέπομεν +ἄρτι +δι’ +ἐσόπτρου +ἐν +αἰνίγματι +δέ +τότε +πρόσωπον +πρός +πρόσωπον +ἄρτι +γινώσκω +ἐκ +μέρους +δέ +τότε +ἐπιγνώσομαι +καθώς +καί +ἐπεγνώσθην +δέ +νυνί +μένει +πίστις +ἐλπίς +ἀγάπη +τά +τρία +ταῦτα +δέ +μείζων +τούτων +ἡ +ἀγάπη +Διώκετε +τήν +ἀγάπην +δέ +ζηλοῦτε +τά +πνευματικά +δέ +ἵνα +μᾶλλον +προφητεύητε +γάρ +ὁ +λαλῶν +γλώσσῃ +οὐκ +ἀνθρώποις +λαλεῖ +ἀλλά +Θεῷ +γάρ +οὐδείς +ἀκούει +δέ +πνεύματι +λαλεῖ +μυστήρια +δέ +ὁ +προφητεύων +ἀνθρώποις +λαλεῖ +οἰκοδομήν +καί +παράκλησιν +καί +παραμυθίαν +ὁ +λαλῶν +γλώσσῃ +ἑαυτόν +οἰκοδομεῖ +δέ +ὁ +προφητεύων +ἐκκλησίαν +οἰκοδομεῖ +δέ +θέλω +πάντας +ὑμᾶς +λαλεῖν +γλώσσαις +δέ +ἵνα +μᾶλλον +προφητεύητε +δέ +μείζων +ὁ +προφητεύων +ἤ +ὁ +λαλῶν +γλώσσαις +εἰ +ἐκτός +μή +διερμηνεύῃ +ἵνα +ἡ +ἐκκλησία +οἰκοδομήν +λάβῃ +δέ +ἀδελφοί +ἐάν +νῦν +ἔλθω +πρός +ὑμᾶς +γλώσσαις +λαλῶν +τί +ὑμᾶς +ὠφελήσω +ἐάν +μή +ὑμῖν +λαλήσω +ἤ +ἐν +ἀποκαλύψει +ἤ +ἐν +γνώσει +ἤ +ἐν +προφητείᾳ +ἤ +διδαχῇ +ὅμως +τά +ἄψυχα +φωνήν +διδόντα +εἴτε +αὐλός +εἴτε +κιθάρα +ἐάν +διαστολήν +τοῖς +φθόγγοις +μή +δῷ +πῶς +γνωσθήσεται +τό +αὐλούμενον +ἤ +τό +κιθαριζόμενον +γάρ +ἐάν +καί +σάλπιγξ +ἄδηλον +φωνήν +δῷ +τίς +παρασκευάσεται +εἰς +πόλεμον +οὕτως +ἐάν +καί +ὑμεῖς +διά +τῆς +γλώσσης +μή +εὔσημον +λόγον +δῶτε +πῶς +γνωσθήσεται +τό +λαλούμενον +γάρ +εἰς +ἀέρα +ἔσεσθε +λαλοῦντες +εἰ +τύχοι +τοσαῦτα +γένη +φωνῶν +εἰσιν +ἐν +κόσμῳ +καί +οὐδέν +ἄφωνον +οὖν +ἐάν +μή +εἰδῶ +τήν +δύναμιν +τῆς +φωνῆς +ἔσομαι +τῷ +λαλοῦντι +βάρβαρος +καί +ὁ +λαλῶν +ἐν +ἐμοί +βάρβαρος +οὕτως +καί +ὑμεῖς +ἐπεί +ζηλωταί +πνευμάτων +ἐστε +πρός +τήν +οἰκοδομήν +τῆς +ἐκκλησίας +ζητεῖτε +ἵνα +περισσεύητε +Διό +ὁ +λαλῶν +γλώσσῃ +προσευχέσθω +ἵνα +διερμηνεύῃ +γάρ +ἐάν +προσεύχωμαι +γλώσσῃ +τό +πνεῦμα +μου +προσεύχεται +δέ +ὁ +νοῦς +μου +ἄκαρπος +ἐστιν +οὖν +τί +ἐστιν +προσεύξομαι +τῷ +πνεύματι +δέ +προσεύξομαι +καί +τῷ +νοΐ +ψαλῶ +τῷ +πνεύματι +δέ +ψαλῶ +καί +τῷ +νοΐ +ἐπεί +ἐάν +εὐλογῇς +πνεύματι +ὁ +ἀναπληρῶν +τόν +τόπον +τοῦ +ἰδιώτου +πῶς +ἐρεῖ +τό +Ἀμήν +ἐπί +τῇ +σῇ +εὐχαριστίᾳ +ἐπειδή +τί +λέγεις +οὐκ +οἶδεν +γάρ +μέν +σύ +καλῶς +εὐχαριστεῖς +ἀλλ’ +ὁ +ἕτερος +οὐκ +οἰκοδομεῖται +εὐχαριστῶ +τῷ +Θεῷ +πάντων +ὑμῶν +μᾶλλον +γλώσσαις +λαλῶ +ἀλλά +ἐν +ἐκκλησίᾳ +θέλω +πέντε +λόγους +τῷ +νοΐ +μου +λαλῆσαι +ἵνα +καί +ἄλλους +κατηχήσω +ἤ +μυρίους +λόγους +ἐν +γλώσσῃ +Ἀδελφοί +μή +παιδία +γίνεσθε +ταῖς +φρεσίν +ἀλλά +τῇ +κακίᾳ +νηπιάζετε +δέ +ταῖς +φρεσίν +τέλειοι +γίνεσθε +ἐν +τῷ +νόμῳ +γέγραπται +ὅτι +Ἐν +ἑτερογλώσσοις +καί +ἐν +χείλεσιν +ἑτέρων +λαλήσω +τῷ +λαῷ +τούτῳ +καί +οὐδ’ +οὕτως +εἰσακούσονται +μου +λέγει +Κύριος +ὥστε +αἱ +γλῶσσαι +εἰς +σημεῖον +εἰσιν +οὐ +τοῖς +πιστεύουσιν +ἀλλά +τοῖς +ἀπίστοις +δέ +ἡ +προφητεία +οὐ +τοῖς +ἀπίστοις +ἀλλά +τοῖς +πιστεύουσιν +οὖν +Ἐάν +συνέλθῃ +ἡ +ἐκκλησία +ὅλη +ἐπί +τό +αὐτό +καί +πάντες +λαλῶσιν +γλώσσαις +δέ +εἰσέλθωσιν +ἰδιῶται +ἤ +ἄπιστοι +οὐκ +ἐροῦσιν +ὅτι +μαίνεσθε +δέ +ἐάν +πάντες +προφητεύωσιν +δέ +εἰσέλθῃ +τις +ἄπιστος +ἤ +ἰδιώτης +ἐλέγχεται +ὑπό +πάντων +ἀνακρίνεται +ὑπό +πάντων +τά +κρυπτά +τῆς +καρδίας +αὐτοῦ +φανερά +γίνεται +καί +οὕτως +πεσών +ἐπί +πρόσωπον +προσκυνήσει +τῷ +Θεῷ +ἀπαγγέλλων +ὅτι +Ὄντως +ὁ +Θεός +ἐν +ὑμῖν +ἐστιν +οὖν +Τί +ἐστιν +ἀδελφοί +ὅταν +συνέρχησθε +ἕκαστος +ψαλμόν +ἔχει +διδαχήν +ἔχει +ἀποκάλυψιν +ἔχει +γλῶσσαν +ἔχει +ἑρμηνείαν +ἔχει +πάντα +πρός +οἰκοδομήν +γινέσθω +εἴτε +γλώσσῃ +τις +λαλεῖ +κατά +δύο +ἤ +τό +πλεῖστον +τρεῖς +καί +ἀνά +μέρος +καί +εἷς +διερμηνευέτω +δέ +ἐάν +μή +ᾖ +διερμηνευτής +σιγάτω +ἐν +ἐκκλησίᾳ +δέ +λαλείτω +ἑαυτῷ +καί +τῷ +Θεῷ +δέ +προφῆται +δύο +ἤ +τρεῖς +λαλείτωσαν +καί +οἱ +ἄλλοι +διακρινέτωσαν +δέ +ἐάν +ἄλλῳ +καθημένῳ +ἀποκαλυφθῇ +ὁ +πρῶτος +σιγάτω +γάρ +δύνασθε +καθ’ +ἕνα +πάντες +προφητεύειν +ἵνα +πάντες +μανθάνωσιν +καί +πάντες +παρακαλῶνται +καί +πνεύματα +προφητῶν +προφήταις +ὑποτάσσεται +γάρ +οὐ +ἐστιν +ἀκαταστασίας +ὁ +Θεός +ἀλλά +εἰρήνης +Ὡς +ἐν +πάσαις +ταῖς +ἐκκλησίαις +τῶν +ἁγίων +αἱ +γυναῖκες +ἐν +ταῖς +ἐκκλησίαις +σιγάτωσαν +γάρ +οὐ +ἐπιτρέπεται +αὐταῖς +λαλεῖν +ἀλλά +ὑποτασσέσθωσαν +καθώς +καί +ὁ +νόμος +λέγει +δέ +εἰ +τι +μαθεῖν +θέλουσιν +ἐν +οἴκῳ +τούς +ἰδίους +ἄνδρας +ἐπερωτάτωσαν +γάρ +αἰσχρόν +ἐστιν +γυναικί +λαλεῖν +ἐν +ἐκκλησίᾳ +Ἤ +ἀφ’ +ὑμῶν +ὁ +λόγος +τοῦ +Θεοῦ +ἐξῆλθεν +ἤ +εἰς +ὑμᾶς +μόνους +κατήντησεν +Εἴ +τις +δοκεῖ +εἶναι +προφήτης +ἤ +πνευματικός +ἐπιγινωσκέτω +ἅ +γράφω +ὑμῖν +ὅτι +Κυρίου +ἐντολή +ἐστίν +δέ +εἰ +τις +ἀγνοεῖ +ἀγνοεῖται +Ὥστε +ἀδελφοί +μου +ζηλοῦτε +τό +προφητεύειν +καί +τό +λαλεῖν +γλώσσαις +μή +κωλύετε +δέ +πάντα +εὐσχημόνως +καί +κατά +τάξιν +γινέσθω +δέ +ἀδελφοί +Γνωρίζω +ὑμῖν +τό +εὐαγγέλιον +ὅ +εὐηγγελισάμην +ὑμῖν +ὅ +καί +παρελάβετε +ἐν +ᾧ +καί +ἑστήκατε +δι’ +οὗ +καί +σῴζεσθε +τίνι +λόγῳ +εὐηγγελισάμην +ὑμῖν +εἰ +κατέχετε +ἐκτός +εἰ +μή +εἰκῇ +ἐπιστεύσατε +γάρ +παρέδωκα +ὑμῖν +ἐν +πρώτοις +ὅ +καί +παρέλαβον +ὅτι +Χριστός +ἀπέθανεν +ὑπέρ +τῶν +ἁμαρτιῶν +ἡμῶν +κατά +τάς +γραφάς +καί +ὅτι +ἐτάφη +καί +ὅτι +ἐγήγερται +τῇ +ἡμέρᾳ +τῇ +τρίτῃ +κατά +τάς +γραφάς +καί +ὅτι +ὤφθη +Κηφᾷ +εἶτα +τοῖς +δώδεκα +ἔπειτα +ὤφθη +ἐπάνω +πεντακοσίοις +ἀδελφοῖς +ἐφάπαξ +ἐξ +ὧν +οἱ +πλείονες +μένουσιν +ἕως +ἄρτι +δέ +τινές +ἐκοιμήθησαν +ἔπειτα +ὤφθη +Ἰακώβῳ +εἶτα +τοῖς +ἀποστόλοις +πᾶσιν +δέ +ἔσχατον +πάντων +ὤφθη +κἀμοί +ὡσπερεί +τῷ +ἐκτρώματι +γάρ +Ἐγώ +εἰμι +ὁ +ἐλάχιστος +τῶν +ἀποστόλων +ὅς +οὐκ +εἰμί +ἱκανός +καλεῖσθαι +ἀπόστολος +διότι +ἐδίωξα +τήν +ἐκκλησίαν +τοῦ +Θεοῦ +δέ +χάριτι +Θεοῦ +εἰμι +ὅ +εἰμι +καί +ἡ +χάρις +αὐτοῦ +ἡ +εἰς +ἐμέ +οὐ +κενή +ἐγενήθη +ἀλλά +περισσότερον +αὐτῶν +πάντων +ἐκοπίασα +δέ +οὐκ +ἐγώ +ἀλλά +ἡ +χάρις +τοῦ +Θεοῦ +σύν +ἐμοί +οὖν +εἴτε +ἐγώ +εἴτε +ἐκεῖνοι +οὕτως +κηρύσσομεν +καί +οὕτως +ἐπιστεύσατε +δέ +Εἰ +Χριστός +κηρύσσεται +ὅτι +ἐκ +νεκρῶν +ἐγήγερται +πῶς +λέγουσιν +ἐν +ὑμῖν +τινες +ὅτι +ἀνάστασις +νεκρῶν +οὐκ +ἔστιν +δέ +εἰ +ἀνάστασις +νεκρῶν +οὐκ +ἔστιν +οὐδέ +Χριστός +ἐγήγερται +δέ +εἰ +Χριστός +οὐκ +ἐγήγερται +ἄρα +κενόν +τό +κήρυγμα +ἡμῶν +κενή +καί +ἡ +πίστις +ὑμῶν +δέ +εὑρισκόμεθα +καί +ψευδομάρτυρες +τοῦ +Θεοῦ +ὅτι +ἐμαρτυρήσαμεν +κατά +τοῦ +Θεοῦ +ὅτι +ἤγειρεν +τόν +Χριστόν +ὅν +οὐκ +ἤγειρεν +εἴπερ +ἄρα +νεκροί +οὐκ +ἐγείρονται +γάρ +εἰ +νεκροί +οὐκ +ἐγείρονται +οὐδέ +Χριστός +ἐγήγερται +δέ +εἰ +Χριστός +οὐκ +ἐγήγερται +ματαία +ἡ +πίστις +ὑμῶν +ἔτι +ἐστέ +ἐν +ταῖς +ἁμαρτίαις +ὑμῶν +ἄρα +καί +οἱ +κοιμηθέντες +ἐν +Χριστῷ +ἀπώλοντο +εἰ +ἐν +τῇ +ζωῇ +ταύτῃ +ἐν +Χριστῷ +ἠλπικότες +ἐσμέν +μόνον +ἐλεεινότεροι +πάντων +ἀνθρώπων +ἐσμέν +δέ +Νυνί +ἐγήγερται +ἐκ +νεκρῶν +Χριστός +ἀπαρχή +τῶν +κεκοιμημένων +γάρ +ἐπειδή +δι’ +ἀνθρώπου +θάνατος +καί +δι’ +ἀνθρώπου +ἀνάστασις +νεκρῶν +γάρ +ὥσπερ +ἐν +τῷ +Ἀδάμ +πάντες +ἀποθνήσκουσιν +οὕτως +καί +ἐν +τῷ +Χριστῷ +πάντες +ζωοποιηθήσονται +δέ +Ἕκαστος +ἐν +τῷ +ἰδίῳ +τάγματι +ἀπαρχή +Χριστός +ἔπειτα +οἱ +τοῦ +Χριστοῦ +ἐν +τῇ +παρουσίᾳ +αὐτοῦ +εἶτα +τό +τέλος +ὅταν +παραδιδοῖ +τήν +βασιλείαν +τῷ +Θεῷ +καί +Πατρί +ὅταν +καταργήσῃ +πᾶσαν +ἀρχήν +καί +πᾶσαν +ἐξουσίαν +καί +δύναμιν +γάρ +δεῖ +αὐτόν +βασιλεύειν +ἄχρι +οὗ +θῇ +πάντας +τούς +ἐχθρούς +ὑπό +τούς +πόδας +αὐτοῦ +ἔσχατος +ἐχθρός +ὁ +θάνατος +καταργεῖται +γάρ +πάντα +ὑπέταξεν +ὑπό +τούς +πόδας +αὐτοῦ +δέ +ὅταν +εἴπῃ +ὅτι +πάντα +ὑποτέτακται +δῆλον +ὅτι +ἐκτός +τοῦ +ὑποτάξαντος +αὐτῷ +τά +πάντα +δέ +ὅταν +ὑποταγῇ +αὐτῷ +τά +πάντα +τότε +καί +αὐτός +ὁ +Υἱός +ὑποταγήσεται +τῷ +ὑποτάξαντι +αὐτῷ +τά +πάντα +ἵνα +ᾖ +ὁ +Θεός +πάντα +ἐν +πᾶσιν +Ἐπεί +τί +ποιήσουσιν +οἱ +βαπτιζόμενοι +ὑπέρ +τῶν +νεκρῶν +εἰ +ὅλως +νεκροί +οὐκ +ἐγείρονται +τί +καί +βαπτίζονται +ὑπέρ +αὐτῶν +τί +καί +ἡμεῖς +κινδυνεύομεν +πᾶσαν +ὥραν +ἀδελφοί +καθ’ +ἡμέραν +ἀποθνῄσκω +νή +τήν +ὑμετέραν +καύχησιν +ἥν +ἔχω +ἐν +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν +εἰ +κατά +ἄνθρωπον +ἐθηριομάχησα +ἐν +Ἐφέσῳ +τί +μοι +τό +ὄφελος +εἰ +νεκροί +οὐκ +ἐγείρονται +φάγωμεν +καί +πίωμεν +γάρ +αὔριον +ἀποθνήσκομεν +μή +πλανᾶσθε +φθείρουσιν +ἤθη +χρηστά +ὁμιλίαι +κακαί +ἐκνήψατε +δικαίως +καί +μή +ἁμαρτάνετε +γάρ +ἀγνωσίαν +Θεοῦ +τινες +ἔχουσιν +πρός +ἐντροπήν +ὑμῖν +λαλῶ +Ἀλλά +ἐρεῖ +τις +Πῶς +ἐγείρονται +οἱ +νεκροί +δέ +ποίῳ +σώματι +ἔρχονται +ἄφρων +ὅ +σύ +σπείρεις +οὐ +ζωοποιεῖται +ἐάν +μή +ἀποθάνῃ +καί +ὅ +σπείρεις +οὐ +τό +σῶμα +τό +γενησόμενον +σπείρεις +ἀλλά +γυμνόν +κόκκον +εἰ +τύχοι +σίτου +ἤ +τινος +τῶν +λοιπῶν +δέ +ὁ +Θεός +δίδωσιν +αὐτῷ +σῶμα +καθώς +ἠθέλησεν +καί +ἑκάστῳ +τῶν +σπερμάτων +ἴδιον +σῶμα +οὐ +πᾶσα +σάρξ +ἡ +αὐτή +σάρξ +ἀλλά +μέν +ἄλλη +ἀνθρώπων +δέ +ἄλλη +σάρξ +κτηνῶν +δέ +ἄλλη +σάρξ +πτηνῶν +δέ +ἄλλη +ἰχθύων +καί +σώματα +ἐπουράνια +καί +σώματα +ἐπίγεια +ἀλλά +μέν +ἑτέρα +ἡ +τῶν +ἐπουρανίων +δόξα +δέ +ἑτέρα +ἡ +τῶν +ἐπιγείων +ἄλλη +δόξα +ἡλίου +καί +ἄλλη +δόξα +σελήνης +καί +ἄλλη +δόξα +ἀστέρων +γάρ +ἀστήρ +ἀστέρος +διαφέρει +ἐν +δόξῃ +οὕτως +καί +ἡ +ἀνάστασις +τῶν +νεκρῶν +σπείρεται +ἐν +φθορᾷ +ἐγείρεται +ἐν +ἀφθαρσίᾳ +σπείρεται +ἐν +ἀτιμίᾳ +ἐγείρεται +ἐν +δόξῃ +σπείρεται +ἐν +ἀσθενείᾳ +ἐγείρεται +ἐν +δυνάμει +σπείρεται +σῶμα +ψυχικόν +ἐγείρεται +σῶμα +πνευματικόν +Εἰ +ἔστιν +σῶμα +ψυχικόν +ἔστιν +καί +πνευματικόν +οὕτως +καί +γέγραπται +Ἐγένετο +ὁ +πρῶτος +ἄνθρωπος +Ἀδάμ +εἰς +ψυχήν +ζῶσαν +ὁ +ἔσχατος +Ἀδάμ +εἰς +πνεῦμα +ζωοποιοῦν +ἀλλ’ +οὐ +πρῶτον +τό +πνευματικόν +ἀλλά +τό +ψυχικόν +ἔπειτα +τό +πνευματικόν +ὁ +πρῶτος +ἄνθρωπος +ἐκ +γῆς +χοϊκός +ὁ +δεύτερος +ἄνθρωπος +ἐξ +οὐρανοῦ +οἷος +ὁ +χοϊκός +τοιοῦτοι +καί +οἱ +χοϊκοί +καί +οἷος +ὁ +ἐπουράνιος +τοιοῦτοι +καί +οἱ +ἐπουράνιοι +καί +καθώς +ἐφορέσαμεν +τήν +εἰκόνα +τοῦ +χοϊκοῦ +φορέσωμεν +καί +τήν +εἰκόνα +τοῦ +ἐπουρανίου +δέ +Τοῦτο +φημι +ἀδελφοί +ὅτι +σάρξ +καί +αἷμα +βασιλείαν +Θεοῦ +κληρονομῆσαι +οὐ +δύναται +οὐδέ +ἡ +φθορά +τήν +ἀφθαρσίαν +κληρονομεῖ +ἰδού +μυστήριον +ὑμῖν +λέγω +πάντες +οὐ +κοιμηθησόμεθα +δέ +πάντες +ἀλλαγησόμεθα +ἐν +ἀτόμῳ +ἐν +ῥιπῇ +ὀφθαλμοῦ +ἐν +τῇ +ἐσχάτῃ +σάλπιγγι +γάρ +σαλπίσει +καί +οἱ +νεκροί +ἐγερθήσονται +ἄφθαρτοι +καί +ἡμεῖς +ἀλλαγησόμεθα +γάρ +δεῖ +τό +φθαρτόν +τοῦτο +ἐνδύσασθαι +ἀφθαρσίαν +καί +τό +θνητόν +τοῦτο +ἐνδύσασθαι +ἀθανασίαν +δέ +ὅταν +τό +φθαρτόν +τοῦτο +ἐνδύσηται +ἀφθαρσίαν +καί +τό +θνητόν +τοῦτο +ἐνδύσηται +ἀθανασίαν +τότε +γενήσεται +ὁ +λόγος +ὁ +γεγραμμένος +Κατεπόθη +ὁ +θάνατος +εἰς +νῖκος +θάνατε +ποῦ +σου +τό +νῖκος +θάνατε +ποῦ +σου +τό +κέντρον +δέ +τό +κέντρον +τοῦ +θανάτου +ἡ +ἁμαρτία +δέ +ἡ +δύναμις +τῆς +ἁμαρτίας +ὁ +νόμος +δέ +χάρις +τῷ +Θεῷ +τῷ +διδόντι +ἡμῖν +τό +νῖκος +διά +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +Ὥστε +ἀδελφοί +μου +ἀγαπητοί +γίνεσθε +ἑδραῖοι +ἀμετακίνητοι +περισσεύοντες +ἐν +τῷ +ἔργῳ +τοῦ +Κυρίου +πάντοτε +εἰδότες +ὅτι +ὁ +κόπος +ὑμῶν +οὐκ +ἔστιν +κενός +ἐν +Κυρίῳ +δέ +Περί +τῆς +λογίας +τῆς +εἰς +τούς +ἁγίους +ὥσπερ +διέταξα +ταῖς +ἐκκλησίαις +τῆς +Γαλατίας +οὕτως +καί +ὑμεῖς +ποιήσατε +κατά +μίαν +σαββάτου +ἕκαστος +ὑμῶν +παρ’ +ἑαυτῷ +τιθέτω +θησαυρίζων +τι +ἐάν +ὅ +εὐοδῶται +ἵνα +μή +ὅταν +ἔλθω +τότε +λογίαι +γίνωνται +δέ +ὅταν +παραγένωμαι +ἐάν +οὕς +δοκιμάσητε +δι’ +ἐπιστολῶν +τούτους +πέμψω +ἀπενεγκεῖν +τήν +χάριν +ὑμῶν +εἰς +Ἰερουσαλήμ +δέ +ἐάν +ἄξιον +ᾖ +τοῦ +κἀμέ +πορεύεσθαι +σύν +ἐμοί +πορεύσονται +δέ +Ἐλεύσομαι +πρός +ὑμᾶς +ὅταν +Μακεδονίαν +διέλθω +γάρ +Μακεδονίαν +διέρχομαι +δέ +πρός +ὑμᾶς +τυχόν +καταμενῶ +ἤ +καί +παραχειμάσω +ἵνα +ὑμεῖς +με +προπέμψητε +ἐάν +οὗ +πορεύωμαι +γάρ +οὐ +θέλω +ὑμᾶς +ἄρτι +ἐν +παρόδῳ +ἰδεῖν +γάρ +ἐλπίζω +χρόνον +τινά +ἐπιμεῖναι +πρός +ὑμᾶς +ἐάν +ὁ +Κύριος +ἐπιτρέψῃ +δέ +ἐπιμενῶ +ἐν +Ἐφέσῳ +ἕως +τῆς +Πεντηκοστῆς +γάρ +μοι +ἀνέῳγεν +θύρα +μεγάλη +καί +ἐνεργής +καί +ἀντικείμενοι +πολλοί +δέ +Ἐάν +ἔλθῃ +Τιμόθεος +βλέπετε +ἵνα +ἀφόβως +γένηται +πρός +ὑμᾶς +γάρ +τό +ἔργον +Κυρίου +ἐργάζεται +ὡς +κἀγώ +οὖν +μή +τις +αὐτόν +ἐξουθενήσῃ +δέ +προπέμψατε +αὐτόν +ἐν +εἰρήνῃ +ἵνα +ἔλθῃ +πρός +με +γάρ +ἐκδέχομαι +αὐτόν +μετά +τῶν +ἀδελφῶν +δέ +Περί +Ἀπολλῶ +τοῦ +ἀδελφοῦ +πολλά +παρεκάλεσα +αὐτόν +ἵνα +ἔλθῃ +πρός +ὑμᾶς +μετά +τῶν +ἀδελφῶν +καί +πάντως +οὐκ +ἦν +θέλημα +ἵνα +νῦν +ἔλθῃ +δέ +ἐλεύσεται +ὅταν +εὐκαιρήσῃ +Γρηγορεῖτε +στήκετε +ἐν +τῇ +πίστει +ἀνδρίζεσθε +κραταιοῦσθε +πάντα +ὑμῶν +ἐν +ἀγάπῃ +γινέσθω +δέ +Παρακαλῶ +ὑμᾶς +ἀδελφοί +οἴδατε +τήν +οἰκίαν +Στεφανᾶ +ὅτι +ἐστίν +ἀπαρχή +τῆς +Ἀχαΐας +καί +εἰς +διακονίαν +τοῖς +ἁγίοις +ἔταξαν +ἑαυτούς +ἵνα +καί +ὑμεῖς +ὑποτάσσησθε +τοῖς +τοιούτοις +καί +παντί +τῷ +συνεργοῦντι +καί +κοπιῶντι +δέ +χαίρω +ἐπί +τῇ +παρουσίᾳ +Στεφανᾶ +καί +Φορτουνάτου +καί +Ἀχαϊκοῦ +ὅτι +τό +ὑμέτερον +ὑστέρημα +οὗτοι +ἀνεπλήρωσαν +γάρ +ἀνέπαυσαν +τό +ἐμόν +πνεῦμα +καί +τό +ὑμῶν +οὖν +ἐπιγινώσκετε +τούς +τοιούτους +Ἀσπάζονται +ὑμᾶς +αἱ +ἐκκλησίαι +τῆς +Ἀσίας +ἀσπάζεται +ὑμᾶς +ἐν +Κυρίῳ +πολλά +Ἀκύλας +καί +Πρίσκα +σύν +τῇ +κατ’ +οἶκον +αὐτῶν +ἐκκλησίᾳ +ἀσπάζονται +ὑμᾶς +οἱ +ἀδελφοί +πάντες +Ἀσπάσασθε +ἀλλήλους +ἐν +φιλήματι +ἁγίῳ +Ὁ +ἀσπασμός +τῇ +ἐμῇ +χειρί +Παύλου +εἴ +τις +οὐ +φιλεῖ +τόν +Κύριον +ἤτω +ἀνάθεμα +μαράν +ἀθά +ἡ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +μεθ’ +ὑμῶν +ἡ +ἀγάπη +μου +μετά +πάντων +ὑμῶν +ἐν +Χριστῷ +Ἰησοῦ +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διά +θελήματος +Θεοῦ +καί +Τιμόθεος +ὁ +ἀδελφός +τῇ +ἐκκλησίᾳ +τοῦ +Θεοῦ +τῇ +οὔσῃ +ἐν +Κορίνθῳ +σύν +τοῖς +ἁγίοις +πᾶσιν +τοῖς +οὖσιν +ἐν +ὅλῃ +τῇ +Ἀχαΐᾳ +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +Εὐλογητός +ὁ +Θεός +καί +Πατήρ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὁ +Πατήρ +τῶν +οἰκτιρμῶν +καί +Θεός +πάσης +παρακλήσεως +ὁ +παρακαλῶν +ἡμᾶς +ἐπί +πάσῃ +τῇ +θλίψει +ἡμῶν +εἰς +τό +δύνασθαι +ἡμᾶς +παρακαλεῖν +τούς +ἐν +πάσῃ +θλίψει +διά +τῆς +παρακλήσεως +ἧς +παρακαλούμεθα +αὐτοί +ὑπό +τοῦ +Θεοῦ +ὅτι +καθώς +περισσεύει +τά +παθήματα +τοῦ +Χριστοῦ +εἰς +ἡμᾶς +οὕτως +διά +τοῦ +Χριστοῦ +περισσεύει +καί +ἡ +παράκλησις +ἡμῶν +δέ +εἴτε +θλιβόμεθα +ὑπέρ +τῆς +ὑμῶν +παρακλήσεως +καί +σωτηρίας +εἴτε +παρακαλούμεθα +ὑπέρ +τῆς +ὑμῶν +παρακλήσεως +τῆς +ἐνεργουμένης +ἐν +ὑπομονῇ +τῶν +αὐτῶν +παθημάτων +ὧν +καί +ἡμεῖς +πάσχομεν +καί +ἡ +ἐλπίς +ἡμῶν +βεβαία +ὑπέρ +ὑμῶν +εἰδότες +ὅτι +ὡς +ἐστε +κοινωνοί +τῶν +παθημάτων +οὕτως +καί +τῆς +παρακλήσεως +γάρ +ἀδελφοί +Οὐ +θέλομεν +ὑμᾶς +ἀγνοεῖν +ὑπέρ +τῆς +θλίψεως +ἡμῶν +τῆς +γενομένης +ἐν +τῇ +Ἀσίᾳ +ὅτι +καθ’ +ὑπερβολήν +ὑπέρ +δύναμιν +ἐβαρήθημεν +ὥστε +ἐξαπορηθῆναι +ἡμᾶς +καί +τοῦ +ζῆν +ἀλλά +αὐτοί +ἐν +ἑαυτοῖς +τό +ἀπόκριμα +τοῦ +θανάτου +ἐσχήκαμεν +ἵνα +μή +πεποιθότες +ὦμεν +ἐφ’ +ἑαυτοῖς +ἀλλ’ +ἐπί +τῷ +Θεῷ +τῷ +ἐγείροντι +τούς +νεκρούς +ὅς +ἐκ +τηλικούτου +θανάτου +ἐρρύσατο +ἡμᾶς +καί +ῥύσεται +εἰς +ὅν +ἠλπίκαμεν +ὅτι +καί +ἔτι +ῥύσεται +συνυπουργούντων +καί +ὑμῶν +ὑπέρ +ἡμῶν +τῇ +δεήσει +ἵνα +ἐκ +πολλῶν +προσώπων +τό +εἰς +ἡμᾶς +χάρισμα +διά +πολλῶν +εὐχαριστηθῇ +ὑπέρ +ἡμῶν +γάρ +Ἠ +καύχησις +ἡμῶν +αὕτη +ἐστίν +τό +μαρτύριον +τῆς +συνειδήσεως +ἡμῶν +ὅτι +ἐν +ἁγιότητι +καί +εἰλικρινίᾳ +τοῦ +Θεοῦ +οὐκ +ἐν +σοφίᾳ +σαρκικῇ +ἀλλ’ +ἐν +χάριτι +Θεοῦ +ἀνεστράφημεν +ἐν +τῷ +κόσμῳ +δέ +περισσοτέρως +πρός +ὑμᾶς +γάρ +γράφομεν +ὑμῖν +οὐ +ἄλλα +ἀλλ’ +ἤ +ἅ +ἀναγινώσκετε +ἤ +καί +ἐπιγινώσκετε +δέ +ἐλπίζω +ὅτι +ἕως +τέλους +ἐπιγνώσεσθε +καθώς +καί +ἐπέγνωτε +ἡμᾶς +ἀπό +μέρους +ὅτι +καύχημα +ὑμῶν +ἐσμεν +καθάπερ +καί +ὑμεῖς +ἡμῶν +ἐν +τῇ +ἡμέρᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Καί +ταύτῃ +τῇ +πεποιθήσει +ἐβουλόμην +πρότερον +πρός +ὑμᾶς +ἐλθεῖν +ἵνα +δευτέραν +χάριν +σχῆτε +καί +δι’ +ὑμῶν +διελθεῖν +εἰς +Μακεδονίαν +καί +πάλιν +ἀπό +Μακεδονίας +ἐλθεῖν +πρός +ὑμᾶς +καί +ὑφ’ +ὑμῶν +προπεμφθῆναι +εἰς +τήν +Ἰουδαίαν +οὖν +τοῦτο +βουλόμενος +ἄρα +μήτι +τῇ +ἐλαφρίᾳ +ἐχρησάμην +ἤ +ἅ +βουλεύομαι +κατά +σάρκα +βουλεύομαι +ἵνα +ᾖ +παρ’ +ἐμοί +τό +Ναί +ναί +καί +τό +Οὔ +οὔ +δέ +πιστός +ὁ +Θεός +ὅτι +ὁ +λόγος +ἡμῶν +ὁ +πρός +ὑμᾶς +οὐκ +ἔστιν +Ναί +καί +Οὔ +γάρ +ὁ +τοῦ +Θεοῦ +Υἱός +Χριστός +Ἰησοῦς +ὁ +ἐν +ὑμῖν +δι’ +ἡμῶν +κηρυχθείς +δι’ +ἐμοῦ +καί +Σιλουανοῦ +καί +Τιμοθέου +οὐκ +ἐγένετο +Ναί +καί +Οὔ +ἀλλά +Ναί +ἐν +αὐτῷ +γέγονεν +γάρ +ὅσαι +ἐπαγγελίαι +Θεοῦ +ἐν +αὐτῷ +τό +Ναί +διό +καί +δι’ +αὐτοῦ +τό +Ἀμήν +τῷ +Θεῷ +πρός +δόξαν +δι’ +ἡμῶν +δέ +ὁ +βεβαιῶν +ἡμᾶς +σύν +ὑμῖν +εἰς +Χριστόν +καί +χρίσας +ἡμᾶς +Θεός +ὁ +καί +σφραγισάμενος +ἡμᾶς +καί +δούς +τόν +ἀρραβῶνα +τοῦ +Πνεύματος +ἐν +ταῖς +καρδίαις +ἡμῶν +δέ +Ἐγώ +μάρτυρα +τόν +Θεόν +ἐπικαλοῦμαι +ἐπί +τήν +ἐμήν +ψυχήν +ὅτι +φειδόμενος +ὑμῶν +οὐκέτι +ἦλθον +εἰς +Κόρινθον +ὅτι +οὐχ +κυριεύομεν +ὑμῶν +τῆς +πίστεως +ἀλλά +συνεργοί +ἐσμεν +τῆς +χαρᾶς +ὑμῶν +γάρ +τῇ +πίστει +ἑστήκατε +δέ +ἔκρινα +ἐμαυτῷ +τοῦτο +τό +μή +πάλιν +ἐν +λύπῃ +πρός +ὑμᾶς +ἐλθεῖν +γάρ +εἰ +ἐγώ +λυπῶ +ὑμᾶς +καί +τίς +ὁ +εὐφραίνων +με +εἰ +μή +ὁ +λυπούμενος +ἐξ +ἐμοῦ +καί +ἔγραψα +τοῦτο +αὐτό +ἵνα +μή +ἐλθών +λύπην +σχῶ +ἀφ’ +ὧν +με +χαίρειν +ἔδει +πεποιθώς +ἐπί +πάντας +ὑμᾶς +ὅτι +ἡ +ἐμή +χαρά +πάντων +ὑμῶν +ἐστιν +γάρ +ἐκ +πολλῆς +θλίψεως +καί +συνοχῆς +καρδίας +ἔγραψα +ὑμῖν +διά +πολλῶν +δακρύων +οὐχ +ἵνα +λυπηθῆτε +ἀλλά +ἵνα +γνῶτε +τήν +ἀγάπην +ἥν +ἔχω +περισσοτέρως +εἰς +ὑμᾶς +δέ +Εἰ +τις +λελύπηκεν +οὐκ +ἐμέ +λελύπηκεν +ἀλλά +ἀπό +μέρους +πάντας +ὑμᾶς +ἵνα +μή +ἐπιβαρῶ +ἱκανόν +τῷ +τοιούτῳ +ἡ +ἐπιτιμία +αὕτη +ἡ +ὑπό +τῶν +πλειόνων +ὥστε +τοὐναντίον +μᾶλλον +ὑμᾶς +χαρίσασθαι +καί +παρακαλέσαι +μή +πως +τῇ +περισσοτέρᾳ +λύπῃ +καταποθῇ +ὁ +τοιοῦτος +διό +παρακαλῶ +ὑμᾶς +κυρῶσαι +εἰς +αὐτόν +ἀγάπην +γάρ +εἰς +τοῦτο +καί +ἔγραψα +ἵνα +γνῶ +τήν +δοκιμήν +ὑμῶν +εἰ +εἰς +πάντα +ὑπήκοοι +ἐστε +δέ +ᾧ +τι +χαρίζεσθε +κἀγώ +γάρ +καί +ἐγώ +ὅ +κεχάρισμαι +εἴ +τι +κεχάρισμαι +δι’ +ὑμᾶς +ἐν +προσώπῳ +Χριστοῦ +ἵνα +μή +πλεονεκτηθῶμεν +ὑπό +τοῦ +Σατανᾶ +γάρ +οὐ +αὐτοῦ +τά +νοήματα +ἀγνοοῦμεν +δέ +Ἐλθών +εἰς +τήν +Τρῳάδα +εἰς +τό +εὐαγγέλιον +τοῦ +Χριστοῦ +καί +θύρας +μοι +ἀνεῳγμένης +ἐν +Κυρίῳ +οὐκ +ἔσχηκα +ἄνεσιν +τῷ +πνεύματι +μου +τῷ +μή +εὑρεῖν +με +Τίτον +τόν +ἀδελφόν +μου +ἀλλά +ἀποταξάμενος +αὐτοῖς +ἐξῆλθον +εἰς +Μακεδονίαν +δέ +χάρις +Τῷ +Θεῷ +τῷ +πάντοτε +θριαμβεύοντι +ἡμᾶς +ἐν +τῷ +Χριστῷ +καί +τήν +ὀσμήν +τῆς +γνώσεως +αὐτοῦ +φανεροῦντι +δι’ +ἡμῶν +ἐν +παντί +τόπῳ +ὅτι +Χριστοῦ +εὐωδία +ἐσμέν +τῷ +Θεῷ +ἐν +τοῖς +σωζομένοις +καί +ἐν +τοῖς +ἀπολλυμένοις +μέν +οἷς +ὀσμή +ἐκ +θανάτου +εἰς +θάνατον +δέ +οἷς +ὀσμή +ἐκ +ζωῆς +εἰς +ζωήν +καί +πρός +ταῦτα +τίς +ἱκανός +γάρ +οὐ +ἐσμεν +καπηλεύοντες +τόν +λόγον +τοῦ +Θεοῦ +ὡς +οἱ +πολλοί +ἀλλ’ +ὡς +ἐξ +εἰλικρινίας +ἀλλ’ +ὡς +ἐκ +Θεοῦ +κατέναντι +Θεοῦ +ἐν +Χριστῷ +λαλοῦμεν +Ἀρχόμεθα +πάλιν +ἑαυτούς +συνιστάνειν +ἤ +μή +χρῄζομεν +ὥς +τινες +συστατικῶν +ἐπιστολῶν +πρός +ὑμᾶς +ἤ +ἐξ +ὑμῶν +ἡ +ἐπιστολή +ἡμῶν +ὑμεῖς +ἐστε +ἐνγεγραμμένη +ἐν +ταῖς +καρδίαις +ἡμῶν +γινωσκομένη +καί +ἀναγινωσκομένη +ὑπό +πάντων +ἀνθρώπων +φανερούμενοι +ὅτι +ἐστέ +ἐπιστολή +Χριστοῦ +διακονηθεῖσα +ὑφ’ +ἡμῶν +ἐνγεγραμμένη +οὐ +μέλανι +ἀλλά +Πνεύματι +Θεοῦ +ζῶντος +οὐκ +ἐν +πλαξίν +λιθίναις +ἀλλ’ +ἐν +πλαξίν +καρδίαις +σαρκίναις +δέ +Πεποίθησιν +τοιαύτην +ἔχομεν +διά +τοῦ +Χριστοῦ +πρός +τόν +Θεόν +οὐχ +ὅτι +ἀφ’ +ἑαυτῶν +ἱκανοί +ἐσμεν +λογίσασθαι +τι +ὡς +ἐξ +ἑαυτῶν +ἀλλ’ +ἡ +ἱκανότης +ἡμῶν +ἐκ +τοῦ +Θεοῦ +ὅς +καί +ἱκάνωσεν +ἡμᾶς +διακόνους +καινῆς +διαθήκης +οὐ +γράμματος +ἀλλά +πνεύματος +γάρ +τό +γράμμα +ἀποκτείνει +δέ +τό +πνεῦμα +ζωοποιεῖ +δέ +Εἰ +ἡ +διακονία +τοῦ +θανάτου +ἐν +γράμμασιν +ἐντετυπωμένη +λίθοις +ἐγενήθη +ἐν +δόξῃ +ὥστε +μή +δύνασθαι +τούς +υἱούς +Ἰσραήλ +ἀτενίσαι +εἰς +τό +πρόσωπον +Μωϋσέως +διά +τήν +δόξαν +τοῦ +προσώπου +αὐτοῦ +τήν +καταργουμένην +πῶς +οὐχί +μᾶλλον +ἡ +διακονία +τοῦ +πνεύματος +ἔσται +ἐν +δόξῃ +γάρ +εἰ +ἡ +διακονία +τῆς +κατακρίσεως +δόξα +πολλῷ +μᾶλλον +περισσεύει +ἡ +διακονία +τῆς +δικαιοσύνης +δόξῃ +γάρ +καί +οὐ +δεδόξασται +τό +δεδοξασμένον +ἐν +τούτῳ +τῷ +μέρει +εἵνεκεν +τῆς +ὑπερβαλλούσης +δόξης +γάρ +εἰ +τό +καταργούμενον +διά +δόξης +πολλῷ +μᾶλλον +τό +μένον +ἐν +δόξῃ +οὖν +Ἔχοντες +τοιαύτην +ἐλπίδα +πολλῇ +παρρησίᾳ +χρώμεθα +καί +οὐ +καθάπερ +Μωϋσῆς +ἐτίθει +κάλυμμα +ἐπί +τό +πρόσωπον +αὐτοῦ +πρός +τό +μή +ἀτενίσαι +τούς +υἱούς +Ἰσραήλ +εἰς +τό +τέλος +τοῦ +καταργουμένου +ἀλλά +ἐπωρώθη +τά +νοήματα +αὐτῶν +γάρ +ἄχρι +τῆς +σήμερον +ἡμέρας +τό +αὐτό +κάλυμμα +ἐπί +τῇ +ἀναγνώσει +τῆς +παλαιᾶς +διαθήκης +μένει +μή +ἀνακαλυπτόμενον +ὅτι +ἐν +Χριστῷ +καταργεῖται +ἀλλ’ +ἕως +σήμερον +ἄν +ἡνίκα +ἀναγινώσκηται +Μωϋσῆς +κάλυμμα +ἐπί +τήν +καρδίαν +αὐτῶν +κεῖται +δέ +ἡνίκα +ἐάν +ἐπιστρέψῃ +πρός +Κύριον +περιαιρεῖται +τό +κάλυμμα +δέ +ὁ +Κύριος +τό +Πνεῦμα +ἐστιν +δέ +οὗ +τό +Πνεῦμα +Κυρίου +ἐλευθερία +δέ +ἡμεῖς +πάντες +ἀνακεκαλυμμένῳ +προσώπῳ +τήν +δόξαν +Κυρίου +κατοπτριζόμενοι +τήν +αὐτήν +εἰκόνα +μεταμορφούμεθα +ἀπό +δόξης +εἰς +δόξαν +καθάπερ +ἀπό +Κυρίου +Πνεύματος +Διά +τοῦτο +ἔχοντες +τήν +διακονίαν +ταύτην +καθώς +ἠλεήθημεν +οὐκ +ἐγκακοῦμεν +ἀλλά +ἀπειπάμεθα +τά +κρυπτά +τῆς +αἰσχύνης +μή +περιπατοῦντες +ἐν +πανουργίᾳ +μηδέ +δολοῦντες +τόν +λόγον +τοῦ +Θεοῦ +ἀλλά +τῇ +φανερώσει +τῆς +ἀληθείας +συνιστάνοντες +ἑαυτούς +πρός +πᾶσαν +συνείδησιν +ἀνθρώπων +ἐνώπιον +τοῦ +Θεοῦ +δέ +εἰ +καί +ἔστιν +κεκαλυμμένον +τό +εὐαγγέλιον +ἡμῶν +ἐν +τοῖς +ἀπολλυμένοις +ἐστίν +κεκαλυμμένον +ἐν +οἷς +ὁ +θεός +τοῦ +αἰῶνος +τούτου +ἐτύφλωσεν +τά +νοήματα +τῶν +ἀπίστων +εἰς +τό +μή +αὐγάσαι +τόν +φωτισμόν +τοῦ +εὐαγγελίου +τῆς +δόξης +τοῦ +Χριστοῦ +ὅς +ἐστιν +εἰκών +τοῦ +Θεοῦ +γάρ +οὐ +ἑαυτούς +κηρύσσομεν +ἀλλά +Χριστόν +Ἰησοῦν +Κύριον +δέ +ἑαυτούς +δούλους +ὑμῶν +διά +Ἰησοῦν +ὅτι +ὁ +Θεός +ὁ +εἰπών +Ἐκ +σκότους +φῶς +λάμψει +ὅς +ἔλαμψεν +ἐν +ταῖς +καρδίαις +ἡμῶν +πρός +φωτισμόν +τῆς +γνώσεως +τῆς +δόξης +τοῦ +Θεοῦ +ἐν +προσώπῳ +Χριστοῦ +δέ +Ἔχομεν +τόν +θησαυρόν +τοῦτον +ἐν +ὀστρακίνοις +σκεύεσιν +ἵνα +ἡ +ὑπερβολή +τῆς +δυνάμεως +ᾖ +τοῦ +Θεοῦ +καί +μή +ἐξ +ἡμῶν +ἐν +παντί +θλιβόμενοι +ἀλλ’ +οὐ +στενοχωρούμενοι +ἀπορούμενοι +ἀλλ’ +οὐκ +ἐξαπορούμενοι +διωκόμενοι +ἀλλ’ +οὐκ +ἐγκαταλειπόμενοι +καταβαλλόμενοι +ἀλλ’ +οὐκ +ἀπολλύμενοι +πάντοτε +τήν +νέκρωσιν +τοῦ +Ἰησοῦ +ἐν +τῷ +σώματι +περιφέροντες +ἵνα +καί +ἡ +ζωή +τοῦ +Ἰησοῦ +ἐν +τῷ +σώματι +ἡμῶν +φανερωθῇ +γάρ +ἀεί +ἡμεῖς +οἱ +ζῶντες +εἰς +θάνατον +παραδιδόμεθα +διά +Ἰησοῦν +ἵνα +καί +ἡ +ζωή +τοῦ +Ἰησοῦ +φανερωθῇ +ἐν +τῇ +θνητῇ +σαρκί +ἡμῶν +ὥστε +ὁ +θάνατος +ἐν +ἡμῖν +ἐνεργεῖται +δέ +ἡ +ζωή +ἐν +ὑμῖν +δέ +ἔχοντες +τό +αὐτό +πνεῦμα +τῆς +πίστεως +κατά +τό +γεγραμμένον +Ἐπίστευσα +διό +ἐλάλησα +καί +ἡμεῖς +πιστεύομεν +διό +καί +λαλοῦμεν +εἰδότες +ὅτι +ὁ +ἐγείρας +τόν +Κύριον +Ἰησοῦν +καί +ἡμᾶς +σύν +Ἰησοῦ +ἐγερεῖ +καί +παραστήσει +σύν +ὑμῖν +γάρ +τά +πάντα +δι’ +ὑμᾶς +ἵνα +ἡ +χάρις +πλεονάσασα +διά +τῶν +πλειόνων +τήν +εὐχαριστίαν +περισσεύσῃ +εἰς +τήν +δόξαν +τοῦ +Θεοῦ +Διό +οὐκ +ἐγκακοῦμεν +ἀλλ’ +εἰ +καί +ὁ +ἔξω +ἡμῶν +ἄνθρωπος +διαφθείρεται +ἀλλ’ +ὁ +ἔσω +ἡμῶν +ἀνακαινοῦται +ἡμέρᾳ +καί +ἡμέρᾳ +γάρ +τό +παραυτίκα +ἐλαφρόν +τῆς +θλίψεως +καθ’ +ὑπερβολήν +εἰς +ὑπερβολήν +αἰώνιον +βάρος +δόξης +κατεργάζεται +ἡμῖν +μή +σκοπούντων +ἡμῶν +τά +βλεπόμενα +ἀλλά +τά +μή +βλεπόμενα +γάρ +τά +βλεπόμενα +πρόσκαιρα +δέ +τά +μή +βλεπόμενα +αἰώνια +γάρ +οἴδαμεν +ὅτι +ἐάν +ἡ +ἐπίγειος +ἡμῶν +οἰκία +τοῦ +σκήνους +καταλυθῇ +ἐκ +Θεοῦ +ἔχομεν +οἰκοδομήν +οἰκίαν +ἀχειροποίητον +αἰώνιον +ἐν +τοῖς +οὐρανοῖς +γάρ +καί +ἐν +τούτῳ +στενάζομεν +τό +οἰκητήριον +ἡμῶν +τό +ἐξ +οὐρανοῦ +ἐπενδύσασθαι +ἐπιποθοῦντες +εἴ +γε +καί +ἐνδυσάμενοι +οὐ +γυμνοί +εὑρεθησόμεθα +γάρ +καί +οἱ +ὄντες +ἐν +τῷ +σκήνει +στενάζομεν +βαρούμενοι +ἐφ’ +ᾧ +θέλομεν +οὐ +ἐκδύσασθαι +ἀλλ’ +ἐπενδύσασθαι +ἵνα +καταποθῇ +τό +θνητόν +ὑπό +τῆς +ζωῆς +δέ +ὁ +κατεργασάμενος +ἡμᾶς +εἰς +αὐτό +τοῦτο +Θεός +ὁ +δούς +ἡμῖν +τόν +ἀρραβῶνα +τοῦ +Πνεύματος +οὖν +Θαρροῦντες +πάντοτε +καί +εἰδότες +ὅτι +ἐνδημοῦντες +ἐν +τῷ +σώματι +ἐκδημοῦμεν +ἀπό +τοῦ +Κυρίου +γάρ +διά +πίστεως +περιπατοῦμεν +οὐ +διά +εἴδους +δέ +θαρροῦμεν +καί +εὐδοκοῦμεν +μᾶλλον +ἐκδημῆσαι +ἐκ +τοῦ +σώματος +καί +ἐνδημῆσαι +πρός +τόν +Κύριον +διό +καί +φιλοτιμούμεθα +εἴτε +ἐνδημοῦντες +εἴτε +ἐκδημοῦντες +εὐάρεστοι +αὐτῷ +εἶναι +γάρ +τούς +πάντας +ἡμᾶς +φανερωθῆναι +ἔμπροσθεν +τοῦ +βήματος +τοῦ +Χριστοῦ +δεῖ +ἵνα +κομίσηται +ἕκαστος +τά +διά +τοῦ +σώματος +πρός +ἅ +ἔπραξεν +εἴτε +ἀγαθόν +εἴτε +φαῦλον +οὖν +Εἰδότες +τόν +φόβον +τοῦ +Κυρίου +ἀνθρώπους +πείθομεν +δέ +Θεῷ +πεφανερώμεθα +δέ +ἐλπίζω +καί +ἐν +ταῖς +συνειδήσεσιν +ὑμῶν +πεφανερῶσθαι +οὐ +πάλιν +ἑαυτούς +συνιστάνομεν +ὑμῖν +ἀλλά +ἀφορμήν +καυχήματος +διδόντες +ὑμῖν +ὑπέρ +ἡμῶν +ἵνα +ἔχητε +πρός +τούς +ἐν +προσώπῳ +καυχωμένους +καί +μή +ἐν +καρδίᾳ +γάρ +εἴτε +ἐξέστημεν +Θεῷ +εἴτε +σωφρονοῦμεν +ὑμῖν +γάρ +ἡ +ἀγάπη +τοῦ +Χριστοῦ +συνέχει +ἡμᾶς +κρίναντας +τοῦτο +ὅτι +εἷς +ὑπέρ +πάντων +ἀπέθανεν +ἄρα +οἱ +πάντες +ἀπέθανον +καί +ὑπέρ +πάντων +ἀπέθανεν +ἵνα +οἱ +ζῶντες +ζῶσιν +μηκέτι +ἑαυτοῖς +ἀλλά +τῷ +ὑπέρ +αὐτῶν +ἀποθανόντι +καί +ἐγερθέντι +Ὥστε +ἡμεῖς +ἀπό +τοῦ +νῦν +οὐδένα +οἴδαμεν +κατά +σάρκα +εἰ +καί +ἐγνώκαμεν +κατά +σάρκα +Χριστόν +ἀλλά +νῦν +οὐκέτι +γινώσκομεν +ὥστε +εἴ +τις +ἐν +Χριστῷ +καινή +κτίσις +τά +ἀρχαῖα +παρῆλθεν +ἰδού +γέγονεν +καινά +δέ +τά +πάντα +ἐκ +τοῦ +Θεοῦ +τοῦ +καταλλάξαντος +ἡμᾶς +ἑαυτῷ +διά +Χριστοῦ +καί +δόντος +ἡμῖν +τήν +διακονίαν +τῆς +καταλλαγῆς +ὡς +ὅτι +Θεός +ἦν +καταλλάσσων +ἐν +Χριστῷ +κόσμον +ἑαυτῷ +μή +λογιζόμενος +αὐτοῖς +τά +παραπτώματα +αὐτῶν +καί +θέμενος +ἐν +ἡμῖν +τόν +λόγον +τῆς +καταλλαγῆς +οὖν +Ὑπέρ +Χριστοῦ +πρεσβεύομεν +ὡς +τοῦ +Θεοῦ +παρακαλοῦντος +δι’ +ἡμῶν +δεόμεθα +ὑπέρ +Χριστοῦ +καταλλάγητε +τῷ +Θεῷ +τόν +μή +γνόντα +ἁμαρτίαν +ὑπέρ +ἡμῶν +ἁμαρτίαν +ἐποίησεν +ἵνα +ἡμεῖς +γενώμεθα +δικαιοσύνη +Θεοῦ +ἐν +αὐτῷ +δέ +Συνεργοῦντες +καί +παρακαλοῦμεν +μή +εἰς +κενόν +τήν +χάριν +τοῦ +Θεοῦ +δέξασθαι +ὑμᾶς +γάρ +λέγει +Καιρῷ +δεκτῷ +ἐπήκουσα +σου +καί +ἐν +ἡμέρᾳ +σωτηρίας +ἐβοήθησα +σοι +ἰδού +νῦν +καιρός +εὐπρόσδεκτος +ἰδού +νῦν +ἡμέρα +σωτηρίας +μηδεμίαν +προσκοπήν +ἐν +μηδενί +διδόντες +ἵνα +μή +μωμηθῇ +ἡ +διακονία +ἀλλ’ +ἐν +παντί +συνιστάνοντες +ἑαυτούς +ὡς +Θεοῦ +διάκονοι +ἐν +ὑπομονῇ +πολλῇ +ἐν +θλίψεσιν +ἐν +ἀνάγκαις +ἐν +στενοχωρίαις +ἐν +πληγαῖς +ἐν +φυλακαῖς +ἐν +ἀκαταστασίαις +ἐν +κόποις +ἐν +ἀγρυπνίαις +ἐν +νηστείαις +ἐν +ἁγνότητι +ἐν +γνώσει +ἐν +μακροθυμίᾳ +ἐν +χρηστότητι +ἐν +Πνεύματι +Ἁγίῳ +ἐν +ἀγάπῃ +ἀνυποκρίτῳ +ἐν +λόγῳ +ἀληθείας +ἐν +δυνάμει +Θεοῦ +διά +τῶν +ὅπλων +τῆς +δικαιοσύνης +τῶν +δεξιῶν +καί +ἀριστερῶν +διά +δόξης +καί +ἀτιμίας +διά +δυσφημίας +καί +εὐφημίας +ὡς +πλάνοι +καί +ἀληθεῖς +ὡς +ἀγνοούμενοι +καί +ἐπιγινωσκόμενοι +ὡς +ἀποθνήσκοντες +καί +ἰδού +ζῶμεν +ὡς +παιδευόμενοι +καί +μή +θανατούμενοι +ὡς +λυπούμενοι +δέ +ἀεί +χαίροντες +ὡς +πτωχοί +δέ +πολλούς +πλουτίζοντες +ὡς +μηδέν +ἔχοντες +καί +πάντα +κατέχοντες +Κορίνθιοι +Τό +στόμα +ἡμῶν +ἀνέῳγεν +πρός +ὑμᾶς +ἡ +καρδία +ἡμῶν +πεπλάτυνται +οὐ +στενοχωρεῖσθε +ἐν +ἡμῖν +δέ +στενοχωρεῖσθε +ἐν +τοῖς +σπλάγχνοις +ὑμῶν +δέ +τήν +αὐτήν +ἀντιμισθίαν +ὡς +τέκνοις +λέγω +πλατύνθητε +καί +ὑμεῖς +Μή +γίνεσθε +ἑτεροζυγοῦντες +ἀπίστοις +γάρ +τίς +μετοχή +δικαιοσύνῃ +καί +ἀνομίᾳ +ἤ +τίς +κοινωνία +φωτί +πρός +σκότος +δέ +τίς +συμφώνησις +Χριστοῦ +πρός +Βελιάρ +ἤ +τίς +μερίς +πιστῷ +μετά +ἀπίστου +δέ +τίς +συνκατάθεσις +ναῷ +Θεοῦ +μετά +εἰδώλων +γάρ +ἡμεῖς +ναός +Θεοῦ +ζῶντος +ἐσμεν +καθώς +εἶπεν +ὁ +Θεός +ὅτι +Ἐνοικήσω +ἐν +αὐτοῖς +καί +ἐνπεριπατήσω +καί +ἔσομαι +αὐτῶν +Θεός +καί +αὐτοί +ἔσονται +μου +λαός +διό +ἐξέλθατε +ἐκ +μέσου +αὐτῶν +καί +ἀφορίσθητε +καί +ἀκαθάρτου +μή +ἅπτεσθε +λέγει +Κύριος +κἀγώ +εἰσδέξομαι +ὑμᾶς +καί +ἔσομαι +ὑμῖν +εἰς +Πατέρα +καί +ὑμεῖς +ἔσεσθε +μοι +εἰς +υἱούς +καί +θυγατέρας +λέγει +Κύριος +Παντοκράτωρ +οὖν +ἀγαπητοί +ἔχοντες +ταύτας +τάς +ἐπαγγελίας +καθαρίσωμεν +ἑαυτούς +ἀπό +παντός +μολυσμοῦ +σαρκός +καί +πνεύματος +ἐπιτελοῦντες +ἁγιωσύνην +ἐν +φόβῳ +Θεοῦ +Χωρήσατε +ἡμᾶς +οὐδένα +ἠδικήσαμεν +οὐδένα +ἐφθείραμεν +οὐδένα +ἐπλεονεκτήσαμεν +πρός +κατάκρισιν +οὐ +λέγω +γάρ +προείρηκα +ὅτι +ἐν +ταῖς +καρδίαις +ἡμῶν +ἐστε +εἰς +τό +συναποθανεῖν +καί +συνζῆν +πολλή +μοι +παρρησία +πρός +ὑμᾶς +πολλή +μοι +καύχησις +ὑπέρ +ὑμῶν +πεπλήρωμαι +τῇ +παρακλήσει +ὑπερπερισσεύομαι +τῇ +χαρᾷ +ἐπί +πάσῃ +τῇ +θλίψει +ἡμῶν +γάρ +Καί +ἐλθόντων +ἡμῶν +εἰς +Μακεδονίαν +οὐδεμίαν +ἔσχηκεν +ἄνεσιν +ἡ +σάρξ +ἡμῶν +ἀλλ’ +ἐν +παντί +θλιβόμενοι +ἔξωθεν +μάχαι +ἔσωθεν +φόβοι +ἀλλ’ +ὁ +παρακαλῶν +τούς +ταπεινούς +ὁ +Θεός +παρεκάλεσεν +ἡμᾶς +ἐν +τῇ +παρουσίᾳ +Τίτου +δέ +οὐ +μόνον +ἐν +τῇ +παρουσίᾳ +αὐτοῦ +ἀλλά +καί +ἐν +τῇ +παρακλήσει +ᾗ +παρεκλήθη +ἐφ’ +ὑμῖν +ἀναγγέλλων +ἡμῖν +τήν +ὑμῶν +ἐπιπόθησιν +τόν +ὑμῶν +ὀδυρμόν +τόν +ὑμῶν +ζῆλον +ὑπέρ +ἐμοῦ +ὥστε +με +μᾶλλον +χαρῆναι +ὅτι +εἰ +καί +ἐλύπησα +ὑμᾶς +ἐν +τῇ +ἐπιστολῇ +οὐ +μεταμέλομαι +εἰ +καί +μετεμελόμην +βλέπω +ὅτι +ἡ +ἐπιστολή +ἐκείνη +εἰ +καί +πρός +ὥραν +ἐλύπησεν +ὑμᾶς +νῦν +χαίρω +οὐχ +ὅτι +ἐλυπήθητε +ἀλλ’ +ὅτι +ἐλυπήθητε +εἰς +μετάνοιαν +γάρ +ἐλυπήθητε +κατά +Θεόν +ἵνα +ἐν +μηδενί +ζημιωθῆτε +ἐξ +ἡμῶν +γάρ +ἡ +κατά +Θεόν +λύπη +μετάνοιαν +εἰς +σωτηρίαν +ἀμεταμέλητον +ἐργάζεται +δέ +ἡ +τοῦ +κόσμου +λύπη +θάνατον +κατεργάζεται +γάρ +ἰδού +αὐτό +τοῦτο +τό +κατά +Θεόν +λυπηθῆναι +κατειργάσατο +ὑμῖν +πόσην +σπουδήν +ἀλλά +ἀπολογίαν +ἀλλά +ἀγανάκτησιν +ἀλλά +φόβον +ἀλλά +ἐπιπόθησιν +ἀλλά +ζῆλον +ἀλλά +ἐκδίκησιν +ἐν +παντί +συνεστήσατε +ἑαυτούς +ἁγνούς +εἶναι +τῷ +πράγματι +ἄρα +εἰ +καί +ἔγραψα +ὑμῖν +οὐχ +ἕνεκεν +τοῦ +ἀδικήσαντος +οὐδέ +ἕνεκεν +τοῦ +ἀδικηθέντος +ἀλλ’ +ἕνεκεν +τοῦ +φανερωθῆναι +τήν +σπουδήν +ὑμῶν +τήν +ὑπέρ +ἡμῶν +πρός +ὑμᾶς +ἐνώπιον +τοῦ +Θεοῦ +διά +τοῦτο +παρακεκλήμεθα +δέ +Ἐπί +τῇ +παρακλήσει +ἡμῶν +περισσοτέρως +μᾶλλον +ἐχάρημεν +ἐπί +τῇ +χαρᾷ +Τίτου +ὅτι +ἀναπέπαυται +τό +πνεῦμα +αὐτοῦ +ἀπό +πάντων +ὑμῶν +ὅτι +εἴ +τι +αὐτῷ +ὑπέρ +ὑμῶν +κεκαύχημαι +οὐ +κατῃσχύνθην +ἀλλ’ +ὡς +πάντα +ἐν +ἀληθείᾳ +ἐλαλήσαμεν +ὑμῖν +οὕτως +καί +ἡ +καύχησις +ἡμῶν +ἐπί +Τίτου +ἀλήθεια +ἐγενήθη +καί +τά +σπλάγχνα +αὐτοῦ +περισσοτέρως +εἰς +ὑμᾶς +ἐστιν +ἀναμιμνῃσκομένου +τήν +πάντων +ὑμῶν +ὑπακοήν +ὡς +μετά +φόβου +καί +τρόμου +ἐδέξασθε +αὐτόν +χαίρω +ὅτι +ἐν +παντί +θαρρῶ +ἐν +ὑμῖν +δέ +ἀδελφοί +Γνωρίζομεν +ὑμῖν +τήν +χάριν +τοῦ +Θεοῦ +τήν +δεδομένην +ἐν +ταῖς +ἐκκλησίαις +τῆς +Μακεδονίας +ὅτι +ἐν +πολλῇ +δοκιμῇ +θλίψεως +ἡ +περισσεία +τῆς +χαρᾶς +αὐτῶν +καί +ἡ +κατά +βάθους +πτωχεία +αὐτῶν +ἐπερίσσευσεν +εἰς +τό +πλοῦτος +τῆς +ἁπλότητος +αὐτῶν +μαρτυρῶ +ὅτι +κατά +δύναμιν +καί +παρά +δύναμιν +αὐθαίρετοι +μετά +πολλῆς +παρακλήσεως +δεόμενοι +ἡμῶν +τήν +χάριν +καί +τήν +κοινωνίαν +τῆς +διακονίας +τῆς +εἰς +τούς +ἁγίους +καί +οὐ +καθώς +ἠλπίσαμεν +ἀλλά +ἑαυτούς +ἔδωκαν +πρῶτον +τῷ +Κυρίῳ +καί +ἡμῖν +διά +θελήματος +Θεοῦ +εἰς +τό +παρακαλέσαι +ἡμᾶς +Τίτον +ἵνα +καθώς +προενήρξατο +οὕτως +καί +ἐπιτελέσῃ +εἰς +ὑμᾶς +καί +τήν +χάριν +ταύτην +ἀλλ’ +ὥσπερ +ἐν +παντί +περισσεύετε +πίστει +καί +λόγῳ +καί +γνώσει +καί +πάσῃ +σπουδῇ +καί +τῇ +ἐξ +ἡμῶν +ἐν +ὑμῖν +ἀγάπῃ +ἵνα +καί +ἐν +ταύτῃ +τῇ +χάριτι +περισσεύητε +Οὐ +κατ’ +ἐπιταγήν +λέγω +ἀλλά +διά +τῆς +ἑτέρων +σπουδῆς +καί +τό +τῆς +ὑμετέρας +ἀγάπης +γνήσιον +δοκιμάζων +γάρ +γινώσκετε +τήν +χάριν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὅτι +δι’ +ὑμᾶς +ἐπτώχευσεν +πλούσιος +ὤν +ἵνα +ὑμεῖς +τῇ +ἐκείνου +πτωχείᾳ +πλουτήσητε +καί +γνώμην +ἐν +τούτῳ +δίδωμι +γάρ +τοῦτο +ὑμῖν +συμφέρει +οἵτινες +οὐ +μόνον +τό +ποιῆσαι +ἀλλά +καί +τό +θέλειν +προενήρξασθε +ἀπό +πέρυσι +δέ +νυνί +καί +τό +ποιῆσαι +ἐπιτελέσατε +ὅπως +καθάπερ +ἡ +προθυμία +τοῦ +θέλειν +οὕτως +καί +τό +ἐπιτελέσαι +ἐκ +τοῦ +ἔχειν +γάρ +εἰ +ἡ +προθυμία +πρόκειται +καθό +ἐάν +ἔχῃ +εὐπρόσδεκτος +οὐ +καθό +οὐκ +ἔχει +γάρ +οὐ +ἵνα +ἄλλοις +ἄνεσις +ὑμῖν +θλῖψις +ἀλλ’ +ἐξ +ἰσότητος +ἐν +τῷ +νῦν +καιρῷ +τό +ὑμῶν +περίσσευμα +εἰς +τό +ἐκείνων +ὑστέρημα +ἵνα +καί +τό +ἐκείνων +περίσσευμα +γένηται +εἰς +τό +ὑμῶν +ὑστέρημα +ὅπως +γένηται +ἰσότης +καθώς +γέγραπται +Ὁ +τό +πολύ +οὐκ +ἐπλεόνασεν +καί +ὁ +τό +ὀλίγον +οὐκ +ἠλαττόνησεν +δέ +Χάρις +τῷ +Θεῷ +τῷ +διδόντι +τήν +αὐτήν +σπουδήν +ὑπέρ +ὑμῶν +ἐν +τῇ +καρδίᾳ +Τίτου +ὅτι +μέν +τήν +παράκλησιν +ἐδέξατο +δέ +σπουδαιότερος +ὑπάρχων +αὐθαίρετος +ἐξῆλθεν +πρός +ὑμᾶς +δέ +συνεπέμψαμεν +μετ’ +αὐτοῦ +τόν +ἀδελφόν +οὗ +ὁ +ἔπαινος +ἐν +τῷ +εὐαγγελίῳ +διά +πασῶν +τῶν +ἐκκλησιῶν +δέ +οὐ +μόνον +ἀλλά +καί +χειροτονηθείς +ὑπό +τῶν +ἐκκλησιῶν +συνέκδημος +ἡμῶν +ἐν +τῇ +χάριτι +ταύτῃ +τῇ +διακονουμένῃ +ὑφ’ +ἡμῶν +πρός +τήν +αὐτοῦ +τοῦ +Κυρίου +δόξαν +καί +προθυμίαν +ἡμῶν +στελλόμενοι +τοῦτο +μή +τις +ἡμᾶς +μωμήσηται +ἐν +τῇ +ἁδρότητι +ταύτῃ +τῇ +διακονουμένῃ +ὑφ’ +ἡμῶν +γάρ +προνοοῦμεν +καλά +οὐ +μόνον +ἐνώπιον +Κυρίου +ἀλλά +καί +ἐνώπιον +ἀνθρώπων +δέ +συνεπέμψαμεν +αὐτοῖς +τόν +ἀδελφόν +ἡμῶν +ὅν +ἐδοκιμάσαμεν +ἐν +πολλοῖς +πολλάκις +σπουδαῖον +ὄντα +δέ +νυνί +πολύ +σπουδαιότερον +πεποιθήσει +πολλῇ +τῇ +εἰς +ὑμᾶς +εἴτε +ὑπέρ +Τίτου +κοινωνός +ἐμός +καί +εἰς +ὑμᾶς +συνεργός +εἴτε +ἀδελφοί +ἡμῶν +ἀπόστολοι +ἐκκλησιῶν +δόξα +Χριστοῦ +οὖν +τήν +ἔνδειξιν +τῆς +ἀγάπης +ὑμῶν +καί +ἡμῶν +καυχήσεως +ὑπέρ +ὑμῶν +εἰς +αὐτούς +ἐνδεικνύμενοι +εἰς +πρόσωπον +τῶν +ἐκκλησιῶν +γάρ +μέν +Περί +τῆς +διακονίας +τῆς +εἰς +τούς +ἁγίους +περισσόν +μοί +ἐστιν +τό +γράφειν +ὑμῖν +γάρ +οἶδα +τήν +προθυμίαν +ὑμῶν +ἥν +ὑπέρ +ὑμῶν +καυχῶμαι +Μακεδόσιν +ὅτι +Ἀχαΐα +παρεσκεύασται +ἀπό +πέρυσι +καί +τό +ὑμῶν +ζῆλος +ἠρέθισεν +τούς +πλείονας +δέ +ἔπεμψα +τούς +ἀδελφούς +ἵνα +μή +τό +καύχημα +ἡμῶν +τό +ὑπέρ +ὑμῶν +κενωθῇ +ἐν +τῷ +μέρει +τούτῳ +ἵνα +καθώς +ἔλεγον +παρεσκευασμένοι +ἦτε +μή +πως +ἐάν +ἔλθωσιν +σύν +ἐμοί +Μακεδόνες +καί +εὕρωσιν +ὑμᾶς +ἀπαρασκευάστους +καταισχυνθῶμεν +ἡμεῖς +ἵνα +μή +λέγωμεν +ὑμεῖς +ἐν +τῇ +ὑποστάσει +ταύτῃ +οὖν +ἀναγκαῖον +ἡγησάμην +παρακαλέσαι +τούς +ἀδελφούς +ἵνα +προέλθωσιν +εἰς +ὑμᾶς +καί +προκαταρτίσωσιν +τήν +προεπηγγελμένην +εὐλογίαν +ὑμῶν +ταύτην +ἑτοίμην +εἶναι +οὕτως +ὡς +εὐλογίαν +καί +μή +ὡς +πλεονεξίαν +δέ +Τοῦτο +ὁ +σπείρων +φειδομένως +φειδομένως +καί +θερίσει +καί +ὁ +σπείρων +ἐπ’ +εὐλογίαις +ἐπ’ +εὐλογίαις +καί +θερίσει +ἕκαστος +καθώς +προῄρηται +τῇ +καρδίᾳ +μή +ἐκ +λύπης +ἤ +ἐξ +ἀνάγκης +γάρ +ἱλαρόν +δότην +ἀγαπᾷ +ὁ +Θεός +δέ +δυνατεῖ +ὁ +Θεός +πᾶσαν +χάριν +περισσεῦσαι +εἰς +ὑμᾶς +ἵνα +ἐν +παντί +πάντοτε +πᾶσαν +αὐτάρκειαν +ἔχοντες +περισσεύητε +εἰς +πᾶν +ἔργον +ἀγαθόν +καθώς +γέγραπται +Ἐσκόρπισεν +ἔδωκεν +τοῖς +πένησιν +ἡ +δικαιοσύνη +αὐτοῦ +μένει +εἰς +τόν +αἰῶνα +δέ +ὁ +ἐπιχορηγῶν +σπέρμα +τῷ +σπείροντι +καί +ἄρτον +εἰς +βρῶσιν +χορηγήσει +καί +πληθυνεῖ +τόν +σπόρον +ὑμῶν +καί +αὐξήσει +τά +γενήματα +τῆς +δικαιοσύνης +ὑμῶν +ἐν +παντί +πλουτιζόμενοι +εἰς +πᾶσαν +ἁπλότητα +ἥτις +κατεργάζεται +δι’ +ἡμῶν +εὐχαριστίαν +τῷ +Θεῷ +ὅτι +ἡ +διακονία +τῆς +λειτουργίας +ταύτης +οὐ +μόνον +ἐστίν +προσαναπληροῦσα +τά +ὑστερήματα +τῶν +ἁγίων +ἀλλά +καί +περισσεύουσα +διά +πολλῶν +εὐχαριστιῶν +τῷ +Θεῷ +διά +τῆς +δοκιμῆς +τῆς +διακονίας +ταύτης +δοξάζοντες +τόν +Θεόν +ἐπί +τῇ +ὑποταγῇ +τῆς +ὁμολογίας +ὑμῶν +εἰς +τό +εὐαγγέλιον +τοῦ +Χριστοῦ +καί +ἁπλότητι +τῆς +κοινωνίας +εἰς +αὐτούς +καί +εἰς +πάντας +καί +αὐτῶν +δεήσει +ὑπέρ +ὑμῶν +ἐπιποθούντων +ὑμᾶς +διά +τήν +ὑπερβάλλουσαν +χάριν +τοῦ +Θεοῦ +ἐφ’ +ὑμῖν +Χάρις +τῷ +Θεῷ +ἐπί +τῇ +ἀνεκδιηγήτῳ +αὐτοῦ +δωρεᾷ +δέ +Αὐτός +ἐγώ +Παῦλος +παρακαλῶ +ὑμᾶς +διά +τῆς +πραΰτητος +καί +ἐπιεικείας +τοῦ +Χριστοῦ +ὅς +μέν +κατά +πρόσωπον +ταπεινός +ἐν +ὑμῖν +δέ +ἀπών +θαρρῶ +εἰς +ὑμᾶς +δέ +δέομαι +τό +μή +παρών +θαρρῆσαι +τῇ +πεποιθήσει +ᾗ +λογίζομαι +τολμῆσαι +ἐπί +τινας +τούς +λογιζομένους +ἡμᾶς +ὡς +κατά +σάρκα +περιπατοῦντας +γάρ +Ἐν +σαρκί +περιπατοῦντες +οὐ +κατά +σάρκα +στρατευόμεθα +γάρ +τά +ὅπλα +τῆς +στρατείας +ἡμῶν +οὐ +σαρκικά +ἀλλά +δυνατά +τῷ +Θεῷ +πρός +καθαίρεσιν +ὀχυρωμάτων +καθαιροῦντες +λογισμούς +καί +πᾶν +ὕψωμα +ἐπαιρόμενον +κατά +τῆς +γνώσεως +τοῦ +Θεοῦ +καί +αἰχμαλωτίζοντες +πᾶν +νόημα +εἰς +τήν +ὑπακοήν +τοῦ +Χριστοῦ +καί +ἐν +ἑτοίμῳ +ἔχοντες +ἐκδικῆσαι +πᾶσαν +παρακοήν +ὅταν +πληρωθῇ +ὑμῶν +ἡ +ὑπακοή +Τά +κατά +πρόσωπον +βλέπετε +εἴ +τις +πέποιθεν +ἑαυτῷ +Χριστοῦ +εἶναι +τοῦτο +λογιζέσθω +πάλιν +ἐφ’ +ἑαυτοῦ +ὅτι +καθώς +αὐτός +Χριστοῦ +οὕτως +καί +ἡμεῖς +γάρ +ἐάν +τε +περισσότερον +τι +καυχήσωμαι +περί +τῆς +ἐξουσίας +ἡμῶν +ἧς +ἔδωκεν +ὁ +Κύριος +εἰς +οἰκοδομήν +καί +οὐκ +εἰς +καθαίρεσιν +ὑμῶν +οὐκ +αἰσχυνθήσομαι +ἵνα +μή +δόξω +ὡς +ἄν +ἐκφοβεῖν +ὑμᾶς +διά +τῶν +ἐπιστολῶν +ὅτι +φησίν +μέν +Αἱ +ἐπιστολαί +βαρεῖαι +καί +ἰσχυραί +δέ +ἡ +παρουσία +τοῦ +σώματος +ἀσθενής +καί +ὁ +λόγος +ἐξουθενημένος +τοῦτο +λογιζέσθω +ὁ +τοιοῦτος +ὅτι +οἷοι +ἐσμεν +τῷ +λόγῳ +δι’ +ἐπιστολῶν +ἀπόντες +τοιοῦτοι +καί +παρόντες +τῷ +ἔργῳ +γάρ +Οὐ +τολμῶμεν +ἐνκρῖναι +ἤ +συνκρῖναι +ἑαυτούς +τισιν +τῶν +ἑαυτούς +συνιστανόντων +ἀλλά +αὐτοί +ἐν +ἑαυτοῖς +ἑαυτούς +μετροῦντες +καί +συνκρίνοντες +ἑαυτούς +ἑαυτοῖς +οὐ +συνιᾶσιν +δέ +ἡμεῖς +οὐκ +εἰς +τά +ἄμετρα +καυχησόμεθα +ἀλλά +κατά +τό +μέτρον +τοῦ +κανόνος +οὗ +ἐμέρισεν +ἡμῖν +ὁ +Θεός +μέτρου +ἐφικέσθαι +ἄχρι +καί +ὑμῶν +γάρ +οὐ +ὡς +μή +ἐφικνούμενοι +εἰς +ὑμᾶς +ὑπερεκτείνομεν +ἑαυτούς +γάρ +ἄχρι +καί +ὑμῶν +ἐφθάσαμεν +ἐν +τῷ +εὐαγγελίῳ +τοῦ +Χριστοῦ +οὐκ +εἰς +τά +ἄμετρα +καυχώμενοι +ἐν +ἀλλοτρίοις +κόποις +δέ +ἐλπίδα +ἔχοντες +αὐξανομένης +τῆς +πίστεως +ὑμῶν +ἐν +ὑμῖν +μεγαλυνθῆναι +κατά +τόν +κανόνα +ἡμῶν +εἰς +περισσείαν +εἰς +τά +ὑπερέκεινα +ὑμῶν +εὐαγγελίσασθαι +οὐκ +ἐν +ἀλλοτρίῳ +κανόνι +εἰς +τά +ἕτοιμα +καυχήσασθαι +δέ +Ὁ +καυχώμενος +ἐν +Κυρίῳ +καυχάσθω +γάρ +οὐ +ὁ +ἑαυτόν +συνιστάνων +ἐκεῖνος +ἐστιν +δόκιμος +ἀλλά +ὅν +ὁ +Κύριος +συνίστησιν +Ὄφελον +ἀνείχεσθε +μου +μικρόν +τι +ἀφροσύνης +ἀλλά +καί +ἀνέχεσθε +μου +γάρ +ζηλῶ +ὑμᾶς +Θεοῦ +ζήλῳ +γάρ +ἡρμοσάμην +ὑμᾶς +ἑνί +ἀνδρί +παρθένον +ἁγνήν +παραστῆσαι +τῷ +Χριστῷ +δέ +φοβοῦμαι +μή +πως +ὡς +ὁ +ὄφις +ἐξηπάτησεν +Εὕαν +ἐν +τῇ +πανουργίᾳ +αὐτοῦ +φθαρῇ +τά +νοήματα +ὑμῶν +ἀπό +τῆς +ἁπλότητος +καί +τῆς +ἁγνότητος +τῆς +εἰς +Χριστόν +γάρ +μέν +εἰ +ὁ +ἐρχόμενος +κηρύσσει +ἄλλον +Ἰησοῦν +ὅν +οὐκ +ἐκηρύξαμεν +ἤ +λαμβάνετε +πνεῦμα +ἕτερον +ὅ +οὐκ +ἐλάβετε +ἤ +εὐαγγέλιον +ἕτερον +ὅ +οὐκ +ἐδέξασθε +καλῶς +ἀνέχεσθε +γάρ +λογίζομαι +μηδέν +ὑστερηκέναι +τῶν +ὑπερλίαν +ἀποστόλων +δέ +εἰ +καί +ἰδιώτης +τῷ +λόγῳ +ἀλλ’ +οὐ +τῇ +γνώσει +ἀλλ’ +ἐν +παντί +φανερώσαντες +ἐν +πᾶσιν +εἰς +ὑμᾶς +Ἤ +ἁμαρτίαν +ἐποίησα +ἐμαυτόν +ταπεινῶν +ἵνα +ὑμεῖς +ὑψωθῆτε +ὅτι +δωρεάν +τό +τοῦ +Θεοῦ +εὐαγγέλιον +εὐηγγελισάμην +ὑμῖν +ἄλλας +ἐκκλησίας +ἐσύλησα +λαβών +ὀψώνιον +πρός +τήν +ὑμῶν +διακονίαν +καί +παρών +πρός +ὑμᾶς +καί +ὑστερηθείς +οὐ +κατενάρκησα +οὐθενός +γάρ +τό +ὑστέρημα +μου +προσανεπλήρωσαν +οἱ +ἀδελφοί +ἐλθόντες +ἀπό +Μακεδονίας +καί +ἐν +παντί +ἀβαρῆ +ἐμαυτόν +ὑμῖν +ἐτήρησα +καί +τηρήσω +ἔστιν +ἀλήθεια +Χριστοῦ +ἐν +ἐμοί +ὅτι +ἡ +καύχησις +αὕτη +οὐ +φραγήσεται +εἰς +ἐμέ +ἐν +τοῖς +κλίμασιν +τῆς +Ἀχαΐας +διά +τί +ὅτι +οὐκ +ἀγαπῶ +ὑμᾶς +ὁ +Θεός +οἶδεν +δέ +Ὅ +ποιῶ +καί +ποιήσω +ἵνα +ἐκκόψω +τήν +ἀφορμήν +τῶν +θελόντων +ἀφορμήν +ἵνα +ἐν +ᾧ +καυχῶνται +εὑρεθῶσιν +καθώς +καί +ἡμεῖς +γάρ +οἱ +τοιοῦτοι +ψευδαπόστολοι +ἐργάται +δόλιοι +μετασχηματιζόμενοι +εἰς +ἀποστόλους +Χριστοῦ +καί +οὐ +θαῦμα +γάρ +αὐτός +ὁ +Σατανᾶς +μετασχηματίζεται +εἰς +ἄγγελον +φωτός +οὖν +οὐ +μέγα +εἰ +καί +οἱ +διάκονοι +αὐτοῦ +μετασχηματίζονται +ὡς +διάκονοι +δικαιοσύνης +ὧν +τό +τέλος +ἔσται +κατά +τά +ἔργα +αὐτῶν +Πάλιν +λέγω +μή +τίς +δόξῃ +με +ἄφρονα +εἶναι +δέ +εἰ +μήγε +κἄν +ὡς +ἄφρονα +δέξασθε +με +ἵνα +κἀγώ +μικρόν +τι +καυχήσωμαι +ὅ +λαλῶ +οὐ +κατά +Κύριον +λαλῶ +ἀλλ’ +ὡς +ἐν +ἀφροσύνῃ +ἐν +ταύτῃ +τῇ +ὑποστάσει +τῆς +καυχήσεως +ἐπεί +πολλοί +καυχῶνται +κατά +τήν +σάρκα +κἀγώ +καυχήσομαι +γάρ +ἡδέως +ἀνέχεσθε +τῶν +ἀφρόνων +φρόνιμοι +ὄντες +γάρ +ἀνέχεσθε +εἴ +τις +ὑμᾶς +καταδουλοῖ +εἴ +τις +κατεσθίει +εἴ +τις +λαμβάνει +εἴ +τις +ἐπαίρεται +εἴ +τις +εἰς +πρόσωπον +ὑμᾶς +δέρει +κατά +ἀτιμίαν +λέγω +ὡς +ὅτι +ἡμεῖς +ἠσθενήκαμεν +δ’ +ἄν +ἐν +ᾧ +τις +τολμᾷ +ἐν +ἀφροσύνῃ +λέγω +τολμῶ +κἀγώ +Ἑβραῖοι +εἰσιν +κἀγώ +Ἰσραηλεῖται +εἰσιν +κἀγώ +σπέρμα +Ἀβραάμ +εἰσιν +κἀγώ +διάκονοι +Χριστοῦ +εἰσιν +παραφρονῶν +λαλῶ +ὑπέρ +ἐγώ +ἐν +κόποις +περισσοτέρως +ἐν +φυλακαῖς +περισσοτέρως +ἐν +πληγαῖς +ὑπερβαλλόντως +ἐν +θανάτοις +πολλάκις +ὑπό +Ἰουδαίων +πεντάκις +τεσσεράκοντα +παρά +μίαν +ἔλαβον +τρίς +ἐραβδίσθην +ἅπαξ +ἐλιθάσθην +τρίς +ἐναυάγησα +νυχθήμερον +ἐν +τῷ +βυθῷ +πεποίηκα +ὁδοιπορίαις +πολλάκις +κινδύνοις +ποταμῶν +κινδύνοις +λῃστῶν +κινδύνοις +ἐκ +γένους +κινδύνοις +ἐξ +ἐθνῶν +κινδύνοις +ἐν +πόλει +κινδύνοις +ἐν +ἐρημίᾳ +κινδύνοις +ἐν +θαλάσσῃ +κινδύνοις +ἐν +ψευδαδέλφοις +κόπῳ +καί +μόχθῳ +ἐν +ἀγρυπνίαις +πολλάκις +ἐν +λιμῷ +καί +δίψει +ἐν +νηστείαις +πολλάκις +ἐν +ψύχει +καί +γυμνότητι +χωρίς +τῶν +παρεκτός +ἡ +ἐπίστασις +μοι +ἡ +καθ’ +ἡμέραν +ἡ +μέριμνα +πασῶν +τῶν +ἐκκλησιῶν +τίς +ἀσθενεῖ +καί +οὐκ +ἀσθενῶ +τίς +σκανδαλίζεται +καί +οὐκ +ἐγώ +πυροῦμαι +εἰ +καυχᾶσθαι +δεῖ +τά +τῆς +ἀσθενείας +μου +καυχήσομαι +ὁ +Θεός +καί +Πατήρ +τοῦ +Κυρίου +Ἰησοῦ +ὁ +ὤν +εὐλογητός +εἰς +τούς +αἰῶνας +οἶδεν +ὅτι +οὐ +ψεύδομαι +ἐν +Δαμασκῷ +ὁ +ἐθνάρχης +Ἀρέτα +τοῦ +βασιλέως +ἐφρούρει +τήν +πόλιν +Δαμασκηνῶν +πιάσαι +με +καί +διά +θυρίδος +ἐν +σαργάνῃ +ἐχαλάσθην +διά +τοῦ +τείχους +καί +ἐξέφυγον +τάς +χεῖρας +αὐτοῦ +Καυχᾶσθαι +δεῖ +μέν +οὐ +συμφέρον +δέ +ἐλεύσομαι +εἰς +ὀπτασίας +καί +ἀποκαλύψεις +Κυρίου +οἶδα +ἄνθρωπον +ἐν +Χριστῷ +εἴτε +ἐν +σώματι +οὐκ +οἶδα +εἴτε +ἐκτός +τοῦ +σώματος +οὐκ +οἶδα +ὁ +Θεός +οἶδεν +πρό +ἐτῶν +δεκατεσσάρων +ἁρπαγέντα +τόν +τοιοῦτον +ἕως +τρίτου +οὐρανοῦ +καί +οἶδα +τόν +τοιοῦτον +ἄνθρωπον +εἴτε +ἐν +σώματι +εἴτε +χωρίς +τοῦ +σώματος +οὐκ +οἶδα +ὁ +Θεός +οἶδεν +ὅτι +ἡρπάγη +εἰς +τόν +Παράδεισον +καί +ἤκουσεν +ἄρρητα +ῥήματα +ἅ +λαλῆσαι +οὐκ +ἐξόν +ἀνθρώπῳ +ὑπέρ +τοῦ +τοιούτου +καυχήσομαι +δέ +ὑπέρ +ἐμαυτοῦ +οὐ +καυχήσομαι +εἰ +μή +ἐν +ταῖς +ἀσθενείαις +γάρ +ἐάν +θελήσω +καυχήσασθαι +οὐκ +ἔσομαι +ἄφρων +γάρ +ἀλήθειαν +ἐρῶ +δέ +φείδομαι +μή +τις +εἰς +ἐμέ +λογίσηται +ὑπέρ +ὅ +βλέπει +με +ἤ +ἀκούει +ἐξ +ἐμοῦ +καί +τῇ +ὑπερβολῇ +τῶν +ἀποκαλύψεων +διό +ἵνα +μή +ὑπεραίρωμαι +ἐδόθη +μοι +σκόλοψ +τῇ +σαρκί +ἄγγελος +Σατανᾶ +ἵνα +με +κολαφίζῃ +ἵνα +μή +ὑπεραίρωμαι +ὑπέρ +τούτου +τρίς +τόν +Κύριον +παρεκάλεσα +ἵνα +ἀποστῇ +ἀπ’ +ἐμοῦ +καί +εἴρηκεν +μοι +Ἀρκεῖ +σοι +ἡ +χάρις +μου +γάρ +ἡ +δύναμις +ἐν +ἀσθενείᾳ +τελεῖται +οὖν +Ἥδιστα +μᾶλλον +καυχήσομαι +ἐν +ταῖς +ἀσθενείαις +ἵνα +ἐπισκηνώσῃ +ἐπ’ +ἐμέ +ἡ +δύναμις +τοῦ +Χριστοῦ +διό +εὐδοκῶ +ἐν +ἀσθενείαις +ἐν +ὕβρεσιν +ἐν +ἀνάγκαις +ἐν +διωγμοῖς +καί +στενοχωρίαις +ὑπέρ +Χριστοῦ +γάρ +ὅταν +ἀσθενῶ +τότε +δυνατός +εἰμι +Γέγονα +ἄφρων +ὑμεῖς +με +ἠναγκάσατε +γάρ +ἐγώ +ὤφειλον +ὑφ’ +ὑμῶν +συνίστασθαι +γάρ +οὐδέν +ὑστέρησα +τῶν +ὑπερλίαν +ἀποστόλων +εἰ +καί +οὐδέν +εἰμι +μέν +τά +σημεῖα +τοῦ +ἀποστόλου +κατειργάσθη +ἐν +ὑμῖν +ἐν +πάσῃ +ὑπομονῇ +τε +σημείοις +καί +τέρασιν +καί +δυνάμεσιν +γάρ +τί +ἐστιν +ὅ +ἡσσώθητε +ὑπέρ +τάς +λοιπάς +ἐκκλησίας +εἰ +μή +ὅτι +αὐτός +ἐγώ +οὐ +κατενάρκησα +ὑμῶν +χαρίσασθε +μοι +τήν +ἀδικίαν +ταύτην +Ἰδού +τρίτον +τοῦτο +ἑτοίμως +ἔχω +ἐλθεῖν +πρός +ὑμᾶς +καί +οὐ +καταναρκήσω +γάρ +οὐ +ζητῶ +τά +ὑμῶν +ἀλλά +ὑμᾶς +γάρ +οὐ +ὀφείλει +τά +τέκνα +τοῖς +γονεῦσιν +θησαυρίζειν +ἀλλά +οἱ +γονεῖς +τοῖς +τέκνοις +δέ +ἐγώ +ἥδιστα +δαπανήσω +καί +ἐκδαπανηθήσομαι +ὑπέρ +τῶν +ψυχῶν +ὑμῶν +εἰ +περισσοτέρως +ὑμᾶς +ἀγαπῶ +ἧσσον +ἀγαπῶμαι +δέ +Ἔστω +ἐγώ +οὐ +κατεβάρησα +ὑμᾶς +ἀλλά +ὑπάρχων +πανοῦργος +δόλῳ +ὑμᾶς +ἔλαβον +μή +τινα +ὧν +ἀπέσταλκα +πρός +ὑμᾶς +δι’ +αὐτοῦ +ἐπλεονέκτησα +ὑμᾶς +παρεκάλεσα +Τίτον +καί +συναπέστειλα +τόν +ἀδελφόν +μήτι +ἐπλεονέκτησεν +ὑμᾶς +Τίτος +οὐ +τῷ +αὐτῷ +Πνεύματι +περιεπατήσαμεν +οὐ +τοῖς +αὐτοῖς +ἴχνεσιν +Πάλαι +δοκεῖτε +ὅτι +ὑμῖν +ἀπολογούμεθα +κατέναντι +Θεοῦ +ἐν +Χριστῷ +λαλοῦμεν +δέ +ἀγαπητοί +τά +πάντα +ὑπέρ +τῆς +ὑμῶν +οἰκοδομῆς +γάρ +φοβοῦμαι +μή +πως +ἐλθών +οὐχ +οἵους +θέλω +εὕρω +ὑμᾶς +κἀγώ +εὑρεθῶ +ὑμῖν +οἷον +οὐ +θέλετε +μή +πως +ἔρις +ζῆλος +θυμοί +ἐριθεῖαι +καταλαλιαί +ψιθυρισμοί +φυσιώσεις +ἀκαταστασίαι +μή +πάλιν +ἐλθόντος +μου +ταπεινώσῃ +με +ὁ +Θεός +μου +πρός +ὑμᾶς +καί +πενθήσω +πολλούς +τῶν +προημαρτηκότων +καί +μή +μετανοησάντων +ἐπί +τῇ +ἀκαθαρσίᾳ +καί +πορνείᾳ +καί +ἀσελγείᾳ +ᾗ +ἔπραξαν +Τρίτον +τοῦτο +ἔρχομαι +πρός +ὑμᾶς +ἐπί +στόματος +δύο +μαρτύρων +καί +τριῶν +σταθήσεται +πᾶν +ῥῆμα +προείρηκα +καί +προλέγω +ὡς +παρών +τό +δεύτερον +καί +ἀπών +νῦν +τοῖς +προημαρτηκόσιν +καί +τοῖς +λοιποῖς +πᾶσιν +ὅτι +ἐάν +ἔλθω +εἰς +τό +πάλιν +οὐ +φείσομαι +ἐπεί +ζητεῖτε +δοκιμήν +τοῦ +ἐν +ἐμοί +λαλοῦντος +Χριστοῦ +ὅς +εἰς +ὑμᾶς +οὐκ +ἀσθενεῖ +ἀλλά +δυνατεῖ +ἐν +ὑμῖν +γάρ +καί +ἐσταυρώθη +ἐξ +ἀσθενείας +ἀλλά +ζῇ +ἐκ +δυνάμεως +Θεοῦ +γάρ +καί +ἡμεῖς +ἀσθενοῦμεν +ἐν +αὐτῷ +ἀλλά +ζήσομεν +σύν +αὐτῷ +ἐκ +δυνάμεως +Θεοῦ +εἰς +ὑμᾶς +Ἑαυτούς +πειράζετε +εἰ +ἐστέ +ἐν +τῇ +πίστει +ἑαυτούς +δοκιμάζετε +ἤ +οὐκ +ἐπιγινώσκετε +ἑαυτούς +ὅτι +Ἰησοῦς +Χριστός +ἐν +ὑμῖν +εἰ +μήτι +ἀδόκιμοι +ἐστε +δέ +ἐλπίζω +ὅτι +γνώσεσθε +ὅτι +ἡμεῖς +οὐκ +ἐσμέν +ἀδόκιμοι +δέ +εὐχόμεθα +πρός +τόν +Θεόν +μή +ποιῆσαι +ὑμᾶς +κακόν +μηδέν +οὐχ +ἵνα +ἡμεῖς +δόκιμοι +φανῶμεν +ἀλλ’ +ἵνα +ὑμεῖς +τό +καλόν +ποιῆτε +δέ +ἡμεῖς +ὡς +ἀδόκιμοι +ὦμεν +γάρ +οὐ +δυνάμεθα +τι +κατά +τῆς +ἀληθείας +ἀλλά +ὑπέρ +τῆς +ἀληθείας +γάρ +χαίρομεν +ὅταν +ἡμεῖς +ἀσθενῶμεν +δέ +ὑμεῖς +δυνατοί +ἦτε +καί +εὐχόμεθα +τοῦτο +τήν +ὑμῶν +κατάρτισιν +Διά +τοῦτο +ταῦτα +ἀπών +γράφω +ἵνα +παρών +μή +ἀποτόμως +χρήσωμαι +κατά +τήν +ἐξουσίαν +ἥν +ὁ +Κύριος +ἔδωκεν +μοι +εἰς +οἰκοδομήν +καί +οὐκ +εἰς +καθαίρεσιν +ἀδελφοί +Λοιπόν +χαίρετε +καταρτίζεσθε +παρακαλεῖσθε +τό +αὐτό +φρονεῖτε +εἰρηνεύετε +καί +ὁ +Θεός +τῆς +ἀγάπης +καί +εἰρήνης +ἔσται +μεθ’ +ὑμῶν +Ἀσπάσασθε +ἀλλήλους +ἐν +ἁγίῳ +φιλήματι +Ἀσπάζονται +ὑμᾶς +οἱ +ἅγιοι +πάντες +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +καί +ἡ +ἀγάπη +τοῦ +Θεοῦ +καί +ἡ +κοινωνία +τοῦ +Ἁγίου +Πνεύματος +μετά +πάντων +ὑμῶν +Παῦλος +ἀπόστολος +οὐκ +ἀπ’ +ἀνθρώπων +οὐδέ +δι’ +ἀνθρώπου +ἀλλά +διά +Ἰησοῦ +Χριστοῦ +καί +Θεοῦ +Πατρός +τοῦ +ἐγείραντος +αὐτόν +ἐκ +νεκρῶν +καί +οἱ +σύν +ἐμοί +πάντες +ἀδελφοί +ταῖς +ἐκκλησίαις +τῆς +Γαλατίας +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +τοῦ +δόντος +ἑαυτόν +ὑπέρ +τῶν +ἁμαρτιῶν +ἡμῶν +ὅπως +ἐξέληται +ἡμᾶς +ἐκ +τοῦ +αἰῶνος +τοῦ +ἐνεστῶτος +πονηροῦ +κατά +τό +θέλημα +τοῦ +Θεοῦ +καί +Πατρός +ἡμῶν +ᾧ +ἡ +δόξα +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Θαυμάζω +ὅτι +οὕτως +ταχέως +μετατίθεσθε +ἀπό +τοῦ +καλέσαντος +ὑμᾶς +ἐν +χάριτι +Χριστοῦ +εἰς +ἕτερον +εὐαγγέλιον +ὅ +οὐκ +ἔστιν +ἄλλο +εἰ +μή +τινές +εἰσιν +οἱ +ταράσσοντες +ὑμᾶς +καί +θέλοντες +μεταστρέψαι +τό +εὐαγγέλιον +τοῦ +Χριστοῦ +ἀλλά +καί +ἐάν +ἡμεῖς +ἤ +ἄγγελος +ἐξ +οὐρανοῦ +εὐαγγελίσηται +ὑμῖν +παρ’ +ὅ +εὐηγγελισάμεθα +ὑμῖν +ἀνάθεμα +ἔστω +ὡς +προειρήκαμεν +καί +ἄρτι +πάλιν +λέγω +εἴ +τις +ὑμᾶς +εὐαγγελίζεται +παρ’ +ὅ +παρελάβετε +ἀνάθεμα +ἔστω +γάρ +Ἄρτι +πείθω +ἀνθρώπους +ἤ +τόν +Θεόν +ἤ +ζητῶ +ἀνθρώποις +ἀρέσκειν +εἰ +ἔτι +ἀνθρώποις +ἤρεσκον +ἄν +Χριστοῦ +δοῦλος +οὐκ +ἤμην +γάρ +ἀδελφοί +γνωρίζω +ὑμῖν +τό +εὐαγγέλιον +τό +εὐαγγελισθέν +ὑπ’ +ἐμοῦ +ὅτι +οὐκ +ἔστιν +κατά +ἄνθρωπον +γάρ +οὐδέ +ἐγώ +παρά +ἀνθρώπου +παρέλαβον +αὐτό +οὔτε +ἐδιδάχθην +ἀλλά +δι’ +ἀποκαλύψεως +Ἰησοῦ +Χριστοῦ +γάρ +Ἠκούσατε +τήν +ἐμήν +ἀναστροφήν +ποτε +ἐν +τῷ +Ἰουδαϊσμῷ +ὅτι +καθ’ +ὑπερβολήν +ἐδίωκον +τήν +ἐκκλησίαν +τοῦ +Θεοῦ +καί +ἐπόρθουν +αὐτήν +καί +προέκοπτον +ἐν +τῷ +Ἰουδαϊσμῷ +ὑπέρ +πολλούς +συνηλικιώτας +ἐν +τῷ +γένει +μου +περισσοτέρως +ὑπάρχων +ζηλωτής +τῶν +πατρικῶν +μου +παραδόσεων +δέ +Ὅτε +εὐδόκησεν +ὁ +ἀφορίσας +με +ἐκ +κοιλίας +μητρός +μου +καί +καλέσας +διά +τῆς +χάριτος +αὐτοῦ +ἀποκαλύψαι +τόν +Υἱόν +αὐτοῦ +ἐν +ἐμοί +ἵνα +εὐαγγελίζωμαι +αὐτόν +ἐν +τοῖς +ἔθνεσιν +εὐθέως +οὐ +προσανεθέμην +σαρκί +καί +αἵματι +οὐδέ +ἀνῆλθον +εἰς +Ἱεροσόλυμα +πρός +τούς +πρό +ἐμοῦ +ἀποστόλους +ἀλλά +ἀπῆλθον +εἰς +Ἀραβίαν +καί +πάλιν +ὑπέστρεψα +εἰς +Δαμασκόν +Ἔπειτα +μετά +τρία +ἔτη +ἀνῆλθον +εἰς +Ἱεροσόλυμα +ἱστορῆσαι +Κηφᾶν +καί +ἐπέμεινα +πρός +αὐτόν +ἡμέρας +δεκαπέντε +δέ +ἕτερον +τῶν +ἀποστόλων +οὐκ +εἶδον +εἰ +μή +Ἰάκωβον +τόν +ἀδελφόν +τοῦ +Κυρίου +δέ +ἅ +γράφω +ὑμῖν +ἰδού +ἐνώπιον +τοῦ +Θεοῦ +ὅτι +οὐ +ψεύδομαι +ἔπειτα +ἦλθον +εἰς +τά +κλίματα +τῆς +Συρίας +καί +τῆς +Κιλικίας +δέ +ἤμην +ἀγνοούμενος +τῷ +προσώπῳ +ταῖς +ἐκκλησίαις +τῆς +Ἰουδαίας +ταῖς +ἐν +Χριστῷ +δέ +μόνον +ἀκούοντες +ἦσαν +ὅτι +Ὁ +διώκων +ἡμᾶς +ποτε +νῦν +εὐαγγελίζεται +τήν +πίστιν +ἥν +ποτε +ἐπόρθει +καί +ἐδόξαζον +ἐν +ἐμοί +τόν +Θεόν +Ἔπειτα +διά +δεκατεσσάρων +ἐτῶν +πάλιν +ἀνέβην +εἰς +Ἱεροσόλυμα +μετά +Βαρνάβα +συνπαραλαβών +καί +Τίτον +δέ +ἀνέβην +κατά +ἀποκάλυψιν +καί +ἀνεθέμην +αὐτοῖς +τό +εὐαγγέλιον +ὅ +κηρύσσω +ἐν +τοῖς +ἔθνεσιν +δέ +κατ’ +ἰδίαν +τοῖς +δοκοῦσιν +μή +πως +εἰς +κενόν +τρέχω +ἤ +ἔδραμον +ἀλλ’ +οὐδέ +Τίτος +ὁ +σύν +ἐμοί +Ἕλλην +ὤν +ἠναγκάσθη +περιτμηθῆναι +δέ +διά +τούς +παρεισάκτους +ψευδαδέλφους +οἵτινες +παρεισῆλθον +κατασκοπῆσαι +τήν +ἐλευθερίαν +ἡμῶν +ἥν +ἔχομεν +ἐν +Χριστῷ +Ἰησοῦ +ἵνα +ἡμᾶς +καταδουλώσουσιν +οἷς +οὐδέ +πρός +ὥραν +εἴξαμεν +τῇ +ὑποταγῇ +ἵνα +ἡ +ἀλήθεια +τοῦ +εὐαγγελίου +διαμείνῃ +πρός +ὑμᾶς +δέ +ἀπό +τῶν +δοκούντων +εἶναι +τι +ὁποῖοι +ποτε +ἦσαν +οὐδέν +μοι +διαφέρει +πρόσωπον +ἀνθρώπου +ὁ +Θεός +οὐ +λαμβάνει +γάρ +ἐμοί +οἱ +δοκοῦντες +οὐδέν +προσανέθεντο +ἀλλά +τοὐναντίον +ἰδόντες +ὅτι +πεπίστευμαι +τό +εὐαγγέλιον +τῆς +ἀκροβυστίας +καθώς +Πέτρος +τῆς +περιτομῆς +γάρ +ὁ +ἐνεργήσας +Πέτρῳ +εἰς +ἀποστολήν +τῆς +περιτομῆς +ἐνήργησεν +καί +ἐμοί +εἰς +τά +ἔθνη +καί +γνόντες +τήν +χάριν +τήν +δοθεῖσαν +μοι +Ἰάκωβος +καί +Κηφᾶς +καί +Ἰωάνης +οἱ +δοκοῦντες +στῦλοι +εἶναι +δεξιάς +κοινωνίας +ἔδωκαν +ἐμοί +καί +Βαρνάβα +ἵνα +ἡμεῖς +εἰς +τά +ἔθνη +δέ +αὐτοί +εἰς +τήν +περιτομήν +μόνον +ἵνα +τῶν +πτωχῶν +μνημονεύωμεν +ὅ +καί +ἐσπούδασα +αὐτό +τοῦτο +ποιῆσαι +δέ +Ὅτε +ἦλθεν +Κηφᾶς +εἰς +Ἀντιόχειαν +κατά +πρόσωπον +αὐτῷ +ἀντέστην +ὅτι +κατεγνωσμένος +ἦν +γάρ +πρό +τοῦ +ἐλθεῖν +τινας +ἀπό +Ἰακώβου +μετά +τῶν +ἐθνῶν +συνήσθιεν +δέ +ὅτε +ἦλθον +ὑπέστελλεν +καί +ἀφώριζεν +ἑαυτόν +φοβούμενος +τούς +ἐκ +περιτομῆς +καί +συνυπεκρίθησαν +αὐτῷ +καί +οἱ +λοιποί +Ἰουδαῖοι +ὥστε +καί +Βαρνάβας +συναπήχθη +αὐτῶν +τῇ +ὑποκρίσει +ἀλλ’ +ὅτε +εἶδον +ὅτι +οὐκ +ὀρθοποδοῦσιν +πρός +τήν +ἀλήθειαν +τοῦ +εὐαγγελίου +εἶπον +τῷ +Κηφᾷ +ἔμπροσθεν +πάντων +Εἰ +σύ +Ἰουδαῖος +ὑπάρχων +ἐθνικῶς +καί +οὐκ +Ἰουδαϊκῶς +ζῇς +πῶς +ἀναγκάζεις +τά +ἔθνη +ἰουδαΐζειν +Ἠμεῖς +φύσει +Ἰουδαῖοι +καί +οὐκ +ἐξ +ἐθνῶν +ἁμαρτωλοί +δέ +εἰδότες +ὅτι +οὐ +δικαιοῦται +ἄνθρωπος +ἐξ +ἔργων +νόμου +ἐάν +μή +διά +πίστεως +Χριστοῦ +Ἰησοῦ +καί +ἡμεῖς +εἰς +Χριστόν +Ἰησοῦν +ἐπιστεύσαμεν +ἵνα +δικαιωθῶμεν +ἐκ +πίστεως +Χριστοῦ +καί +οὐκ +ἐξ +ἔργων +νόμου +ὅτι +ἐξ +ἔργων +νόμου +οὐ +δικαιωθήσεται +πᾶσα +σάρξ +δέ +εἰ +ζητοῦντες +δικαιωθῆναι +ἐν +Χριστῷ +εὑρέθημεν +καί +αὐτοί +ἁμαρτωλοί +ἆρα +Χριστός +ἁμαρτίας +διάκονος +μή +γένοιτο +γάρ +εἰ +ἅ +κατέλυσα +ταῦτα +πάλιν +οἰκοδομῶ +παραβάτην +ἐμαυτόν +συνιστάνω +γάρ +ἐγώ +διά +νόμου +νόμῳ +ἀπέθανον +ἵνα +Θεῷ +ζήσω +Χριστῷ +συνεσταύρωμαι +δέ +ζῶ +οὐκέτι +ἐγώ +δέ +ζῇ +ἐν +ἐμοί +Χριστός +δέ +ὅ +νῦν +ζῶ +ἐν +σαρκί +ζῶ +ἐν +πίστει +τῇ +τοῦ +Υἱοῦ +τοῦ +Θεοῦ +τοῦ +ἀγαπήσαντος +με +καί +παραδόντος +ἑαυτόν +ὑπέρ +ἐμοῦ +Οὐκ +ἀθετῶ +τήν +χάριν +τοῦ +Θεοῦ +γάρ +εἰ +διά +νόμου +δικαιοσύνη +ἄρα +Χριστός +δωρεάν +ἀπέθανεν +Ὦ +ἀνόητοι +Γαλάται +τίς +ὑμᾶς +ἐβάσκανεν +οἷς +κατ’ +ὀφθαλμούς +Ἰησοῦς +Χριστός +προεγράφη +ἐσταυρωμένος +θέλω +τοῦτο +μόνον +μαθεῖν +ἀφ’ +ὑμῶν +τό +Πνεῦμα +ἐλάβετε +ἐξ +ἔργων +νόμου +ἤ +ἐξ +ἀκοῆς +πίστεως +οὕτως +ἀνόητοι +ἐστε +ἐναρξάμενοι +Πνεύματι +νῦν +σαρκί +ἐπιτελεῖσθε +τοσαῦτα +ἐπάθετε +εἰκῇ +εἴ +γε +καί +εἰκῇ +οὖν +ὁ +ἐπιχορηγῶν +ὑμῖν +τό +Πνεῦμα +καί +ἐνεργῶν +δυνάμεις +ἐν +ὑμῖν +ἐξ +ἔργων +νόμου +ἤ +ἐξ +ἀκοῆς +πίστεως +καθώς +Ἀβραάμ +ἐπίστευσεν +τῷ +Θεῷ +καί +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην +ἄρα +Γινώσκετε +ὅτι +οἱ +ἐκ +πίστεως +οὗτοι +υἱοί +Ἀβραάμ +εἰσιν +δέ +ἡ +γραφή +προϊδοῦσα +ὅτι +ἐκ +πίστεως +δικαιοῖ +τά +ἔθνη +ὁ +Θεός +προευηγγελίσατο +τῷ +Ἀβραάμ +ὅτι +Ἐνευλογηθήσονται +ἐν +σοί +πάντα +τά +ἔθνη +ὥστε +οἱ +ἐκ +πίστεως +εὐλογοῦνται +σύν +τῷ +πιστῷ +Ἀβραάμ +γάρ +Ὅσοι +ἐξ +ἔργων +νόμου +εἰσίν +ὑπό +κατάραν +εἰσίν +γάρ +γέγραπται +ὅτι +Ἐπικατάρατος +πᾶς +ὅς +οὐκ +ἐμμένει +πᾶσιν +τοῖς +γεγραμμένοις +ἐν +τῷ +βιβλίῳ +τοῦ +νόμου +τοῦ +ποιῆσαι +αὐτά +δέ +ὅτι +ἐν +νόμῳ +οὐδείς +δικαιοῦται +παρά +τῷ +Θεῷ +δῆλον +ὅτι +Ὁ +δίκαιος +ἐκ +πίστεως +ζήσεται +δέ +ὁ +νόμος +οὐκ +ἔστιν +ἐκ +πίστεως +ἀλλ’ +Ὁ +ποιήσας +αὐτά +ζήσεται +ἐν +αὐτοῖς +Χριστός +ἡμᾶς +ἐξηγόρασεν +ἐκ +τῆς +κατάρας +τοῦ +νόμου +γενόμενος +ὑπέρ +ἡμῶν +κατάρα +ὅτι +γέγραπται +Ἐπικατάρατος +πᾶς +ὁ +κρεμάμενος +ἐπί +ξύλου +ἵνα +εἰς +τά +ἔθνη +ἡ +εὐλογία +τοῦ +Ἀβραάμ +γένηται +ἐν +Ἰησοῦ +Χριστῷ +ἵνα +τήν +ἐπαγγελίαν +τοῦ +Πνεύματος +λάβωμεν +διά +τῆς +πίστεως +Ἀδελφοί +κατά +ἄνθρωπον +λέγω +ὅμως +ἀνθρώπου +κεκυρωμένην +διαθήκην +οὐδείς +ἀθετεῖ +ἤ +ἐπιδιατάσσεται +δέ +ἐρρέθησαν +αἱ +ἐπαγγελίαι +τῷ +Ἀβραάμ +καί +τῷ +σπέρματι +αὐτοῦ +οὐ +λέγει +Καί +τοῖς +σπέρμασιν +ὡς +ἐπί +πολλῶν +ἀλλ’ +ὡς +ἐφ’ +ἑνός +Καί +τῷ +σπέρματι +σου +ὅς +ἐστιν +Χριστός +δέ +τοῦτο +λέγω +διαθήκην +προκεκυρωμένην +ὑπό +τοῦ +Θεοῦ +ὁ +μετά +τετρακόσια +καί +τριάκοντα +ἔτη +γεγονώς +νόμος +οὐκ +ἀκυροῖ +εἰς +τό +καταργῆσαι +τήν +ἐπαγγελίαν +γάρ +εἰ +ἐκ +νόμου +ἡ +κληρονομία +οὐκέτι +ἐξ +ἐπαγγελίας +δέ +τῷ +Ἀβραάμ +δι’ +ἐπαγγελίας +κεχάρισται +ὁ +Θεός +οὖν +Τί +ὁ +νόμος +τῶν +παραβάσεων +χάριν +προσετέθη +ἄχρις +ἄν +ἔλθῃ +τό +σπέρμα +ᾧ +ἐπήγγελται +διαταγείς +δι’ +ἀγγέλων +ἐν +χειρί +μεσίτου +δέ +ὁ +μεσίτης +ἑνός +οὐκ +ἔστιν +δέ +ὁ +Θεός +εἷς +ἐστιν +οὖν +ὁ +νόμος +κατά +τῶν +ἐπαγγελιῶν +τοῦ +Θεοῦ +μή +γένοιτο +γάρ +εἰ +ἐδόθη +νόμος +ὁ +δυνάμενος +ζωοποιῆσαι +ἄν +ὄντως +ἐκ +νόμου +ἦν +ἡ +δικαιοσύνη +ἀλλά +συνέκλεισεν +ἡ +γραφή +τά +πάντα +ὑπό +ἁμαρτίαν +ἵνα +ἡ +ἐπαγγελία +ἐκ +πίστεως +Ἰησοῦ +Χριστοῦ +δοθῇ +τοῖς +πιστεύουσιν +δέ +Πρό +τοῦ +ἐλθεῖν +τήν +πίστιν +ὑπό +νόμον +ἐφρουρούμεθα +συνκλειόμενοι +εἰς +τήν +μέλλουσαν +ἀποκαλυφθῆναι +πίστιν +ὥστε +ὁ +νόμος +παιδαγωγός +ἡμῶν +γέγονεν +εἰς +Χριστόν +ἵνα +ἐκ +πίστεως +δικαιωθῶμεν +δέ +ἐλθούσης +τῆς +πίστεως +οὐκέτι +ὑπό +παιδαγωγόν +ἐσμεν +γάρ +Πάντες +υἱοί +Θεοῦ +ἐστε +διά +τῆς +πίστεως +ἐν +Χριστῷ +Ἰησοῦ +γάρ +ὅσοι +εἰς +Χριστόν +ἐβαπτίσθητε +Χριστόν +ἐνεδύσασθε +οὐκ +ἔνι +Ἰουδαῖος +οὐδέ +Ἕλλην +οὐκ +ἔνι +δοῦλος +οὐδέ +ἐλεύθερος +οὐκ +ἔνι +ἄρσεν +καί +θῆλυ +γάρ +πάντες +ὑμεῖς +εἷς +ἐστε +ἐν +Χριστῷ +Ἰησοῦ +δέ +εἰ +ὑμεῖς +Χριστοῦ +ἄρα +τοῦ +Ἀβραάμ +σπέρμα +ἐστέ +κατ’ +ἐπαγγελίαν +κληρονόμοι +δέ +Λέγω +ἐφ’ +ὅσον +χρόνον +ὁ +κληρονόμος +νήπιος +ἐστιν +οὐδέν +διαφέρει +δούλου +κύριος +πάντων +ὤν +ἀλλά +ὑπό +ἐπιτρόπους +καί +οἰκονόμους +ἐστίν +ἄχρι +τῆς +προθεσμίας +τοῦ +πατρός +οὕτως +καί +ἡμεῖς +ὅτε +ἦμεν +νήπιοι +ὑπό +τά +στοιχεῖα +τοῦ +κόσμου +ἤμεθα +δεδουλωμένοι +δέ +ὅτε +ἦλθεν +τό +πλήρωμα +τοῦ +χρόνου +ἐξαπέστειλεν +ὁ +Θεός +τόν +Υἱόν +αὐτοῦ +γενόμενον +ἐκ +γυναικός +γενόμενον +ὑπό +νόμον +ἵνα +τούς +ὑπό +νόμον +ἐξαγοράσῃ +ἵνα +τήν +υἱοθεσίαν +ἀπολάβωμεν +δέ +Ὅτι +ἐστε +υἱοί +ἐξαπέστειλεν +ὁ +Θεός +τό +Πνεῦμα +τοῦ +Υἱοῦ +αὐτοῦ +εἰς +τάς +καρδίας +ἡμῶν +κρᾶζον +Ἀββᾶ +ὁ +Πατήρ +ὥστε +εἶ +οὐκέτι +δοῦλος +ἀλλά +υἱός +δέ +εἰ +υἱός +καί +κληρονόμος +διά +Θεοῦ +Ἀλλά +μέν +τότε +οὐκ +εἰδότες +Θεόν +ἐδουλεύσατε +τοῖς +φύσει +μή +οὖσιν +θεοῖς +δέ +νῦν +γνόντες +Θεόν +δέ +μᾶλλον +γνωσθέντες +ὑπό +Θεοῦ +πῶς +ἐπιστρέφετε +πάλιν +ἐπί +τά +ἀσθενῆ +καί +πτωχά +στοιχεῖα +οἷς +πάλιν +ἄνωθεν +δουλεῦσαι +θέλετε +παρατηρεῖσθε +ἡμέρας +καί +μῆνας +καί +καιρούς +καί +ἐνιαυτούς +φοβοῦμαι +ὑμᾶς +μή +πως +εἰκῇ +κεκοπίακα +εἰς +ὑμᾶς +Γίνεσθε +ὡς +ἐγώ +ὅτι +κἀγώ +ὡς +ὑμεῖς +ἀδελφοί +δέομαι +ὑμῶν +οὐδέν +με +ἠδικήσατε +δέ +οἴδατε +ὅτι +δι’ +ἀσθένειαν +τῆς +σαρκός +εὐηγγελισάμην +ὑμῖν +τό +πρότερον +καί +οὐκ +τόν +πειρασμόν +ὑμῶν +ἐν +τῇ +σαρκί +μου +ἐξουθενήσατε +οὐδέ +ἐξεπτύσατε +ἀλλά +ὡς +ἄγγελον +Θεοῦ +ἐδέξασθε +με +ὡς +Χριστόν +Ἰησοῦν +οὖν +ποῦ +ὁ +μακαρισμός +ὑμῶν +γάρ +μαρτυρῶ +ὑμῖν +ὅτι +εἰ +δυνατόν +τούς +ὀφθαλμούς +ὑμῶν +ἐξορύξαντες +ἐδώκατε +μοι +ὥστε +ἐχθρός +ὑμῶν +γέγονα +ἀληθεύων +ὑμῖν +ζηλοῦσιν +ὑμᾶς +οὐ +καλῶς +ἀλλά +ἐκκλεῖσαι +ὑμᾶς +θέλουσιν +ἵνα +αὐτούς +ζηλοῦτε +δέ +καλόν +ζηλοῦσθαι +ἐν +καλῷ +πάντοτε +καί +μή +μόνον +ἐν +τῷ +παρεῖναι +με +πρός +ὑμᾶς +τέκνα +μου +οὕς +πάλιν +ὠδίνω +μέχρις +οὗ +μορφωθῇ +Χριστός +ἐν +ὑμῖν +δέ +ἤθελον +παρεῖναι +πρός +ὑμᾶς +ἄρτι +καί +ἀλλάξαι +τήν +φωνήν +μου +ὅτι +ἀποροῦμαι +ἐν +ὑμῖν +Λέγετε +μοι +οἱ +ὑπό +νόμον +εἶναι +θέλοντες +τόν +νόμον +οὐκ +ἀκούετε +γάρ +γέγραπται +ὅτι +Ἀβραάμ +ἔσχεν +δύο +υἱούς +ἕνα +ἐκ +τῆς +παιδίσκης +καί +ἕνα +ἐκ +τῆς +ἐλευθέρας +ἀλλ’ +μέν +ὁ +ἐκ +τῆς +παιδίσκης +κατά +σάρκα +γεγέννηται +δέ +ὁ +ἐκ +τῆς +ἐλευθέρας +διά +τῆς +ἐπαγγελίας +ἅτινα +ἐστιν +ἀλληγορούμενα +γάρ +αὗται +εἰσιν +δύο +διαθῆκαι +μέν +μία +ἀπό +ὄρους +Σινᾶ +εἰς +δουλείαν +γεννῶσα +ἥτις +ἐστίν +Ἄγαρ +δέ +τό +Ἄγαρ +Σινᾶ +ὄρος +ἐστίν +ἐν +τῇ +Ἀραβίᾳ +δέ +συνστοιχεῖ +τῇ +νῦν +Ἱερουσαλήμ +γάρ +δουλεύει +μετά +τῶν +τέκνων +αὐτῆς +δέ +ἡ +ἄνω +Ἱερουσαλήμ +ἐλευθέρα +ἐστίν +ἥτις +ἐστίν +μήτηρ +ἡμῶν +γάρ +γέγραπται +Εὐφράνθητι +στεῖρα +ἡ +οὐ +τίκτουσα +ῥῆξον +καί +βόησον +ἡ +οὐκ +ὠδίνουσα +ὅτι +πολλά +τά +τέκνα +τῆς +ἐρήμου +μᾶλλον +ἤ +τῆς +ἐχούσης +τόν +ἄνδρα +δέ +ἀδελφοί +ὑμεῖς +κατά +Ἰσαάκ +ἐπαγγελίας +τέκνα +ἐστέ +ἀλλ’ +ὥσπερ +τότε +ὁ +κατά +σάρκα +γεννηθείς +ἐδίωκεν +τόν +κατά +Πνεῦμα +οὕτως +καί +νῦν +ἀλλά +τί +λέγει +ἡ +γραφή +Ἔκβαλε +τήν +παιδίσκην +καί +τόν +υἱόν +αὐτῆς +γάρ +οὐ +μή +κληρονομήσει +ὁ +υἱός +τῆς +παιδίσκης +μετά +τοῦ +υἱοῦ +τῆς +ἐλευθέρας +διό +ἀδελφοί +ἐσμέν +οὐκ +παιδίσκης +τέκνα +ἀλλά +τῆς +ἐλευθέρας +Τῇ +ἐλευθερίᾳ +ἡμᾶς +Χριστός +ἠλευθέρωσεν +οὖν +στήκετε +καί +μή +πάλιν +ζυγῷ +δουλείας +ἐνέχεσθε +Ἴδε +ἐγώ +Παῦλος +λέγω +ὑμῖν +ὅτι +ἐάν +περιτέμνησθε +Χριστός +ὑμᾶς +οὐδέν +ὠφελήσει +δέ +μαρτύρομαι +πάλιν +παντί +ἀνθρώπῳ +περιτεμνομένῳ +ὅτι +ὀφειλέτης +ἐστίν +ὅλον +τόν +νόμον +ποιῆσαι +κατηργήθητε +ἀπό +Χριστοῦ +οἵτινες +ἐν +νόμῳ +δικαιοῦσθε +τῆς +χάριτος +ἐξεπέσατε +γάρ +ἡμεῖς +Πνεύματι +ἐκ +πίστεως +ἐλπίδα +δικαιοσύνης +ἀπεκδεχόμεθα +γάρ +ἐν +Χριστῷ +Ἰησοῦ +οὔτε +περιτομή +οὔτε +ἀκροβυστία +τι +ἰσχύει +ἀλλά +πίστις +δι’ +ἀγάπης +ἐνεργουμένη +Ἐτρέχετε +καλῶς +τίς +ἐνέκοψεν +ὑμᾶς +ἀληθείᾳ +μή +πείθεσθαι +ἡ +πεισμονή +οὐκ +ἐκ +τοῦ +καλοῦντος +ὑμᾶς +μικρά +ζύμη +ὅλον +τό +φύραμα +ζυμοῖ +ἐγώ +πέποιθα +εἰς +ὑμᾶς +ἐν +Κυρίῳ +ὅτι +οὐδέν +ἄλλο +φρονήσετε +δέ +ὁ +ταράσσων +ὑμᾶς +βαστάσει +τό +κρίμα +ἐάν +ὅστις +ᾖ +δέ +ἀδελφοί +εἰ +Ἐγώ +περιτομήν +ἔτι +κηρύσσω +τί +ἔτι +διώκομαι +ἄρα +κατήργηται +τό +σκάνδαλον +τοῦ +σταυροῦ +Ὄφελον +καί +ἀποκόψονται +οἱ +ἀναστατοῦντες +ὑμᾶς +γάρ +Ὑμεῖς +ἐπ’ +ἐλευθερίᾳ +ἐκλήθητε +ἀδελφοί +μόνον +μή +τήν +ἐλευθερίαν +εἰς +ἀφορμήν +τῇ +σαρκί +ἀλλά +διά +τῆς +ἀγάπης +δουλεύετε +ἀλλήλοις +γάρ +ὁ +πᾶς +νόμος +πεπλήρωται +ἐν +ἑνί +λόγῳ +ἐν +τῷ +Ἀγαπήσεις +τόν +πλησίον +σου +ὡς +σεαυτόν +δέ +εἰ +ἀλλήλους +δάκνετε +καί +κατεσθίετε +βλέπετε +μή +ὑπ’ +ἀλλήλων +ἀναλωθῆτε +δέ +Λέγω +Πνεύματι +περιπατεῖτε +καί +ἐπιθυμίαν +σαρκός +οὐ +μή +τελέσητε +γάρ +ἡ +σάρξ +ἐπιθυμεῖ +κατά +τοῦ +Πνεύματος +δέ +τό +Πνεῦμα +κατά +τῆς +σαρκός +γάρ +ταῦτα +ἀλλήλοις +ἀντίκειται +ἵνα +μή +ἐάν +ἅ +θέλητε +ταῦτα +ποιῆτε +δέ +εἰ +Πνεύματι +ἄγεσθε +οὐκ +ἐστέ +ὑπό +νόμον +δέ +φανερά +ἐστιν +τά +ἔργα +τῆς +σαρκός +ἅτινα +ἐστιν +πορνεία +ἀκαθαρσία +ἀσέλγεια +εἰδωλολατρεία +φαρμακεία +ἔχθραι +ἔρις +ζῆλος +θυμοί +ἐριθεῖαι +διχοστασίαι +αἱρέσεις +φθόνοι +μέθαι +κῶμοι +καί +τά +ὅμοια +τούτοις +ἅ +προλέγω +ὑμῖν +καθώς +προεῖπον +ὅτι +οἱ +τά +τοιαῦτα +πράσσοντες +βασιλείαν +Θεοῦ +οὐ +κληρονομήσουσιν +δέ +ὁ +καρπός +τοῦ +Πνεύματος +ἐστιν +ἀγάπη +χαρά +εἰρήνη +μακροθυμία +χρηστότης +ἀγαθωσύνη +πίστις +πραΰτης +ἐγκράτεια +κατά +τῶν +τοιούτων +οὐκ +ἔστιν +νόμος +δέ +οἱ +τοῦ +Χριστοῦ +Ἰησοῦ +τήν +σάρκα +ἐσταύρωσαν +σύν +τοῖς +παθήμασιν +καί +ταῖς +ἐπιθυμίαις +Εἰ +ζῶμεν +Πνεύματι +Πνεύματι +καί +στοιχῶμεν +μή +γινώμεθα +κενόδοξοι +ἀλλήλους +προκαλούμενοι +ἀλλήλοις +φθονοῦντες +Ἀδελφοί +ἐάν +καί +προλημφθῇ +ἄνθρωπος +ἔν +τινι +παραπτώματι +ὑμεῖς +οἱ +πνευματικοί +καταρτίζετε +τόν +τοιοῦτον +ἐν +πνεύματι +πραΰτητος +σκοπῶν +σεαυτόν +μή +καί +σύ +πειρασθῇς +Ἀλλήλων +τά +βάρη +βαστάζετε +καί +οὕτως +ἀναπληρώσετε +τόν +νόμον +τοῦ +Χριστοῦ +γάρ +εἰ +δοκεῖ +τις +εἶναι +τι +μηδέν +ὤν +φρεναπατᾷ +ἑαυτόν +δέ +τό +ἔργον +ἑαυτοῦ +δοκιμαζέτω +ἕκαστος +καί +τότε +εἰς +ἑαυτόν +μόνον +τό +καύχημα +ἕξει +καί +οὐκ +εἰς +τόν +ἕτερον +γάρ +ἕκαστος +τό +ἴδιον +φορτίον +βαστάσει +δέ +Κοινωνείτω +ὁ +κατηχούμενος +τόν +λόγον +τῷ +κατηχοῦντι +ἐν +πᾶσιν +ἀγαθοῖς +Μή +πλανᾶσθε +Θεός +οὐ +μυκτηρίζεται +γάρ +ἐάν +ὅ +σπείρῃ +ἄνθρωπος +τοῦτο +καί +θερίσει +ὅτι +ὁ +σπείρων +εἰς +τήν +σάρκα +ἑαυτοῦ +ἐκ +τῆς +σαρκός +θερίσει +φθοράν +δέ +ὁ +σπείρων +εἰς +τό +Πνεῦμα +ἐκ +τοῦ +Πνεύματος +θερίσει +ζωήν +αἰώνιον +δέ +τό +καλόν +ποιοῦντες +μή +ἐνκακῶμεν +γάρ +καιρῷ +ἰδίῳ +θερίσομεν +μή +ἐκλυόμενοι +Ἄρα +οὖν +ὡς +καιρόν +ἔχωμεν +ἐργαζώμεθα +τό +ἀγαθόν +πρός +πάντας +δέ +μάλιστα +πρός +τούς +οἰκείους +τῆς +πίστεως +Ἴδετε +πηλίκοις +γράμμασιν +ὑμῖν +ἔγραψα +τῇ +ἐμῇ +χειρί +Ὅσοι +θέλουσιν +εὐπροσωπῆσαι +ἐν +σαρκί +οὗτοι +ἀναγκάζουσιν +ὑμᾶς +περιτέμνεσθαι +ἵνα +μόνον +τῷ +σταυρῷ +τοῦ +Χριστοῦ +μή +διώκωνται +γάρ +οὐδέ +οἱ +περιτεμνόμενοι +αὐτοί +νόμον +φυλάσσουσιν +ἀλλά +θέλουσιν +ὑμᾶς +περιτέμνεσθαι +ἵνα +ἐν +τῇ +ὑμετέρᾳ +σαρκί +καυχήσωνται +δέ +ἐμοί +μή +γένοιτο +καυχᾶσθαι +εἰ +μή +ἐν +τῷ +σταυρῷ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +δι’ +οὗ +ἐμοί +κόσμος +ἐσταύρωται +κἀγώ +κόσμῳ +γάρ +τί +ἐστιν +οὔτε +περιτομή +οὔτε +ἀκροβυστία +ἀλλά +καινή +κτίσις +καί +ὅσοι +τῷ +κανόνι +τούτῳ +στοιχήσουσιν +εἰρήνη +καί +ἔλεος +ἐπ’ +αὐτούς +καί +ἐπί +τόν +Ἰσραήλ +τοῦ +Θεοῦ +Τοῦ +λοιποῦ +κόπους +μοι +μηδείς +παρεχέτω +γάρ +ἐγώ +τά +στίγματα +τοῦ +Ἰησοῦ +ἐν +τῷ +σώματι +μου +βαστάζω +Ἠ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +μετά +τοῦ +πνεύματος +ὑμῶν +ἀδελφοί +ἀμήν +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διά +θελήματος +Θεοῦ +τοῖς +ἁγίοις +τοῖς +οὖσιν +ἐν +Ἐφέσῳ +καί +πιστοῖς +ἐν +Χριστῷ +Ἰησοῦ +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +Εὐλογητός +ὁ +Θεός +καί +Πατήρ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὁ +εὐλογήσας +ἡμᾶς +ἐν +πάσῃ +εὐλογίᾳ +πνευματικῇ +ἐν +τοῖς +ἐπουρανίοις +ἐν +Χριστῷ +καθώς +ἐξελέξατο +ἡμᾶς +ἐν +αὐτῷ +πρό +καταβολῆς +κόσμου +εἶναι +ἡμᾶς +ἁγίους +καί +ἀμώμους +κατενώπιον +αὐτοῦ +ἐν +ἀγάπῃ +προορίσας +ἡμᾶς +εἰς +υἱοθεσίαν +διά +Ἰησοῦ +Χριστοῦ +εἰς +αὐτόν +κατά +τήν +εὐδοκίαν +τοῦ +θελήματος +αὐτοῦ +εἰς +ἔπαινον +δόξης +τῆς +χάριτος +αὐτοῦ +ἧς +ἐχαρίτωσεν +ἡμᾶς +ἐν +τῷ +Ἠγαπημένῳ +ἐν +ᾧ +ἔχομεν +τήν +ἀπολύτρωσιν +διά +τοῦ +αἵματος +αὐτοῦ +τήν +ἄφεσιν +τῶν +παραπτωμάτων +κατά +τό +πλοῦτος +τῆς +χάριτος +αὐτοῦ +ἧς +ἐπερίσσευσεν +εἰς +ἡμᾶς +ἐν +πάσῃ +σοφίᾳ +καί +φρονήσει +γνωρίσας +ἡμῖν +τό +μυστήριον +τοῦ +θελήματος +αὐτοῦ +κατά +τήν +εὐδοκίαν +αὐτοῦ +ἥν +προέθετο +ἐν +αὐτῷ +εἰς +οἰκονομίαν +τοῦ +πληρώματος +τῶν +καιρῶν +ἀνακεφαλαιώσασθαι +τά +πάντα +ἐν +τῷ +Χριστῷ +τά +ἐπί +τοῖς +οὐρανοῖς +καί +τά +ἐπί +τῆς +γῆς +ἐν +αὐτῷ +ἐν +ᾧ +καί +ἐκληρώθημεν +προορισθέντες +κατά +πρόθεσιν +τοῦ +τά +πάντα +ἐνεργοῦντος +κατά +τήν +βουλήν +τοῦ +θελήματος +αὐτοῦ +εἰς +τό +εἶναι +εἰς +ἔπαινον +δόξης +αὐτοῦ +ἡμᾶς +τούς +προηλπικότας +ἐν +τῷ +Χριστῷ +ἐν +ᾧ +καί +ὑμεῖς +ἀκούσαντες +τόν +λόγον +τῆς +ἀληθείας +τό +εὐαγγέλιον +τῆς +σωτηρίας +ὑμῶν +ἐν +ᾧ +καί +πιστεύσαντες +ἐσφραγίσθητε +τῷ +Πνεύματι +τῆς +ἐπαγγελίας +τῷ +Ἁγίῳ +ὅς +ἐστιν +ἀρραβών +τῆς +κληρονομίας +ἡμῶν +εἰς +ἀπολύτρωσιν +τῆς +περιποιήσεως +εἰς +ἔπαινον +τῆς +δόξης +αὐτοῦ +Διά +τοῦτο +κἀγώ +ἀκούσας +τήν +καθ’ +ὑμᾶς +πίστιν +ἐν +τῷ +Κυρίῳ +Ἰησοῦ +καί +τήν +ἀγάπην +τήν +εἰς +πάντας +τούς +ἁγίους +οὐ +παύομαι +εὐχαριστῶν +ὑπέρ +ὑμῶν +μνείαν +ποιούμενος +ἐπί +τῶν +προσευχῶν +μου +ἵνα +ὁ +Θεός +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὁ +Πατήρ +τῆς +δόξης +δώῃ +ὑμῖν +πνεῦμα +σοφίας +καί +ἀποκαλύψεως +ἐν +ἐπιγνώσει +αὐτοῦ +πεφωτισμένους +τούς +ὀφθαλμούς +τῆς +καρδίας +ὑμῶν +εἰς +τό +εἰδέναι +ὑμᾶς +τίς +ἐστιν +ἡ +ἐλπίς +τῆς +κλήσεως +αὐτοῦ +τίς +ὁ +πλοῦτος +τῆς +δόξης +τῆς +κληρονομίας +αὐτοῦ +ἐν +τοῖς +ἁγίοις +καί +τί +τό +ὑπερβάλλον +μέγεθος +τῆς +δυνάμεως +αὐτοῦ +εἰς +ἡμᾶς +τούς +πιστεύοντας +κατά +τήν +ἐνέργειαν +τοῦ +κράτους +τῆς +ἰσχύος +αὐτοῦ +ἥν +ἐνήργηκεν +ἐν +τῷ +Χριστῷ +ἐγείρας +αὐτόν +ἐκ +νεκρῶν +καί +καθίσας +ἐν +δεξιᾷ +αὐτοῦ +ἐν +τοῖς +ἐπουρανίοις +ὑπεράνω +πάσης +ἀρχῆς +καί +ἐξουσίας +καί +δυνάμεως +καί +κυριότητος +καί +παντός +ὀνόματος +ὀνομαζομένου +οὐ +μόνον +ἐν +τῷ +αἰῶνι +τούτῳ +ἀλλά +καί +ἐν +τῷ +μέλλοντι +καί +πάντα +ὑπέταξεν +ὑπό +τούς +πόδας +αὐτοῦ +καί +αὐτόν +ἔδωκεν +κεφαλήν +ὑπέρ +πάντα +τῇ +ἐκκλησίᾳ +ἥτις +ἐστίν +τό +σῶμα +αὐτοῦ +τό +πλήρωμα +τοῦ +τά +πάντα +ἐν +πᾶσιν +πληρουμένου +καί +ὑμᾶς +ὄντας +νεκρούς +τοῖς +παραπτώμασιν +καί +ταῖς +ἁμαρτίαις +ὑμῶν +ἐν +αἷς +ποτε +περιεπατήσατε +κατά +τόν +αἰῶνα +τοῦ +κόσμου +τούτου +κατά +τόν +ἄρχοντα +τῆς +ἐξουσίας +τοῦ +ἀέρος +τοῦ +πνεύματος +τοῦ +νῦν +ἐνεργοῦντος +ἐν +τοῖς +υἱοῖς +τῆς +ἀπειθείας +ἐν +οἷς +καί +ἡμεῖς +πάντες +ἀνεστράφημεν +ποτε +ἐν +ταῖς +ἐπιθυμίαις +τῆς +σαρκός +ἡμῶν +ποιοῦντες +τά +θελήματα +τῆς +σαρκός +καί +τῶν +διανοιῶν +καί +ἤμεθα +τέκνα +ὀργῆς +φύσει +ὡς +καί +οἱ +λοιποί +δέ +ὁ +Θεός +πλούσιος +ὤν +ἐν +ἐλέει +διά +τήν +πολλήν +ἀγάπην +αὐτοῦ +ἥν +ἠγάπησεν +ἡμᾶς +καί +ὄντας +ἡμᾶς +νεκρούς +τοῖς +παραπτώμασιν +συνεζωοποίησεν +τῷ +Χριστῷ +χάριτι +ἐστε +σεσῳσμένοι +καί +συνήγειρεν +καί +συνεκάθισεν +ἐν +τοῖς +ἐπουρανίοις +ἐν +Χριστῷ +Ἰησοῦ +ἵνα +ἐνδείξηται +ἐν +τοῖς +αἰῶσιν +τοῖς +ἐπερχομένοις +τό +ὑπερβάλλον +πλοῦτος +τῆς +χάριτος +αὐτοῦ +ἐν +χρηστότητι +ἐφ’ +ἡμᾶς +ἐν +Χριστῷ +Ἰησοῦ +γάρ +τῇ +χάριτι +ἐστε +σεσῳσμένοι +διά +πίστεως +καί +τοῦτο +οὐκ +ἐξ +ὑμῶν +Θεοῦ +τό +δῶρον +οὐκ +ἐξ +ἔργων +ἵνα +μή +τις +καυχήσηται +γάρ +ἐσμεν +αὐτοῦ +ποίημα +κτισθέντες +ἐν +Χριστῷ +Ἰησοῦ +ἐπί +ἔργοις +ἀγαθοῖς +οἷς +προητοίμασεν +ὁ +Θεός +ἵνα +ἐν +αὐτοῖς +περιπατήσωμεν +Διό +μνημονεύετε +ὅτι +ποτέ +ὑμεῖς +τά +ἔθνη +ἐν +σαρκί +οἱ +λεγόμενοι +ἀκροβυστία +ὑπό +τῆς +λεγομένης +περιτομῆς +ἐν +σαρκί +χειροποιήτου +ὅτι +ἦτε +τῷ +καιρῷ +ἐκείνῳ +χωρίς +Χριστοῦ +ἀπηλλοτριωμένοι +τῆς +πολιτείας +τοῦ +Ἰσραήλ +καί +ξένοι +τῶν +διαθηκῶν +τῆς +ἐπαγγελίας +ἐλπίδα +μή +ἔχοντες +καί +ἄθεοι +ἐν +τῷ +κόσμῳ +δέ +νυνί +ἐν +Χριστῷ +Ἰησοῦ +ὑμεῖς +οἵ +ποτε +ὄντες +μακράν +ἐγενήθητε +ἐγγύς +ἐν +τῷ +αἵματι +τοῦ +Χριστοῦ +γάρ +Αὐτός +ἐστιν +ἡ +εἰρήνη +ἡμῶν +ὁ +ποιήσας +τά +ἀμφότερα +ἕν +καί +τό +μεσότοιχον +τοῦ +φραγμοῦ +τήν +ἔχθραν +λύσας +ἐν +τῇ +σαρκί +αὐτοῦ +τόν +νόμον +τῶν +ἐντολῶν +ἐν +δόγμασιν +καταργήσας +ἵνα +τούς +δύο +κτίσῃ +ἐν +αὑτῷ +εἰς +ἕνα +καινόν +ἄνθρωπον +ποιῶν +εἰρήνην +καί +ἀποκαταλλάξῃ +τούς +ἀμφοτέρους +ἐν +ἑνί +σώματι +τῷ +Θεῷ +διά +τοῦ +σταυροῦ +ἀποκτείνας +τήν +ἔχθραν +ἐν +αὐτῷ +καί +ἐλθών +εὐηγγελίσατο +εἰρήνην +ὑμῖν +τοῖς +μακράν +καί +εἰρήνην +τοῖς +ἐγγύς +ὅτι +δι’ +αὐτοῦ +ἔχομεν +τήν +προσαγωγήν +οἱ +ἀμφότεροι +ἐν +ἑνί +Πνεύματι +πρός +τόν +Πατέρα +ἄρα +οὖν +οὐκέτι +ἐστέ +ξένοι +καί +πάροικοι +ἀλλά +ἐστέ +συνπολῖται +τῶν +ἁγίων +καί +οἰκεῖοι +τοῦ +Θεοῦ +ἐποικοδομηθέντες +ἐπί +τῷ +θεμελίῳ +τῶν +ἀποστόλων +καί +προφητῶν +ὄντος +ἀκρογωνιαίου +αὐτοῦ +Χριστοῦ +Ἰησοῦ +ἐν +ᾧ +πᾶσα +οἰκοδομή +συναρμολογουμένη +αὔξει +εἰς +ναόν +ἅγιον +ἐν +Κυρίῳ +ἐν +ᾧ +καί +ὑμεῖς +συνοικοδομεῖσθε +εἰς +κατοικητήριον +τοῦ +Θεοῦ +ἐν +Πνεύματι +Τούτου +χάριν +ἐγώ +Παῦλος +ὁ +δέσμιος +τοῦ +Χριστοῦ +Ἰησοῦ +ὑπέρ +ὑμῶν +τῶν +ἐθνῶν +εἴ +γε +ἠκούσατε +τήν +οἰκονομίαν +τῆς +χάριτος +τοῦ +Θεοῦ +τῆς +δοθείσης +μοι +εἰς +ὑμᾶς +ὅτι +κατά +ἀποκάλυψιν +ἐγνωρίσθη +μοι +τό +μυστήριον +καθώς +προέγραψα +ἐν +ὀλίγῳ +πρός +ὅ +δύνασθε +ἀναγινώσκοντες +νοῆσαι +τήν +σύνεσιν +μου +ἐν +τῷ +μυστηρίῳ +τοῦ +Χριστοῦ +ὅ +ἑτέραις +γενεαῖς +οὐκ +ἐγνωρίσθη +τοῖς +υἱοῖς +τῶν +ἀνθρώπων +ὡς +νῦν +ἀπεκαλύφθη +τοῖς +ἁγίοις +ἀποστόλοις +αὐτοῦ +καί +προφήταις +ἐν +Πνεύματι +εἶναι +τά +ἔθνη +συνκληρονόμα +καί +σύνσωμα +καί +συνμέτοχα +τῆς +ἐπαγγελίας +ἐν +Χριστῷ +Ἰησοῦ +διά +τοῦ +εὐαγγελίου +οὗ +διάκονος +ἐγενήθην +κατά +τήν +δωρεάν +τῆς +χάριτος +τοῦ +Θεοῦ +τῆς +δοθείσης +μοι +κατά +τήν +ἐνέργειαν +τῆς +δυνάμεως +αὐτοῦ +ἐμοί +τῷ +ἐλαχιστοτέρῳ +πάντων +ἁγίων +ἐδόθη +ἡ +χάρις +αὕτη +τοῖς +ἔθνεσιν +εὐαγγελίσασθαι +τό +ἀνεξιχνίαστον +πλοῦτος +τοῦ +Χριστοῦ +καί +φωτίσαι +τίς +ἡ +οἰκονομία +τοῦ +μυστηρίου +τοῦ +ἀποκεκρυμμένου +ἀπό +τῶν +αἰώνων +ἐν +τῷ +Θεῷ +τῷ +τά +πάντα +κτίσαντι +ἵνα +γνωρισθῇ +νῦν +ταῖς +ἀρχαῖς +καί +ταῖς +ἐξουσίαις +ἐν +τοῖς +ἐπουρανίοις +διά +τῆς +ἐκκλησίας +ἡ +πολυποίκιλος +σοφία +τοῦ +Θεοῦ +κατά +πρόθεσιν +τῶν +αἰώνων +ἥν +ἐποίησεν +ἐν +τῷ +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν +ἐν +ᾧ +ἔχομεν +τήν +παρρησίαν +καί +προσαγωγήν +ἐν +πεποιθήσει +διά +τῆς +πίστεως +αὐτοῦ +διό +αἰτοῦμαι +μή +ἐνκακεῖν +ἐν +ταῖς +θλίψεσιν +μου +ὑπέρ +ὑμῶν +ἥτις +ἐστίν +δόξα +ὑμῶν +Τούτου +χάριν +κάμπτω +τά +γόνατα +μου +πρός +τόν +Πατέρα +ἐξ +οὗ +πᾶσα +πατριά +ἐν +οὐρανοῖς +καί +ἐπί +γῆς +ὀνομάζεται +ἵνα +δῷ +ὑμῖν +κατά +τό +πλοῦτος +τῆς +δόξης +αὐτοῦ +δυνάμει +κραταιωθῆναι +διά +τοῦ +Πνεύματος +αὐτοῦ +εἰς +τόν +ἔσω +ἄνθρωπον +κατοικῆσαι +τόν +Χριστόν +διά +τῆς +πίστεως +ἐν +ταῖς +καρδίαις +ὑμῶν +ἐν +ἀγάπῃ +ἐρριζωμένοι +καί +τεθεμελιωμένοι +ἵνα +ἐξισχύσητε +καταλαβέσθαι +σύν +πᾶσιν +τοῖς +ἁγίοις +τί +τό +πλάτος +καί +μῆκος +καί +ὕψος +καί +βάθος +τε +γνῶναι +τήν +ὑπερβάλλουσαν +τῆς +γνώσεως +ἀγάπην +τοῦ +Χριστοῦ +ἵνα +πληρωθῆτε +εἰς +πᾶν +τό +πλήρωμα +τοῦ +Θεοῦ +δέ +Τῷ +δυναμένῳ +ποιῆσαι +ὑπερεκπερισσοῦ +ὑπέρ +πάντα +ὧν +αἰτούμεθα +ἤ +νοοῦμεν +κατά +τήν +δύναμιν +τήν +ἐνεργουμένην +ἐν +ἡμῖν +αὐτῷ +ἡ +δόξα +ἐν +τῇ +ἐκκλησίᾳ +καί +ἐν +Χριστῷ +Ἰησοῦ +εἰς +πάσας +τάς +γενεάς +τοῦ +αἰῶνος +τῶν +αἰώνων +ἀμήν +οὖν +Παρακαλῶ +ὑμᾶς +ἐγώ +ὁ +δέσμιος +ἐν +Κυρίῳ +ἀξίως +περιπατῆσαι +τῆς +κλήσεως +ἧς +ἐκλήθητε +μετά +πάσης +ταπεινοφροσύνης +καί +πραΰτητος +μετά +μακροθυμίας +ἀνεχόμενοι +ἀλλήλων +ἐν +ἀγάπῃ +σπουδάζοντες +τηρεῖν +τήν +ἑνότητα +τοῦ +Πνεύματος +ἐν +τῷ +συνδέσμῳ +τῆς +εἰρήνης +ἕν +σῶμα +καί +ἕν +Πνεῦμα +καθώς +καί +ἐκλήθητε +ἐν +μιᾷ +ἐλπίδι +τῆς +κλήσεως +ὑμῶν +εἷς +Κύριος +μία +πίστις +ἕν +βάπτισμα +εἷς +Θεός +καί +Πατήρ +πάντων +ὁ +ἐπί +πάντων +καί +διά +πάντων +καί +ἐν +πᾶσιν +δέ +Ἑνί +ἑκάστῳ +ἡμῶν +ἐδόθη +ἡ +χάρις +κατά +τό +μέτρον +τῆς +δωρεᾶς +τοῦ +Χριστοῦ +διό +λέγει +Ἀναβάς +εἰς +ὕψος +ᾐχμαλώτευσεν +αἰχμαλωσίαν +ἔδωκεν +δόματα +τοῖς +ἀνθρώποις +δέ +τό +Ἀνέβη +τί +ἐστιν +εἰ +μή +ὅτι +καί +κατέβη +εἰς +τά +κατώτερα +μέρη +τῆς +γῆς +ὁ +καταβάς +αὐτός +ἐστιν +καί +ὁ +ἀναβάς +ὑπεράνω +πάντων +τῶν +οὐρανῶν +ἵνα +πληρώσῃ +τά +πάντα +καί +αὐτός +ἔδωκεν +μέν +τούς +ἀποστόλους +δέ +τούς +προφήτας +δέ +τούς +εὐαγγελιστάς +δέ +τούς +ποιμένας +καί +διδασκάλους +πρός +τόν +καταρτισμόν +τῶν +ἁγίων +εἰς +ἔργον +διακονίας +εἰς +οἰκοδομήν +τοῦ +σώματος +τοῦ +Χριστοῦ +μέχρι +καταντήσωμεν +οἱ +πάντες +εἰς +τήν +ἑνότητα +τῆς +πίστεως +καί +τῆς +ἐπιγνώσεως +τοῦ +Υἱοῦ +τοῦ +Θεοῦ +εἰς +ἄνδρα +τέλειον +εἰς +μέτρον +ἡλικίας +τοῦ +πληρώματος +τοῦ +Χριστοῦ +ἵνα +μηκέτι +ὦμεν +νήπιοι +κλυδωνιζόμενοι +καί +περιφερόμενοι +παντί +ἀνέμῳ +τῆς +διδασκαλίας +ἐν +τῇ +κυβίᾳ +τῶν +ἀνθρώπων +ἐν +πανουργίᾳ +πρός +τήν +μεθοδίαν +τῆς +πλάνης +δέ +ἀληθεύοντες +ἐν +ἀγάπῃ +αὐξήσωμεν +τά +πάντα +εἰς +αὐτόν +ὅς +ἐστιν +ἡ +κεφαλή +Χριστός +ἐξ +οὗ +πᾶν +τό +σῶμα +συναρμολογούμενον +καί +συνβιβαζόμενον +διά +πάσης +ἁφῆς +τῆς +ἐπιχορηγίας +κατ’ +ἐνέργειαν +ἐν +μέτρῳ +ἑνός +ἑκάστου +μέρους +τήν +αὔξησιν +τοῦ +σώματος +ποιεῖται +εἰς +οἰκοδομήν +ἑαυτοῦ +ἐν +ἀγάπῃ +οὖν +Τοῦτο +λέγω +καί +μαρτύρομαι +ἐν +Κυρίῳ +μηκέτι +ὑμᾶς +περιπατεῖν +καθώς +καί +τά +ἔθνη +περιπατεῖ +ἐν +ματαιότητι +τοῦ +νοός +αὐτῶν +ἐσκοτωμένοι +ὄντες +τῇ +διανοίᾳ +ἀπηλλοτριωμένοι +τῆς +ζωῆς +τοῦ +Θεοῦ +διά +τήν +ἄγνοιαν +τήν +οὖσαν +ἐν +αὐτοῖς +διά +τήν +πώρωσιν +τῆς +καρδίας +αὐτῶν +οἵτινες +ἀπηλγηκότες +ἑαυτούς +παρέδωκαν +τῇ +ἀσελγείᾳ +εἰς +ἐργασίαν +ἀκαθαρσίας +πάσης +ἐν +πλεονεξίᾳ +δέ +ὑμεῖς +οὐχ +οὕτως +ἐμάθετε +τόν +Χριστόν +εἴ +γε +αὐτόν +ἠκούσατε +καί +ἐν +αὐτῷ +ἐδιδάχθητε +καθώς +ἐστιν +ἀλήθεια +ἐν +τῷ +Ἰησοῦ +ἀποθέσθαι +ὑμᾶς +κατά +τήν +προτέραν +ἀναστροφήν +τόν +παλαιόν +ἄνθρωπον +τόν +φθειρόμενον +κατά +τάς +ἐπιθυμίας +τῆς +ἀπάτης +δέ +ἀνανεοῦσθαι +τῷ +πνεύματι +τοῦ +νοός +ὑμῶν +καί +ἐνδύσασθαι +τόν +καινόν +ἄνθρωπον +τόν +κατά +Θεόν +κτισθέντα +ἐν +δικαιοσύνῃ +καί +ὁσιότητι +τῆς +ἀληθείας +Διό +ἀποθέμενοι +τό +ψεῦδος +λαλεῖτε +ἀλήθειαν +ἕκαστος +μετά +τοῦ +πλησίον +αὐτοῦ +ὅτι +ἐσμέν +ἀλλήλων +μέλη +ὀργίζεσθε +καί +μή +ἁμαρτάνετε +ὁ +ἥλιος +μή +ἐπιδυέτω +ἐπί +παροργισμῷ +ὑμῶν +μηδέ +δίδοτε +τόπον +τῷ +διαβόλῳ +ὁ +κλέπτων +μηκέτι +κλεπτέτω +δέ +μᾶλλον +κοπιάτω +ἐργαζόμενος +ταῖς +ἰδίαις +χερσίν +τό +ἀγαθόν +ἵνα +ἔχῃ +μεταδιδόναι +τῷ +χρείαν +ἔχοντι +πᾶς +λόγος +σαπρός +ἐκ +τοῦ +στόματος +ὑμῶν +μή +ἐκπορευέσθω +ἀλλά +εἴ +τις +ἀγαθός +πρός +οἰκοδομήν +τῆς +χρείας +ἵνα +δῷ +χάριν +τοῖς +ἀκούουσιν +καί +μή +λυπεῖτε +τό +Πνεῦμα +τό +Ἅγιον +τοῦ +Θεοῦ +ἐν +ᾧ +ἐσφραγίσθητε +εἰς +ἡμέραν +ἀπολυτρώσεως +πᾶσα +πικρία +καί +θυμός +καί +ὀργή +καί +κραυγή +καί +βλασφημία +ἀρθήτω +ἀφ’ +ὑμῶν +σύν +πάσῃ +κακίᾳ +δέ +γίνεσθε +εἰς +ἀλλήλους +χρηστοί +εὔσπλαγχνοι +χαριζόμενοι +ἑαυτοῖς +καθώς +καί +ὁ +Θεός +ἐν +Χριστῷ +ἐχαρίσατο +ὑμῖν +οὖν +γίνεσθε +μιμηταί +τοῦ +Θεοῦ +ὡς +τέκνα +ἀγαπητά +καί +περιπατεῖτε +ἐν +ἀγάπῃ +καθώς +καί +ὁ +Χριστός +ἠγάπησεν +ὑμᾶς +καί +παρέδωκεν +ἑαυτόν +ὑπέρ +ἡμῶν +προσφοράν +καί +θυσίαν +τῷ +Θεῷ +εἰς +ὀσμήν +εὐωδίας +δέ +Πορνεία +καί +ἀκαθαρσία +πᾶσα +ἤ +πλεονεξία +μηδέ +ὀνομαζέσθω +ἐν +ὑμῖν +καθώς +πρέπει +ἁγίοις +καί +αἰσχρότης +καί +μωρολογία +ἤ +εὐτραπελία +ἅ +οὐκ +ἀνῆκεν +ἀλλά +μᾶλλον +εὐχαριστία +γάρ +τοῦτο +ἴστε +γινώσκοντες +ὅτι +πᾶς +πόρνος +ἤ +ἀκάθαρτος +ἤ +πλεονέκτης +ὅ +ἐστιν +εἰδωλολάτρης +οὐκ +ἔχει +κληρονομίαν +ἐν +τῇ +βασιλείᾳ +τοῦ +Χριστοῦ +καί +Θεοῦ +Μηδείς +ὑμᾶς +ἀπατάτω +κενοῖς +λόγοις +γάρ +διά +ταῦτα +ἔρχεται +ἡ +ὀργή +τοῦ +Θεοῦ +ἐπί +τούς +υἱούς +τῆς +ἀπειθείας +οὖν +μή +γίνεσθε +συνμέτοχοι +αὐτῶν +γάρ +ἦτε +ποτε +σκότος +δέ +νῦν +φῶς +ἐν +Κυρίῳ +ὡς +τέκνα +φωτός +περιπατεῖτε +γάρ +ὁ +καρπός +τοῦ +φωτός +ἐν +πάσῃ +ἀγαθωσύνῃ +καί +δικαιοσύνῃ +καί +ἀληθείᾳ +δοκιμάζοντες +τί +ἐστιν +εὐάρεστον +τῷ +Κυρίῳ +καί +μή +συνκοινωνεῖτε +τοῖς +ἔργοις +τοῖς +ἀκάρποις +τοῦ +σκότους +δέ +μᾶλλον +καί +ἐλέγχετε +γάρ +τά +κρυφῇ +γινόμενα +ὑπ’ +αὐτῶν +αἰσχρόν +ἐστιν +καί +λέγειν +δέ +τά +πάντα +ἐλεγχόμενα +ὑπό +τοῦ +φωτός +φανεροῦται +γάρ +πᾶν +τό +φανερούμενον +φῶς +ἐστιν +διό +λέγει +Ἔγειρε +ὁ +καθεύδων +καί +ἀνάστα +ἐκ +τῶν +νεκρῶν +καί +ἐπιφαύσει +σοι +ὁ +Χριστός +οὖν +Βλέπετε +ἀκριβῶς +πῶς +περιπατεῖτε +μή +ὡς +ἄσοφοι +ἀλλ’ +ὡς +σοφοί +ἐξαγοραζόμενοι +τόν +καιρόν +ὅτι +αἱ +ἡμέραι +πονηραί +εἰσιν +διά +τοῦτο +μή +γίνεσθε +ἄφρονες +ἀλλά +συνίετε +τί +τό +θέλημα +τοῦ +Κυρίου +καί +μή +μεθύσκεσθε +οἴνῳ +ἐν +ᾧ +ἐστιν +ἀσωτία +ἀλλά +πληροῦσθε +ἐν +Πνεύματι +λαλοῦντες +ἑαυτοῖς +ψαλμοῖς +καί +ὕμνοις +καί +ᾠδαῖς +πνευματικαῖς +ᾄδοντες +καί +ψάλλοντες +τῇ +καρδίᾳ +ὑμῶν +τῷ +Κυρίῳ +εὐχαριστοῦντες +πάντοτε +ὑπέρ +πάντων +ἐν +ὀνόματι +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τῷ +Θεῷ +καί +Πατρί +ὑποτασσόμενοι +ἀλλήλοις +ἐν +φόβῳ +Χριστοῦ +Αἱ +γυναῖκες +τοῖς +ἰδίοις +ἀνδράσιν +ὡς +τῷ +Κυρίῳ +ὅτι +ἀνήρ +ἐστιν +κεφαλή +τῆς +γυναικός +ὡς +καί +ὁ +Χριστός +κεφαλή +τῆς +ἐκκλησίας +αὐτός +σωτήρ +τοῦ +σώματος +ἀλλά +ὡς +ἡ +ἐκκλησία +ὑποτάσσεται +τῷ +Χριστῷ +οὕτως +καί +αἱ +γυναῖκες +τοῖς +ἀνδράσιν +ἐν +παντί +Οἱ +ἄνδρες +ἀγαπᾶτε +τάς +γυναῖκας +καθώς +καί +ὁ +Χριστός +ἠγάπησεν +τήν +ἐκκλησίαν +καί +ἑαυτόν +παρέδωκεν +ὑπέρ +αὐτῆς +ἵνα +αὐτήν +ἁγιάσῃ +καθαρίσας +τῷ +λουτρῷ +τοῦ +ὕδατος +ἐν +ῥήματι +ἵνα +παραστήσῃ +αὐτός +ἑαυτῷ +τήν +ἐκκλησίαν +ἔνδοξον +μή +ἔχουσαν +σπίλον +ἤ +ῥυτίδα +ἤ +τι +τῶν +τοιούτων +ἀλλ’ +ἵνα +ᾖ +ἁγία +καί +ἄμωμος +οὕτως +ὀφείλουσιν +καί +οἱ +ἄνδρες +ἀγαπᾶν +τάς +ἑαυτῶν +γυναῖκας +ὡς +τά +ἑαυτῶν +σώματα +ὁ +ἀγαπῶν +τήν +ἑαυτοῦ +γυναῖκα +ἑαυτόν +ἀγαπᾷ +γάρ +οὐδείς +ποτε +τήν +ἑαυτοῦ +σάρκα +ἐμίσησεν +ἀλλά +ἐκτρέφει +καί +θάλπει +αὐτήν +καθώς +καί +ὁ +Χριστός +τήν +ἐκκλησίαν +ὅτι +ἐσμέν +μέλη +τοῦ +σώματος +αὐτοῦ +ἀντί +τούτου +καταλείψει +ἄνθρωπος +τόν +πατέρα +καί +τήν +μητέρα +καί +προσκολληθήσεται +πρός +τήν +γυναῖκα +αὐτοῦ +καί +ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν +τό +μυστήριον +τοῦτο +μέγα +ἐστίν +δέ +ἐγώ +λέγω +εἰς +Χριστόν +καί +εἰς +τήν +ἐκκλησίαν +πλήν +καί +ὑμεῖς +οἱ +καθ’ +ἕνα +ἕκαστος +τήν +ἑαυτοῦ +γυναῖκα +οὕτως +ἀγαπάτω +ὡς +ἑαυτόν +δέ +ἡ +γυνή +ἵνα +φοβῆται +τόν +ἄνδρα +Τά +τέκνα +ὑπακούετε +τοῖς +γονεῦσιν +ὑμῶν +ἐν +Κυρίῳ +γάρ +τοῦτο +ἐστιν +δίκαιον +τίμα +τόν +πατέρα +σου +καί +τήν +μητέρα +ἥτις +ἐστίν +ἐντολή +πρώτη +ἐν +ἐπαγγελίᾳ +ἵνα +εὖ +σοι +γένηται +καί +ἔσῃ +μακροχρόνιος +ἐπί +τῆς +γῆς +Καί +οἱ +πατέρες +μή +παροργίζετε +τά +τέκνα +ὑμῶν +ἀλλά +ἐκτρέφετε +αὐτά +ἐν +παιδείᾳ +καί +νουθεσίᾳ +Κυρίου +Οἱ +δοῦλοι +ὑπακούετε +τοῖς +κατά +σάρκα +κυρίοις +μετά +φόβου +καί +τρόμου +ἐν +ἁπλότητι +τῆς +καρδίας +ὑμῶν +ὡς +τῷ +Χριστῷ +μή +κατ’ +ὀφθαλμοδουλίαν +ὡς +ἀνθρωπάρεσκοι +ἀλλ’ +ὡς +δοῦλοι +Χριστοῦ +ποιοῦντες +τό +θέλημα +τοῦ +Θεοῦ +ἐκ +ψυχῆς +μετ’ +εὐνοίας +δουλεύοντες +ὡς +τῷ +Κυρίῳ +καί +οὐκ +ἀνθρώποις +εἰδότες +ὅτι +ἐάν +ἕκαστος +τι +ἀγαθόν +ποιήσῃ +τοῦτο +κομίσεται +παρά +Κυρίου +εἴτε +δοῦλος +εἴτε +ἐλεύθερος +Καί +οἱ +κύριοι +τά +αὐτά +ποιεῖτε +πρός +αὐτούς +ἀνιέντες +τήν +ἀπειλήν +εἰδότες +ὅτι +καί +αὐτῶν +καί +ὑμῶν +ὁ +Κύριος +ἐστιν +ἐν +οὐρανοῖς +καί +προσωπολημψία +οὐκ +ἔστιν +παρ’ +αὐτῷ +Τοῦ +λοιποῦ +ἐνδυναμοῦσθε +ἐν +Κυρίῳ +καί +ἐν +τῷ +κράτει +τῆς +ἰσχύος +αὐτοῦ +ἐνδύσασθε +τήν +πανοπλίαν +τοῦ +Θεοῦ +πρός +τό +δύνασθαι +ὑμᾶς +στῆναι +πρός +τάς +μεθοδίας +τοῦ +διαβόλου +ὅτι +ἔστιν +ἡμῖν +ἡ +πάλη +οὐκ +πρός +αἷμα +καί +σάρκα +ἀλλά +πρός +τάς +ἀρχάς +πρός +τάς +ἐξουσίας +πρός +τούς +κοσμοκράτορας +τοῦ +σκότους +τούτου +πρός +τά +πνευματικά +τῆς +πονηρίας +ἐν +τοῖς +ἐπουρανίοις +διά +τοῦτο +ἀναλάβετε +τήν +πανοπλίαν +τοῦ +Θεοῦ +ἵνα +δυνηθῆτε +ἀντιστῆναι +ἐν +τῇ +ἡμέρᾳ +τῇ +πονηρᾷ +καί +ἅπαντα +κατεργασάμενοι +στῆναι +οὖν +στῆτε +περιζωσάμενοι +τήν +ὀσφύν +ὑμῶν +ἐν +ἀληθείᾳ +καί +ἐνδυσάμενοι +τόν +θώρακα +τῆς +δικαιοσύνης +καί +ὑποδησάμενοι +τούς +πόδας +ἐν +ἑτοιμασίᾳ +τοῦ +εὐαγγελίου +τῆς +εἰρήνης +ἐν +πᾶσιν +ἀναλαβόντες +τόν +θυρεόν +τῆς +πίστεως +ἐν +ᾧ +δυνήσεσθε +πάντα +τά +βέλη +τοῦ +πονηροῦ +τά +πεπυρωμένα +σβέσαι +καί +δέξασθε +τήν +περικεφαλαίαν +τοῦ +σωτηρίου +καί +τήν +μάχαιραν +τοῦ +Πνεύματος +ὅ +ἐστιν +ῥῆμα +Θεοῦ +διά +πάσης +προσευχῆς +καί +δεήσεως +προσευχόμενοι +ἐν +παντί +καιρῷ +ἐν +Πνεύματι +καί +εἰς +αὐτό +ἀγρυπνοῦντες +ἐν +πάσῃ +προσκαρτερήσει +καί +δεήσει +περί +πάντων +τῶν +ἁγίων +καί +ὑπέρ +ἐμοῦ +ἵνα +μοι +δοθῇ +λόγος +ἐν +ἀνοίξει +τοῦ +στόματος +μου +ἐν +παρρησίᾳ +γνωρίσαι +τό +μυστήριον +τοῦ +εὐαγγελίου +ὑπέρ +οὗ +πρεσβεύω +ἐν +ἁλύσει +ἵνα +ἐν +αὐτῷ +παρρησιάσωμαι +ὡς +δεῖ +με +λαλῆσαι +δέ +Ἵνα +εἰδῆτε +καί +ὑμεῖς +τά +κατ’ +ἐμέ +τί +πράσσω +πάντα +γνωρίσει +ὑμῖν +Τυχικός +ὁ +ἀγαπητός +ἀδελφός +καί +πιστός +διάκονος +ἐν +Κυρίῳ +ὅν +ἔπεμψα +πρός +ὑμᾶς +εἰς +αὐτό +τοῦτο +ἵνα +γνῶτε +τά +περί +ἡμῶν +καί +παρακαλέσῃ +τάς +καρδίας +ὑμῶν +τοῖς +ἀδελφοῖς +Εἰρήνη +καί +ἀγάπη +μετά +πίστεως +ἀπό +Θεοῦ +Πατρός +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +ἡ +χάρις +μετά +πάντων +τῶν +ἀγαπώντων +τόν +Κύριον +ἡμῶν +Ἰησοῦν +Χριστόν +ἐν +ἀφθαρσίᾳ +Παῦλος +καί +Τιμόθεος +δοῦλοι +Χριστοῦ +Ἰησοῦ +πᾶσιν +τοῖς +ἁγίοις +ἐν +Χριστῷ +Ἰησοῦ +τοῖς +οὖσιν +ἐν +Φιλίπποις +σύν +ἐπισκόποις +καί +διακόνοις +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +Εὐχαριστῶ +τῷ +Θεῷ +μου +ἐπί +πάσῃ +τῇ +μνείᾳ +ὑμῶν +πάντοτε +ἐν +πάσῃ +δεήσει +μου +ὑπέρ +πάντων +ὑμῶν +μετά +χαρᾶς +τήν +δέησιν +ποιούμενος +ἐπί +τῇ +κοινωνίᾳ +ὑμῶν +εἰς +τό +εὐαγγέλιον +ἀπό +τῆς +πρώτης +ἡμέρας +ἄχρι +τοῦ +νῦν +πεποιθώς +αὐτό +τοῦτο +ὅτι +ὁ +ἐναρξάμενος +ἐν +ὑμῖν +ἔργον +ἀγαθόν +ἐπιτελέσει +ἄχρι +ἡμέρας +Χριστοῦ +Ἰησοῦ +καθώς +ἐστιν +δίκαιον +ἐμοί +τοῦτο +φρονεῖν +ὑπέρ +πάντων +ὑμῶν +διά +τό +ἔχειν +με +ἐν +τῇ +καρδίᾳ +ὑμᾶς +τε +ἔν +τοῖς +δεσμοῖς +μου +καί +ἐν +τῇ +ἀπολογίᾳ +καί +βεβαιώσει +τοῦ +εὐαγγελίου +συνκοινωνούς +μου +τῆς +χάριτος +πάντας +ὑμᾶς +ὄντας +γάρ +μάρτυς +μου +ὁ +Θεός +ὡς +ἐπιποθῶ +πάντας +ὑμᾶς +ἐν +σπλάγχνοις +Χριστοῦ +Ἰησοῦ +καί +τοῦτο +προσεύχομαι +ἵνα +ἡ +ἀγάπη +ὑμῶν +ἔτι +μᾶλλον +καί +μᾶλλον +περισσεύῃ +ἐν +ἐπιγνώσει +καί +πάσῃ +αἰσθήσει +εἰς +τό +δοκιμάζειν +ὑμᾶς +τά +διαφέροντα +ἵνα +ἦτε +εἰλικρινεῖς +καί +ἀπρόσκοποι +εἰς +ἡμέραν +Χριστοῦ +πεπληρωμένοι +καρπόν +δικαιοσύνης +τόν +διά +Ἰησοῦ +Χριστοῦ +εἰς +δόξαν +καί +ἔπαινον +Θεοῦ +δέ +ἀδελφοί +βούλομαι +Γινώσκειν +ὑμᾶς +ὅτι +τά +κατ’ +ἐμέ +μᾶλλον +εἰς +προκοπήν +τοῦ +εὐαγγελίου +ἐλήλυθεν +ὥστε +τούς +δεσμούς +μου +φανερούς +ἐν +Χριστῷ +γενέσθαι +ἐν +ὅλῳ +τῷ +πραιτωρίῳ +καί +τοῖς +λοιποῖς +πᾶσιν +καί +τούς +πλείονας +τῶν +ἀδελφῶν +ἐν +Κυρίῳ +πεποιθότας +τοῖς +δεσμοῖς +μου +περισσοτέρως +τολμᾶν +ἀφόβως +τόν +λόγον +τοῦ +Θεοῦ +λαλεῖν +μέν +Τινές +καί +διά +φθόνον +καί +ἔριν +δέ +τινές +καί +δι’ +εὐδοκίαν +τόν +Χριστόν +κηρύσσουσιν +μέν +οἱ +ἐξ +ἀγάπης +εἰδότες +ὅτι +εἰς +ἀπολογίαν +τοῦ +εὐαγγελίου +κεῖμαι +δέ +οἱ +ἐξ +ἐριθείας +τόν +Χριστόν +καταγγέλλουσιν +οὐχ +ἁγνῶς +οἰόμενοι +θλῖψιν +ἐγείρειν +τοῖς +δεσμοῖς +μου +γάρ +τί +πλήν +ὅτι +παντί +τρόπῳ +εἴτε +προφάσει +εἴτε +ἀληθείᾳ +Χριστός +καταγγέλλεται +καί +ἐν +τούτῳ +χαίρω +ἀλλά +καί +χαρήσομαι +γάρ +οἶδα +ὅτι +τοῦτο +μοι +ἀποβήσεται +εἰς +σωτηρίαν +διά +τῆς +ὑμῶν +δεήσεως +καί +ἐπιχορηγίας +τοῦ +Πνεύματος +Ἰησοῦ +Χριστοῦ +κατά +τήν +ἀποκαραδοκίαν +καί +ἐλπίδα +μου +ὅτι +ἐν +οὐδενί +αἰσχυνθήσομαι +ἀλλ’ +ἐν +πάσῃ +παρρησίᾳ +ὡς +πάντοτε +καί +νῦν +μεγαλυνθήσεται +Χριστός +ἐν +τῷ +σώματι +μου +εἴτε +διά +ζωῆς +εἴτε +διά +θανάτου +γάρ +Ἐμοί +τό +ζῆν +Χριστός +καί +τό +ἀποθανεῖν +κέρδος +δέ +εἰ +τό +ζῆν +ἐν +σαρκί +τοῦτο +μοι +καρπός +ἔργου +καί +τί +αἱρήσομαι +οὐ +γνωρίζω +δέ +συνέχομαι +ἐκ +τῶν +δύο +τήν +ἐπιθυμίαν +ἔχων +εἰς +τό +ἀναλῦσαι +καί +σύν +Χριστῷ +εἶναι +γάρ +πολλῷ +μᾶλλον +κρεῖσσον +δέ +τό +ἐπιμένειν +τῇ +σαρκί +ἀναγκαιότερον +δι’ +ὑμᾶς +καί +τοῦτο +πεποιθώς +οἶδα +ὅτι +μενῶ +καί +παραμενῶ +πᾶσιν +ὑμῖν +εἰς +τήν +ὑμῶν +προκοπήν +καί +χαράν +τῆς +πίστεως +ἵνα +τό +καύχημα +ὑμῶν +περισσεύῃ +ἐν +Χριστῷ +Ἰησοῦ +ἐν +ἐμοί +διά +τῆς +ἐμῆς +παρουσίας +πάλιν +πρός +ὑμᾶς +Μόνον +ἀξίως +τοῦ +εὐαγγελίου +τοῦ +Χριστοῦ +πολιτεύεσθε +ἵνα +εἴτε +ἐλθών +καί +ἰδών +ὑμᾶς +εἴτε +ἀπών +ἀκούω +τά +περί +ὑμῶν +ὅτι +στήκετε +ἐν +ἑνί +πνεύματι +μιᾷ +ψυχῇ +συναθλοῦντες +τῇ +πίστει +τοῦ +εὐαγγελίου +καί +μή +πτυρόμενοι +ἐν +μηδενί +ὑπό +τῶν +ἀντικειμένων +ἥτις +ἐστίν +αὐτοῖς +ἔνδειξις +ἀπωλείας +δέ +ὑμῶν +σωτηρίας +καί +τοῦτο +ἀπό +Θεοῦ +ὅτι +ὑμῖν +ἐχαρίσθη +τό +ὑπέρ +Χριστοῦ +οὐ +μόνον +τό +εἰς +αὐτόν +πιστεύειν +ἀλλά +καί +τό +ὑπέρ +αὐτοῦ +πάσχειν +ἔχοντες +τόν +αὐτόν +ἀγῶνα +οἷον +εἴδετε +ἐν +ἐμοί +καί +νῦν +ἀκούετε +ἐν +ἐμοί +οὖν +Εἴ +τις +παράκλησις +ἐν +Χριστῷ +εἴ +τι +παραμύθιον +ἀγάπης +εἴ +τις +κοινωνία +Πνεύματος +εἴ +τις +σπλάγχνα +καί +οἰκτιρμοί +πληρώσατε +μου +τήν +χαράν +ἵνα +τό +αὐτό +φρονῆτε +τήν +αὐτήν +ἀγάπην +ἔχοντες +σύνψυχοι +τό +ἕν +φρονοῦντες +μηδέν +κατ’ +ἐριθείαν +μηδέ +κατά +κενοδοξίαν +ἀλλά +τῇ +ταπεινοφροσύνῃ +ἀλλήλους +ἡγούμενοι +ὑπερέχοντας +ἑαυτῶν +μή +τά +ἑαυτῶν +ἕκαστοι +σκοποῦντες +ἀλλά +καί +τά +ἑτέρων +ἕκαστοι +τοῦτο +φρονεῖτε +ἐν +ὑμῖν +ὅ +καί +ἐν +Χριστῷ +Ἰησοῦ +ὅς +ἐν +μορφῇ +Θεοῦ +ὑπάρχων +οὐχ +ἁρπαγμόν +ἡγήσατο +τό +εἶναι +ἴσα +Θεῷ +ἀλλά +ἑαυτόν +ἐκένωσεν +μορφήν +δούλου +λαβών +ἐν +ὁμοιώματι +ἀνθρώπων +γενόμενος +καί +σχήματι +εὑρεθείς +ὡς +ἄνθρωπος +ἐταπείνωσεν +ἑαυτόν +γενόμενος +ὑπήκοος +μέχρι +θανάτου +δέ +θανάτου +σταυροῦ +διό +καί +ὁ +Θεός +αὐτόν +ὑπερύψωσεν +καί +ἐχαρίσατο +αὐτῷ +τό +ὄνομα +τό +ὑπέρ +πᾶν +ὄνομα +ἵνα +ἐν +τῷ +ὀνόματι +Ἰησοῦ +κάμψῃ +πᾶν +γόνυ +ἐπουρανίων +καί +ἐπιγείων +καί +καταχθονίων +καί +πᾶσα +γλῶσσα +ἐξομολογήσηται +ὅτι +ΚΥΡΙΟΣ +ΙΗΣΟΥΣ +ΧΡΙΣΤΟΣ +εἰς +δόξαν +Θεοῦ +Πατρός +Ὥστε +ἀγαπητοί +μου +καθώς +πάντοτε +ὑπηκούσατε +ὡς +μή +ἐν +τῇ +παρουσίᾳ +μου +μόνον +ἀλλά +νῦν +πολλῷ +μᾶλλον +ἐν +τῇ +ἀπουσίᾳ +μου +μετά +φόβου +καί +τρόμου +τήν +ἑαυτῶν +σωτηρίαν +κατεργάζεσθε +γάρ +Θεός +ἐστιν +ὁ +ἐνεργῶν +ἐν +ὑμῖν +καί +τό +θέλειν +καί +τό +ἐνεργεῖν +ὑπέρ +τῆς +εὐδοκίας +πάντα +ποιεῖτε +χωρίς +γογγυσμῶν +καί +διαλογισμῶν +ἵνα +γένησθε +ἄμεμπτοι +καί +ἀκέραιοι +τέκνα +Θεοῦ +ἄμωμα +μέσον +γενεᾶς +σκολιᾶς +καί +διεστραμμένης +ἐν +οἷς +φαίνεσθε +ὡς +φωστῆρες +ἐν +κόσμῳ +λόγον +ζωῆς +ἐπέχοντες +εἰς +καύχημα +ἐμοί +εἰς +ἡμέραν +Χριστοῦ +ὅτι +οὐκ +εἰς +κενόν +ἔδραμον +οὐδέ +εἰς +κενόν +ἐκοπίασα +Ἀλλά +εἰ +καί +σπένδομαι +ἐπί +τῇ +θυσίᾳ +καί +λειτουργίᾳ +τῆς +πίστεως +ὑμῶν +χαίρω +καί +συνχαίρω +πᾶσιν +ὑμῖν +δέ +τό +αὐτό +καί +ὑμεῖς +χαίρετε +καί +συνχαίρετε +μοι +δέ +Ἐλπίζω +ἐν +Κυρίῳ +Ἰησοῦ +Τιμόθεον +ταχέως +πέμψαι +ὑμῖν +ἵνα +κἀγώ +εὐψυχῶ +γνούς +τά +περί +ὑμῶν +γάρ +οὐδένα +ἰσόψυχον +ἔχω +ὅστις +γνησίως +τά +περί +ὑμῶν +μεριμνήσει +γάρ +οἱ +πάντες +τά +ἑαυτῶν +ζητοῦσιν +οὐ +τά +Χριστοῦ +Ἰησοῦ +δέ +τήν +δοκιμήν +αὐτοῦ +γινώσκετε +ὅτι +ὡς +πατρί +τέκνον +σύν +ἐμοί +ἐδούλευσεν +εἰς +τό +εὐαγγέλιον +οὖν +μέν +ἐλπίζω +Τοῦτον +πέμψαι +ὡς +ἄν +ἀφίδω +τά +περί +ἐμέ +ἐξαυτῆς +δέ +πέποιθα +ἐν +Κυρίῳ +ὅτι +καί +αὐτός +ταχέως +ἐλεύσομαι +δέ +ἡγησάμην +ἀναγκαῖον +Ἐπαφρόδιτον +τόν +ἀδελφόν +καί +συνεργόν +καί +συνστρατιώτην +μου +δέ +ὑμῶν +ἀπόστολον +καί +λειτουργόν +τῆς +χρείας +μου +πέμψαι +πρός +ὑμᾶς +ἐπειδή +ἐπιποθῶν +ἦν +πάντας +ὑμᾶς +καί +ἀδημονῶν +διότι +ἠκούσατε +ὅτι +ἠσθένησεν +γάρ +καί +ἠσθένησεν +παραπλήσιον +θανάτῳ +ἀλλά +ὁ +Θεός +ἠλέησεν +αὐτόν +δέ +οὐκ +αὐτόν +μόνον +ἀλλά +καί +ἐμέ +ἵνα +μή +λύπην +ἐπί +λύπην +σχῶ +οὖν +σπουδαιοτέρως +ἔπεμψα +αὐτόν +ἵνα +ἰδόντες +αὐτόν +πάλιν +χαρῆτε +κἀγώ +ἀλυπότερος +ὦ +οὖν +προσδέχεσθε +αὐτόν +ἐν +Κυρίῳ +μετά +πάσης +χαρᾶς +καί +τούς +τοιούτους +ἐντίμους +ἔχετε +ὅτι +διά +τό +ἔργον +Χριστοῦ +μέχρι +θανάτου +ἤγγισεν +παραβολευσάμενος +τῇ +ψυχῇ +ἵνα +ἀναπληρώσῃ +τό +ὑμῶν +ὑστέρημα +τῆς +πρός +με +λειτουργίας +ἀδελφοί +μου +Τό +λοιπόν +χαίρετε +ἐν +Κυρίῳ +τά +αὐτά +γράφειν +ὑμῖν +μέν +ἐμοί +οὐκ +ὀκνηρόν +δέ +ὑμῖν +ἀσφαλές +Βλέπετε +τούς +κύνας +βλέπετε +τούς +κακούς +ἐργάτας +βλέπετε +τήν +κατατομήν +γάρ +ἐσμεν +ἡ +περιτομή +ἡμεῖς +οἱ +Πνεύματι +Θεοῦ +λατρεύοντες +καί +καυχώμενοι +ἐν +Χριστῷ +Ἰησοῦ +καί +οὐκ +ἐν +σαρκί +πεποιθότες +καίπερ +ἐγώ +ἔχων +πεποίθησιν +καί +ἐν +σαρκί +Εἴ +τις +ἄλλος +δοκεῖ +πεποιθέναι +ἐν +σαρκί +ἐγώ +μᾶλλον +περιτομῇ +ὀκταήμερος +ἐκ +γένους +Ἰσραήλ +φυλῆς +Βενιαμείν +Ἑβραῖος +ἐξ +Ἑβραίων +κατά +νόμον +Φαρισαῖος +κατά +ζῆλος +διώκων +τήν +ἐκκλησίαν +κατά +δικαιοσύνην +τήν +ἐν +νόμῳ +γενόμενος +ἄμεμπτος +Ἀλλά +ἅτινα +ἦν +μοι +κέρδη +ταῦτα +ἥγημαι +διά +τόν +Χριστόν +ζημίαν +ἀλλά +μέν +οὖν +γε +καί +ἡγοῦμαι +πάντα +ζημίαν +εἶναι +διά +τό +ὑπερέχον +τῆς +γνώσεως +Χριστοῦ +Ἰησοῦ +τοῦ +Κυρίου +μου +δι’ +ὅν +τά +πάντα +ἐζημιώθην +καί +ἡγοῦμαι +σκύβαλα +ἵνα +Χριστόν +κερδήσω +καί +εὑρεθῶ +ἐν +αὐτῷ +ἔχων +μή +ἐμήν +δικαιοσύνην +τήν +ἐκ +νόμου +ἀλλά +τήν +διά +πίστεως +Χριστοῦ +τήν +ἐκ +Θεοῦ +δικαιοσύνην +ἐπί +τῇ +πίστει +τοῦ +γνῶναι +αὐτόν +καί +τήν +δύναμιν +τῆς +ἀναστάσεως +αὐτοῦ +καί +κοινωνίαν +παθημάτων +αὐτοῦ +συμμορφιζόμενος +τῷ +θανάτῳ +αὐτοῦ +εἴ +πως +καταντήσω +εἰς +τήν +ἐξανάστασιν +τήν +ἐκ +νεκρῶν +οὐχ +ὅτι +ἤδη +ἔλαβον +ἤ +ἤδη +τετελείωμαι +δέ +διώκω +εἰ +καί +καταλάβω +ἐφ’ +ᾧ +καί +κατελήμφθην +ὑπό +Χριστοῦ +Ἰησοῦ +ἀδελφοί +ἐγώ +οὔπω +λογίζομαι +ἐμαυτόν +κατειληφέναι +δέ +ἕν +μέν +τά +ὀπίσω +ἐπιλανθανόμενος +δέ +τοῖς +ἔμπροσθεν +ἐπεκτεινόμενος +κατά +σκοπόν +διώκω +εἰς +τό +βραβεῖον +τῆς +ἄνω +κλήσεως +τοῦ +Θεοῦ +ἐν +Χριστῷ +Ἰησοῦ +οὖν +Ὅσοι +τέλειοι +τοῦτο +φρονῶμεν +καί +εἴ +τι +ἑτέρως +φρονεῖτε +καί +τοῦτο +ὁ +Θεός +ὑμῖν +ἀποκαλύψει +πλήν +εἰς +ὅ +ἐφθάσαμεν +τῷ +αὐτῷ +στοιχεῖν +ἀδελφοί +Συνμιμηταί +μου +γίνεσθε +καί +σκοπεῖτε +τούς +οὕτως +περιπατοῦντας +καθώς +ἔχετε +τύπον +ἡμᾶς +γάρ +πολλοί +περιπατοῦσιν +οὕς +πολλάκις +ἔλεγον +ὑμῖν +δέ +νῦν +καί +κλαίων +λέγω +τούς +ἐχθρούς +τοῦ +σταυροῦ +τοῦ +Χριστοῦ +ὧν +τό +τέλος +ἀπώλεια +ὧν +ὁ +θεός +ἡ +κοιλία +καί +ἡ +δόξα +ἐν +τῇ +αἰσχύνῃ +αὐτῶν +οἱ +τά +ἐπίγεια +φρονοῦντες +γάρ +ἡμῶν +τό +πολίτευμα +ἐν +οὐρανοῖς +ὑπάρχει +ἐξ +οὗ +καί +ἀπεκδεχόμεθα +Σωτῆρα +Κύριον +Ἰησοῦν +Χριστόν +ὅς +μετασχηματίσει +τό +σῶμα +τῆς +ταπεινώσεως +ἡμῶν +σύμμορφον +τῷ +σώματι +τῆς +δόξης +αὐτοῦ +κατά +τήν +ἐνέργειαν +τοῦ +δύνασθαι +αὐτόν +καί +ὑποτάξαι +αὐτῷ +τά +πάντα +Ὥστε +ἀδελφοί +μου +ἀγαπητοί +καί +ἐπιπόθητοι +χαρά +καί +στέφανος +μου +οὕτως +στήκετε +ἐν +Κυρίῳ +ἀγαπητοί +Εὐοδίαν +παρακαλῶ +καί +Συντύχην +παρακαλῶ +τό +αὐτό +φρονεῖν +ἐν +Κυρίῳ +ναί +ἐρωτῶ +καί +σέ +γνήσιε +σύνζυγε +συνλαμβάνου +αὐταῖς +αἵτινες +ἐν +τῷ +εὐαγγελίῳ +συνήθλησαν +μοι +μετά +καί +Κλήμεντος +καί +τῶν +λοιπῶν +συνεργῶν +μου +ὧν +τά +ὀνόματα +ἐν +βίβλῳ +ζωῆς +Χαίρετε +ἐν +Κυρίῳ +πάντοτε +πάλιν +ἐρῶ +χαίρετε +τό +ἐπιεικές +ὑμῶν +γνωσθήτω +πᾶσιν +ἀνθρώποις +ὁ +Κύριος +ἐγγύς +μηδέν +μεριμνᾶτε +ἀλλ’ +ἐν +παντί +τῇ +προσευχῇ +καί +τῇ +δεήσει +μετά +εὐχαριστίας +τά +αἰτήματα +ὑμῶν +γνωριζέσθω +πρός +τόν +Θεόν +καί +ἡ +εἰρήνη +τοῦ +Θεοῦ +ἡ +ὑπερέχουσα +πάντα +νοῦν +φρουρήσει +τάς +καρδίας +ὑμῶν +καί +τά +νοήματα +ὑμῶν +ἐν +Χριστῷ +Ἰησοῦ +ἀδελφοί +Τό +λοιπόν +ὅσα +ἐστίν +ἀληθῆ +ὅσα +σεμνά +ὅσα +δίκαια +ὅσα +ἁγνά +ὅσα +προσφιλῆ +ὅσα +εὔφημα +εἴ +τις +ἀρετή +καί +εἴ +τις +ἔπαινος +ταῦτα +λογίζεσθε +ἅ +καί +ἐμάθετε +καί +παρελάβετε +καί +ἠκούσατε +καί +εἴδετε +ἐν +ἐμοί +ταῦτα +πράσσετε +καί +ὁ +Θεός +τῆς +εἰρήνης +ἔσται +μεθ’ +ὑμῶν +δέ +Ἐχάρην +ἐν +Κυρίῳ +μεγάλως +ὅτι +ἤδη +ποτέ +ἀνεθάλετε +τό +ὑπέρ +ἐμοῦ +φρονεῖν +ἐφ’ +ᾧ +καί +ἐφρονεῖτε +δέ +ἠκαιρεῖσθε +οὐχ +ὅτι +καθ’ +ὑστέρησιν +λέγω +γάρ +ἐγώ +ἔμαθον +ἐν +οἷς +εἰμι +αὐτάρκης +εἶναι +οἶδα +καί +ταπεινοῦσθαι +οἶδα +καί +περισσεύειν +ἐν +παντί +καί +ἐν +πᾶσιν +μεμύημαι +καί +χορτάζεσθαι +καί +πεινᾶν +καί +περισσεύειν +καί +ὑστερεῖσθαι +πάντα +ἰσχύω +ἐν +τῷ +ἐνδυναμοῦντι +με +πλήν +καλῶς +ἐποιήσατε +συνκοινωνήσαντες +μου +τῇ +θλίψει +δέ +Φιλιππήσιοι +οἴδατε +καί +ὑμεῖς +ὅτι +ὅτε +ἐξῆλθον +ἀπό +Μακεδονίας +ἐν +ἀρχῇ +τοῦ +εὐαγγελίου +οὐδεμία +ἐκκλησία +μοι +ἐκοινώνησεν +εἰς +λόγον +δόσεως +καί +λήμψεως +εἰ +μή +ὑμεῖς +μόνοι +ὅτι +καί +ἐν +Θεσσαλονίκῃ +καί +ἅπαξ +καί +δίς +εἰς +τήν +χρείαν +μοι +ἐπέμψατε +οὐχ +ὅτι +ἐπιζητῶ +τό +δόμα +ἀλλά +ἐπιζητῶ +τόν +καρπόν +τόν +πλεονάζοντα +εἰς +λόγον +ὑμῶν +δέ +ἀπέχω +πάντα +καί +περισσεύω +πεπλήρωμαι +δεξάμενος +παρά +Ἐπαφροδίτου +τά +παρ’ +ὑμῶν +ὀσμήν +εὐωδίας +θυσίαν +δεκτήν +εὐάρεστον +τῷ +Θεῷ +δέ +ὁ +Θεός +μου +πληρώσει +πᾶσαν +χρείαν +ὑμῶν +κατά +τό +πλοῦτος +αὐτοῦ +ἐν +δόξῃ +ἐν +Χριστῷ +Ἰησοῦ +δέ +τῷ +Θεῷ +καί +Πατρί +ἡμῶν +ἡ +δόξα +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Ἀσπάσασθε +πάντα +ἅγιον +ἐν +Χριστῷ +Ἰησοῦ +ἀσπάζονται +ὑμᾶς +οἱ +σύν +ἐμοί +ἀδελφοί +ἀσπάζονται +ὑμᾶς +πάντες +οἱ +ἅγιοι +δέ +μάλιστα +οἱ +ἐκ +τῆς +Καίσαρος +οἰκίας +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +μετά +τοῦ +πνεύματος +ὑμῶν +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διά +θελήματος +Θεοῦ +καί +Τιμόθεος +ὁ +ἀδελφός +τοῖς +ἐν +Κολοσσαῖς +ἁγίοις +καί +πιστοῖς +ἀδελφοῖς +ἐν +Χριστῷ +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +Εὐχαριστοῦμεν +τῷ +Θεῷ +Πατρί +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +πάντοτε +περί +ὑμῶν +προσευχόμενοι +ἀκούσαντες +τήν +πίστιν +ὑμῶν +ἐν +Χριστῷ +Ἰησοῦ +καί +τήν +ἀγάπην +ἥν +ἔχετε +εἰς +πάντας +τούς +ἁγίους +διά +τήν +ἐλπίδα +τήν +ἀποκειμένην +ὑμῖν +ἐν +τοῖς +οὐρανοῖς +ἥν +προηκούσατε +ἐν +τῷ +λόγῳ +τῆς +ἀληθείας +τοῦ +εὐαγγελίου +τοῦ +παρόντος +εἰς +ὑμᾶς +καθώς +καί +ἐν +παντί +τῷ +κόσμῳ +ἐστίν +καρποφορούμενον +καί +αὐξανόμενον +καθώς +καί +ἐν +ὑμῖν +ἀφ’ +ἧς +ἡμέρας +ἠκούσατε +καί +ἐπέγνωτε +τήν +χάριν +τοῦ +Θεοῦ +ἐν +ἀληθείᾳ +καθώς +ἐμάθετε +ἀπό +Ἐπαφρᾶ +τοῦ +ἀγαπητοῦ +συνδούλου +ἡμῶν +ὅς +ἐστιν +πιστός +ὑπέρ +ὑμῶν +διάκονος +τοῦ +Χριστοῦ +ὁ +καί +δηλώσας +ἡμῖν +τήν +ὑμῶν +ἀγάπην +ἐν +Πνεύματι +Διά +τοῦτο +καί +ἡμεῖς +ἀφ’ +ἧς +ἡμέρας +ἠκούσαμεν +οὐ +παυόμεθα +ὑπέρ +ὑμῶν +προσευχόμενοι +καί +αἰτούμενοι +ἵνα +πληρωθῆτε +τήν +ἐπίγνωσιν +τοῦ +θελήματος +αὐτοῦ +ἐν +πάσῃ +σοφίᾳ +καί +συνέσει +πνευματικῇ +περιπατῆσαι +ἀξίως +τοῦ +Κυρίου +εἰς +πᾶσαν +ἀρεσκείαν +ἐν +παντί +ἔργῳ +ἀγαθῷ +καρποφοροῦντες +καί +αὐξανόμενοι +τῇ +ἐπιγνώσει +τοῦ +Θεοῦ +ἐν +πάσῃ +δυνάμει +δυναμούμενοι +κατά +τό +κράτος +τῆς +δόξης +αὐτοῦ +εἰς +πᾶσαν +ὑπομονήν +καί +μακροθυμίαν +μετά +χαρᾶς +εὐχαριστοῦντες +τῷ +Πατρί +τῷ +ἱκανώσαντι +ὑμᾶς +εἰς +τήν +μερίδα +τοῦ +κλήρου +τῶν +ἁγίων +ἐν +τῷ +φωτί +ὅς +ἐρύσατο +ἡμᾶς +ἐκ +τῆς +ἐξουσίας +τοῦ +σκότους +καί +μετέστησεν +εἰς +τήν +βασιλείαν +τοῦ +Υἱοῦ +τῆς +ἀγάπης +αὐτοῦ +ἐν +ᾧ +ἔχομεν +τήν +ἀπολύτρωσιν +τήν +ἄφεσιν +τῶν +ἁμαρτιῶν +ὅς +ἐστιν +εἰκών +τοῦ +Θεοῦ +τοῦ +ἀοράτου +πρωτότοκος +πάσης +κτίσεως +ὅτι +ἐν +αὐτῷ +ἐκτίσθη +τά +πάντα +ἐν +τοῖς +οὐρανοῖς +καί +ἐπί +τῆς +γῆς +τά +ὁρατά +καί +τά +ἀόρατα +εἴτε +θρόνοι +εἴτε +κυριότητες +εἴτε +ἀρχαί +εἴτε +ἐξουσίαι +τά +πάντα +δι’ +αὐτοῦ +καί +εἰς +αὐτόν +ἔκτισται +καί +αὐτός +ἐστιν +πρό +πάντων +καί +τά +πάντα +ἐν +αὐτῷ +συνέστηκεν +καί +αὐτός +ἐστιν +ἡ +κεφαλή +τοῦ +σώματος +τῆς +ἐκκλησίας +ὅς +ἐστιν +ἀρχή +πρωτότοκος +ἐκ +τῶν +νεκρῶν +ἵνα +γένηται +αὐτός +ἐν +πᾶσιν +πρωτεύων +ὅτι +εὐδόκησεν +ἐν +αὐτῷ +πᾶν +τό +πλήρωμα +κατοικῆσαι +καί +δι’ +αὐτοῦ +ἀποκαταλλάξαι +τά +πάντα +εἰς +αὐτόν +εἰρηνοποιήσας +διά +τοῦ +αἵματος +τοῦ +σταυροῦ +αὐτοῦ +δι’ +αὐτοῦ +εἴτε +τά +ἐπί +τῆς +γῆς +εἴτε +τά +ἐν +τοῖς +οὐρανοῖς +καί +ὑμᾶς +ποτε +ὄντας +ἀπηλλοτριωμένους +καί +ἐχθρούς +τῇ +διανοίᾳ +ἐν +τοῖς +ἔργοις +τοῖς +πονηροῖς +δέ +νυνί +ἀποκατήλλαξεν +ἐν +τῷ +σώματι +τῆς +σαρκός +αὐτοῦ +διά +τοῦ +θανάτου +παραστῆσαι +ὑμᾶς +ἁγίους +καί +ἀμώμους +καί +ἀνεγκλήτους +κατενώπιον +αὐτοῦ +εἴ +γε +ἐπιμένετε +τῇ +πίστει +τεθεμελιωμένοι +καί +ἑδραῖοι +καί +μή +μετακινούμενοι +ἀπό +τῆς +ἐλπίδος +τοῦ +εὐαγγελίου +οὗ +ἠκούσατε +τοῦ +κηρυχθέντος +ἐν +πάσῃ +κτίσει +τῇ +ὑπό +τόν +οὐρανόν +οὗ +διάκονος +ἐγενόμην +ἐγώ +Παῦλος +Νῦν +χαίρω +ἐν +τοῖς +παθήμασιν +ὑπέρ +ὑμῶν +καί +ἀνταναπληρῶ +τά +ὑστερήματα +τῶν +θλίψεων +τοῦ +Χριστοῦ +ἐν +τῇ +σαρκί +μου +ὑπέρ +τοῦ +σώματος +αὐτοῦ +ὅ +ἐστιν +ἡ +ἐκκλησία +ἧς +διάκονος +ἐγενόμην +ἐγώ +κατά +τήν +οἰκονομίαν +τοῦ +Θεοῦ +τήν +δοθεῖσαν +μοι +εἰς +ὑμᾶς +πληρῶσαι +τόν +λόγον +τοῦ +Θεοῦ +τό +μυστήριον +τό +ἀποκεκρυμμένον +ἀπό +τῶν +αἰώνων +καί +ἀπό +τῶν +γενεῶν +δέ +νῦν +ἐφανερώθη +τοῖς +ἁγίοις +αὐτοῦ +οἷς +ἠθέλησεν +ὁ +Θεός +γνωρίσαι +τί +τό +πλοῦτος +τῆς +δόξης +τοῦ +μυστηρίου +τούτου +ἐν +τοῖς +ἔθνεσιν +ὅς +ἐστιν +Χριστός +ἐν +ὑμῖν +ἡ +ἐλπίς +τῆς +δόξης +ὅν +ἡμεῖς +καταγγέλλομεν +νουθετοῦντες +πάντα +ἄνθρωπον +καί +διδάσκοντες +πάντα +ἄνθρωπον +ἐν +πάσῃ +σοφίᾳ +ἵνα +παραστήσωμεν +πάντα +ἄνθρωπον +τέλειον +ἐν +Χριστῷ +εἰς +ὅ +καί +κοπιῶ +ἀγωνιζόμενος +κατά +τήν +ἐνέργειαν +αὐτοῦ +τήν +ἐνεργουμένην +ἐν +ἐμοί +ἐν +δυνάμει +γάρ +Θέλω +ὑμᾶς +εἰδέναι +ἡλίκον +ἀγῶνα +ἔχω +ὑπέρ +ὑμῶν +καί +τῶν +ἐν +Λαοδικίᾳ +καί +ὅσοι +οὐχ +ἑόρακαν +τό +πρόσωπον +μου +ἐν +σαρκί +ἵνα +παρακληθῶσιν +αἱ +καρδίαι +αὐτῶν +συνβιβασθέντες +ἐν +ἀγάπῃ +καί +εἰς +πᾶν +πλοῦτος +τῆς +πληροφορίας +τῆς +συνέσεως +εἰς +ἐπίγνωσιν +τοῦ +μυστηρίου +τοῦ +Θεοῦ +Χριστοῦ +ἐν +ᾧ +εἰσιν +πάντες +οἱ +θησαυροί +τῆς +σοφίας +καί +γνώσεως +ἀπόκρυφοι +Τοῦτο +λέγω +ἵνα +μηδείς +ὑμᾶς +παραλογίζηται +ἐν +πιθανολογίᾳ +γάρ +εἰ +καί +τῇ +σαρκί +ἄπειμι +ἀλλά +τῷ +πνεύματι +σύν +ὑμῖν +εἰμι +χαίρων +καί +βλέπων +ὑμῶν +τήν +τάξιν +καί +τό +στερέωμα +τῆς +εἰς +Χριστόν +πίστεως +ὑμῶν +οὖν +Ὡς +παρελάβετε +τόν +Χριστόν +Ἰησοῦν +τόν +Κύριον +ἐν +αὐτῷ +περιπατεῖτε +ἐρριζωμένοι +καί +ἐποικοδομούμενοι +ἐν +αὐτῷ +καί +βεβαιούμενοι +τῇ +πίστει +καθώς +ἐδιδάχθητε +περισσεύοντες +ἐν +εὐχαριστίᾳ +Βλέπετε +μή +τις +ἔσται +ὁ +συλαγωγῶν +ὑμᾶς +διά +τῆς +φιλοσοφίας +καί +κενῆς +ἀπάτης +κατά +τήν +παράδοσιν +τῶν +ἀνθρώπων +κατά +τά +στοιχεῖα +τοῦ +κόσμου +καί +οὐ +κατά +Χριστόν +ὅτι +ἐν +αὐτῷ +κατοικεῖ +πᾶν +τό +πλήρωμα +τῆς +Θεότητος +σωματικῶς +καί +ἐστέ +πεπληρωμένοι +ἐν +αὐτῷ +ὅς +ἐστιν +ἡ +κεφαλή +πάσης +ἀρχῆς +καί +ἐξουσίας +ἐν +ᾧ +καί +περιετμήθητε +περιτομῇ +ἀχειροποιήτῳ +ἐν +τῇ +ἀπεκδύσει +τοῦ +σώματος +τῆς +σαρκός +ἐν +τῇ +περιτομῇ +τοῦ +Χριστοῦ +συνταφέντες +αὐτῷ +ἐν +τῷ +βαπτίσματι +ἐν +ᾧ +καί +συνηγέρθητε +διά +τῆς +πίστεως +τῆς +ἐνεργείας +τοῦ +Θεοῦ +τοῦ +ἐγείραντος +αὐτόν +ἐκ +νεκρῶν +καί +ὑμᾶς +νεκρούς +ὄντας +τοῖς +παραπτώμασιν +καί +τῇ +ἀκροβυστίᾳ +τῆς +σαρκός +ὑμῶν +συνεζωοποίησεν +ὑμᾶς +σύν +αὐτῷ +χαρισάμενος +ἡμῖν +πάντα +τά +παραπτώματα +ἐξαλείψας +τό +καθ’ +ἡμῶν +χειρόγραφον +τοῖς +δόγμασιν +ὅ +ἦν +ὑπεναντίον +ἡμῖν +καί +αὐτό +ἦρκεν +ἐκ +τοῦ +μέσου +προσηλώσας +αὐτό +τῷ +σταυρῷ +ἀπεκδυσάμενος +τάς +ἀρχάς +καί +τάς +ἐξουσίας +ἐδειγμάτισεν +ἐν +παρρησίᾳ +θριαμβεύσας +αὐτούς +ἐν +αὐτῷ +οὖν +Μή +τις +ὑμᾶς +κρινέτω +ἐν +βρώσει +καί +ἐν +πόσει +ἤ +ἐν +μέρει +ἑορτῆς +ἤ +νεομηνίας +ἤ +σαββάτων +ἅ +ἐστιν +σκιά +τῶν +μελλόντων +δέ +τό +σῶμα +τοῦ +Χριστοῦ +μηδείς +ὑμᾶς +καταβραβευέτω +θέλων +ἐν +ταπεινοφροσύνῃ +καί +θρησκείᾳ +τῶν +ἀγγέλων +ἅ +ἑόρακεν +ἐμβατεύων +εἰκῇ +φυσιούμενος +ὑπό +τοῦ +νοός +τῆς +σαρκός +αὐτοῦ +καί +οὐ +κρατῶν +τήν +Κεφαλήν +ἐξ +οὗ +πᾶν +τό +σῶμα +διά +τῶν +ἁφῶν +καί +συνδέσμων +ἐπιχορηγούμενον +καί +συνβιβαζόμενον +αὔξει +τήν +αὔξησιν +τοῦ +Θεοῦ +Εἰ +ἀπεθάνετε +σύν +Χριστῷ +ἀπό +τῶν +στοιχείων +τοῦ +κόσμου +τί +ὡς +ζῶντες +ἐν +κόσμῳ +δογματίζεσθε +Μή +ἅψῃ +μηδέ +γεύσῃ +μηδέ +θίγῃς +ἅ +ἐστιν +πάντα +εἰς +φθοράν +τῇ +ἀποχρήσει +κατά +τά +ἐντάλματα +καί +διδασκαλίας +τῶν +ἀνθρώπων +ἅτινα +ἐστιν +μέν +ἔχοντα +λόγον +σοφίας +ἐν +ἐθελοθρησκίᾳ +καί +ταπεινοφροσύνῃ +καί +ἀφειδίᾳ +σώματος +οὐκ +ἐν +τιμῇ +τινι +πρός +πλησμονήν +τῆς +σαρκός +οὖν +Εἰ +συνηγέρθητε +τῷ +Χριστῷ +τά +ἄνω +ζητεῖτε +οὗ +ὁ +Χριστός +ἐστιν +καθήμενος +ἐν +δεξιᾷ +τοῦ +Θεοῦ +τά +ἄνω +φρονεῖτε +μή +τά +ἐπί +τῆς +γῆς +γάρ +ἀπεθάνετε +καί +ἡ +ζωή +ὑμῶν +κέκρυπται +σύν +τῷ +Χριστῷ +ἐν +τῷ +Θεῷ +ὅταν +φανερωθῇ +ὁ +Χριστός +ἡ +ζωή +ἡμῶν +τότε +καί +ὑμεῖς +σύν +αὐτῷ +φανερωθήσεσθε +ἐν +δόξῃ +οὖν +Νεκρώσατε +τά +μέλη +τά +ἐπί +τῆς +γῆς +πορνείαν +ἀκαθαρσίαν +πάθος +ἐπιθυμίαν +κακήν +καί +τήν +πλεονεξίαν +ἥτις +ἐστίν +εἰδωλολατρεία +δι’ +ἅ +ἔρχεται +ἡ +ὀργή +τοῦ +Θεοῦ +ἐν +οἷς +καί +ὑμεῖς +περιεπατήσατε +ποτε +ὅτε +ἐζῆτε +ἐν +τούτοις +δέ +νυνί +ἀπόθεσθε +καί +ὑμεῖς +τά +πάντα +ὀργήν +θυμόν +κακίαν +βλασφημίαν +αἰσχρολογίαν +ἐκ +τοῦ +στόματος +ὑμῶν +μή +ψεύδεσθε +εἰς +ἀλλήλους +ἀπεκδυσάμενοι +τόν +παλαιόν +ἄνθρωπον +σύν +ταῖς +πράξεσιν +αὐτοῦ +καί +ἐνδυσάμενοι +τόν +νέον +τόν +ἀνακαινούμενον +εἰς +ἐπίγνωσιν +κατ’ +εἰκόνα +τοῦ +κτίσαντος +αὐτόν +ὅπου +οὐκ +ἔνι +Ἕλλην +καί +Ἰουδαῖος +περιτομή +καί +ἀκροβυστία +βάρβαρος +Σκύθης +δοῦλος +ἐλεύθερος +ἀλλά +πάντα +καί +ἐν +πᾶσιν +Χριστός +οὖν +Ἐνδύσασθε +ὡς +ἐκλεκτοί +τοῦ +Θεοῦ +ἅγιοι +καί +ἠγαπημένοι +σπλάγχνα +οἰκτιρμοῦ +χρηστότητα +ταπεινοφροσύνην +πραΰτητα +μακροθυμίαν +ἀνεχόμενοι +ἀλλήλων +καί +χαριζόμενοι +ἑαυτοῖς +ἐάν +τις +πρός +τινα +ἔχῃ +μομφήν +καθώς +καί +ὁ +Κύριος +ἐχαρίσατο +ὑμῖν +οὕτως +καί +ὑμεῖς +δέ +ἐπί +πᾶσιν +τούτοις +τήν +ἀγάπην +ὅ +ἐστιν +σύνδεσμος +τῆς +τελειότητος +καί +ἡ +εἰρήνη +τοῦ +Χριστοῦ +βραβευέτω +ἐν +ταῖς +καρδίαις +ὑμῶν +εἰς +ἥν +καί +ἐκλήθητε +ἐν +ἑνί +σώματι +καί +εὐχάριστοι +γίνεσθε +ὁ +λόγος +τοῦ +Χριστοῦ +ἐνοικείτω +ἐν +ὑμῖν +πλουσίως +ἐν +πάσῃ +σοφίᾳ +διδάσκοντες +καί +νουθετοῦντες +ἑαυτούς +ψαλμοῖς +ὕμνοις +ᾠδαῖς +πνευματικαῖς +ἐν +τῇ +χάριτι +ᾄδοντες +ἐν +ταῖς +καρδίαις +ὑμῶν +τῷ +Θεῷ +καί +πᾶν +τι +ἐάν +ὅ +ποιῆτε +ἐν +λόγῳ +ἤ +ἐν +ἔργῳ +πάντα +ἐν +ὀνόματι +Κυρίου +Ἰησοῦ +εὐχαριστοῦντες +τῷ +Θεῷ +Πατρί +δι’ +αὐτοῦ +Αἱ +γυναῖκες +ὑποτάσσεσθε +τοῖς +ἀνδράσιν +ὡς +ἀνῆκεν +ἐν +Κυρίῳ +Οἱ +ἄνδρες +ἀγαπᾶτε +τάς +γυναῖκας +καί +μή +πικραίνεσθε +πρός +αὐτάς +Τά +τέκνα +ὑπακούετε +τοῖς +γονεῦσιν +κατά +πάντα +γάρ +τοῦτο +εὐάρεστον +ἐστιν +ἐν +Κυρίῳ +Οἱ +πατέρες +μή +ἐρεθίζετε +τά +τέκνα +ὑμῶν +ἵνα +μή +ἀθυμῶσιν +Οἱ +δοῦλοι +ὑπακούετε +κατά +πάντα +τοῖς +κατά +σάρκα +κυρίοις +μή +ἐν +ὀφθαλμοδουλίαις +ὡς +ἀνθρωπάρεσκοι +ἀλλ’ +ἐν +ἁπλότητι +καρδίας +φοβούμενοι +τόν +Κύριον +ἐάν +ὅ +ποιῆτε +ἐκ +ψυχῆς +ἐργάζεσθε +ὡς +τῷ +Κυρίῳ +καί +οὐκ +ἀνθρώποις +εἰδότες +ὅτι +ἀπό +Κυρίου +ἀπολήμψεσθε +τήν +ἀνταπόδοσιν +τῆς +κληρονομίας +τῷ +Κυρίῳ +Χριστῷ +δουλεύετε +γάρ +ὁ +ἀδικῶν +κομίσεται +ὅ +ἠδίκησεν +καί +οὐκ +ἔστιν +προσωπολημψία +Οἱ +κύριοι +τό +δίκαιον +καί +τήν +ἰσότητα +τοῖς +δούλοις +παρέχεσθε +εἰδότες +ὅτι +καί +ὑμεῖς +ἔχετε +Κύριον +ἐν +οὐρανῷ +Τῇ +προσευχῇ +προσκαρτερεῖτε +γρηγοροῦντες +ἐν +αὐτῇ +ἐν +εὐχαριστίᾳ +προσευχόμενοι +ἅμα +καί +περί +ἡμῶν +ἵνα +ὁ +Θεός +ἀνοίξῃ +ἡμῖν +θύραν +τοῦ +λόγου +λαλῆσαι +τό +μυστήριον +τοῦ +Χριστοῦ +δι’ +ὅ +καί +δέδεμαι +ἵνα +φανερώσω +αὐτό +ὡς +δεῖ +με +λαλῆσαι +Ἐν +σοφίᾳ +περιπατεῖτε +πρός +τούς +ἔξω +τόν +καιρόν +ἐξαγοραζόμενοι +ὁ +λόγος +ὑμῶν +πάντοτε +ἐν +χάριτι +ἅλατι +ἠρτυμένος +εἰδέναι +πῶς +δεῖ +ὑμᾶς +ἑνί +ἑκάστῳ +ἀποκρίνεσθαι +Τά +κατ’ +ἐμέ +πάντα +γνωρίσει +ὑμῖν +Τυχικός +ὁ +ἀγαπητός +ἀδελφός +καί +πιστός +διάκονος +καί +σύνδουλος +ἐν +Κυρίῳ +ὅν +ἔπεμψα +πρός +ὑμᾶς +εἰς +αὐτό +τοῦτο +ἵνα +γνῶτε +τά +περί +ἡμῶν +καί +παρακαλέσῃ +τάς +καρδίας +ὑμῶν +σύν +Ὀνησίμῳ +τῷ +πιστῷ +καί +ἀγαπητῷ +ἀδελφῷ +ὅς +ἐστιν +ἐξ +ὑμῶν +ὑμῖν +γνωρίσουσιν +πάντα +τά +ὧδε +Ἀσπάζεται +ὑμᾶς +Ἀρίσταρχος +ὁ +συναιχμάλωτος +μου +καί +Μᾶρκος +ὁ +ἀνεψιός +Βαρνάβα +περί +οὗ +ἐλάβετε +ἐντολάς +ἐάν +ἔλθῃ +πρός +ὑμᾶς +δέξασθε +αὐτόν +καί +Ἰησοῦς +ὁ +λεγόμενος +Ἰοῦστος +οἱ +ὄντες +ἐκ +περιτομῆς +οὗτοι +μόνοι +συνεργοί +εἰς +τήν +βασιλείαν +τοῦ +Θεοῦ +οἵτινες +ἐγενήθησαν +μοι +παρηγορία +ἀσπάζεται +ὑμᾶς +Ἐπαφρᾶς +ὁ +ἐξ +ὑμῶν +δοῦλος +Χριστοῦ +Ἰησοῦ +πάντοτε +ἀγωνιζόμενος +ὑπέρ +ὑμῶν +ἐν +ταῖς +προσευχαῖς +ἵνα +σταθῆτε +τέλειοι +καί +πεπληροφορημένοι +ἐν +παντί +θελήματι +τοῦ +Θεοῦ +γάρ +μαρτυρῶ +αὐτῷ +ὅτι +ἔχει +πολύν +πόνον +ὑπέρ +ὑμῶν +καί +τῶν +ἐν +Λαοδικίᾳ +καί +τῶν +ἐν +Ἱεραπόλει +ἀσπάζεται +ὑμᾶς +Λουκᾶς +ὁ +ἰατρός +ὁ +ἀγαπητός +καί +Δημᾶς +Ἀσπάσασθε +τούς +ἐν +Λαοδικίᾳ +ἀδελφούς +καί +Νύμφαν +καί +τήν +κατ’ +οἶκον +αὐτῆς +ἐκκλησίαν +καί +ὅταν +ἀναγνωσθῇ +παρ’ +ὑμῖν +ἡ +ἐπιστολή +ποιήσατε +ἵνα +καί +ἐν +τῇ +Λαοδικέων +ἐκκλησίᾳ +ἀναγνωσθῇ +καί +ἵνα +τήν +ἐκ +Λαοδικίας +καί +ὑμεῖς +ἀναγνῶτε +καί +εἴπατε +Ἀρχίππῳ +Βλέπε +τήν +διακονίαν +ἥν +παρέλαβες +ἐν +Κυρίῳ +ἵνα +αὐτήν +πληροῖς +Ὁ +ἀσπασμός +τῇ +ἐμῇ +χειρί +Παύλου +μνημονεύετε +μου +τῶν +δεσμῶν +ἡ +χάρις +μεθ’ +ὑμῶν +Παῦλος +καί +Σιλουανός +καί +Τιμόθεος +τῇ +ἐκκλησίᾳ +Θεσσαλονικέων +ἐν +Θεῷ +Πατρί +καί +Κυρίῳ +Ἰησοῦ +Χριστῷ +ὑμῖν +χάρις +καί +εἰρήνη +Εὐχαριστοῦμεν +τῷ +Θεῷ +πάντοτε +περί +πάντων +ὑμῶν +μνείαν +ποιούμενοι +ἐπί +τῶν +προσευχῶν +ἡμῶν +ἀδιαλείπτως +μνημονεύοντες +ὑμῶν +τοῦ +ἔργου +τῆς +πίστεως +καί +τοῦ +κόπου +τῆς +ἀγάπης +καί +τῆς +ὑπομονῆς +τῆς +ἐλπίδος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἔμπροσθεν +τοῦ +Θεοῦ +καί +Πατρός +ἡμῶν +εἰδότες +τήν +ἐκλογήν +ὑμῶν +ἀδελφοί +ἠγαπημένοι +ὑπό +τοῦ +Θεοῦ +ὅτι +τό +εὐαγγέλιον +ἡμῶν +ἐγενήθη +εἰς +ὑμᾶς +οὐκ +ἐν +λόγῳ +μόνον +ἀλλά +καί +ἐν +δυνάμει +καί +ἐν +Πνεύματι +Ἁγίῳ +καί +πληροφορίᾳ +πολλῇ +καθώς +οἴδατε +οἷοι +ἐγενήθημεν +ἐν +ὑμῖν +δι’ +ὑμᾶς +καί +ὑμεῖς +ἐγενήθητε +μιμηταί +ἡμῶν +καί +τοῦ +Κυρίου +δεξάμενοι +τόν +λόγον +ἐν +θλίψει +πολλῇ +μετά +χαρᾶς +Πνεύματος +Ἁγίου +ὥστε +γενέσθαι +ὑμᾶς +τύπον +πᾶσιν +τοῖς +πιστεύουσιν +ἐν +τῇ +Μακεδονίᾳ +καί +ἐν +τῇ +Ἀχαΐᾳ +γάρ +ἀφ’ +ὑμῶν +ἐξήχηται +ὁ +λόγος +τοῦ +Κυρίου +οὐ +μόνον +ἐν +τῇ +Μακεδονίᾳ +καί +Ἀχαΐᾳ +ἀλλ’ +ἐν +παντί +τόπῳ +ἡ +πίστις +ὑμῶν +ἡ +πρός +τόν +Θεόν +ἐξελήλυθεν +ὥστε +μή +χρείαν +ἔχειν +ἡμᾶς +λαλεῖν +τι +γάρ +αὐτοί +περί +ἡμῶν +ἀπαγγέλλουσιν +ὁποίαν +εἴσοδον +ἔσχομεν +πρός +ὑμᾶς +καί +πῶς +ἐπεστρέψατε +πρός +τόν +Θεόν +ἀπό +τῶν +εἰδώλων +δουλεύειν +Θεῷ +ζῶντι +καί +ἀληθινῷ +καί +ἀναμένειν +ἐκ +τῶν +οὐρανῶν +τόν +Υἱόν +αὐτοῦ +ὅν +ἤγειρεν +ἐκ +τῶν +νεκρῶν +Ἰησοῦν +τόν +ῥυόμενον +ἡμᾶς +ἐκ +τῆς +ὀργῆς +τῆς +ἐρχομένης +γάρ +ἀδελφοί +Αὐτοί +οἴδατε +τήν +εἴσοδον +ἡμῶν +τήν +πρός +ὑμᾶς +ὅτι +οὐ +κενή +γέγονεν +ἀλλά +προπαθόντες +καί +ὑβρισθέντες +ἐν +Φιλίπποις +καθώς +οἴδατε +ἐπαρρησιασάμεθα +ἐν +τῷ +Θεῷ +ἡμῶν +λαλῆσαι +πρός +ὑμᾶς +τό +εὐαγγέλιον +τοῦ +Θεοῦ +ἐν +πολλῷ +ἀγῶνι +γάρ +ἡ +παράκλησις +ἡμῶν +οὐκ +ἐκ +πλάνης +οὐδέ +ἐξ +ἀκαθαρσίας +οὐδέ +ἐν +δόλῳ +ἀλλά +καθώς +δεδοκιμάσμεθα +ὑπό +τοῦ +Θεοῦ +πιστευθῆναι +τό +εὐαγγέλιον +οὕτως +λαλοῦμεν +ὡς +ἀρέσκοντες +οὐχ +ἀνθρώποις +ἀλλά +Θεῷ +τῷ +δοκιμάζοντι +τάς +καρδίας +ἡμῶν +γάρ +οὔτε +ποτε +ἐν +λόγῳ +κολακίας +ἐγενήθημεν +καθώς +οἴδατε +οὔτε +ἐν +προφάσει +πλεονεξίας +Θεός +μάρτυς +οὔτε +ζητοῦντες +ἐξ +ἀνθρώπων +δόξαν +οὔτε +ἀφ’ +ὑμῶν +οὔτε +ἀπ’ +ἄλλων +δυνάμενοι +ἐν +βάρει +εἶναι +ὡς +Χριστοῦ +ἀπόστολοι +ἀλλά +ἐγενήθημεν +ἤπιοι +ἐν +μέσῳ +ὑμῶν +ὡς +ἐάν +τροφός +θάλπῃ +τά +ἑαυτῆς +τέκνα +οὕτως +ὁμειρόμενοι +ὑμῶν +εὐδοκοῦμεν +μεταδοῦναι +ὑμῖν +οὐ +μόνον +τό +εὐαγγέλιον +τοῦ +Θεοῦ +ἀλλά +καί +τάς +ἑαυτῶν +ψυχάς +διότι +ἀγαπητοί +ἡμῖν +ἐγενήθητε +γάρ +ἀδελφοί +μνημονεύετε +τόν +κόπον +ἡμῶν +καί +τόν +μόχθον +νυκτός +καί +ἡμέρας +ἐργαζόμενοι +πρός +τό +μή +ἐπιβαρῆσαι +τινα +ὑμῶν +ἐκηρύξαμεν +εἰς +ὑμᾶς +τό +εὐαγγέλιον +τοῦ +Θεοῦ +μάρτυρες +ὑμεῖς +καί +ὁ +Θεός +ὡς +ὁσίως +καί +δικαίως +καί +ἀμέμπτως +ὑμῖν +τοῖς +πιστεύουσιν +ἐγενήθημεν +καθάπερ +οἴδατε +ὡς +ἕνα +ἕκαστον +ὑμῶν +ὡς +πατήρ +τέκνα +ἑαυτοῦ +παρακαλοῦντες +καί +παραμυθούμενοι +καί +μαρτυρόμενοι +ὑμᾶς +εἰς +τό +περιπατεῖν +ὑμᾶς +ἀξίως +τοῦ +Θεοῦ +τοῦ +καλοῦντος +ὑμᾶς +εἰς +τήν +ἑαυτοῦ +βασιλείαν +καί +δόξαν +Καί +διά +τοῦτο +καί +ἡμεῖς +εὐχαριστοῦμεν +τῷ +Θεῷ +ἀδιαλείπτως +ὅτι +παραλαβόντες +λόγον +ἀκοῆς +παρ’ +ἡμῶν +τοῦ +Θεοῦ +ἐδέξασθε +οὐ +λόγον +ἀνθρώπων +ἀλλά +καθώς +ἀληθῶς +ἐστίν +λόγον +Θεοῦ +ὅς +καί +ἐνεργεῖται +ἐν +ὑμῖν +τοῖς +πιστεύουσιν +γάρ +ἀδελφοί +ὑμεῖς +ἐγενήθητε +μιμηταί +τῶν +ἐκκλησιῶν +τοῦ +Θεοῦ +τῶν +οὐσῶν +ἐν +τῇ +Ἰουδαίᾳ +ἐν +Χριστῷ +Ἰησοῦ +ὅτι +τά +αὐτά +ἐπάθετε +καί +ὑμεῖς +ὑπό +τῶν +ἰδίων +συμφυλετῶν +καθώς +καί +αὐτοί +ὑπό +τῶν +Ἰουδαίων +τῶν +ἀποκτεινάντων +καί +τόν +Κύριον +Ἰησοῦν +καί +τούς +προφήτας +καί +ἡμᾶς +ἐκδιωξάντων +καί +Θεῷ +μή +ἀρεσκόντων +καί +πᾶσιν +ἀνθρώποις +ἐναντίων +κωλυόντων +ἡμᾶς +τοῖς +ἔθνεσιν +λαλῆσαι +ἵνα +σωθῶσιν +εἰς +τό +ἀναπληρῶσαι +αὐτῶν +τάς +ἁμαρτίας +πάντοτε +δέ +ἔφθασεν +ἐπ’ +αὐτούς +ἡ +ὀργή +εἰς +τέλος +δέ +ἀδελφοί +Ἠμεῖς +ἀπορφανισθέντες +ἀφ’ +ὑμῶν +πρός +καιρόν +ὥρας +προσώπῳ +οὐ +καρδίᾳ +περισσοτέρως +ἐσπουδάσαμεν +τό +πρόσωπον +ὑμῶν +ἰδεῖν +ἐν +πολλῇ +ἐπιθυμίᾳ +διότι +ἠθελήσαμεν +ἐλθεῖν +πρός +ὑμᾶς +μέν +ἐγώ +Παῦλος +καί +ἅπαξ +καί +δίς +καί +ἐνέκοψεν +ἡμᾶς +ὁ +Σατανᾶς +γάρ +τίς +ἡμῶν +ἐλπίς +ἤ +χαρά +ἤ +στέφανος +καυχήσεως +ἤ +οὐχί +καί +ὑμεῖς +ἔμπροσθεν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +ἐν +τῇ +αὐτοῦ +παρουσίᾳ +γάρ +ὑμεῖς +ἐστε +ἡ +δόξα +ἡμῶν +καί +ἡ +χαρά +Διό +μηκέτι +στέγοντες +ηὐδοκήσαμεν +καταλειφθῆναι +ἐν +Ἀθήναις +μόνοι +καί +ἐπέμψαμεν +Τιμόθεον +τόν +ἀδελφόν +ἡμῶν +καί +διάκονον +τοῦ +Θεοῦ +ἐν +τῷ +εὐαγγελίῳ +τοῦ +Χριστοῦ +εἰς +τό +στηρίξαι +καί +παρακαλέσαι +ὑμᾶς +ὑπέρ +τῆς +πίστεως +ὑμῶν +τό +μηδένα +σαίνεσθαι +ἐν +ταῖς +θλίψεσιν +ταύταις +γάρ +αὐτοί +οἴδατε +ὅτι +εἰς +τοῦτο +κείμεθα +γάρ +καί +ὅτε +πρός +ὑμᾶς +ἦμεν +προελέγομεν +ὑμῖν +ὅτι +μέλλομεν +θλίβεσθαι +καθώς +καί +ἐγένετο +καί +οἴδατε +διά +τοῦτο +κἀγώ +μηκέτι +στέγων +ἔπεμψα +εἰς +τό +γνῶναι +τήν +πίστιν +ὑμῶν +μή +πως +ἐπείρασεν +ὑμᾶς +ὁ +πειράζων +καί +εἰς +κενόν +γένηται +ὁ +κόπος +ἡμῶν +δέ +Ἄρτι +ἐλθόντος +Τιμοθέου +πρός +ἡμᾶς +ἀφ’ +ὑμῶν +καί +εὐαγγελισαμένου +ἡμῖν +τήν +πίστιν +καί +τήν +ἀγάπην +ὑμῶν +καί +ὅτι +ἔχετε +μνείαν +ἡμῶν +ἀγαθήν +πάντοτε +ἐπιποθοῦντες +ἡμᾶς +ἰδεῖν +καθάπερ +καί +ἡμεῖς +ὑμᾶς +ἀδελφοί +διά +τοῦτο +παρεκλήθημεν +ἐφ’ +ὑμῖν +ἐπί +πάσῃ +τῇ +ἀνάγκῃ +καί +θλίψει +ἡμῶν +διά +τῆς +ὑμῶν +πίστεως +ὅτι +νῦν +ζῶμεν +ἐάν +ὑμεῖς +στήκετε +ἐν +Κυρίῳ +γάρ +δυνάμεθα +τίνα +εὐχαριστίαν +τῷ +Θεῷ +ἀνταποδοῦναι +περί +ὑμῶν +ἐπί +πάσῃ +τῇ +χαρᾷ +ᾗ +χαίρομεν +δι’ +ὑμᾶς +ἔμπροσθεν +τοῦ +Θεοῦ +ἡμῶν +νυκτός +καί +ἡμέρας +ὑπερεκπερισσοῦ +δεόμενοι +εἰς +τό +ἰδεῖν +ὑμῶν +τό +πρόσωπον +καί +καταρτίσαι +τά +ὑστερήματα +τῆς +πίστεως +ὑμῶν +δέ +Αὐτός +ὁ +Θεός +καί +Πατήρ +ἡμῶν +καί +ὁ +Κύριος +ἡμῶν +Ἰησοῦς +κατευθύναι +τήν +ὁδόν +ἡμῶν +πρός +ὑμᾶς +δέ +ὑμᾶς +ὁ +Κύριος +πλεονάσαι +καί +περισσεύσαι +τῇ +ἀγάπῃ +εἰς +ἀλλήλους +καί +εἰς +πάντας +καθάπερ +καί +ἡμεῖς +εἰς +ὑμᾶς +εἰς +τό +στηρίξαι +ὑμῶν +τάς +καρδίας +ἀμέμπτους +ἐν +ἁγιωσύνῃ +ἔμπροσθεν +τοῦ +Θεοῦ +καί +πατρός +ἡμῶν +ἐν +τῇ +παρουσίᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +μετά +πάντων +τῶν +ἁγίων +αὐτοῦ +οὖν +ἀδελφοί +Λοιπόν +ἐρωτῶμεν +καί +παρακαλοῦμεν +ὑμᾶς +ἐν +Κυρίῳ +Ἰησοῦ +ἵνα +καθώς +παρελάβετε +παρ’ +ἡμῶν +τό +πῶς +δεῖ +ὑμᾶς +περιπατεῖν +καί +ἀρέσκειν +Θεῷ +καθώς +καί +περιπατεῖτε +ἵνα +περισσεύητε +μᾶλλον +γάρ +οἴδατε +τίνας +παραγγελίας +ἐδώκαμεν +ὑμῖν +διά +τοῦ +Κυρίου +Ἰησοῦ +γάρ +Τοῦτο +ἐστιν +θέλημα +τοῦ +Θεοῦ +ὁ +ἁγιασμός +ὑμῶν +ἀπέχεσθαι +ὑμᾶς +ἀπό +τῆς +πορνείας +εἰδέναι +ἕκαστον +ὑμῶν +τό +ἑαυτοῦ +σκεῦος +κτᾶσθαι +ἐν +ἁγιασμῷ +καί +τιμῇ +μή +ἐν +πάθει +ἐπιθυμίας +καθάπερ +καί +τά +ἔθνη +τά +μή +εἰδότα +τόν +Θεόν +τό +μή +ὑπερβαίνειν +καί +πλεονεκτεῖν +ἐν +τῷ +πράγματι +τόν +ἀδελφόν +αὐτοῦ +διότι +ἔκδικος +Κύριος +περί +πάντων +τούτων +καθώς +καί +προείπαμεν +ὑμῖν +καί +διεμαρτυράμεθα +γάρ +οὐ +ἐκάλεσεν +ἡμᾶς +ὁ +Θεός +ἐπί +ἀκαθαρσίᾳ +ἀλλ’ +ἐν +ἁγιασμῷ +τοιγαροῦν +ὁ +ἀθετῶν +ἀθετεῖ +οὐκ +ἄνθρωπον +ἀλλά +τόν +Θεόν +τόν +καί +διδόντα +τό +Πνεῦμα +αὐτοῦ +τό +ἅγιον +εἰς +ὑμᾶς +δέ +Περί +τῆς +φιλαδελφίας +οὐ +χρείαν +ἔχετε +γράφειν +ὑμῖν +γάρ +αὐτοί +ὑμεῖς +θεοδίδακτοι +ἐστε +εἰς +τό +ἀγαπᾶν +ἀλλήλους +γάρ +καί +ποιεῖτε +αὐτό +εἰς +πάντας +τούς +ἀδελφούς +ἐν +ὅλῃ +τῇ +Μακεδονίᾳ +δέ +ἀδελφοί +Παρακαλοῦμεν +ὑμᾶς +περισσεύειν +μᾶλλον +καί +φιλοτιμεῖσθαι +ἡσυχάζειν +καί +πράσσειν +τά +ἴδια +καί +ἐργάζεσθαι +ταῖς +χερσίν +ὑμῶν +καθώς +ὑμῖν +παρηγγείλαμεν +ἵνα +περιπατῆτε +εὐσχημόνως +πρός +τούς +ἔξω +καί +μηδενός +χρείαν +ἔχητε +δέ +ἀδελφοί +Οὐ +θέλομεν +ὑμᾶς +ἀγνοεῖν +περί +τῶν +κοιμωμένων +ἵνα +μή +λυπῆσθε +καθώς +καί +οἱ +λοιποί +οἱ +μή +ἔχοντες +ἐλπίδα +γάρ +εἰ +πιστεύομεν +ὅτι +Ἰησοῦς +ἀπέθανεν +καί +ἀνέστη +οὕτως +καί +ὁ +Θεός +τούς +κοιμηθέντας +διά +τοῦ +Ἰησοῦ +ἄξει +σύν +αὐτῷ +γάρ +Τοῦτο +ὑμῖν +λέγομεν +ἐν +λόγῳ +Κυρίου +ὅτι +ἡμεῖς +οἱ +ζῶντες +οἱ +περιλειπόμενοι +εἰς +τήν +παρουσίαν +τοῦ +Κυρίου +οὐ +μή +φθάσωμεν +τούς +κοιμηθέντας +ὅτι +αὐτός +ὁ +Κύριος +ἐν +κελεύσματι +ἐν +φωνῇ +ἀρχαγγέλου +καί +ἐν +σάλπιγγι +Θεοῦ +καταβήσεται +ἀπ’ +οὐρανοῦ +καί +οἱ +νεκροί +ἐν +Χριστῷ +ἀναστήσονται +πρῶτον +ἔπειτα +ἡμεῖς +οἱ +ζῶντες +οἱ +περιλειπόμενοι +ἅμα +σύν +αὐτοῖς +ἁρπαγησόμεθα +ἐν +νεφέλαις +εἰς +ἀπάντησιν +τοῦ +Κυρίου +εἰς +ἀέρα +καί +οὕτως +πάντοτε +σύν +Κυρίῳ +ἐσόμεθα +Ὥστε +παρακαλεῖτε +ἀλλήλους +ἐν +τοῖς +λόγοις +τούτοις +δέ +ἀδελφοί +Περί +τῶν +χρόνων +καί +τῶν +καιρῶν +οὐ +χρείαν +ἔχετε +ὑμῖν +γράφεσθαι +γάρ +αὐτοί +ἀκριβῶς +οἴδατε +ὅτι +ὡς +κλέπτης +ἐν +νυκτί +ἡμέρα +Κυρίου +οὕτως +ἔρχεται +ὅταν +λέγωσιν +Εἰρήνη +καί +ἀσφάλεια +τότε +αἰφνίδιος +ὄλεθρος +αὐτοῖς +ἐπίσταται +ὥσπερ +ἡ +ὠδίν +τῇ +ἐν +γαστρί +ἐχούσῃ +καί +οὐ +μή +ἐκφύγωσιν +δέ +ἀδελφοί +ὑμεῖς +οὐκ +ἐστέ +ἐν +σκότει +ἵνα +ἡ +ἡμέρα +ὑμᾶς +καταλάβῃ +ὡς +κλέπτης +γάρ +πάντες +ὑμεῖς +ἐστε +υἱοί +φωτός +καί +υἱοί +ἡμέρας +Οὐκ +ἐσμέν +νυκτός +οὐδέ +σκότους +ἄρα +οὖν +μή +καθεύδωμεν +ὡς +οἱ +λοιποί +ἀλλά +γρηγορῶμεν +καί +νήφωμεν +γάρ +οἱ +καθεύδοντες +νυκτός +καθεύδουσιν +καί +οἱ +μεθυσκόμενοι +νυκτός +μεθύουσιν +δέ +ἡμεῖς +ἡμέρας +ὄντες +νήφωμεν +ἐνδυσάμενοι +θώρακα +πίστεως +καί +ἀγάπης +καί +περικεφαλαίαν +ἐλπίδα +σωτηρίας +ὅτι +οὐκ +ἔθετο +ἡμᾶς +ὁ +Θεός +εἰς +ὀργήν +ἀλλά +εἰς +περιποίησιν +σωτηρίας +διά +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τοῦ +ἀποθανόντος +περί +ἡμῶν +ἵνα +εἴτε +γρηγορῶμεν +εἴτε +καθεύδωμεν +ἅμα +σύν +αὐτῷ +ζήσωμεν +Διό +παρακαλεῖτε +ἀλλήλους +καί +οἰκοδομεῖτε +εἷς +τόν +ἕνα +καθώς +καί +ποιεῖτε +δέ +ἀδελφοί +Ἐρωτῶμεν +ὑμᾶς +εἰδέναι +τούς +κοπιῶντας +ἐν +ὑμῖν +καί +προϊσταμένους +ὑμῶν +ἐν +Κυρίῳ +καί +νουθετοῦντας +ὑμᾶς +καί +ἡγεῖσθαι +αὐτούς +ὑπερεκπερισσῶς +ἐν +ἀγάπῃ +διά +τό +ἔργον +αὐτῶν +εἰρηνεύετε +ἐν +ἑαυτοῖς +δέ +ἀδελφοί +Παρακαλοῦμεν +ὑμᾶς +νουθετεῖτε +τούς +ἀτάκτους +παραμυθεῖσθε +τούς +ὀλιγοψύχους +ἀντέχεσθε +τῶν +ἀσθενῶν +μακροθυμεῖτε +πρός +πάντας +ὁρᾶτε +μή +τις +κακόν +ἀντί +κακοῦ +τινι +ἀποδῷ +ἀλλά +πάντοτε +τό +ἀγαθόν +διώκετε +εἰς +ἀλλήλους +καί +εἰς +πάντας +Πάντοτε +χαίρετε +ἀδιαλείπτως +προσεύχεσθε +ἐν +παντί +εὐχαριστεῖτε +γάρ +τοῦτο +θέλημα +Θεοῦ +ἐν +Χριστῷ +Ἰησοῦ +εἰς +ὑμᾶς +τό +Πνεῦμα +μή +σβέννυτε +προφητείας +μή +ἐξουθενεῖτε +δέ +πάντα +δοκιμάζετε +τό +καλόν +κατέχετε +ἀπό +παντός +εἴδους +πονηροῦ +ἀπέχεσθε +δέ +Αὐτός +ὁ +Θεός +τῆς +εἰρήνης +ἁγιάσαι +ὑμᾶς +ὁλοτελεῖς +καί +ὁλόκληρον +ὑμῶν +τό +πνεῦμα +καί +ἡ +ψυχή +καί +τό +σῶμα +ἀμέμπτως +ἐν +τῇ +παρουσίᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τηρηθείη +πιστός +ὁ +καλῶν +ὑμᾶς +ὅς +καί +ποιήσει +Ἀδελφοί +προσεύχεσθε +περί +ἡμῶν +Ἀσπάσασθε +τούς +ἀδελφούς +πάντας +ἐν +φιλήματι +ἁγίῳ +Ἐνορκίζω +ὑμᾶς +τόν +Κύριον +ἀναγνωσθῆναι +τήν +ἐπιστολήν +πᾶσιν +τοῖς +ἀδελφοῖς +Ἠ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +μεθ’ +ὑμῶν +Παῦλος +καί +Σιλουανός +καί +Τιμόθεος +τῇ +ἐκκλησίᾳ +Θεσσαλονικέων +ἐν +Θεῷ +Πατρί +ἡμῶν +καί +Κυρίῳ +Ἰησοῦ +Χριστῷ +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +ἀδελφοί +ὀφείλομεν +Εὐχαριστεῖν +τῷ +Θεῷ +πάντοτε +περί +ὑμῶν +καθώς +ἄξιον +ἐστιν +ὅτι +ὑπεραυξάνει +ἡ +πίστις +ὑμῶν +καί +πλεονάζει +ἡ +ἀγάπη +ἑνός +ἑκάστου +πάντων +ὑμῶν +εἰς +ἀλλήλους +ὥστε +αὐτούς +ἡμᾶς +ἐν +ὑμῖν +ἐνκαυχᾶσθαι +ἐν +ταῖς +ἐκκλησίαις +τοῦ +Θεοῦ +ὑπέρ +τῆς +ὑπομονῆς +ὑμῶν +καί +πίστεως +ἐν +πᾶσιν +τοῖς +διωγμοῖς +ὑμῶν +καί +ταῖς +θλίψεσιν +αἷς +ἀνέχεσθε +ἔνδειγμα +τῆς +δικαίας +κρίσεως +τοῦ +Θεοῦ +εἰς +τό +καταξιωθῆναι +ὑμᾶς +τῆς +βασιλείας +τοῦ +Θεοῦ +ὑπέρ +ἧς +καί +πάσχετε +εἴπερ +δίκαιον +παρά +Θεῷ +ἀνταποδοῦναι +τοῖς +θλίβουσιν +ὑμᾶς +θλῖψιν +καί +ὑμῖν +τοῖς +θλιβομένοις +ἄνεσιν +μεθ’ +ἡμῶν +ἐν +τῇ +ἀποκαλύψει +τοῦ +Κυρίου +Ἰησοῦ +ἀπ’ +οὐρανοῦ +μετ’ +ἀγγέλων +δυνάμεως +αὐτοῦ +ἐν +πυρί +φλογός +διδόντος +ἐκδίκησιν +τοῖς +μή +εἰδόσιν +Θεόν +καί +τοῖς +μή +ὑπακούουσιν +τῷ +εὐαγγελίῳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +οἵτινες +τίσουσιν +δίκην +ὄλεθρον +αἰώνιον +ἀπό +προσώπου +τοῦ +Κυρίου +καί +ἀπό +τῆς +δόξης +τῆς +ἰσχύος +αὐτοῦ +ὅταν +ἔλθῃ +ἐνδοξασθῆναι +ἐν +τοῖς +ἁγίοις +αὐτοῦ +καί +θαυμασθῆναι +ἐν +πᾶσιν +τοῖς +πιστεύσασιν +ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ὅτι +ἐπιστεύθη +τό +μαρτύριον +ἡμῶν +ἐφ’ +ὑμᾶς +Εἰς +ὅ +καί +προσευχόμεθα +πάντοτε +περί +ὑμῶν +ἵνα +ὑμᾶς +ἀξιώσῃ +τῆς +κλήσεως +ὁ +Θεός +ἡμῶν +καί +πληρώσῃ +πᾶσαν +εὐδοκίαν +ἀγαθωσύνης +καί +ἔργον +πίστεως +ἐν +δυνάμει +ὅπως +ἐνδοξασθῇ +τό +ὄνομα +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +ἐν +ὑμῖν +καί +ὑμεῖς +ἐν +αὐτῷ +κατά +τήν +χάριν +τοῦ +Θεοῦ +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +δέ +ἀδελφοί +Ἐρωτῶμεν +ὑμᾶς +ὑπέρ +τῆς +παρουσίας +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +καί +ἡμῶν +ἐπισυναγωγῆς +ἐπ’ +αὐτόν +εἰς +τό +μή +ταχέως +σαλευθῆναι +ὑμᾶς +ἀπό +τοῦ +νοός +μηδέ +θροεῖσθαι +μήτε +διά +πνεύματος +μήτε +διά +λόγου +μήτε +δι’ +ἐπιστολῆς +ὡς +δι’ +ἡμῶν +ὡς +ὅτι +ἐνέστηκεν +ἡ +ἡμέρα +τοῦ +Κυρίου +μή +τις +ὑμᾶς +ἐξαπατήσῃ +κατά +μηδένα +τρόπον +ὅτι +ἐάν +μή +ἔλθῃ +ἡ +ἀποστασία +πρῶτον +καί +ἀποκαλυφθῇ +ὁ +ἄνθρωπος +τῆς +ἀνομίας +ὁ +υἱός +τῆς +ἀπωλείας +ὁ +ἀντικείμενος +καί +ὑπεραιρόμενος +ἐπί +πάντα +λεγόμενον +Θεόν +ἤ +σέβασμα +ὥστε +αὐτόν +εἰς +τόν +ναόν +τοῦ +Θεοῦ +καθίσαι +ἀποδεικνύντα +ἑαυτόν +ὅτι +ἔστιν +Θεός +Οὐ +μνημονεύετε +ὅτι +ἔτι +ὤν +πρός +ὑμᾶς +ταῦτα +ἔλεγον +ὑμῖν +καί +νῦν +τό +κατέχον +οἴδατε +εἰς +τό +ἀποκαλυφθῆναι +αὐτόν +ἐν +τῷ +αὐτοῦ +καιρῷ +γάρ +τό +μυστήριον +τῆς +ἀνομίας +ἤδη +ἐνεργεῖται +μόνον +ὁ +κατέχων +ἄρτι +ἕως +ἐκ +μέσου +γένηται +καί +τότε +ἀποκαλυφθήσεται +ὁ +ἄνομος +ὅν +ὁ +Κύριος +Ἰησοῦς +ἀνελεῖ +τῷ +πνεύματι +τοῦ +στόματος +αὐτοῦ +καί +καταργήσει +τῇ +ἐπιφανείᾳ +τῆς +παρουσίας +αὐτοῦ +οὗ +ἡ +παρουσία +ἐστιν +κατ’ +ἐνέργειαν +τοῦ +Σατανᾶ +ἐν +πάσῃ +δυνάμει +καί +σημείοις +καί +τέρασιν +ψεύδους +καί +ἐν +πάσῃ +ἀπάτῃ +ἀδικίας +τοῖς +ἀπολλυμένοις +ἀνθ’ +ὧν +τήν +ἀγάπην +τῆς +ἀληθείας +οὐκ +ἐδέξαντο +εἰς +τό +σωθῆναι +αὐτούς +καί +διά +τοῦτο +πέμπει +αὐτοῖς +ὁ +Θεός +ἐνέργειαν +πλάνης +εἰς +τό +πιστεῦσαι +αὐτούς +τῷ +ψεύδει +ἵνα +κριθῶσιν +πάντες +οἱ +μή +πιστεύσαντες +τῇ +ἀληθείᾳ +ἀλλά +εὐδοκήσαντες +τῇ +ἀδικίᾳ +δέ +Ἠμεῖς +ὀφείλομεν +εὐχαριστεῖν +τῷ +Θεῷ +πάντοτε +περί +ὑμῶν +ἀδελφοί +ἠγαπημένοι +ὑπό +Κυρίου +ὅτι +εἵλατο +ὑμᾶς +ὁ +Θεός +ἀπ’ +ἀρχῆς +εἰς +σωτηρίαν +ἐν +ἁγιασμῷ +Πνεύματος +καί +πίστει +ἀληθείας +εἰς +ὅ +καί +ἐκάλεσεν +ὑμᾶς +διά +τοῦ +εὐαγγελίου +ἡμῶν +εἰς +περιποίησιν +δόξης +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +Ἄρα +οὖν +ἀδελφοί +στήκετε +καί +κρατεῖτε +τάς +παραδόσεις +ἅς +ἐδιδάχθητε +εἴτε +διά +λόγου +εἴτε +δι’ +ἐπιστολῆς +ἡμῶν +δέ +Αὐτός +ὁ +Κύριος +ἡμῶν +Ἰησοῦς +Χριστός +καί +ὁ +Θεός +ὁ +Πατήρ +ἡμῶν +ὁ +ἀγαπήσας +ἡμᾶς +καί +δούς +παράκλησιν +αἰωνίαν +καί +ἐλπίδα +ἀγαθήν +ἐν +χάριτι +παρακαλέσαι +ὑμῶν +τάς +καρδίας +καί +στηρίξαι +ἐν +παντί +ἔργῳ +καί +λόγῳ +ἀγαθῷ +ἀδελφοί +Τό +λοιπόν +προσεύχεσθε +περί +ἡμῶν +ἵνα +ὁ +λόγος +τοῦ +Κυρίου +τρέχῃ +καί +δοξάζηται +καθώς +καί +πρός +ὑμᾶς +καί +ἵνα +ῥυσθῶμεν +ἀπό +τῶν +ἀτόπων +καί +πονηρῶν +ἀνθρώπων +γάρ +οὐ +πάντων +ἡ +πίστις +δέ +Πιστός +ἐστιν +ὁ +Κύριος +ὅς +στηρίξει +ὑμᾶς +καί +φυλάξει +ἀπό +τοῦ +πονηροῦ +δέ +πεποίθαμεν +ἐν +Κυρίῳ +ἐφ’ +ὑμᾶς +ὅτι +ἅ +παραγγέλλομεν +καί +ποιεῖτε +καί +ποιήσετε +δέ +Ὁ +Κύριος +κατευθύναι +ὑμῶν +τάς +καρδίας +εἰς +τήν +ἀγάπην +τοῦ +Θεοῦ +καί +εἰς +τήν +ὑπομονήν +τοῦ +Χριστοῦ +δέ +ἀδελφοί +Παραγγέλλομεν +ὑμῖν +ἐν +ὀνόματι +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +στέλλεσθαι +ὑμᾶς +ἀπό +παντός +ἀδελφοῦ +ἀτάκτως +περιπατοῦντος +καί +μή +κατά +τήν +παράδοσιν +ἥν +παρελάβετε +παρ’ +ἡμῶν +γάρ +αὐτοί +οἴδατε +πῶς +δεῖ +μιμεῖσθαι +ἡμᾶς +ὅτι +οὐκ +ἠτακτήσαμεν +ἐν +ὑμῖν +οὐδέ +δωρεάν +ἄρτον +ἐφάγομεν +παρά +τινος +ἀλλ’ +ἐν +κόπῳ +καί +μόχθῳ +νυκτός +καί +ἡμέρας +ἐργαζόμενοι +πρός +τό +μή +ἐπιβαρῆσαι +τινα +ὑμῶν +οὐχ +ὅτι +οὐκ +ἔχομεν +ἐξουσίαν +ἀλλ’ +ἵνα +ἑαυτούς +τύπον +δῶμεν +ὑμῖν +εἰς +τό +μιμεῖσθαι +ἡμᾶς +γάρ +καί +ὅτε +ἦμεν +πρός +ὑμᾶς +τοῦτο +παρηγγέλλομεν +ὑμῖν +ὅτι +εἴ +τις +οὐ +θέλει +ἐργάζεσθαι +μηδέ +ἐσθιέτω +γάρ +ἀκούομεν +τινας +περιπατοῦντας +ἐν +ὑμῖν +ἀτάκτως +μηδέν +ἐργαζομένους +ἀλλά +περιεργαζομένους +δέ +τοῖς +τοιούτοις +παραγγέλλομεν +καί +παρακαλοῦμεν +ἐν +Κυρίῳ +Ἰησοῦ +Χριστῷ +ἵνα +μετά +ἡσυχίας +ἐργαζόμενοι +τόν +ἑαυτῶν +ἄρτον +ἐσθίωσιν +δέ +ἀδελφοί +Ὑμεῖς +μή +ἐγκακήσητε +καλοποιοῦντες +δέ +εἰ +τις +οὐχ +ὑπακούει +τῷ +λόγῳ +ἡμῶν +διά +τῆς +ἐπιστολῆς +τοῦτον +σημειοῦσθε +μή +συναναμίγνυσθαι +αὐτῷ +ἵνα +ἐντραπῇ +καί +μή +ὡς +ἐχθρόν +ἡγεῖσθε +ἀλλά +νουθετεῖτε +ὡς +ἀδελφόν +δέ +Αὐτός +ὁ +Κύριος +τῆς +εἰρήνης +δῴη +ὑμῖν +τήν +εἰρήνην +διά +παντός +ἐν +παντί +τρόπῳ +ὁ +Κύριος +μετά +πάντων +ὑμῶν +Ὁ +ἀσπασμός +τῇ +ἐμῇ +χειρί +Παύλου +ὅ +ἐστιν +σημεῖον +ἐν +πάσῃ +ἐπιστολῇ +οὕτως +γράφω +ἡ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +μετά +πάντων +ὑμῶν +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +κατ’ +ἐπιταγήν +Θεοῦ +Σωτῆρος +ἡμῶν +καί +Χριστοῦ +Ἰησοῦ +τῆς +ἐλπίδος +ἡμῶν +Τιμοθέῳ +γνησίῳ +τέκνῳ +ἐν +πίστει +χάρις +ἔλεος +εἰρήνη +ἀπό +Θεοῦ +πατρός +καί +Χριστοῦ +Ἰησοῦ +τοῦ +κυρίου +ἡμῶν +Καθώς +παρεκάλεσα +σε +προσμεῖναι +ἐν +Ἐφέσῳ +πορευόμενος +εἰς +Μακεδονίαν +ἵνα +παραγγείλῃς +τισίν +μή +ἑτεροδιδασκαλεῖν +μηδέ +προσέχειν +μύθοις +καί +γενεαλογίαις +ἀπεράντοις +αἵτινες +ἐκζητήσεις +παρέχουσιν +μᾶλλον +ἤ +οἰκονομίαν +Θεοῦ +τήν +ἐν +πίστει +δέ +τό +τέλος +τῆς +παραγγελίας +ἐστίν +ἀγάπη +ἐκ +καθαρᾶς +καρδίας +καί +συνειδήσεως +ἀγαθῆς +καί +πίστεως +ἀνυποκρίτου +ὧν +ἀστοχήσαντες +τινες +ἐξετράπησαν +εἰς +ματαιολογίαν +θέλοντες +εἶναι +νομοδιδάσκαλοι +μή +νοοῦντες +μήτε +ἅ +λέγουσιν +μήτε +περί +τίνων +διαβεβαιοῦνται +δέ +Οἴδαμεν +ὅτι +καλός +ὁ +νόμος +ἐάν +τις +αὐτῷ +νομίμως +χρῆται +εἰδώς +τοῦτο +ὅτι +οὐ +δικαίῳ +νόμος +κεῖται +δέ +ἀνόμοις +καί +ἀνυποτάκτοις +ἀσεβέσι +καί +ἁμαρτωλοῖς +ἀνοσίοις +καί +βεβήλοις +πατρολῴαις +καί +μητρολῴαις +ἀνδροφόνοις +πόρνοις +ἀρσενοκοίταις +ἀνδραποδισταῖς +ψεύσταις +ἐπιόρκοις +καί +εἴ +τι +ἕτερον +ἀντίκειται +τῇ +ὑγιαινούσῃ +διδασκαλίᾳ +κατά +τό +εὐαγγέλιον +τῆς +δόξης +τοῦ +μακαρίου +Θεοῦ +ὅ +ἐπιστεύθην +ἐγώ +Χάριν +ἔχω +τῷ +ἐνδυναμώσαντι +με +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν +ὅτι +πιστόν +με +ἡγήσατο +θέμενος +εἰς +διακονίαν +τό +πρότερον +ὄντα +βλάσφημον +καί +διώκτην +καί +ὑβριστήν +ἀλλά +ἠλεήθην +ὅτι +ἀγνοῶν +ἐποίησα +ἐν +ἀπιστίᾳ +δέ +ὑπερεπλεόνασεν +ἡ +χάρις +τοῦ +Κυρίου +ἡμῶν +μετά +πίστεως +καί +ἀγάπης +τῆς +ἐν +Χριστῷ +Ἰησοῦ +ὁ +λόγος +πιστός +καί +πάσης +ἀποδοχῆς +ἄξιος +ὅτι +Χριστός +Ἰησοῦς +ἦλθεν +εἰς +τόν +κόσμον +ἁμαρτωλούς +σῶσαι +ὧν +πρῶτος +εἰμι +ἐγώ +ἀλλά +διά +τοῦτο +ἠλεήθην +ἵνα +ἐν +ἐμοί +πρώτῳ +ἐνδείξηται +Ἰησοῦς +Χριστός +τήν +ἅπασαν +μακροθυμίαν +πρός +ὑποτύπωσιν +τῶν +μελλόντων +πιστεύειν +ἐπ’ +αὐτῷ +εἰς +ζωήν +αἰώνιον +δέ +Τῷ +Βασιλεῖ +τῶν +αἰώνων +ἀφθάρτῳ +ἀοράτῳ +μόνῳ +Θεῷ +τιμή +καί +δόξα +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +τέκνον +Τιμόθεε +Ταύτην +τήν +παραγγελίαν +παρατίθεμαι +σοι +κατά +τάς +προαγούσας +ἐπί +σέ +προφητείας +ἵνα +στρατεύῃ +ἐν +αὐταῖς +τήν +καλήν +στρατείαν +ἔχων +πίστιν +καί +ἀγαθήν +συνείδησιν +ἥν +ἀπωσάμενοι +τινες +περί +τήν +πίστιν +ἐναυάγησαν +ὧν +ἐστιν +Ὑμέναιος +καί +Ἀλέξανδρος +οὕς +παρέδωκα +τῷ +Σατανᾷ +ἵνα +παιδευθῶσιν +μή +βλασφημεῖν +οὖν +Παρακαλῶ +πρῶτον +πάντων +ποιεῖσθαι +δεήσεις +προσευχάς +ἐντεύξεις +εὐχαριστίας +ὑπέρ +πάντων +ἀνθρώπων +ὑπέρ +βασιλέων +καί +πάντων +τῶν +ἐν +ὑπεροχῇ +ὄντων +ἵνα +ἤρεμον +καί +ἡσύχιον +βίον +διάγωμεν +ἐν +πάσῃ +εὐσεβείᾳ +καί +σεμνότητι +τοῦτο +καλόν +καί +ἀπόδεκτον +ἐνώπιον +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ +ὅς +θέλει +πάντας +ἀνθρώπους +σωθῆναι +καί +εἰς +ἐπίγνωσιν +ἀληθείας +ἐλθεῖν +γάρ +εἷς +Θεός +εἷς +καί +μεσίτης +Θεοῦ +καί +ἀνθρώπων +ἄνθρωπος +Χριστός +Ἰησοῦς +ὁ +δούς +ἑαυτόν +ἀντίλυτρον +ὑπέρ +πάντων +τό +μαρτύριον +καιροῖς +ἰδίοις +εἰς +ὅ +ἐτέθην +ἐγώ +κῆρυξ +καί +ἀπόστολος +διδάσκαλος +ἐθνῶν +ἐν +πίστει +καί +ἀληθείᾳ +ἀλήθειαν +λέγω +οὐ +ψεύδομαι +οὖν +Βούλομαι +προσεύχεσθαι +τούς +ἄνδρας +ἐν +παντί +τόπῳ +ἐπαίροντας +ὁσίους +χεῖρας +χωρίς +ὀργῆς +καί +διαλογισμοῦ +Ὡσαύτως +γυναῖκας +ἐν +καταστολῇ +κοσμίῳ +μετά +αἰδοῦς +καί +σωφροσύνης +κοσμεῖν +ἑαυτάς +μή +ἐν +πλέγμασιν +καί +χρυσίῳ +ἤ +μαργαρίταις +ἤ +ἱματισμῷ +πολυτελεῖ +ἀλλ’ +δι’ +ὅ +πρέπει +γυναιξίν +ἐπαγγελλομέναις +θεοσέβειαν +ἔργων +ἀγαθῶν +Γυνή +ἐν +ἡσυχίᾳ +μανθανέτω +ἐν +πάσῃ +ὑποταγῇ +δέ +ἐπιτρέπω +οὐκ +διδάσκειν +γυναικί +οὐδέ +αὐθεντεῖν +ἀνδρός +ἀλλ’ +εἶναι +ἐν +ἡσυχίᾳ +γάρ +Ἀδάμ +πρῶτος +ἐπλάσθη +εἶτα +Εὔα +καί +Ἀδάμ +οὐκ +ἠπατήθη +δέ +ἡ +γυνή +ἐξαπατηθεῖσα +ἐν +παραβάσει +γέγονεν +δέ +σωθήσεται +διά +τῆς +τεκνογονίας +ἐάν +μείνωσιν +ἐν +πίστει +καί +ἀγάπῃ +καί +ἁγιασμῷ +μετά +σωφροσύνης +Πιστός +ὁ +λόγος +εἴ +τις +ἐπισκοπῆς +ὀρέγεται +καλοῦ +ἔργου +ἐπιθυμεῖ +οὖν +δεῖ +τόν +ἐπίσκοπον +εἶναι +ἀνεπίλημπτον +μιᾶς +γυναικός +ἄνδρα +νηφάλιον +σώφρονα +κόσμιον +φιλόξενον +διδακτικόν +μή +πάροινον +μή +πλήκτην +ἀλλά +ἐπιεικῆ +ἄμαχον +ἀφιλάργυρον +τοῦ +ἰδίου +οἴκου +καλῶς +προϊστάμενον +τέκνα +ἔχοντα +ἐν +ὑποταγῇ +μετά +πάσης +σεμνότητος +δέ +εἰ +τις +τοῦ +ἰδίου +οἴκου +προστῆναι +οὐκ +οἶδεν +πῶς +ἐκκλησίας +Θεοῦ +ἐπιμελήσεται +μή +νεόφυτον +ἵνα +μή +τυφωθείς +εἰς +κρίμα +τοῦ +διαβόλου +ἐμπέσῃ +δέ +δεῖ +καί +μαρτυρίαν +καλήν +ἔχειν +ἀπό +τῶν +ἔξωθεν +ἵνα +μή +ἐμπέσῃ +εἰς +ὀνειδισμόν +καί +παγίδα +τοῦ +διαβόλου +ὡσαύτως +Διακόνους +σεμνούς +μή +διλόγους +μή +οἴνῳ +πολλῷ +προσέχοντας +μή +αἰσχροκερδεῖς +ἔχοντας +τό +μυστήριον +τῆς +πίστεως +ἐν +καθαρᾷ +συνειδήσει +δέ +καί +οὗτοι +δοκιμαζέσθωσαν +πρῶτον +εἶτα +διακονείτωσαν +ἀνέγκλητοι +ὄντες +ὡσαύτως +γυναῖκας +σεμνάς +μή +διαβόλους +νηφαλίους +πιστάς +ἐν +πᾶσιν +διάκονοι +ἔστωσαν +μιᾶς +γυναικός +ἄνδρες +καλῶς +προϊστάμενοι +τέκνων +καί +τῶν +ἰδίων +οἴκων +γάρ +οἱ +καλῶς +διακονήσαντες +βαθμόν +καλόν +ἑαυτοῖς +περιποιοῦνται +καί +πολλήν +παρρησίαν +ἐν +πίστει +τῇ +ἐν +Χριστῷ +Ἰησοῦ +Ταῦτα +σοι +γράφω +ἐλπίζων +ἐλθεῖν +πρός +σέ +τάχειον +δέ +ἐάν +βραδύνω +ἵνα +εἰδῇς +πῶς +δεῖ +ἀναστρέφεσθαι +ἐν +οἴκῳ +Θεοῦ +ἥτις +ἐστίν +ἐκκλησία +Θεοῦ +ζῶντος +στῦλος +καί +ἑδραίωμα +τῆς +ἀληθείας +καί +ὁμολογουμένως +μέγα +ἐστίν +τό +τῆς +εὐσεβείας +μυστήριον +Ὅς +ἐφανερώθη +ἐν +σαρκί +ἐδικαιώθη +ἐν +πνεύματι +ὤφθη +ἀγγέλοις +ἐκηρύχθη +ἐν +ἔθνεσιν +ἐπιστεύθη +ἐν +κόσμῳ +ἀνελήμφθη +ἐν +δόξῃ +δέ +Τό +πνεῦμα +ῥητῶς +λέγει +ὅτι +ἐν +ὑστέροις +καιροῖς +ἀποστήσονται +τινες +τῆς +πίστεως +προσέχοντες +πνεύμασιν +πλάνοις +καί +διδασκαλίαις +δαιμονίων +ἐν +ὑποκρίσει +ψευδολόγων +κεκαυστηριασμένων +τήν +ἰδίαν +συνείδησιν +κωλυόντων +γαμεῖν +ἀπέχεσθαι +βρωμάτων +ἅ +ὁ +Θεός +ἔκτισεν +εἰς +μετάλημψιν +μετά +εὐχαριστίας +τοῖς +πιστοῖς +καί +ἐπεγνωκόσι +τήν +ἀλήθειαν +ὅτι +πᾶν +κτίσμα +Θεοῦ +καλόν +καί +οὐδέν +ἀπόβλητον +μετά +εὐχαριστίας +λαμβανόμενον +γάρ +ἁγιάζεται +διά +λόγου +Θεοῦ +καί +ἐντεύξεως +Ταῦτα +ὑποτιθέμενος +τοῖς +ἀδελφοῖς +ἔσῃ +καλός +διάκονος +Χριστοῦ +Ἰησοῦ +ἐντρεφόμενος +τοῖς +λόγοις +τῆς +πίστεως +καί +τῆς +καλῆς +διδασκαλίας +ᾗ +παρηκολούθηκας +δέ +τούς +βεβήλους +καί +γραώδεις +μύθους +παραιτοῦ +δέ +γύμναζε +σεαυτόν +πρός +εὐσέβειαν +γάρ +ἡ +σωματική +γυμνασία +πρός +ὀλίγον +ἐστίν +ὠφέλιμος +δέ +ἡ +εὐσέβεια +πρός +πάντα +ὠφέλιμος +ἐστιν +ἔχουσα +ἐπαγγελίαν +ζωῆς +τῆς +νῦν +καί +τῆς +μελλούσης +ὁ +λόγος +πιστός +καί +πάσης +ἀποδοχῆς +ἄξιος +γάρ +εἰς +τοῦτο +κοπιῶμεν +καί +ἀγωνιζόμεθα +ὅτι +ἠλπίκαμεν +ἐπί +Θεῷ +ζῶντι +ὅς +ἐστιν +Σωτήρ +πάντων +ἀνθρώπων +μάλιστα +πιστῶν +ταῦτα +Παράγγελλε +καί +δίδασκε +μηδείς +σου +τῆς +νεότητος +καταφρονείτω +ἀλλά +γίνου +τύπος +τῶν +πιστῶν +ἐν +λόγῳ +ἐν +ἀναστροφῇ +ἐν +ἀγάπῃ +ἐν +πίστει +ἐν +ἁγνείᾳ +ἕως +ἔρχομαι +πρόσεχε +τῇ +ἀναγνώσει +τῇ +παρακλήσει +τῇ +διδασκαλίᾳ +μή +ἀμέλει +τοῦ +ἐν +σοί +χαρίσματος +ὅ +ἐδόθη +σοι +διά +προφητείας +μετά +ἐπιθέσεως +τῶν +χειρῶν +τοῦ +πρεσβυτερίου +ταῦτα +μελέτα +ἐν +τούτοις +ἴσθι +ἵνα +σου +ἡ +προκοπή +φανερά +ᾖ +πᾶσιν +ἔπεχε +σεαυτῷ +καί +τῇ +διδασκαλίᾳ +ἐπίμενε +αὐτοῖς +γάρ +τοῦτο +ποιῶν +σώσεις +καί +σεαυτόν +καί +τούς +ἀκούοντας +σου +Πρεσβυτέρῳ +μή +ἐπιπλήξῃς +ἀλλά +παρακάλει +ὡς +πατέρα +νεωτέρους +ὡς +ἀδελφούς +πρεσβυτέρας +ὡς +μητέρας +νεωτέρας +ὡς +ἀδελφάς +ἐν +πάσῃ +ἁγνείᾳ +τίμα +Χήρας +τάς +ὄντως +χήρας +δέ +εἰ +τις +χήρα +τέκνα +ἤ +ἔκγονα +ἔχει +μανθανέτωσαν +πρῶτον +τόν +ἴδιον +οἶκον +εὐσεβεῖν +καί +ἀμοιβάς +ἀποδιδόναι +τοῖς +προγόνοις +γάρ +τοῦτο +ἐστιν +ἀπόδεκτον +ἐνώπιον +τοῦ +Θεοῦ +δέ +ἡ +ὄντως +χήρα +καί +μεμονωμένη +ἤλπικεν +ἐπί +Θεόν +καί +προσμένει +ταῖς +δεήσεσιν +καί +ταῖς +προσευχαῖς +νυκτός +καί +ἡμέρας +δέ +ἡ +σπαταλῶσα +ζῶσα +τέθνηκεν +καί +ταῦτα +παράγγελλε +ἵνα +ἀνεπίλημπτοι +ὦσιν +δέ +εἰ +τις +τῶν +ἰδίων +καί +μάλιστα +οἰκείων +οὐ +προνοεῖ +τήν +πίστιν +ἤρνηται +καί +ἔστιν +ἀπίστου +χείρων +Χήρα +καταλεγέσθω +μή +ἔλαττον +ἐτῶν +ἑξήκοντα +γεγονυῖα +ἑνός +ἀνδρός +γυνή +ἐν +ἔργοις +καλοῖς +μαρτυρουμένη +εἰ +ἐτεκνοτρόφησεν +εἰ +ἐξενοδόχησεν +εἰ +ἁγίων +πόδας +ἔνιψεν +εἰ +θλιβομένοις +ἐπήρκεσεν +εἰ +παντί +ἔργῳ +ἀγαθῷ +ἐπηκολούθησεν +δέ +νεωτέρας +χήρας +παραιτοῦ +γάρ +ὅταν +καταστρηνιάσωσιν +τοῦ +Χριστοῦ +γαμεῖν +θέλουσιν +ἔχουσαι +κρίμα +ὅτι +τήν +πρώτην +πίστιν +ἠθέτησαν +δέ +ἅμα +καί +ἀργαί +μανθάνουσιν +περιερχόμεναι +τάς +οἰκίας +δέ +οὐ +μόνον +ἀργαί +ἀλλά +καί +φλύαροι +καί +περίεργοι +λαλοῦσαι +τά +μή +δέοντα +οὖν +βούλομαι +νεωτέρας +γαμεῖν +τεκνογονεῖν +οἰκοδεσποτεῖν +μηδεμίαν +ἀφορμήν +διδόναι +τῷ +ἀντικειμένῳ +λοιδορίας +χάριν +γάρ +ἤδη +τινες +ἐξετράπησαν +ὀπίσω +τοῦ +Σατανᾶ +εἴ +τις +πιστή +ἔχει +χήρας +ἐπαρκείτω +αὐταῖς +καί +μή +βαρείσθω +ἡ +ἐκκλησία +ἵνα +ταῖς +ὄντως +χήραις +ἐπαρκέσῃ +Οἱ +καλῶς +προεστῶτες +πρεσβύτεροι +διπλῆς +τιμῆς +ἀξιούσθωσαν +μάλιστα +οἱ +κοπιῶντες +ἐν +λόγῳ +καί +διδασκαλίᾳ +γάρ +λέγει +ἡ +γραφή +Βοῦν +ἀλοῶντα +οὐ +φιμώσεις +καί +Ἄξιος +ὁ +ἐργάτης +τοῦ +μισθοῦ +αὐτοῦ +κατά +πρεσβυτέρου +κατηγορίαν +μή +παραδέχου +ἐκτός +εἰ +μή +ἐπί +δύο +ἤ +τριῶν +μαρτύρων +Τούς +ἁμαρτάνοντας +ἐνώπιον +πάντων +ἔλεγχε +ἵνα +καί +οἱ +λοιποί +φόβον +ἔχωσιν +διαμαρτύρομαι +ἐνώπιον +τοῦ +Θεοῦ +καί +Χριστοῦ +Ἰησοῦ +καί +τῶν +ἐκλεκτῶν +ἀγγέλων +ἵνα +ταῦτα +φυλάξῃς +χωρίς +προκρίματος +μηδέν +ποιῶν +κατά +πρόσκλισιν +Χεῖρας +ταχέως +μηδενί +ἐπιτίθει +μηδέ +κοινώνει +ἁμαρτίαις +ἀλλοτρίαις +σεαυτόν +ἁγνόν +τήρει +Μηκέτι +ὑδροπότει +ἀλλά +οἴνῳ +ὀλίγῳ +χρῶ +διά +τόν +στόμαχον +καί +τάς +πυκνάς +σου +ἀσθενείας +Τινῶν +ἀνθρώπων +αἱ +ἁμαρτίαι +πρόδηλοι +εἰσιν +προάγουσαι +εἰς +κρίσιν +δέ +τισίν +καί +ἐπακολουθοῦσιν +ὡσαύτως +καί +τά +ἔργα +τά +καλά +πρόδηλα +καί +τά +ἄλλως +ἔχοντα +κρυβῆναι +οὐ +δύνανται +Ὅσοι +εἰσίν +ὑπό +ζυγόν +δοῦλοι +τούς +ἰδίους +δεσπότας +πάσης +τιμῆς +ἀξίους +ἡγείσθωσαν +ἵνα +μή +τό +ὄνομα +τοῦ +Θεοῦ +καί +ἡ +διδασκαλία +βλασφημῆται +δέ +οἱ +ἔχοντες +πιστούς +δεσπότας +μή +καταφρονείτωσαν +ὅτι +ἀδελφοί +εἰσιν +ἀλλά +μᾶλλον +δουλευέτωσαν +ὅτι +εἰσιν +πιστοί +καί +ἀγαπητοί +οἱ +τῆς +εὐεργεσίας +ἀντιλαμβανόμενοι +Ταῦτα +δίδασκε +καί +παρακάλει +εἴ +τις +ἑτεροδιδασκαλεῖ +καί +μή +προσέρχεται +ὑγιαίνουσιν +λόγοις +τοῖς +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +καί +τῇ +κατ’ +εὐσέβειαν +διδασκαλίᾳ +τετύφωται +μηδέν +ἐπιστάμενος +ἀλλά +νοσῶν +περί +ζητήσεις +καί +λογομαχίας +ἐξ +ὧν +γίνεται +φθόνος +ἔρις +βλασφημίαι +ὑπόνοιαι +πονηραί +διαπαρατριβαί +ἀνθρώπων +διεφθαρμένων +τόν +νοῦν +καί +ἀπεστερημένων +τῆς +ἀληθείας +νομιζόντων +πορισμόν +εἶναι +τήν +εὐσέβειαν +δέ +ἔστιν +πορισμός +μέγας +ἡ +εὐσέβεια +μετά +αὐταρκείας +γάρ +οὐδέν +εἰσηνέγκαμεν +εἰς +τόν +κόσμον +ὅτι +οὐδέ +ἐξενεγκεῖν +τι +δυνάμεθα +δέ +ἔχοντες +διατροφάς +καί +σκεπάσματα +τούτοις +ἀρκεσθησόμεθα +δέ +οἱ +βουλόμενοι +πλουτεῖν +ἐμπίπτουσιν +εἰς +πειρασμόν +καί +παγίδα +καί +ἐπιθυμίας +πολλάς +ἀνοήτους +καί +βλαβεράς +αἵτινες +βυθίζουσιν +τούς +ἀνθρώπους +εἰς +ὄλεθρον +καί +ἀπώλειαν +γάρ +ῥίζα +πάντων +τῶν +κακῶν +ἐστιν +ἡ +φιλαργυρία +ἧς +ὀρεγόμενοι +τινες +ἀπεπλανήθησαν +ἀπό +τῆς +πίστεως +καί +ἑαυτούς +περιέπειραν +ὀδύναις +πολλαῖς +δέ +ὦ +ἄνθρωπε +Θεοῦ +Σύ +ταῦτα +φεῦγε +δέ +δίωκε +δικαιοσύνην +εὐσέβειαν +πίστιν +ἀγάπην +ὑπομονήν +πραϋπαθίαν +ἀγωνίζου +τόν +καλόν +ἀγῶνα +τῆς +πίστεως +ἐπιλαβοῦ +τῆς +αἰωνίου +ζωῆς +εἰς +ἥν +ἐκλήθης +καί +ὡμολόγησας +τήν +καλήν +ὁμολογίαν +ἐνώπιον +πολλῶν +μαρτύρων +παραγγέλλω +ἐνώπιον +τοῦ +Θεοῦ +τοῦ +ζωογονοῦντος +τά +πάντα +καί +Χριστοῦ +Ἰησοῦ +τοῦ +μαρτυρήσαντος +ἐπί +Ποντίου +Πειλάτου +τήν +καλήν +ὁμολογίαν +τηρῆσαι +σε +τήν +ἐντολήν +ἄσπιλον +ἀνεπίλημπτον +μέχρι +τῆς +ἐπιφανείας +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἥν +καιροῖς +ἰδίοις +δείξει +ὁ +μακάριος +καί +μόνος +Δυνάστης +ὁ +Βασιλεύς +τῶν +βασιλευόντων +καί +Κύριος +τῶν +κυριευόντων +ὁ +μόνος +ἔχων +ἀθανασίαν +φῶς +ἀπρόσιτον +οἰκῶν +ὅν +εἶδεν +οὐδείς +ἀνθρώπων +οὐδέ +ἰδεῖν +δύναται +ᾧ +τιμή +καί +κράτος +αἰώνιον +ἀμήν +Τοῖς +πλουσίοις +ἐν +τῷ +νῦν +αἰῶνι +παράγγελλε +μή +ὑψηλοφρονεῖν +μηδέ +ἠλπικέναι +ἐπί +πλούτου +ἀδηλότητι +ἀλλ’ +ἐπί +Θεῷ +τῷ +παρέχοντι +ἡμῖν +πάντα +πλουσίως +εἰς +ἀπόλαυσιν +ἀγαθοεργεῖν +πλουτεῖν +ἐν +ἔργοις +καλοῖς +εὐμεταδότους +εἶναι +κοινωνικούς +ἀποθησαυρίζοντας +ἑαυτοῖς +θεμέλιον +καλόν +εἰς +τό +μέλλον +ἵνα +ἐπιλάβωνται +τῆς +ὄντως +ζωῆς +Ὦ +Τιμόθεε +τήν +παραθήκην +φύλαξον +ἐκτρεπόμενος +τάς +βεβήλους +κενοφωνίας +καί +ἀντιθέσεις +τῆς +ψευδωνύμου +γνώσεως +ἥν +ἐπαγγελλόμενοι +τινες +περί +τήν +πίστιν +ἠστόχησαν +Ἠ +χάρις +μεθ’ +ὑμῶν +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διά +θελήματος +Θεοῦ +κατ’ +ἐπαγγελίαν +ζωῆς +τῆς +ἐν +Χριστῷ +Ἰησοῦ +Τιμοθέῳ +ἀγαπητῷ +τέκνῳ +χάρις +ἔλεος +εἰρήνη +ἀπό +Θεοῦ +Πατρός +καί +Χριστοῦ +Ἰησοῦ +τοῦ +Κυρίου +ἡμῶν +Χάριν +ἔχω +τῷ +Θεῷ +ᾧ +λατρεύω +ἀπό +προγόνων +ἐν +καθαρᾷ +συνειδήσει +ὡς +ἀδιάλειπτον +ἔχω +τήν +περί +σοῦ +μνείαν +ἐν +ταῖς +δεήσεσιν +μου +νυκτός +καί +ἡμέρας +ἐπιποθῶν +σε +ἰδεῖν +μεμνημένος +σου +τῶν +δακρύων +ἵνα +χαρᾶς +πληρωθῶ +λαβών +ὑπόμνησιν +τῆς +ἐν +σοί +ἀνυποκρίτου +πίστεως +ἥτις +ἐνῴκησεν +πρῶτον +ἐν +τῇ +μάμμῃ +σου +Λωΐδι +καί +τῇ +μητρί +σου +Εὐνίκῃ +δέ +πέπεισμαι +ὅτι +καί +ἐν +σοί +Δι’ +ἥν +αἰτίαν +ἀναμιμνῄσκω +σε +ἀναζωπυρεῖν +τό +χάρισμα +τοῦ +Θεοῦ +ὅ +ἐστιν +ἐν +σοί +διά +τῆς +ἐπιθέσεως +τῶν +χειρῶν +μου +γάρ +οὐ +ἔδωκεν +ἡμῖν +ὁ +Θεός +πνεῦμα +δειλίας +ἀλλά +δυνάμεως +καί +ἀγάπης +καί +σωφρονισμοῦ +οὖν +Μή +ἐπαισχυνθῇς +τό +μαρτύριον +τοῦ +Κυρίου +ἡμῶν +μηδέ +ἐμέ +τόν +δέσμιον +αὐτοῦ +ἀλλά +συνκακοπάθησον +τῷ +εὐαγγελίῳ +κατά +δύναμιν +Θεοῦ +τοῦ +σώσαντος +ἡμᾶς +καί +καλέσαντος +κλήσει +ἁγίᾳ +οὐ +κατά +τά +ἔργα +ἡμῶν +ἀλλά +κατά +ἰδίαν +πρόθεσιν +καί +χάριν +τήν +δοθεῖσαν +ἡμῖν +ἐν +Χριστῷ +Ἰησοῦ +πρό +χρόνων +αἰωνίων +δέ +φανερωθεῖσαν +νῦν +διά +τῆς +ἐπιφανείας +τοῦ +Σωτῆρος +ἡμῶν +Χριστοῦ +Ἰησοῦ +μέν +καταργήσαντος +τόν +θάνατον +δέ +φωτίσαντος +ζωήν +καί +ἀφθαρσίαν +διά +τοῦ +εὐαγγελίου +εἰς +ὅ +ἐτέθην +ἐγώ +κήρυξ +καί +ἀπόστολος +καί +διδάσκαλος +δι’ +ἥν +αἰτίαν +καί +ταῦτα +πάσχω +ἀλλ’ +οὐκ +ἐπαισχύνομαι +γάρ +οἶδα +ᾧ +πεπίστευκα +καί +πέπεισμαι +ὅτι +ἐστιν +δυνατός +τήν +παραθήκην +μου +φυλάξαι +εἰς +ἐκείνην +τήν +ἡμέραν +ἔχε +ὑποτύπωσιν +ὑγιαινόντων +λόγων +ὧν +παρ’ +ἐμοῦ +ἤκουσας +ἐν +πίστει +καί +ἀγάπῃ +τῇ +ἐν +Χριστῷ +Ἰησοῦ +τήν +καλήν +παραθήκην +φύλαξον +διά +Πνεύματος +Ἁγίου +τοῦ +ἐνοικοῦντος +ἐν +ἡμῖν +Οἶδας +τοῦτο +ὅτι +ἀπεστράφησαν +με +πάντες +οἱ +ἐν +τῇ +Ἀσίᾳ +ὧν +ἐστιν +Φύγελος +καί +Ἑρμογένης +δῴη +ἔλεος +ὁ +Κύριος +τῷ +Ὀνησιφόρου +οἴκῳ +ὅτι +πολλάκις +με +ἀνέψυξεν +καί +οὐκ +τήν +ἅλυσιν +μου +ἐπαισχύνθη +ἀλλά +γενόμενος +ἐν +Ῥώμῃ +σπουδαίως +ἐζήτησεν +με +καί +εὗρεν +δῴη +αὐτῷ +ὁ +Κύριος +εὑρεῖν +ἔλεος +παρά +Κυρίου +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +καί +ὅσα +ἐν +Ἐφέσῳ +διηκόνησεν +βέλτιον +σύ +γινώσκεις +οὖν +τέκνον +μου +Σύ +ἐνδυναμοῦ +ἐν +τῇ +χάριτι +τῇ +ἐν +Χριστῷ +Ἰησοῦ +καί +ἅ +ἤκουσας +παρ’ +ἐμοῦ +διά +πολλῶν +μαρτύρων +ταῦτα +παράθου +πιστοῖς +ἀνθρώποις +οἵτινες +ἱκανοί +ἔσονται +καί +ἑτέρους +διδάξαι +συνκακοπάθησον +ὡς +καλός +στρατιώτης +Χριστοῦ +Ἰησοῦ +οὐδείς +στρατευόμενος +ἐμπλέκεται +ταῖς +τοῦ +βίου +πραγματείαις +ἵνα +τῷ +στρατολογήσαντι +ἀρέσῃ +δέ +ἐάν +καί +ἀθλῇ +τις +οὐ +στεφανοῦται +ἐάν +μή +νομίμως +ἀθλήσῃ +δεῖ +τόν +κοπιῶντα +γεωργόν +πρῶτον +τῶν +καρπῶν +μεταλαμβάνειν +νόει +ὅ +λέγω +γάρ +δώσει +σοι +ὁ +Κύριος +σύνεσιν +ἐν +πᾶσιν +Μνημόνευε +Ἰησοῦν +Χριστόν +ἐγηγερμένον +ἐκ +νεκρῶν +ἐκ +σπέρματος +Δαυείδ +κατά +τό +εὐαγγέλιον +μου +ἐν +ᾧ +κακοπαθῶ +μέχρι +δεσμῶν +ὡς +κακοῦργος +ἀλλά +ὁ +λόγος +τοῦ +Θεοῦ +οὐ +δέδεται +διά +τοῦτο +πάντα +ὑπομένω +διά +τούς +ἐκλεκτούς +ἵνα +καί +αὐτοί +τύχωσιν +σωτηρίας +τῆς +ἐν +Χριστῷ +Ἰησοῦ +μετά +δόξης +αἰωνίου +Πιστός +ὁ +λόγος +γάρ +εἰ +συναπεθάνομεν +καί +συζήσομεν +εἰ +ὑπομένομεν +καί +συνβασιλεύσομεν +εἰ +ἀρνησόμεθα +κἀκεῖνος +ἀρνήσεται +ἡμᾶς +εἰ +ἀπιστοῦμεν +ἐκεῖνος +πιστός +μένει +γάρ +ἀρνήσασθαι +ἑαυτόν +οὐ +δύναται +Ταῦτα +ὑπομίμνῃσκε +διαμαρτυρόμενος +ἐνώπιον +τοῦ +Θεοῦ +μή +λογομαχεῖν +ἐπ’ +οὐδέν +χρήσιμον +ἐπί +καταστροφῇ +τῶν +ἀκουόντων +σπούδασον +παραστῆσαι +σεαυτόν +δόκιμον +τῷ +Θεῷ +ἐργάτην +ἀνεπαίσχυντον +ὀρθοτομοῦντα +τόν +λόγον +τῆς +ἀληθείας +δέ +τάς +βεβήλους +κενοφωνίας +περιΐστασο +γάρ +ἐπί +πλεῖον +ἀσεβείας +προκόψουσιν +καί +ὁ +λόγος +αὐτῶν +ὡς +γάγγραινα +νομήν +ἕξει +ὧν +ἐστιν +Ὑμέναιος +καί +Φιλητός +οἵτινες +περί +τήν +ἀλήθειαν +ἠστόχησαν +λέγοντες +ἀνάστασιν +ἤδη +γεγονέναι +καί +ἀνατρέπουσιν +τήν +τινων +πίστιν +μέντοι +ὁ +στερεός +θεμέλιος +τοῦ +Θεοῦ +ἕστηκεν +ἔχων +τήν +σφραγῖδα +ταύτην +Ἔγνω +Κύριος +τούς +ὄντας +αὐτοῦ +καί +Ἀποστήτω +ἀπό +ἀδικίας +πᾶς +ὁ +ὀνομάζων +τό +ὄνομα +Κυρίου +δέ +ἐν +μεγάλῃ +οἰκίᾳ +ἔστιν +οὐκ +μόνον +σκεύη +χρυσᾶ +καί +ἀργυρᾶ +ἀλλά +καί +ξύλινα +καί +ὀστράκινα +καί +μέν +ἅ +εἰς +τιμήν +δέ +ἅ +εἰς +ἀτιμίαν +οὖν +ἐάν +τις +ἐκκαθάρῃ +ἑαυτόν +ἀπό +τούτων +ἔσται +σκεῦος +εἰς +τιμήν +ἡγιασμένον +εὔχρηστον +τῷ +δεσπότῃ +εἰς +πᾶν +ἔργον +ἀγαθόν +ἡτοιμασμένον +δέ +τάς +νεωτερικάς +ἐπιθυμίας +φεῦγε +δέ +δίωκε +δικαιοσύνην +πίστιν +ἀγάπην +εἰρήνην +μετά +τῶν +ἐπικαλουμένων +τόν +Κύριον +ἐκ +καθαρᾶς +καρδίας +δέ +τάς +μωράς +καί +ἀπαιδεύτους +ζητήσεις +παραιτοῦ +εἰδώς +ὅτι +γεννῶσιν +μάχας +δέ +δεῖ +δοῦλον +Κυρίου +οὐ +μάχεσθαι +ἀλλά +εἶναι +ἤπιον +πρός +πάντας +διδακτικόν +ἀνεξίκακον +ἐν +πραΰτητι +παιδεύοντα +τούς +ἀντιδιατιθεμένους +μή +ποτε +δώῃ +αὐτοῖς +ὁ +Θεός +μετάνοιαν +εἰς +ἐπίγνωσιν +ἀληθείας +καί +ἀνανήψωσιν +ἐκ +τῆς +τοῦ +διαβόλου +παγίδος +ἐζωγρημένοι +ὑπ’ +αὐτοῦ +εἰς +τό +ἐκείνου +θέλημα +δέ +Τοῦτο +γίνωσκε +ὅτι +ἐν +ἐσχάταις +ἡμέραις +ἐνστήσονται +καιροί +χαλεποί +γάρ +ἔσονται +οἱ +ἄνθρωποι +φίλαυτοι +φιλάργυροι +ἀλαζόνες +ὑπερήφανοι +βλάσφημοι +γονεῦσιν +ἀπειθεῖς +ἀχάριστοι +ἀνόσιοι +ἄστοργοι +ἄσπονδοι +διάβολοι +ἀκρατεῖς +ἀνήμεροι +ἀφιλάγαθοι +προδόται +προπετεῖς +τετυφωμένοι +φιλήδονοι +μᾶλλον +ἤ +φιλόθεοι +ἔχοντες +μόρφωσιν +εὐσεβείας +δέ +τήν +δύναμιν +αὐτῆς +ἠρνημένοι +καί +τούτους +ἀποτρέπου +γάρ +ἐκ +τούτων +εἰσιν +οἱ +ἐνδύνοντες +εἰς +τάς +οἰκίας +καί +αἰχμαλωτίζοντες +γυναικάρια +σεσωρευμένα +ἁμαρτίαις +ἀγόμενα +ἐπιθυμίαις +ποικίλαις +πάντοτε +μανθάνοντα +καί +μηδέποτε +εἰς +ἐπίγνωσιν +ἀληθείας +ἐλθεῖν +δυνάμενα +δέ +ὅν +τρόπον +Ἰάννης +καί +Ἰαμβρῆς +ἀντέστησαν +Μωϋσεῖ +οὕτως +καί +οὗτοι +ἀνθίστανται +τῇ +ἀληθείᾳ +ἄνθρωποι +κατεφθαρμένοι +τόν +νοῦν +ἀδόκιμοι +περί +τήν +πίστιν +ἀλλ’ +οὐ +προκόψουσιν +ἐπί +πλεῖον +γάρ +ἡ +ἄνοια +αὐτῶν +ἔκδηλος +ἔσται +πᾶσιν +ὡς +καί +ἡ +ἐκείνων +ἐγένετο +δέ +Σύ +παρηκολούθησας +μου +τῇ +διδασκαλίᾳ +τῇ +ἀγωγῇ +τῇ +προθέσει +τῇ +πίστει +τῇ +μακροθυμίᾳ +τῇ +ἀγάπῃ +τῇ +ὑπομονῇ +τοῖς +διωγμοῖς +τοῖς +παθήμασιν +οἷα +μοι +ἐγένετο +ἐν +Ἀντιοχείᾳ +ἐν +Ἰκονίῳ +ἐν +Λύστροις +οἵους +διωγμούς +ὑπήνεγκα +καί +ἐκ +πάντων +με +ἐρύσατο +ὁ +Κύριος +δέ +καί +πάντες +οἱ +θέλοντες +ζῆν +εὐσεβῶς +ἐν +Χριστῷ +Ἰησοῦ +διωχθήσονται +δέ +πονηροί +ἄνθρωποι +καί +γόητες +προκόψουσιν +ἐπί +τό +χεῖρον +πλανῶντες +καί +πλανώμενοι +δέ +σύ +μένε +ἐν +οἷς +ἔμαθες +καί +ἐπιστώθης +εἰδώς +παρά +τίνων +ἔμαθες +καί +ὅτι +ἀπό +βρέφους +οἶδας +ἱερά +γράμματα +τά +δυνάμενα +σε +σοφίσαι +εἰς +σωτηρίαν +διά +πίστεως +τῆς +ἐν +Χριστῷ +Ἰησοῦ +πᾶσα +γραφή +θεόπνευστος +καί +ὠφέλιμος +πρός +διδασκαλίαν +πρός +ἐλεγμόν +πρός +ἐπανόρθωσιν +πρός +παιδείαν +τήν +ἐν +δικαιοσύνῃ +ἵνα +ἄρτιος +ᾖ +ὁ +τοῦ +Θεοῦ +ἄνθρωπος +πρός +πᾶν +ἔργον +ἀγαθόν +ἐξηρτισμένος +Διαμαρτύρομαι +ἐνώπιον +τοῦ +Θεοῦ +καί +Χριστοῦ +Ἰησοῦ +τοῦ +μέλλοντος +κρίνειν +ζῶντας +καί +νεκρούς +καί +τήν +ἐπιφάνειαν +αὐτοῦ +καί +τήν +βασιλείαν +αὐτοῦ +κήρυξον +τόν +λόγον +ἐπίστηθι +εὐκαίρως +ἀκαίρως +ἔλεγξον +ἐπιτίμησον +παρακάλεσον +ἐν +πάσῃ +μακροθυμίᾳ +καί +διδαχῇ +γάρ +ἔσται +καιρός +ὅτε +οὐκ +τῆς +ὑγιαινούσης +διδασκαλίας +ἀνέξονται +ἀλλά +κατά +τάς +ἰδίας +ἐπιθυμίας +ἑαυτοῖς +ἐπισωρεύσουσιν +διδασκάλους +κνηθόμενοι +τήν +ἀκοήν +καί +μέν +ἀπό +τῆς +ἀληθείας +τήν +ἀκοήν +ἀποστρέψουσιν +δέ +ἐπί +τούς +μύθους +ἐκτραπήσονται +δέ +σύ +νῆφε +ἐν +πᾶσιν +κακοπάθησον +ποίησον +ἔργον +εὐαγγελιστοῦ +τήν +διακονίαν +σου +πληροφόρησον +γάρ +Ἐγώ +ἤδη +σπένδομαι +καί +ὁ +καιρός +τῆς +ἀναλύσεως +μου +ἐφέστηκεν +τόν +καλόν +ἀγῶνα +ἠγώνισμαι +τόν +δρόμον +τετέλεκα +τήν +πίστιν +τετήρηκα +λοιπόν +ἀπόκειται +μοι +ὁ +τῆς +δικαιοσύνης +στέφανος +ὅν +ἀποδώσει +μοι +ὁ +κύριος +ὁ +δίκαιος +κριτής +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +δέ +οὐ +μόνον +ἐμοί +ἀλλά +καί +πᾶσι +τοῖς +ἠγαπηκόσι +τήν +ἐπιφάνειαν +αὐτοῦ +Σπούδασον +ἐλθεῖν +πρός +με +ταχέως +γάρ +Δημᾶς +με +ἐγκατέλιπεν +ἀγαπήσας +τόν +νῦν +αἰῶνα +καί +ἐπορεύθη +εἰς +Θεσσαλονίκην +Κρήσκης +εἰς +Γαλατίαν +Τίτος +εἰς +Δαλματίαν +Λουκᾶς +ἐστιν +μόνος +μετ’ +ἐμοῦ +Μᾶρκον +ἀναλαβών +ἄγε +μετά +σεαυτοῦ +γάρ +ἔστιν +μοι +εὔχρηστος +εἰς +διακονίαν +δέ +Τυχικόν +ἀπέστειλα +εἰς +Ἔφεσον +τόν +φελόνην +ὅν +ἀπέλιπον +ἐν +Τρῳάδι +παρά +Κάρπῳ +ἐρχόμενος +φέρε +καί +τά +βιβλία +μάλιστα +τάς +μεμβράνας +Ἀλέξανδρος +ὁ +χαλκεύς +πολλά +κακά +μοι +ἐνεδείξατο +ἀποδώσει +αὐτῷ +ὁ +Κύριος +κατά +τά +ἔργα +αὐτοῦ +ὅν +καί +σύ +φυλάσσου +γάρ +λίαν +ἀντέστη +τοῖς +ἡμετέροις +λόγοις +Ἐν +τῇ +πρώτῃ +μου +ἀπολογίᾳ +οὐδείς +μοι +παρεγένετο +ἀλλά +πάντες +με +ἐγκατέλιπον +μή +αὐτοῖς +λογισθείη +δέ +ὁ +Κύριος +μοι +παρέστη +καί +ἐνεδυνάμωσεν +με +ἵνα +δι’ +ἐμοῦ +τό +κήρυγμα +πληροφορηθῇ +καί +ἀκούσωσιν +πάντα +τά +ἔθνη +καί +ἐρύσθην +ἐκ +στόματος +λέοντος +ῥύσεται +με +ὁ +Κύριος +ἀπό +παντός +ἔργου +πονηροῦ +καί +σώσει +εἰς +τήν +βασιλείαν +αὐτοῦ +τήν +ἐπουράνιον +ᾧ +ἡ +δόξα +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Ἄσπασαι +Πρίσκαν +καί +Ἀκύλαν +καί +τόν +Ὀνησιφόρου +οἶκον +Ἔραστος +ἔμεινεν +ἐν +Κορίνθῳ +δέ +Τρόφιμον +ἀπέλιπον +ἐν +Μιλήτῳ +ἀσθενοῦντα +Σπούδασον +πρό +χειμῶνος +ἐλθεῖν +Ἀσπάζεται +σε +Εὔβουλος +καί +Πούδης +καί +Λίνος +καί +Κλαυδία +καί +οἱ +ἀδελφοί +πάντες +Ὁ +Κύριος +μετά +τοῦ +πνεύματος +σου +ἡ +χάρις +μεθ’ +ὑμῶν +Παῦλος +δοῦλος +Θεοῦ +δέ +ἀπόστολος +Ἰησοῦ +Χριστοῦ +κατά +πίστιν +ἐκλεκτῶν +Θεοῦ +καί +ἐπίγνωσιν +ἀληθείας +τῆς +κατ’ +εὐσέβειαν +ἐπ’ +ἐλπίδι +ζωῆς +αἰωνίου +ἥν +ἐπηγγείλατο +ὁ +ἀψευδής +Θεός +πρό +χρόνων +αἰωνίων +δέ +ἐφανέρωσεν +καιροῖς +ἰδίοις +τόν +λόγον +αὐτοῦ +ἐν +κηρύγματι +ὅ +ἐπιστεύθην +ἐγώ +κατ’ +ἐπιταγήν +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ +Τίτῳ +γνησίῳ +τέκνῳ +κατά +κοινήν +πίστιν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +καί +Χριστοῦ +Ἰησοῦ +τοῦ +Σωτῆρος +ἡμῶν +Τούτου +χάριν +ἀπέλιπον +σε +ἐν +Κρήτῃ +ἵνα +τά +λείποντα +ἐπιδιορθώσῃ +καί +καταστήσῃς +κατά +πόλιν +πρεσβυτέρους +ὡς +ἐγώ +σοι +διεταξάμην +εἴ +τίς +ἐστιν +ἀνέγκλητος +μιᾶς +γυναικός +ἀνήρ +ἔχων +τέκνα +πιστά +μή +ἐν +κατηγορίᾳ +ἀσωτίας +ἤ +ἀνυπότακτα +γάρ +δεῖ +τόν +ἐπίσκοπον +εἶναι +ὡς +Θεοῦ +οἰκονόμον +ἀνέγκλητον +μή +αὐθάδη +μή +ὀργίλον +μή +πάροινον +μή +πλήκτην +μή +αἰσχροκερδῆ +ἀλλά +φιλόξενον +φιλάγαθον +σώφρονα +δίκαιον +ὅσιον +ἐγκρατῆ +ἀντεχόμενον +τοῦ +κατά +τήν +διδαχήν +πιστοῦ +λόγου +ἵνα +ᾖ +δυνατός +καί +παρακαλεῖν +ἐν +τῇ +διδασκαλίᾳ +τῇ +ὑγιαινούσῃ +καί +τούς +ἀντιλέγοντας +ἐλέγχειν +γάρ +Εἰσίν +πολλοί +ἀνυπότακτοι +ματαιολόγοι +καί +φρεναπάται +μάλιστα +οἱ +ἐκ +τῆς +περιτομῆς +οὕς +ἐπιστομίζειν +δεῖ +οἵτινες +ὅλους +οἴκους +ἀνατρέπουσιν +διδάσκοντες +ἅ +μή +δεῖ +αἰσχροῦ +κέρδους +χάριν +εἶπεν +τις +ἐξ +αὐτῶν +ἴδιος +αὐτῶν +προφήτης +Κρῆτες +ἀεί +ψεῦσται +κακά +θηρία +γαστέρες +ἀργαί +ἡ +μαρτυρία +αὕτη +ἐστίν +ἀληθής +δι’ +ἥν +αἰτίαν +ἔλεγχε +αὐτούς +ἀποτόμως +ἵνα +ὑγιαίνωσιν +ἐν +τῇ +πίστει +μή +προσέχοντες +Ἰουδαϊκοῖς +μύθοις +καί +ἐντολαῖς +ἀνθρώπων +ἀποστρεφομένων +τήν +ἀλήθειαν +πάντα +καθαρά +τοῖς +καθαροῖς +δέ +τοῖς +μεμιαμμένοις +καί +ἀπίστοις +οὐδέν +καθαρόν +ἀλλά +μεμίανται +αὐτῶν +καί +ὁ +νοῦς +καί +ἡ +συνείδησις +Θεόν +εἰδέναι +ὁμολογοῦσιν +δέ +τοῖς +ἔργοις +ἀρνοῦνται +ὄντες +βδελυκτοί +καί +ἀπειθεῖς +καί +πρός +πᾶν +ἔργον +ἀγαθόν +ἀδόκιμοι +δέ +Σύ +λάλει +ἅ +πρέπει +τῇ +ὑγιαινούσῃ +διδασκαλίᾳ +πρεσβύτας +εἶναι +νηφαλίους +σεμνούς +σώφρονας +ὑγιαίνοντας +τῇ +πίστει +τῇ +ἀγάπῃ +τῇ +ὑπομονῇ +πρεσβύτιδας +ὡσαύτως +ἐν +καταστήματι +ἱεροπρεπεῖς +μή +διαβόλους +μηδέ +οἴνῳ +πολλῷ +δεδουλωμένας +καλοδιδασκάλους +ἵνα +σωφρονίζωσιν +τάς +νέας +εἶναι +φιλάνδρους +φιλοτέκνους +σώφρονας +ἁγνάς +οἰκουργούς +ἀγαθάς +ὑποτασσομένας +τοῖς +ἰδίοις +ἀνδράσιν +ἵνα +μή +ὁ +λόγος +τοῦ +Θεοῦ +βλασφημῆται +Τούς +νεωτέρους +ὡσαύτως +παρακάλει +σωφρονεῖν +περί +πάντα +σεαυτόν +παρεχόμενος +τύπον +καλῶν +ἔργων +ἐν +τῇ +διδασκαλίᾳ +ἀφθορίαν +σεμνότητα +λόγον +ὑγιῆ +ἀκατάγνωστον +ἵνα +ὁ +ἐξ +ἐναντίας +ἐντραπῇ +ἔχων +λέγειν +περί +ἡμῶν +μηδέν +φαῦλον +δούλους +ἰδίοις +δεσπόταις +ὑποτάσσεσθαι +ἐν +πᾶσιν +εὐαρέστους +εἶναι +μή +ἀντιλέγοντας +μή +νοσφιζομένους +ἀλλά +πᾶσαν +πίστιν +ἀγαθήν +ἐνδεικνυμένους +ἵνα +τήν +διδασκαλίαν +τήν +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ +κοσμῶσιν +ἐν +πᾶσιν +γάρ +Ἐπεφάνη +ἡ +χάρις +τοῦ +Θεοῦ +σωτήριος +πᾶσιν +ἀνθρώποις +παιδεύουσα +ἡμᾶς +ἵνα +ἀρνησάμενοι +τήν +ἀσέβειαν +καί +τάς +κοσμικάς +ἐπιθυμίας +σωφρόνως +καί +δικαίως +καί +εὐσεβῶς +ζήσωμεν +ἐν +τῷ +νῦν +αἰῶνι +προσδεχόμενοι +τήν +μακαρίαν +ἐλπίδα +καί +ἐπιφάνειαν +τῆς +δόξης +τοῦ +μεγάλου +Θεοῦ +καί +Σωτῆρος +ἡμῶν +Χριστοῦ +Ἰησοῦ +ὅς +ἔδωκεν +ἑαυτόν +ὑπέρ +ἡμῶν +ἵνα +λυτρώσηται +ἡμᾶς +ἀπό +πάσης +ἀνομίας +καί +καθαρίσῃ +ἑαυτῷ +λαόν +περιούσιον +ζηλωτήν +καλῶν +ἔργων +Ταῦτα +λάλει +καί +παρακάλει +καί +ἔλεγχε +μετά +πάσης +ἐπιταγῆς +μηδείς +σου +περιφρονείτω +Ὑπομίμνῃσκε +αὐτούς +ἀρχαῖς +ἐξουσίαις +ὑποτάσσεσθαι +πειθαρχεῖν +πρός +πᾶν +ἔργον +ἀγαθόν +ἑτοίμους +εἶναι +μηδένα +βλασφημεῖν +ἀμάχους +εἶναι +ἐπιεικεῖς +πᾶσαν +πραΰτητα +ἐνδεικνυμένους +πρός +πάντας +ἀνθρώπους +γάρ +Ἦμεν +ποτε +καί +ἡμεῖς +ἀνόητοι +ἀπειθεῖς +πλανώμενοι +δουλεύοντες +ἐπιθυμίαις +καί +ἡδοναῖς +ποικίλαις +ἐν +κακίᾳ +καί +φθόνῳ +διάγοντες +στυγητοί +μισοῦντες +ἀλλήλους +δέ +ὅτε +ἡ +χρηστότης +καί +ἡ +φιλανθρωπία +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ +ἐπεφάνη +οὐκ +ἐξ +ἔργων +τῶν +ἐν +δικαιοσύνῃ +ἅ +ἐποιήσαμεν +ἡμεῖς +ἀλλά +κατά +τό +αὐτοῦ +ἔλεος +ἔσωσεν +ἡμᾶς +διά +λουτροῦ +παλινγενεσίας +καί +ἀνακαινώσεως +Πνεύματος +Ἁγίου +οὗ +ἐξέχεεν +ἐφ’ +ἡμᾶς +πλουσίως +διά +Ἰησοῦ +Χριστοῦ +τοῦ +Σωτῆρος +ἡμῶν +ἵνα +δικαιωθέντες +τῇ +ἐκείνου +χάριτι +κληρονόμοι +γενηθῶμεν +κατ’ +ἐλπίδα +ζωῆς +αἰωνίου +Πιστός +ὁ +λόγος +καί +περί +τούτων +βούλομαι +σε +διαβεβαιοῦσθαι +ἵνα +φροντίζωσιν +καλῶν +ἔργων +προΐστασθαι +οἱ +πεπιστευκότες +Θεῷ +ταῦτα +ἐστιν +καλά +καί +ὠφέλιμα +τοῖς +ἀνθρώποις +δέ +μωράς +ζητήσεις +καί +γενεαλογίας +καί +ἔριν +καί +μάχας +νομικάς +περιΐστασο +γάρ +εἰσίν +ἀνωφελεῖς +καί +μάταιοι +αἱρετικόν +ἄνθρωπον +μετά +μίαν +καί +δευτέραν +νουθεσίαν +παραιτοῦ +εἰδώς +ὅτι +ὁ +τοιοῦτος +ἐξέστραπται +καί +ἁμαρτάνει +ὤν +αὐτοκατάκριτος +Ὅταν +πέμψω +πρός +σέ +Ἀρτεμᾶν +ἤ +Τυχικόν +σπούδασον +ἐλθεῖν +πρός +με +εἰς +Νικόπολιν +γάρ +ἐκεῖ +παραχειμάσαι +κέκρικα +Ζηνᾶν +τόν +νομικόν +καί +Ἀπολλῶν +σπουδαίως +πρόπεμψον +ἵνα +μηδέν +αὐτοῖς +λείπῃ +δέ +μανθανέτωσαν +καί +οἱ +ἡμέτεροι +καλῶν +ἔργων +προΐστασθαι +εἰς +τάς +ἀναγκαίας +χρείας +ἵνα +μή +ὦσιν +ἄκαρποι +Ἀσπάζονται +σε +οἱ +μετ’ +ἐμοῦ +πάντες +ἄσπασαι +τούς +φιλοῦντας +ἡμᾶς +ἐν +πίστει +Ἠ +χάρις +μετά +πάντων +ὑμῶν +Παῦλος +δέσμιος +Χριστοῦ +Ἰησοῦ +καί +Τιμόθεος +ὁ +ἀδελφός +Φιλήμονι +τῷ +ἀγαπητῷ +καί +συνεργῷ +ἡμῶν +καί +Ἀπφίᾳ +τῇ +ἀδελφῇ +καί +Ἀρχίππῳ +τῷ +συστρατιώτῃ +ἡμῶν +καί +τῇ +κατ’ +οἶκον +σου +ἐκκλησίᾳ +ὑμῖν +χάρις +καί +εἰρήνη +ἀπό +Θεοῦ +Πατρός +ἡμῶν +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +Εὐχαριστῶ +τῷ +Θεῷ +μου +πάντοτε +μνείαν +σου +ποιούμενος +ἐπί +τῶν +προσευχῶν +μου +ἀκούων +σου +τήν +ἀγάπην +καί +τήν +πίστιν +ἥν +ἔχεις +πρός +τόν +Κύριον +Ἰησοῦν +καί +εἰς +πάντας +τούς +ἁγίους +ὅπως +ἡ +κοινωνία +τῆς +πίστεως +σου +ἐνεργής +γένηται +ἐν +ἐπιγνώσει +παντός +ἀγαθοῦ +τοῦ +ἐν +ἡμῖν +εἰς +Χριστόν +γάρ +χαράν +πολλήν +καί +παράκλησιν +ἔσχον +ἐπί +τῇ +ἀγάπῃ +σου +ὅτι +τά +σπλάγχνα +τῶν +ἁγίων +ἀναπέπαυται +διά +σοῦ +ἀδελφέ +Διό +πολλήν +ἐν +Χριστῷ +παρρησίαν +ἔχων +ἐπιτάσσειν +σοι +τό +ἀνῆκον +διά +τήν +ἀγάπην +μᾶλλον +παρακαλῶ +τοιοῦτος +ὤν +ὡς +Παῦλος +πρεσβύτης +δέ +νυνί +καί +δέσμιος +Χριστοῦ +Ἰησοῦ +παρακαλῶ +σε +περί +τοῦ +ἐμοῦ +τέκνου +ἐγέννησα +ἐν +τοῖς +δεσμοῖς +ὅν +Ὀνήσιμον +τόν +ποτέ +σοι +ἄχρηστον +δέ +νυνί +καί +σοί +καί +ἐμοί +εὔχρηστον +ἀνέπεμψα +σοι +ὅν +αὐτόν +τοῦτ’ +ἔστιν +τά +ἐμά +σπλάγχνα +ἐγώ +ἐβουλόμην +ὅν +πρός +ἐμαυτόν +κατέχειν +ἵνα +ὑπέρ +σοῦ +μοι +διακονῇ +ἐν +τοῖς +δεσμοῖς +τοῦ +εὐαγγελίου +δέ +χωρίς +τῆς +σῆς +γνώμης +οὐδέν +ποιῆσαι +ἠθέλησα +ἵνα +μή +ὡς +κατά +ἀνάγκην +τό +ἀγαθόν +σου +ᾖ +ἀλλά +κατά +ἑκούσιον +γάρ +τάχα +διά +τοῦτο +ἐχωρίσθη +πρός +ὥραν +ἵνα +αἰώνιον +αὐτόν +ἀπέχῃς +οὐκέτι +ὡς +δοῦλον +ἀλλά +ὑπέρ +δοῦλον +ἀδελφόν +ἀγαπητόν +μάλιστα +ἐμοί +δέ +πόσῳ +μᾶλλον +σοί +καί +ἐν +σαρκί +καί +ἐν +Κυρίῳ +οὖν +εἰ +με +ἔχεις +κοινωνόν +προσλαβοῦ +αὐτόν +ὡς +ἐμέ +δέ +εἰ +τι +σε +ἠδίκησεν +ἤ +ὀφείλει +τοῦτο +ἐμοί +ἐλλόγα +ἐγώ +Παῦλος +ἔγραψα +τῇ +ἐμῇ +χειρί +ἐγώ +ἀποτίσω +ἵνα +μή +λέγω +σοι +ὅτι +καί +σεαυτόν +μοι +προσοφείλεις +ναί +ἀδελφέ +ἐγώ +σου +ὀναίμην +ἐν +Κυρίῳ +ἀνάπαυσον +μου +τά +σπλάγχνα +ἐν +Χριστῷ +Πεποιθώς +τῇ +ὑπακοῇ +σου +ἔγραψα +σοι +εἰδώς +ὅτι +καί +ὑπέρ +ἅ +λέγω +ποιήσεις +δέ +ἅμα +καί +ἑτοίμαζε +μοι +ξενίαν +γάρ +ἐλπίζω +ὅτι +διά +τῶν +προσευχῶν +ὑμῶν +χαρισθήσομαι +ὑμῖν +Ἀσπάζεται +σε +Ἐπαφρᾶς +ὁ +συναιχμάλωτος +μου +ἐν +Χριστῷ +Ἰησοῦ +Μᾶρκος +Ἀρίσταρχος +Δημᾶς +Λουκᾶς +οἱ +συνεργοί +μου +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +μετά +τοῦ +πνεύματος +ὑμῶν +Πολυμερῶς +καί +πολυτρόπως +πάλαι +λαλήσας +τοῖς +πατράσιν +ἐν +τοῖς +προφήταις +ὁ +Θεός +ἐπ’ +ἐσχάτου +τῶν +ἡμερῶν +τούτων +ἐλάλησεν +ἡμῖν +ἐν +Υἱῷ +ὅν +ἔθηκεν +κληρονόμον +πάντων +δι’ +οὗ +καί +ἐποίησεν +τούς +αἰῶνας +ὅς +ὤν +ἀπαύγασμα +τῆς +δόξης +καί +χαρακτήρ +τῆς +ὑποστάσεως +αὐτοῦ +τε +φέρων +τά +πάντα +τῷ +ῥήματι +τῆς +δυνάμεως +αὐτοῦ +καθαρισμόν +τῶν +ἁμαρτιῶν +ποιησάμενος +ἐκάθισεν +ἐν +δεξιᾷ +τῆς +Μεγαλωσύνης +ἐν +ὑψηλοῖς +τοσούτῳ +κρείττων +γενόμενος +τῶν +ἀγγέλων +ὅσῳ +διαφορώτερον +ὄνομα +παρ’ +αὐτούς +κεκληρονόμηκεν +γάρ +Τίνι +τῶν +ἀγγέλων +εἶπεν +ποτε +Υἱός +μου +εἶ +σύ +ἐγώ +σήμερον +γεγέννηκα +σε +καί +πάλιν +Ἐγώ +ἔσομαι +αὐτῷ +εἰς +Πατέρα +καί +αὐτός +ἔσται +μοι +εἰς +Υἱόν +δέ +ὅταν +πάλιν +εἰσαγάγῃ +τόν +πρωτότοκον +εἰς +τήν +οἰκουμένην +λέγει +Καί +προσκυνησάτωσαν +αὐτῷ +πάντες +ἄγγελοι +Θεοῦ +καί +μέν +πρός +τούς +ἀγγέλους +λέγει +Ὁ +ποιῶν +τούς +ἀγγέλους +αὐτοῦ +πνεύματα +καί +τούς +λειτουργούς +αὐτοῦ +πυρός +φλόγα +δέ +πρός +τόν +Υἱόν +ὁ +Θεός +Ὁ +θρόνος +σου +εἰς +τόν +αἰῶνα +τοῦ +αἰῶνος +καί +ἡ +ῥάβδος +τῆς +εὐθύτητος +ῥάβδος +τῆς +βασιλείας +αὐτοῦ +ἠγάπησας +δικαιοσύνην +καί +ἐμίσησας +ἀνομίαν +διά +τοῦτο +ἔχρισεν +σε +ὁ +Θεός +ὁ +Θεός +σου +ἔλαιον +ἀγαλλιάσεως +παρά +τούς +μετόχους +σου +καί +Κύριε +Σύ +κατ’ +ἀρχάς +τήν +γῆν +ἐθεμελίωσας +καί +ἔργα +τῶν +χειρῶν +σού +εἰσιν +οἱ +οὐρανοί +αὐτοί +ἀπολοῦνται +δέ +σύ +διαμένεις +καί +πάντες +παλαιωθήσονται +ὡς +ἱμάτιον +καί +ὡσεί +περιβόλαιον +ἑλίξεις +αὐτούς +ὡς +ἱμάτιον +καί +ἀλλαγήσονται +δέ +σύ +ὁ +αὐτός +εἶ +καί +τά +ἔτη +σου +οὐκ +ἐκλείψουσιν +δέ +πρός +τίνα +τῶν +ἀγγέλων +εἴρηκεν +ποτε +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἄν +θῶ +τούς +ἐχθρούς +σου +ὑποπόδιον +τῶν +ποδῶν +σου +οὐχί +πάντες +εἰσίν +λειτουργικά +πνεύματα +εἰς +διακονίαν +ἀποστελλόμενα +διά +τούς +μέλλοντας +κληρονομεῖν +σωτηρίαν +Διά +τοῦτο +δεῖ +περισσοτέρως +προσέχειν +ἡμᾶς +τοῖς +ἀκουσθεῖσιν +μή +ποτε +παραρυῶμεν +γάρ +εἰ +ὁ +δι’ +ἀγγέλων +λαληθείς +λόγος +ἐγένετο +βέβαιος +καί +πᾶσα +παράβασις +καί +παρακοή +ἔλαβεν +ἔνδικον +μισθαποδοσίαν +πῶς +ἡμεῖς +ἐκφευξόμεθα +ἀμελήσαντες +τηλικαύτης +σωτηρίας +ἥτις +ἀρχήν +λαβοῦσα +λαλεῖσθαι +διά +τοῦ +Κυρίου +ὑπό +τῶν +ἀκουσάντων +εἰς +ἡμᾶς +ἐβεβαιώθη +συνεπιμαρτυροῦντος +τοῦ +Θεοῦ +τε +σημείοις +καί +τέρασιν +καί +ποικίλαις +δυνάμεσιν +καί +Πνεύματος +Ἁγίου +μερισμοῖς +κατά +τήν +αὐτοῦ +θέλησιν +γάρ +Οὐ +ἀγγέλοις +ὑπέταξεν +τήν +οἰκουμένην +τήν +μέλλουσαν +περί +ἧς +λαλοῦμεν +δέ +διεμαρτύρατο +πού +τις +λέγων +Τί +ἐστιν +ἄνθρωπος +ὅτι +μιμνῄσκῃ +αὐτοῦ +ἤ +υἱός +ἀνθρώπου +ὅτι +ἐπισκέπτῃ +αὐτόν +ἠλάττωσας +αὐτόν +βραχύ +τι +παρ’ +ἀγγέλους +δόξῃ +καί +τιμῇ +ἐστεφάνωσας +αὐτόν +πάντα +ὑπέταξας +ὑποκάτω +τῶν +ποδῶν +αὐτοῦ +γάρ +ἐν +τῷ +ὑποτάξαι +αὐτῷ +τά +πάντα +οὐδέν +ἀφῆκεν +αὐτῷ +ἀνυπότακτον +δέ +νῦν +οὔπω +ὁρῶμεν +αὐτῷ +τά +πάντα +ὑποτεταγμένα +δέ +βλέπομεν +τόν +βραχύ +τι +παρ’ +ἀγγέλους +ἠλαττωμένον +Ἰησοῦν +διά +τό +πάθημα +τοῦ +θανάτου +δόξῃ +καί +τιμῇ +ἐστεφανωμένον +ὅπως +χάριτι +Θεοῦ +ὑπέρ +παντός +γεύσηται +θανάτου +γάρ +Ἔπρεπεν +αὐτῷ +δι’ +ὅν +τά +πάντα +καί +δι’ +οὗ +τά +πάντα +πολλούς +υἱούς +εἰς +δόξαν +ἀγαγόντα +τόν +ἀρχηγόν +τῆς +σωτηρίας +αὐτῶν +διά +παθημάτων +τελειῶσαι +γάρ +τε +ὅ +ἁγιάζων +καί +οἱ +ἁγιαζόμενοι +ἐξ +ἑνός +πάντες +δι’ +ἥν +αἰτίαν +οὐκ +ἐπαισχύνεται +ἀδελφούς +αὐτούς +καλεῖν +λέγων +Ἀπαγγελῶ +τό +ὄνομα +σου +τοῖς +ἀδελφοῖς +μου +ἐν +μέσῳ +ἐκκλησίας +ὑμνήσω +σε +καί +πάλιν +Ἐγώ +ἔσομαι +πεποιθώς +ἐπ’ +αὐτῷ +καί +πάλιν +Ἰδού +ἐγώ +καί +τά +παιδία +ἅ +μοι +ἔδωκεν +ὁ +Θεός +οὖν +ἐπεί +τά +παιδία +κεκοινώνηκεν +αἵματος +καί +σαρκός +καί +αὐτός +παραπλησίως +μετέσχεν +τῶν +αὐτῶν +ἵνα +διά +τοῦ +θανάτου +καταργήσῃ +τόν +τό +κράτος +τοῦ +θανάτου +ἔχοντα +τοῦτ’ +ἔστιν +τόν +διάβολον +καί +ἀπαλλάξῃ +τούτους +ὅσοι +φόβῳ +θανάτου +διά +παντός +τοῦ +ζῆν +ἔνοχοι +δουλείας +ἦσαν +γάρ +οὐ +δήπου +ἀγγέλων +ἐπιλαμβάνεται +ἀλλά +σπέρματος +Ἀβραάμ +ἐπιλαμβάνεται +ὅθεν +ὤφειλεν +κατά +πάντα +τοῖς +ἀδελφοῖς +ὁμοιωθῆναι +ἵνα +γένηται +ἐλεήμων +καί +πιστός +ἀρχιερεύς +τά +πρός +τόν +Θεόν +εἰς +τό +ἱλάσκεσθαι +τάς +ἁμαρτίας +τοῦ +λαοῦ +γάρ +ἐν +ᾧ +πέπονθεν +αὐτός +πειρασθείς +δύναται +τοῖς +πειραζομένοις +βοηθῆσαι +Ὅθεν +ἀδελφοί +ἅγιοι +κλήσεως +ἐπουρανίου +μέτοχοι +κατανοήσατε +τόν +Ἀπόστολον +καί +Ἀρχιερέα +τῆς +ὁμολογίας +ἡμῶν +Ἰησοῦν +πιστόν +ὄντα +τῷ +ποιήσαντι +αὐτόν +ὡς +καί +Μωϋσῆς +ἐν +ὅλῳ +τῷ +οἴκῳ +αὐτοῦ +γάρ +πλείονος +δόξης +οὗτος +παρά +Μωϋσῆν +ἠξίωται +καθ’ +ὅσον +πλείονα +τιμήν +ἔχει +τοῦ +οἴκου +ὁ +κατασκευάσας +αὐτόν +γάρ +πᾶς +οἶκος +κατασκευάζεται +ὑπό +τινος +δέ +ὁ +πάντα +κατασκευάσας +Θεός +καί +μέν +Μωϋσῆς +πιστός +ἐν +ὅλῳ +τῷ +οἴκῳ +αὐτοῦ +ὡς +θεράπων +εἰς +μαρτύριον +τῶν +λαληθησομένων +δέ +Χριστός +ὡς +υἱός +ἐπί +τόν +οἶκον +αὐτοῦ +οὗ +οἶκος +ἐσμεν +ἡμεῖς +ἐάν +τήν +παρρησίαν +καί +τό +καύχημα +τῆς +ἐλπίδος +μέχρι +τέλους +βεβαίαν +κατάσχωμεν +Διό +καθώς +λέγει +τό +Πνεῦμα +τό +Ἅγιον +ἐάν +Σήμερον +τῆς +φωνῆς +αὐτοῦ +ἀκούσητε +μή +σκληρύνητε +τάς +καρδίας +ὑμῶν +ὡς +ἐν +τῷ +παραπικρασμῷ +κατά +τήν +ἡμέραν +τοῦ +πειρασμοῦ +ἐν +τῇ +ἐρήμῳ +οὗ +ἐπείρασαν +οἱ +πατέρες +ὑμῶν +ἐν +δοκιμασίᾳ +καί +εἶδον +τά +ἔργα +μου +τεσσεράκοντα +ἔτη +διό +προσώχθισα +τῇ +γενεᾷ +ταύτῃ +καί +εἶπον +Ἀεί +πλανῶνται +τῇ +καρδίᾳ +δέ +αὐτοί +οὐκ +ἔγνωσαν +τάς +ὁδούς +μου +ὡς +ὤμοσα +ἐν +τῇ +ὀργῇ +μου +Εἰ +εἰσελεύσονται +εἰς +τήν +κατάπαυσιν +μου +βλέπετε +ἀδελφοί +μή +ποτε +ἔσται +ἔν +τινι +ὑμῶν +καρδία +πονηρά +ἀπιστίας +ἐν +τῷ +ἀποστῆναι +ἀπό +Θεοῦ +ζῶντος +ἀλλά +παρακαλεῖτε +ἑαυτούς +καθ’ +ἑκάστην +ἡμέραν +ἄχρις +οὗ +τό +Σήμερον +καλεῖται +ἵνα +μή +σκληρυνθῇ +τις +ἐξ +ὑμῶν +ἀπάτῃ +τῆς +ἁμαρτίας +γάρ +μέτοχοι +τοῦ +Χριστοῦ +γεγόναμεν +ἐάνπερ +τήν +ἀρχήν +τῆς +ὑποστάσεως +μέχρι +τέλους +βεβαίαν +κατάσχωμεν +ἐν +τῷ +λέγεσθαι +ἐάν +Σήμερον +τῆς +φωνῆς +αὐτοῦ +ἀκούσητε +Μή +σκληρύνητε +τάς +καρδίας +ὑμῶν +ὡς +ἐν +τῷ +παραπικρασμῷ +γάρ +τίνες +ἀκούσαντες +παρεπίκραναν +ἀλλ’ +οὐ +πάντες +οἱ +ἐξελθόντες +ἐξ +Αἰγύπτου +διά +Μωϋσέως +δέ +τίσιν +προσώχθισεν +τεσσεράκοντα +ἔτη +οὐχί +τοῖς +ἁμαρτήσασιν +ὧν +τά +κῶλα +ἔπεσεν +ἐν +τῇ +ἐρήμῳ +δέ +τίσιν +ὤμοσεν +μή +εἰσελεύσεσθαι +εἰς +τήν +κατάπαυσιν +αὐτοῦ +εἰ +μή +τοῖς +ἀπειθήσασιν +καί +βλέπομεν +ὅτι +οὐκ +ἠδυνήθησαν +εἰσελθεῖν +δι’ +ἀπιστίαν +οὖν +φοβηθῶμεν +μή +ποτε +καταλειπομένης +ἐπαγγελίας +εἰσελθεῖν +εἰς +τήν +κατάπαυσιν +αὐτοῦ +δοκῇ +τις +ἐξ +ὑμῶν +ὑστερηκέναι +γάρ +καί +ἐσμεν +εὐηγγελισμένοι +καθάπερ +κἀκεῖνοι +ἀλλ’ +οὐκ +ὠφέλησεν +ὁ +λόγος +τῆς +ἀκοῆς +ἐκείνους +μή +συνκεκερασμένος +τῇ +πίστει +τοῖς +ἀκούσασιν +γάρ +Εἰσερχόμεθα +εἰς +τήν +κατάπαυσιν +οἱ +πιστεύσαντες +καθώς +εἴρηκεν +Ὡς +ὤμοσα +ἐν +τῇ +ὀργῇ +μου +Εἰ +εἰσελεύσονται +εἰς +τήν +κατάπαυσιν +μου +καίτοι +τῶν +ἔργων +ἀπό +καταβολῆς +κόσμου +γενηθέντων +γάρ +εἴρηκεν +που +περί +τῆς +ἑβδόμης +οὕτως +Καί +κατέπαυσεν +ὁ +Θεός +ἐν +τῇ +ἡμέρᾳ +τῇ +ἑβδόμῃ +ἀπό +πάντων +τῶν +ἔργων +αὐτοῦ +καί +ἐν +τούτῳ +πάλιν +Εἰ +εἰσελεύσονται +εἰς +τήν +κατάπαυσιν +μου +οὖν +ἐπεί +ἀπολείπεται +τινάς +εἰσελθεῖν +εἰς +αὐτήν +καί +οἱ +πρότερον +εὐαγγελισθέντες +οὐκ +εἰσῆλθον +δι’ +ἀπείθειαν +πάλιν +ὁρίζει +τινά +ἡμέραν +Σήμερον +ἐν +Δαυείδ +λέγων +μετά +τοσοῦτον +χρόνον +καθώς +προείρηται +ἐάν +Σήμερον +τῆς +φωνῆς +αὐτοῦ +ἀκούσητε +μή +σκληρύνητε +τάς +καρδίας +ὑμῶν +γάρ +εἰ +αὐτούς +Ἰησοῦς +κατέπαυσεν +ἄν +οὐκ +περί +ἄλλης +ἡμέρας +ἐλάλει +μετά +ταῦτα +ἄρα +ἀπολείπεται +σαββατισμός +τῷ +λαῷ +τοῦ +Θεοῦ +γάρ +ὁ +εἰσελθών +εἰς +τήν +κατάπαυσιν +αὐτοῦ +καί +αὐτός +κατέπαυσεν +ἀπό +τῶν +ἔργων +αὐτοῦ +ὥσπερ +ἀπό +τῶν +ἰδίων +ὁ +Θεός +οὖν +Σπουδάσωμεν +εἰσελθεῖν +εἰς +ἐκείνην +τήν +κατάπαυσιν +ἵνα +μή +ἐν +τῷ +αὐτῷ +ὑποδείγματι +τῆς +ἀπειθείας +τις +πέσῃ +γάρ +ὁ +λόγος +τοῦ +Θεοῦ +Ζῶν +καί +ἐνεργής +καί +τομώτερος +ὑπέρ +πᾶσαν +μάχαιραν +δίστομον +καί +διϊκνούμενος +ἄχρι +μερισμοῦ +ψυχῆς +καί +πνεύματος +τε +ἁρμῶν +καί +μυελῶν +καί +κριτικός +ἐνθυμήσεων +καί +ἐννοιῶν +καρδίας +καί +οὐκ +ἔστιν +κτίσις +ἀφανής +ἐνώπιον +αὐτοῦ +δέ +πάντα +γυμνά +καί +τετραχηλισμένα +τοῖς +ὀφθαλμοῖς +αὐτοῦ +πρός +ὅν +ἡμῖν +ὁ +λόγος +οὖν +Ἔχοντες +ἀρχιερέα +μέγαν +διεληλυθότα +τούς +οὐρανούς +Ἰησοῦν +τόν +Υἱόν +τοῦ +Θεοῦ +κρατῶμεν +τῆς +ὁμολογίας +γάρ +ἔχομεν +ἀρχιερέα +οὐ +μή +δυνάμενον +συνπαθῆσαι +ταῖς +ἀσθενείαις +ἡμῶν +δέ +πεπειρασμένον +κατά +πάντα +καθ’ +ὁμοιότητα +χωρίς +ἁμαρτίας +οὖν +προσερχώμεθα +μετά +παρρησίας +τῷ +θρόνῳ +τῆς +χάριτος +ἵνα +λάβωμεν +ἔλεος +καί +χάριν +εὕρωμεν +εἰς +εὔκαιρον +βοήθειαν +γάρ +Πᾶς +ἀρχιερεύς +ἐξ +ἀνθρώπων +λαμβανόμενος +ὑπέρ +ἀνθρώπων +καθίσταται +τά +πρός +τόν +Θεόν +ἵνα +προσφέρῃ +τε +δῶρα +καί +θυσίας +ὑπέρ +ἁμαρτιῶν +δυνάμενος +μετριοπαθεῖν +τοῖς +ἀγνοοῦσιν +καί +πλανωμένοις +ἐπεί +καί +αὐτός +περίκειται +ἀσθένειαν +καί +δι’ +αὐτήν +ὀφείλει +καθώς +περί +τοῦ +λαοῦ +οὕτως +καί +περί +ἑαυτοῦ +προσφέρειν +περί +ἁμαρτιῶν +καί +οὐχ +ἑαυτῷ +τις +λαμβάνει +τήν +τιμήν +ἀλλά +καλούμενος +ὑπό +τοῦ +Θεοῦ +καθώσπερ +καί +Ἀαρών +Οὕτως +καί +ὁ +Χριστός +οὐχ +ἑαυτόν +ἐδόξασεν +γενηθῆναι +ἀρχιερέα +ἀλλ’ +ὁ +λαλήσας +πρός +αὐτόν +Υἱός +μου +εἶ +σύ +ἐγώ +σήμερον +γεγέννηκα +σε +καθώς +καί +ἐν +ἑτέρῳ +λέγει +Σύ +ἱερεύς +εἰς +τόν +αἰῶνα +κατά +τήν +τάξιν +Μελχισέδεκ +ὅς +ἐν +ταῖς +ἡμέραις +τῆς +σαρκός +αὐτοῦ +τε +δεήσεις +καί +ἱκετηρίας +πρός +τόν +δυνάμενον +σῴζειν +αὐτόν +ἐκ +θανάτου +μετά +κραυγῆς +ἰσχυρᾶς +καί +δακρύων +προσενέγκας +καί +εἰσακουσθείς +ἀπό +τῆς +εὐλαβείας +καίπερ +ὤν +Υἱός +ἔμαθεν +ἀφ’ +ὧν +ἔπαθεν +τήν +ὑπακοήν +καί +τελειωθείς +ἐγένετο +πᾶσιν +τοῖς +ὑπακούουσιν +αὐτῷ +αἴτιος +σωτηρίας +αἰωνίου +προσαγορευθείς +ὑπό +τοῦ +Θεοῦ +ἀρχιερεύς +κατά +τήν +τάξιν +Μελχισέδεκ +Περί +οὗ +πολύς +ἡμῖν +ὁ +λόγος +καί +δυσερμήνευτος +λέγειν +ἐπεί +νωθροί +γεγόνατε +ταῖς +ἀκοαῖς +γάρ +καί +ὀφείλοντες +εἶναι +διδάσκαλοι +διά +τόν +χρόνον +πάλιν +ἔχετε +χρείαν +τοῦ +διδάσκειν +ὑμᾶς +τινα +τά +στοιχεῖα +τῆς +ἀρχῆς +τῶν +λογίων +τοῦ +Θεοῦ +καί +γεγόνατε +ἔχοντες +χρείαν +γάλακτος +οὐ +στερεᾶς +τροφῆς +γάρ +πᾶς +ὁ +μετέχων +γάλακτος +ἄπειρος +λόγου +δικαιοσύνης +γάρ +νήπιος +ἐστιν +δέ +ἐστιν +ἡ +στερεά +τροφή +τελείων +τῶν +διά +τήν +ἕξιν +τά +αἰσθητήρια +γεγυμνασμένα +ἐχόντων +πρός +διάκρισιν +τε +καλοῦ +καί +κακοῦ +Διό +ἀφέντες +τόν +τῆς +ἀρχῆς +τοῦ +Χριστοῦ +λόγον +ἐπί +τήν +τελειότητα +φερώμεθα +μή +πάλιν +καταβαλλόμενοι +θεμέλιον +μετανοίας +ἀπό +νεκρῶν +ἔργων +καί +πίστεως +ἐπί +Θεόν +διδαχήν +βαπτισμῶν +τε +ἐπιθέσεως +χειρῶν +ἀναστάσεως +νεκρῶν +καί +κρίματος +αἰωνίου +καί +τοῦτο +ποιήσομεν +ἐάνπερ +ἐπιτρέπῃ +ὁ +Θεός +γάρ +Ἀδύνατον +τούς +ἅπαξ +φωτισθέντας +τε +γευσαμένους +τῆς +δωρεᾶς +τῆς +ἐπουρανίου +καί +μετόχους +Πνεύματος +Ἁγίου +γενηθέντας +καί +γευσαμένους +καλόν +Θεοῦ +ῥῆμα +τε +δυνάμεις +μέλλοντος +αἰῶνος +καί +παραπεσόντας +πάλιν +ἀνακαινίζειν +εἰς +μετάνοιαν +ἀνασταυροῦντας +ἑαυτοῖς +τόν +Υἱόν +τοῦ +Θεοῦ +καί +παραδειγματίζοντας +γάρ +γῆ +ἡ +πιοῦσα +τόν +ἐπ’ +αὐτῆς +ἐρχόμενον +πολλάκις +ὑετόν +καί +τίκτουσα +βοτάνην +εὔθετον +ἐκείνοις +δι’ +οὕς +καί +γεωργεῖται +μεταλαμβάνει +εὐλογίας +ἀπό +τοῦ +Θεοῦ +δέ +ἐκφέρουσα +ἀκάνθας +καί +τριβόλους +ἀδόκιμος +καί +κατάρας +ἐγγύς +ἧς +τό +τέλος +εἰς +καῦσιν +δέ +ἀγαπητοί +Πεπείσμεθα +περί +ὑμῶν +τά +κρείσσονα +καί +ἐχόμενα +σωτηρίας +εἰ +καί +οὕτως +λαλοῦμεν +γάρ +οὐ +ἄδικος +ὁ +Θεός +ἐπιλαθέσθαι +τοῦ +ἔργου +ὑμῶν +καί +τῆς +ἀγάπης +ἧς +ἐνεδείξασθε +εἰς +τό +ὄνομα +αὐτοῦ +διακονήσαντες +καί +διακονοῦντες +τοῖς +ἁγίοις +δέ +ἐπιθυμοῦμεν +ἕκαστον +ὑμῶν +τήν +αὐτήν +σπουδήν +ἐνδείκνυσθαι +πρός +τήν +πληροφορίαν +τῆς +ἐλπίδος +ἄχρι +τέλους +ἵνα +μή +νωθροί +γένησθε +δέ +μιμηταί +τῶν +διά +πίστεως +καί +μακροθυμίας +κληρονομούντων +τάς +ἐπαγγελίας +γάρ +Τῷ +Ἀβραάμ +ἐπαγγειλάμενος +ὁ +Θεός +ἐπεί +κατ’ +οὐδενός +μείζονος +ὀμόσαι +εἶχεν +ὤμοσεν +καθ’ +ἑαυτοῦ +λέγων +Εἰ +μήν +εὐλογῶν +εὐλογήσω +σε +καί +πληθύνων +πληθυνῶ +σε +καί +οὕτως +μακροθυμήσας +ἐπέτυχεν +τῆς +ἐπαγγελίας +γάρ +ἄνθρωποι +κατά +τοῦ +μείζονος +ὀμνύουσιν +καί +αὐτοῖς +πάσης +ἀντιλογίας +πέρας +εἰς +βεβαίωσιν +ὁ +ὅρκος +ἐν +ᾧ +περισσότερον +βουλόμενος +ἐπιδεῖξαι +τοῖς +κληρονόμοις +τῆς +ἐπαγγελίας +τό +ἀμετάθετον +τῆς +βουλῆς +αὐτοῦ +ὁ +Θεός +ἐμεσίτευσεν +ὅρκῳ +ἵνα +διά +δύο +πραγμάτων +ἀμεταθέτων +ἐν +οἷς +ἀδύνατον +ψεύσασθαι +Θεόν +ἰσχυράν +παράκλησιν +ἔχωμεν +οἱ +καταφυγόντες +κρατῆσαι +τῆς +προκειμένης +ἐλπίδος +ἥν +ἔχομεν +ὡς +ἄγκυραν +τῆς +ψυχῆς +τε +ἀσφαλῆ +καί +βεβαίαν +καί +εἰσερχομένην +εἰς +τό +ἐσώτερον +τοῦ +καταπετάσματος +ὅπου +πρόδρομος +Ἰησοῦς +ὑπέρ +ἡμῶν +εἰσῆλθεν +κατά +τήν +τάξιν +Μελχισέδεκ +ἀρχιερεύς +γενόμενος +εἰς +τόν +αἰῶνα +γάρ +Οὗτος +ὁ +Μελχισέδεκ +βασιλεύς +Σαλήμ +ἱερεύς +τοῦ +Θεοῦ +τοῦ +Ὑψίστου +ὁ +συναντήσας +Ἀβραάμ +ὑποστρέφοντι +ἀπό +τῆς +κοπῆς +τῶν +βασιλέων +καί +εὐλογήσας +αὐτόν +ᾧ +καί +δεκάτην +ἀπό +πάντων +ἐμέρισεν +Ἀβραάμ +μέν +πρῶτον +ἑρμηνευόμενος +βασιλεύς +δικαιοσύνης +δέ +ἔπειτα +καί +βασιλεύς +Σαλήμ +ὅ +ἐστιν +βασιλεύς +εἰρήνης +ἀπάτωρ +ἀμήτωρ +ἀγενεαλόγητος +μήτε +ἀρχήν +ἡμερῶν +μήτε +ζωῆς +τέλος +ἔχων +δέ +ἀφωμοιωμένος +τῷ +Υἱῷ +τοῦ +Θεοῦ +μένει +ἱερεύς +εἰς +τό +διηνεκές +δέ +Θεωρεῖτε +πηλίκος +οὗτος +ᾧ +δεκάτην +Ἀβραάμ +ὁ +πατριάρχης +ἔδωκεν +ἐκ +τῶν +ἀκροθινίων +καί +μέν +οἱ +ἐκ +τῶν +υἱῶν +Λευεί +τήν +ἱερατείαν +λαμβάνοντες +ἐντολήν +ἔχουσιν +ἀποδεκατοῖν +κατά +τόν +νόμον +τόν +λαόν +τοῦτ’ +ἔστιν +τούς +ἀδελφούς +αὐτῶν +καίπερ +ἐξεληλυθότας +ἐκ +τῆς +ὀσφύος +Ἀβραάμ +δέ +ὁ +μή +γενεαλογούμενος +ἐξ +αὐτῶν +δεδεκάτωκεν +Ἀβραάμ +καί +τόν +ἔχοντα +τάς +ἐπαγγελίας +εὐλόγηκεν +δέ +χωρίς +πάσης +ἀντιλογίας +τό +ἔλαττον +ὑπό +τοῦ +κρείττονος +εὐλογεῖται +καί +μέν +ὧδε +δεκάτας +ἀποθνῄσκοντες +ἄνθρωποι +λαμβάνουσιν +δέ +ἐκεῖ +μαρτυρούμενος +ὅτι +ζῇ +καί +ὡς +ἔπος +εἰπεῖν +δι’ +Ἀβραάμ +καί +Λευείς +ὁ +δεκάτας +λαμβάνων +δεδεκάτωται +γάρ +ἔτι +ἐν +τῇ +ὀσφύϊ +τοῦ +πατρός +ἦν +ὅτε +συνήντησεν +αὐτῷ +Μελχισέδεκ +μέν +οὖν +Εἰ +τελείωσις +διά +τῆς +Λευειτικῆς +ἱερωσύνης +ἦν +γάρ +ὁ +λαός +ἐπ’ +αὐτῆς +νενομοθέτηται +τίς +ἔτι +χρεία +κατά +τήν +τάξιν +Μελχισέδεκ +ἀνίστασθαι +ἕτερον +ἱερέα +καί +οὐ +κατά +τήν +τάξιν +Ἀαρών +λέγεσθαι +γάρ +μετατιθεμένης +τῆς +ἱερωσύνης +ἐξ +ἀνάγκης +καί +νόμου +μετάθεσις +γίνεται +γάρ +ἐφ’ +ὅν +λέγεται +ταῦτα +φυλῆς +ἑτέρας +μετέσχηκεν +ἀφ’ +ἧς +οὐδείς +προσέσχηκεν +τῷ +θυσιαστηρίῳ +γάρ +πρόδηλον +ὅτι +ἐξ +Ἰούδα +ἀνατέταλκεν +ὁ +Κύριος +ἡμῶν +εἰς +ἥν +φυλήν +περί +ἱερέων +οὐδέν +Μωϋσῆς +ἐλάλησεν +Καί +περισσότερον +ἔτι +κατάδηλον +ἐστιν +εἰ +κατά +τήν +ὁμοιότητα +Μελχισέδεκ +ἀνίσταται +ἱερεύς +ἕτερος +ὅς +γέγονεν +οὐ +κατά +νόμον +ἐντολῆς +σαρκίνης +ἀλλά +κατά +δύναμιν +ζωῆς +ἀκαταλύτου +γάρ +μαρτυρεῖται +ὅτι +Σύ +ἱερεύς +εἰς +τόν +αἰῶνα +κατά +τήν +τάξιν +Μελχισέδεκ +γάρ +μέν +ἀθέτησις +προαγούσης +ἐντολῆς +γίνεται +διά +τό +αὐτῆς +ἀσθενές +καί +ἀνωφελές +γάρ +οὐδέν +ἐτελείωσεν +ὁ +νόμος +δέ +ἐπεισαγωγή +κρείττονος +ἐλπίδος +δι’ +ἧς +ἐγγίζομεν +τῷ +Θεῷ +Καί +καθ’ +ὅσον +οὐ +χωρίς +ὁρκωμοσίας +γάρ +μέν +οἱ +χωρίς +ὁρκωμοσίας +εἰσίν +γεγονότες +ἱερεῖς +δέ +ὁ +μετά +ὁρκωμοσίας +διά +τοῦ +λέγοντος +πρός +αὐτόν +Ὤμοσεν +Κύριος +καί +οὐ +μεταμεληθήσεται +Σύ +ἱερεύς +εἰς +τόν +αἰῶνα +κατά +τοσοῦτο +καί +κρείττονος +διαθήκης +ἔγγυος +γέγονεν +Ἰησοῦς +Καί +μέν +οἱ +πλείονες +εἰσιν +γεγονότες +ἱερεῖς +διά +τό +θανάτῳ +κωλύεσθαι +παραμένειν +δέ +ὁ +διά +τό +μένειν +αὐτόν +εἰς +τόν +αἰῶνα +ἀπαράβατον +ἔχει +τήν +ἱερωσύνην +ὅθεν +καί +δύναται +σῴζειν +εἰς +τό +παντελές +τούς +προσερχομένους +δι’ +αὐτοῦ +τῷ +Θεῷ +πάντοτε +ζῶν +εἰς +τό +ἐντυγχάνειν +ὑπέρ +αὐτῶν +γάρ +ἡμῖν +καί +ἔπρεπεν +Τοιοῦτος +ἀρχιερεύς +ὅσιος +ἄκακος +ἀμίαντος +κεχωρισμένος +ἀπό +τῶν +ἁμαρτωλῶν +καί +ὑψηλότερος +τῶν +οὐρανῶν +γενόμενος +ὅς +οὐκ +ἔχει +καθ’ +ἡμέραν +ἀνάγκην +ὥσπερ +οἱ +ἀρχιερεῖς +πρότερον +ὑπέρ +τῶν +ἰδίων +ἁμαρτιῶν +θυσίας +ἀναφέρειν +ἔπειτα +τῶν +τοῦ +λαοῦ +γάρ +τοῦτο +ἐποίησεν +ἐφάπαξ +ἑαυτόν +ἀνενέγκας +γάρ +ὁ +νόμος +ἀνθρώπους +καθίστησιν +ἀρχιερεῖς +ἔχοντας +ἀσθένειαν +δέ +ὁ +λόγος +τῆς +ὁρκωμοσίας +τῆς +μετά +τόν +νόμον +Υἱόν +εἰς +τόν +αἰῶνα +τετελειωμένον +δέ +Κεφάλαιον +ἐπί +τοῖς +λεγομένοις +ἔχομεν +τοιοῦτον +ἀρχιερέα +ὅς +ἐκάθισεν +ἐν +δεξιᾷ +τοῦ +θρόνου +τῆς +Μεγαλωσύνης +ἐν +τοῖς +οὐρανοῖς +λειτουργός +τῶν +ἁγίων +καί +τῆς +σκηνῆς +τῆς +ἀληθινῆς +ἥν +ἔπηξεν +ὁ +Κύριος +οὐκ +ἄνθρωπος +γάρ +Πᾶς +ἀρχιερεύς +εἰς +τό +προσφέρειν +τε +δῶρα +καί +θυσίας +καθίσταται +ὅθεν +ἀναγκαῖον +ἔχειν +καί +τοῦτον +τι +ὅ +προσενέγκῃ +οὖν +μέν +εἰ +ἦν +ἐπί +γῆς +ἄν +οὐδ’ +ἦν +ἱερεύς +ὄντων +τῶν +προσφερόντων +κατά +νόμον +τά +δῶρα +οἵτινες +ὑποδείγματι +καί +σκιᾷ +τῶν +ἐπουρανίων +λατρεύουσιν +καθώς +κεχρημάτισται +Μωϋσῆς +μέλλων +ἐπιτελεῖν +τήν +σκηνήν +γάρ +φησίν +Ὅρα +ποιήσεις +πάντα +κατά +τόν +τύπον +τόν +δειχθέντα +σοι +ἐν +τῷ +ὄρει +δέ +νῦν +διαφορωτέρας +λειτουργίας +τέτυχεν +ὅσῳ +καί +ἐστιν +μεσίτης +κρείττονος +διαθήκης +ἥτις +ἐπί +κρείττοσιν +ἐπαγγελίαις +νενομοθέτηται +γάρ +εἰ +ἡ +πρώτη +ἐκείνη +ἦν +ἄμεμπτος +ἄν +οὐκ +δευτέρας +τόπος +ἐζητεῖτο +γάρ +μεμφόμενος +αὐτούς +λέγει +Ἰδού +ἡμέραι +ἔρχονται +λέγει +Κύριος +καί +συντελέσω +ἐπί +τόν +οἶκον +Ἰσραήλ +καί +ἐπί +τόν +οἶκον +Ἰούδα +διαθήκην +καινήν +οὐ +κατά +τήν +διαθήκην +ἥν +ἐποίησα +τοῖς +πατράσιν +αὐτῶν +ἐν +ἡμέρᾳ +ἐπιλαβομένου +μου +τῆς +χειρός +αὐτῶν +ἐξαγαγεῖν +αὐτούς +ἐκ +γῆς +Αἰγύπτου +ὅτι +αὐτοί +οὐκ +ἐνέμειναν +ἐν +τῇ +διαθήκῃ +μου +κἀγώ +ἠμέλησα +αὐτῶν +λέγει +Κύριος +ὅτι +αὕτη +ἡ +διαθήκη +ἥν +διαθήσομαι +τῷ +οἴκῳ +Ἰσραήλ +μετά +τάς +ἡμέρας +ἐκείνας +λέγει +Κύριος +διδούς +νόμους +μου +εἰς +τήν +διάνοιαν +αὐτῶν +καί +ἐπί +καρδίας +αὐτῶν +ἐπιγράψω +αὐτούς +καί +ἔσομαι +αὐτοῖς +εἰς +Θεόν +καί +αὐτοί +ἔσονται +μοι +εἰς +λαόν +καί +οὐ +μή +διδάξωσιν +ἕκαστος +τόν +πολίτην +αὐτοῦ +καί +ἕκαστος +τόν +ἀδελφόν +αὐτοῦ +λέγων +Γνῶθι +τόν +Κύριον +ὅτι +πάντες +εἰδήσουσιν +με +ἀπό +μικροῦ +ἕως +μεγάλου +αὐτῶν +ὅτι +ἵλεως +ἔσομαι +ταῖς +ἀδικίαις +αὐτῶν +καί +τῶν +ἁμαρτιῶν +αὐτῶν +οὐ +μή +μνησθῶ +ἔτι +ἐν +τῷ +λέγειν +Καινήν +πεπαλαίωκεν +τήν +πρώτην +δέ +τό +παλαιούμενον +καί +γηράσκον +ἐγγύς +ἀφανισμοῦ +μέν +οὖν +Εἶχε +καί +ἡ +πρώτη +δικαιώματα +λατρείας +τε +τό +ἅγιον +κοσμικόν +γάρ +κατεσκευάσθη +σκηνή +ἡ +πρώτη +ἐν +ᾗ +τε +ἥ +λυχνία +καί +ἡ +τράπεζα +καί +ἡ +πρόθεσις +τῶν +ἄρτων +ἥτις +λέγεται +Ἅγια +δέ +μετά +τό +δεύτερον +καταπέτασμα +σκηνή +ἡ +λεγομένη +Ἅγια +ἁγίων +ἔχουσα +χρυσοῦν +θυμιατήριον +καί +τήν +κιβωτόν +τῆς +διαθήκης +περικεκαλυμμένην +πάντοθεν +χρυσίῳ +ἐν +ᾗ +στάμνος +χρυσῆ +ἔχουσα +τό +μάννα +καί +ἡ +ῥάβδος +Ἀαρών +ἡ +βλαστήσασα +καί +αἱ +πλάκες +τῆς +διαθήκης +δέ +ὑπεράνω +αὐτῆς +Χερουβείν +δόξης +κατασκιάζοντα +τό +ἱλαστήριον +περί +ὧν +οὐκ +ἔστιν +νῦν +λέγειν +κατά +μέρος +δέ +Τούτων +οὕτως +κατεσκευασμένων +μέν +εἰς +τήν +πρώτην +σκηνήν +διά +παντός +εἰσίασιν +οἱ +ἱερεῖς +τάς +λατρείας +ἐπιτελοῦντες +δέ +εἰς +τήν +δευτέραν +ἅπαξ +τοῦ +ἐνιαυτοῦ +μόνος +ὁ +ἀρχιερεύς +οὐ +χωρίς +αἵματος +ὅ +προσφέρει +ὑπέρ +ἑαυτοῦ +καί +τῶν +τοῦ +λαοῦ +ἀγνοημάτων +τοῦτο +δηλοῦντος +τοῦ +Πνεύματος +τοῦ +Ἁγίου +μήπω +πεφανερῶσθαι +τήν +τῶν +ἁγίων +ὁδόν +ἔτι +τῆς +πρώτης +σκηνῆς +ἐχούσης +στάσιν +ἥτις +παραβολή +εἰς +τόν +καιρόν +τόν +ἐνεστηκότα +καθ’ +ἥν +τε +δῶρα +καί +θυσίαι +προσφέρονται +μή +δυνάμεναι +κατά +συνείδησιν +τελειῶσαι +τόν +λατρεύοντα +μόνον +ἐπί +βρώμασιν +καί +πόμασιν +καί +διαφόροις +βαπτισμοῖς +δικαιώματα +σαρκός +μέχρι +καιροῦ +διορθώσεως +ἐπικείμενα +δέ +παραγενόμενος +Χριστός +ἀρχιερεύς +τῶν +γενομένων +ἀγαθῶν +διά +τῆς +μείζονος +καί +τελειοτέρας +σκηνῆς +οὐ +χειροποιήτου +τοῦτ’ +ἔστιν +οὐ +ταύτης +τῆς +κτίσεως +οὐδέ +δι’ +αἵματος +τράγων +καί +μόσχων +δέ +διά +τοῦ +ἰδίου +αἵματος +εἰσῆλθεν +ἐφάπαξ +εἰς +τά +ἅγια +αἰωνίαν +λύτρωσιν +εὑράμενος +γάρ +εἰ +τό +αἷμα +τράγων +καί +ταύρων +καί +σποδός +δαμάλεως +ῥαντίζουσα +τούς +κεκοινωμένους +ἁγιάζει +πρός +τήν +τῆς +σαρκός +καθαρότητα +πόσῳ +μᾶλλον +τό +αἷμα +τοῦ +Χριστοῦ +ὅς +διά +Πνεύματος +αἰωνίου +ἑαυτόν +προσήνεγκεν +ἄμωμον +τῷ +Θεῷ +καθαριεῖ +τήν +συνείδησιν +ἡμῶν +ἀπό +νεκρῶν +ἔργων +εἰς +τό +λατρεύειν +Θεῷ +ζῶντι +Καί +διά +τοῦτο +διαθήκης +καινῆς +μεσίτης +ἐστίν +ὅπως +θανάτου +γενομένου +εἰς +ἀπολύτρωσιν +τῶν +ἐπί +τῇ +πρώτῃ +διαθήκῃ +παραβάσεων +λάβωσιν +οἱ +κεκλημένοι +τήν +ἐπαγγελίαν +τῆς +αἰωνίου +κληρονομίας +γάρ +ὅπου +διαθήκη +ἀνάγκη +φέρεσθαι +θάνατον +τοῦ +διαθεμένου +γάρ +διαθήκη +ἐπί +νεκροῖς +βεβαία +ἐπεί +μή +ποτε +ἰσχύει +ὅτε +ζῇ +ὁ +διαθέμενος +Ὅθεν +οὐδέ +ἡ +πρώτη +χωρίς +αἵματος +ἐνκεκαίνισται +γάρ +λαληθείσης +πάσης +ἐντολῆς +κατά +τόν +νόμον +ὑπό +Μωϋσέως +παντί +τῷ +λαῷ +λαβών +τό +αἷμα +τῶν +μόσχων +καί +τῶν +τράγων +μετά +ὕδατος +καί +ἐρίου +κοκκίνου +καί +ὑσσώπου +τε +αὐτό +τό +βιβλίον +καί +πάντα +τόν +λαόν +ἐράντισεν +λέγων +Τοῦτο +τό +αἷμα +τῆς +διαθήκης +ἧς +ἐνετείλατο +πρός +ὑμᾶς +ὁ +Θεός +δέ +καί +τήν +σκηνήν +καί +πάντα +τά +σκεύη +τῆς +λειτουργίας +τῷ +αἵματι +ὁμοίως +ἐράντισεν +καί +σχεδόν +ἐν +αἵματι +πάντα +καθαρίζεται +κατά +τόν +νόμον +καί +χωρίς +αἱματεκχυσίας +οὐ +γίνεται +ἄφεσις +οὖν +Ἀνάγκη +μέν +τά +ὑποδείγματα +τῶν +ἐν +τοῖς +οὐρανοῖς +τούτοις +καθαρίζεσθαι +δέ +αὐτά +τά +ἐπουράνια +θυσίαις +κρείττοσιν +παρά +ταύτας +γάρ +εἰσῆλθεν +Χριστός +οὐ +εἰς +χειροποίητα +ἅγια +ἀντίτυπα +τῶν +ἀληθινῶν +ἀλλ’ +εἰς +αὐτόν +τόν +οὐρανόν +νῦν +ἐμφανισθῆναι +τῷ +προσώπῳ +τοῦ +Θεοῦ +ὑπέρ +ἡμῶν +οὐδ’ +ἵνα +πολλάκις +προσφέρῃ +ἑαυτόν +ὥσπερ +ὁ +ἀρχιερεύς +εἰσέρχεται +εἰς +τά +ἅγια +κατ’ +ἐνιαυτόν +ἐν +αἵματι +ἀλλοτρίῳ +ἐπεί +ἔδει +αὐτόν +πολλάκις +παθεῖν +ἀπό +καταβολῆς +κόσμου +δέ +νυνί +ἅπαξ +ἐπί +συντελείᾳ +τῶν +αἰώνων +εἰς +ἀθέτησιν +τῆς +ἁμαρτίας +διά +τῆς +θυσίας +αὐτοῦ +πεφανέρωται +καί +καθ’ +ὅσον +ἀπόκειται +τοῖς +ἀνθρώποις +ἅπαξ +ἀποθανεῖν +δέ +μετά +τοῦτο +κρίσις +οὕτως +καί +ὁ +Χριστός +ἅπαξ +προσενεχθείς +εἰς +τό +πολλῶν +ἁμαρτίας +ἀνενεγκεῖν +ἐκ +δευτέρου +χωρίς +ἁμαρτίας +ὀφθήσεται +τοῖς +αὐτόν +ἀπεκδεχομένοις +εἰς +σωτηρίαν +γάρ +ὁ +νόμος +ἔχων +Σκιάν +τῶν +μελλόντων +ἀγαθῶν +οὐκ +αὐτήν +τήν +εἰκόνα +τῶν +πραγμάτων +κατ’ +ἐνιαυτόν +ταῖς +αὐταῖς +θυσίαις +ἅς +προσφέρουσιν +εἰς +τό +διηνεκές +οὐδέποτε +δύναται +τούς +προσερχομένους +τελειῶσαι +ἐπεί +οὐκ +ἄν +ἐπαύσαντο +προσφερόμεναι +διά +τό +μηδεμίαν +ἔχειν +ἔτι +συνείδησιν +ἁμαρτιῶν +τούς +λατρεύοντας +ἅπαξ +κεκαθαρισμένους +ἀλλ’ +ἐν +αὐταῖς +ἀνάμνησις +ἁμαρτιῶν +κατ’ +ἐνιαυτόν +γάρ +ἀδύνατον +αἷμα +ταύρων +καί +τράγων +ἀφαιρεῖν +ἁμαρτίας +Διό +εἰσερχόμενος +εἰς +τόν +κόσμον +λέγει +Θυσίαν +καί +προσφοράν +οὐκ +ἠθέλησας +δέ +σῶμα +κατηρτίσω +μοι +ὁλοκαυτώματα +καί +περί +ἁμαρτίας +οὐκ +εὐδόκησας +τότε +εἶπον +ὁ +Θεός +Ἰδού +ἐν +κεφαλίδι +βιβλίου +γέγραπται +περί +ἐμοῦ +ἥκω +τοῦ +ποιῆσαι +τό +θέλημα +σου +ἀνώτερον +λέγων +ὅτι +Θυσίας +καί +προσφοράς +καί +ὁλοκαυτώματα +καί +περί +ἁμαρτίας +οὐκ +ἠθέλησας +οὐδέ +εὐδόκησας +αἵτινες +κατά +νόμον +προσφέρονται +τότε +εἴρηκεν +Ἰδού +ἥκω +τοῦ +ποιῆσαι +τό +θέλημα +σου +ἀναιρεῖ +τό +πρῶτον +ἵνα +τό +δεύτερον +στήσῃ +ἐν +ᾧ +θελήματι +ἡγιασμένοι +ἐσμέν +διά +τῆς +προσφορᾶς +τοῦ +σώματος +Ἰησοῦ +Χριστοῦ +ἐφάπαξ +Καί +μέν +πᾶς +ἱερεύς +ἕστηκεν +καθ’ +ἡμέραν +λειτουργῶν +καί +πολλάκις +προσφέρων +τάς +αὐτάς +θυσίας +αἵτινες +οὐδέποτε +δύνανται +περιελεῖν +ἁμαρτίας +δέ +οὗτος +μίαν +θυσίαν +ὑπέρ +ἁμαρτιῶν +προσενέγκας +εἰς +τό +διηνεκές +ἐκάθισεν +ἐν +δεξιᾷ +τοῦ +Θεοῦ +τό +λοιπόν +ἐκδεχόμενος +ἕως +τεθῶσιν +οἱ +ἐχθροί +αὐτοῦ +ὑποπόδιον +τῶν +ποδῶν +αὐτοῦ +γάρ +μιᾷ +προσφορᾷ +τετελείωκεν +εἰς +τό +διηνεκές +τούς +ἁγιαζομένους +δέ +Μαρτυρεῖ +ἡμῖν +καί +τό +Πνεῦμα +τό +Ἅγιον +γάρ +μετά +τό +εἰρηκέναι +Αὕτη +ἡ +διαθήκη +ἥν +διαθήσομαι +πρός +αὐτούς +μετά +τάς +ἡμέρας +ἐκείνας +λέγει +Κύριος +διδούς +νόμους +μου +ἐπί +καρδίας +αὐτῶν +καί +ἐπί +τήν +διάνοιαν +αὐτῶν +ἐπιγράψω +αὐτούς +καί +τῶν +ἁμαρτιῶν +αὐτῶν +καί +τῶν +ἀνομιῶν +αὐτῶν +οὐ +μή +μνησθήσομαι +ἔτι +δέ +ὅπου +ἄφεσις +τούτων +οὐκέτι +προσφορά +περί +ἁμαρτίας +οὖν +ἀδελφοί +Ἔχοντες +παρρησίαν +εἰς +τήν +εἴσοδον +τῶν +ἁγίων +ἐν +τῷ +αἵματι +Ἰησοῦ +ἥν +ἐνεκαίνισεν +ἡμῖν +ὁδόν +πρόσφατον +καί +ζῶσαν +διά +τοῦ +καταπετάσματος +τοῦτ’ +ἔστιν +τῆς +σαρκός +αὐτοῦ +καί +ἱερέα +μέγαν +ἐπί +τόν +οἶκον +τοῦ +Θεοῦ +προσερχώμεθα +μετά +ἀληθινῆς +καρδίας +ἐν +πληροφορίᾳ +πίστεως +ῥεραντισμένοι +τάς +καρδίας +ἀπό +συνειδήσεως +πονηρᾶς +καί +λελουσμένοι +τό +σῶμα +ὕδατι +καθαρῷ +κατέχωμεν +τήν +ὁμολογίαν +τῆς +ἐλπίδος +ἀκλινῆ +γάρ +πιστός +ὁ +ἐπαγγειλάμενος +καί +κατανοῶμεν +ἀλλήλους +εἰς +παροξυσμόν +ἀγάπης +καί +καλῶν +ἔργων +μή +ἐγκαταλείποντες +τήν +ἐπισυναγωγήν +ἑαυτῶν +καθώς +ἔθος +τισίν +ἀλλά +παρακαλοῦντες +μᾶλλον +καί +τοσούτῳ +ὅσῳ +βλέπετε +ἐγγίζουσαν +τήν +ἡμέραν +γάρ +Ἑκουσίως +ἁμαρτανόντων +ἡμῶν +μετά +τό +λαβεῖν +τήν +ἐπίγνωσιν +τῆς +ἀληθείας +οὐκέτι +περί +ἁμαρτιῶν +ἀπολείπεται +θυσία +δέ +φοβερά +τις +ἐκδοχή +κρίσεως +καί +ζῆλος +πυρός +μέλλοντος +ἐσθίειν +τούς +ὑπεναντίους +τις +ἀθετήσας +νόμον +Μωϋσέως +χωρίς +οἰκτιρμῶν +ἐπί +δυσίν +ἤ +τρισίν +μάρτυσιν +ἀποθνήσκει +πόσῳ +δοκεῖτε +χείρονος +τιμωρίας +ἀξιωθήσεται +ὁ +τόν +Υἱόν +τοῦ +Θεοῦ +καταπατήσας +καί +κοινόν +ἡγησάμενος +τό +αἷμα +τῆς +διαθήκης +ἐν +ᾧ +ἡγιάσθη +καί +τό +Πνεῦμα +τῆς +χάριτος +ἐνυβρίσας +γάρ +οἴδαμεν +τόν +εἰπόντα +Ἐμοί +ἐκδίκησις +ἐγώ +ἀνταποδώσω +καί +πάλιν +Κρινεῖ +Κύριος +τόν +λαόν +αὐτοῦ +φοβερόν +τό +ἐμπεσεῖν +εἰς +χεῖρας +Θεοῦ +ζῶντος +δέ +Ἀναμιμνῄσκεσθε +τάς +πρότερον +ἡμέρας +ἐν +αἷς +φωτισθέντες +ὑπεμείνατε +πολλήν +ἄθλησιν +παθημάτων +μέν +τοῦτο +τε +ὀνειδισμοῖς +καί +θλίψεσιν +θεατριζόμενοι +δέ +τοῦτο +κοινωνοί +τῶν +οὕτως +ἀναστρεφομένων +γενηθέντες +γάρ +καί +τοῖς +δεσμίοις +συνεπαθήσατε +καί +τήν +ἁρπαγήν +τῶν +ὑπαρχόντων +ὑμῶν +μετά +χαρᾶς +προσεδέξασθε +γινώσκοντες +ἔχειν +ἑαυτούς +ὕπαρξιν +κρείσσονα +καί +μένουσαν +οὖν +Μή +ἀποβάλητε +τήν +παρρησίαν +ὑμῶν +ἥτις +ἔχει +μεγάλην +μισθαποδοσίαν +γάρ +ὑπομονῆς +χρείαν +ἔχετε +ἵνα +τό +θέλημα +τοῦ +Θεοῦ +ποιήσαντες +κομίσησθε +τήν +ἐπαγγελίαν +γάρ +ἔτι +μικρόν +ὅσον +ὅσον +ὁ +ἐρχόμενος +ἥξει +καί +οὐ +χρονίσει +δέ +ὁ +δίκαιος +μου +ἐκ +πίστεως +ζήσεται +καί +ἐάν +ὑποστείληται +οὐκ +εὐδοκεῖ +ἡ +ψυχή +μου +ἐν +αὐτῷ +δέ +ἡμεῖς +ἐσμέν +οὐκ +ὑποστολῆς +εἰς +ἀπώλειαν +ἀλλά +πίστεως +εἰς +περιποίησιν +ψυχῆς +δέ +Ἔστιν +πίστις +ἐλπιζομένων +ὑπόστασις +ἔλεγχος +πραγμάτων +οὐ +βλεπομένων +γάρ +ἐν +ταύτῃ +ἐμαρτυρήθησαν +οἱ +πρεσβύτεροι +Πίστει +νοοῦμεν +κατηρτίσθαι +τούς +αἰῶνας +ῥήματι +Θεοῦ +εἰς +τό +μή +ἐκ +φαινομένων +τό +βλεπόμενον +γεγονέναι +Πίστει +Ἄβελ +πλείονα +θυσίαν +παρά +Κάϊν +προσήνεγκεν +τῷ +Θεῷ +δι’ +ἧς +ἐμαρτυρήθη +εἶναι +δίκαιος +μαρτυροῦντος +ἐπί +τοῖς +δώροις +αὐτοῦ +τοῦ +Θεοῦ +καί +δι’ +αὐτῆς +ἀποθανών +ἔτι +λαλεῖ +Πίστει +Ἐνώχ +μετετέθη +τοῦ +μή +ἰδεῖν +θάνατον +καί +οὐχ +ηὑρίσκετο +διότι +μετέθηκεν +αὐτόν +ὁ +Θεός +γάρ +πρό +τῆς +μεταθέσεως +μεμαρτύρηται +εὐαρεστηκέναι +τῷ +Θεῷ +δέ +χωρίς +πίστεως +ἀδύνατον +εὐαρεστῆσαι +γάρ +δεῖ +πιστεῦσαι +τόν +προσερχόμενον +τῷ +Θεῷ +ὅτι +ἔστιν +καί +τοῖς +ἐκζητοῦσιν +αὐτόν +μισθαποδότης +γίνεται +Πίστει +Νῶε +χρηματισθείς +περί +τῶν +μηδέπω +βλεπομένων +εὐλαβηθείς +κατεσκεύασεν +κιβωτόν +εἰς +σωτηρίαν +τοῦ +οἴκου +αὐτοῦ +δι’ +ἧς +κατέκρινεν +τόν +κόσμον +καί +τῆς +κατά +πίστιν +δικαιοσύνης +κληρονόμος +ἐγένετο +Πίστει +καλούμενος +Ἀβραάμ +ὑπήκουσεν +ἐξελθεῖν +εἰς +τόπον +ἤμελλεν +ὅν +λαμβάνειν +εἰς +κληρονομίαν +καί +ἐξῆλθεν +μή +ἐπιστάμενος +ποῦ +ἔρχεται +Πίστει +παρῴκησεν +εἰς +γῆν +τῆς +ἐπαγγελίας +ὡς +ἀλλοτρίαν +ἐν +σκηναῖς +κατοικήσας +μετά +Ἰσαάκ +καί +Ἰακώβ +τῶν +συνκληρονόμων +τῆς +ἐπαγγελίας +τῆς +αὐτῆς +γάρ +ἐξεδέχετο +τήν +τούς +θεμελίους +ἔχουσαν +πόλιν +ἧς +τεχνίτης +καί +δημιουργός +ὁ +Θεός +Πίστει +καί +αὐτῇ +Σάρρᾳ +δύναμιν +εἰς +καταβολήν +σπέρματος +ἔλαβεν +καί +παρά +καιρόν +ἡλικίας +ἐπεί +πιστόν +ἡγήσατο +τόν +ἐπαγγειλάμενον +διό +καί +ἀφ’ +ἑνός +νενεκρωμένου +ἐγεννήθησαν +καί +ταῦτα +καθώς +τά +ἄστρα +τοῦ +οὐρανοῦ +τῷ +πλήθει +καί +ὡς +ἡ +ἄμμος +ἡ +παρά +τό +χεῖλος +τῆς +θαλάσσης +ἡ +ἀναρίθμητος +Κατά +πίστιν +ἀπέθανον +οὗτοι +πάντες +μή +κομισάμενοι +τάς +ἐπαγγελίας +ἀλλά +πόρρωθεν +αὐτάς +ἰδόντες +καί +ἀσπασάμενοι +καί +ὁμολογήσαντες +ὅτι +ξένοι +καί +παρεπίδημοι +εἰσιν +ἐπί +τῆς +γῆς +γάρ +οἱ +τοιαῦτα +λέγοντες +ἐμφανίζουσιν +ὅτι +πατρίδα +ἐπιζητοῦσιν +καί +μέν +εἰ +ἐμνημόνευον +ἐκείνης +ἀφ’ +ἧς +ἐξέβησαν +ἄν +εἶχον +καιρόν +ἀνακάμψαι +δέ +νῦν +ὀρέγονται +κρείττονος +τοῦτ’ +ἔστιν +ἐπουρανίου +διό +οὐκ +ἐπαισχύνεται +αὐτούς +ὁ +Θεός +Θεός +αὐτῶν +ἐπικαλεῖσθαι +γάρ +ἡτοίμασεν +αὐτοῖς +πόλιν +Πίστει +προσενήνοχεν +Ἀβραάμ +τόν +Ἰσαάκ +πειραζόμενος +καί +τόν +μονογενῆ +προσέφερεν +ὁ +τάς +ἐπαγγελίας +ἀναδεξάμενος +πρός +ὅν +ἐλαλήθη +ὅτι +Ἐν +Ἰσαάκ +κληθήσεται +σοι +σπέρμα +λογισάμενος +ὅτι +καί +ἐκ +νεκρῶν +ἐγείρειν +δυνατός +ὁ +Θεός +ὅθεν +αὐτόν +καί +ἐν +παραβολῇ +ἐκομίσατο +Πίστει +καί +περί +μελλόντων +εὐλόγησεν +Ἰσαάκ +τόν +Ἰακώβ +καί +τόν +Ἠσαῦ +Πίστει +Ἰακώβ +ἀποθνῄσκων +ἕκαστον +τῶν +υἱῶν +Ἰωσήφ +εὐλόγησεν +καί +προσεκύνησεν +ἐπί +τό +ἄκρον +τῆς +ῥάβδου +αὐτοῦ +Πίστει +Ἰωσήφ +τελευτῶν +περί +τῆς +ἐξόδου +τῶν +υἱῶν +Ἰσραήλ +ἐμνημόνευσεν +καί +περί +τῶν +ὀστέων +αὐτοῦ +ἐνετείλατο +Πίστει +Μωϋσῆς +γεννηθείς +ἐκρύβη +τρίμηνον +ὑπό +τῶν +πατέρων +αὐτοῦ +διότι +εἶδον +ἀστεῖον +τό +παιδίον +καί +οὐκ +ἐφοβήθησαν +τό +διάταγμα +τοῦ +βασιλέως +Πίστει +Μωϋσῆς +μέγας +γενόμενος +ἠρνήσατο +λέγεσθαι +υἱός +θυγατρός +Φαραώ +ἑλόμενος +μᾶλλον +συνκακουχεῖσθαι +τῷ +λαῷ +τοῦ +Θεοῦ +ἤ +πρόσκαιρον +ἔχειν +ἁμαρτίας +ἀπόλαυσιν +μείζονα +πλοῦτον +ἡγησάμενος +τῶν +Αἰγύπτου +θησαυρῶν +τόν +ὀνειδισμόν +τοῦ +Χριστοῦ +γάρ +ἀπέβλεπεν +εἰς +τήν +μισθαποδοσίαν +Πίστει +κατέλιπεν +Αἴγυπτον +μή +φοβηθείς +τόν +θυμόν +τοῦ +βασιλέως +γάρ +τόν +ἀόρατον +ὡς +ὁρῶν +ἐκαρτέρησεν +Πίστει +πεποίηκεν +τό +πάσχα +καί +τήν +πρόσχυσιν +τοῦ +αἵματος +ἵνα +μή +ὁ +ὀλοθρεύων +τά +πρωτότοκα +θίγῃ +αὐτῶν +Πίστει +διέβησαν +τήν +Ἐρυθράν +Θάλασσαν +ὡς +διά +ξηρᾶς +γῆς +ἧς +πεῖραν +λαβόντες +οἱ +Αἰγύπτιοι +κατεπόθησαν +Πίστει +τά +τείχη +Ἰερειχώ +ἔπεσαν +κυκλωθέντα +ἐπί +ἑπτά +ἡμέρας +Πίστει +Ῥαάβ +ἡ +πόρνη +οὐ +συναπώλετο +τοῖς +ἀπειθήσασιν +δεξαμένη +τούς +κατασκόπους +μετ’ +εἰρήνης +Καί +τί +ἔτι +λέγω +γάρ +ἐπιλείψει +ὁ +χρόνος +με +διηγούμενον +περί +Γεδεών +Βαράκ +Σαμψών +Ἰεφθάε +τε +Δαυείδ +καί +Σαμουήλ +καί +τῶν +προφητῶν +οἵ +διά +πίστεως +κατηγωνίσαντο +βασιλείας +ἠργάσαντο +δικαιοσύνην +ἐπέτυχον +ἐπαγγελιῶν +ἔφραξαν +στόματα +λεόντων +ἔσβεσαν +δύναμιν +πυρός +ἔφυγον +στόματα +μαχαίρης +ἐδυναμώθησαν +ἀπό +ἀσθενείας +ἐγενήθησαν +ἰσχυροί +ἐν +πολέμῳ +παρεμβολάς +ἀλλοτρίων +ἔκλιναν +ἔλαβον +γυναῖκες +ἐξ +ἀναστάσεως +τούς +νεκρούς +αὐτῶν +δέ +ἄλλοι +ἐτυμπανίσθησαν +οὐ +προσδεξάμενοι +τήν +ἀπολύτρωσιν +ἵνα +κρείττονος +ἀναστάσεως +τύχωσιν +δέ +ἕτεροι +ἐμπαιγμῶν +καί +μαστίγων +πεῖραν +ἔλαβον +δέ +ἔτι +δεσμῶν +καί +φυλακῆς +ἐλιθάσθησαν +ἐπειράσθησαν +ἐπρίσθησαν +ἐν +φόνῳ +μαχαίρης +ἀπέθανον +περιῆλθον +ἐν +μηλωταῖς +ἐν +αἰγείοις +δέρμασιν +ὑστερούμενοι +θλιβόμενοι +κακουχούμενοι +πλανώμενοι +ἐπί +ἐρημίαις +καί +ὄρεσιν +καί +σπηλαίοις +καί +ταῖς +ὀπαῖς +τῆς +γῆς +ὧν +οὐκ +ἦν +ἄξιος +ὁ +κόσμος +Καί +οὗτοι +πάντες +μαρτυρηθέντες +διά +τῆς +πίστεως +οὐκ +ἐκομίσαντο +τήν +ἐπαγγελίαν +τοῦ +Θεοῦ +περί +ἡμῶν +κρεῖττον +τι +προβλεψαμένου +ἵνα +μή +χωρίς +ἡμῶν +τελειωθῶσιν +Τοιγαροῦν +καί +ἡμεῖς +ἔχοντες +τοσοῦτον +περικείμενον +ἡμῖν +νέφος +μαρτύρων +ἀποθέμενοι +ὄγκον +πάντα +καί +τήν +εὐπερίστατον +ἁμαρτίαν +δι’ +ὑπομονῆς +τρέχωμεν +τόν +προκείμενον +ἡμῖν +ἀγῶνα +ἀφορῶντες +εἰς +τόν +τῆς +πίστεως +ἀρχηγόν +καί +τελειωτήν +Ἰησοῦν +ὅς +ἀντί +τῆς +προκειμένης +αὐτῷ +χαρᾶς +ὑπέμεινεν +σταυρόν +αἰσχύνης +καταφρονήσας +τε +ἐν +δεξιᾷ +τοῦ +θρόνου +τοῦ +Θεοῦ +κεκάθικεν +γάρ +ἀναλογίσασθε +τόν +ὑπομεμενηκότα +τοιαύτην +ὑπό +τῶν +ἁμαρτωλῶν +εἰς +ἑαυτόν +ἀντιλογίαν +ἵνα +μή +κάμητε +ταῖς +ψυχαῖς +ὑμῶν +ἐκλυόμενοι +Οὔπω +μέχρις +αἵματος +ἀντικατέστητε +πρός +τήν +ἁμαρτίαν +ἀνταγωνιζόμενοι +καί +ἐκλέλησθε +τῆς +παρακλήσεως +ἥτις +ὑμῖν +ὡς +υἱοῖς +διαλέγεται +Υἱέ +μου +μή +ὀλιγώρει +παιδείας +Κυρίου +μηδέ +ἐκλύου +ὑπ’ +αὐτοῦ +ἐλεγχόμενος +γάρ +ὅν +ἀγαπᾷ +Κύριος +παιδεύει +δέ +μαστιγοῖ +πάντα +υἱόν +ὅν +παραδέχεται +εἰς +παιδείαν +ὑπομένετε +ὡς +υἱοῖς +ὑμῖν +προσφέρεται +ὁ +Θεός +γάρ +τίς +υἱός +ὅν +οὐ +παιδεύει +πατήρ +δέ +εἰ +ἐστε +χωρίς +παιδείας +ἧς +μέτοχοι +γεγόνασιν +πάντες +ἄρα +νόθοι +καί +οὐχ +υἱοί +ἐστε +μέν +εἶτα +τούς +τῆς +σαρκός +ἡμῶν +πατέρας +εἴχομεν +παιδευτάς +καί +ἐνετρεπόμεθα +οὐ +πολύ +μᾶλλον +ὑποταγησόμεθα +τῷ +Πατρί +τῶν +πνευμάτων +καί +ζήσομεν +γάρ +μέν +οἱ +πρός +ὀλίγας +ἡμέρας +κατά +τό +δοκοῦν +αὐτοῖς +ἐπαίδευον +δέ +ὁ +ἐπί +τό +συμφέρον +εἰς +τό +μεταλαβεῖν +τῆς +ἁγιότητος +αὐτοῦ +μέν +πᾶσα +παιδεία +μέν +πρός +τό +παρόν +δοκεῖ +οὐ +χαρᾶς +εἶναι +ἀλλά +λύπης +δέ +ὕστερον +καρπόν +εἰρηνικόν +δικαιοσύνης +τοῖς +δι’ +αὐτῆς +γεγυμνασμένοις +ἀποδίδωσιν +Διό +τάς +παρειμένας +χεῖρας +καί +τά +παραλελυμένα +γόνατα +ἀνορθώσατε +καί +τροχιάς +ὀρθάς +ποιεῖτε +τοῖς +ποσίν +ὑμῶν +ἵνα +μή +τό +χωλόν +ἐκτραπῇ +δέ +ἰαθῇ +μᾶλλον +διώκετε +μετά +πάντων +Εἰρήνην +καί +τόν +ἁγιασμόν +οὗ +χωρίς +οὐδείς +ὄψεται +τόν +Κύριον +ἐπισκοποῦντες +μή +τις +ὑστερῶν +ἀπό +τῆς +χάριτος +τοῦ +Θεοῦ +μή +τις +ῥίζα +πικρίας +ἄνω +φύουσα +ἐνοχλῇ +καί +διά +ταύτης +μιανθῶσιν +οἱ +πολλοί +μή +τις +πόρνος +ἤ +βέβηλος +ὡς +Ἠσαῦ +ὅς +ἀντί +βρώσεως +μιᾶς +ἀπέδετο +τά +πρωτοτόκια +ἑαυτοῦ +γάρ +ἴστε +ὅτι +καί +μετέπειτα +θέλων +κληρονομῆσαι +τήν +εὐλογίαν +ἀπεδοκιμάσθη +γάρ +μετανοίας +τόπον +οὐχ +εὗρεν +καίπερ +μετά +δακρύων +ἐκζητήσας +αὐτήν +γάρ +Οὐ +προσεληλύθατε +ψηλαφωμένῳ +καί +κεκαυμένῳ +πυρί +καί +γνόφῳ +καί +ζόφῳ +καί +θυέλλῃ +καί +σάλπιγγος +ἤχῳ +καί +φωνῇ +ῥημάτων +ἧς +οἱ +ἀκούσαντες +παρῃτήσαντο +μή +προστεθῆναι +αὐτοῖς +λόγον +γάρ +οὐκ +ἔφερον +τό +διαστελλόμενον +Κἄν +θηρίον +θίγῃ +τοῦ +ὄρους +λιθοβοληθήσεται +καί +οὕτω +φοβερόν +ἦν +τό +φανταζόμενον +Μωϋσῆς +εἶπεν +εἰμι +Ἔκφοβος +καί +ἔντρομος +ἀλλά +προσεληλύθατε +Σιών +ὄρει +καί +πόλει +Θεοῦ +ζῶντος +Ἱερουσαλήμ +ἐπουρανίῳ +καί +μυριάσιν +ἀγγέλων +πανηγύρει +καί +ἐκκλησίᾳ +πρωτοτόκων +ἀπογεγραμμένων +ἐν +οὐρανοῖς +καί +Κριτῇ +πάντων +Θεῷ +καί +πνεύμασι +δικαίων +τετελειωμένων +καί +διαθήκης +νέας +μεσίτῃ +Ἰησοῦ +καί +αἵματι +ῥαντισμοῦ +κρεῖττον +λαλοῦντι +παρά +τόν +Ἄβελ +Βλέπετε +μή +παραιτήσησθε +τόν +λαλοῦντα +γάρ +εἰ +οὐκ +ἐξέφυγον +ἐκεῖνοι +παραιτησάμενοι +τόν +ἐπί +γῆς +χρηματίζοντα +πολύ +μᾶλλον +ἡμεῖς +οἱ +τόν +ἀπ’ +οὐρανῶν +ἀποστρεφόμενοι +οὗ +ἡ +φωνή +τήν +γῆν +ἐσάλευσεν +τότε +δέ +νῦν +ἐπήγγελται +λέγων +Ἔτι +ἅπαξ +ἐγώ +σείσω +οὐ +μόνον +τήν +γῆν +ἀλλά +καί +τόν +οὐρανόν +δέ +τό +Ἔτι +ἅπαξ +δηλοῖ +τήν +τῶν +σαλευομένων +μετάθεσιν +ὡς +πεποιημένων +ἵνα +μείνῃ +τά +μή +σαλευόμενα +Διό +βασιλείαν +ἀσάλευτον +παραλαμβάνοντες +ἔχωμεν +χάριν +δι’ +ἧς +λατρεύωμεν +εὐαρέστως +τῷ +Θεῷ +μετά +εὐλαβείας +καί +δέους +γάρ +καί +ὁ +Θεός +ἡμῶν +πῦρ +καταναλίσκον +Ἠ +φιλαδελφία +μενέτω +τῆς +φιλοξενίας +μή +ἐπιλανθάνεσθε +γάρ +διά +ταύτης +ἔλαθον +τινες +ξενίσαντες +ἀγγέλους +μιμνῄσκεσθε +τῶν +δεσμίων +ὡς +συνδεδεμένοι +τῶν +κακουχουμένων +ὡς +καί +αὐτοί +ὄντες +ἐν +σώματι +Τίμιος +ὁ +γάμος +ἐν +πᾶσιν +καί +ἡ +κοίτη +ἀμίαντος +γάρ +πόρνους +καί +μοιχούς +κρινεῖ +ὁ +Θεός +Ἀφιλάργυρος +ὁ +τρόπος +ἀρκούμενοι +τοῖς +παροῦσιν +γάρ +αὐτός +εἴρηκεν +Οὐ +μή +σε +ἀνῶ +οὐδ’ +οὐ +μή +σε +ἐγκαταλίπω +ὥστε +θαρροῦντας +ἡμᾶς +λέγειν +Κύριος +ἐμοί +βοηθός +οὐ +φοβηθήσομαι +τί +ποιήσει +μοι +ἄνθρωπος +Μνημονεύετε +τῶν +ἡγουμένων +ὑμῶν +οἵτινες +ἐλάλησαν +ὑμῖν +τόν +λόγον +τοῦ +Θεοῦ +ὧν +τήν +ἔκβασιν +τῆς +ἀναστροφῆς +ἀναθεωροῦντες +μιμεῖσθε +τήν +πίστιν +Ἰησοῦς +Χριστός +ἐχθές +καί +σήμερον +ὁ +αὐτός +καί +εἰς +τούς +αἰῶνας +διδαχαῖς +ποικίλαις +καί +ξέναις +μή +παραφέρεσθε +γάρ +καλόν +χάριτι +βεβαιοῦσθαι +τήν +καρδίαν +οὐ +βρώμασιν +ἐν +οἷς +οὐκ +ὠφελήθησαν +οἱ +περιπατοῦντες +Ἔχομεν +θυσιαστήριον +ἐξ +οὗ +φαγεῖν +οὐκ +ἔχουσιν +ἐξουσίαν +οἱ +τῇ +σκηνῇ +λατρεύοντες +γάρ +εἰσφέρεται +ὧν +ζῴων +τό +αἷμα +περί +ἁμαρτίας +εἰς +τά +ἅγια +διά +τοῦ +ἀρχιερέως +τούτων +τά +σώματα +κατακαίεται +ἔξω +τῆς +παρεμβολῆς +διό +καί +Ἰησοῦς +ἵνα +ἁγιάσῃ +διά +τοῦ +ἰδίου +αἵματος +τόν +λαόν +ἔξω +τῆς +πύλης +ἔπαθεν +τοίνυν +ἐξερχώμεθα +πρός +αὐτόν +ἔξω +τῆς +παρεμβολῆς +τόν +ὀνειδισμόν +αὐτοῦ +φέροντες +γάρ +οὐ +ἔχομεν +ὧδε +μένουσαν +πόλιν +ἀλλά +τήν +μέλλουσαν +ἐπιζητοῦμεν +οὖν +δι’ +αὐτοῦ +ἀναφέρωμεν +διά +παντός +τῷ +Θεῷ +θυσίαν +αἰνέσεως +τοῦτ’ +ἔστιν +καρπόν +χειλέων +ὁμολογούντων +τῷ +ὀνόματι +αὐτοῦ +δέ +τῆς +εὐποιΐας +καί +κοινωνίας +μή +ἐπιλανθάνεσθε +γάρ +τοιαύταις +θυσίαις +εὐαρεστεῖται +ὁ +Θεός +Πείθεσθε +τοῖς +ἡγουμένοις +ὑμῶν +καί +ὑπείκετε +γάρ +αὐτοί +ἀγρυπνοῦσιν +ὑπέρ +τῶν +ψυχῶν +ὑμῶν +ὡς +λόγον +ἀποδώσοντες +ἵνα +μετά +χαρᾶς +τοῦτο +ποιῶσιν +καί +μή +στενάζοντες +γάρ +ἀλυσιτελές +ὑμῖν +τοῦτο +Προσεύχεσθε +περί +ἡμῶν +γάρ +πειθόμεθα +ὅτι +καλήν +συνείδησιν +ἔχομεν +ἐν +πᾶσιν +καλῶς +ἀναστρέφεσθαι +θέλοντες +δέ +περισσοτέρως +παρακαλῶ +τοῦτο +ποιῆσαι +ἵνα +τάχειον +ἀποκατασταθῶ +ὑμῖν +δέ +Ὁ +Θεός +τῆς +εἰρήνης +ὁ +ἀναγαγών +ἐκ +νεκρῶν +ἐν +αἵματι +διαθήκης +αἰωνίου +τόν +ποιμένα +τῶν +προβάτων +τόν +μέγαν +τόν +Κύριον +ἡμῶν +Ἰησοῦν +καταρτίσαι +ὑμᾶς +ἐν +παντί +ἀγαθῷ +εἰς +τό +ποιῆσαι +τό +θέλημα +αὐτοῦ +ποιῶν +ἐν +ἡμῖν +τό +εὐάρεστον +ἐνώπιον +αὐτοῦ +διά +Ἰησοῦ +Χριστοῦ +ᾧ +ἡ +δόξα +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +δέ +Παρακαλῶ +ὑμᾶς +ἀδελφοί +ἀνέχεσθε +τοῦ +λόγου +τῆς +παρακλήσεως +γάρ +καί +διά +βραχέων +ἐπέστειλα +ὑμῖν +Γινώσκετε +τόν +ἀδελφόν +ἡμῶν +Τιμόθεον +ἀπολελυμένον +μεθ’ +οὗ +ἐάν +τάχειον +ἔρχηται +ὄψομαι +ὑμᾶς +Ἀσπάσασθε +πάντας +τούς +ἡγουμένους +ὑμῶν +καί +πάντας +τούς +ἁγίους +Ἀσπάζονται +ὑμᾶς +οἱ +ἀπό +τῆς +Ἰταλίας +Ἠ +χάρις +μετά +πάντων +ὑμῶν +Ἰάκωβος +Θεοῦ +καί +Κυρίου +Ἰησοῦ +Χριστοῦ +δοῦλος +ταῖς +δώδεκα +φυλαῖς +ταῖς +ἐν +τῇ +Διασπορᾷ +χαίρειν +ἀδελφοί +μου +Πᾶσαν +χαράν +ἡγήσασθε +ὅταν +πειρασμοῖς +ποικίλοις +περιπέσητε +γινώσκοντες +ὅτι +τό +δοκίμιον +ὑμῶν +τῆς +πίστεως +κατεργάζεται +ὑπομονήν +δέ +ἡ +ὑπομονή +ἔργον +τέλειον +ἐχέτω +ἵνα +ἦτε +τέλειοι +καί +ὁλόκληροι +ἐν +μηδενί +λειπόμενοι +δέ +Εἰ +τις +ὑμῶν +λείπεται +σοφίας +αἰτείτω +παρά +τοῦ +διδόντος +πᾶσιν +ἁπλῶς +καί +μή +ὀνειδίζοντος +Θεοῦ +καί +δοθήσεται +αὐτῷ +δέ +αἰτείτω +ἐν +πίστει +μηδέν +διακρινόμενος +γάρ +ὁ +διακρινόμενος +ἔοικεν +κλύδωνι +θαλάσσης +ἀνεμιζομένῳ +καί +ῥιπιζομένῳ +γάρ +μή +οἰέσθω +ὁ +ἄνθρωπος +ἐκεῖνος +ὅτι +λήμψεται +τι +παρά +τοῦ +Κυρίου +ἀνήρ +δίψυχος +ἀκατάστατος +ἐν +πάσαις +ταῖς +ὁδοῖς +αὐτοῦ +δέ +Καυχάσθω +ὁ +ἀδελφός +ὁ +ταπεινός +ἐν +τῷ +ὕψει +αὐτοῦ +δέ +ὁ +πλούσιος +ἐν +τῇ +ταπεινώσει +αὐτοῦ +ὅτι +ὡς +ἄνθος +χόρτου +παρελεύσεται +γάρ +ἀνέτειλεν +ὁ +ἥλιος +σύν +τῷ +καύσωνι +καί +ἐξήρανεν +τόν +χόρτον +καί +τό +ἄνθος +αὐτοῦ +ἐξέπεσεν +καί +ἡ +εὐπρέπεια +τοῦ +προσώπου +αὐτοῦ +ἀπώλετο +οὕτως +καί +ὁ +πλούσιος +ἐν +ταῖς +πορείαις +αὐτοῦ +μαρανθήσεται +Μακάριος +ἀνήρ +ὅς +ὑπομένει +πειρασμόν +ὅτι +δόκιμος +γενόμενος +λήμψεται +τόν +στέφανον +τῆς +ζωῆς +ὅν +ἐπηγγείλατο +τοῖς +ἀγαπῶσιν +αὐτόν +Μηδείς +πειραζόμενος +λεγέτω +ὅτι +Ἀπό +Θεοῦ +πειράζομαι +γάρ +ὁ +Θεός +ἀπείραστος +ἐστιν +κακῶν +δέ +πειράζει +αὐτός +οὐδένα +δέ +ἕκαστος +πειράζεται +ὑπό +τῆς +ἰδίας +ἐπιθυμίας +ἐξελκόμενος +καί +δελεαζόμενος +εἶτα +ἡ +ἐπιθυμία +συλλαβοῦσα +τίκτει +ἁμαρτίαν +δέ +ἡ +ἁμαρτία +ἀποτελεσθεῖσα +ἀποκύει +θάνατον +Μή +πλανᾶσθε +ἀδελφοί +μου +ἀγαπητοί +πᾶσα +δόσις +ἀγαθή +καί +πᾶν +δώρημα +τέλειον +ἄνωθεν +ἐστιν +καταβαῖνον +ἀπό +τοῦ +Πατρός +τῶν +φώτων +παρ’ +ᾧ +οὐκ +ἔνι +παραλλαγή +ἤ +τροπῆς +ἀποσκίασμα +βουληθείς +ἀπεκύησεν +ἡμᾶς +λόγῳ +ἀληθείας +εἰς +τό +εἶναι +ἡμᾶς +ἀπαρχήν +τινα +τῶν +αὐτοῦ +κτισμάτων +Ἴστε +ἀδελφοί +μου +ἀγαπητοί +δέ +ἔστω +πᾶς +ἄνθρωπος +ταχύς +εἰς +τό +ἀκοῦσαι +βραδύς +εἰς +τό +λαλῆσαι +βραδύς +εἰς +ὀργήν +γάρ +ὀργή +ἀνδρός +δικαιοσύνην +Θεοῦ +οὐκ +ἐργάζεται +διό +ἀποθέμενοι +πᾶσαν +ῥυπαρίαν +καί +περισσείαν +κακίας +ἐν +πραΰτητι +δέξασθε +τόν +ἔμφυτον +λόγον +τόν +δυνάμενον +σῶσαι +τάς +ψυχάς +ὑμῶν +δέ +γίνεσθε +ποιηταί +λόγου +καί +μή +ἀκροαταί +μόνον +παραλογιζόμενοι +ἑαυτούς +ὅτι +εἴ +τις +ἀκροατής +λόγου +ἐστίν +καί +οὐ +ποιητής +οὗτος +ἔοικεν +ἀνδρί +κατανοοῦντι +τό +πρόσωπον +τῆς +γενέσεως +αὐτοῦ +ἐν +ἐσόπτρῳ +γάρ +κατενόησεν +ἑαυτόν +καί +ἀπελήλυθεν +καί +εὐθέως +ἐπελάθετο +ὁποῖος +ἦν +δέ +ὁ +παρακύψας +εἰς +νόμον +τέλειον +τόν +τῆς +ἐλευθερίας +καί +παραμείνας +γενόμενος +οὐκ +ἀκροατής +ἐπιλησμονῆς +ἀλλά +ποιητής +ἔργου +οὗτος +μακάριος +ἐν +τῇ +ποιήσει +αὐτοῦ +ἔσται +Εἴ +τις +δοκεῖ +θρησκός +εἶναι +μή +χαλιναγωγῶν +γλῶσσαν +ἑαυτοῦ +ἀλλά +ἀπατῶν +καρδίαν +ἑαυτοῦ +τούτου +ἡ +θρησκεία +μάταιος +θρησκεία +καθαρά +καί +ἀμίαντος +παρά +τῷ +Θεῷ +καί +Πατρί +ἐστίν +αὕτη +ἐπισκέπτεσθαι +ὀρφανούς +καί +χήρας +ἐν +τῇ +θλίψει +αὐτῶν +ἄσπιλον +ἑαυτόν +τηρεῖν +ἀπό +τοῦ +κόσμου +Ἀδελφοί +μου +μή +ἐν +προσωπολημψίαις +ἔχετε +τήν +πίστιν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τῆς +δόξης +γάρ +ἐάν +εἰσέλθῃ +εἰς +συναγωγήν +ὑμῶν +ἀνήρ +χρυσοδακτύλιος +ἐν +ἐσθῆτι +λαμπρᾷ +δέ +εἰσέλθῃ +καί +πτωχός +ἐν +ῥυπαρᾷ +ἐσθῆτι +δέ +ἐπιβλέψητε +ἐπί +τόν +φοροῦντα +τήν +ἐσθῆτα +τήν +λαμπράν +καί +εἴπητε +Σύ +κάθου +ὧδε +καλῶς +καί +τῷ +πτωχῷ +εἴπητε +Σύ +στῆθι +ἐκεῖ +ἤ +κάθου +ὑπό +τό +ὑποπόδιον +μου +οὐ +διεκρίθητε +ἐν +ἑαυτοῖς +καί +ἐγένεσθε +κριταί +διαλογισμῶν +πονηρῶν +Ἀκούσατε +ἀδελφοί +μου +ἀγαπητοί +οὐχ +ὁ +Θεός +ἐξελέξατο +τούς +πτωχούς +τῷ +κόσμῳ +πλουσίους +ἐν +πίστει +καί +κληρονόμους +τῆς +βασιλείας +ἧς +ἐπηγγείλατο +τοῖς +ἀγαπῶσιν +αὐτόν +δέ +ὑμεῖς +ἠτιμάσατε +τόν +πτωχόν +οὐχ +οἱ +πλούσιοι +καταδυναστεύουσιν +ὑμῶν +καί +αὐτοί +ἕλκουσιν +ὑμᾶς +εἰς +κριτήρια +οὐκ +αὐτοί +βλασφημοῦσιν +τό +καλόν +ὄνομα +τό +ἐπικληθέν +ἐφ’ +ὑμᾶς +εἰ +μέντοι +νόμον +βασιλικόν +τελεῖτε +κατά +τήν +γραφήν +Ἀγαπήσεις +τόν +πλησίον +σου +ὡς +σεαυτόν +καλῶς +ποιεῖτε +δέ +εἰ +προσωπολημπτεῖτε +ἁμαρτίαν +ἐργάζεσθε +ἐλεγχόμενοι +ὑπό +τοῦ +νόμου +ὡς +παραβάται +γάρ +ὅστις +ὅλον +τόν +νόμον +τηρήσῃ +δέ +πταίσῃ +ἐν +ἑνί +γέγονεν +πάντων +ἔνοχος +γάρ +ὁ +εἰπών +Μή +μοιχεύσῃς +εἶπεν +καί +Μή +φονεύσῃς +δέ +εἰ +οὐ +μοιχεύεις +δέ +φονεύεις +γέγονας +παραβάτης +νόμου +οὕτως +λαλεῖτε +καί +οὕτως +ποιεῖτε +ὡς +διά +νόμου +ἐλευθερίας +κρίνεσθαι +μέλλοντες +γάρ +ἡ +κρίσις +ἀνέλεος +τῷ +μή +ποιήσαντι +ἔλεος +κατακαυχᾶται +ἔλεος +κρίσεως +ἀδελφοί +μου +Τί +τό +ὄφελος +ἐάν +πίστιν +ἔχειν +λέγῃ +τις +δέ +ἔργα +μή +ἔχῃ +μή +δύναται +ἡ +πίστις +σῶσαι +αὐτόν +ἐάν +ἀδελφός +ἤ +ἀδελφή +γυμνοί +ὑπάρχωσιν +καί +λειπόμενοι +τῆς +ἐφημέρου +τροφῆς +δέ +εἴπῃ +αὐτοῖς +τις +ἐξ +ὑμῶν +Ὑπάγετε +ἐν +εἰρήνῃ +θερμαίνεσθε +καί +χορτάζεσθε +δέ +μή +δῶτε +αὐτοῖς +τά +ἐπιτήδεια +τοῦ +σώματος +τί +τό +ὄφελος +οὕτως +καί +ἡ +πίστις +ἐάν +μή +ἔχῃ +ἔργα +νεκρά +ἐστιν +καθ’ +ἑαυτήν +ἀλλ’ +ἐρεῖ +τις +Σύ +πίστιν +ἔχεις +κἀγώ +ἔργα +ἔχω +δεῖξον +μοι +τήν +πίστιν +σου +χωρίς +τῶν +ἔργων +κἀγώ +σοι +δείξω +ἐκ +τῶν +ἔργων +μου +τήν +πίστιν +σύ +πιστεύεις +ὅτι +εἷς +ἐστιν +ὁ +Θεός +καλῶς +ποιεῖς +καί +τά +δαιμόνια +πιστεύουσιν +καί +φρίσσουσιν +δέ +ὦ +ἄνθρωπε +κενέ +θέλεις +γνῶναι +ὅτι +ἡ +πίστις +χωρίς +τῶν +ἔργων +ἀργή +ἐστιν +Ἀβραάμ +ὁ +πατήρ +ἡμῶν +οὐκ +ἐξ +ἔργων +ἐδικαιώθη +ἀνενέγκας +Ἰσαάκ +τόν +υἱόν +αὐτοῦ +ἐπί +τό +θυσιαστήριον +βλέπεις +ὅτι +ἡ +πίστις +συνήργει +τοῖς +ἔργοις +αὐτοῦ +καί +ἐκ +τῶν +ἔργων +ἡ +πίστις +ἐτελειώθη +καί +ἐπληρώθη +ἡ +γραφή +ἡ +λέγουσα +δέ +Ἐπίστευσεν +Ἀβραάμ +τῷ +Θεῷ +καί +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην +καί +φίλος +Θεοῦ +ἐκλήθη +ὁρᾶτε +ὅτι +ἐξ +ἔργων +δικαιοῦται +ἄνθρωπος +καί +οὐκ +ἐκ +πίστεως +μόνον +δέ +ὁμοίως +καί +Ῥαάβ +ἡ +πόρνη +οὐκ +ἐξ +ἔργων +ἐδικαιώθη +ὑποδεξαμένη +τούς +ἀγγέλους +καί +ἑτέρᾳ +ὁδῷ +ἐκβαλοῦσα +γάρ +ὥσπερ +τό +σῶμα +χωρίς +πνεύματος +νεκρόν +ἐστιν +οὕτως +καί +ἡ +πίστις +χωρίς +ἔργων +νεκρά +ἐστιν +ἀδελφοί +μου +Μή +πολλοί +διδάσκαλοι +γίνεσθε +εἰδότες +ὅτι +μεῖζον +κρίμα +λημψόμεθα +γάρ +πολλά +πταίομεν +ἅπαντες +εἴ +τις +ἐν +λόγῳ +οὐ +πταίει +οὗτος +τέλειος +ἀνήρ +δυνατός +χαλιναγωγῆσαι +καί +ὅλον +τό +σῶμα +δέ +εἰ +τῶν +ἵππων +τούς +χαλινούς +εἰς +τά +στόματα +βάλλομεν +εἰς +τό +πείθεσθαι +αὐτούς +ἡμῖν +καί +ὅλον +τό +σῶμα +αὐτῶν +μετάγομεν +ἰδού +καί +τά +πλοῖα +τηλικαῦτα +ὄντα +καί +ὑπό +ἀνέμων +σκληρῶν +ἐλαυνόμενα +μετάγεται +ὑπό +ἐλαχίστου +πηδαλίου +ὅπου +ἡ +ὁρμή +τοῦ +εὐθύνοντος +βούλεται +οὕτως +καί +ἡ +γλῶσσα +μικρόν +μέλος +ἐστίν +καί +μεγάλα +αὐχεῖ +ἰδού +ἡλίκον +πῦρ +ἡλίκην +ὕλην +ἀνάπτει +καί +ἡ +γλῶσσα +πῦρ +ὁ +κόσμος +τῆς +ἀδικίας +ἡ +γλῶσσα +καθίσταται +ἐν +τοῖς +μέλεσιν +ἡμῶν +ἡ +σπιλοῦσα +ὅλον +τό +σῶμα +καί +φλογίζουσα +τόν +τροχόν +τῆς +γενέσεως +καί +φλογιζομένη +ὑπό +τῆς +γεέννης +γάρ +πᾶσα +φύσις +τε +θηρίων +καί +πετεινῶν +τε +ἑρπετῶν +καί +ἐναλίων +δαμάζεται +καί +δεδάμασται +τῇ +φύσει +τῇ +ἀνθρωπίνῃ +δέ +τήν +γλῶσσαν +δαμάσαι +δύναται +οὐδείς +ἀνθρώπων +ἀκατάστατον +κακόν +μεστή +ἰοῦ +θανατηφόρου +ἐν +αὐτῇ +εὐλογοῦμεν +τόν +Κύριον +καί +Πατέρα +καί +ἐν +αὐτῇ +καταρώμεθα +τούς +ἀνθρώπους +τούς +καθ’ +ὁμοίωσιν +Θεοῦ +γεγονότας +ἐκ +τοῦ +αὐτοῦ +στόματος +ἐξέρχεται +εὐλογία +καί +κατάρα +ἀδελφοί +μου +οὐ +χρή +ταῦτα +οὕτως +γίνεσθαι +μήτι +ἡ +πηγή +ἐκ +τῆς +αὐτῆς +ὀπῆς +βρύει +τό +γλυκύ +καί +τό +πικρόν +ἀδελφοί +μου +μή +δύναται +συκῆ +ἐλαίας +ποιῆσαι +ἤ +ἄμπελος +σῦκα +οὔτε +ἁλυκόν +ποιῆσαι +γλυκύ +ὕδωρ +Τίς +σοφός +καί +ἐπιστήμων +ἐν +ὑμῖν +δειξάτω +ἐκ +τῆς +καλῆς +ἀναστροφῆς +τά +ἔργα +αὐτοῦ +ἐν +πραΰτητι +σοφίας +δέ +εἰ +ἔχετε +ζῆλον +πικρόν +καί +ἐριθείαν +ἐν +τῇ +καρδίᾳ +ὑμῶν +μή +κατακαυχᾶσθε +καί +ψεύδεσθε +κατά +τῆς +ἀληθείας +οὐκ +ἔστιν +αὕτη +ἡ +σοφία +ἄνωθεν +κατερχομένη +ἀλλά +ἐπίγειος +ψυχική +δαιμονιώδης +γάρ +ὅπου +ζῆλος +καί +ἐριθεία +ἐκεῖ +ἀκαταστασία +καί +πᾶν +φαῦλον +πρᾶγμα +δέ +ἡ +ἄνωθεν +σοφία +πρῶτον +μέν +ἁγνή +ἐστιν +ἔπειτα +εἰρηνική +ἐπιεικής +εὐπειθής +μεστή +ἐλέους +καί +καρπῶν +ἀγαθῶν +ἀδιάκριτος +ἀνυπόκριτος +δέ +καρπός +δικαιοσύνης +ἐν +εἰρήνῃ +σπείρεται +τοῖς +ποιοῦσιν +εἰρήνην +Πόθεν +πόλεμοι +καί +πόθεν +μάχαι +ἐν +ὑμῖν +οὐκ +ἐντεῦθεν +ἐκ +τῶν +ἡδονῶν +ὑμῶν +τῶν +στρατευομένων +ἐν +τοῖς +μέλεσιν +ὑμῶν +ἐπιθυμεῖτε +καί +οὐκ +ἔχετε +φονεύετε +καί +ζηλοῦτε +καί +οὐ +δύνασθε +ἐπιτυχεῖν +μάχεσθε +καί +πολεμεῖτε +οὐκ +ἔχετε +διά +τό +μή +αἰτεῖσθαι +ὑμᾶς +αἰτεῖτε +καί +οὐ +λαμβάνετε +διότι +κακῶς +αἰτεῖσθε +ἵνα +ἐν +ταῖς +ἡδοναῖς +ὑμῶν +δαπανήσητε +μοιχαλίδες +οὐκ +οἴδατε +ὅτι +ἡ +φιλία +τοῦ +κόσμου +ἔχθρα +τοῦ +Θεοῦ +ἐστιν +οὖν +ἐάν +ὅς +βουληθῇ +εἶναι +φίλος +τοῦ +κόσμου +ἐχθρός +τοῦ +Θεοῦ +καθίσταται +ἤ +δοκεῖτε +ὅτι +κενῶς +ἡ +γραφή +λέγει +Πρός +φθόνον +ἐπιποθεῖ +τό +πνεῦμα +ὅ +κατῴκισεν +ἐν +ἡμῖν +δέ +μείζονα +χάριν +δίδωσιν +διό +λέγει +Ὁ +Θεός +ὑπερηφάνοις +ἀντιτάσσεται +δέ +ταπεινοῖς +δίδωσιν +χάριν +οὖν +ὑποτάγητε +τῷ +Θεῷ +δέ +ἀντίστητε +τῷ +διαβόλῳ +καί +φεύξεται +ἀφ’ +ὑμῶν +ἐγγίσατε +τῷ +Θεῷ +καί +ἐγγίσει +ὑμῖν +καθαρίσατε +χεῖρας +ἁμαρτωλοί +καί +ἁγνίσατε +καρδίας +δίψυχοι +ταλαιπωρήσατε +καί +πενθήσατε +καί +κλαύσατε +ὁ +γέλως +ὑμῶν +εἰς +πένθος +μετατραπήτω +καί +ἡ +χαρά +εἰς +κατήφειαν +ταπεινώθητε +ἐνώπιον +Κυρίου +καί +ὑψώσει +ὑμᾶς +Μή +καταλαλεῖτε +ἀλλήλων +ἀδελφοί +ὁ +καταλαλῶν +ἀδελφοῦ +ἤ +κρίνων +τόν +ἀδελφόν +αὐτοῦ +καταλαλεῖ +νόμου +καί +κρίνει +νόμον +δέ +εἰ +νόμον +κρίνεις +εἶ +οὐκ +ποιητής +νόμου +ἀλλά +κριτής +εἷς +ἐστιν +νομοθέτης +καί +κριτής +ὁ +δυνάμενος +σῶσαι +καί +ἀπολέσαι +δέ +σύ +τίς +εἶ +ὁ +κρίνων +τόν +πλησίον +Ἄγε +νῦν +οἱ +λέγοντες +Σήμερον +ἤ +αὔριον +πορευσόμεθα +εἰς +τήνδε +τήν +πόλιν +καί +ποιήσομεν +ἐκεῖ +ἐνιαυτόν +καί +ἐμπορευσόμεθα +καί +κερδήσομεν +οἵτινες +οὐκ +ἐπίστασθε +τῆς +αὔριον +ποία +ἡ +ζωή +ὑμῶν +γάρ +ἐστε +ἀτμίς +ἡ +πρός +ὀλίγον +φαινομένη +ἔπειτα +καί +ἀφανιζομένη +ἀντί +τοῦ +λέγειν +ὑμᾶς +Ἐάν +ὁ +Κύριος +θελήσῃ +καί +ζήσομεν +καί +ποιήσομεν +τοῦτο +ἤ +ἐκεῖνο +δέ +νῦν +καυχᾶσθε +ἐν +ταῖς +ἀλαζονίαις +ὑμῶν +πᾶσα +καύχησις +τοιαύτη +πονηρά +ἐστιν +οὖν +εἰδότι +καλόν +ποιεῖν +καί +μή +ποιοῦντι +ἁμαρτία +αὐτῷ +ἐστιν +Ἄγε +νῦν +οἱ +πλούσιοι +κλαύσατε +ὀλολύζοντες +ἐπί +ταῖς +ταλαιπωρίαις +ὑμῶν +ταῖς +ἐπερχομέναις +ὁ +πλοῦτος +ὑμῶν +σέσηπεν +καί +τά +ἱμάτια +ὑμῶν +σητόβρωτα +γέγονεν +ὁ +χρυσός +ὑμῶν +καί +ὁ +ἄργυρος +κατίωται +καί +ὁ +ἰός +αὐτῶν +εἰς +μαρτύριον +ὑμῖν +ἔσται +καί +φάγεται +τάς +σάρκας +ὑμῶν +ὡς +πῦρ +ἐθησαυρίσατε +ἐν +ἐσχάταις +ἡμέραις +ἰδού +ὁ +μισθός +τῶν +ἐργατῶν +τῶν +ἀμησάντων +τάς +χώρας +ὑμῶν +ὁ +ἀφυστερημένος +ἀφ’ +ὑμῶν +κράζει +καί +αἱ +βοαί +τῶν +θερισάντων +εἰς +τά +ὦτα +Κυρίου +Σαβαώθ +εἰσελήλυθαν +ἐτρυφήσατε +ἐπί +τῆς +γῆς +καί +ἐσπαταλήσατε +ἐθρέψατε +τάς +καρδίας +ὑμῶν +ἐν +ἡμέρᾳ +σφαγῆς +κατεδικάσατε +ἐφονεύσατε +τόν +δίκαιον +οὐκ +ἀντιτάσσεται +ὑμῖν +οὖν +ἀδελφοί +Μακροθυμήσατε +ἕως +τῆς +παρουσίας +τοῦ +Κυρίου +ἰδού +ὁ +γεωργός +ἐκδέχεται +τόν +τίμιον +καρπόν +τῆς +γῆς +μακροθυμῶν +ἐπ’ +αὐτῷ +ἕως +λάβῃ +πρόϊμον +καί +ὄψιμον +μακροθυμήσατε +καί +ὑμεῖς +στηρίξατε +τάς +καρδίας +ὑμῶν +ὅτι +ἡ +παρουσία +τοῦ +Κυρίου +ἤγγικεν +ἀδελφοί +μή +στενάζετε +κατ’ +ἀλλήλων +ἵνα +μή +κριθῆτε +ἰδού +ὁ +κριτής +πρό +τῶν +θυρῶν +ἕστηκεν +ἀδελφοί +λάβετε +ὑπόδειγμα +τῆς +κακοπαθείας +καί +τῆς +μακροθυμίας +τούς +προφήτας +οἵ +ἐλάλησαν +ἐν +τῷ +ὀνόματι +Κυρίου +ἰδού +μακαρίζομεν +τούς +ὑπομείναντας +τήν +ὑπομονήν +Ἰώβ +ἠκούσατε +καί +τό +τέλος +Κυρίου +εἴδετε +ὅτι +ἐστιν +ὁ +Κύριος +πολύσπλαγχνος +καί +οἰκτίρμων +δέ +ἀδελφοί +μου +Πρό +πάντων +μή +ὀμνύετε +μήτε +τόν +οὐρανόν +μήτε +τήν +γῆν +μήτε +ἄλλον +τινά +ὅρκον +δέ +ἤτω +ὑμῶν +τό +Ναί +ναί +καί +τό +Οὔ +οὔ +ἵνα +μή +ὑπό +κρίσιν +πέσητε +Κακοπαθεῖ +τις +ἐν +ὑμῖν +προσευχέσθω +εὐθυμεῖ +τις +ψαλλέτω +ἀσθενεῖ +τις +ἐν +ὑμῖν +προσκαλεσάσθω +τούς +πρεσβυτέρους +τῆς +ἐκκλησίας +καί +προσευξάσθωσαν +ἐπ’ +αὐτόν +ἀλείψαντες +ἐλαίῳ +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου +καί +ἡ +εὐχή +τῆς +πίστεως +σώσει +τόν +κάμνοντα +καί +ἐγερεῖ +αὐτόν +ὁ +Κύριος +κἄν +ἁμαρτίας +ᾖ +πεποιηκώς +ἀφεθήσεται +αὐτῷ +οὖν +ἐξομολογεῖσθε +ἀλλήλοις +τάς +ἁμαρτίας +καί +προσεύχεσθε +ὑπέρ +ἀλλήλων +ὅπως +ἰαθῆτε +πολύ +ἰσχύει +δέησις +δικαίου +ἐνεργουμένη +Ἠλείας +ἦν +ἄνθρωπος +ὁμοιοπαθής +ἡμῖν +καί +προσευχῇ +προσηύξατο +τοῦ +μή +βρέξαι +καί +οὐκ +ἔβρεξεν +ἐπί +τῆς +γῆς +ἐνιαυτούς +τρεῖς +καί +μῆνας +ἕξ +καί +πάλιν +προσηύξατο +καί +ὁ +οὐρανός +ὑετόν +ἔδωκεν +καί +ἡ +γῆ +ἐβλάστησεν +τόν +καρπόν +αὐτῆς +Ἀδελφοί +μου +ἐάν +τις +ἐν +ὑμῖν +πλανηθῇ +ἀπό +τῆς +ἀληθείας +καί +ἐπιστρέψῃ +τις +αὐτόν +γινώσκετε +ὅτι +ὁ +ἐπιστρέψας +ἁμαρτωλόν +ἐκ +πλάνης +ὁδοῦ +αὐτοῦ +σώσει +ψυχήν +αὐτοῦ +ἐκ +θανάτου +καί +καλύψει +πλῆθος +ἁμαρτιῶν +Πέτρος +ἀπόστολος +Ἰησοῦ +Χριστοῦ +ἐκλεκτοῖς +παρεπιδήμοις +Διασπορᾶς +Πόντου +Γαλατίας +Καππαδοκίας +Ἀσίας +καί +Βιθυνίας +κατά +πρόγνωσιν +Θεοῦ +Πατρός +ἐν +ἁγιασμῷ +Πνεύματος +εἰς +ὑπακοήν +καί +ῥαντισμόν +αἵματος +Ἰησοῦ +Χριστοῦ +χάρις +καί +εἰρήνη +ὑμῖν +πληθυνθείη +Εὐλογητός +ὁ +Θεός +καί +Πατήρ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὁ +κατά +τό +πολύ +αὐτοῦ +ἔλεος +ἀναγεννήσας +ἡμᾶς +εἰς +ἐλπίδα +ζῶσαν +δι’ +ἀναστάσεως +Ἰησοῦ +Χριστοῦ +ἐκ +νεκρῶν +εἰς +κληρονομίαν +ἄφθαρτον +καί +ἀμίαντον +καί +ἀμάραντον +τετηρημένην +ἐν +οὐρανοῖς +εἰς +ὑμᾶς +τούς +ἐν +δυνάμει +Θεοῦ +φρουρουμένους +διά +πίστεως +εἰς +σωτηρίαν +ἑτοίμην +ἀποκαλυφθῆναι +ἐν +καιρῷ +ἐσχάτῳ +ἐν +ᾧ +ἀγαλλιᾶσθε +εἰ +ὀλίγον +ἄρτι +δέον +λυπηθέντες +ἐν +ποικίλοις +πειρασμοῖς +ἵνα +τό +δοκίμιον +ὑμῶν +τῆς +πίστεως +πολυτιμότερον +χρυσίου +τοῦ +ἀπολλυμένου +δέ +διά +πυρός +δοκιμαζομένου +εὑρεθῇ +εἰς +ἔπαινον +καί +δόξαν +καί +τιμήν +ἐν +ἀποκαλύψει +Ἰησοῦ +Χριστοῦ +ὅν +οὐκ +ἰδόντες +ἀγαπᾶτε +δέ +εἰς +ὅν +ἄρτι +μή +ὁρῶντες +πιστεύοντες +ἀγαλλιᾶσθε +χαρᾷ +ἀνεκλαλήτῳ +καί +δεδοξασμένῃ +κομιζόμενοι +τό +τέλος +τῆς +πίστεως +σωτηρίαν +ψυχῶν +περί +ἧς +σωτηρίας +ἐξεζήτησαν +καί +ἐξηραύνησαν +προφῆται +οἱ +περί +τῆς +εἰς +ὑμᾶς +χάριτος +προφητεύσαντες +ἐραυνῶντες +εἰς +τίνα +ἤ +ποῖον +καιρόν +ἐδήλου +τό +ἐν +αὐτοῖς +Πνεῦμα +Χριστοῦ +προμαρτυρόμενον +τά +εἰς +Χριστόν +παθήματα +καί +τάς +μετά +ταῦτα +δόξας +οἷς +ἀπεκαλύφθη +ὅτι +οὐχ +ἑαυτοῖς +δέ +ὑμῖν +διηκόνουν +αὐτά +ἅ +νῦν +ἀνηγγέλη +ὑμῖν +διά +τῶν +εὐαγγελισαμένων +ὑμᾶς +ἐν +Πνεύματι +Ἁγίῳ +ἀποσταλέντι +ἀπ’ +οὐρανοῦ +εἰς +ἅ +παρακύψαι +ἐπιθυμοῦσιν +ἄγγελοι +Διό +ἀναζωσάμενοι +τάς +ὀσφύας +τῆς +διανοίας +ὑμῶν +νήφοντες +τελείως +ἐλπίσατε +ἐπί +τήν +φερομένην +ὑμῖν +χάριν +ἐν +ἀποκαλύψει +Ἰησοῦ +Χριστοῦ +ὡς +τέκνα +ὑπακοῆς +μή +συσχηματιζόμενοι +ταῖς +πρότερον +ἐν +τῇ +ἀγνοίᾳ +ὑμῶν +ἐπιθυμίαις +ἀλλά +κατά +τόν +καλέσαντα +ὑμᾶς +ἅγιον +καί +αὐτοί +ἅγιοι +ἐν +πάσῃ +ἀναστροφῇ +γενήθητε +διότι +γέγραπται +Ἅγιοι +ἔσεσθε +ὅτι +ἐγώ +ἅγιος +καί +εἰ +Πατέρα +ἐπικαλεῖσθε +τόν +ἀπροσωπολήμπτως +κρίνοντα +κατά +τό +ἑκάστου +ἔργον +ἐν +φόβῳ +τόν +τῆς +παροικίας +ὑμῶν +χρόνον +ἀναστράφητε +εἰδότες +ὅτι +οὐ +φθαρτοῖς +ἀργυρίῳ +ἤ +χρυσίῳ +ἐλυτρώθητε +ἐκ +τῆς +ματαίας +ὑμῶν +ἀναστροφῆς +πατροπαραδότου +ἀλλά +τιμίῳ +αἵματι +ὡς +ἀμνοῦ +ἀμώμου +καί +ἀσπίλου +Χριστοῦ +μέν +προεγνωσμένου +πρό +καταβολῆς +κόσμου +δέ +φανερωθέντος +ἐπ’ +ἐσχάτου +τῶν +χρόνων +δι’ +ὑμᾶς +τούς +δι’ +αὐτοῦ +πιστούς +εἰς +Θεόν +τόν +ἐγείραντα +αὐτόν +ἐκ +νεκρῶν +καί +δόξαν +αὐτῷ +δόντα +ὥστε +τήν +πίστιν +ὑμῶν +καί +ἐλπίδα +εἶναι +εἰς +Θεόν +Τάς +ψυχάς +ὑμῶν +ἡγνικότες +ἐν +τῇ +ὑπακοῇ +τῆς +ἀληθείας +εἰς +φιλαδελφίαν +ἀνυπόκριτον +ἐκ +καρδίας +ἀλλήλους +ἀγαπήσατε +ἐκτενῶς +ἀναγεγεννημένοι +οὐκ +ἐκ +σπορᾶς +φθαρτῆς +ἀλλά +ἀφθάρτου +διά +λόγου +Θεοῦ +ζῶντος +καί +μένοντος +διότι +πᾶσα +σάρξ +ὡς +χόρτος +καί +πᾶσα +δόξα +αὐτῆς +ὡς +ἄνθος +χόρτου +ἐξηράνθη +ὁ +χόρτος +καί +τό +ἄνθος +ἐξέπεσεν +δέ +τό +ῥῆμα +Κυρίου +μένει +εἰς +τόν +αἰῶνα +δέ +τοῦτο +ἐστιν +τό +ῥῆμα +τό +εὐαγγελισθέν +εἰς +ὑμᾶς +οὖν +Ἀποθέμενοι +πᾶσαν +κακίαν +καί +πάντα +δόλον +καί +ὑποκρίσεις +καί +φθόνους +καί +πάσας +καταλαλιάς +ὡς +ἀρτιγέννητα +βρέφη +τό +λογικόν +ἄδολον +γάλα +ἐπιποθήσατε +ἵνα +ἐν +αὐτῷ +αὐξηθῆτε +εἰς +σωτηρίαν +εἰ +ἐγεύσασθε +ὅτι +χρηστός +ὁ +Κύριος +προσερχόμενοι +πρός +ὅν +λίθον +ζῶντα +μέν +ὑπό +ἀνθρώπων +ἀποδεδοκιμασμένον +δέ +παρά +Θεῷ +ἐκλεκτόν +ἔντιμον +καί +αὐτοί +ὡς +λίθοι +ζῶντες +οἰκοδομεῖσθε +οἶκος +πνευματικός +εἰς +ἱεράτευμα +ἅγιον +ἀνενέγκαι +πνευματικάς +θυσίας +εὐπροσδέκτους +Θεῷ +διά +Ἰησοῦ +Χριστοῦ +διότι +περιέχει +ἐν +γραφῇ +Ἰδού +τίθημι +ἐν +Σιών +λίθον +ἐκλεκτόν +ἀκρογωνιαῖον +ἔντιμον +καί +ὁ +πιστεύων +ἐπ’ +αὐτῷ +οὐ +μή +καταισχυνθῇ +οὖν +ἡ +τιμή +ὑμῖν +τοῖς +πιστεύουσιν +δέ +ἀπιστοῦσιν +λίθος +ὅν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες +οὗτος +ἐγενήθη +εἰς +κεφαλήν +γωνίας +καί +λίθος +προσκόμματος +καί +πέτρα +σκανδάλου +οἵ +προσκόπτουσιν +τῷ +λόγῳ +ἀπειθοῦντες +εἰς +ὅ +καί +ἐτέθησαν +δέ +ὑμεῖς +γένος +ἐκλεκτόν +βασίλειον +ἱεράτευμα +ἔθνος +ἅγιον +λαός +εἰς +περιποίησιν +ὅπως +ἐξαγγείλητε +τάς +ἀρετάς +τοῦ +ἐκ +σκότους +ὑμᾶς +καλέσαντος +εἰς +τό +θαυμαστόν +αὐτοῦ +φῶς +οἵ +ποτε +οὐ +λαός +δέ +νῦν +λαός +Θεοῦ +οἱ +οὐκ +ἠλεημένοι +δέ +νῦν +ἐλεηθέντες +Ἀγαπητοί +παρακαλῶ +ὡς +παροίκους +καί +παρεπιδήμους +ἀπέχεσθαι +τῶν +σαρκικῶν +ἐπιθυμιῶν +αἵτινες +στρατεύονται +κατά +τῆς +ψυχῆς +τήν +ἀναστροφήν +ὑμῶν +ἐν +τοῖς +ἔθνεσιν +ἔχοντες +καλήν +ἵνα +ἐν +ᾧ +καταλαλοῦσιν +ὑμῶν +ὡς +κακοποιῶν +ἐκ +τῶν +καλῶν +ἔργων +ἐποπτεύοντες +δοξάσωσιν +τόν +Θεόν +ἐν +ἡμέρᾳ +ἐπισκοπῆς +Ὑποτάγητε +διά +τόν +Κύριον +πάσῃ +ἀνθρωπίνῃ +κτίσει +εἴτε +βασιλεῖ +ὡς +ὑπερέχοντι +εἴτε +ἡγεμόσιν +ὡς +δι’ +αὐτοῦ +πεμπομένοις +εἰς +ἐκδίκησιν +κακοποιῶν +δέ +ἔπαινον +ἀγαθοποιῶν +ὅτι +οὕτως +ἐστίν +τό +θέλημα +τοῦ +Θεοῦ +ἀγαθοποιοῦντας +φιμοῦν +τήν +τῶν +ἀφρόνων +ἀνθρώπων +ἀγνωσίαν +ὡς +ἐλεύθεροι +καί +μή +ὡς +ἔχοντες +ἐπικάλυμμα +τῆς +κακίας +τήν +ἐλευθερίαν +ἀλλ’ +ὡς +Θεοῦ +δοῦλοι +πάντας +τιμήσατε +τήν +ἀδελφότητα +ἀγαπᾶτε +τόν +Θεόν +φοβεῖσθε +τόν +βασιλέα +τιμᾶτε +Οἱ +οἰκέται +ὑποτασσόμενοι +ἐν +παντί +φόβῳ +τοῖς +δεσπόταις +οὐ +μόνον +τοῖς +ἀγαθοῖς +καί +ἐπιεικέσιν +ἀλλά +καί +τοῖς +σκολιοῖς +γάρ +τοῦτο +χάρις +εἰ +διά +συνείδησιν +Θεοῦ +ὑποφέρει +τις +λύπας +πάσχων +ἀδίκως +γάρ +ποῖον +κλέος +εἰ +ἁμαρτάνοντες +καί +κολαφιζόμενοι +ὑπομενεῖτε +ἀλλ’ +εἰ +ἀγαθοποιοῦντες +καί +πάσχοντες +ὑπομενεῖτε +τοῦτο +χάρις +παρά +Θεῷ +γάρ +εἰς +τοῦτο +ἐκλήθητε +ὅτι +καί +Χριστός +ἔπαθεν +ὑπέρ +ὑμῶν +ὑμῖν +ὑπολιμπάνων +ὑπογραμμόν +ἵνα +ἐπακολουθήσητε +τοῖς +ἴχνεσιν +αὐτοῦ +ὅς +ἁμαρτίαν +οὐκ +ἐποίησεν +οὐδέ +εὑρέθη +δόλος +ἐν +τῷ +στόματι +αὐτοῦ +ὅς +λοιδορούμενος +οὐκ +ἀντελοιδόρει +πάσχων +οὐκ +ἠπείλει +δέ +παρεδίδου +τῷ +κρίνοντι +δικαίως +ὅς +αὐτός +τάς +ἁμαρτίας +ἡμῶν +ἀνήνεγκεν +ἐν +τῷ +σώματι +αὐτοῦ +ἐπί +τό +ξύλον +ἵνα +ταῖς +ἁμαρτίαις +ἀπογενόμενοι +τῇ +δικαιοσύνῃ +ζήσωμεν +οὗ +τῷ +μώλωπι +ἰάθητε +γάρ +ἦτε +ὡς +πρόβατα +πλανώμενοι +ἀλλά +ἐπεστράφητε +νῦν +ἐπί +τόν +Ποιμένα +καί +Ἐπίσκοπον +τῶν +ψυχῶν +ὑμῶν +γυναῖκες +Ὁμοίως +ὑποτασσόμεναι +τοῖς +ἰδίοις +ἀνδράσιν +ἵνα +εἴ +καί +τινες +ἀπειθοῦσιν +τῷ +λόγῳ +διά +τῆς +τῶν +γυναικῶν +ἀναστροφῆς +ἄνευ +λόγου +κερδηθήσονται +ἐποπτεύσαντες +τήν +ἐν +φόβῳ +ἁγνήν +ἀναστροφήν +ὑμῶν +ὧν +ἔστω +οὐχ +ὁ +ἔξωθεν +ἐμπλοκῆς +τριχῶν +καί +περιθέσεως +χρυσίων +ἤ +ἐνδύσεως +ἱματίων +κόσμος +ἀλλ’ +ὁ +κρυπτός +τῆς +καρδίας +ἄνθρωπος +ἐν +τῷ +ἀφθάρτῳ +τοῦ +πραέως +καί +ἡσυχίου +πνεύματος +ὅ +ἐστιν +ἐνώπιον +τοῦ +Θεοῦ +πολυτελές +γάρ +οὕτως +ποτε +καί +αἱ +ἅγιαι +γυναῖκες +αἱ +ἐλπίζουσαι +εἰς +Θεόν +ἐκόσμουν +ἑαυτάς +ὑποτασσόμεναι +τοῖς +ἰδίοις +ἀνδράσιν +ὡς +Σάρρα +ὑπήκουσεν +τῷ +Ἀβραάμ +κύριον +αὐτόν +καλοῦσα +ἧς +τέκνα +ἐγενήθητε +ἀγαθοποιοῦσαι +καί +μή +φοβούμεναι +μηδεμίαν +πτόησιν +Οἱ +ἄνδρες +ὁμοίως +συνοικοῦντες +κατά +γνῶσιν +ὡς +ἀσθενεστέρῳ +σκεύει +τῷ +γυναικείῳ +ἀπονέμοντες +τιμήν +ὡς +καί +συνκληρονόμοις +χάριτος +ζωῆς +εἰς +τό +μή +ἐνκόπτεσθαι +τάς +προσευχάς +ὑμῶν +δέ +Τό +τέλος +πάντες +ὁμόφρονες +συμπαθεῖς +φιλάδελφοι +εὔσπλαγχνοι +ταπεινόφρονες +μή +ἀποδιδόντες +κακόν +ἀντί +κακοῦ +ἤ +λοιδορίαν +ἀντί +λοιδορίας +δέ +τοὐναντίον +εὐλογοῦντες +ὅτι +εἰς +τοῦτο +ἐκλήθητε +ἵνα +εὐλογίαν +κληρονομήσητε +γάρ +ὁ +θέλων +ζωήν +ἀγαπᾶν +καί +ἰδεῖν +ἡμέρας +ἀγαθάς +παυσάτω +τήν +γλῶσσαν +ἀπό +κακοῦ +καί +χείλη +τοῦ +μή +λαλῆσαι +δόλον +δέ +ἐκκλινάτω +ἀπό +κακοῦ +καί +ποιησάτω +ἀγαθόν +ζητησάτω +εἰρήνην +καί +διωξάτω +αὐτήν +ὅτι +ὀφθαλμοί +Κυρίου +ἐπί +δικαίους +καί +ὦτα +αὐτοῦ +εἰς +δέησιν +αὐτῶν +δέ +πρόσωπον +Κυρίου +ἐπί +ποιοῦντας +κακά +Καί +τίς +ὁ +κακώσων +ὑμᾶς +ἐάν +τοῦ +ἀγαθοῦ +ζηλωταί +γένησθε +ἀλλ’ +εἰ +καί +πάσχοιτε +διά +δικαιοσύνην +μακάριοι +δέ +τόν +φόβον +αὐτῶν +μή +φοβηθῆτε +μηδέ +ταραχθῆτε +δέ +Κύριον +τόν +Χριστόν +ἁγιάσατε +ἐν +ταῖς +καρδίαις +ὑμῶν +ἕτοιμοι +ἀεί +πρός +ἀπολογίαν +παντί +τῷ +αἰτοῦντι +ὑμᾶς +λόγον +περί +τῆς +ἐν +ὑμῖν +ἐλπίδος +ἀλλά +μετά +πραΰτητος +καί +φόβου +συνείδησιν +ἀγαθήν +ἔχοντες +ἵνα +ἐν +ᾧ +καταλαλεῖσθε +καταισχυνθῶσιν +οἱ +ἐπηρεάζοντες +ὑμῶν +τήν +ἀγαθήν +ἐν +Χριστῷ +ἀναστροφήν +γάρ +κρεῖττον +ἀγαθοποιοῦντας +εἰ +θέλοι +τό +θέλημα +τοῦ +Θεοῦ +πάσχειν +ἤ +κακοποιοῦντας +ὅτι +καί +Χριστός +ἅπαξ +περί +ἁμαρτιῶν +ἀπέθανεν +δίκαιος +ὑπέρ +ἀδίκων +ἵνα +ὑμᾶς +προσαγάγῃ +τῷ +Θεῷ +μέν +θανατωθείς +σαρκί +δέ +ζωοποιηθείς +πνεύματι +ἐν +ᾧ +πορευθείς +ἐκήρυξεν +καί +τοῖς +ἐν +φυλακῇ +πνεύμασιν +ἀπειθήσασιν +ποτε +ὅτε +ἀπεξεδέχετο +ἡ +τοῦ +Θεοῦ +μακροθυμία +ἐν +ἡμέραις +Νῶε +κατασκευαζομένης +κιβωτοῦ +εἰς +ἥν +ὀλίγοι +τοῦτ’ +ἔστιν +ὀκτώ +ψυχαί +διεσώθησαν +δι’ +ὕδατος +ὅ +καί +ὑμᾶς +νῦν +σῴζει +ἀντίτυπον +βάπτισμα +οὐ +σαρκός +ἀπόθεσις +ῥύπου +ἀλλά +συνειδήσεως +ἀγαθῆς +ἐπερώτημα +εἰς +Θεόν +δι’ +ἀναστάσεως +Ἰησοῦ +Χριστοῦ +ὅς +ἐστιν +ἐν +δεξιᾷ +Θεοῦ +πορευθείς +εἰς +οὐρανόν +ὑποταγέντων +αὐτῷ +ἀγγέλων +καί +ἐξουσιῶν +καί +δυνάμεων +οὖν +Χριστοῦ +παθόντος +σαρκί +καί +ὑμεῖς +τήν +αὐτήν +ἔννοιαν +ὁπλίσασθε +εἰς +τό +μηκέτι +ἀνθρώπων +ἐπιθυμίαις +ἀλλά +θελήματι +Θεοῦ +τόν +ἐπίλοιπον +ἐν +σαρκί +χρόνον +βιῶσαι +ὅτι +ὁ +παθών +σαρκί +πέπαυται +ἁμαρτίας +γάρ +ἀρκετός +ὁ +παρεληλυθώς +χρόνος +τό +βούλημα +τῶν +ἐθνῶν +κατειργάσθαι +πεπορευμένους +ἐν +ἀσελγείαις +ἐπιθυμίαις +οἰνοφλυγίαις +κώμοις +πότοις +καί +ἀθεμίτοις +εἰδωλολατρείαις +ἐν +ᾧ +ξενίζονται +μή +συντρεχόντων +ὑμῶν +εἰς +τήν +αὐτήν +τῆς +ἀσωτίας +ἀνάχυσιν +βλασφημοῦντες +οἵ +ἀποδώσουσιν +λόγον +τῷ +ἑτοίμως +ἔχοντι +κρῖναι +ζῶντας +καί +νεκρούς +γάρ +εἰς +τοῦτο +καί +νεκροῖς +εὐηγγελίσθη +ἵνα +μέν +κριθῶσι +κατά +ἀνθρώπους +σαρκί +δέ +ζῶσι +κατά +Θεόν +πνεύματι +δέ +Πάντων +τό +τέλος +ἤγγικεν +οὖν +σωφρονήσατε +καί +νήψατε +εἰς +προσευχάς +πρό +πάντων +τήν +εἰς +ἑαυτούς +ἀγάπην +ἐκτενῆ +ἔχοντες +ὅτι +ἀγάπη +καλύπτει +πλῆθος +ἁμαρτιῶν +φιλόξενοι +εἰς +ἀλλήλους +ἄνευ +γογγυσμοῦ +ἕκαστος +καθώς +ἔλαβεν +χάρισμα +εἰς +ἑαυτούς +αὐτό +διακονοῦντες +ὡς +καλοί +οἰκονόμοι +ποικίλης +χάριτος +Θεοῦ +εἴ +τις +λαλεῖ +ὡς +λόγια +Θεοῦ +εἴ +τις +διακονεῖ +ὡς +ἐξ +ἰσχύος +ἧς +χορηγεῖ +ὁ +Θεός +ἵνα +ἐν +πᾶσιν +δοξάζηται +ὁ +Θεός +διά +Ἰησοῦ +Χριστοῦ +ᾧ +ἐστιν +ἡ +δόξα +καί +τό +κράτος +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Ἀγαπητοί +μή +ξενίζεσθε +τῇ +ἐν +ὑμῖν +πυρώσει +πρός +πειρασμόν +ὑμῖν +γινομένῃ +ὡς +ξένου +ὑμῖν +συμβαίνοντος +ἀλλά +καθό +κοινωνεῖτε +τοῖς +τοῦ +Χριστοῦ +παθήμασιν +χαίρετε +ἵνα +καί +ἐν +τῇ +ἀποκαλύψει +τῆς +δόξης +αὐτοῦ +χαρῆτε +ἀγαλλιώμενοι +εἰ +ὀνειδίζεσθε +ἐν +ὀνόματι +Χριστοῦ +μακάριοι +ὅτι +τό +τῆς +δόξης +καί +τό +τοῦ +Θεοῦ +Πνεῦμα +ἐφ’ +ὑμᾶς +ἀναπαύεται +γάρ +μή +τις +ὑμῶν +πασχέτω +ὡς +φονεύς +ἤ +κλέπτης +ἤ +κακοποιός +ἤ +ὡς +ἀλλοτριεπίσκοπος +δέ +εἰ +ὡς +Χριστιανός +μή +αἰσχυνέσθω +δέ +δοξαζέτω +τόν +Θεόν +ἐν +τῷ +ὀνόματι +τούτῳ +ὅτι +ὁ +καιρός +τοῦ +ἄρξασθαι +τό +κρίμα +ἀπό +τοῦ +οἴκου +τοῦ +Θεοῦ +δέ +εἰ +πρῶτον +ἀφ’ +ἡμῶν +τί +τό +τέλος +τῶν +ἀπειθούντων +τῷ +τοῦ +Θεοῦ +εὐαγγελίῳ +καί +εἰ +ὁ +δίκαιος +μόλις +σώζεται +ὁ +ἀσεβής +καί +ἁμαρτωλός +ποῦ +φανεῖται +ὥστε +καί +οἱ +πάσχοντες +κατά +τό +θέλημα +τοῦ +Θεοῦ +πιστῷ +Κτίστῃ +παρατιθέσθωσαν +τάς +ψυχάς +αὐτῶν +ἐν +ἀγαθοποιΐᾳ +οὖν +Πρεσβυτέρους +ἐν +ὑμῖν +παρακαλῶ +ὁ +συνπρεσβύτερος +καί +μάρτυς +τῶν +τοῦ +Χριστοῦ +παθημάτων +καί +ὁ +τῆς +μελλούσης +ἀποκαλύπτεσθαι +δόξης +κοινωνός +ποιμάνατε +τό +ἐν +ὑμῖν +ποίμνιον +τοῦ +Θεοῦ +μή +ἀναγκαστῶς +ἀλλά +ἑκουσίως +κατά +Θεόν +μηδέ +αἰσχροκερδῶς +ἀλλά +προθύμως +μηδ’ +ὡς +κατακυριεύοντες +τῶν +κλήρων +ἀλλά +γινόμενοι +τύποι +τοῦ +ποιμνίου +καί +φανερωθέντος +τοῦ +Ἀρχιποίμενος +κομιεῖσθε +τόν +ἀμαράντινον +τῆς +δόξης +στέφανον +νεώτεροι +Ὁμοίως +ὑποτάγητε +πρεσβυτέροις +δέ +πάντες +ἀλλήλοις +τήν +ταπεινοφροσύνην +ἐγκομβώσασθε +ὅτι +ὁ +Θεός +ὑπερηφάνοις +ἀντιτάσσεται +δέ +ταπεινοῖς +δίδωσιν +χάριν +οὖν +Ταπεινώθητε +ὑπό +τήν +κραταιάν +χεῖρα +τοῦ +Θεοῦ +ἵνα +ὑμᾶς +ὑψώσῃ +ἐν +καιρῷ +πᾶσαν +τήν +μέριμναν +ὑμῶν +ἐπιρίψαντες +ἐπ’ +αὐτόν +ὅτι +αὐτῷ +μέλει +περί +ὑμῶν +Νήψατε +γρηγορήσατε +ὁ +ἀντίδικος +ὑμῶν +διάβολος +ὡς +λέων +ὠρυόμενος +περιπατεῖ +ζητῶν +τινα +καταπιεῖν +ᾧ +ἀντίστητε +στερεοί +τῇ +πίστει +εἰδότες +τά +αὐτά +τῶν +παθημάτων +τῇ +ἐν +τῷ +κόσμῳ +ὑμῶν +ἀδελφότητι +ἐπιτελεῖσθαι +δέ +Ὁ +Θεός +πάσης +χάριτος +ὁ +καλέσας +ὑμᾶς +εἰς +τήν +αἰώνιον +αὐτοῦ +δόξαν +ἐν +Χριστῷ +ὀλίγον +παθόντας +αὐτός +καταρτίσει +στηρίξει +σθενώσει +θεμελιώσει +αὐτῷ +τό +κράτος +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +ὑμῖν +Διά +Σιλουανοῦ +τοῦ +πιστοῦ +ἀδελφοῦ +ὡς +λογίζομαι +δι’ +ὀλίγων +ἔγραψα +παρακαλῶν +καί +ἐπιμαρτυρῶν +ταύτην +εἶναι +ἀληθῆ +χάριν +τοῦ +Θεοῦ +εἰς +ἥν +στῆτε +Ἀσπάζεται +ὑμᾶς +ἡ +ἐν +Βαβυλῶνι +συνεκλεκτή +καί +Μάρκος +ὁ +υἱός +μου +ἀσπάσασθε +ἀλλήλους +ἐν +φιλήματι +ἀγάπης +Εἰρήνη +ὑμῖν +πᾶσιν +τοῖς +ἐν +Χριστῷ +Συμεών +Πέτρος +δοῦλος +καί +ἀπόστολος +Ἰησοῦ +Χριστοῦ +τοῖς +ἡμῖν +λαχοῦσιν +ἰσότιμον +πίστιν +ἐν +δικαιοσύνῃ +τοῦ +Θεοῦ +ἡμῶν +καί +Σωτῆρος +Ἰησοῦ +Χριστοῦ +χάρις +καί +εἰρήνη +ὑμῖν +πληθυνθείη +ἐν +ἐπιγνώσει +τοῦ +Θεοῦ +καί +Ἰησοῦ +τοῦ +Κυρίου +ἡμῶν +Ὡς +ἡμῖν +τῆς +θείας +δυνάμεως +αὐτοῦ +τά +πάντα +τά +πρός +ζωήν +καί +εὐσέβειαν +δεδωρημένης +διά +τῆς +ἐπιγνώσεως +τοῦ +καλέσαντος +ἡμᾶς +ἰδίᾳ +δόξῃ +καί +ἀρετῇ +δι’ +ὧν +τά +τίμια +καί +μέγιστα +ἐπαγγέλματα +ἡμῖν +δεδώρηται +ἵνα +διά +τούτων +γένησθε +κοινωνοί +θείας +φύσεως +ἀποφυγόντες +τῆς +ἐν +τῷ +κόσμῳ +ἐν +ἐπιθυμίᾳ +φθορᾶς +δέ +καί +αὐτό +τοῦτο +σπουδήν +πᾶσαν +παρεισενέγκαντες +ἐπιχορηγήσατε +ἐν +τῇ +πίστει +ὑμῶν +τήν +ἀρετήν +δέ +ἐν +τῇ +ἀρετῇ +τήν +γνῶσιν +δέ +ἐν +τῇ +γνώσει +τήν +ἐγκράτειαν +δέ +ἐν +τῇ +ἐγκρατείᾳ +τήν +ὑπομονήν +δέ +ἐν +τῇ +ὑπομονῇ +τήν +εὐσέβειαν +δέ +ἐν +τῇ +εὐσεβείᾳ +τήν +φιλαδελφίαν +δέ +ἐν +τῇ +φιλαδελφίᾳ +τήν +ἀγάπην +γάρ +ταῦτα +ὑμῖν +ὑπάρχοντα +καί +πλεονάζοντα +οὐκ +ἀργούς +οὐδέ +ἀκάρπους +καθίστησιν +εἰς +τήν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἐπίγνωσιν +γάρ +ᾧ +μή +πάρεστιν +ταῦτα +τυφλός +ἐστιν +μυωπάζων +λαβών +λήθην +τοῦ +καθαρισμοῦ +τῶν +πάλαι +αὐτοῦ +ἁμαρτιῶν +διό +ἀδελφοί +μᾶλλον +σπουδάσατε +βεβαίαν +ὑμῶν +τήν +κλῆσιν +καί +ἐκλογήν +ποιεῖσθαι +γάρ +ταῦτα +ποιοῦντες +οὐ +μή +πταίσητε +ποτε +γάρ +οὕτως +πλουσίως +ἐπιχορηγηθήσεται +ὑμῖν +ἡ +εἴσοδος +εἰς +τήν +αἰώνιον +βασιλείαν +τοῦ +Κυρίου +ἡμῶν +καί +Σωτῆρος +Ἰησοῦ +Χριστοῦ +Διό +μελλήσω +ἀεί +ὑμᾶς +ὑπομιμνῄσκειν +περί +τούτων +καίπερ +εἰδότας +καί +ἐστηριγμένους +ἐν +τῇ +παρούσῃ +ἀληθείᾳ +δέ +δίκαιον +ἡγοῦμαι +ἐφ’ +ὅσον +εἰμί +ἐν +τούτῳ +τῷ +σκηνώματι +διεγείρειν +ὑμᾶς +ἐν +ὑπομνήσει +εἰδώς +ὅτι +ταχινή +ἐστιν +ἡ +ἀπόθεσις +τοῦ +σκηνώματος +μου +καθώς +καί +ὁ +Κύριος +ἡμῶν +Ἰησοῦς +Χριστός +ἐδήλωσεν +μοι +δέ +σπουδάσω +καί +ἑκάστοτε +ἔχειν +ὑμᾶς +μετά +τήν +ἐμήν +ἔξοδον +τήν +τούτων +μνήμην +ποιεῖσθαι +γάρ +οὐ +σεσοφισμένοις +μύθοις +ἐξακολουθήσαντες +ἐγνωρίσαμεν +ὑμῖν +τήν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +δύναμιν +καί +παρουσίαν +ἀλλ’ +γενηθέντες +ἐπόπται +τῆς +ἐκείνου +μεγαλειότητος +γάρ +λαβών +παρά +Θεοῦ +Πατρός +τιμήν +καί +δόξαν +φωνῆς +τοιᾶσδε +ἐνεχθείσης +αὐτῷ +ὑπό +τῆς +μεγαλοπρεποῦς +δόξης +Ὁ +Υἱός +μου +ὁ +ἀγαπητός +μου +οὗτος +ἐστιν +εἰς +ὅν +ἐγώ +εὐδόκησα +καί +ταύτην +τήν +φωνήν +ἡμεῖς +ἠκούσαμεν +ἐξ +οὐρανοῦ +ἐνεχθεῖσαν +σύν +αὐτῷ +ὄντες +ἐν +τῷ +ἁγίῳ +ὄρει +καί +ἔχομεν +βεβαιότερον +τόν +προφητικόν +λόγον +καλῶς +ποιεῖτε +ᾧ +προσέχοντες +ὡς +λύχνῳ +φαίνοντι +ἐν +αὐχμηρῷ +τόπῳ +ἕως +οὗ +ἡμέρα +διαυγάσῃ +καί +φωσφόρος +ἀνατείλῃ +ἐν +ταῖς +καρδίαις +ὑμῶν +τοῦτο +πρῶτον +γινώσκοντες +ὅτι +πᾶσα +προφητεία +γραφῆς +ἰδίας +ἐπιλύσεως +οὐ +γίνεται +γάρ +οὐ +θελήματι +ἀνθρώπου +ἠνέχθη +προφητεία +ποτέ +ἀλλά +ὑπό +Πνεύματος +Ἁγίου +φερόμενοι +ἐλάλησαν +ἀπό +Θεοῦ +ἄνθρωποι +δέ +Ἐγένοντο +καί +ψευδοπροφῆται +ἐν +τῷ +λαῷ +ὡς +καί +ἐν +ὑμῖν +ἔσονται +ψευδοδιδάσκαλοι +οἵτινες +παρεισάξουσιν +αἱρέσεις +ἀπωλείας +καί +τόν +ἀγοράσαντα +αὐτούς +δεσπότην +ἀρνούμενοι +ἐπάγοντες +ἑαυτοῖς +ταχινήν +ἀπώλειαν +καί +πολλοί +ἐξακολουθήσουσιν +αὐτῶν +ταῖς +ἀσελγείαις +δι’ +οὕς +ἡ +ὁδός +τῆς +ἀληθείας +βλασφημηθήσεται +καί +ἐν +πλεονεξίᾳ +πλαστοῖς +λόγοις +ὑμᾶς +ἐμπορεύσονται +οἷς +τό +κρίμα +ἔκπαλαι +οὐκ +ἀργεῖ +καί +ἡ +ἀπώλεια +αὐτῶν +οὐ +νυστάζει +γάρ +εἰ +ὁ +Θεός +ἀγγέλων +ἁμαρτησάντων +οὐκ +ἐφείσατο +ἀλλά +σειροῖς +ζόφου +ταρταρώσας +παρέδωκεν +εἰς +κρίσιν +τηρουμένους +καί +ἀρχαίου +κόσμου +οὐκ +ἐφείσατο +ἀλλά +ὄγδοον +Νῶε +δικαιοσύνης +κήρυκα +ἐφύλαξεν +κατακλυσμόν +κόσμῳ +ἀσεβῶν +ἐπάξας +καί +πόλεις +Σοδόμων +καί +Γομόρρας +τεφρώσας +καταστροφῇ +κατέκρινεν +ὑπόδειγμα +μελλόντων +ἀσεβεῖν +τεθεικώς +καί +δίκαιον +Λώτ +καταπονούμενον +ὑπό +τῆς +τῶν +ἀθέσμων +ἐν +ἀσελγείᾳ +ἀναστροφῆς +ἐρύσατο +γάρ +βλέμματι +καί +ἀκοῇ +ὁ +δίκαιος +ἐνκατοικῶν +ἐν +αὐτοῖς +ἡμέραν +ἐξ +ἡμέρας +ψυχήν +δικαίαν +ἀνόμοις +ἔργοις +ἐβασάνιζεν +οἶδεν +Κύριος +εὐσεβεῖς +ἐκ +πειρασμοῦ +ῥύεσθαι +δέ +ἀδίκους +εἰς +ἡμέραν +κρίσεως +κολαζομένους +τηρεῖν +δέ +μάλιστα +τούς +ὀπίσω +σαρκός +ἐν +ἐπιθυμίᾳ +μιασμοῦ +πορευομένους +καί +κυριότητος +καταφρονοῦντας +τολμηταί +αὐθάδεις +δόξας +βλασφημοῦντες +οὐ +τρέμουσιν +ὅπου +ἄγγελοι +ἰσχύϊ +καί +δυνάμει +μείζονες +ὄντες +οὐ +φέρουσιν +κατ’ +αὐτῶν +παρά +Κυρίῳ +βλάσφημον +κρίσιν +δέ +οὗτοι +ὡς +ἄλογα +ζῷα +γεγεννημένα +φυσικά +εἰς +ἅλωσιν +καί +φθοράν +ἐν +οἷς +ἀγνοοῦσιν +βλασφημοῦντες +ἐν +τῇ +φθορᾷ +αὐτῶν +καί +φθαρήσονται +ἀδικούμενοι +μισθόν +ἀδικίας +ἡδονήν +ἡγούμενοι +τήν +ἐν +ἡμέρᾳ +τρυφήν +σπίλοι +καί +μῶμοι +ἐντρυφῶντες +ἐν +ταῖς +ἀπάταις +αὐτῶν +συνευωχούμενοι +ὑμῖν +ἔχοντες +ὀφθαλμούς +μεστούς +μοιχαλίδος +καί +ἀκαταπαύστους +ἁμαρτίας +δελεάζοντες +ψυχάς +ἀστηρίκτους +καρδίαν +γεγυμνασμένην +πλεονεξίας +ἔχοντες +κατάρας +τέκνα +καταλειπόντες +εὐθεῖαν +ὁδόν +ἐπλανήθησαν +ἐξακολουθήσαντες +τῇ +ὁδῷ +τοῦ +Βαλαάμ +τοῦ +Βεώρ +ὅς +μισθόν +ἀδικίας +ἠγάπησεν +δέ +ἔλεγξιν +ἰδίας +παρανομίας +ἔσχεν +ὑποζύγιον +ἄφωνον +ἐν +ἀνθρώπου +φωνῇ +φθεγξάμενον +ἐκώλυσεν +τήν +τοῦ +προφήτου +παραφρονίαν +οὗτοι +εἰσιν +πηγαί +ἄνυδροι +καί +ὁμίχλαι +ὑπό +λαίλαπος +ἐλαυνόμεναι +οἷς +ὁ +ζόφος +τοῦ +σκότους +τετήρηται +γάρ +ὑπέρογκα +ματαιότητος +φθεγγόμενοι +δελεάζουσιν +ἐν +ἐπιθυμίαις +σαρκός +ἀσελγείαις +τούς +ὀλίγως +ἀποφεύγοντας +τούς +ἐν +πλάνῃ +ἀναστρεφομένους +ἐλευθερίαν +αὐτοῖς +ἐπαγγελλόμενοι +αὐτοί +ὑπάρχοντες +δοῦλοι +τῆς +φθορᾶς +γάρ +ᾧ +τις +ἥττηται +τούτῳ +δεδούλωται +γάρ +εἰ +ἀποφυγόντες +τά +μιάσματα +τοῦ +κόσμου +ἐν +ἐπιγνώσει +τοῦ +Κυρίου +καί +Σωτῆρος +Ἰησοῦ +Χριστοῦ +δέ +τούτοις +πάλιν +ἐμπλακέντες +ἡττῶνται +γέγονεν +αὐτοῖς +τά +ἔσχατα +χείρονα +τῶν +πρώτων +γάρ +κρεῖττον +ἦν +αὐτοῖς +μή +ἐπεγνωκέναι +τήν +ὁδόν +τῆς +δικαιοσύνης +ἤ +ἐπιγνοῦσιν +ὑποστρέψαι +ἐκ +τῆς +παραδοθείσης +αὐτοῖς +ἁγίας +ἐντολῆς +συμβέβηκεν +αὐτοῖς +τό +τῆς +ἀληθοῦς +παροιμίας +Κύων +ἐπιστρέψας +ἐπί +τό +ἴδιον +ἐξέραμα +καί +Ὗς +λουσαμένη +εἰς +κυλισμόν +βορβόρου +ἀγαπητοί +ἤδη +Ταύτην +δευτέραν +ἐπιστολήν +ὑμῖν +γράφω +ἐν +αἷς +διεγείρω +ἐν +ὑπομνήσει +ὑμῶν +τήν +εἰλικρινῆ +διάνοιαν +μνησθῆναι +τῶν +προειρημένων +ὑπό +τῶν +ἁγίων +προφητῶν +ῥημάτων +καί +τῆς +τῶν +ἀποστόλων +ὑμῶν +ἐντολῆς +τοῦ +Κυρίου +καί +Σωτῆρος +τοῦτο +πρῶτον +γινώσκοντες +ὅτι +ἐλεύσονται +ἐπ’ +ἐσχάτων +τῶν +ἡμερῶν +ἐν +ἐμπαιγμονῇ +ἐμπαῖκται +κατά +τάς +ἰδίας +ἐπιθυμίας +αὐτῶν +πορευόμενοι +καί +λέγοντες +Ποῦ +ἐστιν +ἡ +ἐπαγγελία +τῆς +παρουσίας +αὐτοῦ +γάρ +ἀφ’ +ἧς +οἱ +πατέρες +ἐκοιμήθησαν +πάντα +οὕτως +διαμένει +ἀπ’ +ἀρχῆς +κτίσεως +γάρ +λανθάνει +αὐτούς +τοῦτο +θέλοντας +ὅτι +οὐρανοί +ἦσαν +ἔκπαλαι +καί +γῆ +ἐξ +ὕδατος +καί +δι’ +ὕδατος +συνεστῶσα +τῷ +τοῦ +Θεοῦ +λόγῳ +δι’ +ὧν +ὁ +τότε +κόσμος +ὕδατι +κατακλυσθείς +ἀπώλετο +δέ +οἱ +νῦν +οὐρανοί +καί +ἡ +γῆ +τῷ +αὐτῷ +λόγῳ +τεθησαυρισμένοι +εἰσίν +πυρί +τηρούμενοι +εἰς +ἡμέραν +κρίσεως +καί +ἀπωλείας +τῶν +ἀσεβῶν +ἀνθρώπων +δέ +ἀγαπητοί +Ἕν +τοῦτο +μή +λανθανέτω +ὑμᾶς +ὅτι +μία +ἡμέρα +παρά +Κυρίῳ +ὡς +χίλια +ἔτη +καί +χίλια +ἔτη +ὡς +ἡμέρα +μία +οὐ +βραδύνει +Κύριος +τῆς +ἐπαγγελίας +ὥς +τινες +βραδύτητα +ἡγοῦνται +ἀλλά +μακροθυμεῖ +εἰς +ὑμᾶς +βουλόμενος +μή +τινας +ἀπολέσθαι +ἀλλά +πάντας +εἰς +μετάνοιαν +χωρῆσαι +δέ +Ἥξει +ἡμέρα +Κυρίου +ὡς +κλέπτης +ἐν +ᾗ +οἱ +οὐρανοί +ῥοιζηδόν +παρελεύσονται +δέ +στοιχεῖα +καυσούμενα +λυθήσεται +καί +γῆ +καί +τά +ἐν +αὐτῇ +ἔργα +εὑρεθήσεται +οὕτως +Τούτων +πάντων +λυομένων +δεῖ +ποταπούς +ὑπάρχειν +ὑμᾶς +ἐν +ἁγίαις +ἀναστροφαῖς +καί +εὐσεβείαις +προσδοκῶντας +καί +σπεύδοντας +τήν +παρουσίαν +τῆς +τοῦ +Θεοῦ +ἡμέρας +δι’ +ἥν +οὐρανοί +πυρούμενοι +λυθήσονται +καί +στοιχεῖα +καυσούμενα +τήκεται +δέ +καινούς +οὐρανούς +καί +γῆν +καινήν +κατά +τό +ἐπάγγελμα +αὐτοῦ +προσδοκῶμεν +ἐν +οἷς +δικαιοσύνη +κατοικεῖ +Διό +ἀγαπητοί +ταῦτα +προσδοκῶντες +σπουδάσατε +ἄσπιλοι +καί +ἀμώμητοι +αὐτῷ +εὑρεθῆναι +ἐν +εἰρήνῃ +καί +τήν +τοῦ +Κυρίου +ἡμῶν +μακροθυμίαν +σωτηρίαν +ἡγεῖσθε +καθώς +καί +ὁ +ἀγαπητός +ἡμῶν +ἀδελφός +Παῦλος +κατά +τήν +δοθεῖσαν +αὐτῷ +σοφίαν +ἔγραψεν +ὑμῖν +ὡς +καί +ἐν +πάσαις +ἐπιστολαῖς +λαλῶν +ἐν +αὐταῖς +περί +τούτων +ἐν +αἷς +ἐστιν +δυσνόητα +τινα +ἅ +οἱ +ἀμαθεῖς +καί +ἀστήρικτοι +στρεβλοῦσιν +ὡς +καί +τάς +λοιπάς +γραφάς +πρός +τήν +ἰδίαν +αὐτῶν +ἀπώλειαν +οὖν +ἀγαπητοί +Ὑμεῖς +προγινώσκοντες +φυλάσσεσθε +ἵνα +μή +τῇ +τῶν +ἀθέσμων +πλάνῃ +συναπαχθέντες +ἐκπέσητε +τοῦ +ἰδίου +στηριγμοῦ +δέ +αὐξάνετε +ἐν +χάριτι +καί +γνώσει +τοῦ +Κυρίου +ἡμῶν +καί +Σωτῆρος +Ἰησοῦ +Χριστοῦ +αὐτῷ +ἡ +δόξα +καί +νῦν +καί +εἰς +ἡμέραν +αἰῶνος +Ὅ +ἦν +ἀπ’ +ἀρχῆς +ὅ +ἀκηκόαμεν +ὅ +ἑωράκαμεν +τοῖς +ὀφθαλμοῖς +ἡμῶν +ὅ +ἐθεασάμεθα +καί +αἱ +χεῖρες +ἡμῶν +ἐψηλάφησαν +περί +τοῦ +Λόγου +τῆς +ζωῆς +καί +ἡ +ζωή +ἐφανερώθη +καί +ἑωράκαμεν +καί +μαρτυροῦμεν +καί +ἀπαγγέλλομεν +ὑμῖν +τήν +ζωήν +τήν +αἰώνιον +ἥτις +ἦν +πρός +τόν +Πατέρα +καί +ἐφανερώθη +ἡμῖν +ὅ +ἑωράκαμεν +καί +ἀκηκόαμεν +ἀπαγγέλλομεν +καί +ὑμῖν +ἵνα +καί +ὑμεῖς +κοινωνίαν +ἔχητε +μεθ’ +ἡμῶν +δέ +καί +ἡ +κοινωνία +ἡ +ἡμετέρα +μετά +τοῦ +Πατρός +καί +μετά +τοῦ +Υἱοῦ +αὐτοῦ +Ἰησοῦ +Χριστοῦ +καί +ταῦτα +γράφομεν +ἡμεῖς +ἵνα +ἡ +χαρά +ἡμῶν +ᾖ +πεπληρωμένη +Καί +ἔστιν +αὕτη +ἡ +ἀγγελία +ἥν +ἀκηκόαμεν +ἀπ’ +αὐτοῦ +καί +ἀναγγέλλομεν +ὑμῖν +ὅτι +ὁ +Θεός +φῶς +ἐστιν +καί +ἐν +αὐτῷ +οὐκ +ἔστιν +σκοτία +οὐδεμία +Ἐάν +εἴπωμεν +ὅτι +κοινωνίαν +ἔχομεν +μετ’ +αὐτοῦ +καί +ἐν +τῷ +σκότει +περιπατῶμεν +ψευδόμεθα +καί +οὐ +ποιοῦμεν +τήν +ἀλήθειαν +δέ +ἐάν +ἐν +τῷ +φωτί +περιπατῶμεν +ὡς +αὐτός +ἐστιν +ἐν +τῷ +φωτί +κοινωνίαν +ἔχομεν +μετ’ +ἀλλήλων +καί +τό +αἷμα +Ἰησοῦ +τοῦ +Υἱοῦ +αὐτοῦ +καθαρίζει +ἡμᾶς +ἀπό +πάσης +ἁμαρτίας +ἐάν +εἴπωμεν +ὅτι +ἁμαρτίαν +οὐκ +ἔχομεν +ἑαυτούς +πλανῶμεν +καί +ἡ +ἀλήθεια +οὐκ +ἔστιν +ἐν +ἡμῖν +ἐάν +ὁμολογῶμεν +τάς +ἁμαρτίας +ἡμῶν +ἐστιν +πιστός +καί +δίκαιος +ἵνα +ἀφῇ +ἡμῖν +τάς +ἁμαρτίας +καί +καθαρίσῃ +ἡμᾶς +ἀπό +πάσης +ἀδικίας +ἐάν +εἴπωμεν +ὅτι +οὐχ +ἡμαρτήκαμεν +ψεύστην +ποιοῦμεν +αὐτόν +καί +ὁ +λόγος +αὐτοῦ +οὐκ +ἔστιν +ἐν +ἡμῖν +Τεκνία +μου +ταῦτα +γράφω +ὑμῖν +ἵνα +μή +ἁμάρτητε +καί +ἐάν +τις +ἁμάρτῃ +ἔχομεν +πρός +τόν +Πατέρα +Παράκλητον +Ἰησοῦν +Χριστόν +δίκαιον +καί +αὐτός +ἱλασμός +ἐστιν +περί +τῶν +ἁμαρτιῶν +ἡμῶν +δέ +οὐ +περί +τῶν +ἡμετέρων +μόνον +ἀλλά +καί +περί +ὅλου +τοῦ +κόσμου +καί +ἐν +τούτῳ +γινώσκομεν +ὅτι +ἐγνώκαμεν +αὐτόν +ἐάν +τάς +ἐντολάς +αὐτοῦ +τηρῶμεν +ὁ +λέγων +ὅτι +Ἔγνωκα +αὐτόν +καί +τάς +ἐντολάς +αὐτοῦ +μή +τηρῶν +ψεύστης +ἐστίν +καί +ἐν +τούτῳ +ἡ +ἀλήθεια +οὐκ +ἔστιν +δ’ +ἄν +ὅς +τηρῇ +αὐτοῦ +τόν +λόγον +ἀληθῶς +ἐν +τούτῳ +ἡ +ἀγάπη +τοῦ +Θεοῦ +τετελείωται +Ἐν +τούτῳ +γινώσκομεν +ὅτι +ἐν +αὐτῷ +ἐσμεν +ὁ +λέγων +ἐν +αὐτῷ +μένειν +καθώς +ἐκεῖνος +περιεπάτησεν +ὀφείλει +καί +αὐτός +οὕτως +περιπατεῖν +Ἀγαπητοί +γράφω +ὑμῖν +οὐκ +ἐντολήν +καινήν +ἀλλ’ +ἐντολήν +παλαιάν +ἥν +εἴχετε +ἀπ’ +ἀρχῆς +ἡ +ἐντολή +ἡ +παλαιά +ἐστιν +ὁ +λόγος +ὅν +ἠκούσατε +πάλιν +ἐντολήν +καινήν +γράφω +ὑμῖν +ὅ +ἐστιν +ἀληθές +ἐν +αὐτῷ +καί +ἐν +ὑμῖν +ὅτι +ἡ +σκοτία +παράγεται +καί +τό +φῶς +τό +ἀληθινόν +ἤδη +φαίνει +Ὁ +λέγων +ἐν +τῷ +φωτί +εἶναι +καί +τόν +ἀδελφόν +αὐτοῦ +μισῶν +ἐν +τῇ +σκοτίᾳ +ἐστίν +ἕως +ἄρτι +ὁ +ἀγαπῶν +τόν +ἀδελφόν +αὐτοῦ +ἐν +τῷ +φωτί +μένει +καί +σκάνδαλον +ἐν +αὐτῷ +οὐκ +ἔστιν +δέ +ὁ +μισῶν +τόν +ἀδελφόν +αὐτοῦ +ἐν +τῇ +σκοτίᾳ +ἐστίν +καί +ἐν +τῇ +σκοτίᾳ +περιπατεῖ +καί +οὐκ +οἶδεν +ποῦ +ὑπάγει +ὅτι +ἡ +σκοτία +ἐτύφλωσεν +τούς +ὀφθαλμούς +αὐτοῦ +τεκνία +Γράφω +ὑμῖν +ὅτι +ἀφέωνται +ὑμῖν +αἱ +ἁμαρτίαι +διά +τό +ὄνομα +αὐτοῦ +πατέρες +γράφω +ὑμῖν +ὅτι +ἐγνώκατε +τόν +ἀπ’ +ἀρχῆς +νεανίσκοι +γράφω +ὑμῖν +ὅτι +νενικήκατε +τόν +πονηρόν +παιδία +ἔγραψα +ὑμῖν +ὅτι +ἐγνώκατε +τόν +Πατέρα +πατέρες +ἔγραψα +ὑμῖν +ὅτι +ἐγνώκατε +τόν +ἀπ’ +ἀρχῆς +νεανίσκοι +ἔγραψα +ὑμῖν +ὅτι +ἰσχυροί +ἐστε +καί +ὁ +λόγος +τοῦ +Θεοῦ +ἐν +ὑμῖν +μένει +καί +νενικήκατε +τόν +πονηρόν +Μή +ἀγαπᾶτε +τόν +κόσμον +μηδέ +τά +ἐν +τῷ +κόσμῳ +ἐάν +τις +ἀγαπᾷ +τόν +κόσμον +οὐκ +ἔστιν +ἡ +ἀγάπη +τοῦ +Πατρός +ἐν +αὐτῷ +ὅτι +οὐκ +πᾶν +τό +ἐν +τῷ +κόσμῳ +ἡ +ἐπιθυμία +τῆς +σαρκός +καί +ἡ +ἐπιθυμία +τῶν +ὀφθαλμῶν +καί +ἡ +ἀλαζονία +τοῦ +βίου +ἔστιν +ἐκ +τοῦ +πατρός +ἀλλά +ἐκ +τοῦ +κόσμου +ἐστίν +καί +παράγεται +ὁ +κόσμος +καί +ἡ +ἐπιθυμία +αὐτοῦ +δέ +ὁ +ποιῶν +τό +θέλημα +τοῦ +Θεοῦ +μένει +εἰς +τόν +αἰῶνα +Παιδία +ἐσχάτη +ὥρα +ἐστίν +καί +καθώς +ἠκούσατε +ὅτι +ἀντίχριστος +ἔρχεται +καί +νῦν +ἀντίχριστοι +πολλοί +γεγόνασιν +ὅθεν +γινώσκομεν +ὅτι +ἐσχάτη +ὥρα +ἐστίν +ἐξ +ἡμῶν +ἐξῆλθαν +ἀλλ’ +οὐκ +ἦσαν +ἐξ +ἡμῶν +γάρ +εἰ +ἐξ +ἡμῶν +ἦσαν +ἄν +μεμενήκεισαν +μεθ’ +ἡμῶν +ἀλλ’ +ἵνα +φανερωθῶσιν +ὅτι +οὐκ +εἰσίν +πάντες +ἐξ +ἡμῶν +καί +ὑμεῖς +χρῖσμα +ἔχετε +ἀπό +τοῦ +Ἁγίου +καί +οἴδατε +πάντες +ἔγραψα +ὑμῖν +οὐκ +ὅτι +οὐκ +οἴδατε +τήν +ἀλήθειαν +ἀλλ’ +ὅτι +οἴδατε +αὐτήν +καί +ὅτι +πᾶν +ψεῦδος +ἐκ +τῆς +ἀληθείας +οὐκ +ἔστιν +Τίς +ἐστιν +ὁ +ψεύστης +εἰ +μή +ὁ +ἀρνούμενος +ὅτι +Ἰησοῦς +οὐκ +ἔστιν +ὁ +Χριστός +οὗτος +ἐστιν +ὁ +ἀντίχριστος +ὁ +ἀρνούμενος +τόν +Πατέρα +καί +τόν +Υἱόν +πᾶς +ὁ +ἀρνούμενος +τόν +Υἱόν +οὐδέ +τόν +Πατέρα +ἔχει +ὁ +ὁμολογῶν +τόν +Υἱόν +καί +τόν +Πατέρα +ἔχει +ὑμεῖς +ὅ +ἠκούσατε +ἀπ’ +ἀρχῆς +ἐν +ὑμῖν +μενέτω +ἐάν +ἐν +ὑμῖν +μείνῃ +ὅ +ἀπ’ +ἀρχῆς +ἠκούσατε +καί +ὑμεῖς +ἐν +τῷ +Υἱῷ +καί +ἐν +τῷ +Πατρί +μενεῖτε +καί +αὕτη +ἐστίν +ἡ +ἐπαγγελία +ἥν +αὐτός +ἐπηγγείλατο +ἡμῖν +τήν +ζωήν +τήν +αἰώνιον +Ταῦτα +ἔγραψα +ὑμῖν +περί +τῶν +πλανώντων +ὑμᾶς +καί +ὑμεῖς +τό +χρῖσμα +ὅ +ἐλάβετε +ἀπ’ +αὐτοῦ +μένει +ἐν +ὑμῖν +καί +οὐ +χρείαν +ἔχετε +ἵνα +τις +διδάσκῃ +ὑμᾶς +ἀλλ’ +ὡς +τό +αὐτοῦ +χρῖσμα +διδάσκει +ὑμᾶς +περί +πάντων +καί +ἀληθές +ἐστιν +καί +οὐκ +ἔστιν +ψεῦδος +καί +καθώς +ἐδίδαξεν +ὑμᾶς +μένετε +ἐν +αὐτῷ +Καί +τεκνία +νῦν +μένετε +ἐν +αὐτῷ +ἵνα +ἐάν +φανερωθῇ +σχῶμεν +παρρησίαν +καί +μή +αἰσχυνθῶμεν +ἀπ’ +αὐτοῦ +ἐν +τῇ +παρουσίᾳ +αὐτοῦ +ἐάν +εἰδῆτε +ὅτι +δίκαιος +ἐστιν +γινώσκετε +ὅτι +καί +πᾶς +ὁ +ποιῶν +τήν +δικαιοσύνην +ἐξ +αὐτοῦ +γεγέννηται +Ἴδετε +ποταπήν +ἀγάπην +δέδωκεν +ἡμῖν +ὁ +Πατήρ +ἵνα +τέκνα +Θεοῦ +κληθῶμεν +καί +ἐσμέν +διά +τοῦτο +ὁ +κόσμος +οὐ +γινώσκει +ἡμᾶς +ὅτι +οὐκ +ἔγνω +αὐτόν +Ἀγαπητοί +νῦν +τέκνα +Θεοῦ +ἐσμεν +καί +οὔπω +ἐφανερώθη +τί +ἐσόμεθα +οἴδαμεν +ὅτι +ἐάν +φανερωθῇ +ὅμοιοι +αὐτῷ +ἐσόμεθα +ὅτι +ὀψόμεθα +αὐτόν +καθώς +ἐστιν +καί +πᾶς +ὁ +ἔχων +τήν +ἐλπίδα +ταύτην +ἐπ’ +αὐτῷ +ἁγνίζει +ἑαυτόν +καθώς +ἐκεῖνος +ἁγνός +ἐστιν +Πᾶς +ὁ +ποιῶν +τήν +ἁμαρτίαν +καί +τήν +ἀνομίαν +ποιεῖ +καί +ἡ +ἁμαρτία +ἐστίν +ἡ +ἀνομία +καί +οἴδατε +ὅτι +ἐκεῖνος +ἐφανερώθη +ἵνα +τάς +ἁμαρτίας +ἄρῃ +καί +ἁμαρτία +ἐν +αὐτῷ +οὐκ +ἔστιν +πᾶς +ὁ +ἐν +αὐτῷ +μένων +οὐχ +ἁμαρτάνει +πᾶς +ὁ +ἁμαρτάνων +οὐχ +ἑώρακεν +αὐτόν +οὐδέ +ἔγνωκεν +αὐτόν +Τεκνία +μηδείς +πλανάτω +ὑμᾶς +ὁ +ποιῶν +τήν +δικαιοσύνην +δίκαιος +ἐστιν +καθώς +ἐκεῖνος +δίκαιος +ἐστιν +ὁ +ποιῶν +τήν +ἁμαρτίαν +ἐκ +τοῦ +διαβόλου +ἐστίν +ὅτι +ἀπ’ +ἀρχῆς +ὁ +διάβολος +ἁμαρτάνει +εἰς +τοῦτο +ἐφανερώθη +ὁ +Υἱός +τοῦ +Θεοῦ +ἵνα +λύσῃ +τά +ἔργα +τοῦ +διαβόλου +Πᾶς +ὁ +γεγεννημένος +ἐκ +τοῦ +Θεοῦ +ἁμαρτίαν +οὐ +ποιεῖ +ὅτι +σπέρμα +αὐτοῦ +ἐν +αὐτῷ +μένει +καί +οὐ +δύναται +ἁμαρτάνειν +ὅτι +ἐκ +τοῦ +Θεοῦ +γεγέννηται +ἐν +τούτῳ +φανερά +ἐστιν +τά +τέκνα +τοῦ +Θεοῦ +καί +τά +τέκνα +τοῦ +διαβόλου +πᾶς +ὁ +μή +ποιῶν +δικαιοσύνην +οὐκ +ἔστιν +ἐκ +τοῦ +Θεοῦ +καί +ὁ +μή +ἀγαπῶν +τόν +ἀδελφόν +αὐτοῦ +ὅτι +αὕτη +ἐστίν +ἡ +ἀγγελία +ἥν +ἠκούσατε +ἀπ’ +ἀρχῆς +ἵνα +ἀγαπῶμεν +ἀλλήλους +οὐ +καθώς +Κάϊν +ἐκ +τοῦ +πονηροῦ +ἦν +καί +ἔσφαξεν +τόν +ἀδελφόν +αὐτοῦ +καί +χάριν +τίνος +ἔσφαξεν +αὐτόν +ὅτι +τά +ἔργα +αὐτοῦ +πονηρά +ἦν +δέ +τά +τοῦ +ἀδελφοῦ +αὐτοῦ +δίκαια +ἀδελφοί +Μή +θαυμάζετε +εἰ +μισεῖ +ὑμᾶς +ὁ +κόσμος +ἡμεῖς +οἴδαμεν +ὅτι +μεταβεβήκαμεν +ἐκ +τοῦ +θανάτου +εἰς +τήν +ζωήν +ὅτι +ἀγαπῶμεν +τούς +ἀδελφούς +ὁ +μή +ἀγαπῶν +μένει +ἐν +τῷ +θανάτῳ +πᾶς +ὁ +μισῶν +τόν +ἀδελφόν +αὐτοῦ +ἀνθρωποκτόνος +ἐστίν +καί +οἴδατε +ὅτι +πᾶς +ἀνθρωποκτόνος +οὐκ +ἔχει +ζωήν +αἰώνιον +ἐν +αὐτῷ +μένουσαν +Ἐν +τούτῳ +ἐγνώκαμεν +τήν +ἀγάπην +ὅτι +ἐκεῖνος +ὑπέρ +ἡμῶν +τήν +ψυχήν +αὐτοῦ +ἔθηκεν +καί +ἡμεῖς +ὀφείλομεν +ὑπέρ +τῶν +ἀδελφῶν +τάς +ψυχάς +θεῖναι +δ’ +ἄν +ὅς +ἔχῃ +τόν +βίον +τοῦ +κόσμου +καί +θεωρῇ +τόν +ἀδελφόν +αὐτοῦ +χρείαν +ἔχοντα +καί +κλείσῃ +τά +σπλάγχνα +αὐτοῦ +ἀπ’ +αὐτοῦ +πῶς +ἡ +ἀγάπη +τοῦ +Θεοῦ +μένει +ἐν +αὐτῷ +Τεκνία +ἀγαπῶμεν +μή +λόγῳ +μηδέ +τῇ +γλώσσῃ +ἀλλά +ἐν +ἔργῳ +καί +ἀληθείᾳ +ἐν +τούτῳ +γνωσόμεθα +ὅτι +ἐκ +τῆς +ἀληθείας +ἐσμέν +καί +ἔμπροσθεν +αὐτοῦ +πείσομεν +τήν +καρδίαν +ἡμῶν +ὅτι +ἐάν +καταγινώσκῃ +ἡμῶν +ἡ +καρδία +ὅτι +μείζων +ἐστίν +ὁ +Θεός +τῆς +καρδίας +ἡμῶν +καί +γινώσκει +πάντα +Ἀγαπητοί +ἐάν +ἡ +καρδία +μή +καταγινώσκῃ +παρρησίαν +ἔχομεν +πρός +τόν +Θεόν +καί +ἐάν +ὅ +αἰτῶμεν +λαμβάνομεν +ἀπ’ +αὐτοῦ +ὅτι +τάς +ἐντολάς +αὐτοῦ +τηροῦμεν +καί +τά +ἀρεστά +ἐνώπιον +αὐτοῦ +ποιοῦμεν +καί +αὕτη +ἐστίν +ἡ +ἐντολή +αὐτοῦ +ἵνα +πιστεύσωμεν +τῷ +ὀνόματι +τοῦ +Υἱοῦ +αὐτοῦ +Ἰησοῦ +Χριστοῦ +καί +ἀγαπῶμεν +ἀλλήλους +καθώς +ἔδωκεν +ἐντολήν +ἡμῖν +καί +ὁ +τηρῶν +τάς +ἐντολάς +αὐτοῦ +ἐν +αὐτῷ +μένει +καί +αὐτός +ἐν +αὐτῷ +καί +ἐν +τούτῳ +γινώσκομεν +ὅτι +μένει +ἐν +ἡμῖν +ἐκ +τοῦ +Πνεύματος +οὗ +ἡμῖν +ἔδωκεν +Ἀγαπητοί +μή +παντί +πνεύματι +πιστεύετε +ἀλλά +δοκιμάζετε +τά +πνεύματα +εἰ +ἐκ +τοῦ +Θεοῦ +ἐστιν +ὅτι +πολλοί +ψευδοπροφῆται +ἐξεληλύθασιν +εἰς +τόν +κόσμον +Ἐν +τούτῳ +γινώσκετε +τό +Πνεῦμα +τοῦ +Θεοῦ +πᾶν +πνεῦμα +ὅ +ὁμολογεῖ +Ἰησοῦν +Χριστόν +ἐν +σαρκί +ἐληλυθότα +ἐκ +τοῦ +Θεοῦ +ἐστιν +καί +πᾶν +πνεῦμα +ὅ +μή +ὁμολογεῖ +τόν +Ἰησοῦν +ἐκ +τοῦ +Θεοῦ +οὐκ +ἔστιν +καί +τοῦτο +ἐστιν +τό +τοῦ +ἀντιχρίστου +ὅ +ἀκηκόατε +ὅτι +ἔρχεται +καί +νῦν +ἐν +τῷ +κόσμῳ +ἐστίν +ἤδη +τεκνία +Ὑμεῖς +ἐκ +τοῦ +Θεοῦ +ἐστε +καί +νενικήκατε +αὐτούς +ὅτι +μείζων +ἐστίν +ὁ +ἐν +ὑμῖν +ἤ +ὁ +ἐν +τῷ +κόσμῳ +αὐτοί +ἐκ +τοῦ +κόσμου +εἰσίν +διά +τοῦτο +ἐκ +τοῦ +κόσμου +λαλοῦσιν +καί +ὁ +κόσμος +αὐτῶν +ἀκούει +ἡμεῖς +ἐκ +τοῦ +Θεοῦ +ἐσμεν +ὁ +γινώσκων +τόν +Θεόν +ἀκούει +ἡμῶν +ὅς +οὐκ +ἔστιν +ἐκ +τοῦ +Θεοῦ +οὐκ +ἀκούει +ἡμῶν +ἐκ +τούτου +γινώσκομεν +τό +πνεῦμα +τῆς +ἀληθείας +καί +τό +πνεῦμα +τῆς +πλάνης +Ἀγαπητοί +ἀγαπῶμεν +ἀλλήλους +ὅτι +ἡ +ἀγάπη +ἐκ +τοῦ +Θεοῦ +ἐστιν +καί +πᾶς +ὁ +ἀγαπῶν +ἐκ +τοῦ +Θεοῦ +γεγέννηται +καί +γινώσκει +τόν +Θεόν +ὁ +μή +ἀγαπῶν +οὐκ +ἔγνω +τόν +Θεόν +ὅτι +ὁ +Θεός +ἀγάπη +ἐστίν +ἐν +τούτῳ +ἐφανερώθη +ἡ +ἀγάπη +τοῦ +Θεοῦ +ἐν +ἡμῖν +ὅτι +τόν +Υἱόν +αὐτοῦ +τόν +μονογενῆ +ἀπέσταλκεν +ὁ +Θεός +εἰς +τόν +κόσμον +ἵνα +ζήσωμεν +δι’ +αὐτοῦ +ἐν +τούτῳ +ἐστίν +ἡ +ἀγάπη +οὐχ +ὅτι +ἡμεῖς +ἠγαπήκαμεν +τόν +Θεόν +ἀλλ’ +ὅτι +αὐτός +ἠγάπησεν +ἡμᾶς +καί +ἀπέστειλεν +τόν +Υἱόν +αὐτοῦ +ἱλασμόν +περί +τῶν +ἁμαρτιῶν +ἡμῶν +Ἀγαπητοί +εἰ +οὕτως +ὁ +Θεός +ἠγάπησεν +ἡμᾶς +καί +ἡμεῖς +ὀφείλομεν +ἀλλήλους +ἀγαπᾶν +Θεόν +οὐδείς +πώποτε +τεθέαται +ἐάν +ἀγαπῶμεν +ἀλλήλους +ὁ +Θεός +ἐν +ἡμῖν +μένει +καί +ἡ +ἀγάπη +αὐτοῦ +ἐν +ἡμῖν +τετελειωμένη +ἐστιν +ἐν +τούτῳ +γινώσκομεν +ὅτι +ἐν +αὐτῷ +μένομεν +καί +αὐτός +ἐν +ἡμῖν +ὅτι +ἐκ +τοῦ +Πνεύματος +αὐτοῦ +δέδωκεν +ἡμῖν +καί +ἡμεῖς +τεθεάμεθα +καί +μαρτυροῦμεν +ὅτι +ὁ +Πατήρ +ἀπέσταλκεν +τόν +Υἱόν +Σωτῆρα +τοῦ +κόσμου +ἐάν +ὅς +ὁμολογήσῃ +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Υἱός +τοῦ +Θεοῦ +ὁ +Θεός +ἐν +αὐτῷ +μένει +καί +αὐτός +ἐν +τῷ +Θεῷ +καί +ἡμεῖς +ἐγνώκαμεν +καί +πεπιστεύκαμεν +τήν +ἀγάπην +ἥν +ἔχει +ὁ +Θεός +ἐν +ἡμῖν +Ὁ +Θεός +ἀγάπη +ἐστίν +καί +ὁ +μένων +ἐν +τῇ +ἀγάπῃ +ἐν +τῷ +Θεῷ +μένει +καί +ὁ +Θεός +ἐν +αὐτῷ +μένει +Ἐν +τούτῳ +τετελείωται +ἡ +ἀγάπη +μεθ’ +ἡμῶν +ἵνα +παρρησίαν +ἔχωμεν +ἐν +τῇ +ἡμέρᾳ +τῆς +κρίσεως +ὅτι +καθώς +ἐκεῖνος +ἐστιν +καί +ἡμεῖς +ἐσμεν +ἐν +τῷ +κόσμῳ +τούτῳ +φόβος +οὐκ +ἔστιν +ἐν +τῇ +ἀγάπῃ +ἀλλ’ +ἡ +τελεία +ἀγάπη +ἔξω +βάλλει +τόν +φόβον +ὅτι +ὁ +φόβος +κόλασιν +ἔχει +δέ +ὁ +φοβούμενος +οὐ +τετελείωται +ἐν +τῇ +ἀγάπῃ +Ἠμεῖς +ἀγαπῶμεν +ὅτι +αὐτός +πρῶτος +ἠγάπησεν +ἡμᾶς +ἐάν +τις +εἴπῃ +ὅτι +Ἀγαπῶ +τόν +Θεόν +καί +τόν +ἀδελφόν +αὐτοῦ +μισῇ +ψεύστης +ἐστίν +γάρ +ὁ +μή +ἀγαπῶν +τόν +ἀδελφόν +αὐτοῦ +ὅν +ἑώρακεν +οὐ +δύναται +τόν +Θεόν +ὅν +οὐχ +ἑώρακεν +ἀγαπᾶν +καί +ταύτην +τήν +ἐντολήν +ἔχομεν +ἀπ’ +αὐτοῦ +ἵνα +ὁ +ἀγαπῶν +τόν +Θεόν +ἀγαπᾷ +καί +τόν +ἀδελφόν +αὐτοῦ +Πᾶς +ὁ +πιστεύων +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Χριστός +ἐκ +τοῦ +Θεοῦ +γεγέννηται +καί +πᾶς +ὁ +ἀγαπῶν +τόν +γεννήσαντα +ἀγαπᾷ +τόν +γεγεννημένον +ἐξ +αὐτοῦ +ἐν +τούτῳ +γινώσκομεν +ὅτι +ἀγαπῶμεν +τά +τέκνα +τοῦ +Θεοῦ +ὅταν +τόν +Θεόν +ἀγαπῶμεν +καί +τάς +ἐντολάς +αὐτοῦ +ποιῶμεν +γάρ +αὕτη +ἐστιν +ἡ +ἀγάπη +τοῦ +Θεοῦ +ἵνα +τάς +ἐντολάς +αὐτοῦ +τηρῶμεν +καί +αἱ +ἐντολαί +αὐτοῦ +βαρεῖαι +οὐκ +εἰσίν +ὅτι +πᾶν +τό +γεγεννημένον +ἐκ +τοῦ +Θεοῦ +νικᾷ +τόν +κόσμον +καί +αὕτη +ἐστίν +ἡ +νίκη +ἡ +νικήσασα +τόν +κόσμον +ἡ +πίστις +ἡμῶν +τίς +ἐστιν +ὁ +νικῶν +τόν +κόσμον +εἰ +μή +ὁ +πιστεύων +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Υἱός +τοῦ +Θεοῦ +οὗτος +ἐστιν +ὁ +ἐλθών +δι’ +ὕδατος +καί +αἵματος +Ἰησοῦς +Χριστός +οὐκ +ἐν +τῷ +ὕδατι +μόνον +ἀλλ’ +ἐν +τῷ +ὕδατι +καί +ἐν +τῷ +αἵματι +καί +τό +Πνεῦμα +ἐστιν +τό +μαρτυροῦν +ὅτι +τό +Πνεῦμα +ἐστιν +ἡ +ἀλήθεια +ὅτι +τρεῖς +εἰσιν +οἱ +μαρτυροῦντες +τό +Πνεῦμα +καί +τό +ὕδωρ +καί +τό +αἷμα +καί +οἱ +τρεῖς +εἰς +τό +ἕν +εἰσιν +εἰ +τήν +μαρτυρίαν +τῶν +ἀνθρώπων +λαμβάνομεν +ἡ +μαρτυρία +τοῦ +Θεοῦ +μείζων +ἐστίν +ὅτι +αὕτη +ἐστίν +ἡ +μαρτυρία +τοῦ +Θεοῦ +ὅτι +μεμαρτύρηκεν +περί +τοῦ +Υἱοῦ +αὐτοῦ +ὁ +πιστεύων +εἰς +τόν +Υἱόν +τοῦ +Θεοῦ +ἔχει +τήν +μαρτυρίαν +ἐν +αὑτῷ +ὁ +μή +πιστεύων +τῷ +Θεῷ +ψεύστην +πεποίηκεν +αὐτόν +ὅτι +οὐ +πεπίστευκεν +εἰς +τήν +μαρτυρίαν +ἥν +μεμαρτύρηκεν +ὁ +Θεός +περί +τοῦ +Υἱοῦ +αὐτοῦ +καί +αὕτη +ἐστίν +ἡ +μαρτυρία +ὅτι +ζωήν +αἰώνιον +ἔδωκεν +ὁ +Θεός +ἡμῖν +καί +αὕτη +ἡ +ζωή +ἐν +τῷ +Υἱῷ +αὐτοῦ +ἐστιν +ὁ +ἔχων +τόν +Υἱόν +ἔχει +τήν +ζωήν +ὁ +μή +ἔχων +τόν +Υἱόν +τοῦ +Θεοῦ +τήν +ζωήν +οὐκ +ἔχει +Ταῦτα +ἔγραψα +ὑμῖν +τοῖς +πιστεύουσιν +εἰς +τό +ὄνομα +τοῦ +Υἱοῦ +τοῦ +Θεοῦ +ἵνα +εἰδῆτε +ὅτι +ζωήν +αἰώνιον +ἔχετε +Καί +αὕτη +ἐστίν +ἡ +παρρησία +ἥν +ἔχομεν +πρός +αὐτόν +ὅτι +ἐάν +τι +αἰτώμεθα +κατά +τό +θέλημα +αὐτοῦ +ἀκούει +ἡμῶν +καί +ἐάν +οἴδαμεν +ὅτι +ἀκούει +ἡμῶν +ἐάν +ὅ +αἰτώμεθα +οἴδαμεν +ὅτι +ἔχομεν +τά +αἰτήματα +ἅ +ᾐτήκαμεν +ἀπ’ +αὐτοῦ +Ἐάν +τις +ἴδῃ +τόν +ἀδελφόν +αὐτοῦ +ἁμαρτάνοντα +ἁμαρτίαν +μή +πρός +θάνατον +αἰτήσει +καί +δώσει +ζωήν +αὐτῷ +τοῖς +ἁμαρτάνουσιν +μή +πρός +θάνατον +ἔστιν +ἁμαρτία +πρός +θάνατον +οὐ +περί +ἐκείνης +λέγω +ἵνα +ἐρωτήσῃ +πᾶσα +ἀδικία +ἁμαρτία +ἐστίν +καί +ἔστιν +ἁμαρτία +οὐ +πρός +θάνατον +Οἴδαμεν +ὅτι +πᾶς +ὁ +γεγεννημένος +ἐκ +τοῦ +Θεοῦ +οὐχ +ἁμαρτάνει +ἀλλ’ +ὁ +γεννηθείς +ἐκ +τοῦ +Θεοῦ +τηρεῖ +αὐτόν +καί +ὁ +πονηρός +οὐχ +ἅπτεται +αὐτοῦ +οἴδαμεν +ὅτι +ἐκ +τοῦ +Θεοῦ +ἐσμεν +καί +ὁ +κόσμος +ὅλος +ἐν +τῷ +πονηρῷ +κεῖται +δέ +οἴδαμεν +ὅτι +ὁ +Υἱός +τοῦ +Θεοῦ +ἥκει +καί +δέδωκεν +ἡμῖν +διάνοιαν +ἵνα +γινώσκομεν +τόν +ἀληθινόν +καί +ἐσμέν +ἐν +τῷ +ἀληθινῷ +ἐν +τῷ +Υἱῷ +αὐτοῦ +Ἰησοῦ +Χριστῷ +οὗτος +ἐστιν +ὁ +ἀληθινός +Θεός +καί +ζωή +αἰώνιος +Τεκνία +φυλάξατε +ἑαυτά +ἀπό +τῶν +εἰδώλων +Ὁ +πρεσβύτερος +ἐκλεκτῇ +κυρίᾳ +καί +τοῖς +τέκνοις +αὐτῆς +οὕς +ἀγαπῶ +ἐν +ἀληθείᾳ +ἐγώ +καί +οὐκ +ἐγώ +μόνος +ἀλλά +καί +πάντες +οἱ +ἐγνωκότες +τήν +ἀλήθειαν +διά +τήν +ἀλήθειαν +τήν +μένουσαν +ἐν +ἡμῖν +καί +μεθ’ +ἡμῶν +ἔσται +εἰς +τόν +αἰῶνα +ἔσται +μεθ’ +ἡμῶν +χάρις +ἔλεος +εἰρήνη +παρά +Θεοῦ +Πατρός +καί +παρά +Ἰησοῦ +Χριστοῦ +τοῦ +Υἱοῦ +τοῦ +Πατρός +ἐν +ἀληθείᾳ +καί +ἀγάπῃ +Ἐχάρην +λίαν +ὅτι +εὕρηκα +ἐκ +τῶν +τέκνων +σου +περιπατοῦντας +ἐν +ἀληθείᾳ +καθώς +ἐντολήν +ἐλάβομεν +παρά +τοῦ +Πατρός +καί +κυρία +νῦν +ἐρωτῶ +σε +γράφων +σοι +οὐχ +ὡς +ἐντολήν +καινήν +ἀλλά +ἥν +εἴχαμεν +ἀπ’ +ἀρχῆς +ἵνα +ἀγαπῶμεν +ἀλλήλους +καί +αὕτη +ἐστίν +ἡ +ἀγάπη +ἵνα +περιπατῶμεν +κατά +τάς +ἐντολάς +αὐτοῦ +αὕτη +ἡ +ἐντολή +ἐστιν +καθώς +ἠκούσατε +ἀπ’ +ἀρχῆς +ἵνα +ἐν +αὐτῇ +περιπατῆτε +ὅτι +ἐξῆλθον +εἰς +τόν +κόσμον +πολλοί +πλάνοι +οἱ +μή +ὁμολογοῦντες +Ἰησοῦν +Χριστόν +ἐρχόμενον +ἐν +σαρκί +οὗτος +ἐστιν +ὁ +πλάνος +καί +ὁ +ἀντίχριστος +βλέπετε +ἑαυτούς +ἵνα +μή +ἀπολέσητε +ἅ +ἠργασάμεθα +ἀλλά +μισθόν +πλήρη +ἀπολάβητε +πᾶς +ὁ +προάγων +καί +μή +μένων +ἐν +τῇ +διδαχῇ +τοῦ +Χριστοῦ +Θεόν +οὐκ +ἔχει +ὁ +μένων +ἐν +τῇ +διδαχῇ +οὗτος +καί +τόν +Πατέρα +καί +τόν +Υἱόν +ἔχει +εἴ +τις +ἔρχεται +πρός +ὑμᾶς +καί +ταύτην +τήν +διδαχήν +οὐ +φέρει +μή +λαμβάνετε +αὐτόν +εἰς +οἰκίαν +καί +χαίρειν +αὐτῷ +μή +λέγετε +γάρ +ὁ +λέγων +αὐτῷ +χαίρειν +κοινωνεῖ +τοῖς +ἔργοις +αὐτοῦ +τοῖς +πονηροῖς +ἔχων +Πολλά +ὑμῖν +γράφειν +οὐκ +ἐβουλήθην +διά +χάρτου +καί +μέλανος +ἀλλά +ἐλπίζω +γενέσθαι +πρός +ὑμᾶς +καί +στόμα +πρός +στόμα +λαλῆσαι +ἵνα +ἡ +χαρά +ἡμῶν +πεπληρωμένη +ᾖ +Ἀσπάζεται +σε +τά +τέκνα +τῆς +ἀδελφῆς +σου +τῆς +ἐκλεκτῆς +Ὁ +πρεσβύτερος +Γαΐῳ +τῷ +ἀγαπητῷ +ὅν +ἐγώ +ἀγαπῶ +ἐν +ἀληθείᾳ +Ἀγαπητέ +περί +πάντων +εὔχομαι +σε +εὐοδοῦσθαι +καί +ὑγιαίνειν +καθώς +εὐοδοῦται +σου +ἡ +ψυχή +γάρ +ἐχάρην +λίαν +ἐρχομένων +ἀδελφῶν +καί +μαρτυρούντων +σου +τῇ +ἀληθείᾳ +καθώς +σύ +ἐν +ἀληθείᾳ +περιπατεῖς +μειζοτέραν +χαράν +τούτων +οὐκ +ἔχω +ἵνα +ἀκούω +τά +ἐμά +τέκνα +ἐν +τῇ +ἀληθείᾳ +περιπατοῦντα +Ἀγαπητέ +πιστόν +ποιεῖς +ἐάν +ὅ +ἐργάσῃ +εἰς +τούς +ἀδελφούς +καί +τοῦτο +ξένους +οἵ +ἐμαρτύρησαν +σου +τῇ +ἀγάπῃ +ἐνώπιον +ἐκκλησίας +οὕς +καλῶς +ποιήσεις +προπέμψας +ἀξίως +τοῦ +Θεοῦ +γάρ +ὑπέρ +τοῦ +Ὀνόματος +ἐξῆλθαν +μηδέν +λαμβάνοντες +ἀπό +τῶν +ἐθνικῶν +οὖν +ἡμεῖς +ὀφείλομεν +ὑπολαμβάνειν +τούς +τοιούτους +ἵνα +συνεργοί +γινώμεθα +τῇ +ἀληθείᾳ +Ἔγραψα +τι +τῇ +ἐκκλησίᾳ +ἀλλ’ +ὁ +φιλοπρωτεύων +αὐτῶν +Διοτρεφής +οὐκ +ἐπιδέχεται +ἡμᾶς +διά +τοῦτο +ἐάν +ἔλθω +ὑπομνήσω +αὐτοῦ +τά +ἔργα +ἅ +ποιεῖ +λόγοις +πονηροῖς +φλυαρῶν +ἡμᾶς +καί +μή +ἀρκούμενος +ἐπί +τούτοις +οὔτε +αὐτός +ἐπιδέχεται +τούς +ἀδελφούς +καί +τούς +βουλομένους +κωλύει +καί +ἐκ +τῆς +ἐκκλησίας +ἐκβάλλει +Ἀγαπητέ +μή +μιμοῦ +τό +κακόν +ἀλλά +τό +ἀγαθόν +ὁ +ἀγαθοποιῶν +ἐκ +τοῦ +Θεοῦ +ἐστιν +ὁ +κακοποιῶν +οὐχ +ἑώρακεν +τόν +Θεόν +Δημητρίῳ +μεμαρτύρηται +ὑπό +πάντων +καί +ὑπό +αὐτῆς +τῆς +ἀληθείας +δέ +καί +ἡμεῖς +μαρτυροῦμεν +καί +οἶδας +ὅτι +ἡ +μαρτυρία +ἡμῶν +ἀληθής +ἐστιν +εἶχον +Πολλά +γράψαι +σοι +ἀλλ’ +οὐ +θέλω +διά +μέλανος +καί +καλάμου +σοι +γράφειν +δέ +ἐλπίζω +εὐθέως +σε +ἰδεῖν +καί +στόμα +πρός +στόμα +λαλήσομεν +Εἰρήνη +σοι +ἀσπάζονται +σε +οἱ +φίλοι +ἀσπάζου +τούς +φίλους +κατ’ +ὄνομα +Ἰούδας +Ἰησοῦ +Χριστοῦ +δοῦλος +δέ +ἀδελφός +Ἰακώβου +τοῖς +ἐν +Θεῷ +Πατρί +ἠγαπημένοις +καί +Ἰησοῦ +Χριστῷ +τετηρημένοις +κλητοῖς +ὑμῖν +ἔλεος +καί +εἰρήνη +καί +ἀγάπη +πληθυνθείη +Ἀγαπητοί +πᾶσαν +σπουδήν +ποιούμενος +γράφειν +ὑμῖν +περί +τῆς +κοινῆς +ἡμῶν +σωτηρίας +ἀνάγκην +ἔσχον +γράψαι +ὑμῖν +παρακαλῶν +ἐπαγωνίζεσθαι +τῇ +ἅπαξ +παραδοθείσῃ +τοῖς +ἁγίοις +πίστει +γάρ +παρεισεδύησαν +τινες +ἄνθρωποι +οἱ +πάλαι +προγεγραμμένοι +εἰς +τοῦτο +τό +κρίμα +ἀσεβεῖς +τήν +τοῦ +Θεοῦ +ἡμῶν +χάριτα +μετατιθέντες +εἰς +ἀσέλγειαν +καί +τόν +μόνον +Δεσπότην +καί +Κύριον +ἡμῶν +Ἰησοῦν +Χριστόν +ἀρνούμενοι +δέ +βούλομαι +εἰδότας +ἅπαξ +πάντα +Ὑπομνῆσαι +ὑμᾶς +ὅτι +Κύριος +λαόν +ἐκ +γῆς +Αἰγύπτου +σώσας +τό +δεύτερον +τούς +μή +πιστεύσαντας +ἀπώλεσεν +τε +ἀγγέλους +τούς +μή +τηρήσαντας +τήν +ἑαυτῶν +ἀρχήν +ἀλλά +ἀπολιπόντας +τό +ἴδιον +οἰκητήριον +εἰς +κρίσιν +μεγάλης +ἡμέρας +δεσμοῖς +ἀϊδίοις +ὑπό +ζόφον +τετήρηκεν +ὡς +Σόδομα +καί +Γόμορρα +καί +αἱ +περί +αὐτάς +πόλεις +τόν +ὅμοιον +τρόπον +τούτοις +ἐκπορνεύσασαι +καί +ἀπελθοῦσαι +ὀπίσω +σαρκός +ἑτέρας +πρόκεινται +δεῖγμα +πυρός +αἰωνίου +δίκην +ὑπέχουσαι +μέντοι +Ὁμοίως +καί +οὗτοι +ἐνυπνιαζόμενοι +μέν +σάρκα +μιαίνουσιν +δέ +κυριότητα +ἀθετοῦσιν +δέ +δόξας +βλασφημοῦσιν +δέ +ὅτε +τῷ +διαβόλῳ +διακρινόμενος +διελέγετο +περί +τοῦ +Μωϋσέως +σώματος +οὐκ +ὁ +Μιχαήλ +ὁ +ἀρχάγγελος +ἐτόλμησεν +κρίσιν +βλασφημίας +ἐπενεγκεῖν +ἀλλά +εἶπεν +Ἐπιτιμήσαι +σοι +Κύριος +δέ +μέν +οὗτοι +ὅσα +οὐκ +οἴδασιν +βλασφημοῦσιν +δέ +ὅσα +φυσικῶς +ὡς +τά +ἄλογα +ζῷα +ἐπίστανται +ἐν +τούτοις +φθείρονται +οὐαί +αὐτοῖς +ὅτι +τῇ +ὁδῷ +τοῦ +Κάϊν +ἐπορεύθησαν +καί +τῇ +πλάνῃ +τοῦ +Βαλαάμ +μισθοῦ +ἐξεχύθησαν +καί +τῇ +ἀντιλογίᾳ +τοῦ +Κόρε +ἀπώλοντο +Οὗτοι +εἰσιν +οἱ +ἐν +ταῖς +ἀγάπαις +ὑμῶν +σπιλάδες +συνευωχούμενοι +ἀφόβως +ἑαυτούς +ποιμαίνοντες +νεφέλαι +ἄνυδροι +ὑπό +ἀνέμων +παραφερόμεναι +δένδρα +φθινοπωρινά +ἄκαρπα +δίς +ἀποθανόντα +ἐκριζωθέντα +κύματα +ἄγρια +θαλάσσης +ἐπαφρίζοντα +τάς +ἑαυτῶν +αἰσχύνας +ἀστέρες +πλανῆται +οἷς +ὁ +ζόφος +τοῦ +σκότους +εἰς +αἰῶνα +τετήρηται +δέ +Ἐπροφήτευσεν +καί +τούτοις +ἕβδομος +ἀπό +Ἀδάμ +Ἑνώχ +λέγων +Ἰδού +ἦλθεν +Κύριος +ἐν +ἁγίαις +μυριάσιν +αὐτοῦ +ποιῆσαι +κρίσιν +κατά +πάντων +καί +ἐλέγξαι +πάντας +τούς +ἀσεβεῖς +περί +πάντων +τῶν +ἔργων +ἀσεβείας +αὐτῶν +ὧν +ἠσέβησαν +καί +περί +πάντων +τῶν +σκληρῶν +ὧν +ἐλάλησαν +κατ’ +αὐτοῦ +ἁμαρτωλοί +ἀσεβεῖς +Οὗτοι +εἰσιν +γογγυσταί +μεμψίμοιροι +κατά +τάς +ἐπιθυμίας +αὐτῶν +πορευόμενοι +καί +τό +στόμα +αὐτῶν +λαλεῖ +ὑπέρογκα +θαυμάζοντες +πρόσωπα +ὠφελείας +χάριν +δέ +ἀγαπητοί +Ὑμεῖς +μνήσθητε +τῶν +ῥημάτων +τῶν +προειρημένων +ὑπό +τῶν +ἀποστόλων +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ὅτι +ἔλεγον +ὑμῖν +Ἐπ’ +ἐσχάτου +τοῦ +χρόνου +ἔσονται +ἐμπαῖκται +πορευόμενοι +κατά +τάς +ἑαυτῶν +ἐπιθυμίας +τῶν +ἀσεβειῶν +Οὗτοι +εἰσιν +οἱ +ἀποδιορίζοντες +ψυχικοί +Πνεῦμα +μή +ἔχοντες +δέ +ἀγαπητοί +ὑμεῖς +ἐποικοδομοῦντες +ἑαυτούς +τῇ +ἁγιωτάτῃ +ὑμῶν +πίστει +ἐν +Πνεύματι +Ἁγίῳ +προσευχόμενοι +ἑαυτούς +ἐν +ἀγάπῃ +Θεοῦ +τηρήσατε +προσδεχόμενοι +τό +ἔλεος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +εἰς +ζωήν +αἰώνιον +καί +μέν +οὕς +διακρινομένους +ἐλεᾶτε +σῴζετε +ἐκ +πυρός +ἁρπάζοντες +δέ +οὕς +ἐλεᾶτε +ἐν +φόβῳ +μισοῦντες +καί +τόν +ἀπό +τῆς +σαρκός +ἐσπιλωμένον +χιτῶνα +δέ +Τῷ +δυναμένῳ +φυλάξαι +ὑμᾶς +ἀπταίστους +καί +στῆσαι +κατενώπιον +τῆς +δόξης +αὐτοῦ +ἀμώμους +ἐν +ἀγαλλιάσει +μόνῳ +Θεῷ +Σωτῆρι +ἡμῶν +διά +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν +δόξα +μεγαλωσύνη +κράτος +καί +ἐξουσία +πρό +παντός +τοῦ +αἰῶνος +καί +νῦν +καί +εἰς +πάντας +τούς +αἰῶνας +ἀμήν +Ἀποκάλυψις +Ἰησοῦ +Χριστοῦ +ἥν +ἔδωκεν +αὐτῷ +ὁ +Θεός +δεῖξαι +τοῖς +δούλοις +αὐτοῦ +ἅ +γενέσθαι +ἐν +τάχει +δεῖ +καί +ἐσήμανεν +ἀποστείλας +διά +τοῦ +ἀγγέλου +αὐτοῦ +τῷ +δούλῳ +αὐτοῦ +Ἰωάνῃ +ὅς +ἐμαρτύρησεν +τόν +λόγον +τοῦ +Θεοῦ +καί +τήν +μαρτυρίαν +Ἰησοῦ +Χριστοῦ +ὅσα +εἶδεν +Μακάριος +ὁ +ἀναγινώσκων +καί +οἱ +ἀκούοντες +τούς +λόγους +τῆς +προφητείας +καί +τηροῦντες +τά +ἐν +αὐτῇ +γεγραμμένα +γάρ +ὁ +καιρός +ἐγγύς +Ἰωάνης +ταῖς +ἑπτά +ἐκκλησίαις +ταῖς +ἐν +τῇ +Ἀσίᾳ +χάρις +καί +εἰρήνη +ὑμῖν +ἀπό +ὁ +ὤν +καί +ὁ +ἦν +καί +ὁ +ἐρχόμενος +καί +ἀπό +τῶν +ἑπτά +Πνευμάτων +ἅ +ἐνώπιον +τοῦ +θρόνου +αὐτοῦ +καί +ἀπό +Ἰησοῦ +Χριστοῦ +ὁ +μάρτυς +ὁ +πιστός +ὁ +πρωτότοκος +τῶν +νεκρῶν +καί +ὁ +ἄρχων +τῶν +βασιλέων +τῆς +γῆς +Τῷ +ἀγαπῶντι +ἡμᾶς +καί +λύσαντι +ἡμᾶς +ἐκ +τῶν +ἁμαρτιῶν +ἡμῶν +ἐν +τῷ +αἵματι +αὐτοῦ +καί +ἐποίησεν +ἡμᾶς +βασιλείαν +ἱερεῖς +τῷ +Θεῷ +καί +Πατρί +αὐτοῦ +αὐτῷ +ἡ +δόξα +καί +τό +κράτος +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Ἰδού +ἔρχεται +μετά +τῶν +νεφελῶν +καί +ὄψεται +αὐτόν +πᾶς +ὀφθαλμός +καί +οἵτινες +αὐτόν +ἐξεκέντησαν +καί +κόψονται +ἐπ’ +αὐτόν +πᾶσαι +αἱ +φυλαί +τῆς +γῆς +ναί +ἀμήν +Ἐγώ +εἰμι +τό +Ἄλφα +καί +τό +Ὦ +λέγει +Κύριος +ὁ +Θεός +ὁ +ὤν +καί +ὁ +ἦν +καί +ὁ +ἐρχόμενος +ὁ +Παντοκράτωρ +Ἐγώ +Ἰωάνης +ὁ +ἀδελφός +ὑμῶν +καί +συνκοινωνός +ἐν +τῇ +θλίψει +καί +βασιλείᾳ +καί +ὑπομονῇ +ἐν +Ἰησοῦ +ἐγενόμην +ἐν +τῇ +νήσῳ +τῇ +καλουμένῃ +Πάτμῳ +διά +τόν +λόγον +τοῦ +Θεοῦ +καί +τήν +μαρτυρίαν +Ἰησοῦ +ἐγενόμην +ἐν +Πνεύματι +ἐν +τῇ +κυριακῇ +ἡμέρᾳ +καί +ἤκουσα +ὀπίσω +μου +φωνήν +μεγάλην +ὡς +σάλπιγγος +λεγούσης +Ὅ +βλέπεις +γράψον +εἰς +βιβλίον +καί +πέμψον +ταῖς +ἑπτά +ἐκκλησίαις +εἰς +Ἔφεσον +καί +εἰς +Σμύρναν +καί +εἰς +Πέργαμον +καί +εἰς +Θυάτειρα +καί +εἰς +Σάρδεις +καί +εἰς +Φιλαδελφίαν +καί +εἰς +Λαοδικίαν +Καί +ἐπέστρεψα +βλέπειν +τήν +φωνήν +ἥτις +ἐλάλει +μετ’ +ἐμοῦ +καί +ἐπιστρέψας +εἶδον +ἑπτά +λυχνίας +χρυσᾶς +καί +ἐν +μέσῳ +τῶν +λυχνιῶν +ὅμοιον +υἱόν +ἀνθρώπου +ἐνδεδυμένον +ποδήρη +καί +περιεζωσμένον +πρός +τοῖς +μαστοῖς +ζώνην +χρυσᾶν +δέ +ἡ +κεφαλή +αὐτοῦ +καί +αἱ +τρίχες +λευκαί +ὡς +ἔριον +λευκόν +ὡς +χιών +καί +οἱ +ὀφθαλμοί +αὐτοῦ +ὡς +φλόξ +πυρός +καί +οἱ +πόδες +αὐτοῦ +ὅμοιοι +χαλκολιβάνῳ +ὡς +ἐν +καμίνῳ +πεπυρωμένης +καί +ἡ +φωνή +αὐτοῦ +ὡς +φωνή +ὑδάτων +πολλῶν +καί +ἔχων +ἐν +τῇ +δεξιᾷ +χειρί +αὐτοῦ +ἀστέρας +ἑπτά +καί +ἐκ +τοῦ +στόματος +αὐτοῦ +ῥομφαία +δίστομος +ὀξεῖα +ἐκπορευομένη +καί +ἡ +ὄψις +αὐτοῦ +ὡς +ὁ +ἥλιος +φαίνει +ἐν +τῇ +δυνάμει +αὐτοῦ +Καί +ὅτε +εἶδον +αὐτόν +ἔπεσα +πρός +τούς +πόδας +αὐτοῦ +ὡς +νεκρός +καί +ἔθηκεν +τήν +δεξιάν +αὐτοῦ +ἐπ’ +ἐμέ +λέγων +Μή +φοβοῦ +ἐγώ +εἰμι +ὁ +πρῶτος +καί +ὁ +ἔσχατος +καί +ὁ +Ζῶν +καί +ἐγενόμην +νεκρός +καί +ἰδού +ζῶν +εἰμι +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +καί +ἔχω +τάς +κλεῖς +τοῦ +θανάτου +καί +τοῦ +Ἅιδου +οὖν +γράψον +ἅ +εἶδες +καί +ἅ +εἰσίν +καί +ἅ +μέλλει +γενέσθαι +μετά +ταῦτα +τό +μυστήριον +τῶν +ἑπτά +ἀστέρων +οὕς +εἶδες +ἐπί +τῆς +δεξιᾶς +μου +καί +τάς +ἑπτά +λυχνίας +τάς +χρυσᾶς +οἱ +ἑπτά +ἀστέρες +ἄγγελοι +τῶν +ἑπτά +ἐκκλησιῶν +εἰσίν +καί +αἱ +λυχνίαι +αἱ +ἑπτά +ἑπτά +ἐκκλησίαι +εἰσίν +Τῷ +ἀγγέλῳ +τῆς +ἐν +Ἐφέσῳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +κρατῶν +τούς +ἑπτά +ἀστέρας +ἐν +τῇ +δεξιᾷ +αὐτοῦ +ὁ +περιπατῶν +ἐν +μέσῳ +τῶν +ἑπτά +λυχνιῶν +τῶν +χρυσῶν +Οἶδα +τά +ἔργα +σου +καί +τόν +κόπον +καί +τήν +ὑπομονήν +σου +καί +ὅτι +οὐ +δύνῃ +βαστάσαι +κακούς +καί +ἐπείρασας +τούς +λέγοντας +ἑαυτούς +ἀποστόλους +καί +οὐκ +εἰσίν +καί +εὗρες +αὐτούς +ψευδεῖς +καί +ὑπομονήν +ἔχεις +καί +ἐβάστασας +διά +τό +ὄνομα +μου +καί +οὐ +κεκοπίακες +ἀλλά +ἔχω +κατά +σοῦ +ὅτι +τήν +ἀγάπην +σου +τήν +πρώτην +ἀφῆκες +οὖν +μνημόνευε +πόθεν +πέπτωκες +καί +μετανόησον +καί +τά +πρῶτα +ἔργα +ποίησον +δέ +εἰ +μή +ἔρχομαι +σοι +καί +κινήσω +τήν +λυχνίαν +σου +ἐκ +τοῦ +τόπου +αὐτῆς +ἐάν +μή +μετανοήσῃς +ἀλλά +τοῦτο +ἔχεις +ὅτι +μισεῖς +τά +ἔργα +τῶν +Νικολαϊτῶν +ἅ +κἀγώ +μισῶ +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Τῷ +νικῶντι +δώσω +αὐτῷ +φαγεῖν +ἐκ +τοῦ +ξύλου +τῆς +ζωῆς +ὅ +ἐστιν +ἐν +τῷ +Παραδείσῳ +τοῦ +Θεοῦ +Καί +τῷ +ἀγγέλῳ +τῆς +ἐν +Σμύρνῃ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +πρῶτος +καί +ὁ +ἔσχατος +ὅς +ἐγένετο +νεκρός +καί +ἔζησεν +Οἶδα +σου +τήν +θλῖψιν +καί +τήν +πτωχείαν +ἀλλά +πλούσιος +εἶ +καί +τήν +βλασφημίαν +ἐκ +τῶν +λεγόντων +Ἰουδαίους +εἶναι +ἑαυτούς +καί +οὐκ +εἰσίν +ἀλλά +συναγωγή +τοῦ +Σατανᾶ +μή +φοβοῦ +ἅ +πάσχειν +μέλλεις +ἰδού +μέλλει +ὁ +διάβολος +βάλλειν +ἐξ +ὑμῶν +εἰς +φυλακήν +ἵνα +πειρασθῆτε +καί +ἕξετε +θλῖψιν +ἡμερῶν +δέκα +γίνου +πιστός +ἄχρι +θανάτου +καί +δώσω +σοι +τόν +στέφανον +τῆς +ζωῆς +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Ὁ +νικῶν +οὐ +μή +ἀδικηθῇ +ἐκ +τοῦ +θανάτου +τοῦ +δευτέρου +Καί +τῷ +ἀγγέλῳ +τῆς +ἐν +Περγάμῳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +ἔχων +τήν +ῥομφαίαν +τήν +δίστομον +τήν +ὀξεῖαν +Οἶδα +ποῦ +κατοικεῖς +ὅπου +ὁ +θρόνος +τοῦ +Σατανᾶ +καί +κρατεῖς +τό +ὄνομα +μου +καί +οὐκ +ἠρνήσω +τήν +πίστιν +μου +καί +ἐν +ταῖς +ἡμέραις +Ἀντιπᾶς +ὁ +μάρτυς +μου +ὁ +πιστός +μου +ὅς +ἀπεκτάνθη +παρ’ +ὑμῖν +ὅπου +ὁ +Σατανᾶς +κατοικεῖ +ἀλλ’ +ἔχω +κατά +σοῦ +ὀλίγα +ὅτι +ἔχεις +ἐκεῖ +κρατοῦντας +τήν +διδαχήν +Βαλαάμ +ὅς +ἐδίδασκεν +τῷ +Βαλάκ +βαλεῖν +σκάνδαλον +ἐνώπιον +τῶν +υἱῶν +Ἰσραήλ +φαγεῖν +εἰδωλόθυτα +καί +πορνεῦσαι +οὕτως +ἔχεις +καί +σύ +κρατοῦντας +τήν +διδαχήν +τῶν +Νικολαϊτῶν +ὁμοίως +οὖν +μετανόησον +δέ +εἰ +μή +ἔρχομαι +σοι +ταχύ +καί +πολεμήσω +μετ’ +αὐτῶν +ἐν +τῇ +ῥομφαίᾳ +τοῦ +στόματος +μου +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Τῷ +νικῶντι +δώσω +αὐτῷ +τοῦ +μάννα +τοῦ +κεκρυμμένου +καί +δώσω +αὐτῷ +ψῆφον +λευκήν +καί +ἐπί +τήν +ψῆφον +γεγραμμένον +ὄνομα +καινόν +ὅ +οὐδείς +οἶδεν +εἰ +μή +ὁ +λαμβάνων +Καί +τῷ +ἀγγέλῳ +τῆς +ἐν +Θυατείροις +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +Υἱός +τοῦ +Θεοῦ +ὁ +ἔχων +τούς +ὀφθαλμούς +αὐτοῦ +ὡς +φλόγα +πυρός +καί +οἱ +πόδες +αὐτοῦ +ὅμοιοι +χαλκολιβάνῳ +Οἶδα +σου +τά +ἔργα +καί +τήν +ἀγάπην +καί +τήν +πίστιν +καί +τήν +διακονίαν +καί +τήν +ὑπομονήν +σου +καί +τά +ἔργα +σου +τά +ἔσχατα +πλείονα +τῶν +πρώτων +ἀλλά +ἔχω +κατά +σοῦ +ὅτι +ἀφεῖς +τήν +γυναῖκα +Ἰεζάβελ +ἡ +λέγουσα +ἑαυτήν +προφῆτιν +καί +διδάσκει +καί +πλανᾷ +τούς +ἐμούς +δούλους +πορνεῦσαι +καί +φαγεῖν +εἰδωλόθυτα +καί +ἔδωκα +αὐτῇ +χρόνον +ἵνα +μετανοήσῃ +καί +οὐ +θέλει +μετανοῆσαι +ἐκ +τῆς +πορνείας +αὐτῆς +ἰδού +βάλλω +αὐτήν +εἰς +κλίνην +καί +τούς +μοιχεύοντας +μετ’ +αὐτῆς +εἰς +θλῖψιν +μεγάλην +ἐάν +μή +μετανοήσουσιν +ἐκ +τῶν +ἔργων +αὐτῆς +καί +τά +τέκνα +αὐτῆς +ἀποκτενῶ +ἐν +θανάτῳ +καί +γνώσονται +πᾶσαι +αἱ +ἐκκλησίαι +ὅτι +ἐγώ +εἰμι +ὁ +ἐραυνῶν +νεφρούς +καί +καρδίας +καί +δώσω +ὑμῖν +ἑκάστῳ +κατά +τά +ἔργα +ὑμῶν +δέ +λέγω +ὑμῖν +τοῖς +λοιποῖς +τοῖς +ἐν +Θυατείροις +ὅσοι +οὐκ +ἔχουσιν +τήν +διδαχήν +ταύτην +οἵτινες +οὐκ +ἔγνωσαν +τά +βαθέα +τοῦ +Σατανᾶ +ὡς +λέγουσιν +οὐ +βάλλω +ἐφ’ +ὑμᾶς +ἄλλο +βάρος +πλήν +ὅ +ἔχετε +κρατήσατε +ἄχρι +ἄν +οὗ +ἥξω +Καί +ὁ +νικῶν +καί +ὁ +τηρῶν +ἄχρι +τέλους +τά +ἔργα +μου +δώσω +αὐτῷ +ἐξουσίαν +ἐπί +τῶν +ἐθνῶν +καί +ποιμανεῖ +αὐτούς +ἐν +ῥάβδῳ +σιδηρᾷ +ὡς +τά +σκεύη +τά +κεραμικά +συντρίβεται +ὡς +κἀγώ +εἴληφα +παρά +τοῦ +Πατρός +μου +καί +δώσω +αὐτῷ +τόν +ἀστέρα +τόν +πρωϊνόν +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Καί +τῷ +ἀγγέλῳ +τῆς +ἐν +Σάρδεσιν +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +ἔχων +τά +ἑπτά +Πνεύματα +τοῦ +Θεοῦ +καί +τούς +ἑπτά +ἀστέρας +Οἶδα +σου +τά +ἔργα +ὅτι +ὄνομα +ἔχεις +ὅτι +ζῇς +καί +νεκρός +εἶ +γίνου +γρηγορῶν +καί +στήρισον +τά +λοιπά +ἅ +ἔμελλον +ἀποθανεῖν +γάρ +οὐ +εὕρηκα +σου +ἔργα +πεπληρωμένα +ἐνώπιον +τοῦ +Θεοῦ +μου +οὖν +μνημόνευε +πῶς +εἴληφας +καί +ἤκουσας +καί +τήρει +καί +μετανόησον +οὖν +ἐάν +μή +γρηγορήσῃς +ἥξω +ὡς +κλέπτης +καί +οὐ +μή +γνῷς +ποίαν +ὥραν +ἥξω +ἐπί +σέ +ἀλλά +ἔχεις +ὀλίγα +ὀνόματα +ἐν +Σάρδεσιν +ἅ +οὐκ +ἐμόλυναν +τά +ἱμάτια +αὐτῶν +καί +περιπατήσουσιν +μετ’ +ἐμοῦ +ἐν +λευκοῖς +ὅτι +ἄξιοι +εἰσιν +Ὁ +νικῶν +οὕτως +περιβαλεῖται +ἐν +ἱματίοις +λευκοῖς +καί +οὐ +μή +ἐξαλείψω +τό +ὄνομα +αὐτοῦ +ἐκ +τῆς +βίβλου +τῆς +ζωῆς +καί +ὁμολογήσω +τό +ὄνομα +αὐτοῦ +ἐνώπιον +τοῦ +Πατρός +μου +καί +ἐνώπιον +τῶν +ἀγγέλων +αὐτοῦ +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Καί +τῷ +ἀγγέλῳ +τῆς +ἐν +Φιλαδελφίᾳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +ἅγιος +ὁ +ἀληθινός +ὁ +ἔχων +τήν +κλεῖν +Δαυείδ +ὁ +ἀνοίγων +καί +οὐδείς +κλείσει +καί +κλείων +καί +οὐδείς +ἀνοίγει +Οἶδα +σου +τά +ἔργα +ἰδού +δέδωκα +ἐνώπιον +σου +θύραν +ἠνεῳγμένην +ἥν +αὐτήν +κλεῖσαι +οὐδείς +δύναται +ὅτι +μικράν +δύναμιν +ἔχεις +καί +ἐτήρησας +μου +τόν +λόγον +καί +οὐκ +ἠρνήσω +τό +ὄνομα +μου +ἰδού +διδῶ +ἐκ +τῆς +συναγωγῆς +τοῦ +Σατανᾶ +τῶν +λεγόντων +ἑαυτούς +Ἰουδαίους +εἶναι +καί +οὐκ +εἰσίν +ἀλλά +ψεύδονται +ἰδού +ποιήσω +αὐτούς +ἵνα +ἥξουσιν +καί +προσκυνήσουσιν +ἐνώπιον +τῶν +ποδῶν +σου +καί +γνῶσιν +ὅτι +ἐγώ +ἠγάπησα +σε +ὅτι +ἐτήρησας +τόν +λόγον +τῆς +ὑπομονῆς +μου +κἀγώ +σε +τηρήσω +ἐκ +τῆς +ὥρας +τοῦ +πειρασμοῦ +τῆς +μελλούσης +ἔρχεσθαι +ἐπί +τῆς +οἰκουμένης +ὅλης +πειράσαι +τούς +κατοικοῦντας +ἐπί +τῆς +γῆς +ἔρχομαι +ταχύ +κράτει +ὅ +ἔχεις +ἵνα +μηδείς +λάβῃ +τόν +στέφανον +σου +Ὁ +νικῶν +ποιήσω +αὐτόν +στῦλον +ἐν +τῷ +ναῷ +τοῦ +Θεοῦ +μου +καί +ἔξω +οὐ +μή +ἐξέλθῃ +ἔτι +καί +γράψω +ἐπ’ +αὐτόν +τό +ὄνομα +τοῦ +Θεοῦ +μου +καί +τό +ὄνομα +τῆς +πόλεως +τοῦ +Θεοῦ +μου +τῆς +καινῆς +Ἱερουσαλήμ +ἡ +καταβαίνουσα +ἐκ +τοῦ +οὐρανοῦ +ἀπό +τοῦ +Θεοῦ +μου +καί +τό +ὄνομα +μου +τό +καινόν +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Καί +τῷ +ἀγγέλῳ +τῆς +ἐν +Λαοδικίᾳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +Ἀμήν +ὁ +μάρτυς +ὁ +πιστός +καί +ἀληθινός +ἡ +ἀρχή +τῆς +κτίσεως +τοῦ +Θεοῦ +Οἶδα +σου +τά +ἔργα +ὅτι +εἶ +οὔτε +ψυχρός +οὔτε +ζεστός +ὄφελον +ἦς +ψυχρός +ἤ +ζεστός +οὕτως +ὅτι +χλιαρός +εἶ +καί +οὔτε +ζεστός +οὔτε +ψυχρός +μέλλω +σε +ἐμέσαι +ἐκ +τοῦ +στόματος +μου +ὅτι +λέγεις +ὅτι +Πλούσιος +εἰμι +καί +πεπλούτηκα +καί +οὐδέν +χρείαν +ἔχω +καί +οὐκ +οἶδας +ὅτι +σύ +εἶ +ὁ +ταλαίπωρος +καί +ἐλεεινός +καί +πτωχός +καί +τυφλός +καί +γυμνός +συμβουλεύω +σοι +ἀγοράσαι +παρ’ +ἐμοῦ +χρυσίον +πεπυρωμένον +ἐκ +πυρός +ἵνα +πλουτήσῃς +καί +ἱμάτια +λευκά +ἵνα +περιβάλῃ +καί +μή +φανερωθῇ +ἡ +αἰσχύνη +τῆς +γυμνότητος +σου +καί +κολλούριον +ἐγχρῖσαι +τούς +ὀφθαλμούς +σου +ἵνα +βλέπῃς +ἐγώ +ἐάν +ὅσους +φιλῶ +ἐλέγχω +καί +παιδεύω +οὖν +ζήλευε +καί +μετανόησον +Ἰδού +ἕστηκα +ἐπί +τήν +θύραν +καί +κρούω +ἐάν +τις +ἀκούσῃ +τῆς +φωνῆς +μου +καί +ἀνοίξῃ +τήν +θύραν +εἰσελεύσομαι +πρός +αὐτόν +καί +δειπνήσω +μετ’ +αὐτοῦ +καί +αὐτός +μετ’ +ἐμοῦ +Ὁ +νικῶν +δώσω +αὐτῷ +καθίσαι +μετ’ +ἐμοῦ +ἐν +τῷ +θρόνῳ +μου +ὡς +κἀγώ +ἐνίκησα +καί +ἐκάθισα +μετά +τοῦ +Πατρός +μου +ἐν +τῷ +θρόνῳ +αὐτοῦ +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τό +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις +Μετά +ταῦτα +εἶδον +καί +ἰδού +θύρα +ἠνεῳγμένη +ἐν +τῷ +οὐρανῷ +καί +ἡ +φωνή +ἡ +πρώτη +ἥν +ἤκουσα +ὡς +σάλπιγγος +λαλούσης +μετ’ +ἐμοῦ +λέγων +Ἀνάβα +ὧδε +καί +δείξω +σοι +ἅ +γενέσθαι +μετά +ταῦτα +δεῖ +εὐθέως +ἐγενόμην +ἐν +Πνεύματι +καί +ἰδού +θρόνος +ἔκειτο +ἐν +τῷ +οὐρανῷ +καί +ἐπί +τόν +θρόνον +καθήμενος +καί +ὁ +καθήμενος +ὅμοιος +ὁράσει +λίθῳ +ἰάσπιδι +καί +σαρδίῳ +καί +ἶρις +κυκλόθεν +τοῦ +θρόνου +ὅμοιος +ὁράσει +σμαραγδίνῳ +καί +κυκλόθεν +τοῦ +θρόνου +θρόνους +εἴκοσι +τέσσαρας +καί +ἐπί +τούς +θρόνους +εἴκοσι +τέσσαρας +πρεσβυτέρους +καθημένους +περιβεβλημένους +ἐν +ἱματίοις +λευκοῖς +καί +ἐπί +τάς +κεφαλάς +αὐτῶν +στεφάνους +χρυσοῦς +καί +ἐκ +τοῦ +θρόνου +ἐκπορεύονται +ἀστραπαί +καί +φωναί +καί +βρονταί +καί +ἑπτά +λαμπάδες +πυρός +καιόμεναι +ἐνώπιον +τοῦ +θρόνου +ἅ +εἰσιν +τά +ἑπτά +Πνεύματα +τοῦ +Θεοῦ +καί +ἐνώπιον +τοῦ +θρόνου +ὡς +θάλασσα +ὑαλίνη +ὁμοία +κρυστάλλῳ +καί +ἐν +μέσῳ +τοῦ +θρόνου +καί +κύκλῳ +τοῦ +θρόνου +τέσσερα +ζῷα +γέμοντα +ὀφθαλμῶν +ἔμπροσθεν +καί +ὄπισθεν +καί +τό +ζῷον +τό +πρῶτον +ὅμοιον +λέοντι +καί +τό +δεύτερον +ζῷον +ὅμοιον +μόσχῳ +καί +τό +τρίτον +ζῷον +ἔχων +τό +πρόσωπον +ὡς +ἀνθρώπου +καί +τό +τέταρτον +ζῷον +ὅμοιον +ἀετῷ +πετομένῳ +καί +τά +τέσσερα +ζῷα +ἕν +καθ’ +ἕν +αὐτῶν +ἔχων +ἀνά +πτέρυγας +ἕξ +κυκλόθεν +καί +ἔσωθεν +γέμουσιν +ὀφθαλμῶν +καί +ἀνάπαυσιν +οὐκ +ἔχουσιν +ἡμέρας +καί +νυκτός +λέγοντες +Ἅγιος +ἅγιος +ἅγιος +Κύριος +ὁ +Θεός +ὁ +Παντοκράτωρ +ὁ +ἦν +καί +ὁ +ὤν +καί +ὁ +ἐρχόμενος +Καί +ὅταν +δώσουσιν +τά +ζῷα +δόξαν +καί +τιμήν +καί +εὐχαριστίαν +τῷ +καθημένῳ +ἐπί +τῷ +θρόνῳ +τῷ +ζῶντι +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +πεσοῦνται +οἱ +εἴκοσι +τέσσαρες +πρεσβύτεροι +ἐνώπιον +τοῦ +καθημένου +ἐπί +τοῦ +θρόνου +καί +προσκυνήσουσιν +τῷ +ζῶντι +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +καί +βαλοῦσιν +τούς +στεφάνους +αὐτῶν +ἐνώπιον +τοῦ +θρόνου +λέγοντες +ὁ +Κύριος +καί +ὁ +Θεός +ἡμῶν +Ἄξιος +εἶ +λαβεῖν +τήν +δόξαν +καί +τήν +τιμήν +καί +τήν +δύναμιν +ὅτι +σύ +ἔκτισας +τά +πάντα +καί +διά +τό +θέλημα +σου +ἦσαν +καί +ἐκτίσθησαν +Καί +εἶδον +ἐπί +τήν +δεξιάν +τοῦ +καθημένου +ἐπί +τοῦ +θρόνου +βιβλίον +γεγραμμένον +ἔσωθεν +καί +ὄπισθεν +κατεσφραγισμένον +σφραγῖσιν +ἑπτά +καί +εἶδον +ἄγγελον +ἰσχυρόν +κηρύσσοντα +ἐν +φωνῇ +μεγάλῃ +Τίς +ἄξιος +ἀνοῖξαι +τό +βιβλίον +καί +λῦσαι +τάς +σφραγῖδας +αὐτοῦ +καί +ἐδύνατο +οὐδείς +ἐν +τῷ +οὐρανῷ +οὐδέ +ἐπί +τῆς +γῆς +οὐδέ +ὑποκάτω +τῆς +γῆς +ἀνοῖξαι +τό +βιβλίον +οὔτε +βλέπειν +αὐτό +καί +ἔκλαιον +πολύ +ὅτι +οὐδείς +ἄξιος +εὑρέθη +ἀνοῖξαι +τό +βιβλίον +οὔτε +βλέπειν +αὐτό +καί +εἷς +ἐκ +τῶν +πρεσβυτέρων +λέγει +μοι +Μή +κλαῖε +ἰδού +ἐνίκησεν +ὁ +Λέων +ὁ +ἐκ +τῆς +φυλῆς +Ἰούδα +ἡ +Ῥίζα +Δαυείδ +ἀνοῖξαι +τό +βιβλίον +καί +τάς +ἑπτά +σφραγῖδας +αὐτοῦ +Καί +εἶδον +ἐν +μέσῳ +τοῦ +θρόνου +καί +τῶν +τεσσάρων +ζῴων +καί +ἐν +μέσῳ +τῶν +πρεσβυτέρων +Ἀρνίον +ἑστηκός +ὡς +ἐσφαγμένον +ἔχων +κέρατα +ἑπτά +καί +ὀφθαλμούς +ἑπτά +οἵ +εἰσιν +τά +ἑπτά +Πνεύματα +τοῦ +Θεοῦ +ἀπεσταλμένοι +εἰς +πᾶσαν +τήν +γῆν +καί +ἦλθεν +καί +εἴληφεν +ἐκ +τῆς +δεξιᾶς +τοῦ +καθημένου +ἐπί +τοῦ +θρόνου +Καί +ὅτε +ἔλαβεν +τό +βιβλίον +τά +τέσσερα +ζῷα +καί +οἱ +εἴκοσι +τέσσαρες +πρεσβύτεροι +ἔπεσαν +ἐνώπιον +τοῦ +Ἀρνίου +ἔχοντες +ἕκαστος +κιθάραν +καί +φιάλας +χρυσᾶς +γεμούσας +θυμιαμάτων +αἵ +εἰσιν +αἱ +προσευχαί +τῶν +ἁγίων +καί +ᾄδουσιν +ᾠδήν +καινήν +λέγοντες +Ἄξιος +εἶ +λαβεῖν +τό +βιβλίον +καί +ἀνοῖξαι +τάς +σφραγῖδας +αὐτοῦ +ὅτι +ἐσφάγης +καί +ἠγόρασας +τῷ +Θεῷ +ἐν +τῷ +αἵματι +σου +ἐκ +πάσης +φυλῆς +καί +γλώσσης +καί +λαοῦ +καί +ἔθνους +καί +ἐποίησας +αὐτούς +τῷ +Θεῷ +ἡμῶν +βασιλείαν +καί +ἱερεῖς +καί +βασιλεύσουσιν +ἐπί +τῆς +γῆς +καί +εἶδον +καί +ἤκουσα +φωνήν +ἀγγέλων +πολλῶν +κύκλῳ +τοῦ +θρόνου +καί +τῶν +ζῴων +καί +τῶν +πρεσβυτέρων +καί +ἦν +ὁ +ἀριθμός +αὐτῶν +μυριάδες +μυριάδων +καί +χιλιάδες +χιλιάδων +λέγοντες +φωνῇ +μεγάλῃ +Ἄξιος +ἐστιν +τό +Ἀρνίον +τό +ἐσφαγμένον +λαβεῖν +τήν +δύναμιν +καί +πλοῦτον +καί +σοφίαν +καί +ἰσχύν +καί +τιμήν +καί +δόξαν +καί +εὐλογίαν +καί +πᾶν +κτίσμα +ὅ +ἐν +τῷ +οὐρανῷ +καί +ἐπί +τῆς +γῆς +καί +ὑποκάτω +τῆς +γῆς +καί +ἐπί +τῆς +θαλάσσης +ἐστίν +καί +τά +ἐν +αὐτοῖς +πάντα +λέγοντας +ἤκουσα +Τῷ +καθημένῳ +ἐπί +τῷ +θρόνῳ +καί +τῷ +Ἀρνίῳ +ἡ +εὐλογία +καί +ἡ +τιμή +καί +ἡ +δόξα +καί +τό +κράτος +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +καί +τά +τέσσερα +ζῷα +ἔλεγον +Ἀμήν +καί +οἱ +πρεσβύτεροι +ἔπεσαν +καί +προσεκύνησαν +Καί +εἶδον +ὅτε +ἤνοιξεν +τό +Ἀρνίον +μίαν +ἐκ +τῶν +ἑπτά +σφραγίδων +καί +ἤκουσα +ἑνός +ἐκ +τῶν +τεσσάρων +ζῴων +λέγοντος +ὡς +φωνῇ +βροντῆς +Ἔρχου +καί +εἶδον +καί +ἰδού +ἵππος +λευκός +καί +ὁ +καθήμενος +ἐπ’ +αὐτόν +ἔχων +τόξον +καί +ἐδόθη +αὐτῷ +στέφανος +καί +ἐξῆλθεν +νικῶν +καί +ἵνα +νικήσῃ +Καί +ὅτε +ἤνοιξεν +τήν +σφραγῖδα +τήν +δευτέραν +ἤκουσα +τοῦ +δευτέρου +ζῴου +λέγοντος +Ἔρχου +καί +ἐξῆλθεν +ἄλλος +ἵππος +πυρρός +καί +τῷ +καθημένῳ +ἐπ’ +αὐτόν +ἐδόθη +αὐτῷ +λαβεῖν +τήν +εἰρήνην +ἐκ +τῆς +γῆς +καί +ἵνα +ἀλλήλους +σφάξουσιν +καί +ἐδόθη +αὐτῷ +μάχαιρα +μεγάλη +Καί +ὅτε +ἤνοιξεν +τήν +σφραγῖδα +τήν +τρίτην +ἤκουσα +τοῦ +τρίτου +ζῴου +λέγοντος +Ἔρχου +καί +εἶδον +καί +ἰδού +ἵππος +μέλας +καί +ὁ +καθήμενος +ἐπ’ +αὐτόν +ἔχων +ζυγόν +ἐν +τῇ +χειρί +αὐτοῦ +καί +ἤκουσα +ὡς +φωνήν +ἐν +μέσῳ +τῶν +τεσσάρων +ζῴων +λέγουσαν +Χοῖνιξ +σίτου +δηναρίου +καί +τρεῖς +χοίνικες +κριθῶν +δηναρίου +καί +τό +ἔλαιον +καί +τόν +οἶνον +μή +ἀδικήσῃς +Καί +ὅτε +ἤνοιξεν +τήν +σφραγῖδα +τήν +τετάρτην +ἤκουσα +φωνήν +τοῦ +τετάρτου +ζῴου +λέγοντος +Ἔρχου +καί +εἶδον +καί +ἰδού +ἵππος +χλωρός +καί +ὁ +καθήμενος +ἐπάνω +αὐτοῦ +ὄνομα +αὐτῷ +Ὁ +Θάνατος +καί +ὁ +Ἅιδης +ἠκολούθει +μετ’ +αὐτοῦ +καί +ἐδόθη +αὐτοῖς +ἐξουσία +ἐπί +τό +τέταρτον +τῆς +γῆς +ἀποκτεῖναι +ἐν +ῥομφαίᾳ +καί +ἐν +λιμῷ +καί +ἐν +θανάτῳ +καί +ὑπό +τῶν +θηρίων +τῆς +γῆς +Καί +ὅτε +ἤνοιξεν +τήν +πέμπτην +σφραγῖδα +εἶδον +ὑποκάτω +τοῦ +θυσιαστηρίου +τάς +ψυχάς +τῶν +ἐσφαγμένων +διά +τόν +λόγον +τοῦ +Θεοῦ +καί +διά +τήν +μαρτυρίαν +ἥν +εἶχον +καί +ἔκραξαν +φωνῇ +μεγάλῃ +λέγοντες +ὁ +Δεσπότης +ὁ +ἅγιος +καί +ἀληθινός +Ἕως +πότε +οὐ +κρίνεις +καί +ἐκδικεῖς +τό +αἷμα +ἡμῶν +ἐκ +τῶν +κατοικούντων +ἐπί +τῆς +γῆς +καί +ἐδόθη +αὐτοῖς +ἑκάστῳ +στολή +λευκή +καί +ἐρρέθη +αὐτοῖς +ἵνα +ἀναπαύσωνται +ἔτι +χρόνον +μικρόν +ἕως +πληρωθῶσιν +καί +οἱ +σύνδουλοι +αὐτῶν +καί +οἱ +ἀδελφοί +αὐτῶν +οἱ +μέλλοντες +ἀποκτέννεσθαι +ὡς +καί +αὐτοί +Καί +εἶδον +ὅτε +ἤνοιξεν +τήν +σφραγῖδα +τήν +ἕκτην +καί +σεισμός +μέγας +ἐγένετο +καί +ὁ +ἥλιος +ἐγένετο +μέλας +ὡς +σάκκος +τρίχινος +καί +ἡ +σελήνη +ὅλη +ἐγένετο +ὡς +αἷμα +καί +οἱ +ἀστέρες +τοῦ +οὐρανοῦ +ἔπεσαν +εἰς +τήν +γῆν +ὡς +συκῆ +βάλλει +τούς +ὀλύνθους +αὐτῆς +ὑπό +ἀνέμου +μεγάλου +σειομένη +καί +ὁ +οὐρανός +ἀπεχωρίσθη +ὡς +βιβλίον +ἑλισσόμενον +καί +πᾶν +ὄρος +καί +νῆσος +ἐκ +τῶν +τόπων +αὐτῶν +ἐκινήθησαν +καί +οἱ +βασιλεῖς +τῆς +γῆς +καί +οἱ +μεγιστᾶνες +καί +οἱ +χιλίαρχοι +καί +οἱ +πλούσιοι +καί +οἱ +ἰσχυροί +καί +πᾶς +δοῦλος +καί +ἐλεύθερος +ἔκρυψαν +ἑαυτούς +εἰς +τά +σπήλαια +καί +εἰς +τάς +πέτρας +τῶν +ὀρέων +καί +λέγουσιν +τοῖς +ὄρεσιν +καί +ταῖς +πέτραις +Πέσετε +ἐφ’ +ἡμᾶς +καί +κρύψατε +ἡμᾶς +ἀπό +προσώπου +τοῦ +καθημένου +ἐπί +τοῦ +θρόνου +καί +ἀπό +τῆς +ὀργῆς +τοῦ +Ἀρνίου +ὅτι +ἦλθεν +ἡ +ἡμέρα +ἡ +μεγάλη +τῆς +ὀργῆς +αὐτῶν +καί +τίς +δύναται +σταθῆναι +Μετά +τοῦτο +εἶδον +τέσσαρας +ἀγγέλους +ἑστῶτας +ἐπί +τάς +τέσσαρας +γωνίας +τῆς +γῆς +κρατοῦντας +τούς +τέσσαρας +ἀνέμους +τῆς +γῆς +ἵνα +μή +πνέῃ +ἄνεμος +ἐπί +τῆς +γῆς +μήτε +ἐπί +τῆς +θαλάσσης +μήτε +ἐπί +πᾶν +δένδρον +καί +εἶδον +ἄλλον +ἄγγελον +ἀναβαίνοντα +ἀπό +ἀνατολῆς +ἡλίου +ἔχοντα +σφραγῖδα +Θεοῦ +ζῶντος +καί +ἔκραξεν +φωνῇ +μεγάλῃ +τοῖς +τέσσαρσιν +ἀγγέλοις +οἷς +αὐτοῖς +ἐδόθη +ἀδικῆσαι +τήν +γῆν +καί +τήν +θάλασσαν +λέγων +Μή +ἀδικήσητε +τήν +γῆν +μήτε +τήν +θάλασσαν +μήτε +τά +δένδρα +ἄχρι +σφραγίσωμεν +τούς +δούλους +τοῦ +Θεοῦ +ἡμῶν +ἐπί +τῶν +μετώπων +αὐτῶν +Καί +ἤκουσα +τόν +ἀριθμόν +τῶν +ἐσφραγισμένων +ἑκατόν +τεσσεράκοντα +τέσσαρες +χιλιάδες +ἐσφραγισμένοι +ἐκ +πάσης +φυλῆς +υἱῶν +Ἰσραήλ +ἐκ +φυλῆς +Ἰούδα +δώδεκα +χιλιάδες +ἐσφραγισμένοι +ἐκ +φυλῆς +Ῥουβήν +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Γάδ +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Ἀσήρ +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Νεφθαλείμ +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Μανασσῆ +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Συμεών +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Λευεί +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Ἰσσαχάρ +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Ζαβουλών +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Ἰωσήφ +δώδεκα +χιλιάδες +ἐκ +φυλῆς +Βενιαμείν +δώδεκα +χιλιάδες +ἐσφραγισμένοι +Μετά +ταῦτα +εἶδον +καί +ἰδού +ὄχλος +πολύς +ὅν +αὐτόν +ἀριθμῆσαι +οὐδείς +ἐδύνατο +ἐκ +παντός +ἔθνους +καί +φυλῶν +καί +λαῶν +καί +γλωσσῶν +ἑστῶτες +ἐνώπιον +τοῦ +θρόνου +καί +ἐνώπιον +τοῦ +Ἀρνίου +περιβεβλημένους +στολάς +λευκάς +καί +φοίνικες +ἐν +ταῖς +χερσίν +αὐτῶν +καί +κράζουσιν +φωνῇ +μεγάλῃ +λέγοντες +Ἠ +σωτηρία +τῷ +Θεῷ +ἡμῶν +τῷ +καθημένῳ +ἐπί +τῷ +θρόνῳ +καί +τῷ +Ἀρνίῳ +καί +πάντες +οἱ +ἄγγελοι +εἱστήκεισαν +κύκλῳ +τοῦ +θρόνου +καί +τῶν +πρεσβυτέρων +καί +τῶν +τεσσάρων +ζῴων +καί +ἔπεσαν +ἐνώπιον +τοῦ +θρόνου +ἐπί +τά +πρόσωπα +αὐτῶν +καί +προσεκύνησαν +τῷ +Θεῷ +λέγοντες +Ἀμήν +ἡ +εὐλογία +καί +ἡ +δόξα +καί +ἡ +σοφία +καί +ἡ +εὐχαριστία +καί +ἡ +τιμή +καί +ἡ +δύναμις +καί +ἡ +ἰσχύς +τῷ +Θεῷ +ἡμῶν +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ἀμήν +Καί +ἀπεκρίθη +εἷς +ἐκ +τῶν +πρεσβυτέρων +λέγων +μοι +Οὗτοι +οἱ +περιβεβλημένοι +τάς +στολάς +τάς +λευκάς +τίνες +εἰσίν +καί +πόθεν +ἦλθον +καί +εἴρηκα +αὐτῷ +Κύριε +μου +σύ +οἶδας +καί +εἶπεν +μοι +Οὗτοι +εἰσιν +οἱ +ἐρχόμενοι +ἐκ +τῆς +θλίψεως +τῆς +μεγάλης +καί +ἔπλυναν +τάς +στολάς +αὐτῶν +καί +ἐλεύκαναν +αὐτάς +ἐν +τῷ +αἵματι +τοῦ +Ἀρνίου +διά +τοῦτο +εἰσιν +ἐνώπιον +τοῦ +θρόνου +τοῦ +Θεοῦ +καί +λατρεύουσιν +αὐτῷ +ἡμέρας +καί +νυκτός +ἐν +τῷ +ναῷ +αὐτοῦ +καί +ὁ +καθήμενος +ἐπί +τοῦ +θρόνου +σκηνώσει +ἐπ’ +αὐτούς +οὐ +πεινάσουσιν +ἔτι +οὐδέ +διψήσουσιν +ἔτι +οὐδέ +μή +πέσῃ +ἐπ’ +αὐτούς +ὁ +ἥλιος +οὐδέ +πᾶν +καῦμα +ὅτι +τό +Ἀρνίον +τό +ἀνά +μέσον +τοῦ +θρόνου +ποιμανεῖ +αὐτούς +καί +ὁδηγήσει +αὐτούς +ἐπί +ζωῆς +πηγάς +ὑδάτων +καί +ἐξαλείψει +ὁ +Θεός +πᾶν +δάκρυον +ἐκ +τῶν +ὀφθαλμῶν +αὐτῶν +Καί +ὅταν +ἤνοιξεν +τήν +σφραγῖδα +τήν +ἑβδόμην +ἐγένετο +σιγή +ἐν +τῷ +οὐρανῷ +ὡς +ἡμιώριον +καί +εἶδον +τούς +ἑπτά +ἀγγέλους +οἵ +ἐνώπιον +τοῦ +Θεοῦ +ἑστήκασιν +καί +ἐδόθησαν +αὐτοῖς +ἑπτά +σάλπιγγες +Καί +ἄλλος +ἄγγελος +ἦλθεν +καί +ἐστάθη +ἐπί +τοῦ +θυσιαστηρίου +ἔχων +λιβανωτόν +χρυσοῦν +καί +ἐδόθη +αὐτῷ +θυμιάματα +πολλά +ἵνα +δώσει +ταῖς +προσευχαῖς +τῶν +ἁγίων +πάντων +ἐπί +τό +θυσιαστήριον +τό +χρυσοῦν +τό +ἐνώπιον +τοῦ +θρόνου +καί +ἀνέβη +ὁ +καπνός +τῶν +θυμιαμάτων +ταῖς +προσευχαῖς +τῶν +ἁγίων +ἐκ +χειρός +τοῦ +ἀγγέλου +ἐνώπιον +τοῦ +Θεοῦ +καί +εἴληφεν +ὁ +ἄγγελος +τόν +λιβανωτόν +καί +ἐγέμισεν +αὐτόν +ἐκ +τοῦ +πυρός +τοῦ +θυσιαστηρίου +καί +ἔβαλεν +εἰς +τήν +γῆν +καί +ἐγένοντο +βρονταί +καί +φωναί +καί +ἀστραπαί +καί +σεισμός +Καί +οἱ +ἑπτά +ἄγγελοι +οἱ +ἔχοντες +τάς +ἑπτά +σάλπιγγας +ἡτοίμασαν +αὑτούς +ἵνα +σαλπίσωσιν +Καί +ὁ +πρῶτος +ἐσάλπισεν +καί +ἐγένετο +χάλαζα +καί +πῦρ +μεμιγμένα +ἐν +αἵματι +καί +ἐβλήθη +εἰς +τήν +γῆν +καί +τό +τρίτον +τῆς +γῆς +κατεκάη +καί +τό +τρίτον +τῶν +δένδρων +κατεκάη +καί +πᾶς +χόρτος +χλωρός +κατεκάη +Καί +ὁ +δεύτερος +ἄγγελος +ἐσάλπισεν +καί +ὡς +ὄρος +μέγα +πυρί +καιόμενον +ἐβλήθη +εἰς +τήν +θάλασσαν +καί +ἐγένετο +τό +τρίτον +τῆς +θαλάσσης +αἷμα +καί +ἀπέθανεν +τό +τρίτον +τῶν +κτισμάτων +τῶν +ἐν +τῇ +θαλάσσῃ +τά +ἔχοντα +ψυχάς +καί +τό +τρίτον +τῶν +πλοίων +διεφθάρησαν +Καί +ὁ +τρίτος +ἄγγελος +ἐσάλπισεν +καί +ἔπεσεν +ἐκ +τοῦ +οὐρανοῦ +ἀστήρ +μέγας +καιόμενος +ὡς +λαμπάς +καί +ἔπεσεν +ἐπί +τό +τρίτον +τῶν +ποταμῶν +καί +ἐπί +τάς +πηγάς +τῶν +ὑδάτων +καί +τό +ὄνομα +τοῦ +ἀστέρος +λέγεται +Ὁ +Ἄψινθος +καί +ἐγένετο +τό +τρίτον +τῶν +ὑδάτων +εἰς +ἄψινθον +καί +πολλοί +τῶν +ἀνθρώπων +ἀπέθανον +ἐκ +τῶν +ὑδάτων +ὅτι +ἐπικράνθησαν +Καί +ὁ +τέταρτος +ἄγγελος +ἐσάλπισεν +καί +ἐπλήγη +τό +τρίτον +τοῦ +ἡλίου +καί +τό +τρίτον +τῆς +σελήνης +καί +τό +τρίτον +τῶν +ἀστέρων +ἵνα +σκοτισθῇ +τό +τρίτον +αὐτῶν +καί +ἡ +ἡμέρα +μή +φάνῃ +τό +τρίτον +αὐτῆς +καί +ἡ +νύξ +ὁμοίως +Καί +εἶδον +καί +ἤκουσα +ἑνός +ἀετοῦ +πετομένου +ἐν +μεσουρανήματι +λέγοντος +φωνῇ +μεγάλῃ +Οὐαί +οὐαί +οὐαί +τούς +κατοικοῦντας +ἐπί +τῆς +γῆς +ἐκ +τῶν +λοιπῶν +φωνῶν +τῆς +σάλπιγγος +τῶν +τριῶν +ἀγγέλων +τῶν +μελλόντων +σαλπίζειν +Καί +ὁ +πέμπτος +ἄγγελος +ἐσάλπισεν +καί +εἶδον +ἀστέρα +ἐκ +τοῦ +οὐρανοῦ +πεπτωκότα +εἰς +τήν +γῆν +καί +ἐδόθη +αὐτῷ +ἡ +κλείς +τοῦ +φρέατος +τῆς +ἀβύσσου +καί +ἤνοιξεν +τό +φρέαρ +τῆς +ἀβύσσου +καί +ἀνέβη +καπνός +ἐκ +τοῦ +φρέατος +ὡς +καπνός +καμίνου +μεγάλης +καί +ἐσκοτώθη +ὁ +ἥλιος +καί +ὁ +ἀήρ +ἐκ +τοῦ +καπνοῦ +τοῦ +φρέατος +καί +ἐκ +τοῦ +καπνοῦ +ἐξῆλθον +ἀκρίδες +εἰς +τήν +γῆν +καί +ἐδόθη +αὐτοῖς +ἐξουσία +ὡς +ἔχουσιν +ἐξουσίαν +οἱ +σκορπίοι +τῆς +γῆς +καί +ἐρρέθη +αὐτοῖς +ἵνα +μή +ἀδικήσουσιν +τόν +χόρτον +τῆς +γῆς +οὐδέ +πᾶν +χλωρόν +οὐδέ +πᾶν +δένδρον +εἰ +μή +τούς +ἀνθρώπους +οἵτινες +οὐκ +ἔχουσιν +τήν +σφραγῖδα +τοῦ +Θεοῦ +ἐπί +τῶν +μετώπων +καί +ἐδόθη +αὐτοῖς +ἵνα +μή +ἀποκτείνωσιν +αὐτούς +ἀλλ’ +ἵνα +βασανισθήσονται +μῆνας +πέντε +καί +ὁ +βασανισμός +αὐτῶν +ὡς +βασανισμός +σκορπίου +ὅταν +παίσῃ +ἄνθρωπον +καί +ἐν +ταῖς +ἡμέραις +ἐκείναις +ζητήσουσιν +οἱ +ἄνθρωποι +τόν +θάνατον +καί +οὐ +μή +εὑρήσουσιν +αὐτόν +καί +ἐπιθυμήσουσιν +ἀποθανεῖν +καί +φεύγει +ὁ +θάνατος +ἀπ’ +αὐτῶν +καί +τά +ὁμοιώματα +τῶν +ἀκρίδων +ὅμοιοι +ἵπποις +ἡτοιμασμένοις +εἰς +πόλεμον +καί +ἐπί +τάς +κεφαλάς +αὐτῶν +ὡς +στέφανοι +ὅμοιοι +χρυσῷ +καί +τά +πρόσωπα +αὐτῶν +ὡς +πρόσωπα +ἀνθρώπων +καί +εἶχαν +τρίχας +ὡς +τρίχας +γυναικῶν +καί +οἱ +ὀδόντες +αὐτῶν +ὡς +λεόντων +ἦσαν +καί +εἶχον +θώρακας +ὡς +θώρακας +σιδηροῦς +καί +ἡ +φωνή +τῶν +πτερύγων +αὐτῶν +ὡς +φωνή +ἁρμάτων +ἵππων +πολλῶν +τρεχόντων +εἰς +πόλεμον +καί +ἔχουσιν +οὐράς +ὁμοίας +σκορπίοις +καί +κέντρα +καί +ἐν +ταῖς +οὐραῖς +αὐτῶν +ἡ +ἐξουσία +αὐτῶν +ἀδικῆσαι +τούς +ἀνθρώπους +μῆνας +πέντε +ἔχουσιν +ἐπ’ +αὐτῶν +βασιλέα +τόν +ἄγγελον +τῆς +ἀβύσσου +ὄνομα +αὐτῷ +Ἑβραϊστί +Ἀβαδδών +καί +ἐν +τῇ +Ἑλληνικῇ +ὄνομα +ἔχει +Ἀπολλύων +Ἠ +Οὐαί +ἡ +μία +ἀπῆλθεν +ἰδού +ἔρχεται +ἔτι +δύο +Οὐαί +μετά +ταῦτα +Καί +ὁ +ἕκτος +ἄγγελος +ἐσάλπισεν +καί +ἤκουσα +φωνήν +μίαν +ἐκ +τῶν +τεσσάρων +κεράτων +τοῦ +θυσιαστηρίου +τοῦ +χρυσοῦ +τοῦ +ἐνώπιον +τοῦ +Θεοῦ +λέγοντα +τῷ +ἕκτῳ +ἀγγέλῳ +ὁ +ἔχων +τήν +σάλπιγγα +Λῦσον +τούς +τέσσαρας +ἀγγέλους +τούς +δεδεμένους +ἐπί +τῷ +ποταμῷ +τῷ +μεγάλῳ +Εὐφράτῃ +καί +ἐλύθησαν +οἱ +τέσσαρες +ἄγγελοι +οἱ +ἡτοιμασμένοι +εἰς +τήν +ὥραν +καί +ἡμέραν +καί +μῆνα +καί +ἐνιαυτόν +ἵνα +ἀποκτείνωσιν +τό +τρίτον +τῶν +ἀνθρώπων +καί +ὁ +ἀριθμός +τῶν +στρατευμάτων +τοῦ +ἱππικοῦ +δισμυριάδες +μυριάδων +ἤκουσα +τόν +ἀριθμόν +αὐτῶν +καί +οὕτως +εἶδον +τούς +ἵππους +ἐν +τῇ +ὁράσει +καί +τούς +καθημένους +ἐπ’ +αὐτῶν +ἔχοντας +θώρακας +πυρίνους +καί +ὑακινθίνους +καί +θειώδεις +καί +αἱ +κεφαλαί +τῶν +ἵππων +ὡς +κεφαλαί +λεόντων +καί +ἐκ +τῶν +στομάτων +αὐτῶν +ἐκπορεύεται +πῦρ +καί +καπνός +καί +θεῖον +ἀπεκτάνθησαν +τό +τρίτον +τῶν +ἀνθρώπων +ἀπό +τῶν +τριῶν +πληγῶν +τούτων +ἐκ +τοῦ +πυρός +καί +τοῦ +καπνοῦ +καί +τοῦ +θείου +τοῦ +ἐκπορευομένου +ἐκ +τῶν +στομάτων +αὐτῶν +γάρ +ἡ +ἐξουσία +τῶν +ἵππων +ἐστιν +ἐν +τῷ +στόματι +αὐτῶν +καί +ἐν +ταῖς +οὐραῖς +αὐτῶν +γάρ +αἱ +οὐραί +αὐτῶν +ὅμοιαι +ὄφεσιν +ἔχουσαι +κεφαλάς +καί +ἐν +αὐταῖς +ἀδικοῦσιν +καί +οἱ +λοιποί +τῶν +ἀνθρώπων +οἵ +οὐκ +ἀπεκτάνθησαν +ἐν +ταῖς +πληγαῖς +ταύταις +οὐδέ +μετενόησαν +ἐκ +τῶν +ἔργων +τῶν +χειρῶν +αὐτῶν +ἵνα +μή +προσκυνήσουσιν +τά +δαιμόνια +καί +τά +εἴδωλα +τά +χρυσᾶ +καί +τά +ἀργυρᾶ +καί +τά +χαλκᾶ +καί +τά +λίθινα +καί +τά +ξύλινα +ἅ +δύνανται +οὔτε +βλέπειν +οὔτε +ἀκούειν +οὔτε +περιπατεῖν +καί +οὐ +μετενόησαν +ἐκ +τῶν +φόνων +αὐτῶν +οὔτε +ἐκ +τῶν +φαρμακιῶν +αὐτῶν +οὔτε +ἐκ +τῆς +πορνείας +αὐτῶν +οὔτε +ἐκ +τῶν +κλεμμάτων +αὐτῶν +Καί +εἶδον +ἄλλον +ἄγγελον +ἰσχυρόν +καταβαίνοντα +ἐκ +τοῦ +οὐρανοῦ +περιβεβλημένον +νεφέλην +καί +ἡ +ἶρις +ἐπί +τήν +κεφαλήν +αὐτοῦ +καί +τό +πρόσωπον +αὐτοῦ +ὡς +ὁ +ἥλιος +καί +οἱ +πόδες +αὐτοῦ +ὡς +στῦλοι +πυρός +καί +ἔχων +ἐν +τῇ +χειρί +αὐτοῦ +βιβλαρίδιον +ἠνεῳγμένον +καί +ἔθηκεν +τόν +πόδα +αὐτοῦ +τόν +δεξιόν +ἐπί +τῆς +θαλάσσης +δέ +τόν +εὐώνυμον +ἐπί +τῆς +γῆς +καί +ἔκραξεν +φωνῇ +μεγάλῃ +ὥσπερ +λέων +μυκᾶται +καί +ὅτε +ἔκραξεν +ἐλάλησαν +αἱ +ἑπτά +βρονταί +τάς +ἑαυτῶν +φωνάς +Καί +ὅτε +ἐλάλησαν +αἱ +ἑπτά +βρονταί +ἤμελλον +γράφειν +καί +ἤκουσα +φωνήν +ἐκ +τοῦ +οὐρανοῦ +λέγουσαν +Σφράγισον +ἅ +ἐλάλησαν +αἱ +ἑπτά +βρονταί +καί +μή +αὐτά +γράψῃς +Καί +ὁ +ἄγγελος +ὅν +ἑστῶτα +ἐπί +τῆς +θαλάσσης +καί +ἐπί +τῆς +γῆς +εἶδον +ἦρεν +τήν +χεῖρα +αὐτοῦ +τήν +δεξιάν +εἰς +τόν +οὐρανόν +καί +ὤμοσεν +ἐν +τῷ +ζῶντι +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +ὅς +ἔκτισεν +τόν +οὐρανόν +καί +τά +ἐν +αὐτῷ +καί +τήν +γῆν +καί +τά +ἐν +αὐτῇ +καί +τήν +θάλασσαν +καί +τά +ἐν +αὐτῇ +ὅτι +χρόνος +οὐκέτι +ἔσται +ἀλλ’ +ἐν +ταῖς +ἡμέραις +τῆς +φωνῆς +τοῦ +ἑβδόμου +ἀγγέλου +ὅταν +μέλλῃ +σαλπίζειν +καί +ἐτελέσθη +τό +μυστήριον +τοῦ +Θεοῦ +ὡς +εὐηγγέλισεν +τούς +ἑαυτοῦ +δούλους +τούς +προφήτας +Καί +ἡ +φωνή +ἥν +ἤκουσα +ἐκ +τοῦ +οὐρανοῦ +πάλιν +λαλοῦσαν +μετ’ +ἐμοῦ +καί +λέγουσαν +Ὕπαγε +λάβε +τό +βιβλίον +τό +ἠνεῳγμένον +ἐν +τῇ +χειρί +τοῦ +ἀγγέλου +τοῦ +ἑστῶτος +ἐπί +τῆς +θαλάσσης +καί +ἐπί +τῆς +γῆς +καί +ἀπῆλθα +πρός +τόν +ἄγγελον +λέγων +αὐτῷ +δοῦναι +μοι +τό +βιβλαρίδιον +καί +λέγει +μοι +Λάβε +καί +κατάφαγε +αὐτό +καί +πικρανεῖ +σου +τήν +κοιλίαν +ἀλλ’ +ἐν +τῷ +στόματι +σου +ἔσται +γλυκύ +ὡς +μέλι +καί +ἔλαβον +τό +βιβλαρίδιον +ἐκ +τῆς +χειρός +τοῦ +ἀγγέλου +καί +κατέφαγον +αὐτό +καί +ἦν +ἐν +τῷ +στόματι +μου +ὡς +μέλι +γλυκύ +καί +ὅτε +ἔφαγον +αὐτό +ἐπικράνθη +ἡ +κοιλία +μου +καί +λέγουσιν +μοι +Δεῖ +σε +πάλιν +προφητεῦσαι +ἐπί +λαοῖς +καί +ἔθνεσιν +καί +γλώσσαις +καί +βασιλεῦσιν +πολλοῖς +Καί +ἐδόθη +μοι +κάλαμος +ὅμοιος +ῥάβδῳ +λέγων +Ἔγειρε +καί +μέτρησον +τόν +ναόν +τοῦ +Θεοῦ +καί +τό +θυσιαστήριον +καί +τούς +προσκυνοῦντας +ἐν +αὐτῷ +καί +τήν +αὐλήν +τήν +ἔξωθεν +τοῦ +ναοῦ +ἔκβαλε +ἔξωθεν +καί +μή +αὐτήν +μετρήσῃς +ὅτι +ἐδόθη +τοῖς +ἔθνεσιν +καί +τήν +πόλιν +τήν +ἁγίαν +πατήσουσιν +μῆνας +τεσσεράκοντα +δύο +καί +δώσω +τοῖς +δυσίν +μάρτυσιν +μου +καί +προφητεύσουσιν +ἡμέρας +χιλίας +διακοσίας +ἑξήκοντα +περιβεβλημένοι +σάκκους +Οὗτοι +εἰσιν +αἱ +δύο +ἐλαῖαι +καί +αἱ +δύο +λυχνίαι +αἱ +ἐνώπιον +τοῦ +Κυρίου +τῆς +γῆς +ἑστῶτες +καί +εἴ +τις +θέλει +αὐτούς +ἀδικῆσαι +πῦρ +ἐκπορεύεται +ἐκ +τοῦ +στόματος +αὐτῶν +καί +κατεσθίει +τούς +ἐχθρούς +αὐτῶν +καί +εἴ +τις +θελήσῃ +αὐτούς +ἀδικῆσαι +οὕτως +δεῖ +αὐτόν +ἀποκτανθῆναι +οὗτοι +ἔχουσιν +τήν +ἐξουσίαν +κλεῖσαι +τόν +οὐρανόν +ἵνα +μή +ὑετός +βρέχῃ +τάς +ἡμέρας +τῆς +προφητείας +αὐτῶν +καί +ἐξουσίαν +ἔχουσιν +ἐπί +τῶν +ὑδάτων +στρέφειν +αὐτά +εἰς +αἷμα +καί +πατάξαι +τήν +γῆν +ἐν +πάσῃ +πληγῇ +ὁσάκις +ἐάν +θελήσωσιν +καί +ὅταν +τελέσωσιν +τήν +μαρτυρίαν +αὐτῶν +τό +θηρίον +τό +ἀναβαῖνον +ἐκ +τῆς +ἀβύσσου +ποιήσει +μετ’ +αὐτῶν +πόλεμον +καί +νικήσει +αὐτούς +καί +ἀποκτενεῖ +αὐτούς +καί +τό +πτῶμα +αὐτῶν +ἐπί +τῆς +πλατείας +τῆς +πόλεως +τῆς +μεγάλης +ἥτις +καλεῖται +πνευματικῶς +Σόδομα +καί +Αἴγυπτος +ὅπου +καί +ὁ +Κύριος +αὐτῶν +ἐσταυρώθη +καί +βλέπουσιν +ἐκ +τῶν +λαῶν +καί +φυλῶν +καί +γλωσσῶν +καί +ἐθνῶν +τό +πτῶμα +αὐτῶν +ἡμέρας +τρεῖς +καί +ἥμισυ +καί +οὐκ +ἀφίουσιν +τά +πτώματα +αὐτῶν +τεθῆναι +εἰς +μνῆμα +καί +οἱ +κατοικοῦντες +ἐπί +τῆς +γῆς +χαίρουσιν +ἐπ’ +αὐτοῖς +καί +εὐφραίνονται +καί +δῶρα +πέμψουσιν +ἀλλήλοις +ὅτι +οὗτοι +οἱ +δύο +προφῆται +ἐβασάνισαν +τούς +κατοικοῦντας +ἐπί +τῆς +γῆς +καί +μετά +τάς +τρεῖς +καί +ἥμισυ +ἡμέρας +πνεῦμα +ζωῆς +ἐκ +τοῦ +Θεοῦ +εἰσῆλθεν +ἐν +αὐτοῖς +καί +ἔστησαν +ἐπί +τούς +πόδας +αὐτῶν +καί +φόβος +μέγας +ἐπέπεσεν +ἐπί +τούς +θεωροῦντας +αὐτούς +καί +ἤκουσαν +φωνῆς +μεγάλης +ἐκ +τοῦ +οὐρανοῦ +λεγούσης +αὐτοῖς +Ἀνάβατε +ὧδε +καί +ἀνέβησαν +εἰς +τόν +οὐρανόν +ἐν +τῇ +νεφέλῃ +καί +ἐθεώρησαν +αὐτούς +οἱ +ἐχθροί +αὐτῶν +Καί +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +ἐγένετο +σεισμός +μέγας +καί +τό +δέκατον +τῆς +πόλεως +ἔπεσεν +καί +ἀπεκτάνθησαν +ἐν +τῷ +σεισμῷ +ὀνόματα +ἀνθρώπων +χιλιάδες +ἑπτά +καί +οἱ +λοιποί +ἔμφοβοι +ἐγένοντο +καί +ἔδωκαν +δόξαν +τῷ +Θεῷ +τοῦ +οὐρανοῦ +Ἠ +Οὐαί +ἡ +δευτέρα +ἀπῆλθεν +ἰδού +ἡ +Οὐαί +ἡ +τρίτη +ἔρχεται +ταχύ +Καί +ὁ +ἕβδομος +ἄγγελος +ἐσάλπισεν +καί +ἐγένοντο +φωναί +μεγάλαι +ἐν +τῷ +οὐρανῷ +λέγοντες +Ἐγένετο +ἡ +βασιλεία +τοῦ +κόσμου +τοῦ +Κυρίου +ἡμῶν +καί +τοῦ +Χριστοῦ +αὐτοῦ +καί +βασιλεύσει +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +καί +οἱ +εἴκοσι +τέσσαρες +πρεσβύτεροι +οἱ +ἐνώπιον +τοῦ +Θεοῦ +καθήμενοι +ἐπί +τούς +θρόνους +αὐτῶν +ἔπεσαν +ἐπί +τά +πρόσωπα +αὐτῶν +καί +προσεκύνησαν +τῷ +Θεῷ +λέγοντες +Εὐχαριστοῦμεν +σοι +Κύριε +ὁ +Θεός +ὁ +Παντοκράτωρ +ὁ +ὤν +καί +ὁ +ἦν +ὅτι +εἴληφας +τήν +δύναμιν +σου +τήν +μεγάλην +καί +ἐβασίλευσας +καί +τά +ἔθνη +ὠργίσθησαν +καί +ἦλθεν +ἡ +ὀργή +σου +καί +ὁ +καιρός +τῶν +νεκρῶν +κριθῆναι +καί +δοῦναι +τόν +μισθόν +τοῖς +δούλοις +σου +τοῖς +προφήταις +καί +τοῖς +ἁγίοις +καί +τοῖς +φοβουμένοις +τό +ὄνομα +σου +τοῖς +μικροῖς +καί +τοῖς +μεγάλοις +καί +διαφθεῖραι +τούς +διαφθείροντας +τήν +γῆν +καί +ἠνοίγη +ὁ +ναός +τοῦ +Θεοῦ +ὁ +ἐν +τῷ +οὐρανῷ +καί +ὤφθη +ἡ +κιβωτός +τῆς +διαθήκης +αὐτοῦ +ἐν +τῷ +ναῷ +αὐτοῦ +καί +ἐγένοντο +ἀστραπαί +καί +φωναί +καί +βρονταί +καί +σεισμός +καί +χάλαζα +μεγάλη +Καί +σημεῖον +μέγα +ὤφθη +ἐν +τῷ +οὐρανῷ +γυνή +περιβεβλημένη +τόν +ἥλιον +καί +ἡ +σελήνη +ὑποκάτω +τῶν +ποδῶν +αὐτῆς +καί +ἐπί +τῆς +κεφαλῆς +αὐτῆς +στέφανος +ἀστέρων +δώδεκα +καί +ἐν +γαστρί +ἔχουσα +καί +κράζει +ὠδίνουσα +καί +βασανιζομένη +τεκεῖν +καί +ὤφθη +ἄλλο +σημεῖον +ἐν +τῷ +οὐρανῷ +καί +ἰδού +δράκων +πυρρός +μέγας +ἔχων +κεφαλάς +ἑπτά +καί +κέρατα +δέκα +καί +ἐπί +τάς +κεφαλάς +αὐτοῦ +ἑπτά +διαδήματα +καί +ἡ +οὐρά +αὐτοῦ +σύρει +τό +τρίτον +τῶν +ἀστέρων +τοῦ +οὐρανοῦ +καί +ἔβαλεν +αὐτούς +εἰς +τήν +γῆν +καί +ὁ +δράκων +ἕστηκεν +ἐνώπιον +τῆς +γυναικός +τῆς +μελλούσης +τεκεῖν +ἵνα +ὅταν +τέκῃ +τό +τέκνον +αὐτῆς +καταφάγῃ +καί +ἔτεκεν +υἱόν +ἄρσεν +ὅς +μέλλει +ποιμαίνειν +πάντα +τά +ἔθνη +ἐν +ῥάβδῳ +σιδηρᾷ +καί +ἡρπάσθη +τό +τέκνον +αὐτῆς +πρός +τόν +Θεόν +καί +πρός +τόν +θρόνον +αὐτοῦ +καί +ἡ +γυνή +ἔφυγεν +εἰς +τήν +ἔρημον +ὅπου +ἔχει +ἐκεῖ +τόπον +ἡτοιμασμένον +ἀπό +τοῦ +Θεοῦ +ἵνα +ἐκεῖ +τρέφωσιν +αὐτήν +ἡμέρας +χιλίας +διακοσίας +ἑξήκοντα +Καί +ἐγένετο +πόλεμος +ἐν +τῷ +οὐρανῷ +ὁ +Μιχαήλ +καί +οἱ +ἄγγελοι +αὐτοῦ +τοῦ +πολεμῆσαι +μετά +τοῦ +δράκοντος +καί +ἐπολέμησεν +ὁ +δράκων +καί +οἱ +ἄγγελοι +αὐτοῦ +καί +οὐκ +ἴσχυσαν +οὐδέ +τόπος +αὐτῶν +εὑρέθη +ἔτι +ἐν +τῷ +οὐρανῷ +καί +ἐβλήθη +ὁ +δράκων +ὁ +μέγας +ὁ +ὄφις +ὁ +ἀρχαῖος +ὁ +καλούμενος +Διάβολος +καί +Ὁ +Σατανᾶς +ὁ +πλανῶν +τήν +οἰκουμένην +ὅλην +ἐβλήθη +εἰς +τήν +γῆν +καί +οἱ +ἄγγελοι +αὐτοῦ +μετ’ +αὐτοῦ +ἐβλήθησαν +καί +ἤκουσα +φωνήν +μεγάλην +ἐν +τῷ +οὐρανῷ +λέγουσαν +Ἄρτι +ἐγένετο +ἡ +σωτηρία +καί +ἡ +δύναμις +καί +ἡ +βασιλεία +τοῦ +Θεοῦ +ἡμῶν +καί +ἡ +ἐξουσία +τοῦ +Χριστοῦ +αὐτοῦ +ὅτι +ἐβλήθη +ὁ +κατήγωρ +τῶν +ἀδελφῶν +ἡμῶν +ὁ +κατηγορῶν +αὐτούς +ἐνώπιον +τοῦ +Θεοῦ +ἡμῶν +ἡμέρας +καί +νυκτός +καί +αὐτοί +ἐνίκησαν +αὐτόν +διά +τό +αἷμα +τοῦ +Ἀρνίου +καί +διά +τόν +λόγον +τῆς +μαρτυρίας +αὐτῶν +καί +οὐκ +ἠγάπησαν +τήν +ψυχήν +αὐτῶν +ἄχρι +θανάτου +διά +τοῦτο +εὐφραίνεσθε +οὐρανοί +καί +οἱ +ἐν +αὐτοῖς +σκηνοῦντες +οὐαί +τήν +γῆν +καί +τήν +θάλασσαν +ὅτι +κατέβη +ὁ +διάβολος +πρός +ὑμᾶς +ἔχων +θυμόν +μέγαν +εἰδώς +ὅτι +ὀλίγον +καιρόν +ἔχει +Καί +ὅτε +εἶδεν +ὁ +δράκων +ὅτι +ἐβλήθη +εἰς +τήν +γῆν +ἐδίωξεν +τήν +γυναῖκα +ἥτις +ἔτεκεν +τόν +ἄρσενα +καί +ἐδόθησαν +τῇ +γυναικί +αἱ +δύο +πτέρυγες +τοῦ +ἀετοῦ +τοῦ +μεγάλου +ἵνα +πέτηται +εἰς +τήν +ἔρημον +εἰς +τόν +τόπον +αὐτῆς +ὅπου +τρέφεται +ἐκεῖ +καιρόν +καί +καιρούς +καί +ἥμισυ +καιροῦ +ἀπό +προσώπου +τοῦ +ὄφεως +καί +ἔβαλεν +ὁ +ὄφις +ἐκ +τοῦ +στόματος +αὐτοῦ +ὀπίσω +τῆς +γυναικός +ὕδωρ +ὡς +ποταμόν +ἵνα +αὐτήν +ποταμοφόρητον +ποιήσῃ +καί +ἐβοήθησεν +ἡ +γῆ +τῇ +γυναικί +καί +ἤνοιξεν +ἡ +γῆ +τό +στόμα +αὐτῆς +καί +κατέπιεν +τόν +ποταμόν +ὅν +ἔβαλεν +ὁ +δράκων +ἐκ +τοῦ +στόματος +αὐτοῦ +καί +ὠργίσθη +ὁ +δράκων +ἐπί +τῇ +γυναικί +καί +ἀπῆλθεν +ποιῆσαι +πόλεμον +μετά +τῶν +λοιπῶν +τοῦ +σπέρματος +αὐτῆς +τῶν +τηρούντων +τάς +ἐντολάς +τοῦ +Θεοῦ +καί +ἐχόντων +τήν +μαρτυρίαν +Ἰησοῦ +καί +ἐστάθη +ἐπί +τήν +ἄμμον +τῆς +θαλάσσης +Καί +εἶδον +ἐκ +τῆς +θαλάσσης +θηρίον +ἀναβαῖνον +ἔχον +κέρατα +δέκα +καί +κεφαλάς +ἑπτά +καί +ἐπί +τῶν +κεράτων +αὐτοῦ +δέκα +διαδήματα +καί +ἐπί +τάς +κεφαλάς +αὐτοῦ +ὀνόματα +βλασφημίας +καί +τό +θηρίον +ὅ +εἶδον +ἦν +ὅμοιον +παρδάλει +καί +οἱ +πόδες +αὐτοῦ +ὡς +ἄρκου +καί +τό +στόμα +αὐτοῦ +ὡς +στόμα +λέοντος +καί +ἔδωκεν +αὐτῷ +ὁ +δράκων +τήν +δύναμιν +αὐτοῦ +καί +τόν +θρόνον +αὐτοῦ +καί +ἐξουσίαν +μεγάλην +καί +μίαν +ἐκ +τῶν +κεφαλῶν +αὐτοῦ +ὡς +ἐσφαγμένην +εἰς +θάνατον +καί +ἡ +πληγή +τοῦ +θανάτου +αὐτοῦ +ἐθεραπεύθη +καί +ἐθαυμάσθη +ὅλη +ἡ +γῆ +ὀπίσω +τοῦ +θηρίου +καί +προσεκύνησαν +τῷ +δράκοντι +ὅτι +ἔδωκεν +τήν +ἐξουσίαν +τῷ +θηρίῳ +καί +προσεκύνησαν +τῷ +θηρίῳ +λέγοντες +Τίς +ὅμοιος +τῷ +θηρίῳ +καί +τίς +δύναται +πολεμῆσαι +μετ’ +αὐτοῦ +καί +ἐδόθη +αὐτῷ +στόμα +λαλοῦν +μεγάλα +καί +βλασφημίας +καί +ἐδόθη +αὐτῷ +ἐξουσία +ποιῆσαι +μῆνας +τεσσεράκοντα +δύο +καί +ἤνοιξεν +τό +στόμα +αὐτοῦ +εἰς +βλασφημίας +πρός +τόν +Θεόν +βλασφημῆσαι +τό +ὄνομα +αὐτοῦ +καί +τήν +σκηνήν +αὐτοῦ +τούς +ἐν +τῷ +οὐρανῷ +σκηνοῦντας +καί +ἐδόθη +αὐτῷ +ποιῆσαι +πόλεμον +μετά +τῶν +ἁγίων +καί +νικῆσαι +αὐτούς +καί +ἐδόθη +αὐτῷ +ἐξουσία +ἐπί +πᾶσαν +φυλήν +καί +λαόν +καί +γλῶσσαν +καί +ἔθνος +καί +προσκυνήσουσιν +αὐτόν +πάντες +οἱ +κατοικοῦντες +ἐπί +τῆς +γῆς +οὐ +γέγραπται +οὗ +τό +ὄνομα +αὐτοῦ +ἐν +τῷ +βιβλίῳ +τῆς +ζωῆς +τοῦ +Ἀρνίου +τοῦ +ἐσφαγμένου +ἀπό +καταβολῆς +κόσμου +Εἴ +τις +ἔχει +οὖς +ἀκουσάτω +εἴ +τις +εἰς +αἰχμαλωσίαν +εἰς +αἰχμαλωσίαν +ὑπάγει +εἴ +τις +ἐν +μαχαίρῃ +ἀποκτενεῖ +δεῖ +αὐτόν +ἐν +μαχαίρῃ +ἀποκτανθῆναι +Ὧδε +ἐστιν +ἡ +ὑπομονή +καί +ἡ +πίστις +τῶν +ἁγίων +Καί +εἶδον +ἄλλο +θηρίον +ἀναβαῖνον +ἐκ +τῆς +γῆς +καί +εἶχεν +κέρατα +δύο +ὅμοια +ἀρνίῳ +καί +ἐλάλει +ὡς +δράκων +καί +τήν +ἐξουσίαν +τοῦ +πρώτου +θηρίου +πᾶσαν +ποιεῖ +ἐνώπιον +αὐτοῦ +καί +ποιεῖ +τήν +γῆν +καί +τούς +ἐν +αὐτῇ +κατοικοῦντας +ἵνα +προσκυνήσουσιν +τό +θηρίον +τό +πρῶτον +οὗ +ἐθεραπεύθη +ἡ +πληγή +τοῦ +θανάτου +αὐτοῦ +καί +ποιεῖ +σημεῖα +μεγάλα +ἵνα +καί +ποιῇ +πῦρ +ἐκ +τοῦ +οὐρανοῦ +καταβαίνειν +εἰς +τήν +γῆν +ἐνώπιον +τῶν +ἀνθρώπων +καί +πλανᾷ +τούς +κατοικοῦντας +ἐπί +τῆς +γῆς +διά +τά +σημεῖα +ἅ +ἐδόθη +αὐτῷ +ποιῆσαι +ἐνώπιον +τοῦ +θηρίου +λέγων +τοῖς +κατοικοῦσιν +ἐπί +τῆς +γῆς +ποιῆσαι +εἰκόνα +τῷ +θηρίῳ +ὅς +ἔχει +τήν +πληγήν +τῆς +μαχαίρης +καί +ἔζησεν +καί +ἐδόθη +αὐτῷ +δοῦναι +πνεῦμα +τῇ +εἰκόνι +τοῦ +θηρίου +ἵνα +καί +λαλήσῃ +ἡ +εἰκών +τοῦ +θηρίου +καί +ποιήσῃ +ἵνα +ἐάν +ὅσοι +μή +προσκυνήσωσιν +τῇ +εἰκόνι +τοῦ +θηρίου +ἀποκτανθῶσιν +καί +ποιεῖ +πάντας +τούς +μικρούς +καί +τούς +μεγάλους +καί +τούς +πλουσίους +καί +τούς +πτωχούς +καί +τούς +ἐλευθέρους +καί +τούς +δούλους +ἵνα +δῶσιν +αὐτοῖς +χάραγμα +ἐπί +τῆς +χειρός +αὐτῶν +τῆς +δεξιᾶς +ἤ +ἐπί +τό +μέτωπον +αὐτῶν +καί +ἵνα +μή +τις +δύνηται +ἀγοράσαι +ἤ +πωλῆσαι +εἰ +μή +ὁ +ἔχων +τό +χάραγμα +τό +ὄνομα +τοῦ +θηρίου +ἤ +τόν +ἀριθμόν +τοῦ +ὀνόματος +αὐτοῦ +Ὧδε +ἡ +σοφία +ἐστίν +ὁ +ἔχων +νοῦν +ψηφισάτω +τόν +ἀριθμόν +τοῦ +θηρίου +γάρ +ἀριθμός +ἀνθρώπου +ἐστίν +καί +ὁ +ἀριθμός +αὐτοῦ +ἑξακόσιοι +ἑξήκοντα +ἕξ +Καί +εἶδον +καί +ἰδού +τό +Ἀρνίον +ἑστός +ἐπί +τό +ὄρος +Σιών +καί +μετ’ +αὐτοῦ +ἑκατόν +τεσσεράκοντα +τέσσαρες +χιλιάδες +ἔχουσαι +τό +ὄνομα +αὐτοῦ +καί +τό +ὄνομα +τοῦ +Πατρός +αὐτοῦ +γεγραμμένον +ἐπί +τῶν +μετώπων +αὐτῶν +καί +ἤκουσα +φωνήν +ἐκ +τοῦ +οὐρανοῦ +ὡς +φωνήν +ὑδάτων +πολλῶν +καί +ὡς +φωνήν +βροντῆς +μεγάλης +καί +ἡ +φωνή +ἥν +ἤκουσα +ὡς +κιθαρῳδῶν +κιθαριζόντων +ἐν +ταῖς +κιθάραις +αὐτῶν +καί +ᾄδουσιν +ᾠδήν +καινήν +ἐνώπιον +τοῦ +θρόνου +καί +ἐνώπιον +τῶν +τεσσάρων +ζῴων +καί +τῶν +πρεσβυτέρων +καί +οὐδείς +ἐδύνατο +μαθεῖν +τήν +ᾠδήν +εἰ +μή +αἱ +ἑκατόν +τεσσεράκοντα +τέσσαρες +χιλιάδες +οἱ +ἠγορασμένοι +ἀπό +τῆς +γῆς +οὗτοι +εἰσιν +οἵ +μετά +γυναικῶν +οὐκ +ἐμολύνθησαν +γάρ +παρθένοι +εἰσιν +οὗτοι +οἱ +ἀκολουθοῦντες +τῷ +Ἀρνίῳ +ἄν +ὅπου +ὑπάγῃ +οὗτοι +ἠγοράσθησαν +ἀπό +τῶν +ἀνθρώπων +ἀπαρχή +τῷ +Θεῷ +καί +τῷ +Ἀρνίῳ +καί +ἐν +τῷ +στόματι +αὐτῶν +οὐχ +εὑρέθη +ψεῦδος +ἄμωμοι +εἰσιν +Καί +εἶδον +ἄλλον +ἄγγελον +πετόμενον +ἐν +μεσουρανήματι +ἔχοντα +εὐαγγέλιον +αἰώνιον +εὐαγγελίσαι +ἐπί +τούς +καθημένους +ἐπί +τῆς +γῆς +καί +ἐπί +πᾶν +ἔθνος +καί +φυλήν +καί +γλῶσσαν +καί +λαόν +λέγων +ἐν +φωνῇ +μεγάλῃ +Φοβήθητε +τόν +Θεόν +καί +δότε +αὐτῷ +δόξαν +ὅτι +ἦλθεν +ἡ +ὥρα +τῆς +κρίσεως +αὐτοῦ +καί +προσκυνήσατε +τῷ +ποιήσαντι +τόν +οὐρανόν +καί +τήν +γῆν +καί +θάλασσαν +καί +πηγάς +ὑδάτων +Καί +ἄλλος +ἄγγελος +δεύτερος +ἠκολούθησεν +λέγων +Ἔπεσεν +ἔπεσεν +Βαβυλών +ἡ +μεγάλη +ἥ +ἐκ +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +πορνείας +αὐτῆς +πεπότικεν +πάντα +τά +ἔθνη +Καί +ἄλλος +ἄγγελος +τρίτος +ἠκολούθησεν +αὐτοῖς +λέγων +ἐν +φωνῇ +μεγάλῃ +Εἴ +τις +προσκυνεῖ +τό +θηρίον +καί +τήν +εἰκόνα +αὐτοῦ +καί +λαμβάνει +χάραγμα +ἐπί +τοῦ +μετώπου +αὐτοῦ +ἤ +ἐπί +τήν +χεῖρα +αὐτοῦ +καί +αὐτός +πίεται +ἐκ +τοῦ +οἴνου +τοῦ +θυμοῦ +τοῦ +Θεοῦ +τοῦ +κεκερασμένου +ἀκράτου +ἐν +τῷ +ποτηρίῳ +τῆς +ὀργῆς +αὐτοῦ +καί +βασανισθήσεται +ἐν +πυρί +καί +θείῳ +ἐνώπιον +ἀγγέλων +ἁγίων +καί +ἐνώπιον +τοῦ +Ἀρνίου +καί +ὁ +καπνός +τοῦ +βασανισμοῦ +αὐτῶν +εἰς +αἰῶνας +αἰώνων +ἀναβαίνει +καί +οὐκ +ἔχουσιν +ἀνάπαυσιν +ἡμέρας +καί +νυκτός +οἱ +προσκυνοῦντες +τό +θηρίον +καί +τήν +εἰκόνα +αὐτοῦ +καί +εἴ +τις +λαμβάνει +τό +χάραγμα +τοῦ +ὀνόματος +αὐτοῦ +Ὧδε +ἐστίν +ἡ +ὑπομονή +τῶν +ἁγίων +οἱ +τηροῦντες +τάς +ἐντολάς +τοῦ +Θεοῦ +καί +τήν +πίστιν +Ἰησοῦ +Καί +ἤκουσα +φωνῆς +ἐκ +τοῦ +οὐρανοῦ +λεγούσης +Γράψον +Μακάριοι +οἱ +νεκροί +οἱ +ἐν +Κυρίῳ +ἀποθνῄσκοντες +ἀπάρτι +ναί +λέγει +τό +Πνεῦμα +ἵνα +ἀναπαήσονται +ἐκ +τῶν +κόπων +αὐτῶν +γάρ +τά +ἔργα +αὐτῶν +ἀκολουθεῖ +μετ’ +αὐτῶν +Καί +εἶδον +καί +ἰδού +νεφέλη +λευκή +καί +ἐπί +τήν +νεφέλην +καθήμενον +ὅμοιον +υἱόν +ἀνθρώπου +ἔχων +ἐπί +τῆς +κεφαλῆς +αὐτοῦ +στέφανον +χρυσοῦν +καί +ἐν +τῇ +χειρί +αὐτοῦ +δρέπανον +ὀξύ +Καί +ἄλλος +ἄγγελος +ἐξῆλθεν +ἐκ +τοῦ +ναοῦ +κράζων +ἐν +φωνῇ +μεγάλῃ +τῷ +καθημένῳ +ἐπί +τῆς +νεφέλης +Πέμψον +τό +δρέπανον +σου +καί +θέρισον +ὅτι +ἦλθεν +ἡ +ὥρα +θερίσαι +ὅτι +ἐξηράνθη +ὁ +θερισμός +τῆς +γῆς +καί +ἔβαλεν +ὁ +καθήμενος +ἐπί +τῆς +νεφέλης +τό +δρέπανον +αὐτοῦ +ἐπί +τήν +γῆν +καί +ἐθερίσθη +ἡ +γῆ +Καί +ἄλλος +ἄγγελος +ἐξῆλθεν +ἐκ +τοῦ +ναοῦ +τοῦ +ἐν +τῷ +οὐρανῷ +ἔχων +καί +αὐτός +δρέπανον +ὀξύ +Καί +ἄλλος +ἄγγελος +ὁ +ἔχων +ἐξουσίαν +ἐπί +τοῦ +πυρός +ἐξῆλθεν +ἐκ +τοῦ +θυσιαστηρίου +καί +ἐφώνησεν +φωνῇ +μεγάλῃ +τῷ +ἔχοντι +τό +δρέπανον +τό +ὀξύ +λέγων +Πέμψον +σου +τό +δρέπανον +τό +ὀξύ +καί +τρύγησον +τούς +βότρυας +τῆς +ἀμπέλου +τῆς +γῆς +ὅτι +ἤκμασαν +αἱ +σταφυλαί +αὐτῆς +καί +ἔβαλεν +ὁ +ἄγγελος +τό +δρέπανον +αὐτοῦ +εἰς +τήν +γῆν +καί +ἐτρύγησεν +τήν +ἄμπελον +τῆς +γῆς +καί +ἔβαλεν +εἰς +τήν +ληνόν +τοῦ +θυμοῦ +τοῦ +Θεοῦ +τόν +μέγαν +καί +ἐπατήθη +ἡ +ληνός +ἔξωθεν +τῆς +πόλεως +καί +ἐξῆλθεν +αἷμα +ἐκ +τῆς +ληνοῦ +ἄχρι +τῶν +χαλινῶν +τῶν +ἵππων +ἀπό +σταδίων +χιλίων +ἑξακοσίων +Καί +εἶδον +ἄλλο +σημεῖον +ἐν +τῷ +οὐρανῷ +μέγα +καί +θαυμαστόν +ἀγγέλους +ἑπτά +ἔχοντας +πληγάς +ἑπτά +τάς +ἐσχάτας +ὅτι +ἐν +αὐταῖς +ἐτελέσθη +ὁ +θυμός +τοῦ +Θεοῦ +Καί +εἶδον +ὡς +θάλασσαν +ὑαλίνην +μεμιγμένην +πυρί +καί +τούς +νικῶντας +ἐκ +τοῦ +θηρίου +καί +ἐκ +τῆς +εἰκόνος +αὐτοῦ +καί +ἐκ +τοῦ +ἀριθμοῦ +τοῦ +ὀνόματος +αὐτοῦ +ἑστῶτας +ἐπί +τήν +θάλασσαν +τήν +ὑαλίνην +ἔχοντας +κιθάρας +τοῦ +Θεοῦ +καί +ᾄδουσιν +τήν +ᾠδήν +Μωϋσέως +τοῦ +δούλου +τοῦ +Θεοῦ +καί +τήν +ᾠδήν +τοῦ +Ἀρνίου +λέγοντες +Μεγάλα +καί +θαυμαστά +τά +ἔργα +σου +Κύριε +ὁ +Θεός +ὁ +Παντοκράτωρ +δίκαιαι +καί +ἀληθιναί +αἱ +ὁδοί +σου +ὁ +Βασιλεύς +τῶν +ἐθνῶν +τίς +οὐ +μή +φοβηθῇ +Κύριε +καί +δοξάσει +τό +ὄνομα +σου +ὅτι +μόνος +ὅσιος +ὅτι +πάντα +τά +ἔθνη +ἥξουσιν +καί +προσκυνήσουσιν +ἐνώπιον +σου +ὅτι +τά +δικαιώματα +σου +ἐφανερώθησαν +Καί +μετά +ταῦτα +εἶδον +καί +ἠνοίγη +ὁ +ναός +τῆς +σκηνῆς +τοῦ +μαρτυρίου +ἐν +τῷ +οὐρανῷ +καί +ἐξῆλθον +οἱ +ἑπτά +ἄγγελοι +οἱ +ἔχοντες +τάς +ἑπτά +πληγάς +ἐκ +τοῦ +ναοῦ +ἐνδεδυμένοι +λίνον +καθαρόν +λαμπρόν +καί +περιεζωσμένοι +περί +τά +στήθη +ζώνας +χρυσᾶς +καί +ἕν +ἐκ +τῶν +τεσσάρων +ζῴων +ἔδωκεν +τοῖς +ἑπτά +ἀγγέλοις +ἑπτά +φιάλας +χρυσᾶς +γεμούσας +τοῦ +θυμοῦ +τοῦ +Θεοῦ +τοῦ +ζῶντος +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +καί +ἐγεμίσθη +ὁ +ναός +καπνοῦ +ἐκ +τῆς +δόξης +τοῦ +Θεοῦ +καί +ἐκ +τῆς +δυνάμεως +αὐτοῦ +καί +οὐδείς +ἐδύνατο +εἰσελθεῖν +εἰς +τόν +ναόν +ἄχρι +τελεσθῶσιν +αἱ +ἑπτά +πληγαί +τῶν +ἑπτά +ἀγγέλων +Καί +ἤκουσα +μεγάλης +φωνῆς +ἐκ +τοῦ +ναοῦ +λεγούσης +τοῖς +ἑπτά +ἀγγέλοις +Ὑπάγετε +καί +ἐκχέετε +τάς +ἑπτά +φιάλας +τοῦ +θυμοῦ +τοῦ +Θεοῦ +εἰς +τήν +γῆν +Καί +ἀπῆλθεν +ὁ +πρῶτος +καί +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +εἰς +τήν +γῆν +καί +ἐγένετο +ἕλκος +κακόν +καί +πονηρόν +ἐπί +τούς +ἀνθρώπους +τούς +ἔχοντας +τό +χάραγμα +τοῦ +θηρίου +καί +τούς +προσκυνοῦντας +τῇ +εἰκόνι +αὐτοῦ +Καί +ὁ +δεύτερος +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +εἰς +τήν +θάλασσαν +καί +ἐγένετο +αἷμα +ὡς +νεκροῦ +καί +πᾶσα +ψυχή +ζωῆς +τά +ἐν +τῇ +θαλάσσῃ +ἀπέθανεν +Καί +ὁ +τρίτος +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +εἰς +τούς +ποταμούς +καί +τάς +πηγάς +τῶν +ὑδάτων +καί +ἐγένετο +αἷμα +Καί +ἤκουσα +τοῦ +ἀγγέλου +τῶν +ὑδάτων +λέγοντος +Δίκαιος +εἶ +ὁ +ὤν +καί +ὁ +ἦν +ὁ +Ὅσιος +ὅτι +ταῦτα +ἔκρινας +ὅτι +αἷμα +ἁγίων +καί +προφητῶν +ἐξέχεαν +καί +αἷμα +αὐτοῖς +δέδωκας +πεῖν +ἄξιοι +εἰσιν +Καί +ἤκουσα +τοῦ +θυσιαστηρίου +λέγοντος +Ναί +Κύριε +ὁ +Θεός +ὁ +Παντοκράτωρ +ἀληθιναί +καί +δίκαιαι +αἱ +κρίσεις +σου +Καί +ὁ +τέταρτος +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +ἐπί +τόν +ἥλιον +καί +ἐδόθη +αὐτῷ +καυματίσαι +τούς +ἀνθρώπους +ἐν +πυρί +καί +ἐκαυματίσθησαν +οἱ +ἄνθρωποι +καῦμα +μέγα +καί +ἐβλασφήμησαν +τό +ὄνομα +τοῦ +Θεοῦ +τοῦ +ἔχοντος +τήν +ἐξουσίαν +ἐπί +τάς +πληγάς +ταύτας +καί +οὐ +μετενόησαν +δοῦναι +αὐτῷ +δόξαν +Καί +ὁ +πέμπτος +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +ἐπί +τόν +θρόνον +τοῦ +θηρίου +καί +ἐγένετο +ἡ +βασιλεία +αὐτοῦ +ἐσκοτωμένη +καί +ἐμασῶντο +τάς +γλώσσας +αὐτῶν +ἐκ +τοῦ +πόνου +καί +ἐβλασφήμησαν +τόν +Θεόν +τοῦ +οὐρανοῦ +ἐκ +τῶν +πόνων +αὐτῶν +καί +ἐκ +τῶν +ἑλκῶν +αὐτῶν +καί +οὐ +μετενόησαν +ἐκ +τῶν +ἔργων +αὐτῶν +Καί +ὁ +ἕκτος +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +ἐπί +τόν +ποταμόν +τόν +μέγαν +Εὐφράτην +καί +ἐξηράνθη +τό +ὕδωρ +αὐτοῦ +ἵνα +ἑτοιμασθῇ +ἡ +ὁδός +τῶν +βασιλέων +τῶν +ἀπό +ἀνατολῆς +ἡλίου +Καί +εἶδον +ἐκ +τοῦ +στόματος +τοῦ +δράκοντος +καί +ἐκ +τοῦ +στόματος +τοῦ +θηρίου +καί +ἐκ +τοῦ +στόματος +τοῦ +ψευδοπροφήτου +πνεύματα +τρία +ἀκάθαρτα +ὡς +βάτραχοι +γάρ +εἰσίν +πνεύματα +δαιμονίων +ποιοῦντα +σημεῖα +ἅ +ἐκπορεύεται +ἐπί +τούς +βασιλεῖς +τῆς +οἰκουμένης +ὅλης +συναγαγεῖν +αὐτούς +εἰς +τόν +πόλεμον +τῆς +ἡμέρας +τῆς +μεγάλης +τοῦ +Θεοῦ +τοῦ +Παντοκράτορος +Ἰδού +ἔρχομαι +ὡς +κλέπτης +μακάριος +ὁ +γρηγορῶν +καί +τηρῶν +τά +ἱμάτια +αὐτοῦ +ἵνα +μή +γυμνός +περιπατῇ +καί +βλέπωσιν +τήν +ἀσχημοσύνην +αὐτοῦ +καί +συνήγαγεν +αὐτούς +εἰς +τόν +τόπον +τόν +καλούμενον +Ἑβραϊστί +Ἁρμαγεδών +Καί +ὁ +ἕβδομος +ἐξέχεεν +τήν +φιάλην +αὐτοῦ +ἐπί +τόν +ἀέρα +καί +ἐξῆλθεν +φωνή +μεγάλη +ἐκ +τοῦ +ναοῦ +ἀπό +τοῦ +θρόνου +λέγουσα +Γέγονεν +καί +ἐγένοντο +ἀστραπαί +καί +φωναί +καί +βρονταί +καί +σεισμός +μέγας +ἐγένετο +οἷος +οὐκ +ἐγένετο +ἀφ’ +οὗ +ἄνθρωπος +ἐγένετο +ἐπί +τῆς +γῆς +τηλικοῦτος +σεισμός +οὕτω +μέγας +καί +ἐγένετο +ἡ +πόλις +ἡ +μεγάλη +εἰς +τρία +μέρη +καί +αἱ +πόλεις +τῶν +ἐθνῶν +ἔπεσαν +καί +Βαβυλών +ἡ +μεγάλη +ἐμνήσθη +ἐνώπιον +τοῦ +Θεοῦ +δοῦναι +αὐτῇ +τό +ποτήριον +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +ὀργῆς +αὐτοῦ +καί +πᾶσα +νῆσος +ἔφυγεν +καί +ὄρη +οὐχ +εὑρέθησαν +καί +χάλαζα +μεγάλη +ὡς +ταλαντιαία +καταβαίνει +ἐκ +τοῦ +οὐρανοῦ +ἐπί +τούς +ἀνθρώπους +καί +ἐβλασφήμησαν +οἱ +ἄνθρωποι +τόν +Θεόν +ἐκ +τῆς +πληγῆς +τῆς +χαλάζης +ὅτι +μεγάλη +ἐστίν +ἡ +πληγή +αὐτῆς +σφόδρα +Καί +ἦλθεν +εἷς +ἐκ +τῶν +ἑπτά +ἀγγέλων +τῶν +ἐχόντων +τάς +ἑπτά +φιάλας +καί +ἐλάλησεν +μετ’ +ἐμοῦ +λέγων +Δεῦρο +δείξω +σοι +τό +κρίμα +τῆς +πόρνης +τῆς +μεγάλης +τῆς +καθημένης +ἐπί +ὑδάτων +πολλῶν +μεθ’ +ἧς +ἐπόρνευσαν +οἱ +βασιλεῖς +τῆς +γῆς +καί +ἐμεθύσθησαν +οἱ +κατοικοῦντες +τήν +γῆν +ἐκ +τοῦ +οἴνου +τῆς +πορνείας +αὐτῆς +καί +ἀπήνεγκεν +με +εἰς +ἔρημον +ἐν +Πνεύματι +καί +εἶδον +γυναῖκα +καθημένην +ἐπί +θηρίον +κόκκινον +γέμοντα +ὀνόματα +βλασφημίας +ἔχων +κεφαλάς +ἑπτά +καί +κέρατα +δέκα +καί +ἡ +γυνή +ἦν +περιβεβλημένη +πορφυροῦν +καί +κόκκινον +καί +κεχρυσωμένη +χρυσίῳ +καί +λίθῳ +τιμίῳ +καί +μαργαρίταις +ἔχουσα +ἐν +τῇ +χειρί +αὐτῆς +ποτήριον +χρυσοῦν +γέμον +βδελυγμάτων +καί +τά +ἀκάθαρτα +τῆς +πορνείας +αὐτῆς +καί +ἐπί +τό +μέτωπον +αὐτῆς +γεγραμμένον +ὄνομα +μυστήριον +ΒΑΒΥΛΩΝ +Η +ΜΕΓΑΛΗ +Η +ΜΗΤΗΡ +ΤΩΝ +ΠΟΡΝΩΝ +ΚΑΙ +ΤΩΝ +ΒΔΕΛΥΓΜΑΤΩΝ +ΤΗΣ +ΓΗΣ +καί +εἶδον +τήν +γυναῖκα +μεθύουσαν +ἐκ +τοῦ +αἵματος +τῶν +ἁγίων +καί +ἐκ +τοῦ +αἵματος +τῶν +μαρτύρων +Ἰησοῦ +Καί +ἐθαύμασα +ἰδών +αὐτήν +θαῦμα +μέγα +καί +εἶπεν +μοι +ὁ +ἄγγελος +Διά +τί +ἐθαύμασας +ἐγώ +ἐρῶ +σοι +τό +μυστήριον +τῆς +γυναικός +καί +τοῦ +θηρίου +τοῦ +βαστάζοντος +αὐτήν +τοῦ +ἔχοντος +τάς +ἑπτά +κεφαλάς +καί +τά +δέκα +κέρατα +τό +θηρίον +ὅ +εἶδες +ἦν +καί +οὐκ +ἔστιν +καί +μέλλει +ἀναβαίνειν +ἐκ +τῆς +ἀβύσσου +καί +εἰς +ἀπώλειαν +ὑπάγει +καί +θαυμασθήσονται +οἱ +κατοικοῦντες +ἐπί +τῆς +γῆς +ὧν +τό +ὄνομα +οὐ +γέγραπται +ἐπί +τό +βιβλίον +τῆς +ζωῆς +ἀπό +καταβολῆς +κόσμου +βλεπόντων +τό +θηρίον +ὅτι +ἦν +καί +οὐκ +ἔστιν +καί +παρέσται +Ὧδε +ὁ +νοῦς +ὁ +ἔχων +σοφίαν +αἱ +ἑπτά +κεφαλαί +ἑπτά +ὄρη +εἰσίν +ὅπου +ἡ +γυνή +κάθηται +ἐπ’ +αὐτῶν +καί +βασιλεῖς +ἑπτά +εἰσιν +οἱ +πέντε +ἔπεσαν +ὁ +εἷς +ἔστιν +ὁ +ἄλλος +οὔπω +ἦλθεν +καί +ὅταν +ἔλθῃ +ὀλίγον +αὐτόν +μεῖναι +δεῖ +καί +τό +θηρίον +ὅ +ἦν +καί +οὐκ +ἔστιν +καί +αὐτός +ὄγδοος +ἐστιν +καί +ἐκ +τῶν +ἑπτά +ἐστιν +καί +εἰς +ἀπώλειαν +ὑπάγει +καί +τά +δέκα +κέρατα +ἅ +εἶδες +εἰσιν +δέκα +βασιλεῖς +οἵτινες +βασιλείαν +οὔπω +ἔλαβον +ἀλλά +ἐξουσίαν +ὡς +βασιλεῖς +μίαν +ὥραν +λαμβάνουσιν +μετά +τοῦ +θηρίου +οὗτοι +μίαν +γνώμην +ἔχουσιν +καί +τήν +δύναμιν +καί +ἐξουσίαν +αὐτῶν +τῷ +θηρίῳ +διδόασιν +οὗτοι +μετά +τοῦ +Ἀρνίου +πολεμήσουσιν +καί +τό +Ἀρνίον +νικήσει +αὐτούς +ὅτι +ἐστίν +Κύριος +κυρίων +καί +Βασιλεύς +βασιλέων +καί +οἱ +μετ’ +αὐτοῦ +κλητοί +καί +ἐκλεκτοί +καί +πιστοί +Καί +λέγει +μοι +Τά +ὕδατα +ἅ +εἶδες +οὗ +ἡ +πόρνη +κάθηται +εἰσίν +λαοί +καί +ὄχλοι +καί +ἔθνη +καί +γλῶσσαι +καί +τά +δέκα +κέρατα +ἅ +εἶδες +καί +τό +θηρίον +οὗτοι +μισήσουσιν +τήν +πόρνην +καί +ποιήσουσιν +αὐτήν +ἠρημωμένην +καί +γυμνήν +καί +τάς +σάρκας +αὐτῆς +φάγονται +καί +αὐτήν +κατακαύσουσιν +ἐν +πυρί +γάρ +ὁ +Θεός +ἔδωκεν +εἰς +τάς +καρδίας +αὐτῶν +ποιῆσαι +τήν +γνώμην +αὐτοῦ +καί +ποιῆσαι +μίαν +γνώμην +καί +δοῦναι +τήν +βασιλείαν +αὐτῶν +τῷ +θηρίῳ +ἄχρι +τελεσθήσονται +οἱ +λόγοι +τοῦ +Θεοῦ +καί +ἡ +γυνή +ἥν +εἶδες +ἔστιν +ἡ +πόλις +ἡ +μεγάλη +ἡ +ἔχουσα +βασιλείαν +ἐπί +τῶν +βασιλέων +τῆς +γῆς +Μετά +ταῦτα +εἶδον +ἄλλον +ἄγγελον +καταβαίνοντα +ἐκ +τοῦ +οὐρανοῦ +ἔχοντα +ἐξουσίαν +μεγάλην +καί +ἡ +γῆ +ἐφωτίσθη +ἐκ +τῆς +δόξης +αὐτοῦ +καί +ἔκραξεν +ἐν +ἰσχυρᾷ +φωνῇ +λέγων +Ἔπεσεν +ἔπεσεν +Βαβυλών +ἡ +μεγάλη +καί +ἐγένετο +κατοικητήριον +δαιμονίων +καί +φυλακή +παντός +πνεύματος +ἀκαθάρτου +καί +φυλακή +παντός +ὀρνέου +ἀκαθάρτου +καί +μεμισημένου +ὅτι +ἐκ +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +πορνείας +αὐτῆς +πέπωκαν +πάντα +τά +ἔθνη +καί +οἱ +βασιλεῖς +τῆς +γῆς +μετ’ +αὐτῆς +ἐπόρνευσαν +καί +οἱ +ἔμποροι +τῆς +γῆς +ἐκ +τῆς +δυνάμεως +τοῦ +στρήνους +αὐτῆς +ἐπλούτησαν +Καί +ἤκουσα +ἄλλην +φωνήν +ἐκ +τοῦ +οὐρανοῦ +λέγουσαν +ὁ +λαός +μου +Ἐξέλθατε +ἐξ +αὐτῆς +ἵνα +μή +συνκοινωνήσητε +ταῖς +ἁμαρτίαις +αὐτῆς +καί +ἵνα +ἐκ +τῶν +πληγῶν +αὐτῆς +μή +λάβητε +ὅτι +ἐκολλήθησαν +αὐτῆς +αἱ +ἁμαρτίαι +ἄχρι +τοῦ +οὐρανοῦ +καί +ἐμνημόνευσεν +ὁ +Θεός +τά +ἀδικήματα +αὐτῆς +ἀπόδοτε +αὐτῇ +ὡς +καί +αὐτή +ἀπέδωκεν +καί +διπλώσατε +τά +διπλᾶ +κατά +τά +ἔργα +αὐτῆς +ἐν +τῷ +ποτηρίῳ +ᾧ +ἐκέρασεν +κεράσατε +αὐτῇ +διπλοῦν +ὅσα +ἐδόξασεν +αὐτήν +καί +ἐστρηνίασεν +τοσοῦτον +βασανισμόν +καί +πένθος +δότε +αὐτῇ +ὅτι +ἐν +τῇ +καρδίᾳ +αὐτῆς +λέγει +ὅτι +Κάθημαι +βασίλισσα +καί +χήρα +οὐκ +εἰμί +καί +πένθος +οὐ +μή +ἴδω +διά +τοῦτο +ἐν +μιᾷ +ἡμέρᾳ +ἥξουσιν +αἱ +πληγαί +αὐτῆς +θάνατος +καί +πένθος +καί +λιμός +καί +ἐν +πυρί +κατακαυθήσεται +ὅτι +ἰσχυρός +Κύριος +ὁ +Θεός +ὁ +κρίνας +αὐτήν +καί +κλαύσουσιν +καί +κόψονται +ἐπ’ +αὐτήν +οἱ +βασιλεῖς +τῆς +γῆς +οἱ +μετ’ +αὐτῆς +πορνεύσαντες +καί +στρηνιάσαντες +ὅταν +βλέπωσιν +τόν +καπνόν +τῆς +πυρώσεως +αὐτῆς +ἀπό +μακρόθεν +ἑστηκότες +διά +τόν +φόβον +τοῦ +βασανισμοῦ +αὐτῆς +λέγοντες +Οὐαί +οὐαί +ἡ +πόλις +ἡ +μεγάλη +Βαβυλών +ἡ +πόλις +ἡ +ἰσχυρά +ὅτι +μιᾷ +ὥρᾳ +ἦλθεν +ἡ +κρίσις +σου +καί +οἱ +ἔμποροι +τῆς +γῆς +κλαίουσιν +καί +πενθοῦσιν +ἐπ’ +αὐτήν +ὅτι +οὐδείς +ἀγοράζει +οὐκέτι +τόν +γόμον +αὐτῶν +γόμον +χρυσοῦ +καί +ἀργύρου +καί +λίθου +τιμίου +καί +μαργαριτῶν +καί +βυσσίνου +καί +πορφύρας +καί +σιρικοῦ +καί +κοκκίνου +καί +πᾶν +ξύλον +θύϊνον +καί +πᾶν +σκεῦος +ἐλεφάντινον +καί +πᾶν +σκεῦος +ἐκ +ξύλου +τιμιωτάτου +καί +χαλκοῦ +καί +σιδήρου +καί +μαρμάρου +καί +κιννάμωμον +καί +ἄμωμον +καί +θυμιάματα +καί +μύρον +καί +λίβανον +καί +οἶνον +καί +ἔλαιον +καί +σεμίδαλιν +καί +σῖτον +καί +κτήνη +καί +πρόβατα +καί +ἵππων +καί +ῥεδῶν +καί +σωμάτων +καί +ψυχάς +ἀνθρώπων +καί +ἡ +ὀπώρα +σου +τῆς +ἐπιθυμίας +τῆς +ψυχῆς +ἀπῆλθεν +ἀπό +σοῦ +καί +πάντα +τά +λιπαρά +καί +τά +λαμπρά +ἀπώλετο +ἀπό +σοῦ +καί +οὐκέτι +οὐ +μή +αὐτά +εὑρήσουσιν +οἱ +ἔμποροι +τούτων +οἱ +πλουτήσαντες +ἀπ’ +αὐτῆς +ἀπό +μακρόθεν +στήσονται +διά +τόν +φόβον +τοῦ +βασανισμοῦ +αὐτῆς +κλαίοντες +καί +πενθοῦντες +λέγοντες +Οὐαί +οὐαί +ἡ +πόλις +ἡ +μεγάλη +ἡ +περιβεβλημένη +βύσσινον +καί +πορφυροῦν +καί +κόκκινον +καί +κεχρυσωμένη +ἐν +χρυσίῳ +καί +λίθῳ +τιμίῳ +καί +μαργαρίτῃ +ὅτι +μιᾷ +ὥρᾳ +ἠρημώθη +ὁ +τοσοῦτος +πλοῦτος +καί +πᾶς +κυβερνήτης +καί +πᾶς +ὁ +ἐπί +τόπον +πλέων +καί +ναῦται +καί +ὅσοι +τήν +θάλασσαν +ἐργάζονται +ἀπό +μακρόθεν +ἔστησαν +καί +ἔκραζον +βλέποντες +τόν +καπνόν +τῆς +πυρώσεως +αὐτῆς +λέγοντες +Τίς +ὁμοία +τῇ +πόλει +τῇ +μεγάλῃ +καί +ἔβαλον +χοῦν +ἐπί +τάς +κεφαλάς +αὐτῶν +καί +ἔκραζον +κλαίοντες +καί +πενθοῦντες +λέγοντες +Οὐαί +οὐαί +ἡ +πόλις +ἡ +μεγάλη +ἐν +ᾗ +ἐπλούτησαν +πάντες +οἱ +ἔχοντες +τά +πλοῖα +ἐν +τῇ +θαλάσσῃ +ἐκ +τῆς +τιμιότητος +αὐτῆς +ὅτι +μιᾷ +ὥρᾳ +ἠρημώθη +Εὐφραίνου +ἐπ’ +αὐτῇ +οὐρανέ +καί +οἱ +ἅγιοι +καί +οἱ +ἀπόστολοι +καί +οἱ +προφῆται +ὅτι +ἔκρινεν +ὁ +Θεός +τό +κρίμα +ὑμῶν +ἐξ +αὐτῆς +Καί +ἦρεν +εἷς +ἄγγελος +ἰσχυρός +λίθον +ὡς +μύλινον +μέγαν +καί +ἔβαλεν +εἰς +τήν +θάλασσαν +λέγων +Οὕτως +ὁρμήματι +βληθήσεται +Βαβυλών +ἡ +μεγάλη +πόλις +καί +οὐ +μή +εὑρεθῇ +ἔτι +καί +φωνή +κιθαρῳδῶν +καί +μουσικῶν +καί +αὐλητῶν +καί +σαλπιστῶν +οὐ +μή +ἀκουσθῇ +ἐν +σοί +ἔτι +καί +πᾶς +τεχνίτης +πάσης +τέχνης +οὐ +μή +εὑρεθῇ +ἐν +σοί +ἔτι +καί +φωνή +μύλου +οὐ +μή +ἀκουσθῇ +ἐν +σοί +ἔτι +καί +φῶς +λύχνου +οὐ +μή +φάνῃ +ἐν +σοί +ἔτι +καί +φωνή +νυμφίου +καί +νύμφης +οὐ +μή +ἀκουσθῇ +ἐν +σοί +ἔτι +ὅτι +οἱ +ἔμποροι +σου +ἦσαν +οἱ +μεγιστᾶνες +τῆς +γῆς +ὅτι +ἐν +τῇ +φαρμακίᾳ +σου +ἐπλανήθησαν +πάντα +τά +ἔθνη +καί +ἐν +αὐτῇ +εὑρέθη +αἷμα +προφητῶν +καί +ἁγίων +καί +πάντων +τῶν +ἐσφαγμένων +ἐπί +τῆς +γῆς +Μετά +ταῦτα +ἤκουσα +ὡς +φωνήν +μεγάλην +ὄχλου +πολλοῦ +ἐν +τῷ +οὐρανῷ +λεγόντων +Ἁλληλουϊά +ἡ +σωτηρία +καί +ἡ +δόξα +καί +ἡ +δύναμις +τοῦ +Θεοῦ +ἡμῶν +ὅτι +ἀληθιναί +καί +δίκαιαι +αἱ +κρίσεις +αὐτοῦ +ὅτι +ἔκρινεν +τήν +πόρνην +τήν +μεγάλην +ἥτις +ἔφθειρεν +τήν +γῆν +ἐν +τῇ +πορνείᾳ +αὐτῆς +καί +ἐξεδίκησεν +τό +αἷμα +τῶν +δούλων +αὐτοῦ +ἐκ +χειρός +αὐτῆς +καί +δεύτερον +εἴρηκαν +Ἁλληλουϊά +καί +ὁ +καπνός +αὐτῆς +ἀναβαίνει +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +καί +ἔπεσαν +οἱ +πρεσβύτεροι +οἱ +εἴκοσι +τέσσαρες +καί +τά +τέσσερα +ζῷα +καί +προσεκύνησαν +τῷ +Θεῷ +τῷ +καθημένῳ +ἐπί +τῷ +θρόνῳ +λέγοντες +Ἀμήν +Ἁλληλουϊά +καί +φωνή +ἀπό +τοῦ +θρόνου +ἐξῆλθεν +λέγουσα +Αἰνεῖτε +τῷ +Θεῷ +ἡμῶν +πάντες +οἱ +δοῦλοι +αὐτοῦ +οἱ +φοβούμενοι +αὐτόν +οἱ +μικροί +καί +οἱ +μεγάλοι +Καί +ἤκουσα +ὡς +φωνήν +ὄχλου +πολλοῦ +καί +ὡς +φωνήν +ὑδάτων +πολλῶν +καί +ὡς +φωνήν +βροντῶν +ἰσχυρῶν +λεγόντων +Ἁλληλουϊά +ὅτι +ἐβασίλευσεν +Κύριος +ὁ +Θεός +ἡμῶν +ὁ +Παντοκράτωρ +χαίρωμεν +καί +ἀγαλλιῶμεν +καί +δώσομεν +τήν +δόξαν +αὐτῷ +ὅτι +ἦλθεν +ὁ +γάμος +τοῦ +Ἀρνίου +καί +ἡ +γυνή +αὐτοῦ +ἡτοίμασεν +ἑαυτήν +καί +ἐδόθη +αὐτῇ +ἵνα +περιβάληται +βύσσινον +λαμπρόν +καθαρόν +γάρ +τό +βύσσινον +τά +δικαιώματα +τῶν +ἁγίων +ἐστίν +Καί +λέγει +μοι +Γράψον +Μακάριοι +οἱ +εἰς +τό +δεῖπνον +τοῦ +γάμου +τοῦ +Ἀρνίου +κεκλημένοι +καί +λέγει +μοι +Οὗτοι +οἱ +λόγοι +ἀληθινοί +τοῦ +Θεοῦ +εἰσιν +καί +ἔπεσα +ἔμπροσθεν +τῶν +ποδῶν +αὐτοῦ +προσκυνῆσαι +αὐτῷ +καί +λέγει +μοι +Ὅρα +μή +εἰμι +σύνδουλος +σού +καί +τῶν +ἀδελφῶν +σου +τῶν +ἐχόντων +τήν +μαρτυρίαν +Ἰησοῦ +τῷ +Θεῷ +προσκύνησον +γάρ +ἡ +μαρτυρία +Ἰησοῦ +ἐστιν +τό +πνεῦμα +τῆς +προφητείας +Καί +εἶδον +τόν +οὐρανόν +ἠνεῳγμένον +καί +ἰδού +ἵππος +λευκός +καί +ὁ +καθήμενος +ἐπ’ +αὐτόν +καλούμενος +Πιστός +καί +Ἀληθινός +καί +ἐν +δικαιοσύνῃ +κρίνει +καί +πολεμεῖ +δέ +οἱ +ὀφθαλμοί +αὐτοῦ +φλόξ +πυρός +καί +ἐπί +τήν +κεφαλήν +αὐτοῦ +διαδήματα +πολλά +ἔχων +ὄνομα +γεγραμμένον +ὅ +οὐδείς +οἶδεν +εἰ +μή +αὐτός +καί +περιβεβλημένος +ἱμάτιον +βεβαμμένον +αἵματι +καί +κέκληται +τό +ὄνομα +αὐτοῦ +Ὁ +Λόγος +τοῦ +Θεοῦ +καί +τά +στρατεύματα +τά +ἐν +τῷ +οὐρανῷ +ἠκολούθει +αὐτῷ +ἐφ’ +ἵπποις +λευκοῖς +ἐνδεδυμένοι +βύσσινον +λευκόν +καθαρόν +καί +ἐκ +τοῦ +στόματος +αὐτοῦ +ἐκπορεύεται +ῥομφαία +ὀξεῖα +ἵνα +ἐν +αὐτῇ +πατάξῃ +τά +ἔθνη +καί +αὐτός +ποιμανεῖ +αὐτούς +ἐν +ῥάβδῳ +σιδηρᾷ +καί +αὐτός +πατεῖ +τήν +ληνόν +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +ὀργῆς +τοῦ +Θεοῦ +τοῦ +Παντοκράτορος +καί +ἔχει +ἐπί +τό +ἱμάτιον +καί +ἐπί +τόν +μηρόν +αὐτοῦ +ὄνομα +γεγραμμένον +ΒΑΣΙΛΕΥΣ +ΒΑΣΙΛΕΩΝ +ΚΑΙ +ΚΥΡΙΟΣ +ΚΥΡΙΩΝ +Καί +εἶδον +ἕνα +ἄγγελον +ἑστῶτα +ἐν +τῷ +ἡλίῳ +καί +ἔκραξεν +ἐν +φωνῇ +μεγάλῃ +λέγων +πᾶσιν +τοῖς +ὀρνέοις +τοῖς +πετομένοις +ἐν +μεσουρανήματι +Δεῦτε +συνάχθητε +εἰς +τό +δεῖπνον +τό +μέγα +τοῦ +Θεοῦ +ἵνα +φάγητε +σάρκας +βασιλέων +καί +σάρκας +χιλιάρχων +καί +σάρκας +ἰσχυρῶν +καί +σάρκας +ἵππων +καί +τῶν +καθημένων +ἐπ’ +αὐτῶν +καί +σάρκας +πάντων +τε +ἐλευθέρων +καί +δούλων +καί +μικρῶν +καί +μεγάλων +Καί +εἶδον +τό +θηρίον +καί +τούς +βασιλεῖς +τῆς +γῆς +καί +τά +στρατεύματα +αὐτῶν +συνηγμένα +ποιῆσαι +τόν +πόλεμον +μετά +τοῦ +καθημένου +ἐπί +τοῦ +ἵππου +καί +μετά +τοῦ +στρατεύματος +αὐτοῦ +καί +ἐπιάσθη +τό +θηρίον +καί +μετ’ +αὐτοῦ +ὁ +ψευδοπροφήτης +ὁ +ποιήσας +τά +σημεῖα +ἐνώπιον +αὐτοῦ +ἐν +οἷς +ἐπλάνησεν +τούς +λαβόντας +τό +χάραγμα +τοῦ +θηρίου +καί +τούς +προσκυνοῦντας +τῇ +εἰκόνι +αὐτοῦ +ζῶντες +ἐβλήθησαν +οἱ +δύο +εἰς +τήν +λίμνην +τοῦ +πυρός +τῆς +καιομένης +ἐν +θείῳ +καί +οἱ +λοιποί +ἀπεκτάνθησαν +ἐν +τῇ +ῥομφαίᾳ +τοῦ +καθημένου +ἐπί +τοῦ +ἵππου +τῇ +ἐξελθούσῃ +ἐκ +τοῦ +στόματος +αὐτοῦ +καί +πάντα +τά +ὄρνεα +ἐχορτάσθησαν +ἐκ +τῶν +σαρκῶν +αὐτῶν +Καί +εἶδον +ἄγγελον +καταβαίνοντα +ἐκ +τοῦ +οὐρανοῦ +ἔχοντα +τήν +κλεῖν +τῆς +ἀβύσσου +καί +ἅλυσιν +μεγάλην +ἐπί +τήν +χεῖρα +αὐτοῦ +καί +ἐκράτησεν +τόν +δράκοντα +ὁ +ὄφις +ὁ +ἀρχαῖος +ὅς +ἐστιν +Διάβολος +καί +Ὁ +Σατανᾶς +καί +ἔδησεν +αὐτόν +χίλια +ἔτη +καί +ἔβαλεν +αὐτόν +εἰς +τήν +ἄβυσσον +καί +ἔκλεισεν +καί +ἐσφράγισεν +ἐπάνω +αὐτοῦ +ἵνα +μή +πλανήσῃ +ἔτι +τά +ἔθνη +ἄχρι +τελεσθῇ +τά +χίλια +ἔτη +μετά +ταῦτα +δεῖ +λυθῆναι +αὐτόν +μικρόν +χρόνον +Καί +εἶδον +θρόνους +καί +ἐκάθισαν +ἐπ’ +αὐτούς +καί +κρίμα +ἐδόθη +αὐτοῖς +καί +τάς +ψυχάς +τῶν +πεπελεκισμένων +διά +τήν +μαρτυρίαν +Ἰησοῦ +καί +διά +τόν +λόγον +τοῦ +Θεοῦ +καί +οἵτινες +οὐ +προσεκύνησαν +τό +θηρίον +οὐδέ +τήν +εἰκόνα +αὐτοῦ +καί +οὐκ +ἔλαβον +τό +χάραγμα +ἐπί +τό +μέτωπον +καί +ἐπί +τήν +χεῖρα +αὐτῶν +καί +ἔζησαν +καί +ἐβασίλευσαν +μετά +τοῦ +Χριστοῦ +χίλια +ἔτη +οἱ +λοιποί +τῶν +νεκρῶν +οὐκ +ἔζησαν +ἄχρι +τελεσθῇ +τά +χίλια +ἔτη +αὕτη +ἡ +ἀνάστασις +ἡ +πρώτη +μακάριος +καί +ἅγιος +ὁ +ἔχων +μέρος +ἐν +τῇ +ἀναστάσει +τῇ +πρώτῃ +ἐπί +τούτων +ὁ +δεύτερος +θάνατος +οὐκ +ἔχει +ἐξουσίαν +ἀλλ’ +ἔσονται +ἱερεῖς +τοῦ +Θεοῦ +καί +τοῦ +Χριστοῦ +καί +βασιλεύσουσιν +μετ’ +αὐτοῦ +τά +χίλια +ἔτη +Καί +ὅταν +τελεσθῇ +τά +χίλια +ἔτη +λυθήσεται +ὁ +Σατανᾶς +ἐκ +τῆς +φυλακῆς +αὐτοῦ +καί +ἐξελεύσεται +πλανῆσαι +τά +ἔθνη +τά +ἐν +ταῖς +τέσσαρσιν +γωνίαις +τῆς +γῆς +τόν +Γώγ +καί +Μαγώγ +συναγαγεῖν +αὐτούς +εἰς +τόν +πόλεμον +ὧν +ὁ +ἀριθμός +αὐτῶν +ὡς +ἡ +ἄμμος +τῆς +θαλάσσης +καί +ἀνέβησαν +ἐπί +τό +πλάτος +τῆς +γῆς +καί +ἐκύκλευσαν +τήν +παρεμβολήν +τῶν +ἁγίων +καί +τήν +πόλιν +τήν +ἠγαπημένην +καί +κατέβη +πῦρ +ἐκ +τοῦ +οὐρανοῦ +καί +κατέφαγεν +αὐτούς +καί +ὁ +διάβολος +ὁ +πλανῶν +αὐτούς +ἐβλήθη +εἰς +τήν +λίμνην +τοῦ +πυρός +καί +θείου +ὅπου +καί +τό +θηρίον +καί +ὁ +ψευδοπροφήτης +καί +βασανισθήσονται +ἡμέρας +καί +νυκτός +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +Καί +εἶδον +θρόνον +μέγαν +λευκόν +καί +τόν +καθήμενον +ἐπ’ +αὐτόν +ἀπό +οὗ +τοῦ +προσώπου +ἔφυγεν +ἡ +γῆ +καί +ὁ +οὐρανός +καί +τόπος +οὐχ +εὑρέθη +αὐτοῖς +καί +εἶδον +τούς +νεκρούς +τούς +μεγάλους +καί +τούς +μικρούς +ἑστῶτας +ἐνώπιον +τοῦ +θρόνου +καί +βιβλία +ἠνοίχθησαν +καί +ἄλλο +βιβλίον +ἠνοίχθη +ὅ +ἐστιν +τῆς +ζωῆς +καί +ἐκρίθησαν +οἱ +νεκροί +ἐκ +τῶν +γεγραμμένων +ἐν +τοῖς +βιβλίοις +κατά +τά +ἔργα +αὐτῶν +καί +ἔδωκεν +ἡ +θάλασσα +τούς +νεκρούς +τούς +ἐν +αὐτῇ +καί +ὁ +θάνατος +καί +ὁ +Ἅιδης +ἔδωκαν +τούς +νεκρούς +τούς +ἐν +αὐτοῖς +καί +ἐκρίθησαν +ἕκαστος +κατά +τά +ἔργα +αὐτῶν +καί +ὁ +θάνατος +καί +ὁ +Ἅιδης +ἐβλήθησαν +εἰς +τήν +λίμνην +τοῦ +πυρός +οὗτος +ὁ +θάνατος +ὁ +δεύτερος +ἡ +λίμνη +τοῦ +πυρός +ἐστιν +καί +εἴ +τις +οὐχ +εὑρέθη +ἐν +τῇ +βίβλῳ +τῆς +ζωῆς +γεγραμμένος +ἐβλήθη +εἰς +τήν +λίμνην +τοῦ +πυρός +Καί +εἶδον +οὐρανόν +καινόν +καί +γῆν +καινήν +γάρ +ὁ +πρῶτος +οὐρανός +καί +ἡ +πρώτη +γῆ +ἀπῆλθαν +καί +ἡ +θάλασσα +οὐκ +ἔστιν +ἔτι +καί +εἶδον +τήν +πόλιν +τήν +ἁγίαν +Ἱερουσαλήμ +καινήν +καταβαίνουσαν +ἐκ +τοῦ +οὐρανοῦ +ἀπό +τοῦ +Θεοῦ +ἡτοιμασμένην +ὡς +νύμφην +κεκοσμημένην +τῷ +ἀνδρί +αὐτῆς +καί +ἤκουσα +φωνῆς +μεγάλης +ἐκ +τοῦ +θρόνου +λεγούσης +Ἰδού +ἡ +σκηνή +τοῦ +Θεοῦ +μετά +τῶν +ἀνθρώπων +καί +σκηνώσει +μετ’ +αὐτῶν +καί +αὐτοί +λαοί +αὐτοῦ +ἔσονται +καί +αὐτός +ὁ +Θεός +μετ’ +αὐτῶν +ἔσται +καί +ἐξαλείψει +πᾶν +δάκρυον +ἐκ +τῶν +ὀφθαλμῶν +αὐτῶν +καί +ὁ +θάνατος +οὐκ +ἔσται +ἔτι +οὔτε +πένθος +οὔτε +κραυγή +οὔτε +πόνος +οὐκ +ἔσται +ἔτι +ὅτι +τά +πρῶτα +ἀπῆλθαν +καί +εἶπεν +ὁ +καθήμενος +ἐπί +τῷ +θρόνῳ +Ἰδού +καινά +ποιῶ +πάντα +καί +λέγει +Γράψον +ὅτι +οὗτοι +οἱ +λόγοι +πιστοί +καί +ἀληθινοί +εἰσιν +καί +εἶπεν +μοι +Γέγοναν +ἐγώ +τό +Ἄλφα +καί +τό +Ὦ +ἡ +ἀρχή +καί +τό +τέλος +ἐγώ +τῷ +διψῶντι +δώσω +ἐκ +τῆς +πηγῆς +τοῦ +ὕδατος +τῆς +ζωῆς +δωρεάν +ὁ +νικῶν +κληρονομήσει +ταῦτα +καί +ἔσομαι +αὐτῷ +Θεός +καί +αὐτός +ἔσται +μοι +υἱός +δέ +τοῖς +δειλοῖς +καί +ἀπίστοις +καί +ἐβδελυγμένοις +καί +φονεῦσιν +καί +πόρνοις +καί +φαρμάκοις +καί +εἰδωλολάτραις +καί +πᾶσιν +τοῖς +ψευδέσιν +τό +μέρος +αὐτῶν +ἐν +τῇ +λίμνῃ +τῇ +καιομένῃ +πυρί +καί +θείῳ +ὅ +ἐστιν +ὁ +θάνατος +ὁ +δεύτερος +Καί +ἦλθεν +εἷς +ἐκ +τῶν +ἑπτά +ἀγγέλων +τῶν +ἐχόντων +τάς +ἑπτά +φιάλας +τῶν +γεμόντων +τῶν +ἑπτά +πληγῶν +τῶν +ἐσχάτων +καί +ἐλάλησεν +μετ’ +ἐμοῦ +λέγων +Δεῦρο +δείξω +σοι +τήν +νύμφην +τήν +γυναῖκα +τοῦ +ἀρνίου +καί +ἀπήνεγκεν +με +ἐν +Πνεύματι +ἐπί +ὄρος +μέγα +καί +ὑψηλόν +καί +ἔδειξεν +μοι +τήν +πόλιν +τήν +ἁγίαν +Ἱερουσαλήμ +καταβαίνουσαν +ἐκ +τοῦ +οὐρανοῦ +ἀπό +τοῦ +Θεοῦ +ἔχουσαν +τήν +δόξαν +τοῦ +Θεοῦ +ὁ +φωστήρ +αὐτῆς +ὅμοιος +λίθῳ +τιμιωτάτῳ +ὡς +λίθῳ +ἰάσπιδι +κρυσταλλίζοντι +ἔχουσα +τεῖχος +μέγα +καί +ὑψηλόν +ἔχουσα +πυλῶνας +δώδεκα +καί +ἐπί +τοῖς +πυλῶσιν +ἀγγέλους +δώδεκα +καί +ἐπιγεγραμμένα +ὀνόματα +ἅ +ἐστιν +τῶν +δώδεκα +φυλῶν +υἱῶν +Ἰσραήλ +ἀπό +ἀνατολῆς +πυλῶνες +τρεῖς +καί +ἀπό +βορρᾶ +πυλῶνες +τρεῖς +καί +ἀπό +νότου +πυλῶνες +τρεῖς +καί +ἀπό +δυσμῶν +πυλῶνες +τρεῖς +καί +τό +τεῖχος +τῆς +πόλεως +ἔχων +θεμελίους +δώδεκα +καί +ἐπ’ +αὐτῶν +δώδεκα +ὀνόματα +τῶν +δώδεκα +ἀποστόλων +τοῦ +Ἀρνίου +Καί +ὁ +λαλῶν +μετ’ +ἐμοῦ +εἶχεν +μέτρον +κάλαμον +χρυσοῦν +ἵνα +μετρήσῃ +τήν +πόλιν +καί +τούς +πυλῶνας +αὐτῆς +καί +τό +τεῖχος +αὐτῆς +καί +ἡ +πόλις +τετράγωνος +κεῖται +καί +τό +μῆκος +αὐτῆς +ὅσον +τό +πλάτος +καί +ἐμέτρησεν +τήν +πόλιν +τῷ +καλάμῳ +ἐπί +σταδίων +δώδεκα +χιλιάδων +τό +μῆκος +καί +τό +πλάτος +καί +τό +ὕψος +αὐτῆς +ἴσα +ἐστίν +καί +ἐμέτρησεν +τό +τεῖχος +αὐτῆς +ἑκατόν +τεσσεράκοντα +τεσσάρων +πηχῶν +μέτρον +ἀνθρώπου +ὅ +ἐστιν +ἀγγέλου +καί +ἡ +ἐνδώμησις +τοῦ +τείχους +αὐτῆς +ἴασπις +καί +ἡ +πόλις +χρυσίον +καθαρόν +ὅμοιον +ὑάλῳ +καθαρῷ +οἱ +θεμέλιοι +τοῦ +τείχους +τῆς +πόλεως +παντί +λίθῳ +τιμίῳ +κεκοσμημένοι +ὁ +θεμέλιος +ὁ +πρῶτος +ἴασπις +ὁ +δεύτερος +σάπφειρος +ὁ +τρίτος +χαλκηδών +ὁ +τέταρτος +σμάραγδος +ὁ +πέμπτος +σαρδόνυξ +ὁ +ἕκτος +σάρδιον +ὁ +ἕβδομος +χρυσόλιθος +ὁ +ὄγδοος +βήρυλλος +ὁ +ἔνατος +τοπάζιον +ὁ +δέκατος +χρυσόπρασος +ὁ +ἑνδέκατος +ὑάκινθος +ὁ +δωδέκατος +ἀμέθυστος +καί +οἱ +δώδεκα +πυλῶνες +δώδεκα +μαργαρῖται +ἀνά +εἷς +ἕκαστος +τῶν +πυλώνων +ἦν +ἐξ +ἑνός +μαργαρίτου +καί +ἡ +πλατεῖα +τῆς +πόλεως +χρυσίον +καθαρόν +ὡς +ὕαλος +διαυγής +Καί +ναόν +οὐκ +εἶδον +ἐν +αὐτῇ +γάρ +ὁ +Κύριος +ὁ +Θεός +ὁ +Παντοκράτωρ +καί +τό +Ἀρνίον +ναός +αὐτῆς +ἐστιν +καί +ἡ +πόλις +οὐ +ἔχει +χρείαν +τοῦ +ἡλίου +οὐδέ +τῆς +σελήνης +ἵνα +φαίνωσιν +αὐτῇ +γάρ +ἡ +δόξα +τοῦ +Θεοῦ +ἐφώτισεν +αὐτήν +καί +ὁ +λύχνος +αὐτῆς +τό +Ἀρνίον +καί +περιπατήσουσιν +τά +ἔθνη +διά +τοῦ +φωτός +αὐτῆς +καί +οἱ +βασιλεῖς +τῆς +γῆς +φέρουσιν +τήν +δόξαν +αὐτῶν +εἰς +αὐτήν +καί +οἱ +πυλῶνες +αὐτῆς +οὐ +μή +κλεισθῶσιν +ἡμέρας +γάρ +νύξ +οὐκ +ἔσται +ἐκεῖ +καί +οἴσουσιν +τήν +δόξαν +καί +τήν +τιμήν +τῶν +ἐθνῶν +εἰς +αὐτήν +καί +οὐ +μή +εἰσέλθῃ +εἰς +αὐτήν +πᾶν +κοινόν +καί +ὁ +ποιῶν +βδέλυγμα +καί +ψεῦδος +εἰ +μή +οἱ +γεγραμμένοι +ἐν +τῷ +βιβλίῳ +τῆς +ζωῆς +τοῦ +Ἀρνίου +καί +ἔδειξεν +μοι +ποταμόν +ὕδατος +ζωῆς +λαμπρόν +ὡς +κρύσταλλον +ἐκπορευόμενον +ἐκ +τοῦ +θρόνου +τοῦ +Θεοῦ +καί +τοῦ +Ἀρνίου +ἐν +μέσῳ +τῆς +πλατείας +αὐτῆς +καί +τοῦ +ποταμοῦ +ἐντεῦθεν +καί +ἐκεῖθεν +ξύλον +ζωῆς +ποιοῦν +καρπούς +δώδεκα +κατά +μῆνα +ἕκαστον +ἀποδιδοῦν +τόν +καρπόν +αὐτοῦ +καί +τά +φύλλα +τοῦ +ξύλου +εἰς +θεραπείαν +τῶν +ἐθνῶν +καί +πᾶν +κατάθεμα +οὐκ +ἔσται +ἔτι +καί +ὁ +θρόνος +τοῦ +Θεοῦ +καί +τοῦ +Ἀρνίου +ἐν +αὐτῇ +ἔσται +καί +οἱ +δοῦλοι +αὐτοῦ +λατρεύσουσιν +αὐτῷ +καί +ὄψονται +τό +πρόσωπον +αὐτοῦ +καί +τό +ὄνομα +αὐτοῦ +ἐπί +τῶν +μετώπων +αὐτῶν +καί +νύξ +οὐκ +ἔσται +ἔτι +καί +οὐκ +ἔχουσιν +χρείαν +φωτός +λύχνου +καί +φωτός +ἡλίου +ὅτι +Κύριος +ὁ +Θεός +φωτίσει +ἐπ’ +αὐτούς +καί +βασιλεύσουσιν +εἰς +τούς +αἰῶνας +τῶν +αἰώνων +Καί +εἶπεν +μοι +Οὗτοι +οἱ +λόγοι +πιστοί +καί +ἀληθινοί +καί +ὁ +Κύριος +ὁ +Θεός +τῶν +πνευμάτων +τῶν +προφητῶν +ἀπέστειλεν +τόν +ἄγγελον +αὐτοῦ +δεῖξαι +τοῖς +δούλοις +αὐτοῦ +ἅ +γενέσθαι +ἐν +τάχει +δεῖ +καί +Ἰδού +ἔρχομαι +ταχύ +μακάριος +ὁ +τηρῶν +τούς +λόγους +τῆς +προφητείας +τοῦ +βιβλίου +τούτου +Κἀγώ +Ἰωάνης +ὁ +ἀκούων +καί +βλέπων +ταῦτα +καί +ὅτε +ἤκουσα +καί +ἔβλεψα +ἔπεσα +προσκυνῆσαι +ἔμπροσθεν +τῶν +ποδῶν +τοῦ +ἀγγέλου +τοῦ +δεικνύοντος +μοι +ταῦτα +καί +λέγει +μοι +Ὅρα +μή +εἰμι +σύνδουλος +σού +καί +τῶν +ἀδελφῶν +σου +τῶν +προφητῶν +καί +τῶν +τηρούντων +τούς +λόγους +τοῦ +βιβλίου +τούτου +τῷ +Θεῷ +προσκύνησον +Καί +λέγει +μοι +Μή +σφραγίσῃς +τούς +λόγους +τῆς +προφητείας +τοῦ +βιβλίου +τούτου +γάρ +ὁ +καιρός +ἐγγύς +ἐστιν +ὁ +ἀδικῶν +ἀδικησάτω +ἔτι +καί +ὁ +ῥυπαρός +ῥυπανθήτω +ἔτι +καί +ὁ +δίκαιος +δικαιοσύνην +ποιησάτω +ἔτι +καί +ὁ +ἅγιος +ἁγιασθήτω +ἔτι +Ἰδού +ἔρχομαι +ταχύ +καί +ὁ +μισθός +μου +μετ’ +ἐμοῦ +ἀποδοῦναι +ἑκάστῳ +ὡς +τό +ἔργον +αὐτοῦ +ἐστίν +ἐγώ +τό +Ἄλφα +καί +τό +Ὦ +ὁ +πρῶτος +καί +ὁ +ἔσχατος +ἡ +ἀρχή +καί +τό +τέλος +μακάριοι +οἱ +πλύνοντες +τάς +στολάς +αὐτῶν +ἵνα +ἔσται +ἡ +ἐξουσία +αὐτῶν +ἐπί +τό +ξύλον +τῆς +ζωῆς +καί +τοῖς +πυλῶσιν +εἰσέλθωσιν +εἰς +τήν +πόλιν +ἔξω +οἱ +κύνες +καί +οἱ +φάρμακοι +καί +οἱ +πόρνοι +καί +οἱ +φονεῖς +καί +οἱ +εἰδωλολάτραι +καί +πᾶς +φιλῶν +καί +ποιῶν +ψεῦδος +Ἐγώ +Ἰησοῦς +ἔπεμψα +τόν +ἄγγελον +μου +μαρτυρῆσαι +ὑμῖν +ταῦτα +ἐπί +ταῖς +ἐκκλησίαις +ἐγώ +εἰμι +ἡ +ῥίζα +καί +τό +γένος +Δαυείδ +ὁ +ἀστήρ +ὁ +λαμπρός +ὁ +πρωϊνός +Καί +τό +Πνεῦμα +καί +ἡ +νύμφη +λέγουσιν +Ἔρχου +καί +ὁ +ἀκούων +εἰπάτω +Ἔρχου +καί +ὁ +διψῶν +ἐρχέσθω +ὁ +θέλων +λαβέτω +ὕδωρ +ζωῆς +δωρεάν +Μαρτυρῶ +ἐγώ +παντί +τῷ +ἀκούοντι +τούς +λόγους +τῆς +προφητείας +τοῦ +βιβλίου +τούτου +ἐάν +τις +ἐπιθῇ +ἐπ’ +αὐτά +ἐπιθήσει +ὁ +Θεός +ἐπ’ +αὐτόν +τάς +πληγάς +τάς +γεγραμμένας +ἐν +τῷ +βιβλίῳ +τούτῳ +καί +ἐάν +τις +ἀφέλῃ +ἀπό +τῶν +λόγων +τοῦ +βιβλίου +τῆς +προφητείας +ταύτης +ἀφελεῖ +ὁ +Θεός +τό +μέρος +αὐτοῦ +ἀπό +τοῦ +ξύλου +τῆς +ζωῆς +καί +ἐκ +τῆς +πόλεως +τῆς +ἁγίας +τῶν +γεγραμμένων +ἐν +τῷ +βιβλίῳ +τούτῳ +Λέγει +ὁ +μαρτυρῶν +ταῦτα +Ναί +ἔρχομαι +ταχύ +Ἀμήν +ἔρχου +Κύριε +Ἰησοῦ +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +μετά +πάντων diff --git a/tf/0.1.1/note.tf b/tf/0.1.1/note.tf new file mode 100644 index 0000000..399ec07 --- /dev/null +++ b/tf/0.1.1/note.tf @@ -0,0 +1,15 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute note +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +68383 discontinuous discourse diff --git a/tf/0.1.1/number.tf b/tf/0.1.1/number.tf new file mode 100644 index 0000000..acb1f91 --- /dev/null +++ b/tf/0.1.1/number.tf @@ -0,0 +1,98951 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=number +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +14 singular +singular +singular +singular +19 singular +singular +singular +singular +24 plural +plural +singular +28 singular +singular +singular +singular +33 singular +singular +36 singular +singular +39 singular +singular +singular +singular +44 singular +singular +singular +singular +49 singular +singular +singular +singular +54 singular +singular +singular +singular +59 singular +singular +singular +singular +64 singular +singular +singular +singular +69 singular +singular +72 singular +singular +singular +singular +77 singular +singular +80 singular +singular +singular +singular +85 singular +singular +singular +singular +singular +singular +92 singular +singular +singular +singular +97 singular +singular +singular +101 singular +singular +singular +singular +106 singular +singular +singular +singular +111 singular +singular +singular +singular +116 singular +singular +singular +singular +121 singular +singular +singular +singular +126 singular +singular +singular +singular +131 singular +singular +singular +singular +136 singular +singular +singular +singular +141 singular +singular +singular +singular +146 singular +singular +singular +singular +151 singular +singular +singular +singular +156 singular +singular +singular +singular +161 singular +singular +singular +singular +166 plural +plural +singular +170 singular +singular +singular +175 singular +singular +singular +singular +singular +singular +singular +183 singular +singular +singular +singular +188 singular +singular +singular +singular +193 singular +singular +singular +singular +198 singular +singular +singular +singular +203 singular +singular +singular +singular +208 singular +singular +singular +singular +213 singular +singular +singular +singular +218 singular +singular +singular +singular +223 singular +singular +singular +singular +228 singular +singular +singular +singular +233 singular +singular +singular +singular +singular +singular +singular +241 singular +singular +singular +singular +singular +singular +248 plural +plural +plural +252 singular +254 singular +plural +plural +259 singular +261 singular +singular +singular +plural +plural +268 singular +singular +singular +272 singular +singular +plural +plural +277 singular +singular +singular +singular +singular +283 singular +singular +singular +singular +singular +singular +singular +singular +294 plural +singular +297 singular +singular +300 singular +singular +303 singular +singular +singular +singular +singular +singular +311 singular +singular +314 singular +317 singular +319 plural +singular +singular +singular +singular +singular +326 singular +singular +singular +singular +singular +singular +singular +334 singular +336 singular +singular +singular +singular +341 singular +343 singular +singular +346 singular +singular +singular +350 singular +singular +353 singular +singular +singular +singular +singular +359 singular +singular +singular +singular +singular +365 plural +plural +plural +369 singular +singular +singular +373 singular +singular +singular +377 singular +379 singular +singular +singular +singular +singular +singular +386 singular +singular +389 singular +singular +392 plural +singular +singular +singular +singular +singular +singular +singular +401 plural +singular +singular +405 singular +singular +singular +409 singular +singular +singular +413 singular +singular +singular +singular +singular +419 singular +singular +singular +singular +425 singular +singular +428 singular +singular +singular +432 singular +singular +singular +singular +singular +438 singular +singular +singular +442 singular +singular +singular +446 plural +singular +singular +singular +singular +plural +453 plural +plural +456 plural +plural +459 singular +singular +singular +singular +plural +plural +466 plural +singular +singular +singular +471 singular +singular +474 plural +476 singular +478 singular +singular +singular +singular +singular +484 singular +singular +487 singular +489 singular +plural +plural +plural +494 plural +singular +singular +singular +499 plural +501 singular +singular +singular +505 plural +plural +singular +509 singular +singular +singular +514 singular +516 singular +singular +519 singular +singular +singular +singular +524 singular +singular +527 plural +plural +singular +532 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +543 singular +545 singular +plural +plural +singular +550 plural +singular +singular +singular +singular +singular +557 singular +plural +560 singular +singular +plural +plural +566 singular +singular +570 plural +plural +singular +574 singular +singular +singular +singular +579 plural +plural +singular +singular +plural +585 singular +singular +singular +singular +plural +591 singular +singular +singular +plural +596 singular +singular +600 singular +singular +singular +604 plural +singular +singular +plural +singular +singular +612 plural +614 singular +singular +plural +singular +singular +620 singular +singular +singular +singular +625 plural +plural +singular +629 plural +plural +plural +plural +plural +singular +plural +singular +638 singular +640 singular +642 plural +644 singular +648 singular +650 singular +singular +plural +654 singular +singular +plural +658 plural +plural +singular +singular +singular +singular +665 singular +singular +singular +singular +singular +singular +singular +singular +674 singular +singular +singular +678 singular +680 singular +682 singular +686 singular +singular +689 singular +singular +692 singular +singular +singular +696 singular +698 singular +singular +singular +singular +singular +704 singular +singular +singular +singular +709 singular +711 singular +713 singular +716 singular +singular +singular +720 singular +singular +singular +724 singular +726 singular +singular +singular +730 singular +singular +singular +singular +singular +736 singular +singular +739 singular +741 plural +plural +singular +746 singular +singular +plural +plural +plural +plural +753 singular +756 plural +plural +plural +singular +761 singular +765 singular +singular +singular +singular +770 plural +plural +773 singular +singular +singular +777 singular +singular +singular +singular +782 singular +singular +singular +singular +787 singular +singular +singular +singular +plural +plural +singular +796 singular +800 plural +802 singular +singular +singular +singular +singular +singular +singular +810 singular +singular +singular +814 singular +singular +singular +singular +singular +singular +821 singular +singular +singular +825 singular +827 singular +singular +830 plural +plural +plural +singular +singular +singular +singular +838 singular +singular +singular +singular +singular +844 singular +singular +singular +848 singular +850 singular +singular +853 singular +855 singular +singular +singular +singular +860 singular +singular +singular +singular +singular +868 singular +870 singular +singular +873 plural +plural +singular +singular +878 singular +singular +881 singular +singular +singular +885 singular +singular +singular +889 plural +plural +892 singular +singular +896 plural +plural +plural +singular +singular +singular +singular +singular +905 singular +singular +singular +singular +singular +plural +912 singular +singular +singular +plural +plural +918 singular +singular +singular +singular +923 singular +singular +singular +singular +singular +singular +930 singular +singular +plural +singular +singular +singular +plural +plural +plural +plural +singular +942 singular +singular +singular +singular +singular +singular +singular +950 plural +singular +953 singular +singular +956 singular +singular +singular +960 singular +singular +singular +singular +plural +966 singular +singular +969 singular +971 singular +singular +974 singular +singular +singular +978 singular +singular +singular +singular +singular +984 plural +986 singular +singular +singular +990 singular +plural +plural +plural +plural +996 singular +plural +plural +plural +1001 plural +plural +1004 singular +singular +singular +plural +plural +plural +singular +singular +plural +1015 singular +singular +singular +1019 plural +singular +singular +singular +singular +1026 plural +1029 plural +singular +plural +singular +singular +1035 singular +plural +1038 singular +singular +singular +1042 plural +plural +plural +1046 plural +singular +singular +1051 singular +singular +1054 singular +singular +plural +plural +singular +1060 singular +singular +1063 singular +singular +singular +singular +1069 singular +singular +1072 singular +plural +singular +1076 singular +1078 singular +1080 singular +1082 singular +singular +singular +singular +singular +singular +1089 singular +singular +plural +plural +1094 singular +plural +singular +1098 singular +singular +1101 singular +singular +singular +singular +1106 singular +singular +singular +1110 singular +singular +singular +singular +1115 singular +singular +singular +singular +1120 singular +singular +1123 singular +singular +singular +singular +singular +1129 singular +singular +singular +1133 singular +singular +1136 singular +singular +1139 singular +singular +singular +1144 singular +1146 singular +singular +singular +singular +singular +singular +singular +1154 singular +1157 singular +singular +1160 singular +1162 singular +singular +singular +singular +singular +singular +1171 singular +singular +plural +1175 singular +singular +1178 singular +singular +1181 singular +singular +singular +singular +singular +1187 singular +singular +1190 singular +plural +plural +plural +1195 singular +singular +singular +singular +1200 singular +singular +1203 singular +1205 singular +singular +1208 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +1219 singular +singular +1222 singular +singular +singular +1226 singular +singular +1229 singular +singular +1233 singular +singular +1236 singular +plural +1241 plural +singular +singular +1245 singular +singular +singular +singular +singular +1251 singular +singular +singular +singular +singular +1257 plural +plural +plural +plural +plural +1263 singular +singular +singular +singular +1269 singular +singular +singular +singular +singular +1276 singular +singular +singular +1280 singular +singular +1283 singular +singular +singular +singular +1288 singular +singular +singular +1292 singular +singular +1295 singular +singular +singular +singular +1300 singular +singular +1303 singular +singular +singular +singular +singular +singular +1311 singular +1313 plural +plural +singular +singular +1318 singular +1321 plural +plural +singular +1326 singular +1328 singular +singular +singular +singular +singular +singular +singular +singular +1337 singular +1339 singular +singular +singular +singular +singular +1345 singular +singular +singular +singular +1350 singular +singular +1354 singular +singular +plural +plural +plural +singular +singular +1362 singular +singular +plural +1366 singular +singular +plural +plural +singular +singular +1373 singular +singular +singular +1377 singular +singular +singular +singular +singular +singular +1384 singular +singular +singular +singular +singular +singular +1391 singular +singular +singular +1395 singular +singular +singular +singular +1400 singular +plural +plural +1404 plural +singular +1407 singular +1409 singular +singular +singular +1413 singular +singular +1416 singular +singular +singular +singular +singular +1422 singular +singular +singular +1426 plural +singular +1429 singular +1431 singular +singular +singular +1435 singular +singular +singular +singular +singular +singular +1442 singular +singular +singular +singular +1447 singular +singular +singular +plural +plural +singular +singular +singular +singular +1457 singular +singular +singular +singular +1462 plural +plural +1465 singular +1467 singular +singular +singular +singular +plural +1474 singular +singular +singular +1480 plural +1482 singular +singular +singular +plural +plural +1488 singular +1490 singular +singular +singular +singular +singular +1496 plural +singular +singular +singular +singular +1502 singular +singular +singular +singular +plural +singular +1509 singular +singular +1512 plural +plural +1515 singular +plural +plural +1519 singular +1521 singular +plural +plural +plural +1526 plural +1528 plural +plural +plural +plural +singular +1534 singular +1536 singular +plural +1539 plural +singular +singular +singular +singular +1545 singular +singular +singular +singular +1550 singular +singular +1553 singular +singular +singular +plural +plural +plural +plural +plural +1562 singular +plural +1565 plural +1567 plural +singular +singular +1571 singular +singular +plural +plural +singular +1577 singular +1579 singular +singular +singular +singular +1584 plural +plural +plural +1588 singular +singular +singular +singular +singular +1594 singular +singular +singular +1598 singular +singular +1601 singular +singular +1604 singular +singular +singular +singular +1609 singular +singular +singular +1613 plural +singular +plural +plural +1618 plural +plural +plural +1622 plural +plural +plural +1626 plural +1628 plural +1630 singular +plural +1633 plural +singular +plural +plural +1638 singular +singular +1641 singular +1643 plural +1645 singular +1648 singular +singular +1651 singular +plural +plural +singular +1656 singular +singular +1659 singular +singular +plural +singular +plural +plural +singular +1667 singular +singular +singular +singular +singular +plural +singular +plural +plural +plural +singular +singular +1680 plural +singular +singular +singular +plural +plural +plural +plural +plural +1690 plural +plural +plural +plural +plural +1696 plural +plural +singular +singular +plural +plural +plural +1704 plural +singular +singular +1708 plural +plural +plural +plural +plural +1714 plural +plural +plural +plural +plural +singular +singular +1722 plural +singular +singular +plural +plural +plural +plural +1730 plural +plural +singular +plural +plural +plural +plural +1738 singular +1740 plural +singular +singular +singular +plural +plural +plural +plural +1749 plural +plural +1752 plural +1754 plural +singular +singular +1758 plural +plural +1761 singular +plural +1764 plural +1766 singular +singular +plural +singular +1771 plural +plural +1775 plural +plural +plural +plural +1780 plural +plural +plural +singular +singular +singular +singular +1789 singular +singular +singular +1793 singular +singular +1796 singular +singular +1801 singular +1805 plural +plural +plural +plural +singular +singular +singular +singular +1814 singular +singular +1818 singular +singular +1821 plural +singular +1824 plural +singular +1827 singular +singular +1831 singular +singular +1834 singular +plural +plural +1838 singular +singular +1841 singular +singular +singular +plural +1846 plural +plural +1849 plural +plural +plural +plural +plural +1855 plural +singular +singular +plural +singular +1861 plural +plural +1864 plural +1866 singular +1868 singular +singular +1871 plural +plural +1874 singular +1880 singular +plural +1884 singular +singular +singular +1888 singular +singular +singular +singular +1893 singular +singular +1897 singular +1899 singular +singular +1903 plural +singular +1907 singular +singular +singular +plural +plural +plural +plural +plural +1916 singular +1918 plural +plural +singular +singular +1923 singular +singular +plural +plural +1929 singular +singular +1932 singular +singular +singular +singular +1937 singular +singular +plural +plural +1942 singular +plural +1947 singular +plural +singular +singular +singular +plural +plural +1955 plural +1958 plural +1960 singular +singular +plural +plural +plural +1966 singular +plural +plural +1970 singular +1973 singular +singular +singular +singular +singular +singular +1980 singular +singular +plural +1984 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +1996 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +2008 singular +singular +singular +singular +singular +2014 singular +singular +singular +singular +2020 singular +singular +singular +singular +2025 singular +singular +2028 singular +2030 singular +singular +singular +singular +singular +2036 singular +singular +2039 singular +singular +singular +2043 singular +singular +2046 singular +singular +singular +singular +singular +singular +2054 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +2066 singular +singular +2069 singular +2071 singular +singular +2075 singular +singular +singular +singular +singular +singular +2082 singular +singular +singular +singular +2088 singular +singular +2091 singular +singular +2095 singular +2099 singular +singular +singular +singular +plural +2105 singular +2107 singular +2109 singular +singular +plural +2113 singular +singular +singular +singular +2118 singular +2120 singular +2122 singular +singular +2125 singular +singular +singular +2130 singular +singular +singular +singular +singular +singular +singular +singular +singular +2140 singular +2142 singular +2144 singular +singular +2147 singular +singular +plural +plural +singular +2154 singular +singular +singular +singular +singular +2160 singular +2163 singular +singular +singular +singular +singular +singular +singular +singular +2172 singular +2174 singular +2176 singular +singular +2179 singular +singular +plural +plural +singular +2186 singular +singular +singular +singular +2191 singular +singular +2194 singular +2196 singular +singular +singular +singular +singular +singular +singular +singular +2205 singular +singular +plural +2209 singular +singular +singular +singular +singular +singular +2216 singular +singular +singular +singular +2223 singular +singular +singular +singular +2228 plural +2230 singular +plural +plural +2234 singular +2236 singular +singular +singular +plural +plural +singular +2243 singular +singular +plural +2251 singular +singular +2254 singular +singular +singular +singular +2260 singular +singular +2263 singular +singular +plural +plural +singular +2270 plural +2272 singular +singular +singular +singular +singular +2279 singular +singular +singular +singular +2285 singular +singular +singular +2289 singular +2291 singular +2293 singular +singular +singular +plural +2302 singular +singular +plural +2306 singular +singular +singular +plural +2311 singular +singular +2314 singular +2316 singular +2318 singular +2320 singular +singular +plural +2325 singular +singular +2328 singular +singular +singular +2332 singular +singular +singular +singular +singular +singular +2339 singular +singular +2342 singular +singular +singular +2347 singular +singular +singular +2351 singular +singular +2354 singular +singular +2357 singular +singular +singular +singular +singular +singular +2364 singular +2366 singular +singular +singular +singular +2371 singular +singular +2374 singular +2377 singular +plural +2380 singular +singular +singular +2384 singular +2386 singular +singular +singular +singular +2391 singular +singular +plural +plural +plural +plural +plural +2399 plural +2401 plural +plural +plural +2405 plural +plural +singular +singular +plural +singular +2412 plural +2414 singular +singular +singular +singular +2419 plural +2421 plural +2423 singular +2425 plural +2427 plural +2430 plural +plural +plural +plural +singular +singular +plural +2439 plural +plural +singular +singular +plural +2446 plural +plural +plural +plural +singular +singular +singular +plural +2456 plural +plural +singular +singular +plural +2462 plural +plural +plural +2466 singular +singular +plural +singular +singular +singular +singular +2474 plural +singular +singular +plural +2481 plural +plural +2484 singular +2486 plural +2490 singular +2492 plural +2494 singular +singular +plural +singular +2499 plural +plural +2503 singular +singular +2506 singular +2508 singular +2510 plural +plural +plural +2514 plural +plural +2518 plural +plural +2521 plural +2523 plural +plural +2526 singular +plural +plural +singular +singular +plural +2533 singular +singular +singular +2537 singular +singular +singular +singular +singular +singular +singular +singular +singular +2547 singular +singular +singular +singular +2552 singular +singular +2555 singular +singular +singular +singular +singular +2561 singular +singular +singular +singular +2567 plural +2569 plural +2571 plural +plural +2574 plural +2576 plural +plural +2580 plural +plural +plural +plural +plural +2587 plural +plural +plural +2591 singular +plural +plural +singular +singular +plural +2599 singular +singular +singular +2603 singular +singular +singular +2607 singular +singular +singular +singular +singular +singular +singular +singular +singular +2617 singular +singular +2620 singular +singular +singular +singular +singular +2626 singular +singular +singular +singular +2631 plural +2633 plural +2635 plural +plural +2638 plural +2641 singular +singular +plural +plural +2647 plural +plural +2650 singular +singular +singular +plural +plural +singular +plural +2658 singular +plural +2661 singular +2664 plural +plural +singular +plural +singular +2670 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +2686 singular +2689 singular +singular +singular +plural +singular +singular +singular +plural +2699 singular +plural +plural +plural +plural +2706 plural +plural +plural +plural +plural +2713 singular +plural +2716 singular +2718 singular +plural +2721 singular +singular +2725 plural +plural +plural +plural +plural +plural +singular +2733 plural +singular +singular +plural +singular +singular +2742 plural +plural +plural +2746 singular +singular +plural +singular +plural +plural +plural +2755 plural +2757 plural +2759 plural +plural +plural +2763 plural +plural +plural +plural +2768 plural +plural +plural +plural +2773 singular +plural +plural +singular +singular +plural +2780 singular +singular +singular +singular +singular +singular +2787 singular +singular +singular +singular +2793 singular +plural +plural +singular +2798 singular +singular +singular +singular +2803 singular +singular +2806 singular +singular +singular +singular +singular +2812 singular +singular +singular +singular +2817 plural +plural +plural +2821 singular +singular +2824 singular +2826 singular +singular +2830 plural +plural +2833 plural +2835 plural +plural +plural +2839 singular +2842 singular +2844 singular +singular +2848 plural +2850 plural +2852 plural +2855 singular +singular +singular +singular +2860 singular +2862 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +2874 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +2887 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +2900 singular +singular +singular +2904 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +2917 singular +singular +singular +2921 singular +singular +singular +2925 singular +singular +2928 singular +singular +singular +2932 plural +singular +2936 singular +2938 singular +singular +plural +2942 plural +singular +singular +plural +singular +plural +2949 singular +plural +2952 singular +singular +plural +singular +plural +2958 singular +singular +singular +singular +singular +singular +2965 singular +singular +singular +singular +plural +2971 plural +plural +singular +singular +2977 plural +2979 plural +2981 plural +2983 plural +2985 singular +singular +plural +singular +singular +singular +plural +2993 plural +2995 plural +plural +2998 singular +3000 plural +singular +singular +3005 singular +singular +singular +singular +singular +3012 singular +singular +plural +plural +plural +plural +singular +singular +3021 plural +3023 plural +3025 plural +3027 singular +plural +3031 singular +3033 singular +singular +singular +singular +singular +3039 singular +plural +3043 singular +singular +singular +singular +3048 singular +3052 singular +singular +singular +singular +3057 singular +3059 singular +3061 plural +plural +3065 plural +plural +singular +plural +3070 singular +plural +3073 singular +plural +3076 plural +plural +plural +plural +plural +3082 singular +singular +singular +plural +singular +singular +3089 plural +plural +plural +3093 plural +singular +singular +singular +3098 singular +singular +singular +3102 plural +plural +singular +plural +3108 plural +3110 singular +3113 singular +3115 singular +singular +singular +singular +singular +singular +singular +singular +3124 plural +3127 plural +3130 singular +singular +plural +plural +3136 singular +singular +plural +singular +plural +3142 singular +singular +singular +singular +singular +3148 singular +singular +singular +singular +singular +3154 singular +3156 singular +singular +singular +singular +3161 singular +3164 singular +singular +singular +singular +singular +singular +singular +singular +3173 singular +singular +singular +3177 singular +singular +singular +3181 singular +singular +singular +singular +singular +singular +3188 singular +singular +singular +singular +singular +3195 singular +3197 singular +singular +3200 singular +singular +singular +singular +singular +3206 plural +singular +singular +plural +plural +3212 plural +plural +plural +plural +3217 plural +plural +3221 plural +plural +3224 plural +plural +plural +3228 plural +plural +plural +plural +3233 singular +plural +plural +3237 plural +plural +3240 singular +plural +3243 singular +singular +singular +singular +3248 singular +singular +singular +3252 singular +singular +singular +3256 singular +3258 plural +singular +singular +singular +singular +singular +singular +singular +singular +3268 singular +singular +singular +3273 singular +singular +3276 singular +singular +singular +3281 plural +plural +plural +plural +plural +plural +3288 plural +plural +plural +singular +3293 singular +singular +plural +singular +3298 plural +plural +singular +plural +plural +plural +singular +3306 plural +3308 plural +plural +3311 plural +plural +plural +plural +3317 plural +plural +plural +3321 singular +singular +singular +singular +3326 plural +plural +plural +3330 singular +singular +singular +3334 singular +singular +singular +3338 singular +singular +singular +singular +singular +3344 singular +singular +3347 plural +plural +plural +plural +3352 singular +3354 singular +singular +singular +3358 singular +singular +singular +singular +singular +3364 singular +singular +3367 plural +plural +plural +plural +singular +plural +3374 plural +plural +plural +plural +3379 plural +3381 plural +plural +3385 plural +plural +plural +3389 plural +plural +plural +plural +plural +3395 plural +3397 plural +plural +3401 plural +plural +3404 singular +singular +singular +plural +plural +singular +3411 singular +singular +singular +plural +plural +singular +3418 singular +singular +singular +plural +plural +3425 singular +singular +plural +plural +3430 singular +singular +3433 singular +singular +singular +singular +3439 singular +singular +3443 plural +plural +plural +plural +plural +3449 singular +singular +singular +singular +singular +singular +singular +3457 singular +singular +plural +plural +3462 singular +singular +singular +singular +singular +singular +singular +singular +3471 plural +plural +plural +plural +singular +3477 singular +singular +singular +singular +singular +3483 singular +singular +singular +plural +3488 singular +singular +singular +plural +plural +3494 singular +singular +singular +plural +plural +plural +3502 singular +plural +3506 singular +plural +plural +3510 singular +plural +plural +singular +singular +3516 singular +singular +singular +singular +plural +plural +plural +3524 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +3535 singular +singular +3538 singular +singular +singular +3542 plural +plural +plural +3546 plural +plural +plural +3550 plural +singular +singular +singular +3556 singular +3558 singular +3560 singular +singular +3563 singular +singular +singular +singular +plural +plural +plural +3572 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +3583 singular +singular +3586 singular +singular +singular +3590 plural +plural +plural +3594 plural +plural +plural +3598 plural +singular +singular +singular +3603 singular +3605 singular +singular +singular +singular +singular +3611 singular +3613 singular +singular +singular +plural +plural +plural +plural +plural +plural +3623 singular +singular +singular +3627 singular +singular +plural +3631 singular +singular +3636 plural +plural +plural +3640 singular +singular +3643 singular +singular +plural +singular +plural +plural +3650 singular +singular +singular +singular +singular +singular +singular +3658 singular +singular +singular +3663 singular +singular +singular +singular +singular +singular +singular +singular +3673 singular +singular +singular +singular +3678 singular +singular +singular +singular +singular +singular +singular +3686 singular +singular +singular +singular +singular +3692 singular +singular +singular +singular +singular +singular +3699 singular +plural +3702 singular +singular +3705 singular +singular +singular +singular +singular +singular +3712 singular +singular +singular +singular +singular +singular +3719 singular +singular +singular +3723 singular +singular +singular +singular +singular +singular +singular +3731 singular +singular +singular +singular +singular +3737 singular +singular +3741 singular +singular +singular +singular +3746 singular +singular +singular +3750 singular +singular +singular +singular +3756 singular +singular +singular +3760 singular +singular +3763 singular +plural +3766 singular +singular +singular +3770 singular +3772 singular +singular +3775 singular +3777 singular +singular +singular +singular +singular +3783 singular +3785 singular +singular +singular +singular +3790 singular +plural +plural +3794 singular +plural +3797 singular +singular +singular +3801 singular +singular +singular +3805 singular +plural +3808 plural +3810 plural +3812 plural +plural +3815 plural +3817 singular +3819 singular +3821 singular +3823 singular +singular +plural +plural +3828 plural +plural +singular +singular +plural +3834 singular +singular +singular +singular +3839 singular +singular +singular +3843 singular +singular +plural +plural +3848 singular +singular +singular +singular +singular +singular +3855 singular +singular +singular +3859 singular +singular +singular +3863 singular +singular +singular +3867 singular +singular +singular +3871 singular +singular +singular +singular +singular +singular +singular +singular +3880 singular +3882 singular +singular +singular +singular +3887 singular +singular +singular +singular +3892 singular +3894 singular +singular +3897 singular +singular +plural +singular +plural +plural +3904 singular +plural +plural +singular +3909 plural +plural +3912 plural +singular +3915 singular +singular +singular +3919 singular +singular +singular +singular +singular +plural +plural +plural +singular +3929 plural +plural +singular +3933 singular +singular +singular +singular +3938 singular +singular +3942 singular +3945 singular +singular +singular +singular +singular +singular +singular +singular +3955 singular +3957 singular +singular +singular +singular +plural +plural +plural +plural +3966 plural +plural +singular +singular +plural +3972 singular +singular +singular +singular +3977 singular +3979 singular +singular +singular +3983 singular +plural +plural +singular +singular +singular +singular +singular +singular +3995 singular +singular +singular +3999 singular +singular +singular +singular +singular +singular +4006 singular +plural +plural +4010 plural +plural +plural +4014 singular +singular +4017 singular +singular +plural +singular +plural +plural +singular +4025 singular +singular +singular +singular +4030 singular +singular +4033 singular +singular +4037 plural +plural +4040 singular +singular +4043 plural +plural +singular +plural +singular +singular +plural +4051 singular +plural +singular +plural +plural +plural +4058 singular +singular +plural +plural +4063 singular +singular +4066 singular +singular +singular +4070 plural +plural +plural +plural +singular +singular +singular +4079 plural +plural +4082 singular +singular +singular +plural +4087 singular +singular +4090 singular +4093 singular +singular +plural +plural +plural +singular +4100 plural +4102 plural +plural +plural +plural +4110 singular +4113 singular +singular +singular +4117 singular +plural +plural +singular +plural +4123 singular +singular +singular +singular +singular +4130 singular +4132 plural +4134 singular +singular +4137 plural +singular +plural +plural +singular +4143 plural +plural +plural +singular +plural +4149 singular +plural +singular +plural +4154 singular +singular +plural +plural +4159 singular +plural +plural +4163 plural +plural +plural +4167 plural +plural +4170 singular +singular +singular +singular +singular +4176 singular +singular +4179 singular +singular +4182 plural +4184 plural +plural +4187 plural +plural +plural +4191 plural +4193 singular +singular +plural +plural +4198 plural +plural +plural +4202 singular +singular +singular +singular +singular +4208 singular +singular +singular +4212 plural +singular +plural +4216 singular +4218 plural +plural +plural +4222 singular +4224 singular +singular +4227 singular +4229 singular +singular +singular +4233 singular +plural +singular +singular +4238 singular +singular +4241 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +plural +singular +plural +plural +4257 singular +plural +plural +plural +plural +4263 plural +singular +singular +4267 singular +singular +singular +plural +plural +plural +singular +4275 singular +plural +plural +4279 plural +plural +plural +4283 singular +singular +singular +4287 plural +singular +plural +plural +4293 singular +4295 singular +4298 plural +4300 singular +singular +singular +singular +singular +singular +4307 singular +singular +4310 plural +4312 singular +singular +singular +singular +singular +singular +singular +singular +4321 singular +4323 singular +singular +singular +4327 singular +singular +4330 singular +singular +singular +4334 plural +plural +plural +plural +4339 plural +singular +singular +singular +singular +singular +singular +plural +plural +4349 singular +4351 singular +singular +singular +singular +singular +4357 singular +singular +singular +singular +4362 singular +singular +singular +singular +4367 singular +singular +singular +4371 singular +singular +singular +4375 singular +singular +4378 singular +plural +plural +4382 plural +plural +plural +singular +singular +4388 plural +plural +singular +4392 plural +plural +plural +plural +plural +plural +singular +4400 singular +4402 plural +plural +4405 plural +singular +singular +singular +plural +4411 singular +singular +singular +4415 singular +singular +plural +plural +plural +4421 plural +4423 plural +4425 plural +plural +singular +singular +singular +singular +4433 singular +4436 singular +4438 plural +4440 plural +4442 plural +singular +plural +plural +singular +plural +4449 singular +plural +4452 plural +plural +plural +4456 plural +plural +singular +4460 plural +4462 singular +plural +singular +singular +4467 plural +plural +plural +singular +singular +4474 singular +4476 plural +singular +singular +singular +4481 plural +plural +4484 singular +4486 plural +singular +singular +4491 plural +4493 singular +singular +singular +singular +singular +4499 singular +singular +4502 singular +singular +singular +singular +4507 singular +singular +4510 singular +singular +singular +4514 plural +singular +singular +4518 plural +plural +4523 plural +plural +plural +4527 singular +singular +singular +4531 plural +plural +plural +4535 plural +singular +singular +4539 plural +plural +4542 plural +plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +4556 singular +singular +singular +4560 singular +4562 singular +singular +singular +singular +singular +4568 singular +4570 singular +4572 singular +singular +singular +singular +singular +4578 plural +plural +singular +4582 singular +singular +singular +4586 plural +singular +4589 singular +singular +singular +singular +singular +singular +4596 singular +4598 singular +4600 singular +singular +singular +singular +singular +singular +4607 singular +singular +singular +4611 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +4622 singular +singular +singular +4626 singular +singular +singular +4630 singular +singular +singular +4634 singular +singular +singular +singular +4639 singular +plural +plural +4643 singular +singular +singular +singular +plural +4650 singular +singular +singular +4654 singular +4656 plural +singular +4660 singular +singular +singular +singular +singular +singular +singular +singular +4669 singular +singular +singular +4673 singular +singular +singular +singular +4678 singular +singular +singular +singular +4683 singular +4685 singular +singular +plural +4689 plural +plural +4692 plural +singular +plural +singular +singular +4698 singular +4700 singular +singular +plural +singular +plural +plural +4707 singular +plural +singular +singular +plural +4713 singular +singular +4716 plural +singular +4719 singular +4721 singular +plural +plural +plural +singular +4727 singular +singular +plural +singular +plural +4733 plural +plural +plural +plural +4738 singular +plural +singular +singular +singular +plural +singular +singular +4747 plural +plural +plural +singular +4752 singular +singular +singular +singular +4757 plural +plural +singular +plural +singular +singular +singular +4765 singular +singular +singular +singular +singular +singular +4772 plural +plural +plural +plural +4777 singular +4780 singular +singular +4783 plural +plural +plural +4787 singular +singular +plural +plural +singular +plural +plural +4795 singular +singular +singular +plural +plural +plural +4802 plural +plural +singular +4806 plural +plural +plural +4810 singular +singular +singular +singular +singular +4816 singular +singular +singular +4820 singular +singular +4823 singular +plural +plural +singular +4828 plural +4830 plural +plural +4833 plural +4835 plural +4837 plural +singular +4840 singular +plural +plural +singular +4845 singular +singular +singular +4849 plural +plural +plural +4853 plural +singular +singular +singular +singular +4859 singular +plural +4862 singular +singular +singular +4866 singular +plural +4869 plural +singular +singular +plural +singular +plural +plural +4878 plural +4881 singular +singular +4884 singular +singular +4887 plural +4889 plural +plural +plural +singular +plural +singular +singular +singular +singular +singular +4900 singular +singular +singular +singular +4905 singular +singular +singular +singular +4910 singular +singular +singular +singular +singular +4916 singular +singular +4919 singular +singular +singular +singular +singular +singular +singular +4927 singular +singular +singular +singular +4932 singular +singular +singular +singular +4937 singular +singular +plural +plural +4942 singular +singular +singular +singular +plural +singular +4949 singular +plural +4952 plural +4955 singular +plural +4958 plural +4960 plural +4963 plural +plural +plural +plural +singular +singular +4970 plural +plural +plural +4974 singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +4988 plural +4990 plural +4992 plural +singular +4995 singular +4997 singular +4999 plural +plural +plural +5003 singular +5005 singular +5008 plural +5010 plural +5012 singular +5014 singular +singular +singular +singular +singular +singular +5023 singular +singular +5026 singular +plural +plural +singular +5031 singular +singular +singular +5035 plural +5038 plural +5040 plural +5042 singular +singular +plural +singular +5049 singular +singular +singular +singular +singular +singular +singular +plural +5058 singular +5062 singular +singular +singular +singular +plural +5068 plural +singular +5072 singular +5074 singular +plural +5077 singular +plural +plural +plural +plural +5083 singular +singular +5086 singular +singular +singular +plural +singular +singular +plural +plural +plural +5096 singular +plural +singular +singular +singular +plural +5103 plural +5105 singular +singular +5108 singular +singular +singular +singular +singular +singular +plural +5116 plural +5118 singular +plural +5121 plural +plural +5124 plural +plural +5127 plural +5129 plural +plural +5132 plural +5134 plural +plural +5137 plural +plural +5140 plural +5143 plural +plural +plural +plural +plural +5151 plural +5153 plural +plural +5156 singular +5158 singular +plural +5161 plural +plural +5165 plural +plural +5168 plural +5171 singular +plural +5174 singular +plural +5177 singular +singular +singular +singular +plural +5184 plural +plural +plural +plural +5189 singular +singular +singular +singular +plural +singular +singular +5197 plural +5199 singular +singular +singular +5203 singular +5205 singular +singular +5208 plural +plural +5211 plural +5213 plural +plural +5216 plural +plural +5219 plural +5221 singular +singular +singular +5225 singular +singular +5228 singular +singular +singular +5233 plural +plural +5236 singular +singular +singular +plural +5241 singular +singular +5245 singular +plural +5249 plural +plural +plural +singular +singular +5255 singular +singular +singular +singular +singular +5261 singular +singular +5264 singular +singular +5267 singular +5269 singular +singular +singular +singular +singular +singular +5276 singular +5278 singular +singular +singular +5282 singular +singular +5285 singular +singular +singular +5289 singular +singular +singular +plural +singular +5295 plural +plural +singular +5300 plural +plural +5303 singular +singular +singular +singular +5308 singular +5310 singular +singular +5313 singular +singular +singular +plural +5318 singular +singular +plural +5322 singular +singular +5325 singular +5327 singular +singular +plural +plural +5332 plural +plural +5336 plural +5338 plural +plural +singular +singular +5344 plural +singular +singular +5349 plural +5351 singular +singular +5354 singular +5356 singular +5359 singular +5362 plural +singular +singular +5366 singular +5368 plural +5370 singular +5372 singular +singular +5375 singular +singular +plural +5380 plural +plural +plural +singular +singular +plural +plural +plural +5390 plural +plural +plural +plural +plural +5396 singular +singular +singular +5400 singular +5402 plural +plural +singular +singular +5407 singular +5409 singular +singular +singular +singular +5414 plural +plural +5418 singular +singular +singular +5422 plural +plural +singular +singular +singular +5428 singular +singular +singular +singular +5433 plural +plural +5436 plural +5438 singular +5440 singular +5442 singular +singular +5445 singular +5447 singular +5449 singular +5451 singular +5453 singular +5455 singular +singular +singular +5459 singular +5461 singular +singular +singular +5465 singular +5467 singular +singular +singular +5471 plural +singular +singular +plural +plural +singular +singular +singular +singular +5481 singular +5483 singular +5485 singular +singular +singular +5489 singular +singular +singular +5493 singular +5495 singular +5497 singular +singular +singular +5501 singular +5503 singular +singular +singular +singular +5508 singular +5510 singular +5512 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +5523 singular +singular +singular +singular +singular +5529 singular +singular +singular +singular +singular +plural +singular +singular +5538 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +5549 singular +singular +singular +singular +singular +5555 singular +singular +singular +5559 singular +singular +singular +singular +singular +5566 singular +singular +singular +plural +plural +plural +singular +singular +5576 singular +singular +5579 singular +plural +5583 singular +singular +singular +singular +5588 singular +5590 singular +singular +singular +singular +plural +5596 plural +singular +singular +5600 singular +5605 plural +plural +plural +5609 singular +singular +singular +5613 singular +singular +plural +plural +singular +singular +singular +5621 plural +plural +singular +singular +singular +singular +singular +singular +singular +5631 singular +plural +5634 singular +singular +singular +singular +plural +plural +plural +singular +plural +plural +5645 plural +plural +plural +5649 plural +plural +plural +plural +5654 plural +plural +5657 plural +plural +5660 plural +plural +5663 singular +singular +5666 singular +5668 singular +5670 singular +5672 plural +plural +singular +singular +singular +5678 plural +plural +5681 singular +singular +5684 plural +5686 singular +singular +singular +5690 singular +singular +5693 singular +5695 plural +singular +5698 plural +singular +singular +plural +plural +plural +plural +5706 plural +plural +plural +plural +5711 singular +plural +singular +5716 singular +plural +5719 singular +singular +singular +singular +5724 singular +singular +singular +singular +singular +singular +singular +singular +5733 singular +singular +singular +singular +singular +singular +singular +5741 singular +5743 singular +plural +5746 singular +5748 plural +plural +singular +singular +singular +singular +5755 singular +singular +5758 singular +singular +plural +plural +singular +singular +singular +5767 plural +plural +singular +singular +singular +5774 singular +singular +plural +plural +singular +5780 plural +plural +singular +5784 plural +plural +plural +5788 singular +singular +5791 singular +plural +5795 plural +5797 singular +singular +singular +singular +singular +5803 singular +singular +plural +singular +5808 singular +singular +singular +singular +singular +singular +singular +plural +plural +5818 plural +plural +plural +plural +plural +plural +plural +plural +plural +5829 plural +plural +5833 plural +5835 singular +singular +5838 singular +5840 singular +5842 plural +singular +singular +singular +singular +singular +singular +singular +singular +5852 singular +5854 plural +singular +singular +singular +5859 singular +singular +plural +5863 plural +5865 singular +singular +singular +5869 plural +plural +singular +5873 singular +5875 plural +plural +5878 plural +plural +plural +plural +plural +singular +5886 plural +5888 singular +singular +5891 singular +singular +5896 singular +5898 singular +plural +plural +plural +plural +plural +5905 plural +5909 singular +5911 singular +plural +5914 singular +plural +singular +5918 singular +singular +singular +5922 singular +singular +5925 plural +5927 singular +5929 singular +5931 singular +singular +5934 singular +singular +5939 plural +plural +plural +plural +plural +plural +5946 singular +5948 singular +5950 singular +5953 singular +plural +5956 singular +plural +singular +singular +5961 singular +singular +5964 singular +5966 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +5980 singular +singular +5983 singular +plural +5986 plural +5988 plural +5990 singular +plural +plural +5994 singular +singular +5998 singular +singular +6001 singular +plural +singular +singular +6006 singular +singular +singular +6010 singular +singular +singular +singular +6016 singular +singular +6019 singular +singular +singular +singular +6025 singular +singular +6029 singular +6031 singular +singular +singular +plural +6036 singular +plural +plural +plural +6041 plural +singular +singular +plural +plural +singular +singular +singular +6050 plural +6052 plural +6054 singular +6056 singular +singular +6059 singular +singular +singular +6063 plural +singular +plural +plural +plural +6069 singular +singular +singular +singular +6074 singular +singular +singular +singular +singular +6080 singular +singular +singular +singular +singular +singular +plural +plural +6089 plural +plural +6092 plural +plural +singular +plural +6097 plural +6099 plural +6103 plural +plural +plural +plural +singular +singular +plural +plural +singular +plural +singular +6116 singular +6118 singular +6120 singular +singular +plural +6124 plural +singular +singular +singular +6129 singular +6131 plural +6133 singular +6135 singular +6137 singular +singular +singular +singular +6142 plural +plural +singular +singular +plural +singular +6150 singular +singular +singular +6154 plural +6156 singular +6159 plural +plural +plural +6164 plural +6166 singular +singular +6169 plural +plural +plural +plural +6174 singular +singular +singular +singular +plural +6180 plural +plural +6183 singular +plural +6186 singular +singular +singular +singular +6193 plural +singular +singular +singular +singular +6200 singular +6203 plural +plural +plural +6207 singular +singular +singular +singular +singular +singular +singular +singular +6216 singular +6218 singular +6220 singular +singular +plural +6224 singular +singular +singular +singular +singular +6230 plural +singular +plural +6234 singular +plural +plural +6239 plural +singular +6242 singular +singular +plural +singular +singular +6248 plural +singular +singular +singular +singular +singular +6256 singular +singular +plural +plural +6261 singular +6263 singular +singular +6266 singular +6268 singular +singular +singular +singular +6273 singular +plural +plural +6279 singular +singular +singular +singular +singular +singular +singular +6287 singular +6289 singular +singular +6292 singular +singular +6295 plural +plural +plural +singular +plural +6301 singular +6303 singular +plural +6306 singular +singular +singular +singular +6312 plural +singular +plural +6316 singular +plural +plural +6320 singular +plural +6324 singular +singular +plural +6328 singular +singular +singular +6332 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +6355 singular +6357 singular +plural +plural +singular +6362 singular +6364 singular +6366 singular +singular +6369 plural +plural +singular +singular +singular +singular +singular +6377 singular +6379 singular +singular +6382 singular +6385 singular +6387 singular +singular +singular +6391 singular +singular +singular +plural +plural +6397 singular +singular +singular +singular +6402 singular +6404 singular +singular +6407 singular +singular +6413 plural +plural +plural +plural +6418 plural +6420 singular +singular +singular +singular +singular +6426 plural +plural +plural +plural +singular +6432 singular +plural +plural +6438 singular +singular +singular +plural +plural +6444 singular +plural +plural +plural +singular +plural +singular +singular +singular +6454 singular +singular +6457 singular +singular +6460 singular +singular +6463 singular +6465 singular +6468 singular +singular +singular +singular +singular +6474 singular +singular +6478 singular +singular +singular +singular +6484 singular +6486 singular +singular +plural +plural +plural +plural +plural +6494 singular +plural +6497 singular +plural +plural +plural +plural +6505 singular +singular +singular +singular +plural +plural +6512 singular +6514 plural +singular +singular +singular +singular +6521 singular +singular +6525 singular +singular +singular +singular +6530 plural +plural +singular +6536 singular +singular +singular +singular +6542 singular +singular +singular +singular +singular +6548 singular +6550 singular +6552 singular +singular +6555 singular +6557 singular +6559 singular +singular +6562 singular +singular +plural +singular +singular +6568 singular +singular +plural +plural +6573 singular +singular +singular +singular +6578 singular +6581 singular +singular +singular +6585 singular +singular +singular +singular +singular +singular +6593 singular +singular +6596 singular +singular +singular +singular +6601 singular +singular +6605 singular +singular +singular +6610 singular +singular +6613 plural +singular +singular +singular +6618 singular +singular +singular +singular +6623 plural +singular +singular +singular +6628 singular +singular +singular +singular +6634 singular +singular +singular +singular +singular +plural +plural +6642 plural +plural +6645 plural +plural +6649 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +6660 singular +singular +singular +singular +plural +6666 singular +singular +singular +6670 singular +singular +singular +singular +plural +6676 singular +plural +6679 singular +singular +singular +singular +plural +plural +plural +plural +6688 singular +singular +6691 singular +singular +6695 plural +plural +singular +singular +6701 plural +plural +singular +singular +6706 plural +singular +plural +plural +plural +6712 plural +plural +singular +plural +6717 singular +singular +6721 singular +singular +singular +plural +singular +singular +6728 singular +singular +singular +6732 singular +6734 singular +singular +6738 singular +singular +singular +singular +singular +6745 singular +singular +6748 singular +singular +singular +singular +plural +plural +6755 plural +plural +6758 singular +singular +singular +singular +singular +6764 singular +singular +singular +singular +plural +plural +6771 plural +plural +plural +plural +plural +6777 singular +singular +6780 singular +singular +singular +6784 plural +singular +6787 plural +6789 singular +singular +singular +6793 singular +singular +singular +6797 singular +singular +singular +6801 singular +singular +6804 singular +singular +singular +6808 singular +singular +6811 singular +6813 plural +plural +singular +singular +6818 singular +singular +singular +6822 singular +singular +singular +6828 singular +singular +singular +singular +6833 singular +singular +singular +6837 plural +plural +singular +singular +6843 singular +6845 singular +6847 singular +singular +singular +singular +6852 singular +6854 singular +singular +singular +6858 singular +6860 singular +6862 singular +6864 singular +6866 singular +6868 plural +plural +plural +singular +6873 plural +singular +6877 singular +plural +plural +singular +singular +singular +plural +plural +plural +6887 singular +6889 singular +singular +singular +singular +singular +6895 singular +singular +plural +plural +singular +singular +singular +6903 plural +plural +singular +plural +6908 plural +singular +6912 singular +singular +singular +singular +singular +singular +singular +6920 plural +plural +singular +6924 plural +plural +singular +6929 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +6941 plural +plural +plural +plural +singular +6947 singular +singular +singular +singular +6952 plural +plural +singular +singular +singular +singular +singular +singular +6961 plural +plural +singular +6966 singular +singular +singular +singular +singular +singular +singular +singular +6975 plural +singular +singular +singular +6980 singular +6982 singular +singular +6985 singular +singular +singular +singular +singular +singular +singular +singular +singular +6995 singular +singular +6998 plural +7000 singular +plural +plural +7004 singular +7006 singular +singular +7010 singular +singular +singular +7014 singular +singular +singular +7018 singular +plural +plural +7022 plural +singular +singular +singular +singular +singular +singular +7032 singular +7034 singular +7036 plural +singular +7039 singular +singular +7042 plural +plural +plural +singular +plural +7048 plural +singular +7051 plural +plural +7055 singular +singular +singular +7060 singular +7062 singular +7065 singular +singular +7068 singular +singular +singular +7073 singular +7076 singular +singular +7079 plural +singular +7082 plural +plural +7085 plural +plural +plural +7089 plural +plural +7092 plural +singular +7095 singular +singular +singular +singular +7100 singular +singular +7103 singular +7106 singular +7109 singular +7111 singular +singular +plural +singular +7116 plural +plural +plural +plural +singular +7122 singular +7124 plural +singular +plural +7128 singular +singular +singular +7132 plural +singular +7135 plural +plural +singular +singular +plural +plural +7142 plural +7144 singular +7146 singular +singular +singular +singular +7151 singular +7153 singular +7155 singular +7157 singular +singular +singular +7161 singular +7163 singular +7165 plural +plural +singular +7169 plural +7171 plural +7173 plural +7175 plural +7177 plural +7179 singular +plural +singular +singular +singular +singular +singular +singular +plural +7191 plural +7193 plural +plural +7198 plural +7200 singular +singular +singular +singular +singular +singular +7207 plural +plural +7210 plural +7212 plural +plural +plural +plural +7218 plural +plural +plural +7222 plural +plural +plural +7226 singular +singular +plural +7230 plural +7232 singular +plural +7235 plural +plural +plural +plural +7240 plural +7242 plural +plural +plural +7246 plural +7249 singular +plural +7252 plural +plural +7255 plural +plural +7258 plural +plural +7262 plural +7265 plural +plural +7269 plural +7271 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +7285 singular +singular +singular +singular +7290 singular +singular +singular +7294 singular +singular +singular +singular +singular +singular +7301 singular +singular +singular +7305 singular +7307 plural +plural +singular +singular +singular +singular +singular +singular +singular +7317 singular +7319 singular +singular +singular +7324 singular +singular +7327 singular +7329 singular +singular +7332 singular +singular +7335 singular +7337 singular +singular +singular +singular +7342 singular +7344 plural +plural +singular +singular +singular +singular +singular +singular +singular +7354 singular +singular +singular +singular +7359 singular +singular +singular +singular +singular +singular +singular +7367 singular +singular +7370 singular +7372 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +7383 singular +7385 singular +singular +7389 singular +singular +7393 singular +7396 singular +7398 singular +singular +singular +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +7413 singular +singular +singular +7418 singular +7420 plural +plural +singular +singular +singular +singular +7427 singular +plural +7430 singular +singular +singular +7434 singular +7437 singular +singular +singular +7441 singular +singular +7444 singular +7446 plural +plural +7449 plural +plural +plural +singular +singular +plural +singular +singular +7458 singular +singular +singular +7462 singular +singular +singular +7467 singular +plural +7470 singular +singular +plural +singular +singular +singular +singular +7478 plural +plural +singular +plural +7483 singular +plural +plural +plural +7488 singular +singular +7493 plural +plural +plural +plural +7498 plural +singular +singular +plural +7503 plural +7505 singular +singular +7509 singular +singular +singular +singular +plural +plural +plural +singular +plural +plural +7520 plural +plural +7523 plural +7525 singular +7527 plural +7529 singular +singular +plural +7533 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +7554 singular +singular +singular +7558 singular +singular +singular +plural +plural +plural +7566 singular +singular +plural +plural +singular +7572 singular +singular +7576 plural +plural +singular +singular +7583 plural +plural +singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +7602 singular +plural +plural +7606 singular +singular +singular +plural +plural +singular +singular +singular +7615 plural +plural +plural +7620 singular +singular +singular +plural +7625 singular +singular +singular +7629 singular +singular +singular +singular +7634 plural +singular +singular +singular +singular +plural +7641 singular +7643 singular +plural +plural +singular +7648 singular +singular +7651 plural +singular +plural +plural +singular +plural +singular +plural +singular +singular +plural +plural +singular +singular +7666 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +7680 singular +singular +singular +singular +singular +7686 singular +singular +singular +plural +plural +plural +plural +singular +singular +7696 plural +plural +plural +plural +plural +singular +singular +7704 singular +singular +singular +singular +plural +singular +singular +singular +7713 singular +singular +singular +singular +singular +7719 plural +plural +plural +plural +7725 singular +plural +plural +7729 singular +singular +7732 singular +7734 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +7747 plural +7749 singular +singular +singular +plural +plural +plural +7756 plural +plural +singular +singular +7761 plural +plural +7764 singular +singular +singular +singular +7769 singular +singular +singular +7773 singular +singular +plural +plural +7778 plural +plural +plural +7782 singular +singular +singular +singular +plural +7788 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +plural +plural +singular +singular +7803 singular +singular +singular +singular +singular +singular +7811 singular +singular +singular +singular +7816 singular +plural +singular +7820 singular +singular +singular +singular +7825 singular +singular +singular +singular +plural +plural +singular +singular +plural +plural +7836 singular +singular +singular +singular +singular +singular +plural +plural +singular +7846 singular +singular +7849 singular +singular +singular +singular +plural +plural +singular +singular +7858 singular +singular +7862 singular +singular +singular +singular +7867 singular +plural +7870 singular +singular +7873 plural +plural +plural +plural +7878 plural +7880 plural +plural +7883 plural +7885 singular +7887 singular +singular +singular +singular +plural +plural +plural +7895 plural +plural +plural +7899 singular +plural +plural +7903 plural +plural +7906 singular +singular +singular +singular +7911 singular +singular +singular +7915 singular +singular +plural +plural +plural +plural +plural +plural +singular +7926 singular +singular +plural +7930 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +7945 singular +singular +singular +plural +7950 plural +7952 singular +7954 singular +singular +singular +plural +plural +plural +singular +7963 singular +7965 singular +singular +singular +singular +plural +7971 singular +singular +plural +7976 plural +7980 singular +singular +singular +singular +7985 plural +plural +7988 singular +singular +singular +singular +singular +singular +7995 singular +singular +singular +singular +singular +8001 plural +plural +singular +singular +8006 singular +8008 singular +8010 singular +8012 plural +plural +singular +8016 plural +8018 plural +plural +8022 singular +plural +plural +8026 plural +8028 singular +8030 singular +singular +singular +plural +8035 singular +singular +singular +8041 singular +singular +8045 singular +singular +singular +8050 singular +8052 plural +plural +8055 singular +singular +plural +8059 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +8070 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +8082 plural +plural +8086 singular +plural +plural +plural +8091 singular +8093 singular +singular +singular +singular +singular +singular +8101 singular +singular +8104 singular +singular +singular +singular +singular +singular +singular +8112 singular +singular +singular +singular +8117 singular +singular +8120 singular +8122 singular +singular +8125 singular +singular +singular +8130 singular +singular +plural +8134 plural +singular +singular +plural +singular +singular +singular +singular +singular +8144 singular +singular +8147 singular +singular +singular +8152 singular +singular +singular +8157 singular +singular +8160 singular +singular +8163 singular +singular +singular +singular +singular +singular +8171 singular +singular +singular +singular +singular +singular +8178 singular +singular +singular +8182 plural +plural +8185 plural +plural +singular +8190 singular +singular +singular +8194 singular +singular +8197 singular +singular +singular +singular +8202 singular +8204 singular +singular +singular +8208 singular +singular +singular +singular +8213 plural +plural +plural +singular +plural +singular +singular +8221 plural +singular +8224 plural +plural +singular +singular +8229 singular +singular +singular +singular +8235 singular +8237 singular +singular +8240 singular +8242 plural +plural +plural +plural +singular +8249 plural +plural +8252 singular +singular +singular +singular +8257 singular +8259 plural +8261 singular +plural +plural +plural +8266 singular +singular +plural +singular +plural +plural +plural +singular +singular +singular +singular +8278 singular +singular +8281 singular +8283 singular +plural +plural +8287 plural +8289 plural +plural +plural +plural +plural +8295 singular +singular +singular +plural +8300 singular +plural +8303 plural +plural +plural +8308 plural +plural +singular +8312 plural +8317 plural +8320 plural +8322 singular +singular +plural +singular +8327 plural +8329 singular +plural +plural +8334 singular +singular +singular +plural +8339 plural +8341 plural +8343 plural +singular +8346 singular +singular +singular +8350 singular +singular +plural +plural +plural +plural +8357 plural +plural +plural +plural +8362 plural +plural +8365 plural +8367 plural +singular +singular +plural +plural +8373 plural +plural +8376 plural +plural +plural +plural +8381 plural +8383 plural +8385 plural +8388 singular +plural +plural +8393 singular +singular +8397 singular +8399 singular +8402 singular +singular +plural +plural +8407 singular +plural +plural +singular +8412 singular +singular +8415 singular +8418 singular +singular +singular +singular +8424 singular +singular +8427 plural +plural +8430 singular +singular +singular +singular +8435 plural +plural +8438 singular +singular +singular +singular +8443 singular +singular +singular +singular +singular +8449 plural +singular +8452 singular +singular +8455 plural +plural +plural +singular +8460 singular +singular +singular +plural +plural +8466 singular +singular +8470 singular +singular +plural +8474 singular +singular +singular +singular +plural +singular +plural +singular +singular +8484 plural +8486 singular +singular +singular +singular +singular +singular +8493 singular +singular +singular +singular +8499 singular +8501 plural +plural +8504 singular +singular +singular +8508 singular +8510 singular +singular +singular +singular +8515 plural +plural +8518 singular +8520 singular +singular +8523 singular +singular +singular +singular +8528 singular +8530 singular +singular +singular +singular +singular +8537 singular +singular +singular +singular +singular +singular +singular +8545 singular +singular +singular +8549 singular +singular +8552 plural +plural +8555 singular +singular +singular +singular +singular +8561 plural +8563 singular +singular +plural +singular +plural +8569 singular +singular +singular +8573 plural +plural +8576 singular +singular +8579 singular +8581 plural +singular +plural +plural +singular +singular +singular +plural +8590 singular +singular +singular +singular +8595 plural +singular +plural +plural +8600 plural +8602 plural +singular +8605 singular +plural +singular +singular +singular +singular +singular +8613 plural +plural +plural +8617 plural +singular +singular +8621 plural +plural +8624 plural +plural +8627 singular +plural +plural +singular +plural +singular +singular +plural +plural +8638 plural +plural +plural +8642 singular +plural +8645 singular +singular +singular +plural +8650 singular +8652 plural +plural +singular +singular +singular +singular +8659 singular +singular +plural +8663 singular +singular +singular +singular +singular +singular +8670 singular +singular +8673 singular +singular +singular +8677 singular +singular +singular +8681 plural +plural +8684 singular +singular +singular +singular +8689 singular +singular +singular +8693 singular +8695 singular +singular +8699 singular +singular +singular +singular +8704 singular +singular +singular +8708 plural +singular +singular +singular +singular +8714 singular +singular +plural +plural +8719 singular +8721 plural +singular +singular +singular +singular +singular +plural +plural +singular +singular +8732 singular +singular +plural +8736 singular +8738 singular +8741 plural +singular +plural +plural +plural +plural +8748 singular +singular +singular +singular +plural +plural +8755 plural +8757 singular +singular +8760 singular +singular +singular +singular +singular +8766 singular +singular +8769 singular +singular +singular +singular +singular +singular +8776 plural +plural +plural +plural +singular +singular +8783 plural +plural +plural +singular +singular +plural +8790 singular +singular +singular +singular +singular +singular +8797 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +plural +8812 singular +singular +singular +plural +8817 singular +plural +8820 singular +singular +singular +singular +singular +singular +plural +singular +singular +8830 singular +singular +singular +8834 plural +plural +plural +8838 plural +8840 singular +singular +singular +8844 singular +singular +8847 singular +singular +singular +8852 singular +singular +8855 plural +plural +8858 singular +singular +8861 singular +singular +singular +plural +singular +singular +singular +8870 singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +singular +plural +plural +singular +singular +8888 singular +plural +plural +8893 singular +singular +singular +8897 singular +8899 singular +singular +singular +8903 plural +plural +singular +8907 singular +8909 singular +singular +singular +8913 plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +8928 singular +8930 singular +8932 singular +singular +singular +8936 plural +plural +plural +singular +plural +singular +plural +singular +singular +8946 singular +8948 plural +8950 singular +singular +singular +8954 singular +8958 plural +plural +plural +plural +singular +singular +8965 singular +singular +singular +singular +singular +singular +singular +singular +8974 singular +singular +singular +8978 singular +singular +8981 singular +singular +plural +plural +8987 plural +plural +8990 singular +singular +8993 singular +8996 plural +plural +singular +9000 plural +plural +plural +plural +9005 singular +singular +plural +plural +plural +9011 singular +singular +singular +singular +singular +9017 singular +singular +singular +singular +singular +singular +singular +9025 singular +9027 singular +singular +singular +singular +9032 singular +singular +singular +9036 singular +9038 singular +singular +singular +9042 singular +singular +singular +singular +9047 singular +9049 singular +singular +singular +9054 plural +singular +plural +plural +plural +9060 plural +plural +plural +plural +plural +9066 plural +plural +9069 plural +plural +9072 plural +plural +singular +9076 singular +plural +9079 singular +singular +9082 plural +plural +plural +plural +plural +9088 plural +plural +9091 plural +plural +9094 plural +singular +singular +singular +9099 singular +singular +singular +plural +plural +singular +singular +singular +9108 singular +singular +9112 plural +plural +plural +singular +9118 plural +singular +plural +9123 plural +plural +9126 singular +9129 plural +9131 singular +singular +9134 plural +singular +plural +plural +9139 plural +9141 singular +plural +plural +9146 singular +singular +9149 singular +plural +singular +singular +plural +plural +plural +9157 plural +plural +9161 plural +plural +9164 singular +singular +singular +9169 singular +singular +singular +plural +9174 plural +9176 plural +plural +9179 singular +singular +9182 singular +plural +plural +9186 plural +plural +plural +plural +9191 plural +plural +9194 plural +9196 singular +singular +plural +plural +9201 plural +plural +plural +9205 plural +plural +plural +plural +plural +9211 plural +9213 plural +9215 singular +plural +plural +singular +9220 singular +singular +9223 singular +9225 plural +plural +singular +9229 plural +plural +plural +9233 plural +plural +plural +singular +singular +9239 singular +singular +9242 plural +9244 singular +singular +singular +plural +singular +singular +plural +singular +9253 singular +singular +singular +9259 singular +9261 singular +singular +singular +singular +9266 singular +singular +singular +singular +9271 plural +9273 plural +plural +plural +plural +9278 plural +singular +singular +9282 singular +singular +singular +9286 singular +9288 singular +singular +9292 singular +singular +singular +9296 singular +plural +singular +9300 plural +plural +plural +9304 singular +9306 plural +plural +9310 singular +singular +singular +plural +plural +9316 plural +9318 singular +singular +plural +plural +9323 plural +9325 plural +plural +9328 plural +plural +9331 plural +9333 plural +9335 singular +singular +singular +singular +singular +plural +9342 plural +plural +9345 plural +9347 plural +9349 plural +9351 plural +plural +9354 plural +plural +plural +9358 plural +plural +plural +9362 plural +9364 plural +plural +plural +9368 plural +plural +plural +9373 plural +9377 plural +singular +plural +9381 plural +9383 singular +singular +plural +plural +9388 plural +9390 plural +9393 singular +9396 singular +singular +plural +plural +9402 singular +singular +plural +plural +9407 plural +9409 singular +singular +singular +9413 plural +plural +singular +singular +singular +singular +plural +plural +singular +singular +plural +plural +plural +singular +9428 singular +singular +singular +singular +9433 plural +plural +9436 plural +singular +singular +singular +9441 plural +singular +9444 plural +singular +9447 singular +plural +plural +singular +plural +9453 plural +singular +singular +9457 plural +9459 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +9474 singular +singular +singular +singular +singular +singular +singular +singular +singular +9484 singular +9486 singular +9488 singular +singular +9491 singular +singular +singular +singular +9496 plural +plural +9499 singular +singular +singular +9503 singular +singular +singular +9508 singular +singular +singular +singular +singular +singular +singular +9516 plural +singular +9519 plural +singular +singular +singular +plural +plural +singular +singular +plural +plural +9531 singular +singular +9534 singular +singular +singular +singular +9539 plural +plural +9543 singular +singular +9546 singular +singular +singular +singular +9551 plural +plural +9554 singular +plural +plural +9558 singular +plural +9561 singular +singular +singular +singular +9567 singular +singular +singular +9571 plural +plural +singular +9575 singular +singular +9578 plural +9581 plural +9584 plural +plural +9587 plural +9589 plural +9593 singular +singular +singular +9598 singular +singular +singular +singular +singular +9604 singular +singular +singular +singular +singular +9611 singular +singular +singular +9615 singular +singular +singular +singular +singular +singular +9622 singular +singular +singular +singular +singular +9629 singular +plural +singular +singular +9634 plural +plural +plural +9638 singular +singular +singular +plural +plural +singular +9645 singular +singular +9648 singular +9650 singular +singular +9653 singular +singular +singular +singular +9658 singular +singular +9662 singular +singular +singular +singular +singular +9668 singular +singular +9672 singular +singular +singular +singular +singular +9678 singular +singular +singular +9682 singular +singular +singular +9686 singular +singular +singular +singular +9691 singular +singular +singular +singular +9696 singular +singular +singular +singular +singular +singular +singular +9704 singular +singular +singular +singular +singular +9711 singular +singular +singular +singular +singular +9717 plural +plural +singular +9722 singular +singular +9725 singular +singular +singular +9729 singular +plural +9732 plural +plural +plural +9736 plural +plural +9740 plural +singular +9744 plural +singular +singular +singular +singular +singular +9751 singular +singular +singular +9756 plural +9758 singular +singular +singular +singular +singular +9764 singular +9766 singular +singular +singular +singular +9771 singular +plural +9774 singular +singular +9777 singular +9779 singular +9781 plural +9783 singular +singular +singular +singular +9788 singular +singular +9791 plural +plural +singular +singular +plural +9797 singular +singular +9800 singular +singular +plural +singular +9805 singular +plural +9808 singular +9810 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +9823 singular +singular +9826 plural +plural +singular +singular +9831 singular +singular +9834 singular +singular +9837 singular +singular +singular +singular +singular +singular +plural +9845 singular +singular +9848 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +9859 singular +singular +plural +singular +9864 plural +plural +plural +plural +9869 singular +plural +9872 plural +9875 singular +singular +singular +9879 singular +plural +singular +plural +9885 plural +9887 plural +plural +plural +plural +singular +plural +9895 singular +singular +singular +9899 plural +plural +9902 singular +singular +singular +plural +singular +singular +singular +singular +plural +singular +singular +9914 singular +singular +singular +singular +singular +9920 plural +singular +9923 plural +singular +plural +plural +plural +9929 singular +plural +plural +plural +9934 singular +singular +9937 singular +9939 singular +singular +singular +9943 singular +singular +9946 singular +plural +9949 singular +plural +9952 singular +9954 singular +9957 plural +singular +9960 plural +9962 singular +plural +plural +9967 singular +singular +singular +singular +singular +9974 plural +9976 plural +plural +plural +9981 singular +singular +singular +singular +plural +9987 plural +9989 singular +singular +singular +singular +singular +singular +singular +9997 singular +singular +singular +singular +singular +singular +10004 singular +10007 singular +10010 singular +10012 singular +singular +10017 singular +singular +10020 singular +singular +plural +plural +singular +10027 plural +singular +10031 singular +singular +singular +singular +10036 singular +singular +10039 singular +10043 plural +singular +10047 singular +plural +plural +singular +singular +10054 singular +singular +singular +singular +10059 singular +10061 singular +singular +singular +10065 singular +singular +singular +10069 singular +singular +singular +10073 plural +plural +plural +singular +singular +10079 singular +plural +10082 singular +plural +10085 plural +10087 singular +10089 singular +singular +plural +10093 singular +singular +plural +10098 singular +plural +10101 plural +singular +10104 singular +singular +plural +singular +singular +singular +singular +10114 singular +10116 singular +singular +plural +10120 plural +plural +10123 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +10136 plural +plural +10139 plural +singular +10142 singular +singular +singular +singular +10147 plural +10150 plural +plural +10153 singular +plural +plural +plural +plural +plural +singular +singular +10162 plural +10164 singular +singular +plural +singular +plural +singular +10172 singular +10174 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +10190 plural +plural +plural +10194 singular +10196 plural +plural +plural +10201 plural +plural +10204 singular +10206 plural +plural +singular +singular +singular +singular +10213 plural +plural +plural +plural +10220 plural +plural +singular +10224 singular +singular +singular +10228 singular +singular +singular +singular +singular +10234 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +10245 singular +10247 singular +10249 singular +singular +singular +plural +plural +plural +singular +singular +plural +10259 singular +singular +singular +10263 singular +singular +plural +plural +10268 singular +singular +singular +singular +10273 singular +plural +10276 singular +10278 singular +plural +10282 plural +10284 plural +10286 plural +plural +10290 plural +10292 singular +singular +plural +plural +10297 singular +singular +singular +10301 singular +singular +singular +singular +singular +singular +singular +10309 singular +singular +plural +plural +10315 singular +singular +singular +singular +singular +10321 singular +singular +singular +singular +singular +10328 singular +singular +singular +plural +plural +plural +plural +plural +10337 singular +singular +singular +10341 singular +singular +singular +10345 singular +singular +singular +10349 singular +10351 singular +singular +singular +singular +10356 singular +singular +10359 plural +plural +10362 singular +10364 plural +plural +10368 singular +singular +10371 singular +singular +singular +singular +10377 singular +singular +singular +10381 singular +singular +singular +singular +singular +singular +singular +10389 singular +10391 singular +singular +singular +singular +10397 singular +singular +singular +10401 singular +10404 plural +10407 plural +singular +10411 singular +singular +singular +singular +10417 singular +singular +singular +singular +singular +singular +singular +10425 singular +10427 singular +singular +singular +singular +singular +10433 singular +singular +10438 plural +singular +10442 singular +singular +singular +singular +plural +10448 plural +singular +plural +plural +plural +10454 singular +plural +10457 plural +plural +plural +10461 plural +10463 singular +plural +singular +singular +singular +singular +singular +singular +10472 plural +singular +plural +singular +10477 singular +singular +singular +10481 plural +10483 singular +singular +10486 plural +10488 singular +plural +10493 plural +plural +10496 singular +singular +singular +singular +10502 singular +10504 singular +10506 singular +plural +10509 singular +10511 singular +10515 plural +10518 plural +10520 plural +10523 singular +singular +10526 singular +singular +plural +singular +10531 plural +10533 singular +singular +plural +plural +plural +10540 singular +singular +singular +singular +singular +singular +singular +10548 singular +10550 singular +singular +10553 singular +singular +singular +singular +singular +singular +10562 singular +singular +10565 singular +10567 singular +10572 singular +10575 plural +plural +singular +singular +singular +10582 singular +plural +singular +singular +singular +10590 singular +singular +singular +singular +singular +10596 singular +singular +10599 singular +singular +10602 singular +plural +10605 plural +plural +10608 singular +singular +singular +plural +10613 singular +10616 plural +plural +10619 singular +singular +singular +plural +10624 singular +10627 singular +plural +10633 plural +plural +10636 singular +singular +10639 singular +singular +10642 singular +plural +singular +plural +10647 singular +singular +singular +singular +10652 plural +10655 plural +plural +10659 plural +10661 singular +singular +singular +10665 singular +10667 singular +plural +10670 singular +singular +singular +singular +singular +singular +10677 singular +10679 singular +singular +singular +singular +10684 singular +singular +10688 singular +singular +singular +singular +10693 singular +singular +10702 singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +10713 singular +10715 plural +plural +singular +10719 singular +singular +10722 singular +singular +singular +singular +plural +plural +10730 singular +singular +10733 singular +singular +singular +10737 singular +10739 singular +singular +10742 plural +plural +10745 plural +plural +singular +10751 singular +singular +singular +singular +singular +singular +singular +10759 singular +10761 plural +singular +singular +10765 singular +singular +singular +singular +singular +singular +singular +singular +10774 singular +singular +singular +singular +10779 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +10792 plural +10794 singular +singular +singular +singular +singular +10800 singular +singular +10803 singular +singular +singular +singular +singular +singular +singular +singular +10812 singular +10814 singular +singular +10817 singular +10819 singular +10821 singular +singular +singular +10825 singular +10827 singular +singular +singular +10831 plural +plural +singular +plural +plural +plural +plural +10840 plural +plural +singular +singular +plural +plural +plural +plural +10849 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +10865 singular +singular +10868 singular +10870 singular +10872 singular +singular +singular +10876 singular +singular +singular +10880 singular +singular +singular +singular +singular +singular +plural +plural +10889 singular +singular +singular +singular +singular +singular +10897 singular +singular +singular +singular +singular +singular +plural +10906 plural +singular +singular +singular +singular +10912 plural +plural +plural +10916 singular +10918 singular +singular +singular +plural +plural +plural +singular +10926 singular +singular +10929 singular +10931 plural +plural +singular +singular +10936 singular +singular +10939 plural +singular +plural +plural +10944 singular +plural +10948 plural +singular +plural +plural +singular +10954 plural +10956 singular +10958 singular +singular +singular +10962 singular +singular +10965 singular +singular +singular +10969 plural +10971 singular +singular +10974 singular +singular +10977 singular +singular +plural +10981 singular +10983 singular +singular +singular +singular +singular +10989 singular +singular +10992 singular +singular +singular +singular +10997 plural +plural +11001 singular +singular +11005 plural +11008 singular +singular +11011 singular +singular +singular +singular +singular +11017 singular +plural +singular +11021 singular +singular +singular +11025 singular +singular +11029 singular +plural +11032 singular +11034 singular +singular +plural +singular +plural +11040 plural +plural +plural +11045 singular +11047 singular +11050 singular +plural +11054 singular +singular +singular +singular +singular +11061 singular +11063 singular +singular +singular +plural +singular +plural +plural +11072 singular +singular +singular +singular +singular +11078 singular +singular +11081 singular +11084 singular +singular +plural +11088 plural +plural +singular +singular +singular +11094 plural +singular +11097 plural +plural +plural +11101 singular +singular +plural +11106 plural +plural +plural +plural +11111 plural +plural +11114 plural +plural +plural +plural +plural +11120 singular +singular +plural +plural +singular +singular +11127 singular +11129 plural +singular +plural +11133 plural +plural +singular +plural +11138 singular +11140 plural +plural +plural +plural +11145 singular +singular +singular +plural +plural +plural +11153 plural +plural +11157 singular +11159 plural +plural +singular +singular +singular +plural +plural +11167 singular +plural +plural +plural +singular +11174 singular +singular +singular +singular +singular +singular +singular +singular +singular +11184 singular +singular +singular +11188 singular +singular +singular +singular +singular +singular +11195 singular +singular +singular +singular +singular +singular +11203 singular +11205 singular +singular +11208 singular +plural +plural +singular +singular +plural +11215 singular +singular +singular +singular +11220 singular +11222 singular +11224 singular +11226 singular +singular +singular +singular +11231 singular +singular +11234 singular +singular +11237 singular +11239 singular +singular +singular +singular +singular +plural +plural +singular +singular +11249 singular +singular +singular +singular +singular +11255 singular +singular +11258 singular +singular +singular +plural +plural +11264 singular +plural +11267 singular +singular +11270 plural +11272 singular +singular +singular +11276 singular +singular +singular +singular +singular +singular +singular +11284 singular +singular +plural +plural +11289 singular +singular +singular +plural +plural +singular +11296 singular +plural +11299 singular +11301 singular +11303 singular +singular +plural +plural +11309 singular +plural +singular +singular +singular +11315 singular +singular +11319 singular +11321 singular +singular +singular +singular +11326 plural +plural +plural +plural +11331 plural +11333 singular +singular +11337 singular +singular +singular +singular +plural +11343 plural +singular +singular +singular +11349 singular +plural +plural +11353 singular +singular +singular +singular +singular +singular +plural +plural +plural +11363 plural +singular +11366 singular +singular +plural +11370 singular +singular +singular +plural +11375 singular +plural +11378 plural +plural +plural +singular +11383 singular +singular +11386 singular +singular +singular +singular +singular +11392 singular +singular +singular +plural +11397 plural +11400 plural +plural +plural +11404 plural +singular +singular +11408 singular +singular +singular +plural +11413 plural +11415 plural +11417 singular +11419 singular +11421 plural +11423 plural +11425 singular +singular +singular +plural +singular +11431 singular +singular +singular +11435 plural +plural +plural +plural +11440 plural +plural +11443 singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +11456 plural +11458 singular +singular +singular +11462 singular +11464 plural +plural +11467 singular +singular +singular +singular +plural +11473 singular +singular +singular +11477 singular +11479 singular +singular +singular +plural +plural +11485 singular +singular +plural +11489 plural +singular +plural +11493 plural +11495 singular +singular +11499 singular +singular +singular +singular +plural +11505 plural +plural +11509 singular +11511 singular +11513 singular +singular +singular +11519 singular +singular +singular +singular +plural +plural +11526 singular +plural +singular +11530 plural +singular +singular +singular +plural +plural +singular +11538 singular +plural +singular +singular +plural +plural +11545 plural +11547 singular +singular +11550 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +11564 singular +singular +singular +singular +11569 plural +plural +11572 plural +plural +11575 plural +plural +11578 singular +singular +singular +plural +11583 singular +11585 plural +plural +plural +plural +11590 singular +plural +11593 plural +singular +11596 singular +11598 plural +11600 plural +plural +11603 singular +singular +plural +plural +plural +plural +singular +singular +plural +11613 plural +plural +singular +plural +plural +plural +singular +singular +singular +singular +11624 singular +singular +11627 singular +singular +singular +plural +singular +singular +11634 singular +singular +11637 singular +singular +singular +singular +singular +singular +11644 singular +11646 singular +singular +singular +singular +11653 singular +11655 singular +singular +singular +singular +11661 plural +plural +11664 singular +singular +singular +singular +singular +11670 singular +singular +singular +11674 plural +plural +plural +plural +11679 plural +plural +plural +11683 singular +singular +11687 plural +singular +plural +11692 singular +11695 singular +singular +singular +plural +singular +plural +11702 plural +11704 singular +singular +singular +singular +singular +plural +plural +11712 plural +11714 plural +singular +11717 singular +11719 plural +singular +plural +plural +11724 singular +11731 singular +singular +singular +singular +11736 singular +singular +singular +singular +plural +plural +singular +11744 plural +plural +singular +singular +11749 singular +singular +11752 singular +11754 singular +singular +singular +singular +singular +singular +singular +singular +11763 plural +plural +plural +11767 plural +singular +singular +11771 plural +11773 singular +11775 plural +singular +11778 singular +singular +singular +11782 singular +singular +singular +singular +11787 plural +singular +plural +plural +11792 singular +singular +singular +11796 singular +singular +plural +singular +plural +singular +plural +11804 singular +singular +singular +plural +11809 singular +11812 plural +singular +11816 plural +11818 singular +singular +singular +11823 plural +singular +11826 singular +singular +singular +11830 plural +plural +11833 plural +11835 plural +11837 plural +11839 singular +singular +singular +plural +singular +plural +11846 plural +plural +plural +plural +plural +plural +11853 plural +plural +plural +plural +11859 singular +11861 plural +11864 singular +singular +11867 plural +singular +11870 singular +plural +singular +11875 singular +singular +11878 plural +11880 singular +singular +plural +singular +11885 singular +singular +singular +singular +11890 singular +11896 singular +singular +singular +singular +11901 plural +11903 plural +plural +11906 singular +singular +singular +singular +singular +11912 singular +11914 plural +plural +11917 singular +singular +plural +11921 singular +singular +plural +plural +singular +plural +singular +singular +singular +11931 singular +singular +singular +plural +11936 plural +11938 plural +singular +plural +plural +singular +plural +singular +singular +singular +11948 singular +singular +singular +singular +plural +11954 singular +plural +singular +singular +plural +plural +singular +singular +11963 plural +plural +plural +plural +11968 singular +singular +singular +singular +plural +plural +plural +11977 plural +11979 plural +singular +11983 plural +11985 plural +11987 plural +11989 singular +11991 singular +singular +plural +plural +11996 singular +singular +11999 plural +singular +plural +plural +12004 singular +singular +singular +12008 plural +12011 plural +singular +singular +12015 singular +12017 singular +plural +plural +singular +12023 singular +plural +singular +singular +plural +12029 singular +singular +plural +singular +singular +12035 singular +singular +plural +12039 singular +singular +12042 singular +singular +singular +12046 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +12061 singular +12063 singular +12066 singular +singular +singular +12070 plural +plural +plural +12074 plural +12076 singular +plural +singular +singular +plural +singular +singular +12084 singular +singular +12087 plural +12089 plural +plural +plural +12093 singular +12095 plural +12097 singular +singular +singular +plural +plural +plural +plural +12105 singular +singular +12108 plural +plural +plural +12112 plural +plural +12115 plural +12117 singular +singular +12120 plural +plural +plural +plural +singular +12126 plural +plural +plural +plural +12131 singular +singular +singular +singular +singular +singular +12138 singular +singular +12142 plural +plural +12145 singular +singular +12148 plural +singular +singular +singular +singular +singular +singular +singular +singular +12158 plural +plural +plural +singular +singular +singular +singular +singular +singular +12168 singular +singular +singular +12172 singular +singular +12175 singular +singular +12178 singular +plural +plural +plural +12183 plural +12185 singular +singular +12188 singular +plural +plural +plural +plural +12194 plural +plural +plural +plural +plural +plural +12201 singular +plural +singular +singular +singular +singular +singular +singular +singular +12211 plural +singular +plural +singular +plural +12217 plural +singular +plural +12221 plural +12223 singular +singular +12226 singular +plural +12229 plural +plural +12232 plural +plural +plural +plural +plural +plural +singular +12240 plural +plural +plural +plural +12245 singular +singular +12248 plural +12250 singular +singular +singular +plural +12255 plural +singular +singular +singular +plural +plural +12262 singular +singular +singular +plural +12268 plural +12271 singular +plural +12274 plural +singular +singular +12278 singular +plural +singular +12282 singular +singular +12285 singular +12287 singular +12291 singular +12293 singular +singular +singular +12297 singular +singular +singular +12301 singular +singular +singular +12305 singular +12307 singular +singular +12310 singular +12313 plural +singular +12316 singular +singular +12321 singular +singular +singular +12325 singular +singular +12328 singular +12330 singular +singular +12333 plural +plural +plural +plural +plural +12340 singular +singular +singular +12344 singular +singular +singular +singular +plural +12350 singular +plural +12353 plural +singular +12357 plural +12359 singular +singular +singular +singular +plural +12366 singular +singular +singular +plural +singular +12372 singular +12374 singular +singular +singular +12378 plural +12380 plural +plural +12383 singular +singular +plural +plural +12388 singular +singular +12391 singular +singular +plural +singular +singular +plural +plural +12399 plural +plural +singular +singular +plural +12405 singular +singular +plural +singular +12410 singular +singular +singular +singular +singular +singular +12417 singular +singular +singular +singular +plural +singular +plural +singular +singular +singular +12428 singular +plural +singular +singular +plural +singular +12435 singular +singular +plural +singular +singular +singular +singular +singular +12444 singular +12446 singular +12449 plural +12451 plural +plural +12454 plural +plural +12457 plural +12459 singular +singular +plural +12464 singular +12466 plural +singular +12470 plural +12472 plural +plural +singular +singular +12477 plural +12479 singular +plural +singular +singular +12484 plural +singular +singular +plural +12489 plural +singular +plural +12493 singular +12495 singular +singular +plural +12499 singular +singular +plural +singular +12504 singular +plural +singular +singular +singular +plural +12511 singular +singular +singular +singular +singular +singular +12518 singular +12520 singular +singular +12523 singular +singular +singular +singular +singular +12530 singular +12532 singular +singular +singular +singular +12538 singular +singular +singular +12542 singular +12544 singular +singular +singular +12548 plural +12550 singular +singular +singular +singular +singular +plural +singular +singular +singular +plural +singular +singular +12563 singular +plural +12566 plural +plural +12569 plural +plural +plural +plural +12574 singular +singular +singular +singular +12579 singular +singular +12582 plural +12584 singular +singular +12588 plural +singular +12591 plural +plural +12594 plural +plural +plural +singular +12599 plural +plural +12602 plural +singular +singular +12606 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +12617 singular +singular +singular +12621 singular +12623 singular +singular +12626 singular +singular +12629 singular +singular +plural +12633 singular +12636 singular +singular +singular +plural +plural +singular +plural +plural +singular +12646 plural +plural +12649 plural +plural +singular +12653 plural +plural +plural +plural +plural +singular +12660 singular +plural +12663 singular +plural +12666 singular +plural +12669 singular +plural +plural +plural +plural +plural +12676 plural +plural +12680 singular +singular +12683 plural +singular +singular +singular +singular +plural +singular +singular +singular +12693 plural +plural +plural +singular +singular +plural +12700 plural +singular +singular +singular +singular +plural +plural +singular +12709 plural +singular +singular +singular +12714 plural +singular +plural +12718 singular +singular +12721 plural +12724 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +singular +plural +12738 singular +plural +12741 singular +singular +singular +plural +plural +plural +plural +singular +plural +plural +12752 plural +plural +plural +singular +plural +singular +singular +12760 plural +12762 plural +plural +singular +singular +plural +plural +plural +singular +singular +12772 singular +singular +12775 singular +singular +singular +12779 singular +singular +12782 plural +plural +12785 singular +singular +plural +12789 singular +12791 plural +singular +singular +singular +singular +12797 singular +singular +singular +plural +plural +singular +12804 singular +singular +12807 singular +singular +singular +singular +12814 singular +singular +singular +singular +12819 plural +plural +12822 plural +plural +plural +plural +plural +singular +plural +12831 plural +singular +12834 plural +singular +12837 plural +plural +plural +12842 singular +singular +plural +12846 singular +singular +singular +12850 singular +12852 plural +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +plural +singular +singular +singular +12869 singular +plural +plural +singular +12874 plural +plural +12877 plural +plural +12881 plural +12884 singular +plural +plural +singular +plural +plural +plural +singular +singular +singular +singular +singular +plural +plural +singular +12900 plural +plural +plural +12904 plural +plural +plural +12908 plural +plural +12911 plural +plural +plural +12915 singular +12917 singular +singular +singular +12921 singular +12923 singular +singular +singular +12927 plural +plural +plural +plural +plural +singular +plural +12935 plural +12937 singular +singular +singular +12941 singular +plural +plural +singular +singular +plural +plural +plural +12950 singular +singular +plural +singular +12955 singular +plural +plural +singular +12960 singular +singular +singular +singular +12965 plural +plural +12968 plural +plural +12971 plural +12973 plural +plural +plural +plural +12979 plural +plural +plural +12983 plural +plural +12986 plural +plural +plural +plural +12991 plural +plural +plural +plural +plural +plural +12998 plural +13000 plural +13002 singular +singular +singular +plural +13007 singular +singular +singular +13011 plural +plural +singular +13015 singular +13017 singular +singular +singular +13021 singular +singular +singular +13025 singular +13028 singular +singular +singular +13032 singular +singular +13035 singular +singular +singular +plural +plural +plural +singular +plural +13044 plural +plural +singular +13048 singular +singular +singular +singular +13053 singular +singular +singular +13057 singular +singular +plural +plural +13062 plural +plural +plural +13066 plural +plural +13069 plural +plural +plural +singular +plural +13075 singular +plural +13078 singular +13080 plural +singular +plural +plural +plural +13086 plural +plural +plural +singular +plural +13092 singular +singular +13095 singular +singular +singular +singular +13100 singular +singular +13104 singular +singular +13107 singular +13110 singular +13112 singular +plural +13115 singular +plural +singular +singular +singular +singular +13122 singular +singular +13127 singular +singular +singular +singular +singular +plural +singular +singular +singular +plural +plural +plural +singular +singular +singular +singular +singular +13145 plural +plural +singular +singular +13150 singular +plural +singular +singular +singular +singular +13157 singular +singular +plural +singular +13162 singular +plural +13165 plural +plural +singular +singular +13170 plural +singular +singular +singular +singular +13176 plural +plural +13179 plural +singular +plural +13183 singular +singular +singular +plural +singular +plural +plural +13192 singular +13194 plural +singular +plural +singular +singular +singular +13201 singular +singular +13204 singular +plural +singular +singular +singular +singular +singular +singular +singular +13214 singular +singular +singular +singular +singular +13220 plural +13222 plural +13224 plural +13226 singular +singular +singular +singular +13232 singular +singular +singular +singular +singular +singular +singular +singular +singular +13243 singular +singular +13246 singular +singular +13249 plural +13252 singular +plural +singular +singular +singular +13259 singular +singular +singular +plural +13264 singular +singular +13267 plural +plural +singular +13271 singular +singular +singular +singular +plural +plural +13278 plural +plural +plural +13282 singular +singular +singular +singular +13288 singular +singular +13291 plural +13293 plural +13296 plural +13298 singular +singular +plural +13303 singular +singular +plural +plural +13308 plural +singular +singular +plural +13313 singular +singular +singular +singular +singular +singular +singular +singular +13322 singular +singular +singular +13326 singular +singular +singular +13330 singular +singular +singular +plural +13335 plural +13337 plural +plural +plural +plural +13342 singular +singular +singular +13346 plural +plural +plural +13350 singular +plural +plural +plural +13355 singular +singular +13358 singular +singular +13361 plural +singular +singular +singular +singular +singular +singular +singular +13370 singular +singular +13373 singular +singular +singular +singular +singular +singular +singular +singular +13382 singular +singular +singular +singular +13388 singular +singular +singular +singular +13394 singular +singular +singular +singular +singular +singular +singular +singular +13403 singular +singular +singular +singular +singular +singular +singular +13411 singular +13413 singular +13415 plural +plural +plural +plural +singular +singular +singular +singular +13424 plural +plural +13427 plural +plural +plural +singular +plural +singular +singular +singular +singular +plural +singular +13439 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +13452 singular +13454 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +13466 plural +singular +13470 singular +plural +plural +singular +13475 plural +plural +singular +13480 singular +singular +singular +singular +13485 singular +singular +singular +13489 singular +singular +13492 singular +singular +13495 singular +singular +13498 singular +singular +singular +13502 singular +13505 singular +singular +singular +plural +plural +13511 plural +plural +singular +singular +13516 singular +singular +singular +plural +plural +plural +13523 plural +plural +13526 plural +13528 plural +plural +plural +plural +13533 plural +13536 plural +plural +plural +13540 plural +13542 plural +13545 plural +13547 plural +plural +plural +13551 plural +13553 plural +plural +plural +plural +13558 plural +singular +singular +plural +13563 plural +13565 plural +13567 plural +plural +plural +plural +plural +13573 singular +13575 plural +plural +13578 plural +plural +plural +plural +13583 plural +plural +plural +13587 plural +singular +singular +13591 plural +plural +13594 plural +plural +13597 plural +plural +13600 plural +plural +13603 plural +plural +13608 plural +plural +singular +13612 plural +13614 plural +singular +13617 singular +singular +plural +singular +singular +13623 plural +plural +plural +plural +13628 singular +plural +13631 plural +13633 singular +singular +13636 singular +singular +plural +singular +singular +singular +singular +13644 plural +plural +13647 singular +plural +singular +singular +singular +singular +13654 singular +singular +plural +singular +plural +singular +13661 singular +singular +singular +singular +13666 singular +singular +singular +singular +13672 plural +plural +13675 plural +plural +13678 plural +singular +singular +plural +plural +13684 plural +plural +13687 plural +13689 plural +13691 plural +plural +13694 plural +13696 plural +plural +13699 plural +plural +13702 plural +singular +singular +13706 singular +singular +13709 singular +singular +13713 singular +plural +singular +singular +singular +singular +plural +13721 plural +plural +plural +plural +plural +13727 singular +singular +13730 singular +singular +singular +singular +13736 singular +singular +13739 singular +singular +singular +singular +singular +plural +13746 plural +13748 singular +singular +singular +singular +singular +13754 singular +singular +singular +singular +singular +singular +13762 singular +singular +13765 singular +singular +singular +singular +13771 singular +singular +13774 singular +singular +singular +13778 singular +singular +plural +13782 singular +singular +singular +singular +13787 singular +singular +singular +singular +singular +singular +13794 singular +singular +13797 singular +singular +singular +13801 singular +13804 plural +plural +13807 singular +13809 singular +singular +13812 singular +singular +singular +13816 singular +13819 singular +singular +singular +13823 singular +singular +13826 singular +singular +singular +13830 singular +singular +singular +singular +13836 singular +singular +13839 singular +13841 plural +plural +13844 plural +plural +13847 plural +singular +singular +13851 singular +singular +13854 singular +singular +13857 plural +plural +plural +singular +singular +singular +singular +13865 singular +singular +13868 singular +singular +13871 singular +plural +13874 plural +13877 plural +plural +plural +plural +singular +singular +13884 singular +singular +plural +13888 plural +plural +13891 plural +plural +13894 plural +singular +13897 singular +singular +13900 singular +singular +13904 plural +13906 singular +13908 singular +singular +singular +singular +singular +singular +13915 singular +singular +13918 singular +13920 singular +13922 singular +singular +13925 plural +plural +13928 plural +plural +13931 plural +plural +plural +13935 plural +13937 plural +plural +13941 plural +plural +plural +13945 singular +singular +13949 plural +13952 plural +plural +plural +plural +13958 plural +plural +singular +13962 singular +13964 plural +plural +13967 plural +plural +13970 plural +plural +plural +plural +plural +13976 plural +plural +plural +plural +plural +13982 plural +13984 plural +13986 plural +plural +plural +plural +plural +13993 plural +plural +plural +13997 singular +singular +plural +plural +14002 plural +plural +14005 plural +plural +plural +plural +plural +plural +14012 plural +plural +singular +singular +plural +plural +plural +plural +plural +plural +14023 plural +14025 singular +singular +singular +singular +singular +14031 singular +singular +singular +14035 plural +plural +14038 plural +14040 plural +14042 plural +plural +14045 plural +14048 plural +plural +14051 plural +plural +plural +14055 plural +14057 singular +14059 singular +14061 singular +14063 plural +singular +singular +singular +singular +14069 singular +singular +14072 singular +singular +singular +singular +singular +14078 singular +singular +singular +singular +singular +singular +plural +14086 singular +singular +14089 singular +singular +14092 singular +plural +singular +plural +plural +14098 singular +singular +singular +singular +singular +singular +singular +plural +plural +14108 singular +plural +plural +14112 singular +14114 singular +14116 plural +plural +singular +singular +singular +singular +singular +plural +plural +singular +14127 plural +plural +14131 plural +singular +singular +plural +singular +singular +plural +14139 singular +plural +14143 singular +plural +14149 plural +singular +singular +singular +14154 singular +singular +14157 singular +singular +singular +14161 singular +singular +singular +14165 plural +plural +plural +singular +14170 singular +plural +plural +singular +singular +14176 singular +singular +singular +plural +14181 plural +plural +plural +14185 singular +plural +14189 singular +14192 singular +singular +singular +14196 singular +14198 singular +singular +14201 singular +singular +plural +plural +plural +singular +plural +plural +14210 singular +plural +singular +plural +14215 plural +singular +14218 singular +singular +singular +singular +singular +singular +14225 singular +singular +singular +14229 singular +singular +singular +singular +plural +plural +14236 singular +plural +singular +14240 plural +plural +14243 singular +singular +singular +plural +singular +singular +singular +singular +14252 plural +plural +14255 plural +14257 plural +14259 plural +plural +plural +14263 plural +14265 singular +14269 singular +singular +singular +14273 singular +singular +14276 singular +14278 singular +14280 singular +14282 plural +plural +14285 plural +14287 plural +14289 plural +plural +singular +plural +14294 plural +plural +14297 singular +14299 plural +plural +14302 plural +plural +14305 plural +plural +plural +14309 singular +singular +singular +14314 plural +plural +14317 plural +plural +14320 plural +plural +14323 plural +plural +plural +14327 plural +plural +14331 singular +14333 singular +singular +singular +singular +singular +plural +plural +14341 singular +singular +14344 singular +singular +singular +14348 singular +singular +singular +singular +singular +singular +14355 singular +singular +singular +14359 singular +plural +plural +plural +14365 singular +singular +singular +14370 plural +singular +singular +singular +singular +singular +singular +14378 singular +singular +singular +singular +14383 singular +singular +singular +singular +singular +14389 plural +14391 singular +singular +plural +14395 plural +plural +singular +14399 singular +singular +14402 singular +14404 plural +14406 singular +singular +singular +14410 singular +14412 singular +singular +14415 singular +14418 singular +singular +singular +14423 plural +14425 singular +plural +14428 plural +plural +14431 plural +plural +plural +14435 plural +14438 singular +singular +singular +plural +singular +14444 singular +14446 singular +14448 singular +singular +singular +14452 singular +14454 singular +singular +14457 singular +14462 singular +14466 plural +plural +plural +plural +14472 singular +singular +singular +14477 plural +plural +plural +plural +plural +plural +14485 singular +plural +singular +singular +14490 singular +singular +14495 plural +14497 plural +plural +14500 plural +14502 plural +plural +plural +14506 plural +14510 singular +14512 plural +plural +singular +singular +plural +14519 plural +plural +singular +14523 singular +singular +singular +14527 plural +singular +14530 plural +plural +14533 plural +14536 singular +singular +singular +14540 plural +14542 singular +14544 plural +14546 singular +singular +singular +singular +singular +singular +singular +14555 singular +singular +singular +14559 plural +plural +plural +14565 singular +singular +plural +plural +plural +singular +singular +singular +14574 singular +singular +14577 singular +singular +singular +singular +14582 plural +plural +plural +14586 singular +singular +14589 plural +plural +plural +plural +plural +14596 singular +singular +singular +singular +singular +singular +singular +14604 singular +14607 plural +plural +plural +plural +singular +singular +14614 plural +singular +singular +singular +singular +singular +14621 plural +plural +singular +singular +14626 singular +14628 singular +singular +14631 singular +plural +plural +singular +14636 singular +singular +14639 plural +plural +plural +singular +14644 plural +plural +plural +14648 plural +plural +14651 plural +plural +14655 singular +singular +plural +singular +singular +14662 singular +singular +singular +singular +singular +14668 plural +plural +singular +plural +14674 singular +singular +14678 plural +14680 plural +plural +plural +plural +14686 singular +14688 plural +14690 singular +plural +14695 singular +singular +singular +singular +14701 plural +plural +singular +singular +singular +14707 singular +singular +singular +14711 plural +plural +singular +14716 plural +14719 singular +singular +14722 singular +singular +singular +singular +14727 plural +plural +plural +plural +14732 singular +singular +14736 singular +singular +singular +14741 plural +plural +singular +singular +14746 singular +singular +singular +singular +singular +singular +singular +14756 plural +plural +plural +plural +14761 singular +singular +plural +plural +14766 plural +plural +14769 plural +14771 singular +singular +singular +singular +14776 singular +singular +14780 plural +14782 singular +singular +singular +14786 singular +plural +14789 singular +14791 singular +singular +singular +singular +singular +singular +14798 plural +14801 singular +singular +singular +singular +14806 singular +singular +14809 plural +14811 singular +singular +singular +singular +14816 singular +singular +14819 plural +14822 plural +singular +singular +singular +singular +plural +singular +14830 singular +plural +14834 singular +singular +singular +singular +singular +singular +singular +singular +14843 singular +14847 singular +14849 singular +singular +singular +14853 singular +14855 plural +plural +plural +14859 singular +14861 plural +singular +singular +singular +singular +singular +singular +14869 singular +singular +singular +singular +14874 singular +singular +singular +singular +singular +singular +14881 singular +singular +singular +singular +14886 plural +singular +singular +14890 singular +singular +singular +singular +singular +singular +14897 singular +singular +singular +singular +singular +singular +14904 singular +plural +14908 plural +plural +plural +singular +singular +singular +14916 singular +singular +singular +singular +singular +14922 singular +singular +singular +singular +singular +singular +singular +14930 singular +14932 plural +plural +singular +14936 singular +14938 singular +14940 plural +plural +singular +singular +singular +singular +singular +singular +14949 singular +singular +14952 singular +14955 singular +singular +14958 singular +14960 singular +singular +14963 singular +singular +singular +14967 plural +plural +singular +14971 singular +singular +singular +14975 singular +singular +plural +plural +14980 singular +singular +singular +plural +plural +14986 plural +plural +plural +plural +plural +plural +plural +14994 singular +singular +singular +15000 plural +plural +plural +15005 plural +15007 plural +plural +plural +plural +plural +15013 plural +15015 plural +singular +15018 plural +plural +plural +singular +15023 plural +plural +15026 plural +plural +plural +15030 singular +singular +singular +plural +plural +15036 plural +15038 singular +singular +singular +singular +singular +singular +singular +plural +15047 singular +15049 plural +plural +plural +plural +plural +15055 plural +plural +plural +plural +15060 plural +plural +plural +plural +plural +plural +plural +15068 singular +singular +plural +15072 plural +plural +plural +plural +15077 plural +plural +plural +plural +15085 singular +plural +15088 plural +plural +15092 plural +plural +15095 plural +plural +15098 plural +plural +15101 singular +singular +singular +15105 plural +plural +plural +15109 singular +15111 plural +plural +15114 singular +singular +singular +15118 singular +plural +15121 plural +plural +plural +plural +singular +singular +singular +plural +15130 singular +singular +singular +15134 singular +plural +15137 singular +plural +15140 plural +15143 plural +singular +singular +15147 singular +singular +15151 singular +singular +singular +plural +plural +plural +15158 singular +plural +plural +plural +singular +15165 singular +singular +15168 plural +15170 singular +15173 singular +singular +singular +15177 singular +singular +singular +15181 singular +15183 singular +singular +plural +15187 plural +singular +singular +15191 plural +15193 singular +plural +15197 singular +plural +15200 singular +plural +15204 singular +singular +singular +singular +singular +singular +singular +15212 singular +singular +singular +singular +singular +singular +15220 singular +singular +singular +singular +singular +plural +plural +plural +15229 singular +singular +15232 plural +15234 singular +singular +plural +15238 plural +singular +singular +plural +15243 plural +singular +singular +15247 plural +singular +singular +singular +plural +15253 plural +singular +singular +singular +singular +singular +singular +15261 singular +singular +15264 singular +15266 plural +singular +singular +15270 plural +singular +singular +singular +15275 singular +singular +singular +singular +singular +singular +15282 singular +plural +15285 plural +singular +singular +15289 plural +singular +singular +singular +plural +15295 plural +singular +singular +singular +singular +singular +singular +15303 singular +singular +15306 singular +15308 plural +singular +singular +15312 plural +singular +singular +singular +15317 singular +singular +singular +singular +singular +15323 singular +15325 singular +singular +singular +singular +singular +singular +singular +singular +singular +15335 singular +singular +singular +singular +15341 singular +15343 singular +15346 singular +15348 singular +singular +singular +singular +singular +singular +15355 singular +singular +singular +singular +singular +singular +15362 singular +singular +singular +singular +singular +singular +singular +singular +15371 singular +singular +15374 singular +15377 singular +15379 singular +15382 singular +15384 singular +singular +15387 plural +plural +singular +plural +plural +15394 singular +singular +singular +singular +singular +15400 singular +15402 plural +15404 singular +singular +singular +15408 plural +singular +singular +plural +15413 plural +15415 singular +singular +singular +singular +15420 singular +15422 singular +15424 singular +15426 singular +singular +singular +15430 singular +15432 singular +singular +singular +plural +15437 singular +singular +singular +singular +15442 singular +singular +singular +15446 singular +singular +plural +plural +15452 singular +singular +singular +singular +singular +15458 singular +singular +singular +15462 plural +plural +plural +15466 singular +15468 singular +15470 singular +singular +singular +15474 plural +15476 singular +plural +plural +plural +15481 singular +plural +15484 plural +15486 singular +singular +singular +plural +plural +15492 plural +plural +15496 singular +plural +plural +15500 plural +singular +15503 plural +plural +15506 plural +15508 singular +singular +singular +plural +15513 plural +singular +plural +plural +plural +singular +singular +singular +plural +singular +singular +plural +15526 singular +singular +singular +15530 singular +15532 plural +singular +15535 singular +15537 plural +singular +singular +singular +15542 plural +singular +singular +15546 plural +singular +singular +15550 plural +singular +15553 singular +singular +15556 plural +15558 singular +15560 plural +singular +plural +plural +plural +singular +15567 plural +singular +singular +15571 plural +15573 singular +15575 plural +15578 plural +singular +singular +15582 plural +15584 singular +15586 plural +15589 plural +singular +singular +15594 singular +15596 plural +15598 singular +15600 singular +singular +singular +singular +plural +15606 singular +plural +15609 singular +plural +singular +plural +plural +plural +singular +plural +plural +singular +plural +15621 singular +15623 plural +15625 plural +plural +plural +15629 singular +15631 singular +singular +singular +singular +singular +singular +singular +singular +15640 plural +plural +singular +15644 singular +15647 plural +singular +15650 singular +15653 plural +singular +singular +singular +15659 plural +singular +singular +15664 plural +singular +singular +15669 singular +15672 plural +singular +15675 plural +15677 plural +plural +singular +15681 plural +singular +singular +15685 singular +15687 singular +15689 singular +15691 singular +15694 singular +15697 plural +singular +15700 singular +plural +singular +15704 singular +plural +15707 singular +15709 plural +singular +plural +plural +plural +15715 singular +plural +15718 plural +plural +15721 singular +singular +15724 plural +plural +15727 singular +singular +15730 singular +15732 singular +singular +singular +plural +plural +plural +plural +singular +plural +plural +singular +plural +15747 plural +singular +singular +singular +15752 singular +singular +singular +singular +singular +15758 singular +15761 plural +plural +plural +15765 plural +plural +singular +singular +15770 singular +singular +singular +singular +singular +singular +singular +15778 plural +15780 singular +singular +singular +plural +15785 plural +15787 plural +15790 singular +singular +15794 singular +singular +15797 singular +singular +15800 singular +singular +singular +15804 singular +15806 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +15818 singular +15820 singular +singular +singular +singular +15825 plural +plural +plural +plural +plural +15831 singular +singular +singular +singular +15836 singular +singular +15839 singular +15842 plural +15844 singular +singular +singular +singular +plural +singular +plural +plural +singular +singular +15855 singular +singular +singular +15859 singular +15862 plural +plural +plural +15866 plural +15868 singular +15871 plural +15873 singular +singular +singular +singular +singular +15879 singular +singular +singular +15883 singular +15885 singular +singular +15888 singular +plural +15892 singular +singular +singular +singular +15897 singular +singular +singular +singular +15902 singular +singular +singular +15906 singular +singular +15909 singular +plural +15912 singular +singular +singular +singular +singular +15918 plural +plural +singular +plural +singular +singular +15925 singular +plural +singular +singular +15930 plural +plural +singular +15934 plural +15938 singular +singular +15941 singular +singular +15944 singular +singular +plural +plural +plural +plural +plural +singular +singular +plural +singular +15956 plural +singular +15959 singular +singular +15962 singular +singular +plural +15966 singular +singular +15969 singular +singular +15972 plural +singular +singular +singular +singular +singular +singular +singular +15981 singular +15983 singular +singular +singular +singular +15988 plural +plural +singular +15992 plural +plural +plural +15996 singular +plural +singular +singular +16001 plural +singular +singular +16005 singular +singular +singular +16009 plural +16011 plural +16013 plural +plural +singular +16017 singular +plural +16020 singular +16022 plural +singular +singular +16026 plural +16028 plural +16030 singular +singular +singular +16034 singular +singular +singular +16038 singular +singular +singular +singular +singular +16044 singular +singular +singular +16048 singular +singular +singular +singular +singular +16054 singular +singular +singular +singular +singular +16060 singular +16062 singular +16065 singular +singular +singular +16069 singular +singular +singular +singular +singular +singular +singular +singular +singular +16080 singular +singular +singular +singular +16085 singular +singular +singular +singular +singular +singular +16092 singular +singular +singular +singular +singular +singular +singular +16100 plural +plural +singular +singular +singular +singular +16107 singular +singular +16110 singular +plural +plural +singular +plural +plural +singular +singular +singular +singular +singular +16122 singular +singular +16125 singular +singular +plural +singular +plural +16131 singular +plural +16134 singular +singular +singular +singular +singular +singular +singular +singular +16143 plural +singular +16146 singular +plural +16149 singular +plural +16153 singular +16157 singular +singular +singular +singular +singular +16163 singular +singular +singular +16167 singular +singular +16170 plural +singular +16173 singular +singular +singular +singular +singular +16179 plural +plural +16182 singular +singular +plural +plural +16187 singular +plural +singular +singular +plural +plural +plural +16195 singular +16197 singular +singular +singular +16201 singular +singular +singular +singular +16206 plural +plural +plural +singular +singular +16213 singular +16215 singular +singular +plural +16219 singular +singular +16222 singular +singular +singular +singular +singular +16228 plural +plural +16231 singular +singular +16234 singular +singular +singular +singular +singular +16240 singular +singular +16244 singular +singular +singular +16248 singular +16251 singular +singular +singular +singular +singular +singular +16258 singular +singular +16261 singular +16265 singular +singular +16269 plural +plural +plural +plural +16274 singular +16276 plural +singular +singular +16280 singular +singular +singular +16284 singular +plural +plural +plural +16290 singular +singular +16293 singular +16295 singular +singular +singular +16299 plural +16301 plural +singular +singular +16308 singular +plural +singular +singular +singular +singular +singular +16316 singular +plural +16320 plural +16322 singular +16324 singular +singular +singular +16328 singular +singular +singular +16332 singular +singular +singular +16336 singular +singular +singular +16340 singular +singular +singular +singular +16347 singular +singular +16351 singular +16353 singular +16355 plural +plural +16358 singular +plural +plural +16362 singular +singular +singular +16367 plural +singular +singular +16372 singular +plural +16375 plural +16378 plural +16380 singular +16382 singular +singular +singular +16386 singular +singular +singular +16391 singular +singular +singular +singular +singular +singular +16399 singular +singular +16404 singular +singular +singular +singular +singular +singular +16411 singular +16413 singular +plural +plural +16417 plural +plural +plural +plural +plural +16423 singular +plural +16426 singular +singular +16429 singular +singular +singular +singular +singular +16436 singular +16438 plural +plural +16441 singular +plural +plural +singular +16446 plural +singular +singular +singular +singular +16452 singular +singular +singular +singular +singular +16458 plural +plural +plural +plural +singular +singular +singular +singular +singular +16469 singular +singular +singular +singular +singular +plural +16476 singular +16479 singular +singular +singular +16483 plural +16485 plural +16487 plural +plural +16490 plural +singular +singular +16494 singular +singular +singular +singular +plural +singular +singular +16502 singular +singular +singular +singular +plural +singular +16510 singular +singular +singular +singular +singular +singular +16517 singular +singular +16520 singular +singular +singular +singular +singular +16526 singular +singular +16529 plural +plural +plural +plural +16534 singular +singular +16537 plural +singular +16540 singular +singular +plural +16544 singular +singular +singular +singular +singular +singular +singular +singular +16553 singular +singular +singular +singular +singular +singular +singular +singular +singular +16563 singular +singular +singular +singular +singular +singular +singular +singular +16572 singular +singular +singular +16576 plural +plural +plural +singular +16581 singular +plural +16584 singular +16587 singular +16589 singular +singular +singular +16593 singular +singular +16596 plural +16598 plural +plural +16602 plural +plural +plural +16607 singular +16610 singular +singular +singular +singular +singular +singular +plural +plural +16620 singular +plural +16623 plural +16625 plural +16627 singular +16629 singular +16631 singular +singular +singular +singular +16637 plural +singular +16640 singular +singular +singular +16644 plural +plural +plural +plural +plural +16650 plural +plural +plural +plural +singular +plural +16657 plural +plural +singular +singular +plural +16663 singular +singular +singular +16667 plural +plural +16670 plural +plural +plural +16674 singular +singular +singular +singular +16681 singular +singular +singular +singular +16686 singular +16688 singular +16690 plural +plural +16693 singular +singular +16696 plural +plural +16699 singular +singular +singular +plural +singular +16705 singular +singular +16708 singular +plural +16712 plural +plural +plural +plural +16717 singular +plural +16720 plural +singular +singular +singular +16725 singular +singular +singular +singular +16731 plural +plural +16735 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +plural +16747 singular +singular +singular +16751 singular +singular +singular +singular +singular +singular +16758 singular +singular +singular +singular +16763 plural +singular +16766 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +16781 singular +plural +16785 plural +singular +singular +singular +singular +singular +16792 plural +singular +singular +16796 singular +16798 plural +plural +singular +singular +16803 singular +singular +singular +plural +plural +singular +singular +singular +singular +16813 singular +plural +plural +singular +16818 plural +singular +singular +singular +plural +singular +16825 plural +plural +plural +singular +singular +singular +16832 plural +16834 singular +singular +singular +16838 plural +singular +16841 plural +plural +plural +singular +plural +singular +singular +singular +singular +singular +singular +16853 singular +singular +singular +16858 singular +singular +16861 singular +singular +singular +singular +singular +16867 singular +singular +16870 singular +singular +singular +16874 singular +singular +16877 plural +singular +16880 singular +singular +singular +16884 singular +16886 singular +singular +singular +singular +singular +16892 singular +plural +16895 singular +singular +16898 singular +singular +singular +16903 singular +16905 singular +16908 singular +singular +singular +16913 singular +plural +plural +plural +plural +singular +singular +16922 singular +16924 plural +singular +16928 singular +singular +singular +singular +singular +singular +16935 singular +16941 singular +singular +singular +16946 singular +singular +16949 singular +singular +singular +singular +singular +singular +singular +16958 singular +16961 singular +singular +16964 singular +16966 singular +16969 singular +singular +singular +plural +plural +plural +plural +16977 plural +plural +singular +singular +16982 singular +singular +16986 singular +16988 plural +singular +plural +16992 plural +singular +singular +singular +16997 singular +singular +singular +singular +singular +17003 singular +singular +singular +plural +17008 plural +plural +plural +17012 plural +singular +singular +singular +singular +singular +17019 plural +plural +singular +17023 plural +singular +singular +17027 singular +plural +plural +17031 singular +singular +singular +17035 singular +singular +17038 plural +plural +plural +plural +plural +plural +17045 singular +17047 plural +17049 singular +singular +17052 singular +singular +singular +17056 singular +plural +plural +17060 plural +singular +singular +singular +singular +17066 singular +plural +plural +17070 singular +singular +singular +singular +singular +singular +17077 singular +17080 singular +singular +singular +17084 singular +singular +singular +singular +17089 plural +plural +17092 plural +singular +singular +singular +singular +singular +plural +17100 plural +singular +17103 plural +plural +17106 singular +singular +singular +singular +17111 singular +singular +singular +17115 singular +singular +singular +17119 singular +singular +17122 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +17134 singular +singular +singular +singular +singular +17141 singular +17143 singular +17145 plural +plural +17148 plural +singular +singular +17152 singular +singular +singular +singular +17157 singular +plural +singular +plural +17163 singular +singular +17167 singular +singular +17171 singular +singular +17176 singular +singular +singular +singular +17181 singular +singular +singular +singular +singular +plural +17188 plural +17190 singular +singular +singular +singular +17195 plural +plural +singular +plural +singular +singular +plural +singular +singular +plural +singular +17207 singular +singular +singular +singular +17212 singular +17215 singular +plural +singular +17219 singular +singular +17222 singular +singular +singular +17226 singular +singular +singular +singular +singular +singular +singular +17234 singular +singular +singular +17238 plural +singular +17242 singular +17244 singular +17246 plural +plural +17249 plural +plural +plural +plural +plural +17255 plural +singular +singular +17259 singular +singular +plural +17263 singular +singular +singular +singular +plural +plural +singular +17271 plural +17273 singular +plural +17276 plural +plural +singular +singular +singular +plural +singular +singular +17285 singular +singular +singular +singular +singular +singular +plural +plural +singular +17295 singular +singular +17298 singular +singular +singular +17302 plural +17304 plural +plural +singular +17308 singular +singular +singular +17312 singular +singular +17316 singular +singular +singular +singular +singular +plural +plural +17324 singular +singular +singular +singular +singular +17330 singular +singular +singular +plural +plural +17336 singular +singular +singular +singular +singular +singular +singular +singular +17345 plural +17348 plural +plural +plural +17352 singular +plural +singular +singular +17357 singular +singular +singular +singular +17362 singular +17364 plural +plural +singular +singular +plural +singular +singular +17372 singular +singular +plural +17376 singular +singular +singular +singular +17381 plural +singular +singular +singular +plural +singular +17388 plural +singular +17391 plural +plural +17394 singular +singular +singular +17398 singular +17400 singular +singular +singular +17404 plural +17406 singular +plural +singular +plural +singular +singular +plural +plural +17415 plural +17417 singular +plural +singular +singular +17422 plural +17424 singular +singular +singular +17429 plural +singular +plural +singular +singular +singular +17436 plural +singular +plural +plural +singular +17442 plural +singular +17445 singular +17448 plural +plural +singular +singular +singular +singular +singular +plural +17457 singular +singular +singular +singular +17462 plural +17464 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +17475 singular +17477 singular +singular +17480 singular +17482 singular +17485 plural +singular +plural +plural +plural +singular +plural +singular +17494 plural +plural +singular +17499 plural +17501 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +17516 plural +17518 singular +17520 plural +singular +17523 plural +17525 singular +17527 plural +17529 plural +plural +plural +singular +plural +plural +plural +plural +17538 plural +singular +singular +singular +singular +17545 plural +plural +singular +singular +singular +17551 singular +singular +singular +singular +17556 singular +17558 singular +singular +17561 plural +plural +plural +17565 plural +plural +17568 plural +plural +plural +singular +singular +17575 singular +singular +singular +singular +singular +17582 singular +singular +17585 plural +17587 singular +singular +17590 singular +singular +singular +17595 singular +singular +17598 singular +17600 singular +singular +singular +17604 singular +singular +17607 plural +plural +plural +plural +17612 singular +plural +singular +17617 singular +singular +singular +singular +17622 singular +singular +singular +17626 singular +singular +17630 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +17642 singular +singular +singular +singular +singular +singular +singular +17650 singular +singular +singular +17654 plural +plural +17657 plural +plural +plural +17661 singular +singular +singular +17666 singular +17668 plural +singular +17671 singular +singular +17674 singular +singular +17677 singular +singular +singular +singular +17682 plural +plural +plural +singular +plural +17688 singular +singular +singular +singular +17693 singular +singular +17696 singular +singular +singular +singular +singular +singular +17703 singular +singular +singular +singular +singular +singular +17716 singular +singular +singular +17720 plural +plural +plural +17724 plural +plural +plural +17728 plural +plural +plural +plural +plural +plural +17735 plural +17737 plural +plural +17740 singular +singular +singular +plural +17745 singular +singular +singular +17749 plural +plural +17752 singular +singular +17755 plural +17757 singular +plural +singular +singular +plural +singular +singular +17765 plural +plural +plural +17769 plural +17771 singular +singular +singular +singular +17776 plural +17778 plural +plural +17782 plural +plural +plural +singular +singular +17788 singular +singular +plural +singular +17793 plural +singular +singular +singular +singular +17799 singular +singular +singular +singular +17804 singular +singular +17807 singular +singular +plural +plural +singular +17813 singular +singular +singular +singular +singular +17819 singular +singular +singular +singular +17824 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +17838 singular +singular +singular +17843 singular +singular +singular +singular +singular +singular +singular +17851 singular +singular +17854 singular +singular +17857 singular +singular +singular +singular +singular +singular +17864 singular +singular +17867 singular +singular +singular +singular +singular +singular +singular +singular +17877 singular +singular +singular +17881 singular +singular +singular +singular +plural +17887 singular +singular +17890 singular +17892 singular +singular +17895 singular +singular +plural +plural +plural +17901 plural +plural +17904 singular +plural +singular +plural +17909 singular +singular +singular +singular +17914 singular +17916 plural +plural +singular +17920 singular +17922 singular +singular +17925 singular +singular +singular +17930 plural +plural +plural +plural +singular +17936 plural +singular +singular +singular +17941 plural +plural +17944 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +plural +singular +plural +plural +17960 plural +17962 plural +plural +plural +singular +singular +plural +singular +singular +17971 singular +singular +17975 plural +singular +singular +17979 singular +plural +singular +singular +singular +singular +17986 singular +singular +singular +17990 singular +singular +17993 singular +singular +singular +singular +17998 singular +singular +singular +18002 singular +18004 singular +singular +singular +singular +18009 singular +18011 singular +18013 singular +singular +singular +singular +18018 singular +18020 singular +singular +singular +singular +18025 singular +18028 singular +singular +singular +plural +plural +plural +18035 plural +18037 plural +18039 singular +singular +singular +singular +plural +plural +18046 plural +plural +18049 singular +18051 singular +singular +singular +plural +18056 singular +18059 singular +18061 singular +plural +plural +singular +singular +18067 singular +18069 singular +plural +plural +plural +plural +singular +18076 singular +18078 plural +plural +18081 singular +singular +plural +18085 singular +singular +18088 singular +plural +singular +singular +plural +18094 plural +singular +18097 singular +singular +18100 singular +18102 singular +singular +plural +18106 plural +plural +singular +18110 singular +singular +singular +plural +singular +plural +18117 plural +plural +plural +singular +plural +plural +18124 plural +singular +18127 singular +plural +singular +singular +18132 plural +plural +plural +plural +plural +singular +18139 plural +18141 singular +singular +18144 singular +plural +18147 plural +plural +singular +plural +singular +singular +plural +18155 singular +singular +plural +plural +plural +plural +plural +plural +18164 plural +18166 plural +plural +18169 singular +plural +plural +plural +plural +plural +plural +plural +plural +18179 plural +plural +singular +singular +plural +plural +singular +plural +plural +18190 singular +singular +18193 singular +singular +plural +plural +18198 plural +plural +plural +18202 plural +plural +plural +plural +18207 plural +18209 singular +singular +singular +singular +18214 plural +18216 singular +18218 singular +18220 plural +18222 plural +plural +18225 singular +singular +18228 singular +singular +18231 singular +plural +singular +singular +18236 plural +singular +plural +18240 plural +plural +18243 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +18254 singular +18257 singular +singular +18260 plural +plural +plural +plural +plural +plural +plural +18268 singular +singular +singular +singular +18273 singular +singular +18276 singular +singular +singular +plural +plural +18282 plural +plural +singular +plural +18287 singular +singular +18290 plural +singular +plural +plural +plural +18296 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +18308 singular +18310 singular +singular +singular +singular +singular +singular +singular +singular +singular +18320 singular +singular +singular +singular +singular +singular +singular +singular +singular +18330 singular +singular +plural +singular +singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +singular +18346 singular +singular +singular +singular +singular +18352 singular +plural +18355 singular +18357 singular +singular +singular +singular +singular +18363 plural +plural +plural +18367 plural +18369 singular +18371 singular +singular +singular +plural +plural +plural +plural +18379 singular +singular +singular +singular +plural +singular +18386 singular +singular +18389 singular +singular +singular +18393 singular +plural +18396 singular +singular +18399 singular +singular +singular +singular +singular +singular +18406 singular +singular +18409 singular +singular +singular +18413 singular +singular +plural +plural +singular +singular +singular +plural +singular +18423 singular +singular +plural +singular +singular +18429 singular +18431 plural +plural +plural +singular +singular +18437 singular +singular +singular +18441 singular +18443 singular +singular +18446 singular +18448 singular +singular +18451 singular +singular +singular +plural +plural +plural +18458 singular +singular +18461 singular +singular +18464 singular +18466 singular +singular +18469 plural +plural +singular +singular +singular +singular +singular +singular +singular +18479 singular +singular +18482 singular +singular +singular +singular +singular +18488 singular +singular +18491 singular +18493 singular +singular +18496 plural +singular +18499 singular +singular +18502 singular +18504 plural +plural +18507 plural +plural +plural +singular +18513 singular +18515 singular +singular +singular +singular +singular +18521 singular +singular +singular +singular +singular +singular +singular +18529 singular +18531 singular +singular +singular +18535 singular +singular +singular +singular +singular +plural +18542 plural +18544 singular +singular +18547 singular +18549 singular +singular +singular +singular +singular +singular +18556 singular +singular +singular +singular +plural +18562 singular +singular +18565 plural +plural +18568 singular +plural +singular +singular +plural +18574 singular +18576 singular +plural +18579 plural +plural +18582 singular +plural +plural +plural +plural +singular +18589 singular +singular +singular +singular +singular +singular +singular +18597 singular +singular +singular +singular +18602 plural +18604 singular +singular +plural +plural +plural +18610 singular +singular +plural +18614 plural +singular +singular +plural +singular +18620 singular +singular +18623 plural +plural +plural +18627 singular +18629 plural +18631 singular +18633 singular +plural +plural +singular +18638 singular +singular +singular +18642 plural +18644 singular +singular +singular +18648 singular +singular +plural +18652 singular +singular +18657 plural +plural +18660 singular +singular +18663 singular +singular +plural +singular +18668 singular +singular +18671 singular +singular +singular +plural +18676 singular +singular +singular +singular +18681 plural +singular +singular +singular +singular +singular +singular +singular +singular +18691 singular +singular +singular +singular +singular +18697 singular +18699 singular +18701 singular +singular +singular +singular +singular +singular +18708 singular +singular +singular +singular +18713 singular +18715 plural +plural +18719 plural +plural +singular +singular +singular +singular +singular +18727 singular +18729 plural +plural +plural +plural +singular +18735 plural +singular +18738 singular +singular +singular +singular +singular +18745 singular +singular +singular +singular +singular +18751 singular +18753 singular +singular +plural +plural +18758 singular +singular +singular +18762 singular +18764 singular +18766 singular +18768 singular +singular +singular +singular +singular +18774 singular +plural +singular +18778 singular +18780 singular +singular +singular +singular +singular +singular +18787 singular +singular +singular +singular +18792 singular +plural +18795 singular +singular +18798 singular +singular +singular +plural +18803 singular +plural +plural +18807 plural +18809 plural +plural +18812 singular +singular +singular +singular +singular +18818 singular +singular +18821 singular +plural +18824 plural +plural +plural +18828 plural +plural +singular +18833 singular +18835 plural +plural +18838 plural +singular +18842 plural +18844 singular +singular +18847 singular +18849 singular +singular +18852 singular +18854 singular +singular +singular +18858 plural +18860 singular +18862 plural +singular +18865 plural +singular +18868 plural +plural +singular +18872 singular +plural +plural +18877 plural +plural +plural +18883 singular +18886 singular +singular +18889 singular +singular +18892 plural +plural +plural +18896 singular +singular +singular +18900 plural +plural +singular +18904 singular +18906 singular +singular +singular +singular +18911 singular +singular +singular +18916 singular +singular +singular +18921 singular +singular +singular +singular +singular +singular +18928 singular +singular +singular +singular +18933 singular +singular +18936 singular +singular +singular +18940 singular +18942 singular +singular +singular +singular +singular +18948 singular +singular +singular +singular +singular +singular +18955 singular +singular +singular +singular +singular +18961 singular +18963 singular +singular +singular +plural +singular +singular +18970 singular +plural +18973 singular +singular +singular +18977 plural +18980 singular +singular +18984 singular +18988 singular +18993 plural +plural +singular +18997 plural +18999 singular +19002 singular +19005 singular +19007 plural +singular +19011 singular +singular +19014 plural +plural +19020 plural +19022 singular +singular +19025 singular +plural +singular +singular +19030 plural +plural +19033 singular +singular +singular +19037 plural +19040 plural +19042 singular +19044 singular +singular +plural +singular +singular +19050 singular +19052 plural +plural +singular +singular +19057 singular +singular +singular +19061 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +singular +plural +plural +19076 plural +plural +plural +plural +19081 plural +19083 plural +19085 plural +plural +plural +singular +singular +19091 singular +singular +singular +singular +19096 plural +19099 singular +singular +singular +19103 singular +singular +singular +singular +singular +singular +singular +19112 plural +19114 plural +singular +plural +singular +plural +plural +19121 plural +plural +plural +singular +singular +singular +19128 singular +singular +plural +singular +plural +plural +19136 singular +19138 singular +singular +singular +singular +19143 singular +19146 plural +19148 singular +singular +singular +singular +singular +singular +19155 plural +19157 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +19170 singular +19172 singular +singular +singular +19176 singular +19178 singular +singular +singular +singular +singular +19184 plural +19187 plural +19190 singular +singular +plural +19196 plural +19198 singular +19201 singular +singular +19204 singular +singular +singular +singular +19209 singular +19211 singular +plural +19214 singular +singular +singular +singular +singular +singular +singular +19222 singular +singular +19225 singular +singular +singular +singular +19230 singular +singular +singular +19234 singular +19236 singular +19238 singular +singular +singular +19242 plural +plural +19245 plural +plural +singular +singular +19250 plural +plural +singular +19254 plural +plural +19257 plural +singular +19260 plural +plural +plural +plural +plural +19266 singular +19268 plural +plural +19271 plural +plural +plural +plural +singular +19278 plural +plural +19281 plural +singular +19284 singular +singular +singular +singular +plural +19290 singular +singular +plural +plural +plural +19296 plural +19298 plural +19300 singular +19302 plural +19304 plural +19306 plural +plural +plural +plural +singular +19312 plural +plural +19315 plural +19317 plural +singular +19320 singular +plural +plural +singular +19325 plural +plural +plural +plural +plural +19331 plural +plural +plural +19335 plural +19337 singular +plural +singular +singular +19342 plural +plural +plural +singular +singular +19348 singular +singular +singular +19352 plural +singular +19355 singular +singular +plural +singular +singular +19361 plural +19363 plural +19366 plural +plural +19369 singular +19371 plural +singular +singular +19376 plural +19378 singular +singular +singular +singular +singular +singular +singular +singular +19387 singular +singular +19392 singular +singular +singular +singular +singular +19398 singular +singular +singular +19402 singular +singular +singular +19406 singular +singular +singular +singular +19411 plural +plural +19416 singular +singular +singular +plural +plural +19422 singular +singular +singular +19426 plural +plural +19429 singular +singular +19432 plural +plural +19435 singular +singular +19438 plural +plural +19442 plural +plural +19445 plural +plural +singular +plural +singular +19451 plural +plural +plural +19455 plural +plural +plural +singular +singular +singular +plural +plural +plural +singular +19466 singular +19468 singular +plural +19471 plural +singular +singular +singular +19476 singular +singular +19479 singular +singular +19482 plural +19484 singular +19486 singular +19488 singular +singular +singular +singular +19493 singular +singular +19496 plural +plural +singular +singular +singular +plural +19504 singular +19507 plural +plural +19510 singular +19512 plural +19514 singular +plural +19517 singular +plural +singular +singular +19522 singular +singular +singular +19527 singular +singular +19530 singular +singular +19533 singular +singular +singular +singular +singular +singular +19540 singular +singular +19543 singular +19546 singular +19548 singular +19550 singular +singular +singular +singular +singular +19556 plural +singular +19559 plural +plural +singular +singular +19564 plural +singular +19567 singular +singular +singular +singular +singular +singular +singular +singular +singular +19577 singular +singular +19580 singular +plural +singular +plural +plural +singular +19589 singular +19594 plural +plural +19597 singular +plural +19600 singular +singular +19603 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +19615 singular +19617 singular +singular +singular +singular +19622 plural +plural +plural +singular +19627 plural +plural +singular +plural +19632 singular +19634 singular +plural +19637 singular +singular +19640 plural +plural +singular +singular +19645 singular +singular +19648 singular +singular +19651 singular +singular +singular +19656 singular +singular +19660 plural +19663 singular +singular +19667 singular +singular +19671 singular +19673 singular +singular +singular +plural +plural +singular +plural +19681 singular +19683 singular +plural +plural +singular +19688 singular +singular +singular +19692 singular +singular +19696 plural +singular +19699 plural +singular +19703 singular +19705 singular +plural +plural +plural +plural +19711 plural +plural +plural +plural +19716 singular +plural +plural +singular +19721 plural +plural +19724 singular +singular +singular +singular +singular +singular +19731 plural +singular +plural +19736 singular +singular +plural +19740 singular +19742 singular +singular +19745 singular +plural +singular +singular +19750 plural +19752 singular +19754 singular +19757 plural +19759 singular +19762 singular +plural +19767 singular +19769 plural +plural +19772 singular +plural +19776 singular +singular +singular +singular +singular +19782 singular +singular +singular +singular +19787 singular +singular +singular +singular +singular +19793 singular +plural +singular +plural +singular +singular +plural +singular +19802 singular +19804 singular +19806 singular +19808 singular +19810 singular +19812 singular +singular +singular +singular +19817 singular +19819 singular +singular +singular +19823 singular +singular +singular +19827 singular +singular +19830 singular +19832 singular +19834 singular +19836 singular +singular +19841 plural +19843 singular +19846 plural +plural +19849 singular +plural +19852 singular +19854 plural +19856 singular +19858 plural +plural +plural +19862 plural +plural +plural +19866 singular +singular +19871 singular +singular +plural +plural +singular +plural +plural +19879 singular +plural +19882 plural +singular +plural +19886 singular +singular +singular +19892 singular +19894 singular +singular +19897 singular +19899 singular +singular +singular +19904 singular +19906 singular +singular +19909 singular +singular +singular +singular +19916 singular +singular +singular +19920 singular +19922 singular +19924 singular +19927 singular +singular +19931 singular +singular +19934 singular +singular +singular +singular +singular +plural +plural +singular +19945 singular +singular +singular +singular +19951 singular +singular +singular +singular +19956 singular +plural +19959 singular +plural +plural +plural +plural +plural +plural +plural +19968 plural +plural +19971 plural +plural +19975 singular +singular +19978 singular +singular +singular +singular +19983 singular +singular +19986 singular +singular +19989 singular +singular +singular +singular +19994 plural +singular +singular +singular +19999 plural +singular +singular +singular +20004 plural +plural +singular +20009 plural +plural +20012 singular +plural +singular +20016 singular +20018 singular +singular +20021 plural +singular +singular +singular +singular +singular +20028 plural +plural +singular +20032 plural +plural +singular +20036 plural +singular +20039 singular +plural +singular +singular +singular +singular +singular +singular +20048 plural +plural +20051 singular +plural +20054 singular +singular +plural +singular +singular +singular +singular +singular +20063 plural +plural +singular +20067 singular +singular +singular +singular +singular +singular +singular +singular +singular +20077 singular +20079 singular +singular +20083 singular +20086 singular +singular +20089 singular +20091 singular +singular +singular +20095 singular +20097 singular +singular +20101 singular +singular +20104 singular +singular +singular +20108 singular +singular +20111 singular +singular +plural +20115 singular +plural +20118 plural +plural +20121 singular +plural +20124 singular +singular +singular +plural +singular +singular +singular +singular +20134 singular +20136 singular +20139 singular +singular +20142 singular +singular +20145 singular +plural +plural +20149 singular +singular +20152 singular +singular +20155 singular +singular +20159 singular +singular +singular +20163 singular +singular +20166 singular +20169 singular +singular +20173 singular +singular +singular +singular +20179 singular +20182 singular +singular +20185 singular +singular +20188 plural +plural +20191 plural +plural +plural +20195 plural +singular +20198 singular +20200 singular +20202 plural +singular +20205 singular +singular +singular +singular +20210 singular +singular +plural +20214 plural +20216 singular +20226 singular +singular +singular +plural +20231 singular +20234 singular +20236 plural +plural +singular +plural +20241 singular +20243 plural +20245 plural +plural +20248 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +20259 plural +plural +20263 plural +plural +plural +singular +20268 plural +plural +20272 plural +20274 plural +plural +20278 plural +20281 plural +20283 singular +plural +20286 singular +plural +20289 plural +singular +singular +singular +20295 plural +plural +plural +plural +singular +singular +singular +singular +singular +20305 plural +plural +plural +20309 singular +singular +20312 singular +singular +singular +20317 plural +singular +singular +singular +singular +20323 singular +singular +singular +singular +singular +20329 plural +20331 plural +20333 plural +20335 plural +plural +plural +plural +plural +20341 plural +singular +singular +singular +20346 singular +plural +singular +20351 plural +singular +20354 plural +20356 plural +plural +20359 singular +singular +20362 singular +20364 singular +singular +singular +plural +20369 plural +plural +plural +20373 plural +plural +plural +plural +plural +plural +singular +singular +plural +20383 plural +plural +singular +singular +20388 singular +singular +singular +singular +20393 plural +20395 plural +plural +plural +plural +plural +singular +singular +20403 singular +singular +20406 plural +plural +20409 singular +singular +singular +singular +plural +plural +plural +plural +singular +singular +20420 plural +20422 plural +20432 singular +plural +20436 singular +singular +singular +20441 singular +singular +singular +20446 singular +singular +20451 singular +singular +singular +20456 singular +singular +singular +20462 singular +20464 singular +singular +20468 singular +20470 singular +20472 singular +singular +plural +20476 singular +20478 singular +plural +plural +singular +plural +20484 singular +singular +plural +singular +plural +20490 singular +plural +20493 singular +singular +singular +singular +20498 singular +20500 singular +20502 singular +singular +singular +20506 singular +20508 singular +20510 singular +singular +singular +singular +singular +20516 singular +singular +singular +singular +20521 singular +singular +20524 singular +20526 singular +singular +20529 singular +20531 singular +singular +singular +20535 singular +20538 singular +singular +singular +singular +singular +singular +singular +singular +20547 singular +20549 singular +singular +20552 singular +singular +20556 singular +singular +singular +singular +singular +singular +singular +20564 singular +singular +singular +20568 singular +20570 plural +singular +singular +singular +singular +20577 singular +singular +singular +plural +20582 singular +singular +singular +20586 singular +20588 singular +singular +singular +singular +plural +plural +plural +plural +20597 singular +singular +20601 singular +singular +20604 singular +singular +plural +plural +plural +20610 singular +plural +plural +20616 singular +singular +singular +20620 plural +plural +singular +singular +20625 plural +plural +plural +singular +plural +singular +singular +20633 plural +20637 singular +20639 singular +plural +20643 singular +plural +plural +plural +singular +plural +20650 singular +plural +20653 singular +singular +singular +singular +singular +plural +20660 singular +20663 plural +singular +singular +plural +singular +20669 singular +20671 singular +singular +20674 plural +plural +singular +20678 singular +20680 singular +singular +singular +singular +20685 plural +plural +singular +20689 singular +singular +20694 singular +singular +20697 singular +singular +20700 singular +singular +20703 singular +singular +singular +20707 plural +singular +20710 plural +singular +singular +20714 singular +singular +20717 plural +20719 singular +singular +singular +singular +20724 singular +singular +singular +singular +singular +20730 singular +singular +singular +20734 singular +singular +singular +20738 singular +plural +singular +plural +plural +20746 plural +singular +20749 plural +singular +singular +20753 plural +20755 plural +20757 singular +singular +singular +20762 singular +singular +20765 singular +singular +singular +singular +20770 plural +20772 singular +20774 singular +singular +20777 singular +singular +plural +plural +20782 singular +singular +20785 singular +singular +singular +singular +singular +20791 plural +plural +singular +20795 singular +singular +singular +singular +singular +singular +20802 plural +plural +20806 singular +20808 singular +singular +singular +20813 singular +singular +20816 plural +20818 plural +20823 singular +plural +plural +20827 plural +plural +20831 singular +singular +singular +20837 singular +singular +20840 singular +20842 plural +plural +20846 plural +plural +singular +singular +20851 singular +singular +plural +20855 singular +singular +singular +20860 singular +20862 singular +singular +20865 singular +singular +singular +singular +singular +singular +20872 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +20884 singular +singular +20887 singular +singular +singular +singular +singular +singular +singular +20895 singular +singular +20898 singular +singular +singular +singular +singular +20904 singular +singular +singular +singular +singular +20910 plural +plural +20913 singular +singular +plural +20918 plural +singular +20921 singular +singular +20924 singular +20927 singular +singular +singular +plural +singular +singular +20934 plural +singular +plural +singular +plural +20940 plural +plural +20944 plural +plural +20947 singular +plural +20950 plural +plural +plural +plural +plural +plural +20957 plural +plural +20960 singular +singular +singular +20964 singular +singular +20967 singular +singular +20970 plural +20972 plural +20974 singular +singular +20977 plural +plural +plural +plural +20982 plural +20984 singular +singular +20988 plural +plural +20991 plural +20993 singular +singular +singular +singular +20998 plural +21000 singular +singular +21003 plural +singular +singular +singular +singular +singular +singular +singular +singular +21013 singular +21015 plural +21017 plural +plural +plural +plural +21022 singular +singular +singular +21027 plural +plural +21030 plural +21032 singular +21035 plural +plural +plural +21039 singular +singular +21042 singular +singular +singular +singular +singular +singular +21050 singular +singular +21054 singular +singular +21057 singular +singular +singular +21061 singular +singular +singular +21065 plural +plural +21068 singular +plural +plural +singular +singular +singular +singular +21076 singular +singular +21079 singular +21081 singular +21084 singular +singular +plural +singular +singular +singular +singular +21092 plural +plural +21095 singular +singular +singular +21099 singular +singular +21103 singular +21105 singular +singular +singular +21109 singular +21111 singular +21113 singular +singular +21116 singular +singular +plural +plural +singular +singular +21123 singular +singular +singular +21127 plural +plural +singular +21131 singular +singular +plural +singular +21136 singular +singular +singular +21140 singular +21142 singular +singular +plural +plural +singular +21148 singular +21150 singular +21152 singular +21154 singular +21156 singular +singular +singular +singular +21161 plural +singular +21164 singular +singular +21167 singular +singular +21170 plural +21172 plural +singular +21175 plural +plural +21178 singular +plural +21181 singular +plural +21184 singular +singular +21189 singular +singular +singular +singular +plural +21195 singular +singular +singular +21199 singular +singular +21202 singular +singular +singular +singular +21207 singular +21210 singular +21212 plural +plural +singular +singular +21217 singular +singular +singular +singular +singular +singular +singular +21225 singular +singular +singular +21229 singular +21231 singular +singular +21234 singular +singular +singular +singular +21239 singular +singular +21242 singular +singular +singular +singular +21247 singular +singular +singular +singular +singular +singular +plural +plural +21256 plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +21267 singular +singular +singular +singular +21272 singular +21274 singular +singular +singular +21278 singular +singular +singular +21282 singular +singular +singular +singular +singular +singular +21289 singular +singular +21292 singular +singular +singular +singular +singular +21298 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +21309 singular +21311 singular +singular +21314 singular +singular +singular +21318 singular +singular +plural +21322 singular +singular +plural +21326 singular +singular +singular +singular +singular +21332 singular +singular +singular +21336 singular +singular +singular +singular +singular +singular +singular +singular +singular +21346 singular +singular +singular +21351 singular +singular +21354 singular +21358 singular +singular +21361 singular +21363 singular +singular +singular +singular +21368 plural +21370 singular +singular +singular +singular +21375 singular +singular +21378 plural +21380 plural +plural +21383 singular +singular +plural +singular +plural +21389 plural +singular +singular +21393 singular +21395 singular +21397 plural +singular +21400 singular +singular +plural +singular +singular +singular +singular +singular +21409 singular +singular +21412 plural +21414 singular +21416 singular +21418 singular +singular +singular +21422 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +21440 singular +singular +singular +singular +21445 singular +21447 singular +plural +21451 plural +singular +singular +singular +21456 singular +plural +plural +21460 singular +singular +singular +21464 singular +21466 singular +21469 singular +21472 singular +21474 singular +singular +singular +21478 plural +singular +plural +plural +singular +21484 singular +singular +singular +21489 singular +singular +21492 plural +plural +plural +plural +plural +21498 singular +plural +21501 singular +singular +singular +singular +singular +singular +21508 plural +plural +plural +21512 plural +plural +singular +plural +21517 singular +singular +singular +singular +singular +singular +singular +singular +21526 singular +singular +21529 singular +21531 singular +21533 singular +21536 plural +plural +plural +singular +21542 plural +21544 plural +21546 singular +21548 singular +plural +singular +singular +21554 singular +singular +singular +21560 singular +singular +singular +21565 plural +plural +singular +21570 singular +singular +singular +21575 singular +21578 singular +singular +21582 plural +plural +singular +plural +plural +singular +21589 singular +21591 singular +singular +plural +21595 singular +plural +plural +singular +singular +21601 singular +plural +21605 singular +plural +21611 singular +plural +singular +plural +plural +plural +plural +21619 singular +plural +21622 singular +plural +21625 singular +21628 singular +singular +21631 singular +21633 singular +21636 singular +singular +singular +21640 plural +plural +21644 plural +21646 plural +21648 singular +plural +21652 plural +21654 singular +21656 plural +21659 plural +21663 singular +singular +21666 singular +plural +21669 plural +plural +plural +21673 plural +singular +singular +singular +21678 plural +plural +plural +21682 singular +plural +21685 plural +plural +21688 plural +21690 plural +plural +plural +21694 plural +singular +plural +plural +21699 plural +21701 singular +singular +singular +singular +21706 singular +singular +singular +singular +singular +21712 plural +21714 singular +singular +singular +singular +21719 plural +21722 singular +plural +plural +plural +21727 singular +21729 plural +plural +21732 singular +singular +21735 plural +plural +21738 singular +21740 singular +plural +plural +21744 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +21755 singular +singular +singular +singular +singular +singular +singular +21763 singular +singular +21766 singular +21768 singular +singular +singular +singular +singular +singular +singular +21776 singular +singular +21779 singular +singular +singular +singular +singular +21786 singular +singular +21789 singular +singular +singular +singular +singular +21795 singular +singular +singular +singular +21800 singular +singular +21805 singular +21807 singular +singular +singular +singular +singular +singular +singular +singular +singular +21817 singular +21819 singular +singular +21822 singular +singular +plural +singular +21828 singular +singular +21831 singular +singular +singular +21835 singular +plural +plural +singular +singular +singular +plural +plural +singular +21845 plural +plural +21848 plural +plural +singular +singular +21853 singular +singular +singular +singular +singular +singular +21860 singular +singular +singular +singular +21865 plural +plural +21868 singular +singular +singular +singular +singular +singular +singular +21876 singular +singular +21879 singular +singular +21882 singular +singular +21886 singular +singular +singular +singular +21891 singular +singular +singular +singular +21896 singular +singular +singular +singular +singular +singular +singular +21904 singular +singular +singular +singular +singular +singular +singular +21912 singular +singular +21915 singular +21917 singular +singular +singular +singular +singular +21924 singular +singular +21927 singular +singular +singular +singular +singular +singular +21934 singular +singular +singular +singular +21939 plural +plural +21942 plural +plural +21945 singular +21947 singular +21949 singular +singular +singular +singular +singular +singular +21956 singular +singular +singular +21960 singular +singular +singular +21964 singular +singular +21967 singular +singular +singular +singular +21972 singular +21974 singular +singular +singular +singular +21979 singular +singular +singular +singular +singular +singular +singular +21987 plural +plural +plural +singular +plural +21993 plural +singular +singular +singular +21998 plural +singular +22001 singular +22003 plural +plural +plural +22007 singular +singular +22010 plural +singular +plural +plural +plural +22016 plural +plural +22019 singular +plural +plural +plural +plural +22025 singular +22027 singular +singular +22030 plural +singular +22033 plural +plural +plural +22037 plural +plural +plural +22043 plural +22045 plural +22047 singular +singular +22050 singular +singular +22053 singular +22055 plural +plural +plural +22059 plural +plural +22064 plural +plural +plural +plural +22070 plural +plural +22073 singular +singular +singular +singular +22078 singular +22080 plural +22082 plural +22084 plural +22086 plural +singular +22089 singular +22091 plural +plural +22095 singular +singular +singular +plural +singular +plural +plural +singular +plural +22105 singular +singular +singular +singular +22111 singular +singular +singular +plural +22116 plural +22118 plural +singular +plural +22122 plural +plural +plural +singular +plural +22128 singular +singular +singular +plural +plural +plural +plural +22137 plural +singular +plural +plural +plural +plural +plural +22145 plural +plural +22149 singular +singular +plural +plural +plural +plural +plural +plural +22158 plural +plural +22163 plural +22165 singular +plural +22168 plural +plural +plural +22172 singular +singular +singular +22176 plural +plural +plural +22185 singular +plural +22188 plural +22190 plural +22192 plural +singular +22195 singular +singular +singular +22199 singular +plural +plural +22203 singular +plural +plural +22207 plural +plural +22210 plural +22212 plural +singular +plural +22216 plural +plural +22219 plural +22221 plural +plural +22224 plural +plural +22228 plural +plural +22231 plural +plural +plural +plural +plural +plural +plural +22239 singular +singular +plural +plural +singular +22246 singular +singular +22251 singular +22254 singular +22256 singular +singular +singular +singular +22261 singular +plural +singular +22265 singular +singular +22269 singular +singular +singular +singular +singular +22275 singular +singular +singular +22279 singular +singular +22282 singular +singular +22285 singular +plural +plural +22289 singular +22292 singular +singular +singular +singular +plural +22298 singular +singular +singular +singular +singular +22304 plural +singular +22307 singular +singular +22310 singular +22312 plural +22314 plural +plural +singular +22318 singular +singular +singular +plural +22323 singular +singular +22326 plural +22328 plural +singular +plural +22332 plural +22334 singular +singular +singular +22338 plural +22340 singular +plural +plural +singular +singular +22346 plural +22348 singular +22350 plural +22352 singular +singular +22355 singular +singular +singular +22361 singular +22363 plural +plural +22367 plural +22369 plural +plural +22372 singular +singular +plural +singular +singular +22378 plural +22380 singular +singular +plural +22384 singular +22386 plural +22388 plural +plural +22391 singular +singular +singular +plural +singular +plural +singular +singular +singular +singular +22402 plural +22404 plural +plural +plural +22408 plural +22411 plural +22413 singular +22417 singular +22419 plural +22422 plural +22425 plural +22427 plural +plural +plural +plural +plural +22433 plural +singular +22437 singular +singular +singular +singular +singular +plural +22445 plural +plural +singular +plural +22450 plural +22452 singular +plural +plural +22456 plural +plural +plural +plural +22461 plural +22463 plural +plural +plural +plural +singular +22469 plural +plural +singular +singular +plural +plural +plural +plural +22478 plural +plural +22481 plural +plural +plural +22486 singular +plural +plural +plural +22491 plural +plural +singular +singular +plural +plural +22499 singular +22502 plural +22504 plural +22506 plural +plural +singular +plural +plural +22512 plural +plural +22515 plural +22517 plural +22519 plural +singular +plural +plural +22524 plural +plural +22527 singular +22529 plural +plural +plural +singular +22534 singular +singular +plural +plural +22539 plural +plural +plural +singular +singular +22545 singular +singular +plural +22549 singular +singular +22552 plural +plural +plural +22556 singular +22558 singular +singular +singular +plural +plural +singular +singular +22566 singular +singular +plural +22570 singular +22572 singular +22575 plural +singular +plural +plural +plural +plural +plural +singular +singular +singular +singular +plural +singular +singular +plural +plural +22592 singular +plural +22595 plural +singular +singular +singular +singular +22601 singular +singular +plural +plural +22606 singular +singular +singular +singular +singular +singular +22613 singular +singular +singular +22617 singular +singular +singular +22621 singular +singular +singular +22625 plural +plural +22628 singular +singular +singular +singular +22633 singular +singular +singular +singular +singular +singular +22640 singular +22642 singular +singular +22645 plural +singular +singular +22649 singular +singular +22652 singular +singular +plural +singular +singular +singular +singular +singular +singular +plural +singular +plural +22665 plural +plural +plural +plural +22670 singular +22672 singular +singular +singular +plural +plural +singular +plural +22680 plural +singular +singular +22684 singular +singular +singular +22688 singular +singular +singular +22692 singular +22694 plural +22696 singular +singular +plural +singular +plural +plural +singular +singular +22706 singular +22708 singular +22710 singular +singular +plural +singular +plural +plural +singular +singular +singular +22720 singular +plural +22724 plural +plural +plural +22728 plural +22730 singular +singular +22733 singular +22735 singular +singular +22738 singular +singular +22743 singular +22745 singular +singular +singular +22750 singular +singular +22754 singular +singular +singular +singular +plural +plural +plural +22762 singular +22764 singular +22766 singular +singular +singular +singular +singular +singular +singular +22776 singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +22803 singular +22805 singular +singular +singular +22810 singular +singular +22813 plural +plural +singular +22817 singular +22819 singular +singular +22822 singular +22825 singular +22828 singular +singular +22831 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +22843 plural +plural +singular +22847 singular +singular +singular +singular +singular +singular +singular +22855 singular +singular +22858 singular +singular +singular +22862 singular +singular +singular +22866 singular +singular +singular +singular +22871 plural +plural +22875 singular +singular +22878 singular +singular +plural +plural +22883 plural +plural +22887 singular +singular +22890 singular +singular +22893 singular +22895 plural +plural +22898 singular +singular +plural +22902 plural +plural +plural +plural +22907 singular +singular +22910 singular +singular +singular +singular +singular +22916 singular +singular +singular +singular +singular +22922 singular +22924 singular +singular +singular +singular +singular +singular +singular +22932 singular +singular +22935 singular +singular +singular +22940 singular +22942 plural +plural +singular +singular +22947 singular +22949 singular +singular +singular +singular +22954 singular +plural +plural +singular +22959 plural +singular +singular +22963 singular +22965 plural +singular +22968 singular +singular +singular +singular +22973 singular +singular +22976 singular +singular +22979 singular +singular +plural +plural +singular +22985 plural +plural +singular +22989 singular +singular +singular +singular +singular +22995 singular +22997 singular +singular +singular +23001 singular +singular +singular +singular +singular +singular +23008 plural +singular +plural +plural +23014 singular +singular +singular +singular +singular +singular +23021 singular +23024 singular +plural +23027 singular +plural +23030 singular +plural +singular +plural +23035 singular +plural +23039 plural +plural +23042 plural +singular +23045 singular +plural +plural +23050 plural +23053 plural +plural +plural +23057 singular +singular +singular +23062 plural +singular +plural +singular +plural +plural +singular +plural +singular +23072 singular +singular +23076 plural +plural +plural +singular +23082 plural +singular +plural +23087 singular +plural +plural +23091 singular +plural +plural +23095 singular +singular +23098 plural +plural +23102 plural +23104 plural +singular +plural +plural +singular +23111 singular +singular +plural +23116 plural +23118 singular +23120 singular +plural +plural +plural +plural +23126 plural +plural +23130 singular +singular +singular +23135 singular +singular +23138 singular +plural +23141 plural +singular +singular +23145 singular +plural +plural +singular +23150 plural +23152 plural +singular +singular +23156 plural +plural +plural +23160 singular +plural +singular +23164 plural +23167 plural +23169 plural +23171 plural +plural +plural +23175 plural +23177 plural +23179 plural +23181 singular +plural +23184 singular +singular +23187 singular +singular +23190 plural +plural +singular +singular +23195 plural +plural +singular +23199 plural +plural +plural +23203 plural +23205 singular +plural +23208 singular +singular +23211 singular +singular +plural +singular +23216 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +23228 singular +plural +23231 singular +singular +singular +singular +singular +23237 singular +plural +23240 singular +singular +23243 singular +23246 plural +23248 plural +23252 singular +singular +23255 plural +23257 plural +23259 singular +singular +23262 singular +plural +singular +plural +plural +23268 singular +singular +plural +plural +23273 singular +singular +singular +23277 plural +23279 plural +23281 plural +23283 plural +23285 singular +singular +plural +singular +plural +23291 plural +23293 plural +23295 plural +23297 plural +singular +plural +singular +singular +plural +plural +plural +23306 plural +23308 plural +plural +23311 plural +23314 plural +23316 plural +23318 plural +singular +23321 plural +plural +plural +plural +plural +plural +plural +plural +singular +23332 plural +23335 plural +plural +plural +plural +plural +plural +plural +23343 plural +23346 singular +plural +23349 plural +23351 plural +23353 singular +23355 plural +singular +singular +23359 plural +singular +23362 singular +singular +23365 singular +singular +singular +singular +singular +singular +singular +23373 singular +singular +23376 singular +23378 plural +plural +singular +singular +plural +plural +singular +singular +singular +23388 singular +singular +23391 singular +singular +singular +plural +plural +23398 plural +plural +singular +23403 singular +plural +plural +23407 plural +plural +singular +23411 singular +23413 singular +23415 singular +23417 plural +23419 singular +singular +23422 singular +singular +singular +23427 singular +singular +singular +23431 singular +singular +singular +23435 plural +plural +singular +23439 plural +plural +singular +singular +singular +23446 singular +singular +singular +plural +plural +singular +singular +plural +singular +singular +23457 plural +plural +plural +23461 plural +plural +singular +plural +23466 singular +singular +singular +23470 plural +singular +23473 plural +23475 singular +plural +plural +23479 singular +singular +plural +23483 plural +singular +singular +23487 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +23498 singular +plural +23501 singular +plural +23504 singular +23506 singular +23508 plural +23510 singular +singular +singular +singular +singular +plural +23520 plural +plural +23523 plural +plural +23526 plural +plural +23532 plural +plural +23536 singular +singular +singular +singular +23541 singular +singular +singular +singular +singular +23547 singular +23549 singular +singular +23552 singular +plural +plural +singular +singular +singular +23559 singular +singular +23562 singular +singular +23566 singular +plural +singular +singular +23571 plural +plural +plural +23575 singular +singular +singular +23579 plural +plural +singular +singular +plural +23585 singular +singular +23588 singular +23590 singular +singular +23593 singular +singular +singular +singular +23598 singular +singular +23602 singular +singular +singular +singular +singular +23608 singular +singular +23612 singular +singular +singular +singular +singular +23618 singular +23620 singular +singular +singular +singular +23625 singular +singular +singular +23629 singular +singular +singular +23634 singular +singular +singular +23638 singular +singular +singular +singular +singular +singular +singular +23647 singular +singular +singular +23651 plural +plural +plural +23655 singular +singular +singular +singular +singular +23661 singular +23663 singular +singular +singular +singular +singular +singular +23670 singular +23672 singular +singular +singular +singular +singular +23678 plural +plural +plural +plural +23683 singular +plural +23686 singular +plural +23689 plural +plural +plural +23693 plural +plural +23697 plural +singular +23701 plural +singular +singular +singular +singular +singular +23708 singular +23711 plural +23713 singular +singular +singular +singular +singular +23719 singular +singular +23722 singular +23724 singular +plural +23727 singular +singular +23730 singular +plural +23733 singular +23735 plural +23737 plural +plural +singular +singular +plural +plural +23744 plural +singular +23747 singular +singular +23750 singular +23754 singular +plural +singular +23758 singular +23760 plural +plural +singular +singular +23765 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +23778 plural +plural +plural +singular +singular +23784 singular +singular +23787 singular +singular +23791 singular +singular +singular +23795 plural +plural +23798 singular +singular +singular +plural +23803 singular +singular +23806 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +23819 plural +23821 singular +plural +23824 singular +singular +singular +23828 plural +23830 plural +plural +23833 singular +singular +singular +plural +23838 singular +plural +plural +plural +23845 singular +singular +singular +singular +23850 plural +singular +23853 singular +singular +plural +23857 plural +plural +singular +singular +singular +23863 plural +23866 plural +singular +plural +23870 plural +plural +plural +23874 singular +singular +23877 singular +23879 singular +singular +plural +23883 singular +singular +singular +singular +plural +23890 singular +23892 singular +singular +singular +singular +23897 plural +singular +23900 singular +23902 singular +plural +23906 singular +singular +23909 plural +singular +plural +plural +23914 singular +23916 singular +23918 plural +23920 plural +plural +plural +singular +singular +23926 plural +23928 plural +plural +23931 plural +23933 singular +singular +singular +singular +plural +singular +plural +23941 plural +plural +singular +23945 singular +plural +singular +plural +23950 plural +23952 singular +singular +singular +23956 singular +singular +singular +singular +singular +singular +singular +23964 singular +singular +singular +singular +23971 singular +singular +singular +singular +23976 singular +23978 singular +plural +plural +23982 singular +23984 singular +plural +plural +singular +23989 singular +plural +23993 plural +23995 singular +singular +plural +singular +24000 singular +singular +24005 plural +singular +24009 singular +plural +plural +singular +24014 singular +24016 plural +singular +24019 singular +24021 singular +singular +singular +singular +singular +singular +singular +24029 singular +24031 singular +singular +singular +singular +24036 singular +singular +singular +singular +singular +singular +singular +24044 singular +singular +singular +24048 singular +singular +24056 singular +singular +singular +24061 plural +24063 singular +singular +24067 singular +singular +singular +plural +singular +24073 plural +24075 singular +singular +singular +singular +singular +24081 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +24099 singular +singular +singular +24103 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +24115 singular +singular +singular +singular +singular +singular +24122 singular +24125 singular +24127 singular +24129 singular +24131 plural +singular +singular +24135 singular +24137 singular +24139 plural +plural +24143 singular +24145 singular +singular +singular +singular +singular +singular +singular +singular +24154 singular +24156 singular +singular +24159 singular +plural +plural +singular +24164 singular +plural +singular +24168 plural +24170 plural +24172 singular +24174 singular +plural +singular +singular +singular +24180 singular +singular +24186 singular +24188 plural +plural +24191 singular +singular +24195 singular +24197 singular +singular +24200 singular +plural +plural +singular +24205 singular +plural +24208 singular +singular +singular +singular +singular +24214 plural +plural +24217 plural +singular +24220 singular +24222 plural +plural +singular +24226 plural +plural +singular +singular +24231 plural +singular +24235 plural +24237 singular +24240 singular +singular +singular +singular +plural +singular +24247 singular +singular +plural +24251 plural +plural +24255 plural +plural +24258 singular +singular +singular +singular +24263 singular +singular +plural +24268 singular +plural +24271 singular +singular +singular +24275 singular +plural +singular +24279 plural +singular +24282 singular +singular +singular +singular +24287 singular +plural +24290 singular +singular +singular +plural +24295 singular +singular +plural +plural +plural +singular +24302 singular +singular +singular +singular +singular +24309 singular +singular +singular +24313 singular +singular +24316 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +24327 singular +singular +singular +singular +plural +singular +24334 singular +plural +24337 plural +singular +24341 singular +plural +24344 singular +singular +singular +24348 plural +singular +24351 singular +singular +singular +singular +singular +24357 singular +singular +singular +24361 singular +singular +24364 singular +24366 singular +24368 singular +24370 plural +24372 plural +singular +24376 singular +singular +plural +singular +singular +24382 singular +24384 singular +plural +24387 singular +plural +24392 singular +singular +singular +singular +24398 singular +singular +singular +plural +plural +plural +plural +plural +singular +singular +singular +24411 singular +singular +singular +24415 singular +singular +singular +24419 singular +24421 singular +singular +24425 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +24438 singular +singular +24441 plural +24443 plural +singular +24447 singular +singular +24450 singular +singular +singular +singular +24456 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +24468 singular +singular +singular +24472 plural +24474 plural +singular +24478 singular +singular +24482 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +24495 singular +singular +singular +singular +24501 plural +singular +24505 singular +singular +24508 singular +singular +plural +24512 singular +24514 singular +singular +24517 singular +24519 singular +singular +singular +singular +singular +singular +24527 singular +singular +singular +singular +24532 singular +singular +plural +plural +24537 plural +singular +24540 plural +24542 plural +24545 singular +singular +24548 plural +plural +singular +singular +24554 singular +singular +24557 plural +24559 plural +24561 singular +24564 singular +24566 singular +plural +24569 plural +plural +plural +singular +24574 singular +singular +singular +24578 plural +singular +24581 singular +singular +singular +plural +singular +plural +singular +singular +24590 plural +plural +singular +singular +singular +singular +24600 singular +singular +singular +plural +24605 singular +singular +plural +singular +plural +singular +singular +singular +24615 singular +singular +singular +24619 singular +singular +plural +24623 singular +singular +singular +singular +singular +singular +24630 singular +singular +24633 plural +plural +24637 singular +singular +24641 plural +24644 singular +singular +24647 singular +singular +singular +singular +singular +24653 singular +24656 singular +singular +24659 plural +plural +24662 singular +plural +singular +24666 singular +plural +24669 singular +singular +singular +singular +singular +24675 singular +singular +singular +24679 singular +24682 singular +singular +singular +singular +singular +singular +singular +singular +24691 plural +singular +plural +24695 plural +singular +24698 plural +plural +plural +plural +24703 singular +singular +singular +singular +24708 singular +plural +plural +plural +plural +24715 singular +24717 plural +plural +24720 plural +plural +singular +singular +singular +singular +singular +24728 singular +plural +24731 singular +24733 singular +singular +singular +singular +singular +24739 singular +24742 singular +24744 singular +24746 singular +plural +singular +singular +plural +plural +24753 plural +24755 singular +singular +24758 singular +singular +singular +24762 singular +singular +singular +singular +singular +singular +singular +singular +24771 singular +singular +singular +24775 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +24787 singular +singular +singular +plural +plural +singular +24794 singular +24796 singular +24798 singular +24800 singular +24802 singular +singular +singular +singular +singular +24808 singular +singular +24811 singular +singular +singular +singular +plural +plural +singular +24819 singular +singular +24822 singular +singular +singular +singular +singular +singular +24829 singular +singular +singular +singular +singular +singular +plural +singular +singular +24839 singular +plural +plural +24843 singular +singular +24846 singular +24848 singular +singular +singular +24852 singular +singular +24855 singular +singular +singular +singular +24860 singular +singular +plural +plural +24865 singular +singular +singular +singular +plural +plural +singular +24874 plural +plural +plural +plural +24879 singular +singular +singular +singular +plural +24885 plural +plural +plural +24889 plural +plural +singular +24893 singular +singular +24896 singular +singular +plural +plural +24901 singular +singular +24904 singular +singular +singular +singular +24909 singular +singular +singular +24913 singular +singular +singular +singular +24919 singular +24921 singular +singular +singular +singular +24927 plural +24929 plural +plural +24932 plural +24934 singular +singular +24937 singular +plural +singular +singular +singular +24943 plural +singular +24948 singular +24950 plural +plural +24953 singular +singular +singular +singular +singular +24959 singular +singular +plural +plural +plural +24965 plural +singular +singular +singular +singular +24971 singular +plural +singular +singular +singular +singular +singular +24979 plural +24981 plural +24983 singular +24985 singular +24987 plural +24989 plural +24991 singular +24994 singular +singular +24998 singular +25001 singular +singular +singular +plural +plural +25007 plural +25009 plural +25011 plural +25013 plural +25015 plural +25017 plural +25020 singular +singular +singular +singular +singular +singular +25027 plural +plural +plural +plural +25032 plural +plural +plural +25036 plural +25038 singular +singular +plural +25042 plural +25044 singular +singular +plural +singular +singular +25050 plural +25052 plural +plural +plural +25056 singular +25058 plural +25060 singular +plural +25063 plural +plural +singular +25068 singular +plural +25071 plural +25073 singular +singular +singular +singular +singular +plural +plural +25081 plural +plural +25084 plural +singular +singular +25088 plural +singular +plural +plural +25093 plural +singular +25096 plural +singular +25099 plural +singular +25102 plural +25105 plural +plural +singular +25109 plural +singular +singular +25113 singular +plural +plural +singular +plural +singular +singular +plural +25123 singular +plural +singular +singular +plural +25129 singular +singular +plural +plural +singular +singular +singular +plural +25138 plural +plural +singular +singular +plural +25144 singular +25146 singular +plural +25149 singular +25151 plural +plural +25154 singular +singular +singular +25158 singular +singular +singular +plural +25163 plural +singular +plural +plural +25168 singular +singular +singular +singular +singular +25174 singular +singular +singular +singular +singular +25181 plural +plural +singular +plural +25186 singular +singular +singular +plural +singular +singular +singular +singular +singular +plural +25197 singular +singular +singular +singular +singular +plural +25204 singular +25207 plural +singular +25211 plural +25213 singular +singular +25217 plural +singular +25220 plural +plural +25223 plural +25226 singular +25228 singular +25230 singular +plural +singular +singular +singular +plural +plural +25238 plural +plural +25241 plural +plural +plural +plural +25246 plural +plural +plural +plural +plural +25254 singular +25256 plural +25259 singular +singular +singular +25264 plural +singular +plural +singular +25270 singular +singular +25273 plural +25275 singular +singular +plural +singular +25281 singular +singular +singular +singular +25286 singular +25292 singular +singular +singular +singular +25297 plural +25299 plural +25301 singular +25303 singular +singular +25306 singular +25308 plural +plural +singular +25312 singular +singular +singular +singular +singular +singular +singular +singular +singular +25322 singular +singular +25325 singular +25327 singular +singular +singular +singular +singular +25335 singular +singular +singular +singular +singular +25341 plural +singular +plural +25345 singular +25347 singular +singular +25350 singular +singular +singular +singular +singular +25356 singular +singular +singular +singular +plural +singular +25363 plural +singular +singular +plural +singular +singular +singular +singular +singular +25373 singular +singular +singular +singular +singular +singular +singular +25381 singular +singular +25384 singular +singular +singular +singular +singular +singular +singular +singular +singular +25394 singular +singular +singular +singular +singular +25400 singular +25402 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +25413 singular +singular +25416 singular +singular +25419 singular +singular +25423 plural +25425 plural +25427 singular +25429 singular +25431 singular +singular +plural +plural +singular +25437 plural +plural +singular +25441 singular +plural +plural +25445 singular +singular +singular +25449 plural +25451 singular +plural +25454 singular +plural +singular +singular +25459 singular +singular +plural +25463 singular +plural +singular +25467 plural +25470 singular +plural +singular +singular +plural +singular +plural +singular +singular +singular +singular +singular +25483 singular +singular +singular +25489 plural +25491 plural +singular +singular +25495 singular +25498 singular +singular +25501 plural +singular +25504 plural +plural +25507 plural +plural +plural +singular +plural +plural +singular +singular +25516 plural +plural +plural +25520 singular +singular +singular +25524 plural +plural +25527 plural +singular +singular +25531 singular +singular +25534 plural +singular +plural +plural +plural +25540 singular +25542 singular +25544 plural +plural +plural +plural +plural +25550 singular +singular +25553 plural +plural +plural +25557 plural +plural +25560 plural +plural +25563 plural +plural +plural +25567 singular +singular +singular +25571 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +25583 plural +plural +25586 singular +25588 plural +25590 singular +singular +25593 singular +25595 singular +singular +singular +singular +plural +singular +25602 singular +25604 plural +25607 singular +25609 plural +plural +25612 singular +singular +25615 singular +25618 singular +singular +plural +singular +25624 singular +singular +25627 singular +25629 singular +25631 singular +singular +singular +25636 plural +25638 singular +singular +25641 singular +plural +25644 singular +singular +singular +25649 singular +singular +25652 singular +singular +singular +singular +25657 plural +plural +plural +singular +25662 plural +25664 plural +25666 singular +25668 singular +singular +singular +25672 plural +plural +25675 plural +plural +25678 singular +singular +25681 plural +plural +plural +plural +25686 plural +plural +plural +plural +plural +plural +singular +25695 singular +25697 singular +singular +singular +25701 singular +singular +25704 singular +25706 singular +plural +25709 singular +25711 singular +singular +singular +singular +singular +singular +plural +plural +plural +25721 plural +plural +singular +singular +plural +25727 plural +plural +plural +25731 plural +plural +25734 plural +25736 singular +plural +25739 plural +singular +25742 singular +singular +singular +singular +25747 singular +singular +singular +25753 singular +plural +25756 singular +singular +25759 plural +25761 plural +singular +singular +singular +25766 plural +25768 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +25781 singular +singular +singular +singular +plural +plural +singular +singular +25790 singular +plural +25794 singular +singular +singular +singular +singular +singular +25801 singular +25803 singular +singular +25807 singular +25809 singular +singular +singular +25813 singular +25815 singular +singular +singular +singular +singular +25821 singular +singular +plural +plural +plural +plural +25828 plural +plural +25831 plural +25833 singular +plural +25837 plural +plural +plural +25841 singular +plural +25844 singular +25847 singular +singular +plural +singular +25852 plural +plural +singular +plural +plural +plural +plural +25860 plural +25863 plural +25866 singular +singular +singular +singular +plural +25872 singular +plural +plural +25876 plural +plural +25879 plural +plural +25882 plural +singular +25885 singular +singular +plural +singular +25890 singular +singular +singular +singular +singular +singular +25897 plural +singular +25900 singular +singular +singular +plural +singular +plural +singular +singular +25909 plural +singular +25912 singular +plural +25915 singular +singular +plural +singular +singular +singular +singular +singular +25924 singular +singular +25928 plural +plural +singular +25932 plural +25934 plural +plural +25937 plural +25939 singular +singular +25943 singular +25945 plural +singular +25948 plural +25950 plural +plural +singular +singular +25955 plural +plural +singular +singular +25961 singular +singular +25964 plural +singular +singular +plural +25969 plural +25971 singular +singular +singular +plural +25976 singular +singular +plural +25980 singular +singular +plural +singular +25985 singular +plural +25988 plural +25990 singular +singular +singular +25994 singular +singular +25997 singular +singular +26000 singular +singular +26003 singular +singular +plural +26007 singular +26009 singular +26011 plural +plural +singular +singular +singular +26018 plural +plural +singular +26022 plural +plural +singular +singular +26027 plural +singular +plural +26031 plural +singular +26035 singular +26037 plural +singular +singular +singular +plural +26043 plural +26045 singular +singular +singular +plural +26050 plural +plural +26053 plural +plural +26056 plural +plural +26059 singular +singular +singular +singular +singular +singular +singular +26067 plural +singular +26070 plural +singular +singular +singular +26075 plural +plural +plural +26079 plural +plural +26082 singular +singular +singular +singular +plural +plural +singular +26090 plural +singular +singular +singular +26095 plural +plural +singular +26099 plural +singular +26102 singular +singular +singular +singular +singular +singular +singular +singular +singular +26112 singular +plural +plural +26116 singular +singular +singular +plural +26121 singular +singular +singular +plural +singular +singular +plural +plural +plural +singular +singular +26133 singular +singular +26136 singular +singular +singular +26140 singular +singular +26143 plural +plural +26146 plural +singular +26150 plural +singular +singular +26154 plural +26157 plural +singular +singular +singular +26162 plural +singular +plural +26166 plural +26168 singular +plural +plural +plural +26173 plural +plural +26176 singular +plural +singular +26180 plural +plural +singular +singular +plural +26186 singular +singular +26190 singular +singular +26193 singular +26196 singular +26198 singular +plural +26202 singular +singular +singular +singular +singular +singular +singular +26210 singular +singular +26214 plural +26217 plural +26219 singular +singular +plural +singular +singular +singular +plural +singular +singular +plural +plural +singular +singular +26233 singular +26235 plural +plural +26238 singular +plural +singular +singular +singular +singular +26245 singular +singular +26248 plural +plural +singular +singular +26253 singular +singular +singular +plural +plural +singular +plural +singular +26262 plural +singular +singular +singular +singular +26268 plural +26270 singular +26272 plural +26274 singular +plural +plural +plural +singular +26282 plural +singular +plural +singular +singular +singular +plural +26291 singular +singular +singular +26295 singular +singular +26299 singular +singular +26302 singular +singular +singular +singular +singular +singular +26309 singular +singular +singular +singular +singular +26315 plural +plural +26318 singular +singular +singular +singular +26323 singular +26325 singular +singular +26328 singular +singular +singular +singular +26333 singular +26335 singular +singular +26338 singular +singular +26342 plural +26345 plural +singular +singular +plural +26350 singular +singular +singular +26354 singular +singular +26357 plural +singular +plural +singular +singular +26363 plural +26365 plural +singular +singular +singular +plural +singular +singular +26374 singular +plural +26377 plural +plural +plural +26381 singular +singular +singular +singular +26388 plural +plural +26391 plural +26393 plural +26395 plural +26397 plural +26399 plural +plural +26403 plural +plural +26406 plural +26408 plural +26410 singular +singular +singular +26414 singular +singular +26417 singular +singular +singular +singular +singular +singular +singular +singular +singular +26427 singular +singular +26430 singular +singular +26433 singular +singular +plural +26437 plural +singular +plural +26441 singular +singular +plural +plural +singular +plural +plural +singular +26451 singular +plural +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +26464 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +26476 singular +singular +singular +singular +singular +26482 singular +singular +singular +singular +26488 singular +singular +singular +singular +26494 singular +singular +singular +singular +26500 singular +singular +singular +singular +singular +singular +singular +singular +26509 singular +26511 singular +singular +plural +singular +singular +26517 singular +26519 singular +singular +singular +singular +26524 singular +26526 singular +singular +26529 singular +singular +26533 singular +singular +26536 singular +26538 singular +26540 singular +26542 singular +singular +singular +26547 singular +singular +singular +26552 singular +singular +singular +26556 singular +26558 singular +26561 singular +singular +singular +plural +plural +plural +26568 plural +26570 singular +singular +singular +singular +26576 singular +singular +singular +26580 singular +singular +26583 singular +singular +singular +singular +26588 singular +26590 singular +singular +26594 singular +singular +singular +singular +singular +26600 singular +singular +26603 plural +plural +plural +26607 singular +singular +singular +singular +singular +singular +singular +singular +26616 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +26627 plural +singular +26631 singular +plural +plural +singular +26636 plural +plural +singular +singular +singular +singular +singular +singular +26646 singular +singular +singular +26650 singular +singular +singular +singular +singular +26658 singular +singular +singular +singular +plural +26664 plural +plural +plural +plural +26669 plural +26672 plural +26674 plural +plural +26677 plural +26679 plural +plural +26682 plural +26684 plural +plural +plural +plural +plural +plural +plural +plural +26693 singular +plural +plural +plural +plural +singular +singular +26701 singular +26703 singular +singular +singular +26707 singular +singular +singular +singular +26712 singular +singular +26715 plural +plural +plural +plural +26720 singular +singular +singular +singular +singular +plural +26727 singular +singular +singular +26731 singular +plural +plural +singular +singular +plural +26738 singular +plural +26741 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +26752 singular +singular +26755 plural +26757 singular +singular +plural +plural +26762 singular +26764 singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +26776 singular +singular +26779 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +plural +plural +26792 plural +plural +26795 singular +singular +singular +singular +singular +plural +plural +plural +plural +26806 singular +26808 singular +singular +singular +26813 singular +26815 singular +singular +26818 singular +singular +plural +plural +26823 singular +singular +singular +singular +26828 singular +singular +26831 singular +26833 singular +26835 singular +singular +plural +26839 plural +singular +26842 singular +singular +singular +26846 singular +plural +plural +26851 singular +singular +singular +26855 plural +plural +26858 singular +plural +singular +plural +plural +26864 singular +singular +singular +plural +26869 singular +singular +26872 plural +plural +26876 plural +plural +26879 plural +plural +26882 plural +singular +26887 singular +singular +26890 singular +singular +26893 singular +26895 singular +26897 singular +plural +plural +26901 plural +plural +plural +singular +plural +plural +26908 plural +plural +plural +plural +plural +26914 plural +26917 plural +plural +26921 plural +26923 plural +plural +26926 singular +26928 singular +plural +26932 plural +plural +plural +singular +26937 singular +singular +singular +26942 plural +plural +plural +26946 plural +singular +plural +26951 singular +singular +plural +26955 singular +singular +singular +singular +plural +26962 plural +plural +plural +plural +26967 singular +singular +singular +singular +26972 singular +singular +singular +26976 singular +26978 singular +singular +26981 plural +plural +26984 plural +26986 plural +plural +26989 plural +plural +26992 plural +26994 singular +singular +singular +26998 singular +singular +27001 singular +singular +singular +27006 plural +singular +singular +singular +singular +singular +27014 singular +singular +singular +singular +27019 plural +27021 singular +singular +plural +27025 plural +plural +singular +27029 singular +singular +27032 singular +27034 singular +singular +27038 singular +singular +singular +27042 singular +27044 singular +singular +27047 singular +27049 plural +27052 singular +singular +singular +27057 plural +27059 singular +plural +27062 plural +plural +27065 plural +plural +plural +27069 plural +27072 singular +singular +27075 plural +plural +plural +plural +singular +singular +27082 singular +singular +27085 singular +singular +singular +singular +singular +singular +27092 singular +27097 singular +27101 singular +singular +plural +plural +27107 singular +singular +singular +27112 plural +plural +plural +singular +singular +plural +plural +27122 singular +plural +singular +singular +27127 singular +singular +singular +27132 plural +27134 plural +plural +27137 plural +27139 plural +plural +27142 plural +27144 singular +27147 singular +plural +plural +27151 plural +plural +singular +plural +plural +27158 plural +plural +plural +27162 singular +singular +singular +singular +singular +singular +27169 singular +singular +27172 singular +singular +singular +singular +27177 plural +plural +plural +plural +27182 singular +singular +27185 plural +plural +plural +27189 plural +plural +plural +27194 plural +singular +singular +singular +singular +singular +27201 plural +27203 singular +singular +27206 singular +27209 singular +plural +plural +27213 singular +plural +plural +singular +27218 plural +plural +plural +27222 singular +singular +27225 singular +singular +27229 singular +singular +plural +singular +singular +27236 singular +singular +singular +singular +singular +27242 singular +plural +plural +plural +27248 singular +singular +singular +27253 plural +27255 plural +plural +plural +plural +27261 singular +27263 plural +27265 singular +plural +27270 singular +singular +singular +singular +27275 singular +plural +plural +singular +singular +singular +27282 singular +singular +plural +27286 plural +plural +singular +27290 plural +27293 singular +singular +singular +27297 singular +singular +singular +singular +27302 plural +plural +27305 singular +27307 singular +singular +27311 singular +singular +plural +plural +27317 plural +27319 singular +singular +singular +27323 singular +singular +singular +singular +singular +singular +27330 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +27341 singular +singular +singular +27345 singular +27347 plural +27350 plural +27352 singular +singular +singular +singular +singular +27360 singular +27362 singular +27366 singular +27368 singular +plural +plural +27372 singular +plural +singular +plural +singular +plural +27379 singular +singular +singular +27383 plural +plural +27387 plural +27389 plural +plural +plural +27393 plural +plural +27396 singular +27398 singular +plural +plural +27402 plural +27405 singular +singular +27409 singular +singular +singular +singular +27414 singular +singular +27417 singular +27419 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +27442 plural +plural +plural +27446 plural +27448 singular +singular +singular +singular +singular +singular +singular +27456 singular +singular +singular +singular +27462 plural +plural +27466 plural +plural +27469 plural +singular +27472 singular +singular +singular +plural +singular +singular +singular +plural +plural +singular +singular +singular +27485 singular +27488 plural +plural +plural +27492 plural +27495 plural +plural +plural +27501 singular +27504 plural +singular +singular +singular +singular +27510 singular +singular +singular +27514 singular +singular +27518 singular +plural +27522 singular +singular +singular +27526 singular +singular +singular +27530 singular +singular +singular +singular +27535 singular +singular +27538 singular +singular +singular +singular +plural +27544 singular +27546 plural +plural +27549 singular +singular +plural +27553 plural +plural +plural +27557 plural +singular +singular +27562 singular +27564 singular +27566 singular +27568 singular +singular +singular +plural +plural +27574 singular +singular +plural +plural +singular +plural +plural +singular +singular +27584 plural +plural +27587 singular +singular +singular +27591 singular +27593 plural +plural +singular +27597 singular +plural +plural +27601 singular +singular +27604 singular +plural +singular +singular +singular +singular +plural +singular +27615 singular +plural +singular +singular +27620 singular +singular +singular +27624 singular +singular +singular +singular +27629 singular +singular +27632 plural +plural +singular +singular +27637 singular +plural +singular +singular +singular +singular +singular +27646 plural +plural +27649 plural +plural +plural +27653 plural +27655 singular +singular +27658 plural +27660 singular +plural +27663 plural +singular +singular +27667 singular +singular +singular +27671 plural +27674 plural +plural +27677 plural +singular +singular +singular +27682 singular +plural +27685 singular +singular +singular +27689 plural +singular +singular +27693 singular +plural +27698 singular +singular +27701 singular +27703 singular +27705 singular +singular +plural +singular +plural +27711 singular +singular +27714 singular +27716 singular +singular +27720 singular +singular +singular +singular +singular +27726 singular +27728 singular +27731 singular +singular +singular +27735 singular +singular +singular +singular +singular +singular +singular +singular +27745 singular +singular +singular +singular +27750 plural +plural +singular +singular +singular +singular +27757 singular +plural +27760 singular +plural +singular +singular +singular +singular +singular +27768 singular +singular +singular +singular +plural +27774 plural +27776 singular +plural +27779 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +27791 plural +27793 singular +plural +27799 singular +27801 singular +singular +singular +singular +27806 singular +singular +singular +27810 singular +singular +singular +27814 singular +singular +singular +singular +27819 plural +plural +27822 singular +singular +plural +plural +27827 singular +plural +singular +singular +27832 plural +plural +27835 singular +singular +singular +singular +27840 plural +plural +plural +27845 singular +27847 singular +singular +plural +27851 singular +singular +27854 singular +singular +singular +singular +27860 plural +plural +27864 singular +27866 singular +singular +singular +singular +27871 singular +singular +27874 singular +27876 singular +singular +singular +27882 singular +27885 singular +singular +27888 singular +27890 singular +27892 singular +singular +27895 singular +27898 singular +singular +27903 plural +plural +27906 plural +27908 singular +singular +singular +singular +singular +27914 singular +plural +plural +singular +plural +27921 singular +27923 singular +singular +singular +27927 singular +singular +27930 singular +singular +27933 singular +27935 singular +27940 singular +plural +singular +singular +singular +singular +singular +27948 singular +plural +27952 plural +27954 singular +singular +singular +27958 singular +singular +27961 singular +27964 singular +singular +singular +27968 singular +singular +singular +27972 singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +27984 singular +27987 singular +singular +singular +27991 singular +singular +27994 singular +27996 singular +plural +plural +28000 singular +singular +singular +singular +singular +28006 singular +singular +singular +28010 plural +28012 plural +28015 plural +28017 singular +28019 singular +singular +singular +28023 singular +singular +singular +28028 singular +singular +singular +singular +singular +singular +28036 singular +singular +plural +plural +28041 plural +plural +plural +plural +plural +28048 plural +singular +plural +singular +28053 singular +singular +singular +28057 singular +plural +plural +singular +singular +28063 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +28075 plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +28087 singular +28089 singular +singular +singular +singular +singular +singular +plural +28099 singular +singular +28102 plural +28104 plural +28106 plural +plural +28109 plural +plural +28112 plural +plural +28115 singular +singular +singular +singular +singular +plural +singular +28123 singular +singular +singular +singular +plural +singular +28130 plural +28133 singular +singular +singular +singular +singular +singular +28140 singular +singular +28143 plural +plural +plural +plural +singular +28149 plural +singular +28152 singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +28165 singular +singular +singular +singular +28170 singular +singular +singular +singular +plural +28177 singular +plural +28180 plural +28182 plural +28184 singular +28186 singular +singular +28189 plural +28191 singular +singular +singular +28196 plural +singular +28200 plural +plural +plural +28204 plural +singular +plural +plural +28209 singular +singular +singular +singular +singular +singular +28216 singular +28218 plural +singular +28221 singular +singular +singular +singular +singular +singular +28228 plural +singular +singular +28232 singular +singular +28235 plural +plural +plural +plural +28240 plural +plural +28243 plural +plural +28246 singular +singular +28250 singular +singular +28255 singular +singular +singular +singular +28260 singular +singular +28263 plural +plural +28266 singular +28268 singular +singular +28271 plural +plural +28274 singular +singular +singular +plural +28279 singular +singular +singular +28283 singular +28285 singular +28288 plural +28290 plural +plural +28293 singular +28295 plural +plural +plural +28299 plural +28301 plural +plural +plural +28305 singular +plural +28308 plural +plural +singular +singular +28313 singular +singular +singular +singular +singular +singular +singular +28322 plural +plural +singular +singular +singular +28330 singular +singular +singular +singular +plural +28336 singular +28338 singular +singular +singular +singular +singular +singular +singular +28346 singular +singular +singular +plural +singular +plural +28353 singular +singular +28357 singular +singular +28360 singular +singular +singular +singular +28365 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +28376 singular +singular +singular +singular +singular +28382 plural +singular +singular +singular +singular +28388 plural +singular +singular +singular +28393 singular +28395 plural +plural +singular +singular +28400 singular +singular +singular +plural +plural +singular +singular +singular +28409 singular +plural +plural +plural +singular +singular +singular +plural +singular +28419 plural +plural +plural +singular +singular +28425 singular +28427 plural +plural +28430 singular +28433 singular +singular +singular +28438 singular +28441 singular +singular +28444 plural +plural +plural +singular +plural +28450 singular +singular +singular +28455 singular +singular +singular +singular +plural +plural +singular +singular +28464 singular +singular +singular +singular +singular +singular +singular +28472 singular +28474 singular +singular +singular +singular +singular +28480 singular +singular +singular +28484 singular +28486 singular +singular +singular +singular +28491 singular +28494 singular +singular +28497 singular +singular +singular +singular +singular +28504 plural +plural +28507 singular +28509 plural +singular +28512 singular +28514 singular +28517 singular +28519 plural +plural +plural +singular +singular +28526 plural +singular +28530 singular +singular +28533 singular +singular +28540 singular +singular +singular +singular +singular +plural +28547 singular +28549 singular +singular +singular +28553 singular +singular +singular +singular +singular +28559 singular +singular +singular +singular +28565 singular +28569 singular +singular +28572 singular +singular +28575 singular +28577 plural +plural +singular +plural +28582 plural +plural +28585 plural +28587 singular +singular +singular +plural +singular +singular +plural +28595 plural +singular +28598 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +28609 singular +singular +singular +singular +singular +singular +28616 plural +singular +plural +plural +plural +28622 singular +singular +28625 singular +singular +singular +28629 singular +singular +singular +plural +singular +plural +28636 singular +singular +28639 singular +singular +28643 singular +singular +28647 singular +singular +plural +singular +singular +singular +plural +28655 singular +singular +singular +singular +singular +28661 plural +plural +plural +28665 singular +singular +singular +plural +28670 singular +singular +singular +singular +28676 singular +plural +28679 singular +singular +singular +plural +singular +plural +singular +plural +singular +singular +plural +plural +28692 singular +28695 singular +plural +singular +plural +plural +28701 plural +plural +plural +singular +singular +28708 singular +singular +singular +plural +28713 singular +singular +28716 singular +singular +plural +28720 singular +singular +singular +plural +singular +singular +plural +plural +28729 plural +28731 plural +singular +singular +28735 singular +singular +singular +plural +28740 singular +singular +singular +28744 plural +28746 plural +singular +singular +28750 singular +singular +singular +singular +singular +singular +singular +28758 singular +plural +singular +singular +28763 singular +singular +singular +singular +28768 singular +28770 plural +plural +plural +singular +28775 singular +singular +singular +singular +singular +28781 plural +singular +singular +singular +28786 plural +singular +singular +28790 plural +singular +plural +singular +singular +28796 plural +28798 singular +singular +singular +plural +plural +28804 plural +singular +singular +singular +singular +28810 plural +singular +28813 plural +plural +plural +plural +singular +28820 plural +singular +plural +singular +singular +singular +28827 plural +singular +plural +plural +singular +28833 plural +singular +28836 plural +singular +28839 plural +singular +singular +singular +singular +singular +28846 singular +singular +singular +singular +28851 singular +28853 singular +singular +singular +singular +28858 plural +singular +28861 singular +singular +singular +singular +singular +singular +singular +singular +28870 plural +singular +singular +singular +28875 singular +28877 singular +28879 plural +singular +28882 plural +plural +plural +singular +plural +singular +28889 plural +singular +singular +singular +28894 singular +singular +singular +28898 plural +singular +28901 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +28914 singular +plural +28917 plural +singular +28920 plural +28922 singular +28924 plural +singular +28927 plural +plural +plural +singular +plural +plural +plural +plural +28936 plural +28938 singular +singular +singular +singular +28943 singular +28945 plural +plural +singular +singular +singular +28951 singular +singular +28955 plural +plural +plural +28959 plural +28961 plural +plural +plural +plural +singular +singular +28969 singular +singular +singular +singular +singular +singular +singular +28978 singular +singular +28981 plural +28983 plural +28985 plural +plural +28988 singular +plural +singular +28992 singular +singular +singular +singular +singular +28998 singular +singular +singular +29002 singular +singular +29005 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +29016 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +29027 singular +singular +singular +29031 plural +plural +plural +plural +plural +singular +singular +singular +29040 singular +singular +29043 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +29054 singular +singular +29057 singular +29059 singular +singular +singular +singular +singular +singular +29066 singular +singular +singular +singular +singular +29078 singular +singular +singular +singular +29083 singular +singular +singular +29088 singular +singular +29091 singular +singular +singular +singular +singular +singular +29098 plural +29100 plural +29103 plural +29105 plural +29107 singular +singular +singular +29111 singular +singular +singular +singular +singular +29117 singular +singular +29120 singular +plural +29123 singular +29125 singular +singular +plural +singular +29130 plural +singular +29133 plural +plural +plural +plural +singular +29139 plural +29142 singular +singular +29145 singular +singular +singular +singular +singular +singular +singular +singular +29154 singular +singular +singular +singular +29159 singular +singular +singular +singular +singular +singular +singular +singular +singular +29169 singular +singular +29172 singular +singular +singular +singular +singular +29178 singular +singular +singular +29183 singular +29185 singular +singular +singular +singular +singular +29192 singular +29194 singular +29196 singular +singular +singular +singular +singular +singular +singular +29204 singular +singular +singular +singular +singular +singular +singular +29212 singular +singular +29215 singular +singular +singular +singular +29220 singular +29222 singular +singular +29225 singular +singular +singular +singular +29230 singular +singular +singular +singular +29235 singular +singular +singular +plural +29240 singular +29242 singular +singular +singular +singular +singular +singular +29249 singular +singular +singular +singular +29254 singular +plural +plural +29258 plural +plural +singular +29264 singular +singular +plural +plural +plural +29270 singular +singular +singular +singular +singular +29276 plural +29278 plural +singular +singular +plural +singular +singular +29285 singular +singular +singular +singular +29290 plural +plural +29293 singular +singular +singular +29297 singular +singular +29301 plural +29303 singular +singular +plural +singular +singular +29309 plural +plural +singular +singular +singular +29315 plural +29317 singular +singular +plural +29321 plural +plural +singular +singular +singular +singular +singular +singular +29330 singular +29332 singular +singular +singular +29336 plural +singular +29339 plural +plural +plural +plural +singular +29345 singular +singular +29348 singular +plural +29351 singular +singular +29354 singular +plural +29357 singular +plural +29360 plural +plural +29363 singular +singular +29366 singular +plural +singular +29370 singular +29372 singular +singular +plural +29376 plural +29378 singular +29380 singular +singular +singular +singular +singular +singular +singular +29388 singular +singular +29391 plural +singular +singular +singular +plural +29397 singular +plural +plural +29401 plural +plural +plural +29405 singular +29407 singular +29409 singular +plural +29413 plural +plural +29416 plural +plural +singular +29420 singular +singular +plural +29424 singular +plural +plural +plural +plural +plural +29431 plural +plural +29434 singular +plural +plural +plural +29439 singular +29441 singular +singular +singular +plural +29446 singular +29448 plural +plural +singular +singular +29453 plural +29455 singular +plural +plural +29459 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +29471 singular +singular +29474 singular +singular +singular +29478 plural +plural +plural +plural +singular +29484 singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +29495 singular +singular +plural +29500 plural +singular +29503 plural +plural +plural +29508 plural +29511 singular +singular +singular +29515 singular +29517 plural +singular +29520 singular +singular +29523 singular +29525 plural +singular +singular +29529 plural +plural +plural +29533 singular +singular +singular +29537 singular +singular +singular +29541 plural +plural +plural +29545 plural +plural +plural +plural +29550 singular +singular +29553 plural +29556 plural +29558 singular +singular +singular +29562 singular +29565 singular +singular +29568 plural +singular +singular +29572 singular +singular +singular +singular +singular +29578 plural +plural +29581 singular +29583 plural +plural +29586 plural +plural +29589 plural +plural +plural +29593 singular +plural +29596 plural +plural +singular +singular +singular +singular +singular +29604 plural +29607 singular +29609 singular +singular +29612 singular +29614 plural +singular +plural +singular +singular +singular +29621 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +29632 singular +singular +29635 singular +singular +29638 plural +plural +singular +29642 singular +singular +singular +singular +29647 plural +plural +plural +29651 singular +singular +plural +29655 plural +plural +plural +29659 plural +singular +singular +plural +29665 singular +plural +singular +29669 singular +singular +singular +singular +29674 plural +plural +plural +29678 plural +plural +plural +29682 singular +29684 singular +29686 singular +29688 singular +singular +singular +singular +singular +29694 singular +singular +29697 singular +singular +singular +singular +singular +singular +29704 singular +29706 singular +singular +singular +singular +29711 singular +singular +singular +singular +singular +singular +singular +29719 singular +singular +singular +singular +29724 singular +singular +singular +singular +singular +29730 plural +singular +singular +singular +singular +29736 singular +singular +singular +29740 singular +singular +29743 singular +29745 singular +29747 singular +singular +singular +29751 singular +singular +29754 singular +singular +singular +singular +29759 singular +singular +singular +singular +singular +singular +singular +29767 singular +singular +singular +singular +singular +29773 singular +singular +singular +29777 singular +29779 plural +29781 singular +singular +singular +plural +29786 singular +singular +29789 singular +29791 singular +29793 singular +29796 singular +29798 singular +singular +singular +29803 singular +singular +singular +29807 plural +plural +plural +singular +singular +29813 singular +singular +singular +plural +29818 singular +singular +29821 singular +29823 singular +29825 singular +singular +29828 plural +plural +29831 plural +29833 plural +29835 singular +plural +29838 singular +singular +singular +29842 singular +singular +29845 singular +singular +29848 singular +singular +singular +29852 singular +singular +singular +29856 singular +singular +singular +singular +29861 plural +plural +singular +29865 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +29876 singular +singular +29879 singular +29882 singular +29885 singular +plural +29888 singular +singular +singular +29893 singular +29896 singular +singular +singular +plural +29901 plural +29903 singular +plural +plural +singular +plural +plural +29910 singular +singular +plural +29914 singular +singular +singular +singular +singular +singular +29921 plural +29923 singular +29926 singular +singular +singular +29930 singular +29932 singular +29934 plural +29936 plural +29938 singular +singular +29941 singular +singular +29944 singular +singular +singular +plural +29949 singular +singular +29952 singular +29954 plural +plural +plural +singular +singular +singular +singular +29962 singular +singular +singular +29967 plural +plural +plural +singular +singular +singular +singular +singular +29976 singular +singular +plural +29980 singular +29983 singular +singular +singular +29987 plural +plural +singular +29991 singular +singular +29994 plural +29997 singular +singular +singular +singular +singular +singular +singular +singular +30006 singular +singular +30009 singular +singular +singular +singular +singular +singular +30016 singular +singular +singular +singular +singular +singular +30023 singular +singular +30026 singular +singular +singular +singular +singular +30032 singular +30034 singular +singular +singular +singular +singular +singular +30041 singular +30043 singular +30045 singular +singular +singular +30049 singular +singular +singular +singular +singular +singular +30056 singular +singular +singular +singular +30061 singular +singular +30064 singular +singular +30067 singular +singular +30070 singular +singular +30073 singular +30075 singular +singular +30078 singular +singular +singular +singular +singular +singular +singular +singular +30087 singular +singular +singular +30091 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +30103 singular +30105 singular +singular +singular +30109 plural +plural +30112 singular +singular +singular +30116 singular +singular +30119 singular +singular +30122 singular +singular +30125 singular +singular +30128 singular +30130 singular +30132 singular +singular +singular +singular +singular +singular +singular +singular +30141 singular +30143 singular +singular +singular +singular +30149 singular +singular +singular +singular +singular +singular +30156 singular +singular +singular +singular +singular +30162 singular +singular +singular +30166 singular +singular +30169 singular +singular +singular +singular +singular +singular +singular +singular +30179 singular +30181 singular +singular +singular +singular +30186 singular +singular +singular +singular +singular +singular +singular +singular +30195 singular +singular +singular +30199 singular +30201 singular +singular +singular +30205 singular +singular +30208 plural +plural +plural +singular +30213 singular +singular +30216 singular +30218 singular +singular +30221 singular +30223 singular +singular +singular +30227 singular +singular +singular +30231 singular +30233 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +30244 singular +singular +singular +30248 singular +singular +singular +singular +singular +30254 singular +singular +singular +30258 singular +singular +singular +30262 plural +30264 singular +singular +singular +singular +singular +singular +30272 singular +singular +30275 singular +singular +singular +singular +singular +singular +30282 singular +30284 singular +30286 singular +singular +singular +singular +singular +singular +30293 plural +plural +singular +singular +30298 singular +singular +singular +30302 singular +singular +singular +30306 singular +singular +singular +30310 singular +singular +plural +plural +singular +30316 singular +30318 singular +singular +singular +singular +singular +singular +singular +singular +30327 singular +singular +singular +singular +30332 singular +singular +singular +singular +singular +30338 singular +30340 singular +singular +singular +singular +singular +30346 singular +30348 singular +30350 plural +singular +plural +plural +plural +30356 singular +singular +plural +singular +singular +30362 singular +singular +singular +singular +30367 singular +singular +singular +30371 plural +30373 plural +plural +plural +singular +singular +singular +30380 singular +singular +singular +plural +singular +singular +plural +singular +plural +30390 plural +30392 singular +plural +plural +singular +plural +30398 plural +singular +plural +singular +singular +singular +singular +30406 singular +singular +singular +30410 singular +singular +singular +30414 singular +singular +30417 singular +30419 plural +plural +plural +30423 singular +singular +30426 singular +30428 plural +plural +30431 singular +30433 singular +singular +singular +30437 singular +singular +singular +singular +singular +singular +30444 singular +30446 singular +singular +30449 plural +plural +plural +30453 plural +plural +singular +30457 singular +singular +singular +singular +singular +30463 singular +30465 plural +singular +30468 singular +30470 singular +singular +singular +singular +plural +30476 singular +singular +30479 plural +singular +30482 singular +singular +singular +singular +singular +singular +30489 singular +singular +singular +singular +singular +30496 singular +singular +30499 plural +30501 singular +30503 singular +30505 singular +singular +singular +singular +singular +singular +singular +singular +singular +30515 plural +singular +singular +singular +singular +30521 singular +singular +30524 singular +30526 singular +singular +singular +singular +singular +singular +singular +singular +30535 plural +plural +30538 singular +singular +singular +singular +30544 singular +singular +singular +30548 singular +singular +singular +singular +30553 singular +singular +30556 plural +plural +plural +plural +30562 singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +30573 plural +plural +plural +plural +30578 singular +singular +plural +plural +30583 singular +singular +singular +singular +singular +30590 singular +singular +singular +30594 singular +30596 singular +singular +singular +singular +singular +singular +singular +30604 singular +singular +singular +singular +singular +singular +singular +singular +30613 singular +30615 singular +singular +singular +singular +singular +30621 singular +singular +singular +plural +30626 singular +singular +singular +singular +30631 singular +30633 singular +plural +plural +30637 singular +plural +singular +singular +30642 plural +plural +30646 singular +plural +plural +plural +plural +30652 singular +30654 plural +plural +plural +30659 singular +singular +singular +singular +singular +singular +30666 singular +singular +singular +plural +singular +30672 plural +30674 singular +plural +plural +30679 singular +30681 singular +30683 singular +30685 singular +plural +plural +plural +plural +30691 singular +30693 singular +singular +singular +singular +30698 singular +30700 singular +30702 plural +singular +singular +30706 singular +singular +singular +singular +singular +30712 singular +plural +plural +30716 plural +singular +singular +plural +30721 plural +singular +plural +singular +30726 singular +30728 plural +30730 singular +30732 singular +singular +plural +singular +30737 plural +plural +plural +30741 singular +singular +30744 singular +singular +singular +30748 singular +singular +30751 singular +30753 plural +plural +30756 singular +singular +singular +30760 singular +singular +30763 singular +30765 plural +plural +plural +singular +singular +30771 singular +singular +30774 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +30786 plural +plural +30789 singular +30791 singular +singular +singular +30795 singular +30797 singular +30799 singular +singular +30802 singular +singular +30805 singular +singular +30808 singular +singular +singular +singular +singular +30814 singular +30816 singular +30818 singular +30820 singular +singular +30824 singular +singular +singular +singular +singular +singular +30831 singular +30833 singular +30835 plural +30837 plural +plural +plural +singular +30842 singular +30844 singular +singular +singular +singular +singular +singular +30851 singular +singular +30854 singular +singular +30857 singular +30860 singular +plural +singular +30864 singular +singular +30867 plural +plural +30870 singular +singular +singular +singular +plural +30876 plural +plural +singular +singular +30881 singular +singular +plural +30885 singular +singular +singular +plural +30890 singular +singular +singular +plural +30895 plural +singular +singular +30899 singular +plural +singular +singular +30904 plural +30906 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +30917 singular +plural +30920 singular +singular +singular +singular +singular +30926 singular +singular +30929 singular +plural +singular +plural +singular +singular +30936 singular +30938 singular +30941 singular +30943 singular +singular +singular +singular +singular +plural +singular +singular +30952 plural +singular +30955 plural +singular +30959 singular +singular +30962 plural +singular +30965 singular +30967 plural +30969 plural +30971 singular +singular +plural +plural +plural +plural +plural +30979 plural +30981 plural +30983 singular +30985 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +30997 plural +plural +31000 plural +31002 singular +singular +31005 singular +singular +31008 singular +singular +singular +31012 singular +singular +31015 plural +plural +31018 singular +singular +singular +singular +plural +31024 singular +singular +singular +31028 plural +plural +plural +plural +31033 plural +plural +31036 plural +plural +31039 plural +31041 singular +singular +singular +plural +plural +plural +plural +singular +31050 singular +singular +singular +31054 plural +plural +plural +plural +31059 plural +singular +singular +31063 plural +plural +plural +31067 plural +31069 singular +31071 plural +31074 plural +plural +31077 singular +31079 singular +31081 singular +singular +singular +singular +singular +singular +singular +31089 singular +singular +31092 singular +31094 singular +31096 singular +singular +31100 plural +plural +plural +singular +singular +plural +31107 singular +singular +singular +plural +singular +31113 plural +31115 singular +singular +31118 singular +31120 singular +singular +31123 singular +singular +singular +singular +singular +singular +singular +singular +31132 singular +31134 singular +31136 singular +singular +31139 singular +singular +singular +singular +plural +31146 plural +plural +31149 singular +singular +singular +31153 singular +singular +singular +singular +31158 singular +singular +singular +singular +31163 singular +singular +singular +singular +singular +31169 singular +singular +singular +31173 singular +31175 singular +singular +singular +31179 singular +singular +singular +singular +31185 singular +31189 singular +singular +singular +singular +31194 singular +31196 singular +singular +31199 singular +singular +31203 singular +31205 plural +plural +singular +singular +singular +singular +31212 plural +31214 singular +singular +singular +singular +31219 singular +31221 singular +singular +singular +31225 plural +plural +31228 singular +singular +singular +31232 singular +singular +31235 singular +singular +singular +singular +31240 singular +singular +singular +31244 singular +31246 plural +plural +plural +singular +singular +singular +singular +singular +singular +31256 singular +plural +plural +plural +singular +31262 singular +plural +31265 singular +singular +singular +singular +31270 singular +plural +singular +singular +singular +31276 singular +singular +31279 plural +plural +31282 singular +31284 singular +plural +singular +31288 singular +31290 singular +singular +singular +singular +singular +singular +singular +31298 singular +31300 singular +plural +31303 singular +singular +31307 singular +singular +31311 singular +singular +singular +singular +singular +singular +31319 plural +31321 plural +plural +plural +31325 singular +singular +singular +singular +singular +31331 singular +singular +singular +singular +31336 plural +plural +singular +31340 singular +plural +31344 singular +singular +singular +31348 singular +singular +31351 plural +31353 plural +singular +31356 singular +singular +singular +plural +31361 plural +singular +singular +31365 singular +31367 singular +singular +singular +singular +singular +singular +singular +31375 singular +31377 singular +plural +plural +plural +singular +singular +31385 plural +plural +plural +31389 singular +singular +singular +plural +31394 singular +singular +31397 singular +plural +singular +31401 singular +singular +singular +31405 singular +singular +singular +31409 singular +singular +singular +31413 singular +31415 plural +plural +plural +singular +31420 singular +31422 singular +singular +singular +singular +singular +31429 singular +plural +31432 plural +plural +31435 singular +singular +singular +singular +31440 plural +plural +plural +31444 singular +31446 plural +singular +singular +singular +singular +31452 singular +31455 plural +plural +plural +singular +31460 plural +singular +31464 singular +singular +plural +singular +singular +31470 plural +singular +31473 plural +plural +31476 plural +plural +31480 plural +plural +31483 singular +plural +singular +31487 singular +31489 plural +plural +plural +singular +31494 singular +singular +singular +31498 singular +plural +plural +31502 singular +plural +31505 singular +plural +31508 plural +plural +plural +plural +singular +31514 singular +singular +31517 plural +plural +singular +31521 plural +singular +plural +31525 singular +31527 singular +singular +singular +singular +singular +singular +singular +plural +31536 singular +singular +singular +singular +singular +plural +plural +singular +31545 singular +31547 plural +singular +31550 plural +singular +31553 plural +31556 plural +singular +singular +singular +31561 singular +singular +31564 plural +31566 plural +singular +singular +singular +singular +plural +31573 singular +31575 plural +31577 singular +31579 singular +31581 singular +singular +plural +31585 singular +singular +singular +singular +plural +plural +plural +31593 singular +singular +singular +31597 singular +singular +31600 singular +singular +31603 singular +31605 singular +31607 singular +31609 plural +31612 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +31624 singular +singular +singular +singular +31629 singular +singular +singular +singular +singular +singular +singular +31637 singular +singular +31640 singular +singular +singular +singular +31645 singular +singular +31648 singular +singular +singular +singular +31653 singular +singular +singular +singular +31658 singular +singular +31661 singular +31663 singular +singular +singular +singular +singular +singular +singular +singular +31672 singular +plural +31675 singular +31677 singular +plural +singular +singular +singular +singular +singular +31685 singular +singular +plural +singular +singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +31700 singular +singular +31703 singular +singular +31706 singular +plural +plural +31710 plural +31712 plural +plural +31715 plural +plural +31718 singular +singular +singular +singular +singular +singular +singular +31726 singular +plural +plural +31731 singular +plural +plural +plural +singular +singular +plural +31740 singular +singular +singular +31744 plural +plural +plural +singular +singular +31751 plural +31754 plural +singular +plural +singular +singular +31760 singular +plural +31763 singular +singular +singular +31767 plural +plural +plural +31771 plural +singular +singular +31777 singular +singular +31780 singular +singular +plural +plural +singular +31786 singular +singular +31789 singular +singular +singular +singular +31795 singular +singular +31798 plural +singular +plural +plural +plural +31804 singular +plural +31807 singular +singular +plural +singular +singular +31813 plural +singular +singular +31817 singular +31819 singular +singular +plural +31823 singular +31825 plural +31827 plural +31830 plural +31832 singular +singular +singular +plural +31837 singular +singular +31840 plural +singular +singular +31844 singular +singular +plural +plural +31849 plural +singular +31852 plural +plural +singular +plural +31857 plural +31859 singular +plural +singular +plural +31864 plural +31866 plural +plural +plural +plural +31871 singular +singular +singular +31875 plural +plural +31878 plural +plural +plural +31882 singular +singular +31886 singular +singular +singular +singular +singular +singular +plural +singular +singular +31896 singular +singular +singular +plural +31901 singular +singular +singular +singular +singular +31907 singular +singular +31910 singular +singular +plural +plural +singular +singular +plural +singular +31919 singular +singular +31922 singular +singular +singular +singular +31927 singular +singular +singular +31931 singular +singular +singular +31936 singular +singular +31939 singular +singular +singular +31943 singular +singular +singular +singular +singular +31950 plural +31952 plural +singular +singular +singular +singular +31958 singular +singular +singular +singular +singular +31964 singular +31966 singular +singular +singular +singular +singular +singular +31974 plural +plural +plural +singular +singular +singular +singular +31982 singular +31984 plural +singular +singular +singular +31989 singular +31991 singular +31993 singular +31995 singular +singular +singular +31999 singular +singular +32002 singular +32004 singular +singular +32008 singular +singular +singular +singular +singular +singular +32015 singular +32017 singular +32019 singular +32021 singular +32023 singular +singular +singular +singular +singular +singular +singular +32031 singular +singular +32034 singular +singular +singular +singular +32039 plural +32042 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +32199 singular +singular +singular +singular +singular +32205 singular +singular +32208 singular +32210 singular +singular +32213 singular +singular +plural +32217 singular +32219 singular +singular +32223 singular +singular +32226 plural +plural +plural +32230 plural +plural +singular +32234 singular +singular +singular +singular +32239 singular +singular +singular +singular +singular +singular +singular +singular +32248 singular +singular +32251 singular +32253 singular +singular +singular +singular +32260 singular +singular +singular +singular +singular +32266 singular +singular +singular +singular +plural +plural +plural +singular +singular +32276 singular +singular +32279 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +32290 singular +singular +plural +32294 singular +singular +32298 singular +singular +singular +singular +32304 singular +singular +32307 singular +singular +singular +singular +32312 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +32324 singular +singular +singular +32328 singular +singular +32331 singular +32333 singular +32335 singular +singular +singular +singular +32340 singular +singular +32343 singular +singular +singular +singular +singular +singular +32352 singular +32354 plural +plural +singular +singular +32359 singular +singular +32362 singular +32366 plural +plural +singular +32371 singular +32373 singular +singular +singular +singular +32378 singular +singular +singular +singular +singular +32384 singular +32386 singular +singular +singular +singular +singular +32392 singular +singular +singular +singular +singular +singular +32399 singular +32401 singular +32403 singular +singular +singular +32407 singular +singular +singular +singular +32412 singular +singular +32415 singular +singular +32418 singular +singular +singular +32422 singular +32424 singular +singular +32427 plural +plural +plural +singular +32432 plural +32434 singular +32436 singular +32438 singular +singular +32441 singular +32443 singular +singular +singular +32447 singular +singular +plural +plural +32452 singular +singular +32455 singular +32458 singular +singular +singular +singular +singular +singular +32465 singular +singular +singular +singular +singular +singular +32472 singular +singular +singular +singular +32477 singular +singular +32480 singular +singular +32483 plural +singular +singular +32487 plural +singular +32490 plural +singular +32493 plural +32495 singular +32497 singular +singular +singular +32501 singular +singular +singular +singular +singular +singular +singular +32509 plural +plural +plural +32513 singular +singular +plural +plural +singular +32519 singular +32522 plural +32525 singular +singular +singular +singular +32530 plural +plural +plural +32534 plural +plural +singular +32538 plural +32540 plural +plural +singular +singular +plural +plural +32547 singular +singular +singular +32551 plural +32553 singular +singular +singular +singular +32558 singular +32560 plural +32562 plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +32574 singular +singular +singular +32580 singular +singular +singular +32584 singular +32586 singular +plural +32589 singular +singular +singular +singular +32594 singular +singular +singular +32599 singular +singular +plural +plural +plural +plural +32606 plural +plural +singular +32610 singular +singular +32613 singular +singular +singular +32617 plural +plural +32620 plural +32623 singular +singular +singular +32627 singular +singular +singular +32632 singular +plural +singular +singular +32639 plural +singular +singular +32643 singular +singular +32646 plural +plural +plural +32650 singular +singular +32653 singular +singular +singular +32657 singular +plural +singular +32662 singular +singular +singular +32666 plural +singular +plural +32670 singular +singular +plural +plural +32675 plural +plural +singular +32679 singular +singular +32682 plural +singular +32685 singular +singular +singular +32689 singular +singular +singular +plural +singular +32696 singular +32698 singular +singular +32701 singular +plural +singular +32705 singular +32707 singular +singular +singular +singular +32712 singular +singular +plural +32716 plural +plural +32719 plural +32721 singular +singular +singular +32726 singular +singular +singular +singular +singular +32733 singular +singular +singular +singular +singular +singular +singular +singular +32742 singular +singular +singular +32746 singular +plural +32749 singular +singular +singular +singular +32754 plural +singular +singular +singular +singular +singular +singular +singular +singular +32764 singular +singular +singular +singular +singular +singular +32771 singular +32773 singular +32775 singular +singular +singular +singular +32780 singular +singular +singular +32784 singular +singular +singular +singular +32789 singular +singular +32792 plural +32794 plural +32796 plural +plural +singular +singular +singular +singular +32804 singular +32806 singular +singular +plural +plural +plural +32812 plural +32814 singular +singular +32817 singular +32819 singular +singular +singular +singular +32824 singular +32826 singular +singular +singular +32830 singular +singular +singular +32834 singular +singular +singular +singular +singular +singular +singular +32842 plural +singular +32845 singular +32847 singular +32849 singular +singular +singular +singular +32854 singular +singular +32858 singular +singular +plural +32862 singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +32874 singular +32876 singular +singular +singular +plural +plural +plural +singular +singular +plural +32886 singular +32888 plural +32890 plural +plural +32893 plural +32895 singular +singular +singular +singular +singular +singular +32902 singular +32904 singular +plural +32908 plural +singular +singular +singular +32914 singular +singular +singular +singular +32919 singular +singular +32922 plural +plural +plural +singular +32927 plural +32929 singular +32931 plural +singular +singular +32937 plural +32939 singular +singular +32942 plural +32945 plural +plural +plural +32949 singular +singular +singular +singular +singular +singular +32957 singular +singular +32960 singular +singular +32963 plural +plural +singular +singular +32968 singular +32970 singular +singular +singular +32974 singular +32977 singular +singular +singular +singular +32982 singular +singular +singular +32986 singular +singular +singular +32990 singular +plural +32993 plural +32995 singular +singular +32998 plural +plural +33001 plural +plural +plural +plural +plural +33007 singular +33009 singular +plural +plural +singular +singular +singular +singular +singular +33018 singular +singular +33021 singular +33023 singular +33025 singular +singular +singular +plural +plural +33032 singular +singular +singular +33036 singular +singular +singular +33040 singular +singular +33043 plural +plural +plural +plural +33048 singular +33050 singular +singular +singular +singular +33055 singular +singular +plural +singular +plural +33062 singular +singular +singular +singular +plural +plural +33069 singular +plural +plural +singular +plural +singular +33076 singular +plural +plural +plural +33081 plural +plural +plural +33085 singular +singular +singular +singular +plural +33091 plural +33093 plural +33095 plural +plural +plural +plural +33101 plural +33103 singular +singular +singular +singular +plural +plural +singular +singular +singular +33113 singular +33115 singular +singular +singular +singular +33120 singular +singular +singular +33124 plural +plural +33127 singular +33129 singular +singular +plural +plural +singular +plural +33138 singular +33140 singular +plural +singular +plural +plural +plural +singular +singular +33149 singular +33151 singular +singular +singular +singular +33156 singular +33158 singular +33160 plural +singular +singular +33164 plural +plural +plural +33168 singular +singular +plural +plural +plural +singular +33175 singular +33177 singular +33179 singular +33181 singular +plural +plural +33185 singular +singular +singular +singular +33190 singular +singular +singular +singular +33195 singular +singular +singular +singular +singular +33201 singular +singular +singular +33206 singular +singular +singular +singular +singular +singular +singular +singular +33216 singular +singular +singular +33220 singular +33222 singular +singular +singular +singular +33228 singular +singular +singular +singular +singular +33234 singular +33236 singular +singular +singular +33240 singular +singular +33243 singular +plural +33246 singular +33248 singular +singular +33251 singular +33253 plural +plural +plural +33260 plural +plural +plural +33264 singular +singular +singular +33268 plural +plural +33271 singular +33273 singular +33275 singular +plural +plural +33279 singular +singular +singular +33283 plural +plural +plural +33287 plural +plural +plural +plural +33292 singular +singular +singular +singular +33297 singular +33299 singular +33301 singular +singular +singular +33305 singular +33307 singular +33309 singular +plural +plural +33313 singular +singular +singular +singular +singular +33319 plural +singular +33325 singular +33328 plural +singular +plural +singular +33333 singular +singular +plural +33337 singular +singular +33340 plural +plural +plural +singular +33345 singular +singular +33348 singular +singular +33351 singular +singular +33354 singular +singular +singular +plural +singular +singular +plural +singular +plural +plural +singular +33366 plural +33368 plural +plural +33371 plural +plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +plural +33386 singular +singular +singular +33390 singular +singular +singular +plural +plural +plural +singular +singular +33399 plural +singular +plural +33403 plural +plural +plural +singular +singular +singular +33410 plural +singular +plural +plural +singular +33417 singular +33419 singular +33422 plural +33424 singular +singular +singular +singular +singular +singular +33431 singular +singular +33434 plural +singular +singular +singular +singular +singular +singular +33442 singular +singular +singular +singular +singular +33448 singular +singular +singular +33453 singular +33455 plural +singular +33458 singular +singular +singular +33462 singular +singular +singular +singular +singular +singular +33469 singular +singular +plural +33473 plural +singular +singular +33477 plural +singular +plural +33481 plural +plural +33486 plural +singular +33489 singular +singular +singular +singular +singular +33495 singular +singular +33498 singular +singular +singular +singular +33503 singular +plural +singular +singular +singular +33509 singular +singular +singular +singular +singular +33515 singular +singular +singular +33519 singular +singular +singular +plural +33524 plural +plural +plural +plural +33529 plural +33531 plural +plural +plural +33535 plural +plural +plural +33539 plural +plural +singular +plural +33544 singular +33546 plural +plural +33549 plural +plural +33552 plural +33554 singular +singular +singular +singular +33559 plural +33561 singular +singular +plural +plural +plural +33567 plural +33569 plural +33571 singular +33573 plural +33575 plural +33577 singular +33579 plural +plural +33582 singular +plural +plural +singular +plural +plural +33589 plural +plural +33593 plural +plural +plural +33597 plural +plural +plural +33601 plural +33603 singular +singular +singular +33607 plural +33609 plural +plural +plural +singular +singular +33615 singular +singular +singular +33619 plural +singular +33624 plural +plural +33628 singular +33630 plural +singular +singular +33634 plural +33636 plural +plural +plural +33640 singular +33642 singular +33644 plural +33646 singular +singular +33649 singular +singular +singular +singular +33654 singular +singular +33660 singular +singular +singular +33664 singular +singular +33667 singular +singular +singular +singular +33672 singular +singular +33675 singular +singular +singular +singular +33680 plural +plural +33685 singular +singular +singular +singular +singular +plural +plural +33693 singular +singular +33696 plural +plural +plural +33700 singular +singular +33703 plural +plural +singular +33707 singular +singular +singular +singular +singular +33713 singular +singular +singular +singular +singular +33719 singular +33721 singular +33723 singular +33725 plural +33727 plural +33729 plural +plural +plural +singular +plural +plural +plural +plural +plural +33739 plural +plural +plural +plural +singular +plural +singular +33747 singular +plural +plural +33751 singular +33753 plural +singular +singular +singular +33758 plural +singular +singular +singular +singular +33764 singular +singular +33767 plural +33769 singular +plural +33772 singular +33774 singular +singular +singular +singular +33779 plural +plural +singular +singular +singular +singular +33786 singular +plural +33789 singular +plural +33793 singular +33796 plural +plural +plural +33800 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +33811 singular +33813 singular +singular +33816 singular +33818 singular +singular +33823 singular +singular +33827 singular +singular +singular +singular +singular +singular +singular +33835 plural +singular +plural +plural +33840 plural +plural +33844 singular +singular +singular +33848 plural +33850 singular +33852 singular +singular +plural +plural +plural +33858 singular +singular +singular +singular +singular +singular +singular +singular +singular +33868 singular +33870 singular +singular +33873 singular +singular +33876 singular +singular +singular +33880 plural +singular +plural +33884 singular +singular +singular +33890 singular +33895 singular +plural +plural +singular +singular +singular +singular +singular +singular +33905 singular +singular +33908 singular +singular +singular +singular +33913 plural +plural +singular +33917 plural +33919 plural +33921 singular +plural +singular +singular +33926 singular +33928 plural +plural +plural +33932 singular +33934 singular +singular +33938 singular +singular +33941 singular +singular +singular +singular +33947 singular +singular +singular +plural +plural +singular +33954 singular +33956 plural +33958 plural +33960 plural +singular +singular +singular +33965 singular +singular +33968 singular +singular +singular +singular +33973 singular +33975 singular +33977 singular +33979 singular +33981 singular +33983 singular +33985 singular +singular +33988 singular +singular +singular +singular +33993 singular +singular +33996 singular +singular +singular +singular +singular +34002 singular +34004 plural +singular +34007 singular +singular +34010 singular +singular +plural +singular +34015 singular +singular +singular +singular +34020 singular +singular +singular +34024 singular +34026 singular +singular +singular +34030 singular +plural +plural +34034 singular +34038 plural +plural +plural +34042 plural +plural +34045 plural +plural +plural +34049 singular +singular +singular +plural +34054 singular +34056 singular +34058 singular +singular +34061 singular +plural +34064 singular +singular +plural +plural +singular +34070 plural +plural +singular +singular +plural +plural +plural +34078 singular +singular +singular +singular +singular +singular +plural +plural +plural +34089 plural +plural +plural +plural +34095 plural +plural +plural +34099 plural +plural +plural +plural +34105 plural +plural +34108 plural +34110 plural +singular +singular +plural +34115 singular +34117 singular +singular +singular +singular +plural +34123 singular +singular +singular +34127 plural +34129 singular +singular +singular +plural +singular +34135 singular +singular +34139 plural +plural +plural +plural +plural +plural +plural +plural +34149 plural +plural +plural +34153 plural +singular +singular +plural +34158 plural +plural +plural +34163 plural +34165 plural +plural +34169 plural +34171 plural +34175 plural +plural +plural +plural +plural +34182 plural +plural +plural +plural +plural +plural +plural +plural +34191 singular +plural +plural +plural +plural +plural +plural +plural +34200 plural +plural +plural +plural +plural +plural +plural +plural +plural +34210 plural +plural +plural +singular +singular +singular +34217 singular +singular +singular +34221 singular +singular +34225 singular +singular +singular +singular +singular +34231 singular +singular +34234 singular +singular +singular +singular +singular +34241 singular +singular +plural +plural +34246 singular +34249 plural +34251 plural +plural +plural +plural +plural +plural +34260 plural +plural +plural +plural +singular +singular +plural +singular +34270 plural +plural +plural +plural +plural +plural +34279 plural +plural +plural +plural +singular +singular +plural +singular +34288 plural +plural +singular +singular +plural +34295 plural +34297 plural +plural +34300 singular +singular +plural +singular +34305 plural +plural +plural +34309 plural +plural +plural +34313 plural +plural +plural +plural +34318 plural +34320 plural +singular +plural +34324 singular +singular +singular +plural +singular +34330 plural +plural +singular +34334 singular +singular +singular +34338 plural +plural +34341 plural +plural +plural +34345 singular +singular +plural +singular +singular +34352 plural +34356 plural +34359 plural +34363 plural +plural +34366 plural +plural +34369 singular +plural +singular +singular +singular +singular +singular +plural +34378 singular +singular +plural +34382 singular +singular +plural +singular +plural +34388 singular +34390 singular +plural +34393 singular +singular +singular +34398 plural +34400 singular +plural +34403 singular +singular +34406 singular +singular +34409 singular +singular +singular +34413 singular +singular +singular +34417 singular +singular +singular +singular +singular +34423 singular +singular +singular +singular +singular +34429 singular +singular +singular +34433 singular +singular +singular +34437 singular +34439 singular +34441 singular +singular +singular +singular +singular +singular +singular +singular +singular +34451 singular +singular +singular +singular +singular +34457 singular +singular +singular +singular +34462 singular +singular +singular +singular +singular +singular +34469 singular +singular +singular +34474 singular +singular +singular +singular +34479 singular +singular +singular +singular +singular +34487 singular +singular +singular +singular +singular +singular +34495 singular +singular +singular +singular +singular +34501 singular +singular +34504 singular +singular +singular +singular +34511 plural +plural +plural +34516 singular +singular +plural +singular +singular +singular +34523 singular +singular +singular +singular +singular +singular +singular +singular +34532 singular +singular +34535 singular +singular +singular +singular +singular +34542 singular +singular +singular +singular +singular +singular +34549 singular +singular +plural +singular +singular +34556 plural +plural +singular +singular +singular +singular +34563 singular +34565 singular +singular +plural +plural +34570 singular +plural +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +34585 singular +34587 singular +singular +34590 singular +singular +34593 singular +singular +singular +singular +singular +singular +singular +singular +34603 singular +34605 singular +34607 singular +34610 singular +34612 singular +singular +34616 singular +singular +singular +singular +singular +singular +34623 singular +singular +34626 singular +singular +singular +singular +singular +34632 singular +singular +34635 singular +singular +singular +singular +singular +singular +singular +34643 singular +plural +plural +plural +singular +34649 plural +plural +singular +singular +singular +34655 singular +34657 singular +singular +singular +34661 singular +singular +34664 singular +singular +singular +singular +34669 singular +34671 singular +singular +singular +34675 singular +plural +plural +plural +singular +singular +34682 singular +singular +singular +singular +singular +34688 plural +plural +34691 singular +singular +plural +singular +34696 plural +34698 singular +singular +singular +singular +singular +34704 singular +singular +singular +plural +34709 singular +singular +singular +singular +plural +34715 singular +singular +singular +34719 plural +34722 singular +34724 singular +singular +34727 singular +singular +singular +plural +singular +singular +singular +singular +singular +34737 singular +34740 singular +singular +34744 singular +singular +singular +singular +34750 singular +singular +34753 singular +34756 singular +singular +34759 singular +singular +singular +singular +34765 singular +singular +singular +34769 singular +singular +singular +34773 singular +plural +34776 singular +singular +singular +34780 singular +34782 singular +singular +34785 singular +34787 singular +singular +singular +singular +singular +34793 singular +34795 singular +plural +singular +singular +singular +singular +34802 singular +singular +singular +singular +singular +singular +singular +plural +34812 singular +singular +singular +singular +singular +34818 plural +34820 singular +singular +plural +plural +plural +singular +singular +singular +34829 singular +34831 singular +34833 singular +34835 singular +singular +singular +34839 plural +singular +plural +plural +singular +34845 singular +singular +34849 singular +singular +singular +singular +singular +34855 singular +singular +singular +singular +singular +singular +singular +singular +34864 singular +singular +singular +34868 singular +singular +singular +singular +singular +34874 singular +34876 singular +singular +singular +singular +singular +34882 singular +34884 singular +singular +34887 singular +34889 singular +singular +singular +singular +34894 plural +plural +plural +34898 singular +singular +singular +singular +singular +34904 singular +singular +singular +34908 singular +34911 singular +singular +singular +singular +singular +34917 singular +singular +plural +34921 plural +singular +singular +plural +34926 singular +singular +singular +34930 plural +34933 singular +singular +singular +singular +singular +singular +34940 singular +singular +singular +singular +34945 singular +34947 singular +singular +singular +34951 singular +singular +singular +34955 plural +singular +plural +plural +singular +34961 plural +plural +34964 singular +34966 plural +plural +plural +singular +singular +singular +singular +34974 singular +singular +singular +singular +singular +singular +singular +34982 singular +plural +34985 plural +34987 singular +plural +plural +plural +singular +singular +singular +singular +plural +34997 singular +singular +singular +singular +singular +singular +35004 singular +plural +35007 singular +singular +singular +singular +plural +35013 plural +35015 plural +35017 plural +plural +35020 plural +plural +singular +35025 singular +singular +plural +plural +plural +singular +plural +plural +35034 plural +plural +plural +plural +plural +plural +plural +35042 plural +plural +plural +plural +plural +plural +35049 singular +singular +35052 singular +35054 singular +35056 singular +35058 plural +plural +plural +singular +singular +35065 plural +plural +35068 singular +singular +35071 plural +35073 singular +singular +singular +35077 singular +singular +35080 singular +35082 plural +singular +35085 plural +plural +singular +singular +plural +35091 singular +singular +35094 singular +plural +35097 plural +plural +plural +35101 singular +35103 plural +singular +35106 singular +plural +35109 singular +singular +singular +singular +35114 singular +singular +singular +singular +singular +singular +singular +35122 singular +singular +singular +singular +singular +singular +singular +35130 singular +singular +plural +singular +35135 plural +plural +singular +singular +singular +35141 singular +singular +35144 singular +singular +singular +singular +singular +singular +singular +35152 singular +singular +singular +35156 plural +plural +singular +plural +singular +singular +plural +singular +singular +singular +35167 plural +plural +35170 plural +plural +singular +singular +singular +singular +plural +35178 plural +35180 plural +35182 singular +35184 singular +singular +plural +plural +singular +singular +singular +35192 singular +plural +plural +plural +plural +plural +plural +35200 singular +plural +35203 plural +plural +plural +singular +plural +plural +35211 plural +plural +35215 plural +35217 singular +singular +singular +singular +35222 singular +singular +35225 singular +singular +35228 plural +singular +singular +singular +singular +singular +singular +singular +singular +35238 singular +35240 plural +singular +singular +singular +35245 singular +singular +plural +35249 plural +35251 singular +singular +singular +35255 plural +plural +plural +singular +35260 singular +singular +plural +plural +singular +35266 singular +35268 singular +35270 singular +35272 singular +singular +singular +singular +singular +35278 singular +singular +singular +singular +35283 singular +singular +singular +35287 singular +35289 singular +35291 singular +singular +singular +singular +singular +singular +singular +35299 singular +35302 plural +plural +singular +singular +singular +plural +plural +35310 plural +plural +singular +35314 plural +plural +singular +singular +singular +singular +35321 singular +plural +plural +singular +35326 singular +singular +singular +35330 singular +singular +singular +singular +singular +singular +singular +35338 singular +singular +35341 singular +singular +singular +35345 singular +singular +35348 singular +singular +singular +singular +singular +singular +35355 singular +singular +35358 singular +singular +singular +singular +35363 singular +singular +singular +singular +singular +35370 singular +singular +singular +singular +35375 plural +plural +singular +singular +singular +singular +singular +plural +plural +35385 singular +singular +35389 plural +plural +35392 plural +singular +35395 singular +plural +singular +singular +singular +singular +singular +singular +singular +35405 singular +singular +singular +singular +35410 singular +singular +singular +35414 singular +35416 singular +35418 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +35429 singular +singular +singular +singular +singular +35435 plural +35437 singular +35439 singular +plural +plural +singular +singular +plural +plural +35447 plural +plural +singular +singular +singular +singular +35454 singular +35456 singular +35458 singular +singular +35461 singular +singular +singular +plural +plural +singular +singular +singular +singular +35471 singular +35473 singular +singular +singular +plural +plural +singular +singular +35481 singular +singular +plural +plural +plural +singular +plural +plural +35490 singular +singular +35493 singular +singular +singular +singular +singular +35499 singular +singular +plural +singular +plural +plural +35506 plural +plural +plural +35511 plural +singular +singular +singular +singular +35517 plural +singular +35520 singular +35522 singular +singular +singular +singular +singular +singular +singular +singular +35531 singular +35533 singular +35535 singular +35538 singular +singular +35541 singular +35543 singular +singular +35546 singular +singular +singular +singular +singular +35553 singular +plural +35557 plural +plural +plural +plural +plural +35563 plural +plural +35566 plural +singular +singular +singular +singular +35572 singular +plural +35575 singular +35577 singular +singular +singular +singular +singular +35583 singular +35585 plural +plural +plural +plural +plural +35591 plural +plural +plural +35595 singular +singular +singular +35599 plural +35601 singular +plural +35604 singular +singular +35607 singular +singular +singular +singular +singular +35613 singular +singular +singular +35618 singular +35620 singular +singular +35623 singular +35625 singular +singular +35628 singular +35630 plural +plural +singular +singular +singular +singular +35637 singular +singular +35640 singular +singular +35643 singular +singular +35646 singular +35649 singular +35651 singular +singular +35654 singular +plural +plural +35658 plural +plural +plural +plural +singular +35664 singular +singular +35667 singular +singular +singular +singular +35672 singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +35683 singular +35685 plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +35696 singular +singular +plural +singular +35701 plural +plural +singular +singular +singular +singular +35708 plural +plural +35711 plural +35713 plural +35715 plural +35717 plural +35719 plural +35721 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +35733 plural +35735 singular +singular +plural +plural +plural +35741 singular +singular +singular +35745 singular +singular +singular +35749 singular +singular +plural +35754 plural +plural +35757 plural +35759 singular +singular +plural +35763 plural +35765 singular +plural +singular +singular +35770 plural +singular +35773 plural +plural +35776 singular +plural +35780 singular +singular +plural +35784 singular +35786 plural +plural +singular +plural +plural +plural +plural +35795 plural +35797 singular +35799 plural +singular +singular +plural +plural +35806 plural +35808 singular +35810 singular +singular +singular +plural +plural +plural +35817 singular +singular +35820 singular +plural +singular +singular +plural +35826 plural +35828 singular +35830 singular +singular +singular +singular +singular +singular +35838 singular +singular +35842 singular +singular +35845 plural +plural +plural +singular +singular +35852 singular +singular +singular +35856 singular +singular +35859 singular +singular +35863 singular +35866 singular +singular +35869 plural +35871 plural +35874 singular +singular +singular +singular +35880 singular +35882 singular +35884 singular +35886 singular +singular +35889 singular +35891 singular +35893 singular +singular +singular +35897 plural +plural +singular +35902 plural +35904 singular +35906 singular +singular +35909 singular +singular +singular +singular +singular +35915 plural +plural +singular +plural +35921 singular +plural +35924 singular +singular +singular +35928 plural +singular +singular +35932 plural +singular +plural +plural +plural +singular +singular +singular +singular +plural +35943 plural +35945 singular +35947 singular +plural +plural +35951 singular +singular +35954 singular +35956 plural +plural +singular +35960 singular +35962 plural +plural +35965 singular +35967 singular +singular +35970 plural +35972 plural +plural +singular +35976 singular +singular +singular +35980 singular +singular +35983 plural +35985 plural +35987 plural +plural +singular +plural +singular +singular +plural +35995 singular +singular +singular +singular +singular +36001 singular +singular +singular +singular +36006 plural +36008 singular +singular +36011 singular +plural +36014 singular +singular +plural +36018 plural +plural +plural +36022 plural +36024 singular +singular +singular +36029 plural +plural +36032 singular +singular +singular +36036 plural +singular +36039 plural +36041 singular +singular +plural +plural +singular +singular +36048 singular +singular +36051 singular +singular +36054 singular +singular +singular +singular +singular +36060 singular +singular +singular +plural +36065 singular +singular +36068 singular +singular +36072 singular +36074 singular +36077 plural +plural +36080 singular +singular +singular +singular +singular +singular +36087 singular +singular +singular +singular +singular +36093 singular +singular +singular +singular +singular +singular +singular +singular +singular +36103 singular +singular +36106 singular +singular +singular +singular +singular +36113 singular +singular +36116 plural +plural +singular +singular +36121 singular +plural +36124 plural +singular +36127 singular +plural +plural +singular +36132 singular +singular +36135 plural +plural +36138 singular +singular +singular +singular +singular +singular +singular +singular +36147 singular +singular +singular +36151 singular +plural +plural +36155 singular +36157 plural +singular +36161 singular +plural +36164 singular +singular +36168 singular +36170 singular +plural +plural +singular +36175 singular +singular +36178 plural +singular +36181 singular +plural +36184 plural +36187 singular +plural +36190 plural +plural +plural +36194 singular +singular +plural +36198 plural +plural +36201 singular +singular +singular +36205 singular +singular +36208 singular +singular +36211 singular +36213 plural +plural +plural +singular +singular +plural +36220 plural +36222 singular +singular +36226 plural +plural +36229 plural +36231 singular +singular +36234 plural +36236 singular +singular +36239 plural +singular +singular +singular +36244 singular +plural +plural +singular +singular +36250 singular +36252 plural +plural +singular +singular +36257 plural +36259 plural +plural +plural +plural +36264 singular +singular +singular +36268 singular +singular +singular +singular +singular +singular +plural +plural +singular +36279 plural +36281 singular +singular +plural +36285 singular +singular +36288 singular +singular +36291 singular +singular +singular +singular +36296 singular +singular +plural +plural +36302 singular +36304 singular +singular +singular +singular +36309 singular +singular +singular +36313 singular +plural +singular +singular +singular +singular +36320 singular +36322 singular +singular +singular +singular +plural +singular +singular +singular +singular +36333 singular +36335 singular +singular +singular +singular +singular +singular +36342 plural +plural +plural +singular +36347 singular +singular +singular +singular +singular +singular +36354 singular +singular +singular +singular +singular +36360 singular +36362 plural +plural +singular +singular +singular +36369 singular +singular +singular +36373 singular +singular +36376 plural +36378 singular +singular +36381 singular +singular +36385 singular +36387 singular +plural +plural +plural +singular +36393 singular +singular +36396 singular +singular +36399 plural +36401 singular +36403 singular +36405 singular +36407 singular +36409 singular +singular +singular +singular +singular +singular +36417 singular +singular +singular +singular +singular +singular +36424 singular +singular +singular +singular +singular +singular +singular +36432 plural +plural +singular +singular +singular +singular +plural +plural +plural +singular +36443 plural +36445 singular +singular +singular +singular +singular +singular +36452 singular +singular +singular +singular +36457 singular +36459 singular +singular +singular +36464 singular +singular +singular +36468 singular +singular +36471 singular +singular +singular +singular +singular +36477 singular +singular +singular +36482 singular +36485 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +36496 singular +36498 singular +singular +singular +singular +36503 singular +singular +singular +36507 singular +singular +singular +singular +36512 singular +singular +singular +36516 singular +singular +singular +singular +singular +36522 singular +singular +singular +36526 singular +36528 singular +36530 singular +singular +36533 singular +36535 singular +36537 singular +36540 singular +36542 singular +36544 singular +36546 singular +singular +singular +singular +36551 singular +singular +36554 plural +plural +36557 plural +singular +36560 singular +singular +36563 plural +36565 singular +36567 singular +36569 plural +singular +plural +36573 singular +36575 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +36586 singular +singular +singular +singular +36591 singular +36594 singular +singular +36599 plural +plural +plural +singular +36604 singular +singular +plural +singular +36609 singular +singular +36612 singular +plural +36615 singular +plural +singular +36619 singular +36621 plural +plural +plural +36625 plural +36628 singular +plural +36631 singular +singular +singular +singular +36638 singular +36640 plural +singular +plural +36644 singular +singular +36647 singular +36649 singular +36651 singular +36653 singular +36657 plural +36662 singular +singular +plural +36666 plural +36669 plural +36672 plural +36674 plural +plural +plural +36678 singular +singular +singular +singular +singular +36684 plural +plural +plural +plural +36689 singular +36691 plural +36693 plural +plural +36696 plural +plural +plural +36700 plural +36703 singular +singular +singular +singular +plural +plural +plural +36711 singular +36713 singular +36716 plural +36718 singular +singular +36721 plural +36724 plural +36726 singular +singular +36729 plural +36731 singular +singular +plural +plural +singular +36737 singular +singular +singular +singular +singular +36743 singular +singular +singular +36747 singular +singular +plural +36751 singular +36753 singular +36755 plural +plural +plural +plural +singular +plural +plural +36763 singular +plural +singular +36767 singular +36769 singular +singular +singular +36773 plural +plural +plural +plural +singular +36779 singular +plural +singular +plural +36784 singular +singular +singular +singular +36789 plural +singular +singular +plural +singular +36795 singular +singular +singular +36800 plural +plural +36803 plural +singular +singular +singular +singular +36809 plural +36811 plural +singular +plural +36815 plural +plural +36818 plural +singular +36823 singular +singular +plural +36827 singular +36829 plural +plural +plural +36833 plural +36835 plural +plural +36838 plural +plural +singular +36842 plural +36845 plural +36849 plural +plural +plural +36853 singular +singular +singular +singular +plural +36859 plural +36861 plural +plural +36864 singular +36866 plural +plural +singular +plural +plural +plural +36876 plural +36879 plural +plural +36882 singular +plural +36885 plural +36887 plural +36889 plural +singular +36892 singular +singular +singular +plural +36897 singular +36899 singular +plural +plural +36903 singular +singular +36906 plural +36908 plural +plural +36911 singular +singular +singular +plural +plural +plural +36919 singular +36921 singular +36923 singular +singular +36926 plural +plural +singular +plural +plural +36932 singular +plural +singular +singular +singular +36938 plural +plural +plural +36942 plural +plural +plural +singular +singular +singular +36949 plural +singular +36952 plural +36954 singular +singular +plural +plural +singular +36960 singular +plural +36963 plural +singular +singular +36967 plural +36969 singular +singular +singular +singular +singular +singular +singular +36977 singular +singular +plural +singular +singular +36983 singular +singular +36986 singular +singular +singular +singular +singular +plural +36996 plural +plural +36999 plural +37001 plural +37005 singular +singular +singular +37010 singular +37012 plural +37014 singular +singular +37017 singular +37019 singular +singular +37022 singular +singular +singular +singular +37027 singular +37029 singular +singular +37033 singular +singular +singular +singular +singular +37039 singular +singular +37043 singular +singular +singular +singular +singular +37049 singular +singular +singular +singular +37054 singular +singular +singular +singular +singular +singular +singular +37062 singular +singular +37065 singular +37068 singular +singular +singular +37072 plural +plural +plural +singular +singular +singular +singular +singular +singular +37082 singular +37084 singular +singular +singular +37088 singular +singular +37091 plural +plural +plural +37095 singular +plural +37098 plural +plural +plural +37102 plural +plural +37106 plural +singular +37110 plural +singular +singular +singular +singular +37116 singular +37118 plural +plural +plural +37122 plural +37125 singular +singular +37128 singular +37130 singular +singular +37133 singular +singular +37137 singular +37139 singular +37141 singular +singular +singular +singular +singular +singular +singular +37149 singular +singular +singular +singular +singular +37155 singular +plural +37158 plural +singular +plural +plural +singular +37164 singular +plural +plural +37168 singular +plural +singular +singular +singular +singular +37176 singular +singular +37179 singular +singular +37182 plural +37184 singular +plural +plural +singular +37189 plural +plural +singular +singular +singular +37195 plural +37197 plural +plural +plural +singular +37202 singular +37204 singular +37206 plural +37208 singular +singular +singular +singular +37213 singular +singular +singular +singular +singular +plural +37222 plural +plural +plural +singular +singular +37228 singular +singular +37231 singular +singular +37234 singular +singular +singular +37238 plural +singular +singular +singular +singular +37244 singular +plural +37247 plural +37249 singular +37251 plural +37253 singular +singular +37256 singular +singular +37259 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +37273 singular +37275 singular +singular +singular +singular +singular +37281 plural +plural +37284 singular +plural +37287 plural +plural +plural +singular +plural +plural +37294 singular +singular +37297 singular +plural +plural +37301 singular +singular +singular +singular +singular +singular +37308 singular +singular +37311 singular +singular +singular +singular +singular +singular +singular +37320 singular +singular +singular +37324 singular +singular +singular +37328 singular +singular +singular +singular +37334 singular +37336 singular +singular +37339 singular +37342 singular +37344 singular +singular +singular +37348 singular +plural +plural +singular +37353 plural +singular +37357 plural +37359 singular +singular +singular +singular +37364 singular +singular +37367 singular +37370 singular +37372 plural +37374 singular +plural +singular +37378 singular +singular +singular +37383 singular +singular +singular +singular +singular +singular +37390 singular +37392 singular +singular +singular +singular +singular +singular +singular +37400 singular +singular +singular +37404 singular +singular +singular +singular +singular +37410 plural +plural +37413 singular +singular +singular +singular +37418 plural +plural +37421 plural +plural +singular +singular +37426 plural +plural +singular +plural +plural +37432 plural +plural +plural +plural +plural +plural +37439 singular +singular +singular +singular +singular +37446 plural +plural +37449 plural +plural +singular +singular +singular +37455 singular +singular +37458 plural +37461 plural +singular +37464 plural +37466 singular +37468 singular +singular +singular +37472 singular +37474 plural +singular +singular +37478 singular +plural +singular +singular +37483 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +37496 singular +37498 singular +plural +37501 singular +singular +singular +singular +singular +37507 singular +singular +singular +singular +singular +37514 singular +singular +singular +singular +singular +singular +singular +37522 singular +singular +37525 plural +plural +singular +singular +singular +singular +37532 singular +singular +singular +singular +singular +plural +singular +37540 singular +singular +singular +singular +plural +37546 plural +singular +37550 singular +37552 plural +37554 singular +37556 singular +singular +37559 plural +37561 singular +37563 singular +37565 plural +37567 plural +singular +37570 singular +37572 singular +37574 plural +plural +singular +singular +singular +37580 singular +singular +singular +singular +singular +37587 singular +37589 singular +plural +37592 singular +singular +37595 plural +plural +37598 singular +plural +37602 singular +37605 plural +singular +37608 singular +singular +singular +singular +singular +37614 singular +37616 plural +plural +plural +singular +37621 singular +plural +singular +singular +plural +singular +37629 singular +singular +37633 plural +37635 singular +singular +plural +37639 plural +37641 singular +singular +37644 plural +plural +37647 singular +singular +singular +singular +37652 singular +singular +singular +37657 singular +37659 singular +singular +singular +singular +plural +plural +plural +plural +37668 plural +plural +singular +singular +plural +37674 singular +singular +singular +singular +37679 singular +37681 singular +singular +singular +37685 singular +37687 singular +singular +singular +37691 singular +singular +singular +singular +37696 singular +37698 singular +singular +singular +37702 singular +singular +singular +plural +plural +37708 plural +plural +plural +37712 singular +singular +singular +singular +singular +singular +singular +37720 singular +37722 singular +singular +singular +singular +37727 singular +singular +singular +37731 plural +37733 singular +singular +singular +37737 singular +37739 singular +singular +singular +singular +singular +singular +singular +37747 singular +37749 singular +37751 plural +37753 singular +singular +singular +singular +singular +singular +37761 plural +singular +singular +singular +plural +37768 singular +plural +37773 singular +singular +37776 singular +singular +37779 singular +37781 singular +singular +37785 singular +37787 plural +37789 singular +singular +singular +37793 plural +plural +plural +37797 plural +singular +singular +singular +singular +37803 plural +singular +37806 singular +singular +singular +plural +singular +singular +plural +37814 plural +37816 singular +plural +37819 plural +singular +37822 singular +37824 plural +37826 singular +37828 singular +singular +plural +37834 singular +singular +plural +singular +plural +singular +singular +singular +singular +37846 singular +singular +singular +singular +37851 singular +singular +singular +plural +37859 plural +singular +37863 singular +singular +singular +plural +plural +37869 plural +plural +37872 plural +37874 singular +singular +singular +singular +singular +singular +37881 plural +37883 singular +37885 singular +37889 singular +singular +plural +37893 plural +plural +plural +plural +plural +plural +37900 plural +plural +37903 singular +plural +37906 plural +plural +singular +37910 plural +singular +singular +singular +singular +37918 singular +singular +plural +37923 plural +plural +plural +37927 plural +plural +singular +plural +37932 singular +singular +singular +singular +plural +37938 singular +singular +plural +37942 plural +plural +plural +plural +37947 singular +plural +37950 singular +singular +singular +singular +singular +singular +plural +37958 plural +37960 singular +singular +singular +singular +singular +37966 singular +singular +singular +37970 singular +singular +37973 singular +singular +37978 singular +37980 singular +plural +plural +plural +plural +plural +37987 plural +37991 singular +37993 singular +plural +plural +37997 singular +37999 singular +singular +singular +38003 singular +singular +38006 plural +38008 singular +38010 singular +38012 singular +singular +38015 singular +singular +singular +singular +singular +plural +singular +singular +38024 singular +singular +plural +singular +singular +38030 singular +singular +singular +singular +singular +singular +singular +38038 plural +plural +38042 singular +plural +singular +38046 plural +plural +singular +plural +38051 singular +singular +singular +38055 singular +plural +singular +singular +singular +38061 singular +38063 singular +singular +singular +singular +singular +plural +singular +singular +singular +38074 plural +38076 plural +38079 singular +singular +singular +singular +singular +38085 singular +plural +38089 singular +38092 singular +38094 plural +38096 plural +plural +plural +singular +38101 plural +38103 plural +plural +plural +singular +38108 plural +plural +38111 singular +singular +singular +singular +singular +singular +singular +singular +38120 singular +singular +singular +singular +singular +singular +singular +38128 singular +singular +38131 singular +plural +38134 plural +38136 plural +38138 singular +plural +plural +38142 singular +singular +38146 singular +singular +38149 singular +plural +singular +singular +38154 singular +singular +singular +38158 singular +singular +singular +singular +singular +singular +38166 singular +singular +38169 singular +singular +singular +singular +38175 singular +singular +38179 singular +38181 singular +singular +singular +38185 singular +38187 plural +plural +38190 singular +singular +plural +plural +plural +plural +plural +plural +plural +38200 singular +plural +38203 plural +plural +38206 plural +plural +38209 plural +plural +plural +38214 plural +38217 plural +plural +38221 plural +38223 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +38237 singular +singular +38240 singular +38242 singular +singular +singular +singular +38247 singular +38249 singular +singular +singular +singular +singular +singular +singular +singular +38258 singular +singular +singular +singular +38264 singular +singular +singular +singular +38270 singular +singular +singular +singular +38276 singular +singular +singular +singular +38281 singular +38283 singular +38285 singular +38287 singular +singular +38290 singular +singular +singular +38294 singular +38296 singular +singular +38299 singular +singular +38302 singular +singular +38305 singular +singular +singular +38309 singular +singular +singular +singular +singular +singular +singular +38317 singular +38319 singular +38321 plural +singular +plural +38325 plural +singular +38328 plural +plural +plural +plural +singular +38335 singular +singular +singular +singular +38340 singular +singular +singular +38344 singular +singular +singular +38350 singular +38352 singular +singular +singular +38356 singular +singular +38359 singular +singular +singular +singular +38364 singular +38366 singular +singular +38369 singular +singular +plural +plural +singular +singular +singular +38377 singular +38379 singular +singular +38382 singular +singular +singular +singular +singular +38388 singular +38390 singular +singular +38394 singular +38396 singular +38398 plural +singular +singular +singular +38403 singular +singular +singular +38407 singular +38409 singular +singular +singular +38413 singular +38415 singular +singular +singular +singular +singular +singular +plural +plural +plural +38426 singular +singular +38429 plural +plural +38432 singular +singular +singular +singular +singular +singular +38439 singular +38441 singular +singular +singular +singular +singular +38447 singular +singular +38452 singular +38454 plural +singular +singular +38458 singular +singular +38461 singular +singular +singular +singular +singular +singular +38468 singular +singular +38471 singular +singular +singular +singular +singular +singular +38478 singular +38480 plural +plural +singular +singular +singular +singular +singular +singular +38489 singular +singular +singular +38493 singular +singular +38496 singular +singular +singular +38500 singular +singular +38503 singular +singular +singular +singular +singular +38509 singular +38511 singular +singular +38514 singular +singular +38517 singular +singular +singular +singular +singular +singular +singular +singular +38526 singular +38528 plural +38530 plural +singular +singular +38534 singular +38536 singular +singular +singular +singular +singular +singular +38543 singular +singular +38546 singular +38548 singular +38550 singular +singular +38553 singular +singular +38556 singular +singular +singular +plural +plural +singular +38563 singular +singular +singular +plural +38570 singular +singular +plural +plural +singular +38576 singular +plural +38579 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +plural +singular +38599 singular +38601 singular +plural +plural +plural +plural +38608 plural +plural +singular +singular +plural +38615 singular +plural +38618 singular +38620 singular +38622 plural +singular +38625 plural +singular +singular +38629 singular +38631 singular +singular +38634 singular +singular +singular +singular +singular +plural +plural +38642 singular +singular +singular +38646 singular +38648 singular +38651 singular +singular +singular +singular +singular +38657 singular +singular +38660 singular +plural +singular +38664 singular +singular +singular +38668 plural +plural +singular +38672 singular +38674 singular +singular +plural +38678 singular +singular +38681 singular +singular +plural +38687 singular +singular +singular +38691 singular +38693 singular +singular +38697 singular +singular +singular +singular +singular +singular +plural +singular +singular +plural +singular +plural +38710 singular +plural +plural +38714 plural +plural +38717 singular +plural +38720 singular +singular +singular +singular +38725 singular +singular +singular +38729 singular +singular +singular +38733 singular +38735 plural +singular +singular +singular +singular +singular +singular +38744 singular +singular +singular +singular +38750 singular +singular +singular +singular +singular +38757 plural +plural +plural +plural +plural +plural +38764 plural +plural +plural +singular +38769 singular +singular +singular +38773 singular +singular +singular +singular +plural +plural +singular +38781 singular +singular +singular +38785 singular +singular +singular +38789 singular +singular +singular +singular +singular +singular +singular +38797 plural +plural +plural +38801 plural +38803 plural +plural +38806 singular +singular +singular +plural +plural +singular +plural +plural +38815 plural +plural +singular +38819 singular +plural +38822 singular +38824 singular +singular +plural +plural +plural +singular +plural +singular +singular +38834 singular +singular +singular +38838 singular +38840 singular +singular +38845 singular +singular +38848 singular +singular +38851 singular +singular +singular +singular +38856 plural +38858 singular +38860 singular +plural +plural +38865 singular +38867 singular +singular +plural +plural +plural +plural +plural +38875 singular +plural +38878 singular +plural +plural +plural +plural +38886 singular +singular +singular +singular +plural +plural +38893 singular +38895 plural +singular +singular +singular +singular +38901 singular +singular +singular +singular +singular +singular +singular +38909 singular +singular +plural +plural +singular +38916 singular +singular +singular +singular +singular +singular +singular +singular +singular +38926 singular +singular +38929 plural +plural +singular +singular +singular +38935 singular +38937 singular +38939 singular +singular +38942 singular +38944 singular +38946 singular +singular +38949 singular +singular +singular +singular +38954 singular +singular +singular +38958 plural +plural +singular +singular +38964 singular +singular +singular +38968 singular +singular +singular +38972 singular +38974 singular +singular +singular +38978 singular +38980 singular +38982 singular +plural +plural +plural +singular +38989 plural +singular +38993 singular +plural +plural +singular +singular +singular +plural +plural +plural +39003 singular +39005 singular +39007 singular +plural +singular +singular +singular +singular +39014 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +39025 plural +plural +singular +39029 singular +singular +39032 plural +plural +plural +singular +singular +singular +singular +39040 plural +39042 plural +plural +plural +singular +39047 singular +singular +singular +singular +singular +singular +singular +singular +39056 singular +39058 singular +singular +39062 singular +singular +singular +39067 singular +singular +plural +plural +singular +39073 singular +39075 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +39086 singular +singular +39089 plural +plural +singular +singular +singular +39095 singular +plural +39098 singular +39100 plural +plural +singular +singular +39105 singular +singular +singular +39109 singular +singular +singular +39113 plural +plural +plural +39117 singular +singular +39120 singular +singular +singular +39124 plural +singular +39127 plural +39129 singular +singular +singular +39133 singular +singular +singular +39137 singular +singular +singular +39141 singular +singular +39145 singular +singular +39149 singular +singular +39152 plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +39166 singular +singular +singular +singular +singular +39172 singular +singular +singular +singular +singular +singular +39180 singular +singular +39183 singular +singular +singular +singular +39188 singular +39190 singular +singular +singular +39194 singular +singular +singular +39199 singular +singular +singular +singular +singular +39205 singular +singular +singular +singular +singular +singular +singular +39214 singular +singular +singular +singular +singular +singular +39222 singular +39224 singular +singular +singular +39228 singular +39230 singular +39232 singular +singular +39235 singular +singular +singular +singular +39241 singular +singular +39244 singular +singular +39247 singular +singular +singular +39251 singular +39253 plural +plural +plural +singular +39258 singular +singular +39261 singular +singular +plural +39265 singular +39267 plural +singular +singular +39271 singular +plural +39274 singular +singular +singular +39279 singular +39281 singular +39283 plural +plural +plural +singular +39288 singular +plural +plural +plural +singular +39295 plural +plural +plural +39299 plural +singular +singular +39303 singular +singular +39306 singular +singular +39309 plural +singular +singular +39313 singular +singular +singular +singular +39318 singular +plural +39321 plural +39325 plural +plural +plural +39329 plural +singular +singular +39333 plural +plural +39336 plural +plural +39339 plural +plural +39342 plural +39344 plural +39346 plural +plural +plural +plural +39351 plural +plural +plural +plural +39357 plural +39359 singular +singular +plural +plural +singular +singular +singular +plural +singular +39369 plural +singular +39372 singular +singular +39375 plural +plural +plural +39380 plural +plural +plural +plural +plural +39386 plural +singular +plural +plural +plural +39392 plural +plural +plural +39396 plural +39398 plural +plural +plural +plural +plural +39404 plural +plural +plural +plural +plural +39410 plural +plural +39413 plural +plural +plural +plural +plural +plural +39421 plural +plural +plural +39425 plural +plural +39428 singular +39430 singular +singular +singular +singular +singular +singular +39437 plural +plural +39440 plural +39443 plural +plural +39446 plural +39448 singular +singular +singular +plural +plural +plural +singular +singular +39457 singular +singular +39460 singular +singular +singular +39464 singular +singular +39467 singular +singular +singular +singular +39472 singular +singular +39475 singular +singular +39478 singular +plural +singular +39482 singular +singular +singular +39486 plural +plural +plural +39490 plural +singular +singular +singular +singular +plural +39497 plural +39499 plural +plural +plural +39503 singular +singular +plural +plural +plural +39509 plural +plural +39515 singular +39517 plural +plural +singular +39521 singular +39523 singular +singular +singular +39527 plural +plural +plural +plural +singular +singular +39535 plural +singular +39539 plural +plural +singular +singular +plural +plural +39546 singular +singular +singular +singular +singular +plural +plural +39554 singular +singular +singular +singular +39559 singular +39561 singular +singular +39564 singular +39566 plural +plural +39569 singular +singular +plural +39573 singular +singular +singular +39577 singular +39579 singular +singular +plural +39583 plural +plural +singular +39587 plural +plural +39590 singular +plural +plural +plural +singular +39596 plural +39598 plural +plural +singular +singular +39604 plural +39606 plural +singular +singular +39611 singular +plural +singular +plural +plural +singular +39618 singular +39620 singular +singular +39624 singular +singular +39627 singular +plural +singular +plural +39633 plural +plural +plural +39638 singular +39640 plural +39642 singular +singular +39645 singular +singular +39649 plural +plural +singular +singular +plural +plural +plural +39657 plural +plural +plural +plural +39662 singular +plural +singular +39666 singular +singular +39669 singular +39671 plural +plural +39674 singular +singular +singular +singular +singular +39680 singular +39682 plural +plural +singular +singular +39687 singular +singular +singular +39691 plural +plural +singular +39695 plural +plural +singular +singular +39700 singular +singular +singular +singular +39705 singular +singular +singular +singular +singular +singular +39712 singular +39714 singular +singular +singular +singular +39719 singular +39722 plural +plural +39725 plural +plural +39728 plural +plural +39731 plural +plural +39734 plural +39737 singular +plural +39740 singular +plural +39743 singular +singular +singular +singular +plural +39749 singular +singular +singular +plural +39754 singular +39756 singular +singular +39759 singular +singular +singular +singular +singular +singular +singular +singular +39769 singular +singular +singular +39773 singular +singular +singular +singular +singular +singular +singular +singular +39782 singular +39784 plural +39786 singular +39788 plural +plural +39791 plural +39793 singular +singular +39798 singular +39800 singular +singular +singular +singular +singular +39806 plural +plural +singular +39810 singular +singular +39813 plural +singular +singular +singular +singular +singular +singular +singular +39822 singular +39824 singular +singular +singular +singular +39830 singular +39832 singular +plural +plural +singular +39837 singular +singular +singular +singular +singular +plural +plural +39845 plural +singular +39848 singular +39850 singular +singular +singular +39854 plural +plural +singular +39858 singular +singular +singular +singular +singular +singular +plural +plural +plural +39868 plural +plural +singular +singular +singular +singular +39875 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +39888 singular +39890 plural +singular +singular +singular +39895 singular +singular +singular +39901 singular +singular +39904 singular +39906 plural +plural +singular +39910 singular +singular +plural +39914 plural +singular +singular +singular +plural +39920 singular +singular +singular +plural +39925 singular +singular +singular +singular +singular +singular +39932 singular +singular +singular +singular +plural +plural +plural +39941 plural +39943 plural +plural +39946 singular +singular +39949 singular +39951 singular +singular +singular +plural +singular +39957 plural +plural +plural +plural +39962 singular +39964 plural +singular +singular +39968 singular +singular +singular +39972 singular +39976 singular +plural +singular +39980 plural +plural +plural +plural +plural +plural +39988 singular +39990 singular +39992 singular +plural +39995 singular +39997 singular +singular +singular +singular +singular +40003 singular +plural +40008 singular +singular +singular +singular +40016 singular +singular +singular +singular +40021 singular +singular +40024 plural +plural +40027 plural +40029 plural +singular +plural +40033 singular +plural +40037 plural +40039 plural +plural +plural +plural +singular +singular +plural +40047 plural +singular +singular +singular +40052 plural +plural +40055 plural +singular +singular +singular +40060 plural +singular +plural +40064 singular +singular +singular +singular +40069 singular +singular +singular +plural +40074 plural +singular +singular +plural +plural +plural +plural +40082 plural +singular +plural +plural +plural +40088 plural +singular +singular +40092 plural +plural +40095 singular +40097 singular +40099 singular +singular +40103 singular +singular +singular +plural +40109 singular +singular +plural +singular +plural +plural +plural +plural +plural +40119 plural +plural +plural +40123 plural +plural +plural +plural +singular +singular +plural +40131 singular +40133 plural +plural +40136 singular +40138 singular +40140 plural +singular +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +40153 singular +plural +40156 singular +40158 singular +plural +40161 singular +singular +plural +40166 singular +singular +40170 singular +singular +singular +singular +40175 singular +40177 plural +plural +plural +40181 singular +plural +40185 singular +singular +singular +singular +singular +singular +singular +singular +40195 singular +40197 singular +singular +singular +40201 plural +plural +plural +40205 singular +singular +40208 plural +singular +singular +singular +singular +singular +40215 singular +singular +singular +singular +40220 plural +singular +singular +singular +singular +40228 plural +40230 singular +singular +singular +40234 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +40246 singular +singular +singular +singular +40252 singular +singular +singular +singular +singular +singular +singular +singular +singular +40262 singular +singular +singular +singular +singular +40268 singular +plural +40272 plural +plural +plural +singular +singular +singular +40280 singular +singular +singular +singular +40285 singular +singular +singular +singular +singular +singular +singular +40294 singular +40296 plural +plural +40299 plural +plural +40307 singular +singular +singular +singular +singular +singular +40314 singular +singular +40317 singular +40320 singular +singular +40323 singular +40325 singular +singular +40328 singular +singular +singular +40332 plural +plural +singular +40336 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +40348 singular +40350 singular +40352 singular +singular +singular +singular +plural +40358 singular +40360 singular +40362 singular +plural +plural +singular +plural +40368 singular +singular +singular +singular +singular +singular +40375 singular +40377 singular +plural +singular +singular +plural +singular +singular +singular +40387 singular +singular +40390 singular +singular +40394 singular +40396 singular +singular +40401 singular +40403 singular +singular +plural +40407 singular +singular +40411 singular +singular +singular +plural +40418 singular +40420 plural +plural +40423 singular +40427 singular +singular +plural +40431 plural +40435 plural +plural +singular +40439 singular +40441 singular +40443 singular +singular +40446 singular +40448 singular +40450 singular +singular +singular +40454 singular +singular +singular +40458 singular +40460 singular +singular +40463 singular +40465 plural +plural +40468 plural +singular +singular +40472 plural +40474 plural +40476 singular +singular +40479 singular +40483 singular +singular +plural +40487 singular +singular +40490 singular +plural +singular +singular +singular +singular +40497 singular +singular +40500 plural +40502 singular +singular +singular +40507 plural +40509 singular +40512 plural +40514 plural +singular +singular +40519 singular +40521 singular +singular +singular +40525 singular +40527 singular +singular +singular +singular +40533 singular +40536 singular +singular +40539 singular +singular +40542 singular +singular +singular +singular +singular +singular +40549 singular +singular +singular +singular +40554 singular +singular +singular +40559 singular +40563 singular +singular +singular +singular +40568 plural +plural +40571 singular +singular +singular +plural +singular +40577 plural +plural +plural +singular +singular +singular +singular +40585 plural +plural +plural +40589 singular +singular +plural +plural +40594 plural +plural +plural +plural +40599 plural +plural +plural +plural +40604 plural +plural +40607 singular +plural +40612 plural +plural +40615 plural +40617 plural +plural +40622 plural +singular +singular +singular +40627 singular +singular +40630 singular +plural +plural +40634 plural +plural +plural +40638 plural +plural +plural +plural +plural +singular +40645 singular +plural +40650 plural +plural +40653 plural +40655 singular +singular +singular +singular +singular +singular +singular +singular +40664 singular +singular +singular +40668 singular +singular +singular +40672 singular +40675 singular +40677 singular +40679 singular +singular +singular +plural +plural +40685 singular +singular +singular +singular +40690 singular +singular +singular +40695 singular +singular +singular +40699 singular +40701 singular +singular +singular +40705 singular +singular +singular +singular +singular +singular +singular +40713 singular +singular +singular +40717 singular +singular +40720 singular +40722 singular +plural +40726 singular +singular +40729 singular +singular +40734 singular +singular +40737 singular +singular +40740 singular +plural +plural +40744 plural +plural +40747 singular +singular +singular +singular +singular +plural +40756 singular +singular +40760 singular +40763 singular +singular +40766 singular +singular +singular +singular +singular +40772 singular +singular +singular +singular +singular +singular +singular +40780 singular +singular +plural +plural +40786 singular +40788 singular +singular +singular +40792 singular +singular +singular +singular +40797 singular +singular +singular +singular +singular +singular +singular +singular +40807 plural +plural +40810 plural +singular +40815 plural +plural +plural +40820 singular +singular +singular +singular +40825 singular +singular +singular +singular +40830 singular +plural +40833 singular +plural +singular +singular +singular +singular +singular +singular +40842 singular +singular +40845 singular +singular +40848 singular +singular +40851 singular +singular +singular +singular +singular +singular +singular +singular +singular +40863 plural +40866 singular +singular +singular +singular +singular +singular +singular +40874 singular +40876 plural +singular +singular +plural +plural +plural +plural +singular +40885 singular +singular +singular +singular +40890 plural +plural +plural +plural +plural +40896 singular +40898 singular +singular +singular +singular +singular +singular +singular +singular +40907 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +40919 singular +singular +40922 singular +40924 singular +40926 singular +40928 plural +plural +singular +singular +singular +40934 plural +plural +singular +40939 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +40954 singular +plural +plural +40958 singular +singular +singular +40962 singular +40964 plural +40966 plural +singular +40969 singular +singular +40972 plural +40974 singular +singular +singular +singular +40979 plural +plural +plural +40983 singular +singular +40986 plural +plural +40990 singular +singular +singular +40994 singular +plural +plural +plural +41001 plural +41004 singular +singular +singular +singular +41009 singular +singular +singular +41013 plural +41018 singular +singular +plural +singular +singular +plural +41025 singular +singular +plural +41029 singular +plural +41032 plural +41034 plural +41036 plural +41038 singular +41040 plural +41043 plural +plural +plural +singular +41048 singular +singular +plural +41052 singular +41054 plural +plural +41057 singular +plural +plural +singular +41062 singular +singular +singular +41066 singular +singular +plural +plural +41071 plural +singular +41074 singular +41076 singular +41078 plural +plural +plural +41082 singular +singular +singular +singular +41087 plural +plural +41091 plural +41093 plural +41095 plural +41098 singular +41100 singular +41102 plural +41104 singular +singular +singular +singular +41109 singular +plural +plural +plural +plural +plural +41116 plural +plural +plural +plural +plural +41122 singular +singular +singular +plural +plural +plural +plural +singular +singular +41132 singular +41135 singular +singular +singular +41140 singular +plural +plural +plural +singular +singular +singular +singular +singular +plural +41151 plural +singular +41157 singular +singular +singular +41161 singular +singular +41167 singular +singular +41172 singular +singular +41176 singular +singular +singular +singular +singular +plural +plural +41184 singular +plural +plural +41188 singular +41190 singular +41192 plural +plural +singular +singular +singular +singular +singular +singular +singular +41202 plural +plural +41206 plural +singular +singular +plural +singular +singular +plural +41214 singular +plural +41218 plural +singular +41221 singular +41223 plural +singular +singular +singular +41228 singular +singular +41231 singular +41233 singular +41235 singular +41237 singular +singular +plural +plural +plural +plural +singular +41245 singular +41247 plural +plural +plural +singular +41252 singular +singular +singular +singular +singular +41258 singular +41260 singular +singular +singular +singular +41265 plural +plural +41268 plural +singular +singular +singular +singular +41277 plural +plural +41280 singular +singular +singular +41284 singular +41287 plural +singular +singular +plural +singular +41293 singular +41295 singular +singular +41300 singular +singular +41303 singular +singular +singular +41308 plural +41311 plural +41313 singular +41315 plural +plural +singular +singular +41320 plural +plural +plural +singular +41325 plural +41327 singular +41329 singular +41331 plural +41333 singular +41335 singular +singular +41339 singular +singular +singular +singular +41344 singular +41346 singular +singular +singular +41350 singular +singular +singular +singular +singular +singular +singular +41359 singular +41361 singular +singular +singular +singular +41368 singular +singular +singular +41372 singular +singular +singular +41377 singular +singular +singular +singular +singular +singular +singular +singular +singular +41387 singular +singular +singular +41391 plural +plural +plural +singular +41396 singular +singular +singular +singular +singular +41402 singular +singular +singular +singular +41407 singular +41409 singular +singular +singular +41413 singular +singular +41416 singular +41418 singular +plural +plural +singular +41423 plural +plural +singular +41427 plural +plural +singular +41431 plural +plural +41436 plural +plural +singular +41440 singular +singular +singular +41445 singular +singular +singular +plural +plural +plural +plural +41453 singular +singular +41457 plural +41459 singular +41461 singular +singular +41464 singular +singular +plural +plural +41469 singular +plural +plural +singular +plural +singular +singular +singular +singular +singular +singular +41481 singular +singular +singular +singular +41486 singular +singular +singular +singular +singular +singular +singular +singular +41495 singular +plural +41498 singular +singular +singular +singular +singular +singular +singular +singular +41507 plural +plural +plural +41512 plural +singular +41515 plural +41517 singular +plural +41520 singular +singular +singular +singular +singular +singular +41527 singular +singular +singular +41531 singular +singular +singular +singular +singular +singular +41538 singular +singular +plural +plural +41543 singular +41545 singular +41547 plural +singular +singular +singular +singular +singular +41554 singular +singular +singular +singular +41560 singular +41562 singular +41565 singular +singular +singular +singular +singular +singular +singular +plural +41574 singular +singular +singular +singular +singular +singular +singular +singular +41584 plural +plural +41587 plural +singular +singular +41591 plural +plural +41594 plural +41596 plural +41598 plural +singular +41602 singular +singular +singular +singular +singular +singular +singular +41611 singular +singular +41614 singular +singular +singular +41618 singular +singular +singular +41622 plural +plural +41625 plural +41627 singular +41630 singular +singular +singular +singular +41635 singular +plural +41638 singular +plural +plural +plural +plural +plural +singular +singular +singular +singular +41649 plural +singular +plural +plural +41654 singular +singular +41657 plural +41659 singular +singular +41662 singular +41665 singular +singular +singular +singular +41670 singular +singular +41673 singular +singular +41676 plural +plural +41679 plural +plural +41682 plural +plural +41687 singular +singular +singular +41691 singular +41693 singular +singular +singular +41697 singular +singular +singular +singular +41702 singular +41704 singular +41706 singular +41708 singular +singular +41712 singular +41714 plural +singular +singular +41718 singular +singular +singular +singular +singular +41724 singular +41726 singular +41730 singular +singular +singular +41735 singular +41737 plural +plural +plural +plural +singular +41743 plural +41745 singular +singular +singular +singular +41752 singular +41756 singular +singular +singular +singular +singular +41763 singular +singular +singular +singular +41768 singular +singular +41772 plural +41774 singular +41777 plural +singular +41780 singular +41785 singular +41787 singular +singular +singular +singular +plural +41793 singular +41796 singular +41798 plural +singular +41801 singular +plural +plural +singular +plural +41807 singular +41809 singular +singular +41812 singular +singular +singular +41818 singular +singular +singular +41822 singular +singular +41826 singular +41829 singular +singular +singular +41833 plural +singular +singular +singular +plural +41839 singular +41841 plural +plural +singular +plural +plural +plural +41848 plural +plural +41851 singular +41853 plural +41855 plural +plural +41858 plural +plural +plural +41862 singular +plural +singular +41866 singular +plural +41869 singular +41871 plural +singular +singular +singular +singular +singular +singular +41879 plural +singular +41882 plural +41884 singular +41886 plural +singular +41889 singular +plural +41894 singular +singular +41897 singular +41899 singular +singular +41902 singular +singular +41905 singular +singular +41908 plural +plural +singular +singular +41913 singular +41915 singular +singular +singular +plural +plural +41921 plural +plural +singular +plural +plural +singular +41928 singular +singular +singular +singular +singular +singular +singular +plural +41938 singular +41940 singular +singular +singular +41944 singular +singular +singular +41951 plural +plural +41954 singular +singular +plural +41958 singular +singular +plural +41962 singular +41964 singular +singular +singular +41968 singular +singular +41971 singular +singular +singular +41975 singular +41978 singular +singular +41981 singular +singular +plural +plural +41986 plural +singular +plural +singular +41991 singular +singular +singular +singular +singular +41997 singular +plural +singular +singular +42002 plural +plural +singular +singular +42007 singular +singular +singular +42011 singular +singular +singular +singular +42016 plural +42018 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +42033 singular +singular +plural +singular +singular +42041 plural +plural +singular +plural +singular +singular +singular +singular +42050 singular +singular +42054 singular +singular +singular +singular +singular +42061 singular +singular +plural +singular +singular +singular +42068 singular +singular +singular +42072 singular +singular +42076 singular +singular +singular +plural +plural +singular +singular +singular +42085 singular +singular +42088 plural +plural +singular +42092 plural +42094 singular +42096 singular +singular +singular +42100 plural +plural +plural +plural +plural +plural +42107 singular +singular +singular +42112 singular +singular +singular +plural +plural +singular +singular +singular +plural +plural +42123 singular +singular +42126 singular +singular +singular +42130 singular +singular +singular +42134 singular +singular +singular +singular +42139 singular +singular +42143 singular +42145 singular +singular +42148 singular +singular +singular +singular +42153 singular +plural +plural +singular +42158 singular +singular +42161 singular +singular +singular +42166 singular +singular +singular +singular +singular +singular +singular +singular +42175 singular +42177 singular +singular +42180 singular +singular +singular +42184 singular +singular +42187 singular +singular +singular +singular +singular +singular +42194 singular +singular +42198 singular +42200 singular +singular +42203 singular +singular +42206 singular +singular +singular +42210 plural +plural +singular +singular +plural +singular +singular +singular +42219 plural +singular +42222 plural +singular +42225 singular +singular +singular +42229 plural +42231 plural +plural +42234 plural +singular +singular +singular +singular +plural +42241 plural +plural +42244 singular +singular +singular +singular +singular +singular +42251 singular +singular +singular +42255 singular +42257 plural +42260 singular +singular +singular +singular +singular +singular +42267 singular +42270 singular +singular +singular +singular +singular +singular +42277 plural +42279 singular +singular +plural +plural +singular +42285 singular +singular +plural +42289 singular +singular +singular +42293 singular +singular +singular +singular +42298 singular +singular +singular +singular +singular +singular +singular +singular +42307 singular +singular +singular +42311 singular +42314 singular +42317 singular +singular +singular +singular +singular +singular +42324 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +42336 singular +singular +singular +42340 singular +42342 singular +singular +42346 plural +plural +singular +singular +42352 singular +singular +singular +singular +singular +singular +singular +singular +singular +42362 plural +singular +singular +singular +singular +singular +singular +42370 singular +singular +singular +singular +singular +42377 singular +singular +42380 plural +plural +plural +plural +singular +42389 singular +42391 singular +singular +singular +singular +singular +singular +42398 singular +42400 singular +42402 singular +42404 singular +42407 plural +plural +singular +singular +singular +singular +singular +singular +singular +42417 singular +singular +singular +42421 singular +plural +plural +singular +42426 singular +singular +singular +singular +singular +singular +singular +42434 singular +singular +singular +singular +singular +singular +singular +42443 singular +42447 singular +42449 singular +singular +singular +singular +singular +42455 singular +singular +singular +singular +singular +singular +42462 singular +42465 singular +42467 singular +singular +singular +singular +42473 singular +42475 singular +singular +plural +singular +42480 plural +plural +plural +42484 singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +42501 singular +singular +42504 plural +singular +42507 singular +singular +singular +singular +singular +plural +plural +42515 singular +42517 singular +42520 singular +singular +42523 singular +singular +singular +42527 singular +singular +42530 plural +singular +singular +singular +singular +singular +plural +plural +42539 singular +42542 singular +singular +singular +singular +singular +singular +singular +42551 singular +42553 plural +plural +singular +singular +singular +plural +42560 plural +plural +singular +singular +42565 singular +singular +singular +plural +plural +42571 singular +plural +singular +plural +plural +plural +42578 singular +singular +singular +singular +42584 singular +plural +plural +42588 plural +plural +plural +singular +singular +42594 singular +42597 singular +singular +singular +42601 singular +42603 singular +singular +42607 singular +singular +singular +42613 singular +singular +singular +plural +42618 plural +singular +singular +singular +plural +singular +42627 singular +singular +plural +42631 plural +singular +singular +singular +singular +plural +singular +singular +singular +plural +plural +42645 singular +singular +singular +42649 singular +singular +singular +42653 singular +singular +42656 singular +singular +singular +42660 plural +singular +42664 singular +42666 plural +plural +plural +plural +plural +plural +plural +42674 plural +singular +42677 singular +plural +plural +plural +plural +plural +plural +42685 plural +plural +42688 singular +singular +singular +plural +plural +plural +42695 singular +42697 plural +singular +singular +42701 singular +singular +singular +singular +42706 plural +plural +42709 singular +42712 singular +singular +singular +singular +singular +42718 singular +42720 singular +singular +42723 singular +singular +singular +singular +42728 singular +singular +42732 singular +singular +singular +singular +42737 singular +singular +singular +singular +singular +singular +42744 singular +singular +singular +42748 singular +singular +42751 singular +singular +singular +42755 singular +singular +singular +singular +42760 singular +singular +42763 singular +singular +42766 singular +42769 singular +singular +singular +singular +singular +42775 singular +singular +singular +singular +42780 singular +42783 plural +plural +42786 singular +singular +singular +singular +42792 plural +plural +plural +plural +plural +plural +singular +42800 singular +42802 singular +singular +42806 singular +42808 plural +plural +42811 singular +singular +singular +42815 singular +42817 singular +singular +42820 singular +42823 singular +singular +singular +plural +plural +singular +singular +42831 plural +singular +singular +42837 singular +42839 plural +plural +singular +42843 singular +singular +singular +singular +singular +singular +singular +42851 singular +singular +42854 singular +singular +singular +singular +singular +singular +singular +42862 singular +singular +singular +singular +42867 singular +42869 singular +singular +singular +42873 singular +singular +singular +singular +42878 singular +plural +plural +singular +42883 singular +singular +singular +42887 singular +42889 plural +plural +42894 singular +42896 singular +singular +42900 plural +plural +42903 plural +42905 plural +singular +singular +singular +42910 plural +plural +42915 plural +42917 plural +42921 plural +plural +42924 singular +42926 singular +singular +singular +42930 singular +singular +42933 singular +singular +singular +singular +singular +42939 singular +42941 plural +42943 singular +plural +42948 plural +plural +42951 singular +singular +singular +singular +singular +42957 singular +singular +plural +singular +42962 plural +plural +plural +plural +42967 singular +singular +42970 singular +singular +42974 singular +42976 plural +singular +42979 plural +plural +42982 singular +singular +42985 singular +42987 plural +plural +42990 plural +42993 singular +42995 plural +singular +plural +42999 singular +43001 plural +plural +singular +singular +singular +singular +plural +plural +43014 singular +singular +singular +singular +43019 singular +singular +singular +43023 singular +singular +singular +43027 singular +43029 singular +singular +43033 singular +plural +plural +plural +singular +plural +plural +43041 singular +singular +singular +singular +singular +singular +43049 singular +singular +singular +43055 singular +singular +singular +43059 singular +43062 singular +43064 singular +singular +singular +singular +singular +43070 plural +plural +plural +singular +singular +singular +plural +singular +43079 singular +singular +singular +43083 plural +singular +43086 singular +singular +43089 plural +singular +singular +singular +singular +43095 singular +43097 singular +singular +43101 singular +plural +43104 singular +43106 plural +singular +singular +singular +43111 singular +singular +singular +43115 singular +singular +singular +singular +43120 singular +singular +43124 singular +singular +singular +singular +singular +43130 singular +singular +singular +43134 singular +43136 singular +43139 plural +singular +43142 singular +singular +43145 singular +singular +singular +singular +43150 singular +plural +plural +43155 plural +43157 plural +plural +plural +plural +plural +plural +43164 plural +plural +plural +singular +43169 plural +plural +43172 singular +43174 singular +43177 singular +43179 singular +singular +43182 singular +singular +43185 singular +43187 singular +singular +43190 singular +singular +plural +43194 plural +plural +plural +plural +43200 plural +plural +singular +plural +singular +singular +singular +plural +43209 singular +singular +plural +plural +plural +plural +plural +plural +43218 singular +43220 singular +43222 plural +plural +43225 singular +43227 plural +singular +43230 singular +singular +43233 singular +singular +singular +singular +singular +43239 singular +43241 singular +43243 plural +plural +singular +singular +singular +43249 singular +singular +singular +43253 singular +singular +singular +singular +43258 plural +43260 plural +43262 plural +43266 plural +plural +43269 singular +singular +singular +43274 singular +singular +singular +43278 singular +singular +singular +singular +singular +singular +singular +singular +singular +43288 singular +43290 plural +plural +43293 singular +singular +singular +singular +singular +singular +plural +43301 singular +43303 singular +singular +singular +singular +singular +43309 singular +43311 plural +singular +43317 singular +singular +singular +singular +singular +43323 plural +singular +43326 singular +43328 plural +plural +plural +plural +43333 plural +singular +plural +plural +singular +singular +singular +singular +43344 plural +43346 plural +plural +singular +43350 singular +43353 plural +43355 plural +43358 singular +singular +singular +43362 singular +43364 singular +singular +43367 singular +43369 singular +singular +43372 singular +singular +singular +singular +singular +43378 singular +singular +singular +43382 singular +singular +singular +plural +43390 singular +singular +singular +43395 singular +43397 plural +plural +singular +43401 singular +43404 plural +plural +singular +singular +singular +singular +plural +plural +plural +plural +43415 singular +singular +singular +singular +43420 singular +singular +43423 singular +singular +singular +43427 singular +plural +43431 singular +43433 plural +plural +singular +plural +plural +plural +plural +plural +plural +43443 singular +singular +singular +singular +43448 plural +singular +singular +43452 singular +43454 singular +43456 singular +plural +43459 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +43470 singular +singular +singular +singular +singular +43476 singular +singular +43479 plural +plural +singular +43483 singular +singular +43486 singular +43488 plural +43490 singular +43492 singular +43495 singular +43497 plural +43499 plural +singular +singular +singular +43504 singular +singular +singular +singular +singular +43510 singular +singular +43514 singular +singular +singular +singular +singular +plural +singular +singular +singular +plural +43526 singular +singular +singular +singular +singular +43532 singular +singular +singular +plural +plural +43539 singular +singular +singular +singular +singular +43545 singular +singular +singular +43549 plural +plural +singular +43553 singular +43555 singular +singular +plural +43559 singular +singular +43563 plural +plural +plural +43567 singular +singular +plural +43571 singular +43575 plural +43579 singular +singular +singular +singular +43584 singular +singular +singular +singular +43589 singular +43591 singular +43593 singular +43595 singular +singular +43598 singular +singular +singular +43602 singular +43604 singular +singular +singular +singular +43609 singular +singular +singular +43614 singular +43616 singular +43619 plural +singular +43622 singular +43625 singular +singular +43628 singular +43630 singular +singular +43634 singular +43636 singular +singular +singular +singular +singular +singular +singular +43646 singular +singular +singular +singular +43651 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +43664 singular +singular +singular +singular +singular +plural +plural +singular +plural +plural +singular +singular +43677 singular +43679 singular +43681 plural +singular +plural +43685 singular +singular +singular +plural +43690 singular +43692 singular +singular +singular +singular +singular +43698 singular +singular +singular +43702 singular +singular +43705 singular +43708 plural +plural +plural +43712 plural +43714 plural +plural +43717 plural +plural +plural +singular +singular +singular +plural +43725 plural +43727 singular +singular +43730 singular +singular +singular +43734 singular +singular +singular +singular +singular +singular +plural +43742 singular +singular +singular +singular +singular +singular +43750 singular +43752 plural +plural +plural +plural +plural +plural +plural +43762 singular +singular +singular +singular +43767 singular +singular +singular +plural +plural +singular +43774 singular +singular +43777 singular +43779 singular +43781 plural +plural +43785 singular +singular +43788 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +43805 singular +singular +singular +43809 singular +43811 singular +singular +singular +singular +singular +43817 singular +singular +singular +singular +43822 plural +singular +43825 plural +plural +43828 plural +singular +43831 plural +plural +plural +plural +plural +43837 singular +singular +singular +plural +singular +plural +plural +plural +43847 singular +43850 plural +plural +43853 plural +plural +singular +singular +singular +singular +singular +43861 singular +plural +43864 singular +43866 singular +singular +singular +singular +singular +43872 singular +43875 singular +43877 singular +43879 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +43892 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +43904 singular +singular +singular +plural +plural +singular +43911 singular +43913 singular +43915 singular +43917 singular +singular +singular +singular +singular +43923 singular +singular +43926 singular +singular +plural +plural +singular +43932 singular +43934 singular +singular +singular +singular +singular +43940 singular +singular +singular +plural +plural +singular +singular +43948 singular +plural +43951 singular +singular +43954 plural +plural +43957 singular +singular +singular +43961 singular +singular +plural +singular +singular +43967 singular +singular +43971 singular +singular +singular +singular +singular +43978 plural +plural +plural +plural +43983 singular +singular +singular +singular +plural +43989 singular +singular +singular +43993 singular +singular +43997 singular +43999 singular +singular +singular +singular +44005 plural +plural +plural +44009 singular +singular +44013 singular +singular +plural +plural +44018 plural +plural +44021 singular +singular +singular +44025 singular +singular +singular +singular +plural +plural +plural +plural +plural +singular +44036 singular +singular +plural +44040 singular +plural +44043 singular +singular +singular +singular +singular +44049 singular +44051 plural +44053 plural +44055 plural +44057 singular +singular +singular +singular +singular +44064 singular +plural +44067 singular +singular +singular +44072 singular +singular +singular +singular +singular +singular +44079 singular +plural +44082 singular +44084 plural +singular +plural +44088 singular +44090 singular +plural +plural +plural +44095 plural +plural +singular +singular +singular +singular +44102 singular +plural +plural +44106 singular +44108 singular +44110 singular +44112 plural +plural +singular +44116 singular +singular +singular +singular +singular +44122 plural +singular +plural +plural +44127 singular +singular +singular +singular +singular +44133 plural +44136 plural +plural +plural +44140 singular +44142 singular +44144 singular +44146 singular +singular +singular +singular +44151 singular +singular +singular +44155 singular +singular +singular +singular +singular +singular +singular +44163 plural +singular +44166 singular +singular +singular +singular +44171 singular +singular +singular +singular +singular +singular +singular +44179 plural +plural +plural +singular +44184 singular +44186 singular +singular +44189 singular +singular +singular +singular +singular +44195 singular +singular +singular +singular +singular +44202 singular +44204 singular +singular +singular +singular +singular +singular +singular +singular +44213 singular +singular +singular +44217 singular +44219 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +44231 singular +44233 singular +singular +singular +singular +singular +44239 singular +singular +singular +singular +singular +singular +singular +singular +44248 singular +singular +singular +singular +44253 singular +singular +singular +singular +singular +44259 singular +singular +singular +44263 singular +singular +44266 singular +44268 singular +singular +singular +singular +44274 singular +44276 singular +singular +44279 singular +singular +singular +singular +44284 singular +44286 singular +44288 singular +44290 singular +44292 singular +singular +44295 singular +44297 singular +44300 singular +44302 singular +singular +singular +singular +singular +singular +44309 singular +singular +singular +singular +44316 singular +singular +singular +singular +44321 singular +44323 singular +singular +44326 singular +singular +singular +44330 plural +plural +plural +plural +44336 singular +singular +singular +44341 singular +singular +singular +44345 singular +singular +singular +singular +plural +plural +singular +plural +plural +plural +plural +singular +44359 singular +singular +singular +singular +singular +44365 singular +44367 singular +singular +singular +44372 singular +singular +singular +singular +singular +44379 singular +singular +singular +singular +44384 singular +singular +singular +singular +singular +44392 singular +singular +44395 plural +plural +plural +singular +singular +singular +44402 singular +44405 singular +singular +44409 plural +44412 singular +singular +singular +singular +singular +44419 singular +singular +singular +singular +singular +44425 singular +singular +44428 singular +singular +44433 singular +44435 plural +singular +singular +plural +44440 plural +44442 singular +44444 plural +plural +44447 singular +singular +44450 plural +plural +singular +plural +singular +44456 plural +singular +44459 singular +plural +44462 plural +singular +44466 plural +44468 singular +44470 singular +44472 singular +singular +singular +singular +44477 singular +44479 singular +plural +plural +plural +plural +singular +singular +singular +44488 singular +singular +singular +singular +44493 singular +singular +singular +singular +singular +singular +singular +singular +44502 plural +singular +44505 singular +singular +44508 singular +singular +44512 singular +singular +singular +singular +singular +singular +44520 plural +44522 singular +singular +singular +singular +singular +singular +singular +singular +singular +44532 plural +44534 singular +44536 singular +44538 singular +44541 plural +singular +44544 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +44557 singular +44559 singular +singular +44562 singular +singular +singular +singular +singular +44568 singular +44570 singular +singular +44573 singular +singular +singular +44577 singular +singular +singular +singular +singular +singular +singular +singular +44586 singular +singular +singular +singular +singular +singular +44593 singular +44595 singular +singular +44598 singular +44601 singular +44603 singular +singular +singular +singular +44608 singular +44610 singular +singular +44613 singular +singular +singular +44617 plural +plural +singular +plural +44622 singular +singular +singular +44626 plural +singular +plural +44630 plural +singular +44633 plural +singular +singular +singular +44638 plural +singular +plural +44642 singular +singular +singular +singular +44648 singular +44650 singular +44652 singular +singular +singular +44656 plural +plural +singular +plural +plural +44662 plural +singular +44666 plural +plural +44670 plural +plural +44673 singular +44675 singular +plural +singular +44679 singular +44681 plural +44683 singular +44685 singular +44687 singular +44689 singular +44691 singular +singular +singular +singular +plural +singular +44698 plural +plural +singular +plural +44703 singular +44705 singular +44707 singular +plural +plural +singular +singular +44713 singular +singular +plural +44717 singular +44719 plural +singular +plural +44724 singular +plural +singular +44728 singular +plural +44731 plural +44733 singular +singular +singular +singular +singular +44739 plural +plural +plural +plural +44744 singular +plural +44747 plural +plural +singular +singular +plural +plural +plural +singular +44756 plural +singular +plural +singular +singular +44762 plural +plural +44765 singular +singular +singular +singular +singular +44771 plural +singular +44774 singular +singular +44777 plural +plural +plural +plural +44782 singular +singular +plural +singular +singular +44788 singular +singular +plural +plural +plural +plural +44795 singular +singular +44798 singular +singular +44802 singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +plural +plural +plural +44816 singular +singular +singular +singular +44821 plural +plural +plural +plural +plural +singular +singular +singular +44830 singular +singular +singular +singular +44835 singular +singular +44838 singular +44840 plural +44842 plural +plural +plural +44846 singular +singular +plural +44850 singular +singular +singular +plural +plural +singular +44857 singular +singular +singular +plural +44862 plural +plural +plural +plural +plural +44869 singular +singular +singular +singular +singular +44875 singular +singular +44879 singular +44881 singular +singular +singular +44885 singular +plural +44888 singular +44891 singular +44893 plural +singular +44896 plural +plural +44899 singular +44901 plural +plural +plural +singular +singular +singular +44908 plural +singular +44911 plural +singular +44915 plural +singular +44918 plural +plural +singular +44922 singular +44925 plural +singular +44928 singular +44930 singular +44932 plural +44934 singular +singular +singular +singular +singular +singular +44941 singular +44943 singular +singular +singular +44947 plural +plural +singular +plural +singular +44953 singular +singular +singular +singular +singular +singular +44960 plural +singular +plural +singular +plural +44966 singular +singular +singular +44970 singular +44972 singular +singular +44975 plural +plural +44978 plural +plural +plural +singular +44984 plural +plural +singular +singular +44990 singular +singular +singular +plural +44995 singular +singular +singular +singular +singular +singular +45002 singular +45004 singular +plural +plural +singular +singular +singular +singular +45012 singular +singular +45015 singular +plural +plural +plural +45020 plural +plural +45023 plural +plural +45026 plural +plural +45029 singular +singular +plural +45033 singular +singular +plural +singular +45038 singular +singular +singular +singular +singular +singular +singular +singular +45047 singular +singular +45050 plural +singular +plural +singular +singular +45056 plural +singular +singular +singular +singular +45062 singular +singular +45066 plural +45068 plural +plural +45071 plural +plural +45075 plural +45077 singular +singular +45080 singular +45082 plural +singular +45086 plural +45088 plural +singular +singular +singular +singular +plural +45095 singular +singular +singular +singular +45101 plural +45106 singular +singular +singular +plural +45111 singular +singular +plural +45115 singular +singular +plural +singular +45120 singular +45122 singular +singular +45125 singular +singular +singular +singular +singular +singular +45132 singular +singular +plural +45136 singular +plural +plural +45140 singular +singular +45143 plural +plural +singular +45148 singular +singular +singular +singular +plural +singular +45155 plural +plural +plural +singular +plural +singular +45162 singular +singular +singular +45167 plural +singular +plural +45171 plural +plural +singular +45175 singular +singular +45179 plural +45181 singular +plural +plural +45185 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +45199 singular +plural +45202 plural +singular +plural +plural +plural +45208 plural +plural +singular +singular +singular +singular +plural +singular +45217 plural +singular +singular +singular +45222 plural +singular +45225 singular +singular +plural +45229 singular +singular +plural +singular +singular +singular +singular +singular +45238 singular +plural +plural +plural +45243 singular +singular +singular +plural +45248 plural +plural +45251 singular +45253 singular +singular +plural +singular +45258 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +45271 singular +singular +singular +singular +singular +45277 singular +singular +singular +singular +45284 singular +singular +singular +singular +45289 plural +plural +plural +45293 plural +plural +45297 singular +plural +plural +45301 singular +singular +singular +45305 plural +singular +singular +45309 plural +45312 plural +singular +singular +singular +singular +45318 plural +plural +plural +plural +plural +plural +45326 plural +singular +singular +45331 singular +singular +singular +45335 singular +singular +singular +singular +45340 plural +singular +plural +singular +plural +45347 singular +45349 singular +45352 singular +singular +45356 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +45370 singular +plural +singular +singular +singular +45376 plural +plural +singular +singular +singular +singular +singular +45384 singular +45386 plural +plural +singular +45390 singular +singular +45393 plural +45395 plural +plural +singular +singular +45400 plural +singular +singular +singular +singular +45407 plural +45409 singular +singular +45412 singular +singular +45415 plural +45417 singular +singular +singular +plural +45422 plural +plural +plural +plural +plural +plural +singular +45431 plural +singular +plural +singular +singular +singular +plural +45439 singular +singular +singular +singular +singular +45445 singular +singular +singular +45449 singular +singular +singular +singular +singular +singular +45456 singular +singular +singular +singular +singular +45463 plural +plural +45466 singular +singular +singular +singular +singular +singular +45473 singular +singular +45476 singular +singular +singular +singular +45483 plural +45486 plural +plural +45489 plural +singular +45492 singular +singular +singular +45496 singular +singular +45499 singular +singular +singular +plural +singular +singular +45506 plural +45508 plural +singular +singular +45512 singular +plural +singular +singular +plural +plural +singular +singular +singular +plural +45523 plural +45525 plural +plural +singular +singular +singular +45532 singular +singular +singular +45536 plural +45538 plural +45540 plural +45545 plural +45547 plural +plural +45550 plural +singular +plural +singular +singular +plural +plural +45559 plural +plural +plural +45563 singular +singular +45566 singular +singular +45569 singular +singular +singular +singular +singular +45575 singular +singular +45578 singular +singular +45581 singular +45583 singular +plural +45586 plural +45588 plural +singular +plural +45592 plural +plural +plural +plural +plural +singular +45599 singular +45602 plural +45604 singular +singular +45607 singular +45609 plural +45611 plural +singular +singular +45615 singular +singular +45618 singular +singular +singular +45622 singular +plural +singular +singular +singular +singular +singular +singular +45631 plural +singular +45635 singular +plural +plural +singular +singular +plural +plural +singular +45644 singular +singular +singular +singular +45650 singular +singular +singular +45654 singular +singular +singular +singular +singular +plural +plural +plural +45663 plural +plural +plural +plural +45669 plural +45671 plural +plural +45674 plural +plural +45677 plural +45679 plural +plural +45682 plural +45684 plural +plural +plural +plural +plural +plural +plural +plural +45693 singular +plural +plural +plural +plural +singular +singular +45701 singular +singular +plural +plural +45706 singular +singular +plural +plural +plural +plural +45713 singular +singular +singular +singular +singular +45719 plural +45722 singular +45724 singular +plural +45727 singular +singular +singular +singular +singular +singular +plural +singular +45736 plural +plural +45739 singular +singular +plural +plural +45744 plural +plural +45747 singular +45749 singular +singular +singular +singular +singular +singular +singular +singular +singular +45759 plural +plural +45762 singular +singular +45765 plural +plural +45768 plural +singular +singular +plural +plural +plural +plural +plural +45777 plural +45779 singular +45781 singular +singular +singular +45785 singular +45787 plural +singular +plural +singular +45793 plural +singular +45796 singular +singular +singular +45800 singular +plural +45804 singular +singular +plural +45808 plural +45810 plural +plural +45813 singular +singular +singular +plural +singular +singular +45820 singular +singular +singular +45824 plural +45826 plural +45829 plural +plural +45832 plural +45834 plural +45836 singular +plural +45839 singular +45843 singular +singular +45846 singular +plural +singular +singular +45851 singular +45853 singular +45855 singular +45857 plural +plural +45861 plural +plural +45864 plural +plural +45867 plural +45870 singular +plural +plural +singular +45876 plural +plural +plural +45880 plural +plural +plural +plural +45885 plural +plural +45888 plural +plural +45891 plural +plural +45894 plural +45896 plural +45898 singular +singular +singular +singular +plural +45904 singular +45906 plural +45908 plural +plural +plural +45915 singular +singular +plural +singular +45920 singular +singular +45923 plural +45927 plural +plural +plural +plural +45932 plural +45935 plural +45937 plural +45939 plural +45941 plural +45943 plural +45945 plural +45947 plural +plural +45950 plural +45952 singular +singular +singular +45956 singular +45958 singular +singular +plural +45963 singular +45965 singular +singular +plural +plural +plural +plural +plural +45974 plural +singular +45977 plural +singular +45980 plural +45982 singular +singular +singular +singular +45987 plural +45989 singular +singular +plural +45993 plural +plural +45996 plural +45998 singular +singular +plural +46002 plural +46004 plural +plural +46007 plural +46009 singular +46011 plural +singular +plural +plural +singular +46017 plural +plural +plural +46021 plural +46023 singular +plural +46026 plural +plural +46029 plural +plural +plural +46033 singular +singular +singular +46037 singular +singular +46040 singular +singular +singular +singular +46045 plural +singular +singular +46049 plural +46051 plural +plural +plural +46055 singular +singular +singular +46059 plural +46061 singular +plural +plural +plural +46066 plural +plural +46069 singular +46071 singular +46073 plural +46076 singular +singular +singular +plural +46081 singular +singular +singular +46085 singular +plural +plural +46089 singular +46091 singular +plural +plural +singular +singular +46097 plural +plural +plural +plural +plural +46104 plural +singular +singular +singular +singular +singular +46111 singular +46113 singular +46115 singular +singular +46118 plural +plural +46121 plural +46123 plural +plural +plural +plural +46128 singular +singular +singular +plural +46133 singular +singular +plural +plural +singular +singular +46140 plural +plural +plural +46144 plural +46146 plural +46148 plural +plural +46153 singular +singular +singular +46158 plural +46160 plural +plural +plural +plural +46166 singular +singular +singular +singular +singular +46172 singular +plural +46177 singular +singular +singular +singular +46183 plural +singular +singular +singular +46188 singular +singular +plural +46192 plural +plural +singular +46197 plural +46199 plural +plural +46203 plural +plural +plural +plural +46208 singular +46210 singular +46212 plural +plural +46215 singular +46217 plural +singular +singular +singular +singular +46223 singular +46225 singular +46227 plural +plural +plural +46231 singular +singular +singular +singular +46236 plural +46238 singular +singular +plural +46242 plural +46244 plural +plural +plural +plural +46252 singular +singular +singular +singular +46257 singular +singular +plural +plural +46262 singular +singular +46265 plural +plural +singular +singular +46270 singular +singular +singular +singular +plural +46276 singular +singular +singular +singular +46281 singular +46283 singular +singular +46286 singular +46288 singular +singular +singular +plural +plural +singular +singular +singular +46297 plural +plural +plural +46301 plural +plural +singular +46305 plural +singular +46308 plural +singular +singular +46312 singular +singular +46315 singular +singular +singular +singular +singular +46321 singular +singular +plural +46326 singular +singular +plural +plural +46331 plural +singular +46334 plural +singular +singular +46338 plural +46340 plural +singular +singular +46345 singular +46347 singular +singular +singular +46351 singular +46353 singular +plural +46356 singular +singular +singular +plural +plural +singular +singular +46364 singular +singular +46367 singular +singular +46370 singular +singular +plural +plural +plural +singular +singular +46378 plural +46380 plural +plural +singular +singular +46385 plural +46387 singular +singular +plural +singular +plural +plural +46394 singular +singular +singular +plural +singular +singular +singular +singular +plural +singular +46405 singular +singular +46408 singular +singular +46411 plural +singular +singular +singular +singular +singular +singular +singular +singular +46421 singular +singular +singular +46425 singular +singular +46428 plural +plural +singular +singular +singular +plural +singular +singular +singular +singular +46439 plural +46441 plural +plural +46444 singular +plural +46447 plural +singular +singular +46452 singular +singular +singular +singular +46457 plural +plural +46460 singular +46462 singular +46464 plural +singular +singular +singular +singular +singular +46472 plural +46474 singular +singular +46478 singular +plural +46484 singular +singular +46487 singular +singular +46490 singular +singular +singular +singular +46495 singular +singular +singular +singular +plural +singular +46502 plural +46504 plural +46506 singular +plural +46510 singular +46512 singular +46515 singular +singular +singular +singular +46520 singular +singular +singular +singular +singular +singular +46527 singular +singular +singular +singular +46532 singular +plural +singular +singular +singular +singular +singular +singular +singular +46542 plural +singular +singular +plural +46547 singular +singular +singular +46551 singular +singular +46555 singular +46557 singular +singular +singular +singular +46562 singular +singular +singular +singular +singular +singular +singular +46570 plural +singular +46573 singular +singular +singular +singular +singular +singular +46580 singular +46582 singular +singular +46586 singular +singular +singular +singular +46591 singular +singular +singular +46596 singular +singular +singular +46600 singular +singular +46603 plural +plural +46607 plural +singular +46610 singular +singular +46613 plural +singular +singular +46617 singular +46619 singular +46621 plural +46623 singular +singular +singular +plural +singular +46629 singular +46631 singular +singular +plural +plural +plural +plural +plural +plural +plural +46641 plural +plural +plural +plural +plural +46647 plural +46651 singular +singular +46654 plural +singular +46657 singular +singular +46660 singular +singular +46663 singular +singular +46666 singular +singular +singular +singular +46671 singular +singular +46674 singular +singular +46677 singular +46679 singular +plural +singular +46683 singular +singular +46686 plural +plural +plural +plural +46691 singular +46693 plural +plural +singular +singular +singular +plural +46700 singular +singular +singular +singular +singular +singular +46707 plural +46709 plural +46711 singular +singular +singular +46715 singular +singular +singular +46719 plural +46721 plural +plural +46724 plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +plural +singular +46738 singular +singular +46741 singular +singular +46744 singular +46747 singular +singular +singular +singular +46752 singular +46754 singular +singular +plural +plural +singular +46760 singular +singular +singular +singular +46765 singular +singular +singular +46770 singular +46773 singular +46776 singular +singular +singular +singular +singular +46782 singular +46784 singular +46787 singular +46790 singular +46792 singular +plural +46795 singular +plural +46798 singular +46800 singular +46802 plural +46804 singular +plural +46807 plural +plural +singular +46811 singular +plural +46815 singular +singular +singular +singular +46821 singular +46823 singular +46825 singular +singular +singular +singular +singular +46831 singular +singular +46834 singular +plural +46837 singular +singular +singular +singular +singular +46844 plural +singular +46848 singular +46851 singular +46853 singular +singular +singular +46857 plural +plural +singular +singular +plural +46865 singular +singular +plural +singular +singular +46871 singular +singular +46874 singular +singular +46877 singular +singular +plural +plural +46882 plural +singular +46885 plural +plural +46888 singular +46890 singular +singular +singular +plural +plural +46898 singular +46900 singular +singular +46903 plural +46905 singular +singular +46908 singular +plural +plural +singular +singular +singular +46915 singular +singular +singular +singular +singular +46921 singular +46924 singular +singular +singular +46928 singular +singular +singular +46932 singular +singular +singular +46936 singular +singular +singular +46940 singular +46942 singular +singular +singular +46946 singular +singular +singular +singular +46951 plural +singular +plural +46955 singular +singular +46958 singular +46960 singular +singular +singular +46964 plural +plural +singular +plural +plural +46970 singular +singular +46973 singular +plural +singular +plural +plural +plural +46981 plural +46983 singular +46985 singular +singular +singular +singular +46990 singular +singular +singular +singular +plural +46996 singular +plural +46999 singular +singular +singular +47003 singular +47005 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +47016 plural +47018 singular +plural +singular +singular +plural +singular +47025 plural +47027 singular +47029 singular +singular +singular +47033 plural +singular +singular +singular +singular +47039 singular +singular +singular +singular +singular +singular +47046 singular +singular +singular +singular +plural +47052 singular +47054 singular +singular +singular +singular +singular +47060 singular +singular +47063 plural +plural +47066 singular +plural +47069 plural +singular +singular +47073 plural +47076 singular +plural +47079 plural +47081 plural +47083 singular +singular +singular +47087 plural +47089 singular +singular +47092 plural +plural +plural +47096 singular +47098 singular +singular +plural +singular +singular +47104 singular +singular +singular +singular +47109 plural +singular +plural +47113 plural +47115 singular +singular +singular +singular +47120 singular +singular +singular +47125 plural +singular +47128 singular +singular +singular +47132 plural +singular +singular +singular +singular +plural +47139 singular +singular +singular +singular +singular +47145 singular +singular +47148 singular +singular +singular +47152 singular +47154 singular +singular +47157 singular +singular +singular +47161 singular +singular +singular +47166 singular +singular +singular +singular +singular +47172 singular +47174 plural +singular +47177 singular +singular +singular +singular +47182 singular +47184 singular +47186 singular +singular +singular +singular +singular +singular +47193 singular +47195 singular +47197 singular +singular +47201 singular +singular +47204 singular +singular +singular +singular +47209 singular +singular +singular +47215 singular +singular +singular +singular +47220 singular +singular +singular +singular +singular +singular +47227 singular +singular +singular +singular +singular +singular +singular +47235 singular +singular +47239 singular +47242 singular +singular +47246 singular +47248 singular +47251 plural +plural +plural +plural +singular +plural +singular +plural +47260 plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +47271 plural +plural +plural +plural +47276 singular +47279 singular +singular +singular +singular +singular +singular +singular +47287 plural +47289 plural +47291 plural +singular +47294 singular +singular +plural +plural +47299 singular +singular +singular +singular +singular +plural +47306 singular +plural +47309 plural +singular +47313 plural +47316 singular +47319 plural +47322 singular +47324 singular +singular +singular +singular +singular +singular +47331 plural +singular +singular +singular +singular +47337 plural +plural +47340 singular +singular +singular +singular +singular +singular +47347 singular +47349 plural +singular +plural +plural +47354 singular +singular +47357 plural +plural +singular +47361 plural +singular +singular +47365 plural +plural +47368 singular +singular +singular +47372 singular +singular +singular +singular +plural +plural +singular +47380 singular +singular +47383 plural +47385 singular +plural +plural +singular +singular +singular +singular +plural +47394 singular +plural +singular +47399 singular +singular +singular +singular +47405 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +47417 singular +singular +singular +singular +singular +singular +47424 singular +singular +singular +47428 plural +plural +47431 plural +plural +singular +singular +singular +47437 singular +singular +singular +47441 plural +plural +plural +47445 singular +singular +singular +singular +47450 singular +singular +singular +47454 singular +47456 singular +singular +47461 singular +singular +singular +47465 singular +singular +singular +singular +47470 singular +47473 singular +singular +singular +singular +singular +singular +47480 singular +singular +47483 singular +47485 plural +47487 plural +plural +plural +47491 singular +singular +singular +singular +singular +singular +47499 singular +singular +47502 plural +plural +47505 singular +47507 singular +47510 singular +47512 singular +47514 singular +singular +47517 singular +singular +47520 singular +singular +47523 plural +plural +47526 singular +singular +singular +singular +47531 plural +plural +plural +47535 plural +plural +47538 plural +singular +47541 singular +singular +singular +singular +47546 plural +plural +singular +47550 singular +singular +singular +singular +singular +singular +singular +singular +47559 plural +plural +47562 singular +singular +47565 singular +singular +47568 singular +singular +singular +47572 plural +47574 plural +47576 singular +plural +47579 plural +47581 singular +singular +plural +plural +47586 plural +plural +47589 singular +singular +singular +47593 plural +plural +singular +singular +singular +singular +47600 singular +singular +singular +47604 singular +singular +47607 plural +singular +singular +singular +47612 singular +singular +singular +singular +plural +plural +47619 singular +47622 singular +47624 singular +singular +47627 plural +47629 singular +singular +singular +singular +singular +singular +singular +47637 singular +singular +singular +47641 plural +47643 plural +singular +singular +47647 singular +plural +singular +singular +singular +singular +singular +47655 singular +singular +singular +47659 singular +singular +47662 singular +47664 singular +singular +47668 singular +singular +singular +plural +singular +47674 singular +singular +47677 plural +plural +plural +singular +singular +singular +47684 singular +singular +singular +47688 plural +47690 singular +singular +singular +singular +singular +singular +singular +singular +47699 singular +47701 singular +singular +singular +47705 plural +plural +plural +plural +plural +singular +47713 plural +plural +plural +plural +47718 singular +singular +47721 singular +singular +plural +47725 singular +singular +47728 singular +47730 singular +singular +47733 singular +singular +plural +47737 singular +singular +singular +singular +singular +plural +47745 plural +singular +plural +singular +singular +singular +singular +47753 singular +plural +singular +singular +singular +47760 singular +singular +47763 singular +singular +singular +singular +singular +singular +47770 plural +plural +plural +47774 plural +singular +47777 singular +47779 plural +singular +singular +plural +singular +47785 plural +47787 singular +47790 plural +plural +47794 plural +plural +plural +47798 singular +plural +plural +47802 plural +plural +plural +plural +plural +47808 plural +plural +plural +47812 plural +47814 plural +plural +47817 plural +47819 plural +47821 plural +plural +plural +47825 plural +47827 plural +plural +plural +plural +47834 singular +singular +plural +plural +47839 singular +singular +singular +singular +47844 plural +47846 plural +plural +47850 singular +47854 plural +47856 singular +singular +singular +singular +singular +47862 plural +singular +47865 plural +plural +47868 singular +47870 plural +47872 singular +47874 plural +47876 singular +singular +singular +singular +singular +plural +47884 plural +singular +plural +47888 plural +plural +plural +singular +plural +plural +47895 singular +singular +singular +singular +47900 plural +47902 plural +plural +plural +plural +singular +singular +singular +47910 singular +singular +singular +singular +singular +singular +singular +singular +47919 plural +singular +47922 plural +plural +plural +singular +plural +singular +47929 plural +47931 singular +singular +singular +singular +plural +plural +singular +singular +47940 singular +47942 singular +47944 singular +singular +singular +plural +plural +singular +47951 singular +plural +plural +plural +singular +singular +47958 singular +singular +singular +singular +singular +singular +47965 plural +47967 singular +singular +singular +singular +singular +singular +47974 singular +singular +singular +singular +47980 singular +singular +singular +singular +47986 plural +47989 plural +plural +plural +plural +47994 singular +singular +singular +singular +47999 singular +singular +singular +singular +48004 singular +48006 singular +singular +singular +48010 singular +singular +48013 singular +singular +48017 singular +singular +48020 singular +singular +48023 singular +48026 singular +singular +48029 singular +singular +48032 singular +singular +singular +48036 singular +singular +singular +singular +singular +48042 singular +singular +singular +singular +singular +singular +48049 singular +singular +singular +singular +singular +singular +singular +48057 plural +singular +singular +singular +singular +singular +48064 singular +singular +singular +48068 singular +singular +singular +singular +singular +singular +singular +singular +singular +48078 singular +singular +singular +singular +singular +48084 plural +plural +plural +48088 singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +48100 plural +48103 plural +plural +plural +singular +48108 plural +plural +plural +singular +48113 singular +singular +plural +plural +48118 singular +singular +singular +singular +singular +singular +singular +singular +48127 singular +singular +48130 singular +singular +singular +singular +48135 singular +singular +plural +48139 singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +48159 singular +singular +singular +singular +48164 singular +singular +48167 singular +singular +48171 singular +singular +singular +48176 singular +singular +singular +48180 singular +singular +48183 plural +plural +plural +plural +plural +plural +48190 singular +singular +singular +plural +singular +singular +48198 singular +singular +singular +singular +48203 plural +plural +plural +48207 plural +48210 singular +singular +plural +48214 singular +singular +48217 singular +singular +plural +plural +singular +singular +48224 singular +singular +plural +plural +plural +plural +plural +48232 plural +singular +singular +singular +48237 singular +singular +48240 plural +48242 plural +singular +singular +singular +singular +singular +48249 singular +48251 singular +48253 plural +48255 singular +48257 singular +plural +48260 plural +plural +48263 singular +singular +48266 plural +plural +plural +48270 plural +plural +plural +48274 singular +singular +plural +48278 plural +singular +plural +singular +singular +48284 plural +plural +48287 singular +48290 singular +plural +48293 singular +plural +48296 singular +48298 singular +singular +singular +48302 singular +singular +singular +singular +singular +48309 plural +plural +plural +48315 singular +singular +singular +48320 plural +plural +plural +singular +48325 plural +48327 singular +singular +plural +plural +plural +plural +48335 plural +plural +plural +48339 plural +singular +singular +singular +48344 singular +48346 singular +singular +singular +48350 plural +plural +48353 plural +plural +48356 plural +plural +plural +48360 plural +48362 plural +48364 singular +plural +plural +plural +48369 plural +plural +48372 singular +singular +singular +singular +48377 singular +singular +48380 singular +singular +plural +plural +plural +48386 singular +48388 singular +singular +singular +singular +48393 singular +48396 plural +48398 singular +singular +singular +plural +plural +48404 singular +singular +plural +48409 singular +singular +singular +singular +48414 plural +plural +48417 plural +48419 plural +plural +plural +plural +48424 singular +48426 singular +48428 plural +48432 singular +singular +singular +singular +plural +48438 plural +plural +plural +plural +singular +48445 singular +48447 singular +48449 plural +plural +plural +plural +plural +plural +plural +48457 plural +plural +48460 plural +plural +48463 singular +singular +singular +singular +singular +48469 singular +singular +singular +singular +singular +48476 singular +plural +plural +48480 singular +48482 plural +plural +plural +48486 singular +plural +plural +48490 plural +plural +singular +plural +48495 singular +singular +singular +singular +singular +singular +singular +singular +48504 singular +48506 singular +48508 singular +singular +48511 singular +singular +singular +48516 plural +singular +plural +plural +48521 plural +plural +plural +48525 singular +singular +48528 plural +singular +48531 plural +plural +48534 singular +singular +singular +singular +48539 singular +singular +48545 plural +plural +singular +singular +singular +singular +48552 singular +plural +singular +48557 plural +plural +48560 plural +plural +plural +plural +plural +48566 singular +singular +48570 plural +singular +singular +singular +plural +plural +48577 singular +plural +48580 plural +plural +singular +48585 plural +plural +plural +48589 plural +48591 singular +singular +48594 plural +48598 plural +plural +plural +48602 singular +48604 plural +48606 singular +singular +48609 plural +48611 plural +48613 plural +singular +singular +singular +48619 plural +plural +plural +plural +plural +48625 singular +plural +48628 singular +singular +48633 singular +singular +singular +48637 singular +48639 singular +48642 plural +plural +plural +singular +plural +48648 plural +plural +plural +plural +48653 singular +48655 plural +48657 singular +singular +48660 plural +48662 singular +singular +48667 plural +singular +plural +singular +48672 plural +48675 singular +singular +48678 singular +48680 singular +singular +48683 singular +singular +48687 plural +48689 singular +48691 singular +48693 singular +48695 plural +singular +singular +singular +singular +48701 singular +singular +plural +48705 plural +plural +plural +plural +48710 plural +singular +48713 singular +singular +singular +48717 plural +48719 plural +48721 plural +48723 singular +singular +plural +singular +singular +48729 plural +48731 singular +plural +48734 singular +singular +48737 singular +plural +plural +plural +48742 plural +singular +singular +singular +plural +48748 singular +48750 plural +plural +plural +48755 plural +48757 plural +plural +48761 singular +singular +singular +48765 singular +singular +48768 plural +plural +plural +48772 singular +singular +48776 singular +plural +48779 singular +singular +singular +singular +48784 plural +plural +plural +singular +singular +48790 singular +plural +48793 singular +plural +singular +plural +48798 plural +48800 plural +plural +plural +singular +48806 singular +plural +singular +plural +plural +48813 singular +plural +plural +48817 singular +singular +plural +plural +plural +plural +singular +48825 plural +plural +singular +48829 singular +singular +singular +plural +singular +48835 plural +48837 singular +singular +48840 plural +48842 singular +48844 singular +singular +plural +48848 singular +singular +singular +plural +plural +plural +48855 plural +plural +48859 plural +plural +48862 singular +singular +48865 plural +singular +plural +plural +singular +singular +48873 plural +plural +singular +singular +singular +singular +48880 singular +48882 plural +singular +48885 singular +48887 plural +plural +plural +plural +singular +plural +singular +48895 plural +48897 singular +48899 plural +48901 singular +48903 plural +plural +plural +48907 singular +singular +singular +48911 plural +plural +48914 plural +48916 singular +48918 singular +plural +singular +singular +singular +48924 plural +plural +48927 singular +plural +48931 singular +48933 singular +singular +48938 plural +singular +singular +singular +48945 singular +singular +singular +singular +48950 singular +plural +48953 plural +plural +plural +plural +48958 singular +plural +plural +plural +48963 singular +singular +singular +singular +singular +singular +singular +singular +48972 plural +48974 plural +plural +48977 singular +singular +48980 singular +plural +48983 singular +singular +48986 singular +plural +48990 singular +48992 singular +plural +plural +singular +singular +plural +48999 singular +49001 singular +49003 singular +plural +singular +49007 plural +49009 singular +49011 singular +singular +49014 plural +plural +singular +plural +49019 singular +49021 singular +singular +49024 plural +plural +49027 singular +49029 singular +singular +singular +singular +49034 singular +singular +singular +singular +49039 singular +singular +singular +49043 singular +singular +49046 singular +singular +singular +singular +singular +singular +49053 singular +49055 singular +singular +plural +49059 singular +singular +49063 singular +singular +49066 singular +singular +singular +49070 singular +singular +singular +49074 singular +singular +singular +singular +singular +plural +plural +49082 singular +singular +49085 singular +singular +singular +49089 singular +singular +singular +49093 singular +singular +singular +singular +49098 singular +singular +singular +singular +singular +singular +49105 singular +49107 singular +49109 singular +singular +49112 plural +plural +49115 singular +49117 singular +singular +singular +singular +49123 singular +49125 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +49138 singular +singular +49141 singular +singular +singular +49145 singular +singular +49148 singular +singular +49151 singular +singular +singular +49155 singular +49157 plural +plural +singular +49161 plural +plural +singular +49165 plural +49167 plural +plural +singular +singular +singular +plural +singular +49175 plural +plural +plural +49179 singular +singular +singular +plural +49185 plural +49188 singular +singular +49192 singular +singular +49196 singular +plural +49199 singular +singular +singular +singular +49204 singular +49206 plural +49208 plural +singular +singular +singular +singular +49214 singular +49216 singular +singular +singular +49220 singular +singular +singular +49224 singular +49226 singular +singular +singular +singular +singular +singular +singular +49234 singular +singular +49237 singular +singular +49240 singular +singular +singular +49245 singular +singular +singular +plural +plural +plural +49252 singular +49254 singular +49256 singular +singular +49259 singular +singular +singular +singular +49264 singular +singular +49267 singular +singular +singular +singular +singular +singular +49274 singular +singular +singular +singular +49279 singular +singular +singular +singular +singular +singular +49286 singular +singular +singular +singular +singular +singular +49293 plural +49295 singular +plural +plural +49299 plural +plural +49302 plural +49304 plural +singular +singular +singular +singular +49310 singular +49313 singular +49315 singular +49317 singular +49319 singular +singular +singular +49323 plural +singular +49326 singular +singular +singular +singular +49331 singular +49333 singular +singular +singular +singular +singular +49339 singular +49342 plural +singular +singular +singular +49347 singular +plural +plural +plural +plural +singular +singular +49355 singular +singular +singular +singular +singular +49361 singular +singular +plural +singular +singular +singular +49368 singular +singular +singular +singular +49373 plural +plural +49376 plural +plural +49379 plural +singular +49382 plural +singular +49385 singular +singular +49388 singular +49390 singular +singular +singular +49394 singular +49396 singular +singular +singular +plural +singular +singular +singular +singular +singular +49406 singular +singular +plural +singular +singular +plural +49413 plural +singular +49416 singular +singular +singular +49420 singular +singular +singular +49424 singular +singular +singular +singular +singular +singular +plural +49432 singular +singular +49435 singular +singular +49438 singular +singular +singular +singular +singular +49444 singular +singular +singular +singular +49449 singular +49451 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +49466 singular +singular +singular +49470 singular +singular +singular +singular +49475 singular +singular +49478 singular +singular +singular +singular +49483 singular +singular +49487 singular +singular +singular +49491 singular +singular +singular +49495 singular +singular +49498 singular +singular +singular +49502 singular +singular +singular +singular +49507 singular +49509 singular +49511 singular +49513 singular +singular +49516 singular +singular +49519 singular +singular +singular +49524 singular +singular +singular +singular +49530 singular +singular +singular +singular +singular +49536 singular +49538 singular +singular +singular +singular +singular +49544 singular +singular +singular +singular +49549 singular +49551 singular +singular +singular +singular +singular +singular +singular +49560 singular +singular +singular +49565 plural +plural +singular +49570 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +49581 plural +plural +49584 plural +singular +singular +49588 plural +singular +singular +49592 singular +singular +singular +49596 singular +plural +plural +singular +plural +singular +plural +49604 plural +plural +singular +singular +singular +singular +singular +singular +49613 singular +singular +plural +plural +49618 plural +49620 plural +49622 plural +49624 singular +49627 singular +plural +singular +singular +singular +singular +singular +49635 singular +singular +singular +singular +singular +singular +singular +singular +49644 plural +49646 plural +plural +49649 singular +49651 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +49662 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +49674 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +49695 singular +49698 singular +singular +49701 singular +singular +49704 singular +singular +singular +singular +singular +singular +49711 singular +singular +singular +49715 singular +49717 singular +singular +singular +49721 singular +singular +singular +singular +singular +49727 singular +singular +singular +singular +singular +49733 singular +singular +49736 plural +plural +plural +singular +singular +singular +singular +singular +49745 singular +49747 singular +singular +singular +49751 singular +49753 singular +singular +singular +singular +singular +singular +singular +singular +49762 singular +singular +singular +singular +singular +singular +49769 singular +49771 singular +49773 singular +singular +49776 singular +49778 singular +singular +49781 singular +singular +singular +singular +49786 singular +singular +singular +singular +49791 singular +singular +49794 singular +singular +singular +49798 singular +49800 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +49822 singular +singular +49825 singular +singular +49828 singular +singular +49831 singular +singular +singular +plural +plural +singular +49838 singular +singular +49842 singular +plural +plural +singular +singular +singular +49849 plural +plural +singular +singular +plural +49855 plural +49857 singular +singular +singular +singular +49862 singular +singular +singular +singular +singular +singular +49869 singular +singular +singular +49873 singular +singular +singular +singular +singular +49880 singular +49882 singular +singular +49885 plural +plural +singular +49889 singular +singular +49892 singular +singular +singular +singular +singular +singular +singular +49900 singular +singular +49903 plural +49905 singular +singular +singular +singular +singular +singular +49912 singular +singular +49915 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +49927 singular +singular +plural +plural +49932 plural +plural +49935 plural +plural +49939 singular +singular +plural +plural +plural +49945 plural +49948 plural +singular +plural +singular +singular +plural +plural +plural +singular +49958 plural +plural +49963 singular +plural +plural +49968 plural +singular +singular +49972 plural +plural +49976 singular +singular +singular +singular +singular +singular +singular +49985 singular +49987 singular +49989 plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +50002 singular +singular +singular +singular +singular +singular +singular +singular +singular +50013 plural +singular +singular +singular +singular +singular +singular +singular +50023 singular +singular +plural +plural +singular +singular +singular +50031 singular +singular +singular +50035 singular +singular +singular +singular +50040 plural +50042 singular +plural +plural +singular +50047 singular +singular +50050 singular +singular +50053 singular +singular +singular +50057 plural +plural +50060 plural +plural +singular +50065 plural +50067 plural +plural +50071 singular +singular +singular +plural +plural +50077 singular +50079 plural +singular +singular +50083 singular +50085 singular +singular +plural +plural +plural +50091 plural +50093 plural +50095 plural +plural +plural +50099 singular +singular +50102 plural +plural +singular +50106 singular +singular +50109 plural +plural +50112 plural +plural +50115 plural +plural +plural +plural +singular +50121 plural +plural +singular +50125 plural +plural +plural +plural +singular +plural +plural +50134 plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +singular +50147 singular +singular +singular +singular +singular +singular +singular +singular +singular +50157 plural +plural +plural +50161 plural +singular +singular +singular +singular +plural +50168 plural +singular +singular +singular +50173 singular +plural +plural +singular +singular +singular +50181 plural +plural +singular +singular +50186 plural +plural +plural +50192 plural +singular +singular +singular +singular +50198 singular +50200 plural +plural +singular +singular +50205 singular +singular +50208 singular +singular +singular +singular +singular +50215 singular +50217 plural +plural +plural +plural +singular +50223 singular +singular +50226 plural +singular +singular +50230 singular +singular +singular +singular +singular +singular +50238 singular +50240 plural +plural +50243 singular +singular +50246 singular +singular +plural +plural +50251 singular +singular +singular +plural +singular +plural +plural +plural +singular +50261 singular +singular +50264 singular +singular +plural +50268 singular +singular +50271 plural +50275 singular +singular +50278 singular +singular +50281 singular +singular +50284 singular +singular +singular +singular +50289 singular +singular +50292 singular +singular +50295 plural +plural +singular +plural +plural +singular +singular +singular +singular +singular +50306 singular +singular +50309 singular +singular +singular +plural +50315 singular +singular +singular +50319 singular +singular +plural +plural +plural +plural +singular +singular +50330 singular +singular +singular +50334 singular +singular +singular +50338 singular +singular +50342 singular +singular +50346 singular +singular +50350 singular +50352 singular +singular +singular +singular +singular +50358 singular +singular +singular +50362 singular +singular +50365 singular +singular +50368 singular +50370 singular +singular +singular +singular +singular +singular +50379 singular +singular +50383 singular +singular +50387 singular +singular +50390 singular +50392 singular +50394 singular +50397 singular +singular +singular +singular +singular +singular +50404 singular +singular +singular +singular +50409 singular +singular +50412 singular +singular +singular +singular +50417 singular +50419 singular +singular +singular +plural +50425 singular +singular +50428 singular +singular +50431 singular +singular +singular +singular +50437 singular +50439 singular +50442 singular +50444 singular +singular +singular +singular +50449 singular +singular +singular +singular +50454 singular +singular +50457 singular +plural +50460 singular +singular +50463 singular +singular +singular +singular +singular +singular +singular +singular +50472 plural +50474 singular +50477 singular +singular +50480 singular +plural +plural +50484 singular +plural +plural +50488 singular +singular +plural +50492 plural +50494 plural +plural +singular +plural +50500 plural +50503 singular +plural +plural +plural +plural +50509 singular +singular +50512 singular +singular +50516 singular +50518 singular +singular +singular +singular +singular +singular +singular +50527 singular +singular +singular +singular +50532 singular +singular +50535 singular +50537 singular +singular +singular +singular +50542 singular +singular +singular +50546 singular +singular +singular +singular +50552 singular +singular +singular +singular +singular +50558 singular +singular +singular +singular +singular +50564 singular +singular +singular +50568 singular +50570 singular +50572 singular +singular +singular +50577 singular +singular +singular +singular +singular +50583 singular +singular +50586 singular +singular +singular +50591 singular +singular +singular +50595 singular +singular +singular +50599 singular +50601 singular +singular +50604 singular +50606 singular +50609 singular +50611 singular +singular +singular +singular +singular +singular +singular +50619 singular +singular +singular +singular +50624 singular +singular +singular +50628 singular +singular +50631 plural +plural +plural +50635 singular +singular +50638 singular +singular +50641 singular +plural +plural +plural +plural +50647 singular +singular +plural +singular +singular +singular +singular +50656 singular +50658 singular +singular +50662 singular +plural +plural +singular +50667 singular +singular +singular +singular +singular +50673 singular +singular +50676 singular +singular +plural +plural +50682 singular +singular +plural +50686 plural +singular +singular +singular +50691 plural +plural +singular +50695 singular +singular +singular +50700 singular +50702 plural +50704 singular +50706 singular +singular +50709 singular +50711 singular +50713 singular +singular +50716 plural +plural +singular +50721 plural +50723 plural +50726 singular +singular +50729 singular +singular +singular +50733 singular +singular +50736 plural +plural +singular +50740 singular +50742 singular +50744 plural +50746 singular +singular +50749 plural +singular +singular +singular +singular +50755 singular +50757 singular +singular +singular +singular +singular +singular +singular +singular +50766 plural +plural +50769 singular +singular +singular +50773 singular +50775 singular +singular +50778 singular +50781 singular +singular +singular +50785 singular +singular +plural +plural +singular +plural +50792 singular +50794 singular +singular +singular +singular +50800 singular +singular +50803 singular +singular +singular +singular +singular +singular +singular +50811 singular +singular +singular +singular +singular +singular +50818 singular +singular +singular +singular +50823 singular +singular +singular +singular +50828 singular +singular +singular +singular +singular +singular +singular +singular +50838 singular +50840 singular +50842 singular +50844 plural +singular +singular +singular +50849 singular +singular +50852 singular +singular +singular +50857 singular +singular +singular +singular +50862 singular +singular +singular +50866 plural +singular +singular +singular +50871 singular +singular +singular +50875 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +50887 singular +singular +singular +singular +50892 singular +singular +singular +singular +plural +plural +singular +singular +singular +50904 singular +singular +singular +singular +singular +singular +singular +singular +singular +50914 plural +singular +50917 singular +singular +singular +singular +singular +50923 singular +singular +singular +singular +singular +50929 singular +singular +singular +singular +50934 singular +singular +50937 singular +singular +singular +singular +singular +50943 singular +50946 singular +singular +singular +50950 plural +plural +plural +50954 singular +plural +plural +singular +50959 singular +50961 singular +50963 singular +singular +50966 singular +50968 plural +plural +singular +singular +singular +singular +50975 singular +50978 singular +singular +50981 singular +singular +50985 singular +singular +50988 singular +50990 singular +singular +singular +singular +singular +50996 singular +singular +singular +singular +singular +singular +singular +singular +singular +51006 singular +51008 singular +singular +singular +51012 singular +singular +singular +51016 singular +singular +singular +51021 singular +singular +singular +singular +51026 singular +singular +singular +51030 singular +singular +51033 singular +singular +singular +singular +singular +singular +singular +51042 plural +plural +singular +plural +51047 singular +singular +51050 plural +plural +51053 singular +singular +singular +singular +singular +singular +51060 singular +singular +singular +51064 singular +singular +singular +singular +51069 singular +51072 plural +plural +plural +singular +singular +51078 singular +singular +51081 singular +singular +singular +singular +singular +51087 singular +singular +singular +singular +singular +singular +singular +51096 singular +singular +singular +51101 singular +singular +singular +singular +singular +singular +singular +51109 singular +singular +51112 singular +singular +singular +singular +51118 singular +singular +singular +singular +singular +51124 singular +singular +singular +singular +singular +plural +singular +singular +singular +plural +singular +singular +51137 singular +51139 singular +singular +51142 plural +plural +singular +51146 plural +plural +singular +singular +singular +51152 singular +singular +singular +singular +singular +51158 singular +singular +singular +singular +51165 singular +singular +51168 singular +singular +singular +singular +singular +singular +51176 singular +51178 singular +singular +51181 singular +singular +singular +singular +singular +singular +51188 singular +singular +singular +singular +51193 singular +singular +singular +51197 singular +singular +singular +singular +singular +singular +singular +singular +singular +51208 singular +51210 singular +51213 singular +singular +singular +singular +singular +singular +singular +51221 singular +51223 singular +singular +singular +51227 singular +51229 singular +singular +singular +singular +singular +singular +51236 singular +51238 singular +51240 singular +51243 plural +singular +51246 singular +51248 singular +51250 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +51263 singular +singular +singular +plural +plural +plural +51270 singular +singular +singular +plural +51275 plural +plural +51279 plural +singular +singular +singular +51285 singular +singular +singular +singular +singular +singular +singular +singular +51294 singular +singular +51299 singular +singular +singular +51304 plural +plural +singular +singular +plural +plural +singular +51312 plural +plural +plural +singular +plural +51318 singular +singular +51321 plural +plural +singular +51325 singular +singular +51329 singular +51331 plural +plural +plural +plural +singular +singular +51338 singular +51340 singular +51343 singular +singular +plural +singular +plural +plural +singular +singular +singular +singular +51354 plural +plural +51357 singular +51359 singular +51361 singular +singular +singular +singular +singular +singular +51368 singular +singular +singular +singular +singular +51374 singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +51390 singular +plural +plural +plural +singular +51396 plural +51399 singular +singular +51402 singular +singular +singular +singular +51407 singular +singular +51410 singular +51412 singular +singular +singular +singular +singular +singular +51419 singular +51421 singular +singular +51424 singular +plural +plural +plural +plural +singular +singular +singular +singular +plural +plural +singular +51437 singular +singular +singular +singular +plural +51443 singular +singular +51446 plural +51448 singular +51450 singular +51452 plural +singular +plural +plural +plural +singular +singular +51460 singular +singular +plural +singular +singular +singular +51467 singular +plural +51470 plural +51472 plural +plural +plural +51476 plural +51478 singular +singular +singular +51482 singular +plural +singular +singular +singular +singular +singular +51490 singular +singular +singular +singular +singular +singular +51497 singular +singular +singular +singular +51502 plural +plural +51506 singular +singular +51509 singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +51520 plural +plural +plural +51524 plural +plural +51527 singular +51529 singular +singular +singular +singular +51534 singular +singular +51537 singular +singular +51541 singular +singular +singular +51545 singular +singular +51549 singular +singular +singular +singular +singular +51555 singular +singular +singular +singular +51560 singular +singular +singular +singular +singular +plural +51567 singular +51569 plural +plural +plural +plural +51574 plural +51576 singular +singular +plural +plural +51582 singular +singular +singular +plural +plural +plural +plural +51590 singular +51592 singular +singular +singular +singular +singular +51598 singular +singular +plural +plural +singular +51605 plural +51607 singular +plural +plural +plural +singular +51614 plural +51616 singular +51619 plural +51621 singular +plural +plural +51625 singular +singular +singular +51629 singular +singular +plural +51635 singular +singular +singular +plural +51640 plural +plural +51643 plural +51645 singular +singular +51648 singular +singular +singular +singular +51654 plural +51656 plural +singular +51660 singular +singular +51663 singular +singular +singular +51667 singular +51669 singular +singular +singular +singular +51674 singular +51677 singular +51679 singular +singular +plural +singular +plural +plural +plural +plural +plural +singular +51690 plural +51692 singular +singular +51696 plural +plural +51699 singular +singular +51702 singular +51705 singular +singular +singular +singular +51710 singular +singular +singular +singular +51715 singular +singular +singular +singular +singular +singular +singular +51723 singular +singular +singular +51727 singular +singular +51730 singular +singular +51733 singular +singular +singular +51737 singular +51739 singular +51741 singular +51743 singular +singular +singular +singular +51748 singular +51751 singular +singular +singular +51755 singular +51758 plural +51760 plural +plural +51764 plural +singular +51767 singular +singular +singular +singular +singular +51774 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +51797 singular +51800 singular +singular +plural +plural +plural +singular +plural +51808 singular +singular +singular +singular +51813 singular +singular +singular +51817 plural +51819 singular +singular +singular +51823 plural +singular +51827 singular +singular +singular +singular +singular +singular +51834 singular +singular +singular +51838 singular +singular +singular +51842 singular +singular +singular +singular +singular +singular +singular +singular +singular +51852 singular +singular +51855 singular +singular +singular +singular +51861 singular +singular +singular +singular +singular +singular +singular +51869 singular +singular +51872 singular +singular +51875 plural +singular +singular +plural +plural +51881 singular +singular +51884 plural +51886 singular +51888 plural +plural +51891 singular +singular +singular +singular +singular +51897 singular +51899 plural +singular +51902 plural +singular +singular +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +51916 singular +51918 singular +singular +51921 singular +singular +51924 singular +singular +singular +51928 singular +singular +singular +51932 singular +singular +singular +singular +singular +singular +singular +51940 singular +singular +51943 singular +singular +singular +51950 plural +singular +51953 singular +singular +singular +singular +singular +singular +singular +singular +51962 singular +51964 singular +singular +51967 singular +singular +singular +singular +singular +51973 singular +singular +singular +singular +singular +singular +51980 singular +51983 singular +singular +singular +singular +singular +51989 singular +singular +51993 singular +singular +singular +singular +51998 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +52010 singular +52013 singular +singular +singular +singular +52018 singular +singular +singular +singular +52023 singular +52025 singular +singular +52028 singular +singular +singular +52032 plural +plural +plural +singular +singular +singular +singular +52041 singular +singular +52044 singular +singular +52047 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +52062 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +52074 singular +52076 singular +singular +52079 singular +singular +singular +52083 singular +singular +singular +singular +singular +52089 singular +singular +52092 plural +singular +singular +singular +singular +52098 singular +singular +52101 singular +singular +singular +singular +singular +52107 singular +52110 singular +singular +singular +singular +singular +singular +singular +52118 singular +plural +plural +52122 singular +singular +singular +singular +singular +singular +52130 singular +plural +plural +plural +singular +singular +52137 plural +singular +52140 singular +52142 singular +singular +plural +singular +singular +singular +52150 singular +singular +singular +52155 singular +52157 plural +singular +52160 plural +plural +52164 singular +singular +singular +singular +52170 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +52181 singular +singular +singular +52185 singular +plural +52189 singular +plural +52192 singular +singular +singular +52197 singular +singular +52201 singular +singular +singular +singular +singular +52208 plural +singular +singular +plural +52213 singular +singular +52216 singular +52218 singular +singular +singular +singular +singular +52224 singular +singular +plural +plural +singular +singular +52231 plural +plural +plural +singular +singular +52237 plural +plural +52241 singular +singular +singular +plural +plural +52247 singular +52250 singular +singular +plural +singular +singular +52257 singular +singular +singular +singular +52262 singular +singular +singular +singular +singular +singular +52269 plural +plural +singular +singular +52274 plural +singular +singular +singular +52279 singular +singular +singular +52283 singular +singular +singular +singular +singular +singular +52291 singular +plural +52294 singular +singular +singular +singular +singular +52300 singular +singular +singular +singular +singular +singular +singular +52309 singular +52311 singular +52313 singular +52315 singular +singular +52318 singular +singular +52322 singular +plural +52325 singular +singular +52329 singular +52331 plural +plural +plural +singular +singular +singular +singular +singular +singular +52341 plural +plural +plural +52346 singular +singular +singular +singular +52351 singular +52354 singular +singular +singular +singular +52360 singular +52362 singular +singular +singular +singular +52368 singular +singular +singular +52372 plural +singular +52375 singular +singular +52378 singular +plural +plural +52382 plural +plural +plural +singular +singular +singular +52389 plural +plural +plural +plural +plural +52395 singular +singular +plural +plural +plural +plural +52402 singular +singular +52405 singular +singular +52409 singular +singular +52412 singular +singular +52415 singular +singular +singular +singular +singular +singular +52423 singular +singular +singular +singular +singular +52429 singular +singular +singular +singular +singular +52435 singular +singular +52438 singular +singular +singular +singular +52443 singular +singular +singular +singular +singular +singular +52450 singular +52452 singular +52454 singular +singular +singular +singular +singular +singular +52461 singular +plural +plural +52465 singular +52467 singular +singular +singular +52471 singular +52474 singular +singular +singular +singular +52479 plural +singular +52482 plural +plural +singular +singular +singular +singular +singular +singular +52491 singular +52493 plural +plural +52497 singular +52499 singular +singular +singular +52503 singular +singular +singular +singular +singular +singular +singular +52511 plural +plural +plural +singular +singular +singular +singular +52519 singular +plural +plural +plural +plural +plural +singular +singular +52528 singular +52530 singular +singular +singular +singular +52535 singular +singular +singular +singular +singular +singular +52542 singular +52544 singular +singular +52547 plural +52549 singular +singular +plural +52554 plural +singular +singular +singular +52559 plural +singular +52562 singular +singular +singular +singular +plural +52568 plural +plural +plural +plural +52573 plural +plural +52576 plural +singular +singular +52581 plural +plural +plural +plural +52586 singular +52589 plural +52592 singular +52594 singular +plural +singular +52598 plural +52600 singular +52602 singular +plural +52605 singular +singular +singular +singular +52610 plural +52612 plural +singular +singular +52616 singular +singular +singular +singular +singular +52623 plural +singular +52626 singular +singular +52629 singular +singular +singular +singular +singular +plural +52636 plural +plural +52639 singular +52641 plural +plural +52644 singular +singular +singular +52648 singular +singular +singular +52652 plural +52654 plural +52656 singular +singular +plural +52660 singular +singular +singular +singular +singular +plural +singular +52668 singular +plural +plural +52673 plural +singular +52676 plural +singular +52680 singular +singular +singular +52685 plural +singular +plural +52689 plural +52691 plural +plural +plural +plural +52696 plural +singular +singular +singular +52701 singular +singular +singular +singular +singular +singular +52708 singular +singular +singular +singular +52713 plural +plural +plural +plural +singular +52719 plural +plural +52722 singular +52724 singular +singular +singular +52729 singular +52731 plural +plural +singular +52735 singular +52737 singular +singular +singular +singular +plural +plural +52744 singular +singular +singular +plural +plural +52750 singular +52752 singular +singular +singular +52756 singular +singular +52759 singular +52761 plural +plural +52764 plural +plural +52767 singular +singular +singular +singular +52772 singular +singular +singular +52776 singular +singular +singular +singular +singular +plural +plural +plural +52785 plural +plural +52788 singular +singular +singular +singular +singular +singular +singular +52796 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +52807 singular +singular +52810 plural +plural +52814 plural +52816 plural +singular +singular +52820 plural +singular +singular +singular +plural +plural +plural +52829 singular +singular +singular +52833 singular +singular +52836 plural +plural +plural +singular +singular +52842 plural +52844 singular +plural +plural +singular +singular +52850 singular +singular +plural +plural +52857 plural +plural +singular +plural +52863 plural +singular +plural +plural +singular +plural +plural +plural +plural +52874 singular +singular +52877 plural +52879 plural +52881 plural +plural +52884 plural +52886 plural +plural +plural +plural +plural +plural +plural +52894 plural +plural +plural +singular +singular +singular +plural +52902 singular +singular +52905 singular +singular +singular +singular +52910 singular +singular +52913 singular +52915 plural +52919 singular +52921 plural +singular +singular +52926 singular +singular +singular +singular +singular +52933 singular +singular +plural +plural +plural +singular +52940 singular +singular +52943 plural +52945 singular +plural +52948 singular +singular +52951 singular +52953 singular +52955 singular +52958 singular +52960 plural +singular +singular +52964 singular +singular +singular +singular +singular +singular +52971 plural +52973 plural +52978 plural +singular +singular +singular +52983 singular +singular +52987 singular +singular +singular +52991 plural +52993 singular +singular +plural +singular +singular +52999 plural +53001 plural +53003 singular +53005 singular +singular +53009 singular +singular +singular +53013 singular +singular +53016 singular +plural +singular +53020 singular +singular +singular +singular +53025 singular +singular +plural +53029 singular +singular +53032 singular +53036 singular +53040 singular +plural +plural +singular +singular +singular +53047 singular +singular +53050 plural +plural +plural +singular +plural +53056 plural +singular +53059 singular +53061 singular +singular +53064 plural +singular +singular +singular +singular +singular +53072 singular +singular +singular +53076 singular +53078 singular +53081 plural +plural +singular +plural +plural +53087 plural +plural +53090 plural +53092 singular +plural +singular +singular +53097 plural +singular +53100 singular +singular +plural +singular +singular +53107 singular +singular +plural +singular +singular +53113 singular +53116 singular +plural +plural +singular +53122 plural +plural +53126 plural +53128 plural +plural +53131 plural +plural +53134 singular +singular +singular +singular +53139 singular +singular +singular +singular +53144 singular +singular +singular +singular +singular +singular +singular +plural +singular +53154 singular +singular +singular +singular +singular +singular +53161 plural +53163 singular +singular +plural +53167 plural +plural +plural +singular +singular +singular +singular +53175 singular +plural +singular +singular +singular +singular +singular +singular +53184 plural +53186 singular +singular +singular +53190 plural +singular +53193 singular +singular +singular +singular +53198 plural +53200 plural +singular +singular +singular +plural +plural +plural +singular +singular +plural +53211 singular +singular +53214 singular +singular +singular +53218 singular +singular +singular +plural +53224 singular +plural +singular +singular +53230 singular +plural +53233 singular +singular +plural +singular +singular +53239 singular +singular +53242 singular +singular +singular +singular +plural +singular +singular +53250 singular +singular +singular +singular +53255 singular +singular +singular +singular +singular +singular +singular +53263 singular +singular +53266 singular +singular +singular +singular +53271 plural +53273 singular +singular +53276 singular +plural +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +53294 singular +53297 singular +53299 singular +singular +53302 singular +53305 singular +53308 singular +plural +53312 plural +singular +53316 plural +singular +singular +singular +singular +singular +singular +53324 singular +singular +53327 singular +singular +53330 singular +53333 singular +53336 singular +53338 singular +singular +53342 singular +singular +singular +singular +singular +53348 singular +singular +singular +singular +singular +53354 singular +singular +singular +singular +singular +singular +singular +53362 singular +singular +singular +singular +53367 singular +53369 singular +53371 singular +singular +53374 singular +singular +singular +53378 singular +singular +singular +singular +singular +singular +singular +53386 singular +singular +singular +singular +singular +53392 singular +53394 singular +singular +singular +singular +53399 singular +singular +singular +53403 singular +singular +singular +53407 plural +plural +plural +53411 singular +53413 singular +singular +singular +singular +singular +singular +singular +53421 singular +singular +53424 plural +53426 singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +53438 singular +singular +53442 singular +53445 singular +singular +singular +singular +singular +53451 singular +plural +53454 plural +53456 plural +singular +singular +53461 singular +53464 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +53475 singular +singular +singular +singular +singular +53481 plural +plural +53484 plural +plural +plural +singular +singular +singular +singular +53492 singular +singular +53495 singular +singular +53498 singular +53501 singular +singular +singular +singular +53507 singular +singular +53510 singular +singular +singular +singular +singular +singular +53518 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +53536 singular +singular +singular +singular +53541 plural +singular +singular +singular +singular +singular +53548 singular +singular +singular +53552 singular +53554 singular +singular +53558 singular +singular +singular +singular +singular +singular +singular +singular +53567 singular +singular +singular +53571 singular +singular +53574 singular +singular +singular +singular +53579 singular +singular +53583 singular +singular +singular +singular +singular +singular +singular +singular +singular +53593 singular +singular +singular +singular +53598 plural +53600 plural +plural +plural +plural +53605 singular +singular +plural +53609 singular +singular +53613 singular +plural +singular +singular +53619 singular +plural +53623 plural +singular +singular +singular +singular +singular +singular +53631 plural +singular +singular +singular +53636 plural +singular +53639 plural +singular +singular +singular +singular +singular +53646 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +53660 singular +singular +singular +singular +singular +singular +53667 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +53679 singular +singular +singular +singular +53684 singular +singular +singular +53688 singular +53690 singular +singular +singular +singular +singular +singular +singular +53698 singular +singular +53701 singular +singular +singular +singular +singular +53707 singular +singular +singular +singular +singular +singular +53714 singular +singular +53718 plural +plural +plural +53722 plural +singular +singular +singular +singular +singular +singular +53730 singular +singular +plural +singular +53735 singular +singular +53738 singular +53740 plural +53742 plural +plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +53757 singular +singular +singular +53761 singular +53763 plural +53765 singular +plural +plural +singular +singular +plural +singular +plural +singular +53776 plural +singular +singular +singular +singular +singular +53783 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +53794 singular +singular +plural +plural +plural +singular +singular +plural +singular +singular +53805 singular +singular +53808 plural +53810 plural +plural +plural +53814 plural +53816 singular +53818 singular +singular +singular +plural +plural +plural +53825 plural +53827 singular +singular +singular +singular +singular +53833 singular +53835 singular +singular +plural +53839 singular +singular +53843 singular +53846 singular +singular +singular +53850 singular +singular +53853 singular +plural +plural +plural +singular +plural +53860 plural +53865 singular +plural +53868 singular +singular +singular +plural +53875 plural +plural +53878 singular +singular +singular +singular +singular +53884 singular +plural +plural +singular +singular +singular +53891 plural +plural +53894 plural +53896 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +53907 singular +plural +plural +53911 singular +53914 plural +singular +singular +singular +53919 singular +singular +singular +singular +singular +53925 singular +singular +53928 singular +singular +53931 plural +53935 plural +singular +singular +singular +53940 singular +singular +53944 singular +53946 singular +singular +53950 plural +singular +53953 plural +plural +53956 singular +53958 singular +singular +plural +plural +singular +singular +53965 plural +53967 singular +plural +plural +singular +singular +53974 singular +53976 singular +singular +53980 plural +plural +singular +plural +plural +plural +singular +plural +singular +53990 singular +singular +53993 singular +singular +53996 singular +singular +53999 singular +54002 plural +singular +singular +singular +singular +singular +54010 plural +plural +singular +plural +54015 singular +54017 singular +plural +singular +singular +singular +singular +singular +singular +54026 singular +54028 singular +singular +singular +singular +54033 singular +singular +54036 singular +singular +singular +54040 plural +54042 singular +singular +54045 singular +singular +54048 singular +54050 plural +plural +singular +plural +singular +plural +plural +54058 singular +singular +singular +54062 singular +54064 singular +singular +singular +54068 singular +singular +singular +54072 singular +54074 plural +singular +plural +singular +54079 singular +singular +54083 plural +plural +plural +singular +54088 singular +singular +54092 singular +singular +54099 singular +54101 plural +plural +plural +singular +54106 singular +singular +54109 plural +54111 singular +singular +54114 singular +54116 singular +singular +singular +54120 plural +plural +54123 plural +plural +54126 singular +singular +54129 plural +plural +54133 singular +singular +singular +54137 singular +singular +singular +54141 singular +54143 singular +singular +plural +plural +54149 singular +singular +singular +singular +singular +54155 singular +singular +54158 singular +54160 plural +plural +plural +plural +54165 singular +plural +singular +54169 singular +54171 singular +plural +singular +54175 singular +singular +singular +singular +54180 singular +singular +54183 singular +singular +singular +54187 singular +singular +singular +singular +singular +54193 singular +54195 singular +singular +54199 singular +singular +singular +54203 singular +54205 singular +singular +singular +54209 singular +singular +singular +singular +singular +singular +singular +54217 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +54228 singular +54230 singular +54232 singular +54234 singular +singular +plural +singular +singular +54240 singular +54242 plural +singular +singular +singular +singular +singular +54249 plural +singular +singular +singular +singular +singular +singular +singular +54258 singular +singular +singular +54262 singular +plural +singular +singular +singular +54268 plural +plural +54271 singular +singular +singular +plural +singular +singular +54280 singular +singular +singular +54285 plural +plural +54289 singular +plural +singular +54293 singular +singular +singular +54297 singular +54300 singular +singular +singular +singular +singular +plural +54307 singular +singular +singular +singular +54312 singular +54314 plural +54316 singular +54318 singular +singular +singular +plural +54323 plural +plural +54326 plural +plural +54329 singular +singular +singular +54333 plural +54335 singular +singular +singular +54339 singular +singular +plural +54345 plural +plural +plural +54349 singular +singular +singular +singular +54354 singular +plural +54357 singular +54359 singular +singular +54362 singular +singular +singular +54366 singular +54368 singular +54370 singular +singular +singular +singular +singular +54376 singular +singular +plural +54380 plural +54382 singular +54385 singular +54387 singular +54389 singular +singular +singular +singular +singular +singular +plural +54397 plural +singular +singular +singular +54403 singular +singular +singular +singular +singular +54409 plural +singular +54413 singular +singular +54416 singular +singular +singular +54421 singular +singular +singular +singular +54427 singular +singular +plural +plural +54432 singular +54434 plural +singular +singular +54438 singular +54440 plural +plural +singular +plural +singular +singular +plural +plural +plural +singular +singular +singular +54453 singular +plural +54456 plural +plural +plural +54460 plural +plural +plural +54464 plural +singular +54467 singular +singular +singular +54471 singular +singular +54474 plural +singular +54477 singular +54479 singular +singular +singular +plural +singular +54486 plural +54489 singular +singular +54492 plural +54494 plural +54496 plural +plural +plural +54500 plural +54503 singular +singular +54506 plural +54508 plural +singular +54511 singular +54513 singular +singular +plural +plural +54520 plural +plural +singular +singular +singular +singular +singular +singular +singular +plural +singular +54533 plural +54536 singular +singular +54539 plural +54541 plural +54544 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +54555 singular +singular +54558 singular +singular +singular +54562 singular +54564 singular +singular +singular +54568 singular +54570 singular +singular +singular +plural +singular +singular +54577 singular +singular +singular +plural +54582 singular +singular +54585 singular +singular +singular +54589 plural +plural +plural +54593 singular +54596 singular +singular +54599 singular +54601 singular +54604 singular +singular +plural +plural +plural +plural +plural +singular +singular +54614 singular +singular +plural +plural +singular +singular +singular +singular +54623 plural +plural +54628 singular +singular +singular +singular +singular +54634 singular +singular +singular +54639 singular +singular +singular +54644 singular +singular +singular +54648 singular +singular +singular +singular +singular +54654 singular +singular +54657 singular +singular +54660 singular +54662 plural +54664 plural +plural +54667 singular +54669 singular +singular +54672 singular +plural +plural +54676 plural +plural +plural +54680 plural +plural +54683 plural +54685 plural +plural +plural +54689 singular +54691 plural +singular +plural +plural +plural +54697 singular +54699 singular +54701 singular +singular +singular +singular +54706 plural +plural +plural +plural +54712 plural +plural +54715 singular +54717 plural +plural +singular +54721 singular +54724 plural +plural +54727 singular +singular +singular +singular +54732 singular +singular +singular +plural +plural +singular +54739 plural +singular +singular +singular +54744 singular +singular +singular +singular +54749 plural +54751 singular +singular +plural +singular +singular +singular +54759 singular +singular +54762 singular +54764 singular +singular +singular +plural +54769 plural +singular +54773 singular +54775 singular +singular +singular +singular +54780 singular +54783 singular +singular +singular +54787 singular +54789 singular +singular +54792 singular +singular +singular +54796 singular +singular +54799 singular +singular +plural +plural +54804 singular +54806 singular +54808 singular +singular +54811 singular +singular +singular +singular +54816 singular +54818 singular +singular +plural +54822 plural +plural +plural +54826 plural +plural +54829 singular +singular +54832 singular +singular +54835 plural +singular +54838 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +54850 singular +singular +singular +plural +singular +plural +plural +54859 singular +singular +singular +54863 singular +plural +plural +singular +54868 plural +54870 singular +54872 singular +singular +54875 singular +singular +singular +singular +54880 singular +singular +54884 plural +plural +singular +singular +singular +54890 plural +singular +singular +plural +singular +singular +singular +54898 singular +singular +54903 singular +singular +54906 singular +singular +54909 plural +plural +54913 singular +singular +plural +plural +singular +54919 plural +54921 plural +plural +54924 plural +plural +54927 singular +singular +singular +singular +54932 singular +singular +54935 singular +singular +54938 singular +singular +singular +54942 singular +singular +54945 singular +singular +singular +singular +singular +singular +54952 plural +plural +plural +plural +singular +singular +singular +singular +54961 singular +singular +singular +singular +54966 singular +singular +singular +singular +54971 singular +singular +singular +singular +54977 singular +54980 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +54996 singular +54998 singular +singular +55001 singular +singular +singular +singular +singular +55007 plural +singular +plural +plural +singular +55013 singular +singular +singular +singular +singular +55019 singular +singular +singular +singular +55024 singular +plural +55027 singular +singular +55030 singular +singular +singular +singular +singular +singular +55037 singular +55039 singular +55042 singular +55044 plural +55046 plural +55048 singular +55051 singular +plural +55054 singular +singular +plural +singular +55059 singular +singular +55064 singular +singular +singular +singular +singular +singular +singular +singular +55073 singular +55075 singular +55077 singular +55079 singular +singular +singular +55085 singular +singular +singular +singular +singular +55092 plural +singular +singular +singular +singular +singular +singular +singular +singular +55102 singular +55104 singular +55106 singular +singular +singular +singular +singular +55112 plural +singular +55115 singular +singular +singular +singular +singular +singular +55122 singular +plural +55125 singular +singular +singular +55129 singular +plural +55133 singular +singular +singular +plural +plural +plural +plural +singular +55142 singular +singular +singular +55146 singular +singular +55149 singular +singular +singular +55154 singular +singular +singular +singular +55159 singular +55161 plural +singular +singular +55165 plural +singular +55169 singular +singular +plural +plural +55174 singular +singular +55177 plural +55179 plural +55181 plural +plural +plural +55185 singular +singular +55188 singular +55190 singular +singular +55193 plural +55195 plural +55197 singular +plural +plural +55201 plural +55203 plural +singular +55206 plural +55208 singular +plural +55211 singular +singular +singular +plural +singular +55217 singular +55219 singular +singular +singular +55223 singular +plural +55226 plural +55228 plural +plural +plural +55234 plural +55236 singular +singular +plural +55240 plural +plural +plural +55244 plural +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +55258 singular +plural +singular +plural +55263 plural +55268 singular +singular +singular +singular +singular +plural +singular +singular +55277 singular +plural +singular +55281 singular +singular +55284 plural +55286 singular +singular +plural +singular +55291 singular +singular +singular +55295 plural +singular +singular +singular +singular +55301 plural +55303 singular +singular +55307 singular +singular +singular +55312 singular +singular +singular +singular +plural +singular +55319 singular +singular +singular +55323 singular +singular +55326 singular +singular +singular +55330 singular +plural +plural +singular +singular +55336 plural +singular +singular +plural +plural +55342 singular +55344 singular +singular +singular +55348 plural +plural +singular +plural +55353 plural +plural +55356 singular +singular +singular +singular +55361 plural +singular +plural +55365 plural +singular +singular +55369 singular +singular +singular +plural +plural +55375 singular +singular +singular +plural +55380 singular +plural +55384 singular +singular +55387 plural +plural +singular +plural +singular +singular +55395 singular +plural +55398 singular +singular +singular +singular +singular +singular +singular +singular +singular +55408 singular +singular +55411 singular +55413 singular +singular +55416 singular +singular +singular +singular +singular +55422 singular +singular +55426 singular +singular +plural +singular +55431 plural +plural +singular +55435 singular +singular +plural +55439 plural +singular +55443 singular +singular +singular +singular +55448 singular +55450 plural +plural +singular +singular +55455 singular +singular +singular +55460 plural +plural +plural +55464 singular +singular +plural +plural +55469 plural +singular +singular +singular +plural +singular +singular +singular +plural +singular +singular +55481 plural +singular +singular +plural +plural +plural +singular +singular +plural +55492 plural +55494 singular +singular +singular +singular +singular +plural +singular +singular +singular +55504 singular +singular +singular +singular +55509 singular +plural +plural +plural +plural +singular +singular +plural +plural +singular +plural +55521 singular +55523 plural +singular +singular +singular +singular +plural +singular +plural +singular +singular +55534 singular +singular +singular +plural +singular +55540 plural +singular +55543 singular +55545 singular +singular +singular +55549 singular +55553 singular +singular +55556 singular +singular +singular +55560 singular +singular +singular +singular +singular +55566 plural +55569 plural +55571 singular +singular +singular +singular +plural +55577 singular +singular +singular +singular +plural +55583 plural +plural +singular +singular +plural +55589 plural +singular +singular +singular +55594 singular +55597 singular +singular +55600 singular +55603 singular +singular +55606 singular +55608 singular +singular +singular +55612 plural +plural +singular +55616 singular +singular +55619 singular +singular +singular +55623 singular +55625 singular +singular +singular +55629 plural +singular +singular +55633 plural +singular +singular +55637 singular +55639 singular +singular +55642 singular +plural +55645 plural +singular +singular +singular +55650 singular +singular +plural +plural +singular +singular +singular +55658 singular +plural +55661 plural +55664 singular +singular +55667 plural +plural +plural +plural +55672 plural +singular +55676 plural +plural +55679 singular +singular +singular +55683 singular +singular +singular +singular +singular +singular +55690 singular +55692 singular +singular +singular +singular +55697 plural +plural +singular +55701 singular +55703 singular +singular +singular +singular +singular +singular +singular +55711 singular +55714 singular +plural +55717 singular +singular +singular +singular +singular +singular +55725 singular +55727 singular +singular +plural +singular +plural +plural +55734 plural +55736 singular +singular +singular +singular +55741 plural +plural +55744 singular +singular +55747 singular +singular +singular +singular +singular +55754 singular +singular +55757 singular +singular +55760 singular +singular +singular +singular +singular +plural +singular +singular +singular +55770 plural +plural +plural +singular +singular +singular +singular +singular +55779 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +55798 singular +plural +singular +55803 plural +singular +55806 singular +singular +singular +55810 singular +55813 singular +singular +singular +singular +plural +singular +55820 singular +singular +55823 singular +singular +singular +singular +singular +singular +singular +plural +singular +55833 singular +singular +singular +singular +singular +55839 singular +55841 singular +55843 plural +plural +plural +55847 singular +55849 plural +55851 singular +55853 singular +singular +singular +plural +singular +55860 singular +plural +55863 singular +55865 singular +singular +55868 plural +plural +55871 plural +55873 singular +55875 singular +singular +55878 singular +55880 singular +singular +55883 singular +singular +singular +singular +55888 singular +55890 plural +singular +plural +plural +singular +plural +singular +singular +singular +singular +55901 plural +plural +singular +55905 singular +singular +singular +singular +55910 singular +singular +55913 plural +plural +singular +55918 singular +plural +plural +singular +singular +55924 singular +singular +plural +55928 plural +plural +singular +singular +singular +55934 singular +singular +singular +singular +55939 singular +singular +55944 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +55956 singular +singular +55959 singular +singular +55962 singular +singular +singular +singular +55967 plural +plural +55970 singular +singular +singular +singular +55975 singular +singular +singular +singular +singular +singular +singular +55983 singular +55985 singular +55987 singular +singular +55990 plural +plural +55993 plural +plural +singular +singular +singular +55999 singular +singular +plural +56003 singular +singular +singular +singular +56008 singular +plural +plural +56012 singular +singular +plural +plural +56018 singular +singular +singular +singular +singular +56024 singular +singular +56027 plural +singular +56031 plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +56045 singular +singular +plural +plural +56050 singular +singular +56053 singular +56055 singular +singular +56058 singular +56060 singular +56062 singular +singular +56065 plural +singular +56068 singular +singular +singular +56072 singular +plural +singular +singular +56077 singular +56079 plural +plural +56082 singular +singular +56085 singular +singular +singular +singular +singular +singular +singular +56093 singular +singular +plural +plural +56099 plural +singular +56102 plural +plural +56105 singular +56107 singular +singular +plural +singular +singular +56113 singular +plural +plural +56117 singular +56119 singular +56121 plural +56123 plural +plural +plural +56127 singular +56129 singular +singular +singular +singular +56134 singular +singular +56137 singular +plural +plural +56141 singular +singular +singular +plural +plural +56148 singular +singular +56151 plural +56153 plural +singular +singular +56157 singular +singular +singular +56161 singular +56163 singular +singular +plural +plural +56168 singular +singular +56171 singular +singular +56175 plural +plural +plural +56179 singular +56181 singular +singular +56184 singular +56186 singular +plural +plural +plural +singular +singular +singular +56194 plural +plural +plural +singular +singular +singular +singular +plural +singular +plural +plural +56206 singular +singular +56210 singular +56213 plural +plural +plural +singular +56218 plural +plural +56221 singular +singular +singular +singular +plural +56228 singular +singular +56233 singular +56235 plural +56237 singular +singular +singular +plural +plural +plural +56244 plural +singular +plural +singular +singular +singular +56251 singular +singular +plural +plural +plural +plural +singular +56259 plural +plural +plural +56264 plural +plural +plural +56269 singular +singular +singular +singular +singular +singular +56276 singular +plural +plural +singular +plural +56282 singular +singular +singular +plural +56287 plural +singular +singular +56291 singular +singular +singular +singular +56296 plural +singular +singular +singular +singular +singular +plural +plural +56305 singular +singular +singular +singular +singular +56311 singular +singular +56314 singular +singular +56317 singular +singular +singular +56321 singular +singular +56324 singular +56326 plural +singular +singular +singular +singular +56332 singular +singular +plural +plural +singular +plural +singular +plural +56343 plural +singular +56346 plural +56350 plural +plural +singular +plural +56356 plural +singular +56359 plural +singular +singular +singular +singular +56365 plural +singular +singular +plural +plural +plural +plural +56373 singular +singular +singular +singular +56378 singular +56380 plural +56382 singular +singular +singular +singular +56387 singular +plural +56391 singular +singular +singular +singular +56396 plural +56398 plural +56400 singular +56402 singular +singular +plural +plural +plural +56408 singular +singular +plural +56412 singular +56415 singular +singular +singular +56419 singular +singular +singular +singular +singular +singular +56426 singular +singular +56429 singular +56431 singular +singular +plural +singular +singular +56438 singular +singular +56441 singular +56443 singular +56445 singular +plural +56448 plural +singular +56451 plural +singular +singular +singular +56456 singular +singular +plural +56460 plural +singular +56463 singular +singular +56466 plural +singular +56470 singular +singular +singular +singular +singular +56476 singular +singular +singular +singular +singular +singular +56483 singular +56485 singular +singular +singular +56489 singular +56491 singular +singular +singular +singular +singular +56497 singular +singular +56500 singular +singular +56503 singular +singular +singular +56507 singular +singular +singular +singular +56512 singular +singular +56515 singular +singular +singular +56519 singular +singular +56522 singular +singular +singular +singular +56527 plural +56529 plural +plural +56532 plural +plural +plural +plural +plural +plural +56539 plural +plural +plural +56543 singular +plural +56546 plural +singular +56550 plural +plural +plural +singular +plural +singular +singular +56558 plural +plural +56562 plural +singular +56566 plural +56568 plural +singular +singular +plural +singular +56575 singular +plural +singular +56579 singular +56581 singular +singular +56584 singular +singular +plural +plural +56589 singular +56591 singular +singular +singular +56595 singular +56597 singular +singular +56600 singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +56611 plural +plural +singular +singular +singular +singular +56618 plural +plural +plural +singular +56623 singular +56625 singular +plural +56628 plural +plural +plural +singular +56633 plural +singular +56636 plural +plural +singular +singular +56641 plural +singular +singular +singular +56646 singular +56649 plural +56651 plural +56653 singular +56656 plural +plural +plural +singular +singular +singular +singular +singular +singular +plural +singular +singular +56669 plural +56671 plural +plural +singular +plural +singular +plural +56678 singular +56680 singular +singular +56684 singular +plural +56687 singular +singular +singular +singular +plural +plural +plural +plural +plural +56697 singular +plural +plural +56701 plural +56704 plural +plural +plural +plural +singular +singular +singular +singular +56714 singular +singular +singular +singular +56719 singular +56721 singular +56723 singular +singular +singular +singular +56728 singular +56732 singular +56734 singular +56736 singular +singular +singular +56740 singular +plural +56743 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +56760 plural +plural +singular +singular +56766 singular +singular +singular +56770 singular +plural +plural +plural +singular +singular +singular +singular +56779 singular +plural +plural +56783 singular +56785 singular +singular +singular +plural +56790 singular +56792 singular +singular +56796 singular +singular +56799 plural +plural +singular +singular +singular +singular +singular +singular +56808 singular +plural +plural +56812 plural +singular +plural +plural +56817 singular +singular +singular +singular +singular +singular +singular +singular +56826 singular +singular +singular +singular +56831 plural +plural +56834 plural +plural +singular +plural +56839 singular +56841 singular +singular +singular +plural +singular +56847 singular +56849 singular +singular +singular +plural +56854 singular +singular +singular +singular +singular +56860 singular +singular +singular +singular +singular +56866 singular +singular +singular +singular +singular +56873 singular +singular +singular +singular +singular +56879 singular +56881 singular +singular +singular +56885 singular +singular +singular +56889 singular +56891 singular +singular +56895 singular +singular +singular +singular +singular +56901 singular +singular +singular +singular +56906 singular +56908 plural +plural +56911 plural +plural +plural +56915 plural +plural +56918 plural +singular +singular +56922 singular +singular +singular +plural +plural +plural +plural +plural +plural +56932 singular +singular +56935 singular +singular +plural +plural +56940 singular +56942 plural +plural +56945 plural +plural +singular +singular +56950 singular +singular +singular +56954 singular +singular +56957 singular +singular +singular +singular +56962 plural +singular +plural +plural +56967 plural +singular +56971 singular +singular +plural +singular +56976 singular +singular +singular +singular +singular +plural +singular +singular +plural +singular +singular +singular +plural +56991 plural +plural +plural +plural +singular +singular +56998 singular +singular +singular +singular +singular +plural +singular +57006 singular +57008 plural +57010 plural +57013 plural +57015 plural +plural +plural +plural +plural +plural +plural +plural +singular +singular +singular +plural +singular +singular +plural +57031 plural +singular +singular +singular +plural +singular +singular +57041 plural +57043 singular +singular +57047 singular +singular +plural +57051 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +57064 singular +singular +57068 singular +singular +singular +singular +singular +57074 singular +singular +singular +plural +plural +57080 plural +plural +plural +57084 plural +singular +singular +plural +singular +singular +plural +plural +plural +singular +plural +57096 singular +singular +57099 singular +plural +singular +singular +plural +plural +singular +plural +plural +57109 singular +singular +57112 plural +singular +57116 singular +57119 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +57130 singular +singular +57133 singular +singular +plural +57137 singular +singular +plural +plural +57142 plural +singular +plural +57146 plural +singular +singular +singular +singular +singular +57154 singular +57156 singular +singular +singular +singular +singular +singular +57163 singular +57165 singular +singular +plural +plural +57170 singular +57172 singular +singular +singular +singular +singular +57179 singular +plural +plural +singular +singular +singular +57186 plural +singular +57190 singular +57192 singular +57194 plural +plural +plural +plural +57199 plural +57201 plural +57204 singular +singular +singular +singular +57209 singular +singular +57212 plural +singular +57217 singular +57219 singular +singular +plural +57223 singular +57226 singular +singular +57229 singular +singular +57232 singular +singular +singular +singular +singular +57238 singular +57241 plural +plural +57244 singular +57246 plural +57249 singular +singular +singular +singular +57254 plural +plural +singular +singular +57259 singular +plural +singular +57263 plural +plural +57266 singular +57269 singular +singular +singular +singular +57274 singular +57276 singular +singular +singular +57280 singular +singular +singular +singular +57285 singular +singular +singular +singular +singular +singular +singular +57293 singular +plural +plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +57306 plural +plural +plural +57310 singular +plural +singular +singular +singular +singular +singular +57318 singular +singular +singular +singular +singular +singular +singular +57326 singular +57328 singular +57331 singular +singular +singular +singular +57336 singular +singular +singular +singular +singular +57342 singular +57344 singular +singular +singular +singular +singular +57350 singular +singular +singular +57354 singular +singular +57358 singular +57360 singular +57363 singular +57365 singular +singular +singular +57369 plural +57372 singular +singular +plural +plural +plural +57378 singular +singular +57381 plural +singular +plural +plural +singular +57387 plural +singular +57390 plural +plural +57394 singular +57396 singular +singular +57400 plural +plural +singular +singular +57405 singular +singular +57408 singular +singular +57411 singular +57413 singular +singular +singular +singular +singular +singular +57421 singular +singular +57424 singular +singular +singular +57428 singular +singular +57431 singular +57433 singular +plural +singular +57438 singular +singular +plural +singular +singular +singular +plural +singular +57447 singular +57449 singular +singular +57452 plural +plural +plural +singular +singular +57458 singular +singular +57461 singular +singular +singular +57465 singular +singular +singular +57469 plural +plural +57473 singular +singular +singular +singular +singular +57480 singular +plural +singular +singular +singular +singular +singular +57488 singular +57490 plural +57492 plural +57495 singular +57498 plural +57500 singular +57502 singular +singular +singular +singular +singular +plural +plural +plural +57511 plural +57513 plural +57515 singular +57517 singular +singular +singular +singular +singular +plural +plural +57525 singular +57527 singular +singular +57530 singular +singular +57533 plural +plural +57537 plural +57540 plural +57542 plural +plural +plural +57546 singular +singular +57549 singular +57551 plural +plural +57554 singular +singular +57558 singular +57560 singular +singular +singular +singular +singular +singular +57567 singular +57569 singular +singular +singular +57573 singular +singular +singular +57577 singular +singular +57580 singular +57584 singular +singular +singular +singular +57590 singular +57593 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +57615 singular +57617 singular +singular +57620 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +57632 singular +singular +singular +singular +57637 singular +57639 singular +singular +57642 singular +singular +singular +57646 singular +57648 singular +57651 singular +57653 singular +singular +singular +singular +singular +singular +57660 singular +singular +singular +57664 singular +singular +singular +singular +singular +singular +singular +singular +singular +57674 singular +singular +singular +57678 singular +singular +singular +57682 singular +singular +singular +singular +singular +57688 singular +singular +singular +singular +57693 singular +singular +57696 singular +57698 singular +singular +singular +57702 singular +57704 singular +57707 singular +singular +singular +57711 singular +singular +57714 singular +57717 singular +singular +57720 singular +singular +singular +singular +57725 plural +plural +plural +plural +57730 singular +57732 singular +singular +57735 plural +singular +plural +singular +singular +57742 singular +57744 singular +plural +singular +plural +57749 singular +57751 singular +singular +57754 singular +57757 singular +singular +57760 singular +57762 singular +singular +singular +singular +singular +57768 singular +plural +plural +singular +singular +singular +57775 singular +57779 singular +singular +singular +singular +57784 singular +57786 singular +singular +singular +57790 plural +plural +singular +plural +plural +singular +singular +singular +57799 singular +singular +57802 singular +57804 plural +singular +plural +singular +singular +singular +57811 singular +singular +singular +singular +57816 plural +plural +plural +singular +57821 singular +singular +57824 plural +57826 plural +plural +57829 singular +singular +singular +singular +plural +plural +singular +singular +57840 singular +57842 singular +57844 singular +57846 singular +57848 singular +singular +57851 singular +singular +57854 singular +singular +57857 singular +singular +57860 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +57876 singular +57878 singular +singular +singular +singular +singular +singular +57885 singular +singular +57889 singular +singular +singular +singular +singular +singular +57896 plural +singular +singular +57900 singular +singular +singular +plural +plural +57907 singular +singular +singular +singular +57912 singular +singular +57915 singular +singular +57919 singular +singular +57923 singular +singular +singular +singular +singular +57929 plural +57931 singular +singular +singular +57935 plural +singular +singular +singular +singular +singular +singular +57943 singular +singular +singular +singular +plural +plural +57950 plural +plural +plural +57954 singular +singular +singular +singular +singular +singular +plural +singular +singular +plural +singular +57966 plural +singular +57970 plural +57972 plural +plural +plural +plural +57977 singular +singular +57980 plural +singular +singular +plural +57985 singular +57987 plural +57989 plural +plural +57992 plural +plural +57995 plural +plural +plural +singular +singular +58001 plural +plural +plural +58005 plural +plural +singular +58009 plural +singular +plural +58013 singular +singular +singular +plural +plural +singular +58020 plural +singular +58023 plural +plural +58026 singular +58028 plural +plural +plural +58032 plural +plural +58035 singular +singular +58038 singular +singular +58041 singular +singular +58044 plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +58055 plural +singular +58058 plural +58060 singular +plural +58063 singular +singular +singular +58067 singular +singular +58071 singular +singular +singular +singular +58076 singular +58078 singular +58080 singular +58082 singular +singular +singular +singular +singular +singular +58089 singular +singular +58093 singular +singular +58098 singular +singular +singular +58104 plural +plural +singular +singular +plural +plural +singular +58112 singular +58115 singular +singular +singular +plural +58120 plural +singular +58123 singular +singular +58126 singular +singular +58129 plural +plural +58132 singular +58135 singular +singular +58138 singular +singular +58141 singular +singular +singular +58145 singular +58147 plural +plural +58150 singular +58152 singular +singular +plural +plural +58157 plural +plural +58160 plural +58162 singular +singular +58165 singular +singular +58168 plural +plural +58171 plural +singular +singular +58175 plural +58177 plural +58179 singular +singular +plural +singular +singular +plural +58188 singular +58190 singular +singular +58193 plural +plural +plural +58197 plural +plural +plural +58202 singular +singular +58205 singular +singular +58208 plural +singular +58211 singular +singular +58215 plural +singular +singular +singular +58220 singular +58222 singular +singular +singular +singular +58227 plural +singular +58230 plural +singular +singular +58235 singular +singular +singular +58239 singular +singular +singular +singular +58244 plural +plural +58247 singular +58249 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +58263 singular +plural +plural +singular +plural +plural +singular +58271 singular +singular +singular +58275 singular +singular +singular +singular +58280 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +58293 singular +singular +singular +singular +58298 singular +plural +plural +58302 singular +plural +58305 singular +singular +58310 plural +plural +singular +singular +58316 singular +singular +58319 singular +singular +singular +plural +plural +singular +58326 singular +singular +singular +singular +singular +58333 singular +singular +singular +singular +singular +singular +singular +58341 plural +plural +58344 plural +58346 plural +58348 singular +58351 plural +58353 singular +singular +singular +singular +58358 plural +plural +58362 singular +58364 plural +58367 singular +singular +singular +58373 plural +singular +singular +singular +singular +58379 plural +58381 plural +plural +plural +58386 singular +singular +plural +58390 plural +plural +plural +58394 singular +plural +58397 plural +58399 singular +singular +singular +58403 singular +singular +singular +singular +singular +58409 singular +singular +plural +58413 singular +singular +58416 plural +plural +plural +plural +plural +plural +58423 plural +58425 singular +singular +58428 plural +58430 singular +singular +singular +58434 singular +singular +58437 singular +singular +singular +singular +58442 singular +singular +singular +singular +singular +58448 singular +58450 singular +singular +58453 singular +singular +singular +singular +singular +singular +singular +singular +singular +58463 singular +singular +plural +58467 plural +singular +plural +plural +singular +singular +58475 singular +singular +58478 plural +58480 plural +singular +plural +58484 singular +58486 plural +plural +singular +58490 singular +singular +singular +singular +singular +58496 singular +58498 singular +singular +singular +58502 singular +singular +58505 singular +singular +58508 plural +58510 singular +58512 singular +singular +singular +singular +58517 plural +singular +singular +58521 singular +singular +58524 plural +plural +plural +58528 plural +plural +58532 plural +singular +singular +singular +singular +58538 singular +singular +58541 plural +plural +plural +58545 plural +plural +58548 plural +58550 singular +singular +58553 plural +plural +singular +singular +58558 singular +singular +singular +58562 plural +singular +plural +singular +plural +singular +singular +58570 singular +singular +singular +58574 singular +singular +singular +singular +singular +58580 singular +58582 plural +singular +singular +58586 singular +singular +singular +plural +singular +singular +singular +singular +58595 singular +singular +singular +singular +singular +58602 singular +plural +58606 singular +singular +singular +singular +singular +58612 singular +singular +singular +singular +singular +singular +58620 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +58632 singular +singular +singular +singular +singular +58638 singular +singular +singular +58642 singular +singular +singular +singular +58647 singular +singular +singular +singular +singular +58654 singular +singular +58658 singular +singular +singular +singular +singular +58664 singular +singular +singular +singular +singular +singular +singular +58672 singular +singular +singular +singular +58677 singular +singular +singular +singular +singular +58683 singular +singular +singular +58688 singular +singular +58691 singular +singular +singular +singular +singular +singular +singular +singular +58700 singular +singular +58703 singular +singular +58706 singular +58709 singular +58711 singular +singular +singular +singular +58716 singular +singular +singular +58720 plural +plural +singular +singular +singular +singular +singular +58728 singular +58731 singular +singular +singular +singular +singular +58738 plural +58740 singular +singular +singular +singular +singular +58746 singular +singular +singular +singular +singular +singular +58754 singular +singular +58757 singular +singular +plural +singular +58762 singular +58764 singular +singular +singular +singular +singular +singular +58772 singular +singular +singular +singular +plural +plural +58779 singular +singular +58782 singular +singular +singular +58786 singular +singular +58790 singular +singular +58793 singular +58795 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +58807 singular +plural +singular +singular +58812 singular +singular +singular +singular +58817 plural +singular +plural +58821 singular +singular +plural +58826 singular +plural +singular +58830 singular +singular +58833 singular +singular +58836 singular +58838 singular +58840 singular +singular +plural +plural +58845 singular +singular +58848 plural +singular +plural +plural +singular +singular +58855 singular +singular +58858 plural +58860 singular +plural +plural +singular +58865 plural +58867 plural +58869 singular +58871 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +58886 singular +singular +singular +singular +singular +58892 singular +58894 plural +58898 singular +singular +singular +plural +plural +plural +58905 singular +plural +singular +singular +58911 plural +plural +plural +58915 plural +singular +singular +58919 plural +58921 singular +plural +plural +singular +singular +58927 singular +singular +singular +singular +58932 singular +58934 singular +58939 plural +plural +plural +plural +58944 singular +58947 plural +plural +58950 plural +58953 plural +plural +58956 plural +singular +singular +plural +plural +58963 singular +singular +singular +singular +58968 singular +singular +58971 singular +singular +singular +58975 singular +58977 singular +58979 singular +58982 singular +singular +singular +58986 singular +singular +singular +singular +singular +singular +singular +singular +singular +58996 singular +singular +singular +59000 singular +singular +singular +59004 singular +59006 singular +singular +59009 singular +59012 singular +singular +singular +plural +plural +59019 singular +singular +59022 singular +singular +59026 singular +59028 singular +singular +singular +59033 singular +singular +singular +singular +singular +singular +59041 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +59057 singular +singular +singular +59061 singular +59063 singular +59065 singular +59067 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +59078 singular +singular +59081 singular +59083 singular +singular +singular +singular +singular +singular +59090 plural +singular +singular +59094 singular +singular +singular +singular +59099 singular +59102 singular +singular +singular +singular +singular +singular +singular +59110 singular +singular +singular +singular +59115 singular +59117 singular +singular +singular +59121 singular +singular +singular +plural +plural +plural +59128 singular +singular +59131 singular +singular +plural +59135 singular +singular +singular +singular +59140 singular +59142 singular +singular +59145 singular +singular +singular +singular +singular +singular +59152 plural +singular +singular +singular +singular +59158 plural +plural +59163 singular +singular +59167 singular +singular +singular +singular +59172 singular +singular +59175 singular +plural +plural +59179 singular +singular +singular +singular +59184 singular +singular +59187 singular +singular +59190 singular +59192 plural +plural +plural +plural +59198 singular +singular +singular +singular +singular +59204 singular +59206 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +59219 singular +singular +singular +singular +singular +singular +59226 singular +59229 singular +59231 plural +singular +singular +singular +59237 singular +singular +plural +plural +59242 singular +singular +singular +singular +singular +59249 singular +singular +59252 singular +singular +59255 singular +singular +singular +singular +singular +singular +59262 plural +plural +singular +singular +59268 plural +plural +59271 singular +singular +singular +singular +singular +singular +singular +59279 singular +singular +59283 plural +plural +59287 singular +singular +singular +59291 plural +plural +plural +59296 plural +59298 singular +singular +singular +singular +59303 singular +singular +59307 plural +plural +plural +59312 singular +plural +plural +plural +59317 singular +plural +plural +singular +59322 singular +59324 singular +plural +plural +singular +singular +plural +plural +plural +singular +singular +singular +59336 singular +singular +59340 plural +59342 singular +59345 singular +singular +singular +59349 singular +singular +singular +plural +plural +plural +59356 plural +plural +59359 plural +plural +plural +59363 singular +singular +plural +59368 singular +singular +plural +59372 plural +plural +59376 singular +plural +59379 singular +singular +singular +singular +singular +singular +59386 singular +singular +singular +singular +singular +59392 plural +plural +plural +plural +59397 plural +plural +59401 plural +plural +singular +singular +singular +plural +singular +59410 singular +singular +singular +singular +singular +singular +singular +singular +singular +59420 singular +singular +singular +singular +59426 singular +plural +59429 singular +59432 plural +59434 singular +59436 singular +singular +59440 singular +plural +singular +singular +59445 singular +singular +singular +singular +59450 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +59464 singular +59466 singular +59469 singular +plural +59472 singular +59474 plural +singular +singular +plural +59479 plural +plural +plural +plural +59484 singular +singular +singular +singular +singular +59490 plural +plural +singular +59494 singular +singular +singular +singular +singular +singular +singular +singular +59503 singular +singular +singular +singular +59508 singular +singular +singular +singular +singular +59514 singular +singular +singular +singular +59520 singular +singular +singular +singular +singular +singular +singular +singular +singular +59530 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +59541 singular +singular +59544 singular +singular +singular +singular +59549 singular +singular +singular +singular +59555 singular +singular +59558 singular +59560 singular +singular +singular +59564 singular +singular +singular +singular +singular +singular +singular +59572 singular +singular +plural +plural +singular +59578 singular +singular +singular +59582 plural +plural +59585 singular +singular +singular +singular +59590 singular +singular +singular +singular +plural +singular +plural +59598 singular +singular +59602 plural +plural +singular +singular +59607 singular +singular +singular +singular +singular +singular +59614 singular +singular +59618 singular +singular +singular +59622 singular +singular +singular +singular +singular +59628 singular +singular +singular +59632 singular +59634 singular +singular +singular +59638 singular +59640 singular +singular +singular +singular +59645 singular +59647 singular +singular +singular +plural +59652 singular +59654 plural +singular +plural +singular +59660 singular +plural +plural +59665 singular +singular +59668 plural +59670 plural +59672 plural +singular +59675 singular +singular +singular +plural +59680 plural +plural +59683 singular +plural +59687 plural +plural +plural +59691 singular +plural +plural +59695 plural +plural +plural +59699 singular +plural +59702 plural +singular +singular +singular +singular +singular +59709 singular +singular +singular +59713 singular +singular +59718 singular +59720 singular +singular +singular +singular +singular +singular +59727 singular +59729 singular +singular +59733 singular +singular +singular +59737 singular +singular +singular +singular +singular +singular +singular +59745 singular +singular +59749 singular +singular +59753 singular +singular +59756 singular +singular +singular +59761 singular +plural +singular +singular +plural +59767 singular +singular +59771 singular +plural +59774 singular +singular +singular +singular +singular +plural +plural +plural +59786 singular +plural +59789 singular +59791 singular +plural +59795 singular +59797 singular +singular +plural +59801 singular +59803 singular +plural +59806 singular +59809 singular +singular +59812 plural +plural +59816 singular +singular +plural +singular +singular +singular +singular +singular +singular +59826 plural +59828 singular +59830 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +59841 singular +singular +59844 singular +singular +singular +singular +59849 singular +singular +59854 singular +59856 plural +singular +59860 singular +singular +singular +plural +59866 plural +singular +59869 plural +singular +singular +singular +singular +singular +plural +singular +singular +59879 singular +plural +singular +singular +singular +singular +singular +singular +59888 plural +singular +59892 singular +singular +singular +singular +singular +singular +singular +singular +singular +59902 singular +singular +singular +plural +singular +singular +59909 singular +59911 singular +59913 singular +singular +59916 singular +singular +59919 singular +singular +plural +plural +plural +singular +singular +plural +59928 singular +59930 singular +59932 singular +singular +59935 singular +singular +singular +plural +plural +singular +plural +singular +59944 singular +59946 singular +singular +59949 singular +singular +59952 singular +59957 plural +plural +plural +plural +59963 singular +plural +singular +singular +59968 singular +plural +plural +plural +singular +singular +singular +singular +59977 plural +plural +singular +59981 singular +59983 singular +singular +singular +59987 singular +59989 singular +plural +59992 singular +singular +singular +singular +singular +59998 singular +singular +singular +60002 singular +singular +60005 singular +plural +singular +60009 singular +singular +singular +singular +singular +60015 plural +singular +plural +plural +plural +plural +plural +singular +singular +singular +singular +60027 singular +singular +singular +plural +60032 singular +60034 plural +60036 singular +singular +singular +singular +singular +singular +singular +60044 singular +singular +60047 singular +60050 singular +singular +60053 singular +plural +plural +singular +60059 plural +singular +60063 plural +singular +60066 singular +plural +plural +singular +60071 plural +60074 singular +singular +singular +singular +60079 singular +60081 plural +plural +singular +60085 singular +singular +60088 plural +plural +60091 singular +singular +singular +plural +plural +60097 singular +60099 singular +singular +singular +60103 plural +60105 singular +singular +60108 plural +singular +singular +plural +plural +singular +60115 singular +plural +singular +singular +singular +singular +singular +60123 singular +singular +singular +singular +60128 singular +singular +singular +singular +singular +singular +60135 singular +singular +singular +singular +singular +singular +60142 singular +singular +singular +60146 singular +singular +60149 singular +plural +60152 singular +60155 singular +singular +singular +singular +60160 singular +singular +60163 singular +singular +singular +singular +singular +singular +singular +60171 singular +singular +singular +singular +singular +60178 singular +plural +60181 singular +60183 singular +plural +singular +60187 singular +singular +plural +plural +singular +60193 singular +60195 singular +singular +singular +plural +60200 singular +singular +60203 singular +singular +singular +singular +plural +singular +plural +60211 plural +singular +60214 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +60225 singular +singular +singular +singular +plural +singular +plural +60233 singular +plural +plural +plural +singular +plural +singular +singular +singular +plural +singular +singular +singular +singular +plural +60250 singular +singular +singular +singular +singular +plural +60257 singular +plural +singular +singular +60262 singular +plural +60265 singular +singular +plural +singular +60270 singular +60272 plural +60274 plural +singular +60277 plural +60279 singular +60281 singular +singular +60284 singular +singular +singular +singular +singular +60291 singular +plural +60297 singular +plural +60300 plural +singular +60303 plural +60305 singular +singular +singular +singular +singular +60312 singular +60314 singular +singular +60318 singular +singular +singular +60322 singular +singular +singular +60327 singular +singular +singular +singular +60332 singular +plural +plural +60336 singular +singular +singular +singular +singular +singular +60343 singular +singular +singular +singular +singular +singular +singular +singular +60352 singular +60354 singular +singular +singular +singular +60359 singular +singular +singular +singular +singular +singular +60366 singular +singular +singular +60370 plural +plural +plural +60374 singular +singular +singular +singular +plural +plural +60381 singular +singular +60384 plural +60386 singular +singular +60389 singular +singular +60393 singular +60396 singular +60398 singular +singular +60402 plural +60406 singular +plural +singular +singular +singular +singular +plural +plural +plural +singular +singular +60418 singular +singular +60421 singular +singular +singular +singular +singular +60428 singular +60430 plural +60432 singular +60435 singular +singular +60438 singular +singular +60442 singular +singular +60445 singular +60447 plural +plural +60451 singular +singular +plural +60455 singular +60457 plural +60459 singular +60461 plural +plural +singular +60465 plural +singular +60468 singular +plural +plural +60472 singular +plural +60475 singular +singular +singular +singular +singular +60481 singular +singular +plural +60485 plural +plural +plural +60489 singular +singular +singular +singular +singular +plural +singular +plural +60498 singular +singular +singular +singular +60503 plural +plural +singular +plural +plural +60509 singular +singular +singular +60513 singular +singular +singular +singular +plural +plural +singular +60521 singular +60523 singular +singular +singular +plural +singular +plural +60530 singular +singular +singular +singular +60535 plural +singular +60538 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +60549 plural +plural +60552 singular +plural +singular +singular +singular +singular +singular +60560 singular +singular +singular +singular +singular +60566 plural +plural +singular +plural +plural +singular +plural +60574 plural +singular +singular +singular +plural +60580 singular +plural +plural +60584 singular +singular +60587 singular +singular +singular +singular +singular +singular +60594 plural +singular +plural +60598 plural +plural +singular +60602 singular +singular +singular +singular +plural +60608 plural +singular +plural +60612 singular +singular +plural +60616 singular +plural +60619 plural +plural +60622 singular +plural +60625 singular +singular +plural +singular +60630 singular +60632 singular +plural +singular +singular +60637 singular +singular +singular +singular +plural +plural +singular +plural +60646 plural +plural +60649 singular +singular +plural +singular +plural +60655 singular +singular +plural +singular +60661 singular +singular +plural +60665 singular +singular +singular +singular +singular +60673 singular +singular +60676 plural +60678 singular +singular +plural +60682 singular +singular +60685 singular +singular +plural +singular +singular +plural +singular +singular +singular +singular +singular +plural +60698 singular +singular +singular +singular +singular +singular +60705 singular +plural +60708 plural +plural +60711 singular +singular +singular +plural +60716 singular +singular +plural +60720 plural +plural +plural +60724 plural +60726 singular +singular +singular +60731 plural +singular +singular +singular +60737 singular +60739 singular +plural +singular +60743 plural +60746 singular +60748 plural +60750 singular +singular +plural +singular +singular +singular +60757 singular +singular +singular +singular +60762 plural +plural +60765 singular +60767 plural +plural +singular +singular +singular +singular +60774 plural +60778 plural +60780 plural +60782 singular +60784 singular +singular +singular +60789 singular +singular +singular +singular +60794 singular +singular +plural +singular +60799 plural +singular +60803 singular +singular +singular +singular +singular +singular +plural +60811 singular +singular +singular +singular +singular +singular +singular +60819 singular +singular +singular +singular +singular +60825 singular +60828 plural +plural +60832 singular +60834 singular +plural +plural +singular +plural +60841 plural +plural +plural +plural +60846 singular +singular +60849 singular +singular +singular +plural +singular +singular +60856 singular +singular +60859 plural +plural +60863 plural +singular +singular +60867 singular +60869 plural +singular +plural +60874 singular +singular +singular +plural +plural +plural +60881 singular +singular +plural +60885 plural +plural +60888 singular +60890 singular +60893 plural +singular +60897 singular +60899 singular +singular +singular +60903 singular +60905 plural +singular +singular +60909 singular +60912 plural +singular +plural +singular +singular +singular +plural +singular +singular +60922 singular +singular +singular +singular +plural +singular +plural +60930 singular +singular +60935 singular +singular +singular +60940 singular +60942 plural +60945 singular +singular +singular +60949 plural +60951 singular +singular +singular +singular +singular +60957 singular +60960 singular +60963 singular +60966 singular +60969 plural +60971 singular +60974 singular +60977 singular +singular +singular +60982 plural +singular +60986 singular +60988 singular +singular +singular +singular +singular +singular +60995 singular +plural +plural +61001 plural +61006 singular +singular +singular +singular +singular +singular +singular +plural +61015 singular +singular +singular +61020 singular +61022 singular +61024 plural +singular +singular +61028 plural +plural +singular +plural +singular +singular +singular +61037 singular +singular +singular +61041 singular +plural +plural +plural +singular +singular +singular +plural +singular +61051 singular +singular +61055 singular +singular +singular +61059 singular +plural +singular +61064 plural +singular +61068 singular +61070 plural +singular +61073 plural +61075 plural +plural +singular +61079 plural +singular +singular +singular +singular +singular +plural +singular +61089 plural +singular +61093 singular +61095 plural +singular +61099 singular +61101 singular +singular +61104 plural +singular +singular +singular +singular +singular +singular +singular +61113 plural +singular +singular +singular +singular +61119 plural +singular +61123 singular +plural +61126 singular +plural +61129 plural +61131 singular +singular +61135 plural +singular +61139 singular +61141 plural +singular +61145 singular +plural +61148 plural +61150 plural +plural +61153 singular +singular +singular +plural +plural +61159 singular +singular +plural +61163 singular +singular +61166 singular +singular +singular +singular +singular +61172 singular +singular +singular +singular +61178 singular +singular +singular +61182 singular +singular +singular +61186 singular +singular +61189 singular +singular +61192 singular +singular +61197 plural +61199 singular +plural +61203 singular +plural +61206 singular +plural +singular +singular +61211 singular +singular +plural +singular +singular +61217 plural +61220 singular +singular +singular +singular +61225 plural +singular +61229 singular +plural +61232 singular +plural +singular +singular +singular +plural +61239 singular +singular +singular +61245 plural +singular +61248 singular +singular +singular +plural +61253 plural +61255 singular +singular +plural +singular +singular +plural +61262 plural +singular +plural +singular +singular +61270 plural +singular +plural +61274 singular +61276 singular +singular +singular +plural +61281 singular +singular +singular +61285 singular +singular +singular +plural +61291 singular +plural +61294 singular +singular +singular +singular +61299 plural +61301 singular +singular +singular +singular +plural +61307 plural +singular +plural +61311 plural +61313 singular +61315 singular +singular +singular +singular +61320 singular +singular +61323 singular +61325 singular +singular +61328 singular +singular +singular +61332 singular +61334 singular +singular +plural +plural +plural +singular +singular +61343 singular +singular +61346 singular +singular +singular +61350 plural +61352 singular +plural +61356 singular +singular +61359 singular +singular +singular +61363 singular +plural +61367 singular +singular +singular +plural +singular +61373 plural +singular +singular +singular +61378 singular +61380 plural +singular +61383 plural +plural +singular +singular +plural +61390 singular +singular +61393 singular +singular +61396 singular +singular +plural +singular +plural +61403 singular +singular +plural +61407 singular +singular +singular +plural +61412 plural +singular +singular +singular +singular +plural +singular +singular +61421 singular +plural +plural +singular +61426 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +61438 singular +singular +singular +singular +61443 singular +singular +singular +singular +singular +61449 singular +singular +singular +singular +singular +plural +singular +singular +61458 singular +singular +singular +singular +singular +61464 plural +singular +singular +singular +singular +singular +61471 singular +singular +singular +singular +singular +singular +singular +61479 singular +singular +singular +singular +singular +singular +singular +singular +61488 singular +61490 singular +61492 singular +singular +singular +61496 singular +singular +singular +singular +singular +61502 singular +singular +singular +61507 singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +61518 singular +singular +plural +plural +singular +plural +singular +61526 singular +singular +singular +plural +61531 plural +61533 plural +plural +singular +singular +61538 singular +plural +61541 plural +plural +plural +singular +singular +singular +plural +61549 plural +plural +61552 plural +61556 singular +singular +61559 plural +61561 singular +singular +singular +singular +61566 plural +singular +61570 singular +singular +singular +61575 plural +singular +singular +61579 plural +plural +61582 plural +plural +plural +plural +singular +61588 plural +plural +plural +61592 singular +61594 plural +61597 singular +61599 singular +singular +61602 plural +61604 singular +singular +plural +singular +61609 singular +singular +singular +singular +singular +plural +61616 singular +singular +singular +singular +singular +singular +61623 plural +singular +61626 plural +61628 singular +61630 plural +singular +singular +plural +61635 singular +singular +singular +singular +singular +singular +61642 singular +61644 singular +61646 plural +singular +61650 singular +singular +singular +singular +61655 singular +singular +singular +61661 singular +singular +61664 plural +singular +61667 singular +singular +61670 plural +singular +singular +singular +singular +singular +61677 plural +singular +singular +plural +singular +singular +singular +61685 singular +singular +singular +plural +61691 plural +61693 singular +singular +61696 singular +61698 singular +61700 singular +singular +61703 singular +61705 singular +plural +61708 singular +singular +61712 singular +plural +61715 singular +singular +61718 singular +singular +61721 plural +61723 singular +61725 singular +61727 singular +singular +singular +plural +61732 singular +singular +singular +singular +singular +singular +singular +singular +61741 singular +singular +61744 singular +singular +singular +singular +plural +61750 singular +singular +61754 plural +singular +singular +singular +61759 plural +plural +61762 plural +61764 singular +61768 plural +singular +singular +61774 plural +plural +61777 singular +singular +plural +61781 singular +61783 plural +singular +plural +61787 singular +singular +61790 singular +singular +61793 singular +61796 plural +61798 plural +plural +61801 singular +singular +singular +61805 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +61817 plural +singular +61820 plural +singular +singular +61824 plural +61826 singular +61828 singular +61830 plural +plural +61833 singular +61835 singular +singular +singular +61839 singular +singular +singular +61843 singular +plural +61846 singular +singular +singular +singular +singular +singular +singular +61855 singular +singular +plural +plural +61860 singular +61862 plural +singular +singular +singular +singular +singular +singular +singular +61871 singular +singular +61874 singular +singular +singular +singular +61879 singular +singular +singular +61883 singular +61885 singular +singular +singular +61889 plural +plural +61892 singular +singular +singular +61896 singular +plural +singular +singular +singular +61902 singular +61904 singular +singular +singular +singular +singular +61910 plural +singular +singular +61914 plural +plural +singular +singular +singular +61920 plural +plural +singular +61924 singular +singular +plural +singular +61929 singular +singular +61932 singular +singular +singular +61936 plural +plural +singular +61940 singular +61942 singular +singular +singular +singular +singular +singular +61950 singular +singular +61954 plural +plural +singular +61958 singular +singular +singular +singular +singular +61965 plural +plural +61969 plural +plural +plural +singular +61975 plural +61977 plural +61979 plural +61981 singular +singular +plural +plural +plural +61987 singular +singular +61990 singular +plural +singular +plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +62004 singular +62006 singular +singular +singular +singular +62011 plural +62014 singular +plural +singular +singular +plural +62020 plural +62023 plural +62027 singular +plural +singular +plural +62032 plural +plural +singular +singular +singular +singular +singular +singular +plural +62042 singular +singular +62046 singular +plural +plural +plural +62052 singular +singular +singular +singular +singular +62058 plural +singular +singular +62062 singular +62064 plural +singular +62067 singular +singular +singular +singular +singular +singular +62074 singular +singular +singular +singular +singular +62080 singular +singular +singular +singular +singular +singular +62087 singular +singular +singular +singular +singular +62093 singular +singular +singular +singular +singular +singular +singular +singular +62102 singular +singular +singular +singular +singular +singular +singular +singular +singular +62113 singular +singular +62116 singular +singular +62119 singular +singular +62122 plural +plural +plural +plural +plural +singular +singular +62130 plural +singular +62133 plural +62135 singular +singular +62138 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +62149 singular +singular +singular +singular +plural +plural +62156 singular +singular +singular +62161 singular +singular +62164 singular +singular +singular +singular +singular +62170 singular +singular +62173 singular +singular +singular +singular +singular +singular +singular +62181 singular +singular +singular +62185 singular +singular +singular +singular +62190 singular +singular +singular +62194 singular +singular +62198 singular +singular +singular +singular +singular +singular +singular +singular +singular +62208 singular +singular +singular +62212 singular +singular +singular +62216 singular +singular +singular +singular +singular +singular +singular +62225 singular +62227 plural +plural +singular +singular +singular +singular +singular +singular +62236 singular +62238 plural +plural +plural +62242 plural +plural +singular +plural +62247 singular +singular +62250 plural +62253 singular +singular +62256 plural +singular +singular +62260 singular +62262 singular +singular +singular +singular +singular +62268 plural +plural +singular +62273 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +62286 singular +62288 singular +62291 singular +singular +62294 plural +plural +plural +plural +62300 singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +plural +singular +plural +plural +plural +singular +singular +62319 plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +62332 singular +singular +singular +singular +singular +singular +62340 singular +singular +62343 singular +singular +62348 singular +singular +singular +62352 singular +singular +singular +singular +singular +62358 singular +singular +singular +62362 singular +singular +singular +singular +62367 singular +62369 plural +singular +62373 singular +62375 plural +plural +singular +singular +singular +singular +62382 singular +62384 singular +singular +singular +62388 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +62400 singular +singular +singular +62404 singular +singular +62407 singular +62410 singular +singular +62414 singular +singular +62417 plural +singular +singular +62421 singular +singular +62424 singular +singular +62427 singular +62430 plural +62432 plural +62434 singular +singular +62438 plural +62440 plural +singular +singular +62444 singular +singular +singular +62449 plural +62451 singular +singular +singular +singular +singular +singular +plural +plural +62460 plural +singular +62464 singular +singular +singular +singular +62470 singular +plural +singular +62474 singular +plural +singular +singular +plural +singular +plural +62483 singular +singular +plural +plural +singular +plural +singular +plural +plural +plural +62494 singular +62496 singular +62498 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +62511 singular +62514 singular +singular +singular +singular +62519 singular +singular +singular +62523 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +62534 singular +singular +singular +singular +62539 plural +plural +singular +62543 singular +singular +singular +singular +62548 singular +singular +singular +singular +singular +singular +singular +62556 plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +62570 singular +62572 singular +singular +singular +62577 singular +singular +singular +singular +singular +singular +singular +singular +62586 plural +plural +plural +plural +plural +62593 singular +plural +plural +62598 singular +singular +singular +singular +62603 singular +62606 singular +singular +singular +singular +62611 singular +singular +singular +singular +singular +singular +singular +singular +62620 singular +singular +singular +62624 singular +singular +62628 singular +singular +62631 singular +singular +62634 singular +singular +singular +singular +singular +singular +62641 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +62655 singular +singular +62658 singular +62660 plural +plural +62663 singular +plural +singular +singular +singular +62669 singular +singular +62672 singular +singular +plural +62676 singular +singular +plural +62680 singular +singular +62683 plural +singular +plural +singular +singular +plural +plural +62691 plural +62693 plural +62695 singular +62697 singular +singular +62700 singular +singular +singular +singular +62706 singular +singular +singular +singular +singular +62712 singular +62714 plural +plural +plural +singular +62719 plural +plural +singular +singular +singular +62725 singular +singular +plural +singular +62730 plural +62732 singular +62734 plural +singular +singular +singular +plural +plural +62741 plural +singular +plural +62745 singular +62748 singular +singular +62751 singular +plural +singular +singular +plural +singular +62759 plural +62761 singular +singular +singular +62765 singular +62767 singular +singular +singular +62771 singular +singular +singular +singular +62776 singular +singular +singular +62780 singular +plural +singular +singular +singular +62787 plural +singular +plural +plural +62792 plural +plural +plural +plural +singular +singular +singular +plural +singular +singular +plural +singular +plural +62806 plural +62808 singular +62810 singular +62812 singular +singular +plural +singular +plural +plural +plural +singular +plural +62823 singular +singular +singular +62828 singular +singular +singular +singular +62834 singular +singular +singular +singular +singular +singular +62841 singular +62843 singular +62845 singular +singular +62849 singular +singular +singular +62853 singular +singular +62856 singular +singular +singular +62860 singular +singular +62863 singular +singular +singular +singular +62868 singular +singular +62871 singular +62873 singular +singular +62876 singular +62878 singular +singular +62881 singular +singular +singular +62885 singular +singular +singular +62889 singular +62892 singular +singular +singular +62897 singular +singular +singular +singular +singular +singular +singular +singular +62906 singular +singular +singular +singular +62911 singular +62913 plural +plural +plural +plural +62918 singular +singular +62921 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +62934 singular +singular +singular +plural +plural +plural +singular +62942 singular +singular +62945 singular +62947 singular +62949 singular +singular +singular +62954 singular +62956 singular +singular +singular +singular +singular +singular +62963 singular +62965 singular +plural +plural +singular +singular +singular +plural +62973 plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +singular +plural +plural +plural +62991 plural +singular +62995 singular +62998 singular +singular +plural +63002 singular +63004 plural +singular +singular +63008 singular +singular +singular +singular +singular +63014 singular +singular +singular +singular +singular +singular +63021 singular +63023 singular +plural +63027 singular +plural +63034 singular +singular +singular +63038 singular +63040 singular +singular +singular +63044 singular +63046 singular +singular +63049 singular +singular +singular +singular +singular +singular +singular +plural +plural +63059 singular +singular +singular +plural +plural +plural +plural +63068 singular +singular +singular +singular +singular +63074 singular +singular +singular +63078 singular +singular +63084 plural +singular +singular +plural +plural +plural +plural +63092 singular +singular +singular +plural +plural +63099 singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +63113 plural +plural +plural +singular +singular +plural +plural +plural +singular +63123 plural +plural +plural +singular +singular +singular +63130 singular +singular +63133 singular +singular +singular +singular +63138 plural +63140 singular +63142 singular +63144 plural +63146 plural +63148 plural +singular +63151 plural +63153 singular +singular +singular +63157 singular +singular +singular +plural +plural +plural +singular +plural +63167 singular +singular +singular +plural +singular +63174 plural +plural +plural +plural +63179 plural +63181 singular +singular +singular +singular +singular +singular +singular +63189 singular +singular +singular +singular +singular +singular +singular +singular +singular +63199 singular +singular +singular +63203 singular +singular +singular +singular +63208 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +63222 singular +singular +singular +singular +singular +singular +singular +63231 singular +singular +singular +singular +singular +singular +singular +63239 plural +plural +63242 singular +singular +singular +singular +63248 plural +singular +63251 singular +singular +singular +singular +singular +singular +singular +singular +singular +63261 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +63273 singular +singular +singular +singular +singular +singular +singular +63281 singular +singular +singular +singular +singular +singular +63288 plural +plural +63291 singular +singular +63295 singular +63297 singular +singular +plural +plural +63302 singular +singular +63305 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +63316 plural +plural +plural +plural +63321 plural +63323 plural +plural +plural +63328 plural +plural +plural +singular +singular +63334 singular +singular +singular +singular +singular +63341 singular +singular +plural +63345 plural +63347 singular +singular +63350 plural +singular +plural +plural +63355 singular +plural +plural +singular +singular +singular +singular +singular +63364 singular +singular +singular +63368 singular +63370 singular +singular +singular +63374 singular +singular +singular +singular +singular +63380 singular +singular +63383 plural +singular +63387 plural +plural +63390 singular +plural +63393 singular +singular +singular +singular +singular +63399 singular +63402 singular +singular +singular +plural +63407 singular +plural +63411 plural +singular +singular +singular +singular +63417 singular +singular +singular +singular +singular +63423 singular +63425 singular +singular +plural +plural +63430 singular +singular +singular +singular +singular +63436 singular +singular +singular +63440 singular +63442 singular +singular +singular +singular +63447 singular +63449 singular +singular +singular +63453 singular +singular +singular +singular +singular +singular +singular +63461 singular +63463 plural +63466 plural +singular +singular +singular +singular +63472 plural +singular +plural +63476 plural +plural +63479 singular +singular +plural +plural +63485 singular +63487 singular +singular +63490 singular +singular +63494 singular +singular +singular +singular +63499 singular +63501 singular +singular +singular +63507 singular +singular +plural +plural +63513 singular +singular +singular +plural +singular +singular +63520 singular +singular +plural +plural +singular +singular +singular +singular +63530 singular +singular +singular +63534 singular +63536 singular +singular +singular +singular +63541 singular +singular +63544 singular +63546 singular +63548 singular +singular +63552 singular +singular +singular +singular +singular +singular +singular +63560 singular +plural +plural +singular +singular +63566 singular +singular +63570 plural +63572 plural +singular +63575 singular +singular +singular +63579 singular +singular +singular +63583 plural +63585 singular +singular +63588 plural +plural +63593 singular +singular +singular +singular +singular +singular +singular +63601 singular +singular +63604 singular +singular +63607 singular +singular +plural +plural +plural +63614 singular +63616 singular +63618 singular +singular +singular +singular +63623 singular +63625 singular +singular +63628 singular +plural +plural +plural +63633 singular +singular +singular +singular +63638 singular +singular +singular +63643 plural +plural +singular +63648 singular +63650 singular +singular +63654 singular +63656 singular +singular +singular +singular +singular +singular +63663 singular +singular +63666 singular +63668 singular +63671 plural +singular +singular +63675 singular +singular +63678 plural +63681 plural +63684 plural +plural +plural +63688 singular +singular +63691 singular +singular +63694 singular +63697 singular +singular +63700 singular +singular +63703 singular +63705 plural +63707 plural +plural +63710 singular +singular +singular +singular +singular +singular +63717 singular +singular +63720 singular +63722 plural +plural +63725 plural +singular +plural +singular +singular +singular +singular +plural +63734 plural +singular +singular +singular +63740 singular +63742 plural +singular +plural +singular +singular +63748 plural +63751 singular +singular +singular +singular +63757 singular +63759 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +63772 singular +singular +singular +singular +singular +singular +63779 singular +singular +singular +singular +singular +63785 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +63799 singular +singular +singular +singular +singular +singular +singular +63807 singular +singular +63811 singular +63813 singular +singular +63816 singular +63818 plural +plural +singular +63822 singular +plural +singular +63826 singular +singular +singular +63830 singular +plural +63833 singular +singular +63836 singular +plural +singular +singular +singular +singular +singular +plural +plural +63846 singular +singular +singular +63850 plural +singular +singular +63854 singular +singular +singular +singular +singular +singular +singular +plural +63863 plural +plural +plural +63867 plural +plural +plural +63871 singular +singular +plural +plural +singular +singular +singular +63879 singular +63881 singular +singular +63884 singular +plural +singular +plural +63889 singular +singular +singular +63893 plural +plural +63896 singular +singular +plural +63900 plural +plural +plural +plural +singular +singular +63907 singular +plural +singular +singular +63912 singular +plural +63915 singular +singular +singular +singular +singular +singular +plural +63923 singular +singular +singular +63927 singular +plural +plural +singular +singular +63933 plural +plural +plural +plural +plural +plural +63940 plural +plural +plural +63944 singular +singular +63947 plural +63949 singular +singular +singular +63953 singular +63955 plural +63957 singular +singular +63960 plural +singular +plural +plural +plural +plural +singular +singular +63969 singular +singular +plural +63974 singular +63976 plural +plural +singular +singular +singular +plural +plural +63984 singular +singular +singular +singular +63989 singular +singular +plural +plural +63994 singular +singular +singular +singular +63999 singular +singular +singular +64004 singular +64007 plural +64010 plural +64012 plural +plural +singular +64016 singular +64018 plural +singular +singular +singular +plural +plural +plural +64026 singular +64028 singular +singular +64031 singular +singular +plural +64035 singular +singular +singular +singular +singular +singular +singular +64044 singular +plural +plural +singular +64049 singular +singular +singular +singular +64054 singular +64056 singular +singular +singular +64061 singular +singular +64064 singular +singular +singular +64068 singular +singular +singular +singular +singular +64074 singular +singular +singular +singular +singular +singular +singular +64082 singular +singular +singular +plural +plural +64088 plural +64090 plural +64094 plural +plural +plural +singular +singular +singular +64101 plural +plural +plural +64105 singular +plural +64108 singular +singular +singular +64112 plural +singular +64115 plural +64117 singular +singular +singular +singular +singular +singular +singular +singular +64127 plural +singular +plural +64131 singular +singular +singular +64135 plural +singular +singular +64139 singular +plural +plural +64143 singular +singular +singular +singular +64148 singular +64150 plural +64152 singular +singular +64155 singular +singular +singular +singular +64160 singular +singular +64163 singular +singular +singular +64167 plural +singular +singular +64171 plural +64173 plural +plural +singular +64177 singular +plural +singular +singular +singular +64183 plural +singular +plural +64187 plural +64189 singular +plural +64192 plural +64194 singular +singular +64198 singular +singular +singular +plural +singular +64204 singular +64206 singular +singular +singular +64210 singular +singular +64214 plural +plural +plural +64218 singular +singular +64221 singular +plural +singular +plural +64226 singular +singular +plural +plural +singular +64233 singular +singular +plural +plural +64238 plural +plural +plural +singular +singular +singular +singular +64246 plural +64248 plural +64251 singular +64253 plural +64255 singular +singular +plural +plural +64260 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +64274 singular +singular +singular +64278 singular +singular +singular +singular +singular +singular +64285 singular +singular +64288 singular +singular +64291 singular +singular +64294 plural +plural +plural +singular +singular +plural +64302 plural +singular +64305 singular +singular +64310 plural +plural +plural +singular +singular +plural +plural +64319 plural +64321 singular +singular +plural +singular +singular +64327 singular +singular +64330 singular +singular +plural +singular +singular +plural +64337 plural +plural +plural +plural +64342 singular +singular +singular +64346 singular +singular +singular +64350 singular +singular +singular +plural +plural +64357 plural +64359 plural +plural +64362 singular +singular +singular +singular +plural +singular +singular +plural +plural +singular +plural +plural +singular +64376 singular +singular +singular +singular +plural +64382 singular +singular +singular +singular +singular +64388 singular +singular +singular +64392 singular +plural +64395 singular +singular +64398 singular +64400 singular +singular +singular +plural +plural +singular +64407 plural +64410 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +64426 singular +singular +singular +64430 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +64442 singular +singular +singular +singular +singular +singular +64449 singular +singular +singular +64453 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +64473 singular +singular +singular +singular +singular +singular +64480 singular +singular +singular +plural +singular +singular +singular +singular +64489 singular +singular +singular +singular +singular +singular +plural +plural +singular +64500 singular +singular +64503 singular +singular +singular +singular +64508 singular +64510 singular +64513 singular +singular +plural +plural +singular +64519 singular +singular +singular +64523 singular +64526 singular +64528 singular +singular +singular +singular +singular +singular +singular +singular +64537 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +64556 singular +64558 singular +singular +64561 singular +singular +singular +64565 singular +singular +singular +singular +singular +singular +singular +64573 singular +singular +singular +singular +singular +singular +singular +singular +64582 singular +singular +singular +singular +singular +singular +64589 singular +64591 singular +64593 singular +singular +64596 singular +singular +singular +singular +64601 singular +singular +singular +singular +64606 plural +plural +64609 singular +singular +singular +64613 singular +64616 singular +singular +singular +singular +64622 singular +64625 singular +64627 singular +64629 singular +singular +64632 singular +singular +singular +singular +singular +singular +singular +64640 plural +64642 singular +singular +plural +64646 plural +64648 singular +singular +singular +singular +singular +64654 singular +64656 plural +plural +plural +singular +singular +singular +64663 plural +singular +64666 singular +singular +64669 singular +singular +singular +64673 plural +plural +plural +64677 singular +64679 singular +singular +singular +singular +64684 plural +plural +64690 singular +singular +singular +64694 singular +singular +singular +plural +plural +plural +singular +64702 singular +singular +singular +plural +64707 singular +singular +singular +64711 singular +64713 singular +64715 plural +plural +64718 plural +64720 singular +plural +64723 singular +plural +64726 singular +singular +singular +singular +64731 singular +singular +plural +64735 plural +64740 singular +singular +singular +singular +singular +plural +singular +64749 singular +singular +singular +64753 plural +64755 singular +singular +plural +64760 plural +plural +plural +64765 plural +plural +plural +singular +plural +singular +64773 singular +singular +singular +singular +singular +singular +singular +singular +singular +64783 plural +64785 plural +singular +64788 plural +64790 plural +plural +singular +singular +singular +64796 singular +singular +singular +64800 plural +singular +singular +singular +singular +singular +64807 plural +64809 plural +singular +plural +64814 singular +64817 singular +singular +singular +64821 singular +64824 singular +singular +singular +64828 plural +singular +plural +plural +singular +64834 singular +singular +singular +64838 plural +plural +plural +64843 plural +plural +64846 singular +singular +singular +singular +64851 singular +plural +64854 plural +plural +64857 plural +plural +plural +64861 plural +plural +plural +singular +plural +plural +64868 singular +singular +singular +singular +singular +singular +singular +64876 plural +64878 singular +singular +64881 singular +singular +singular +plural +singular +singular +64888 singular +singular +64891 plural +64893 singular +64895 singular +singular +singular +singular +singular +singular +64902 singular +singular +singular +singular +64908 plural +64910 singular +singular +plural +64914 plural +plural +64917 singular +singular +64920 singular +64922 singular +64924 singular +singular +64927 singular +singular +64930 singular +singular +singular +64934 singular +singular +singular +64938 singular +singular +plural +plural +plural +plural +64945 singular +singular +64948 plural +64950 singular +singular +singular +singular +singular +64957 plural +plural +singular +64962 plural +plural +plural +singular +64967 singular +plural +plural +singular +singular +64973 singular +singular +plural +64977 singular +singular +64982 plural +plural +singular +64986 singular +singular +singular +singular +singular +singular +singular +singular +64995 singular +singular +64998 singular +singular +singular +singular +plural +plural +singular +65006 singular +singular +65009 plural +65011 singular +singular +singular +singular +singular +singular +65019 singular +singular +singular +65023 singular +singular +singular +65027 singular +singular +singular +singular +65032 singular +plural +plural +plural +singular +65038 singular +singular +plural +plural +plural +singular +65046 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +65059 singular +65061 singular +plural +singular +singular +singular +singular +singular +65070 singular +singular +singular +65074 singular +65076 singular +singular +singular +singular +singular +65082 singular +plural +plural +plural +plural +65088 singular +singular +singular +singular +65093 singular +65095 plural +singular +singular +singular +singular +65101 singular +singular +singular +65105 singular +singular +singular +singular +65110 plural +singular +singular +singular +singular +65116 plural +65118 singular +plural +65121 plural +65123 singular +singular +singular +singular +singular +singular +singular +65131 singular +65133 plural +plural +singular +singular +plural +singular +singular +singular +singular +65143 plural +plural +65146 singular +65148 singular +singular +singular +singular +singular +65154 singular +65156 singular +singular +singular +65161 singular +singular +singular +singular +65166 plural +plural +plural +65170 singular +singular +singular +65174 singular +65176 singular +65178 plural +65180 plural +65183 singular +65185 singular +singular +singular +singular +plural +plural +65193 singular +singular +65196 singular +65199 singular +singular +singular +65203 singular +singular +singular +65207 singular +singular +singular +singular +65212 plural +plural +65215 plural +plural +plural +plural +65220 singular +65222 singular +65224 singular +singular +plural +65228 plural +plural +singular +singular +65233 plural +65235 plural +plural +65238 singular +singular +singular +65242 plural +65244 plural +plural +65247 singular +plural +plural +plural +65252 singular +singular +plural +65256 singular +singular +65259 singular +singular +singular +singular +singular +singular +singular +65267 singular +65269 plural +singular +singular +singular +singular +singular +plural +plural +65278 plural +65280 plural +plural +singular +65284 plural +plural +plural +plural +plural +plural +65292 plural +plural +singular +singular +singular +singular +plural +65300 singular +plural +plural +65304 plural +65306 plural +65308 plural +plural +singular +singular +65313 singular +65315 singular +singular +65318 singular +singular +65321 singular +65323 singular +singular +65326 plural +plural +singular +singular +singular +65332 singular +65334 plural +plural +plural +65338 plural +65340 plural +plural +65343 plural +plural +plural +plural +plural +plural +plural +plural +plural +singular +singular +65355 plural +plural +65358 plural +singular +65361 singular +plural +singular +singular +singular +65368 plural +plural +plural +65372 singular +plural +plural +65376 singular +65378 plural +65380 singular +singular +singular +singular +singular +singular +65387 singular +plural +plural +plural +65392 plural +plural +singular +plural +singular +plural +singular +singular +65401 plural +plural +plural +singular +65408 plural +plural +plural +plural +65413 singular +singular +singular +singular +singular +65419 singular +singular +singular +singular +65424 singular +singular +singular +65428 singular +65430 plural +plural +plural +singular +singular +singular +singular +65438 singular +singular +singular +65442 singular +singular +65445 plural +plural +plural +plural +65450 plural +plural +plural +65454 plural +plural +plural +plural +plural +65460 plural +plural +plural +plural +plural +65467 plural +plural +singular +65472 plural +plural +singular +65476 plural +plural +plural +singular +65481 singular +singular +singular +65485 plural +65487 singular +plural +65490 singular +singular +65494 plural +65496 singular +singular +65499 singular +65501 singular +65503 singular +singular +singular +singular +singular +65509 singular +65511 singular +singular +65514 singular +65517 singular +singular +singular +singular +65522 singular +65524 singular +singular +65527 singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +65545 singular +singular +65548 plural +plural +65551 plural +65553 plural +plural +singular +65557 singular +singular +singular +65561 singular +plural +65564 plural +plural +singular +singular +singular +singular +65571 singular +singular +singular +singular +65576 singular +plural +plural +plural +singular +singular +singular +singular +singular +plural +plural +singular +singular +65591 singular +singular +65594 singular +65596 singular +65598 singular +singular +65601 singular +singular +singular +singular +65606 singular +65608 singular +65611 plural +singular +singular +65616 singular +65618 singular +singular +singular +singular +singular +65624 singular +singular +singular +singular +65631 singular +singular +singular +singular +65636 singular +65639 singular +singular +singular +singular +65644 singular +65646 singular +singular +singular +singular +65651 singular +singular +singular +plural +singular +singular +singular +singular +65660 singular +singular +singular +plural +plural +singular +65668 singular +65670 plural +65672 singular +singular +singular +65677 singular +65679 singular +65681 singular +singular +singular +singular +65686 plural +65688 singular +singular +singular +65692 singular +singular +65695 singular +65697 singular +singular +singular +singular +singular +65703 singular +singular +singular +singular +65709 singular +singular +singular +singular +singular +65715 singular +singular +singular +singular +65721 singular +65723 singular +65725 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +65742 singular +singular +singular +singular +singular +65748 singular +singular +singular +singular +singular +singular +singular +65756 singular +singular +singular +singular +singular +plural +65763 plural +65765 plural +65768 singular +singular +65771 plural +plural +65774 singular +singular +singular +singular +singular +singular +singular +singular +65783 plural +singular +65787 singular +plural +plural +singular +singular +plural +plural +singular +65797 singular +singular +singular +singular +65803 singular +65805 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +65817 plural +plural +singular +singular +65822 plural +65824 singular +singular +65827 plural +plural +plural +singular +plural +plural +plural +65835 singular +65837 plural +plural +65840 singular +singular +plural +65844 singular +singular +singular +singular +65849 singular +plural +plural +plural +65854 plural +singular +singular +singular +singular +singular +65861 plural +singular +singular +singular +65866 plural +plural +plural +65870 plural +plural +65873 singular +65875 plural +singular +singular +singular +singular +plural +65882 plural +plural +plural +singular +65887 singular +plural +singular +plural +65892 singular +singular +singular +singular +singular +65899 plural +plural +singular +singular +singular +plural +65906 plural +65908 singular +singular +singular +plural +65913 plural +65915 plural +plural +singular +singular +plural +plural +65922 singular +singular +singular +singular +singular +singular +65929 plural +plural +65932 singular +singular +singular +singular +65937 plural +plural +65940 plural +65942 plural +plural +singular +65946 plural +plural +plural +65950 singular +singular +plural +plural +plural +65956 plural +plural +65959 plural +plural +plural +65963 plural +plural +plural +65968 singular +singular +singular +65973 singular +plural +65977 singular +singular +65980 plural +65982 singular +singular +plural +singular +65987 singular +65989 singular +singular +plural +singular +singular +65995 plural +singular +65998 singular +singular +singular +66002 singular +singular +singular +plural +plural +66008 singular +66010 singular +singular +66013 singular +66015 singular +plural +66018 singular +singular +66021 singular +singular +singular +singular +singular +singular +66028 singular +singular +singular +66032 singular +singular +singular +singular +singular +singular +plural +66040 singular +66042 singular +singular +singular +singular +singular +singular +singular +singular +66051 singular +66053 plural +plural +66056 singular +singular +singular +singular +singular +66062 singular +plural +66066 singular +singular +singular +singular +66072 singular +singular +66075 singular +66077 singular +singular +singular +singular +66082 plural +66084 singular +singular +plural +singular +singular +66090 plural +66093 singular +singular +singular +66097 singular +66099 singular +singular +66102 singular +singular +singular +singular +singular +66108 singular +singular +singular +singular +singular +singular +singular +66116 singular +singular +singular +singular +singular +singular +singular +66125 plural +plural +plural +singular +66130 plural +plural +66133 singular +singular +66136 singular +66138 singular +66140 plural +66142 singular +singular +singular +66146 singular +66148 singular +singular +singular +66152 singular +singular +singular +singular +singular +singular +66159 singular +singular +singular +66163 plural +singular +66166 singular +singular +singular +66170 singular +singular +singular +66174 singular +singular +singular +singular +singular +66180 plural +singular +66183 singular +66185 singular +singular +singular +66189 singular +singular +singular +singular +66194 singular +singular +singular +singular +singular +singular +66201 plural +66203 singular +singular +singular +singular +singular +plural +66210 singular +singular +singular +singular +66215 singular +singular +plural +plural +singular +plural +66222 singular +66224 plural +singular +plural +66228 singular +singular +66231 singular +plural +singular +66235 singular +singular +singular +singular +66240 singular +66242 singular +singular +singular +plural +plural +plural +singular +singular +singular +singular +singular +66254 singular +plural +plural +66258 plural +66260 singular +singular +singular +singular +66266 plural +singular +singular +66270 singular +plural +66273 plural +singular +singular +66277 plural +66279 singular +singular +singular +singular +plural +singular +singular +singular +singular +66289 plural +singular +plural +plural +plural +66296 singular +singular +singular +singular +singular +singular +singular +plural +66305 plural +singular +singular +singular +singular +66311 singular +singular +singular +66315 singular +singular +singular +singular +singular +singular +66322 plural +plural +66325 plural +66327 singular +66330 singular +plural +66334 plural +plural +plural +66338 singular +singular +plural +singular +66343 singular +plural +plural +plural +66348 singular +singular +singular +singular +66354 plural +66356 plural +66358 singular +66360 plural +plural +plural +66365 plural +plural +singular +66369 singular +singular +singular +66373 singular +singular +singular +plural +singular +singular +singular +66381 singular +singular +66385 plural +singular +plural +plural +singular +singular +singular +66393 singular +plural +plural +66397 singular +singular +plural +66401 singular +singular +66404 singular +plural +singular +singular +singular +singular +66411 plural +plural +plural +66415 singular +singular +plural +66419 plural +66421 plural +singular +66424 plural +66426 singular +singular +singular +66430 singular +66432 singular +singular +singular +singular +singular +66438 singular +singular +66442 plural +plural +plural +66446 singular +66448 plural +66450 plural +plural +66453 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +66464 singular +singular +singular +singular +singular +singular +66471 plural +plural +plural +singular +66476 singular +66479 singular +singular +singular +plural +plural +plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +66501 singular +66503 singular +66505 plural +plural +plural +66509 plural +plural +66512 singular +singular +plural +plural +plural +plural +66519 singular +singular +singular +singular +66524 plural +plural +plural +66528 singular +66530 plural +singular +singular +66536 singular +singular +singular +singular +singular +66542 plural +66544 plural +plural +plural +plural +66549 plural +66551 singular +66553 singular +66556 singular +singular +66560 plural +plural +plural +singular +singular +plural +66567 singular +singular +plural +plural +66572 plural +66575 singular +66577 singular +66580 plural +plural +plural +66584 plural +plural +66587 plural +plural +66590 singular +66592 singular +singular +singular +66596 singular +66598 singular +66600 singular +66602 plural +plural +66605 singular +singular +66608 plural +plural +66611 singular +singular +plural +66615 singular +singular +66619 singular +singular +plural +singular +plural +66625 singular +singular +singular +singular +singular +66631 plural +plural +singular +singular +66636 plural +66638 plural +66640 plural +66642 singular +singular +singular +66646 singular +singular +singular +singular +singular +plural +plural +66654 singular +singular +singular +singular +66660 singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +66674 plural +66676 singular +singular +singular +66680 plural +singular +singular +singular +singular +singular +singular +singular +66689 plural +plural +plural +singular +singular +66695 singular +singular +66699 singular +66701 singular +singular +singular +singular +66707 singular +66709 singular +singular +singular +singular +singular +singular +66716 plural +66718 singular +singular +66721 plural +66723 plural +singular +singular +singular +66728 singular +singular +66731 plural +66733 plural +plural +plural +66737 plural +plural +66740 plural +plural +66744 singular +singular +plural +66748 plural +singular +singular +singular +singular +66754 plural +singular +singular +66758 plural +66760 plural +plural +66763 singular +singular +66766 plural +66768 plural +plural +singular +plural +plural +plural +plural +66778 singular +singular +singular +66782 plural +plural +plural +plural +singular +singular +66790 plural +66796 singular +singular +66799 singular +singular +plural +plural +66806 singular +singular +singular +singular +plural +66812 plural +plural +plural +66821 singular +singular +singular +singular +66826 singular +singular +66829 singular +plural +plural +66833 plural +66835 singular +singular +66838 singular +singular +plural +66844 singular +singular +plural +66849 plural +plural +plural +plural +66854 plural +66858 plural +plural +plural +plural +singular +plural +singular +66866 plural +plural +66869 singular +singular +66872 plural +plural +singular +singular +66877 singular +singular +66880 plural +plural +66883 singular +singular +singular +66887 singular +singular +singular +singular +singular +singular +singular +66895 plural +plural +66898 plural +plural +66901 plural +plural +66904 plural +plural +plural +66908 plural +plural +plural +66912 plural +plural +66915 plural +singular +66918 singular +singular +66921 plural +singular +singular +singular +singular +singular +singular +66929 singular +singular +66932 singular +singular +66935 plural +plural +66938 plural +singular +singular +singular +plural +66944 singular +singular +singular +singular +singular +singular +singular +66952 singular +plural +plural +66956 plural +plural +plural +plural +plural +plural +singular +singular +66965 plural +plural +plural +66969 singular +singular +66972 singular +singular +66976 singular +singular +singular +66980 plural +66982 singular +66984 singular +singular +singular +66988 singular +singular +singular +singular +singular +singular +singular +66996 singular +66998 singular +singular +67001 plural +67003 plural +singular +67006 plural +67008 singular +singular +singular +67012 singular +singular +singular +67016 singular +plural +67019 singular +67021 plural +plural +plural +67025 singular +plural +plural +singular +67030 singular +singular +67033 singular +singular +singular +67037 singular +singular +singular +67041 singular +67043 singular +67045 plural +67047 plural +67050 singular +singular +singular +singular +singular +singular +singular +67058 plural +plural +singular +singular +singular +67064 singular +plural +plural +67068 plural +plural +singular +singular +singular +67074 plural +singular +singular +singular +singular +67080 singular +67082 singular +singular +plural +plural +singular +67088 singular +singular +singular +67093 singular +singular +plural +plural +singular +singular +67100 singular +67102 singular +plural +plural +plural +67107 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +67120 singular +singular +singular +67124 plural +plural +67128 singular +singular +singular +67132 plural +67134 plural +plural +plural +67138 plural +plural +plural +plural +plural +plural +plural +plural +67147 plural +67149 plural +plural +plural +plural +67154 singular +singular +67158 singular +singular +singular +67162 singular +singular +singular +singular +67167 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +67186 singular +67188 plural +plural +plural +plural +67193 singular +singular +singular +singular +67198 singular +singular +singular +singular +singular +singular +67205 singular +67207 singular +singular +singular +67211 singular +singular +67214 singular +singular +singular +67218 plural +plural +plural +plural +singular +67224 singular +singular +singular +singular +67229 singular +singular +singular +singular +singular +singular +singular +67237 singular +singular +singular +singular +singular +67245 singular +singular +singular +singular +67250 singular +singular +singular +67254 singular +67256 singular +singular +singular +singular +singular +67262 singular +67264 singular +singular +singular +singular +singular +singular +67271 singular +plural +67274 singular +singular +67277 singular +singular +singular +plural +plural +plural +singular +singular +67286 singular +singular +singular +67290 plural +plural +plural +67294 plural +plural +plural +plural +singular +67300 plural +plural +67303 singular +67305 plural +plural +singular +67309 singular +singular +singular +67313 singular +singular +singular +singular +67318 singular +67320 singular +singular +singular +singular +67325 singular +singular +singular +plural +67330 singular +singular +67333 singular +67335 singular +singular +67338 singular +singular +67341 singular +plural +67344 singular +singular +singular +singular +plural +plural +plural +plural +singular +singular +singular +67356 singular +singular +67359 plural +singular +67362 singular +67365 plural +plural +singular +67369 singular +67371 plural +plural +plural +plural +singular +singular +67378 plural +plural +67381 singular +singular +singular +67385 singular +singular +singular +67389 singular +singular +singular +67394 plural +plural +plural +plural +67400 plural +plural +plural +plural +singular +plural +67407 plural +plural +67410 singular +singular +67413 plural +67415 plural +67417 singular +singular +singular +67421 plural +plural +singular +singular +67426 plural +67428 singular +plural +singular +singular +67434 plural +plural +singular +singular +plural +67440 plural +67442 plural +67446 plural +plural +67449 plural +plural +67454 plural +67456 plural +67458 singular +singular +67461 singular +singular +singular +singular +plural +67467 singular +67469 singular +singular +plural +67473 singular +plural +plural +plural +67478 plural +67480 plural +plural +plural +plural +plural +67486 singular +singular +singular +67490 plural +plural +67493 singular +singular +singular +singular +plural +plural +plural +singular +67502 plural +plural +plural +67506 plural +plural +67509 plural +plural +67512 singular +singular +67515 singular +singular +67518 singular +singular +plural +plural +singular +singular +67525 singular +plural +singular +plural +67530 plural +plural +67533 singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +67544 plural +plural +67547 singular +singular +67550 singular +singular +67553 plural +67555 singular +singular +singular +67559 plural +67561 singular +plural +singular +singular +67566 singular +singular +singular +plural +plural +singular +67573 plural +67575 singular +singular +67578 plural +67580 plural +plural +plural +67584 plural +plural +67587 singular +singular +67590 plural +plural +plural +67594 plural +singular +singular +singular +67599 singular +singular +67602 plural +plural +plural +67606 plural +plural +67609 plural +67611 singular +plural +67615 plural +plural +plural +plural +67620 singular +singular +singular +singular +67625 plural +plural +plural +67629 plural +67631 singular +singular +singular +67635 singular +singular +singular +plural +67640 singular +plural +plural +plural +plural +67646 singular +singular +plural +plural +67651 singular +singular +67654 plural +singular +singular +67658 singular +singular +singular +67662 plural +plural +singular +plural +67668 singular +67670 plural +singular +singular +67674 plural +67676 plural +plural +plural +67680 singular +singular +67683 singular +plural +singular +singular +singular +singular +plural +plural +67694 singular +singular +singular +67698 singular +plural +singular +singular +singular +singular +plural +67706 plural +67709 plural +singular +singular +singular +singular +singular +67716 singular +singular +67719 plural +plural +plural +singular +67724 singular +67727 plural +singular +singular +plural +plural +plural +singular +singular +singular +plural +plural +plural +67740 singular +singular +singular +singular +singular +67746 singular +singular +singular +singular +singular +singular +67753 singular +singular +singular +67757 singular +plural +67760 plural +plural +plural +plural +plural +plural +67767 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +67779 plural +plural +plural +67783 plural +67785 plural +67787 singular +singular +67790 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +67802 singular +plural +plural +67807 singular +67809 plural +plural +plural +plural +plural +67815 plural +plural +plural +singular +67820 plural +67823 plural +plural +plural +singular +singular +singular +67830 singular +singular +singular +singular +plural +singular +67837 plural +singular +singular +67841 plural +plural +plural +singular +plural +67847 plural +67849 singular +67851 singular +singular +singular +singular +singular +67857 plural +plural +singular +singular +67862 singular +singular +67865 singular +singular +singular +67869 plural +plural +plural +singular +plural +67875 plural +67877 singular +plural +plural +67881 plural +plural +plural +67885 plural +plural +67889 singular +67891 plural +singular +singular +singular +67896 singular +singular +singular +singular +67903 singular +singular +67906 plural +67908 plural +67912 plural +plural +67915 plural +singular +67918 plural +plural +plural +plural +plural +67926 singular +singular +singular +singular +67931 plural +67934 plural +plural +plural +67938 singular +singular +singular +67942 plural +67944 singular +singular +67948 singular +singular +67951 singular +singular +67955 singular +67957 plural +plural +67960 plural +singular +singular +singular +67966 plural +plural +plural +plural +plural +plural +singular +singular +plural +plural +67977 plural +plural +67980 plural +67982 singular +singular +singular +singular +plural +plural +plural +67990 plural +67992 plural +singular +singular +plural +plural +plural +67999 singular +singular +plural +plural +singular +singular +singular +singular +68008 plural +68010 plural +plural +plural +68014 plural +plural +68017 plural +singular +68020 singular +plural +plural +68024 singular +singular +singular +68028 plural +singular +singular +68032 singular +singular +singular +singular +plural +68038 singular +singular +singular +68042 singular +singular +singular +68046 plural +singular +singular +singular +singular +68052 singular +singular +68055 singular +68057 singular +68059 singular +68061 singular +68063 singular +68065 singular +singular +singular +plural +plural +68071 plural +plural +68074 plural +plural +plural +plural +plural +68080 singular +singular +singular +singular +singular +68086 singular +singular +singular +plural +plural +68092 singular +68095 singular +singular +plural +plural +plural +singular +singular +68103 singular +singular +singular +68107 singular +singular +plural +68111 plural +plural +68114 singular +singular +68117 plural +plural +plural +68121 singular +singular +singular +singular +plural +68127 plural +68129 plural +68131 plural +68133 singular +68135 singular +plural +singular +singular +68141 plural +68143 singular +singular +68146 singular +singular +singular +singular +68151 plural +plural +plural +68155 plural +singular +singular +plural +plural +68161 singular +68163 singular +singular +68166 plural +singular +singular +68170 plural +plural +68173 plural +plural +68176 plural +plural +singular +68180 plural +68182 singular +singular +68185 plural +plural +plural +plural +singular +singular +singular +68193 singular +singular +plural +68197 singular +singular +singular +singular +68202 singular +singular +68205 plural +singular +singular +68209 singular +singular +singular +singular +singular +singular +singular +singular +68218 singular +plural +plural +plural +singular +plural +singular +68226 plural +68228 singular +plural +plural +plural +68233 singular +singular +plural +singular +singular +singular +68240 singular +singular +68243 singular +singular +singular +68247 plural +68249 singular +68251 singular +singular +plural +plural +68256 plural +plural +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +68269 singular +singular +68274 singular +68276 singular +68278 singular +68280 singular +singular +68283 singular +singular +singular +68287 singular +singular +singular +68291 singular +68293 singular +singular +68296 singular +singular +singular +68300 singular +68302 singular +plural +singular +68306 singular +68309 singular +68311 singular +singular +singular +singular +singular +68317 singular +singular +singular +68321 singular +plural +68324 plural +68327 singular +singular +singular +68331 singular +68333 singular +singular +68336 singular +68338 singular +68340 singular +singular +68343 singular +singular +singular +68347 singular +68349 singular +singular +singular +68353 singular +68355 singular +singular +68358 singular +singular +singular +singular +singular +68364 singular +singular +68367 plural +68369 plural +singular +plural +plural +68374 singular +singular +68377 singular +plural +singular +singular +singular +singular +singular +68386 plural +plural +68389 plural +singular +68392 singular +singular +singular +68396 singular +singular +singular +singular +68402 singular +singular +singular +68406 singular +singular +singular +singular +singular +singular +68413 singular +singular +singular +68417 singular +plural +68420 plural +68422 plural +plural +plural +singular +singular +plural +68429 singular +68431 singular +singular +singular +68435 singular +68437 singular +singular +68440 plural +plural +plural +singular +68445 singular +singular +singular +68449 singular +68451 singular +singular +singular +68455 singular +singular +singular +68459 singular +68461 singular +singular +singular +singular +68466 singular +singular +68469 singular +singular +singular +68473 singular +68475 singular +singular +68479 plural +plural +plural +plural +plural +68485 singular +singular +plural +plural +68490 singular +singular +plural +plural +plural +singular +68498 singular +singular +singular +singular +plural +plural +singular +68506 singular +singular +singular +singular +singular +singular +singular +68514 singular +singular +singular +singular +singular +singular +singular +68522 singular +singular +singular +68526 plural +68530 singular +singular +68533 singular +68535 singular +singular +68538 plural +plural +plural +68542 plural +68544 singular +68546 plural +68548 singular +singular +singular +singular +singular +singular +singular +68556 plural +plural +singular +68560 singular +68563 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +68578 singular +68580 singular +68582 singular +singular +68585 singular +singular +singular +singular +68590 singular +singular +singular +singular +singular +singular +singular +plural +singular +plural +plural +singular +68603 plural +plural +plural +plural +68608 singular +68612 singular +singular +singular +singular +68617 singular +singular +singular +singular +singular +singular +plural +plural +68626 singular +singular +singular +singular +68631 singular +singular +singular +singular +singular +singular +singular +68639 singular +singular +singular +68643 singular +68645 singular +singular +singular +singular +plural +68651 singular +singular +68654 plural +68656 plural +singular +68660 singular +singular +singular +singular +singular +68666 singular +singular +singular +68670 plural +plural +singular +plural +plural +singular +68677 singular +singular +singular +singular +68682 singular +singular +singular +singular +singular +singular +singular +68690 singular +68692 plural +plural +68695 singular +singular +68698 singular +singular +singular +singular +plural +68704 plural +68706 plural +68708 singular +singular +singular +singular +plural +plural +68715 singular +plural +68718 singular +singular +plural +plural +plural +68724 singular +plural +plural +68728 singular +singular +singular +68732 singular +singular +singular +singular +singular +singular +singular +68740 singular +68742 plural +68745 singular +singular +singular +singular +singular +singular +68752 singular +singular +68755 singular +singular +68758 singular +singular +singular +68762 singular +singular +68765 singular +singular +68768 singular +plural +68772 plural +plural +68775 singular +singular +68778 singular +singular +singular +singular +singular +singular +68785 singular +singular +singular +68789 singular +singular +singular +singular +singular +singular +68796 singular +singular +68799 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +68812 singular +68814 singular +68816 singular +singular +singular +68820 singular +68823 singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +68834 singular +singular +68837 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +68851 singular +68853 singular +singular +singular +singular +68858 singular +68860 plural +68863 singular +singular +singular +68867 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +68879 singular +singular +singular +singular +68884 singular +68886 singular +singular +68889 singular +singular +singular +singular +singular +68895 singular +singular +singular +singular +plural +singular +plural +68903 plural +68905 singular +singular +68909 singular +singular +68913 singular +singular +plural +68917 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +plural +singular +singular +singular +68932 plural +plural +plural +68936 singular +singular +singular +singular +singular +68942 singular +singular +68945 singular +singular +68948 singular +singular +singular +singular +singular +68954 singular +singular +singular +68958 plural +plural +plural +singular +singular +plural +plural +68966 plural +singular +68969 plural +plural +68972 plural +plural +plural +68976 plural +68978 plural +68980 plural +plural +plural +68984 singular +plural +singular +singular +singular +plural +plural +plural +plural +plural +68995 singular +singular +singular +singular +singular +plural +69002 singular +singular +69005 plural +singular +singular +singular +69010 plural +69012 plural +plural +plural +69016 plural +singular +singular +singular +69021 plural +69023 plural +plural +plural +plural +plural +69029 singular +singular +singular +69033 singular +plural +69036 singular +singular +singular +singular +69041 singular +69043 singular +plural +plural +69047 plural +69049 plural +plural +singular +plural +69055 singular +singular +singular +singular +69060 plural +singular +singular +singular +singular +69066 singular +singular +singular +singular +singular +plural +plural +plural +plural +69076 plural +69078 singular +plural +69081 singular +singular +singular +singular +singular +singular +plural +plural +plural +69091 singular +singular +69094 singular +singular +singular +singular +singular +69100 singular +69102 singular +singular +singular +singular +singular +69108 plural +plural +plural +plural +plural +69114 singular +69116 singular +singular +plural +plural +plural +singular +singular +singular +69125 singular +plural +plural +plural +69130 plural +plural +singular +singular +singular +singular +69137 singular +singular +69140 singular +69142 singular +singular +singular +singular +69147 singular +singular +singular +singular +69153 singular +singular +69156 plural +singular +69159 singular +singular +singular +singular +singular +singular +singular +69167 singular +singular +singular +plural +plural +singular +singular +singular +plural +singular +singular +singular +69180 singular +singular +singular +singular +singular +69186 singular +singular +singular +singular +plural +plural +plural +69194 plural +plural +69197 plural +plural +plural +69201 singular +singular +singular +singular +plural +69207 plural +plural +plural +69211 plural +singular +plural +plural +69216 plural +plural +plural +plural +69221 plural +plural +plural +69225 singular +singular +singular +singular +singular +69231 plural +plural +69234 plural +plural +plural +plural +singular +singular +69241 plural +plural +69245 plural +69247 plural +plural +plural +plural +plural +plural +69254 plural +plural +plural +69258 singular +69260 singular +singular +singular +singular +singular +69266 singular +singular +singular +singular +singular +69272 singular +singular +69275 plural +singular +singular +69279 singular +singular +singular +plural +plural +plural +69286 singular +singular +singular +singular +69291 plural +singular +singular +singular +69296 plural +singular +singular +plural +plural +plural +plural +69304 plural +69307 singular +69309 plural +69311 singular +singular +plural +69315 plural +plural +plural +plural +plural +plural +69322 plural +plural +singular +singular +singular +69328 plural +singular +singular +singular +69333 singular +singular +singular +singular +singular +singular +singular +69341 singular +plural +plural +singular +singular +singular +singular +69349 singular +plural +singular +singular +singular +69355 singular +singular +singular +69359 singular +singular +singular +singular +singular +singular +69366 singular +69368 singular +singular +singular +singular +singular +69374 singular +singular +singular +69378 plural +69380 plural +plural +69383 plural +plural +singular +singular +69388 singular +69390 plural +plural +69393 plural +singular +singular +plural +plural +69399 plural +singular +singular +69403 singular +69405 singular +singular +singular +singular +69410 plural +plural +singular +singular +69415 plural +69417 plural +singular +69420 singular +69423 plural +plural +plural +plural +singular +singular +69430 singular +singular +69433 singular +singular +singular +singular +singular +plural +singular +singular +69442 plural +plural +plural +plural +plural +69448 singular +singular +69452 singular +69454 plural +69457 plural +plural +plural +singular +69462 plural +plural +plural +plural +plural +plural +singular +singular +plural +69472 plural +plural +69475 plural +plural +69478 singular +singular +singular +69482 singular +singular +singular +69486 singular +singular +singular +singular +singular +69492 singular +singular +singular +69496 singular +singular +singular +singular +singular +singular +69503 singular +singular +singular +singular +plural +plural +69510 singular +69512 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +69524 plural +singular +69527 singular +singular +singular +plural +plural +69533 plural +69536 plural +singular +singular +singular +69541 singular +singular +singular +singular +69546 singular +singular +singular +singular +plural +69552 plural +69554 plural +69556 singular +singular +69559 singular +singular +69562 singular +singular +singular +singular +singular +singular +69569 plural +69571 plural +plural +plural +singular +69576 plural +69578 plural +plural +plural +69582 singular +singular +singular +singular +singular +singular +singular +plural +69591 plural +singular +69594 singular +plural +plural +plural +69599 plural +69601 plural +singular +singular +69606 singular +singular +69609 singular +plural +69612 singular +plural +plural +69616 singular +singular +singular +singular +singular +69622 plural +plural +plural +69626 plural +69628 plural +singular +singular +69632 singular +singular +singular +69637 singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +plural +plural +singular +plural +singular +singular +singular +singular +69657 singular +singular +plural +plural +singular +singular +singular +69665 singular +singular +69668 singular +singular +singular +singular +69673 singular +singular +69676 singular +69678 singular +singular +singular +singular +singular +69684 plural +69687 singular +singular +singular +69691 singular +69693 singular +singular +singular +69697 singular +singular +singular +69701 singular +singular +69704 singular +singular +69707 singular +69709 singular +singular +singular +singular +69714 singular +singular +singular +69719 singular +singular +singular +singular +singular +singular +singular +69728 singular +singular +69731 singular +singular +singular +singular +singular +69737 singular +singular +singular +singular +plural +plural +69744 singular +69746 singular +singular +69749 singular +69751 singular +singular +plural +plural +69757 plural +plural +69760 plural +singular +singular +singular +singular +plural +69767 plural +69769 plural +plural +plural +plural +plural +69775 singular +singular +singular +69779 singular +singular +singular +69783 singular +69785 singular +69787 singular +singular +singular +singular +69792 singular +69794 singular +singular +singular +singular +69799 singular +singular +69802 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +69813 singular +singular +singular +singular +singular +singular +singular +69821 singular +singular +69824 singular +69826 singular +69828 singular +singular +singular +69832 singular +singular +singular +singular +69837 singular +singular +singular +singular +singular +singular +69844 singular +singular +singular +singular +69849 singular +singular +singular +singular +singular +singular +singular +singular +singular +69859 singular +69862 singular +plural +singular +69866 singular +singular +69871 singular +69874 singular +singular +singular +69878 singular +singular +singular +singular +69884 singular +69886 singular +singular +singular +singular +singular +singular +singular +singular +69895 singular +69897 singular +singular +69901 singular +69903 singular +singular +singular +singular +69909 singular +singular +singular +singular +69914 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +69926 singular +69928 singular +singular +singular +singular +singular +69934 singular +singular +singular +singular +singular +singular +singular +singular +69943 singular +singular +singular +singular +singular +69949 singular +69952 singular +singular +69955 singular +singular +singular +singular +singular +singular +69962 singular +69964 singular +singular +singular +singular +singular +singular +singular +69973 plural +69975 singular +singular +plural +69979 singular +singular +69982 singular +singular +singular +singular +singular +singular +singular +singular +69992 singular +69994 singular +singular +69997 plural +plural +70000 singular +singular +70003 singular +singular +70006 singular +singular +70009 singular +singular +70013 plural +70015 singular +singular +singular +singular +singular +singular +singular +70024 singular +singular +70027 singular +singular +70030 singular +singular +singular +singular +singular +70036 singular +singular +70039 singular +70041 singular +singular +plural +plural +plural +70047 singular +70049 singular +70051 singular +70053 singular +singular +70056 singular +singular +70059 singular +70061 plural +plural +singular +singular +singular +singular +singular +singular +70070 singular +plural +70073 singular +70075 plural +plural +70079 singular +plural +singular +singular +plural +70085 plural +70087 plural +plural +singular +70091 singular +70094 singular +70096 singular +singular +70099 singular +singular +70103 singular +singular +singular +70107 singular +singular +70110 singular +70112 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +70124 singular +singular +singular +singular +70129 singular +singular +singular +singular +singular +singular +singular +70137 singular +70139 singular +70141 singular +singular +70144 singular +singular +singular +singular +singular +70150 singular +70152 plural +plural +plural +plural +singular +plural +plural +70160 plural +singular +singular +70164 singular +plural +70167 singular +singular +70170 singular +singular +70173 plural +plural +plural +singular +singular +singular +70180 plural +singular +plural +70184 singular +70186 singular +singular +plural +plural +70193 singular +70195 singular +70197 singular +singular +singular +singular +singular +70203 singular +70205 singular +70207 singular +70209 singular +singular +singular +singular +70214 singular +singular +singular +singular +singular +70220 singular +singular +70223 singular +singular +singular +70227 singular +singular +singular +singular +singular +70233 singular +70235 singular +singular +singular +singular +singular +70241 singular +singular +70244 singular +singular +singular +singular +singular +70250 singular +singular +plural +70254 singular +70256 singular +singular +singular +singular +70261 plural +70263 singular +singular +singular +plural +plural +plural +plural +singular +singular +70273 singular +70276 singular +singular +70279 plural +plural +70282 plural +plural +plural +singular +singular +singular +70289 singular +70291 singular +singular +singular +singular +70296 singular +singular +singular +singular +singular +singular +70303 singular +singular +singular +70308 plural +70310 plural +70312 plural +singular +70315 singular +singular +singular +plural +singular +70321 singular +singular +singular +70325 singular +70327 singular +singular +70330 singular +70332 singular +singular +70335 singular +70337 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +70350 singular +singular +singular +singular +singular +singular +70357 singular +70359 singular +singular +singular +70364 plural +70366 singular +plural +plural +70370 plural +70372 singular +70374 singular +singular +70377 singular +singular +singular +70381 singular +70383 plural +70385 singular +plural +plural +plural +70392 plural +plural +singular +singular +singular +70398 singular +singular +singular +singular +singular +singular +70405 plural +plural +plural +plural +70410 plural +70412 singular +singular +singular +singular +70417 singular +plural +plural +singular +singular +singular +70426 singular +singular +70429 plural +plural +singular +70433 plural +plural +70436 singular +70438 singular +70440 singular +plural +plural +plural +70445 singular +singular +70448 singular +singular +singular +singular +70454 plural +plural +plural +plural +plural +plural +70461 singular +70463 singular +singular +singular +singular +singular +plural +70470 plural +70472 plural +plural +70475 singular +70477 singular +70479 singular +plural +70482 plural +plural +plural +singular +singular +70488 singular +singular +plural +singular +plural +70494 singular +70496 singular +70498 singular +singular +70501 plural +plural +70504 plural +plural +singular +70508 plural +70510 singular +singular +70513 singular +singular +singular +singular +70518 plural +plural +70521 singular +plural +70525 singular +singular +singular +singular +singular +70532 singular +singular +70537 singular +singular +70540 singular +singular +singular +70544 singular +singular +70547 singular +70549 plural +70551 singular +singular +70554 singular +singular +singular +singular +70559 singular +70561 singular +70563 plural +plural +70566 plural +plural +70569 singular +70571 plural +plural +plural +plural +singular +70577 singular +70579 plural +singular +70582 singular +70585 singular +singular +70588 singular +singular +singular +70592 singular +70594 singular +singular +singular +singular +70599 singular +singular +singular +singular +singular +70605 singular +singular +singular +singular +singular +singular +70612 singular +singular +singular +70616 plural +70620 plural +plural +plural +plural +singular +70626 singular +70628 singular +singular +singular +singular +70633 plural +70635 singular +70637 singular +singular +singular +singular +70642 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +70653 singular +singular +70657 singular +70659 plural +singular +plural +plural +plural +singular +70666 singular +singular +plural +plural +70671 singular +singular +70675 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +70691 plural +plural +singular +70695 singular +70697 plural +plural +plural +singular +singular +70704 plural +plural +70707 singular +70709 singular +singular +70712 singular +singular +plural +plural +plural +70718 singular +singular +70721 singular +plural +70724 plural +70726 singular +plural +70729 singular +70732 plural +70734 singular +singular +singular +plural +singular +singular +plural +70742 singular +singular +70745 plural +singular +plural +plural +plural +plural +70752 plural +plural +70755 plural +plural +singular +70759 plural +singular +singular +singular +70764 singular +singular +singular +70768 plural +70770 singular +plural +plural +singular +70775 singular +70777 singular +singular +singular +singular +singular +70783 singular +singular +plural +plural +singular +70789 singular +singular +singular +singular +70794 singular +singular +singular +singular +singular +70800 singular +plural +plural +70804 plural +plural +singular +singular +singular +70810 singular +singular +70813 singular +singular +singular +70817 plural +plural +70820 singular +singular +70823 singular +plural +plural +70828 singular +70830 singular +singular +singular +70834 singular +singular +70837 singular +singular +singular +singular +70842 singular +singular +singular +singular +singular +70848 singular +singular +singular +70852 singular +singular +singular +singular +singular +plural +plural +singular +singular +70862 singular +singular +singular +70866 singular +singular +70869 singular +70873 singular +singular +singular +singular +singular +singular +singular +singular +70882 singular +70884 singular +singular +singular +70888 singular +singular +singular +70892 singular +singular +singular +singular +singular +singular +70899 singular +singular +plural +plural +singular +70905 plural +plural +singular +plural +70910 singular +70912 singular +singular +70916 singular +plural +70919 singular +70921 singular +singular +singular +singular +singular +singular +singular +singular +70930 singular +singular +singular +singular +singular +singular +70937 singular +70940 singular +singular +singular +singular +singular +singular +singular +70948 plural +plural +70951 singular +singular +plural +plural +singular +70957 singular +plural +plural +singular +plural +70963 singular +singular +70966 singular +70968 plural +plural +70971 singular +singular +plural +singular +singular +70977 singular +singular +70981 singular +singular +70984 singular +singular +70987 singular +70990 plural +plural +singular +70994 singular +singular +70997 singular +singular +singular +singular +71002 singular +singular +singular +71006 singular +singular +plural +plural +singular +71012 singular +singular +71015 singular +singular +plural +plural +plural +71021 plural +singular +singular +71025 plural +singular +singular +71029 singular +singular +71032 singular +singular +singular +singular +71037 singular +71039 singular +singular +singular +71043 singular +71046 singular +singular +singular +71050 singular +71052 singular +71055 singular +71057 singular +plural +singular +singular +singular +singular +71064 singular +71066 singular +singular +71071 singular +singular +singular +singular +71076 singular +singular +71081 singular +singular +singular +singular +71086 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +71098 singular +singular +plural +singular +singular +singular +singular +plural +71107 singular +singular +71110 plural +plural +71113 singular +singular +singular +singular +71118 singular +71120 singular +singular +singular +71124 singular +singular +singular +singular +singular +singular +plural +71132 plural +singular +71135 singular +singular +71138 singular +71140 plural +singular +singular +71144 singular +singular +plural +71148 singular +singular +71151 plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +singular +71163 singular +plural +71166 plural +plural +singular +singular +singular +singular +71173 singular +singular +singular +71177 singular +71179 singular +singular +singular +plural +plural +singular +71186 singular +singular +71189 singular +71191 singular +singular +singular +71196 plural +71198 singular +71200 singular +plural +singular +71204 singular +71206 singular +singular +71209 plural +71211 plural +plural +plural +plural +71216 singular +plural +singular +71220 singular +71222 singular +71224 singular +singular +71227 singular +singular +singular +singular +plural +singular +plural +plural +singular +71237 plural +plural +plural +71242 singular +singular +71245 singular +singular +singular +singular +singular +singular +singular +71253 plural +plural +singular +71257 singular +singular +singular +singular +singular +singular +71264 singular +singular +singular +singular +71269 singular +singular +singular +71273 singular +plural +plural +71277 singular +71279 plural +plural +plural +71283 singular +singular +singular +singular +71290 singular +singular +singular +singular +singular +singular +singular +singular +71299 singular +71304 singular +singular +71307 singular +singular +singular +plural +singular +71313 singular +singular +singular +71317 singular +singular +71320 singular +singular +singular +singular +singular +singular +singular +71328 singular +singular +singular +71332 singular +singular +singular +71336 singular +71338 singular +singular +71341 singular +singular +singular +singular +singular +singular +71348 plural +plural +singular +plural +71353 singular +singular +71356 singular +71358 singular +71360 singular +singular +singular +singular +singular +singular +singular +71368 singular +singular +singular +71372 singular +71375 singular +71377 singular +71379 singular +71381 singular +singular +71385 plural +plural +71388 singular +singular +plural +71392 plural +plural +plural +singular +71397 singular +singular +71400 singular +singular +singular +singular +singular +71406 singular +singular +71410 singular +singular +singular +singular +71416 singular +singular +singular +singular +singular +71422 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +71437 singular +singular +singular +singular +plural +singular +plural +plural +singular +singular +singular +71449 singular +singular +singular +singular +71454 singular +singular +71457 singular +singular +singular +singular +singular +singular +singular +71465 singular +71467 singular +singular +singular +singular +singular +singular +71474 singular +singular +singular +singular +71479 singular +plural +plural +plural +71484 singular +singular +71487 singular +singular +singular +71491 singular +71493 plural +plural +plural +plural +singular +71500 singular +singular +plural +plural +71505 singular +singular +71508 plural +plural +71511 singular +singular +singular +singular +singular +71517 singular +singular +singular +71521 singular +singular +singular +71526 singular +singular +singular +71530 plural +plural +plural +71534 singular +singular +plural +plural +plural +71540 plural +singular +71543 singular +71545 singular +71547 plural +71549 singular +plural +71552 singular +singular +71557 singular +singular +singular +singular +71562 singular +singular +singular +plural +71567 plural +singular +plural +plural +plural +plural +singular +plural +71577 singular +singular +singular +singular +singular +singular +71584 singular +71586 singular +singular +singular +plural +plural +plural +singular +singular +singular +singular +singular +71598 plural +plural +plural +singular +singular +71604 plural +plural +71607 singular +plural +plural +plural +singular +singular +71616 plural +plural +singular +singular +singular +singular +singular +singular +71625 plural +plural +plural +plural +71630 plural +singular +singular +71634 singular +singular +71637 singular +singular +71640 singular +singular +singular +71645 plural +plural +singular +singular +singular +singular +plural +71654 plural +71656 singular +plural +71659 singular +singular +singular +singular +71665 plural +singular +71668 plural +plural +71671 plural +plural +plural +71675 plural +plural +plural +plural +71680 singular +singular +71684 plural +plural +plural +singular +singular +singular +singular +71693 singular +singular +71696 singular +plural +71699 singular +plural +71702 singular +plural +71705 singular +71707 plural +singular +plural +71711 singular +plural +71714 singular +singular +singular +plural +71719 singular +singular +singular +singular +71724 singular +singular +71727 singular +71729 singular +singular +singular +singular +singular +71735 singular +singular +plural +plural +singular +71741 singular +singular +71744 singular +71746 singular +71748 singular +singular +singular +71752 singular +plural +plural +singular +singular +71758 plural +plural +71761 plural +plural +71764 plural +plural +singular +singular +71769 singular +71771 singular +singular +singular +singular +singular +singular +71778 singular +71780 singular +71782 singular +71784 singular +71786 singular +71788 singular +71790 singular +singular +singular +71794 singular +71796 singular +singular +71799 singular +singular +plural +singular +singular +singular +singular +71807 singular +71809 singular +singular +71814 singular +71816 plural +71818 singular +singular +71821 singular +71823 plural +plural +plural +71827 singular +singular +71830 singular +plural +plural +71834 singular +71836 singular +71838 singular +singular +singular +singular +71843 plural +singular +singular +71847 plural +71849 singular +71851 plural +71853 plural +plural +71856 plural +71858 singular +singular +singular +singular +71863 singular +plural +71866 singular +singular +singular +71870 singular +singular +singular +singular +71875 singular +singular +71878 singular +71880 singular +singular +singular +singular +singular +singular +singular +plural +71889 singular +71891 plural +singular +singular +71895 singular +singular +singular +singular +71901 singular +71903 singular +71905 singular +singular +singular +singular +singular +71911 plural +71915 plural +71917 singular +71919 singular +singular +singular +singular +singular +71925 singular +71927 singular +singular +singular +71931 plural +plural +71934 singular +singular +71938 singular +singular +singular +singular +plural +singular +singular +71947 plural +plural +71950 singular +singular +singular +singular +singular +singular +singular +singular +71959 singular +singular +71962 plural +plural +plural +71966 plural +singular +singular +plural +71972 plural +plural +singular +singular +singular +singular +71979 singular +singular +71983 plural +plural +71986 singular +singular +singular +singular +71991 singular +plural +71994 singular +71996 singular +71998 singular +singular +plural +singular +singular +72005 singular +plural +72008 plural +plural +72011 plural +plural +plural +72015 plural +plural +plural +72019 singular +plural +72023 plural +plural +plural +singular +singular +singular +72030 singular +singular +singular +72034 plural +72036 singular +singular +singular +singular +singular +72042 singular +singular +72045 singular +singular +singular +72049 plural +72051 plural +plural +singular +singular +singular +singular +72058 singular +72060 plural +singular +72063 singular +singular +singular +72067 singular +singular +singular +singular +singular +singular +singular +72075 singular +plural +singular +singular +singular +singular +72082 singular +singular +72085 singular +singular +singular +72089 singular +singular +singular +72093 singular +72095 singular +singular +singular +singular +singular +72101 singular +72103 singular +72105 singular +72107 singular +singular +72110 singular +72112 singular +plural +72115 singular +singular +72119 singular +singular +72123 singular +singular +72129 singular +plural +plural +plural +72135 plural +plural +plural +plural +72140 plural +plural +72143 singular +72145 singular +singular +72148 plural +singular +singular +singular +72153 singular +singular +singular +singular +72160 singular +singular +singular +singular +singular +72166 singular +72168 plural +plural +72171 singular +singular +plural +singular +plural +72177 singular +72179 plural +plural +72182 singular +singular +plural +singular +72187 plural +plural +72190 plural +plural +72193 singular +singular +72196 singular +72199 singular +singular +singular +singular +singular +singular +singular +plural +plural +72209 plural +plural +72212 singular +singular +72215 singular +singular +singular +singular +singular +singular +72222 singular +72224 singular +singular +plural +plural +singular +72231 singular +72233 plural +plural +plural +plural +singular +72239 singular +singular +72242 singular +singular +plural +plural +plural +72248 singular +singular +72251 singular +singular +72254 singular +singular +singular +72259 singular +singular +singular +72263 singular +singular +72266 singular +singular +singular +72271 singular +singular +72274 singular +singular +72277 singular +72280 singular +72282 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +72294 plural +singular +plural +plural +72299 plural +72301 singular +singular +plural +singular +singular +72307 singular +singular +singular +singular +72312 singular +singular +72315 singular +singular +72318 singular +singular +singular +singular +singular +singular +singular +singular +singular +72328 singular +72330 plural +singular +plural +plural +72335 plural +plural +72338 singular +singular +singular +72342 singular +singular +72345 singular +plural +plural +singular +72350 singular +72353 singular +singular +singular +singular +singular +singular +72360 singular +singular +72363 singular +singular +72367 singular +72369 singular +singular +singular +singular +72374 singular +singular +72377 singular +singular +72381 plural +singular +72384 singular +singular +plural +72388 singular +singular +singular +singular +singular +singular +72395 singular +singular +singular +singular +singular +plural +72402 plural +plural +singular +singular +72408 singular +singular +singular +72412 singular +72414 singular +singular +72417 singular +singular +singular +72421 singular +72424 singular +singular +singular +singular +singular +singular +72431 singular +singular +72434 singular +singular +72437 singular +singular +singular +singular +singular +plural +plural +72445 singular +singular +72448 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +72459 plural +plural +plural +72463 plural +72465 singular +singular +singular +singular +singular +singular +singular +72473 singular +singular +singular +72477 singular +singular +singular +singular +singular +72483 singular +singular +72486 singular +singular +singular +72490 singular +singular +72493 singular +singular +72496 singular +singular +72499 plural +72501 singular +plural +singular +72505 singular +singular +72510 plural +plural +singular +singular +singular +singular +72517 singular +singular +singular +singular +72522 plural +plural +singular +72526 plural +72528 singular +plural +singular +singular +72533 singular +plural +72536 singular +singular +singular +singular +72541 singular +singular +72544 singular +plural +singular +72548 plural +plural +plural +72552 singular +singular +72555 singular +singular +72558 singular +singular +singular +singular +72563 singular +72565 plural +plural +72568 singular +singular +singular +singular +72573 singular +singular +singular +72578 singular +singular +plural +plural +singular +72585 singular +72587 singular +singular +72590 singular +singular +72593 singular +singular +plural +72597 plural +72600 plural +72602 singular +72604 plural +singular +singular +72608 singular +singular +singular +singular +plural +singular +72615 singular +72617 plural +singular +singular +72621 singular +singular +72624 singular +singular +singular +singular +singular +singular +singular +singular +72633 singular +singular +singular +72637 plural +72639 singular +singular +singular +singular +singular +72646 singular +72649 singular +singular +singular +singular +72654 plural +72656 singular +singular +singular +singular +singular +72662 singular +singular +singular +72666 singular +singular +singular +singular +singular +72672 singular +72674 singular +72676 singular +plural +72679 singular +plural +singular +singular +plural +singular +singular +singular +singular +72689 plural +72691 singular +72693 singular +singular +singular +plural +72698 plural +72700 singular +singular +72703 singular +singular +singular +singular +72708 singular +singular +singular +72712 singular +singular +singular +singular +singular +72718 singular +72720 plural +plural +singular +singular +72725 plural +singular +singular +singular +singular +singular +72732 plural +singular +singular +singular +72737 singular +72739 singular +singular +singular +singular +plural +72745 plural +72747 plural +72749 plural +plural +plural +plural +plural +72756 plural +plural +72759 singular +singular +singular +plural +72764 singular +72767 plural +72769 singular +72771 plural +72773 singular +plural +singular +singular +singular +singular +72780 plural +plural +plural +plural +72785 plural +72787 singular +singular +72790 plural +singular +singular +singular +72795 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +72808 singular +singular +singular +singular +singular +singular +singular +singular +singular +72818 singular +singular +72821 singular +singular +singular +singular +72826 singular +plural +singular +singular +singular +72833 singular +singular +singular +singular +singular +72839 singular +singular +72842 singular +singular +72845 singular +singular +72848 singular +singular +singular +singular +singular +72854 singular +singular +72857 singular +singular +singular +72861 singular +singular +singular +singular +singular +singular +singular +72869 singular +singular +plural +plural +singular +singular +plural +plural +72879 singular +singular +singular +72883 singular +72885 singular +singular +72888 singular +singular +singular +72892 singular +72895 singular +72897 singular +singular +72900 singular +72902 singular +singular +plural +72906 singular +singular +singular +singular +singular +singular +singular +72914 singular +singular +singular +singular +72919 plural +72921 singular +singular +plural +72925 singular +plural +72928 singular +singular +singular +72932 singular +singular +72935 plural +singular +72938 plural +72940 plural +plural +72943 singular +singular +plural +72947 singular +singular +singular +72951 plural +72953 singular +singular +singular +singular +plural +plural +plural +72962 singular +singular +singular +singular +72967 plural +plural +plural +plural +plural +72973 plural +plural +plural +plural +72978 singular +72980 plural +singular +singular +singular +72985 singular +singular +plural +72989 singular +singular +72992 singular +singular +singular +singular +plural +plural +72999 plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +73015 singular +singular +singular +73019 singular +singular +73022 singular +singular +73026 singular +singular +singular +plural +73031 singular +73034 singular +singular +singular +plural +73039 singular +singular +73042 singular +plural +73046 singular +singular +singular +singular +singular +plural +73053 plural +plural +73059 plural +singular +plural +73063 singular +singular +73066 plural +singular +73069 singular +plural +singular +singular +singular +singular +singular +singular +singular +73079 singular +singular +plural +73084 singular +singular +singular +singular +singular +plural +73091 singular +singular +73094 singular +singular +singular +singular +singular +singular +singular +singular +73103 singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +73115 singular +singular +singular +73119 singular +singular +singular +singular +singular +singular +singular +singular +73128 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +73140 singular +singular +singular +singular +singular +singular +singular +73148 plural +73150 singular +singular +73153 singular +singular +73156 singular +singular +73159 singular +singular +singular +singular +plural +plural +73166 plural +plural +plural +singular +singular +73172 plural +73174 plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +73186 plural +plural +73189 singular +73191 plural +plural +plural +singular +plural +73197 plural +plural +plural +plural +plural +73203 singular +singular +plural +plural +plural +73209 singular +singular +singular +plural +plural +singular +73216 singular +73219 plural +plural +plural +73223 singular +plural +plural +73227 singular +singular +plural +73231 singular +73233 singular +singular +singular +singular +73238 plural +singular +singular +73242 plural +plural +plural +plural +singular +73248 singular +singular +73251 singular +plural +73254 plural +plural +singular +73258 singular +singular +73261 plural +plural +plural +singular +73266 plural +plural +singular +singular +73271 singular +singular +singular +singular +plural +plural +plural +singular +singular +73283 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +73294 singular +singular +73298 singular +singular +73301 plural +73303 singular +73306 singular +73308 singular +73310 singular +plural +plural +plural +singular +plural +plural +73320 singular +singular +73323 singular +singular +singular +singular +73328 singular +73331 singular +singular +singular +singular +singular +singular +singular +singular +singular +73341 singular +73343 plural +plural +singular +73347 singular +singular +73350 singular +singular +singular +singular +73355 singular +singular +73358 singular +singular +plural +plural +plural +73365 singular +plural +singular +plural +singular +73372 plural +plural +73375 plural +73377 singular +singular +73381 singular +singular +singular +singular +singular +73387 plural +73389 singular +singular +singular +73393 plural +plural +plural +plural +plural +73399 plural +73401 plural +73403 singular +singular +singular +73407 plural +plural +plural +singular +singular +73414 plural +73416 singular +singular +plural +73420 plural +plural +plural +73424 singular +73426 singular +73428 plural +plural +plural +plural +73433 singular +singular +singular +plural +plural +plural +plural +73441 plural +plural +plural +singular +singular +73447 singular +singular +plural +plural +plural +plural +plural +73455 singular +singular +singular +singular +73460 singular +singular +singular +73464 singular +singular +singular +singular +73469 singular +singular +singular +singular +73474 plural +plural +plural +plural +plural +plural +singular +73482 plural +plural +73485 singular +plural +plural +73489 plural +singular +singular +73493 singular +singular +plural +singular +singular +plural +singular +73501 singular +singular +singular +singular +73506 plural +singular +73510 plural +plural +plural +singular +singular +singular +singular +plural +73519 plural +plural +73523 singular +plural +singular +singular +singular +singular +73530 singular +plural +singular +73534 singular +73536 singular +73538 singular +singular +singular +73542 plural +plural +plural +plural +73547 plural +singular +singular +singular +singular +73553 plural +plural +plural +plural +73558 singular +singular +73561 singular +singular +singular +singular +singular +73567 singular +singular +singular +73571 plural +plural +plural +plural +plural +plural +plural +plural +73580 plural +plural +singular +singular +73585 plural +singular +73588 singular +singular +73591 singular +73593 plural +plural +73596 plural +plural +plural +73600 plural +plural +singular +singular +plural +plural +73607 plural +plural +73610 singular +73612 plural +plural +plural +singular +73617 singular +singular +73620 singular +73622 singular +73624 singular +singular +73627 plural +73629 singular +singular +plural +plural +73639 plural +73641 plural +singular +singular +73645 plural +plural +plural +plural +73650 plural +plural +plural +plural +plural +73656 plural +plural +73660 singular +singular +plural +plural +73665 singular +singular +singular +singular +73670 singular +singular +singular +singular +singular +singular +plural +73678 plural +73681 plural +plural +plural +73685 singular +singular +singular +singular +singular +73692 plural +plural +73695 plural +plural +73698 plural +73700 plural +plural +73704 singular +singular +plural +73708 plural +73710 plural +73712 plural +plural +plural +73718 plural +plural +plural +73722 plural +plural +singular +singular +singular +73728 singular +73730 singular +singular +73733 plural +plural +73736 singular +singular +singular +plural +plural +73742 plural +singular +singular +73746 singular +singular +singular +singular +73751 singular +singular +singular +singular +singular +singular +singular +singular +singular +73761 singular +73763 singular +singular +singular +73767 singular +singular +singular +singular +73772 plural +plural +singular +singular +73777 singular +73779 singular +73781 plural +plural +plural +singular +singular +singular +plural +singular +singular +plural +73792 plural +plural +plural +plural +plural +plural +73799 plural +73801 plural +singular +singular +singular +73806 singular +singular +singular +73810 singular +singular +singular +singular +singular +singular +73817 singular +singular +singular +singular +singular +singular +73824 singular +singular +plural +73828 plural +73830 plural +plural +singular +73834 plural +plural +singular +73839 plural +plural +plural +singular +73844 singular +plural +plural +plural +plural +plural +73851 singular +singular +plural +73855 plural +plural +singular +plural +plural +73861 plural +plural +plural +plural +plural +plural +plural +73869 plural +plural +plural +73874 singular +singular +singular +singular +singular +singular +73881 singular +singular +73884 singular +singular +73887 plural +plural +73890 plural +singular +73893 plural +plural +plural +singular +plural +plural +plural +73901 plural +plural +plural +73906 singular +singular +singular +singular +73911 plural +plural +singular +73915 plural +plural +singular +singular +73920 singular +plural +plural +plural +73925 plural +plural +73928 plural +plural +plural +singular +73934 plural +73936 plural +73938 singular +73940 singular +plural +73943 plural +plural +plural +73947 plural +singular +singular +plural +73952 singular +singular +plural +singular +73958 plural +plural +plural +singular +singular +singular +73965 singular +singular +73968 singular +73970 singular +73972 singular +singular +73975 singular +73977 plural +singular +singular +singular +73982 plural +plural +plural +73986 singular +singular +73990 singular +73993 singular +plural +plural +plural +plural +plural +plural +74001 singular +singular +74005 singular +74007 plural +plural +plural +74012 singular +singular +singular +singular +74017 plural +plural +74020 singular +plural +plural +74024 plural +plural +plural +singular +singular +74030 singular +plural +74033 plural +singular +singular +plural +74038 singular +singular +74041 plural +74043 singular +singular +singular +plural +74048 singular +74050 plural +74052 singular +74054 plural +plural +singular +singular +singular +singular +74061 singular +singular +singular +plural +74066 plural +74068 plural +singular +singular +plural +plural +singular +singular +singular +74077 plural +74080 singular +plural +plural +singular +singular +74086 plural +singular +74089 singular +74091 plural +plural +74094 plural +plural +74097 singular +singular +plural +plural +plural +74105 plural +singular +singular +singular +singular +74111 plural +74114 singular +singular +74117 singular +74119 singular +singular +singular +74123 singular +singular +74126 plural +plural +74129 singular +74131 singular +74133 plural +plural +74136 plural +74138 plural +plural +74141 plural +74143 singular +74145 singular +singular +singular +74150 plural +plural +74153 singular +singular +plural +singular +74158 singular +74160 singular +plural +singular +singular +plural +plural +74167 plural +singular +singular +plural +plural +plural +74174 plural +74176 plural +plural +74179 singular +singular +74182 plural +plural +74185 plural +plural +74188 plural +plural +singular +singular +singular +74194 plural +74196 plural +plural +plural +74200 singular +singular +plural +plural +plural +plural +74207 singular +74209 plural +74213 singular +singular +singular +74217 plural +plural +plural +74221 plural +plural +74225 singular +singular +singular +74229 singular +singular +singular +singular +singular +singular +74236 plural +plural +plural +plural +plural +74243 plural +plural +74246 plural +singular +singular +singular +74251 singular +singular +singular +74255 plural +plural +singular +singular +singular +singular +74264 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +74276 plural +74278 singular +singular +74282 plural +74284 plural +singular +singular +singular +plural +plural +plural +74293 singular +plural +singular +singular +74298 singular +74300 singular +singular +plural +plural +singular +74307 plural +plural +plural +74311 plural +plural +74314 plural +74316 singular +singular +singular +singular +singular +74323 singular +singular +plural +74327 singular +singular +singular +singular +74332 plural +singular +74335 singular +plural +plural +74339 plural +plural +singular +singular +singular +74345 plural +plural +74348 plural +74351 singular +74353 plural +singular +singular +singular +plural +plural +plural +singular +singular +singular +74364 singular +singular +singular +singular +74370 plural +singular +singular +singular +singular +74376 singular +plural +plural +plural +plural +plural +74383 singular +74385 plural +singular +74388 singular +singular +singular +singular +singular +singular +74395 plural +plural +singular +singular +74400 singular +singular +74404 plural +plural +plural +plural +plural +singular +singular +74412 plural +plural +plural +74416 plural +singular +singular +singular +singular +74422 plural +singular +singular +singular +plural +plural +74429 singular +74431 singular +singular +74435 plural +74437 plural +plural +plural +74441 singular +singular +74445 plural +singular +74448 plural +plural +plural +plural +74453 singular +singular +74456 singular +74458 singular +singular +74461 singular +74463 plural +plural +74466 singular +plural +plural +singular +singular +74472 plural +plural +74475 singular +singular +singular +74479 singular +plural +plural +74483 plural +plural +74486 singular +singular +singular +plural +plural +74492 plural +74495 singular +74497 singular +singular +74500 singular +singular +singular +singular +singular +74506 singular +plural +plural +74510 plural +plural +plural +74514 singular +plural +plural +plural +74519 plural +plural +plural +plural +74524 singular +singular +74527 singular +74529 singular +plural +plural +74533 plural +74536 plural +74538 plural +74540 plural +plural +plural +plural +plural +plural +plural +plural +plural +74550 plural +singular +plural +plural +74555 plural +plural +74559 plural +74561 plural +plural +plural +singular +74566 singular +plural +plural +plural +plural +plural +74573 singular +singular +singular +singular +plural +singular +singular +74581 plural +singular +74584 singular +74586 plural +74588 singular +plural +plural +plural +74593 singular +singular +singular +singular +singular +74599 plural +singular +singular +singular +74604 plural +74606 plural +plural +74610 plural +74612 singular +74614 plural +74616 singular +74618 plural +plural +plural +74622 plural +plural +74626 plural +plural +plural +74630 singular +74632 plural +singular +singular +plural +singular +singular +74639 plural +plural +74642 singular +singular +74645 singular +74647 singular +74649 plural +plural +plural +74653 singular +singular +plural +plural +plural +74659 plural +74661 plural +singular +plural +74665 singular +74667 plural +plural +74670 plural +plural +plural +74674 singular +74676 singular +plural +74679 singular +plural +74682 plural +74685 plural +plural +singular +singular +singular +singular +74693 plural +plural +singular +74697 singular +singular +74700 plural +plural +plural +plural +74705 singular +singular +74708 plural +plural +singular +singular +singular +singular +74715 plural +74717 singular +singular +74721 singular +singular +singular +singular +singular +74727 singular +singular +singular +singular +74732 plural +74734 singular +74737 singular +plural +74740 singular +singular +74744 singular +74746 singular +singular +74750 plural +74752 plural +74754 singular +singular +singular +singular +singular +74761 singular +74763 singular +singular +singular +singular +singular +singular +singular +singular +singular +74773 plural +plural +74776 singular +singular +singular +74780 singular +singular +plural +plural +74785 singular +74788 singular +74791 singular +74793 singular +singular +74796 singular +singular +singular +singular +singular +singular +singular +singular +74805 singular +singular +singular +singular +74810 plural +74812 plural +74814 singular +plural +singular +singular +singular +singular +74821 singular +74824 singular +singular +singular +74828 plural +plural +plural +plural +74833 plural +plural +plural +74837 plural +plural +74840 singular +singular +singular +singular +singular +74847 plural +plural +plural +plural +plural +74853 plural +plural +plural +plural +74858 plural +plural +74861 plural +plural +74864 plural +74867 plural +plural +plural +singular +singular +74873 plural +singular +singular +74877 singular +74879 plural +singular +singular +74883 singular +singular +plural +74887 singular +singular +singular +74891 singular +singular +74894 singular +singular +74897 plural +74899 singular +singular +plural +74903 singular +singular +74908 singular +plural +singular +singular +singular +74914 plural +singular +singular +plural +74919 singular +74921 singular +74923 singular +singular +singular +singular +singular +singular +singular +singular +singular +74933 singular +singular +74936 singular +singular +74939 singular +singular +plural +74944 singular +singular +singular +74948 plural +74951 singular +plural +74954 singular +singular +singular +plural +74959 plural +74961 plural +74963 singular +plural +74966 singular +74968 singular +singular +74971 singular +singular +74975 singular +singular +singular +singular +singular +singular +singular +singular +singular +74985 plural +plural +74988 singular +singular +singular +plural +plural +74994 singular +singular +plural +plural +plural +75000 singular +singular +75003 singular +75005 singular +75007 plural +75009 plural +plural +plural +plural +plural +75015 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +75033 plural +plural +75036 singular +75039 singular +75041 singular +singular +singular +singular +singular +75047 plural +singular +singular +singular +singular +75053 plural +75055 singular +singular +singular +plural +75060 singular +plural +75063 singular +plural +plural +75067 singular +singular +singular +singular +singular +singular +singular +75075 plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +75089 plural +singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +plural +plural +plural +plural +singular +singular +75107 singular +singular +75110 plural +plural +75113 singular +singular +75116 singular +singular +singular +singular +singular +singular +75123 singular +singular +singular +75128 singular +75130 singular +singular +singular +singular +75135 plural +plural +singular +plural +75140 singular +singular +singular +singular +singular +plural +plural +singular +singular +75150 singular +singular +plural +75154 singular +singular +75157 plural +plural +75160 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +singular +singular +plural +plural +75175 plural +plural +plural +75182 singular +plural +plural +plural +75187 singular +singular +singular +75191 plural +75193 plural +plural +plural +plural +plural +plural +plural +75202 plural +plural +plural +plural +plural +75208 singular +plural +singular +singular +75214 plural +singular +singular +singular +singular +singular +plural +75222 singular +singular +singular +75226 plural +plural +plural +singular +75231 singular +singular +75235 singular +singular +singular +75239 singular +plural +plural +singular +singular +75245 plural +plural +plural +plural +75251 singular +singular +singular +75256 plural +plural +singular +singular +75261 plural +75263 plural +plural +plural +75267 plural +plural +plural +singular +75272 singular +singular +singular +singular +75277 singular +plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +75289 singular +75291 plural +plural +75294 singular +singular +singular +singular +singular +singular +singular +singular +singular +75304 plural +plural +75308 singular +plural +singular +75312 singular +singular +singular +singular +singular +75318 singular +75320 singular +plural +75323 singular +plural +singular +singular +75328 singular +75330 singular +75332 plural +plural +singular +75336 singular +singular +singular +75340 singular +singular +75343 singular +singular +singular +75347 plural +singular +singular +singular +singular +singular +75354 plural +plural +75357 singular +singular +singular +75361 singular +plural +75364 singular +singular +singular +singular +singular +singular +75371 plural +plural +75374 singular +singular +75377 plural +singular +plural +75382 singular +plural +75385 singular +singular +singular +singular +75390 singular +75392 singular +singular +singular +75396 singular +singular +plural +plural +plural +plural +plural +plural +singular +plural +plural +plural +75409 singular +singular +singular +plural +plural +plural +75416 singular +singular +75419 plural +plural +plural +75423 plural +75426 plural +plural +75429 singular +75431 singular +singular +singular +75435 plural +plural +plural +singular +plural +plural +plural +plural +plural +75445 singular +75449 plural +plural +75454 plural +plural +plural +plural +75459 plural +plural +plural +plural +plural +plural +plural +plural +75468 plural +plural +75471 plural +plural +75474 plural +plural +plural +75478 plural +plural +75482 singular +singular +75485 plural +75487 singular +singular +plural +75491 singular +singular +75494 plural +plural +plural +plural +75499 plural +75501 plural +singular +singular +75505 singular +singular +plural +75509 singular +75511 singular +singular +plural +plural +75517 singular +singular +singular +singular +singular +75523 plural +75526 plural +plural +singular +plural +75531 plural +plural +singular +75535 singular +75537 singular +singular +singular +75544 plural +75547 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +75558 plural +75560 plural +plural +75563 plural +singular +singular +75567 singular +singular +75570 plural +plural +plural +singular +singular +75576 plural +plural +plural +75580 plural +75582 plural +plural +plural +75586 plural +plural +plural +plural +plural +plural +75593 plural +plural +singular +singular +75598 plural +singular +singular +singular +plural +plural +75606 singular +singular +75610 plural +plural +plural +singular +75615 plural +plural +75618 plural +plural +plural +75622 plural +singular +singular +plural +plural +75629 plural +plural +singular +singular +75634 plural +plural +75637 plural +plural +singular +plural +singular +singular +75644 singular +plural +75647 plural +singular +singular +75651 plural +plural +plural +plural +75656 plural +singular +singular +75660 singular +singular +75663 plural +plural +plural +plural +75668 plural +plural +75672 singular +plural +75675 singular +singular +75678 singular +singular +75681 singular +plural +plural +75685 singular +singular +plural +plural +plural +75691 plural +plural +plural +plural +75696 singular +plural +plural +singular +singular +75702 singular +singular +singular +75706 singular +plural +plural +plural +75711 singular +plural +75716 plural +75718 plural +plural +75721 plural +plural +plural +plural +plural +75727 plural +75729 plural +75732 plural +plural +75735 singular +singular +plural +75741 singular +singular +singular +75745 singular +singular +singular +singular +singular +singular +plural +75753 plural +75755 plural +plural +plural +75761 singular +singular +plural +plural +plural +75769 singular +singular +75772 plural +75774 singular +singular +75777 singular +singular +75781 plural +plural +singular +singular +plural +75787 plural +75789 plural +singular +75792 singular +singular +75795 singular +singular +75799 plural +plural +75802 singular +plural +75806 plural +plural +singular +plural +singular +singular +singular +singular +singular +singular +75817 singular +singular +singular +singular +singular +singular +75825 singular +75827 singular +singular +plural +plural +75832 plural +plural +75836 singular +singular +75839 singular +singular +75842 plural +plural +75845 plural +75847 plural +plural +75850 plural +plural +plural +singular +75855 plural +plural +75858 singular +singular +singular +singular +singular +75865 plural +singular +plural +plural +singular +75872 singular +singular +75875 singular +singular +singular +75879 plural +singular +75882 singular +singular +singular +plural +plural +plural +75889 singular +singular +singular +singular +singular +75895 singular +singular +singular +75899 plural +plural +singular +75903 plural +plural +plural +75907 plural +75909 plural +75911 singular +plural +75914 plural +plural +75917 plural +plural +plural +75921 singular +singular +plural +75926 singular +75929 singular +singular +75932 singular +singular +75935 singular +singular +singular +singular +singular +plural +plural +75943 plural +75945 plural +plural +singular +75949 singular +75951 singular +plural +plural +plural +singular +75957 singular +75959 singular +singular +singular +singular +75964 singular +plural +plural +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +75978 plural +plural +75981 singular +singular +singular +75985 singular +singular +singular +75990 plural +plural +singular +75995 plural +plural +singular +singular +singular +singular +singular +plural +singular +76005 singular +76007 plural +plural +76010 singular +76012 singular +singular +singular +plural +76018 singular +singular +singular +singular +singular +plural +plural +76026 plural +plural +singular +singular +plural +76032 singular +singular +76037 plural +singular +76040 plural +76044 singular +76046 singular +singular +plural +singular +76052 singular +plural +76055 plural +76057 plural +76060 plural +plural +76063 plural +plural +plural +76067 singular +76069 singular +plural +76072 plural +singular +singular +singular +76077 plural +76079 singular +76081 singular +76083 singular +singular +singular +76087 singular +singular +singular +singular +76092 singular +76095 plural +plural +singular +singular +singular +singular +singular +plural +76104 singular +plural +plural +plural +76111 singular +singular +76114 singular +singular +76117 singular +singular +76120 singular +76122 singular +singular +singular +singular +singular +plural +singular +singular +76131 plural +76133 plural +singular +plural +76137 plural +plural +76140 plural +plural +plural +singular +76145 singular +76149 singular +singular +singular +76153 singular +plural +76156 plural +plural +plural +singular +plural +76162 plural +76164 singular +singular +singular +76168 singular +singular +singular +76172 plural +76174 plural +76176 plural +singular +76179 plural +plural +singular +76183 singular +76185 singular +singular +singular +singular +singular +singular +singular +singular +76194 singular +76196 singular +singular +76199 singular +singular +singular +76203 singular +76205 singular +76207 plural +plural +plural +76211 singular +singular +singular +plural +76217 singular +singular +76220 singular +76222 plural +76224 plural +76226 plural +plural +singular +singular +76231 singular +76233 singular +singular +76236 singular +singular +singular +76240 plural +76242 plural +76245 plural +76247 singular +singular +76250 singular +singular +76253 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +76264 singular +singular +singular +76268 plural +plural +76271 plural +singular +plural +plural +singular +76277 plural +singular +singular +plural +76282 singular +singular +plural +singular +singular +76288 singular +76291 plural +plural +singular +76295 singular +76297 singular +76299 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +76315 singular +singular +singular +singular +singular +singular +76322 singular +singular +singular +singular +76327 plural +plural +plural +plural +plural +76333 plural +76335 singular +singular +singular +76339 singular +76341 singular +singular +singular +76345 singular +76347 singular +76350 singular +76352 singular +singular +76355 singular +76357 singular +singular +singular +singular +76362 singular +76364 singular +singular +singular +singular +76369 singular +singular +singular +76373 singular +singular +76376 plural +76378 singular +76380 plural +singular +singular +singular +singular +76386 singular +singular +singular +singular +singular +plural +76393 plural +plural +singular +singular +76398 plural +singular +76401 singular +singular +plural +76406 singular +singular +singular +singular +plural +plural +76413 singular +singular +76416 singular +singular +singular +76420 singular +singular +singular +singular +singular +76426 plural +plural +76430 singular +singular +singular +76434 singular +singular +76437 plural +76440 singular +singular +plural +76445 singular +plural +76448 singular +76450 plural +76452 singular +singular +76455 plural +plural +plural +76459 singular +singular +singular +plural +76465 singular +plural +76468 singular +singular +76471 plural +plural +singular +singular +singular +plural +76478 singular +singular +76481 singular +plural +singular +singular +singular +76487 singular +singular +76490 singular +plural +plural +plural +plural +singular +singular +76498 singular +singular +76502 singular +singular +76505 singular +singular +76508 plural +singular +singular +76512 singular +singular +76515 plural +76517 singular +plural +singular +76522 singular +singular +76525 singular +singular +singular +plural +plural +76531 plural +plural +76534 singular +singular +76538 singular +76540 singular +76542 singular +76544 singular +76546 plural +singular +singular +singular +singular +76552 singular +singular +76555 singular +76557 singular +singular +76560 singular +singular +singular +singular +76565 singular +76567 singular +singular +singular +singular +singular +76573 singular +singular +singular +76577 singular +singular +plural +plural +plural +76583 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +76595 plural +plural +singular +76599 singular +singular +singular +singular +singular +singular +singular +singular +76608 singular +singular +singular +singular +76613 singular +76615 plural +76617 singular +singular +singular +singular +singular +singular +singular +76625 singular +singular +76629 singular +singular +76632 plural +singular +singular +76636 singular +plural +singular +76640 singular +singular +plural +singular +singular +singular +singular +76648 singular +singular +76652 singular +singular +plural +plural +plural +plural +plural +plural +76661 singular +singular +singular +singular +singular +plural +plural +76669 singular +singular +76673 plural +plural +singular +singular +singular +76679 plural +plural +76682 singular +singular +singular +76686 singular +76688 singular +singular +singular +76693 singular +singular +singular +plural +plural +plural +76701 singular +76704 plural +plural +76707 singular +76709 plural +76711 singular +singular +plural +plural +76716 plural +76718 singular +76721 plural +76723 singular +singular +singular +76727 singular +76730 singular +plural +76733 plural +plural +76736 singular +singular +singular +76740 singular +singular +singular +singular +singular +singular +singular +singular +singular +76750 plural +76752 singular +singular +76755 singular +singular +singular +76759 singular +singular +76762 plural +plural +76765 singular +singular +singular +singular +singular +76771 singular +plural +singular +singular +plural +singular +singular +singular +singular +singular +76782 plural +76784 plural +plural +76787 plural +76789 plural +plural +plural +plural +76796 singular +76798 singular +singular +singular +76802 plural +plural +singular +76806 singular +76808 singular +singular +singular +singular +76814 plural +plural +76817 plural +plural +singular +singular +76822 singular +singular +singular +76826 plural +singular +plural +plural +76831 singular +singular +76834 singular +singular +singular +76838 singular +singular +76841 plural +76844 plural +plural +plural +singular +singular +76850 singular +singular +singular +singular +76855 plural +76857 plural +76859 plural +76861 plural +plural +singular +singular +singular +76867 plural +plural +singular +76873 plural +plural +76877 singular +singular +singular +plural +76882 plural +76886 plural +plural +plural +76890 plural +plural +plural +plural +76896 plural +plural +76899 plural +plural +plural +plural +76905 plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +plural +singular +plural +singular +singular +singular +singular +singular +76925 singular +singular +singular +singular +76930 plural +singular +plural +plural +76935 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +76946 singular +singular +singular +76950 plural +plural +plural +76954 singular +76956 plural +singular +singular +76960 singular +singular +singular +singular +singular +singular +singular +plural +singular +76970 plural +76972 plural +76974 plural +76977 singular +singular +singular +76981 singular +singular +singular +plural +76986 plural +76988 plural +plural +plural +singular +singular +76994 singular +singular +76997 plural +plural +77000 singular +singular +singular +singular +singular +singular +77007 plural +plural +plural +plural +plural +77013 plural +plural +plural +plural +77018 plural +plural +plural +plural +plural +plural +plural +plural +plural +77028 plural +77030 plural +plural +plural +plural +77035 plural +singular +plural +77041 singular +singular +singular +singular +singular +singular +77048 singular +77051 singular +plural +singular +singular +singular +77057 singular +singular +singular +singular +singular +77063 singular +77066 plural +singular +77070 singular +77072 singular +77074 singular +singular +77077 singular +77080 singular +77082 singular +singular +77085 plural +plural +singular +singular +77090 singular +singular +singular +singular +77095 singular +singular +77098 singular +77100 singular +singular +singular +singular +77105 singular +77107 singular +singular +77110 singular +singular +singular +singular +singular +plural +plural +singular +singular +plural +plural +77122 singular +singular +plural +77126 plural +77128 plural +plural +plural +singular +singular +plural +plural +77137 singular +singular +singular +singular +singular +plural +singular +77145 plural +77147 plural +77150 singular +singular +77154 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +77167 plural +plural +plural +77171 plural +plural +77175 singular +singular +singular +plural +singular +singular +77182 singular +77186 singular +singular +singular +singular +singular +singular +77193 singular +77199 singular +singular +singular +singular +singular +singular +singular +77207 singular +singular +singular +77211 plural +77213 plural +plural +singular +plural +plural +singular +singular +singular +plural +77223 singular +singular +singular +singular +singular +77229 plural +77232 singular +singular +plural +singular +77237 singular +plural +plural +singular +77242 singular +singular +77246 singular +singular +77249 plural +singular +plural +plural +77254 plural +77256 plural +plural +plural +singular +plural +plural +77263 singular +plural +77267 singular +77269 singular +singular +77273 plural +singular +singular +plural +77278 singular +singular +singular +singular +77283 plural +plural +77286 plural +singular +77289 plural +77292 singular +singular +plural +singular +plural +singular +plural +plural +77301 singular +singular +singular +singular +singular +singular +77308 singular +singular +77311 plural +77313 singular +singular +singular +singular +singular +77319 plural +77322 plural +77324 plural +singular +singular +singular +plural +77330 singular +singular +singular +singular +singular +singular +plural +plural +77339 singular +plural +singular +singular +77344 singular +singular +plural +singular +singular +singular +singular +singular +singular +77354 singular +singular +77357 plural +plural +plural +singular +singular +plural +plural +77366 singular +singular +77370 plural +plural +plural +plural +77375 plural +77377 plural +singular +singular +plural +77384 singular +77386 plural +77388 singular +plural +plural +77392 singular +singular +plural +plural +77397 plural +plural +plural +plural +77403 singular +77405 plural +77407 singular +singular +singular +singular +77413 plural +77415 singular +77417 singular +77419 singular +singular +singular +77423 singular +77425 plural +77427 singular +77429 singular +singular +singular +77433 plural +singular +singular +singular +singular +77440 singular +77442 singular +singular +singular +singular +singular +plural +plural +77450 singular +singular +singular +77455 singular +77457 singular +plural +plural +plural +77462 singular +plural +singular +singular +singular +77468 singular +singular +77471 singular +plural +plural +singular +singular +singular +77478 plural +plural +singular +77483 singular +singular +singular +singular +singular +77490 singular +77492 singular +singular +singular +singular +singular +77498 plural +singular +77501 singular +77503 singular +singular +77506 singular +77508 plural +singular +77511 singular +77513 plural +plural +plural +plural +77518 singular +77520 plural +plural +77523 plural +plural +plural +plural +77528 singular +77530 plural +77532 plural +77534 singular +singular +77537 plural +77540 plural +plural +77545 singular +singular +plural +plural +plural +plural +77552 singular +singular +singular +singular +plural +singular +77559 singular +77562 singular +singular +singular +77566 singular +77568 plural +plural +plural +77572 singular +singular +77575 plural +plural +77578 singular +singular +singular +singular +singular +77584 singular +singular +singular +singular +singular +singular +singular +singular +77593 singular +singular +77596 singular +singular +singular +77600 singular +singular +77604 singular +singular +77607 singular +singular +singular +singular +singular +77613 singular +singular +77616 plural +77618 singular +singular +singular +77622 singular +singular +77625 singular +77627 singular +singular +singular +77631 singular +77634 singular +singular +77637 singular +77639 singular +77641 plural +singular +singular +singular +77646 plural +77650 plural +plural +77653 singular +singular +plural +77657 singular +singular +77660 plural +77662 singular +singular +77666 singular +singular +singular +singular +77673 singular +plural +77676 singular +singular +plural +singular +plural +77682 singular +77684 plural +singular +singular +plural +77689 singular +77691 singular +singular +plural +77695 singular +77697 singular +singular +plural +77701 singular +77703 singular +singular +singular +77707 singular +singular +77711 singular +singular +77715 singular +singular +77718 singular +77720 singular +singular +singular +singular +singular +singular +singular +77729 plural +77732 singular +singular +singular +77736 singular +singular +plural +plural +singular +singular +77744 plural +77746 singular +singular +plural +plural +plural +77752 singular +singular +77755 singular +singular +77758 singular +singular +77762 plural +singular +singular +singular +singular +singular +singular +singular +77771 singular +singular +77774 plural +77776 plural +plural +plural +singular +77781 plural +plural +plural +plural +77786 singular +singular +plural +plural +singular +77793 plural +77796 plural +singular +77800 plural +singular +77803 plural +77805 plural +singular +77808 singular +singular +77811 singular +77813 singular +singular +plural +singular +77819 singular +singular +singular +singular +singular +singular +77826 singular +plural +77829 singular +plural +singular +77833 singular +77836 singular +singular +singular +singular +77841 singular +singular +singular +singular +77846 plural +77848 plural +singular +plural +77852 singular +singular +singular +singular +singular +singular +singular +77860 singular +singular +singular +singular +77865 singular +singular +singular +singular +77870 singular +singular +singular +77874 singular +singular +singular +singular +singular +singular +77882 singular +singular +singular +77887 plural +singular +singular +singular +plural +plural +77894 plural +singular +singular +singular +singular +77900 singular +plural +77903 singular +77905 singular +77907 singular +singular +77910 singular +singular +plural +77915 singular +singular +77919 singular +singular +singular +singular +singular +plural +plural +plural +77928 singular +singular +singular +77932 singular +plural +singular +singular +singular +singular +singular +plural +77941 singular +singular +singular +singular +singular +singular +77948 singular +singular +singular +singular +singular +singular +77955 plural +77957 singular +singular +singular +plural +plural +77963 plural +77965 plural +singular +singular +77970 plural +plural +plural +plural +plural +plural +singular +77978 plural +plural +77981 plural +77983 plural +plural +77986 singular +singular +77989 singular +77991 singular +77993 plural +singular +singular +singular +77998 plural +78000 singular +plural +singular +singular +78005 singular +singular +singular +singular +singular +singular +singular +78015 singular +singular +78018 plural +plural +plural +singular +78023 singular +78025 singular +singular +singular +plural +plural +78031 plural +plural +singular +78035 plural +plural +78038 singular +plural +plural +plural +plural +plural +singular +plural +78048 plural +singular +78051 plural +plural +78055 plural +plural +singular +singular +singular +78061 singular +singular +singular +singular +78070 plural +singular +singular +plural +plural +singular +78077 plural +plural +singular +78081 singular +singular +singular +plural +78086 plural +78088 singular +singular +singular +singular +plural +singular +plural +78097 singular +singular +singular +singular +78103 plural +singular +singular +singular +78109 plural +singular +78112 singular +singular +78116 singular +78118 plural +plural +78121 plural +plural +plural +78125 singular +singular +78128 singular +78131 singular +singular +78135 plural +78137 plural +singular +singular +78141 singular +plural +plural +78145 plural +singular +singular +78149 plural +singular +singular +plural +78154 singular +78156 plural +78158 singular +78161 singular +singular +singular +singular +singular +singular +78168 plural +plural +plural +plural +78173 plural +78175 plural +singular +singular +plural +78180 singular +singular +78185 plural +78188 singular +78190 plural +plural +plural +plural +plural +plural +plural +plural +78199 plural +78201 plural +78204 singular +singular +78207 plural +plural +plural +78211 singular +singular +plural +plural +plural +78217 plural +78219 singular +singular +78222 plural +plural +78225 plural +plural +78228 plural +singular +singular +plural +78233 singular +plural +78236 singular +78238 plural +plural +plural +plural +singular +singular +78245 plural +78247 singular +78249 plural +plural +78252 singular +78254 plural +78256 singular +singular +singular +singular +singular +singular +78263 plural +78265 plural +78267 singular +78269 singular +plural +plural +plural +plural +plural +78276 plural +plural +plural +singular +singular +78282 singular +singular +singular +singular +singular +78288 singular +78290 plural +78292 singular +singular +singular +singular +singular +singular +singular +plural +plural +78302 plural +plural +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +78319 plural +78321 singular +plural +plural +78325 plural +78327 plural +plural +78331 plural +plural +plural +78335 plural +78337 plural +plural +singular +78342 singular +78344 singular +78346 singular +singular +singular +singular +plural +plural +78353 plural +singular +singular +singular +78358 singular +78360 singular +78366 singular +78368 singular +78370 singular +singular +singular +singular +singular +78377 singular +singular +plural +plural +singular +singular +singular +singular +singular +78388 plural +plural +plural +plural +plural +78394 plural +78396 plural +78398 plural +plural +78401 singular +78403 plural +plural +78406 singular +plural +singular +singular +singular +singular +singular +78414 plural +plural +78417 plural +78419 plural +plural +plural +plural +78424 singular +singular +singular +singular +singular +78430 plural +78432 singular +78434 plural +plural +plural +plural +78439 singular +plural +singular +78443 singular +singular +plural +singular +singular +singular +78450 plural +plural +78453 singular +singular +singular +78457 plural +plural +plural +singular +singular +78463 plural +singular +singular +singular +plural +plural +plural +plural +plural +78473 plural +plural +78476 plural +plural +singular +singular +plural +78482 plural +78484 singular +78486 singular +singular +78489 singular +plural +78492 plural +plural +plural +plural +singular +78499 plural +plural +plural +78503 plural +plural +78507 singular +singular +78510 plural +78512 singular +78514 singular +singular +singular +singular +plural +plural +plural +plural +plural +singular +plural +78526 plural +plural +singular +singular +78531 plural +78533 singular +78535 plural +78537 plural +singular +singular +78541 plural +plural +78544 plural +plural +78547 singular +singular +singular +78551 singular +78553 singular +singular +singular +singular +78559 plural +plural +plural +plural +plural +plural +78566 plural +78568 singular +singular +78571 singular +78573 singular +78575 singular +78577 singular +singular +singular +plural +plural +singular +singular +singular +78586 plural +singular +singular +78590 singular +singular +singular +singular +singular +plural +plural +singular +singular +78600 singular +singular +78603 singular +singular +plural +singular +singular +78610 plural +plural +78613 plural +78615 plural +78617 singular +singular +plural +plural +singular +78623 singular +singular +plural +singular +singular +singular +78630 plural +78632 singular +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +78645 singular +singular +78648 singular +singular +78651 singular +singular +singular +plural +78656 singular +78660 plural +singular +78663 singular +singular +78666 singular +singular +singular +singular +singular +78672 plural +plural +singular +singular +singular +78678 singular +singular +78681 singular +plural +78684 singular +78686 singular +singular +singular +singular +singular +78692 singular +singular +singular +singular +78697 singular +singular +singular +singular +78702 plural +singular +singular +plural +singular +78708 singular +singular +78712 plural +plural +plural +78716 plural +singular +78719 singular +singular +singular +singular +singular +singular +78726 singular +singular +singular +singular +78731 singular +plural +78734 plural +singular +78737 plural +78739 plural +plural +singular +singular +78744 plural +plural +plural +plural +singular +singular +78751 singular +singular +singular +singular +singular +78757 singular +78759 plural +plural +78762 singular +singular +singular +78766 singular +singular +singular +78770 plural +singular +singular +plural +78775 singular +singular +78779 singular +singular +78782 singular +singular +78785 singular +singular +singular +78789 singular +78791 singular +singular +78795 singular +78797 plural +plural +singular +78801 singular +78803 plural +plural +78806 singular +singular +singular +singular +78811 singular +singular +singular +singular +singular +plural +singular +singular +78820 singular +78823 singular +singular +singular +singular +singular +singular +singular +78831 singular +singular +78834 singular +78836 singular +78838 singular +singular +78841 singular +78844 singular +singular +singular +singular +singular +78850 plural +plural +plural +singular +78855 singular +78857 singular +singular +plural +plural +plural +plural +plural +78865 singular +singular +singular +78869 singular +singular +singular +singular +singular +singular +singular +78877 singular +singular +singular +78881 singular +singular +singular +singular +78887 singular +singular +78890 singular +singular +singular +singular +singular +78896 plural +plural +singular +singular +singular +singular +singular +78904 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +78915 plural +plural +singular +singular +78920 plural +78922 singular +78924 plural +78926 singular +singular +singular +singular +plural +78932 plural +singular +78935 singular +singular +singular +singular +singular +singular +78942 singular +singular +singular +78946 singular +78948 singular +singular +singular +78952 plural +plural +singular +singular +78957 singular +singular +singular +singular +singular +singular +singular +singular +78966 plural +plural +plural +78970 singular +singular +singular +singular +singular +78976 singular +singular +78979 singular +78981 plural +78983 plural +78985 plural +78988 singular +singular +singular +singular +78993 singular +singular +singular +78997 plural +78999 plural +singular +79002 plural +plural +79005 singular +singular +singular +79009 plural +79011 plural +plural +79014 singular +79016 plural +79018 singular +singular +singular +79022 singular +singular +singular +79026 singular +79029 singular +singular +79032 singular +singular +79035 singular +79037 singular +79039 singular +singular +79042 singular +singular +singular +singular +singular +singular +singular +singular +singular +79052 singular +singular +singular +singular +singular +79058 singular +79060 singular +singular +singular +singular +singular +singular +singular +singular +singular +79071 plural +79073 singular +plural +singular +singular +plural +79080 plural +singular +singular +singular +singular +singular +79087 singular +singular +singular +singular +79092 singular +singular +singular +79096 singular +singular +singular +79100 singular +79102 singular +singular +79105 plural +plural +79108 singular +singular +79113 singular +79115 singular +singular +singular +singular +singular +singular +79122 plural +plural +singular +singular +79127 singular +79129 singular +singular +singular +singular +79134 singular +singular +singular +79138 plural +plural +plural +plural +singular +79144 singular +79146 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +79158 singular +79160 singular +singular +singular +singular +plural +plural +plural +singular +singular +79170 singular +singular +singular +79175 singular +singular +79179 singular +79181 singular +singular +singular +79185 singular +singular +79188 plural +plural +singular +plural +singular +79194 singular +79197 singular +singular +singular +singular +79202 singular +plural +plural +singular +singular +singular +singular +singular +79211 singular +singular +singular +79215 singular +79217 singular +singular +79220 singular +singular +79223 singular +79225 singular +79228 singular +singular +singular +singular +79233 singular +79235 singular +79237 singular +79240 plural +singular +singular +79244 singular +singular +singular +singular +plural +plural +79251 singular +singular +singular +79255 singular +79257 plural +plural +plural +plural +79262 singular +79265 singular +singular +singular +singular +singular +singular +singular +79273 singular +singular +singular +79277 singular +79279 singular +plural +plural +plural +plural +singular +79286 singular +79288 singular +singular +79291 singular +79293 plural +singular +singular +singular +79298 plural +singular +79301 singular +singular +singular +79305 plural +singular +singular +plural +plural +singular +79312 singular +singular +singular +singular +79318 singular +singular +79322 plural +plural +79325 plural +plural +plural +79329 singular +plural +79332 singular +singular +singular +singular +singular +79338 singular +79340 singular +singular +singular +plural +79345 singular +79347 singular +79349 singular +singular +79352 plural +singular +79356 plural +singular +plural +plural +singular +79362 singular +singular +singular +singular +singular +79368 singular +singular +79371 singular +79373 singular +plural +79376 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +79388 singular +singular +singular +singular +singular +79394 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +79405 singular +singular +79409 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +79420 singular +singular +singular +79424 singular +79426 singular +79429 plural +79431 singular +plural +plural +singular +79438 singular +singular +singular +singular +79443 singular +singular +79447 singular +singular +singular +79451 singular +79453 singular +79455 singular +singular +singular +singular +singular +79461 plural +plural +singular +singular +79466 singular +79468 plural +plural +79471 singular +singular +singular +79475 singular +singular +singular +singular +79480 plural +79482 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +79498 singular +singular +singular +79502 singular +singular +singular +singular +plural +plural +singular +79510 singular +singular +singular +79514 singular +singular +79517 singular +singular +79520 singular +singular +singular +singular +singular +singular +79527 singular +singular +singular +singular +79532 singular +singular +79535 singular +singular +singular +79540 plural +plural +plural +singular +singular +singular +singular +singular +79549 singular +singular +singular +79553 singular +plural +79556 singular +singular +79559 singular +79561 singular +singular +singular +singular +79566 singular +79569 singular +singular +singular +79573 singular +singular +singular +singular +plural +79579 singular +singular +plural +singular +79584 singular +singular +plural +plural +singular +singular +singular +singular +plural +79594 singular +79596 singular +plural +singular +79600 singular +singular +singular +singular +singular +plural +plural +79608 plural +79610 singular +singular +singular +79614 plural +plural +79618 singular +79620 singular +79622 singular +79624 plural +plural +plural +plural +79629 singular +singular +singular +79633 plural +plural +plural +plural +singular +singular +plural +plural +plural +plural +singular +singular +plural +79647 singular +singular +singular +79652 singular +singular +singular +79656 singular +79658 singular +singular +singular +singular +singular +singular +79665 singular +singular +singular +79669 plural +singular +singular +singular +singular +79675 singular +79677 singular +plural +79682 singular +singular +79685 singular +singular +singular +singular +singular +singular +singular +singular +singular +79696 singular +plural +79699 singular +79701 singular +79703 singular +singular +79707 singular +79710 singular +singular +plural +singular +plural +plural +plural +plural +plural +79724 singular +plural +singular +singular +79729 plural +plural +79732 plural +singular +singular +singular +plural +plural +plural +plural +plural +79742 plural +plural +plural +singular +plural +plural +singular +79751 singular +plural +singular +singular +79757 plural +plural +singular +singular +79762 singular +singular +79765 singular +singular +79768 plural +79770 plural +79772 singular +plural +79775 singular +79777 plural +79779 singular +79781 singular +plural +plural +singular +79786 singular +79788 singular +singular +singular +singular +singular +singular +singular +singular +singular +79798 singular +79800 singular +singular +singular +singular +singular +79806 singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +79818 singular +singular +79821 singular +79823 singular +singular +79827 singular +singular +singular +singular +79832 singular +singular +79835 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +79847 singular +singular +singular +79851 singular +79853 singular +singular +singular +singular +singular +singular +79860 singular +79862 singular +singular +singular +singular +singular +79868 singular +singular +79871 singular +79873 plural +plural +plural +singular +79878 singular +79881 singular +singular +singular +79885 singular +singular +79888 singular +singular +79893 singular +79895 singular +79897 singular +plural +79900 plural +singular +79903 plural +plural +plural +79907 plural +plural +plural +79915 singular +plural +singular +79920 plural +plural +plural +singular +79925 singular +singular +79929 singular +singular +singular +singular +singular +singular +singular +79938 plural +singular +79941 singular +79943 singular +plural +79946 plural +plural +singular +plural +plural +plural +79953 plural +79956 plural +plural +79959 plural +79961 singular +79963 singular +singular +singular +singular +79968 plural +79971 plural +singular +singular +plural +79976 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +79992 singular +singular +singular +singular +79997 plural +plural +80000 singular +80003 plural +singular +80006 singular +singular +singular +singular +80011 singular +singular +80014 singular +80016 singular +singular +80019 singular +plural +singular +singular +80024 singular +singular +plural +singular +singular +singular +80031 plural +singular +singular +plural +80036 singular +singular +singular +80040 plural +singular +singular +80044 singular +singular +singular +80048 singular +singular +80052 singular +80054 singular +singular +80057 plural +plural +80061 singular +80063 singular +80066 plural +plural +80069 singular +singular +plural +plural +singular +singular +plural +80077 singular +80079 singular +singular +80082 singular +80084 plural +plural +plural +80089 singular +plural +80092 singular +singular +plural +plural +80097 singular +singular +80100 plural +singular +singular +singular +singular +plural +80107 singular +singular +singular +80111 singular +80113 singular +80115 singular +singular +singular +80119 singular +80122 singular +singular +singular +singular +80128 plural +plural +singular +plural +singular +80134 singular +singular +singular +singular +80139 singular +80143 plural +singular +singular +singular +singular +80149 plural +plural +80152 singular +singular +singular +plural +plural +singular +singular +80160 singular +singular +80163 singular +singular +singular +80167 singular +singular +singular +singular +singular +plural +80174 singular +80176 plural +plural +singular +singular +singular +80182 singular +singular +singular +80189 plural +80191 singular +singular +singular +singular +80199 singular +singular +singular +singular +80204 singular +plural +80207 singular +singular +singular +80211 plural +singular +singular +singular +singular +80217 singular +plural +plural +plural +plural +plural +80224 singular +singular +80227 singular +singular +plural +plural +singular +singular +80234 singular +singular +80237 singular +singular +80240 plural +80242 singular +singular +singular +singular +80247 plural +plural +80250 plural +plural +plural +singular +80255 plural +80257 plural +plural +plural +plural +80264 singular +singular +singular +singular +singular +singular +singular +80273 plural +plural +singular +singular +singular +singular +singular +singular +singular +80283 plural +80285 singular +singular +singular +singular +80292 plural +plural +singular +plural +80298 singular +singular +singular +80302 singular +80304 plural +singular +80307 singular +singular +80310 singular +singular +singular +80315 singular +singular +80319 plural +plural +80323 singular +singular +80326 plural +80328 singular +80330 plural +80332 plural +singular +80335 singular +singular +singular +80340 singular +singular +singular +plural +singular +80346 singular +singular +singular +singular +singular +plural +plural +80354 singular +singular +80357 plural +80359 plural +plural +plural +singular +singular +80365 singular +singular +singular +80369 plural +plural +plural +80374 singular +80376 plural +80378 plural +80380 singular +80382 singular +singular +singular +singular +80388 singular +singular +80391 plural +plural +80394 singular +80397 plural +plural +plural +singular +80402 singular +singular +singular +singular +80407 plural +80409 plural +plural +singular +singular +80414 singular +singular +80418 singular +80421 singular +80423 plural +80425 singular +singular +plural +plural +80430 singular +80434 singular +80436 singular +plural +80439 singular +80441 plural +plural +plural +singular +singular +plural +singular +singular +80450 singular +singular +80454 singular +singular +singular +singular +singular +80460 plural +singular +80464 singular +plural +singular +singular +80470 plural +80472 singular +plural +singular +singular +singular +singular +plural +80480 singular +singular +singular +80484 singular +singular +singular +singular +singular +plural +80491 plural +singular +singular +singular +80496 singular +80499 singular +80502 singular +plural +plural +singular +80507 singular +80510 plural +plural +singular +singular +singular +80516 singular +singular +singular +singular +singular +singular +singular +singular +singular +80526 singular +singular +80529 singular +80531 singular +singular +singular +80535 singular +singular +80538 singular +80540 singular +80542 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +80553 singular +singular +80556 singular +singular +singular +singular +80562 singular +80564 plural +singular +singular +80568 singular +singular +80572 singular +singular +singular +singular +singular +80578 singular +singular +singular +singular +singular +singular +singular +singular +80587 singular +singular +80590 plural +plural +singular +singular +singular +singular +singular +singular +80599 singular +singular +singular +singular +80604 plural +plural +singular +80608 plural +80610 singular +80612 plural +singular +plural +plural +80617 plural +plural +plural +plural +80622 singular +singular +80625 plural +singular +plural +singular +80630 singular +80632 singular +singular +80635 singular +singular +plural +80639 singular +80641 singular +singular +80645 singular +singular +singular +80649 singular +singular +80652 singular +80654 singular +80657 singular +80660 singular +plural +80663 plural +plural +plural +plural +singular +80669 singular +singular +singular +80673 singular +singular +80676 singular +80678 plural +plural +80681 plural +80685 singular +80687 singular +singular +80690 singular +80692 singular +singular +singular +singular +singular +80699 singular +singular +plural +singular +plural +80705 plural +plural +plural +plural +80710 plural +plural +plural +plural +80716 plural +singular +singular +singular +80723 singular +singular +plural +plural +80729 singular +singular +80733 singular +singular +singular +80737 singular +singular +singular +plural +plural +singular +80744 singular +singular +singular +singular +singular +80750 plural +singular +80754 plural +80757 singular +80759 singular +singular +singular +80763 singular +singular +singular +singular +singular +80769 singular +80771 singular +plural +singular +singular +80777 singular +singular +singular +80783 singular +80785 singular +singular +singular +singular +80790 singular +singular +80795 singular +singular +plural +plural +plural +singular +singular +singular +singular +plural +80806 singular +singular +80809 singular +singular +singular +80813 singular +singular +singular +singular +singular +80819 singular +singular +80822 plural +plural +plural +singular +singular +singular +80829 singular +plural +80832 singular +plural +singular +singular +80838 plural +plural +plural +80842 singular +singular +singular +singular +singular +plural +80849 singular +singular +singular +singular +singular +singular +singular +80857 singular +singular +80860 singular +singular +singular +80864 plural +plural +plural +plural +80869 plural +plural +plural +plural +plural +80875 singular +singular +80878 plural +singular +80882 singular +singular +plural +80886 singular +singular +80890 singular +singular +80893 singular +singular +plural +plural +80898 singular +singular +singular +80902 singular +singular +80905 plural +80907 singular +singular +singular +singular +80912 singular +80914 singular +singular +singular +80918 singular +singular +80921 singular +plural +plural +plural +plural +singular +singular +plural +singular +singular +plural +80933 plural +plural +80936 singular +singular +singular +plural +80941 singular +80944 singular +singular +singular +singular +80949 singular +singular +singular +80953 singular +singular +singular +80957 plural +singular +singular +80961 singular +80964 plural +80968 plural +80970 singular +singular +singular +80974 singular +80976 singular +singular +singular +singular +singular +80982 singular +80984 singular +singular +singular +80988 singular +80990 singular +80992 singular +singular +singular +80996 singular +singular +singular +81000 singular +81002 singular +singular +81005 singular +81007 singular +singular +singular +81011 singular +singular +81014 singular +singular +81017 plural +81019 singular +singular +81023 plural +81025 plural +plural +81028 singular +singular +singular +81032 singular +singular +singular +singular +singular +singular +81039 singular +singular +singular +singular +singular +81045 plural +plural +plural +plural +plural +plural +singular +81053 singular +singular +singular +singular +plural +plural +plural +singular +81063 plural +81066 plural +81069 singular +81073 singular +singular +singular +singular +singular +singular +81081 singular +singular +singular +singular +singular +singular +81089 singular +singular +singular +81093 singular +singular +81096 singular +81098 singular +singular +81101 plural +81105 singular +singular +singular +81109 singular +singular +singular +singular +singular +singular +81116 singular +singular +singular +singular +singular +81123 plural +81125 singular +plural +81129 singular +81131 singular +singular +singular +singular +singular +81137 singular +81140 singular +singular +singular +singular +singular +singular +singular +singular +81149 plural +plural +singular +81153 plural +singular +singular +singular +81158 singular +81161 singular +81163 singular +singular +singular +plural +plural +81169 plural +81171 plural +81173 plural +81175 singular +81178 singular +81181 singular +singular +singular +81185 singular +singular +81188 singular +singular +81191 singular +singular +singular +81196 plural +plural +plural +plural +plural +singular +81204 plural +81208 singular +singular +singular +singular +singular +singular +singular +singular +81219 singular +singular +81222 plural +plural +plural +singular +81227 singular +singular +singular +singular +singular +81233 singular +81235 singular +singular +plural +81239 singular +singular +81242 singular +singular +singular +81246 singular +singular +singular +81250 plural +singular +singular +singular +singular +81256 plural +81258 singular +singular +plural +singular +81264 singular +singular +singular +81269 singular +singular +singular +singular +singular +plural +plural +81277 singular +81279 singular +81281 plural +81284 plural +plural +plural +singular +81289 plural +singular +singular +81293 plural +plural +singular +singular +81298 plural +plural +singular +singular +81304 plural +plural +plural +81308 singular +plural +singular +81314 singular +plural +singular +81320 plural +81322 plural +81324 plural +singular +81327 singular +singular +81330 singular +81332 singular +singular +plural +plural +singular +singular +81339 singular +singular +singular +81344 singular +singular +singular +singular +singular +singular +singular +81352 plural +81354 singular +plural +singular +81358 plural +plural +plural +81362 singular +singular +singular +singular +singular +81368 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +81380 plural +81383 singular +singular +singular +singular +singular +81389 singular +singular +singular +singular +singular +singular +singular +singular +singular +81399 singular +81401 singular +81403 plural +plural +singular +81408 singular +singular +singular +81412 singular +singular +81415 singular +81417 plural +singular +singular +81421 plural +singular +singular +singular +singular +81427 singular +singular +81431 plural +plural +81434 plural +singular +singular +singular +81439 plural +plural +singular +81444 singular +81446 singular +81448 singular +singular +singular +singular +81453 singular +singular +singular +81457 plural +singular +plural +81461 singular +81463 plural +plural +singular +singular +81468 singular +81470 singular +singular +81473 singular +singular +singular +singular +singular +81480 plural +81482 singular +singular +81485 plural +81487 singular +singular +singular +singular +singular +81493 plural +plural +singular +81500 singular +singular +plural +singular +singular +plural +plural +81508 plural +plural +singular +plural +81513 singular +singular +plural +81518 singular +singular +singular +81522 singular +singular +81525 singular +singular +singular +singular +singular +81531 singular +81533 singular +singular +singular +81537 plural +plural +81541 plural +plural +81544 singular +plural +81547 singular +singular +singular +81551 singular +81553 singular +plural +singular +singular +81559 singular +singular +81562 plural +plural +81565 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +singular +81581 singular +singular +81584 singular +singular +singular +singular +singular +81590 singular +81592 singular +81594 singular +plural +singular +81598 singular +81600 plural +singular +singular +81604 singular +81606 singular +singular +81610 singular +plural +81613 singular +singular +81617 singular +singular +81620 singular +singular +singular +singular +singular +plural +plural +singular +81629 singular +81631 singular +singular +81634 singular +singular +81637 singular +singular +singular +singular +81643 singular +singular +81646 singular +singular +singular +81651 singular +81654 singular +81656 singular +singular +81660 plural +plural +plural +singular +81666 plural +singular +81669 singular +singular +81672 plural +plural +plural +singular +81677 singular +singular +81680 singular +singular +81683 singular +singular +81686 plural +plural +plural +81690 plural +plural +81693 plural +plural +81696 singular +singular +81699 plural +singular +singular +singular +singular +singular +81706 singular +singular +singular +singular +81711 singular +singular +singular +singular +81717 singular +singular +81721 singular +singular +81724 plural +81726 singular +singular +plural +81730 singular +singular +81733 plural +plural +plural +singular +singular +singular +singular +singular +81742 plural +singular +singular +singular +81748 plural +81750 singular +singular +plural +plural +singular +81756 plural +singular +singular +singular +81761 singular +singular +plural +81765 singular +81767 singular +singular +81770 singular +singular +singular +singular +81775 plural +plural +singular +singular +81781 plural +plural +singular +singular +81786 singular +plural +plural +81790 plural +81792 singular +singular +singular +81796 singular +singular +81799 singular +plural +plural +81803 plural +singular +singular +singular +singular +81809 singular +singular +singular +singular +81814 singular +singular +singular +plural +81819 singular +81822 plural +plural +plural +81827 plural +81829 singular +singular +81832 singular +plural +singular +singular +plural +singular +singular +81840 singular +81843 plural +singular +plural +81847 singular +singular +singular +plural +plural +singular +81854 singular +singular +singular +81858 singular +singular +singular +81862 singular +81864 singular +singular +singular +81868 singular +81870 singular +singular +81874 singular +singular +singular +singular +plural +plural +singular +81883 singular +81885 singular +singular +81888 singular +singular +singular +81892 singular +singular +81896 plural +plural +plural +81901 singular +singular +81904 singular +singular +singular +singular +81909 singular +singular +81912 singular +81914 plural +81916 singular +plural +81919 singular +singular +singular +singular +81924 singular +plural +plural +plural +singular +81933 plural +plural +81936 singular +singular +singular +singular +singular +81942 singular +81945 singular +81948 singular +singular +plural +singular +singular +81954 plural +81956 plural +singular +singular +81962 singular +singular +81965 singular +singular +singular +singular +singular +singular +81972 singular +singular +singular +81977 singular +81979 singular +singular +plural +plural +81984 plural +singular +singular +singular +singular +plural +81991 plural +81993 singular +singular +singular +plural +plural +plural +plural +singular +singular +82003 plural +82006 singular +singular +plural +plural +singular +singular +82013 plural +82016 plural +plural +singular +82020 singular +plural +82023 singular +singular +plural +singular +singular +singular +singular +plural +82033 singular +82035 plural +plural +82038 plural +plural +82041 singular +82043 singular +singular +singular +singular +singular +singular +singular +82051 plural +82053 singular +singular +singular +82057 singular +singular +singular +82061 singular +plural +singular +82065 plural +82067 singular +plural +singular +82073 singular +singular +82077 singular +singular +singular +82081 singular +singular +82084 plural +82086 singular +plural +82090 singular +singular +singular +singular +82095 plural +82097 singular +singular +82100 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +82111 singular +singular +singular +82115 singular +singular +singular +singular +82120 singular +82122 singular +singular +singular +singular +singular +plural +plural +plural +82131 singular +82133 plural +plural +82136 singular +singular +singular +82141 singular +82143 singular +singular +singular +singular +82148 singular +82150 singular +singular +plural +82156 singular +singular +singular +plural +plural +82162 singular +singular +82165 singular +singular +singular +plural +plural +plural +82172 singular +singular +plural +82176 plural +plural +plural +82181 singular +plural +82185 plural +plural +plural +82190 plural +82194 plural +plural +plural +82198 singular +plural +plural +plural +plural +singular +82206 plural +plural +plural +82211 singular +singular +82214 plural +singular +singular +82218 singular +singular +singular +82223 singular +plural +82226 plural +singular +singular +singular +singular +singular +82233 plural +plural +82237 plural +plural +82240 singular +singular +plural +82245 plural +82247 plural +plural +plural +plural +plural +singular +singular +82255 plural +singular +82260 singular +singular +singular +82264 singular +singular +singular +plural +82269 singular +singular +singular +singular +82274 plural +plural +plural +singular +plural +82280 singular +plural +82283 singular +82285 singular +82287 singular +singular +singular +singular +82292 singular +plural +singular +82296 singular +singular +singular +82300 singular +plural +82303 singular +singular +singular +singular +singular +82309 plural +82311 singular +singular +82315 plural +plural +plural +82319 plural +plural +singular +82323 plural +plural +plural +plural +82328 singular +singular +plural +82334 plural +singular +plural +singular +singular +plural +singular +singular +82343 singular +singular +82347 singular +singular +singular +singular +82352 plural +82354 plural +singular +singular +singular +singular +82360 singular +82362 singular +singular +plural +82366 plural +82368 plural +plural +plural +plural +82373 singular +singular +82376 plural +plural +plural +plural +plural +82382 plural +singular +singular +singular +singular +plural +82389 singular +singular +82392 plural +82394 singular +singular +plural +singular +singular +82401 singular +singular +singular +singular +singular +82407 singular +singular +singular +82411 singular +singular +82414 plural +plural +singular +singular +82419 plural +plural +plural +82423 singular +singular +singular +82427 singular +singular +singular +82431 singular +singular +singular +plural +singular +singular +82438 singular +plural +plural +82442 plural +plural +82445 singular +singular +82449 plural +plural +82452 plural +82454 plural +82456 plural +82458 plural +plural +82461 singular +singular +82465 singular +plural +82469 singular +singular +82472 plural +82474 plural +82476 singular +singular +singular +singular +82481 plural +plural +plural +singular +82486 singular +singular +plural +82490 plural +singular +plural +plural +plural +82496 singular +singular +singular +singular +82502 singular +singular +82505 singular +singular +singular +plural +singular +singular +82512 singular +82514 singular +singular +singular +82518 singular +singular +singular +singular +singular +singular +singular +82527 plural +plural +plural +singular +singular +singular +82534 singular +singular +singular +82538 plural +plural +82541 singular +singular +singular +singular +singular +singular +singular +82549 singular +singular +82552 singular +singular +82555 singular +82558 singular +singular +singular +singular +82563 singular +singular +singular +singular +singular +82569 plural +plural +singular +82577 singular +82580 singular +plural +plural +82584 plural +singular +singular +82588 singular +singular +plural +plural +singular +82594 singular +82597 plural +82599 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +82616 singular +82618 singular +singular +singular +singular +singular +plural +82625 singular +singular +82629 singular +singular +82632 singular +singular +singular +singular +plural +plural +singular +singular +singular +82642 singular +singular +82645 plural +plural +plural +82649 singular +singular +plural +plural +plural +82655 plural +plural +82658 plural +plural +plural +plural +82663 plural +plural +plural +82667 plural +plural +82671 plural +plural +plural +82675 singular +singular +82678 singular +singular +singular +singular +plural +82684 plural +82686 plural +plural +plural +plural +82691 plural +plural +82694 singular +82697 singular +singular +singular +singular +plural +plural +82704 plural +82706 plural +plural +plural +82710 plural +82712 plural +82717 singular +singular +plural +82721 plural +plural +plural +plural +82726 plural +plural +82729 singular +plural +82732 singular +singular +82735 plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +82748 plural +82750 singular +singular +singular +singular +82756 singular +82758 singular +singular +singular +singular +82763 singular +82765 plural +plural +82768 singular +plural +plural +plural +plural +plural +82775 plural +plural +singular +82779 plural +plural +plural +singular +singular +singular +singular +singular +singular +82789 plural +plural +plural +plural +singular +82795 plural +singular +82798 plural +plural +plural +plural +plural +plural +singular +plural +82808 singular +singular +singular +singular +82814 singular +82816 plural +plural +plural +singular +82821 singular +82824 singular +singular +singular +singular +82829 singular +82832 singular +singular +singular +singular +plural +82842 singular +singular +singular +singular +singular +singular +singular +singular +82851 plural +82853 singular +plural +82856 plural +plural +82859 singular +plural +82862 singular +singular +82865 singular +singular +plural +plural +singular +82871 singular +singular +82874 singular +singular +82877 plural +82879 singular +82881 plural +singular +82886 singular +singular +singular +singular +plural +singular +82894 singular +82896 plural +singular +singular +plural +82901 singular +82903 singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +82914 singular +plural +82917 singular +singular +82921 singular +singular +singular +82925 plural +plural +82930 singular +82933 plural +plural +plural +plural +82938 plural +plural +82941 plural +plural +82944 plural +plural +singular +singular +singular +singular +singular +82953 singular +singular +singular +singular +singular +82959 singular +singular +singular +82963 plural +plural +plural +singular +singular +82969 singular +singular +singular +82973 singular +singular +plural +82979 plural +82981 plural +plural +82986 plural +82988 singular +singular +singular +singular +singular +singular +82995 plural +plural +82998 plural +83000 plural +plural +plural +plural +83006 plural +plural +plural +83010 plural +plural +plural +83014 singular +singular +plural +83018 plural +83020 singular +plural +83023 singular +singular +plural +83027 plural +plural +singular +singular +singular +singular +singular +singular +plural +83037 plural +83039 singular +singular +singular +83043 singular +singular +83046 singular +plural +plural +plural +83051 singular +singular +singular +singular +singular +singular +83058 singular +plural +83061 singular +singular +singular +singular +83066 singular +singular +83069 singular +singular +singular +singular +singular +singular +singular +83077 singular +singular +singular +singular +83082 plural +plural +singular +83086 plural +plural +83089 singular +singular +singular +singular +singular +83095 singular +singular +83098 singular +singular +singular +singular +singular +83104 singular +83106 singular +singular +83109 singular +plural +singular +singular +singular +singular +plural +83117 singular +plural +singular +83121 singular +83123 singular +singular +83126 plural +plural +plural +83130 singular +singular +singular +83134 plural +plural +83137 plural +plural +singular +singular +plural +plural +plural +83145 singular +plural +singular +plural +plural +plural +singular +83153 singular +83155 singular +singular +plural +83159 singular +singular +singular +83163 singular +singular +singular +singular +singular +83169 singular +singular +83172 plural +plural +83175 singular +singular +plural +singular +83180 singular +singular +singular +83184 singular +singular +singular +singular +singular +singular +singular +83192 singular +singular +singular +83196 singular +singular +singular +singular +singular +83203 singular +plural +singular +83208 plural +plural +singular +singular +83216 singular +83218 singular +singular +singular +singular +83224 plural +83226 singular +83228 plural +83230 singular +singular +singular +singular +plural +83236 singular +83238 plural +83240 singular +singular +83244 plural +83246 singular +83248 plural +singular +83251 plural +83253 singular +83255 plural +83257 singular +plural +83262 singular +83265 plural +83267 singular +83269 singular +83272 singular +singular +singular +83277 plural +83281 plural +plural +plural +83285 plural +83287 plural +83289 plural +83291 plural +singular +singular +83295 singular +83297 singular +singular +83300 plural +plural +83303 singular +83307 singular +singular +singular +83311 singular +singular +singular +83315 singular +singular +singular +singular +83320 singular +singular +83323 singular +83325 singular +singular +83328 singular +singular +83331 singular +83333 singular +83335 singular +83337 singular +singular +83340 singular +singular +83343 singular +singular +singular +83347 singular +83349 singular +singular +83352 singular +plural +plural +singular +singular +83358 singular +plural +83361 singular +singular +singular +singular +singular +singular +83368 plural +83370 singular +singular +plural +singular +83375 plural +plural +singular +singular +83380 singular +singular +singular +83384 singular +83386 singular +singular +plural +plural +plural +singular +83393 singular +83395 plural +plural +83398 plural +singular +singular +83403 singular +plural +83406 plural +83408 plural +83410 plural +plural +plural +83414 singular +singular +singular +plural +singular +plural +83421 plural +plural +83424 plural +singular +singular +singular +singular +singular +83431 singular +singular +singular +singular +83436 plural +83438 plural +83440 plural +83442 singular +plural +singular +singular +83447 plural +plural +plural +plural +plural +83453 singular +singular +83456 plural +plural +plural +83460 plural +plural +plural +singular +singular +singular +singular +83468 singular +singular +83471 plural +83473 plural +singular +singular +83477 singular +singular +singular +singular +singular +83483 plural +plural +83487 singular +singular +plural +singular +singular +83493 plural +singular +83497 plural +plural +plural +plural +singular +singular +singular +83505 singular +83507 singular +83511 plural +plural +plural +singular +singular +singular +singular +singular +plural +83521 singular +singular +plural +83525 plural +plural +83528 plural +singular +singular +plural +83533 singular +singular +singular +singular +singular +singular +plural +83541 plural +plural +83546 plural +singular +singular +83551 singular +singular +plural +singular +singular +83557 singular +singular +83560 plural +83562 plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +plural +83596 plural +plural +plural +plural +plural +singular +plural +83604 singular +plural +plural +83609 plural +plural +plural +83613 singular +singular +83616 singular +singular +singular +singular +83622 singular +singular +singular +singular +singular +singular +83629 plural +plural +singular +singular +singular +83635 plural +83637 singular +singular +singular +singular +singular +83643 singular +83645 plural +plural +plural +plural +83650 singular +singular +83653 singular +singular +singular +plural +plural +plural +plural +83661 singular +plural +83664 singular +singular +singular +singular +singular +singular +83671 singular +singular +singular +singular +singular +83677 singular +singular +83680 singular +singular +singular +singular +83685 singular +singular +singular +singular +83690 singular +singular +singular +83695 singular +singular +singular +83699 singular +singular +singular +singular +singular +83705 singular +singular +83708 singular +singular +singular +singular +singular +singular +singular +83716 plural +plural +singular +83720 plural +83722 singular +singular +singular +singular +83727 singular +83729 singular +plural +singular +singular +83734 plural +83736 singular +83738 plural +singular +singular +83742 plural +singular +singular +singular +83747 singular +singular +83750 singular +83752 singular +singular +singular +singular +singular +singular +singular +83760 singular +singular +83763 singular +83765 singular +83767 singular +83769 singular +singular +singular +singular +singular +singular +83776 singular +singular +83779 singular +83782 singular +singular +83785 singular +singular +83788 plural +83790 plural +83793 plural +83795 plural +83797 singular +plural +83800 singular +plural +83804 plural +plural +singular +plural +83809 singular +singular +83812 plural +plural +singular +plural +83818 plural +plural +83821 singular +plural +singular +plural +singular +singular +plural +plural +singular +83831 plural +plural +plural +singular +plural +plural +singular +singular +singular +singular +singular +83843 plural +plural +plural +singular +plural +singular +singular +83852 plural +plural +plural +plural +83858 plural +singular +83861 singular +singular +singular +singular +plural +plural +plural +plural +83870 singular +singular +singular +83874 singular +singular +83878 singular +singular +singular +83882 singular +singular +83885 singular +83887 singular +83889 singular +singular +singular +83893 singular +plural +plural +singular +83898 singular +singular +83901 singular +singular +83904 singular +plural +singular +plural +83909 singular +singular +plural +singular +plural +singular +singular +singular +singular +singular +83920 singular +singular +83923 singular +singular +83926 singular +singular +singular +singular +83931 singular +singular +singular +83936 singular +singular +singular +83941 singular +singular +singular +plural +plural +singular +singular +83949 singular +singular +83952 singular +singular +singular +singular +singular +singular +singular +83960 singular +singular +singular +singular +83965 plural +singular +83968 plural +plural +83971 singular +83974 singular +singular +83977 singular +singular +83981 singular +singular +singular +singular +singular +singular +singular +singular +83991 singular +singular +plural +plural +singular +singular +singular +83999 singular +singular +singular +84003 singular +singular +84006 singular +singular +84009 singular +singular +singular +singular +singular +singular +singular +84017 singular +84019 singular +singular +singular +84024 singular +84026 singular +singular +singular +singular +84031 singular +84033 singular +singular +84036 singular +singular +84039 singular +84041 singular +singular +singular +84045 singular +singular +84048 singular +84050 singular +singular +singular +singular +84056 plural +84059 singular +singular +84062 singular +singular +singular +singular +singular +84068 singular +singular +singular +singular +singular +singular +84075 singular +singular +84079 singular +84081 plural +plural +plural +singular +singular +84087 singular +84089 plural +plural +84092 singular +singular +plural +singular +singular +singular +singular +singular +84101 singular +84103 singular +singular +singular +singular +84108 singular +singular +singular +84112 singular +84115 singular +84117 plural +plural +singular +84121 singular +84123 singular +84125 singular +84128 singular +singular +plural +singular +singular +singular +singular +plural +84137 singular +singular +singular +singular +singular +singular +singular +84145 singular +singular +84148 singular +84151 singular +singular +singular +singular +singular +84158 singular +singular +singular +singular +84163 singular +singular +singular +singular +84168 singular +singular +singular +singular +84173 singular +84175 singular +singular +84180 plural +84183 plural +plural +plural +84188 plural +plural +plural +84192 singular +plural +plural +plural +singular +singular +singular +singular +84201 singular +plural +84206 plural +84208 plural +84210 plural +plural +84213 singular +84216 singular +84219 singular +singular +84222 singular +84224 singular +singular +singular +84228 singular +singular +singular +singular +singular +plural +plural +84236 plural +84238 singular +singular +singular +singular +84243 singular +84245 singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +singular +plural +84258 plural +plural +plural +plural +singular +singular +singular +84266 singular +singular +plural +plural +plural +plural +84273 singular +singular +84276 singular +84278 plural +plural +plural +84282 singular +singular +84285 plural +84287 singular +singular +singular +84291 plural +plural +plural +84295 plural +84297 plural +singular +singular +singular +plural +84303 singular +singular +singular +84307 singular +singular +singular +84311 singular +singular +singular +singular +singular +singular +singular +84320 plural +singular +84323 singular +singular +singular +84327 singular +84330 singular +singular +singular +84336 singular +singular +singular +singular +singular +84342 singular +singular +84345 plural +plural +84348 singular +singular +84351 singular +singular +singular +84355 plural +plural +plural +84360 singular +singular +84363 plural +plural +84366 plural +singular +singular +singular +singular +plural +84373 singular +singular +singular +84377 singular +singular +singular +84381 singular +singular +singular +singular +singular +singular +singular +84389 singular +84391 singular +singular +singular +84395 singular +singular +singular +singular +84400 singular +singular +plural +plural +plural +84406 singular +singular +singular +singular +84411 singular +singular +singular +singular +singular +84417 singular +84419 singular +84421 singular +84423 singular +singular +84426 singular +singular +84429 singular +singular +84433 singular +singular +singular +84437 singular +singular +plural +plural +84444 singular +singular +84447 plural +84449 singular +singular +84452 plural +singular +84455 plural +singular +singular +singular +84461 plural +84464 plural +84466 singular +singular +singular +singular +singular +singular +84473 singular +84475 singular +84477 singular +singular +84480 singular +plural +84483 singular +singular +84486 singular +84488 singular +plural +84491 plural +singular +84494 singular +singular +singular +plural +84499 singular +84502 singular +84504 plural +singular +singular +singular +84511 singular +84513 singular +singular +singular +singular +84518 singular +singular +singular +singular +84523 singular +singular +84526 singular +84528 singular +singular +singular +singular +singular +84535 singular +84538 singular +84540 singular +84542 singular +84544 singular +84546 singular +singular +singular +singular +singular +singular +singular +singular +84555 singular +84558 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +84570 plural +plural +plural +plural +plural +plural +84577 plural +plural +plural +plural +singular +singular +singular +84586 singular +singular +singular +84590 singular +singular +singular +84594 singular +singular +84599 singular +singular +84602 plural +singular +singular +singular +singular +singular +84609 singular +84612 singular +singular +84615 singular +84618 singular +84621 singular +84624 singular +84626 singular +singular +singular +singular +singular +singular +singular +singular +singular +84636 singular +singular +84639 singular +84641 singular +singular +plural +plural +plural +84647 singular +84649 singular +84651 plural +singular +singular +84655 singular +singular +plural +84660 singular +singular +84664 plural +plural +plural +plural +singular +84670 singular +singular +singular +singular +plural +singular +84679 singular +singular +singular +singular +singular +singular +singular +84687 singular +singular +84690 singular +singular +singular +84695 singular +singular +84699 plural +84701 singular +plural +singular +singular +singular +84707 singular +singular +singular +84711 singular +singular +singular +singular +84718 singular +singular +84721 singular +84723 singular +84725 singular +84728 singular +84730 singular +84732 singular +singular +singular +singular +singular +singular +84739 singular +84741 singular +singular +singular +84746 singular +84748 singular +singular +singular +singular +singular +plural +plural +84756 singular +singular +singular +singular +singular +plural +plural +84764 singular +plural +84767 plural +84769 plural +84771 singular +84773 singular +plural +plural +singular +singular +singular +84780 singular +84782 singular +singular +84785 singular +84787 singular +singular +plural +plural +84792 singular +singular +84795 singular +singular +singular +singular +84801 singular +singular +singular +singular +singular +singular +singular +singular +singular +84811 singular +84813 singular +singular +singular +singular +singular +84820 singular +singular +singular +singular +84825 singular +singular +singular +84829 singular +singular +singular +singular +singular +singular +singular +84837 singular +84839 singular +singular +singular +singular +84847 singular +singular +84850 singular +84853 singular +84855 singular +singular +84858 singular +singular +84863 plural +plural +84866 singular +plural +plural +84870 singular +singular +84873 plural +singular +singular +singular +plural +singular +singular +84881 plural +plural +plural +84885 singular +84887 singular +singular +plural +84891 plural +84893 singular +singular +plural +84897 singular +singular +84900 singular +singular +plural +singular +singular +84906 singular +84908 singular +singular +plural +singular +singular +84914 singular +singular +singular +84918 singular +plural +84921 plural +84923 singular +singular +singular +singular +singular +84930 singular +84933 plural +84935 plural +plural +plural +84939 singular +singular +singular +singular +84944 singular +singular +singular +84948 singular +singular +singular +84952 singular +singular +84955 singular +84957 singular +singular +singular +singular +singular +84963 plural +plural +plural +84967 singular +singular +singular +singular +plural +84974 singular +plural +plural +plural +84980 singular +84982 plural +singular +84987 singular +singular +singular +84992 singular +singular +84995 singular +84997 singular +85000 singular +singular +singular +singular +85005 plural +singular +singular +85010 plural +plural +plural +singular +85015 plural +singular +85018 singular +85020 plural +85023 singular +singular +singular +plural +85028 singular +85030 singular +singular +85034 plural +plural +plural +singular +singular +85040 singular +singular +singular +singular +singular +singular +85047 plural +plural +85050 singular +singular +singular +85055 singular +85058 plural +85060 singular +singular +85063 singular +singular +plural +singular +singular +85069 singular +85071 singular +singular +plural +85075 singular +85078 singular +singular +singular +singular +85083 singular +singular +singular +85088 singular +singular +singular +singular +85095 plural +plural +singular +singular +singular +85101 singular +plural +plural +85106 singular +singular +singular +85110 singular +85112 singular +85114 singular +85116 singular +singular +85119 singular +singular +singular +85123 singular +85125 singular +85128 plural +85130 plural +85132 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +85145 singular +singular +85149 singular +singular +85153 singular +singular +singular +singular +plural +plural +plural +singular +85162 singular +singular +singular +singular +85167 singular +singular +85170 singular +singular +singular +singular +singular +singular +singular +85178 plural +plural +singular +85185 singular +singular +singular +singular +85191 singular +singular +85194 singular +85196 singular +85198 singular +singular +85201 plural +plural +85204 singular +85207 singular +singular +singular +singular +singular +singular +singular +85215 singular +singular +singular +85219 plural +singular +singular +singular +singular +85225 singular +singular +singular +singular +plural +85231 singular +plural +85234 singular +singular +singular +singular +85242 singular +singular +85245 plural +plural +85248 singular +85252 singular +singular +85255 plural +plural +85258 singular +singular +85263 singular +singular +singular +singular +singular +plural +plural +plural +plural +85275 singular +singular +singular +singular +plural +plural +plural +plural +85284 singular +singular +85287 singular +singular +singular +85292 singular +singular +singular +singular +singular +singular +85300 singular +singular +singular +85304 singular +singular +85308 singular +singular +singular +85312 singular +85314 singular +singular +85317 singular +singular +singular +singular +plural +85323 singular +plural +plural +singular +singular +85329 singular +singular +singular +85333 singular +plural +plural +singular +singular +85340 plural +85342 singular +85344 plural +85346 plural +plural +85349 singular +singular +85352 singular +singular +singular +plural +85357 plural +singular +85360 singular +singular +85363 singular +singular +85367 singular +singular +85370 plural +85372 singular +singular +singular +singular +85378 plural +85380 singular +singular +plural +85385 plural +plural +singular +singular +singular +singular +singular +85394 singular +singular +plural +singular +plural +85400 singular +singular +plural +singular +singular +85406 singular +singular +singular +singular +singular +singular +85414 plural +singular +singular +85418 singular +singular +singular +85422 singular +singular +85426 plural +85428 singular +plural +85432 plural +singular +plural +85436 singular +singular +85439 plural +85441 singular +singular +singular +85445 singular +85447 singular +singular +singular +singular +singular +85454 singular +singular +singular +singular +singular +85461 plural +plural +plural +85466 plural +singular +singular +85470 plural +singular +singular +85474 singular +singular +85478 singular +singular +singular +85482 singular +singular +plural +singular +85487 singular +85489 plural +plural +singular +85493 plural +plural +plural +plural +plural +singular +singular +singular +85502 plural +plural +singular +singular +85508 plural +plural +85511 plural +plural +plural +plural +singular +singular +singular +85519 singular +plural +85522 singular +85525 plural +85527 singular +85530 singular +85532 singular +plural +85536 plural +85538 singular +85541 singular +85543 singular +85545 plural +85547 singular +plural +plural +plural +85552 singular +plural +plural +singular +plural +85558 singular +85560 singular +85562 singular +85564 singular +85566 singular +singular +singular +85570 plural +plural +singular +singular +85575 plural +85577 singular +85579 singular +plural +singular +singular +85584 plural +85586 singular +singular +plural +singular +singular +singular +singular +85594 singular +singular +singular +singular +plural +85601 plural +plural +plural +plural +plural +singular +singular +85609 singular +singular +85612 singular +singular +85616 plural +plural +plural +plural +plural +singular +singular +85624 singular +85627 plural +singular +singular +plural +plural +plural +singular +singular +85636 singular +singular +plural +85641 plural +85643 plural +85645 singular +singular +plural +singular +85651 plural +85653 singular +singular +85656 plural +singular +singular +plural +singular +singular +plural +85664 singular +85666 singular +singular +singular +singular +85671 plural +plural +singular +singular +singular +85677 singular +singular +singular +singular +singular +singular +85684 singular +singular +singular +singular +plural +85690 plural +plural +85693 plural +singular +singular +85697 singular +singular +singular +singular +singular +85703 singular +singular +singular +85707 singular +singular +singular +singular +singular +singular +singular +singular +85717 singular +singular +singular +singular +85722 singular +singular +singular +singular +85728 singular +singular +singular +singular +singular +85734 singular +singular +singular +85739 singular +singular +singular +singular +singular +85745 singular +singular +singular +85750 singular +singular +singular +singular +singular +85756 plural +singular +85759 plural +plural +singular +singular +85764 singular +singular +singular +singular +85769 singular +85771 plural +singular +singular +85775 plural +singular +85778 plural +singular +singular +85783 plural +85785 singular +singular +plural +plural +plural +plural +plural +85793 singular +singular +singular +85797 plural +plural +plural +85801 singular +85803 singular +singular +85807 plural +85809 singular +singular +plural +85813 singular +plural +85817 plural +85819 singular +singular +85823 singular +singular +85826 singular +plural +singular +singular +singular +85832 singular +85834 singular +singular +85837 singular +85841 singular +85844 singular +singular +85847 singular +85850 singular +singular +singular +85854 singular +85856 singular +singular +singular +singular +85861 singular +singular +singular +85865 singular +singular +singular +85870 singular +singular +singular +85874 singular +singular +85877 singular +85880 singular +singular +singular +singular +singular +singular +85887 singular +singular +85890 singular +singular +singular +singular +singular +85896 singular +singular +85899 singular +85901 singular +singular +singular +singular +85906 singular +singular +singular +singular +85912 singular +singular +85916 singular +singular +singular +85920 singular +singular +singular +85924 singular +85926 singular +85928 singular +singular +singular +singular +singular +85934 singular +85936 singular +singular +85939 singular +singular +85942 singular +singular +singular +singular +singular +85948 singular +85950 singular +singular +singular +singular +85955 singular +singular +85958 plural +85960 singular +singular +singular +singular +85965 singular +singular +singular +singular +85970 singular +singular +85973 singular +singular +85976 singular +85979 singular +singular +singular +singular +85984 singular +singular +singular +singular +85990 singular +85992 singular +singular +singular +singular +singular +singular +85999 singular +86003 singular +singular +singular +86007 singular +singular +86010 singular +singular +86013 singular +86016 singular +86018 singular +singular +singular +86022 singular +singular +singular +singular +86027 singular +86029 singular +singular +86032 singular +86034 singular +singular +86039 singular +singular +singular +singular +86044 singular +86046 singular +singular +singular +singular +86052 singular +86054 singular +singular +singular +singular +86059 singular +singular +singular +86063 singular +singular +86066 singular +singular +86069 singular +singular +singular +singular +singular +singular +86076 singular +singular +86079 singular +singular +singular +singular +86084 singular +singular +singular +singular +singular +86090 singular +86092 singular +86094 singular +singular +singular +86098 plural +plural +singular +singular +singular +singular +singular +singular +singular +86108 singular +singular +86111 singular +singular +singular +singular +singular +singular +86118 plural +plural +singular +singular +singular +singular +singular +singular +singular +86128 singular +singular +singular +singular +singular +singular +singular +singular +86137 singular +singular +singular +singular +plural +86145 singular +singular +singular +singular +singular +singular +singular +86153 singular +singular +singular +singular +86158 singular +singular +86161 plural +86163 singular +singular +86166 singular +singular +singular +singular +singular +singular +86173 singular +singular +singular +singular +86178 singular +singular +singular +singular +86183 singular +singular +86186 singular +singular +singular +singular +86191 singular +singular +86194 singular +singular +singular +singular +singular +singular +singular +singular +86203 singular +singular +singular +86208 singular +singular +singular +singular +86213 singular +singular +86216 singular +singular +singular +singular +singular +86222 plural +plural +plural +86227 singular +86230 singular +86232 plural +86234 singular +plural +plural +singular +singular +plural +86241 plural +86243 singular +plural +singular +singular +86248 singular +singular +singular +singular +singular +86254 singular +singular +singular +singular +singular +86260 singular +86262 singular +singular +singular +singular +singular +86268 singular +86270 singular +singular +singular +singular +86275 singular +86278 singular +86280 plural +86282 singular +plural +singular +86287 plural +86289 plural +plural +86293 singular +86296 singular +86298 singular +singular +singular +86302 plural +86305 singular +singular +singular +86309 singular +singular +86312 singular +singular +86316 singular +86318 plural +86320 singular +singular +singular +86324 singular +86326 singular +singular +singular +86330 singular +86333 singular +singular +singular +singular +singular +singular +86340 plural +singular +86343 plural +singular +singular +86347 plural +singular +singular +singular +86352 plural +plural +plural +plural +86357 singular +singular +86360 plural +singular +singular +86365 plural +plural +plural +86369 singular +singular +singular +86373 singular +86378 singular +plural +plural +86384 singular +plural +plural +singular +singular +plural +plural +86392 plural +singular +singular +plural +plural +plural +singular +plural +86402 plural +singular +singular +86407 singular +86409 plural +singular +singular +86413 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +86426 plural +plural +singular +86431 plural +86433 plural +86435 plural +singular +86438 plural +singular +86441 plural +86444 plural +86446 singular +86449 plural +plural +plural +singular +86454 singular +86456 singular +singular +86460 plural +singular +86463 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +86475 singular +singular +singular +singular +singular +86481 singular +86484 singular +singular +86487 singular +86490 singular +singular +singular +singular +86495 singular +singular +singular +singular +86500 singular +singular +singular +singular +plural +plural +singular +singular +86509 plural +86511 singular +singular +singular +singular +86516 singular +86518 singular +86522 singular +86525 plural +singular +singular +singular +singular +plural +plural +86533 plural +86535 plural +plural +plural +singular +singular +singular +singular +singular +plural +86545 singular +singular +plural +86549 singular +singular +86552 singular +singular +86555 singular +singular +singular +singular +singular +86562 singular +86564 plural +plural +86567 singular +plural +86572 singular +singular +singular +singular +singular +plural +86579 singular +singular +plural +86583 singular +86585 plural +86587 singular +singular +singular +singular +plural +plural +86594 singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +86606 singular +singular +86609 plural +86611 plural +86613 plural +plural +singular +singular +plural +singular +86620 singular +plural +86623 singular +plural +plural +86627 plural +singular +86630 singular +plural +singular +singular +singular +singular +singular +86638 singular +86640 singular +singular +86643 plural +plural +86646 plural +singular +plural +86650 singular +86652 plural +singular +plural +86656 singular +86658 plural +singular +plural +86662 singular +86664 singular +plural +86667 plural +86669 singular +singular +86672 plural +singular +86675 plural +86677 singular +singular +singular +singular +86682 singular +86685 plural +plural +singular +singular +86693 singular +plural +plural +plural +singular +singular +singular +86701 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +86715 singular +singular +singular +86719 singular +singular +singular +singular +86724 singular +86726 plural +singular +plural +singular +86731 singular +singular +singular +singular +singular +86737 singular +86739 singular +86741 singular +86743 singular +86745 singular +86747 singular +86749 singular +86752 singular +plural +singular +singular +singular +plural +86759 plural +singular +86763 plural +plural +plural +86767 singular +singular +plural +86771 singular +86774 singular +86776 singular +86778 plural +86780 plural +86782 plural +86784 plural +86786 plural +86788 singular +86790 singular +86792 singular +singular +singular +singular +plural +86799 singular +singular +singular +singular +singular +86805 singular +singular +singular +singular +plural +singular +singular +86813 singular +86815 singular +singular +singular +singular +singular +singular +86822 singular +singular +86825 singular +singular +singular +singular +86830 singular +singular +singular +singular +singular +86836 singular +singular +singular +singular +86842 singular +singular +86845 plural +plural +singular +plural +plural +singular +86852 singular +plural +plural +plural +plural +singular +singular +86860 singular +singular +86863 plural +plural +86866 singular +singular +86869 singular +singular +86872 plural +plural +plural +plural +plural +86879 plural +singular +singular +singular +86884 singular +singular +singular +86888 plural +singular +singular +86892 plural +plural +86897 singular +86899 singular +singular +singular +singular +singular +86906 plural +plural +86909 singular +plural +singular +86914 plural +singular +singular +plural +plural +86921 singular +singular +singular +singular +singular +singular +86928 plural +plural +singular +singular +plural +plural +singular +singular +86937 plural +plural +singular +singular +singular +86943 singular +86945 singular +singular +singular +singular +86950 singular +singular +singular +singular +86955 singular +singular +singular +singular +86961 singular +86964 singular +singular +singular +86968 singular +singular +singular +singular +plural +86975 plural +86977 plural +singular +singular +86981 singular +86983 singular +86985 singular +singular +singular +singular +singular +86992 plural +86995 singular +singular +singular +singular +87000 singular +singular +singular +singular +singular +87006 singular +singular +singular +singular +87011 singular +singular +singular +87015 singular +plural +87018 singular +87020 singular +singular +87023 singular +87025 singular +singular +singular +singular +87030 singular +singular +87033 singular +87035 singular +singular +87040 singular +singular +87043 singular +singular +87046 singular +singular +singular +87050 singular +singular +singular +singular +singular +87057 singular +singular +singular +singular +87062 singular +87064 singular +singular +singular +singular +87070 singular +singular +singular +singular +87075 singular +singular +singular +87080 singular +singular +singular +87084 singular +singular +singular +87088 singular +singular +singular +87092 singular +87094 singular +singular +singular +singular +singular +87100 singular +87102 singular +singular +singular +singular +singular +singular +singular +87110 singular +singular +singular +singular +singular +singular +singular +singular +87121 singular +singular +singular +singular +singular +singular +87128 singular +singular +singular +87132 singular +87134 singular +87136 singular +87138 singular +87140 singular +87143 singular +singular +singular +87147 singular +singular +87151 singular +singular +singular +singular +87156 singular +singular +plural +singular +plural +87162 singular +87165 singular +singular +singular +singular +singular +singular +87172 plural +singular +plural +singular +87177 singular +plural +87180 singular +plural +87183 singular +87185 plural +87189 plural +87193 singular +singular +singular +singular +singular +87199 singular +singular +singular +singular +87204 singular +87206 singular +singular +87209 singular +87211 singular +singular +87214 singular +plural +87217 singular +singular +plural +87221 plural +plural +singular +singular +87226 singular +singular +87229 singular +singular +87232 singular +singular +singular +plural +plural +singular +87239 singular +singular +singular +singular +singular +singular +singular +87247 singular +singular +87250 singular +singular +singular +87254 singular +singular +87258 singular +singular +87262 singular +plural +singular +plural +singular +87269 singular +plural +87274 singular +plural +87277 singular +plural +87280 plural +plural +87283 plural +singular +singular +singular +87288 singular +singular +87291 singular +87293 singular +singular +singular +singular +87298 singular +87300 singular +87302 singular +87306 singular +87310 plural +plural +singular +singular +singular +singular +87317 singular +singular +singular +87321 singular +singular +singular +87325 singular +singular +87328 singular +singular +87331 singular +87333 singular +plural +87336 singular +singular +singular +singular +singular +87342 singular +singular +87345 singular +singular +87348 plural +87350 singular +87352 singular +plural +87355 singular +singular +plural +87361 singular +87363 plural +singular +singular +singular +singular +87369 singular +singular +87372 plural +singular +singular +singular +singular +87378 plural +87380 singular +singular +singular +87384 singular +singular +singular +singular +87389 singular +singular +87392 singular +singular +singular +87396 singular +singular +singular +singular +singular +87402 singular +87404 singular +87406 singular +singular +87409 singular +87411 singular +87413 singular +singular +singular +singular +singular +87419 singular +singular +singular +singular +singular +87426 singular +singular +87429 singular +singular +singular +singular +singular +87435 plural +87438 singular +singular +87441 singular +singular +singular +singular +87446 singular +singular +singular +87451 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +87464 singular +87466 singular +singular +singular +singular +singular +87472 singular +87474 singular +singular +singular +87478 singular +singular +singular +singular +87483 plural +singular +87486 singular +singular +87489 singular +87491 singular +singular +87494 singular +87496 singular +singular +singular +singular +singular +singular +87503 singular +87505 singular +87508 singular +singular +87511 singular +87513 singular +87515 singular +singular +singular +plural +singular +87521 plural +plural +plural +singular +87526 singular +87528 singular +singular +singular +singular +singular +singular +87536 plural +87538 singular +87540 plural +87543 plural +singular +87546 plural +87549 plural +87551 singular +87554 plural +87557 plural +87559 singular +87561 plural +plural +plural +plural +plural +plural +87569 plural +plural +singular +singular +87574 singular +singular +singular +singular +singular +singular +singular +plural +87583 singular +singular +87586 singular +87588 singular +singular +87591 singular +singular +87594 singular +87597 plural +87600 singular +singular +singular +singular +singular +singular +plural +87609 plural +plural +singular +singular +plural +plural +plural +87617 singular +87619 singular +87621 singular +singular +singular +singular +singular +singular +plural +87630 singular +87632 singular +singular +singular +plural +87637 singular +singular +87640 singular +singular +plural +singular +87645 plural +singular +singular +plural +singular +87651 plural +87654 singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +87665 singular +singular +87668 singular +87670 singular +87672 singular +singular +singular +singular +singular +singular +87679 singular +87682 singular +singular +singular +87686 singular +singular +singular +singular +87691 singular +singular +singular +singular +singular +singular +singular +singular +87701 plural +87703 singular +singular +singular +singular +singular +87709 singular +singular +singular +87713 singular +singular +singular +plural +plural +singular +plural +plural +plural +singular +plural +singular +singular +singular +87728 plural +singular +singular +singular +87733 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +87744 plural +singular +singular +singular +87752 singular +87754 singular +singular +87757 singular +singular +singular +87762 singular +87765 plural +87767 singular +singular +87770 singular +singular +87773 singular +singular +singular +singular +singular +87779 singular +87781 singular +singular +singular +87785 plural +plural +plural +87789 singular +singular +plural +singular +singular +singular +singular +plural +singular +87801 plural +singular +87806 singular +87808 singular +87810 singular +singular +singular +singular +singular +plural +87817 singular +87820 singular +87823 singular +87826 singular +plural +plural +plural +plural +plural +singular +87836 singular +singular +plural +87840 singular +singular +87843 singular +87845 plural +87847 plural +87849 singular +87851 singular +plural +singular +singular +singular +plural +plural +87859 singular +87861 plural +87864 singular +singular +plural +singular +singular +87870 singular +singular +plural +singular +plural +singular +87877 singular +singular +plural +87881 singular +plural +plural +plural +87888 singular +singular +singular +plural +singular +singular +singular +singular +singular +87899 singular +singular +singular +singular +87904 singular +plural +87907 plural +87910 singular +singular +plural +singular +singular +singular +singular +singular +87920 singular +87922 plural +87925 singular +singular +singular +87929 singular +singular +87933 singular +singular +singular +87937 plural +plural +87941 plural +plural +plural +plural +87946 singular +singular +singular +singular +87951 plural +87953 singular +singular +singular +singular +singular +singular +singular +singular +87962 singular +plural +plural +87967 singular +87969 singular +singular +singular +singular +87974 singular +singular +singular +87978 singular +plural +plural +87982 singular +singular +87985 singular +singular +plural +87989 singular +singular +singular +singular +87994 plural +singular +87997 singular +88000 singular +singular +plural +88004 singular +plural +88007 singular +88009 singular +singular +88012 singular +singular +88015 singular +singular +88019 plural +plural +singular +88024 singular +singular +singular +88028 singular +singular +singular +88033 singular +singular +88036 plural +88039 plural +singular +singular +plural +88044 singular +singular +singular +singular +88050 plural +88053 singular +88055 singular +88057 singular +singular +singular +88062 singular +singular +88065 singular +singular +88068 plural +plural +88071 singular +plural +singular +singular +singular +88077 plural +88079 singular +plural +88082 singular +singular +singular +88087 plural +88089 plural +plural +88092 singular +88094 singular +singular +singular +singular +88099 singular +singular +singular +plural +plural +singular +88107 singular +singular +singular +88111 singular +singular +88114 singular +singular +singular +singular +plural +88120 singular +88122 singular +plural +singular +88126 singular +singular +88129 singular +plural +plural +plural +88135 singular +singular +plural +88139 plural +88142 singular +singular +plural +88146 plural +plural +88149 plural +plural +plural +88153 singular +singular +singular +singular +88159 plural +88161 plural +singular +singular +88166 plural +singular +plural +singular +88172 plural +88174 plural +singular +singular +singular +88180 plural +88182 plural +88184 singular +singular +singular +plural +plural +88190 singular +88192 plural +plural +singular +88196 singular +singular +88199 singular +88201 singular +singular +88204 plural +plural +plural +singular +88209 plural +plural +plural +singular +88214 singular +singular +singular +singular +88219 singular +singular +singular +singular +88224 singular +singular +singular +88228 singular +singular +88232 singular +88235 singular +88238 singular +plural +plural +singular +singular +singular +88245 plural +plural +88249 plural +singular +88252 plural +plural +singular +singular +plural +88258 plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +88273 plural +singular +singular +singular +88278 plural +singular +singular +singular +singular +88284 singular +88286 plural +singular +singular +singular +singular +singular +singular +singular +88295 singular +88297 singular +88299 singular +88301 singular +singular +singular +singular +singular +singular +singular +singular +88310 plural +88314 singular +88316 singular +88320 singular +88323 singular +singular +singular +singular +singular +singular +88332 singular +singular +plural +plural +plural +88338 plural +plural +plural +88342 singular +singular +singular +singular +88347 plural +plural +singular +singular +plural +88353 singular +88355 singular +88357 singular +plural +plural +88361 plural +plural +plural +88365 singular +singular +singular +singular +plural +88371 singular +88373 singular +singular +singular +singular +88378 singular +88380 singular +singular +88383 singular +singular +88386 singular +singular +88389 singular +singular +88392 singular +singular +singular +singular +88397 singular +singular +singular +88401 singular +singular +singular +88405 singular +singular +singular +singular +plural +singular +singular +plural +singular +singular +singular +singular +88418 plural +plural +singular +singular +plural +plural +singular +singular +88427 plural +singular +singular +plural +singular +singular +plural +singular +singular +plural +singular +singular +plural +singular +singular +plural +plural +plural +plural +plural +plural +singular +singular +plural +plural +plural +plural +plural +88457 plural +88460 plural +88463 plural +singular +singular +88467 plural +plural +88470 plural +plural +plural +88474 plural +plural +plural +88478 plural +plural +88481 plural +singular +singular +88485 singular +plural +plural +plural +88490 plural +plural +88493 singular +singular +88496 plural +88498 plural +plural +plural +plural +88503 plural +plural +88506 plural +singular +singular +singular +88511 singular +singular +singular +singular +singular +singular +singular +88520 singular +singular +singular +singular +singular +singular +88527 singular +singular +singular +88531 singular +singular +plural +singular +singular +88537 singular +singular +singular +88541 singular +88543 singular +singular +88546 singular +88548 singular +singular +singular +singular +singular +singular +plural +plural +singular +88559 singular +singular +88564 singular +88566 plural +plural +88569 singular +plural +plural +88573 singular +singular +singular +singular +singular +singular +singular +singular +singular +88583 plural +plural +plural +singular +plural +88589 plural +plural +plural +singular +88594 singular +singular +singular +88598 singular +singular +88601 singular +88604 singular +singular +singular +singular +singular +88610 singular +singular +88613 singular +88615 singular +singular +singular +singular +88620 singular +singular +88624 singular +singular +singular +singular +88631 singular +singular +singular +88635 singular +singular +singular +singular +88640 singular +singular +singular +singular +singular +88646 singular +88649 singular +88651 singular +singular +88656 singular +singular +88660 singular +88662 plural +plural +88665 plural +singular +plural +88669 singular +singular +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +88701 singular +plural +88705 singular +singular +singular +singular +singular +singular +88712 singular +88714 singular +88716 singular +88718 singular +88720 singular +88723 singular +singular +singular +88727 singular +singular +singular +singular +88732 singular +singular +singular +88736 singular +88738 singular +singular +singular +singular +88743 singular +88745 singular +88747 singular +singular +singular +singular +88752 plural +singular +singular +singular +88757 singular +88759 plural +88761 singular +88766 plural +singular +singular +88771 plural +singular +singular +singular +88776 singular +singular +singular +88780 plural +plural +plural +singular +singular +88786 plural +plural +plural +singular +singular +88793 singular +88795 plural +88797 plural +88799 plural +88801 plural +88803 plural +88805 singular +88807 singular +88809 plural +singular +singular +singular +singular +88815 singular +singular +singular +88819 plural +88821 plural +88823 singular +singular +singular +singular +plural +88830 plural +plural +88833 singular +singular +88836 plural +88838 singular +singular +plural +singular +singular +singular +singular +88846 singular +88848 singular +88850 singular +88852 singular +singular +singular +88856 singular +88858 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +88874 singular +88876 singular +88878 singular +singular +singular +88882 singular +88885 singular +singular +singular +88889 singular +88891 singular +singular +singular +singular +singular +88897 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +88908 singular +singular +singular +singular +88913 singular +singular +singular +88917 singular +88919 singular +singular +88922 singular +88924 singular +singular +singular +88928 singular +plural +singular +singular +88933 singular +singular +singular +88939 plural +singular +singular +plural +88945 plural +singular +singular +plural +88952 plural +88955 plural +singular +singular +plural +88961 singular +singular +singular +88965 singular +88968 plural +88970 plural +singular +88973 singular +singular +singular +singular +singular +singular +88981 singular +singular +singular +singular +singular +singular +88988 plural +plural +singular +singular +singular +singular +88995 singular +singular +singular +singular +singular +89001 singular +singular +singular +singular +89006 singular +singular +singular +singular +singular +89013 singular +plural +89016 singular +singular +singular +singular +singular +89023 plural +plural +89026 singular +plural +89029 singular +89032 singular +singular +singular +89036 singular +singular +89039 singular +89041 singular +singular +89044 singular +singular +89047 singular +89050 singular +singular +singular +singular +89055 singular +singular +89060 singular +singular +singular +singular +singular +89067 singular +singular +89070 singular +singular +singular +singular +singular +89076 singular +singular +singular +89081 singular +plural +singular +singular +89087 singular +singular +singular +singular +singular +singular +89094 singular +89096 singular +89098 singular +89100 singular +89102 singular +singular +89105 singular +89107 singular +singular +singular +singular +singular +singular +singular +89115 singular +plural +plural +89120 plural +plural +singular +singular +89125 plural +singular +singular +singular +89130 plural +89133 singular +singular +singular +singular +singular +singular +89140 plural +plural +89143 singular +singular +singular +singular +89148 singular +singular +singular +singular +89154 plural +89157 singular +89160 singular +singular +singular +singular +singular +singular +singular +singular +singular +89170 singular +singular +89173 singular +singular +singular +singular +89178 singular +singular +89181 singular +singular +89185 singular +singular +singular +singular +89192 singular +89194 singular +singular +89198 singular +singular +singular +89202 plural +plural +plural +plural +plural +plural +plural +plural +89213 plural +89215 singular +plural +singular +89219 singular +89221 singular +singular +89224 singular +89227 singular +singular +89230 singular +singular +89234 singular +plural +plural +plural +plural +singular +plural +89242 singular +89244 plural +singular +89247 singular +singular +singular +singular +89253 singular +singular +89257 singular +singular +plural +plural +singular +singular +plural +89265 singular +singular +singular +singular +89270 singular +singular +singular +plural +singular +singular +89278 plural +89280 singular +singular +89285 singular +singular +plural +singular +singular +89291 singular +singular +singular +plural +singular +singular +89298 plural +plural +89302 singular +singular +singular +plural +89307 singular +singular +singular +89311 singular +singular +singular +singular +89317 singular +singular +89320 singular +89322 plural +plural +plural +plural +89327 plural +plural +89330 singular +89332 singular +singular +89335 singular +89337 singular +singular +singular +89341 plural +89343 singular +singular +singular +singular +89349 singular +plural +plural +89353 singular +singular +singular +89358 plural +plural +plural +plural +singular +singular +89365 plural +singular +plural +plural +plural +89372 singular +singular +singular +singular +singular +singular +singular +89380 singular +singular +89383 plural +89385 singular +plural +plural +89389 singular +singular +singular +singular +singular +plural +singular +singular +89398 singular +89400 singular +89403 singular +89405 plural +89407 singular +singular +89410 singular +singular +singular +89414 plural +singular +singular +89418 singular +singular +89421 plural +89424 plural +plural +plural +singular +plural +singular +singular +singular +plural +89434 plural +89438 singular +plural +89441 singular +89443 singular +plural +89446 singular +singular +singular +singular +singular +89452 singular +singular +89455 singular +89457 singular +singular +singular +singular +89462 plural +plural +singular +singular +singular +singular +singular +89470 singular +singular +singular +plural +plural +singular +singular +89478 singular +singular +89481 singular +singular +singular +89485 singular +singular +plural +89489 singular +singular +89493 singular +89495 singular +plural +89498 singular +singular +89501 singular +89503 singular +plural +singular +89507 singular +89509 singular +plural +89512 plural +89514 singular +singular +singular +89518 singular +89520 singular +89522 singular +89524 singular +singular +89527 singular +singular +singular +singular +89533 singular +89537 singular +singular +89542 singular +singular +singular +89547 singular +plural +plural +89551 singular +89553 singular +89555 plural +89557 plural +plural +89561 singular +plural +plural +singular +89567 plural +89571 singular +singular +89574 plural +plural +plural +89578 singular +singular +singular +89583 plural +89585 plural +plural +89589 singular +89591 singular +singular +89594 singular +singular +89597 plural +89600 plural +89604 plural +singular +89607 singular +singular +89611 singular +89613 singular +singular +plural +plural +89618 plural +singular +89621 singular +singular +singular +89626 plural +plural +plural +plural +plural +89632 singular +89634 plural +89636 plural +plural +plural +89641 plural +plural +plural +plural +plural +plural +plural +89650 plural +plural +89653 plural +89655 singular +singular +89658 singular +plural +singular +singular +singular +singular +89665 plural +89667 singular +89669 singular +89671 singular +89673 plural +89675 singular +singular +singular +singular +89680 plural +singular +89683 singular +singular +plural +singular +singular +89690 singular +singular +singular +singular +plural +89696 singular +89698 plural +plural +89701 singular +89703 singular +singular +89706 singular +89708 plural +plural +89711 singular +singular +89714 singular +singular +singular +singular +89719 singular +singular +plural +plural +singular +89726 singular +singular +89729 plural +89731 singular +singular +singular +plural +89736 singular +singular +singular +singular +89741 plural +plural +89745 singular +plural +singular +singular +singular +plural +singular +singular +singular +singular +singular +89757 plural +89759 singular +plural +89762 singular +89764 plural +plural +89767 plural +singular +89771 singular +plural +singular +singular +89777 singular +singular +singular +plural +89782 singular +singular +plural +singular +89787 singular +plural +plural +singular +89792 singular +singular +plural +89796 singular +singular +singular +singular +plural +singular +plural +plural +singular +89806 singular +singular +89810 plural +plural +plural +plural +plural +89816 singular +89818 singular +plural +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +89832 singular +plural +singular +singular +plural +singular +89839 plural +plural +singular +89843 singular +plural +plural +singular +89848 plural +singular +plural +plural +plural +89854 plural +plural +plural +89859 singular +plural +89862 singular +plural +singular +singular +singular +singular +89869 singular +plural +singular +singular +singular +plural +89876 singular +89878 singular +singular +singular +singular +plural +singular +singular +singular +89887 singular +plural +plural +89891 plural +singular +plural +singular +singular +singular +singular +plural +plural +89901 plural +singular +plural +plural +89906 singular +plural +singular +89910 singular +plural +plural +89914 singular +plural +singular +singular +singular +singular +plural +singular +89923 singular +plural +singular +singular +singular +89929 singular +89931 singular +singular +singular +89935 singular +plural +singular +singular +singular +singular +singular +89943 plural +89945 plural +plural +plural +singular +89950 singular +singular +89953 singular +singular +singular +89957 singular +89959 plural +89961 plural +plural +plural +plural +plural +89967 singular +singular +plural +plural +plural +plural +plural +singular +singular +89977 plural +singular +plural +89981 plural +plural +plural +89985 plural +plural +89988 singular +singular +singular +plural +plural +plural +89995 plural +89997 plural +89999 plural +plural +singular +singular +plural +singular +90006 plural +90008 singular +plural +singular +90013 singular +singular +90016 singular +plural +plural +plural +plural +plural +90023 singular +plural +singular +90027 plural +singular +90031 plural +singular +90034 singular +plural +plural +90039 singular +singular +90042 plural +90044 singular +singular +90047 singular +singular +singular +singular +singular +singular +singular +90055 plural +plural +plural +90059 singular +singular +singular +singular +singular +plural +singular +90067 plural +singular +plural +singular +singular +singular +singular +90075 singular +90077 singular +90079 singular +plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +90092 singular +singular +plural +singular +singular +singular +singular +90100 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +90111 singular +singular +singular +90115 singular +singular +plural +90120 singular +singular +singular +90124 singular +singular +singular +singular +90129 singular +singular +plural +plural +singular +90135 singular +90139 plural +plural +90142 singular +singular +singular +singular +90147 singular +singular +90150 plural +plural +plural +singular +singular +singular +singular +90158 singular +singular +singular +singular +singular +90164 plural +plural +plural +plural +90169 singular +singular +singular +singular +singular +90175 singular +singular +90178 singular +singular +singular +singular +singular +singular +singular +singular +singular +90188 singular +plural +90191 singular +singular +plural +plural +90196 plural +plural +plural +singular +singular +singular +singular +plural +singular +singular +90207 singular +singular +plural +90211 plural +plural +singular +90215 singular +90217 singular +singular +plural +90221 singular +singular +singular +singular +singular +singular +90229 plural +90231 singular +singular +singular +singular +singular +singular +plural +90239 singular +singular +90243 singular +plural +90246 singular +90248 singular +singular +90251 singular +singular +90254 singular +singular +singular +singular +singular +90260 plural +90262 plural +90266 singular +singular +plural +singular +singular +singular +singular +plural +singular +singular +singular +90278 singular +plural +90281 singular +plural +90284 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +90295 singular +plural +90298 singular +singular +singular +singular +singular +singular +singular +singular +plural +90308 plural +singular +plural +90312 singular +singular +singular +singular +plural +singular +singular +90320 singular +singular +plural +plural +90326 singular +90328 plural +plural +90331 plural +plural +90334 singular +singular +singular +90339 singular +singular +singular +90343 plural +singular +singular +singular +90348 plural +90350 plural +singular +90353 plural +90355 plural +plural +90358 singular +singular +90361 singular +plural +singular +90365 singular +singular +singular +90369 singular +singular +90372 singular +singular +90375 singular +singular +singular +singular +singular +90381 singular +singular +90384 plural +90387 singular +singular +singular +plural +singular +90393 singular +plural +singular +90398 singular +90400 singular +90403 singular +singular +90407 singular +singular +singular +plural +90412 singular +90414 singular +singular +singular +singular +90419 singular +90421 singular +singular +singular +90425 singular +singular +singular +90434 singular +singular +90438 singular +singular +singular +singular +singular +90445 singular +singular +singular +singular +singular +plural +plural +singular +singular +90455 plural +plural +plural +singular +singular +singular +90462 singular +singular +singular +singular +plural +plural +90469 singular +singular +plural +plural +singular +90475 singular +90477 singular +90479 singular +singular +singular +singular +90484 singular +singular +singular +singular +singular +singular +singular +90494 singular +singular +singular +singular +90499 singular +singular +singular +90503 singular +singular +singular +singular +singular +singular +singular +90511 singular +singular +singular +singular +90516 plural +plural +90520 plural +plural +plural +90524 plural +singular +plural +90528 plural +plural +singular +singular +90533 plural +singular +90536 plural +singular +90539 plural +plural +plural +90543 plural +90545 plural +singular +singular +singular +90550 singular +singular +90553 singular +singular +singular +singular +singular +plural +plural +singular +90562 singular +singular +singular +singular +singular +plural +plural +90570 plural +plural +singular +singular +plural +90577 plural +plural +90580 singular +90582 plural +plural +90585 plural +plural +90588 plural +plural +singular +singular +singular +singular +singular +90596 singular +plural +plural +90600 plural +plural +singular +singular +singular +singular +singular +90608 singular +plural +plural +90612 plural +plural +singular +singular +90617 plural +plural +plural +90621 plural +singular +singular +singular +90626 plural +plural +singular +90631 singular +singular +singular +90635 singular +singular +90639 singular +plural +plural +90643 singular +singular +singular +singular +plural +90649 singular +singular +90652 singular +90654 singular +90656 singular +90659 singular +singular +singular +90663 singular +singular +plural +singular +singular +90669 plural +singular +90673 singular +singular +90676 singular +singular +plural +singular +singular +singular +singular +90685 singular +singular +90689 plural +90692 singular +singular +90695 singular +singular +singular +90699 singular +90702 singular +90705 singular +singular +singular +90709 plural +90711 singular +singular +singular +90715 singular +singular +singular +90720 plural +singular +plural +90725 singular +singular +90728 singular +90730 singular +singular +plural +singular +90736 singular +plural +90740 singular +singular +90743 singular +plural +90746 plural +plural +90750 singular +singular +singular +singular +90755 plural +plural +singular +singular +singular +plural +plural +90763 plural +singular +singular +90767 singular +singular +singular +singular +singular +singular +singular +90775 plural +plural +90778 singular +plural +singular +singular +plural +plural +singular +singular +singular +singular +90790 plural +90793 singular +singular +singular +singular +plural +90800 singular +plural +singular +90804 singular +90806 singular +90808 singular +90811 singular +singular +90814 singular +plural +singular +singular +singular +plural +plural +singular +90823 plural +singular +singular +singular +90828 singular +singular +90831 singular +singular +plural +singular +90836 plural +plural +singular +singular +90841 singular +plural +singular +plural +singular +singular +90849 singular +singular +singular +singular +singular +90855 singular +90858 plural +singular +singular +singular +singular +90865 singular +singular +singular +singular +90871 plural +singular +singular +singular +singular +plural +90878 singular +singular +singular +90882 singular +singular +90885 plural +plural +90888 singular +singular +plural +plural +plural +90894 plural +90897 plural +singular +singular +plural +90903 plural +singular +plural +plural +plural +90909 singular +singular +90912 singular +plural +singular +singular +singular +singular +90919 singular +singular +singular +90924 singular +90928 singular +90930 singular +singular +singular +90934 plural +90936 singular +90938 singular +singular +90941 singular +singular +singular +singular +singular +singular +singular +90949 plural +singular +singular +plural +plural +singular +singular +90958 plural +90960 plural +90963 plural +90965 plural +90967 singular +singular +plural +singular +90972 singular +90975 plural +90980 plural +90983 plural +plural +90988 plural +singular +90991 singular +90993 plural +plural +90997 singular +plural +91002 singular +singular +singular +singular +singular +91008 singular +singular +singular +91012 plural +plural +91015 singular +singular +singular +91019 singular +singular +singular +plural +91024 plural +plural +91028 singular +singular +singular +singular +singular +singular +singular +singular +91037 singular +singular +singular +91042 singular +singular +singular +singular +91047 singular +singular +91050 singular +singular +singular +91054 singular +singular +91057 singular +singular +singular +plural +91062 singular +singular +singular +singular +singular +91068 singular +singular +singular +91072 plural +singular +plural +singular +singular +singular +singular +plural +91081 singular +singular +singular +singular +singular +singular +singular +91089 singular +singular +singular +singular +91094 singular +singular +91097 singular +singular +91100 singular +91102 singular +singular +singular +singular +91108 singular +singular +singular +singular +singular +singular +91116 singular +singular +91119 singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +91134 singular +singular +singular +91139 singular +singular +91142 singular +singular +singular +singular +singular +singular +singular +singular +singular +91152 singular +singular +singular +singular +singular +singular +singular +singular +91161 singular +singular +singular +singular +singular +91167 singular +singular +91173 singular +91175 plural +91177 singular +singular +plural +91181 singular +singular +singular +singular +91186 plural +singular +91189 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +91200 singular +singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +91213 singular +singular +singular +91218 plural +91220 singular +singular +singular +singular +singular +91226 singular +singular +91229 singular +singular +singular +singular +singular +singular +91236 singular +singular +singular +91240 singular +singular +singular +plural +plural +91246 singular +singular +plural +91251 singular +singular +plural +plural +plural +plural +91258 plural +plural +91261 singular +singular +91264 plural +91266 plural +plural +singular +91270 singular +91272 singular +91274 singular +91276 singular +91278 singular +91280 singular +91282 plural +91284 plural +plural +plural +91288 plural +singular +91291 singular +singular +91294 plural +singular +singular +91298 plural +singular +91301 plural +plural +singular +91305 singular +singular +91308 plural +plural +91311 singular +singular +singular +91315 singular +91317 singular +singular +91320 singular +91322 plural +91325 singular +singular +91329 singular +singular +91332 singular +singular +singular +91338 singular +singular +91341 singular +singular +singular +singular +singular +91349 singular +singular +plural +91354 singular +singular +singular +singular +91359 singular +plural +plural +singular +singular +91365 singular +plural +plural +plural +plural +91372 singular +singular +singular +singular +91377 singular +singular +91380 plural +plural +singular +91384 singular +91386 singular +91388 plural +91391 plural +plural +singular +91396 plural +singular +91400 singular +91402 singular +singular +plural +91406 singular +singular +91409 singular +singular +singular +91413 singular +singular +singular +91417 singular +91421 singular +singular +singular +91426 singular +91428 plural +plural +91431 plural +91433 plural +plural +91436 singular +91438 plural +91441 plural +plural +plural +91445 singular +singular +singular +plural +plural +plural +plural +singular +91454 plural +91456 singular +plural +singular +singular +91461 plural +91463 plural +plural +plural +91467 singular +91469 plural +plural +91472 singular +plural +plural +91476 plural +plural +plural +plural +91481 plural +plural +91484 singular +91486 singular +91488 plural +91490 plural +91492 plural +91494 plural +91496 plural +91498 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +91510 plural +singular +singular +plural +singular +plural +91519 singular +plural +singular +plural +91525 plural +singular +plural +singular +91531 plural +plural +plural +91535 singular +91538 plural +plural +91542 singular +singular +91545 singular +singular +singular +plural +singular +91551 singular +plural +plural +singular +plural +91557 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +91568 singular +91570 singular +singular +plural +singular +plural +plural +singular +plural +91579 singular +singular +91584 singular +singular +singular +91590 singular +singular +91593 plural +plural +plural +91597 singular +91600 plural +91602 singular +singular +singular +91606 singular +91608 singular +singular +plural +plural +91613 singular +singular +91618 singular +singular +singular +singular +singular +91625 singular +singular +plural +91629 singular +singular +91632 plural +91635 singular +91637 singular +singular +91640 singular +91642 plural +singular +91645 singular +singular +singular +91650 plural +plural +91653 singular +singular +singular +singular +91659 plural +plural +plural +91665 plural +91667 singular +91669 singular +plural +singular +singular +singular +singular +singular +91677 singular +91679 singular +singular +singular +91683 singular +singular +singular +91687 singular +91689 singular +singular +91692 singular +singular +91695 singular +singular +singular +singular +singular +plural +plural +91703 singular +singular +singular +91707 singular +singular +singular +singular +plural +singular +91714 singular +singular +singular +singular +91719 singular +singular +singular +91723 singular +singular +singular +91727 singular +singular +singular +singular +91732 singular +singular +singular +plural +91737 plural +91739 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +91750 plural +singular +singular +91754 plural +plural +91758 singular +singular +plural +singular +singular +91764 plural +91767 singular +singular +91771 singular +singular +91774 singular +91777 plural +singular +91780 singular +singular +plural +91784 singular +singular +91788 plural +91791 plural +plural +singular +singular +singular +91797 plural +plural +91800 plural +91802 plural +91805 plural +91807 singular +singular +91812 singular +plural +91817 singular +singular +singular +singular +singular +91823 singular +91825 singular +91827 singular +91829 singular +91831 singular +singular +singular +91837 singular +singular +plural +91843 plural +91845 plural +plural +91848 plural +91850 singular +singular +singular +plural +singular +singular +91857 plural +plural +singular +singular +plural +singular +singular +91865 singular +singular +91869 plural +plural +91874 plural +plural +91878 plural +91880 plural +plural +singular +singular +plural +91888 plural +singular +singular +singular +plural +plural +plural +plural +91897 plural +91899 plural +plural +91902 plural +91906 plural +plural +plural +plural +plural +91912 singular +singular +plural +plural +91917 singular +plural +singular +91922 singular +91924 plural +singular +singular +singular +singular +91931 singular +singular +singular +singular +91936 singular +91938 singular +singular +91941 singular +91943 plural +91948 singular +plural +singular +91952 plural +plural +91955 plural +91957 singular +91960 plural +91962 singular +91965 plural +91967 plural +plural +91970 plural +91972 singular +plural +91976 plural +91978 plural +singular +singular +91982 plural +91984 plural +91986 plural +91988 plural +91990 plural +91992 plural +91994 plural +91996 plural +91998 plural +92000 plural +92002 plural +92004 plural +singular +singular +plural +92009 plural +plural +plural +92013 plural +92015 plural +92017 plural +92019 singular +singular +singular +singular +singular +singular +92027 singular +singular +singular +singular +plural +plural +singular +singular +92037 plural +singular +plural +singular +singular +92044 singular +singular +92047 singular +plural +plural +singular +singular +92053 singular +singular +plural +plural +92058 singular +singular +92061 singular +92063 plural +singular +92066 singular +singular +92069 singular +singular +92072 singular +singular +92075 singular +singular +singular +singular +92080 singular +singular +92083 singular +singular +singular +92087 plural +singular +92090 singular +singular +singular +92094 plural +92096 plural +plural +plural +plural +singular +singular +92103 singular +plural +plural +singular +singular +singular +singular +plural +92112 singular +92115 plural +92117 singular +singular +singular +singular +singular +singular +singular +92125 singular +plural +plural +92130 singular +singular +92133 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +92146 singular +singular +singular +92150 singular +singular +singular +92154 singular +singular +92157 singular +singular +singular +singular +92163 plural +92165 singular +singular +plural +singular +singular +92171 plural +singular +singular +singular +singular +plural +92178 singular +92181 plural +plural +92184 plural +singular +92187 plural +singular +singular +92191 singular +singular +plural +92196 plural +plural +singular +singular +singular +92205 plural +plural +singular +singular +singular +singular +singular +92213 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +92228 singular +singular +singular +singular +singular +singular +singular +singular +singular +92238 singular +92240 singular +singular +92245 singular +singular +singular +singular +singular +92251 singular +92253 singular +singular +92256 plural +plural +92262 singular +92264 singular +92266 plural +singular +singular +92272 singular +singular +plural +92277 singular +plural +singular +singular +92282 singular +singular +plural +92286 singular +singular +92289 singular +92292 singular +92294 singular +plural +plural +92300 singular +92302 singular +singular +singular +singular +92307 singular +92309 singular +92312 singular +92315 singular +plural +plural +92319 plural +plural +singular +plural +92324 plural +92326 singular +92330 plural +plural +92333 singular +singular +92339 plural +plural +singular +92343 singular +92345 singular +singular +singular +92349 singular +92355 singular +singular +singular +92359 singular +singular +singular +92363 singular +singular +92368 plural +plural +singular +singular +92373 singular +singular +92376 singular +singular +singular +singular +singular +92382 singular +singular +92386 singular +92388 singular +singular +92391 singular +singular +singular +singular +singular +92397 singular +singular +92401 singular +92403 singular +singular +singular +92407 singular +singular +singular +singular +singular +92413 singular +singular +92416 singular +singular +singular +singular +singular +92422 singular +singular +92426 plural +plural +plural +plural +singular +92433 plural +singular +92437 singular +singular +singular +singular +92442 singular +singular +singular +92446 singular +singular +92449 plural +plural +92453 singular +singular +plural +singular +singular +92459 singular +singular +singular +92463 singular +singular +singular +92467 singular +singular +singular +92471 singular +singular +singular +92477 singular +singular +singular +singular +92482 singular +singular +singular +singular +92487 singular +92491 plural +plural +plural +singular +singular +singular +singular +92499 singular +92501 singular +singular +singular +92505 singular +singular +singular +singular +singular +92511 singular +singular +singular +singular +92516 singular +plural +singular +singular +92521 singular +singular +singular +singular +92526 singular +singular +singular +singular +92531 singular +singular +92536 singular +singular +92540 singular +92542 singular +92544 singular +singular +singular +singular +singular +singular +92551 singular +singular +singular +singular +singular +singular +singular +plural +92560 plural +plural +plural +plural +singular +92566 singular +singular +92569 singular +singular +92572 singular +92575 plural +plural +singular +singular +92580 singular +92582 singular +singular +92585 singular +92587 singular +singular +92591 singular +singular +singular +92596 singular +singular +singular +92600 singular +singular +singular +92605 singular +singular +92608 singular +singular +singular +92612 singular +92614 singular +singular +92619 singular +92621 singular +92624 singular +singular +singular +92628 singular +92630 singular +singular +singular +plural +plural +plural +92637 singular +plural +singular +92641 plural +singular +singular +singular +singular +singular +singular +singular +singular +92652 plural +plural +plural +92657 plural +plural +92660 plural +plural +92664 plural +92666 plural +plural +92670 plural +92672 plural +plural +92676 plural +92678 plural +plural +singular +singular +92684 plural +92686 singular +singular +singular +singular +singular +singular +92693 singular +plural +plural +92697 singular +singular +singular +plural +singular +singular +92704 singular +singular +singular +92708 singular +singular +singular +plural +singular +singular +92715 singular +singular +singular +92719 singular +92721 singular +singular +singular +singular +92726 singular +singular +singular +plural +singular +singular +92733 singular +singular +92736 singular +singular +92739 singular +singular +92742 singular +singular +singular +plural +singular +singular +92749 singular +singular +singular +92753 singular +92755 singular +plural +plural +singular +singular +92762 singular +plural +singular +92767 singular +singular +92770 singular +singular +singular +92776 singular +92779 singular +singular +singular +singular +92784 singular +singular +92788 singular +92790 singular +singular +singular +92794 singular +plural +92797 singular +singular +92800 singular +singular +singular +singular +92805 singular +singular +92808 singular +singular +92811 singular +singular +singular +92815 singular +singular +92818 singular +singular +singular +92822 singular +singular +singular +92826 singular +92829 singular +singular +singular +singular +singular +92835 singular +92837 singular +92839 singular +singular +singular +singular +singular +92845 singular +singular +singular +singular +singular +singular +92853 singular +singular +singular +singular +singular +singular +singular +92861 singular +92863 singular +92865 singular +singular +92869 singular +92871 singular +singular +singular +92875 singular +singular +singular +singular +92882 plural +plural +plural +92886 plural +singular +plural +singular +singular +singular +92893 singular +singular +singular +92897 singular +singular +92900 singular +92902 singular +92904 singular +92908 singular +singular +singular +singular +singular +singular +92915 singular +92918 singular +singular +plural +plural +plural +92924 singular +singular +92927 singular +92930 singular +singular +92934 singular +92938 plural +plural +plural +92943 singular +92946 singular +92948 plural +plural +plural +92952 plural +plural +92955 plural +singular +singular +singular +singular +92961 singular +plural +plural +92965 plural +92967 singular +92969 singular +singular +singular +singular +92974 singular +plural +plural +92978 plural +92980 singular +92984 plural +singular +singular +92988 plural +singular +singular +92993 singular +singular +92996 singular +plural +92999 singular +singular +plural +singular +singular +singular +93006 singular +plural +93009 singular +singular +singular +93015 plural +plural +93019 plural +plural +93022 plural +93025 singular +singular +plural +singular +singular +singular +plural +plural +93035 singular +singular +singular +singular +singular +singular +93042 singular +singular +93045 singular +singular +singular +singular +singular +singular +93052 singular +plural +plural +93057 singular +93059 singular +singular +singular +singular +singular +singular +singular +93067 singular +singular +singular +93072 plural +93074 plural +plural +93077 plural +plural +singular +singular +singular +93083 singular +plural +93087 singular +singular +singular +singular +singular +93094 singular +plural +93097 singular +singular +93101 singular +singular +singular +singular +93106 singular +singular +93109 singular +singular +93112 singular +singular +singular +plural +singular +93118 singular +singular +singular +plural +plural +93124 singular +93126 plural +93128 singular +singular +93132 plural +singular +93135 singular +singular +singular +singular +singular +plural +plural +93143 singular +singular +singular +singular +plural +singular +plural +singular +singular +93154 plural +singular +93161 plural +singular +singular +singular +93168 plural +plural +plural +93172 plural +plural +singular +singular +93177 singular +93179 singular +singular +93182 singular +93184 plural +singular +93188 singular +singular +plural +plural +93193 singular +singular +singular +93197 singular +singular +singular +93201 singular +93203 singular +singular +singular +93208 singular +singular +singular +singular +93213 singular +93216 singular +plural +singular +93221 singular +singular +plural +93225 singular +93228 singular +singular +singular +singular +93233 singular +singular +singular +93237 plural +plural +singular +singular +singular +93244 plural +93246 singular +93249 plural +singular +93252 singular +93254 singular +93256 singular +singular +93259 singular +singular +93262 singular +singular +93266 plural +plural +plural +plural +plural +singular +93273 plural +plural +plural +plural +plural +93279 plural +singular +plural +singular +plural +93286 plural +93289 plural +singular +singular +singular +93294 plural +plural +93298 singular +singular +plural +singular +singular +singular +singular +93306 plural +93308 plural +plural +plural +plural +plural +93314 singular +singular +plural +plural +singular +singular +plural +singular +singular +plural +93326 singular +singular +singular +plural +singular +singular +plural +93334 singular +singular +93338 singular +93340 singular +singular +plural +93345 singular +plural +93349 singular +93351 singular +93353 singular +singular +93358 singular +singular +singular +singular +singular +93365 singular +93367 singular +singular +singular +93371 singular +singular +singular +93376 singular +singular +93380 singular +93383 singular +singular +singular +singular +singular +93390 singular +singular +singular +93394 singular +singular +singular +singular +singular +93400 singular +singular +singular +singular +singular +93406 singular +93409 singular +singular +singular +93413 singular +singular +93416 singular +singular +93419 plural +plural +singular +singular +93424 plural +plural +singular +93428 singular +plural +plural +93432 singular +93434 plural +singular +plural +93438 singular +93441 singular +93443 singular +singular +93446 singular +93448 plural +93450 singular +singular +plural +plural +93455 singular +93457 singular +singular +singular +93461 singular +singular +93464 singular +plural +plural +singular +plural +plural +singular +93472 plural +plural +singular +plural +plural +singular +plural +93481 plural +singular +93484 plural +singular +93487 singular +singular +93490 singular +singular +singular +93494 plural +93496 plural +93498 singular +plural +93501 plural +plural +93504 singular +singular +singular +singular +93509 plural +93511 plural +93513 singular +singular +singular +plural +singular +93520 plural +93522 singular +singular +plural +93526 plural +singular +93529 singular +93531 singular +93536 singular +93539 singular +singular +93542 singular +singular +singular +singular +93547 singular +93550 plural +singular +singular +singular +singular +93556 plural +93558 singular +plural +93562 plural +plural +plural +plural +93567 singular +singular +plural +93571 plural +93573 singular +singular +plural +93577 plural +93579 singular +singular +plural +93583 singular +singular +93587 singular +singular +93590 plural +singular +singular +singular +singular +plural +93597 plural +singular +singular +singular +singular +plural +93604 plural +93606 singular +singular +singular +93610 singular +singular +singular +singular +singular +93618 plural +plural +plural +singular +singular +singular +93625 plural +93627 singular +singular +93630 plural +plural +plural +plural +93635 singular +93638 plural +plural +plural +93642 plural +plural +93645 plural +plural +93648 plural +plural +93651 singular +singular +singular +singular +93659 plural +93662 plural +93664 plural +plural +plural +93668 plural +singular +singular +plural +plural +93674 plural +singular +singular +93678 plural +plural +plural +93683 plural +plural +plural +93687 plural +93689 plural +plural +plural +93693 plural +93695 singular +singular +93698 plural +93700 singular +plural +93703 singular +93705 singular +plural +93708 plural +plural +plural +plural +plural +singular +93715 singular +singular +93718 singular +93720 singular +singular +plural +93724 singular +93727 singular +93729 singular +singular +singular +singular +93734 singular +plural +93738 singular +plural +93741 singular +93743 singular +singular +93746 singular +singular +singular +93752 plural +singular +plural +93756 singular +singular +93759 plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +plural +93772 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +93783 singular +singular +singular +singular +singular +singular +93790 singular +singular +singular +singular +plural +plural +plural +93798 plural +plural +93801 singular +singular +singular +plural +plural +singular +singular +93809 singular +93811 plural +plural +plural +plural +plural +singular +singular +plural +93820 singular +singular +93823 singular +singular +singular +93828 singular +singular +singular +93833 plural +plural +plural +93838 singular +plural +93842 singular +plural +plural +plural +plural +93849 plural +singular +singular +93854 singular +plural +93857 plural +singular +singular +93862 singular +plural +93865 plural +singular +singular +93869 plural +singular +plural +plural +singular +93876 plural +singular +plural +singular +93882 plural +singular +singular +singular +singular +singular +93889 singular +singular +singular +singular +singular +93895 singular +singular +plural +singular +plural +93901 singular +singular +93904 singular +singular +singular +singular +93909 singular +singular +singular +93913 singular +plural +plural +singular +plural +93919 plural +93921 singular +singular +singular +plural +plural +singular +plural +93929 singular +singular +93933 singular +plural +singular +singular +singular +singular +93940 plural +93942 singular +singular +singular +93946 singular +singular +93949 singular +singular +93952 singular +singular +93955 singular +singular +singular +93960 singular +singular +singular +singular +singular +93966 singular +singular +93969 singular +singular +singular +singular +singular +93975 singular +singular +singular +93980 plural +93982 plural +93984 singular +plural +plural +93988 singular +singular +plural +plural +plural +93994 plural +93996 plural +93998 singular +singular +singular +singular +94003 singular +plural +plural +singular +singular +94009 singular +singular +singular +94013 singular +plural +plural +94017 plural +plural +singular +plural +94022 singular +singular +94025 singular +plural +94028 plural +singular +plural +94033 singular +plural +plural +plural +plural +94039 singular +plural +94043 singular +singular +singular +singular +singular +singular +singular +94051 singular +singular +singular +singular +94056 singular +singular +singular +singular +singular +singular +singular +singular +94065 singular +94067 singular +singular +singular +singular +singular +singular +94074 singular +singular +singular +94078 singular +singular +singular +singular +singular +singular +singular +singular +94087 singular +singular +94090 singular +singular +singular +singular +94097 singular +singular +94100 singular +94103 singular +singular +singular +94109 singular +94112 singular +94114 singular +94116 singular +singular +singular +94120 singular +singular +singular +94124 singular +singular +singular +singular +singular +94131 singular +singular +94134 singular +94136 singular +94138 singular +94142 singular +singular +94145 singular +singular +94148 singular +94150 singular +singular +94153 singular +singular +singular +singular +singular +94160 singular +singular +94163 plural +plural +94167 singular +94169 singular +94171 singular +94173 singular +94175 singular +94178 singular +singular +94181 singular +singular +94185 singular +singular +94188 singular +singular +94191 plural +plural +94194 singular +singular +94197 plural +plural +plural +singular +singular +singular +singular +singular +singular +94208 singular +singular +singular +singular +plural +94216 singular +singular +singular +singular +singular +94223 singular +singular +singular +singular +singular +94229 singular +singular +94232 singular +singular +singular +94237 singular +singular +singular +94241 plural +singular +singular +94245 plural +94247 plural +plural +singular +singular +94252 singular +singular +94255 singular +94259 singular +singular +94263 singular +singular +plural +94268 singular +plural +plural +94272 singular +singular +plural +94276 plural +94279 singular +singular +singular +94283 singular +94285 plural +94287 plural +94291 plural +plural +plural +plural +94296 plural +94298 plural +plural +94301 singular +singular +94304 singular +singular +singular +94309 singular +singular +singular +singular +singular +94315 singular +94319 singular +singular +94322 singular +singular +94326 plural +94328 plural +94330 singular +94335 singular +singular +singular +singular +plural +94341 plural +plural +94344 plural +singular +singular +plural +singular +plural +94351 singular +94353 singular +94355 singular +singular +94358 singular +singular +singular +94362 singular +plural +94365 singular +singular +singular +94369 singular +singular +singular +singular +singular +singular +94376 singular +singular +94379 singular +singular +singular +singular +singular +singular +singular +94387 plural +singular +plural +94391 singular +singular +singular +94396 singular +singular +94399 singular +94401 singular +singular +singular +singular +singular +singular +singular +singular +94410 singular +singular +singular +singular +plural +94417 plural +94419 singular +singular +singular +94425 plural +singular +singular +singular +94430 singular +singular +plural +singular +singular +singular +singular +plural +94439 singular +singular +94443 singular +singular +singular +singular +94448 singular +singular +singular +singular +singular +94454 singular +singular +singular +singular +94459 singular +singular +singular +singular +94464 singular +singular +singular +94470 singular +singular +singular +94475 singular +singular +singular +94479 singular +singular +94482 singular +singular +singular +singular +94487 singular +94489 singular +singular +singular +94493 singular +94495 plural +plural +plural +94499 plural +94501 plural +plural +94505 plural +plural +94509 plural +94511 plural +94513 singular +singular +plural +94519 singular +singular +plural +94523 plural +singular +plural +94527 singular +94529 plural +plural +94532 singular +singular +94535 singular +singular +94540 singular +plural +94543 plural +plural +94547 singular +singular +94550 plural +94552 plural +plural +94555 singular +plural +94558 plural +94561 plural +plural +94564 plural +plural +plural +plural +94570 plural +plural +94573 singular +plural +94576 singular +94578 singular +singular +singular +singular +singular +singular +94585 singular +singular +94588 singular +singular +94593 singular +singular +94596 plural +plural +plural +94600 singular +singular +singular +94604 plural +plural +plural +94608 singular +singular +singular +94612 plural +plural +plural +94616 singular +singular +singular +singular +singular +plural +plural +94624 plural +94626 singular +singular +singular +singular +singular +singular +94633 singular +singular +94637 singular +94639 singular +singular +singular +singular +singular +94645 singular +singular +singular +94649 singular +singular +singular +singular +singular +94655 singular +singular +singular +94659 singular +plural +plural +94663 singular +singular +singular +94667 singular +plural +plural +94671 singular +singular +94674 singular +plural +plural +singular +plural +plural +94681 singular +singular +plural +94685 plural +plural +singular +singular +singular +94691 singular +singular +singular +singular +singular +singular +94698 singular +94701 singular +singular +singular +singular +94706 plural +plural +singular +94710 plural +plural +plural +singular +singular +plural +plural +singular +singular +singular +94722 singular +singular +94727 singular +singular +plural +plural +94732 singular +singular +plural +94736 plural +94738 plural +94740 plural +94742 plural +94744 plural +singular +singular +plural +94750 singular +singular +singular +94754 singular +singular +94757 plural +94759 singular +singular +singular +94764 singular +singular +94767 singular +94769 singular +singular +94773 singular +94775 singular +94777 singular +singular +94781 singular +singular +singular +94786 singular +singular +94789 singular +94791 singular +singular +94795 singular +94797 singular +94799 singular +singular +94802 singular +singular +singular +singular +94807 singular +singular +94810 singular +singular +94813 singular +singular +94817 singular +singular +singular +plural +plural +singular +singular +plural +94826 singular +singular +94829 singular +94832 singular +plural +plural +singular +singular +94838 singular +singular +94843 plural +plural +94846 singular +singular +94850 singular +singular +singular +94854 singular +singular +singular +singular +94859 singular +94862 singular +singular +plural +plural +singular +plural +94869 singular +94871 singular +94873 plural +plural +plural +94877 plural +singular +singular +plural +singular +94883 plural +94885 plural +singular +singular +plural +plural +singular +singular +plural +94894 plural +plural +plural +singular +singular +singular +94901 plural +plural +plural +94905 singular +singular +94908 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +94920 singular +singular +94923 singular +singular +94926 singular +singular +94929 plural +plural +plural +plural +94935 singular +singular +singular +singular +plural +plural +plural +94943 singular +singular +singular +plural +plural +plural +94950 plural +plural +singular +singular +94955 plural +94957 singular +94960 plural +singular +singular +singular +94965 singular +singular +singular +plural +singular +plural +singular +plural +94974 plural +94976 plural +plural +plural +plural +plural +plural +94983 plural +plural +94986 plural +plural +94989 plural +plural +94992 plural +plural +94995 plural +plural +plural +plural +95000 plural +plural +plural +95004 plural +plural +95007 plural +plural +plural +plural +plural +95015 singular +singular +plural +singular +95020 plural +plural +plural +plural +95025 plural +plural +singular +95029 singular +95031 singular +singular +singular +singular +95036 singular +singular +95040 singular +singular +95043 singular +plural +plural +plural +95048 singular +singular +singular +95053 singular +singular +singular +singular +95058 plural +95061 singular +95063 singular +singular +singular +95068 singular +plural +plural +plural +singular +95075 singular +singular +singular +singular +95080 singular +95082 singular +95084 singular +singular +singular +singular +singular +singular +singular +singular +singular +95094 singular +singular +singular +95098 singular +95100 singular +95102 singular +95104 singular +plural +singular +95108 singular +95110 singular +singular +singular +95114 singular +95116 singular +singular +95119 singular +singular +singular +plural +singular +plural +singular +plural +singular +plural +singular +singular +singular +95133 singular +95136 plural +plural +95139 plural +plural +95142 singular +singular +95146 singular +plural +95150 singular +plural +95154 singular +singular +singular +singular +95159 singular +singular +95162 singular +singular +singular +95166 singular +singular +95169 singular +singular +95172 singular +95174 singular +singular +singular +plural +singular +singular +95181 plural +95184 singular +95186 singular +95189 singular +95191 singular +95193 singular +95195 singular +95198 singular +95201 singular +95204 singular +singular +singular +singular +plural +plural +plural +95212 singular +plural +singular +singular +plural +singular +singular +95220 plural +plural +plural +95226 plural +95228 singular +singular +singular +95232 plural +singular +95235 singular +95237 singular +singular +95240 singular +singular +plural +95244 singular +singular +plural +singular +singular +95250 singular +95252 singular +singular +singular +singular +singular +singular +95259 singular +singular +singular +singular +95264 singular +plural +plural +95268 plural +95272 plural +95274 singular +singular +singular +95278 singular +singular +plural +95284 singular +95286 singular +singular +singular +singular +95291 plural +95294 singular +95296 plural +plural +singular +singular +plural +singular +95304 plural +singular +95308 singular +95311 singular +95314 singular +95316 singular +95318 plural +plural +singular +plural +95323 singular +95325 singular +95327 singular +plural +plural +95331 singular +95333 singular +singular +singular +95337 singular +singular +95342 singular +singular +singular +singular +singular +singular +95349 singular +95353 plural +95355 singular +singular +95358 singular +singular +plural +95362 singular +singular +singular +95367 singular +plural +plural +95371 singular +plural +plural +plural +plural +95377 singular +95379 singular +singular +95384 singular +singular +singular +singular +singular +singular +singular +singular +singular +95394 singular +singular +95397 singular +singular +95401 plural +95403 plural +plural +plural +95407 singular +singular +singular +singular +plural +95413 plural +95415 singular +singular +singular +singular +95420 singular +95423 singular +singular +singular +singular +singular +singular +95430 singular +singular +singular +singular +singular +95436 singular +singular +singular +singular +singular +95442 singular +95444 singular +singular +singular +singular +singular +95450 singular +95452 singular +singular +95456 singular +singular +singular +singular +singular +singular +singular +singular +95465 singular +singular +95469 singular +singular +singular +95473 singular +singular +95476 singular +95479 singular +95481 singular +95483 singular +singular +95486 singular +singular +singular +singular +plural +plural +95493 plural +singular +95497 singular +singular +95500 plural +singular +singular +singular +95507 plural +singular +95510 plural +plural +95513 singular +plural +95516 plural +plural +plural +plural +95521 singular +singular +plural +95525 plural +plural +plural +plural +95530 singular +singular +singular +95535 plural +95538 plural +plural +singular +singular +singular +singular +95547 plural +singular +singular +singular +95552 plural +plural +95555 singular +plural +95558 plural +plural +95561 plural +plural +95564 singular +singular +95567 plural +plural +95570 plural +plural +95574 singular +singular +singular +singular +95579 singular +singular +95582 plural +plural +plural +95586 plural +plural +95589 plural +95591 plural +95593 plural +95596 plural +plural +95599 singular +singular +singular +95603 singular +singular +95606 plural +singular +95609 plural +plural +plural +singular +singular +singular +plural +singular +95619 singular +95621 singular +singular +singular +singular +singular +95628 singular +singular +95631 plural +singular +95634 singular +singular +plural +95638 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +95652 singular +singular +95655 singular +singular +singular +95661 singular +singular +plural +95666 singular +95668 singular +singular +95673 singular +singular +singular +95677 singular +95679 singular +singular +95682 singular +singular +95685 plural +95688 plural +plural +95691 plural +plural +plural +95696 singular +singular +singular +singular +singular +singular +95703 plural +95705 singular +plural +95709 plural +plural +95712 plural +plural +95715 plural +plural +plural +singular +95721 singular +singular +singular +singular +95726 singular +95729 plural +plural +plural +plural +plural +plural +plural +95737 plural +plural +plural +95742 singular +plural +95746 plural +95749 singular +singular +singular +95754 singular +95756 plural +95758 singular +plural +plural +plural +plural +95764 singular +singular +singular +95769 singular +95772 plural +singular +singular +singular +singular +singular +95780 plural +plural +singular +95784 singular +singular +95787 singular +95789 singular +singular +plural +singular +plural +95795 singular +singular +singular +95800 singular +singular +singular +95804 plural +singular +plural +singular +95810 singular +95812 plural +95814 plural +95816 plural +95820 singular +singular +95823 plural +singular +plural +singular +singular +singular +singular +plural +singular +95833 plural +95835 singular +95837 plural +95839 singular +95841 plural +singular +singular +singular +plural +95847 plural +95852 plural +95854 singular +plural +95857 plural +singular +95860 singular +95862 singular +singular +95865 plural +plural +plural +95869 plural +plural +95873 singular +95876 singular +singular +singular +singular +singular +95882 plural +plural +95886 singular +singular +95889 plural +95892 singular +95894 plural +plural +95898 plural +plural +plural +plural +95905 plural +plural +95908 singular +singular +95911 plural +plural +plural +95915 singular +plural +singular +singular +95920 singular +singular +95923 singular +singular +singular +singular +plural +plural +singular +95931 singular +singular +95934 singular +95936 singular +singular +singular +singular +singular +95942 singular +singular +singular +singular +singular +95948 singular +singular +singular +singular +95953 singular +95955 singular +singular +95958 singular +plural +plural +singular +95964 singular +95966 singular +singular +singular +singular +95971 singular +95974 singular +95976 plural +95978 plural +95981 plural +95984 singular +singular +95988 plural +singular +95991 plural +95993 plural +plural +95996 singular +plural +95999 singular +96002 singular +plural +96005 singular +96007 singular +singular +96011 singular +96013 singular +96015 singular +singular +singular +plural +singular +96021 singular +singular +plural +96025 plural +96027 plural +singular +singular +96031 plural +96033 singular +singular +96036 singular +singular +singular +singular +96041 singular +96044 plural +96046 plural +96049 plural +96051 plural +96053 singular +singular +96057 singular +96059 singular +singular +singular +singular +plural +96065 plural +96067 plural +plural +plural +96072 plural +plural +96075 singular +plural +96079 singular +singular +singular +96083 singular +plural +plural +singular +plural +plural +plural +plural +96093 singular +96095 plural +singular +singular +plural +plural +96103 singular +singular +96107 singular +singular +plural +96113 singular +singular +plural +plural +96120 singular +singular +plural +plural +96125 singular +96127 singular +singular +singular +singular +singular +96133 plural +singular +singular +96137 singular +singular +singular +96141 singular +singular +96144 singular +singular +singular +singular +singular +96150 singular +96152 singular +singular +singular +96156 singular +singular +96159 singular +96161 singular +singular +96165 singular +singular +plural +plural +plural +96171 plural +plural +singular +singular +singular +singular +singular +singular +96180 plural +singular +96183 plural +plural +singular +96188 singular +96190 plural +singular +singular +96195 singular +singular +singular +plural +plural +96202 singular +singular +plural +plural +96208 singular +singular +singular +singular +singular +singular +singular +plural +plural +96218 singular +singular +singular +plural +96223 plural +96225 singular +plural +plural +plural +96230 plural +plural +96234 plural +96236 plural +singular +96239 plural +96241 plural +singular +96244 plural +plural +singular +singular +plural +96250 singular +singular +96253 singular +singular +singular +singular +singular +96259 singular +singular +singular +singular +plural +96266 singular +singular +96269 singular +singular +singular +singular +singular +96275 plural +96277 plural +plural +96280 plural +96283 plural +96285 plural +plural +plural +plural +plural +plural +plural +96295 plural +96297 singular +singular +plural +plural +96302 singular +plural +singular +96306 singular +singular +96309 plural +plural +plural +96313 singular +singular +plural +singular +singular +singular +singular +96321 singular +96324 singular +96326 singular +singular +96329 singular +singular +singular +singular +singular +96335 singular +singular +96338 singular +singular +96341 singular +plural +plural +96345 singular +singular +singular +singular +singular +96351 singular +96353 singular +plural +plural +singular +singular +96359 singular +singular +singular +singular +singular +96366 singular +plural +96369 singular +singular +plural +96373 singular +singular +plural +96377 singular +plural +96380 plural +plural +96383 plural +plural +96387 singular +singular +plural +plural +singular +96393 singular +singular +plural +plural +singular +singular +singular +96401 singular +singular +singular +96405 singular +singular +plural +96409 singular +singular +singular +96413 singular +96416 singular +singular +plural +plural +singular +96422 singular +singular +96425 singular +singular +96428 singular +singular +96431 singular +singular +96434 singular +singular +96437 singular +singular +singular +singular +singular +singular +singular +96445 singular +singular +singular +singular +96450 singular +96453 singular +singular +singular +singular +singular +singular +96460 singular +singular +singular +singular +singular +96466 singular +singular +96470 singular +singular +singular +96474 singular +singular +96477 singular +singular +singular +singular +singular +96483 singular +singular +singular +singular +singular +96489 singular +singular +singular +singular +plural +96495 plural +plural +96498 singular +singular +singular +plural +96503 plural +plural +96507 plural +singular +singular +singular +singular +plural +96514 singular +singular +singular +singular +96519 singular +singular +plural +96523 singular +96525 singular +singular +singular +96530 singular +96532 singular +singular +singular +singular +singular +singular +singular +plural +singular +plural +96543 plural +96545 plural +plural +96548 singular +96550 singular +singular +96553 singular +singular +singular +96557 singular +96559 plural +plural +plural +plural +96564 plural +plural +96567 singular +singular +singular +singular +96572 singular +96574 singular +singular +singular +96578 singular +96581 singular +singular +singular +singular +singular +96587 singular +singular +singular +singular +singular +96593 singular +singular +singular +singular +singular +singular +singular +singular +96602 singular +singular +96605 singular +singular +singular +singular +96610 singular +singular +singular +96614 singular +singular +singular +singular +singular +singular +96621 singular +singular +singular +singular +singular +singular +96628 singular +singular +singular +singular +singular +plural +singular +singular +96637 singular +singular +plural +singular +singular +96643 plural +singular +plural +plural +plural +plural +plural +96651 singular +singular +singular +singular +96656 plural +96658 singular +singular +plural +96662 singular +singular +96665 singular +96668 singular +singular +singular +96672 plural +plural +96675 singular +plural +plural +singular +singular +96682 plural +plural +96685 singular +singular +singular +plural +96690 singular +singular +singular +singular +96695 singular +singular +96700 singular +96702 plural +plural +96706 singular +96708 plural +plural +96711 plural +plural +singular +96715 singular +singular +plural +96719 singular +96722 singular +singular +singular +singular +96728 singular +plural +96731 singular +96733 plural +96735 singular +singular +96738 singular +singular +96742 plural +singular +singular +96747 singular +96749 plural +singular +plural +96754 singular +96757 singular +plural +96761 singular +96764 singular +singular +singular +96769 plural +96771 singular +singular +singular +96775 singular +96777 singular +96779 singular +singular +96782 singular +singular +singular +singular +96787 singular +96789 plural +plural +96793 singular +singular +plural +96798 singular +96800 plural +96802 singular +singular +singular +singular +96807 singular +96810 singular +singular +singular +96814 plural +singular +96817 singular +96819 singular +96821 singular +96823 singular +singular +96826 plural +plural +96830 singular +singular +singular +plural +singular +singular +96837 singular +96839 plural +96841 plural +plural +96846 singular +singular +96850 singular +96852 singular +96854 singular +plural +plural +96858 singular +singular +plural +plural +plural +plural +96865 singular +singular +96868 singular +plural +plural +plural +singular +singular +singular +96876 singular +singular +singular +singular +96882 singular +plural +plural +plural +plural +96889 plural +plural +plural +plural +96894 singular +singular +singular +96898 singular +96900 singular +96902 singular +singular +singular +96906 singular +96908 singular +96910 singular +singular +singular +plural +plural +96916 plural +singular +singular +singular +96921 singular +plural +96924 plural +plural +plural +plural +plural +plural +plural +singular +singular +singular +plural +96936 singular +plural +singular +96940 singular +96942 singular +96944 singular +plural +singular +plural +plural +plural +plural +plural +plural +plural +96955 singular +singular +singular +singular +singular +singular +singular +singular +96964 singular +96966 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +96979 plural +singular +singular +singular +96984 plural +plural +96987 singular +singular +singular +singular +singular +singular +96994 singular +singular +96997 singular +singular +singular +singular +singular +singular +singular +singular +singular +97007 singular +97009 plural +plural +plural +plural +plural +97015 singular +singular +singular +plural +singular +97021 singular +97023 singular +singular +plural +97027 singular +singular +singular +singular +singular +singular +97034 singular +singular +singular +plural +singular +singular +singular +singular +plural +plural +97045 singular +singular +singular +singular +singular +plural +97052 singular +singular +singular +plural +97057 singular +97059 plural +97061 plural +97063 singular +singular +97066 singular +singular +singular +plural +plural +97072 singular +singular +97076 singular +plural +plural +singular +singular +97082 plural +97085 singular +singular +singular +97089 singular +singular +plural +97094 plural +97096 singular +plural +singular +97100 singular +97102 plural +97104 singular +plural +singular +singular +singular +97110 singular +plural +plural +plural +plural +97116 plural +plural +97119 singular +singular +plural +singular +97124 plural +plural +97128 plural +plural +plural +plural +97134 singular +singular +97137 plural +97139 plural +plural +97143 singular +singular +plural +singular +singular +97149 singular +singular +97153 singular +97155 singular +plural +97159 plural +97161 singular +97164 plural +97166 plural +singular +singular +singular +singular +plural +97174 plural +plural +97177 plural +97180 singular +singular +singular +singular +plural +plural +singular +97188 singular +singular +singular +plural +97193 singular +97195 singular +plural +97200 singular +plural +97203 plural +97205 plural +singular +singular +97210 plural +plural +singular +97214 plural +singular +97217 plural +singular +97220 plural +97222 singular +singular +plural +singular +singular +singular +singular +singular +singular +plural +97234 singular +97236 singular +singular +singular +97241 singular +singular +97245 singular +singular +plural +97249 singular +singular +97254 plural +97256 plural +plural +97259 plural +97262 plural +plural +97266 plural +97268 singular +97271 singular +plural +97275 plural +plural +97278 singular +97280 singular +plural +plural +97285 plural +plural +97288 singular +singular +singular +singular +plural +singular +97295 singular +singular +singular +singular +singular +97301 plural +97304 singular +singular +plural +97309 plural +97312 singular +97316 singular +97319 plural +97322 plural +97325 singular +singular +97328 singular +singular +97332 singular +singular +singular +97336 plural +singular +97339 singular +singular +97342 singular +97344 singular +singular +97349 singular +97353 singular +singular +singular +97357 singular +singular +plural +singular +97362 plural +97364 singular +97369 singular +singular +singular +singular +singular +singular +singular +97377 plural +97379 plural +singular +97382 singular +97384 singular +97386 singular +97388 singular +97395 singular +singular +97398 plural +plural +singular +97402 singular +singular +97408 singular +singular +97411 singular +singular +97414 singular +97416 plural +97418 singular +singular +plural +97422 plural +97424 singular +97426 singular +plural +singular +singular +97431 singular +plural +97434 singular +singular +singular +singular +singular +97440 plural +plural +plural +97444 singular +singular +singular +singular +singular +97450 singular +singular +singular +97454 singular +plural +97457 singular +97459 singular +97462 plural +plural +singular +singular +97467 plural +plural +singular +singular +plural +97473 singular +singular +plural +97477 singular +singular +singular +singular +97484 singular +97486 plural +97490 singular +singular +plural +97494 singular +singular +singular +singular +97500 singular +singular +97503 singular +97505 singular +singular +singular +97510 singular +singular +singular +97514 plural +singular +97517 singular +singular +97520 plural +plural +97523 singular +singular +singular +plural +plural +singular +97531 singular +singular +97534 singular +singular +singular +plural +97539 plural +plural +97543 plural +97546 plural +singular +singular +singular +singular +97553 plural +97556 singular +singular +97559 singular +singular +97563 singular +plural +plural +97568 singular +singular +singular +singular +singular +singular +singular +singular +97577 plural +plural +97582 plural +97588 singular +singular +singular +singular +singular +singular +97595 singular +plural +97599 singular +singular +97603 singular +97605 singular +97607 singular +singular +singular +plural +97613 plural +plural +plural +97617 singular +singular +plural +singular +97623 singular +singular +singular +97627 singular +singular +97630 plural +97632 singular +singular +97636 plural +97638 singular +singular +97642 singular +plural +plural +plural +97647 singular +97649 singular +singular +97652 singular +singular +singular +singular +97657 singular +singular +singular +97661 singular +97663 singular +singular +singular +singular +singular +singular +97671 singular +singular +singular +singular +singular +97677 singular +plural +singular +97681 singular +97683 singular +singular +singular +singular +97688 singular +plural +97691 singular +singular +97694 singular +singular +singular +singular +singular +singular +97701 plural +97703 singular +singular +97706 singular +singular +plural +singular +singular +97712 plural +plural +97716 plural +plural +97719 plural +singular +97722 singular +97724 singular +97726 plural +singular +97729 singular +97731 singular +97734 plural +singular +singular +97739 plural +plural +singular +singular +singular +singular +97746 plural +plural +97751 singular +97755 singular +97757 singular +97759 singular +plural +plural +97763 plural +97767 plural +97769 plural +plural +plural +97773 plural +97776 plural +singular +singular +plural +plural +plural +singular +97784 plural +plural +plural +singular +97789 singular +97791 plural +plural +plural +97795 plural +singular +singular +singular +97800 plural +singular +97803 singular +97805 singular +singular +singular +97810 plural +plural +97814 plural +plural +plural +97818 singular +singular +plural +97822 singular +singular +97825 singular +singular +97830 plural +plural +plural +97834 singular +97837 plural +97839 singular +singular +plural +97843 singular +singular +singular +97847 singular +plural +plural +singular +singular +97853 singular +97855 singular +97857 singular +singular +singular +97861 singular +singular +singular +97866 singular +singular +singular +singular +97871 plural +singular +plural +singular +97876 singular +97880 plural +plural +singular +97885 singular +singular +singular +97889 singular +singular +singular +singular +singular +singular +singular +97899 singular +singular +singular +singular +singular +97905 singular +97908 singular +singular +singular +singular +singular +singular +97915 singular +singular +singular +singular +singular +singular +97924 singular +singular +singular +97928 singular +singular +singular +97932 singular +singular +singular +97937 singular +singular +97940 singular +singular +97943 singular +singular +97946 singular +97948 plural +singular +singular +singular +singular +plural +97957 singular +singular +singular +97961 singular +singular +singular +97965 singular +97968 plural +plural +singular +97972 singular +singular +singular +singular +97977 singular +plural +plural +plural +97983 singular +97985 singular +singular +singular +singular +97990 singular +singular +singular +singular +singular +singular +97997 singular +98000 singular +singular +98007 singular +singular +singular +98011 singular +singular +plural +singular +98018 singular +98020 singular +singular +singular +singular +98025 singular +singular +singular +singular +singular +98032 singular +singular +singular +singular +98037 plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +singular +plural +98050 singular +98052 singular +98055 singular +singular +98058 singular +plural +singular +singular +singular +98064 plural +98066 plural +98068 plural +plural +plural +singular +singular +98074 plural +98076 singular +98078 plural +singular +singular +singular +singular +98084 singular +singular +singular +singular +plural +plural +98091 singular +singular +plural +98095 singular +singular +98100 singular +singular +singular +singular +plural +98106 plural +plural +singular +singular +98111 plural +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +98123 singular +98126 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +98141 plural +plural +98144 singular +singular +singular +98148 plural +plural +plural +98152 singular +98154 singular +singular +singular +singular +98159 singular +singular +singular +singular +singular +98165 plural +plural +plural +98169 singular +singular +singular +singular +singular +singular +singular +98177 singular +singular +98180 plural +singular +singular +singular +98185 plural +plural +98188 singular +singular +singular +singular +singular +singular +singular +98198 plural +98200 singular +plural +98204 plural +plural +98208 plural +plural +98212 plural +plural +98216 plural +98218 singular +singular +singular +singular +98223 singular +singular +plural +98228 singular +singular +singular +singular +98233 singular +singular +plural +singular +98239 plural +plural +plural +98243 singular +plural +98246 singular +98249 singular +singular +singular +singular +singular +98255 singular +singular +singular +plural +98260 singular +singular +98263 plural +singular +98266 singular +singular +98269 plural +98271 plural +singular +singular +singular +singular +singular +98278 singular +singular +singular +98282 singular +98284 plural +plural +98288 plural +plural +98291 singular +singular +singular +singular +singular +98297 plural +98299 singular +singular +98302 singular +98304 plural +98306 plural +plural +98309 plural +98311 singular +singular +singular +98315 plural +plural +singular +singular +singular +98321 singular +singular +singular +singular +98327 plural +98331 singular +98333 plural +singular +singular +98337 singular +98339 plural +singular +singular +98343 singular +98345 singular +98347 singular +singular +singular +98351 singular +98353 singular +singular +singular +singular +singular +plural +98360 plural +plural +plural +plural +98365 plural +98367 plural +98369 plural +plural +plural +98373 plural +98375 plural +plural +98378 plural +98381 singular +singular +plural +singular +singular +singular +singular +98389 singular +plural +singular +singular +singular +singular +98396 plural +plural +98401 singular +plural +singular +singular +plural +singular +98408 singular +98410 plural +98414 plural +98416 plural +plural +98420 plural +plural +98423 singular +singular +plural +plural +98428 singular +plural +98435 singular +singular +singular +98439 singular +singular +98442 singular +singular +plural +98446 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +98457 plural +98460 plural +98462 plural +98464 singular +singular +plural +98468 singular +singular +98472 singular +plural +98476 singular +98478 plural +98480 plural +98484 singular +singular +98489 singular +singular +98493 plural +98495 plural +98497 plural +plural +singular +98502 plural +plural +plural +98507 singular +singular +singular +singular +singular +98513 singular +singular +plural +98517 singular +singular +98520 plural +singular +98523 singular +98525 singular +98527 plural +singular +singular +singular +singular +plural +plural +98535 singular +plural +98538 singular +98541 plural +plural +plural +98547 plural +plural +plural +98551 singular +singular +plural +plural +98556 plural +98558 plural +98560 plural +98562 singular +plural +98567 singular +98570 plural +singular +98573 plural +plural +98576 singular +singular +singular +singular +singular +plural +plural +singular +98585 singular +98587 plural +singular +98590 plural +plural +plural +98595 plural +singular +98598 plural +plural +plural +98602 plural +98604 singular +98606 plural +singular +98609 singular +98611 plural +98613 singular +98615 singular +plural +98618 singular +98621 plural +98623 singular +singular +98628 plural +98631 singular +98633 singular +singular +singular +plural +plural +singular +singular +singular +plural +98643 plural +plural +98646 singular +singular +singular +singular +plural +singular +98653 singular +98655 singular +plural +singular +singular +singular +singular +98663 singular +singular +singular +98667 singular +singular +singular +98671 singular +plural +plural +plural +plural +98677 singular +98679 plural +singular +singular +singular +singular +98686 singular +plural +98689 singular +singular +singular +98693 plural +plural +98696 singular +plural +singular +singular +singular +98702 singular +singular +98705 plural +singular +singular +98709 plural +plural +singular +singular +98714 singular +98716 plural +98718 plural +98721 singular +singular +singular +singular +singular +98727 plural +98729 singular +singular +singular +singular +singular +98736 singular +singular +singular +singular +singular +98742 singular +singular +singular +98746 singular +singular +singular +singular +98751 singular +plural +98755 singular +singular +singular +98760 singular +plural +plural +98764 singular +plural +98767 singular +singular +98770 plural +98772 plural +98774 plural +98776 plural +98778 plural +98780 plural +98782 plural +98784 plural +98786 plural +98788 singular +98790 singular +98792 singular +98794 singular +98796 singular +singular +98799 singular +singular +98802 singular +singular +98805 singular +singular +98808 plural +plural +singular +singular +plural +plural +98815 plural +98817 singular +98819 singular +98821 singular +98823 singular +98825 plural +98827 plural +98829 plural +98831 plural +98833 plural +98835 singular +plural +98838 plural +98841 plural +98843 plural +98846 plural +98848 plural +98850 plural +plural +98853 singular +plural +98856 plural +plural +plural +singular +singular +plural +singular +98864 plural +singular +singular +plural +singular +98870 plural +98872 plural +98874 plural +98876 plural +plural +plural +98880 singular +singular +singular +98884 plural +singular +plural +98888 plural +98890 plural +plural +plural +98894 singular +singular +singular +98898 singular +98900 singular +singular +singular +98904 singular +98906 singular +singular +singular +98910 singular +98912 singular +singular +singular +98916 singular +98918 singular +singular +singular +singular +98923 plural +98925 plural +singular +singular +singular +plural +98931 singular +singular +singular +98935 singular +98937 plural +98939 singular +98941 singular +plural +singular +98945 plural +plural +singular +singular +98950 plural +98952 singular +plural +98955 plural +98957 singular +98959 plural +singular +singular +singular +singular +plural +98966 singular +plural +98969 singular +98971 plural +plural +singular +98975 plural +98977 plural +singular +singular +singular +98982 plural +plural +plural +plural +plural +plural +plural +98990 singular +singular +singular +98994 singular +plural +singular +98998 singular +singular +plural +plural +singular +plural +singular +plural +singular +plural +99009 singular +99011 singular +99013 singular +99016 plural +plural +plural +plural +99021 singular +99025 singular +singular +singular +99029 plural +singular +singular +singular +99034 plural +singular +singular +singular +singular +singular +singular +99042 singular +singular +singular +plural +99048 plural +plural +99051 singular +singular +singular +singular +singular +singular +plural +99060 singular +plural +99063 plural +99065 plural +99067 singular +singular +plural +plural +singular +singular +singular +plural +99076 singular +singular +singular +99081 singular +99083 singular +singular +singular +99089 singular +singular +singular +singular +99094 plural +singular +plural +singular +plural +singular +singular +plural +singular +singular +plural +singular +99107 singular +99109 singular +99115 singular +plural +99118 singular +singular +99121 singular +99124 singular +singular +99127 singular +singular +singular +99133 singular +singular +plural +99137 singular +99140 plural +99143 plural +99145 singular +99147 plural +99149 singular +99152 singular +plural +99155 plural +99157 singular +99159 singular +singular +singular +99163 singular +singular +singular +99167 singular +singular +singular +singular +singular +singular +99174 singular +singular +singular +singular +99179 singular +99181 singular +plural +singular +singular +99186 singular +99188 singular +99190 singular +99192 singular +99194 singular +99196 singular +99198 singular +plural +plural +plural +99203 singular +singular +99208 singular +plural +99212 singular +singular +99216 singular +singular +99220 singular +99222 singular +singular +plural +singular +99227 plural +99229 plural +99231 singular +singular +99234 singular +plural +99238 singular +singular +plural +99243 plural +99245 singular +singular +singular +99249 singular +singular +singular +singular +99254 plural +plural +99258 singular +singular +99261 plural +singular +99264 singular +99267 plural +99269 singular +plural +plural +99274 singular +singular +plural +99278 singular +singular +singular +99282 plural +plural +singular +99287 plural +singular +singular +singular +plural +plural +singular +99296 singular +99298 singular +plural +singular +singular +99304 singular +singular +99307 plural +99309 plural +plural +plural +singular +singular +singular +singular +singular +singular +99319 plural +plural +singular +singular +99325 singular +singular +singular +singular +singular +singular +singular +plural +99334 singular +99336 singular +singular +plural +singular +99341 singular +singular +singular +singular +plural +singular +99349 singular +99352 singular +plural +99355 singular +singular +plural +plural +singular +singular +99362 singular +singular +singular +singular +singular +99368 plural +plural +99373 plural +99375 plural +plural +singular +singular +singular +99381 plural +99383 singular +singular +99386 singular +99388 plural +singular +99392 singular +99395 singular +99397 plural +99399 singular +singular +singular +99405 singular +plural +singular +99409 singular +99411 singular +99413 singular +singular +99416 singular +99418 plural +99420 plural +singular +99425 singular +singular +singular +plural +99431 singular +singular +99435 singular +plural +singular +99439 singular +singular +singular +singular +singular +singular +99446 plural +singular +singular +singular +singular +plural +singular +singular +99456 plural +singular +singular +singular +99461 plural +singular +singular +singular +plural +99467 singular +99469 singular +singular +99472 singular +plural +singular +plural +99477 singular +singular +99482 singular +99484 plural +99490 singular +99492 plural +99495 singular +singular +singular +99501 singular +99504 singular +99508 singular +singular +singular +99513 singular +singular +99518 singular +99522 plural +singular +plural +singular +99528 singular +99530 singular +99532 singular +singular +plural +singular +99537 singular +plural +singular +99542 singular +plural +singular +singular +99547 singular +plural +singular +99551 singular +singular +99554 singular +singular +singular +singular +99559 singular +99561 singular +singular +singular +99565 singular +99567 singular +singular +singular +singular +singular +singular +singular +singular +99576 plural +99578 singular +singular +singular +99583 singular +singular +singular +99587 singular +singular +singular +singular +99592 plural +99594 plural +99596 singular +singular +singular +singular +singular +singular +99603 singular +singular +99606 plural +plural +plural +99611 singular +99614 singular +99616 plural +plural +singular +plural +99621 singular +singular +singular +singular +singular +99627 plural +99629 singular +singular +singular +singular +singular +99635 singular +plural +plural +singular +99640 singular +plural +singular +99644 singular +singular +singular +singular +singular +99650 plural +99652 plural +plural +99655 singular +99657 singular +99661 plural +99663 plural +plural +singular +singular +plural +singular +plural +99671 plural +99673 singular +singular +99677 singular +singular +singular +singular +singular +99683 plural +99686 singular +singular +singular +99691 plural +singular +99694 plural +plural +plural +plural +singular +singular +99701 singular +singular +singular +singular +plural +99707 plural +singular +99710 plural +99712 plural +plural +99715 singular +plural +plural +99721 singular +singular +singular +99725 plural +plural +singular +singular +singular +singular +99732 plural +99734 singular +singular +singular +plural +singular +99740 plural +singular +plural +99744 singular +singular +99749 singular +plural +singular +singular +plural +plural +99756 singular +plural +plural +99761 singular +singular +plural +singular +99766 plural +singular +99769 singular +singular +singular +99774 singular +plural +plural +99780 plural +99782 singular +plural +99785 plural +plural +plural +plural +plural +99792 plural +plural +99795 singular +singular +singular +99799 singular +singular +99802 plural +plural +99805 plural +99807 plural +99809 plural +singular +singular +singular +plural +singular +singular +99819 singular +99823 singular +99825 singular +singular +singular +99831 singular +99833 singular +singular +99836 plural +99838 plural +99840 singular +singular +99843 singular +singular +singular +99848 singular +99851 singular +99853 singular +singular +singular +singular +singular +99859 singular +singular +singular +singular +singular +99866 plural +99869 singular +99871 singular +singular +plural +plural +99876 singular +singular +singular +99880 singular +singular +singular +plural +plural +singular +singular +singular +singular +99890 singular +singular +99893 singular +singular +singular +singular +singular +99899 singular +99901 singular +singular +99904 singular +singular +singular +plural +99909 singular +plural +plural +singular +singular +plural +99916 singular +plural +99919 singular +singular +singular +singular +99924 plural +singular +singular +singular +99929 singular +singular +singular +singular +singular +99935 singular +singular +singular +plural +plural +plural +plural +99944 singular +99946 plural +plural +singular +singular +99951 singular +singular +singular +singular +singular +plural +singular +singular +99960 singular +singular +singular +singular +plural +99966 singular +singular +singular +singular +99971 singular +singular +singular +99975 plural +99978 plural +99980 plural +singular +99983 plural +plural +plural +99987 singular +singular +singular +singular +singular +99993 plural +singular +singular +singular +99998 singular +singular +singular +singular +100003 singular +singular +singular +singular +plural +100009 singular +singular +100012 singular +singular +singular +singular +100018 singular +singular +100021 plural +100023 singular +singular +100026 plural +100028 singular +singular +100031 singular +100033 singular +singular +singular +singular +100039 plural +plural +plural +plural +100045 singular +plural +100049 singular +plural +100053 singular +plural +100056 plural +plural +singular +singular +plural +100062 plural +100064 plural +singular +singular +100068 singular +plural +plural +plural +100073 singular +singular +singular +100077 singular +singular +singular +singular +100082 plural +singular +singular +100086 singular +singular +singular +singular +100092 singular +plural +100095 singular +singular +100098 singular +plural +singular +singular +plural +100104 singular +plural +100107 singular +singular +singular +singular +100112 singular +singular +100116 singular +100119 singular +singular +100123 plural +100127 singular +singular +singular +100131 singular +singular +plural +singular +singular +singular +singular +100139 singular +100143 singular +plural +100146 singular +100149 singular +100153 plural +100155 plural +plural +100158 singular +100160 plural +plural +plural +100164 plural +100166 singular +singular +singular +singular +singular +100172 singular +singular +singular +singular +singular +singular +singular +100180 plural +plural +singular +singular +100185 plural +plural +plural +100189 plural +singular +singular +100194 plural +100198 plural +plural +plural +plural +plural +100204 plural +100206 plural +plural +plural +100210 plural +plural +plural +100214 plural +100216 plural +100219 plural +plural +plural +100224 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +100237 plural +100242 plural +100244 plural +plural +plural +100250 plural +plural +100253 singular +singular +singular +singular +100259 plural +plural +plural +100263 plural +plural +100266 singular +plural +singular +singular +singular +plural +100273 plural +100276 singular +singular +plural +100280 singular +100282 plural +100284 plural +100288 singular +singular +100291 plural +plural +100295 singular +singular +100298 singular +singular +100302 singular +singular +singular +singular +singular +singular +100309 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +100321 plural +singular +100324 singular +plural +singular +singular +100329 singular +plural +singular +singular +singular +singular +100336 singular +singular +100339 singular +100343 singular +singular +singular +singular +100348 singular +singular +singular +singular +plural +plural +plural +100356 singular +singular +100359 singular +singular +singular +100363 singular +100367 singular +singular +singular +singular +singular +singular +100374 plural +100376 plural +singular +singular +singular +100381 plural +100383 singular +singular +singular +100387 plural +100389 plural +100391 singular +singular +100394 plural +100396 plural +100400 singular +singular +singular +100405 singular +singular +100409 singular +plural +100412 plural +100414 plural +100416 singular +singular +singular +singular +100421 plural +plural +100425 singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +100437 singular +plural +singular +100441 singular +100443 plural +100445 singular +100447 singular +singular +100450 singular +singular +singular +plural +plural +plural +plural +100458 singular +100461 singular +singular +singular +plural +singular +100467 singular +singular +singular +singular +100472 singular +100474 singular +singular +singular +100478 singular +100480 singular +100482 plural +plural +singular +singular +100487 singular +100490 singular +plural +singular +singular +singular +100496 singular +singular +100499 singular +100501 singular +singular +singular +plural +plural +singular +100509 singular +plural +plural +100514 plural +100516 plural +plural +plural +plural +plural +plural +100523 plural +singular +100527 singular +100529 singular +singular +singular +singular +100534 singular +singular +100538 singular +100541 plural +plural +singular +plural +100546 plural +singular +plural +singular +singular +singular +100553 plural +plural +plural +100557 singular +100559 singular +singular +singular +singular +100569 singular +plural +singular +100573 singular +singular +singular +singular +singular +singular +100581 singular +singular +100586 singular +100588 singular +singular +singular +singular +singular +100594 plural +plural +100597 singular +singular +singular +singular +100603 plural +plural +plural +plural +plural +100609 plural +100611 singular +plural +singular +100615 singular +singular +100618 singular +singular +100621 singular +singular +100624 singular +100626 singular +plural +singular +100630 singular +singular +100634 plural +plural +100639 singular +singular +singular +100643 singular +singular +singular +singular +plural +plural +singular +plural +plural +singular +singular +singular +plural +singular +plural +singular +plural +singular +singular +100663 singular +100665 plural +100668 plural +100671 plural +100674 plural +100677 plural +100681 singular +singular +100684 singular +100686 singular +100688 singular +singular +100691 singular +singular +singular +plural +100696 plural +plural +plural +plural +plural +100702 singular +plural +100705 plural +plural +100708 singular +plural +100711 singular +plural +100714 singular +plural +100717 plural +singular +100720 singular +100722 plural +100725 singular +100727 singular +100729 plural +100732 singular +100734 singular +100736 plural +100738 singular +singular +singular +singular +100743 singular +singular +singular +plural +plural +plural +singular +singular +100753 singular +singular +singular +100758 singular +singular +100762 singular +plural +singular +singular +singular +singular +singular +singular +100771 singular +singular +singular +singular +singular +singular +singular +100779 plural +plural +singular +100784 singular +100786 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +100797 singular +100800 singular +100802 singular +singular +100805 singular +singular +100808 singular +plural +plural +singular +100813 singular +100816 singular +100818 singular +100820 plural +100822 plural +singular +singular +singular +100827 singular +100830 singular +100832 singular +100835 singular +singular +100838 singular +singular +singular +singular +100843 plural +plural +singular +singular +singular +100849 singular +singular +100852 singular +singular +singular +singular +100858 singular +100861 singular +singular +100864 singular +singular +singular +singular +100869 singular +100871 singular +singular +100874 singular +plural +plural +plural +100880 singular +singular +100883 singular +singular +singular +100888 singular +100890 singular +100894 plural +plural +100898 singular +100901 singular +singular +100904 singular +singular +100907 singular +100909 singular +100911 singular +singular +100914 singular +singular +singular +100918 singular +100920 singular +100922 singular +singular +plural +plural +100929 singular +singular +singular +singular +singular +singular +singular +singular +100938 singular +singular +100942 singular +100944 singular +100946 singular +singular +singular +100950 singular +100952 singular +100954 singular +singular +singular +singular +singular +singular +singular +100962 singular +singular +100965 singular +singular +100968 plural +100970 singular +100972 plural +plural +100975 singular +100977 singular +singular +singular +singular +singular +100983 singular +100985 plural +100987 plural +100989 plural +100991 plural +100993 plural +100995 singular +100998 singular +101000 singular +singular +singular +singular +plural +singular +plural +101008 singular +singular +101011 plural +101014 singular +singular +plural +101018 plural +101021 singular +singular +101024 plural +plural +singular +singular +singular +101030 plural +101032 singular +singular +101035 plural +101037 plural +101039 plural +101041 singular +singular +singular +plural +101046 plural +plural +plural +101052 singular +singular +101055 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +101066 singular +101069 plural +101072 singular +101075 singular +plural +plural +101079 plural +101082 singular +plural +plural +plural +plural +101089 plural +plural +plural +plural +101094 singular +plural +singular +101098 singular +101100 plural +plural +plural +101105 plural +singular +singular +singular +101110 singular +singular +101113 singular +plural +101116 singular +singular +singular +plural +singular +101122 singular +plural +singular +101126 plural +101128 singular +singular +plural +singular +singular +101134 singular +singular +singular +101138 singular +plural +singular +101142 singular +singular +singular +plural +101147 plural +plural +plural +101151 plural +101153 plural +plural +101156 singular +101158 singular +plural +101161 plural +plural +plural +101165 singular +plural +singular +101169 singular +101172 singular +101174 plural +singular +singular +plural +singular +singular +plural +singular +101183 plural +101186 singular +singular +plural +plural +plural +plural +plural +plural +101196 singular +singular +singular +singular +singular +singular +singular +101204 plural +101206 singular +plural +plural +plural +101212 plural +101214 singular +singular +101217 singular +101219 singular +singular +plural +singular +singular +singular +101226 plural +101228 singular +101230 plural +101232 plural +singular +singular +singular +singular +101238 singular +101240 singular +singular +singular +101244 singular +101246 plural +plural +101249 plural +plural +plural +101254 singular +101256 singular +101259 singular +101261 plural +singular +singular +101265 singular +singular +singular +singular +101270 plural +101272 singular +101274 singular +101276 plural +101279 singular +101281 singular +101283 singular +101285 singular +singular +101289 plural +plural +101292 singular +101294 plural +101296 singular +101298 singular +singular +101301 plural +plural +plural +101305 plural +101307 singular +singular +plural +plural +101313 plural +plural +101316 singular +singular +101319 plural +101322 plural +plural +101325 singular +101327 plural +101329 plural +101331 plural +plural +101334 plural +101336 singular +singular +101340 plural +singular +singular +101345 plural +plural +plural +101350 plural +singular +singular +plural +101355 plural +101357 plural +plural +101361 plural +singular +101364 singular +singular +101368 singular +singular +101371 plural +101373 plural +plural +101376 plural +plural +plural +101380 plural +singular +singular +plural +singular +101386 singular +plural +singular +singular +101391 singular +101394 singular +101396 singular +singular +singular +singular +singular +singular +singular +101404 singular +101408 singular +plural +singular +plural +plural +plural +singular +singular +plural +plural +101419 singular +singular +singular +singular +101424 singular +singular +101427 plural +plural +plural +101431 singular +singular +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +101445 singular +singular +singular +singular +101450 singular +singular +singular +singular +singular +101456 plural +plural +singular +singular +101462 plural +101465 singular +101468 singular +singular +101471 singular +singular +singular +singular +singular +101477 plural +101479 plural +101481 singular +plural +plural +plural +plural +singular +singular +plural +singular +101491 singular +101493 singular +singular +plural +101497 singular +singular +singular +singular +singular +singular +101504 plural +plural +plural +101508 singular +plural +101511 singular +singular +singular +singular +singular +101517 singular +singular +singular +singular +101522 singular +plural +singular +singular +singular +101528 plural +plural +plural +plural +101533 singular +101537 plural +101539 singular +singular +plural +101543 singular +singular +101546 singular +singular +singular +101550 singular +singular +101554 plural +plural +plural +plural +plural +101560 plural +101562 singular +singular +singular +singular +101569 plural +101571 singular +101573 singular +singular +plural +101577 singular +plural +plural +singular +singular +101583 plural +101587 singular +101589 singular +plural +singular +101593 singular +plural +singular +singular +101599 singular +plural +101602 singular +singular +101605 singular +plural +101610 plural +singular +101613 singular +singular +101616 singular +101618 plural +singular +plural +singular +singular +singular +singular +101626 singular +101629 singular +101631 singular +101634 singular +101636 singular +singular +singular +101640 singular +101643 singular +singular +singular +101647 plural +singular +singular +singular +101653 singular +singular +101657 singular +singular +singular +singular +singular +singular +101664 singular +singular +101667 singular +101669 singular +singular +101672 plural +plural +101675 singular +singular +singular +101679 singular +singular +plural +plural +singular +plural +101687 singular +singular +singular +singular +101692 singular +singular +singular +101696 singular +101698 singular +singular +singular +101702 singular +singular +singular +101706 singular +101708 singular +singular +101711 plural +plural +101715 singular +singular +101718 singular +101720 singular +101722 plural +101724 plural +101726 singular +plural +101729 singular +101731 singular +101734 singular +101736 singular +101739 plural +plural +singular +101743 plural +101745 singular +101747 singular +101749 singular +plural +101753 singular +plural +plural +101757 singular +101760 singular +singular +singular +singular +singular +101766 plural +singular +plural +singular +101771 singular +singular +101775 singular +101777 singular +101779 plural +plural +singular +singular +101784 singular +singular +101787 singular +singular +singular +singular +plural +plural +singular +singular +plural +101797 singular +101799 singular +plural +plural +101803 singular +singular +plural +101808 singular +singular +singular +singular +101813 singular +101815 plural +101817 singular +singular +singular +101822 plural +plural +101825 singular +101827 plural +101829 singular +singular +101832 singular +101834 singular +101836 singular +101838 singular +plural +singular +singular +singular +singular +101845 plural +plural +101849 singular +plural +plural +101855 singular +singular +101858 singular +101861 singular +singular +101864 singular +singular +singular +singular +101871 plural +plural +plural +plural +plural +101877 singular +singular +plural +singular +plural +101883 singular +singular +101886 plural +plural +plural +101891 singular +plural +singular +singular +101896 singular +singular +singular +singular +singular +101902 plural +101905 plural +plural +101908 singular +plural +101911 plural +singular +singular +singular +singular +singular +singular +singular +101920 singular +101922 singular +plural +plural +singular +plural +101928 singular +plural +101931 singular +singular +singular +singular +singular +101937 singular +singular +singular +101941 singular +singular +singular +101945 singular +singular +singular +singular +101950 singular +101952 plural +plural +101955 plural +singular +singular +singular +singular +singular +singular +101963 singular +101965 singular +plural +plural +plural +101970 plural +singular +plural +singular +101975 singular +101977 plural +101979 plural +plural +101982 plural +101984 singular +singular +singular +101988 plural +plural +plural +singular +101993 singular +singular +singular +101999 singular +singular +102002 singular +102004 singular +singular +singular +102008 singular +singular +102012 singular +102014 plural +102016 singular +102018 plural +plural +singular +102023 plural +singular +102026 singular +singular +singular +plural +102031 singular +102033 plural +singular +102036 plural +plural +plural +102041 singular +singular +plural +singular +singular +102048 singular +102051 plural +102053 singular +singular +singular +singular +singular +singular +singular +102061 plural +102063 singular +singular +singular +102070 singular +102072 singular +plural +plural +102076 plural +singular +plural +102082 plural +plural +102085 plural +102088 singular +singular +102091 plural +singular +102096 singular +singular +singular +102100 plural +102102 singular +singular +plural +102106 plural +102108 singular +singular +102113 plural +singular +102117 plural +singular +102120 singular +singular +singular +102125 plural +102128 singular +plural +102131 plural +plural +102134 singular +singular +singular +102138 singular +102141 plural +singular +plural +102145 singular +singular +singular +singular +102150 singular +102152 singular +singular +singular +102156 singular +singular +singular +singular +102161 singular +102163 singular +102165 singular +102167 singular +singular +102170 singular +102172 singular +102174 singular +singular +102177 singular +singular +singular +singular +singular +singular +singular +singular +singular +102187 singular +singular +102190 singular +102192 singular +singular +singular +singular +singular +102200 singular +singular +102203 singular +102205 singular +102207 plural +plural +singular +plural +singular +plural +102214 plural +singular +singular +singular +singular +singular +singular +singular +102224 plural +singular +singular +plural +102229 plural +singular +102233 singular +singular +102236 plural +plural +plural +singular +102241 singular +plural +plural +plural +102251 singular +singular +plural +singular +singular +102257 singular +plural +102260 plural +102262 plural +singular +102266 singular +singular +102269 singular +singular +singular +singular +102274 singular +singular +102277 singular +102279 plural +102281 plural +102283 singular +plural +plural +singular +plural +102289 singular +singular +singular +102294 singular +singular +plural +plural +singular +singular +singular +singular +singular +102304 plural +102306 singular +plural +plural +plural +102311 plural +102313 singular +plural +102316 singular +singular +singular +102320 plural +102322 plural +singular +plural +102326 singular +plural +102329 singular +102331 singular +singular +singular +102335 singular +plural +plural +plural +102340 singular +singular +singular +singular +singular +102346 plural +102350 singular +singular +singular +102354 singular +singular +singular +102358 singular +singular +102361 singular +singular +102364 singular +singular +102367 singular +102369 singular +102371 singular +singular +plural +singular +102376 plural +singular +plural +singular +102381 singular +singular +singular +singular +singular +102387 plural +singular +102390 singular +singular +singular +singular +singular +102396 singular +102399 plural +plural +singular +singular +singular +singular +singular +102407 singular +singular +102410 singular +singular +singular +singular +plural +102416 singular +singular +plural +102420 singular +singular +102423 singular +singular +singular +singular +singular +102429 singular +102431 plural +plural +plural +singular +singular +102437 singular +singular +singular +102441 singular +102443 plural +plural +102447 plural +102451 singular +102453 singular +singular +singular +singular +singular +singular +102460 singular +singular +singular +singular +102465 singular +singular +singular +102469 plural +102472 plural +singular +singular +102476 singular +102478 singular +102480 singular +singular +102485 singular +singular +singular +102490 singular +102492 singular +singular +102495 singular +singular +singular +singular +102500 singular +singular +singular +plural +plural +102506 singular +102509 singular +singular +singular +singular +singular +singular +102516 plural +102518 singular +singular +102521 singular +singular +singular +102525 singular +102527 singular +singular +singular +singular +102532 singular +singular +102535 plural +plural +singular +singular +102540 singular +102543 singular +singular +singular +singular +102551 singular +singular +singular +singular +102556 singular +singular +singular +plural +plural +102562 singular +102564 singular +singular +102567 singular +singular +singular +singular +plural +plural +102575 singular +102577 singular +singular +102580 singular +plural +plural +102584 singular +singular +102587 singular +102589 singular +singular +singular +plural +singular +102595 singular +102598 singular +plural +102601 singular +singular +singular +102606 singular +plural +102609 plural +plural +singular +plural +102614 singular +singular +102617 singular +singular +102620 plural +102622 singular +plural +singular +plural +102627 singular +singular +102630 singular +102632 singular +singular +102635 singular +102637 singular +singular +102640 singular +102642 plural +plural +singular +plural +102647 singular +singular +102651 plural +singular +102654 singular +singular +singular +plural +102659 singular +plural +102662 singular +102664 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +102678 plural +102680 plural +singular +102683 singular +singular +singular +singular +102689 plural +102691 plural +plural +102694 plural +plural +singular +singular +plural +plural +102702 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +102715 singular +singular +102718 singular +102720 plural +102722 singular +singular +102725 singular +singular +plural +102730 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +102741 plural +plural +plural +singular +singular +singular +singular +102749 singular +102751 singular +102753 singular +102756 singular +102758 singular +102760 singular +102765 plural +singular +plural +plural +singular +102771 plural +plural +102775 plural +singular +102779 plural +102781 singular +102783 plural +102786 plural +plural +102789 plural +plural +plural +102795 plural +plural +plural +102799 plural +102801 plural +102803 plural +singular +plural +102809 singular +102811 plural +plural +102814 singular +102816 singular +102818 plural +plural +singular +plural +singular +singular +plural +102826 plural +102829 singular +singular +singular +singular +plural +singular +singular +102838 singular +singular +plural +102842 singular +singular +singular +plural +102847 plural +102850 singular +singular +plural +singular +102855 singular +singular +102859 singular +singular +plural +102863 singular +plural +102867 singular +plural +plural +plural +plural +plural +singular +102875 singular +plural +singular +singular +plural +plural +plural +102886 plural +plural +102889 plural +plural +102892 singular +102895 singular +102899 singular +102901 singular +102903 singular +102905 plural +plural +singular +plural +102910 singular +102912 singular +singular +singular +102916 plural +102918 singular +102921 plural +102925 singular +singular +singular +102929 singular +102931 plural +plural +singular +plural +102936 singular +102938 plural +singular +singular +102942 plural +102944 singular +102946 singular +singular +102949 plural +singular +102952 singular +singular +102955 singular +102957 singular +singular +102961 singular +102963 singular +singular +102966 singular +singular +102969 singular +102971 singular +singular +102974 singular +singular +plural +singular +plural +102980 plural +plural +102983 plural +102985 singular +102987 singular +singular +102990 singular +singular +singular +singular +singular +102996 singular +singular +singular +singular +singular +103002 singular +singular +103005 singular +singular +103008 singular +103010 singular +103012 plural +plural +singular +103016 singular +103018 singular +singular +singular +singular +singular +singular +plural +103026 singular +singular +singular +singular +103031 singular +singular +103034 singular +singular +103037 singular +103039 plural +plural +plural +singular +singular +103046 singular +singular +singular +singular +103051 plural +plural +103054 singular +singular +plural +plural +103061 singular +103063 singular +singular +singular +singular +103068 singular +103073 singular +singular +singular +singular +singular +singular +singular +103081 singular +singular +singular +103087 singular +singular +singular +singular +singular +103093 singular +singular +singular +singular +103098 plural +plural +103101 singular +plural +103104 singular +singular +singular +singular +plural +singular +singular +103112 plural +103116 singular +singular +plural +singular +singular +singular +singular +plural +103126 plural +singular +plural +singular +singular +103132 singular +103134 singular +singular +singular +103138 singular +singular +singular +singular +singular +103144 plural +103146 singular +plural +103149 singular +plural +singular +singular +plural +103155 plural +singular +103158 singular +singular +singular +plural +103164 singular +singular +103167 singular +103169 singular +singular +singular +103173 singular +103175 singular +singular +plural +103179 singular +singular +plural +singular +103185 singular +singular +103189 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +103201 plural +103203 singular +103205 singular +singular +plural +103209 singular +singular +plural +singular +singular +singular +103216 singular +singular +103219 plural +103221 singular +singular +103224 singular +singular +103227 singular +103229 singular +singular +singular +singular +singular +singular +103236 plural +plural +plural +plural +103241 plural +103243 singular +plural +plural +singular +103248 singular +singular +103251 singular +singular +singular +103256 singular +singular +plural +plural +103261 singular +singular +singular +singular +103266 singular +singular +103269 singular +singular +singular +103273 singular +103275 singular +103278 plural +plural +103281 plural +plural +103285 plural +plural +103288 singular +singular +plural +103292 singular +singular +103296 plural +103298 singular +singular +singular +103302 singular +singular +103305 singular +singular +103308 singular +singular +103311 plural +plural +singular +103317 plural +plural +plural +plural +103323 singular +plural +103326 plural +103328 singular +103330 plural +singular +plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +plural +singular +singular +plural +plural +plural +plural +plural +plural +plural +103354 plural +plural +plural +plural +singular +plural +103361 singular +103363 plural +plural +plural +plural +singular +singular +103370 plural +103372 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +103387 plural +plural +103390 singular +singular +103393 plural +singular +singular +singular +singular +singular +plural +103401 plural +plural +103404 plural +plural +103407 plural +singular +singular +103411 plural +103413 plural +plural +plural +plural +plural +plural +plural +103422 singular +singular +103425 singular +singular +plural +plural +plural +plural +singular +singular +103434 singular +singular +singular +singular +103440 singular +singular +plural +plural +plural +plural +103448 plural +singular +singular +singular +singular +103455 singular +singular +103458 singular +singular +singular +singular +singular +103464 singular +singular +singular +singular +singular +103472 singular +singular +singular +singular +singular +103480 singular +singular +103483 singular +singular +singular +singular +singular +103489 singular +singular +singular +singular +singular +singular +singular +103497 plural +plural +103500 plural +singular +103503 singular +103506 singular +singular +singular +singular +103511 singular +103513 singular +singular +103516 singular +singular +singular +103520 singular +singular +singular +singular +103525 singular +singular +103528 singular +singular +103531 singular +singular +singular +singular +singular +103537 singular +singular +plural +103541 plural +103543 singular +singular +plural +103547 plural +103551 singular +plural +plural +singular +singular +103557 plural +103561 plural +plural +singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +plural +plural +103577 singular +plural +plural +plural +103583 singular +singular +singular +singular +singular +103589 plural +103592 plural +plural +plural +singular +plural +103598 plural +plural +103603 singular +singular +singular +plural +103608 singular +103610 singular +103615 singular +singular +singular +singular +plural +singular +singular +103623 singular +singular +singular +singular +singular +singular +103630 singular +singular +103633 singular +103635 singular +103637 singular +singular +103640 plural +singular +singular +singular +plural +singular +103647 singular +103649 plural +103652 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +103663 singular +plural +plural +singular +singular +103669 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +103681 singular +singular +plural +plural +103686 singular +singular +singular +singular +103691 singular +singular +plural +plural +plural +plural +103698 singular +103700 plural +103702 singular +singular +plural +singular +103707 singular +103709 singular +singular +plural +103713 singular +singular +singular +singular +singular +singular +103720 singular +singular +singular +plural +singular +singular +singular +singular +plural +103730 singular +singular +singular +103734 plural +plural +103737 singular +103739 singular +plural +103742 singular +103744 singular +singular +103747 plural +plural +103750 plural +103752 singular +103754 singular +singular +plural +103758 singular +103760 singular +singular +103763 singular +103765 singular +singular +singular +singular +singular +103771 singular +singular +singular +singular +singular +singular +singular +plural +103780 singular +singular +103783 singular +plural +singular +singular +103788 singular +singular +singular +singular +singular +plural +plural +103796 singular +singular +singular +singular +singular +singular +singular +103804 plural +103806 singular +singular +103809 singular +singular +plural +singular +singular +singular +singular +singular +103818 singular +singular +singular +singular +singular +103824 singular +103826 singular +singular +singular +plural +plural +103832 plural +plural +103835 singular +singular +plural +103839 plural +plural +103842 plural +103844 singular +singular +103847 singular +103849 singular +103851 plural +plural +103854 singular +singular +plural +plural +singular +103860 singular +singular +singular +singular +singular +103866 singular +103869 singular +singular +singular +plural +plural +plural +103876 singular +singular +103879 singular +103881 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +plural +103893 singular +103895 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +103910 singular +singular +singular +103914 singular +singular +singular +singular +103919 singular +singular +singular +singular +103924 plural +singular +103927 singular +singular +singular +103931 singular +singular +singular +103935 plural +plural +plural +103939 singular +singular +103942 plural +singular +singular +103946 plural +plural +singular +103950 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +103966 singular +103968 singular +singular +plural +plural +plural +singular +singular +plural +103977 singular +103979 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +103996 plural +plural +103999 singular +singular +singular +singular +singular +singular +singular +104007 plural +plural +plural +104011 singular +singular +singular +singular +singular +singular +singular +singular +singular +104021 singular +singular +singular +singular +104026 plural +104028 singular +104030 singular +singular +104033 plural +plural +104036 singular +singular +104039 singular +104041 singular +104043 singular +104045 singular +singular +singular +104049 singular +104051 singular +singular +singular +104057 singular +singular +104060 plural +singular +104063 plural +plural +singular +104067 singular +singular +singular +104071 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +104085 plural +singular +104088 plural +plural +plural +plural +plural +104094 plural +plural +plural +104098 plural +104100 plural +104102 singular +singular +singular +singular +singular +104108 singular +singular +singular +singular +singular +singular +singular +singular +singular +104118 singular +104120 plural +plural +singular +singular +104125 plural +104127 plural +plural +plural +104132 plural +plural +singular +singular +plural +plural +plural +plural +singular +singular +104143 plural +plural +104146 plural +plural +singular +singular +104152 plural +plural +104155 singular +singular +singular +singular +104160 singular +104162 singular +singular +singular +singular +singular +singular +plural +104170 plural +plural +plural +plural +plural +singular +singular +singular +singular +plural +plural +104182 singular +104184 singular +104186 plural +plural +104189 singular +singular +104192 singular +104194 plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +104205 singular +104207 plural +104209 singular +singular +104212 singular +singular +plural +plural +104217 singular +104219 singular +104222 plural +singular +singular +singular +104228 plural +104231 singular +singular +104234 plural +singular +singular +plural +104239 singular +singular +104242 plural +plural +plural +singular +singular +singular +104250 plural +plural +104253 plural +104256 plural +plural +plural +104260 singular +plural +plural +singular +104265 singular +singular +singular +104269 singular +singular +104272 plural +singular +singular +singular +104277 singular +plural +singular +singular +singular +singular +104284 plural +plural +plural +singular +singular +singular +104291 plural +104293 plural +104295 singular +singular +104300 singular +singular +plural +plural +104305 plural +singular +plural +104310 singular +singular +singular +singular +104315 singular +singular +singular +singular +plural +singular +singular +plural +plural +singular +104326 singular +singular +singular +singular +singular +singular +singular +104334 singular +singular +singular +singular +singular +plural +plural +104342 plural +singular +104345 plural +104347 singular +104349 singular +104351 singular +singular +singular +singular +singular +104357 singular +plural +plural +104361 singular +singular +singular +singular +104366 singular +singular +singular +singular +singular +104372 singular +104374 singular +singular +singular +plural +plural +singular +104381 singular +plural +104386 singular +plural +singular +singular +plural +plural +104393 singular +singular +104396 singular +singular +104401 plural +plural +104404 plural +104406 plural +plural +plural +plural +104411 plural +singular +singular +plural +104416 singular +singular +plural +plural +104421 plural +singular +singular +singular +singular +singular +104428 singular +singular +singular +singular +singular +104434 singular +singular +104437 singular +104439 singular +104441 plural +plural +104444 singular +singular +singular +104448 singular +singular +104451 singular +singular +singular +singular +singular +singular +singular +104459 plural +plural +plural +104464 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +104475 plural +104478 singular +singular +singular +singular +singular +104484 singular +104486 singular +104488 singular +plural +plural +104492 singular +singular +singular +104496 singular +singular +singular +singular +singular +plural +plural +104504 singular +plural +plural +plural +plural +104511 singular +plural +plural +plural +singular +104517 plural +104519 singular +104521 plural +plural +plural +104525 plural +104527 plural +singular +singular +104531 singular +singular +104534 singular +singular +singular +singular +singular +104540 singular +singular +singular +singular +singular +singular +singular +singular +singular +104550 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +plural +plural +104567 singular +singular +singular +singular +singular +104574 singular +singular +singular +singular +singular +singular +singular +104582 plural +plural +104585 singular +singular +singular +plural +plural +singular +104592 singular +104594 plural +plural +104597 plural +plural +104600 plural +plural +104603 singular +singular +singular +singular +singular +singular +singular +104611 singular +plural +plural +singular +singular +104617 singular +singular +singular +singular +singular +plural +104624 singular +plural +singular +singular +104629 singular +104631 singular +104633 singular +singular +singular +104637 singular +104641 plural +plural +singular +104645 plural +singular +singular +singular +plural +singular +104652 singular +plural +plural +singular +104657 singular +singular +104660 singular +singular +singular +104664 plural +104667 singular +singular +104670 singular +plural +104673 singular +singular +singular +singular +singular +singular +104681 singular +singular +singular +104685 singular +104687 singular +104689 singular +singular +104692 singular +singular +104695 plural +plural +plural +104699 singular +plural +104702 plural +104704 plural +104707 plural +plural +plural +singular +singular +singular +104714 singular +104716 singular +104718 singular +104721 singular +singular +singular +singular +singular +singular +singular +104729 plural +104731 singular +singular +singular +singular +singular +104737 singular +singular +104742 plural +plural +plural +104746 plural +104748 singular +singular +singular +singular +104753 plural +singular +singular +singular +104758 singular +singular +104762 singular +singular +104765 plural +plural +plural +singular +singular +plural +plural +104774 singular +plural +singular +singular +singular +104780 singular +104783 singular +singular +singular +plural +104788 singular +singular +104791 singular +104793 singular +plural +plural +104797 singular +plural +104800 singular +singular +singular +singular +104805 singular +singular +singular +singular +singular +singular +104812 singular +singular +104816 plural +104818 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +104832 singular +plural +singular +104836 plural +104839 plural +104842 plural +104844 singular +singular +plural +singular +singular +singular +104851 singular +singular +singular +singular +singular +singular +104858 singular +singular +104861 singular +singular +singular +singular +plural +plural +plural +104869 singular +singular +singular +singular +104877 singular +104879 plural +plural +plural +singular +singular +singular +singular +singular +singular +104889 singular +singular +104892 plural +plural +plural +104896 singular +plural +plural +104900 singular +singular +104903 plural +plural +104906 plural +plural +104909 plural +plural +104912 plural +plural +104915 plural +104917 singular +singular +plural +plural +104922 singular +singular +104925 singular +singular +singular +singular +singular +104931 plural +plural +plural +104935 singular +singular +singular +singular +104940 singular +singular +singular +singular +singular +singular +104947 singular +singular +104950 singular +singular +singular +singular +singular +singular +104958 plural +plural +plural +104962 plural +singular +singular +singular +singular +104968 singular +singular +plural +plural +104973 singular +104975 singular +singular +singular +singular +104980 plural +104982 singular +plural +plural +plural +104987 singular +singular +singular +singular +singular +singular +104994 singular +singular +singular +singular +singular +105000 singular +105002 singular +singular +singular +singular +105007 singular +105009 singular +singular +singular +singular +singular +singular +singular +singular +singular +105019 singular +singular +105022 singular +105024 singular +singular +105027 singular +105029 singular +105031 plural +105035 plural +plural +singular +105039 singular +singular +singular +plural +plural +plural +singular +singular +plural +singular +singular +singular +singular +105053 singular +singular +singular +singular +105058 plural +105060 singular +singular +singular +singular +plural +plural +plural +plural +plural +singular +singular +105072 singular +singular +singular +105076 singular +105078 plural +105081 plural +singular +singular +105086 singular +plural +105090 singular +plural +105093 singular +singular +105096 singular +singular +105099 plural +105101 singular +singular +singular +singular +singular +singular +singular +singular +105110 plural +plural +singular +singular +105116 singular +singular +singular +singular +plural +105123 singular +singular +singular +singular +105128 singular +singular +105131 singular +105133 singular +singular +singular +105137 plural +singular +singular +plural +singular +singular +105144 singular +105146 singular +105148 plural +plural +plural +plural +105154 plural +singular +singular +105158 singular +105160 singular +plural +105163 plural +singular +singular +singular +singular +singular +105170 singular +105173 singular +singular +plural +plural +plural +singular +singular +105181 singular +105183 singular +singular +singular +singular +singular +singular +105190 singular +singular +plural +105194 singular +105197 singular +singular +105200 singular +singular +singular +105204 singular +singular +plural +plural +105210 plural +singular +singular +singular +singular +singular +singular +105218 singular +plural +105221 singular +singular +singular +singular +105226 singular +105228 singular +105230 singular +105232 singular +singular +105235 plural +105237 singular +singular +105240 plural +105242 plural +plural +plural +plural +plural +105249 singular +singular +105252 singular +singular +plural +105256 plural +plural +singular +singular +105261 plural +plural +105264 plural +105266 singular +105269 singular +singular +singular +plural +105274 singular +singular +105277 plural +singular +105280 singular +singular +singular +105284 singular +singular +105287 singular +105289 singular +singular +105292 singular +105294 singular +105296 plural +105298 singular +plural +105301 singular +105303 singular +105305 singular +plural +105308 singular +105311 singular +105313 singular +plural +plural +105317 singular +singular +105320 singular +105322 singular +singular +singular +singular +105327 singular +singular +105330 singular +singular +singular +singular +105335 singular +singular +plural +singular +plural +plural +105343 plural +singular +singular +singular +singular +singular +105350 plural +plural +singular +singular +105356 plural +plural +plural +105360 plural +105362 singular +105365 singular +105367 singular +105369 plural +singular +plural +105373 singular +singular +singular +singular +105378 singular +singular +105381 singular +105383 singular +plural +singular +singular +singular +singular +singular +105392 plural +plural +plural +plural +plural +singular +singular +105402 plural +105404 plural +105406 plural +105408 plural +singular +singular +105414 plural +plural +plural +105418 singular +singular +singular +105422 singular +singular +singular +singular +singular +105428 singular +singular +singular +singular +105433 singular +105435 plural +plural +105438 singular +singular +singular +singular +105443 plural +105446 plural +105449 plural +105452 plural +plural +singular +singular +105457 plural +plural +plural +plural +105462 singular +105464 plural +plural +105467 plural +singular +singular +singular +singular +singular +105475 plural +singular +105478 singular +singular +singular +105482 plural +105484 singular +plural +plural +plural +105489 plural +105491 plural +plural +plural +105495 plural +singular +singular +plural +singular +singular +plural +105504 plural +105506 singular +singular +singular +plural +singular +singular +singular +singular +105515 singular +plural +plural +105519 singular +singular +plural +plural +plural +plural +plural +105527 singular +singular +105530 singular +singular +singular +singular +singular +105537 singular +singular +singular +singular +singular +singular +singular +singular +singular +105548 singular +singular +singular +singular +singular +105555 plural +plural +plural +plural +105560 singular +plural +plural +plural +plural +plural +105568 singular +singular +singular +singular +singular +105574 singular +singular +105577 singular +105579 singular +singular +singular +singular +singular +singular +singular +105587 singular +105589 singular +singular +singular +singular +singular +singular +105596 singular +singular +105599 singular +105601 singular +plural +plural +105606 singular +singular +105609 singular +105611 plural +105613 plural +plural +105616 plural +plural +plural +105620 plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +105631 singular +105633 singular +singular +singular +singular +105638 singular +105640 singular +singular +105644 singular +singular +singular +singular +105649 plural +plural +singular +singular +singular +105655 singular +singular +singular +singular +singular +105661 singular +singular +105664 singular +105666 singular +singular +singular +105670 plural +plural +105674 singular +singular +singular +singular +singular +singular +singular +105682 singular +singular +105685 singular +105688 singular +singular +105692 plural +plural +105695 singular +singular +singular +singular +singular +105701 singular +105703 singular +105705 singular +singular +105708 singular +singular +singular +plural +plural +plural +plural +plural +plural +105718 singular +105720 singular +singular +singular +singular +singular +singular +singular +105728 singular +singular +singular +singular +singular +singular +105735 singular +105738 singular +singular +105741 singular +singular +105744 singular +singular +105747 plural +plural +105750 plural +plural +plural +plural +105755 plural +plural +105758 singular +105760 singular +singular +plural +plural +plural +plural +105767 singular +plural +105770 singular +105772 singular +105774 singular +singular +singular +plural +105779 singular +singular +105783 singular +105785 plural +105788 plural +singular +plural +singular +singular +singular +singular +105796 singular +105798 singular +plural +105801 singular +singular +105805 plural +plural +105809 singular +singular +singular +singular +singular +singular +105816 singular +105818 singular +105820 singular +105822 plural +plural +plural +plural +plural +105828 plural +plural +singular +singular +plural +105835 plural +105837 plural +singular +singular +singular +105842 plural +105844 singular +105846 singular +105848 singular +singular +singular +plural +105853 singular +105856 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +105867 singular +105869 plural +105872 plural +plural +singular +singular +105877 singular +plural +singular +singular +105883 singular +105885 singular +105888 plural +plural +105891 plural +plural +105894 plural +plural +singular +singular +singular +105900 plural +plural +singular +singular +105905 plural +plural +105908 singular +plural +singular +singular +singular +singular +105915 plural +105918 singular +singular +singular +singular +105923 plural +plural +105927 plural +plural +singular +singular +plural +105933 singular +105935 plural +singular +singular +singular +singular +105941 plural +plural +plural +105945 singular +singular +singular +singular +singular +105951 plural +plural +singular +singular +singular +singular +105958 singular +plural +plural +plural +plural +singular +singular +plural +plural +105969 plural +singular +singular +singular +singular +105975 singular +singular +singular +singular +singular +singular +singular +singular +105984 singular +singular +105987 singular +plural +105990 singular +singular +105993 singular +105996 singular +plural +105999 singular +singular +106002 singular +106004 plural +plural +plural +106009 singular +106011 singular +singular +singular +106015 singular +singular +singular +singular +106020 singular +106022 singular +singular +singular +singular +106027 singular +singular +106030 singular +106033 singular +singular +106036 singular +singular +106041 plural +106043 plural +plural +106046 singular +singular +singular +plural +singular +plural +singular +singular +singular +singular +106057 singular +singular +106060 singular +singular +singular +106064 plural +106066 singular +singular +106069 plural +plural +106072 plural +106074 singular +plural +plural +plural +plural +plural +singular +106082 singular +106084 singular +106086 singular +singular +106089 singular +singular +singular +singular +singular +106095 plural +plural +plural +singular +singular +plural +singular +singular +106104 singular +singular +106107 singular +plural +singular +singular +plural +plural +plural +106115 singular +singular +plural +plural +106120 plural +106122 plural +106124 plural +plural +singular +106128 singular +106130 singular +singular +plural +106134 singular +singular +singular +singular +singular +singular +singular +106142 singular +singular +singular +plural +106148 singular +singular +singular +106152 plural +plural +106155 singular +singular +singular +singular +106160 singular +singular +plural +106164 singular +singular +106167 singular +singular +singular +106171 singular +106173 singular +singular +singular +106177 singular +singular +106180 plural +singular +singular +singular +106185 singular +singular +singular +106189 singular +singular +singular +singular +106195 plural +plural +106198 singular +106200 singular +106202 singular +singular +plural +106207 plural +plural +singular +106212 singular +singular +106215 singular +singular +singular +plural +singular +singular +singular +plural +plural +plural +106226 singular +singular +singular +singular +106231 singular +plural +plural +106235 plural +singular +singular +106239 singular +singular +106242 singular +singular +plural +106249 singular +106251 singular +106253 singular +singular +106256 singular +106258 plural +plural +plural +106262 plural +plural +106265 plural +106267 singular +singular +plural +singular +singular +singular +106274 singular +singular +106277 singular +106279 singular +singular +106282 plural +singular +106285 plural +106287 plural +106289 singular +106292 singular +singular +singular +singular +106297 plural +plural +singular +plural +106302 singular +106305 singular +singular +singular +106309 plural +plural +plural +106313 plural +plural +plural +plural +106318 singular +plural +plural +plural +singular +106326 singular +singular +singular +singular +106332 plural +106335 singular +106337 singular +106339 plural +106342 singular +singular +singular +plural +106347 plural +106349 singular +plural +106353 singular +singular +singular +singular +106358 plural +106360 singular +singular +singular +plural +106366 plural +singular +106369 plural +plural +singular +106373 singular +106376 singular +singular +106379 singular +106381 singular +singular +singular +106386 singular +singular +106390 singular +106392 singular +106394 singular +singular +singular +106398 singular +106400 singular +plural +singular +106404 singular +singular +singular +singular +singular +106410 singular +singular +106413 singular +singular +106417 singular +singular +106421 singular +singular +106427 singular +singular +106430 singular +singular +singular +106435 singular +106438 singular +106440 singular +singular +106443 singular +106445 singular +106447 singular +106450 singular +106453 singular +singular +singular +singular +singular +106459 singular +singular +106462 singular +106464 singular +106466 plural +106468 singular +singular +singular +106472 singular +106476 singular +106479 singular +106481 singular +106483 singular +106485 singular +singular +singular +106489 plural +106491 singular +singular +singular +106495 singular +106497 singular +plural +plural +106501 singular +plural +singular +106505 singular +singular +singular +106509 singular +singular +plural +singular +106514 singular +singular +106517 singular +106519 singular +singular +singular +106524 plural +singular +106527 singular +singular +singular +singular +plural +106534 singular +106536 singular +plural +106539 singular +singular +plural +106543 plural +106545 plural +106547 singular +singular +singular +singular +plural +singular +singular +singular +singular +106558 plural +106560 singular +106562 plural +plural +singular +singular +plural +singular +singular +106570 plural +singular +106573 singular +106575 singular +106577 plural +singular +singular +106581 singular +106584 singular +106586 singular +106590 singular +106592 singular +106594 plural +singular +singular +singular +singular +plural +106601 singular +106604 plural +106606 singular +106609 singular +singular +106612 singular +106614 singular +singular +singular +106618 singular +singular +singular +106622 singular +plural +106625 plural +plural +singular +singular +singular +106631 singular +singular +plural +singular +singular +singular +plural +plural +singular +singular +plural +singular +106644 singular +106647 singular +106649 singular +singular +plural +plural +plural +plural +106656 plural +plural +plural +plural +106662 plural +plural +plural +singular +plural +106668 plural +singular +106672 singular +singular +singular +106676 singular +singular +singular +106680 singular +singular +singular +106684 plural +singular +106687 singular +singular +singular +singular +singular +106693 singular +plural +singular +106697 singular +singular +106700 singular +singular +singular +singular +singular +106706 singular +106708 singular +singular +106712 singular +singular +singular +singular +106717 singular +singular +singular +singular +singular +106723 singular +singular +106727 singular +singular +singular +singular +singular +singular +plural +106735 plural +106737 plural +106739 singular +singular +singular +106743 singular +singular +singular +106747 singular +singular +singular +106751 plural +singular +106755 plural +106759 singular +singular +singular +singular +106765 singular +106768 singular +singular +singular +106772 singular +106774 singular +singular +plural +singular +plural +106780 singular +singular +singular +singular +106785 plural +106787 singular +106790 singular +106793 singular +singular +plural +plural +106798 plural +106800 plural +106802 plural +plural +106805 plural +plural +singular +plural +singular +singular +singular +106813 singular +106815 plural +plural +106818 plural +106820 singular +singular +singular +plural +106825 singular +singular +106828 singular +singular +106833 singular +singular +106837 singular +singular +106842 singular +106844 singular +singular +106847 singular +singular +singular +plural +singular +106853 singular +plural +plural +106857 singular +singular +106860 plural +plural +106863 plural +singular +106866 singular +106868 singular +singular +singular +106873 plural +106875 singular +singular +singular +plural +106880 plural +106882 singular +singular +singular +singular +106887 plural +106889 plural +singular +106892 plural +plural +plural +plural +plural +106898 plural +singular +singular +106902 singular +singular +singular +plural +106908 singular +singular +106911 singular +singular +106914 singular +singular +106918 singular +singular +106923 singular +plural +106926 singular +106929 singular +106931 singular +106934 singular +106936 singular +106938 singular +singular +singular +singular +singular +106944 singular +106946 singular +singular +106949 plural +singular +106952 singular +singular +singular +singular +106958 plural +106960 singular +singular +plural +plural +106965 singular +106967 plural +106969 singular +106972 singular +singular +singular +106976 singular +singular +singular +singular +106982 singular +singular +106986 singular +106989 singular +106991 singular +singular +106995 singular +singular +106998 plural +singular +107001 plural +singular +singular +singular +107006 plural +singular +107009 singular +107011 singular +singular +107014 plural +plural +plural +plural +107020 singular +singular +singular +107024 singular +singular +singular +singular +singular +107030 singular +singular +plural +singular +singular +107036 singular +singular +plural +singular +singular +singular +plural +107044 singular +plural +plural +107048 plural +107050 singular +107052 singular +107054 plural +singular +plural +plural +plural +plural +plural +plural +plural +plural +singular +singular +107067 plural +singular +singular +plural +plural +singular +singular +plural +107076 plural +107078 singular +singular +107083 singular +plural +107086 singular +singular +singular +107091 singular +107093 singular +singular +singular +107098 singular +singular +107101 singular +singular +107104 singular +singular +singular +singular +singular +107110 plural +107112 singular +singular +107115 singular +singular +singular +singular +107120 singular +singular +107123 singular +singular +singular +107127 plural +singular +singular +plural +plural +singular +107134 singular +singular +singular +107142 singular +plural +singular +107147 singular +singular +singular +singular +singular +singular +singular +singular +singular +107157 singular +plural +plural +singular +107162 singular +plural +107165 singular +singular +107168 singular +107170 singular +singular +107173 singular +singular +singular +107177 singular +107179 singular +107181 singular +singular +singular +107185 singular +singular +107188 singular +singular +singular +107192 singular +107194 singular +singular +singular +singular +singular +107200 singular +plural +singular +singular +singular +singular +singular +107209 singular +107211 singular +singular +singular +107215 plural +107219 singular +107222 singular +107224 singular +107227 singular +107229 singular +107231 singular +107233 singular +singular +plural +singular +107238 singular +singular +107242 singular +107244 plural +107246 singular +107248 plural +107250 singular +107252 singular +singular +107255 singular +singular +singular +107259 singular +singular +singular +107263 singular +singular +107266 plural +plural +singular +plural +107272 singular +107274 plural +107276 singular +singular +singular +plural +singular +107283 singular +plural +singular +singular +107288 plural +plural +singular +plural +107293 plural +plural +107296 plural +107298 plural +singular +plural +107302 plural +plural +plural +107306 singular +plural +107311 singular +singular +plural +plural +singular +singular +singular +singular +plural +singular +singular +singular +plural +singular +singular +singular +singular +107329 singular +singular +107332 singular +singular +plural +plural +plural +plural +plural +107340 plural +singular +singular +107344 plural +singular +107347 singular +107349 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +107368 singular +singular +singular +107372 singular +107375 singular +plural +plural +107379 plural +singular +plural +107383 plural +singular +107386 singular +singular +107389 plural +107391 singular +plural +singular +singular +107396 singular +singular +singular +singular +107402 singular +107404 singular +107406 singular +singular +singular +singular +plural +plural +107413 singular +singular +plural +singular +107419 singular +107421 plural +plural +plural +singular +plural +plural +plural +107429 singular +singular +plural +107433 singular +107436 singular +plural +singular +singular +plural +singular +plural +plural +singular +singular +107447 singular +plural +107451 singular +singular +singular +107455 singular +singular +107458 singular +plural +plural +plural +singular +107464 singular +singular +107467 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +107480 plural +plural +plural +107484 singular +singular +plural +singular +singular +plural +singular +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +107503 singular +singular +107507 singular +singular +plural +plural +plural +107513 plural +107515 plural +107517 plural +107519 plural +107521 singular +plural +plural +107525 singular +singular +singular +singular +singular +107531 plural +107533 singular +107535 singular +107540 plural +singular +107543 singular +107546 singular +107548 plural +107550 plural +107554 singular +singular +107557 singular +singular +107560 plural +singular +singular +107564 singular +107567 singular +107571 singular +107574 plural +singular +107584 plural +singular +107587 singular +singular +singular +107592 plural +plural +singular +singular +singular +107598 plural +plural +107601 plural +107604 singular +107606 singular +107608 singular +singular +singular +singular +singular +singular +singular +107616 singular +singular +107619 singular +107622 plural +plural +107627 singular +107633 singular +singular +singular +plural +107639 singular +singular +singular +107643 singular +singular +singular +singular +singular +107649 singular +plural +107652 singular +plural +107655 singular +singular +singular +107659 singular +plural +107662 plural +singular +singular +singular +singular +singular +singular +singular +107671 singular +singular +singular +singular +singular +singular +plural +107679 singular +singular +singular +107683 singular +107685 singular +singular +107688 singular +singular +107691 singular +plural +singular +singular +107696 plural +plural +plural +plural +107701 plural +singular +singular +107705 singular +singular +plural +plural +plural +107711 singular +plural +plural +plural +plural +plural +plural +107720 plural +107722 singular +singular +singular +singular +singular +singular +singular +singular +singular +107732 singular +singular +plural +singular +singular +singular +singular +107740 singular +singular +107743 singular +singular +singular +plural +107748 plural +plural +107751 plural +plural +107754 singular +plural +singular +107758 singular +107760 singular +singular +plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +107774 plural +plural +plural +singular +singular +plural +107781 singular +singular +107784 singular +singular +singular +plural +107789 plural +plural +plural +107793 singular +singular +singular +singular +plural +107799 plural +plural +singular +plural +107804 singular +singular +singular +singular +singular +singular +singular +singular +107813 plural +107817 singular +singular +singular +singular +singular +107823 singular +107827 plural +107829 singular +singular +plural +107833 plural +singular +singular +singular +singular +107839 singular +107841 plural +107843 singular +singular +singular +singular +plural +singular +singular +singular +107852 plural +singular +singular +singular +singular +107858 singular +plural +singular +plural +singular +107864 singular +107866 singular +107868 plural +107870 singular +singular +plural +107874 plural +107876 plural +plural +107879 plural +107881 plural +singular +singular +singular +singular +singular +107888 singular +singular +107891 singular +singular +107895 singular +singular +107898 singular +singular +107901 singular +singular +singular +plural +107906 plural +singular +singular +singular +singular +107912 singular +singular +plural +107916 singular +singular +singular +singular +singular +107922 singular +singular +107925 singular +107927 singular +plural +singular +singular +singular +singular +plural +107935 singular +singular +singular +singular +plural +plural +107942 singular +singular +singular +singular +plural +107948 singular +singular +singular +singular +107953 singular +107955 singular +singular +singular +singular +singular +singular +singular +107963 singular +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +107983 singular +singular +plural +plural +107988 plural +plural +107992 singular +singular +plural +plural +107997 plural +plural +108000 plural +108002 plural +108004 plural +108006 plural +plural +plural +108010 singular +108013 singular +singular +108016 singular +singular +108019 plural +108021 plural +plural +108024 singular +singular +108027 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +108040 plural +plural +108043 singular +singular +108046 plural +singular +108049 singular +108051 singular +singular +singular +singular +108058 singular +108060 plural +plural +108063 singular +singular +108066 singular +singular +singular +singular +singular +108072 singular +108074 plural +108076 singular +singular +108079 plural +108081 plural +plural +108084 plural +108086 plural +plural +108089 plural +singular +singular +108093 plural +plural +plural +plural +108099 singular +108101 singular +singular +singular +singular +singular +108107 singular +singular +108110 plural +plural +108113 plural +108115 plural +108117 singular +108120 plural +singular +singular +plural +108125 plural +108128 plural +108130 singular +singular +singular +singular +singular +plural +singular +singular +108139 singular +singular +singular +108143 singular +singular +singular +singular +singular +singular +singular +108151 singular +108153 plural +plural +108156 plural +108158 singular +plural +plural +plural +plural +singular +singular +108166 singular +singular +singular +108170 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +108182 singular +singular +singular +singular +singular +singular +singular +108190 plural +108192 singular +singular +singular +singular +singular +singular +singular +singular +108201 plural +plural +108205 plural +plural +108209 singular +plural +plural +singular +plural +singular +singular +singular +108218 singular +singular +singular +singular +singular +singular +singular +singular +108227 plural +plural +singular +singular +singular +108233 plural +singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +108245 plural +singular +singular +108249 singular +singular +108252 plural +singular +singular +singular +108257 singular +108259 singular +108261 singular +singular +108264 singular +singular +singular +singular +singular +108270 singular +108272 singular +108274 singular +plural +108277 singular +singular +singular +108281 plural +108283 plural +108285 singular +108287 plural +108289 plural +singular +singular +singular +108294 singular +108296 plural +plural +plural +plural +plural +108302 singular +108305 singular +singular +singular +singular +singular +singular +108312 singular +singular +singular +singular +singular +singular +108319 singular +plural +plural +plural +plural +singular +singular +108327 singular +plural +singular +singular +108332 singular +plural +singular +108336 singular +108340 singular +singular +singular +108344 singular +singular +108347 plural +singular +singular +108351 singular +plural +singular +singular +108356 singular +singular +singular +108360 singular +singular +plural +108365 plural +singular +singular +singular +singular +singular +108372 singular +plural +plural +108376 plural +108378 singular +108380 plural +singular +singular +108384 plural +plural +108387 singular +plural +108390 singular +singular +singular +singular +plural +108396 singular +singular +108399 singular +singular +108402 singular +singular +plural +plural +108407 plural +plural +singular +singular +108414 singular +108417 singular +singular +singular +singular +singular +singular +singular +108426 plural +plural +108429 singular +singular +singular +singular +singular +singular +singular +108437 singular +108439 singular +108441 plural +singular +singular +108445 singular +singular +singular +singular +singular +singular +108452 singular +singular +singular +singular +plural +singular +108459 singular +singular +108462 singular +108464 plural +108466 singular +singular +singular +singular +singular +singular +singular +singular +singular +108476 plural +108478 plural +plural +plural +plural +plural +108484 singular +singular +singular +singular +plural +singular +plural +108492 singular +singular +plural +plural +plural +plural +singular +singular +108501 plural +singular +plural +plural +singular +singular +singular +plural +108510 singular +singular +108513 singular +singular +singular +singular +singular +singular +singular +plural +plural +108523 plural +plural +singular +108527 singular +singular +plural +108531 singular +108534 singular +plural +singular +108538 singular +108541 singular +108544 singular +singular +108547 singular +108549 plural +plural +singular +singular +plural +plural +108556 singular +singular +singular +singular +singular +plural +singular +singular +108565 singular +108567 singular +plural +plural +plural +singular +singular +108574 singular +108576 singular +singular +singular +singular +singular +108583 singular +singular +singular +108587 singular +singular +singular +singular +108592 plural +plural +108595 plural +singular +108598 singular +singular +singular +singular +singular +singular +108605 plural +108607 singular +108609 plural +plural +singular +singular +singular +108615 plural +108617 singular +plural +108620 singular +108622 singular +108624 singular +plural +singular +plural +108629 singular +singular +singular +108633 plural +plural +108636 plural +plural +plural +plural +singular +108642 plural +singular +singular +108646 singular +108648 singular +108650 singular +singular +108654 singular +singular +108657 singular +singular +singular +108662 plural +singular +singular +plural +108667 plural +108669 singular +singular +singular +singular +108674 singular +singular +singular +plural +108679 plural +108681 plural +108683 singular +singular +108686 plural +108688 singular +singular +plural +singular +108693 singular +singular +108696 singular +singular +108699 singular +singular +singular +singular +singular +plural +108707 plural +108709 singular +plural +108712 singular +108714 plural +plural +plural +plural +108719 singular +singular +singular +singular +singular +singular +singular +108727 singular +singular +singular +singular +singular +108733 plural +singular +singular +singular +singular +singular +108740 plural +108742 plural +plural +108746 plural +108748 plural +108751 plural +108753 plural +plural +plural +singular +singular +singular +singular +singular +108762 singular +singular +plural +108766 plural +108768 plural +plural +singular +singular +singular +108774 plural +plural +singular +108778 plural +singular +singular +singular +singular +108784 singular +108786 singular +singular +singular +singular +108792 singular +singular +108795 singular +singular +108798 singular +singular +singular +singular +singular +108804 plural +108807 plural +singular +108810 plural +108812 plural +singular +singular +plural +108817 plural +plural +singular +singular +singular +singular +singular +plural +plural +108827 plural +plural +108830 singular +108832 singular +singular +singular +108837 singular +singular +singular +plural +108843 plural +108846 plural +plural +singular +singular +singular +singular +singular +singular +singular +108856 singular +singular +singular +singular +singular +108862 plural +plural +plural +108866 singular +108868 plural +108870 singular +singular +108873 plural +plural +singular +singular +singular +singular +singular +108881 plural +108884 singular +singular +plural +108888 plural +plural +plural +plural +plural +plural +108895 singular +singular +plural +108899 plural +plural +plural +singular +singular +108905 singular +singular +108908 singular +plural +108911 singular +108914 singular +plural +108917 singular +singular +singular +plural +singular +singular +singular +108925 singular +plural +plural +plural +plural +plural +108932 singular +108934 singular +plural +plural +plural +plural +plural +108942 plural +108944 plural +plural +plural +plural +plural +plural +108951 plural +108953 singular +singular +singular +108957 singular +plural +plural +108961 plural +plural +plural +plural +108967 plural +plural +plural +plural +108972 plural +plural +108975 singular +plural +108979 plural +108981 plural +108984 singular +singular +plural +singular +singular +108990 singular +plural +108993 singular +plural +108996 singular +singular +109000 plural +plural +109004 singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +109015 singular +singular +singular +singular +singular +109022 singular +singular +plural +plural +singular +singular +109029 singular +singular +plural +plural +plural +plural +109037 plural +plural +singular +109041 singular +singular +singular +plural +plural +109047 singular +109049 singular +plural +109054 plural +109056 singular +singular +singular +plural +singular +singular +singular +109064 singular +singular +singular +singular +109069 singular +109071 singular +109073 singular +singular +109076 singular +singular +109080 singular +plural +109083 plural +109085 singular +singular +plural +singular +singular +plural +109093 singular +singular +singular +109098 singular +plural +singular +singular +109103 plural +109105 singular +plural +singular +plural +singular +singular +singular +singular +109114 singular +singular +109117 singular +109119 singular +singular +singular +109123 plural +109125 singular +singular +109128 plural +plural +109131 plural +109133 singular +plural +plural +plural +109138 singular +singular +singular +109142 singular +singular +singular +singular +109147 plural +plural +plural +plural +plural +109153 singular +plural +singular +singular +singular +singular +109160 singular +singular +singular +singular +109165 singular +plural +plural +109169 singular +109171 plural +plural +singular +109175 singular +singular +singular +singular +plural +plural +109182 singular +plural +plural +plural +109187 singular +singular +singular +singular +plural +plural +singular +singular +singular +plural +singular +singular +109200 plural +singular +singular +singular +109205 singular +109207 plural +109209 plural +plural +109212 plural +plural +109215 plural +109217 singular +singular +singular +singular +109222 singular +singular +109225 singular +singular +singular +109229 plural +109231 plural +109233 singular +109235 plural +109237 singular +singular +plural +singular +singular +singular +singular +singular +109246 singular +plural +plural +109250 singular +plural +109253 singular +109255 singular +109257 singular +singular +singular +109262 singular +109264 plural +singular +singular +plural +109271 singular +plural +singular +singular +109277 singular +109279 singular +109281 plural +plural +109284 plural +singular +singular +singular +singular +singular +singular +109292 singular +109294 singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +plural +plural +singular +singular +109309 plural +singular +109312 singular +109314 singular +singular +singular +plural +109319 singular +singular +109322 singular +singular +singular +plural +singular +109328 singular +plural +singular +singular +109334 plural +plural +singular +plural +109339 plural +plural +plural +109343 plural +plural +singular +singular +singular +singular +109350 singular +singular +singular +singular +109355 singular +singular +singular +singular +singular +singular +plural +singular +singular +109365 singular +singular +109368 singular +plural +plural +singular +singular +plural +plural +plural +109377 singular +singular +109380 singular +singular +plural +singular +109385 plural +109388 singular +singular +109393 singular +109396 singular +singular +109399 singular +singular +109402 plural +plural +plural +109406 plural +109408 plural +109410 plural +plural +plural +plural +109415 singular +singular +plural +singular +singular +109421 singular +singular +109424 singular +singular +singular +109429 plural +singular +plural +plural +plural +109435 singular +singular +109439 singular +singular +109443 plural +singular +singular +singular +singular +singular +109450 singular +109452 singular +singular +109455 singular +109458 singular +singular +singular +singular +plural +singular +109465 singular +singular +singular +109470 singular +109472 plural +109474 singular +109476 plural +109478 plural +plural +singular +singular +plural +109484 plural +109487 plural +109489 singular +singular +109492 plural +plural +109495 singular +singular +109498 singular +109502 plural +plural +singular +singular +singular +singular +singular +109510 plural +plural +singular +singular +singular +plural +109517 singular +singular +singular +singular +109522 plural +plural +plural +singular +singular +plural +singular +109530 plural +109533 singular +singular +109536 plural +109538 plural +109540 plural +109542 plural +plural +109545 singular +singular +plural +109550 plural +singular +singular +singular +singular +109556 singular +singular +109559 singular +singular +plural +109564 singular +109567 singular +109570 singular +109573 plural +109575 singular +singular +109578 singular +singular +109581 plural +109583 plural +109585 plural +109587 singular +singular +singular +plural +plural +plural +109597 singular +singular +plural +109601 plural +109604 singular +singular +singular +singular +109609 plural +109611 plural +singular +109615 plural +109618 plural +plural +109621 singular +109624 singular +plural +109627 plural +plural +109630 singular +plural +109634 singular +singular +plural +singular +plural +109640 plural +plural +plural +109644 plural +109646 singular +singular +singular +singular +singular +109653 plural +plural +plural +109657 plural +plural +plural +109661 plural +plural +singular +singular +plural +109667 singular +singular +singular +109671 singular +plural +109674 singular +109677 singular +plural +plural +109681 plural +singular +singular +singular +singular +plural +plural +109689 singular +singular +109697 plural +plural +plural +plural +109702 plural +109704 singular +singular +plural +109708 singular +plural +singular +plural +109713 plural +109715 plural +plural +109718 singular +109720 plural +109722 singular +singular +singular +singular +plural +109728 singular +singular +singular +109732 singular +109735 singular +109737 plural +plural +singular +singular +109743 plural +singular +singular +109747 plural +singular +singular +plural +109752 singular +plural +109757 singular +singular +singular +singular +109762 singular +109764 plural +plural +plural +109768 plural +plural +plural +plural +plural +plural +singular +singular +plural +plural +109779 singular +singular +109782 singular +singular +109785 plural +plural +plural +109789 plural +109791 plural +plural +plural +109796 plural +109798 plural +plural +plural +plural +109803 singular +singular +singular +109807 plural +plural +109810 plural +plural +109813 singular +109815 plural +109817 plural +plural +plural +plural +plural +plural +plural +109826 plural +109828 singular +109830 plural +plural +plural +109835 singular +109837 plural +singular +singular +109841 singular +109843 plural +plural +plural +109847 plural +109849 singular +singular +singular +109853 singular +109855 plural +singular +singular +plural +109861 singular +singular +109864 plural +109867 plural +109869 singular +singular +109876 singular +plural +singular +singular +109881 singular +plural +singular +109885 singular +109887 singular +singular +109892 plural +109894 singular +singular +plural +singular +109899 singular +singular +singular +109903 plural +plural +singular +singular +plural +109909 singular +singular +109913 plural +plural +109917 plural +plural +109920 plural +singular +singular +singular +plural +109926 singular +singular +singular +109930 singular +singular +singular +singular +109935 singular +109939 plural +109941 singular +singular +plural +singular +singular +109948 plural +plural +plural +109952 plural +plural +109956 singular +plural +109962 plural +plural +plural +plural +109967 plural +109971 singular +109973 plural +109975 singular +singular +109978 singular +singular +109981 singular +109983 singular +singular +plural +109988 singular +plural +singular +singular +109994 singular +singular +singular +singular +plural +110001 singular +singular +110004 plural +110006 plural +110008 singular +plural +singular +singular +110013 singular +singular +plural +110018 plural +singular +plural +singular +110023 plural +plural +110028 plural +plural +plural +110032 singular +plural +110035 plural +110037 singular +singular +singular +110041 singular +plural +110044 singular +plural +singular +110049 plural +110051 plural +plural +110054 singular +110056 plural +singular +singular +singular +singular +110063 plural +110065 singular +singular +singular +singular +plural +110071 plural +110073 singular +singular +plural +singular +110078 singular +110080 plural +110082 singular +110084 plural +singular +singular +110089 plural +plural +singular +singular +plural +110095 singular +singular +singular +110099 singular +plural +110102 singular +singular +plural +singular +singular +singular +singular +plural +110111 plural +110113 plural +singular +singular +singular +110118 singular +singular +singular +110122 plural +110125 plural +110128 plural +110130 plural +110132 singular +110134 plural +plural +plural +plural +110139 singular +110141 singular +singular +110144 singular +plural +110147 singular +singular +singular +singular +plural +singular +110154 plural +plural +plural +singular +110159 plural +singular +plural +110163 plural +plural +110166 singular +singular +110170 plural +110172 plural +singular +110175 singular +plural +110180 singular +110183 plural +110185 plural +110188 plural +plural +plural +plural +plural +110194 singular +singular +singular +110198 singular +singular +singular +singular +singular +singular +singular +plural +110207 plural +110209 singular +singular +110212 singular +plural +singular +singular +singular +110219 singular +110221 singular +110224 singular +singular +110228 plural +plural +plural +110232 plural +singular +singular +singular +110241 singular +singular +singular +singular +singular +110247 singular +singular +110250 plural +plural +110254 plural +plural +110257 plural +110260 singular +plural +singular +singular +110265 singular +110268 singular +110270 singular +singular +singular +110274 singular +110276 singular +singular +singular +110280 singular +singular +singular +singular +singular +singular +110287 plural +110290 singular +singular +110293 singular +plural +110296 plural +110298 plural +plural +plural +plural +110303 singular +110305 plural +110308 plural +singular +110311 plural +plural +plural +110315 singular +singular +singular +110319 plural +plural +plural +110329 plural +plural +110333 plural +plural +plural +110337 plural +plural +110340 plural +110343 plural +110346 singular +singular +plural +110350 plural +110352 plural +plural +110356 plural +plural +110360 plural +110363 plural +plural +plural +110367 plural +singular +110371 plural +110373 singular +singular +110376 singular +110379 singular +singular +plural +plural +110384 singular +singular +singular +110388 singular +110390 singular +plural +plural +110394 singular +singular +110397 plural +plural +plural +plural +plural +110403 singular +singular +singular +singular +110409 plural +plural +plural +110413 singular +singular +singular +110417 singular +110419 singular +singular +110423 singular +singular +singular +110427 singular +110429 plural +plural +110432 singular +plural +singular +110436 plural +plural +plural +plural +plural +110443 plural +plural +110446 plural +110448 singular +singular +singular +110452 singular +110457 singular +plural +110460 plural +plural +110463 plural +plural +plural +110467 plural +110469 plural +plural +110472 plural +plural +110475 singular +plural +plural +110480 plural +110482 plural +110485 singular +110487 singular +singular +singular +110491 singular +110493 plural +singular +110496 singular +110498 singular +singular +plural +singular +110503 singular +singular +singular +110507 singular +singular +110512 plural +110514 plural +plural +110517 plural +110519 singular +110521 singular +singular +plural +singular +110526 singular +110528 plural +plural +plural +plural +singular +110534 plural +singular +110537 plural +singular +110540 singular +110544 plural +110546 plural +plural +110549 plural +110551 plural +110553 plural +plural +singular +plural +110558 plural +plural +singular +plural +110563 plural +singular +plural +plural +plural +singular +singular +110571 singular +110573 singular +singular +singular +110578 singular +plural +singular +singular +110583 singular +110586 singular +singular +110589 singular +singular +plural +singular +singular +singular +singular +110597 plural +110600 plural +110602 plural +110605 singular +plural +110608 plural +plural +110611 plural +singular +singular +singular +110617 plural +110619 plural +plural +plural +110623 plural +plural +110626 plural +110628 plural +plural +110631 singular +110633 plural +plural +110637 plural +110640 singular +110642 singular +singular +plural +plural +110647 plural +110649 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +110663 plural +plural +110666 singular +singular +110669 singular +singular +singular +110674 singular +singular +plural +110678 plural +110681 plural +110683 plural +110685 plural +110687 singular +plural +110690 singular +singular +singular +110694 singular +singular +110697 plural +singular +singular +110701 plural +plural +110704 plural +110706 plural +plural +singular +singular +plural +110712 singular +singular +singular +plural +110717 singular +singular +singular +singular +singular +singular +plural +plural +110726 singular +plural +singular +singular +110731 singular +singular +110734 singular +singular +110738 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +plural +singular +110752 singular +plural +plural +110756 plural +plural +plural +plural +plural +110762 singular +singular +singular +plural +singular +singular +110769 singular +singular +plural +plural +plural +singular +singular +singular +singular +plural +singular +singular +110782 plural +singular +110785 singular +110787 singular +singular +singular +plural +110792 singular +singular +plural +110796 singular +singular +singular +plural +singular +110802 singular +110804 singular +singular +110807 singular +singular +singular +plural +plural +110813 singular +singular +110817 plural +110819 singular +singular +110822 singular +singular +singular +plural +110827 singular +singular +singular +singular +singular +plural +plural +110835 plural +110837 plural +plural +110840 plural +110843 plural +plural +singular +singular +110848 singular +singular +plural +110852 singular +110854 plural +plural +plural +plural +110859 plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +110870 singular +110872 plural +singular +singular +singular +singular +110878 singular +110880 plural +110882 singular +110884 singular +110886 plural +plural +plural +singular +110891 plural +plural +plural +singular +110896 plural +110898 singular +singular +singular +singular +singular +110904 singular +110906 plural +singular +singular +110910 singular +singular +singular +singular +plural +110916 plural +singular +110919 plural +110921 plural +singular +singular +singular +singular +plural +singular +plural +plural +singular +singular +singular +110934 singular +singular +singular +110939 singular +singular +singular +singular +singular +110945 singular +110948 plural +plural +singular +110954 plural +plural +plural +110958 singular +singular +singular +110962 singular +singular +singular +plural +110967 plural +110969 singular +110971 plural +110974 plural +110976 plural +singular +singular +singular +singular +singular +plural +110984 singular +singular +singular +singular +110989 singular +singular +110992 singular +110994 singular +singular +singular +singular +singular +plural +singular +111002 plural +111004 plural +111006 singular +111008 singular +singular +singular +singular +plural +111014 singular +singular +singular +111018 plural +plural +plural +111022 singular +singular +singular +singular +plural +singular +singular +111030 plural +singular +111033 singular +111035 singular +111039 plural +111041 singular +singular +111047 singular +111050 singular +111053 singular +111056 plural +111059 singular +singular +singular +singular +singular +111065 singular +plural +singular +111069 singular +singular +111074 singular +singular +singular +singular +111079 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +111091 singular +111093 singular +singular +singular +111097 singular +111099 singular +111101 singular +singular +singular +singular +111106 singular +singular +111109 singular +singular +111112 plural +111115 singular +111117 plural +plural +singular +plural +111123 singular +singular +plural +111127 singular +111129 singular +111131 singular +singular +singular +111135 singular +singular +singular +singular +111140 singular +singular +singular +singular +111147 singular +singular +111151 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +111165 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +111176 singular +singular +singular +111180 singular +singular +111183 plural +111185 plural +singular +111189 singular +singular +singular +plural +plural +111195 plural +singular +singular +singular +singular +111201 plural +111203 singular +111205 plural +111208 singular +singular +plural +singular +singular +singular +singular +111216 singular +111218 plural +singular +singular +111222 plural +plural +plural +111226 plural +singular +singular +111230 plural +singular +singular +111234 plural +plural +111237 singular +singular +111241 plural +plural +plural +111245 singular +111247 singular +plural +singular +singular +111252 singular +111254 singular +111256 singular +singular +111259 singular +singular +111262 singular +111264 singular +plural +111267 singular +singular +plural +111271 singular +singular +singular +singular +plural +singular +singular +111280 plural +plural +111283 plural +plural +plural +plural +plural +111290 singular +111293 singular +plural +111296 singular +singular +singular +plural +singular +singular +111303 singular +singular +singular +singular +plural +singular +singular +plural +111312 singular +singular +singular +111316 singular +singular +111319 singular +singular +plural +plural +plural +111325 singular +111327 singular +singular +111330 singular +singular +plural +singular +singular +plural +111337 plural +111339 singular +singular +singular +singular +singular +111345 singular +111349 plural +111352 plural +111354 plural +plural +111357 plural +plural +111361 plural +singular +singular +111365 singular +singular +singular +singular +singular +singular +plural +111373 singular +111375 singular +singular +111378 plural +111380 singular +111382 plural +111384 plural +plural +111387 plural +111389 plural +111391 singular +singular +singular +plural +plural +plural +111398 singular +singular +singular +singular +111404 singular +singular +singular +singular +111409 plural +plural +plural +111413 singular +singular +singular +singular +singular +111419 plural +111421 singular +singular +111424 singular +111428 singular +singular +singular +plural +111433 plural +111435 plural +plural +111438 singular +111440 plural +111443 plural +111445 plural +111448 singular +plural +111451 singular +111454 singular +111456 singular +singular +111459 singular +plural +111462 singular +111465 singular +plural +111470 plural +singular +111474 plural +singular +plural +plural +111479 singular +111481 plural +111485 plural +111487 plural +singular +plural +plural +111493 singular +111495 singular +111498 singular +111500 plural +plural +plural +111504 plural +111506 singular +plural +111509 plural +111511 plural +plural +plural +111515 plural +111517 singular +singular +singular +111522 singular +plural +singular +plural +singular +plural +111529 plural +plural +111532 plural +plural +111536 singular +111538 singular +singular +singular +plural +111543 singular +singular +singular +plural +111549 singular +111551 singular +111555 singular +plural +111558 plural +111560 singular +111562 singular +singular +singular +singular +singular +singular +plural +singular +singular +111572 singular +111574 singular +singular +singular +singular +111579 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +111591 singular +singular +111594 singular +singular +singular +singular +singular +plural +singular +singular +111603 plural +plural +singular +singular +singular +singular +111610 singular +singular +singular +plural +111615 singular +singular +singular +singular +plural +singular +singular +singular +111624 singular +singular +singular +singular +111629 singular +singular +111632 singular +singular +singular +singular +plural +111638 singular +singular +111642 singular +singular +111645 singular +111647 singular +plural +111653 plural +111655 plural +plural +plural +plural +plural +111662 singular +singular +singular +111666 singular +111668 singular +singular +singular +singular +singular +singular +111675 singular +singular +111678 singular +singular +111681 singular +singular +plural +plural +plural +plural +111688 singular +plural +111691 plural +111693 plural +111695 plural +plural +111699 plural +plural +111702 plural +111704 singular +singular +singular +111708 singular +singular +111711 singular +singular +singular +111716 singular +singular +singular +111720 plural +111722 plural +plural +111725 plural +plural +111728 plural +plural +111731 plural +plural +plural +plural +plural +plural +plural +111740 singular +singular +singular +singular +singular +singular +111747 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +111768 singular +singular +singular +singular +111773 singular +singular +singular +singular +singular +111779 singular +111781 singular +111783 singular +111785 singular +singular +111788 singular +111790 singular +singular +singular +singular +singular +plural +111797 singular +111799 singular +singular +111802 singular +singular +singular +singular +singular +111808 singular +singular +singular +111812 singular +singular +singular +111816 singular +singular +plural +111820 plural +singular +singular +singular +111826 singular +singular +111830 singular +singular +singular +singular +singular +singular +singular +singular +111839 singular +plural +plural +111844 singular +111846 singular +singular +111849 singular +singular +plural +plural +singular +singular +singular +singular +singular +111859 singular +111861 plural +plural +plural +plural +111866 singular +singular +singular +singular +singular +singular +singular +111874 plural +plural +111877 singular +plural +111880 singular +111882 plural +singular +singular +singular +singular +singular +111889 singular +singular +singular +plural +plural +111895 singular +singular +plural +plural +singular +singular +111902 singular +plural +singular +singular +singular +111908 plural +111912 singular +singular +plural +111916 plural +plural +plural +plural +111921 plural +plural +111924 plural +111926 plural +plural +111929 singular +plural +111932 singular +111934 singular +singular +plural +111938 singular +singular +111941 singular +singular +singular +111945 singular +111947 singular +singular +plural +singular +singular +singular +plural +plural +111958 singular +singular +111962 singular +singular +singular +111966 singular +singular +111969 plural +singular +singular +singular +singular +singular +singular +singular +111978 plural +singular +singular +plural +plural +111984 singular +singular +singular +singular +111989 singular +singular +plural +111993 singular +111995 singular +singular +singular +111999 singular +112001 singular +112003 plural +plural +112006 singular +singular +plural +plural +plural +112012 singular +112014 singular +112016 plural +112018 singular +singular +112021 singular +112023 singular +112025 plural +112028 plural +112030 singular +112032 plural +112034 singular +singular +112038 singular +singular +plural +plural +singular +plural +plural +singular +112047 singular +singular +112050 singular +singular +112053 singular +112056 singular +112059 singular +112063 singular +112065 singular +singular +singular +112069 singular +112071 singular +112073 singular +112075 singular +singular +singular +112079 singular +singular +112082 singular +112084 singular +singular +112087 plural +112089 singular +112091 singular +112093 singular +112095 singular +singular +singular +singular +112100 singular +singular +singular +singular +singular +singular +112107 singular +singular +singular +112111 singular +singular +singular +singular +singular +singular +singular +singular +singular +112121 singular +112123 singular +112125 singular +singular +singular +singular +singular +singular +112132 singular +plural +singular +112136 singular +112138 singular +singular +112142 singular +singular +singular +singular +112148 singular +112150 singular +singular +singular +112154 singular +112157 singular +112159 singular +singular +singular +singular +112164 singular +112166 singular +singular +112170 plural +112174 singular +112176 singular +112178 singular +singular +singular +112182 plural +plural +112185 plural +112187 singular +singular +plural +112191 plural +plural +singular +singular +singular +singular +112198 singular +singular +112202 plural +plural +singular +112206 plural +plural +plural +112210 plural +plural +112213 plural +plural +plural +112217 plural +plural +plural +singular +singular +plural +112224 plural +plural +112227 plural +plural +plural +112231 plural +112233 plural +singular +singular +plural +plural +112239 singular +singular +112242 singular +singular +112245 singular +singular +plural +singular +singular +singular +112253 singular +singular +112257 singular +112259 singular +112261 singular +112264 singular +singular +singular +singular +singular +singular +singular +singular +112273 singular +singular +singular +112278 singular +singular +singular +singular +singular +singular +singular +singular +112287 singular +singular +112290 singular +singular +plural +singular +112295 plural +singular +112298 singular +singular +112301 singular +112303 singular +singular +112306 singular +112309 plural +plural +plural +plural +singular +singular +plural +plural +plural +112319 plural +plural +112322 singular +plural +plural +singular +singular +singular +plural +112331 plural +plural +singular +singular +singular +112337 singular +112339 singular +plural +plural +112343 plural +singular +singular +112347 singular +singular +singular +singular +112352 singular +singular +112355 singular +singular +112358 singular +112360 singular +singular +112363 singular +plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +112379 singular +singular +singular +singular +singular +112385 plural +plural +112388 plural +plural +singular +112392 singular +singular +112395 singular +112397 singular +singular +singular +112401 singular +singular +singular +112405 singular +singular +112408 plural +singular +singular +singular +singular +singular +singular +112417 singular +singular +singular +singular +singular +112423 singular +singular +singular +112428 singular +plural +112431 plural +112433 plural +112435 singular +singular +singular +singular +singular +plural +plural +112443 plural +plural +singular +112447 singular +singular +singular +singular +singular +singular +112454 singular +singular +plural +plural +112459 singular +112461 singular +112463 singular +112465 singular +112467 singular +112469 singular +singular +singular +singular +singular +singular +singular +singular +112478 singular +singular +112481 singular +singular +singular +singular +singular +112487 singular +112489 singular +plural +plural +singular +singular +plural +singular +112497 plural +singular +112500 singular +singular +singular +singular +singular +plural +singular +singular +112509 singular +singular +singular +plural +112514 singular +singular +singular +112518 singular +112520 plural +plural +singular +singular +112525 singular +112527 singular +112529 singular +plural +112532 plural +plural +112535 plural +plural +112538 plural +112540 singular +singular +singular +plural +plural +112546 plural +112549 singular +singular +plural +112553 plural +singular +plural +112557 singular +singular +singular +112562 plural +112564 plural +plural +112567 singular +singular +singular +112571 singular +singular +112574 singular +112576 singular +112578 singular +singular +112581 singular +112583 singular +plural +plural +112587 plural +plural +singular +112591 singular +112593 singular +singular +singular +singular +112598 plural +singular +112601 plural +plural +112605 singular +plural +plural +112610 plural +112612 singular +singular +singular +singular +112617 singular +singular +singular +singular +singular +112623 singular +plural +112626 singular +singular +singular +singular +112631 plural +plural +singular +112635 singular +112637 singular +112639 plural +plural +singular +112643 plural +singular +112646 singular +singular +singular +singular +112651 plural +plural +singular +112656 plural +singular +singular +112660 plural +plural +singular +112664 singular +singular +singular +plural +112671 plural +plural +plural +plural +plural +112678 singular +plural +112682 plural +112684 plural +plural +plural +112688 plural +112690 singular +plural +112695 singular +singular +112698 singular +singular +singular +112704 plural +plural +112707 singular +singular +112710 singular +singular +singular +plural +singular +plural +112718 singular +singular +singular +112722 plural +112724 plural +singular +plural +112728 plural +plural +singular +singular +plural +112734 plural +plural +112737 singular +112739 singular +112741 singular +singular +singular +singular +singular +112747 singular +112749 singular +singular +singular +singular +singular +singular +112756 singular +singular +112759 singular +112766 plural +plural +plural +plural +112771 plural +singular +112775 plural +plural +singular +plural +singular +112781 singular +singular +112784 singular +singular +112787 plural +plural +plural +112791 plural +singular +112794 singular +singular +singular +112798 singular +plural +112801 singular +singular +112804 singular +plural +plural +singular +singular +singular +112811 singular +112813 singular +singular +singular +112817 singular +singular +112820 plural +plural +singular +plural +plural +plural +plural +plural +plural +plural +plural +112832 singular +112834 plural +112836 plural +112839 plural +plural +plural +plural +plural +112845 plural +112847 plural +112850 plural +plural +plural +112854 singular +plural +plural +plural +plural +singular +singular +plural +plural +112865 singular +singular +singular +singular +112870 singular +singular +singular +112874 plural +plural +plural +plural +112879 plural +112881 plural +plural +112885 plural +112887 plural +plural +112890 plural +plural +singular +singular +plural +plural +singular +112898 singular +112900 singular +singular +112904 singular +plural +plural +plural +singular +singular +plural +singular +singular +112914 singular +112916 singular +singular +singular +singular +singular +112922 singular +112924 plural +112926 plural +112928 plural +singular +singular +singular +plural +plural +plural +plural +plural +plural +singular +singular +112941 plural +singular +singular +plural +singular +112947 singular +singular +112950 singular +singular +singular +singular +singular +112956 singular +112958 singular +plural +112961 singular +singular +112966 singular +plural +112969 plural +plural +112972 plural +plural +plural +112976 plural +plural +112979 plural +112981 singular +112983 singular +112985 plural +plural +plural +112989 plural +plural +plural +plural +plural +112995 singular +112997 singular +112999 singular +plural +plural +plural +singular +singular +singular +singular +plural +plural +plural +113011 singular +singular +113014 plural +plural +plural +plural +113020 singular +singular +singular +plural +singular +113026 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +113044 singular +singular +113047 singular +singular +singular +singular +113052 plural +plural +singular +113056 singular +singular +singular +singular +plural +plural +113063 singular +singular +singular +singular +113068 singular +singular +singular +singular +singular +113074 singular +singular +singular +singular +singular +113080 singular +singular +singular +singular +plural +singular +singular +singular +plural +plural +singular +singular +singular +113094 singular +singular +singular +singular +plural +plural +113101 singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +113117 singular +singular +singular +113121 singular +singular +113124 plural +plural +113127 singular +113129 singular +singular +113136 singular +singular +113140 singular +singular +singular +plural +plural +113147 singular +113151 plural +plural +plural +113155 plural +plural +plural +singular +singular +113161 singular +singular +113164 plural +singular +113167 singular +113169 singular +singular +singular +singular +singular +plural +plural +plural +113178 plural +singular +singular +singular +singular +plural +plural +113186 singular +singular +plural +singular +singular +113192 plural +singular +singular +singular +singular +113198 singular +singular +113201 singular +singular +singular +113205 singular +singular +singular +singular +singular +singular +singular +singular +113214 singular +singular +113217 singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +113229 plural +113231 singular +singular +113234 singular +singular +singular +113238 singular +singular +113241 plural +plural +singular +singular +113246 singular +singular +singular +113250 singular +singular +plural +plural +113255 singular +singular +singular +singular +singular +113261 singular +singular +singular +singular +singular +singular +113268 singular +singular +singular +singular +113273 singular +singular +singular +singular +113278 singular +113282 singular +113284 singular +singular +singular +singular +113289 singular +singular +singular +singular +singular +singular +113296 singular +113298 singular +singular +plural +plural +singular +113305 singular +plural +singular +singular +singular +singular +113312 singular +113314 singular +113316 singular +113319 singular +singular +singular +singular +singular +plural +113326 singular +singular +singular +singular +113331 singular +singular +singular +113335 singular +singular +singular +singular +plural +113341 singular +singular +singular +113346 plural +plural +plural +113351 singular +singular +113354 singular +singular +singular +plural +113359 singular +singular +113362 plural +plural +113365 singular +113368 singular +singular +singular +singular +plural +singular +singular +113376 singular +singular +singular +113380 singular +singular +113383 singular +113385 singular +singular +113388 singular +singular +singular +singular +113393 singular +113395 singular +113397 singular +singular +113400 plural +singular +113404 singular +113406 singular +singular +singular +113410 singular +113412 singular +singular +singular +singular +singular +113419 singular +singular +singular +singular +singular +plural +plural +plural +113428 singular +singular +113431 singular +113433 singular +singular +113436 singular +singular +singular +singular +singular +singular +113443 singular +singular +singular +singular +113448 plural +singular +singular +113452 plural +singular +plural +plural +113457 singular +singular +plural +singular +singular +113463 singular +singular +singular +singular +singular +singular +singular +singular +113473 singular +singular +113477 singular +singular +singular +singular +113482 singular +113484 singular +113486 singular +singular +113489 singular +singular +singular +singular +singular +113495 singular +113497 singular +113499 singular +singular +singular +113503 plural +113505 singular +singular +singular +singular +singular +113511 singular +singular +singular +singular +113516 singular +singular +singular +113520 singular +singular +113523 plural +singular +113526 singular +113528 plural +plural +plural +singular +plural +plural +plural +plural +plural +113538 plural +113540 singular +113542 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +plural +113554 singular +singular +singular +113560 singular +singular +113563 singular +113567 singular +singular +singular +singular +singular +singular +plural +plural +113576 singular +singular +singular +113580 singular +singular +singular +singular +singular +113586 plural +singular +singular +singular +singular +113592 plural +113594 singular +singular +113597 singular +singular +singular +113601 singular +singular +113604 plural +113606 singular +113608 singular +singular +singular +singular +113613 singular +113615 singular +plural +singular +113619 plural +plural +113623 plural +plural +singular +singular +113628 singular +singular +113631 singular +singular +singular +singular +singular +113638 plural +113640 plural +113642 plural +113644 plural +113646 plural +singular +singular +plural +113651 plural +singular +singular +singular +113657 singular +113659 singular +plural +singular +singular +113664 singular +singular +113669 singular +singular +113672 singular +plural +plural +singular +113677 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +113689 plural +plural +plural +singular +113695 singular +singular +plural +113699 singular +singular +plural +113703 singular +singular +singular +plural +singular +singular +113710 singular +plural +113713 singular +singular +plural +plural +singular +113721 plural +singular +plural +singular +113726 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +113742 singular +113744 singular +singular +singular +singular +singular +singular +singular +113753 singular +singular +singular +113757 singular +plural +plural +113761 plural +113764 plural +113766 plural +113769 plural +113771 singular +113773 plural +113775 singular +113778 singular +singular +singular +113782 plural +singular +singular +113786 singular +singular +singular +singular +singular +113792 singular +singular +singular +singular +113797 plural +plural +plural +singular +113802 singular +singular +singular +singular +singular +113808 plural +plural +singular +singular +113813 singular +singular +113816 plural +plural +113819 plural +plural +singular +singular +113824 plural +plural +113827 singular +singular +singular +113834 singular +113836 plural +singular +singular +113840 singular +singular +plural +plural +113846 singular +plural +singular +singular +singular +113852 singular +singular +113855 plural +113857 singular +singular +singular +singular +plural +113863 singular +113865 singular +singular +singular +113869 singular +singular +113873 plural +plural +plural +plural +plural +113879 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +113903 plural +plural +singular +singular +113908 singular +singular +singular +plural +113913 plural +singular +113917 plural +plural +plural +plural +113922 plural +plural +113925 plural +plural +plural +plural +plural +plural +plural +113933 plural +113937 singular +singular +113940 plural +113942 singular +singular +singular +113946 singular +plural +singular +113951 plural +plural +singular +singular +plural +plural +singular +singular +plural +113961 singular +singular +113965 plural +113967 singular +113969 singular +singular +plural +singular +singular +plural +113977 singular +plural +singular +113981 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +singular +singular +114006 singular +114008 singular +114010 plural +plural +plural +singular +114016 plural +singular +singular +singular +singular +114023 plural +plural +plural +114029 singular +singular +plural +114033 plural +plural +114036 plural +plural +114039 singular +singular +plural +114043 plural +114045 singular +singular +114048 plural +singular +114051 singular +singular +114054 plural +singular +114059 singular +singular +plural +plural +plural +plural +singular +114068 singular +114070 singular +singular +114073 singular +singular +singular +singular +singular +114079 singular +114081 singular +114083 singular +114085 singular +114087 singular +singular +114090 singular +114092 singular +singular +singular +singular +singular +singular +114099 singular +singular +singular +singular +singular +114105 singular +singular +114108 singular +singular +singular +singular +114113 plural +114115 plural +114117 singular +singular +singular +114121 singular +singular +singular +singular +singular +singular +singular +114130 singular +singular +singular +114134 singular +singular +114137 singular +114139 singular +singular +114143 singular +singular +singular +plural +114149 plural +plural +plural +plural +plural +plural +plural +singular +singular +114161 singular +singular +singular +singular +plural +114168 plural +plural +plural +114172 singular +singular +114175 plural +singular +singular +singular +singular +singular +singular +singular +singular +114185 singular +114187 singular +114189 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +114221 singular +singular +singular +114226 singular +singular +114230 plural +plural +plural +singular +singular +singular +singular +114239 singular +114242 singular +singular +singular +singular +singular +114248 singular +114250 singular +114252 singular +singular +114255 singular +singular +114258 singular +singular +singular +singular +114263 singular +singular +singular +singular +114268 singular +114270 singular +singular +singular +114274 singular +114276 singular +singular +114279 singular +singular +singular +singular +singular +114285 singular +114287 singular +singular +singular +114291 plural +plural +114294 plural +plural +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +114308 plural +plural +singular +singular +114313 singular +singular +114317 singular +plural +plural +plural +114322 singular +singular +singular +singular +singular +singular +singular +114330 plural +singular +plural +114334 plural +singular +114337 singular +singular +singular +singular +114342 singular +singular +114346 singular +singular +singular +singular +114351 plural +plural +plural +plural +114356 singular +114358 singular +singular +singular +singular +singular +singular +114365 singular +singular +singular +114369 singular +114371 singular +singular +singular +singular +singular +singular +singular +singular +114380 plural +plural +plural +plural +114385 singular +singular +114388 singular +114390 singular +singular +singular +singular +singular +114396 singular +114398 singular +singular +114401 singular +singular +singular +114405 singular +114407 singular +singular +singular +114411 singular +114413 singular +114415 singular +114417 plural +plural +plural +singular +singular +114423 singular +singular +singular +singular +singular +114429 plural +singular +singular +singular +114434 singular +singular +singular +114438 singular +plural +singular +114442 singular +singular +singular +114446 singular +114448 singular +singular +singular +singular +singular +singular +singular +singular +114457 plural +plural +114460 singular +plural +plural +singular +singular +singular +114467 singular +singular +singular +singular +114472 singular +singular +singular +plural +singular +singular +singular +singular +114481 singular +singular +singular +114485 singular +114487 singular +singular +114490 singular +singular +singular +singular +plural +singular +114497 singular +singular +114500 singular +114502 plural +plural +singular +114506 singular +114508 singular +plural +114511 singular +singular +singular +114515 singular +singular +singular +singular +singular +singular +singular +plural +plural +114526 singular +singular +114529 plural +114531 singular +singular +singular +114536 singular +singular +singular +114540 singular +114542 singular +114544 singular +114546 singular +114548 singular +114550 singular +singular +singular +singular +singular +singular +singular +singular +114559 singular +singular +singular +singular +114564 singular +singular +114569 singular +singular +singular +singular +114574 plural +plural +114578 plural +plural +plural +plural +114583 plural +114585 plural +114587 singular +singular +plural +114591 singular +plural +plural +plural +plural +plural +plural +114599 singular +singular +singular +114603 singular +singular +114606 plural +singular +plural +singular +plural +114612 plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +114623 singular +singular +singular +plural +114629 plural +114631 singular +singular +114634 plural +plural +plural +114638 plural +plural +plural +singular +singular +plural +plural +plural +plural +114648 plural +plural +114651 plural +singular +singular +114655 singular +plural +114658 singular +singular +114661 singular +singular +singular +114665 plural +114667 plural +plural +plural +plural +plural +114673 plural +114676 singular +singular +singular +plural +114681 singular +singular +plural +singular +singular +singular +singular +plural +114690 plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +plural +114703 singular +plural +114706 plural +114708 singular +singular +plural +plural +114713 plural +plural +plural +114717 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +114729 singular +singular +singular +singular +singular +plural +plural +114737 singular +114740 plural +singular +singular +singular +plural +plural +114747 singular +singular +singular +singular +singular +singular +singular +114755 singular +114757 singular +singular +singular +114762 plural +singular +singular +plural +plural +plural +114770 plural +plural +114774 plural +114776 plural +114778 singular +singular +singular +plural +114783 singular +singular +singular +singular +singular +plural +singular +plural +114792 plural +114794 singular +singular +singular +singular +singular +singular +plural +plural +singular +plural +114805 plural +singular +singular +114809 plural +plural +plural +114817 plural +114819 singular +114821 singular +plural +singular +singular +singular +114827 singular +singular +singular +singular +singular +singular +114834 singular +plural +singular +singular +singular +singular +singular +114842 plural +114844 singular +plural +114847 singular +singular +114850 singular +singular +singular +singular +singular +plural +plural +plural +singular +114860 singular +114862 singular +114864 singular +singular +singular +singular +singular +singular +plural +plural +plural +114876 singular +singular +singular +plural +114881 singular +114883 plural +114885 plural +singular +singular +plural +114890 plural +plural +114893 plural +114896 plural +plural +plural +plural +plural +plural +114903 plural +plural +114906 singular +114908 singular +plural +plural +plural +plural +114915 singular +singular +114918 singular +singular +singular +singular +plural +singular +singular +114927 plural +plural +114930 singular +plural +plural +plural +114936 singular +singular +singular +singular +plural +114942 singular +singular +114945 singular +singular +singular +singular +singular +114951 plural +114954 singular +singular +singular +singular +plural +114960 plural +singular +singular +singular +plural +plural +114967 singular +singular +singular +singular +singular +singular +114975 plural +singular +singular +114980 plural +plural +plural +114984 plural +plural +singular +plural +singular +plural +114991 plural +plural +plural +114995 plural +plural +114998 plural +115000 singular +115002 plural +plural +singular +115006 plural +plural +115009 plural +singular +singular +115013 singular +115015 singular +singular +singular +singular +115020 singular +singular +singular +115024 singular +singular +singular +115028 singular +115030 singular +singular +115033 singular +singular +115037 singular +115039 singular +115043 singular +singular +singular +singular +115048 singular +115050 singular +115052 singular +plural +singular +115056 plural +115058 plural +plural +plural +plural +115064 plural +plural +plural +115069 plural +plural +plural +singular +plural +115075 singular +plural +singular +plural +plural +plural +115082 singular +singular +singular +115086 plural +plural +singular +singular +singular +singular +115093 singular +singular +singular +singular +singular +singular +115100 singular +plural +115103 singular +singular +singular +115107 singular +singular +singular +plural +115112 singular +115114 singular +singular +singular +plural +singular +115120 singular +115122 singular +singular +plural +115126 singular +singular +singular +singular +singular +singular +singular +115134 singular +singular +singular +115138 plural +plural +singular +singular +singular +singular +singular +115146 singular +singular +singular +singular +115151 singular +singular +singular +115156 plural +plural +plural +115160 singular +singular +singular +singular +singular +singular +singular +115168 singular +singular +singular +singular +115173 plural +115175 singular +115177 singular +singular +115180 singular +singular +115183 singular +singular +singular +115187 plural +plural +plural +plural +singular +115193 singular +singular +115196 singular +115198 singular +singular +singular +115202 singular +singular +singular +115206 singular +singular +115209 singular +singular +singular +115213 singular +singular +115218 singular +singular +singular +singular +singular +115224 singular +singular +singular +singular +115229 plural +plural +singular +singular +singular +115235 singular +singular +115240 singular +115242 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +115257 singular +115261 singular +singular +singular +115265 plural +plural +singular +singular +115271 singular +singular +singular +singular +115276 singular +115281 singular +singular +singular +singular +singular +115288 singular +115292 singular +singular +115295 singular +115297 singular +singular +singular +115302 singular +115305 singular +singular +singular +115309 singular +115311 singular +115313 singular +115316 singular +115319 singular +115322 singular +singular +singular +singular +singular +115328 singular +115331 singular +singular +singular +115335 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +115349 singular +singular +115353 singular +singular +singular +115357 singular +singular +singular +singular +115362 singular +singular +singular +plural +plural +115368 singular +singular +singular +singular +singular +singular +singular +singular +115379 plural +singular +singular +115385 singular +singular +singular +115389 singular +115392 plural +plural +plural +singular +plural +singular +singular +singular +singular +singular +singular +115404 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +115420 singular +singular +plural +115427 singular +plural +plural +115431 plural +plural +singular +singular +115436 singular +plural +plural +plural +singular +plural +115443 singular +singular +singular +singular +plural +115449 singular +115451 singular +plural +plural +singular +singular +singular +singular +singular +115460 singular +singular +singular +singular +115465 singular +plural +plural +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +115479 singular +singular +singular +115483 plural +singular +singular +singular +plural +plural +singular +singular +singular +115493 plural +singular +115496 singular +plural +plural +singular +115501 singular +singular +singular +singular +singular +115507 singular +singular +115511 singular +singular +singular +115515 singular +115517 singular +singular +singular +115521 singular +115525 singular +singular +singular +115529 singular +singular +singular +115533 plural +singular +plural +plural +singular +115541 plural +plural +singular +singular +singular +plural +plural +singular +plural +115551 plural +plural +singular +singular +singular +115558 singular +singular +singular +singular +singular +singular +singular +115566 singular +singular +singular +singular +115571 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +115582 singular +singular +115585 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +115596 plural +plural +singular +115600 singular +singular +115603 plural +singular +singular +singular +115608 plural +plural +plural +singular +plural +plural +plural +plural +plural +115618 singular +singular +115621 plural +plural +115624 singular +115627 singular +singular +plural +115631 singular +115633 plural +115635 singular +singular +singular +singular +115640 plural +plural +singular +115644 plural +115647 singular +plural +plural +singular +115652 singular +115654 plural +singular +115658 singular +plural +plural +singular +singular +plural +plural +singular +115667 plural +plural +plural +plural +115672 singular +plural +115675 plural +plural +115678 singular +115680 singular +singular +115684 plural +plural +plural +115689 plural +115692 singular +115694 plural +singular +singular +singular +singular +115700 singular +singular +115703 singular +singular +singular +singular +115708 plural +plural +plural +singular +singular +singular +singular +singular +115718 singular +singular +115721 plural +plural +115724 plural +singular +singular +singular +singular +115730 plural +115732 plural +115734 plural +plural +115737 singular +singular +plural +115741 singular +singular +singular +115746 plural +singular +singular +singular +singular +singular +115753 singular +plural +115756 singular +115758 singular +singular +singular +singular +singular +115764 singular +singular +115767 singular +singular +115770 singular +singular +singular +singular +singular +singular +115777 plural +singular +115780 singular +singular +singular +plural +singular +115786 plural +plural +singular +115791 singular +115793 singular +plural +plural +singular +singular +singular +singular +115803 plural +singular +plural +plural +plural +115809 plural +singular +singular +singular +115814 plural +singular +singular +115818 singular +singular +singular +singular +singular +115824 singular +singular +115827 singular +singular +115830 singular +singular +singular +115834 singular +singular +115837 singular +plural +plural +115842 singular +plural +plural +plural +plural +115848 singular +singular +singular +singular +singular +singular +plural +115856 plural +115860 singular +singular +115863 plural +plural +115866 singular +plural +115869 singular +singular +115872 singular +plural +plural +115876 singular +singular +singular +singular +singular +plural +plural +singular +115885 singular +singular +singular +singular +115891 singular +singular +singular +115895 singular +115898 singular +singular +115901 plural +plural +plural +singular +singular +singular +singular +115910 plural +plural +singular +singular +115915 singular +115917 singular +115919 singular +plural +plural +115924 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +115938 singular +plural +plural +singular +singular +115944 singular +singular +115947 plural +singular +plural +115953 plural +singular +115956 singular +singular +singular +115960 singular +115962 plural +plural +plural +115967 singular +singular +115970 singular +singular +plural +115974 singular +singular +115977 singular +115979 plural +plural +singular +singular +115985 singular +singular +singular +singular +singular +plural +plural +115994 plural +plural +singular +singular +plural +plural +singular +singular +116003 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +116015 singular +116017 singular +singular +singular +singular +116022 singular +singular +singular +116026 singular +singular +116029 singular +singular +singular +singular +singular +singular +singular +singular +singular +116039 singular +singular +singular +116043 singular +116045 singular +plural +singular +singular +116051 singular +singular +116054 singular +singular +singular +singular +116059 singular +116061 singular +plural +plural +116065 singular +116067 singular +116069 singular +singular +singular +singular +singular +plural +plural +116077 singular +singular +116080 singular +singular +singular +singular +116085 singular +singular +plural +116090 singular +singular +singular +singular +singular +116097 singular +singular +singular +plural +116102 plural +plural +plural +plural +116108 singular +singular +116111 singular +singular +singular +singular +116116 singular +singular +116119 plural +plural +plural +plural +116124 singular +116126 plural +plural +plural +singular +116131 plural +116133 singular +singular +singular +singular +116138 singular +116140 plural +singular +singular +116144 plural +116146 plural +plural +plural +singular +116151 singular +116153 singular +singular +singular +116157 plural +116159 singular +singular +singular +plural +plural +116166 singular +116168 singular +plural +singular +singular +singular +116174 singular +116177 singular +singular +116180 plural +plural +116183 singular +singular +116186 singular +singular +116189 singular +116192 singular +singular +116195 plural +singular +singular +singular +116200 plural +singular +singular +plural +116205 singular +singular +singular +singular +116210 singular +singular +plural +116214 singular +116218 singular +singular +singular +plural +116223 plural +plural +plural +plural +116229 singular +singular +116232 plural +plural +plural +116237 plural +plural +plural +116241 singular +116243 singular +116245 plural +singular +116248 plural +116250 plural +plural +plural +plural +plural +singular +116257 singular +singular +116260 plural +singular +116265 singular +singular +singular +116270 plural +plural +116273 plural +116276 plural +116279 singular +116281 plural +116284 singular +singular +116288 singular +singular +singular +singular +singular +116294 plural +116298 plural +plural +116301 plural +116304 singular +singular +singular +singular +singular +plural +116311 singular +singular +singular +plural +plural +116317 plural +116319 singular +singular +plural +plural +116324 singular +116326 singular +116328 singular +singular +singular +116332 plural +116334 singular +singular +singular +116338 plural +plural +116341 singular +singular +plural +116345 singular +116348 singular +singular +116352 singular +singular +singular +116356 singular +singular +singular +singular +116361 plural +plural +plural +singular +116367 singular +116370 plural +116372 singular +singular +singular +116377 singular +plural +116381 singular +116383 plural +singular +plural +116387 plural +116389 singular +116391 singular +singular +singular +116396 singular +singular +116399 singular +singular +116402 singular +116405 singular +singular +singular +plural +116410 plural +plural +plural +plural +116416 plural +singular +singular +116422 singular +singular +singular +116426 plural +116428 singular +singular +singular +singular +singular +singular +116435 singular +singular +116438 singular +singular +singular +116442 singular +singular +116445 plural +plural +singular +116450 plural +plural +singular +singular +116455 plural +116458 singular +singular +singular +116464 singular +singular +singular +singular +singular +singular +singular +116472 singular +singular +singular +singular +singular +116478 singular +116480 singular +116482 singular +singular +singular +116486 singular +116488 singular +singular +116491 singular +116493 plural +116495 plural +116497 singular +plural +116500 plural +singular +116504 singular +singular +singular +116508 singular +116510 plural +plural +116513 plural +plural +plural +singular +116518 singular +plural +singular +singular +116523 plural +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +116538 plural +singular +116542 singular +116544 plural +plural +plural +116548 singular +116550 plural +116552 singular +116554 singular +116556 plural +116558 singular +singular +singular +singular +singular +116564 plural +singular +116567 singular +plural +116570 singular +singular +116573 singular +singular +116576 plural +singular +116579 plural +singular +plural +116583 singular +singular +116586 singular +116588 plural +116590 plural +116592 plural +singular +116595 plural +plural +116598 plural +116601 singular +singular +singular +116606 singular +singular +116610 singular +singular +116615 singular +116618 plural +116621 singular +singular +singular +singular +singular +116627 singular +116629 singular +singular +116633 singular +116636 singular +singular +116639 singular +singular +116642 singular +116644 singular +singular +116647 singular +singular +singular +singular +singular +singular +116654 singular +singular +116659 singular +singular +singular +singular +116664 singular +singular +116667 singular +singular +singular +singular +116672 plural +plural +singular +singular +singular +116678 plural +116680 plural +116682 singular +singular +116685 singular +116687 singular +116689 singular +singular +116692 plural +singular +116695 singular +116697 singular +singular +116700 singular +singular +singular +116704 plural +singular +singular +singular +116709 singular +singular +plural +plural +plural +singular +singular +singular +singular +singular +116720 singular +singular +singular +116724 singular +singular +singular +116728 singular +singular +plural +singular +singular +116734 singular +116737 plural +plural +plural +plural +116743 plural +116745 plural +116747 singular +singular +116750 plural +singular +singular +116754 plural +singular +plural +plural +singular +singular +plural +plural +singular +singular +116765 plural +plural +singular +singular +116770 singular +singular +116773 singular +singular +singular +singular +singular +singular +singular +116781 singular +singular +116784 singular +singular +singular +singular +plural +plural +116791 singular +singular +plural +plural +plural +plural +116798 singular +116800 singular +116802 singular +116804 plural +singular +singular +singular +singular +singular +singular +116812 singular +singular +plural +116817 plural +singular +singular +116821 plural +plural +116824 singular +116826 singular +singular +plural +116830 singular +plural +singular +plural +116835 singular +singular +116838 singular +plural +116841 singular +singular +singular +116845 singular +plural +116848 plural +116850 plural +singular +singular +singular +singular +116856 plural +singular +singular +plural +116861 plural +singular +singular +singular +116866 plural +singular +singular +116870 plural +116874 singular +plural +plural +singular +singular +singular +singular +116882 plural +116884 singular +singular +singular +singular +116889 singular +singular +116892 singular +116894 singular +singular +singular +plural +116899 plural +116901 singular +singular +singular +116905 singular +singular +116908 singular +plural +116911 plural +singular +116914 singular +116916 singular +singular +singular +116920 singular +116922 plural +plural +116925 plural +plural +plural +116929 plural +singular +116934 plural +116937 singular +singular +singular +116941 singular +singular +plural +116945 singular +singular +singular +plural +116950 singular +singular +singular +plural +116955 plural +plural +plural +116959 plural +singular +plural +singular +singular +singular +116967 singular +singular +singular +singular +116972 singular +116975 plural +plural +116978 plural +plural +116981 singular +116983 singular +plural +plural +plural +116988 singular +singular +singular +singular +singular +116995 singular +singular +116998 singular +singular +117001 singular +singular +117005 singular +singular +singular +117009 singular +singular +singular +117014 singular +singular +singular +singular +117019 plural +117021 singular +singular +plural +117025 plural +singular +singular +singular +117030 singular +singular +singular +117034 singular +singular +singular +117038 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +117054 plural +plural +117057 plural +singular +117060 singular +singular +singular +plural +plural +plural +117067 singular +singular +singular +singular +plural +117073 singular +singular +singular +117077 singular +117079 singular +117081 singular +117083 singular +singular +singular +singular +117088 singular +singular +117091 plural +singular +117094 singular +singular +singular +singular +singular +117100 singular +singular +117103 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +117118 singular +singular +plural +plural +117123 singular +singular +singular +117127 singular +117129 plural +singular +singular +117133 singular +singular +singular +singular +117140 singular +singular +singular +singular +singular +singular +singular +singular +singular +117150 singular +plural +117153 singular +singular +singular +117157 singular +singular +singular +singular +singular +singular +singular +117165 singular +singular +117168 plural +singular +singular +singular +singular +singular +singular +singular +singular +117178 plural +plural +117182 plural +117184 plural +plural +singular +singular +singular +plural +singular +plural +117194 singular +singular +singular +singular +singular +singular +plural +plural +plural +117204 plural +117206 singular +singular +singular +117210 singular +117212 singular +117214 plural +singular +singular +117218 singular +singular +plural +plural +singular +117225 singular +singular +singular +singular +117230 singular +singular +singular +117236 plural +plural +plural +plural +117242 singular +117244 singular +117247 singular +117250 singular +117252 singular +singular +plural +singular +singular +117260 singular +singular +singular +singular +singular +117266 singular +singular +singular +117272 singular +117274 singular +singular +singular +singular +117279 singular +singular +117282 singular +singular +singular +117286 singular +117288 singular +singular +singular +117292 singular +singular +117297 singular +singular +singular +117302 singular +singular +singular +117306 singular +117308 singular +singular +singular +117313 singular +singular +plural +singular +singular +singular +117320 singular +singular +singular +singular +singular +117326 singular +117329 singular +singular +singular +singular +plural +117335 singular +singular +117338 plural +singular +singular +singular +117343 singular +117345 singular +singular +117349 singular +singular +singular +singular +singular +singular +singular +singular +117359 singular +singular +singular +117364 singular +singular +singular +117368 singular +117370 singular +singular +117373 singular +singular +117376 singular +singular +singular +117381 singular +singular +singular +singular +117386 singular +singular +singular +117390 singular +117392 singular +singular +singular +singular +117397 singular +singular +singular +117401 singular +plural +singular +singular +117407 singular +117410 singular +117413 plural +117415 singular +plural +plural +plural +117420 singular +117422 singular +117424 singular +singular +117427 singular +singular +singular +117432 singular +singular +singular +117436 singular +singular +117439 singular +117441 singular +singular +singular +singular +singular +117448 plural +plural +plural +plural +plural +117454 singular +singular +117459 singular +117461 singular +117463 singular +117465 singular +singular +singular +singular +singular +singular +117473 singular +117476 singular +singular +plural +plural +117481 singular +singular +singular +117485 singular +117487 singular +117490 plural +117492 plural +117494 singular +singular +singular +singular +singular +singular +singular +117502 plural +plural +117505 singular +plural +plural +singular +singular +117511 singular +117513 singular +singular +117516 plural +plural +singular +117520 plural +plural +plural +plural +117526 plural +singular +singular +117530 singular +singular +117533 singular +singular +117536 singular +singular +plural +singular +plural +plural +singular +117544 singular +singular +singular +singular +singular +117550 singular +singular +singular +117554 singular +singular +singular +117558 singular +117560 plural +plural +plural +singular +singular +singular +singular +117568 singular +singular +singular +singular +singular +117574 plural +plural +singular +plural +plural +117580 singular +singular +singular +singular +singular +singular +singular +singular +117589 singular +117591 singular +singular +117594 singular +117597 plural +117599 plural +singular +117602 singular +117605 singular +singular +singular +singular +117612 singular +117614 singular +117617 singular +singular +plural +plural +plural +117623 singular +plural +plural +plural +singular +117629 singular +plural +plural +plural +117634 singular +singular +singular +117638 singular +singular +117641 singular +singular +singular +plural +117646 singular +singular +singular +singular +singular +117652 singular +singular +117656 singular +singular +singular +singular +117661 singular +singular +singular +singular +singular +117667 plural +plural +singular +117672 singular +singular +singular +singular +singular +117679 singular +singular +singular +117683 singular +plural +singular +singular +plural +plural +singular +singular +117692 singular +117694 singular +singular +singular +117699 singular +singular +singular +singular +singular +117706 singular +singular +singular +singular +plural +plural +plural +117714 singular +singular +singular +singular +singular +plural +117721 plural +117723 singular +singular +117726 plural +117728 plural +117730 singular +singular +singular +singular +singular +plural +singular +singular +117739 singular +singular +singular +singular +singular +singular +singular +singular +117748 plural +plural +plural +singular +singular +singular +plural +singular +117757 singular +singular +plural +117762 plural +plural +singular +plural +117767 singular +plural +117770 singular +117772 plural +plural +singular +117776 singular +117780 plural +singular +singular +singular +singular +117786 singular +singular +singular +singular +singular +singular +singular +singular +117795 plural +plural +singular +117799 singular +117801 singular +plural +117804 singular +singular +plural +plural +plural +117810 plural +plural +plural +117815 singular +117818 singular +117820 singular +singular +singular +singular +117825 singular +singular +117828 singular +117830 singular +117833 singular +117835 singular +singular +plural +singular +117840 singular +singular +singular +117844 singular +singular +singular +singular +117849 singular +117851 singular +singular +117854 singular +singular +117857 singular +singular +plural +plural +singular +singular +plural +117866 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +117878 singular +singular +singular +singular +singular +117884 singular +117886 singular +singular +singular +singular +singular +singular +117893 singular +singular +singular +singular +singular +117899 plural +plural +singular +singular +117905 singular +plural +singular +plural +singular +singular +117912 plural +117914 singular +117918 singular +117920 plural +117922 plural +117925 singular +singular +singular +117929 singular +plural +plural +plural +plural +plural +plural +117938 singular +singular +117941 singular +singular +singular +singular +singular +117948 singular +singular +singular +117952 singular +117954 plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +117966 singular +plural +plural +singular +117971 singular +singular +singular +singular +singular +singular +singular +117979 singular +singular +singular +singular +117984 singular +117986 plural +117988 plural +plural +117991 plural +117993 singular +117995 singular +singular +singular +117999 plural +118001 plural +118003 plural +plural +plural +singular +118008 singular +singular +plural +118012 singular +singular +singular +plural +plural +plural +118019 singular +singular +118022 singular +singular +118025 singular +singular +singular +118029 singular +singular +singular +118034 singular +plural +118037 plural +118040 singular +singular +singular +singular +118046 plural +plural +singular +singular +singular +118053 singular +singular +plural +118057 plural +118059 singular +singular +singular +plural +plural +singular +118066 singular +singular +singular +singular +singular +118072 singular +singular +singular +singular +singular +118078 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +118090 plural +plural +118093 singular +118095 singular +singular +118099 singular +singular +singular +singular +singular +118105 singular +singular +118108 singular +plural +118111 singular +singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +singular +118125 singular +singular +118128 singular +singular +singular +118132 singular +118134 plural +singular +118139 singular +118141 singular +singular +singular +118146 singular +singular +118149 singular +singular +118152 singular +singular +singular +118156 singular +singular +118159 singular +singular +singular +singular +singular +singular +singular +plural +plural +118169 plural +plural +118172 singular +118174 singular +singular +118177 singular +118179 singular +singular +singular +118183 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +118196 plural +singular +singular +118201 singular +singular +118204 plural +plural +plural +singular +singular +singular +singular +118212 singular +118216 singular +plural +singular +118220 singular +singular +118224 singular +118226 singular +singular +118229 singular +118231 plural +plural +plural +118235 plural +plural +plural +118240 plural +plural +plural +plural +plural +118246 plural +118248 singular +singular +118252 plural +plural +plural +plural +plural +118259 singular +singular +singular +118264 singular +singular +singular +singular +118269 plural +118273 singular +singular +118276 singular +singular +singular +118280 plural +plural +118283 singular +118285 singular +singular +118288 singular +singular +118293 singular +singular +118299 singular +plural +plural +118303 singular +singular +singular +118307 singular +singular +singular +singular +118313 singular +singular +plural +plural +118321 singular +singular +118325 singular +singular +118328 singular +118330 singular +plural +plural +118335 singular +118337 singular +singular +plural +singular +plural +118343 singular +118345 singular +singular +singular +singular +plural +plural +plural +118353 singular +singular +singular +plural +plural +118359 singular +plural +plural +plural +plural +plural +118366 singular +singular +118369 singular +plural +plural +118376 plural +plural +118379 singular +singular +118383 singular +plural +plural +plural +118388 plural +118391 plural +singular +plural +118395 singular +118397 singular +singular +plural +118401 plural +118403 plural +118405 singular +118407 singular +singular +singular +singular +118412 singular +118414 singular +118416 singular +singular +singular +plural +118422 singular +118424 singular +118426 singular +singular +singular +singular +118431 singular +singular +singular +118435 singular +singular +singular +118439 singular +singular +singular +singular +singular +118445 plural +118447 plural +118449 plural +118452 singular +118454 singular +118456 singular +plural +118459 singular +plural +118462 singular +singular +singular +singular +118467 singular +singular +singular +singular +singular +singular +118474 singular +singular +singular +118478 singular +singular +plural +plural +118483 singular +singular +singular +singular +singular +singular +118492 singular +singular +singular +118496 singular +singular +118500 singular +plural +plural +plural +plural +118506 plural +118508 plural +118510 singular +singular +singular +118514 plural +singular +118517 singular +singular +singular +118521 singular +singular +singular +singular +singular +singular +118528 plural +plural +plural +singular +singular +plural +plural +singular +118537 singular +singular +singular +118541 singular +singular +plural +plural +118546 singular +plural +118549 singular +singular +singular +singular +118555 singular +118557 singular +singular +singular +singular +singular +118563 plural +118565 plural +plural +plural +singular +singular +singular +plural +singular +118574 plural +plural +118578 singular +singular +plural +singular +plural +118584 plural +plural +plural +118588 plural +plural +plural +118593 singular +118597 singular +plural +118600 singular +118602 singular +118604 plural +plural +singular +118608 singular +singular +plural +plural +118613 singular +singular +singular +singular +singular +plural +singular +singular +118622 singular +118624 singular +singular +singular +singular +singular +singular +singular +118632 singular +singular +118635 singular +singular +singular +singular +plural +118641 singular +singular +118644 singular +singular +plural +plural +plural +118650 singular +singular +118653 plural +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +118665 singular +singular +singular +118669 plural +plural +118672 singular +singular +118675 plural +plural +118678 plural +singular +singular +plural +118683 singular +plural +118686 plural +118689 singular +singular +plural +singular +singular +singular +118697 plural +plural +118700 singular +118702 singular +singular +singular +singular +118708 plural +singular +singular +118712 singular +singular +singular +singular +118717 singular +singular +singular +118721 plural +plural +singular +singular +singular +singular +118728 plural +118730 plural +118732 plural +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +118747 singular +singular +singular +singular +singular +singular +118754 singular +singular +118757 singular +singular +singular +singular +singular +118763 plural +singular +singular +singular +singular +singular +singular +118772 singular +singular +singular +singular +singular +singular +singular +118781 plural +singular +singular +118785 plural +plural +singular +plural +118790 plural +plural +plural +singular +singular +plural +118797 singular +118799 plural +118801 plural +plural +118804 singular +plural +plural +118808 plural +plural +118812 plural +plural +plural +118816 singular +singular +plural +plural +plural +118822 singular +plural +plural +118826 plural +singular +singular +118830 singular +118833 plural +singular +singular +plural +singular +singular +singular +singular +118842 singular +singular +plural +118846 singular +singular +singular +singular +plural +plural +singular +singular +118856 singular +singular +singular +singular +singular +singular +118864 singular +118866 singular +singular +singular +118870 singular +singular +118874 singular +118876 singular +singular +singular +singular +118881 singular +118883 plural +plural +118886 singular +118888 singular +118890 singular +118892 singular +singular +118895 singular +singular +plural +singular +singular +plural +118902 plural +118905 singular +plural +plural +plural +singular +plural +118912 plural +plural +singular +singular +118917 singular +118920 plural +singular +singular +118924 singular +singular +singular +singular +118929 singular +singular +singular +singular +118934 singular +singular +118937 singular +singular +118940 plural +plural +singular +singular +singular +118947 singular +singular +118950 singular +singular +singular +singular +singular +118957 singular +118960 singular +118962 singular +singular +singular +singular +118968 singular +singular +singular +118972 singular +singular +118976 singular +singular +118980 singular +118982 singular +singular +singular +singular +118987 singular +118989 plural +plural +singular +singular +singular +singular +singular +singular +118998 plural +119000 plural +singular +singular +singular +119005 singular +singular +singular +singular +119010 singular +singular +singular +singular +119015 singular +119017 singular +singular +singular +singular +singular +singular +singular +singular +119027 singular +singular +singular +119032 singular +119034 singular +119036 singular +119038 singular +singular +singular +119042 singular +singular +singular +119046 singular +119048 plural +singular +119051 singular +119053 singular +plural +plural +singular +singular +singular +singular +119061 singular +singular +plural +plural +singular +singular +singular +singular +119070 singular +singular +singular +singular +119075 singular +singular +singular +119079 singular +singular +singular +119084 singular +singular +119087 singular +singular +singular +singular +119094 singular +singular +plural +119098 plural +119100 plural +plural +singular +singular +singular +singular +119108 singular +singular +singular +119112 singular +singular +singular +singular +singular +singular +119119 singular +plural +plural +plural +119124 plural +plural +plural +119129 plural +plural +119132 plural +119134 plural +119136 plural +119138 plural +plural +119141 singular +singular +119144 plural +plural +plural +plural +119149 singular +plural +119154 plural +singular +119157 singular +plural +119160 plural +singular +119165 plural +singular +singular +singular +singular +119172 singular +plural +singular +singular +singular +plural +119180 singular +plural +singular +singular +singular +singular +singular +singular +singular +119190 singular +singular +singular +singular +plural +plural +singular +119198 singular +singular +119202 singular +singular +singular +singular +singular +119210 plural +119212 singular +singular +singular +119216 singular +119219 singular +singular +singular +119224 plural +singular +singular +singular +singular +119230 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +119241 singular +119243 singular +singular +singular +singular +singular +singular +singular +singular +119252 singular +singular +plural +plural +singular +singular +119260 plural +plural +singular +singular +singular +singular +singular +singular +singular +119270 plural +plural +singular +119274 plural +singular +singular +singular +119280 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +119291 singular +singular +singular +singular +119297 singular +singular +singular +singular +119302 singular +119304 singular +singular +singular +singular +singular +plural +singular +plural +singular +singular +singular +singular +119317 singular +119319 singular +singular +singular +singular +singular +119325 singular +singular +singular +singular +singular +119331 singular +singular +119334 singular +singular +singular +singular +singular +singular +119341 singular +singular +singular +singular +119347 singular +singular +plural +plural +singular +plural +singular +plural +singular +singular +singular +119360 singular +singular +singular +singular +plural +plural +plural +plural +singular +plural +plural +singular +plural +plural +119376 plural +singular +singular +singular +singular +119382 singular +plural +plural +singular +plural +plural +119389 singular +119391 singular +119393 singular +119395 singular +singular +singular +singular +singular +119401 singular +singular +singular +singular +119406 singular +119408 singular +119410 plural +plural +plural +119414 singular +plural +plural +plural +singular +plural +plural +plural +plural +plural +plural +singular +singular +plural +plural +singular +plural +119432 singular +plural +plural +119436 singular +plural +plural +plural +plural +plural +119443 singular +plural +plural +plural +119448 plural +plural +119451 plural +singular +singular +119455 singular +singular +plural +119459 plural +plural +119462 plural +singular +plural +119467 plural +119469 singular +plural +plural +plural +119474 singular +singular +plural +plural +119479 plural +119481 plural +plural +plural +plural +plural +plural +119488 plural +119490 plural +119492 plural +119494 plural +plural +singular +singular +plural +119500 singular +singular +singular +singular +119505 plural +plural +plural +119509 singular +singular +119512 plural +singular +singular +singular +singular +119518 plural +singular +singular +singular +119525 plural +plural +119529 plural +plural +singular +singular +plural +singular +plural +plural +singular +singular +119540 singular +singular +singular +119544 singular +plural +singular +singular +plural +singular +plural +119552 singular +singular +singular +singular +119557 singular +singular +singular +119561 singular +singular +singular +singular +singular +singular +singular +singular +119571 singular +singular +singular +singular +singular +singular +119578 plural +singular +singular +singular +119583 plural +plural +119586 singular +singular +119590 plural +plural +plural +plural +plural +119597 singular +plural +119600 singular +singular +plural +119604 plural +singular +singular +singular +plural +119610 plural +singular +singular +singular +119615 singular +singular +singular +119619 singular +119621 singular +singular +119624 singular +singular +singular +singular +119629 singular +singular +singular +singular +singular +119635 singular +plural +119638 plural +plural +singular +singular +singular +119644 singular +singular +singular +119648 singular +singular +119652 plural +119654 singular +singular +plural +plural +plural +119660 plural +119663 plural +plural +119667 plural +singular +singular +plural +plural +plural +plural +119675 plural +119677 singular +119679 plural +singular +singular +plural +plural +119685 plural +119688 plural +119690 plural +plural +119693 singular +singular +plural +plural +119698 singular +119700 singular +singular +119703 singular +119705 singular +singular +singular +119709 singular +singular +119713 singular +singular +singular +119717 singular +119720 singular +119722 singular +singular +singular +singular +plural +119728 singular +plural +singular +119732 plural +plural +plural +119736 plural +plural +plural +plural +119741 plural +plural +plural +plural +plural +plural +119749 singular +singular +singular +119753 singular +119755 plural +119757 plural +singular +119760 singular +singular +singular +119764 singular +singular +singular +singular +plural +119770 singular +singular +119773 singular +singular +singular +singular +119778 singular +singular +singular +119782 singular +singular +119786 singular +plural +plural +plural +119791 singular +singular +119794 singular +119796 singular +singular +119799 singular +singular +singular +plural +plural +singular +119806 plural +119810 singular +119812 singular +singular +singular +119816 singular +singular +119819 singular +119822 plural +singular +singular +119827 plural +singular +119830 singular +singular +119833 singular +119835 singular +119837 singular +119839 singular +singular +119842 singular +plural +singular +plural +plural +plural +119850 plural +singular +119854 plural +singular +singular +119858 singular +singular +singular +singular +singular +119865 singular +singular +singular +singular +singular +singular +singular +singular +119874 singular +119876 plural +singular +singular +119880 singular +singular +singular +singular +singular +119886 plural +plural +singular +119890 singular +plural +plural +119894 plural +119896 singular +plural +singular +119900 plural +plural +plural +119904 singular +singular +singular +singular +119909 singular +singular +singular +singular +119914 singular +singular +plural +119918 plural +singular +singular +119924 plural +plural +plural +singular +119929 singular +singular +singular +119933 plural +plural +singular +119937 plural +plural +singular +singular +singular +singular +singular +singular +119948 singular +singular +119952 singular +singular +119955 singular +singular +singular +119960 singular +singular +119963 singular +119966 singular +singular +plural +plural +singular +119972 plural +119974 singular +plural +119977 plural +119979 singular +singular +plural +plural +singular +119985 singular +plural +119988 singular +singular +119991 singular +119993 singular +119996 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +120007 plural +120010 singular +plural +plural +plural +plural +plural +plural +plural +120019 plural +plural +plural +120024 plural +plural +120027 singular +singular +singular +singular +120032 plural +120034 singular +singular +singular +120038 plural +120040 plural +singular +singular +singular +singular +singular +singular +plural +plural +plural +120051 singular +singular +120055 singular +singular +120060 singular +singular +120063 plural +plural +120066 singular +singular +singular +120070 singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +120100 singular +singular +120104 plural +plural +plural +plural +120109 plural +120111 plural +120113 singular +singular +120116 singular +singular +120119 plural +120121 plural +120123 plural +plural +plural +plural +singular +120129 singular +120132 plural +singular +plural +singular +singular +plural +120139 singular +plural +plural +singular +singular +120145 singular +120147 plural +plural +120150 singular +singular +plural +plural +plural +singular +120157 singular +singular +120161 singular +120163 singular +120165 singular +singular +singular +singular +singular +120171 singular +singular +singular +120175 plural +120177 singular +120179 singular +singular +singular +singular +singular +plural +120187 plural +120189 singular +singular +120192 singular +singular +plural +120197 singular +plural +120200 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +120214 singular +singular +120217 singular +120219 plural +120221 plural +plural +singular +singular +singular +plural +plural +plural +plural +120231 plural +120233 plural +plural +120236 plural +plural +plural +120240 singular +plural +120244 singular +singular +plural +120249 plural +120251 singular +plural +singular +plural +120256 plural +120258 plural +120260 singular +singular +plural +120264 plural +120267 plural +120270 singular +singular +120274 singular +singular +plural +120278 singular +singular +singular +singular +singular +singular +120285 plural +120287 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +plural +singular +singular +plural +120303 singular +singular +120306 singular +120308 singular +singular +singular +singular +120313 plural +singular +singular +120317 singular +120319 singular +singular +singular +singular +singular +120325 plural +plural +plural +plural +120331 singular +plural +plural +plural +singular +singular +singular +singular +120342 plural +singular +plural +plural +singular +singular +plural +singular +singular +120352 singular +120354 singular +singular +singular +plural +plural +plural +plural +plural +plural +120364 plural +plural +plural +plural +plural +plural +120371 singular +singular +singular +singular +120376 plural +plural +singular +singular +120381 singular +singular +singular +singular +plural +120387 plural +plural +120390 singular +singular +120393 plural +singular +singular +singular +plural +120399 plural +plural +plural +plural +120404 singular +singular +plural +singular +singular +singular +singular +120412 singular +singular +singular +singular +singular +120418 plural +plural +120421 plural +120423 singular +plural +120427 singular +plural +singular +singular +singular +120433 singular +singular +plural +120439 singular +singular +120442 singular +singular +120445 singular +120447 singular +singular +singular +120451 singular +singular +singular +singular +singular +singular +120458 singular +120461 singular +singular +singular +singular +120466 singular +singular +120469 singular +singular +singular +singular +singular +120475 plural +plural +plural +singular +120480 singular +singular +singular +singular +singular +120486 singular +singular +singular +120490 singular +singular +120493 singular +singular +singular +120498 singular +singular +singular +120502 singular +singular +singular +120506 singular +singular +120509 singular +singular +singular +120513 singular +singular +singular +singular +120518 singular +singular +singular +singular +singular +singular +120526 singular +singular +120529 plural +plural +singular +singular +singular +singular +singular +singular +singular +120539 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +120556 singular +singular +120559 singular +singular +singular +singular +plural +120565 singular +singular +singular +120569 singular +singular +120572 singular +singular +singular +singular +120577 singular +120579 singular +singular +singular +singular +singular +120585 singular +singular +singular +singular +singular +120591 plural +plural +singular +plural +singular +singular +singular +120599 singular +singular +singular +120603 singular +singular +120606 singular +singular +plural +plural +120611 singular +120613 singular +singular +120616 singular +singular +singular +singular +plural +singular +singular +120624 singular +120626 plural +singular +singular +plural +singular +plural +plural +plural +singular +plural +120637 singular +singular +singular +singular +120642 singular +120644 singular +120646 singular +120648 singular +120650 singular +120652 singular +singular +singular +singular +120657 singular +120659 plural +singular +singular +120663 singular +singular +120666 singular +plural +singular +singular +singular +singular +singular +120674 plural +plural +plural +120678 plural +plural +singular +120683 plural +plural +plural +plural +120689 singular +singular +singular +singular +120695 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +120706 singular +120708 singular +singular +120711 singular +120714 singular +singular +singular +120718 singular +singular +120721 singular +singular +singular +singular +singular +120727 singular +singular +120730 singular +singular +120733 singular +singular +singular +singular +120738 singular +singular +singular +singular +120743 singular +singular +singular +120748 singular +singular +singular +120752 singular +singular +singular +singular +singular +singular +singular +singular +singular +120762 singular +120764 singular +singular +120767 singular +singular +singular +120771 plural +120773 plural +120775 singular +singular +plural +singular +singular +120782 singular +singular +plural +singular +120788 plural +plural +singular +singular +singular +singular +plural +singular +singular +singular +singular +120801 singular +120803 singular +plural +singular +singular +120808 singular +singular +120811 singular +120813 singular +120815 singular +singular +120818 plural +120820 singular +singular +singular +singular +singular +singular +120827 plural +singular +singular +120833 singular +singular +plural +singular +singular +120840 singular +120842 singular +singular +singular +120846 plural +120848 plural +120850 plural +plural +plural +plural +plural +plural +singular +plural +120859 singular +singular +singular +plural +plural +singular +singular +plural +120868 singular +120870 plural +singular +singular +singular +singular +plural +plural +singular +120879 plural +plural +singular +singular +120884 plural +plural +plural +plural +120889 plural +plural +plural +120893 plural +120895 plural +plural +singular +singular +singular +singular +singular +120903 plural +120906 singular +singular +plural +120910 singular +singular +singular +singular +120915 singular +120917 singular +120919 plural +120922 plural +singular +plural +plural +120927 singular +singular +120930 plural +120932 singular +singular +singular +singular +singular +120938 singular +120940 singular +singular +plural +singular +120945 singular +singular +120948 singular +singular +120952 singular +120956 singular +120958 singular +singular +singular +singular +120963 plural +120966 plural +120969 singular +singular +120972 plural +120974 singular +singular +singular +singular +120979 singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +120990 singular +120992 singular +singular +120995 plural +120997 singular +120999 singular +singular +singular +121003 singular +121005 singular +121007 singular +plural +plural +121011 plural +singular +singular +singular +121016 singular +plural +singular +121020 plural +plural +121023 singular +plural +121026 plural +121029 plural +plural +plural +plural +singular +singular +singular +singular +singular +121040 singular +singular +121044 singular +plural +singular +singular +121049 singular +121051 singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +121065 plural +plural +singular +singular +singular +121071 plural +plural +singular +singular +singular +singular +singular +121079 singular +singular +singular +singular +121084 singular +121086 plural +plural +plural +121090 plural +121093 singular +singular +singular +121098 singular +singular +121101 plural +plural +singular +singular +singular +singular +singular +plural +121111 plural +singular +singular +singular +singular +singular +singular +121119 singular +singular +singular +121123 singular +singular +singular +plural +plural +singular +121131 plural +plural +singular +singular +singular +121137 singular +singular +singular +singular +singular +121143 singular +singular +singular +singular +121148 singular +singular +121151 singular +121153 singular +singular +singular +plural +121159 plural +singular +singular +121165 singular +singular +121170 singular +singular +singular +121175 plural +singular +singular +plural +plural +121181 singular +singular +singular +121186 singular +singular +121189 singular +singular +singular +121194 singular +singular +121197 plural +singular +singular +plural +singular +121203 plural +plural +plural +plural +121208 singular +singular +plural +121212 plural +plural +plural +121216 singular +121218 singular +121220 singular +singular +singular +singular +singular +121227 singular +singular +singular +121232 plural +plural +plural +plural +121237 plural +plural +plural +121241 singular +121243 plural +plural +121246 singular +singular +singular +plural +plural +singular +121253 plural +plural +plural +plural +121259 plural +plural +plural +singular +121264 singular +singular +121267 singular +singular +singular +singular +singular +121274 singular +singular +singular +singular +singular +121280 plural +singular +singular +singular +singular +singular +singular +singular +121289 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +121300 plural +plural +plural +singular +singular +singular +singular +singular +121309 singular +singular +singular +singular +singular +121315 singular +121317 singular +singular +121320 singular +singular +121323 plural +121325 plural +121327 plural +121329 plural +singular +121332 singular +singular +singular +singular +singular +121338 singular +singular +121341 singular +singular +plural +singular +singular +singular +singular +singular +121350 singular +plural +singular +singular +121355 singular +121358 singular +plural +plural +plural +plural +121364 singular +singular +plural +121368 singular +singular +singular +singular +singular +121374 singular +plural +singular +121378 singular +plural +121383 singular +singular +121386 singular +singular +singular +singular +singular +singular +121393 singular +singular +plural +singular +121398 singular +singular +plural +121403 singular +plural +121406 singular +121408 singular +singular +singular +singular +121413 singular +121415 plural +singular +121418 singular +singular +singular +plural +plural +singular +121425 singular +singular +121429 plural +singular +singular +121433 singular +121435 singular +singular +plural +121439 plural +121441 plural +121443 singular +singular +121446 singular +singular +singular +singular +121451 singular +121453 singular +singular +singular +121458 singular +121460 singular +121462 singular +121464 singular +singular +singular +121468 singular +121470 singular +singular +121473 singular +singular +121476 singular +singular +singular +singular +singular +121482 plural +plural +singular +singular +121487 singular +singular +121490 singular +singular +plural +plural +singular +121496 plural +121499 plural +121501 plural +121505 plural +plural +plural +plural +plural +121511 plural +plural +plural +plural +121517 plural +plural +121520 plural +121523 plural +121525 plural +121527 plural +121529 plural +121531 singular +121534 plural +plural +121538 plural +121541 plural +121544 plural +plural +plural +plural +plural +121550 plural +121552 singular +singular +singular +singular +singular +singular +singular +singular +121562 singular +singular +121565 singular +singular +singular +singular +singular +singular +singular +121573 plural +121576 singular +singular +singular +121580 singular +singular +singular +singular +singular +singular +121587 plural +121589 singular +singular +singular +121593 singular +singular +singular +plural +singular +121599 plural +singular +singular +121603 plural +singular +singular +121607 plural +singular +singular +121611 singular +121613 plural +plural +singular +singular +121618 singular +plural +plural +plural +plural +121624 plural +plural +plural +plural +121629 plural +121631 plural +singular +singular +plural +121636 singular +singular +121639 singular +singular +121642 singular +plural +121645 singular +121647 singular +plural +121650 plural +plural +plural +singular +singular +singular +121657 singular +singular +singular +singular +singular +singular +121664 singular +singular +121668 singular +singular +singular +121672 singular +singular +121675 singular +singular +singular +singular +121680 singular +singular +singular +121687 singular +singular +singular +singular +singular +singular +121694 singular +121696 plural +plural +121701 plural +121703 singular +singular +singular +121707 plural +121709 singular +121711 plural +121713 plural +plural +121716 plural +singular +121719 singular +singular +singular +plural +121724 plural +singular +singular +121728 singular +singular +121732 singular +121734 singular +121736 plural +121738 singular +singular +singular +121742 plural +121744 plural +singular +121747 singular +121750 plural +121752 plural +plural +plural +singular +singular +singular +singular +singular +121761 singular +singular +121766 singular +singular +singular +singular +singular +121772 plural +plural +plural +plural +121777 plural +plural +plural +plural +plural +singular +singular +plural +singular +121787 plural +plural +plural +plural +singular +singular +singular +plural +121796 singular +singular +singular +121800 singular +singular +plural +121804 singular +plural +singular +121808 singular +plural +plural +plural +121813 singular +plural +121816 plural +plural +singular +singular +singular +plural +plural +plural +plural +plural +plural +plural +singular +singular +121831 plural +singular +121834 plural +plural +plural +plural +121839 plural +plural +singular +plural +plural +plural +121846 singular +singular +121849 plural +plural +plural +plural +plural +121855 singular +singular +plural +plural +singular +singular +121862 singular +plural +121865 plural +plural +121868 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +121883 singular +121885 singular +singular +121888 singular +plural +121891 plural +plural +plural +plural +plural +121897 singular +singular +singular +singular +singular +plural +121904 plural +121906 plural +121909 plural +singular +singular +singular +121914 plural +plural +singular +plural +plural +singular +singular +singular +121923 singular +singular +plural +plural +plural +plural +121930 singular +singular +singular +singular +plural +plural +plural +singular +singular +singular +plural +121942 singular +singular +singular +plural +121947 singular +singular +singular +singular +121952 singular +121954 plural +singular +121957 plural +121959 plural +121961 singular +singular +121964 singular +singular +121967 singular +singular +singular +121971 singular +plural +singular +121977 singular +121983 singular +plural +singular +singular +121988 plural +singular +singular +singular +singular +singular +singular +121996 plural +singular +plural +plural +singular +singular +122003 plural +122005 singular +plural +singular +122009 singular +singular +singular +singular +122014 singular +singular +singular +singular +singular +singular +singular +122022 singular +singular +singular +singular +122027 plural +singular +singular +singular +singular +122033 plural +plural +plural +plural +122038 plural +122040 plural +122042 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +122054 singular +singular +singular +122061 singular +122063 singular +singular +plural +plural +122068 plural +122072 singular +122074 singular +singular +singular +singular +122079 singular +singular +singular +singular +singular +singular +plural +singular +122088 singular +122090 plural +singular +122093 singular +singular +122096 singular +singular +singular +plural +122101 singular +singular +singular +122105 singular +singular +singular +singular +singular +singular +122112 singular +122114 singular +singular +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +122129 singular +122131 singular +singular +singular +122135 singular +singular +122138 singular +122140 singular +singular +singular +singular +singular +122146 singular +plural +singular +singular +singular +singular +122153 singular +singular +singular +plural +singular +singular +singular +122161 singular +singular +singular +singular +singular +plural +122168 singular +singular +122171 singular +singular +singular +122175 plural +122177 singular +singular +122180 singular +122182 singular +singular +122185 plural +122187 plural +plural +122190 singular +singular +plural +122194 singular +122196 singular +singular +122200 singular +singular +122203 singular +plural +122206 singular +122208 singular +plural +122211 plural +plural +122214 singular +singular +plural +singular +singular +singular +singular +singular +singular +122225 singular +singular +singular +122229 singular +122231 singular +122233 singular +122235 singular +singular +singular +singular +122240 plural +plural +122244 singular +122247 plural +plural +plural +singular +singular +122253 singular +plural +singular +singular +singular +singular +singular +plural +122262 singular +singular +plural +122266 plural +plural +plural +122270 singular +122272 plural +singular +plural +plural +122277 singular +122279 singular +singular +singular +singular +122284 plural +singular +singular +singular +plural +122290 singular +plural +122293 plural +122295 plural +plural +plural +singular +122301 plural +122303 plural +plural +plural +plural +122308 singular +plural +122311 plural +plural +plural +122315 singular +singular +singular +122319 singular +122321 plural +122323 plural +plural +122326 plural +plural +plural +singular +singular +plural +plural +122334 plural +122336 singular +singular +plural +singular +122341 singular +singular +singular +122345 plural +singular +122348 plural +plural +singular +122352 singular +singular +plural +plural +122358 singular +singular +plural +singular +122363 plural +plural +122366 singular +singular +plural +122370 singular +plural +plural +122374 singular +singular +122378 singular +plural +singular +122382 singular +122384 singular +singular +singular +122388 singular +singular +singular +singular +plural +singular +plural +plural +122398 plural +singular +122401 singular +plural +122404 singular +singular +plural +singular +singular +122410 singular +singular +122413 singular +singular +122416 singular +singular +122419 singular +122421 singular +singular +122424 singular +122426 singular +plural +plural +122430 plural +plural +122433 singular +plural +122436 singular +singular +singular +singular +122441 plural +122443 singular +singular +singular +122447 singular +singular +plural +122451 singular +122454 singular +plural +plural +plural +plural +122460 singular +singular +singular +singular +122465 singular +singular +122468 singular +plural +plural +122472 plural +122475 singular +singular +122478 singular +122480 singular +singular +singular +122484 singular +122486 singular +singular +122489 singular +122491 singular +singular +singular +122495 singular +singular +singular +singular +singular +122501 singular +singular +singular +122505 singular +singular +singular +singular +122510 singular +singular +122513 singular +singular +singular +singular +singular +singular +122520 plural +122522 plural +singular +singular +122526 singular +singular +122529 plural +122531 plural +122533 plural +plural +122536 plural +plural +singular +singular +singular +singular +plural +122545 singular +plural +122548 singular +122550 plural +122552 singular +singular +singular +plural +122557 singular +singular +singular +122562 plural +singular +122566 singular +singular +singular +122570 plural +122572 plural +plural +plural +singular +singular +122578 singular +singular +122581 plural +plural +plural +singular +122586 singular +singular +122589 singular +122591 singular +singular +singular +122595 singular +singular +singular +singular +singular +122601 singular +singular +122604 singular +122607 singular +122609 singular +singular +plural +plural +plural +122615 plural +singular +singular +plural +plural +plural +singular +singular +122624 singular +singular +122627 singular +singular +122630 singular +singular +plural +plural +singular +singular +plural +122638 singular +122640 plural +122642 plural +singular +singular +singular +singular +singular +singular +singular +122651 singular +122653 plural +plural +plural +singular +122658 singular +plural +singular +122662 singular +singular +singular +singular +plural +122669 singular +122672 singular +singular +plural +122676 plural +122679 plural +plural +singular +122683 plural +122685 plural +122687 plural +plural +plural +plural +plural +122693 singular +singular +singular +singular +plural +122699 plural +plural +plural +singular +122705 singular +plural +plural +122709 plural +122711 plural +plural +plural +plural +plural +singular +singular +122719 singular +singular +plural +122723 singular +singular +singular +singular +singular +122729 singular +122731 singular +122733 plural +122736 singular +plural +122739 singular +plural +122742 singular +plural +122746 singular +singular +singular +singular +singular +plural +122753 singular +plural +plural +plural +singular +122759 plural +122763 plural +singular +singular +singular +singular +singular +122771 singular +plural +plural +plural +singular +singular +plural +singular +singular +plural +singular +singular +plural +plural +plural +plural +122788 singular +singular +plural +plural +122793 singular +plural +plural +122797 plural +122800 plural +plural +122803 singular +singular +122807 singular +singular +singular +singular +plural +singular +122815 singular +singular +122818 plural +122820 plural +plural +122824 plural +122826 plural +plural +singular +singular +122831 singular +122834 singular +plural +122838 singular +singular +122841 plural +plural +singular +singular +122846 plural +plural +plural +singular +singular +singular +122853 singular +122855 singular +singular +122858 singular +singular +singular +singular +singular +122864 singular +singular +122867 singular +122869 singular +singular +singular +122873 singular +singular +plural +plural +plural +singular +122880 singular +singular +singular +122884 singular +singular +122887 plural +plural +plural +singular +singular +plural +singular +singular +singular +plural +122898 plural +122900 plural +plural +122903 plural +122906 singular +singular +122909 singular +plural +plural +plural +plural +122915 plural +plural +plural +plural +122922 plural +plural +singular +singular +122927 singular +plural +plural +singular +122932 singular +plural +plural +singular +122937 singular +singular +singular +plural +plural +singular +122944 singular +122946 singular +plural +122949 singular +plural +122952 singular +plural +singular +122956 singular +singular +singular +singular +singular +122962 singular +singular +singular +singular +122967 singular +singular +singular +singular +122972 singular +singular +singular +122979 plural +plural +plural +plural +plural +122985 singular +plural +plural +plural +plural +plural +plural +122993 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +123006 plural +singular +singular +plural +plural +123012 plural +123014 singular +123016 singular +singular +singular +singular +plural +singular +123024 plural +singular +singular +123028 singular +123031 plural +plural +plural +123035 singular +singular +plural +plural +plural +plural +plural +plural +123044 plural +singular +123047 singular +123049 singular +123051 singular +123053 singular +plural +123057 singular +plural +123060 singular +plural +123063 singular +singular +singular +123069 plural +plural +singular +singular +singular +123075 singular +123077 plural +singular +123081 singular +123083 singular +123085 singular +123087 singular +singular +singular +singular +123092 singular +singular +123095 plural +singular +123098 plural +123100 plural +singular +123103 singular +plural +123106 singular +singular +123109 plural +plural +123112 singular +singular +singular +plural +123117 singular +singular +plural +plural +123124 plural +123126 singular +plural +123129 singular +singular +plural +123133 plural +123135 plural +123137 singular +singular +singular +plural +123142 plural +plural +plural +plural +123148 singular +singular +singular +singular +plural +singular +123155 singular +123157 plural +singular +123161 singular +123163 singular +singular +singular +plural +123169 singular +plural +plural +plural +plural +plural +singular +singular +123178 singular +singular +123181 singular +plural +123184 singular +singular +singular +singular +singular +123191 plural +123194 singular +123197 plural +singular +singular +123201 plural +123203 plural +singular +singular +singular +123208 singular +singular +123211 singular +singular +123214 singular +singular +singular +123218 plural +123220 singular +plural +plural +123225 singular +singular +singular +singular +singular +123231 plural +singular +singular +singular +123236 singular +plural +singular +singular +123241 plural +plural +123244 singular +singular +123247 plural +123249 singular +singular +singular +123253 singular +singular +singular +123257 singular +singular +singular +123261 singular +123263 singular +singular +singular +singular +singular +123269 singular +singular +singular +123273 singular +plural +singular +plural +123278 plural +123280 plural +123282 singular +singular +singular +123286 plural +singular +singular +singular +plural +123292 singular +123294 plural +plural +123297 singular +singular +singular +singular +123302 singular +singular +123306 singular +singular +singular +singular +plural +123312 singular +singular +singular +singular +singular +singular +plural +plural +123321 plural +123323 plural +plural +plural +plural +plural +123329 plural +plural +123332 singular +plural +123335 plural +plural +123338 singular +singular +singular +singular +singular +plural +plural +plural +singular +singular +123349 singular +123351 plural +123353 plural +123356 singular +123358 plural +singular +123362 plural +123364 plural +singular +123367 plural +123369 singular +singular +123372 plural +singular +singular +singular +123377 plural +123379 plural +123381 plural +123383 plural +singular +123386 plural +singular +singular +plural +123391 singular +singular +singular +plural +plural +123397 plural +123399 singular +singular +123402 singular +singular +123405 plural +singular +plural +123409 plural +plural +singular +singular +singular +123415 singular +singular +123418 plural +singular +123421 singular +singular +123425 singular +singular +singular +singular +singular +123432 plural +singular +singular +singular +123437 singular +singular +singular +singular +singular +singular +123444 singular +singular +123447 plural +plural +plural +plural +123452 plural +123454 plural +singular +123457 plural +singular +123460 singular +plural +singular +123464 singular +plural +singular +123469 plural +plural +singular +singular +plural +plural +123478 singular +singular +singular +singular +singular +plural +plural +123486 plural +123488 singular +singular +plural +123492 singular +singular +singular +123496 singular +singular +singular +singular +123501 plural +singular +123505 singular +plural +singular +123509 singular +123511 singular +123513 singular +123516 singular +123520 singular +123522 singular +123524 singular +singular +singular +123528 singular +singular +singular +123532 singular +singular +singular +123536 singular +singular +123539 singular +singular +singular +singular +123545 singular +123547 plural +singular +singular +singular +plural +plural +singular +singular +singular +singular +123559 singular +singular +123562 singular +singular +singular +123566 singular +123568 singular +123571 plural +plural +123574 singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +123585 singular +123587 plural +123589 plural +singular +singular +singular +123594 singular +plural +singular +singular +plural +123600 singular +singular +singular +123604 singular +singular +plural +singular +123609 plural +singular +singular +singular +123618 singular +123625 plural +plural +plural +123629 plural +plural +singular +singular +123634 singular +singular +singular +plural +singular +singular +singular +singular +singular +plural +123645 plural +plural +123648 plural +plural +singular +singular +plural +123654 singular +singular +plural +singular +123659 plural +singular +singular +123663 plural +123665 singular +singular +singular +singular +singular +123671 plural +singular +123674 singular +singular +singular +singular +plural +plural +123681 singular +123683 singular +singular +123686 plural +plural +plural +singular +singular +plural +singular +123694 singular +singular +singular +singular +singular +123700 singular +plural +plural +singular +singular +plural +plural +plural +plural +plural +singular +123712 singular +singular +plural +singular +123718 singular +singular +singular +singular +singular +singular +plural +123726 singular +singular +singular +singular +123731 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +123743 plural +plural +plural +plural +123748 plural +123750 singular +singular +singular +singular +123755 singular +123757 plural +singular +singular +123761 singular +singular +123764 singular +singular +singular +singular +123769 singular +plural +singular +plural +singular +123775 singular +singular +123778 singular +singular +singular +singular +plural +plural +123785 singular +singular +singular +plural +plural +plural +123792 singular +singular +singular +singular +123797 singular +singular +singular +plural +plural +plural +singular +singular +123806 singular +singular +singular +plural +123811 singular +singular +singular +singular +123816 singular +plural +singular +123820 singular +singular +singular +123824 singular +singular +singular +plural +123829 plural +singular +singular +singular +singular +plural +plural +plural +123838 singular +123840 singular +singular +123843 singular +singular +singular +singular +plural +singular +singular +123851 singular +123853 plural +plural +plural +123857 plural +plural +plural +singular +123863 plural +plural +plural +singular +singular +plural +singular +123871 singular +singular +123874 singular +singular +123878 singular +singular +singular +singular +plural +plural +123885 singular +singular +plural +singular +singular +123892 singular +singular +singular +singular +123898 singular +singular +singular +singular +123904 singular +singular +singular +singular +123910 singular +singular +singular +singular +123916 singular +singular +singular +singular +123922 singular +singular +singular +singular +123927 plural +plural +plural +123931 plural +123933 plural +123935 plural +singular +123938 singular +singular +singular +plural +singular +singular +singular +123946 singular +123948 singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +123959 singular +plural +123962 plural +123964 plural +singular +plural +singular +singular +123970 singular +123973 plural +plural +123977 plural +123982 singular +plural +singular +singular +123987 singular +singular +singular +singular +singular +plural +123994 singular +singular +singular +123998 singular +124000 plural +124003 plural +124005 plural +124007 plural +124009 singular +singular +singular +124013 singular +singular +124016 singular +singular +124019 singular +singular +singular +124023 plural +124025 singular +singular +124028 singular +singular +singular +singular +singular +singular +singular +124037 singular +singular +plural +singular +singular +singular +singular +124045 singular +124049 plural +124051 singular +singular +singular +singular +plural +singular +124060 plural +plural +plural +plural +plural +singular +singular +singular +plural +singular +singular +singular +124073 singular +124075 plural +plural +singular +singular +singular +124081 singular +124083 singular +singular +singular +124087 singular +singular +singular +singular +singular +124093 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +124105 singular +singular +singular +124109 singular +singular +singular +plural +plural +124115 singular +singular +124118 singular +plural +124121 singular +singular +singular +124125 plural +singular +singular +singular +singular +124131 plural +singular +plural +124135 singular +singular +124138 singular +singular +124141 singular +singular +singular +124145 singular +singular +124148 plural +plural +plural +singular +singular +plural +124155 singular +singular +singular +singular +singular +124161 singular +124164 singular +singular +singular +singular +124171 singular +singular +plural +plural +124176 singular +plural +124179 plural +124181 plural +124183 singular +singular +124188 plural +plural +plural +plural +plural +plural +singular +124196 singular +singular +plural +singular +plural +plural +plural +singular +singular +124206 plural +plural +plural +plural +plural +124212 plural +singular +singular +singular +singular +singular +124220 singular +plural +plural +plural +plural +plural +singular +singular +124230 singular +124232 singular +singular +plural +124236 singular +124239 singular +singular +plural +plural +124244 singular +124246 plural +singular +singular +singular +124251 singular +plural +124254 singular +singular +124257 singular +124259 singular +singular +singular +singular +singular +singular +singular +plural +singular +124269 plural +plural +124272 singular +singular +singular +singular +singular +plural +124279 singular +124281 singular +singular +singular +124285 singular +plural +plural +124289 singular +singular +singular +124293 singular +124295 singular +singular +singular +singular +124300 plural +singular +124303 singular +singular +singular +plural +plural +singular +singular +singular +plural +124313 singular +124316 plural +124318 singular +singular +plural +124324 plural +124326 singular +124328 singular +singular +plural +124332 singular +plural +plural +plural +plural +plural +124339 plural +124341 plural +singular +124344 singular +plural +plural +124348 plural +124350 plural +124352 singular +singular +singular +124356 plural +124358 plural +plural +plural +plural +124363 singular +124365 singular +124367 plural +plural +plural +124371 singular +singular +plural +124375 plural +plural +singular +singular +singular +plural +singular +124383 singular +singular +plural +124387 plural +plural +124390 plural +plural +plural +plural +plural +plural +plural +plural +singular +124400 plural +singular +plural +plural +plural +singular +singular +singular +plural +singular +plural +plural +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +124427 singular +singular +singular +singular +singular +singular +124434 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +124447 plural +124449 singular +plural +plural +singular +singular +singular +singular +singular +124458 plural +singular +plural +plural +124463 plural +singular +plural +plural +124468 plural +plural +124471 singular +plural +singular +plural +plural +plural +plural +plural +singular +singular +124482 singular +singular +singular +singular +singular +124489 plural +plural +plural +singular +singular +124495 singular +singular +singular +124499 singular +singular +singular +124503 plural +124505 plural +plural +singular +plural +plural +plural +plural +plural +plural +124515 singular +singular +plural +124520 singular +singular +singular +singular +124525 plural +124528 singular +singular +plural +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +124542 singular +singular +singular +124546 singular +singular +124549 singular +singular +plural +124553 singular +singular +singular +plural +singular +124559 plural +singular +124562 singular +plural +singular +singular +singular +124568 plural +plural +124571 plural +plural +plural +plural +124576 singular +plural +plural +plural +singular +singular +singular +124584 singular +singular +singular +plural +124589 plural +124591 plural +plural +plural +124595 singular +plural +124598 plural +plural +plural +plural +plural +124604 plural +124606 singular +singular +singular +singular +singular +singular +124614 singular +plural +plural +plural +plural +124620 singular +124622 singular +singular +124625 singular +plural +singular +plural +124630 plural +plural +124634 singular +124636 singular +124639 singular +singular +singular +singular +singular +singular +124646 plural +singular +124649 singular +singular +singular +singular +124654 plural +124656 plural +124658 singular +singular +singular +singular +singular +plural +plural +singular +plural +124668 singular +singular +124671 singular +plural +plural +plural +124676 plural +singular +singular +124680 singular +plural +124683 singular +singular +124686 singular +124688 plural +plural +124691 plural +plural +124694 singular +singular +124697 singular +singular +singular +singular +124702 plural +singular +plural +124706 singular +124708 plural +singular +124711 plural +124714 plural +124716 singular +124719 singular +singular +singular +124723 singular +124725 singular +plural +plural +124729 plural +124731 plural +plural +singular +124735 singular +124737 plural +124739 singular +plural +singular +124743 plural +plural +plural +singular +plural +124749 plural +124751 plural +plural +124754 plural +plural +124757 plural +singular +singular +singular +singular +singular +singular +124765 singular +plural +plural +plural +124770 plural +plural +singular +124774 plural +plural +124777 singular +singular +124780 singular +singular +singular +plural +124785 plural +singular +singular +124789 plural +plural +plural +plural +plural +124795 plural +singular +124799 singular +124801 singular +singular +singular +plural +singular +singular +plural +124810 singular +singular +plural +singular +singular +124816 singular +singular +singular +singular +singular +plural +124825 plural +plural +singular +124829 plural +124831 plural +124833 plural +singular +plural +plural +plural +plural +plural +124841 plural +plural +124845 plural +plural +plural +124849 singular +singular +plural +singular +124854 plural +plural +plural +plural +124860 singular +plural +plural +singular +plural +plural +singular +singular +singular +124870 plural +124872 singular +124874 singular +singular +singular +plural +124879 singular +singular +singular +singular +singular +singular +124889 singular +singular +singular +singular +124894 singular +singular +plural +singular +plural +plural +plural +plural +singular +plural +124905 plural +plural +plural +plural +124910 singular +singular +singular +singular +124915 singular +singular +singular +124919 plural +124921 plural +124923 plural +plural +singular +singular +singular +singular +singular +singular +124932 singular +singular +124935 singular +plural +singular +plural +124940 plural +plural +124943 plural +124946 plural +singular +plural +124950 plural +124953 singular +singular +singular +singular +124958 singular +singular +124962 singular +singular +singular +singular +singular +124968 plural +plural +plural +124972 singular +singular +plural +singular +singular +124978 singular +singular +singular +singular +singular +plural +124985 singular +124987 plural +plural +124990 singular +singular +singular +singular +124996 singular +124998 singular +singular +singular +125002 plural +125004 singular +plural +125007 singular +125010 singular +singular +plural +plural +125016 plural +singular +singular +125022 singular +singular +plural +125026 singular +singular +125029 singular +singular +singular +plural +125034 plural +125036 singular +singular +singular +singular +singular +singular +singular +plural +125045 singular +singular +125048 plural +125050 singular +125052 plural +plural +plural +125056 singular +singular +125059 singular +125061 plural +125063 plural +plural +plural +plural +singular +singular +125070 singular +125072 singular +plural +plural +plural +125077 singular +plural +125080 singular +singular +125083 plural +125086 plural +singular +plural +singular +125091 singular +singular +singular +125095 singular +125097 plural +plural +singular +plural +singular +plural +125105 plural +125108 singular +singular +plural +125112 singular +singular +singular +singular +singular +singular +125119 singular +singular +singular +125123 plural +plural +plural +125129 plural +plural +singular +125135 singular +singular +singular +125140 singular +plural +125143 plural +singular +125146 plural +plural +singular +plural +singular +singular +125153 singular +singular +125156 plural +plural +singular +125160 singular +singular +singular +125165 singular +singular +singular +125169 singular +125172 singular +singular +singular +singular +singular +125179 singular +singular +singular +singular +singular +singular +125186 singular +plural +125190 singular +plural +singular +singular +125195 singular +125198 singular +singular +singular +125202 singular +125205 plural +singular +plural +125209 singular +singular +125212 singular +singular +singular +plural +125217 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +125228 singular +singular +singular +plural +singular +singular +singular +125236 singular +125239 plural +125241 singular +singular +singular +125245 singular +singular +singular +singular +125250 singular +singular +singular +125254 singular +singular +125258 singular +singular +singular +singular +125263 singular +singular +singular +125268 singular +singular +singular +singular +singular +125274 singular +singular +singular +125278 singular +125280 singular +125282 singular +125284 singular +singular +singular +singular +singular +125290 singular +singular +singular +125295 singular +singular +singular +125300 singular +125302 singular +125304 singular +singular +singular +plural +plural +singular +plural +singular +plural +125314 plural +plural +plural +plural +125319 singular +singular +singular +plural +singular +plural +125326 plural +singular +125329 singular +plural +singular +plural +125334 plural +singular +singular +plural +singular +plural +125341 plural +singular +singular +plural +singular +plural +125348 plural +singular +125351 singular +plural +singular +plural +125356 plural +plural +125359 singular +singular +singular +singular +125364 plural +singular +125367 plural +singular +singular +125371 plural +singular +singular +125375 plural +125377 singular +singular +125380 singular +singular +singular +singular +125385 singular +singular +singular +singular +singular +125391 singular +125394 singular +singular +125397 singular +singular +singular +singular +singular +singular +125404 singular +singular +plural +plural +125409 singular +singular +singular +singular +singular +125415 singular +singular +125419 singular +singular +singular +125423 singular +singular +singular +125427 singular +singular +singular +125431 singular +singular +singular +singular +singular +singular +singular +125439 singular +singular +plural +singular +singular +singular +125447 plural +125449 singular +singular +125453 plural +plural +plural +125457 plural +125459 singular +singular +singular +125463 plural +plural +125467 plural +125469 plural +125473 plural +plural +125476 plural +125478 plural +125481 plural +125484 plural +plural +125487 plural +125489 plural +singular +plural +125493 singular +singular +125496 plural +plural +singular +plural +125503 plural +singular +singular +125508 plural +singular +125512 singular +singular +125515 singular +singular +125518 singular +singular +singular +singular +singular +125525 singular +singular +125528 singular +125530 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +125542 singular +singular +singular +singular +singular +singular +singular +125550 singular +singular +singular +singular +singular +singular +singular +125558 singular +singular +singular +plural +singular +plural +125565 singular +125567 plural +singular +125571 plural +singular +singular +125575 singular +plural +125578 plural +125580 singular +singular +125584 singular +singular +plural +125588 singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +plural +singular +plural +125604 plural +plural +plural +125608 plural +singular +singular +singular +plural +125614 singular +singular +125617 plural +125620 singular +plural +125623 singular +singular +plural +125628 singular +singular +singular +singular +plural +125634 plural +125636 singular +singular +125640 singular +singular +125644 singular +plural +plural +125648 singular +125650 plural +125652 plural +125654 singular +125657 singular +plural +singular +125662 plural +125664 singular +125666 singular +singular +singular +125670 plural +125672 singular +singular +plural +125677 singular +singular +singular +singular +singular +125683 singular +singular +plural +singular +singular +singular +plural +singular +singular +125693 plural +singular +plural +125697 plural +125699 singular +singular +singular +125703 singular +plural +125707 singular +singular +plural +125711 plural +singular +plural +125716 singular +singular +plural +plural +125722 singular +plural +singular +plural +125727 plural +singular +125730 singular +125732 singular +singular +singular +singular +singular +singular +125739 singular +singular +singular +125743 singular +singular +singular +singular +singular +singular +singular +singular +125752 singular +singular +singular +125756 singular +singular +singular +singular +singular +125762 plural +125764 singular +singular +125767 plural +plural +singular +125771 singular +125773 singular +125775 singular +singular +singular +125779 singular +singular +125782 singular +singular +singular +singular +125787 singular +singular +125790 singular +singular +plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +125803 singular +singular +singular +singular +singular +singular +singular +125811 singular +singular +singular +125816 singular +singular +singular +singular +125821 singular +singular +singular +singular +singular +singular +125828 singular +plural +plural +singular +singular +singular +singular +singular +125837 singular +singular +singular +125841 singular +125843 singular +singular +125846 singular +singular +125850 singular +125854 singular +singular +singular +125858 singular +plural +singular +plural +plural +singular +singular +125866 plural +plural +singular +singular +singular +singular +125873 singular +singular +125876 singular +125878 singular +singular +125881 singular +125883 singular +singular +singular +singular +125888 singular +singular +singular +singular +singular +plural +125895 singular +125897 plural +plural +125901 singular +125903 singular +singular +singular +125907 singular +singular +singular +singular +125913 singular +singular +singular +125917 plural +plural +singular +plural +singular +125923 plural +singular +singular +singular +plural +plural +125930 plural +125932 singular +plural +singular +singular +plural +plural +125939 plural +125941 singular +singular +125944 singular +singular +125947 plural +plural +plural +singular +125952 singular +singular +125955 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +125966 plural +125968 singular +singular +125971 singular +singular +singular +125975 singular +singular +125978 singular +plural +singular +singular +125983 singular +125985 plural +singular +singular +singular +singular +125991 plural +plural +125994 plural +plural +plural +plural +126001 singular +singular +singular +singular +singular +singular +126008 singular +singular +singular +singular +singular +singular +126015 singular +plural +plural +singular +126020 singular +126022 singular +singular +singular +singular +singular +126028 singular +plural +plural +126032 singular +126034 singular +singular +126038 singular +126040 singular +126042 singular +plural +126046 singular +singular +plural +126051 singular +plural +singular +singular +plural +126058 singular +plural +singular +singular +126063 singular +singular +singular +singular +singular +singular +plural +126071 singular +plural +plural +126075 singular +singular +126078 singular +singular +plural +126082 singular +singular +126086 singular +plural +plural +126090 singular +126092 plural +plural +singular +plural +126097 plural +plural +126100 singular +plural +126103 singular +singular +singular +singular +singular +126109 plural +singular +singular +singular +singular +singular +singular +singular +126118 plural +plural +126121 singular +singular +plural +126125 singular +singular +plural +plural +singular +126131 singular +singular +126134 singular +126136 singular +126139 singular +plural +126142 singular +126144 plural +126146 singular +singular +singular +plural +singular +plural +126153 singular +singular +plural +126157 plural +plural +plural +126162 singular +singular +singular +126166 plural +plural +plural +126170 singular +singular +126173 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +126186 singular +singular +126189 singular +singular +singular +126193 singular +singular +singular +126197 singular +singular +singular +126201 singular +singular +126204 singular +126206 singular +singular +singular +singular +singular +singular +plural +126214 singular +126218 singular +singular +singular +126222 plural +plural +126225 singular +singular +plural +126229 plural +plural +126232 singular +singular +singular +126236 plural +126238 singular +126240 singular +singular +plural +126244 singular +singular +plural +126248 singular +126250 singular +singular +plural +126254 singular +singular +plural +singular +plural +126260 singular +singular +plural +singular +singular +singular +singular +singular +plural +singular +126271 singular +126273 singular +singular +126276 singular +plural +126279 singular +plural +singular +singular +singular +singular +126286 singular +singular +singular +singular +plural +plural +plural +126294 singular +singular +126297 singular +singular +singular +126301 singular +singular +singular +126305 singular +singular +singular +126309 singular +singular +singular +singular +126314 singular +126316 singular +singular +singular +126320 singular +singular +singular +singular +126325 singular +singular +singular +singular +singular +singular +126332 plural +126334 singular +singular +singular +singular +singular +singular +singular +singular +126343 singular +singular +126346 plural +126348 singular +126350 singular +singular +singular +singular +126356 plural +plural +singular +singular +126362 singular +singular +plural +126366 singular +singular +singular +singular +singular +126372 plural +plural +plural +plural +126378 singular +singular +singular +plural +126383 plural +plural +plural +126387 singular +singular +126390 singular +126392 plural +plural +singular +singular +126397 plural +singular +126400 singular +singular +singular +126404 plural +singular +singular +126408 singular +plural +126412 singular +plural +126415 singular +126417 plural +126420 singular +singular +singular +singular +plural +126426 plural +plural +126429 plural +126431 singular +singular +singular +singular +singular +singular +singular +singular +126440 singular +singular +126443 singular +singular +singular +singular +singular +singular +singular +singular +126452 singular +singular +126455 singular +126457 singular +singular +126460 plural +plural +126463 plural +singular +singular +singular +singular +singular +singular +126471 plural +singular +singular +singular +singular +126477 singular +singular +126480 singular +singular +126483 singular +singular +singular +126487 singular +singular +126490 singular +singular +126493 singular +singular +singular +singular +126498 plural +126500 singular +plural +126503 singular +singular +singular +singular +126509 singular +singular +126512 plural +plural +126515 singular +singular +singular +singular +126520 singular +126522 singular +singular +126525 singular +singular +singular +126529 singular +singular +singular +126533 singular +singular +singular +singular +126538 singular +singular +126541 singular +126543 singular +singular +plural +plural +126548 singular +singular +singular +plural +126553 singular +singular +126556 singular +singular +singular +126560 singular +singular +singular +singular +singular +singular +126567 singular +126569 singular +singular +singular +singular +singular +singular +126576 singular +singular +singular +singular +126581 singular +126584 singular +singular +singular +plural +126589 singular +126591 singular +singular +singular +singular +singular +126597 singular +singular +singular +singular +singular +singular +126604 singular +singular +singular +singular +126609 singular +singular +singular +126613 singular +singular +singular +singular +singular +singular +singular +singular +126622 singular +126624 singular +plural +126627 plural +plural +plural +singular +singular +126633 singular +singular +plural +126637 plural +plural +singular +plural +126642 singular +singular +singular +singular +singular +singular +126649 plural +plural +singular +plural +126654 plural +plural +singular +plural +126659 plural +126661 singular +singular +singular +126665 singular +singular +singular +singular +singular +126671 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +126690 singular +singular +126693 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +126704 singular +126706 singular +singular +singular +126711 singular +singular +singular +126716 singular +singular +126720 singular +singular +126723 singular +singular +singular +singular +singular +126729 singular +singular +singular +singular +singular +126735 plural +plural +plural +plural +singular +singular +126742 singular +singular +126745 singular +singular +126748 plural +plural +126751 singular +singular +plural +126755 singular +singular +plural +plural +plural +singular +singular +singular +singular +singular +singular +126767 singular +singular +singular +singular +singular +singular +126774 singular +126776 singular +singular +singular +singular +singular +126782 singular +singular +singular +singular +singular +singular +singular +126790 singular +singular +126793 singular +singular +singular +singular +singular +singular +126801 singular +126803 singular +singular +singular +singular +singular +singular +126810 singular +singular +singular +126814 singular +singular +singular +singular +126819 singular +singular +singular +singular +singular +plural +126826 singular +singular +singular +126830 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +126843 singular +singular +singular +singular +singular +singular +singular +126851 singular +plural +singular +plural +plural +plural +126858 singular +singular +singular +singular +singular +singular +126865 plural +126867 singular +singular +plural +126871 singular +singular +singular +singular +singular +plural +126878 singular +126881 singular +plural +126884 singular +singular +singular +singular +plural +126891 plural +126893 singular +plural +126896 singular +plural +plural +126900 plural +plural +plural +plural +plural +126906 singular +126908 singular +singular +singular +singular +singular +singular +singular +126917 singular +singular +126920 singular +singular +singular +plural +plural +126927 singular +singular +singular +126931 singular +126934 singular +singular +126937 singular +singular +singular +singular +singular +126943 singular +singular +126947 singular +plural +126950 singular +singular +singular +126954 singular +singular +126957 singular +126959 singular +singular +126962 singular +singular +singular +singular +126967 singular +singular +126970 singular +singular +plural +126975 singular +singular +plural +126979 singular +singular +singular +126983 singular +singular +singular +126987 plural +126989 singular +singular +singular +singular +singular +126995 singular +plural +singular +126999 plural +singular +singular +127003 plural +127005 singular +singular +127008 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +127019 singular +singular +plural +plural +plural +127025 plural +plural +singular +singular +singular +singular +127032 plural +plural +singular +plural +singular +127038 singular +singular +127042 singular +singular +127046 plural +plural +plural +singular +singular +127052 singular +singular +singular +singular +127057 plural +127060 plural +singular +127063 singular +singular +singular +127067 plural +singular +singular +singular +127072 singular +singular +127076 singular +singular +singular +singular +singular +singular +127083 singular +127085 singular +singular +127089 singular +127091 plural +plural +singular +plural +127096 singular +127098 singular +plural +127101 singular +singular +127104 singular +127106 singular +singular +singular +singular +127112 singular +singular +127115 singular +plural +127118 singular +127120 plural +plural +127123 singular +singular +singular +singular +127128 plural +127130 plural +plural +singular +singular +singular +singular +singular +127138 plural +127140 singular +127143 singular +plural +127146 plural +127148 singular +singular +plural +plural +plural +127154 plural +singular +singular +singular +127159 singular +singular +singular +singular +singular +127165 singular +singular +plural +plural +127171 plural +plural +plural +127175 singular +singular +plural +singular +singular +singular +127183 singular +127185 singular +singular +singular +singular +singular +127191 singular +singular +singular +127195 singular +singular +singular +127199 singular +singular +127202 singular +singular +singular +127206 singular +singular +127209 plural +127211 singular +singular +singular +127215 singular +127217 plural +singular +127220 singular +127223 singular +127225 plural +127227 singular +singular +singular +127231 singular +plural +plural +singular +plural +plural +singular +plural +plural +127242 singular +127244 singular +127246 singular +127248 singular +127251 plural +127253 singular +127255 singular +127258 singular +singular +plural +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +127281 singular +singular +127284 plural +singular +singular +127291 singular +singular +singular +singular +127296 singular +127298 plural +plural +127301 plural +singular +singular +singular +127306 singular +127308 singular +singular +singular +singular +plural +127314 singular +127316 singular +plural +plural +plural +127321 singular +singular +plural +singular +singular +singular +127328 singular +singular +127331 plural +plural +127334 singular +plural +plural +plural +singular +singular +singular +127342 singular +plural +127345 singular +singular +127348 singular +singular +127352 singular +singular +plural +singular +plural +127358 plural +plural +127361 plural +plural +127364 plural +plural +127367 plural +plural +singular +singular +singular +singular +singular +singular +127376 singular +singular +plural +singular +127381 singular +plural +127384 singular +127386 singular +singular +singular +plural +plural +plural +singular +plural +plural +singular +plural +127399 singular +127401 plural +127403 singular +singular +plural +plural +127408 plural +plural +singular +127413 singular +singular +singular +singular +127418 singular +singular +singular +127422 singular +singular +singular +singular +127427 singular +singular +singular +singular +singular +127433 singular +singular +singular +singular +singular +127439 plural +127442 singular +singular +singular +127447 plural +plural +127450 singular +127452 singular +singular +plural +singular +singular +singular +plural +127460 singular +127463 singular +127465 singular +127467 singular +singular +127471 singular +127473 singular +127476 singular +127478 singular +plural +singular +singular +plural +singular +plural +plural +singular +plural +plural +127490 singular +singular +singular +singular +singular +127496 singular +singular +plural +127500 singular +singular +plural +127504 singular +singular +plural +plural +plural +singular +127511 singular +127513 singular +singular +plural +singular +singular +singular +127520 plural +127522 singular +singular +plural +singular +singular +singular +127529 plural +singular +127532 singular +127534 singular +plural +plural +singular +127539 plural +plural +plural +plural +127544 plural +127546 singular +singular +singular +plural +singular +singular +singular +plural +singular +plural +127557 singular +127559 singular +singular +singular +127563 singular +plural +singular +singular +plural +127569 singular +plural +127572 plural +127574 plural +127576 singular +singular +127579 singular +singular +singular +singular +singular +plural +127586 plural +singular +127589 plural +plural +127592 plural +singular +plural +singular +127597 plural +singular +singular +singular +127602 singular +singular +singular +plural +plural +127608 singular +singular +127611 singular +127613 singular +127615 plural +127617 plural +plural +singular +singular +singular +plural +plural +127625 plural +127627 singular +singular +plural +singular +singular +singular +singular +plural +127638 plural +plural +127641 singular +plural +127644 singular +plural +127647 plural +plural +127651 singular +singular +singular +singular +127656 singular +singular +singular +127660 singular +singular +singular +singular +singular +singular +singular +127669 singular +singular +singular +singular +127675 plural +plural +127678 plural +plural +127681 plural +127684 plural +plural +plural +plural +127689 plural +plural +127692 plural +127694 singular +singular +singular +singular +plural +127700 singular +singular +singular +singular +singular +plural +127707 singular +singular +singular +singular +plural +plural +plural +plural +127716 plural +plural +plural +plural +plural +127722 plural +plural +plural +plural +127727 plural +plural +plural +plural +plural +127733 plural +plural +plural +plural +singular +plural +plural +plural +plural +plural +plural +plural +singular +singular +singular +singular +127750 singular +singular +127753 singular +127755 plural +singular +127758 singular +singular +singular +singular +singular +singular +127765 plural +plural +singular +127769 singular +127771 plural +127774 plural +plural +plural +127778 plural +plural +plural +singular +plural +plural +plural +127787 plural +plural +plural +plural +plural +127793 singular +plural +plural +plural +plural +plural +plural +127801 plural +plural +plural +plural +127806 singular +singular +plural +singular +plural +plural +plural +singular +127816 plural +plural +plural +plural +plural +plural +plural +127824 plural +plural +singular +singular +plural +singular +singular +127832 plural +plural +127835 singular +singular +singular +plural +plural +plural +127842 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +singular +127854 plural +127856 plural +plural +plural +plural +singular +singular +plural +singular +127865 singular +singular +plural +plural +127870 singular +singular +plural +plural +singular +singular +singular +singular +plural +singular +singular +127882 singular +singular +127886 plural +plural +plural +plural +127891 singular +plural +127894 plural +plural +127897 singular +plural +127900 singular +127902 singular +singular +singular +singular +127907 singular +singular +127910 plural +plural +127915 singular +singular +singular +plural +127920 singular +singular +singular +singular +plural +127926 singular +singular +singular +singular +plural +singular +singular +singular +127935 singular +127937 singular +singular +singular +127944 plural +plural +plural +127948 singular +singular +singular +singular +singular +singular +singular +singular +127957 plural +plural +singular +plural +127963 singular +singular +127966 singular +singular +127969 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +127983 singular +singular +singular +singular +plural +singular +singular +singular +singular +127993 plural +plural +plural +plural +singular +singular +128000 plural +plural +128003 singular +plural +128006 singular +singular +128009 singular +plural +128012 plural +plural +128015 singular +singular +singular +128019 singular +plural +128022 singular +singular +128025 singular +singular +128028 singular +singular +128032 plural +128034 plural +plural +128037 singular +singular +singular +128042 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +128053 singular +singular +plural +plural +singular +singular +singular +singular +plural +128063 singular +plural +128066 plural +plural +plural +128070 singular +singular +singular +128074 singular +plural +singular +plural +singular +singular +128081 singular +singular +singular +singular +singular +128087 singular +singular +128090 plural +plural +plural +plural +128095 singular +singular +128098 plural +plural +128101 singular +singular +singular +singular +128106 plural +singular +plural +128110 plural +128112 singular +plural +plural +plural +singular +singular +128120 singular +singular +singular +singular +128125 singular +singular +singular +singular +singular +singular +singular +singular +128134 singular +singular +128137 singular +singular +singular +singular +singular +singular +singular +singular +plural +128147 singular +128149 singular +singular +128152 singular +128154 singular +128156 singular +singular +128159 singular +singular +singular +singular +singular +128165 singular +singular +singular +singular +128170 singular +singular +singular +singular +128175 singular +128177 singular +singular +singular +128181 singular +128183 singular +singular +singular +128187 singular +singular +singular +singular +singular +128193 singular +128195 singular +plural +128198 plural +128200 singular +128203 singular +128206 singular +128209 plural +128212 plural +128215 singular +128218 singular +128220 singular +128222 singular +singular +singular +singular +128227 singular +128229 singular +singular +128232 plural +plural +128236 singular +plural +plural +singular +singular +singular +singular +singular +128245 singular +128247 plural +plural +singular +singular +128252 singular +singular +singular +128256 plural +plural +plural +128260 singular +singular +128263 singular +128265 plural +plural +singular +128269 singular +singular +128272 plural +plural +singular +plural +singular +128279 singular +singular +128282 singular +singular +singular +128286 singular +plural +plural +128290 singular +128292 singular +singular +singular +singular +plural +128300 singular +singular +singular +singular +singular +singular +singular +128308 singular +singular +singular +128312 singular +singular +singular +128316 singular +singular +singular +128321 singular +singular +singular +128325 plural +plural +singular +128329 singular +128331 singular +singular +singular +singular +128336 singular +singular +128339 singular +singular +singular +singular +singular +128345 singular +singular +128348 singular +singular +128351 singular +singular +128354 singular +singular +singular +128358 plural +plural +plural +plural +128363 singular +plural +plural +singular +singular +128369 singular +singular +128372 singular +plural +singular +128376 plural +plural +128379 plural +singular +128383 plural +singular +singular +plural +128388 plural +plural +singular +128392 singular +singular +singular +128396 plural +128398 plural +plural +plural +plural +128403 plural +plural +plural +128407 plural +plural +128410 plural +plural +plural +128415 plural +plural +singular +singular +singular +128421 singular +singular +singular +plural +singular +singular +singular +plural +128430 plural +128432 singular +singular +singular +singular +singular +128438 singular +plural +128441 plural +plural +plural +singular +plural +plural +singular +128449 singular +singular +128452 singular +singular +singular +128458 singular +128460 plural +128462 singular +plural +plural +plural +plural +128469 plural +128471 singular +plural +plural +128475 singular +singular +128478 singular +128480 singular +singular +singular +128485 singular +128487 singular +128489 singular +128491 singular +singular +singular +singular +singular +singular +128498 singular +128500 singular +128502 singular +128504 plural +plural +plural +singular +128511 singular +singular +128514 singular +singular +singular +singular +128519 singular +singular +singular +128524 singular +128526 singular +singular +128529 singular +plural +plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +128553 singular +singular +singular +singular +singular +singular +128560 singular +singular +singular +singular +128565 singular +singular +singular +128569 singular +singular +singular +plural +singular +singular +singular +128577 singular +singular +singular +singular +singular +128583 singular +singular +singular +singular +singular +128589 singular +singular +128592 singular +singular +128595 singular +singular +128598 plural +plural +plural +128602 plural +128605 plural +128607 singular +singular +singular +singular +singular +plural +128614 singular +singular +singular +singular +singular +128621 plural +128623 singular +128625 plural +128627 plural +singular +plural +128631 singular +singular +128634 singular +128636 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +128656 singular +128658 singular +singular +singular +singular +128663 singular +singular +singular +128667 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +128682 singular +128684 singular +singular +singular +singular +128689 singular +singular +singular +singular +128695 singular +singular +singular +singular +128701 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +128713 plural +128715 singular +singular +singular +128719 singular +128721 singular +plural +128724 singular +128726 plural +singular +singular +singular +singular +singular +singular +singular +128735 singular +128737 plural +plural +singular +128741 plural +128745 singular +128747 singular +plural +singular +singular +plural +plural +128755 singular +128759 singular +singular +singular +128763 singular +128765 plural +128767 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +128791 singular +singular +singular +singular +128797 singular +singular +singular +singular +singular +singular +singular +singular +128807 singular +singular +128810 singular +singular +singular +128814 plural +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +128829 singular +singular +128832 plural +plural +singular +plural +singular +singular +singular +plural +plural +128842 singular +singular +128845 singular +singular +128848 singular +singular +128851 singular +singular +singular +128855 plural +plural +singular +plural +plural +plural +plural +plural +128864 singular +128866 singular +128868 singular +singular +singular +singular +singular +singular +singular +singular +128877 singular +128879 singular +plural +plural +plural +128886 plural +128888 singular +singular +singular +128892 singular +128895 singular +128898 singular +singular +singular +singular +singular +singular +128905 singular +128907 plural +plural +128910 singular +128912 singular +singular +128916 plural +128918 plural +plural +singular +128922 plural +plural +singular +singular +128927 singular +128929 plural +plural +plural +plural +128934 singular +singular +singular +singular +plural +128940 plural +128942 singular +plural +singular +128946 plural +plural +plural +128950 singular +plural +plural +plural +plural +128956 plural +plural +128959 plural +singular +singular +singular +plural +128965 plural +plural +plural +singular +singular +128971 plural +128973 singular +128975 plural +singular +singular +128979 singular +plural +plural +128984 singular +singular +128987 singular +singular +128990 singular +singular +128993 singular +plural +plural +singular +singular +singular +singular +129001 plural +plural +129004 singular +plural +129007 singular +singular +129010 plural +plural +plural +plural +singular +129016 singular +singular +129019 singular +singular +singular +129023 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +129040 singular +singular +singular +129044 plural +singular +singular +plural +singular +singular +singular +plural +129053 plural +singular +singular +129057 plural +129059 plural +singular +singular +plural +plural +129065 singular +singular +129068 singular +129070 singular +singular +singular +singular +129075 singular +plural +plural +plural +plural +129083 singular +singular +plural +plural +129088 singular +singular +singular +129092 singular +129094 singular +129096 singular +129098 singular +129100 singular +129104 singular +singular +129107 singular +129111 singular +singular +singular +singular +129116 singular +129118 singular +plural +plural +129122 plural +plural +129125 plural +plural +plural +plural +129130 plural +129132 singular +129134 plural +129136 plural +plural +singular +singular +129141 singular +129143 plural +plural +129148 singular +singular +singular +singular +129153 singular +singular +singular +singular +129158 singular +singular +singular +singular +129163 singular +singular +singular +129168 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +129182 singular +singular +singular +129186 singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +129203 singular +singular +129206 singular +129208 singular +singular +singular +singular +plural +plural +singular +singular +129217 singular +singular +singular +singular +singular +129223 singular +singular +129226 singular +singular +singular +129230 singular +singular +singular +singular +129236 singular +singular +singular +singular +singular +singular +129243 singular +singular +singular +singular +plural +plural +plural +plural +129254 plural +129256 plural +singular +singular +plural +129261 plural +129263 plural +129265 plural +plural +singular +129269 plural +129271 singular +singular +singular +129275 singular +singular +singular +singular +singular +singular +singular +singular +singular +129285 singular +singular +singular +singular +singular +singular +129293 singular +singular +singular +129297 plural +plural +129300 singular +singular +singular +singular +singular +singular +singular +129308 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +129319 singular +singular +singular +singular +singular +129328 singular +129331 singular +129333 singular +singular +singular +singular +singular +singular +129340 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +129353 singular +singular +129356 singular +singular +singular +129360 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +129376 singular +singular +singular +129380 singular +singular +singular +plural +singular +singular +129387 singular +singular +singular +singular +129392 singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +129404 singular +129406 singular +129408 singular +singular +singular +singular +129413 singular +129416 singular +singular +129420 singular +129422 singular +singular +singular +129427 singular +singular +singular +129431 singular +129433 singular +singular +129436 singular +129438 singular +singular +singular +129443 singular +129445 singular +singular +singular +singular +129450 singular +129452 singular +129454 singular +129456 singular +singular +singular +129461 singular +singular +singular +129465 singular +129467 singular +129469 plural +plural +129472 singular +129475 singular +singular +singular +singular +singular +singular +129482 singular +129484 plural +plural +singular +129488 singular +singular +129491 plural +singular +singular +129495 singular +129497 singular +129499 singular +singular +singular +129503 singular +singular +129506 singular +129508 singular +singular +singular +singular +singular +129514 singular +singular +singular +singular +129519 singular +129521 singular +129523 singular +129525 singular +129527 singular +singular +singular +singular +singular +129534 singular +129536 singular +singular +singular +129540 singular +singular +129543 singular +129545 singular +singular +singular +129549 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +129563 plural +singular +129566 singular +singular +singular +129570 singular +singular +129573 singular +singular +singular +singular +singular +singular +129580 singular +singular +129583 singular +singular +singular +129588 singular +singular +plural +129593 plural +singular +129596 singular +129598 singular +129600 singular +singular +singular +129604 singular +singular +129608 singular +singular +singular +129612 singular +singular +singular +singular +singular +singular +129619 singular +129621 singular +129623 singular +singular +singular +singular +singular +129630 singular +singular +plural +129634 plural +129637 plural +plural +129640 plural +plural +plural +plural +129645 plural +plural +129649 plural +plural +plural +plural +plural +129656 singular +singular +plural +plural +129661 plural +129663 plural +129666 plural +singular +plural +129670 singular +singular +plural +plural +plural +129676 plural +singular +singular +129681 singular +singular +129684 singular +singular +singular +singular +129690 singular +singular +singular +129694 singular +singular +singular +plural +plural +plural +plural +129705 singular +singular +singular +singular +singular +singular +129712 singular +singular +singular +singular +singular +129718 singular +singular +singular +singular +singular +singular +129725 singular +129727 singular +singular +singular +singular +singular +singular +129734 plural +plural +plural +singular +129739 singular +plural +singular +129743 plural +129748 plural +plural +129751 singular +129753 plural +singular +129756 singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +129769 singular +singular +129772 singular +singular +129776 plural +plural +plural +singular +129781 singular +129783 singular +singular +singular +129787 singular +singular +singular +singular +129792 plural +plural +plural +plural +plural +plural +129799 plural +plural +129802 singular +singular +129805 singular +singular +129808 plural +singular +singular +129812 plural +plural +plural +plural +129817 plural +plural +plural +plural +129822 singular +singular +plural +singular +singular +129828 singular +singular +plural +singular +singular +129834 singular +singular +129837 singular +singular +129840 singular +singular +129843 singular +singular +plural +plural +129849 singular +singular +singular +plural +129854 plural +129856 singular +129858 singular +singular +singular +singular +129863 singular +singular +singular +singular +129870 singular +plural +129874 singular +singular +singular +singular +129879 singular +singular +singular +singular +129884 singular +singular +129888 plural +plural +singular +129892 singular +singular +129895 singular +singular +129899 singular +singular +129903 singular +singular +129906 singular +singular +129910 singular +129912 singular +singular +129915 singular +singular +singular +129919 singular +singular +129923 singular +129925 singular +129927 plural +plural +singular +singular +129932 singular +singular +singular +singular +singular +singular +129939 singular +singular +singular +singular +singular +singular +129946 singular +singular +129949 plural +129951 plural +singular +129954 singular +129956 singular +singular +singular +129960 plural +plural +plural +129965 singular +plural +plural +singular +singular +129971 singular +singular +plural +129976 plural +129978 plural +plural +plural +129982 plural +singular +singular +plural +129987 singular +singular +singular +129991 singular +129993 singular +129995 singular +singular +singular +singular +130000 singular +singular +130004 singular +singular +singular +plural +plural +plural +130011 plural +130013 plural +plural +plural +130017 singular +singular +plural +singular +singular +130023 plural +plural +plural +plural +plural +plural +plural +plural +plural +plural +130034 plural +singular +singular +plural +singular +singular +130041 singular +singular +130045 plural +plural +singular +130049 singular +130051 singular +singular +singular +130055 singular +singular +singular +130059 singular +singular +130062 singular +130064 singular +130066 singular +130068 singular +plural +singular +singular +plural +singular +130075 plural +130077 plural +130079 singular +singular +130082 singular +130084 singular +singular +plural +plural +singular +singular +singular +130092 plural +plural +130095 plural +plural +130098 singular +singular +singular +plural +plural +plural +130105 plural +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +130117 singular +singular +130120 singular +130122 singular +130124 singular +130126 singular +130128 singular +130130 singular +130132 singular +singular +singular +130136 singular +singular +130140 singular +singular +130144 singular +singular +130148 singular +singular +singular +130152 plural +130154 plural +plural +plural +singular +singular +singular +130161 singular +singular +130164 singular +singular +singular +singular +130169 singular +singular +130172 singular +singular +130175 singular +singular +130178 plural +plural +plural +plural +130183 plural +plural +plural +plural +130189 plural +plural +plural +130193 plural +130195 singular +130197 singular +singular +singular +singular +130202 plural +130204 plural +130206 singular +singular +130209 plural +plural +plural +singular +130214 singular +singular +singular +130218 singular +130220 singular +singular +singular +130224 singular +singular +130227 singular +singular +singular +130231 singular +singular +singular +130235 singular +singular +130239 singular +130242 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +130254 singular +singular +singular +singular +130259 singular +singular +130262 singular +singular +singular +130266 singular +singular +130269 singular +singular +130273 plural +plural +130276 singular +singular +singular +singular +130282 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +130294 singular +130296 singular +singular +singular +130300 singular +singular +130303 singular +singular +singular +130307 singular +singular +singular +130311 singular +130313 singular +130315 singular +plural +plural +plural +singular +singular +singular +singular +130324 plural +plural +plural +singular +130329 singular +singular +130332 singular +singular +130335 singular +130338 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +130351 singular +130353 singular +singular +singular +130357 singular +singular +130360 singular +singular +singular +singular +singular +130366 singular +singular +singular +130370 singular +130372 singular +plural +singular +130376 singular +singular +singular +singular +130382 singular +130385 singular +130388 singular +130391 plural +plural +singular +singular +130397 singular +singular +singular +singular +singular +130403 singular +singular +plural +plural +plural +plural +130410 singular +singular +singular +singular +130416 singular +singular +singular +plural +130421 plural +singular +singular +plural +singular +singular +singular +singular +130430 singular +130434 singular +130436 singular +singular +singular +plural +130441 plural +plural +130444 singular +singular +130447 singular +plural +singular +singular +singular +130453 singular +plural +130456 plural +130458 singular +singular +130461 plural +130463 plural +plural +plural +130467 plural +plural +plural +plural +plural +130475 plural +130477 singular +130479 singular +singular +singular +singular +singular +130485 singular +singular +singular +130489 singular +singular +singular +singular +130494 singular +singular +130497 singular +singular +singular +singular +130502 singular +130504 plural +plural +singular +singular +plural +130510 singular +singular +130513 singular +singular +plural +plural +singular +130519 singular +singular +singular +130523 singular +singular +singular +130527 singular +singular +130530 singular +singular +130533 singular +130535 plural +plural +plural +plural +130540 plural +plural +singular +singular +130545 plural +plural +130548 plural +plural +130551 plural +plural +130554 plural +plural +130557 singular +singular +130560 singular +plural +plural +130564 plural +plural +130568 plural +plural +plural +plural +130573 plural +plural +plural +130577 plural +plural +plural +130581 plural +130583 plural +plural +130586 singular +singular +singular +130590 singular +singular +130594 singular +singular +singular +singular +130599 singular +singular +singular +singular +singular +singular +singular +plural +130608 singular +singular +130612 singular +singular +plural +plural +plural +130618 plural +plural +plural +singular +singular +plural +plural +plural +plural +singular +singular +130631 singular +singular +130634 singular +singular +130638 singular +singular +130642 singular +singular +130645 singular +singular +singular +singular +130650 singular +singular +singular +singular +singular +singular +130657 singular +singular +singular +plural +plural +plural +plural +plural +singular +130667 singular +singular +130670 singular +singular +singular +130674 plural +singular +singular +130678 singular +singular +130681 plural +plural +130684 plural +plural +plural +singular +singular +plural +130691 plural +plural +plural +130695 singular +singular +singular +plural +plural +130702 plural +plural +plural +130706 singular +singular +plural +singular +130711 singular +singular +130714 plural +plural +130717 singular +singular +130720 plural +130722 singular +singular +130725 plural +130727 singular +singular +130730 plural +130732 singular +singular +130735 plural +130737 singular +singular +130740 plural +130742 singular +singular +130745 plural +130747 singular +singular +130750 plural +130752 singular +singular +130755 plural +130757 singular +singular +130760 plural +130762 singular +singular +130765 plural +130767 singular +singular +130770 plural +plural +130773 plural +singular +130776 singular +singular +singular +singular +singular +130782 singular +singular +130785 singular +singular +130788 plural +130790 plural +130792 plural +plural +130795 singular +singular +130799 singular +singular +plural +plural +plural +130805 plural +130807 plural +plural +plural +130811 plural +singular +singular +plural +singular +singular +singular +singular +plural +singular +singular +130823 singular +singular +130826 singular +singular +130829 plural +plural +plural +plural +singular +singular +singular +130837 plural +plural +130840 plural +plural +plural +130844 plural +130846 singular +singular +130849 plural +plural +plural +130853 plural +singular +singular +plural +130858 singular +singular +130861 singular +singular +130864 singular +singular +130867 singular +singular +130870 singular +singular +130873 singular +singular +130876 singular +singular +singular +singular +plural +130882 plural +plural +plural +plural +130888 singular +singular +130891 plural +plural +singular +singular +plural +plural +plural +plural +plural +plural +plural +plural +plural +130906 plural +130908 singular +singular +singular +singular +singular +singular +130915 singular +singular +plural +plural +plural +plural +130922 singular +singular +singular +singular +130927 plural +plural +plural +plural +130932 plural +plural +130935 singular +singular +singular +singular +130940 singular +plural +130943 singular +singular +singular +singular +130948 plural +singular +singular +130952 singular +130954 singular +singular +singular +130958 singular +singular +130961 singular +singular +singular +130965 plural +130967 plural +130970 plural +130974 singular +130976 plural +singular +singular +130980 singular +singular +130983 singular +singular +singular +130987 singular +singular +singular +singular +plural +130993 singular +plural +130996 singular +plural +plural +131000 singular +singular +singular +singular +singular +131006 plural +plural +plural +131011 singular +singular +singular +singular +singular +singular +singular +131019 singular +singular +131022 singular +131024 singular +plural +131027 plural +plural +131030 singular +singular +plural +131034 plural +plural +131037 plural +131039 singular +singular +singular +131043 singular +131045 singular +singular +singular +singular +singular +131051 singular +singular +plural +plural +131056 singular +plural +plural +plural +plural +plural +131063 singular +singular +singular +singular +singular +131069 singular +singular +131072 singular +singular +singular +plural +plural +plural +plural +plural +plural +131082 singular +singular +singular +131086 singular +singular +131089 singular +singular +singular +singular +singular +131095 singular +singular +131098 singular +singular +singular +singular +131103 singular +131105 singular +singular +131108 plural +plural +131111 plural +131113 plural +131115 singular +131117 plural +131119 plural +plural +plural +plural +131124 plural +plural +plural +131128 plural +131130 singular +singular +singular +131134 singular +singular +131137 singular +plural +131140 singular +131142 singular +131144 singular +singular +131147 singular +singular +singular +singular +singular +131153 singular +singular +plural +plural +singular +131159 singular +singular +singular +singular +131164 singular +singular +singular +singular +131170 singular +singular +singular +singular +singular +131176 singular +singular +131179 singular +singular +singular +singular +singular +singular +131186 singular +singular +singular +plural +plural +plural +131193 singular +singular +plural +plural +plural +131199 singular +singular +plural +plural +plural +131205 singular +singular +singular +singular +131210 singular +131212 singular +singular +singular +singular +singular +131218 singular +131220 singular +131222 singular +singular +plural +plural +131228 plural +plural +plural +plural +131233 singular +singular +singular +singular +singular +singular +singular +131241 singular +singular +singular +plural +plural +131247 singular +131249 plural +plural +plural +plural +131254 plural +plural +131257 plural +131259 singular +singular +singular +singular +131264 singular +singular +singular +singular +singular +131270 singular +singular +singular +singular +131275 singular +singular +plural +plural +131280 singular +singular +singular +plural +131285 singular +singular +131288 singular +singular +singular +singular +131293 singular +singular +131297 singular +131299 singular +singular +singular +singular +131304 singular +singular +singular +singular +131311 plural +plural +131314 singular +singular +131317 plural +plural +plural +singular +singular +plural +plural +plural +plural +plural +131329 singular +singular +singular +singular +131334 singular +singular +131337 singular +singular +singular +131341 singular +singular +131344 singular +singular +singular +singular +singular +singular +singular +singular +131353 singular +singular +singular +singular +singular +131359 singular +singular +131362 singular +singular +131365 singular +singular +singular +131369 singular +singular +singular +131373 singular +singular +131376 singular +singular +singular +singular +131382 singular +singular +plural +plural +131387 singular +singular +131390 singular +plural +singular +131394 plural +singular +plural +plural +singular +singular +131401 singular +plural +131405 plural +singular +singular +singular +singular +131411 singular +singular +131414 singular +singular +131418 plural +plural +plural +131422 plural +singular +singular +singular +singular +131428 plural +plural +131431 singular +plural +131435 plural +plural +131439 plural +plural +131443 singular +singular +plural +131447 singular +singular +131450 singular +singular +131454 plural +plural +plural +plural +plural +plural +singular +singular +131465 plural +singular +131468 plural +131471 singular +singular +singular +131475 plural +131477 plural +plural +plural +plural +plural +plural +plural +131485 singular +131488 plural +plural +plural +131492 plural +plural +singular +131496 plural +plural +plural +131500 plural +plural +131503 plural +plural +131506 plural +plural +131509 plural +plural +plural +131513 plural +plural +131516 plural +plural +131519 plural +plural +131522 singular +singular +plural +plural +plural +131528 singular +plural +plural +plural +plural +131534 singular +131536 plural +plural +plural +plural +131541 plural +131544 plural +plural +plural +singular +singular +plural +131551 plural +plural +plural +131555 plural +131557 plural +singular +singular +singular +singular +singular +singular +singular +131566 singular +131569 singular +singular +singular +singular +singular +singular +131576 singular +singular +singular +singular +singular +131585 plural +131587 singular +singular +singular +singular +131592 singular +singular +singular +131596 plural +plural +plural +singular +singular +singular +singular +singular +131605 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +plural +131622 singular +singular +singular +singular +singular +131628 plural +plural +plural +plural +plural +plural +131635 singular +singular +131638 singular +131640 singular +131642 singular +131644 plural +singular +singular +plural +plural +131650 singular +singular +plural +plural +singular +singular +plural +plural +singular +singular +singular +plural +131664 singular +plural +plural +131668 singular +singular +131671 plural +plural +131674 plural +plural +plural +plural +131679 plural +131681 plural +131683 plural +plural +plural +plural +131688 plural +plural +131692 plural +plural +plural +singular +singular +131698 singular +131700 singular +plural +singular +singular +plural +plural +131707 plural +plural +plural +plural +131712 singular +singular +131715 singular +singular +131718 singular +singular +singular +singular +131723 plural +plural +plural +131727 singular +singular +plural +plural +singular +131733 singular +singular +plural +131738 plural +plural +plural +131742 plural +plural +plural +plural +plural +plural +plural +131751 plural +plural +131754 plural +plural +plural +plural +plural +131760 plural +131762 plural +plural +plural +131766 plural +131768 plural +plural +plural +plural +plural +131775 plural +plural +plural +131779 plural +plural +plural +plural +131784 plural +plural +131787 plural +plural +131790 plural +plural +131793 plural +plural +plural +plural +131805 plural +131807 plural +plural +plural +131812 plural +plural +plural +131817 singular +singular +plural +131822 plural +plural +plural +131826 singular +singular +singular +singular +singular +131832 singular +singular +singular +singular +131837 singular +singular +131840 singular +singular +singular +131844 singular +singular +singular +131848 singular +singular +131851 plural +plural +singular +131855 plural +singular +131858 singular +131860 singular +singular +singular +singular +singular +131866 singular +singular +singular +singular +singular +singular +131873 singular +singular +131876 singular +singular +131879 singular +singular +131882 singular +singular +singular +131886 singular +singular +131890 singular +plural +plural +131894 plural +plural +plural +plural +131900 plural +plural +131903 plural +singular +131907 singular +singular +131910 singular +singular +singular +singular +plural +plural +plural +131918 plural +131921 plural +singular +131924 singular +singular +singular +singular +131929 singular +singular +131933 singular +singular +singular +singular +singular +singular +singular +singular +singular +131943 singular +singular +131946 singular +131948 singular +singular +131951 plural +plural +plural +plural +singular +singular +singular +singular +131960 plural +131962 singular +131964 singular +singular +131967 plural +131969 singular +131971 singular +singular +131974 plural +131976 singular +131978 singular +131980 singular +131983 plural +plural +singular +singular +singular +singular +singular +131991 singular +131994 singular +singular +singular +singular +singular +132000 singular +plural +singular +plural +plural +plural +132007 singular +singular +singular +singular +132012 singular +singular +132015 singular +132017 singular +132019 singular +singular +singular +singular +singular +singular +singular +132027 singular +singular +singular +singular +singular +singular +132034 singular +singular +132038 singular +singular +132041 singular +132043 singular +singular +singular +singular +132048 singular +singular +singular +132052 singular +singular +singular +132056 singular +singular +132059 singular +singular +singular +singular +132065 singular +singular +singular +singular +singular +132071 singular +132073 singular +singular +singular +132077 singular +singular +singular +singular +132082 singular +singular +132085 singular +132087 singular +singular +singular +132091 singular +singular +132095 singular +singular +singular +singular +singular +singular +132102 plural +singular +singular +singular +132109 plural +132111 plural +132113 plural +132115 plural +plural +132118 singular +singular +singular +singular +singular +singular +singular +132126 singular +singular +singular +singular +singular +132132 singular +singular +132135 plural +plural +132138 singular +132140 singular +singular +singular +132144 singular +singular +singular +132150 singular +singular +132153 singular +plural +plural +132157 singular +singular +singular +singular +plural +plural +132166 singular +plural +plural +plural +singular +132172 plural +plural +plural +plural +132177 plural +plural +plural +plural +plural +132183 plural +132185 plural +132187 plural +plural +132190 singular +singular +singular +singular +plural +132197 singular +singular +plural +132201 singular +singular +132204 singular +singular +plural +132208 singular +plural +plural +plural +132214 singular +singular +plural +132219 singular +singular +132222 plural +plural +singular +singular +132227 singular +singular +132231 singular +singular +plural +plural +singular +singular +plural +132239 singular +plural +132242 plural +plural +132245 plural +132247 singular +132250 singular +singular +132253 singular +singular +132257 plural +132260 plural +singular +singular +plural +singular +singular +singular +singular +132269 singular +singular +singular +132273 plural +singular +132276 singular +plural +132279 singular +plural +132282 singular +singular +plural +132286 singular +singular +singular +singular +singular +singular +singular +singular +132295 singular +132297 singular +132300 singular +singular +plural +singular +132305 plural +132307 plural +plural +132310 plural +132312 plural +132314 plural +singular +singular +plural +plural +plural +132321 singular +132324 plural +plural +plural +plural +132330 singular +132332 plural +plural +132335 singular +singular +plural +132339 plural +132341 plural +132343 plural +plural +plural +132347 plural +plural +132350 plural +plural +plural +plural +132355 singular +singular +132359 plural +plural +132362 singular +plural +singular +singular +132367 singular +singular +singular +132371 plural +132373 plural +132375 plural +plural +plural +132379 singular +singular +singular +132383 plural +plural +plural +132387 plural +singular +singular +132391 singular +singular +singular +plural +plural +132398 plural +132400 singular +singular +132403 singular +singular +132406 plural +plural +plural +plural +plural +132413 singular +singular +singular +singular +singular +singular +132420 singular +singular +singular +singular +singular +132426 plural +132428 singular +singular +plural +plural +plural +132435 plural +plural +plural +plural +132440 plural +singular +singular +singular +singular +singular +singular +132448 singular +singular +singular +singular +singular +132454 singular +singular +singular +singular +132459 singular +singular +singular +singular +132464 plural +plural +plural +132468 singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +plural +132480 singular +singular +singular +132484 singular +132486 plural +plural +plural +plural +132491 plural +132493 plural +plural +plural +132497 singular +singular +plural +132501 plural +plural +plural +plural +132506 plural +plural +plural +132510 plural +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +132524 singular +singular +132527 singular +singular +singular +singular +singular +singular +132534 singular +132536 plural +plural +plural +132540 singular +singular +singular +singular +132545 singular +singular +plural +plural +132552 singular +singular +plural +plural +singular +plural +plural +132560 plural +plural +132563 plural +plural +singular +singular +singular +plural +plural +132571 plural +plural +132575 plural +plural +singular +singular +132580 singular +singular +singular +singular +singular +singular +132587 singular +singular +132590 singular +singular +singular +singular +singular +singular +132597 singular +singular +singular +132601 plural +plural +132604 plural +132606 plural +132608 singular +132610 singular +singular +132613 singular +singular +singular +132617 singular +singular +singular +singular +singular +singular +132624 singular +singular +132627 plural +plural +singular +132632 singular +singular +singular +singular +plural +132640 singular +singular +132643 singular +singular +132646 singular +132649 singular +singular +singular +132653 singular +singular +132656 singular +singular +singular +singular +singular +plural +132664 plural +132668 plural +plural +singular +132672 plural +132674 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +132685 singular +plural +132688 singular +singular +132691 singular +singular +singular +132695 singular +singular +singular +singular +132702 singular +singular +singular +singular +singular +132708 singular +singular +singular +singular +singular +132714 plural +plural +plural +132718 singular +singular +132721 singular +singular +singular +singular +132726 singular +singular +132730 singular +singular +singular +132734 singular +singular +singular +132738 singular +singular +132741 singular +132743 singular +singular +132746 singular +singular +132750 plural +singular +plural +plural +plural +132757 singular +singular +132760 singular +singular +singular +singular +132765 plural +plural +singular +singular +132771 singular +singular +132774 singular +singular +singular +132778 plural +plural +singular +132783 plural +132785 singular +plural +singular +132790 singular +singular +132793 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +132806 singular +singular +singular +singular +singular +singular +singular +singular +132815 singular +singular +132818 plural +plural +singular +132822 singular +plural +132825 singular +singular +singular +132829 singular +singular +singular +132833 singular +singular +singular +132837 singular +singular +132840 singular +singular +singular +singular +plural +132846 singular +singular +singular +singular +singular +132852 singular +singular +singular +plural +plural +plural +singular +singular +plural +132862 singular +singular +plural +singular +132867 singular +132869 plural +plural +singular +132873 singular +singular +singular +singular +132879 singular +singular +singular +singular +plural +132886 plural +singular +singular +plural +132891 singular +132893 singular +plural +plural +132897 plural +132899 plural +plural +132902 singular +singular +132905 singular +singular +132908 singular +singular +singular +132912 plural +singular +singular +singular +singular +132918 singular +singular +singular +132923 singular +singular +singular +132927 singular +132929 singular +singular +singular +singular +singular +singular +singular +singular +singular +132939 plural +singular +singular +plural +132944 plural +singular +singular +singular +singular +132950 singular +132952 singular +singular +132955 singular +singular +singular +132959 singular +132961 singular +132963 plural +132965 singular +singular +132968 singular +singular +singular +132972 singular +singular +singular +132976 singular +singular +singular +132980 singular +singular +singular +132984 singular +132986 singular +singular +singular +132990 singular +singular +singular +singular +singular +132996 singular +singular +singular +singular +singular +singular +133003 singular +singular +singular +singular +singular +singular +singular +133011 singular +singular +singular +133015 singular +singular +singular +133019 singular +singular +133022 singular +133024 singular +133026 plural +plural +singular +singular +singular +plural +plural +plural +plural +singular +singular +133038 plural +singular +singular +singular +133043 singular +133045 singular +singular +singular +singular +133050 singular +133052 singular +singular +singular +singular +singular +plural +133060 plural +133064 plural +plural +singular +133068 plural +133071 plural +plural +singular +plural +singular +133077 singular +singular +singular +singular +singular +singular +singular +133085 plural +plural +singular +133089 singular +133091 singular +singular +singular +133095 singular +singular +133098 singular +singular +singular +singular +singular +singular +singular +133106 singular +singular +singular +133110 singular +singular +133113 singular +133115 plural +plural +singular +133119 singular +133121 singular +133123 singular +singular +singular +singular +singular +singular +133130 singular +singular +singular +singular +133135 singular +singular +133138 plural +singular +singular +133142 singular +singular +singular +singular +singular +133148 plural +singular +singular +plural +singular +singular +singular +singular +133157 singular +singular +133161 singular +133163 singular +singular +singular +singular +plural +133169 plural +133171 singular +singular +singular +133175 plural +133179 singular +singular +singular +singular +133184 plural +133186 singular +singular +133189 singular +singular +singular +133193 singular +singular +singular +plural +133198 singular +singular +plural +133202 singular +singular +133205 singular +133207 plural +plural +133211 plural +133213 singular +singular +singular +133217 singular +singular +133220 singular +133222 singular +133224 singular +133226 plural +singular +plural +plural +plural +133232 singular +singular +133235 singular +singular +singular +singular +singular +133241 singular +singular +singular +singular +singular +singular +singular +singular +133250 singular +singular +133253 singular +singular +singular +singular +133258 singular +133260 singular +133262 singular +singular +133265 singular +133267 singular +singular +singular +singular +133272 singular +133275 singular +singular +singular +133279 singular +singular +plural +plural +133284 singular +singular +singular +singular +133289 singular +singular +133292 singular +plural +133295 plural +singular +133298 singular +133300 singular +133302 singular +singular +singular +singular +singular +singular +singular +133310 singular +133312 singular +singular +singular +133316 plural +133318 singular +plural +133321 plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +133334 singular +plural +plural +133339 singular +singular +133342 singular +singular +133346 singular +singular +133349 plural +plural +133352 singular +plural +plural +133356 singular +singular +133359 plural +plural +plural +singular +singular +133366 singular +singular +singular +plural +plural +133372 singular +singular +133375 singular +singular +singular +singular +singular +singular +singular +singular +singular +133385 singular +133387 singular +singular +133390 singular +singular +singular +singular +singular +133397 singular +singular +singular +singular +singular +133403 singular +133406 plural +133408 plural +singular +singular +singular +singular +plural +133415 singular +plural +plural +plural +133420 plural +plural +133423 plural +plural +133426 plural +plural +133429 plural +plural +133432 plural +plural +133435 plural +plural +singular +133439 singular +singular +plural +singular +singular +133446 singular +singular +plural +133452 singular +singular +133459 singular +singular +singular +singular +singular +singular +singular +singular +133468 singular +singular +singular +singular +singular +133474 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +133486 singular +singular +singular +133490 singular +singular +singular +plural +133497 singular +133499 singular +singular +singular +singular +133504 singular +singular +singular +133509 singular +133512 plural +plural +plural +singular +singular +singular +133519 singular +singular +singular +singular +singular +singular +133526 plural +plural +plural +133530 singular +singular +133533 singular +singular +133536 singular +plural +plural +133541 singular +singular +singular +133545 singular +singular +singular +singular +133550 plural +plural +133553 plural +plural +plural +133557 plural +singular +singular +133561 singular +singular +133565 plural +plural +plural +133569 plural +plural +133572 singular +singular +133575 singular +singular +133579 plural +133582 plural +plural +plural +plural +133587 singular +singular +plural +plural +plural +133593 plural +133595 plural +133597 plural +plural +plural +plural +plural +singular +singular +133606 singular +plural +plural +133610 plural +plural +singular +singular +singular +133616 singular +singular +133620 singular +singular +plural +133624 singular +singular +plural +plural +133629 singular +singular +singular +singular +133634 singular +singular +singular +singular +133640 plural +plural +133643 singular +singular +133647 singular +singular +133650 singular +133652 singular +133654 singular +singular +133657 singular +singular +plural +singular +singular +133663 plural +singular +singular +133667 singular +singular +singular +singular +singular +singular +133674 plural +singular +singular +singular +singular +133680 singular +singular +133683 singular +133685 plural +plural +133688 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +133700 singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +133712 singular +singular +singular +singular +plural +singular +133719 singular +singular +133722 singular +singular +singular +singular +133727 singular +singular +singular +133731 singular +singular +133734 singular +singular +singular +133739 singular +singular +singular +133743 singular +singular +133746 singular +singular +singular +singular +singular +singular +singular +singular +singular +133756 singular +singular +singular +singular +singular +133762 singular +133764 singular +133766 singular +133768 plural +plural +133772 singular +singular +133775 singular +singular +singular +singular +plural +133781 plural +plural +singular +133786 plural +singular +singular +133790 singular +plural +plural +singular +singular +133796 singular +singular +singular +133801 singular +singular +singular +singular +singular +singular +singular +133809 singular +singular +singular +plural +plural +plural +plural +plural +plural +singular +singular +133821 singular +singular +singular +133825 singular +singular +133828 singular +singular +singular +singular +plural +plural +plural +plural +133837 singular +plural +133841 singular +singular +singular +133845 plural +133847 plural +plural +plural +133851 plural +plural +plural +singular +133856 plural +133858 singular +133860 singular +singular +singular +133865 singular +singular +singular +singular +singular +singular +singular +133873 singular +singular +singular +singular +singular +133880 singular +singular +singular +singular +singular +133886 singular +singular +singular +133890 singular +singular +singular +133894 singular +singular +singular +singular +133899 singular +singular +singular +singular +singular +singular +133906 singular +133908 singular +singular +singular +133913 singular +singular +singular +singular +singular +133919 singular +singular +singular +133923 singular +singular +singular +singular +singular +133929 singular +singular +133932 singular +singular +singular +133936 singular +singular +singular +133940 singular +singular +singular +133944 singular +singular +singular +133948 singular +singular +singular +133952 singular +singular +singular +singular +singular +133958 singular +singular +singular +133962 singular +singular +133965 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +133982 singular +plural +plural +singular +singular +singular +singular +133990 plural +plural +plural +singular +133995 singular +singular +singular +singular +singular +singular +134002 singular +singular +134005 singular +singular +singular +singular +singular +134011 singular +134013 singular +singular +singular +singular +singular +singular +singular +singular +134022 singular +singular +singular +134026 singular +singular +134029 singular +singular +134032 singular +singular +134035 plural +plural +plural +plural +134040 plural +plural +plural +134044 singular +singular +singular +134048 singular +singular +singular +134052 singular +plural +134055 plural +plural +134058 plural +plural +134062 plural +singular +singular +singular +singular +singular +134069 singular +134071 singular +singular +singular +singular +134076 plural +plural +134079 singular +singular +134083 singular +singular +singular +134088 singular +singular +singular +singular +singular +plural +134095 singular +singular +singular +singular +plural +plural +singular +singular +134104 plural +singular +singular +singular +singular +singular +singular +singular +134113 singular +singular +singular +singular +plural +plural +134120 plural +plural +plural +singular +singular +singular +singular +singular +singular +plural +134131 plural +plural +plural +singular +singular +singular +plural +plural +singular +134142 singular +singular +134145 singular +singular +singular +singular +134150 singular +singular +134153 plural +plural +plural +plural +134158 plural +134160 singular +134162 plural +plural +singular +plural +134168 plural +singular +134171 singular +singular +singular +singular +singular +singular +singular +134179 singular +singular +134182 plural +plural +134185 plural +plural +plural +plural +134190 plural +134192 singular +singular +plural +singular +singular +singular +134199 plural +134201 plural +plural +plural +plural +134206 singular +134208 plural +plural +plural +singular +plural +134214 plural +134216 plural +plural +plural +singular +singular +singular +singular +singular +singular +134226 plural +plural +plural +plural +134231 singular +singular +singular +singular +134236 singular +singular +singular +singular +134242 singular +singular +singular +134246 singular +singular +134250 singular +singular +134253 plural +plural +134256 plural +plural +134259 plural +134261 singular +singular +singular +134265 singular +singular +singular +plural +134270 plural +plural +134273 plural +plural +134276 plural +singular +singular +singular +singular +134282 singular +singular +134285 singular +singular +singular +134289 singular +singular +singular +singular +134294 singular +singular +134297 singular +singular +singular +134301 singular +134303 plural +plural +plural +plural +singular +singular +singular +singular +134312 plural +plural +singular +singular +singular +134318 singular +singular +singular +singular +singular +singular +134325 singular +singular +134328 singular +singular +134331 singular +134333 singular +singular +singular +plural +134338 singular +singular +singular +134342 singular +singular +singular +singular +singular +singular +134349 plural +plural +134352 plural +plural +plural +plural +134357 singular +singular +134360 singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +134371 singular +singular +singular +singular +134376 plural +singular +134379 singular +plural +134382 plural +plural +134385 singular +plural +singular +134389 plural +plural +134392 singular +singular +singular +singular +134397 singular +singular +singular +singular +singular +plural +134404 plural +plural +plural +singular +134409 singular +singular +singular +singular +singular +singular +134416 singular +singular +134419 singular +singular +134422 plural +plural +134425 singular +134427 plural +plural +plural +singular +singular +134433 plural +singular +singular +singular +singular +singular +singular +singular +singular +134443 plural +plural +plural +134448 plural +134450 singular +singular +134453 singular +singular +singular +singular +singular +singular +134460 singular +singular +singular +singular +134465 singular +singular +singular +singular +singular +134471 plural +plural +plural +plural +134476 singular +singular +134479 plural +singular +singular +singular +singular +134485 plural +plural +plural +134490 plural +plural +plural +134495 plural +134497 plural +plural +plural +134501 singular +singular +singular +singular +singular +singular +134508 singular +singular +singular +singular +singular +134514 singular +singular +singular +singular +134519 singular +singular +singular +plural +plural +plural +134526 singular +singular +134529 singular +134531 singular +singular +singular +singular +134537 singular +singular +singular +singular +134543 singular +singular +singular +singular +plural +plural +plural +134551 plural +134553 plural +plural +plural +plural +plural +plural +singular +134561 plural +plural +singular +singular +singular +134567 plural +134569 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +134582 singular +singular +singular +singular +134587 singular +plural +plural +singular +134593 singular +singular +134596 plural +singular +singular +singular +134601 singular +plural +134604 singular +singular +singular +singular +134609 singular +134611 singular +singular +singular +singular +singular +singular +134618 singular +singular +134621 singular +singular +singular +134625 singular +singular +134628 singular +singular +singular +singular +134633 plural +plural +134636 plural +134638 plural +134640 singular +singular +singular +singular +134645 singular +134647 singular +singular +singular +134651 singular +singular +singular +singular +134656 singular +134658 singular +singular +singular +singular +singular +134664 plural +plural +134667 plural +plural +plural +plural +plural +134673 singular +singular +singular +singular +134678 singular +singular +134681 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +134692 singular +singular +singular +134696 plural +134698 plural +134700 singular +singular +134703 singular +singular +134706 singular +singular +134709 plural +plural +134712 plural +plural +plural +singular +singular +134718 singular +singular +singular +singular +134723 singular +singular +singular +singular +singular +134730 singular +singular +134733 plural +134735 plural +plural +plural +plural +134740 plural +134742 singular +134744 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +134758 plural +plural +134761 singular +plural +plural +plural +singular +singular +134768 plural +plural +plural +singular +singular +134774 singular +singular +singular +singular +singular +134780 singular +singular +134783 singular +134785 singular +134787 singular +singular +singular +134791 singular +singular +plural +plural +singular +singular +plural +134800 plural +134803 singular +singular +singular +singular +singular +134809 singular +134811 singular +singular +134814 singular +singular +134817 plural +singular +134820 singular +singular +singular +singular +singular +singular +plural +134828 plural +plural +singular +singular +singular +134835 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +plural +plural +134849 plural +plural +singular +singular +134854 singular +singular +singular +singular +134859 singular +singular +plural +plural +134865 singular +singular +plural +plural +singular +134871 singular +singular +singular +singular +singular +134877 singular +singular +singular +singular +134882 singular +singular +singular +singular +singular +singular +singular +singular +singular +134892 singular +singular +singular +singular +singular +singular +singular +plural +134901 plural +134903 plural +134905 plural +singular +singular +singular +singular +singular +134913 singular +134915 singular +134918 singular +singular +134922 singular +singular +134925 plural +plural +plural +134929 singular +singular +plural +singular +singular +134935 singular +134937 singular +singular +singular +singular +134942 singular +singular +plural +singular +singular +134948 singular +134951 singular +134953 singular +134955 singular +singular +singular +singular +singular +plural +134962 plural +134964 plural +plural +134967 singular +singular +singular +134971 plural +134973 plural +134975 plural +plural +134978 plural +singular +singular +singular +singular +singular +134985 singular +134988 singular +singular +singular +134992 singular +134994 singular +singular +singular +singular +135000 singular +135002 singular +singular +singular +135007 plural +135009 singular +135012 singular +singular +135015 plural +135017 plural +plural +singular +plural +135022 plural +plural +singular +135026 plural +135028 singular +135030 plural +singular +singular +plural +135035 singular +singular +plural +singular +singular +plural +135042 singular +singular +135045 singular +plural +singular +singular +plural +plural +135052 singular +singular +plural +135056 singular +singular +singular +plural +135061 singular +singular +plural +135065 singular +plural +135068 plural +135070 singular +plural +135073 plural +135075 plural +135077 singular +singular +plural +plural +plural +singular +135084 singular +singular +singular +plural +plural +135090 plural +135092 plural +135094 plural +135096 plural +135098 plural +plural +singular +135102 singular +singular +plural +plural +singular +singular +135109 plural +singular +singular +135113 singular +135115 plural +plural +singular +plural +135120 singular +plural +135123 singular +135125 singular +singular +singular +135129 plural +plural +plural +135133 singular +singular +singular +135138 singular +singular +135142 singular +singular +plural +singular +singular +135148 plural +plural +plural +singular +singular +135154 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +135167 plural +plural +singular +singular +135172 plural +singular +singular +singular +singular +135178 singular +singular +singular +singular +singular +135184 singular +singular +singular +135188 singular +singular +singular +135192 singular +135194 singular +singular +singular +singular +singular +singular +singular +singular +135203 singular +singular +plural +135207 singular +singular +singular +singular +135212 singular +singular +singular +singular +135217 singular +135220 singular +singular +singular +singular +singular +singular +singular +plural +plural +plural +plural +135232 plural +plural +singular +singular +135237 singular +plural +135240 plural +plural +singular +singular +135245 singular +singular +singular +singular +singular +plural +135252 singular +singular +singular +135256 singular +singular +singular +singular +singular +singular +plural +135264 singular +135267 plural +plural +plural +singular +135274 plural +plural +singular +135278 plural +135280 plural +singular +plural +plural +135285 singular +singular +135288 singular +singular +singular +plural +plural +singular +plural +singular +135298 singular +singular +135301 plural +plural +plural +135305 plural +plural +singular +135309 singular +singular +singular +singular +plural +singular +singular +plural +singular +singular +135320 singular +singular +singular +135324 singular +plural +singular +135329 singular +singular +singular +singular +135334 singular +singular +135337 singular +135339 singular +135341 singular +135344 singular +135346 singular +135348 singular +singular +plural +plural +plural +singular +singular +135356 singular +135358 singular +135361 singular +singular +135364 singular +singular +singular +singular +singular +singular +singular +135372 plural +135374 plural +135376 singular +plural +plural +singular +singular +plural +135383 singular +plural +135386 plural +135388 plural +singular +singular +singular +singular +singular +135396 plural +135398 singular +singular +singular +singular +singular +plural +135406 singular +singular +singular +singular +singular +singular +singular +singular +singular +135416 singular +singular +singular +singular +singular +singular +135423 plural +plural +singular +singular +plural +135429 plural +135431 singular +135433 singular +singular +135436 singular +singular +plural +singular +singular +135442 singular +135444 singular +singular +135447 plural +135449 singular +135451 singular +135453 singular +135455 singular +135457 singular +singular +singular +135461 singular +singular +singular +135465 singular +singular +135468 singular +singular +135471 singular +135473 singular +135475 singular +135477 singular +135479 singular +135481 plural +135483 singular +135485 singular +135487 singular +135489 singular +135491 singular +135493 singular +135495 plural +135497 plural +135499 plural +135501 plural +135503 plural +135505 plural +plural +135508 singular +singular +singular +singular +singular +singular +singular +singular +135517 singular +135519 plural +plural +plural +135523 plural +plural +singular +135527 singular +135532 plural +plural +plural +plural +plural +plural +plural +135540 singular +135543 plural +135545 singular +singular +singular +singular +singular +plural +135552 plural +plural +135556 singular +singular +singular +singular +singular +singular +singular +135564 singular +135566 singular +135568 singular +135570 singular +135572 singular +singular +135575 singular +135577 singular +singular +singular +singular +singular +singular +135584 singular +singular +135587 singular +singular +135590 singular +singular +135593 plural +135595 plural +singular +singular +plural +135601 plural +135603 plural +plural +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +135618 plural +singular +135621 plural +plural +plural +135625 plural +plural +135628 plural +plural +135632 singular +singular +singular +singular +135637 singular +plural +plural +plural +plural +plural +plural +135645 singular +singular +135648 singular +singular +singular +135652 singular +singular +singular +singular +135657 singular +singular +135660 plural +plural +135663 plural +plural +135666 plural +plural +135669 singular +singular +singular +singular +singular +plural +135676 singular +135678 singular +singular +singular +singular +singular +135684 singular +singular +135687 singular +135689 singular +singular +singular +135693 singular +singular +singular +singular +singular +singular +135702 singular +135705 singular +plural +135708 plural +135710 plural +135712 plural +135715 singular +135717 singular +135720 singular +singular +singular +singular +135726 singular +135728 singular +135731 singular +singular +135735 singular +135737 singular +135740 singular +singular +135744 singular +135746 singular +135749 singular +singular +135752 singular +135755 singular +135757 singular +135760 plural +plural +singular +plural +plural +plural +singular +singular +135770 singular +singular +singular +plural +plural +plural +plural +135779 singular +singular +singular +plural +135784 plural +135786 plural +plural +plural +135790 singular +singular +135793 plural +singular +135796 singular +singular +singular +singular +135801 singular +singular +plural +135805 singular +singular +135808 singular +singular +135811 singular +singular +singular +singular +plural +135817 plural +135819 plural +plural +plural +singular +135824 singular +singular +singular +singular +singular +singular +singular +singular +singular +135834 singular +singular +singular +135838 singular +singular +singular +plural +plural +singular +135845 singular +singular +135848 singular +plural +135852 singular +singular +singular +singular +135857 plural +plural +plural +plural +135862 plural +plural +plural +plural +135867 plural +135869 plural +plural +plural +135873 plural +singular +singular +singular +singular +135879 singular +singular +plural +135885 singular +135887 singular +singular +singular +singular +plural +singular +singular +plural +plural +plural +plural +singular +plural +plural +singular +plural +plural +135905 plural +plural +135908 singular +135910 singular +singular +singular +135915 singular +plural +plural +135920 singular +plural +plural +plural +135926 singular +singular +singular +singular +plural +singular +singular +plural +135935 plural +135937 plural +singular +singular +singular +135942 singular +singular +singular +singular +singular +135948 singular +singular +singular +singular +singular +135954 singular +singular +135957 singular +singular +singular +singular +135962 singular +singular +plural +plural +plural +plural +singular +135970 singular +singular +singular +plural +plural +135976 singular +singular +singular +singular +singular +singular +plural +135984 singular +singular +plural +plural +plural +plural +singular +singular +plural +135994 singular +135996 plural +plural +singular +136000 singular +136002 singular +singular +singular +136006 singular +singular +singular +136010 plural +plural +singular +plural +plural +singular +singular +singular +singular +singular +singular +136022 singular +singular +singular +singular +singular +singular +singular +singular +136031 singular +singular +singular +singular +136036 singular +singular +singular +136040 singular +singular +136043 singular +singular +singular +136047 singular +136050 singular +singular +136053 singular +136055 plural +plural +singular +singular +singular +136062 singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +136075 singular +136077 singular +singular +singular +singular +136082 singular +singular +singular +singular +singular +singular +singular +singular +136091 plural +plural +plural +136095 singular +singular +singular +singular +136100 plural +plural +plural +singular +singular +singular +136108 singular +singular +singular +singular +singular +singular +136116 singular +singular +plural +plural +136121 singular +singular +plural +136125 singular +singular +136128 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +136143 singular +136145 singular +singular +136149 singular +singular +singular +singular +singular +singular +plural +136157 singular +plural +136160 singular +singular +singular +singular +136165 singular +singular +136168 singular +136170 singular +singular +singular +plural +plural +plural +plural +plural +136179 singular +plural +plural +136183 singular +singular +singular +singular +singular +singular +136190 plural +plural +plural +136194 plural +plural +136197 plural +plural +136200 plural +plural +136203 plural +plural +136206 plural +136208 plural +plural +136211 plural +136213 plural +136215 plural +136217 plural +136219 singular +singular +singular +136223 plural +plural +singular +singular +136228 plural +plural +plural +plural +136233 singular +singular +136236 singular +singular +136239 singular +singular +136243 singular +singular +singular +136247 singular +singular +singular +136252 singular +singular +singular +singular +singular +plural +plural +136260 singular +136262 plural +singular +plural +plural +singular +singular +singular +singular +136271 plural +plural +singular +singular +singular +plural +plural +plural +136281 singular +singular +singular +singular +singular +singular +136288 singular +136290 plural +plural +plural +136294 singular +singular +singular +singular +136299 singular +singular +singular +singular +136304 singular +singular +singular +136308 plural +plural +plural +plural +136313 plural +plural +plural +136317 singular +singular +singular +136321 singular +singular +singular +singular +singular +singular +singular +136329 singular +singular +136332 singular +singular +singular +136336 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +136347 singular +singular +136350 singular +singular +plural +plural +136355 singular +singular +136358 singular +singular +136361 singular +136363 singular +136365 singular +136368 singular +136370 plural +plural +136373 singular +plural +plural +plural +136378 plural +singular +136381 singular +singular +singular +136385 singular +plural +136388 plural +136390 plural +136392 singular +singular +plural +136396 plural +plural +plural +plural +136401 singular +singular +singular +136406 singular +singular +singular +singular +136411 plural +136413 plural +singular +singular +136417 singular +singular +singular +136422 plural +singular +singular +136426 singular +singular +136430 singular +singular +plural +136434 plural +136436 plural +136438 singular +singular +plural +plural +plural +plural +plural +plural +136447 plural +136449 singular +plural +plural +plural +singular +singular +singular +singular +singular +singular +136460 singular +singular +singular +singular +136465 singular +singular +singular +singular +136470 plural +singular +singular +singular +136475 singular +singular +136478 plural +plural +singular +singular +136483 singular +singular +136486 plural +136488 singular +plural +plural +plural +136494 singular +plural +plural +plural +singular +singular +singular +136502 singular +singular +singular +136506 singular +136508 plural +plural +plural +136512 plural +plural +plural +singular +singular +singular +singular +136520 singular +136522 plural +136524 singular +singular +plural +singular +singular +plural +136531 singular +singular +singular +singular +136536 plural +136538 singular +singular +singular +singular +136543 plural +singular +singular +plural +plural +136549 singular +singular +singular +singular +136554 singular +singular +136557 singular +singular +136560 singular +plural +136563 singular +singular +singular +singular +plural +singular +136570 singular +singular +singular +singular +136575 singular +136578 singular +singular +136581 singular +singular +136584 plural +singular +136587 singular +136589 plural +plural +plural +plural +136594 singular +singular +singular +singular +136599 singular +singular +136602 singular +136604 singular +singular +singular +singular +singular +singular +136611 singular +singular +136614 singular +136616 singular +plural +136619 singular +plural +plural +plural +plural +136625 plural +plural +plural +136629 singular +singular +136632 plural +plural +136635 singular +singular +singular +singular +singular +singular +singular +136643 plural +plural +plural +136647 plural +plural +136650 plural +plural +136653 plural +plural +plural +136657 singular +singular +singular +plural +plural +plural +136664 singular +136666 singular +singular +136669 singular +singular +plural +plural +plural +plural +136676 plural +136678 plural +singular +136681 plural +plural +plural +136685 singular +singular +136688 singular +singular +plural +136692 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +136708 singular +136710 singular +136712 singular +singular +singular +singular +singular +singular +136719 singular +singular +singular +singular +136724 singular +singular +singular +136728 singular +singular +136731 singular +singular +singular +136735 singular +singular +singular +plural +136740 singular +singular +136743 singular +136746 singular +singular +singular +singular +singular +singular +singular +singular +136755 singular +singular +136758 singular +singular +singular +136762 singular +singular +singular +singular +singular +136768 singular +singular +singular +136772 singular +singular +singular +singular +singular +singular +singular +singular +136781 plural +plural +136784 singular +136786 plural +136788 plural +plural +singular +plural +136793 singular +singular +singular +136797 plural +singular +136800 singular +singular +singular +136804 plural +plural +plural +136808 singular +singular +136811 singular +136814 singular +136816 singular +136818 singular +136820 singular +136823 plural +plural +plural +136827 singular +singular +singular +136831 singular +singular +singular +plural +singular +plural +136838 singular +singular +136841 plural +plural +plural +plural +136846 plural +plural +136849 singular +singular +plural +singular +singular +singular +136856 singular +singular +singular +singular +136861 singular +singular +singular +singular +singular +singular +136868 singular +singular +singular +singular +singular +singular +136875 singular +singular +singular +plural +136880 singular +singular +singular +136884 singular +singular +singular +singular +136889 plural +plural +136892 plural +136894 plural +136896 plural +136898 plural +136900 plural +136902 plural +136904 plural +plural +plural +singular +singular +plural +136911 singular +singular +singular +singular +singular +136917 singular +singular +singular +singular +singular +singular +singular +136925 singular +singular +136928 plural +136930 plural +plural +plural +plural +136935 plural +plural +plural +plural +136940 plural +plural +plural +136944 singular +136946 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +136958 singular +singular +136961 singular +136963 singular +singular +136966 singular +136968 singular +singular +singular +singular +singular +singular +singular +singular +136977 singular +singular +136980 singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +136994 singular +singular +singular +singular +singular +singular +137001 singular +singular +plural +137007 plural +plural +plural +137012 plural +plural +plural +singular +plural +137018 plural +plural +singular +137022 singular +plural +plural +137027 singular +plural +plural +137032 singular +plural +plural +137037 plural +plural +plural +137041 singular +singular +singular +singular +singular +plural +137050 plural +137052 plural +plural +137055 plural +singular +singular +137059 singular +singular +137062 singular +singular +singular +singular +singular +137068 singular +singular +singular +137072 plural +plural +singular +137076 singular +singular +singular +137080 singular +singular +singular +singular +137085 singular +singular +singular +singular +singular +singular +137092 singular +singular +singular +singular +singular +137098 plural +137100 plural +singular +singular +137104 singular +singular +137107 singular +singular +singular +plural +singular +137113 singular +singular +singular +singular +137119 plural +plural +singular +singular +singular +singular +singular +137127 singular +singular +singular +singular +singular +singular +137134 singular +singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +137190 plural +137192 plural +137194 plural +137196 singular +singular +plural +plural +singular +137202 singular +singular +137205 singular +singular +singular +singular +singular +singular +137212 singular +singular +137215 singular +137217 singular +137219 singular +137221 singular +singular +singular +singular +singular +singular +137228 singular +singular +singular +singular +singular +137234 singular +singular +137237 singular +singular +singular +singular +137242 singular +singular +137245 plural +singular +137248 singular +singular +singular +singular +singular +singular +137255 singular +singular +singular +singular +singular +137261 plural +plural +plural +137265 singular +singular +singular +137269 plural +plural +singular +singular +plural +singular +singular +plural +137278 singular +137280 plural +plural +singular +137285 plural +singular +137288 singular +137290 singular +137293 plural +singular +singular +137297 singular +singular +plural +plural +137302 singular +137306 singular +137308 singular +singular +singular +137312 singular +singular +singular +137316 singular +137319 plural +plural +137322 singular +singular +singular +singular +singular +singular +137329 singular +singular +singular +singular +singular +singular +137336 singular +singular +137339 singular +singular +singular +singular +137344 singular +singular +137347 singular +singular +singular +singular +137352 singular +singular +137357 singular +singular +singular +plural +137363 singular +singular +singular +singular +singular +singular +137370 plural +plural +singular +singular +137375 singular +plural +plural +137379 singular +singular +137382 singular +137385 singular +singular +singular +singular +137390 singular +singular +137393 singular +singular +137396 plural +plural +singular +plural +singular +137402 plural +singular +singular +singular +137407 singular +singular +singular +137411 plural +plural +plural +137415 singular +137417 singular +137421 plural +singular +singular +singular +137426 singular +singular +137429 singular +singular +singular +singular +137434 plural +137436 plural +137438 plural +plural +plural +plural +137443 singular +singular +plural +plural +plural +plural +137450 plural +137452 singular +singular +singular +singular +plural +plural +plural +plural +singular +singular +singular +singular +137465 plural +plural +singular +plural +137471 singular +singular +137474 singular +singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +137492 singular +plural +137496 singular +137498 singular +singular +137502 plural +plural +singular +singular +singular +singular +singular +plural +137511 singular +singular +singular +137515 singular +singular +singular +137519 plural +plural +singular +plural +plural +137525 plural +plural +plural +plural +singular +singular +singular +singular +singular +singular +137536 singular +singular +137539 singular +plural +plural +singular +singular +singular +singular +singular +137548 singular +singular +137551 singular +singular +singular +singular +137557 singular +singular +singular +137562 singular +singular +singular +singular +137568 singular +singular +singular +137572 singular +singular +singular +137576 singular +singular +singular +137580 singular +137582 singular +137584 singular +singular +singular +singular +singular +singular +singular +137592 singular +singular +singular +singular +137597 singular +singular +singular +singular +137602 singular +singular +plural +plural +plural +plural +plural +plural +137611 singular +singular +singular +plural +137616 singular +singular +singular +singular +137621 plural +plural +plural +137625 singular +singular +137628 plural +plural +137631 plural +plural +137634 plural +plural +137637 plural +plural +137640 plural +plural +137643 singular +singular +137646 singular +singular +singular +singular +singular +singular +singular +singular +137655 plural +plural +137658 plural +plural +singular +singular +singular +singular +137665 singular +singular +singular +singular +singular +singular +singular +singular +singular +137675 singular +singular +137678 singular +singular +plural +singular +137683 singular +singular +singular +singular +137688 singular +singular +singular +singular +singular +singular +singular +singular +137697 singular +singular +singular +singular +singular +plural +plural +singular +singular +singular +singular +singular +137710 singular +singular +137713 plural +singular +singular +singular +137718 singular +plural +plural +plural +plural +137724 singular +singular +singular +137729 singular +singular +137732 plural +plural +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +singular +137746 singular +singular +singular +singular +137752 singular +singular +singular +singular +plural +plural +137759 singular +singular +singular +singular +singular +singular +plural +137767 singular +singular +137770 singular +singular +singular +singular +singular +singular +singular +singular +137779 plural diff --git a/tf/0.1.1/oslots.tf b/tf/0.1.1/oslots.tf new file mode 100644 index 0000000..870d40c --- /dev/null +++ b/tf/0.1.1/oslots.tf @@ -0,0 +1,131134 @@ +@edge +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +137780 1-18299 +18300-29576 +29577-49032 +49033-64675 +64676-83068 +83069-90168 +90169-96988 +96989-101457 +101458-103685 +103686-106104 +106105-107734 +107735-109309 +109310-110782 +110783-111604 +111605-113192 +113193-114429 +114430-115087 +115088-115422 +115423-120377 +120378-122116 +122117-123792 +123793-124890 +124891-127026 +127027-127271 +127272-127490 +127491-127947 +127948-137779 +1-436 +437-893 +894-1220 +1221-1649 +1650-2472 +2473-3122 +3123-3638 +3639-4220 +4221-4864 +4865-5586 +5587-6078 +6079-6983 +6984-8057 +8058-8615 +8616-9227 +9228-9753 +9754-10247 +10248-10914 +10915-11441 +11442-11980 +11981-12844 +12845-13503 +13504-14155 +14156-14978 +14979-15728 +15729-16967 +16968-17972 +17973-18299 +18300-19000 +19001-19541 +19542-20080 +20081-20768 +20769-21467 +21468-22448 +22449-23051 +23052-23681 +23682-24542 +24543-25420 +25421-25983 +25984-26774 +26775-27377 +27378-28573 +28574-29240 +29241-29576 +29577-30761 +30762-31609 +31610-32197 +32198-32966 +32967-33717 +33718-34641 +34642-35531 +35532-36610 +36611-37758 +37759-38544 +38545-39525 +39526-40566 +40567-41229 +41230-41839 +41840-42402 +42403-42997 +42998-43565 +43566-44246 +44247-45000 +45001-45699 +45700-46286 +46287-47370 +47371-48215 +48216-49032 +49033-49860 +49861-50290 +50291-50943 +50944-51873 +51874-52694 +52695-53932 +53933-54794 +54795-55881 +55882-56572 +56573-57267 +57268-58209 +58210-59099 +59100-59759 +59760-60335 +60336-60835 +60836-61416 +61417-61914 +61915-62703 +62704-63518 +63519-64133 +64134-64675 +64676-65180 +65181-66011 +66012-66507 +66508-67191 +67192-67963 +67964-68241 +68242-69357 +69358-70051 +70052-70832 +70833-71669 +71670-72196 +72197-72687 +72688-73618 +73619-74092 +74093-74783 +74784-75499 +75500-76174 +76175-76684 +76685-77437 +77438-78113 +78114-78911 +78912-79480 +79481-80139 +80140-80597 +80598-81127 +81128-81718 +81719-82470 +82471-83068 +83069-83611 +83612-84060 +84061-84489 +84490-84889 +84890-85321 +85322-85688 +85689-86156 +86157-86809 +86810-87333 +87334-87668 +87669-88247 +88248-88551 +88552-88821 +88822-89200 +89201-89743 +89744-90168 +90169-90664 +90665-90952 +90953-91292 +91293-91638 +91639-91858 +91859-92193 +92194-92879 +92880-93104 +93105-93554 +93555-94017 +94018-94548 +94549-95018 +95019-95215 +95216-95821 +95822-96665 +96666-96988 +96989-97475 +97476-97760 +97761-98056 +98057-98376 +98377-98714 +98715-98980 +98981-99307 +99308-99717 +99718-100001 +100002-100312 +100313-100811 +100812-101221 +101222-101457 +101458-101819 +101820-102205 +102206-102660 +102661-103105 +103106-103418 +103419-103685 +103686-104086 +104087-104448 +104449-104772 +104773-105254 +105255-105710 +105711-106104 +106105-106606 +106607-107037 +107038-107377 +107378-107734 +107735-108272 +108273-108659 +108660-109023 +109024-109309 +109310-109520 +109521-109910 +109911-110157 +110158-110465 +110466-110782 +110783-111016 +111017-111331 +111332-111604 +111605-111910 +111911-112095 +112096-112301 +112302-112522 +112523-112850 +112851-113192 +113193-113509 +113510-113867 +113868-114102 +114103-114429 +114430-114679 +114680-114868 +114869-115087 +115088-115422 +115423-115678 +115679-115992 +115993-116279 +116280-116571 +116572-116802 +116803-117101 +117102-117556 +117557-117830 +117831-118343 +118344-118893 +118894-119526 +119527-120000 +120001-120377 +120378-120783 +120784-121199 +121200-121494 +121495-121769 +121770-122116 +122117-122520 +122521-122912 +122913-123280 +123281-123585 +123586-123792 +123793-124177 +124178-124550 +124551-124890 +124891-125097 +125098-125684 +125685-126150 +126151-126599 +126600-127026 +127027-127271 +127272-127490 +127491-127947 +127948-128416 +128417-129038 +129039-129561 +129562-129854 +129855-130193 +130194-130610 +130611-131008 +131009-131327 +131328-131824 +131825-132116 +132117-132611 +132612-133048 +133049-133495 +133496-134042 +134043-134259 +134260-134728 +134729-135170 +135171-135791 +135792-136315 +136316-136722 +136723-137327 +137328-137779 +81323-81356 +1-8 +9-90 +91-172 +173-246 +247-275 +276-283 +284-301 +302-317 +318-367 +368-403 +404-436 +437-476 +477-503 +504-541 +542-577 +578-602 +603-610 +611-640 +641-656 +657-696 +697-734 +735-771 +772-800 +801-836 +837-851 +852-866 +867-893 +894-916 +917-940 +941-967 +968-994 +995-1017 +1018-1023 +1024-1048 +1049-1058 +1059-1070 +1071-1093 +1094-1101 +1102-1127 +1128-1144 +1145-1160 +1161-1176 +1177-1179 +1180-1188 +1189-1203 +1204-1220 +1221-1234 +1235-1243 +1244-1261 +1262-1281 +1282-1309 +1310-1331 +1332-1343 +1344-1375 +1376-1382 +1383-1393 +1394-1405 +1406-1414 +1415-1471 +1472-1486 +1487-1510 +1511-1513 +1514-1524 +1525-1532 +1533-1560 +1561-1563 +1564-1575 +1576-1602 +1603-1611 +1612-1631 +1632-1649 +1650-1657 +1658-1665 +1666-1673 +1674-1685 +1686-1691 +1692-1699 +1700-1709 +1710-1715 +1716-1725 +1726-1733 +1734-1745 +1746-1761 +1762-1772 +1773-1780 +1781-1786 +1787-1794 +1795-1806 +1807-1812 +1813-1819 +1820-1839 +1840-1862 +1863-1872 +1873-1877 +1878-1904 +1905-1926 +1927-1940 +1941-1963 +1964-1978 +1979-2017 +2018-2058 +2059-2089 +2090-2102 +2103-2107 +2108-2127 +2128-2142 +2143-2160 +2161-2174 +2175-2192 +2193-2203 +2204-2226 +2227-2241 +2242-2248 +2249-2291 +2292-2300 +2301-2308 +2309-2318 +2319-2326 +2327-2340 +2341-2355 +2356-2365 +2366-2377 +2378-2389 +2390-2427 +2428-2436 +2437-2443 +2444-2453 +2454-2460 +2461-2472 +2473-2486 +2487-2500 +2501-2524 +2525-2531 +2532-2553 +2554-2564 +2565-2589 +2590-2596 +2597-2618 +2619-2629 +2630-2644 +2645-2661 +2662-2665 +2666-2689 +2690-2697 +2698-2710 +2711-2722 +2723-2738 +2739-2752 +2753-2771 +2772-2778 +2779-2804 +2805-2815 +2816-2833 +2834-2852 +2853-2864 +2865-2871 +2872-2884 +2885-2897 +2898-2909 +2910-2930 +2931-2936 +2937-2956 +2957-2968 +2969-2991 +2992-2996 +2997-3009 +3010-3014 +3015-3021 +3022-3025 +3026-3040 +3041-3062 +3063-3074 +3075-3080 +3081-3091 +3092-3105 +3106-3116 +3117-3122 +3123-3127 +3128-3140 +3141-3161 +3162-3183 +3184-3204 +3205-3230 +3231-3254 +3255-3278 +3279-3304 +3305-3319 +3320-3327 +3328-3371 +3372-3387 +3388-3393 +3394-3402 +3403-3416 +3417-3429 +3430-3440 +3441-3447 +3448-3472 +3473-3499 +3500-3514 +3515-3536 +3537-3561 +3562-3584 +3585-3609 +3610-3625 +3626-3638 +3639-3648 +3649-3661 +3662-3670 +3671-3676 +3677-3700 +3701-3723 +3724-3729 +3730-3753 +3754-3783 +3784-3803 +3804-3826 +3827-3837 +3838-3846 +3847-3857 +3858-3865 +3866-3880 +3881-3890 +3891-3895 +3896-3902 +3903-3913 +3914-3931 +3932-3943 +3944-3955 +3956-3981 +3982-3997 +3998-4012 +4013-4023 +4024-4038 +4039-4041 +4042-4049 +4050-4056 +4057-4068 +4069-4085 +4086-4115 +4116-4132 +4133-4141 +4142-4157 +4158-4161 +4162-4168 +4169-4185 +4186-4200 +4201-4220 +4221-4231 +4232-4239 +4240-4255 +4256-4265 +4266-4310 +4311-4325 +4326-4332 +4333-4347 +4348-4365 +4366-4369 +4370-4390 +4391-4409 +4410-4423 +4424-4433 +4434-4440 +4441-4460 +4461-4479 +4480-4491 +4492-4500 +4501-4512 +4513-4519 +4520-4533 +4534-4543 +4544-4570 +4571-4580 +4581-4594 +4595-4605 +4606-4620 +4621-4628 +4629-4654 +4655-4657 +4658-4671 +4672-4681 +4682-4696 +4697-4715 +4716-4719 +4720-4731 +4732-4736 +4737-4745 +4746-4755 +4756-4763 +4764-4770 +4771-4781 +4782-4793 +4794-4821 +4822-4838 +4839-4851 +4852-4864 +4865-4885 +4886-4893 +4894-4938 +4939-4958 +4959-4968 +4969-4978 +4979-4986 +4987-4990 +4991-5012 +5013-5019 +5020-5033 +5034-5038 +5039-5045 +5046-5069 +5070-5094 +5095-5110 +5111-5119 +5120-5130 +5131-5135 +5136-5147 +5148-5162 +5163-5172 +5173-5181 +5182-5197 +5198-5214 +5215-5223 +5224-5230 +5231-5242 +5243-5259 +5260-5271 +5272-5287 +5288-5297 +5298-5301 +5302-5313 +5314-5323 +5324-5333 +5334-5347 +5348-5359 +5360-5364 +5365-5377 +5378-5387 +5388-5390 +5391-5394 +5395-5415 +5416-5434 +5435-5443 +5444-5449 +5450-5476 +5477-5487 +5488-5499 +5500-5514 +5515-5531 +5532-5544 +5545-5563 +5564-5586 +5587-5607 +5608-5632 +5633-5645 +5646-5661 +5662-5670 +5671-5691 +5692-5699 +5700-5709 +5710-5714 +5715-5741 +5742-5764 +5765-5782 +5783-5792 +5793-5802 +5803-5806 +5807-5812 +5813-5833 +5834-5844 +5845-5863 +5864-5871 +5872-5886 +5887-5912 +5913-5925 +5926-5932 +5933-5935 +5936-5951 +5952-5964 +5965-5992 +5993-6001 +6002-6033 +6034-6044 +6045-6067 +6068-6078 +6079-6090 +6091-6101 +6102-6118 +6119-6161 +6162-6181 +6182-6190 +6191-6205 +6206-6214 +6215-6222 +6223-6228 +6229-6240 +6241-6266 +6267-6271 +6272-6277 +6278-6285 +6286-6293 +6294-6304 +6305-6310 +6311-6326 +6327-6349 +6350-6360 +6361-6373 +6374-6389 +6390-6395 +6396-6402 +6403-6411 +6412-6424 +6425-6442 +6443-6465 +6466-6475 +6476-6481 +6482-6495 +6496-6501 +6502-6518 +6519-6539 +6540-6545 +6546-6560 +6561-6578 +6579-6590 +6591-6611 +6612-6631 +6632-6638 +6639-6646 +6647-6655 +6656-6674 +6675-6692 +6693-6704 +6705-6719 +6720-6742 +6743-6772 +6773-6796 +6797-6825 +6826-6843 +6844-6852 +6853-6860 +6861-6885 +6886-6893 +6894-6910 +6911-6945 +6946-6963 +6964-6983 +6984-6996 +6997-7016 +7017-7029 +7030-7110 +7111-7114 +7115-7126 +7127-7144 +7145-7161 +7162-7177 +7178-7198 +7199-7233 +7234-7246 +7247-7269 +7270-7276 +7277-7296 +7297-7303 +7304-7321 +7322-7340 +7341-7368 +7369-7397 +7398-7415 +7416-7434 +7435-7447 +7448-7464 +7465-7468 +7469-7476 +7477-7486 +7487-7500 +7501-7506 +7507-7535 +7536-7556 +7557-7585 +7586-7589 +7590-7608 +7609-7641 +7642-7649 +7650-7664 +7665-7678 +7679-7684 +7685-7694 +7695-7711 +7712-7722 +7723-7737 +7738-7767 +7768-7776 +7777-7789 +7790-7793 +7794-7823 +7824-7834 +7835-7847 +7848-7883 +7884-7890 +7891-7909 +7910-7918 +7919-7921 +7922-7924 +7925-7950 +7951-7961 +7962-7986 +7987-7993 +7994-8010 +8011-8019 +8020-8024 +8025-8028 +8029-8047 +8048-8057 +8058-8091 +8092-8110 +8111-8120 +8121-8132 +8133-8158 +8159-8176 +8177-8195 +8196-8211 +8212-8227 +8228-8240 +8241-8250 +8251-8264 +8265-8293 +8294-8306 +8307-8320 +8321-8327 +8328-8360 +8361-8374 +8375-8385 +8386-8405 +8406-8416 +8417-8422 +8423-8441 +8442-8453 +8454-8472 +8473-8484 +8485-8502 +8503-8506 +8507-8521 +8522-8534 +8535-8550 +8551-8559 +8560-8571 +8572-8579 +8580-8611 +8612-8615 +8616-8635 +8636-8643 +8644-8661 +8662-8679 +8680-8706 +8707-8716 +8717-8738 +8739-8746 +8747-8774 +8775-8788 +8789-8803 +8804-8805 +8806-8809 +8810-8818 +8819-8828 +8829-8836 +8837-8853 +8854-8867 +8868-8880 +8881-8895 +8896-8907 +8908-8928 +8929-8934 +8935-8948 +8949-8963 +8964-8972 +8973-8988 +8989-9009 +9010-9025 +9026-9034 +9035-9052 +9053-9092 +9093-9097 +9098-9132 +9133-9147 +9148-9155 +9156-9162 +9163-9189 +9190-9203 +9204-9213 +9214-9227 +9228-9242 +9243-9255 +9256-9264 +9265-9278 +9279-9294 +9295-9298 +9299-9308 +9309-9323 +9324-9333 +9334-9347 +9348-9370 +9371-9388 +9389-9407 +9408-9431 +9432-9449 +9450-9457 +9458-9472 +9473-9497 +9498-9520 +9521-9552 +9553-9564 +9565-9596 +9597-9613 +9614-9636 +9637-9659 +9660-9680 +9681-9702 +9703-9727 +9728-9753 +9754-9777 +9778-9798 +9799-9808 +9809-9835 +9836-9862 +9863-9873 +9874-9885 +9886-9897 +9898-9921 +9922-9937 +9938-9974 +9975-9985 +9986-10018 +10019-10029 +10030-10052 +10053-10063 +10064-10071 +10072-10087 +10088-10118 +10119-10145 +10146-10148 +10149-10168 +10169-10170 +10171-10202 +10203-10216 +10217-10247 +10248-10266 +10267-10295 +10296-10312 +10313-10325 +10326-10354 +10355-10360 +10361-10374 +10375-10391 +10392-10414 +10415-10427 +10428-10445 +10446-10452 +10453-10472 +10473-10475 +10476-10499 +10500-10520 +10521-10537 +10538-10551 +10552-10558 +10559-10579 +10580-10586 +10587-10600 +10601-10624 +10625-10652 +10653-10668 +10669-10687 +10688-10700 +10701-10717 +10718-10727 +10728-10749 +10750-10763 +10764-10777 +10778-10801 +10802-10815 +10816-10829 +10830-10847 +10848-10866 +10867-10878 +10879-10894 +10895-10914 +10915-10937 +10938-10946 +10947-10963 +10964-10979 +10980-11002 +11003-11009 +11010-11017 +11018-11028 +11029-11048 +11049-11065 +11066-11082 +11083-11095 +11096-11123 +11124-11127 +11128-11138 +11139-11143 +11144-11165 +11166-11172 +11173-11186 +11187-11210 +11211-11213 +11214-11239 +11240-11249 +11250-11274 +11275-11287 +11288-11306 +11307-11324 +11325-11335 +11336-11351 +11352-11368 +11369-11406 +11407-11433 +11434-11441 +11442-11460 +11461-11475 +11476-11487 +11488-11503 +11504-11506 +11507-11516 +11517-11534 +11535-11540 +11541-11548 +11549-11573 +11574-11583 +11584-11591 +11592-11598 +11599-11625 +11626-11639 +11640-11644 +11645-11653 +11654-11662 +11663-11672 +11673-11681 +11682-11734 +11735-11752 +11753-11758 +11759-11780 +11781-11797 +11798-11800 +11801-11828 +11829-11837 +11838-11856 +11857-11901 +11902-11910 +11911-11929 +11930-11936 +11937-11946 +11947-11958 +11959-11966 +11967-11980 +11981-12020 +12021-12033 +12034-12037 +12038-12068 +12069-12095 +12096-12118 +12119-12143 +12144-12156 +12157-12170 +12171-12215 +12216-12227 +12228-12260 +12261-12276 +12277-12288 +12289-12295 +12296-12326 +12327-12331 +12332-12342 +12343-12376 +12377-12386 +12387-12415 +12416-12438 +12439-12449 +12450-12482 +12483-12489 +12490-12502 +12503-12506 +12507-12510 +12511-12521 +12522-12530 +12531-12536 +12537-12545 +12546-12554 +12555-12557 +12558-12606 +12607-12609 +12610-12633 +12634-12651 +12652-12667 +12668-12678 +12679-12691 +12692-12712 +12713-12721 +12722-12733 +12734-12754 +12755-12783 +12784-12802 +12803-12817 +12818-12832 +12833-12844 +12845-12867 +12868-12882 +12883-12909 +12910-12925 +12926-12935 +12936-12953 +12954-12969 +12970-12984 +12985-13000 +13001-13005 +13006-13019 +13020-13030 +13031-13033 +13034-13051 +13052-13060 +13061-13067 +13068-13078 +13079-13125 +13126-13137 +13138-13143 +13144-13148 +13149-13158 +13159-13160 +13161-13174 +13175-13181 +13182-13218 +13219-13224 +13225-13240 +13241-13250 +13251-13256 +13257-13269 +13270-13285 +13286-13300 +13301-13328 +13329-13335 +13336-13344 +13345-13356 +13357-13371 +13372-13397 +13398-13404 +13405-13413 +13414-13425 +13426-13443 +13444-13447 +13448-13477 +13478-13487 +13488-13503 +13504-13524 +13525-13540 +13541-13545 +13546-13565 +13566-13576 +13577-13610 +13611-13626 +13627-13642 +13643-13652 +13653-13659 +13660-13669 +13670-13694 +13695-13719 +13720-13743 +13744-13759 +13760-13779 +13780-13792 +13793-13807 +13808-13821 +13822-13839 +13840-13869 +13870-13876 +13877-13886 +13887-13908 +13909-13923 +13924-13946 +13947-13962 +13963-14000 +14001-14010 +14011-14018 +14019-14028 +14029-14090 +14091-14100 +14101-14131 +14132-14137 +14138-14155 +14156-14174 +14175-14196 +14197-14227 +14228-14238 +14239-14253 +14254-14260 +14261-14263 +14264-14271 +14272-14287 +14288-14292 +14293-14311 +14312-14321 +14322-14328 +14329-14339 +14340-14346 +14347-14367 +14368-14420 +14421-14433 +14434-14444 +14445-14462 +14463-14474 +14475-14482 +14483-14495 +14496-14513 +14514-14516 +14517-14561 +14562-14593 +14594-14629 +14630-14652 +14653-14659 +14660-14675 +14676-14688 +14689-14703 +14704-14716 +14717-14738 +14739-14752 +14753-14796 +14797-14807 +14808-14817 +14818-14828 +14829-14851 +14852-14867 +14868-14890 +14891-14902 +14903-14913 +14914-14969 +14970-14978 +14979-14996 +14997-15005 +15006-15016 +15017-15028 +15029-15036 +15037-15047 +15048-15058 +15059-15075 +15076-15096 +15097-15116 +15117-15128 +15129-15138 +15139-15148 +15149-15181 +15182-15195 +15196-15202 +15203-15217 +15218-15232 +15233-15254 +15255-15279 +15280-15296 +15297-15321 +15322-15360 +15361-15400 +15401-15413 +15414-15430 +15431-15440 +15441-15449 +15450-15472 +15473-15506 +15507-15528 +15529-15558 +15559-15598 +15599-15619 +15620-15642 +15643-15673 +15674-15698 +15699-15716 +15717-15728 +15729-15759 +15760-15785 +15786-15798 +15799-15823 +15824-15834 +15835-15842 +15843-15859 +15860-15871 +15872-15886 +15887-15907 +15908-15928 +15929-15934 +15935-15942 +15943-15960 +15961-15990 +15991-16003 +16004-16011 +16012-16024 +16025-16036 +16037-16052 +16053-16074 +16075-16083 +16084-16094 +16095-16098 +16099-16120 +16121-16147 +16148-16177 +16178-16185 +16186-16220 +16221-16234 +16235-16252 +16253-16266 +16267-16272 +16273-16293 +16294-16306 +16307-16322 +16323-16351 +16352-16372 +16373-16380 +16381-16388 +16389-16409 +16410-16421 +16422-16434 +16435-16466 +16467-16492 +16493-16507 +16508-16518 +16519-16527 +16528-16538 +16539-16561 +16562-16582 +16583-16599 +16600-16608 +16609-16648 +16649-16655 +16656-16672 +16673-16694 +16695-16715 +16716-16733 +16734-16745 +16746-16749 +16750-16773 +16774-16801 +16802-16823 +16824-16830 +16831-16851 +16852-16859 +16860-16872 +16873-16882 +16883-16900 +16901-16910 +16911-16933 +16934-16943 +16944-16947 +16948-16962 +16963-16967 +16968-16986 +16987-16995 +16996-17017 +17018-17025 +17026-17036 +17037-17054 +17055-17068 +17069-17078 +17079-17113 +17114-17120 +17121-17132 +17133-17138 +17139-17150 +17151-17160 +17161-17173 +17174-17186 +17187-17193 +17194-17217 +17218-17244 +17245-17261 +17262-17274 +17275-17279 +17280-17290 +17291-17293 +17294-17300 +17301-17306 +17307-17334 +17335-17350 +17351-17362 +17363-17379 +17380-17426 +17427-17446 +17447-17453 +17454-17460 +17461-17478 +17479-17483 +17484-17497 +17498-17514 +17515-17527 +17528-17559 +17560-17575 +17576-17587 +17588-17596 +17597-17602 +17603-17614 +17615-17627 +17628-17652 +17653-17663 +17664-17680 +17681-17691 +17692-17701 +17702-17750 +17751-17774 +17775-17811 +17812-17827 +17828-17836 +17837-17841 +17842-17874 +17875-17888 +17889-17918 +17919-17950 +17951-17960 +17961-17972 +17973-17991 +17992-17996 +17997-18011 +18012-18025 +18026-18037 +18038-18054 +18055-18061 +18062-18067 +18068-18089 +18090-18092 +18093-18108 +18109-18115 +18116-18125 +18126-18145 +18146-18162 +18163-18187 +18188-18200 +18201-18207 +18208-18218 +18219-18241 +18242-18258 +18259-18285 +18286-18299 +18300-18306 +18307-18353 +18354-18377 +18378-18397 +18398-18417 +18418-18427 +18428-18446 +18447-18464 +18465-18480 +18481-18489 +18490-18510 +18511-18545 +18546-18563 +18564-18566 +18567-18580 +18581-18587 +18588-18612 +18613-18627 +18628-18631 +18632-18640 +18641-18658 +18659-18689 +18690-18699 +18700-18713 +18714-18736 +18737-18749 +18750-18766 +18767-18778 +18779-18785 +18786-18793 +18794-18810 +18811-18819 +18820-18839 +18840-18852 +18853-18870 +18871-18887 +18888-18902 +18903-18919 +18920-18931 +18932-18940 +18941-18971 +18972-18995 +18996-19000 +19001-19012 +19013-19028 +19029-19037 +19038-19059 +19060-19074 +19075-19101 +19102-19158 +19159-19174 +19175-19196 +19197-19202 +19203-19212 +19213-19228 +19229-19232 +19233-19258 +19259-19282 +19283-19298 +19299-19304 +19305-19313 +19314-19335 +19336-19354 +19355-19364 +19365-19380 +19381-19388 +19389-19404 +19405-19433 +19434-19453 +19454-19466 +19467-19484 +19485-19515 +19516-19531 +19532-19541 +19542-19546 +19547-19554 +19555-19565 +19566-19578 +19579-19592 +19593-19595 +19596-19613 +19614-19620 +19621-19635 +19636-19646 +19647-19653 +19654-19681 +19682-19697 +19698-19709 +19710-19729 +19730-19738 +19739-19752 +19753-19770 +19771-19800 +19801-19828 +19829-19832 +19833-19844 +19845-19856 +19857-19877 +19878-19889 +19890-19901 +19902-19913 +19914-19928 +19929-19954 +19955-19972 +19973-19997 +19998-20014 +20015-20037 +20038-20049 +20050-20065 +20066-20080 +20081-20087 +20088-20113 +20114-20127 +20128-20132 +20133-20224 +20225-20231 +20232-20246 +20247-20284 +20285-20298 +20299-20303 +20304-20329 +20330-20357 +20358-20367 +20368-20375 +20376-20404 +20405-20430 +20431-20447 +20448-20453 +20454-20470 +20471-20476 +20477-20482 +20483-20491 +20492-20506 +20507-20539 +20540-20553 +20554-20566 +20567-20623 +20624-20634 +20635-20648 +20649-20661 +20662-20678 +20679-20695 +20696-20705 +20706-20717 +20718-20728 +20729-20736 +20737-20747 +20748-20768 +20769-20780 +20781-20803 +20804-20834 +20835-20853 +20854-20896 +20897-20902 +20903-20911 +20912-20922 +20923-20932 +20933-20945 +20946-20948 +20949-20975 +20976-20989 +20990-20996 +20997-21015 +21016-21028 +21029-21037 +21038-21051 +21052-21077 +21078-21093 +21094-21114 +21115-21150 +21151-21154 +21155-21162 +21163-21205 +21206-21215 +21216-21232 +21233-21254 +21255-21270 +21271-21276 +21277-21296 +21297-21306 +21307-21316 +21317-21334 +21335-21348 +21349-21366 +21367-21395 +21396-21398 +21399-21420 +21421-21438 +21439-21449 +21450-21454 +21455-21467 +21468-21482 +21483-21490 +21491-21515 +21516-21533 +21534-21542 +21543-21546 +21547-21572 +21573-21587 +21588-21593 +21594-21599 +21600-21617 +21618-21646 +21647-21683 +21684-21699 +21700-21727 +21728-21733 +21734-21742 +21743-21753 +21754-21777 +21778-21793 +21794-21805 +21806-21829 +21830-21866 +21867-21880 +21881-21894 +21895-21902 +21903-21910 +21911-21932 +21933-21947 +21948-21958 +21959-21985 +21986-22001 +22002-22017 +22018-22043 +22044-22053 +22054-22071 +22072-22092 +22093-22112 +22113-22126 +22127-22135 +22136-22147 +22148-22156 +22157-22163 +22164-22174 +22175-22183 +22184-22214 +22215-22219 +22220-22229 +22230-22237 +22238-22259 +22260-22267 +22268-22283 +22284-22308 +22309-22312 +22313-22332 +22333-22346 +22347-22357 +22358-22376 +22377-22386 +22387-22413 +22414-22442 +22443-22448 +22449-22476 +22477-22517 +22518-22543 +22544-22580 +22581-22590 +22591-22604 +22605-22623 +22624-22663 +22664-22668 +22669-22703 +22704-22718 +22719-22760 +22761-22772 +22773-22784 +22785-22807 +22808-22815 +22816-22826 +22827-22845 +22846-22853 +22854-22864 +22865-22885 +22886-22905 +22906-22920 +22921-22937 +22938-22957 +22958-22971 +22972-23006 +23007-23022 +23023-23028 +23029-23036 +23037-23051 +23052-23084 +23085-23096 +23097-23102 +23103-23118 +23119-23124 +23125-23128 +23129-23136 +23137-23154 +23155-23158 +23159-23165 +23166-23175 +23176-23179 +23180-23182 +23183-23197 +23198-23214 +23215-23226 +23227-23235 +23236-23244 +23245-23260 +23261-23275 +23276-23283 +23284-23293 +23294-23297 +23298-23302 +23303-23311 +23312-23327 +23328-23330 +23331-23341 +23342-23344 +23345-23349 +23350-23353 +23354-23363 +23364-23389 +23390-23400 +23401-23417 +23418-23429 +23430-23443 +23444-23459 +23460-23477 +23478-23487 +23488-23496 +23497-23504 +23505-23534 +23535-23539 +23540-23547 +23548-23573 +23574-23599 +23600-23609 +23610-23623 +23624-23636 +23637-23644 +23645-23681 +23682-23708 +23709-23731 +23732-23752 +23753-23763 +23764-23788 +23789-23796 +23797-23816 +23817-23828 +23829-23851 +23852-23864 +23865-23877 +23878-23900 +23901-23916 +23917-23931 +23932-23943 +23944-23950 +23951-23967 +23968-23982 +23983-23993 +23994-24014 +24015-24019 +24020-24034 +24035-24046 +24047-24073 +24074-24085 +24086-24097 +24098-24127 +24128-24133 +24134-24143 +24144-24154 +24155-24172 +24173-24186 +24187-24198 +24199-24224 +24225-24233 +24234-24237 +24238-24249 +24250-24261 +24262-24280 +24281-24318 +24319-24342 +24343-24364 +24365-24373 +24374-24395 +24396-24422 +24423-24431 +24432-24453 +24454-24462 +24463-24479 +24480-24488 +24489-24517 +24518-24521 +24522-24524 +24525-24534 +24535-24542 +24543-24567 +24568-24579 +24580-24588 +24589-24598 +24599-24612 +24613-24621 +24622-24638 +24639-24645 +24646-24653 +24654-24664 +24665-24689 +24690-24696 +24697-24701 +24702-24726 +24727-24744 +24745-24753 +24754-24773 +24774-24809 +24810-24820 +24821-24850 +24851-24863 +24864-24883 +24884-24891 +24892-24925 +24926-24936 +24937-24954 +24955-24966 +24967-25025 +25026-25034 +25035-25054 +25055-25107 +25108-25127 +25128-25136 +25137-25156 +25157-25165 +25166-25179 +25180-25184 +25185-25218 +25219-25228 +25229-25250 +25251-25297 +25298-25301 +25302-25323 +25324-25339 +25340-25345 +25346-25354 +25355-25361 +25362-25371 +25372-25382 +25383-25392 +25393-25400 +25401-25411 +25412-25420 +25421-25467 +25468-25487 +25488-25502 +25503-25514 +25515-25522 +25523-25525 +25526-25542 +25543-25558 +25559-25584 +25585-25591 +25592-25605 +25606-25613 +25614-25642 +25643-25655 +25656-25660 +25661-25664 +25665-25702 +25703-25725 +25726-25749 +25750-25757 +25758-25766 +25767-25779 +25780-25819 +25820-25834 +25835-25858 +25859-25863 +25864-25898 +25899-25918 +25919-25930 +25931-25962 +25963-25969 +25970-25983 +25984-26007 +26008-26025 +26026-26032 +26033-26039 +26040-26043 +26044-26057 +26058-26062 +26063-26073 +26074-26093 +26094-26103 +26104-26109 +26110-26119 +26120-26144 +26145-26160 +26161-26164 +26165-26178 +26179-26217 +26218-26233 +26234-26236 +26237-26246 +26247-26251 +26252-26266 +26267-26270 +26271-26313 +26314-26316 +26317-26326 +26327-26336 +26337-26340 +26341-26346 +26347-26352 +26353-26367 +26368-26384 +26385-26400 +26401-26431 +26432-26437 +26438-26439 +26440-26459 +26460-26503 +26504-26511 +26512-26517 +26518-26568 +26569-26586 +26587-26592 +26593-26611 +26612-26638 +26639-26648 +26649-26655 +26656-26699 +26700-26713 +26714-26718 +26719-26729 +26730-26753 +26754-26774 +26775-26793 +26794-26803 +26804-26813 +26814-26849 +26850-26860 +26861-26873 +26874-26882 +26883-26888 +26889-26903 +26904-26906 +26907-26910 +26911-26929 +26930-26939 +26940-26970 +26971-26987 +26988-26996 +26997-27003 +27004-27054 +27055-27067 +27068-27073 +27074-27097 +27098-27109 +27110-27118 +27119-27132 +27133-27149 +27150-27152 +27153-27155 +27156-27191 +27192-27206 +27207-27226 +27227-27233 +27234-27250 +27251-27263 +27264-27278 +27279-27290 +27291-27312 +27313-27321 +27322-27345 +27346-27370 +27371-27377 +27378-27387 +27388-27400 +27401-27412 +27413-27433 +27434-27440 +27441-27454 +27455-27467 +27468-27470 +27471-27476 +27477-27480 +27481-27485 +27486-27504 +27505-27507 +27508-27515 +27516-27536 +27537-27551 +27552-27560 +27561-27566 +27567-27589 +27590-27609 +27610-27635 +27636-27643 +27644-27647 +27648-27665 +27666-27672 +27673-27693 +27694-27703 +27704-27740 +27741-27748 +27749-27766 +27767-27777 +27778-27791 +27792-27817 +27818-27825 +27826-27852 +27853-27864 +27865-27886 +27887-27899 +27900-27904 +27905-27921 +27922-27952 +27953-27978 +27979-27984 +27985-27992 +27993-28004 +28005-28009 +28010-28017 +28018-28025 +28026-28033 +28034-28051 +28052-28064 +28065-28078 +28079-28080 +28081-28085 +28086-28113 +28114-28131 +28132-28141 +28142-28150 +28151-28168 +28169-28184 +28185-28197 +28198-28202 +28203-28207 +28208-28226 +28227-28244 +28245-28269 +28270-28288 +28289-28299 +28300-28326 +28327-28334 +28335-28351 +28352-28358 +28359-28374 +28375-28398 +28399-28417 +28418-28425 +28426-28448 +28449-28478 +28479-28489 +28490-28495 +28496-28510 +28511-28514 +28515-28531 +28532-28545 +28546-28551 +28552-28570 +28571-28573 +28574-28596 +28597-28607 +28608-28614 +28615-28620 +28621-28634 +28635-28644 +28645-28653 +28654-28668 +28669-28677 +28678-28690 +28691-28699 +28700-28711 +28712-28727 +28728-28733 +28734-28742 +28743-28748 +28749-28768 +28769-28784 +28785-28794 +28795-28802 +28803-28817 +28818-28837 +28838-28856 +28857-28868 +28869-28877 +28878-28892 +28893-28899 +28900-28911 +28912-28925 +28926-28952 +28953-28969 +28970-28983 +28984-28990 +28991-29003 +29004-29029 +29030-29038 +29039-29057 +29058-29064 +29065-29076 +29077-29096 +29097-29139 +29140-29176 +29177-29192 +29193-29202 +29203-29228 +29229-29240 +29241-29260 +29261-29274 +29275-29288 +29289-29299 +29300-29315 +29316-29321 +29322-29327 +29328-29331 +29332-29337 +29338-29358 +29359-29370 +29371-29376 +29377-29391 +29392-29401 +29402-29410 +29411-29424 +29425-29432 +29433-29453 +29454-29467 +29468-29476 +29477-29482 +29483-29508 +29509-29543 +29544-29553 +29554-29576 +29577-29618 +29619-29645 +29646-29662 +29663-29680 +29681-29709 +29710-29722 +29723-29734 +29735-29743 +29744-29771 +29772-29777 +29778-29784 +29785-29816 +29817-29840 +29841-29850 +29851-29863 +29864-29886 +29887-29912 +29913-29928 +29929-29942 +29943-29950 +29951-29964 +29965-29974 +29975-29994 +29995-30030 +30031-30041 +30042-30054 +30055-30068 +30069-30082 +30083-30117 +30118-30130 +30131-30146 +30147-30154 +30155-30184 +30185-30197 +30198-30203 +30204-30229 +30230-30269 +30270-30282 +30283-30304 +30305-30316 +30317-30344 +30345-30354 +30355-30376 +30377-30386 +30387-30400 +30401-30421 +30422-30435 +30436-30447 +30448-30466 +30467-30487 +30488-30497 +30498-30513 +30514-30524 +30525-30533 +30534-30536 +30537-30551 +30552-30594 +30595-30689 +30690-30742 +30743-30761 +30762-30776 +30777-30784 +30785-30793 +30794-30829 +30830-30849 +30850-30865 +30866-30883 +30884-30897 +30898-30927 +30928-30938 +30939-30963 +30964-30995 +30996-31013 +31014-31026 +31027-31039 +31040-31052 +31053-31071 +31072-31097 +31098-31147 +31148-31173 +31174-31192 +31193-31200 +31201-31268 +31269-31282 +31283-31323 +31324-31365 +31366-31382 +31383-31399 +31400-31413 +31414-31426 +31427-31458 +31459-31485 +31486-31506 +31507-31519 +31520-31543 +31544-31562 +31563-31571 +31572-31583 +31584-31595 +31596-31609 +31610-31659 +31660-31695 +31696-31716 +31717-31724 +31725-31742 +31743-31748 +31749-31773 +31774-31784 +31785-31796 +31797-31805 +31806-31823 +31824-31835 +31836-31847 +31848-31857 +31858-31869 +31870-31947 +31948-31956 +31957-31989 +31990-32032 +32033-32197 +32198-32220 +32221-32232 +32233-32249 +32250-32264 +32265-32277 +32278-32301 +32302-32310 +32311-32326 +32327-32350 +32351-32376 +32377-32390 +32391-32401 +32402-32413 +32414-32422 +32423-32432 +32433-32456 +32457-32499 +32500-32507 +32508-32517 +32518-32532 +32533-32556 +32557-32582 +32583-32596 +32597-32644 +32645-32664 +32665-32696 +32697-32703 +32704-32710 +32711-32717 +32718-32730 +32731-32762 +32763-32773 +32774-32787 +32788-32812 +32813-32822 +32823-32832 +32833-32845 +32846-32855 +32856-32860 +32861-32874 +32875-32884 +32885-32900 +32901-32912 +32913-32920 +32921-32937 +32938-32958 +32959-32966 +32967-32996 +32997-33005 +33006-33029 +33030-33048 +33049-33067 +33068-33079 +33080-33091 +33092-33101 +33102-33118 +33119-33147 +33148-33162 +33163-33173 +33174-33204 +33205-33213 +33214-33220 +33221-33244 +33245-33262 +33263-33271 +33272-33299 +33300-33307 +33308-33325 +33326-33352 +33353-33364 +33365-33388 +33389-33434 +33435-33450 +33451-33467 +33468-33483 +33484-33501 +33502-33507 +33508-33517 +33518-33529 +33530-33552 +33553-33569 +33570-33577 +33578-33601 +33602-33622 +33623-33638 +33639-33655 +33656-33673 +33674-33681 +33682-33698 +33699-33705 +33706-33717 +33718-33737 +33738-33749 +33750-33798 +33799-33809 +33810-33833 +33834-33850 +33851-33871 +33872-33874 +33875-33893 +33894-33903 +33904-33911 +33912-33924 +33925-33944 +33945-34000 +34001-34040 +34041-34047 +34048-34062 +34063-34083 +34084-34089 +34090-34095 +34096-34120 +34121-34136 +34137-34146 +34147-34156 +34157-34163 +34164-34171 +34172-34189 +34190-34212 +34213-34234 +34235-34246 +34247-34257 +34258-34275 +34276-34292 +34293-34311 +34312-34322 +34323-34341 +34342-34349 +34350-34356 +34357-34363 +34364-34366 +34367-34370 +34371-34380 +34381-34386 +34387-34391 +34392-34396 +34397-34401 +34402-34415 +34416-34437 +34438-34462 +34463-34484 +34485-34499 +34500-34507 +34508-34518 +34519-34547 +34548-34558 +34559-34576 +34577-34591 +34592-34610 +34611-34641 +34642-34655 +34656-34667 +34668-34686 +34687-34713 +34714-34719 +34720-34747 +34748-34754 +34755-34762 +34763-34793 +34794-34816 +34817-34827 +34828-34846 +34847-34874 +34875-34887 +34888-34902 +34903-34915 +34916-34938 +34939-34953 +34954-34962 +34963-34983 +34984-35005 +35006-35023 +35024-35034 +35035-35047 +35048-35056 +35057-35078 +35079-35087 +35088-35099 +35100-35104 +35105-35130 +35131-35139 +35140-35150 +35151-35165 +35166-35182 +35183-35194 +35195-35215 +35216-35230 +35231-35249 +35250-35258 +35259-35268 +35269-35276 +35277-35328 +35329-35356 +35357-35368 +35369-35372 +35373-35399 +35400-35408 +35409-35414 +35415-35426 +35427-35450 +35451-35465 +35466-35478 +35479-35491 +35492-35497 +35498-35504 +35505-35518 +35519-35531 +35532-35593 +35594-35615 +35616-35635 +35636-35649 +35650-35662 +35663-35675 +35676-35683 +35684-35694 +35695-35719 +35720-35724 +35725-35731 +35732-35755 +35756-35782 +35783-35806 +35807-35828 +35829-35849 +35850-35867 +35868-35871 +35872-35889 +35890-35907 +35908-35922 +35923-35943 +35944-35968 +35969-35970 +35971-35974 +35975-35985 +35986-35993 +35994-36004 +36005-36009 +36010-36016 +36017-36037 +36038-36049 +36050-36063 +36064-36078 +36079-36104 +36105-36114 +36115-36136 +36137-36145 +36146-36155 +36156-36166 +36167-36176 +36177-36185 +36186-36188 +36189-36211 +36212-36227 +36228-36257 +36258-36266 +36267-36283 +36284-36289 +36290-36302 +36303-36318 +36319-36330 +36331-36345 +36346-36382 +36383-36391 +36392-36422 +36423-36430 +36431-36443 +36444-36457 +36458-36483 +36484-36496 +36497-36514 +36515-36526 +36527-36552 +36553-36558 +36559-36567 +36568-36573 +36574-36584 +36585-36597 +36598-36602 +36603-36610 +36611-36636 +36637-36691 +36692-36701 +36702-36735 +36736-36749 +36750-36753 +36754-36761 +36762-36771 +36772-36777 +36778-36793 +36794-36798 +36799-36825 +36826-36833 +36834-36857 +36858-36862 +36863-36874 +36875-36880 +36881-36904 +36905-36917 +36918-36940 +36941-36958 +36959-36967 +36968-36975 +36976-37008 +37009-37030 +37031-37040 +37041-37052 +37053-37065 +37066-37093 +37094-37114 +37115-37135 +37136-37153 +37154-37177 +37178-37187 +37188-37200 +37201-37236 +37237-37245 +37246-37254 +37255-37270 +37271-37279 +37280-37292 +37293-37306 +37307-37346 +37347-37357 +37358-37380 +37381-37390 +37391-37408 +37409-37416 +37417-37447 +37448-37470 +37471-37481 +37482-37530 +37531-37552 +37553-37568 +37569-37593 +37594-37602 +37603-37614 +37615-37633 +37634-37637 +37638-37642 +37643-37657 +37658-37683 +37684-37689 +37690-37700 +37701-37718 +37719-37735 +37736-37758 +37759-37783 +37784-37795 +37796-37808 +37809-37817 +37818-37830 +37831-37842 +37843-37854 +37855-37860 +37861-37879 +37880-37885 +37886-37914 +37915-37954 +37955-37968 +37969-37995 +37996-38006 +38007-38013 +38014-38017 +38018-38028 +38029-38036 +38037-38053 +38054-38065 +38066-38089 +38090-38109 +38110-38183 +38184-38221 +38222-38235 +38236-38247 +38248-38285 +38286-38294 +38295-38308 +38309-38332 +38333-38346 +38347-38357 +38358-38391 +38392-38417 +38418-38430 +38431-38439 +38440-38449 +38450-38459 +38460-38469 +38470-38487 +38488-38494 +38495-38515 +38516-38544 +38545-38574 +38575-38589 +38590-38599 +38600-38612 +38613-38618 +38619-38654 +38655-38681 +38682-38704 +38705-38731 +38732-38754 +38755-38779 +38780-38787 +38788-38795 +38796-38799 +38800-38813 +38814-38822 +38823-38841 +38842-38862 +38863-38876 +38877-38882 +38883-38899 +38900-38913 +38914-38932 +38933-38947 +38948-38972 +38973-38978 +38979-39001 +39002-39027 +39028-39040 +39041-39081 +39082-39112 +39113-39136 +39137-39156 +39157-39164 +39165-39177 +39178-39186 +39187-39196 +39197-39219 +39220-39230 +39231-39233 +39234-39245 +39246-39271 +39272-39281 +39282-39292 +39293-39316 +39317-39323 +39324-39340 +39341-39357 +39358-39370 +39371-39394 +39395-39408 +39409-39426 +39427-39476 +39477-39484 +39485-39501 +39502-39525 +39526-39552 +39553-39588 +39589-39609 +39610-39614 +39615-39625 +39626-39630 +39631-39636 +39637-39646 +39647-39655 +39656-39657 +39658-39660 +39661-39685 +39686-39698 +39699-39710 +39711-39719 +39720-39741 +39742-39754 +39755-39771 +39772-39784 +39785-39808 +39809-39820 +39821-39835 +39836-39873 +39874-39893 +39894-39902 +39903-39923 +39924-39935 +39936-39954 +39955-39960 +39961-39972 +39973-39982 +39983-39990 +39991-40004 +40005-40025 +40026-40037 +40038-40045 +40046-40053 +40054-40062 +40063-40076 +40077-40083 +40084-40100 +40101-40112 +40113-40141 +40142-40151 +40152-40163 +40164-40179 +40180-40199 +40200-40213 +40214-40228 +40229-40254 +40255-40266 +40267-40277 +40278-40334 +40335-40356 +40357-40366 +40367-40382 +40383-40394 +40395-40404 +40405-40412 +40413-40418 +40419-40461 +40462-40480 +40481-40490 +40491-40507 +40508-40516 +40517-40554 +40555-40566 +40567-40587 +40588-40605 +40606-40615 +40616-40643 +40644-40653 +40654-40658 +40659-40675 +40676-40695 +40696-40697 +40698-40703 +40704-40723 +40724-40735 +40736-40745 +40746-40764 +40765-40778 +40779-40790 +40791-40823 +40824-40849 +40850-40874 +40875-40896 +40897-40909 +40910-40936 +40937-40945 +40946-40960 +40961-40972 +40973-40981 +40982-41001 +41002-41032 +41033-41046 +41047-41060 +41061-41089 +41090-41107 +41108-41120 +41121-41138 +41139-41159 +41160-41176 +41177-41206 +41207-41212 +41213-41229 +41230-41250 +41251-41258 +41259-41275 +41276-41278 +41279-41284 +41285-41305 +41306-41311 +41312-41365 +41366-41394 +41395-41405 +41406-41442 +41443-41451 +41452-41467 +41468-41484 +41485-41513 +41514-41519 +41520-41536 +41537-41552 +41553-41563 +41564-41572 +41573-41600 +41601-41612 +41613-41633 +41634-41647 +41648-41694 +41695-41709 +41710-41753 +41754-41780 +41781-41793 +41794-41810 +41811-41814 +41815-41823 +41824-41831 +41832-41834 +41835-41839 +41840-41851 +41852-41867 +41868-41903 +41904-41933 +41934-41956 +41957-41979 +41980-41995 +41996-42009 +42010-42016 +42017-42031 +42032-42037 +42038-42059 +42060-42074 +42075-42092 +42093-42109 +42110-42126 +42127-42156 +42157-42163 +42164-42185 +42186-42204 +42205-42255 +42256-42258 +42259-42267 +42268-42287 +42288-42309 +42310-42315 +42316-42322 +42323-42349 +42350-42368 +42369-42384 +42385-42402 +42403-42424 +42425-42445 +42446-42462 +42463-42467 +42468-42482 +42483-42499 +42500-42505 +42506-42518 +42519-42525 +42526-42531 +42532-42540 +42541-42569 +42570-42590 +42591-42609 +42610-42623 +42624-42636 +42637-42658 +42659-42664 +42665-42675 +42676-42702 +42703-42709 +42710-42721 +42722-42736 +42737-42753 +42754-42767 +42768-42789 +42790-42798 +42799-42813 +42814-42820 +42821-42841 +42842-42871 +42872-42890 +42891-42897 +42898-42922 +42923-42955 +42956-42965 +42966-42980 +42981-42997 +42998-43015 +43016-43037 +43038-43039 +43040-43051 +43052-43068 +43069-43077 +43078-43102 +43103-43143 +43144-43152 +43153-43170 +43171-43185 +43186-43207 +43208-43216 +43217-43223 +43224-43247 +43248-43251 +43252-43276 +43277-43286 +43287-43324 +43325-43344 +43345-43355 +43356-43380 +43381-43392 +43393-43409 +43410-43428 +43429-43435 +43436-43441 +43442-43457 +43458-43468 +43469-43498 +43499-43502 +43503-43517 +43518-43534 +43535-43547 +43548-43553 +43554-43565 +43566-43593 +43594-43611 +43612-43649 +43650-43660 +43661-43681 +43682-43690 +43691-43703 +43704-43722 +43723-43736 +43737-43764 +43765-43772 +43773-43798 +43799-43820 +43821-43829 +43830-43835 +43836-43859 +43860-43877 +43878-43890 +43891-43924 +43925-43932 +43933-43959 +43960-43969 +43970-44003 +44004-44011 +44012-44023 +44024-44034 +44035-44077 +44078-44120 +44121-44138 +44139-44153 +44154-44161 +44162-44169 +44170-44177 +44178-44184 +44185-44193 +44194-44202 +44203-44211 +44212-44217 +44218-44228 +44229-44237 +44238-44246 +44247-44251 +44252-44264 +44265-44282 +44283-44297 +44298-44321 +44322-44328 +44329-44339 +44340-44363 +44364-44382 +44383-44393 +44394-44417 +44418-44431 +44432-44448 +44449-44466 +44467-44491 +44492-44503 +44504-44520 +44521-44532 +44533-44542 +44543-44573 +44574-44615 +44616-44631 +44632-44638 +44639-44654 +44655-44673 +44674-44681 +44682-44721 +44722-44737 +44738-44745 +44746-44760 +44761-44769 +44770-44786 +44787-44796 +44797-44840 +44841-44855 +44856-44866 +44867-44939 +44940-44964 +44965-44973 +44974-44987 +44988-45000 +45001-45045 +45046-45066 +45067-45099 +45100-45104 +45105-45118 +45119-45127 +45128-45138 +45139-45153 +45154-45160 +45161-45165 +45166-45173 +45174-45177 +45178-45183 +45184-45200 +45201-45220 +45221-45227 +45228-45235 +45236-45246 +45247-45251 +45252-45287 +45288-45316 +45317-45338 +45339-45368 +45369-45384 +45385-45388 +45389-45404 +45405-45420 +45421-45460 +45461-45464 +45465-45471 +45472-45489 +45490-45494 +45495-45510 +45511-45540 +45541-45556 +45557-45579 +45580-45590 +45591-45599 +45600-45605 +45606-45616 +45617-45642 +45643-45652 +45653-45699 +45700-45711 +45712-45734 +45735-45757 +45758-45785 +45786-45802 +45803-45808 +45809-45822 +45823-45826 +45827-45834 +45835-45844 +45845-45873 +45874-45900 +45901-45904 +45905-45930 +45931-45954 +45955-45963 +45964-45971 +45972-45985 +45986-46019 +46020-46031 +46032-46064 +46065-46101 +46102-46116 +46117-46131 +46132-46135 +46136-46142 +46143-46155 +46156-46170 +46171-46184 +46185-46197 +46198-46223 +46224-46234 +46235-46255 +46256-46274 +46275-46286 +46287-46295 +46296-46310 +46311-46324 +46325-46336 +46337-46343 +46344-46354 +46355-46365 +46366-46378 +46379-46385 +46386-46401 +46402-46409 +46410-46431 +46432-46437 +46438-46439 +46440-46449 +46450-46460 +46461-46476 +46477-46493 +46494-46504 +46505-46525 +46526-46549 +46550-46601 +46602-46617 +46618-46629 +46630-46645 +46646-46664 +46665-46675 +46676-46684 +46685-46695 +46696-46727 +46728-46739 +46740-46750 +46751-46758 +46759-46774 +46775-46790 +46791-46805 +46806-46809 +46810-46832 +46833-46848 +46849-46855 +46856-46863 +46864-46869 +46870-46880 +46881-46886 +46887-46898 +46899-46930 +46931-46938 +46939-46944 +46945-46983 +46984-47003 +47004-47014 +47015-47027 +47028-47044 +47045-47052 +47053-47058 +47059-47081 +47082-47096 +47097-47107 +47108-47118 +47119-47123 +47124-47137 +47138-47155 +47156-47163 +47164-47175 +47176-47182 +47183-47202 +47203-47211 +47212-47218 +47219-47244 +47245-47249 +47250-47269 +47270-47276 +47277-47304 +47305-47313 +47314-47319 +47320-47335 +47336-47345 +47346-47355 +47356-47370 +47371-47381 +47382-47403 +47404-47415 +47416-47422 +47423-47439 +47440-47459 +47460-47468 +47469-47489 +47490-47518 +47519-47524 +47525-47529 +47530-47539 +47540-47557 +47558-47579 +47580-47627 +47628-47635 +47636-47639 +47640-47665 +47666-47675 +47676-47682 +47683-47703 +47704-47716 +47717-47723 +47724-47742 +47743-47761 +47762-47775 +47776-47787 +47788-47817 +47818-47830 +47831-47842 +47843-47851 +47852-47874 +47875-47886 +47887-47893 +47894-47898 +47899-47917 +47918-47938 +47939-47949 +47950-47965 +47966-47997 +47998-48008 +48009-48021 +48022-48047 +48048-48062 +48063-48066 +48067-48082 +48083-48098 +48099-48116 +48117-48174 +48175-48181 +48182-48207 +48208-48215 +48216-48230 +48231-48247 +48248-48264 +48265-48285 +48286-48290 +48291-48318 +48319-48337 +48338-48353 +48354-48358 +48359-48370 +48371-48384 +48385-48391 +48392-48422 +48423-48445 +48446-48458 +48459-48461 +48462-48484 +48485-48488 +48489-48529 +48530-48540 +48541-48554 +48555-48562 +48563-48583 +48584-48604 +48605-48635 +48636-48653 +48654-48665 +48666-48681 +48682-48687 +48688-48703 +48704-48711 +48712-48717 +48718-48740 +48741-48766 +48767-48782 +48783-48796 +48797-48804 +48805-48819 +48820-48831 +48832-48846 +48847-48856 +48857-48871 +48872-48878 +48879-48883 +48884-48916 +48917-48925 +48926-48955 +48956-48961 +48962-48972 +48973-48984 +48985-48997 +48998-49012 +49013-49032 +49033-49049 +49050-49056 +49057-49068 +49069-49080 +49081-49093 +49094-49101 +49102-49115 +49116-49126 +49127-49139 +49140-49155 +49156-49165 +49166-49197 +49198-49220 +49221-49242 +49243-49269 +49270-49273 +49274-49284 +49285-49308 +49309-49321 +49322-49329 +49330-49333 +49334-49337 +49338-49340 +49341-49355 +49356-49371 +49372-49377 +49378-49397 +49398-49429 +49430-49441 +49442-49496 +49497-49513 +49514-49545 +49546-49556 +49557-49579 +49580-49590 +49591-49602 +49603-49613 +49614-49618 +49619-49631 +49632-49635 +49636-49652 +49653-49670 +49671-49675 +49676-49686 +49687-49692 +49693-49709 +49710-49721 +49722-49745 +49746-49755 +49756-49762 +49763-49781 +49782-49787 +49788-49803 +49804-49818 +49819-49833 +49834-49836 +49837-49860 +49861-49878 +49879-49890 +49891-49903 +49904-49918 +49919-49930 +49931-49948 +49949-49956 +49957-49961 +49962-49970 +49971-49973 +49974-50022 +50023-50045 +50046-50068 +50069-50081 +50082-50141 +50142-50155 +50156-50169 +50170-50184 +50185-50203 +50204-50212 +50213-50235 +50236-50259 +50260-50290 +50291-50302 +50303-50334 +50335-50355 +50356-50378 +50379-50400 +50401-50415 +50416-50424 +50425-50442 +50443-50450 +50451-50459 +50460-50474 +50475-50492 +50493-50507 +50508-50524 +50525-50549 +50550-50574 +50575-50595 +50596-50601 +50602-50617 +50618-50645 +50646-50665 +50666-50684 +50685-50704 +50705-50723 +50724-50731 +50732-50742 +50743-50769 +50770-50786 +50787-50803 +50804-50809 +50810-50826 +50827-50833 +50834-50839 +50840-50845 +50846-50859 +50860-50867 +50868-50879 +50880-50890 +50891-50907 +50908-50919 +50920-50927 +50928-50943 +50944-50979 +50980-50986 +50987-51004 +51005-51010 +51011-51022 +51023-51026 +51027-51033 +51034-51040 +51041-51051 +51052-51074 +51075-51104 +51105-51122 +51123-51148 +51149-51194 +51195-51212 +51213-51222 +51223-51230 +51231-51255 +51256-51285 +51286-51307 +51308-51312 +51313-51323 +51324-51349 +51350-51361 +51362-51378 +51379-51387 +51388-51400 +51401-51410 +51411-51440 +51441-51448 +51449-51458 +51459-51470 +51471-51481 +51482-51500 +51501-51511 +51512-51527 +51528-51546 +51547-51562 +51563-51570 +51571-51579 +51580-51602 +51603-51614 +51615-51619 +51620-51651 +51652-51661 +51662-51674 +51675-51700 +51701-51713 +51714-51723 +51724-51749 +51750-51764 +51765-51776 +51777-51785 +51786-51797 +51798-51811 +51812-51821 +51822-51832 +51833-51858 +51859-51873 +51874-51884 +51885-51900 +51901-51941 +51942-51955 +51956-51972 +51973-51999 +52000-52010 +52011-52023 +52024-52030 +52031-52045 +52046-52062 +52063-52074 +52075-52090 +52091-52113 +52114-52127 +52128-52140 +52141-52152 +52153-52179 +52180-52205 +52206-52216 +52217-52238 +52239-52254 +52255-52276 +52277-52288 +52289-52319 +52320-52343 +52344-52360 +52361-52370 +52371-52403 +52404-52433 +52434-52444 +52445-52461 +52462-52469 +52470-52483 +52484-52501 +52502-52533 +52534-52542 +52543-52568 +52569-52579 +52580-52586 +52587-52595 +52596-52612 +52613-52624 +52625-52634 +52635-52652 +52653-52661 +52662-52670 +52671-52682 +52683-52694 +52695-52706 +52707-52720 +52721-52733 +52734-52742 +52743-52765 +52766-52776 +52777-52791 +52792-52820 +52821-52827 +52828-52834 +52835-52842 +52843-52860 +52861-52875 +52876-52892 +52893-52911 +52912-52930 +52931-52951 +52952-52969 +52970-52991 +52992-52999 +53000-53017 +53018-53054 +53055-53069 +53070-53095 +53096-53107 +53108-53131 +53132-53159 +53160-53171 +53172-53188 +53189-53203 +53204-53222 +53223-53253 +53254-53269 +53270-53280 +53281-53290 +53291-53306 +53307-53316 +53317-53352 +53353-53376 +53377-53405 +53406-53447 +53448-53456 +53457-53477 +53478-53487 +53488-53498 +53499-53515 +53516-53524 +53525-53530 +53531-53541 +53542-53558 +53559-53569 +53570-53580 +53581-53596 +53597-53611 +53612-53639 +53640-53658 +53659-53672 +53673-53688 +53689-53707 +53708-53722 +53723-53731 +53732-53738 +53739-53755 +53756-53773 +53774-53785 +53786-53795 +53796-53806 +53807-53831 +53832-53851 +53852-53866 +53867-53877 +53878-53901 +53902-53917 +53918-53932 +53933-53954 +53955-53963 +53964-53988 +53989-54000 +54001-54007 +54008-54015 +54016-54034 +54035-54054 +54055-54059 +54060-54072 +54073-54080 +54081-54099 +54100-54112 +54113-54121 +54122-54135 +54136-54146 +54147-54158 +54159-54169 +54170-54185 +54186-54206 +54207-54215 +54216-54232 +54233-54238 +54239-54245 +54246-54249 +54250-54258 +54259-54269 +54270-54291 +54292-54312 +54313-54321 +54322-54333 +54334-54341 +54342-54352 +54353-54366 +54367-54382 +54383-54397 +54398-54407 +54408-54424 +54425-54445 +54446-54465 +54466-54481 +54482-54494 +54495-54509 +54510-54521 +54522-54541 +54542-54564 +54565-54580 +54581-54601 +54602-54615 +54616-54621 +54622-54632 +54633-54652 +54653-54660 +54661-54674 +54675-54692 +54693-54704 +54705-54713 +54714-54725 +54726-54736 +54737-54766 +54767-54777 +54778-54787 +54788-54794 +54795-54802 +54803-54820 +54821-54847 +54848-54857 +54858-54861 +54862-54870 +54871-54881 +54882-54899 +54900-54907 +54908-54936 +54937-54959 +54960-54964 +54965-54977 +54978-55005 +55006-55020 +55021-55042 +55043-55051 +55052-55060 +55061-55081 +55082-55096 +55097-55110 +55111-55118 +55119-55127 +55128-55136 +55137-55147 +55148-55157 +55158-55179 +55180-55195 +55196-55221 +55222-55242 +55243-55248 +55249-55259 +55260-55282 +55283-55289 +55290-55317 +55318-55335 +55336-55342 +55343-55372 +55373-55388 +55389-55406 +55407-55423 +55424-55432 +55433-55437 +55438-55450 +55451-55457 +55458-55466 +55467-55475 +55476-55489 +55490-55509 +55510-55516 +55517-55528 +55529-55558 +55559-55574 +55575-55589 +55590-55606 +55607-55621 +55622-55630 +55631-55637 +55638-55646 +55647-55656 +55657-55667 +55668-55684 +55685-55699 +55700-55706 +55707-55711 +55712-55728 +55729-55737 +55738-55758 +55759-55768 +55769-55772 +55773-55775 +55776-55786 +55787-55800 +55801-55808 +55809-55826 +55827-55841 +55842-55854 +55855-55866 +55867-55873 +55874-55881 +55882-55888 +55889-55906 +55907-55924 +55925-55935 +55936-55941 +55942-55950 +55951-55981 +55982-55988 +55989-56008 +56009-56013 +56014-56020 +56021-56025 +56026-56034 +56035-56063 +56064-56069 +56070-56072 +56073-56080 +56081-56096 +56097-56105 +56106-56119 +56120-56137 +56138-56146 +56147-56151 +56152-56166 +56167-56172 +56173-56211 +56212-56229 +56230-56244 +56245-56252 +56253-56274 +56275-56285 +56286-56309 +56310-56324 +56325-56335 +56336-56354 +56355-56369 +56370-56382 +56383-56405 +56406-56424 +56425-56435 +56436-56445 +56446-56458 +56459-56462 +56463-56479 +56480-56491 +56492-56505 +56506-56510 +56511-56513 +56514-56535 +56536-56552 +56553-56563 +56564-56572 +56573-56595 +56596-56605 +56606-56626 +56627-56644 +56645-56660 +56661-56667 +56668-56676 +56677-56692 +56693-56707 +56708-56711 +56712-56724 +56725-56736 +56737-56744 +56745-56750 +56751-56761 +56762-56800 +56801-56824 +56825-56832 +56833-56843 +56844-56858 +56859-56874 +56875-56885 +56886-56895 +56896-56903 +56904-56913 +56914-56925 +56926-56939 +56940-56946 +56947-56960 +56961-56982 +56983-56991 +56992-57018 +57019-57053 +57054-57071 +57072-57077 +57078-57085 +57086-57103 +57104-57124 +57125-57140 +57141-57176 +57177-57187 +57188-57210 +57211-57215 +57216-57221 +57222-57239 +57240-57261 +57262-57267 +57268-57283 +57284-57304 +57305-57316 +57317-57342 +57343-57355 +57356-57369 +57370-57380 +57381-57395 +57396-57403 +57404-57418 +57419-57433 +57434-57450 +57451-57459 +57460-57467 +57468-57477 +57478-57500 +57501-57515 +57516-57528 +57529-57538 +57539-57555 +57556-57565 +57566-57571 +57572-57600 +57601-57608 +57609-57622 +57623-57633 +57634-57654 +57655-57656 +57657-57676 +57677-57694 +57695-57704 +57705-57723 +57724-57755 +57756-57782 +57783-57805 +57806-57811 +57812-57814 +57815-57822 +57823-57842 +57843-57852 +57853-57860 +57861-57866 +57867-57879 +57880-57894 +57895-57898 +57899-57933 +57934-57942 +57943-57958 +57959-57968 +57969-57985 +57986-57999 +58000-58018 +58019-58039 +58040-58074 +58075-58112 +58113-58121 +58122-58148 +58149-58169 +58170-58191 +58192-58209 +58210-58228 +58229-58247 +58248-58269 +58270-58278 +58279-58303 +58304-58324 +58325-58351 +58352-58379 +58380-58400 +58401-58440 +58441-58464 +58465-58488 +58489-58508 +58509-58522 +58523-58539 +58540-58551 +58552-58569 +58570-58576 +58577-58584 +58585-58599 +58600-58623 +58624-58645 +58646-58662 +58663-58670 +58671-58675 +58676-58678 +58679-58685 +58686-58693 +58694-58698 +58699-58709 +58710-58719 +58720-58724 +58725-58738 +58739-58752 +58753-58762 +58763-58770 +58771-58805 +58806-58818 +58819-58828 +58829-58838 +58839-58850 +58851-58858 +58859-58890 +58891-58922 +58923-58934 +58935-58966 +58967-58992 +58993-59009 +59010-59035 +59036-59079 +59080-59088 +59089-59099 +59100-59133 +59134-59182 +59183-59202 +59203-59207 +59208-59215 +59216-59231 +59232-59243 +59244-59255 +59256-59272 +59273-59309 +59310-59329 +59330-59342 +59343-59373 +59374-59390 +59391-59398 +59399-59403 +59404-59407 +59408-59423 +59424-59437 +59438-59456 +59457-59476 +59477-59485 +59486-59501 +59502-59515 +59516-59528 +59529-59542 +59543-59552 +59553-59562 +59563-59570 +59571-59580 +59581-59605 +59606-59612 +59613-59615 +59616-59632 +59633-59649 +59650-59655 +59656-59674 +59675-59689 +59690-59702 +59703-59709 +59710-59721 +59722-59732 +59733-59738 +59739-59746 +59747-59759 +59760-59764 +59765-59772 +59773-59781 +59782-59792 +59793-59813 +59814-59820 +59821-59832 +59833-59845 +59846-59854 +59855-59863 +59864-59869 +59870-59880 +59881-59894 +59895-59900 +59901-59907 +59908-59920 +59921-59930 +59931-59940 +59941-59952 +59953-59960 +59961-59985 +59986-60003 +60004-60013 +60014-60021 +60022-60053 +60054-60064 +60065-60071 +60072-60089 +60090-60108 +60109-60121 +60122-60137 +60138-60156 +60157-60184 +60185-60193 +60194-60206 +60207-60212 +60213-60239 +60240-60247 +60248-60255 +60256-60262 +60263-60272 +60273-60288 +60289-60298 +60299-60309 +60310-60332 +60333-60335 +60336-60348 +60349-60368 +60369-60378 +60379-60384 +60385-60407 +60408-60414 +60415-60432 +60433-60455 +60456-60473 +60474-60487 +60488-60495 +60496-60501 +60502-60525 +60526-60541 +60542-60553 +60554-60568 +60569-60578 +60579-60592 +60593-60606 +60607-60641 +60642-60647 +60648-60658 +60659-60669 +60670-60689 +60690-60703 +60704-60709 +60710-60718 +60719-60734 +60735-60743 +60744-60752 +60753-60760 +60761-60774 +60775-60786 +60787-60801 +60802-60825 +60826-60835 +60836-60841 +60842-60844 +60845-60857 +60858-60867 +60868-60883 +60884-60894 +60895-60909 +60910-60920 +60921-60949 +60950-60963 +60964-60993 +60994-61003 +61004-61031 +61032-61042 +61043-61060 +61061-61071 +61072-61102 +61103-61115 +61116-61142 +61143-61164 +61165-61175 +61176-61193 +61194-61217 +61218-61226 +61227-61241 +61242-61250 +61251-61259 +61260-61264 +61265-61279 +61280-61299 +61300-61317 +61318-61335 +61336-61348 +61349-61361 +61362-61368 +61369-61373 +61374-61387 +61388-61397 +61398-61405 +61406-61416 +61417-61432 +61433-61456 +61457-61474 +61475-61488 +61489-61507 +61508-61519 +61520-61529 +61530-61563 +61564-61567 +61568-61594 +61595-61610 +61611-61626 +61627-61657 +61658-61677 +61678-61701 +61702-61716 +61717-61728 +61729-61733 +61734-61739 +61740-61751 +61752-61764 +61765-61807 +61808-61847 +61848-61875 +61876-61914 +61915-61938 +61939-61956 +61957-61979 +61980-61993 +61994-61998 +61999-62002 +62003-62011 +62012-62024 +62025-62030 +62031-62036 +62037-62065 +62066-62085 +62086-62091 +62092-62114 +62115-62147 +62148-62162 +62163-62171 +62172-62196 +62197-62214 +62215-62232 +62233-62236 +62237-62250 +62251-62260 +62261-62275 +62276-62283 +62284-62302 +62303-62305 +62306-62311 +62312-62317 +62318-62334 +62335-62350 +62351-62360 +62361-62367 +62368-62378 +62379-62384 +62385-62407 +62408-62411 +62412-62415 +62416-62425 +62426-62428 +62429-62442 +62443-62457 +62458-62472 +62473-62487 +62488-62496 +62497-62509 +62510-62530 +62531-62543 +62544-62562 +62563-62604 +62605-62613 +62614-62646 +62647-62653 +62654-62670 +62671-62689 +62690-62698 +62699-62703 +62704-62712 +62713-62739 +62740-62743 +62744-62765 +62766-62778 +62779-62784 +62785-62797 +62798-62813 +62814-62831 +62832-62854 +62855-62861 +62862-62881 +62882-62904 +62905-62911 +62912-62932 +62933-62954 +62955-62963 +62964-62971 +62972-62978 +62979-62986 +62987-62995 +62996-63002 +63003-63006 +63007-63036 +63037-63047 +63048-63057 +63058-63082 +63083-63104 +63105-63110 +63111-63131 +63132-63142 +63143-63171 +63172-63201 +63202-63220 +63221-63228 +63229-63240 +63241-63255 +63256-63259 +63260-63270 +63271-63279 +63280-63286 +63287-63321 +63322-63368 +63369-63388 +63389-63399 +63400-63408 +63409-63434 +63435-63438 +63439-63445 +63446-63464 +63465-63483 +63484-63503 +63504-63518 +63519-63542 +63543-63573 +63574-63586 +63587-63591 +63592-63614 +63615-63626 +63627-63651 +63652-63668 +63669-63679 +63680-63686 +63687-63694 +63695-63723 +63724-63730 +63731-63743 +63744-63760 +63761-63768 +63769-63789 +63790-63793 +63794-63802 +63803-63837 +63838-63852 +63853-63887 +63888-63898 +63899-63905 +63906-63921 +63922-63931 +63932-63942 +63943-63958 +63959-64004 +64005-64018 +64019-64033 +64034-64064 +64065-64076 +64077-64090 +64091-64133 +64134-64146 +64147-64149 +64150-64176 +64177-64182 +64183-64189 +64190-64202 +64203-64211 +64212-64219 +64220-64228 +64229-64231 +64232-64246 +64247-64258 +64259-64272 +64273-64292 +64293-64316 +64317-64330 +64331-64341 +64342-64357 +64358-64364 +64365-64370 +64371-64384 +64385-64397 +64398-64407 +64408-64422 +64423-64431 +64432-64437 +64438-64445 +64446-64454 +64455-64460 +64461-64468 +64469-64478 +64479-64490 +64491-64497 +64498-64526 +64527-64535 +64536-64542 +64543-64571 +64572-64583 +64584-64599 +64600-64613 +64614-64632 +64633-64652 +64653-64675 +64676-64729 +64730-64762 +64763-64780 +64781-64798 +64799-64826 +64827-64840 +64841-64889 +64890-64905 +64906-64939 +64940-64959 +64960-65016 +65017-65036 +65037-65057 +65058-65080 +65081-65119 +65120-65131 +65132-65164 +65165-65180 +65181-65194 +65195-65213 +65214-65242 +65243-65257 +65258-65276 +65277-65289 +65290-65301 +65302-65353 +65354-65366 +65367-65374 +65375-65404 +65405-65464 +65465-65485 +65486-65504 +65505-65522 +65523-65532 +65533-65538 +65539-65596 +65597-65616 +65617-65651 +65652-65662 +65663-65690 +65691-65729 +65730-65740 +65741-65765 +65766-65794 +65795-65815 +65816-65833 +65834-65859 +65860-65880 +65881-65896 +65897-65913 +65914-65930 +65931-65944 +65945-65970 +65971-66000 +66001-66011 +66012-66026 +66027-66070 +66071-66082 +66083-66091 +66092-66114 +66115-66122 +66123-66150 +66151-66187 +66188-66208 +66209-66235 +66236-66264 +66265-66293 +66294-66323 +66324-66336 +66337-66352 +66353-66399 +66400-66415 +66416-66424 +66425-66439 +66440-66456 +66457-66487 +66488-66507 +66508-66558 +66559-66573 +66574-66623 +66624-66681 +66682-66696 +66697-66721 +66722-66746 +66747-66758 +66759-66774 +66775-66791 +66792-66810 +66811-66824 +66825-66856 +66857-66878 +66879-66893 +66894-66910 +66911-66978 +66979-67014 +67015-67056 +67057-67080 +67081-67105 +67106-67125 +67126-67132 +67133-67152 +67153-67160 +67161-67191 +67192-67222 +67223-67248 +67249-67259 +67260-67269 +67270-67275 +67276-67284 +67285-67292 +67293-67301 +67302-67316 +67317-67328 +67329-67333 +67334-67360 +67361-67369 +67370-67383 +67384-67397 +67398-67411 +67412-67419 +67420-67431 +67432-67465 +67466-67484 +67485-67513 +67514-67542 +67543-67553 +67554-67578 +67579-67588 +67589-67612 +67613-67633 +67634-67656 +67657-67674 +67675-67681 +67682-67714 +67715-67727 +67728-67740 +67741-67758 +67759-67777 +67778-67785 +67786-67820 +67821-67849 +67850-67873 +67874-67913 +67914-67931 +67932-67946 +67947-67963 +67964-67988 +67989-68008 +68009-68026 +68027-68036 +68037-68078 +68079-68101 +68102-68115 +68116-68149 +68150-68164 +68165-68224 +68225-68241 +68242-68249 +68250-68257 +68258-68298 +68299-68306 +68307-68351 +68352-68372 +68373-68394 +68395-68399 +68400-68420 +68421-68429 +68430-68464 +68465-68483 +68484-68495 +68496-68512 +68513-68533 +68534-68560 +68561-68592 +68593-68610 +68611-68629 +68630-68643 +68644-68657 +68658-68675 +68676-68688 +68689-68706 +68707-68726 +68727-68753 +68754-68770 +68771-68787 +68788-68794 +68795-68814 +68815-68821 +68822-68841 +68842-68860 +68861-68867 +68868-68896 +68897-68916 +68917-68936 +68937-69008 +69009-69027 +69028-69058 +69059-69076 +69077-69081 +69082-69145 +69146-69150 +69151-69172 +69173-69184 +69185-69191 +69192-69211 +69212-69219 +69220-69245 +69246-69258 +69259-69294 +69295-69313 +69314-69326 +69327-69339 +69340-69353 +69354-69357 +69358-69364 +69365-69378 +69379-69391 +69392-69403 +69404-69420 +69421-69440 +69441-69460 +69461-69476 +69477-69484 +69485-69522 +69523-69533 +69534-69554 +69555-69574 +69575-69603 +69604-69620 +69621-69630 +69631-69663 +69664-69685 +69686-69705 +69706-69725 +69726-69735 +69736-69754 +69755-69773 +69774-69797 +69798-69800 +69801-69835 +69836-69847 +69848-69864 +69865-69876 +69877-69884 +69885-69932 +69933-69953 +69954-69970 +69971-69990 +69991-70010 +70011-70034 +70035-70051 +70052-70091 +70092-70122 +70123-70127 +70128-70135 +70136-70150 +70151-70165 +70166-70178 +70179-70184 +70185-70195 +70196-70212 +70213-70218 +70219-70239 +70240-70254 +70255-70287 +70288-70325 +70326-70361 +70362-70379 +70380-70403 +70404-70434 +70435-70451 +70452-70461 +70462-70468 +70469-70480 +70481-70494 +70495-70502 +70503-70511 +70512-70542 +70543-70564 +70565-70569 +70570-70582 +70583-70610 +70611-70624 +70625-70640 +70641-70654 +70655-70657 +70658-70672 +70673-70684 +70685-70693 +70694-70702 +70703-70707 +70708-70732 +70733-70762 +70763-70781 +70782-70792 +70793-70808 +70809-70821 +70822-70832 +70833-70886 +70887-70897 +70898-70913 +70914-70926 +70927-70937 +70938-70964 +70965-70982 +70983-70988 +70989-71027 +71028-71037 +71038-71050 +71051-71064 +71065-71077 +71078-71118 +71119-71146 +71147-71164 +71165-71198 +71199-71202 +71203-71218 +71219-71225 +71226-71239 +71240-71255 +71256-71267 +71268-71290 +71291-71300 +71301-71305 +71306-71311 +71312-71354 +71355-71364 +71365-71372 +71373-71382 +71383-71398 +71399-71426 +71427-71491 +71492-71511 +71512-71547 +71548-71567 +71568-71584 +71585-71602 +71603-71623 +71624-71632 +71633-71654 +71655-71663 +71664-71669 +71670-71690 +71691-71712 +71713-71746 +71747-71767 +71768-71778 +71779-71792 +71793-71807 +71808-71819 +71820-71836 +71837-71845 +71846-71861 +71862-71898 +71899-71917 +71918-71935 +71936-71960 +71961-71980 +71981-72006 +72007-72028 +72029-72043 +72044-72093 +72094-72099 +72100-72110 +72111-72132 +72133-72143 +72144-72166 +72167-72196 +72197-72213 +72214-72220 +72221-72256 +72257-72277 +72278-72305 +72306-72316 +72317-72328 +72329-72336 +72337-72348 +72349-72351 +72352-72361 +72362-72379 +72380-72412 +72413-72443 +72444-72463 +72464-72475 +72476-72497 +72498-72503 +72504-72508 +72509-72515 +72516-72520 +72521-72526 +72527-72550 +72551-72556 +72557-72571 +72572-72591 +72592-72597 +72598-72622 +72623-72637 +72638-72646 +72647-72664 +72665-72672 +72673-72687 +72688-72718 +72719-72743 +72744-72753 +72754-72783 +72784-72788 +72789-72813 +72814-72824 +72825-72843 +72844-72876 +72877-72892 +72893-72904 +72905-72917 +72918-72930 +72931-72938 +72939-72959 +72960-72987 +72988-72995 +72996-73003 +73004-73056 +73057-73064 +73065-73082 +73083-73111 +73112-73137 +73138-73165 +73166-73184 +73185-73216 +73217-73231 +73232-73259 +73260-73295 +73296-73316 +73317-73328 +73329-73356 +73357-73385 +73386-73418 +73419-73431 +73432-73458 +73459-73472 +73473-73487 +73488-73504 +73505-73520 +73521-73540 +73541-73559 +73560-73569 +73570-73598 +73599-73618 +73619-73643 +73644-73657 +73658-73701 +73702-73734 +73735-73751 +73752-73775 +73776-73779 +73780-73799 +73800-73837 +73838-73859 +73860-73903 +73904-73923 +73924-73934 +73935-73956 +73957-73966 +73967-73975 +73976-74015 +74016-74031 +74032-74048 +74049-74064 +74065-74084 +74085-74092 +74093-74112 +74113-74147 +74148-74172 +74173-74194 +74195-74215 +74216-74227 +74228-74262 +74263-74290 +74291-74312 +74313-74325 +74326-74348 +74349-74360 +74361-74374 +74375-74429 +74430-74459 +74460-74477 +74478-74534 +74535-74579 +74580-74591 +74592-74622 +74623 +74624-74637 +74638-74643 +74644-74659 +74660-74672 +74673-74690 +74691-74715 +74716-74725 +74726-74744 +74745-74761 +74762-74783 +74784-74791 +74792-74815 +74816-74844 +74845-74864 +74865-74877 +74878-74895 +74896-74912 +74913-74919 +74920-74941 +74942-74959 +74960-74983 +74984-74992 +74993-75013 +75014-75036 +75037-75058 +75059-75061 +75062-75083 +75084-75105 +75106-75111 +75112-75128 +75129-75133 +75134-75185 +75186-75232 +75233-75248 +75249-75270 +75271-75292 +75293-75306 +75307-75330 +75331-75345 +75346-75359 +75360-75394 +75395-75407 +75408-75429 +75430-75457 +75458-75466 +75467-75483 +75484-75499 +75500-75514 +75515-75556 +75557-75580 +75581-75607 +75608-75632 +75633-75645 +75646-75666 +75667-75689 +75690-75713 +75714-75729 +75730-75757 +75758-75770 +75771-75779 +75780-75803 +75804-75822 +75823-75912 +75913-75930 +75931-75947 +75948-75962 +75963-75970 +75971-76008 +76009-76049 +76050-76070 +76071-76092 +76093-76131 +76132-76147 +76148-76154 +76155-76174 +76175-76183 +76184-76229 +76230-76242 +76243-76266 +76267-76293 +76294-76313 +76314-76333 +76334-76371 +76372-76384 +76385-76414 +76415-76463 +76464-76469 +76470-76479 +76480-76485 +76486-76513 +76514-76529 +76530-76553 +76554-76581 +76582-76599 +76600-76623 +76624-76646 +76647-76684 +76685-76714 +76715-76725 +76726-76731 +76732-76738 +76739-76760 +76761-76769 +76770-76787 +76788-76794 +76795-76811 +76812-76836 +76837-76857 +76858-76894 +76895-76923 +76924-76933 +76934-76952 +76953-76979 +76980-77005 +77006-77016 +77017-77028 +77029-77038 +77039-77048 +77049-77078 +77079-77096 +77097-77108 +77109-77172 +77173-77209 +77210-77221 +77222-77240 +77241-77252 +77253-77270 +77271-77289 +77290-77299 +77300-77309 +77310-77328 +77329-77355 +77356-77368 +77369-77380 +77381-77410 +77411-77431 +77432-77437 +77438-77455 +77456-77490 +77491-77511 +77512-77518 +77519-77542 +77543-77566 +77567-77576 +77577-77605 +77606-77623 +77624-77639 +77640-77648 +77649-77670 +77671-77701 +77702-77729 +77730-77741 +77742-77784 +77785-77816 +77817-77850 +77851-77879 +77880-77898 +77899-77924 +77925-77951 +77952-77981 +77982-77996 +77997-78020 +78021-78027 +78028-78042 +78043-78068 +78069-78079 +78080-78107 +78108-78113 +78114-78135 +78136-78143 +78144-78166 +78167-78185 +78186-78226 +78227-78245 +78246-78267 +78268-78274 +78275-78328 +78329-78344 +78345-78374 +78375-78385 +78386-78394 +78395-78412 +78413-78422 +78423-78437 +78438-78455 +78456-78480 +78481-78505 +78506-78508 +78509-78512 +78513-78518 +78519-78526 +78527-78556 +78557-78575 +78576-78607 +78608-78670 +78671-78690 +78691-78714 +78715-78737 +78738-78749 +78750-78768 +78769-78776 +78777-78792 +78793-78818 +78819-78836 +78837-78863 +78864-78888 +78889-78902 +78903-78911 +78912-78922 +78923-78933 +78934-79016 +79017-79050 +79051-79056 +79057-79068 +79069-79085 +79086-79090 +79091-79109 +79110-79127 +79128-79151 +79152-79158 +79159-79194 +79195-79198 +79199-79209 +79210-79244 +79245-79262 +79263-79284 +79285-79296 +79297-79320 +79321-79353 +79354-79374 +79375-79392 +79393-79403 +79404-79407 +79408-79418 +79419-79426 +79427-79435 +79436-79449 +79450-79480 +79481-79500 +79501-79512 +79513-79538 +79539-79547 +79548-79567 +79568-79598 +79599-79627 +79628-79656 +79657-79683 +79684-79708 +79709-79727 +79728-79754 +79755-79786 +79787-79804 +79805-79824 +79825-79851 +79852-79869 +79870-79893 +79894-79926 +79927-79941 +79942-79984 +79985-79991 +79992-80012 +80013-80026 +80027-80042 +80043-80063 +80064-80080 +80081-80109 +80110-80139 +80140-80161 +80162-80194 +80195-80209 +80210-80253 +80254-80262 +80263-80333 +80334-80378 +80379-80394 +80395-80421 +80422-80439 +80440-80470 +80471-80507 +80508-80533 +80534-80569 +80570-80576 +80577-80597 +80598-80642 +80643-80658 +80659-80674 +80675-80697 +80698-80735 +80736-80757 +80758-80771 +80772-80779 +80780-80805 +80806-80807 +80808-80820 +80821-80835 +80836-80903 +80904-80951 +80952-80968 +80969-80988 +80989-80999 +81000-81003 +81004-81037 +81038-81071 +81072-81096 +81097-81114 +81115-81127 +81128-81138 +81139-81178 +81179-81215 +81216-81244 +81245-81251 +81252-81261 +81262-81356 +81357-81381 +81382-81387 +81388-81397 +81398-81405 +81406-81468 +81469-81506 +81507-81516 +81517-81563 +81564-81582 +81583-81621 +81622-81626 +81627-81629 +81630-81641 +81642-81674 +81675-81704 +81705-81718 +81719-81740 +81741-81759 +81760-81779 +81780-81805 +81806-81819 +81820-81856 +81857-81902 +81903-81917 +81918-81946 +81947-81958 +81959-81970 +81971-81982 +81983-82013 +82014-82030 +82031-82051 +82052-82082 +82083-82098 +82099-82131 +82132-82146 +82147-82153 +82154-82174 +82175-82188 +82189-82204 +82205-82245 +82246-82257 +82258-82278 +82279-82298 +82299-82313 +82314-82321 +82322-82332 +82333-82344 +82345-82366 +82367-82390 +82391-82412 +82413-82425 +82426-82462 +82463-82470 +82471-82479 +82480-82503 +82504-82524 +82525-82555 +82556-82567 +82568-82577 +82578-82594 +82595-82616 +82617-82640 +82641-82668 +82669-82682 +82683-82694 +82695-82713 +82714-82719 +82720-82745 +82746-82761 +82762-82773 +82774-82814 +82815-82829 +82830-82849 +82850-82875 +82876-82894 +82895-82930 +82931-82939 +82940-82986 +82987-83021 +83022-83037 +83038-83068 +83069-83149 +83150-83161 +83162-83182 +83183-83224 +83225-83253 +83254-83283 +83284-83293 +83294-83304 +83305-83323 +83324-83341 +83342-83368 +83369-83373 +83374-83396 +83397-83418 +83419-83440 +83441-83485 +83486-83494 +83495-83542 +83543-83588 +83589-83611 +83612-83619 +83620-83633 +83634-83648 +83649-83692 +83693-83718 +83719-83747 +83748-83779 +83780-83786 +83787-83801 +83802-83815 +83816-83834 +83835-83875 +83876-83931 +83932-83936 +83937-83941 +83942-83946 +83947-83958 +83959-83971 +83972-83988 +83989-84004 +84005-84021 +84022-84060 +84061-84072 +84073-84076 +84077-84085 +84086-84090 +84091-84099 +84100-84101 +84102-84125 +84126-84135 +84136-84143 +84144-84146 +84147-84148 +84149-84155 +84156-84176 +84177-84199 +84200-84202 +84203-84232 +84233-84236 +84237-84245 +84246-84267 +84268-84285 +84286-84293 +84294-84317 +84318-84332 +84333-84357 +84358-84361 +84362-84382 +84383-84430 +84431-84435 +84436-84440 +84441-84445 +84446-84453 +84454-84458 +84459-84461 +84462-84478 +84479-84484 +84485-84489 +84490-84499 +84500-84507 +84508-84511 +84512-84516 +84517-84526 +84527-84538 +84539-84580 +84581-84588 +84589-84600 +84601-84609 +84610-84612 +84613-84618 +84619-84624 +84625-84675 +84676-84696 +84697-84709 +84710-84714 +84715-84721 +84722-84777 +84778-84798 +84799-84844 +84845-84850 +84851-84889 +84890-84927 +84928-84950 +84951-84971 +84972-84983 +84984-84989 +84990-84998 +84999-85016 +85017-85031 +85032-85052 +85053-85073 +85074-85117 +85118-85141 +85142-85150 +85151-85180 +85181-85188 +85189-85204 +85205-85237 +85238-85259 +85260-85282 +85283-85289 +85290-85321 +85322-85324 +85325-85331 +85332-85333 +85334-85342 +85343-85355 +85356-85382 +85383-85396 +85397-85416 +85417-85423 +85424-85433 +85434-85445 +85446-85458 +85459-85475 +85476-85517 +85518-85530 +85531-85532 +85533-85541 +85542-85543 +85544-85564 +85565-85590 +85591-85598 +85599-85624 +85625-85634 +85635-85643 +85644-85648 +85649-85669 +85670-85688 +85689-85705 +85706-85714 +85715-85725 +85726-85736 +85737-85754 +85755-85780 +85781-85804 +85805-85824 +85825-85827 +85828-85830 +85831-85832 +85833-85854 +85855-85867 +85868-85872 +85873-85878 +85879-85899 +85900-85913 +85914-85926 +85927-85932 +85933-85934 +85935-85956 +85957-85963 +85964-85971 +85972-85976 +85977-85987 +85988-85999 +86000-86011 +86012-86025 +86026-86036 +86037-86049 +86050-86067 +86068-86082 +86083-86120 +86121-86123 +86124-86132 +86133-86141 +86142-86156 +86157-86164 +86165-86184 +86185-86230 +86231-86246 +86247-86260 +86261-86278 +86279-86287 +86288-86302 +86303-86313 +86314-86330 +86331-86362 +86363-86374 +86375-86390 +86391-86399 +86400-86417 +86418-86428 +86429-86433 +86434-86444 +86445-86461 +86462-86473 +86474-86507 +86508-86519 +86520-86543 +86544-86547 +86548-86553 +86554-86559 +86560-86568 +86569-86577 +86578-86592 +86593-86609 +86610-86662 +86663-86667 +86668-86675 +86676-86697 +86698-86702 +86703-86705 +86706-86708 +86709-86726 +86727-86760 +86761-86769 +86770-86809 +86810-86834 +86835-86884 +86885-86894 +86895-86903 +86904-86924 +86925-86943 +86944-86958 +86959-86972 +86973-87004 +87005-87013 +87014-87016 +87017-87021 +87022-87023 +87024-87036 +87037-87048 +87049-87077 +87078-87086 +87087-87098 +87099-87108 +87109-87118 +87119-87140 +87141-87189 +87190-87207 +87208-87224 +87225-87245 +87246-87255 +87256-87275 +87276-87278 +87279-87291 +87292-87300 +87301-87310 +87311-87333 +87334-87350 +87351-87361 +87362-87378 +87379-87387 +87388-87402 +87403-87424 +87425-87436 +87437-87484 +87485-87494 +87495-87505 +87506-87524 +87525-87533 +87534-87540 +87541-87546 +87547-87551 +87552-87557 +87558-87566 +87567-87572 +87573-87581 +87582-87592 +87593-87597 +87598-87615 +87616-87621 +87622-87635 +87636-87651 +87652-87668 +87669-87677 +87678-87679 +87680-87689 +87690-87698 +87699-87731 +87732-87737 +87738-87747 +87748-87759 +87760-87771 +87772-87783 +87784-87808 +87809-87841 +87842-87847 +87848-87849 +87850-87861 +87862-87879 +87880-87884 +87885-87907 +87908-87922 +87923-87930 +87931-87938 +87939-87964 +87965-87976 +87977-87983 +87984-87992 +87993-87997 +87998-88010 +88011-88016 +88017-88034 +88035-88042 +88043-88050 +88051-88075 +88076-88109 +88110-88120 +88121-88132 +88133-88147 +88148-88156 +88157-88182 +88183-88194 +88195-88212 +88213-88217 +88218-88222 +88223-88229 +88230-88240 +88241-88247 +88248-88270 +88271-88297 +88298-88328 +88329-88359 +88360-88405 +88406-88408 +88409-88414 +88415-88450 +88451-88457 +88458-88463 +88464-88476 +88477-88481 +88482-88486 +88487-88491 +88492-88500 +88501-88517 +88518-88525 +88526-88529 +88530-88539 +88540-88551 +88552-88556 +88557-88571 +88572-88587 +88588-88599 +88600-88605 +88606-88613 +88614-88621 +88622-88627 +88628-88633 +88634-88644 +88645-88657 +88658-88671 +88672-88695 +88696-88703 +88704-88710 +88711-88738 +88739-88745 +88746-88750 +88751-88771 +88772-88778 +88779-88790 +88791-88807 +88808-88821 +88822-88831 +88832-88841 +88842-88861 +88862-88868 +88869-88874 +88875-88882 +88883-88894 +88895-88900 +88901-88906 +88907-88915 +88916-88926 +88927-88935 +88936-88948 +88949-88958 +88959-88971 +88972-88978 +88979-88986 +88987-88993 +88994-89010 +89011-89020 +89021-89024 +89025-89036 +89037-89056 +89057-89068 +89069-89078 +89079-89084 +89085-89103 +89104-89117 +89118-89130 +89131-89138 +89139-89149 +89150-89164 +89165-89174 +89175-89182 +89183-89192 +89193-89200 +89201-89214 +89215-89224 +89225-89231 +89232-89242 +89243-89263 +89264-89296 +89297-89309 +89310-89346 +89347-89355 +89356-89369 +89370-89383 +89384-89387 +89388-89412 +89413-89435 +89436-89479 +89480-89490 +89491-89558 +89559-89567 +89568-89608 +89609-89616 +89617-89632 +89633-89638 +89639-89653 +89654-89667 +89668-89678 +89679-89734 +89735-89743 +89744-89783 +89784-89820 +89821-89832 +89833-89839 +89840-89862 +89863-89869 +89870-89881 +89882-89887 +89888-89892 +89893-89897 +89898-89906 +89907-89914 +89915-89923 +89924-89935 +89936-89946 +89947-89963 +89964-89968 +89969-89975 +89976-89997 +89998-90021 +90022-90028 +90029-90045 +90046-90059 +90060-90067 +90068-90082 +90083-90092 +90093-90102 +90103-90113 +90114-90168 +90169-90211 +90212-90223 +90224-90290 +90291-90306 +90307-90341 +90342-90356 +90357-90376 +90377-90379 +90380-90390 +90391-90410 +90411-90416 +90417-90423 +90424-90442 +90443-90460 +90461-90473 +90474-90475 +90476-90477 +90478-90482 +90483-90490 +90491-90526 +90527-90568 +90569-90586 +90587-90636 +90637-90664 +90665-90682 +90683-90696 +90697-90741 +90742-90761 +90762-90797 +90798-90821 +90822-90829 +90830-90839 +90840-90855 +90856-90868 +90869-90907 +90908-90928 +90929-90939 +90940-90947 +90948-90952 +90953-90967 +90968-90975 +90976-90984 +90985-90998 +90999-91013 +91014-91017 +91018-91021 +91022-91031 +91032-91039 +91040-91052 +91053-91070 +91071-91079 +91080-91095 +91096-91100 +91101-91113 +91114-91150 +91151-91159 +91160-91173 +91174-91187 +91188-91198 +91199-91208 +91209-91211 +91212-91227 +91228-91238 +91239-91248 +91249-91259 +91260-91264 +91265-91292 +91293-91303 +91304-91313 +91314-91326 +91327-91330 +91331-91345 +91346-91369 +91370-91378 +91379-91407 +91408-91411 +91412-91417 +91418-91426 +91427-91429 +91430-91431 +91432-91434 +91435-91443 +91444-91463 +91464-91472 +91473-91477 +91478-91482 +91483-91502 +91503-91508 +91509-91517 +91518-91549 +91550-91555 +91556-91586 +91587-91595 +91596-91625 +91626-91627 +91628-91638 +91639-91657 +91658-91675 +91676-91730 +91731-91735 +91736-91744 +91745-91755 +91756-91762 +91763-91780 +91781-91809 +91810-91835 +91836-91841 +91842-91846 +91847-91852 +91853-91858 +91859-91875 +91876-91884 +91885-91895 +91896-91902 +91903-91915 +91916-91919 +91920-91934 +91935-91943 +91944-91955 +91956-91960 +91961-91965 +91966-91973 +91974-91982 +91983-91984 +91985-92007 +92008-92011 +92012-92031 +92032-92038 +92039-92047 +92048-92056 +92057-92064 +92065-92078 +92079-92092 +92093-92101 +92102-92110 +92111-92112 +92113-92123 +92124-92131 +92132-92139 +92140-92142 +92143-92160 +92161-92182 +92183-92185 +92186-92193 +92194-92202 +92203-92217 +92218-92231 +92232-92241 +92242-92254 +92255-92284 +92285-92292 +92293-92300 +92301-92313 +92314-92326 +92327-92337 +92338-92366 +92367-92374 +92375-92389 +92390-92405 +92406-92423 +92424-92434 +92435-92440 +92441-92450 +92451-92457 +92458-92465 +92466-92473 +92474-92487 +92488-92494 +92495-92497 +92498-92499 +92500-92503 +92504-92505 +92506-92518 +92519-92527 +92528-92529 +92530-92532 +92533-92540 +92541-92556 +92557-92558 +92559-92562 +92563-92572 +92573-92589 +92590-92604 +92605-92606 +92607-92609 +92610-92612 +92613-92615 +92616-92621 +92622-92628 +92629-92639 +92640-92647 +92648-92684 +92685-92691 +92692-92696 +92697-92706 +92707-92719 +92720-92740 +92741-92751 +92752-92773 +92774-92792 +92793-92795 +92796-92826 +92827-92841 +92842-92850 +92851-92863 +92864-92879 +92880-92888 +92889-92895 +92896-92905 +92906-92915 +92916-92934 +92935-92980 +92981-92986 +92987-93004 +93005-93011 +93012-93020 +93021-93032 +93033-93055 +93056-93069 +93070-93084 +93085-93104 +93105-93107 +93108-93110 +93111-93116 +93117-93124 +93125-93133 +93134-93143 +93144-93151 +93152-93158 +93159-93177 +93178-93187 +93188-93192 +93193-93201 +93202-93213 +93214-93225 +93226-93235 +93236-93241 +93242-93246 +93247-93264 +93265-93277 +93278-93286 +93287-93304 +93305-93323 +93324-93336 +93337-93342 +93343-93362 +93363-93369 +93370-93373 +93374-93380 +93381-93387 +93388-93392 +93393-93398 +93399-93414 +93415-93426 +93427-93451 +93452-93466 +93467-93474 +93475-93482 +93483-93492 +93493-93507 +93508-93511 +93512-93527 +93528-93540 +93541-93554 +93555-93602 +93603-93608 +93609-93614 +93615-93628 +93629-93643 +93644-93660 +93661-93672 +93673-93685 +93686-93696 +93697-93713 +93714-93720 +93721-93727 +93728-93750 +93751-93757 +93758-93760 +93761-93764 +93765-93777 +93778-93788 +93789-93804 +93805-93809 +93810-93818 +93819-93821 +93822-93830 +93831-93847 +93848-93855 +93856-93863 +93864-93867 +93868-93871 +93872-93877 +93878-93883 +93884-93891 +93892-93911 +93912-93930 +93931-93967 +93968-93977 +93978-93990 +93991-94017 +94018-94023 +94024-94037 +94038-94060 +94061-94072 +94073-94085 +94086-94093 +94094-94100 +94101-94109 +94110-94128 +94129-94138 +94139-94151 +94152-94164 +94165-94175 +94176-94195 +94196-94199 +94200-94206 +94207-94234 +94235-94250 +94251-94265 +94266-94281 +94282-94296 +94297-94323 +94324-94333 +94334-94344 +94345-94347 +94348-94349 +94350-94353 +94354-94393 +94394-94421 +94422-94440 +94441-94462 +94463-94477 +94478-94491 +94492-94502 +94503-94509 +94510-94521 +94522-94530 +94531-94541 +94542-94548 +94549-94557 +94558-94571 +94572-94594 +94595-94602 +94603-94610 +94611-94624 +94625-94634 +94635-94683 +94684-94698 +94699-94723 +94724-94747 +94748-94757 +94758-94778 +94779-94800 +94801-94808 +94809-94814 +94815-94829 +94830-94839 +94840-94847 +94848-94869 +94870-94906 +94907-94932 +94933-94948 +94949-94957 +94958-94981 +94982-94984 +94985-94987 +94988-94990 +94991-94993 +94994-94998 +94999-95002 +95003-95005 +95006-95011 +95012-95018 +95019-95037 +95038-95065 +95066-95086 +95087-95121 +95122-95129 +95130-95133 +95134-95143 +95144-95151 +95152-95160 +95161-95172 +95173-95179 +95180-95191 +95192-95201 +95202-95215 +95216-95226 +95227-95242 +95243-95252 +95253-95257 +95258-95262 +95263-95272 +95273-95289 +95290-95316 +95317-95338 +95339-95349 +95350-95364 +95365-95369 +95370-95380 +95381-95398 +95399-95413 +95414-95420 +95421-95434 +95435-95437 +95438-95476 +95477-95486 +95487-95494 +95495-95513 +95514-95528 +95529-95550 +95551-95571 +95572-95593 +95594-95632 +95633-95636 +95637-95649 +95650-95653 +95654-95669 +95670-95683 +95684-95693 +95694-95701 +95702-95718 +95719-95726 +95727-95744 +95745-95751 +95752-95769 +95770-95782 +95783-95797 +95798-95802 +95803-95814 +95815-95821 +95822-95852 +95853-95890 +95891-95906 +95907-95913 +95914-95921 +95922-95940 +95941-95971 +95972-95981 +95982-95999 +96000-96008 +96009-96046 +96047-96054 +96055-96069 +96070-96076 +96077-96090 +96091-96099 +96100-96109 +96110-96123 +96124-96129 +96130-96139 +96140-96159 +96160-96173 +96174-96178 +96179-96185 +96186-96199 +96200-96223 +96224-96231 +96232-96241 +96242-96247 +96248-96263 +96264-96273 +96274-96283 +96284-96285 +96286-96290 +96291-96300 +96301-96304 +96305-96315 +96316-96324 +96325-96343 +96344-96357 +96358-96378 +96379-96384 +96385-96396 +96397-96407 +96408-96413 +96414-96419 +96420-96425 +96426-96431 +96432-96437 +96438-96443 +96444-96450 +96451-96467 +96468-96478 +96479-96489 +96490-96504 +96505-96517 +96518-96536 +96537-96540 +96541-96555 +96556-96565 +96566-96578 +96579-96612 +96613-96626 +96627-96641 +96642-96665 +96666-96683 +96684-96703 +96704-96719 +96720-96729 +96730-96739 +96740-96754 +96755-96773 +96774-96780 +96781-96790 +96791-96807 +96808-96812 +96813-96827 +96828-96854 +96855-96861 +96862-96866 +96867-96898 +96899-96922 +96923-96926 +96927-96932 +96933-96946 +96947-96951 +96952-96956 +96957-96962 +96963-96970 +96971-96972 +96973-96979 +96980-96988 +96989-97017 +97018-97029 +97030-97091 +97092-97100 +97101-97117 +97118-97135 +97136-97162 +97163-97220 +97221-97254 +97255-97293 +97294-97326 +97327-97334 +97335-97351 +97352-97367 +97368-97396 +97397-97404 +97405-97416 +97417-97442 +97443-97459 +97460-97475 +97476-97487 +97488-97503 +97504-97528 +97529-97553 +97554-97568 +97569-97593 +97594-97600 +97601-97615 +97616-97620 +97621-97645 +97646-97681 +97682-97731 +97732-97736 +97737-97760 +97761-97764 +97765-97776 +97777-97792 +97793-97816 +97817-97826 +97827-97855 +97856-97863 +97864-97905 +97906-97920 +97921-97934 +97935-97946 +97947-97975 +97976-97980 +97981-98001 +98002-98014 +98015-98023 +98024-98029 +98030-98035 +98036-98056 +98057-98096 +98097-98138 +98139-98178 +98179-98198 +98199-98236 +98237-98258 +98259-98269 +98270-98304 +98305-98324 +98325-98343 +98344-98367 +98368-98376 +98377-98397 +98398-98417 +98418-98440 +98441-98455 +98456-98490 +98491-98500 +98501-98525 +98526-98533 +98534-98544 +98545-98567 +98568-98574 +98575-98609 +98610-98618 +98619-98628 +98629-98635 +98636-98641 +98642-98683 +98684-98693 +98694-98699 +98700-98714 +98715-98739 +98740-98743 +98744-98747 +98748-98823 +98824-98857 +98858-98868 +98869-98878 +98879-98888 +98889-98892 +98893-98904 +98905-98916 +98917-98923 +98924-98948 +98949-98980 +98981-98999 +99000-99001 +99002-99007 +99008-99024 +99025-99034 +99035-99045 +99046-99065 +99066-99078 +99079-99145 +99146-99155 +99156-99165 +99166-99172 +99173-99196 +99197-99204 +99205-99232 +99233-99235 +99236-99280 +99281-99300 +99301-99307 +99308-99345 +99346-99401 +99402-99428 +99429-99444 +99445-99465 +99466-99470 +99471-99486 +99487-99505 +99506-99518 +99519-99552 +99553-99565 +99566-99592 +99593-99650 +99651-99661 +99662-99683 +99684-99699 +99700-99717 +99718-99754 +99755-99797 +99798-99823 +99824-99840 +99841-99857 +99858-99891 +99892-99914 +99915-99949 +99950-99993 +99994-100001 +100002-100026 +100027-100046 +100047-100101 +100102-100105 +100106-100123 +100124-100156 +100157-100174 +100175-100191 +100192-100202 +100203-100214 +100215-100237 +100238-100256 +100257-100293 +100294-100299 +100300-100312 +100313-100318 +100319-100322 +100323-100337 +100338-100363 +100364-100389 +100390-100396 +100397-100414 +100415-100430 +100431-100448 +100449-100458 +100459-100467 +100468-100485 +100486-100491 +100492-100494 +100495-100514 +100515-100524 +100525-100535 +100536-100555 +100556-100563 +100564-100576 +100577-100592 +100593-100600 +100601-100607 +100608-100628 +100629-100635 +100636-100646 +100647-100649 +100650-100652 +100653-100656 +100657-100659 +100660-100663 +100664-100675 +100676-100693 +100694-100734 +100735-100748 +100749-100753 +100754-100759 +100760-100767 +100768-100784 +100785-100811 +100812-100813 +100814-100823 +100824-100850 +100851-100881 +100882-100895 +100896-100905 +100906-100925 +100926-100942 +100943-100952 +100953-100966 +100967-100981 +100982-100995 +100996-101001 +101002-101003 +101004-101006 +101007-101012 +101013-101022 +101023-101039 +101040-101056 +101057-101061 +101062-101072 +101073-101092 +101093-101102 +101103-101108 +101109-101114 +101115-101120 +101121-101130 +101131-101136 +101137-101140 +101141-101149 +101150-101154 +101155-101159 +101160-101167 +101168-101193 +101194-101221 +101222-101226 +101227-101235 +101236-101276 +101277-101286 +101287-101301 +101302-101310 +101311-101319 +101320-101323 +101324-101332 +101333-101358 +101359-101369 +101370-101378 +101379-101384 +101385-101408 +101409-101427 +101428-101432 +101433-101437 +101438-101457 +101458-101487 +101488-101532 +101533-101565 +101566-101596 +101597-101607 +101608-101616 +101617-101631 +101632-101645 +101646-101684 +101685-101736 +101737-101751 +101752-101764 +101765-101775 +101776-101785 +101786-101797 +101798-101819 +101820-101832 +101833-101836 +101837-101858 +101859-101868 +101869-101902 +101903-101926 +101927-101985 +101986-101996 +101997-102009 +102010-102031 +102032-102045 +102046-102075 +102076-102122 +102123-102136 +102137-102138 +102139-102148 +102149-102157 +102158-102159 +102160-102168 +102169-102190 +102191-102196 +102197-102205 +102206-102218 +102219-102234 +102235-102237 +102238-102242 +102243-102249 +102250-102277 +102278-102287 +102288-102309 +102310-102318 +102319-102327 +102328-102346 +102347-102362 +102363-102376 +102377-102417 +102418-102421 +102422-102429 +102430-102439 +102440-102458 +102459-102481 +102482-102490 +102491-102498 +102499-102502 +102503-102519 +102520-102530 +102531-102538 +102539-102540 +102541-102554 +102555-102572 +102573-102587 +102588-102599 +102600-102607 +102608-102618 +102619-102625 +102626-102640 +102641-102648 +102649-102660 +102661-102686 +102687-102699 +102700-102727 +102728-102747 +102748-102753 +102754-102760 +102761-102795 +102796-102803 +102804-102811 +102812-102821 +102822-102824 +102825-102856 +102857-102861 +102862-102873 +102874-102879 +102880-102890 +102891-102916 +102917-102931 +102932-102942 +102943-102958 +102959-102978 +102979-102983 +102984-103024 +103025-103049 +103050-103057 +103058-103071 +103072-103096 +103097-103105 +103106-103110 +103111-103118 +103119-103130 +103131-103143 +103144-103153 +103154-103161 +103162-103176 +103177-103178 +103179-103184 +103185-103191 +103192-103197 +103198-103207 +103208-103217 +103218-103227 +103228-103233 +103234-103239 +103240-103245 +103246-103259 +103260-103275 +103276-103286 +103287-103296 +103297-103309 +103310-103320 +103321-103328 +103329-103370 +103371-103391 +103392-103405 +103406-103411 +103412-103418 +103419-103441 +103442-103452 +103453-103462 +103463-103481 +103482-103487 +103488-103498 +103499-103503 +103504-103535 +103536-103541 +103542-103547 +103548-103564 +103565-103572 +103573-103589 +103590-103606 +103607-103628 +103629-103638 +103639-103655 +103656-103672 +103673-103685 +103686-103703 +103704-103715 +103716-103781 +103782-103847 +103848-103877 +103878-103917 +103918-104017 +104018-104058 +104059-104086 +104087-104123 +104124-104153 +104154-104210 +104211-104217 +104218-104225 +104226-104232 +104233-104251 +104252-104296 +104297-104313 +104314-104372 +104373-104397 +104398-104448 +104449-104554 +104555-104635 +104636-104649 +104650-104735 +104736-104772 +104773-104808 +104809-104822 +104823-104842 +104843-104856 +104857-104867 +104868-104883 +104884-104898 +104899-105022 +105023-105076 +105077-105135 +105136-105150 +105151-105154 +105155-105166 +105167-105185 +105186-105207 +105208-105222 +105223-105238 +105239-105254 +105255-105285 +105286-105311 +105312-105335 +105336-105353 +105354-105358 +105359-105367 +105368-105389 +105390-105412 +105413-105426 +105427-105441 +105442-105460 +105461-105472 +105473-105520 +105521-105545 +105546-105560 +105561-105609 +105610-105622 +105623-105653 +105654-105675 +105676-105689 +105690-105710 +105711-105722 +105723-105745 +105746-105761 +105762-105820 +105821-105848 +105849-105860 +105861-105906 +105907-105925 +105926-105967 +105968-106038 +106039-106077 +106078-106091 +106092-106104 +106105-106124 +106125-106136 +106137-106224 +106225-106237 +106238-106280 +106281-106330 +106331-106345 +106346-106371 +106372-106373 +106374-106387 +106388-106438 +106439-106447 +106448-106457 +106458-106462 +106463-106481 +106482-106489 +106490-106524 +106525-106606 +106607-106664 +106665-106695 +106696-106709 +106710-106749 +106750-106778 +106779-106794 +106795-106838 +106839-106855 +106856-106864 +106865-106880 +106881-106900 +106901-106915 +106916-106936 +106937-106969 +106970-106974 +106975-106992 +106993-107004 +107005-107037 +107038-107044 +107045-107055 +107056-107065 +107066-107091 +107092-107100 +107101-107125 +107126-107136 +107137-107215 +107216-107234 +107235-107240 +107241-107264 +107265-107269 +107270-107280 +107281-107287 +107288-107300 +107301-107338 +107339-107377 +107378-107392 +107393-107402 +107403-107430 +107431-107434 +107435-107437 +107438-107443 +107444-107446 +107447-107465 +107466-107485 +107486-107510 +107511-107523 +107524-107531 +107532-107550 +107551-107563 +107564-107569 +107570-107583 +107584-107589 +107590-107596 +107597-107636 +107637-107650 +107651-107655 +107656-107669 +107670-107686 +107687-107700 +107701-107706 +107707-107712 +107713-107724 +107725-107734 +107735-107754 +107755-107762 +107763-107864 +107865-108006 +108007-108025 +108026-108082 +108083-108149 +108150-108206 +108207-108272 +108273-108328 +108329-108336 +108337-108362 +108363-108387 +108388-108476 +108477-108518 +108519-108531 +108532-108559 +108560-108603 +108604-108659 +108660-108676 +108677-108684 +108685-108697 +108698-108712 +108713-108748 +108749-108764 +108765-108808 +108809-108834 +108835-108843 +108844-108854 +108855-108871 +108872-108874 +108875-108903 +108904-108925 +108926-108934 +108935-108944 +108945-108957 +108958-108967 +108968-108988 +108989-109009 +109010-109013 +109014-109023 +109024-109041 +109042-109078 +109079-109087 +109088-109102 +109103-109147 +109148-109152 +109153-109182 +109183-109194 +109195-109220 +109221-109237 +109238-109246 +109247-109259 +109260-109282 +109283-109295 +109296-109301 +109302-109305 +109306-109309 +109310-109324 +109325-109328 +109329-109408 +109409-109440 +109441-109474 +109475-109520 +109521-109557 +109558-109592 +109593-109631 +109632-109659 +109660-109668 +109669-109685 +109686-109732 +109733-109766 +109767-109833 +109834-109841 +109842-109862 +109863-109879 +109880-109901 +109902-109910 +109911-109950 +109951-109957 +109958-109973 +109974-109998 +109999-110054 +110055-110093 +110094-110111 +110112-110157 +110158-110186 +110187-110196 +110197-110257 +110258-110268 +110269-110287 +110288-110305 +110306-110317 +110318-110348 +110349-110368 +110369-110388 +110389-110452 +110453-110458 +110459-110465 +110466-110491 +110492-110512 +110513-110535 +110536-110540 +110541-110551 +110552-110561 +110562-110606 +110607-110617 +110618-110644 +110645-110647 +110648-110663 +110664-110681 +110682-110688 +110689-110697 +110698-110715 +110716-110745 +110746-110752 +110753-110756 +110757-110763 +110764-110773 +110774-110782 +110783-110798 +110799-110809 +110810-110862 +110863-110967 +110968-111016 +111017-111063 +111064-111110 +111111-111120 +111121-111133 +111134-111148 +111149-111205 +111206-111232 +111233-111277 +111278-111294 +111295-111331 +111332-111358 +111359-111363 +111364-111376 +111377-111389 +111390-111407 +111408-111433 +111434-111466 +111467-111481 +111482-111498 +111499-111509 +111510-111527 +111528-111533 +111534-111551 +111552-111560 +111561-111575 +111576-111580 +111581-111592 +111593-111594 +111595-111604 +111605-111624 +111625-111636 +111637-111666 +111667-111700 +111701-111756 +111757-111781 +111782-111803 +111804-111823 +111824-111847 +111848-111865 +111866-111910 +111911-111941 +111942-111960 +111961-111978 +111979-111999 +112000-112044 +112045-112051 +112052-112063 +112064-112080 +112081-112095 +112096-112098 +112099-112105 +112106-112139 +112140-112152 +112153-112162 +112163-112180 +112181-112199 +112200-112208 +112209-112217 +112218-112229 +112230-112246 +112247-112254 +112255-112275 +112276-112283 +112284-112301 +112302-112363 +112364-112383 +112384-112390 +112391-112395 +112396-112418 +112419-112425 +112426-112443 +112444-112447 +112448-112467 +112468-112476 +112477-112493 +112494-112505 +112506-112522 +112523-112541 +112542-112546 +112547-112565 +112566-112572 +112573-112591 +112592-112596 +112597-112602 +112603-112619 +112620-112649 +112650-112653 +112654-112667 +112668-112688 +112689-112701 +112702-112708 +112709-112725 +112726-112739 +112740-112754 +112755-112767 +112768-112778 +112779-112798 +112799-112806 +112807-112809 +112810-112823 +112824-112836 +112837-112850 +112851-112872 +112873-112882 +112883-112894 +112895-112898 +112899-112948 +112949-112956 +112957-112967 +112968-112974 +112975-112997 +112998-113017 +113018-113024 +113025-113053 +113054-113123 +113124-113167 +113168-113188 +113189-113192 +113193-113209 +113210-113221 +113222-113282 +113283-113302 +113303-113316 +113317-113395 +113396-113421 +113422-113437 +113438-113448 +113449-113463 +113464-113489 +113490-113501 +113502-113509 +113510-113539 +113540-113545 +113546-113556 +113557-113567 +113568-113575 +113576-113578 +113579-113586 +113587-113613 +113614-113632 +113633-113635 +113636-113640 +113641-113644 +113645-113649 +113650-113659 +113660-113674 +113675-113687 +113688-113692 +113693-113724 +113725-113750 +113751-113775 +113776-113795 +113796-113814 +113815-113825 +113826-113867 +113868-113877 +113878-113911 +113912-113914 +113915-113940 +113941-113962 +113963-113967 +113968-113979 +113980-114020 +114021-114031 +114032-114043 +114044-114074 +114075-114102 +114103-114123 +114124-114137 +114138-114170 +114171-114183 +114184-114194 +114195-114204 +114205-114235 +114236-114240 +114241-114263 +114264-114274 +114275-114279 +114280-114295 +114296-114302 +114303-114314 +114315-114320 +114321-114332 +114333-114335 +114336-114359 +114360-114384 +114385-114392 +114393-114402 +114403-114406 +114407-114419 +114420-114425 +114426-114429 +114430-114482 +114483-114494 +114495-114529 +114530-114576 +114577-114602 +114603-114616 +114617-114621 +114622-114642 +114643-114646 +114647-114662 +114663-114679 +114680-114687 +114688-114699 +114700-114733 +114734-114738 +114739-114764 +114765-114792 +114793-114856 +114857-114865 +114866-114868 +114869-114891 +114892-114912 +114913-114969 +114970-114972 +114973-114986 +114987-114993 +114994-115009 +115010-115026 +115027-115043 +115044-115054 +115055-115070 +115071-115076 +115077-115082 +115083-115087 +115088-115116 +115117-115128 +115129-115175 +115176-115194 +115195-115220 +115221-115268 +115269-115288 +115289-115319 +115320-115328 +115329-115338 +115339-115355 +115356-115362 +115363-115368 +115369-115381 +115382-115396 +115397-115412 +115413-115422 +115423-115494 +115495-115508 +115509-115521 +115522-115537 +115538-115578 +115579-115583 +115584-115598 +115599-115614 +115615-115619 +115620-115633 +115634-115644 +115645-115665 +115666-115678 +115679-115689 +115690-115743 +115744-115754 +115755-115771 +115772-115788 +115789-115799 +115800-115807 +115808-115832 +115833-115857 +115858-115867 +115868-115888 +115889-115895 +115896-115907 +115908-115949 +115950-115958 +115959-115982 +115983-115992 +115993-116020 +116021-116037 +116038-116048 +116049-116087 +116088-116131 +116132-116161 +116162-116198 +116199-116230 +116231-116234 +116235-116243 +116244-116248 +116249-116258 +116259-116271 +116272-116279 +116280-116295 +116296-116315 +116316-116343 +116344-116364 +116365-116374 +116375-116413 +116414-116426 +116427-116433 +116434-116453 +116454-116470 +116471-116501 +116502-116521 +116522-116536 +116537-116554 +116555-116571 +116572-116618 +116619-116633 +116634-116698 +116699-116707 +116708-116726 +116727-116740 +116741-116771 +116772-116802 +116803-116836 +116837-116843 +116844-116882 +116883-116920 +116921-116934 +116935-116957 +116958-116986 +116987-117011 +117012-117017 +117018-117032 +117033-117101 +117102-117166 +117167-117179 +117180-117222 +117223-117232 +117233-117244 +117245-117268 +117269-117300 +117301-117310 +117311-117324 +117325-117341 +117342-117366 +117367-117378 +117379-117404 +117405-117445 +117446-117470 +117471-117490 +117491-117534 +117535-117556 +117557-117589 +117590-117600 +117601-117608 +117609-117669 +117670-117681 +117682-117737 +117738-117776 +117777-117802 +117803-117816 +117817-117823 +117824-117830 +117831-117842 +117843-117863 +117864-117910 +117911-117918 +117919-118010 +118011-118050 +118051-118096 +118097-118122 +118123-118130 +118131-118143 +118144-118150 +118151-118198 +118199-118212 +118213-118227 +118228-118246 +118247-118269 +118270-118294 +118295-118310 +118311-118343 +118344-118388 +118389-118395 +118396-118403 +118404-118441 +118442-118469 +118470-118476 +118477-118489 +118490-118508 +118509-118535 +118536-118544 +118545-118552 +118553-118602 +118603-118657 +118658-118667 +118668-118694 +118695-118722 +118723-118734 +118735-118761 +118762-118776 +118777-118783 +118784-118809 +118810-118830 +118831-118840 +118841-118853 +118854-118864 +118865-118881 +118882-118893 +118894-118902 +118903-118908 +118909-118923 +118924-118950 +118951-118965 +118966-118993 +118994-119020 +119021-119038 +119039-119059 +119060-119072 +119073-119090 +119091-119117 +119118-119142 +119143-119150 +119151-119169 +119170-119178 +119179-119182 +119183-119214 +119215-119220 +119221-119231 +119232-119247 +119248-119263 +119264-119284 +119285-119320 +119321-119335 +119336-119352 +119353-119367 +119368-119376 +119377-119389 +119390-119393 +119394-119439 +119440-119446 +119447-119457 +119458-119469 +119470-119503 +119504-119526 +119527-119576 +119577-119594 +119595-119602 +119603-119622 +119623-119633 +119634-119636 +119637-119642 +119643-119649 +119650-119664 +119665-119685 +119686-119707 +119708-119730 +119731-119754 +119755-119804 +119805-119824 +119825-119851 +119852-119862 +119863-119874 +119875-119915 +119916-119920 +119921-119938 +119939-119961 +119962-119977 +119978-119993 +119994-120000 +120001-120003 +120004-120014 +120015-120027 +120028-120043 +120044-120046 +120047-120049 +120050-120074 +120075-120094 +120095-120105 +120106-120111 +120112-120125 +120126-120137 +120138-120158 +120159-120173 +120174-120184 +120185-120194 +120195-120212 +120213-120225 +120226-120253 +120254-120267 +120268-120276 +120277-120329 +120330-120344 +120345-120357 +120358-120366 +120367-120372 +120373-120377 +120378-120392 +120393-120410 +120411-120424 +120425-120443 +120444-120449 +120450-120458 +120459-120478 +120479-120500 +120501-120523 +120524-120532 +120533-120550 +120551-120557 +120558-120567 +120568-120577 +120578-120589 +120590-120594 +120595-120617 +120618-120631 +120632-120635 +120636-120650 +120651-120657 +120658-120676 +120677-120716 +120717-120741 +120742-120758 +120759-120783 +120784-120798 +120799-120853 +120854-120857 +120858-120877 +120878-120882 +120883-120893 +120894-120903 +120904-120919 +120920-120930 +120931-120943 +120944-120952 +120953-120961 +120962-120972 +120973-120983 +120984-120997 +120998-121003 +121004-121037 +121038-121049 +121050-121058 +121059-121075 +121076-121082 +121083-121084 +121085-121090 +121091-121104 +121105-121120 +121121-121155 +121156-121166 +121167-121183 +121184-121199 +121200-121210 +121211-121214 +121215-121229 +121230-121250 +121251-121271 +121272-121281 +121282-121287 +121288-121318 +121319-121348 +121349-121366 +121367-121374 +121375-121381 +121382-121394 +121395-121404 +121405-121409 +121410-121415 +121416-121426 +121427-121444 +121445-121455 +121456-121466 +121467-121485 +121486-121494 +121495-121501 +121502-121513 +121514-121517 +121518-121524 +121525-121527 +121528-121534 +121535-121547 +121548-121559 +121560-121571 +121572-121587 +121588-121591 +121592-121601 +121602-121613 +121614-121619 +121620-121626 +121627-121631 +121632-121642 +121643-121648 +121649-121652 +121653-121665 +121666-121675 +121676-121685 +121686-121693 +121694-121747 +121748-121754 +121755-121759 +121760-121769 +121770-121781 +121782-121791 +121792-121813 +121814-121817 +121818-121843 +121844-121849 +121850-121856 +121857-121860 +121861-121863 +121864-121871 +121872-121888 +121889-121901 +121902-121909 +121910-121916 +121917-121932 +121933-121936 +121937-121952 +121953-121969 +121970-121984 +121985-121989 +121990-121992 +121993-122012 +122013-122025 +122026-122031 +122032-122042 +122043-122047 +122048-122069 +122070-122084 +122085-122116 +122117-122143 +122144-122148 +122149-122201 +122202-122237 +122238-122260 +122261-122296 +122297-122324 +122325-122343 +122344-122375 +122376-122454 +122455-122484 +122485-122511 +122512-122520 +122521-122554 +122555-122587 +122588-122607 +122608-122613 +122614-122640 +122641-122679 +122680-122694 +122695-122720 +122721-122743 +122744-122757 +122758-122772 +122773-122783 +122784-122801 +122802-122813 +122814-122831 +122832-122849 +122850-122860 +122861-122872 +122873-122892 +122893-122896 +122897-122912 +122913-122940 +122941-122974 +122975-123008 +123009-123033 +123034-123061 +123062-123093 +123094-123110 +123111-123120 +123121-123127 +123128-123179 +123180-123212 +123213-123244 +123245-123280 +123281-123310 +123311-123353 +123354-123370 +123371-123375 +123376-123381 +123382-123394 +123395-123399 +123400-123451 +123452-123484 +123485-123502 +123503-123542 +123543-123556 +123557-123568 +123569-123585 +123586-123605 +123606-123632 +123633-123642 +123643-123646 +123647-123661 +123662-123686 +123687-123688 +123689-123716 +123717-123747 +123748-123770 +123771-123781 +123782-123786 +123787-123792 +123793-123813 +123814-123827 +123828-123875 +123876-123925 +123926-123944 +123945-123960 +123961-123971 +123972-123978 +123979-123996 +123997-124011 +124012-124043 +124044-124057 +124058-124079 +124080-124123 +124124-124161 +124162-124177 +124178-124204 +124205-124217 +124218-124224 +124225-124236 +124237-124333 +124334-124354 +124355-124378 +124379-124430 +124431-124441 +124442-124456 +124457-124480 +124481-124486 +124487-124513 +124514-124532 +124533-124550 +124551-124584 +124585-124623 +124624-124652 +124653-124674 +124675-124695 +124696-124717 +124718-124741 +124742-124772 +124773-124787 +124788-124852 +124853-124868 +124869-124881 +124882-124890 +124891-124913 +124914-124936 +124937-124950 +124951-124966 +124967-124976 +124977-125000 +125001-125018 +125019-125046 +125047-125061 +125062-125081 +125082-125097 +125098-125105 +125106-125117 +125118-125137 +125138-125149 +125150-125169 +125170-125184 +125185-125191 +125192-125204 +125205-125217 +125218-125226 +125227-125250 +125251-125267 +125268-125282 +125283-125309 +125310-125321 +125322-125329 +125330-125336 +125337-125343 +125344-125351 +125352-125369 +125370-125378 +125379-125391 +125392-125421 +125422-125440 +125441-125461 +125462-125469 +125470-125478 +125479-125487 +125488-125497 +125498-125518 +125519-125532 +125533-125543 +125544-125552 +125553-125560 +125561-125568 +125569-125586 +125587-125599 +125600-125606 +125607-125625 +125626-125648 +125649-125668 +125669-125684 +125685-125695 +125696-125697 +125698-125708 +125709-125718 +125719-125730 +125731-125745 +125746-125760 +125761-125775 +125776-125782 +125783-125791 +125792-125795 +125796-125805 +125806-125819 +125820-125832 +125833-125847 +125848-125856 +125857-125869 +125870-125898 +125899-125910 +125911-125915 +125916-125927 +125928-125935 +125936-125949 +125950-125956 +125957-125976 +125977-125989 +125990-125998 +125999-126028 +126029-126040 +126041-126072 +126073-126101 +126102-126123 +126124-126136 +126137-126150 +126151-126171 +126172-126178 +126179-126204 +126205-126221 +126222-126241 +126242-126246 +126247-126257 +126258-126262 +126263-126277 +126278-126289 +126290-126311 +126312-126323 +126324-126348 +126349-126374 +126375-126386 +126387-126390 +126391-126406 +126407-126424 +126425-126438 +126439-126458 +126459-126471 +126472-126491 +126492-126517 +126518-126544 +126545-126551 +126552-126565 +126566-126582 +126583-126599 +126600-126622 +126623-126640 +126641-126652 +126653-126669 +126670-126681 +126682-126698 +126699-126708 +126709-126721 +126722-126733 +126734-126753 +126754-126778 +126779-126790 +126791-126812 +126813-126833 +126834-126840 +126841-126851 +126852-126869 +126870-126888 +126889-126906 +126907-126927 +126928-126931 +126932-126937 +126938-126947 +126948-126971 +126972-126985 +126986-127001 +127002-127012 +127013-127020 +127021-127026 +127027-127064 +127065-127085 +127086-127102 +127103-127121 +127122-127132 +127133-127144 +127145-127159 +127160-127166 +127167-127177 +127178-127191 +127192-127204 +127205-127225 +127226-127236 +127237-127262 +127263-127271 +127272-127281 +127282-127294 +127295-127309 +127310-127323 +127324-127349 +127350-127359 +127360-127370 +127371-127374 +127375-127382 +127383-127396 +127397-127415 +127416-127423 +127424-127429 +127430-127435 +127436-127444 +127445-127456 +127457-127469 +127470-127479 +127480-127481 +127482-127485 +127486-127490 +127491-127507 +127508-127514 +127515-127537 +127538-127567 +127568-127634 +127635-127648 +127649-127672 +127673-127690 +127691-127711 +127712-127751 +127752-127795 +127796-127814 +127815-127830 +127831-127846 +127847-127854 +127855-127883 +127884-127905 +127906-127947 +127948-127988 +127989-128008 +128009-128016 +128017-128058 +128059-128094 +128095-128117 +128118-128119 +128120-128140 +128141-128172 +128173-128218 +128219-128227 +128228-128250 +128251-128318 +128319-128329 +128330-128339 +128340-128370 +128371-128383 +128384-128416 +128417-128423 +128424-128443 +128444-128473 +128474-128485 +128486-128496 +128497-128507 +128508-128524 +128525-128536 +128537-128546 +128547-128563 +128564-128571 +128572-128583 +128584-128609 +128610-128614 +128615-128630 +128631-128641 +128642-128651 +128652-128661 +128662-128669 +128670-128679 +128680-128717 +128718-128743 +128744-128753 +128754-128755 +128756-128771 +128772-128781 +128782-128808 +128809-128816 +128817-128836 +128837-128862 +128863-128886 +128887-128900 +128901-128920 +128921-128927 +128928-128948 +128949-128977 +128978-128985 +128986-129028 +129029-129038 +129039-129046 +129047-129059 +129060-129071 +129072-129090 +129091-129100 +129101-129116 +129117-129137 +129138-129170 +129171-129180 +129181-129188 +129189-129209 +129210-129239 +129240-129256 +129257-129273 +129274-129301 +129302-129303 +129304-129312 +129313-129364 +129365-129374 +129375-129382 +129383-129398 +129399-129408 +129409-129413 +129414-129429 +129430-129488 +129489-129495 +129496-129499 +129500-129506 +129507-129527 +129528-129551 +129552-129561 +129562-129594 +129595-129598 +129599-129627 +129628-129653 +129654-129663 +129664-129687 +129688-129703 +129704-129732 +129733-129749 +129750-129773 +129774-129854 +129855-129872 +129873-129890 +129891-129910 +129911-129923 +129924-129932 +129933-129952 +129953-129989 +129990-130001 +130002-130032 +130033-130080 +130081-130130 +130131-130181 +130182-130187 +130188-130193 +130194-130216 +130217-130239 +130240-130252 +130253-130279 +130280-130292 +130293-130309 +130310-130335 +130336-130349 +130350-130370 +130371-130394 +130395-130419 +130420-130445 +130446-130475 +130476-130538 +130539-130571 +130572-130610 +130611-130643 +130644-130693 +130694-130709 +130710-130771 +130772-130809 +130810-130827 +130828-130886 +130887-130906 +130907-130913 +130914-130938 +130939-130965 +130966-131008 +131009-131022 +131023-131037 +131038-131070 +131071-131087 +131088-131106 +131107-131115 +131116-131128 +131129-131132 +131133-131145 +131146-131162 +131163-131167 +131168-131177 +131178-131203 +131204-131208 +131209-131231 +131232-131239 +131240-131257 +131258-131262 +131263-131295 +131296-131327 +131328-131332 +131333-131351 +131352-131379 +131380-131399 +131400-131429 +131430-131441 +131442-131451 +131452-131475 +131476-131534 +131535-131554 +131555-131562 +131563-131573 +131574-131578 +131579-131585 +131586-131590 +131591-131626 +131627-131648 +131649-131657 +131658-131661 +131662-131681 +131682-131700 +131701-131725 +131726-131740 +131741-131752 +131753-131824 +131825-131864 +131865-131887 +131888-131897 +131898-131905 +131906-131922 +131923-132005 +132006-132039 +132040-132050 +132051-132071 +132072-132092 +132093-132100 +132101-132116 +132117-132138 +132139-132164 +132165-132178 +132179-132194 +132195-132211 +132212-132221 +132222-132257 +132258-132280 +132281-132303 +132304-132330 +132331-132356 +132357-132385 +132386-132396 +132397-132410 +132411-132445 +132446-132450 +132451-132457 +132458-132462 +132463-132489 +132490-132534 +132535-132578 +132579-132599 +132600-132611 +132612-132647 +132648-132689 +132690-132706 +132707-132719 +132720-132732 +132733-132755 +132756-132772 +132773-132791 +132792-132823 +132824-132867 +132868-132891 +132892-132900 +132901-132920 +132921-132937 +132938-132970 +132971-132988 +132989-133013 +133014-133041 +133042-133048 +133049-133075 +133076-133096 +133097-133111 +133112-133128 +133129-133161 +133162-133177 +133178-133200 +133201-133224 +133225-133251 +133252-133256 +133257-133263 +133264-133273 +133274-133282 +133283-133300 +133301-133310 +133311-133332 +133333-133350 +133351-133385 +133386-133413 +133414-133472 +133473-133476 +133477-133488 +133489-133495 +133496-133528 +133529-133555 +133556-133570 +133571-133588 +133589-133598 +133599-133606 +133607-133625 +133626-133627 +133628-133686 +133687-133710 +133711-133773 +133774-133807 +133808-133823 +133824-133839 +133840-133856 +133857-133884 +133885-133917 +133918-133934 +133935-133950 +133951-133993 +133994-134020 +134021-134042 +134043-134067 +134068-134102 +134103-134128 +134129-134138 +134139-134165 +134166-134204 +134205-134229 +134230-134259 +134260-134283 +134284-134295 +134296-134316 +134317-134326 +134327-134340 +134341-134355 +134356-134358 +134359-134388 +134389-134390 +134391-134407 +134408-134417 +134418-134425 +134426-134451 +134452-134463 +134464-134499 +134500-134512 +134513-134527 +134528-134551 +134552-134578 +134579-134582 +134583-134599 +134600-134609 +134610-134619 +134620-134631 +134632-134656 +134657-134671 +134672-134690 +134691-134698 +134699-134710 +134711-134728 +134729-134778 +134779-134785 +134786-134801 +134802-134852 +134853-134869 +134870-134875 +134876-134883 +134884-134905 +134906-134923 +134924-134953 +134954-134959 +134960-134971 +134972-134975 +134976-134992 +134993-135013 +135014-135036 +135037-135049 +135050-135075 +135076-135094 +135095-135123 +135124-135152 +135153-135170 +135171-135190 +135191-135250 +135251-135293 +135294-135307 +135308-135315 +135316-135344 +135345-135370 +135371-135421 +135422-135506 +135507-135533 +135534-135582 +135583-135616 +135617-135654 +135655-135676 +135677-135703 +135704-135791 +135792-135846 +135847-135860 +135861-135883 +135884-135906 +135907-135932 +135933-135952 +135953-135968 +135969-135982 +135983-135992 +135993-136000 +136001-136029 +136030-136053 +136054-136089 +136090-136105 +136106-136126 +136127-136141 +136142-136158 +136159-136217 +136218-136245 +136246-136275 +136276-136288 +136289-136315 +136316-136334 +136335-136376 +136377-136383 +136384-136432 +136433-136441 +136442-136452 +136453-136457 +136458-136468 +136469-136491 +136492-136534 +136535-136552 +136553-136561 +136562-136592 +136593-136617 +136618-136633 +136634-136641 +136642-136655 +136656-136683 +136684-136695 +136696-136705 +136706-136722 +136723-136744 +136745-136766 +136767-136821 +136822-136825 +136826-136836 +136837-136847 +136848-136851 +136852-136862 +136863-136874 +136875-136887 +136888-136923 +136924-136956 +136957-136986 +136987-136996 +136997-137020 +137021-137039 +137040-137057 +137058-137078 +137079-137090 +137091-137100 +137101-137111 +137112-137125 +137126-137140 +137141-137150 +137151-137188 +137189-137203 +137204-137213 +137214-137232 +137233-137259 +137260-137267 +137268-137278 +137279-137291 +137292-137302 +137303-137327 +137328-137345 +137346-137377 +137378-137383 +137384-137413 +137414-137441 +137442-137472 +137473-137476 +137477-137486 +137487-137493 +137494-137509 +137510-137534 +137535-137551 +137552-137571 +137572-137587 +137588-137603 +137604-137626 +137627-137647 +137648-137659 +137660-137673 +137674-137681 +137682-137686 +137687-137696 +137697-137708 +137709-137726 +137727-137761 +137762-137768 +137769-137772 +137773-137779 +1-8 +9-26 +27-47 +48-62 +63-83 +84-99 +100-114 +115-129 +130-144 +145-159 +160-172 +173-186 +187-201 +202-216 +217-231 +232-246 +247-275 +276-301 +302-317 +318-348 +349-367 +368-381 +382-403 +404-422 +423-436 +437-456 +457-476 +477-487 +488-503 +504-517 +518-541 +542-555 +556-577 +578-602 +603-610 +611-640 +641-656 +657-696 +697-711 +712-734 +735-771 +772-780 +781-800 +801-814 +815-836 +837-851 +852-876 +877-893 +894-908 +909-916 +917-940 +941-967 +968-982 +983-994 +995-1017 +1018-1023 +1024-1048 +1049-1070 +1071-1101 +1102-1127 +1128-1144 +1145-1160 +1161-1179 +1180-1203 +1204-1220 +1221-1234 +1235-1243 +1244-1261 +1262-1281 +1282-1298 +1299-1331 +1332-1343 +1344-1364 +1365-1375 +1376-1393 +1394-1405 +1406-1414 +1415-1429 +1430-1438 +1439-1451 +1452-1471 +1472-1486 +1487-1513 +1514-1524 +1525-1532 +1533-1563 +1564-1575 +1576-1602 +1603-1631 +1632-1649 +1650-1665 +1666-1673 +1674-1685 +1686-1691 +1692-1699 +1700-1709 +1710-1715 +1716-1725 +1726-1733 +1734-1745 +1746-1761 +1762-1780 +1781-1806 +1807-1819 +1820-1839 +1840-1862 +1863-1877 +1878-1904 +1905-1940 +1941-1963 +1964-1978 +1979-2017 +2018-2036 +2037-2058 +2059-2089 +2090-2102 +2103-2107 +2108-2127 +2128-2160 +2161-2192 +2193-2203 +2204-2226 +2227-2241 +2242-2257 +2258-2276 +2277-2291 +2292-2308 +2309-2318 +2319-2340 +2341-2355 +2356-2365 +2366-2377 +2378-2389 +2390-2403 +2404-2427 +2428-2443 +2444-2460 +2461-2472 +2473-2500 +2501-2531 +2532-2545 +2546-2564 +2565-2596 +2597-2629 +2630-2644 +2645-2661 +2662-2675 +2676-2689 +2690-2697 +2698-2710 +2711-2722 +2723-2738 +2739-2752 +2753-2778 +2779-2790 +2791-2815 +2816-2833 +2834-2852 +2853-2864 +2865-2884 +2885-2909 +2910-2936 +2937-2968 +2969-2996 +2997-3009 +3010-3025 +3026-3040 +3041-3062 +3063-3074 +3075-3091 +3092-3105 +3106-3122 +3123-3127 +3128-3140 +3141-3161 +3162-3183 +3184-3204 +3205-3230 +3231-3241 +3242-3254 +3255-3270 +3271-3278 +3279-3304 +3305-3327 +3328-3352 +3353-3371 +3372-3387 +3388-3402 +3403-3416 +3417-3429 +3430-3440 +3441-3447 +3448-3472 +3473-3499 +3500-3514 +3515-3536 +3537-3561 +3562-3584 +3585-3609 +3610-3625 +3626-3638 +3639-3648 +3649-3661 +3662-3676 +3677-3700 +3701-3710 +3711-3723 +3724-3729 +3730-3753 +3754-3783 +3784-3803 +3804-3826 +3827-3846 +3847-3865 +3866-3880 +3881-3895 +3896-3913 +3914-3931 +3932-3943 +3944-3955 +3956-3981 +3982-3997 +3998-4012 +4013-4023 +4024-4041 +4042-4049 +4050-4068 +4069-4085 +4086-4115 +4116-4132 +4133-4141 +4142-4157 +4158-4185 +4186-4200 +4201-4220 +4221-4231 +4232-4255 +4256-4265 +4266-4281 +4282-4295 +4296-4325 +4326-4332 +4333-4347 +4348-4369 +4370-4390 +4391-4409 +4410-4423 +4424-4440 +4441-4460 +4461-4491 +4492-4512 +4513-4543 +4544-4570 +4571-4580 +4581-4594 +4595-4605 +4606-4628 +4629-4645 +4646-4657 +4658-4671 +4672-4681 +4682-4696 +4697-4719 +4720-4731 +4732-4745 +4746-4755 +4756-4763 +4764-4781 +4782-4793 +4794-4821 +4822-4838 +4839-4851 +4852-4864 +4865-4885 +4886-4913 +4914-4927 +4928-4938 +4939-4958 +4959-4968 +4969-4978 +4979-4990 +4991-5001 +5002-5019 +5020-5038 +5039-5045 +5046-5069 +5070-5094 +5095-5110 +5111-5130 +5131-5147 +5148-5162 +5163-5181 +5182-5197 +5198-5214 +5215-5230 +5231-5259 +5260-5271 +5272-5297 +5298-5313 +5314-5333 +5334-5359 +5360-5377 +5378-5387 +5388-5394 +5395-5415 +5416-5434 +5435-5449 +5450-5469 +5470-5476 +5477-5499 +5500-5514 +5515-5531 +5532-5544 +5545-5563 +5564-5586 +5587-5607 +5608-5623 +5624-5632 +5633-5645 +5646-5661 +5662-5670 +5671-5691 +5692-5709 +5710-5720 +5721-5741 +5742-5764 +5765-5782 +5783-5792 +5793-5802 +5803-5806 +5807-5823 +5824-5833 +5834-5844 +5845-5871 +5872-5886 +5887-5912 +5913-5925 +5926-5951 +5952-5964 +5965-5992 +5993-6001 +6002-6033 +6034-6044 +6045-6067 +6068-6078 +6079-6101 +6102-6118 +6119-6133 +6134-6161 +6162-6181 +6182-6190 +6191-6205 +6206-6214 +6215-6222 +6223-6240 +6241-6266 +6267-6277 +6278-6293 +6294-6304 +6305-6318 +6319-6326 +6327-6335 +6336-6360 +6361-6373 +6374-6389 +6390-6395 +6396-6411 +6412-6424 +6425-6442 +6443-6465 +6466-6481 +6482-6501 +6502-6518 +6519-6545 +6546-6560 +6561-6578 +6579-6611 +6612-6638 +6639-6655 +6656-6674 +6675-6692 +6693-6704 +6705-6719 +6720-6742 +6743-6772 +6773-6796 +6797-6825 +6826-6843 +6844-6860 +6861-6893 +6894-6910 +6911-6927 +6928-6945 +6946-6963 +6964-6983 +6984-6996 +6997-7016 +7017-7029 +7030-7046 +7047-7066 +7067-7077 +7078-7090 +7091-7110 +7111-7114 +7115-7126 +7127-7144 +7145-7161 +7162-7177 +7178-7198 +7199-7233 +7234-7246 +7247-7269 +7270-7276 +7277-7303 +7304-7321 +7322-7340 +7341-7368 +7369-7397 +7398-7415 +7416-7434 +7435-7447 +7448-7468 +7469-7486 +7487-7500 +7501-7535 +7536-7556 +7557-7585 +7586-7608 +7609-7623 +7624-7641 +7642-7664 +7665-7678 +7679-7702 +7703-7722 +7723-7737 +7738-7759 +7760-7776 +7777-7793 +7794-7823 +7824-7834 +7835-7847 +7848-7864 +7865-7883 +7884-7901 +7902-7918 +7919-7924 +7925-7950 +7951-7961 +7962-7986 +7987-8010 +8011-8024 +8025-8047 +8048-8057 +8058-8068 +8069-8091 +8092-8110 +8111-8120 +8121-8132 +8133-8149 +8150-8158 +8159-8176 +8177-8188 +8189-8195 +8196-8211 +8212-8227 +8228-8250 +8251-8264 +8265-8293 +8294-8306 +8307-8320 +8321-8327 +8328-8360 +8361-8374 +8375-8385 +8386-8405 +8406-8422 +8423-8441 +8442-8453 +8454-8472 +8473-8484 +8485-8502 +8503-8521 +8522-8534 +8535-8550 +8551-8559 +8560-8571 +8572-8579 +8580-8600 +8601-8615 +8616-8625 +8626-8643 +8644-8661 +8662-8679 +8680-8696 +8697-8716 +8717-8723 +8724-8738 +8739-8746 +8747-8755 +8756-8774 +8775-8788 +8789-8803 +8804-8818 +8819-8828 +8829-8836 +8837-8853 +8854-8867 +8868-8880 +8881-8895 +8896-8907 +8908-8928 +8929-8948 +8949-8963 +8964-8972 +8973-8988 +8989-9009 +9010-9034 +9035-9052 +9053-9077 +9078-9097 +9098-9132 +9133-9147 +9148-9162 +9163-9170 +9171-9189 +9190-9203 +9204-9213 +9214-9227 +9228-9242 +9243-9255 +9256-9278 +9279-9298 +9299-9308 +9309-9323 +9324-9333 +9334-9347 +9348-9360 +9361-9370 +9371-9388 +9389-9407 +9408-9431 +9432-9449 +9450-9457 +9458-9472 +9473-9497 +9498-9520 +9521-9552 +9553-9564 +9565-9596 +9597-9613 +9614-9636 +9637-9659 +9660-9680 +9681-9702 +9703-9727 +9728-9753 +9754-9777 +9778-9798 +9799-9808 +9809-9835 +9836-9862 +9863-9873 +9874-9885 +9886-9897 +9898-9921 +9922-9937 +9938-9947 +9948-9974 +9975-9985 +9986-9995 +9996-10018 +10019-10029 +10030-10052 +10053-10071 +10072-10087 +10088-10118 +10119-10137 +10138-10148 +10149-10168 +10169-10202 +10203-10216 +10217-10247 +10248-10266 +10267-10274 +10275-10295 +10296-10312 +10313-10325 +10326-10354 +10355-10374 +10375-10414 +10415-10445 +10446-10472 +10473-10499 +10500-10520 +10521-10537 +10538-10558 +10559-10579 +10580-10600 +10601-10624 +10625-10652 +10653-10668 +10669-10687 +10688-10700 +10701-10717 +10718-10727 +10728-10749 +10750-10763 +10764-10777 +10778-10801 +10802-10815 +10816-10829 +10830-10847 +10848-10866 +10867-10878 +10879-10894 +10895-10914 +10915-10937 +10938-10946 +10947-10963 +10964-10979 +10980-11002 +11003-11017 +11018-11028 +11029-11048 +11049-11065 +11066-11082 +11083-11095 +11096-11127 +11128-11143 +11144-11165 +11166-11172 +11173-11186 +11187-11210 +11211-11226 +11227-11239 +11240-11249 +11250-11274 +11275-11287 +11288-11306 +11307-11324 +11325-11335 +11336-11351 +11352-11368 +11369-11406 +11407-11433 +11434-11441 +11442-11460 +11461-11475 +11476-11487 +11488-11503 +11504-11516 +11517-11534 +11535-11548 +11549-11573 +11574-11583 +11584-11598 +11599-11604 +11605-11625 +11626-11639 +11640-11653 +11654-11672 +11673-11681 +11682-11698 +11699-11717 +11718-11734 +11735-11752 +11753-11780 +11781-11800 +11801-11828 +11829-11837 +11838-11856 +11857-11872 +11873-11883 +11884-11901 +11902-11910 +11911-11929 +11930-11946 +11947-11958 +11959-11966 +11967-11980 +11981-11999 +12000-12020 +12021-12037 +12038-12048 +12049-12068 +12069-12079 +12080-12095 +12096-12118 +12119-12143 +12144-12156 +12157-12170 +12171-12199 +12200-12215 +12216-12227 +12228-12253 +12254-12276 +12277-12288 +12289-12295 +12296-12331 +12332-12342 +12343-12376 +12377-12386 +12387-12415 +12416-12438 +12439-12467 +12468-12482 +12483-12502 +12503-12521 +12522-12530 +12531-12545 +12546-12577 +12578-12606 +12607-12633 +12634-12651 +12652-12667 +12668-12678 +12679-12691 +12692-12712 +12713-12721 +12722-12733 +12734-12754 +12755-12783 +12784-12802 +12803-12817 +12818-12832 +12833-12844 +12845-12854 +12855-12867 +12868-12882 +12883-12909 +12910-12925 +12926-12935 +12936-12953 +12954-12969 +12970-12984 +12985-13005 +13006-13019 +13020-13033 +13034-13060 +13061-13067 +13068-13078 +13079-13113 +13114-13125 +13126-13137 +13138-13148 +13149-13158 +13159-13174 +13175-13181 +13182-13195 +13196-13218 +13219-13240 +13241-13250 +13251-13256 +13257-13269 +13270-13285 +13286-13300 +13301-13315 +13316-13335 +13336-13344 +13345-13356 +13357-13364 +13365-13371 +13372-13397 +13398-13404 +13405-13413 +13414-13425 +13426-13433 +13434-13447 +13448-13458 +13459-13477 +13478-13487 +13488-13503 +13504-13513 +13514-13524 +13525-13545 +13546-13565 +13566-13585 +13586-13598 +13599-13610 +13611-13626 +13627-13642 +13643-13652 +13653-13659 +13660-13669 +13670-13694 +13695-13719 +13720-13743 +13744-13759 +13760-13779 +13780-13792 +13793-13807 +13808-13821 +13822-13839 +13840-13876 +13877-13886 +13887-13908 +13909-13923 +13924-13946 +13947-13962 +13963-13980 +13981-14000 +14001-14010 +14011-14018 +14019-14028 +14029-14059 +14060-14090 +14091-14100 +14101-14131 +14132-14137 +14138-14155 +14156-14174 +14175-14196 +14197-14227 +14228-14238 +14239-14253 +14254-14271 +14272-14287 +14288-14292 +14293-14311 +14312-14321 +14322-14328 +14329-14339 +14340-14346 +14347-14367 +14368-14387 +14388-14396 +14397-14408 +14409-14420 +14421-14433 +14434-14444 +14445-14462 +14463-14482 +14483-14495 +14496-14513 +14514-14516 +14517-14533 +14534-14552 +14553-14561 +14562-14593 +14594-14629 +14630-14652 +14653-14675 +14676-14688 +14689-14703 +14704-14716 +14717-14738 +14739-14752 +14753-14777 +14778-14796 +14797-14807 +14808-14817 +14818-14828 +14829-14851 +14852-14867 +14868-14890 +14891-14902 +14903-14913 +14914-14928 +14929-14941 +14942-14958 +14959-14978 +14979-14996 +14997-15005 +15006-15016 +15017-15028 +15029-15036 +15037-15047 +15048-15058 +15059-15075 +15076-15096 +15097-15116 +15117-15128 +15129-15138 +15139-15148 +15149-15162 +15163-15182 +15183-15195 +15196-15202 +15203-15217 +15218-15232 +15233-15254 +15255-15279 +15280-15296 +15297-15321 +15322-15346 +15347-15360 +15361-15382 +15383-15400 +15401-15413 +15414-15430 +15431-15449 +15450-15472 +15473-15493 +15494-15506 +15507-15528 +15529-15543 +15544-15558 +15559-15575 +15576-15586 +15587-15598 +15599-15619 +15620-15642 +15643-15654 +15655-15673 +15674-15698 +15699-15716 +15717-15728 +15729-15742 +15743-15759 +15760-15776 +15777-15785 +15786-15798 +15799-15809 +15810-15823 +15824-15834 +15835-15842 +15843-15859 +15860-15871 +15872-15886 +15887-15907 +15908-15919 +15920-15934 +15935-15942 +15943-15960 +15961-15990 +15991-16003 +16004-16011 +16012-16024 +16025-16036 +16037-16052 +16053-16083 +16084-16098 +16099-16120 +16121-16132 +16133-16147 +16148-16177 +16178-16185 +16186-16210 +16211-16220 +16221-16234 +16235-16252 +16253-16272 +16273-16293 +16294-16306 +16307-16322 +16323-16351 +16352-16372 +16373-16388 +16389-16409 +16410-16421 +16422-16434 +16435-16459 +16460-16466 +16467-16492 +16493-16507 +16508-16518 +16519-16538 +16539-16561 +16562-16582 +16583-16599 +16600-16608 +16609-16638 +16639-16655 +16656-16672 +16673-16694 +16695-16709 +16710-16719 +16720-16733 +16734-16745 +16746-16773 +16774-16801 +16802-16820 +16821-16830 +16831-16842 +16843-16851 +16852-16872 +16873-16882 +16883-16900 +16901-16910 +16911-16933 +16934-16947 +16948-16967 +16968-16986 +16987-16995 +16996-17012 +17013-17025 +17026-17036 +17037-17054 +17055-17068 +17069-17078 +17079-17101 +17102-17113 +17114-17138 +17139-17150 +17151-17160 +17161-17173 +17174-17186 +17187-17193 +17194-17210 +17211-17217 +17218-17244 +17245-17261 +17262-17279 +17280-17293 +17294-17306 +17307-17334 +17335-17350 +17351-17362 +17363-17379 +17380-17386 +17387-17413 +17414-17426 +17427-17446 +17447-17460 +17461-17471 +17472-17483 +17484-17492 +17493-17497 +17498-17514 +17515-17527 +17528-17536 +17537-17559 +17560-17569 +17570-17587 +17588-17602 +17603-17614 +17615-17627 +17628-17652 +17653-17663 +17664-17680 +17681-17691 +17692-17701 +17702-17722 +17723-17733 +17734-17750 +17751-17774 +17775-17791 +17792-17811 +17812-17827 +17828-17841 +17842-17852 +17853-17874 +17875-17888 +17889-17904 +17905-17918 +17919-17950 +17951-17960 +17961-17972 +17973-17991 +17992-18011 +18012-18025 +18026-18037 +18038-18054 +18055-18067 +18068-18092 +18093-18108 +18109-18125 +18126-18145 +18146-18162 +18163-18175 +18176-18187 +18188-18200 +18201-18218 +18219-18234 +18235-18241 +18242-18258 +18259-18278 +18279-18299 +18300-18306 +18307-18326 +18327-18340 +18341-18353 +18354-18377 +18378-18397 +18398-18417 +18418-18427 +18428-18446 +18447-18464 +18465-18480 +18481-18489 +18490-18510 +18511-18527 +18528-18545 +18546-18566 +18567-18580 +18581-18587 +18588-18608 +18609-18627 +18628-18640 +18641-18658 +18659-18671 +18672-18689 +18690-18699 +18700-18713 +18714-18736 +18737-18749 +18750-18766 +18767-18778 +18779-18793 +18794-18810 +18811-18819 +18820-18839 +18840-18852 +18853-18860 +18861-18870 +18871-18887 +18888-18902 +18903-18919 +18920-18931 +18932-18940 +18941-18946 +18947-18971 +18972-19000 +19001-19012 +19013-19028 +19029-19037 +19038-19059 +19060-19074 +19075-19087 +19088-19101 +19102-19123 +19124-19143 +19144-19161 +19162-19174 +19175-19196 +19197-19212 +19213-19232 +19233-19258 +19259-19282 +19283-19304 +19305-19335 +19336-19364 +19365-19380 +19381-19404 +19405-19433 +19434-19453 +19454-19466 +19467-19484 +19485-19515 +19516-19531 +19532-19541 +19542-19554 +19555-19565 +19566-19578 +19579-19595 +19596-19620 +19621-19635 +19636-19657 +19658-19681 +19682-19697 +19698-19709 +19710-19729 +19730-19738 +19739-19752 +19753-19764 +19765-19770 +19771-19780 +19781-19800 +19801-19821 +19822-19828 +19829-19844 +19845-19856 +19857-19877 +19878-19889 +19890-19901 +19902-19913 +19914-19928 +19929-19954 +19955-19972 +19973-19992 +19993-19997 +19998-20014 +20015-20037 +20038-20049 +20050-20065 +20066-20080 +20081-20113 +20114-20126 +20127-20132 +20133-20150 +20151-20170 +20171-20183 +20184-20200 +20201-20224 +20225-20231 +20232-20246 +20247-20266 +20267-20284 +20285-20298 +20299-20303 +20304-20329 +20330-20348 +20349-20367 +20368-20381 +20382-20404 +20405-20430 +20431-20453 +20454-20470 +20471-20476 +20477-20491 +20492-20506 +20507-20522 +20523-20539 +20540-20553 +20554-20566 +20567-20580 +20581-20598 +20599-20623 +20624-20634 +20635-20648 +20649-20661 +20662-20678 +20679-20695 +20696-20717 +20718-20736 +20737-20747 +20748-20768 +20769-20780 +20781-20796 +20797-20811 +20812-20834 +20835-20853 +20854-20863 +20864-20885 +20886-20896 +20897-20911 +20912-20922 +20923-20932 +20933-20945 +20946-20975 +20976-20996 +20997-21015 +21016-21028 +21029-21037 +21038-21051 +21052-21077 +21078-21093 +21094-21114 +21115-21129 +21130-21150 +21151-21162 +21163-21170 +21171-21191 +21192-21205 +21206-21215 +21216-21232 +21233-21254 +21255-21270 +21271-21276 +21277-21296 +21297-21316 +21317-21334 +21335-21348 +21349-21366 +21367-21381 +21382-21395 +21396-21420 +21421-21438 +21439-21454 +21455-21467 +21468-21482 +21483-21515 +21516-21546 +21547-21572 +21573-21587 +21588-21599 +21600-21617 +21618-21638 +21639-21646 +21647-21660 +21661-21683 +21684-21688 +21689-21699 +21700-21727 +21728-21742 +21743-21753 +21754-21777 +21778-21793 +21794-21805 +21806-21829 +21830-21851 +21852-21880 +21881-21894 +21895-21910 +21911-21932 +21933-21947 +21948-21958 +21959-21985 +21986-22001 +22002-22017 +22018-22043 +22044-22053 +22054-22071 +22072-22092 +22093-22112 +22113-22126 +22127-22147 +22148-22163 +22164-22174 +22175-22183 +22184-22214 +22215-22219 +22220-22229 +22230-22237 +22238-22259 +22260-22267 +22268-22283 +22284-22312 +22313-22326 +22327-22346 +22347-22364 +22365-22376 +22377-22386 +22387-22395 +22396-22413 +22414-22448 +22449-22461 +22462-22476 +22477-22496 +22497-22517 +22518-22543 +22544-22572 +22573-22580 +22581-22590 +22591-22604 +22605-22623 +22624-22643 +22644-22653 +22654-22668 +22669-22680 +22681-22703 +22704-22718 +22719-22740 +22741-22760 +22761-22772 +22773-22787 +22788-22797 +22798-22807 +22808-22826 +22827-22845 +22846-22864 +22865-22885 +22886-22905 +22906-22920 +22921-22937 +22938-22957 +22958-22971 +22972-22993 +22994-23006 +23007-23022 +23023-23036 +23037-23051 +23052-23069 +23070-23084 +23085-23102 +23103-23118 +23119-23128 +23129-23154 +23155-23165 +23166-23175 +23176-23182 +23183-23197 +23198-23214 +23215-23235 +23236-23244 +23245-23260 +23261-23275 +23276-23283 +23284-23302 +23303-23314 +23315-23330 +23331-23344 +23345-23349 +23350-23363 +23364-23389 +23390-23400 +23401-23417 +23418-23429 +23430-23459 +23460-23477 +23478-23496 +23497-23504 +23505-23534 +23535-23547 +23548-23573 +23574-23599 +23600-23623 +23624-23636 +23637-23644 +23645-23681 +23682-23708 +23709-23735 +23736-23752 +23753-23763 +23764-23788 +23789-23796 +23797-23816 +23817-23828 +23829-23851 +23852-23864 +23865-23877 +23878-23900 +23901-23916 +23917-23931 +23932-23943 +23944-23950 +23951-23967 +23968-23993 +23994-24014 +24015-24034 +24035-24051 +24052-24073 +24074-24085 +24086-24097 +24098-24127 +24128-24143 +24144-24154 +24155-24172 +24173-24186 +24187-24198 +24199-24224 +24225-24233 +24234-24249 +24250-24261 +24262-24280 +24281-24293 +24294-24318 +24319-24342 +24343-24364 +24365-24373 +24374-24395 +24396-24422 +24423-24453 +24454-24479 +24480-24506 +24507-24517 +24518-24521 +24522-24542 +24543-24567 +24568-24579 +24580-24588 +24589-24598 +24599-24612 +24613-24621 +24622-24631 +24632-24645 +24646-24653 +24654-24664 +24665-24679 +24680-24689 +24690-24701 +24702-24726 +24727-24744 +24745-24753 +24754-24773 +24774-24789 +24790-24809 +24810-24820 +24821-24850 +24851-24863 +24864-24883 +24884-24908 +24909-24925 +24926-24936 +24937-24954 +24955-24966 +24967-24995 +24996-25025 +25026-25034 +25035-25066 +25067-25091 +25092-25107 +25108-25127 +25128-25136 +25137-25156 +25157-25179 +25180-25202 +25203-25218 +25219-25228 +25229-25250 +25251-25267 +25268-25278 +25279-25297 +25298-25323 +25324-25339 +25340-25354 +25355-25371 +25372-25382 +25383-25400 +25401-25420 +25421-25439 +25440-25467 +25468-25487 +25488-25502 +25503-25514 +25515-25525 +25526-25542 +25543-25558 +25559-25572 +25573-25584 +25585-25605 +25606-25613 +25614-25642 +25643-25660 +25661-25692 +25693-25702 +25703-25725 +25726-25749 +25750-25757 +25758-25766 +25767-25779 +25780-25788 +25789-25819 +25820-25834 +25835-25858 +25859-25880 +25881-25898 +25899-25918 +25919-25930 +25931-25946 +25947-25962 +25963-25983 +25984-26007 +26008-26025 +26026-26032 +26033-26043 +26044-26057 +26058-26073 +26074-26093 +26094-26103 +26104-26119 +26120-26134 +26135-26144 +26145-26164 +26165-26178 +26179-26217 +26218-26233 +26234-26251 +26252-26270 +26271-26284 +26285-26313 +26314-26326 +26327-26340 +26341-26352 +26353-26367 +26368-26384 +26385-26400 +26401-26431 +26432-26439 +26440-26459 +26460-26474 +26475-26503 +26504-26517 +26518-26536 +26537-26568 +26569-26592 +26593-26611 +26612-26638 +26639-26655 +26656-26675 +26676-26685 +26686-26699 +26700-26718 +26719-26729 +26730-26753 +26754-26774 +26775-26793 +26794-26813 +26814-26835 +26836-26849 +26850-26860 +26861-26873 +26874-26888 +26889-26906 +26907-26929 +26930-26939 +26940-26970 +26971-26987 +26988-27003 +27004-27026 +27027-27040 +27041-27054 +27055-27067 +27068-27073 +27074-27097 +27098-27118 +27119-27132 +27133-27149 +27150-27155 +27156-27175 +27176-27191 +27192-27206 +27207-27226 +27227-27250 +27251-27263 +27264-27278 +27279-27290 +27291-27312 +27313-27321 +27322-27345 +27346-27364 +27365-27370 +27371-27377 +27378-27400 +27401-27412 +27413-27440 +27441-27454 +27455-27470 +27471-27485 +27486-27504 +27505-27515 +27516-27536 +27537-27551 +27552-27566 +27567-27589 +27590-27611 +27612-27635 +27636-27647 +27648-27665 +27666-27672 +27673-27693 +27694-27703 +27704-27717 +27718-27748 +27749-27766 +27767-27777 +27778-27791 +27792-27817 +27818-27825 +27826-27842 +27843-27852 +27853-27864 +27865-27886 +27887-27904 +27905-27921 +27922-27938 +27939-27952 +27953-27970 +27971-27992 +27993-28009 +28010-28025 +28026-28033 +28034-28051 +28052-28078 +28079-28085 +28086-28113 +28114-28131 +28132-28141 +28142-28150 +28151-28168 +28169-28184 +28185-28202 +28203-28207 +28208-28219 +28220-28226 +28227-28244 +28245-28269 +28270-28288 +28289-28299 +28300-28306 +28307-28326 +28327-28334 +28335-28351 +28352-28374 +28375-28398 +28399-28411 +28412-28425 +28426-28448 +28449-28462 +28463-28478 +28479-28495 +28496-28510 +28511-28531 +28532-28545 +28546-28573 +28574-28596 +28597-28614 +28615-28620 +28621-28634 +28635-28644 +28645-28653 +28654-28668 +28669-28677 +28678-28690 +28691-28699 +28700-28711 +28712-28727 +28728-28733 +28734-28748 +28749-28768 +28769-28784 +28785-28794 +28795-28802 +28803-28817 +28818-28837 +28838-28856 +28857-28868 +28869-28877 +28878-28892 +28893-28899 +28900-28911 +28912-28925 +28926-28946 +28947-28952 +28953-28969 +28970-28990 +28991-29003 +29004-29029 +29030-29038 +29039-29057 +29058-29064 +29065-29076 +29077-29096 +29097-29120 +29121-29139 +29140-29149 +29150-29176 +29177-29192 +29193-29202 +29203-29228 +29229-29240 +29241-29260 +29261-29274 +29275-29288 +29289-29299 +29300-29315 +29316-29337 +29338-29358 +29359-29376 +29377-29391 +29392-29401 +29402-29410 +29411-29424 +29425-29432 +29433-29453 +29454-29467 +29468-29476 +29477-29491 +29492-29508 +29509-29527 +29528-29543 +29544-29576 +29577-29587 +29588-29599 +29600-29610 +29611-29618 +29619-29645 +29646-29662 +29663-29680 +29681-29695 +29696-29709 +29710-29722 +29723-29734 +29735-29743 +29744-29771 +29772-29784 +29785-29805 +29806-29816 +29817-29840 +29841-29863 +29864-29886 +29887-29912 +29913-29928 +29929-29950 +29951-29964 +29965-29980 +29981-29994 +29995-30014 +30015-30030 +30031-30041 +30042-30054 +30055-30068 +30069-30082 +30083-30101 +30102-30117 +30118-30130 +30131-30154 +30155-30176 +30177-30184 +30185-30203 +30204-30219 +30220-30229 +30230-30252 +30253-30269 +30270-30282 +30283-30304 +30305-30316 +30317-30325 +30326-30336 +30337-30354 +30355-30365 +30366-30376 +30377-30386 +30387-30393 +30394-30400 +30401-30406 +30407-30421 +30422-30435 +30436-30447 +30448-30466 +30467-30487 +30488-30497 +30498-30513 +30514-30524 +30525-30536 +30537-30551 +30552-30571 +30572-30594 +30595-30605 +30606-30619 +30620-30629 +30630-30639 +30640-30650 +30651-30661 +30662-30672 +30673-30679 +30680-30689 +30690-30703 +30704-30714 +30715-30726 +30727-30742 +30743-30761 +30762-30776 +30777-30784 +30785-30793 +30794-30821 +30822-30829 +30830-30842 +30843-30865 +30866-30883 +30884-30897 +30898-30915 +30916-30927 +30928-30938 +30939-30952 +30953-30963 +30964-30995 +30996-31013 +31014-31026 +31027-31039 +31040-31052 +31053-31071 +31072-31097 +31098-31116 +31117-31130 +31131-31147 +31148-31173 +31174-31192 +31193-31219 +31220-31232 +31233-31244 +31245-31252 +31253-31259 +31260-31268 +31269-31282 +31283-31308 +31309-31323 +31324-31346 +31347-31365 +31366-31382 +31383-31399 +31400-31413 +31414-31426 +31427-31438 +31439-31458 +31459-31477 +31478-31485 +31486-31506 +31507-31519 +31520-31543 +31544-31562 +31563-31571 +31572-31595 +31596-31609 +31610-31643 +31644-31659 +31660-31673 +31674-31695 +31696-31716 +31717-31724 +31725-31742 +31743-31773 +31774-31796 +31797-31805 +31806-31823 +31824-31835 +31836-31847 +31848-31869 +31870-31889 +31890-31922 +31923-31947 +31948-31956 +31957-31979 +31980-31989 +31990-32005 +32006-32032 +32033-32047 +32048-32057 +32058-32067 +32068-32077 +32078-32087 +32088-32097 +32098-32107 +32108-32117 +32118-32127 +32128-32137 +32138-32149 +32150-32159 +32160-32169 +32170-32179 +32180-32189 +32190-32197 +32198-32214 +32215-32232 +32233-32249 +32250-32264 +32265-32277 +32278-32301 +32302-32310 +32311-32326 +32327-32350 +32351-32362 +32363-32376 +32377-32390 +32391-32401 +32402-32422 +32423-32432 +32433-32456 +32457-32473 +32474-32495 +32496-32499 +32500-32517 +32518-32532 +32533-32556 +32557-32582 +32583-32596 +32597-32629 +32630-32644 +32645-32664 +32665-32673 +32674-32696 +32697-32703 +32704-32717 +32718-32730 +32731-32744 +32745-32762 +32763-32787 +32788-32812 +32813-32822 +32823-32845 +32846-32860 +32861-32884 +32885-32912 +32913-32937 +32938-32958 +32959-32966 +32967-32988 +32989-33005 +33006-33029 +33030-33048 +33049-33067 +33068-33079 +33080-33101 +33102-33118 +33119-33134 +33135-33162 +33163-33173 +33174-33204 +33205-33220 +33221-33244 +33245-33262 +33263-33271 +33272-33307 +33308-33325 +33326-33352 +33353-33364 +33365-33388 +33389-33405 +33406-33419 +33420-33450 +33451-33467 +33468-33483 +33484-33501 +33502-33507 +33508-33529 +33530-33552 +33553-33569 +33570-33577 +33578-33601 +33602-33622 +33623-33638 +33639-33673 +33674-33698 +33699-33705 +33706-33717 +33718-33737 +33738-33749 +33750-33770 +33771-33798 +33799-33809 +33810-33833 +33834-33850 +33851-33874 +33875-33893 +33894-33911 +33912-33924 +33925-33944 +33945-33961 +33962-33979 +33980-33991 +33992-34000 +34001-34030 +34031-34047 +34048-34062 +34063-34083 +34084-34095 +34096-34120 +34121-34146 +34147-34156 +34157-34171 +34172-34189 +34190-34203 +34204-34212 +34213-34234 +34235-34246 +34247-34257 +34258-34275 +34276-34292 +34293-34311 +34312-34341 +34342-34349 +34350-34366 +34367-34386 +34387-34401 +34402-34415 +34416-34437 +34438-34484 +34485-34499 +34500-34518 +34519-34547 +34548-34558 +34559-34576 +34577-34610 +34611-34641 +34642-34655 +34656-34667 +34668-34686 +34687-34702 +34703-34713 +34714-34747 +34748-34762 +34763-34793 +34794-34816 +34817-34827 +34828-34846 +34847-34874 +34875-34887 +34888-34902 +34903-34915 +34916-34938 +34939-34953 +34954-34971 +34972-34983 +34984-35005 +35006-35023 +35024-35047 +35048-35056 +35057-35078 +35079-35099 +35100-35110 +35111-35130 +35131-35150 +35151-35165 +35166-35182 +35183-35194 +35195-35215 +35216-35230 +35231-35249 +35250-35258 +35259-35276 +35277-35297 +35298-35328 +35329-35356 +35357-35373 +35374-35387 +35388-35399 +35400-35414 +35415-35450 +35451-35465 +35466-35478 +35479-35497 +35498-35504 +35505-35518 +35519-35531 +35532-35555 +35556-35575 +35576-35593 +35594-35607 +35608-35635 +35636-35649 +35650-35662 +35663-35683 +35684-35694 +35695-35719 +35720-35731 +35732-35755 +35756-35782 +35783-35806 +35807-35828 +35829-35849 +35850-35867 +35868-35889 +35890-35907 +35908-35922 +35923-35943 +35944-35970 +35971-35985 +35986-36009 +36010-36037 +36038-36049 +36050-36078 +36079-36104 +36105-36136 +36137-36155 +36156-36166 +36167-36188 +36189-36211 +36212-36227 +36228-36257 +36258-36266 +36267-36289 +36290-36306 +36307-36330 +36331-36345 +36346-36371 +36372-36391 +36392-36406 +36407-36422 +36423-36443 +36444-36457 +36458-36483 +36484-36496 +36497-36514 +36515-36526 +36527-36552 +36553-36567 +36568-36573 +36574-36584 +36585-36597 +36598-36610 +36611-36626 +36627-36636 +36637-36658 +36659-36669 +36670-36691 +36692-36701 +36702-36721 +36722-36735 +36736-36753 +36754-36771 +36772-36793 +36794-36825 +36826-36857 +36858-36874 +36875-36880 +36881-36904 +36905-36917 +36918-36940 +36941-36958 +36959-36975 +36976-36983 +36984-37008 +37009-37030 +37031-37052 +37053-37065 +37066-37093 +37094-37114 +37115-37135 +37136-37153 +37154-37164 +37165-37177 +37178-37200 +37201-37236 +37237-37254 +37255-37270 +37271-37292 +37293-37306 +37307-37326 +37327-37346 +37347-37357 +37358-37380 +37381-37408 +37409-37428 +37429-37447 +37448-37470 +37471-37481 +37482-37496 +37497-37530 +37531-37552 +37553-37568 +37569-37587 +37588-37602 +37603-37614 +37615-37633 +37634-37637 +37638-37642 +37643-37657 +37658-37683 +37684-37700 +37701-37718 +37719-37735 +37736-37758 +37759-37783 +37784-37808 +37809-37817 +37818-37830 +37831-37842 +37843-37860 +37861-37885 +37886-37898 +37899-37914 +37915-37930 +37931-37954 +37955-37968 +37969-37995 +37996-38006 +38007-38017 +38018-38036 +38037-38053 +38054-38065 +38066-38089 +38090-38109 +38110-38149 +38150-38183 +38184-38198 +38199-38221 +38222-38235 +38236-38247 +38248-38285 +38286-38294 +38295-38308 +38309-38332 +38333-38346 +38347-38357 +38358-38367 +38368-38391 +38392-38417 +38418-38430 +38431-38449 +38450-38469 +38470-38487 +38488-38515 +38516-38528 +38529-38544 +38545-38574 +38575-38589 +38590-38599 +38600-38618 +38619-38640 +38641-38654 +38655-38681 +38682-38704 +38705-38718 +38719-38731 +38732-38747 +38748-38754 +38755-38779 +38780-38799 +38800-38813 +38814-38822 +38823-38841 +38842-38862 +38863-38882 +38883-38899 +38900-38913 +38914-38932 +38933-38947 +38948-38972 +38973-38978 +38979-39001 +39002-39027 +39028-39040 +39041-39064 +39065-39081 +39082-39112 +39113-39136 +39137-39156 +39157-39186 +39187-39196 +39197-39219 +39220-39233 +39234-39245 +39246-39271 +39272-39281 +39282-39292 +39293-39323 +39324-39340 +39341-39357 +39358-39370 +39371-39394 +39395-39408 +39409-39426 +39427-39446 +39447-39462 +39463-39484 +39485-39501 +39502-39517 +39518-39525 +39526-39552 +39553-39564 +39565-39588 +39589-39609 +39610-39630 +39631-39646 +39647-39660 +39661-39685 +39686-39698 +39699-39719 +39720-39741 +39742-39754 +39755-39771 +39772-39784 +39785-39808 +39809-39820 +39821-39835 +39836-39856 +39857-39873 +39874-39893 +39894-39902 +39903-39923 +39924-39935 +39936-39960 +39961-39972 +39973-39982 +39983-40004 +40005-40025 +40026-40037 +40038-40053 +40054-40062 +40063-40076 +40077-40100 +40101-40112 +40113-40121 +40122-40141 +40142-40163 +40164-40179 +40180-40199 +40200-40213 +40214-40228 +40229-40254 +40255-40266 +40267-40277 +40278-40306 +40307-40334 +40335-40356 +40357-40382 +40383-40394 +40395-40404 +40405-40418 +40419-40435 +40436-40461 +40462-40480 +40481-40490 +40491-40507 +40508-40516 +40517-40554 +40555-40566 +40567-40587 +40588-40605 +40606-40615 +40616-40643 +40644-40653 +40654-40675 +40676-40703 +40704-40723 +40724-40735 +40736-40745 +40746-40764 +40765-40778 +40779-40790 +40791-40823 +40824-40849 +40850-40874 +40875-40896 +40897-40909 +40910-40936 +40937-40945 +40946-40960 +40961-40972 +40973-40986 +40987-41001 +41002-41032 +41033-41046 +41047-41060 +41061-41089 +41090-41107 +41108-41120 +41121-41138 +41139-41159 +41160-41176 +41177-41206 +41207-41229 +41230-41250 +41251-41258 +41259-41275 +41276-41284 +41285-41305 +41306-41311 +41312-41325 +41326-41344 +41345-41365 +41366-41394 +41395-41405 +41406-41442 +41443-41451 +41452-41467 +41468-41484 +41485-41496 +41497-41513 +41514-41536 +41537-41552 +41553-41563 +41564-41600 +41601-41612 +41613-41633 +41634-41647 +41648-41657 +41658-41694 +41695-41709 +41710-41726 +41727-41742 +41743-41753 +41754-41780 +41781-41793 +41794-41810 +41811-41823 +41824-41839 +41840-41851 +41852-41867 +41868-41875 +41876-41903 +41904-41911 +41912-41933 +41934-41956 +41957-41979 +41980-41995 +41996-42009 +42010-42016 +42017-42037 +42038-42059 +42060-42074 +42075-42092 +42093-42109 +42110-42126 +42127-42143 +42144-42156 +42157-42185 +42186-42204 +42205-42232 +42233-42242 +42243-42258 +42259-42277 +42278-42287 +42288-42309 +42310-42322 +42323-42349 +42350-42368 +42369-42384 +42385-42402 +42403-42424 +42425-42445 +42446-42467 +42468-42482 +42483-42499 +42500-42518 +42519-42540 +42541-42569 +42570-42590 +42591-42609 +42610-42623 +42624-42636 +42637-42664 +42665-42675 +42676-42702 +42703-42721 +42722-42736 +42737-42753 +42754-42767 +42768-42778 +42779-42798 +42799-42820 +42821-42841 +42842-42871 +42872-42897 +42898-42922 +42923-42937 +42938-42955 +42956-42965 +42966-42980 +42981-42997 +42998-43015 +43016-43037 +43038-43051 +43052-43068 +43069-43077 +43078-43102 +43103-43121 +43122-43143 +43144-43152 +43153-43170 +43171-43185 +43186-43198 +43199-43207 +43208-43223 +43224-43237 +43238-43251 +43252-43264 +43265-43276 +43277-43286 +43287-43309 +43310-43324 +43325-43344 +43345-43355 +43356-43380 +43381-43392 +43393-43409 +43410-43428 +43429-43441 +43442-43457 +43458-43468 +43469-43498 +43499-43502 +43503-43517 +43518-43534 +43535-43547 +43548-43565 +43566-43578 +43579-43593 +43594-43611 +43612-43631 +43632-43649 +43650-43660 +43661-43681 +43682-43703 +43704-43722 +43723-43736 +43737-43764 +43765-43772 +43773-43798 +43799-43820 +43821-43835 +43836-43859 +43860-43877 +43878-43890 +43891-43906 +43907-43924 +43925-43932 +43933-43959 +43960-43969 +43970-43987 +43988-44003 +44004-44011 +44012-44023 +44024-44034 +44035-44060 +44061-44077 +44078-44100 +44101-44110 +44111-44120 +44121-44138 +44139-44153 +44154-44161 +44162-44169 +44170-44177 +44178-44193 +44194-44207 +44208-44217 +44218-44228 +44229-44246 +44247-44251 +44252-44264 +44265-44282 +44283-44297 +44298-44321 +44322-44328 +44329-44339 +44340-44363 +44364-44382 +44383-44393 +44394-44417 +44418-44431 +44432-44448 +44449-44466 +44467-44491 +44492-44503 +44504-44520 +44521-44532 +44533-44542 +44543-44557 +44558-44573 +44574-44598 +44599-44615 +44616-44631 +44632-44638 +44639-44654 +44655-44673 +44674-44681 +44682-44699 +44700-44721 +44722-44737 +44738-44745 +44746-44760 +44761-44769 +44770-44786 +44787-44796 +44797-44824 +44825-44840 +44841-44855 +44856-44866 +44867-44875 +44876-44894 +44895-44913 +44914-44939 +44940-44948 +44949-44964 +44965-44987 +44988-45000 +45001-45024 +45025-45045 +45046-45057 +45058-45066 +45067-45083 +45084-45099 +45100-45104 +45105-45118 +45119-45138 +45139-45160 +45161-45173 +45174-45183 +45184-45200 +45201-45220 +45221-45235 +45236-45251 +45252-45272 +45273-45287 +45288-45316 +45317-45338 +45339-45361 +45362-45368 +45369-45376 +45377-45388 +45389-45404 +45405-45420 +45421-45432 +45433-45460 +45461-45471 +45472-45474 +45475-45489 +45490-45494 +45495-45510 +45511-45523 +45524-45540 +45541-45556 +45557-45579 +45580-45590 +45591-45599 +45600-45605 +45606-45616 +45617-45632 +45633-45642 +45643-45652 +45653-45660 +45661-45685 +45686-45699 +45700-45711 +45712-45720 +45721-45734 +45735-45757 +45758-45770 +45771-45785 +45786-45802 +45803-45826 +45827-45844 +45845-45855 +45856-45873 +45874-45900 +45901-45904 +45905-45913 +45914-45930 +45931-45945 +45946-45954 +45955-45963 +45964-45971 +45972-45985 +45986-46009 +46010-46019 +46020-46043 +46044-46064 +46065-46085 +46086-46101 +46102-46116 +46117-46131 +46132-46142 +46143-46155 +46156-46170 +46171-46184 +46185-46197 +46198-46221 +46222-46234 +46235-46255 +46256-46274 +46275-46286 +46287-46295 +46296-46310 +46311-46324 +46325-46336 +46337-46343 +46344-46354 +46355-46365 +46366-46378 +46379-46385 +46386-46409 +46410-46431 +46432-46439 +46440-46449 +46450-46460 +46461-46476 +46477-46493 +46494-46504 +46505-46525 +46526-46549 +46550-46571 +46572-46583 +46584-46601 +46602-46617 +46618-46629 +46630-46645 +46646-46664 +46665-46684 +46685-46695 +46696-46705 +46706-46727 +46728-46739 +46740-46758 +46759-46774 +46775-46790 +46791-46809 +46810-46832 +46833-46855 +46856-46869 +46870-46886 +46887-46898 +46899-46911 +46912-46930 +46931-46938 +46939-46956 +46957-46971 +46972-46983 +46984-47003 +47004-47014 +47015-47027 +47028-47044 +47045-47058 +47059-47081 +47082-47107 +47108-47123 +47124-47137 +47138-47155 +47156-47163 +47164-47182 +47183-47202 +47203-47218 +47219-47244 +47245-47249 +47250-47258 +47259-47269 +47270-47276 +47277-47296 +47297-47313 +47314-47319 +47320-47335 +47336-47355 +47356-47370 +47371-47381 +47382-47403 +47404-47422 +47423-47439 +47440-47459 +47460-47468 +47469-47489 +47490-47518 +47519-47529 +47530-47539 +47540-47557 +47558-47579 +47580-47590 +47591-47619 +47620-47635 +47636-47639 +47640-47650 +47651-47665 +47666-47675 +47676-47682 +47683-47703 +47704-47716 +47717-47723 +47724-47742 +47743-47761 +47762-47775 +47776-47796 +47797-47817 +47818-47830 +47831-47842 +47843-47851 +47852-47874 +47875-47893 +47894-47917 +47918-47927 +47928-47938 +47939-47949 +47950-47965 +47966-47983 +47984-47997 +47998-48008 +48009-48021 +48022-48037 +48038-48047 +48048-48066 +48067-48082 +48083-48098 +48099-48116 +48117-48127 +48128-48148 +48149-48157 +48158-48174 +48175-48181 +48182-48201 +48202-48215 +48216-48230 +48231-48238 +48239-48247 +48248-48264 +48265-48285 +48286-48299 +48300-48318 +48319-48323 +48324-48337 +48338-48358 +48359-48370 +48371-48391 +48392-48412 +48413-48422 +48423-48436 +48437-48445 +48446-48461 +48462-48484 +48485-48513 +48514-48529 +48530-48554 +48555-48567 +48568-48583 +48584-48604 +48605-48623 +48624-48635 +48636-48653 +48654-48665 +48666-48687 +48688-48703 +48704-48717 +48718-48740 +48741-48757 +48758-48766 +48767-48782 +48783-48796 +48797-48804 +48805-48819 +48820-48846 +48847-48856 +48857-48871 +48872-48878 +48879-48883 +48884-48916 +48917-48928 +48929-48941 +48942-48958 +48959-48961 +48962-48984 +48985-48997 +48998-49012 +49013-49022 +49023-49032 +49033-49049 +49050-49056 +49057-49068 +49069-49080 +49081-49093 +49094-49101 +49102-49115 +49116-49126 +49127-49139 +49140-49155 +49156-49165 +49166-49181 +49182-49197 +49198-49220 +49221-49242 +49243-49254 +49255-49269 +49270-49284 +49285-49308 +49309-49321 +49322-49340 +49341-49355 +49356-49371 +49372-49377 +49378-49397 +49398-49413 +49414-49429 +49430-49441 +49442-49462 +49463-49480 +49481-49496 +49497-49513 +49514-49545 +49546-49556 +49557-49568 +49569-49579 +49580-49590 +49591-49613 +49614-49635 +49636-49652 +49653-49670 +49671-49692 +49693-49709 +49710-49721 +49722-49745 +49746-49762 +49763-49781 +49782-49803 +49804-49818 +49819-49836 +49837-49860 +49861-49878 +49879-49890 +49891-49903 +49904-49918 +49919-49930 +49931-49948 +49949-49961 +49962-49973 +49974-50000 +50001-50022 +50023-50045 +50046-50068 +50069-50081 +50082-50097 +50098-50123 +50124-50141 +50142-50155 +50156-50169 +50170-50184 +50185-50203 +50204-50212 +50213-50235 +50236-50259 +50260-50271 +50272-50290 +50291-50302 +50303-50334 +50335-50355 +50356-50378 +50379-50400 +50401-50415 +50416-50424 +50425-50450 +50451-50459 +50460-50474 +50475-50492 +50493-50507 +50508-50524 +50525-50540 +50541-50549 +50550-50574 +50575-50595 +50596-50617 +50618-50645 +50646-50665 +50666-50684 +50685-50704 +50705-50723 +50724-50731 +50732-50742 +50743-50769 +50770-50786 +50787-50803 +50804-50833 +50834-50839 +50840-50867 +50868-50879 +50880-50890 +50891-50907 +50908-50919 +50920-50943 +50944-50961 +50962-50970 +50971-50979 +50980-50986 +50987-51004 +51005-51026 +51027-51040 +51041-51051 +51052-51074 +51075-51104 +51105-51122 +51123-51148 +51149-51162 +51163-51194 +51195-51212 +51213-51222 +51223-51240 +51241-51255 +51256-51265 +51266-51285 +51286-51307 +51308-51323 +51324-51349 +51350-51361 +51362-51378 +51379-51387 +51388-51410 +51411-51426 +51427-51440 +51441-51448 +51449-51458 +51459-51470 +51471-51481 +51482-51500 +51501-51528 +51529-51546 +51547-51562 +51563-51579 +51580-51602 +51603-51619 +51620-51627 +51628-51651 +51652-51661 +51662-51674 +51675-51700 +51701-51723 +51724-51749 +51750-51764 +51765-51776 +51777-51797 +51798-51811 +51812-51832 +51833-51858 +51859-51873 +51874-51884 +51885-51900 +51901-51914 +51915-51941 +51942-51955 +51956-51972 +51973-51999 +52000-52010 +52011-52030 +52031-52045 +52046-52062 +52063-52074 +52075-52090 +52091-52113 +52114-52127 +52128-52140 +52141-52152 +52153-52179 +52180-52216 +52217-52238 +52239-52254 +52255-52267 +52268-52288 +52289-52319 +52320-52343 +52344-52360 +52361-52370 +52371-52387 +52388-52403 +52404-52433 +52434-52444 +52445-52461 +52462-52469 +52470-52483 +52484-52501 +52502-52533 +52534-52551 +52552-52568 +52569-52586 +52587-52595 +52596-52600 +52601-52612 +52613-52634 +52635-52652 +52653-52670 +52671-52682 +52683-52694 +52695-52706 +52707-52720 +52721-52733 +52734-52742 +52743-52765 +52766-52776 +52777-52791 +52792-52803 +52804-52820 +52821-52842 +52843-52860 +52861-52875 +52876-52892 +52893-52911 +52912-52930 +52931-52941 +52942-52962 +52963-52969 +52970-52991 +52992-52999 +53000-53017 +53018-53054 +53055-53069 +53070-53095 +53096-53107 +53108-53131 +53132-53159 +53160-53171 +53172-53188 +53189-53203 +53204-53222 +53223-53253 +53254-53269 +53270-53280 +53281-53306 +53307-53316 +53317-53334 +53335-53352 +53353-53376 +53377-53405 +53406-53422 +53423-53447 +53448-53456 +53457-53477 +53478-53498 +53499-53515 +53516-53524 +53525-53530 +53531-53541 +53542-53558 +53559-53596 +53597-53611 +53612-53639 +53640-53658 +53659-53672 +53673-53688 +53689-53707 +53708-53731 +53732-53738 +53739-53755 +53756-53773 +53774-53785 +53786-53806 +53807-53831 +53832-53851 +53852-53866 +53867-53877 +53878-53889 +53890-53901 +53902-53917 +53918-53932 +53933-53954 +53955-53963 +53964-53988 +53989-54007 +54008-54015 +54016-54034 +54035-54054 +54055-54072 +54073-54080 +54081-54099 +54100-54112 +54113-54135 +54136-54146 +54147-54158 +54159-54169 +54170-54185 +54186-54206 +54207-54232 +54233-54249 +54250-54258 +54259-54269 +54270-54291 +54292-54312 +54313-54321 +54322-54333 +54334-54352 +54353-54366 +54367-54397 +54398-54407 +54408-54424 +54425-54445 +54446-54465 +54466-54481 +54482-54494 +54495-54521 +54522-54541 +54542-54564 +54565-54580 +54581-54601 +54602-54615 +54616-54632 +54633-54652 +54653-54660 +54661-54674 +54675-54692 +54693-54704 +54705-54713 +54714-54725 +54726-54736 +54737-54749 +54750-54766 +54767-54787 +54788-54794 +54795-54802 +54803-54820 +54821-54838 +54839-54847 +54848-54861 +54862-54881 +54882-54899 +54900-54907 +54908-54936 +54937-54959 +54960-54977 +54978-55005 +55006-55020 +55021-55051 +55052-55060 +55061-55081 +55082-55096 +55097-55110 +55111-55136 +55137-55157 +55158-55179 +55180-55195 +55196-55221 +55222-55242 +55243-55259 +55260-55282 +55283-55289 +55290-55317 +55318-55335 +55336-55342 +55343-55363 +55364-55372 +55373-55388 +55389-55406 +55407-55423 +55424-55432 +55433-55450 +55451-55466 +55467-55489 +55490-55509 +55510-55528 +55529-55558 +55559-55574 +55575-55621 +55622-55630 +55631-55646 +55647-55667 +55668-55684 +55685-55699 +55700-55711 +55712-55728 +55729-55758 +55759-55775 +55776-55800 +55801-55826 +55827-55841 +55842-55854 +55855-55866 +55867-55881 +55882-55888 +55889-55906 +55907-55924 +55925-55941 +55942-55950 +55951-55968 +55969-55988 +55989-56008 +56009-56025 +56026-56034 +56035-56063 +56064-56072 +56073-56080 +56081-56096 +56097-56119 +56120-56151 +56152-56172 +56173-56192 +56193-56211 +56212-56229 +56230-56252 +56253-56274 +56275-56285 +56286-56309 +56310-56324 +56325-56335 +56336-56354 +56355-56369 +56370-56382 +56383-56405 +56406-56424 +56425-56435 +56436-56445 +56446-56462 +56463-56479 +56480-56491 +56492-56505 +56506-56513 +56514-56535 +56536-56552 +56553-56572 +56573-56595 +56596-56605 +56606-56626 +56627-56644 +56645-56660 +56661-56676 +56677-56692 +56693-56707 +56708-56724 +56725-56744 +56745-56761 +56762-56790 +56791-56800 +56801-56815 +56816-56832 +56833-56858 +56859-56874 +56875-56903 +56904-56913 +56914-56925 +56926-56939 +56940-56948 +56949-56960 +56961-56982 +56983-57006 +57007-57018 +57019-57032 +57033-57053 +57054-57071 +57072-57077 +57078-57085 +57086-57103 +57104-57124 +57125-57140 +57141-57157 +57158-57176 +57177-57187 +57188-57210 +57211-57221 +57222-57239 +57240-57261 +57262-57267 +57268-57283 +57284-57304 +57305-57316 +57317-57342 +57343-57355 +57356-57369 +57370-57380 +57381-57395 +57396-57418 +57419-57433 +57434-57450 +57451-57459 +57460-57477 +57478-57486 +57487-57500 +57501-57515 +57516-57528 +57529-57538 +57539-57555 +57556-57571 +57572-57587 +57588-57600 +57601-57608 +57609-57622 +57623-57640 +57641-57656 +57657-57676 +57677-57694 +57695-57704 +57705-57723 +57724-57755 +57756-57782 +57783-57800 +57801-57811 +57812-57814 +57815-57822 +57823-57842 +57843-57860 +57861-57879 +57880-57894 +57895-57913 +57914-57933 +57934-57942 +57943-57968 +57969-57985 +57986-57999 +58000-58018 +58019-58039 +58040-58056 +58057-58074 +58075-58094 +58095-58112 +58113-58121 +58122-58148 +58149-58169 +58170-58191 +58192-58209 +58210-58228 +58229-58247 +58248-58278 +58279-58291 +58292-58303 +58304-58324 +58325-58339 +58340-58351 +58352-58379 +58380-58388 +58389-58400 +58401-58416 +58417-58440 +58441-58451 +58452-58464 +58465-58488 +58489-58508 +58509-58522 +58523-58539 +58540-58551 +58552-58569 +58570-58584 +58585-58599 +58600-58623 +58624-58645 +58646-58670 +58671-58693 +58694-58709 +58710-58724 +58725-58738 +58739-58752 +58753-58762 +58763-58770 +58771-58805 +58806-58838 +58839-58858 +58859-58869 +58870-58890 +58891-58899 +58900-58922 +58923-58934 +58935-58954 +58955-58966 +58967-58984 +58985-58992 +58993-59009 +59010-59035 +59036-59059 +59060-59079 +59080-59099 +59100-59133 +59134-59149 +59150-59169 +59170-59182 +59183-59202 +59203-59215 +59216-59231 +59232-59255 +59256-59272 +59273-59296 +59297-59309 +59310-59329 +59330-59342 +59343-59361 +59362-59373 +59374-59390 +59391-59398 +59399-59423 +59424-59437 +59438-59456 +59457-59476 +59477-59485 +59486-59501 +59502-59515 +59516-59528 +59529-59552 +59553-59570 +59571-59580 +59581-59605 +59606-59615 +59616-59632 +59633-59649 +59650-59674 +59675-59689 +59690-59702 +59703-59721 +59722-59738 +59739-59759 +59760-59772 +59773-59792 +59793-59813 +59814-59820 +59821-59832 +59833-59854 +59855-59869 +59870-59880 +59881-59907 +59908-59940 +59941-59960 +59961-59985 +59986-60003 +60004-60013 +60014-60021 +60022-60037 +60038-60064 +60065-60071 +60072-60089 +60090-60108 +60109-60137 +60138-60156 +60157-60184 +60185-60206 +60207-60212 +60213-60239 +60240-60262 +60263-60288 +60289-60298 +60299-60315 +60316-60335 +60336-60348 +60349-60368 +60369-60378 +60379-60407 +60408-60432 +60433-60455 +60456-60473 +60474-60487 +60488-60501 +60502-60525 +60526-60541 +60542-60553 +60554-60568 +60569-60578 +60579-60606 +60607-60641 +60642-60647 +60648-60658 +60659-60689 +60690-60718 +60719-60734 +60735-60752 +60753-60760 +60761-60786 +60787-60801 +60802-60825 +60826-60835 +60836-60841 +60842-60857 +60858-60867 +60868-60894 +60895-60909 +60910-60920 +60921-60949 +60950-60963 +60964-60971 +60972-60983 +60984-60993 +60994-61003 +61004-61031 +61032-61042 +61043-61060 +61061-61071 +61072-61102 +61103-61115 +61116-61142 +61143-61164 +61165-61193 +61194-61217 +61218-61241 +61242-61259 +61260-61279 +61280-61299 +61300-61317 +61318-61335 +61336-61348 +61349-61368 +61369-61373 +61374-61397 +61398-61416 +61417-61441 +61442-61456 +61457-61474 +61475-61488 +61489-61507 +61508-61529 +61530-61539 +61540-61563 +61564-61580 +61581-61594 +61595-61626 +61627-61657 +61658-61677 +61678-61701 +61702-61716 +61717-61728 +61729-61739 +61740-61751 +61752-61764 +61765-61781 +61782-61807 +61808-61821 +61822-61847 +61848-61875 +61876-61894 +61895-61914 +61915-61938 +61939-61956 +61957-61979 +61980-61993 +61994-62011 +62012-62024 +62025-62036 +62037-62050 +62051-62065 +62066-62091 +62092-62114 +62115-62131 +62132-62147 +62148-62162 +62163-62188 +62189-62214 +62215-62236 +62237-62260 +62261-62275 +62276-62302 +62303-62317 +62318-62334 +62335-62350 +62351-62360 +62361-62384 +62385-62407 +62408-62415 +62416-62442 +62443-62457 +62458-62472 +62473-62496 +62497-62509 +62510-62530 +62531-62543 +62544-62562 +62563-62604 +62605-62646 +62647-62670 +62671-62689 +62690-62703 +62704-62712 +62713-62728 +62729-62743 +62744-62765 +62766-62784 +62785-62813 +62814-62831 +62832-62841 +62842-62861 +62862-62881 +62882-62904 +62905-62932 +62933-62954 +62955-62971 +62972-62995 +62996-63006 +63007-63021 +63022-63036 +63037-63057 +63058-63082 +63083-63104 +63105-63110 +63111-63142 +63143-63177 +63178-63201 +63202-63220 +63221-63240 +63241-63255 +63256-63270 +63271-63286 +63287-63321 +63322-63338 +63339-63353 +63354-63368 +63369-63388 +63389-63399 +63400-63408 +63409-63445 +63446-63464 +63465-63483 +63484-63503 +63504-63518 +63519-63542 +63543-63573 +63574-63586 +63587-63605 +63606-63614 +63615-63631 +63632-63651 +63652-63668 +63669-63679 +63680-63686 +63687-63701 +63702-63723 +63724-63743 +63744-63760 +63761-63789 +63790-63802 +63803-63837 +63838-63852 +63853-63887 +63888-63905 +63906-63921 +63922-63931 +63932-63942 +63943-63958 +63959-64004 +64005-64033 +64034-64064 +64065-64076 +64077-64090 +64091-64110 +64111-64133 +64134-64149 +64150-64176 +64177-64202 +64203-64219 +64220-64231 +64232-64258 +64259-64292 +64293-64316 +64317-64330 +64331-64341 +64342-64364 +64365-64384 +64385-64397 +64398-64407 +64408-64437 +64438-64460 +64461-64497 +64498-64526 +64527-64542 +64543-64571 +64572-64583 +64584-64599 +64600-64632 +64633-64652 +64653-64675 +64676-64692 +64693-64704 +64705-64729 +64730-64746 +64747-64762 +64763-64780 +64781-64798 +64799-64826 +64827-64840 +64841-64858 +64859-64889 +64890-64905 +64906-64939 +64940-64959 +64960-64981 +64982-65004 +65005-65016 +65017-65036 +65037-65057 +65058-65080 +65081-65098 +65099-65119 +65120-65131 +65132-65146 +65147-65164 +65165-65180 +65181-65194 +65195-65213 +65214-65226 +65227-65242 +65243-65257 +65258-65276 +65277-65289 +65290-65301 +65302-65319 +65320-65336 +65337-65353 +65354-65366 +65367-65374 +65375-65404 +65405-65417 +65418-65426 +65427-65464 +65465-65485 +65486-65504 +65505-65522 +65523-65532 +65533-65565 +65566-65579 +65580-65596 +65597-65616 +65617-65636 +65637-65651 +65652-65662 +65663-65690 +65691-65711 +65712-65729 +65730-65740 +65741-65765 +65766-65784 +65785-65794 +65795-65815 +65816-65833 +65834-65859 +65860-65880 +65881-65896 +65897-65913 +65914-65930 +65931-65944 +65945-65954 +65955-65970 +65971-65990 +65991-66011 +66012-66026 +66027-66057 +66058-66070 +66071-66082 +66083-66091 +66092-66114 +66115-66131 +66132-66150 +66151-66161 +66162-66187 +66188-66208 +66209-66235 +66236-66264 +66265-66277 +66278-66293 +66294-66323 +66324-66336 +66337-66352 +66353-66362 +66363-66378 +66379-66399 +66400-66424 +66425-66439 +66440-66456 +66457-66487 +66488-66507 +66508-66525 +66526-66542 +66543-66558 +66559-66573 +66574-66590 +66591-66606 +66607-66623 +66624-66636 +66637-66648 +66649-66681 +66682-66696 +66697-66721 +66722-66746 +66747-66758 +66759-66768 +66769-66791 +66792-66810 +66811-66824 +66825-66846 +66847-66856 +66857-66878 +66879-66893 +66894-66910 +66911-66938 +66939-66958 +66959-66978 +66979-67004 +67005-67014 +67015-67035 +67036-67056 +67057-67080 +67081-67105 +67106-67125 +67126-67145 +67146-67160 +67161-67177 +67178-67191 +67192-67203 +67204-67222 +67223-67248 +67249-67275 +67276-67292 +67293-67301 +67302-67316 +67317-67333 +67334-67360 +67361-67383 +67384-67397 +67398-67419 +67420-67431 +67432-67442 +67443-67465 +67466-67484 +67485-67500 +67501-67513 +67514-67527 +67528-67542 +67543-67578 +67579-67591 +67592-67612 +67613-67633 +67634-67656 +67657-67674 +67675-67686 +67687-67714 +67715-67727 +67728-67740 +67741-67758 +67759-67777 +67778-67785 +67786-67805 +67806-67820 +67821-67849 +67850-67873 +67874-67899 +67900-67916 +67917-67931 +67932-67946 +67947-67963 +67964-67988 +67989-68008 +68009-68026 +68027-68036 +68037-68067 +68068-68078 +68079-68101 +68102-68115 +68116-68138 +68139-68149 +68150-68164 +68165-68183 +68184-68203 +68204-68224 +68225-68241 +68242-68249 +68250-68276 +68277-68298 +68299-68324 +68325-68351 +68352-68372 +68373-68394 +68395-68420 +68421-68435 +68436-68464 +68465-68483 +68484-68495 +68496-68512 +68513-68528 +68529-68540 +68541-68560 +68561-68580 +68581-68592 +68593-68610 +68611-68629 +68630-68643 +68644-68657 +68658-68675 +68676-68688 +68689-68706 +68707-68726 +68727-68742 +68743-68753 +68754-68770 +68771-68787 +68788-68801 +68802-68821 +68822-68841 +68842-68867 +68868-68896 +68897-68916 +68917-68936 +68937-68966 +68967-68984 +68985-69008 +69009-69027 +69028-69058 +69059-69081 +69082-69105 +69106-69132 +69133-69145 +69146-69150 +69151-69161 +69162-69184 +69185-69191 +69192-69211 +69212-69235 +69236-69245 +69246-69258 +69259-69277 +69278-69294 +69295-69307 +69308-69326 +69327-69339 +69340-69357 +69358-69391 +69392-69403 +69404-69420 +69421-69428 +69429-69440 +69441-69460 +69461-69476 +69477-69484 +69485-69505 +69506-69522 +69523-69533 +69534-69554 +69555-69574 +69575-69594 +69595-69603 +69604-69620 +69621-69630 +69631-69648 +69649-69663 +69664-69685 +69686-69705 +69706-69725 +69726-69735 +69736-69754 +69755-69773 +69774-69797 +69798-69821 +69822-69835 +69836-69847 +69848-69864 +69865-69884 +69885-69912 +69913-69932 +69933-69953 +69954-69970 +69971-69990 +69991-70010 +70011-70034 +70035-70051 +70052-70067 +70068-70091 +70092-70108 +70109-70122 +70123-70135 +70136-70150 +70151-70165 +70166-70184 +70185-70195 +70196-70218 +70219-70242 +70243-70254 +70255-70273 +70274-70287 +70288-70313 +70314-70325 +70326-70361 +70362-70375 +70376-70388 +70389-70403 +70404-70434 +70435-70451 +70452-70461 +70462-70480 +70481-70494 +70495-70511 +70512-70542 +70543-70557 +70558-70569 +70570-70582 +70583-70610 +70611-70624 +70625-70640 +70641-70657 +70658-70672 +70673-70693 +70694-70707 +70708-70732 +70733-70762 +70763-70792 +70793-70808 +70809-70821 +70822-70832 +70833-70845 +70846-70866 +70867-70886 +70887-70913 +70914-70926 +70927-70937 +70938-70955 +70956-70964 +70965-70982 +70983-70995 +70996-71013 +71014-71027 +71028-71037 +71038-71050 +71051-71064 +71065-71077 +71078-71108 +71109-71118 +71119-71133 +71134-71146 +71147-71164 +71165-71198 +71199-71218 +71219-71239 +71240-71255 +71256-71267 +71268-71275 +71276-71300 +71301-71311 +71312-71339 +71340-71354 +71355-71372 +71373-71398 +71399-71413 +71414-71426 +71427-71442 +71443-71461 +71462-71491 +71492-71511 +71512-71524 +71525-71547 +71548-71567 +71568-71584 +71585-71602 +71603-71623 +71624-71635 +71636-71654 +71655-71669 +71670-71690 +71691-71702 +71703-71712 +71713-71719 +71720-71746 +71747-71767 +71768-71778 +71779-71792 +71793-71807 +71808-71819 +71820-71836 +71837-71861 +71862-71884 +71885-71898 +71899-71917 +71918-71935 +71936-71960 +71961-71980 +71981-72006 +72007-72028 +72029-72043 +72044-72063 +72064-72083 +72084-72099 +72100-72105 +72106-72132 +72133-72143 +72144-72166 +72167-72184 +72185-72196 +72197-72213 +72214-72220 +72221-72236 +72237-72256 +72257-72277 +72278-72305 +72306-72336 +72337-72361 +72362-72379 +72380-72412 +72413-72443 +72444-72463 +72464-72475 +72476-72497 +72498-72515 +72516-72526 +72527-72556 +72557-72571 +72572-72591 +72592-72622 +72623-72637 +72638-72646 +72647-72664 +72665-72672 +72673-72687 +72688-72718 +72719-72743 +72744-72753 +72754-72769 +72770-72788 +72789-72804 +72805-72824 +72825-72843 +72844-72854 +72855-72876 +72877-72904 +72905-72917 +72918-72938 +72939-72959 +72960-72987 +72988-73003 +73004-73031 +73032-73040 +73041-73051 +73052-73064 +73065-73082 +73083-73111 +73112-73124 +73125-73137 +73138-73165 +73166-73184 +73185-73207 +73208-73216 +73217-73231 +73232-73238 +73239-73259 +73260-73269 +73270-73295 +73296-73316 +73317-73328 +73329-73348 +73349-73356 +73357-73379 +73380-73385 +73386-73394 +73395-73418 +73419-73431 +73432-73458 +73459-73472 +73473-73487 +73488-73520 +73521-73540 +73541-73559 +73560-73569 +73570-73598 +73599-73610 +73611-73618 +73619-73643 +73644-73657 +73658-73683 +73684-73701 +73702-73718 +73719-73731 +73732-73734 +73735-73751 +73752-73766 +73767-73779 +73780-73799 +73800-73815 +73816-73837 +73838-73853 +73854-73890 +73891-73903 +73904-73923 +73924-73934 +73935-73956 +73957-73975 +73976-73993 +73994-74015 +74016-74031 +74032-74039 +74040-74048 +74049-74064 +74065-74084 +74085-74092 +74093-74112 +74113-74147 +74148-74172 +74173-74194 +74195-74215 +74216-74227 +74228-74262 +74263-74276 +74277-74290 +74291-74312 +74313-74325 +74326-74348 +74349-74360 +74361-74374 +74375-74383 +74384-74401 +74402-74426 +74427-74429 +74430-74442 +74443-74459 +74460-74477 +74478-74511 +74512-74534 +74535-74550 +74551-74566 +74567-74579 +74580-74591 +74592-74608 +74609-74623 +74624-74637 +74638-74643 +74644-74659 +74660-74672 +74673-74690 +74691-74715 +74716-74725 +74726-74744 +74745-74761 +74762-74774 +74775-74783 +74784-74806 +74807-74815 +74816-74844 +74845-74864 +74865-74877 +74878-74895 +74896-74912 +74913-74919 +74920-74941 +74942-74959 +74960-74972 +74973-74992 +74993-75013 +75014-75036 +75037-75061 +75062-75083 +75084-75105 +75106-75133 +75134-75158 +75159-75173 +75174-75185 +75186-75200 +75201-75214 +75215-75232 +75233-75248 +75249-75270 +75271-75292 +75293-75306 +75307-75318 +75319-75330 +75331-75345 +75346-75359 +75360-75380 +75381-75394 +75395-75407 +75408-75429 +75430-75457 +75458-75472 +75473-75483 +75484-75499 +75500-75514 +75515-75532 +75533-75556 +75557-75580 +75581-75607 +75608-75629 +75630-75645 +75646-75654 +75655-75666 +75667-75689 +75690-75713 +75714-75729 +75730-75757 +75758-75779 +75780-75803 +75804-75822 +75823-75843 +75844-75877 +75878-75897 +75898-75912 +75913-75930 +75931-75947 +75948-75970 +75971-75992 +75993-76008 +76009-76030 +76031-76049 +76050-76070 +76071-76092 +76093-76109 +76110-76131 +76132-76147 +76148-76154 +76155-76174 +76175-76183 +76184-76214 +76215-76229 +76230-76242 +76243-76266 +76267-76293 +76294-76313 +76314-76333 +76334-76350 +76351-76371 +76372-76384 +76385-76402 +76403-76414 +76415-76442 +76443-76463 +76464-76469 +76470-76485 +76486-76513 +76514-76529 +76530-76538 +76539-76553 +76554-76565 +76566-76581 +76582-76599 +76600-76623 +76624-76646 +76647-76670 +76671-76684 +76685-76705 +76706-76725 +76726-76738 +76739-76760 +76761-76769 +76770-76787 +76788-76794 +76795-76811 +76812-76836 +76837-76857 +76858-76869 +76870-76894 +76895-76923 +76924-76933 +76934-76952 +76953-76979 +76980-77005 +77006-77016 +77017-77038 +77039-77048 +77049-77078 +77079-77096 +77097-77108 +77109-77123 +77124-77143 +77144-77172 +77173-77209 +77210-77221 +77222-77240 +77241-77252 +77253-77270 +77271-77289 +77290-77309 +77310-77328 +77329-77355 +77356-77368 +77369-77380 +77381-77400 +77401-77410 +77411-77437 +77438-77455 +77456-77469 +77470-77490 +77491-77511 +77512-77518 +77519-77542 +77543-77566 +77567-77576 +77577-77605 +77606-77623 +77624-77639 +77640-77648 +77649-77670 +77671-77682 +77683-77701 +77702-77729 +77730-77741 +77742-77766 +77767-77784 +77785-77800 +77801-77816 +77817-77833 +77834-77850 +77851-77879 +77880-77898 +77899-77912 +77913-77924 +77925-77951 +77952-77967 +77968-77981 +77982-77996 +77997-78020 +78021-78027 +78028-78042 +78043-78068 +78069-78079 +78080-78093 +78094-78113 +78114-78135 +78136-78143 +78144-78166 +78167-78185 +78186-78213 +78214-78226 +78227-78245 +78246-78267 +78268-78274 +78275-78286 +78287-78328 +78329-78344 +78345-78374 +78375-78385 +78386-78394 +78395-78412 +78413-78422 +78423-78437 +78438-78455 +78456-78480 +78481-78505 +78506-78512 +78513-78526 +78527-78556 +78557-78575 +78576-78607 +78608-78634 +78635-78670 +78671-78690 +78691-78714 +78715-78728 +78729-78749 +78750-78768 +78769-78792 +78793-78809 +78810-78818 +78819-78841 +78842-78863 +78864-78888 +78889-78911 +78912-78922 +78923-78935 +78936-78969 +78970-78985 +78986-79016 +79017-79035 +79036-79050 +79051-79068 +79069-79085 +79086-79109 +79110-79127 +79128-79141 +79142-79158 +79159-79183 +79184-79194 +79195-79209 +79210-79225 +79226-79244 +79245-79262 +79263-79284 +79285-79296 +79297-79320 +79321-79333 +79334-79353 +79354-79374 +79375-79392 +79393-79407 +79408-79426 +79427-79449 +79450-79480 +79481-79500 +79501-79512 +79513-79538 +79539-79547 +79548-79567 +79568-79598 +79599-79612 +79613-79627 +79628-79656 +79657-79683 +79684-79708 +79709-79727 +79728-79736 +79737-79754 +79755-79786 +79787-79804 +79805-79824 +79825-79851 +79852-79869 +79870-79893 +79894-79926 +79927-79941 +79942-79966 +79967-79978 +79979-79984 +79985-79991 +79992-80012 +80013-80026 +80027-80042 +80043-80063 +80064-80080 +80081-80093 +80094-80109 +80110-80122 +80123-80139 +80140-80161 +80162-80184 +80185-80194 +80195-80209 +80210-80231 +80232-80240 +80241-80253 +80254-80262 +80263-80286 +80287-80302 +80303-80324 +80325-80333 +80334-80361 +80362-80378 +80379-80394 +80395-80407 +80408-80421 +80422-80439 +80440-80451 +80452-80470 +80471-80491 +80492-80507 +80508-80533 +80534-80559 +80560-80576 +80577-80597 +80598-80610 +80611-80626 +80627-80642 +80643-80658 +80659-80674 +80675-80697 +80698-80716 +80717-80735 +80736-80757 +80758-80779 +80780-80807 +80808-80820 +80821-80835 +80836-80858 +80859-80876 +80877-80903 +80904-80919 +80920-80931 +80932-80951 +80952-80968 +80969-80988 +80989-81003 +81004-81037 +81038-81071 +81072-81087 +81088-81114 +81115-81127 +81128-81145 +81146-81161 +81162-81178 +81179-81199 +81200-81215 +81216-81231 +81232-81251 +81252-81261 +81262-81276 +81277-81301 +81302-81322 +81323-81335 +81336-81356 +81357-81381 +81382-81397 +81398-81423 +81424-81437 +81438-81468 +81469-81477 +81478-81506 +81507-81516 +81517-81545 +81546-81563 +81564-81582 +81583-81596 +81597-81621 +81622-81629 +81630-81641 +81642-81674 +81675-81688 +81689-81704 +81705-81718 +81719-81740 +81741-81759 +81760-81779 +81780-81790 +81791-81805 +81806-81819 +81820-81840 +81841-81856 +81857-81876 +81877-81902 +81903-81917 +81918-81946 +81947-81958 +81959-81970 +81971-81982 +81983-81994 +81995-82013 +82014-82021 +82022-82030 +82031-82051 +82052-82082 +82083-82098 +82099-82112 +82113-82131 +82132-82146 +82147-82153 +82154-82174 +82175-82188 +82189-82204 +82205-82226 +82227-82245 +82246-82257 +82258-82278 +82279-82298 +82299-82313 +82314-82321 +82322-82332 +82333-82344 +82345-82366 +82367-82390 +82391-82412 +82413-82425 +82426-82447 +82448-82470 +82471-82479 +82480-82503 +82504-82524 +82525-82555 +82556-82567 +82568-82594 +82595-82616 +82617-82640 +82641-82655 +82656-82668 +82669-82682 +82683-82689 +82690-82704 +82705-82719 +82720-82745 +82746-82761 +82762-82801 +82802-82814 +82815-82829 +82830-82849 +82850-82875 +82876-82894 +82895-82930 +82931-82939 +82940-82965 +82966-82986 +82987-83021 +83022-83037 +83038-83051 +83052-83068 +83069-83078 +83079-83087 +83088-83098 +83099-83115 +83116-83132 +83133-83140 +83141-83161 +83162-83182 +83183-83205 +83206-83224 +83225-83238 +83239-83253 +83254-83283 +83284-83293 +83294-83304 +83305-83323 +83324-83341 +83342-83359 +83360-83373 +83374-83396 +83397-83418 +83419-83422 +83423-83440 +83441-83460 +83461-83485 +83486-83507 +83508-83542 +83543-83562 +83563-83575 +83576-83584 +83585-83588 +83589-83611 +83612-83633 +83634-83648 +83649-83669 +83670-83692 +83693-83711 +83712-83718 +83719-83732 +83733-83747 +83748-83763 +83764-83779 +83780-83786 +83787-83801 +83802-83815 +83816-83834 +83835-83858 +83859-83875 +83876-83887 +83888-83899 +83900-83909 +83910-83924 +83925-83936 +83937-83946 +83947-83958 +83959-83971 +83972-83988 +83989-84004 +84005-84021 +84022-84037 +84038-84060 +84061-84072 +84073-84085 +84086-84099 +84100-84125 +84126-84146 +84147-84155 +84156-84176 +84177-84199 +84200-84214 +84215-84222 +84223-84232 +84233-84245 +84246-84260 +84261-84267 +84268-84273 +84274-84280 +84281-84285 +84286-84293 +84294-84317 +84318-84332 +84333-84346 +84347-84361 +84362-84370 +84371-84382 +84383-84404 +84405-84430 +84431-84445 +84446-84453 +84454-84464 +84465-84478 +84479-84489 +84490-84499 +84500-84511 +84512-84526 +84527-84538 +84539-84555 +84556-84570 +84571-84580 +84581-84588 +84589-84609 +84610-84624 +84625-84653 +84654-84675 +84676-84696 +84697-84709 +84710-84721 +84722-84754 +84755-84777 +84778-84798 +84799-84817 +84818-84835 +84836-84844 +84845-84850 +84851-84859 +84860-84877 +84878-84889 +84890-84904 +84905-84927 +84928-84942 +84943-84950 +84951-84971 +84972-84983 +84984-84998 +84999-85016 +85017-85031 +85032-85052 +85053-85073 +85074-85103 +85104-85117 +85118-85141 +85142-85180 +85181-85204 +85205-85237 +85238-85259 +85260-85282 +85283-85297 +85298-85321 +85322-85331 +85332-85342 +85343-85355 +85356-85382 +85383-85396 +85397-85416 +85417-85423 +85424-85433 +85434-85445 +85446-85458 +85459-85475 +85476-85491 +85492-85517 +85518-85530 +85531-85543 +85544-85564 +85565-85582 +85583-85590 +85591-85624 +85625-85634 +85635-85648 +85649-85669 +85670-85688 +85689-85705 +85706-85725 +85726-85754 +85755-85780 +85781-85804 +85805-85824 +85825-85854 +85855-85872 +85873-85885 +85886-85899 +85900-85913 +85914-85926 +85927-85956 +85957-85971 +85972-85987 +85988-85999 +86000-86011 +86012-86036 +86037-86049 +86050-86067 +86068-86082 +86083-86092 +86093-86120 +86121-86132 +86133-86156 +86157-86164 +86165-86184 +86185-86214 +86215-86230 +86231-86246 +86247-86260 +86261-86278 +86279-86287 +86288-86313 +86314-86330 +86331-86362 +86363-86374 +86375-86390 +86391-86399 +86400-86417 +86418-86428 +86429-86444 +86445-86461 +86462-86473 +86474-86487 +86488-86507 +86508-86519 +86520-86543 +86544-86559 +86560-86568 +86569-86592 +86593-86609 +86610-86625 +86626-86644 +86645-86662 +86663-86675 +86676-86697 +86698-86705 +86706-86726 +86727-86747 +86748-86760 +86761-86769 +86770-86786 +86787-86809 +86810-86823 +86824-86834 +86835-86852 +86853-86873 +86874-86894 +86895-86911 +86912-86924 +86925-86943 +86944-86958 +86959-86972 +86973-86989 +86990-87004 +87005-87013 +87014-87023 +87024-87036 +87037-87048 +87049-87077 +87078-87086 +87087-87098 +87099-87118 +87119-87140 +87141-87162 +87163-87177 +87178-87189 +87190-87207 +87208-87224 +87225-87245 +87246-87255 +87256-87275 +87276-87291 +87292-87300 +87301-87315 +87316-87333 +87334-87350 +87351-87361 +87362-87378 +87379-87387 +87388-87402 +87403-87424 +87425-87436 +87437-87461 +87462-87484 +87485-87494 +87495-87505 +87506-87524 +87525-87533 +87534-87551 +87552-87566 +87567-87581 +87582-87592 +87593-87615 +87616-87635 +87636-87651 +87652-87668 +87669-87689 +87690-87714 +87715-87731 +87732-87747 +87748-87759 +87760-87771 +87772-87787 +87788-87808 +87809-87827 +87828-87841 +87842-87861 +87862-87879 +87880-87896 +87897-87907 +87908-87922 +87923-87938 +87939-87960 +87961-87976 +87977-87983 +87984-87997 +87998-88010 +88011-88034 +88035-88050 +88051-88075 +88076-88104 +88105-88120 +88121-88132 +88133-88147 +88148-88156 +88157-88169 +88170-88182 +88183-88194 +88195-88212 +88213-88222 +88223-88229 +88230-88247 +88248-88270 +88271-88297 +88298-88328 +88329-88345 +88346-88359 +88360-88376 +88377-88387 +88388-88405 +88406-88414 +88415-88423 +88424-88433 +88434-88442 +88443-88450 +88451-88457 +88458-88463 +88464-88481 +88482-88491 +88492-88500 +88501-88517 +88518-88539 +88540-88551 +88552-88571 +88572-88587 +88588-88613 +88614-88644 +88645-88657 +88658-88671 +88672-88695 +88696-88710 +88711-88738 +88739-88750 +88751-88771 +88772-88790 +88791-88807 +88808-88821 +88822-88831 +88832-88841 +88842-88861 +88862-88882 +88883-88900 +88901-88926 +88927-88935 +88936-88958 +88959-88971 +88972-88993 +88994-89010 +89011-89020 +89021-89036 +89037-89056 +89057-89078 +89079-89084 +89085-89103 +89104-89117 +89118-89130 +89131-89149 +89150-89164 +89165-89182 +89183-89200 +89201-89214 +89215-89224 +89225-89242 +89243-89263 +89264-89281 +89282-89296 +89297-89309 +89310-89325 +89326-89346 +89347-89355 +89356-89369 +89370-89387 +89388-89412 +89413-89435 +89436-89453 +89454-89479 +89480-89490 +89491-89507 +89508-89530 +89531-89544 +89545-89558 +89559-89567 +89568-89586 +89587-89608 +89609-89616 +89617-89632 +89633-89653 +89654-89667 +89668-89678 +89679-89704 +89705-89723 +89724-89734 +89735-89743 +89744-89757 +89758-89783 +89784-89793 +89794-89814 +89815-89832 +89833-89839 +89840-89862 +89863-89869 +89870-89881 +89882-89892 +89893-89906 +89907-89923 +89924-89935 +89936-89946 +89947-89963 +89964-89975 +89976-89997 +89998-90021 +90022-90045 +90046-90067 +90068-90082 +90083-90092 +90093-90113 +90114-90133 +90134-90153 +90154-90168 +90169-90180 +90181-90211 +90212-90223 +90224-90240 +90241-90252 +90253-90260 +90261-90275 +90276-90290 +90291-90306 +90307-90341 +90342-90356 +90357-90376 +90377-90390 +90391-90400 +90401-90410 +90411-90423 +90424-90442 +90443-90460 +90461-90473 +90474-90490 +90491-90517 +90518-90526 +90527-90537 +90538-90551 +90552-90568 +90569-90586 +90587-90610 +90611-90628 +90629-90636 +90637-90656 +90657-90664 +90665-90682 +90683-90696 +90697-90709 +90710-90728 +90729-90741 +90742-90761 +90762-90779 +90780-90797 +90798-90821 +90822-90839 +90840-90868 +90869-90891 +90892-90907 +90908-90928 +90929-90939 +90940-90952 +90953-90967 +90968-90980 +90981-90998 +90999-91013 +91014-91031 +91032-91039 +91040-91052 +91053-91070 +91071-91079 +91080-91100 +91101-91113 +91114-91127 +91128-91150 +91151-91159 +91160-91173 +91174-91187 +91188-91208 +91209-91227 +91228-91248 +91249-91259 +91260-91268 +91269-91286 +91287-91292 +91293-91303 +91304-91313 +91314-91330 +91331-91345 +91346-91378 +91379-91407 +91408-91426 +91427-91443 +91444-91463 +91464-91482 +91483-91496 +91497-91506 +91507-91517 +91518-91528 +91529-91549 +91550-91555 +91556-91586 +91587-91595 +91596-91614 +91615-91625 +91626-91638 +91639-91657 +91658-91675 +91676-91693 +91694-91712 +91713-91730 +91731-91744 +91745-91762 +91763-91780 +91781-91788 +91789-91809 +91810-91835 +91836-91846 +91847-91858 +91859-91875 +91876-91895 +91896-91902 +91903-91915 +91916-91934 +91935-91943 +91944-91965 +91966-91973 +91974-91994 +91995-92007 +92008-92031 +92032-92047 +92048-92078 +92079-92092 +92093-92112 +92113-92131 +92132-92139 +92140-92160 +92161-92182 +92183-92193 +92194-92202 +92203-92217 +92218-92231 +92232-92254 +92255-92284 +92285-92292 +92293-92313 +92314-92326 +92327-92337 +92338-92351 +92352-92366 +92367-92389 +92390-92405 +92406-92434 +92435-92457 +92458-92473 +92474-92494 +92495-92505 +92506-92518 +92519-92527 +92528-92540 +92541-92556 +92557-92562 +92563-92572 +92573-92589 +92590-92604 +92605-92615 +92616-92639 +92640-92658 +92659-92676 +92677-92691 +92692-92706 +92707-92717 +92718-92751 +92752-92773 +92774-92795 +92796-92826 +92827-92841 +92842-92863 +92864-92879 +92880-92895 +92896-92905 +92906-92915 +92916-92934 +92935-92953 +92954-92980 +92981-93004 +93005-93020 +93021-93032 +93033-93055 +93056-93069 +93070-93084 +93085-93104 +93105-93124 +93125-93143 +93144-93151 +93152-93158 +93159-93177 +93178-93187 +93188-93213 +93214-93225 +93226-93241 +93242-93264 +93265-93277 +93278-93304 +93305-93323 +93324-93336 +93337-93362 +93363-93380 +93381-93392 +93393-93414 +93415-93426 +93427-93451 +93452-93466 +93467-93482 +93483-93492 +93493-93511 +93512-93527 +93528-93540 +93541-93554 +93555-93575 +93576-93588 +93589-93595 +93596-93614 +93615-93628 +93629-93643 +93644-93660 +93661-93672 +93673-93685 +93686-93696 +93697-93713 +93714-93720 +93721-93750 +93751-93757 +93758-93764 +93765-93788 +93789-93804 +93805-93818 +93819-93830 +93831-93847 +93848-93863 +93864-93871 +93872-93883 +93884-93891 +93892-93902 +93903-93911 +93912-93930 +93931-93947 +93948-93967 +93968-93977 +93978-93990 +93991-94001 +94002-94017 +94018-94023 +94024-94037 +94038-94060 +94061-94072 +94073-94093 +94094-94109 +94110-94128 +94129-94138 +94139-94151 +94152-94164 +94165-94175 +94176-94195 +94196-94206 +94207-94220 +94221-94234 +94235-94250 +94251-94265 +94266-94281 +94282-94296 +94297-94307 +94308-94323 +94324-94353 +94354-94374 +94375-94393 +94394-94421 +94422-94440 +94441-94462 +94463-94477 +94478-94491 +94492-94502 +94503-94509 +94510-94521 +94522-94530 +94531-94548 +94549-94557 +94558-94571 +94572-94594 +94595-94602 +94603-94610 +94611-94624 +94625-94634 +94635-94651 +94652-94665 +94666-94683 +94684-94698 +94699-94723 +94724-94747 +94748-94757 +94758-94778 +94779-94800 +94801-94814 +94815-94829 +94830-94839 +94840-94847 +94848-94869 +94870-94881 +94882-94899 +94900-94917 +94918-94932 +94933-94948 +94949-94957 +94958-94981 +94982-94993 +94994-95005 +95006-95018 +95019-95037 +95038-95065 +95066-95086 +95087-95100 +95101-95112 +95113-95121 +95122-95129 +95130-95143 +95144-95151 +95152-95160 +95161-95179 +95180-95201 +95202-95215 +95216-95226 +95227-95242 +95243-95252 +95253-95262 +95263-95289 +95290-95316 +95317-95338 +95339-95349 +95350-95369 +95370-95380 +95381-95398 +95399-95413 +95414-95420 +95421-95434 +95435-95453 +95454-95476 +95477-95486 +95487-95494 +95495-95513 +95514-95528 +95529-95550 +95551-95571 +95572-95593 +95594-95609 +95610-95632 +95633-95653 +95654-95669 +95670-95683 +95684-95693 +95694-95701 +95702-95713 +95714-95718 +95719-95733 +95734-95751 +95752-95769 +95770-95782 +95783-95797 +95798-95802 +95803-95814 +95815-95821 +95822-95837 +95838-95852 +95853-95870 +95871-95883 +95884-95890 +95891-95906 +95907-95913 +95914-95921 +95922-95940 +95941-95971 +95972-95981 +95982-95999 +96000-96008 +96009-96023 +96024-96046 +96047-96054 +96055-96069 +96070-96076 +96077-96090 +96091-96099 +96100-96109 +96110-96123 +96124-96139 +96140-96159 +96160-96173 +96174-96178 +96179-96199 +96200-96223 +96224-96241 +96242-96247 +96248-96263 +96264-96283 +96284-96290 +96291-96304 +96305-96315 +96316-96324 +96325-96343 +96344-96357 +96358-96378 +96379-96396 +96397-96413 +96414-96425 +96426-96437 +96438-96450 +96451-96467 +96468-96478 +96479-96489 +96490-96504 +96505-96517 +96518-96536 +96537-96546 +96547-96565 +96566-96578 +96579-96602 +96603-96612 +96613-96626 +96627-96641 +96642-96665 +96666-96683 +96684-96703 +96704-96719 +96720-96729 +96730-96739 +96740-96754 +96755-96773 +96774-96780 +96781-96790 +96791-96807 +96808-96827 +96828-96854 +96855-96861 +96862-96866 +96867-96886 +96887-96898 +96899-96914 +96915-96926 +96927-96946 +96947-96956 +96957-96962 +96963-96972 +96973-96979 +96980-96988 +96989-97017 +97018-97029 +97030-97047 +97048-97073 +97074-97091 +97092-97117 +97118-97135 +97136-97162 +97163-97185 +97186-97200 +97201-97220 +97221-97254 +97255-97272 +97273-97293 +97294-97306 +97307-97326 +97327-97351 +97352-97367 +97368-97396 +97397-97416 +97417-97428 +97429-97442 +97443-97459 +97460-97475 +97476-97487 +97488-97503 +97504-97528 +97529-97553 +97554-97568 +97569-97578 +97579-97593 +97594-97600 +97601-97615 +97616-97633 +97634-97645 +97646-97661 +97662-97681 +97682-97704 +97705-97717 +97718-97736 +97737-97760 +97761-97776 +97777-97792 +97793-97816 +97817-97826 +97827-97844 +97845-97863 +97864-97895 +97896-97905 +97906-97920 +97921-97934 +97935-97946 +97947-97953 +97954-97975 +97976-98001 +98002-98014 +98015-98023 +98024-98035 +98036-98056 +98057-98066 +98067-98096 +98097-98109 +98110-98138 +98139-98152 +98153-98178 +98179-98198 +98199-98208 +98209-98216 +98217-98236 +98237-98258 +98259-98269 +98270-98288 +98289-98304 +98305-98324 +98325-98343 +98344-98358 +98359-98376 +98377-98397 +98398-98410 +98411-98417 +98418-98440 +98441-98455 +98456-98469 +98470-98476 +98477-98490 +98491-98500 +98501-98525 +98526-98544 +98545-98567 +98568-98574 +98575-98592 +98593-98609 +98610-98628 +98629-98641 +98642-98660 +98661-98683 +98684-98699 +98700-98714 +98715-98727 +98728-98747 +98748-98757 +98758-98774 +98775-98786 +98787-98800 +98801-98815 +98816-98827 +98828-98841 +98842-98857 +98858-98868 +98869-98878 +98879-98888 +98889-98904 +98905-98916 +98917-98948 +98949-98964 +98965-98980 +98981-98999 +99000-99007 +99008-99024 +99025-99045 +99046-99065 +99066-99078 +99079-99111 +99112-99135 +99136-99155 +99156-99172 +99173-99204 +99205-99232 +99233-99255 +99256-99280 +99281-99300 +99301-99307 +99308-99322 +99323-99345 +99346-99353 +99354-99369 +99370-99384 +99385-99401 +99402-99428 +99429-99444 +99445-99465 +99466-99486 +99487-99505 +99506-99518 +99519-99528 +99529-99552 +99553-99565 +99566-99580 +99581-99592 +99593-99608 +99609-99636 +99637-99650 +99651-99661 +99662-99683 +99684-99699 +99700-99717 +99718-99732 +99733-99754 +99755-99776 +99777-99797 +99798-99823 +99824-99840 +99841-99857 +99858-99878 +99879-99891 +99892-99914 +99915-99927 +99928-99949 +99950-99978 +99979-99993 +99994-100001 +100002-100026 +100027-100046 +100047-100054 +100055-100071 +100072-100089 +100090-100101 +100102-100123 +100124-100146 +100147-100156 +100157-100174 +100175-100191 +100192-100214 +100215-100237 +100238-100256 +100257-100280 +100281-100293 +100294-100299 +100300-100312 +100313-100322 +100323-100337 +100338-100363 +100364-100389 +100390-100396 +100397-100414 +100415-100430 +100431-100439 +100440-100467 +100468-100485 +100486-100494 +100495-100514 +100515-100524 +100525-100535 +100536-100555 +100556-100576 +100577-100592 +100593-100600 +100601-100607 +100608-100628 +100629-100646 +100647-100656 +100657-100675 +100676-100682 +100683-100693 +100694-100717 +100718-100734 +100735-100748 +100749-100759 +100760-100767 +100768-100784 +100785-100797 +100798-100811 +100812-100823 +100824-100850 +100851-100867 +100868-100881 +100882-100895 +100896-100920 +100921-100942 +100943-100952 +100953-100981 +100982-101001 +101002-101022 +101023-101039 +101040-101061 +101062-101092 +101093-101108 +101109-101120 +101121-101130 +101131-101149 +101150-101167 +101168-101193 +101194-101221 +101222-101235 +101236-101259 +101260-101276 +101277-101301 +101302-101323 +101324-101332 +101333-101358 +101359-101369 +101370-101384 +101385-101408 +101409-101427 +101428-101437 +101438-101457 +101458-101477 +101478-101487 +101488-101499 +101500-101523 +101524-101532 +101533-101547 +101548-101565 +101566-101581 +101582-101596 +101597-101616 +101617-101631 +101632-101645 +101646-101665 +101666-101684 +101685-101700 +101701-101718 +101719-101736 +101737-101751 +101752-101764 +101765-101775 +101776-101785 +101786-101797 +101798-101813 +101814-101819 +101820-101832 +101833-101858 +101859-101868 +101869-101887 +101888-101902 +101903-101926 +101927-101939 +101940-101953 +101954-101985 +101986-101996 +101997-102009 +102010-102031 +102032-102045 +102046-102075 +102076-102083 +102084-102122 +102123-102138 +102139-102148 +102149-102159 +102160-102190 +102191-102205 +102206-102218 +102219-102234 +102235-102242 +102243-102249 +102250-102267 +102268-102277 +102278-102287 +102288-102309 +102310-102318 +102319-102346 +102347-102362 +102363-102376 +102377-102396 +102397-102417 +102418-102429 +102430-102458 +102459-102481 +102482-102498 +102499-102519 +102520-102530 +102531-102554 +102555-102572 +102573-102587 +102588-102599 +102600-102607 +102608-102618 +102619-102625 +102626-102648 +102649-102660 +102661-102675 +102676-102686 +102687-102699 +102700-102718 +102719-102727 +102728-102747 +102748-102760 +102761-102772 +102773-102795 +102796-102803 +102804-102811 +102812-102824 +102825-102835 +102836-102856 +102857-102873 +102874-102879 +102880-102890 +102891-102905 +102906-102916 +102917-102931 +102932-102942 +102943-102958 +102959-102975 +102976-102994 +102995-103014 +103015-103024 +103025-103049 +103050-103057 +103058-103071 +103072-103096 +103097-103105 +103106-103118 +103119-103130 +103131-103143 +103144-103153 +103154-103161 +103162-103176 +103177-103184 +103185-103191 +103192-103197 +103198-103217 +103218-103233 +103234-103239 +103240-103259 +103260-103275 +103276-103286 +103287-103296 +103297-103320 +103321-103328 +103329-103340 +103341-103349 +103350-103370 +103371-103383 +103384-103391 +103392-103405 +103406-103411 +103412-103418 +103419-103441 +103442-103452 +103453-103462 +103463-103481 +103482-103487 +103488-103498 +103499-103511 +103512-103535 +103536-103547 +103548-103564 +103565-103572 +103573-103589 +103590-103606 +103607-103628 +103629-103638 +103639-103655 +103656-103672 +103673-103685 +103686-103703 +103704-103715 +103716-103737 +103738-103754 +103755-103769 +103770-103781 +103782-103800 +103801-103809 +103810-103824 +103825-103847 +103848-103864 +103865-103877 +103878-103902 +103903-103917 +103918-103937 +103938-103948 +103949-103969 +103970-103997 +103998-104017 +104018-104034 +104035-104058 +104059-104073 +104074-104086 +104087-104096 +104097-104123 +104124-104153 +104154-104168 +104169-104180 +104181-104190 +104191-104210 +104211-104225 +104226-104232 +104233-104251 +104252-104270 +104271-104296 +104297-104313 +104314-104336 +104337-104355 +104356-104372 +104373-104383 +104384-104397 +104398-104413 +104414-104426 +104427-104437 +104438-104448 +104449-104461 +104462-104475 +104476-104486 +104487-104499 +104500-104519 +104520-104535 +104536-104554 +104555-104571 +104572-104590 +104591-104609 +104610-104622 +104623-104635 +104636-104649 +104650-104658 +104659-104668 +104669-104687 +104688-104702 +104703-104718 +104719-104735 +104736-104753 +104754-104772 +104773-104786 +104787-104797 +104798-104808 +104809-104822 +104823-104828 +104829-104842 +104843-104856 +104857-104867 +104868-104883 +104884-104898 +104899-104915 +104916-104929 +104930-104955 +104956-104978 +104979-104992 +104993-105022 +105023-105042 +105043-105064 +105065-105076 +105077-105083 +105084-105097 +105098-105113 +105114-105120 +105121-105135 +105136-105150 +105151-105161 +105162-105166 +105167-105185 +105186-105207 +105208-105222 +105223-105238 +105239-105254 +105255-105262 +105263-105285 +105286-105299 +105300-105311 +105312-105335 +105336-105353 +105354-105358 +105359-105371 +105372-105383 +105384-105389 +105390-105402 +105403-105412 +105413-105426 +105427-105441 +105442-105452 +105453-105460 +105461-105472 +105473-105484 +105485-105500 +105501-105515 +105516-105520 +105521-105528 +105529-105545 +105546-105560 +105561-105577 +105578-105587 +105588-105609 +105610-105629 +105630-105647 +105648-105653 +105654-105675 +105676-105689 +105690-105710 +105711-105722 +105723-105735 +105736-105745 +105746-105761 +105762-105780 +105781-105796 +105797-105805 +105806-105820 +105821-105848 +105849-105860 +105861-105875 +105876-105906 +105907-105925 +105926-105939 +105940-105949 +105950-105967 +105968-105982 +105983-106006 +106007-106025 +106026-106038 +106039-106060 +106061-106077 +106078-106091 +106092-106104 +106105-106124 +106125-106136 +106137-106145 +106146-106158 +106159-106172 +106173-106187 +106188-106224 +106225-106237 +106238-106254 +106255-106268 +106269-106280 +106281-106295 +106296-106311 +106312-106330 +106331-106345 +106346-106356 +106357-106371 +106372-106390 +106391-106408 +106409-106438 +106439-106447 +106448-106462 +106463-106481 +106482-106489 +106490-106507 +106508-106524 +106525-106555 +106556-106575 +106576-106593 +106594-106606 +106607-106625 +106626-106641 +106642-106654 +106655-106664 +106665-106673 +106674-106685 +106686-106700 +106701-106709 +106710-106724 +106725-106737 +106738-106749 +106750-106778 +106779-106794 +106795-106800 +106801-106820 +106821-106838 +106839-106855 +106856-106864 +106865-106880 +106881-106890 +106891-106900 +106901-106915 +106916-106927 +106928-106936 +106937-106958 +106959-106969 +106970-106992 +106993-107004 +107005-107017 +107018-107037 +107038-107055 +107056-107065 +107066-107084 +107085-107100 +107101-107113 +107114-107125 +107126-107136 +107137-107166 +107167-107189 +107190-107206 +107207-107215 +107216-107234 +107235-107250 +107251-107264 +107265-107280 +107281-107287 +107288-107300 +107301-107318 +107319-107338 +107339-107353 +107354-107377 +107378-107392 +107393-107402 +107403-107430 +107431-107437 +107438-107446 +107447-107465 +107466-107485 +107486-107510 +107511-107531 +107532-107550 +107551-107563 +107564-107583 +107584-107589 +107590-107596 +107597-107623 +107624-107636 +107637-107650 +107651-107669 +107670-107686 +107687-107700 +107701-107712 +107713-107724 +107725-107734 +107735-107745 +107746-107762 +107763-107775 +107776-107791 +107792-107809 +107810-107839 +107840-107855 +107856-107864 +107865-107892 +107893-107910 +107911-107927 +107928-107943 +107944-107961 +107962-107970 +107971-107980 +107981-108014 +108015-108025 +108026-108047 +108048-108055 +108056-108082 +108083-108096 +108097-108117 +108118-108149 +108150-108176 +108177-108195 +108196-108212 +108213-108237 +108238-108257 +108258-108272 +108273-108294 +108295-108317 +108318-108328 +108329-108336 +108337-108362 +108363-108373 +108374-108387 +108388-108414 +108415-108424 +108425-108437 +108438-108455 +108456-108476 +108477-108497 +108498-108518 +108519-108531 +108532-108549 +108550-108559 +108560-108580 +108581-108603 +108604-108618 +108619-108624 +108625-108638 +108639-108659 +108660-108676 +108677-108684 +108685-108697 +108698-108712 +108713-108731 +108732-108738 +108739-108748 +108749-108764 +108765-108776 +108777-108789 +108790-108808 +108809-108823 +108824-108843 +108844-108854 +108855-108874 +108875-108903 +108904-108925 +108926-108934 +108935-108944 +108945-108957 +108958-108967 +108968-108988 +108989-109000 +109001-109013 +109014-109023 +109024-109041 +109042-109049 +109050-109071 +109072-109078 +109079-109087 +109088-109102 +109103-109119 +109120-109136 +109137-109152 +109153-109173 +109174-109194 +109195-109220 +109221-109237 +109238-109246 +109247-109259 +109260-109282 +109283-109295 +109296-109309 +109310-109328 +109329-109342 +109343-109369 +109370-109378 +109379-109408 +109409-109426 +109427-109440 +109441-109474 +109475-109498 +109499-109520 +109521-109534 +109535-109557 +109558-109570 +109571-109592 +109593-109607 +109608-109618 +109619-109638 +109639-109659 +109660-109685 +109686-109700 +109701-109710 +109711-109732 +109733-109766 +109767-109799 +109800-109819 +109820-109841 +109842-109862 +109863-109879 +109880-109901 +109902-109910 +109911-109918 +109919-109943 +109944-109957 +109958-109973 +109974-109998 +109999-110029 +110030-110046 +110047-110054 +110055-110075 +110076-110093 +110094-110111 +110112-110130 +110131-110157 +110158-110186 +110187-110196 +110197-110210 +110211-110221 +110222-110234 +110235-110257 +110258-110268 +110269-110287 +110288-110305 +110306-110323 +110324-110338 +110339-110348 +110349-110368 +110369-110388 +110389-110411 +110412-110434 +110435-110458 +110459-110465 +110466-110478 +110479-110491 +110492-110512 +110513-110526 +110527-110540 +110541-110551 +110552-110561 +110562-110575 +110576-110593 +110594-110606 +110607-110617 +110618-110634 +110635-110647 +110648-110663 +110664-110681 +110682-110683 +110684-110685 +110686-110697 +110698-110701 +110702-110704 +110705-110710 +110711-110715 +110716-110745 +110746-110752 +110753-110756 +110757-110763 +110764-110773 +110774-110782 +110783-110798 +110799-110809 +110810-110835 +110836-110862 +110863-110880 +110881-110889 +110890-110908 +110909-110927 +110928-110943 +110944-110967 +110968-110992 +110993-111016 +111017-111033 +111034-111063 +111064-111087 +111088-111110 +111111-111120 +111121-111133 +111134-111148 +111149-111170 +111171-111186 +111187-111205 +111206-111220 +111221-111232 +111233-111260 +111261-111277 +111278-111294 +111295-111319 +111320-111331 +111332-111349 +111350-111363 +111364-111376 +111377-111389 +111390-111407 +111408-111433 +111434-111445 +111446-111466 +111467-111481 +111482-111498 +111499-111509 +111510-111527 +111528-111533 +111534-111551 +111552-111560 +111561-111580 +111581-111594 +111595-111604 +111605-111619 +111620-111636 +111637-111650 +111651-111666 +111667-111682 +111683-111688 +111689-111700 +111701-111711 +111712-111732 +111733-111745 +111746-111756 +111757-111773 +111774-111788 +111789-111803 +111804-111823 +111824-111847 +111848-111865 +111866-111885 +111886-111897 +111898-111910 +111911-111922 +111923-111941 +111942-111950 +111951-111960 +111961-111972 +111973-111982 +111983-111999 +112000-112014 +112015-112035 +112036-112044 +112045-112051 +112052-112063 +112064-112069 +112070-112080 +112081-112095 +112096-112105 +112106-112119 +112120-112127 +112128-112139 +112140-112152 +112153-112162 +112163-112180 +112181-112191 +112192-112199 +112200-112208 +112209-112217 +112218-112229 +112230-112246 +112247-112254 +112255-112275 +112276-112301 +112302-112320 +112321-112327 +112328-112345 +112346-112356 +112357-112363 +112364-112383 +112384-112395 +112396-112418 +112419-112425 +112426-112443 +112444-112447 +112448-112467 +112468-112476 +112477-112493 +112494-112505 +112506-112522 +112523-112532 +112533-112541 +112542-112546 +112547-112572 +112573-112591 +112592-112596 +112597-112602 +112603-112619 +112620-112629 +112630-112649 +112650-112660 +112661-112667 +112668-112688 +112689-112701 +112702-112708 +112709-112725 +112726-112739 +112740-112754 +112755-112767 +112768-112778 +112779-112798 +112799-112809 +112810-112823 +112824-112836 +112837-112850 +112851-112872 +112873-112898 +112899-112917 +112918-112934 +112935-112948 +112949-112956 +112957-112967 +112968-112974 +112975-112997 +112998-113017 +113018-113032 +113033-113053 +113054-113072 +113073-113086 +113087-113103 +113104-113123 +113124-113147 +113148-113155 +113156-113167 +113168-113181 +113182-113192 +113193-113206 +113207-113221 +113222-113246 +113247-113256 +113257-113282 +113283-113302 +113303-113316 +113317-113336 +113337-113363 +113364-113386 +113387-113395 +113396-113421 +113422-113437 +113438-113448 +113449-113463 +113464-113480 +113481-113489 +113490-113509 +113510-113521 +113522-113539 +113540-113545 +113546-113556 +113557-113567 +113568-113575 +113576-113586 +113587-113599 +113600-113613 +113614-113632 +113633-113640 +113641-113649 +113650-113659 +113660-113674 +113675-113687 +113688-113697 +113698-113710 +113711-113724 +113725-113750 +113751-113775 +113776-113795 +113796-113814 +113815-113825 +113826-113838 +113839-113853 +113854-113867 +113868-113877 +113878-113890 +113891-113896 +113897-113903 +113904-113914 +113915-113931 +113932-113940 +113941-113962 +113963-113979 +113980-113997 +113998-114020 +114021-114031 +114032-114043 +114044-114055 +114056-114074 +114075-114090 +114091-114102 +114103-114123 +114124-114137 +114138-114157 +114158-114170 +114171-114183 +114184-114194 +114195-114204 +114205-114235 +114236-114240 +114241-114258 +114259-114274 +114275-114279 +114280-114295 +114296-114310 +114311-114320 +114321-114335 +114336-114359 +114360-114384 +114385-114392 +114393-114402 +114403-114419 +114420-114429 +114430-114446 +114447-114458 +114459-114476 +114477-114494 +114495-114513 +114514-114529 +114530-114548 +114549-114555 +114556-114576 +114577-114588 +114589-114602 +114603-114616 +114617-114632 +114633-114642 +114643-114662 +114663-114679 +114680-114687 +114688-114699 +114700-114711 +114712-114718 +114719-114733 +114734-114738 +114739-114750 +114751-114764 +114765-114774 +114775-114792 +114793-114801 +114802-114821 +114822-114837 +114838-114856 +114857-114868 +114869-114880 +114881-114891 +114892-114912 +114913-114924 +114925-114947 +114948-114958 +114959-114969 +114970-114993 +114994-115009 +115010-115017 +115018-115026 +115027-115043 +115044-115054 +115055-115070 +115071-115087 +115088-115101 +115102-115116 +115117-115128 +115129-115140 +115141-115158 +115159-115175 +115176-115194 +115195-115204 +115205-115220 +115221-115232 +115233-115243 +115244-115252 +115253-115268 +115269-115288 +115289-115299 +115300-115319 +115320-115328 +115329-115338 +115339-115355 +115356-115368 +115369-115381 +115382-115396 +115397-115405 +115406-115412 +115413-115422 +115423-115434 +115435-115453 +115454-115483 +115484-115494 +115495-115521 +115522-115537 +115538-115555 +115556-115578 +115579-115598 +115599-115614 +115615-115624 +115625-115644 +115645-115665 +115666-115678 +115679-115689 +115690-115706 +115707-115725 +115726-115743 +115744-115754 +115755-115771 +115772-115782 +115783-115807 +115808-115832 +115833-115857 +115858-115875 +115876-115888 +115889-115907 +115908-115936 +115937-115949 +115950-115958 +115959-115982 +115983-115992 +115993-116007 +116008-116020 +116021-116037 +116038-116048 +116049-116063 +116064-116087 +116088-116100 +116101-116117 +116118-116129 +116130-116149 +116150-116161 +116162-116178 +116179-116198 +116199-116212 +116213-116230 +116231-116243 +116244-116258 +116259-116271 +116272-116279 +116280-116295 +116296-116315 +116316-116343 +116344-116364 +116365-116374 +116375-116389 +116390-116413 +116414-116426 +116427-116433 +116434-116453 +116454-116470 +116471-116501 +116502-116521 +116522-116536 +116537-116554 +116555-116571 +116572-116592 +116593-116603 +116604-116618 +116619-116633 +116634-116655 +116656-116669 +116670-116698 +116699-116707 +116708-116717 +116718-116726 +116727-116740 +116741-116771 +116772-116782 +116783-116802 +116803-116826 +116827-116836 +116837-116843 +116844-116859 +116860-116868 +116869-116882 +116883-116906 +116907-116920 +116921-116934 +116935-116957 +116958-116972 +116973-116986 +116987-117001 +117002-117011 +117012-117017 +117018-117032 +117033-117050 +117051-117069 +117070-117086 +117087-117101 +117102-117124 +117125-117145 +117146-117166 +117167-117179 +117180-117208 +117209-117222 +117223-117232 +117233-117244 +117245-117256 +117257-117268 +117269-117300 +117301-117310 +117311-117324 +117325-117341 +117342-117354 +117355-117366 +117367-117378 +117379-117390 +117391-117404 +117405-117418 +117419-117437 +117438-117445 +117446-117457 +117458-117470 +117471-117490 +117491-117508 +117509-117534 +117535-117556 +117557-117575 +117576-117589 +117590-117608 +117609-117625 +117626-117653 +117654-117669 +117670-117681 +117682-117703 +117704-117737 +117738-117776 +117777-117802 +117803-117816 +117817-117830 +117831-117842 +117843-117863 +117864-117873 +117874-117902 +117903-117918 +117919-117935 +117936-117957 +117958-117975 +117976-117996 +117997-118010 +118011-118031 +118032-118050 +118051-118069 +118070-118096 +118097-118122 +118123-118130 +118131-118143 +118144-118150 +118151-118186 +118187-118198 +118199-118212 +118213-118227 +118228-118246 +118247-118269 +118270-118286 +118287-118310 +118311-118322 +118323-118343 +118344-118372 +118373-118388 +118389-118395 +118396-118403 +118404-118418 +118419-118424 +118425-118441 +118442-118460 +118461-118476 +118477-118489 +118490-118508 +118509-118523 +118524-118535 +118536-118544 +118545-118556 +118557-118582 +118583-118594 +118595-118602 +118603-118615 +118616-118630 +118631-118638 +118639-118657 +118658-118667 +118668-118676 +118677-118694 +118695-118710 +118711-118722 +118723-118734 +118735-118761 +118762-118776 +118777-118783 +118784-118795 +118796-118809 +118810-118830 +118831-118840 +118841-118853 +118854-118864 +118865-118881 +118882-118893 +118894-118902 +118903-118908 +118909-118923 +118924-118950 +118951-118973 +118974-118993 +118994-119020 +119021-119038 +119039-119059 +119060-119072 +119073-119090 +119091-119117 +119118-119142 +119143-119150 +119151-119162 +119163-119182 +119183-119196 +119197-119205 +119206-119220 +119221-119231 +119232-119247 +119248-119263 +119264-119284 +119285-119293 +119294-119305 +119306-119320 +119321-119335 +119336-119352 +119353-119367 +119368-119376 +119377-119389 +119390-119411 +119412-119423 +119424-119439 +119440-119457 +119458-119469 +119470-119485 +119486-119503 +119504-119514 +119515-119526 +119527-119549 +119550-119576 +119577-119594 +119595-119602 +119603-119622 +119623-119633 +119634-119649 +119650-119664 +119665-119685 +119686-119707 +119708-119730 +119731-119739 +119740-119754 +119755-119767 +119768-119789 +119790-119804 +119805-119824 +119825-119837 +119838-119851 +119852-119862 +119863-119874 +119875-119888 +119889-119902 +119903-119915 +119916-119938 +119939-119961 +119962-119977 +119978-119993 +119994-120000 +120001-120003 +120004-120014 +120015-120027 +120028-120043 +120044-120061 +120062-120074 +120075-120094 +120095-120105 +120106-120125 +120126-120137 +120138-120158 +120159-120173 +120174-120184 +120185-120194 +120195-120212 +120213-120225 +120226-120253 +120254-120267 +120268-120276 +120277-120299 +120300-120329 +120330-120344 +120345-120357 +120358-120372 +120373-120377 +120378-120392 +120393-120401 +120402-120410 +120411-120424 +120425-120443 +120444-120458 +120459-120470 +120471-120478 +120479-120488 +120489-120500 +120501-120532 +120533-120550 +120551-120567 +120568-120577 +120578-120589 +120590-120594 +120595-120617 +120618-120631 +120632-120650 +120651-120657 +120658-120676 +120677-120686 +120687-120706 +120707-120716 +120717-120741 +120742-120758 +120759-120783 +120784-120798 +120799-120816 +120817-120844 +120845-120853 +120854-120877 +120878-120893 +120894-120903 +120904-120919 +120920-120930 +120931-120943 +120944-120961 +120962-120972 +120973-120983 +120984-121003 +121004-121014 +121015-121037 +121038-121049 +121050-121075 +121076-121090 +121091-121104 +121105-121120 +121121-121135 +121136-121155 +121156-121166 +121167-121183 +121184-121199 +121200-121210 +121211-121229 +121230-121250 +121251-121271 +121272-121287 +121288-121318 +121319-121336 +121337-121348 +121349-121366 +121367-121381 +121382-121394 +121395-121409 +121410-121426 +121427-121444 +121445-121455 +121456-121466 +121467-121485 +121486-121494 +121495-121513 +121514-121534 +121535-121547 +121548-121571 +121572-121587 +121588-121601 +121602-121613 +121614-121631 +121632-121642 +121643-121648 +121649-121675 +121676-121693 +121694-121713 +121714-121732 +121733-121747 +121748-121759 +121760-121769 +121770-121781 +121782-121791 +121792-121817 +121818-121843 +121844-121856 +121857-121863 +121864-121888 +121889-121901 +121902-121916 +121917-121932 +121933-121952 +121953-121984 +121985-121992 +121993-122012 +122013-122031 +122032-122047 +122048-122069 +122070-122084 +122085-122098 +122099-122116 +122117-122129 +122130-122148 +122149-122175 +122176-122187 +122188-122201 +122202-122212 +122213-122237 +122238-122253 +122254-122260 +122261-122274 +122275-122296 +122297-122324 +122325-122343 +122344-122355 +122356-122368 +122369-122375 +122376-122394 +122395-122408 +122409-122417 +122418-122430 +122431-122454 +122455-122471 +122472-122484 +122485-122503 +122504-122520 +122521-122534 +122535-122548 +122549-122554 +122555-122568 +122569-122587 +122588-122607 +122608-122625 +122626-122640 +122641-122665 +122666-122679 +122680-122694 +122695-122720 +122721-122731 +122732-122743 +122744-122757 +122758-122772 +122773-122783 +122784-122801 +122802-122813 +122814-122831 +122832-122849 +122850-122860 +122861-122872 +122873-122896 +122897-122912 +122913-122933 +122934-122940 +122941-122954 +122955-122974 +122975-122991 +122992-123008 +123009-123033 +123034-123042 +123043-123061 +123062-123081 +123082-123093 +123094-123110 +123111-123120 +123121-123135 +123136-123158 +123159-123179 +123180-123191 +123192-123212 +123213-123221 +123222-123244 +123245-123265 +123266-123280 +123281-123290 +123291-123304 +123305-123310 +123311-123330 +123331-123343 +123344-123353 +123354-123370 +123371-123381 +123382-123394 +123395-123399 +123400-123413 +123414-123451 +123452-123466 +123467-123484 +123485-123502 +123503-123516 +123517-123530 +123531-123556 +123557-123568 +123569-123585 +123586-123605 +123606-123622 +123623-123632 +123633-123642 +123643-123661 +123662-123674 +123675-123686 +123687-123699 +123700-123716 +123717-123738 +123739-123747 +123748-123770 +123771-123781 +123782-123792 +123793-123813 +123814-123827 +123828-123851 +123852-123875 +123876-123895 +123896-123913 +123914-123925 +123926-123944 +123945-123960 +123961-123978 +123979-123996 +123997-124011 +124012-124025 +124026-124043 +124044-124057 +124058-124079 +124080-124107 +124108-124123 +124124-124150 +124151-124161 +124162-124177 +124178-124204 +124205-124217 +124218-124236 +124237-124252 +124253-124267 +124268-124279 +124280-124291 +124292-124308 +124309-124321 +124322-124339 +124340-124354 +124355-124375 +124376-124394 +124395-124410 +124411-124425 +124426-124441 +124442-124456 +124457-124472 +124473-124486 +124487-124513 +124514-124532 +124533-124550 +124551-124566 +124567-124584 +124585-124602 +124603-124623 +124624-124644 +124645-124652 +124653-124674 +124675-124695 +124696-124717 +124718-124741 +124742-124754 +124755-124772 +124773-124787 +124788-124799 +124800-124821 +124822-124852 +124853-124868 +124869-124890 +124891-124913 +124914-124936 +124937-124966 +124967-124976 +124977-125000 +125001-125018 +125019-125046 +125047-125061 +125062-125081 +125082-125097 +125098-125117 +125118-125137 +125138-125149 +125150-125169 +125170-125191 +125192-125204 +125205-125226 +125227-125250 +125251-125267 +125268-125282 +125283-125309 +125310-125321 +125322-125336 +125337-125369 +125370-125391 +125392-125421 +125422-125440 +125441-125461 +125462-125487 +125488-125497 +125498-125518 +125519-125543 +125544-125560 +125561-125586 +125587-125599 +125600-125606 +125607-125648 +125649-125668 +125669-125684 +125685-125708 +125709-125730 +125731-125745 +125746-125760 +125761-125775 +125776-125791 +125792-125805 +125806-125832 +125833-125856 +125857-125886 +125887-125898 +125899-125927 +125928-125935 +125936-125956 +125957-125976 +125977-125998 +125999-126028 +126029-126040 +126041-126055 +126056-126072 +126073-126083 +126084-126101 +126102-126123 +126124-126150 +126151-126171 +126172-126191 +126192-126221 +126222-126241 +126242-126257 +126258-126289 +126290-126311 +126312-126323 +126324-126348 +126349-126374 +126375-126386 +126387-126406 +126407-126424 +126425-126438 +126439-126458 +126459-126491 +126492-126517 +126518-126544 +126545-126551 +126552-126582 +126583-126599 +126600-126622 +126623-126640 +126641-126659 +126660-126681 +126682-126698 +126699-126733 +126734-126738 +126739-126753 +126754-126778 +126779-126812 +126813-126833 +126834-126851 +126852-126869 +126870-126888 +126889-126906 +126907-126937 +126938-126947 +126948-126971 +126972-126985 +126986-127020 +127021-127026 +127027-127050 +127051-127064 +127065-127085 +127086-127102 +127103-127121 +127122-127144 +127145-127166 +127167-127177 +127178-127204 +127205-127225 +127226-127236 +127237-127262 +127263-127271 +127272-127281 +127282-127294 +127295-127309 +127310-127323 +127324-127335 +127336-127349 +127350-127359 +127360-127370 +127371-127382 +127383-127415 +127416-127435 +127436-127456 +127457-127469 +127470-127479 +127480-127490 +127491-127507 +127508-127514 +127515-127537 +127538-127567 +127568-127587 +127588-127609 +127610-127634 +127635-127648 +127649-127672 +127673-127690 +127691-127711 +127712-127734 +127735-127751 +127752-127767 +127768-127795 +127796-127814 +127815-127830 +127831-127846 +127847-127854 +127855-127867 +127868-127883 +127884-127888 +127889-127905 +127906-127920 +127921-127947 +127948-127975 +127976-127988 +127989-128008 +128009-128039 +128040-128072 +128073-128094 +128095-128119 +128120-128140 +128141-128172 +128173-128187 +128188-128218 +128219-128233 +128234-128250 +128251-128270 +128271-128288 +128289-128318 +128319-128346 +128347-128370 +128371-128383 +128384-128416 +128417-128443 +128444-128473 +128474-128485 +128486-128496 +128497-128524 +128525-128536 +128537-128563 +128564-128583 +128584-128609 +128610-128641 +128642-128661 +128662-128679 +128680-128717 +128718-128743 +128744-128753 +128754-128771 +128772-128808 +128809-128836 +128837-128862 +128863-128886 +128887-128900 +128901-128920 +128921-128948 +128949-128977 +128978-128985 +128986-129002 +129003-129014 +129015-129028 +129029-129038 +129039-129071 +129072-129090 +129091-129116 +129117-129137 +129138-129170 +129171-129180 +129181-129209 +129210-129239 +129240-129273 +129274-129301 +129302-129312 +129313-129364 +129365-129374 +129375-129398 +129399-129413 +129414-129429 +129430-129456 +129457-129488 +129489-129499 +129500-129527 +129528-129551 +129552-129561 +129562-129594 +129595-129610 +129611-129627 +129628-129653 +129654-129678 +129679-129703 +129704-129732 +129733-129773 +129774-129795 +129796-129824 +129825-129854 +129855-129872 +129873-129890 +129891-129910 +129911-129923 +129924-129952 +129953-129989 +129990-130001 +130002-130032 +130033-130066 +130067-130080 +130081-130106 +130107-130130 +130131-130181 +130182-130193 +130194-130216 +130217-130239 +130240-130252 +130253-130279 +130280-130309 +130310-130335 +130336-130349 +130350-130394 +130395-130419 +130420-130445 +130446-130475 +130476-130502 +130503-130521 +130522-130538 +130539-130571 +130572-130597 +130598-130610 +130611-130643 +130644-130671 +130672-130693 +130694-130709 +130710-130725 +130726-130740 +130741-130755 +130756-130771 +130772-130809 +130810-130827 +130828-130855 +130856-130886 +130887-130906 +130907-130938 +130939-130965 +130966-130981 +130982-131008 +131009-131022 +131023-131037 +131038-131070 +131071-131087 +131088-131115 +131116-131128 +131129-131162 +131163-131184 +131185-131203 +131204-131231 +131232-131257 +131258-131295 +131296-131327 +131328-131351 +131352-131379 +131380-131399 +131400-131429 +131430-131451 +131452-131475 +131476-131501 +131502-131514 +131515-131534 +131535-131554 +131555-131573 +131574-131585 +131586-131606 +131607-131626 +131627-131648 +131649-131661 +131662-131700 +131701-131725 +131726-131752 +131753-131802 +131803-131824 +131825-131856 +131857-131880 +131881-131897 +131898-131922 +131923-131944 +131945-131980 +131981-132005 +132006-132039 +132040-132071 +132072-132100 +132101-132116 +132117-132138 +132139-132164 +132165-132178 +132179-132194 +132195-132221 +132222-132257 +132258-132280 +132281-132303 +132304-132330 +132331-132356 +132357-132385 +132386-132410 +132411-132445 +132446-132457 +132458-132489 +132490-132512 +132513-132534 +132535-132578 +132579-132611 +132612-132637 +132638-132647 +132648-132672 +132673-132706 +132707-132732 +132733-132755 +132756-132780 +132781-132791 +132792-132823 +132824-132867 +132868-132891 +132892-132920 +132921-132937 +132938-132970 +132971-132988 +132989-133013 +133014-133041 +133042-133048 +133049-133075 +133076-133111 +133112-133136 +133137-133161 +133162-133177 +133178-133200 +133201-133224 +133225-133251 +133252-133256 +133257-133282 +133283-133300 +133301-133332 +133333-133350 +133351-133385 +133386-133413 +133414-133448 +133449-133472 +133473-133495 +133496-133528 +133529-133555 +133556-133588 +133589-133617 +133618-133627 +133628-133654 +133655-133686 +133687-133710 +133711-133741 +133742-133773 +133774-133807 +133808-133823 +133824-133856 +133857-133884 +133885-133917 +133918-133934 +133935-133950 +133951-133993 +133994-134020 +134021-134042 +134043-134067 +134068-134102 +134103-134138 +134139-134165 +134166-134180 +134181-134204 +134205-134229 +134230-134259 +134260-134283 +134284-134316 +134317-134340 +134341-134358 +134359-134377 +134378-134390 +134391-134407 +134408-134425 +134426-134451 +134452-134477 +134478-134499 +134500-134527 +134528-134551 +134552-134578 +134579-134599 +134600-134609 +134610-134631 +134632-134656 +134657-134690 +134691-134698 +134699-134728 +134729-134759 +134760-134778 +134779-134801 +134802-134832 +134833-134852 +134853-134875 +134876-134905 +134906-134953 +134954-134975 +134976-134992 +134993-135013 +135014-135036 +135037-135049 +135050-135075 +135076-135094 +135095-135123 +135124-135152 +135153-135170 +135171-135190 +135191-135217 +135218-135250 +135251-135278 +135279-135293 +135294-135315 +135316-135344 +135345-135370 +135371-135393 +135394-135421 +135422-135438 +135439-135475 +135476-135506 +135507-135533 +135534-135552 +135553-135575 +135576-135601 +135602-135616 +135617-135654 +135655-135676 +135677-135703 +135704-135738 +135739-135776 +135777-135791 +135792-135815 +135816-135846 +135847-135860 +135861-135883 +135884-135906 +135907-135932 +135933-135952 +135953-135968 +135969-135992 +135993-136029 +136030-136053 +136054-136075 +136076-136089 +136090-136105 +136106-136141 +136142-136158 +136159-136188 +136189-136217 +136218-136245 +136246-136288 +136289-136315 +136316-136334 +136335-136353 +136354-136383 +136384-136441 +136442-136457 +136458-136491 +136492-136504 +136505-136534 +136535-136561 +136562-136592 +136593-136617 +136618-136655 +136656-136683 +136684-136705 +136706-136722 +136723-136744 +136745-136766 +136767-136798 +136799-136825 +136826-136847 +136848-136874 +136875-136887 +136888-136923 +136924-136956 +136957-136981 +136982-136996 +136997-137020 +137021-137039 +137040-137057 +137058-137078 +137079-137111 +137112-137125 +137126-137140 +137141-137164 +137165-137188 +137189-137213 +137214-137232 +137233-137259 +137260-137278 +137279-137291 +137292-137302 +137303-137327 +137328-137345 +137346-137377 +137378-137400 +137401-137413 +137414-137441 +137442-137472 +137473-137486 +137487-137509 +137510-137534 +137535-137551 +137552-137571 +137572-137587 +137588-137603 +137604-137626 +137627-137647 +137648-137673 +137674-137696 +137697-137726 +137727-137761 +137762-137772 +137773-137779 +1-8 +1-8 +1-8 +2-8 +3-8 +3-6 +3-4 +5-6 +7-8 +9-90 +9-90 +9-12 +11-12 +13-17 +14-17 +16-17 +18-26 +19-26 +21-26 +21-22 +23-26 +24-26 +25-26 +27-37 +28-37 +30-34 +30-31 +32-34 +33-34 +35-37 +36-37 +38-42 +39-42 +41-42 +43-47 +44-47 +46-47 +48-52 +49-52 +51-52 +53-57 +54-57 +56-57 +58-62 +59-62 +61-62 +63-70 +64-70 +66-67 +68-70 +69-70 +71-78 +72-78 +74-75 +76-78 +77-78 +79-83 +80-83 +82-83 +84-90 +85-90 +87-90 +87-88 +89-90 +91-172 +91-172 +92-172 +92-99 +94-95 +96-99 +97-99 +98-99 +100-104 +101-104 +103-104 +105-109 +106-109 +108-109 +110-114 +111-114 +113-114 +115-119 +116-119 +118-119 +120-124 +121-124 +123-124 +125-129 +126-129 +128-129 +130-134 +131-134 +133-134 +135-139 +136-139 +138-139 +140-144 +141-144 +143-144 +145-149 +146-149 +148-149 +150-154 +151-154 +153-154 +155-159 +156-159 +158-159 +160-172 +161-172 +163-168 +163-164 +165-168 +166-168 +167-168 +169-172 +170-172 +171-172 +173-246 +173-246 +174-246 +174-181 +174-177 +175-177 +176-177 +180-181 +182-186 +183-186 +185-186 +187-191 +188-191 +190-191 +192-196 +193-196 +195-196 +197-201 +198-201 +200-201 +202-206 +203-206 +205-206 +207-211 +208-211 +210-211 +212-216 +213-216 +215-216 +217-221 +218-221 +220-221 +222-226 +223-226 +225-226 +227-231 +228-231 +230-231 +232-246 +233-246 +235-246 +235-236 +237-246 +238-246 +239-246 +240-246 +240-241 +243-246 +244-246 +245-246 +247-275 +247-275 +248-275 +248-256 +248-254 +249-254 +250-254 +251-254 +251-252 +253-254 +255-256 +257-265 +258-265 +258-263 +258-259 +260-263 +261-263 +262-263 +264-265 +266-275 +267-275 +267-273 +267-270 +268-270 +269-270 +271-273 +272-273 +274-275 +276-283 +276-283 +277-283 +277-281 +277-279 +278-279 +280-281 +284-301 +284-301 +284-290 +285-288 +285-287 +286-287 +289-290 +291-301 +291-294 +292-294 +293-294 +296-301 +296-297 +299-301 +300-301 +302-317 +302-317 +303-317 +303-306 +304-306 +305-306 +307-313 +307-308 +309-313 +310-313 +312-313 +315-317 +318-367 +318-367 +319-367 +319-321 +323-324 +325-326 +329-367 +330-367 +330-348 +330-339 +330-332 +330-332 +331-332 +335-339 +337-339 +338-339 +340-348 +341-348 +341-344 +342-344 +342-343 +345-347 +346-347 +349-367 +350-367 +350-351 +352-367 +353-367 +354-356 +355-356 +358-367 +359-367 +361-363 +362-363 +364-367 +365-367 +366-367 +368-403 +368-403 +369-403 +369-371 +369-370 +372-403 +373-403 +374-403 +375-403 +376-377 +378-380 +379-380 +381-403 +382-403 +383-387 +383-384 +385-386 +388-390 +389-390 +391-403 +392-403 +393-395 +394-395 +396-403 +397-403 +398-399 +400-403 +400-401 +402-403 +404-436 +404-436 +405-436 +405-430 +405-417 +405-411 +405-406 +407-410 +408-410 +409-410 +412-417 +413-417 +415-417 +416-417 +418-430 +419-430 +419-422 +420-422 +421-422 +423-430 +424-430 +427-430 +428-430 +431-436 +432-436 +433-435 +434-435 +437-476 +437-476 +438-476 +438-449 +438-439 +441-444 +442-444 +443-444 +445-449 +446-449 +447-449 +448-449 +450-476 +452-453 +455-456 +457-476 +458-476 +458-464 +460-464 +461-464 +461 +462-464 +463-464 +465-476 +466-476 +466-472 +467-469 +468-469 +470-472 +471-472 +473-476 +474-476 +475-476 +477-503 +477-503 +478-503 +478-487 +478-482 +478 +479-481 +479-480 +483-487 +484-487 +484-485 +486-487 +488-503 +489-503 +489-496 +490-496 +491-496 +492-496 +493-496 +494-496 +495-496 +498-499 +500-503 +501-502 +504-541 +504-541 +505-541 +508-541 +508-511 +508-511 +509-511 +510-511 +512-541 +513-541 +515-517 +516-517 +518-541 +519-541 +519-529 +519-521 +519-521 +520-521 +526-529 +527-529 +528-529 +530-541 +531-541 +531-532 +534-541 +534 +535-541 +537-541 +537-539 +538-539 +540-541 +542-577 +542-577 +542-555 +544-547 +546-547 +549-550 +551-555 +552-555 +553-555 +554-555 +554 +556-577 +557-577 +557-560 +559-560 +562-577 +562-567 +562 +565-567 +566-567 +568-577 +569-577 +569-572 +569-570 +570 +571-572 +573-577 +574-577 +575 +578-602 +578-602 +579-602 +579-583 +580-582 +581-582 +584-602 +585-602 +586-594 +586-592 +587-592 +588-592 +590-592 +591-592 +596-602 +596 +598-602 +599-602 +601-602 +603-610 +603-610 +604-610 +604-606 +605-606 +608-609 +611-640 +611-640 +612-640 +612-623 +612-615 +613-615 +614-615 +617-623 +618-623 +619-623 +620-623 +621-623 +622-623 +624-627 +625-627 +625 +628-640 +629-640 +629-632 +630-632 +631-632 +635-640 +636-640 +637-638 +639-640 +641-656 +641-656 +642-656 +642-648 +643-644 +645-648 +647-648 +649-651 +650-651 +653-656 +654-656 +655-656 +657-696 +657-696 +658-696 +658-659 +660-696 +661-662 +664-665 +666-667 +668-696 +669-696 +669-687 +669-676 +669 +671-676 +671-672 +673-676 +674-676 +675-676 +677-680 +678-680 +679-680 +681-687 +682-687 +682-683 +684-687 +685-687 +686-687 +688-696 +689-696 +691-696 +692-693 +694-696 +695-696 +697-734 +697-734 +698-734 +698-718 +698-707 +699 +701-706 +701-702 +703-706 +704-706 +705-706 +708-711 +709-711 +710-711 +712-718 +713-718 +715-718 +716-718 +717-718 +719-734 +720-734 +721-734 +722-734 +723-724 +725-727 +726-727 +728-734 +729-734 +729-730 +732-734 +733-734 +735-771 +735-771 +735-744 +737-742 +737 +739-742 +740-742 +741-742 +745-771 +746-771 +746 +748-763 +749-763 +749-750 +751-763 +752-763 +752-759 +752-753 +754-759 +755-759 +756-759 +757-759 +758-759 +760-763 +760-761 +762-763 +764-771 +765-771 +766-771 +767-771 +769-771 +770-771 +772-800 +772-800 +774-800 +775-800 +776-779 +777-779 +778-779 +780-800 +781-800 +781-782 +784-788 +785-788 +786-788 +787-788 +789-800 +789-793 +791-793 +792-793 +794-800 +795-800 +797 +798-800 +799-800 +801-836 +801-836 +802-836 +802-804 +803-804 +805-836 +806-807 +809-810 +811-812 +813-814 +815-836 +816-836 +816-828 +816-823 +816 +818-823 +818-819 +820-823 +821-823 +822-823 +824-828 +825-828 +826-828 +827-828 +829-836 +830-836 +831-836 +832-836 +833-836 +834-836 +835-836 +837-851 +837-851 +838-851 +838-846 +839 +841-846 +841-842 +843-846 +844-846 +845-846 +847-851 +848-851 +849-851 +850-851 +852-866 +852-866 +853-866 +853-863 +854-863 +855-863 +857-858 +859-863 +860-863 +860-862 +861-862 +865-866 +867-893 +867-893 +868-893 +868-876 +868-870 +869-870 +872-876 +873-876 +874-876 +875-876 +877-893 +878-893 +878 +880-883 +881-883 +882-883 +884-893 +885-893 +886-893 +887-893 +888-890 +889-890 +891-893 +892-893 +894-916 +894-916 +895-916 +895-898 +896-898 +896-897 +900-902 +901-902 +903-916 +904-908 +905-908 +906-908 +907-908 +909-916 +910-916 +910 +911-916 +912-916 +913-916 +914-916 +915-916 +917-940 +917-940 +918-940 +920-940 +921-940 +922-925 +923-925 +924-925 +926-940 +927-940 +927-940 +928-940 +929-931 +930-931 +932-940 +932-935 +933-935 +934-935 +936-940 +938-940 +939-940 +941-967 +941-967 +942-967 +942-958 +942-951 +942-944 +943-944 +946-948 +947-948 +949-951 +950-951 +952-958 +953-958 +953-954 +955-958 +956-958 +957-958 +959-967 +960-967 +960-962 +961-962 +964-967 +965-967 +966-967 +968-994 +968-994 +968-982 +970-971 +972-982 +973-976 +974-976 +975-976 +977-982 +978-982 +979-982 +980-982 +981-982 +983-994 +984-994 +985-988 +986-988 +987-988 +989-990 +991-994 +992-994 +993-994 +995-1017 +995-1017 +996-1017 +996-1005 +997-1005 +997-1001 +998-1001 +999-1001 +1000-1001 +1002-1005 +1003-1005 +1004-1005 +1008-1017 +1008-1009 +1008-1009 +1013-1017 +1014-1017 +1015-1017 +1016-1017 +1016 +1018-1023 +1018-1023 +1019-1023 +1020-1023 +1021-1023 +1022-1023 +1024-1048 +1024-1048 +1025-1048 +1027-1033 +1028-1029 +1030-1033 +1032-1033 +1034-1048 +1035-1048 +1037-1048 +1038-1048 +1039-1040 +1041-1048 +1041-1044 +1042-1044 +1042-1043 +1047-1048 +1049-1058 +1049-1058 +1050-1058 +1051-1052 +1053-1057 +1054-1057 +1055-1057 +1056-1057 +1059-1070 +1059-1070 +1060-1070 +1060-1066 +1060-1065 +1061-1065 +1062-1065 +1064-1065 +1067-1070 +1068-1070 +1068-1069 +1071-1093 +1071-1093 +1071-1078 +1072-1078 +1075-1076 +1077-1078 +1079-1093 +1080-1093 +1080-1083 +1081-1083 +1081-1082 +1087-1093 +1091-1093 +1091-1092 +1094-1101 +1094-1101 +1097-1101 +1098-1101 +1098-1099 +1100-1101 +1102-1127 +1102-1127 +1102-1108 +1102-1104 +1103-1104 +1105-1108 +1106-1108 +1107-1108 +1109-1113 +1110-1113 +1111-1113 +1112-1113 +1114-1127 +1115-1127 +1115-1121 +1116-1118 +1117-1118 +1119-1121 +1120-1121 +1122-1127 +1123-1127 +1123-1124 +1126-1127 +1128-1144 +1128-1144 +1130-1131 +1132-1134 +1133-1134 +1135-1137 +1136-1137 +1138-1140 +1139-1140 +1141-1144 +1142-1144 +1143-1144 +1145-1160 +1145-1160 +1146-1160 +1149-1160 +1150-1160 +1150-1155 +1153-1155 +1153-1154 +1156-1160 +1157-1160 +1159-1160 +1161-1176 +1161-1176 +1162-1176 +1162 +1163-1164 +1167-1176 +1167-1168 +1169-1176 +1170-1176 +1171 +1174-1176 +1175-1176 +1177-1179 +1177-1179 +1180-1188 +1180-1188 +1181-1188 +1181 +1182-1183 +1186-1188 +1187-1188 +1189-1203 +1189-1203 +1190-1203 +1190-1193 +1192-1193 +1194-1203 +1195-1203 +1196-1203 +1196-1197 +1199-1200 +1201-1203 +1202-1203 +1204-1220 +1204-1220 +1205-1220 +1207-1209 +1208-1209 +1210-1220 +1211-1220 +1213-1217 +1213-1215 +1214-1215 +1216-1217 +1218-1220 +1218-1219 +1221-1234 +1221-1234 +1222-1223 +1225-1227 +1226-1227 +1228-1230 +1229-1230 +1231-1234 +1232-1234 +1233-1234 +1235-1243 +1235-1243 +1236-1243 +1236-1241 +1237-1241 +1237-1238 +1239-1241 +1240-1241 +1244-1261 +1244-1261 +1245-1261 +1245 +1246-1247 +1247 +1250-1261 +1250-1254 +1251-1254 +1252-1254 +1253-1254 +1255-1261 +1256-1261 +1257-1261 +1257-1259 +1257-1258 +1262-1281 +1262-1281 +1263-1281 +1264 +1266-1281 +1267-1281 +1268-1273 +1268-1270 +1269-1270 +1272-1273 +1275-1281 +1275-1281 +1276-1281 +1277-1281 +1278-1281 +1279-1281 +1280-1281 +1282-1309 +1282-1309 +1282-1290 +1285-1286 +1287-1290 +1288-1290 +1289-1290 +1291-1309 +1292-1309 +1292-1298 +1294-1298 +1295-1298 +1296-1298 +1297-1298 +1299-1309 +1300-1309 +1302-1309 +1302-1306 +1303-1306 +1304-1306 +1305-1306 +1307-1309 +1310-1331 +1310-1331 +1311-1331 +1312-1331 +1313-1331 +1313-1318 +1313-1315 +1314-1315 +1317-1318 +1319-1331 +1320-1331 +1320-1323 +1320-1321 +1324-1331 +1327-1328 +1329-1331 +1330-1331 +1332-1343 +1332-1343 +1334-1335 +1336-1343 +1338-1343 +1340-1343 +1341-1343 +1342-1343 +1344-1375 +1344-1375 +1344-1352 +1347-1348 +1349-1352 +1350-1352 +1351-1352 +1353-1375 +1354-1375 +1354-1364 +1356-1364 +1356-1360 +1357-1360 +1358-1360 +1359-1360 +1361-1364 +1362-1364 +1363-1364 +1365-1375 +1366-1375 +1368-1375 +1368-1371 +1368-1369 +1372-1375 +1373-1375 +1373 +1376-1382 +1376-1382 +1379-1380 +1381-1382 +1382 +1383-1393 +1383-1393 +1384-1393 +1385-1393 +1385-1389 +1385-1388 +1386-1388 +1387-1388 +1390-1393 +1391-1393 +1391-1392 +1394-1405 +1394-1405 +1394-1398 +1397-1398 +1399-1405 +1400-1405 +1401-1402 +1403-1405 +1404-1405 +1406-1414 +1406-1414 +1407-1414 +1407-1410 +1408-1410 +1409-1410 +1412-1414 +1413-1414 +1415-1471 +1415-1471 +1416-1471 +1416-1429 +1416-1418 +1417-1418 +1419 +1421-1429 +1422-1429 +1423-1429 +1423-1424 +1425-1429 +1426-1429 +1427-1429 +1428-1429 +1430-1471 +1431-1471 +1432-1471 +1433-1471 +1434-1437 +1435-1437 +1436-1437 +1438-1471 +1439-1471 +1439-1451 +1439-1451 +1439-1448 +1439-1445 +1439-1443 +1439-1440 +1441-1443 +1442-1443 +1444-1445 +1446-1448 +1447-1448 +1449-1451 +1450-1451 +1452-1460 +1452-1457 +1452-1453 +1454-1457 +1455-1457 +1456-1457 +1458-1459 +1461-1471 +1462-1471 +1462-1468 +1462-1468 +1463-1468 +1464-1468 +1465-1468 +1465-1467 +1466-1467 +1472-1486 +1472-1486 +1472-1473 +1475-1476 +1477-1486 +1477 +1478-1486 +1479-1486 +1480-1486 +1480 +1481-1486 +1482-1486 +1483-1486 +1484-1486 +1485-1486 +1487-1510 +1487-1510 +1488-1510 +1488-1493 +1489-1493 +1490-1493 +1491-1493 +1492-1493 +1495-1510 +1495-1505 +1495-1496 +1497-1505 +1497-1500 +1498-1500 +1499-1500 +1501-1505 +1502-1505 +1503-1505 +1504-1505 +1508-1510 +1509-1510 +1511-1513 +1511-1513 +1512-1513 +1514-1524 +1514-1524 +1515-1524 +1517-1524 +1517-1519 +1518-1519 +1520-1524 +1521-1524 +1523-1524 +1525-1532 +1525-1532 +1526-1532 +1528-1530 +1529-1530 +1533-1560 +1533-1560 +1534-1560 +1534-1535 +1537-1560 +1537-1548 +1537-1539 +1538-1539 +1540-1548 +1540-1543 +1541-1543 +1542-1543 +1544-1548 +1545-1548 +1546-1548 +1547-1548 +1549-1551 +1550-1551 +1552-1556 +1553-1556 +1554-1556 +1555-1556 +1558-1560 +1559-1560 +1561-1563 +1561-1563 +1562-1563 +1564-1575 +1564-1575 +1565-1575 +1567-1573 +1568-1573 +1568-1569 +1570-1573 +1571-1573 +1572-1573 +1576-1602 +1576-1602 +1577-1602 +1578-1581 +1579-1581 +1580-1581 +1582-1602 +1582-1586 +1583-1586 +1584-1586 +1585-1586 +1587-1592 +1588-1592 +1589-1592 +1590-1592 +1591-1592 +1593-1602 +1594-1602 +1595-1599 +1595-1596 +1597-1599 +1598-1599 +1600-1602 +1601-1602 +1603-1611 +1603-1611 +1604-1611 +1605-1607 +1606-1607 +1608-1611 +1609-1611 +1610-1611 +1612-1631 +1612-1631 +1613-1631 +1613-1628 +1615-1628 +1615-1618 +1616-1618 +1617-1618 +1619-1628 +1619-1623 +1619-1622 +1620-1622 +1621-1622 +1624 +1625-1626 +1626 +1627-1628 +1629-1631 +1630-1631 +1632-1649 +1632-1649 +1633-1649 +1635-1649 +1635-1636 +1637-1649 +1637-1645 +1638-1645 +1639-1645 +1640-1641 +1642-1643 +1644-1645 +1646-1649 +1647-1649 +1648-1649 +1650-1657 +1650-1657 +1651-1657 +1651-1653 +1652-1653 +1655-1657 +1656-1657 +1658-1665 +1658-1665 +1659-1665 +1659-1660 +1661-1665 +1663-1665 +1664-1665 +1666-1673 +1666-1673 +1667-1673 +1667-1670 +1668-1670 +1669-1670 +1673 +1674-1685 +1674-1685 +1675-1678 +1676-1678 +1677-1678 +1679-1685 +1680-1685 +1682-1685 +1683-1685 +1684-1685 +1686-1691 +1686-1691 +1687-1688 +1688 +1689-1691 +1690-1691 +1692-1699 +1692-1699 +1693-1694 +1695-1699 +1696-1699 +1698-1699 +1700-1709 +1700-1709 +1701-1706 +1702-1706 +1702-1704 +1703-1704 +1705-1706 +1707-1709 +1708-1709 +1710-1715 +1710-1715 +1711-1712 +1713-1715 +1714-1715 +1716-1725 +1716-1725 +1717-1720 +1718-1720 +1719-1720 +1721-1725 +1722-1725 +1723-1724 +1726-1733 +1726-1733 +1726-1728 +1727-1728 +1729-1733 +1730-1733 +1731-1732 +1734-1745 +1734-1745 +1735-1738 +1736-1738 +1737-1738 +1739-1745 +1740-1745 +1742-1745 +1743-1745 +1744-1745 +1746-1761 +1746-1761 +1746-1747 +1748-1761 +1749-1761 +1749-1750 +1751-1752 +1752 +1753-1761 +1754-1761 +1755-1756 +1757-1758 +1759 +1760-1761 +1762-1772 +1762-1772 +1762 +1763-1764 +1764 +1765-1772 +1766-1772 +1766-1768 +1767-1768 +1770-1772 +1771-1772 +1773-1780 +1773-1780 +1774-1780 +1776-1780 +1776-1777 +1778-1780 +1779-1780 +1781-1786 +1781-1786 +1783-1786 +1784-1786 +1785-1786 +1787-1794 +1787-1794 +1788-1794 +1788-1791 +1789-1791 +1789-1790 +1792-1793 +1795-1806 +1795-1806 +1795-1796 +1799-1806 +1800-1806 +1801-1802 +1804-1806 +1805-1806 +1807-1812 +1807-1812 +1809-1812 +1810-1812 +1811-1812 +1813-1819 +1813-1819 +1816 +1817-1819 +1817-1818 +1820-1839 +1820-1839 +1821-1828 +1821-1822 +1823-1828 +1824-1828 +1826-1828 +1827-1828 +1830-1839 +1830-1832 +1830-1832 +1831-1832 +1833-1839 +1834-1839 +1835-1839 +1836-1839 +1837-1839 +1838-1839 +1840-1862 +1840-1862 +1842-1844 +1843-1844 +1845-1847 +1846-1847 +1848-1862 +1849-1862 +1849-1853 +1850-1853 +1851-1853 +1852-1853 +1854-1862 +1855-1862 +1856-1862 +1856-1858 +1857-1858 +1859-1862 +1860-1862 +1861-1862 +1863-1872 +1863-1872 +1865-1872 +1866-1872 +1867-1872 +1868-1872 +1868-1869 +1870-1872 +1871-1872 +1873-1877 +1873-1877 +1874-1875 +1875 +1877 +1878-1904 +1878-1904 +1879-1904 +1879-1881 +1880-1881 +1882-1904 +1882-1889 +1883-1889 +1884-1889 +1885-1889 +1885-1886 +1887-1889 +1888-1889 +1890-1904 +1890-1894 +1890-1891 +1892-1894 +1893-1894 +1895-1896 +1898-1900 +1899-1900 +1901-1904 +1902-1904 +1903-1904 +1905-1926 +1905-1926 +1906-1926 +1906-1919 +1907-1919 +1907-1914 +1909-1914 +1910-1914 +1910-1912 +1910-1911 +1913-1914 +1915-1919 +1916-1919 +1918-1919 +1922-1926 +1923-1926 +1924-1926 +1925-1926 +1927-1940 +1927-1940 +1928-1940 +1928-1932 +1929-1932 +1929-1930 +1931-1932 +1932 +1933-1940 +1936-1940 +1937-1940 +1938-1940 +1939-1940 +1941-1963 +1941-1963 +1942-1963 +1944-1963 +1945-1963 +1945-1955 +1946-1955 +1948-1950 +1949-1950 +1952-1955 +1953-1955 +1954-1955 +1956-1957 +1959-1963 +1960-1963 +1961-1963 +1962-1963 +1964-1978 +1964-1978 +1965-1978 +1966-1978 +1967-1968 +1969-1978 +1969-1970 +1971-1978 +1972-1978 +1972-1974 +1973-1974 +1977-1978 +1979-2017 +1979-2017 +1980-2017 +1983-2017 +1984-2017 +1984-1993 +1984-1989 +1985-1989 +1986-1989 +1987-1989 +1988-1989 +1992-1993 +1994-2005 +1995-2005 +1995-2001 +1996-2001 +1998-2000 +1999-2000 +2001 +2004-2005 +2006-2017 +2007-2017 +2007-2010 +2008-2010 +2010 +2013-2017 +2014-2017 +2015-2017 +2016-2017 +2018-2058 +2018-2058 +2019-2058 +2019-2036 +2020-2036 +2020-2026 +2021-2023 +2022-2023 +2024-2026 +2025-2026 +2027-2036 +2029-2036 +2030-2036 +2030-2032 +2031-2032 +2035-2036 +2037-2044 +2039-2041 +2040-2041 +2042-2044 +2043-2044 +2045-2051 +2046-2051 +2046 +2047-2051 +2049-2051 +2050-2051 +2052-2058 +2053-2058 +2054 +2056-2058 +2057-2058 +2059-2089 +2059-2089 +2059-2060 +2061-2063 +2062-2063 +2065-2072 +2066-2072 +2068-2069 +2070-2072 +2071-2072 +2073-2089 +2073-2080 +2077-2078 +2079-2080 +2081-2085 +2082-2085 +2082-2083 +2084-2085 +2086-2089 +2087-2089 +2087-2088 +2090-2102 +2090-2102 +2090-2092 +2091-2092 +2093-2102 +2093-2096 +2093-2094 +2097-2102 +2098-2102 +2099-2102 +2100-2102 +2101-2102 +2103-2107 +2103-2107 +2104-2107 +2105-2107 +2106-2107 +2108-2127 +2108-2127 +2109-2127 +2112-2127 +2113-2127 +2113-2120 +2114-2120 +2115-2120 +2117-2120 +2118-2120 +2119-2120 +2124-2127 +2125-2127 +2126-2127 +2128-2142 +2128-2142 +2129-2142 +2129-2136 +2130-2136 +2130-2134 +2131-2134 +2131-2132 +2133-2134 +2137-2138 +2139-2142 +2140-2142 +2141-2142 +2143-2160 +2143-2160 +2144-2160 +2146-2160 +2147-2160 +2147-2151 +2148-2151 +2149-2151 +2150-2151 +2152-2160 +2153-2160 +2154-2157 +2155-2157 +2156-2157 +2159-2160 +2161-2174 +2161-2174 +2162-2174 +2162-2168 +2163-2168 +2163-2166 +2164-2166 +2165-2166 +2169-2170 +2171-2174 +2172-2174 +2173-2174 +2175-2192 +2175-2192 +2176-2192 +2178-2192 +2179-2192 +2179-2183 +2180-2183 +2181-2183 +2182-2183 +2184-2192 +2185-2192 +2186-2189 +2187-2189 +2188-2189 +2190-2191 +2193-2203 +2193-2203 +2194-2203 +2195-2203 +2195-2200 +2196-2200 +2198-2200 +2199-2200 +2204-2226 +2204-2226 +2205-2226 +2208-2226 +2209-2226 +2209-2220 +2209-2214 +2210-2214 +2211-2214 +2212-2214 +2213-2214 +2215-2217 +2216-2217 +2219-2220 +2221-2226 +2222-2226 +2222-2225 +2223-2225 +2224 +2227-2241 +2227-2241 +2229-2241 +2230-2241 +2231-2232 +2233-2241 +2233-2234 +2235-2241 +2236-2241 +2237-2238 +2239-2241 +2240-2241 +2242-2248 +2242-2248 +2243-2248 +2246-2248 +2249-2291 +2249-2291 +2249-2257 +2250-2257 +2250-2252 +2250-2252 +2251-2252 +2253-2257 +2254-2257 +2255-2257 +2256-2257 +2258-2267 +2259-2267 +2259-2261 +2259-2261 +2260-2261 +2262-2267 +2263-2267 +2264-2267 +2265-2267 +2266-2267 +2268-2276 +2269-2276 +2269-2270 +2269-2270 +2271-2276 +2272-2276 +2273-2276 +2274-2276 +2275-2276 +2277-2291 +2278-2291 +2278-2281 +2279-2281 +2280-2281 +2283-2291 +2284-2291 +2286-2291 +2286-2287 +2289-2291 +2290-2291 +2292-2300 +2292-2300 +2293-2300 +2294-2296 +2295-2296 +2297-2300 +2297-2298 +2299-2300 +2301-2308 +2301-2308 +2302-2308 +2302-2304 +2303-2304 +2305-2307 +2306-2307 +2309-2318 +2309-2318 +2310-2318 +2311-2318 +2312-2318 +2312-2314 +2313-2314 +2315-2318 +2316-2318 +2317-2318 +2319-2326 +2319-2326 +2320-2326 +2323-2326 +2325-2326 +2327-2340 +2327-2340 +2328-2340 +2328-2335 +2331-2335 +2332-2335 +2333-2335 +2333-2334 +2338-2340 +2339-2340 +2341-2355 +2341-2355 +2342-2355 +2342-2350 +2342-2350 +2343-2350 +2344-2350 +2344-2345 +2346-2350 +2347-2350 +2347-2349 +2348-2349 +2351-2355 +2353-2355 +2354-2355 +2356-2365 +2356-2365 +2357-2365 +2357-2361 +2360-2361 +2363-2364 +2366-2377 +2366-2377 +2366-2369 +2366-2368 +2367-2368 +2370-2377 +2371-2377 +2371-2375 +2372-2375 +2373-2375 +2373-2374 +2378-2389 +2378-2389 +2379-2389 +2380-2389 +2381-2389 +2381-2384 +2382-2384 +2383-2384 +2385-2389 +2386-2389 +2387-2389 +2388-2389 +2390-2427 +2390-2427 +2391-2427 +2394-2427 +2394-2412 +2394-2403 +2394-2397 +2395-2397 +2396-2397 +2398-2403 +2399-2403 +2400-2403 +2401-2403 +2402-2403 +2404-2412 +2405-2412 +2406-2412 +2407-2412 +2407-2409 +2408-2409 +2410-2412 +2411-2412 +2413-2427 +2414-2427 +2414-2421 +2414-2416 +2415-2416 +2418-2421 +2419-2421 +2420-2421 +2422-2427 +2423-2427 +2424-2427 +2425-2427 +2426-2427 +2428-2436 +2428-2436 +2429-2436 +2429-2433 +2430-2433 +2431-2433 +2432-2433 +2434-2435 +2437-2443 +2437-2443 +2438-2443 +2438-2440 +2439-2440 +2441-2442 +2444-2453 +2444-2453 +2445-2453 +2445-2450 +2446-2450 +2447-2449 +2448-2449 +2451-2452 +2454-2460 +2454-2460 +2455-2460 +2455-2457 +2456-2457 +2458-2459 +2461-2472 +2461-2472 +2462-2472 +2465-2472 +2466-2472 +2466-2470 +2467-2470 +2467-2468 +2469-2470 +2473-2486 +2473-2486 +2474-2486 +2475-2486 +2475-2477 +2476-2477 +2480-2482 +2481-2482 +2483-2486 +2484-2486 +2485-2486 +2487-2500 +2487-2500 +2488-2500 +2488-2489 +2489 +2493-2500 +2494-2500 +2494-2496 +2495-2496 +2497-2500 +2498-2500 +2499-2500 +2501-2524 +2501-2524 +2502-2524 +2502-2504 +2503-2504 +2505-2524 +2505-2508 +2507-2508 +2509-2524 +2510-2524 +2510-2519 +2510-2511 +2513-2519 +2513-2515 +2514-2515 +2516-2519 +2517-2519 +2518-2519 +2520-2524 +2521-2524 +2522-2524 +2523-2524 +2525-2531 +2525-2531 +2525-2527 +2526-2527 +2528-2531 +2529-2531 +2530-2531 +2532-2553 +2532-2553 +2533-2553 +2533-2545 +2533-2535 +2536-2545 +2538-2540 +2539-2540 +2541-2545 +2543-2545 +2544-2545 +2546-2553 +2547-2553 +2548-2550 +2549-2550 +2551-2553 +2552-2553 +2554-2564 +2554-2564 +2555-2564 +2555-2562 +2555-2557 +2556-2557 +2558-2562 +2559-2562 +2560-2562 +2561-2562 +2565-2589 +2565-2589 +2566-2589 +2566-2572 +2566-2567 +2567 +2568-2572 +2570-2572 +2571-2572 +2573-2589 +2574-2589 +2575-2585 +2575-2584 +2575-2583 +2575-2577 +2576-2577 +2578-2583 +2579-2583 +2580-2583 +2581-2583 +2582-2583 +2586-2589 +2587-2589 +2588-2589 +2590-2596 +2590-2596 +2590-2592 +2591-2592 +2593-2596 +2594-2596 +2595-2596 +2597-2618 +2597-2618 +2598-2618 +2598-2600 +2599-2600 +2601-2618 +2601-2605 +2602-2605 +2603-2605 +2604-2605 +2606-2618 +2607-2618 +2607-2610 +2608-2610 +2609-2610 +2612-2618 +2612-2614 +2613-2614 +2615-2618 +2616-2618 +2617-2618 +2619-2629 +2619-2629 +2620-2629 +2620-2627 +2620-2622 +2621-2622 +2623-2627 +2624-2627 +2625-2627 +2626-2627 +2630-2644 +2630-2644 +2631-2644 +2631-2636 +2631 +2634-2636 +2635-2636 +2635-2636 +2637-2644 +2638-2644 +2639-2644 +2640-2644 +2640-2643 +2641-2643 +2642-2643 +2645-2661 +2645-2661 +2646-2661 +2646-2648 +2649-2661 +2650-2661 +2651-2653 +2652-2653 +2654-2656 +2654-2655 +2657-2661 +2658-2661 +2659-2661 +2662-2665 +2662-2665 +2663-2665 +2666-2689 +2666-2689 +2666-2671 +2666-2671 +2666-2667 +2668-2671 +2669-2671 +2670-2671 +2672-2675 +2673-2675 +2674-2675 +2676-2679 +2677-2679 +2678-2679 +2680-2689 +2681-2683 +2682-2683 +2684-2686 +2685-2686 +2687-2689 +2688-2689 +2690-2697 +2690-2697 +2690-2694 +2691-2694 +2691-2692 +2693-2694 +2698-2710 +2698-2710 +2699-2710 +2701-2703 +2702-2703 +2704-2710 +2705-2710 +2705-2706 +2708-2710 +2709-2710 +2711-2722 +2711-2722 +2712-2722 +2713-2716 +2715-2716 +2718-2722 +2720-2722 +2721-2722 +2723-2738 +2723-2738 +2724-2738 +2724-2730 +2725-2730 +2726-2727 +2728-2730 +2729-2730 +2732-2733 +2734-2738 +2735-2738 +2735-2736 +2737-2738 +2739-2752 +2739-2752 +2740-2752 +2740-2744 +2741-2744 +2743-2744 +2746-2748 +2747-2748 +2750-2752 +2751-2752 +2753-2771 +2753-2771 +2754-2771 +2754-2761 +2754-2755 +2755 +2756-2761 +2758-2760 +2759-2760 +2759-2760 +2762-2771 +2763-2771 +2763-2766 +2764-2766 +2765-2766 +2767-2771 +2768-2771 +2769-2770 +2771 +2772-2778 +2772-2778 +2772-2774 +2773-2774 +2775-2778 +2776-2778 +2777-2778 +2779-2804 +2779-2804 +2780-2804 +2780-2790 +2780-2785 +2781 +2783-2785 +2784-2785 +2786-2790 +2787-2790 +2787-2789 +2788-2789 +2791-2804 +2792-2804 +2793-2796 +2794-2795 +2796 +2798-2804 +2798-2804 +2798-2800 +2799-2800 +2801-2804 +2802-2804 +2803-2804 +2805-2815 +2805-2815 +2806-2815 +2806-2813 +2806-2808 +2807-2808 +2809-2813 +2810-2813 +2811-2813 +2812-2813 +2816-2833 +2816-2833 +2820-2822 +2821-2822 +2823-2833 +2823-2827 +2824-2826 +2825-2826 +2828-2833 +2829-2833 +2831-2833 +2832-2833 +2834-2852 +2834-2852 +2835-2852 +2838-2839 +2840-2852 +2840-2845 +2841-2844 +2841-2842 +2843-2844 +2846-2852 +2847-2852 +2850-2852 +2851-2852 +2853-2864 +2853-2864 +2854-2864 +2854-2858 +2856-2858 +2857-2858 +2859-2864 +2861-2864 +2862-2864 +2863-2864 +2865-2871 +2865-2871 +2865-2868 +2866-2868 +2867-2868 +2870-2871 +2872-2884 +2872-2884 +2873-2884 +2873-2878 +2874-2878 +2875-2877 +2876-2877 +2879-2882 +2880-2882 +2881-2882 +2885-2897 +2885-2897 +2886-2897 +2886-2891 +2887-2891 +2887-2889 +2888-2889 +2892-2895 +2893-2895 +2894-2895 +2898-2909 +2898-2909 +2899-2909 +2899-2906 +2900-2906 +2900-2904 +2900-2901 +2902-2904 +2903-2904 +2907-2908 +2910-2930 +2910-2930 +2910-2914 +2912-2914 +2912-2913 +2915-2930 +2916-2930 +2916-2923 +2917-2923 +2917-2919 +2917-2918 +2920-2923 +2921-2923 +2921-2922 +2924-2930 +2925-2930 +2925-2926 +2927-2930 +2928-2930 +2928-2929 +2931-2936 +2931-2936 +2933-2936 +2933-2934 +2935-2936 +2936 +2937-2956 +2937-2956 +2937-2938 +2941-2956 +2941-2950 +2943-2945 +2944-2945 +2946-2950 +2946-2947 +2948-2950 +2949-2950 +2951-2956 +2952-2956 +2952-2954 +2953-2954 +2955-2956 +2957-2968 +2957-2968 +2958-2968 +2958-2963 +2958-2959 +2962-2963 +2964-2968 +2965-2968 +2965-2966 +2967-2968 +2969-2991 +2969-2991 +2970-2974 +2971-2974 +2972-2974 +2973-2974 +2975-2991 +2976-2991 +2976-2983 +2976-2977 +2978-2979 +2979 +2980-2983 +2981-2983 +2982-2983 +2984-2991 +2985-2991 +2985-2989 +2986-2989 +2986-2987 +2988-2989 +2992-2996 +2992-2996 +2993-2996 +2997-3009 +2997-3009 +2998-3009 +2998-3000 +2999-3000 +3001 +3003-3009 +3004-3007 +3005-3007 +3006-3007 +3008-3009 +3010-3014 +3010-3014 +3011-3014 +3011-3012 +3015-3021 +3015-3021 +3016-3019 +3017-3019 +3018-3019 +3020-3021 +3022-3025 +3022-3025 +3022-3023 +3024-3025 +3025 +3026-3040 +3026-3040 +3027-3040 +3029-3040 +3030-3040 +3032-3036 +3033-3036 +3034-3036 +3035-3036 +3038-3040 +3039-3040 +3039-3040 +3041-3062 +3041-3062 +3042-3062 +3042-3057 +3043-3057 +3043-3046 +3044-3046 +3045-3046 +3047-3053 +3047-3048 +3049-3053 +3050-3053 +3051-3052 +3054-3055 +3058-3061 +3059-3061 +3059-3060 +3062 +3063-3074 +3063-3074 +3064-3074 +3066-3074 +3067-3074 +3067-3068 +3069-3071 +3070-3071 +3072-3074 +3073-3074 +3075-3080 +3075-3080 +3076-3080 +3076-3077 +3078-3079 +3081-3091 +3081-3091 +3082-3091 +3083-3087 +3084-3087 +3084-3085 +3086-3087 +3088-3091 +3089-3091 +3090-3091 +3092-3105 +3092-3105 +3093-3105 +3093-3100 +3095-3100 +3095-3096 +3097-3100 +3098-3100 +3099-3100 +3101-3105 +3102-3105 +3102-3103 +3106-3116 +3106-3116 +3107-3116 +3107-3111 +3109-3111 +3110-3111 +3112-3116 +3113-3116 +3113-3114 +3117-3122 +3117-3122 +3118-3119 +3120-3122 +3121-3122 +3123-3127 +3123-3127 +3125-3127 +3126-3127 +3127 +3128-3140 +3128-3140 +3129-3140 +3129-3133 +3129-3132 +3129-3131 +3130-3131 +3134-3140 +3135-3140 +3135-3138 +3135-3137 +3136-3137 +3141-3161 +3141-3161 +3142-3161 +3142-3152 +3144-3152 +3144-3145 +3146-3152 +3147-3152 +3148-3152 +3149-3152 +3150-3152 +3151-3152 +3153-3161 +3154-3161 +3154-3159 +3155-3159 +3155-3158 +3156-3158 +3157-3158 +3162-3183 +3162-3183 +3163-3183 +3163-3175 +3165-3167 +3166-3167 +3168-3175 +3168 +3169-3175 +3170-3171 +3172-3175 +3173-3175 +3174-3175 +3176-3183 +3177-3183 +3178-3179 +3180-3183 +3181-3183 +3182-3183 +3184-3204 +3184-3204 +3184 +3185-3192 +3187-3190 +3188-3190 +3189-3190 +3191-3192 +3193-3204 +3194-3204 +3196-3204 +3197-3198 +3199-3204 +3200-3204 +3201-3204 +3202-3204 +3203-3204 +3205-3230 +3205-3230 +3205-3218 +3205-3210 +3207-3208 +3209-3210 +3211-3218 +3212-3218 +3213-3215 +3214-3215 +3216-3218 +3217-3218 +3219-3230 +3219-3226 +3223-3226 +3224-3226 +3225-3226 +3227-3230 +3228-3230 +3228 +3231-3254 +3231-3254 +3231-3241 +3231-3234 +3231 +3232-3234 +3233-3234 +3235-3237 +3235 +3236-3237 +3237 +3238-3241 +3238 +3239-3241 +3240-3241 +3242-3254 +3243-3254 +3243-3246 +3243-3245 +3244-3245 +3245 +3247-3250 +3248-3250 +3248-3249 +3249 +3251-3254 +3252-3254 +3252-3253 +3253 +3255-3278 +3255-3278 +3256-3278 +3257-3258 +3259-3278 +3260-3278 +3261-3278 +3261-3270 +3261-3266 +3263-3265 +3264-3265 +3268-3270 +3272-3278 +3272-3273 +3275-3278 +3276-3278 +3279-3304 +3279-3304 +3280-3304 +3280-3290 +3281-3290 +3282-3283 +3285-3290 +3285-3286 +3288-3290 +3289-3290 +3291-3304 +3291-3292 +3293-3299 +3293-3295 +3294-3295 +3296-3299 +3297-3299 +3298-3299 +3302-3304 +3303-3304 +3305-3319 +3305-3319 +3306-3319 +3306-3314 +3306-3314 +3307-3314 +3308-3314 +3308-3309 +3311-3314 +3313-3314 +3316-3317 +3320-3327 +3320-3327 +3321-3327 +3323-3327 +3323-3324 +3325-3327 +3326-3327 +3328-3371 +3328-3371 +3329-3332 +3330-3332 +3331-3332 +3333-3352 +3334-3352 +3334-3345 +3334-3336 +3335-3336 +3337-3345 +3338-3345 +3339-3345 +3339-3340 +3341-3345 +3342-3345 +3343-3345 +3344-3345 +3346-3352 +3347-3352 +3349-3352 +3350-3352 +3351-3352 +3353-3371 +3354-3371 +3354-3365 +3354-3356 +3355-3356 +3357-3365 +3358-3365 +3359-3365 +3359-3360 +3361-3365 +3362-3365 +3363-3365 +3364-3365 +3366-3371 +3367-3371 +3369-3371 +3370-3371 +3372-3387 +3372-3387 +3373-3387 +3374-3387 +3375-3387 +3376-3387 +3376-3382 +3378-3379 +3380-3382 +3381-3382 +3383-3387 +3384-3387 +3386-3387 +3388-3393 +3388-3393 +3388-3391 +3389-3391 +3390-3391 +3394-3402 +3394-3402 +3395-3402 +3395-3398 +3396-3397 +3399-3402 +3400-3402 +3400-3401 +3403-3416 +3403-3416 +3403-3409 +3404-3406 +3405-3406 +3407-3408 +3410-3416 +3411-3416 +3411-3413 +3412-3413 +3414-3415 +3417-3429 +3417-3429 +3417-3423 +3419-3420 +3421-3423 +3421-3422 +3424-3429 +3425-3429 +3425-3426 +3427-3429 +3427-3428 +3430-3440 +3430-3440 +3430-3436 +3430-3435 +3431-3435 +3432-3435 +3434-3435 +3437-3440 +3438-3440 +3438-3439 +3441-3447 +3441-3447 +3442-3447 +3442-3445 +3443-3445 +3444-3445 +3448-3472 +3448-3472 +3449-3460 +3449-3454 +3450-3454 +3451-3454 +3453-3454 +3453 +3454 +3456-3460 +3457-3460 +3458-3460 +3459-3460 +3462-3472 +3462-3472 +3463-3472 +3464-3472 +3465-3472 +3466-3472 +3466-3468 +3467-3468 +3469-3472 +3470-3472 +3471-3472 +3473-3499 +3473-3499 +3476-3479 +3477-3479 +3478-3479 +3480-3499 +3480-3481 +3480 +3481 +3482-3499 +3483-3499 +3483-3486 +3483-3485 +3484-3485 +3487-3492 +3488-3492 +3488-3490 +3489-3490 +3493-3499 +3494-3499 +3494-3496 +3495-3496 +3497-3498 +3500-3514 +3500-3514 +3501-3514 +3504-3514 +3505-3514 +3508-3514 +3509-3510 +3511-3514 +3511-3514 +3512-3514 +3513-3514 +3515-3536 +3515-3536 +3516-3536 +3516-3525 +3517-3525 +3517-3522 +3519-3522 +3520-3522 +3520-3521 +3523-3525 +3524-3525 +3527-3536 +3527-3528 +3529-3536 +3531-3533 +3532-3533 +3534-3536 +3535-3536 +3537-3561 +3537-3561 +3538-3561 +3538-3556 +3538-3540 +3539-3540 +3541-3544 +3542-3544 +3543-3544 +3545-3548 +3546-3548 +3547-3548 +3549-3553 +3550-3553 +3551-3553 +3551-3552 +3554-3556 +3555-3556 +3557-3561 +3558-3561 +3559-3561 +3560-3561 +3562-3584 +3562-3584 +3563-3584 +3563-3573 +3564-3573 +3565-3573 +3565-3569 +3566-3569 +3567-3569 +3567-3568 +3570-3573 +3571-3573 +3575-3584 +3575-3576 +3577-3584 +3579-3581 +3580-3581 +3582-3584 +3583-3584 +3585-3609 +3585-3609 +3586-3609 +3586-3588 +3587-3588 +3589-3592 +3590-3592 +3591-3592 +3593-3596 +3594-3596 +3595-3596 +3597-3601 +3598-3601 +3599-3601 +3599-3600 +3602-3603 +3603 +3604-3609 +3605-3609 +3606-3608 +3607-3608 +3610-3625 +3610-3625 +3611-3625 +3611-3618 +3611 +3612-3618 +3613-3618 +3614-3615 +3616-3618 +3616-3617 +3619-3625 +3620-3621 +3622-3625 +3623-3625 +3624-3625 +3626-3638 +3626-3638 +3627-3638 +3627-3628 +3630-3638 +3630-3632 +3631-3632 +3633-3638 +3634-3638 +3635-3638 +3636-3638 +3636-3638 +3637-3638 +3639-3648 +3639-3648 +3640-3648 +3640-3644 +3642-3644 +3643-3644 +3645-3648 +3647-3648 +3649-3661 +3649-3661 +3650-3661 +3652 +3655-3661 +3656-3661 +3656 +3657-3658 +3658 +3659-3661 +3660-3661 +3662-3670 +3662-3670 +3663-3670 +3663-3665 +3664-3665 +3668-3670 +3669-3670 +3669 +3670 +3671-3676 +3671-3676 +3672-3676 +3674-3676 +3675-3676 +3677-3700 +3677-3700 +3678-3700 +3680-3681 +3682-3700 +3682-3684 +3683-3684 +3685-3700 +3686-3700 +3686 +3687-3700 +3687-3690 +3689-3690 +3691-3700 +3692-3700 +3693-3697 +3694-3697 +3695-3697 +3698-3700 +3699-3700 +3701-3723 +3701-3723 +3702-3723 +3702-3705 +3704-3705 +3706-3723 +3709-3723 +3709-3710 +3711-3723 +3712-3723 +3713-3723 +3713 +3714-3716 +3715-3716 +3718-3720 +3719-3720 +3722-3723 +3724-3729 +3724-3729 +3726-3729 +3727 +3730-3753 +3730-3753 +3731-3753 +3731 +3732-3733 +3735-3753 +3735-3744 +3735 +3739-3744 +3740-3744 +3740-3743 +3741-3743 +3742-3743 +3745-3753 +3746-3753 +3746-3748 +3749-3753 +3750-3753 +3751-3753 +3752-3753 +3754-3783 +3754-3783 +3755-3783 +3755-3764 +3755-3756 +3758-3764 +3758-3760 +3759-3760 +3761-3764 +3762-3763 +3765-3783 +3766-3783 +3766-3770 +3766-3768 +3768 +3769-3770 +3770 +3771-3775 +3772-3775 +3772-3773 +3772 +3773 +3774-3775 +3775 +3776-3783 +3777-3783 +3777-3781 +3777-3779 +3777-3779 +3778-3779 +3780-3781 +3782-3783 +3783 +3784-3803 +3784-3803 +3785-3803 +3785-3788 +3785 +3786-3787 +3789-3803 +3790-3803 +3791-3792 +3792 +3793-3803 +3793-3795 +3794-3795 +3796-3803 +3796-3797 +3798-3799 +3800-3802 +3801-3802 +3804-3826 +3804-3826 +3805-3826 +3807-3826 +3808-3826 +3808-3813 +3809-3812 +3810-3812 +3811-3812 +3814-3826 +3815-3826 +3816-3821 +3817-3821 +3818-3819 +3820-3821 +3822-3826 +3823-3826 +3824-3826 +3825-3826 +3827-3837 +3827-3837 +3828-3837 +3828-3831 +3829-3831 +3830-3831 +3833-3837 +3834-3837 +3835-3837 +3836-3837 +3838-3846 +3838-3846 +3840-3846 +3840-3841 +3842-3846 +3843-3846 +3844-3846 +3845-3846 +3847-3857 +3847-3857 +3848-3857 +3849-3850 +3851-3852 +3853-3857 +3853 +3854-3857 +3854-3855 +3855 +3856-3857 +3858-3865 +3858-3865 +3859-3865 +3860-3861 +3862-3865 +3863-3865 +3863-3864 +3866-3880 +3866-3880 +3867-3880 +3867-3868 +3869-3873 +3870-3873 +3871-3873 +3872-3873 +3875-3880 +3875-3877 +3876-3877 +3878-3880 +3879-3880 +3881-3890 +3881-3890 +3882-3890 +3882-3885 +3883-3885 +3884-3885 +3886-3890 +3887-3890 +3889-3890 +3891-3895 +3891-3895 +3892-3895 +3892 +3893-3895 +3894-3895 +3896-3902 +3896-3902 +3897-3902 +3897-3898 +3899-3902 +3901-3902 +3901 +3903-3913 +3903-3913 +3904-3913 +3904-3907 +3905-3906 +3908-3913 +3909-3913 +3909-3912 +3910-3912 +3911-3912 +3914-3931 +3914-3931 +3915-3931 +3916-3931 +3917-3931 +3918-3921 +3919-3921 +3920-3921 +3922-3931 +3923-3931 +3923-3927 +3924-3926 +3925-3926 +3928-3931 +3929-3931 +3929-3930 +3932-3943 +3932-3943 +3933-3943 +3933-3934 +3935-3938 +3937-3938 +3940-3943 +3941-3943 +3942-3943 +3944-3955 +3944-3955 +3945-3955 +3945 +3946-3947 +3950-3955 +3950 +3953-3955 +3954-3955 +3956-3981 +3956-3981 +3957-3981 +3959-3960 +3961-3981 +3961-3970 +3961-3964 +3961-3962 +3965-3970 +3966-3970 +3966-3969 +3967-3969 +3968-3969 +3971-3981 +3972-3981 +3972-3975 +3973-3975 +3974-3975 +3978-3981 +3979-3980 +3982-3997 +3982-3997 +3983-3997 +3983-3985 +3984-3985 +3988-3997 +3988 +3991-3997 +3991-3992 +3993-3997 +3994-3997 +3995-3997 +3996-3997 +3998-4012 +3998-4012 +3999-4012 +3999-4000 +4003-4012 +4003-4004 +4005-4012 +4006-4012 +4007-4012 +4007-4008 +4010-4012 +4011-4012 +4013-4023 +4013-4023 +4014-4023 +4014-4018 +4016-4018 +4017-4018 +4019-4023 +4021-4023 +4022-4023 +4024-4038 +4024-4038 +4025-4038 +4026-4027 +4029-4031 +4030-4031 +4032-4038 +4033-4038 +4033-4034 +4036-4038 +4037-4038 +4039-4041 +4039-4041 +4040-4041 +4042-4049 +4042-4049 +4043-4049 +4043 +4046-4049 +4047-4049 +4047 +4048 +4049 +4050-4056 +4050-4056 +4051-4056 +4053-4056 +4056 +4057-4068 +4057-4068 +4057-4064 +4058 +4060-4064 +4060-4061 +4062-4064 +4063-4064 +4065-4068 +4066-4068 +4067-4068 +4069-4085 +4069-4085 +4070-4085 +4070-4071 +4073-4085 +4074-4085 +4074-4076 +4077-4085 +4078-4085 +4078-4083 +4078-4080 +4079-4080 +4081-4083 +4082-4083 +4086-4115 +4086-4115 +4087-4115 +4087-4096 +4089-4091 +4090-4091 +4092-4096 +4093-4096 +4094-4096 +4095-4096 +4097-4115 +4099-4115 +4100-4115 +4100-4104 +4100 +4101-4104 +4101-4103 +4102-4103 +4105-4115 +4105-4106 +4107-4115 +4108-4115 +4111-4115 +4112-4115 +4113-4115 +4113-4114 +4116-4132 +4116-4132 +4117-4132 +4119-4132 +4120-4132 +4120-4126 +4121-4123 +4122-4123 +4124-4126 +4124-4126 +4125-4126 +4127-4132 +4129-4130 +4131-4132 +4133-4141 +4133-4141 +4134-4141 +4136-4137 +4138-4141 +4138-4140 +4139-4140 +4141 +4142-4157 +4142-4157 +4143-4157 +4143-4144 +4147-4157 +4148-4157 +4148-4150 +4149-4150 +4151-4157 +4153-4157 +4154-4157 +4155-4157 +4156-4157 +4158-4161 +4158-4161 +4159-4161 +4161 +4162-4168 +4162-4168 +4163-4168 +4164 +4166-4168 +4167-4168 +4169-4185 +4169-4185 +4170-4185 +4171-4180 +4172-4174 +4173-4174 +4175-4177 +4176-4177 +4178-4180 +4179-4180 +4181-4185 +4182-4185 +4183-4185 +4184-4185 +4186-4200 +4186-4200 +4187-4200 +4187-4189 +4187-4188 +4188 +4190-4200 +4191-4200 +4191-4194 +4192-4194 +4193-4194 +4196-4200 +4197-4200 +4198-4200 +4199-4200 +4200 +4201-4220 +4201-4220 +4202-4220 +4203-4210 +4203-4205 +4204-4205 +4207-4210 +4208-4210 +4209-4210 +4211-4220 +4212-4220 +4212 +4215-4220 +4216-4220 +4217-4220 +4218-4220 +4219-4220 +4221-4231 +4221-4231 +4222-4231 +4222-4225 +4222-4224 +4223-4224 +4226-4231 +4227-4231 +4228-4231 +4229-4231 +4230-4231 +4232-4239 +4232-4239 +4233-4239 +4236-4239 +4237-4239 +4237-4238 +4240-4255 +4240-4255 +4241-4255 +4241-4242 +4243-4246 +4244-4246 +4245-4246 +4248-4249 +4250-4255 +4250-4251 +4251 +4252-4255 +4253-4255 +4254-4255 +4256-4265 +4256-4265 +4257-4265 +4258-4260 +4259-4260 +4262-4263 +4264-4265 +4266-4310 +4266-4310 +4267-4310 +4267-4268 +4269-4272 +4270-4272 +4271-4272 +4274-4310 +4274-4295 +4274-4275 +4278-4281 +4279-4281 +4280-4281 +4282-4295 +4283-4295 +4283-4285 +4286-4295 +4286-4290 +4287-4290 +4288-4290 +4289-4290 +4291-4295 +4292-4295 +4293-4295 +4293 +4294-4295 +4295 +4296-4310 +4297-4310 +4298-4310 +4299-4310 +4300-4310 +4302-4305 +4303-4305 +4304-4305 +4306-4308 +4307-4308 +4309-4310 +4311-4325 +4311-4325 +4313-4314 +4315-4325 +4315 +4316-4325 +4316-4319 +4317-4319 +4318-4319 +4320-4325 +4321-4325 +4322-4325 +4323-4325 +4324-4325 +4326-4332 +4326-4332 +4327-4332 +4327 +4329-4332 +4330-4332 +4331-4332 +4333-4347 +4333-4347 +4334-4347 +4334-4337 +4334 +4335-4336 +4338-4347 +4339-4347 +4340-4347 +4340-4341 +4342-4347 +4343-4347 +4344-4345 +4346-4347 +4348-4365 +4348-4365 +4349-4365 +4349-4360 +4349-4350 +4351-4352 +4354-4360 +4354-4358 +4355-4358 +4356-4358 +4357-4358 +4359-4360 +4361-4365 +4362-4365 +4364-4365 +4366-4369 +4366-4369 +4367-4369 +4367 +4370-4390 +4370-4390 +4371-4390 +4371 +4372-4390 +4372-4376 +4374-4376 +4375-4376 +4377-4390 +4378-4390 +4379-4382 +4380-4382 +4381-4382 +4383 +4385-4390 +4385-4386 +4387-4390 +4388-4390 +4389-4390 +4391-4409 +4391-4409 +4392-4409 +4392 +4393-4394 +4396-4398 +4397-4398 +4399-4409 +4399-4400 +4401-4405 +4402-4405 +4403-4405 +4404-4405 +4407-4409 +4408-4409 +4410-4423 +4410-4423 +4411-4423 +4412 +4414-4423 +4415-4419 +4415-4416 +4418-4419 +4419 +4421-4423 +4421-4423 +4422-4423 +4424-4433 +4424-4433 +4425-4433 +4425-4426 +4425 +4427-4433 +4429-4433 +4429-4430 +4431-4433 +4432-4433 +4434-4440 +4434-4440 +4435-4440 +4436-4438 +4437-4438 +4440 +4441-4460 +4441-4460 +4444-4446 +4445-4446 +4447-4460 +4448-4460 +4448-4454 +4448-4449 +4450-4453 +4451-4453 +4452-4453 +4455-4460 +4456-4460 +4456-4458 +4457-4458 +4461-4479 +4461-4479 +4462-4479 +4464-4465 +4466-4479 +4467-4479 +4468-4471 +4469-4471 +4470-4471 +4472 +4473-4479 +4474-4479 +4475-4476 +4478-4479 +4480-4491 +4480-4491 +4481-4491 +4481-4488 +4483-4488 +4484-4488 +4485-4486 +4487-4488 +4489-4491 +4490-4491 +4492-4500 +4492-4500 +4493-4500 +4495-4497 +4496-4497 +4498-4500 +4499-4500 +4501-4512 +4501-4512 +4502-4512 +4502-4508 +4503-4505 +4504-4505 +4506-4508 +4507-4508 +4509-4512 +4510-4512 +4510-4511 +4513-4519 +4513-4519 +4514-4519 +4515-4516 +4517-4519 +4518-4519 +4520-4533 +4520-4533 +4521-4533 +4521-4522 +4522 +4523-4525 +4524-4525 +4526-4529 +4527-4529 +4527-4528 +4530-4533 +4531-4533 +4531-4532 +4534-4543 +4534-4543 +4535-4543 +4535-4540 +4536-4537 +4538-4540 +4539-4540 +4541-4543 +4542-4543 +4544-4570 +4544-4570 +4544-4547 +4549-4550 +4551 +4554-4570 +4555-4570 +4556-4570 +4556-4560 +4556-4558 +4557-4558 +4561-4570 +4562-4570 +4562-4568 +4562 +4564-4566 +4565-4566 +4567-4568 +4569-4570 +4570 +4571-4580 +4571-4580 +4572-4580 +4572-4576 +4572 +4573-4574 +4577-4580 +4578-4580 +4578-4580 +4579-4580 +4581-4594 +4581-4594 +4582-4594 +4583-4586 +4584-4586 +4585-4586 +4587-4588 +4590-4594 +4591-4594 +4592-4594 +4593-4594 +4595-4605 +4595-4605 +4596-4605 +4597-4598 +4599-4605 +4599-4604 +4600-4604 +4602-4604 +4603-4604 +4605 +4606-4620 +4606-4620 +4607-4620 +4607-4608 +4609-4612 +4609 +4610-4612 +4611-4612 +4614-4620 +4614-4615 +4615 +4616-4620 +4616-4618 +4617-4618 +4621-4628 +4621-4628 +4622-4628 +4623-4624 +4625-4628 +4626-4628 +4626-4627 +4629-4654 +4629-4654 +4630-4654 +4630-4631 +4632-4645 +4632-4637 +4633-4637 +4634-4637 +4635-4637 +4636-4637 +4638-4645 +4639-4645 +4640-4645 +4640-4641 +4640-4641 +4642-4645 +4643-4645 +4643-4644 +4647-4654 +4647 +4648-4654 +4649-4654 +4650-4652 +4651-4652 +4654 +4655-4657 +4655-4657 +4656-4657 +4658-4671 +4658-4671 +4659-4671 +4659-4662 +4660-4662 +4661-4662 +4663-4667 +4663 +4665-4667 +4666-4667 +4668-4671 +4669-4671 +4670-4671 +4672-4681 +4672-4681 +4673-4681 +4674-4676 +4674-4675 +4677-4681 +4678-4681 +4678-4680 +4679-4680 +4682-4696 +4682-4696 +4683-4696 +4683-4686 +4685-4686 +4687-4696 +4688-4689 +4690-4696 +4690 +4691-4696 +4692-4696 +4693-4696 +4695-4696 +4695-4696 +4697-4715 +4697-4715 +4698-4715 +4698-4701 +4699-4701 +4700-4701 +4702-4715 +4702-4705 +4704-4705 +4706-4715 +4707-4715 +4709-4710 +4711-4715 +4712-4715 +4713-4715 +4714-4715 +4716-4719 +4716-4719 +4718-4719 +4718 +4719 +4720-4731 +4720-4731 +4722-4724 +4723-4724 +4725-4731 +4726-4731 +4726-4729 +4727-4729 +4728-4729 +4732-4736 +4732-4736 +4733-4736 +4734-4736 +4735-4736 +4737-4745 +4737-4745 +4738-4745 +4740-4741 +4742-4745 +4743-4745 +4744-4745 +4746-4755 +4746-4755 +4747-4755 +4748 +4751-4755 +4752-4755 +4752-4754 +4753-4754 +4756-4763 +4756-4763 +4757-4763 +4757-4758 +4759-4763 +4762-4763 +4763 +4764-4770 +4764-4770 +4765-4770 +4765-4767 +4766-4767 +4768-4770 +4769-4770 +4771-4781 +4771-4781 +4772-4781 +4773-4774 +4775-4781 +4776-4781 +4779-4781 +4780-4781 +4782-4793 +4782-4793 +4783-4793 +4783-4784 +4786-4793 +4786-4790 +4787-4790 +4788-4790 +4789-4790 +4792-4793 +4794-4821 +4794-4821 +4795-4821 +4796-4797 +4798-4803 +4798-4800 +4798-4799 +4801-4803 +4802-4803 +4804-4821 +4804-4808 +4805-4808 +4806-4808 +4807-4808 +4809-4814 +4810-4814 +4811-4814 +4812-4814 +4813-4814 +4815-4821 +4816-4821 +4817-4821 +4817-4818 +4819-4821 +4820-4821 +4822-4838 +4822-4838 +4823-4838 +4823-4825 +4824-4825 +4827-4828 +4829-4838 +4830-4838 +4830-4833 +4830-4833 +4831-4833 +4832-4833 +4834-4838 +4835-4838 +4835-4838 +4836-4838 +4839-4851 +4839-4851 +4841-4843 +4842-4843 +4844-4851 +4844-4847 +4845-4847 +4845-4846 +4848-4851 +4849-4851 +4849-4850 +4852-4864 +4852-4864 +4853-4864 +4854-4857 +4855-4857 +4856-4857 +4858-4864 +4859-4864 +4861-4864 +4862-4864 +4863-4864 +4865-4885 +4865-4885 +4866-4885 +4866-4870 +4867-4870 +4868-4870 +4869-4870 +4873-4875 +4874-4875 +4876-4885 +4877-4885 +4877-4878 +4879-4885 +4880-4885 +4881-4885 +4881-4882 +4883-4885 +4884-4885 +4886-4893 +4886-4893 +4887-4893 +4887-4891 +4887-4889 +4888-4889 +4890-4891 +4894-4938 +4894-4938 +4894-4898 +4895-4898 +4896-4898 +4897-4898 +4899-4938 +4900-4938 +4900-4938 +4900-4903 +4901-4903 +4902-4903 +4904-4938 +4905-4938 +4905-4913 +4905-4908 +4906-4908 +4907-4908 +4909-4913 +4910-4913 +4911-4913 +4912-4913 +4914-4916 +4915-4916 +4917-4921 +4918-4921 +4919-4921 +4920-4921 +4922-4927 +4922-4925 +4923-4925 +4924-4925 +4926-4927 +4928-4938 +4928-4930 +4929-4930 +4931-4938 +4932-4938 +4932-4934 +4933-4934 +4935-4938 +4936-4938 +4939-4958 +4939-4958 +4939-4941 +4940-4941 +4943-4944 +4945-4958 +4947-4958 +4948-4958 +4948-4952 +4948-4950 +4949-4950 +4953-4958 +4954-4958 +4954-4956 +4955-4956 +4959-4968 +4959-4968 +4960-4968 +4962-4968 +4963-4968 +4963-4966 +4963-4964 +4965-4966 +4966 +4967-4968 +4969-4978 +4969-4978 +4970-4978 +4970 +4972-4978 +4973-4978 +4974-4978 +4975-4978 +4976-4978 +4977-4978 +4979-4986 +4979-4986 +4979-4980 +4979 +4981-4982 +4983-4984 +4985-4986 +4987-4990 +4987-4990 +4987-4988 +4989-4990 +4991-5012 +4991-5012 +4991-5001 +4993-4997 +4994-4995 +4996-4997 +4998-5001 +4999-5001 +5000-5001 +5002-5012 +5003-5012 +5003-5005 +5004-5005 +5006-5008 +5007-5008 +5009-5010 +5011-5012 +5013-5019 +5013-5019 +5014-5019 +5015-5016 +5017-5019 +5018-5019 +5020-5033 +5020-5033 +5021-5033 +5021-5027 +5022-5027 +5022-5026 +5023-5026 +5024-5026 +5025-5026 +5028 +5029-5033 +5030-5031 +5034-5038 +5034-5038 +5034-5035 +5036-5038 +5037-5038 +5038 +5039-5045 +5039-5045 +5040-5045 +5040-5043 +5041-5043 +5042-5043 +5046-5069 +5046-5069 +5047-5069 +5047-5058 +5048-5058 +5048-5052 +5049-5052 +5050-5051 +5054-5056 +5055-5056 +5057-5058 +5059-5069 +5060-5069 +5060-5063 +5061-5063 +5064-5066 +5065-5066 +5067-5068 +5070-5094 +5070-5094 +5071-5094 +5071-5080 +5072-5080 +5072-5075 +5076-5080 +5077-5080 +5078-5080 +5079-5080 +5081-5094 +5081-5088 +5082-5088 +5083-5088 +5083-5087 +5083-5084 +5085-5087 +5086-5087 +5090-5094 +5091-5094 +5092-5094 +5093-5094 +5095-5110 +5095-5110 +5095-5097 +5096-5097 +5098-5110 +5098-5106 +5100-5103 +5101-5103 +5102-5103 +5104-5106 +5105-5106 +5107-5110 +5108-5110 +5108-5110 +5108-5109 +5111-5119 +5111-5119 +5115-5119 +5116-5119 +5117-5119 +5118-5119 +5120-5130 +5120-5130 +5121-5130 +5121-5125 +5123-5125 +5124-5125 +5124-5125 +5126-5130 +5127-5130 +5127 +5128-5130 +5129-5130 +5129-5130 +5131-5135 +5131-5135 +5132-5135 +5133-5135 +5134-5135 +5136-5147 +5136-5147 +5137-5147 +5137-5140 +5139-5140 +5141-5147 +5142-5147 +5142-5145 +5143-5145 +5144-5145 +5148-5162 +5148-5162 +5149-5162 +5149-5153 +5150-5153 +5151-5153 +5152-5153 +5155-5156 +5157-5162 +5158-5162 +5159-5162 +5160-5162 +5161-5162 +5163-5172 +5163-5172 +5164-5172 +5164-5166 +5165-5166 +5167-5172 +5167-5168 +5169-5172 +5169 +5170-5172 +5171-5172 +5173-5181 +5173-5181 +5174-5181 +5176-5179 +5177-5179 +5178-5179 +5180-5181 +5182-5197 +5182-5197 +5183-5197 +5184-5187 +5186-5187 +5187 +5189-5197 +5189-5193 +5190-5193 +5191-5193 +5192-5193 +5194-5197 +5195-5197 +5196-5197 +5198-5214 +5198-5214 +5199-5214 +5199-5206 +5199-5203 +5202-5203 +5204-5206 +5205-5206 +5207-5214 +5208-5214 +5208-5211 +5210-5211 +5212-5214 +5213-5214 +5215-5223 +5215-5223 +5216-5223 +5216-5217 +5218-5219 +5220-5223 +5221-5223 +5222-5223 +5224-5230 +5224-5230 +5225-5230 +5225-5228 +5225-5228 +5226-5228 +5227-5228 +5231-5242 +5231-5242 +5232-5242 +5232-5238 +5233-5238 +5235-5238 +5236-5238 +5236-5237 +5240-5242 +5241-5242 +5243-5259 +5243-5259 +5244-5259 +5244-5246 +5245-5246 +5247-5259 +5247-5253 +5247-5248 +5250-5253 +5251-5253 +5252-5253 +5254-5259 +5255-5259 +5256-5259 +5257-5259 +5258-5259 +5260-5271 +5260-5271 +5260-5265 +5263-5265 +5264-5265 +5266-5271 +5267-5271 +5268-5271 +5269-5271 +5270-5271 +5272-5287 +5272-5287 +5272-5280 +5273-5274 +5275-5280 +5276-5280 +5277-5280 +5278-5280 +5279-5280 +5281-5287 +5282-5287 +5282-5283 +5284-5287 +5285-5287 +5286-5287 +5288-5297 +5288-5297 +5288-5292 +5289-5292 +5289-5290 +5293-5297 +5293-5294 +5295-5297 +5296-5297 +5298-5301 +5298-5301 +5299-5301 +5302-5313 +5302-5313 +5303-5313 +5305-5313 +5305-5308 +5305 +5306-5308 +5309-5313 +5310-5313 +5311-5313 +5314-5323 +5314-5323 +5314-5319 +5317-5319 +5318-5319 +5321-5323 +5322-5323 +5324-5333 +5324-5333 +5325-5333 +5325-5329 +5326-5328 +5327-5328 +5331-5333 +5332-5333 +5334-5347 +5334-5347 +5335-5347 +5337-5347 +5338-5347 +5339-5347 +5339-5341 +5340-5341 +5342-5347 +5343-5347 +5345-5347 +5345-5346 +5348-5359 +5348-5359 +5349-5359 +5351-5359 +5352-5359 +5353-5359 +5353-5356 +5353-5354 +5355-5356 +5358-5359 +5360-5364 +5360-5364 +5361-5364 +5361-5362 +5365-5377 +5365-5377 +5366-5377 +5366-5368 +5367-5368 +5371-5373 +5372-5373 +5374-5377 +5375-5377 +5376-5377 +5378-5387 +5378-5387 +5379-5387 +5379-5385 +5380-5385 +5380-5384 +5381-5384 +5382-5384 +5383-5384 +5386-5387 +5388-5390 +5388-5390 +5389-5390 +5391-5394 +5391-5394 +5391-5392 +5395-5415 +5395-5415 +5396-5415 +5396-5403 +5396-5397 +5399-5400 +5401-5403 +5402-5403 +5406-5407 +5408-5415 +5409-5415 +5409-5411 +5410-5411 +5412-5415 +5413-5415 +5414-5415 +5416-5434 +5416-5434 +5417-5434 +5417-5423 +5418-5423 +5421-5423 +5422-5423 +5424-5434 +5427-5434 +5428-5434 +5428-5430 +5429-5430 +5431-5434 +5432-5434 +5433-5434 +5435-5443 +5435-5443 +5437-5443 +5438-5443 +5439-5443 +5441-5443 +5442-5443 +5444-5449 +5444-5449 +5445-5447 +5446-5447 +5449 +5450-5476 +5450-5476 +5451-5476 +5451-5469 +5452-5469 +5452-5457 +5454-5457 +5455-5457 +5456-5457 +5458-5463 +5459-5463 +5460-5463 +5461-5463 +5462-5463 +5464-5469 +5465-5469 +5466-5469 +5467-5469 +5468-5469 +5470-5476 +5471-5476 +5471-5473 +5472-5473 +5474-5476 +5475-5476 +5477-5487 +5477-5487 +5477-5483 +5478-5483 +5479-5481 +5480-5481 +5482-5483 +5488-5499 +5488-5499 +5489-5499 +5489-5495 +5490-5495 +5491-5493 +5492-5493 +5494-5495 +5500-5514 +5500-5514 +5501-5514 +5501-5510 +5501-5506 +5504-5506 +5505-5506 +5507-5510 +5508-5510 +5509-5510 +5515-5531 +5515-5531 +5515-5521 +5515-5519 +5516-5519 +5517-5519 +5518-5519 +5522-5531 +5523-5531 +5523-5529 +5524-5529 +5525-5527 +5526-5527 +5528-5529 +5532-5544 +5532-5544 +5532-5536 +5532-5534 +5533-5534 +5537-5544 +5538-5544 +5538-5540 +5539-5540 +5542-5544 +5543-5544 +5545-5563 +5545-5563 +5545-5553 +5545-5550 +5546-5550 +5548-5550 +5549-5550 +5551-5552 +5554-5563 +5555-5563 +5555-5560 +5556-5560 +5558-5560 +5559-5560 +5561-5562 +5564-5586 +5564-5586 +5565-5586 +5565-5577 +5566-5577 +5568-5571 +5569-5571 +5569-5570 +5572-5573 +5575-5577 +5576-5577 +5578-5586 +5578-5580 +5579-5580 +5581-5586 +5581-5582 +5584-5586 +5585-5586 +5587-5607 +5587-5607 +5588-5607 +5588 +5589-5607 +5589-5597 +5590-5597 +5591-5592 +5593-5597 +5594-5597 +5595-5597 +5596-5597 +5598-5607 +5600-5607 +5601-5607 +5601-5603 +5602-5603 +5604-5607 +5605-5607 +5606-5607 +5608-5632 +5608-5632 +5609-5632 +5609-5610 +5611-5618 +5612-5614 +5613-5614 +5615-5618 +5616-5618 +5617-5618 +5619-5623 +5620-5623 +5621-5623 +5622-5623 +5626-5632 +5626-5629 +5628-5629 +5629 +5630-5632 +5631-5632 +5633-5645 +5633-5645 +5634-5645 +5634 +5635-5636 +5639-5645 +5639 +5642-5645 +5643-5645 +5644-5645 +5646-5661 +5646-5661 +5646-5647 +5648-5650 +5649-5650 +5651-5652 +5653-5655 +5654-5655 +5656-5658 +5657-5658 +5659-5661 +5660-5661 +5662-5670 +5662-5670 +5663-5670 +5665-5670 +5666-5670 +5669-5670 +5671-5691 +5671-5691 +5672-5691 +5672-5673 +5674-5691 +5675-5676 +5677-5691 +5678-5679 +5680-5681 +5682-5691 +5682-5687 +5682-5683 +5685-5687 +5686-5687 +5688-5691 +5688-5691 +5689-5691 +5689-5690 +5692-5699 +5692-5699 +5693-5699 +5693-5694 +5696-5699 +5696-5699 +5697-5699 +5697-5698 +5700-5709 +5700-5709 +5701-5704 +5702-5704 +5702-5703 +5705-5709 +5706-5709 +5707-5709 +5708-5709 +5710-5714 +5710-5714 +5711-5714 +5711-5712 +5713-5714 +5715-5741 +5715-5741 +5715-5720 +5715 +5718-5720 +5719-5720 +5719-5720 +5721-5741 +5723-5741 +5723-5725 +5723-5724 +5729-5731 +5730-5731 +5732-5734 +5733-5734 +5735-5741 +5737-5739 +5738-5739 +5740-5741 +5742-5764 +5742-5764 +5742-5744 +5743-5744 +5745-5764 +5745-5753 +5747-5749 +5748-5749 +5750-5753 +5751-5753 +5752-5753 +5754-5764 +5755-5764 +5755-5761 +5756-5761 +5757-5761 +5758-5761 +5759-5761 +5760-5761 +5765-5782 +5765-5782 +5766-5782 +5766-5778 +5766-5773 +5766-5771 +5767-5771 +5768-5771 +5769-5771 +5770-5771 +5772-5773 +5774-5777 +5775-5777 +5776-5777 +5779-5782 +5780-5782 +5783-5792 +5783-5792 +5784-5792 +5784-5789 +5785-5789 +5785-5786 +5787-5789 +5788-5789 +5790-5791 +5793-5802 +5793-5802 +5794-5802 +5794-5796 +5795-5796 +5796 +5797-5802 +5799-5802 +5800-5802 +5801-5802 +5802 +5803-5806 +5803-5806 +5803-5805 +5804-5805 +5807-5812 +5807-5812 +5808-5812 +5810-5812 +5810-5811 +5813-5833 +5813-5833 +5815-5833 +5815-5819 +5816-5819 +5817-5819 +5818-5819 +5820-5833 +5820-5824 +5821-5823 +5822-5823 +5825-5829 +5825-5826 +5827-5829 +5828-5829 +5830-5833 +5830 +5831-5833 +5832-5833 +5834-5844 +5834-5844 +5835-5844 +5835-5840 +5837-5840 +5837-5840 +5837-5838 +5839-5840 +5841-5844 +5842-5844 +5843-5844 +5845-5863 +5845-5863 +5845-5852 +5846-5849 +5847-5849 +5848-5849 +5850-5852 +5850 +5851-5852 +5852 +5853-5863 +5854-5863 +5855-5863 +5855 +5856-5863 +5856-5863 +5856-5859 +5857-5859 +5858-5859 +5860-5863 +5861-5863 +5862-5863 +5864-5871 +5864-5871 +5865-5871 +5866-5867 +5868-5871 +5869-5871 +5870-5871 +5872-5886 +5872-5886 +5874-5883 +5875-5883 +5876-5883 +5877-5883 +5877-5878 +5880-5883 +5881-5883 +5882-5883 +5884-5886 +5885-5886 +5887-5912 +5887-5912 +5887-5889 +5889 +5890-5892 +5892 +5893-5912 +5894-5912 +5894-5905 +5895-5905 +5895-5898 +5896-5898 +5897-5898 +5900-5905 +5900-5901 +5902-5905 +5903-5905 +5904-5905 +5907-5912 +5908-5911 +5909-5911 +5910-5911 +5913-5925 +5913-5925 +5914-5925 +5916-5925 +5916-5923 +5916-5918 +5917-5918 +5921-5923 +5922-5923 +5924-5925 +5925 +5926-5932 +5926-5932 +5927-5932 +5927 +5929-5932 +5930-5931 +5933-5935 +5933-5935 +5933-5934 +5936-5951 +5936-5951 +5937-5951 +5937-5946 +5938-5946 +5938-5939 +5941-5946 +5941-5942 +5943-5946 +5944-5946 +5945-5946 +5948-5951 +5949-5951 +5950-5951 +5952-5964 +5952-5964 +5953-5964 +5955-5964 +5956-5964 +5956-5962 +5956-5957 +5960-5962 +5961-5962 +5963-5964 +5964 +5965-5992 +5965-5992 +5965-5968 +5966-5968 +5967-5968 +5969 +5970-5971 +5973-5992 +5973-5981 +5975-5981 +5975-5981 +5976-5981 +5977-5981 +5977-5978 +5979-5981 +5980-5981 +5982-5992 +5983-5992 +5983-5988 +5985-5988 +5986-5988 +5987-5988 +5989-5992 +5990-5992 +5993-6001 +5993-6001 +5993-5995 +5993 +5994-5995 +5994-5995 +5996-6001 +5997-6001 +6000-6001 +6002-6033 +6002-6033 +6002-6008 +6005-6008 +6006-6008 +6007-6008 +6009-6033 +6010-6033 +6010-6017 +6012-6013 +6014-6017 +6015-6017 +6016-6017 +6018-6033 +6019-6033 +6019-6020 +6023-6033 +6024-6033 +6025-6033 +6025-6026 +6027-6033 +6028-6033 +6029-6033 +6029-6030 +6032-6033 +6034-6044 +6034-6044 +6034-6041 +6035-6036 +6037-6041 +6037-6041 +6038-6041 +6039-6041 +6039 +6040-6041 +6041 +6042-6044 +6045-6067 +6045-6067 +6045-6050 +6046-6048 +6047-6048 +6049-6050 +6051-6054 +6052-6054 +6053-6054 +6055-6067 +6056-6067 +6056-6061 +6057-6059 +6058-6059 +6060-6061 +6062-6067 +6063-6067 +6065-6067 +6066-6067 +6068-6078 +6068-6078 +6069-6078 +6069-6072 +6069-6071 +6070-6071 +6073-6078 +6074-6078 +6074-6076 +6075-6076 +6079-6090 +6079-6090 +6079-6082 +6080-6082 +6081-6082 +6084-6085 +6086-6087 +6088-6090 +6089-6090 +6091-6101 +6091-6101 +6092-6101 +6092-6095 +6092-6094 +6093-6094 +6096-6101 +6097-6101 +6098-6101 +6098-6099 +6100-6101 +6101 +6102-6118 +6102-6118 +6103-6118 +6103-6104 +6105 +6108-6118 +6109-6111 +6110-6111 +6113-6118 +6113-6114 +6117-6118 +6119-6161 +6119-6161 +6120-6161 +6123-6161 +6124-6161 +6125-6133 +6125-6127 +6128-6133 +6129-6133 +6129 +6130-6133 +6131-6133 +6131-6133 +6132-6133 +6134-6161 +6135-6161 +6135-6140 +6136-6140 +6137-6140 +6138-6140 +6139-6140 +6141-6161 +6142-6161 +6142-6145 +6143-6145 +6144-6145 +6147-6161 +6147-6156 +6147-6152 +6147-6148 +6150-6151 +6153-6156 +6154-6156 +6154-6156 +6155-6156 +6158-6161 +6159-6160 +6162-6181 +6162-6181 +6163-6181 +6164-6181 +6165-6167 +6166-6167 +6168-6181 +6169-6181 +6169-6178 +6169-6170 +6171-6172 +6173-6175 +6174-6175 +6176-6177 +6179-6181 +6180-6181 +6182-6190 +6182-6190 +6183-6190 +6185-6190 +6186-6190 +6186-6188 +6186-6187 +6191-6205 +6191-6205 +6192-6205 +6192-6200 +6193-6200 +6194-6200 +6196-6200 +6196-6197 +6198-6200 +6199-6200 +6201-6205 +6202-6205 +6204-6205 +6206-6214 +6206-6214 +6207-6214 +6208-6210 +6209-6210 +6211-6214 +6212-6214 +6213-6214 +6215-6222 +6215-6222 +6216-6222 +6216-6217 +6219-6222 +6220-6222 +6221-6222 +6223-6228 +6223-6228 +6224-6228 +6224 +6225-6228 +6226-6228 +6229-6240 +6229-6240 +6230-6240 +6232-6237 +6233-6237 +6234-6237 +6235-6237 +6235-6236 +6238-6240 +6239-6240 +6241-6266 +6241-6266 +6242-6266 +6245-6266 +6247-6248 +6249-6266 +6250-6266 +6250-6253 +6252-6253 +6254-6266 +6255-6266 +6255-6261 +6256-6261 +6258-6259 +6260-6261 +6263-6266 +6263-6264 +6265-6266 +6266 +6267-6271 +6267-6271 +6268-6271 +6272-6277 +6272-6277 +6273-6277 +6274-6277 +6274-6275 +6278-6285 +6278-6285 +6280-6281 +6282-6285 +6283-6285 +6284-6285 +6286-6293 +6286-6293 +6287-6293 +6287 +6288-6293 +6289-6293 +6291-6293 +6292-6293 +6292-6293 +6294-6304 +6294-6304 +6295-6304 +6295 +6296-6297 +6300-6301 +6302-6304 +6303-6304 +6305-6310 +6305-6310 +6306-6310 +6306-6307 +6308 +6311-6326 +6311-6326 +6312-6326 +6312-6314 +6315-6326 +6316-6326 +6316-6318 +6317-6318 +6319-6326 +6320-6326 +6322-6326 +6323-6326 +6327-6349 +6327-6349 +6328-6349 +6329-6349 +6330-6349 +6331-6334 +6332-6334 +6333-6334 +6335-6349 +6336-6349 +6336 +6337-6349 +6337-6341 +6338-6341 +6338-6339 +6340-6341 +6342-6349 +6343-6349 +6343-6344 +6345-6349 +6347-6349 +6348-6349 +6350-6360 +6350-6360 +6350-6355 +6351-6353 +6352-6353 +6354-6355 +6356-6360 +6357-6360 +6358-6359 +6361-6373 +6361-6373 +6361-6362 +6363-6364 +6364 +6365-6373 +6366-6373 +6368-6370 +6369-6370 +6371-6373 +6372-6373 +6374-6389 +6374-6389 +6374-6377 +6374-6375 +6375 +6378-6382 +6379-6382 +6379-6380 +6380 +6383-6389 +6384-6389 +6385-6389 +6386-6387 +6388-6389 +6390-6395 +6390-6395 +6391-6395 +6391-6393 +6392-6393 +6396-6402 +6396-6402 +6399-6402 +6399 +6400-6402 +6401-6402 +6403-6411 +6403-6411 +6404-6411 +6406-6411 +6407-6411 +6407-6408 +6409-6411 +6410-6411 +6412-6424 +6412-6424 +6413-6424 +6413-6416 +6414-6416 +6415-6416 +6417-6424 +6418-6424 +6419-6424 +6420-6424 +6422-6424 +6423-6424 +6425-6442 +6425-6442 +6426-6442 +6426-6427 +6428 +6430-6442 +6430-6434 +6433-6434 +6435-6442 +6436-6442 +6437-6442 +6438-6442 +6438-6439 +6440-6442 +6441-6442 +6443-6465 +6443-6465 +6444-6465 +6444-6447 +6445-6447 +6446-6447 +6450-6465 +6450-6455 +6450-6454 +6451-6454 +6452-6454 +6453-6454 +6456-6465 +6457-6465 +6457-6463 +6458-6463 +6458-6460 +6459-6460 +6461-6463 +6462-6463 +6466-6475 +6466-6475 +6467-6475 +6467-6472 +6468-6472 +6468-6469 +6470-6471 +6473-6474 +6476-6481 +6476-6481 +6477-6481 +6479-6481 +6480-6481 +6482-6495 +6482-6495 +6483-6495 +6483-6489 +6484-6489 +6485-6486 +6488-6489 +6490-6492 +6491-6492 +6493-6494 +6496-6501 +6496-6501 +6496-6497 +6499-6500 +6502-6518 +6502-6518 +6503-6518 +6503-6510 +6504-6510 +6504-6506 +6505-6506 +6509-6510 +6512-6518 +6513-6514 +6515-6518 +6516-6518 +6517-6518 +6519-6539 +6519-6539 +6520-6539 +6520-6533 +6523-6533 +6523-6528 +6524-6528 +6525-6528 +6526-6528 +6527-6528 +6529-6533 +6530-6533 +6530-6532 +6531-6532 +6534-6539 +6535-6539 +6538-6539 +6540-6545 +6540-6545 +6541-6545 +6542-6544 +6543-6544 +6546-6560 +6546-6560 +6546-6553 +6546-6550 +6547-6550 +6549-6550 +6551-6552 +6554-6560 +6555-6560 +6555-6559 +6556-6559 +6558-6559 +6561-6578 +6561-6578 +6561-6562 +6565-6578 +6565-6571 +6565-6568 +6566-6568 +6567-6568 +6570-6571 +6572-6578 +6573-6578 +6573-6576 +6574-6576 +6574-6575 +6579-6590 +6579-6590 +6580-6590 +6580-6588 +6581-6588 +6584-6588 +6585-6588 +6586-6588 +6587-6588 +6589-6590 +6591-6611 +6591-6611 +6592-6611 +6592-6599 +6593-6599 +6595-6599 +6596-6599 +6597-6599 +6598-6599 +6600-6611 +6603-6611 +6603-6607 +6604-6607 +6605-6607 +6606-6607 +6608-6611 +6609-6611 +6610-6611 +6611 +6612-6631 +6612-6631 +6612-6621 +6613-6621 +6613-6616 +6614-6615 +6617-6621 +6618-6621 +6618-6620 +6619-6620 +6622-6631 +6623-6631 +6623-6626 +6624-6625 +6627-6631 +6628-6631 +6628-6630 +6629-6630 +6632-6638 +6632-6638 +6633-6638 +6633-6635 +6634-6635 +6636-6637 +6639-6646 +6639-6646 +6639-6640 +6639-6640 +6643-6644 +6645-6646 +6647-6655 +6647-6655 +6648-6655 +6648-6652 +6649-6652 +6650-6652 +6651-6652 +6653-6654 +6656-6674 +6656-6674 +6656-6664 +6656-6658 +6657-6658 +6659-6662 +6660-6662 +6661-6662 +6665-6674 +6666-6674 +6666-6668 +6667-6668 +6669-6672 +6670-6672 +6671-6672 +6675-6692 +6675-6692 +6676-6692 +6678-6692 +6679-6692 +6679-6685 +6679-6685 +6680-6685 +6680-6681 +6682-6685 +6684-6685 +6687-6688 +6690-6692 +6691-6692 +6693-6704 +6693-6704 +6694-6704 +6694-6698 +6694-6697 +6695-6697 +6696-6697 +6699-6704 +6700-6704 +6700-6703 +6701-6703 +6702-6703 +6705-6719 +6705-6719 +6708-6712 +6709-6712 +6710-6712 +6711-6712 +6713-6719 +6714-6719 +6714 +6716-6719 +6716-6717 +6720-6742 +6720-6742 +6721-6742 +6722 +6725-6742 +6725-6730 +6725-6728 +6725-6726 +6727-6728 +6731-6742 +6732-6742 +6736-6742 +6737-6742 +6738-6742 +6739-6742 +6740-6742 +6741-6742 +6743-6772 +6743-6772 +6744-6772 +6744-6756 +6745-6756 +6747-6751 +6748-6751 +6749-6751 +6750-6751 +6752-6756 +6752-6753 +6754-6756 +6755-6756 +6759-6762 +6760-6762 +6761-6762 +6763-6767 +6764-6767 +6765-6767 +6766-6767 +6768-6772 +6768-6769 +6770-6772 +6771-6772 +6773-6796 +6773-6796 +6773-6791 +6773-6785 +6773-6782 +6773-6774 +6776-6778 +6777-6778 +6779-6782 +6780-6782 +6780-6781 +6783-6785 +6784-6785 +6786-6791 +6787-6791 +6788-6791 +6789-6791 +6790-6791 +6792-6796 +6793-6796 +6794-6795 +6797-6825 +6797-6825 +6797-6820 +6797-6809 +6797-6806 +6797-6798 +6800-6802 +6801-6802 +6803-6806 +6804-6806 +6804-6805 +6807-6809 +6808-6809 +6810-6820 +6811-6820 +6812-6816 +6813-6816 +6814-6816 +6815-6816 +6817-6820 +6818-6820 +6819-6820 +6821-6825 +6822-6825 +6823-6824 +6826-6843 +6826-6843 +6827-6843 +6827-6834 +6828-6834 +6828-6830 +6829-6830 +6832-6834 +6833-6834 +6835-6840 +6836-6838 +6837-6838 +6839-6840 +6841-6843 +6842-6843 +6844-6852 +6844-6852 +6846-6852 +6846-6850 +6846-6849 +6847-6849 +6848-6849 +6851-6852 +6853-6860 +6853-6860 +6854-6860 +6854 +6856-6860 +6856 +6857-6858 +6858 +6859-6860 +6860 +6861-6885 +6861-6885 +6861-6875 +6861-6862 +6863-6871 +6864-6871 +6865-6866 +6867-6871 +6868-6871 +6869-6871 +6870-6871 +6872-6875 +6873-6875 +6873 +6876-6885 +6877-6885 +6878-6882 +6879-6882 +6880-6882 +6880-6881 +6884-6885 +6886-6893 +6886-6893 +6888-6893 +6889-6893 +6889-6891 +6889-6890 +6892-6893 +6894-6910 +6894-6910 +6894-6898 +6897-6898 +6900-6905 +6900-6901 +6902-6905 +6903-6905 +6904-6905 +6908-6910 +6909-6910 +6911-6945 +6911-6945 +6912-6945 +6912-6927 +6915-6927 +6916-6922 +6916-6918 +6917-6918 +6919-6922 +6920-6922 +6921-6922 +6925-6927 +6926-6927 +6928-6945 +6929-6945 +6930 +6932-6934 +6933-6934 +6935-6945 +6935-6939 +6937-6939 +6938-6939 +6940-6945 +6941-6945 +6943-6945 +6944-6945 +6946-6963 +6946-6963 +6947-6963 +6947-6954 +6948-6950 +6949-6950 +6951-6954 +6952-6954 +6953-6954 +6956-6963 +6956 +6957-6963 +6957-6963 +6957-6959 +6958-6959 +6960-6963 +6961-6963 +6962-6963 +6964-6983 +6964-6983 +6965-6983 +6965-6975 +6966-6975 +6968-6975 +6969-6975 +6970-6975 +6970-6972 +6971-6972 +6973-6975 +6974-6975 +6977-6982 +6978-6982 +6979-6980 +6981-6982 +6984-6996 +6984-6996 +6984-6987 +6985-6987 +6985-6986 +6988-6989 +6990-6992 +6991-6992 +6994-6996 +6995-6996 +6997-7016 +6997-7016 +6998-7016 +6998-7008 +6999-7000 +7001-7002 +7003-7008 +7004-7008 +7005-7007 +7005-7006 +7009-7016 +7010-7016 +7010-7012 +7011-7012 +7013-7015 +7014-7015 +7017-7029 +7017-7029 +7018-7029 +7021-7022 +7023-7029 +7024-7029 +7026-7027 +7027 +7028-7029 +7029 +7030-7110 +7030-7110 +7031-7110 +7031-7034 +7031-7034 +7032-7034 +7033-7034 +7035-7046 +7036-7046 +7036-7040 +7038-7040 +7039-7040 +7041-7046 +7042-7046 +7042 +7043-7044 +7047-7077 +7048-7077 +7048-7057 +7048-7052 +7050-7052 +7051-7052 +7053-7057 +7056-7057 +7058-7077 +7059-7077 +7059-7066 +7061-7066 +7062-7066 +7063-7066 +7065-7066 +7067-7077 +7068-7077 +7068-7070 +7068-7069 +7070 +7071-7077 +7072-7077 +7072-7076 +7073-7076 +7074-7076 +7078-7090 +7079-7090 +7079-7083 +7081-7083 +7082-7083 +7084-7090 +7085-7090 +7085-7087 +7086-7087 +7088-7090 +7089-7090 +7091-7110 +7092-7110 +7092-7098 +7094-7098 +7095-7098 +7096-7098 +7097-7098 +7099-7110 +7100-7110 +7100-7101 +7102-7110 +7102-7104 +7103-7104 +7105-7107 +7106-7107 +7108-7110 +7109-7110 +7111-7114 +7111-7114 +7111-7113 +7112-7113 +7115-7126 +7115-7126 +7116-7126 +7116 +7117-7118 +7121-7126 +7121-7122 +7123-7124 +7127-7144 +7127-7144 +7128-7144 +7129 +7131-7144 +7132-7144 +7132-7140 +7134-7140 +7135-7140 +7136-7140 +7137-7140 +7138-7140 +7139-7140 +7141-7144 +7142-7144 +7145-7161 +7145-7161 +7146-7161 +7146-7151 +7146-7147 +7148-7149 +7150-7151 +7151 +7152-7161 +7153-7161 +7153-7155 +7156-7161 +7156-7158 +7157-7158 +7160-7161 +7162-7177 +7162-7177 +7162-7163 +7164-7165 +7168-7177 +7169-7177 +7169-7171 +7169 +7172-7177 +7173-7177 +7173 +7175-7177 +7176-7177 +7178-7198 +7178-7198 +7179-7198 +7181-7198 +7181-7183 +7182-7183 +7184-7198 +7185-7198 +7186-7198 +7186-7191 +7186-7187 +7188-7191 +7189-7191 +7189-7190 +7192-7198 +7193-7198 +7193-7194 +7193 +7195-7198 +7196-7198 +7196-7197 +7199-7233 +7199-7233 +7200-7233 +7200-7215 +7200-7205 +7201-7205 +7202-7205 +7203-7205 +7203-7204 +7206-7210 +7207-7210 +7207-7208 +7211-7215 +7212-7215 +7212-7214 +7213-7214 +7216-7233 +7216-7230 +7216-7220 +7219-7220 +7221-7224 +7222-7224 +7222-7223 +7225-7228 +7226-7228 +7226-7227 +7229-7230 +7230 +7231-7233 +7232-7233 +7234-7246 +7234-7246 +7235-7246 +7235-7240 +7235-7238 +7236-7238 +7237-7238 +7239-7240 +7240 +7241-7246 +7242-7246 +7242-7244 +7242-7244 +7243-7244 +7245-7246 +7246 +7247-7269 +7247-7269 +7248-7269 +7249-7250 +7251-7269 +7252-7269 +7252-7262 +7252-7259 +7252-7255 +7253-7255 +7254-7255 +7257-7259 +7258-7259 +7260-7262 +7261-7262 +7263-7269 +7264-7269 +7264-7266 +7265-7266 +7267-7269 +7268-7269 +7270-7276 +7270-7276 +7271-7276 +7273-7276 +7274-7276 +7275-7276 +7276 +7277-7296 +7277-7296 +7277-7285 +7277-7282 +7279-7282 +7280-7282 +7281-7282 +7283-7285 +7284-7285 +7286-7296 +7286-7288 +7287-7288 +7289-7296 +7290-7296 +7291-7296 +7292-7296 +7293-7296 +7294-7296 +7295-7296 +7297-7303 +7297-7303 +7299-7303 +7300-7303 +7300-7302 +7301-7302 +7304-7321 +7304-7321 +7305-7321 +7305-7309 +7305-7309 +7306-7309 +7306-7308 +7307-7308 +7312-7321 +7313-7321 +7313-7315 +7313-7314 +7316-7321 +7317-7321 +7318-7319 +7322-7340 +7322-7340 +7323-7340 +7323-7330 +7323-7327 +7326-7327 +7328-7330 +7329-7330 +7331-7340 +7332-7340 +7332-7338 +7333-7335 +7334-7335 +7336-7338 +7337-7338 +7341-7368 +7341-7368 +7342-7368 +7342-7346 +7342-7346 +7343-7346 +7343-7345 +7344-7345 +7347-7352 +7349-7352 +7350-7352 +7350-7351 +7353-7365 +7354-7365 +7354-7362 +7354-7357 +7355-7357 +7356-7357 +7358-7362 +7359-7362 +7360-7362 +7361-7362 +7364-7365 +7366-7368 +7367-7368 +7369-7397 +7369-7397 +7370-7397 +7370-7375 +7370-7375 +7371-7375 +7371-7374 +7372-7374 +7373-7374 +7378-7397 +7378-7383 +7379-7383 +7379-7381 +7379-7380 +7382-7383 +7383 +7384-7397 +7385-7397 +7385-7386 +7387-7397 +7388-7397 +7388-7391 +7389-7391 +7392-7394 +7393-7394 +7395-7397 +7396-7397 +7398-7415 +7398-7415 +7398-7399 +7402-7415 +7403-7415 +7404-7407 +7405-7407 +7406-7407 +7408-7415 +7409-7415 +7410-7411 +7412-7415 +7413-7415 +7414-7415 +7416-7434 +7416-7434 +7417-7434 +7417-7425 +7417-7421 +7418-7421 +7419-7421 +7420-7421 +7423-7425 +7424-7425 +7426-7432 +7427-7432 +7429-7432 +7430-7432 +7431-7432 +7433-7434 +7434 +7435-7447 +7435-7447 +7436-7447 +7436-7442 +7437-7442 +7437-7439 +7438-7439 +7440-7442 +7441-7442 +7445-7447 +7446-7447 +7448-7464 +7448-7464 +7449-7464 +7449 +7450-7453 +7451-7453 +7452-7453 +7456-7464 +7456 +7458-7464 +7458-7459 +7461-7464 +7462-7464 +7463-7464 +7465-7468 +7465-7468 +7466-7468 +7469-7476 +7469-7476 +7470-7476 +7473-7476 +7473-7474 +7477-7486 +7477-7486 +7478-7486 +7478-7479 +7482-7486 +7483-7486 +7483 +7484-7486 +7484 +7487-7500 +7487-7500 +7488-7500 +7490-7500 +7490 +7491-7500 +7493-7495 +7494-7495 +7497-7498 +7499-7500 +7501-7506 +7501-7506 +7502-7506 +7504-7506 +7505-7506 +7507-7535 +7507-7535 +7508-7535 +7508-7511 +7509-7511 +7510-7511 +7513-7514 +7515-7535 +7515-7527 +7515-7518 +7517-7518 +7519-7527 +7520-7527 +7522-7523 +7524-7527 +7525-7527 +7526-7527 +7528-7535 +7529-7535 +7529-7530 +7532-7535 +7533-7535 +7534-7535 +7536-7556 +7536-7556 +7536-7537 +7540-7556 +7541-7556 +7543-7546 +7544-7546 +7545-7546 +7547-7556 +7547-7548 +7549-7556 +7549-7550 +7553-7556 +7554-7556 +7555-7556 +7557-7585 +7557-7585 +7557-7563 +7558-7563 +7561-7563 +7562-7563 +7564-7585 +7565-7585 +7565-7566 +7566 +7567-7570 +7568-7569 +7571-7573 +7572-7573 +7574-7585 +7575-7585 +7575-7579 +7576-7579 +7577-7579 +7578-7579 +7580-7585 +7581-7585 +7582-7585 +7583-7585 +7584-7585 +7586-7589 +7586-7589 +7586-7587 +7590-7608 +7590-7608 +7592-7595 +7593-7595 +7594-7595 +7596-7608 +7597-7608 +7597-7598 +7601-7604 +7602-7604 +7603-7604 +7605-7608 +7606-7608 +7609-7641 +7609-7641 +7609-7617 +7609-7610 +7612-7613 +7614-7615 +7616-7617 +7618-7641 +7619-7641 +7619-7620 +7624-7641 +7625-7641 +7626-7641 +7627-7641 +7628-7630 +7629-7630 +7631-7641 +7632-7641 +7633-7634 +7635-7637 +7636-7637 +7638-7641 +7639-7641 +7640-7641 +7642-7649 +7642-7649 +7643-7645 +7644-7645 +7647-7649 +7648-7649 +7650-7664 +7650-7664 +7651-7664 +7653-7655 +7654-7655 +7656-7664 +7657-7664 +7659-7664 +7660-7664 +7661-7664 +7662-7664 +7663-7664 +7665-7678 +7665-7678 +7666-7678 +7667 +7669-7678 +7669-7673 +7670-7673 +7671-7673 +7672-7673 +7675-7678 +7676-7678 +7677-7678 +7679-7684 +7679-7684 +7680-7684 +7680-7681 +7683-7684 +7685-7694 +7685-7694 +7686-7694 +7686-7688 +7686-7688 +7687-7688 +7691-7694 +7692-7694 +7693-7694 +7695-7711 +7695-7711 +7696-7711 +7696-7702 +7696-7697 +7699-7702 +7700-7702 +7701-7702 +7703-7711 +7704-7711 +7704-7708 +7704-7705 +7706-7708 +7707-7708 +7710-7711 +7712-7722 +7712-7722 +7713-7722 +7713-7717 +7713-7714 +7715-7716 +7718-7722 +7719-7722 +7719-7720 +7723-7737 +7723-7737 +7724-7737 +7724-7730 +7725-7730 +7725-7727 +7726-7727 +7728-7730 +7729-7730 +7733-7737 +7734-7737 +7735-7737 +7736-7737 +7738-7767 +7738-7767 +7738-7745 +7739-7742 +7740-7742 +7741-7742 +7743-7745 +7744-7745 +7746-7767 +7747-7767 +7747-7759 +7748-7751 +7749-7751 +7750-7751 +7752-7759 +7753-7759 +7753-7754 +7755-7759 +7756-7759 +7757-7759 +7758-7759 +7760-7767 +7761-7767 +7763-7767 +7764-7767 +7765-7767 +7766-7767 +7768-7776 +7768-7776 +7770-7776 +7770-7771 +7772-7776 +7773-7776 +7774-7776 +7775-7776 +7777-7789 +7777-7789 +7778-7779 +7781-7786 +7782-7786 +7783-7786 +7784-7786 +7785-7786 +7787-7789 +7788-7789 +7788-7789 +7790-7793 +7790-7793 +7790-7792 +7791-7792 +7794-7823 +7794-7823 +7796-7799 +7797-7799 +7798-7799 +7800-7823 +7800-7804 +7801-7804 +7802-7804 +7803-7804 +7805-7823 +7805-7808 +7805-7806 +7809-7814 +7810-7814 +7810-7813 +7811-7813 +7812-7813 +7815-7818 +7816-7818 +7817-7818 +7819-7823 +7820-7823 +7821-7823 +7821-7822 +7824-7834 +7824-7834 +7827-7830 +7828-7830 +7829-7830 +7831-7834 +7832-7834 +7833-7834 +7835-7847 +7835-7847 +7836-7847 +7836-7844 +7836-7839 +7837-7839 +7838-7839 +7840 +7842-7844 +7843-7844 +7845-7847 +7846-7847 +7848-7883 +7848-7883 +7851-7854 +7852-7854 +7853-7854 +7855-7883 +7855-7864 +7856-7864 +7856-7859 +7857-7859 +7858-7859 +7860-7864 +7861-7864 +7861-7863 +7862-7863 +7865-7883 +7865-7878 +7865-7873 +7865-7871 +7866-7867 +7867 +7869-7871 +7870-7871 +7872-7873 +7873 +7875-7876 +7877-7878 +7879-7883 +7880-7883 +7880-7881 +7884-7890 +7884-7890 +7886-7890 +7887-7890 +7888-7890 +7889-7890 +7891-7909 +7891-7909 +7891-7893 +7892-7893 +7894-7909 +7895-7909 +7895-7901 +7896-7897 +7898-7901 +7899-7901 +7900-7901 +7902-7909 +7903-7909 +7905-7909 +7906-7909 +7907-7909 +7908-7909 +7910-7918 +7910-7918 +7912-7918 +7912-7913 +7914-7918 +7915-7918 +7916-7918 +7917-7918 +7919-7921 +7919-7921 +7920-7921 +7922-7924 +7922-7924 +7924 +7925-7950 +7925-7950 +7926-7950 +7929-7950 +7929-7930 +7931-7937 +7932-7937 +7933-7937 +7934-7937 +7935-7937 +7936-7937 +7940-7950 +7940-7941 +7942-7950 +7944-7947 +7945-7947 +7946-7947 +7948-7950 +7949-7950 +7951-7961 +7951-7961 +7952-7961 +7952 +7953-7961 +7953-7959 +7954-7959 +7955-7956 +7957-7959 +7957-7958 +7960-7961 +7962-7986 +7962-7986 +7963-7986 +7963-7967 +7964-7967 +7965-7967 +7966-7967 +7970-7973 +7971-7973 +7972-7973 +7974-7986 +7975-7986 +7975-7976 +7977-7986 +7978-7986 +7979-7986 +7981-7986 +7981-7983 +7981-7982 +7984-7986 +7985-7986 +7987-7993 +7987-7993 +7988-7993 +7990-7993 +7991-7993 +7991-7992 +7994-8010 +7994-8010 +7995-8010 +7995-7999 +7995-7997 +7996-7997 +8000-8010 +8001-8010 +8001-8003 +8002-8003 +8004-8010 +8005-8006 +8007-8008 +8009-8010 +8011-8019 +8011-8019 +8012-8019 +8012-8014 +8012-8014 +8013-8014 +8016-8019 +8017-8018 +8020-8024 +8020-8024 +8021-8024 +8023-8024 +8025-8028 +8025-8028 +8026-8028 +8027-8028 +8029-8047 +8029-8047 +8030-8047 +8030-8031 +8034-8047 +8034-8037 +8038-8047 +8039-8047 +8040-8047 +8040-8042 +8041-8042 +8043-8047 +8044-8047 +8045-8047 +8046-8047 +8048-8057 +8048-8057 +8049-8057 +8052-8053 +8054-8057 +8055-8057 +8056-8057 +8058-8091 +8058-8091 +8058-8068 +8058-8061 +8059-8061 +8060-8061 +8063-8065 +8064-8065 +8066-8068 +8067-8068 +8069-8091 +8070-8091 +8071-8073 +8072-8073 +8074-8091 +8074-8078 +8076-8078 +8077-8078 +8079-8091 +8079-8083 +8081-8083 +8082-8083 +8084-8091 +8085-8091 +8085-8086 +8087-8088 +8090-8091 +8092-8110 +8092-8110 +8093-8110 +8093-8098 +8093-8094 +8095-8097 +8096-8097 +8099-8110 +8100-8110 +8100-8101 +8103-8110 +8104-8110 +8105-8110 +8106-8110 +8107-8110 +8108-8110 +8109-8110 +8111-8120 +8111-8120 +8112-8120 +8113-8114 +8116-8120 +8119-8120 +8121-8132 +8121-8132 +8122-8132 +8122-8127 +8122-8124 +8123-8124 +8126-8127 +8128-8132 +8129-8132 +8129-8130 +8133-8158 +8133-8158 +8134-8158 +8134-8149 +8134-8145 +8134-8137 +8134-8136 +8135-8136 +8138-8145 +8139-8142 +8140-8142 +8141-8142 +8143-8145 +8144-8145 +8146-8149 +8147-8149 +8148-8149 +8150-8158 +8151-8158 +8151-8152 +8154-8158 +8156-8158 +8157-8158 +8159-8176 +8159-8176 +8160-8176 +8161-8165 +8162-8165 +8163-8165 +8164-8165 +8167-8176 +8170-8171 +8172-8176 +8173-8176 +8174-8176 +8175-8176 +8177-8195 +8177-8195 +8178-8195 +8178-8188 +8178 +8179-8180 +8181-8186 +8182-8186 +8182-8183 +8184-8186 +8185-8186 +8186 +8188 +8189-8195 +8190-8195 +8190 +8193-8195 +8194-8195 +8196-8211 +8196-8211 +8197-8211 +8197-8202 +8198-8200 +8199-8200 +8201-8202 +8203-8206 +8204-8206 +8205-8206 +8207-8211 +8208-8211 +8209-8211 +8210-8211 +8212-8227 +8212-8227 +8213-8227 +8213-8219 +8213 +8214-8216 +8215-8216 +8218-8219 +8220-8222 +8221-8222 +8223-8227 +8224-8227 +8224 +8226-8227 +8228-8240 +8228-8240 +8229-8240 +8229 +8230-8231 +8234-8235 +8236-8238 +8237-8238 +8239-8240 +8241-8250 +8241-8250 +8242-8250 +8242 +8243-8244 +8248-8250 +8249-8250 +8251-8264 +8251-8264 +8252-8264 +8252-8255 +8252 +8254-8255 +8256-8264 +8257-8264 +8257-8259 +8258-8259 +8260-8264 +8261-8264 +8262-8264 +8263-8264 +8265-8293 +8265-8293 +8266-8293 +8266-8267 +8268-8293 +8270-8271 +8272-8293 +8273-8293 +8273-8281 +8273-8276 +8275-8276 +8277-8281 +8278-8281 +8278-8279 +8282-8293 +8283-8293 +8284-8285 +8286-8293 +8287-8293 +8287-8290 +8288-8290 +8289-8290 +8294-8306 +8294-8306 +8295-8306 +8295-8296 +8299-8306 +8299-8302 +8302 +8303-8306 +8306 +8307-8320 +8307-8320 +8308-8320 +8311-8320 +8311-8313 +8314-8320 +8315-8320 +8316-8320 +8316-8317 +8318-8320 +8319-8320 +8321-8327 +8321-8327 +8322-8327 +8324-8327 +8328-8360 +8328-8360 +8329-8360 +8329-8348 +8329-8335 +8330-8335 +8330-8331 +8333-8335 +8334-8335 +8336-8343 +8337-8343 +8337-8339 +8338-8339 +8340-8343 +8341-8343 +8342-8343 +8344-8347 +8345-8347 +8346-8347 +8349-8360 +8350-8360 +8350-8355 +8350 +8352-8353 +8354-8355 +8356-8360 +8357-8360 +8357-8358 +8359-8360 +8361-8374 +8361-8374 +8362-8374 +8362-8365 +8362-8363 +8364-8365 +8365 +8366-8374 +8367-8374 +8368-8374 +8368-8371 +8369-8371 +8369 +8370-8371 +8372-8374 +8373-8374 +8375-8385 +8375-8385 +8376-8385 +8376-8377 +8377 +8379-8381 +8380-8381 +8382-8385 +8383-8385 +8384-8385 +8386-8405 +8386-8405 +8387-8405 +8389-8405 +8389-8394 +8389-8390 +8392-8394 +8393-8394 +8395-8405 +8396-8405 +8398-8400 +8399-8400 +8401-8405 +8402-8405 +8404-8405 +8406-8416 +8406-8416 +8407-8416 +8407-8409 +8408-8409 +8411-8413 +8412-8413 +8414-8415 +8416 +8417-8422 +8417-8422 +8418-8422 +8418-8419 +8420-8422 +8423-8441 +8423-8441 +8424-8441 +8424-8436 +8424-8425 +8427-8428 +8429-8431 +8430-8431 +8433-8436 +8434-8436 +8435-8436 +8437-8441 +8438-8441 +8440-8441 +8442-8453 +8442-8453 +8443-8453 +8443-8446 +8444-8446 +8445-8446 +8448-8449 +8450-8453 +8451-8453 +8452-8453 +8454-8472 +8454-8472 +8455-8472 +8455-8467 +8455-8456 +8457-8462 +8458-8462 +8459-8461 +8460-8461 +8464-8467 +8465-8467 +8466-8467 +8468-8472 +8469-8472 +8469-8471 +8470-8471 +8473-8484 +8473-8484 +8474-8484 +8476-8477 +8479-8484 +8480-8484 +8480-8482 +8480 +8481-8482 +8483-8484 +8485-8502 +8485-8502 +8486-8502 +8486-8487 +8488-8489 +8491-8502 +8491 +8492-8494 +8493-8494 +8495-8502 +8496-8502 +8498-8499 +8500-8502 +8501-8502 +8503-8506 +8503-8506 +8504-8506 +8506 +8507-8521 +8507-8521 +8508-8521 +8508-8516 +8508-8511 +8509-8511 +8510-8511 +8514-8516 +8515-8516 +8517-8521 +8518-8521 +8519-8521 +8520-8521 +8522-8534 +8522-8534 +8523-8534 +8523-8526 +8523-8525 +8524-8525 +8527-8534 +8528-8534 +8528-8529 +8529 +8531-8534 +8532-8534 +8532 +8535-8550 +8535-8550 +8536-8550 +8536-8543 +8537-8538 +8539-8541 +8540-8541 +8544-8550 +8545-8550 +8547-8550 +8547 +8548-8549 +8551-8559 +8551-8559 +8552-8559 +8552-8556 +8554-8556 +8555-8556 +8557-8559 +8558-8559 +8560-8571 +8560-8571 +8561-8571 +8561-8564 +8562-8564 +8563-8564 +8567-8571 +8568-8571 +8569-8570 +8572-8579 +8572-8579 +8573-8579 +8573 +8575-8577 +8576-8577 +8578-8579 +8580-8611 +8580-8611 +8581-8611 +8581-8600 +8581-8593 +8581-8582 +8583-8587 +8584-8587 +8585-8587 +8585-8586 +8589-8593 +8590-8593 +8590-8592 +8591-8592 +8594-8600 +8595-8600 +8597-8600 +8598-8600 +8599-8600 +8601-8611 +8602-8611 +8604-8611 +8605-8611 +8607-8611 +8608-8611 +8609-8611 +8610-8611 +8612-8615 +8612-8615 +8613-8615 +8613-8614 +8616-8635 +8616-8635 +8618-8619 +8620-8621 +8622-8624 +8623-8624 +8625-8635 +8626-8635 +8626-8627 +8628-8630 +8629-8630 +8632-8635 +8633-8635 +8634-8635 +8636-8643 +8636-8643 +8637-8643 +8639-8640 +8641-8643 +8642-8643 +8644-8661 +8644-8661 +8645-8661 +8646 +8649-8661 +8649-8650 +8651-8652 +8654-8657 +8655-8657 +8656-8657 +8658-8661 +8659-8661 +8660-8661 +8662-8679 +8662-8679 +8663-8679 +8663-8664 +8666-8679 +8666-8671 +8667-8671 +8667-8668 +8669-8671 +8670-8671 +8672-8679 +8673-8679 +8673-8677 +8674-8677 +8675-8677 +8676-8677 +8680-8706 +8680-8706 +8681-8706 +8683-8706 +8683-8696 +8684-8696 +8684-8690 +8686-8690 +8686-8687 +8688-8690 +8689-8690 +8692-8696 +8693-8696 +8694-8695 +8697-8698 +8700-8706 +8700-8702 +8701-8702 +8703-8706 +8704-8706 +8705-8706 +8707-8716 +8707-8716 +8708-8716 +8709-8712 +8710-8712 +8711-8712 +8713-8716 +8714-8716 +8715-8716 +8717-8738 +8717-8738 +8717 +8720-8721 +8723-8738 +8724-8738 +8724-8730 +8724-8726 +8724-8725 +8727-8728 +8731-8738 +8732-8738 +8732-8734 +8733-8734 +8737-8738 +8739-8746 +8739-8746 +8740-8746 +8743-8746 +8745-8746 +8747-8774 +8747-8774 +8748-8774 +8748-8750 +8749-8750 +8753-8774 +8753-8755 +8753 +8754-8755 +8755 +8756-8774 +8757-8764 +8757-8761 +8758-8761 +8759-8761 +8760-8761 +8763-8764 +8766-8774 +8766-8770 +8766-8770 +8767-8770 +8768-8770 +8769-8770 +8773-8774 +8775-8788 +8775-8788 +8776 +8777-8778 +8781-8788 +8782-8788 +8783-8788 +8783-8784 +8785-8787 +8786-8787 +8789-8803 +8789-8803 +8790-8803 +8791 +8793-8803 +8793-8802 +8794-8802 +8795-8802 +8798-8802 +8799-8802 +8799-8800 +8801-8802 +8804-8805 +8804-8805 +8806-8809 +8806-8809 +8807-8809 +8808-8809 +8810-8818 +8810-8818 +8811-8818 +8811-8814 +8812-8814 +8816-8817 +8819-8828 +8819-8828 +8820-8828 +8820 +8821-8822 +8825-8828 +8827-8828 +8829-8836 +8829-8836 +8830-8836 +8832-8836 +8833-8834 +8837-8853 +8837-8853 +8838-8853 +8839-8853 +8840-8853 +8840-8849 +8840-8845 +8841-8845 +8842-8845 +8843-8845 +8844-8845 +8846-8848 +8847-8848 +8850-8853 +8851-8853 +8851-8852 +8854-8867 +8854-8867 +8855-8867 +8855-8863 +8855-8859 +8856-8859 +8857-8859 +8858-8859 +8860-8862 +8861-8862 +8864-8867 +8866-8867 +8868-8880 +8868-8880 +8869-8880 +8869-8871 +8870-8871 +8873-8880 +8873-8874 +8881-8895 +8881-8895 +8881-8886 +8883-8886 +8884-8886 +8885-8886 +8887-8895 +8888-8895 +8888-8891 +8889-8891 +8889-8890 +8894-8895 +8896-8907 +8896-8907 +8897-8907 +8897-8898 +8899-8900 +8902-8907 +8903-8907 +8904-8907 +8905-8907 +8906-8907 +8908-8928 +8908-8928 +8909-8928 +8910-8911 +8912-8916 +8912-8915 +8913-8915 +8913-8914 +8918-8928 +8919-8928 +8919-8923 +8921-8923 +8921-8923 +8922-8923 +8924-8928 +8924-8926 +8925-8926 +8929-8934 +8929-8934 +8930-8934 +8935-8948 +8935-8948 +8936-8948 +8936 +8937-8939 +8938-8939 +8942-8948 +8943-8948 +8943-8944 +8945-8948 +8946-8948 +8947-8948 +8949-8963 +8949-8963 +8950-8963 +8951 +8953-8963 +8953-8954 +8955-8963 +8956-8963 +8957-8963 +8958-8963 +8958-8961 +8958-8959 +8960-8961 +8961 +8962-8963 +8964-8972 +8964-8972 +8965-8972 +8966 +8969-8972 +8970-8972 +8970 +8973-8988 +8973-8988 +8974-8988 +8975 +8977-8988 +8980-8988 +8980-8984 +8981-8984 +8982-8984 +8983-8984 +8985-8988 +8986-8988 +8987-8988 +8989-9009 +8989-9009 +8990-9009 +8992-9009 +8992-8993 +8993 +8994-9009 +8995-9009 +8995-8997 +8996-8997 +8999-9009 +9000-9009 +9000-9001 +9002-9009 +9003-9009 +9004-9009 +9005-9009 +9006-9009 +9007-9009 +9008-9009 +9010-9025 +9010-9025 +9011 +9012-9013 +9016-9025 +9016-9021 +9016-9017 +9016-9017 +9019-9021 +9020-9021 +9022-9025 +9022-9023 +9024-9025 +9025 +9026-9034 +9026-9034 +9027-9034 +9028-9030 +9029-9030 +9031-9034 +9032-9034 +9032-9033 +9035-9052 +9035-9052 +9036-9052 +9036-9045 +9036-9037 +9038-9039 +9041-9045 +9042-9045 +9043-9045 +9044-9045 +9046-9052 +9047-9052 +9047-9050 +9048-9050 +9049-9050 +9053-9092 +9053-9092 +9054-9092 +9054-9074 +9054-9067 +9056-9057 +9058-9067 +9059-9060 +9061-9067 +9065-9067 +9066-9067 +9068-9074 +9069-9074 +9071-9074 +9072-9074 +9073-9074 +9075-9092 +9076-9092 +9078-9092 +9079-9092 +9079-9080 +9082-9092 +9083-9092 +9083-9084 +9085-9086 +9087-9089 +9088-9089 +9090-9092 +9091-9092 +9093-9097 +9093-9097 +9094-9097 +9095-9097 +9096-9097 +9098-9132 +9098-9132 +9099-9132 +9099-9100 +9101-9104 +9102-9104 +9103-9104 +9106-9132 +9106-9120 +9106-9109 +9107-9109 +9108-9109 +9110-9120 +9111-9120 +9111-9115 +9112-9113 +9116-9120 +9117-9120 +9119-9120 +9121-9132 +9122-9132 +9122-9124 +9123-9124 +9127-9132 +9130-9132 +9131-9132 +9133-9147 +9133-9147 +9134-9147 +9136-9137 +9138-9147 +9140-9141 +9142-9143 +9144-9147 +9145-9147 +9146-9147 +9148-9155 +9148-9155 +9149-9155 +9151-9152 +9153-9155 +9153-9154 +9156-9162 +9156-9162 +9157-9162 +9159-9162 +9159-9162 +9160-9162 +9161-9162 +9163-9189 +9163-9189 +9164-9189 +9164-9177 +9164-9170 +9165-9166 +9167-9170 +9168-9170 +9169-9170 +9172-9177 +9172-9174 +9173-9174 +9175-9177 +9176-9177 +9178-9180 +9179-9180 +9179 +9181-9189 +9182-9189 +9182-9184 +9183-9184 +9185-9189 +9186-9189 +9186-9187 +9188-9189 +9190-9203 +9190-9203 +9191-9203 +9191-9194 +9191-9192 +9193-9194 +9194 +9195-9203 +9196-9203 +9196-9202 +9196-9199 +9197-9199 +9197 +9198-9199 +9200-9202 +9201-9202 +9204-9213 +9204-9213 +9205-9213 +9205-9206 +9206 +9208-9209 +9210-9213 +9211-9213 +9212-9213 +9214-9227 +9214-9227 +9215-9227 +9215-9221 +9215-9217 +9216-9217 +9219-9221 +9220-9221 +9222-9227 +9223-9227 +9224-9227 +9225-9227 +9226-9227 +9228-9242 +9228-9242 +9229-9242 +9229 +9230-9233 +9231-9233 +9232-9233 +9234 +9236-9242 +9237-9240 +9238-9240 +9239-9240 +9243-9255 +9243-9255 +9244-9255 +9245 +9248-9255 +9248-9249 +9250-9255 +9251-9255 +9251 +9252-9255 +9253-9255 +9254-9255 +9256-9264 +9256-9264 +9257-9264 +9258-9264 +9258-9259 +9260-9264 +9261-9264 +9262 +9263-9264 +9265-9278 +9265-9278 +9265-9271 +9266-9271 +9266-9270 +9266-9269 +9267-9269 +9268-9269 +9272-9278 +9273-9278 +9273-9276 +9274-9276 +9275-9276 +9279-9294 +9279-9294 +9279-9284 +9279-9282 +9279-9280 +9281-9282 +9285-9294 +9286-9294 +9290-9294 +9291-9294 +9292-9294 +9293-9294 +9295-9298 +9295-9298 +9296-9298 +9296-9297 +9299-9308 +9299-9308 +9300-9308 +9300-9301 +9302-9305 +9303-9305 +9304-9305 +9307-9308 +9309-9323 +9309-9323 +9310-9323 +9310-9311 +9314-9323 +9314-9316 +9315-9316 +9317-9323 +9318-9323 +9319-9323 +9320-9323 +9321-9323 +9322-9323 +9324-9333 +9324-9333 +9325-9333 +9327-9328 +9329-9333 +9330-9333 +9331-9333 +9334-9347 +9334-9347 +9335-9347 +9335 +9336-9337 +9339-9347 +9341-9342 +9343 +9344-9347 +9345-9347 +9348-9370 +9348-9370 +9350-9370 +9350-9360 +9351-9360 +9351-9356 +9352-9356 +9353-9356 +9354-9356 +9355-9356 +9357-9360 +9358-9360 +9358-9359 +9361-9370 +9362-9370 +9362-9366 +9362-9366 +9363-9366 +9364-9366 +9365-9366 +9367-9370 +9368-9370 +9368-9369 +9371-9388 +9371-9388 +9374-9388 +9375-9388 +9375-9379 +9376-9377 +9380-9388 +9381-9388 +9382-9388 +9383-9388 +9384-9388 +9385-9388 +9386-9388 +9387-9388 +9389-9407 +9389-9407 +9391-9407 +9392-9407 +9393-9399 +9394-9399 +9395-9399 +9396-9399 +9397-9399 +9398-9399 +9401-9407 +9401-9407 +9402-9407 +9403-9407 +9404-9407 +9405-9407 +9406-9407 +9408-9431 +9408-9431 +9409-9431 +9409-9410 +9411-9417 +9412-9417 +9413-9417 +9414-9417 +9415-9417 +9416-9417 +9419-9421 +9420-9421 +9422-9431 +9423-9431 +9424-9425 +9426-9431 +9428-9431 +9429-9431 +9430-9431 +9432-9449 +9432-9449 +9433-9449 +9435-9449 +9435-9439 +9436-9439 +9437-9439 +9438-9439 +9440-9442 +9441-9442 +9443-9449 +9444-9449 +9445-9449 +9446-9449 +9447-9449 +9448-9449 +9450-9457 +9450-9457 +9452-9457 +9453-9457 +9454-9456 +9458-9472 +9458-9472 +9459-9472 +9459 +9460-9461 +9463-9472 +9465-9472 +9465-9466 +9467-9472 +9468-9472 +9469-9472 +9469-9470 +9471-9472 +9472 +9473-9497 +9473-9497 +9474-9497 +9474 +9475-9476 +9479-9497 +9479-9482 +9481-9482 +9481-9482 +9483-9497 +9484-9497 +9484-9489 +9484-9486 +9485-9486 +9490-9497 +9491-9497 +9491-9497 +9491-9493 +9492-9493 +9494-9497 +9495-9497 +9496-9497 +9498-9520 +9498-9520 +9499-9520 +9502-9520 +9503-9520 +9503-9505 +9506-9514 +9507-9514 +9507-9510 +9508-9510 +9509-9510 +9512-9514 +9513-9514 +9515-9520 +9516-9520 +9516-9517 +9521-9552 +9521-9552 +9521-9528 +9523-9528 +9524-9528 +9525-9528 +9526-9528 +9527-9528 +9529-9552 +9530-9552 +9530-9540 +9530-9535 +9531-9535 +9533-9535 +9534-9535 +9536-9537 +9538-9540 +9539-9540 +9541-9552 +9542-9552 +9542-9547 +9543-9547 +9545-9547 +9546-9547 +9548-9549 +9550-9552 +9551-9552 +9553-9564 +9553-9564 +9553-9556 +9555-9556 +9557-9564 +9558-9564 +9560-9564 +9561-9564 +9563-9564 +9565-9596 +9565-9596 +9565-9566 +9568-9569 +9570-9596 +9571-9573 +9572-9573 +9574-9596 +9575-9596 +9576-9596 +9576-9579 +9577-9578 +9580-9589 +9581-9589 +9583-9589 +9584-9589 +9585-9589 +9586-9587 +9588-9589 +9590-9591 +9591 +9592-9596 +9593-9596 +9593-9595 +9594-9595 +9597-9613 +9597-9613 +9598-9613 +9598-9599 +9600-9601 +9603-9613 +9605-9613 +9606-9613 +9606-9608 +9608 +9609-9613 +9609-9610 +9614-9636 +9614-9636 +9615-9636 +9616 +9618-9619 +9620-9636 +9620-9626 +9620-9623 +9621-9622 +9623 +9624-9626 +9624-9625 +9627-9636 +9628-9636 +9629-9632 +9630-9632 +9631-9632 +9634-9636 +9634-9636 +9635-9636 +9637-9659 +9637-9659 +9638-9639 +9641-9643 +9642-9643 +9644-9659 +9644-9649 +9645-9649 +9647-9649 +9647-9648 +9650-9659 +9650-9651 +9652-9656 +9653-9656 +9654-9656 +9655-9656 +9657-9659 +9658-9659 +9660-9680 +9660-9680 +9661-9680 +9661-9669 +9661-9667 +9662-9667 +9664-9667 +9664-9666 +9665-9666 +9670-9680 +9671-9680 +9671-9678 +9672-9678 +9674-9676 +9675-9676 +9677-9678 +9681-9702 +9681-9702 +9682-9702 +9682-9694 +9685-9694 +9686-9694 +9686-9689 +9686-9688 +9687-9688 +9690-9694 +9691-9694 +9691-9693 +9692-9693 +9695-9702 +9696-9702 +9699-9702 +9700-9702 +9701-9702 +9703-9727 +9703-9727 +9704-9727 +9704-9719 +9705-9708 +9706-9708 +9707-9708 +9709-9719 +9710-9715 +9711-9715 +9712-9715 +9713-9715 +9714-9715 +9716-9719 +9717-9719 +9718-9719 +9720-9727 +9721-9727 +9724-9727 +9725-9727 +9726-9727 +9728-9753 +9728-9753 +9729-9730 +9731-9753 +9732-9753 +9733-9753 +9733-9736 +9734-9736 +9735-9736 +9737-9753 +9737-9741 +9738-9739 +9743-9753 +9744-9753 +9745-9753 +9745-9748 +9746-9748 +9747-9748 +9750-9753 +9751-9753 +9752-9753 +9754-9777 +9754-9777 +9755-9777 +9755-9769 +9755-9757 +9756-9757 +9759-9760 +9761-9769 +9761-9762 +9763-9764 +9765-9769 +9766-9769 +9767-9769 +9768-9769 +9770-9777 +9771-9777 +9773-9775 +9774-9775 +9776-9777 +9778-9798 +9778-9798 +9779-9798 +9779-9781 +9780-9781 +9782-9798 +9783-9798 +9783-9789 +9784-9786 +9785-9786 +9787-9789 +9788-9789 +9790-9798 +9791-9798 +9791-9793 +9792-9793 +9796-9798 +9797-9798 +9799-9808 +9799-9808 +9800-9808 +9803-9805 +9804-9805 +9806-9808 +9807-9808 +9809-9835 +9809-9835 +9810-9835 +9810 +9811-9812 +9814-9815 +9816-9835 +9816-9821 +9816 +9819-9821 +9822-9835 +9822-9823 +9823 +9824-9827 +9826-9827 +9828-9835 +9828-9829 +9830-9832 +9831-9832 +9833-9835 +9834-9835 +9836-9862 +9836-9862 +9836-9838 +9839-9843 +9840-9841 +9844-9862 +9845-9862 +9847-9849 +9848-9849 +9850-9862 +9851-9862 +9851-9860 +9853-9857 +9853-9855 +9854-9855 +9856-9857 +9858-9860 +9858-9859 +9861-9862 +9863-9873 +9863-9873 +9864-9873 +9864-9870 +9864 +9865-9866 +9868-9870 +9869-9870 +9871-9873 +9872-9873 +9874-9885 +9874-9885 +9875-9885 +9875-9877 +9876-9877 +9878-9885 +9879-9885 +9879-9880 +9882-9885 +9882 +9883-9885 +9884-9885 +9886-9897 +9886-9897 +9887-9897 +9887-9890 +9888-9890 +9889-9890 +9893-9897 +9894-9897 +9895-9897 +9895-9896 +9898-9921 +9898-9921 +9899-9921 +9899-9903 +9901-9903 +9902-9903 +9904-9921 +9906-9907 +9908-9921 +9909-9921 +9911-9912 +9913-9921 +9914-9921 +9915-9918 +9916-9918 +9917-9918 +9919-9920 +9922-9937 +9922-9937 +9923-9937 +9925-9926 +9927-9937 +9928-9937 +9929-9937 +9930-9931 +9933-9937 +9934-9937 +9935-9937 +9938-9974 +9938-9974 +9939-9974 +9940 +9942-9974 +9942-9947 +9943-9947 +9943-9944 +9945-9947 +9946-9947 +9948-9974 +9949-9974 +9951-9974 +9952-9974 +9952-9964 +9952-9954 +9955-9964 +9956-9964 +9957-9958 +9960-9964 +9961-9962 +9963-9964 +9965-9974 +9967-9970 +9968-9970 +9969-9970 +9972-9974 +9973-9974 +9975-9985 +9975-9985 +9977-9978 +9979-9985 +9980-9985 +9980-9983 +9981-9983 +9982-9983 +9986-10018 +9986-10018 +9987-10018 +9987-9990 +9988-9990 +9989-9990 +9991-10018 +9994-10018 +9994-9995 +9996-10018 +9997-10018 +9998-10018 +9998-10002 +9998 +10000-10002 +10001-10002 +10003-10018 +10004-10018 +10004-10007 +10004 +10005-10007 +10006-10007 +10008-10018 +10009-10018 +10009-10013 +10011-10013 +10012-10013 +10014-10018 +10015-10018 +10016-10018 +10017-10018 +10019-10029 +10019-10029 +10020-10029 +10020-10024 +10022-10024 +10023-10024 +10025-10029 +10026-10029 +10028-10029 +10030-10052 +10030-10052 +10031-10052 +10031 +10032-10033 +10035-10052 +10035-10039 +10035-10039 +10036-10039 +10037-10039 +10038-10039 +10039 +10040-10048 +10040-10044 +10040-10041 +10042-10043 +10045-10048 +10045-10046 +10049-10052 +10053-10063 +10053-10063 +10054-10063 +10054-10057 +10056-10057 +10058-10063 +10059-10063 +10060-10061 +10062-10063 +10064-10071 +10064-10071 +10065-10071 +10066-10067 +10068-10071 +10069-10071 +10069-10070 +10072-10087 +10072-10087 +10073-10074 +10075-10079 +10076-10077 +10078-10079 +10081-10087 +10081-10082 +10086-10087 +10088-10118 +10088-10118 +10089-10118 +10092-10118 +10092-10095 +10092-10095 +10093-10095 +10094-10095 +10096-10118 +10097-10118 +10097-10099 +10098-10099 +10100-10118 +10100-10114 +10100-10105 +10101-10105 +10102-10105 +10103-10105 +10104-10105 +10106-10114 +10106-10112 +10107-10109 +10107-10108 +10110-10112 +10113-10114 +10114 +10115-10118 +10116-10118 +10119-10145 +10119-10145 +10120-10145 +10120-10124 +10122-10124 +10123-10124 +10125-10145 +10127-10128 +10129-10145 +10129-10137 +10130-10133 +10131-10133 +10132-10133 +10134-10137 +10135-10137 +10136-10137 +10138-10140 +10139-10140 +10141-10145 +10142-10145 +10142-10144 +10143-10144 +10146-10148 +10146-10148 +10147-10148 +10149-10168 +10149-10168 +10150-10168 +10150-10153 +10152-10153 +10154-10168 +10154-10160 +10155-10158 +10156-10158 +10156-10157 +10159-10160 +10161-10168 +10162-10168 +10163-10168 +10164-10168 +10164-10166 +10165-10166 +10169-10170 +10169-10170 +10170 +10171-10202 +10171-10202 +10172-10202 +10172-10175 +10173-10175 +10174-10175 +10176-10202 +10178-10179 +10180-10202 +10181-10202 +10181-10184 +10184 +10185-10202 +10185-10194 +10185-10188 +10186-10188 +10187-10188 +10189-10190 +10192-10194 +10193-10194 +10195-10202 +10195-10202 +10195-10198 +10196-10198 +10197-10198 +10199-10202 +10200-10202 +10201-10202 +10203-10216 +10203-10216 +10204-10216 +10204-10207 +10205-10207 +10205-10207 +10206-10207 +10208-10216 +10210-10211 +10212-10216 +10213-10216 +10215-10216 +10217-10247 +10217-10247 +10218-10247 +10218-10221 +10219-10221 +10222-10239 +10222-10226 +10222-10224 +10223-10224 +10227-10232 +10228-10232 +10228-10231 +10229-10231 +10229 +10230-10231 +10233-10239 +10234-10239 +10234-10237 +10235-10237 +10236-10237 +10240-10247 +10240-10241 +10244-10247 +10245-10247 +10246-10247 +10248-10266 +10248-10266 +10248-10251 +10249-10251 +10250-10251 +10253-10254 +10255-10256 +10257-10266 +10258-10266 +10259-10266 +10262-10266 +10263-10266 +10264-10266 +10265-10266 +10267-10295 +10267-10295 +10268-10295 +10268-10274 +10268-10269 +10272-10274 +10273-10274 +10275-10295 +10276-10295 +10277-10295 +10277-10279 +10278-10279 +10280-10295 +10280-10287 +10281-10287 +10281-10282 +10283-10287 +10284-10287 +10285-10287 +10286-10287 +10288-10295 +10288-10289 +10291-10295 +10292-10295 +10293-10295 +10294-10295 +10296-10312 +10296-10312 +10297-10312 +10297-10303 +10300-10303 +10301-10303 +10301-10302 +10306-10307 +10308-10312 +10309-10312 +10310-10312 +10311-10312 +10313-10325 +10313-10325 +10314-10325 +10314-10323 +10315-10323 +10317-10319 +10318-10319 +10320-10323 +10321-10323 +10322-10323 +10326-10354 +10326-10354 +10327-10354 +10327-10337 +10328-10337 +10330-10337 +10331-10337 +10331-10333 +10331-10332 +10334-10337 +10335-10337 +10336-10337 +10338-10354 +10340-10354 +10341-10354 +10341-10347 +10342-10343 +10344-10347 +10345-10347 +10346-10347 +10348-10354 +10349-10354 +10350-10354 +10351-10354 +10352-10354 +10353-10354 +10355-10360 +10355-10360 +10356-10357 +10358-10360 +10359-10360 +10361-10374 +10361-10374 +10362-10374 +10362-10365 +10363-10365 +10364-10365 +10366-10374 +10367-10374 +10368-10374 +10369-10374 +10370-10374 +10370-10371 +10372-10373 +10375-10391 +10375-10391 +10376-10391 +10376-10385 +10377-10385 +10377-10383 +10377-10379 +10378-10379 +10380-10383 +10381-10383 +10382-10383 +10386-10387 +10388-10391 +10389-10391 +10390-10391 +10392-10414 +10392-10414 +10392-10401 +10395-10401 +10396-10398 +10397-10398 +10399-10401 +10400-10401 +10402-10414 +10403-10414 +10403-10408 +10403-10407 +10403-10404 +10405-10407 +10406-10407 +10410-10414 +10411-10414 +10412-10414 +10413-10414 +10415-10427 +10415-10427 +10416-10427 +10416-10421 +10417-10421 +10417-10419 +10418-10419 +10422-10423 +10424-10427 +10425-10427 +10426-10427 +10428-10445 +10428-10445 +10428-10435 +10431-10435 +10432-10434 +10433-10434 +10436-10445 +10437-10445 +10437-10439 +10437-10438 +10441-10445 +10442-10445 +10443-10445 +10444-10445 +10446-10452 +10446-10452 +10447-10452 +10448-10452 +10449-10452 +10450-10452 +10450-10451 +10453-10472 +10453-10472 +10454-10472 +10456-10472 +10457-10472 +10457-10459 +10458-10459 +10460-10461 +10462-10463 +10465-10472 +10466-10472 +10467-10472 +10467-10469 +10468-10469 +10470-10472 +10471-10472 +10473-10475 +10473-10475 +10476-10499 +10476-10499 +10476-10486 +10477-10486 +10477-10481 +10478-10479 +10480-10481 +10482-10486 +10483-10486 +10484-10486 +10485-10486 +10488-10499 +10488-10494 +10489-10491 +10490-10491 +10492-10494 +10493-10494 +10495-10499 +10496-10499 +10496 +10498-10499 +10499 +10500-10520 +10500-10520 +10501-10520 +10501-10504 +10502-10504 +10503-10504 +10505-10520 +10506-10507 +10508-10520 +10509-10520 +10509-10512 +10510-10511 +10513-10520 +10514-10520 +10514-10520 +10515-10520 +10515-10517 +10516-10517 +10518-10520 +10519-10520 +10521-10537 +10521-10537 +10525-10531 +10526-10531 +10526-10528 +10527-10528 +10529-10531 +10530-10531 +10532-10537 +10533-10537 +10534-10537 +10535-10537 +10535-10536 +10538-10551 +10538-10551 +10539-10551 +10539-10543 +10540-10543 +10541-10543 +10542-10543 +10544-10551 +10544 +10545-10551 +10547-10551 +10548-10551 +10548-10550 +10549-10550 +10552-10558 +10552-10558 +10552-10554 +10553-10554 +10555-10558 +10556-10558 +10557-10558 +10559-10579 +10559-10579 +10560-10579 +10560-10569 +10560-10562 +10561-10562 +10563-10569 +10564-10565 +10566-10569 +10567-10569 +10568-10569 +10570-10579 +10571-10579 +10571-10576 +10572-10576 +10573-10576 +10573-10575 +10578-10579 +10580-10586 +10580-10586 +10581-10586 +10581-10583 +10582-10583 +10584-10586 +10585-10586 +10587-10600 +10587-10600 +10588-10600 +10588-10592 +10589-10592 +10589-10591 +10590-10591 +10595-10600 +10596-10600 +10596-10597 +10598-10600 +10599-10600 +10601-10624 +10601-10624 +10602-10603 +10604-10624 +10604-10613 +10604-10609 +10605-10609 +10607-10609 +10608-10609 +10610-10611 +10612-10613 +10614-10624 +10615-10624 +10615-10620 +10616-10620 +10618-10620 +10619-10620 +10621-10622 +10623-10624 +10625-10652 +10625-10652 +10626-10628 +10629-10652 +10630-10652 +10630-10643 +10631-10643 +10631-10633 +10632-10633 +10635-10637 +10636-10637 +10638-10643 +10639-10643 +10640-10643 +10641-10643 +10642-10643 +10644-10652 +10646-10652 +10647-10652 +10647-10649 +10648-10649 +10650-10652 +10651-10652 +10653-10668 +10653-10668 +10654-10668 +10654-10663 +10655-10656 +10657-10659 +10658-10659 +10660-10663 +10661-10663 +10662-10663 +10666-10668 +10667-10668 +10669-10687 +10669-10687 +10670 +10671-10672 +10675-10687 +10675 +10676-10682 +10678-10679 +10680-10682 +10681-10682 +10683-10685 +10684-10685 +10686-10687 +10686-10687 +10688-10700 +10688-10700 +10690-10691 +10692-10700 +10693-10696 +10695-10696 +10695-10696 +10698-10700 +10698-10700 +10699-10700 +10701-10717 +10701-10717 +10701-10702 +10704-10707 +10705-10707 +10706-10707 +10708-10717 +10709-10717 +10710-10717 +10712-10717 +10714-10717 +10715-10717 +10716-10717 +10718-10727 +10718-10727 +10719-10727 +10719-10721 +10721 +10722-10727 +10724-10727 +10725-10727 +10726-10727 +10728-10749 +10728-10749 +10729-10749 +10729-10732 +10732 +10733-10749 +10734-10735 +10736-10749 +10736-10747 +10737-10747 +10738-10740 +10739-10740 +10741-10743 +10742-10743 +10744-10747 +10745-10747 +10746-10747 +10748-10749 +10749 +10750-10763 +10750-10763 +10751-10763 +10751 +10752-10753 +10756-10763 +10757-10763 +10757-10759 +10758-10759 +10760-10763 +10761-10763 +10764-10777 +10764-10777 +10765-10777 +10765-10772 +10765 +10766-10770 +10767-10770 +10768-10770 +10768-10769 +10773-10777 +10774-10777 +10774-10775 +10778-10801 +10778-10801 +10779-10801 +10779-10792 +10779 +10780-10782 +10780-10781 +10784-10792 +10784-10787 +10785-10787 +10786-10787 +10788-10792 +10791-10792 +10793-10801 +10794-10801 +10794-10795 +10797-10801 +10798-10801 +10798 +10799-10801 +10800-10801 +10802-10815 +10802-10815 +10803-10815 +10803 +10804-10806 +10805-10806 +10809-10815 +10810-10815 +10810-10812 +10811-10812 +10813-10815 +10814-10815 +10816-10829 +10816-10829 +10817-10829 +10817-10819 +10820-10829 +10821-10829 +10821-10825 +10821 +10824-10825 +10826-10829 +10827-10829 +10828-10829 +10829 +10830-10847 +10830-10847 +10831-10847 +10831-10838 +10831-10833 +10832-10833 +10834-10836 +10835-10836 +10836 +10839-10847 +10840-10847 +10840 +10842-10844 +10843-10844 +10845-10847 +10846-10847 +10847 +10848-10866 +10848-10866 +10849-10850 +10851-10853 +10852-10853 +10856-10866 +10856-10857 +10856-10857 +10858-10863 +10858-10861 +10858-10860 +10859-10860 +10864-10866 +10865-10866 +10867-10878 +10867-10878 +10868-10878 +10869-10874 +10869-10870 +10872-10874 +10873-10874 +10875-10878 +10876-10878 +10879-10894 +10879-10894 +10880-10894 +10880 +10881-10883 +10882-10883 +10886-10887 +10888-10894 +10889-10894 +10891-10894 +10892-10894 +10893-10894 +10895-10914 +10895-10914 +10896-10901 +10897-10901 +10898-10901 +10898-10899 +10900-10901 +10904-10914 +10905-10914 +10908-10910 +10909-10910 +10911-10914 +10912-10914 +10913-10914 +10915-10937 +10915-10937 +10916-10937 +10916 +10917-10937 +10917-10923 +10918-10923 +10919-10920 +10921-10923 +10921-10922 +10924-10937 +10924-10927 +10925-10927 +10926-10927 +10928-10937 +10929-10937 +10930-10937 +10931-10937 +10932-10937 +10932-10934 +10933-10934 +10935-10937 +10936-10937 +10938-10946 +10938-10946 +10939-10946 +10939-10942 +10941-10942 +10943-10946 +10944-10946 +10947-10963 +10947-10963 +10948-10963 +10951-10963 +10951-10952 +10953-10963 +10954-10963 +10955-10963 +10956-10963 +10957-10963 +10958-10960 +10959-10960 +10961-10963 +10962-10963 +10964-10979 +10964-10979 +10965-10979 +10966 +10968-10979 +10969-10979 +10970-10979 +10971-10979 +10971-10974 +10972-10974 +10973-10974 +10975-10977 +10976-10977 +10980-11002 +10980-11002 +10981-11002 +10982-11002 +10982-10995 +10982-10990 +10982-10983 +10986-10990 +10986-10987 +10988-10990 +10989-10990 +10991-10995 +10992-10995 +10993-10995 +10994-10995 +10996-11002 +10997-11002 +10998-10999 +11000-11002 +11001-11002 +11003-11009 +11003-11009 +11004-11009 +11005-11006 +11008-11009 +11008-11009 +11010-11017 +11010-11017 +11011-11017 +11011-11014 +11012-11013 +11018-11028 +11018-11028 +11020-11028 +11021-11028 +11024-11028 +11024-11026 +11025-11026 +11027-11028 +11028 +11029-11048 +11029-11048 +11031-11048 +11032-11048 +11032-11042 +11033-11036 +11034-11036 +11035-11036 +11039-11042 +11040-11042 +11041-11042 +11043-11048 +11044-11048 +11044-11045 +11049-11065 +11049-11065 +11050-11065 +11052-11065 +11053-11065 +11053-11064 +11054-11064 +11054-11061 +11056-11058 +11057-11058 +11059-11061 +11060-11061 +11062-11064 +11063-11064 +11066-11082 +11066-11082 +11068-11069 +11070-11082 +11070-11079 +11071-11079 +11073-11079 +11074-11079 +11074-11076 +11075-11076 +11077-11079 +11078-11079 +11080-11082 +11082 +11083-11095 +11083-11095 +11084-11095 +11087-11095 +11088-11092 +11090-11092 +11090-11091 +11094-11095 +11096-11123 +11096-11123 +11097-11123 +11097-11104 +11098-11104 +11099-11104 +11100-11102 +11101-11102 +11105-11112 +11106-11112 +11107-11112 +11108-11112 +11110-11112 +11111-11112 +11113-11123 +11114-11123 +11115-11123 +11116-11123 +11119-11123 +11120-11123 +11121-11123 +11122-11123 +11124-11127 +11124-11127 +11124-11126 +11125-11126 +11126 +11128-11138 +11128-11138 +11128-11131 +11132-11138 +11133-11138 +11133-11136 +11133-11134 +11137-11138 +11138 +11139-11143 +11139-11143 +11140-11143 +11140-11141 +11144-11165 +11144-11165 +11145-11165 +11145-11146 +11148-11165 +11148-11157 +11148-11150 +11149-11150 +11151-11157 +11152-11157 +11154-11157 +11156-11157 +11158-11165 +11159-11165 +11159-11160 +11162-11165 +11163-11165 +11164-11165 +11166-11172 +11166-11172 +11167-11172 +11167-11170 +11168-11169 +11173-11186 +11173-11186 +11174-11186 +11176 +11179-11186 +11179 +11180-11182 +11180-11181 +11183-11186 +11184-11186 +11185-11186 +11187-11210 +11187-11210 +11188-11210 +11191-11210 +11191-11200 +11194-11196 +11195-11196 +11197-11200 +11199-11200 +11201-11210 +11202-11210 +11202-11207 +11203-11207 +11204-11207 +11204-11206 +11205-11206 +11208-11210 +11209-11210 +11211-11213 +11211-11213 +11213 +11214-11239 +11214-11239 +11215-11239 +11215-11217 +11215-11216 +11218-11239 +11218-11239 +11219-11239 +11219-11220 +11221-11222 +11223-11224 +11225-11226 +11227-11239 +11227-11232 +11228-11232 +11228-11229 +11230-11232 +11231-11232 +11233-11239 +11234-11239 +11235-11237 +11236-11237 +11238-11239 +11239 +11240-11249 +11240-11249 +11242-11243 +11244-11249 +11244-11246 +11244-11245 +11247-11249 +11250-11274 +11250-11274 +11252-11253 +11254-11274 +11254-11257 +11255-11257 +11256-11257 +11258-11274 +11258-11270 +11258-11265 +11258 +11259-11265 +11259-11262 +11260-11262 +11261-11262 +11262 +11263-11265 +11264-11265 +11266-11270 +11267-11270 +11269-11270 +11271-11274 +11272-11274 +11272 +11273-11274 +11275-11287 +11275-11287 +11276-11287 +11276-11277 +11278-11280 +11279-11280 +11282 +11283-11287 +11284-11287 +11284-11285 +11286-11287 +11288-11306 +11288-11306 +11289-11306 +11289-11290 +11292-11294 +11293-11294 +11295-11306 +11296-11297 +11298-11306 +11299-11306 +11302-11306 +11303-11306 +11304-11306 +11305-11306 +11307-11324 +11307-11324 +11308-11324 +11311-11324 +11311-11317 +11313-11317 +11314-11316 +11315-11316 +11318-11324 +11319-11324 +11320-11324 +11321-11324 +11322-11324 +11323-11324 +11325-11335 +11325-11335 +11326-11335 +11326 +11327-11328 +11331-11335 +11332-11335 +11333-11335 +11335 +11336-11351 +11336-11351 +11337-11351 +11337 +11338-11339 +11342-11351 +11342-11346 +11342-11343 +11347-11351 +11348-11351 +11348-11349 +11352-11368 +11352-11368 +11353 +11354-11355 +11358-11368 +11358-11364 +11359-11361 +11362-11364 +11363-11364 +11365-11368 +11366-11368 +11369-11406 +11369-11406 +11370-11406 +11370-11371 +11374-11406 +11375-11376 +11377-11406 +11378-11406 +11378-11381 +11378-11381 +11379-11381 +11380-11381 +11382-11384 +11383-11384 +11385-11394 +11386-11394 +11387-11390 +11388-11390 +11389-11390 +11391-11394 +11392-11394 +11393-11394 +11396-11397 +11398-11400 +11399-11400 +11401-11406 +11402-11406 +11403-11406 +11404-11406 +11405-11406 +11407-11433 +11407-11433 +11408-11433 +11408-11429 +11408-11427 +11409-11427 +11411-11423 +11412-11413 +11414-11415 +11416-11417 +11418-11419 +11420-11421 +11422-11423 +11424-11427 +11425-11427 +11426-11427 +11430-11433 +11431-11433 +11431-11432 +11434-11441 +11434-11441 +11435-11441 +11435-11438 +11435-11436 +11439-11441 +11440-11441 +11442-11460 +11442-11460 +11443-11460 +11445-11448 +11446-11448 +11447-11448 +11449-11460 +11449-11450 +11451-11460 +11453-11454 +11455-11460 +11457-11460 +11458-11460 +11459-11460 +11461-11475 +11461-11475 +11462-11475 +11462-11469 +11463-11465 +11464-11465 +11466-11467 +11468-11469 +11472-11475 +11473-11475 +11474-11475 +11476-11487 +11476-11487 +11477-11487 +11477-11480 +11478-11480 +11479-11480 +11482-11487 +11483-11487 +11484-11486 +11485-11486 +11488-11503 +11488-11503 +11489-11503 +11491-11503 +11491-11496 +11492-11493 +11494-11496 +11495-11496 +11497-11503 +11498-11503 +11498-11501 +11499-11501 +11504-11506 +11504-11506 +11505-11506 +11507-11516 +11507-11516 +11508-11516 +11508-11514 +11510-11514 +11511-11514 +11511-11513 +11512-11513 +11517-11534 +11517-11534 +11518-11534 +11518-11524 +11518-11521 +11518-11520 +11519-11520 +11523-11524 +11525-11534 +11526-11534 +11528-11534 +11531-11533 +11532-11533 +11535-11540 +11535-11540 +11537-11540 +11538-11540 +11541-11548 +11541-11548 +11543-11548 +11544-11545 +11546-11548 +11547-11548 +11549-11573 +11549-11573 +11550-11573 +11550-11551 +11552-11573 +11553-11556 +11554-11556 +11555-11556 +11557-11559 +11558-11559 +11560-11573 +11560-11562 +11561-11562 +11563-11573 +11564-11573 +11565-11566 +11567-11573 +11568-11570 +11569-11570 +11571-11573 +11572-11573 +11574-11583 +11574-11583 +11575-11583 +11575 +11576-11580 +11577-11580 +11578-11580 +11579-11580 +11584-11591 +11584-11591 +11585-11591 +11585 +11586-11587 +11589-11591 +11590-11591 +11592-11598 +11592-11598 +11593-11598 +11594-11596 +11595-11596 +11597-11598 +11599-11625 +11599-11625 +11600-11625 +11600 +11602-11604 +11603-11604 +11605-11625 +11606-11625 +11606-11611 +11606-11608 +11607-11608 +11609-11610 +11612-11625 +11613-11625 +11616-11625 +11617-11625 +11618-11625 +11619-11625 +11619-11622 +11620-11622 +11621-11622 +11623-11625 +11624-11625 +11626-11639 +11626-11639 +11627-11639 +11628 +11629-11630 +11632-11639 +11632-11635 +11632 +11636-11639 +11637-11639 +11640-11644 +11640-11644 +11640-11642 +11641-11642 +11643-11644 +11644 +11645-11653 +11645-11653 +11646-11653 +11647-11650 +11647-11649 +11648-11649 +11651-11653 +11652-11653 +11652-11653 +11654-11662 +11654-11662 +11655-11662 +11657-11662 +11657-11658 +11660-11662 +11661-11662 +11663-11672 +11663-11672 +11664-11672 +11664-11666 +11665-11666 +11669-11672 +11670-11672 +11673-11681 +11673-11681 +11673-11677 +11675-11676 +11678-11681 +11679-11681 +11679-11680 +11682-11734 +11682-11734 +11683-11734 +11683-11692 +11684-11687 +11685-11687 +11686-11687 +11689-11690 +11691-11692 +11693-11734 +11694-11734 +11694-11696 +11695-11696 +11699-11734 +11699-11702 +11701-11702 +11703-11734 +11704-11734 +11704-11729 +11704-11712 +11704-11707 +11705-11707 +11706-11707 +11709-11712 +11710-11712 +11711-11712 +11713-11729 +11714-11729 +11714-11717 +11716-11717 +11718-11729 +11719-11729 +11721-11722 +11723-11729 +11724-11729 +11725-11729 +11725 +11726-11727 +11727 +11728-11729 +11729 +11730-11734 +11731-11734 +11731-11733 +11732-11733 +11735-11752 +11735-11752 +11738-11742 +11739-11742 +11740-11742 +11741-11742 +11743-11746 +11744-11746 +11745-11746 +11747-11752 +11747 +11748-11752 +11749-11752 +11751-11752 +11753-11758 +11753-11758 +11754-11758 +11757-11758 +11759-11780 +11759-11780 +11761-11780 +11762-11780 +11763-11780 +11764-11768 +11765-11768 +11766-11768 +11767-11768 +11769-11776 +11769-11771 +11770-11771 +11772-11776 +11773-11776 +11774-11776 +11775-11776 +11777-11780 +11778-11780 +11779-11780 +11781-11797 +11781-11797 +11782-11797 +11782 +11783-11784 +11786-11797 +11788-11789 +11790-11797 +11791-11797 +11792-11797 +11793-11797 +11794-11797 +11794-11795 +11798-11800 +11798-11800 +11800 +11801-11828 +11801-11828 +11803-11828 +11803-11807 +11804-11807 +11804-11806 +11805-11806 +11808-11828 +11809-11828 +11809-11821 +11809-11816 +11810-11816 +11811-11816 +11811-11813 +11812-11813 +11814-11816 +11815-11816 +11819-11821 +11822-11828 +11823-11828 +11825-11828 +11826-11828 +11827-11828 +11829-11837 +11829-11837 +11830-11837 +11830 +11831-11832 +11834-11837 +11835-11837 +11836-11837 +11838-11856 +11838-11856 +11839-11856 +11839-11840 +11841-11842 +11844-11856 +11845-11856 +11846-11856 +11846-11851 +11846-11849 +11847-11849 +11848-11849 +11852-11856 +11853-11856 +11853-11854 +11857-11901 +11857-11901 +11858-11861 +11860-11861 +11863-11901 +11863-11883 +11863-11872 +11863-11869 +11864-11869 +11866-11869 +11866-11867 +11871-11872 +11873-11883 +11874-11883 +11874-11880 +11875-11880 +11877-11880 +11877-11878 +11882-11883 +11885-11901 +11885-11888 +11886-11888 +11887-11888 +11891-11901 +11891 +11892-11901 +11893-11901 +11893 +11894-11901 +11895-11901 +11896-11898 +11897-11898 +11899-11901 +11900-11901 +11902-11910 +11902-11910 +11903-11910 +11903-11906 +11905-11906 +11907-11910 +11909-11910 +11911-11929 +11911-11929 +11912-11929 +11913-11918 +11914-11918 +11915-11918 +11916-11918 +11917-11918 +11919-11922 +11920-11922 +11921-11922 +11924-11929 +11925-11929 +11927-11929 +11927-11929 +11928-11929 +11930-11936 +11930-11936 +11931-11936 +11931-11932 +11935-11936 +11936 +11937-11946 +11937-11946 +11938-11946 +11941-11946 +11942-11946 +11944-11946 +11944-11946 +11945-11946 +11947-11958 +11947-11958 +11948-11958 +11948-11952 +11948 +11949-11950 +11953-11958 +11954-11958 +11955-11958 +11956-11958 +11959-11966 +11959-11966 +11961-11966 +11961 +11963-11966 +11964-11966 +11965-11966 +11967-11980 +11967-11980 +11968-11980 +11968-11974 +11968 +11969-11970 +11972-11974 +11973-11974 +11975-11980 +11976-11980 +11976-11977 +11978-11980 +11979-11980 +11981-12020 +11981-12020 +11982-12020 +11982-11994 +11983-11994 +11983-11985 +11984-11985 +11986-11994 +11987-11994 +11988-11989 +11990-11994 +11991-11994 +11992-11994 +11993-11994 +11995-12020 +11998-11999 +12000-12020 +12002-12020 +12002-12017 +12002-12008 +12003-12008 +12004-12008 +12004-12005 +12006-12008 +12007-12008 +12009-12017 +12010-12017 +12012-12017 +12012-12013 +12014-12017 +12015-12017 +12016-12017 +12018-12020 +12018 +12021-12033 +12021-12033 +12022-12033 +12022-12026 +12023-12026 +12027-12033 +12028-12033 +12029-12033 +12029-12030 +12031-12032 +12034-12037 +12034-12037 +12035-12037 +12038-12068 +12038-12068 +12039-12068 +12039-12040 +12041-12068 +12042-12068 +12043-12068 +12044-12068 +12045-12047 +12046-12047 +12048-12068 +12049-12068 +12050-12052 +12051-12052 +12053-12068 +12054-12056 +12055-12056 +12059-12068 +12060-12068 +12061-12068 +12062-12068 +12062-12063 +12064-12068 +12065-12068 +12066-12068 +12067-12068 +12069-12095 +12069-12095 +12070-12095 +12070-12085 +12070-12071 +12072-12079 +12072 +12073-12079 +12074-12079 +12074 +12075-12079 +12076-12079 +12078-12079 +12081-12085 +12081-12082 +12083-12085 +12084-12085 +12086-12091 +12087-12091 +12088-12089 +12090-12091 +12092-12095 +12093-12095 +12094-12095 +12096-12118 +12096-12118 +12097-12118 +12097-12106 +12097-12099 +12098-12099 +12101-12103 +12102-12103 +12104-12106 +12105-12106 +12107-12118 +12108-12118 +12108-12113 +12111-12113 +12112-12113 +12114-12118 +12115-12118 +12116-12118 +12117-12118 +12119-12143 +12119-12143 +12120-12143 +12120-12127 +12120-12121 +12122-12127 +12122-12124 +12123-12124 +12125-12127 +12126-12127 +12127 +12129-12143 +12130-12143 +12130-12139 +12131-12133 +12132-12133 +12134-12139 +12134 +12135-12139 +12136-12139 +12137-12139 +12138-12139 +12140-12143 +12141-12143 +12142-12143 +12144-12156 +12144-12156 +12145-12156 +12145-12148 +12147-12148 +12149-12156 +12150-12152 +12151-12152 +12153-12156 +12154-12156 +12157-12170 +12157-12170 +12158-12170 +12158-12159 +12161-12170 +12163-12170 +12163-12164 +12165-12170 +12166-12170 +12167-12170 +12168-12170 +12169-12170 +12171-12215 +12171-12215 +12172-12215 +12172-12176 +12174-12176 +12175-12176 +12177-12186 +12178-12186 +12179-12186 +12180-12186 +12181-12186 +12181-12183 +12182-12183 +12184-12186 +12185-12186 +12187-12199 +12188-12199 +12189-12199 +12189-12192 +12190-12192 +12191-12192 +12193-12199 +12194-12199 +12195-12199 +12196-12199 +12197-12199 +12198-12199 +12200-12215 +12201-12215 +12203-12215 +12203-12209 +12204-12209 +12204-12206 +12205-12206 +12207-12208 +12210-12215 +12211-12215 +12214-12215 +12216-12227 +12216-12227 +12217-12227 +12217-12224 +12219-12221 +12220-12221 +12222-12224 +12223-12224 +12225-12227 +12226-12227 +12228-12260 +12228-12260 +12229-12260 +12229-12253 +12229-12233 +12229-12230 +12231-12233 +12232-12233 +12234-12252 +12235-12252 +12235-12238 +12236-12238 +12237-12238 +12239-12252 +12240-12252 +12240-12241 +12242-12252 +12243-12252 +12243-12246 +12244-12246 +12245-12246 +12247-12252 +12248-12252 +12249-12252 +12250-12252 +12251-12252 +12254-12260 +12255-12260 +12257-12260 +12257 +12258-12260 +12261-12276 +12261-12276 +12262-12276 +12262-12263 +12266-12276 +12266 +12269-12276 +12270-12276 +12270-12274 +12271-12274 +12272-12274 +12273-12274 +12274 +12277-12288 +12277-12288 +12278-12288 +12278-12285 +12278-12279 +12281-12283 +12282-12283 +12284-12285 +12286-12288 +12287-12288 +12289-12295 +12289-12295 +12290-12295 +12291-12294 +12292-12294 +12293-12294 +12296-12326 +12296-12326 +12297-12326 +12297-12314 +12297-12305 +12297-12302 +12298-12302 +12298-12299 +12300-12302 +12301-12302 +12304-12305 +12306-12314 +12307-12314 +12309-12310 +12311-12314 +12312-12314 +12315-12326 +12316-12326 +12318-12326 +12320-12321 +12324-12326 +12325-12326 +12327-12331 +12327-12331 +12328-12331 +12330-12331 +12332-12342 +12332-12342 +12333-12342 +12333 +12334-12335 +12337-12342 +12338-12342 +12341-12342 +12343-12376 +12343-12376 +12344-12376 +12344 +12345-12346 +12349-12376 +12349-12351 +12350-12351 +12352-12376 +12352-12357 +12353-12357 +12353-12354 +12355-12357 +12356-12357 +12358-12376 +12359-12363 +12360-12362 +12361-12362 +12365-12376 +12365-12375 +12366-12375 +12366-12368 +12366-12367 +12370-12375 +12370 +12371-12375 +12372-12375 +12373-12375 +12374-12375 +12376 +12377-12386 +12377-12386 +12378-12386 +12378-12384 +12379-12384 +12380-12384 +12382-12384 +12383-12384 +12385 +12387-12415 +12387-12415 +12388-12415 +12388-12392 +12390-12392 +12391-12392 +12393-12415 +12395 +12396-12402 +12396-12397 +12398-12402 +12399-12402 +12400-12402 +12401-12402 +12403-12415 +12404-12415 +12404-12408 +12404-12406 +12405-12406 +12409-12415 +12410-12415 +12413-12415 +12413-12414 +12416-12438 +12416-12438 +12417-12438 +12417 +12418-12419 +12422-12438 +12425-12426 +12427-12438 +12427-12430 +12428-12430 +12431-12438 +12434-12438 +12434-12436 +12435-12436 +12439-12449 +12439-12449 +12439-12442 +12439-12440 +12441-12442 +12445-12449 +12445-12446 +12445-12446 +12447-12449 +12448-12449 +12448-12449 +12450-12482 +12450-12482 +12451-12482 +12453-12454 +12455-12482 +12456-12482 +12456-12467 +12456-12459 +12457-12459 +12458-12459 +12458-12459 +12460-12467 +12462-12467 +12463-12467 +12463-12464 +12468-12482 +12469-12482 +12469-12475 +12469-12472 +12470-12472 +12471-12472 +12471-12472 +12473-12475 +12474-12475 +12476-12482 +12477-12482 +12478-12479 +12481-12482 +12483-12489 +12483-12489 +12484-12489 +12484-12486 +12485-12486 +12488-12489 +12490-12502 +12490-12502 +12492-12493 +12494-12502 +12498-12502 +12498-12500 +12499-12500 +12503-12506 +12503-12506 +12504-12506 +12507-12510 +12507-12510 +12509-12510 +12511-12521 +12511-12521 +12511-12513 +12512-12513 +12515-12521 +12515 +12516 +12517-12521 +12519-12521 +12520-12521 +12522-12530 +12522-12530 +12523-12530 +12523-12527 +12524 +12526-12527 +12527 +12528-12530 +12529-12530 +12531-12536 +12531-12536 +12532-12536 +12532-12534 +12533-12534 +12537-12545 +12537-12545 +12538-12545 +12538-12542 +12539 +12541-12542 +12543-12545 +12544 +12546-12554 +12546-12554 +12546-12549 +12547-12549 +12548-12549 +12551-12554 +12552-12554 +12553-12554 +12555-12557 +12555-12557 +12556-12557 +12556-12557 +12558-12606 +12558-12606 +12560-12561 +12562-12606 +12562-12577 +12563-12564 +12565-12577 +12566-12577 +12566-12570 +12566-12567 +12568-12570 +12569-12570 +12573-12577 +12574-12577 +12575-12577 +12576-12577 +12578-12606 +12579-12606 +12579-12597 +12579-12589 +12579-12585 +12581-12582 +12583-12585 +12584-12585 +12586-12589 +12587-12589 +12590-12597 +12591-12597 +12591-12595 +12591-12592 +12593-12595 +12594-12595 +12598-12606 +12599-12606 +12600 +12604-12606 +12605-12606 +12607-12609 +12607-12609 +12607-12608 +12610-12633 +12610-12633 +12613-12633 +12613-12615 +12616-12619 +12617-12619 +12620-12624 +12621-12624 +12622-12623 +12625-12627 +12626-12627 +12628-12631 +12629-12631 +12632-12633 +12633 +12634-12651 +12634-12651 +12635-12651 +12635-12640 +12636-12640 +12637-12640 +12638-12640 +12639-12640 +12642-12644 +12643-12644 +12645-12647 +12646-12647 +12648-12651 +12649-12651 +12650-12651 +12652-12667 +12652-12667 +12653-12667 +12653-12658 +12654-12655 +12656-12658 +12657-12658 +12659-12667 +12659-12661 +12660-12661 +12662-12664 +12663-12664 +12665-12667 +12666-12667 +12668-12678 +12668-12678 +12668-12674 +12670-12674 +12671-12674 +12672-12674 +12673-12674 +12675-12678 +12676-12678 +12679-12691 +12679-12691 +12680-12691 +12682-12683 +12684-12686 +12685-12686 +12687-12691 +12688-12691 +12689-12691 +12690-12691 +12692-12712 +12692-12712 +12693-12712 +12693-12694 +12695-12697 +12696-12697 +12699-12700 +12701-12712 +12701-12704 +12703-12704 +12705-12712 +12705 +12706-12712 +12706-12707 +12708-12712 +12709-12712 +12710-12712 +12711-12712 +12713-12721 +12713-12721 +12714-12721 +12714-12719 +12714-12715 +12717-12719 +12718-12719 +12720-12721 +12721 +12722-12733 +12722-12733 +12723-12733 +12723-12728 +12724-12728 +12725-12728 +12726-12728 +12727-12728 +12731-12733 +12731-12732 +12734-12754 +12734-12754 +12736-12754 +12736-12739 +12736 +12740-12754 +12741-12754 +12741-12742 +12744-12754 +12745-12754 +12746-12754 +12749-12750 +12751-12754 +12752-12754 +12753-12754 +12755-12783 +12755-12783 +12757-12758 +12759-12783 +12761-12763 +12762-12763 +12764-12783 +12764-12773 +12764-12768 +12764-12768 +12765-12768 +12767-12768 +12768 +12771-12773 +12772-12773 +12774-12777 +12774-12775 +12778-12783 +12779-12783 +12781-12783 +12782-12783 +12784-12802 +12784-12802 +12784-12785 +12788-12802 +12789-12802 +12789-12795 +12790-12791 +12792-12795 +12793-12795 +12794-12795 +12796-12802 +12797-12802 +12798-12802 +12799-12802 +12800-12802 +12801-12802 +12803-12817 +12803-12817 +12804-12817 +12804-12810 +12804-12809 +12805-12809 +12806-12809 +12807-12809 +12807-12808 +12811-12817 +12812-12817 +12812-12815 +12812-12815 +12813-12815 +12814-12815 +12818-12832 +12818-12832 +12819-12832 +12819-12823 +12819-12820 +12821-12823 +12822-12823 +12824-12827 +12825-12827 +12826-12827 +12829-12832 +12830-12832 +12830-12831 +12833-12844 +12833-12844 +12834-12844 +12834-12839 +12834-12836 +12835-12836 +12838-12839 +12840-12844 +12841-12844 +12841-12842 +12845-12867 +12845-12867 +12846-12867 +12846 +12847-12848 +12851-12852 +12854-12867 +12855-12867 +12856-12859 +12857-12859 +12858-12859 +12860-12867 +12861-12867 +12862-12867 +12865-12867 +12866-12867 +12868-12882 +12868-12882 +12869-12882 +12869-12878 +12870-12872 +12871-12872 +12873-12878 +12874-12878 +12875-12878 +12876-12878 +12877-12878 +12879-12882 +12880-12882 +12882 +12883-12909 +12883-12909 +12885-12886 +12887-12909 +12888-12909 +12889-12890 +12890 +12891-12909 +12891-12905 +12892-12895 +12892-12894 +12893-12894 +12896-12902 +12896-12901 +12896-12898 +12897-12898 +12899-12901 +12900-12901 +12903-12905 +12904-12905 +12906-12909 +12907-12909 +12908-12909 +12910-12925 +12910-12925 +12911-12925 +12912 +12914-12925 +12914-12919 +12915-12919 +12916-12919 +12917-12919 +12918-12919 +12920-12925 +12921-12925 +12922-12925 +12923-12925 +12924-12925 +12926-12935 +12926-12935 +12927-12935 +12927-12928 +12929-12932 +12930-12932 +12931-12932 +12933-12935 +12934-12935 +12936-12953 +12936-12953 +12937-12953 +12937-12939 +12937-12938 +12940-12948 +12941-12948 +12941-12944 +12942-12944 +12943-12944 +12946-12948 +12946-12947 +12949-12953 +12950-12953 +12950-12952 +12951-12952 +12954-12969 +12954-12969 +12956-12958 +12957-12958 +12959-12969 +12959-12963 +12960-12963 +12960-12961 +12964-12969 +12965-12969 +12965-12966 +12966 +12970-12984 +12970-12984 +12971-12984 +12971-12976 +12972-12976 +12973-12976 +12974-12976 +12975-12976 +12977-12984 +12978-12984 +12978-12980 +12979-12980 +12982-12984 +12983-12984 +12985-13000 +12985-13000 +12986-13000 +12986-12988 +12986-12987 +12989-12992 +12990-12992 +12991-12992 +12994-13000 +12994-12996 +12995-12996 +12997-13000 +12997-12998 +12999-13000 +13001-13005 +13001-13005 +13002-13005 +13003-13004 +13005 +13006-13019 +13006-13019 +13007-13019 +13007-13008 +13009-13012 +13010-13012 +13011-13012 +13012 +13015-13019 +13016-13019 +13018-13019 +13020-13030 +13020-13030 +13021-13030 +13023-13030 +13023 +13027-13030 +13029-13030 +13031-13033 +13031-13033 +13032-13033 +13034-13051 +13034-13051 +13035-13036 +13038-13039 +13040-13051 +13040-13044 +13041-13044 +13042-13044 +13043-13044 +13047-13051 +13048-13051 +13049-13051 +13050-13051 +13052-13060 +13052-13060 +13054-13060 +13054-13055 +13056-13060 +13057-13060 +13058-13060 +13059-13060 +13061-13067 +13061-13067 +13062-13067 +13062-13064 +13065-13067 +13066-13067 +13068-13078 +13068-13078 +13069 +13070-13071 +13074-13078 +13075-13078 +13077-13078 +13079-13125 +13079-13125 +13080-13125 +13082-13084 +13083-13084 +13085-13087 +13086-13087 +13088-13125 +13089-13125 +13089 +13090-13113 +13091-13113 +13092-13113 +13092-13093 +13094-13101 +13095-13101 +13095-13098 +13096-13098 +13097-13098 +13099-13100 +13102-13113 +13103-13113 +13106-13107 +13108-13113 +13109-13113 +13111-13113 +13112-13113 +13114-13125 +13115-13125 +13117-13125 +13120-13125 +13120-13123 +13121-13123 +13124-13125 +13125 +13126-13137 +13126-13137 +13127-13137 +13127-13128 +13129-13132 +13130-13132 +13131-13132 +13134-13137 +13137 +13138-13143 +13138-13143 +13140-13143 +13141-13143 +13142-13143 +13144-13148 +13144-13148 +13145-13148 +13149-13158 +13149-13158 +13150-13158 +13152-13158 +13153-13158 +13153-13155 +13153-13154 +13156-13158 +13157-13158 +13159-13160 +13159-13160 +13160 +13161-13174 +13161-13174 +13164-13174 +13165-13174 +13165-13168 +13166-13167 +13169-13174 +13170-13174 +13170-13172 +13171-13172 +13173-13174 +13175-13181 +13175-13181 +13176-13181 +13176-13177 +13176 +13178-13181 +13179-13181 +13179-13180 +13182-13218 +13182-13218 +13182-13192 +13182-13185 +13183-13185 +13184-13185 +13188-13192 +13189-13192 +13190-13192 +13193-13218 +13194-13218 +13196-13218 +13197-13218 +13197 +13200-13218 +13200-13205 +13201-13205 +13203-13205 +13206-13218 +13206-13212 +13207-13209 +13208-13209 +13210-13212 +13211-13212 +13213-13218 +13214-13218 +13216-13218 +13217-13218 +13219-13224 +13219-13224 +13220-13224 +13221-13222 +13223-13224 +13225-13240 +13225-13240 +13226-13240 +13226-13229 +13226-13227 +13228 +13230-13240 +13231-13240 +13231-13233 +13235-13237 +13236-13237 +13238-13240 +13239-13240 +13241-13250 +13241-13250 +13242-13247 +13242-13244 +13243-13244 +13245-13247 +13246-13247 +13248-13250 +13249-13250 +13251-13256 +13251-13256 +13252-13256 +13252-13253 +13255-13256 +13257-13269 +13257-13269 +13258-13269 +13258-13265 +13258-13260 +13259-13260 +13261-13264 +13261-13263 +13262-13263 +13266-13269 +13267-13269 +13270-13285 +13270-13285 +13271-13285 +13271 +13272-13273 +13276-13285 +13277-13285 +13277-13280 +13279-13280 +13281-13285 +13282-13285 +13282-13285 +13283-13285 +13284-13285 +13286-13300 +13286-13300 +13287-13300 +13287-13293 +13287-13289 +13288-13289 +13290-13293 +13290-13291 +13292-13293 +13294-13300 +13295-13300 +13295-13299 +13296-13299 +13297-13299 +13298-13299 +13301-13328 +13301-13328 +13302-13328 +13302-13306 +13302-13306 +13303-13306 +13304-13306 +13305-13306 +13307-13328 +13308-13328 +13309-13328 +13310-13328 +13312-13314 +13313-13314 +13315-13328 +13316-13328 +13318-13328 +13318-13320 +13319-13320 +13321-13324 +13322-13324 +13323-13324 +13325-13328 +13326-13328 +13327-13328 +13329-13335 +13329-13335 +13330-13333 +13331-13333 +13332-13333 +13335 +13336-13344 +13336-13344 +13337-13344 +13337 +13338-13339 +13341-13344 +13342-13344 +13343-13344 +13345-13356 +13345-13356 +13346-13356 +13346-13347 +13348-13352 +13348 +13350-13352 +13351-13352 +13354-13356 +13355-13356 +13357-13371 +13357-13371 +13358-13371 +13359-13362 +13359-13361 +13360-13361 +13363-13364 +13365-13371 +13365 +13367-13371 +13367-13368 +13369-13371 +13370-13371 +13372-13397 +13372-13397 +13373-13397 +13376-13397 +13377-13380 +13378-13380 +13379-13380 +13381-13397 +13381-13385 +13382-13385 +13383-13385 +13384-13385 +13386-13391 +13387-13391 +13388-13391 +13389-13391 +13390-13391 +13392-13397 +13393-13397 +13394-13397 +13395-13397 +13396-13397 +13398-13404 +13398-13404 +13400-13404 +13401-13404 +13401-13403 +13402-13403 +13405-13413 +13405-13413 +13408-13413 +13409-13411 +13410-13411 +13412-13413 +13413 +13414-13425 +13414-13425 +13414-13422 +13414-13418 +13415-13418 +13416-13418 +13417-13418 +13419-13421 +13420-13421 +13423-13425 +13424-13425 +13424-13425 +13426-13443 +13426-13443 +13427-13443 +13427-13429 +13428-13429 +13430-13443 +13432-13433 +13434-13443 +13435-13443 +13438-13440 +13439-13440 +13441-13443 +13441-13442 +13444-13447 +13444-13447 +13446-13447 +13446-13447 +13448-13477 +13448-13477 +13450-13477 +13451-13477 +13453-13454 +13458-13477 +13459-13477 +13461-13463 +13462-13463 +13464-13477 +13464-13467 +13465-13467 +13466-13467 +13468-13477 +13469-13477 +13470-13477 +13471-13473 +13472-13473 +13474-13477 +13475-13477 +13476-13477 +13478-13487 +13478-13487 +13479-13487 +13479-13483 +13480-13483 +13484-13487 +13485-13486 +13488-13503 +13488-13503 +13489-13503 +13489-13493 +13491-13493 +13494-13503 +13495-13503 +13497-13500 +13498-13500 +13499-13500 +13501-13503 +13504-13524 +13504-13524 +13505-13506 +13508-13513 +13508-13509 +13510-13513 +13511-13513 +13512-13513 +13514-13524 +13515-13524 +13515-13518 +13516-13518 +13517-13518 +13520-13524 +13520-13521 +13522-13524 +13523-13524 +13525-13540 +13525-13540 +13526-13540 +13526-13533 +13526-13530 +13527-13530 +13528-13530 +13531-13533 +13532-13533 +13534-13540 +13535-13540 +13535-13538 +13536-13538 +13537-13538 +13541-13545 +13541-13545 +13542-13545 +13542 +13543-13545 +13544-13545 +13546-13565 +13546-13565 +13547-13565 +13547-13556 +13547-13549 +13548-13549 +13550-13556 +13551-13556 +13552-13556 +13553-13556 +13554-13556 +13555-13556 +13557-13565 +13558-13565 +13559-13561 +13560-13561 +13564-13565 +13566-13576 +13566-13576 +13567-13576 +13567-13570 +13568-13570 +13569-13570 +13572-13576 +13573-13576 +13574-13576 +13575-13576 +13577-13610 +13577-13610 +13578-13610 +13578-13585 +13578-13581 +13579-13581 +13580-13581 +13582-13585 +13583-13585 +13584-13585 +13586-13610 +13587-13610 +13588-13610 +13588-13592 +13589-13592 +13590-13592 +13591-13592 +13593-13598 +13594-13598 +13595-13598 +13596-13598 +13597-13598 +13599-13604 +13600-13604 +13601-13604 +13602-13604 +13603-13604 +13605-13610 +13606-13610 +13607-13609 +13608-13609 +13611-13626 +13611-13626 +13612-13626 +13616-13626 +13617-13626 +13617-13621 +13619-13621 +13620-13621 +13622-13626 +13623-13626 +13623-13624 +13627-13642 +13627-13642 +13628-13642 +13628-13629 +13632-13634 +13633-13634 +13635-13642 +13636-13642 +13638-13642 +13639-13642 +13639-13640 +13641-13642 +13643-13652 +13643-13652 +13646-13652 +13647-13652 +13647-13648 +13650-13652 +13651-13652 +13653-13659 +13653-13659 +13654-13659 +13654-13656 +13655-13656 +13658-13659 +13660-13669 +13660-13669 +13661-13669 +13661-13664 +13661-13663 +13665-13669 +13666-13669 +13666-13668 +13670-13694 +13670-13694 +13671-13694 +13671-13685 +13673-13676 +13673-13676 +13673-13675 +13674-13675 +13677-13685 +13678-13685 +13679-13682 +13680-13682 +13681-13682 +13683-13685 +13684-13685 +13686-13694 +13687-13694 +13687-13689 +13690-13694 +13691-13694 +13691-13693 +13691-13692 +13692 +13695-13719 +13695-13719 +13697-13700 +13697-13700 +13697-13699 +13698-13699 +13701-13719 +13702-13719 +13702-13710 +13703-13707 +13703-13704 +13705-13707 +13706-13707 +13708-13710 +13711-13719 +13712-13719 +13712-13713 +13713 +13716-13719 +13716-13717 +13718-13719 +13720-13743 +13720-13743 +13722-13743 +13722-13743 +13722-13723 +13724-13743 +13725-13743 +13726-13743 +13726-13733 +13726-13731 +13727-13731 +13729-13731 +13730-13731 +13734-13743 +13735-13743 +13735-13742 +13736-13742 +13738-13742 +13739-13742 +13740-13742 +13741-13742 +13744-13759 +13744-13759 +13744-13746 +13744-13746 +13745-13746 +13748-13759 +13751-13759 +13751-13752 +13751-13752 +13753-13759 +13754-13759 +13754-13759 +13754-13755 +13756-13759 +13757-13759 +13758-13759 +13760-13779 +13760-13779 +13761-13779 +13761-13768 +13761-13766 +13762-13766 +13764-13766 +13765-13766 +13769-13779 +13770-13779 +13770-13778 +13771-13778 +13773-13778 +13774-13778 +13774-13775 +13776-13778 +13777-13778 +13780-13792 +13780-13792 +13780 +13782-13792 +13784-13792 +13784-13785 +13784-13785 +13786-13792 +13787-13792 +13787-13792 +13787-13788 +13789-13792 +13790-13792 +13791-13792 +13793-13807 +13793-13807 +13794-13807 +13794-13798 +13795-13798 +13796-13798 +13797-13798 +13800-13807 +13800-13801 +13802-13807 +13803-13807 +13804-13807 +13805-13807 +13806-13807 +13808-13821 +13808-13821 +13809-13821 +13809-13813 +13810-13813 +13811-13813 +13812-13813 +13815-13821 +13815-13816 +13817-13821 +13818-13821 +13819-13821 +13820-13821 +13822-13839 +13822-13839 +13823-13839 +13823-13827 +13824-13827 +13825-13827 +13826-13827 +13829-13839 +13829-13833 +13830-13833 +13831-13833 +13832-13833 +13834-13839 +13835-13839 +13836-13839 +13837-13839 +13838-13839 +13840-13869 +13840-13869 +13840-13845 +13842-13845 +13842-13845 +13842-13844 +13843-13844 +13846-13869 +13847-13869 +13847-13855 +13848-13855 +13848-13849 +13850-13852 +13851-13852 +13853-13855 +13854-13855 +13856-13869 +13857-13869 +13858-13869 +13858-13861 +13859-13861 +13860-13861 +13862-13869 +13862-13863 +13864-13866 +13865-13866 +13867-13869 +13868-13869 +13870-13876 +13870-13876 +13871-13876 +13872-13876 +13872-13873 +13874-13876 +13877-13886 +13877-13886 +13877-13886 +13877-13878 +13879-13886 +13880-13886 +13880-13882 +13881-13882 +13883-13886 +13884-13886 +13884-13885 +13887-13908 +13887-13908 +13889-13892 +13889-13892 +13889-13891 +13890-13891 +13893-13908 +13894-13908 +13894-13901 +13895-13901 +13896-13901 +13897-13901 +13897-13898 +13899-13901 +13900-13901 +13902-13908 +13903-13908 +13905-13908 +13906-13908 +13907-13908 +13909-13923 +13909-13923 +13909-13910 +13909-13910 +13911-13916 +13913-13916 +13914-13916 +13915-13916 +13917-13923 +13918-13923 +13919-13922 +13920-13922 +13921-13922 +13924-13946 +13924-13946 +13924-13929 +13926-13929 +13926-13929 +13926-13928 +13927-13928 +13930-13946 +13931-13946 +13932-13946 +13932-13933 +13933 +13934-13946 +13934-13938 +13935-13938 +13939-13946 +13940-13946 +13942-13946 +13942-13943 +13944-13946 +13945-13946 +13947-13962 +13947-13962 +13948-13949 +13950-13962 +13950-13955 +13951-13955 +13953-13954 +13956-13962 +13957-13962 +13960-13962 +13961-13962 +13963-14000 +13963-14000 +13963-13968 +13965-13968 +13965-13968 +13965-13967 +13966-13967 +13969-14000 +13970-14000 +13970-13980 +13970-13974 +13971-13974 +13972-13974 +13973-13974 +13975-13980 +13976-13980 +13977-13980 +13978-13980 +13979-13980 +13981-14000 +13982-14000 +13983-14000 +13983-13990 +13984-13990 +13985-13990 +13986-13990 +13987-13990 +13988-13990 +13989-13990 +13991-14000 +13992-14000 +13994-13995 +13996-14000 +13997-14000 +13998-14000 +13999-14000 +14001-14010 +14001-14010 +14002-14010 +14004-14010 +14005-14010 +14006-14010 +14007-14010 +14008-14010 +14009-14010 +14011-14018 +14011-14018 +14012-14018 +14014-14018 +14015-14018 +14016-14018 +14017-14018 +14019-14028 +14019-14028 +14019-14021 +14019-14021 +14020-14021 +14024-14028 +14025-14028 +14026-14028 +14027-14028 +14029-14090 +14029-14090 +14030-14059 +14030-14031 +14034-14035 +14036-14040 +14037-14038 +14039-14040 +14041-14059 +14041-14045 +14041-14042 +14043-14045 +14044-14045 +14046-14059 +14047-14059 +14047-14053 +14047-14048 +14050-14053 +14051-14053 +14052-14053 +14054-14059 +14055-14059 +14056-14059 +14056-14057 +14058-14059 +14060-14090 +14061-14090 +14062-14063 +14064-14090 +14065-14090 +14065-14066 +14067-14090 +14068-14070 +14069-14070 +14071-14090 +14071-14076 +14072-14076 +14073-14076 +14074-14076 +14075-14076 +14077-14090 +14078-14090 +14079-14090 +14080-14090 +14080-14082 +14081-14082 +14083-14090 +14085-14090 +14086-14090 +14086-14087 +14088-14090 +14089-14090 +14091-14100 +14091-14100 +14091-14093 +14092-14093 +14094-14100 +14095-14096 +14097-14100 +14098-14100 +14098-14099 +14101-14131 +14101-14131 +14101-14112 +14101 +14102 +14103-14112 +14103-14112 +14104-14112 +14104-14106 +14105-14106 +14107-14112 +14108-14112 +14109-14112 +14110-14112 +14111-14112 +14113-14131 +14113-14128 +14115-14128 +14116-14118 +14117-14118 +14119-14128 +14119-14120 +14123-14125 +14124-14125 +14126-14128 +14127-14128 +14129-14131 +14130-14131 +14132-14137 +14132-14137 +14135-14137 +14136-14137 +14138-14155 +14138-14155 +14139-14155 +14141-14155 +14141-14146 +14141-14142 +14145-14146 +14147-14155 +14148-14155 +14149-14155 +14150-14155 +14150 +14151-14155 +14152-14155 +14153-14155 +14154-14155 +14156-14174 +14156-14174 +14157-14174 +14157-14163 +14157-14158 +14159-14162 +14160-14162 +14161-14162 +14164-14174 +14165-14174 +14166-14168 +14167-14168 +14169-14174 +14171-14174 +14172-14174 +14173-14174 +14175-14196 +14175-14196 +14176-14196 +14177 +14180-14196 +14180-14183 +14181-14183 +14182-14183 +14184-14196 +14184-14186 +14185-14186 +14187-14196 +14187-14188 +14191-14192 +14193-14196 +14194-14196 +14197-14227 +14197-14227 +14198-14227 +14198-14204 +14200-14204 +14201-14204 +14202-14204 +14203-14204 +14205-14227 +14207-14208 +14209-14210 +14211-14227 +14212-14227 +14214-14227 +14214-14216 +14217-14227 +14218-14227 +14219-14227 +14220-14227 +14221-14227 +14221-14223 +14222-14223 +14224-14227 +14225-14227 +14226-14227 +14228-14238 +14228-14238 +14229-14238 +14229 +14230-14231 +14234-14238 +14234 +14235-14238 +14236-14238 +14239-14253 +14239-14253 +14240-14253 +14240-14250 +14242-14245 +14243-14245 +14244-14245 +14246-14250 +14247-14250 +14249-14250 +14251-14253 +14252-14253 +14254-14260 +14254-14260 +14255-14260 +14256-14260 +14257-14260 +14258-14260 +14259-14260 +14261-14263 +14261-14263 +14262-14263 +14263 +14264-14271 +14264-14271 +14265-14271 +14265-14266 +14266 +14267-14271 +14268-14271 +14270-14271 +14272-14287 +14272-14287 +14273-14287 +14273-14280 +14273-14276 +14275-14276 +14277-14280 +14278-14280 +14279-14280 +14281-14287 +14282-14287 +14283-14285 +14284-14285 +14286-14287 +14288-14292 +14288-14292 +14289-14292 +14289-14290 +14291-14292 +14293-14311 +14293-14311 +14293-14300 +14293-14297 +14296-14297 +14298-14300 +14299-14300 +14301-14311 +14302-14311 +14302-14303 +14304-14307 +14305-14307 +14306-14307 +14308-14311 +14309-14311 +14310-14311 +14312-14321 +14312-14321 +14313-14321 +14313-14315 +14316-14318 +14317-14318 +14319-14321 +14320-14321 +14322-14328 +14322-14328 +14323-14328 +14323-14325 +14323-14324 +14326-14328 +14327-14328 +14329-14339 +14329-14339 +14330-14339 +14330-14334 +14331-14334 +14332-14334 +14333-14334 +14336-14339 +14337-14339 +14338-14339 +14340-14346 +14340-14346 +14341-14346 +14341-14344 +14341-14344 +14342-14344 +14343-14344 +14347-14367 +14347-14367 +14348-14367 +14348-14362 +14349-14353 +14350-14353 +14351-14353 +14352-14353 +14354-14357 +14355-14357 +14356-14357 +14358-14359 +14360-14362 +14361-14362 +14363-14367 +14364-14367 +14366-14367 +14368-14420 +14368-14420 +14369-14420 +14369-14387 +14369-14384 +14370-14384 +14371-14384 +14371-14380 +14371-14374 +14372-14374 +14373-14374 +14375-14380 +14376-14380 +14377-14380 +14378-14380 +14379-14380 +14382-14384 +14383-14384 +14385-14387 +14385-14386 +14386 +14388-14420 +14388-14396 +14389-14392 +14390-14392 +14391-14392 +14394-14396 +14395-14396 +14397-14408 +14397-14400 +14398-14400 +14399-14400 +14403-14408 +14404-14408 +14405-14408 +14406-14408 +14407-14408 +14409-14420 +14410-14420 +14410-14413 +14411-14413 +14412-14413 +14417-14420 +14418-14420 +14419-14420 +14421-14433 +14421-14433 +14422-14433 +14423-14429 +14423-14426 +14424-14426 +14424-14425 +14427-14429 +14428-14429 +14429 +14430-14433 +14431-14433 +14432-14433 +14434-14444 +14434-14444 +14435-14444 +14436-14444 +14437-14444 +14439-14441 +14440-14441 +14442-14444 +14443-14444 +14445-14462 +14445-14462 +14446-14462 +14448-14462 +14448-14449 +14450-14462 +14450-14458 +14453-14458 +14453-14455 +14454-14455 +14456-14458 +14457-14458 +14459-14462 +14460-14462 +14460-14461 +14463-14474 +14463-14474 +14464-14474 +14464-14469 +14465-14469 +14467-14469 +14467-14468 +14471-14474 +14473-14474 +14475-14482 +14475-14482 +14476-14482 +14476-14478 +14477-14478 +14480-14482 +14480-14481 +14483-14495 +14483-14495 +14483-14493 +14484-14493 +14488-14493 +14489-14491 +14490-14491 +14492-14493 +14493 +14494-14495 +14496-14513 +14496-14513 +14497-14513 +14497-14500 +14498-14500 +14499-14500 +14501-14513 +14502-14513 +14503-14506 +14503-14504 +14505-14506 +14507-14513 +14508-14513 +14509-14510 +14510 +14511-14513 +14512-14513 +14514-14516 +14514-14516 +14517-14561 +14517-14561 +14518-14561 +14518-14533 +14518-14527 +14518-14525 +14519-14525 +14521-14525 +14522-14524 +14523-14524 +14526-14527 +14528-14533 +14528-14531 +14528 +14529-14531 +14529-14531 +14530-14531 +14534-14561 +14535-14561 +14535-14552 +14535-14544 +14536-14544 +14536-14540 +14536-14537 +14539-14540 +14541-14544 +14542-14544 +14543-14544 +14547-14552 +14548-14552 +14549-14552 +14550-14552 +14551-14552 +14553-14561 +14553-14557 +14554-14557 +14556-14557 +14560-14561 +14562-14593 +14562-14593 +14563-14593 +14563-14572 +14564-14569 +14565-14569 +14566-14569 +14567-14569 +14567-14568 +14570-14571 +14573-14580 +14574-14580 +14574-14575 +14578-14580 +14579-14580 +14581-14587 +14582-14587 +14582-14583 +14585-14587 +14586-14587 +14588-14593 +14589-14593 +14589-14592 +14590-14592 +14591-14592 +14594-14629 +14594-14629 +14595-14629 +14595-14604 +14597-14602 +14598-14602 +14599-14602 +14600-14602 +14601-14602 +14603-14604 +14605-14612 +14606-14612 +14608-14612 +14609-14612 +14610-14612 +14611-14612 +14613-14629 +14614-14629 +14615-14629 +14615-14618 +14616-14618 +14617-14618 +14620-14624 +14621-14624 +14622-14624 +14623-14624 +14625-14629 +14626-14629 +14626-14628 +14627-14628 +14630-14652 +14630-14652 +14631-14652 +14631-14637 +14632-14634 +14633-14634 +14635-14637 +14636-14637 +14638-14652 +14639-14652 +14640-14642 +14641-14642 +14643-14646 +14644-14646 +14645-14646 +14647-14652 +14647-14649 +14648-14649 +14650-14652 +14651-14652 +14653-14659 +14653-14659 +14654-14659 +14654-14656 +14655-14656 +14658-14659 +14660-14675 +14660-14675 +14660-14670 +14661-14670 +14661-14666 +14662-14664 +14663-14664 +14667-14670 +14668-14670 +14668-14669 +14671-14675 +14672-14675 +14673-14675 +14674-14675 +14676-14688 +14676-14688 +14679-14682 +14680-14682 +14681-14682 +14684-14688 +14685-14688 +14687-14688 +14689-14703 +14689-14703 +14690-14691 +14692-14703 +14693-14703 +14693-14694 +14696-14698 +14696-14697 +14699-14703 +14700-14703 +14701-14703 +14701-14702 +14704-14716 +14704-14716 +14704-14709 +14704-14708 +14704-14705 +14706-14708 +14707-14708 +14710-14716 +14711-14716 +14711-14713 +14712-14713 +14714-14715 +14717-14738 +14717-14738 +14718-14738 +14718-14733 +14718-14723 +14719-14723 +14719-14722 +14720-14722 +14721-14722 +14726-14733 +14727-14733 +14727-14730 +14728-14730 +14729-14730 +14731-14733 +14732-14733 +14734-14738 +14735-14738 +14736-14737 +14739-14752 +14739-14752 +14740-14752 +14740-14744 +14741-14744 +14741-14744 +14742-14744 +14743-14744 +14747-14752 +14748-14752 +14749-14752 +14750-14752 +14751-14752 +14753-14796 +14753-14796 +14754-14796 +14754-14787 +14755-14787 +14755-14777 +14755-14762 +14756-14762 +14756-14758 +14756-14757 +14759-14762 +14760-14762 +14761-14762 +14763-14769 +14764-14769 +14764-14766 +14765-14766 +14767-14769 +14768-14769 +14770-14777 +14771-14777 +14771-14772 +14775-14777 +14776-14777 +14778-14787 +14779-14787 +14781-14787 +14782-14787 +14782-14784 +14783-14784 +14785-14787 +14786-14787 +14788-14796 +14790-14796 +14791-14796 +14792-14796 +14793-14796 +14794-14796 +14795-14796 +14797-14807 +14797-14807 +14800-14802 +14801-14802 +14803-14807 +14803-14804 +14805-14807 +14806-14807 +14808-14817 +14808-14817 +14810-14812 +14811-14812 +14813-14817 +14813-14814 +14815-14817 +14816-14817 +14818-14828 +14818-14828 +14819-14828 +14819 +14820-14828 +14821-14828 +14823-14828 +14823-14824 +14825-14827 +14826-14827 +14829-14851 +14829-14851 +14830-14851 +14832-14851 +14833-14851 +14833-14841 +14834-14841 +14835-14836 +14837-14841 +14837-14838 +14839-14840 +14842-14851 +14842-14843 +14843 +14844-14851 +14845-14851 +14846-14851 +14848-14851 +14849-14851 +14850-14851 +14852-14867 +14852-14867 +14852-14857 +14852-14853 +14854-14855 +14858-14867 +14859-14867 +14859-14862 +14859-14861 +14863-14866 +14864-14866 +14865-14866 +14868-14890 +14868-14890 +14869-14890 +14871-14890 +14871-14875 +14872-14875 +14872-14874 +14873-14874 +14876-14890 +14878-14879 +14880-14883 +14881-14883 +14882-14883 +14884-14890 +14885-14890 +14887-14888 +14889-14890 +14891-14902 +14891-14902 +14892-14902 +14892-14894 +14892-14893 +14895-14902 +14895-14897 +14898 +14899-14901 +14900-14901 +14903-14913 +14903-14913 +14904-14905 +14906-14913 +14907-14913 +14907-14911 +14908-14911 +14909-14911 +14909-14910 +14910 +14914-14969 +14914-14969 +14915-14969 +14915-14941 +14916-14941 +14916-14928 +14917-14920 +14917-14919 +14918-14919 +14921-14924 +14922-14924 +14923-14924 +14925-14928 +14926-14928 +14927-14928 +14929-14941 +14930-14941 +14930-14934 +14931-14934 +14932-14934 +14933-14934 +14935-14941 +14936-14941 +14936-14938 +14937-14938 +14939-14941 +14940-14941 +14941 +14942-14969 +14942-14958 +14943-14947 +14944-14947 +14945-14947 +14945-14946 +14948-14958 +14948-14952 +14949-14952 +14950-14952 +14953-14958 +14954-14958 +14955-14958 +14956-14958 +14959-14969 +14960-14969 +14960-14961 +14962-14969 +14963-14969 +14963-14965 +14964-14965 +14966-14968 +14967-14968 +14970-14978 +14970-14978 +14972-14978 +14972-14973 +14974-14978 +14975-14978 +14976-14978 +14977-14978 +14979-14996 +14979-14996 +14981-14984 +14982-14984 +14983-14984 +14985-14996 +14986-14996 +14987-14996 +14988-14991 +14989-14991 +14990-14991 +14993-14996 +14994-14996 +14995-14996 +14997-15005 +14997-15005 +14998-15005 +14998-15002 +14998-15000 +14999-15000 +15003-15005 +15004-15005 +15006-15016 +15006-15016 +15007-15016 +15007-15008 +15009-15011 +15010-15011 +15014-15015 +15017-15028 +15017-15028 +15018-15028 +15018-15019 +15022-15024 +15023-15024 +15025-15028 +15026-15028 +15027-15028 +15029-15036 +15029-15036 +15030-15036 +15030-15032 +15031-15032 +15033-15036 +15033-15034 +15035-15036 +15036 +15037-15047 +15037-15047 +15038-15047 +15038-15039 +15042-15047 +15042-15044 +15042 +15043-15044 +15045-15047 +15046-15047 +15048-15058 +15048-15058 +15048-15053 +15050-15053 +15050-15052 +15051-15052 +15054-15058 +15055-15058 +15056-15058 +15057-15058 +15059-15075 +15059-15075 +15060-15075 +15060-15061 +15062-15063 +15065-15075 +15065-15070 +15067-15070 +15068-15070 +15069-15070 +15071-15075 +15072-15075 +15072-15074 +15073-15074 +15076-15096 +15076-15096 +15077-15096 +15078-15079 +15080-15096 +15081-15096 +15081-15088 +15083-15084 +15086-15088 +15087-15088 +15089-15093 +15091-15093 +15092-15093 +15093 +15095-15096 +15097-15116 +15097-15116 +15098-15116 +15098-15103 +15098-15100 +15100 +15101-15103 +15102-15103 +15104-15116 +15105-15116 +15105-15112 +15105-15106 +15108-15109 +15110-15112 +15111-15112 +15113-15116 +15114-15116 +15115-15116 +15117-15128 +15117-15128 +15118-15128 +15120-15123 +15121-15123 +15122-15123 +15124-15128 +15125-15128 +15125 +15126 +15127-15128 +15129-15138 +15129-15138 +15130-15138 +15131 +15133-15138 +15133-15135 +15134-15135 +15136-15138 +15139-15148 +15139-15148 +15140-15148 +15140 +15141-15148 +15142-15148 +15144-15148 +15144-15145 +15146-15148 +15147-15148 +15149-15181 +15149-15181 +15150-15181 +15151-15181 +15151-15179 +15151-15162 +15151-15156 +15152 +15154-15156 +15155-15156 +15157-15162 +15158-15162 +15160-15162 +15160-15161 +15161 +15163-15179 +15164-15179 +15164-15174 +15164-15168 +15165-15168 +15167-15168 +15169-15171 +15170-15171 +15172-15174 +15173-15174 +15175-15179 +15176-15179 +15177-15179 +15178-15179 +15180-15181 +15181 +15182-15195 +15182-15195 +15182-15191 +15182-15183 +15184-15188 +15185-15188 +15185-15187 +15186-15187 +15190-15191 +15192-15195 +15193-15195 +15194-15195 +15196-15202 +15196-15202 +15197-15199 +15198-15199 +15198-15199 +15201-15202 +15203-15217 +15203-15217 +15204-15217 +15204-15210 +15204-15207 +15205-15207 +15205-15206 +15208 +15211-15217 +15212-15217 +15213-15217 +15214-15217 +15215-15217 +15216-15217 +15218-15232 +15218-15232 +15219-15232 +15219-15227 +15219-15221 +15220-15221 +15223-15227 +15224-15227 +15225-15227 +15225-15226 +15228-15232 +15229-15232 +15231-15232 +15233-15254 +15233-15254 +15234-15254 +15234 +15235-15239 +15236-15239 +15236-15238 +15237-15238 +15241-15243 +15242-15243 +15244-15254 +15245-15254 +15245 +15246-15249 +15246-15247 +15250-15254 +15251-15253 +15252-15253 +15255-15279 +15255-15279 +15257-15259 +15258-15259 +15260-15279 +15260-15264 +15261-15264 +15261-15264 +15262-15264 +15263-15264 +15265-15279 +15265-15272 +15265-15266 +15269-15272 +15269-15270 +15273-15279 +15274-15279 +15275-15279 +15276-15279 +15277-15279 +15278-15279 +15280-15296 +15280-15296 +15280 +15281-15285 +15282-15285 +15283-15285 +15283-15285 +15284-15285 +15287-15296 +15287 +15288-15291 +15288-15289 +15292-15296 +15293-15295 +15294-15295 +15297-15321 +15297-15321 +15299-15301 +15300-15301 +15302-15321 +15302-15306 +15303-15306 +15303-15306 +15304-15306 +15305-15306 +15307-15321 +15307-15314 +15307-15308 +15311-15314 +15311-15312 +15315-15321 +15316-15321 +15317-15321 +15318-15321 +15319-15321 +15320-15321 +15322-15360 +15322-15360 +15323-15360 +15323 +15324-15329 +15325-15329 +15326-15329 +15326-15328 +15327-15328 +15331-15360 +15331 +15332-15356 +15332-15346 +15334-15346 +15335-15346 +15336-15346 +15337-15346 +15338-15346 +15338-15341 +15339-15341 +15342-15346 +15343-15346 +15344-15346 +15347-15356 +15348-15356 +15348 +15349 +15351-15353 +15352-15353 +15354-15356 +15355-15356 +15357-15360 +15359-15360 +15361-15400 +15361-15400 +15362-15400 +15362 +15363-15365 +15364-15365 +15368-15400 +15368-15382 +15368-15371 +15368-15371 +15369-15371 +15370-15371 +15373-15382 +15374-15382 +15374-15377 +15375-15377 +15378-15382 +15379-15382 +15380-15382 +15383-15400 +15384-15400 +15384-15391 +15385-15391 +15387-15389 +15388-15389 +15390-15391 +15392-15400 +15393-15400 +15394-15400 +15394 +15397-15398 +15399-15400 +15401-15413 +15401-15413 +15402-15413 +15402-15406 +15403-15404 +15405-15406 +15407-15413 +15408-15413 +15409-15413 +15410-15413 +15411-15413 +15412-15413 +15414-15430 +15414-15430 +15415-15430 +15415-15420 +15415-15418 +15415-15417 +15415-15416 +15416 +15419-15420 +15420 +15421-15430 +15422-15430 +15422-15424 +15422-15424 +15423-15424 +15425-15427 +15426-15427 +15429-15430 +15431-15440 +15431-15440 +15432-15440 +15432-15434 +15433-15434 +15436-15440 +15437-15440 +15438-15440 +15439-15440 +15441-15449 +15441-15449 +15443-15449 +15443-15444 +15445-15449 +15446-15449 +15447-15449 +15448-15449 +15450-15472 +15450-15472 +15451-15472 +15451-15466 +15452-15466 +15452-15460 +15453-15456 +15454-15456 +15455-15456 +15457-15460 +15458-15460 +15459-15460 +15461-15466 +15462-15466 +15462-15464 +15463-15464 +15465-15466 +15469-15472 +15470-15472 +15471-15472 +15473-15506 +15473-15506 +15474-15506 +15474-15479 +15475-15476 +15477-15479 +15478-15479 +15480-15506 +15481-15506 +15483-15484 +15485-15506 +15486-15506 +15486-15493 +15486-15487 +15489-15490 +15491-15493 +15492-15493 +15494-15506 +15495-15506 +15495-15501 +15496-15501 +15497-15498 +15499-15501 +15500-15501 +15502-15506 +15503-15506 +15503-15504 +15505-15506 +15507-15528 +15507-15528 +15509-15510 +15511-15514 +15512-15514 +15513-15514 +15515-15528 +15515-15520 +15516-15520 +15516-15520 +15516-15517 +15517 +15518-15520 +15519-15520 +15521-15528 +15522-15528 +15523-15528 +15523-15527 +15525-15527 +15526-15527 +15529-15558 +15529-15558 +15530-15558 +15530-15534 +15530 +15531-15534 +15532-15534 +15534 +15535-15538 +15535 +15536-15538 +15537-15538 +15539-15543 +15539-15540 +15541-15543 +15542-15543 +15544-15547 +15544 +15545-15547 +15546-15547 +15548-15551 +15548 +15549-15551 +15550-15551 +15552-15558 +15552-15554 +15552-15553 +15555-15558 +15556-15558 +15557-15558 +15559-15598 +15559-15598 +15562-15563 +15564-15598 +15565-15598 +15565 +15566-15575 +15567-15575 +15567-15571 +15567-15569 +15568-15569 +15570-15571 +15571 +15572-15575 +15573-15575 +15573 +15574-15575 +15575 +15576-15586 +15577-15586 +15578-15586 +15578-15582 +15578-15580 +15579-15580 +15581-15582 +15582 +15583-15586 +15584-15586 +15584 +15585-15586 +15586 +15587-15598 +15588-15598 +15589-15598 +15589-15594 +15590-15594 +15591-15594 +15591 +15592-15594 +15593-15594 +15595-15598 +15596-15598 +15597-15598 +15599-15619 +15599-15619 +15600-15619 +15600 +15601-15602 +15605-15619 +15606-15607 +15608-15619 +15608-15617 +15609-15617 +15611-15617 +15612-15617 +15612-15615 +15613-15615 +15614-15615 +15616-15617 +15620-15642 +15620-15642 +15622-15625 +15623-15625 +15624-15625 +15626-15642 +15626 +15628-15629 +15630-15642 +15631-15642 +15631-15634 +15632-15634 +15633-15634 +15635-15642 +15636-15642 +15637-15642 +15637-15638 +15639-15642 +15640-15642 +15641-15642 +15643-15673 +15643-15673 +15644-15673 +15644-15649 +15644 +15645-15649 +15646-15649 +15649 +15650-15654 +15650 +15651-15654 +15652-15654 +15655-15660 +15655-15656 +15657-15660 +15658-15660 +15661-15665 +15661 +15662-15665 +15663-15665 +15666-15673 +15666-15669 +15667-15669 +15668-15669 +15670-15673 +15671-15673 +15674-15698 +15674-15698 +15676-15677 +15678-15698 +15679-15698 +15679 +15681-15698 +15681-15694 +15682-15694 +15683-15694 +15683 +15684-15685 +15685 +15686-15687 +15688-15689 +15690-15691 +15692-15694 +15693-15694 +15695-15698 +15696-15698 +15699-15716 +15699-15716 +15702-15716 +15703-15716 +15704-15705 +15706-15716 +15706-15713 +15707-15713 +15710-15713 +15711-15713 +15712-15713 +15717-15728 +15717-15728 +15718-15728 +15718-15722 +15720-15722 +15721-15722 +15723-15728 +15724-15728 +15724-15725 +15726-15728 +15727-15728 +15729-15759 +15729-15759 +15730-15759 +15730 +15731-15759 +15731-15738 +15732-15738 +15733-15734 +15735-15738 +15735-15737 +15736-15737 +15739-15759 +15740-15742 +15741-15742 +15743-15759 +15744-15759 +15745-15759 +15745-15750 +15745-15747 +15746-15747 +15748-15749 +15751-15759 +15752-15759 +15752-15755 +15753-15755 +15754-15755 +15757-15759 +15758-15759 +15759 +15760-15785 +15760-15785 +15760-15776 +15762-15768 +15762-15763 +15764-15768 +15765-15768 +15766-15768 +15767-15768 +15769-15776 +15770-15776 +15771-15776 +15772-15776 +15772-15773 +15774-15776 +15775-15776 +15777-15785 +15778-15785 +15779-15785 +15780-15785 +15780-15783 +15780-15781 +15784-15785 +15785 +15786-15798 +15786-15798 +15787-15798 +15788-15798 +15788-15791 +15789-15791 +15790-15791 +15792-15798 +15793-15798 +15796-15798 +15797-15798 +15799-15823 +15799-15823 +15800-15823 +15800-15809 +15800-15801 +15803-15809 +15803-15804 +15805-15809 +15806-15809 +15807-15809 +15808-15809 +15810-15823 +15810-15816 +15813-15816 +15814-15816 +15815-15816 +15817-15823 +15818-15823 +15818-15821 +15819-15821 +15820-15821 +15822-15823 +15824-15834 +15824-15834 +15825-15834 +15825 +15826-15827 +15829-15834 +15830-15834 +15830-15831 +15832-15834 +15832-15833 +15835-15842 +15835-15842 +15836-15842 +15838-15842 +15838-15839 +15840-15842 +15841-15842 +15843-15859 +15843-15859 +15844-15859 +15844 +15845-15846 +15849-15859 +15849-15853 +15852-15853 +15854-15859 +15855-15859 +15855-15856 +15858-15859 +15860-15871 +15860-15871 +15861-15871 +15861-15866 +15862-15863 +15865-15866 +15867-15871 +15868-15871 +15872-15886 +15872-15886 +15873-15886 +15874-15881 +15875-15877 +15875-15876 +15878-15881 +15879-15881 +15880-15881 +15882-15885 +15883-15885 +15884-15885 +15887-15907 +15887-15907 +15887-15889 +15888-15889 +15890-15907 +15890-15899 +15891-15899 +15893-15895 +15893-15894 +15896-15899 +15897-15899 +15898-15899 +15901-15904 +15902-15904 +15905-15907 +15906-15907 +15908-15928 +15908-15928 +15909-15915 +15909-15911 +15910-15911 +15912-15915 +15913-15915 +15914-15915 +15916-15919 +15917-15919 +15918-15919 +15921-15928 +15922-15924 +15925-15928 +15929-15934 +15929-15934 +15930-15934 +15933-15934 +15935-15942 +15935-15942 +15936-15942 +15936-15937 +15940-15942 +15941-15942 +15943-15960 +15943-15960 +15944-15960 +15944-15947 +15945-15947 +15946-15947 +15949-15950 +15951-15952 +15953-15960 +15954-15960 +15954 +15955-15960 +15958-15960 +15959-15960 +15961-15990 +15961-15990 +15962-15990 +15964-15990 +15964-15970 +15965-15967 +15966-15967 +15968-15970 +15969-15970 +15971-15990 +15972-15990 +15974-15990 +15974-15975 +15977-15990 +15977-15981 +15977-15979 +15978-15979 +15982-15990 +15982-15983 +15985-15986 +15987-15990 +15988-15990 +15989-15990 +15991-16003 +15991-16003 +15992-16003 +15992-15999 +15992-15994 +15993-15994 +15995-15999 +15996-15999 +15998-15999 +16000-16003 +16001-16003 +16002-16003 +16004-16011 +16004-16011 +16005-16011 +16005-16006 +16007-16011 +16008-16011 +16009-16011 +16010-16011 +16012-16024 +16012-16024 +16013-16024 +16013-16014 +16015-16024 +16016-16024 +16017-16018 +16019-16024 +16020-16024 +16020-16022 +16021-16022 +16025-16036 +16025-16036 +16026-16036 +16026-16027 +16029-16030 +16031-16032 +16033-16036 +16034-16035 +16036 +16037-16052 +16037-16052 +16038-16052 +16039 +16041-16052 +16041-16049 +16041-16049 +16042-16049 +16043-16044 +16045-16046 +16047-16049 +16048-16049 +16053-16074 +16053-16074 +16053-16062 +16054-16062 +16054-16058 +16054-16057 +16055-16057 +16056-16057 +16059-16062 +16060-16062 +16061-16062 +16063-16074 +16064-16074 +16065-16074 +16065-16067 +16065-16066 +16068-16074 +16068-16069 +16070-16073 +16071-16073 +16072-16073 +16075-16083 +16075-16083 +16078-16083 +16079-16083 +16081-16083 +16081-16082 +16084-16094 +16084-16094 +16085-16094 +16085 +16086-16089 +16087-16089 +16088-16089 +16091-16094 +16092-16093 +16094 +16095-16098 +16095-16098 +16097-16098 +16099-16120 +16099-16120 +16100-16120 +16100-16101 +16102-16120 +16102-16108 +16102-16103 +16104-16107 +16104-16105 +16106-16107 +16107 +16109-16120 +16110-16120 +16110-16112 +16111-16112 +16114-16120 +16114-16115 +16114 +16115 +16116-16120 +16118-16120 +16119-16120 +16121-16147 +16121-16147 +16122-16147 +16122-16125 +16122-16123 +16124-16125 +16125 +16128-16147 +16129-16147 +16129-16132 +16130-16131 +16133-16147 +16134-16147 +16136-16147 +16136-16140 +16137-16140 +16137-16138 +16139-16140 +16141-16147 +16142-16147 +16142-16143 +16145-16147 +16146-16147 +16148-16177 +16148-16177 +16149-16177 +16151-16177 +16151-16152 +16154-16155 +16156-16161 +16157-16161 +16158-16161 +16159-16161 +16160-16161 +16162-16177 +16163-16177 +16163-16165 +16163-16164 +16166-16177 +16167-16177 +16169-16170 +16172-16177 +16173-16177 +16174-16177 +16175-16177 +16176-16177 +16178-16185 +16178-16185 +16179-16185 +16179 +16181-16185 +16182-16185 +16183-16185 +16184-16185 +16186-16220 +16186-16220 +16189-16190 +16191-16220 +16191-16210 +16191-16192 +16194-16195 +16196-16199 +16197-16199 +16197-16198 +16200-16210 +16201-16210 +16202-16210 +16202-16204 +16203-16204 +16205-16210 +16206-16210 +16207-16210 +16208-16210 +16209-16210 +16211-16220 +16212-16220 +16212-16215 +16213-16215 +16214-16215 +16218-16220 +16219-16220 +16221-16234 +16221-16234 +16222-16234 +16222 +16223-16224 +16227-16234 +16227-16231 +16228-16231 +16230-16231 +16232-16234 +16235-16252 +16235-16252 +16237-16238 +16239-16252 +16240-16241 +16242-16252 +16243-16252 +16243-16246 +16244-16246 +16245-16246 +16247-16249 +16248-16249 +16253-16266 +16253-16266 +16255-16256 +16257-16266 +16257-16262 +16258-16262 +16259-16262 +16260-16261 +16263-16266 +16263-16264 +16267-16272 +16267-16272 +16268-16271 +16269-16271 +16270-16271 +16273-16293 +16273-16293 +16273-16282 +16275-16276 +16277-16278 +16279-16282 +16280-16282 +16281-16282 +16283-16293 +16284-16293 +16285-16286 +16287-16293 +16289-16293 +16290-16293 +16291-16292 +16294-16306 +16294-16306 +16295-16306 +16295-16302 +16296-16302 +16296-16297 +16298-16302 +16299-16302 +16300-16302 +16301-16302 +16304-16306 +16304 +16305-16306 +16306 +16307-16322 +16307-16322 +16310-16322 +16310-16316 +16312-16314 +16313-16314 +16315-16316 +16317-16322 +16317-16318 +16319-16322 +16320-16322 +16321-16322 +16323-16351 +16323-16351 +16324-16351 +16324-16325 +16327-16329 +16328-16329 +16330-16351 +16330-16332 +16331-16332 +16333-16351 +16333-16334 +16333-16334 +16335-16343 +16335-16337 +16336-16337 +16339-16340 +16341-16343 +16341-16342 +16344-16351 +16345-16351 +16346-16348 +16347-16348 +16350-16351 +16351 +16352-16372 +16352-16372 +16353-16372 +16353-16360 +16353-16356 +16354-16356 +16355-16356 +16357-16360 +16358-16360 +16359-16360 +16361-16372 +16362-16372 +16363-16364 +16365-16372 +16368-16372 +16368-16369 +16371-16372 +16373-16380 +16373-16380 +16373-16375 +16373 +16374-16375 +16375 +16376-16380 +16377-16380 +16379-16380 +16381-16388 +16381-16388 +16381-16384 +16382-16384 +16382-16383 +16385-16388 +16386-16388 +16386-16387 +16389-16409 +16389-16409 +16389-16392 +16390-16391 +16394-16409 +16395-16409 +16395-16396 +16395-16396 +16397-16405 +16398-16405 +16401 +16402-16405 +16403-16405 +16406-16409 +16407-16409 +16408-16409 +16410-16421 +16410-16421 +16411-16421 +16411-16415 +16411-16412 +16414-16415 +16416-16421 +16417-16421 +16417-16418 +16419-16421 +16420-16421 +16422-16434 +16422-16434 +16423-16434 +16423-16425 +16426 +16428-16429 +16430-16434 +16430-16432 +16431-16432 +16435-16466 +16435-16466 +16435-16439 +16437-16439 +16438-16439 +16440-16466 +16441-16466 +16443-16466 +16443-16459 +16443-16446 +16443-16444 +16445-16446 +16446 +16447-16459 +16448-16450 +16449-16450 +16451-16459 +16452-16459 +16452-16455 +16453-16455 +16454-16455 +16457-16459 +16458-16459 +16460-16466 +16460-16461 +16460 +16461 +16462-16466 +16464-16466 +16465-16466 +16467-16492 +16467-16492 +16468-16492 +16468-16470 +16472-16476 +16472-16475 +16473-16475 +16474-16475 +16477-16492 +16478-16492 +16478-16479 +16480-16492 +16480-16485 +16480-16481 +16482-16485 +16483-16485 +16484-16485 +16486-16492 +16487-16492 +16488-16492 +16489-16492 +16490-16492 +16491-16492 +16493-16507 +16493-16507 +16494-16507 +16494-16496 +16495-16496 +16500-16507 +16501-16507 +16501-16505 +16501-16503 +16502-16503 +16508-16518 +16508-16518 +16509-16518 +16509-16515 +16510-16512 +16511-16512 +16514-16515 +16515 +16516-16518 +16517-16518 +16519-16527 +16519-16527 +16520-16527 +16520-16521 +16524-16527 +16524 +16525-16526 +16528-16538 +16528-16538 +16528-16535 +16529 +16531-16532 +16533-16535 +16534-16535 +16536-16538 +16537-16538 +16539-16561 +16539-16561 +16540-16561 +16541-16551 +16541-16544 +16542-16544 +16543-16544 +16545-16547 +16546-16547 +16549-16551 +16550-16551 +16552-16561 +16553-16561 +16553-16557 +16554-16557 +16555-16557 +16556-16557 +16559-16561 +16560-16561 +16562-16582 +16562-16582 +16565-16566 +16567-16582 +16567-16574 +16568-16570 +16569-16570 +16571-16574 +16572-16574 +16573-16574 +16575-16582 +16576-16582 +16576-16579 +16577-16579 +16578-16579 +16580-16581 +16583-16599 +16583-16599 +16584-16599 +16585-16599 +16586-16599 +16586-16591 +16588-16591 +16589-16591 +16590-16591 +16592-16599 +16593-16599 +16596-16599 +16597-16599 +16598-16599 +16600-16608 +16600-16608 +16601-16608 +16603-16604 +16605-16608 +16606-16608 +16608 +16609-16648 +16609-16648 +16609-16612 +16610-16612 +16611-16612 +16614-16615 +16616-16617 +16618-16648 +16618-16638 +16618-16627 +16618-16620 +16619-16620 +16619-16620 +16621-16627 +16622-16625 +16623-16625 +16624-16625 +16626-16627 +16628-16638 +16628-16634 +16628-16629 +16630-16632 +16631-16632 +16634 +16635-16638 +16636-16638 +16639-16648 +16640-16648 +16640-16642 +16640-16641 +16643-16648 +16644-16648 +16645-16648 +16646-16648 +16647-16648 +16649-16655 +16649-16655 +16650-16652 +16650-16651 +16653-16654 +16656-16672 +16656-16672 +16657-16672 +16657-16665 +16657-16660 +16658-16660 +16659-16660 +16662-16665 +16663-16665 +16664-16665 +16666-16672 +16667-16671 +16667-16668 +16669-16671 +16670-16671 +16673-16694 +16673-16694 +16674-16694 +16674-16684 +16674-16675 +16678-16679 +16680-16684 +16681-16684 +16682-16684 +16683-16684 +16685-16694 +16686-16694 +16686-16687 +16689-16691 +16690-16691 +16692-16694 +16693-16694 +16695-16715 +16695-16715 +16696-16715 +16696-16709 +16696-16701 +16696-16697 +16698-16701 +16699-16701 +16699-16700 +16704-16706 +16705-16706 +16707-16709 +16708-16709 +16710-16715 +16711-16715 +16711-16712 +16713-16715 +16713-16714 +16716-16733 +16716-16733 +16717-16733 +16718 +16721-16733 +16723-16733 +16724-16733 +16724-16728 +16725-16728 +16726-16728 +16727-16728 +16729-16733 +16730-16733 +16730-16732 +16731-16732 +16734-16745 +16734-16745 +16735-16745 +16735 +16736-16737 +16740-16745 +16742-16745 +16746-16749 +16746-16749 +16747-16749 +16747-16748 +16750-16773 +16750-16773 +16751-16773 +16751-16752 +16755-16773 +16757-16761 +16758-16761 +16758-16759 +16760-16761 +16761 +16762-16773 +16763-16773 +16765-16773 +16766-16773 +16768-16773 +16768-16769 +16770-16773 +16771-16773 +16772-16773 +16774-16801 +16774-16801 +16776-16777 +16778-16801 +16778-16779 +16780-16801 +16781-16801 +16783-16801 +16783-16784 +16786-16801 +16786-16794 +16786-16789 +16787-16789 +16788-16789 +16791-16794 +16792-16794 +16793-16794 +16795-16801 +16796-16801 +16797-16801 +16798-16801 +16799-16801 +16800-16801 +16802-16823 +16802-16823 +16803-16804 +16806-16808 +16807-16808 +16809-16823 +16810-16823 +16810-16815 +16811-16815 +16813-16814 +16816-16823 +16817-16820 +16819-16820 +16824-16830 +16824-16830 +16825-16830 +16826 +16828-16830 +16831-16851 +16831-16851 +16831-16839 +16831-16836 +16833-16836 +16834-16836 +16835-16836 +16837-16839 +16838-16839 +16840-16851 +16841-16851 +16843-16851 +16844-16851 +16844-16846 +16846 +16847-16851 +16849-16851 +16850-16851 +16852-16859 +16852-16859 +16853-16859 +16853-16854 +16857-16859 +16858-16859 +16860-16872 +16860-16872 +16861-16872 +16863-16864 +16865-16872 +16866-16872 +16866-16867 +16869-16872 +16870-16872 +16871-16872 +16873-16882 +16873-16882 +16874-16882 +16876-16877 +16878-16882 +16879-16882 +16881-16882 +16883-16900 +16883-16900 +16884-16900 +16884-16887 +16885-16887 +16886-16887 +16888-16900 +16888-16890 +16891-16900 +16892-16900 +16893-16894 +16895-16900 +16897-16900 +16898-16900 +16899-16900 +16901-16910 +16901-16910 +16902-16910 +16904-16905 +16906-16910 +16907-16910 +16909-16910 +16911-16933 +16911-16933 +16912-16933 +16912-16913 +16914 +16915-16916 +16916 +16918-16919 +16920-16933 +16920-16925 +16921-16922 +16923-16924 +16926-16933 +16927-16933 +16927-16930 +16928-16930 +16929-16930 +16934-16943 +16934-16943 +16936-16943 +16936 +16937-16943 +16938-16943 +16939-16943 +16940-16943 +16942-16943 +16944-16947 +16944-16947 +16945-16947 +16948-16962 +16948-16962 +16949-16962 +16950-16951 +16952-16962 +16953-16962 +16954-16962 +16955-16962 +16956-16962 +16957-16962 +16957-16959 +16958-16959 +16963-16967 +16963-16967 +16964-16967 +16964-16965 +16968-16986 +16968-16986 +16969-16986 +16969-16970 +16971-16986 +16973-16980 +16974-16980 +16974-16975 +16976-16980 +16977-16980 +16978-16980 +16979-16980 +16981-16983 +16982-16983 +16984-16986 +16985-16986 +16987-16995 +16987-16995 +16988-16995 +16988-16990 +16988-16989 +16991-16995 +16992-16995 +16993-16995 +16994-16995 +16996-17017 +16996-17017 +16997-17000 +16998-17000 +16999-17000 +17001-17003 +17002-17003 +17003 +17004 +17006-17008 +17007-17008 +17009-17012 +17010-17012 +17011-17012 +17013-17017 +17014-17017 +17015-17017 +17016-17017 +17018-17025 +17018-17025 +17019-17025 +17021-17025 +17021-17023 +17022-17023 +17024-17025 +17026-17036 +17026-17036 +17027-17036 +17027-17033 +17027-17032 +17028-17029 +17030-17032 +17031-17032 +17034-17036 +17035-17036 +17035 +17037-17054 +17037-17054 +17038-17054 +17038-17039 +17040-17042 +17041-17042 +17044-17054 +17044-17050 +17046-17050 +17048-17050 +17049-17050 +17051-17054 +17052-17054 +17052-17053 +17055-17068 +17055-17068 +17056-17068 +17056-17057 +17059-17060 +17061-17064 +17062-17064 +17063-17064 +17065-17068 +17066-17068 +17067-17068 +17069-17078 +17069-17078 +17070-17078 +17071-17073 +17071-17072 +17074-17075 +17076-17078 +17077-17078 +17079-17113 +17079-17113 +17081-17113 +17082-17113 +17083-17086 +17084-17086 +17085-17086 +17087-17113 +17088-17113 +17089-17113 +17089-17101 +17090-17101 +17090-17092 +17091-17092 +17093-17101 +17094-17101 +17095-17101 +17095-17096 +17096 +17097-17101 +17099-17101 +17100-17101 +17102-17113 +17103-17113 +17103-17109 +17105-17109 +17106-17109 +17107-17109 +17108-17109 +17110-17113 +17111-17113 +17114-17120 +17114-17120 +17115-17120 +17115-17116 +17118-17120 +17119-17120 +17121-17132 +17121-17132 +17122-17132 +17124-17125 +17126-17132 +17127-17132 +17129-17132 +17130-17132 +17131-17132 +17133-17138 +17133-17138 +17134-17138 +17134-17135 +17137-17138 +17139-17150 +17139-17150 +17140-17150 +17140-17148 +17141-17148 +17142-17148 +17144-17148 +17145-17148 +17146-17148 +17147-17148 +17151-17160 +17151-17160 +17154-17155 +17156-17160 +17158-17160 +17161-17173 +17161-17173 +17162-17173 +17165-17168 +17166-17168 +17167-17168 +17169-17173 +17170-17173 +17171-17172 +17174-17186 +17174-17186 +17175-17186 +17175-17176 +17178-17179 +17180-17186 +17181-17182 +17183-17186 +17184-17186 +17185-17186 +17187-17193 +17187-17193 +17188-17193 +17190-17193 +17190-17191 +17192-17193 +17194-17217 +17194-17217 +17195-17217 +17195-17210 +17195-17196 +17197-17210 +17199-17200 +17201-17210 +17202-17210 +17202-17204 +17205-17210 +17205-17210 +17206-17210 +17207-17210 +17208-17210 +17209-17210 +17211-17217 +17212-17217 +17213-17217 +17214-17217 +17214-17215 +17218-17244 +17218-17244 +17219-17244 +17219-17223 +17221-17223 +17222-17223 +17224-17244 +17225-17226 +17227-17229 +17228-17229 +17230-17244 +17231-17244 +17231-17236 +17232-17236 +17233-17236 +17234-17236 +17234-17235 +17237-17244 +17238-17244 +17241-17242 +17243-17244 +17245-17261 +17245-17261 +17246-17261 +17246-17250 +17246-17247 +17248-17250 +17249-17250 +17252-17253 +17254-17261 +17255-17261 +17255-17257 +17256-17257 +17258-17261 +17259-17261 +17259-17260 +17262-17274 +17262-17274 +17263-17274 +17263 +17264-17265 +17268-17274 +17269-17274 +17269-17272 +17270-17272 +17271-17272 +17275-17279 +17275-17279 +17276-17279 +17278-17279 +17278-17279 +17280-17290 +17280-17290 +17282-17283 +17284-17290 +17285-17290 +17287-17290 +17288-17290 +17289-17290 +17291-17293 +17291-17293 +17293 +17294-17300 +17294-17300 +17295-17300 +17297-17300 +17298-17300 +17298-17299 +17301-17306 +17301-17306 +17302-17306 +17305-17306 +17306 +17307-17334 +17307-17334 +17308-17334 +17308-17309 +17310-17317 +17311-17317 +17312-17317 +17312-17313 +17314-17317 +17315-17317 +17318-17319 +17321-17322 +17323-17325 +17324-17325 +17326-17334 +17327-17334 +17327-17332 +17329-17332 +17330-17332 +17331-17332 +17333-17334 +17335-17350 +17335-17350 +17336-17350 +17336 +17337-17339 +17338-17339 +17341-17350 +17341-17343 +17342-17343 +17344-17350 +17344-17345 +17346-17350 +17347-17350 +17348-17350 +17349-17350 +17351-17362 +17351-17362 +17351-17355 +17354-17355 +17356-17362 +17357-17362 +17357-17359 +17357-17358 +17361-17362 +17362 +17363-17379 +17363-17379 +17364-17367 +17365-17367 +17366-17367 +17368-17373 +17369-17370 +17371-17373 +17372-17373 +17375-17376 +17377-17379 +17378-17379 +17380-17426 +17380-17426 +17381-17426 +17381-17386 +17381-17382 +17383-17384 +17387-17396 +17388-17396 +17388-17391 +17390-17391 +17393-17396 +17394-17396 +17395-17396 +17397-17402 +17398-17402 +17399-17402 +17400-17402 +17401-17402 +17403-17413 +17404-17413 +17404-17406 +17405-17406 +17409-17413 +17410-17413 +17411-17413 +17411-17413 +17412-17413 +17414-17420 +17415-17420 +17415-17417 +17416-17417 +17419-17420 +17421-17426 +17422-17426 +17423-17426 +17424-17426 +17425-17426 +17427-17446 +17427-17446 +17428-17446 +17428-17440 +17428-17430 +17429-17430 +17431-17440 +17431-17434 +17433-17434 +17435-17440 +17436-17440 +17438-17440 +17439-17440 +17441-17446 +17442-17446 +17444-17446 +17445-17446 +17446 +17447-17453 +17447-17453 +17448-17453 +17448 +17450-17453 +17450-17451 +17452-17453 +17454-17460 +17454-17460 +17456-17460 +17457-17460 +17458-17460 +17459-17460 +17461-17478 +17461-17478 +17462-17478 +17462-17471 +17463-17471 +17464-17471 +17465-17471 +17466-17471 +17467-17471 +17468-17469 +17470-17471 +17474-17478 +17475-17478 +17476-17478 +17476-17477 +17479-17483 +17479-17483 +17480-17483 +17480 +17483 +17484-17497 +17484-17497 +17485-17497 +17485-17492 +17485-17486 +17488-17490 +17489-17490 +17491-17492 +17493-17497 +17494-17497 +17494 +17498-17514 +17498-17514 +17499-17514 +17500-17503 +17501-17503 +17502-17503 +17504-17514 +17505-17514 +17505-17506 +17507-17514 +17508-17514 +17510-17514 +17511-17514 +17512-17514 +17513-17514 +17515-17527 +17515-17527 +17517-17518 +17519-17520 +17521-17527 +17521-17523 +17522-17523 +17524-17527 +17525-17527 +17526-17527 +17528-17559 +17528-17559 +17529-17559 +17529-17530 +17530 +17533-17559 +17533-17536 +17534-17536 +17535-17536 +17537-17559 +17538-17559 +17539-17559 +17539-17547 +17539-17547 +17540-17547 +17540-17542 +17541-17542 +17543-17547 +17544-17547 +17544-17546 +17545-17546 +17548-17554 +17548-17549 +17550-17554 +17551-17554 +17552-17554 +17553-17554 +17555-17559 +17556-17559 +17557-17559 +17558-17559 +17560-17575 +17560-17575 +17561-17562 +17563-17568 +17564-17568 +17565-17568 +17566-17568 +17567-17568 +17570-17575 +17570-17571 +17572-17575 +17572-17573 +17576-17587 +17576-17587 +17576-17583 +17576-17578 +17576-17577 +17579-17583 +17581-17583 +17582-17583 +17584-17587 +17585-17587 +17586-17587 +17588-17596 +17588-17596 +17589-17591 +17590-17591 +17592-17596 +17592-17593 +17594-17596 +17595-17596 +17597-17602 +17597-17602 +17598-17602 +17599-17602 +17600-17602 +17600-17601 +17603-17614 +17603-17614 +17604-17614 +17604-17605 +17606-17612 +17607-17612 +17607-17608 +17609-17612 +17610-17612 +17611-17612 +17615-17627 +17615-17627 +17616-17627 +17616-17618 +17617-17618 +17621-17624 +17622-17624 +17623-17624 +17625-17627 +17626-17627 +17628-17652 +17628-17652 +17629-17652 +17629-17632 +17630-17632 +17631-17632 +17634-17635 +17636-17637 +17638-17652 +17639-17652 +17639-17642 +17639-17640 +17639 +17640 +17641-17642 +17643-17652 +17645-17652 +17645-17648 +17645-17646 +17645-17646 +17647-17648 +17647-17648 +17649-17652 +17649-17650 +17653-17663 +17653-17663 +17654-17663 +17654-17657 +17655-17657 +17656-17657 +17658 +17660-17663 +17661-17663 +17664-17680 +17664-17680 +17665-17680 +17666-17668 +17667-17668 +17669-17678 +17669 +17670-17672 +17671-17672 +17673-17675 +17674-17675 +17676-17678 +17677-17678 +17681-17691 +17681-17691 +17682-17691 +17682-17683 +17685-17691 +17685 +17686-17691 +17686 +17687-17691 +17688-17691 +17690-17691 +17692-17701 +17692-17701 +17693-17701 +17693-17694 +17695-17698 +17697-17698 +17700-17701 +17702-17750 +17702-17750 +17703-17750 +17704-17714 +17704-17707 +17705-17707 +17706-17707 +17709-17712 +17709-17710 +17711-17712 +17713-17714 +17715-17718 +17716-17718 +17716-17717 +17719-17722 +17720-17722 +17720-17721 +17723-17726 +17724-17726 +17724-17725 +17727-17750 +17728-17750 +17728-17733 +17728-17732 +17729-17732 +17730-17732 +17731-17732 +17731 +17734-17747 +17735-17747 +17735-17742 +17736-17738 +17737-17738 +17739-17742 +17740-17742 +17741-17742 +17744-17747 +17745-17747 +17746-17747 +17748-17750 +17749-17750 +17751-17774 +17751-17774 +17752-17774 +17752-17760 +17752-17753 +17754-17760 +17755-17760 +17756-17760 +17756-17757 +17759-17760 +17761-17766 +17762-17766 +17762-17763 +17764-17766 +17765-17766 +17766 +17769-17774 +17770-17774 +17771-17772 +17775-17811 +17775-17811 +17776-17811 +17778-17811 +17778-17791 +17778-17782 +17778-17779 +17780-17782 +17780-17781 +17783-17791 +17785-17786 +17787-17789 +17788-17789 +17790-17791 +17792-17811 +17792-17793 +17795-17811 +17795-17797 +17796-17797 +17798-17805 +17799-17805 +17800-17805 +17801-17805 +17801-17804 +17802-17804 +17803-17804 +17806-17811 +17807-17811 +17808-17811 +17809-17811 +17810-17811 +17812-17827 +17812-17827 +17813-17827 +17813-17814 +17815-17827 +17816-17827 +17816-17821 +17816-17819 +17816-17817 +17818-17819 +17820-17821 +17822-17827 +17822-17824 +17823-17824 +17826-17827 +17828-17836 +17828-17836 +17829 +17830-17831 +17833-17836 +17834-17836 +17835-17836 +17837-17841 +17837-17841 +17838-17839 +17841 +17842-17874 +17842-17874 +17843-17874 +17843-17852 +17843-17845 +17844-17845 +17846-17847 +17850-17852 +17851-17852 +17853-17865 +17854-17865 +17856-17865 +17857-17865 +17857-17860 +17858-17860 +17859-17860 +17861-17865 +17863-17865 +17864-17865 +17866-17874 +17867-17874 +17867-17873 +17868-17869 +17870-17873 +17871-17873 +17872-17873 +17875-17888 +17875-17888 +17876-17888 +17877-17883 +17877-17879 +17878-17879 +17880-17883 +17881-17883 +17882-17883 +17884-17885 +17886-17888 +17887-17888 +17889-17918 +17889-17918 +17890-17918 +17890-17896 +17890-17891 +17892-17896 +17894-17896 +17895-17896 +17898-17902 +17898-17899 +17900-17902 +17901-17902 +17903-17918 +17903-17904 +17906-17918 +17906 +17907 +17909-17918 +17909-17911 +17910-17911 +17913-17914 +17915-17918 +17915-17917 +17916-17917 +17919-17950 +17919-17950 +17920-17950 +17921-17927 +17922-17923 +17924-17927 +17925-17927 +17926-17927 +17928-17950 +17928-17942 +17928-17934 +17930 +17931-17932 +17935-17942 +17936-17942 +17937-17938 +17939-17942 +17940-17942 +17941-17942 +17943-17950 +17944-17950 +17945-17947 +17946-17947 +17949-17950 +17951-17960 +17951-17960 +17953-17954 +17955-17960 +17955-17956 +17957-17960 +17957 +17958-17960 +17958 +17959-17960 +17960 +17961-17972 +17961-17972 +17962-17972 +17963 +17965-17966 +17967-17969 +17968-17969 +17970-17972 +17971-17972 +17973-17991 +17973-17991 +17974-17991 +17974-17975 +17976-17980 +17977-17980 +17978-17980 +17979-17980 +17982-17988 +17982-17984 +17983-17984 +17985-17988 +17986-17988 +17987-17988 +17989-17991 +17990-17991 +17992-17996 +17992-17996 +17993-17996 +17994-17995 +17997-18011 +17997-18011 +17998-18011 +17998-18007 +17998-17999 +18000-18004 +18000-18002 +18001-18002 +18003-18004 +18004 +18006-18007 +18008-18011 +18009-18011 +18010-18011 +18012-18025 +18012-18025 +18013-18025 +18013-18018 +18014-18016 +18015-18016 +18017-18018 +18019-18025 +18020-18025 +18020-18022 +18021-18022 +18024-18025 +18026-18037 +18026-18037 +18027-18037 +18027-18033 +18027-18030 +18028-18030 +18029-18030 +18032-18033 +18033 +18034-18037 +18035-18037 +18036-18037 +18038-18054 +18038-18054 +18039-18054 +18039 +18040-18041 +18043-18044 +18045-18054 +18045-18047 +18048-18054 +18049-18054 +18050-18054 +18051-18054 +18051-18053 +18052-18053 +18053 +18055-18061 +18055-18061 +18055-18057 +18058-18061 +18059-18061 +18059 +18060-18061 +18061 +18062-18067 +18062-18067 +18062 +18063-18067 +18064-18067 +18065-18067 +18066-18067 +18068-18089 +18068-18089 +18069-18089 +18069-18070 +18072-18074 +18073-18074 +18075-18089 +18076-18089 +18076-18079 +18077-18079 +18078-18079 +18080-18089 +18081-18089 +18082-18086 +18084-18086 +18085-18086 +18087-18089 +18090-18092 +18090-18092 +18093-18108 +18093-18108 +18094-18108 +18094-18103 +18096-18098 +18097-18098 +18099-18103 +18100-18103 +18101-18103 +18102-18103 +18105-18108 +18106-18108 +18107-18108 +18109-18115 +18109-18115 +18110-18115 +18114-18115 +18115 +18116-18125 +18116-18125 +18117-18125 +18117-18122 +18118 +18120-18122 +18121-18122 +18123-18125 +18124-18125 +18126-18145 +18126-18145 +18129-18130 +18131-18145 +18131-18132 +18133-18145 +18133 +18134-18145 +18134-18142 +18135-18137 +18136-18137 +18138-18142 +18139-18142 +18140-18142 +18141-18142 +18143-18145 +18146-18162 +18146-18162 +18147-18162 +18147-18148 +18149-18162 +18150-18152 +18151-18152 +18153-18156 +18154-18156 +18155-18156 +18158-18159 +18160-18162 +18161-18162 +18162 +18163-18187 +18163-18187 +18164-18187 +18164-18170 +18164-18167 +18165-18167 +18166-18167 +18168-18170 +18169-18170 +18171-18172 +18174-18175 +18176-18187 +18177-18187 +18178-18187 +18179-18187 +18179-18185 +18179-18181 +18180-18181 +18182-18183 +18186-18187 +18188-18200 +18188-18200 +18189-18200 +18189-18194 +18190-18194 +18192-18194 +18193-18194 +18195-18200 +18195-18196 +18197-18200 +18198-18200 +18201-18207 +18201-18207 +18202-18207 +18202-18205 +18203-18204 +18206-18207 +18207 +18208-18218 +18208-18218 +18209-18218 +18210-18212 +18210-18211 +18213-18214 +18215-18218 +18216-18218 +18217-18218 +18219-18241 +18219-18241 +18220-18241 +18220-18238 +18220-18234 +18220-18222 +18221-18222 +18224-18226 +18225-18226 +18227-18234 +18228-18234 +18229-18234 +18230-18234 +18233-18234 +18235-18238 +18236-18238 +18236-18237 +18239-18241 +18240-18241 +18242-18258 +18242-18258 +18243-18258 +18243 +18244-18245 +18248-18258 +18249-18258 +18251-18258 +18252-18258 +18253-18258 +18253-18254 +18255-18258 +18256-18258 +18257-18258 +18259-18285 +18259-18285 +18260-18285 +18260 +18262-18264 +18263-18264 +18265-18285 +18267-18278 +18268-18278 +18269-18278 +18270-18278 +18270-18271 +18272-18274 +18273-18274 +18275-18278 +18276-18278 +18277-18278 +18279-18285 +18280-18285 +18282-18285 +18283-18285 +18286-18299 +18286-18299 +18287-18299 +18289-18290 +18292-18294 +18293-18294 +18295-18299 +18296-18299 +18297-18299 +18298-18299 +18300-18306 +18300-18306 +18300-18306 +18301-18306 +18302-18306 +18303-18306 +18303-18304 +18305-18306 +18307-18353 +18307-18353 +18307-18340 +18308-18340 +18309-18313 +18310-18313 +18310-18311 +18312-18313 +18314-18340 +18315-18326 +18316-18318 +18317-18318 +18319-18321 +18320-18321 +18322-18326 +18324-18326 +18325-18326 +18327-18340 +18327-18340 +18328-18340 +18329-18331 +18330-18331 +18332-18340 +18332-18335 +18333-18335 +18334-18335 +18336-18340 +18338-18340 +18339-18340 +18341-18353 +18342-18353 +18343-18353 +18344-18353 +18345-18347 +18346-18347 +18348-18353 +18349-18353 +18350-18353 +18351-18353 +18352-18353 +18354-18377 +18354-18377 +18355-18377 +18355-18365 +18356-18357 +18358-18365 +18358-18361 +18359-18361 +18360-18361 +18362-18365 +18363-18365 +18363-18364 +18366-18377 +18367-18377 +18368-18369 +18370-18373 +18371-18373 +18372-18373 +18374-18377 +18375-18377 +18376-18377 +18378-18397 +18378-18397 +18379-18397 +18380-18381 +18382-18397 +18382-18391 +18382-18384 +18383-18384 +18385-18391 +18386-18391 +18386-18387 +18388-18391 +18389-18391 +18390-18391 +18392-18397 +18393-18397 +18394-18397 +18395-18397 +18396-18397 +18398-18417 +18398-18417 +18399-18417 +18400-18417 +18401-18417 +18402-18404 +18403-18404 +18405-18406 +18407-18417 +18411-18417 +18411 +18413-18417 +18414-18417 +18415-18417 +18416-18417 +18418-18427 +18418-18427 +18418-18421 +18422-18427 +18423-18427 +18426-18427 +18428-18446 +18428-18446 +18429-18446 +18429-18433 +18430-18433 +18431-18433 +18432-18433 +18434-18446 +18434-18439 +18436-18439 +18437-18439 +18438-18439 +18440-18446 +18441-18446 +18442-18444 +18443-18444 +18445-18446 +18447-18464 +18447-18464 +18448-18464 +18449-18452 +18450-18452 +18451-18452 +18454-18464 +18454-18456 +18455-18456 +18457-18464 +18458-18464 +18458-18459 +18460-18461 +18463-18464 +18465-18480 +18465-18480 +18466-18480 +18468-18470 +18469-18470 +18471-18480 +18471-18477 +18473-18477 +18473-18475 +18474-18475 +18476-18477 +18478-18480 +18478-18479 +18481-18489 +18481-18489 +18482-18489 +18483-18484 +18487-18489 +18488-18489 +18490-18510 +18490-18510 +18491-18510 +18491-18500 +18492-18494 +18493-18494 +18495-18496 +18497-18500 +18498-18500 +18499-18500 +18501-18510 +18502-18510 +18502-18505 +18503-18505 +18504-18505 +18506-18510 +18507-18510 +18507-18508 +18511-18545 +18511-18545 +18512-18545 +18512-18516 +18513-18516 +18514-18516 +18515-18516 +18518-18519 +18520-18522 +18521-18522 +18523-18545 +18523-18527 +18524-18527 +18525-18527 +18526-18527 +18528-18545 +18529-18545 +18530-18545 +18531-18545 +18531-18539 +18531-18533 +18532-18533 +18534-18539 +18535-18539 +18536-18539 +18537-18539 +18538-18539 +18540-18545 +18540 +18541-18545 +18542-18545 +18543-18545 +18544-18545 +18546-18563 +18546-18563 +18547-18563 +18547-18552 +18548-18552 +18549-18552 +18550-18552 +18551-18552 +18554-18563 +18554-18559 +18555-18559 +18556-18559 +18557-18559 +18558-18559 +18561-18563 +18562-18563 +18564-18566 +18564-18566 +18565-18566 +18567-18580 +18567-18580 +18568-18580 +18570-18571 +18572-18580 +18572-18574 +18573-18574 +18575-18580 +18576-18580 +18577-18580 +18579-18580 +18581-18587 +18581-18587 +18582-18587 +18583-18585 +18584-18585 +18588-18612 +18588-18612 +18589-18612 +18589-18608 +18589-18590 +18592-18608 +18592-18600 +18592-18595 +18593-18595 +18594-18595 +18596-18600 +18597-18600 +18598-18600 +18599-18600 +18601-18608 +18602-18608 +18603-18605 +18604-18605 +18607-18608 +18609-18612 +18610-18612 +18613-18627 +18613-18627 +18614-18627 +18614-18624 +18615-18618 +18615-18617 +18616-18617 +18619-18621 +18620-18621 +18622-18624 +18623-18624 +18626-18627 +18628-18631 +18628-18631 +18629-18631 +18630-18631 +18632-18640 +18632-18640 +18633-18640 +18634-18635 +18636-18639 +18637-18639 +18638-18639 +18641-18658 +18641-18658 +18642-18658 +18643-18646 +18644-18646 +18645-18646 +18647-18658 +18648-18658 +18648-18649 +18651-18658 +18651-18653 +18652-18653 +18654-18658 +18655-18658 +18656-18658 +18657-18658 +18657-18658 +18659-18689 +18659-18689 +18660-18689 +18660-18669 +18662-18665 +18663-18665 +18664-18665 +18666-18669 +18667-18669 +18668-18669 +18670-18689 +18671-18689 +18672-18689 +18673-18689 +18673-18681 +18673-18678 +18674-18676 +18675-18676 +18677-18678 +18677-18678 +18679-18681 +18680-18681 +18682-18689 +18684-18689 +18684-18685 +18686-18689 +18686-18689 +18687-18689 +18688-18689 +18690-18699 +18690-18699 +18691-18699 +18693-18694 +18695-18699 +18695 +18696-18699 +18697-18699 +18698-18699 +18700-18713 +18700-18713 +18701-18713 +18701-18704 +18702-18704 +18703-18704 +18705-18710 +18705-18706 +18707-18710 +18708-18710 +18709-18710 +18712-18713 +18714-18736 +18714-18736 +18715-18736 +18717-18736 +18718-18736 +18720-18736 +18721-18736 +18721-18727 +18721-18723 +18724-18727 +18724-18727 +18724-18725 +18726-18727 +18728-18736 +18728-18733 +18728-18732 +18729-18732 +18730-18732 +18731-18732 +18734-18736 +18735-18736 +18737-18749 +18737-18749 +18738-18749 +18739-18741 +18740-18741 +18744-18749 +18745-18749 +18746-18749 +18747-18749 +18748-18749 +18750-18766 +18750-18766 +18751-18766 +18752-18755 +18752-18754 +18753-18754 +18757-18762 +18758-18762 +18759-18762 +18760-18762 +18761-18762 +18763-18766 +18764-18766 +18765-18766 +18767-18778 +18767-18778 +18768-18778 +18768-18772 +18768-18770 +18769-18770 +18772 +18773-18778 +18774-18778 +18777-18778 +18779-18785 +18779-18785 +18780-18785 +18780 +18783-18785 +18784-18785 +18786-18793 +18786-18793 +18787-18793 +18787-18790 +18789-18790 +18791-18793 +18792-18793 +18794-18810 +18794-18810 +18795-18810 +18795-18796 +18797-18810 +18797-18800 +18799-18800 +18801-18810 +18802-18803 +18804-18810 +18805-18810 +18805-18807 +18806-18807 +18808-18810 +18809-18810 +18810 +18811-18819 +18811-18819 +18812-18819 +18812-18813 +18814-18816 +18815-18816 +18817-18819 +18818-18819 +18820-18839 +18820-18839 +18821-18839 +18821-18826 +18822-18826 +18823-18826 +18825-18826 +18827-18839 +18828-18839 +18828-18830 +18828-18829 +18831-18839 +18832-18839 +18834-18836 +18835-18836 +18837-18839 +18838-18839 +18840-18852 +18840-18852 +18841-18852 +18841-18845 +18842-18843 +18844 +18846-18852 +18847-18852 +18847-18850 +18848-18850 +18849-18850 +18851-18852 +18853-18870 +18853-18870 +18854-18870 +18854-18860 +18856-18860 +18857-18860 +18858-18860 +18859-18860 +18861-18870 +18862-18870 +18862-18863 +18864-18870 +18865-18870 +18867-18870 +18868-18870 +18871-18887 +18871-18887 +18872-18887 +18874-18887 +18874-18883 +18874-18879 +18876-18879 +18877-18879 +18878-18879 +18878 +18880-18883 +18881-18883 +18881-18882 +18884-18887 +18885-18887 +18885-18886 +18888-18902 +18888-18902 +18889-18902 +18890-18902 +18890-18898 +18891-18894 +18892-18894 +18893-18894 +18895-18898 +18896-18898 +18897-18898 +18899-18902 +18900-18902 +18900-18901 +18903-18919 +18903-18919 +18904-18919 +18905-18906 +18908-18911 +18908-18909 +18910-18911 +18911 +18912-18919 +18914-18919 +18915-18919 +18915-18916 +18916 +18918-18919 +18920-18931 +18920-18931 +18921-18931 +18921-18926 +18921 +18922-18925 +18923-18925 +18924-18925 +18927-18931 +18928-18931 +18930-18931 +18930 +18931 +18932-18940 +18932-18940 +18933-18940 +18933-18938 +18935-18936 +18937-18938 +18939-18940 +18940 +18941-18971 +18941-18971 +18942-18971 +18942-18946 +18942-18943 +18947-18971 +18948-18971 +18950-18971 +18950-18953 +18951-18953 +18954-18971 +18955-18971 +18955 +18956-18971 +18956-18959 +18958-18959 +18960-18971 +18961-18971 +18962-18965 +18963-18965 +18964-18965 +18966-18968 +18969-18971 +18970-18971 +18972-18995 +18972-18995 +18973-18995 +18973-18989 +18974 +18976-18981 +18976-18977 +18978-18981 +18979-18981 +18980-18981 +18982-18989 +18983-18989 +18986-18989 +18987-18988 +18990-18995 +18991-18995 +18992-18994 +18993-18994 +18996-19000 +18996-19000 +18997-19000 +18998-18999 +19001-19012 +19001-19012 +19002-19012 +19002-19007 +19004-19005 +19006-19007 +19008-19012 +19009-19012 +19010-19012 +19010-19011 +19013-19028 +19013-19028 +19014-19028 +19014-19023 +19016-19023 +19017-19023 +19019-19023 +19020-19023 +19021-19023 +19022-19023 +19024-19028 +19025-19028 +19027-19028 +19029-19037 +19029-19037 +19030-19037 +19031-19037 +19032-19033 +19034-19037 +19035-19037 +19036-19037 +19038-19059 +19038-19059 +19039-19059 +19039-19050 +19039-19045 +19041-19042 +19043-19045 +19044-19045 +19047-19050 +19048-19050 +19049-19050 +19051-19059 +19052-19059 +19052 +19054-19059 +19055-19059 +19056-19059 +19057-19058 +19060-19074 +19060-19074 +19061-19074 +19061-19062 +19063-19066 +19064-19066 +19065-19066 +19068-19069 +19070-19074 +19070 +19072-19074 +19073-19074 +19075-19101 +19075-19101 +19076-19101 +19077-19079 +19078-19079 +19081-19101 +19081 +19082-19101 +19083-19101 +19084-19087 +19085-19087 +19086-19087 +19088-19101 +19088-19092 +19092 +19093-19101 +19093-19096 +19095-19096 +19097-19101 +19098-19101 +19099-19101 +19100-19101 +19102-19158 +19102-19158 +19103-19158 +19104-19105 +19106-19114 +19107-19109 +19108-19109 +19110-19114 +19111-19114 +19113-19114 +19117-19158 +19117-19143 +19120-19123 +19121-19123 +19122-19123 +19124-19143 +19124-19126 +19127-19143 +19127-19133 +19127-19129 +19128-19129 +19130-19133 +19131-19133 +19132-19133 +19134-19143 +19135-19143 +19136-19143 +19136 +19137-19143 +19138-19143 +19138-19141 +19139-19141 +19140-19141 +19142-19143 +19143 +19144-19158 +19145-19158 +19146-19158 +19147-19158 +19148-19158 +19150-19153 +19151-19153 +19152-19153 +19154-19155 +19156-19158 +19157-19158 +19159-19174 +19159-19174 +19160-19161 +19162-19174 +19164-19174 +19164 +19165-19174 +19165-19168 +19166-19168 +19167-19168 +19169-19174 +19170-19174 +19171-19174 +19172-19174 +19173-19174 +19175-19196 +19175-19196 +19176-19196 +19176 +19177-19196 +19178-19196 +19179-19181 +19180-19181 +19183-19184 +19185-19196 +19186-19196 +19186-19187 +19188-19196 +19189-19196 +19190-19191 +19192-19196 +19193-19196 +19194-19196 +19197-19202 +19197-19202 +19198-19202 +19200-19202 +19201-19202 +19203-19212 +19203-19212 +19204-19212 +19204-19209 +19204-19206 +19205-19206 +19208-19209 +19210-19212 +19211-19212 +19213-19228 +19213-19228 +19214-19228 +19214-19223 +19214 +19216-19223 +19216-19219 +19217-19219 +19218-19219 +19221-19223 +19222-19223 +19224-19228 +19225-19228 +19227-19228 +19229-19232 +19229-19232 +19230-19232 +19230 +19233-19258 +19233-19258 +19234-19258 +19234-19240 +19235-19240 +19237-19240 +19238-19240 +19239-19240 +19241-19258 +19242-19258 +19242-19252 +19242-19245 +19243-19245 +19244-19245 +19247-19252 +19247-19248 +19249-19252 +19250-19252 +19251-19252 +19253-19258 +19254-19258 +19254-19255 +19256-19258 +19257-19258 +19259-19282 +19259-19282 +19260-19282 +19260-19263 +19261-19263 +19262-19263 +19264-19271 +19265-19271 +19266-19271 +19267-19271 +19268-19271 +19268-19269 +19270-19271 +19273-19275 +19274-19275 +19276-19282 +19277-19282 +19277-19281 +19278-19281 +19279-19281 +19280-19281 +19283-19298 +19283-19298 +19284-19298 +19284 +19285-19286 +19289-19298 +19290-19294 +19290-19291 +19293-19294 +19294 +19296-19298 +19296-19298 +19297-19298 +19299-19304 +19299-19304 +19300-19302 +19301-19302 +19304 +19305-19313 +19305-19313 +19306-19313 +19306-19307 +19308-19313 +19308-19310 +19309-19310 +19311-19313 +19312-19313 +19314-19335 +19314-19335 +19315-19335 +19315 +19316-19335 +19317-19335 +19319-19335 +19319-19329 +19319-19320 +19321-19328 +19321-19323 +19322-19323 +19324-19328 +19325-19328 +19326-19328 +19327-19328 +19330-19335 +19331-19335 +19331-19333 +19332-19333 +19336-19354 +19336-19354 +19337-19354 +19339-19340 +19341-19354 +19342-19354 +19343-19346 +19344-19346 +19345-19346 +19347-19353 +19348-19353 +19349-19350 +19351-19352 +19354 +19355-19364 +19355-19364 +19355-19361 +19355-19356 +19358-19359 +19360-19361 +19364 +19365-19380 +19365-19380 +19366-19380 +19366-19373 +19368-19373 +19369-19373 +19370-19371 +19372-19373 +19374-19380 +19375-19380 +19377-19380 +19378-19380 +19379-19380 +19381-19388 +19381-19388 +19382-19384 +19383-19384 +19386-19388 +19387-19388 +19389-19404 +19389-19404 +19390-19404 +19390-19391 +19391 +19392-19400 +19393-19396 +19394-19396 +19395-19396 +19397-19400 +19398-19400 +19399-19400 +19401-19404 +19402-19404 +19402-19403 +19405-19433 +19405-19433 +19406-19433 +19406-19427 +19406-19412 +19408-19409 +19410-19412 +19411-19412 +19413-19427 +19414-19427 +19414-19415 +19415 +19416-19420 +19417-19418 +19419-19420 +19421-19427 +19422-19427 +19422-19424 +19422-19423 +19425-19427 +19426-19427 +19426-19427 +19428-19433 +19429-19433 +19429-19430 +19431-19433 +19432-19433 +19434-19453 +19434-19453 +19435-19453 +19435-19443 +19436-19443 +19437-19439 +19438-19439 +19441-19443 +19442-19443 +19444-19453 +19445-19453 +19445-19447 +19446-19447 +19449-19450 +19451-19453 +19452-19453 +19454-19466 +19454-19466 +19455-19466 +19455-19456 +19459-19466 +19462-19463 +19464-19466 +19467-19484 +19467-19484 +19468-19484 +19470-19484 +19472-19484 +19472-19474 +19475-19484 +19476-19484 +19476-19477 +19478-19484 +19479-19484 +19480-19484 +19481-19484 +19482-19484 +19483-19484 +19485-19515 +19485-19515 +19486-19515 +19486-19494 +19487-19491 +19488-19491 +19489-19491 +19490-19491 +19492-19494 +19493-19494 +19495-19515 +19496-19515 +19496-19508 +19496-19499 +19497-19499 +19498-19499 +19501-19508 +19501-19504 +19501-19502 +19506-19508 +19507-19508 +19509-19515 +19510-19515 +19511-19515 +19512-19515 +19513-19515 +19513-19514 +19516-19531 +19516-19531 +19517-19531 +19519-19531 +19519-19524 +19519-19520 +19521-19523 +19522-19523 +19525-19531 +19526-19531 +19527-19528 +19529-19531 +19530-19531 +19532-19541 +19532-19541 +19533-19541 +19534-19537 +19535-19537 +19536-19537 +19538-19541 +19539-19541 +19540-19541 +19542-19546 +19542-19546 +19543-19546 +19545-19546 +19547-19554 +19547-19554 +19548-19554 +19550-19554 +19551-19554 +19551 +19553-19554 +19555-19565 +19555-19565 +19556-19565 +19556-19562 +19556-19557 +19558-19562 +19559-19562 +19559-19560 +19563-19565 +19564-19565 +19566-19578 +19566-19578 +19567-19578 +19568-19574 +19568-19569 +19570-19574 +19571-19574 +19571-19573 +19572-19573 +19575-19578 +19576-19578 +19577-19578 +19579-19592 +19579-19592 +19580-19592 +19582-19592 +19583-19584 +19585-19592 +19585-19588 +19585-19586 +19587-19588 +19588 +19589-19592 +19589-19590 +19591-19592 +19592 +19593-19595 +19593-19595 +19594-19595 +19596-19613 +19596-19613 +19597-19613 +19597-19600 +19599-19600 +19601-19607 +19602-19607 +19603-19607 +19604-19607 +19605-19607 +19606-19607 +19609-19610 +19611-19613 +19612-19613 +19614-19620 +19614-19620 +19615-19620 +19615 +19616-19620 +19617-19620 +19618-19620 +19619-19620 +19621-19635 +19621-19635 +19622-19635 +19622 +19623-19624 +19626-19628 +19627-19628 +19631-19632 +19633-19635 +19634-19635 +19636-19646 +19636-19646 +19637-19646 +19637-19638 +19639-19642 +19640-19642 +19641-19642 +19644-19646 +19645-19646 +19647-19653 +19647-19653 +19648-19653 +19648-19652 +19648-19649 +19650-19652 +19651-19652 +19654-19681 +19654-19681 +19655-19681 +19655-19673 +19655-19657 +19656-19657 +19658-19660 +19659-19660 +19661-19664 +19662-19664 +19663-19664 +19665-19668 +19666-19668 +19667-19668 +19669-19673 +19670-19673 +19671-19673 +19672-19673 +19674-19675 +19676-19678 +19677-19678 +19680-19681 +19682-19697 +19682-19697 +19683-19697 +19683-19693 +19684-19686 +19685-19686 +19687-19693 +19688-19693 +19691-19693 +19692-19693 +19694-19697 +19695-19697 +19698-19709 +19698-19709 +19699-19709 +19701-19709 +19702-19709 +19704-19709 +19705-19709 +19707-19709 +19710-19729 +19710-19729 +19711-19729 +19711-19719 +19711-19714 +19712-19714 +19713-19714 +19715-19717 +19716-19717 +19720-19729 +19721-19729 +19722-19729 +19723-19729 +19724-19729 +19726-19729 +19727-19729 +19728-19729 +19730-19738 +19730-19738 +19731-19738 +19734-19738 +19735-19738 +19739-19752 +19739-19752 +19740-19752 +19740-19748 +19740-19743 +19741-19743 +19742-19743 +19744-19748 +19745-19748 +19746-19748 +19749-19752 +19750-19752 +19751-19752 +19753-19770 +19753-19770 +19754-19770 +19754-19755 +19756-19770 +19756-19759 +19757-19759 +19758-19759 +19760-19770 +19761-19770 +19762-19770 +19764-19770 +19764 +19765-19770 +19766-19770 +19768-19770 +19769-19770 +19771-19800 +19771-19800 +19772-19800 +19772-19774 +19773-19774 +19775-19800 +19776-19800 +19776-19780 +19778-19779 +19781-19800 +19782-19800 +19782-19791 +19782-19791 +19782-19785 +19783-19785 +19784-19785 +19786-19791 +19787-19791 +19788-19791 +19789-19791 +19790-19791 +19792-19800 +19793-19800 +19796-19800 +19797-19800 +19799-19800 +19801-19828 +19801-19828 +19802-19828 +19802-19828 +19803-19804 +19805-19806 +19807-19808 +19809-19810 +19811-19815 +19812-19815 +19813-19815 +19814-19815 +19816-19817 +19818-19821 +19819-19821 +19820-19821 +19822-19828 +19823-19828 +19823-19824 +19825-19828 +19829-19832 +19829-19832 +19830-19832 +19831-19832 +19833-19844 +19833-19844 +19834-19844 +19836-19837 +19838-19844 +19839-19844 +19842-19844 +19845-19856 +19845-19856 +19846-19856 +19846 +19847-19849 +19848-19849 +19851-19852 +19853-19856 +19854-19856 +19855-19856 +19856 +19857-19877 +19857-19877 +19858-19877 +19858-19863 +19858-19859 +19860-19863 +19861-19863 +19861-19862 +19865-19877 +19865-19867 +19866-19867 +19868-19877 +19869-19877 +19870-19877 +19870-19874 +19871-19874 +19872-19874 +19873-19874 +19876-19877 +19878-19889 +19878-19889 +19879-19889 +19879-19880 +19881-19882 +19885-19889 +19888-19889 +19890-19901 +19890-19901 +19891-19901 +19891-19895 +19892-19895 +19893-19894 +19898 +19899-19901 +19899-19900 +19902-19913 +19902-19913 +19903-19913 +19903-19907 +19904-19907 +19905-19906 +19910-19912 +19910-19911 +19913 +19914-19928 +19914-19928 +19915-19928 +19915-19922 +19916-19922 +19916-19920 +19916-19917 +19919-19920 +19921-19922 +19922 +19924-19925 +19925 +19927-19928 +19929-19954 +19929-19954 +19930-19954 +19930-19948 +19933-19942 +19933-19938 +19933-19937 +19934-19937 +19935-19937 +19936-19937 +19939-19941 +19940-19941 +19943-19948 +19944-19948 +19946-19947 +19949-19954 +19950-19954 +19951-19953 +19952-19953 +19955-19972 +19955-19972 +19956-19972 +19958-19972 +19959-19972 +19960-19963 +19961-19963 +19962-19963 +19964-19972 +19964-19966 +19965-19966 +19967-19972 +19968-19972 +19969-19972 +19970-19972 +19971-19972 +19973-19997 +19973-19997 +19974-19997 +19974-19992 +19974-19987 +19974-19981 +19975-19981 +19977-19981 +19978-19981 +19979-19981 +19980-19981 +19985-19987 +19986-19987 +19988-19992 +19989-19992 +19991-19992 +19994-19997 +19995-19997 +19995-19996 +19998-20014 +19998-20014 +19999-20014 +19999-20006 +20000-20006 +20000-20002 +20001-20002 +20003-20006 +20004-20006 +20005-20006 +20007-20014 +20008-20014 +20008-20009 +20011-20012 +20013-20014 +20015-20037 +20015-20037 +20016-20037 +20016-20019 +20017-20018 +20020-20037 +20021-20037 +20023-20037 +20024-20034 +20024-20026 +20025-20026 +20027-20030 +20028-20030 +20029-20030 +20031-20034 +20032-20034 +20033-20034 +20038-20049 +20038-20049 +20039-20049 +20039-20040 +20042-20049 +20044-20049 +20044-20046 +20045-20046 +20047-20049 +20048-20049 +20050-20065 +20050-20065 +20051-20065 +20051-20056 +20052-20056 +20053-20056 +20053-20054 +20058-20065 +20058 +20059-20065 +20059-20065 +20059-20061 +20060-20061 +20062-20065 +20063-20065 +20064-20065 +20066-20080 +20066-20080 +20066-20072 +20067-20072 +20069-20072 +20070-20072 +20071-20072 +20073-20080 +20074-20079 +20074-20075 +20076-20077 +20078-20079 +20081-20087 +20081-20087 +20082-20087 +20084-20087 +20085-20087 +20086-20087 +20088-20113 +20088-20113 +20089-20113 +20089-20102 +20090-20091 +20092-20093 +20094-20102 +20095-20102 +20096-20098 +20096-20097 +20100-20102 +20101-20102 +20103-20113 +20104-20113 +20104-20106 +20105-20106 +20107-20112 +20107-20109 +20108-20109 +20110-20112 +20111-20112 +20114-20127 +20114-20127 +20115-20127 +20115-20119 +20117-20118 +20120-20127 +20121-20127 +20123-20126 +20124-20126 +20125-20126 +20127 +20128-20132 +20128-20132 +20130-20131 +20131 +20132 +20133-20224 +20133-20224 +20134-20224 +20135-20137 +20136-20137 +20137 +20138-20224 +20138-20150 +20139-20150 +20139-20143 +20141-20143 +20142-20143 +20144-20150 +20145-20150 +20145-20147 +20146-20147 +20148-20150 +20149-20150 +20151-20183 +20152-20183 +20152-20170 +20152-20161 +20152-20156 +20154-20156 +20155-20156 +20157-20161 +20160-20161 +20162-20170 +20163-20170 +20165-20170 +20166-20170 +20167-20170 +20169-20170 +20171-20183 +20172-20183 +20172-20176 +20172-20175 +20173-20175 +20174-20175 +20177-20183 +20178-20183 +20178-20182 +20179-20182 +20180-20182 +20184-20200 +20185-20200 +20185-20189 +20187-20189 +20188-20189 +20190-20200 +20191-20200 +20191-20196 +20191-20193 +20192-20193 +20194-20196 +20195-20196 +20197-20200 +20198-20200 +20201-20224 +20202-20224 +20202-20208 +20204-20208 +20205-20208 +20206-20208 +20207-20208 +20209-20224 +20210-20224 +20210-20214 +20212-20214 +20212-20214 +20213-20214 +20215-20224 +20216-20224 +20217-20224 +20217-20218 +20219-20221 +20220-20221 +20222-20224 +20223-20224 +20225-20231 +20225-20231 +20226-20231 +20227-20231 +20227-20230 +20230 +20232-20246 +20232-20246 +20233-20246 +20233-20236 +20234-20236 +20235-20236 +20237-20246 +20239-20241 +20240-20241 +20242-20244 +20243-20244 +20245-20246 +20247-20284 +20247-20284 +20248-20284 +20250-20284 +20250-20257 +20252-20257 +20253-20257 +20254-20257 +20255-20257 +20256-20257 +20258-20284 +20259-20284 +20259-20278 +20259-20261 +20260-20261 +20262-20263 +20264-20265 +20267-20278 +20268-20278 +20268-20272 +20268-20269 +20268 +20270-20272 +20271-20272 +20273-20278 +20274-20278 +20274-20275 +20274 +20276-20278 +20277-20278 +20279-20284 +20279-20281 +20282-20284 +20283-20284 +20285-20298 +20285-20298 +20286-20298 +20288-20298 +20288-20292 +20290-20292 +20290-20291 +20293-20298 +20294-20298 +20295-20297 +20296-20297 +20299-20303 +20299-20303 +20299-20300 +20300 +20301-20302 +20304-20329 +20304-20329 +20305-20329 +20305-20314 +20307-20314 +20308-20314 +20309-20314 +20310-20314 +20311-20314 +20313-20314 +20315-20329 +20316-20329 +20316-20317 +20317 +20318-20329 +20318-20321 +20320-20321 +20322-20329 +20323-20329 +20324-20329 +20324-20325 +20326-20329 +20327-20329 +20328-20329 +20330-20357 +20330-20357 +20331-20357 +20333-20337 +20334-20337 +20334-20336 +20335-20336 +20338-20357 +20339-20357 +20339-20348 +20340-20343 +20341-20343 +20342-20343 +20345-20346 +20349-20357 +20350-20357 +20350-20354 +20353-20354 +20355-20357 +20356-20357 +20358-20367 +20358-20367 +20358-20365 +20360-20362 +20361-20362 +20363-20365 +20364-20365 +20368-20375 +20368-20375 +20369-20375 +20371-20375 +20372-20375 +20372-20374 +20373-20374 +20376-20404 +20376-20404 +20376-20381 +20378-20381 +20379-20381 +20379-20380 +20382-20404 +20383-20404 +20383-20401 +20383-20397 +20383-20386 +20384-20386 +20385-20386 +20387-20391 +20388-20391 +20389-20391 +20390-20391 +20392-20397 +20393-20397 +20394-20397 +20394-20396 +20395-20396 +20398 +20400-20401 +20402-20404 +20403-20404 +20405-20430 +20405-20430 +20406-20430 +20407-20413 +20408-20413 +20408-20412 +20409-20412 +20410-20412 +20411-20412 +20414-20430 +20415-20430 +20415-20418 +20417-20418 +20419-20420 +20420 +20421-20430 +20422-20430 +20423-20430 +20423-20424 +20425-20427 +20426-20427 +20428-20430 +20429-20430 +20431-20447 +20431-20447 +20432-20447 +20434-20447 +20435-20447 +20436-20447 +20437-20438 +20439-20447 +20440-20447 +20440-20443 +20440-20442 +20441-20442 +20444-20447 +20445-20447 +20445-20447 +20446-20447 +20448-20453 +20448-20453 +20449-20453 +20450-20453 +20450-20452 +20451-20452 +20454-20470 +20454-20470 +20455-20470 +20455-20462 +20457-20458 +20459-20462 +20460-20462 +20460 +20461-20462 +20462 +20463-20470 +20464-20465 +20467-20470 +20468-20470 +20469-20470 +20471-20476 +20471-20476 +20471-20475 +20472-20475 +20475 +20476 +20477-20482 +20477-20482 +20478-20482 +20480-20482 +20480 +20481-20482 +20483-20491 +20483-20491 +20483-20488 +20483-20486 +20483-20485 +20484-20485 +20489-20491 +20490-20491 +20492-20506 +20492-20506 +20493-20506 +20493-20496 +20493-20494 +20497-20506 +20498-20506 +20498-20500 +20501-20506 +20501-20503 +20502-20503 +20505-20506 +20507-20539 +20507-20539 +20508-20539 +20509-20539 +20509-20514 +20511-20514 +20512-20514 +20513-20514 +20515-20539 +20516-20539 +20516-20522 +20518-20519 +20520-20522 +20521-20522 +20523-20539 +20524-20539 +20524-20529 +20524-20526 +20525-20526 +20527-20529 +20528-20529 +20530-20539 +20531-20539 +20531-20535 +20531-20532 +20533-20535 +20534-20535 +20536-20539 +20537-20539 +20540-20553 +20540-20553 +20541-20542 +20544-20553 +20544-20545 +20546-20547 +20548-20553 +20551-20553 +20552-20553 +20554-20566 +20554-20566 +20555-20566 +20555-20558 +20556-20558 +20557-20558 +20561-20562 +20563-20566 +20564-20566 +20565-20566 +20567-20623 +20567-20623 +20568-20623 +20569-20623 +20569-20574 +20571-20574 +20572-20574 +20573-20574 +20575-20580 +20576-20580 +20576-20578 +20577-20578 +20581-20623 +20581-20623 +20582-20623 +20582-20583 +20584-20623 +20584-20598 +20585-20589 +20586-20589 +20587-20589 +20588-20589 +20592-20598 +20593-20598 +20593-20594 +20595-20598 +20596-20598 +20597-20598 +20599-20623 +20600-20623 +20600-20601 +20601 +20602 +20603-20608 +20604-20608 +20606-20608 +20607-20608 +20609-20623 +20610-20623 +20611-20612 +20613-20623 +20614-20623 +20615-20619 +20615-20618 +20616-20618 +20617-20618 +20620-20623 +20621-20623 +20622-20623 +20624-20634 +20624-20634 +20625-20634 +20625-20627 +20625-20626 +20630-20631 +20632-20634 +20633-20634 +20634 +20635-20648 +20635-20648 +20636-20648 +20636-20640 +20636-20637 +20641-20648 +20642-20648 +20642-20643 +20644-20646 +20645-20646 +20649-20661 +20649-20661 +20650-20661 +20650-20657 +20652-20655 +20653-20655 +20654-20655 +20656-20657 +20658-20661 +20659-20661 +20660-20661 +20662-20678 +20662-20678 +20663-20678 +20663-20672 +20663-20665 +20664-20665 +20668-20672 +20669-20672 +20670-20672 +20671-20672 +20673-20678 +20674-20678 +20674-20675 +20677-20678 +20679-20695 +20679-20695 +20680-20695 +20680-20683 +20681-20683 +20681-20682 +20684-20695 +20685-20695 +20685-20686 +20688-20690 +20689-20690 +20691-20695 +20692-20695 +20694-20695 +20696-20705 +20696-20705 +20697-20705 +20699-20701 +20700-20701 +20702-20705 +20702-20704 +20703-20704 +20706-20717 +20706-20717 +20707-20717 +20707-20708 +20709-20717 +20710-20717 +20712-20717 +20712 +20714-20717 +20716-20717 +20717 +20718-20728 +20718-20728 +20719-20728 +20719-20722 +20719 +20721-20722 +20723-20728 +20724-20728 +20725-20726 +20727-20728 +20727 +20728 +20729-20736 +20729-20736 +20730-20736 +20730-20732 +20731-20732 +20733-20736 +20734-20736 +20735-20736 +20737-20747 +20737-20747 +20738-20747 +20740-20747 +20740-20743 +20744-20747 +20748-20768 +20748-20768 +20749-20768 +20749-20751 +20750-20751 +20752-20768 +20753-20768 +20754-20755 +20756-20768 +20757-20768 +20760-20768 +20761-20768 +20761-20766 +20761-20763 +20762-20763 +20764-20766 +20765-20766 +20769-20780 +20769-20780 +20770-20780 +20771-20775 +20772-20775 +20773-20775 +20774-20775 +20776-20780 +20777-20780 +20778-20780 +20779-20780 +20781-20803 +20781-20803 +20782-20803 +20782-20786 +20784-20786 +20785-20786 +20787-20803 +20790-20792 +20791-20792 +20793-20803 +20793-20796 +20794-20796 +20795-20796 +20797-20803 +20798-20799 +20801-20803 +20802-20803 +20804-20834 +20804-20834 +20805-20834 +20805-20829 +20805-20806 +20810-20811 +20812-20829 +20813-20829 +20814-20829 +20814-20819 +20816-20818 +20817-20818 +20820-20829 +20821-20829 +20821-20825 +20822-20823 +20824-20825 +20826-20829 +20827-20829 +20827-20828 +20830-20834 +20831-20834 +20833-20834 +20835-20853 +20835-20853 +20836-20853 +20836-20849 +20836-20837 +20838-20840 +20839-20840 +20841-20847 +20841-20843 +20842-20843 +20844-20847 +20845-20847 +20846-20847 +20848-20849 +20850-20853 +20851-20853 +20854-20896 +20854-20896 +20855-20896 +20855-20863 +20855-20860 +20855-20859 +20856-20857 +20858-20859 +20861-20863 +20862-20863 +20864-20896 +20865-20896 +20865-20885 +20865-20867 +20866-20867 +20869-20885 +20869-20878 +20870-20872 +20871-20872 +20873-20878 +20873-20878 +20874-20878 +20875-20878 +20875-20876 +20877-20878 +20879-20885 +20881-20882 +20883-20885 +20886-20896 +20887-20896 +20889-20896 +20889-20892 +20889-20892 +20890-20892 +20891-20892 +20894-20896 +20895-20896 +20897-20902 +20897-20902 +20898-20902 +20900-20902 +20901-20902 +20903-20911 +20903-20911 +20904-20911 +20906-20911 +20907-20908 +20909-20911 +20910-20911 +20912-20922 +20912-20922 +20913-20922 +20916-20922 +20917-20922 +20920-20922 +20921-20922 +20923-20932 +20923-20932 +20924-20932 +20926-20928 +20927-20928 +20929-20932 +20929-20931 +20929-20930 +20932 +20933-20945 +20933-20945 +20934-20945 +20936-20945 +20937-20945 +20937-20941 +20939-20941 +20940-20941 +20942-20945 +20943-20945 +20943-20944 +20946-20948 +20946-20948 +20947-20948 +20949-20975 +20949-20975 +20950-20975 +20950-20958 +20950 +20951-20954 +20952-20954 +20953-20954 +20956-20958 +20957-20958 +20959-20975 +20960-20975 +20960-20970 +20961-20962 +20963-20965 +20964-20965 +20966-20968 +20967-20968 +20969-20970 +20971-20975 +20972-20975 +20973-20975 +20974-20975 +20976-20989 +20976-20989 +20977-20989 +20977-20980 +20977-20979 +20978-20979 +20981-20989 +20982-20989 +20983-20989 +20983-20985 +20984-20985 +20986-20989 +20987-20989 +20988-20989 +20990-20996 +20990-20996 +20991-20996 +20992-20996 +20992 +20993-20996 +20995-20996 +20996 +20997-21015 +20997-21015 +20998-21015 +20998-21001 +20999-21001 +21000-21001 +21002-21015 +21003-21015 +21003-21013 +21004-21013 +21004-21009 +21004-21005 +21005 +21006-21009 +21007-21009 +21008-21009 +21011-21013 +21011 +21012-21013 +21013 +21014-21015 +21015 +21016-21028 +21016-21028 +21017-21028 +21017-21024 +21019-21020 +21020 +21021-21024 +21023-21024 +21024 +21025-21028 +21026-21028 +21026-21028 +21027-21028 +21029-21037 +21029-21037 +21030-21037 +21031-21037 +21032-21037 +21034-21037 +21035-21037 +21036-21037 +21038-21051 +21038-21051 +21039-21051 +21039-21043 +21041-21043 +21042-21043 +21044-21051 +21046-21047 +21047 +21048-21051 +21049-21051 +21049-21050 +21052-21077 +21052-21077 +21053-21077 +21054-21055 +21057-21077 +21059-21077 +21059-21066 +21060-21063 +21061-21063 +21062-21063 +21064-21066 +21065-21066 +21067-21077 +21068-21077 +21070-21077 +21070-21074 +21071-21072 +21075-21077 +21076-21077 +21078-21093 +21078-21093 +21079-21093 +21079-21090 +21079 +21080-21090 +21081-21090 +21082-21090 +21083-21085 +21084-21085 +21086-21090 +21089-21090 +21091-21093 +21092-21093 +21094-21114 +21094-21114 +21095-21114 +21095-21109 +21095-21104 +21096-21097 +21098-21100 +21099-21100 +21102-21104 +21103-21104 +21105-21109 +21106-21107 +21108-21109 +21110-21114 +21111-21114 +21112-21114 +21113-21114 +21115-21150 +21115-21150 +21116-21150 +21116-21121 +21117-21121 +21117-21119 +21118-21119 +21120-21121 +21122-21150 +21123-21150 +21123-21129 +21123-21124 +21126-21129 +21127-21129 +21128-21129 +21130-21150 +21131-21150 +21134-21150 +21135-21150 +21136-21150 +21136-21138 +21137-21138 +21141-21150 +21142-21150 +21142 +21144-21145 +21147-21150 +21148-21150 +21148 +21149-21150 +21150 +21151-21154 +21151-21154 +21152-21154 +21153-21154 +21155-21162 +21155-21162 +21156-21162 +21156-21159 +21158-21159 +21160-21162 +21161-21162 +21163-21205 +21163-21205 +21164-21205 +21164-21191 +21165-21191 +21165-21170 +21166-21168 +21167-21168 +21169-21170 +21171-21176 +21172-21176 +21174-21176 +21175-21176 +21177-21182 +21178-21182 +21179-21182 +21180-21182 +21180-21181 +21183-21191 +21184-21191 +21184-21185 +21186-21191 +21187-21191 +21188-21190 +21189-21190 +21192-21196 +21193-21196 +21194-21196 +21195-21196 +21197-21201 +21198-21200 +21199-21200 +21203-21205 +21204-21205 +21206-21215 +21206-21215 +21207-21215 +21208-21215 +21209-21215 +21209-21214 +21210-21214 +21211-21214 +21212-21214 +21213-21214 +21216-21232 +21216-21232 +21217-21232 +21217-21223 +21219-21223 +21220-21223 +21221-21223 +21222-21223 +21224-21232 +21225-21232 +21226-21227 +21228-21232 +21229-21232 +21230-21232 +21231-21232 +21233-21254 +21233-21254 +21234-21254 +21235-21236 +21237-21244 +21238-21239 +21240-21244 +21240-21243 +21241-21243 +21241-21242 +21245-21248 +21246-21248 +21247-21248 +21250-21254 +21252-21254 +21253-21254 +21255-21270 +21255-21270 +21256-21270 +21258-21260 +21259-21260 +21261-21270 +21261-21265 +21262-21265 +21262-21263 +21266-21270 +21267-21270 +21268-21270 +21271-21276 +21271-21276 +21272-21276 +21273-21276 +21274-21276 +21275-21276 +21277-21296 +21277-21296 +21278-21296 +21278-21287 +21278-21279 +21280-21282 +21280-21282 +21281-21282 +21283-21286 +21284-21286 +21288-21290 +21289-21290 +21291-21296 +21292-21296 +21294-21296 +21295-21296 +21297-21306 +21297-21306 +21298-21306 +21301-21306 +21301 +21302-21304 +21303-21304 +21307-21316 +21307-21316 +21307-21309 +21308-21309 +21310-21316 +21311-21316 +21313-21316 +21314-21316 +21315-21316 +21317-21334 +21317-21334 +21317-21319 +21321-21323 +21322-21323 +21324-21334 +21325-21334 +21326-21334 +21326-21329 +21326-21328 +21327-21328 +21330-21334 +21333-21334 +21335-21348 +21335-21348 +21336-21348 +21336-21337 +21338-21341 +21339-21341 +21339-21340 +21343-21344 +21345-21348 +21345-21346 +21347-21348 +21349-21366 +21349-21366 +21350-21366 +21352-21355 +21353-21354 +21356-21366 +21357-21366 +21358-21366 +21358-21359 +21360-21361 +21362-21366 +21363-21366 +21364-21366 +21365-21366 +21367-21395 +21367-21395 +21368-21395 +21368-21373 +21369-21373 +21370-21373 +21371-21373 +21372-21373 +21374-21395 +21375-21395 +21375-21381 +21376-21381 +21377-21381 +21378-21381 +21378-21380 +21379-21380 +21382-21395 +21383-21395 +21383 +21386-21395 +21386-21389 +21387-21389 +21388-21389 +21390-21395 +21390-21393 +21390-21391 +21394-21395 +21395 +21396-21398 +21396-21398 +21397-21398 +21399-21420 +21399-21420 +21400-21420 +21400-21414 +21401-21402 +21404-21414 +21404-21407 +21405-21407 +21406-21407 +21408-21410 +21409-21410 +21411-21414 +21412-21414 +21413-21414 +21415-21420 +21416-21420 +21417-21420 +21419-21420 +21421-21438 +21421-21438 +21422-21438 +21422-21426 +21423-21426 +21424-21426 +21425-21426 +21429-21438 +21429-21430 +21429 +21432-21433 +21434-21438 +21434-21435 +21434-21435 +21438 +21439-21449 +21439-21449 +21440-21449 +21440-21445 +21440-21443 +21442-21443 +21444-21445 +21445 +21446-21449 +21447-21449 +21448-21449 +21450-21454 +21450-21454 +21451-21454 +21453-21454 +21455-21467 +21455-21467 +21456-21467 +21456-21462 +21459-21462 +21460-21462 +21463-21467 +21464-21467 +21465-21467 +21467 +21468-21482 +21468-21482 +21469-21482 +21469-21476 +21469-21470 +21471-21476 +21472-21476 +21473-21476 +21474-21476 +21475-21476 +21477-21482 +21478-21482 +21480-21482 +21481-21482 +21483-21490 +21483-21490 +21484-21490 +21484-21485 +21486-21490 +21487-21490 +21488-21490 +21489-21490 +21491-21515 +21491-21515 +21492-21515 +21492-21493 +21494 +21496-21515 +21497-21515 +21497-21499 +21500-21506 +21501-21506 +21502-21506 +21502-21503 +21504-21506 +21505-21506 +21507-21515 +21508-21515 +21508-21510 +21508-21509 +21511-21514 +21512-21514 +21513-21514 +21516-21533 +21516-21533 +21517-21533 +21519-21533 +21519-21520 +21521-21533 +21522-21533 +21522-21524 +21523-21524 +21525-21533 +21526-21533 +21527-21533 +21528-21529 +21530-21531 +21532-21533 +21534-21542 +21534-21542 +21535-21542 +21536-21542 +21537-21539 +21538-21539 +21541-21542 +21543-21546 +21543-21546 +21544-21546 +21545-21546 +21547-21572 +21547-21572 +21548-21572 +21550-21551 +21552-21572 +21553-21572 +21557-21572 +21558-21572 +21559-21572 +21559-21562 +21560-21562 +21561-21562 +21563-21567 +21564-21567 +21565-21567 +21566-21567 +21568-21572 +21569-21572 +21570-21572 +21571-21572 +21573-21587 +21573-21587 +21574-21587 +21576-21579 +21578-21579 +21580-21587 +21581-21587 +21582-21586 +21582-21583 +21585-21586 +21588-21593 +21588-21593 +21589-21593 +21590-21593 +21591-21593 +21592-21593 +21594-21599 +21594-21599 +21595-21599 +21596-21597 +21599 +21600-21617 +21600-21617 +21601-21617 +21601-21603 +21602-21603 +21604-21609 +21605-21609 +21606-21609 +21608-21609 +21610-21617 +21611-21617 +21613-21617 +21614-21617 +21615-21617 +21616-21617 +21618-21646 +21618-21646 +21619-21646 +21621-21646 +21622-21646 +21622-21629 +21624-21625 +21626-21629 +21627-21629 +21630-21646 +21630-21638 +21630-21631 +21632-21633 +21634-21638 +21635-21637 +21636-21637 +21639-21646 +21640-21646 +21640-21641 +21642-21646 +21643-21646 +21645-21646 +21647-21683 +21647-21683 +21648-21683 +21650-21683 +21650-21660 +21650-21654 +21651-21654 +21653-21654 +21655-21660 +21657-21660 +21658-21660 +21659-21660 +21661-21683 +21662-21683 +21662-21670 +21663-21670 +21663-21667 +21663-21664 +21668-21670 +21669-21670 +21671-21683 +21671-21672 +21674-21680 +21674-21675 +21676-21680 +21677-21680 +21678-21680 +21679-21680 +21681-21683 +21682-21683 +21684-21699 +21684-21699 +21685-21699 +21685-21688 +21685 +21687-21688 +21688 +21689-21692 +21690-21692 +21690-21691 +21693-21699 +21694-21699 +21694-21697 +21696-21697 +21698-21699 +21699 +21700-21727 +21700-21727 +21701-21727 +21701-21710 +21702-21704 +21702-21703 +21705-21710 +21706-21710 +21708-21710 +21709-21710 +21711-21727 +21712-21727 +21713-21727 +21714-21727 +21714-21719 +21714-21716 +21715-21716 +21716 +21718-21719 +21720-21727 +21721-21727 +21721-21722 +21724-21725 +21726-21727 +21728-21733 +21728-21733 +21729-21733 +21731-21733 +21732-21733 +21734-21742 +21734-21742 +21735-21742 +21737-21742 +21738-21742 +21739-21742 +21740-21742 +21740-21742 +21741-21742 +21743-21753 +21743-21753 +21744-21753 +21744 +21745-21746 +21748-21753 +21748-21751 +21748-21751 +21748-21750 +21754-21777 +21754-21777 +21755-21777 +21755-21761 +21755-21757 +21756-21757 +21758 +21760-21761 +21762-21777 +21763-21777 +21765-21766 +21767-21774 +21768-21774 +21769-21774 +21770-21774 +21771-21774 +21772-21774 +21773-21774 +21775-21777 +21776-21777 +21778-21793 +21778-21793 +21779-21793 +21780-21781 +21782-21783 +21784-21793 +21785-21793 +21788-21793 +21789-21793 +21790-21793 +21791-21793 +21792-21793 +21794-21805 +21794-21805 +21795-21805 +21795-21802 +21795-21798 +21795-21796 +21799-21802 +21800-21802 +21801-21802 +21803-21805 +21804-21805 +21806-21829 +21806-21829 +21807-21829 +21807-21820 +21807-21817 +21807-21808 +21810-21811 +21812-21817 +21814-21817 +21815-21817 +21816-21817 +21818-21820 +21819-21820 +21821-21829 +21822-21829 +21822-21825 +21822-21823 +21826-21829 +21827-21829 +21830-21866 +21830-21866 +21831-21866 +21831-21860 +21831-21851 +21832-21833 +21834-21851 +21835-21851 +21836-21838 +21837-21838 +21841-21851 +21841-21843 +21842-21843 +21844-21846 +21845-21846 +21847-21851 +21848-21851 +21849-21851 +21850-21851 +21852-21860 +21853-21860 +21853-21858 +21854-21858 +21855-21858 +21856-21858 +21857-21858 +21859-21860 +21860 +21862-21866 +21862-21863 +21864-21866 +21865-21866 +21866 +21867-21880 +21867-21880 +21868-21880 +21868-21869 +21871-21872 +21873-21880 +21873-21877 +21875-21877 +21876-21877 +21878-21880 +21879-21880 +21881-21894 +21881-21894 +21882-21894 +21884-21894 +21885-21894 +21885-21887 +21886-21887 +21888-21894 +21890-21894 +21891-21894 +21892-21894 +21893-21894 +21895-21902 +21895-21902 +21896-21902 +21896 +21898-21900 +21899-21900 +21901-21902 +21903-21910 +21903-21910 +21904-21910 +21906-21910 +21906-21910 +21907-21910 +21908-21910 +21909-21910 +21910 +21911-21932 +21911-21932 +21912-21932 +21912-21918 +21914-21915 +21916-21918 +21917-21918 +21920-21932 +21921-21932 +21922-21932 +21923-21932 +21926-21927 +21928-21932 +21929-21932 +21930-21932 +21931-21932 +21933-21947 +21933-21947 +21934-21947 +21934-21935 +21936-21937 +21938-21943 +21939-21943 +21939-21940 +21941-21943 +21942-21943 +21943 +21946-21947 +21948-21958 +21948-21958 +21949-21958 +21950-21951 +21952-21953 +21955-21958 +21956-21958 +21957-21958 +21959-21985 +21959-21985 +21960-21985 +21960-21965 +21960 +21963-21965 +21964-21965 +21966-21985 +21967-21985 +21967-21977 +21967-21972 +21968-21970 +21969-21970 +21971-21972 +21973-21977 +21974-21977 +21976-21977 +21978-21985 +21979-21985 +21979-21980 +21983-21985 +21984-21985 +21986-22001 +21986-22001 +21987-22001 +21987-21991 +21987 +21988-21990 +21989-21990 +21992-21996 +21993-21996 +21994-21996 +21995-21996 +21997-22001 +21998-22001 +22000-22001 +22002-22017 +22002-22017 +22003-22017 +22003-22008 +22004-22005 +22006-22008 +22007-22008 +22009-22017 +22010-22017 +22012-22017 +22013-22017 +22013-22014 +22015-22017 +22016-22017 +22018-22043 +22018-22043 +22019-22043 +22019-22031 +22021-22031 +22021-22028 +22022-22023 +22024-22025 +22026-22028 +22027-22028 +22029-22031 +22030-22031 +22032-22043 +22033-22043 +22033-22039 +22034-22038 +22034-22035 +22035 +22036-22038 +22037-22038 +22038 +22040-22043 +22041-22043 +22042 +22044-22053 +22044-22053 +22045-22053 +22046-22048 +22047-22048 +22049-22051 +22050-22051 +22052-22053 +22054-22071 +22054-22071 +22055-22071 +22055-22060 +22055-22057 +22056-22057 +22058-22060 +22059-22060 +22061-22071 +22062-22071 +22062-22068 +22063-22066 +22064-22066 +22065-22066 +22069-22071 +22070-22071 +22072-22092 +22072-22092 +22073-22092 +22073-22076 +22073 +22075-22076 +22077-22087 +22078-22087 +22078-22080 +22079-22080 +22081-22087 +22082-22087 +22083-22087 +22084-22087 +22085-22087 +22088-22092 +22089-22092 +22090-22092 +22093-22112 +22093-22112 +22094-22112 +22094-22097 +22098-22112 +22098 +22100-22102 +22101-22102 +22104-22112 +22105-22112 +22105-22108 +22107-22108 +22109-22112 +22110-22112 +22113-22126 +22113-22126 +22115-22126 +22116-22126 +22116-22122 +22117-22122 +22118-22122 +22119-22122 +22120-22122 +22121-22122 +22125-22126 +22127-22135 +22127-22135 +22128-22135 +22129 +22132-22135 +22135 +22136-22147 +22136-22147 +22137-22147 +22139-22147 +22139-22143 +22139 +22141-22143 +22141-22142 +22144-22147 +22145-22147 +22147 +22148-22156 +22148-22156 +22149-22156 +22152-22156 +22152-22154 +22152-22153 +22155 +22156 +22157-22163 +22157-22163 +22158-22163 +22158 +22160-22163 +22160-22163 +22161-22163 +22162-22163 +22164-22174 +22164-22174 +22165-22174 +22167-22174 +22169-22170 +22171-22174 +22172-22174 +22173-22174 +22175-22183 +22175-22183 +22176-22183 +22177-22178 +22179-22183 +22179-22180 +22181-22183 +22182-22183 +22184-22214 +22184-22214 +22185-22214 +22185-22208 +22185-22197 +22185-22192 +22186-22192 +22186-22188 +22187-22188 +22189-22192 +22190-22192 +22191-22192 +22193-22196 +22194-22196 +22195-22196 +22198-22201 +22199-22201 +22200-22201 +22202-22208 +22203-22208 +22203-22205 +22204-22205 +22206-22208 +22207-22208 +22209-22214 +22210-22214 +22210-22212 +22211-22212 +22215-22219 +22215-22219 +22216-22219 +22216-22217 +22218-22219 +22219 +22220-22229 +22220-22229 +22221-22229 +22221-22225 +22222-22225 +22223-22225 +22223-22224 +22226-22229 +22227-22229 +22227-22229 +22228-22229 +22230-22237 +22230-22237 +22231-22237 +22232-22235 +22233-22235 +22234-22235 +22236-22237 +22238-22259 +22238-22259 +22239-22259 +22241-22259 +22241-22247 +22241-22243 +22242-22243 +22245-22247 +22246-22247 +22248-22259 +22249-22259 +22250-22252 +22251-22252 +22253-22254 +22255-22259 +22256-22259 +22258-22259 +22260-22267 +22260-22267 +22261-22267 +22261-22262 +22264-22266 +22265-22266 +22267 +22268-22283 +22268-22283 +22269-22283 +22269-22270 +22271-22283 +22271-22277 +22272-22273 +22274-22277 +22275-22277 +22276-22277 +22278-22283 +22279-22283 +22281-22283 +22282-22283 +22284-22308 +22284-22308 +22285-22308 +22285-22296 +22285-22290 +22286-22290 +22288-22290 +22289-22290 +22290 +22291-22296 +22292-22296 +22293-22294 +22297-22301 +22298-22301 +22299-22301 +22300-22301 +22303-22304 +22305-22308 +22306-22308 +22307-22308 +22309-22312 +22309-22312 +22310-22312 +22311-22312 +22313-22332 +22313-22332 +22314-22332 +22314-22326 +22314-22324 +22315-22320 +22316-22320 +22317-22319 +22318-22319 +22322-22324 +22323-22324 +22325-22326 +22326 +22327-22332 +22328-22332 +22328-22330 +22331-22332 +22332 +22333-22346 +22333-22346 +22334-22346 +22334-22338 +22337-22338 +22339-22346 +22340-22346 +22342-22346 +22342-22344 +22342 +22343-22344 +22345-22346 +22347-22357 +22347-22357 +22348-22357 +22348-22353 +22349-22350 +22351-22353 +22352-22353 +22354-22357 +22355-22357 +22356-22357 +22358-22376 +22358-22376 +22359-22376 +22359-22364 +22360-22361 +22362-22363 +22365-22376 +22366-22376 +22367-22370 +22368-22370 +22369-22370 +22372-22376 +22372-22373 +22374-22376 +22375-22376 +22377-22386 +22377-22386 +22378-22386 +22378-22384 +22378-22381 +22379-22381 +22380-22381 +22383-22384 +22385-22386 +22386 +22387-22413 +22387-22413 +22388-22413 +22388-22392 +22390-22392 +22391-22392 +22393-22413 +22393-22400 +22393-22395 +22397-22400 +22397-22399 +22398-22399 +22401-22413 +22402-22413 +22403-22413 +22403-22405 +22404-22405 +22406-22408 +22407-22408 +22410-22413 +22411-22413 +22411 +22412-22413 +22413 +22414-22442 +22414-22442 +22415-22442 +22415-22431 +22415-22425 +22416-22425 +22417-22425 +22418-22425 +22418-22419 +22420-22422 +22421-22422 +22423-22425 +22424-22425 +22426-22428 +22427-22428 +22430-22431 +22431 +22432-22442 +22433-22442 +22435-22442 +22436-22442 +22437-22441 +22438-22441 +22439-22441 +22440-22441 +22443-22448 +22443-22448 +22444-22448 +22444-22447 +22445-22447 +22449-22476 +22449-22476 +22450-22476 +22451-22452 +22453-22458 +22453-22454 +22455-22458 +22456-22458 +22457-22458 +22459-22476 +22459-22461 +22460-22461 +22462-22476 +22463-22476 +22464-22467 +22465-22467 +22466-22467 +22468-22476 +22469-22476 +22469-22473 +22469-22470 +22471-22473 +22475-22476 +22477-22517 +22477-22517 +22478-22517 +22478-22496 +22478-22483 +22478-22479 +22480-22483 +22481-22483 +22482-22483 +22484-22489 +22485-22489 +22488-22489 +22492-22496 +22493-22496 +22494-22496 +22495-22496 +22497-22504 +22498-22504 +22498-22499 +22500-22502 +22501-22502 +22505-22517 +22506-22517 +22509-22517 +22511-22517 +22512-22517 +22513-22517 +22514-22515 +22516-22517 +22518-22543 +22518-22543 +22519-22543 +22521-22525 +22521-22522 +22523-22525 +22524-22525 +22526-22543 +22526-22537 +22526-22527 +22530-22532 +22531-22532 +22533-22537 +22534-22537 +22535-22537 +22536-22537 +22538-22543 +22539-22543 +22539-22540 +22542-22543 +22544-22580 +22544-22580 +22545-22580 +22548-22580 +22551-22554 +22552-22554 +22553-22554 +22555-22580 +22556-22580 +22557-22580 +22558-22580 +22558-22572 +22558-22564 +22558-22560 +22559-22560 +22561-22562 +22565-22572 +22566-22572 +22566-22568 +22567-22568 +22571-22572 +22573-22580 +22574-22580 +22577-22580 +22579-22580 +22581-22590 +22581-22590 +22581-22585 +22582-22585 +22583-22585 +22584-22585 +22587-22590 +22588-22590 +22589-22590 +22591-22604 +22591-22604 +22592-22604 +22594-22604 +22596-22599 +22597-22599 +22598-22599 +22600-22604 +22601-22604 +22601-22603 +22602-22603 +22605-22623 +22605-22623 +22606-22623 +22608-22623 +22608-22615 +22609-22615 +22609-22611 +22610-22611 +22612-22615 +22613-22615 +22614-22615 +22616-22623 +22617-22623 +22617-22621 +22618-22621 +22619-22621 +22620-22621 +22624-22663 +22624-22663 +22625-22663 +22627-22663 +22627-22643 +22628-22643 +22630-22634 +22630-22631 +22632-22634 +22633-22634 +22635-22643 +22635-22638 +22636-22638 +22639-22643 +22640-22643 +22641-22642 +22644-22663 +22646-22653 +22649-22653 +22649-22650 +22651-22653 +22652-22653 +22654-22663 +22655-22658 +22656-22658 +22657-22658 +22659-22663 +22659-22661 +22660-22661 +22662-22663 +22664-22668 +22664-22668 +22665-22668 +22665-22667 +22665-22666 +22669-22703 +22669-22703 +22670-22703 +22670-22673 +22672-22673 +22676-22703 +22676-22678 +22679-22703 +22680-22703 +22681-22703 +22681-22692 +22683-22692 +22683-22688 +22683-22685 +22684-22685 +22686-22688 +22687-22688 +22689-22692 +22691-22692 +22693-22703 +22694-22703 +22694-22698 +22695-22698 +22695-22697 +22696-22697 +22700-22703 +22701-22703 +22702-22703 +22704-22718 +22704-22718 +22705-22718 +22705-22711 +22706-22711 +22707-22708 +22709-22711 +22710-22711 +22712-22718 +22714-22716 +22715-22716 +22717-22718 +22719-22760 +22719-22760 +22720-22760 +22720-22756 +22722-22756 +22722-22726 +22723-22724 +22727-22756 +22729-22756 +22730-22756 +22730-22740 +22730-22736 +22731-22736 +22732-22736 +22734-22736 +22735-22736 +22739-22740 +22741-22756 +22742-22756 +22743-22747 +22744-22747 +22745-22747 +22746-22747 +22749-22756 +22749-22751 +22749-22751 +22750-22751 +22752-22756 +22753-22756 +22753-22755 +22754-22755 +22757-22760 +22758-22760 +22759-22760 +22761-22772 +22761-22772 +22762-22772 +22763-22772 +22764-22772 +22764-22768 +22764-22768 +22765-22768 +22765-22767 +22766-22767 +22771-22772 +22773-22784 +22773-22784 +22774-22784 +22774-22779 +22775-22779 +22776-22779 +22777-22779 +22778-22779 +22780-22783 +22781-22783 +22782-22783 +22785-22807 +22785-22807 +22785-22797 +22785-22797 +22793-22794 +22798-22803 +22798-22801 +22799-22801 +22800-22801 +22804-22807 +22805-22807 +22806-22807 +22808-22815 +22808-22815 +22809-22815 +22810 +22812-22815 +22813-22815 +22814-22815 +22816-22826 +22816-22826 +22817-22826 +22817-22822 +22817-22819 +22818-22819 +22820-22821 +22823-22826 +22824-22826 +22826 +22827-22845 +22827-22845 +22828-22845 +22829-22831 +22830-22831 +22832-22839 +22833-22839 +22833-22836 +22834-22836 +22835-22836 +22838-22839 +22840 +22842-22845 +22843-22845 +22844-22845 +22846-22853 +22846-22853 +22847-22853 +22847-22850 +22847-22848 +22851-22853 +22852-22853 +22854-22864 +22854-22864 +22855-22864 +22857-22864 +22858-22864 +22858-22859 +22861-22864 +22862-22864 +22863-22864 +22865-22885 +22865-22885 +22866-22885 +22868-22885 +22868-22872 +22869-22872 +22871-22872 +22873-22885 +22874-22885 +22877-22885 +22877-22881 +22878-22881 +22879-22881 +22880-22881 +22882-22885 +22883-22885 +22883-22884 +22886-22905 +22886-22905 +22887-22905 +22887-22888 +22889-22905 +22890-22905 +22892-22905 +22892-22893 +22893 +22894-22905 +22894-22896 +22895-22896 +22897-22899 +22898-22899 +22901-22905 +22902-22905 +22903-22905 +22904-22905 +22906-22920 +22906-22920 +22907-22920 +22909-22920 +22909-22912 +22910-22912 +22911-22912 +22914-22920 +22915-22918 +22916-22918 +22917-22918 +22919-22920 +22921-22937 +22921-22937 +22922-22937 +22922-22926 +22923-22926 +22924-22926 +22925-22926 +22928-22937 +22928-22933 +22928-22929 +22931-22933 +22932-22933 +22934-22937 +22935-22937 +22935-22936 +22938-22957 +22938-22957 +22939-22957 +22939-22944 +22941-22944 +22942-22944 +22943-22944 +22946-22947 +22948-22952 +22949-22952 +22950-22952 +22951-22952 +22953-22957 +22954-22957 +22955-22957 +22956-22957 +22958-22971 +22958-22971 +22959-22971 +22959-22963 +22961-22963 +22962-22963 +22964-22971 +22965-22971 +22967-22971 +22968-22971 +22970-22971 +22972-23006 +22972-23006 +22973-23006 +22973-22987 +22973-22979 +22975-22977 +22976-22977 +22978-22979 +22981-22983 +22982-22983 +22984-22987 +22985-22987 +22986-22987 +22988-22993 +22989-22993 +22989 +22991-22993 +22992-22993 +22994-23006 +22995-23006 +22995-22999 +22995-22998 +22996-22998 +22997-22998 +23000-23006 +23001-23006 +23003-23006 +23004-23006 +23006 +23007-23022 +23007-23022 +23008-23022 +23008-23011 +23009-23011 +23010-23011 +23012-23022 +23013-23022 +23013-23019 +23015-23019 +23016-23019 +23017-23019 +23018-23019 +23020-23022 +23021-23022 +23023-23028 +23023-23028 +23024-23028 +23026-23028 +23027-23028 +23029-23036 +23029-23036 +23030-23036 +23030-23032 +23034-23035 +23037-23051 +23037-23051 +23038-23051 +23040-23051 +23041-23051 +23041-23043 +23044-23051 +23046-23051 +23046-23048 +23046-23047 +23049-23051 +23050-23051 +23052-23084 +23052-23084 +23052-23064 +23052-23059 +23052-23055 +23053-23055 +23054-23055 +23057-23058 +23060-23064 +23061-23064 +23063-23064 +23065-23084 +23065-23067 +23066-23067 +23070-23084 +23070-23073 +23071-23073 +23072-23073 +23074-23084 +23075-23084 +23075-23079 +23076-23077 +23080-23084 +23081-23084 +23083-23084 +23085-23096 +23085-23096 +23086-23096 +23086-23092 +23087-23092 +23088-23089 +23090-23092 +23091-23092 +23094-23096 +23095-23096 +23097-23102 +23097-23102 +23098-23102 +23098-23099 +23100-23101 +23103-23118 +23103-23118 +23104-23118 +23106-23108 +23107-23108 +23109-23118 +23110-23118 +23113-23118 +23117-23118 +23119-23124 +23119-23124 +23120-23124 +23122-23124 +23122-23123 +23125-23128 +23125-23128 +23126-23128 +23128 +23129-23136 +23129-23136 +23130-23136 +23131-23132 +23133-23136 +23134-23136 +23135-23136 +23137-23154 +23137-23154 +23138-23154 +23138-23150 +23138-23143 +23138-23141 +23139-23141 +23140-23141 +23142 +23144-23150 +23145-23150 +23145-23148 +23146-23148 +23147-23148 +23149-23150 +23150 +23151-23154 +23152-23154 +23153-23154 +23155-23158 +23155-23158 +23156-23158 +23157-23158 +23159-23165 +23159-23165 +23160-23165 +23160-23161 +23163-23165 +23163-23164 +23166-23175 +23166-23175 +23167-23175 +23167-23169 +23167 +23168-23169 +23169 +23170-23175 +23171-23175 +23172-23175 +23172-23173 +23174-23175 +23176-23179 +23176-23179 +23177-23179 +23178-23179 +23180-23182 +23180-23182 +23181-23182 +23183-23197 +23183-23197 +23184-23197 +23185-23192 +23186-23188 +23187-23188 +23189-23192 +23190-23192 +23191-23192 +23194-23197 +23195-23197 +23196-23197 +23198-23214 +23198-23214 +23199-23214 +23199-23201 +23200-23201 +23202-23214 +23203-23214 +23204-23205 +23206-23214 +23207-23208 +23210-23212 +23211-23212 +23213-23214 +23215-23226 +23215-23226 +23216-23226 +23216-23219 +23217-23219 +23218-23219 +23221-23226 +23222-23224 +23222-23223 +23227-23235 +23227-23235 +23227-23229 +23228-23229 +23230-23235 +23231-23235 +23232-23234 +23232-23233 +23236-23244 +23236-23244 +23237-23244 +23237-23238 +23240 +23242-23244 +23243-23244 +23245-23260 +23245-23260 +23246-23260 +23246-23248 +23247-23248 +23249-23260 +23250-23260 +23250-23253 +23251-23253 +23252-23253 +23256-23257 +23258-23260 +23259-23260 +23261-23275 +23261-23275 +23262-23275 +23264-23275 +23265-23275 +23266-23275 +23267-23275 +23268-23275 +23268-23271 +23269-23271 +23270-23271 +23272-23275 +23273-23275 +23274-23275 +23276-23283 +23276-23283 +23277-23283 +23278-23279 +23280-23283 +23281-23283 +23284-23293 +23284-23293 +23285-23293 +23285 +23288-23293 +23290-23293 +23291-23293 +23294-23297 +23294-23297 +23295-23297 +23296-23297 +23298-23302 +23298-23302 +23298 +23300-23302 +23301-23302 +23303-23311 +23303-23311 +23303-23306 +23303-23304 +23307-23311 +23308-23311 +23308-23309 +23312-23327 +23312-23327 +23313-23327 +23315-23327 +23315-23322 +23316-23322 +23316-23318 +23317-23318 +23320-23322 +23321-23322 +23323-23326 +23324-23326 +23324-23325 +23328-23330 +23328-23330 +23330 +23331-23341 +23331-23341 +23331-23336 +23332-23336 +23332-23333 +23334-23336 +23335-23336 +23337-23340 +23337-23339 +23337-23338 +23342-23344 +23342-23344 +23343-23344 +23344 +23345-23349 +23345-23349 +23346-23349 +23348-23349 +23350-23353 +23350-23353 +23351-23353 +23352-23353 +23354-23363 +23354-23363 +23355-23363 +23355-23357 +23358-23363 +23359-23363 +23361-23363 +23362-23363 +23364-23389 +23364-23389 +23365-23389 +23365-23374 +23365-23369 +23366-23369 +23367-23369 +23368-23369 +23372-23374 +23373-23374 +23375-23389 +23376-23389 +23376-23380 +23377-23380 +23378-23380 +23379-23380 +23381-23384 +23382-23383 +23387-23389 +23388-23389 +23390-23400 +23390-23400 +23391-23400 +23391 +23393-23400 +23393-23395 +23394-23395 +23396-23400 +23397-23400 +23397-23399 +23397-23398 +23401-23417 +23401-23417 +23401-23409 +23404-23405 +23406-23409 +23407-23409 +23408-23409 +23410-23417 +23411-23417 +23411 +23412-23413 +23413 +23414-23417 +23415-23417 +23418-23429 +23418-23429 +23419-23429 +23421-23423 +23422-23423 +23424-23429 +23425-23429 +23426-23428 +23427-23428 +23430-23443 +23430-23443 +23431-23443 +23432-23437 +23432-23433 +23434-23437 +23435-23437 +23436-23437 +23438-23443 +23439-23443 +23440-23443 +23441-23443 +23442-23443 +23444-23459 +23444-23459 +23445-23459 +23445-23447 +23446-23447 +23449-23451 +23450-23451 +23452-23459 +23454-23459 +23454-23456 +23458-23459 +23460-23477 +23460-23477 +23461-23477 +23464-23477 +23465-23477 +23466-23477 +23466-23468 +23466-23468 +23467-23468 +23469-23477 +23470-23477 +23470-23471 +23472-23477 +23473-23477 +23474-23477 +23475-23477 +23475-23477 +23476-23477 +23478-23487 +23478-23487 +23479-23487 +23482-23487 +23483-23487 +23484-23486 +23488-23496 +23488-23496 +23488 +23489-23490 +23493-23496 +23495-23496 +23497-23504 +23497-23504 +23498-23504 +23500-23504 +23501-23504 +23503-23504 +23505-23534 +23505-23534 +23506-23534 +23507-23534 +23509-23534 +23510-23534 +23511-23534 +23511-23516 +23511-23514 +23512-23514 +23513-23514 +23517-23529 +23518-23529 +23518-23527 +23519-23527 +23520-23527 +23520-23521 +23522-23524 +23523-23524 +23525-23527 +23526-23527 +23528-23529 +23529 +23530-23534 +23531-23534 +23531-23533 +23532-23533 +23535-23539 +23535-23539 +23536-23539 +23537-23538 +23540-23547 +23540-23547 +23541-23547 +23541-23542 +23543-23544 +23546-23547 +23548-23573 +23548-23573 +23549-23573 +23549-23557 +23550-23555 +23550 +23551-23555 +23552-23555 +23553-23555 +23554-23555 +23558-23573 +23559-23573 +23560-23573 +23560-23563 +23561-23562 +23563 +23564-23573 +23565-23573 +23566-23569 +23567-23569 +23568-23569 +23571-23573 +23571-23573 +23572-23573 +23574-23599 +23574-23599 +23575-23599 +23575-23581 +23576-23577 +23578-23581 +23579-23581 +23580-23581 +23584-23599 +23584-23589 +23585-23589 +23587-23589 +23587-23588 +23590-23599 +23590-23591 +23592-23596 +23593-23596 +23594-23596 +23595-23596 +23597-23599 +23598-23599 +23600-23609 +23600-23609 +23601-23609 +23601-23607 +23602-23607 +23604-23607 +23604-23606 +23605-23606 +23610-23623 +23610-23623 +23611-23623 +23611-23621 +23612-23621 +23614-23616 +23615-23616 +23617-23621 +23618-23621 +23619-23621 +23620-23621 +23624-23636 +23624-23636 +23625-23636 +23628-23636 +23628-23631 +23629-23631 +23630-23631 +23632-23636 +23633-23636 +23634-23636 +23635-23636 +23637-23644 +23637-23644 +23638-23644 +23641-23644 +23642-23644 +23643-23644 +23645-23681 +23645-23681 +23646-23681 +23646-23661 +23647-23661 +23649-23653 +23650-23653 +23651-23653 +23652-23653 +23654-23661 +23655-23661 +23655-23657 +23655-23656 +23658-23661 +23658-23659 +23660-23661 +23662-23681 +23662-23668 +23662-23666 +23663-23666 +23664-23666 +23665-23666 +23669-23681 +23670-23681 +23671-23676 +23672-23676 +23673-23676 +23674-23676 +23675-23676 +23677-23681 +23678-23681 +23679-23681 +23680-23681 +23682-23708 +23682-23708 +23683-23708 +23685-23708 +23686-23687 +23688-23708 +23689-23708 +23690-23708 +23690-23693 +23691-23693 +23692-23693 +23694-23708 +23694-23698 +23695-23696 +23700-23708 +23701-23708 +23702-23708 +23702-23705 +23703-23705 +23704-23705 +23707-23708 +23709-23731 +23709-23731 +23710-23731 +23710-23722 +23710-23712 +23711-23712 +23714-23715 +23716-23722 +23716-23717 +23718-23720 +23719-23720 +23721-23722 +23723-23731 +23724-23731 +23726-23728 +23727-23728 +23729-23730 +23732-23752 +23732-23752 +23733-23752 +23733-23735 +23734-23735 +23736-23752 +23737-23752 +23737-23739 +23738-23739 +23741-23743 +23741 +23742-23743 +23744-23752 +23745-23748 +23746-23748 +23747-23748 +23751-23752 +23753-23763 +23753-23763 +23754-23763 +23754-23758 +23757-23758 +23759-23763 +23760-23763 +23760-23761 +23762-23763 +23764-23788 +23764-23788 +23765-23788 +23765 +23766-23767 +23769-23770 +23771-23788 +23771 +23772-23776 +23774-23776 +23777-23788 +23778-23788 +23778-23780 +23779-23780 +23781-23788 +23781-23782 +23783-23785 +23784-23785 +23786-23788 +23787-23788 +23789-23796 +23789-23796 +23790-23796 +23792-23793 +23794-23796 +23795-23796 +23797-23816 +23797-23816 +23798-23816 +23798-23801 +23800-23801 +23802-23816 +23803-23816 +23805-23807 +23806-23807 +23808-23816 +23808-23814 +23810-23814 +23810-23812 +23811-23812 +23813-23814 +23815-23816 +23817-23828 +23817-23828 +23818-23828 +23818-23822 +23819 +23823-23828 +23824-23828 +23824-23825 +23827-23828 +23829-23851 +23829-23851 +23830-23851 +23830-23834 +23832-23834 +23833-23834 +23835-23851 +23837-23851 +23838-23851 +23839-23840 +23842-23851 +23843-23851 +23844-23851 +23845-23851 +23845-23848 +23846-23848 +23847-23848 +23849-23850 +23852-23864 +23852-23864 +23853-23864 +23853-23854 +23856-23864 +23856-23857 +23859-23864 +23861-23864 +23862-23864 +23862-23863 +23865-23877 +23865-23877 +23866-23877 +23868-23877 +23869-23877 +23871-23872 +23873-23877 +23874-23877 +23875-23877 +23878-23900 +23878-23900 +23879-23900 +23882-23900 +23882-23887 +23883-23887 +23884-23885 +23888-23900 +23889-23900 +23891-23895 +23892-23895 +23893-23895 +23894-23895 +23896-23900 +23897-23900 +23897-23898 +23899-23900 +23900 +23901-23916 +23901-23916 +23902-23916 +23904-23916 +23905-23916 +23905-23907 +23905-23906 +23908-23916 +23909-23916 +23909-23912 +23911-23912 +23913-23916 +23914-23916 +23915-23916 +23917-23931 +23917-23931 +23918-23931 +23918-23921 +23919-23921 +23920-23921 +23923-23931 +23923-23926 +23923-23924 +23925-23926 +23927-23931 +23928-23931 +23930-23931 +23932-23943 +23932-23943 +23933-23943 +23933-23939 +23934-23936 +23935-23936 +23937-23938 +23940-23943 +23941-23943 +23941 +23944-23950 +23944-23950 +23945-23950 +23947-23950 +23949-23950 +23951-23967 +23951-23967 +23952-23967 +23954-23957 +23955-23957 +23956-23957 +23958-23967 +23958 +23960-23962 +23961-23962 +23963-23964 +23965-23967 +23966-23967 +23968-23982 +23968-23982 +23969-23982 +23969-23974 +23969-23972 +23970-23972 +23975-23976 +23976 +23977-23980 +23978-23980 +23979-23980 +23981-23982 +23982 +23983-23993 +23983-23993 +23984-23993 +23984-23990 +23985-23987 +23986-23987 +23988-23990 +23989-23990 +23991-23993 +23992-23993 +23994-24014 +23994-24014 +23995-24014 +23996-23997 +23999-24014 +23999-24001 +23999-24001 +24000-24001 +24002-24010 +24002-24006 +24002-24003 +24004-24005 +24007-24010 +24007-24008 +24011-24014 +24013-24014 +24015-24019 +24015-24019 +24016-24019 +24018-24019 +24020-24034 +24020-24034 +24021-24034 +24021-24027 +24021-24022 +24023-24024 +24028-24034 +24029-24034 +24029-24032 +24030-24032 +24031-24032 +24034 +24035-24046 +24035-24046 +24036-24046 +24037-24039 +24038-24039 +24040-24046 +24040-24042 +24040-24041 +24043-24046 +24044-24046 +24047-24073 +24047-24073 +24048-24073 +24050-24073 +24050-24051 +24050-24051 +24052-24073 +24053-24073 +24053-24064 +24053-24058 +24054-24056 +24055-24056 +24059-24061 +24060-24061 +24060-24061 +24062-24064 +24063-24064 +24065-24073 +24066-24073 +24066-24068 +24067-24068 +24071-24073 +24072-24073 +24074-24085 +24074-24085 +24075-24085 +24075-24076 +24079-24085 +24079-24081 +24079-24081 +24080-24081 +24081 +24084-24085 +24085 +24086-24097 +24086-24097 +24087 +24088-24091 +24089-24091 +24090-24091 +24093-24097 +24093 +24094-24097 +24095-24097 +24096-24097 +24098-24127 +24098-24127 +24099-24127 +24099-24100 +24101-24104 +24102-24104 +24103-24104 +24106-24109 +24107-24109 +24108-24109 +24110-24127 +24112-24127 +24112-24116 +24112-24116 +24113-24116 +24113-24115 +24114-24115 +24120-24127 +24120-24122 +24121-24122 +24123-24127 +24124-24127 +24126-24127 +24128-24133 +24128-24133 +24129-24133 +24129-24132 +24129 +24130-24132 +24131-24132 +24134-24143 +24134-24143 +24135-24143 +24136-24137 +24138-24143 +24139-24143 +24139-24140 +24142-24143 +24143 +24144-24154 +24144-24154 +24145-24154 +24145-24152 +24145-24146 +24147-24150 +24148-24150 +24149-24150 +24153-24154 +24154 +24155-24172 +24155-24172 +24156-24172 +24156-24159 +24158-24159 +24160-24172 +24160-24162 +24161-24162 +24163-24164 +24167-24172 +24171-24172 +24173-24186 +24173-24186 +24174-24186 +24176-24186 +24176-24182 +24176-24178 +24177-24178 +24179-24180 +24182 +24183-24186 +24184-24186 +24185-24186 +24187-24198 +24187-24198 +24187-24192 +24187-24188 +24190-24192 +24191-24192 +24193-24198 +24194-24198 +24196-24198 +24197-24198 +24199-24224 +24199-24224 +24200-24224 +24200-24203 +24201-24203 +24202-24203 +24204-24224 +24205-24224 +24207-24224 +24208-24224 +24208-24215 +24208-24211 +24209-24211 +24210-24211 +24213-24215 +24214-24215 +24216-24218 +24217-24218 +24219-24224 +24220-24224 +24220 +24221-24223 +24222-24223 +24225-24233 +24225-24233 +24226-24233 +24226-24229 +24228-24229 +24230-24233 +24231-24233 +24232-24233 +24234-24237 +24234-24237 +24235-24237 +24236-24237 +24238-24249 +24238-24249 +24239-24249 +24239-24242 +24239-24241 +24240-24241 +24245-24249 +24246-24248 +24247-24248 +24250-24261 +24250-24261 +24251-24261 +24253-24261 +24254-24261 +24254-24255 +24257-24259 +24258-24259 +24260-24261 +24262-24280 +24262-24280 +24263-24280 +24263-24266 +24263 +24265-24266 +24267-24280 +24268-24280 +24270-24280 +24270-24274 +24271-24274 +24273-24274 +24275-24280 +24276-24280 +24276-24277 +24278-24280 +24279-24280 +24281-24318 +24281-24318 +24282-24318 +24282-24288 +24282-24283 +24286-24288 +24287-24288 +24289-24318 +24290-24318 +24290-24291 +24294-24318 +24294-24306 +24294-24304 +24295-24304 +24296-24299 +24297-24299 +24298-24299 +24301-24304 +24302-24304 +24303-24304 +24307-24318 +24308-24318 +24308-24314 +24308-24311 +24309-24311 +24315-24318 +24316-24318 +24316-24318 +24317-24318 +24319-24342 +24319-24342 +24321-24322 +24323-24342 +24323 +24324-24335 +24325-24335 +24326-24329 +24327-24329 +24328-24329 +24332-24335 +24336-24342 +24337-24342 +24337-24338 +24339-24342 +24340-24342 +24343-24364 +24343-24364 +24344-24364 +24344-24345 +24347-24364 +24347-24349 +24350-24364 +24351-24364 +24353-24364 +24353-24359 +24356-24359 +24357-24359 +24358-24359 +24360-24364 +24361-24364 +24363-24364 +24365-24373 +24365-24373 +24366-24373 +24366-24370 +24369-24370 +24371-24372 +24374-24395 +24374-24395 +24375-24395 +24375-24385 +24376-24385 +24376-24382 +24379-24380 +24381-24382 +24384-24385 +24386-24395 +24387-24388 +24389-24395 +24390-24395 +24390-24391 +24393-24395 +24394-24395 +24396-24422 +24396-24422 +24397-24422 +24397-24405 +24398-24405 +24400-24405 +24401-24405 +24401-24403 +24401-24402 +24404-24405 +24405 +24406-24422 +24406-24409 +24410-24422 +24411-24422 +24411-24417 +24412-24413 +24414-24417 +24415-24417 +24416-24417 +24418-24422 +24419-24422 +24420-24422 +24421-24422 +24423-24431 +24423-24431 +24424-24431 +24424-24429 +24425-24429 +24427-24429 +24428-24429 +24432-24453 +24432-24453 +24432-24439 +24434-24439 +24437-24439 +24438-24439 +24440-24453 +24441-24453 +24441-24444 +24441-24443 +24442-24443 +24446-24453 +24446-24448 +24447-24448 +24449-24453 +24450-24453 +24451-24453 +24452-24453 +24454-24462 +24454-24462 +24455-24462 +24455-24460 +24456-24460 +24456-24458 +24457-24458 +24463-24479 +24463-24479 +24463-24470 +24465-24470 +24467-24469 +24468-24469 +24471-24479 +24472-24479 +24472-24475 +24472-24474 +24473-24474 +24477-24479 +24478-24479 +24480-24488 +24480-24488 +24481-24488 +24481-24486 +24482-24486 +24482-24484 +24483-24484 +24489-24517 +24489-24517 +24489-24498 +24491-24498 +24494-24498 +24495-24498 +24496-24498 +24497-24498 +24499-24517 +24500-24517 +24500-24502 +24500-24501 +24504-24517 +24505-24517 +24505-24506 +24507-24517 +24507-24512 +24508-24510 +24509-24510 +24513-24517 +24514-24517 +24514-24515 +24518-24521 +24518-24521 +24519-24521 +24522-24524 +24522-24524 +24523-24524 +24525-24534 +24525-24534 +24526-24534 +24526-24530 +24527-24530 +24527-24528 +24531-24532 +24535-24542 +24535-24542 +24535-24538 +24536-24537 +24539-24542 +24540-24542 +24541-24542 +24543-24567 +24543-24567 +24544-24567 +24544-24555 +24544-24545 +24547-24555 +24547-24551 +24548-24551 +24549-24551 +24550-24551 +24552-24555 +24553-24555 +24554-24555 +24556-24567 +24557-24567 +24557-24561 +24560-24561 +24562-24567 +24563-24567 +24563-24564 +24564 +24565-24567 +24568-24579 +24568-24579 +24569-24579 +24569-24577 +24569 +24573-24577 +24574-24577 +24576-24577 +24578-24579 +24580-24588 +24580-24588 +24581-24588 +24582 +24585-24588 +24589-24598 +24589-24598 +24590-24598 +24592-24598 +24594-24598 +24594-24596 +24594-24595 +24597-24598 +24598 +24599-24612 +24599-24612 +24600-24612 +24600-24601 +24604-24612 +24604-24607 +24605-24607 +24606-24607 +24610-24612 +24610-24611 +24613-24621 +24613-24621 +24614-24621 +24614-24616 +24615-24616 +24617-24619 +24618-24619 +24622-24638 +24622-24638 +24622-24631 +24622-24623 +24626-24631 +24626-24628 +24627-24628 +24629-24631 +24630-24631 +24632-24638 +24633-24638 +24634-24635 +24636-24638 +24637-24638 +24639-24645 +24639-24645 +24640-24645 +24641-24642 +24644-24645 +24644-24645 +24646-24653 +24646-24653 +24647-24653 +24647-24650 +24648-24649 +24654-24664 +24654-24664 +24655-24664 +24655-24657 +24656-24657 +24659-24660 +24661-24662 +24665-24689 +24665-24689 +24666-24689 +24668-24689 +24668-24679 +24668-24676 +24669-24676 +24669-24673 +24671-24673 +24672-24673 +24674-24676 +24675-24676 +24678-24679 +24680-24689 +24681-24689 +24681-24688 +24682-24688 +24683-24686 +24684-24686 +24685-24686 +24690-24696 +24690-24696 +24691-24696 +24694-24696 +24695-24696 +24697-24701 +24697-24701 +24698-24701 +24698-24699 +24702-24726 +24702-24726 +24703-24726 +24703-24706 +24703 +24704-24705 +24707-24726 +24708-24726 +24710-24726 +24710-24718 +24710-24715 +24711-24715 +24711-24712 +24714-24715 +24716-24718 +24719-24726 +24720-24726 +24720-24721 +24723-24726 +24724-24726 +24725-24726 +24727-24744 +24727-24744 +24728-24729 +24730-24744 +24730-24739 +24731-24739 +24731-24737 +24734-24737 +24735-24737 +24736-24737 +24739 +24740-24741 +24743-24744 +24745-24753 +24745-24753 +24746-24753 +24746-24747 +24749-24753 +24750-24751 +24752-24753 +24754-24773 +24754-24773 +24755-24773 +24755-24758 +24757-24758 +24759-24773 +24760-24763 +24760 +24761-24763 +24762-24763 +24766-24773 +24766-24767 +24766-24767 +24768-24769 +24770-24773 +24771-24773 +24771-24772 +24774-24809 +24774-24809 +24775-24809 +24775-24776 +24779-24809 +24779-24789 +24783-24789 +24783-24784 +24785-24789 +24786-24789 +24787-24789 +24788-24789 +24790-24809 +24790-24791 +24793-24809 +24793-24794 +24795-24796 +24797-24798 +24799-24800 +24801-24802 +24803-24809 +24804-24809 +24804-24806 +24805-24806 +24807-24809 +24808-24809 +24810-24820 +24810-24820 +24811-24820 +24814-24820 +24814 +24815-24816 +24818-24820 +24819-24820 +24821-24850 +24821-24850 +24822-24850 +24822-24827 +24822-24823 +24824-24825 +24828-24850 +24829-24850 +24831-24850 +24831-24833 +24834-24850 +24834-24846 +24834-24841 +24835-24841 +24835-24837 +24835-24836 +24838-24841 +24839-24841 +24840-24841 +24842-24846 +24843-24846 +24845-24846 +24847-24850 +24848-24850 +24848 +24849-24850 +24851-24863 +24851-24863 +24852-24863 +24853-24856 +24854-24856 +24855-24856 +24858 +24859-24863 +24860-24863 +24860-24861 +24862-24863 +24864-24883 +24864-24883 +24865-24883 +24865 +24866-24867 +24869-24871 +24870-24871 +24872-24883 +24872-24873 +24874-24877 +24875-24877 +24875-24876 +24878-24882 +24879-24882 +24880-24882 +24881-24882 +24884-24891 +24884-24891 +24885-24891 +24885-24886 +24888-24891 +24889-24891 +24890-24891 +24892-24925 +24892-24925 +24893-24925 +24893-24894 +24896 +24899-24925 +24899 +24900-24908 +24900-24901 +24903-24908 +24903-24907 +24904-24907 +24905-24907 +24906-24907 +24909-24925 +24909-24917 +24911-24917 +24912-24916 +24913-24916 +24914-24916 +24915-24916 +24918-24925 +24919-24925 +24920-24924 +24921-24924 +24922-24924 +24923-24924 +24926-24936 +24926-24936 +24927-24936 +24930-24936 +24931-24932 +24933-24936 +24934-24936 +24936 +24937-24954 +24937-24954 +24937-24938 +24939-24940 +24942-24954 +24942-24948 +24942-24944 +24942-24943 +24945-24948 +24946-24948 +24947-24948 +24949-24954 +24950-24954 +24952-24954 +24953-24954 +24955-24966 +24955-24966 +24956-24957 +24958-24966 +24960-24966 +24961-24963 +24964-24966 +24965-24966 +24967-25025 +24967-25025 +24968-24969 +24970-25025 +24970-24972 +24971-24972 +24973-25025 +24975-24995 +24977-24989 +24978-24979 +24980-24981 +24982-24983 +24984-24985 +24986-24987 +24988-24989 +24990-24995 +24990-24991 +24992-24995 +24993-24995 +24994-24995 +24996-25025 +24997-25025 +24997-25017 +25000-25003 +25001-25003 +25001-25002 +25004-25015 +25005-25015 +25006-25007 +25008-25009 +25010-25011 +25012-25013 +25014-25015 +25016-25017 +25018-25025 +25019-25025 +25019-25023 +25020-25023 +25020-25021 +25022-25023 +25023 +25024-25025 +25026-25034 +25026-25034 +25027-25034 +25027-25030 +25027-25028 +25031-25034 +25032-25034 +25032-25033 +25035-25054 +25035-25054 +25036-25054 +25036-25048 +25036-25042 +25037-25039 +25038-25039 +25040-25042 +25041-25042 +25043-25048 +25044-25048 +25044-25045 +25047-25048 +25049-25054 +25050-25054 +25050 +25051-25054 +25052-25054 +25052-25053 +25053 +25055-25107 +25055-25107 +25056-25107 +25056-25059 +25058-25059 +25061-25107 +25063-25066 +25064-25066 +25065-25066 +25067-25107 +25068-25107 +25068-25071 +25070-25071 +25072-25082 +25073-25082 +25073-25076 +25074-25076 +25075-25076 +25078-25082 +25078-25079 +25080-25082 +25081-25082 +25083-25091 +25084-25091 +25084-25086 +25087-25091 +25088-25091 +25090-25091 +25092-25102 +25093-25102 +25093-25094 +25095-25097 +25096-25097 +25098-25100 +25099-25100 +25101-25102 +25102 +25103-25107 +25104-25107 +25104-25106 +25105-25106 +25108-25127 +25108-25127 +25109-25127 +25111-25116 +25111-25113 +25112-25113 +25114-25116 +25115-25116 +25117-25127 +25119-25127 +25119 +25120 +25122-25127 +25122-25125 +25123-25125 +25128-25136 +25128-25136 +25129-25136 +25132-25136 +25133-25136 +25137-25156 +25137-25156 +25138-25156 +25141-25156 +25143-25156 +25144-25156 +25144-25151 +25144-25147 +25145-25147 +25146-25147 +25148-25151 +25149-25151 +25150-25151 +25153-25156 +25154-25156 +25155-25156 +25157-25165 +25157-25165 +25158-25165 +25158-25159 +25162-25165 +25164-25165 +25166-25179 +25166-25179 +25167-25179 +25167-25172 +25168-25172 +25169-25172 +25170-25172 +25173-25179 +25174-25179 +25174-25178 +25175-25178 +25176-25178 +25180-25184 +25180-25184 +25181-25184 +25184 +25185-25218 +25185-25218 +25186-25218 +25186-25187 +25190-25218 +25190-25202 +25190-25195 +25190-25194 +25191-25194 +25192-25194 +25196-25202 +25197-25202 +25197-25201 +25198-25201 +25199-25201 +25203-25218 +25204-25218 +25204-25215 +25204-25211 +25205-25211 +25206-25211 +25206-25208 +25207-25208 +25209-25211 +25210-25211 +25214-25215 +25216-25218 +25217-25218 +25219-25228 +25219-25228 +25220-25228 +25220 +25221-25222 +25224-25228 +25225-25228 +25226-25228 +25227-25228 +25229-25250 +25229-25250 +25230-25250 +25230-25231 +25232-25233 +25236-25250 +25237-25250 +25238-25250 +25238-25244 +25238-25242 +25239-25242 +25240-25242 +25241-25242 +25245-25250 +25246-25250 +25246-25248 +25247-25248 +25251-25297 +25251-25297 +25252-25297 +25252-25278 +25253-25256 +25255-25256 +25258-25278 +25258-25267 +25258-25264 +25259-25264 +25261-25264 +25263-25264 +25266-25267 +25268-25278 +25269-25278 +25269-25275 +25270-25275 +25272-25275 +25272-25273 +25277-25278 +25279-25297 +25280-25297 +25280-25287 +25280-25284 +25281-25284 +25282-25284 +25283-25284 +25287 +25288-25297 +25289-25297 +25289 +25290-25297 +25291-25297 +25292-25294 +25293-25294 +25295-25297 +25296-25297 +25298-25301 +25298-25301 +25299-25301 +25300-25301 +25302-25323 +25302-25323 +25303-25323 +25303-25313 +25303-25306 +25305-25306 +25307-25313 +25308-25313 +25308-25313 +25308-25310 +25309-25310 +25311-25313 +25312-25313 +25314-25323 +25314-25319 +25314-25317 +25314-25316 +25315-25316 +25318-25319 +25321-25323 +25322-25323 +25324-25339 +25324-25339 +25325-25339 +25325-25330 +25326-25330 +25327-25330 +25327-25329 +25328-25329 +25332-25339 +25332 +25333-25339 +25334-25339 +25335-25339 +25335-25337 +25335-25337 +25335-25336 +25340-25345 +25340-25345 +25341-25345 +25344-25345 +25345 +25346-25354 +25346-25354 +25347-25354 +25348-25349 +25351-25354 +25351-25352 +25351-25352 +25355-25361 +25355-25361 +25356-25361 +25356 +25357-25358 +25360-25361 +25362-25371 +25362-25371 +25363-25371 +25364-25365 +25366-25371 +25368-25371 +25368 +25369 +25370-25371 +25372-25382 +25372-25382 +25373-25382 +25374-25377 +25375-25377 +25376-25377 +25378 +25380-25382 +25381-25382 +25383-25392 +25383-25392 +25384-25392 +25384-25385 +25386-25387 +25389-25392 +25389-25391 +25393-25400 +25393-25400 +25394-25400 +25394-25395 +25398-25400 +25398 +25400 +25401-25411 +25401-25411 +25402-25411 +25402-25403 +25406-25411 +25406 +25407-25411 +25407-25409 +25408-25409 +25412-25420 +25412-25420 +25413-25420 +25413-25414 +25415-25420 +25416-25420 +25418-25420 +25419-25420 +25421-25467 +25421-25467 +25422-25467 +25422-25434 +25423-25434 +25424-25425 +25426-25429 +25427-25429 +25428-25429 +25430-25434 +25431-25434 +25432-25434 +25433-25434 +25435-25467 +25435-25439 +25436-25439 +25437-25439 +25438-25439 +25440-25467 +25441-25467 +25443-25467 +25443-25463 +25443-25449 +25444-25449 +25445-25449 +25445-25446 +25447-25449 +25448-25449 +25450-25463 +25451-25463 +25451-25454 +25453-25454 +25456-25463 +25457-25463 +25458-25463 +25458-25459 +25460-25461 +25464-25467 +25464-25465 +25466-25467 +25467 +25468-25487 +25468-25487 +25469-25487 +25469-25475 +25470-25475 +25473-25475 +25476-25487 +25477-25487 +25477-25481 +25477-25478 +25479-25480 +25482-25487 +25483-25487 +25488-25502 +25488-25502 +25489-25502 +25489 +25490-25502 +25491-25502 +25491-25499 +25492-25499 +25494-25495 +25497-25499 +25498-25499 +25500-25502 +25501-25502 +25503-25514 +25503-25514 +25504-25514 +25504-25507 +25505-25507 +25506-25507 +25510-25514 +25512-25514 +25513-25514 +25515-25522 +25515-25522 +25516-25522 +25519-25522 +25520-25522 +25521-25522 +25523-25525 +25523-25525 +25524-25525 +25526-25542 +25526-25542 +25527-25542 +25527-25532 +25528-25529 +25530-25532 +25531-25532 +25533-25542 +25534-25542 +25534-25538 +25536-25538 +25537-25538 +25539-25542 +25540-25542 +25541-25542 +25543-25558 +25543-25558 +25544-25558 +25544-25551 +25545-25547 +25546-25547 +25549-25551 +25550-25551 +25552-25558 +25553-25558 +25555-25558 +25556-25558 +25557-25558 +25559-25584 +25559-25584 +25560-25584 +25560-25564 +25560-25561 +25561 +25562-25564 +25563-25564 +25564 +25566-25584 +25566 +25567-25572 +25567 +25568-25572 +25569-25572 +25570-25572 +25571-25572 +25573-25580 +25573 +25574-25580 +25575-25580 +25575 +25576-25580 +25577-25580 +25577-25579 +25578-25579 +25581-25584 +25582-25584 +25583-25584 +25585-25591 +25585-25591 +25586-25591 +25587-25588 +25589-25591 +25590-25591 +25592-25605 +25592-25605 +25593-25605 +25593-25597 +25596-25597 +25598-25605 +25598-25599 +25601-25602 +25603-25605 +25604-25605 +25606-25613 +25606-25613 +25607-25613 +25607-25612 +25607-25608 +25611-25612 +25613 +25614-25642 +25614-25642 +25615-25642 +25615-25627 +25615-25620 +25616-25617 +25618-25620 +25622-25627 +25623-25627 +25624-25627 +25626-25627 +25628-25642 +25629-25642 +25629-25636 +25629-25631 +25630-25631 +25634-25636 +25635-25636 +25637-25642 +25638-25642 +25638-25639 +25643-25655 +25643-25655 +25644-25655 +25644 +25647-25655 +25648-25650 +25649-25650 +25651-25652 +25656-25660 +25656-25660 +25657-25660 +25658-25660 +25659-25660 +25661-25664 +25661-25664 +25662-25664 +25663-25664 +25665-25702 +25665-25702 +25666-25702 +25666-25679 +25666-25669 +25667-25669 +25668-25669 +25671-25679 +25672-25679 +25672-25676 +25672-25673 +25673 +25674-25676 +25675-25676 +25676 +25677-25679 +25678-25679 +25680-25692 +25681-25692 +25681-25691 +25681-25684 +25682-25684 +25683-25684 +25685-25691 +25686-25691 +25687-25691 +25688-25691 +25689-25691 +25690-25691 +25693-25702 +25694-25702 +25696-25702 +25697-25702 +25700-25702 +25701-25702 +25703-25725 +25703-25725 +25704-25725 +25704 +25705-25725 +25706-25725 +25708-25725 +25708-25719 +25709-25719 +25710-25719 +25711-25719 +25711-25713 +25712-25713 +25714-25715 +25717-25719 +25718-25719 +25720-25725 +25721-25725 +25724-25725 +25726-25749 +25726-25749 +25727-25749 +25727-25732 +25728-25732 +25728-25729 +25730-25732 +25731-25732 +25733-25749 +25734-25749 +25734-25737 +25735-25737 +25738-25749 +25739-25749 +25739-25740 +25741-25749 +25742-25749 +25742-25744 +25743-25744 +25746-25749 +25747-25749 +25748-25749 +25750-25757 +25750-25757 +25751-25757 +25751-25753 +25752-25753 +25755-25757 +25756-25757 +25758-25766 +25758-25766 +25759-25766 +25759-25760 +25762-25766 +25762-25763 +25765-25766 +25767-25779 +25767-25779 +25768-25779 +25768 +25769-25770 +25773-25779 +25773 +25775-25778 +25776-25778 +25777-25778 +25780-25819 +25780-25819 +25781-25819 +25781 +25782-25783 +25786-25819 +25787-25788 +25789-25819 +25790-25791 +25792-25819 +25793-25819 +25793-25817 +25794-25817 +25794-25804 +25794-25798 +25796-25798 +25796-25797 +25799 +25800-25804 +25801-25804 +25802-25804 +25803-25804 +25805-25817 +25806-25817 +25807-25811 +25808-25811 +25809-25811 +25810-25811 +25813-25817 +25814-25817 +25815-25817 +25815-25816 +25818-25819 +25820-25834 +25820-25834 +25820-25821 +25824-25834 +25824-25828 +25824-25828 +25825-25828 +25826-25828 +25827-25828 +25829-25831 +25830-25831 +25831 +25832-25834 +25833-25834 +25835-25858 +25835-25858 +25836-25858 +25836-25844 +25836-25838 +25837-25838 +25838 +25839-25844 +25839 +25840-25844 +25841-25844 +25843-25844 +25845-25858 +25846-25858 +25846-25853 +25847-25853 +25847-25849 +25848-25849 +25850-25853 +25851-25853 +25852-25853 +25856-25858 +25857-25858 +25859-25863 +25859-25863 +25860-25863 +25862-25863 +25864-25898 +25864-25898 +25865-25898 +25865-25869 +25865-25867 +25866-25867 +25870-25898 +25870-25880 +25871-25872 +25873-25880 +25873-25874 +25875-25877 +25876-25877 +25878-25880 +25879-25880 +25881-25898 +25882-25898 +25884-25898 +25884-25888 +25884-25886 +25885-25886 +25889-25898 +25890-25898 +25893-25895 +25893-25894 +25896-25898 +25897-25898 +25899-25918 +25899-25918 +25900-25918 +25900-25901 +25904-25918 +25904-25910 +25904-25907 +25906-25907 +25908-25910 +25909-25910 +25911-25918 +25912-25918 +25914-25918 +25914-25916 +25915-25916 +25919-25930 +25919-25930 +25919-25928 +25919-25925 +25919-25922 +25919-25920 +25921-25922 +25923-25924 +25926-25928 +25927-25928 +25927-25928 +25929-25930 +25931-25962 +25931-25962 +25932-25962 +25933-25934 +25935-25962 +25936-25962 +25936-25946 +25936-25939 +25937-25939 +25938-25939 +25938-25939 +25940-25946 +25941-25946 +25942-25946 +25942-25943 +25947-25962 +25948-25962 +25948-25950 +25949-25950 +25949-25950 +25951-25962 +25951-25953 +25952-25953 +25954-25962 +25955-25962 +25957-25958 +25959-25962 +25960-25962 +25963-25969 +25963-25969 +25964-25969 +25964-25966 +25965-25966 +25968-25969 +25970-25983 +25970-25983 +25971-25983 +25971-25972 +25975-25983 +25979-25983 +25979-25981 +25980-25981 +25984-26007 +25984-26007 +25985-26007 +25986-26007 +25987-25988 +25990-26007 +25990-25992 +25993-25995 +25994-25995 +25996-25998 +25997-25998 +25999-26001 +26000-26001 +26002-26005 +26003-26005 +26006-26007 +26007 +26008-26025 +26008-26025 +26009-26025 +26010-26012 +26011-26012 +26013-26014 +26016-26025 +26017-26025 +26017-26019 +26018-26019 +26021-26025 +26022-26025 +26023-26025 +26024-26025 +26026-26032 +26026-26032 +26027-26032 +26027-26029 +26027-26028 +26030-26032 +26031-26032 +26033-26039 +26033-26039 +26034-26039 +26036-26037 +26038-26039 +26040-26043 +26040-26043 +26040-26041 +26042-26043 +26043 +26044-26057 +26044-26057 +26045-26057 +26045-26048 +26045-26046 +26047-26048 +26049-26057 +26050-26057 +26050-26057 +26050-26051 +26052-26057 +26052-26054 +26053-26054 +26055-26057 +26056-26057 +26058-26062 +26058-26062 +26060-26062 +26061-26062 +26063-26073 +26063-26073 +26066-26067 +26068-26073 +26069-26073 +26070-26073 +26071-26073 +26072-26073 +26074-26093 +26074-26093 +26075-26093 +26075-26077 +26076-26077 +26078-26079 +26081-26093 +26082-26093 +26084-26085 +26086-26093 +26086-26088 +26086 +26087-26088 +26089-26093 +26090-26093 +26092-26093 +26094-26103 +26094-26103 +26095-26103 +26095-26097 +26095 +26098-26103 +26099-26103 +26101-26103 +26102-26103 +26104-26109 +26104-26109 +26106-26109 +26107-26109 +26108-26109 +26110-26119 +26110-26119 +26110-26114 +26110 +26111-26114 +26112-26114 +26113-26114 +26115-26119 +26116-26119 +26117-26118 +26120-26144 +26120-26144 +26121-26123 +26121-26122 +26125-26144 +26125-26134 +26125-26129 +26125-26129 +26126-26129 +26128-26129 +26129 +26132-26134 +26133-26134 +26135-26138 +26135-26136 +26139-26144 +26140-26144 +26142-26144 +26143-26144 +26145-26160 +26145-26160 +26146-26160 +26146-26152 +26146-26148 +26147-26148 +26149-26152 +26150-26152 +26151-26152 +26153-26160 +26154-26160 +26155-26160 +26156-26160 +26156-26157 +26158-26159 +26161-26164 +26161-26164 +26162-26164 +26162-26163 +26165-26178 +26165-26178 +26166-26178 +26166-26174 +26167-26168 +26169-26174 +26170-26174 +26170-26171 +26172-26174 +26173-26174 +26175-26178 +26176-26178 +26179-26217 +26179-26217 +26180-26217 +26180 +26183-26217 +26183 +26184-26207 +26185-26207 +26186-26207 +26186-26187 +26188-26207 +26189-26207 +26192-26193 +26194-26207 +26195-26207 +26196-26199 +26197-26199 +26198-26199 +26201-26207 +26201-26202 +26203-26206 +26204-26206 +26205-26206 +26208-26217 +26208-26213 +26208-26211 +26209-26211 +26212-26213 +26213 +26214-26217 +26214 +26215-26217 +26216-26217 +26218-26233 +26218-26233 +26219-26233 +26220-26223 +26221-26223 +26222-26223 +26226-26233 +26226-26228 +26229-26233 +26232-26233 +26233 +26234-26236 +26234-26236 +26235-26236 +26237-26246 +26237-26246 +26238-26246 +26240-26246 +26241-26246 +26241-26243 +26241-26242 +26244-26246 +26245-26246 +26247-26251 +26247-26251 +26248-26251 +26251 +26252-26266 +26252-26266 +26253-26266 +26253-26254 +26257-26266 +26257-26260 +26257-26258 +26261-26266 +26262-26266 +26262-26264 +26263-26264 +26265-26266 +26267-26270 +26267-26270 +26268-26270 +26269-26270 +26271-26313 +26271-26313 +26272-26313 +26272-26280 +26273-26274 +26275-26280 +26276-26280 +26278-26280 +26281-26313 +26282-26313 +26284-26313 +26285-26313 +26285 +26289-26313 +26290-26313 +26290-26300 +26291-26300 +26291-26293 +26291-26292 +26294-26296 +26295-26296 +26297-26300 +26298-26300 +26302-26313 +26302-26307 +26303-26305 +26304-26305 +26306-26307 +26308-26313 +26309-26313 +26311-26313 +26312-26313 +26314-26316 +26314-26316 +26314-26315 +26317-26326 +26317-26326 +26318-26326 +26318-26321 +26318-26319 +26322-26326 +26323-26326 +26323 +26327-26336 +26327-26336 +26328-26336 +26328-26331 +26328-26329 +26332-26336 +26333-26336 +26334-26336 +26337-26340 +26337-26340 +26338-26340 +26338-26339 +26341-26346 +26341-26346 +26342-26346 +26342-26343 +26347-26352 +26347-26352 +26347-26348 +26349-26351 +26350-26351 +26353-26367 +26353-26367 +26353-26361 +26353-26355 +26354-26355 +26356-26357 +26357 +26358-26360 +26358-26359 +26362-26367 +26363-26367 +26363-26364 +26368-26384 +26368-26384 +26370-26371 +26372-26384 +26373-26384 +26373-26374 +26376-26384 +26376-26379 +26378-26379 +26380-26384 +26381-26384 +26381-26384 +26382-26384 +26383-26384 +26385-26400 +26385-26400 +26386-26400 +26386-26389 +26387-26389 +26387-26388 +26390-26393 +26390-26391 +26391 +26392-26393 +26393 +26394-26400 +26395-26400 +26396-26400 +26397-26400 +26398-26400 +26399-26400 +26401-26431 +26401-26431 +26402-26431 +26402-26406 +26403-26406 +26403-26404 +26405-26406 +26406 +26409-26412 +26410-26412 +26411-26412 +26413-26415 +26414-26415 +26416-26431 +26417-26431 +26419-26420 +26421-26431 +26422-26431 +26423-26431 +26423-26425 +26424-26425 +26426-26428 +26427-26428 +26429-26431 +26430-26431 +26432-26437 +26432-26437 +26433-26435 +26434-26435 +26437 +26438-26439 +26438-26439 +26440-26459 +26440-26459 +26441-26459 +26441 +26442-26444 +26443-26444 +26445-26452 +26446-26447 +26448-26452 +26448 +26450-26452 +26455-26459 +26457-26459 +26458-26459 +26460-26503 +26460-26503 +26461-26462 +26463-26503 +26464-26503 +26466-26503 +26466-26467 +26467 +26468-26503 +26468-26474 +26468-26471 +26469-26471 +26470-26471 +26472-26473 +26475-26503 +26476-26503 +26477-26480 +26478-26480 +26479-26480 +26481-26503 +26481-26485 +26482-26485 +26483-26485 +26484-26485 +26486-26491 +26487-26491 +26488-26491 +26489-26491 +26490-26491 +26492-26497 +26493-26497 +26494-26497 +26495-26497 +26496-26497 +26498-26503 +26499-26503 +26500-26503 +26501-26503 +26502-26503 +26504-26511 +26504-26511 +26506-26511 +26507-26509 +26508-26509 +26510-26511 +26511 +26512-26517 +26512-26517 +26514-26515 +26518-26568 +26518-26568 +26519-26568 +26521-26522 +26523-26568 +26523-26524 +26524 +26525-26568 +26525-26526 +26528-26568 +26529-26568 +26529-26536 +26529-26530 +26531-26536 +26532-26536 +26535-26536 +26537-26568 +26538-26568 +26538-26561 +26538-26554 +26539-26554 +26541-26554 +26541-26544 +26542-26544 +26543-26544 +26545-26549 +26546-26549 +26547-26549 +26548-26549 +26550-26554 +26551-26554 +26552-26554 +26553-26554 +26555-26561 +26556-26561 +26557-26561 +26558-26559 +26560-26561 +26561 +26564-26568 +26565-26568 +26566-26568 +26567-26568 +26569-26586 +26569-26586 +26570-26586 +26570-26571 +26572-26576 +26572-26573 +26575-26576 +26579-26586 +26582-26586 +26583-26586 +26584-26586 +26585-26586 +26587-26592 +26587-26592 +26588-26592 +26591-26592 +26593-26611 +26593-26611 +26594-26611 +26594 +26595-26596 +26598-26601 +26599-26601 +26600-26601 +26602-26611 +26604-26605 +26606-26611 +26607-26611 +26607-26608 +26609-26610 +26612-26638 +26612-26638 +26612-26613 +26615-26619 +26616-26619 +26617-26619 +26618-26619 +26620-26638 +26622-26624 +26623-26624 +26625-26638 +26625-26628 +26626-26628 +26627-26628 +26629-26638 +26630-26638 +26631-26638 +26632-26634 +26633-26634 +26635-26638 +26636-26638 +26637-26638 +26639-26648 +26639-26648 +26639-26643 +26639-26640 +26644-26648 +26645-26648 +26646-26647 +26649-26655 +26649-26655 +26650-26655 +26650-26652 +26651-26652 +26656-26699 +26656-26699 +26657-26699 +26657-26660 +26658-26660 +26659-26660 +26662-26699 +26663-26685 +26664-26685 +26664-26665 +26666-26685 +26667-26685 +26667-26670 +26668-26670 +26668-26669 +26671-26685 +26672-26685 +26672-26685 +26672-26675 +26673-26675 +26674-26675 +26676-26680 +26677-26680 +26678-26680 +26679-26680 +26681-26685 +26682-26685 +26683-26685 +26684-26685 +26686-26699 +26686-26695 +26686-26695 +26687-26695 +26687-26691 +26688-26691 +26689-26691 +26690-26691 +26692-26695 +26693-26695 +26698-26699 +26700-26713 +26700-26713 +26701-26713 +26701-26705 +26701-26704 +26702-26704 +26703-26704 +26706-26713 +26707-26708 +26711-26713 +26712-26713 +26714-26718 +26714-26718 +26715-26718 +26715-26716 +26719-26729 +26719-26729 +26720-26729 +26720 +26721-26723 +26722-26723 +26725-26729 +26725-26726 +26727-26729 +26730-26753 +26730-26753 +26731-26753 +26731-26734 +26732-26734 +26733-26734 +26737-26753 +26738-26739 +26740-26753 +26741-26753 +26741-26745 +26741-26743 +26741-26742 +26744-26745 +26748-26753 +26749-26753 +26750-26753 +26751-26753 +26752-26753 +26754-26774 +26754-26774 +26755-26774 +26755-26760 +26756-26759 +26757-26759 +26758-26759 +26761-26774 +26762-26774 +26763-26766 +26764-26766 +26765-26766 +26768-26774 +26768-26770 +26769-26770 +26771-26774 +26772-26774 +26773-26774 +26775-26793 +26775-26793 +26776-26793 +26776-26780 +26778-26780 +26779-26780 +26781-26793 +26783-26786 +26784-26786 +26785-26786 +26787-26793 +26787 +26788 +26789-26793 +26789-26793 +26789-26790 +26791-26793 +26792-26793 +26794-26803 +26794-26803 +26795-26803 +26795-26796 +26799-26803 +26800-26803 +26801-26803 +26802-26803 +26804-26813 +26804-26813 +26804-26805 +26807-26808 +26809-26813 +26810-26813 +26811-26812 +26814-26849 +26814-26849 +26815-26849 +26815-26824 +26817-26821 +26818-26821 +26819-26821 +26820-26821 +26822-26824 +26823-26824 +26825-26849 +26827-26828 +26829-26835 +26830-26831 +26832-26833 +26834-26835 +26836-26849 +26838-26849 +26838-26840 +26841-26849 +26842-26849 +26843-26844 +26845-26849 +26846-26849 +26847-26848 +26849 +26850-26860 +26850-26860 +26851-26860 +26851-26852 +26854-26860 +26856-26860 +26856 +26857-26860 +26858-26860 +26861-26873 +26861-26873 +26861-26870 +26863-26866 +26864-26866 +26865-26866 +26867-26870 +26868-26870 +26869-26870 +26871-26873 +26872-26873 +26874-26882 +26874-26882 +26875-26882 +26875-26880 +26876-26880 +26877-26880 +26878-26880 +26879-26880 +26881-26882 +26883-26888 +26883-26888 +26883-26884 +26884 +26885-26888 +26886-26888 +26887-26888 +26889-26903 +26889-26903 +26890-26903 +26890-26897 +26890-26893 +26892-26893 +26894-26897 +26895-26897 +26896-26897 +26898-26903 +26898-26901 +26900-26901 +26902-26903 +26904-26906 +26904-26906 +26904-26905 +26907-26910 +26907-26910 +26908-26910 +26911-26929 +26911-26929 +26911-26914 +26913-26914 +26915-26918 +26916-26918 +26916-26917 +26919-26929 +26920-26929 +26920-26923 +26921-26923 +26922-26923 +26925-26926 +26927-26929 +26928-26929 +26930-26939 +26930-26939 +26931-26939 +26931-26938 +26931-26934 +26932-26934 +26933-26934 +26937-26938 +26940-26970 +26940-26970 +26941-26970 +26941-26944 +26942-26944 +26944 +26945-26970 +26945-26959 +26946-26948 +26947-26948 +26950-26959 +26950-26957 +26951-26957 +26954-26957 +26955-26957 +26956-26957 +26958-26959 +26960-26970 +26961-26970 +26962-26965 +26964-26965 +26965 +26967-26970 +26967-26970 +26968-26970 +26969-26970 +26971-26987 +26971-26987 +26972-26987 +26972-26979 +26972-26976 +26975-26976 +26977-26979 +26978-26979 +26980-26987 +26981-26987 +26981-26984 +26983-26984 +26985-26987 +26986-26987 +26988-26996 +26988-26996 +26989-26996 +26989-26990 +26991-26992 +26993-26996 +26994-26996 +26995-26996 +26997-27003 +26997-27003 +26998-27003 +26998-27001 +26998-27001 +26999-27001 +27000-27001 +27004-27054 +27004-27054 +27005-27054 +27005-27017 +27005-27014 +27006-27014 +27007-27014 +27007-27010 +27008-27010 +27009-27010 +27012-27014 +27015-27017 +27015-27016 +27016 +27018-27054 +27018-27026 +27019-27022 +27020-27022 +27021-27022 +27024-27026 +27025-27026 +27027-27054 +27027-27040 +27027-27032 +27027-27030 +27028-27030 +27029-27030 +27033-27040 +27034-27040 +27035-27040 +27037-27040 +27038-27040 +27039-27040 +27041-27054 +27042-27054 +27042-27045 +27043-27045 +27044-27045 +27048-27050 +27049-27050 +27051-27054 +27052-27054 +27053-27054 +27055-27067 +27055-27067 +27056-27067 +27057-27063 +27057-27060 +27058-27060 +27058-27059 +27061-27063 +27062-27063 +27063 +27064-27067 +27065-27067 +27066-27067 +27068-27073 +27068-27073 +27069-27073 +27070-27073 +27071-27073 +27074-27097 +27074-27097 +27075-27097 +27076-27078 +27076-27077 +27079-27097 +27080-27097 +27080-27093 +27084-27093 +27084-27090 +27085-27090 +27086-27090 +27087-27090 +27089-27090 +27091-27093 +27092-27093 +27094-27097 +27095-27097 +27095-27096 +27098-27109 +27098-27109 +27099-27109 +27099-27104 +27100-27104 +27103-27104 +27106-27109 +27108-27109 +27110-27118 +27110-27118 +27111-27118 +27111-27115 +27112-27115 +27113-27115 +27114-27115 +27117-27118 +27119-27132 +27119-27132 +27120-27132 +27120-27130 +27121-27130 +27125-27130 +27125-27128 +27127-27128 +27129-27130 +27129 +27130 +27131-27132 +27133-27149 +27133-27149 +27134-27149 +27134-27137 +27135-27137 +27136-27137 +27138-27149 +27139-27149 +27140-27142 +27141-27142 +27143-27149 +27144-27149 +27145-27149 +27146-27147 +27147 +27148-27149 +27150-27152 +27150-27152 +27151-27152 +27153-27155 +27153-27155 +27156-27191 +27156-27191 +27157-27191 +27157-27167 +27157-27160 +27158-27160 +27159-27160 +27161-27164 +27162-27164 +27162-27163 +27165-27166 +27168-27175 +27169-27175 +27169-27170 +27173-27175 +27174-27175 +27176-27183 +27177-27183 +27177-27178 +27179-27180 +27181-27183 +27182-27183 +27184-27191 +27185-27191 +27185-27190 +27185-27186 +27187-27190 +27188-27190 +27189-27190 +27192-27206 +27192-27206 +27193-27206 +27195-27206 +27195-27198 +27196-27198 +27197-27198 +27200-27201 +27202-27206 +27203-27206 +27203-27204 +27205-27206 +27207-27226 +27207-27226 +27208-27226 +27208-27211 +27210-27211 +27212-27226 +27213-27226 +27214-27216 +27215-27216 +27217-27220 +27218-27220 +27219-27220 +27221-27226 +27221-27223 +27222-27223 +27224-27226 +27225-27226 +27227-27233 +27227-27233 +27228-27233 +27228-27230 +27229-27230 +27232-27233 +27234-27250 +27234-27250 +27234-27244 +27235-27244 +27235-27240 +27236-27238 +27237-27238 +27241-27244 +27242-27244 +27243-27244 +27245-27250 +27246-27250 +27247-27250 +27248-27249 +27251-27263 +27251-27263 +27252-27253 +27254-27257 +27255-27257 +27256-27257 +27259-27263 +27260-27263 +27262-27263 +27264-27278 +27264-27278 +27265-27266 +27267-27278 +27268-27278 +27268-27269 +27271-27273 +27271-27272 +27274-27278 +27275-27278 +27276-27277 +27279-27290 +27279-27290 +27279-27284 +27279-27283 +27279-27280 +27281-27283 +27282-27283 +27285-27290 +27286-27290 +27286-27288 +27287-27288 +27291-27312 +27291-27312 +27292-27312 +27292-27308 +27292-27298 +27293-27298 +27293-27295 +27293-27294 +27296-27298 +27297-27298 +27301-27308 +27302-27308 +27302-27305 +27303-27305 +27304-27305 +27306-27308 +27307-27308 +27309-27312 +27310-27312 +27311-27312 +27313-27321 +27313-27321 +27313-27314 +27313 +27314 +27315-27321 +27316-27321 +27318-27321 +27319-27320 +27322-27345 +27322-27345 +27323-27345 +27323-27339 +27323-27324 +27325-27335 +27325-27328 +27326-27328 +27327-27328 +27329-27335 +27330-27335 +27331-27333 +27332-27333 +27334-27335 +27337-27339 +27338-27339 +27340-27345 +27341-27345 +27341-27342 +27344-27345 +27345 +27346-27370 +27346-27370 +27347-27370 +27347-27364 +27347 +27348-27364 +27349-27364 +27351-27364 +27352-27355 +27353-27355 +27354-27355 +27357-27364 +27357-27358 +27359-27360 +27361-27362 +27363-27364 +27365-27370 +27366-27370 +27366-27367 +27369-27370 +27371-27377 +27371-27377 +27372-27377 +27372-27376 +27372-27374 +27378-27387 +27378-27387 +27379-27387 +27380-27384 +27380-27381 +27382-27384 +27383-27384 +27385-27387 +27386-27387 +27388-27400 +27388-27400 +27389-27400 +27389-27394 +27390-27394 +27390-27391 +27392-27394 +27393-27394 +27395-27400 +27397-27399 +27397-27398 +27401-27412 +27401-27412 +27402-27412 +27403-27412 +27403-27406 +27404-27406 +27405-27406 +27407-27412 +27410-27412 +27411-27412 +27413-27433 +27413-27433 +27414-27433 +27414-27417 +27416-27417 +27418-27433 +27418-27425 +27418-27423 +27419-27423 +27420-27423 +27421-27423 +27422-27423 +27426-27433 +27428-27433 +27429-27433 +27430-27433 +27431-27433 +27431-27432 +27434-27440 +27434-27440 +27434-27436 +27435-27436 +27438-27440 +27439-27440 +27441-27454 +27441-27454 +27442-27454 +27442-27446 +27443-27444 +27445-27446 +27447-27454 +27447-27448 +27449-27453 +27449-27451 +27449-27450 +27452-27453 +27455-27467 +27455-27467 +27456-27467 +27457-27459 +27458-27459 +27460-27467 +27460-27463 +27461-27463 +27462-27463 +27464-27467 +27465-27467 +27466-27467 +27468-27470 +27468-27470 +27469-27470 +27471-27476 +27471-27476 +27472-27476 +27472-27473 +27475-27476 +27477-27480 +27477-27480 +27481-27485 +27481-27485 +27481-27482 +27484-27485 +27486-27504 +27486-27504 +27487-27504 +27487-27499 +27487-27492 +27488-27489 +27491-27492 +27493-27499 +27494-27499 +27494-27495 +27495 +27497-27499 +27500-27504 +27501-27504 +27505-27507 +27505-27507 +27505-27506 +27508-27515 +27508-27515 +27509-27512 +27510-27512 +27511-27512 +27513-27515 +27514-27515 +27516-27536 +27516-27536 +27517-27536 +27517-27519 +27518-27519 +27520-27536 +27520-27528 +27521-27528 +27523-27524 +27525-27528 +27526-27528 +27527-27528 +27529-27532 +27530-27532 +27534-27536 +27535-27536 +27537-27551 +27537-27551 +27538-27551 +27538-27543 +27538-27539 +27540-27543 +27541-27543 +27542-27543 +27545-27547 +27546-27547 +27548-27551 +27549-27551 +27552-27560 +27552-27560 +27553-27560 +27553-27555 +27554 +27556-27560 +27557-27560 +27558-27560 +27561-27566 +27561-27566 +27562-27566 +27563-27566 +27567-27589 +27567-27589 +27568-27589 +27568-27572 +27569-27572 +27569-27570 +27571-27572 +27573-27576 +27574-27576 +27574-27575 +27579-27581 +27580-27581 +27582-27589 +27582 +27583-27589 +27583-27584 +27586-27589 +27587-27589 +27588-27589 +27590-27609 +27590-27609 +27591-27609 +27591-27595 +27592-27595 +27593-27595 +27594-27595 +27596-27609 +27597-27609 +27599-27609 +27599-27602 +27600-27602 +27601-27602 +27603-27609 +27604-27609 +27606-27609 +27607-27609 +27607-27608 +27610-27635 +27610-27635 +27610-27611 +27612-27635 +27613-27635 +27613-27615 +27614-27615 +27617-27618 +27619-27635 +27620-27635 +27620-27621 +27623-27635 +27625-27635 +27626-27635 +27626-27627 +27628-27635 +27629-27630 +27631-27634 +27632-27634 +27633-27634 +27636-27643 +27636-27643 +27637-27643 +27640-27643 +27640-27642 +27640-27641 +27642 +27644-27647 +27644-27647 +27645-27647 +27648-27665 +27648-27665 +27649-27665 +27649-27661 +27649-27651 +27650-27651 +27652-27656 +27653-27656 +27654-27656 +27655-27656 +27657-27661 +27658-27661 +27658 +27659-27661 +27660-27661 +27662-27665 +27663-27665 +27664-27665 +27666-27672 +27666-27672 +27667-27672 +27667-27668 +27669-27672 +27670-27672 +27671-27672 +27673-27693 +27673-27693 +27674-27693 +27674-27677 +27675-27677 +27676-27677 +27678-27693 +27678-27679 +27681-27693 +27682-27683 +27684-27693 +27685-27693 +27687-27693 +27687-27689 +27688-27689 +27690-27693 +27691-27693 +27692-27693 +27694-27703 +27694-27703 +27695-27703 +27695 +27696-27703 +27697-27703 +27699-27701 +27700-27701 +27702-27703 +27703 +27704-27740 +27704-27740 +27705-27740 +27708-27740 +27708-27717 +27708-27717 +27708-27710 +27709-27710 +27711-27717 +27712-27717 +27713-27714 +27715-27717 +27716-27717 +27718-27740 +27719-27740 +27719-27728 +27720-27728 +27720-27724 +27720-27723 +27721-27723 +27722-27723 +27725-27728 +27726-27728 +27727-27728 +27729-27740 +27730-27740 +27731-27740 +27731-27733 +27731-27732 +27734-27740 +27734-27735 +27736-27739 +27737-27739 +27738-27739 +27741-27748 +27741-27748 +27743-27748 +27744-27748 +27746-27748 +27746-27747 +27749-27766 +27749-27766 +27750-27766 +27750-27751 +27752-27766 +27752-27755 +27752-27753 +27754 +27756-27758 +27757-27758 +27759-27766 +27760-27766 +27761-27766 +27761 +27762-27766 +27764-27766 +27765-27766 +27767-27777 +27767-27777 +27768-27777 +27768-27772 +27768-27769 +27770 +27773-27777 +27774-27777 +27775-27776 +27778-27791 +27778-27791 +27779-27791 +27781-27791 +27783-27791 +27783-27787 +27784-27787 +27784-27785 +27786-27787 +27788-27791 +27789-27791 +27790-27791 +27792-27817 +27792-27817 +27793-27794 +27795-27817 +27796-27817 +27797-27798 +27800-27804 +27801-27804 +27802-27804 +27803-27804 +27805-27817 +27806-27817 +27806-27808 +27806-27807 +27809-27817 +27810-27817 +27813-27817 +27814-27817 +27815-27817 +27816-27817 +27818-27825 +27818-27825 +27819-27825 +27819 +27821-27825 +27822-27825 +27823-27825 +27824-27825 +27826-27852 +27826-27852 +27827-27852 +27829-27830 +27831-27852 +27832-27852 +27832-27842 +27834-27842 +27835-27842 +27836-27842 +27836-27838 +27837-27838 +27839-27842 +27840-27842 +27840-27841 +27843-27852 +27844-27852 +27844-27847 +27845-27847 +27846-27847 +27850-27852 +27851-27852 +27853-27864 +27853-27864 +27854-27864 +27854-27855 +27858-27864 +27858-27861 +27859-27861 +27859-27860 +27862-27864 +27863-27864 +27865-27886 +27865-27886 +27866-27886 +27868-27869 +27870-27886 +27871-27872 +27873-27886 +27874-27886 +27876-27878 +27877-27878 +27879-27883 +27880-27883 +27881-27883 +27887-27899 +27887-27899 +27888-27899 +27891-27899 +27891-27895 +27892-27895 +27893-27895 +27896-27899 +27896-27897 +27900-27904 +27900-27904 +27901-27904 +27902-27903 +27905-27921 +27905-27921 +27906-27921 +27906-27912 +27907-27912 +27908-27912 +27909-27912 +27909-27911 +27910-27911 +27913-27921 +27914-27921 +27915-27917 +27916-27917 +27918-27921 +27918-27919 +27920-27921 +27921 +27922-27952 +27922-27952 +27923-27952 +27923-27933 +27924-27931 +27924-27925 +27926-27928 +27927-27928 +27929-27931 +27930-27931 +27932-27933 +27934-27938 +27935-27938 +27936-27938 +27936 +27937-27938 +27938 +27939-27952 +27940-27952 +27942-27952 +27942-27948 +27944-27946 +27945-27946 +27947-27948 +27949-27952 +27949-27950 +27951-27952 +27952 +27953-27978 +27953-27978 +27954-27978 +27954-27959 +27954-27955 +27957-27959 +27958-27959 +27960-27978 +27961-27978 +27961-27970 +27962-27970 +27963-27970 +27963-27965 +27964-27965 +27967-27968 +27969-27970 +27971-27978 +27972-27978 +27973-27978 +27973-27975 +27973-27975 +27974-27975 +27979-27984 +27979-27984 +27980-27982 +27980-27981 +27983-27984 +27985-27992 +27985-27992 +27986-27992 +27987-27989 +27991-27992 +27993-28004 +27993-28004 +27994-28004 +27994-27998 +27994 +27995-27998 +27996-27998 +27997-27998 +27999-28004 +28000-28004 +28001-28002 +28003-28004 +28003 +28005-28009 +28005-28009 +28007-28009 +28007-28008 +28010-28017 +28010-28017 +28010-28012 +28010 +28011-28012 +28012 +28013-28017 +28014-28017 +28016-28017 +28018-28025 +28018-28025 +28018-28021 +28019-28021 +28019-28020 +28022-28025 +28023-28025 +28023-28024 +28026-28033 +28026-28033 +28027-28033 +28028 +28030-28033 +28030-28032 +28031-28032 +28034-28051 +28034-28051 +28035-28051 +28035-28045 +28035-28039 +28035-28036 +28038-28039 +28040-28045 +28041-28045 +28041-28042 +28043-28045 +28044-28045 +28046-28051 +28047-28051 +28049-28051 +28052-28064 +28052-28064 +28053-28064 +28053-28055 +28054-28055 +28056-28064 +28057-28064 +28059-28064 +28059-28063 +28059-28061 +28060-28061 +28062-28063 +28063 +28064 +28065-28078 +28065-28078 +28065-28067 +28066-28067 +28068-28078 +28070-28073 +28071-28073 +28072-28073 +28074-28078 +28075-28078 +28076-28078 +28077-28078 +28079-28080 +28079-28080 +28079 +28080 +28081-28085 +28081-28085 +28082-28084 +28083-28084 +28086-28113 +28086-28113 +28087-28113 +28087-28096 +28088-28090 +28092-28096 +28092-28093 +28094-28096 +28095-28096 +28097-28113 +28098-28113 +28098-28099 +28100-28104 +28101-28104 +28102-28104 +28103-28104 +28105-28113 +28106-28113 +28106-28107 +28108-28110 +28109-28110 +28111-28113 +28112-28113 +28114-28131 +28114-28131 +28115-28131 +28116-28118 +28117-28118 +28121-28131 +28122-28131 +28122-28126 +28122-28124 +28123-28124 +28127-28128 +28129-28131 +28130-28131 +28132-28141 +28132-28141 +28133-28141 +28133-28138 +28133 +28134-28136 +28138 +28139-28141 +28140-28141 +28142-28150 +28142-28150 +28143-28150 +28143-28147 +28145-28146 +28148-28150 +28149-28150 +28151-28168 +28151-28168 +28152-28168 +28152-28163 +28152-28155 +28153-28155 +28154-28155 +28155 +28156-28158 +28157-28158 +28160-28163 +28161-28163 +28162-28163 +28164-28168 +28165-28168 +28166-28168 +28167-28168 +28169-28184 +28169-28184 +28170-28184 +28170 +28171-28172 +28175-28184 +28175-28177 +28176-28177 +28176-28177 +28178-28184 +28179-28182 +28180-28182 +28181-28182 +28183-28184 +28185-28197 +28185-28197 +28185-28193 +28185-28186 +28188-28189 +28190-28193 +28190-28192 +28191-28192 +28194-28197 +28195-28197 +28198-28202 +28198-28202 +28199-28202 +28200-28202 +28201-28202 +28203-28207 +28203-28207 +28204-28207 +28204-28205 +28208-28226 +28208-28226 +28209-28226 +28209-28216 +28209-28210 +28213-28216 +28215-28216 +28217-28226 +28218-28226 +28218-28219 +28220-28226 +28221-28226 +28222-28224 +28223-28224 +28227-28244 +28227-28244 +28228-28244 +28228-28233 +28229-28230 +28231-28233 +28232-28233 +28234-28244 +28235-28244 +28236-28244 +28237-28244 +28237-28238 +28239-28241 +28240-28241 +28242-28244 +28243-28244 +28245-28269 +28245-28269 +28246-28269 +28246-28258 +28246-28247 +28248-28249 +28252-28258 +28253-28258 +28254-28258 +28255-28258 +28256-28258 +28257-28258 +28259-28269 +28260-28269 +28260-28264 +28260-28261 +28262-28264 +28263-28264 +28265-28269 +28266-28269 +28267-28269 +28268-28269 +28270-28288 +28270-28288 +28271-28288 +28271-28285 +28271-28276 +28271-28272 +28273-28276 +28274-28276 +28275-28276 +28278-28280 +28279-28280 +28282-28285 +28283-28285 +28284-28285 +28286-28288 +28287-28288 +28289-28299 +28289-28299 +28290-28299 +28290-28293 +28292-28293 +28294-28299 +28295-28299 +28296-28297 +28300-28326 +28300-28326 +28301-28326 +28302 +28304-28305 +28306-28326 +28307-28326 +28308-28326 +28310-28326 +28312-28326 +28313-28326 +28313-28319 +28315-28319 +28315-28317 +28315-28316 +28318-28319 +28320-28326 +28321-28326 +28321-28323 +28322-28323 +28324-28325 +28327-28334 +28327-28334 +28328-28334 +28332-28334 +28333-28334 +28335-28351 +28335-28351 +28336-28351 +28336-28338 +28337-28338 +28339-28340 +28342-28343 +28344-28351 +28345-28351 +28348-28351 +28352-28358 +28352-28358 +28353-28358 +28353-28354 +28355-28358 +28356-28358 +28359-28374 +28359-28374 +28359-28363 +28360-28361 +28364-28374 +28365-28374 +28367-28374 +28369-28374 +28369-28370 +28371-28374 +28372-28374 +28373-28374 +28375-28398 +28375-28398 +28376-28398 +28376-28377 +28379-28398 +28379-28380 +28381-28398 +28382-28398 +28383-28398 +28383-28391 +28383-28386 +28384-28386 +28385-28386 +28387-28390 +28388-28390 +28389-28390 +28392-28398 +28393-28398 +28394-28398 +28395-28398 +28396-28398 +28397-28398 +28399-28417 +28399-28417 +28400-28417 +28400-28401 +28402-28405 +28403-28405 +28404-28405 +28407-28417 +28407-28414 +28409-28410 +28412-28414 +28413-28414 +28415-28417 +28418-28425 +28418-28425 +28419-28425 +28419-28420 +28422-28425 +28426-28448 +28426-28448 +28427-28448 +28427-28442 +28429-28442 +28429-28430 +28431-28435 +28432-28435 +28433-28435 +28434-28435 +28436-28438 +28437-28438 +28439-28442 +28440-28442 +28442 +28443-28448 +28444-28448 +28444-28445 +28449-28478 +28449-28478 +28450-28478 +28450-28456 +28451-28452 +28454-28456 +28455-28456 +28457-28478 +28457-28462 +28458-28462 +28459-28462 +28460-28462 +28461-28462 +28463-28478 +28464-28478 +28464-28467 +28465-28467 +28465-28466 +28468-28469 +28471-28478 +28471-28472 +28473-28477 +28474-28477 +28474-28475 +28476-28477 +28479-28489 +28479-28489 +28480-28489 +28482-28489 +28483-28489 +28483-28486 +28483-28484 +28484 +28485-28486 +28486 +28487-28489 +28490-28495 +28490-28495 +28491-28495 +28493-28495 +28494-28495 +28496-28510 +28496-28510 +28497-28510 +28497-28498 +28499-28500 +28503-28510 +28504-28505 +28505 +28506-28510 +28507-28510 +28508-28509 +28511-28514 +28511-28514 +28512-28514 +28515-28531 +28515-28531 +28516-28531 +28516-28517 +28519-28520 +28520 +28522-28523 +28524-28531 +28524-28527 +28525-28526 +28528-28531 +28529-28531 +28529-28530 +28532-28545 +28532-28545 +28533-28545 +28535-28545 +28535 +28536-28545 +28537-28545 +28538-28545 +28539-28545 +28541-28545 +28541-28543 +28541-28542 +28544-28545 +28546-28551 +28546-28551 +28547-28551 +28548-28549 +28552-28570 +28552-28570 +28553-28570 +28554-28555 +28556-28557 +28558-28570 +28559-28570 +28561-28562 +28563-28570 +28564-28570 +28564-28567 +28571-28573 +28571-28573 +28572-28573 +28572 +28574-28596 +28574-28596 +28575-28596 +28575-28593 +28577-28578 +28579-28589 +28581-28589 +28582-28589 +28582-28583 +28584-28585 +28586-28589 +28587-28589 +28588-28589 +28590-28592 +28591-28592 +28594-28596 +28595-28596 +28597-28607 +28597-28607 +28598-28607 +28598-28601 +28600-28601 +28602-28607 +28604-28607 +28605-28607 +28606-28607 +28608-28614 +28608-28614 +28609-28614 +28610-28611 +28613-28614 +28615-28620 +28615-28620 +28616-28620 +28618-28619 +28621-28634 +28621-28634 +28622-28634 +28622-28623 +28627-28634 +28628-28634 +28631-28634 +28635-28644 +28635-28644 +28636-28644 +28636-28637 +28641-28644 +28642-28644 +28643-28644 +28645-28653 +28645-28653 +28646-28653 +28646-28647 +28650-28653 +28650-28651 +28652-28653 +28654-28668 +28654-28668 +28655-28668 +28655-28656 +28657-28659 +28658-28659 +28660-28668 +28661-28668 +28662-28668 +28663-28668 +28664-28666 +28665-28666 +28669-28677 +28669-28677 +28670-28677 +28670 +28671-28672 +28674-28677 +28675-28677 +28676-28677 +28678-28690 +28678-28690 +28679-28690 +28679-28680 +28683-28690 +28684-28690 +28685-28690 +28687-28690 +28688-28690 +28689-28690 +28691-28699 +28691-28699 +28692-28699 +28693-28699 +28694-28699 +28694-28695 +28698-28699 +28700-28711 +28700-28711 +28701-28711 +28701-28702 +28704-28705 +28706-28711 +28707-28711 +28708-28709 +28712-28727 +28712-28727 +28713-28727 +28713-28714 +28716 +28719-28727 +28720-28727 +28722-28727 +28724-28727 +28725-28727 +28726-28727 +28728-28733 +28728-28733 +28729-28733 +28732-28733 +28734-28742 +28734-28742 +28735-28742 +28735-28736 +28739-28742 +28740-28742 +28741-28742 +28743-28748 +28743-28748 +28744-28748 +28747-28748 +28749-28768 +28749-28768 +28750-28768 +28750-28761 +28750-28751 +28752-28757 +28753-28757 +28753-28754 +28755-28756 +28760-28761 +28762-28768 +28763-28768 +28764-28765 +28766 +28767-28768 +28768 +28769-28784 +28769-28784 +28770-28784 +28770-28779 +28770-28771 +28774-28779 +28775-28779 +28776-28779 +28777-28779 +28780-28784 +28781-28784 +28782-28784 +28783-28784 +28785-28794 +28785-28794 +28786-28794 +28786-28788 +28789-28794 +28790-28794 +28792-28794 +28793-28794 +28795-28802 +28795-28802 +28796-28802 +28797-28802 +28799-28802 +28800-28802 +28800-28802 +28801-28802 +28803-28817 +28803-28817 +28804-28817 +28804-28808 +28805-28807 +28806-28807 +28809-28811 +28810-28811 +28812-28817 +28813-28817 +28813-28815 +28814-28815 +28818-28837 +28818-28837 +28819-28837 +28819-28831 +28819-28821 +28820-28821 +28822-28831 +28822-28825 +28824-28825 +28826-28831 +28827-28831 +28829-28831 +28830-28831 +28832-28837 +28833-28837 +28833-28834 +28835-28837 +28836-28837 +28838-28856 +28838-28856 +28839-28856 +28840-28851 +28840-28846 +28840-28843 +28840-28841 +28840 +28842-28843 +28844-28846 +28845-28846 +28847-28851 +28848-28851 +28849-28851 +28850-28851 +28852-28856 +28853-28856 +28854-28856 +28855-28856 +28857-28868 +28857-28868 +28858-28868 +28860-28868 +28861-28868 +28861-28862 +28863-28868 +28864-28868 +28865-28866 +28867-28868 +28869-28877 +28869-28877 +28870-28877 +28870-28873 +28872-28873 +28872 +28874-28877 +28875-28877 +28878-28892 +28878-28892 +28879-28892 +28879-28880 +28881-28892 +28882-28892 +28882-28889 +28883-28885 +28884-28885 +28886-28889 +28888-28889 +28890-28892 +28893-28899 +28893-28899 +28894-28899 +28894-28896 +28895-28896 +28897-28899 +28898-28899 +28900-28911 +28900-28911 +28901-28911 +28901-28902 +28903-28907 +28904-28907 +28905-28907 +28906-28907 +28908-28911 +28908-28911 +28909-28911 +28910-28911 +28912-28925 +28912-28925 +28913-28925 +28913-28914 +28916-28917 +28918-28925 +28918-28920 +28919-28920 +28921-28925 +28922-28925 +28923-28925 +28924-28925 +28926-28952 +28926-28952 +28927-28952 +28927-28928 +28928 +28931-28952 +28931-28934 +28932-28934 +28933-28934 +28935-28952 +28936-28952 +28937-28952 +28937 +28938-28946 +28938-28946 +28939-28946 +28939-28941 +28940-28941 +28942-28946 +28943-28946 +28944-28946 +28945-28946 +28949-28952 +28950-28952 +28951-28952 +28953-28969 +28953-28969 +28954-28956 +28955-28956 +28957-28962 +28958-28959 +28960-28962 +28961-28962 +28964-28969 +28964-28965 +28966-28969 +28966-28967 +28970-28983 +28970-28983 +28970-28979 +28970-28974 +28970-28971 +28972-28974 +28973-28974 +28977-28979 +28978-28979 +28980-28983 +28981-28983 +28981 +28982-28983 +28983 +28984-28990 +28984-28990 +28985-28990 +28985-28988 +28986-28988 +28987-28988 +28991-29003 +28991-29003 +28992-29003 +28992-28994 +28993-28994 +28995-29003 +28997-29000 +28998-29000 +28999-29000 +29001-29003 +29002-29003 +29004-29029 +29004-29029 +29005-29029 +29005-29007 +29006-29007 +29009-29010 +29011-29012 +29013-29029 +29013-29016 +29013-29014 +29013 +29014 +29015-29016 +29017-29029 +29018-29019 +29020-29029 +29020-29025 +29020-29022 +29020-29022 +29021-29022 +29023-29025 +29023-29025 +29024-29025 +29026-29029 +29026-29027 +29030-29038 +29030-29038 +29031-29038 +29031-29033 +29032-29033 +29033 +29034 +29036-29038 +29039-29057 +29039-29057 +29040-29057 +29041-29045 +29041 +29042-29045 +29043-29045 +29046-29047 +29050-29057 +29051-29057 +29051 +29052-29057 +29052 +29053-29057 +29054-29057 +29056-29057 +29058-29064 +29058-29064 +29059-29064 +29059-29060 +29061-29063 +29062-29063 +29065-29076 +29065-29076 +29066-29076 +29066-29069 +29067-29069 +29068-29069 +29071-29072 +29073-29076 +29073-29074 +29075-29076 +29077-29096 +29077-29096 +29078-29096 +29078-29084 +29078-29079 +29080-29084 +29081-29084 +29082-29084 +29083-29084 +29085-29088 +29086-29088 +29087-29088 +29090-29096 +29091-29093 +29092-29093 +29094-29095 +29097-29139 +29097-29139 +29098-29139 +29099-29139 +29100-29139 +29100-29103 +29101-29103 +29101-29102 +29104-29139 +29104-29105 +29106-29139 +29106-29131 +29106-29120 +29106-29109 +29107-29109 +29108-29109 +29110-29118 +29111-29118 +29112-29118 +29113-29118 +29113-29117 +29113-29115 +29114-29115 +29116-29117 +29119-29120 +29121-29131 +29121-29128 +29122-29126 +29123-29126 +29124-29126 +29125-29126 +29129-29131 +29130-29131 +29132-29139 +29133-29139 +29133-29134 +29135-29139 +29136-29139 +29138-29139 +29140-29176 +29140-29176 +29141-29176 +29141-29143 +29144-29176 +29144-29149 +29145-29149 +29146-29149 +29147-29149 +29150-29176 +29150-29170 +29150 +29151-29165 +29151-29156 +29151-29154 +29152-29154 +29153-29154 +29155-29156 +29157-29165 +29157-29159 +29158-29159 +29160-29161 +29162-29165 +29163-29165 +29164-29165 +29166 +29168-29170 +29169-29170 +29171-29176 +29172-29176 +29173-29176 +29174-29176 +29175-29176 +29177-29192 +29177-29192 +29178-29192 +29178-29183 +29178-29180 +29178-29179 +29181-29183 +29182-29183 +29184-29192 +29185-29192 +29185-29187 +29186-29187 +29190-29192 +29191-29192 +29193-29202 +29193-29202 +29194-29202 +29194-29197 +29195-29197 +29196-29197 +29199-29200 +29201-29202 +29203-29228 +29203-29228 +29204-29228 +29204-29210 +29204-29205 +29206-29207 +29209-29210 +29211-29220 +29212-29220 +29214-29220 +29215-29220 +29216-29220 +29217-29218 +29219-29220 +29221-29228 +29222-29228 +29224-29228 +29225-29228 +29226-29228 +29227-29228 +29229-29240 +29229-29240 +29230-29240 +29230-29237 +29230-29233 +29230-29231 +29232-29233 +29234-29237 +29235-29237 +29236-29237 +29239-29240 +29241-29260 +29241-29260 +29242-29260 +29242-29244 +29243-29244 +29245-29254 +29245-29247 +29246-29247 +29248-29252 +29249-29252 +29250-29252 +29251-29252 +29253-29254 +29257-29260 +29258-29260 +29258 +29261-29274 +29261-29274 +29262-29274 +29262-29271 +29262-29263 +29264-29267 +29265-29267 +29266-29267 +29269-29271 +29270-29271 +29272-29274 +29273-29274 +29275-29288 +29275-29288 +29276-29288 +29277-29278 +29279-29288 +29282-29283 +29284-29288 +29285-29288 +29286-29288 +29287-29288 +29289-29299 +29289-29299 +29290-29299 +29290-29295 +29290 +29292-29295 +29293-29295 +29294-29295 +29296-29299 +29297-29299 +29298-29299 +29300-29315 +29300-29315 +29301-29315 +29301-29313 +29301-29304 +29302-29304 +29303-29304 +29306-29313 +29308-29310 +29309-29310 +29311-29313 +29312-29313 +29314-29315 +29315 +29316-29321 +29316-29321 +29317-29321 +29320-29321 +29322-29327 +29322-29327 +29323-29327 +29323-29325 +29324-29325 +29326-29327 +29327 +29328-29331 +29328-29331 +29328 +29329-29331 +29332-29337 +29332-29337 +29332 +29333-29337 +29333-29337 +29334-29337 +29335-29337 +29338-29358 +29338-29358 +29339-29358 +29339 +29340-29358 +29341-29346 +29341-29343 +29342-29343 +29344-29346 +29345-29346 +29347-29358 +29348-29358 +29348-29355 +29348-29352 +29350-29352 +29351-29352 +29353-29355 +29356-29358 +29357-29358 +29359-29370 +29359-29370 +29360-29370 +29360-29364 +29360 +29362-29364 +29363-29364 +29365-29370 +29366-29370 +29368-29370 +29369-29370 +29371-29376 +29371-29376 +29372-29376 +29375-29376 +29376 +29377-29391 +29377-29391 +29378-29391 +29378-29381 +29380-29381 +29384-29391 +29384-29386 +29385-29386 +29387-29391 +29387-29388 +29390-29391 +29392-29401 +29392-29401 +29393 +29395-29398 +29396-29398 +29396-29397 +29399-29401 +29399 +29400-29401 +29401 +29402-29410 +29402-29410 +29403-29409 +29404-29409 +29405-29409 +29405 +29406-29409 +29407-29409 +29408-29409 +29411-29424 +29411-29424 +29412-29424 +29412-29413 +29414-29417 +29414-29416 +29415-29416 +29419-29421 +29420-29421 +29422-29424 +29423-29424 +29425-29432 +29425-29432 +29426 +29428-29429 +29430-29432 +29433-29453 +29433-29453 +29434-29453 +29434-29439 +29435 +29436-29438 +29437-29438 +29440-29453 +29441-29453 +29442-29446 +29442-29444 +29443-29444 +29445-29446 +29447-29453 +29448-29453 +29448-29451 +29449-29451 +29450-29451 +29454-29467 +29454-29467 +29455-29467 +29457-29467 +29457-29461 +29458-29461 +29459-29461 +29459-29460 +29463-29464 +29465-29467 +29466-29467 +29468-29476 +29468-29476 +29468-29472 +29468-29471 +29469-29471 +29469 +29470-29471 +29471 +29473-29476 +29474-29476 +29474-29475 +29475 +29477-29482 +29477-29482 +29478-29482 +29478-29479 +29480-29481 +29481 +29483-29508 +29483-29508 +29483-29488 +29483-29486 +29484-29486 +29485-29486 +29489-29491 +29489-29490 +29492-29493 +29494-29501 +29494-29497 +29495-29497 +29495-29496 +29498-29501 +29498-29499 +29502-29508 +29502-29505 +29502-29503 +29506-29508 +29507-29508 +29509-29543 +29509-29543 +29510-29543 +29511-29543 +29511-29527 +29511-29521 +29511-29513 +29511-29512 +29514-29517 +29515-29517 +29516-29517 +29519-29521 +29520-29521 +29522-29527 +29523-29527 +29524-29527 +29525-29527 +29526-29527 +29528-29543 +29529-29543 +29530 +29533-29543 +29533-29535 +29533-29534 +29536-29543 +29537-29543 +29537-29538 +29540-29543 +29541-29543 +29542-29543 +29542 +29544-29553 +29544-29553 +29545-29553 +29545-29547 +29546-29547 +29547 +29548-29551 +29549-29551 +29550-29551 +29554-29576 +29554-29576 +29555-29576 +29555-29556 +29557-29560 +29558-29560 +29559-29560 +29561-29565 +29561-29562 +29563-29565 +29564-29565 +29567-29568 +29569-29576 +29570-29576 +29570-29572 +29571-29572 +29573-29576 +29574-29576 +29575-29576 +29577-29618 +29577-29618 +29577-29610 +29577-29599 +29578-29599 +29580-29587 +29582-29587 +29583-29587 +29584-29587 +29584-29586 +29585-29586 +29588-29599 +29589-29599 +29591-29599 +29592-29599 +29592-29593 +29594-29596 +29595-29596 +29598-29599 +29600-29608 +29602-29605 +29606-29608 +29609-29610 +29609-29610 +29611-29618 +29612-29618 +29613-29618 +29613-29616 +29613-29615 +29613-29614 +29617-29618 +29619-29645 +29619-29645 +29619-29633 +29620-29626 +29621-29626 +29622-29626 +29623-29626 +29624-29626 +29625-29626 +29627-29633 +29627-29630 +29627-29628 +29629-29630 +29631-29633 +29631-29633 +29632-29633 +29634-29645 +29635-29645 +29635-29640 +29637-29640 +29638-29640 +29639-29640 +29641-29645 +29642-29645 +29642-29644 +29643-29644 +29646-29662 +29646-29662 +29647-29662 +29650-29652 +29651-29652 +29653-29662 +29654-29661 +29655-29661 +29656-29661 +29657-29661 +29657-29659 +29658-29659 +29660-29661 +29663-29680 +29663-29680 +29664-29680 +29668-29680 +29669-29680 +29669-29672 +29670-29671 +29673-29680 +29674-29680 +29675-29676 +29677-29680 +29678-29680 +29679-29680 +29681-29709 +29681-29709 +29682-29709 +29682-29695 +29683-29695 +29684-29695 +29685-29695 +29687-29692 +29688-29692 +29689-29692 +29690-29692 +29691-29692 +29693-29695 +29694-29695 +29696-29709 +29696-29700 +29697-29700 +29698-29700 +29699-29700 +29702-29709 +29703-29709 +29704-29709 +29705-29709 +29706-29709 +29707-29709 +29708-29709 +29710-29722 +29710-29722 +29711-29722 +29711-29715 +29712-29715 +29713-29715 +29714-29715 +29716-29717 +29719-29722 +29720-29722 +29721-29722 +29723-29734 +29723-29734 +29724-29734 +29726-29727 +29728-29734 +29729-29734 +29730-29734 +29731-29734 +29732-29734 +29733-29734 +29735-29743 +29735-29743 +29736-29743 +29736-29738 +29738 +29739-29743 +29740-29743 +29742-29743 +29744-29771 +29744-29771 +29745-29771 +29746-29747 +29748-29749 +29750-29771 +29750-29752 +29752 +29753-29771 +29754-29771 +29754-29757 +29755-29757 +29756-29757 +29758-29765 +29759-29765 +29759-29762 +29759-29761 +29760-29761 +29766-29771 +29767-29771 +29768-29770 +29769-29770 +29772-29777 +29772-29777 +29773-29777 +29775-29777 +29776-29777 +29778-29784 +29778-29784 +29779-29784 +29780-29783 +29781-29783 +29782-29783 +29785-29816 +29785-29816 +29786-29816 +29786-29789 +29788-29789 +29790-29796 +29791-29796 +29791-29793 +29792-29793 +29794-29795 +29797-29805 +29798-29805 +29798-29799 +29801-29805 +29802-29805 +29803-29805 +29804-29805 +29806-29816 +29807-29816 +29807-29810 +29808-29810 +29809-29810 +29812-29816 +29813-29816 +29814-29816 +29815-29816 +29817-29840 +29817-29840 +29818-29840 +29820-29821 +29822-29826 +29823-29826 +29823-29825 +29824-29825 +29827-29840 +29827-29836 +29827-29831 +29828-29829 +29830-29831 +29832-29836 +29833-29836 +29834-29836 +29835-29836 +29837-29840 +29839-29840 +29840 +29841-29850 +29841-29850 +29842-29850 +29844-29846 +29845-29846 +29847-29850 +29847-29848 +29851-29863 +29851-29863 +29852-29863 +29852-29854 +29855-29863 +29856-29863 +29856-29858 +29857-29858 +29860-29863 +29861-29863 +29862-29863 +29864-29886 +29864-29886 +29865-29886 +29865 +29866-29867 +29870-29886 +29870-29877 +29872-29877 +29873-29877 +29874-29877 +29875-29877 +29876-29877 +29878-29886 +29879-29886 +29880-29886 +29880-29882 +29881-29882 +29883-29886 +29884-29886 +29887-29912 +29887-29912 +29888-29912 +29890-29894 +29890 +29891-29894 +29892-29894 +29894 +29895-29899 +29896-29899 +29896-29897 +29900-29912 +29901-29912 +29904-29912 +29904-29906 +29905-29906 +29907-29912 +29909-29912 +29910-29912 +29911-29912 +29913-29928 +29913-29928 +29914-29928 +29914-29919 +29914-29915 +29916-29917 +29918-29919 +29920-29928 +29921-29928 +29922-29928 +29923-29928 +29924-29928 +29925-29927 +29926-29927 +29929-29942 +29929-29942 +29930-29942 +29930-29934 +29930 +29933-29934 +29935-29942 +29936-29942 +29937-29942 +29938-29942 +29940-29942 +29941-29942 +29943-29950 +29943-29950 +29944-29950 +29944-29947 +29945-29946 +29948-29950 +29949-29950 +29951-29964 +29951-29964 +29952-29964 +29952-29959 +29952 +29953-29959 +29954-29959 +29955-29959 +29956-29959 +29957-29959 +29958-29959 +29960-29964 +29961-29964 +29962-29964 +29963-29964 +29965-29974 +29965-29974 +29966-29974 +29966-29969 +29967-29969 +29968-29969 +29971-29974 +29972-29974 +29973-29974 +29975-29994 +29975-29994 +29976-29994 +29978-29979 +29980-29994 +29981-29994 +29982-29994 +29986-29994 +29987-29994 +29988-29994 +29990-29994 +29991-29992 +29993-29994 +29995-30030 +29995-30030 +29996-30030 +29996-30024 +29996-30000 +29997-30000 +29998-30000 +29999-30000 +30002-30004 +30002-30003 +30005-30007 +30006-30007 +30008-30014 +30009-30014 +30009-30011 +30010-30011 +30012-30014 +30015-30024 +30016-30024 +30017-30024 +30018-30024 +30018-30021 +30019-30021 +30022-30024 +30023-30024 +30025-30030 +30026-30030 +30026-30029 +30027-30029 +30028-30029 +30031-30041 +30031-30041 +30032-30041 +30032 +30033-30034 +30036-30041 +30036-30037 +30037 +30038-30041 +30038-30039 +30040-30041 +30042-30054 +30042-30054 +30043-30054 +30043-30047 +30044-30046 +30045-30046 +30048-30054 +30049-30054 +30050-30054 +30052-30054 +30052-30053 +30055-30068 +30055-30068 +30056-30068 +30057-30058 +30060-30068 +30060-30062 +30062 +30063-30068 +30064-30068 +30066-30068 +30067-30068 +30069-30082 +30069-30082 +30070-30082 +30071-30076 +30071-30073 +30072-30073 +30074-30076 +30075-30076 +30077-30082 +30078-30082 +30079-30081 +30080-30081 +30083-30117 +30083-30117 +30083-30085 +30086-30089 +30087-30089 +30087-30088 +30090-30101 +30091-30101 +30093-30095 +30094-30095 +30096-30101 +30097-30101 +30098-30101 +30099-30101 +30100-30101 +30102-30110 +30103-30110 +30104-30107 +30105-30107 +30106-30107 +30108-30110 +30109-30110 +30111-30117 +30112-30117 +30112-30114 +30113-30114 +30118-30130 +30118-30130 +30119-30130 +30121-30123 +30122-30123 +30124-30130 +30124-30126 +30127-30130 +30128-30130 +30131-30146 +30131-30146 +30132-30146 +30132 +30133-30134 +30137-30146 +30137-30141 +30137-30138 +30140-30141 +30142-30146 +30143-30146 +30143-30144 +30147-30154 +30147-30154 +30148-30154 +30148-30151 +30149-30151 +30150-30151 +30150 +30153-30154 +30155-30184 +30155-30184 +30156-30184 +30157-30176 +30157-30167 +30157-30160 +30157-30160 +30158-30160 +30159-30160 +30161-30162 +30165-30167 +30166-30167 +30168-30176 +30169-30176 +30170-30171 +30173-30176 +30174-30176 +30175-30176 +30177-30184 +30178-30184 +30180-30182 +30181-30182 +30183-30184 +30185-30197 +30185-30197 +30186-30197 +30188-30197 +30188-30191 +30188 +30189-30191 +30189-30191 +30190-30191 +30192-30197 +30194-30197 +30195-30197 +30196-30197 +30198-30203 +30198-30203 +30199-30203 +30200-30201 +30202-30203 +30204-30229 +30204-30229 +30205-30229 +30205-30219 +30206-30210 +30207-30210 +30208-30210 +30208-30209 +30212-30214 +30213-30214 +30215-30216 +30217-30219 +30218-30219 +30220-30225 +30221-30225 +30222-30225 +30223-30225 +30224-30225 +30226-30229 +30227-30229 +30228-30229 +30230-30269 +30230-30269 +30231-30269 +30231-30239 +30231 +30232-30239 +30233-30239 +30234-30237 +30235-30237 +30236-30237 +30238-30239 +30240-30269 +30240-30246 +30241-30242 +30243-30246 +30244-30246 +30245-30246 +30247-30252 +30248-30252 +30249-30250 +30251-30252 +30253-30256 +30254-30256 +30255-30256 +30257-30269 +30258-30269 +30259-30269 +30259-30262 +30259 +30261-30262 +30263-30269 +30264-30269 +30264 +30265-30269 +30266-30269 +30267-30269 +30268-30269 +30270-30282 +30270-30282 +30271-30282 +30274-30282 +30275-30282 +30276-30280 +30277-30280 +30278-30280 +30279-30280 +30281-30282 +30283-30304 +30283-30304 +30284-30304 +30285-30295 +30286-30295 +30287-30291 +30288-30291 +30289-30291 +30290-30291 +30292-30295 +30293-30295 +30294-30295 +30296-30304 +30297-30298 +30299-30300 +30301-30304 +30302-30304 +30303-30304 +30305-30316 +30305-30316 +30306-30316 +30307-30316 +30308-30316 +30309-30316 +30310-30316 +30312-30316 +30313-30316 +30315-30316 +30317-30344 +30317-30344 +30318-30344 +30320-30344 +30320-30336 +30320-30325 +30321-30323 +30322-30323 +30324-30325 +30326-30336 +30327-30336 +30328-30330 +30329-30330 +30331-30336 +30332-30336 +30332-30333 +30334-30336 +30335-30336 +30337-30344 +30338-30344 +30339-30344 +30340-30344 +30341-30344 +30342-30344 +30343-30344 +30345-30354 +30345-30354 +30346-30354 +30347-30349 +30348-30349 +30352-30354 +30353-30354 +30355-30376 +30355-30376 +30356-30376 +30356-30360 +30359-30360 +30361-30365 +30362-30365 +30363-30365 +30364-30365 +30366-30376 +30367-30376 +30367-30369 +30368-30369 +30370-30373 +30371-30373 +30372-30373 +30374-30376 +30375-30376 +30377-30386 +30377-30386 +30377-30381 +30379-30381 +30380-30381 +30382-30386 +30384-30386 +30385-30386 +30387-30400 +30387-30400 +30387-30393 +30387-30390 +30389-30390 +30391-30393 +30392-30393 +30394-30400 +30394-30396 +30394 +30397-30400 +30398-30400 +30398 +30401-30421 +30401-30421 +30401-30415 +30402-30404 +30403-30404 +30405-30415 +30407-30412 +30407-30408 +30409-30412 +30410-30412 +30411-30412 +30413-30415 +30414-30415 +30416-30421 +30417-30421 +30418-30421 +30419-30421 +30420-30421 +30422-30435 +30422-30435 +30423-30435 +30423-30429 +30425-30426 +30427-30429 +30428-30429 +30430-30435 +30431-30435 +30432-30435 +30433-30435 +30434-30435 +30436-30447 +30436-30447 +30437-30447 +30437-30444 +30437-30438 +30440-30444 +30441-30444 +30442-30444 +30443-30444 +30445-30447 +30446-30447 +30448-30466 +30448-30466 +30449-30466 +30449-30463 +30450-30455 +30450-30451 +30452-30455 +30453-30455 +30454-30455 +30456-30463 +30457-30463 +30459-30461 +30460-30461 +30462-30463 +30464-30466 +30465-30466 +30467-30487 +30467-30487 +30468-30487 +30468-30473 +30469-30473 +30470-30473 +30471-30473 +30472-30473 +30474-30487 +30474-30477 +30475-30477 +30476-30477 +30478-30487 +30479-30487 +30481-30486 +30482-30486 +30483-30486 +30484-30486 +30485-30486 +30488-30497 +30488-30497 +30489-30497 +30489 +30490-30492 +30491-30492 +30494-30497 +30494 +30495-30497 +30496-30497 +30498-30513 +30498-30513 +30499-30513 +30500-30501 +30502-30513 +30503-30513 +30504-30507 +30505-30507 +30506-30507 +30508-30513 +30509-30513 +30511-30513 +30511-30512 +30514-30524 +30514-30524 +30515-30524 +30516-30518 +30517-30518 +30519-30524 +30520-30524 +30521-30524 +30522-30524 +30525-30533 +30525-30533 +30526-30533 +30526-30527 +30529-30533 +30530-30533 +30532-30533 +30534-30536 +30534-30536 +30535-30536 +30537-30551 +30537-30551 +30538-30551 +30538-30546 +30538-30542 +30539-30541 +30540-30541 +30543-30546 +30544-30546 +30544-30546 +30545-30546 +30547-30551 +30548-30551 +30549-30551 +30550-30551 +30552-30594 +30552-30594 +30553-30594 +30553-30559 +30555-30559 +30556-30559 +30557-30559 +30558-30559 +30560-30571 +30561-30571 +30561-30566 +30562-30566 +30563-30566 +30564-30566 +30565-30566 +30568-30571 +30568-30570 +30569-30570 +30572-30594 +30573-30594 +30574-30576 +30575-30576 +30576 +30577-30580 +30578-30580 +30579-30580 +30581-30587 +30582-30587 +30583-30587 +30584-30586 +30584-30585 +30588-30594 +30589-30594 +30589-30591 +30590-30591 +30593-30594 +30595-30689 +30595-30689 +30596-30689 +30596-30602 +30596-30599 +30597-30599 +30598-30599 +30601-30602 +30603-30689 +30604-30689 +30605-30689 +30606-30689 +30607-30611 +30608-30611 +30609-30611 +30610-30611 +30612-30689 +30613-30689 +30613-30639 +30613-30629 +30613 +30614-30619 +30615-30619 +30617-30619 +30618-30619 +30620-30629 +30621-30629 +30622-30623 +30625-30629 +30626-30629 +30627-30629 +30628-30629 +30630-30639 +30631-30639 +30632-30639 +30633-30639 +30634-30639 +30635-30639 +30636-30639 +30636-30637 +30638-30639 +30640-30689 +30641-30650 +30641-30643 +30642-30643 +30644-30650 +30645-30650 +30646-30650 +30647-30650 +30648-30650 +30649-30650 +30651-30689 +30651-30656 +30653-30656 +30654-30656 +30655-30656 +30657-30689 +30658-30689 +30659-30689 +30659-30661 +30659-30660 +30662-30689 +30663-30689 +30665-30669 +30666-30669 +30667-30669 +30668-30669 +30670-30689 +30671-30689 +30673-30676 +30673-30675 +30674-30675 +30677-30689 +30680-30683 +30681-30683 +30682-30683 +30684-30685 +30686-30689 +30687-30689 +30688-30689 +30690-30742 +30690-30742 +30691-30742 +30691 +30692-30693 +30694-30695 +30697-30742 +30698-30742 +30699-30700 +30701-30703 +30702-30703 +30704-30742 +30705-30742 +30706-30707 +30708-30710 +30709-30710 +30711-30714 +30712-30714 +30713-30714 +30715-30742 +30716-30742 +30716-30719 +30717-30719 +30718-30719 +30720-30742 +30720-30721 +30725-30726 +30727-30742 +30728-30734 +30729-30734 +30729-30733 +30730-30733 +30731-30733 +30732-30733 +30735-30742 +30736-30742 +30737-30739 +30738-30739 +30740-30742 +30741-30742 +30743-30761 +30743-30761 +30744-30761 +30744-30749 +30744-30746 +30744-30745 +30747-30749 +30748-30749 +30750-30761 +30751-30761 +30752-30754 +30753-30754 +30755-30761 +30756-30761 +30757-30761 +30757-30758 +30759-30761 +30760-30761 +30762-30776 +30762-30776 +30763-30776 +30763-30767 +30764-30767 +30765-30767 +30765-30766 +30768-30776 +30770-30772 +30771-30772 +30773-30776 +30774-30776 +30775-30776 +30777-30784 +30777-30784 +30778-30779 +30781-30784 +30782-30783 +30785-30793 +30785-30793 +30786-30793 +30788 +30789-30793 +30790-30793 +30791-30793 +30792-30793 +30794-30829 +30794-30829 +30795-30829 +30796-30797 +30798-30812 +30798-30803 +30798-30800 +30799-30800 +30801-30803 +30802-30803 +30804-30812 +30804-30806 +30805-30806 +30807-30812 +30808-30812 +30808-30809 +30810-30812 +30813-30821 +30814-30821 +30815-30821 +30817-30821 +30818-30821 +30818-30820 +30819-30820 +30822-30829 +30823-30829 +30824-30829 +30824-30827 +30825-30827 +30826-30827 +30828-30829 +30830-30849 +30830-30849 +30831-30849 +30831-30836 +30832-30836 +30833-30836 +30834-30836 +30837-30849 +30837-30842 +30838-30842 +30839-30842 +30840-30842 +30841-30842 +30843-30849 +30844-30849 +30845-30849 +30846-30849 +30846-30847 +30848-30849 +30850-30865 +30850-30865 +30851-30865 +30851-30852 +30853-30857 +30854-30857 +30856-30857 +30858-30865 +30859-30865 +30863-30865 +30864-30865 +30866-30883 +30866-30883 +30867-30883 +30869-30873 +30870-30873 +30870-30871 +30872-30873 +30874-30883 +30874 +30875-30883 +30876-30883 +30877-30879 +30878-30879 +30880-30883 +30881-30883 +30882-30883 +30884-30897 +30884-30897 +30885-30897 +30885-30893 +30885-30888 +30885-30886 +30889-30893 +30890-30893 +30890-30891 +30894-30897 +30895-30897 +30896-30897 +30898-30927 +30898-30927 +30899-30927 +30901-30902 +30903-30927 +30903-30904 +30905-30927 +30906-30927 +30909-30915 +30909-30910 +30911-30915 +30913-30915 +30914-30915 +30916-30927 +30917-30927 +30920-30924 +30921-30924 +30923-30924 +30925-30927 +30926-30927 +30928-30938 +30928-30938 +30929-30938 +30932-30938 +30933-30938 +30933-30934 +30935-30938 +30936-30938 +30937-30938 +30939-30963 +30939-30963 +30940-30963 +30942-30944 +30943-30944 +30945-30947 +30946-30947 +30948-30963 +30948-30950 +30949-30950 +30951-30963 +30952-30963 +30953-30963 +30953-30956 +30954-30955 +30957-30963 +30958-30963 +30958-30959 +30961-30963 +30962-30963 +30964-30995 +30964-30995 +30965-30995 +30965-30974 +30965 +30966-30974 +30967-30974 +30968-30969 +30970-30972 +30971-30972 +30973-30974 +30975-30995 +30975-30976 +30978-30979 +30980-30995 +30981-30995 +30981-30983 +30982-30983 +30984-30995 +30985-30995 +30986-30995 +30986-30990 +30986-30988 +30986-30987 +30989-30990 +30990 +30991-30995 +30992-30993 +30996-31013 +30996-31013 +30997-31013 +30997-30998 +30998 +30999-31013 +31000-31013 +31001-31013 +31001-31006 +31001-31003 +31002-31003 +31004-31006 +31005-31006 +31007-31013 +31008-31013 +31008-31009 +31011-31013 +31012-31013 +31014-31026 +31014-31026 +31015-31026 +31015 +31017-31026 +31018-31026 +31018-31019 +31020-31026 +31021-31026 +31023-31026 +31024-31026 +31024-31025 +31027-31039 +31027-31039 +31028-31039 +31028-31030 +31029-31030 +31030 +31032-31039 +31033-31039 +31034-31039 +31035-31037 +31036-31037 +31038-31039 +31040-31052 +31040-31052 +31041-31052 +31041-31042 +31044-31046 +31045-31046 +31047-31052 +31049-31052 +31050-31052 +31051-31052 +31053-31071 +31053-31071 +31054-31071 +31055-31056 +31057-31061 +31057-31059 +31058-31059 +31060-31061 +31062-31071 +31063-31071 +31064-31071 +31064-31067 +31065-31067 +31066-31067 +31069-31071 +31070-31071 +31072-31097 +31072-31097 +31073-31097 +31073-31079 +31074-31079 +31075-31076 +31077-31079 +31078-31079 +31080-31097 +31081-31097 +31082-31084 +31083-31084 +31086-31097 +31086-31097 +31087-31097 +31088-31090 +31089-31090 +31091-31097 +31092-31097 +31093-31097 +31095-31097 +31096-31097 +31098-31147 +31098-31147 +31099-31147 +31099-31109 +31100-31109 +31101-31105 +31102-31105 +31103-31105 +31104-31105 +31106-31109 +31107-31109 +31108-31109 +31110-31147 +31112-31113 +31114-31147 +31114-31130 +31114-31116 +31115-31116 +31117-31130 +31118-31130 +31119-31121 +31120-31121 +31122-31130 +31123-31130 +31123-31126 +31124-31126 +31125-31126 +31128-31129 +31131-31147 +31132-31147 +31132-31147 +31133-31147 +31135-31147 +31136-31147 +31137-31147 +31138-31141 +31139-31141 +31140-31141 +31142-31147 +31142-31147 +31142-31143 +31144-31147 +31145-31147 +31146-31147 +31148-31173 +31148-31173 +31149-31173 +31150-31156 +31150-31153 +31152-31153 +31157-31173 +31158-31173 +31158-31167 +31158-31160 +31158-31159 +31161-31163 +31162-31163 +31164-31167 +31165-31167 +31166-31167 +31168-31173 +31169-31173 +31169-31170 +31172-31173 +31174-31192 +31174-31192 +31175-31192 +31175-31176 +31178-31182 +31179-31182 +31180-31182 +31181-31182 +31183-31192 +31186-31192 +31187-31192 +31188-31192 +31189-31192 +31190-31192 +31191-31192 +31193-31200 +31193-31200 +31194-31200 +31195-31197 +31196-31197 +31198-31200 +31199-31200 +31201-31268 +31201-31268 +31202-31268 +31202-31226 +31202-31219 +31203-31219 +31204-31219 +31205-31206 +31207-31209 +31207-31208 +31210-31219 +31211-31219 +31213-31217 +31214-31217 +31214-31215 +31215 +31216-31217 +31218-31219 +31220-31221 +31224-31226 +31225-31226 +31227-31268 +31228-31268 +31228-31230 +31229-31230 +31231-31268 +31232-31268 +31233-31268 +31233 +31236-31238 +31237-31238 +31239-31242 +31240-31242 +31241-31242 +31243-31244 +31245-31268 +31246-31268 +31247-31249 +31248-31249 +31250-31268 +31250-31259 +31250-31252 +31251-31252 +31253-31259 +31255-31259 +31256-31259 +31257-31259 +31258-31259 +31260-31268 +31260-31263 +31261-31263 +31262-31263 +31264-31268 +31265-31268 +31266-31268 +31266-31267 +31269-31282 +31269-31282 +31270-31282 +31270-31271 +31272-31277 +31272-31274 +31273-31274 +31275-31277 +31276-31277 +31278-31282 +31279-31282 +31280-31282 +31281-31282 +31283-31323 +31283-31323 +31284-31323 +31284-31286 +31287-31323 +31288-31323 +31289-31293 +31290-31293 +31291-31293 +31292-31293 +31294-31323 +31295-31316 +31295-31308 +31297-31308 +31297-31304 +31298-31304 +31298-31300 +31299-31300 +31301-31304 +31302-31304 +31303-31304 +31305-31308 +31306-31308 +31307-31308 +31308 +31309-31316 +31310-31316 +31310-31314 +31311-31314 +31311-31312 +31313-31314 +31317-31323 +31318-31323 +31319-31323 +31320-31322 +31321-31322 +31324-31365 +31324-31365 +31325-31365 +31325-31353 +31325-31332 +31326-31332 +31326-31329 +31326-31327 +31328-31329 +31330-31332 +31331-31332 +31333-31353 +31333-31346 +31334-31346 +31335-31337 +31336-31337 +31338-31346 +31339-31340 +31341-31342 +31343-31346 +31344-31346 +31345-31346 +31347-31353 +31348-31353 +31350-31353 +31351-31353 +31352-31353 +31357-31358 +31359-31365 +31359-31361 +31360-31361 +31363-31365 +31364-31365 +31366-31382 +31366-31382 +31367-31382 +31367-31373 +31367-31369 +31368-31369 +31370 +31372-31373 +31374-31382 +31375-31382 +31376-31377 +31378-31382 +31379-31382 +31380-31382 +31381-31382 +31383-31399 +31383-31399 +31384-31399 +31384-31391 +31385-31391 +31386-31391 +31387-31391 +31388-31391 +31389-31391 +31390-31391 +31392-31399 +31393-31399 +31393-31395 +31394-31395 +31396-31399 +31397-31399 +31397-31398 +31400-31413 +31400-31413 +31401-31413 +31401-31403 +31401-31402 +31404-31407 +31405-31407 +31406-31407 +31408-31413 +31409-31413 +31409-31410 +31412-31413 +31414-31426 +31414-31426 +31415-31426 +31416-31418 +31417-31418 +31419-31420 +31421-31422 +31423-31426 +31424-31426 +31425-31426 +31427-31458 +31427-31458 +31428-31458 +31428-31431 +31429-31431 +31430-31431 +31432-31458 +31432-31442 +31432-31438 +31434-31438 +31435-31438 +31436-31438 +31437-31438 +31439-31442 +31440-31442 +31441-31442 +31443-31458 +31443-31452 +31443-31446 +31444-31446 +31445-31446 +31448-31450 +31449-31450 +31451-31452 +31453-31458 +31454-31458 +31456-31458 +31457-31458 +31459-31485 +31459-31485 +31460-31485 +31460-31468 +31460-31465 +31461-31465 +31463-31465 +31464-31465 +31467-31468 +31469-31477 +31470-31477 +31472-31477 +31473-31477 +31473-31474 +31475-31477 +31476-31477 +31478-31485 +31479-31485 +31479-31480 +31482-31483 +31484-31485 +31486-31506 +31486-31506 +31487-31506 +31487-31490 +31488-31490 +31489-31490 +31491-31506 +31492-31506 +31492-31500 +31493-31495 +31494-31495 +31497-31500 +31498-31500 +31499-31500 +31501-31503 +31502-31503 +31504-31506 +31505-31506 +31507-31519 +31507-31519 +31508-31519 +31509-31512 +31510-31512 +31511-31512 +31513-31519 +31514-31519 +31514-31518 +31514-31515 +31516-31518 +31517-31518 +31520-31543 +31520-31543 +31521-31543 +31521-31523 +31521-31522 +31524-31543 +31525-31543 +31526-31527 +31528-31530 +31529-31530 +31531-31543 +31531-31535 +31531 +31536-31543 +31537-31540 +31537-31539 +31538-31539 +31541 +31544-31562 +31544-31562 +31545-31562 +31546-31547 +31548-31562 +31548-31551 +31549-31551 +31550-31551 +31552-31562 +31554-31562 +31555-31562 +31555-31561 +31555-31559 +31556-31559 +31557-31559 +31558-31559 +31563-31571 +31563-31571 +31564-31571 +31567-31571 +31568-31571 +31569-31571 +31572-31583 +31572-31583 +31573-31583 +31573-31575 +31574-31575 +31576-31579 +31577-31579 +31578-31579 +31580-31583 +31581-31583 +31581-31582 +31584-31595 +31584-31595 +31585-31595 +31585-31587 +31586-31587 +31589-31591 +31590-31591 +31592-31595 +31593-31595 +31594-31595 +31596-31609 +31596-31609 +31597-31609 +31599-31609 +31600-31609 +31601-31609 +31602-31603 +31604-31609 +31605-31609 +31606-31609 +31607-31609 +31608-31609 +31610-31659 +31610-31659 +31611-31659 +31611-31617 +31612-31617 +31612-31613 +31614-31617 +31615-31617 +31616-31617 +31618-31643 +31618-31622 +31619-31620 +31621-31622 +31623-31627 +31624-31627 +31625-31626 +31628-31638 +31629-31638 +31629-31632 +31630-31632 +31631-31632 +31634-31638 +31635-31638 +31635-31637 +31636-31637 +31639-31643 +31640-31643 +31641-31642 +31644-31648 +31645-31648 +31646-31648 +31647-31648 +31650-31651 +31652-31656 +31653-31656 +31654-31656 +31655-31656 +31657-31659 +31658-31659 +31660-31695 +31660-31695 +31661-31695 +31662-31667 +31663-31667 +31664-31667 +31665-31667 +31666-31667 +31668-31673 +31669-31673 +31670-31673 +31671-31673 +31672-31673 +31674-31695 +31675-31695 +31676-31681 +31677-31681 +31678-31681 +31679-31681 +31680-31681 +31682-31695 +31682-31695 +31683-31695 +31684-31686 +31685-31686 +31687-31695 +31687-31690 +31688-31690 +31689-31690 +31691-31695 +31693-31695 +31694-31695 +31696-31716 +31696-31716 +31696-31704 +31696-31698 +31696-31697 +31699-31704 +31700-31704 +31700-31703 +31701-31703 +31702-31703 +31705-31716 +31706-31716 +31706-31710 +31707-31708 +31709-31710 +31711-31716 +31712-31716 +31712-31713 +31714-31716 +31715-31716 +31717-31724 +31717-31724 +31718-31724 +31719-31720 +31721-31724 +31722-31724 +31723-31724 +31725-31742 +31725-31742 +31726-31742 +31727-31732 +31728-31732 +31728-31731 +31729-31731 +31730-31731 +31733-31742 +31733-31734 +31733-31734 +31738-31742 +31739-31742 +31740-31742 +31741-31742 +31741 +31743-31748 +31743-31748 +31744-31748 +31745-31748 +31746-31748 +31747-31748 +31749-31773 +31749-31773 +31750-31773 +31752-31758 +31753-31754 +31755-31758 +31757-31758 +31759-31773 +31760-31773 +31762-31773 +31763-31773 +31764-31765 +31766-31773 +31766-31769 +31767-31769 +31767-31768 +31772-31773 +31774-31784 +31774-31784 +31775-31784 +31776-31778 +31777-31778 +31779-31783 +31780-31783 +31781-31783 +31782-31783 +31785-31796 +31785-31796 +31786-31796 +31786-31792 +31786-31791 +31787-31791 +31788-31791 +31790-31791 +31793-31796 +31794-31796 +31794-31795 +31797-31805 +31797-31805 +31798-31805 +31800-31801 +31802-31805 +31803-31805 +31804-31805 +31806-31823 +31806-31823 +31807-31823 +31807 +31810-31823 +31810-31817 +31810-31813 +31811-31813 +31812-31813 +31815-31817 +31816-31817 +31818-31823 +31819-31823 +31819-31821 +31820-31821 +31824-31835 +31824-31835 +31825-31835 +31825-31828 +31826-31827 +31828 +31829-31835 +31830-31835 +31831-31832 +31833-31835 +31833 +31836-31847 +31836-31847 +31837-31847 +31839-31840 +31841-31847 +31841-31842 +31843-31846 +31844-31846 +31845-31846 +31848-31857 +31848-31857 +31849-31857 +31851-31852 +31852 +31853-31857 +31854-31857 +31856-31857 +31858-31869 +31858-31869 +31859-31869 +31861-31869 +31861-31864 +31861-31862 +31863-31864 +31864 +31865-31869 +31866-31869 +31867-31869 +31868-31869 +31870-31947 +31870-31947 +31871-31947 +31871-31889 +31871-31873 +31872-31873 +31874-31889 +31875-31889 +31877-31880 +31878-31880 +31879-31880 +31881-31883 +31882-31883 +31884-31889 +31888-31889 +31890-31947 +31891-31892 +31893-31894 +31895-31947 +31895-31899 +31896-31899 +31900-31947 +31901-31947 +31902-31914 +31902-31904 +31903-31904 +31905-31914 +31909-31914 +31910-31914 +31911-31914 +31912-31914 +31913-31914 +31915-31947 +31918-31922 +31919-31922 +31919-31920 +31921-31922 +31923-31947 +31923-31941 +31923-31925 +31924-31925 +31926-31929 +31927-31929 +31928-31929 +31930-31941 +31930-31933 +31931-31933 +31932-31933 +31934-31941 +31935-31941 +31936-31937 +31938-31941 +31939-31941 +31940-31941 +31942-31947 +31943-31947 +31943-31944 +31946-31947 +31948-31956 +31948-31956 +31949-31956 +31950-31956 +31950-31953 +31950-31952 +31951-31952 +31955-31956 +31957-31989 +31957-31989 +31958-31989 +31958-31961 +31958-31959 +31960-31961 +31962-31979 +31963-31964 +31965-31979 +31965-31971 +31966-31971 +31967-31971 +31968-31971 +31969-31971 +31970-31971 +31972-31979 +31973-31979 +31974-31979 +31975-31979 +31975-31976 +31978-31979 +31981-31982 +31983-31984 +31985-31989 +31986-31987 +31988-31989 +31990-32032 +31990-32032 +31991-32032 +31992-32002 +31993-32002 +31994-32002 +31994-31997 +31995-31997 +31996-31997 +31998-32002 +31998-32000 +31998-31999 +32001-32002 +32002 +32003-32032 +32003-32005 +32004-32005 +32006-32017 +32007-32017 +32008-32011 +32009-32011 +32010-32011 +32012-32013 +32014-32015 +32016-32017 +32018-32032 +32019-32032 +32020-32021 +32023-32032 +32023-32029 +32025-32029 +32025-32027 +32026-32027 +32028-32029 +32030-32032 +32030-32031 +32033-32197 +32033-32197 +32034-32197 +32034-32035 +32036-32037 +32038-32040 +32039-32040 +32041-32197 +32041-32042 +32042 +32043-32197 +32044-32197 +32045-32197 +32046-32197 +32047-32197 +32048-32197 +32049-32197 +32050-32197 +32051-32197 +32052-32197 +32053-32197 +32054-32197 +32055-32197 +32056-32197 +32057-32197 +32058-32197 +32059-32197 +32060-32197 +32061-32197 +32062-32197 +32063-32197 +32064-32197 +32065-32197 +32066-32197 +32067-32197 +32068-32197 +32069-32197 +32070-32197 +32071-32197 +32072-32197 +32073-32197 +32074-32197 +32075-32197 +32076-32197 +32077-32197 +32078-32197 +32079-32197 +32080-32197 +32081-32197 +32082-32197 +32083-32197 +32084-32197 +32085-32197 +32086-32197 +32087-32197 +32088-32197 +32089-32197 +32090-32197 +32091-32197 +32092-32197 +32093-32197 +32094-32197 +32095-32197 +32096-32197 +32097-32197 +32098-32197 +32099-32197 +32100-32197 +32101-32197 +32102-32197 +32103-32197 +32104-32197 +32105-32197 +32106-32197 +32107-32197 +32108-32197 +32109-32197 +32110-32197 +32111-32197 +32112-32197 +32113-32197 +32114-32197 +32115-32197 +32116-32197 +32117-32197 +32118-32197 +32119-32197 +32120-32197 +32121-32197 +32122-32197 +32123-32197 +32124-32197 +32125-32197 +32126-32197 +32127-32197 +32128-32197 +32129-32197 +32130-32197 +32131-32197 +32132-32197 +32133-32197 +32134-32197 +32135-32197 +32136-32197 +32137-32197 +32138-32197 +32139-32197 +32140-32197 +32141-32197 +32142-32197 +32143-32197 +32144-32197 +32145-32197 +32146-32197 +32147-32197 +32148-32197 +32149-32197 +32150-32197 +32151-32197 +32152-32197 +32153-32197 +32154-32197 +32155-32197 +32156-32197 +32157-32197 +32158-32197 +32159-32197 +32160-32197 +32161-32197 +32162-32197 +32163-32197 +32164-32197 +32165-32197 +32166-32197 +32167-32197 +32168-32197 +32169-32197 +32170-32197 +32171-32197 +32172-32197 +32173-32197 +32174-32197 +32175-32197 +32176-32197 +32177-32197 +32178-32197 +32179-32197 +32180-32197 +32181-32197 +32182-32197 +32183-32197 +32184-32197 +32185-32197 +32186-32197 +32187-32197 +32188-32197 +32189-32197 +32190-32197 +32191-32197 +32192-32197 +32193-32197 +32194-32197 +32195-32197 +32196-32197 +32198-32220 +32198-32220 +32199-32220 +32199-32206 +32200-32202 +32201-32202 +32204-32206 +32205-32206 +32207-32220 +32208-32220 +32209-32211 +32210-32211 +32212-32214 +32213-32214 +32215-32220 +32215-32216 +32218-32220 +32219-32220 +32221-32232 +32221-32232 +32222-32232 +32222-32228 +32225-32228 +32226-32228 +32226-32227 +32229-32232 +32230-32232 +32230-32231 +32232 +32233-32249 +32233-32249 +32234-32249 +32236-32237 +32238-32249 +32238-32242 +32239-32242 +32240-32242 +32241-32242 +32243-32249 +32244-32246 +32244-32245 +32247-32249 +32248-32249 +32250-32264 +32250-32264 +32251-32264 +32252-32253 +32254-32255 +32256-32264 +32257-32264 +32258-32264 +32259-32261 +32260-32261 +32263-32264 +32265-32277 +32265-32277 +32266-32277 +32266-32267 +32270-32274 +32271-32274 +32272-32274 +32273-32274 +32275-32277 +32276-32277 +32278-32301 +32278-32301 +32279-32301 +32281-32282 +32283-32301 +32283-32292 +32285-32292 +32285-32288 +32285-32287 +32285-32286 +32289-32292 +32290-32292 +32291-32292 +32293-32301 +32294-32301 +32294-32295 +32296-32301 +32297-32301 +32297-32299 +32298-32299 +32302-32310 +32302-32310 +32303-32310 +32303-32307 +32304-32307 +32306-32307 +32311-32326 +32311-32326 +32312-32326 +32312 +32313-32314 +32317-32326 +32318-32326 +32318-32322 +32319-32322 +32320-32322 +32321-32322 +32323-32326 +32324-32326 +32324-32325 +32327-32350 +32327-32350 +32328-32350 +32328-32338 +32328-32331 +32330-32331 +32332-32338 +32333-32338 +32334-32338 +32335-32338 +32336-32338 +32337-32338 +32339-32350 +32340-32350 +32342-32350 +32342-32346 +32343-32346 +32344-32346 +32345-32346 +32347-32350 +32351-32376 +32351-32376 +32352-32376 +32353-32376 +32353-32362 +32354-32362 +32354-32356 +32355-32356 +32358-32359 +32360-32362 +32361-32362 +32363-32376 +32364-32376 +32365-32376 +32365-32368 +32365-32366 +32369-32376 +32372-32373 +32374-32376 +32375-32376 +32377-32390 +32377-32390 +32378-32390 +32378 +32381-32382 +32383-32390 +32384-32390 +32385-32390 +32387-32390 +32388-32390 +32389-32390 +32391-32401 +32391-32401 +32392-32401 +32392-32394 +32393-32394 +32395-32396 +32398-32399 +32400-32401 +32402-32413 +32402-32413 +32403-32413 +32404-32405 +32406-32410 +32407-32410 +32408-32410 +32409-32410 +32411-32413 +32412-32413 +32414-32422 +32414-32422 +32415-32422 +32417-32420 +32418-32420 +32419-32420 +32421-32422 +32423-32432 +32423-32432 +32424-32432 +32426-32429 +32427-32429 +32428-32429 +32430-32432 +32431-32432 +32433-32456 +32433-32456 +32434-32456 +32434-32439 +32435-32439 +32436-32439 +32437-32439 +32438-32439 +32440-32456 +32441-32456 +32441-32453 +32442-32445 +32443-32445 +32444-32445 +32446-32450 +32447-32450 +32448-32450 +32449-32450 +32451-32453 +32452-32453 +32454-32456 +32455-32456 +32456 +32457-32499 +32457-32499 +32458-32499 +32458-32463 +32460-32463 +32461-32463 +32461-32462 +32464-32499 +32465-32499 +32465-32467 +32466-32467 +32469-32499 +32470-32499 +32471-32499 +32472-32473 +32474-32499 +32474-32477 +32474-32475 +32476-32477 +32478-32483 +32478-32479 +32482-32483 +32486-32499 +32486-32491 +32486-32488 +32489-32491 +32490-32491 +32492-32495 +32493 +32494-32495 +32496-32499 +32497-32499 +32497-32498 +32500-32507 +32500-32507 +32501-32507 +32501-32503 +32502-32503 +32504-32506 +32505-32506 +32508-32517 +32508-32517 +32509-32517 +32509-32514 +32509-32511 +32510-32511 +32512-32514 +32513-32514 +32515-32516 +32518-32532 +32518-32532 +32519-32532 +32520-32532 +32521-32522 +32523-32532 +32524-32532 +32526-32528 +32526-32527 +32529-32532 +32530-32532 +32531-32532 +32533-32556 +32533-32556 +32534-32556 +32534-32549 +32534-32536 +32537-32549 +32538-32549 +32539-32549 +32540-32549 +32540-32543 +32541-32543 +32542-32543 +32544-32549 +32545-32549 +32546-32549 +32547-32549 +32548-32549 +32550-32556 +32551-32556 +32552-32556 +32553-32556 +32553-32554 +32557-32582 +32557-32582 +32558-32582 +32559-32560 +32561-32582 +32564-32566 +32564-32565 +32567-32582 +32567-32569 +32567 +32570-32575 +32571-32575 +32573-32575 +32574-32575 +32577-32578 +32579-32582 +32580-32582 +32581-32582 +32583-32596 +32583-32596 +32584-32596 +32585-32596 +32586-32587 +32588-32596 +32589-32596 +32589-32590 +32593-32596 +32594-32596 +32595-32596 +32597-32644 +32597-32644 +32598-32644 +32598-32599 +32602-32644 +32602-32629 +32602-32611 +32602-32603 +32605-32608 +32606-32608 +32607-32608 +32609-32611 +32610-32611 +32612-32629 +32612-32621 +32614-32615 +32616-32621 +32617-32621 +32617-32618 +32619-32621 +32620-32621 +32622-32629 +32624-32625 +32626-32629 +32627-32629 +32628-32629 +32630-32644 +32631-32644 +32631-32633 +32632-32633 +32636-32644 +32637-32644 +32638-32641 +32639-32641 +32640-32641 +32642-32644 +32643-32644 +32645-32664 +32645-32664 +32646-32664 +32646-32655 +32646-32647 +32649-32651 +32650-32651 +32652-32655 +32653-32655 +32654-32655 +32656-32664 +32657-32664 +32657-32658 +32660-32664 +32661-32664 +32662-32664 +32663-32664 +32665-32696 +32665-32696 +32666-32696 +32666-32673 +32668-32671 +32669-32671 +32670-32671 +32672-32673 +32674-32696 +32675-32696 +32675-32680 +32675 +32678-32680 +32679-32680 +32681-32696 +32682-32696 +32684-32693 +32685-32693 +32686-32693 +32687-32693 +32688-32693 +32688-32689 +32690-32692 +32691-32692 +32694-32696 +32695-32696 +32697-32703 +32697-32703 +32698-32703 +32699-32702 +32700-32702 +32701-32702 +32704-32710 +32704-32710 +32705-32710 +32706-32710 +32707-32710 +32708-32710 +32709-32710 +32711-32717 +32711-32717 +32712-32717 +32712-32713 +32715-32717 +32716-32717 +32718-32730 +32718-32730 +32719-32730 +32720-32723 +32721-32723 +32722-32723 +32724-32730 +32725-32730 +32725-32726 +32728-32730 +32729-32730 +32731-32762 +32731-32762 +32732-32762 +32732-32740 +32732-32734 +32733-32734 +32736-32740 +32737-32740 +32738-32740 +32739-32740 +32741-32762 +32742-32762 +32743-32744 +32745-32762 +32745-32754 +32745-32751 +32745 +32747-32749 +32748-32749 +32750-32751 +32750-32751 +32752-32754 +32753-32754 +32755-32762 +32757-32762 +32757-32758 +32759-32762 +32759-32762 +32760-32762 +32761-32762 +32763-32773 +32763-32773 +32764-32773 +32766-32767 +32768-32773 +32769-32773 +32769 +32770-32773 +32771-32773 +32772-32773 +32774-32787 +32774-32787 +32775-32787 +32775-32776 +32777-32781 +32779-32781 +32780-32781 +32783-32784 +32785-32787 +32788-32812 +32788-32812 +32789-32812 +32789-32792 +32791-32792 +32793-32812 +32794-32812 +32795-32796 +32797-32812 +32798-32812 +32799-32801 +32799-32800 +32802-32812 +32803-32812 +32803-32810 +32803-32806 +32804-32806 +32805-32806 +32808-32810 +32809-32810 +32811-32812 +32812 +32813-32822 +32813-32822 +32814-32822 +32815-32817 +32816-32817 +32818-32822 +32819-32822 +32820-32822 +32821-32822 +32823-32832 +32823-32832 +32824-32832 +32824-32827 +32825-32827 +32826-32827 +32829-32832 +32830-32832 +32831-32832 +32833-32845 +32833-32845 +32834-32845 +32834-32840 +32834-32836 +32835-32836 +32837-32838 +32839-32840 +32841-32845 +32842-32845 +32844-32845 +32846-32855 +32846-32855 +32847-32855 +32847-32852 +32847-32849 +32848-32849 +32851-32852 +32853-32855 +32854-32855 +32856-32860 +32856-32860 +32857-32860 +32858 +32861-32874 +32861-32874 +32862-32874 +32862-32864 +32863-32864 +32865-32870 +32866-32870 +32868-32870 +32869-32870 +32873-32874 +32875-32884 +32875-32884 +32876-32884 +32877-32882 +32877-32879 +32877-32878 +32880-32881 +32885-32900 +32885-32900 +32886-32900 +32887-32888 +32889-32890 +32891-32900 +32891 +32892-32900 +32893-32900 +32894-32900 +32895-32900 +32897-32900 +32898-32900 +32899-32900 +32901-32912 +32901-32912 +32902-32912 +32902 +32905-32906 +32907-32912 +32908-32912 +32909-32912 +32909-32910 +32913-32920 +32913-32920 +32914-32920 +32914-32915 +32916-32920 +32916 +32918-32920 +32919-32920 +32921-32937 +32921-32937 +32922-32937 +32922-32929 +32922-32925 +32922-32923 +32926-32929 +32927-32929 +32928-32929 +32930-32937 +32931-32937 +32933-32937 +32934-32937 +32936-32937 +32938-32958 +32938-32958 +32939-32958 +32941-32942 +32943-32958 +32944-32958 +32944-32953 +32944-32947 +32945-32947 +32946-32947 +32950-32953 +32951-32953 +32952-32953 +32955-32958 +32956-32958 +32956-32957 +32959-32966 +32959-32966 +32960-32966 +32960-32961 +32962-32966 +32963-32966 +32964-32966 +32965-32966 +32967-32996 +32967-32996 +32968-32996 +32968-32980 +32969-32980 +32970-32980 +32971-32980 +32971-32974 +32971-32972 +32975-32980 +32976-32980 +32977-32980 +32978-32980 +32979-32980 +32981-32996 +32982-32996 +32982-32988 +32983-32984 +32985-32988 +32986-32988 +32987-32988 +32989-32996 +32990-32996 +32991-32996 +32991-32992 +32994-32996 +32995-32996 +32997-33005 +32997-33005 +32998-33005 +32998-32999 +33000-33002 +33000-33001 +33004-33005 +33006-33029 +33006-33029 +33007-33029 +33007-33021 +33007-33014 +33008-33014 +33009-33014 +33009-33011 +33010-33011 +33012-33014 +33016-33021 +33017-33019 +33018-33019 +33022-33029 +33023-33029 +33023 +33024-33026 +33025-33026 +33028-33029 +33030-33048 +33030-33048 +33031-33048 +33031-33033 +33032-33033 +33033 +33034-33048 +33035-33037 +33036-33037 +33038-33048 +33038-33041 +33039-33041 +33040-33041 +33042-33048 +33043-33048 +33044-33046 +33045-33046 +33047-33048 +33049-33067 +33049-33067 +33050-33067 +33050 +33053-33067 +33053 +33054-33059 +33054-33057 +33054-33056 +33055-33056 +33060-33067 +33061-33067 +33061-33064 +33062-33064 +33063-33064 +33066-33067 +33068-33079 +33068-33079 +33069-33079 +33069-33074 +33069-33070 +33072-33074 +33072-33073 +33075-33079 +33076-33079 +33077-33079 +33078-33079 +33080-33091 +33080-33091 +33081-33091 +33082-33087 +33083-33087 +33084-33087 +33085-33087 +33086-33087 +33088-33091 +33089-33091 +33089 +33092-33101 +33092-33101 +33093-33101 +33093 +33094-33101 +33095-33101 +33096-33098 +33097-33098 +33099-33101 +33100-33101 +33102-33118 +33102-33118 +33103-33118 +33103 +33104-33105 +33107-33109 +33108-33109 +33110-33118 +33111-33118 +33112-33113 +33114-33117 +33115-33117 +33115-33116 +33118 +33119-33147 +33119-33147 +33120-33147 +33120-33134 +33122-33127 +33123-33127 +33124-33127 +33125-33127 +33126-33127 +33128-33134 +33129-33134 +33130-33134 +33130-33132 +33131-33132 +33133-33134 +33135-33147 +33136-33147 +33137-33147 +33138-33147 +33138-33142 +33138-33140 +33139-33140 +33141-33142 +33143-33147 +33146-33147 +33148-33162 +33148-33162 +33149-33162 +33150-33152 +33151-33152 +33153-33154 +33155-33162 +33155-33156 +33157-33162 +33157-33159 +33158-33159 +33161-33162 +33163-33173 +33163-33173 +33164-33173 +33164-33169 +33165-33166 +33167-33169 +33168-33169 +33170-33171 +33174-33204 +33174-33204 +33175-33204 +33175-33188 +33175-33183 +33176-33183 +33177-33183 +33178-33183 +33180-33183 +33181-33183 +33182-33183 +33184-33188 +33185-33188 +33185 +33186-33188 +33187-33188 +33189-33204 +33190-33204 +33190-33192 +33191-33192 +33193-33195 +33194-33195 +33198-33204 +33199-33204 +33199 +33200-33201 +33201 +33202-33204 +33203-33204 +33205-33213 +33205-33213 +33206-33213 +33206-33208 +33207-33208 +33211-33213 +33212-33213 +33213 +33214-33220 +33214-33220 +33215-33220 +33216-33217 +33219-33220 +33221-33244 +33221-33244 +33222-33244 +33222-33226 +33225-33226 +33227-33244 +33228-33244 +33228-33232 +33228 +33231-33232 +33233-33244 +33234-33244 +33235-33238 +33236-33238 +33237-33238 +33239-33241 +33240-33241 +33242-33244 +33243-33244 +33245-33262 +33245-33262 +33246-33262 +33246-33251 +33248-33251 +33249-33251 +33250-33251 +33252-33262 +33253-33262 +33254-33255 +33256-33262 +33256 +33257-33262 +33258-33262 +33259-33262 +33260-33262 +33261-33262 +33263-33271 +33263-33271 +33264-33271 +33264-33269 +33265-33266 +33267-33269 +33268-33269 +33270-33271 +33271 +33272-33299 +33272-33299 +33273-33299 +33273-33277 +33274-33277 +33275-33277 +33276-33277 +33278-33299 +33279-33299 +33279-33281 +33280-33281 +33282-33299 +33283-33299 +33283-33284 +33285-33299 +33285-33287 +33286-33287 +33288-33299 +33289-33290 +33291-33299 +33292-33299 +33293-33299 +33294-33299 +33295-33299 +33296-33297 +33298-33299 +33300-33307 +33300-33307 +33301-33307 +33301-33302 +33304-33307 +33305-33307 +33306-33307 +33308-33325 +33308-33325 +33309-33325 +33309-33317 +33312-33313 +33314-33317 +33315-33317 +33316-33317 +33318-33325 +33319-33325 +33320-33325 +33320-33321 +33322-33325 +33323-33325 +33324-33325 +33326-33352 +33326-33352 +33327-33352 +33327-33334 +33329-33334 +33332-33334 +33333-33334 +33335-33338 +33336-33338 +33337-33338 +33339-33341 +33340-33341 +33344-33346 +33345-33346 +33347-33349 +33348-33349 +33350-33352 +33351-33352 +33353-33364 +33353-33364 +33354-33364 +33354-33357 +33355-33357 +33356-33357 +33359-33364 +33359 +33362-33364 +33363-33364 +33365-33388 +33365-33388 +33366-33388 +33367 +33368-33372 +33368-33369 +33370-33372 +33371-33372 +33373-33388 +33374-33388 +33376-33379 +33377-33379 +33380-33388 +33380-33383 +33382-33383 +33384-33388 +33385-33388 +33386-33388 +33387-33388 +33389-33434 +33389-33434 +33390-33434 +33390-33391 +33392-33395 +33393-33395 +33394-33395 +33396 +33398-33399 +33400-33434 +33400-33419 +33402-33405 +33403-33405 +33404-33405 +33406-33419 +33406-33408 +33409-33419 +33409-33414 +33410-33414 +33412-33414 +33413-33414 +33415-33419 +33416-33419 +33417-33419 +33417 +33418-33419 +33419 +33420-33434 +33421-33434 +33422-33434 +33422 +33424-33434 +33424-33427 +33425-33427 +33426-33427 +33430-33432 +33431-33432 +33433-33434 +33435-33450 +33435-33450 +33436-33437 +33437 +33438-33450 +33440-33450 +33440 +33441-33450 +33442-33450 +33442-33445 +33443-33445 +33444-33445 +33447-33450 +33448-33450 +33449-33450 +33451-33467 +33451-33467 +33452-33467 +33453-33455 +33454-33455 +33456-33459 +33457-33459 +33457-33458 +33461-33464 +33462-33464 +33463-33464 +33465-33467 +33466-33467 +33468-33483 +33468-33483 +33469-33483 +33469-33471 +33472-33483 +33473-33483 +33473-33475 +33474-33475 +33476-33483 +33477-33483 +33479-33483 +33480-33483 +33481-33483 +33484-33501 +33484-33501 +33485-33501 +33485-33487 +33485-33486 +33488-33501 +33489-33501 +33489-33496 +33490-33496 +33490-33492 +33491-33492 +33494-33496 +33495-33496 +33497-33501 +33498-33501 +33500-33501 +33502-33507 +33502-33507 +33503-33507 +33503-33504 +33505 +33508-33517 +33508-33517 +33509-33517 +33510-33511 +33514-33517 +33515-33517 +33516-33517 +33518-33529 +33518-33529 +33519-33529 +33520-33529 +33520-33521 +33522-33529 +33522-33524 +33523-33524 +33525-33529 +33526-33527 +33528-33529 +33530-33552 +33530-33552 +33531-33552 +33532-33537 +33532-33533 +33534-33537 +33535-33537 +33536-33537 +33538-33541 +33539-33541 +33540-33541 +33542-33552 +33543-33552 +33543-33544 +33545-33549 +33546-33549 +33547-33549 +33548-33549 +33550-33552 +33551-33552 +33553-33569 +33553-33569 +33554-33569 +33554 +33555-33556 +33558-33559 +33560-33569 +33561-33565 +33561-33562 +33564-33565 +33565 +33567-33569 +33567-33569 +33568-33569 +33570-33577 +33570-33577 +33571-33573 +33572-33573 +33575-33577 +33576-33577 +33578-33601 +33578-33601 +33579-33601 +33581-33582 +33583-33601 +33583-33595 +33583-33590 +33583-33587 +33583-33585 +33584-33585 +33588-33590 +33589-33590 +33591-33595 +33592-33595 +33593-33595 +33594-33595 +33596-33601 +33597-33601 +33597-33598 +33599-33601 +33600-33601 +33602-33622 +33602-33622 +33603-33622 +33603-33604 +33606-33607 +33608-33622 +33609-33622 +33610-33622 +33610-33621 +33610-33613 +33611-33613 +33612-33613 +33614-33620 +33615-33620 +33616-33617 +33618-33619 +33623-33638 +33623-33638 +33624-33638 +33624-33625 +33626-33638 +33627-33638 +33627-33632 +33628-33632 +33629-33630 +33631-33632 +33635-33638 +33636-33638 +33637-33638 +33639-33655 +33639-33655 +33640-33655 +33641-33642 +33643-33644 +33645-33655 +33646-33655 +33647-33651 +33648-33650 +33649-33650 +33653-33655 +33654-33655 +33656-33673 +33656-33673 +33657-33673 +33657-33658 +33658 +33659-33662 +33660-33662 +33660-33661 +33663-33673 +33664-33673 +33664-33665 +33668-33673 +33668-33669 +33670-33673 +33671-33673 +33672-33673 +33674-33681 +33674-33681 +33675-33681 +33677-33678 +33679-33681 +33680-33681 +33682-33698 +33682-33698 +33683-33698 +33683-33684 +33684 +33685-33691 +33686-33689 +33687-33689 +33688-33689 +33690-33691 +33692-33698 +33693-33698 +33693-33694 +33695-33698 +33696-33698 +33696-33697 +33699-33705 +33699-33705 +33700-33705 +33700-33701 +33702-33704 +33703-33704 +33706-33717 +33706-33717 +33707-33717 +33707-33711 +33708-33709 +33712-33717 +33713-33717 +33714-33717 +33714-33715 +33718-33737 +33718-33737 +33719-33737 +33719-33725 +33720-33725 +33720-33721 +33724-33725 +33726-33737 +33727-33737 +33727-33729 +33728-33729 +33730-33732 +33731-33732 +33733-33734 +33735-33737 +33736-33737 +33738-33749 +33738-33749 +33739-33749 +33739-33741 +33740-33741 +33743-33749 +33745-33749 +33748-33749 +33750-33798 +33750-33798 +33751-33798 +33751 +33752-33753 +33755-33756 +33757-33798 +33759-33770 +33760-33770 +33760-33762 +33764-33770 +33765-33770 +33766-33770 +33767-33770 +33768-33770 +33768-33769 +33771-33798 +33772-33798 +33772-33777 +33773-33777 +33774-33777 +33775-33777 +33776-33777 +33778-33784 +33779-33784 +33779-33783 +33779-33782 +33780-33782 +33781-33782 +33785-33789 +33786-33789 +33787-33789 +33788-33789 +33790-33798 +33790-33793 +33790-33791 +33795-33798 +33796-33798 +33797-33798 +33799-33809 +33799-33809 +33800-33809 +33802-33809 +33803-33805 +33804-33805 +33806-33809 +33807-33809 +33808-33809 +33810-33833 +33810-33833 +33811-33833 +33811-33821 +33812-33821 +33812-33819 +33812-33814 +33813-33814 +33817-33819 +33818-33819 +33820-33821 +33821 +33822-33833 +33823-33833 +33823-33825 +33826-33833 +33827-33833 +33827-33831 +33828-33831 +33828-33829 +33830-33831 +33834-33850 +33834-33850 +33835-33850 +33835-33846 +33835-33841 +33837-33841 +33837-33838 +33839-33841 +33840-33841 +33842-33846 +33843-33846 +33843-33845 +33844-33845 +33847-33850 +33848-33850 +33849-33850 +33851-33871 +33851-33871 +33852-33871 +33852-33856 +33854-33856 +33855-33856 +33857-33871 +33858-33871 +33859-33865 +33859-33860 +33861-33865 +33862-33865 +33864-33865 +33866-33871 +33866 +33867-33871 +33868-33871 +33869-33871 +33870-33871 +33872-33874 +33872-33874 +33873-33874 +33873 +33875-33893 +33875-33893 +33876-33893 +33877-33878 +33879-33880 +33881-33893 +33883-33893 +33884-33893 +33885-33886 +33887-33893 +33887-33889 +33887 +33888-33889 +33889 +33890-33893 +33890-33891 +33892-33893 +33893 +33894-33903 +33894-33903 +33895-33903 +33895-33897 +33896-33897 +33900-33903 +33901-33903 +33902-33903 +33904-33911 +33904-33911 +33905-33911 +33905-33906 +33907-33911 +33908-33911 +33909-33911 +33910-33911 +33912-33924 +33912-33924 +33913-33924 +33913-33915 +33916-33924 +33917-33924 +33918-33919 +33920-33924 +33921-33924 +33923-33924 +33925-33944 +33925-33944 +33926-33944 +33926-33936 +33927-33936 +33927-33930 +33928-33930 +33928-33929 +33933-33935 +33934-33935 +33936 +33937-33944 +33938-33944 +33938-33939 +33940-33944 +33941-33944 +33942-33944 +33943-33944 +33945-34000 +33945-34000 +33946-34000 +33946-33948 +33947-33948 +33949-34000 +33949-33952 +33950-33952 +33951-33952 +33953-34000 +33954-34000 +33955-33956 +33957-34000 +33957-33961 +33958-33961 +33959-33960 +33962-34000 +33962-33966 +33963-33966 +33967-33971 +33968-33971 +33969-33971 +33970-33971 +33972-33973 +33974-33975 +33976-33977 +33978-33979 +33980-33981 +33982-33983 +33984-33986 +33985-33986 +33987-33991 +33988-33991 +33989-33991 +33990-33991 +33992-33994 +33993-33994 +33995-34000 +33996-34000 +33996-33997 +33998-34000 +34001-34040 +34001-34040 +34002-34040 +34002-34008 +34002-34004 +34003-34004 +34006-34008 +34007-34008 +34009-34040 +34010-34040 +34010-34040 +34010-34013 +34010-34011 +34012-34013 +34014-34040 +34015-34040 +34015-34030 +34015-34016 +34017-34030 +34018-34030 +34019-34030 +34020-34030 +34020-34022 +34021-34022 +34023-34024 +34025-34030 +34026-34030 +34027-34030 +34028-34030 +34029-34030 +34031-34040 +34033-34040 +34033-34034 +34035-34040 +34036-34040 +34037-34040 +34038-34040 +34039-34040 +34041-34047 +34041-34047 +34042-34047 +34042-34046 +34043-34046 +34044-34046 +34045-34046 +34048-34062 +34048-34062 +34049-34062 +34049-34054 +34049-34051 +34050-34051 +34053-34054 +34055-34062 +34056-34062 +34056-34059 +34057-34058 +34060-34062 +34061-34062 +34063-34083 +34063-34083 +34064-34083 +34065-34072 +34066-34068 +34067-34068 +34069-34072 +34070-34072 +34071-34072 +34074-34083 +34074-34076 +34075-34076 +34077-34083 +34078-34083 +34080-34083 +34081-34083 +34082-34083 +34084-34089 +34084-34089 +34085-34087 +34086-34087 +34088-34089 +34089 +34090-34095 +34090-34095 +34091-34093 +34092-34093 +34094-34095 +34095 +34096-34120 +34096-34120 +34096-34097 +34098-34120 +34098-34102 +34099-34102 +34101-34102 +34103-34120 +34104-34120 +34105-34120 +34105-34106 +34107-34108 +34108 +34109-34120 +34110-34120 +34111-34113 +34112-34113 +34114-34115 +34115 +34116-34120 +34117-34120 +34118-34120 +34119-34120 +34121-34136 +34121-34136 +34121-34127 +34121-34125 +34122-34125 +34123-34125 +34124-34125 +34126-34127 +34127 +34128-34136 +34129-34136 +34130-34132 +34131-34132 +34134-34136 +34135-34136 +34137-34146 +34137-34146 +34138-34146 +34138-34140 +34139-34140 +34142-34143 +34144-34146 +34145-34146 +34147-34156 +34147-34156 +34148-34156 +34149-34151 +34150-34151 +34152-34156 +34153-34156 +34154-34156 +34155-34156 +34157-34163 +34157-34163 +34159-34161 +34159-34161 +34160-34161 +34162-34163 +34163 +34164-34171 +34164-34171 +34164-34167 +34165-34167 +34165-34167 +34166-34167 +34168-34171 +34169-34171 +34169 +34170-34171 +34171 +34172-34189 +34172-34189 +34172-34179 +34172 +34174-34179 +34177-34179 +34178-34179 +34180-34189 +34181-34189 +34181-34183 +34182-34183 +34185-34186 +34187-34189 +34188-34189 +34190-34212 +34190-34212 +34191-34212 +34192-34194 +34193-34194 +34194 +34195-34212 +34195-34198 +34196-34198 +34197-34198 +34199-34203 +34201-34203 +34202-34203 +34204-34207 +34205-34207 +34206-34207 +34208-34212 +34209-34212 +34210-34212 +34211-34212 +34213-34234 +34213-34234 +34213-34222 +34213-34218 +34214-34218 +34216-34218 +34217-34218 +34220-34222 +34221-34222 +34223-34234 +34224-34234 +34224-34229 +34225-34229 +34226-34229 +34227-34229 +34228-34229 +34230-34232 +34231-34232 +34235-34246 +34235-34246 +34235-34238 +34235-34237 +34236-34237 +34239-34246 +34240-34246 +34240-34244 +34241-34244 +34242-34244 +34243-34244 +34247-34257 +34247-34257 +34248-34257 +34248-34254 +34249-34254 +34250-34254 +34251-34254 +34253-34254 +34258-34275 +34258-34275 +34259-34275 +34259-34267 +34259-34263 +34260-34263 +34261-34263 +34262-34263 +34264-34265 +34268-34275 +34269-34275 +34269-34271 +34270-34271 +34272-34274 +34273-34274 +34276-34292 +34276-34292 +34277-34292 +34277-34286 +34277-34282 +34278-34282 +34280-34282 +34281-34282 +34283-34284 +34287-34292 +34287-34289 +34288-34289 +34290-34291 +34293-34311 +34293-34311 +34294-34311 +34294-34303 +34294-34299 +34295-34299 +34296-34299 +34297-34299 +34299 +34300-34303 +34300-34301 +34304-34311 +34304-34307 +34304-34305 +34308-34311 +34309-34311 +34310-34311 +34312-34322 +34312-34322 +34313-34322 +34313-34318 +34313-34316 +34314-34316 +34315-34316 +34317-34318 +34318 +34319-34322 +34320-34322 +34321-34322 +34323-34341 +34323-34341 +34324-34341 +34324-34328 +34325-34327 +34326-34327 +34329-34332 +34330-34332 +34331-34332 +34333-34341 +34334-34341 +34337-34341 +34338-34341 +34339-34341 +34340-34341 +34342-34349 +34342-34349 +34344-34349 +34345-34349 +34345-34347 +34346-34347 +34350-34356 +34350-34356 +34351-34356 +34351-34352 +34353-34356 +34354-34356 +34354-34355 +34357-34363 +34357-34363 +34358-34363 +34358-34359 +34360-34363 +34361-34363 +34361-34362 +34364-34366 +34364-34366 +34364 +34365-34366 +34366 +34367-34370 +34367-34370 +34367 +34368-34370 +34369-34370 +34371-34380 +34371-34380 +34371-34375 +34371-34372 +34373-34375 +34373 +34374 +34375 +34377-34380 +34378-34380 +34379-34380 +34381-34386 +34381-34386 +34382-34386 +34382-34384 +34382-34383 +34387-34391 +34387-34391 +34388-34391 +34389-34390 +34392-34396 +34392-34396 +34393-34396 +34395-34396 +34397-34401 +34397-34401 +34398-34401 +34399-34400 +34402-34415 +34402-34415 +34402-34407 +34405-34407 +34406-34407 +34408-34415 +34409-34415 +34409-34410 +34409 +34412-34415 +34413-34415 +34414-34415 +34416-34437 +34416-34437 +34417-34437 +34417-34427 +34419-34427 +34419-34420 +34421-34427 +34422-34427 +34423-34427 +34424-34427 +34425-34427 +34426-34427 +34428-34437 +34429-34437 +34429-34435 +34429-34430 +34431-34435 +34432-34435 +34433-34435 +34434-34435 +34438-34462 +34438-34462 +34440-34453 +34441-34443 +34442-34443 +34444-34453 +34444 +34446-34453 +34447-34453 +34447-34448 +34449-34453 +34450-34453 +34451-34453 +34452-34453 +34454-34462 +34455-34460 +34456-34460 +34456-34459 +34457-34459 +34458-34459 +34463-34484 +34463-34484 +34463 +34464-34471 +34466-34467 +34468-34471 +34469-34471 +34470-34471 +34472-34484 +34473-34484 +34475-34484 +34475-34483 +34475-34476 +34477-34483 +34478-34483 +34479-34483 +34480-34483 +34481-34483 +34482-34483 +34485-34499 +34485-34499 +34486-34499 +34486-34492 +34487-34488 +34489-34490 +34491-34492 +34493-34499 +34494-34499 +34495-34496 +34498-34499 +34500-34507 +34500-34507 +34501-34507 +34501-34502 +34503-34506 +34504-34506 +34505-34506 +34508-34518 +34508-34518 +34509-34518 +34509-34513 +34510-34511 +34514-34518 +34515-34518 +34515-34516 +34519-34547 +34519-34547 +34519-34539 +34519-34530 +34519-34521 +34520-34521 +34522-34527 +34523-34527 +34524-34527 +34525-34527 +34526-34527 +34529-34530 +34531-34539 +34532-34539 +34532-34533 +34534-34536 +34535-34536 +34538-34539 +34540-34547 +34541-34547 +34541-34543 +34542-34543 +34545-34547 +34546-34547 +34548-34558 +34548-34558 +34549-34558 +34549-34553 +34552-34553 +34552 +34553 +34554-34558 +34555-34558 +34557-34558 +34559-34576 +34559-34576 +34559-34571 +34559-34571 +34560-34571 +34561-34571 +34561-34563 +34562-34563 +34564-34568 +34565-34568 +34566-34568 +34567-34568 +34569-34571 +34570-34571 +34574-34576 +34577-34591 +34577-34591 +34579-34591 +34579-34581 +34580-34581 +34582-34591 +34582-34583 +34584-34585 +34585 +34586-34591 +34587-34591 +34589-34591 +34590-34591 +34592-34610 +34592-34610 +34593-34610 +34593-34600 +34593-34594 +34595-34600 +34596-34597 +34598-34600 +34598-34599 +34601-34610 +34602-34610 +34604-34605 +34606-34610 +34607-34610 +34608-34610 +34611-34641 +34611-34641 +34612-34641 +34612-34616 +34613-34616 +34613 +34614-34616 +34615-34616 +34619-34626 +34620-34626 +34622-34624 +34623-34624 +34625-34626 +34627-34641 +34627-34630 +34629-34630 +34631-34633 +34632-34633 +34634-34641 +34635-34641 +34636-34640 +34637-34640 +34638-34640 +34638-34639 +34642-34655 +34642-34655 +34642-34652 +34643-34652 +34644-34647 +34645-34647 +34646-34647 +34648-34652 +34649-34652 +34650-34652 +34651-34652 +34653-34655 +34654-34655 +34656-34667 +34656-34667 +34657-34667 +34657-34659 +34657-34658 +34660-34661 +34663 +34664-34667 +34668-34686 +34668-34686 +34669-34686 +34669-34672 +34670-34672 +34671-34672 +34674-34675 +34676-34678 +34677-34678 +34679-34686 +34681-34686 +34682-34686 +34682 +34684-34686 +34685-34686 +34687-34713 +34687-34713 +34688-34713 +34689-34692 +34690-34692 +34691-34692 +34696-34713 +34697-34713 +34698-34713 +34698-34702 +34700-34702 +34703-34713 +34704-34713 +34704-34707 +34705-34707 +34706-34707 +34708-34713 +34709-34713 +34709-34710 +34714-34719 +34714-34719 +34715-34719 +34715-34716 +34718-34719 +34720-34747 +34720-34747 +34721-34747 +34721-34728 +34723-34724 +34726-34728 +34727-34728 +34729-34747 +34731-34732 +34733-34747 +34735-34747 +34735 +34736-34737 +34738-34747 +34739-34747 +34742-34747 +34743-34747 +34743-34746 +34744-34746 +34745-34746 +34748-34754 +34748-34754 +34749-34754 +34752-34754 +34752-34753 +34755-34762 +34755-34762 +34756-34762 +34756-34757 +34758-34762 +34759-34762 +34760-34762 +34761-34762 +34763-34793 +34763-34793 +34764-34793 +34764-34774 +34764-34765 +34767-34774 +34768-34774 +34768-34770 +34768-34769 +34771-34774 +34772-34773 +34775-34793 +34776-34793 +34776-34780 +34776-34778 +34778 +34779-34780 +34780 +34781-34785 +34782-34785 +34782-34783 +34782 +34783 +34784-34785 +34785 +34786-34793 +34787-34793 +34787-34791 +34787-34789 +34787-34789 +34788-34789 +34790-34791 +34792-34793 +34793 +34794-34816 +34794-34816 +34795-34816 +34795-34800 +34795-34796 +34797-34798 +34801-34816 +34802-34816 +34802 +34803-34806 +34804-34806 +34804-34805 +34808-34816 +34810-34816 +34811-34813 +34812-34813 +34814-34815 +34817-34827 +34817-34827 +34818-34827 +34818-34821 +34819-34821 +34820-34821 +34822-34823 +34823 +34825-34827 +34825-34826 +34828-34846 +34828-34846 +34829-34846 +34829-34832 +34830-34832 +34831-34832 +34833-34846 +34833-34837 +34834-34837 +34835-34837 +34836-34837 +34838-34846 +34839-34846 +34841-34846 +34841-34843 +34842-34843 +34844-34846 +34845-34846 +34847-34874 +34847-34874 +34848-34874 +34848-34853 +34849-34853 +34850-34853 +34851-34853 +34852-34853 +34854-34874 +34855-34874 +34856-34866 +34856-34862 +34857-34862 +34857 +34858-34862 +34859-34862 +34860-34862 +34861-34862 +34863-34866 +34864-34866 +34867-34874 +34868-34874 +34868-34871 +34868-34870 +34869-34870 +34873-34874 +34875-34887 +34875-34887 +34876-34887 +34876-34882 +34876-34877 +34878-34879 +34881-34882 +34883-34887 +34884-34887 +34886-34887 +34888-34902 +34888-34902 +34889-34902 +34889-34896 +34889-34892 +34889 +34891-34892 +34893-34896 +34894-34896 +34894-34895 +34895 +34897-34902 +34898-34902 +34899-34902 +34899 +34902 +34903-34915 +34903-34915 +34904-34915 +34904-34909 +34904-34906 +34905-34906 +34907-34909 +34908-34909 +34909 +34910-34915 +34911-34915 +34913-34915 +34914-34915 +34916-34938 +34916-34938 +34917-34938 +34917-34919 +34920-34938 +34921-34938 +34922-34923 +34924-34938 +34925-34938 +34925-34930 +34926-34930 +34926-34927 +34929-34930 +34931-34938 +34932-34938 +34933-34938 +34934-34935 +34936-34938 +34937-34938 +34939-34953 +34939-34953 +34940-34953 +34941-34945 +34941-34943 +34941-34942 +34944-34945 +34946-34953 +34947-34953 +34947-34949 +34948-34949 +34950-34953 +34951-34953 +34952-34953 +34954-34962 +34954-34962 +34955-34962 +34957-34959 +34958-34959 +34960-34962 +34961-34962 +34963-34983 +34963-34983 +34964-34983 +34964-34969 +34965-34969 +34965-34966 +34967-34969 +34968-34969 +34970-34971 +34973-34975 +34974-34975 +34976-34983 +34977-34983 +34977-34980 +34979-34980 +34980 +34981-34983 +34982-34983 +34984-35005 +34984-35005 +34985-35005 +34985-34987 +34986-34987 +34988-34989 +34991-35005 +34991-34993 +34992-34993 +34996-34997 +34998-35005 +34999-35005 +34999-35002 +35001-35002 +35002 +35003-35005 +35004-35005 +35006-35023 +35006-35023 +35006-35018 +35006-35009 +35007-35009 +35008-35009 +35012-35018 +35013-35018 +35014-35015 +35016-35018 +35017-35018 +35019-35023 +35020-35023 +35020-35021 +35023 +35024-35034 +35024-35034 +35025-35034 +35025 +35028-35034 +35028 +35031-35034 +35032-35034 +35033-35034 +35035-35047 +35035-35047 +35035-35040 +35035-35036 +35037-35038 +35039-35040 +35041-35047 +35042-35047 +35042-35043 +35044-35045 +35046-35047 +35048-35056 +35048-35056 +35049-35056 +35051-35056 +35052-35056 +35055-35056 +35057-35078 +35057-35078 +35058-35078 +35058-35061 +35059-35061 +35060-35061 +35063-35078 +35064-35066 +35065-35066 +35067-35068 +35069-35078 +35069-35074 +35069-35070 +35072-35074 +35073-35074 +35075-35078 +35075-35078 +35076-35078 +35076-35077 +35079-35087 +35079-35087 +35080-35087 +35080-35081 +35083-35087 +35083-35087 +35084-35087 +35084-35086 +35085-35086 +35088-35099 +35088-35099 +35089-35095 +35090-35095 +35090-35092 +35091-35092 +35093-35095 +35094-35095 +35096-35098 +35097-35098 +35100-35104 +35100-35104 +35101-35104 +35101-35102 +35104 +35105-35130 +35105-35130 +35105 +35108-35130 +35108-35110 +35109-35110 +35109-35110 +35111-35130 +35113-35130 +35113-35115 +35113-35114 +35118-35120 +35119-35120 +35121-35123 +35122-35123 +35124-35130 +35126-35128 +35127-35128 +35129-35130 +35131-35139 +35131-35139 +35133-35139 +35134-35136 +35135-35136 +35140-35150 +35140-35150 +35141-35150 +35141-35147 +35142-35147 +35143-35147 +35144-35147 +35145-35147 +35146-35147 +35151-35165 +35151-35165 +35152-35165 +35152-35157 +35152-35154 +35153-35154 +35155-35157 +35156-35157 +35158 +35160-35161 +35162-35165 +35163-35165 +35164-35165 +35166-35182 +35166-35182 +35167-35182 +35167-35171 +35167-35168 +35169-35171 +35170-35171 +35172-35175 +35173-35175 +35174-35175 +35177-35178 +35179-35182 +35181-35182 +35183-35194 +35183-35194 +35184-35194 +35184-35190 +35186-35190 +35187-35190 +35188-35190 +35188-35189 +35191-35194 +35192-35194 +35195-35215 +35195-35215 +35197-35215 +35197-35204 +35198-35204 +35199-35204 +35199-35201 +35199-35200 +35202-35204 +35203-35204 +35205-35215 +35205-35206 +35207-35211 +35207-35208 +35209-35211 +35210-35211 +35212-35215 +35212 +35213-35215 +35214-35215 +35216-35230 +35216-35230 +35217-35230 +35217-35226 +35218-35220 +35219-35220 +35221-35226 +35221-35223 +35224-35226 +35225-35226 +35227-35230 +35228-35230 +35229-35230 +35231-35249 +35231-35249 +35231-35238 +35232-35235 +35233-35235 +35234-35235 +35236-35238 +35236 +35237-35238 +35238 +35239-35249 +35240-35249 +35241-35249 +35241 +35242-35249 +35242-35249 +35242-35245 +35243-35245 +35244-35245 +35246-35249 +35247-35249 +35248-35249 +35250-35258 +35250-35258 +35251-35258 +35252-35253 +35254-35258 +35255-35258 +35256-35258 +35257-35258 +35259-35268 +35259-35268 +35260-35268 +35261-35263 +35262-35263 +35265-35268 +35266-35268 +35267-35268 +35269-35276 +35269-35276 +35270-35276 +35270-35275 +35271-35275 +35272-35275 +35273-35275 +35274-35275 +35277-35328 +35277-35328 +35278-35328 +35278-35285 +35278 +35279-35285 +35280-35285 +35282-35284 +35283-35284 +35286-35328 +35287-35328 +35287-35312 +35287-35294 +35288-35294 +35289-35294 +35290-35294 +35291-35294 +35292-35294 +35293-35294 +35295-35305 +35295-35297 +35296-35297 +35298-35305 +35299-35305 +35301-35304 +35302-35304 +35303-35304 +35305 +35307-35312 +35307-35308 +35310-35312 +35311-35312 +35313-35319 +35314-35319 +35314-35318 +35315-35318 +35316-35318 +35317-35318 +35320-35324 +35321-35324 +35322-35324 +35323-35324 +35325-35328 +35326-35328 +35327-35328 +35329-35356 +35329-35356 +35330-35356 +35330 +35331-35335 +35331-35332 +35333-35335 +35334-35335 +35337-35338 +35339-35356 +35340-35356 +35340-35353 +35340-35343 +35341-35343 +35344-35353 +35345-35353 +35346-35353 +35346-35348 +35347-35348 +35349-35353 +35350-35353 +35351-35353 +35354-35356 +35355-35356 +35357-35368 +35357-35368 +35358-35368 +35358 +35359-35360 +35362-35363 +35364-35368 +35364 +35366-35368 +35369-35372 +35369-35372 +35370-35372 +35370 +35371-35372 +35371 +35373-35399 +35373-35399 +35374-35399 +35374-35393 +35374-35387 +35374-35375 +35377-35378 +35379-35387 +35379-35383 +35379-35380 +35382-35383 +35384-35387 +35385-35387 +35385-35386 +35388-35393 +35388-35391 +35391 +35392-35393 +35394-35399 +35395-35399 +35395-35396 +35400-35408 +35400-35408 +35400 +35403-35408 +35404-35408 +35405-35408 +35406-35407 +35409-35414 +35409-35414 +35410-35414 +35413-35414 +35415-35426 +35415-35426 +35416-35426 +35416-35419 +35417-35419 +35418-35419 +35420-35421 +35423-35426 +35424-35426 +35425-35426 +35427-35450 +35427-35450 +35427-35431 +35428-35431 +35429-35431 +35430-35431 +35432-35450 +35432-35437 +35434-35435 +35438-35450 +35439-35450 +35439-35445 +35440-35441 +35443-35445 +35444-35445 +35446-35450 +35447-35450 +35447-35449 +35448-35449 +35451-35465 +35451-35465 +35451-35454 +35455-35465 +35456-35465 +35457-35459 +35458-35459 +35462-35465 +35463-35465 +35464-35465 +35466-35478 +35466-35478 +35466-35471 +35467-35469 +35468-35469 +35472-35478 +35473-35478 +35476-35478 +35477-35478 +35479-35491 +35479-35491 +35479-35482 +35479-35480 +35483-35488 +35484-35488 +35485-35488 +35485-35486 +35487-35488 +35489-35491 +35490-35491 +35492-35497 +35492-35497 +35493-35497 +35493-35495 +35498-35504 +35498-35504 +35499-35504 +35501-35504 +35502-35504 +35503-35504 +35505-35518 +35505-35518 +35506-35518 +35507-35508 +35508 +35509-35518 +35510-35511 +35512-35518 +35515-35518 +35516-35517 +35519-35531 +35519-35531 +35520-35531 +35521-35523 +35522-35523 +35524-35531 +35524-35526 +35525-35526 +35529-35531 +35530-35531 +35532-35593 +35532-35593 +35533-35593 +35533-35536 +35534-35536 +35535-35536 +35537-35593 +35538-35593 +35538-35550 +35540-35543 +35541-35543 +35542-35543 +35544-35550 +35544-35546 +35545-35546 +35547-35550 +35548-35550 +35549-35550 +35551-35593 +35552-35593 +35552-35553 +35554-35593 +35554-35555 +35556-35583 +35557-35583 +35557-35566 +35557-35558 +35559-35566 +35560-35561 +35562-35566 +35563-35566 +35563-35564 +35565-35566 +35567-35583 +35567-35575 +35567-35570 +35568-35570 +35569-35570 +35571-35575 +35571-35572 +35573-35574 +35576-35581 +35577-35581 +35578-35581 +35579-35581 +35580-35581 +35582-35583 +35584-35593 +35585-35593 +35585-35586 +35587-35593 +35590-35593 +35591-35593 +35592-35593 +35594-35615 +35594-35615 +35595-35615 +35595-35604 +35595-35597 +35596-35597 +35598-35604 +35599-35604 +35599-35601 +35600-35601 +35603-35604 +35605-35615 +35606-35607 +35608-35615 +35609-35610 +35610 +35611-35615 +35612-35615 +35613-35615 +35614-35615 +35616-35635 +35616-35635 +35617-35635 +35617-35626 +35617-35620 +35618-35620 +35619-35620 +35624-35626 +35625-35626 +35627-35628 +35628 +35629-35635 +35630-35635 +35630-35633 +35631-35633 +35632-35633 +35636-35649 +35636-35649 +35637-35649 +35637-35641 +35639-35641 +35640-35641 +35642-35649 +35643-35649 +35643 +35645-35649 +35646-35649 +35647-35649 +35650-35662 +35650-35662 +35651-35662 +35651-35656 +35653-35656 +35654-35656 +35655-35656 +35657-35662 +35658-35662 +35658 +35659-35660 +35663-35675 +35663-35675 +35664-35675 +35664-35670 +35666-35670 +35667-35670 +35668-35670 +35669-35670 +35671-35675 +35672-35675 +35672 +35674-35675 +35676-35683 +35676-35683 +35676-35677 +35679-35683 +35679-35682 +35680-35682 +35682 +35684-35694 +35684-35694 +35685-35694 +35687-35689 +35688-35689 +35690-35694 +35692-35694 +35693-35694 +35695-35719 +35695-35719 +35696-35719 +35698-35719 +35698-35706 +35700-35706 +35701-35706 +35702-35706 +35703-35706 +35704-35706 +35705-35706 +35707-35719 +35708-35719 +35708-35709 +35710-35711 +35712-35719 +35713-35719 +35713-35715 +35713 +35716-35719 +35717-35719 +35717 +35720-35724 +35720-35724 +35721-35724 +35723-35724 +35725-35731 +35725-35731 +35725-35726 +35728-35731 +35729-35731 +35730-35731 +35732-35755 +35732-35755 +35733-35755 +35733-35739 +35733-35736 +35734-35736 +35735-35736 +35738-35739 +35739 +35740-35755 +35740-35751 +35740-35743 +35742-35743 +35744-35751 +35745-35751 +35746-35747 +35748-35751 +35749-35751 +35750-35751 +35752-35755 +35753-35755 +35754 +35756-35782 +35756-35782 +35757-35782 +35757-35768 +35757-35760 +35758-35760 +35759-35760 +35761-35768 +35762-35763 +35763 +35764-35765 +35767-35768 +35769-35782 +35770-35782 +35770-35773 +35774-35777 +35775-35776 +35778-35782 +35779-35782 +35779-35781 +35780-35781 +35783-35806 +35783-35806 +35784-35806 +35784-35792 +35784-35788 +35784-35788 +35785-35788 +35785-35787 +35786-35787 +35791-35792 +35792 +35793-35803 +35794-35803 +35794-35801 +35795-35801 +35796-35797 +35798-35801 +35799-35801 +35800-35801 +35802 +35804-35806 +35805-35806 +35807-35828 +35807-35828 +35808-35828 +35808-35812 +35808-35812 +35809-35812 +35810-35812 +35811-35812 +35815-35828 +35815-35824 +35816-35823 +35816-35820 +35817-35820 +35818-35820 +35819-35820 +35822-35823 +35825-35828 +35826-35828 +35827-35828 +35829-35849 +35829-35849 +35830-35849 +35830-35839 +35830-35835 +35831-35832 +35836-35839 +35837-35839 +35837-35838 +35840-35849 +35841-35849 +35841-35842 +35844-35849 +35845-35849 +35845-35846 +35846 +35848-35849 +35850-35867 +35850-35867 +35851-35867 +35851-35857 +35853-35857 +35854-35857 +35858-35867 +35859-35867 +35859-35867 +35860-35867 +35860-35863 +35861-35862 +35864-35867 +35865-35867 +35865-35866 +35868-35871 +35868-35871 +35869-35871 +35870-35871 +35872-35889 +35872-35889 +35873-35889 +35873-35877 +35873-35875 +35874-35875 +35876-35877 +35878-35889 +35879-35889 +35879-35882 +35880-35882 +35883-35886 +35884-35886 +35884-35885 +35888-35889 +35890-35907 +35890-35907 +35891-35907 +35891-35899 +35892-35893 +35894-35899 +35894-35895 +35896-35899 +35897-35899 +35898-35899 +35900-35907 +35901-35907 +35903-35904 +35905-35907 +35906-35907 +35908-35922 +35908-35922 +35909-35922 +35911-35922 +35911-35917 +35911-35913 +35912-35913 +35914-35917 +35915-35917 +35916-35917 +35920-35922 +35920-35921 +35923-35943 +35923-35943 +35924-35943 +35925 +35927-35928 +35929-35943 +35929-35933 +35929-35933 +35929-35930 +35931-35933 +35932-35933 +35936-35943 +35937-35943 +35937-35940 +35938-35940 +35939-35940 +35941-35943 +35942-35943 +35944-35968 +35944-35968 +35945-35968 +35945-35949 +35946-35949 +35947-35949 +35948-35949 +35950-35968 +35951-35968 +35951-35958 +35951-35954 +35953-35954 +35955-35958 +35956-35958 +35956-35958 +35957-35958 +35959-35968 +35960-35968 +35961-35962 +35963-35968 +35964-35968 +35965-35968 +35966-35968 +35967-35968 +35969-35970 +35969-35970 +35970 +35971-35974 +35971-35974 +35972-35974 +35972-35973 +35974 +35975-35985 +35975-35985 +35976-35985 +35976-35981 +35977-35978 +35979-35981 +35980-35981 +35982-35985 +35983-35985 +35983 +35984-35985 +35985 +35986-35993 +35986-35993 +35987-35993 +35987 +35990-35993 +35991-35993 +35991-35992 +35991 +35992 +35993 +35994-36004 +35994-36004 +35995-36004 +35996 +35998-36004 +35998-35999 +36000-36004 +36001-36004 +36002-36004 +36003-36004 +36005-36009 +36005-36009 +36006-36009 +36006 +36007-36009 +36008-36009 +36010-36016 +36010-36016 +36011-36016 +36013-36016 +36014-36016 +36015-36016 +36017-36037 +36017-36037 +36018-36037 +36018 +36020-36037 +36021-36022 +36023-36037 +36024-36037 +36024-36026 +36027-36037 +36028-36037 +36028-36034 +36028-36033 +36028-36030 +36029-36030 +36031-36033 +36032-36033 +36035-36037 +36036-36037 +36038-36049 +36038-36049 +36039-36049 +36040-36049 +36041-36049 +36042-36049 +36042-36044 +36043-36044 +36045-36049 +36047-36049 +36048-36049 +36050-36063 +36050-36063 +36051-36063 +36052-36055 +36053-36055 +36054-36055 +36057-36063 +36057-36061 +36057-36058 +36059-36061 +36060-36061 +36062-36063 +36064-36078 +36064-36078 +36065-36078 +36065-36069 +36065-36066 +36070-36078 +36071-36078 +36071-36074 +36071-36072 +36075-36078 +36076-36078 +36076-36078 +36077-36078 +36079-36104 +36079-36104 +36080-36104 +36080-36085 +36080-36082 +36081-36082 +36083 +36086-36104 +36087-36104 +36087-36088 +36090-36104 +36090-36099 +36091-36093 +36092-36093 +36094-36099 +36094-36099 +36095-36099 +36096-36099 +36096-36097 +36098-36099 +36100-36104 +36102-36104 +36105-36114 +36105-36114 +36106-36114 +36107-36110 +36108-36110 +36109-36110 +36111-36114 +36112-36114 +36113-36114 +36115-36136 +36115-36136 +36116-36136 +36116-36119 +36116-36117 +36120-36125 +36121-36125 +36122-36124 +36123-36124 +36125 +36126-36136 +36127-36136 +36127-36129 +36128-36129 +36131-36133 +36132-36133 +36134-36136 +36135-36136 +36137-36145 +36137-36145 +36138-36145 +36140-36141 +36142-36145 +36146-36155 +36146-36155 +36147-36155 +36147-36149 +36149 +36150-36155 +36151-36155 +36152-36153 +36154-36155 +36156-36166 +36156-36166 +36157-36166 +36159-36166 +36160-36166 +36163-36166 +36163-36165 +36164-36165 +36167-36176 +36167-36176 +36168-36176 +36170-36176 +36170-36172 +36171-36172 +36173-36176 +36174-36176 +36175-36176 +36177-36185 +36177-36185 +36178-36185 +36180-36185 +36181-36185 +36183-36185 +36183-36184 +36186-36188 +36186-36188 +36187-36188 +36189-36211 +36189-36211 +36190-36211 +36190-36199 +36190-36191 +36192-36195 +36193-36195 +36194-36195 +36197-36199 +36198-36199 +36200-36211 +36201-36211 +36201-36209 +36202-36203 +36204-36206 +36205-36206 +36207-36209 +36208-36209 +36210-36211 +36211 +36212-36227 +36212-36227 +36213-36227 +36213-36218 +36213-36214 +36214 +36215-36217 +36216-36217 +36217 +36219-36227 +36220-36227 +36221-36227 +36221-36223 +36222-36223 +36224-36227 +36225-36227 +36226-36227 +36228-36257 +36228-36257 +36229-36257 +36229-36255 +36229-36232 +36230-36232 +36231-36232 +36232 +36233-36237 +36234-36237 +36235-36237 +36236-36237 +36238-36255 +36239-36255 +36240-36255 +36241-36247 +36241-36242 +36243-36247 +36243-36244 +36245-36246 +36248-36250 +36248 +36249-36250 +36250 +36251-36255 +36252-36255 +36253-36255 +36254-36255 +36256-36257 +36257 +36258-36266 +36258-36266 +36259-36266 +36261-36262 +36262 +36263-36266 +36265-36266 +36266 +36267-36283 +36267-36283 +36268-36283 +36269-36275 +36270-36275 +36271-36275 +36272-36275 +36273-36275 +36274-36275 +36276-36279 +36278-36279 +36280-36283 +36281-36283 +36281-36282 +36284-36289 +36284-36289 +36285-36289 +36286-36288 +36287-36288 +36290-36302 +36290-36302 +36291-36302 +36293-36299 +36294-36299 +36295-36299 +36295-36296 +36298-36299 +36300-36302 +36301-36302 +36303-36318 +36303-36318 +36304-36318 +36306-36318 +36307-36318 +36307-36311 +36308-36311 +36309-36311 +36310-36311 +36312-36318 +36313-36318 +36314-36318 +36317-36318 +36319-36330 +36319-36330 +36320-36330 +36321-36330 +36321-36324 +36322-36324 +36323-36324 +36326-36330 +36329-36330 +36331-36345 +36331-36345 +36332-36345 +36332-36340 +36332-36336 +36333-36336 +36334-36336 +36335-36336 +36339-36340 +36341-36345 +36342-36345 +36343-36344 +36346-36382 +36346-36382 +36347-36382 +36348-36352 +36349-36352 +36350-36352 +36353-36358 +36354-36358 +36355-36357 +36356-36357 +36359-36382 +36360-36382 +36360-36364 +36361-36364 +36362-36364 +36363-36364 +36366-36371 +36368-36371 +36369-36371 +36370-36371 +36372-36382 +36373-36382 +36373-36379 +36373-36377 +36373-36374 +36375-36377 +36376-36377 +36380-36382 +36381-36382 +36383-36391 +36383-36391 +36384-36391 +36384-36387 +36385-36387 +36386-36387 +36388-36389 +36392-36422 +36392-36422 +36393-36422 +36393-36414 +36393-36406 +36393-36400 +36394-36400 +36395-36397 +36396-36397 +36398-36400 +36399-36400 +36401-36406 +36404-36406 +36404-36405 +36407-36408 +36410-36414 +36411-36414 +36412-36414 +36413-36414 +36415-36422 +36416-36422 +36418-36422 +36419-36422 +36420-36422 +36421-36422 +36423-36430 +36423-36430 +36424-36430 +36425-36426 +36427-36430 +36428-36430 +36429-36430 +36431-36443 +36431-36443 +36432-36443 +36432-36433 +36435-36436 +36437-36443 +36437 +36438-36441 +36438-36439 +36442-36443 +36443 +36444-36457 +36444-36457 +36445-36457 +36445-36446 +36448-36457 +36448-36450 +36451-36457 +36452-36457 +36454-36457 +36456-36457 +36458-36483 +36458-36483 +36459-36483 +36459-36466 +36459-36460 +36461-36464 +36461 +36463-36464 +36465 +36467-36483 +36468-36483 +36468-36479 +36468-36469 +36470-36474 +36470-36472 +36471-36472 +36476-36479 +36477-36479 +36478-36479 +36480-36483 +36481-36483 +36484-36496 +36484-36496 +36485-36496 +36488-36496 +36488 +36489-36491 +36490-36491 +36494-36496 +36495-36496 +36497-36514 +36497-36514 +36497-36499 +36502-36504 +36503-36504 +36505-36514 +36506-36514 +36507-36514 +36507-36510 +36508-36510 +36509-36510 +36511-36514 +36513-36514 +36515-36526 +36515-36526 +36516-36526 +36516-36517 +36518 +36521-36526 +36521-36522 +36523-36526 +36523-36524 +36525-36526 +36526 +36527-36552 +36527-36552 +36528-36552 +36528-36531 +36529-36531 +36530-36531 +36534-36537 +36536-36537 +36538-36552 +36539-36552 +36540-36552 +36541-36542 +36543-36544 +36545-36549 +36546-36549 +36547-36549 +36548-36549 +36550-36552 +36551-36552 +36553-36558 +36553-36558 +36554-36558 +36555-36557 +36556-36557 +36559-36567 +36559-36567 +36560-36567 +36562-36567 +36562-36563 +36564-36567 +36565 +36567 +36568-36573 +36568-36573 +36569-36573 +36571-36573 +36572-36573 +36573 +36574-36584 +36574-36584 +36575-36584 +36576-36579 +36577-36579 +36578-36579 +36581-36584 +36582-36584 +36582-36583 +36582-36583 +36585-36597 +36585-36597 +36586-36597 +36586-36592 +36586-36589 +36587-36589 +36588-36589 +36590-36592 +36591-36592 +36593-36597 +36594-36597 +36595-36597 +36597 +36598-36602 +36598-36602 +36599-36602 +36600-36602 +36601-36602 +36603-36610 +36603-36610 +36604-36610 +36607-36610 +36609-36610 +36610 +36611-36636 +36611-36636 +36612-36636 +36612-36626 +36612-36614 +36613-36614 +36617-36619 +36618-36619 +36620-36626 +36620-36623 +36621-36623 +36622-36623 +36624-36626 +36625-36626 +36627-36636 +36628-36636 +36630-36636 +36630-36634 +36631-36634 +36632-36634 +36633-36634 +36635-36636 +36636 +36637-36691 +36637-36691 +36638-36691 +36639-36640 +36641-36691 +36641-36658 +36641-36653 +36643-36645 +36644-36645 +36646-36653 +36646-36647 +36647 +36648-36649 +36649 +36650-36651 +36651 +36652-36653 +36653 +36654-36658 +36655-36658 +36655-36657 +36656-36657 +36659-36691 +36660-36691 +36660-36669 +36660-36664 +36661-36664 +36661-36663 +36662-36663 +36665-36669 +36665-36666 +36667-36669 +36668-36669 +36670-36691 +36671-36691 +36671-36675 +36672-36675 +36676-36691 +36676-36680 +36677-36680 +36678-36680 +36678-36679 +36681-36682 +36683-36686 +36684-36686 +36685-36686 +36688-36691 +36689-36691 +36690-36691 +36692-36701 +36692-36701 +36693-36701 +36693 +36695-36697 +36696-36697 +36698-36701 +36698-36700 +36699-36700 +36702-36735 +36702-36735 +36703-36735 +36703-36709 +36704-36706 +36705-36706 +36707-36709 +36707-36708 +36708 +36710-36735 +36711-36735 +36712-36735 +36713-36735 +36714-36735 +36714-36721 +36715-36716 +36717-36721 +36718-36721 +36720-36721 +36722-36727 +36723-36727 +36723-36724 +36725-36727 +36726-36727 +36728-36735 +36729-36735 +36730-36735 +36731-36735 +36731-36734 +36732-36734 +36733-36734 +36736-36749 +36736-36749 +36737-36749 +36739-36749 +36739-36741 +36742-36749 +36743-36749 +36745-36749 +36746-36749 +36746-36747 +36750-36753 +36750-36753 +36751-36753 +36752-36753 +36754-36761 +36754-36761 +36755-36761 +36755 +36756-36757 +36760-36761 +36762-36771 +36762-36771 +36763-36771 +36763-36764 +36766-36767 +36768-36771 +36769-36771 +36770-36771 +36772-36777 +36772-36777 +36773-36777 +36773-36774 +36775 +36778-36793 +36778-36793 +36779-36793 +36779-36787 +36779-36780 +36783-36787 +36784-36787 +36785-36787 +36786-36787 +36788-36793 +36789-36793 +36789-36792 +36790-36792 +36790-36791 +36794-36798 +36794-36798 +36795-36798 +36795-36796 +36798 +36799-36825 +36799-36825 +36800-36825 +36800 +36801-36802 +36805-36825 +36805-36819 +36806-36807 +36808-36819 +36809-36819 +36809-36816 +36809-36815 +36810-36815 +36811-36815 +36812-36815 +36813-36815 +36814-36815 +36817-36819 +36818-36819 +36820-36825 +36821-36825 +36822-36824 +36823-36824 +36826-36833 +36826-36833 +36827-36833 +36828-36829 +36830-36833 +36832 +36834-36857 +36834-36857 +36835-36857 +36837-36857 +36837-36846 +36837-36840 +36841-36846 +36842-36846 +36842-36846 +36842-36843 +36844-36846 +36845-36846 +36847-36857 +36848-36857 +36849-36857 +36849 +36852-36856 +36853-36856 +36853-36855 +36854-36855 +36858-36862 +36858-36862 +36859-36862 +36860-36861 +36863-36874 +36863-36874 +36864-36874 +36865-36868 +36866-36868 +36867-36868 +36869-36874 +36871-36874 +36872-36874 +36873-36874 +36875-36880 +36875-36880 +36876-36880 +36876-36877 +36878-36880 +36879-36880 +36881-36904 +36881-36904 +36882-36904 +36882-36895 +36882-36889 +36883-36889 +36883-36885 +36884-36885 +36886-36889 +36887-36889 +36888-36889 +36890-36893 +36891-36893 +36892-36893 +36896-36897 +36897 +36898-36904 +36899-36904 +36900-36901 +36902-36904 +36903-36904 +36905-36917 +36905-36917 +36906-36917 +36906-36909 +36906 +36907-36909 +36908-36909 +36910-36917 +36911-36917 +36912-36917 +36912-36914 +36913-36914 +36915-36917 +36916-36917 +36918-36940 +36918-36940 +36919-36940 +36919-36926 +36920-36926 +36921-36926 +36922-36926 +36922-36923 +36925-36926 +36927-36930 +36929-36930 +36931-36940 +36932-36940 +36934-36940 +36935-36940 +36935-36937 +36938-36939 +36941-36958 +36941-36958 +36942-36958 +36943 +36945-36958 +36945-36947 +36945-36947 +36946-36947 +36948-36950 +36949-36950 +36951-36958 +36952-36958 +36953-36958 +36954-36958 +36954-36957 +36954-36955 +36956-36957 +36959-36967 +36959-36967 +36960-36967 +36962-36967 +36963-36967 +36964-36966 +36968-36975 +36968-36975 +36969-36975 +36970 +36972-36975 +36972-36975 +36973-36975 +36974-36975 +36976-37008 +36976-37008 +36977-37008 +36978-36979 +36981-36983 +36984-37008 +36985-37008 +36986-37008 +36987-37008 +36987-36992 +36987-36990 +36988-36990 +36989-36990 +36993-37001 +36994-37001 +36995-37001 +36996-37001 +36997-37001 +36998-36999 +37000-37001 +37002-37003 +37003 +37004-37008 +37005-37008 +37005-37007 +37006-37007 +37009-37030 +37009-37030 +37010-37030 +37011-37012 +37013-37030 +37013-37018 +37014-37018 +37016-37018 +37016-37017 +37019-37030 +37019-37020 +37021-37027 +37022-37027 +37023-37025 +37024-37025 +37026-37027 +37028-37030 +37029-37030 +37031-37040 +37031-37040 +37032-37040 +37032-37038 +37033-37038 +37035-37038 +37035-37037 +37036-37037 +37041-37052 +37041-37052 +37042-37052 +37042-37049 +37043-37049 +37045-37047 +37046-37047 +37048-37049 +37053-37065 +37053-37065 +37054-37065 +37057-37065 +37057-37060 +37058-37060 +37059-37060 +37061-37065 +37062-37065 +37063-37065 +37064-37065 +37066-37093 +37066-37093 +37067-37093 +37067-37074 +37068-37074 +37070-37074 +37071-37074 +37072-37074 +37073-37074 +37075-37093 +37075-37080 +37076-37079 +37077-37079 +37078-37079 +37081-37093 +37082-37093 +37083-37093 +37084-37093 +37085-37093 +37086-37093 +37087-37089 +37088-37089 +37090-37093 +37091-37093 +37092-37093 +37094-37114 +37094-37114 +37095-37114 +37098-37114 +37099-37114 +37099-37102 +37100-37102 +37101-37102 +37103-37114 +37103-37107 +37104-37105 +37109-37114 +37110-37114 +37111-37114 +37112-37114 +37113-37114 +37115-37135 +37115-37135 +37116-37135 +37116-37123 +37117-37120 +37118-37120 +37118-37119 +37121-37123 +37122-37123 +37124-37135 +37125-37135 +37125-37130 +37126-37130 +37127-37128 +37129-37130 +37132-37134 +37133-37134 +37135 +37136-37153 +37136-37153 +37137-37153 +37137-37141 +37138-37141 +37139-37141 +37140-37141 +37142-37147 +37142-37146 +37143-37146 +37144-37146 +37145-37146 +37148-37153 +37149-37153 +37149-37151 +37150-37151 +37153 +37154-37177 +37154-37177 +37155-37177 +37156-37157 +37160-37164 +37162-37164 +37163-37164 +37165-37177 +37166-37168 +37167-37168 +37170-37177 +37170-37172 +37171-37172 +37173-37177 +37173-37176 +37175-37176 +37178-37187 +37178-37187 +37179-37187 +37179-37184 +37179-37180 +37181-37184 +37182-37184 +37183-37184 +37185-37186 +37188-37200 +37188-37200 +37189-37200 +37189 +37191-37200 +37191-37193 +37192-37193 +37194-37200 +37195-37200 +37195-37197 +37196-37197 +37198-37200 +37199-37200 +37201-37236 +37201-37236 +37202-37236 +37202-37208 +37203-37208 +37204-37208 +37205-37208 +37207-37208 +37209-37236 +37210-37211 +37212-37214 +37213-37214 +37215-37232 +37215 +37216-37220 +37218-37220 +37221-37232 +37222-37232 +37222-37224 +37223-37224 +37225-37232 +37225-37226 +37227-37229 +37228-37229 +37230-37232 +37231-37232 +37233-37236 +37235-37236 +37237-37245 +37237-37245 +37238-37245 +37238-37240 +37241-37242 +37243-37245 +37244-37245 +37246-37254 +37246-37254 +37247-37254 +37248-37254 +37249-37254 +37250-37254 +37252-37254 +37253-37254 +37255-37270 +37255-37270 +37256-37270 +37258-37260 +37259-37260 +37261-37270 +37262-37270 +37264-37268 +37264-37266 +37265-37266 +37267-37268 +37268 +37269-37270 +37271-37279 +37271-37279 +37272-37279 +37272-37276 +37273-37276 +37274-37276 +37275-37276 +37280-37292 +37280-37292 +37281-37292 +37281-37282 +37283-37292 +37284-37292 +37286-37289 +37287-37289 +37288-37289 +37290-37292 +37291-37292 +37293-37306 +37293-37306 +37294-37306 +37294-37297 +37295-37297 +37296-37297 +37298-37306 +37298-37302 +37300-37302 +37301-37302 +37303-37306 +37305-37306 +37307-37346 +37307-37346 +37308-37346 +37309-37312 +37310-37312 +37311-37312 +37314-37346 +37315-37346 +37315 +37316-37326 +37318-37322 +37319-37322 +37320-37322 +37321-37322 +37323-37326 +37324-37326 +37327-37346 +37328-37346 +37329-37331 +37332-37334 +37333-37334 +37335-37339 +37336-37339 +37338-37339 +37340-37346 +37341-37346 +37343-37344 +37345-37346 +37347-37357 +37347-37357 +37348-37357 +37348-37354 +37349-37351 +37350-37351 +37352-37354 +37353-37354 +37355-37357 +37356-37357 +37358-37380 +37358-37380 +37359-37380 +37359 +37360-37361 +37363-37380 +37363-37375 +37363-37367 +37363-37367 +37364-37367 +37365-37367 +37366-37367 +37367 +37368-37372 +37368-37369 +37371-37372 +37373-37375 +37374-37375 +37376-37380 +37378-37380 +37379-37380 +37381-37390 +37381-37390 +37382-37390 +37382-37384 +37385-37390 +37385-37388 +37387-37388 +37389-37390 +37390 +37391-37408 +37391-37408 +37392-37408 +37392-37398 +37393-37394 +37395-37398 +37396-37398 +37397-37398 +37399-37402 +37400-37402 +37401-37402 +37403-37408 +37404-37408 +37406-37408 +37407-37408 +37409-37416 +37409-37416 +37410-37416 +37412-37416 +37413-37416 +37414-37416 +37415-37416 +37417-37447 +37417-37447 +37418-37447 +37418-37423 +37420-37423 +37421-37423 +37422-37423 +37424-37447 +37425-37428 +37426-37428 +37427-37428 +37429-37447 +37431-37434 +37432-37434 +37433-37434 +37435-37437 +37435-37436 +37438-37447 +37439-37447 +37439-37442 +37440-37442 +37441-37442 +37444-37447 +37445-37447 +37446-37447 +37448-37470 +37448-37470 +37449-37470 +37449-37462 +37449-37453 +37451-37453 +37451-37452 +37454-37462 +37455-37462 +37455-37456 +37457-37458 +37459-37462 +37460-37462 +37463-37470 +37464-37470 +37465-37470 +37467-37470 +37468-37470 +37468-37469 +37471-37481 +37471-37481 +37472-37481 +37473-37474 +37475-37481 +37476-37481 +37477-37481 +37478-37481 +37478-37479 +37482-37530 +37482-37530 +37483-37530 +37483-37496 +37483-37484 +37485-37490 +37486-37490 +37487-37490 +37488-37490 +37489-37490 +37491-37492 +37495-37496 +37497-37530 +37498-37530 +37500-37530 +37500-37520 +37500-37511 +37500-37509 +37501-37509 +37503-37505 +37504-37505 +37506-37509 +37507-37509 +37508-37509 +37512-37520 +37513-37520 +37513-37516 +37514-37516 +37518-37520 +37519-37520 +37522-37530 +37522-37527 +37522-37527 +37523-37527 +37524-37526 +37525-37526 +37531-37552 +37531-37552 +37532-37552 +37532 +37533-37534 +37536-37552 +37536 +37537-37547 +37537-37544 +37538-37544 +37539-37542 +37540-37542 +37541-37542 +37545-37547 +37546-37547 +37548-37552 +37549-37552 +37551-37552 +37553-37568 +37553-37568 +37554-37568 +37555-37556 +37558-37568 +37558-37559 +37560-37568 +37561-37568 +37561-37565 +37564-37565 +37566-37567 +37569-37593 +37569-37593 +37570-37593 +37570-37578 +37571-37578 +37572-37578 +37573-37578 +37574-37578 +37575-37578 +37576-37578 +37577-37578 +37579-37593 +37580-37593 +37580-37587 +37581-37582 +37584-37587 +37585-37587 +37586-37587 +37588-37593 +37589-37593 +37591-37593 +37592-37593 +37594-37602 +37594-37602 +37595-37602 +37595 +37597-37599 +37598-37599 +37600-37602 +37601-37602 +37603-37614 +37603-37614 +37604-37614 +37607-37614 +37608-37614 +37608-37610 +37609-37610 +37611-37612 +37613-37614 +37615-37633 +37615-37633 +37616-37633 +37616 +37617-37621 +37617-37618 +37619-37621 +37620-37621 +37623-37633 +37623 +37624 +37625-37633 +37626-37633 +37626-37630 +37628-37630 +37629-37630 +37631-37633 +37632-37633 +37634-37637 +37634-37637 +37635-37637 +37635 +37638-37642 +37638-37642 +37639-37642 +37640-37642 +37641-37642 +37643-37657 +37643-37657 +37644-37657 +37644-37648 +37646-37648 +37647-37648 +37649-37657 +37651-37652 +37653-37657 +37655-37657 +37656-37657 +37658-37683 +37658-37683 +37659-37683 +37661-37662 +37663-37683 +37663-37672 +37663-37666 +37663-37664 +37667-37672 +37668-37672 +37668-37671 +37669-37671 +37670-37671 +37673-37683 +37674-37683 +37674-37677 +37675-37677 +37676-37677 +37680-37683 +37681-37682 +37684-37689 +37684-37689 +37685-37689 +37686-37687 +37688-37689 +37690-37700 +37690-37700 +37691-37700 +37693-37700 +37695-37700 +37696 +37698-37700 +37699-37700 +37701-37718 +37701-37718 +37702-37718 +37704-37718 +37704-37710 +37705-37710 +37705-37706 +37708-37710 +37709-37710 +37711-37718 +37712-37718 +37713 +37715-37718 +37716-37718 +37717-37718 +37719-37735 +37719-37735 +37720-37735 +37721-37722 +37723-37735 +37723-37725 +37725 +37726-37735 +37727-37735 +37730-37735 +37731-37735 +37732-37735 +37733-37735 +37734-37735 +37736-37758 +37736-37758 +37737-37758 +37738-37739 +37740-37741 +37742-37758 +37743-37752 +37743-37747 +37744-37745 +37746-37747 +37748-37752 +37749-37752 +37750-37752 +37751-37752 +37755-37758 +37756-37758 +37757-37758 +37759-37783 +37759-37783 +37760-37783 +37760-37766 +37760-37761 +37763-37764 +37765-37766 +37767-37783 +37768-37783 +37770-37771 +37772-37774 +37773-37774 +37775-37783 +37776-37783 +37776-37777 +37778-37783 +37779-37783 +37780-37783 +37783 +37784-37795 +37784-37795 +37785-37795 +37786-37787 +37788-37795 +37788-37791 +37789-37791 +37789-37790 +37792-37795 +37793-37795 +37793-37794 +37796-37808 +37796-37808 +37797-37808 +37798-37801 +37799-37801 +37800-37801 +37802-37808 +37803-37808 +37805-37808 +37806-37808 +37807-37808 +37809-37817 +37809-37817 +37809 +37810-37817 +37813-37817 +37814-37817 +37815-37817 +37816-37817 +37818-37830 +37818-37830 +37818-37824 +37818-37820 +37821-37822 +37823-37824 +37825-37830 +37826-37830 +37827-37829 +37828-37829 +37831-37842 +37831-37842 +37832-37842 +37832-37836 +37833-37836 +37833-37835 +37834-37835 +37837-37842 +37839-37842 +37840-37842 +37840-37841 +37843-37854 +37843-37854 +37844-37854 +37844-37848 +37845-37848 +37847-37848 +37850-37851 +37852-37854 +37853-37854 +37855-37860 +37855-37860 +37856-37860 +37857-37860 +37858-37859 +37861-37879 +37861-37879 +37862-37879 +37862-37872 +37862-37865 +37863-37865 +37864-37865 +37867-37872 +37867-37869 +37868-37869 +37870-37872 +37871-37872 +37873-37879 +37874-37879 +37875-37876 +37877-37879 +37878-37879 +37880-37885 +37880-37885 +37882-37885 +37882-37883 +37884-37885 +37886-37914 +37886-37914 +37887-37914 +37887-37894 +37888-37894 +37888-37891 +37888-37890 +37889-37890 +37892-37894 +37893-37894 +37895-37914 +37895-37898 +37896-37898 +37897-37898 +37899-37904 +37900-37904 +37901-37904 +37902-37904 +37902-37903 +37905-37914 +37906-37914 +37908-37914 +37909-37910 +37911-37914 +37912-37914 +37913-37914 +37915-37954 +37915-37954 +37916-37954 +37916-37924 +37917-37924 +37917-37920 +37917-37919 +37918-37919 +37921-37924 +37922-37924 +37925-37954 +37925-37929 +37926-37929 +37927-37929 +37928-37929 +37931-37954 +37931-37945 +37931-37943 +37932-37943 +37932-37933 +37934-37943 +37935-37943 +37937-37940 +37938-37940 +37939-37940 +37941-37943 +37942-37943 +37946-37954 +37947-37954 +37949-37954 +37950-37954 +37951-37954 +37952-37954 +37953-37954 +37955-37968 +37955-37968 +37957-37968 +37958-37968 +37958-37964 +37959-37962 +37960-37962 +37960-37961 +37965-37968 +37966-37968 +37966-37968 +37966-37967 +37969-37995 +37969-37995 +37969-37971 +37971 +37972-37974 +37974 +37975-37995 +37976-37995 +37976-37987 +37977-37987 +37977-37980 +37978-37980 +37979-37980 +37982-37987 +37982-37983 +37984-37987 +37985-37987 +37986-37987 +37989-37995 +37990-37994 +37990-37993 +37991-37993 +37992-37993 +37996-38006 +37996-38006 +37997-38006 +37997-38004 +37997-37999 +37998-37999 +38002-38004 +38003-38004 +38005-38006 +38006 +38007-38013 +38007-38013 +38008-38013 +38008 +38010-38013 +38011-38012 +38014-38017 +38014-38017 +38014-38016 +38015-38016 +38018-38028 +38018-38028 +38018-38022 +38018-38020 +38019-38020 +38023-38028 +38024-38028 +38024-38026 +38025-38026 +38029-38036 +38029-38036 +38030-38036 +38030-38032 +38031-38032 +38034-38036 +38035-38036 +38037-38053 +38037-38053 +38038-38053 +38039-38040 +38041-38042 +38043-38053 +38044-38053 +38044 +38045-38047 +38046-38047 +38050-38053 +38051-38053 +38052-38053 +38054-38065 +38054-38065 +38055-38065 +38057-38065 +38058-38065 +38058-38059 +38060-38061 +38061 +38062-38064 +38063-38064 +38066-38089 +38066-38089 +38067-38083 +38069-38070 +38071-38083 +38072-38083 +38073-38083 +38073-38076 +38074-38076 +38075-38076 +38077-38083 +38078-38083 +38079-38083 +38080-38083 +38081-38083 +38082-38083 +38084-38089 +38085-38089 +38087-38088 +38090-38109 +38090-38109 +38091-38109 +38091-38099 +38091-38094 +38091-38092 +38095-38099 +38096-38099 +38096-38097 +38100-38109 +38101-38109 +38101 +38102-38109 +38103-38109 +38103-38105 +38104-38105 +38107-38109 +38108-38109 +38110-38183 +38110-38183 +38110-38118 +38110-38113 +38111-38113 +38112-38113 +38115-38118 +38116-38118 +38117-38118 +38119-38183 +38120-38183 +38121-38183 +38121-38149 +38121-38140 +38121-38129 +38123-38129 +38123-38129 +38124-38129 +38125-38129 +38125-38126 +38127-38129 +38128-38129 +38130-38140 +38131-38140 +38131-38136 +38133-38136 +38134-38136 +38135-38136 +38137-38140 +38138-38140 +38141-38149 +38141-38143 +38142-38143 +38142-38143 +38144-38149 +38145-38149 +38148-38149 +38150-38183 +38150-38156 +38153-38156 +38154-38156 +38155-38156 +38157-38183 +38158-38183 +38160-38183 +38160-38167 +38160-38163 +38162-38163 +38164-38167 +38165-38167 +38166-38167 +38168-38183 +38169-38183 +38169-38172 +38171-38172 +38173-38183 +38174-38183 +38175-38183 +38175-38176 +38177-38183 +38178-38183 +38179-38183 +38179-38180 +38182-38183 +38184-38221 +38184-38221 +38185-38221 +38185-38188 +38186-38188 +38187-38188 +38189-38190 +38192-38221 +38192-38198 +38193-38198 +38193-38194 +38195-38198 +38196-38198 +38197-38198 +38199-38221 +38200-38221 +38202-38221 +38203-38221 +38203-38214 +38203-38211 +38203-38206 +38204-38206 +38205-38206 +38208-38211 +38209-38211 +38212-38214 +38213-38214 +38215-38221 +38216-38221 +38216-38218 +38217-38218 +38219-38221 +38220-38221 +38222-38235 +38222-38235 +38223-38235 +38224-38225 +38227-38228 +38229-38235 +38230-38235 +38230 +38231-38232 +38233-38234 +38236-38247 +38236-38247 +38237-38247 +38239-38240 +38241-38247 +38241-38243 +38242-38243 +38246-38247 +38248-38285 +38248-38285 +38249-38285 +38250 +38252-38285 +38252-38279 +38253-38256 +38254-38256 +38255-38256 +38257-38279 +38257-38261 +38258-38261 +38259-38261 +38260-38261 +38262-38267 +38263-38267 +38264-38267 +38265-38267 +38266-38267 +38268-38273 +38269-38273 +38270-38273 +38271-38273 +38272-38273 +38274-38279 +38275-38279 +38276-38279 +38277-38279 +38278-38279 +38280-38285 +38281-38285 +38281-38283 +38282-38283 +38284-38285 +38285 +38286-38294 +38286-38294 +38287-38294 +38289-38294 +38291-38294 +38291-38292 +38293-38294 +38294 +38295-38308 +38295-38308 +38296-38308 +38297-38299 +38298-38299 +38301-38303 +38302-38303 +38304-38308 +38305-38308 +38307-38308 +38309-38332 +38309-38332 +38309 +38310-38311 +38313-38332 +38313-38319 +38313-38314 +38316-38319 +38316-38317 +38318-38319 +38320-38332 +38321-38332 +38323-38332 +38325-38329 +38325-38326 +38327-38329 +38328-38329 +38331-38332 +38333-38346 +38333-38346 +38334-38346 +38334-38342 +38334-38335 +38336-38337 +38339-38342 +38340-38342 +38340-38341 +38343-38346 +38344-38346 +38344-38345 +38347-38357 +38347-38357 +38348-38357 +38349-38350 +38351-38356 +38351-38354 +38351-38353 +38352-38353 +38355-38356 +38356 +38358-38391 +38358-38391 +38359-38391 +38359-38364 +38359-38360 +38361 +38363-38364 +38365-38367 +38366-38367 +38366 +38368-38391 +38369-38391 +38369-38377 +38369 +38371-38373 +38372-38373 +38374-38377 +38375-38377 +38376-38377 +38378-38391 +38379-38391 +38379-38388 +38379-38384 +38381-38384 +38382-38384 +38383-38384 +38387-38388 +38389-38391 +38390-38391 +38392-38417 +38392-38417 +38393-38417 +38393-38401 +38393-38395 +38394-38395 +38396-38398 +38397-38398 +38400-38401 +38402-38417 +38403-38417 +38404-38417 +38404-38405 +38406-38417 +38407-38417 +38407-38410 +38408-38410 +38409-38410 +38412-38415 +38413-38415 +38414-38415 +38418-38430 +38418-38430 +38420-38430 +38420-38423 +38421-38423 +38422-38423 +38425-38430 +38426-38430 +38427-38430 +38428-38430 +38429-38430 +38431-38439 +38431-38439 +38432-38439 +38434-38439 +38434-38439 +38435-38439 +38436-38437 +38438-38439 +38440-38449 +38440-38449 +38441-38449 +38443-38444 +38445-38449 +38445 +38446-38449 +38447-38449 +38450-38459 +38450-38459 +38451-38459 +38451-38454 +38452-38454 +38453-38454 +38457-38459 +38458-38459 +38460-38469 +38460-38469 +38461-38469 +38461-38464 +38461-38462 +38463-38464 +38467-38469 +38468-38469 +38470-38487 +38470-38487 +38471-38487 +38473-38487 +38473-38475 +38474-38475 +38476-38487 +38478-38483 +38479-38483 +38480-38483 +38481-38483 +38482-38483 +38485-38487 +38486-38487 +38488-38494 +38488-38494 +38489-38494 +38489-38490 +38492-38494 +38493-38494 +38495-38515 +38495-38515 +38496-38515 +38496 +38498-38515 +38498-38509 +38498 +38502-38509 +38503-38509 +38503-38505 +38504-38505 +38506-38508 +38506-38507 +38510-38515 +38511-38515 +38513-38515 +38514-38515 +38516-38544 +38516-38544 +38517-38544 +38517 +38520-38521 +38522-38544 +38522-38534 +38522-38523 +38522 +38523 +38524-38534 +38524-38528 +38524-38526 +38525-38526 +38527-38528 +38529-38534 +38530-38534 +38530-38532 +38530-38531 +38533-38534 +38534 +38535-38544 +38536-38544 +38537-38539 +38538-38539 +38541-38544 +38545-38574 +38545-38574 +38546-38574 +38546-38554 +38547-38554 +38548-38554 +38549-38554 +38549-38550 +38552-38554 +38553-38554 +38555-38556 +38556 +38557-38574 +38558-38561 +38559-38561 +38560-38561 +38562-38563 +38564-38574 +38564 +38566-38567 +38568-38574 +38569-38574 +38569-38570 +38572-38574 +38573-38574 +38575-38589 +38575-38589 +38576-38589 +38578-38589 +38578-38579 +38579 +38580-38589 +38581-38589 +38581-38585 +38581 +38583-38585 +38584-38585 +38586-38589 +38587-38589 +38588-38589 +38590-38599 +38590-38599 +38590-38594 +38591-38594 +38591-38592 +38593-38594 +38597-38599 +38598-38599 +38600-38612 +38600-38612 +38601-38612 +38601-38605 +38603-38605 +38604-38605 +38606-38612 +38607-38612 +38607-38608 +38610-38612 +38611-38612 +38613-38618 +38613-38618 +38614-38618 +38617-38618 +38619-38654 +38619-38654 +38620-38654 +38621-38622 +38623-38654 +38623-38627 +38623-38625 +38624-38625 +38628-38632 +38629-38632 +38630-38631 +38633-38654 +38634-38654 +38636-38654 +38636 +38639-38640 +38641-38654 +38642-38654 +38642-38648 +38642-38643 +38645-38646 +38647-38648 +38649-38654 +38650-38654 +38652-38654 +38655-38681 +38655-38681 +38657 +38659-38681 +38659-38662 +38663-38676 +38663-38666 +38664-38665 +38667-38676 +38668-38676 +38668-38670 +38669-38670 +38671-38672 +38673-38675 +38674-38675 +38677-38681 +38679-38681 +38679 +38682-38704 +38682-38704 +38684-38704 +38684-38694 +38685-38694 +38689 +38690-38694 +38691-38694 +38692-38694 +38693-38694 +38695-38704 +38696-38704 +38696-38699 +38697-38699 +38698-38699 +38700 +38703-38704 +38705-38731 +38705-38731 +38708-38731 +38708-38718 +38708-38711 +38708 +38709-38711 +38710-38711 +38712-38714 +38712 +38713-38714 +38714 +38715-38718 +38715 +38716-38718 +38717-38718 +38719-38731 +38720-38731 +38720-38723 +38720-38722 +38721-38722 +38722 +38724-38727 +38725-38727 +38725-38726 +38726 +38728-38731 +38729-38731 +38729-38730 +38730 +38732-38754 +38732-38754 +38733-38754 +38733-38747 +38733-38737 +38733-38735 +38734-38735 +38736-38737 +38739-38740 +38742-38747 +38743-38747 +38743-38744 +38748-38754 +38749-38754 +38752-38754 +38755-38779 +38755-38779 +38756-38779 +38756-38766 +38757-38766 +38758-38759 +38761-38766 +38761-38762 +38764-38766 +38765-38766 +38767-38779 +38767-38768 +38769-38773 +38769-38770 +38771-38773 +38772-38773 +38775-38776 +38777-38779 +38778-38779 +38780-38787 +38780-38787 +38781-38787 +38781-38783 +38781-38782 +38784-38787 +38785-38787 +38788-38795 +38788-38795 +38789-38795 +38789 +38790-38795 +38790-38792 +38790-38791 +38793-38795 +38794-38795 +38796-38799 +38796-38799 +38797-38799 +38798-38799 +38800-38813 +38800-38813 +38801-38813 +38801-38803 +38802-38803 +38805-38813 +38805-38810 +38806-38810 +38807-38810 +38808-38810 +38809-38810 +38812-38813 +38814-38822 +38814-38822 +38815-38822 +38816 +38817-38819 +38818-38819 +38821-38822 +38823-38841 +38823-38841 +38824-38841 +38825-38828 +38826-38828 +38827-38828 +38831-38841 +38831-38836 +38831-38835 +38832-38835 +38833-38835 +38833-38834 +38837-38841 +38838-38841 +38839-38840 +38842-38862 +38842-38862 +38843-38862 +38843-38854 +38843-38849 +38844-38849 +38844-38846 +38845-38846 +38847-38848 +38850-38854 +38852-38854 +38853-38854 +38855-38862 +38856-38862 +38857-38862 +38857-38858 +38861-38862 +38863-38876 +38863-38876 +38864-38876 +38864-38870 +38865-38870 +38866-38867 +38869-38870 +38871-38873 +38872-38873 +38874-38875 +38877-38882 +38877-38882 +38877-38878 +38880-38881 +38883-38899 +38883-38899 +38884-38899 +38884-38891 +38885-38891 +38885-38887 +38886-38887 +38890-38891 +38893-38899 +38894-38895 +38896-38899 +38897-38899 +38898-38899 +38900-38913 +38900-38913 +38900-38907 +38901-38907 +38901-38902 +38903 +38905-38907 +38906-38907 +38908-38909 +38911-38913 +38911-38912 +38912 +38914-38932 +38914-38932 +38915-38932 +38915-38920 +38916-38920 +38916-38917 +38918 +38921-38932 +38921-38927 +38921-38924 +38921-38923 +38922-38923 +38925-38926 +38928-38932 +38929-38932 +38929-38931 +38930-38931 +38933-38947 +38933-38947 +38933-38940 +38933-38937 +38934-38937 +38936-38937 +38938-38939 +38941-38947 +38942-38947 +38942-38946 +38943-38946 +38945-38946 +38948-38972 +38948-38972 +38948-38955 +38949-38955 +38949-38951 +38950-38951 +38953-38955 +38954-38955 +38956-38972 +38956-38961 +38957-38959 +38958-38959 +38960-38961 +38962-38972 +38963-38972 +38963-38964 +38966-38972 +38967-38972 +38968-38972 +38969-38972 +38969-38970 +38971-38972 +38973-38978 +38973-38978 +38974-38978 +38974 +38976-38978 +38976 +38977-38978 +38978 +38979-39001 +38979-39001 +38979-38991 +38979-38980 +38981-38987 +38982-38987 +38983-38987 +38984-38987 +38984-38986 +38985-38986 +38988-38991 +38989-38991 +38989 +38992-39001 +38993-39001 +38994-38998 +38995-38998 +38996-38998 +38996-38997 +39000-39001 +39002-39027 +39002-39027 +39003-39027 +39003-39008 +39004-39008 +39005-39008 +39006-39008 +39009-39010 +39011-39015 +39012-39015 +39013-39015 +39014-39015 +39018-39027 +39019-39027 +39019-39023 +39019-39020 +39021-39023 +39022-39023 +39024-39027 +39025-39027 +39026-39027 +39028-39040 +39028-39040 +39029-39040 +39031-39040 +39032-39040 +39033-39040 +39034-39040 +39034-39038 +39035-39038 +39036-39038 +39037-39038 +39039-39040 +39040 +39041-39081 +39041-39081 +39042-39081 +39042-39044 +39042-39043 +39045-39081 +39046-39081 +39047-39081 +39047-39064 +39047-39052 +39047-39049 +39047-39048 +39050-39051 +39053-39064 +39053-39054 +39055-39064 +39056-39064 +39060-39064 +39061-39064 +39062-39064 +39063-39064 +39065-39081 +39066-39081 +39066-39071 +39067-39071 +39069-39070 +39072-39081 +39074-39078 +39075-39078 +39076-39078 +39077-39078 +39079-39081 +39079-39080 +39082-39112 +39082-39112 +39082-39107 +39082-39096 +39082-39093 +39082-39083 +39085-39087 +39086-39087 +39088-39093 +39089-39093 +39090-39093 +39091-39093 +39091-39092 +39094-39096 +39095-39096 +39097-39107 +39098-39107 +39099-39103 +39100-39103 +39101-39103 +39102-39103 +39104-39107 +39105-39107 +39106-39107 +39108-39112 +39109-39112 +39110-39111 +39113-39136 +39113-39136 +39113-39131 +39113-39125 +39113-39122 +39113-39114 +39116-39118 +39117-39118 +39119-39122 +39120-39122 +39120-39121 +39123-39125 +39124-39125 +39126-39131 +39127-39131 +39128-39131 +39129-39131 +39130-39131 +39132-39136 +39133-39136 +39134-39135 +39137-39156 +39137-39156 +39137-39146 +39137-39142 +39138-39139 +39140-39141 +39143-39146 +39144-39146 +39144-39146 +39145-39146 +39147-39156 +39148-39156 +39148-39150 +39148-39150 +39149-39150 +39151-39156 +39152-39156 +39152-39153 +39153 +39154-39155 +39157-39164 +39157-39164 +39157-39160 +39158-39160 +39159-39160 +39162-39164 +39163-39164 +39165-39177 +39165-39177 +39165-39170 +39166-39170 +39166-39168 +39167-39168 +39171-39175 +39172-39175 +39173-39175 +39174-39175 +39178-39186 +39178-39186 +39179-39186 +39179-39181 +39180-39181 +39182-39185 +39183-39185 +39184-39185 +39187-39196 +39187-39196 +39188-39196 +39188 +39189-39196 +39190-39196 +39190-39194 +39190-39191 +39192-39194 +39193-39194 +39197-39219 +39197-39219 +39198-39219 +39198-39208 +39199-39208 +39199-39202 +39199-39201 +39200-39201 +39204-39208 +39206-39208 +39206-39207 +39210-39211 +39212-39219 +39213-39219 +39214-39219 +39214-39215 +39216-39217 +39220-39230 +39220-39230 +39221-39230 +39221-39223 +39222-39223 +39223 +39227-39230 +39228-39230 +39229-39230 +39231-39233 +39231-39233 +39232-39233 +39232 +39234-39245 +39234-39245 +39235-39245 +39235-39236 +39237 +39239-39245 +39240-39245 +39243-39245 +39244-39245 +39246-39271 +39246-39271 +39247-39271 +39248-39249 +39250-39251 +39252-39271 +39252-39263 +39253-39255 +39254-39255 +39256-39262 +39257-39262 +39258-39262 +39258-39259 +39260-39262 +39261-39262 +39264-39271 +39265-39271 +39265-39267 +39266-39267 +39269-39271 +39270-39271 +39272-39281 +39272-39281 +39272 +39274-39281 +39274-39277 +39275-39277 +39276-39277 +39278-39280 +39279-39280 +39282-39292 +39282-39292 +39283-39292 +39283-39286 +39283-39284 +39284 +39287-39292 +39288-39292 +39293-39316 +39293-39316 +39294-39316 +39295-39297 +39296-39297 +39298-39316 +39299-39316 +39299-39307 +39300-39307 +39300-39301 +39302-39304 +39303-39304 +39305-39307 +39306-39307 +39308-39316 +39309-39316 +39310-39316 +39310-39311 +39312-39316 +39313-39316 +39314-39316 +39315-39316 +39317-39323 +39317-39323 +39318-39323 +39319-39323 +39319-39320 +39321-39323 +39324-39340 +39324-39340 +39324-39327 +39325-39327 +39326-39327 +39328-39340 +39329-39340 +39330-39340 +39330-39334 +39331-39334 +39332-39334 +39333-39334 +39335-39340 +39336-39340 +39337-39340 +39338-39340 +39339-39340 +39341-39357 +39341-39357 +39341-39342 +39343-39357 +39344-39357 +39344-39349 +39345-39349 +39346-39349 +39347-39349 +39348-39349 +39350-39357 +39351-39357 +39351-39355 +39351-39352 +39353-39355 +39354-39355 +39358-39370 +39358-39370 +39359-39370 +39359 +39360-39362 +39361-39362 +39365-39370 +39365 +39366-39367 +39368-39369 +39371-39394 +39371-39394 +39372-39394 +39374-39394 +39374-39377 +39375-39377 +39376-39377 +39379-39394 +39380-39394 +39380-39384 +39381-39382 +39383-39384 +39385-39394 +39386-39394 +39387-39390 +39388-39390 +39389-39390 +39393-39394 +39395-39408 +39395-39408 +39397-39408 +39398-39408 +39398-39402 +39399-39402 +39400-39402 +39401-39402 +39403-39408 +39404-39408 +39404-39406 +39405-39406 +39409-39426 +39409-39426 +39410-39426 +39410-39418 +39410-39411 +39412-39418 +39413-39418 +39414-39418 +39415-39418 +39416-39418 +39417-39418 +39419-39426 +39420-39426 +39420-39423 +39421-39423 +39424-39426 +39425-39426 +39427-39476 +39427-39476 +39427-39428 +39429-39433 +39430-39433 +39431-39433 +39432-39433 +39435-39476 +39435-39440 +39436-39437 +39438-39440 +39439-39440 +39441-39476 +39442-39476 +39442-39446 +39442-39443 +39444-39446 +39445-39446 +39447-39476 +39448-39476 +39449-39458 +39449-39453 +39450-39453 +39451-39453 +39452-39453 +39454-39458 +39455-39458 +39456-39458 +39457-39458 +39459-39462 +39460-39462 +39460-39461 +39463-39476 +39463-39465 +39464-39465 +39466-39476 +39467-39476 +39468-39476 +39469-39476 +39470-39476 +39471-39476 +39472-39476 +39472-39473 +39474-39476 +39475-39476 +39477-39484 +39477-39484 +39477 +39480-39484 +39481-39484 +39482-39484 +39482-39483 +39485-39501 +39485-39501 +39486-39488 +39487-39488 +39489-39501 +39490-39501 +39491-39494 +39492-39494 +39493-39494 +39495-39501 +39495-39497 +39498-39501 +39499-39501 +39499-39500 +39500 +39502-39525 +39502-39525 +39502-39504 +39505-39525 +39506-39510 +39506-39507 +39508-39510 +39509-39510 +39511-39517 +39511-39512 +39513-39517 +39514-39517 +39516-39517 +39518-39525 +39520-39525 +39522-39525 +39523-39525 +39524-39525 +39526-39552 +39526-39552 +39526-39535 +39526-39527 +39529-39532 +39530-39532 +39531-39532 +39533-39535 +39534-39535 +39537-39552 +39538-39541 +39539-39541 +39540-39541 +39543-39552 +39545-39552 +39546-39552 +39547-39552 +39547-39550 +39548-39550 +39551-39552 +39553-39588 +39553-39588 +39554-39588 +39556-39564 +39556-39559 +39556 +39557-39559 +39560-39564 +39561-39564 +39562-39564 +39565-39588 +39565-39588 +39566-39588 +39566-39575 +39567-39571 +39568-39570 +39569-39570 +39572-39574 +39573-39574 +39576-39588 +39577-39588 +39577-39584 +39578-39580 +39579-39580 +39582-39584 +39583-39584 +39586-39588 +39587-39588 +39589-39609 +39589-39609 +39590-39609 +39591-39594 +39592-39594 +39593-39594 +39595-39609 +39597-39609 +39598-39609 +39599-39609 +39599-39601 +39600-39601 +39602-39609 +39603-39609 +39603-39604 +39607-39609 +39607-39608 +39610-39614 +39610-39614 +39611-39614 +39613-39614 +39615-39625 +39615-39625 +39616-39625 +39617-39625 +39617-39619 +39618-39619 +39619 +39622-39625 +39623-39625 +39624-39625 +39626-39630 +39626-39630 +39626 +39629-39630 +39631-39636 +39631-39636 +39632-39636 +39632-39633 +39635-39636 +39637-39646 +39637-39646 +39638-39646 +39638-39640 +39639-39640 +39642-39643 +39644-39646 +39645-39646 +39647-39655 +39647-39655 +39648-39655 +39648-39654 +39649-39654 +39649-39653 +39650-39653 +39651-39653 +39652-39653 +39656-39657 +39656-39657 +39658-39660 +39658-39660 +39658-39659 +39661-39685 +39661-39685 +39662-39685 +39664-39685 +39664-39672 +39664-39672 +39665-39672 +39666-39672 +39668-39669 +39670-39672 +39671-39672 +39673-39677 +39674-39677 +39675-39677 +39676-39677 +39679-39680 +39681-39685 +39682-39685 +39683-39685 +39684-39685 +39686-39698 +39686-39698 +39687-39698 +39687-39692 +39688-39692 +39690-39692 +39691-39692 +39694-39698 +39695-39698 +39696-39698 +39697-39698 +39699-39710 +39699-39710 +39700-39710 +39700-39708 +39700-39708 +39701-39708 +39704-39708 +39705-39708 +39706-39708 +39707-39708 +39711-39719 +39711-39719 +39712-39719 +39712-39717 +39713-39717 +39713-39716 +39714-39716 +39715-39716 +39720-39741 +39720-39741 +39721-39741 +39721-39732 +39722-39732 +39724-39732 +39725-39732 +39725-39726 +39727-39729 +39728-39729 +39730-39732 +39731-39732 +39733-39741 +39735-39741 +39735 +39736-39738 +39737-39738 +39739-39741 +39740-39741 +39742-39754 +39742-39754 +39743-39754 +39743-39745 +39744-39745 +39748-39751 +39749-39751 +39750-39751 +39752-39754 +39752-39753 +39755-39771 +39755-39771 +39756-39771 +39757-39760 +39758-39760 +39759-39760 +39762-39771 +39762 +39764-39766 +39765-39766 +39767-39771 +39768-39769 +39770-39771 +39772-39784 +39772-39784 +39773-39784 +39776-39784 +39776 +39780-39784 +39780-39782 +39781-39782 +39783-39784 +39785-39808 +39785-39808 +39786-39808 +39787-39788 +39789-39808 +39789-39794 +39789 +39790-39794 +39791-39794 +39792-39794 +39793-39794 +39795-39808 +39796-39808 +39797-39800 +39798-39800 +39799-39800 +39801-39803 +39802-39803 +39805-39808 +39806-39808 +39807-39808 +39809-39820 +39809-39820 +39810-39820 +39812-39813 +39814-39820 +39815-39820 +39815-39819 +39815-39817 +39815-39816 +39818-39819 +39821-39835 +39821-39835 +39822-39835 +39823-39824 +39825-39835 +39826-39835 +39826-39827 +39828-39835 +39829-39835 +39831-39835 +39833-39835 +39834-39835 +39836-39873 +39836-39873 +39837-39873 +39838-39873 +39838-39839 +39840-39873 +39840-39856 +39840-39846 +39840-39843 +39841-39843 +39842-39843 +39844-39846 +39845-39846 +39847-39856 +39848-39856 +39850-39856 +39851-39856 +39851-39855 +39851-39852 +39853-39855 +39854-39855 +39857-39873 +39858-39873 +39859-39861 +39860-39861 +39862-39873 +39862 +39864-39869 +39865-39869 +39866-39869 +39867-39869 +39868-39869 +39870-39873 +39870 +39871 +39872 +39873 +39874-39893 +39874-39893 +39875-39893 +39877-39878 +39879-39893 +39879 +39880-39888 +39880-39882 +39881-39882 +39883-39885 +39884-39885 +39887-39888 +39889-39893 +39890-39893 +39890-39891 +39894-39902 +39894-39902 +39895-39902 +39896-39902 +39896-39897 +39898-39902 +39899-39902 +39900-39901 +39903-39923 +39903-39923 +39904-39923 +39905-39908 +39906-39908 +39907-39908 +39909-39923 +39909-39910 +39913-39923 +39913-39918 +39915-39916 +39917-39918 +39919-39923 +39920-39923 +39920-39921 +39922-39923 +39924-39935 +39924-39935 +39925-39935 +39925-39930 +39925-39926 +39929-39930 +39931-39935 +39932-39935 +39932-39933 +39934-39935 +39936-39954 +39936-39954 +39936-39949 +39937-39938 +39939-39943 +39940-39943 +39940-39941 +39941 +39942-39943 +39943 +39944-39949 +39947-39949 +39948-39949 +39950-39954 +39951-39954 +39951-39952 +39955-39960 +39955-39960 +39955-39956 +39959-39960 +39961-39972 +39961-39972 +39962-39972 +39962-39964 +39963-39964 +39965 +39967-39972 +39967-39970 +39968-39970 +39969-39970 +39973-39982 +39973-39982 +39974-39982 +39974-39977 +39975-39977 +39979-39981 +39980-39981 +39983-39990 +39983-39990 +39984-39985 +39986-39990 +39987-39990 +39987-39988 +39989-39990 +39991-40004 +39991-40004 +39992-40004 +39994-40004 +39994-40001 +39996-40000 +39997-40000 +39998-40000 +39999-40000 +40002-40004 +40003-40004 +40003-40004 +40005-40025 +40005-40025 +40006-40025 +40006-40021 +40007-40021 +40007-40010 +40007-40008 +40009-40010 +40011-40017 +40011-40012 +40013-40017 +40014-40017 +40015-40016 +40018-40019 +40022-40024 +40022-40023 +40025 +40026-40037 +40026-40037 +40026-40034 +40026-40027 +40030-40034 +40030-40031 +40032-40034 +40033-40034 +40035-40037 +40036-40037 +40038-40045 +40038-40045 +40039-40045 +40039-40040 +40041-40044 +40042-40044 +40043-40044 +40046-40053 +40046-40053 +40047-40053 +40047-40049 +40048-40049 +40051-40053 +40052-40053 +40054-40062 +40054-40062 +40055-40062 +40055-40058 +40056-40058 +40057-40058 +40059-40062 +40060-40062 +40063-40076 +40063-40076 +40065-40067 +40065-40067 +40066-40067 +40068-40076 +40069-40076 +40070-40072 +40071-40072 +40073-40076 +40075-40076 +40077-40083 +40077-40083 +40077-40080 +40078-40080 +40078-40079 +40079 +40081-40083 +40082-40083 +40084-40100 +40084-40100 +40086-40100 +40086-40088 +40087-40088 +40089-40100 +40089-40090 +40091-40100 +40092-40100 +40092-40093 +40094-40100 +40094-40097 +40098-40100 +40099-40100 +40101-40112 +40101-40112 +40102-40112 +40102-40106 +40104-40106 +40105-40106 +40107-40112 +40108-40111 +40109-40111 +40110-40111 +40113-40141 +40113-40141 +40113-40129 +40113-40121 +40113-40117 +40114-40116 +40115-40116 +40117 +40118-40121 +40119-40121 +40119-40120 +40121 +40122-40129 +40123-40129 +40125-40129 +40126-40129 +40127-40129 +40128-40129 +40130-40141 +40132-40134 +40133-40134 +40135-40141 +40136-40141 +40136-40138 +40136 +40137-40138 +40138 +40142-40151 +40142-40151 +40143-40151 +40143-40145 +40143-40144 +40146-40151 +40146-40147 +40148 +40149-40150 +40152-40163 +40152-40163 +40153-40154 +40155-40163 +40156-40163 +40156 +40157-40159 +40158-40159 +40160-40163 +40161-40163 +40161 +40164-40179 +40164-40179 +40164-40176 +40165-40176 +40165-40173 +40165-40172 +40165-40167 +40166-40167 +40168-40172 +40169-40172 +40170-40172 +40171-40172 +40174-40176 +40175-40176 +40177-40179 +40180-40199 +40180-40199 +40181-40199 +40183-40199 +40184-40199 +40184-40192 +40185-40192 +40186-40187 +40188-40192 +40188-40189 +40190-40191 +40193-40199 +40194-40199 +40196-40199 +40197-40199 +40198-40199 +40200-40213 +40200-40213 +40200-40203 +40200-40201 +40204-40213 +40205-40213 +40205-40208 +40205-40206 +40209-40212 +40210-40212 +40211-40212 +40214-40228 +40214-40228 +40215-40228 +40216-40217 +40218-40228 +40218 +40219-40224 +40219-40220 +40221-40223 +40221-40222 +40225-40228 +40226-40228 +40227-40228 +40229-40254 +40229-40254 +40230-40254 +40231-40232 +40233-40254 +40234-40254 +40236-40254 +40237-40254 +40237-40240 +40238-40240 +40239-40240 +40241-40254 +40243-40244 +40245-40248 +40246-40248 +40247-40248 +40249-40254 +40250-40254 +40251-40252 +40253-40254 +40255-40266 +40255-40266 +40256-40266 +40256-40258 +40256-40257 +40259-40266 +40259-40261 +40262 +40263-40265 +40264-40265 +40267-40277 +40267-40277 +40270-40277 +40271-40277 +40271-40275 +40272-40275 +40273-40275 +40273-40274 +40274 +40278-40334 +40278-40334 +40279-40334 +40279-40306 +40280-40306 +40280-40292 +40281-40283 +40281-40282 +40284-40287 +40285-40287 +40286-40287 +40288-40292 +40289-40291 +40290-40291 +40292 +40293-40306 +40294-40306 +40295-40306 +40295-40300 +40296-40300 +40296-40297 +40298-40300 +40299-40300 +40301-40306 +40301-40306 +40301-40302 +40303-40304 +40305-40306 +40307-40334 +40307-40323 +40308-40312 +40309-40312 +40310-40312 +40310-40311 +40313-40323 +40313-40317 +40314-40317 +40315-40317 +40318-40323 +40319-40323 +40320-40323 +40321-40323 +40324-40334 +40325-40334 +40325-40326 +40327-40334 +40328-40334 +40328-40330 +40329-40330 +40331-40333 +40332-40333 +40335-40356 +40335-40356 +40336-40356 +40336-40354 +40336-40338 +40337-40338 +40339-40354 +40340-40354 +40340-40345 +40341-40345 +40342-40345 +40343-40345 +40344-40345 +40346-40354 +40347-40354 +40348-40350 +40349-40350 +40351-40354 +40352-40354 +40353-40354 +40357-40366 +40357-40366 +40358-40366 +40358-40364 +40359-40364 +40359-40360 +40361-40364 +40362-40364 +40363-40364 +40367-40382 +40367-40382 +40368-40382 +40368-40375 +40368-40371 +40368-40371 +40369-40371 +40374-40375 +40376-40382 +40377-40382 +40377-40379 +40383-40394 +40383-40394 +40383-40388 +40384-40388 +40386-40388 +40387-40388 +40389-40394 +40390-40394 +40392-40394 +40393-40394 +40395-40404 +40395-40404 +40396-40404 +40396-40398 +40398 +40399-40404 +40400-40404 +40402-40404 +40403-40404 +40405-40412 +40405-40412 +40406-40412 +40407-40412 +40408-40412 +40410-40412 +40411-40412 +40413-40418 +40413-40418 +40415-40418 +40415 +40416-40418 +40416-40417 +40418 +40419-40461 +40419-40461 +40420-40461 +40420-40435 +40420-40421 +40422-40424 +40423-40424 +40425-40428 +40426-40428 +40427-40428 +40429-40435 +40429-40431 +40430-40431 +40432-40435 +40433-40435 +40434-40435 +40436-40461 +40436-40443 +40436-40439 +40438-40439 +40440-40443 +40441-40443 +40442-40443 +40444-40451 +40444-40446 +40445-40446 +40447-40451 +40448-40451 +40449-40451 +40450-40451 +40452-40461 +40452-40456 +40453-40456 +40454-40456 +40455-40456 +40457-40461 +40458-40461 +40459-40461 +40460-40461 +40462-40480 +40462-40480 +40463-40480 +40464-40466 +40465-40466 +40467-40480 +40467-40477 +40467-40472 +40468-40472 +40469-40472 +40471-40472 +40473-40477 +40475-40477 +40476-40477 +40478-40480 +40479-40480 +40481-40490 +40481-40490 +40482-40490 +40482-40488 +40482-40484 +40483-40484 +40485-40488 +40486-40488 +40487-40488 +40489-40490 +40490 +40491-40507 +40491-40507 +40491 +40492-40500 +40492-40499 +40492-40498 +40493-40498 +40494-40498 +40494-40495 +40496-40498 +40497-40498 +40501-40507 +40502-40507 +40502-40504 +40502-40503 +40508-40516 +40508-40516 +40509-40516 +40510-40512 +40511-40512 +40515-40516 +40517-40554 +40517-40554 +40518-40554 +40518-40533 +40518-40525 +40519-40525 +40520-40523 +40521-40523 +40522-40523 +40524-40525 +40526-40528 +40527-40528 +40531-40533 +40532-40533 +40534-40554 +40534-40540 +40538-40540 +40539-40540 +40541-40547 +40542-40547 +40542-40543 +40546-40547 +40548-40554 +40549-40554 +40549-40550 +40553-40554 +40555-40566 +40555-40566 +40557-40566 +40557-40560 +40557-40558 +40561-40566 +40562-40566 +40562-40565 +40563-40565 +40564-40565 +40567-40587 +40567-40587 +40568-40587 +40570-40573 +40571-40573 +40572-40573 +40574-40587 +40576-40587 +40577-40587 +40578-40587 +40579-40587 +40579-40581 +40580-40581 +40584-40587 +40585-40587 +40586-40587 +40588-40605 +40588-40605 +40589-40605 +40589 +40592-40605 +40593-40605 +40594-40605 +40594-40596 +40594-40595 +40598-40601 +40599-40601 +40600-40601 +40603-40605 +40604-40605 +40606-40615 +40606-40615 +40606 +40607-40615 +40609-40615 +40610-40615 +40610-40612 +40611-40612 +40616-40643 +40616-40643 +40617-40643 +40617-40631 +40617-40631 +40617-40620 +40618-40620 +40619-40620 +40621-40631 +40621-40628 +40621-40622 +40624-40628 +40625-40628 +40626-40628 +40627-40628 +40629-40631 +40630-40631 +40633-40643 +40634-40643 +40637-40643 +40638-40643 +40639-40643 +40639-40640 +40641-40643 +40642-40643 +40644-40653 +40644-40653 +40644 +40647-40653 +40648-40653 +40648-40650 +40649-40650 +40654-40658 +40654-40658 +40655-40658 +40656-40658 +40657-40658 +40659-40675 +40659-40675 +40659-40666 +40662-40666 +40663-40666 +40664-40666 +40665-40666 +40667-40675 +40668-40675 +40668-40672 +40669-40672 +40671-40672 +40673-40675 +40674-40675 +40676-40695 +40676-40695 +40677-40695 +40678-40680 +40679-40680 +40681-40695 +40681 +40682-40695 +40682-40692 +40682-40683 +40684-40692 +40685-40692 +40687-40692 +40689-40692 +40690-40692 +40690-40691 +40693-40695 +40694-40695 +40696-40697 +40696-40697 +40698-40703 +40698-40703 +40698-40699 +40700-40702 +40701-40702 +40704-40723 +40704-40723 +40705-40723 +40706 +40709-40723 +40709 +40712-40715 +40713-40715 +40714-40715 +40716-40723 +40717-40723 +40717-40720 +40719-40720 +40721-40723 +40722-40723 +40724-40735 +40724-40735 +40724-40730 +40725-40730 +40726-40730 +40728-40730 +40729-40730 +40730 +40731-40735 +40732-40735 +40732-40733 +40733 +40736-40745 +40736-40745 +40737-40745 +40737-40738 +40739-40742 +40740-40742 +40741-40742 +40743-40745 +40744-40745 +40746-40764 +40746-40764 +40747-40764 +40748-40754 +40748-40754 +40749-40754 +40749-40750 +40752-40754 +40753-40754 +40755-40764 +40756-40764 +40756-40757 +40757 +40758-40764 +40759-40764 +40761-40764 +40762-40764 +40763-40764 +40765-40778 +40765-40778 +40766-40778 +40766-40770 +40766-40767 +40768-40769 +40771-40778 +40772-40778 +40774-40778 +40774 +40776-40778 +40777-40778 +40779-40790 +40779-40790 +40780-40790 +40780-40783 +40782-40783 +40784-40790 +40785-40790 +40785-40786 +40787-40790 +40788-40790 +40789-40790 +40791-40823 +40791-40823 +40792-40823 +40792 +40793-40794 +40795-40801 +40796-40801 +40797-40801 +40797-40798 +40800-40801 +40803-40804 +40805-40823 +40806-40823 +40806-40812 +40806-40807 +40809-40812 +40809-40810 +40812 +40813-40823 +40814-40823 +40814-40817 +40814-40815 +40816 +40818-40823 +40819-40823 +40820-40823 +40821-40823 +40822-40823 +40824-40849 +40824-40849 +40825-40849 +40825-40828 +40827-40828 +40829-40849 +40830-40849 +40831-40849 +40831 +40833-40849 +40833-40846 +40833-40834 +40835-40836 +40838-40843 +40838-40840 +40839-40840 +40841-40843 +40842-40843 +40844-40846 +40845-40846 +40847-40849 +40848-40849 +40848 +40850-40874 +40850-40874 +40851-40874 +40851 +40852-40872 +40852-40863 +40852-40855 +40853-40855 +40853-40854 +40856-40863 +40858-40859 +40860-40863 +40860-40862 +40861-40862 +40865-40868 +40866-40868 +40867-40868 +40869-40872 +40870-40872 +40871-40872 +40875-40896 +40875-40896 +40876-40896 +40876-40883 +40876-40878 +40880-40883 +40881-40883 +40882-40883 +40884-40896 +40885-40896 +40885-40887 +40886-40887 +40889-40896 +40890-40896 +40891-40896 +40891-40892 +40893-40896 +40894-40896 +40895-40896 +40897-40909 +40897-40909 +40898-40909 +40899-40909 +40899-40905 +40902-40905 +40903-40905 +40904-40905 +40906-40909 +40907-40909 +40910-40936 +40910-40936 +40912-40936 +40912-40913 +40914-40936 +40914-40920 +40914-40915 +40918-40920 +40919-40920 +40921-40922 +40922 +40923-40926 +40924-40926 +40925-40926 +40927-40936 +40928-40936 +40928-40931 +40929-40931 +40930-40931 +40933-40936 +40934-40936 +40935-40936 +40937-40945 +40937-40945 +40938-40945 +40940-40945 +40942-40945 +40943-40945 +40944-40945 +40946-40960 +40946-40960 +40948-40960 +40949-40960 +40949-40950 +40953-40956 +40954-40956 +40955-40956 +40957-40960 +40958-40960 +40961-40972 +40961-40972 +40962-40972 +40963-40966 +40964-40966 +40965-40966 +40967-40972 +40967 +40968-40972 +40969-40972 +40971-40972 +40973-40981 +40973-40981 +40974-40981 +40977-40981 +40977 +40979-40981 +40980-40981 +40981 +40982-41001 +40982-41001 +40983-41001 +40985-40986 +40987-41001 +40987-40992 +40988-40992 +40989-40992 +40990-40992 +40991-40992 +40993-41001 +40994-41001 +40996-41001 +40996-40998 +40998 +40999-41001 +41000-41001 +41002-41032 +41002-41032 +41002-41023 +41002-41023 +41003-41023 +41004-41023 +41004-41011 +41004-41007 +41006-41007 +41008-41011 +41009-41011 +41010-41011 +41012-41023 +41013-41023 +41014-41019 +41014-41015 +41016-41019 +41017-41019 +41018-41019 +41020-41023 +41021-41023 +41021 +41024-41032 +41025-41032 +41025 +41028-41032 +41031-41032 +41033-41046 +41033-41046 +41035-41046 +41036-41046 +41036-41040 +41036-41038 +41037-41038 +41039-41040 +41040 +41041-41046 +41042-41046 +41042-41045 +41043-41045 +41044-41045 +41047-41060 +41047-41060 +41048-41060 +41049-41060 +41051-41060 +41051-41054 +41053-41054 +41055-41060 +41056-41057 +41058-41060 +41058-41060 +41059-41060 +41061-41089 +41061-41089 +41063-41069 +41063-41064 +41065-41069 +41066-41069 +41067-41069 +41068-41069 +41070-41089 +41071-41089 +41072-41089 +41072-41085 +41072-41080 +41073-41074 +41075-41076 +41077-41080 +41078-41080 +41079-41080 +41081-41085 +41082-41085 +41083-41085 +41084-41085 +41086-41089 +41087-41089 +41090-41107 +41090-41107 +41091-41107 +41091-41100 +41092-41100 +41092-41095 +41093-41095 +41094-41095 +41096-41100 +41097-41100 +41098-41100 +41099-41100 +41101-41107 +41102-41107 +41103-41107 +41104-41107 +41105-41107 +41106-41107 +41108-41120 +41108-41120 +41109-41120 +41110-41114 +41111-41114 +41112-41114 +41115-41120 +41116-41120 +41117-41120 +41118-41120 +41121-41138 +41121-41138 +41121-41124 +41122-41124 +41123-41124 +41126-41127 +41128-41138 +41130-41138 +41130-41133 +41130-41132 +41131-41132 +41134-41138 +41135-41138 +41137-41138 +41139-41159 +41139-41159 +41140-41159 +41142-41159 +41142 +41144-41146 +41144-41145 +41147-41159 +41148-41155 +41148-41152 +41148-41149 +41150-41152 +41151-41152 +41153-41155 +41154-41155 +41156-41159 +41157-41159 +41157-41158 +41160-41176 +41160-41176 +41161-41176 +41162-41169 +41163-41168 +41164-41165 +41166-41168 +41167-41168 +41168 +41170-41176 +41171-41176 +41173-41176 +41175-41176 +41177-41206 +41177-41206 +41177-41188 +41177 +41178 +41179-41188 +41179-41188 +41180-41188 +41180-41182 +41181-41182 +41183-41188 +41184-41188 +41185-41188 +41186-41188 +41187-41188 +41189-41206 +41189-41203 +41191-41203 +41192-41194 +41193-41194 +41195-41203 +41195-41196 +41198-41200 +41199-41200 +41201-41203 +41202-41203 +41204-41206 +41205-41206 +41207-41212 +41207-41212 +41210-41212 +41211-41212 +41213-41229 +41213-41229 +41214-41229 +41216-41229 +41216-41219 +41216-41217 +41220-41229 +41221-41229 +41221 +41222-41229 +41223-41229 +41224-41229 +41224 +41225-41229 +41226-41229 +41227-41229 +41228-41229 +41230-41250 +41230-41250 +41231-41250 +41231-41245 +41232-41245 +41233-41245 +41234-41245 +41236-41242 +41237-41242 +41238-41242 +41239-41242 +41240-41242 +41241-41242 +41244-41245 +41246-41250 +41247-41250 +41248-41249 +41251-41258 +41251-41258 +41252-41258 +41253-41255 +41253-41254 +41257-41258 +41259-41275 +41259-41275 +41260-41275 +41260 +41261-41262 +41264-41268 +41265-41268 +41266-41268 +41267-41268 +41269-41275 +41270-41275 +41270-41273 +41271-41273 +41271-41272 +41274-41275 +41275 +41276-41278 +41276-41278 +41277-41278 +41279-41284 +41279-41284 +41280-41284 +41280-41282 +41280 +41283-41284 +41284 +41285-41305 +41285-41305 +41286-41305 +41286-41287 +41289-41305 +41289-41296 +41289-41293 +41289-41290 +41291-41293 +41292-41293 +41294-41295 +41297-41305 +41298-41305 +41299-41305 +41302-41305 +41303-41305 +41304-41305 +41306-41311 +41306-41311 +41307-41311 +41309-41311 +41310-41311 +41312-41365 +41312-41365 +41313-41365 +41314-41316 +41315-41316 +41316 +41318-41322 +41319-41322 +41320-41321 +41323-41365 +41324-41325 +41326-41365 +41326-41336 +41326-41331 +41327-41331 +41328-41329 +41330-41331 +41332-41336 +41334-41336 +41335-41336 +41337-41365 +41337-41356 +41337-41344 +41339-41340 +41341-41342 +41343-41344 +41345-41356 +41346-41356 +41346 +41347-41351 +41348-41351 +41348-41350 +41349-41350 +41354-41356 +41357-41365 +41358-41365 +41360-41361 +41362-41365 +41362-41364 +41363-41364 +41366-41394 +41366-41394 +41367-41394 +41367-41374 +41367-41368 +41368 +41369-41374 +41369 +41371-41374 +41372-41374 +41373-41374 +41375-41394 +41376-41394 +41376-41385 +41376-41380 +41377-41380 +41378-41380 +41379-41380 +41381-41385 +41383-41385 +41383 +41386-41394 +41390-41394 +41391-41394 +41392-41394 +41393-41394 +41395-41405 +41395-41405 +41396-41405 +41396-41400 +41396-41399 +41397-41399 +41398-41399 +41401-41405 +41402-41405 +41402-41404 +41403-41404 +41406-41442 +41406-41442 +41407-41442 +41408-41411 +41409-41411 +41410-41411 +41412-41442 +41412-41432 +41412-41416 +41413-41416 +41414-41416 +41415-41416 +41417-41432 +41419-41432 +41419-41421 +41420-41421 +41422-41425 +41423-41425 +41424-41425 +41426-41429 +41427-41429 +41428-41429 +41430-41432 +41431-41432 +41433-41442 +41433-41438 +41435-41436 +41439-41442 +41440-41442 +41443-41451 +41443-41451 +41444-41451 +41444-41446 +41445-41446 +41447-41451 +41448-41451 +41452-41467 +41452-41467 +41453-41467 +41453-41459 +41455-41459 +41456-41459 +41458-41459 +41460-41467 +41461-41467 +41463-41467 +41464-41467 +41465-41467 +41466-41467 +41468-41484 +41468-41484 +41469-41484 +41469-41471 +41470-41471 +41471 +41472-41473 +41476-41484 +41477-41484 +41480-41484 +41481-41484 +41482-41484 +41483-41484 +41485-41513 +41485-41513 +41486-41513 +41489-41513 +41489-41496 +41489-41493 +41489-41490 +41492-41493 +41494-41496 +41495-41496 +41497-41513 +41498-41513 +41499-41501 +41500-41501 +41502-41505 +41503-41505 +41504-41505 +41506-41513 +41507-41508 +41508 +41509-41513 +41509 +41510-41513 +41511-41513 +41514-41519 +41514-41519 +41515-41519 +41516-41517 +41519 +41520-41536 +41520-41536 +41520-41521 +41524-41536 +41524-41531 +41524-41525 +41526-41531 +41527-41531 +41529-41531 +41529 +41532-41536 +41534-41536 +41535-41536 +41537-41552 +41537-41552 +41538-41552 +41540-41552 +41540-41547 +41540-41543 +41540-41542 +41540-41541 +41544-41547 +41545-41547 +41546-41547 +41548-41552 +41550-41552 +41551-41552 +41553-41563 +41553-41563 +41554-41563 +41556-41563 +41556-41557 +41558-41563 +41559-41563 +41559-41560 +41563 +41564-41572 +41564-41572 +41565-41572 +41565 +41566-41567 +41569-41571 +41570-41571 +41573-41600 +41573-41600 +41574 +41575-41576 +41578-41580 +41579-41580 +41581-41600 +41581-41589 +41583-41589 +41584-41589 +41585-41589 +41585-41587 +41586-41587 +41588-41589 +41590-41600 +41591-41600 +41591-41598 +41592-41598 +41593-41594 +41595-41596 +41597-41598 +41601-41612 +41601-41612 +41602-41612 +41603-41604 +41605-41612 +41605 +41606-41608 +41607-41608 +41609-41612 +41610-41612 +41613-41633 +41613-41633 +41614-41633 +41615-41616 +41617-41619 +41618-41619 +41620-41633 +41620-41625 +41621-41625 +41622-41625 +41623-41625 +41624-41625 +41626-41633 +41627-41633 +41628 +41629-41633 +41630-41633 +41631-41633 +41632-41633 +41634-41647 +41634-41647 +41635-41647 +41637-41647 +41638-41647 +41638-41643 +41639-41643 +41639-41641 +41639-41640 +41642-41643 +41643 +41645-41647 +41646-41647 +41648-41694 +41648-41694 +41649-41694 +41649-41652 +41651-41652 +41653-41694 +41654-41694 +41654 +41656-41657 +41658-41694 +41658-41689 +41659-41689 +41659-41662 +41661-41662 +41663-41689 +41664-41689 +41666-41689 +41666-41683 +41666-41668 +41667-41668 +41669-41671 +41670-41671 +41672-41674 +41673-41674 +41675-41677 +41676-41677 +41678-41680 +41679-41680 +41681-41683 +41682-41683 +41684-41689 +41685-41689 +41686-41689 +41687-41689 +41688-41689 +41690-41694 +41692-41694 +41693-41694 +41695-41709 +41695-41709 +41695-41704 +41695-41700 +41698-41700 +41699-41700 +41701-41704 +41702-41704 +41703-41704 +41707-41709 +41708-41709 +41710-41753 +41710-41753 +41711-41753 +41711-41726 +41712-41726 +41712-41714 +41713-41714 +41715-41717 +41716-41717 +41719 +41721-41722 +41723-41726 +41724-41726 +41725-41726 +41727-41753 +41728-41753 +41728-41736 +41728-41732 +41733-41736 +41734-41736 +41736 +41737-41753 +41737-41739 +41738-41739 +41739 +41741-41753 +41743-41753 +41744-41753 +41745-41753 +41745-41749 +41745-41747 +41746-41747 +41749 +41750-41753 +41751-41753 +41753 +41754-41780 +41754-41780 +41755-41780 +41756-41780 +41756-41757 +41758-41763 +41759-41763 +41759-41760 +41762-41763 +41764 +41767-41780 +41768-41780 +41770-41780 +41770-41772 +41771-41772 +41774-41780 +41775-41780 +41775-41777 +41776-41777 +41779-41780 +41781-41793 +41781-41793 +41782-41793 +41782-41783 +41783 +41784-41793 +41784-41787 +41788-41793 +41788-41789 +41791-41793 +41792-41793 +41794-41810 +41794-41810 +41795-41810 +41796-41805 +41796-41798 +41797-41798 +41799-41805 +41802-41805 +41803-41805 +41804-41805 +41808-41810 +41809-41810 +41811-41814 +41811-41814 +41812-41814 +41813-41814 +41815-41823 +41815-41823 +41816-41823 +41816-41820 +41817-41820 +41817-41819 +41818-41819 +41821-41822 +41824-41831 +41824-41831 +41824-41829 +41824-41826 +41825-41826 +41827-41829 +41828-41829 +41832-41834 +41832-41834 +41835-41839 +41835-41839 +41835-41838 +41836-41838 +41838 +41840-41851 +41840-41851 +41841-41851 +41841-41842 +41844-41849 +41845-41849 +41845-41846 +41847-41849 +41848-41849 +41850-41851 +41852-41867 +41852-41867 +41853-41867 +41854-41859 +41854-41856 +41855-41856 +41857-41859 +41858-41859 +41860-41867 +41861-41867 +41862-41867 +41862-41864 +41865-41867 +41866-41867 +41868-41903 +41868-41903 +41869-41903 +41870-41871 +41872-41874 +41872-41873 +41875-41903 +41876-41903 +41876-41887 +41876-41887 +41876-41879 +41876-41877 +41878-41879 +41880-41887 +41880-41882 +41881-41882 +41883-41887 +41884-41887 +41885-41887 +41885-41886 +41889-41903 +41889-41895 +41890-41892 +41891-41892 +41893-41895 +41894-41895 +41896-41903 +41897-41903 +41898-41900 +41899-41900 +41900 +41901-41903 +41902-41903 +41904-41933 +41904-41933 +41905-41933 +41905-41911 +41905 +41907-41910 +41908-41910 +41909-41910 +41911 +41912-41933 +41913-41933 +41913-41916 +41914-41916 +41915-41916 +41918-41922 +41918-41919 +41920-41922 +41921-41922 +41923-41933 +41925-41933 +41925-41926 +41927-41933 +41928-41933 +41929-41933 +41929-41931 +41930-41931 +41932-41933 +41933 +41934-41956 +41934-41956 +41936-41956 +41937-41956 +41937-41946 +41939-41941 +41940-41941 +41943-41946 +41944-41946 +41945-41946 +41946 +41947-41956 +41948-41956 +41948-41956 +41949-41956 +41949-41950 +41951-41956 +41952-41956 +41954-41955 +41957-41979 +41957-41979 +41958-41979 +41958-41962 +41958-41962 +41958-41959 +41960-41962 +41960-41961 +41963-41966 +41964-41966 +41965-41966 +41967-41979 +41968-41979 +41968-41969 +41970-41973 +41971-41973 +41972-41973 +41974-41979 +41975-41979 +41977-41979 +41978-41979 +41980-41995 +41980-41995 +41981-41995 +41981 +41983-41986 +41984-41986 +41985-41986 +41987-41995 +41988-41995 +41988-41989 +41990-41995 +41991-41995 +41992-41995 +41993-41995 +41994-41995 +41996-42009 +41996-42009 +41996 +41997-42009 +41999-42009 +42001-42005 +42002-42005 +42003-42005 +42004-42005 +42006-42009 +42007-42009 +42008-42009 +42009 +42010-42016 +42010-42016 +42011-42016 +42012-42016 +42012-42013 +42015-42016 +42017-42031 +42017-42031 +42018-42031 +42019-42021 +42020-42021 +42022-42023 +42024-42031 +42024 +42027-42031 +42028-42031 +42028 +42029-42031 +42030-42031 +42032-42037 +42032-42037 +42033-42037 +42036-42037 +42038-42059 +42038-42059 +42039-42059 +42039-42051 +42039-42042 +42040-42042 +42040-42041 +42043-42044 +42045-42047 +42046-42047 +42049-42051 +42050-42051 +42052-42059 +42053-42059 +42055-42057 +42056-42057 +42058-42059 +42060-42074 +42060-42074 +42061-42074 +42061-42070 +42061-42063 +42064-42070 +42065-42066 +42067-42070 +42068-42070 +42069-42070 +42071-42074 +42072-42074 +42074 +42075-42092 +42075-42092 +42076-42092 +42076-42083 +42076 +42078-42083 +42079-42083 +42080-42083 +42081-42083 +42081-42082 +42084-42092 +42085-42092 +42087-42090 +42088-42090 +42089-42090 +42091-42092 +42093-42109 +42093-42109 +42094-42109 +42094-42105 +42095-42105 +42096-42098 +42097-42098 +42099-42105 +42100-42105 +42101-42105 +42102-42105 +42104-42105 +42106-42109 +42107-42109 +42110-42126 +42110-42126 +42111-42126 +42111-42113 +42111-42112 +42115-42126 +42115-42121 +42115-42119 +42116-42119 +42117-42119 +42118-42119 +42122-42126 +42123-42126 +42127-42156 +42127-42156 +42127-42132 +42127 +42129-42132 +42130-42132 +42131-42132 +42133-42156 +42134-42156 +42136-42156 +42136 +42137-42149 +42137-42143 +42138-42143 +42138-42140 +42139-42140 +42141-42143 +42142-42143 +42144-42149 +42147-42149 +42148-42149 +42150-42156 +42150-42151 +42152-42156 +42153-42156 +42153-42156 +42154-42156 +42155-42156 +42157-42163 +42157-42163 +42158-42163 +42158 +42160-42163 +42161-42163 +42162-42163 +42164-42185 +42164-42185 +42165-42185 +42165-42173 +42165-42168 +42169-42173 +42171-42173 +42172-42173 +42174-42175 +42175 +42176-42182 +42177-42182 +42177 +42179-42182 +42180-42182 +42181-42182 +42183-42185 +42184-42185 +42186-42204 +42186-42204 +42187-42204 +42188-42189 +42191-42204 +42191 +42192-42198 +42193-42198 +42193-42195 +42194-42195 +42196-42198 +42197-42198 +42199-42204 +42202-42204 +42203-42204 +42205-42255 +42205-42255 +42206-42255 +42207-42208 +42209-42212 +42210-42212 +42211-42212 +42213-42255 +42213-42242 +42213-42220 +42213-42217 +42215-42217 +42216-42217 +42218-42220 +42219-42220 +42221-42232 +42222-42232 +42222-42227 +42224-42227 +42225-42227 +42226-42227 +42228-42232 +42229-42232 +42230-42232 +42231-42232 +42233-42242 +42234-42242 +42234-42239 +42234-42238 +42235-42238 +42236-42238 +42237-42238 +42239 +42240-42242 +42241-42242 +42241 +42243-42255 +42244-42255 +42244-42251 +42244-42249 +42244-42247 +42245-42247 +42246-42247 +42250-42251 +42251 +42252-42255 +42252-42253 +42252-42253 +42254-42255 +42255 +42256-42258 +42256-42258 +42257-42258 +42258 +42259-42267 +42259-42267 +42260-42267 +42261-42265 +42262-42265 +42262-42263 +42264-42265 +42266-42267 +42268-42287 +42268-42287 +42269-42287 +42269-42277 +42269-42273 +42270-42273 +42270 +42272-42273 +42274-42277 +42275-42277 +42276-42277 +42278-42287 +42279-42287 +42279-42282 +42280-42282 +42281-42282 +42284-42287 +42285-42287 +42288-42309 +42288-42309 +42289-42309 +42292-42309 +42293-42309 +42293-42296 +42293-42295 +42294-42295 +42297-42309 +42298-42309 +42299-42301 +42300-42301 +42302-42305 +42303-42305 +42304-42305 +42306-42309 +42307-42309 +42307 +42310-42315 +42310-42315 +42311-42315 +42311 +42312-42315 +42313-42315 +42315 +42316-42322 +42316-42322 +42317-42322 +42317-42319 +42318-42319 +42320 +42323-42349 +42323-42349 +42324-42349 +42325 +42327-42328 +42329-42349 +42330-42338 +42330-42333 +42330-42331 +42334-42338 +42335-42338 +42336-42337 +42339-42349 +42340-42349 +42340-42343 +42344-42349 +42345-42349 +42345-42348 +42346-42348 +42347-42348 +42350-42368 +42350-42368 +42351-42368 +42351-42363 +42352-42363 +42352-42362 +42352-42355 +42352-42354 +42353-42354 +42356-42362 +42357-42362 +42358-42360 +42359-42360 +42361-42362 +42366-42368 +42367-42368 +42369-42384 +42369-42384 +42370-42384 +42373-42384 +42373 +42374-42378 +42376-42377 +42379-42384 +42380-42384 +42380-42382 +42381-42382 +42385-42402 +42385-42402 +42386-42402 +42386-42388 +42386 +42387-42388 +42388 +42390-42402 +42391-42402 +42391-42398 +42391-42396 +42391-42394 +42391-42393 +42392-42393 +42397-42398 +42398 +42399-42402 +42400-42402 +42400 +42401-42402 +42402 +42403-42424 +42403-42424 +42404-42424 +42405-42408 +42406-42408 +42407-42408 +42409-42424 +42409-42412 +42409-42410 +42413-42415 +42416-42424 +42417-42424 +42420-42424 +42421-42424 +42422-42424 +42422-42423 +42423 +42425-42445 +42425-42445 +42426-42445 +42426-42427 +42430-42445 +42433-42434 +42435-42445 +42435-42440 +42436-42440 +42437-42440 +42438-42440 +42439-42440 +42441-42445 +42442-42445 +42444-42445 +42446-42462 +42446-42462 +42447-42462 +42448-42449 +42450-42451 +42452-42462 +42452-42453 +42454-42462 +42455-42462 +42455-42457 +42456-42457 +42459-42460 +42461-42462 +42463-42467 +42463-42467 +42463-42465 +42463 +42466-42467 +42466 +42468-42482 +42468-42482 +42469-42482 +42471-42482 +42472-42482 +42472-42476 +42473-42476 +42474-42476 +42475-42476 +42479-42482 +42480-42482 +42481-42482 +42483-42499 +42483-42499 +42484-42499 +42484-42491 +42485-42491 +42485-42486 +42487-42491 +42488-42491 +42489-42491 +42490-42491 +42493-42494 +42495-42499 +42497-42499 +42498-42499 +42500-42505 +42500-42505 +42501-42505 +42503-42505 +42503-42505 +42504-42505 +42506-42518 +42506-42518 +42507-42518 +42510-42518 +42510-42513 +42511-42513 +42512-42513 +42514-42518 +42515-42518 +42515 +42519-42525 +42519-42525 +42522-42525 +42523-42525 +42526-42531 +42526-42531 +42527-42531 +42529-42531 +42529-42531 +42530-42531 +42532-42540 +42532-42540 +42534-42540 +42534-42537 +42535-42537 +42536-42537 +42538-42540 +42539-42540 +42541-42569 +42541-42569 +42542-42569 +42542-42551 +42543-42544 +42545-42548 +42546-42548 +42547-42548 +42549-42551 +42550-42551 +42552-42569 +42553-42569 +42553-42557 +42554-42557 +42555-42557 +42555-42556 +42559-42563 +42560-42563 +42561-42563 +42562-42563 +42564-42568 +42565-42568 +42565-42566 +42567-42568 +42570-42590 +42570-42590 +42571-42590 +42574-42590 +42574-42581 +42577-42581 +42578-42581 +42579-42581 +42580-42581 +42582-42590 +42583-42590 +42583-42584 +42584 +42587-42590 +42588-42590 +42589-42590 +42591-42609 +42591-42609 +42591-42599 +42591-42594 +42592-42594 +42593-42594 +42595-42597 +42596-42597 +42600-42609 +42601-42609 +42601-42604 +42602-42604 +42602-42603 +42605-42607 +42606-42607 +42610-42623 +42610-42623 +42611-42623 +42611-42618 +42612-42618 +42612-42615 +42613-42615 +42614-42615 +42619-42623 +42619-42620 +42624-42636 +42624-42636 +42625-42636 +42625-42631 +42626-42631 +42626-42628 +42627-42628 +42632-42636 +42632-42633 +42637-42658 +42637-42658 +42637-42642 +42637-42638 +42640-42642 +42640-42641 +42643-42658 +42644-42658 +42644-42651 +42645-42651 +42645-42647 +42645-42646 +42648-42651 +42649-42651 +42649-42650 +42652-42658 +42653-42658 +42653-42654 +42655-42658 +42656-42658 +42656-42657 +42659-42664 +42659-42664 +42661-42664 +42661-42662 +42663-42664 +42664 +42665-42675 +42665-42675 +42666-42675 +42666-42672 +42667-42668 +42669-42670 +42671-42672 +42673-42675 +42674-42675 +42676-42702 +42676-42702 +42677-42702 +42679-42702 +42679-42693 +42679-42686 +42681-42686 +42682-42686 +42684-42686 +42685-42686 +42687-42693 +42688-42693 +42688-42689 +42691-42693 +42692-42693 +42694-42702 +42695-42702 +42695-42698 +42696-42698 +42696-42697 +42700-42702 +42701-42702 +42703-42709 +42703-42709 +42703-42707 +42703-42704 +42705-42707 +42706-42707 +42708-42709 +42710-42721 +42710-42721 +42710-42716 +42710-42711 +42712-42715 +42713-42715 +42714-42715 +42717-42721 +42718-42721 +42719-42720 +42722-42736 +42722-42736 +42723-42736 +42723-42730 +42725-42730 +42725-42729 +42725-42726 +42727-42729 +42728-42729 +42731-42736 +42732-42736 +42732-42735 +42732-42733 +42734-42735 +42737-42753 +42737-42753 +42737-42746 +42737-42745 +42738-42745 +42739-42745 +42739-42742 +42740-42742 +42741-42742 +42743-42745 +42744-42745 +42747-42753 +42748-42753 +42748-42752 +42749-42752 +42749-42751 +42750-42751 +42754-42767 +42754-42767 +42755-42767 +42755-42758 +42755-42756 +42759-42767 +42760-42767 +42761-42763 +42762-42763 +42764-42767 +42765-42766 +42768-42789 +42768-42789 +42769-42789 +42769-42772 +42769-42770 +42771-42772 +42774-42777 +42775-42777 +42776-42777 +42778-42789 +42778 +42779-42789 +42780-42789 +42781-42789 +42782-42789 +42783-42789 +42784-42789 +42785-42789 +42786-42789 +42787-42789 +42788-42789 +42790-42798 +42790-42798 +42791-42798 +42791-42793 +42792-42793 +42794 +42796-42798 +42797-42798 +42799-42813 +42799-42813 +42800-42813 +42801-42813 +42801-42803 +42802-42803 +42804-42813 +42805-42813 +42807-42809 +42808-42809 +42810-42813 +42811-42813 +42812-42813 +42814-42820 +42814-42820 +42815-42820 +42815-42818 +42816-42818 +42817-42818 +42819-42820 +42820 +42821-42841 +42821-42841 +42822-42841 +42822-42835 +42822-42824 +42823-42824 +42825-42828 +42826-42828 +42827-42828 +42829-42831 +42830-42831 +42834-42835 +42836-42841 +42837-42841 +42837-42841 +42838-42841 +42839-42841 +42840-42841 +42842-42871 +42842-42871 +42843-42871 +42844 +42846-42871 +42846-42847 +42846-42847 +42848-42849 +42850-42865 +42851-42865 +42853-42865 +42854-42865 +42854-42860 +42855-42859 +42856-42859 +42857-42859 +42858-42859 +42861-42865 +42862-42865 +42863-42865 +42864-42865 +42866-42871 +42867-42871 +42868-42871 +42869-42871 +42869-42870 +42872-42890 +42872-42890 +42873-42890 +42875-42890 +42875 +42877-42890 +42878-42890 +42878-42885 +42879-42881 +42880-42881 +42882-42885 +42883-42885 +42884-42885 +42886-42890 +42887-42890 +42889-42890 +42891-42897 +42891-42897 +42892-42897 +42892-42894 +42895-42897 +42896-42897 +42898-42922 +42898-42922 +42899-42922 +42899-42901 +42900-42901 +42902-42905 +42903-42905 +42904-42905 +42906-42907 +42909-42922 +42910-42922 +42910-42917 +42910-42911 +42911 +42912-42915 +42914-42915 +42918-42922 +42919-42922 +42920-42921 +42923-42955 +42923-42955 +42924-42955 +42925-42955 +42926-42955 +42926-42941 +42926-42937 +42926-42928 +42928 +42929-42937 +42930-42937 +42932-42937 +42933-42937 +42934-42937 +42935-42937 +42936-42937 +42938-42941 +42939-42941 +42940-42941 +42942-42955 +42943-42955 +42945-42955 +42946-42955 +42947-42948 +42950-42955 +42951-42955 +42951-42953 +42951-42952 +42954-42955 +42956-42965 +42956-42965 +42957-42965 +42959-42965 +42959-42963 +42960-42963 +42961-42963 +42962-42963 +42964-42965 +42966-42980 +42966-42980 +42967-42980 +42969-42980 +42969 +42970-42971 +42970-42971 +42973-42980 +42973-42979 +42974-42979 +42975-42976 +42978-42979 +42981-42997 +42981-42997 +42982-42997 +42984-42997 +42984-42990 +42985-42990 +42985-42988 +42986-42988 +42987-42988 +42991-42997 +42992-42996 +42993-42996 +42994-42995 +42998-43015 +42998-43015 +42999-43015 +43000-43003 +43001-43003 +43002-43003 +43004-43015 +43004-43010 +43006-43010 +43007-43010 +43007-43008 +43011-43015 +43012-43015 +43013-43015 +43013-43014 +43016-43037 +43016-43037 +43016-43030 +43018-43030 +43019-43030 +43019-43025 +43019-43020 +43022-43025 +43023-43025 +43024-43025 +43026-43030 +43027-43030 +43028-43030 +43029-43030 +43031-43037 +43032-43037 +43033-43037 +43034-43037 +43034-43036 +43034-43035 +43038-43039 +43038-43039 +43040-43051 +43040-43051 +43040-43046 +43040-43044 +43041-43044 +43042-43044 +43043-43044 +43045-43046 +43047-43051 +43048-43051 +43048-43049 +43049 +43050-43051 +43052-43068 +43052-43068 +43053-43068 +43053-43066 +43054-43066 +43054-43059 +43055-43056 +43058-43059 +43060-43066 +43061-43066 +43063-43064 +43065-43066 +43066 +43067-43068 +43069-43077 +43069-43077 +43070-43077 +43071-43072 +43073-43074 +43075-43077 +43078-43102 +43078-43102 +43079-43102 +43080-43081 +43082-43102 +43082-43087 +43083-43087 +43084-43087 +43085-43087 +43086-43087 +43088-43102 +43088-43098 +43089-43098 +43090-43092 +43090-43091 +43093-43098 +43093 +43094-43098 +43095-43098 +43096-43098 +43097-43098 +43099-43102 +43100-43102 +43101-43102 +43103-43143 +43103-43143 +43104-43143 +43104-43121 +43104-43121 +43104-43111 +43104-43106 +43105-43106 +43107-43111 +43108-43111 +43109-43111 +43109 +43110-43111 +43111 +43112-43121 +43112-43118 +43113-43116 +43114-43116 +43115-43116 +43120 +43122-43143 +43123-43143 +43124-43143 +43126-43143 +43126-43128 +43126-43127 +43128 +43129-43136 +43130-43136 +43130 +43133-43136 +43134-43136 +43134 +43135-43136 +43136 +43137-43143 +43138-43143 +43138-43139 +43140-43142 +43141-43142 +43144-43152 +43144-43152 +43145-43152 +43147-43148 +43149-43152 +43150-43152 +43151-43152 +43152 +43153-43170 +43153-43170 +43154-43155 +43156-43161 +43157-43161 +43158-43161 +43159-43161 +43160-43161 +43163-43170 +43164-43170 +43164-43165 +43167-43170 +43167-43169 +43167-43168 +43171-43185 +43171-43185 +43172-43185 +43172-43177 +43173-43177 +43174-43177 +43175-43177 +43176-43177 +43178-43185 +43179-43185 +43181-43185 +43182-43185 +43183-43185 +43184-43185 +43186-43207 +43186-43207 +43187-43207 +43187-43198 +43187-43191 +43189-43191 +43190-43191 +43192-43198 +43193-43198 +43194-43198 +43194-43195 +43196-43198 +43199-43207 +43200-43207 +43203-43207 +43204-43207 +43204-43205 +43204 +43205 +43206-43207 +43208-43216 +43208-43216 +43209-43216 +43209 +43212-43216 +43212 +43215-43216 +43217-43223 +43217-43223 +43218-43223 +43218-43222 +43219-43222 +43220-43222 +43221-43222 +43223 +43224-43247 +43224-43247 +43225-43247 +43225-43237 +43225-43227 +43226-43227 +43228-43230 +43229-43230 +43230 +43232-43237 +43232-43234 +43233-43234 +43236-43237 +43238-43247 +43239-43247 +43240-43241 +43242-43245 +43243-43245 +43244-43245 +43246-43247 +43248-43251 +43248-43251 +43249-43251 +43252-43276 +43252-43276 +43253-43276 +43253 +43254-43255 +43257-43276 +43257-43264 +43257-43260 +43258-43260 +43258-43259 +43261-43264 +43262-43264 +43262-43263 +43265-43276 +43267-43271 +43268-43271 +43270-43271 +43272-43276 +43273-43276 +43274-43276 +43274-43275 +43277-43286 +43277-43286 +43278-43286 +43280-43286 +43280-43281 +43280 +43282-43286 +43282-43284 +43283-43284 +43287-43324 +43287-43324 +43288-43324 +43288-43299 +43288-43297 +43289-43291 +43290-43291 +43292-43297 +43294-43297 +43295-43297 +43296-43297 +43300-43324 +43301-43324 +43302-43324 +43302-43315 +43302-43309 +43304-43307 +43305-43307 +43306-43307 +43308-43309 +43310-43315 +43311-43315 +43312-43315 +43313 +43314-43315 +43315 +43316-43324 +43317-43324 +43318-43321 +43319-43321 +43320-43321 +43322-43323 +43325-43344 +43325-43344 +43326-43344 +43327-43329 +43328-43329 +43330-43344 +43330-43331 +43332-43344 +43332-43341 +43334-43341 +43334-43340 +43335-43340 +43336-43340 +43337-43340 +43338-43340 +43339-43340 +43342-43344 +43343-43344 +43345-43355 +43345-43355 +43346-43355 +43346-43351 +43348-43351 +43348-43349 +43348 +43350-43351 +43350 +43352-43355 +43352-43353 +43354-43355 +43355 +43356-43380 +43356-43380 +43357-43380 +43357-43370 +43358-43370 +43358-43359 +43360 +43361-43369 +43361-43365 +43362-43365 +43363-43365 +43364-43365 +43366-43369 +43367-43369 +43368-43369 +43373-43376 +43374-43376 +43375-43376 +43377-43380 +43378-43380 +43379-43380 +43381-43392 +43381-43392 +43382-43392 +43383-43392 +43383-43386 +43387-43392 +43388-43392 +43389-43392 +43390-43392 +43390-43391 +43393-43409 +43393-43409 +43394-43409 +43394-43399 +43395-43399 +43396-43399 +43397-43399 +43398-43399 +43402-43409 +43403-43409 +43404-43409 +43405-43409 +43406-43409 +43407-43409 +43408-43409 +43410-43428 +43410-43428 +43410-43421 +43410-43413 +43410 +43411 +43412 +43413 +43414-43421 +43415-43421 +43415-43416 +43419-43421 +43420-43421 +43422-43428 +43423-43428 +43423-43425 +43424-43425 +43426-43428 +43427-43428 +43429-43435 +43429-43435 +43430-43435 +43432-43435 +43433-43435 +43434-43435 +43436-43441 +43436-43441 +43436 +43437 +43438 +43439 +43440 +43441 +43442-43457 +43442-43457 +43443-43457 +43443-43448 +43443-43444 +43447-43448 +43449-43454 +43450-43452 +43451-43452 +43453-43454 +43455-43457 +43456-43457 +43458-43468 +43458-43468 +43458-43460 +43459-43460 +43462-43468 +43462-43463 +43464-43467 +43465-43467 +43466-43467 +43469-43498 +43469-43498 +43469-43488 +43469-43472 +43470-43472 +43471-43472 +43473-43484 +43473-43477 +43475-43477 +43476-43477 +43478-43484 +43479-43484 +43479-43481 +43480-43481 +43482-43484 +43483-43484 +43487-43488 +43489-43498 +43490-43498 +43490-43492 +43491-43492 +43496-43498 +43497-43498 +43499-43502 +43499-43502 +43500-43502 +43501-43502 +43503-43517 +43503-43517 +43503-43511 +43503-43509 +43504-43509 +43506-43509 +43506-43508 +43507-43508 +43512-43517 +43513-43517 +43513-43515 +43514-43515 +43518-43534 +43518-43534 +43520-43534 +43520-43527 +43520-43522 +43521-43522 +43525-43527 +43526-43527 +43528-43534 +43528-43530 +43528-43529 +43531-43534 +43532-43534 +43532-43533 +43535-43547 +43535-43547 +43535-43536 +43538-43540 +43539-43540 +43541-43547 +43541-43543 +43541-43542 +43544-43547 +43545-43547 +43545-43546 +43548-43553 +43548-43553 +43549-43553 +43549 +43552-43553 +43553 +43554-43565 +43554-43565 +43555-43565 +43558-43565 +43558-43560 +43559-43560 +43561-43565 +43562-43564 +43563-43564 +43566-43593 +43566-43593 +43567-43593 +43570-43578 +43571-43578 +43572-43578 +43573-43578 +43573-43575 +43576-43578 +43577-43578 +43579-43593 +43580-43593 +43580-43581 +43583-43585 +43584-43585 +43586-43593 +43586-43589 +43586-43587 +43590-43593 +43591-43593 +43594-43611 +43594-43611 +43595-43611 +43595-43600 +43597-43600 +43598-43600 +43598-43599 +43601-43611 +43602-43611 +43603-43604 +43605-43611 +43606-43611 +43608-43611 +43609-43611 +43610-43611 +43612-43649 +43612-43649 +43613-43649 +43613-43616 +43615-43616 +43617-43649 +43618-43649 +43618-43619 +43621-43622 +43623-43649 +43623-43631 +43624-43631 +43624-43628 +43624-43626 +43625-43626 +43629-43631 +43630-43631 +43632-43649 +43633-43642 +43633-43640 +43634-43640 +43635-43640 +43638-43640 +43638-43639 +43643-43649 +43644-43649 +43645-43646 +43647 +43650-43660 +43650-43660 +43651-43660 +43652-43653 +43654-43660 +43655-43660 +43656-43659 +43657-43659 +43658-43659 +43661-43681 +43661-43681 +43662-43681 +43662-43677 +43663-43677 +43664-43677 +43664-43665 +43667-43677 +43668-43677 +43669-43677 +43669-43671 +43670-43671 +43672-43677 +43673-43677 +43675-43677 +43676-43677 +43678-43681 +43679-43681 +43680-43681 +43682-43690 +43682-43690 +43684-43690 +43685-43690 +43686-43688 +43687-43688 +43689-43690 +43691-43703 +43691-43703 +43692-43703 +43692-43696 +43692-43695 +43693-43695 +43694-43695 +43697-43703 +43698-43703 +43699-43700 +43701-43703 +43702-43703 +43704-43722 +43704-43722 +43705-43722 +43706-43719 +43707-43719 +43708-43719 +43709-43719 +43710-43719 +43710-43715 +43711-43712 +43713-43715 +43714-43715 +43716-43719 +43717-43719 +43718-43719 +43720-43722 +43720-43721 +43723-43736 +43723-43736 +43723-43724 +43726-43728 +43727-43728 +43729 +43730-43736 +43730-43732 +43730-43731 +43733-43736 +43734-43736 +43734-43735 +43737-43764 +43737-43764 +43737-43738 +43739 +43741-43742 +43744-43764 +43744-43745 +43744-43745 +43748-43764 +43749-43764 +43751-43764 +43751-43758 +43752-43758 +43752-43755 +43753-43755 +43754-43755 +43756-43758 +43759-43764 +43760-43764 +43761-43764 +43761-43764 +43762-43764 +43763-43764 +43765-43772 +43765-43772 +43765-43768 +43767-43768 +43769-43772 +43770-43772 +43771-43772 +43773-43798 +43773-43798 +43774-43798 +43774-43786 +43774-43775 +43776-43777 +43780-43786 +43781-43782 +43784-43786 +43785-43786 +43787-43798 +43788-43798 +43789-43791 +43790-43791 +43792-43798 +43793-43798 +43793-43794 +43793-43794 +43796-43798 +43797-43798 +43799-43820 +43799-43820 +43801-43820 +43801-43809 +43803 +43804-43807 +43805-43807 +43806-43807 +43808-43809 +43810-43820 +43811-43820 +43811-43815 +43811-43814 +43812-43814 +43813-43814 +43816-43820 +43817-43820 +43817-43819 +43818-43819 +43821-43829 +43821-43829 +43822-43829 +43824-43826 +43825-43826 +43827-43829 +43828-43829 +43830-43835 +43830-43835 +43831-43835 +43831 +43832-43833 +43836-43859 +43836-43859 +43837-43859 +43837-43838 +43841-43859 +43842-43859 +43842-43851 +43842-43847 +43843-43847 +43843-43844 +43846-43847 +43848-43851 +43849-43851 +43852-43859 +43853-43859 +43853-43854 +43856-43859 +43857-43859 +43858-43859 +43860-43877 +43860-43877 +43861-43862 +43863-43877 +43863-43872 +43864-43872 +43864-43870 +43867-43870 +43868-43870 +43869-43870 +43872 +43873-43874 +43876-43877 +43878-43890 +43878-43890 +43879-43890 +43880-43881 +43883-43890 +43884-43890 +43884-43885 +43884-43885 +43886-43887 +43888-43889 +43891-43924 +43891-43924 +43892-43924 +43894-43895 +43896-43924 +43896-43906 +43900-43906 +43900-43901 +43902-43906 +43903-43906 +43904-43906 +43905-43906 +43907-43924 +43907-43908 +43910-43924 +43910-43911 +43912-43913 +43914-43915 +43916-43917 +43918-43924 +43919-43924 +43919-43921 +43920-43921 +43922-43924 +43923-43924 +43925-43932 +43925-43932 +43926-43932 +43928-43932 +43928-43929 +43931-43932 +43933-43959 +43933-43959 +43934-43959 +43934 +43935-43936 +43939-43959 +43943-43959 +43943-43955 +43943-43949 +43943-43946 +43943-43945 +43944-43945 +43947-43949 +43948-43949 +43950-43955 +43951-43955 +43953-43955 +43954-43955 +43956-43959 +43957-43959 +43957 +43958-43959 +43960-43969 +43960-43969 +43961-43969 +43961-43965 +43962-43963 +43966-43969 +43967-43969 +43970-44003 +43970-44003 +43971-44003 +43971-43972 +43973-43974 +43976-44003 +43976-43987 +43976-43977 +43978-43981 +43979-43981 +43979-43980 +43982-43986 +43983-43986 +43984-43986 +43985-43986 +43988-44003 +43989-44003 +43989-43995 +43991-43995 +43992-43994 +43993-43994 +43996-44003 +43997-44003 +43998-44002 +43999-44002 +44000-44002 +44001-44002 +44004-44011 +44004-44011 +44005-44011 +44006-44007 +44007 +44008-44011 +44009-44011 +44011 +44012-44023 +44012-44023 +44013-44023 +44015-44023 +44015-44018 +44015-44016 +44017-44018 +44020-44022 +44021-44022 +44024-44034 +44024-44034 +44025-44034 +44026-44027 +44028-44034 +44030-44032 +44031-44032 +44035-44077 +44035-44077 +44036-44077 +44039-44077 +44040-44041 +44042-44077 +44043-44077 +44045-44077 +44045-44060 +44047-44055 +44048-44049 +44050-44051 +44052-44053 +44054-44055 +44056-44060 +44057-44060 +44058-44060 +44059-44060 +44061-44077 +44061-44069 +44066-44069 +44067-44069 +44067-44068 +44070-44077 +44071-44077 +44071-44075 +44072-44075 +44072-44073 +44074-44075 +44075 +44076-44077 +44078-44120 +44078-44120 +44079-44120 +44079-44081 +44080-44081 +44083-44084 +44085-44120 +44085-44088 +44087-44088 +44089-44120 +44090-44120 +44091-44100 +44092-44100 +44093-44100 +44094-44096 +44095-44096 +44097-44100 +44098-44100 +44099-44100 +44101-44120 +44102-44120 +44102-44114 +44102-44110 +44102-44104 +44103-44104 +44105-44106 +44106 +44107-44108 +44108 +44109-44110 +44110 +44111-44114 +44112-44114 +44112 +44115-44120 +44116-44120 +44116-44119 +44117-44119 +44118-44119 +44121-44138 +44121-44138 +44122-44138 +44122-44125 +44123-44124 +44126-44133 +44127-44133 +44128-44130 +44128-44129 +44132-44133 +44134-44138 +44135-44138 +44137-44138 +44138 +44139-44153 +44139-44153 +44140-44153 +44140-44146 +44141-44146 +44142-44146 +44143-44146 +44145-44146 +44147-44153 +44147-44148 +44150-44152 +44151-44152 +44153 +44154-44161 +44154-44161 +44155-44161 +44155-44157 +44156-44157 +44159-44161 +44162-44169 +44162-44169 +44163-44169 +44165-44169 +44166-44169 +44166-44168 +44167-44168 +44170-44177 +44170-44177 +44171-44177 +44172-44177 +44173-44177 +44173-44175 +44173-44175 +44174-44175 +44178-44184 +44178-44184 +44179-44184 +44179-44180 +44180 +44183-44184 +44184 +44185-44193 +44185-44193 +44186-44193 +44187-44188 +44190-44193 +44190-44191 +44190-44191 +44194-44202 +44194-44202 +44195-44202 +44195 +44196-44197 +44199-44202 +44201-44202 +44203-44211 +44203-44211 +44204-44211 +44204-44205 +44206-44211 +44208-44211 +44208-44210 +44212-44217 +44212-44217 +44213-44217 +44215-44217 +44215 +44217 +44218-44228 +44218-44228 +44219-44228 +44219-44220 +44223-44228 +44223 +44224-44228 +44224-44226 +44225-44226 +44229-44237 +44229-44237 +44230-44237 +44230-44231 +44232-44237 +44233-44237 +44235-44237 +44236-44237 +44238-44246 +44238-44246 +44239-44246 +44239-44241 +44240-44241 +44242 +44245-44246 +44247-44251 +44247-44251 +44248-44251 +44248 +44250-44251 +44252-44264 +44252-44264 +44253-44264 +44254-44257 +44254-44257 +44255-44257 +44258-44261 +44259-44261 +44262-44264 +44263-44264 +44265-44282 +44265-44282 +44266-44282 +44266-44271 +44266-44269 +44267-44269 +44268-44269 +44270-44271 +44272-44282 +44273-44282 +44275-44277 +44276-44277 +44278-44282 +44279-44282 +44279-44280 +44283-44297 +44283-44297 +44284-44297 +44284-44287 +44285-44287 +44286-44287 +44289-44290 +44291-44293 +44292-44293 +44294-44297 +44295-44297 +44295-44296 +44298-44321 +44298-44321 +44299-44321 +44299-44303 +44300-44303 +44301-44303 +44302-44303 +44304-44321 +44304 +44305-44306 +44308-44309 +44310-44321 +44310 +44311-44312 +44311 +44313-44321 +44314-44321 +44314-44320 +44315-44318 +44316-44318 +44317-44318 +44322-44328 +44322-44328 +44323-44328 +44323-44324 +44323 +44325-44328 +44326-44328 +44328 +44329-44339 +44329-44339 +44330-44339 +44330 +44333-44339 +44334-44339 +44335-44339 +44335-44337 +44336-44337 +44339 +44340-44363 +44340-44363 +44341-44363 +44341 +44344-44346 +44345-44346 +44347-44363 +44347 +44349-44356 +44349-44353 +44350-44353 +44351-44353 +44352-44353 +44353 +44354-44355 +44357-44363 +44358-44363 +44358-44361 +44359-44361 +44362-44363 +44364-44382 +44364-44382 +44365-44382 +44366-44367 +44368-44369 +44370-44382 +44371-44382 +44373-44375 +44373-44374 +44377-44382 +44378-44382 +44378-44379 +44380-44381 +44383-44393 +44383-44393 +44384-44393 +44385-44388 +44386-44388 +44387-44388 +44389-44393 +44389-44391 +44390-44391 +44392-44393 +44393 +44394-44417 +44394-44417 +44395-44417 +44395-44397 +44398-44417 +44398 +44401-44417 +44402-44417 +44403-44417 +44403-44406 +44404-44405 +44407-44417 +44408-44417 +44410-44417 +44411-44417 +44413-44416 +44414-44416 +44415-44416 +44417 +44418-44431 +44418-44431 +44419-44431 +44420-44431 +44420-44422 +44420-44421 +44424-44426 +44425-44426 +44427-44431 +44427-44429 +44430-44431 +44431 +44432-44448 +44432-44448 +44433-44448 +44433-44440 +44433-44436 +44434-44436 +44435-44436 +44439-44440 +44441-44448 +44442-44448 +44443-44444 +44445-44448 +44446-44448 +44447-44448 +44449-44466 +44449-44466 +44450-44466 +44450-44454 +44450-44452 +44451-44452 +44455-44466 +44456-44466 +44458-44459 +44460-44466 +44461-44466 +44463-44466 +44465-44466 +44467-44491 +44467-44491 +44468-44491 +44468-44475 +44469-44475 +44470-44475 +44471-44475 +44473-44475 +44474-44475 +44476-44491 +44477-44491 +44478-44486 +44480-44486 +44480-44482 +44480-44481 +44483-44486 +44485-44486 +44487-44491 +44488-44491 +44490-44491 +44492-44503 +44492-44503 +44493-44503 +44494-44495 +44496 +44497-44503 +44497 +44498-44500 +44499-44500 +44501-44502 +44504-44520 +44504-44520 +44505-44520 +44507-44520 +44507 +44508-44520 +44508-44509 +44508-44509 +44510-44514 +44511-44514 +44511-44512 +44515-44520 +44516-44520 +44518-44520 +44519-44520 +44521-44532 +44521-44532 +44522-44532 +44523-44524 +44525-44532 +44526-44532 +44526 +44527-44529 +44528-44529 +44531-44532 +44533-44542 +44533-44542 +44534-44542 +44535-44536 +44537-44542 +44537-44538 +44539-44541 +44540-44541 +44543-44573 +44543-44573 +44544-44573 +44544-44545 +44547-44573 +44548-44573 +44548-44557 +44548 +44549 +44550-44557 +44550-44552 +44551-44552 +44553-44557 +44555-44557 +44556-44557 +44558-44573 +44559-44573 +44561-44573 +44562-44573 +44562-44563 +44565-44573 +44565-44568 +44566-44568 +44569-44573 +44570-44573 +44571-44573 +44574-44615 +44574-44615 +44576-44615 +44576-44583 +44576-44579 +44577-44579 +44578-44579 +44582-44583 +44582-44583 +44584-44615 +44584-44598 +44585-44598 +44586-44598 +44588-44598 +44588-44589 +44590-44598 +44590-44593 +44591-44593 +44594-44598 +44595-44598 +44596-44598 +44599-44615 +44600-44615 +44600-44608 +44600-44601 +44604-44606 +44605-44606 +44607-44608 +44609-44615 +44610-44615 +44611 +44612-44613 +44616-44631 +44616-44631 +44617-44631 +44617-44618 +44618 +44620-44631 +44620-44624 +44621-44622 +44623-44624 +44625-44631 +44626-44631 +44627-44631 +44628-44631 +44628-44630 +44629-44630 +44632-44638 +44632-44638 +44633-44638 +44635-44638 +44635 +44637-44638 +44639-44654 +44639-44654 +44641-44654 +44642-44654 +44642-44645 +44642-44644 +44643-44644 +44644 +44646-44654 +44647-44654 +44647-44650 +44648-44650 +44649-44650 +44651-44653 +44652-44653 +44655-44673 +44655-44673 +44656-44673 +44656-44668 +44656-44666 +44656-44659 +44656-44658 +44657-44658 +44660-44666 +44661-44666 +44663-44666 +44665-44666 +44669-44673 +44670-44673 +44672-44673 +44674-44681 +44674-44681 +44675-44681 +44675-44676 +44679-44681 +44680-44681 +44682-44721 +44682-44721 +44683-44721 +44683-44695 +44683 +44684-44695 +44685-44695 +44686-44689 +44687-44689 +44688-44689 +44690-44695 +44691-44695 +44691-44692 +44693-44695 +44694-44695 +44696-44721 +44697-44699 +44698-44699 +44700-44721 +44701-44721 +44702-44705 +44703-44705 +44704-44705 +44706-44721 +44706-44717 +44706-44708 +44706-44707 +44710-44717 +44711-44717 +44712-44717 +44712-44713 +44714-44715 +44718-44721 +44719-44721 +44719-44720 +44722-44737 +44722-44737 +44723-44737 +44723-44729 +44724-44729 +44727-44729 +44727-44728 +44730-44737 +44732-44737 +44733-44737 +44733-44734 +44735-44736 +44738-44745 +44738-44745 +44739-44745 +44739-44742 +44739 +44740-44741 +44741 +44743-44745 +44744-44745 +44746-44760 +44746-44760 +44747-44760 +44747-44750 +44749-44750 +44751-44760 +44752-44754 +44753-44754 +44755-44756 +44757-44760 +44759-44760 +44761-44769 +44761-44769 +44762-44769 +44764-44769 +44765-44769 +44765-44766 +44767-44768 +44770-44786 +44770-44786 +44771-44786 +44771-44775 +44773-44775 +44774-44775 +44776-44786 +44777-44786 +44777-44783 +44778-44780 +44779-44780 +44781-44783 +44782-44783 +44785-44786 +44787-44796 +44787-44796 +44788-44796 +44788-44789 +44790-44796 +44791-44793 +44792-44793 +44794-44796 +44795-44796 +44797-44840 +44797-44840 +44798-44840 +44798-44807 +44801-44807 +44802-44807 +44803-44807 +44804-44807 +44805-44807 +44806-44807 +44808-44840 +44809-44813 +44810-44813 +44811-44813 +44812-44813 +44814 +44815-44840 +44816-44817 +44818-44819 +44820-44824 +44821-44824 +44822-44824 +44822-44823 +44825-44840 +44826-44840 +44826 +44827-44833 +44827-44831 +44828-44831 +44829-44831 +44830-44831 +44832-44833 +44834-44840 +44834-44836 +44834-44835 +44837-44840 +44838-44840 +44839-44840 +44841-44855 +44841-44855 +44842-44855 +44842-44847 +44842-44844 +44843-44844 +44845-44847 +44846-44847 +44849-44850 +44851-44855 +44851 +44853-44855 +44854-44855 +44856-44866 +44856-44866 +44857-44866 +44857 +44859-44866 +44861-44866 +44861-44863 +44862-44863 +44864-44866 +44864-44865 +44867-44939 +44867-44939 +44868-44939 +44868-44869 +44869 +44870-44939 +44870-44872 +44871-44872 +44874-44875 +44876-44939 +44877-44939 +44878-44939 +44878-44888 +44879-44888 +44880-44883 +44881-44883 +44881-44882 +44884-44885 +44886-44888 +44887-44888 +44889-44939 +44890-44939 +44892-44894 +44893-44894 +44895-44939 +44896-44939 +44896-44930 +44896-44899 +44898-44899 +44900-44930 +44901-44930 +44901-44906 +44902-44904 +44903-44904 +44907-44909 +44908-44909 +44910-44913 +44911-44913 +44914-44922 +44915-44922 +44916-44922 +44917-44922 +44918-44922 +44919-44922 +44919-44920 +44921-44922 +44923-44930 +44924-44930 +44927-44928 +44929-44930 +44931-44939 +44932-44939 +44935-44939 +44936-44939 +44937-44939 +44938-44939 +44940-44964 +44940-44964 +44941-44964 +44941-44944 +44942-44944 +44943-44944 +44946-44948 +44947-44948 +44948 +44949-44964 +44951-44964 +44951-44958 +44952-44958 +44953-44958 +44954-44956 +44955-44956 +44957-44958 +44959-44964 +44960-44964 +44963-44964 +44965-44973 +44965-44973 +44966-44973 +44966-44967 +44968-44970 +44969-44970 +44971-44973 +44972-44973 +44974-44987 +44974-44987 +44975-44987 +44975-44982 +44975-44979 +44975-44976 +44977-44979 +44978-44979 +44981-44982 +44983-44987 +44984-44987 +44984-44987 +44985-44987 +44986-44987 +44988-45000 +44988-45000 +44989-45000 +44989-44993 +44991-44993 +44992-44993 +44994-45000 +44995-45000 +44995-44997 +44995-44996 +45000 +45001-45045 +45001-45045 +45002-45045 +45002-45006 +45003-45006 +45004-45006 +45005-45006 +45007-45045 +45007-45015 +45007-45013 +45009-45010 +45011-45013 +45012-45013 +45014-45015 +45015 +45016-45045 +45016-45024 +45017-45021 +45017-45018 +45019-45021 +45020-45021 +45022-45024 +45023-45024 +45025-45045 +45026-45045 +45027-45045 +45028-45029 +45030-45045 +45032-45045 +45032-45036 +45032-45034 +45033-45034 +45037-45045 +45038-45045 +45040-45045 +45041-45045 +45043-45045 +45043-45044 +45046-45066 +45046-45066 +45047-45066 +45047 +45049-45050 +45051-45066 +45051-45054 +45055-45066 +45056-45066 +45058-45066 +45058-45063 +45058-45060 +45059-45060 +45061-45062 +45064-45066 +45065-45066 +45065-45066 +45067-45099 +45067-45099 +45068-45099 +45070-45071 +45072-45099 +45073-45099 +45074-45099 +45074-45083 +45074-45077 +45075-45077 +45076-45077 +45076-45077 +45078-45083 +45079-45083 +45079-45080 +45084-45099 +45085-45099 +45085-45093 +45085-45088 +45086-45088 +45087-45088 +45087-45088 +45089-45093 +45089-45091 +45089-45090 +45094-45099 +45095-45099 +45095-45096 +45097-45099 +45100-45104 +45100-45104 +45101-45104 +45102-45104 +45104 +45105-45118 +45105-45118 +45106-45118 +45106-45107 +45110-45118 +45114-45118 +45114-45116 +45115-45116 +45119-45127 +45119-45127 +45120-45127 +45121-45127 +45121-45123 +45122-45123 +45125-45127 +45125-45126 +45128-45138 +45128-45138 +45128-45130 +45131-45134 +45132-45134 +45135-45138 +45136-45138 +45137-45138 +45139-45153 +45139-45153 +45140-45153 +45142-45144 +45143-45144 +45146-45153 +45147-45153 +45147-45151 +45148-45151 +45149-45151 +45150-45151 +45154-45160 +45154-45160 +45155-45160 +45155-45156 +45159 +45161-45165 +45161-45165 +45162-45165 +45163-45165 +45163-45164 +45166-45173 +45166-45173 +45167-45173 +45168-45171 +45169-45171 +45170-45171 +45174-45177 +45174-45177 +45175-45177 +45176-45177 +45178-45183 +45178-45183 +45179-45183 +45180-45182 +45180-45181 +45184-45200 +45184-45200 +45185-45200 +45186-45189 +45187-45189 +45188-45189 +45190-45200 +45190-45191 +45192-45200 +45192-45197 +45193-45197 +45193-45195 +45194-45195 +45196-45197 +45198-45200 +45201-45220 +45201-45220 +45202-45220 +45202-45203 +45204-45205 +45207-45208 +45209-45220 +45210-45220 +45210-45213 +45212-45213 +45214-45220 +45216-45220 +45217-45220 +45219-45220 +45221-45227 +45221-45227 +45222-45227 +45222-45226 +45224-45226 +45225-45226 +45228-45235 +45228-45235 +45229-45235 +45232-45235 +45233-45235 +45234-45235 +45236-45246 +45236-45246 +45236-45241 +45236 +45237-45241 +45238-45241 +45239-45241 +45239-45240 +45242-45246 +45243-45246 +45244-45245 +45247-45251 +45247-45251 +45248-45251 +45248 +45250-45251 +45252-45287 +45252-45287 +45253-45287 +45254-45255 +45257-45287 +45258-45287 +45260-45262 +45260-45261 +45261 +45263-45287 +45263-45272 +45263-45267 +45263-45267 +45264-45267 +45266-45267 +45267 +45270-45272 +45271-45272 +45273-45280 +45273-45279 +45274-45279 +45275-45279 +45276-45279 +45277-45279 +45278-45279 +45281-45287 +45282-45287 +45282-45285 +45283-45285 +45283-45284 +45288-45316 +45288-45316 +45289-45316 +45289-45307 +45289-45303 +45290-45294 +45290-45291 +45292-45294 +45293-45294 +45295-45299 +45296-45297 +45298-45299 +45300-45303 +45301-45303 +45302-45303 +45304-45307 +45305-45307 +45306-45307 +45308-45316 +45309-45316 +45310-45316 +45311-45316 +45311-45312 +45314-45316 +45314-45315 +45317-45338 +45317-45338 +45318-45338 +45318-45324 +45318 +45320-45324 +45321-45324 +45322-45324 +45325-45338 +45326-45338 +45327-45328 +45329-45338 +45330-45338 +45332-45338 +45332-45333 +45334-45338 +45335-45338 +45336-45338 +45337-45338 +45339-45368 +45339-45368 +45340-45368 +45342-45368 +45343-45368 +45343 +45344-45361 +45345-45361 +45346-45361 +45346-45349 +45347-45349 +45348-45349 +45350-45361 +45351-45361 +45352-45353 +45355-45361 +45355-45356 +45357-45360 +45358-45360 +45359-45360 +45362-45368 +45362-45366 +45363-45366 +45367-45368 +45368 +45369-45384 +45369-45384 +45370-45384 +45370-45373 +45371-45373 +45372-45373 +45375-45376 +45377-45384 +45380-45384 +45381-45384 +45382-45384 +45383-45384 +45385-45388 +45385-45388 +45386-45388 +45388 +45389-45404 +45389-45404 +45390-45404 +45392-45393 +45394-45404 +45395-45404 +45395-45398 +45396-45397 +45399-45404 +45400-45404 +45400-45402 +45401-45402 +45403-45404 +45405-45420 +45405-45420 +45406-45420 +45406-45413 +45408-45413 +45409-45410 +45411-45413 +45412-45413 +45414-45420 +45415-45420 +45415-45419 +45416-45419 +45417-45419 +45418-45419 +45421-45460 +45421-45460 +45422-45460 +45422 +45423-45430 +45423-45425 +45424-45425 +45426-45430 +45427-45430 +45428-45430 +45433-45460 +45434-45460 +45434 +45438-45460 +45438-45447 +45439-45447 +45439-45443 +45439-45440 +45442-45443 +45444-45447 +45445-45447 +45449-45460 +45449-45454 +45450-45452 +45451-45452 +45453-45454 +45455-45460 +45456-45460 +45458-45460 +45459-45460 +45461-45464 +45461-45464 +45462-45464 +45462-45463 +45465-45471 +45465-45471 +45466-45471 +45466-45467 +45468-45469 +45472-45489 +45472-45489 +45473-45489 +45473-45479 +45473-45477 +45473-45474 +45475-45477 +45476-45477 +45480-45489 +45481-45489 +45481-45487 +45482-45484 +45483-45484 +45488-45489 +45489 +45490-45494 +45490-45494 +45491-45493 +45492-45493 +45495-45510 +45495-45510 +45496-45510 +45496-45504 +45496-45497 +45498-45500 +45499-45500 +45501-45503 +45501-45502 +45505-45510 +45506-45510 +45506-45507 +45511-45540 +45511-45540 +45512-45540 +45514-45515 +45516-45540 +45516-45523 +45516-45520 +45517-45520 +45518-45520 +45518-45519 +45521-45523 +45522-45523 +45524-45540 +45525-45540 +45525-45536 +45526-45536 +45527-45536 +45527-45530 +45527-45529 +45527-45528 +45531-45536 +45532-45536 +45532-45536 +45532-45533 +45534-45536 +45535-45536 +45537-45540 +45537-45538 +45539-45540 +45541-45556 +45541-45556 +45542-45556 +45542-45545 +45542-45543 +45546-45556 +45547-45556 +45547-45548 +45549-45556 +45550-45556 +45550-45551 +45553-45556 +45553-45555 +45553-45554 +45557-45579 +45557-45579 +45558-45579 +45558-45561 +45559-45561 +45560-45561 +45562-45563 +45565-45567 +45566-45567 +45568-45579 +45569-45579 +45571-45579 +45572-45579 +45572-45573 +45574-45576 +45575-45576 +45577-45579 +45578-45579 +45580-45590 +45580-45590 +45581-45590 +45581-45586 +45581-45584 +45585-45586 +45586 +45587-45590 +45588-45590 +45591-45599 +45591-45599 +45592-45599 +45592 +45593-45595 +45594-45595 +45597-45599 +45597 +45600-45605 +45600-45605 +45601-45605 +45603-45605 +45606-45616 +45606-45616 +45607-45616 +45608-45609 +45610-45616 +45612-45616 +45612-45613 +45615-45616 +45617-45642 +45617-45642 +45618-45642 +45618-45619 +45621-45623 +45622-45623 +45624-45642 +45626-45628 +45627-45628 +45629-45642 +45629-45632 +45630-45632 +45631-45632 +45633-45642 +45634-45642 +45635-45642 +45636-45638 +45637-45638 +45639-45642 +45640-45642 +45641-45642 +45643-45652 +45643-45652 +45644-45652 +45644-45647 +45648-45652 +45649-45652 +45650-45651 +45653-45699 +45653-45699 +45654-45699 +45654-45657 +45655-45657 +45656-45657 +45658-45699 +45659-45660 +45661-45699 +45662-45695 +45663-45695 +45663-45685 +45663-45664 +45665-45685 +45666-45685 +45666-45669 +45667-45669 +45668-45669 +45670-45685 +45671-45685 +45672-45685 +45672-45675 +45673-45675 +45674-45675 +45676-45680 +45677-45680 +45678-45680 +45679-45680 +45681-45685 +45682-45685 +45683-45685 +45684-45685 +45686-45695 +45686-45691 +45688-45691 +45689-45691 +45690-45691 +45692-45695 +45693-45695 +45696-45699 +45698-45699 +45700-45711 +45700-45711 +45701-45711 +45701 +45703-45711 +45704-45711 +45704-45710 +45705-45707 +45706-45707 +45708-45710 +45709-45710 +45712-45734 +45712-45734 +45713-45734 +45713-45720 +45714-45720 +45714-45716 +45715-45716 +45719-45720 +45721-45734 +45722-45734 +45723-45734 +45726-45734 +45727-45734 +45727-45731 +45727-45729 +45727-45728 +45730-45731 +45732-45733 +45735-45757 +45735-45757 +45736-45757 +45736-45745 +45736-45737 +45738-45741 +45739-45741 +45740-45741 +45743-45745 +45744-45745 +45746-45757 +45747-45757 +45748-45751 +45749-45751 +45750-45751 +45752-45756 +45753-45756 +45754-45756 +45755-45756 +45758-45785 +45758-45785 +45759-45785 +45759-45769 +45761-45763 +45762-45763 +45764-45769 +45765-45769 +45765-45768 +45765-45766 +45767-45768 +45770-45785 +45771-45785 +45771-45773 +45771-45773 +45772-45773 +45776-45785 +45776-45777 +45780-45781 +45782-45785 +45783-45785 +45786-45802 +45786-45802 +45787-45802 +45789-45802 +45790-45802 +45790 +45792-45802 +45792-45794 +45795-45802 +45796-45802 +45797-45798 +45799-45802 +45800-45802 +45802 +45803-45808 +45803-45808 +45804-45808 +45806-45808 +45806 +45807-45808 +45809-45822 +45809-45822 +45810-45822 +45812-45815 +45813-45815 +45814-45815 +45816-45822 +45817-45822 +45817-45818 +45819-45822 +45820-45822 +45820-45821 +45823-45826 +45823-45826 +45825-45826 +45827-45834 +45827-45834 +45828-45834 +45828-45832 +45829-45832 +45830-45832 +45831-45832 +45833-45834 +45835-45844 +45835-45844 +45836-45844 +45836-45839 +45837-45839 +45840-45844 +45841-45844 +45843-45844 +45845-45873 +45845-45873 +45848-45873 +45848-45855 +45848-45851 +45850-45851 +45852-45855 +45853-45855 +45854-45855 +45856-45865 +45856-45864 +45856-45858 +45857-45858 +45859-45864 +45860-45864 +45860-45861 +45862-45864 +45863-45864 +45866-45873 +45866-45872 +45866-45867 +45868-45872 +45869-45872 +45869-45870 +45871-45872 +45874-45900 +45874-45900 +45875-45900 +45875-45883 +45875-45877 +45876-45877 +45879-45880 +45881-45883 +45882-45883 +45884-45900 +45885-45900 +45886-45891 +45887-45891 +45888-45891 +45889-45891 +45890-45891 +45892-45896 +45893-45896 +45894-45896 +45895-45896 +45897-45900 +45898-45900 +45899-45900 +45901-45904 +45901-45904 +45903-45904 +45905-45930 +45905-45930 +45906-45930 +45907-45910 +45908-45910 +45909-45910 +45911-45913 +45913 +45914-45930 +45915-45930 +45918-45930 +45918-45920 +45919-45920 +45921-45930 +45924-45926 +45924 +45925-45926 +45926 +45927-45930 +45928-45930 +45929-45930 +45931-45954 +45931-45954 +45932-45954 +45932-45941 +45933-45941 +45934-45941 +45935-45941 +45936-45937 +45938-45939 +45940-45941 +45942-45945 +45943-45945 +45944-45945 +45946-45954 +45947-45954 +45947-45948 +45949-45950 +45951-45954 +45952-45954 +45953-45954 +45955-45963 +45955-45963 +45956-45963 +45957-45960 +45958-45960 +45959-45960 +45961-45962 +45964-45971 +45964-45971 +45964-45967 +45965-45967 +45966-45967 +45969-45971 +45970-45971 +45972-45985 +45972-45985 +45973-45985 +45973-45978 +45974-45978 +45975-45978 +45976-45977 +45979-45985 +45981-45985 +45982-45985 +45983-45985 +45984-45985 +45986-46019 +45986-46019 +45986-46009 +45986-45994 +45987-45990 +45988-45990 +45989-45990 +45992-45994 +45993-45994 +45995-46000 +45996-46000 +45996-45999 +45997-45999 +45998-45999 +46001-46009 +46002-46009 +46002-46005 +46003-46005 +46004-46005 +46008-46009 +46010-46019 +46011-46019 +46011-46012 +46015-46019 +46016-46019 +46017-46019 +46018-46019 +46019 +46020-46031 +46020-46031 +46021-46027 +46021-46024 +46022-46024 +46022-46023 +46025-46027 +46026-46027 +46027 +46028-46031 +46029-46031 +46030-46031 +46032-46064 +46032-46064 +46033-46064 +46033-46038 +46034-46035 +46036-46038 +46037-46038 +46039-46043 +46040-46043 +46041-46043 +46041-46042 +46044-46047 +46045-46047 +46046-46047 +46048-46053 +46049-46053 +46050-46053 +46051-46053 +46051-46052 +46054-46064 +46055-46064 +46056-46057 +46058-46059 +46060-46064 +46061-46064 +46063-46064 +46065-46101 +46065-46101 +46066-46101 +46066-46095 +46066-46085 +46066-46073 +46068-46073 +46069-46073 +46070-46071 +46072-46073 +46074-46085 +46075-46085 +46075-46077 +46076-46077 +46078-46079 +46080-46085 +46081-46085 +46082-46085 +46083-46085 +46084-46085 +46086-46095 +46088-46095 +46089-46095 +46090-46095 +46091-46095 +46092-46095 +46093-46095 +46094-46095 +46096-46101 +46097-46101 +46097-46100 +46098-46100 +46099-46100 +46102-46116 +46102-46116 +46103-46116 +46105-46116 +46105-46108 +46106-46108 +46107-46108 +46110-46111 +46112-46116 +46113-46116 +46113-46115 +46114-46115 +46117-46131 +46117-46131 +46118-46131 +46118-46120 +46120 +46121-46126 +46121 +46122-46126 +46123-46126 +46124-46126 +46125-46126 +46127-46131 +46128-46131 +46129-46131 +46130-46131 +46132-46135 +46132-46135 +46133-46135 +46136-46142 +46136-46142 +46137-46142 +46137-46138 +46139-46142 +46140-46142 +46141-46142 +46143-46155 +46143-46155 +46143-46145 +46144-46145 +46146-46155 +46146-46148 +46147-46148 +46150-46155 +46151-46155 +46153-46154 +46156-46170 +46156-46170 +46157-46158 +46159-46162 +46160-46162 +46161-46162 +46164-46170 +46165-46170 +46167-46170 +46168-46170 +46169-46170 +46171-46184 +46171-46184 +46172-46173 +46174-46184 +46175-46184 +46175-46176 +46178-46180 +46178-46179 +46181-46184 +46182-46184 +46183-46184 +46185-46197 +46185-46197 +46185-46190 +46185-46189 +46185-46186 +46187-46189 +46188-46189 +46191-46197 +46192-46197 +46192-46194 +46193-46194 +46195-46196 +46198-46223 +46198-46223 +46199-46223 +46201-46223 +46201-46213 +46204-46206 +46205-46206 +46207-46213 +46208-46213 +46209-46210 +46211-46213 +46212-46213 +46214-46223 +46215-46223 +46216-46217 +46219-46221 +46219-46220 +46222-46223 +46223 +46224-46234 +46224-46234 +46225-46234 +46226-46234 +46227-46234 +46228-46234 +46229-46234 +46230-46234 +46231-46234 +46232-46234 +46233-46234 +46235-46255 +46235-46255 +46236-46255 +46237-46239 +46238-46239 +46240-46255 +46241-46255 +46242-46255 +46243-46255 +46243-46248 +46244-46248 +46244-46245 +46246-46248 +46247-46248 +46248 +46249-46255 +46250-46255 +46251-46255 +46252-46255 +46253-46255 +46254-46255 +46256-46274 +46256-46274 +46257-46274 +46257-46263 +46257-46258 +46259-46260 +46261-46263 +46262-46263 +46264-46274 +46265-46274 +46265-46266 +46267 +46269-46274 +46270-46274 +46270-46271 +46272-46274 +46273-46274 +46275-46286 +46275-46286 +46276-46286 +46276-46278 +46277-46278 +46280-46281 +46282-46286 +46282-46284 +46283-46284 +46287-46295 +46287-46295 +46288-46295 +46289-46295 +46289-46292 +46290-46292 +46291-46292 +46293-46295 +46294-46295 +46296-46310 +46296-46310 +46297-46310 +46297-46306 +46298-46302 +46298-46299 +46300-46302 +46301-46302 +46303-46306 +46304-46306 +46307-46310 +46308-46310 +46309-46310 +46311-46324 +46311-46324 +46312-46324 +46314-46324 +46315-46324 +46315-46318 +46316-46318 +46317-46318 +46319-46324 +46320-46324 +46321-46324 +46322-46324 +46323-46324 +46325-46336 +46325-46336 +46326-46336 +46326 +46328-46331 +46329-46331 +46330-46331 +46332-46336 +46333-46336 +46337-46343 +46337-46343 +46338-46343 +46338 +46339-46343 +46340-46343 +46341-46343 +46344-46354 +46344-46354 +46345-46354 +46345 +46346-46354 +46347-46354 +46349-46354 +46350-46354 +46352-46353 +46355-46365 +46355-46365 +46356-46365 +46357-46365 +46358-46365 +46358-46360 +46359-46360 +46361-46365 +46363-46365 +46364-46365 +46366-46378 +46366-46378 +46367-46378 +46368-46370 +46369-46370 +46371-46378 +46372-46378 +46372-46376 +46372 +46375-46376 +46377-46378 +46378 +46379-46385 +46379-46385 +46380-46385 +46383-46385 +46383 +46384-46385 +46386-46401 +46386-46401 +46387-46401 +46390-46401 +46391-46395 +46393-46395 +46394-46395 +46396-46401 +46398-46401 +46399-46401 +46399-46400 +46402-46409 +46402-46409 +46404-46409 +46405-46409 +46406-46409 +46407-46409 +46407-46408 +46410-46431 +46410-46431 +46411-46431 +46412-46415 +46413-46415 +46414-46415 +46416-46431 +46418-46419 +46420-46431 +46420-46423 +46422-46423 +46424-46431 +46425-46426 +46427-46430 +46428-46430 +46429-46430 +46432-46437 +46432-46437 +46435-46437 +46435-46436 +46437 +46438-46439 +46438-46439 +46440-46449 +46440-46449 +46441-46449 +46441-46445 +46441-46442 +46441 +46443-46445 +46444-46445 +46446-46449 +46447-46449 +46448-46449 +46450-46460 +46450-46460 +46451-46460 +46451-46454 +46452-46454 +46453-46454 +46455 +46456-46460 +46457-46460 +46457-46458 +46459-46460 +46461-46476 +46461-46476 +46462-46476 +46463-46464 +46465-46476 +46467-46476 +46467-46469 +46468-46469 +46471-46472 +46473-46476 +46474-46476 +46475-46476 +46477-46493 +46477-46493 +46478-46493 +46480-46493 +46481-46493 +46482-46483 +46486-46493 +46487-46493 +46489-46493 +46490-46493 +46491-46493 +46492-46493 +46494-46504 +46494-46504 +46495-46504 +46495-46496 +46497 +46499-46504 +46499-46500 +46501-46504 +46502-46504 +46503-46504 +46505-46525 +46505-46525 +46506-46525 +46508-46525 +46508-46509 +46511-46513 +46512-46513 +46514-46518 +46515-46518 +46516-46518 +46517-46518 +46519-46525 +46520-46525 +46521-46524 +46522-46524 +46523-46524 +46526-46549 +46526-46549 +46527-46549 +46527-46530 +46527-46528 +46529 +46531-46549 +46532-46549 +46534-46549 +46535-46549 +46535-46543 +46537-46543 +46537-46539 +46538-46539 +46540-46543 +46541-46543 +46541-46542 +46544-46549 +46546-46549 +46547-46549 +46548-46549 +46550-46601 +46550-46601 +46551-46601 +46551-46552 +46554-46556 +46555-46556 +46556 +46557-46601 +46558-46601 +46558-46583 +46558-46571 +46558-46564 +46559-46564 +46560-46564 +46561-46564 +46562-46564 +46563-46564 +46565-46571 +46565-46567 +46566-46567 +46568-46571 +46569-46571 +46569-46570 +46572-46583 +46573-46583 +46574-46578 +46575-46578 +46576-46578 +46577-46578 +46579-46580 +46581-46583 +46582-46583 +46584-46601 +46585-46601 +46585-46593 +46586-46593 +46586-46589 +46587-46589 +46588-46589 +46590-46592 +46591-46592 +46592 +46594-46601 +46595-46601 +46596-46601 +46596-46598 +46596-46597 +46599-46601 +46599-46600 +46602-46617 +46602-46617 +46603-46617 +46605-46617 +46606-46607 +46608-46617 +46609-46617 +46610-46617 +46612-46613 +46614-46617 +46615-46617 +46615-46616 +46618-46629 +46618-46629 +46619-46629 +46620-46621 +46622-46629 +46623-46629 +46624-46629 +46625-46629 +46625-46626 +46628-46629 +46630-46645 +46630-46645 +46631-46645 +46634-46645 +46634-46639 +46634-46637 +46635-46637 +46636-46637 +46640-46645 +46641-46645 +46641-46643 +46642-46643 +46646-46664 +46646-46664 +46647-46664 +46647-46649 +46650-46664 +46651-46664 +46651-46658 +46651-46654 +46652-46654 +46653-46654 +46656-46658 +46657-46658 +46659-46664 +46660-46664 +46660-46661 +46661 +46662-46664 +46663-46664 +46664 +46665-46675 +46665-46675 +46666-46675 +46668-46672 +46668-46672 +46668-46669 +46669 +46670-46672 +46671-46672 +46672 +46673-46675 +46674-46675 +46674-46675 +46675 +46676-46684 +46676-46684 +46677-46684 +46678-46680 +46679-46680 +46682-46684 +46683-46684 +46684 +46685-46695 +46685-46695 +46686-46695 +46688-46691 +46689-46691 +46690-46691 +46692-46695 +46693-46695 +46694-46695 +46696-46727 +46696-46727 +46696-46717 +46696-46705 +46699-46704 +46700-46704 +46702-46704 +46703-46704 +46706-46717 +46707-46717 +46707-46709 +46708-46709 +46710-46713 +46711-46713 +46712-46713 +46714-46717 +46715-46717 +46716-46717 +46718-46727 +46719-46727 +46720-46721 +46722-46727 +46722-46726 +46723-46726 +46724-46726 +46725-46726 +46728-46739 +46728-46739 +46728-46729 +46728 +46729 +46730-46739 +46731-46732 +46735-46739 +46736-46739 +46736 +46737-46739 +46738-46739 +46738-46739 +46740-46750 +46740-46750 +46741-46750 +46743-46744 +46745-46750 +46746-46750 +46748-46750 +46749-46750 +46751-46758 +46751-46758 +46752-46758 +46753-46754 +46756-46758 +46757-46758 +46759-46774 +46759-46774 +46760-46774 +46763-46774 +46763 +46764-46765 +46768-46774 +46768-46773 +46768-46770 +46769-46770 +46771-46773 +46772-46773 +46775-46790 +46775-46790 +46776-46790 +46778-46790 +46778-46780 +46780 +46781-46790 +46781-46784 +46785-46790 +46786-46790 +46787-46789 +46791-46805 +46791-46805 +46792-46805 +46794-46805 +46794-46802 +46795-46802 +46797-46802 +46798-46802 +46799-46800 +46801-46802 +46803-46805 +46804-46805 +46806-46809 +46806-46809 +46807-46809 +46809 +46810-46832 +46810-46832 +46811-46832 +46813-46832 +46814-46832 +46814-46818 +46815-46817 +46816-46817 +46819-46821 +46820-46821 +46822-46832 +46823-46832 +46823-46829 +46823-46825 +46824-46825 +46827-46829 +46828-46829 +46830-46832 +46831-46832 +46833-46848 +46833-46848 +46834-46848 +46836-46848 +46837-46848 +46838-46848 +46838-46845 +46838-46840 +46839-46840 +46840 +46841-46845 +46842-46845 +46843-46845 +46843-46844 +46847-46848 +46849-46855 +46849-46855 +46850-46855 +46850-46853 +46851-46853 +46852-46853 +46856-46863 +46856-46863 +46857-46863 +46859-46863 +46859 +46864-46869 +46864-46869 +46865-46869 +46868-46869 +46870-46880 +46870-46880 +46871-46880 +46871 +46873-46875 +46874-46875 +46876-46880 +46877-46880 +46878-46880 +46879-46880 +46881-46886 +46881-46886 +46882-46886 +46884-46886 +46885-46886 +46887-46898 +46887-46898 +46888-46898 +46888-46891 +46889-46891 +46890-46891 +46894-46898 +46895-46898 +46897-46898 +46899-46930 +46899-46930 +46900-46930 +46900-46906 +46902-46903 +46904-46906 +46905-46906 +46907-46930 +46908-46930 +46908-46910 +46909-46910 +46912-46930 +46913-46930 +46913 +46914-46921 +46914-46915 +46915 +46916-46921 +46917-46919 +46918-46919 +46920-46921 +46922-46930 +46923-46930 +46924-46926 +46924-46926 +46925-46926 +46928-46930 +46928-46929 +46931-46938 +46931-46938 +46932-46938 +46935-46936 +46937-46938 +46939-46944 +46939-46944 +46940-46944 +46940-46942 +46941-46942 +46945-46983 +46945-46983 +46946-46983 +46946-46956 +46947-46949 +46948-46949 +46950-46952 +46951-46952 +46953-46956 +46954-46956 +46955-46956 +46957-46983 +46958-46983 +46958-46971 +46958-46961 +46959-46961 +46960-46961 +46962-46965 +46963-46965 +46964-46965 +46967-46971 +46969-46971 +46970-46971 +46972-46983 +46973-46983 +46975-46983 +46975-46976 +46977-46983 +46977 +46979-46983 +46980-46983 +46982-46983 +46984-47003 +46984-47003 +46984-46986 +46987-46988 +46987 +46989-47003 +46990-47003 +46990-46997 +46990-46995 +46990-46992 +46991-46992 +46993-46995 +46994-46995 +46998-47003 +46999-47003 +47000-47001 +47002-47003 +47004-47014 +47004-47014 +47005-47014 +47008-47014 +47008 +47010-47013 +47011-47013 +47012-47013 +47015-47027 +47015-47027 +47016-47027 +47016-47018 +47017-47018 +47019-47021 +47020-47021 +47021 +47023-47027 +47023 +47025-47027 +47026-47027 +47028-47044 +47028-47044 +47029-47044 +47029-47037 +47030-47033 +47031-47033 +47032-47033 +47034-47037 +47034-47035 +47036-47037 +47038-47044 +47039-47044 +47040-47044 +47041-47044 +47041-47042 +47043-47044 +47045-47052 +47045-47052 +47046-47052 +47046 +47047-47048 +47050-47052 +47051-47052 +47053-47058 +47053-47058 +47054-47058 +47054-47056 +47055-47056 +47059-47081 +47059-47081 +47060-47081 +47062-47073 +47063-47073 +47064-47073 +47064-47066 +47065-47066 +47067-47073 +47068-47071 +47069-47071 +47070-47071 +47072-47073 +47074-47081 +47074-47076 +47075-47076 +47075-47076 +47077-47081 +47078-47081 +47079-47081 +47080-47081 +47082-47096 +47082-47096 +47082-47090 +47082-47083 +47086-47087 +47088-47090 +47089-47090 +47091-47096 +47093-47094 +47095-47096 +47097-47107 +47097-47107 +47098-47107 +47100-47107 +47100-47102 +47101-47102 +47103-47107 +47104-47107 +47105-47107 +47106-47107 +47108-47118 +47108-47118 +47109-47118 +47109-47111 +47109-47110 +47112-47118 +47113-47118 +47114-47118 +47115-47118 +47116-47118 +47117-47118 +47119-47123 +47119-47123 +47120-47123 +47120-47121 +47124-47137 +47124-47137 +47125-47137 +47125-47132 +47125-47130 +47127-47130 +47128-47130 +47129-47130 +47131-47132 +47132 +47134-47135 +47136-47137 +47138-47155 +47138-47155 +47139-47155 +47139-47140 +47141-47149 +47141-47146 +47142-47146 +47144-47146 +47145-47146 +47147-47149 +47148-47149 +47151-47155 +47151-47152 +47153-47154 +47156-47163 +47156-47163 +47157-47163 +47159 +47160-47163 +47163 +47164-47175 +47164-47175 +47165-47175 +47165-47166 +47168-47169 +47171-47175 +47171-47172 +47173-47174 +47176-47182 +47176-47182 +47177-47182 +47177-47178 +47180-47182 +47180 +47183-47202 +47183-47202 +47184-47202 +47184-47187 +47185-47187 +47186-47187 +47188-47202 +47188-47189 +47191-47202 +47192-47202 +47192-47198 +47192-47193 +47194-47195 +47196-47197 +47199-47202 +47200-47202 +47200-47201 +47203-47211 +47203-47211 +47204-47211 +47205-47206 +47207-47211 +47207 +47210-47211 +47212-47218 +47212-47218 +47213-47218 +47214-47216 +47219-47244 +47219-47244 +47220-47244 +47220-47225 +47220 +47221-47222 +47224-47225 +47226-47244 +47227-47244 +47227-47233 +47228-47229 +47230-47233 +47231-47233 +47232-47233 +47234-47244 +47235-47244 +47237-47244 +47238-47244 +47238-47241 +47239-47241 +47245-47249 +47245-47249 +47246-47249 +47246-47247 +47250-47269 +47250-47269 +47251-47269 +47251-47258 +47251-47255 +47251-47252 +47253-47255 +47254-47255 +47258 +47259-47269 +47260-47269 +47260-47261 +47263-47269 +47264-47269 +47265-47269 +47267-47269 +47268-47269 +47270-47276 +47270-47276 +47271-47276 +47271-47272 +47274-47276 +47275-47276 +47277-47304 +47277-47304 +47278-47304 +47278-47280 +47279-47280 +47281-47304 +47281-47289 +47282-47289 +47282-47285 +47283-47285 +47284-47285 +47286-47287 +47288-47289 +47290-47304 +47291-47304 +47293-47296 +47294-47296 +47295-47296 +47297-47304 +47298-47304 +47298-47302 +47299-47302 +47301-47302 +47303-47304 +47305-47313 +47305-47313 +47306-47313 +47308-47313 +47308-47310 +47309-47310 +47311-47313 +47311-47312 +47314-47319 +47314-47319 +47315-47319 +47315-47316 +47316 +47317-47319 +47317-47318 +47320-47335 +47320-47335 +47321-47335 +47321-47323 +47322-47323 +47324-47325 +47326-47329 +47327-47329 +47328-47329 +47330-47335 +47331-47335 +47332-47335 +47333-47335 +47334-47335 +47336-47345 +47336-47345 +47337-47345 +47339-47345 +47340-47345 +47342-47345 +47343-47345 +47344-47345 +47346-47355 +47346-47355 +47347-47355 +47348-47349 +47351-47355 +47353-47355 +47354-47355 +47356-47370 +47356-47370 +47357-47370 +47359-47370 +47362-47363 +47364-47370 +47365-47370 +47367-47370 +47368-47370 +47369-47370 +47371-47381 +47371-47381 +47372-47381 +47372 +47373-47376 +47374-47376 +47375-47376 +47379-47381 +47380-47381 +47382-47403 +47382-47403 +47383-47403 +47384-47385 +47386-47403 +47387-47403 +47388-47403 +47388-47392 +47390-47392 +47391-47392 +47393-47397 +47394-47397 +47395-47397 +47398-47403 +47399-47403 +47400-47403 +47401-47402 +47404-47415 +47404-47415 +47405-47415 +47405-47406 +47409-47415 +47410-47415 +47412-47415 +47413-47415 +47414-47415 +47416-47422 +47416-47422 +47417-47422 +47418-47419 +47421-47422 +47423-47439 +47423-47439 +47424-47439 +47424-47425 +47427-47432 +47428-47432 +47428-47429 +47430-47432 +47431-47432 +47433-47439 +47436-47439 +47437-47439 +47437-47438 +47440-47459 +47440-47459 +47441-47459 +47443-47459 +47444-47459 +47445-47459 +47446-47447 +47448-47459 +47449-47452 +47450-47452 +47451-47452 +47453-47459 +47455-47459 +47455-47457 +47456-47457 +47458-47459 +47460-47468 +47460-47468 +47461-47468 +47462 +47464-47468 +47465-47468 +47465-47466 +47469-47489 +47469-47489 +47470-47489 +47470-47476 +47471-47476 +47472-47476 +47472-47475 +47473-47475 +47474-47475 +47479-47489 +47480-47489 +47481-47489 +47482-47483 +47484-47485 +47486-47489 +47487-47489 +47488-47489 +47490-47518 +47490-47518 +47491-47518 +47491-47497 +47491-47492 +47493-47495 +47494-47495 +47498-47518 +47499-47518 +47499-47510 +47499-47500 +47501-47503 +47502-47503 +47504-47505 +47506-47510 +47507-47510 +47508-47510 +47509-47510 +47511-47518 +47512-47518 +47513-47518 +47514-47518 +47514-47515 +47516-47517 +47519-47524 +47519-47524 +47520-47524 +47522-47524 +47523-47524 +47525-47529 +47525-47529 +47526-47529 +47530-47539 +47530-47539 +47531-47539 +47532-47536 +47532-47533 +47534-47536 +47535-47536 +47537-47539 +47540-47557 +47540-47557 +47541-47557 +47541-47542 +47543-47550 +47543-47548 +47545-47548 +47546-47548 +47547-47548 +47549-47550 +47550 +47551-47553 +47552-47553 +47556-47557 +47558-47579 +47558-47579 +47559-47579 +47559-47572 +47561-47566 +47561-47563 +47562-47563 +47564-47566 +47565-47566 +47567-47570 +47568-47570 +47569-47570 +47571-47572 +47573-47579 +47574-47579 +47575-47579 +47575-47576 +47578-47579 +47580-47627 +47580-47627 +47581-47627 +47582-47590 +47583-47590 +47583-47584 +47585-47587 +47586-47587 +47588-47590 +47589-47590 +47592-47593 +47594-47627 +47594-47602 +47596-47598 +47596-47597 +47599-47602 +47600-47602 +47601-47602 +47603-47627 +47604-47627 +47605-47619 +47606-47608 +47606-47607 +47611-47614 +47612-47614 +47612-47613 +47615-47619 +47616-47619 +47618-47619 +47620-47627 +47621-47627 +47621-47622 +47623-47627 +47624-47627 +47626-47627 +47628-47635 +47628-47635 +47629-47635 +47630-47632 +47631-47632 +47633-47634 +47636-47639 +47636-47639 +47637-47639 +47637-47638 +47640-47665 +47640-47665 +47641-47665 +47643-47650 +47644-47650 +47644-47645 +47646-47650 +47647-47650 +47649-47650 +47651-47665 +47652-47653 +47654-47662 +47655-47662 +47655-47660 +47655-47656 +47657-47660 +47658-47660 +47659-47660 +47661-47662 +47663-47665 +47664-47665 +47666-47675 +47666-47675 +47667-47675 +47668-47669 +47672-47675 +47673-47675 +47674-47675 +47676-47682 +47676-47682 +47677-47682 +47679-47682 +47680-47682 +47680 +47681-47682 +47683-47703 +47683-47703 +47684-47703 +47687-47688 +47689-47703 +47689-47699 +47690-47699 +47690-47693 +47690-47691 +47694-47699 +47694-47696 +47695-47696 +47698-47699 +47700-47703 +47701-47703 +47701-47702 +47704-47716 +47704-47716 +47705-47716 +47705-47711 +47707-47708 +47709-47711 +47710-47711 +47712-47716 +47713-47716 +47714-47716 +47715-47716 +47717-47723 +47717-47723 +47718-47723 +47720-47723 +47721-47723 +47722-47723 +47724-47742 +47724-47742 +47725-47742 +47725-47735 +47726-47735 +47726-47733 +47727-47733 +47727-47730 +47728-47730 +47729-47730 +47732-47733 +47734-47735 +47736-47742 +47737-47742 +47737-47738 +47740-47742 +47741-47742 +47743-47761 +47743-47761 +47744-47761 +47744-47746 +47745-47746 +47747-47753 +47748-47753 +47748-47750 +47748-47749 +47751-47753 +47752-47753 +47756-47757 +47758-47761 +47759-47761 +47760-47761 +47762-47775 +47762-47775 +47763-47775 +47765-47775 +47766-47775 +47767-47775 +47767-47768 +47769-47775 +47770-47775 +47771-47775 +47772-47774 +47773-47774 +47776-47787 +47776-47787 +47777-47787 +47777-47779 +47778-47779 +47782-47787 +47782-47783 +47782-47783 +47786-47787 +47788-47817 +47788-47817 +47789-47817 +47789-47796 +47789-47791 +47789-47790 +47792-47796 +47793-47796 +47793-47796 +47794-47796 +47795-47796 +47797-47817 +47798-47817 +47800-47817 +47801-47817 +47801-47803 +47801-47802 +47805-47817 +47805-47806 +47807-47812 +47808-47812 +47809-47812 +47810-47812 +47813-47817 +47814-47817 +47815-47817 +47818-47830 +47818-47830 +47820-47830 +47820-47825 +47821-47822 +47823-47825 +47824-47825 +47826-47830 +47827-47830 +47827-47828 +47827-47828 +47829-47830 +47831-47842 +47831-47842 +47832-47842 +47832-47837 +47833-47837 +47833-47835 +47834-47835 +47838-47840 +47839-47840 +47843-47851 +47843-47851 +47844-47851 +47845-47848 +47846-47848 +47847-47848 +47849-47850 +47851 +47852-47874 +47852-47874 +47853-47874 +47853-47860 +47854-47860 +47855-47860 +47856-47860 +47856-47857 +47858-47860 +47859-47860 +47861-47874 +47863-47874 +47864-47874 +47865-47874 +47865-47866 +47867-47874 +47867-47870 +47868-47870 +47869-47870 +47871-47874 +47872-47874 +47873-47874 +47875-47886 +47875-47886 +47876-47886 +47876-47877 +47879-47886 +47879 +47880-47881 +47882-47886 +47883-47886 +47885-47886 +47887-47893 +47887-47893 +47888-47893 +47888-47891 +47889-47891 +47890-47891 +47894-47898 +47894-47898 +47895-47898 +47896-47897 +47898 +47899-47917 +47899-47917 +47900-47917 +47901-47903 +47902-47903 +47904-47917 +47905-47917 +47905-47906 +47907-47917 +47907-47908 +47909-47917 +47910-47917 +47912-47917 +47912-47915 +47913-47915 +47914-47915 +47916-47917 +47918-47938 +47918-47938 +47919-47938 +47921-47923 +47922-47923 +47924 +47925-47938 +47925-47927 +47928-47938 +47929-47938 +47930-47938 +47930-47936 +47931-47936 +47933-47936 +47934-47936 +47935-47936 +47937-47938 +47939-47949 +47939-47949 +47940-47949 +47941-47942 +47943-47944 +47945-47949 +47945-47948 +47946-47948 +47947-47948 +47950-47965 +47950-47965 +47951-47965 +47951-47954 +47952-47954 +47953-47954 +47953 +47957-47965 +47957-47961 +47958-47961 +47960-47961 +47962-47965 +47963-47965 +47964-47965 +47966-47997 +47966-47997 +47967-47997 +47967 +47968-47969 +47970-47971 +47973-47997 +47973-47983 +47976-47977 +47978-47983 +47979-47983 +47979-47982 +47980-47982 +47981-47982 +47984-47997 +47985-47997 +47985-47992 +47986-47992 +47986-47987 +47988-47992 +47989-47992 +47989-47991 +47990-47991 +47993-47997 +47994-47997 +47995-47996 +47998-48008 +47998-48008 +47999-48008 +48000-48008 +48000 +48003-48008 +48004-48008 +48005-48008 +48006-48008 +48007-48008 +48009-48021 +48009-48021 +48010-48021 +48012-48021 +48012-48014 +48013-48014 +48015-48021 +48016-48017 +48019-48021 +48020-48021 +48022-48047 +48022-48047 +48023-48047 +48023-48027 +48025-48027 +48026-48027 +48028-48047 +48029-48047 +48029-48040 +48029-48037 +48031-48034 +48032-48034 +48033-48034 +48035-48037 +48036-48037 +48038-48040 +48038-48039 +48041-48047 +48042-48047 +48043-48046 +48044-48046 +48045-48046 +48048-48062 +48048-48062 +48049-48062 +48049-48051 +48050-48051 +48052-48053 +48055-48062 +48055 +48056-48058 +48057-48058 +48060-48062 +48061-48062 +48063-48066 +48063-48066 +48064-48066 +48064-48065 +48067-48082 +48067-48082 +48068-48082 +48068-48069 +48070-48072 +48071-48072 +48072 +48074-48075 +48076-48082 +48077-48082 +48078-48080 +48078-48079 +48083-48098 +48083-48098 +48084-48098 +48084-48091 +48085-48091 +48086-48091 +48086-48090 +48087-48090 +48088-48090 +48088-48089 +48092-48094 +48093-48094 +48094 +48095-48097 +48096-48097 +48099-48116 +48099-48116 +48100-48116 +48101-48102 +48103-48114 +48103-48106 +48104-48106 +48105-48106 +48107-48114 +48108-48114 +48109-48114 +48110-48114 +48112-48114 +48113-48114 +48115-48116 +48117-48174 +48117-48174 +48118-48174 +48119-48148 +48119-48148 +48119-48142 +48119-48137 +48119-48127 +48119-48121 +48120-48121 +48122-48127 +48123-48127 +48124-48127 +48125-48127 +48126-48127 +48128-48137 +48130-48131 +48132-48137 +48132-48136 +48132-48133 +48134-48136 +48135-48136 +48138-48142 +48139-48142 +48140-48142 +48141-48142 +48143-48148 +48145-48148 +48146-48148 +48147-48148 +48149-48157 +48150 +48151-48152 +48154-48157 +48155-48157 +48156-48157 +48158-48174 +48159-48174 +48159-48162 +48159 +48163-48174 +48164-48174 +48166-48174 +48167-48174 +48167-48168 +48169-48174 +48171-48172 +48175-48181 +48175-48181 +48176-48181 +48176-48178 +48176-48177 +48179-48181 +48180-48181 +48182-48207 +48182-48207 +48183-48207 +48183-48201 +48183 +48184-48192 +48185-48192 +48186-48192 +48187-48188 +48189-48191 +48190-48191 +48194-48201 +48194-48195 +48196-48201 +48197-48201 +48198-48201 +48199-48201 +48200-48201 +48202-48207 +48203-48207 +48203 +48205-48207 +48206-48207 +48208-48215 +48208-48215 +48209-48215 +48210-48215 +48210-48211 +48213-48215 +48214-48215 +48216-48230 +48216-48230 +48217-48230 +48217-48220 +48218-48220 +48219-48220 +48221-48222 +48223-48225 +48224-48225 +48227-48230 +48228-48230 +48228-48229 +48231-48247 +48231-48247 +48232-48247 +48232-48238 +48233-48238 +48233-48234 +48236-48238 +48237-48238 +48239-48247 +48240-48247 +48240 +48243-48247 +48244-48247 +48245-48247 +48245-48246 +48248-48264 +48248-48264 +48249-48264 +48249-48255 +48250-48255 +48251-48255 +48252-48255 +48254-48255 +48256-48264 +48257-48264 +48258-48259 +48262-48264 +48263-48264 +48264 +48265-48285 +48265-48285 +48266-48285 +48266-48275 +48266-48268 +48269-48275 +48270-48275 +48271-48272 +48273-48275 +48274-48275 +48276-48285 +48277-48278 +48279-48285 +48281-48282 +48282 +48283-48285 +48284-48285 +48286-48290 +48286-48290 +48287-48288 +48290 +48291-48318 +48291-48318 +48291 +48293-48318 +48295-48299 +48297-48299 +48298-48299 +48300-48318 +48301-48318 +48302-48318 +48303-48318 +48303-48311 +48303-48306 +48304-48306 +48305-48306 +48308-48311 +48309-48311 +48310-48311 +48312-48313 +48313 +48314-48318 +48315-48318 +48315-48317 +48316-48317 +48319-48337 +48319-48337 +48320-48337 +48320-48323 +48321-48323 +48322-48323 +48324-48337 +48325-48337 +48325-48328 +48326-48328 +48327-48328 +48330-48331 +48332-48337 +48332-48333 +48334-48337 +48335-48337 +48336-48337 +48338-48353 +48338-48353 +48339-48353 +48340-48353 +48340-48342 +48340-48341 +48343-48344 +48345-48348 +48346-48348 +48347-48348 +48349-48353 +48350-48353 +48350-48351 +48352-48353 +48354-48358 +48354-48358 +48355-48357 +48356-48357 +48359-48370 +48359-48370 +48360-48370 +48360-48367 +48361-48362 +48363-48364 +48365-48367 +48365-48366 +48368-48370 +48369-48370 +48371-48384 +48371-48384 +48372-48384 +48372-48378 +48372-48373 +48374 +48376-48378 +48377-48378 +48379-48384 +48380-48384 +48380 +48382-48384 +48382-48383 +48385-48391 +48385-48391 +48386-48391 +48387-48391 +48387-48388 +48390-48391 +48391 +48392-48422 +48392-48422 +48393-48422 +48394-48412 +48394-48396 +48395-48396 +48397-48400 +48398-48400 +48399-48400 +48401-48402 +48403-48412 +48404-48412 +48404-48409 +48405-48409 +48406-48407 +48408-48409 +48410-48412 +48413-48422 +48414-48422 +48416-48417 +48418-48422 +48419-48422 +48419-48421 +48420-48421 +48421 +48423-48445 +48423-48445 +48424-48445 +48424-48430 +48425-48430 +48426-48430 +48427-48430 +48427-48428 +48429-48430 +48430 +48431-48445 +48432-48445 +48432-48436 +48432-48433 +48434 +48437-48445 +48438-48445 +48438-48440 +48439-48440 +48442-48445 +48443-48445 +48446-48458 +48446-48458 +48447-48458 +48448-48449 +48450-48458 +48451-48458 +48451-48453 +48451-48452 +48454-48458 +48456-48457 +48458 +48459-48461 +48459-48461 +48460-48461 +48462-48484 +48462-48484 +48463-48484 +48463 +48464-48466 +48465-48466 +48468-48469 +48470-48484 +48470-48473 +48474-48484 +48475-48484 +48477-48484 +48478-48484 +48479-48480 +48481-48484 +48482-48484 +48482-48483 +48485-48488 +48485-48488 +48486-48488 +48488 +48489-48529 +48489-48529 +48490-48529 +48493-48529 +48493-48513 +48494-48513 +48495-48513 +48495-48497 +48496-48497 +48498-48513 +48500-48506 +48501-48506 +48502-48506 +48503-48506 +48504-48506 +48505-48506 +48507-48513 +48508-48513 +48508-48509 +48510-48513 +48511-48513 +48512-48513 +48514-48529 +48515-48529 +48515-48526 +48518-48523 +48518-48519 +48520-48523 +48521-48523 +48522-48523 +48524-48526 +48525-48526 +48527-48529 +48528-48529 +48530-48540 +48530-48540 +48531-48540 +48533-48540 +48534-48540 +48536-48540 +48537-48540 +48538-48540 +48539-48540 +48541-48554 +48541-48554 +48542-48554 +48543-48554 +48543-48546 +48544-48546 +48545-48546 +48547-48549 +48548-48549 +48551-48554 +48552-48554 +48555-48562 +48555-48562 +48556-48562 +48556-48560 +48557-48560 +48557-48558 +48559-48560 +48563-48583 +48563-48583 +48563-48573 +48563-48567 +48565-48567 +48566-48567 +48568-48573 +48569-48573 +48571-48573 +48572-48573 +48575-48583 +48576-48583 +48576-48578 +48577-48578 +48580-48583 +48582-48583 +48584-48604 +48584-48604 +48585-48604 +48585-48592 +48586-48589 +48587-48589 +48588-48589 +48590-48592 +48591-48592 +48593-48604 +48594-48604 +48594-48600 +48594-48595 +48596-48600 +48597-48600 +48597-48599 +48598-48599 +48601-48604 +48602-48604 +48605-48635 +48605-48635 +48606-48635 +48608-48609 +48610-48635 +48610-48623 +48610-48623 +48611-48623 +48612-48623 +48613-48623 +48613-48615 +48614-48615 +48616-48623 +48617-48623 +48618-48623 +48619-48623 +48620-48623 +48622-48623 +48625-48635 +48626-48635 +48626-48629 +48628-48629 +48630-48635 +48631-48635 +48632-48635 +48633-48635 +48634-48635 +48636-48653 +48636-48653 +48637-48653 +48637-48644 +48638-48644 +48638-48639 +48640-48644 +48641-48644 +48642-48644 +48643-48644 +48647-48650 +48648-48650 +48649-48650 +48651-48653 +48652-48653 +48654-48665 +48654-48665 +48655-48665 +48655-48660 +48656-48660 +48657-48660 +48658-48660 +48659-48660 +48661-48665 +48662-48665 +48664-48665 +48666-48681 +48666-48681 +48667-48681 +48669-48681 +48670-48681 +48670-48672 +48671-48672 +48673-48681 +48674-48681 +48674-48676 +48674-48675 +48677-48681 +48678-48681 +48680-48681 +48682-48687 +48682-48687 +48683-48687 +48684-48687 +48685-48687 +48686-48687 +48688-48703 +48688-48703 +48689-48703 +48689-48695 +48690-48695 +48691-48695 +48692-48695 +48694-48695 +48696-48703 +48696-48699 +48696-48698 +48697-48698 +48700-48703 +48701-48703 +48701 +48704-48711 +48704-48711 +48705-48711 +48705-48708 +48705-48707 +48706-48707 +48709-48711 +48710-48711 +48712-48717 +48712-48717 +48713-48717 +48716-48717 +48718-48740 +48718-48740 +48719-48740 +48720-48721 +48722-48740 +48722-48729 +48723-48729 +48723-48725 +48724-48725 +48726-48727 +48728-48729 +48730-48740 +48730-48735 +48731-48735 +48733-48735 +48734-48735 +48736-48740 +48737-48740 +48739-48740 +48741-48766 +48741-48766 +48742-48766 +48742-48748 +48742-48745 +48743-48745 +48744-48745 +48747-48748 +48749-48766 +48750-48766 +48751-48766 +48752-48757 +48752-48753 +48754-48757 +48755-48757 +48756-48757 +48758-48766 +48759-48766 +48760-48766 +48760-48763 +48762-48763 +48764-48766 +48765-48766 +48767-48782 +48767-48782 +48768-48782 +48770-48782 +48770-48773 +48771-48773 +48772-48773 +48774-48782 +48775-48782 +48776-48782 +48778-48782 +48779-48782 +48780-48782 +48781-48782 +48783-48796 +48783-48796 +48784-48796 +48784-48786 +48787-48791 +48789-48791 +48790-48791 +48792-48796 +48793-48796 +48795-48796 +48797-48804 +48797-48804 +48798-48804 +48798-48801 +48798 +48799-48801 +48800-48801 +48803-48804 +48805-48819 +48805-48819 +48806-48819 +48808-48819 +48808-48810 +48809-48810 +48811-48819 +48812-48819 +48812-48813 +48816-48819 +48817-48819 +48818-48819 +48820-48831 +48820-48831 +48821-48827 +48821-48823 +48822-48823 +48824-48827 +48825-48827 +48826-48827 +48828-48831 +48829-48831 +48832-48846 +48832-48846 +48832-48833 +48834-48835 +48835 +48836-48846 +48837-48846 +48838-48840 +48839-48840 +48843-48846 +48844-48846 +48844-48845 +48847-48856 +48847-48856 +48848-48856 +48848-48849 +48852-48856 +48852-48853 +48854-48856 +48855-48856 +48857-48871 +48857-48871 +48858-48871 +48858-48865 +48858-48863 +48861-48863 +48862-48863 +48864-48865 +48865 +48866-48871 +48868-48871 +48869-48870 +48872-48878 +48872-48878 +48873-48878 +48876-48878 +48876-48877 +48879-48883 +48879-48883 +48880-48883 +48880 +48881-48882 +48884-48916 +48884-48916 +48885-48916 +48886-48887 +48888-48916 +48889-48899 +48890-48899 +48890-48891 +48892-48899 +48894-48895 +48896-48899 +48898-48899 +48900-48916 +48901-48916 +48902-48916 +48903-48916 +48904-48916 +48905-48916 +48906-48914 +48907-48914 +48907-48909 +48908-48909 +48910-48914 +48911-48914 +48912-48914 +48913-48914 +48915-48916 +48917-48925 +48917-48925 +48919-48921 +48920-48921 +48922-48925 +48923-48925 +48924-48925 +48926-48955 +48926-48955 +48927-48955 +48929-48955 +48930-48955 +48932-48955 +48932-48941 +48932-48934 +48933-48934 +48935-48941 +48936-48941 +48937-48938 +48939-48941 +48940-48941 +48942-48955 +48943-48955 +48944-48947 +48945-48947 +48946-48947 +48948-48951 +48949-48951 +48950-48951 +48952-48955 +48953-48955 +48954-48955 +48956-48961 +48956-48961 +48956-48958 +48957-48958 +48960-48961 +48962-48972 +48962-48972 +48963-48972 +48966-48970 +48967-48970 +48968-48970 +48969-48970 +48971-48972 +48973-48984 +48973-48984 +48974-48984 +48976-48978 +48977-48978 +48979-48984 +48980-48984 +48982-48983 +48985-48997 +48985-48997 +48986-48997 +48986-48990 +48988-48990 +48989-48990 +48991-48997 +48992-48997 +48992-48995 +48993-48995 +48994-48995 +48998-49012 +48998-49012 +48999-49012 +48999-49004 +49000-49004 +49001-49004 +49002-49004 +49005-49007 +49006-49007 +49008-49012 +49009-49012 +49010-49012 +49011-49012 +49013-49032 +49013-49032 +49014-49032 +49014-49022 +49015-49016 +49018-49019 +49020-49022 +49021-49022 +49023-49032 +49024-49032 +49024-49025 +49026-49027 +49028-49030 +49029-49030 +49031-49032 +49033-49049 +49033-49049 +49033-49037 +49033-49034 +49036-49037 +49038-49044 +49039-49044 +49039-49040 +49042-49044 +49043-49044 +49045-49049 +49046-49049 +49048-49049 +49050-49056 +49050-49056 +49052-49053 +49054-49056 +49055-49056 +49057-49068 +49057-49068 +49057-49060 +49058-49059 +49061-49068 +49062-49068 +49062-49063 +49066-49068 +49067-49068 +49069-49080 +49069-49080 +49069-49072 +49069-49070 +49073-49080 +49074-49080 +49074-49075 +49077-49080 +49078-49080 +49079-49080 +49081-49093 +49081-49093 +49082-49093 +49082-49087 +49082-49083 +49084-49086 +49085-49086 +49088-49093 +49089-49093 +49089-49090 +49094-49101 +49094-49101 +49094-49098 +49095-49098 +49096-49098 +49097-49098 +49099-49101 +49102-49115 +49102-49115 +49102-49110 +49104-49105 +49106-49110 +49107-49110 +49108-49110 +49109-49110 +49111-49115 +49112-49115 +49114-49115 +49116-49126 +49116-49126 +49117-49120 +49119-49120 +49122-49126 +49123-49126 +49124-49126 +49125-49126 +49127-49139 +49127-49139 +49127-49134 +49127-49130 +49128-49130 +49129-49130 +49131-49134 +49133-49134 +49135-49136 +49137-49139 +49138-49139 +49140-49155 +49140-49155 +49140-49143 +49140-49142 +49141-49142 +49144-49149 +49145-49149 +49145-49146 +49147-49148 +49150-49155 +49151-49155 +49151-49152 +49156-49165 +49156-49165 +49156-49159 +49156-49158 +49157-49158 +49160-49165 +49161-49165 +49161-49162 +49166-49197 +49166-49197 +49167-49197 +49167-49169 +49172-49174 +49172-49173 +49175-49197 +49175-49181 +49176-49181 +49177-49181 +49178-49181 +49179-49181 +49180-49181 +49182-49197 +49183-49196 +49184-49193 +49184-49185 +49186-49189 +49187-49189 +49188-49189 +49190-49193 +49191-49193 +49192-49193 +49195-49196 +49198-49220 +49198-49220 +49199-49220 +49199-49206 +49199-49202 +49199-49200 +49203-49206 +49204-49206 +49205-49206 +49207-49220 +49208-49220 +49209-49220 +49209-49216 +49209-49211 +49210-49211 +49212-49216 +49213-49216 +49214-49216 +49215-49216 +49217-49220 +49218-49220 +49219-49220 +49221-49242 +49221-49242 +49221-49224 +49223-49224 +49225-49242 +49226-49242 +49227-49242 +49228-49242 +49230-49242 +49230-49231 +49232-49238 +49232-49235 +49233-49235 +49233-49234 +49236-49237 +49239-49242 +49240-49242 +49243-49269 +49243-49269 +49244-49269 +49244-49254 +49244-49247 +49245-49247 +49246-49247 +49248-49249 +49251-49252 +49253-49254 +49255-49269 +49256-49269 +49256-49257 +49258-49259 +49261-49269 +49261-49265 +49261-49262 +49263-49265 +49264-49265 +49266-49268 +49267-49268 +49270-49273 +49270-49273 +49274-49284 +49274-49284 +49274-49282 +49274-49282 +49274-49275 +49276-49282 +49277-49282 +49278-49282 +49279-49282 +49280-49282 +49281-49282 +49285-49308 +49285-49308 +49286-49308 +49288-49291 +49289-49291 +49290-49291 +49292-49308 +49293-49308 +49293-49302 +49294-49295 +49296-49297 +49298-49299 +49300-49302 +49301-49302 +49303-49308 +49304-49308 +49306-49308 +49309-49321 +49309-49321 +49310-49321 +49310 +49311-49313 +49312-49313 +49314-49321 +49315-49321 +49316-49321 +49317-49321 +49320-49321 +49322-49329 +49322-49329 +49323-49329 +49325-49329 +49325-49326 +49326 +49327-49329 +49330-49333 +49330-49333 +49331-49333 +49332-49333 +49334-49337 +49334-49337 +49334-49335 +49338-49340 +49338-49340 +49339-49340 +49340 +49341-49355 +49341-49355 +49342-49355 +49344-49355 +49344-49351 +49344-49345 +49346-49351 +49347-49351 +49349-49351 +49350-49351 +49352-49355 +49354-49355 +49356-49371 +49356-49371 +49357-49371 +49358-49366 +49359-49366 +49360-49362 +49361-49362 +49363-49366 +49364-49366 +49365-49366 +49367-49371 +49368-49371 +49369-49371 +49370-49371 +49372-49377 +49372-49377 +49373-49377 +49373 +49375-49377 +49376-49377 +49378-49397 +49378-49397 +49379-49397 +49379-49380 +49381-49397 +49382-49397 +49384-49397 +49385-49397 +49387-49397 +49388-49397 +49391-49397 +49391-49392 +49393-49394 +49395-49397 +49396-49397 +49398-49429 +49398-49429 +49400-49401 +49402-49429 +49403-49429 +49403-49406 +49405-49406 +49407-49429 +49407-49408 +49410-49429 +49410-49413 +49414-49429 +49414-49417 +49415-49417 +49415-49416 +49418-49429 +49418-49422 +49424-49429 +49425-49429 +49426-49429 +49427-49429 +49428-49429 +49430-49441 +49430-49441 +49431-49432 +49434-49441 +49435-49441 +49436-49441 +49437-49441 +49438-49439 +49440-49441 +49442-49496 +49442-49496 +49442-49449 +49442-49443 +49445-49449 +49445-49446 +49448-49449 +49450-49496 +49451-49496 +49452-49496 +49452-49480 +49452-49462 +49452 +49453-49462 +49453-49462 +49453-49456 +49454-49456 +49455-49456 +49457-49462 +49458-49462 +49459-49462 +49460-49462 +49461-49462 +49463-49480 +49465-49480 +49465-49468 +49465-49466 +49469-49470 +49472-49480 +49473-49480 +49473-49476 +49474-49475 +49478-49480 +49481-49496 +49481-49484 +49485-49496 +49486-49496 +49486-49489 +49487-49489 +49488-49489 +49490-49496 +49490-49491 +49494-49496 +49494-49495 +49497-49513 +49497-49513 +49498-49513 +49500-49513 +49501-49513 +49502-49513 +49502-49509 +49503-49509 +49503-49504 +49506-49507 +49508-49509 +49510-49513 +49511-49513 +49512-49513 +49514-49545 +49514-49545 +49514-49517 +49518-49545 +49519-49545 +49519-49524 +49519-49524 +49520-49524 +49522-49524 +49523-49524 +49528-49545 +49528-49538 +49529-49538 +49529-49530 +49532-49538 +49532-49533 +49534-49536 +49535-49536 +49537-49538 +49539-49545 +49541-49545 +49542-49545 +49543-49545 +49544-49545 +49546-49556 +49546-49556 +49546-49547 +49548-49556 +49549-49556 +49550-49556 +49551-49556 +49553-49556 +49554-49556 +49555-49556 +49557-49579 +49557-49579 +49557-49568 +49557-49558 +49561-49568 +49561-49562 +49563-49568 +49564-49568 +49564-49567 +49565-49567 +49566-49567 +49569-49579 +49570-49579 +49570-49573 +49571-49573 +49571-49572 +49575-49579 +49575 +49576-49579 +49576-49579 +49577-49579 +49578-49579 +49580-49590 +49580-49590 +49581-49590 +49581-49586 +49582-49584 +49583-49584 +49585-49586 +49587-49590 +49588-49590 +49589-49590 +49591-49602 +49591-49602 +49592-49602 +49592-49593 +49594-49598 +49594 +49595-49598 +49596-49598 +49597-49598 +49601-49602 +49603-49613 +49603-49613 +49604-49613 +49607-49613 +49607-49611 +49607-49611 +49608-49611 +49610 +49611 +49614-49618 +49614-49618 +49616-49618 +49616 +49617-49618 +49618 +49619-49631 +49619-49631 +49620-49631 +49620-49624 +49620 +49621-49624 +49622-49624 +49623-49624 +49625-49631 +49626-49631 +49626-49627 +49629-49631 +49629-49630 +49632-49635 +49632-49635 +49634-49635 +49636-49652 +49636-49652 +49637-49641 +49638-49641 +49639-49641 +49640-49641 +49642-49652 +49643-49652 +49644-49652 +49644-49645 +49646-49652 +49647-49652 +49647-49649 +49648-49649 +49650-49652 +49651-49652 +49653-49670 +49653-49670 +49653-49660 +49656-49660 +49656-49659 +49657-49659 +49658-49659 +49661-49670 +49662-49670 +49664-49670 +49665-49670 +49666-49670 +49667-49670 +49668-49669 +49671-49675 +49671-49675 +49673-49675 +49674-49675 +49676-49686 +49676-49686 +49676-49677 +49678-49679 +49681-49686 +49683-49686 +49684-49686 +49685-49686 +49687-49692 +49687-49692 +49689-49692 +49690-49692 +49693-49709 +49693-49709 +49693-49699 +49693-49694 +49696-49699 +49697-49699 +49698-49699 +49700-49709 +49701-49709 +49701-49702 +49703-49709 +49704-49709 +49706-49707 +49708-49709 +49710-49721 +49710-49721 +49711-49721 +49712-49713 +49714-49721 +49714-49715 +49716-49721 +49717-49721 +49718-49721 +49719-49721 +49720-49721 +49722-49745 +49722-49745 +49722-49725 +49724-49725 +49726-49745 +49727-49745 +49729-49745 +49729-49738 +49729-49737 +49729-49734 +49732-49734 +49733-49734 +49735-49737 +49736-49737 +49736-49737 +49739-49745 +49739-49742 +49740-49742 +49741-49742 +49743-49745 +49744-49745 +49746-49755 +49746-49755 +49747-49755 +49750-49755 +49750-49752 +49750-49751 +49754-49755 +49756-49762 +49756-49762 +49758-49759 +49760-49762 +49760 +49761-49762 +49762 +49763-49781 +49763-49781 +49763-49769 +49765-49769 +49765-49766 +49768-49769 +49770-49781 +49771-49781 +49772-49773 +49774-49781 +49776-49781 +49777-49781 +49777-49778 +49782-49787 +49782-49787 +49785-49787 +49788-49803 +49788-49803 +49788-49789 +49790-49803 +49791-49803 +49793-49803 +49793-49797 +49794-49797 +49795-49797 +49798-49802 +49799-49801 +49800-49801 +49804-49818 +49804-49818 +49807-49818 +49807 +49808-49813 +49810-49813 +49811-49813 +49812-49813 +49814-49818 +49815-49817 +49816-49817 +49819-49833 +49819-49833 +49819-49820 +49821-49833 +49822-49833 +49824-49833 +49824-49832 +49825-49832 +49827-49832 +49828-49832 +49830-49832 +49831-49832 +49833 +49834-49836 +49834-49836 +49834-49835 +49837-49860 +49837-49860 +49838-49860 +49840-49860 +49841-49860 +49842-49860 +49844-49860 +49845-49860 +49845-49847 +49845-49846 +49848-49860 +49849-49860 +49849-49852 +49850-49852 +49851-49852 +49853-49855 +49854-49855 +49856-49860 +49857-49860 +49858-49860 +49859-49860 +49861-49878 +49861-49878 +49862-49878 +49862-49871 +49862-49865 +49863-49865 +49864-49865 +49868-49871 +49869-49871 +49870-49871 +49872-49878 +49873-49878 +49874-49877 +49875-49877 +49876-49877 +49879-49890 +49879-49890 +49880-49890 +49881-49887 +49882-49887 +49882-49883 +49884-49887 +49885-49887 +49886-49887 +49888-49890 +49889-49890 +49891-49903 +49891-49903 +49892-49903 +49892-49893 +49894-49903 +49895-49898 +49896-49898 +49897-49898 +49899-49900 +49901-49903 +49904-49918 +49904-49918 +49905-49918 +49907-49908 +49909-49918 +49909-49913 +49910-49912 +49911-49912 +49913 +49914-49918 +49916-49918 +49917-49918 +49919-49930 +49919-49930 +49920-49922 +49921-49922 +49923-49924 +49925-49930 +49925-49929 +49926-49929 +49927-49929 +49931-49948 +49931-49948 +49932-49948 +49932-49933 +49935-49948 +49935-49942 +49935-49937 +49935-49936 +49938-49942 +49939-49942 +49940-49942 +49941-49942 +49943-49948 +49944-49948 +49945-49948 +49946-49948 +49949-49956 +49949-49956 +49951-49952 +49953-49956 +49954-49955 +49957-49961 +49957-49961 +49958-49961 +49960-49961 +49962-49970 +49962-49970 +49963-49970 +49965-49970 +49965-49966 +49967-49970 +49968-49970 +49969-49970 +49971-49973 +49971-49973 +49972-49973 +49974-50022 +49974-50022 +49975-50022 +49975-49995 +49976-49995 +49976-49982 +49977-49978 +49979-49982 +49979-49980 +49981-49982 +49983-49995 +49984-49995 +49984-49987 +49986-49987 +49988-49995 +49989-49995 +49990-49995 +49990-49991 +49992-49995 +49993-49995 +49994-49995 +49996-50022 +49996-50000 +49997-49998 +49999-50000 +50001-50022 +50002-50022 +50004-50022 +50004-50015 +50004-50010 +50004-50005 +50007-50009 +50008-50009 +50011-50015 +50012-50015 +50012-50013 +50013 +50014-50015 +50016-50022 +50018-50020 +50019-50020 +50021-50022 +50023-50045 +50023-50045 +50023-50038 +50023-50033 +50023-50026 +50024-50026 +50025-50026 +50028-50029 +50030-50033 +50031-50033 +50032-50033 +50034-50038 +50035-50038 +50036-50038 +50037-50038 +50039-50045 +50040-50045 +50041-50042 +50043-50045 +50044-50045 +50046-50068 +50046-50068 +50046-50062 +50046-50047 +50049-50050 +50051-50062 +50052-50055 +50053-50055 +50054-50055 +50056-50058 +50057-50058 +50059-50062 +50060-50062 +50061-50062 +50063-50068 +50064-50068 +50066-50068 +50066-50067 +50069-50081 +50069-50081 +50070-50081 +50070-50075 +50072-50075 +50073-50075 +50074-50075 +50076-50081 +50077-50081 +50078-50079 +50080-50081 +50082-50141 +50082-50141 +50083-50141 +50083-50097 +50084-50086 +50085-50086 +50087-50097 +50087-50096 +50087-50093 +50088-50093 +50089-50093 +50090-50091 +50092-50093 +50094-50096 +50095-50096 +50098-50141 +50099-50141 +50099-50113 +50099-50107 +50099-50102 +50101-50102 +50105-50107 +50106-50107 +50108-50113 +50108-50113 +50108-50110 +50109-50110 +50111-50113 +50112-50113 +50114-50123 +50115-50123 +50115-50119 +50115-50118 +50115-50116 +50117-50118 +50120-50123 +50121-50123 +50121-50122 +50124-50141 +50125-50141 +50125-50128 +50126-50128 +50126-50127 +50130-50141 +50130-50132 +50133-50141 +50135-50139 +50136-50139 +50137-50139 +50138-50139 +50140-50141 +50142-50155 +50142-50155 +50142-50145 +50143-50145 +50144-50145 +50147-50155 +50147-50148 +50149-50155 +50149-50153 +50150-50153 +50151-50153 +50152-50153 +50156-50169 +50156-50169 +50157-50169 +50157-50159 +50158-50159 +50160-50169 +50161-50169 +50163-50169 +50163-50164 +50167-50169 +50168-50169 +50170-50184 +50170-50184 +50170-50171 +50172-50184 +50173-50184 +50175-50184 +50175-50178 +50176-50178 +50176-50177 +50179-50184 +50180-50184 +50180-50182 +50181-50182 +50185-50203 +50185-50203 +50186-50203 +50187-50188 +50189-50203 +50189-50196 +50189-50192 +50189-50191 +50190-50191 +50194-50196 +50194-50195 +50197-50203 +50198-50203 +50199-50201 +50200-50201 +50204-50212 +50204-50212 +50205-50212 +50207-50212 +50208-50212 +50209-50212 +50210-50212 +50211-50212 +50213-50235 +50213-50235 +50214-50235 +50214-50217 +50215-50217 +50216-50217 +50218-50235 +50218-50224 +50218-50221 +50219-50221 +50220-50221 +50223-50224 +50225-50235 +50226-50235 +50227-50235 +50227-50228 +50229-50235 +50230-50235 +50231-50235 +50232-50235 +50234-50235 +50236-50259 +50236-50259 +50237-50259 +50237-50247 +50238-50247 +50239-50241 +50240-50241 +50242-50244 +50243-50244 +50245-50247 +50246-50247 +50248-50259 +50250-50253 +50251-50253 +50252-50253 +50254-50259 +50255-50259 +50256-50259 +50257-50259 +50258-50259 +50260-50290 +50260-50290 +50261-50290 +50261-50271 +50261-50262 +50267-50271 +50268-50271 +50269-50271 +50272-50290 +50273-50290 +50274-50290 +50274-50282 +50274-50276 +50278-50282 +50280-50282 +50281-50282 +50283-50290 +50284-50290 +50286-50290 +50288-50290 +50289-50290 +50291-50302 +50291-50302 +50292-50302 +50292-50299 +50293-50299 +50293-50296 +50294-50296 +50295-50296 +50297-50299 +50298-50299 +50300-50302 +50303-50334 +50303-50334 +50303-50307 +50305-50306 +50308-50334 +50309-50334 +50311-50334 +50311 +50312-50317 +50313-50317 +50314-50317 +50314-50315 +50318-50334 +50319-50334 +50321-50327 +50321-50326 +50321-50323 +50322-50323 +50324-50326 +50328-50334 +50329-50334 +50331-50332 +50333-50334 +50335-50355 +50335-50355 +50335-50336 +50337-50355 +50338-50355 +50340-50355 +50341-50355 +50342-50355 +50344-50355 +50344-50348 +50345-50348 +50349-50355 +50351-50355 +50352-50355 +50353-50355 +50354-50355 +50356-50378 +50356-50378 +50357-50358 +50359-50360 +50361-50378 +50361-50366 +50364 +50365-50366 +50367-50378 +50368-50378 +50369-50378 +50369-50376 +50369-50374 +50370-50374 +50371-50374 +50372-50374 +50373-50374 +50377-50378 +50378 +50379-50400 +50379-50400 +50381-50400 +50382-50400 +50383-50400 +50385-50400 +50385-50392 +50386-50392 +50389-50392 +50390-50392 +50391-50392 +50393-50400 +50395-50400 +50396-50400 +50397-50400 +50398-50400 +50399-50400 +50401-50415 +50401-50415 +50401-50407 +50401-50405 +50402-50405 +50403-50405 +50404-50405 +50408-50415 +50409-50415 +50409-50413 +50410-50413 +50411-50413 +50412-50413 +50416-50424 +50416-50424 +50416-50417 +50418-50424 +50419-50424 +50421-50424 +50422-50424 +50425-50442 +50425-50442 +50425-50429 +50425-50426 +50427-50428 +50430-50442 +50431-50442 +50431-50434 +50431-50433 +50432-50433 +50435-50442 +50436-50442 +50438-50442 +50438-50439 +50440-50442 +50441-50442 +50443-50450 +50443-50450 +50445-50450 +50446-50450 +50447-50450 +50448-50450 +50449-50450 +50451-50459 +50451-50459 +50451-50452 +50453-50459 +50454-50459 +50456-50459 +50458-50459 +50460-50474 +50460-50474 +50460-50461 +50462-50474 +50463-50474 +50465-50474 +50465-50470 +50467-50470 +50468-50470 +50469-50470 +50471-50474 +50472-50474 +50475-50492 +50475-50492 +50476-50492 +50477-50492 +50479-50492 +50480-50492 +50480-50486 +50480-50482 +50480-50481 +50483-50486 +50484-50486 +50484-50485 +50487-50492 +50488-50492 +50488-50490 +50489-50490 +50493-50507 +50493-50507 +50493-50500 +50494-50500 +50494-50497 +50494-50495 +50498-50500 +50499-50500 +50501-50507 +50502-50506 +50503-50506 +50505-50506 +50508-50524 +50508-50524 +50509-50524 +50511-50513 +50512-50513 +50514-50524 +50515-50524 +50516-50524 +50516-50520 +50517-50520 +50517-50519 +50518-50519 +50521-50524 +50522-50524 +50523-50524 +50525-50549 +50525-50549 +50526-50549 +50526-50533 +50527-50533 +50529-50530 +50531-50533 +50532-50533 +50534-50549 +50534-50540 +50536-50540 +50537-50540 +50538-50540 +50539-50540 +50541-50549 +50542-50549 +50542-50546 +50543-50546 +50544-50546 +50545-50546 +50548-50549 +50550-50574 +50550-50574 +50551-50574 +50551-50556 +50553-50554 +50555-50556 +50557-50574 +50558-50574 +50558-50562 +50558-50561 +50559-50561 +50560-50561 +50563-50574 +50564-50574 +50564-50570 +50564-50568 +50565-50568 +50566-50568 +50567-50568 +50571-50574 +50572-50574 +50573-50574 +50575-50595 +50575-50595 +50576-50595 +50577-50588 +50578-50579 +50580-50581 +50582-50584 +50583-50584 +50585-50588 +50586-50588 +50587-50588 +50590-50595 +50591-50595 +50592-50593 +50594-50595 +50596-50601 +50596-50601 +50596-50599 +50597-50599 +50598-50599 +50602-50617 +50602-50617 +50602-50604 +50603-50604 +50607-50617 +50608-50617 +50610-50617 +50611-50617 +50612-50617 +50613-50617 +50614-50617 +50615-50617 +50616-50617 +50618-50645 +50618-50645 +50619-50645 +50621-50622 +50623-50645 +50624-50645 +50624-50629 +50624-50625 +50627-50629 +50628-50629 +50630-50645 +50631-50645 +50631-50639 +50631-50636 +50632-50633 +50635-50636 +50637-50639 +50638-50639 +50638-50639 +50640-50645 +50641-50645 +50643-50645 +50644-50645 +50646-50665 +50646-50665 +50647-50665 +50647-50659 +50647-50653 +50647-50650 +50648-50650 +50649-50650 +50652-50653 +50654-50659 +50655-50659 +50657-50659 +50658-50659 +50660-50665 +50661-50665 +50663-50665 +50664-50665 +50666-50684 +50666-50684 +50667-50684 +50667-50674 +50667-50670 +50668-50670 +50669-50670 +50672-50674 +50673-50674 +50675-50684 +50676-50684 +50677-50679 +50678-50679 +50680-50684 +50681-50684 +50681-50682 +50683-50684 +50685-50704 +50685-50704 +50685-50697 +50685-50686 +50688-50693 +50688-50689 +50690-50693 +50691-50693 +50692-50693 +50694-50697 +50695-50697 +50696-50697 +50698-50704 +50699-50704 +50699-50702 +50701-50702 +50703-50704 +50704 +50705-50723 +50705-50723 +50706-50723 +50706-50719 +50706-50707 +50708-50709 +50710-50711 +50712-50714 +50713-50714 +50715-50719 +50716-50719 +50720-50723 +50721-50723 +50721 +50722-50723 +50723 +50724-50731 +50724-50731 +50725-50731 +50726-50727 +50728-50730 +50729-50730 +50732-50742 +50732-50742 +50733-50742 +50735-50738 +50736-50738 +50737-50738 +50739-50740 +50741-50742 +50743-50769 +50743-50769 +50744-50769 +50744-50747 +50745-50747 +50746-50747 +50748-50769 +50749-50769 +50751-50769 +50751 +50752-50761 +50752-50758 +50754-50755 +50756-50758 +50757-50758 +50759-50761 +50763-50764 +50765-50769 +50766-50769 +50768-50769 +50770-50786 +50770-50786 +50770-50771 +50772-50786 +50773-50786 +50774-50786 +50774-50778 +50777-50778 +50779-50786 +50780-50786 +50781-50782 +50784-50786 +50785-50786 +50787-50803 +50787-50803 +50787-50788 +50791-50803 +50792-50803 +50793-50803 +50793-50797 +50796-50797 +50798-50803 +50799-50803 +50800-50803 +50800-50801 +50802-50803 +50804-50809 +50804-50809 +50804-50807 +50805-50807 +50806-50807 +50810-50826 +50810-50826 +50811-50826 +50811-50819 +50811-50814 +50812-50814 +50813-50814 +50815-50819 +50816-50819 +50816 +50817-50819 +50818-50819 +50822-50826 +50823-50826 +50824-50826 +50825-50826 +50827-50833 +50827-50833 +50828-50833 +50828-50832 +50829-50832 +50830-50832 +50831-50832 +50834-50839 +50834-50839 +50835-50839 +50835-50836 +50837-50839 +50838-50839 +50840-50845 +50840-50845 +50840-50842 +50841-50842 +50843-50844 +50846-50859 +50846-50859 +50846-50854 +50846-50850 +50847-50850 +50848-50850 +50849-50850 +50851-50853 +50852-50853 +50855-50859 +50856-50859 +50856-50858 +50857-50858 +50860-50867 +50860-50867 +50860-50864 +50861-50864 +50861-50863 +50862-50863 +50865-50866 +50868-50879 +50868-50879 +50868-50873 +50868-50871 +50869-50871 +50870-50871 +50874-50879 +50875-50879 +50875-50877 +50876-50877 +50880-50890 +50880-50890 +50880-50884 +50881-50884 +50882-50884 +50883-50884 +50886-50890 +50887-50890 +50887-50888 +50891-50907 +50891-50907 +50892-50907 +50892-50900 +50892-50895 +50894-50895 +50896-50899 +50897-50899 +50898-50899 +50902-50907 +50903-50904 +50906-50907 +50908-50919 +50908-50919 +50908-50912 +50908-50909 +50911-50912 +50913-50919 +50914-50919 +50916-50919 +50917-50919 +50918-50919 +50920-50927 +50920-50927 +50920-50924 +50921-50924 +50922-50924 +50923-50924 +50926-50927 +50928-50943 +50928-50943 +50929-50943 +50929-50935 +50929-50932 +50930-50932 +50931-50932 +50936-50943 +50937-50943 +50937-50940 +50938-50940 +50939-50940 +50942-50943 +50944-50979 +50944-50979 +50945-50979 +50945-50970 +50946-50970 +50946-50948 +50947-50948 +50950-50970 +50951-50952 +50953-50970 +50954-50970 +50954-50959 +50955-50956 +50957-50959 +50958-50959 +50960-50961 +50961 +50962-50970 +50963-50970 +50963-50966 +50963-50964 +50967-50970 +50968-50970 +50968-50970 +50969-50970 +50971-50979 +50971-50973 +50972-50973 +50974-50979 +50975-50979 +50977-50979 +50978-50979 +50980-50986 +50980-50986 +50981-50986 +50982-50986 +50984-50986 +50985-50986 +50987-51004 +50987-51004 +50988-51004 +50989-51004 +50990-51004 +50990-50994 +50990-50992 +50991-50992 +50993-50994 +50995-51004 +50996-51004 +50997-51004 +50998-51004 +51001-51004 +51002-51004 +51003-51004 +51005-51010 +51005-51010 +51006-51010 +51008-51010 +51009-51010 +51011-51022 +51011-51022 +51012-51022 +51012-51013 +51014-51017 +51015-51017 +51016-51017 +51020-51022 +51021-51022 +51023-51026 +51023-51026 +51025-51026 +51027-51033 +51027-51033 +51028-51031 +51029-51031 +51030-51031 +51032-51033 +51034-51040 +51034-51040 +51036-51037 +51038-51040 +51040 +51041-51051 +51041-51051 +51042-51051 +51042-51044 +51043-51044 +51046-51048 +51047-51048 +51049-51051 +51050-51051 +51052-51074 +51052-51074 +51053-51074 +51053-51069 +51055-51058 +51055-51056 +51057-51058 +51059-51069 +51060-51062 +51061-51062 +51063-51067 +51064-51067 +51065-51067 +51066-51067 +51068 +51070-51074 +51071-51074 +51075-51104 +51075-51104 +51075-51076 +51077-51104 +51078-51104 +51080-51104 +51080-51094 +51081-51094 +51082-51094 +51082-51085 +51083-51085 +51084-51085 +51086-51094 +51087-51094 +51089-51094 +51090-51094 +51092-51094 +51094 +51095-51104 +51095-51098 +51096-51098 +51099-51104 +51100-51104 +51101-51104 +51103-51104 +51104 +51105-51122 +51105-51122 +51107-51122 +51107 +51108-51115 +51108-51110 +51111-51115 +51112-51115 +51112-51113 +51116-51122 +51117-51122 +51119-51122 +51119-51120 +51121-51122 +51122 +51123-51148 +51123-51148 +51124-51148 +51127-51148 +51127-51130 +51127-51129 +51128-51129 +51131-51148 +51131-51135 +51134-51135 +51136-51148 +51137-51148 +51137-51140 +51138-51139 +51141-51148 +51142-51148 +51142-51148 +51142-51144 +51143-51144 +51145-51148 +51146-51148 +51147-51148 +51149-51194 +51149-51194 +51149-51150 +51151-51194 +51152-51194 +51154-51194 +51154-51162 +51154-51160 +51155-51160 +51156-51160 +51157-51160 +51158-51160 +51158-51159 +51163-51194 +51164-51194 +51164-51179 +51164-51173 +51165-51173 +51167-51173 +51168-51173 +51169-51173 +51170-51173 +51174-51175 +51177-51179 +51178-51179 +51180-51194 +51181-51194 +51181-51185 +51182-51185 +51183-51185 +51187-51188 +51189-51194 +51190-51194 +51191-51194 +51192-51194 +51193-51194 +51195-51212 +51195-51212 +51196-51197 +51198-51199 +51200-51212 +51200 +51203-51205 +51204-51205 +51206-51212 +51207-51212 +51207-51208 +51209-51212 +51210-51212 +51212 +51213-51222 +51213-51222 +51215-51222 +51215 +51216-51222 +51216-51219 +51217-51219 +51218-51219 +51220-51222 +51221-51222 +51223-51230 +51223-51230 +51223-51225 +51224-51225 +51226-51230 +51227-51230 +51228-51230 +51231-51255 +51231-51255 +51233-51234 +51235-51255 +51235-51252 +51235-51240 +51237-51240 +51238-51240 +51241-51252 +51242-51252 +51242-51244 +51242-51243 +51245-51252 +51246-51252 +51246-51248 +51251-51252 +51253-51255 +51256-51285 +51256-51285 +51258-51259 +51260-51285 +51260 +51261-51265 +51262-51265 +51263-51265 +51266-51285 +51266-51273 +51266-51268 +51267-51268 +51269-51272 +51270-51272 +51270-51271 +51274-51285 +51275-51285 +51277-51285 +51278-51285 +51278-51279 +51281-51285 +51282-51285 +51283-51285 +51283-51284 +51286-51307 +51286-51307 +51288-51289 +51290-51307 +51292 +51293-51307 +51294-51307 +51296-51307 +51297-51307 +51297-51304 +51297-51301 +51298-51301 +51299-51301 +51299-51300 +51302-51304 +51303-51304 +51306-51307 +51308-51312 +51308-51312 +51310-51312 +51313-51323 +51313-51323 +51315-51316 +51317-51323 +51318-51323 +51318-51319 +51320-51322 +51321-51322 +51324-51349 +51324-51349 +51325-51349 +51325-51340 +51325-51326 +51327-51329 +51328-51329 +51330-51340 +51331-51340 +51331-51333 +51332-51333 +51335-51336 +51337-51340 +51338-51340 +51339-51340 +51341-51349 +51342-51349 +51343-51344 +51347-51349 +51348-51349 +51350-51361 +51350-51361 +51350-51352 +51351-51352 +51353-51361 +51354-51361 +51354-51360 +51354-51355 +51355 +51356-51359 +51357-51359 +51358-51359 +51362-51378 +51362-51378 +51364-51365 +51366-51378 +51366-51372 +51367-51372 +51368-51372 +51368-51371 +51369-51371 +51370-51371 +51373-51378 +51373-51375 +51374-51375 +51376-51378 +51379-51387 +51379-51387 +51381-51382 +51383-51387 +51383-51386 +51384-51386 +51385-51386 +51388-51400 +51388-51400 +51389-51400 +51389-51394 +51389-51390 +51392-51394 +51393-51394 +51395-51400 +51396-51400 +51396 +51397-51400 +51398-51400 +51398-51399 +51401-51410 +51401-51410 +51402-51410 +51404-51410 +51404-51405 +51406-51410 +51407-51410 +51409-51410 +51411-51440 +51411-51440 +51412-51440 +51412-51422 +51412-51417 +51413-51415 +51414-51415 +51416-51417 +51418-51422 +51419-51422 +51420-51422 +51421-51422 +51423-51440 +51424-51440 +51425-51426 +51427-51440 +51427-51435 +51427 +51428-51435 +51429-51435 +51430-51435 +51433-51435 +51434-51435 +51436-51440 +51437-51440 +51439-51440 +51441-51448 +51441-51448 +51441-51444 +51442-51444 +51443-51444 +51445-51448 +51446-51448 +51447-51448 +51449-51458 +51449-51458 +51449-51451 +51450-51451 +51454-51455 +51456-51458 +51457-51458 +51457 +51459-51470 +51459-51470 +51460-51470 +51463-51470 +51463-51466 +51466 +51471-51481 +51471-51481 +51472-51481 +51473-51474 +51475-51476 +51477-51481 +51478-51481 +51481 +51482-51500 +51482-51500 +51484-51485 +51486-51500 +51486-51487 +51489-51500 +51490-51500 +51490-51495 +51491-51495 +51492-51495 +51493-51495 +51494-51495 +51496-51500 +51497-51500 +51498-51500 +51499-51500 +51501-51511 +51501-51511 +51502-51511 +51504-51511 +51505-51511 +51505-51507 +51508-51511 +51509-51511 +51509-51510 +51512-51527 +51512-51527 +51515-51527 +51515-51518 +51516-51518 +51517-51518 +51519-51527 +51520-51527 +51521-51522 +51523-51527 +51524-51527 +51526-51527 +51528-51546 +51528-51546 +51528-51532 +51529-51530 +51530 +51533-51538 +51534-51538 +51536-51538 +51537-51538 +51539-51546 +51540-51546 +51542-51546 +51542-51543 +51543 +51544-51546 +51545-51546 +51546 +51547-51562 +51547-51562 +51548-51562 +51548-51549 +51550-51551 +51554-51562 +51555-51562 +51555-51558 +51557-51558 +51558 +51559-51562 +51560-51562 +51561-51562 +51562 +51563-51570 +51563-51570 +51566-51570 +51567-51570 +51571-51579 +51571-51579 +51571-51572 +51573-51579 +51574-51579 +51575-51578 +51576-51578 +51577-51578 +51580-51602 +51580-51602 +51581-51602 +51581-51584 +51582-51584 +51582-51583 +51585-51587 +51586-51587 +51589-51590 +51591-51602 +51592-51602 +51593-51602 +51594-51602 +51594-51595 +51596-51602 +51597-51602 +51598-51602 +51600-51602 +51601-51602 +51603-51614 +51603-51614 +51604-51614 +51604-51609 +51605-51609 +51606-51607 +51608-51609 +51610-51614 +51611-51614 +51613-51614 +51615-51619 +51615-51619 +51616-51619 +51618-51619 +51620-51651 +51620-51651 +51621-51651 +51621-51627 +51621-51622 +51624-51627 +51625-51627 +51626-51627 +51628-51651 +51629-51651 +51629-51630 +51632-51651 +51633-51651 +51634-51637 +51635-51637 +51636-51637 +51639-51651 +51640-51651 +51640-51641 +51642-51651 +51643-51651 +51644-51651 +51645-51651 +51648-51651 +51649-51651 +51650-51651 +51652-51661 +51652-51661 +51653-51661 +51653-51656 +51654-51656 +51655-51656 +51659-51661 +51660-51661 +51662-51674 +51662-51674 +51663-51674 +51663-51664 +51666-51674 +51667-51674 +51668-51671 +51669-51671 +51670-51671 +51675-51700 +51675-51700 +51676-51700 +51676-51693 +51676-51680 +51677-51680 +51678-51680 +51679-51680 +51683-51684 +51685-51693 +51686-51693 +51687-51693 +51689-51690 +51691-51693 +51692-51693 +51694-51700 +51695-51700 +51695-51696 +51698-51700 +51699-51700 +51701-51713 +51701-51713 +51702-51713 +51704-51713 +51705-51713 +51706-51713 +51706-51708 +51707-51708 +51709-51713 +51711-51712 +51714-51723 +51714-51723 +51715-51723 +51716-51723 +51717-51723 +51718-51723 +51718-51720 +51719-51720 +51722-51723 +51724-51749 +51724-51749 +51724-51737 +51725-51734 +51726-51734 +51727-51734 +51729-51734 +51729-51731 +51730-51731 +51732-51734 +51733-51734 +51736-51737 +51738-51749 +51739-51749 +51739-51746 +51740-51746 +51741-51746 +51741 +51742-51746 +51743-51746 +51744-51746 +51745-51746 +51747-51749 +51748-51749 +51749 +51750-51764 +51750-51764 +51751-51764 +51752-51753 +51754-51755 +51756-51764 +51756-51761 +51757-51761 +51758-51760 +51759-51760 +51762-51764 +51762-51763 +51765-51776 +51765-51776 +51766-51767 +51768-51769 +51770-51776 +51770 +51772-51776 +51773-51776 +51774-51776 +51775-51776 +51777-51785 +51777-51785 +51779-51780 +51781-51785 +51781 +51782-51785 +51782-51784 +51783-51784 +51786-51797 +51786-51797 +51786-51795 +51787-51788 +51789-51795 +51790-51795 +51791-51795 +51794-51795 +51796-51797 +51797 +51798-51811 +51798-51811 +51799-51811 +51799-51801 +51802-51811 +51802-51803 +51806-51811 +51807-51811 +51808-51811 +51808-51810 +51809-51810 +51812-51821 +51812-51821 +51813-51821 +51814-51815 +51816-51817 +51818-51821 +51818-51819 +51822-51832 +51822-51832 +51823-51832 +51825-51832 +51826-51832 +51827-51828 +51831-51832 +51833-51858 +51833-51858 +51834-51858 +51834-51850 +51835-51836 +51837-51850 +51838-51850 +51838-51850 +51839-51850 +51840-51850 +51841-51850 +51841-51846 +51841-51842 +51845-51846 +51847-51849 +51848-51849 +51851-51858 +51852-51858 +51853-51858 +51854-51858 +51855-51858 +51855-51857 +51856-51857 +51859-51873 +51859-51873 +51860-51873 +51861-51863 +51862-51863 +51865-51866 +51867-51873 +51868-51873 +51868-51870 +51869-51870 +51871-51873 +51872-51873 +51874-51884 +51874-51884 +51874-51879 +51874-51875 +51877-51879 +51878-51879 +51880-51884 +51881-51884 +51883-51884 +51885-51900 +51885-51900 +51886-51900 +51887-51889 +51888-51889 +51890-51892 +51891-51892 +51893-51900 +51893-51897 +51894-51897 +51895-51897 +51898-51900 +51898-51899 +51901-51941 +51901-51941 +51901-51914 +51901-51909 +51901-51902 +51904-51909 +51905-51909 +51905-51906 +51906 +51907-51909 +51910-51914 +51911-51914 +51912-51914 +51912-51913 +51915-51941 +51916-51941 +51916-51926 +51916-51922 +51917-51918 +51920-51922 +51921-51922 +51923-51926 +51924-51926 +51925-51926 +51927-51941 +51928-51941 +51928-51937 +51928-51929 +51930-51935 +51931-51935 +51932-51935 +51933-51935 +51934-51935 +51938-51941 +51942-51955 +51942-51955 +51943-51955 +51944-51945 +51947-51955 +51947-51950 +51947-51949 +51948-51949 +51952-51955 +51953-51955 +51954-51955 +51956-51972 +51956-51972 +51956-51957 +51958-51967 +51958-51960 +51958-51959 +51961-51967 +51962-51967 +51963-51967 +51964-51967 +51964-51965 +51970-51972 +51971-51972 +51973-51999 +51973-51999 +51975-51976 +51976 +51977-51999 +51977 +51978-51990 +51981-51990 +51982-51990 +51982-51985 +51983-51985 +51984-51985 +51988-51990 +51989-51990 +51991-51999 +51992-51999 +51992-51995 +51993-51995 +51997-51998 +52000-52010 +52000-52010 +52002-52003 +52004-52010 +52004 +52005-52010 +52005-52008 +52006-52008 +52007-52008 +52009-52010 +52010 +52011-52023 +52011-52023 +52012-52023 +52012-52016 +52015-52016 +52017-52023 +52018-52023 +52018-52021 +52019-52021 +52020-52021 +52022-52023 +52023 +52024-52030 +52024-52030 +52025-52030 +52027-52030 +52028-52030 +52029-52030 +52031-52045 +52031-52045 +52032-52045 +52033-52034 +52035-52036 +52036 +52037-52045 +52037-52038 +52039-52045 +52040-52045 +52043-52045 +52044-52045 +52046-52062 +52046-52062 +52047-52062 +52047-52049 +52050-52053 +52050-52053 +52051-52053 +52057-52062 +52057-52060 +52058-52060 +52059-52060 +52061-52062 +52062 +52063-52074 +52063-52074 +52065-52074 +52067-52074 +52067-52068 +52069-52074 +52070-52074 +52072-52074 +52072 +52073-52074 +52074 +52075-52090 +52075-52090 +52076-52090 +52076-52077 +52077 +52080-52081 +52082-52090 +52083-52090 +52083-52085 +52083-52084 +52086-52090 +52088-52090 +52089-52090 +52091-52113 +52091-52113 +52091-52099 +52091-52092 +52095-52096 +52097-52099 +52098-52099 +52100-52113 +52101-52113 +52103-52113 +52106-52113 +52108-52113 +52109-52113 +52110-52111 +52114-52127 +52114-52127 +52114-52116 +52115-52116 +52117-52127 +52118-52127 +52119-52120 +52121-52127 +52122-52127 +52124-52127 +52125-52127 +52128-52140 +52128-52140 +52129-52140 +52129-52130 +52132-52133 +52134-52135 +52136-52140 +52137-52140 +52139-52140 +52141-52152 +52141-52152 +52142-52152 +52145-52152 +52145-52150 +52145-52147 +52146-52147 +52148-52149 +52151-52152 +52153-52179 +52153-52179 +52154-52179 +52154-52161 +52154-52155 +52158-52159 +52160-52161 +52162-52179 +52163-52179 +52164-52167 +52166-52167 +52169-52179 +52169-52171 +52170-52171 +52173-52174 +52175-52179 +52178-52179 +52180-52205 +52180-52205 +52181-52205 +52181-52183 +52182-52183 +52184-52205 +52185-52205 +52187-52205 +52188-52205 +52189-52205 +52191-52205 +52191-52198 +52193-52194 +52195-52198 +52196-52197 +52199-52205 +52200-52205 +52202-52205 +52203-52204 +52206-52216 +52206-52216 +52207-52216 +52207-52210 +52208-52210 +52212-52214 +52213-52214 +52217-52238 +52217-52238 +52218-52238 +52218-52229 +52218-52222 +52218-52219 +52221-52222 +52223-52229 +52224-52229 +52226-52229 +52227-52229 +52230-52238 +52231-52238 +52231-52233 +52231-52232 +52236-52238 +52237-52238 +52239-52254 +52239-52254 +52240-52254 +52240-52247 +52241-52247 +52241-52245 +52241-52242 +52244-52245 +52246-52247 +52247 +52248-52254 +52249-52251 +52250-52251 +52252-52253 +52255-52276 +52255-52276 +52256-52276 +52257-52260 +52257-52258 +52262-52267 +52262-52264 +52262-52263 +52266-52267 +52268-52276 +52269-52276 +52271-52272 +52273-52276 +52274-52276 +52275-52276 +52277-52288 +52277-52288 +52277-52281 +52278-52281 +52280-52281 +52284-52288 +52284-52285 +52286-52288 +52287-52288 +52289-52319 +52289-52319 +52290-52319 +52291-52319 +52293-52319 +52294-52319 +52294-52306 +52294-52303 +52295-52303 +52295-52298 +52295-52297 +52296-52297 +52299-52303 +52300-52303 +52301-52303 +52302-52303 +52305-52306 +52307-52319 +52308-52319 +52308-52311 +52308-52309 +52312-52319 +52313-52319 +52314-52316 +52315-52316 +52317-52319 +52318-52319 +52320-52343 +52320-52343 +52321-52343 +52322-52343 +52324-52343 +52325-52343 +52325-52329 +52325-52326 +52327-52329 +52328-52329 +52330-52343 +52331-52343 +52331-52339 +52331-52332 +52334-52339 +52335-52339 +52336-52339 +52337-52339 +52338-52339 +52340-52343 +52341-52343 +52341-52342 +52342 +52344-52360 +52344-52360 +52345-52360 +52345-52351 +52346-52351 +52346-52347 +52350-52351 +52353-52355 +52354-52355 +52357-52360 +52359-52360 +52361-52370 +52361-52370 +52362-52370 +52365-52366 +52367-52370 +52368-52370 +52368-52369 +52371-52403 +52371-52403 +52371-52373 +52374-52403 +52375-52403 +52376-52389 +52377-52389 +52377-52387 +52377-52378 +52379-52383 +52380-52383 +52381-52383 +52382-52383 +52385-52387 +52386-52387 +52388-52389 +52389 +52390-52403 +52390-52396 +52390-52393 +52391-52393 +52391-52392 +52394-52396 +52395-52396 +52397-52403 +52397-52400 +52398-52400 +52398-52399 +52401-52403 +52402-52403 +52404-52433 +52404-52433 +52407-52410 +52408-52409 +52411-52433 +52411-52413 +52411-52412 +52412 +52414-52433 +52415-52433 +52415-52418 +52416-52418 +52417-52418 +52421-52433 +52422-52433 +52423-52427 +52424-52427 +52425-52427 +52426-52427 +52429-52433 +52429-52433 +52430-52433 +52431-52433 +52432-52433 +52434-52444 +52434-52444 +52434-52438 +52435-52438 +52437-52438 +52439-52444 +52439-52441 +52440-52441 +52445-52461 +52445-52461 +52445-52450 +52447-52450 +52448-52450 +52449-52450 +52451-52461 +52452-52461 +52453-52461 +52454-52461 +52456-52461 +52457-52461 +52458-52461 +52460-52461 +52462-52469 +52462-52469 +52462-52465 +52464-52465 +52466-52469 +52467-52469 +52468-52469 +52470-52483 +52470-52483 +52471-52483 +52471-52477 +52473-52474 +52475-52476 +52478-52483 +52479-52483 +52481-52483 +52482-52483 +52484-52501 +52484-52501 +52484-52491 +52486-52491 +52486-52487 +52488-52491 +52489-52491 +52489 +52490-52491 +52491 +52492-52501 +52493-52501 +52495-52501 +52496-52497 +52498-52501 +52499-52501 +52500-52501 +52502-52533 +52502-52533 +52503-52533 +52505-52509 +52505-52506 +52507-52509 +52508-52509 +52510-52533 +52511-52533 +52511-52528 +52511-52525 +52511-52520 +52512-52520 +52513-52520 +52513-52517 +52516-52517 +52519-52520 +52521-52525 +52521-52523 +52522-52523 +52524-52525 +52527-52528 +52530-52533 +52530-52531 +52534-52542 +52534-52542 +52535-52542 +52535-52538 +52535-52538 +52536-52538 +52536-52537 +52541-52542 +52543-52568 +52543-52568 +52543-52551 +52543-52547 +52544-52547 +52544-52545 +52548-52551 +52549-52551 +52549-52550 +52552-52568 +52553-52568 +52555-52560 +52555-52557 +52556-52557 +52558-52559 +52561-52568 +52562-52568 +52562-52564 +52569-52579 +52569-52579 +52570-52571 +52572-52579 +52573-52579 +52575-52579 +52575-52576 +52577-52578 +52580-52586 +52580-52586 +52581-52586 +52583-52586 +52584-52586 +52585-52586 +52587-52595 +52587-52595 +52588-52595 +52590-52592 +52591-52592 +52593-52595 +52594-52595 +52596-52612 +52596-52612 +52596-52600 +52597-52598 +52601-52612 +52602-52612 +52604-52612 +52605-52612 +52605-52608 +52606-52608 +52607-52608 +52611-52612 +52613-52624 +52613-52624 +52613-52620 +52615-52620 +52616-52620 +52617-52620 +52618-52620 +52619-52620 +52621-52624 +52622-52624 +52625-52634 +52625-52634 +52625-52632 +52626-52632 +52628-52632 +52629-52632 +52630-52632 +52631-52632 +52633-52634 +52635-52652 +52635-52652 +52635-52642 +52638 +52639-52642 +52640-52641 +52643-52652 +52644-52652 +52644-52650 +52644-52645 +52646-52650 +52647-52650 +52648-52650 +52649-52650 +52653-52661 +52653-52661 +52655-52661 +52656-52661 +52659-52661 +52660-52661 +52662-52670 +52662-52670 +52663-52665 +52664-52665 +52666-52670 +52667-52670 +52667-52668 +52671-52682 +52671-52682 +52672-52682 +52672-52677 +52672-52674 +52673-52674 +52675-52677 +52676-52677 +52678-52682 +52679-52682 +52679-52680 +52683-52694 +52683-52694 +52684-52694 +52684-52689 +52685-52689 +52685-52687 +52686-52687 +52690-52694 +52691-52693 +52692-52693 +52695-52706 +52695-52706 +52695-52696 +52698-52699 +52700-52706 +52701-52706 +52702-52706 +52703-52706 +52703-52704 +52705-52706 +52707-52720 +52707-52720 +52708-52720 +52708-52711 +52710-52711 +52712-52720 +52713-52720 +52714-52720 +52715-52720 +52716-52720 +52718-52720 +52719-52720 +52720 +52721-52733 +52721-52733 +52722-52733 +52722-52726 +52723-52725 +52724-52725 +52727-52733 +52728-52733 +52730-52733 +52731-52733 +52732-52733 +52734-52742 +52734-52742 +52735-52742 +52737-52742 +52737-52738 +52739-52742 +52740-52742 +52741-52742 +52743-52765 +52743-52765 +52744-52765 +52744-52745 +52746-52756 +52746-52748 +52747-52748 +52749-52756 +52750-52756 +52751-52756 +52752-52756 +52752-52753 +52755-52756 +52758-52759 +52760-52765 +52760-52762 +52763-52765 +52764-52765 +52766-52776 +52766-52776 +52767-52776 +52769-52770 +52771-52776 +52772-52776 +52774-52776 +52774-52775 +52777-52791 +52777-52791 +52779-52780 +52781-52791 +52781-52786 +52781-52783 +52781-52782 +52787-52791 +52788-52791 +52789-52790 +52792-52820 +52792-52820 +52794-52803 +52794-52798 +52795-52798 +52796-52798 +52797-52798 +52799-52803 +52800-52803 +52801-52803 +52802-52803 +52804-52820 +52804-52814 +52807-52814 +52809-52814 +52809-52811 +52810-52811 +52812-52814 +52813-52814 +52815-52820 +52816-52820 +52819-52820 +52821-52827 +52821-52827 +52822-52823 +52824-52827 +52825-52827 +52825-52826 +52828-52834 +52828-52834 +52829-52834 +52830-52831 +52832-52834 +52833-52834 +52835-52842 +52835-52842 +52836-52842 +52836-52838 +52837-52838 +52839-52842 +52839-52840 +52841-52842 +52843-52860 +52843-52860 +52844-52860 +52844-52853 +52844-52848 +52845-52846 +52847-52848 +52849-52853 +52850-52853 +52850 +52852-52853 +52853 +52854-52860 +52855-52858 +52856-52858 +52857-52858 +52859-52860 +52861-52875 +52861-52875 +52862-52875 +52862-52863 +52863 +52864-52875 +52865-52867 +52866-52867 +52868-52875 +52868-52871 +52869-52871 +52870-52871 +52870 +52872-52875 +52873-52875 +52876-52892 +52876-52892 +52877-52892 +52877 +52878-52888 +52879-52888 +52880-52881 +52883-52888 +52884-52888 +52884-52886 +52885-52886 +52887-52888 +52889-52892 +52891-52892 +52892 +52893-52911 +52893-52911 +52894-52911 +52894-52895 +52896-52899 +52897-52899 +52897-52898 +52901-52911 +52902-52911 +52905-52911 +52905-52906 +52907-52911 +52908-52911 +52909-52911 +52910-52911 +52912-52930 +52912-52930 +52913-52930 +52913-52922 +52914-52922 +52915-52922 +52916-52919 +52916 +52917-52919 +52918-52919 +52920-52922 +52921-52922 +52925-52927 +52926-52927 +52928-52930 +52928-52929 +52931-52951 +52931-52951 +52932-52951 +52932-52934 +52933-52934 +52935-52941 +52936-52938 +52937-52938 +52939-52941 +52940-52941 +52942-52951 +52943-52951 +52943-52945 +52944-52945 +52947-52949 +52948-52949 +52950-52951 +52952-52969 +52952-52969 +52953-52969 +52953-52962 +52953-52955 +52956-52962 +52957-52962 +52959-52960 +52961-52962 +52963-52969 +52964-52969 +52964-52965 +52966-52968 +52966-52967 +52970-52991 +52970-52991 +52971-52991 +52971-52989 +52971-52977 +52972-52977 +52973-52977 +52974-52977 +52974-52975 +52976-52977 +52979-52989 +52979-52984 +52979-52980 +52982-52984 +52983-52984 +52985-52989 +52986-52989 +52986-52988 +52987-52988 +52990-52991 +52991 +52992-52999 +52992-52999 +52993-52999 +52996-52999 +52996-52997 +52998-52999 +53000-53017 +53000-53017 +53001-53017 +53001-53006 +53002-53006 +53004-53006 +53005-53006 +53007-53017 +53008-53017 +53010-53011 +53012-53017 +53013-53017 +53014-53017 +53015-53017 +53015-53016 +53018-53054 +53018-53054 +53018-53027 +53018-53019 +53020-53026 +53020-53021 +53022-53026 +53023-53026 +53024-53026 +53025-53026 +53028-53054 +53028-53036 +53029-53036 +53029-53030 +53034-53036 +53035-53036 +53037-53054 +53038-53054 +53039-53054 +53040-53048 +53041-53043 +53042-53043 +53044-53045 +53046-53048 +53047-53048 +53050-53054 +53051-53053 +53052-53053 +53055-53069 +53055-53069 +53056-53069 +53058-53059 +53060-53069 +53061-53069 +53062-53069 +53063-53069 +53063-53066 +53065-53066 +53067-53069 +53068-53069 +53070-53095 +53070-53095 +53071-53095 +53071-53083 +53072-53083 +53073-53074 +53075-53083 +53076-53083 +53076-53079 +53080-53083 +53081-53083 +53081-53083 +53082-53083 +53084-53088 +53086-53088 +53087-53088 +53089-53095 +53090-53095 +53091-53092 +53093-53095 +53094-53095 +53096-53107 +53096-53107 +53097-53107 +53097-53101 +53099-53101 +53100-53101 +53104-53107 +53104 +53108-53131 +53108-53131 +53108-53111 +53110-53111 +53112-53131 +53113-53131 +53114-53131 +53115-53131 +53116-53131 +53118-53131 +53118-53119 +53120-53131 +53121-53123 +53122-53123 +53125-53131 +53126-53131 +53126-53129 +53127-53129 +53128-53129 +53130-53131 +53131 +53132-53159 +53132-53159 +53132-53152 +53133-53152 +53134-53137 +53134-53135 +53136-53137 +53137 +53139-53152 +53139-53145 +53139-53140 +53141-53145 +53142-53145 +53143-53145 +53144-53145 +53146-53152 +53147-53150 +53148-53150 +53149-53150 +53153-53159 +53154-53159 +53155-53158 +53155-53156 +53157-53158 +53160-53171 +53160-53171 +53161-53171 +53162-53163 +53164-53171 +53164-53165 +53166-53171 +53167-53171 +53168-53171 +53169-53171 +53170-53171 +53172-53188 +53172-53188 +53172-53173 +53174-53188 +53175-53188 +53177-53188 +53177-53182 +53179-53182 +53180-53182 +53181-53182 +53184-53188 +53185-53188 +53186-53188 +53189-53203 +53189-53203 +53190-53203 +53192-53203 +53192-53201 +53193-53201 +53193-53194 +53197-53201 +53198-53201 +53198 +53199-53201 +53200-53201 +53202-53203 +53204-53222 +53204-53222 +53204-53212 +53204-53206 +53205-53206 +53207-53208 +53210-53212 +53211-53212 +53213-53222 +53214-53222 +53214-53215 +53216-53222 +53216-53219 +53217-53219 +53218-53219 +53222 +53223-53253 +53223-53253 +53224-53253 +53226-53227 +53228-53253 +53229-53253 +53230-53253 +53232-53253 +53233-53240 +53236-53240 +53237-53240 +53238-53240 +53239-53240 +53242-53253 +53242-53244 +53243-53244 +53247-53253 +53248-53253 +53248-53251 +53249-53251 +53250-53251 +53252-53253 +53254-53269 +53254-53269 +53255-53269 +53255-53258 +53256-53258 +53257-53258 +53260-53269 +53261-53269 +53261-53264 +53262-53264 +53263-53264 +53265-53269 +53266-53269 +53268-53269 +53270-53280 +53270-53280 +53271-53280 +53272-53273 +53274-53280 +53274 +53278-53280 +53278-53279 +53281-53290 +53281-53290 +53283-53284 +53285-53290 +53287-53290 +53288-53290 +53289-53290 +53291-53306 +53291-53306 +53291-53297 +53291-53294 +53292-53294 +53293-53294 +53295-53296 +53298-53306 +53299-53306 +53299-53302 +53300-53302 +53301-53302 +53303-53304 +53307-53316 +53307-53316 +53308-53316 +53310-53316 +53311-53316 +53311-53313 +53312-53313 +53314-53316 +53315-53316 +53317-53352 +53317-53352 +53317-53334 +53317-53325 +53317-53322 +53318-53322 +53321-53322 +53323-53324 +53326-53334 +53327-53334 +53327-53330 +53328-53330 +53329-53330 +53331-53332 +53336-53352 +53336-53339 +53337-53339 +53338-53339 +53340-53352 +53341-53346 +53342-53346 +53343-53346 +53344-53346 +53345-53346 +53348-53352 +53348-53352 +53349-53352 +53350-53352 +53351-53352 +53353-53376 +53353-53376 +53354-53376 +53356-53360 +53357-53360 +53358-53360 +53359-53360 +53361-53376 +53362-53376 +53362-53365 +53362-53365 +53363-53365 +53366-53369 +53368-53369 +53370-53376 +53371-53376 +53373-53376 +53374-53376 +53375-53376 +53377-53405 +53377-53405 +53378-53405 +53380-53384 +53381-53384 +53382-53384 +53383-53384 +53385-53405 +53386-53405 +53386-53397 +53386-53394 +53387-53394 +53388-53394 +53388-53390 +53389-53390 +53391-53394 +53392-53394 +53393-53394 +53396-53397 +53398-53405 +53399-53405 +53402-53405 +53403-53405 +53404-53405 +53406-53447 +53406-53447 +53407-53447 +53407-53422 +53408-53409 +53410-53411 +53412-53422 +53413-53422 +53414-53422 +53416-53422 +53416-53417 +53418-53422 +53419-53422 +53420-53422 +53421-53422 +53423-53447 +53424-53447 +53425-53447 +53425-53439 +53426-53439 +53428-53439 +53428-53431 +53429-53431 +53430-53431 +53432-53439 +53435-53439 +53435-53436 +53437-53439 +53438-53439 +53440-53447 +53443-53447 +53444-53447 +53444-53446 +53445-53446 +53448-53456 +53448-53456 +53448-53449 +53450-53456 +53451-53456 +53453-53456 +53455-53456 +53457-53477 +53457-53477 +53457-53470 +53459-53461 +53460-53461 +53462-53470 +53463-53470 +53464-53468 +53464-53465 +53466-53468 +53467-53468 +53471-53477 +53474-53477 +53475-53477 +53476-53477 +53478-53487 +53478-53487 +53478-53479 +53480-53482 +53481-53482 +53483-53487 +53484-53487 +53486-53487 +53488-53498 +53488-53498 +53488-53495 +53489-53495 +53490-53495 +53490-53493 +53491-53493 +53492-53493 +53494-53495 +53495 +53497-53498 +53499-53515 +53499-53515 +53500-53515 +53501-53515 +53501-53502 +53505-53515 +53506-53515 +53507-53515 +53507-53511 +53507-53511 +53508-53511 +53509-53511 +53510-53511 +53514-53515 +53516-53524 +53516-53524 +53517-53524 +53518-53524 +53520-53524 +53520-53521 +53521 +53523-53524 +53525-53530 +53525-53530 +53527-53530 +53528-53530 +53529-53530 +53531-53541 +53531-53541 +53531-53539 +53531-53533 +53532-53533 +53535-53537 +53536-53537 +53538-53539 +53540-53541 +53541 +53542-53558 +53542-53558 +53544-53550 +53544-53545 +53546-53550 +53547-53550 +53547-53549 +53548-53549 +53551-53558 +53552-53558 +53552-53555 +53553-53554 +53556-53558 +53557-53558 +53559-53569 +53559-53569 +53561-53569 +53561-53564 +53561-53562 +53563-53564 +53564 +53565-53569 +53566-53569 +53566-53568 +53567-53568 +53570-53580 +53570-53580 +53570-53576 +53571-53576 +53573-53576 +53574-53576 +53575-53576 +53578-53580 +53579-53580 +53581-53596 +53581-53596 +53582-53596 +53582-53587 +53583-53587 +53584-53587 +53585-53587 +53588-53590 +53589-53590 +53592-53596 +53593-53596 +53594-53596 +53594-53595 +53597-53611 +53597-53611 +53598-53611 +53599-53600 +53601-53602 +53603-53611 +53604-53611 +53607-53611 +53609-53610 +53611 +53612-53639 +53612-53639 +53613-53639 +53615-53616 +53617-53639 +53618-53639 +53619-53639 +53621-53639 +53621-53634 +53622-53634 +53623-53634 +53623-53629 +53624-53629 +53625-53629 +53626-53629 +53627-53629 +53628-53629 +53630-53634 +53631-53634 +53632-53634 +53633-53634 +53635-53639 +53638-53639 +53640-53658 +53640-53658 +53640-53652 +53640-53649 +53641-53649 +53641-53644 +53642-53644 +53643-53644 +53645-53649 +53646-53649 +53647-53649 +53648-53649 +53651-53652 +53653-53658 +53656-53658 +53657-53658 +53659-53672 +53659-53672 +53660-53672 +53660-53665 +53660-53662 +53661-53662 +53663-53664 +53666-53672 +53667-53672 +53667-53669 +53668-53669 +53670-53671 +53673-53688 +53673-53688 +53673-53685 +53673-53682 +53674-53682 +53674-53677 +53675-53677 +53676-53677 +53678-53682 +53679-53682 +53680-53682 +53681-53682 +53683-53684 +53686-53688 +53687-53688 +53689-53707 +53689-53707 +53689-53699 +53690-53699 +53690-53694 +53692-53694 +53693-53694 +53693 +53695-53699 +53697-53699 +53698-53699 +53700-53703 +53700-53703 +53701-53703 +53702-53703 +53706-53707 +53708-53722 +53708-53722 +53710-53715 +53710-53711 +53712-53715 +53713-53715 +53713-53714 +53716-53722 +53717-53722 +53718-53722 +53718-53720 +53719-53720 +53721-53722 +53722 +53723-53731 +53723-53731 +53723-53727 +53724-53727 +53725-53727 +53726-53727 +53729-53731 +53730-53731 +53732-53738 +53732-53738 +53734-53738 +53734-53735 +53737-53738 +53739-53755 +53739-53755 +53740-53755 +53740-53744 +53741-53744 +53742-53744 +53743-53744 +53745 +53747-53755 +53749-53751 +53749-53750 +53752-53755 +53754-53755 +53756-53773 +53756-53773 +53757-53773 +53757-53758 +53759-53768 +53760-53761 +53762-53768 +53763-53768 +53764-53765 +53766-53768 +53767-53768 +53771-53773 +53774-53785 +53774-53785 +53775-53785 +53776-53785 +53777-53785 +53777-53780 +53778-53780 +53779-53780 +53782-53785 +53784-53785 +53786-53795 +53786-53795 +53786-53790 +53786-53787 +53789-53790 +53790 +53791-53795 +53791-53792 +53796-53806 +53796-53806 +53796-53803 +53796-53801 +53797-53801 +53798-53801 +53804-53806 +53805-53806 +53807-53831 +53807-53831 +53808-53831 +53809-53814 +53809-53811 +53809-53810 +53812-53814 +53815-53831 +53816-53831 +53817-53818 +53819-53820 +53821-53831 +53821-53825 +53823-53825 +53824-53825 +53826-53831 +53827-53831 +53829-53831 +53830-53831 +53832-53851 +53832-53851 +53833-53851 +53834-53851 +53834-53835 +53838-53851 +53839-53851 +53841-53843 +53842-53843 +53844-53851 +53845-53851 +53846-53847 +53849-53851 +53850-53851 +53852-53866 +53852-53866 +53852-53861 +53852-53853 +53854-53857 +53855-53857 +53856-53857 +53859-53861 +53860-53861 +53862-53866 +53863-53866 +53864-53865 +53867-53877 +53867-53877 +53868-53877 +53869-53870 +53871-53872 +53873-53877 +53874-53877 +53874-53875 +53877 +53878-53901 +53878-53901 +53880-53881 +53882-53901 +53882 +53883-53885 +53883-53884 +53886-53901 +53886-53889 +53886-53888 +53887-53888 +53890-53901 +53891-53901 +53891-53892 +53893-53901 +53894-53901 +53895-53901 +53896-53901 +53898-53901 +53899-53901 +53900-53901 +53902-53917 +53902-53917 +53904-53905 +53906-53917 +53906-53911 +53907-53911 +53908-53910 +53909-53910 +53912-53917 +53913-53917 +53913-53915 +53913-53914 +53918-53932 +53918-53932 +53919-53932 +53920-53923 +53921-53923 +53922-53923 +53924-53932 +53925-53932 +53925-53928 +53927-53928 +53929-53932 +53929-53932 +53930-53932 +53931-53932 +53933-53954 +53933-53954 +53934-53954 +53934-53941 +53934-53935 +53937-53938 +53939-53941 +53940-53941 +53942-53948 +53943-53948 +53945-53948 +53945-53947 +53946-53947 +53949-53954 +53950-53954 +53951-53952 +53953-53954 +53955-53963 +53955-53963 +53956-53963 +53958-53963 +53958-53961 +53959-53961 +53960-53961 +53962-53963 +53964-53988 +53964-53988 +53965-53988 +53966-53967 +53968-53970 +53969-53970 +53971-53988 +53971-53977 +53971-53972 +53973-53977 +53974-53977 +53975-53977 +53976-53977 +53978-53988 +53979-53988 +53979-53982 +53980-53982 +53981-53982 +53984-53988 +53985-53988 +53985-53986 +53987-53988 +53989-54000 +53989-54000 +53990-54000 +53990-53994 +53992-53993 +53995-54000 +53996-54000 +53998-54000 +53998-53999 +54001-54007 +54001-54007 +54001-54003 +54002-54003 +54004-54007 +54006-54007 +54008-54015 +54008-54015 +54009-54015 +54010-54012 +54011-54012 +54014-54015 +54016-54034 +54016-54034 +54017-54034 +54019-54020 +54021-54034 +54021-54026 +54021-54024 +54022-54024 +54023-54024 +54027-54034 +54028-54034 +54028-54031 +54029-54031 +54030-54031 +54035-54054 +54035-54054 +54035-54043 +54035-54040 +54037-54038 +54039-54040 +54041-54043 +54042-54043 +54044-54054 +54045-54054 +54047-54048 +54049-54054 +54050-54054 +54050-54052 +54051-54052 +54055-54059 +54055-54059 +54057-54059 +54058-54059 +54060-54072 +54060-54072 +54063-54066 +54064-54066 +54064-54065 +54067-54072 +54068-54072 +54068-54070 +54069-54070 +54073-54080 +54073-54080 +54074-54080 +54074-54076 +54078-54080 +54079-54080 +54081-54099 +54081-54099 +54082-54099 +54082-54089 +54083-54089 +54084-54086 +54085-54086 +54087-54089 +54088-54089 +54090-54099 +54091-54092 +54094-54099 +54097-54099 +54098-54099 +54100-54112 +54100-54112 +54101-54112 +54101-54107 +54101-54102 +54105-54107 +54106-54107 +54108-54112 +54109-54112 +54110-54112 +54113-54121 +54113-54121 +54114-54121 +54114-54116 +54115-54116 +54119-54121 +54120-54121 +54122-54135 +54122-54135 +54122-54127 +54123-54127 +54125-54127 +54126-54127 +54128-54135 +54129-54135 +54131-54135 +54131 +54132-54135 +54133-54135 +54134-54135 +54136-54146 +54136-54146 +54137-54146 +54140-54141 +54142-54146 +54143-54146 +54144-54146 +54145-54146 +54147-54158 +54147-54158 +54148-54158 +54148-54151 +54149-54150 +54152-54158 +54152-54156 +54154-54156 +54155-54156 +54157-54158 +54158 +54159-54169 +54159-54169 +54160-54169 +54161-54162 +54163-54169 +54164-54169 +54168-54169 +54170-54185 +54170-54185 +54171-54185 +54171-54173 +54174-54185 +54175-54185 +54176-54185 +54176-54181 +54176-54178 +54177-54178 +54182-54185 +54183-54185 +54183-54185 +54184-54185 +54186-54206 +54186-54206 +54186-54192 +54187-54192 +54189-54192 +54189-54191 +54190-54191 +54193-54206 +54194-54196 +54195-54196 +54197-54206 +54197-54201 +54198-54200 +54199-54200 +54202-54206 +54203-54206 +54204-54205 +54207-54215 +54207-54215 +54207-54210 +54208-54210 +54208-54209 +54211-54214 +54212-54214 +54213-54214 +54216-54232 +54216-54232 +54217-54232 +54217-54223 +54217-54223 +54218-54223 +54219-54223 +54220-54223 +54221-54223 +54222-54223 +54224-54226 +54227-54232 +54228-54232 +54229-54230 +54233-54238 +54233-54238 +54234-54238 +54237-54238 +54239-54245 +54239-54245 +54240-54245 +54240-54242 +54241-54242 +54244-54245 +54246-54249 +54246-54249 +54247-54248 +54250-54258 +54250-54258 +54251-54252 +54253-54258 +54253-54254 +54255-54258 +54256-54257 +54259-54269 +54259-54269 +54259-54260 +54261-54269 +54262-54269 +54264-54269 +54264-54266 +54264-54265 +54267-54269 +54268-54269 +54270-54291 +54270-54291 +54270-54286 +54270-54271 +54275-54276 +54277-54286 +54278-54286 +54279-54282 +54279-54281 +54280-54281 +54284-54286 +54284-54286 +54285-54286 +54287-54291 +54288-54291 +54288-54289 +54292-54312 +54292-54312 +54292-54303 +54293-54303 +54293-54297 +54296-54297 +54298-54303 +54299-54303 +54301-54303 +54302-54303 +54304-54312 +54304-54305 +54306-54312 +54307-54312 +54307-54308 +54311-54312 +54313-54321 +54313-54321 +54314-54316 +54315-54316 +54318-54321 +54318-54320 +54319-54320 +54322-54333 +54322-54333 +54323-54333 +54324-54327 +54325-54327 +54326-54327 +54328-54333 +54329-54333 +54331-54333 +54331-54332 +54334-54341 +54334-54341 +54335-54341 +54336-54337 +54338-54341 +54339-54341 +54342-54352 +54342-54352 +54346-54347 +54348-54352 +54349-54352 +54351-54352 +54353-54366 +54353-54366 +54354-54366 +54354-54357 +54356-54357 +54358-54366 +54359-54366 +54359-54360 +54359-54360 +54361-54362 +54362 +54363-54366 +54365-54366 +54367-54382 +54367-54382 +54368-54382 +54368-54374 +54369-54372 +54369-54371 +54370-54371 +54373-54374 +54375-54382 +54376-54382 +54377-54382 +54377-54378 +54379-54382 +54380-54382 +54381-54382 +54383-54397 +54383-54397 +54384-54397 +54384-54387 +54384-54385 +54388-54397 +54389-54397 +54391-54397 +54391-54393 +54392-54393 +54394-54397 +54398-54407 +54398-54407 +54398-54404 +54401-54404 +54402-54404 +54402-54403 +54405-54407 +54408-54424 +54408-54424 +54409-54424 +54409-54411 +54410-54411 +54412-54424 +54413-54424 +54415-54416 +54417-54418 +54419-54424 +54420-54424 +54422-54424 +54423-54424 +54425-54445 +54425-54445 +54426-54445 +54426-54432 +54426-54428 +54427-54428 +54431-54432 +54433-54445 +54434-54445 +54435-54445 +54435-54436 +54435-54436 +54437-54438 +54438 +54439-54445 +54440-54445 +54440-54441 +54443-54445 +54446-54465 +54446-54465 +54446-54454 +54446-54448 +54447-54448 +54449-54454 +54449-54450 +54452-54453 +54455-54465 +54456-54465 +54456-54462 +54457-54461 +54457-54458 +54459-54461 +54460-54461 +54463-54465 +54464-54465 +54466-54481 +54466-54481 +54467-54481 +54468-54469 +54470-54481 +54470-54475 +54471-54472 +54473-54474 +54476-54481 +54477-54481 +54478-54481 +54479-54481 +54480-54481 +54482-54494 +54482-54494 +54482-54486 +54482-54483 +54484-54486 +54485-54486 +54487-54494 +54488-54494 +54488-54491 +54488-54490 +54495-54509 +54495-54509 +54496-54509 +54497-54498 +54499-54500 +54501-54509 +54501-54504 +54501-54502 +54505-54509 +54506-54509 +54510-54521 +54510-54521 +54511-54521 +54512-54521 +54512-54517 +54512-54516 +54513-54516 +54514-54516 +54515-54516 +54518-54521 +54519-54521 +54520-54521 +54522-54541 +54522-54541 +54524-54541 +54524-54526 +54524-54525 +54527-54541 +54527-54528 +54529-54533 +54529-54530 +54531-54533 +54532-54533 +54534-54541 +54535-54541 +54535-54538 +54535-54537 +54542-54564 +54542-54564 +54543-54564 +54543-54553 +54543-54550 +54544-54550 +54544-54546 +54545-54546 +54547-54550 +54548-54550 +54549-54550 +54552-54553 +54554-54564 +54555-54564 +54556-54564 +54557-54564 +54557-54559 +54558-54559 +54560-54564 +54560-54562 +54561-54562 +54563-54564 +54564 +54565-54580 +54565-54580 +54565-54568 +54565-54568 +54566-54568 +54567-54568 +54569-54572 +54570-54572 +54571-54572 +54573-54580 +54573-54575 +54574-54575 +54575 +54576-54579 +54577-54579 +54578-54579 +54581-54601 +54581-54601 +54582-54601 +54584-54593 +54585-54593 +54586-54593 +54587-54593 +54587-54588 +54590-54593 +54591-54593 +54592-54593 +54594-54601 +54595-54601 +54598-54601 +54599-54601 +54602-54615 +54602-54615 +54603-54615 +54603-54605 +54604-54605 +54606-54609 +54607-54609 +54607-54608 +54611-54615 +54614-54615 +54616-54621 +54616-54621 +54618-54621 +54620-54621 +54622-54632 +54622-54632 +54623-54632 +54625-54632 +54626-54632 +54627-54632 +54627-54629 +54628-54629 +54630-54631 +54633-54652 +54633-54652 +54634-54652 +54634-54635 +54637-54652 +54638-54652 +54638-54649 +54638-54641 +54639-54641 +54640-54641 +54642-54649 +54643-54649 +54644-54649 +54645-54649 +54646-54649 +54647-54649 +54651-54652 +54653-54660 +54653-54660 +54654-54660 +54656-54658 +54657-54658 +54659-54660 +54661-54674 +54661-54674 +54662-54674 +54662-54667 +54662-54664 +54663-54664 +54666-54667 +54668-54674 +54669-54674 +54671-54672 +54673-54674 +54675-54692 +54675-54692 +54676-54692 +54676-54683 +54677-54678 +54679-54683 +54680-54683 +54680-54681 +54682-54683 +54684-54692 +54685-54692 +54688-54692 +54688-54689 +54693-54704 +54693-54704 +54694-54695 +54696-54704 +54700-54704 +54701-54704 +54701-54703 +54702-54703 +54705-54713 +54705-54713 +54706-54713 +54708-54709 +54710-54713 +54711-54713 +54711-54712 +54714-54725 +54714-54725 +54715-54725 +54715-54721 +54715-54718 +54716-54718 +54717-54718 +54720-54721 +54722-54725 +54723-54725 +54723-54725 +54724-54725 +54726-54736 +54726-54736 +54727-54736 +54727-54734 +54727-54729 +54727-54728 +54730-54734 +54731-54734 +54733-54734 +54737-54766 +54737-54766 +54738-54739 +54740-54745 +54741-54745 +54742-54745 +54743-54744 +54746-54749 +54747-54749 +54748-54749 +54750-54766 +54751-54766 +54751-54753 +54752-54753 +54755-54756 +54757-54766 +54758-54766 +54758-54762 +54761-54762 +54763-54766 +54764-54766 +54765-54766 +54767-54777 +54767-54777 +54767 +54768-54777 +54769-54777 +54771-54777 +54772-54777 +54772-54773 +54774-54776 +54775-54776 +54778-54787 +54778-54787 +54778 +54779-54787 +54780-54787 +54781-54787 +54782-54787 +54782-54784 +54783-54784 +54788-54794 +54788-54794 +54789-54794 +54791-54794 +54792-54794 +54793-54794 +54795-54802 +54795-54802 +54796-54802 +54798-54802 +54799-54802 +54800-54802 +54801-54802 +54803-54820 +54803-54820 +54804-54820 +54804-54809 +54807-54809 +54808-54809 +54810-54816 +54811-54816 +54811-54813 +54812-54813 +54815-54816 +54817-54820 +54818-54820 +54818 +54821-54847 +54821-54847 +54822-54847 +54822-54833 +54823-54827 +54823-54824 +54825-54827 +54826-54827 +54828-54829 +54830-54833 +54831-54833 +54831-54832 +54834-54847 +54835-54847 +54835-54838 +54837-54838 +54841-54847 +54841 +54842-54844 +54843-54844 +54847 +54848-54857 +54848-54857 +54849-54857 +54849-54851 +54850-54851 +54855-54857 +54855-54856 +54858-54861 +54858-54861 +54859-54861 +54862-54870 +54862-54870 +54863-54870 +54865-54866 +54867-54870 +54868-54870 +54869-54870 +54871-54881 +54871-54881 +54872-54881 +54872-54873 +54874-54875 +54876-54877 +54879-54881 +54880-54881 +54882-54899 +54882-54899 +54883-54899 +54883-54886 +54884-54886 +54885-54886 +54887-54899 +54887 +54889-54890 +54891-54899 +54891-54893 +54892-54893 +54895-54896 +54897-54898 +54900-54907 +54900-54907 +54901-54907 +54901-54903 +54905-54907 +54906-54907 +54908-54936 +54908-54936 +54909-54936 +54909-54925 +54910-54915 +54910 +54911-54915 +54912-54915 +54912-54914 +54913-54914 +54917-54918 +54919-54925 +54920-54922 +54921-54922 +54923-54925 +54924-54925 +54926-54936 +54927-54936 +54927-54930 +54929-54930 +54931-54936 +54932-54936 +54932-54933 +54934-54935 +54937-54959 +54937-54959 +54938-54959 +54938-54939 +54940-54946 +54940 +54941-54946 +54942-54946 +54944-54946 +54945-54946 +54949-54959 +54949-54950 +54949-54950 +54951-54956 +54953-54956 +54954-54956 +54955-54956 +54957-54959 +54960-54964 +54960-54964 +54961-54964 +54963-54964 +54964 +54965-54977 +54965-54977 +54966-54977 +54968-54969 +54970-54977 +54970-54973 +54974-54977 +54974 +54975-54977 +54976-54977 +54978-55005 +54978-55005 +54979-55005 +54982-54983 +54984-55005 +54985-55005 +54985-54990 +54987-54990 +54988-54990 +54989-54990 +54991-55005 +54991-54999 +54991-54993 +54992-54993 +54994-54995 +54997-54999 +54998-54999 +55000-55005 +55001-55005 +55002-55005 +55003-55005 +55004-55005 +55006-55020 +55006-55020 +55007-55020 +55009-55010 +55011-55020 +55012-55013 +55015-55020 +55015-55017 +55016-55017 +55021-55042 +55021-55042 +55021-55022 +55023-55042 +55024-55042 +55026-55042 +55026-55035 +55026-55030 +55027-55030 +55029-55030 +55031-55035 +55033-55035 +55034-55035 +55036-55042 +55037-55042 +55038-55042 +55038-55039 +55040-55042 +55041-55042 +55043-55051 +55043-55051 +55044-55051 +55047-55051 +55047-55048 +55049-55051 +55050-55051 +55052-55060 +55052-55060 +55053-55055 +55054-55055 +55057-55060 +55061-55081 +55061-55081 +55062-55081 +55062-55071 +55062-55065 +55063-55065 +55066-55071 +55066-55069 +55067-55069 +55068-55069 +55072-55081 +55073-55081 +55073-55075 +55076-55081 +55077-55081 +55077-55081 +55078-55081 +55079-55081 +55080-55081 +55082-55096 +55082-55096 +55083-55096 +55083-55088 +55084-55088 +55085-55088 +55086-55088 +55087-55088 +55090-55096 +55091-55096 +55091-55094 +55091-55092 +55093-55094 +55097-55110 +55097-55110 +55097-55102 +55099-55102 +55100-55102 +55101-55102 +55103-55110 +55104-55110 +55105-55106 +55107-55110 +55108-55110 +55108-55109 +55111-55118 +55111-55118 +55112-55118 +55114-55118 +55116-55118 +55117-55118 +55119-55127 +55119-55127 +55121-55127 +55121-55123 +55122-55123 +55124-55127 +55125-55127 +55125-55127 +55126-55127 +55128-55136 +55128-55136 +55128-55130 +55129-55130 +55131-55136 +55132-55136 +55132-55135 +55133-55135 +55134-55135 +55137-55147 +55137-55147 +55137-55139 +55138-55139 +55141-55143 +55142-55143 +55144-55147 +55145-55147 +55146-55147 +55148-55157 +55148-55157 +55149-55157 +55152-55157 +55153-55157 +55155-55157 +55156-55157 +55158-55179 +55158-55179 +55159-55179 +55162-55179 +55162-55172 +55162-55163 +55164-55166 +55165-55166 +55167-55172 +55168-55172 +55168-55171 +55169-55171 +55170-55171 +55173-55179 +55173-55176 +55173-55175 +55180-55195 +55180-55195 +55181-55195 +55182-55183 +55184-55195 +55184-55186 +55185-55186 +55187-55195 +55188-55195 +55189-55195 +55189-55192 +55189-55191 +55196-55221 +55196-55221 +55197-55221 +55199-55221 +55199-55208 +55199-55203 +55200-55202 +55201-55202 +55204-55208 +55205-55207 +55206-55207 +55209-55221 +55209-55214 +55210-55213 +55211-55213 +55212-55213 +55215-55221 +55218-55221 +55219-55221 +55219-55220 +55222-55242 +55222-55242 +55223-55242 +55223-55230 +55225-55230 +55226-55230 +55227-55230 +55228-55230 +55229-55230 +55231-55242 +55232-55242 +55232-55237 +55233-55237 +55235-55237 +55236-55237 +55238-55242 +55239-55242 +55240-55242 +55241-55242 +55243-55248 +55243-55248 +55244-55248 +55246-55248 +55249-55259 +55249-55259 +55251-55252 +55253-55259 +55253-55259 +55254-55259 +55255-55256 +55260-55282 +55260-55282 +55260-55266 +55261-55266 +55262-55263 +55264-55266 +55265-55266 +55267-55282 +55268-55282 +55268-55272 +55268-55270 +55269-55270 +55273-55277 +55276-55277 +55280-55282 +55281-55282 +55283-55289 +55283-55289 +55285-55289 +55286-55289 +55286-55287 +55290-55317 +55290-55317 +55291-55317 +55292-55293 +55294-55317 +55294-55299 +55295-55299 +55296-55299 +55297-55299 +55298-55299 +55300-55317 +55302-55317 +55303-55317 +55303-55304 +55305-55317 +55306-55317 +55306-55309 +55306-55307 +55310-55317 +55311-55317 +55311-55315 +55312-55315 +55314-55315 +55316-55317 +55318-55335 +55318-55335 +55319-55335 +55319-55321 +55320-55321 +55322-55323 +55325-55335 +55329-55335 +55330-55335 +55331-55333 +55332-55333 +55336-55342 +55336-55342 +55336-55338 +55341-55342 +55343-55372 +55343-55372 +55344-55372 +55345-55346 +55347-55351 +55348-55351 +55349-55351 +55349-55350 +55352-55372 +55352-55359 +55353-55359 +55355-55359 +55356-55359 +55357-55359 +55358-55359 +55360-55372 +55360-55363 +55361-55362 +55364-55372 +55365-55372 +55365-55367 +55366-55367 +55368-55372 +55369-55372 +55369-55370 +55373-55388 +55373-55388 +55374-55375 +55376-55388 +55376-55382 +55376-55378 +55376-55377 +55379-55382 +55380-55382 +55383-55388 +55386-55388 +55387-55388 +55389-55406 +55389-55406 +55391-55392 +55393-55406 +55394-55406 +55395-55406 +55397-55406 +55398-55406 +55398-55402 +55399-55402 +55400-55402 +55401-55402 +55404-55406 +55405-55406 +55407-55423 +55407-55423 +55408-55423 +55408-55417 +55408-55409 +55412-55414 +55413-55414 +55415-55417 +55416-55417 +55418-55423 +55418-55419 +55421-55423 +55422-55423 +55424-55432 +55424-55432 +55425-55432 +55425-55429 +55426-55429 +55426-55427 +55433-55437 +55433-55437 +55434-55437 +55435-55437 +55435-55436 +55438-55450 +55438-55450 +55439-55450 +55439-55441 +55440-55441 +55442-55450 +55443-55450 +55443-55446 +55444-55446 +55445-55446 +55449-55450 +55451-55457 +55451-55457 +55451-55456 +55454-55456 +55455-55456 +55458-55466 +55458-55466 +55459-55466 +55459-55460 +55461-55465 +55463-55465 +55464-55465 +55467-55475 +55467-55475 +55467 +55468-55475 +55469-55475 +55471-55475 +55471-55473 +55472-55473 +55476-55489 +55476-55489 +55478-55479 +55480-55489 +55480-55484 +55481-55484 +55481-55483 +55482-55483 +55485-55489 +55485-55488 +55486-55488 +55487-55488 +55490-55509 +55490-55509 +55491-55509 +55493-55505 +55494-55505 +55495-55505 +55496-55505 +55496-55500 +55497-55498 +55503-55505 +55504-55505 +55506-55509 +55510-55516 +55510-55516 +55512-55516 +55513-55516 +55514-55516 +55515-55516 +55517-55528 +55517-55528 +55519-55528 +55519-55523 +55520-55521 +55524-55528 +55524-55527 +55524-55525 +55526-55527 +55529-55558 +55529-55558 +55531-55532 +55533-55558 +55533-55541 +55533-55538 +55534-55538 +55534-55535 +55536-55537 +55540-55541 +55542-55558 +55542-55549 +55543-55549 +55543-55547 +55544-55546 +55545-55546 +55548-55549 +55549 +55551-55558 +55552-55554 +55552-55553 +55556-55558 +55559-55574 +55559-55574 +55559-55560 +55561-55564 +55562-55564 +55563-55564 +55567-55574 +55568-55574 +55570-55574 +55571-55574 +55572-55574 +55573-55574 +55575-55589 +55575-55589 +55575-55581 +55576-55580 +55577-55580 +55577-55578 +55579-55580 +55582-55589 +55583-55589 +55583-55588 +55583-55587 +55584-55587 +55585-55587 +55586-55587 +55590-55606 +55590-55606 +55590-55594 +55593-55594 +55595-55606 +55596-55606 +55596-55598 +55597-55598 +55601-55606 +55602-55606 +55605-55606 +55607-55621 +55607-55621 +55607-55614 +55607-55610 +55608-55610 +55609-55610 +55611-55614 +55611-55613 +55612-55613 +55615-55621 +55616-55621 +55616-55617 +55618-55621 +55619-55621 +55619-55621 +55620-55621 +55622-55630 +55622-55630 +55623-55630 +55623 +55624-55627 +55625-55627 +55625-55626 +55628-55630 +55631-55637 +55631-55637 +55631-55633 +55632-55633 +55636-55637 +55638-55646 +55638-55646 +55638-55640 +55639-55640 +55641-55646 +55641-55642 +55647-55656 +55647-55656 +55647-55651 +55648-55651 +55649-55651 +55650-55651 +55652-55655 +55653-55655 +55654-55655 +55657-55667 +55657-55667 +55657-55658 +55662-55667 +55663-55667 +55663-55665 +55664-55665 +55668-55684 +55668-55684 +55668-55670 +55669-55670 +55671-55684 +55672-55684 +55674-55684 +55675-55684 +55678-55684 +55679-55684 +55679-55681 +55682-55684 +55683-55684 +55685-55699 +55685-55699 +55687-55699 +55687-55695 +55687-55690 +55691-55695 +55692-55695 +55693-55695 +55694-55695 +55696-55699 +55697-55699 +55700-55706 +55700-55706 +55701-55706 +55704-55706 +55705-55706 +55707-55711 +55707-55711 +55708-55711 +55709-55711 +55709 +55710-55711 +55711 +55712-55728 +55712-55728 +55713-55728 +55714-55728 +55716-55728 +55716-55721 +55717-55721 +55718-55720 +55719-55720 +55722-55728 +55723-55724 +55726-55728 +55727-55728 +55729-55737 +55729-55737 +55731-55732 +55733-55737 +55735-55737 +55736-55737 +55738-55758 +55738-55758 +55738-55742 +55738-55739 +55740-55742 +55741-55742 +55741-55742 +55743-55758 +55744-55758 +55746-55758 +55746-55751 +55747-55751 +55748-55750 +55749-55750 +55752-55758 +55752-55753 +55756-55758 +55757-55758 +55759-55768 +55759-55768 +55760-55768 +55763-55768 +55763-55766 +55763-55765 +55764-55765 +55767-55768 +55769-55772 +55769-55772 +55770-55772 +55770-55771 +55773-55775 +55773-55775 +55776-55786 +55776-55786 +55778-55786 +55778-55781 +55779-55781 +55782-55786 +55782-55784 +55783-55784 +55787-55800 +55787-55800 +55787-55793 +55788-55790 +55789-55790 +55791-55793 +55792-55793 +55794-55796 +55798-55800 +55798-55799 +55801-55808 +55801-55808 +55802-55808 +55802-55804 +55805-55808 +55806-55808 +55809-55826 +55809-55826 +55809-55818 +55809-55814 +55810-55814 +55811-55814 +55812-55814 +55815-55818 +55816-55818 +55816-55817 +55819-55826 +55820-55826 +55820-55821 +55822-55826 +55823-55826 +55823-55825 +55824-55825 +55827-55841 +55827-55841 +55827-55837 +55827-55830 +55828-55830 +55829-55830 +55832-55837 +55833-55837 +55834-55837 +55835-55837 +55836-55837 +55838-55841 +55839-55841 +55839 +55840-55841 +55841 +55842-55854 +55842-55854 +55843-55854 +55844-55845 +55846-55847 +55848-55854 +55848-55851 +55848-55849 +55852-55854 +55853-55854 +55855-55866 +55855-55866 +55858-55866 +55859-55866 +55860-55866 +55862-55866 +55862-55864 +55863-55864 +55867-55873 +55867-55873 +55868-55873 +55870-55873 +55871-55873 +55872-55873 +55874-55881 +55874-55881 +55875-55881 +55875-55876 +55877-55881 +55878-55881 +55879-55881 +55880-55881 +55882-55888 +55882-55888 +55883-55888 +55883 +55885-55888 +55886-55888 +55887-55888 +55889-55906 +55889-55906 +55890-55906 +55892-55894 +55893-55894 +55895-55906 +55896-55906 +55896 +55897-55903 +55899-55903 +55899-55903 +55900-55903 +55901-55903 +55902-55903 +55904-55906 +55905-55906 +55907-55924 +55907-55924 +55909-55924 +55909-55915 +55909-55911 +55910-55911 +55912-55915 +55913-55915 +55913-55915 +55914-55915 +55916-55924 +55917-55924 +55918-55924 +55919-55922 +55920-55922 +55921-55922 +55923-55924 +55925-55935 +55925-55935 +55926-55932 +55928-55932 +55929-55932 +55930-55932 +55931-55932 +55933-55935 +55934-55935 +55936-55941 +55936-55941 +55938-55941 +55939-55941 +55941 +55942-55950 +55942-55950 +55942-55946 +55943-55946 +55943-55945 +55944-55945 +55948-55950 +55949-55950 +55951-55981 +55951-55981 +55951-55954 +55951-55952 +55955-55960 +55956-55960 +55958-55960 +55959-55960 +55961-55968 +55962-55968 +55963-55965 +55964-55965 +55966-55968 +55967-55968 +55969-55981 +55970-55981 +55972-55981 +55972 +55973-55981 +55974-55981 +55975-55981 +55976-55981 +55977-55981 +55978-55981 +55979-55981 +55981 +55982-55988 +55982-55988 +55983-55988 +55983-55985 +55983 +55984-55985 +55985 +55986-55988 +55987-55988 +55988 +55989-56008 +55989-56008 +55990-56008 +55990-56000 +55990-55991 +55992-56000 +55993-56000 +55994-56000 +55994-55997 +55996-55997 +55999-56000 +56002-56008 +56003-56008 +56005-56008 +56006-56008 +56006 +56007-56008 +56008 +56009-56013 +56009-56013 +56011-56013 +56012-56013 +56014-56020 +56014-56020 +56016-56020 +56016 +56017-56020 +56018-56020 +56021-56025 +56021-56025 +56023-56025 +56024-56025 +56026-56034 +56026-56034 +56027-56034 +56029-56034 +56030-56034 +56032-56034 +56033-56034 +56035-56063 +56035-56063 +56037-56063 +56037-56058 +56037-56043 +56037-56041 +56037-56038 +56039-56041 +56040-56041 +56044-56048 +56045-56048 +56046-56048 +56047-56048 +56049-56058 +56050-56058 +56052-56058 +56053-56058 +56053-56056 +56054-56056 +56055-56056 +56057-56058 +56058 +56059-56063 +56060-56063 +56060-56062 +56060 +56061-56062 +56062 +56064-56069 +56064-56069 +56065-56069 +56067-56069 +56070-56072 +56070-56072 +56071-56072 +56073-56080 +56073-56080 +56074-56077 +56075-56077 +56076-56077 +56078-56080 +56079-56080 +56081-56096 +56081-56096 +56082-56096 +56084-56096 +56085-56096 +56085-56091 +56085-56086 +56087-56088 +56090-56091 +56092-56096 +56093-56096 +56094-56096 +56095-56096 +56097-56105 +56097-56105 +56098-56105 +56101-56103 +56102-56103 +56104-56105 +56106-56119 +56106-56119 +56107-56119 +56110-56119 +56110-56115 +56112-56115 +56113-56115 +56114-56115 +56116-56119 +56117-56119 +56117 +56118-56119 +56119 +56120-56137 +56120-56137 +56121-56137 +56122-56125 +56122-56124 +56123-56124 +56126-56137 +56126-56132 +56128-56129 +56130-56132 +56131-56132 +56133-56137 +56134-56137 +56134-56135 +56138-56146 +56138-56146 +56140-56146 +56142-56143 +56144-56146 +56144-56145 +56147-56151 +56147-56151 +56148-56151 +56150-56151 +56152-56166 +56152-56166 +56153-56166 +56154-56155 +56157-56166 +56160-56161 +56162-56166 +56163-56166 +56164-56166 +56165-56166 +56167-56172 +56167-56172 +56168-56172 +56170-56172 +56171-56172 +56173-56211 +56173-56211 +56174-56211 +56176-56177 +56178-56179 +56180-56184 +56181-56184 +56181-56182 +56183-56184 +56184 +56185-56211 +56186-56211 +56186-56192 +56188-56192 +56189-56192 +56190-56192 +56191-56192 +56192 +56193-56211 +56194-56211 +56196-56211 +56197-56211 +56199-56207 +56199-56201 +56200-56201 +56202-56207 +56202-56204 +56206-56207 +56208-56211 +56209-56211 +56212-56229 +56212-56229 +56213-56229 +56213-56216 +56214-56216 +56215-56216 +56217-56229 +56218-56229 +56219-56229 +56220-56229 +56220-56225 +56221-56225 +56223-56225 +56224-56225 +56226-56229 +56227-56229 +56228-56229 +56230-56244 +56230-56244 +56231-56244 +56231-56235 +56231-56233 +56234-56235 +56236-56244 +56237-56244 +56237-56241 +56239-56241 +56240-56241 +56242-56244 +56245-56252 +56245-56252 +56247-56252 +56247-56248 +56249-56252 +56250-56251 +56253-56274 +56253-56274 +56253-56261 +56255-56257 +56256-56257 +56258-56261 +56259-56261 +56260-56261 +56262-56274 +56263-56274 +56265-56266 +56267-56274 +56268-56274 +56268-56272 +56269-56272 +56273-56274 +56275-56285 +56275-56285 +56275-56276 +56277-56279 +56278-56279 +56281-56285 +56282-56285 +56282-56283 +56284-56285 +56286-56309 +56286-56309 +56287-56309 +56287-56294 +56288-56289 +56290-56291 +56292-56294 +56295-56309 +56296-56309 +56298-56309 +56300-56301 +56302-56309 +56304-56309 +56305-56309 +56305-56307 +56306-56307 +56310-56324 +56310-56324 +56311-56324 +56313-56324 +56313-56317 +56313-56315 +56314-56315 +56316-56317 +56318-56324 +56320-56324 +56321-56324 +56321-56322 +56325-56335 +56325-56335 +56326-56335 +56328-56335 +56328-56330 +56331-56335 +56333-56335 +56334-56335 +56336-56354 +56336-56354 +56338-56354 +56338-56347 +56338-56343 +56338-56340 +56341-56343 +56342-56343 +56344-56347 +56347 +56348-56354 +56349-56354 +56349-56350 +56352-56354 +56352-56353 +56355-56369 +56355-56369 +56356-56369 +56356-56357 +56358-56369 +56359-56369 +56360-56369 +56360-56363 +56361-56362 +56364-56369 +56365-56369 +56366-56368 +56366-56367 +56370-56382 +56370-56382 +56370-56376 +56372-56376 +56373-56376 +56375-56376 +56377-56382 +56378-56382 +56381-56382 +56383-56405 +56383-56405 +56383-56385 +56384-56385 +56386-56405 +56387-56405 +56389-56405 +56390-56405 +56390-56394 +56390-56391 +56392-56393 +56396-56405 +56396-56400 +56399-56400 +56401-56405 +56402-56405 +56403-56405 +56404-56405 +56406-56424 +56406-56424 +56406-56412 +56407-56412 +56408-56412 +56408-56409 +56413-56424 +56414-56424 +56414-56422 +56415-56422 +56415-56417 +56418-56422 +56419-56422 +56419-56421 +56420-56421 +56423-56424 +56425-56435 +56425-56435 +56425-56427 +56426-56427 +56430-56435 +56431-56435 +56433-56435 +56434-56435 +56435 +56436-56445 +56436-56445 +56436-56441 +56437-56441 +56440-56441 +56444-56445 +56446-56458 +56446-56458 +56446 +56447-56458 +56448-56458 +56450-56458 +56450-56454 +56450-56451 +56455-56458 +56456-56458 +56459-56462 +56459-56462 +56460-56462 +56463-56479 +56463-56479 +56463-56468 +56465-56468 +56466-56468 +56469-56479 +56470-56479 +56470-56471 +56473-56479 +56475-56479 +56476-56479 +56477-56479 +56478-56479 +56480-56491 +56480-56491 +56480-56481 +56482-56491 +56483-56491 +56484-56491 +56485-56491 +56485-56487 +56487 +56488-56491 +56489-56491 +56490-56491 +56492-56505 +56492-56505 +56494-56495 +56496-56505 +56497-56505 +56497-56498 +56499-56505 +56500-56505 +56500-56503 +56501-56503 +56502-56503 +56506-56510 +56506-56510 +56507-56510 +56509-56510 +56510 +56511-56513 +56511-56513 +56512-56513 +56514-56535 +56514-56535 +56515-56535 +56516-56517 +56518-56535 +56518-56525 +56518-56519 +56521-56524 +56522-56524 +56522-56523 +56526-56535 +56527-56535 +56527-56530 +56527-56529 +56528-56529 +56531-56535 +56532-56535 +56532-56533 +56533 +56536-56552 +56536-56552 +56536-56544 +56538-56544 +56538-56540 +56539-56540 +56541-56544 +56542-56544 +56542-56543 +56545-56552 +56546-56552 +56548-56552 +56549-56552 +56549-56550 +56553-56563 +56553-56563 +56555-56556 +56557-56563 +56557-56559 +56558-56559 +56560-56563 +56561-56563 +56564-56572 +56564-56572 +56565-56572 +56565-56568 +56567-56568 +56568 +56569-56572 +56569-56571 +56570-56571 +56573-56595 +56573-56595 +56574-56595 +56575-56595 +56577-56595 +56577-56590 +56577-56590 +56578-56590 +56579-56587 +56580-56582 +56581-56582 +56583-56587 +56584-56587 +56585-56587 +56586-56587 +56589-56590 +56591-56593 +56594-56595 +56595 +56596-56605 +56596-56605 +56597-56605 +56597-56601 +56598-56601 +56599-56601 +56600-56601 +56603-56605 +56604-56605 +56606-56626 +56606-56626 +56606-56609 +56607-56608 +56610-56626 +56611-56626 +56611-56616 +56611-56612 +56613-56615 +56614-56615 +56617-56626 +56618-56626 +56618-56623 +56618-56620 +56619-56620 +56622-56623 +56624-56626 +56625-56626 +56627-56644 +56627-56644 +56627-56634 +56627-56631 +56628-56631 +56628-56630 +56628-56629 +56632-56634 +56632-56633 +56635-56644 +56636-56644 +56636-56639 +56636-56637 +56640-56644 +56641-56644 +56642-56644 +56643-56644 +56645-56660 +56645-56660 +56646-56660 +56646-56653 +56646-56649 +56647-56648 +56650-56653 +56651-56653 +56652-56653 +56654-56660 +56655-56660 +56657-56660 +56657-56658 +56659-56660 +56661-56667 +56661-56667 +56661-56663 +56662-56663 +56666-56667 +56668-56676 +56668-56676 +56669-56676 +56672-56676 +56674-56676 +56677-56692 +56677-56692 +56678-56692 +56680-56681 +56682-56692 +56683-56692 +56684-56692 +56686-56692 +56687-56692 +56689-56692 +56690-56692 +56691-56692 +56693-56707 +56693-56707 +56693-56701 +56693-56699 +56693-56697 +56694-56697 +56696-56697 +56700-56701 +56701 +56702-56707 +56703-56707 +56706-56707 +56708-56711 +56708-56711 +56710-56711 +56712-56724 +56712-56724 +56712-56717 +56712-56716 +56713-56716 +56713-56714 +56718-56724 +56719-56724 +56719-56721 +56719 +56720-56721 +56721 +56722-56724 +56723-56724 +56725-56736 +56725-56736 +56725-56726 +56729-56736 +56730-56736 +56731-56736 +56732-56736 +56732 +56733-56734 +56734 +56735-56736 +56736 +56737-56744 +56737-56744 +56739-56744 +56740-56744 +56740-56741 +56742-56744 +56743-56744 +56745-56750 +56745-56750 +56747-56750 +56748-56750 +56749-56750 +56751-56761 +56751-56761 +56751-56754 +56752-56754 +56753-56754 +56755-56757 +56756-56757 +56759-56761 +56760-56761 +56762-56800 +56762-56800 +56762-56790 +56762-56783 +56762-56777 +56762-56773 +56762-56767 +56763-56767 +56764-56767 +56765-56767 +56768-56773 +56771-56772 +56775-56777 +56775-56776 +56778-56781 +56779-56781 +56780-56781 +56782-56783 +56783 +56784-56790 +56785-56790 +56785-56788 +56785-56786 +56789-56790 +56790 +56792-56800 +56792-56793 +56794-56800 +56795-56800 +56798-56800 +56799-56800 +56801-56824 +56801-56824 +56801-56806 +56803-56806 +56804-56806 +56805-56806 +56807-56824 +56808-56824 +56808-56810 +56809-56810 +56811-56815 +56812-56815 +56814-56815 +56816-56824 +56817-56824 +56817-56820 +56819-56820 +56821-56824 +56823-56824 +56825-56832 +56825-56832 +56826-56832 +56826-56828 +56827-56828 +56830-56832 +56831-56832 +56833-56843 +56833-56843 +56834-56843 +56834-56835 +56837-56843 +56840-56843 +56841-56843 +56841-56842 +56844-56858 +56844-56858 +56844-56847 +56844-56846 +56848-56858 +56849-56858 +56849-56852 +56849-56851 +56850-56851 +56853-56858 +56854-56858 +56855-56858 +56855-56856 +56857-56858 +56859-56874 +56859-56874 +56859-56860 +56862-56863 +56865-56874 +56866-56874 +56868-56870 +56869-56870 +56871-56874 +56872-56874 +56875-56885 +56875-56885 +56875-56879 +56878-56879 +56880-56885 +56881-56885 +56884-56885 +56886-56895 +56886-56895 +56886-56889 +56888-56889 +56890-56895 +56891-56895 +56893-56895 +56896-56903 +56896-56903 +56896-56898 +56897-56898 +56900-56903 +56901-56903 +56902-56903 +56904-56913 +56904-56913 +56907-56909 +56908-56909 +56910-56913 +56911-56913 +56911-56912 +56914-56925 +56914-56925 +56915-56925 +56916-56918 +56917-56918 +56919-56925 +56919-56922 +56919-56920 +56921-56922 +56922 +56923-56925 +56926-56939 +56926-56939 +56928-56939 +56928-56930 +56929-56930 +56933 +56934-56939 +56935-56939 +56937-56939 +56937-56938 +56940-56946 +56940-56946 +56942-56943 +56944-56946 +56945-56946 +56947-56960 +56947-56960 +56947-56948 +56949-56960 +56950-56960 +56951-56952 +56953-56955 +56954-56955 +56956-56960 +56957-56960 +56958-56960 +56959-56960 +56961-56982 +56961-56982 +56962-56982 +56962-56965 +56964-56965 +56966-56982 +56967-56982 +56969-56982 +56969-56970 +56971-56973 +56972-56973 +56975-56982 +56975-56979 +56976-56979 +56978-56979 +56980-56982 +56983-56991 +56983-56991 +56985-56986 +56987-56991 +56987-56988 +56989-56991 +56990-56991 +56992-57018 +56992-57018 +56992-57006 +56992-57002 +56992-57002 +56993-57002 +56994-57002 +56997-57002 +56998-57002 +56999-57002 +57000-57002 +57001-57002 +57005-57006 +57007-57018 +57008-57018 +57011-57018 +57012-57018 +57014-57018 +57015-57018 +57016-57018 +57017-57018 +57019-57053 +57019-57053 +57019-57029 +57019-57022 +57020-57022 +57021-57022 +57023-57025 +57024-57025 +57027-57029 +57030-57037 +57031-57037 +57031-57032 +57033-57037 +57036-57037 +57038-57044 +57039-57044 +57039-57040 +57042-57044 +57043-57044 +57045-57053 +57046-57053 +57050-57053 +57051-57053 +57052-57053 +57054-57071 +57054-57071 +57054-57062 +57054-57056 +57054-57056 +57055-57056 +57057-57059 +57063-57071 +57064-57071 +57066-57071 +57067-57071 +57068-57071 +57069-57071 +57070-57071 +57072-57077 +57072-57077 +57072-57075 +57073-57075 +57074-57075 +57078-57085 +57078-57085 +57081-57082 +57083-57085 +57084-57085 +57086-57103 +57086-57103 +57088-57089 +57090-57103 +57090-57092 +57091-57092 +57095-57097 +57096-57097 +57098-57103 +57098-57101 +57099-57101 +57099-57100 +57104-57124 +57104-57124 +57106-57107 +57108-57124 +57108-57116 +57108-57113 +57108-57110 +57109-57110 +57114-57116 +57115-57116 +57115-57116 +57117-57124 +57118-57124 +57119-57124 +57120-57121 +57125-57140 +57125-57140 +57127-57128 +57129-57140 +57130-57140 +57130-57131 +57132-57135 +57133-57135 +57134-57135 +57136-57140 +57137-57140 +57139-57140 +57141-57176 +57141-57176 +57141-57157 +57142-57157 +57142-57151 +57145-57151 +57145-57146 +57147-57150 +57148-57150 +57149-57150 +57152-57157 +57153-57157 +57155 +57156-57157 +57158-57170 +57158-57168 +57158-57166 +57158-57161 +57159-57160 +57162-57166 +57163-57166 +57164-57166 +57165-57166 +57170 +57172-57176 +57173-57176 +57173-57175 +57174-57175 +57177-57187 +57177-57187 +57177-57184 +57178-57184 +57180-57184 +57181-57184 +57182-57184 +57183-57184 +57185-57187 +57188-57210 +57188-57210 +57189-57210 +57189-57197 +57189-57190 +57190 +57191-57197 +57191-57194 +57192-57194 +57195-57197 +57195-57196 +57198-57210 +57199-57210 +57199 +57200-57201 +57201 +57202-57210 +57203-57210 +57203-57206 +57203-57204 +57205-57206 +57207-57210 +57208-57210 +57209-57210 +57211-57215 +57211-57215 +57212-57215 +57213-57214 +57216-57221 +57216-57221 +57217-57221 +57218-57221 +57219-57221 +57220-57221 +57222-57239 +57222-57239 +57223-57239 +57223-57236 +57225-57227 +57226-57227 +57228-57236 +57229-57236 +57230-57236 +57231-57236 +57232-57233 +57235-57236 +57237-57239 +57238-57239 +57240-57261 +57240-57261 +57241-57261 +57241-57244 +57243-57244 +57245-57261 +57246-57261 +57247-57261 +57248-57261 +57248-57252 +57249-57252 +57250-57251 +57253-57261 +57254-57261 +57254-57259 +57255-57259 +57258-57259 +57262-57267 +57262-57267 +57263-57267 +57265-57266 +57268-57283 +57268-57283 +57269-57283 +57270-57283 +57270-57272 +57270-57271 +57271 +57273-57283 +57273-57274 +57275-57283 +57276-57283 +57277-57283 +57278-57283 +57279-57283 +57280-57283 +57281-57283 +57282-57283 +57284-57304 +57284-57304 +57285-57304 +57287-57299 +57288-57299 +57288-57291 +57289-57290 +57292-57299 +57293-57299 +57294-57296 +57295-57296 +57297-57299 +57298-57299 +57300-57304 +57300-57303 +57300-57302 +57301-57302 +57305-57316 +57305-57316 +57306-57316 +57307-57308 +57309-57310 +57311-57316 +57312-57316 +57312 +57314-57315 +57317-57342 +57317-57342 +57318-57342 +57318 +57319-57320 +57322-57342 +57322-57334 +57322-57328 +57322-57324 +57323-57324 +57327-57328 +57329-57334 +57330-57334 +57330-57334 +57331-57334 +57332-57334 +57333-57334 +57335-57342 +57336-57342 +57337-57340 +57338-57340 +57339-57340 +57341-57342 +57343-57355 +57343-57355 +57344-57355 +57345-57346 +57347-57355 +57347-57348 +57349-57352 +57350-57352 +57351-57352 +57353-57355 +57354-57355 +57356-57369 +57356-57369 +57357-57369 +57357-57360 +57358-57360 +57359-57360 +57360 +57361-57369 +57362-57369 +57364-57367 +57365-57367 +57365-57366 +57368-57369 +57370-57380 +57370-57380 +57371-57372 +57374-57375 +57376-57380 +57377-57379 +57378-57379 +57381-57395 +57381-57395 +57383-57384 +57385-57395 +57385 +57386-57391 +57388-57389 +57390-57391 +57392-57395 +57393-57395 +57396-57403 +57396-57403 +57398-57403 +57399-57403 +57399-57400 +57402-57403 +57404-57418 +57404-57418 +57404-57409 +57405-57409 +57407-57409 +57408-57409 +57412-57418 +57413-57418 +57413-57417 +57414-57417 +57415-57417 +57415-57416 +57419-57433 +57419-57433 +57420-57433 +57420-57425 +57421-57425 +57423-57425 +57424-57425 +57427-57433 +57428-57433 +57428-57429 +57432-57433 +57434-57450 +57434-57450 +57434-57435 +57436-57450 +57437-57450 +57437-57438 +57441-57450 +57441-57445 +57441-57444 +57442-57444 +57443-57444 +57446-57450 +57447-57450 +57447 +57448-57450 +57449-57450 +57451-57459 +57451-57459 +57452-57459 +57453-57454 +57456-57459 +57456 +57457-57458 +57458 +57460-57467 +57460-57467 +57461-57467 +57462-57463 +57464-57467 +57465-57467 +57466-57467 +57468-57477 +57468-57477 +57469-57477 +57471-57477 +57472-57477 +57472-57476 +57473-57476 +57474-57476 +57475-57476 +57478-57500 +57478-57500 +57479-57500 +57482-57483 +57485-57500 +57485-57496 +57485-57486 +57487-57496 +57488-57496 +57488-57490 +57489-57490 +57491-57492 +57492 +57493-57496 +57494-57496 +57497-57500 +57498-57500 +57499-57500 +57501-57515 +57501-57515 +57502-57515 +57503-57506 +57504-57506 +57505-57506 +57507-57508 +57509-57515 +57509-57511 +57510-57511 +57512-57515 +57513-57515 +57514-57515 +57516-57528 +57516-57528 +57517-57528 +57517 +57518-57519 +57521-57528 +57522-57523 +57526-57528 +57527-57528 +57529-57538 +57529-57538 +57530-57538 +57532-57534 +57533-57534 +57535-57538 +57536-57538 +57537-57538 +57539-57555 +57539-57555 +57540-57555 +57540-57543 +57541-57543 +57542-57543 +57545-57549 +57546-57549 +57547-57549 +57548-57549 +57550-57555 +57551-57555 +57553-57555 +57554-57555 +57556-57565 +57556-57565 +57557-57565 +57557-57561 +57558-57561 +57559-57561 +57560-57561 +57562-57565 +57562-57563 +57566-57571 +57566-57571 +57567-57571 +57568-57570 +57569-57570 +57572-57600 +57572-57600 +57573-57600 +57574-57575 +57576-57577 +57578-57600 +57578 +57579-57587 +57579-57581 +57580-57581 +57582-57587 +57583-57587 +57585-57587 +57586-57587 +57588-57600 +57591-57600 +57592-57600 +57592-57596 +57593-57596 +57595-57596 +57599-57600 +57601-57608 +57601-57608 +57603-57604 +57605-57608 +57606-57608 +57607-57608 +57609-57622 +57609-57622 +57611-57612 +57613-57622 +57614-57622 +57615-57622 +57616-57618 +57617-57618 +57619-57622 +57620-57622 +57621-57622 +57623-57633 +57623-57633 +57625-57626 +57627-57633 +57629-57633 +57629-57630 +57631-57633 +57632-57633 +57634-57654 +57634-57654 +57634-57640 +57634-57637 +57635-57637 +57636-57637 +57638-57639 +57639 +57641-57654 +57642-57654 +57642-57648 +57643-57648 +57644-57648 +57644 +57645-57648 +57646-57648 +57647-57648 +57649-57650 +57652-57654 +57653-57654 +57655-57656 +57655-57656 +57657-57676 +57657-57676 +57659-57676 +57659-57660 +57660 +57661-57676 +57663-57676 +57664-57676 +57666-57676 +57666-57671 +57666-57667 +57668-57671 +57669-57671 +57670-57671 +57672-57676 +57673-57676 +57673-57675 +57674-57675 +57677-57694 +57677-57694 +57678-57694 +57678-57680 +57678-57679 +57681-57694 +57682-57694 +57683-57686 +57684-57686 +57685-57686 +57688-57694 +57689-57694 +57689-57691 +57689-57690 +57692-57694 +57693-57694 +57695-57704 +57695-57704 +57696-57704 +57696-57700 +57697-57698 +57698 +57701-57704 +57702-57704 +57703-57704 +57705-57723 +57705-57723 +57706-57723 +57707-57712 +57708-57709 +57710-57712 +57711-57712 +57714-57723 +57716-57723 +57717-57723 +57718-57723 +57719-57723 +57722-57723 +57724-57755 +57724-57755 +57725-57755 +57725-57736 +57725-57726 +57727-57736 +57728-57736 +57728-57733 +57729-57730 +57731-57733 +57732-57733 +57734-57736 +57735-57736 +57737-57744 +57738-57739 +57740-57744 +57741-57744 +57741-57742 +57743-57744 +57744 +57747-57755 +57748-57755 +57749-57755 +57750-57752 +57751-57752 +57753-57755 +57754-57755 +57756-57782 +57756-57782 +57757-57782 +57757-57758 +57759-57763 +57760-57763 +57761-57763 +57764-57765 +57767-57770 +57768-57770 +57769-57770 +57771-57782 +57773-57782 +57773 +57774-57776 +57775-57776 +57778-57782 +57780-57782 +57781-57782 +57783-57805 +57783-57805 +57784-57805 +57784 +57785-57794 +57786-57794 +57787-57794 +57787-57788 +57789-57794 +57790-57794 +57790-57793 +57791-57793 +57791-57792 +57795-57805 +57795-57800 +57795-57797 +57796-57797 +57798-57800 +57799-57800 +57801-57805 +57802-57805 +57803-57805 +57806-57811 +57806-57811 +57808-57811 +57808 +57809 +57810-57811 +57811 +57812-57814 +57812-57814 +57813-57814 +57815-57822 +57815-57822 +57816-57822 +57817-57818 +57819-57822 +57823-57842 +57823-57842 +57824-57842 +57824-57826 +57825-57826 +57828-57842 +57829-57842 +57830-57836 +57831-57836 +57832-57836 +57833-57836 +57834-57836 +57835-57836 +57837-57842 +57837 +57838-57842 +57839-57842 +57839-57840 +57843-57852 +57843-57852 +57844-57852 +57845-57848 +57847-57848 +57850-57852 +57851-57852 +57853-57860 +57853-57860 +57854-57860 +57854-57855 +57856-57860 +57857-57860 +57859-57860 +57861-57866 +57861-57866 +57862-57863 +57864-57866 +57865-57866 +57867-57879 +57867-57879 +57869-57873 +57869-57872 +57870-57872 +57871-57872 +57872 +57874-57879 +57874 +57875-57876 +57877-57879 +57878-57879 +57880-57894 +57880-57894 +57882-57883 +57884-57894 +57885-57894 +57887-57894 +57888-57894 +57888-57889 +57889 +57890-57894 +57891-57894 +57892-57894 +57893-57894 +57895-57898 +57895-57898 +57896-57898 +57897-57898 +57899-57933 +57899-57933 +57900-57933 +57900-57905 +57900-57901 +57903-57904 +57906-57933 +57907-57933 +57908-57933 +57908 +57909-57920 +57909-57913 +57911-57913 +57912-57913 +57914-57920 +57915-57920 +57917-57920 +57918-57920 +57921-57933 +57922-57933 +57922-57926 +57923-57926 +57923-57924 +57925-57926 +57926 +57928-57933 +57929-57933 +57930-57933 +57931-57933 +57934-57942 +57934-57942 +57935-57942 +57935-57936 +57937-57938 +57940-57942 +57940 +57943-57958 +57943-57958 +57943-57952 +57944-57945 +57945 +57946-57952 +57947-57951 +57947-57948 +57949-57951 +57950-57951 +57953-57958 +57954-57958 +57954-57956 +57955-57956 +57959-57968 +57959-57968 +57961-57962 +57963-57968 +57963-57964 +57965-57968 +57966-57968 +57967-57968 +57969-57985 +57969-57985 +57970-57985 +57970-57982 +57970-57973 +57971-57973 +57972-57973 +57974-57982 +57975-57982 +57975-57978 +57976-57978 +57977-57978 +57979-57982 +57980-57982 +57981-57982 +57984-57985 +57986-57999 +57986-57999 +57987-57999 +57987-57993 +57987-57989 +57988-57989 +57991-57993 +57992-57993 +57994-57999 +57995-57999 +57997-57999 +58000-58018 +58000-58018 +58001-58018 +58001-58007 +58002-58006 +58002-58003 +58004-58006 +58005-58006 +58008-58018 +58009-58018 +58010-58018 +58010-58011 +58012-58018 +58013-58018 +58013-58015 +58014-58015 +58016-58017 +58019-58039 +58019-58039 +58019-58022 +58020-58022 +58023-58039 +58023-58026 +58025-58026 +58027-58039 +58028-58039 +58028-58030 +58029-58030 +58031-58039 +58032-58039 +58033-58039 +58034-58039 +58034-58036 +58035-58036 +58037-58039 +58038-58039 +58040-58074 +58040-58074 +58041-58074 +58041-58045 +58041-58044 +58041-58042 +58043-58044 +58046-58050 +58048-58050 +58048-58049 +58053-58074 +58053-58056 +58057-58074 +58058-58074 +58059-58074 +58060-58074 +58062-58074 +58063-58074 +58063-58068 +58063-58064 +58066-58068 +58067-58068 +58069-58074 +58070-58074 +58071-58073 +58072-58073 +58075-58112 +58075-58112 +58076-58112 +58076-58080 +58077-58078 +58081-58112 +58082-58112 +58082-58086 +58084-58086 +58084-58085 +58088-58112 +58089-58112 +58091-58112 +58091-58094 +58092-58094 +58093-58094 +58095-58112 +58096-58112 +58097-58100 +58097-58099 +58098-58099 +58102-58112 +58103-58112 +58103-58109 +58104-58109 +58104-58107 +58105-58107 +58106-58107 +58108-58109 +58109 +58111-58112 +58113-58121 +58113-58121 +58114-58121 +58114-58117 +58115-58117 +58116-58117 +58119-58121 +58120-58121 +58122-58148 +58122-58148 +58123-58148 +58123-58130 +58123-58124 +58128-58130 +58129-58130 +58131-58148 +58132-58148 +58134-58139 +58135-58139 +58136-58139 +58137-58139 +58138-58139 +58140-58143 +58141-58143 +58141-58142 +58144-58148 +58146-58148 +58147-58148 +58149-58169 +58149-58169 +58150-58169 +58150-58155 +58152-58155 +58153-58155 +58154-58155 +58156-58169 +58157-58169 +58159-58160 +58161-58163 +58162-58163 +58164-58166 +58165-58166 +58167-58169 +58168-58169 +58170-58191 +58170-58191 +58171-58191 +58171-58173 +58172-58173 +58174-58191 +58175-58191 +58176-58177 +58178-58181 +58178-58180 +58179-58180 +58182-58191 +58185-58191 +58186-58191 +58186-58187 +58189-58191 +58190-58191 +58192-58209 +58192-58209 +58193-58209 +58194-58198 +58194-58195 +58196-58198 +58197-58198 +58200-58209 +58201-58209 +58201-58206 +58201-58205 +58202-58205 +58204-58205 +58206 +58207-58209 +58208-58209 +58210-58228 +58210-58228 +58211-58228 +58211-58212 +58213-58217 +58214-58217 +58215-58217 +58216-58217 +58219-58228 +58220-58228 +58221-58228 +58223-58228 +58224-58228 +58226-58227 +58229-58247 +58229-58247 +58230-58247 +58230-58237 +58230-58233 +58234-58237 +58235-58237 +58235-58236 +58238-58247 +58239-58247 +58239-58240 +58242-58247 +58243-58247 +58244-58247 +58245-58247 +58246-58247 +58248-58269 +58248-58269 +58249-58269 +58249-58261 +58249-58250 +58251-58256 +58252-58256 +58253-58256 +58253-58255 +58253-58254 +58258-58261 +58259-58261 +58260-58261 +58262-58269 +58263-58269 +58264-58266 +58265-58266 +58267-58269 +58268-58269 +58270-58278 +58270-58278 +58271-58278 +58271-58272 +58274-58278 +58275-58278 +58276-58278 +58277-58278 +58279-58303 +58279-58303 +58280-58303 +58281-58291 +58281-58287 +58281-58283 +58282-58283 +58284-58287 +58285-58287 +58286-58287 +58288-58291 +58289-58291 +58290-58291 +58292-58303 +58292-58300 +58292-58293 +58294-58296 +58295-58296 +58299-58300 +58301-58303 +58302-58303 +58304-58324 +58304-58324 +58305-58324 +58305-58317 +58307-58317 +58308-58313 +58309-58313 +58309-58311 +58310-58311 +58315-58317 +58316-58317 +58318-58324 +58319-58324 +58319-58321 +58319-58320 +58322-58323 +58323 +58325-58351 +58325-58351 +58326-58351 +58327-58328 +58329-58351 +58329-58339 +58331-58339 +58332-58339 +58332-58337 +58333-58337 +58334-58337 +58335-58337 +58336-58337 +58340-58351 +58341-58351 +58341-58346 +58341-58342 +58345-58346 +58347-58351 +58348-58351 +58352-58379 +58352-58379 +58353-58379 +58353-58362 +58354-58359 +58355-58359 +58355-58356 +58357-58359 +58358-58359 +58360-58362 +58361-58362 +58363-58379 +58364-58379 +58364-58369 +58366-58368 +58367-58368 +58370-58379 +58371-58379 +58372-58379 +58374-58379 +58375-58379 +58376-58379 +58378-58379 +58380-58400 +58380-58400 +58381-58400 +58381-58388 +58382-58383 +58384-58388 +58385-58388 +58385-58387 +58386-58387 +58389-58400 +58390-58400 +58390-58395 +58390-58392 +58391-58392 +58393-58394 +58396-58400 +58397-58400 +58398-58400 +58399-58400 +58401-58440 +58401-58440 +58401-58421 +58401-58402 +58403-58410 +58403-58405 +58403-58404 +58406-58410 +58407-58410 +58408-58410 +58409-58410 +58411-58416 +58412-58416 +58413-58416 +58415-58416 +58418-58421 +58419-58421 +58420-58421 +58422-58426 +58423-58426 +58424-58426 +58425-58426 +58427-58440 +58428-58440 +58429-58440 +58429 +58430 +58431-58440 +58431-58435 +58432-58435 +58433-58435 +58434-58435 +58436-58440 +58437-58440 +58438-58440 +58439-58440 +58441-58464 +58441-58464 +58442-58464 +58442-58448 +58442-58443 +58444-58445 +58447-58448 +58449-58464 +58450-58464 +58450-58451 +58452-58464 +58452-58455 +58454-58455 +58454-58455 +58456-58464 +58457-58459 +58458-58459 +58461-58464 +58462-58464 +58463-58464 +58465-58488 +58465-58488 +58465-58472 +58468-58470 +58469-58470 +58471-58472 +58473-58488 +58474-58488 +58474-58476 +58475-58476 +58477-58488 +58477-58478 +58480-58488 +58480-58484 +58481-58482 +58483-58484 +58485-58488 +58486-58488 +58489-58508 +58489-58508 +58490-58508 +58491-58496 +58491-58492 +58493-58496 +58494-58496 +58495-58496 +58497-58508 +58498-58508 +58498-58503 +58498-58499 +58501-58503 +58502-58503 +58504-58508 +58505-58508 +58507-58508 +58509-58522 +58509-58522 +58509-58515 +58509-58510 +58514-58515 +58516-58522 +58517-58522 +58518-58522 +58519-58522 +58521-58522 +58523-58539 +58523-58539 +58524-58539 +58524-58525 +58527-58528 +58529-58539 +58529-58533 +58530-58533 +58531-58533 +58534-58539 +58535-58536 +58537-58538 +58540-58551 +58540-58551 +58541-58551 +58542-58543 +58544-58551 +58545-58551 +58546-58551 +58546 +58547-58551 +58548-58551 +58549-58551 +58550-58551 +58552-58569 +58552-58569 +58553-58569 +58553-58560 +58555-58560 +58556-58560 +58557-58560 +58558-58560 +58559-58560 +58561-58569 +58562-58569 +58564-58569 +58565-58569 +58565 +58567-58569 +58567-58568 +58570-58576 +58570-58576 +58570-58572 +58571-58572 +58573-58576 +58574-58576 +58575-58576 +58577-58584 +58577-58584 +58577-58580 +58578-58580 +58579-58580 +58581-58584 +58582-58584 +58583-58584 +58585-58599 +58585-58599 +58586-58599 +58586-58587 +58590-58599 +58591-58599 +58591-58593 +58592-58593 +58594-58599 +58595-58599 +58596-58599 +58597-58599 +58598-58599 +58600-58623 +58600-58623 +58601-58623 +58602-58623 +58604-58623 +58604-58617 +58604-58614 +58605-58614 +58606-58609 +58607-58609 +58608-58609 +58610-58613 +58611-58613 +58612-58613 +58618-58623 +58619-58623 +58619-58620 +58620 +58621-58622 +58624-58645 +58624-58645 +58624-58630 +58624-58628 +58625-58628 +58626-58628 +58627-58628 +58631-58645 +58632-58645 +58632-58640 +58633-58640 +58634-58636 +58635-58636 +58637-58640 +58638-58640 +58638-58639 +58641-58643 +58642-58643 +58646-58662 +58646-58662 +58646-58651 +58646-58649 +58647-58649 +58652-58662 +58653-58662 +58653-58655 +58656-58662 +58657-58661 +58658-58661 +58659-58661 +58660-58661 +58663-58670 +58663-58670 +58663-58666 +58664-58666 +58669-58670 +58671-58675 +58671-58675 +58672-58674 +58673-58674 +58676-58678 +58676-58678 +58677-58678 +58679-58685 +58679-58685 +58679 +58682-58685 +58683-58685 +58683-58684 +58686-58693 +58686-58693 +58687-58693 +58687-58688 +58690-58693 +58691-58693 +58691-58692 +58694-58698 +58694-58698 +58694 +58696-58698 +58697-58698 +58699-58709 +58699-58709 +58700-58709 +58702-58704 +58703-58704 +58705-58709 +58705-58706 +58706 +58707-58709 +58708-58709 +58710-58719 +58710-58719 +58711-58719 +58711-58716 +58711-58712 +58713-58716 +58714-58716 +58714 +58715-58716 +58716 +58718-58719 +58720-58724 +58720-58724 +58722-58724 +58725-58738 +58725-58738 +58725-58726 +58727-58738 +58728-58738 +58729-58738 +58730-58735 +58730-58731 +58732-58734 +58732-58733 +58737-58738 +58737-58738 +58739-58752 +58739-58752 +58739-58744 +58741-58744 +58742-58744 +58742-58743 +58745-58752 +58746-58750 +58747-58750 +58748-58750 +58748-58749 +58753-58762 +58753-58762 +58753-58758 +58754-58758 +58756-58758 +58757-58758 +58761-58762 +58763-58770 +58763-58770 +58764-58770 +58766-58770 +58767-58770 +58767-58768 +58770 +58771-58805 +58771-58805 +58772-58805 +58774-58775 +58776-58805 +58776-58798 +58776-58787 +58778-58780 +58779-58780 +58781-58787 +58782-58787 +58782-58783 +58785-58787 +58786-58787 +58788-58798 +58789-58798 +58792-58798 +58793-58798 +58794-58798 +58795-58798 +58796-58798 +58797-58798 +58799-58805 +58801-58805 +58802-58805 +58803-58805 +58804-58805 +58806-58818 +58806-58818 +58807-58818 +58809-58810 +58811-58818 +58812-58813 +58814-58815 +58816-58817 +58819-58828 +58819-58828 +58819 +58820-58823 +58821-58823 +58821-58822 +58824-58828 +58825-58828 +58829-58838 +58829-58838 +58830-58838 +58830-58834 +58831-58834 +58832-58834 +58833-58834 +58837-58838 +58839-58850 +58839-58850 +58839-58846 +58839-58842 +58840-58842 +58840-58841 +58843-58846 +58844-58846 +58845-58846 +58847-58850 +58848-58850 +58848-58849 +58851-58858 +58851-58858 +58851-58853 +58854-58858 +58855-58858 +58855 +58857-58858 +58859-58890 +58859-58890 +58860-58890 +58860-58869 +58860-58865 +58861-58862 +58864-58865 +58868-58869 +58870-58890 +58871-58890 +58871-58875 +58872-58875 +58873-58875 +58874-58875 +58877-58890 +58877-58878 +58879 +58880-58884 +58882-58884 +58883-58884 +58885-58890 +58886-58890 +58886-58888 +58887-58888 +58891-58922 +58891-58922 +58891-58892 +58895 +58896-58922 +58897-58922 +58900-58922 +58900-58908 +58900-58903 +58901-58903 +58902-58903 +58904-58908 +58905-58908 +58906-58908 +58907-58908 +58909-58922 +58910-58922 +58911-58922 +58911-58919 +58911-58913 +58912-58913 +58914-58917 +58915-58917 +58916-58917 +58918-58919 +58919 +58920-58922 +58921-58922 +58923-58934 +58923-58934 +58926-58934 +58927-58934 +58927-58930 +58928-58930 +58929-58930 +58931-58934 +58932-58934 +58933-58934 +58935-58966 +58935-58966 +58936-58966 +58936-58944 +58937-58941 +58938-58941 +58938-58940 +58939-58940 +58943-58944 +58945-58966 +58946-58966 +58946-58954 +58946-58948 +58947-58948 +58951-58954 +58952-58954 +58955-58966 +58956-58966 +58957-58960 +58958-58960 +58959-58960 +58962-58966 +58963-58966 +58963-58966 +58964-58966 +58965-58966 +58967-58992 +58967-58992 +58968-58992 +58968-58969 +58970-58992 +58971-58992 +58972-58992 +58972-58984 +58972-58979 +58972-58975 +58973-58975 +58974-58975 +58978-58979 +58980-58984 +58981-58984 +58981-58984 +58982-58984 +58983-58984 +58985-58992 +58986-58992 +58986-58988 +58987-58988 +58990-58992 +58991-58992 +58993-59009 +58993-59009 +58993-58998 +58995-58997 +58996-58997 +58999-59009 +59000-59009 +59000-59004 +59001-59004 +59002-59004 +59003-59004 +59005-59007 +59006-59007 +59010-59035 +59010-59035 +59011-59035 +59011-59023 +59011-59019 +59012-59019 +59012-59016 +59014-59016 +59015-59016 +59017-59019 +59018-59019 +59020-59023 +59024-59035 +59025-59035 +59026-59030 +59026 +59027-59030 +59028-59030 +59029-59030 +59032-59035 +59033-59035 +59034-59035 +59036-59079 +59036-59079 +59036-59044 +59037-59044 +59037-59038 +59039-59044 +59040-59044 +59042-59044 +59043-59044 +59046-59048 +59047-59048 +59049-59079 +59049-59059 +59049-59052 +59049-59052 +59050-59052 +59051-59052 +59056-59059 +59057-59059 +59058-59059 +59061-59079 +59061-59065 +59062-59063 +59066-59079 +59067-59079 +59067-59070 +59067-59070 +59068-59070 +59068-59069 +59075-59079 +59075-59076 +59077-59079 +59078-59079 +59080-59088 +59080-59088 +59081-59088 +59082-59088 +59083-59088 +59083-59085 +59084-59085 +59086-59087 +59089-59099 +59089-59099 +59090-59099 +59090-59092 +59093-59097 +59094-59097 +59096-59097 +59098-59099 +59100-59133 +59100-59133 +59101-59133 +59101-59105 +59102-59105 +59103-59105 +59104-59105 +59106-59107 +59108-59122 +59109-59122 +59110-59122 +59111-59113 +59112-59113 +59114-59122 +59115-59122 +59116-59119 +59117-59119 +59117-59118 +59120-59122 +59121-59122 +59123-59129 +59124-59129 +59124-59125 +59126-59129 +59127-59129 +59128-59129 +59130-59131 +59134-59182 +59134-59182 +59135-59182 +59135-59173 +59135-59136 +59137-59173 +59137-59149 +59137-59138 +59141-59143 +59142-59143 +59144-59149 +59145-59149 +59147-59149 +59148-59149 +59150-59173 +59150-59169 +59151-59169 +59151-59159 +59152-59159 +59155-59156 +59157-59159 +59158-59159 +59160-59169 +59161-59169 +59162-59169 +59162-59164 +59162-59163 +59165-59169 +59166-59169 +59166-59168 +59167-59168 +59171-59173 +59172-59173 +59174-59177 +59175-59177 +59176-59177 +59178-59182 +59179-59182 +59179-59180 +59183-59202 +59183-59202 +59183-59188 +59186-59188 +59187-59188 +59189-59202 +59190-59202 +59191-59202 +59191-59195 +59192-59195 +59193-59195 +59194-59195 +59196-59202 +59197-59202 +59198-59202 +59199-59202 +59200-59202 +59201-59202 +59203-59207 +59203-59207 +59204-59207 +59205-59207 +59206-59207 +59208-59215 +59208-59215 +59210-59215 +59210 +59213-59215 +59214-59215 +59216-59231 +59216-59231 +59216-59217 +59218-59231 +59219-59231 +59221-59231 +59221-59227 +59221-59223 +59228-59231 +59229-59231 +59230-59231 +59232-59243 +59232-59243 +59235-59243 +59235-59236 +59238-59240 +59239-59240 +59241-59243 +59242-59243 +59244-59255 +59244-59255 +59247-59255 +59247-59250 +59248-59250 +59251-59255 +59254-59255 +59256-59272 +59256-59272 +59258-59259 +59260-59272 +59260 +59262-59265 +59262-59264 +59263-59264 +59267-59272 +59267-59272 +59268-59272 +59268-59269 +59270-59272 +59271-59272 +59273-59309 +59273-59309 +59273-59296 +59276-59296 +59276-59289 +59276-59285 +59276-59277 +59277 +59281-59285 +59282-59285 +59283-59284 +59286-59289 +59287-59289 +59290-59296 +59291-59296 +59291-59293 +59294-59296 +59295-59296 +59297-59309 +59298-59309 +59299-59301 +59300-59301 +59302-59309 +59302-59303 +59305-59309 +59306-59309 +59310-59329 +59310-59329 +59311-59329 +59311-59323 +59312-59323 +59312-59315 +59313-59315 +59314-59315 +59316-59320 +59317-59320 +59318-59320 +59319-59320 +59321-59323 +59322-59323 +59324-59329 +59326-59329 +59327-59329 +59330-59342 +59330-59342 +59330-59337 +59333-59337 +59333-59337 +59333-59334 +59335-59337 +59336-59337 +59338-59342 +59339-59342 +59341-59342 +59342 +59343-59373 +59343-59373 +59344-59373 +59344-59361 +59344-59354 +59345-59354 +59345-59350 +59346-59350 +59346-59347 +59348-59350 +59349-59350 +59352-59354 +59353-59354 +59355-59361 +59355-59356 +59358-59361 +59359-59361 +59360-59361 +59362-59373 +59363-59373 +59366-59373 +59367-59373 +59367-59370 +59368-59370 +59371-59372 +59374-59390 +59374-59390 +59375-59390 +59376-59390 +59378-59390 +59378-59384 +59382-59384 +59383-59384 +59385-59390 +59386-59390 +59388-59390 +59389-59390 +59391-59398 +59391-59398 +59391-59393 +59392-59393 +59394-59398 +59394-59395 +59396-59398 +59397-59398 +59399-59403 +59399-59403 +59400-59402 +59401-59402 +59404-59407 +59404-59407 +59406-59407 +59408-59423 +59408-59423 +59409-59423 +59410-59423 +59410-59411 +59413-59423 +59413-59417 +59414-59417 +59415-59417 +59416-59417 +59419-59420 +59421-59423 +59422-59423 +59424-59437 +59424-59437 +59424-59425 +59428-59430 +59429-59430 +59430 +59431-59437 +59432-59437 +59432 +59433-59434 +59434 +59435-59437 +59436-59437 +59438-59456 +59438-59456 +59439-59456 +59440-59456 +59442-59456 +59442-59448 +59442-59446 +59443-59446 +59444-59446 +59445-59446 +59449-59456 +59450-59456 +59450-59452 +59451-59452 +59454-59456 +59455-59456 +59457-59476 +59457-59476 +59457-59462 +59457-59458 +59461-59462 +59463-59476 +59464-59476 +59464 +59465-59476 +59466-59476 +59467-59476 +59468-59476 +59469-59476 +59471-59476 +59472-59476 +59472-59474 +59473-59474 +59477-59485 +59477-59485 +59478-59479 +59480-59481 +59482-59485 +59483-59485 +59483-59484 +59486-59501 +59486-59501 +59486-59487 +59488-59492 +59489-59492 +59490-59492 +59491-59492 +59493-59497 +59494-59497 +59495-59497 +59496-59497 +59498-59501 +59500-59501 +59502-59515 +59502-59515 +59503-59515 +59503-59506 +59505-59506 +59507-59515 +59508-59515 +59510-59515 +59511-59515 +59513-59515 +59513-59514 +59516-59528 +59516-59528 +59517-59523 +59519-59523 +59520-59523 +59521-59523 +59522-59523 +59526-59528 +59526 +59529-59542 +59529-59542 +59530-59542 +59531-59532 +59533-59542 +59534-59542 +59535-59542 +59535-59539 +59538-59539 +59540-59542 +59541-59542 +59543-59552 +59543-59552 +59544-59552 +59544-59547 +59544-59546 +59545-59546 +59548-59552 +59549-59552 +59550-59552 +59551-59552 +59553-59562 +59553-59562 +59554-59562 +59554-59556 +59555-59556 +59559-59560 +59561-59562 +59563-59570 +59563-59570 +59564-59570 +59567-59570 +59567-59568 +59571-59580 +59571-59580 +59572-59580 +59573-59575 +59574-59575 +59575 +59576-59580 +59577-59578 +59581-59605 +59581-59605 +59582-59605 +59584-59588 +59585-59588 +59585-59586 +59589-59605 +59590-59605 +59593-59605 +59593-59599 +59594-59599 +59594-59595 +59597-59599 +59598-59599 +59600-59605 +59601-59605 +59602-59605 +59602-59603 +59606-59612 +59606-59612 +59607-59612 +59607-59609 +59608-59609 +59613-59615 +59613-59615 +59614-59615 +59616-59632 +59616-59632 +59617-59632 +59617-59618 +59618 +59619-59632 +59621-59632 +59621-59626 +59623-59626 +59624-59626 +59625-59626 +59627-59632 +59628-59632 +59628-59629 +59631-59632 +59633-59649 +59633-59649 +59633-59638 +59634-59638 +59634-59635 +59637-59638 +59639-59645 +59639-59641 +59640-59641 +59644-59645 +59646-59649 +59647-59649 +59650-59655 +59650-59655 +59650 +59653-59654 +59656-59674 +59656-59674 +59656-59657 +59658-59674 +59659-59674 +59659-59670 +59660-59670 +59661-59662 +59663-59670 +59664-59670 +59664-59667 +59664-59666 +59671-59674 +59671-59672 +59675-59689 +59675-59689 +59675-59681 +59675-59676 +59679-59681 +59680-59681 +59682-59689 +59682-59684 +59683-59684 +59686-59689 +59686-59687 +59690-59702 +59690-59702 +59690-59697 +59690-59691 +59694-59697 +59695-59697 +59695-59696 +59698-59702 +59699-59702 +59701-59702 +59703-59709 +59703-59709 +59705-59706 +59707-59709 +59707 +59710-59721 +59710-59721 +59712-59721 +59712-59718 +59712-59716 +59712-59713 +59719-59721 +59720-59721 +59722-59732 +59722-59732 +59725-59732 +59725 +59726-59727 +59730-59732 +59733-59738 +59733-59738 +59733-59735 +59734-59735 +59736-59737 +59739-59746 +59739-59746 +59741-59746 +59741-59743 +59742-59743 +59744-59745 +59747-59759 +59747-59759 +59748-59759 +59749-59759 +59751-59759 +59751-59752 +59755-59759 +59756-59759 +59760-59764 +59760-59764 +59762-59764 +59763-59764 +59765-59772 +59765-59772 +59765-59768 +59766-59768 +59767-59768 +59769-59772 +59769-59771 +59770-59771 +59773-59781 +59773-59781 +59773-59778 +59774-59778 +59775-59778 +59776-59778 +59777-59778 +59779-59780 +59782-59792 +59782-59792 +59783-59792 +59783-59784 +59784 +59785-59792 +59786-59792 +59788-59792 +59789-59792 +59790-59792 +59793-59813 +59793-59813 +59794-59813 +59794-59799 +59795-59799 +59795 +59796-59799 +59797-59799 +59800-59801 +59802-59806 +59803-59806 +59805-59806 +59807-59813 +59808-59813 +59808-59810 +59811-59812 +59814-59820 +59814-59820 +59815-59820 +59815-59817 +59819-59820 +59821-59832 +59821-59832 +59824-59832 +59824 +59827-59828 +59829-59832 +59831-59832 +59833-59845 +59833-59845 +59836-59845 +59838-59845 +59838-59839 +59840-59842 +59841-59842 +59843-59845 +59844-59845 +59846-59854 +59846-59854 +59848-59850 +59849-59850 +59851-59854 +59852-59854 +59853-59854 +59855-59863 +59855-59863 +59855-59857 +59856-59857 +59859-59863 +59859-59862 +59860-59862 +59861-59862 +59864-59869 +59864-59869 +59864-59867 +59864-59865 +59868-59869 +59869 +59870-59880 +59870-59880 +59873-59880 +59873 +59874-59877 +59876-59877 +59878-59880 +59879-59880 +59881-59894 +59881-59894 +59883-59884 +59885-59894 +59885-59889 +59885-59886 +59887-59888 +59890-59893 +59891-59893 +59894 +59895-59900 +59895-59900 +59895-59897 +59896-59897 +59899-59900 +59901-59907 +59901-59907 +59904-59907 +59906-59907 +59908-59920 +59908-59920 +59910-59920 +59911-59920 +59911-59914 +59912-59914 +59913-59914 +59915-59920 +59916-59920 +59916-59917 +59918-59919 +59921-59930 +59921-59930 +59921-59926 +59922-59926 +59923-59926 +59927-59928 +59931-59940 +59931-59940 +59932-59940 +59932-59933 +59934-59936 +59934-59935 +59938-59940 +59939-59940 +59941-59952 +59941-59952 +59943-59952 +59944-59952 +59944-59947 +59945-59947 +59946-59947 +59948-59952 +59949-59952 +59949-59950 +59951-59952 +59953-59960 +59953-59960 +59954-59960 +59954-59955 +59955 +59956-59960 +59956-59959 +59957-59959 +59957-59958 +59961-59985 +59961-59985 +59962-59985 +59963-59985 +59965-59985 +59965-59979 +59965-59968 +59965-59968 +59966-59968 +59967-59968 +59969-59975 +59969-59973 +59970-59973 +59971-59973 +59976-59979 +59977-59979 +59977-59978 +59980-59985 +59981-59985 +59982-59984 +59983-59984 +59986-60003 +59986-60003 +59987-60003 +59987-59996 +59987-59994 +59987-59994 +59988-59994 +59989-59994 +59991-59994 +59992-59994 +59993-59994 +59998-60003 +59999-60000 +60001-60003 +60002-60003 +60004-60013 +60004-60013 +60004-60011 +60005-60011 +60008-60011 +60009-60011 +60010-60011 +60012-60013 +60014-60021 +60014-60021 +60014-60016 +60015-60016 +60017-60021 +60017-60020 +60018-60020 +60019-60020 +60022-60053 +60022-60053 +60022-60025 +60024-60025 +60026-60053 +60027-60053 +60027-60037 +60027-60030 +60027-60028 +60031-60037 +60032-60037 +60033-60034 +60035-60037 +60036-60037 +60038-60053 +60038-60041 +60039-60041 +60040-60041 +60042-60053 +60042-60047 +60042-60043 +60044-60045 +60049-60053 +60049-60051 +60052-60053 +60053 +60054-60064 +60054-60064 +60057-60064 +60058-60064 +60058-60060 +60058-60059 +60061-60064 +60062-60064 +60062-60063 +60065-60071 +60065-60071 +60065-60068 +60069-60071 +60070-60071 +60072-60089 +60072-60089 +60073-60089 +60073-60079 +60073-60074 +60075-60076 +60080-60083 +60081-60083 +60084-60089 +60085-60089 +60085-60086 +60087-60089 +60087-60088 +60090-60108 +60090-60108 +60090-60093 +60091-60093 +60092-60093 +60096-60108 +60097-60108 +60097-60101 +60098-60101 +60099-60101 +60100-60101 +60102-60105 +60103-60105 +60104-60105 +60106-60108 +60107-60108 +60109-60121 +60109-60121 +60109-60116 +60109-60116 +60110-60116 +60110-60113 +60111-60113 +60112-60113 +60114-60116 +60115-60116 +60119-60121 +60120-60121 +60122-60137 +60122-60137 +60123-60137 +60123-60130 +60123-60125 +60124-60125 +60127-60130 +60128-60130 +60129-60130 +60131-60137 +60131-60133 +60134-60137 +60135-60137 +60138-60156 +60138-60156 +60140-60143 +60141-60143 +60142-60143 +60144-60156 +60144 +60145-60156 +60146-60156 +60146-60147 +60149-60156 +60150-60156 +60150-60152 +60153-60156 +60154-60156 +60155-60156 +60157-60184 +60157-60184 +60157-60158 +60159-60184 +60160-60184 +60162-60184 +60162-60175 +60162-60169 +60162-60165 +60163-60165 +60166-60169 +60166-60168 +60167-60168 +60170-60175 +60171-60175 +60171-60173 +60172-60173 +60176-60184 +60177-60184 +60177-60179 +60177-60178 +60180-60184 +60181-60184 +60182-60183 +60185-60193 +60185-60193 +60185-60188 +60186-60188 +60189-60191 +60190-60191 +60194-60206 +60194-60206 +60195-60206 +60195-60201 +60195-60198 +60196-60198 +60197-60198 +60202-60206 +60203-60206 +60203-60206 +60204-60206 +60204-60205 +60207-60212 +60207-60212 +60210-60212 +60210-60211 +60213-60239 +60213-60239 +60214-60239 +60214-60227 +60214-60227 +60214-60215 +60216-60227 +60217-60227 +60217-60219 +60218-60219 +60220-60227 +60222-60223 +60224-60227 +60225-60227 +60226-60227 +60228-60231 +60232-60239 +60233-60239 +60235-60239 +60236-60239 +60240-60247 +60240-60247 +60240-60242 +60243-60247 +60243-60245 +60244-60245 +60248-60255 +60248-60255 +60248-60252 +60249-60252 +60250-60252 +60250-60251 +60256-60262 +60256-60262 +60256-60260 +60258-60260 +60259-60260 +60261-60262 +60262 +60263-60272 +60263-60272 +60263 +60265-60272 +60268-60272 +60268 +60269-60272 +60270-60272 +60271-60272 +60273-60288 +60273-60288 +60273-60275 +60274-60275 +60277 +60278-60282 +60279-60282 +60280-60282 +60281-60282 +60283-60288 +60284-60288 +60284-60285 +60289-60298 +60289-60298 +60290-60298 +60293-60294 +60294 +60295-60298 +60296-60298 +60296-60297 +60297 +60298 +60299-60309 +60299-60309 +60302-60303 +60304-60309 +60305-60309 +60306-60309 +60307-60309 +60307-60308 +60310-60332 +60310-60332 +60311-60332 +60311-60315 +60311-60312 +60316-60332 +60317-60332 +60318-60332 +60319-60320 +60321-60332 +60322-60332 +60322-60324 +60323-60324 +60325-60332 +60326-60332 +60326-60330 +60327-60330 +60329-60330 +60331-60332 +60333-60335 +60333-60335 +60333 +60334-60335 +60336-60348 +60336-60348 +60336-60341 +60338-60341 +60339-60341 +60340-60341 +60342-60348 +60343-60348 +60343-60345 +60344-60345 +60346-60347 +60349-60368 +60349-60368 +60349-60357 +60349-60355 +60349-60355 +60349-60352 +60350-60352 +60351-60352 +60353-60355 +60358-60368 +60359-60368 +60359-60364 +60359-60362 +60359-60362 +60360-60362 +60361-60362 +60365-60368 +60366-60368 +60366-60367 +60369-60378 +60369-60378 +60373-60378 +60374-60378 +60375-60378 +60376-60378 +60379-60384 +60379-60384 +60379-60381 +60380-60381 +60382-60384 +60383-60384 +60385-60407 +60385-60407 +60385-60399 +60386-60399 +60386-60387 +60390-60393 +60392-60393 +60394-60399 +60395-60399 +60397-60399 +60398-60399 +60403-60407 +60404-60407 +60405-60406 +60408-60414 +60408-60414 +60408-60411 +60410-60411 +60412-60414 +60413-60414 +60415-60432 +60415-60432 +60415-60421 +60415-60421 +60416-60421 +60416-60418 +60417-60418 +60419-60421 +60420-60421 +60424-60425 +60426-60432 +60427-60432 +60427-60428 +60431-60432 +60433-60455 +60433-60455 +60433-60438 +60434-60438 +60437-60438 +60441-60455 +60442-60455 +60442-60443 +60442-60443 +60444-60445 +60445 +60446-60448 +60447-60448 +60449-60453 +60450-60453 +60450-60452 +60451-60452 +60454-60455 +60455 +60456-60473 +60456-60473 +60456-60466 +60457-60466 +60457-60459 +60458-60459 +60460-60466 +60461-60466 +60461-60463 +60462-60463 +60464-60465 +60467-60470 +60467-60469 +60468-60469 +60471-60473 +60472-60473 +60474-60487 +60474-60487 +60474-60475 +60477-60479 +60478-60479 +60480-60487 +60481-60487 +60481-60483 +60481-60482 +60484-60487 +60485-60487 +60486-60487 +60488-60495 +60488-60495 +60488-60492 +60489-60492 +60491-60492 +60493-60495 +60496-60501 +60496-60501 +60497-60501 +60498-60501 +60499-60501 +60500-60501 +60502-60525 +60502-60525 +60502-60511 +60502-60506 +60503-60506 +60503-60505 +60504-60505 +60507-60511 +60508-60511 +60509-60511 +60510-60511 +60512-60525 +60513-60525 +60513-60519 +60514-60518 +60514-60516 +60515-60516 +60517-60518 +60520-60525 +60521-60525 +60522-60525 +60523-60525 +60524-60525 +60526-60541 +60526-60541 +60529-60541 +60530-60541 +60530-60536 +60530-60533 +60531-60533 +60532-60533 +60534-60535 +60537-60541 +60538-60541 +60538-60540 +60539-60540 +60542-60553 +60542-60553 +60544-60547 +60545-60547 +60546-60547 +60548-60553 +60549-60553 +60551-60553 +60552-60553 +60554-60568 +60554-60568 +60554-60556 +60554-60555 +60559-60568 +60560-60568 +60561-60563 +60562-60563 +60565-60568 +60566-60568 +60567-60568 +60569-60578 +60569-60578 +60569-60572 +60570-60571 +60573-60578 +60574-60578 +60575-60578 +60579-60592 +60579-60592 +60583-60592 +60584-60592 +60584-60585 +60588-60592 +60590-60592 +60591-60592 +60593-60606 +60593-60606 +60594-60606 +60597-60606 +60598-60606 +60598-60604 +60599-60604 +60601-60604 +60602-60604 +60603-60604 +60607-60641 +60607-60641 +60608-60610 +60612-60641 +60612-60614 +60615-60641 +60616-60641 +60616-60617 +60618-60641 +60619-60641 +60619-60628 +60619-60623 +60619-60620 +60621-60623 +60622-60623 +60624-60628 +60625-60628 +60625-60627 +60626-60627 +60629-60641 +60630-60641 +60630-60639 +60631-60639 +60632-60639 +60634-60635 +60636-60639 +60637-60639 +60638-60639 +60642-60647 +60642-60647 +60645-60647 +60646-60647 +60648-60658 +60648-60658 +60648-60652 +60649-60652 +60649-60650 +60653-60658 +60654-60658 +60655-60658 +60656-60657 +60659-60669 +60659-60669 +60659-60663 +60660-60663 +60660-60662 +60661-60662 +60665-60669 +60665-60666 +60667-60668 +60670-60689 +60670-60689 +60671-60689 +60671-60683 +60672-60683 +60672-60676 +60672-60674 +60673-60674 +60677-60683 +60678-60683 +60681-60683 +60682-60683 +60684-60689 +60684-60685 +60688-60689 +60690-60703 +60690-60703 +60691-60696 +60692-60696 +60693-60696 +60697-60703 +60701-60703 +60702-60703 +60704-60709 +60704-60709 +60704-60706 +60705-60706 +60707-60708 +60710-60718 +60710-60718 +60710-60714 +60711-60714 +60711-60713 +60712-60713 +60715-60718 +60715-60717 +60716-60717 +60719-60734 +60719-60734 +60720-60734 +60720-60721 +60723-60724 +60725-60728 +60726-60728 +60727-60728 +60729-60734 +60730-60734 +60732-60734 +60733-60734 +60735-60743 +60735-60743 +60735-60740 +60736-60740 +60736-60737 +60738-60740 +60739-60740 +60741-60743 +60744-60752 +60744-60752 +60745-60752 +60749-60752 +60750-60752 +60751-60752 +60753-60760 +60753-60760 +60753-60755 +60754-60755 +60756-60759 +60757-60759 +60758-60759 +60761-60774 +60761-60774 +60761-60771 +60762-60771 +60762-60763 +60766-60767 +60768-60771 +60769-60770 +60775-60786 +60775-60786 +60776-60786 +60777-60780 +60777-60778 +60779-60780 +60781-60786 +60781-60782 +60783-60786 +60784-60786 +60785-60786 +60787-60801 +60787-60801 +60788-60801 +60789-60801 +60790-60797 +60790-60791 +60792-60797 +60793-60797 +60793-60796 +60794-60796 +60795-60796 +60798-60801 +60799-60801 +60802-60825 +60802-60825 +60802-60821 +60803-60821 +60804-60821 +60804-60812 +60805-60812 +60806-60812 +60810-60812 +60811-60812 +60813-60821 +60814-60821 +60814-60816 +60815-60816 +60817-60821 +60818-60820 +60819-60820 +60822-60825 +60824-60825 +60826-60835 +60826-60835 +60827-60835 +60827-60828 +60830-60835 +60831-60835 +60831-60832 +60833-60834 +60836-60841 +60836-60841 +60839-60841 +60840-60841 +60842-60844 +60842-60844 +60845-60857 +60845-60857 +60846-60857 +60846-60847 +60849-60857 +60849-60852 +60850-60852 +60851-60852 +60854-60857 +60856-60857 +60858-60867 +60858-60867 +60859-60867 +60859-60860 +60861-60867 +60862-60867 +60862-60865 +60864-60865 +60866-60867 +60867 +60868-60883 +60868-60883 +60869-60883 +60872-60883 +60873-60883 +60873-60877 +60874-60877 +60875-60877 +60876-60877 +60878-60883 +60878-60879 +60881-60883 +60884-60894 +60884-60894 +60885-60894 +60887-60888 +60891-60894 +60892-60894 +60892-60893 +60895-60909 +60895-60909 +60896-60909 +60896-60901 +60898-60901 +60899-60901 +60900-60901 +60902-60909 +60903-60909 +60903-60905 +60904-60905 +60908-60909 +60910-60920 +60910-60920 +60911-60920 +60911-60914 +60912-60914 +60915-60920 +60915-60916 +60918-60920 +60919-60920 +60921-60949 +60921-60949 +60922-60949 +60923-60924 +60927-60949 +60927-60931 +60929-60931 +60930-60931 +60932-60949 +60933-60949 +60933-60942 +60933-60935 +60934-60935 +60936-60937 +60938-60939 +60941-60942 +60943-60949 +60944-60949 +60944-60945 +60945 +60948-60949 +60950-60963 +60950-60963 +60951-60963 +60951 +60954-60955 +60956-60963 +60956-60957 +60958-60960 +60959-60960 +60961-60963 +60962-60963 +60964-60993 +60964-60993 +60964-60971 +60965-60971 +60965-60966 +60965-60966 +60967-60971 +60968-60971 +60970-60971 +60972-60983 +60973-60983 +60973-60974 +60973-60974 +60975-60983 +60976-60983 +60976-60979 +60976-60978 +60977-60978 +60980-60983 +60981-60983 +60984-60993 +60985-60993 +60985-60986 +60985-60986 +60987-60993 +60988-60993 +60988-60992 +60989-60992 +60990-60992 +60990-60991 +60994-61003 +60994-61003 +60994-60998 +60996-60998 +60999-61003 +61000-61003 +61002-61003 +61004-61031 +61004-61031 +61005-61031 +61005-61017 +61005-61011 +61006-61011 +61007-61011 +61008-61011 +61009-61011 +61010-61011 +61012-61017 +61014-61017 +61015-61017 +61015-61016 +61018-61031 +61019-61031 +61019-61026 +61020-61022 +61021-61022 +61024-61026 +61024-61025 +61027-61031 +61028-61031 +61028-61029 +61029 +61032-61042 +61032-61042 +61032-61034 +61035-61042 +61036-61042 +61036-61039 +61036-61038 +61037-61038 +61040-61042 +61041-61042 +61043-61060 +61043-61060 +61043-61049 +61043-61047 +61044-61047 +61046-61047 +61050-61051 +61053-61060 +61054-61060 +61054-61057 +61054-61056 +61055-61056 +61058-61060 +61059-61060 +61061-61071 +61061-61071 +61061-61065 +61061 +61062-61065 +61063-61065 +61066-61071 +61067-61071 +61067-61068 +61069-61071 +61070-61071 +61072-61102 +61072-61102 +61073-61102 +61074-61077 +61075-61077 +61076-61077 +61078-61079 +61080-61102 +61082-61085 +61083-61085 +61086-61102 +61086-61090 +61086 +61087-61090 +61088-61090 +61091-61096 +61092-61096 +61092-61093 +61094-61096 +61095-61096 +61097-61102 +61098-61102 +61099-61102 +61100-61102 +61101-61102 +61103-61115 +61103-61115 +61104-61115 +61105-61115 +61107-61111 +61107-61109 +61108-61109 +61110-61111 +61112-61115 +61114-61115 +61116-61142 +61116-61142 +61116-61121 +61118-61121 +61119-61121 +61120-61121 +61122-61142 +61123-61142 +61125-61142 +61125-61129 +61125-61126 +61128-61129 +61131-61142 +61132-61142 +61132-61136 +61132 +61133-61136 +61134-61136 +61137-61142 +61138-61142 +61138-61139 +61140-61142 +61141-61142 +61143-61164 +61143-61164 +61144-61164 +61145-61164 +61147-61164 +61148-61164 +61148-61155 +61148-61151 +61148 +61149-61151 +61150-61151 +61152-61155 +61153-61155 +61153-61154 +61156-61164 +61156-61157 +61158-61164 +61159-61164 +61159-61161 +61160-61161 +61162-61163 +61165-61175 +61165-61175 +61165-61168 +61166-61168 +61166-61167 +61171-61175 +61172-61175 +61173-61175 +61174-61175 +61176-61193 +61176-61193 +61177-61193 +61177-61180 +61178-61180 +61179-61180 +61183-61184 +61185-61187 +61186-61187 +61188-61193 +61189-61193 +61191-61193 +61192-61193 +61194-61217 +61194-61217 +61195-61217 +61195-61200 +61196-61200 +61196-61197 +61201-61217 +61202-61217 +61202-61209 +61202-61204 +61205-61209 +61206-61209 +61207-61209 +61208-61209 +61210-61217 +61211-61217 +61211-61213 +61212-61213 +61216-61217 +61218-61226 +61218-61226 +61219-61226 +61219-61222 +61220-61222 +61221-61222 +61227-61241 +61227-61241 +61228-61241 +61229-61241 +61231-61241 +61231-61235 +61232-61235 +61234-61235 +61238-61241 +61239-61241 +61240-61241 +61242-61250 +61242-61250 +61242-61243 +61247-61250 +61248-61250 +61249-61250 +61251-61259 +61251-61259 +61251-61253 +61251 +61252-61253 +61253 +61254-61259 +61255-61259 +61255-61257 +61256-61257 +61258-61259 +61260-61264 +61260-61264 +61261-61262 +61265-61279 +61265-61279 +61265-61266 +61267-61279 +61268-61279 +61269-61272 +61269-61270 +61274-61279 +61275-61277 +61276-61277 +61280-61299 +61280-61299 +61280-61288 +61280-61283 +61281-61283 +61282-61283 +61284-61287 +61285-61287 +61286-61287 +61289-61299 +61290-61299 +61293-61299 +61294-61299 +61296-61297 +61298-61299 +61300-61317 +61300-61317 +61301-61317 +61301-61305 +61301-61303 +61302-61303 +61306-61317 +61307-61317 +61307-61309 +61310-61317 +61311-61317 +61312-61317 +61313-61317 +61314-61316 +61315-61316 +61318-61335 +61318-61335 +61318-61326 +61318-61321 +61319-61321 +61320-61321 +61322-61326 +61323-61326 +61324-61326 +61325-61326 +61327-61335 +61327-61330 +61329-61330 +61331-61335 +61332-61335 +61333-61335 +61334-61335 +61336-61348 +61336-61348 +61337-61339 +61338-61339 +61340-61348 +61341-61344 +61342-61343 +61345-61348 +61346-61348 +61349-61361 +61349-61361 +61351-61361 +61352-61361 +61352-61353 +61354-61361 +61355-61361 +61355-61357 +61359-61361 +61362-61368 +61362-61368 +61362-61363 +61365-61368 +61366-61368 +61366-61367 +61369-61373 +61369-61373 +61372-61373 +61374-61387 +61374-61387 +61375-61376 +61377-61378 +61378 +61379-61387 +61380-61387 +61380-61384 +61382-61384 +61383-61384 +61385-61387 +61388-61397 +61388-61397 +61389-61397 +61392-61397 +61393-61397 +61393-61394 +61395-61396 +61398-61405 +61398-61405 +61401-61405 +61402-61405 +61402-61403 +61406-61416 +61406-61416 +61406-61412 +61406-61410 +61406-61408 +61407-61408 +61411-61412 +61412 +61413-61416 +61415-61416 +61417-61432 +61417-61432 +61417-61419 +61420-61432 +61421-61432 +61421-61427 +61422-61424 +61423-61424 +61425-61427 +61426-61427 +61429-61432 +61429 +61431-61432 +61433-61456 +61433-61456 +61434-61436 +61435-61436 +61437-61441 +61438-61441 +61438-61439 +61442-61456 +61443-61456 +61446-61447 +61448-61456 +61449-61456 +61449-61452 +61449-61452 +61450-61452 +61455-61456 +61457-61474 +61457-61474 +61458-61474 +61460-61462 +61461-61462 +61463-61474 +61464-61474 +61465-61474 +61465-61469 +61466-61469 +61467-61469 +61468-61469 +61470-61474 +61471-61474 +61471-61472 +61473-61474 +61475-61488 +61475-61488 +61478-61480 +61479-61480 +61481-61488 +61482-61488 +61483-61488 +61484-61488 +61484-61486 +61488 +61489-61507 +61489-61507 +61490-61507 +61490 +61495-61496 +61497-61507 +61498-61507 +61499-61507 +61501-61505 +61502-61505 +61503-61505 +61503-61504 +61506-61507 +61508-61519 +61508-61519 +61509-61511 +61510-61511 +61512-61519 +61513-61519 +61514-61519 +61517-61519 +61518-61519 +61520-61529 +61520-61529 +61520-61521 +61522-61529 +61522-61524 +61525-61529 +61526-61529 +61526-61528 +61527-61528 +61530-61563 +61530-61563 +61530-61539 +61532-61539 +61533-61539 +61533-61536 +61534-61536 +61537-61538 +61540-61563 +61541-61563 +61541-61547 +61541-61545 +61542-61545 +61543-61545 +61548-61563 +61549-61563 +61549-61550 +61551-61557 +61552-61557 +61554-61557 +61555-61557 +61555-61556 +61558-61563 +61559-61563 +61560-61563 +61561-61563 +61564-61567 +61564-61567 +61565-61566 +61568-61594 +61568-61594 +61568-61577 +61569-61572 +61569-61571 +61570-61571 +61574-61577 +61574-61577 +61575-61577 +61578-61594 +61579-61594 +61579-61580 +61581-61586 +61582-61586 +61582-61584 +61582-61583 +61587-61590 +61588-61590 +61588-61589 +61591-61594 +61592-61594 +61593-61594 +61595-61610 +61595-61610 +61596-61610 +61596-61606 +61596-61600 +61598-61600 +61599-61600 +61601-61606 +61602-61606 +61603-61605 +61604-61605 +61607-61610 +61608-61609 +61611-61626 +61611-61626 +61611-61612 +61611-61612 +61615-61621 +61616-61621 +61617-61621 +61617-61618 +61619-61621 +61622-61626 +61623-61626 +61625-61626 +61626 +61627-61657 +61627-61657 +61627-61642 +61627-61630 +61628-61630 +61629-61630 +61631-61642 +61631-61640 +61634-61640 +61635-61640 +61636-61640 +61636-61637 +61638-61640 +61641-61642 +61642 +61643-61657 +61644-61657 +61644-61653 +61644-61647 +61644-61646 +61645-61646 +61648-61653 +61649-61653 +61650-61653 +61651-61653 +61652-61653 +61654-61657 +61655-61657 +61655-61656 +61658-61677 +61658-61677 +61659-61677 +61659-61662 +61660-61661 +61663-61677 +61664-61677 +61666-61668 +61667-61668 +61669-61677 +61670-61677 +61671-61677 +61671-61674 +61672-61674 +61673-61674 +61676-61677 +61678-61701 +61678-61701 +61678-61683 +61681-61683 +61682-61683 +61684-61701 +61685-61701 +61685-61688 +61685-61686 +61689-61701 +61690-61701 +61692-61694 +61693-61694 +61695-61701 +61696-61701 +61699-61701 +61700-61701 +61702-61716 +61702-61716 +61703-61709 +61704-61709 +61705-61709 +61707-61709 +61708-61709 +61711-61716 +61712-61716 +61714-61716 +61715-61716 +61717-61728 +61717-61728 +61717-61719 +61718-61719 +61722-61728 +61723-61728 +61726-61728 +61727-61728 +61729-61733 +61729-61733 +61731-61733 +61732-61733 +61734-61739 +61734-61739 +61734-61737 +61735-61737 +61736-61737 +61740-61751 +61740-61751 +61740-61745 +61741-61745 +61743-61745 +61744-61745 +61746-61751 +61749-61751 +61750-61751 +61752-61764 +61752-61764 +61753-61764 +61753-61754 +61758-61764 +61759-61764 +61759-61760 +61761-61762 +61763-61764 +61765-61807 +61765-61807 +61766-61807 +61766-61799 +61766-61781 +61767-61770 +61767-61768 +61772-61781 +61773-61781 +61774-61781 +61775-61781 +61776-61779 +61777-61779 +61778-61779 +61780-61781 +61782-61799 +61783-61799 +61786-61799 +61787-61799 +61787 +61788-61790 +61789-61790 +61791-61793 +61792-61793 +61794-61799 +61795-61799 +61795-61796 +61797-61798 +61800-61807 +61801-61807 +61801-61802 +61804-61807 +61805-61807 +61808-61847 +61808-61847 +61808-61833 +61808-61828 +61808-61815 +61809-61813 +61810-61813 +61811-61813 +61816-61828 +61817-61828 +61819-61828 +61820-61828 +61822-61828 +61822-61824 +61823-61824 +61825-61828 +61826-61828 +61827-61828 +61829-61833 +61830-61833 +61830-61831 +61832-61833 +61834-61847 +61835-61847 +61836-61837 +61838-61847 +61839-61847 +61839-61841 +61842-61847 +61843-61847 +61845-61847 +61846-61847 +61848-61875 +61848-61875 +61848 +61849-61869 +61849-61860 +61849-61851 +61853-61860 +61854-61860 +61854-61856 +61859-61860 +61862-61869 +61863-61869 +61864-61869 +61864-61866 +61865-61866 +61867-61869 +61871-61875 +61873-61875 +61874-61875 +61876-61914 +61876-61914 +61876-61877 +61876-61877 +61878-61887 +61878-61883 +61878-61880 +61879-61880 +61884-61887 +61885-61887 +61888-61914 +61889-61914 +61889-61894 +61891-61894 +61892-61894 +61895-61914 +61896-61914 +61896-61902 +61896-61900 +61898-61900 +61899-61900 +61901-61902 +61902 +61903-61914 +61904-61914 +61904-61911 +61904-61908 +61905-61908 +61906-61908 +61909-61910 +61913-61914 +61915-61938 +61915-61938 +61915-61916 +61919-61922 +61920-61922 +61921-61922 +61923-61938 +61924-61938 +61925-61938 +61926-61938 +61927-61938 +61928-61938 +61930-61938 +61931-61938 +61931-61932 +61934-61938 +61935-61938 +61936-61938 +61937-61938 +61939-61956 +61939-61956 +61940-61956 +61941-61945 +61942-61945 +61943-61945 +61944-61945 +61946-61947 +61948-61956 +61949-61956 +61953-61956 +61954-61956 +61955-61956 +61957-61979 +61957-61979 +61958-61979 +61958-61959 +61960-61971 +61961-61971 +61961-61962 +61963-61971 +61964-61971 +61964-61970 +61964-61966 +61965-61966 +61967-61970 +61968-61970 +61969-61970 +61974-61979 +61975-61979 +61976-61977 +61978-61979 +61980-61993 +61980-61993 +61981-61993 +61981-61988 +61982-61987 +61983-61987 +61984-61987 +61985-61987 +61986-61987 +61989-61993 +61990-61993 +61992-61993 +61994-61998 +61994-61998 +61996-61998 +61996-61998 +61997-61998 +61999-62002 +61999-62002 +62001-62002 +62003-62011 +62003-62011 +62004-62011 +62005-62009 +62006-62009 +62007-62009 +62008-62009 +62010-62011 +62012-62024 +62012-62024 +62013-62024 +62013-62017 +62014-62017 +62016-62017 +62018-62024 +62018-62021 +62019-62021 +62020-62021 +62022-62024 +62023-62024 +62025-62030 +62025-62030 +62026-62030 +62029-62030 +62031-62036 +62031-62036 +62032-62036 +62034-62036 +62034-62036 +62035-62036 +62037-62065 +62037-62065 +62037-62050 +62039-62050 +62039-62043 +62041-62043 +62042-62043 +62044-62050 +62045-62050 +62045-62047 +62046-62047 +62049-62050 +62051-62065 +62052-62065 +62053-62065 +62054-62065 +62055-62065 +62055-62056 +62058-62065 +62058-62060 +62063-62065 +62063-62064 +62066-62085 +62066-62085 +62067-62085 +62067-62072 +62067-62068 +62069-62070 +62073-62085 +62074-62085 +62074-62078 +62075-62078 +62076-62078 +62076-62077 +62079-62085 +62080-62085 +62081-62085 +62082-62085 +62083-62085 +62084-62085 +62086-62091 +62086-62091 +62087-62091 +62089-62090 +62092-62114 +62092-62114 +62093-62114 +62094-62095 +62096-62097 +62098-62114 +62099-62100 +62101-62103 +62102-62103 +62104-62114 +62104-62110 +62104-62110 +62105-62110 +62106-62110 +62109-62110 +62112-62114 +62113-62114 +62115-62147 +62115-62147 +62116-62147 +62116-62128 +62116-62125 +62116-62117 +62118-62120 +62119-62120 +62121-62125 +62122-62125 +62123-62125 +62124-62125 +62127-62128 +62129-62131 +62130-62131 +62132-62147 +62133-62147 +62133-62136 +62134-62135 +62137-62147 +62138-62147 +62139-62147 +62140-62147 +62141-62147 +62142-62147 +62144-62147 +62145-62147 +62145-62146 +62148-62162 +62148-62162 +62149-62162 +62151-62162 +62152-62162 +62153-62154 +62155-62162 +62156-62162 +62157-62162 +62157-62158 +62160-62162 +62161-62162 +62163-62171 +62163-62171 +62164-62171 +62165-62166 +62167-62171 +62167-62168 +62169-62171 +62170-62171 +62172-62196 +62172-62196 +62173-62196 +62173-62188 +62173-62179 +62173-62175 +62173-62174 +62178-62179 +62180-62188 +62181-62188 +62182-62183 +62184-62188 +62185-62188 +62186-62188 +62187-62188 +62189-62196 +62190-62196 +62190-62191 +62193-62195 +62194-62195 +62197-62214 +62197-62214 +62198-62214 +62198-62210 +62198-62206 +62199-62206 +62199-62202 +62200-62202 +62201-62202 +62203-62206 +62204-62206 +62205-62206 +62207-62210 +62208-62210 +62209-62210 +62211-62214 +62212-62214 +62213-62214 +62215-62232 +62215-62232 +62216-62232 +62217-62218 +62219-62222 +62219-62220 +62221-62222 +62223-62232 +62224-62232 +62224-62225 +62226-62231 +62227-62231 +62228-62231 +62229-62231 +62229-62230 +62233-62236 +62233-62236 +62235-62236 +62237-62250 +62237-62250 +62238-62250 +62238-62248 +62239-62243 +62239-62240 +62241-62243 +62242-62243 +62244-62245 +62246-62248 +62247-62248 +62249-62250 +62250 +62251-62260 +62251-62260 +62252-62260 +62252-62254 +62253-62254 +62255-62256 +62257-62260 +62258-62260 +62259-62260 +62261-62275 +62261-62275 +62262-62275 +62262-62263 +62265-62266 +62267-62275 +62267-62270 +62268-62270 +62269-62270 +62271-62275 +62272-62275 +62273-62275 +62274-62275 +62276-62283 +62276-62283 +62279-62283 +62282-62283 +62284-62302 +62284-62302 +62284-62297 +62287-62297 +62287-62288 +62289-62297 +62290-62297 +62291-62297 +62291-62292 +62293-62297 +62294-62296 +62295-62296 +62298-62302 +62299-62302 +62299-62300 +62303-62305 +62303-62305 +62306-62311 +62306-62311 +62307-62308 +62308 +62309-62311 +62312-62317 +62312-62317 +62315-62317 +62318-62334 +62318-62334 +62319-62334 +62319-62321 +62322-62325 +62322-62323 +62323 +62324-62325 +62328-62329 +62330-62334 +62331-62334 +62333-62334 +62335-62350 +62335-62350 +62338-62350 +62338-62344 +62338-62340 +62339-62340 +62341-62344 +62342-62344 +62343-62344 +62345-62350 +62346-62350 +62346-62347 +62347 +62348-62350 +62351-62360 +62351-62360 +62352-62360 +62354-62355 +62356 +62357-62360 +62358-62360 +62359-62360 +62361-62367 +62361-62367 +62362-62367 +62362-62363 +62364-62367 +62365-62367 +62366-62367 +62368-62378 +62368-62378 +62369-62378 +62371-62378 +62372-62378 +62372-62373 +62374-62377 +62375-62377 +62376-62377 +62379-62384 +62379-62384 +62379-62380 +62381-62384 +62382-62384 +62383-62384 +62385-62407 +62385-62407 +62386-62398 +62386-62391 +62387-62391 +62388-62391 +62389-62391 +62390-62391 +62392-62398 +62393-62398 +62394-62398 +62397-62398 +62399-62407 +62400-62407 +62402-62407 +62403-62405 +62404-62405 +62406-62407 +62408-62411 +62408-62411 +62409-62411 +62412-62415 +62412-62415 +62413-62415 +62416-62425 +62416-62425 +62417-62425 +62418-62419 +62420-62422 +62421-62422 +62423-62425 +62424-62425 +62426-62428 +62426-62428 +62427-62428 +62429-62442 +62429-62442 +62430-62442 +62433-62435 +62434-62435 +62436-62442 +62437-62442 +62437-62438 +62439-62442 +62440-62442 +62441-62442 +62443-62457 +62443-62457 +62444-62457 +62444-62449 +62445-62446 +62448-62449 +62450-62457 +62451-62457 +62452-62457 +62452-62456 +62453-62456 +62454-62456 +62454-62455 +62458-62472 +62458-62472 +62458 +62459-62472 +62460-62472 +62462-62472 +62462-62467 +62463-62467 +62464-62465 +62468-62472 +62469-62472 +62473-62487 +62473-62487 +62474-62487 +62476-62477 +62478-62487 +62478-62480 +62481-62487 +62482-62487 +62482-62485 +62483-62485 +62484-62485 +62488-62496 +62488-62496 +62490-62491 +62492-62496 +62495-62496 +62497-62509 +62497-62509 +62498-62509 +62498-62501 +62499-62501 +62500-62501 +62503-62509 +62505-62509 +62506-62509 +62506-62507 +62509 +62510-62530 +62510-62530 +62511-62530 +62511-62517 +62513-62515 +62514-62515 +62516-62517 +62518-62530 +62519-62530 +62519-62521 +62520-62521 +62522-62530 +62523-62530 +62525-62530 +62527-62530 +62528-62530 +62529-62530 +62531-62543 +62531-62543 +62533-62543 +62533-62537 +62533-62534 +62538-62543 +62539-62543 +62542-62543 +62544-62562 +62544-62562 +62545-62546 +62547-62562 +62547-62550 +62548-62550 +62551-62562 +62551-62560 +62551-62557 +62551-62554 +62552-62554 +62553-62554 +62555-62557 +62556-62557 +62561-62562 +62563-62604 +62563-62604 +62565-62604 +62565-62574 +62565-62568 +62566-62568 +62567-62568 +62571-62574 +62572-62574 +62572-62573 +62575-62604 +62575-62595 +62575-62584 +62576-62584 +62576-62579 +62577-62579 +62577-62578 +62581-62584 +62582-62584 +62583-62584 +62586-62590 +62586-62589 +62587-62589 +62588-62589 +62591-62595 +62592-62595 +62594-62595 +62596-62604 +62597-62604 +62598-62601 +62599-62601 +62600-62601 +62605-62613 +62605-62613 +62606-62613 +62608-62609 +62610-62613 +62611-62613 +62614-62646 +62614-62646 +62615-62616 +62617-62646 +62617-62621 +62619-62621 +62620-62621 +62622-62646 +62622-62636 +62622-62632 +62622-62625 +62623-62624 +62626-62632 +62627-62632 +62627-62628 +62630-62632 +62631-62632 +62633-62636 +62634-62636 +62635-62636 +62637-62646 +62637-62642 +62638-62642 +62639-62642 +62640-62642 +62641-62642 +62644-62646 +62645-62646 +62647-62653 +62647-62653 +62649-62650 +62651-62653 +62654-62670 +62654-62670 +62655-62670 +62655-62661 +62655-62656 +62659-62661 +62660-62661 +62662-62670 +62663-62670 +62665-62670 +62668-62669 +62671-62689 +62671-62689 +62672-62689 +62675-62681 +62676-62681 +62679-62681 +62680-62681 +62682-62689 +62683-62689 +62684-62689 +62686-62689 +62687-62689 +62688-62689 +62690-62698 +62690-62698 +62691-62698 +62693-62698 +62694-62698 +62695 +62697-62698 +62697-62698 +62699-62703 +62699-62703 +62700-62703 +62701-62702 +62704-62712 +62704-62712 +62705-62712 +62705-62710 +62707-62708 +62709-62710 +62711-62712 +62712 +62713-62739 +62713-62739 +62714-62739 +62714-62728 +62714-62723 +62714-62715 +62716-62719 +62718-62719 +62721-62723 +62722-62723 +62724-62728 +62725-62728 +62725-62726 +62729-62739 +62730-62739 +62730-62732 +62731-62732 +62733-62739 +62734-62739 +62735-62739 +62736-62739 +62736-62739 +62737-62739 +62738-62739 +62740-62743 +62740-62743 +62741-62743 +62744-62765 +62744-62765 +62745-62765 +62745-62749 +62748-62749 +62750-62765 +62751-62765 +62753-62765 +62754-62757 +62758-62765 +62759-62765 +62760-62765 +62761-62765 +62761-62762 +62764-62765 +62766-62778 +62766-62778 +62767-62778 +62768-62769 +62771-62778 +62772-62778 +62772-62774 +62773-62774 +62775-62778 +62776-62778 +62777-62778 +62779-62784 +62779-62784 +62780-62784 +62782-62784 +62782 +62783-62784 +62783-62784 +62785-62797 +62785-62797 +62786-62797 +62786-62793 +62787-62793 +62789-62793 +62789-62790 +62791-62793 +62792-62793 +62794-62797 +62795-62797 +62796-62797 +62796 +62797 +62798-62813 +62798-62813 +62800-62801 +62802-62813 +62802-62806 +62802-62804 +62805-62806 +62806 +62807-62813 +62808-62813 +62811-62812 +62814-62831 +62814-62831 +62816-62817 +62818-62831 +62818-62820 +62821-62831 +62822-62831 +62822-62824 +62823-62824 +62826 +62827-62831 +62828-62831 +62828-62829 +62832-62854 +62832-62854 +62833-62854 +62833-62839 +62834-62839 +62835-62836 +62837-62839 +62838-62839 +62840-62854 +62840-62841 +62842-62854 +62843-62854 +62843-62847 +62844-62846 +62845-62846 +62848-62854 +62849-62854 +62850-62851 +62852-62854 +62855-62861 +62855-62861 +62856-62861 +62856-62857 +62862-62881 +62862-62881 +62863-62881 +62865-62866 +62867-62881 +62867-62869 +62868-62869 +62870-62881 +62871-62881 +62872-62881 +62873-62881 +62873-62876 +62875-62876 +62877-62881 +62878-62881 +62880-62881 +62882-62904 +62882-62904 +62884-62904 +62884-62895 +62886-62887 +62888-62889 +62890-62895 +62891-62895 +62892-62893 +62896-62904 +62896-62897 +62898-62901 +62899-62901 +62902-62903 +62905-62911 +62905-62911 +62905-62906 +62907-62908 +62910-62911 +62912-62932 +62912-62932 +62913-62932 +62913-62914 +62916-62932 +62917-62932 +62917-62924 +62917-62919 +62918-62919 +62920-62924 +62922-62924 +62923-62924 +62925-62932 +62925-62929 +62926-62929 +62927-62929 +62931-62932 +62933-62954 +62933-62954 +62934-62954 +62934-62943 +62934-62935 +62936-62939 +62937-62939 +62937-62938 +62942-62943 +62944-62954 +62945-62954 +62946-62947 +62948-62954 +62949-62954 +62950-62954 +62950-62951 +62952-62954 +62953-62954 +62955-62963 +62955-62963 +62956-62963 +62956-62959 +62957-62959 +62958-62959 +62960-62963 +62962-62963 +62964-62971 +62964-62971 +62965-62971 +62966-62967 +62968-62971 +62968 +62969-62971 +62969-62971 +62970-62971 +62972-62978 +62972-62978 +62973-62978 +62975-62978 +62975-62976 +62975 +62976 +62977-62978 +62979-62986 +62979-62986 +62981-62982 +62983-62986 +62983-62985 +62984-62985 +62987-62995 +62987-62995 +62988-62989 +62990-62995 +62990-62992 +62993-62995 +62994-62995 +62996-63002 +62996-63002 +62997-63002 +63001-63002 +63002 +63003-63006 +63003-63006 +63004-63006 +63005-63006 +63007-63036 +63007-63036 +63008-63036 +63008-63011 +63010-63011 +63013-63036 +63014-63036 +63015-63036 +63016-63036 +63016-63021 +63016-63017 +63018-63021 +63022-63036 +63022-63024 +63025-63036 +63026-63036 +63026-63032 +63026-63027 +63028-63029 +63030-63032 +63031-63032 +63033-63036 +63034-63036 +63035-63036 +63037-63047 +63037-63047 +63038-63047 +63038-63042 +63039-63040 +63041-63042 +63043-63047 +63044-63047 +63045-63047 +63046-63047 +63048-63057 +63048-63057 +63049-63057 +63049-63050 +63051-63057 +63051-63057 +63051-63053 +63052-63053 +63054-63057 +63055-63057 +63056-63057 +63058-63082 +63058-63082 +63059-63082 +63059-63061 +63060-63061 +63063-63065 +63064-63065 +63066-63082 +63067-63082 +63067-63076 +63067-63072 +63067-63069 +63068-63069 +63071-63072 +63073-63076 +63075-63076 +63077-63082 +63078-63082 +63078-63079 +63080-63082 +63083-63104 +63083-63104 +63084-63104 +63085-63086 +63087-63090 +63088-63090 +63089-63090 +63091-63104 +63092-63096 +63093-63096 +63093-63096 +63094-63096 +63095-63096 +63098-63104 +63099-63104 +63101-63104 +63101-63103 +63102-63103 +63105-63110 +63105-63110 +63106-63107 +63108-63110 +63108-63109 +63111-63131 +63111-63131 +63112-63131 +63112-63117 +63113-63117 +63113-63114 +63116-63117 +63118-63128 +63118-63121 +63119-63121 +63120-63121 +63122-63128 +63123-63128 +63123-63125 +63124-63125 +63126-63128 +63126-63127 +63129-63131 +63130-63131 +63130-63131 +63132-63142 +63132-63142 +63133-63142 +63133-63136 +63134-63135 +63137-63142 +63137-63139 +63138-63139 +63141-63142 +63143-63171 +63143-63171 +63144-63171 +63144-63155 +63145-63146 +63147-63155 +63148-63149 +63151-63155 +63152-63153 +63154-63155 +63156-63171 +63157-63171 +63157-63158 +63160-63171 +63160-63164 +63161-63163 +63162-63163 +63165-63171 +63166-63171 +63166-63169 +63167-63169 +63168-63169 +63172-63201 +63172-63201 +63173-63201 +63173-63177 +63174-63177 +63174-63175 +63178-63201 +63179-63201 +63180-63184 +63181-63184 +63182-63184 +63183-63184 +63185-63201 +63185-63193 +63185-63187 +63186-63187 +63188-63193 +63189-63193 +63190-63193 +63191-63193 +63192-63193 +63194-63201 +63194-63197 +63195-63197 +63196-63197 +63198-63201 +63199-63201 +63200-63201 +63202-63220 +63202-63220 +63203-63220 +63204-63212 +63205-63212 +63205-63209 +63205-63206 +63207-63209 +63208-63209 +63211-63212 +63214-63215 +63216-63220 +63216 +63217 +63218-63220 +63218-63220 +63219-63220 +63221-63228 +63221-63228 +63223-63224 +63225-63228 +63225 +63226-63228 +63226-63228 +63227-63228 +63229-63240 +63229-63240 +63230-63240 +63230-63233 +63231-63233 +63232-63233 +63235-63236 +63238-63240 +63239-63240 +63241-63255 +63241-63255 +63241-63242 +63243-63244 +63245-63249 +63246-63249 +63247-63249 +63250-63253 +63251-63253 +63252-63253 +63255 +63256-63259 +63256-63259 +63256-63258 +63257-63258 +63260-63270 +63260-63270 +63261-63270 +63261-63266 +63261-63264 +63262-63264 +63263-63264 +63268-63270 +63269-63270 +63271-63279 +63271-63279 +63272-63279 +63272-63275 +63273-63275 +63274-63275 +63276-63279 +63276-63277 +63279 +63280-63286 +63280-63286 +63281-63286 +63281-63283 +63282-63283 +63285-63286 +63287-63321 +63287-63321 +63288-63321 +63288-63289 +63290-63292 +63291-63292 +63293-63311 +63294-63311 +63294-63303 +63296-63298 +63297-63298 +63299-63300 +63301-63303 +63302-63303 +63304-63311 +63305-63311 +63307-63311 +63308-63311 +63309-63311 +63310-63311 +63313-63314 +63315-63321 +63316-63321 +63316-63319 +63317-63319 +63318-63319 +63320-63321 +63321 +63322-63368 +63322-63368 +63323-63368 +63323-63325 +63324-63325 +63326-63368 +63327-63368 +63327-63338 +63328-63338 +63329-63338 +63330-63338 +63331-63338 +63331-63332 +63333-63338 +63334-63338 +63334-63335 +63336-63338 +63337-63338 +63339-63368 +63340-63368 +63340-63343 +63340-63342 +63341-63342 +63344-63348 +63345-63348 +63346-63348 +63350-63353 +63351-63353 +63352-63353 +63355-63368 +63355-63362 +63355-63357 +63356-63357 +63359-63361 +63360-63361 +63363-63368 +63364-63368 +63366-63368 +63367-63368 +63369-63388 +63369-63388 +63370-63388 +63370-63384 +63370-63372 +63370-63371 +63371 +63373-63378 +63374-63378 +63376-63378 +63377-63378 +63379-63384 +63380-63384 +63382-63384 +63383-63384 +63385-63388 +63386-63388 +63386-63387 +63389-63399 +63389-63399 +63390-63399 +63390-63391 +63392-63399 +63393-63399 +63393-63394 +63396-63399 +63396-63397 +63400-63408 +63400-63408 +63401-63408 +63402-63403 +63405-63408 +63406-63408 +63407-63408 +63409-63434 +63409-63434 +63410-63434 +63410-63411 +63413-63414 +63415-63417 +63416-63417 +63418-63428 +63418-63421 +63419-63421 +63420-63421 +63422-63428 +63423-63428 +63424-63428 +63425-63428 +63426-63428 +63427-63428 +63429-63434 +63430-63434 +63431-63434 +63432-63434 +63433-63434 +63435-63438 +63435-63438 +63436-63438 +63437-63438 +63439-63445 +63439-63445 +63440-63445 +63440 +63441-63445 +63442-63445 +63443-63445 +63444-63445 +63446-63464 +63446-63464 +63447-63464 +63448-63456 +63449-63456 +63450-63456 +63451-63456 +63452-63453 +63455-63456 +63457-63464 +63458-63461 +63459-63461 +63460-63461 +63462-63464 +63463-63464 +63465-63483 +63465-63483 +63466-63483 +63466-63470 +63467-63470 +63468-63470 +63469-63470 +63471-63483 +63472-63483 +63475-63477 +63476-63477 +63478-63483 +63479-63483 +63481-63482 +63483 +63484-63503 +63484-63503 +63485-63503 +63485-63491 +63486-63490 +63487-63490 +63488-63490 +63489-63490 +63492-63503 +63493-63503 +63493-63495 +63494-63495 +63496-63503 +63496-63497 +63498-63503 +63498-63499 +63502-63503 +63504-63518 +63504-63518 +63505-63518 +63506-63510 +63507-63510 +63508-63510 +63509-63510 +63511-63515 +63512-63515 +63514-63515 +63517-63518 +63519-63542 +63519-63542 +63520-63542 +63520-63534 +63520-63531 +63520-63523 +63521-63523 +63522-63523 +63524-63526 +63525-63526 +63529-63531 +63530-63531 +63532-63534 +63535-63542 +63536-63542 +63537-63542 +63537-63538 +63540-63542 +63541-63542 +63543-63573 +63543-63573 +63544-63573 +63544-63558 +63544 +63545-63558 +63546-63558 +63547-63558 +63547-63549 +63548-63549 +63550-63558 +63551-63558 +63552-63558 +63552-63554 +63553-63554 +63555-63558 +63557-63558 +63559-63573 +63560-63573 +63562-63573 +63562-63567 +63563-63564 +63565-63567 +63566-63567 +63568-63573 +63569-63573 +63571-63573 +63574-63586 +63574-63586 +63575-63586 +63575-63581 +63576-63581 +63576-63577 +63578-63581 +63579-63581 +63580-63581 +63582-63586 +63583-63586 +63584-63586 +63585-63586 +63587-63591 +63587-63591 +63588-63591 +63589-63590 +63592-63614 +63592-63614 +63593-63614 +63593-63605 +63593-63599 +63593-63595 +63594-63595 +63598-63599 +63600-63605 +63601-63605 +63603-63605 +63604-63605 +63606-63614 +63607-63614 +63607-63611 +63607 +63609-63611 +63610-63611 +63612-63614 +63613-63614 +63615-63626 +63615-63626 +63616-63626 +63616-63621 +63617-63619 +63618-63619 +63620-63621 +63622-63626 +63623-63626 +63624-63626 +63625-63626 +63627-63651 +63627-63651 +63628-63651 +63629-63651 +63629-63631 +63629-63630 +63632-63651 +63633-63651 +63633-63640 +63633-63640 +63634-63640 +63635-63640 +63637-63640 +63638-63640 +63639-63640 +63642-63645 +63642-63644 +63643-63644 +63647-63651 +63649-63651 +63650-63651 +63652-63668 +63652-63668 +63653-63668 +63653-63664 +63655-63664 +63656-63664 +63656-63658 +63657-63658 +63659-63664 +63660-63664 +63662-63664 +63663-63664 +63665-63668 +63666-63668 +63666 +63667-63668 +63668 +63669-63679 +63669-63679 +63670-63679 +63672-63673 +63674-63679 +63675-63679 +63676-63679 +63677-63678 +63680-63686 +63680-63686 +63681-63686 +63683-63684 +63685-63686 +63687-63694 +63687-63694 +63688-63694 +63690-63692 +63691-63692 +63694 +63695-63723 +63695-63723 +63696-63723 +63696-63697 +63697 +63698-63701 +63699-63701 +63700-63701 +63702-63723 +63703-63723 +63704-63723 +63704-63707 +63705-63707 +63706-63707 +63709-63714 +63711-63714 +63712-63714 +63713-63714 +63715-63723 +63715-63718 +63716-63718 +63717-63718 +63719-63723 +63720-63723 +63721-63723 +63722-63723 +63724-63730 +63724-63730 +63725-63730 +63728-63730 +63728 +63731-63743 +63731-63743 +63733-63743 +63734-63743 +63734-63737 +63735-63737 +63736-63737 +63738-63743 +63739-63743 +63741-63743 +63744-63760 +63744-63760 +63744-63749 +63744-63745 +63747-63749 +63748-63749 +63750-63760 +63751-63760 +63751-63754 +63752-63754 +63752-63753 +63755-63760 +63756-63760 +63758-63760 +63759-63760 +63761-63768 +63761-63768 +63764-63768 +63764 +63765-63766 +63767-63768 +63769-63789 +63769-63789 +63770-63774 +63771-63774 +63772-63774 +63772-63773 +63777-63789 +63777-63786 +63777 +63778-63781 +63779-63781 +63782-63786 +63784-63786 +63787-63789 +63790-63793 +63790-63793 +63793 +63794-63802 +63794-63802 +63794 +63799-63802 +63799-63802 +63800-63802 +63802 +63803-63837 +63803-63837 +63806-63837 +63806-63814 +63806-63808 +63809-63814 +63810-63814 +63812-63814 +63813-63814 +63815-63837 +63816-63837 +63816-63820 +63817-63820 +63818-63820 +63819-63820 +63821-63837 +63822-63837 +63824-63837 +63825-63837 +63826-63837 +63827-63837 +63827-63831 +63827-63828 +63829-63831 +63830-63831 +63832-63837 +63833-63837 +63833-63834 +63835-63837 +63836-63837 +63838-63852 +63838-63852 +63839-63841 +63840-63841 +63842-63852 +63843-63844 +63845-63852 +63846-63852 +63846-63848 +63847-63848 +63849-63852 +63850-63852 +63853-63887 +63853-63887 +63854-63887 +63854-63874 +63854-63861 +63856-63861 +63856-63858 +63856-63857 +63859-63861 +63860-63861 +63862-63874 +63863-63874 +63863-63864 +63866-63869 +63868-63869 +63870-63874 +63871-63874 +63872-63874 +63873-63874 +63875-63887 +63875-63877 +63876-63877 +63878-63887 +63879-63887 +63879-63882 +63880-63882 +63881-63882 +63883-63887 +63884-63887 +63886-63887 +63888-63898 +63888-63898 +63889-63898 +63889-63890 +63892-63897 +63892-63894 +63893-63894 +63895-63897 +63896-63897 +63899-63905 +63899-63905 +63900-63905 +63901-63902 +63903-63905 +63904-63905 +63906-63921 +63906-63921 +63907-63921 +63909-63910 +63912-63921 +63912-63913 +63914-63921 +63914-63918 +63915-63918 +63917-63918 +63919-63921 +63922-63931 +63922-63931 +63923-63931 +63923-63925 +63923-63924 +63926-63931 +63927-63931 +63929-63931 +63930-63931 +63932-63942 +63932-63942 +63932-63938 +63932-63936 +63933-63936 +63934-63936 +63935-63936 +63939-63942 +63939-63941 +63940-63941 +63943-63958 +63943-63958 +63944-63958 +63944-63951 +63944-63948 +63945-63948 +63946-63948 +63947-63948 +63949-63951 +63950-63951 +63954-63955 +63956-63958 +63957-63958 +63959-64004 +63959-64004 +63960-64004 +63960-63967 +63962-63964 +63963-63964 +63965-63967 +63966-63967 +63968-64004 +63969-64004 +63972-64004 +63972-64001 +63973-64001 +63973-63982 +63975-63978 +63976-63978 +63977-63978 +63979-63982 +63980-63982 +63981-63982 +63983-63992 +63984-63992 +63985-63987 +63986-63987 +63988-63992 +63989-63992 +63990-63992 +63991-63992 +63993-64001 +63994-64001 +63995-63997 +63996-63997 +63998-64001 +63999-64001 +64000-64001 +64002-64004 +64002-64003 +64005-64018 +64005-64018 +64006-64018 +64006-64014 +64006-64008 +64007-64008 +64012-64014 +64013-64014 +64015-64018 +64016-64018 +64017-64018 +64019-64033 +64019-64033 +64019-64024 +64019-64021 +64020-64021 +64022-64024 +64022-64023 +64025-64033 +64026-64033 +64026-64029 +64027-64029 +64028-64029 +64030-64033 +64031-64033 +64032-64033 +64034-64064 +64034-64064 +64036-64037 +64038-64064 +64038-64058 +64038-64047 +64038-64042 +64039-64041 +64040-64041 +64043-64047 +64044-64047 +64045-64047 +64046-64047 +64048-64058 +64049-64058 +64049-64052 +64050-64052 +64051-64052 +64053-64058 +64054-64058 +64055-64058 +64056-64058 +64057-64058 +64059-64064 +64060-64064 +64061-64062 +64064 +64065-64076 +64065-64076 +64065-64066 +64067-64076 +64068-64076 +64070-64076 +64070-64076 +64070-64072 +64071-64072 +64073-64076 +64074-64076 +64075-64076 +64077-64090 +64077-64090 +64079-64080 +64081-64090 +64081-64084 +64081-64083 +64082-64083 +64084 +64085-64090 +64086-64090 +64087-64090 +64087-64088 +64089-64090 +64090 +64091-64133 +64091-64133 +64092-64133 +64092-64110 +64093-64110 +64093-64096 +64094-64096 +64095-64096 +64098-64099 +64100-64102 +64101-64102 +64103-64110 +64105-64106 +64107-64110 +64108-64110 +64108-64109 +64111-64133 +64112-64133 +64114-64133 +64114-64124 +64115-64124 +64116-64124 +64117-64124 +64119-64124 +64119-64120 +64121-64124 +64122-64124 +64123-64124 +64125-64133 +64126-64133 +64127-64133 +64127 +64130-64133 +64131-64133 +64132-64133 +64134-64146 +64134-64146 +64134-64135 +64140-64141 +64142-64146 +64143-64146 +64144-64146 +64145-64146 +64147-64149 +64147-64149 +64148-64149 +64150-64176 +64150-64176 +64152-64176 +64152-64153 +64154-64158 +64155-64158 +64156-64158 +64157-64158 +64159-64165 +64160-64165 +64161-64165 +64162-64165 +64163-64165 +64164-64165 +64166-64169 +64167-64169 +64168-64169 +64170-64176 +64171-64176 +64172-64176 +64172-64175 +64173-64175 +64174-64175 +64177-64182 +64177-64182 +64179-64180 +64181-64182 +64182 +64183-64189 +64183-64189 +64185-64189 +64186-64187 +64188-64189 +64190-64202 +64190-64202 +64190-64195 +64190 +64191-64195 +64192-64195 +64193-64195 +64194-64195 +64196-64202 +64197-64202 +64197-64200 +64198-64200 +64199-64200 +64203-64211 +64203-64211 +64204-64211 +64204-64206 +64207-64211 +64209-64211 +64210-64211 +64212-64219 +64212-64219 +64213-64219 +64215-64216 +64217-64219 +64218-64219 +64220-64228 +64220-64228 +64221-64228 +64224-64228 +64224 +64226-64228 +64226-64227 +64229-64231 +64229-64231 +64231 +64232-64246 +64232-64246 +64233-64246 +64236-64246 +64236-64244 +64237-64242 +64238-64242 +64239-64242 +64240-64242 +64241-64242 +64243-64244 +64245-64246 +64246 +64247-64258 +64247-64258 +64248-64258 +64248 +64249-64258 +64250-64258 +64251-64252 +64254-64258 +64255-64258 +64256-64258 +64257-64258 +64259-64272 +64259-64272 +64260-64272 +64261-64267 +64261-64263 +64261-64262 +64264-64267 +64266-64267 +64268-64269 +64270-64272 +64270-64271 +64273-64292 +64273-64292 +64274-64292 +64274-64286 +64274-64275 +64276-64280 +64277-64280 +64278-64280 +64278-64279 +64281-64282 +64284-64286 +64285-64286 +64287-64292 +64288-64292 +64290-64292 +64291-64292 +64293-64316 +64293-64316 +64294-64316 +64294-64299 +64294-64296 +64295-64296 +64297-64298 +64300-64311 +64301-64311 +64302-64306 +64304-64306 +64305-64306 +64308-64311 +64308-64311 +64309-64311 +64310-64311 +64312-64316 +64313-64316 +64314-64316 +64315-64316 +64317-64330 +64317-64330 +64318-64330 +64318-64322 +64319-64322 +64320-64322 +64321-64322 +64324-64330 +64324-64325 +64326-64328 +64327-64328 +64329-64330 +64330 +64331-64341 +64331-64341 +64333-64334 +64335-64341 +64336-64341 +64337-64341 +64338-64341 +64339-64341 +64342-64357 +64342-64357 +64342-64344 +64343-64344 +64345-64357 +64346-64357 +64347-64348 +64349-64351 +64350-64351 +64352-64357 +64353-64357 +64353-64354 +64355-64357 +64358-64364 +64358-64364 +64359-64364 +64359-64360 +64361-64364 +64363-64364 +64365-64370 +64365-64370 +64367-64368 +64369-64370 +64369 +64370 +64371-64384 +64371-64384 +64371-64373 +64372-64373 +64375-64379 +64377-64379 +64380-64384 +64381-64384 +64382-64384 +64382-64383 +64385-64397 +64385-64397 +64385-64386 +64387-64397 +64388-64397 +64388-64393 +64388-64390 +64389-64390 +64391-64393 +64392-64393 +64394-64397 +64395-64397 +64395-64396 +64398-64407 +64398-64407 +64400-64407 +64401-64407 +64403-64404 +64405-64407 +64406-64407 +64408-64422 +64408-64422 +64409-64422 +64409-64410 +64410 +64411-64422 +64412-64414 +64413-64414 +64415-64416 +64417-64422 +64417-64418 +64417-64418 +64421-64422 +64423-64431 +64423-64431 +64425-64431 +64425 +64426 +64429-64431 +64430-64431 +64432-64437 +64432-64437 +64434-64437 +64435-64437 +64436-64437 +64438-64445 +64438-64445 +64442-64445 +64442-64443 +64442-64443 +64446-64454 +64446-64454 +64448-64454 +64448 +64449 +64452-64454 +64453-64454 +64455-64460 +64455-64460 +64457-64460 +64458-64460 +64459-64460 +64461-64468 +64461-64468 +64463-64464 +64465-64468 +64465-64466 +64465-64466 +64469-64478 +64469-64478 +64469-64471 +64470-64471 +64472-64478 +64473-64478 +64475-64476 +64477-64478 +64479-64490 +64479-64490 +64480-64490 +64482-64490 +64482 +64486-64490 +64488-64490 +64489-64490 +64491-64497 +64491-64497 +64494-64497 +64495-64497 +64496-64497 +64498-64526 +64498-64526 +64499-64526 +64500-64526 +64502-64526 +64502-64510 +64502-64504 +64503-64504 +64505-64506 +64507-64510 +64508-64510 +64509-64510 +64511-64526 +64512-64526 +64512-64513 +64513 +64514-64517 +64515-64517 +64516-64517 +64518-64521 +64519-64521 +64522-64526 +64523-64526 +64524-64526 +64527-64535 +64527-64535 +64528-64535 +64530-64535 +64531-64535 +64531-64532 +64534-64535 +64536-64542 +64536-64542 +64537-64542 +64537-64538 +64541-64542 +64543-64571 +64543-64571 +64543 +64544-64545 +64547-64571 +64547-64553 +64547-64552 +64548-64552 +64549-64552 +64551-64552 +64554-64571 +64554-64563 +64557-64559 +64558-64559 +64560-64563 +64561-64563 +64562-64563 +64564-64571 +64565-64571 +64566-64571 +64566 +64569-64571 +64570-64571 +64572-64583 +64572-64583 +64573-64583 +64573-64574 +64575-64576 +64578-64579 +64580-64583 +64580 +64582-64583 +64584-64599 +64584-64599 +64586-64587 +64588-64599 +64588-64596 +64588-64593 +64589-64593 +64589-64590 +64592-64593 +64593 +64595-64596 +64597-64599 +64600-64613 +64600-64613 +64601-64613 +64602-64604 +64603-64604 +64605-64607 +64606-64607 +64608-64613 +64609-64613 +64609-64611 +64609-64610 +64614-64632 +64614-64632 +64615-64632 +64616-64622 +64618-64619 +64620-64622 +64621-64622 +64624-64632 +64624-64629 +64625-64629 +64625-64626 +64628-64629 +64629 +64630-64632 +64631-64632 +64633-64652 +64633-64652 +64633-64644 +64635-64644 +64635-64636 +64637-64644 +64637-64640 +64638-64640 +64639-64640 +64641-64644 +64642-64644 +64643-64644 +64645-64652 +64646-64652 +64647-64652 +64648-64652 +64649-64651 +64650-64651 +64653-64675 +64653-64675 +64654-64675 +64654-64661 +64655-64661 +64656-64661 +64656-64657 +64658-64661 +64660-64661 +64662-64675 +64662-64666 +64663-64666 +64665-64666 +64667-64675 +64668-64675 +64669-64671 +64670-64671 +64673-64675 +64674-64675 +64674 +64676-64729 +64676-64729 +64676-64677 +64676-64677 +64679-64729 +64679-64681 +64680-64681 +64683-64729 +64684-64729 +64685-64729 +64685-64689 +64686-64689 +64686-64687 +64688-64689 +64691-64692 +64693-64729 +64694-64729 +64694-64704 +64694-64695 +64696-64703 +64697-64700 +64698-64700 +64699-64700 +64701-64703 +64702-64703 +64709 +64710-64713 +64711-64713 +64712-64713 +64714-64716 +64715-64716 +64717-64729 +64717-64721 +64717-64719 +64718-64719 +64722-64729 +64723-64729 +64724-64729 +64725-64729 +64726-64729 +64727-64729 +64728-64729 +64730-64762 +64730-64762 +64731-64762 +64731 +64734-64746 +64734-64737 +64734-64735 +64738-64746 +64739-64746 +64740-64746 +64741-64746 +64741-64743 +64742-64743 +64744-64746 +64747-64762 +64748-64762 +64748-64751 +64749-64751 +64752-64762 +64753-64762 +64754-64756 +64755-64756 +64758-64762 +64759-64762 +64760-64762 +64761-64762 +64763-64780 +64763-64780 +64764-64780 +64765-64780 +64766 +64769-64780 +64770-64780 +64770 +64772-64780 +64772-64775 +64773-64775 +64773-64774 +64777-64778 +64779-64780 +64781-64798 +64781-64798 +64782-64783 +64784-64798 +64787-64798 +64788-64798 +64788-64790 +64789-64790 +64791-64798 +64792-64793 +64795-64798 +64796-64798 +64797-64798 +64799-64826 +64799-64826 +64800-64826 +64800-64807 +64800-64801 +64802-64807 +64803-64805 +64804-64805 +64806-64807 +64808-64826 +64809-64826 +64810-64811 +64812-64826 +64812-64821 +64812-64814 +64813-64814 +64815-64821 +64816-64821 +64817-64821 +64818-64821 +64819-64821 +64820-64821 +64822-64826 +64823-64826 +64824-64826 +64825-64826 +64827-64840 +64827-64840 +64828-64840 +64828-64832 +64828-64829 +64830-64831 +64833-64840 +64834-64840 +64837-64840 +64838-64840 +64839-64840 +64841-64889 +64841-64889 +64842-64889 +64842-64849 +64843-64849 +64843-64847 +64843-64844 +64845-64847 +64846-64847 +64848-64849 +64850-64889 +64851-64889 +64852-64858 +64852-64853 +64856-64858 +64857-64858 +64859-64861 +64862-64869 +64862-64863 +64862 +64863 +64864-64869 +64866-64869 +64867-64869 +64868-64869 +64870-64889 +64870-64879 +64870-64872 +64871-64872 +64873-64879 +64874-64879 +64875-64876 +64877-64879 +64878-64879 +64882-64889 +64882-64883 +64885-64889 +64887-64889 +64888-64889 +64890-64905 +64890-64905 +64892-64893 +64894-64905 +64895-64905 +64895-64898 +64896-64898 +64897-64898 +64899-64905 +64901-64902 +64903-64905 +64903-64904 +64906-64939 +64906-64939 +64907-64939 +64907-64908 +64908 +64909-64912 +64909-64911 +64910-64911 +64913-64939 +64914-64915 +64916-64939 +64916-64924 +64916-64918 +64917-64918 +64919-64920 +64921-64922 +64923-64924 +64925-64927 +64926-64927 +64928-64930 +64929-64930 +64931-64939 +64931-64932 +64933-64936 +64934-64936 +64935-64936 +64937-64939 +64938-64939 +64940-64959 +64940-64959 +64940-64941 +64942-64943 +64945-64946 +64947-64959 +64947-64954 +64948-64954 +64949-64954 +64950-64954 +64951-64954 +64952-64954 +64953-64954 +64955-64959 +64956-64959 +64957-64959 +64958-64959 +64960-65016 +64960-65016 +64961-65016 +64961-64981 +64961-64971 +64961-64964 +64962-64964 +64962-64963 +64965-64969 +64966-64969 +64967-64969 +64968-64969 +64972-64981 +64973-64981 +64974-64978 +64974-64975 +64976-64978 +64977-64978 +64979-64981 +64980-64981 +64982-65016 +64982-64983 +64982 +64983 +64984-65016 +64985-65004 +64986-65004 +64987-65004 +64988-65004 +64990-64993 +64991-64993 +64992-64993 +64994-64996 +64995-64996 +64997-65004 +64998-65004 +64999-65004 +65000-65004 +65002-65004 +65003-65004 +65005-65016 +65006-65016 +65006-65009 +65006-65007 +65008-65009 +65010-65016 +65011-65016 +65012-65016 +65013-65016 +65014-65016 +65014-65015 +65017-65036 +65017-65036 +65018-65036 +65019-65036 +65019-65025 +65022-65025 +65023-65025 +65024-65025 +65026-65036 +65027-65036 +65027-65030 +65027-65028 +65031-65036 +65032-65036 +65033-65036 +65034-65036 +65035-65036 +65037-65057 +65037-65057 +65038-65057 +65040-65043 +65041-65043 +65042-65043 +65044-65057 +65045-65057 +65046-65048 +65046-65047 +65049-65052 +65050-65052 +65051-65052 +65053-65057 +65054-65057 +65056-65057 +65058-65080 +65058-65080 +65059-65080 +65060-65062 +65061-65062 +65063-65080 +65063-65074 +65063-65067 +65064-65066 +65065-65066 +65068-65074 +65069-65074 +65071-65074 +65072-65074 +65073-65074 +65075-65080 +65076-65080 +65076-65078 +65077-65078 +65081-65119 +65081-65119 +65082-65119 +65083-65119 +65083-65110 +65083-65110 +65084-65110 +65085-65110 +65087-65110 +65088-65110 +65089-65110 +65090-65110 +65091-65093 +65092-65093 +65094-65095 +65096-65098 +65096-65097 +65099-65110 +65100-65103 +65101-65103 +65102-65103 +65104-65110 +65105-65110 +65106-65110 +65107-65110 +65109-65110 +65111-65114 +65112-65114 +65113-65114 +65115-65116 +65118-65119 +65120-65131 +65120-65131 +65121-65131 +65122-65131 +65123-65131 +65123-65129 +65123-65126 +65124-65126 +65125-65126 +65127-65129 +65130-65131 +65132-65164 +65132-65164 +65133-65164 +65133 +65135-65164 +65135-65137 +65135-65137 +65136-65137 +65140-65146 +65140-65145 +65142-65145 +65143-65145 +65144-65145 +65147-65164 +65148-65164 +65149-65164 +65150-65164 +65150-65154 +65151-65154 +65151-65152 +65153-65154 +65155-65164 +65155-65156 +65159-65164 +65160-65164 +65161-65164 +65162-65164 +65163-65164 +65165-65180 +65165-65180 +65166-65180 +65166-65174 +65166-65168 +65169-65174 +65170-65174 +65171-65172 +65173-65174 +65175-65180 +65176-65180 +65177-65180 +65178-65180 +65179-65180 +65181-65194 +65181-65194 +65182-65194 +65182-65188 +65183-65188 +65184-65188 +65185-65188 +65186-65188 +65187-65188 +65192-65194 +65193-65194 +65195-65213 +65195-65213 +65196-65213 +65196-65205 +65198-65200 +65199-65200 +65202-65205 +65203-65205 +65204-65205 +65206-65213 +65207-65213 +65208-65213 +65208-65210 +65209-65210 +65211-65213 +65212-65213 +65214-65242 +65214-65242 +65215-65242 +65215-65226 +65215-65220 +65217 +65219-65220 +65220 +65221-65226 +65222-65226 +65223-65226 +65224-65226 +65224-65225 +65227-65242 +65228-65242 +65228-65231 +65230-65231 +65232-65242 +65233-65242 +65234-65236 +65235-65236 +65237-65242 +65238-65242 +65238-65239 +65241 +65243-65257 +65243-65257 +65244-65257 +65244-65245 +65246-65247 +65248-65257 +65249-65257 +65249-65250 +65251-65257 +65252-65257 +65253-65257 +65254-65257 +65255-65257 +65256-65257 +65258-65276 +65258-65276 +65259-65276 +65259-65267 +65259-65262 +65260-65262 +65260-65261 +65263-65267 +65263-65265 +65264-65265 +65266-65267 +65267 +65268-65276 +65269-65276 +65270-65271 +65272-65276 +65272-65274 +65273-65274 +65277-65289 +65277-65289 +65278-65289 +65278 +65279-65289 +65280-65289 +65281-65289 +65282-65289 +65284-65289 +65284-65287 +65285-65287 +65286-65287 +65287 +65290-65301 +65290-65301 +65291-65301 +65295-65301 +65295-65298 +65296-65298 +65297-65298 +65299-65301 +65299-65300 +65302-65353 +65302-65353 +65302-65343 +65302-65306 +65303-65304 +65305-65306 +65307-65332 +65308-65332 +65309-65332 +65310-65332 +65310-65311 +65312-65315 +65312-65313 +65314-65315 +65316-65319 +65317-65319 +65318-65319 +65320-65323 +65320-65321 +65322-65323 +65324-65332 +65325-65332 +65326-65332 +65327-65332 +65328-65332 +65328-65329 +65330-65332 +65331-65332 +65333-65343 +65334-65343 +65334-65340 +65334-65336 +65335-65336 +65335 +65337-65340 +65337-65338 +65339-65340 +65341-65343 +65342-65343 +65345-65353 +65347-65349 +65348-65349 +65350-65353 +65351-65353 +65352-65353 +65354-65366 +65354-65366 +65355-65366 +65355-65356 +65357-65366 +65358-65366 +65359-65366 +65359-65361 +65360-65361 +65363-65366 +65365-65366 +65367-65374 +65367-65374 +65368-65374 +65369 +65371-65374 +65372-65374 +65373-65374 +65375-65404 +65375-65404 +65376-65404 +65376-65385 +65376-65379 +65377-65379 +65378-65379 +65380-65381 +65383-65385 +65384-65385 +65386-65404 +65387-65404 +65389-65404 +65389-65395 +65389-65395 +65389-65390 +65391-65395 +65392-65395 +65392-65394 +65393-65394 +65396-65399 +65400-65404 +65401-65404 +65402-65404 +65403-65404 +65405-65464 +65405-65464 +65406-65464 +65407-65417 +65407-65411 +65407-65409 +65408-65409 +65410-65411 +65412-65417 +65413-65417 +65414-65417 +65414-65415 +65416-65417 +65419-65464 +65421-65464 +65422-65464 +65423-65426 +65424-65426 +65424-65425 +65427-65464 +65427-65435 +65427-65432 +65428-65432 +65429-65432 +65430-65432 +65431-65432 +65433-65435 +65434-65435 +65436-65464 +65436-65443 +65437-65440 +65438-65440 +65439-65440 +65441-65443 +65442-65443 +65444-65464 +65445-65464 +65445-65452 +65446-65452 +65446-65448 +65447-65448 +65449-65452 +65450-65452 +65451-65452 +65453-65458 +65454-65458 +65454-65456 +65455-65456 +65459-65464 +65460-65464 +65460-65462 +65461-65462 +65465-65485 +65465-65485 +65465-65483 +65465-65474 +65466-65474 +65466-65469 +65467-65469 +65468-65469 +65470-65474 +65471-65474 +65472-65474 +65473-65474 +65475-65478 +65476-65478 +65476-65477 +65480-65483 +65481-65483 +65482-65483 +65484-65485 +65485 +65486-65504 +65486-65504 +65487-65504 +65487-65498 +65487-65492 +65489-65491 +65490-65491 +65493-65498 +65494-65498 +65495-65497 +65496-65497 +65499-65504 +65499-65504 +65500-65501 +65502-65504 +65503-65504 +65505-65522 +65505-65522 +65505-65509 +65505-65506 +65508-65509 +65510-65514 +65511-65514 +65511-65512 +65513-65514 +65515-65522 +65516-65522 +65517-65522 +65517-65518 +65519-65522 +65520-65522 +65521-65522 +65523-65532 +65523-65532 +65524-65532 +65524 +65525-65531 +65526-65531 +65527-65531 +65529-65531 +65530-65531 +65533-65538 +65533-65538 +65533-65534 +65533 +65534 +65535-65538 +65536-65538 +65536-65537 +65539-65596 +65539-65596 +65539-65565 +65539-65565 +65539-65541 +65540-65541 +65542-65565 +65543-65565 +65544-65546 +65545-65546 +65547-65548 +65549-65565 +65549-65553 +65550-65551 +65552-65553 +65554-65565 +65554-65562 +65556-65557 +65558-65559 +65560-65562 +65561-65562 +65564-65565 +65566-65574 +65567-65574 +65567-65573 +65568-65573 +65568-65569 +65568 +65570-65573 +65571-65573 +65572-65573 +65575-65577 +65576-65577 +65578 +65580-65596 +65580-65588 +65581-65582 +65584-65588 +65585-65588 +65586-65588 +65587-65588 +65590-65596 +65593-65596 +65595-65596 +65597-65616 +65597-65616 +65598-65616 +65600-65601 +65602-65616 +65602-65608 +65603-65604 +65605-65606 +65607-65608 +65609-65616 +65610-65616 +65610-65612 +65611-65612 +65614-65616 +65615-65616 +65617-65651 +65617-65651 +65617-65636 +65617-65627 +65617-65622 +65617-65618 +65620-65622 +65621-65622 +65623-65627 +65624-65627 +65625-65627 +65626-65627 +65628-65636 +65629-65636 +65630-65633 +65631-65633 +65632-65633 +65635-65636 +65637-65651 +65638-65651 +65638-65644 +65640-65642 +65641-65642 +65643-65644 +65645-65651 +65646-65651 +65647-65651 +65647-65649 +65648-65649 +65652-65662 +65652-65662 +65654-65655 +65656-65662 +65659-65662 +65660-65662 +65661-65662 +65663-65690 +65663-65690 +65663-65664 +65663 +65664 +65665-65690 +65665 +65666-65690 +65667-65668 +65669-65670 +65671-65674 +65672-65674 +65672-65673 +65675-65690 +65676-65690 +65676-65679 +65676-65679 +65676-65677 +65678-65679 +65680-65690 +65681-65690 +65681-65683 +65682-65683 +65685-65686 +65687-65690 +65688-65690 +65688-65689 +65691-65729 +65691-65729 +65692-65729 +65692-65711 +65692-65693 +65694-65711 +65695-65711 +65696-65711 +65697-65711 +65700-65701 +65702-65711 +65702-65706 +65703-65706 +65704-65706 +65705-65706 +65708-65711 +65709-65711 +65710-65711 +65712 +65714-65718 +65715-65718 +65716-65718 +65717-65718 +65719-65729 +65720-65729 +65720-65723 +65721-65723 +65722-65723 +65724-65729 +65725-65729 +65725-65727 +65726-65727 +65730-65740 +65730-65740 +65730-65735 +65730-65732 +65731-65732 +65734-65735 +65737-65738 +65741-65765 +65741-65765 +65742-65765 +65742-65757 +65742-65746 +65742-65745 +65743-65745 +65744-65745 +65747-65757 +65748-65757 +65748-65753 +65749-65753 +65750-65753 +65751-65753 +65752-65753 +65755-65757 +65756-65757 +65759-65765 +65760-65765 +65762-65765 +65762-65763 +65764-65765 +65766-65794 +65766-65794 +65767-65794 +65767-65772 +65770-65772 +65771-65772 +65773-65794 +65774-65794 +65776-65794 +65778-65780 +65779-65780 +65781-65794 +65781-65784 +65782-65784 +65783-65784 +65785-65794 +65786-65794 +65787-65794 +65788-65790 +65789-65790 +65791-65794 +65792-65794 +65793-65794 +65795-65815 +65795-65815 +65796-65815 +65798-65800 +65799-65800 +65801-65815 +65802-65815 +65802-65805 +65802-65803 +65804-65805 +65807-65808 +65809-65815 +65810-65815 +65811-65815 +65812-65815 +65813-65815 +65816-65833 +65816-65833 +65817-65833 +65817-65820 +65817 +65819-65820 +65821-65833 +65822-65833 +65823-65829 +65824-65829 +65824-65825 +65826-65829 +65827-65829 +65828-65829 +65830-65833 +65830-65831 +65832-65833 +65832 +65833 +65834-65859 +65834-65859 +65835-65859 +65835-65837 +65836-65837 +65838-65859 +65838-65852 +65838 +65839-65852 +65840-65852 +65841-65842 +65843-65847 +65844-65847 +65845-65847 +65846-65847 +65848-65852 +65849-65852 +65850-65852 +65851-65852 +65853-65859 +65854-65859 +65855-65859 +65856-65859 +65857-65859 +65858-65859 +65860-65880 +65860-65880 +65861-65880 +65861-65864 +65863-65864 +65865-65880 +65866-65880 +65866-65880 +65866-65868 +65867-65868 +65869-65880 +65870-65880 +65871-65880 +65871-65873 +65872-65873 +65874-65880 +65875-65880 +65877-65880 +65878-65880 +65879-65880 +65881-65896 +65881-65896 +65881-65885 +65882-65885 +65882-65884 +65882-65883 +65886-65896 +65887-65896 +65889-65896 +65890-65896 +65891-65896 +65892-65896 +65892-65895 +65893-65895 +65894-65895 +65897-65913 +65897-65913 +65898-65913 +65899-65913 +65899-65904 +65899-65903 +65900-65903 +65901-65903 +65902-65903 +65905-65913 +65906-65913 +65907-65910 +65908-65910 +65908-65909 +65911-65913 +65912-65913 +65914-65930 +65914-65930 +65915-65930 +65915-65916 +65917-65930 +65917-65923 +65917-65920 +65918-65920 +65919-65920 +65921-65923 +65922-65923 +65924-65930 +65924-65927 +65925-65927 +65926-65927 +65928-65930 +65929-65930 +65931-65944 +65931-65944 +65932-65944 +65932-65935 +65933-65934 +65936-65944 +65937-65944 +65937-65940 +65938-65940 +65939-65940 +65941-65943 +65942-65943 +65945-65970 +65945-65970 +65946-65970 +65946-65954 +65946-65948 +65947-65948 +65948 +65949-65951 +65950-65951 +65955-65970 +65956-65970 +65956-65961 +65956-65960 +65956-65957 +65958-65960 +65959-65960 +65962-65970 +65963-65970 +65966-65970 +65967-65970 +65968-65970 +65971-66000 +65971-66000 +65972-66000 +65972-65983 +65972-65978 +65972-65973 +65976-65978 +65977-65978 +65979-65983 +65980-65983 +65981-65982 +65986-65990 +65987-65990 +65988-65990 +65989-65990 +65991-66000 +65991-65993 +65992-65993 +65994-66000 +65995-66000 +65997-66000 +65998-66000 +65999-66000 +66001-66011 +66001-66011 +66002-66011 +66002-66003 +66005-66006 +66006 +66007-66008 +66009-66011 +66010-66011 +66012-66026 +66012-66026 +66013-66026 +66013-66015 +66014-66015 +66017-66019 +66018-66019 +66020-66026 +66021-66026 +66021-66024 +66022-66024 +66023-66024 +66025-66026 +66027-66070 +66027-66070 +66028-66070 +66028-66036 +66028-66035 +66029-66035 +66030-66035 +66031-66034 +66032-66034 +66033-66034 +66039-66040 +66041-66048 +66042-66048 +66042-66045 +66043-66045 +66044-66045 +66046-66048 +66047-66048 +66049-66057 +66050-66057 +66052-66057 +66053-66057 +66054-66057 +66055-66057 +66056-66057 +66058-66070 +66059-66067 +66060-66067 +66060-66062 +66061-66062 +66064-66067 +66065-66067 +66066-66067 +66069-66070 +66071-66082 +66071-66082 +66072-66082 +66073-66078 +66074-66075 +66076-66078 +66077-66078 +66080-66082 +66081-66082 +66083-66091 +66083-66091 +66084-66091 +66087-66091 +66088-66091 +66089-66090 +66092-66114 +66092-66114 +66093-66114 +66095-66114 +66095-66106 +66095-66100 +66095-66097 +66096-66097 +66101-66106 +66102-66106 +66102-66103 +66107-66114 +66107-66113 +66108-66113 +66109-66113 +66110-66113 +66110-66111 +66112-66113 +66115-66122 +66115-66122 +66116-66122 +66116-66120 +66118-66120 +66119-66120 +66123-66150 +66123-66150 +66124-66150 +66124-66131 +66126-66131 +66126-66128 +66127-66128 +66129-66131 +66130-66131 +66132-66150 +66133-66150 +66133-66136 +66133-66134 +66133 +66135-66136 +66136 +66137-66150 +66138-66150 +66139-66140 +66141-66143 +66142-66143 +66144-66150 +66144 +66145-66146 +66146 +66147-66150 +66148-66150 +66149-66150 +66151-66187 +66151-66187 +66152-66187 +66152-66178 +66152-66161 +66153-66155 +66154-66155 +66156-66161 +66156-66157 +66158-66161 +66159-66161 +66160-66161 +66162-66178 +66163-66178 +66165-66178 +66166-66178 +66168-66178 +66169-66178 +66169-66171 +66170-66171 +66173-66178 +66174-66178 +66175-66178 +66176-66178 +66177-66178 +66179-66187 +66180-66187 +66181-66183 +66182-66183 +66184-66187 +66185-66187 +66186-66187 +66188-66208 +66188-66208 +66189-66208 +66189-66195 +66191-66195 +66191-66192 +66193-66195 +66194-66195 +66196-66208 +66197-66199 +66198-66199 +66200-66201 +66202-66207 +66203-66207 +66203-66204 +66205-66207 +66206-66207 +66209-66235 +66209-66235 +66210-66235 +66210 +66211-66212 +66214-66216 +66215-66216 +66217-66235 +66217-66218 +66217 +66218 +66219-66235 +66219-66222 +66221-66222 +66223-66235 +66224-66235 +66227-66235 +66228-66235 +66228-66231 +66229-66231 +66230-66231 +66233-66235 +66234-66235 +66236-66264 +66236-66264 +66236-66247 +66236-66242 +66237-66242 +66238-66242 +66239-66240 +66241-66242 +66243-66247 +66244-66247 +66245-66247 +66246-66247 +66249-66264 +66249-66252 +66249-66251 +66250-66251 +66253-66264 +66254-66264 +66254-66256 +66257-66264 +66258-66264 +66259-66261 +66260-66261 +66262-66264 +66264 +66265-66293 +66265-66293 +66266-66293 +66266-66277 +66266-66271 +66267-66270 +66268-66270 +66269-66270 +66272-66277 +66273-66277 +66274-66277 +66274-66275 +66278-66293 +66279-66293 +66279-66289 +66279-66282 +66280-66282 +66281-66282 +66284-66289 +66285-66286 +66288-66289 +66294-66323 +66294-66323 +66295-66323 +66295-66309 +66295-66300 +66296-66300 +66297-66300 +66298-66300 +66299-66300 +66301-66305 +66302-66305 +66303-66305 +66304-66305 +66307-66309 +66308-66309 +66310-66323 +66311-66323 +66311-66315 +66311-66312 +66313-66315 +66314-66315 +66318-66320 +66318-66319 +66321-66323 +66322-66323 +66324-66336 +66324-66336 +66325-66336 +66325 +66328-66336 +66329-66336 +66329-66330 +66332-66336 +66333-66336 +66333-66336 +66334-66336 +66335-66336 +66337-66352 +66337-66352 +66338-66352 +66338-66339 +66340-66350 +66340-66346 +66342-66346 +66343-66346 +66344-66346 +66345-66346 +66347-66350 +66348-66350 +66349-66350 +66353-66399 +66353-66399 +66354-66399 +66354-66356 +66355-66356 +66357-66362 +66358-66362 +66359-66362 +66360-66362 +66361-66362 +66363-66399 +66364-66399 +66365-66399 +66365-66371 +66366-66367 +66368-66371 +66369-66371 +66370-66371 +66372-66399 +66373-66399 +66374-66399 +66374-66378 +66374-66377 +66375-66377 +66375-66376 +66379-66399 +66380-66399 +66381-66399 +66384-66399 +66385-66399 +66385-66387 +66386-66387 +66388-66399 +66390-66391 +66392-66399 +66393-66399 +66394-66399 +66395-66399 +66396-66399 +66396-66397 +66398-66399 +66400-66415 +66400-66415 +66401-66415 +66403-66415 +66404-66415 +66407-66409 +66408-66409 +66410-66413 +66411-66413 +66412-66413 +66414-66415 +66415 +66416-66424 +66416-66424 +66418-66424 +66419-66424 +66420-66424 +66421-66424 +66423-66424 +66425-66439 +66425-66439 +66426-66439 +66427-66439 +66427-66435 +66428-66435 +66429-66435 +66430-66435 +66433-66435 +66433-66434 +66437-66439 +66438-66439 +66440-66456 +66440-66456 +66441-66456 +66441-66451 +66442-66451 +66442-66449 +66443-66449 +66444-66449 +66445-66449 +66446-66449 +66447-66449 +66448-66449 +66450-66451 +66454-66456 +66454-66455 +66457-66487 +66457-66487 +66459-66487 +66460-66487 +66461-66487 +66461-66462 +66463-66487 +66464-66487 +66465-66487 +66466-66487 +66467-66468 +66470-66473 +66471-66473 +66472-66473 +66474-66487 +66475-66476 +66477-66487 +66478-66487 +66478-66481 +66479-66481 +66480-66481 +66483-66487 +66484-66487 +66485-66487 +66486-66487 +66488-66507 +66488-66507 +66490-66491 +66492-66495 +66493-66495 +66494-66495 +66498-66507 +66500-66507 +66501-66507 +66502-66507 +66504-66507 +66505-66507 +66506-66507 +66508-66558 +66508-66558 +66509-66558 +66509-66542 +66509-66513 +66511-66513 +66512-66513 +66516-66525 +66516-66517 +66518-66522 +66519-66522 +66520-66522 +66521-66522 +66523-66525 +66524-66525 +66526-66542 +66527-66542 +66528-66542 +66529-66542 +66529-66532 +66531-66532 +66533-66542 +66534-66542 +66535-66537 +66536-66537 +66538-66542 +66538-66539 +66540-66542 +66541-66542 +66543-66558 +66544-66558 +66544-66547 +66546-66547 +66548-66558 +66549-66558 +66549-66554 +66550-66551 +66552-66554 +66553-66554 +66555-66558 +66556-66558 +66559-66573 +66559-66573 +66560-66573 +66560-66565 +66560-66564 +66561-66564 +66562-66564 +66563-66564 +66566-66573 +66567-66573 +66568-66570 +66569-66570 +66571-66573 +66572-66573 +66574-66623 +66574-66623 +66575-66623 +66575-66606 +66575-66590 +66576-66578 +66577-66578 +66579-66590 +66580-66588 +66581-66588 +66581-66582 +66583-66585 +66584-66585 +66586-66588 +66587-66588 +66589-66590 +66591-66606 +66592-66606 +66592-66606 +66592-66594 +66593-66594 +66595-66596 +66597-66598 +66599-66600 +66601-66606 +66602-66606 +66604-66606 +66605-66606 +66607-66623 +66608-66623 +66608-66612 +66610-66612 +66611-66612 +66614-66623 +66614-66620 +66614-66616 +66615-66616 +66617-66620 +66618-66620 +66619-66620 +66624-66681 +66624-66681 +66626-66628 +66627-66628 +66630-66631 +66632-66681 +66632-66636 +66632-66636 +66632-66634 +66633-66634 +66635-66636 +66637-66648 +66638-66648 +66638-66644 +66641-66644 +66642-66644 +66643-66644 +66645-66648 +66645-66646 +66649-66681 +66651-66657 +66651-66652 +66653-66657 +66654-66657 +66655-66657 +66656-66657 +66658-66681 +66659-66681 +66659-66674 +66659-66674 +66660-66674 +66661-66674 +66662-66674 +66662-66668 +66662-66665 +66662-66663 +66664-66665 +66666-66668 +66669-66674 +66670-66671 +66673-66674 +66675-66676 +66679-66680 +66682-66696 +66682-66696 +66684-66696 +66684-66691 +66684-66685 +66686-66691 +66687-66691 +66688-66691 +66689-66691 +66690-66691 +66692-66696 +66693-66696 +66694-66696 +66695-66696 +66697-66721 +66697-66721 +66698-66721 +66698-66704 +66700-66702 +66701-66702 +66703-66704 +66705-66721 +66706-66721 +66708-66710 +66709-66710 +66711-66721 +66711-66716 +66711-66712 +66713-66716 +66714-66716 +66715-66716 +66717-66721 +66717-66718 +66720-66721 +66722-66746 +66722-66746 +66723-66746 +66723-66738 +66723-66737 +66723-66729 +66724-66729 +66725-66729 +66725-66728 +66725-66726 +66727-66728 +66730-66737 +66731-66737 +66732-66737 +66733-66737 +66733-66735 +66733-66734 +66736-66737 +66737 +66739-66746 +66740-66746 +66742-66746 +66743-66746 +66743-66745 +66744-66745 +66747-66758 +66747-66758 +66748-66758 +66748-66755 +66749-66755 +66749-66752 +66749-66750 +66751-66752 +66752 +66753-66754 +66756-66757 +66759-66774 +66759-66774 +66760-66774 +66760-66765 +66761-66765 +66762-66764 +66763-66764 +66767-66768 +66769-66774 +66770-66774 +66772-66774 +66772-66773 +66775-66791 +66775-66791 +66776-66791 +66777-66791 +66777-66787 +66777-66782 +66778-66782 +66778-66779 +66781-66782 +66783-66786 +66784-66786 +66785-66786 +66788-66791 +66789-66791 +66791 +66792-66810 +66792-66810 +66793-66810 +66793-66800 +66794-66800 +66795-66796 +66798-66800 +66799-66800 +66801-66810 +66803-66810 +66805-66808 +66806-66808 +66806-66807 +66809-66810 +66811-66824 +66811-66824 +66812-66824 +66812-66813 +66815-66824 +66817-66819 +66818-66819 +66820-66824 +66821-66824 +66822-66824 +66823-66824 +66825-66856 +66825-66856 +66826-66856 +66826-66829 +66827-66829 +66828-66829 +66830 +66832-66833 +66834-66856 +66834-66846 +66834-66845 +66835-66845 +66837-66839 +66838-66839 +66840-66845 +66840-66842 +66843-66845 +66844-66845 +66844-66845 +66846 +66847-66856 +66848-66856 +66851-66856 +66851-66854 +66852-66854 +66853-66854 +66857-66878 +66857-66878 +66858-66878 +66859 +66862-66867 +66864-66867 +66865-66867 +66868-66870 +66869-66870 +66871-66878 +66872-66878 +66874-66875 +66876-66878 +66877-66878 +66878 +66879-66893 +66879-66893 +66880-66893 +66880-66882 +66881-66882 +66884-66893 +66884-66885 +66886-66893 +66886-66887 +66889-66893 +66889-66891 +66889-66890 +66892-66893 +66894-66910 +66894-66910 +66895-66910 +66895-66899 +66895 +66897-66899 +66898-66899 +66900-66910 +66901-66910 +66902-66910 +66903-66904 +66905-66909 +66905-66906 +66907-66909 +66908-66909 +66911-66978 +66911-66978 +66912-66978 +66912-66919 +66913 +66917-66919 +66918-66919 +66920-66978 +66921-66978 +66922-66978 +66922 +66924-66978 +66924-66938 +66925-66938 +66926-66938 +66926-66927 +66928-66930 +66929-66930 +66931-66933 +66932-66933 +66934-66938 +66935-66938 +66936-66938 +66937-66938 +66939-66978 +66940-66978 +66940-66942 +66941-66942 +66943-66945 +66944-66945 +66946-66949 +66947-66949 +66948-66949 +66951-66978 +66951-66958 +66951-66954 +66951-66952 +66955-66958 +66956-66958 +66959-66978 +66959-66963 +66960-66963 +66961-66963 +66962-66963 +66964-66978 +66965-66978 +66965-66966 +66968-66970 +66969-66970 +66971-66978 +66971-66973 +66972-66973 +66974-66978 +66975-66978 +66976-66978 +66977-66978 +66979-67014 +66979-67014 +66980-67014 +66981-66982 +66983-66986 +66984-66986 +66984-66985 +66987-66994 +66988-66994 +66988-66992 +66988-66991 +66989-66991 +66990-66991 +66993-66994 +66995-66999 +66995-66996 +66997-66999 +66998-66999 +67000-67004 +67001-67004 +67002-67004 +67003-67004 +67005-67014 +67006-67014 +67006-67007 +67008-67013 +67008-67010 +67009-67010 +67011-67013 +67012-67013 +67015-67056 +67015-67056 +67016-67056 +67016 +67017-67023 +67017-67018 +67020-67023 +67021-67023 +67022-67023 +67024-67056 +67025-67056 +67026-67028 +67027-67028 +67029-67056 +67029-67031 +67030-67031 +67033-67035 +67034-67035 +67036-67056 +67037-67056 +67038-67056 +67038-67043 +67038-67039 +67042-67043 +67044-67056 +67045-67056 +67045-67047 +67046-67047 +67049-67056 +67050-67056 +67051-67056 +67052-67056 +67052-67055 +67053-67055 +67054-67055 +67057-67080 +67057-67080 +67058-67080 +67058-67059 +67060-67066 +67061-67066 +67061-67062 +67063-67066 +67063-67064 +67065-67066 +67067-67080 +67068-67080 +67068-67072 +67070-67072 +67071-67072 +67073-67080 +67074-67080 +67075-67078 +67076-67078 +67077-67078 +67079-67080 +67081-67105 +67081-67105 +67082-67105 +67082-67090 +67082-67088 +67082-67085 +67083-67085 +67084-67085 +67085 +67086-67088 +67087-67088 +67091-67105 +67092-67105 +67093-67100 +67094-67099 +67094-67097 +67095-67097 +67096-67097 +67102-67105 +67106-67125 +67106-67125 +67107-67125 +67107-67118 +67107-67108 +67110-67116 +67111-67116 +67112-67116 +67112-67114 +67112-67113 +67115-67116 +67117-67118 +67119-67125 +67120-67125 +67120-67121 +67123-67125 +67124-67125 +67126-67132 +67126-67132 +67127-67132 +67128-67129 +67131-67132 +67133-67152 +67133-67152 +67134-67152 +67134-67145 +67134-67139 +67135-67138 +67136-67138 +67137-67138 +67140 +67142-67145 +67143-67145 +67144-67145 +67145 +67146-67152 +67147-67152 +67148-67152 +67149-67152 +67150-67152 +67151-67152 +67153-67160 +67153-67160 +67154-67160 +67156-67160 +67157-67160 +67158-67160 +67161-67191 +67161-67191 +67162-67191 +67162-67177 +67162-67177 +67162-67174 +67162-67173 +67163-67173 +67164-67173 +67166-67168 +67167-67168 +67169-67173 +67170-67171 +67172-67173 +67175-67177 +67176-67177 +67178-67184 +67178-67180 +67181-67184 +67181 +67183-67184 +67185-67191 +67186-67191 +67187-67191 +67188-67191 +67189-67191 +67190-67191 +67192-67222 +67192-67222 +67193-67222 +67193-67212 +67193-67203 +67193-67196 +67193-67194 +67195-67196 +67197-67201 +67198-67201 +67199-67201 +67200-67201 +67204-67212 +67205-67212 +67205-67208 +67206-67208 +67207-67208 +67209-67212 +67210-67212 +67211-67212 +67213-67222 +67214-67222 +67214-67216 +67215-67216 +67217-67221 +67218-67221 +67219-67221 +67220-67221 +67223-67248 +67223-67248 +67224-67248 +67225-67226 +67227-67248 +67227 +67228-67229 +67231-67232 +67233-67235 +67234-67235 +67236-67248 +67236-67241 +67238-67241 +67239-67241 +67240-67241 +67242-67248 +67243-67248 +67244-67248 +67245-67248 +67246-67248 +67247-67248 +67249-67259 +67249-67259 +67250-67259 +67250-67252 +67250 +67253-67259 +67254-67259 +67254 +67255-67258 +67256-67258 +67257-67258 +67260-67269 +67260-67269 +67261-67269 +67262-67269 +67263-67266 +67264-67266 +67265-67266 +67267-67269 +67267-67268 +67270-67275 +67270-67275 +67271-67272 +67274-67275 +67274-67275 +67276-67284 +67276-67284 +67277-67284 +67277-67278 +67279-67282 +67280-67282 +67280-67281 +67283 +67285-67292 +67285-67292 +67286-67292 +67287-67288 +67289-67292 +67290-67292 +67291-67292 +67292 +67293-67301 +67293-67301 +67294-67301 +67294-67298 +67294 +67295-67296 +67299-67301 +67300-67301 +67300 +67302-67316 +67302-67316 +67303-67316 +67303-67307 +67304-67307 +67304-67306 +67305-67306 +67308-67316 +67309-67316 +67309-67311 +67310-67311 +67312-67315 +67314-67315 +67315 +67317-67328 +67317-67328 +67318-67328 +67319-67320 +67322-67328 +67324-67328 +67325-67328 +67326-67327 +67329-67333 +67329-67333 +67330-67333 +67332-67333 +67332 +67334-67360 +67334-67360 +67335-67360 +67335-67338 +67335-67336 +67337-67338 +67339-67360 +67339-67346 +67340-67346 +67341-67346 +67343-67346 +67344-67346 +67345-67346 +67347-67360 +67348-67357 +67348-67354 +67349-67354 +67350-67354 +67351-67354 +67352-67354 +67353-67354 +67355-67357 +67356-67357 +67358-67360 +67359-67360 +67361-67369 +67361-67369 +67362-67369 +67362-67367 +67364-67367 +67365-67367 +67366-67367 +67368-67369 +67369 +67370-67383 +67370-67383 +67371-67383 +67371-67376 +67371 +67372-67373 +67375-67376 +67377-67383 +67378-67383 +67378 +67380-67383 +67381-67383 +67382-67383 +67384-67397 +67384-67397 +67385-67397 +67386-67387 +67388-67397 +67388-67391 +67389-67391 +67390-67391 +67392-67397 +67393-67397 +67394-67397 +67395-67397 +67396-67397 +67398-67411 +67398-67411 +67399-67411 +67399-67403 +67400-67403 +67401-67403 +67402-67403 +67405-67408 +67405-67407 +67406-67407 +67409-67411 +67410-67411 +67412-67419 +67412-67419 +67413-67419 +67416-67419 +67417-67419 +67418-67419 +67420-67431 +67420-67431 +67421-67431 +67421-67426 +67421-67423 +67421-67422 +67425-67426 +67427-67431 +67428-67431 +67430-67431 +67432-67465 +67432-67465 +67433-67465 +67435-67437 +67436-67437 +67438-67442 +67439-67442 +67439-67440 +67441-67442 +67443-67465 +67444-67465 +67444-67450 +67444-67447 +67445-67447 +67446-67447 +67449-67450 +67451-67456 +67452-67456 +67453-67456 +67454-67456 +67455-67456 +67457-67465 +67458-67465 +67458-67459 +67460-67465 +67461-67465 +67461-67462 +67464-67465 +67466-67484 +67466-67484 +67467-67484 +67468-67474 +67469-67474 +67470-67474 +67471-67474 +67472-67474 +67472-67473 +67475-67484 +67476-67484 +67476-67481 +67477-67481 +67478-67481 +67479-67481 +67480-67481 +67482-67484 +67482-67483 +67485-67513 +67485-67513 +67486-67513 +67486-67500 +67486 +67487-67498 +67487-67488 +67489-67498 +67490-67498 +67491-67498 +67491-67493 +67492-67493 +67494-67498 +67495-67498 +67496-67498 +67497-67498 +67501-67513 +67502-67513 +67502-67507 +67503-67504 +67505-67507 +67506-67507 +67508-67513 +67509-67513 +67511-67513 +67512-67513 +67514-67542 +67514-67542 +67515-67542 +67515-67523 +67515-67516 +67517-67518 +67520-67523 +67521-67523 +67522-67523 +67524-67542 +67525-67542 +67525-67526 +67528-67542 +67528 +67529-67542 +67530-67542 +67530 +67532-67534 +67533-67534 +67535-67536 +67537-67542 +67538-67542 +67539-67542 +67540-67542 +67540-67541 +67543-67553 +67543-67553 +67544-67553 +67544-67551 +67544 +67546-67548 +67547-67548 +67549-67551 +67550-67551 +67552-67553 +67553 +67554-67578 +67554-67578 +67555-67578 +67555-67571 +67555 +67556-67561 +67556-67557 +67558-67561 +67559-67561 +67560-67561 +67563-67571 +67563-67564 +67565-67571 +67566-67571 +67567-67571 +67568-67571 +67569-67571 +67570-67571 +67572-67578 +67573-67578 +67574-67576 +67575-67576 +67577-67578 +67579-67588 +67579-67588 +67580-67588 +67580-67582 +67581-67582 +67581 +67586-67588 +67587-67588 +67589-67612 +67589-67612 +67590-67612 +67590 +67592-67612 +67593-67612 +67594-67612 +67594-67607 +67595-67607 +67595-67600 +67595-67596 +67598-67600 +67599-67600 +67601-67607 +67602-67607 +67602-67603 +67605-67607 +67606-67607 +67608-67612 +67609-67612 +67609 +67613-67633 +67613-67633 +67614-67633 +67614-67626 +67615-67626 +67616-67618 +67616-67617 +67619-67626 +67619-67623 +67620-67623 +67621-67623 +67622-67623 +67624-67626 +67625-67626 +67627-67633 +67628-67629 +67630-67633 +67631-67633 +67634-67656 +67634-67656 +67635-67656 +67635 +67639-67656 +67640-67656 +67641-67652 +67641-67647 +67642-67647 +67643-67647 +67645-67647 +67646-67647 +67648-67649 +67650-67652 +67651-67652 +67653-67656 +67654-67656 +67655-67656 +67657-67674 +67657-67674 +67657-67668 +67657-67665 +67658 +67659-67660 +67661-67663 +67662-67663 +67666-67668 +67667-67668 +67669-67674 +67670-67674 +67671-67672 +67673-67674 +67674 +67675-67681 +67675-67681 +67676-67681 +67676-67677 +67679-67681 +67680-67681 +67682-67714 +67682-67714 +67683-67714 +67685-67686 +67687-67714 +67688-67714 +67688-67696 +67691-67696 +67693-67696 +67694-67696 +67694-67695 +67697-67714 +67698-67714 +67699-67704 +67700-67701 +67702-67704 +67703-67704 +67705-67714 +67706-67714 +67707-67714 +67708-67709 +67710-67714 +67711-67714 +67712-67714 +67712-67713 +67715-67727 +67715-67727 +67716-67727 +67716 +67717-67720 +67718-67720 +67719-67720 +67722-67727 +67722-67725 +67723-67724 +67726-67727 +67727 +67728-67740 +67728-67740 +67728-67732 +67729-67732 +67730-67732 +67731-67732 +67734-67740 +67735-67740 +67738-67740 +67739-67740 +67741-67758 +67741-67758 +67742-67743 +67744-67746 +67745-67746 +67748-67750 +67749-67750 +67751-67758 +67752-67758 +67752-67755 +67754-67755 +67756-67758 +67757-67758 +67757-67758 +67759-67777 +67759-67777 +67760-67777 +67760-67765 +67762-67765 +67763-67765 +67763-67764 +67766-67777 +67767-67777 +67767-67777 +67767-67770 +67768-67770 +67769-67770 +67771-67777 +67773-67774 +67775-67777 +67776-67777 +67778-67785 +67778-67785 +67779-67785 +67779-67781 +67780 +67782-67785 +67783-67785 +67784-67785 +67786-67820 +67786-67820 +67787-67820 +67787-67805 +67787 +67788-67799 +67788-67794 +67788-67791 +67789-67791 +67790-67791 +67792-67794 +67793-67794 +67795-67799 +67796-67799 +67797-67799 +67798-67799 +67801-67805 +67803-67804 +67806-67820 +67807-67820 +67808-67809 +67810-67820 +67810-67811 +67810 +67811 +67812-67820 +67814-67820 +67814-67819 +67814-67817 +67815-67817 +67815-67816 +67821-67849 +67821-67849 +67822-67849 +67822-67825 +67823-67825 +67824-67825 +67828-67831 +67829-67831 +67832-67837 +67834-67837 +67834-67835 +67836-67837 +67838-67849 +67838-67839 +67840-67849 +67841-67849 +67841-67845 +67841-67844 +67842-67844 +67846-67849 +67847-67849 +67848-67849 +67850-67873 +67850-67873 +67850-67865 +67850-67860 +67850-67851 +67853-67855 +67854-67855 +67856-67860 +67857-67860 +67858-67860 +67859-67860 +67861-67865 +67862-67865 +67864-67865 +67866-67873 +67866-67867 +67868-67873 +67869-67873 +67869-67872 +67870-67872 +67874-67913 +67874-67913 +67875-67913 +67875-67886 +67875-67876 +67879-67886 +67879-67883 +67880-67883 +67881-67883 +67881-67882 +67884-67886 +67885-67886 +67887-67913 +67888-67913 +67888-67899 +67888-67898 +67889-67898 +67890-67891 +67892-67898 +67892-67894 +67892-67893 +67895-67898 +67896-67898 +67896-67897 +67899 +67900-67913 +67901-67913 +67901-67908 +67901-67904 +67902-67904 +67902-67903 +67907-67908 +67909-67913 +67911-67912 +67914-67931 +67914-67931 +67915-67931 +67915-67916 +67917-67931 +67918-67931 +67918-67929 +67918-67920 +67919-67920 +67921 +67923-67929 +67925-67929 +67926-67929 +67927-67929 +67928-67929 +67930-67931 +67931 +67932-67946 +67932-67946 +67933-67946 +67934-67946 +67934-67940 +67936 +67937-67940 +67938-67940 +67939-67940 +67941-67946 +67942-67946 +67943-67946 +67943-67945 +67944-67945 +67947-67963 +67947-67963 +67948-67963 +67948-67949 +67950-67955 +67950-67952 +67951-67952 +67953-67955 +67954-67955 +67958-67963 +67958 +67959-67963 +67960-67963 +67961-67963 +67961-67962 +67964-67988 +67964-67988 +67965-67988 +67965-67978 +67965-67971 +67965-67968 +67966-67968 +67966-67967 +67970-67971 +67972-67978 +67973-67975 +67974-67975 +67976-67978 +67977-67978 +67979-67988 +67980-67988 +67981-67985 +67982-67985 +67983-67985 +67984-67985 +67986-67988 +67987-67988 +67989-68008 +67989-68008 +67990-68008 +67990-67991 +67992-67996 +67993-67996 +67994-67996 +67995-67996 +67998-68008 +68001-68008 +68002-68006 +68003-68006 +68004-68006 +68005-68006 +68009-68026 +68009-68026 +68010-68026 +68010 +68012-68026 +68012-68020 +68012-68016 +68012-68015 +68012-68014 +68013-68014 +68015 +68017-68020 +68018-68020 +68019-68020 +68021-68026 +68023-68026 +68024-68026 +68024-68025 +68027-68036 +68027-68036 +68028-68036 +68029-68035 +68029-68030 +68031-68035 +68032-68035 +68033-68035 +68034-68035 +68037-68078 +68037-68078 +68038-68078 +68038-68044 +68039-68040 +68041-68044 +68042-68044 +68043-68044 +68045-68072 +68046-68072 +68047-68072 +68047-68067 +68047-68053 +68048-68053 +68049-68053 +68050-68053 +68051-68053 +68052-68053 +68054-68055 +68056-68057 +68058-68059 +68060-68061 +68062-68063 +68064-68067 +68065-68067 +68065-68066 +68068-68072 +68070-68072 +68071-68072 +68073-68078 +68074-68078 +68074 +68077-68078 +68079-68101 +68079-68101 +68080-68101 +68080-68084 +68080-68083 +68081-68083 +68082-68083 +68085-68101 +68086-68101 +68086-68093 +68087-68090 +68088-68090 +68089-68090 +68091-68092 +68094-68101 +68095-68101 +68095-68098 +68096-68098 +68097-68098 +68100-68101 +68102-68115 +68102-68115 +68103-68115 +68104-68107 +68105-68107 +68106-68107 +68109-68112 +68109-68111 +68110-68111 +68113-68115 +68114-68115 +68116-68149 +68116-68149 +68117-68149 +68117-68138 +68118-68135 +68119-68135 +68119-68125 +68120-68125 +68121-68125 +68121-68122 +68123-68125 +68124-68125 +68126-68127 +68128-68129 +68130-68135 +68131-68135 +68132-68135 +68133-68135 +68134-68135 +68136-68138 +68137-68138 +68139-68149 +68140-68149 +68142-68149 +68143-68149 +68143-68144 +68145-68149 +68146-68149 +68147-68149 +68148-68149 +68150-68164 +68150-68164 +68152-68164 +68153-68164 +68154-68164 +68155-68164 +68156-68164 +68158-68159 +68160-68164 +68161-68164 +68162-68164 +68163-68164 +68165-68224 +68165-68224 +68166-68224 +68166-68174 +68167-68174 +68167-68168 +68169-68171 +68170-68171 +68172-68174 +68173-68174 +68175-68224 +68176-68224 +68176-68178 +68176 +68179-68224 +68180-68224 +68180-68183 +68181-68183 +68182-68183 +68184-68224 +68185-68224 +68186-68224 +68186-68187 +68188-68224 +68189-68224 +68189-68191 +68189-68190 +68194-68203 +68196-68203 +68197-68203 +68197-68200 +68198-68200 +68199-68200 +68201-68203 +68202-68203 +68204-68224 +68205-68224 +68206-68224 +68208-68224 +68209-68224 +68209-68216 +68209-68212 +68209-68211 +68210-68211 +68214-68216 +68214-68215 +68217-68224 +68218-68224 +68219-68224 +68220-68224 +68221-68224 +68225-68241 +68225-68241 +68226-68241 +68226-68228 +68227-68228 +68229-68234 +68230-68234 +68231-68234 +68232-68234 +68233-68234 +68236-68238 +68237-68238 +68239-68241 +68240-68241 +68240-68241 +68242-68249 +68242-68249 +68243-68249 +68244-68245 +68246-68249 +68247-68249 +68250-68257 +68250-68257 +68251-68257 +68253-68257 +68253-68256 +68253 +68254-68256 +68254-68256 +68255-68256 +68257 +68258-68298 +68258-68298 +68258-68276 +68258-68261 +68259-68261 +68260-68261 +68263-68266 +68263-68265 +68264-68265 +68267-68270 +68268-68270 +68269-68270 +68271-68276 +68272-68276 +68273-68276 +68275-68276 +68277-68298 +68278-68298 +68279-68280 +68281-68298 +68281-68289 +68282-68289 +68283-68289 +68283-68285 +68284-68285 +68286-68289 +68287-68289 +68288-68289 +68290-68298 +68291-68298 +68292-68298 +68293-68298 +68294-68298 +68295-68298 +68296-68298 +68299-68306 +68299-68306 +68300-68303 +68301-68303 +68302-68303 +68305-68306 +68307-68351 +68307-68351 +68307-68324 +68308-68313 +68309-68313 +68310-68313 +68311-68313 +68312-68313 +68316-68324 +68317-68324 +68317-68319 +68317-68318 +68320-68324 +68320-68321 +68325-68351 +68326-68351 +68326-68334 +68326-68331 +68330-68331 +68332-68334 +68333-68334 +68333-68334 +68335-68351 +68336-68351 +68337-68347 +68337-68341 +68339-68340 +68342-68347 +68343-68347 +68343-68347 +68344-68347 +68344-68345 +68346-68347 +68348-68351 +68352-68372 +68352-68372 +68353-68372 +68355-68356 +68357-68372 +68358-68372 +68358-68365 +68359-68361 +68360-68361 +68363-68365 +68364-68365 +68366-68372 +68367-68372 +68367-68369 +68368-68369 +68371-68372 +68373-68394 +68373-68394 +68374-68394 +68374-68383 +68374-68380 +68374-68378 +68375-68378 +68376-68378 +68377-68378 +68381-68382 +68384-68394 +68385-68394 +68385-68387 +68385-68386 +68388-68394 +68389-68394 +68391-68394 +68392-68394 +68392-68393 +68395-68399 +68395-68399 +68396-68399 +68398-68399 +68400-68420 +68400-68420 +68401-68420 +68401-68415 +68401-68411 +68401-68404 +68403-68404 +68405-68411 +68406-68411 +68408-68411 +68409-68411 +68410-68411 +68412-68415 +68413-68415 +68414-68415 +68416-68420 +68417-68420 +68418-68420 +68419-68420 +68421-68429 +68421-68429 +68422-68429 +68422-68423 +68424-68426 +68425-68426 +68428-68429 +68430-68464 +68430-68464 +68431-68464 +68431-68443 +68431-68435 +68432-68433 +68434-68435 +68436-68443 +68437-68443 +68439-68443 +68440-68443 +68441-68443 +68442-68443 +68444-68464 +68445-68464 +68445-68453 +68447-68449 +68448-68449 +68450-68453 +68451-68453 +68452-68453 +68454-68464 +68455-68464 +68457-68464 +68458-68464 +68459-68464 +68460-68464 +68461-68464 +68462-68464 +68463-68464 +68465-68483 +68465-68483 +68466-68483 +68466-68476 +68466-68473 +68468-68473 +68469-68473 +68470-68473 +68471-68473 +68472-68473 +68474-68476 +68475-68476 +68475-68476 +68477-68483 +68478-68483 +68481-68483 +68482-68483 +68484-68495 +68484-68495 +68485-68495 +68486-68490 +68487-68490 +68489-68490 +68492-68494 +68493-68494 +68496-68512 +68496-68512 +68497-68512 +68497-68504 +68497-68499 +68498-68499 +68502-68504 +68503-68504 +68505-68512 +68506-68512 +68508-68509 +68510-68512 +68511-68512 +68513-68533 +68513-68533 +68514-68533 +68514-68528 +68514 +68517-68524 +68517-68520 +68518-68520 +68519-68520 +68521-68524 +68522-68524 +68523-68524 +68525-68528 +68526-68528 +68527-68528 +68529-68533 +68530-68533 +68532-68533 +68534-68560 +68534-68560 +68535-68560 +68535-68544 +68535-68540 +68536-68540 +68537-68540 +68538-68540 +68539-68540 +68541-68544 +68542-68544 +68543-68544 +68545-68560 +68546-68560 +68547-68560 +68548-68560 +68549-68560 +68550-68560 +68553-68554 +68555-68558 +68556-68558 +68557-68558 +68559-68560 +68561-68592 +68561-68592 +68562-68592 +68562-68573 +68563-68573 +68564-68573 +68565-68573 +68566-68573 +68567-68573 +68568-68573 +68570-68571 +68572-68573 +68574-68592 +68574-68575 +68576-68578 +68577-68578 +68579-68580 +68581-68592 +68582-68592 +68584-68585 +68586-68592 +68586-68587 +68588-68592 +68591-68592 +68593-68610 +68593-68610 +68594-68597 +68595-68597 +68596-68597 +68599-68600 +68601-68610 +68602-68610 +68603-68605 +68604-68605 +68607-68610 +68608-68610 +68609-68610 +68611-68629 +68611-68629 +68611-68620 +68611-68615 +68611-68613 +68612-68613 +68616-68620 +68617-68620 +68619-68620 +68621-68629 +68623-68624 +68625-68629 +68626-68629 +68627-68629 +68628-68629 +68630-68643 +68630-68643 +68631-68643 +68631-68632 +68633-68643 +68633-68637 +68635-68637 +68636-68637 +68638-68643 +68639-68643 +68642-68643 +68644-68657 +68644-68657 +68645-68657 +68645-68649 +68647-68649 +68648-68649 +68650-68657 +68651-68657 +68653-68657 +68654-68657 +68654-68656 +68655-68656 +68658-68675 +68658-68675 +68659-68675 +68659-68663 +68660-68663 +68662-68663 +68664-68675 +68665-68668 +68666-68668 +68667-68668 +68669-68675 +68670-68675 +68670-68672 +68671-68672 +68673-68675 +68674-68675 +68676-68688 +68676-68688 +68677-68688 +68677-68680 +68677-68679 +68678-68679 +68681-68688 +68682-68688 +68684-68685 +68685 +68686-68688 +68687-68688 +68689-68706 +68689-68706 +68690-68706 +68690-68702 +68691-68702 +68692-68693 +68694-68702 +68695-68702 +68695-68696 +68697-68699 +68698-68699 +68703-68706 +68704-68706 +68707-68726 +68707-68726 +68708-68726 +68708-68713 +68708-68710 +68709-68710 +68709 +68713 +68714-68726 +68715-68726 +68717-68718 +68719-68726 +68720-68726 +68720 +68721-68722 +68723-68726 +68723-68724 +68727-68753 +68727-68753 +68728-68753 +68728-68731 +68729-68731 +68730-68731 +68734-68753 +68735-68753 +68735-68742 +68738-68742 +68738-68740 +68739-68740 +68741-68742 +68743-68753 +68744-68753 +68744-68745 +68748-68753 +68748-68749 +68752-68753 +68754-68770 +68754-68770 +68755-68770 +68755-68760 +68757-68760 +68758-68760 +68758-68759 +68761-68770 +68762-68770 +68764-68770 +68765-68770 +68765-68766 +68767-68770 +68769-68770 +68771-68787 +68771-68787 +68772-68787 +68772-68774 +68773-68774 +68775-68787 +68777-68782 +68778-68782 +68779-68782 +68780-68782 +68780-68781 +68784-68787 +68785-68787 +68785-68786 +68788-68794 +68788-68794 +68789-68794 +68789-68790 +68791 +68793-68794 +68795-68814 +68795-68814 +68796-68814 +68796-68798 +68798 +68800-68801 +68802-68814 +68803-68814 +68803-68807 +68804-68807 +68805-68807 +68806-68807 +68808-68814 +68809-68814 +68810-68814 +68811-68812 +68813-68814 +68815-68821 +68815-68821 +68816-68821 +68816-68817 +68821 +68822-68841 +68822-68841 +68823-68841 +68825-68826 +68827-68841 +68827-68832 +68828-68832 +68829-68832 +68830-68832 +68831-68832 +68833-68841 +68834-68841 +68834-68838 +68835-68838 +68836-68838 +68836-68837 +68839-68840 +68842-68860 +68842-68860 +68842-68856 +68842-68851 +68842 +68844-68851 +68845-68851 +68846-68851 +68846-68848 +68847-68848 +68849-68851 +68850-68851 +68852-68856 +68853-68856 +68853-68855 +68854-68855 +68857-68860 +68858-68860 +68859-68860 +68861-68867 +68861-68867 +68862-68867 +68862-68863 +68864-68867 +68866-68867 +68868-68896 +68868-68896 +68868-68879 +68868-68879 +68868-68870 +68869-68870 +68871-68879 +68873-68879 +68874-68879 +68877-68879 +68878-68879 +68881-68882 +68883-68886 +68883-68884 +68885-68886 +68888-68896 +68889-68896 +68890-68896 +68891-68896 +68892-68896 +68894-68896 +68895-68896 +68897-68916 +68897-68916 +68900-68916 +68901-68903 +68902-68903 +68904-68914 +68904-68906 +68905-68906 +68907-68910 +68908-68910 +68909-68910 +68911-68914 +68912-68914 +68913-68914 +68915-68916 +68917-68936 +68917-68936 +68919-68936 +68919-68920 +68921-68936 +68922-68936 +68923-68925 +68924-68925 +68926-68936 +68926-68934 +68929-68930 +68931-68934 +68932-68934 +68933-68934 +68935-68936 +68936 +68937-69008 +68937-69008 +68939-69008 +68939-68966 +68939-68960 +68940-68960 +68941-68943 +68942-68943 +68944-68946 +68945-68946 +68947-68960 +68948-68960 +68948-68956 +68948-68949 +68950-68956 +68951-68956 +68953-68956 +68954-68956 +68954-68955 +68957-68960 +68958-68960 +68959-68960 +68961-68966 +68963-68964 +68964 +68965-68966 +68967-69008 +68967-68974 +68970-68971 +68972-68974 +68973-68974 +68975-69008 +68976-69008 +68976 +68977-69008 +68978-69008 +68979-68982 +68980-68982 +68981-68982 +68983-68984 +68985-69008 +68986-68987 +68988-69008 +68988-68993 +68990-68993 +68991-68993 +68994-69008 +68995-69008 +68995-69003 +68995-69003 +68995-68997 +68995-68996 +68998-69003 +69001-69003 +69002-69003 +69006-69008 +69009-69027 +69009-69027 +69010-69027 +69010-69019 +69010-69014 +69011-69014 +69012-69014 +69012-69013 +69015-69019 +69016-69019 +69018-69019 +69020-69027 +69021-69027 +69022-69027 +69023-69027 +69024-69027 +69025-69027 +69026-69027 +69028-69058 +69028-69058 +69029-69058 +69029-69039 +69029-69031 +69030-69031 +69032-69039 +69033-69039 +69035-69039 +69036-69039 +69037-69039 +69038-69039 +69040-69058 +69041-69058 +69042-69045 +69043-69045 +69044-69045 +69046-69058 +69047-69056 +69047-69049 +69048-69049 +69052-69056 +69052-69053 +69054-69056 +69055-69056 +69057-69058 +69057-69058 +69059-69076 +69059-69076 +69060-69076 +69061-69076 +69061-69070 +69061-69064 +69062-69064 +69063-69064 +69065-69070 +69066-69070 +69067-69070 +69068-69070 +69068-69069 +69071-69076 +69072-69076 +69073-69076 +69075-69076 +69077-69081 +69077-69081 +69078-69081 +69080-69081 +69082-69145 +69082-69145 +69082-69085 +69083-69085 +69084-69085 +69087-69089 +69088-69089 +69090-69092 +69091-69092 +69093-69105 +69094-69105 +69095-69098 +69096-69098 +69097-69098 +69099-69105 +69101-69105 +69102-69105 +69103-69105 +69104-69105 +69106-69145 +69109 +69110-69112 +69111-69112 +69113-69114 +69115-69128 +69116-69128 +69117-69128 +69118-69128 +69119-69128 +69120-69128 +69122-69123 +69124-69128 +69125-69128 +69126-69128 +69127-69128 +69129-69145 +69130-69145 +69131-69145 +69132-69145 +69133-69145 +69133-69138 +69136-69138 +69137-69138 +69139-69145 +69140-69145 +69141-69145 +69143-69145 +69144-69145 +69146-69150 +69146-69150 +69147-69150 +69151-69172 +69151-69172 +69152-69172 +69152-69157 +69153-69154 +69155-69156 +69158-69172 +69159-69172 +69159-69160 +69162-69172 +69162-69165 +69162-69163 +69166-69172 +69167-69172 +69167-69168 +69169-69172 +69170-69172 +69171-69172 +69173-69184 +69173-69184 +69173-69178 +69173-69176 +69173-69174 +69177-69178 +69179-69184 +69180-69184 +69181-69184 +69182-69184 +69183-69184 +69185-69191 +69185-69191 +69186-69191 +69186-69188 +69187-69188 +69190-69191 +69192-69211 +69192-69211 +69192-69198 +69192-69198 +69193-69198 +69194-69198 +69195-69198 +69196-69198 +69197-69198 +69201-69204 +69202-69204 +69203-69204 +69206-69211 +69206-69209 +69207-69209 +69207-69209 +69208-69209 +69210-69211 +69212-69219 +69212-69219 +69212-69214 +69213-69214 +69217-69219 +69218-69219 +69220-69245 +69220-69245 +69221-69245 +69222-69245 +69223-69245 +69224-69245 +69225-69245 +69226-69245 +69227-69245 +69228-69245 +69229-69245 +69229-69235 +69232-69234 +69233-69234 +69236-69245 +69236-69242 +69238-69239 +69240-69242 +69241-69242 +69243-69245 +69244-69245 +69246-69258 +69246-69258 +69247-69258 +69247-69252 +69247-69248 +69250-69252 +69251-69252 +69253-69258 +69254-69258 +69255-69256 +69257-69258 +69259-69294 +69259-69294 +69260-69294 +69260-69277 +69260-69263 +69262-69263 +69264-69267 +69265-69267 +69266-69267 +69269-69277 +69269-69270 +69271-69277 +69272-69277 +69274-69277 +69275-69277 +69276-69277 +69278-69294 +69279-69294 +69280-69294 +69282-69294 +69282-69284 +69282-69283 +69285-69294 +69286-69294 +69286-69289 +69287-69289 +69288-69289 +69290-69293 +69291-69293 +69292-69293 +69295-69313 +69295-69313 +69296-69313 +69296-69307 +69296-69302 +69296-69298 +69297-69298 +69300-69302 +69301-69302 +69303-69307 +69304-69307 +69306-69307 +69308-69313 +69309-69313 +69309-69312 +69310-69312 +69311-69312 +69314-69326 +69314-69326 +69315-69326 +69315-69316 +69318-69320 +69319-69320 +69321-69326 +69322-69326 +69323-69326 +69324-69326 +69325-69326 +69327-69339 +69327-69339 +69328-69339 +69329-69330 +69331-69339 +69331 +69332-69339 +69333-69339 +69334-69339 +69334-69335 +69334-69335 +69337-69339 +69338-69339 +69340-69353 +69340-69353 +69341-69353 +69341-69343 +69342-69343 +69345-69346 +69347-69353 +69347 +69351-69353 +69352-69353 +69354-69357 +69354-69357 +69355-69357 +69355-69356 +69358-69364 +69358-69364 +69359-69364 +69360-69361 +69362-69364 +69363-69364 +69365-69378 +69365-69378 +69366-69378 +69367-69370 +69368-69370 +69369-69370 +69371-69372 +69373-69378 +69374-69378 +69374-69375 +69376-69378 +69377-69378 +69379-69391 +69379-69391 +69380-69391 +69382-69388 +69383-69388 +69384-69388 +69385-69388 +69386-69388 +69387-69388 +69389-69391 +69390-69391 +69392-69403 +69392-69403 +69393-69403 +69393-69397 +69394-69395 +69396-69397 +69398-69403 +69399-69403 +69400-69401 +69402-69403 +69404-69420 +69404-69420 +69405-69420 +69405-69412 +69407-69408 +69409-69412 +69409-69411 +69410-69411 +69413-69420 +69413-69417 +69414-69417 +69414-69415 +69416-69417 +69419-69420 +69421-69440 +69421-69440 +69422-69440 +69422-69428 +69423-69428 +69423-69424 +69424 +69426-69428 +69427-69428 +69429-69440 +69430-69440 +69431-69436 +69432-69436 +69433-69436 +69434-69436 +69435-69436 +69439-69440 +69441-69460 +69441-69460 +69442-69460 +69443-69444 +69445-69449 +69446-69449 +69447-69449 +69448-69449 +69451-69460 +69452-69460 +69453-69460 +69453-69454 +69455-69460 +69456-69460 +69457-69460 +69458-69460 +69459-69460 +69461-69476 +69461-69476 +69462-69476 +69462-69470 +69462-69466 +69462-69466 +69463-69466 +69464-69466 +69465-69466 +69467-69469 +69468-69469 +69471-69476 +69472-69476 +69472-69475 +69473-69475 +69473 +69474-69475 +69477-69484 +69477-69484 +69478-69484 +69479-69480 +69481-69484 +69482-69484 +69482-69483 +69485-69522 +69485-69522 +69486-69522 +69486-69489 +69486-69487 +69488-69489 +69491-69493 +69492-69493 +69494-69500 +69494 +69495-69500 +69496-69500 +69497-69500 +69498-69500 +69499-69500 +69501-69505 +69502-69505 +69503-69504 +69506-69522 +69508-69512 +69509-69512 +69509-69510 +69511-69512 +69513-69522 +69514-69522 +69516-69522 +69516-69519 +69517-69519 +69518-69519 +69520-69522 +69521-69522 +69523-69533 +69523-69533 +69524-69533 +69526-69533 +69527-69533 +69528-69533 +69528-69529 +69530-69531 +69534-69554 +69534-69554 +69535-69554 +69535-69549 +69536-69549 +69537-69538 +69539-69549 +69540-69549 +69541-69549 +69541-69544 +69542-69544 +69543-69544 +69545-69549 +69546-69549 +69547-69549 +69548-69549 +69550-69554 +69551-69554 +69551-69552 +69553-69554 +69555-69574 +69555-69574 +69556-69574 +69556-69566 +69556-69560 +69556-69557 +69556-69557 +69558-69559 +69561-69566 +69562-69566 +69562 +69563-69564 +69565-69566 +69567-69574 +69567-69573 +69568-69573 +69568-69572 +69568-69569 +69570-69572 +69571-69572 +69575-69603 +69575-69603 +69576-69603 +69576-69579 +69577-69579 +69577-69578 +69580-69588 +69581-69588 +69582-69588 +69583-69584 +69585-69588 +69586-69588 +69587-69588 +69590-69591 +69592-69603 +69592-69594 +69593-69594 +69595-69603 +69595-69599 +69596 +69598-69599 +69601-69603 +69602-69603 +69604-69620 +69604-69620 +69605-69620 +69605-69610 +69606-69607 +69608-69610 +69609-69610 +69611-69620 +69612-69620 +69613-69614 +69615-69620 +69616-69620 +69617-69620 +69618-69620 +69618-69619 +69621-69630 +69621-69630 +69621-69626 +69623-69624 +69625-69626 +69627-69630 +69628-69630 +69629-69630 +69631-69663 +69631-69663 +69632-69663 +69632-69633 +69634-69645 +69635-69645 +69636-69645 +69636-69642 +69637-69642 +69638-69642 +69639-69642 +69640-69642 +69641-69642 +69644-69645 +69649-69663 +69650-69663 +69650-69654 +69652-69654 +69652-69653 +69655-69663 +69656-69663 +69656-69660 +69657-69660 +69659-69660 +69662-69663 +69664-69685 +69664-69685 +69665-69685 +69667-69668 +69669-69685 +69669-69676 +69669-69671 +69670-69671 +69672-69673 +69675-69676 +69677-69685 +69678-69685 +69679-69685 +69679-69682 +69680-69682 +69681-69682 +69683-69684 +69686-69705 +69686-69705 +69686-69695 +69689-69691 +69690-69691 +69692-69695 +69693-69695 +69693-69694 +69696-69705 +69697-69705 +69697-69699 +69698-69699 +69703-69705 +69704-69705 +69706-69725 +69706-69725 +69707-69725 +69707-69716 +69707-69712 +69708-69712 +69709-69712 +69709-69711 +69710-69711 +69713-69716 +69714-69716 +69715-69716 +69717-69725 +69718-69725 +69719-69725 +69721-69725 +69722-69725 +69723-69725 +69724-69725 +69726-69735 +69726-69735 +69727-69735 +69727-69734 +69727-69732 +69728-69732 +69728-69729 +69730-69732 +69731-69732 +69736-69754 +69736-69754 +69737-69754 +69737 +69738-69739 +69741-69754 +69743-69744 +69745-69747 +69746-69747 +69748-69754 +69749-69754 +69750-69751 +69752-69754 +69753-69754 +69755-69773 +69755-69773 +69756-69773 +69757-69773 +69757-69767 +69758-69764 +69758-69760 +69759-69760 +69761-69764 +69762-69764 +69763-69764 +69766-69767 +69768-69773 +69769-69773 +69769-69772 +69770-69772 +69771-69772 +69774-69797 +69774-69797 +69775-69797 +69775-69776 +69778-69779 +69780-69794 +69781-69794 +69781 +69782-69794 +69783-69794 +69784-69785 +69786-69794 +69787-69794 +69787-69788 +69789-69794 +69790-69794 +69791-69794 +69791-69792 +69793-69794 +69795-69797 +69798-69800 +69798-69800 +69799-69800 +69799 +69801-69835 +69801-69835 +69802-69835 +69803-69830 +69803-69821 +69803-69816 +69803-69809 +69803-69805 +69803-69804 +69806-69809 +69807-69809 +69808-69809 +69810-69816 +69812-69816 +69813-69816 +69814-69816 +69815-69816 +69817-69821 +69819 +69820-69821 +69822-69830 +69823-69830 +69823-69824 +69825-69830 +69826-69830 +69827-69830 +69828-69830 +69829-69830 +69831-69835 +69832-69835 +69833-69835 +69833-69834 +69836-69847 +69836-69847 +69837-69847 +69838-69839 +69840-69841 +69842-69847 +69842 +69843-69847 +69844-69847 +69845-69847 +69845-69846 +69848-69864 +69848-69864 +69849-69864 +69849-69857 +69849 +69850-69851 +69853-69857 +69855-69857 +69856-69857 +69858-69864 +69859-69864 +69860-69864 +69861-69864 +69862-69864 +69863-69864 +69865-69876 +69865-69876 +69866-69876 +69868-69876 +69869-69876 +69870-69871 +69872-69876 +69873-69876 +69877-69884 +69877-69884 +69878-69884 +69879-69884 +69879-69880 +69881 +69883-69884 +69885-69932 +69885-69932 +69886-69932 +69886-69893 +69886-69891 +69887-69891 +69887-69889 +69888-69889 +69890-69891 +69894-69912 +69894-69898 +69894-69895 +69895 +69896-69898 +69896-69897 +69899-69912 +69900-69912 +69900-69906 +69901-69906 +69902-69905 +69903-69905 +69904-69905 +69907-69912 +69910-69912 +69911-69912 +69913-69932 +69913-69919 +69913-69915 +69914-69915 +69916-69918 +69917-69918 +69920-69932 +69920-69922 +69921-69922 +69925-69932 +69926-69932 +69927-69929 +69928-69929 +69930-69932 +69931-69932 +69933-69953 +69933-69953 +69934-69953 +69934 +69935-69936 +69937-69938 +69940-69953 +69942-69953 +69942-69943 +69944-69945 +69948-69953 +69948-69953 +69948-69949 +69950-69953 +69951-69953 +69952-69953 +69954-69970 +69954-69970 +69955-69970 +69955-69956 +69957-69966 +69957-69960 +69958-69960 +69959-69960 +69961-69966 +69962-69966 +69963-69966 +69964-69966 +69964-69965 +69969-69970 +69971-69990 +69971-69990 +69972-69990 +69972-69976 +69973-69976 +69974-69976 +69975-69976 +69977-69990 +69977-69980 +69978-69980 +69979-69980 +69981-69990 +69982-69990 +69983-69984 +69985-69990 +69985-69986 +69985 +69987-69990 +69989-69990 +69991-70010 +69991-70010 +69992-70010 +69992-69995 +69993-69995 +69994-69995 +69996-70010 +69997-70010 +69997-70007 +69999-70001 +70000-70001 +70002-70007 +70002-70004 +70003-70004 +70005-70007 +70006-70007 +70008-70010 +70009-70010 +70011-70034 +70011-70034 +70012-70034 +70012-70021 +70012-70016 +70013-70016 +70014-70016 +70015-70016 +70017-70018 +70020-70021 +70022-70034 +70023-70034 +70023-70028 +70027-70028 +70029-70034 +70030-70034 +70031-70033 +70032-70033 +70034 +70035-70051 +70035-70051 +70036-70051 +70036-70039 +70038-70039 +70040-70051 +70041-70051 +70041 +70043-70045 +70043-70044 +70046-70051 +70047-70051 +70048-70051 +70050-70051 +70052-70091 +70052-70091 +70053-70091 +70053-70054 +70055-70064 +70057-70059 +70058-70059 +70060-70064 +70061-70064 +70062-70064 +70063-70064 +70065-70067 +70066-70067 +70069-70070 +70071-70076 +70071-70073 +70072-70073 +70074-70076 +70075-70076 +70077-70091 +70078-70091 +70078-70087 +70079-70087 +70080-70087 +70080-70083 +70081-70083 +70081-70082 +70084-70087 +70084-70085 +70086-70087 +70088 +70090-70091 +70092-70122 +70092-70122 +70093-70122 +70093-70100 +70093-70095 +70094-70095 +70095 +70097-70100 +70099-70100 +70101-70122 +70102-70122 +70102-70108 +70106-70108 +70107-70108 +70109-70122 +70110-70122 +70110-70113 +70111-70113 +70112-70113 +70115-70122 +70118-70122 +70118-70119 +70118 +70119 +70120-70122 +70123-70127 +70123-70127 +70124-70127 +70125-70127 +70127 +70128-70135 +70128-70135 +70129-70135 +70130-70135 +70132-70135 +70133-70135 +70136-70150 +70136-70150 +70137-70150 +70137-70142 +70137 +70138-70142 +70139-70142 +70140-70142 +70141-70142 +70143-70150 +70144-70150 +70146-70150 +70146-70149 +70147-70149 +70151-70165 +70151-70165 +70152-70165 +70152-70156 +70152-70153 +70154-70156 +70155-70156 +70159-70165 +70159-70162 +70160-70162 +70161-70162 +70163-70165 +70164-70165 +70166-70178 +70166-70178 +70167-70178 +70167-70171 +70169-70171 +70170-70171 +70172-70178 +70173-70178 +70173-70176 +70174-70176 +70175-70176 +70177-70178 +70179-70184 +70179-70184 +70180-70184 +70180 +70183-70184 +70185-70195 +70185-70195 +70186-70195 +70186-70190 +70186-70187 +70188-70189 +70191-70195 +70192-70195 +70193-70195 +70194-70195 +70196-70212 +70196-70212 +70197-70212 +70197-70203 +70198-70201 +70198-70199 +70200-70201 +70202-70203 +70204-70212 +70205-70212 +70206-70207 +70208-70209 +70210-70211 +70212 +70213-70218 +70213-70218 +70214-70218 +70216-70218 +70216 +70218 +70219-70239 +70219-70239 +70220-70239 +70220-70223 +70220-70221 +70222-70223 +70224-70239 +70224-70231 +70224 +70226-70231 +70227-70231 +70227-70228 +70229-70231 +70230-70231 +70232-70239 +70233-70239 +70234-70236 +70235-70236 +70237-70239 +70237-70238 +70240-70254 +70240-70254 +70241-70254 +70242 +70243-70254 +70244-70254 +70245-70254 +70245-70248 +70245-70247 +70246-70247 +70249-70254 +70250-70254 +70250-70252 +70253-70254 +70254 +70255-70287 +70255-70287 +70256-70287 +70258-70287 +70258 +70260-70261 +70262-70265 +70263-70265 +70263-70264 +70266-70287 +70266-70273 +70266-70267 +70268-70270 +70269-70270 +70272-70273 +70274-70287 +70275-70287 +70277-70280 +70278-70280 +70279-70280 +70281-70287 +70282-70287 +70283-70287 +70284-70287 +70285-70287 +70286-70287 +70288-70325 +70288-70325 +70289-70325 +70290-70291 +70292-70293 +70294-70325 +70294-70313 +70294 +70295-70313 +70296-70313 +70296-70297 +70301-70313 +70302-70313 +70303-70305 +70304-70305 +70306-70313 +70307-70313 +70307-70310 +70308-70310 +70309-70310 +70311-70313 +70312-70313 +70314-70325 +70315-70325 +70318-70325 +70318-70324 +70320-70323 +70321-70323 +70322-70323 +70326-70361 +70326-70361 +70327-70361 +70327-70328 +70329-70361 +70330-70361 +70330-70333 +70331-70333 +70332-70333 +70334-70361 +70335-70361 +70335-70339 +70336-70337 +70338-70339 +70341-70361 +70341-70342 +70341-70342 +70343-70355 +70343-70353 +70343-70344 +70345-70353 +70346-70353 +70347-70353 +70349-70353 +70350-70353 +70351-70353 +70352-70353 +70357-70361 +70357 +70358-70361 +70359-70361 +70360-70361 +70362-70379 +70362-70379 +70363-70379 +70363-70375 +70363-70372 +70363-70370 +70365-70368 +70366-70368 +70367-70368 +70369-70370 +70370 +70371-70372 +70372 +70373-70375 +70374-70375 +70374 +70376-70379 +70377-70379 +70377-70378 +70380-70403 +70380-70403 +70381-70403 +70381-70388 +70382-70386 +70383-70386 +70384-70386 +70384-70385 +70387-70388 +70389-70403 +70390-70403 +70391-70393 +70392-70393 +70395-70396 +70397-70403 +70398-70403 +70400-70403 +70401-70403 +70402-70403 +70404-70434 +70404-70434 +70405-70434 +70405-70408 +70406-70408 +70407-70408 +70408 +70409-70434 +70410-70434 +70411-70434 +70412-70434 +70412-70422 +70414-70422 +70415-70422 +70416-70417 +70418-70422 +70419-70422 +70420-70422 +70420-70421 +70423-70434 +70424-70434 +70424-70427 +70425-70426 +70428-70434 +70429-70434 +70429 +70432-70434 +70433-70434 +70435-70451 +70435-70451 +70436-70451 +70436-70438 +70439-70451 +70440-70451 +70441-70445 +70442-70445 +70443-70445 +70444-70445 +70446-70451 +70447-70451 +70448-70451 +70450-70451 +70452-70461 +70452-70461 +70453-70461 +70453-70456 +70454-70456 +70455-70456 +70457-70461 +70458-70459 +70460-70461 +70462-70468 +70462-70468 +70463-70468 +70464-70465 +70466-70468 +70467-70468 +70469-70480 +70469-70480 +70470-70480 +70471-70473 +70472-70473 +70474-70477 +70474-70475 +70476-70477 +70478-70480 +70479-70480 +70481-70494 +70481-70494 +70482-70494 +70482 +70483-70485 +70484-70485 +70487-70489 +70488-70489 +70492-70494 +70493-70494 +70495-70502 +70495-70502 +70496-70502 +70496-70498 +70497-70498 +70500-70502 +70501-70502 +70503-70511 +70503-70511 +70504-70511 +70507-70511 +70509-70511 +70510-70511 +70512-70542 +70512-70542 +70513-70542 +70513-70519 +70514-70515 +70517-70519 +70518-70519 +70520-70542 +70521-70542 +70523-70542 +70523-70533 +70523-70529 +70524-70526 +70525-70526 +70528-70529 +70530-70533 +70531-70533 +70532-70533 +70534-70542 +70535-70542 +70536-70537 +70539-70542 +70540-70542 +70541-70542 +70543-70564 +70543-70564 +70544-70564 +70544-70547 +70545-70547 +70546-70547 +70548-70549 +70550-70551 +70552-70557 +70553-70557 +70554-70557 +70555-70557 +70556-70557 +70558-70564 +70558-70561 +70558-70559 +70560-70561 +70562-70564 +70563-70564 +70565-70569 +70565-70569 +70566-70569 +70568-70569 +70570-70582 +70570-70582 +70571-70582 +70571-70577 +70571 +70572-70573 +70576-70577 +70578-70582 +70579-70582 +70581-70582 +70583-70610 +70583-70610 +70584-70610 +70585-70610 +70585-70597 +70585-70586 +70587-70594 +70588-70594 +70589-70594 +70590-70594 +70591-70592 +70593-70594 +70597 +70598-70610 +70599-70610 +70599-70609 +70600-70609 +70600-70603 +70601-70603 +70602-70603 +70604-70609 +70605-70609 +70606-70609 +70607-70609 +70608-70609 +70611-70624 +70611-70624 +70612-70624 +70613-70624 +70614-70616 +70615-70616 +70618-70624 +70619-70624 +70620-70624 +70620-70621 +70622-70624 +70623-70624 +70625-70640 +70625-70640 +70626-70640 +70628-70640 +70628-70637 +70628-70631 +70628-70629 +70630-70631 +70632-70637 +70632-70634 +70633-70634 +70636-70637 +70638-70640 +70640 +70641-70654 +70641-70654 +70642-70654 +70644-70645 +70646-70654 +70646 +70647-70650 +70649-70650 +70651-70654 +70651 +70652-70654 +70653-70654 +70655-70657 +70655-70657 +70656-70657 +70658-70672 +70658-70672 +70659-70672 +70659-70667 +70661-70667 +70662-70667 +70663-70667 +70664-70667 +70665-70667 +70666-70667 +70670-70672 +70671-70672 +70673-70684 +70673-70684 +70674-70684 +70674-70675 +70677-70684 +70678-70684 +70679-70684 +70680-70684 +70681-70684 +70682 +70685-70693 +70685-70693 +70688-70693 +70688-70691 +70688-70689 +70690-70691 +70692-70693 +70694-70702 +70694-70702 +70695-70702 +70696-70699 +70697-70699 +70697-70698 +70700-70702 +70700 +70703-70707 +70703-70707 +70704-70707 +70704 +70706-70707 +70708-70732 +70708-70732 +70709-70732 +70709-70713 +70711-70713 +70712-70713 +70714-70732 +70714-70715 +70716-70721 +70717-70721 +70718-70721 +70720-70721 +70723-70724 +70725-70726 +70727-70732 +70728-70732 +70730-70732 +70731-70732 +70733-70762 +70733-70762 +70734-70762 +70734 +70738-70762 +70738-70743 +70739 +70741-70743 +70742-70743 +70744-70762 +70745-70762 +70747-70749 +70748-70749 +70750-70762 +70750 +70751-70762 +70752-70762 +70753-70762 +70753-70755 +70754-70755 +70756-70762 +70758-70760 +70758-70759 +70761-70762 +70763-70781 +70763-70781 +70764-70781 +70764-70773 +70764-70765 +70766-70772 +70766-70768 +70769-70772 +70770-70772 +70771-70772 +70774-70781 +70775-70781 +70775-70778 +70776-70778 +70777-70778 +70780-70781 +70780 +70782-70792 +70782-70792 +70783-70792 +70783-70787 +70785-70787 +70786-70787 +70788-70792 +70789-70792 +70789-70791 +70790-70791 +70793-70808 +70793-70808 +70794-70808 +70794-70798 +70794-70796 +70799-70808 +70800-70808 +70800-70805 +70801-70805 +70801-70802 +70803-70805 +70804-70805 +70808 +70809-70821 +70809-70821 +70810-70821 +70810-70815 +70812-70815 +70813-70815 +70814-70815 +70816-70821 +70817-70821 +70819-70821 +70820-70821 +70822-70832 +70822-70832 +70823-70832 +70824-70832 +70824-70825 +70827-70828 +70829-70832 +70830-70832 +70830-70831 +70833-70886 +70833-70886 +70834-70886 +70834-70866 +70834-70855 +70834-70845 +70834-70839 +70834-70837 +70834-70835 +70836-70837 +70838-70839 +70840-70845 +70841-70845 +70842-70845 +70843-70845 +70844-70845 +70846-70855 +70847-70855 +70848-70855 +70849-70850 +70851-70855 +70852-70855 +70853-70855 +70854-70855 +70856-70866 +70856-70860 +70857-70858 +70859-70860 +70861-70866 +70862-70866 +70863-70864 +70865-70866 +70868-70869 +70871-70876 +70872-70876 +70873-70876 +70873-70874 +70875-70876 +70877-70886 +70877-70882 +70877-70879 +70878-70879 +70881-70882 +70883-70886 +70884-70886 +70886 +70887-70897 +70887-70897 +70888-70897 +70889-70893 +70889-70890 +70891-70893 +70892-70893 +70895-70897 +70897 +70898-70913 +70898-70913 +70899-70913 +70901-70913 +70901-70907 +70901-70903 +70902-70903 +70904-70907 +70905-70907 +70906-70907 +70909-70910 +70911-70913 +70912-70913 +70914-70926 +70914-70926 +70915-70926 +70915-70919 +70918-70919 +70920-70926 +70921-70926 +70922-70926 +70922-70923 +70924-70926 +70927-70937 +70927-70937 +70929-70937 +70930-70937 +70930-70932 +70930-70931 +70933-70937 +70936-70937 +70938-70964 +70938-70964 +70939-70964 +70939-70945 +70940-70945 +70941-70945 +70941-70942 +70943-70945 +70944-70945 +70946-70964 +70946-70959 +70946-70955 +70947-70955 +70947-70949 +70948-70949 +70950-70955 +70951-70955 +70951-70952 +70953-70955 +70954-70955 +70956-70959 +70957-70959 +70962-70964 +70963-70964 +70965-70982 +70965-70982 +70966-70982 +70966-70967 +70968-70973 +70968-70969 +70970-70973 +70971-70973 +70971-70972 +70976-70978 +70977-70978 +70979 +70980-70982 +70981-70982 +70983-70988 +70983-70988 +70984-70988 +70984-70985 +70986-70988 +70987-70988 +70988 +70989-71027 +70989-71027 +70990-71027 +70990-70991 +70992-71027 +70992-70995 +70993-70994 +70996-71027 +70997-71027 +70998-71027 +70998-71000 +70998-70999 +71001-71027 +71002-71027 +71003-71004 +71005-71007 +71006-71007 +71006-71007 +71008-71013 +71008-71009 +71011-71013 +71012-71013 +71014-71027 +71014-71015 +71017-71027 +71018-71027 +71019-71027 +71019-71023 +71019-71021 +71020-71021 +71022-71023 +71024-71027 +71025-71027 +71026-71027 +71028-71037 +71028-71037 +71029-71037 +71031-71032 +71033-71037 +71033 +71034 +71035-71037 +71036-71037 +71038-71050 +71038-71050 +71039-71050 +71039-71040 +71042-71050 +71042-71043 +71043 +71044-71050 +71045-71050 +71047-71050 +71048-71050 +71049-71050 +71051-71064 +71051-71064 +71052-71064 +71054-71055 +71056-71057 +71058-71064 +71058-71061 +71059-71060 +71065-71077 +71065-71077 +71066-71077 +71066-71069 +71068-71069 +71070-71077 +71071-71077 +71073-71074 +71075-71077 +71076-71077 +71078-71118 +71078-71118 +71079-71118 +71079-71091 +71080-71091 +71080-71081 +71083-71084 +71085-71091 +71086-71091 +71088-71091 +71089-71091 +71090-71091 +71092-71118 +71093-71108 +71093-71099 +71093-71094 +71095-71099 +71096-71099 +71097-71099 +71098-71099 +71100-71104 +71101-71104 +71102-71104 +71103-71104 +71106-71108 +71107-71108 +71109-71118 +71110-71118 +71110 +71112-71118 +71113-71118 +71113-71116 +71114-71116 +71115-71116 +71119-71146 +71119-71146 +71120-71146 +71120-71125 +71120-71121 +71123-71125 +71124-71125 +71127-71128 +71129-71146 +71129-71133 +71130-71131 +71134-71146 +71135-71146 +71135-71142 +71135-71136 +71135 +71137-71142 +71138-71142 +71139-71140 +71141-71142 +71143-71146 +71144-71146 +71147-71164 +71147-71164 +71148-71164 +71148 +71150-71152 +71151-71152 +71154-71164 +71155-71158 +71157-71158 +71159-71164 +71160-71164 +71161-71164 +71162-71164 +71162-71163 +71165-71198 +71165-71198 +71166-71198 +71168-71198 +71168-71183 +71168-71169 +71170-71183 +71171-71183 +71172-71175 +71173-71175 +71174-71175 +71176-71183 +71177-71183 +71178-71183 +71179-71183 +71180-71183 +71181-71183 +71182-71183 +71185-71187 +71186-71187 +71188-71198 +71188-71193 +71190-71193 +71191-71193 +71192-71193 +71194-71198 +71195-71198 +71197-71198 +71199-71202 +71199-71202 +71200-71202 +71200-71201 +71203-71218 +71203-71218 +71204-71218 +71204-71209 +71204-71205 +71206 +71208-71209 +71210-71218 +71211-71218 +71211-71216 +71212-71216 +71212-71213 +71214-71216 +71215-71216 +71219-71225 +71219-71225 +71220-71225 +71220-71221 +71223-71225 +71224-71225 +71226-71239 +71226-71239 +71227-71239 +71227-71228 +71229-71230 +71232-71239 +71233-71239 +71233-71235 +71234-71235 +71236-71239 +71237-71239 +71238-71239 +71240-71255 +71240-71255 +71241-71255 +71241-71246 +71242-71246 +71243-71246 +71244-71246 +71245-71246 +71247-71248 +71249-71250 +71251-71254 +71252-71254 +71253-71254 +71256-71267 +71256-71267 +71257-71267 +71257-71258 +71261-71267 +71262-71267 +71262 +71263-71267 +71263-71265 +71264-71265 +71268-71290 +71268-71290 +71269-71290 +71269-71275 +71269-71271 +71269-71270 +71272-71275 +71273-71275 +71274-71275 +71276-71290 +71277-71290 +71278-71279 +71280-71290 +71282-71290 +71285-71286 +71287-71290 +71287-71289 +71288-71289 +71291-71300 +71291-71300 +71292-71293 +71295-71300 +71295-71296 +71297-71299 +71298-71299 +71301-71305 +71301-71305 +71302-71305 +71305 +71306-71311 +71306-71311 +71307-71311 +71308-71311 +71308-71309 +71312-71354 +71312-71354 +71313-71354 +71313-71314 +71316-71354 +71316-71330 +71316-71322 +71316-71318 +71317-71318 +71319-71322 +71320-71322 +71321-71322 +71323-71324 +71325-71326 +71327-71330 +71328-71330 +71329-71330 +71331-71354 +71332-71354 +71333-71339 +71335-71336 +71337-71339 +71338-71339 +71340-71354 +71341-71354 +71342-71354 +71342 +71343-71346 +71344-71346 +71345-71346 +71347-71354 +71348-71354 +71348-71350 +71349-71350 +71352-71354 +71353-71354 +71355-71364 +71355-71364 +71356-71364 +71356-71358 +71357-71358 +71359-71364 +71360-71364 +71361-71364 +71362-71364 +71365-71372 +71365-71372 +71367-71370 +71368-71370 +71369-71370 +71371-71372 +71373-71382 +71373-71382 +71374-71382 +71374-71377 +71376-71377 +71378-71382 +71379-71382 +71382 +71383-71398 +71383-71398 +71384-71398 +71385-71386 +71387-71389 +71388-71389 +71391-71398 +71392-71398 +71393-71398 +71394-71398 +71396-71398 +71397-71398 +71399-71426 +71399-71426 +71400-71426 +71401-71403 +71402-71403 +71405-71426 +71405-71406 +71408-71426 +71409-71426 +71410-71413 +71412-71413 +71415-71426 +71415-71417 +71416-71417 +71418-71423 +71419-71423 +71419-71420 +71421-71423 +71422-71423 +71427-71491 +71427-71491 +71427-71444 +71427-71442 +71428-71442 +71429-71442 +71431-71433 +71432-71433 +71434-71442 +71436-71442 +71437-71442 +71437-71438 +71439-71442 +71441-71442 +71445-71491 +71445-71461 +71446-71461 +71447-71461 +71448-71451 +71449-71451 +71450-71451 +71452-71455 +71453-71455 +71454-71455 +71456-71461 +71457-71461 +71458-71461 +71459-71461 +71462-71491 +71462-71474 +71462-71465 +71463-71465 +71464-71465 +71466-71474 +71467-71474 +71469-71470 +71471-71474 +71471-71472 +71473-71474 +71475-71491 +71475-71485 +71477-71485 +71477 +71478-71485 +71479-71485 +71480-71485 +71481-71485 +71482-71485 +71483-71485 +71484-71485 +71487-71491 +71487-71488 +71490-71491 +71492-71511 +71492-71511 +71493-71511 +71494-71505 +71495-71505 +71496-71505 +71498-71505 +71498-71503 +71499-71503 +71500-71503 +71501-71503 +71502-71503 +71504-71505 +71506-71511 +71509-71511 +71510-71511 +71512-71547 +71512-71547 +71512-71519 +71513-71514 +71516-71519 +71517-71519 +71518-71519 +71520-71547 +71521-71547 +71522-71547 +71525-71547 +71526-71528 +71527-71528 +71530-71547 +71530-71536 +71530-71535 +71531-71535 +71532-71535 +71533-71535 +71534-71535 +71537-71547 +71538-71540 +71539-71540 +71542-71547 +71543-71547 +71544-71547 +71546-71547 +71548-71567 +71548-71567 +71549-71567 +71551-71567 +71551-71553 +71552-71553 +71554-71567 +71555-71567 +71556-71567 +71557-71567 +71559-71567 +71560-71567 +71560-71563 +71561-71563 +71562-71563 +71564-71567 +71565-71567 +71565 +71566-71567 +71568-71584 +71568-71584 +71569-71571 +71570-71571 +71573-71584 +71573-71574 +71576-71579 +71577-71579 +71578-71579 +71580-71584 +71581-71584 +71582-71584 +71583-71584 +71585-71602 +71585-71602 +71585-71591 +71587-71588 +71589-71591 +71589-71590 +71593-71596 +71594-71596 +71595-71596 +71597-71602 +71598-71602 +71599-71602 +71600-71602 +71601-71602 +71603-71623 +71603-71623 +71604-71623 +71605-71612 +71605-71608 +71606-71608 +71606-71607 +71609-71612 +71611-71612 +71613-71623 +71614-71623 +71614-71617 +71615-71617 +71616-71617 +71618-71622 +71619-71622 +71620-71622 +71621-71622 +71624-71632 +71624-71632 +71625-71632 +71626-71632 +71626-71628 +71629-71632 +71630-71632 +71631-71632 +71633-71654 +71633-71654 +71636-71654 +71637-71654 +71637-71639 +71637-71638 +71642-71654 +71643-71654 +71645-71654 +71646-71654 +71646-71651 +71647-71650 +71648-71650 +71649-71650 +71653-71654 +71653-71654 +71655-71663 +71655-71663 +71656-71663 +71657-71663 +71658-71662 +71659-71662 +71660-71662 +71661-71662 +71664-71669 +71664-71669 +71666-71669 +71668-71669 +71670-71690 +71670-71690 +71671-71690 +71672-71681 +71672-71673 +71674-71681 +71675-71681 +71675-71676 +71677-71681 +71678-71681 +71679-71681 +71680-71681 +71682-71690 +71683-71690 +71683-71685 +71684-71685 +71687-71690 +71688-71690 +71689-71690 +71691-71712 +71691-71712 +71692-71712 +71692-71696 +71693-71696 +71695-71696 +71697-71712 +71698-71699 +71700-71702 +71701-71702 +71703-71712 +71704-71712 +71705-71712 +71705-71709 +71706-71709 +71707-71709 +71708-71709 +71710-71712 +71711-71712 +71713-71746 +71713-71746 +71714-71746 +71714 +71719-71746 +71720-71746 +71720-71725 +71721-71722 +71723-71725 +71724-71725 +71726-71746 +71727-71746 +71727-71742 +71728-71729 +71730-71742 +71731-71742 +71732-71733 +71734-71742 +71735-71742 +71735-71736 +71737-71738 +71740-71742 +71741-71742 +71743-71746 +71744-71746 +71745-71746 +71747-71767 +71747-71767 +71747-71750 +71747-71749 +71747-71748 +71751-71767 +71752-71767 +71753-71767 +71753-71756 +71754-71756 +71755-71756 +71757-71759 +71758-71759 +71760-71762 +71761-71762 +71763-71767 +71764-71767 +71765-71767 +71766-71767 +71768-71778 +71768-71778 +71769-71778 +71771-71778 +71774-71778 +71774 +71775 +71776-71778 +71777-71778 +71779-71792 +71779-71792 +71780-71792 +71781-71792 +71781-71782 +71782 +71783-71792 +71784-71792 +71784-71786 +71785-71786 +71789-71792 +71790-71792 +71791-71792 +71793-71807 +71793-71807 +71794-71807 +71795-71796 +71798-71800 +71799-71800 +71801-71807 +71801-71804 +71802-71803 +71808-71819 +71808-71819 +71809-71819 +71809-71812 +71811-71812 +71813-71819 +71814-71819 +71817-71819 +71818-71819 +71820-71836 +71820-71836 +71821-71836 +71823-71824 +71826-71831 +71827-71831 +71828-71831 +71829-71831 +71829-71830 +71832-71836 +71833-71834 +71835-71836 +71837-71845 +71837-71845 +71838-71845 +71839-71840 +71842-71845 +71844-71845 +71846-71861 +71846-71861 +71847-71861 +71847-71854 +71848-71849 +71850-71854 +71851-71854 +71851-71853 +71852-71853 +71855-71861 +71856-71861 +71857-71861 +71858-71861 +71859-71861 +71860-71861 +71862-71898 +71862-71898 +71863-71898 +71865-71898 +71866-71898 +71867-71898 +71867-71873 +71867-71868 +71869-71872 +71870-71872 +71871-71872 +71874-71898 +71875-71898 +71876-71898 +71876-71878 +71877-71878 +71879-71898 +71880-71898 +71881-71898 +71881-71884 +71882-71884 +71883-71884 +71885-71898 +71885-71889 +71888-71889 +71890-71891 +71893-71898 +71894-71898 +71895-71898 +71896-71898 +71897-71898 +71899-71917 +71899-71917 +71900-71917 +71900-71904 +71901-71904 +71902-71904 +71904 +71906-71909 +71907-71909 +71908-71909 +71910-71911 +71912-71917 +71913-71917 +71913-71915 +71914-71915 +71916-71917 +71918-71935 +71918-71935 +71919-71935 +71920-71923 +71921-71923 +71922-71923 +71924-71935 +71925-71935 +71926-71935 +71926-71929 +71927-71929 +71930-71935 +71931-71935 +71933-71935 +71934-71935 +71936-71960 +71936-71960 +71937-71960 +71937-71953 +71938-71953 +71938-71944 +71938-71940 +71939-71940 +71943-71944 +71945-71953 +71946-71953 +71946-71947 +71948-71953 +71949-71953 +71950-71953 +71950-71951 +71952-71953 +71954-71960 +71954-71956 +71957-71960 +71957-71960 +71958-71960 +71959-71960 +71961-71980 +71961-71980 +71962-71980 +71962-71964 +71962-71963 +71965-71980 +71966-71980 +71967-71968 +71969-71980 +71970-71980 +71971-71980 +71971-71973 +71972-71973 +71974-71975 +71976-71979 +71977-71979 +71978-71979 +71981-72006 +71981-72006 +71982-72006 +71983-72006 +71983-71991 +71984-71991 +71985-71991 +71986-71991 +71986-71987 +71988-71991 +71989-71991 +71990-71991 +71993-71998 +71994-71998 +71995-71996 +71997-71998 +71999-72006 +72001-72002 +72003-72006 +72004-72006 +72007-72028 +72007-72028 +72008-72028 +72008-72015 +72009-72011 +72010-72011 +72012-72015 +72013-72015 +72014-72015 +72017-72019 +72018-72019 +72021-72024 +72022-72024 +72023-72024 +72025-72028 +72026-72028 +72026-72027 +72029-72043 +72029-72043 +72030-72043 +72030-72034 +72031-72032 +72033-72034 +72035-72043 +72036-72043 +72036-72039 +72036-72037 +72038-72039 +72039 +72041-72043 +72042-72043 +72044-72093 +72044-72093 +72045-72093 +72045-72058 +72046-72049 +72047-72049 +72048-72049 +72050-72058 +72051-72058 +72052-72058 +72053-72058 +72053-72054 +72055-72058 +72056-72058 +72057-72058 +72059-72093 +72060-72093 +72060-72063 +72062-72063 +72064-72083 +72064-72073 +72065-72072 +72065 +72066-72072 +72067-72072 +72068-72072 +72068-72069 +72070-72072 +72071-72072 +72074-72083 +72075-72083 +72076-72083 +72077-72080 +72078-72080 +72079-72080 +72082-72083 +72085-72093 +72086-72093 +72087-72093 +72088-72093 +72089-72093 +72090-72093 +72090-72091 +72092-72093 +72094-72099 +72094-72099 +72095-72099 +72096-72097 +72098-72099 +72100-72110 +72100-72110 +72101-72110 +72101-72105 +72102-72103 +72104-72105 +72106-72110 +72107-72110 +72107 +72109-72110 +72111-72132 +72111-72132 +72112-72132 +72114-72132 +72114-72124 +72114-72120 +72114-72116 +72115-72116 +72118-72120 +72119-72120 +72121-72124 +72122-72124 +72123-72124 +72125-72132 +72126-72132 +72128-72129 +72130-72131 +72133-72143 +72133-72143 +72134-72143 +72134-72137 +72135-72137 +72136-72137 +72139-72140 +72142-72143 +72144-72166 +72144-72166 +72145-72166 +72145 +72146-72150 +72146-72148 +72147-72148 +72149-72150 +72152-72154 +72153-72154 +72155-72162 +72155-72156 +72158-72162 +72159-72162 +72160-72162 +72161-72162 +72163-72166 +72165-72166 +72167-72196 +72167-72196 +72168-72196 +72168-72169 +72168-72169 +72170-72172 +72171-72172 +72173-72196 +72174-72175 +72176-72184 +72176-72177 +72179-72184 +72180-72184 +72180-72183 +72181-72183 +72182-72183 +72185-72196 +72188-72196 +72189-72191 +72190-72191 +72192-72196 +72193-72196 +72194-72196 +72195-72196 +72197-72213 +72197-72213 +72198-72213 +72198-72201 +72199-72201 +72200-72201 +72203-72205 +72204-72205 +72206-72207 +72208-72213 +72209-72213 +72210-72213 +72211-72213 +72212-72213 +72214-72220 +72214-72220 +72215-72220 +72216-72219 +72217-72219 +72218-72219 +72221-72256 +72221-72256 +72222-72256 +72222-72236 +72222-72231 +72222-72227 +72223-72227 +72224-72227 +72226-72227 +72229-72231 +72230-72231 +72232-72236 +72233-72236 +72234-72236 +72235-72236 +72237-72239 +72241-72242 +72243-72248 +72244-72246 +72245-72246 +72247-72248 +72249-72256 +72250-72256 +72250-72252 +72251-72252 +72255-72256 +72257-72277 +72257-72277 +72258-72277 +72258-72264 +72259-72264 +72259-72260 +72262-72264 +72263-72264 +72265-72277 +72266-72277 +72267-72268 +72270-72272 +72271-72272 +72273-72275 +72274-72275 +72276-72277 +72278-72305 +72278-72305 +72279-72305 +72279-72284 +72280-72284 +72281-72282 +72283-72284 +72285-72305 +72285-72297 +72285-72287 +72285-72286 +72288-72289 +72290-72291 +72292-72294 +72293-72294 +72295-72297 +72296-72297 +72298-72305 +72299-72305 +72300-72302 +72301-72302 +72304-72305 +72306-72316 +72306-72316 +72307-72316 +72308-72310 +72308-72309 +72311-72316 +72312-72316 +72314-72316 +72315-72316 +72317-72328 +72317-72328 +72318-72328 +72318-72322 +72319-72322 +72320-72322 +72321-72322 +72325-72328 +72326-72328 +72327-72328 +72329-72336 +72329-72336 +72330-72336 +72331-72333 +72332-72333 +72334-72336 +72335-72336 +72337-72348 +72337-72348 +72338-72348 +72339-72340 +72341-72342 +72343-72348 +72343 +72344-72348 +72345-72348 +72346-72348 +72347-72348 +72349-72351 +72349-72351 +72350-72351 +72352-72361 +72352-72361 +72353-72361 +72355-72361 +72355-72358 +72356-72358 +72357-72358 +72359-72361 +72360-72361 +72362-72379 +72362-72379 +72363-72379 +72363-72364 +72363 +72365-72379 +72366-72379 +72367-72375 +72368-72375 +72369-72375 +72371-72375 +72372-72375 +72373-72375 +72374-72375 +72377-72379 +72378-72379 +72380-72412 +72380-72412 +72381-72412 +72381-72405 +72381-72400 +72381-72385 +72382-72385 +72382-72384 +72383-72384 +72387-72400 +72388-72400 +72388-72396 +72388-72391 +72389-72391 +72390-72391 +72392-72396 +72393-72396 +72394-72396 +72395-72396 +72397-72400 +72401-72405 +72402-72405 +72402 +72404-72405 +72406-72412 +72407-72412 +72409-72410 +72411-72412 +72413-72443 +72413-72443 +72414-72443 +72414-72415 +72416-72418 +72416-72417 +72420-72443 +72423-72443 +72424-72443 +72424-72429 +72425-72426 +72427-72429 +72428-72429 +72430-72443 +72431-72443 +72433-72443 +72434-72443 +72434-72435 +72436-72443 +72437-72443 +72438-72443 +72439-72443 +72440-72443 +72441-72443 +72442-72443 +72444-72463 +72444-72463 +72445-72463 +72445 +72447-72463 +72448-72463 +72449-72463 +72449-72457 +72450-72457 +72450-72451 +72452-72457 +72453-72457 +72454-72457 +72455-72457 +72456-72457 +72458-72463 +72460-72463 +72461-72463 +72462-72463 +72464-72475 +72464-72475 +72465-72475 +72465-72470 +72467-72470 +72468-72470 +72469-72470 +72471-72475 +72472 +72473-72475 +72474-72475 +72476-72497 +72476-72497 +72477-72497 +72477-72488 +72477-72481 +72478-72481 +72479-72481 +72480-72481 +72482-72484 +72483-72484 +72487-72488 +72489-72497 +72490-72497 +72490 +72492-72497 +72493-72494 +72495-72497 +72496-72497 +72498-72503 +72498-72503 +72499-72503 +72500-72501 +72503 +72504-72508 +72504-72508 +72505-72508 +72507-72508 +72509-72515 +72509-72515 +72510-72515 +72512-72515 +72512-72513 +72516-72520 +72516-72520 +72517-72520 +72517-72518 +72520 +72521-72526 +72521-72526 +72522-72526 +72522-72524 +72522 +72525-72526 +72526 +72527-72550 +72527-72550 +72528-72550 +72528-72542 +72528-72532 +72530-72531 +72532 +72535-72542 +72536-72537 +72540-72542 +72541-72542 +72543-72550 +72544-72550 +72545-72550 +72546-72549 +72547-72549 +72548-72549 +72551-72556 +72551-72556 +72552-72556 +72552 +72554-72556 +72555-72556 +72557-72571 +72557-72571 +72558-72571 +72558-72559 +72561-72563 +72562-72563 +72564-72566 +72565-72566 +72567-72571 +72568-72571 +72569-72570 +72572-72591 +72572-72591 +72573-72591 +72573-72583 +72574-72578 +72574-72575 +72576-72578 +72577-72578 +72579-72581 +72580-72581 +72583 +72584-72591 +72585-72591 +72585-72590 +72586-72590 +72586-72588 +72587-72588 +72589-72590 +72592-72597 +72592-72597 +72593-72597 +72593-72594 +72595-72597 +72596-72597 +72598-72622 +72598-72622 +72599-72622 +72599-72602 +72601-72602 +72603-72622 +72604-72622 +72604-72611 +72605-72611 +72606-72611 +72607-72611 +72608-72611 +72609-72611 +72610-72611 +72614-72622 +72615-72622 +72616-72622 +72617-72619 +72618-72619 +72620-72622 +72621-72622 +72623-72637 +72623-72637 +72624-72637 +72624-72625 +72626-72627 +72628-72630 +72629-72630 +72631-72634 +72632-72634 +72633-72634 +72636-72637 +72638-72646 +72638-72646 +72639-72646 +72639-72640 +72642-72646 +72642-72643 +72642-72643 +72644-72646 +72645-72646 +72647-72664 +72647-72664 +72648-72664 +72648-72660 +72651-72652 +72653-72660 +72654-72660 +72657-72658 +72659-72660 +72661-72664 +72662-72664 +72662-72663 +72665-72672 +72665-72672 +72666-72672 +72666-72669 +72667-72669 +72668-72669 +72670-72672 +72671-72672 +72673-72687 +72673-72687 +72674-72687 +72674-72676 +72675-72676 +72678-72679 +72680-72682 +72681-72682 +72683-72687 +72684-72687 +72685-72687 +72686-72687 +72688-72718 +72688-72718 +72689-72718 +72690-72691 +72692-72695 +72693-72695 +72694-72695 +72694 +72696-72718 +72696-72698 +72697-72698 +72699-72718 +72699-72710 +72700-72710 +72700-72701 +72702-72706 +72703-72706 +72704-72706 +72705-72706 +72707-72710 +72708-72710 +72709-72710 +72711-72718 +72712-72718 +72712-72716 +72713-72716 +72713-72715 +72714-72715 +72717-72718 +72719-72743 +72719-72743 +72720-72743 +72720-72725 +72720-72723 +72722-72723 +72724-72725 +72725 +72726-72743 +72727-72730 +72728-72730 +72729-72730 +72731-72743 +72732-72743 +72734-72737 +72735-72737 +72736-72737 +72738-72743 +72739-72743 +72740-72743 +72741-72743 +72744-72753 +72744-72753 +72745-72752 +72745 +72746-72747 +72747 +72748-72752 +72749-72752 +72750-72751 +72754-72783 +72754-72783 +72755-72783 +72756-72783 +72756-72769 +72756-72764 +72757-72761 +72758-72761 +72759-72761 +72760-72761 +72763-72764 +72765-72769 +72766-72769 +72768-72769 +72770-72783 +72771-72783 +72771-72773 +72772-72773 +72775-72778 +72776-72778 +72777-72778 +72779-72783 +72780-72783 +72781-72783 +72782-72783 +72784-72788 +72784-72788 +72785-72788 +72786-72787 +72789-72813 +72789-72813 +72790-72813 +72790-72795 +72791-72793 +72792-72793 +72794-72795 +72797-72813 +72797-72804 +72797-72801 +72797-72799 +72797-72798 +72800-72801 +72802-72804 +72805-72813 +72807-72813 +72808-72813 +72808-72811 +72808-72809 +72810-72811 +72812-72813 +72814-72824 +72814-72824 +72815-72818 +72816-72818 +72817-72818 +72820-72824 +72821-72824 +72822-72824 +72823-72824 +72825-72843 +72825-72843 +72826-72843 +72828-72836 +72828-72830 +72829-72830 +72831-72836 +72832-72836 +72834-72836 +72835-72836 +72837-72843 +72838-72843 +72839-72840 +72841-72843 +72842-72843 +72844-72876 +72844-72876 +72845-72876 +72845-72848 +72846-72848 +72847-72848 +72849-72851 +72850-72851 +72852-72854 +72853-72854 +72856-72876 +72856-72867 +72856 +72857-72862 +72857-72862 +72858-72862 +72858-72859 +72860-72862 +72861-72862 +72863-72864 +72863-72864 +72865-72867 +72865-72867 +72866-72867 +72868-72876 +72870-72876 +72871-72876 +72871-72874 +72872-72874 +72873-72874 +72875-72876 +72877-72892 +72877-72892 +72878-72892 +72878 +72879-72883 +72880-72881 +72882-72883 +72884-72892 +72885-72892 +72887-72892 +72889-72890 +72891-72892 +72893-72904 +72893-72904 +72894-72904 +72894-72900 +72896-72897 +72898-72900 +72899-72900 +72901-72904 +72902-72904 +72902 +72905-72917 +72905-72917 +72906-72907 +72908-72910 +72909-72910 +72910 +72912-72917 +72913-72917 +72914-72917 +72915-72917 +72916-72917 +72918-72930 +72918-72930 +72919-72930 +72919-72922 +72920-72922 +72921-72922 +72923-72925 +72924-72925 +72927-72930 +72928-72930 +72929-72930 +72931-72938 +72931-72938 +72932-72938 +72933-72935 +72934-72935 +72937-72938 +72939-72959 +72939-72959 +72940-72959 +72940-72949 +72941-72944 +72942-72944 +72943-72944 +72946-72949 +72947-72949 +72948-72949 +72950-72959 +72951-72959 +72951-72958 +72952-72954 +72953-72954 +72955-72958 +72956-72958 +72957-72958 +72960-72987 +72960-72987 +72961-72987 +72961-72968 +72962-72968 +72963-72968 +72964-72968 +72964-72965 +72966-72968 +72967-72968 +72970-72971 +72972-72973 +72974-72987 +72975-72987 +72975-72976 +72975 +72976 +72977-72987 +72977-72986 +72978-72986 +72979-72980 +72981-72986 +72982-72986 +72982-72983 +72984-72986 +72985-72986 +72987 +72988-72995 +72988-72995 +72989-72995 +72990-72994 +72990 +72991-72994 +72992-72994 +72993-72994 +72996-73003 +72996-73003 +72996-73002 +72996-72997 +72996 +72997 +72998-73002 +72999-73002 +72999-73002 +73000-73002 +73001-73002 +73003 +73004-73056 +73004-73056 +73004-73051 +73004-73013 +73004-73009 +73005-73009 +73006-73009 +73006-73008 +73006-73007 +73011-73013 +73012-73013 +73014-73051 +73015-73051 +73015-73040 +73015-73031 +73015-73023 +73015-73016 +73018-73023 +73019-73023 +73020-73023 +73021-73023 +73022-73023 +73024-73031 +73025-73031 +73025-73027 +73026-73027 +73030-73031 +73032-73040 +73033-73040 +73033-73035 +73034-73035 +73038-73040 +73039-73040 +73041-73051 +73042-73051 +73042-73047 +73043-73047 +73043-73044 +73045-73047 +73046-73047 +73049-73051 +73050-73051 +73052-73056 +73052-73056 +73053-73056 +73054-73056 +73057-73064 +73057-73064 +73058-73064 +73058-73059 +73062-73064 +73063-73064 +73065-73082 +73065-73082 +73065-73067 +73068-73082 +73069-73082 +73071-73072 +73073-73080 +73073-73076 +73073-73074 +73075-73076 +73077-73080 +73078-73080 +73079-73080 +73081-73082 +73083-73111 +73083-73111 +73084-73111 +73084-73091 +73084-73085 +73087-73088 +73090-73091 +73092-73111 +73092-73095 +73095 +73097-73111 +73097-73105 +73097-73100 +73098-73100 +73099-73100 +73101-73105 +73102-73105 +73103-73105 +73104-73105 +73106-73111 +73108-73111 +73109-73111 +73110-73111 +73112-73137 +73112-73137 +73112-73113 +73114-73117 +73115-73117 +73116-73117 +73118-73119 +73121-73122 +73123-73124 +73125-73137 +73127-73131 +73128-73131 +73129-73131 +73130-73131 +73132-73133 +73134-73137 +73135-73137 +73136-73137 +73138-73165 +73138-73165 +73139-73165 +73139-73143 +73140-73143 +73142-73143 +73144-73165 +73145-73165 +73145-73147 +73149-73165 +73150-73151 +73153-73165 +73155-73156 +73157-73165 +73161-73165 +73161-73164 +73162-73164 +73163-73164 +73166-73184 +73166-73184 +73166-73177 +73166 +73167 +73168-73177 +73168-73177 +73168-73170 +73169-73170 +73171-73177 +73172-73177 +73172-73174 +73173-73174 +73175-73177 +73176-73177 +73178-73184 +73179-73183 +73180-73183 +73181-73183 +73181-73182 +73185-73216 +73185-73216 +73186-73216 +73186-73207 +73186-73193 +73186-73189 +73187-73189 +73188-73189 +73190-73193 +73191-73193 +73192-73193 +73194-73205 +73194-73195 +73196-73205 +73197-73205 +73197-73205 +73197-73200 +73198-73200 +73199-73200 +73201-73205 +73202-73205 +73202-73204 +73203-73204 +73206 +73208-73216 +73209-73216 +73209-73212 +73209-73211 +73210-73211 +73215-73216 +73217-73231 +73217-73231 +73218-73231 +73218-73224 +73219-73224 +73220-73224 +73221-73224 +73222-73224 +73222-73223 +73225-73231 +73225-73228 +73226-73228 +73227-73228 +73230-73231 +73232-73259 +73232-73259 +73233-73259 +73233-73238 +73233-73234 +73237-73238 +73241-73243 +73242-73243 +73244-73259 +73244-73251 +73245-73251 +73247-73251 +73247-73249 +73248-73249 +73250-73251 +73252-73259 +73255-73256 +73257-73259 +73258-73259 +73260-73295 +73260-73295 +73261-73295 +73264-73269 +73265-73269 +73265-73268 +73265-73267 +73266-73267 +73270-73295 +73271-73295 +73271-73279 +73272-73273 +73275-73277 +73276-73277 +73278-73279 +73280-73295 +73281-73295 +73281-73286 +73282-73286 +73283-73286 +73284-73286 +73285-73286 +73288-73295 +73288-73291 +73288-73289 +73292-73295 +73296-73316 +73296-73316 +73297-73316 +73297-73306 +73298-73306 +73300-73301 +73302-73306 +73304-73306 +73305-73306 +73309-73316 +73310-73316 +73312-73316 +73312-73314 +73313-73314 +73315-73316 +73317-73328 +73317-73328 +73318-73328 +73318-73320 +73319-73320 +73322-73328 +73324-73328 +73324-73326 +73325-73326 +73329-73356 +73329-73356 +73330-73356 +73330-73348 +73331-73348 +73331-73339 +73332-73338 +73332-73333 +73335-73338 +73336-73338 +73336-73337 +73340-73345 +73341-73345 +73342-73345 +73343-73345 +73344-73345 +73346-73348 +73347-73348 +73349-73356 +73350-73356 +73350-73353 +73351-73352 +73357-73385 +73357-73385 +73358-73385 +73358-73360 +73361-73362 +73361 +73362 +73363-73385 +73364-73385 +73364-73369 +73364-73365 +73367-73368 +73370-73385 +73371-73385 +73371-73379 +73372-73379 +73373-73379 +73376-73379 +73376-73378 +73377-73378 +73380-73381 +73382-73384 +73383-73384 +73384 +73386-73418 +73386-73418 +73387-73418 +73387 +73388-73418 +73389-73418 +73390-73418 +73391-73418 +73392-73394 +73393-73394 +73395-73418 +73395-73401 +73395-73397 +73396-73397 +73396-73397 +73398-73399 +73399 +73400-73401 +73401 +73402-73418 +73403-73418 +73403-73409 +73406-73409 +73407-73409 +73408-73409 +73410-73418 +73411-73418 +73411-73414 +73412-73413 +73416-73418 +73419-73431 +73419-73431 +73420-73431 +73420-73421 +73422-73431 +73423-73431 +73423-73426 +73424-73426 +73425-73426 +73429-73431 +73429-73430 +73432-73458 +73432-73458 +73433-73458 +73433-73435 +73434-73435 +73436-73458 +73437-73443 +73438-73443 +73438-73439 +73440-73443 +73441-73443 +73442-73443 +73442 +73444-73458 +73444-73448 +73444-73445 +73446-73448 +73447-73448 +73449-73458 +73450-73451 +73453-73458 +73455-73458 +73456-73458 +73457-73458 +73459-73472 +73459-73472 +73460-73472 +73460-73462 +73461-73462 +73461 +73463-73466 +73464-73466 +73465-73466 +73468-73472 +73469-73472 +73470-73472 +73471-73472 +73473-73487 +73473-73487 +73474-73487 +73474-73480 +73474-73475 +73476-73478 +73477-73478 +73481-73487 +73482-73487 +73483-73486 +73484-73486 +73484-73485 +73487 +73488-73504 +73488-73504 +73489-73504 +73489 +73490-73494 +73490-73491 +73492-73494 +73493-73494 +73496-73504 +73498-73504 +73501-73504 +73502-73504 +73503-73504 +73505-73520 +73505-73520 +73505-73515 +73506-73515 +73506-73507 +73508-73515 +73509-73515 +73512-73515 +73513-73515 +73514-73515 +73516-73520 +73518-73520 +73519-73520 +73521-73540 +73521-73540 +73522-73540 +73525-73526 +73527-73540 +73529-73531 +73530-73531 +73532-73540 +73533-73540 +73535-73536 +73537-73540 +73538-73540 +73539-73540 +73541-73559 +73541-73559 +73542-73559 +73542-73551 +73542-73545 +73542 +73543-73544 +73546-73551 +73547-73551 +73548-73551 +73549-73551 +73550-73551 +73552-73559 +73553-73559 +73554-73559 +73555-73556 +73557-73559 +73558-73559 +73560-73569 +73560-73569 +73561-73569 +73562-73565 +73563-73565 +73564-73565 +73566-73569 +73567-73569 +73568-73569 +73570-73598 +73570-73598 +73571-73598 +73571-73583 +73571-73572 +73574-73583 +73574-73578 +73575-73578 +73575 +73576-73578 +73577-73578 +73579-73583 +73580-73583 +73581-73583 +73582-73583 +73584-73598 +73585-73598 +73585-73591 +73587-73591 +73588-73591 +73589-73591 +73590-73591 +73592-73598 +73593-73598 +73595-73598 +73596-73598 +73597-73598 +73599-73618 +73599-73618 +73600-73618 +73600-73610 +73601-73607 +73602-73605 +73603-73605 +73604-73605 +73606-73607 +73609-73610 +73611-73618 +73612-73618 +73612-73613 +73615-73618 +73616-73618 +73617-73618 +73619-73643 +73619-73643 +73620-73643 +73621-73622 +73623-73643 +73623-73632 +73623-73625 +73624-73625 +73628-73632 +73629-73632 +73630-73632 +73631-73632 +73633-73643 +73634-73643 +73636-73643 +73637-73643 +73638-73643 +73638-73641 +73638-73639 +73640-73641 +73642-73643 +73644-73657 +73644-73657 +73645-73657 +73645-73647 +73646-73647 +73646 +73648-73650 +73649-73650 +73651-73654 +73652-73654 +73653-73654 +73655-73657 +73656-73657 +73658-73701 +73658-73701 +73659-73701 +73659-73683 +73660-73683 +73660-73661 +73663-73683 +73664-73683 +73665-73683 +73665-73666 +73667-73683 +73668-73683 +73669-73674 +73670-73674 +73671-73674 +73672-73674 +73673-73674 +73675-73683 +73676-73683 +73676-73678 +73677-73678 +73680-73683 +73681-73683 +73682-73683 +73684-73701 +73685-73701 +73685-73689 +73686-73689 +73687-73689 +73688-73689 +73690-73701 +73691-73701 +73691-73696 +73692-73696 +73694-73696 +73695-73696 +73697-73701 +73698-73701 +73699-73701 +73700-73701 +73702-73734 +73702-73734 +73703-73734 +73703-73718 +73704-73718 +73705-73714 +73706-73714 +73707-73714 +73707-73710 +73707-73708 +73709-73710 +73711-73714 +73712-73714 +73713-73714 +73715-73718 +73715-73717 +73716-73717 +73719-73734 +73719-73731 +73719 +73721-73731 +73722-73731 +73722-73728 +73723-73728 +73723-73725 +73724-73725 +73726-73728 +73727-73728 +73729-73731 +73730-73731 +73732-73734 +73733-73734 +73735-73751 +73735-73751 +73736-73751 +73736-73740 +73737-73740 +73738-73740 +73739-73740 +73741-73742 +73744-73748 +73745-73748 +73746-73748 +73747-73748 +73749-73751 +73752-73775 +73752-73775 +73754-73775 +73754-73755 +73757-73775 +73757-73769 +73758-73766 +73758-73759 +73760-73766 +73761-73766 +73761 +73763-73766 +73765-73766 +73766 +73768-73769 +73771-73774 +73772-73774 +73773-73774 +73776-73779 +73776-73779 +73777-73779 +73777 +73778-73779 +73779 +73780-73799 +73780-73799 +73781-73799 +73781-73782 +73783-73786 +73784-73786 +73788-73790 +73789-73790 +73791-73799 +73793-73799 +73793-73794 +73795-73796 +73798-73799 +73800-73837 +73800-73837 +73800-73815 +73801-73815 +73801-73804 +73802-73803 +73805-73815 +73806-73815 +73806-73808 +73806-73807 +73809-73815 +73810-73815 +73812-73815 +73812-73813 +73813 +73814-73815 +73816-73837 +73817-73837 +73817-73825 +73818-73825 +73819-73825 +73819-73820 +73821-73825 +73822-73825 +73823-73825 +73824-73825 +73826-73832 +73826-73828 +73827-73828 +73829-73831 +73830-73831 +73833-73835 +73834-73835 +73837 +73838-73859 +73838-73859 +73839-73859 +73839 +73840-73844 +73840-73841 +73842-73844 +73843-73844 +73845-73848 +73846-73848 +73847-73848 +73850-73852 +73851-73852 +73853-73859 +73853 +73854-73859 +73855-73859 +73856-73859 +73856 +73860-73903 +73860-73903 +73860-73861 +73862-73864 +73862-73863 +73866-73903 +73868-73903 +73868-73871 +73869-73871 +73870-73871 +73873-73903 +73874-73903 +73874-73890 +73874-73875 +73875 +73876-73890 +73878-73890 +73878-73879 +73880-73882 +73881-73882 +73883-73885 +73884-73885 +73886-73890 +73887-73890 +73888-73890 +73889-73890 +73891-73903 +73892-73895 +73893-73895 +73894-73895 +73894 +73897-73903 +73897-73899 +73898-73899 +73901-73903 +73902-73903 +73904-73923 +73904-73923 +73905-73923 +73909-73923 +73909 +73910-73916 +73910-73913 +73914-73916 +73915-73916 +73915-73916 +73917-73923 +73918-73920 +73919-73920 +73921-73923 +73922-73923 +73924-73934 +73924-73934 +73925-73934 +73925-73926 +73929-73930 +73931-73934 +73932-73934 +73935-73956 +73935-73956 +73936-73956 +73936-73941 +73937-73940 +73938-73940 +73939-73940 +73942-73956 +73943-73956 +73943-73949 +73943-73945 +73944-73945 +73946-73949 +73947-73949 +73948-73949 +73951-73953 +73952-73953 +73954-73956 +73955-73956 +73957-73966 +73957-73966 +73958-73966 +73958-73961 +73959-73960 +73962-73966 +73962 +73964-73966 +73965-73966 +73967-73975 +73967-73975 +73968-73975 +73968-73969 +73971-73973 +73972-73973 +73974-73975 +73976-74015 +73976-74015 +73977-74015 +73977-73983 +73977-73980 +73978-73980 +73978-73979 +73981-73983 +73982-73983 +73985-73993 +73985-73987 +73986-73987 +73988-73990 +73989-73990 +73991-73993 +73992-73993 +73994-74015 +73994-73998 +73995-73998 +73996-73998 +73997-73998 +73999-74015 +74000-74015 +74000-74002 +74001-74002 +74003-74015 +74004-74015 +74005-74015 +74006-74015 +74006-74008 +74007-74008 +74011-74015 +74012-74015 +74013-74015 +74014-74015 +74016-74031 +74016-74031 +74017-74031 +74017-74021 +74019-74020 +74022-74024 +74023-74024 +74027-74031 +74028-74031 +74029-74031 +74029-74030 +74032-74048 +74032-74048 +74033-74048 +74033-74039 +74033-74035 +74034-74035 +74037-74039 +74038-74039 +74040-74048 +74041-74048 +74041-74045 +74042-74043 +74044-74045 +74047-74048 +74049-74064 +74049-74064 +74051-74064 +74052-74064 +74053-74064 +74054-74055 +74056-74059 +74057-74059 +74058-74059 +74060-74064 +74061-74064 +74062-74064 +74063-74064 +74065-74084 +74065-74084 +74066-74084 +74066-74070 +74066 +74067-74070 +74068-74070 +74069-74070 +74072-74084 +74072-74077 +74074-74075 +74076-74077 +74078-74084 +74079-74084 +74080-74084 +74081-74082 +74083-74084 +74085-74092 +74085-74092 +74086-74092 +74087-74089 +74088-74089 +74090-74092 +74091-74092 +74093-74112 +74093-74112 +74094-74112 +74095-74098 +74096-74098 +74097-74098 +74100-74101 +74102-74112 +74103-74112 +74103-74109 +74104-74109 +74106-74109 +74106-74107 +74108-74109 +74110-74112 +74112 +74113-74147 +74113-74147 +74114-74147 +74114-74126 +74115-74119 +74115-74117 +74116-74117 +74118-74119 +74120-74124 +74120-74121 +74122-74124 +74123-74124 +74125-74126 +74128-74147 +74129-74136 +74130-74131 +74132-74136 +74133-74136 +74134-74136 +74135-74136 +74137-74141 +74138-74141 +74139-74141 +74140-74141 +74142-74143 +74144-74147 +74145-74147 +74145-74146 +74148-74172 +74148-74172 +74149-74172 +74150-74172 +74150-74165 +74151-74154 +74152-74154 +74153-74154 +74156-74160 +74157-74160 +74157-74158 +74159-74160 +74161-74165 +74162-74165 +74163-74165 +74164-74165 +74166-74172 +74167-74172 +74168-74169 +74170-74172 +74171-74172 +74173-74194 +74173-74194 +74174-74194 +74174-74186 +74174-74176 +74175-74176 +74178-74186 +74179-74186 +74179-74180 +74181-74183 +74182-74183 +74184-74186 +74185-74186 +74187-74194 +74188-74194 +74189-74194 +74190-74191 +74193-74194 +74195-74215 +74195-74215 +74196-74215 +74197-74204 +74197-74203 +74198-74203 +74199-74203 +74200-74203 +74201-74203 +74202-74203 +74204 +74205-74215 +74206-74215 +74207-74215 +74208-74215 +74208-74209 +74210-74215 +74211-74215 +74212-74215 +74213-74215 +74214-74215 +74216-74227 +74216-74227 +74217-74227 +74218-74222 +74218-74219 +74220-74222 +74221-74222 +74223-74227 +74224-74227 +74225-74227 +74225-74226 +74228-74262 +74228-74262 +74229-74262 +74229-74231 +74229-74230 +74232 +74235-74236 +74237-74262 +74237-74238 +74237 +74238 +74239-74262 +74241-74262 +74242-74262 +74242-74244 +74243-74244 +74245-74246 +74248-74249 +74250-74262 +74250-74260 +74250-74253 +74251-74253 +74252-74253 +74255-74256 +74257-74260 +74258-74260 +74259-74260 +74261-74262 +74262 +74263-74290 +74263-74290 +74264-74290 +74264-74276 +74264-74266 +74264-74265 +74269-74273 +74270-74273 +74271-74273 +74272-74273 +74274-74276 +74275-74276 +74275-74276 +74277-74290 +74278-74290 +74280-74284 +74281-74284 +74281-74282 +74283-74284 +74285-74290 +74285-74286 +74288-74290 +74289-74290 +74291-74312 +74291-74312 +74292-74312 +74295-74296 +74297-74312 +74299-74303 +74300-74303 +74301-74303 +74302-74303 +74304-74312 +74304-74305 +74306-74311 +74306-74309 +74307-74309 +74308-74309 +74310-74311 +74313-74325 +74313-74325 +74314-74325 +74315-74325 +74315-74320 +74316-74320 +74317-74320 +74318-74320 +74318-74319 +74322-74325 +74323-74325 +74323-74324 +74326-74348 +74326-74348 +74327-74348 +74327-74330 +74328-74330 +74329-74330 +74331-74348 +74332-74348 +74333-74348 +74333-74335 +74334-74335 +74337-74348 +74337-74339 +74338-74339 +74340-74348 +74342-74343 +74344-74346 +74345-74346 +74347-74348 +74349-74360 +74349-74360 +74350-74360 +74350-74353 +74351-74353 +74352-74353 +74356-74360 +74357-74360 +74357-74358 +74357 +74358 +74359-74360 +74361-74374 +74361-74374 +74363-74374 +74364-74374 +74365-74366 +74368-74374 +74369-74370 +74372-74374 +74373-74374 +74375-74429 +74375-74429 +74376-74429 +74378-74381 +74379-74381 +74380-74381 +74382-74429 +74383-74429 +74384-74429 +74384-74422 +74384-74401 +74384-74386 +74384-74385 +74387-74401 +74388-74401 +74388-74398 +74388-74393 +74389-74393 +74389-74391 +74390-74391 +74392-74393 +74393 +74394-74398 +74395-74398 +74395-74397 +74395-74396 +74396 +74399-74401 +74400-74401 +74402-74422 +74403-74422 +74404-74422 +74404-74410 +74405-74408 +74406-74408 +74407-74408 +74409-74410 +74411-74422 +74412-74422 +74413-74422 +74414-74422 +74415-74422 +74415-74416 +74418-74420 +74419-74420 +74421-74422 +74423-74429 +74424-74429 +74425-74429 +74426-74429 +74427-74429 +74428-74429 +74430-74459 +74430-74459 +74431-74459 +74433-74459 +74434-74442 +74435-74442 +74435-74438 +74436-74438 +74437-74438 +74439-74442 +74440-74442 +74441-74442 +74444-74459 +74446-74459 +74447-74459 +74448-74459 +74448-74451 +74449-74451 +74450-74451 +74452-74454 +74453-74454 +74455-74456 +74457-74459 +74458-74459 +74460-74477 +74460-74477 +74461-74477 +74462-74464 +74463-74464 +74465-74466 +74467-74469 +74468-74469 +74471-74477 +74471-74473 +74472-74473 +74474-74476 +74475-74476 +74478-74534 +74478-74534 +74480-74484 +74480-74481 +74482-74484 +74483-74484 +74485-74488 +74486-74488 +74487-74488 +74489-74534 +74489-74511 +74489-74492 +74491-74492 +74494-74495 +74496-74500 +74497-74500 +74498-74500 +74499-74500 +74501-74511 +74501-74511 +74501-74506 +74501-74504 +74502-74504 +74503-74504 +74505-74506 +74507-74511 +74508-74511 +74509-74511 +74510-74511 +74512-74534 +74513-74515 +74514-74515 +74516-74534 +74516-74533 +74516-74521 +74516-74520 +74516-74517 +74518-74520 +74519-74520 +74522-74533 +74522-74530 +74523-74530 +74523-74529 +74524-74529 +74525-74529 +74526-74527 +74528-74529 +74531-74533 +74532-74533 +74534 +74535-74579 +74535-74579 +74535-74550 +74536-74550 +74537-74550 +74538-74550 +74538-74540 +74539-74540 +74544-74547 +74545-74547 +74546-74547 +74548-74550 +74551-74579 +74553-74554 +74555-74556 +74557-74579 +74558-74559 +74560-74579 +74561-74579 +74561-74566 +74561-74563 +74562-74563 +74564-74566 +74565-74566 +74567-74579 +74568-74579 +74569-74571 +74570-74571 +74572-74579 +74573-74579 +74574-74579 +74575-74579 +74575-74577 +74576-74577 +74578-74579 +74580-74591 +74580-74591 +74581-74591 +74581-74584 +74582-74584 +74583-74584 +74585-74591 +74585-74591 +74586-74591 +74587-74591 +74587-74588 +74590-74591 +74592-74622 +74592-74622 +74593-74622 +74594-74599 +74594-74597 +74595-74597 +74596-74597 +74598-74599 +74600-74616 +74600-74602 +74600-74601 +74605-74616 +74606-74616 +74606-74608 +74607-74608 +74609-74616 +74610-74616 +74611-74612 +74613-74614 +74615-74616 +74617-74622 +74617-74620 +74617-74618 +74623 +74623 +74624-74637 +74624-74637 +74625-74637 +74626-74637 +74626-74630 +74627 +74629-74630 +74631-74637 +74632-74637 +74632-74634 +74633-74634 +74636-74637 +74638-74643 +74638-74643 +74639-74643 +74639 +74641-74643 +74642-74643 +74644-74659 +74644-74659 +74644-74657 +74644-74647 +74644-74645 +74646-74647 +74648-74651 +74648-74649 +74652-74654 +74653-74654 +74656-74657 +74658-74659 +74659 +74660-74672 +74660-74672 +74661-74672 +74661-74662 +74664-74665 +74666-74668 +74667-74668 +74669-74672 +74670-74672 +74671-74672 +74673-74690 +74673-74690 +74674-74690 +74674-74676 +74675-74676 +74678-74679 +74680-74690 +74680-74682 +74681-74682 +74683-74686 +74684-74686 +74685-74686 +74687-74690 +74688-74690 +74689-74690 +74691-74715 +74691-74715 +74692-74715 +74692-74694 +74693-74694 +74696-74697 +74699-74715 +74700-74715 +74700 +74702-74703 +74704-74713 +74705-74713 +74705-74706 +74707-74713 +74707-74708 +74710-74713 +74711-74713 +74712-74713 +74714-74715 +74716-74725 +74716-74725 +74717-74725 +74719-74725 +74720-74725 +74721-74725 +74721-74722 +74723-74725 +74724-74725 +74726-74744 +74726-74744 +74727-74744 +74729-74744 +74729-74741 +74729-74741 +74730-74741 +74730-74734 +74731-74732 +74733-74734 +74735-74741 +74736-74741 +74739-74741 +74740-74741 +74745-74761 +74745-74761 +74746-74761 +74748-74761 +74749-74761 +74749-74752 +74751-74752 +74753-74761 +74754-74761 +74754-74755 +74756-74758 +74757-74758 +74760-74761 +74762-74783 +74762-74783 +74763-74783 +74763-74774 +74764-74765 +74767-74774 +74768-74771 +74769-74771 +74770-74771 +74772-74774 +74773-74774 +74775-74783 +74776-74783 +74777-74780 +74777-74778 +74779-74780 +74781-74783 +74782-74783 +74784-74791 +74784-74791 +74785-74791 +74786-74791 +74786-74788 +74787-74788 +74789-74791 +74790-74791 +74792-74815 +74792-74815 +74793-74815 +74796-74815 +74796-74806 +74796-74799 +74796-74797 +74798-74799 +74800-74806 +74801-74806 +74801-74803 +74801-74802 +74804-74806 +74805-74806 +74807-74815 +74809-74815 +74810-74815 +74811-74815 +74811-74814 +74812-74814 +74813-74814 +74816-74844 +74816-74844 +74816-74822 +74817-74818 +74819-74822 +74820-74821 +74823-74844 +74824-74844 +74824 +74827-74835 +74828-74835 +74828-74829 +74830-74835 +74831-74835 +74832-74835 +74833-74835 +74833-74834 +74836-74844 +74837-74844 +74839-74844 +74840-74844 +74841-74843 +74842-74843 +74845-74864 +74845-74864 +74846-74864 +74846-74849 +74847-74849 +74848-74849 +74850-74864 +74852-74864 +74853-74864 +74853-74854 +74855-74864 +74856-74864 +74857-74864 +74858-74864 +74858-74861 +74859-74861 +74860-74861 +74862-74864 +74863-74864 +74865-74877 +74865-74877 +74866-74877 +74867-74877 +74867-74871 +74867-74868 +74870-74871 +74872-74877 +74873-74877 +74874-74875 +74876-74877 +74878-74895 +74878-74895 +74879-74895 +74880-74884 +74881-74884 +74882-74884 +74883-74884 +74885-74895 +74886-74889 +74887-74889 +74888-74889 +74890-74895 +74891-74892 +74893-74895 +74894-74895 +74896-74912 +74896-74912 +74897-74912 +74897-74905 +74897-74900 +74898-74900 +74899-74900 +74902-74905 +74902-74904 +74903-74904 +74906-74912 +74907-74912 +74910-74912 +74911-74912 +74913-74919 +74913-74919 +74914-74919 +74914-74916 +74915-74916 +74918-74919 +74920-74941 +74920-74941 +74921-74941 +74922-74923 +74924-74925 +74927-74941 +74927-74929 +74928-74929 +74930-74941 +74931-74941 +74932-74934 +74933-74934 +74935-74941 +74936-74941 +74937-74941 +74937-74939 +74938-74939 +74942-74959 +74942-74959 +74943-74959 +74943-74946 +74944-74946 +74944-74945 +74947-74959 +74949-74951 +74950-74951 +74952-74959 +74953-74959 +74954-74959 +74955-74956 +74957-74959 +74960-74983 +74960-74983 +74961-74983 +74961-74966 +74961-74963 +74962-74963 +74965-74966 +74967-74983 +74968-74983 +74968-74972 +74968-74969 +74969 +74970-74972 +74971-74972 +74973-74983 +74974-74983 +74975-74983 +74976-74983 +74978-74983 +74978-74982 +74979-74982 +74979-74981 +74980-74981 +74984-74992 +74984-74992 +74985-74992 +74985-74986 +74987-74990 +74988-74990 +74989-74990 +74991-74992 +74993-75013 +74993-75013 +74994-75013 +74994-75007 +74994-74997 +74995-74997 +74996-74997 +74999-75001 +75000-75001 +75002-75007 +75003-75007 +75004-75007 +75004-75006 +75008-75013 +75009-75013 +75009 +75011-75013 +75012-75013 +75012 +75014-75036 +75014-75036 +75015-75036 +75015-75024 +75015-75021 +75015-75018 +75015-75016 +75017-75018 +75019-75021 +75020-75021 +75022-75024 +75023-75024 +75026-75036 +75026-75028 +75027-75028 +75029-75030 +75032-75036 +75033-75036 +75034-75036 +75035-75036 +75037-75058 +75037-75058 +75038-75058 +75038-75043 +75039-75043 +75039 +75040-75043 +75041-75043 +75041-75043 +75042-75043 +75044-75058 +75045-75058 +75046-75058 +75046-75052 +75047-75052 +75048-75052 +75050-75051 +75053-75058 +75053-75057 +75054-75057 +75055-75057 +75056-75057 +75059-75061 +75059-75061 +75060-75061 +75062-75083 +75062-75083 +75063-75083 +75064-75068 +75066-75068 +75067-75068 +75069-75083 +75069-75073 +75069-75070 +75071-75073 +75072-75073 +75076-75083 +75077-75078 +75080-75082 +75081-75082 +75083 +75084-75105 +75084-75105 +75085-75089 +75086-75089 +75086-75087 +75088-75089 +75091-75105 +75092-75105 +75092-75100 +75092-75094 +75093-75094 +75095-75099 +75096-75099 +75096-75097 +75098-75099 +75104-75105 +75106-75111 +75106-75111 +75107-75111 +75109-75111 +75110-75111 +75112-75128 +75112-75128 +75113-75128 +75114-75118 +75114 +75115-75118 +75116-75118 +75117-75118 +75120-75128 +75122-75128 +75122-75125 +75123-75125 +75124-75125 +75127-75128 +75129-75133 +75129-75133 +75130-75133 +75131-75133 +75132-75133 +75134-75185 +75134-75185 +75135-75185 +75135-75158 +75135-75137 +75136-75137 +75138-75145 +75139-75145 +75140-75145 +75141-75145 +75142-75145 +75143-75145 +75144-75145 +75146-75151 +75147-75151 +75147-75148 +75149-75151 +75150-75151 +75153-75155 +75154-75155 +75156-75158 +75157-75158 +75159-75185 +75160-75185 +75160-75163 +75162-75163 +75165-75185 +75165-75173 +75165-75167 +75166-75167 +75169-75171 +75170-75171 +75172-75173 +75174-75185 +75175-75185 +75176-75185 +75177-75185 +75177-75180 +75178-75180 +75179-75180 +75184-75185 +75186-75232 +75186-75232 +75187-75232 +75187-75191 +75188-75189 +75190-75191 +75192-75232 +75193-75232 +75193-75200 +75193-75194 +75195-75198 +75196-75198 +75197-75198 +75200 +75201-75232 +75202-75232 +75202-75205 +75204-75205 +75207-75208 +75209-75232 +75210-75211 +75212-75214 +75215-75232 +75215-75224 +75216-75218 +75216-75217 +75221-75224 +75222-75224 +75223-75224 +75225-75232 +75226-75232 +75226-75228 +75227-75228 +75230-75232 +75231-75232 +75233-75248 +75233-75248 +75234-75248 +75234-75243 +75234-75236 +75235-75236 +75237-75239 +75238-75239 +75240 +75242-75243 +75244-75248 +75245-75248 +75247-75248 +75249-75270 +75249-75270 +75250-75270 +75250-75259 +75251-75252 +75254-75259 +75255-75259 +75256-75259 +75257-75259 +75258-75259 +75260-75270 +75261-75270 +75261-75265 +75263-75265 +75263-75264 +75266-75270 +75267-75270 +75267-75269 +75268-75269 +75271-75292 +75271-75292 +75272-75292 +75272-75273 +75274-75282 +75274-75275 +75276-75282 +75277-75282 +75278-75282 +75279-75282 +75280-75282 +75281-75282 +75283-75285 +75284-75285 +75287-75288 +75289-75292 +75290-75292 +75291-75292 +75293-75306 +75293-75306 +75294-75306 +75296-75297 +75298-75306 +75299-75306 +75299-75302 +75299-75300 +75303-75306 +75304-75306 +75307-75330 +75307-75330 +75308-75330 +75308-75318 +75308-75310 +75308-75309 +75311-75318 +75312-75318 +75312-75313 +75315-75318 +75315-75316 +75317-75318 +75319-75330 +75320-75330 +75320-75322 +75324-75330 +75324 +75325-75327 +75329-75330 +75330 +75331-75345 +75331-75345 +75332-75345 +75334-75345 +75334-75338 +75335-75338 +75336-75338 +75336-75337 +75339-75345 +75340-75345 +75341-75345 +75342-75345 +75343-75345 +75344-75345 +75346-75359 +75346-75359 +75347-75359 +75349-75352 +75350-75352 +75351-75352 +75353-75359 +75354-75359 +75355-75359 +75356-75359 +75357-75359 +75358-75359 +75360-75394 +75360-75394 +75361-75394 +75361-75372 +75361-75368 +75363-75368 +75364-75368 +75365-75368 +75366-75368 +75367-75368 +75370-75372 +75371-75372 +75373-75380 +75374-75380 +75375-75379 +75376-75379 +75377-75379 +75377-75378 +75381-75388 +75382-75388 +75382-75386 +75384-75386 +75385-75386 +75389-75394 +75390-75394 +75392-75394 +75393-75394 +75395-75407 +75395-75407 +75396-75407 +75396-75397 +75398-75407 +75399-75400 +75401-75402 +75403-75407 +75404-75407 +75405-75407 +75405-75406 +75408-75429 +75408-75429 +75409-75429 +75410-75411 +75412-75414 +75412-75413 +75415-75417 +75416-75417 +75418-75429 +75419-75429 +75419-75423 +75420-75421 +75422-75423 +75423 +75424-75429 +75425-75429 +75426 +75428-75429 +75430-75457 +75430-75457 +75431-75457 +75431-75432 +75434-75435 +75436-75457 +75436-75450 +75436-75445 +75436-75439 +75440-75442 +75440-75441 +75444-75445 +75446-75450 +75447-75450 +75451-75457 +75452-75457 +75452 +75453-75457 +75454-75457 +75454 +75458-75466 +75458-75466 +75459-75466 +75460-75461 +75462-75463 +75464-75466 +75464-75465 +75467-75483 +75467-75483 +75468-75483 +75468-75476 +75468-75472 +75469-75472 +75470-75472 +75471-75472 +75473-75476 +75474-75476 +75474 +75477-75483 +75478-75483 +75478 +75480-75483 +75481-75483 +75482-75483 +75484-75499 +75484-75499 +75485-75499 +75485-75492 +75485-75488 +75486-75488 +75487-75488 +75490-75492 +75491-75492 +75493-75499 +75494-75499 +75494-75497 +75494 +75496-75497 +75498-75499 +75499 +75500-75514 +75500-75514 +75501-75514 +75501-75506 +75502-75506 +75502-75503 +75504-75506 +75505-75506 +75508-75514 +75509-75514 +75510-75514 +75512-75514 +75513-75514 +75515-75556 +75515-75556 +75516-75556 +75516-75523 +75516-75520 +75517-75520 +75518-75520 +75519-75520 +75522-75523 +75524-75556 +75525-75556 +75525-75527 +75526-75527 +75530-75532 +75531-75532 +75533-75556 +75533-75535 +75534-75535 +75536-75556 +75536-75544 +75537-75544 +75538-75544 +75538-75540 +75538-75539 +75541-75544 +75542-75544 +75543-75544 +75545-75556 +75546-75556 +75547-75556 +75549-75556 +75549-75552 +75549-75550 +75551-75552 +75553-75556 +75557-75580 +75557-75580 +75558-75580 +75558-75568 +75558-75561 +75558-75560 +75559-75560 +75562-75568 +75563-75568 +75564-75568 +75564-75565 +75566-75568 +75567-75568 +75569-75580 +75569-75580 +75569-75574 +75570-75574 +75570-75572 +75571-75572 +75571 +75573-75574 +75575-75580 +75576-75580 +75576-75578 +75577-75578 +75579-75580 +75581-75607 +75581-75607 +75582-75607 +75582-75596 +75582-75583 +75584-75593 +75584 +75585-75593 +75586-75593 +75586-75591 +75587-75591 +75587-75588 +75589-75591 +75589-75590 +75592-75593 +75593 +75595-75596 +75597-75607 +75598-75607 +75598-75601 +75599-75601 +75600-75601 +75603-75607 +75605-75607 +75606-75607 +75608-75632 +75608-75632 +75609-75632 +75609-75611 +75613-75616 +75614-75616 +75615-75616 +75617-75619 +75618-75619 +75620-75632 +75621-75632 +75622-75632 +75622-75625 +75622-75625 +75623-75625 +75623-75624 +75630-75632 +75633-75645 +75633-75645 +75634-75645 +75634-75635 +75636-75639 +75637-75639 +75638-75639 +75641-75645 +75641-75644 +75641-75642 +75646-75666 +75646-75666 +75647-75666 +75647-75654 +75648-75652 +75648-75649 +75650-75652 +75651-75652 +75653-75654 +75655-75666 +75656-75666 +75656-75664 +75657-75658 +75659-75664 +75660-75664 +75660-75661 +75662-75664 +75663-75664 +75667-75689 +75667-75689 +75668-75689 +75668-75669 +75671-75672 +75674-75679 +75674-75676 +75675-75676 +75677-75679 +75678-75679 +75680-75681 +75682-75689 +75683 +75684-75688 +75685-75688 +75686-75688 +75687-75688 +75690-75713 +75690-75713 +75691-75713 +75691-75696 +75694-75696 +75695-75696 +75699-75700 +75701-75703 +75702-75703 +75704-75713 +75704-75706 +75705-75706 +75708-75709 +75710-75713 +75711-75713 +75714-75729 +75714-75729 +75715-75729 +75716-75729 +75716-75719 +75716-75718 +75717-75718 +75720-75729 +75721-75729 +75721-75729 +75721-75727 +75721-75725 +75722-75725 +75722-75723 +75724-75725 +75726-75727 +75728-75729 +75730-75757 +75730-75757 +75731-75757 +75731-75750 +75732-75750 +75732-75737 +75733-75737 +75734-75737 +75734-75736 +75735-75736 +75739-75750 +75739-75742 +75740-75742 +75741-75742 +75744-75746 +75745-75746 +75747-75750 +75748-75750 +75749-75750 +75751-75757 +75753-75757 +75753-75755 +75754-75755 +75756-75757 +75758-75770 +75758-75770 +75759-75770 +75761-75762 +75764-75765 +75766-75770 +75767-75770 +75768-75770 +75769-75770 +75771-75779 +75771-75779 +75772-75779 +75773-75778 +75773-75775 +75774-75775 +75776-75778 +75777-75778 +75780-75803 +75780-75803 +75781-75803 +75781-75787 +75781-75782 +75782 +75783-75784 +75786-75787 +75788-75803 +75789-75803 +75789-75802 +75790-75796 +75791-75796 +75792-75796 +75792-75793 +75794-75796 +75795-75796 +75797-75802 +75798-75802 +75798-75799 +75801-75802 +75804-75822 +75804-75822 +75805-75822 +75805-75811 +75805-75807 +75806-75807 +75810-75811 +75812-75822 +75812-75817 +75813-75815 +75814-75815 +75816-75817 +75818-75822 +75819-75822 +75821-75822 +75823-75912 +75823-75912 +75824-75912 +75824-75843 +75825-75843 +75825-75833 +75826-75828 +75827-75828 +75829-75833 +75829-75830 +75831-75833 +75832-75833 +75833 +75834-75843 +75835-75843 +75835-75837 +75836-75837 +75838-75840 +75839-75840 +75841-75843 +75842-75843 +75843 +75844-75912 +75845-75912 +75845-75853 +75845-75851 +75846-75851 +75846-75848 +75847-75848 +75849-75851 +75850-75851 +75854-75877 +75855-75877 +75855-75870 +75855-75863 +75857-75863 +75858-75863 +75859-75861 +75859-75860 +75862-75863 +75864-75870 +75865-75870 +75865 +75866-75870 +75867-75870 +75867-75869 +75867-75868 +75871-75877 +75872-75877 +75872-75876 +75872-75873 +75874-75876 +75875-75876 +75878-75912 +75879-75912 +75879-75880 +75881-75884 +75882-75884 +75883-75884 +75886-75912 +75887-75912 +75887-75905 +75888-75897 +75889-75897 +75890-75897 +75890-75892 +75890-75891 +75893-75897 +75894-75897 +75894-75896 +75894-75895 +75898-75905 +75899-75905 +75899-75900 +75899 +75902-75905 +75903-75905 +75904-75905 +75906-75912 +75907-75912 +75908-75912 +75909-75912 +75909-75910 +75913-75930 +75913-75930 +75914-75930 +75914-75923 +75914-75919 +75914-75915 +75916-75919 +75917-75919 +75918-75919 +75918 +75920-75922 +75921-75922 +75924-75930 +75925-75930 +75925-75926 +75927-75930 +75928-75930 +75929-75930 +75931-75947 +75931-75947 +75932-75947 +75932 +75934-75938 +75935-75938 +75936-75938 +75937-75938 +75940-75947 +75940-75941 +75940-75941 +75942-75946 +75942-75943 +75944-75945 +75948-75962 +75948-75962 +75949-75962 +75949-75954 +75949 +75950-75954 +75951-75954 +75952-75954 +75953-75954 +75956-75962 +75957-75962 +75958-75962 +75958-75959 +75961-75962 +75961-75962 +75963-75970 +75963-75970 +75964-75970 +75964-75966 +75965 +75971-76008 +75971-76008 +75971-75981 +75971-75981 +75971-75972 +75973-75981 +75974-75981 +75975-75981 +75975-75976 +75977-75981 +75978-75981 +75979-75981 +75980-75981 +75982-75992 +75983-75987 +75983-75986 +75983-75985 +75984-75985 +75989-75991 +75990-75991 +75993-76008 +75994-76008 +75994-75996 +75995-75996 +75998-75999 +76001-76008 +76003-76008 +76004-76005 +76006-76008 +76007-76008 +76009-76049 +76009-76049 +76010-76049 +76011-76012 +76013-76015 +76014-76015 +76016-76021 +76017-76021 +76018-76021 +76019-76021 +76020-76021 +76022-76030 +76023-76030 +76023-76024 +76023 +76025-76030 +76026-76030 +76027-76030 +76028-76030 +76029-76030 +76031-76033 +76032-76033 +76034-76049 +76035-76049 +76036-76049 +76037-76049 +76037-76038 +76039-76049 +76040-76049 +76041-76049 +76042-76049 +76043-76044 +76045-76048 +76046-76048 +76046-76047 +76050-76070 +76050-76070 +76051-76070 +76051-76057 +76051-76052 +76053-76057 +76054-76055 +76056-76057 +76058-76070 +76059-76070 +76059-76064 +76060-76064 +76061-76064 +76062-76064 +76062-76063 +76066-76070 +76067-76070 +76067-76069 +76068-76069 +76071-76092 +76071-76092 +76072-76092 +76072-76075 +76073-76075 +76074-76075 +76078-76092 +76079-76092 +76079-76088 +76079-76083 +76080-76081 +76082-76083 +76084-76088 +76085-76088 +76085-76087 +76086-76087 +76089-76090 +76093-76131 +76093-76131 +76094-76131 +76095-76131 +76095-76099 +76095-76098 +76096-76098 +76097-76098 +76100-76101 +76102-76103 +76105-76106 +76107-76109 +76107-76108 +76110-76131 +76111-76131 +76112-76131 +76113-76131 +76113-76114 +76116-76124 +76117-76118 +76119-76120 +76121-76124 +76122-76124 +76123-76124 +76125-76131 +76128-76131 +76130-76131 +76132-76147 +76132-76147 +76133-76147 +76133-76135 +76134-76135 +76136-76138 +76137-76138 +76139-76147 +76140-76147 +76142-76147 +76144-76145 +76146-76147 +76148-76154 +76148-76154 +76149-76150 +76152-76154 +76153-76154 +76155-76174 +76155-76174 +76156-76174 +76156-76157 +76158-76159 +76161-76174 +76161-76162 +76163-76174 +76163-76166 +76164-76166 +76165-76166 +76167-76170 +76168-76170 +76169-76170 +76171-76174 +76172-76174 +76173-76174 +76175-76183 +76175-76183 +76175-76176 +76177-76180 +76178-76180 +76179-76180 +76182-76183 +76184-76229 +76184-76229 +76185-76229 +76185-76224 +76185-76214 +76185-76212 +76186-76212 +76186-76192 +76186-76189 +76186-76187 +76188-76189 +76190-76192 +76191-76192 +76193-76212 +76195-76197 +76196-76197 +76198-76201 +76199-76201 +76200-76201 +76202-76212 +76203-76212 +76204-76212 +76206-76212 +76207-76209 +76208-76209 +76210-76212 +76211-76212 +76215-76222 +76216-76222 +76216-76219 +76217-76219 +76218-76219 +76221-76222 +76223-76224 +76224 +76225-76229 +76226-76229 +76228-76229 +76230-76242 +76230-76242 +76231-76242 +76232-76234 +76233-76234 +76235-76237 +76236-76237 +76238-76242 +76239-76242 +76239-76240 +76241-76242 +76243-76266 +76243-76266 +76244-76266 +76244-76254 +76245-76254 +76246-76248 +76247-76248 +76249-76254 +76249-76251 +76250-76251 +76252-76254 +76253-76254 +76255-76266 +76256-76257 +76258-76259 +76260-76266 +76261-76262 +76263-76266 +76264-76265 +76267-76293 +76267-76293 +76268-76293 +76268-76271 +76268-76269 +76270-76271 +76271 +76272-76293 +76272-76274 +76273-76274 +76276-76277 +76278-76293 +76278-76284 +76278-76280 +76279-76280 +76281-76284 +76282-76284 +76283-76284 +76285-76286 +76287-76293 +76287-76289 +76288-76289 +76290-76292 +76291-76292 +76294-76313 +76294-76313 +76295-76313 +76295-76296 +76298-76313 +76299-76313 +76300-76313 +76300-76306 +76300-76303 +76301-76303 +76302-76303 +76304-76306 +76305-76306 +76307-76313 +76307-76309 +76308-76309 +76310-76311 +76312-76313 +76314-76333 +76314-76333 +76315-76333 +76315-76325 +76315-76317 +76316-76317 +76319-76320 +76321-76325 +76322-76325 +76323-76325 +76324-76325 +76326-76333 +76327-76333 +76327-76331 +76327-76329 +76328-76329 +76330 +76332-76333 +76333 +76334-76371 +76334-76371 +76335-76371 +76336-76337 +76338-76339 +76340-76341 +76342-76343 +76344-76371 +76344-76347 +76345 +76347 +76348-76371 +76349-76371 +76351-76371 +76352-76371 +76352-76355 +76354-76355 +76356-76371 +76357-76371 +76360-76362 +76361-76362 +76363-76371 +76364-76371 +76364-76365 +76368-76371 +76369-76371 +76369-76370 +76372-76384 +76372-76384 +76373-76384 +76374-76377 +76375-76377 +76376-76377 +76378-76384 +76379-76380 +76381-76384 +76382-76384 +76383-76384 +76385-76414 +76385-76414 +76386-76414 +76386-76390 +76388-76390 +76389-76390 +76391-76414 +76391-76396 +76393-76394 +76395-76396 +76397-76414 +76398-76414 +76400-76402 +76401-76402 +76403-76414 +76404-76414 +76405-76414 +76405-76407 +76406-76407 +76410-76411 +76412-76414 +76413-76414 +76415-76463 +76415-76463 +76416-76463 +76416-76421 +76417-76418 +76419-76421 +76420-76421 +76423-76424 +76425-76427 +76426-76427 +76428-76463 +76428-76442 +76429-76442 +76429-76435 +76430-76435 +76431-76435 +76431-76432 +76433-76435 +76434-76435 +76436-76442 +76436-76437 +76436-76437 +76439-76442 +76439-76440 +76443-76463 +76444-76463 +76444-76457 +76444-76455 +76445-76455 +76446-76455 +76447-76455 +76448-76455 +76449-76450 +76451-76455 +76452-76455 +76453-76455 +76454-76455 +76456-76457 +76458-76463 +76461-76463 +76461-76462 +76464-76469 +76464-76469 +76465-76469 +76467-76469 +76468-76469 +76470-76479 +76470-76479 +76471-76479 +76472-76475 +76473-76475 +76474-76475 +76477-76479 +76478-76479 +76480-76485 +76480-76485 +76481-76485 +76481-76482 +76483-76484 +76486-76513 +76486-76513 +76487-76513 +76487-76505 +76487-76499 +76487-76488 +76489-76492 +76491-76492 +76493-76495 +76493-76494 +76497-76499 +76498-76499 +76500-76505 +76501-76505 +76501-76502 +76503-76505 +76504-76505 +76506-76513 +76506-76510 +76507-76508 +76509-76510 +76511-76513 +76512-76513 +76514-76529 +76514-76529 +76515-76529 +76515-76517 +76516-76517 +76518-76529 +76518-76520 +76521-76529 +76522-76529 +76523-76526 +76524-76526 +76525-76526 +76528-76529 +76530-76553 +76530-76553 +76531-76553 +76531-76536 +76533-76536 +76533-76535 +76534-76535 +76538 +76540-76553 +76540-76549 +76540 +76541-76549 +76542-76549 +76543-76549 +76543-76546 +76545-76546 +76547-76549 +76547-76548 +76551-76553 +76552-76553 +76554-76581 +76554-76581 +76555-76581 +76555-76565 +76555-76557 +76556-76557 +76558-76562 +76558 +76559-76562 +76560-76562 +76561-76562 +76564-76565 +76566-76581 +76567-76581 +76567-76569 +76568-76569 +76571-76577 +76573-76577 +76574-76577 +76574-76575 +76576-76577 +76578-76581 +76579-76581 +76580-76581 +76582-76599 +76582-76599 +76583-76599 +76583-76596 +76583-76591 +76583-76589 +76583-76586 +76583-76584 +76585-76586 +76587-76589 +76588-76589 +76590-76591 +76592-76596 +76594-76596 +76595-76596 +76598-76599 +76600-76623 +76600-76623 +76600-76606 +76601-76602 +76603-76606 +76604-76606 +76605-76606 +76607-76623 +76608-76623 +76608-76610 +76609-76610 +76611-76613 +76612-76613 +76615-76618 +76616-76618 +76617-76618 +76619-76623 +76621-76623 +76622-76623 +76624-76646 +76624-76646 +76625-76646 +76625-76630 +76627-76630 +76628-76630 +76629-76630 +76631-76646 +76632-76646 +76632-76638 +76632-76633 +76634-76636 +76635-76636 +76639-76646 +76640-76646 +76643-76646 +76644-76646 +76645-76646 +76647-76684 +76647-76684 +76648-76684 +76648-76670 +76648-76653 +76650-76653 +76651-76653 +76652-76653 +76654-76670 +76654 +76655-76656 +76658-76659 +76660-76670 +76661-76670 +76662-76670 +76663 +76666-76670 +76667-76670 +76668-76670 +76669-76670 +76671-76684 +76672-76684 +76673-76674 +76677-76684 +76678-76680 +76679-76680 +76681-76684 +76682-76683 +76685-76714 +76685-76714 +76686-76714 +76686-76705 +76687-76693 +76688-76693 +76689-76693 +76689-76690 +76692-76693 +76694-76705 +76694-76701 +76695-76698 +76696-76698 +76697-76698 +76700-76701 +76702-76705 +76703-76705 +76704-76705 +76706-76714 +76707-76714 +76708-76709 +76710-76714 +76711-76714 +76711-76712 +76714 +76715-76725 +76715-76725 +76716-76725 +76716-76718 +76717-76718 +76719-76725 +76720-76725 +76722-76725 +76723-76725 +76723-76724 +76726-76731 +76726-76731 +76727-76731 +76728-76731 +76729-76731 +76729-76730 +76732-76738 +76732-76738 +76733-76738 +76735-76738 +76735-76738 +76736-76738 +76737-76738 +76739-76760 +76739-76760 +76740-76760 +76742-76760 +76744-76745 +76746-76760 +76746-76747 +76749-76760 +76750-76760 +76751-76755 +76752-76755 +76753-76755 +76754-76755 +76756-76760 +76758-76760 +76758-76760 +76759-76760 +76761-76769 +76761-76769 +76762-76769 +76762 +76764-76769 +76765-76769 +76766-76769 +76767-76769 +76767-76768 +76770-76787 +76770-76787 +76771-76787 +76771-76775 +76773-76774 +76776-76787 +76776-76782 +76777-76780 +76778-76780 +76779-76780 +76781-76782 +76783-76787 +76784-76787 +76784-76785 +76786-76787 +76787 +76788-76794 +76788-76794 +76789-76794 +76790-76792 +76791-76792 +76793-76794 +76795-76811 +76795-76811 +76796-76811 +76796-76799 +76797-76799 +76798-76799 +76801-76803 +76802-76803 +76804-76811 +76804-76806 +76805-76806 +76807-76811 +76808-76811 +76809-76811 +76810-76811 +76812-76836 +76812-76836 +76813-76836 +76813-76823 +76814-76823 +76815-76817 +76816-76817 +76818-76823 +76819-76820 +76821-76823 +76822-76823 +76824-76836 +76824-76826 +76825-76826 +76828-76829 +76830-76836 +76830-76831 +76833-76836 +76834-76836 +76835-76836 +76837-76857 +76837-76857 +76838-76857 +76840-76842 +76841-76842 +76843-76857 +76844-76857 +76844-76848 +76845-76848 +76846-76848 +76847-76848 +76850-76853 +76851-76853 +76852-76853 +76854-76857 +76854-76857 +76854-76855 +76856-76857 +76858-76894 +76858-76894 +76859-76894 +76859-76862 +76860-76862 +76861-76862 +76862 +76863-76864 +76866-76869 +76867-76869 +76868-76869 +76870-76894 +76871-76894 +76871-76882 +76871-76874 +76872-76874 +76873-76874 +76874 +76876-76879 +76877-76879 +76878-76879 +76880-76882 +76881-76882 +76883-76894 +76884-76894 +76884-76888 +76885-76886 +76887-76888 +76889-76894 +76890-76894 +76890-76893 +76891-76893 +76892-76893 +76895-76923 +76895-76923 +76896-76923 +76897-76902 +76898-76902 +76899-76902 +76900-76902 +76900 +76901-76902 +76903-76915 +76904-76910 +76905-76910 +76906-76910 +76907-76910 +76908-76910 +76909-76910 +76911-76915 +76912-76915 +76913-76915 +76913-76914 +76916-76923 +76917-76923 +76919-76923 +76920-76923 +76921-76923 +76924-76933 +76924-76933 +76925-76933 +76925-76930 +76925-76928 +76925-76926 +76927-76928 +76929-76930 +76932-76933 +76934-76952 +76934-76952 +76935-76952 +76935 +76936-76939 +76937-76939 +76938-76939 +76942-76952 +76942-76948 +76942-76944 +76942-76943 +76945-76948 +76946-76948 +76946-76947 +76949-76952 +76950-76952 +76953-76979 +76953-76979 +76954-76979 +76954-76956 +76955-76956 +76957-76965 +76957-76958 +76959-76965 +76959-76960 +76962-76965 +76963-76965 +76964-76965 +76966-76967 +76969-76970 +76971-76979 +76972-76979 +76972-76974 +76973-76974 +76974 +76976-76979 +76977-76979 +76977-76978 +76980-77005 +76980-77005 +76981-77005 +76981-76992 +76984-76992 +76985-76992 +76985-76988 +76985-76986 +76987-76988 +76989-76992 +76990-76992 +76991-76992 +76993-77005 +76994-77005 +76994-76998 +76996-76998 +76997-76998 +76999-77005 +77000-77005 +77001-77005 +77002-77005 +77003-77005 +77003-77004 +77006-77016 +77006-77016 +77007-77016 +77007-77009 +77008-77009 +77009 +77011-77016 +77011-77013 +77012-77013 +77014-77016 +77015-77016 +77017-77028 +77017-77028 +77018-77028 +77018-77022 +77019-77022 +77020-77022 +77020-77021 +77023-77025 +77024-77025 +77027-77028 +77029-77038 +77029-77038 +77030-77038 +77030-77033 +77031-77033 +77032-77033 +77034-77038 +77035-77038 +77036-77038 +77037-77038 +77039-77048 +77039-77048 +77040-77041 +77042-77045 +77042-77043 +77044-77045 +77046-77048 +77047-77048 +77049-77078 +77049-77078 +77050-77078 +77050-77052 +77051-77052 +77053-77078 +77054-77055 +77056-77058 +77057-77058 +77059-77066 +77059-77063 +77060-77063 +77061-77063 +77062-77063 +77065-77066 +77067-77078 +77068-77078 +77069-77078 +77069-77073 +77070-77073 +77071-77073 +77075-77078 +77076-77077 +77079-77096 +77079-77096 +77080-77096 +77080-77090 +77081-77083 +77082-77083 +77084-77090 +77084-77087 +77085-77087 +77086-77087 +77088-77090 +77089-77090 +77094-77096 +77095-77096 +77097-77108 +77097-77108 +77098-77108 +77099-77102 +77100-77102 +77100-77101 +77103-77108 +77103-77105 +77104-77105 +77106-77108 +77107-77108 +77109-77172 +77109-77172 +77110-77172 +77110-77113 +77110-77112 +77111-77112 +77114-77117 +77115-77117 +77115-77116 +77119-77120 +77121-77123 +77121-77122 +77124-77172 +77124-77132 +77124-77131 +77124-77130 +77125-77130 +77126-77130 +77127-77130 +77127-77129 +77128-77129 +77133 +77134-77143 +77135-77143 +77136-77143 +77136-77139 +77137-77139 +77138-77139 +77140-77142 +77141-77142 +77144-77172 +77145-77172 +77145-77147 +77146-77147 +77148-77172 +77149-77172 +77149-77156 +77150-77151 +77153-77156 +77154-77156 +77155-77156 +77157-77159 +77157-77158 +77160 +77162-77163 +77164-77172 +77165-77172 +77166-77172 +77169-77172 +77170-77172 +77170-77171 +77173-77209 +77173-77209 +77174-77209 +77175-77183 +77179-77183 +77179-77180 +77181-77182 +77185-77209 +77185-77194 +77185-77191 +77186-77191 +77187-77191 +77187-77190 +77187-77189 +77188-77189 +77192-77193 +77195-77209 +77196-77209 +77197-77201 +77199-77201 +77200-77201 +77202-77209 +77203-77208 +77203-77205 +77204-77205 +77206-77208 +77207-77208 +77210-77221 +77210-77221 +77211-77221 +77211-77215 +77211 +77212-77215 +77213-77215 +77217-77221 +77218-77221 +77219-77221 +77220-77221 +77222-77240 +77222-77240 +77223-77240 +77223-77227 +77224-77225 +77226-77227 +77228-77240 +77229-77240 +77231-77233 +77232-77233 +77234-77240 +77235-77240 +77235-77238 +77235-77237 +77236-77237 +77239-77240 +77241-77252 +77241-77252 +77242-77252 +77242-77247 +77244-77247 +77245-77247 +77246-77247 +77251-77252 +77253-77270 +77253-77270 +77254-77270 +77254-77260 +77254-77257 +77255-77257 +77256-77257 +77258-77260 +77261-77263 +77262-77263 +77265-77270 +77268-77270 +77269-77270 +77271-77289 +77271-77289 +77272-77289 +77273-77289 +77274-77275 +77277-77289 +77278-77289 +77278-77281 +77278-77279 +77280-77281 +77282-77289 +77283-77289 +77283-77284 +77287-77289 +77287-77288 +77290-77299 +77290-77299 +77291-77299 +77291-77295 +77291-77293 +77292-77293 +77296-77299 +77298-77299 +77300-77309 +77300-77309 +77301-77309 +77301-77302 +77303-77305 +77304-77305 +77307-77309 +77308-77309 +77310-77328 +77310-77328 +77311-77328 +77311-77314 +77312-77314 +77313-77314 +77315-77316 +77318-77319 +77320-77323 +77321-77323 +77322-77323 +77324-77328 +77324 +77325-77328 +77326-77328 +77327-77328 +77329-77355 +77329-77355 +77330-77355 +77330-77331 +77332-77334 +77333-77334 +77336-77355 +77336-77337 +77336-77337 +77339-77355 +77339-77340 +77342-77355 +77345-77355 +77345-77347 +77346-77347 +77349-77355 +77350-77355 +77350-77352 +77351-77352 +77353-77355 +77354-77355 +77356-77368 +77356-77368 +77357-77368 +77357-77359 +77360-77361 +77362-77368 +77362-77364 +77363 +77365-77368 +77366-77368 +77366-77367 +77369-77380 +77369-77380 +77370-77380 +77371-77380 +77371-77373 +77371-77372 +77374-77380 +77374-77375 +77376-77380 +77377-77380 +77378-77380 +77379-77380 +77381-77410 +77381-77410 +77382-77410 +77382-77400 +77383-77400 +77383-77393 +77384-77393 +77384-77389 +77385-77389 +77386-77389 +77387-77389 +77387-77388 +77391-77392 +77394-77400 +77394-77398 +77394-77395 +77396-77398 +77397-77398 +77399-77400 +77401-77410 +77402-77410 +77402-77405 +77403-77405 +77406-77410 +77406-77409 +77407-77409 +77408-77409 +77411-77431 +77411-77431 +77412-77431 +77414-77418 +77416-77418 +77417-77418 +77419-77421 +77419-77420 +77422-77431 +77422-77423 +77426-77431 +77428-77431 +77429-77431 +77429-77430 +77432-77437 +77432-77437 +77433-77437 +77433-77434 +77436-77437 +77438-77455 +77438-77455 +77439-77455 +77439-77443 +77440-77443 +77441-77443 +77442-77443 +77444-77445 +77446-77450 +77446-77448 +77447-77448 +77449-77450 +77450 +77451 +77453-77455 +77454-77455 +77456-77490 +77456-77490 +77457-77490 +77457-77469 +77457-77465 +77457-77460 +77458-77460 +77458-77459 +77461-77465 +77462-77465 +77464-77465 +77467-77469 +77468-77469 +77470-77490 +77471-77490 +77471-77473 +77472-77473 +77474-77490 +77474-77484 +77477-77479 +77478-77479 +77480-77484 +77481-77484 +77482-77484 +77483-77484 +77485-77490 +77486-77490 +77487-77490 +77488-77490 +77489-77490 +77491-77511 +77491-77511 +77492-77511 +77494-77511 +77494-77501 +77494-77496 +77494-77495 +77497-77501 +77498-77501 +77499-77501 +77500-77501 +77502-77511 +77503-77511 +77503-77506 +77503-77504 +77505-77506 +77507-77511 +77508-77511 +77509-77511 +77510-77511 +77512-77518 +77512-77518 +77513-77518 +77514 +77517-77518 +77519-77542 +77519-77542 +77520-77542 +77520-77528 +77522-77526 +77523-77526 +77524-77526 +77525-77526 +77527-77528 +77529-77542 +77530-77542 +77530-77538 +77531-77532 +77533-77535 +77534-77535 +77536-77538 +77537-77538 +77539-77542 +77541-77542 +77543-77566 +77543-77566 +77544-77566 +77544-77552 +77544-77548 +77545-77548 +77546-77548 +77547-77548 +77551-77552 +77553-77566 +77553-77560 +77553-77554 +77557-77560 +77558-77560 +77559-77560 +77561-77566 +77562-77566 +77563-77564 +77565-77566 +77567-77576 +77567-77576 +77568-77576 +77569-77570 +77571-77576 +77572-77576 +77573-77576 +77574-77576 +77575-77576 +77577-77605 +77577-77605 +77578-77605 +77578-77602 +77578-77581 +77578-77579 +77580-77581 +77582-77585 +77583-77585 +77584-77585 +77586-77593 +77586-77588 +77587-77588 +77589-77593 +77590-77591 +77592-77593 +77594-77597 +77595-77597 +77596-77597 +77599-77601 +77600-77601 +77603-77605 +77604-77605 +77606-77623 +77606-77623 +77607-77623 +77607-77611 +77607 +77608-77609 +77612-77623 +77613-77623 +77613 +77615-77623 +77615-77616 +77617-77623 +77618-77623 +77618-77620 +77619-77620 +77621-77622 +77624-77639 +77624-77639 +77625-77639 +77625-77637 +77625 +77626-77629 +77627-77629 +77628-77629 +77630-77631 +77631 +77632-77637 +77633-77637 +77633-77634 +77636-77637 +77640-77648 +77640-77648 +77641-77648 +77641-77644 +77642-77643 +77644 +77645-77648 +77646-77648 +77647-77648 +77649-77670 +77649-77670 +77650-77670 +77650-77663 +77651-77654 +77652-77654 +77653-77654 +77656-77658 +77657-77658 +77659-77663 +77661-77663 +77662-77663 +77664-77670 +77665-77670 +77666-77667 +77668-77670 +77670 +77671-77701 +77671-77701 +77672-77701 +77672-77677 +77673-77677 +77675-77677 +77676-77677 +77678-77689 +77678-77682 +77678-77679 +77681-77682 +77683-77689 +77683-77684 +77685-77686 +77686 +77688-77689 +77690-77695 +77691-77695 +77691-77692 +77694-77695 +77696-77701 +77697-77701 +77697-77698 +77698 +77700-77701 +77702-77729 +77702-77729 +77703-77729 +77703-77716 +77704-77705 +77706-77708 +77707-77708 +77709-77716 +77710-77716 +77713-77716 +77714-77716 +77715-77716 +77717-77729 +77718-77729 +77718 +77719-77729 +77720-77729 +77723-77729 +77723-77726 +77724-77726 +77725-77726 +77728-77729 +77730-77741 +77730-77741 +77731-77741 +77731-77736 +77731-77733 +77732-77733 +77735-77736 +77738-77741 +77739-77741 +77740-77741 +77742-77784 +77742-77784 +77743-77784 +77743-77746 +77744-77746 +77745-77746 +77747-77784 +77749-77784 +77751-77784 +77751-77759 +77752-77759 +77752-77753 +77754-77759 +77754-77755 +77757-77759 +77758-77759 +77761-77762 +77763-77765 +77764-77765 +77767-77784 +77768-77769 +77770-77784 +77771-77784 +77771-77772 +77773-77774 +77775-77784 +77776-77784 +77777-77784 +77778-77784 +77780-77784 +77781-77784 +77782-77784 +77783-77784 +77785-77816 +77785-77816 +77786-77816 +77787-77789 +77788-77789 +77789 +77790-77800 +77791-77800 +77792-77800 +77792-77793 +77794-77800 +77795-77800 +77797-77800 +77798-77800 +77799-77800 +77801-77816 +77802-77805 +77802-77803 +77804-77805 +77806-77816 +77807-77816 +77807-77809 +77807-77808 +77810-77816 +77811-77816 +77812-77816 +77813-77816 +77813-77815 +77814-77815 +77817-77850 +77817-77850 +77818-77850 +77818 +77819-77850 +77820-77822 +77821-77822 +77825-77826 +77827-77850 +77827-77831 +77828-77831 +77828-77829 +77834-77850 +77835-77850 +77836-77850 +77836-77839 +77837-77839 +77838-77839 +77840-77841 +77844-77850 +77845-77850 +77846-77850 +77846-77848 +77847-77848 +77851-77879 +77851-77879 +77852-77879 +77852-77853 +77855-77856 +77857-77858 +77859-77879 +77860-77879 +77860-77872 +77861-77872 +77861-77863 +77862-77863 +77864-77872 +77865-77872 +77866-77872 +77867-77872 +77869-77872 +77870-77872 +77870-77871 +77873-77879 +77874-77879 +77875-77879 +77876-77879 +77877-77879 +77878-77879 +77880-77898 +77880-77898 +77881-77898 +77881 +77882-77898 +77885-77898 +77886-77898 +77888-77890 +77889-77890 +77891-77898 +77891-77892 +77893-77898 +77893-77894 +77896-77898 +77897-77898 +77899-77924 +77899-77924 +77900-77924 +77900-77912 +77902-77905 +77903-77905 +77904-77905 +77906-77912 +77907-77912 +77909-77912 +77910-77912 +77911-77912 +77913-77924 +77914-77924 +77916-77924 +77917-77924 +77919-77923 +77920-77923 +77921-77923 +77922-77923 +77925-77951 +77925-77951 +77926-77939 +77927-77939 +77928-77939 +77929-77939 +77930-77939 +77931-77939 +77931-77932 +77934-77937 +77935-77937 +77936-77937 +77940-77951 +77941-77951 +77942-77951 +77942-77944 +77943-77944 +77945-77951 +77947-77951 +77948-77951 +77949-77951 +77950-77951 +77952-77981 +77952-77981 +77954-77981 +77955-77981 +77955-77967 +77956-77959 +77957-77959 +77958-77959 +77960-77961 +77962-77963 +77964-77967 +77966-77967 +77968-77981 +77969-77981 +77969-77971 +77970-77971 +77974-77975 +77975 +77976-77981 +77977-77981 +77978-77979 +77980-77981 +77982-77996 +77982-77996 +77983-77996 +77984-77996 +77984 +77986-77996 +77987-77989 +77988-77989 +77992-77996 +77992-77993 +77995-77996 +77997-78020 +77997-78020 +77998-78020 +77998-77999 +78002-78020 +78002-78003 +78004-78020 +78005-78020 +78005-78009 +78006-78009 +78007-78009 +78008-78009 +78010-78020 +78011-78020 +78012-78020 +78012 +78013-78020 +78014-78020 +78015-78016 +78017-78020 +78018-78020 +78018-78019 +78019 +78021-78027 +78021-78027 +78021-78026 +78021-78025 +78022-78023 +78024-78025 +78028-78042 +78028-78042 +78030-78042 +78031-78042 +78031-78038 +78031-78033 +78032-78033 +78034-78038 +78035-78038 +78036-78038 +78037-78038 +78040-78042 +78040-78041 +78043-78068 +78043-78068 +78046-78068 +78047-78068 +78047-78048 +78050-78068 +78050-78052 +78051-78052 +78052 +78053-78068 +78054-78068 +78055-78059 +78056-78059 +78057-78059 +78057-78058 +78060-78068 +78061-78068 +78063-78068 +78063-78066 +78066 +78067-78068 +78068 +78069-78079 +78069-78079 +78070-78079 +78070-78071 +78072-78075 +78073-78075 +78074-78075 +78076-78078 +78077-78078 +78080-78107 +78080-78107 +78081-78107 +78081-78084 +78083-78084 +78085-78107 +78086-78107 +78086-78091 +78087-78091 +78088-78091 +78089-78091 +78090-78091 +78094-78107 +78096-78107 +78097-78107 +78098-78107 +78099-78107 +78099-78100 +78102-78107 +78104-78107 +78104-78106 +78105-78106 +78108-78113 +78108-78113 +78109-78113 +78111-78113 +78112-78113 +78114-78135 +78114-78135 +78115-78135 +78115-78121 +78116-78121 +78117-78121 +78119-78121 +78120-78121 +78122-78126 +78122 +78124-78126 +78125-78126 +78127-78135 +78128-78135 +78128-78132 +78128-78129 +78130-78132 +78131-78132 +78133-78135 +78134-78135 +78136-78143 +78136-78143 +78137-78143 +78137-78141 +78138-78141 +78139-78141 +78140-78141 +78142 +78144-78166 +78144-78166 +78145-78166 +78145-78154 +78145-78151 +78145-78147 +78146-78147 +78148-78151 +78149-78151 +78153-78154 +78155-78166 +78156-78166 +78156-78158 +78157-78158 +78159-78166 +78160-78166 +78161-78162 +78163-78164 +78165-78166 +78167-78185 +78167-78185 +78168-78185 +78168-78174 +78168-78170 +78169-78170 +78173-78174 +78176-78177 +78179-78181 +78180-78181 +78182-78185 +78184-78185 +78186-78226 +78186-78226 +78187-78226 +78187-78192 +78188-78192 +78189-78192 +78191-78192 +78193-78226 +78193-78215 +78193-78205 +78193 +78195-78205 +78198-78201 +78199-78201 +78200-78201 +78202-78205 +78203-78205 +78204-78205 +78206-78215 +78207-78215 +78207-78213 +78208-78209 +78210-78212 +78211-78212 +78213 +78216-78226 +78217-78226 +78217-78220 +78218-78220 +78219-78220 +78221-78226 +78222-78226 +78224-78226 +78225-78226 +78227-78245 +78227-78245 +78228-78245 +78228-78236 +78229-78233 +78229-78230 +78232-78233 +78235-78236 +78237-78245 +78238-78245 +78238-78240 +78239-78240 +78242-78243 +78244-78245 +78246-78267 +78246-78267 +78247-78267 +78247-78252 +78247-78248 +78249 +78251-78252 +78253-78267 +78254-78267 +78254-78264 +78255-78264 +78256-78264 +78257-78264 +78258-78264 +78258-78260 +78259-78260 +78261-78264 +78262-78264 +78263-78264 +78266-78267 +78268-78274 +78268-78274 +78269-78274 +78271-78274 +78271-78273 +78271-78272 +78274 +78275-78328 +78275-78328 +78276-78328 +78276-78278 +78277-78278 +78279-78328 +78279-78286 +78280-78286 +78280-78283 +78281-78283 +78282-78283 +78284-78286 +78285-78286 +78287-78328 +78288-78328 +78288-78303 +78288-78290 +78289-78290 +78291-78303 +78292-78303 +78292-78296 +78293-78296 +78294-78296 +78295-78296 +78298-78303 +78299-78303 +78299-78300 +78301-78303 +78302-78303 +78305-78328 +78307-78310 +78308-78310 +78309-78310 +78311-78328 +78311-78323 +78311-78317 +78312-78317 +78313-78317 +78315-78317 +78315-78316 +78320-78321 +78322-78323 +78324-78328 +78325-78328 +78326-78328 +78327-78328 +78329-78344 +78329-78344 +78330-78344 +78330-78332 +78331-78332 +78333-78344 +78334-78338 +78334-78335 +78336-78338 +78337-78338 +78339-78344 +78340-78344 +78343-78344 +78345-78374 +78345-78374 +78347-78348 +78349-78374 +78349-78356 +78351-78356 +78351 +78352-78356 +78353-78356 +78354-78356 +78355-78356 +78357-78374 +78358-78374 +78359-78366 +78360-78361 +78363-78366 +78365-78366 +78369-78374 +78370-78374 +78371-78374 +78372-78374 +78372-78373 +78375-78385 +78375-78385 +78376-78385 +78376-78378 +78380-78385 +78381-78385 +78381-78384 +78381-78382 +78383-78384 +78386-78394 +78386-78394 +78387-78394 +78387-78390 +78388-78390 +78388-78389 +78391 +78393-78394 +78395-78412 +78395-78412 +78396-78412 +78397-78401 +78398-78401 +78399-78401 +78400-78401 +78402-78403 +78404-78412 +78405-78412 +78405-78407 +78405-78406 +78408-78412 +78408-78410 +78409-78410 +78411-78412 +78413-78422 +78413-78422 +78414-78422 +78414-78417 +78416-78417 +78418-78422 +78421-78422 +78423-78437 +78423-78437 +78424-78437 +78424-78432 +78424-78425 +78425 +78427-78428 +78429-78430 +78431-78432 +78433-78437 +78434-78437 +78435-78437 +78436-78437 +78438-78455 +78438-78455 +78439-78455 +78439-78440 +78442-78443 +78444-78455 +78445-78455 +78447-78448 +78449-78451 +78450-78451 +78452-78455 +78453-78455 +78454-78455 +78456-78480 +78456-78480 +78457-78480 +78457-78461 +78458 +78460-78461 +78462-78480 +78463-78480 +78465-78480 +78465-78474 +78465-78466 +78466 +78467-78474 +78467-78470 +78468-78470 +78469-78470 +78470 +78472-78474 +78473-78474 +78475-78480 +78476-78480 +78477-78479 +78478-78479 +78481-78505 +78481-78505 +78482-78505 +78483-78484 +78485-78505 +78486-78505 +78487-78489 +78488-78489 +78490-78495 +78491-78495 +78491-78493 +78492-78493 +78494-78495 +78496-78505 +78497-78505 +78497-78501 +78500-78501 +78502-78505 +78503-78505 +78503-78504 +78506-78508 +78506-78508 +78507-78508 +78509-78512 +78509-78512 +78511-78512 +78512 +78513-78518 +78513-78518 +78514-78518 +78514-78515 +78519-78526 +78519-78526 +78521-78526 +78521-78522 +78523-78526 +78525-78526 +78527-78556 +78527-78556 +78527-78539 +78527-78531 +78527-78528 +78530-78531 +78532-78539 +78533-78539 +78534-78535 +78536-78539 +78537-78539 +78538-78539 +78540-78556 +78541-78556 +78543-78556 +78544-78556 +78544-78549 +78544-78547 +78546-78547 +78550-78556 +78551-78556 +78552-78553 +78554-78556 +78555-78556 +78557-78575 +78557-78575 +78558-78575 +78558-78561 +78559-78561 +78560-78561 +78560 +78564-78575 +78565-78575 +78567-78575 +78567-78569 +78568-78569 +78570-78571 +78572-78573 +78574-78575 +78576-78607 +78576-78607 +78577-78578 +78579-78584 +78580-78581 +78582-78584 +78583-78584 +78583 +78585-78587 +78585-78586 +78589-78591 +78590-78591 +78592-78607 +78593-78598 +78594-78598 +78595-78598 +78596-78598 +78597-78598 +78599-78607 +78599-78600 +78602-78605 +78603-78605 +78603-78604 +78606-78607 +78608-78670 +78608-78670 +78609-78670 +78609-78614 +78610-78614 +78611-78613 +78612-78613 +78614 +78615-78670 +78615-78628 +78615-78619 +78616-78619 +78616-78618 +78617-78618 +78620-78624 +78622-78624 +78623-78624 +78626-78628 +78627-78628 +78629-78670 +78630-78670 +78631-78632 +78633-78634 +78635-78670 +78636-78670 +78636-78637 +78636 +78637 +78638-78670 +78638 +78639-78670 +78639-78656 +78641-78656 +78641-78642 +78643-78656 +78644-78656 +78644-78653 +78645-78653 +78645-78646 +78647-78649 +78648-78649 +78650-78653 +78651-78653 +78651-78652 +78657-78670 +78658-78670 +78658-78664 +78659-78660 +78662-78664 +78663-78664 +78665-78670 +78666-78670 +78667-78670 +78667-78669 +78668-78669 +78671-78690 +78671-78690 +78672-78690 +78672-78681 +78672-78673 +78674-78681 +78674-78676 +78675-78676 +78677-78679 +78678-78679 +78680-78681 +78682-78690 +78683-78690 +78684-78690 +78685-78687 +78686-78687 +78689-78690 +78691-78714 +78691-78714 +78692-78714 +78692-78709 +78692-78695 +78693-78695 +78693-78694 +78696-78709 +78697-78709 +78697-78700 +78698-78700 +78699-78700 +78701-78709 +78702-78709 +78702-78704 +78703-78704 +78707-78709 +78708-78709 +78710-78714 +78711-78714 +78713-78714 +78715-78737 +78715-78737 +78716-78737 +78716-78718 +78717-78718 +78719-78737 +78721-78724 +78722-78724 +78723-78724 +78725-78728 +78726-78728 +78726-78727 +78729-78737 +78731-78734 +78732-78734 +78733-78734 +78736-78737 +78738-78749 +78738-78749 +78739-78749 +78740-78745 +78741-78745 +78741-78742 +78743-78745 +78744-78745 +78747-78749 +78748-78749 +78750-78768 +78750-78768 +78750-78755 +78751 +78752-78753 +78756-78760 +78757-78760 +78758-78760 +78759-78760 +78761-78768 +78762-78768 +78763-78768 +78763-78764 +78765-78768 +78766-78768 +78767-78768 +78769-78776 +78769-78776 +78770-78776 +78771-78772 +78774-78776 +78775-78776 +78777-78792 +78777-78792 +78778-78792 +78778-78786 +78781-78783 +78782-78783 +78784-78786 +78785-78786 +78788-78792 +78790-78792 +78791-78792 +78793-78818 +78793-78818 +78794-78818 +78794-78798 +78795-78798 +78796-78798 +78797-78798 +78799-78818 +78799-78809 +78800-78809 +78802-78804 +78803-78804 +78805-78809 +78806-78809 +78807-78809 +78808-78809 +78810-78818 +78811-78818 +78812-78815 +78813-78815 +78814-78815 +78816-78818 +78817-78818 +78819-78836 +78819-78836 +78820-78836 +78820-78824 +78821-78824 +78822-78824 +78823-78824 +78825-78826 +78828-78829 +78830-78836 +78831-78836 +78833-78836 +78835-78836 +78837-78863 +78837-78863 +78838-78863 +78840-78863 +78842-78863 +78843-78863 +78846-78863 +78846-78847 +78848-78863 +78849-78863 +78849-78853 +78849-78852 +78850-78852 +78851-78852 +78854-78863 +78855-78863 +78856-78858 +78857-78858 +78859-78863 +78860-78863 +78861-78863 +78862-78863 +78864-78888 +78864-78888 +78865-78888 +78866-78867 +78868-78888 +78868-78879 +78869-78879 +78869-78875 +78871-78875 +78871-78872 +78873-78875 +78874-78875 +78876-78879 +78876-78879 +78876-78878 +78876-78877 +78880-78888 +78881-78888 +78883-78888 +78885-78888 +78886-78888 +78887-78888 +78889-78902 +78889-78902 +78890-78902 +78890-78891 +78892-78902 +78892-78893 +78894-78897 +78895-78897 +78896-78897 +78899-78900 +78901-78902 +78903-78911 +78903-78911 +78904-78911 +78904-78906 +78904-78905 +78908-78910 +78908-78909 +78911 +78912-78922 +78912-78922 +78912-78915 +78912 +78913-78915 +78913-78915 +78914-78915 +78916-78922 +78917-78922 +78918-78922 +78919-78922 +78919-78920 +78921-78922 +78923-78933 +78923-78933 +78924-78933 +78924-78930 +78925-78930 +78926-78930 +78926-78928 +78926-78927 +78934-79016 +78934-79016 +78935-79016 +78936-79016 +78938-78939 +78940-78950 +78940-78944 +78941-78944 +78942-78944 +78943-78944 +78945-78950 +78946-78950 +78947-78950 +78948-78950 +78948-78949 +78951-78960 +78951-78954 +78952-78954 +78953-78954 +78956-78960 +78957-78960 +78958-78960 +78959-78960 +78961-78969 +78962-78964 +78963-78964 +78965-78969 +78966-78969 +78966-78967 +78970-79016 +78970-78985 +78971-78973 +78972-78973 +78975-78976 +78977-78985 +78977-78979 +78978-78979 +78980-78981 +78982-78985 +78982-78983 +78984-78985 +78987-79016 +78987-78991 +78987-78989 +78988-78989 +78992-78995 +78993-78995 +78993-78995 +78994-78995 +78996-79016 +78996-79003 +78996-78997 +78998-78999 +79001-79003 +79002-79003 +79004-79005 +79007-79016 +79008-79011 +79009-79011 +79010-79011 +79012 +79013-79014 +79015-79016 +79016 +79017-79050 +79017-79050 +79018-79050 +79018-79035 +79020-79024 +79020 +79021-79024 +79022-79024 +79023-79024 +79025-79026 +79027-79035 +79028-79030 +79029-79030 +79032-79033 +79034-79035 +79036-79050 +79037-79050 +79037-79040 +79038-79040 +79039-79040 +79041-79050 +79042-79050 +79043-79050 +79046-79050 +79046-79047 +79046 +79047 +79048-79050 +79051-79056 +79051-79056 +79052-79056 +79054-79056 +79056 +79057-79068 +79057-79068 +79058-79068 +79059-79060 +79061-79068 +79063-79068 +79063-79065 +79064-79065 +79066-79068 +79069-79085 +79069-79085 +79070-79085 +79070-79077 +79071-79077 +79071-79074 +79072-79074 +79072-79073 +79075-79076 +79078-79085 +79079-79085 +79081-79085 +79082-79085 +79083-79085 +79084-79085 +79086-79090 +79086-79090 +79087-79090 +79088-79090 +79090 +79091-79109 +79091-79109 +79092-79109 +79092-79093 +79095-79096 +79097-79109 +79097-79100 +79097 +79099-79100 +79101-79109 +79104-79109 +79105-79109 +79106-79109 +79106-79107 +79110-79127 +79110-79127 +79111-79127 +79111-79119 +79112-79119 +79114-79119 +79115-79119 +79116-79119 +79117-79119 +79117-79118 +79120-79124 +79121-79124 +79122-79124 +79123-79124 +79126-79127 +79128-79151 +79128-79151 +79129-79151 +79129-79141 +79129-79130 +79131-79141 +79131-79135 +79132-79135 +79133-79135 +79134-79135 +79136-79141 +79137-79141 +79138-79141 +79139-79141 +79140-79141 +79140 +79142-79146 +79142-79144 +79143-79144 +79145-79146 +79146 +79149-79151 +79149-79150 +79149 +79150 +79151 +79152-79158 +79152-79158 +79153-79155 +79154-79155 +79157-79158 +79159-79194 +79159-79194 +79160-79194 +79162-79194 +79162-79166 +79163-79166 +79164-79166 +79165-79166 +79169-79183 +79169-79172 +79170-79172 +79171-79172 +79173-79176 +79174-79176 +79175-79176 +79177-79183 +79178-79183 +79179-79183 +79180-79183 +79181-79183 +79182-79183 +79184-79194 +79185-79194 +79187-79189 +79188-79189 +79190-79194 +79191-79194 +79192-79194 +79193-79194 +79195-79198 +79195-79198 +79196-79198 +79199-79209 +79199-79209 +79199-79200 +79199 +79201-79209 +79202-79209 +79203-79205 +79204-79205 +79206-79209 +79207-79209 +79208-79209 +79210-79244 +79210-79244 +79211-79244 +79213-79221 +79213-79215 +79214-79215 +79216-79221 +79217-79221 +79219-79221 +79220-79221 +79222-79244 +79222-79225 +79224-79225 +79226-79244 +79227-79244 +79228-79244 +79231-79244 +79231-79237 +79231 +79232-79237 +79233-79237 +79234-79235 +79236-79237 +79238-79244 +79239-79244 +79241-79244 +79242-79244 +79243-79244 +79245-79262 +79245-79262 +79247-79262 +79247 +79250-79262 +79251-79262 +79252-79255 +79253-79255 +79254-79255 +79256-79258 +79257-79258 +79259-79262 +79260-79262 +79261-79262 +79263-79284 +79263-79284 +79264-79284 +79264-79271 +79265-79271 +79266-79271 +79267-79271 +79268-79271 +79269-79271 +79270-79271 +79272-79284 +79272-79273 +79274-79284 +79275-79284 +79275 +79276-79277 +79277 +79278-79284 +79279-79284 +79280-79284 +79281-79284 +79282-79284 +79283-79284 +79285-79296 +79285-79296 +79286-79296 +79287-79288 +79289-79296 +79289 +79290-79296 +79291-79296 +79292-79293 +79297-79320 +79297-79320 +79298-79320 +79298-79303 +79300-79303 +79301-79303 +79302-79303 +79304-79320 +79305-79320 +79306-79308 +79307-79308 +79309-79320 +79310-79320 +79310-79315 +79311-79313 +79312-79313 +79314-79315 +79316-79320 +79317-79320 +79319-79320 +79321-79353 +79321-79353 +79322-79353 +79322-79333 +79322-79323 +79324-79333 +79325-79333 +79325-79327 +79326-79327 +79328-79333 +79329-79333 +79331-79333 +79332-79333 +79334-79353 +79335-79336 +79337-79341 +79339-79341 +79340-79341 +79342-79345 +79343-79345 +79346-79353 +79347-79353 +79348-79353 +79348-79350 +79349-79350 +79354-79374 +79354-79374 +79355-79374 +79355-79359 +79356-79359 +79358-79359 +79360-79374 +79361-79364 +79362-79364 +79363-79364 +79363 +79365-79366 +79367-79374 +79368-79374 +79368-79372 +79368-79371 +79369-79371 +79370-79371 +79375-79392 +79375-79392 +79376-79392 +79376 +79377-79378 +79379-79381 +79380-79381 +79383-79392 +79384-79392 +79384-79386 +79385-79386 +79387-79392 +79388-79392 +79388-79390 +79388-79389 +79393-79403 +79393-79403 +79394-79403 +79394 +79395-79396 +79399-79403 +79401-79403 +79404-79407 +79404-79407 +79405-79407 +79407 +79408-79418 +79408-79418 +79409-79418 +79410-79411 +79412-79418 +79413-79414 +79415-79417 +79415-79416 +79419-79426 +79419-79426 +79420-79426 +79420-79421 +79423-79426 +79424-79426 +79427-79435 +79427-79435 +79428-79435 +79430-79431 +79432-79435 +79433-79435 +79434-79435 +79436-79449 +79436-79449 +79437-79449 +79437-79439 +79438-79439 +79441-79449 +79441 +79442-79449 +79442-79444 +79443-79444 +79445-79449 +79446-79449 +79447-79449 +79448-79449 +79450-79480 +79450-79480 +79451-79480 +79451-79464 +79451-79452 +79453-79462 +79454-79462 +79455-79462 +79455-79456 +79457-79462 +79458-79462 +79460-79462 +79461-79462 +79465-79480 +79466-79480 +79466-79473 +79467-79473 +79468-79473 +79468-79469 +79470-79473 +79471-79473 +79472-79473 +79474-79480 +79475-79480 +79475-79477 +79476-79477 +79479-79480 +79481-79500 +79481-79500 +79482-79500 +79482-79483 +79484-79486 +79485-79486 +79488-79500 +79488-79489 +79488 +79489 +79490-79500 +79491-79493 +79492-79493 +79495-79496 +79497-79500 +79498-79500 +79499-79500 +79501-79512 +79501-79512 +79502-79512 +79502-79504 +79502-79503 +79506-79508 +79507-79508 +79509-79512 +79510-79512 +79511-79512 +79513-79538 +79513-79538 +79514-79515 +79516-79517 +79519-79538 +79519-79525 +79519-79520 +79522-79523 +79524-79525 +79524-79525 +79525 +79526-79538 +79526-79533 +79526-79527 +79529-79533 +79531-79533 +79532-79533 +79534-79538 +79535-79538 +79535 +79537-79538 +79539-79547 +79539-79547 +79540-79547 +79540-79541 +79541 +79543-79547 +79543-79546 +79544-79546 +79545-79546 +79548-79567 +79548-79567 +79549-79567 +79550-79551 +79552-79567 +79552-79557 +79554 +79555-79557 +79556-79557 +79558-79567 +79559-79567 +79560-79567 +79561-79567 +79561-79564 +79562-79564 +79563-79564 +79568-79598 +79568-79598 +79569-79598 +79569-79570 +79571-79581 +79572-79581 +79573-79581 +79573-79577 +79573-79575 +79574-79575 +79578-79581 +79579-79581 +79579-79580 +79583-79585 +79584-79585 +79586-79598 +79586-79587 +79586 +79587 +79588-79598 +79588-79592 +79588-79590 +79591-79592 +79591-79592 +79593-79598 +79593-79597 +79594-79597 +79595-79597 +79596-79597 +79599-79627 +79599-79627 +79600-79627 +79600-79612 +79600-79602 +79603-79612 +79603-79608 +79604-79608 +79605-79608 +79606-79608 +79607-79608 +79609-79612 +79610-79612 +79611-79612 +79613-79627 +79614-79627 +79614-79622 +79616-79622 +79618-79622 +79619-79620 +79621-79622 +79623-79627 +79624-79627 +79626-79627 +79628-79656 +79628-79656 +79629-79656 +79629-79631 +79630-79631 +79632-79656 +79633-79656 +79633 +79634-79640 +79635-79640 +79636-79640 +79637-79640 +79638-79640 +79639-79640 +79642-79656 +79643-79656 +79643-79649 +79643-79644 +79646-79649 +79647-79649 +79647-79648 +79650-79656 +79651-79656 +79652-79656 +79652-79654 +79655-79656 +79656 +79657-79683 +79657-79683 +79658-79683 +79658-79660 +79658-79659 +79661-79662 +79663-79669 +79663 +79664-79669 +79665-79669 +79666-79667 +79668-79669 +79671-79683 +79671-79678 +79671-79672 +79673 +79676-79678 +79677-79678 +79679-79683 +79680-79683 +79681-79683 +79682-79683 +79684-79708 +79684-79708 +79685-79708 +79685-79687 +79686-79687 +79686 +79688-79689 +79690-79691 +79693-79708 +79693 +79694-79708 +79695-79708 +79695-79701 +79696-79701 +79697-79699 +79698-79699 +79700-79701 +79702-79708 +79704-79708 +79705-79707 +79706-79707 +79709-79727 +79709-79727 +79710-79727 +79710-79711 +79712-79727 +79712-79713 +79714-79715 +79718-79727 +79719-79727 +79719-79722 +79719-79720 +79721-79722 +79723-79727 +79724-79727 +79726-79727 +79728-79754 +79728-79754 +79729-79754 +79730-79731 +79732-79754 +79732-79736 +79733-79736 +79733-79735 +79734-79735 +79737-79754 +79737-79744 +79738-79743 +79739-79743 +79739-79740 +79741-79743 +79742-79743 +79747-79754 +79750-79754 +79751-79754 +79753-79754 +79755-79786 +79755-79786 +79756-79786 +79756-79775 +79759-79760 +79761-79763 +79762-79763 +79764-79775 +79765-79775 +79767-79768 +79769-79775 +79770-79775 +79771-79775 +79773-79775 +79774-79775 +79776-79786 +79777-79786 +79778-79781 +79779-79781 +79780-79781 +79784-79786 +79785-79786 +79787-79804 +79787-79804 +79788-79804 +79788-79792 +79789-79792 +79790-79792 +79791-79792 +79793-79795 +79794-79795 +79796-79801 +79796 +79797-79801 +79798-79801 +79799-79801 +79800-79801 +79803-79804 +79805-79824 +79805-79824 +79806-79824 +79806-79807 +79808-79811 +79809-79811 +79810-79811 +79813-79824 +79813-79819 +79813-79815 +79813-79814 +79817-79819 +79818-79819 +79820-79824 +79821-79824 +79822-79824 +79825-79851 +79825-79851 +79826-79851 +79827-79851 +79827-79833 +79828-79829 +79831-79833 +79832-79833 +79834-79851 +79835-79851 +79836-79851 +79836-79838 +79836-79837 +79839-79840 +79842-79851 +79842-79844 +79843-79844 +79846-79847 +79848-79851 +79849-79851 +79852-79869 +79852-79869 +79853-79869 +79853-79854 +79855-79862 +79855-79858 +79856-79858 +79857-79858 +79859-79862 +79860-79862 +79861-79862 +79864-79869 +79866-79869 +79866-79868 +79870-79893 +79870-79893 +79871-79893 +79872-79893 +79873-79893 +79873-79874 +79876-79893 +79877-79893 +79879-79893 +79880-79893 +79881-79882 +79884-79886 +79885-79886 +79887-79893 +79888-79893 +79889-79893 +79892-79893 +79894-79926 +79894-79926 +79895-79926 +79899-79926 +79900-79926 +79900-79917 +79902-79917 +79902-79906 +79902-79903 +79904-79906 +79905-79906 +79907-79917 +79909-79917 +79910-79913 +79910-79911 +79912-79913 +79914-79917 +79915-79917 +79918-79926 +79919-79926 +79922-79926 +79923-79926 +79924-79926 +79924-79925 +79927-79941 +79927-79941 +79928-79941 +79929-79941 +79929-79930 +79932-79933 +79934-79941 +79935-79941 +79937-79941 +79938-79941 +79940-79941 +79942-79984 +79942-79984 +79943-79984 +79943-79978 +79943-79947 +79944-79947 +79944-79945 +79946-79947 +79949-79978 +79949-79966 +79950-79957 +79950-79951 +79952-79954 +79953-79954 +79955-79957 +79956-79957 +79958-79966 +79959-79966 +79960-79961 +79962-79966 +79963-79966 +79964-79966 +79965-79966 +79967-79978 +79968-79978 +79970-79978 +79971-79978 +79971-79973 +79972-79973 +79975-79978 +79976-79978 +79977-79978 +79979-79984 +79980-79984 +79981-79984 +79982-79984 +79982-79983 +79985-79991 +79985-79991 +79985-79990 +79985-79986 +79987-79990 +79987-79989 +79988-79989 +79991 +79992-80012 +79992-80012 +79992-79994 +79992-79993 +79995-80003 +79995-79998 +79996-79998 +79997-79998 +79999-80003 +80000-80003 +80001-80003 +80002-80003 +80004-80007 +80005-80007 +80006-80007 +80009-80012 +80010-80012 +80011-80012 +80013-80026 +80013-80026 +80014-80026 +80014-80021 +80015-80021 +80016-80021 +80017-80021 +80018-80021 +80018-80019 +80023-80026 +80024-80026 +80025-80026 +80027-80042 +80027-80042 +80028-80042 +80028-80034 +80030-80034 +80031-80034 +80032-80034 +80033-80034 +80035-80042 +80036-80042 +80036-80041 +80037-80041 +80037-80040 +80038-80040 +80039-80040 +80043-80063 +80043-80063 +80044-80063 +80044-80050 +80046-80050 +80047-80049 +80048-80049 +80053-80054 +80055-80063 +80056-80058 +80057-80058 +80059-80063 +80060-80061 +80062-80063 +80064-80080 +80064-80080 +80065-80080 +80066-80080 +80066-80067 +80068-80071 +80069-80071 +80070-80071 +80072-80074 +80073-80074 +80076-80077 +80078-80080 +80079-80080 +80081-80109 +80081-80109 +80082-80109 +80082-80083 +80084-80089 +80085-80089 +80085-80086 +80088-80089 +80091-80093 +80092-80093 +80094-80109 +80095-80104 +80095-80098 +80096-80098 +80097-80098 +80099-80104 +80100-80104 +80101-80102 +80103-80104 +80106-80108 +80107-80108 +80110-80139 +80110-80139 +80111-80139 +80111-80131 +80111-80122 +80111 +80112-80117 +80113-80117 +80114-80117 +80114-80116 +80115-80116 +80118-80122 +80119-80122 +80120-80122 +80121-80122 +80121-80122 +80124-80131 +80124-80125 +80126-80131 +80127-80131 +80127-80130 +80128-80130 +80129-80130 +80132-80139 +80133-80139 +80133-80137 +80134-80137 +80135-80137 +80136-80137 +80140-80161 +80140-80161 +80141-80161 +80141-80143 +80142-80143 +80145-80147 +80145-80146 +80148-80154 +80149-80154 +80149-80150 +80151-80154 +80152-80154 +80152-80153 +80155-80161 +80157-80158 +80159-80161 +80160-80161 +80162-80194 +80162-80194 +80163-80194 +80163-80164 +80166 +80167-80168 +80169-80194 +80170-80194 +80170-80184 +80170-80174 +80170-80171 +80173-80174 +80175-80184 +80176-80184 +80178-80180 +80178-80179 +80181-80184 +80182-80184 +80183-80184 +80185-80192 +80185-80188 +80185-80186 +80187-80188 +80190-80192 +80191-80192 +80193-80194 +80193-80194 +80195-80209 +80195-80209 +80196-80209 +80196-80201 +80197-80201 +80198-80199 +80202-80209 +80203-80209 +80207-80209 +80208-80209 +80210-80253 +80210-80253 +80211-80253 +80212-80253 +80212-80240 +80212-80214 +80212-80213 +80215-80231 +80216-80225 +80217-80225 +80219-80225 +80220-80225 +80220-80221 +80222-80225 +80223-80225 +80224-80225 +80226-80231 +80227-80231 +80228-80231 +80229-80231 +80229-80230 +80232-80237 +80234-80236 +80234-80235 +80238-80240 +80241-80242 +80245-80248 +80246-80248 +80247-80248 +80249-80253 +80250-80253 +80254-80262 +80254-80262 +80255-80262 +80256-80258 +80257-80258 +80259-80262 +80260-80262 +80263-80333 +80263-80333 +80264-80333 +80264-80271 +80265-80266 +80267-80271 +80269-80270 +80271 +80272-80333 +80272-80281 +80272-80280 +80272-80274 +80273-80274 +80278-80280 +80278-80279 +80283-80285 +80284-80285 +80287-80333 +80289-80333 +80289 +80291-80333 +80291-80302 +80295-80296 +80297-80302 +80298-80302 +80300-80302 +80301-80302 +80303-80333 +80304-80333 +80304-80324 +80305-80312 +80305-80308 +80306-80307 +80309-80312 +80310-80312 +80310-80311 +80313-80324 +80313-80316 +80314-80316 +80315-80316 +80317-80320 +80318-80320 +80319-80320 +80321-80324 +80322-80324 +80323-80324 +80325-80333 +80326-80333 +80327-80333 +80329-80333 +80330-80333 +80334-80378 +80334-80378 +80335-80378 +80338-80378 +80339-80378 +80339-80344 +80340-80344 +80341-80344 +80342-80344 +80347-80349 +80348-80349 +80350-80361 +80351-80361 +80352-80361 +80352-80355 +80353-80355 +80354-80355 +80356-80361 +80357-80361 +80358-80361 +80358-80360 +80359-80360 +80362-80378 +80363-80378 +80363-80371 +80363-80366 +80364-80366 +80365-80366 +80367-80371 +80368-80370 +80369-80370 +80372-80378 +80373 +80374-80378 +80375-80378 +80375-80376 +80377-80378 +80379-80394 +80379-80394 +80379-80380 +80381-80382 +80384-80394 +80384-80385 +80387-80392 +80388-80392 +80388-80389 +80390-80392 +80391-80392 +80393-80394 +80395-80421 +80395-80421 +80396-80421 +80396-80405 +80396-80398 +80397-80398 +80399-80404 +80401-80404 +80402-80404 +80403-80404 +80406-80407 +80407 +80408-80421 +80408-80409 +80411-80421 +80413-80415 +80414-80415 +80416-80421 +80417-80418 +80420-80421 +80422-80439 +80422-80439 +80423-80439 +80423-80427 +80423-80427 +80424-80427 +80424-80426 +80425-80426 +80428-80434 +80428-80433 +80429-80430 +80431-80433 +80432-80433 +80436-80439 +80438-80439 +80440-80470 +80440-80470 +80441-80470 +80441-80451 +80441-80442 +80444-80451 +80444-80446 +80444-80445 +80447-80451 +80449-80451 +80450-80451 +80452-80470 +80453-80470 +80453-80470 +80454-80470 +80455-80470 +80456-80470 +80457-80470 +80457-80461 +80459-80461 +80459-80460 +80463-80470 +80463-80465 +80464-80465 +80469-80470 +80471-80507 +80471-80507 +80472-80507 +80474-80475 +80476-80481 +80478-80481 +80479-80481 +80480-80481 +80482-80491 +80483-80491 +80483-80487 +80484-80487 +80484-80486 +80485-80486 +80488-80491 +80489-80491 +80490-80491 +80492-80507 +80493-80494 +80495-80507 +80495-80496 +80497-80507 +80498-80507 +80498-80499 +80500-80507 +80501-80507 +80502-80507 +80502-80505 +80503-80505 +80504-80505 +80508-80533 +80508-80533 +80509-80533 +80509-80524 +80509-80511 +80510-80511 +80512-80513 +80514-80521 +80515-80521 +80516-80521 +80516-80519 +80517-80519 +80518-80519 +80520-80521 +80523-80524 +80525-80533 +80526-80533 +80528-80533 +80529-80533 +80530-80533 +80530-80532 +80531-80532 +80534-80569 +80534-80569 +80535-80569 +80535-80545 +80537-80545 +80538-80545 +80539-80540 +80541-80545 +80542-80545 +80542-80543 +80544-80545 +80545 +80546-80547 +80548-80549 +80551-80559 +80551-80554 +80551-80553 +80552-80553 +80555-80559 +80556-80559 +80556-80557 +80560-80569 +80563-80569 +80564-80569 +80567-80569 +80568-80569 +80570-80576 +80570-80576 +80571-80576 +80571-80574 +80577-80597 +80577-80597 +80578-80597 +80578-80585 +80578-80579 +80580-80585 +80581-80582 +80583-80585 +80584-80585 +80586-80597 +80587-80597 +80587-80591 +80588-80591 +80590-80591 +80592-80593 +80595-80596 +80597 +80598-80642 +80598-80642 +80599-80642 +80599-80610 +80600-80602 +80601-80602 +80603-80605 +80604-80605 +80607-80608 +80609-80610 +80611-80642 +80612-80642 +80612-80623 +80614-80620 +80614-80615 +80616-80620 +80617-80620 +80618-80620 +80619-80620 +80621-80623 +80622-80623 +80624-80642 +80625-80642 +80627-80630 +80629-80630 +80631-80642 +80632-80642 +80634-80635 +80636-80642 +80638-80642 +80640-80642 +80641-80642 +80643-80658 +80643-80658 +80644-80658 +80645-80658 +80645-80646 +80648-80658 +80648-80652 +80649-80650 +80651-80652 +80653-80658 +80654-80658 +80656-80658 +80656-80657 +80659-80674 +80659-80674 +80660-80674 +80661-80674 +80661-80664 +80662-80664 +80662-80663 +80665 +80668-80674 +80669-80674 +80669-80670 +80672-80674 +80673-80674 +80675-80697 +80675-80697 +80676-80697 +80676-80684 +80677-80678 +80679-80684 +80680-80684 +80681-80684 +80682-80684 +80683-80684 +80685-80687 +80686-80687 +80688-80693 +80688-80689 +80691-80693 +80692-80693 +80695-80697 +80695-80696 +80698-80735 +80698-80735 +80699-80735 +80699-80716 +80699-80700 +80701-80716 +80703-80707 +80704-80707 +80704-80706 +80704-80705 +80708-80716 +80708-80711 +80708-80710 +80709-80710 +80713-80716 +80713-80714 +80717-80735 +80717-80718 +80720-80735 +80721-80735 +80721-80733 +80721-80726 +80722-80726 +80723-80726 +80724-80726 +80725-80726 +80727-80730 +80728-80730 +80729-80730 +80731-80733 +80732-80733 +80736-80757 +80736-80757 +80737-80757 +80737-80738 +80739-80743 +80740-80743 +80740-80741 +80744-80746 +80745-80746 +80748-80757 +80749-80757 +80749-80751 +80749-80750 +80753-80754 +80756-80757 +80758-80771 +80758-80771 +80759-80771 +80760-80761 +80762-80771 +80762-80767 +80762-80765 +80763-80765 +80764-80765 +80766-80767 +80768-80771 +80768-80770 +80772-80779 +80772-80779 +80772-80774 +80775-80779 +80776-80779 +80776-80777 +80780-80805 +80780-80805 +80781-80805 +80781-80792 +80782-80792 +80782-80788 +80783-80788 +80783 +80784-80788 +80785-80788 +80785-80787 +80785-80786 +80789-80792 +80791-80792 +80792 +80793-80805 +80794-80805 +80794-80800 +80795-80800 +80797-80800 +80801-80805 +80803-80805 +80806-80807 +80806-80807 +80808-80820 +80808-80820 +80809-80810 +80811-80814 +80812-80814 +80813-80814 +80816-80820 +80816-80817 +80818-80820 +80818-80819 +80821-80835 +80821-80835 +80822-80835 +80822-80824 +80822-80823 +80825-80835 +80825-80829 +80825-80827 +80826-80827 +80828-80829 +80831-80832 +80833-80835 +80834-80835 +80836-80903 +80836-80903 +80837-80903 +80837-80841 +80838-80841 +80838-80839 +80842-80903 +80842-80843 +80844-80845 +80847-80850 +80848-80850 +80849-80850 +80851-80903 +80852-80903 +80852-80858 +80852-80853 +80855-80858 +80855-80857 +80856-80857 +80859-80876 +80859-80860 +80861-80864 +80863-80864 +80866-80872 +80866-80867 +80868-80872 +80869-80872 +80870-80872 +80871-80872 +80873-80876 +80874-80875 +80877-80879 +80877-80878 +80881-80903 +80885-80903 +80885-80887 +80886-80887 +80888-80903 +80889-80903 +80890-80903 +80890-80896 +80890-80891 +80891 +80892-80893 +80895-80896 +80897-80903 +80898-80903 +80898-80899 +80901-80903 +80902-80903 +80904-80951 +80904-80951 +80905-80951 +80905-80906 +80907-80919 +80907-80909 +80907-80908 +80910-80915 +80910-80911 +80913-80915 +80914-80915 +80917-80919 +80918-80919 +80920-80951 +80920-80931 +80920-80921 +80922 +80923-80924 +80926-80931 +80927-80931 +80928-80931 +80928-80930 +80932-80951 +80933-80951 +80933-80941 +80933-80934 +80935-80938 +80936-80938 +80937-80938 +80940-80941 +80942-80951 +80943-80951 +80943-80951 +80944-80951 +80944-80946 +80944-80945 +80946 +80947-80951 +80947-80948 +80950-80951 +80952-80968 +80952-80968 +80953-80968 +80954-80958 +80955-80958 +80956-80958 +80956-80957 +80960-80968 +80961-80968 +80962-80968 +80962-80964 +80963-80964 +80965-80968 +80966-80968 +80967-80968 +80969-80988 +80969-80988 +80970-80988 +80970-80979 +80970-80971 +80973-80979 +80975-80979 +80976-80979 +80977-80979 +80977-80978 +80980-80988 +80981-80988 +80983-80988 +80984-80988 +80987-80988 +80989-80999 +80989-80999 +80990-80999 +80990-80993 +80991-80993 +80992-80993 +80994-80999 +80995-80996 +80997-80999 +80997-80998 +81000-81003 +81000-81003 +81001-81003 +81004-81037 +81004-81037 +81005-81037 +81005-81034 +81005-81030 +81005-81015 +81005-81006 +81008-81012 +81008-81009 +81010-81012 +81011-81012 +81013-81015 +81014-81015 +81016-81030 +81017-81030 +81018-81020 +81019-81020 +81021-81030 +81022-81030 +81022-81023 +81024-81030 +81025-81030 +81025-81028 +81026-81028 +81027-81028 +81029-81030 +81031-81034 +81032-81034 +81033-81034 +81035-81037 +81036-81037 +81038-81071 +81038-81071 +81039-81071 +81040-81041 +81042-81071 +81042-81049 +81042-81049 +81042-81043 +81044-81049 +81045-81049 +81046-81049 +81047-81049 +81047-81048 +81051-81071 +81052-81071 +81052-81053 +81054-81058 +81055-81058 +81056-81058 +81057-81058 +81061-81065 +81062-81065 +81062-81063 +81064-81065 +81066-81071 +81067-81071 +81069-81071 +81072-81096 +81072-81096 +81073-81096 +81073-81079 +81075-81079 +81075-81077 +81076-81077 +81080-81096 +81081-81096 +81081-81085 +81081-81082 +81084-81085 +81086-81087 +81087 +81088-81096 +81088-81089 +81090-81094 +81090-81091 +81093-81094 +81097-81114 +81097-81114 +81098-81114 +81098-81107 +81100-81105 +81100-81101 +81102-81105 +81103-81105 +81104-81105 +81106-81107 +81106-81107 +81108-81114 +81109-81114 +81109-81111 +81109-81110 +81112-81114 +81113-81114 +81115-81127 +81115-81127 +81116-81127 +81119-81127 +81119-81120 +81122-81126 +81123-81126 +81124-81126 +81124-81125 +81128-81138 +81128-81138 +81129-81138 +81130-81132 +81131-81132 +81134-81138 +81136-81138 +81136-81137 +81139-81178 +81139-81178 +81140-81141 +81142-81144 +81143-81144 +81146-81178 +81146-81173 +81146-81147 +81146-81147 +81148-81161 +81148-81153 +81149-81153 +81150-81153 +81152-81153 +81157-81161 +81157-81160 +81157-81158 +81165-81173 +81166-81173 +81167-81173 +81168-81173 +81168-81169 +81170-81173 +81170-81171 +81172-81173 +81174-81178 +81175-81178 +81176-81178 +81179-81215 +81179-81215 +81180-81215 +81181-81215 +81181-81196 +81181-81185 +81182-81185 +81182-81183 +81184-81185 +81186-81196 +81187-81196 +81187-81188 +81190-81196 +81190-81193 +81191-81193 +81192-81193 +81194-81196 +81195-81196 +81198-81199 +81200-81202 +81203-81215 +81204-81215 +81205-81215 +81206-81215 +81207-81215 +81207-81213 +81208-81213 +81209-81213 +81210-81213 +81211-81213 +81212-81213 +81216-81244 +81216-81244 +81217-81244 +81218-81229 +81219-81229 +81220-81229 +81221-81229 +81221-81228 +81221-81224 +81222-81224 +81223-81224 +81226-81228 +81227-81228 +81231 +81232-81244 +81232-81234 +81232-81233 +81235-81237 +81236-81237 +81238-81243 +81238-81239 +81240-81242 +81241-81242 +81245-81251 +81245-81251 +81245-81247 +81246-81247 +81249-81250 +81251 +81252-81261 +81252-81261 +81255-81256 +81257-81261 +81258-81261 +81258-81259 +81262-81356 +81262-81356 +81263-81356 +81264-81356 +81266-81356 +81268-81276 +81268-81273 +81269-81273 +81270-81273 +81271-81273 +81272-81273 +81274-81275 +81277-81356 +81277-81322 +81277-81281 +81280-81281 +81282-81322 +81283-81322 +81283-81296 +81284-81296 +81284-81286 +81285-81286 +81288-81289 +81291-81296 +81291-81295 +81292-81295 +81292-81294 +81293-81294 +81297-81311 +81298-81311 +81298-81301 +81298-81299 +81300-81301 +81302-81311 +81303-81311 +81303-81309 +81303-81306 +81304-81306 +81305-81306 +81311 +81312-81322 +81313-81322 +81313-81315 +81317-81322 +81318-81322 +81319-81322 +81320-81322 +81321-81322 +81323-81355 +81323-81335 +81323-81324 +81326-81328 +81327-81328 +81329-81335 +81330-81335 +81330-81332 +81331-81332 +81333-81335 +81334-81335 +81336-81337 +81338-81340 +81339-81340 +81342-81355 +81343-81347 +81344-81347 +81345-81347 +81346-81347 +81350-81355 +81351-81355 +81352-81355 +81353-81355 +81353-81354 +81356 +81357-81381 +81357-81381 +81358-81381 +81358-81363 +81358-81359 +81361-81363 +81362-81363 +81364-81381 +81365-81381 +81367-81368 +81369-81371 +81369-81370 +81372-81381 +81372-81373 +81372 +81373 +81374-81381 +81374-81376 +81377-81381 +81379-81381 +81379-81380 +81382-81387 +81382-81387 +81383-81387 +81385-81387 +81387 +81388-81397 +81388-81397 +81389-81397 +81389-81390 +81392-81397 +81394-81397 +81395-81397 +81398-81405 +81398-81405 +81399-81405 +81399 +81400-81405 +81401-81405 +81402-81405 +81403-81405 +81404-81405 +81406-81468 +81406-81468 +81407-81468 +81407-81408 +81411-81423 +81413-81423 +81414-81423 +81415-81423 +81416-81423 +81416-81419 +81417-81419 +81420-81423 +81421-81423 +81424-81432 +81426-81432 +81426-81428 +81427-81428 +81429-81432 +81430-81432 +81431-81432 +81433-81468 +81433-81434 +81438-81468 +81439-81440 +81441-81454 +81442-81454 +81443-81454 +81443-81446 +81443-81444 +81445-81446 +81447-81454 +81448-81454 +81448-81451 +81449-81451 +81450-81451 +81452-81454 +81453-81454 +81455-81468 +81456-81468 +81458-81468 +81458-81459 +81460-81468 +81461-81468 +81462-81468 +81463-81468 +81464-81468 +81465-81468 +81466-81468 +81467-81468 +81469-81506 +81469-81506 +81470-81506 +81470-81471 +81470-81471 +81473-81477 +81475-81477 +81476-81477 +81479-81506 +81479-81494 +81479-81485 +81479-81483 +81480-81483 +81480-81482 +81481-81482 +81484-81485 +81486-81494 +81486-81491 +81487-81491 +81488-81491 +81489-81491 +81490-81491 +81492-81494 +81493-81494 +81496-81506 +81496 +81497-81506 +81498-81506 +81499-81501 +81500-81501 +81502-81506 +81502-81505 +81502-81504 +81503-81504 +81507-81516 +81507-81516 +81507-81508 +81510-81514 +81512-81514 +81513-81514 +81516 +81517-81563 +81517-81563 +81518-81563 +81518-81523 +81519-81523 +81520-81523 +81521-81523 +81522-81523 +81524-81527 +81525-81527 +81525-81526 +81529-81533 +81530-81533 +81530-81531 +81532-81533 +81534-81563 +81536-81545 +81537-81545 +81537-81539 +81539 +81540-81544 +81540-81542 +81541-81542 +81543-81544 +81546-81563 +81546-81549 +81547-81549 +81548-81549 +81550-81563 +81550-81554 +81551-81554 +81552-81554 +81553-81554 +81555-81563 +81556-81563 +81558-81563 +81558-81560 +81559-81560 +81561-81563 +81562-81563 +81564-81582 +81564-81582 +81565-81582 +81565-81567 +81568-81569 +81570-81572 +81571-81572 +81574-81582 +81574-81575 +81575 +81576-81582 +81576-81578 +81577-81578 +81580-81581 +81583-81621 +81583-81621 +81584-81621 +81584-81585 +81587-81621 +81587-81596 +81587-81588 +81587-81588 +81590 +81592-81596 +81592-81595 +81592-81594 +81593-81594 +81597-81621 +81598-81621 +81599-81600 +81601-81607 +81602-81607 +81603-81607 +81603-81604 +81606 +81608-81621 +81609-81621 +81609-81611 +81615-81621 +81616-81621 +81617-81618 +81619-81620 +81622-81626 +81622-81626 +81622-81623 +81622-81623 +81625-81626 +81627-81629 +81627-81629 +81628-81629 +81629 +81630-81641 +81630-81641 +81631-81641 +81631-81635 +81631-81632 +81633-81635 +81634-81635 +81636-81641 +81636-81637 +81640-81641 +81642-81674 +81642-81674 +81643-81674 +81643-81644 +81645-81674 +81646-81674 +81647-81648 +81649-81654 +81649-81651 +81650-81651 +81652-81654 +81653-81654 +81655-81674 +81655-81664 +81655-81656 +81659-81664 +81660-81664 +81661-81664 +81662-81664 +81666-81670 +81667-81670 +81668-81669 +81671-81674 +81672-81674 +81672-81673 +81675-81704 +81675-81704 +81675-81688 +81676-81688 +81676-81681 +81677-81681 +81677-81678 +81679-81681 +81680-81681 +81682-81688 +81683-81688 +81683-81684 +81685-81688 +81686-81688 +81687-81688 +81689-81704 +81690-81704 +81690 +81692-81693 +81694-81704 +81695-81704 +81696-81704 +81696-81700 +81697-81700 +81697-81699 +81698-81699 +81702-81704 +81702-81703 +81705-81718 +81705-81718 +81706-81718 +81707-81708 +81710-81718 +81710-81714 +81710 +81712-81714 +81712-81713 +81715-81718 +81716-81718 +81719-81740 +81719-81740 +81720-81740 +81720-81727 +81721-81727 +81722-81727 +81723-81727 +81725-81727 +81726-81727 +81728-81740 +81729-81735 +81729-81731 +81730-81731 +81732-81735 +81733-81735 +81734-81735 +81736-81740 +81736-81738 +81737-81738 +81739-81740 +81741-81759 +81741-81759 +81742-81759 +81742-81753 +81742-81752 +81743-81752 +81743-81744 +81745-81752 +81746-81752 +81747-81752 +81748-81752 +81749-81752 +81749-81751 +81750-81751 +81754-81759 +81755-81756 +81757-81759 +81758-81759 +81760-81779 +81760-81779 +81760-81765 +81761-81765 +81761-81762 +81764-81765 +81766-81779 +81767-81779 +81767-81768 +81769-81772 +81770-81771 +81774-81779 +81774-81777 +81774-81776 +81775-81776 +81780-81805 +81780-81805 +81780-81790 +81780-81781 +81783-81784 +81785-81790 +81786-81790 +81787-81790 +81787-81788 +81791-81805 +81792-81805 +81792-81800 +81792-81799 +81792-81793 +81794-81799 +81795-81799 +81796-81799 +81797-81799 +81798-81799 +81802-81805 +81803-81805 +81804-81805 +81806-81819 +81806-81819 +81806-81807 +81808-81815 +81810-81815 +81810-81811 +81812-81815 +81813-81815 +81814-81815 +81818-81819 +81820-81856 +81820-81856 +81821-81856 +81821-81830 +81821-81824 +81821-81823 +81822-81823 +81825-81830 +81826-81830 +81828-81830 +81829-81830 +81831-81856 +81831-81835 +81834-81835 +81836-81856 +81836-81840 +81837-81838 +81839-81840 +81841-81856 +81842-81856 +81842-81844 +81846-81856 +81847-81856 +81847-81851 +81847-81848 +81849-81851 +81850-81851 +81852-81856 +81852-81853 +81854-81855 +81857-81902 +81857-81902 +81858-81902 +81858-81873 +81858-81860 +81858-81859 +81861-81873 +81862-81873 +81865-81866 +81867-81873 +81868-81873 +81869-81873 +81869-81871 +81870-81871 +81874-81902 +81875-81876 +81877-81902 +81879-81902 +81879 +81881-81902 +81882-81902 +81882-81899 +81882-81898 +81883-81898 +81883-81886 +81884-81886 +81885-81886 +81887-81898 +81887-81888 +81889-81893 +81889-81890 +81891-81893 +81892-81893 +81895-81898 +81896-81898 +81897-81898 +81901-81902 +81903-81917 +81903-81917 +81904-81917 +81904-81912 +81904-81905 +81906-81910 +81906-81907 +81908-81910 +81909-81910 +81913-81917 +81914-81917 +81914-81917 +81915-81917 +81915-81916 +81918-81946 +81918-81946 +81919-81946 +81919-81924 +81920-81921 +81923-81924 +81925-81946 +81925-81926 +81929-81930 +81931-81946 +81932-81946 +81933-81946 +81934-81946 +81934-81945 +81935-81945 +81936-81945 +81937-81945 +81937-81939 +81938-81939 +81940-81945 +81941-81945 +81941-81942 +81943-81945 +81944-81945 +81947-81958 +81947-81958 +81948-81958 +81948-81949 +81950-81958 +81950-81953 +81951-81953 +81951-81952 +81954 +81957-81958 +81959-81970 +81959-81970 +81960-81970 +81960-81962 +81961-81962 +81964-81965 +81966-81970 +81966-81967 +81968-81970 +81969-81970 +81971-81982 +81971-81982 +81972-81982 +81972-81980 +81972-81974 +81973-81974 +81975-81980 +81976-81980 +81978-81980 +81979-81980 +81981 +81983-82013 +81983-82013 +81984-82013 +81984-82001 +81984-81988 +81985-81988 +81985-81986 +81987-81988 +81991-81994 +81993-81994 +81995-82001 +81995-81996 +81999-82001 +82000-82001 +82002-82013 +82003-82013 +82003-82008 +82003 +82004-82008 +82005-82008 +82005-82007 +82006-82007 +82009-82011 +82010-82011 +82014-82030 +82014-82030 +82015-82030 +82015-82017 +82018-82030 +82018-82021 +82018-82019 +82022-82030 +82023-82030 +82023-82024 +82026-82029 +82027-82029 +82028-82029 +82031-82051 +82031-82051 +82032-82051 +82032-82044 +82032-82039 +82032-82035 +82032-82033 +82034-82035 +82037-82039 +82038-82039 +82040-82044 +82041-82044 +82041-82043 +82042-82043 +82047-82051 +82047-82048 +82049-82051 +82050-82051 +82052-82082 +82052-82082 +82053-82082 +82053-82055 +82053-82054 +82056-82082 +82057 +82058-82059 +82060-82062 +82061-82062 +82064-82082 +82064-82065 +82064-82065 +82067-82082 +82068-82082 +82068-82074 +82068-82069 +82072-82074 +82073-82074 +82075-82082 +82076-82082 +82077-82082 +82077-82079 +82077-82078 +82080-82082 +82081-82082 +82083-82098 +82083-82098 +82084-82098 +82084-82085 +82087-82088 +82089-82098 +82090-82098 +82090-82091 +82094-82095 +82096-82098 +82097-82098 +82099-82131 +82099-82131 +82100-82131 +82102-82104 +82103-82104 +82105-82112 +82105-82111 +82106-82111 +82106-82108 +82107-82108 +82109-82111 +82113-82131 +82114-82131 +82114-82116 +82116 +82117-82131 +82117-82120 +82117-82119 +82121-82131 +82122-82131 +82125-82126 +82127-82131 +82128-82131 +82129-82131 +82130-82131 +82132-82146 +82132-82146 +82133-82146 +82133-82134 +82134 +82135-82146 +82136-82146 +82137-82138 +82139-82146 +82140-82146 +82142-82146 +82143-82146 +82143-82144 +82147-82153 +82147-82153 +82148-82153 +82149-82153 +82149-82151 +82150-82151 +82154-82174 +82154-82174 +82155-82174 +82155-82158 +82156-82158 +82156-82157 +82159-82174 +82159-82163 +82161-82163 +82162-82163 +82164-82174 +82164-82167 +82165-82167 +82166-82167 +82169-82170 +82171-82174 +82172-82173 +82175-82188 +82175-82188 +82176-82188 +82176-82179 +82176 +82178-82179 +82180-82188 +82181-82188 +82181-82185 +82181-82182 +82183-82185 +82184-82185 +82187-82188 +82189-82204 +82189-82204 +82190-82204 +82190-82196 +82190 +82191-82196 +82192-82196 +82193-82195 +82194-82195 +82197-82201 +82197-82198 +82200-82201 +82203-82204 +82205-82245 +82205-82245 +82206-82245 +82206-82226 +82206-82212 +82206-82207 +82209-82212 +82210-82212 +82211-82212 +82213-82226 +82214-82226 +82215-82216 +82217-82219 +82218-82219 +82221-82226 +82222-82226 +82222-82225 +82222-82223 +82227-82245 +82228-82229 +82230-82234 +82230-82231 +82232-82234 +82233-82234 +82235-82245 +82235-82241 +82236-82241 +82239-82241 +82240-82241 +82242-82245 +82243 +82246-82257 +82246-82257 +82246-82253 +82248-82249 +82250-82253 +82251-82253 +82252-82253 +82254-82257 +82255-82257 +82256-82257 +82258-82278 +82258-82278 +82259-82278 +82259-82263 +82260-82263 +82263 +82265-82266 +82267-82269 +82270-82278 +82271-82278 +82271-82274 +82271-82272 +82277-82278 +82279-82298 +82279-82298 +82280-82298 +82280-82290 +82281-82283 +82284-82290 +82285-82290 +82286-82289 +82287-82289 +82288-82289 +82291-82298 +82292-82298 +82292-82294 +82292-82293 +82295-82297 +82296-82297 +82299-82313 +82299-82313 +82300-82313 +82300-82309 +82300-82304 +82300-82301 +82302-82304 +82303-82304 +82306-82307 +82308-82309 +82310-82313 +82311-82313 +82311 +82313 +82314-82321 +82314-82321 +82315-82321 +82315-82317 +82318-82319 +82322-82332 +82322-82332 +82323-82332 +82324-82329 +82325-82329 +82326-82329 +82327-82329 +82328-82329 +82330-82332 +82333-82344 +82333-82344 +82334-82344 +82334-82335 +82337-82338 +82339-82344 +82340-82341 +82342-82344 +82343-82344 +82345-82366 +82345-82366 +82346-82366 +82346-82348 +82347-82348 +82349-82366 +82349-82352 +82349-82350 +82353-82366 +82354-82366 +82354-82358 +82355-82358 +82355-82356 +82357-82358 +82359-82364 +82359-82363 +82359-82360 +82362-82363 +82366 +82367-82390 +82367-82390 +82368-82390 +82368-82380 +82368-82370 +82368-82369 +82372-82374 +82373-82374 +82375-82380 +82377-82380 +82378-82380 +82379-82380 +82381-82390 +82382-82390 +82382-82386 +82383-82384 +82385-82386 +82386 +82388-82390 +82389-82390 +82391-82412 +82391-82412 +82392-82412 +82392-82398 +82392-82395 +82393-82395 +82394-82395 +82397-82398 +82399-82412 +82400-82412 +82400-82405 +82401-82405 +82401-82402 +82403 +82406-82412 +82407-82412 +82407-82408 +82410-82412 +82411-82412 +82413-82425 +82413-82425 +82414-82425 +82414-82416 +82414-82415 +82418-82421 +82419-82421 +82419-82420 +82422-82425 +82423-82425 +82424 +82426-82462 +82426-82462 +82427-82462 +82427-82436 +82427-82428 +82429-82432 +82430-82432 +82431-82432 +82435-82436 +82437-82462 +82438-82462 +82439-82462 +82439-82447 +82439-82441 +82440-82441 +82441 +82442 +82444-82446 +82445-82446 +82448-82462 +82449-82462 +82449-82450 +82449-82450 +82451-82454 +82452-82454 +82453-82454 +82455-82462 +82456-82462 +82457-82462 +82458-82462 +82459-82462 +82460-82462 +82461-82462 +82463-82470 +82463-82470 +82464-82470 +82466-82470 +82468-82470 +82469-82470 +82471-82479 +82471-82479 +82472-82479 +82472-82474 +82472 +82476-82479 +82477-82478 +82480-82503 +82480-82503 +82481-82503 +82481-82488 +82481-82482 +82484-82487 +82485-82487 +82485-82486 +82489-82503 +82490-82503 +82490-82491 +82493-82494 +82495-82503 +82495-82499 +82496-82499 +82496-82497 +82498-82499 +82499 +82500-82503 +82501-82503 +82502-82503 +82504-82524 +82504-82524 +82505-82524 +82505-82515 +82505-82510 +82506-82507 +82508-82510 +82509-82510 +82511-82515 +82512-82515 +82513-82515 +82514-82515 +82517-82520 +82517-82519 +82518-82519 +82522-82524 +82523-82524 +82525-82555 +82525-82555 +82526-82555 +82526-82536 +82527-82536 +82528-82529 +82530-82536 +82531-82532 +82533-82536 +82534-82536 +82535-82536 +82537-82555 +82537-82538 +82540-82555 +82543-82555 +82543-82545 +82543-82544 +82546-82555 +82546-82551 +82547-82550 +82548-82550 +82549-82550 +82552-82553 +82556-82567 +82556-82567 +82557-82567 +82558-82567 +82559-82564 +82560-82561 +82562-82564 +82563-82564 +82566-82567 +82568-82577 +82568-82577 +82569-82577 +82571-82577 +82571-82573 +82573 +82574-82577 +82575-82577 +82578-82594 +82578-82594 +82579-82594 +82579-82589 +82579-82582 +82579-82580 +82583-82589 +82584-82589 +82585-82589 +82585-82586 +82587-82588 +82590-82594 +82590 +82592-82594 +82595-82616 +82595-82616 +82596-82616 +82596-82601 +82597-82601 +82598-82601 +82599-82601 +82599-82600 +82604-82616 +82604-82609 +82604-82607 +82605-82607 +82606-82607 +82608-82609 +82610-82616 +82611-82612 +82613-82614 +82617-82640 +82617-82640 +82618-82640 +82618-82627 +82619-82627 +82619-82622 +82620-82622 +82621-82622 +82623-82626 +82623-82625 +82624-82625 +82628-82632 +82628-82630 +82628-82629 +82631-82632 +82632 +82633-82634 +82635-82638 +82636-82637 +82641-82668 +82641-82668 +82642-82668 +82642-82643 +82644-82655 +82644-82653 +82644-82652 +82645-82652 +82645-82646 +82647-82652 +82648-82652 +82648-82650 +82649-82650 +82654-82655 +82655 +82656-82668 +82656-82661 +82658-82659 +82662-82668 +82663-82668 +82663 +82665-82668 +82666-82668 +82667-82668 +82669-82682 +82669-82682 +82670-82682 +82670-82672 +82671-82672 +82674-82682 +82675-82682 +82675-82680 +82675-82679 +82676-82679 +82677-82679 +82678-82679 +82681-82682 +82683-82694 +82683-82694 +82684-82694 +82684-82689 +82684-82686 +82685-82686 +82688-82689 +82690-82694 +82690-82691 +82693-82694 +82695-82713 +82695-82713 +82696-82713 +82696-82704 +82696-82700 +82696-82698 +82697-82698 +82701-82704 +82703-82704 +82705-82713 +82705-82707 +82709-82713 +82709-82710 +82712-82713 +82714-82719 +82714-82719 +82715-82719 +82716-82718 +82717-82718 +82720-82745 +82720-82745 +82721-82722 +82723-82726 +82724-82726 +82725-82726 +82728-82730 +82729-82730 +82731-82736 +82732-82736 +82732-82733 +82734-82736 +82735-82736 +82737-82745 +82737-82738 +82739-82740 +82741-82743 +82742-82743 +82746-82761 +82746-82761 +82747-82761 +82747-82750 +82748-82750 +82749-82750 +82752-82753 +82754-82761 +82755-82756 +82757-82761 +82758-82761 +82759-82761 +82759-82760 +82762-82773 +82762-82773 +82763-82773 +82764-82766 +82765-82766 +82767-82773 +82769-82773 +82770-82773 +82771-82773 +82771-82772 +82774-82814 +82774-82814 +82775-82814 +82775-82776 +82777-82814 +82778-82779 +82780-82814 +82780-82781 +82780 +82781 +82782-82814 +82782-82801 +82783-82792 +82783-82784 +82786-82792 +82786-82787 +82788-82792 +82789-82792 +82790-82792 +82791-82792 +82794-82795 +82797-82801 +82798-82801 +82799-82801 +82800-82801 +82803-82804 +82806 +82807-82814 +82808-82814 +82809-82814 +82809-82811 +82810-82811 +82813-82814 +82815-82829 +82815-82829 +82816-82829 +82816-82818 +82817-82818 +82820-82821 +82822-82829 +82823-82829 +82824-82829 +82824-82828 +82824-82826 +82825-82826 +82830-82849 +82830-82849 +82831-82849 +82831-82834 +82832-82834 +82833-82834 +82837-82839 +82837 +82838-82839 +82839 +82840-82849 +82841-82849 +82841-82845 +82842-82845 +82843-82845 +82844-82845 +82846-82848 +82846-82847 +82850-82875 +82850-82875 +82851-82875 +82852-82853 +82855-82875 +82855-82863 +82856-82863 +82857-82859 +82858-82859 +82861-82863 +82862-82863 +82864-82875 +82865-82875 +82865 +82866-82868 +82867-82868 +82869-82871 +82870-82871 +82872-82875 +82872-82874 +82873-82874 +82876-82894 +82876-82894 +82877-82894 +82878-82882 +82878-82879 +82881-82882 +82883-82894 +82884-82894 +82885-82894 +82885-82888 +82886-82888 +82886-82887 +82892-82894 +82893-82894 +82895-82930 +82895-82930 +82896-82930 +82896-82898 +82900-82901 +82902-82904 +82903-82904 +82906-82930 +82908-82926 +82908-82912 +82909-82912 +82910-82912 +82911-82912 +82913-82926 +82914-82926 +82916-82918 +82917-82918 +82919-82926 +82920-82926 +82920-82923 +82921-82923 +82922-82923 +82924-82926 +82925-82926 +82927-82930 +82927-82928 +82929-82930 +82931-82939 +82931-82939 +82932-82939 +82932-82936 +82933-82936 +82935-82936 +82936 +82937-82939 +82938-82939 +82940-82986 +82940-82986 +82941-82986 +82941-82944 +82943-82944 +82946-82986 +82947-82948 +82949-82950 +82951-82986 +82952-82986 +82953-82956 +82954-82956 +82955-82956 +82958-82961 +82959-82961 +82960-82961 +82962-82965 +82963-82965 +82964-82965 +82966 +82967-82986 +82967-82973 +82967-82971 +82968-82971 +82969-82971 +82969-82970 +82972-82973 +82973 +82974-82986 +82974-82979 +82974-82975 +82976-82979 +82977-82979 +82977-82978 +82980-82986 +82981-82986 +82981-82982 +82981 +82983-82986 +82984-82986 +82984-82985 +82987-83021 +82987-83021 +82988-83021 +82988-83003 +82988-82993 +82989-82993 +82990-82993 +82991-82993 +82991-82992 +82994-82998 +82995-82998 +82995-82996 +82999-83003 +83000-83003 +83000-83002 +83001-83002 +83004-83021 +83004-83018 +83004-83008 +83007-83008 +83009-83012 +83010-83012 +83010-83011 +83013-83016 +83014-83016 +83014-83015 +83017-83018 +83018 +83019-83021 +83020-83021 +83022-83037 +83022-83037 +83023-83037 +83026-83037 +83027-83037 +83027-83034 +83027-83028 +83030-83034 +83031-83034 +83032-83034 +83033-83034 +83035-83037 +83038-83068 +83038-83068 +83039-83068 +83039-83044 +83040-83041 +83042-83044 +83043-83044 +83045-83068 +83046-83068 +83047-83051 +83048-83051 +83049-83051 +83050-83051 +83052-83068 +83052-83056 +83053-83056 +83054-83056 +83055-83056 +83057-83068 +83058-83068 +83059-83064 +83060-83064 +83061-83064 +83061-83062 +83063-83064 +83065-83067 +83066-83067 +83069-83149 +83069-83149 +83069-83140 +83069-83074 +83069-83072 +83070-83072 +83071-83072 +83073-83074 +83075-83140 +83076-83140 +83077-83140 +83077-83078 +83079-83140 +83081-83084 +83082-83084 +83083-83084 +83085-83087 +83086-83087 +83088-83140 +83089-83140 +83089-83115 +83089-83110 +83089-83098 +83089-83091 +83090-83091 +83092-83098 +83093-83098 +83094-83096 +83095-83096 +83097-83098 +83099-83110 +83100-83110 +83101-83102 +83103-83104 +83105-83107 +83106-83107 +83108-83110 +83109-83110 +83111-83115 +83111-83112 +83113-83115 +83114-83115 +83116-83140 +83116-83132 +83116-83117 +83119-83121 +83120-83121 +83122-83124 +83123-83124 +83125-83128 +83126-83128 +83127-83128 +83129-83132 +83130-83132 +83131-83132 +83133-83134 +83136-83137 +83138-83140 +83139-83140 +83141-83149 +83142-83149 +83142-83145 +83143-83145 +83144-83145 +83146-83149 +83146-83147 +83148-83149 +83150-83161 +83150-83161 +83151-83153 +83152-83153 +83154-83161 +83155-83161 +83155-83157 +83156-83157 +83158-83161 +83159-83161 +83160-83161 +83162-83182 +83162-83182 +83163-83182 +83165-83167 +83166-83167 +83168-83170 +83169-83170 +83171-83173 +83172-83173 +83174-83182 +83175-83182 +83175-83177 +83176-83177 +83179-83182 +83180-83182 +83181-83182 +83183-83224 +83183-83224 +83184-83224 +83184-83185 +83187-83200 +83188-83200 +83189-83200 +83191-83194 +83192-83194 +83193-83194 +83195-83200 +83196-83200 +83197-83200 +83198-83200 +83199-83200 +83201-83224 +83202-83224 +83203-83204 +83206-83211 +83207-83210 +83208-83210 +83209-83210 +83212-83224 +83213-83224 +83214-83215 +83217-83224 +83217-83221 +83218-83221 +83219-83221 +83220-83221 +83223-83224 +83225-83253 +83225-83253 +83226-83253 +83226-83228 +83227-83228 +83229-83253 +83230-83253 +83231-83233 +83232-83233 +83235-83253 +83236-83253 +83237-83253 +83237-83238 +83239-83253 +83240-83253 +83242-83253 +83243-83244 +83245-83253 +83246-83253 +83247-83253 +83247-83248 +83249-83253 +83250-83253 +83250-83251 +83252-83253 +83254-83283 +83254-83283 +83255-83283 +83255 +83258-83283 +83260-83283 +83261-83283 +83261-83270 +83261-83265 +83263-83265 +83264-83265 +83266-83270 +83267-83270 +83268-83270 +83269-83270 +83271-83283 +83272-83283 +83272-83273 +83275-83277 +83276-83277 +83278-83283 +83279-83283 +83279-83283 +83280-83283 +83281-83283 +83282-83283 +83284-83293 +83284-83293 +83284-83291 +83284-83287 +83284-83285 +83286-83287 +83288-83291 +83288-83289 +83290-83291 +83294-83304 +83294-83304 +83295-83298 +83296-83298 +83296-83297 +83299-83304 +83299-83303 +83300-83303 +83301-83303 +83302-83303 +83305-83323 +83305-83323 +83306-83323 +83308-83309 +83310-83323 +83311-83323 +83311-83312 +83314-83315 +83316-83323 +83316-83318 +83317-83318 +83318 +83319-83323 +83319-83321 +83320-83321 +83322-83323 +83324-83341 +83324-83341 +83325-83341 +83325-83326 +83327-83328 +83330-83333 +83330-83331 +83332-83333 +83334-83341 +83335-83341 +83336-83341 +83337-83341 +83337-83338 +83339-83340 +83342-83368 +83342-83368 +83343-83368 +83344-83345 +83346-83347 +83348-83359 +83349-83359 +83350-83359 +83350-83352 +83351-83352 +83353-83359 +83354-83359 +83355-83359 +83355-83356 +83357-83358 +83360-83368 +83361-83368 +83361-83364 +83362-83364 +83363-83364 +83367-83368 +83369-83373 +83369-83373 +83370-83373 +83370-83371 +83374-83396 +83374-83396 +83375-83396 +83375-83384 +83375-83377 +83376-83377 +83378-83384 +83379-83384 +83379-83382 +83380-83382 +83381-83382 +83383-83384 +83385-83387 +83386-83387 +83388-83390 +83388-83389 +83392-83396 +83393-83396 +83394-83396 +83397-83418 +83397-83418 +83398-83418 +83398-83412 +83398-83406 +83398-83400 +83399-83400 +83402-83403 +83404-83406 +83405-83406 +83407-83412 +83408-83412 +83409-83412 +83410-83412 +83411-83412 +83413-83418 +83414-83418 +83415-83418 +83416-83418 +83417-83418 +83419-83440 +83419-83440 +83419-83422 +83419-83421 +83420-83421 +83423-83440 +83424-83440 +83425-83429 +83426-83429 +83427-83429 +83428-83429 +83430-83440 +83431-83440 +83432-83440 +83433-83440 +83434-83440 +83435-83436 +83437-83438 +83439-83440 +83441-83485 +83441-83485 +83442-83485 +83444-83445 +83446-83451 +83447-83451 +83448-83451 +83449-83451 +83450-83451 +83452-83453 +83454-83485 +83455-83485 +83456-83458 +83457-83458 +83459-83485 +83460-83485 +83461-83485 +83461-83469 +83463-83466 +83464-83466 +83465-83466 +83467-83469 +83468-83469 +83470-83485 +83471-83485 +83471-83473 +83472-83473 +83474-83475 +83476-83485 +83477-83485 +83477-83478 +83478 +83479-83485 +83482-83484 +83483-83484 +83485 +83486-83494 +83486-83494 +83486-83487 +83490-83491 +83492-83494 +83493-83494 +83495-83542 +83495-83542 +83496-83542 +83496-83507 +83497-83507 +83497-83499 +83498-83499 +83501-83503 +83502-83503 +83504-83507 +83505-83507 +83506-83507 +83508-83542 +83509-83542 +83510-83512 +83511-83512 +83513-83518 +83514-83518 +83515-83518 +83516-83518 +83517-83518 +83520-83523 +83521-83523 +83522-83523 +83524-83525 +83526-83542 +83526-83531 +83527-83528 +83529-83530 +83532-83542 +83533-83542 +83533-83539 +83534-83539 +83534-83536 +83535-83536 +83537-83539 +83538-83539 +83540-83541 +83543-83588 +83543-83588 +83544-83588 +83544-83551 +83545-83551 +83547-83551 +83547-83548 +83550-83551 +83552-83588 +83554-83555 +83556-83558 +83557-83558 +83559-83562 +83560-83562 +83561-83562 +83563-83588 +83563-83568 +83564-83568 +83565-83568 +83569-83574 +83570-83574 +83575-83588 +83575-83588 +83581-83582 +83583-83584 +83589-83611 +83589-83611 +83589-83606 +83590-83602 +83590-83593 +83591-83593 +83592-83593 +83595-83602 +83596-83602 +83596-83599 +83597-83599 +83597-83598 +83607-83611 +83608-83611 +83610-83611 +83611 +83612-83619 +83612-83619 +83613-83619 +83615-83619 +83615-83619 +83616-83619 +83617-83619 +83618-83619 +83619 +83620-83633 +83620-83633 +83621-83633 +83621-83627 +83621-83625 +83622-83625 +83624-83625 +83629-83633 +83629-83630 +83632-83633 +83633 +83634-83648 +83634-83648 +83635-83648 +83636-83648 +83637-83648 +83637-83640 +83638-83640 +83639-83640 +83642-83643 +83644-83648 +83645-83648 +83646-83648 +83646-83647 +83649-83692 +83649-83692 +83650-83692 +83652-83662 +83652-83662 +83652-83653 +83654-83662 +83655-83662 +83655-83659 +83656-83659 +83657-83659 +83657-83658 +83660-83662 +83661-83662 +83663-83692 +83664-83692 +83664-83669 +83666-83669 +83667-83669 +83668-83669 +83670-83692 +83671-83692 +83671-83681 +83672-83681 +83673-83681 +83673-83675 +83674-83675 +83676-83678 +83677-83678 +83679-83681 +83680-83681 +83683-83692 +83684-83692 +83685-83692 +83685-83688 +83686-83688 +83687-83688 +83689-83690 +83693-83718 +83693-83718 +83694-83718 +83694-83700 +83695-83700 +83696-83700 +83696-83697 +83698-83700 +83699-83700 +83704-83718 +83705-83718 +83706-83718 +83707-83718 +83708-83718 +83709-83718 +83710-83718 +83710-83711 +83712-83718 +83715-83718 +83716-83718 +83717-83718 +83719-83747 +83719-83747 +83719-83732 +83720-83732 +83720-83730 +83721-83730 +83721-83724 +83722-83724 +83723-83724 +83725-83729 +83726-83727 +83728-83729 +83731-83732 +83733-83747 +83734-83747 +83734-83744 +83735-83744 +83735-83736 +83735-83736 +83737-83744 +83738-83744 +83738-83740 +83739-83740 +83741-83744 +83742-83744 +83743-83744 +83745-83747 +83746-83747 +83748-83779 +83748-83779 +83748-83763 +83748-83750 +83749-83750 +83751-83763 +83752-83763 +83753-83763 +83754-83763 +83754-83758 +83755-83758 +83756-83758 +83757-83758 +83759-83763 +83759-83761 +83760-83761 +83762-83763 +83764-83779 +83765-83779 +83765-83769 +83766-83767 +83768-83769 +83770-83779 +83771-83779 +83771-83774 +83772-83774 +83773-83774 +83775-83779 +83775-83777 +83776-83777 +83778-83779 +83780-83786 +83780-83786 +83781-83786 +83784-83786 +83785-83786 +83787-83801 +83787-83801 +83788-83801 +83788-83793 +83788-83790 +83794-83801 +83795-83801 +83795-83798 +83796-83797 +83799-83800 +83802-83815 +83802-83815 +83803-83815 +83804-83810 +83804-83806 +83805-83806 +83808-83810 +83809-83810 +83812-83815 +83812-83814 +83813-83814 +83816-83834 +83816-83834 +83817-83834 +83817-83827 +83818-83827 +83818-83822 +83819-83822 +83820-83822 +83824-83826 +83825-83826 +83828-83834 +83828-83831 +83829-83831 +83835-83875 +83835-83875 +83837-83840 +83838-83840 +83839-83840 +83841-83845 +83842-83845 +83843-83845 +83844-83845 +83846-83858 +83846-83849 +83847-83849 +83848-83849 +83850-83858 +83851-83858 +83851-83855 +83851-83852 +83853-83854 +83856-83858 +83857-83858 +83859-83875 +83860-83875 +83860-83861 +83863-83864 +83865-83868 +83866-83868 +83867-83868 +83869-83872 +83870-83872 +83871-83872 +83873-83875 +83874-83875 +83876-83931 +83876-83931 +83877-83931 +83877-83924 +83878-83924 +83878-83880 +83881-83883 +83882-83883 +83884-83887 +83885-83887 +83886-83887 +83888-83891 +83889-83891 +83890-83891 +83892-83899 +83893-83899 +83894-83895 +83895 +83896-83899 +83897-83899 +83898-83899 +83900-83924 +83901-83924 +83902-83924 +83904-83913 +83904-83905 +83906-83909 +83907-83909 +83908-83909 +83910-83911 +83912-83913 +83914-83924 +83915-83921 +83916-83921 +83917-83921 +83917-83918 +83919-83921 +83920-83921 +83922-83924 +83923-83924 +83925-83931 +83926-83931 +83926-83928 +83926-83928 +83927-83928 +83932-83936 +83932-83936 +83932-83935 +83932-83935 +83933-83935 +83934-83935 +83937-83941 +83937-83941 +83937-83940 +83937-83940 +83938-83940 +83939-83940 +83942-83946 +83942-83946 +83942-83945 +83942-83945 +83943-83945 +83944-83945 +83947-83958 +83947-83958 +83947-83950 +83948-83949 +83951-83955 +83952-83955 +83953-83955 +83954-83955 +83956-83957 +83959-83971 +83959-83971 +83960-83971 +83960-83963 +83961-83963 +83962-83963 +83964-83965 +83967-83969 +83968-83969 +83970-83971 +83971 +83972-83988 +83972-83988 +83973-83988 +83973-83978 +83974-83978 +83974-83975 +83976-83978 +83977-83978 +83979-83988 +83980-83988 +83980-83983 +83981-83983 +83981-83982 +83984-83988 +83984-83986 +83985-83986 +83989-84004 +83989-84004 +83990-84004 +83990-83997 +83991-83997 +83991-83992 +83993-83996 +83994-83996 +83995-83996 +83998-84004 +83999-84004 +83999-84001 +84000-84001 +84002-84003 +84005-84021 +84005-84021 +84006-84021 +84007-84010 +84008-84010 +84008-84009 +84011-84013 +84011-84012 +84014-84021 +84015-84021 +84016-84021 +84016-84019 +84017-84019 +84018-84019 +84020-84021 +84022-84060 +84022-84060 +84023-84060 +84024-84037 +84024-84029 +84024-84027 +84025-84027 +84026-84027 +84030-84037 +84031-84037 +84031-84036 +84032-84036 +84032-84034 +84033-84034 +84035-84036 +84039-84060 +84039-84043 +84039-84042 +84040-84042 +84041-84042 +84044-84050 +84045-84050 +84047-84050 +84048-84050 +84049-84050 +84051-84060 +84051-84053 +84052-84053 +84054-84060 +84055-84056 +84058-84060 +84059-84060 +84061-84072 +84061-84072 +84062-84072 +84062-84066 +84063-84066 +84064-84066 +84065-84066 +84067-84072 +84068-84072 +84069-84072 +84070-84072 +84071-84072 +84073-84076 +84073-84076 +84074-84076 +84075-84076 +84077-84085 +84077-84085 +84078-84085 +84079-84085 +84080-84085 +84081-84085 +84082-84085 +84083-84085 +84084-84085 +84086-84090 +84086-84090 +84087-84090 +84087 +84088-84090 +84089-84090 +84091-84099 +84091-84099 +84092-84099 +84092-84094 +84093-84094 +84095-84098 +84096-84098 +84097-84098 +84100-84101 +84100-84101 +84102-84125 +84102-84125 +84103-84125 +84103-84110 +84103-84106 +84104-84105 +84107-84110 +84108-84110 +84108-84109 +84111-84125 +84112-84125 +84113-84125 +84114-84125 +84114-84119 +84115-84119 +84116-84119 +84117-84119 +84118-84119 +84120-84125 +84121-84125 +84122-84125 +84123-84125 +84124-84125 +84126-84135 +84126-84135 +84127-84135 +84127-84133 +84128-84133 +84128-84130 +84129-84130 +84131-84132 +84134-84135 +84136-84143 +84136-84143 +84137-84143 +84138-84143 +84138-84139 +84140-84143 +84141-84143 +84142-84143 +84144-84146 +84144-84146 +84144-84145 +84147-84148 +84147-84148 +84149-84155 +84149-84155 +84150-84155 +84152-84153 +84154-84155 +84156-84176 +84156-84176 +84157-84176 +84157-84170 +84158-84170 +84158-84161 +84159-84161 +84160-84161 +84162-84165 +84163-84165 +84164-84165 +84167-84170 +84168-84170 +84169-84170 +84171-84176 +84174-84175 +84177-84199 +84177-84199 +84178-84199 +84179-84199 +84179-84180 +84180 +84181-84199 +84182-84199 +84183-84199 +84185-84194 +84187-84194 +84188-84194 +84189-84190 +84191-84194 +84192-84194 +84193-84194 +84195-84199 +84195-84197 +84196-84197 +84200-84202 +84200-84202 +84201-84202 +84201 +84202 +84203-84232 +84203-84232 +84203-84204 +84205-84232 +84206-84232 +84207-84214 +84207-84211 +84207-84210 +84207-84208 +84209-84210 +84212-84213 +84215-84232 +84216-84232 +84217-84232 +84218-84232 +84218-84222 +84218-84220 +84221-84222 +84223-84232 +84225-84226 +84226 +84227-84232 +84229-84232 +84230-84232 +84231-84232 +84233-84236 +84233-84236 +84235-84236 +84237-84245 +84237-84245 +84237-84241 +84239-84241 +84240-84241 +84242-84245 +84244-84245 +84246-84267 +84246-84267 +84246-84254 +84246-84250 +84246-84247 +84247 +84248-84250 +84249-84250 +84251-84254 +84251-84253 +84252-84253 +84255-84267 +84255-84256 +84257-84260 +84258-84260 +84259-84260 +84261-84267 +84261-84263 +84262-84263 +84264-84266 +84265-84266 +84268-84285 +84268-84285 +84268-84280 +84268-84273 +84269-84271 +84270-84271 +84272-84273 +84274-84280 +84274-84276 +84275-84276 +84277-84280 +84278-84280 +84279-84280 +84281-84285 +84282-84285 +84282-84283 +84286-84293 +84286-84293 +84288-84289 +84290-84293 +84291-84293 +84292-84293 +84294-84317 +84294-84317 +84295-84317 +84296-84317 +84297-84317 +84297-84305 +84297-84300 +84298-84299 +84301-84304 +84302-84304 +84303-84304 +84307-84317 +84307-84309 +84307-84308 +84310-84317 +84311-84317 +84313-84315 +84314-84315 +84316-84317 +84318-84332 +84318-84332 +84319-84332 +84319-84321 +84320-84321 +84324-84325 +84326-84327 +84328-84332 +84329-84332 +84329-84330 +84331-84332 +84333-84357 +84333-84357 +84334-84357 +84334-84346 +84335-84336 +84337-84338 +84340-84346 +84341-84346 +84342-84346 +84342-84343 +84344-84346 +84345-84346 +84347-84357 +84348-84357 +84348-84353 +84348-84349 +84350-84353 +84351-84353 +84352-84353 +84354-84357 +84355-84357 +84356-84357 +84357 +84358-84361 +84358-84361 +84359-84361 +84362-84382 +84362-84382 +84363-84382 +84363-84364 +84365-84382 +84366-84382 +84367-84370 +84368-84370 +84369-84370 +84371-84382 +84373-84375 +84374-84375 +84376-84382 +84377-84382 +84377-84378 +84379-84382 +84380-84382 +84381-84382 +84383-84430 +84383-84430 +84385-84386 +84388-84430 +84388-84409 +84388-84389 +84390-84393 +84391-84393 +84392-84393 +84394-84398 +84395-84398 +84396-84398 +84397-84398 +84399-84404 +84400-84404 +84401-84404 +84402-84404 +84403-84404 +84403 +84405-84409 +84406-84409 +84407-84409 +84408-84409 +84410-84415 +84411-84415 +84412-84415 +84413-84415 +84414-84415 +84416-84419 +84417-84419 +84418-84419 +84420-84430 +84421-84430 +84422-84430 +84424-84430 +84425-84430 +84426-84430 +84427-84430 +84428-84430 +84429-84430 +84431-84435 +84431-84435 +84431-84434 +84432-84434 +84433-84434 +84435 +84436-84440 +84436-84440 +84436-84438 +84436-84438 +84437-84438 +84439-84440 +84439-84440 +84441-84445 +84441-84445 +84441 +84442-84445 +84443-84445 +84443-84445 +84444-84445 +84446-84453 +84446-84453 +84447-84453 +84448-84453 +84451-84453 +84452-84453 +84454-84458 +84454-84458 +84455-84458 +84456-84457 +84459-84461 +84459-84461 +84460-84461 +84460-84461 +84462-84478 +84462-84478 +84462-84464 +84463-84464 +84463-84464 +84465-84478 +84466-84478 +84467-84478 +84467-84468 +84469-84478 +84469-84473 +84472-84473 +84474-84478 +84475-84478 +84476-84478 +84477-84478 +84479-84484 +84479-84484 +84480-84484 +84482-84484 +84483-84484 +84485-84489 +84485-84489 +84485-84486 +84487-84489 +84488-84489 +84490-84499 +84490-84499 +84491-84499 +84492-84499 +84494-84497 +84495-84497 +84496-84497 +84498-84499 +84500-84507 +84500-84507 +84501-84507 +84501-84505 +84502-84505 +84503-84504 +84508-84511 +84508-84511 +84509-84511 +84510-84511 +84512-84516 +84512-84516 +84513-84516 +84514-84515 +84517-84526 +84517-84526 +84518-84526 +84518-84521 +84520-84521 +84522-84526 +84523-84526 +84525-84526 +84527-84538 +84527-84538 +84528-84538 +84528-84529 +84529 +84530-84531 +84533-84538 +84534-84535 +84537-84538 +84539-84580 +84539-84580 +84540-84580 +84540-84549 +84541-84549 +84542 +84544-84549 +84545-84549 +84546-84549 +84547-84549 +84548-84549 +84551-84553 +84552-84553 +84554-84555 +84556-84580 +84557-84580 +84557-84558 +84560-84570 +84561-84570 +84562-84570 +84563-84570 +84564-84570 +84565-84566 +84569-84570 +84571-84580 +84572-84580 +84572-84575 +84572-84574 +84573-84574 +84576-84580 +84577-84580 +84577-84579 +84578-84579 +84581-84588 +84581-84588 +84582-84588 +84583-84588 +84584-84585 +84589-84600 +84589-84600 +84590-84600 +84590-84592 +84590-84591 +84593-84600 +84593-84595 +84594-84595 +84596-84600 +84597-84600 +84598-84600 +84599-84600 +84601-84609 +84601-84609 +84602-84609 +84603-84609 +84604-84605 +84606-84607 +84608-84609 +84610-84612 +84610-84612 +84611-84612 +84613-84618 +84613-84618 +84614-84618 +84614-84615 +84616-84618 +84617-84618 +84619-84624 +84619-84624 +84620-84621 +84620-84621 +84623-84624 +84623-84624 +84625-84675 +84625-84675 +84626-84675 +84627-84637 +84627-84628 +84629-84637 +84630-84637 +84631-84637 +84632-84637 +84632-84633 +84634-84637 +84635-84637 +84636-84637 +84638-84675 +84639-84675 +84640-84675 +84640-84653 +84642-84653 +84643-84653 +84644-84653 +84645-84653 +84646-84647 +84648-84653 +84649-84653 +84650-84653 +84652-84653 +84654-84675 +84655-84675 +84655-84656 +84657-84675 +84657-84661 +84658-84661 +84659-84660 +84662-84675 +84663-84675 +84664-84675 +84665-84675 +84666-84675 +84667-84675 +84668-84675 +84669-84675 +84669-84671 +84669-84670 +84672-84675 +84672-84674 +84673-84674 +84676-84696 +84676-84696 +84677-84696 +84678-84692 +84678-84679 +84680-84686 +84680-84681 +84682-84686 +84683-84686 +84683-84684 +84687-84692 +84687-84688 +84689-84692 +84690-84692 +84691-84692 +84694-84696 +84694-84696 +84695-84696 +84697-84709 +84697-84709 +84698-84709 +84698-84702 +84699-84702 +84699-84701 +84700-84701 +84703-84709 +84703-84705 +84704-84705 +84706-84709 +84707-84709 +84708-84709 +84710-84714 +84710-84714 +84711-84714 +84711-84712 +84715-84721 +84715-84721 +84716-84721 +84716-84719 +84722-84777 +84722-84777 +84722-84723 +84724-84725 +84726-84777 +84727-84777 +84727-84728 +84729-84777 +84730-84777 +84731-84777 +84733-84734 +84735-84777 +84735-84737 +84736-84737 +84738-84777 +84739-84743 +84740-84743 +84741-84743 +84741-84742 +84745-84777 +84746-84777 +84747-84777 +84748-84777 +84749-84777 +84750-84777 +84750-84769 +84752-84754 +84753-84754 +84755-84769 +84756-84769 +84756-84757 +84758-84769 +84759-84769 +84760-84769 +84760-84762 +84761-84762 +84763-84769 +84764-84769 +84765-84767 +84766-84767 +84768-84769 +84769 +84771-84777 +84772-84777 +84773-84777 +84773-84775 +84774-84775 +84778-84798 +84778-84798 +84779-84780 +84781-84782 +84784-84798 +84785-84798 +84786-84798 +84788-84790 +84789-84790 +84791-84798 +84792-84798 +84793-84798 +84794-84798 +84796-84798 +84797-84798 +84799-84844 +84799-84844 +84800-84844 +84800-84817 +84800-84811 +84800-84803 +84802-84803 +84805-84807 +84806-84807 +84808 +84809-84811 +84812-84817 +84813-84817 +84813-84817 +84814-84817 +84815-84817 +84816-84817 +84818-84844 +84819-84844 +84819-84827 +84819-84823 +84820-84823 +84821-84823 +84822-84823 +84826-84827 +84828-84844 +84829-84844 +84830-84831 +84832-84844 +84832-84835 +84834-84835 +84836-84844 +84837-84844 +84838-84844 +84839-84844 +84840-84844 +84841-84844 +84841-84842 +84845-84850 +84845-84850 +84846-84850 +84849-84850 +84851-84889 +84851-84889 +84852-84889 +84853-84859 +84854-84855 +84857-84859 +84858-84859 +84861-84889 +84861-84889 +84862-84889 +84863-84889 +84863-84866 +84864-84866 +84864-84865 +84867-84889 +84868-84889 +84869-84889 +84870-84889 +84871-84889 +84872-84873 +84874-84889 +84874-84877 +84875-84877 +84876-84877 +84878-84889 +84878-84883 +84880-84883 +84881-84883 +84882-84883 +84884-84889 +84885-84889 +84886-84889 +84887-84889 +84888-84889 +84890-84927 +84890-84927 +84891-84927 +84891-84893 +84892-84893 +84896-84898 +84897-84898 +84899-84927 +84900-84927 +84900-84904 +84900-84902 +84901-84902 +84903-84904 +84905-84927 +84905-84919 +84905-84906 +84907-84909 +84908-84909 +84911-84912 +84913-84919 +84914-84919 +84914-84916 +84914-84915 +84917-84919 +84917-84918 +84920-84927 +84921-84927 +84922-84927 +84923-84927 +84924-84927 +84925-84927 +84926-84927 +84928-84950 +84928-84950 +84929-84950 +84930 +84932-84950 +84934-84936 +84935-84936 +84937-84950 +84938-84950 +84939-84950 +84939-84942 +84939-84940 +84943-84946 +84944-84946 +84944-84945 +84947-84950 +84948-84950 +84948-84949 +84951-84971 +84951-84971 +84952-84971 +84952-84953 +84956-84971 +84957-84971 +84957-84960 +84958-84960 +84959-84960 +84962-84965 +84963-84965 +84964-84965 +84966-84971 +84967-84971 +84967-84968 +84969-84971 +84970-84971 +84972-84983 +84972-84983 +84973-84983 +84974-84983 +84975-84978 +84979-84980 +84981-84982 +84984-84989 +84984-84989 +84985-84989 +84986-84987 +84990-84998 +84990-84998 +84991-84998 +84991-84993 +84992-84993 +84998 +84999-85016 +84999-85016 +85000-85016 +85001-85003 +85002-85003 +85004-85005 +85006-85007 +85008-85016 +85009-85016 +85009-85012 +85013-85016 +85014-85015 +85017-85031 +85017-85031 +85018-85031 +85018-85019 +85020-85025 +85022-85025 +85023-85025 +85024-85025 +85027-85028 +85029-85031 +85030-85031 +85032-85052 +85032-85052 +85033-85052 +85033-85044 +85034-85044 +85034-85035 +85037-85038 +85039-85044 +85040-85044 +85041-85044 +85042-85044 +85043-85044 +85045-85046 +85047 +85049-85052 +85050-85052 +85051-85052 +85053-85073 +85053-85073 +85054-85073 +85055 +85057-85073 +85059-85061 +85060-85061 +85062-85073 +85063-85073 +85063-85067 +85063-85065 +85064-85065 +85066-85067 +85068-85073 +85068-85069 +85071-85072 +85074-85117 +85074-85117 +85074-85075 +85074-85075 +85076-85117 +85076-85103 +85076-85091 +85077-85091 +85077-85085 +85077-85079 +85078-85079 +85080-85081 +85082-85084 +85083-85084 +85086-85091 +85087-85091 +85087-85089 +85088-85089 +85090-85091 +85092-85103 +85092-85093 +85094-85096 +85095-85096 +85097-85098 +85100-85103 +85101-85103 +85104-85117 +85105-85117 +85105-85110 +85105-85106 +85109-85110 +85111-85117 +85112-85117 +85115-85117 +85118-85141 +85118-85141 +85119-85141 +85120-85121 +85122-85125 +85122-85123 +85124-85125 +85126-85141 +85127-85141 +85128-85141 +85129-85141 +85131-85141 +85132-85141 +85133-85141 +85134-85141 +85135-85141 +85136-85141 +85137-85141 +85139-85141 +85140-85141 +85141 +85142-85150 +85142-85150 +85143-85150 +85143-85146 +85144-85146 +85145-85146 +85145-85146 +85148-85150 +85149-85150 +85151-85180 +85151-85180 +85152-85180 +85152-85159 +85153-85159 +85153-85156 +85154-85156 +85154-85155 +85157-85158 +85160-85161 +85162-85176 +85162-85165 +85163-85165 +85164-85165 +85166-85176 +85167-85176 +85168-85176 +85169-85176 +85170-85176 +85171-85176 +85172-85176 +85172-85174 +85173-85174 +85175-85176 +85177-85179 +85178-85179 +85181-85188 +85181-85188 +85182-85188 +85183-85186 +85184-85186 +85185-85186 +85186 +85187-85188 +85189-85204 +85189-85204 +85190-85204 +85190-85196 +85191-85196 +85191-85192 +85193-85194 +85195-85196 +85197-85204 +85198-85204 +85198-85199 +85200-85202 +85201-85202 +85203-85204 +85205-85237 +85205-85237 +85206-85237 +85206-85216 +85207-85216 +85207-85210 +85208-85210 +85208-85209 +85211-85212 +85214-85216 +85215-85216 +85217-85218 +85219-85229 +85220-85229 +85220-85228 +85220-85223 +85221-85223 +85222-85223 +85224-85228 +85225-85228 +85226-85228 +85227-85228 +85230-85231 +85233-85237 +85234-85237 +85234-85235 +85236-85237 +85238-85259 +85238-85259 +85239-85259 +85240-85259 +85240-85248 +85241-85248 +85241-85243 +85242-85243 +85244-85246 +85245-85246 +85247-85248 +85250-85253 +85251-85253 +85252-85253 +85254-85256 +85255-85256 +85257-85259 +85258-85259 +85260-85282 +85260-85282 +85261-85282 +85261-85271 +85262-85271 +85262-85267 +85263-85267 +85264-85267 +85265-85267 +85266-85267 +85270-85271 +85273-85278 +85274-85278 +85275-85278 +85276-85278 +85277-85278 +85281-85282 +85283-85289 +85283-85289 +85284-85289 +85286-85289 +85287-85289 +85288-85289 +85290-85321 +85290-85321 +85291-85321 +85291-85294 +85293-85294 +85296-85297 +85298-85321 +85299-85321 +85299-85305 +85300-85305 +85301-85302 +85303-85305 +85304-85305 +85307-85309 +85308-85309 +85311-85312 +85313-85315 +85314-85315 +85316-85321 +85317-85321 +85317-85318 +85319-85321 +85320-85321 +85322-85324 +85322-85324 +85323-85324 +85325-85331 +85325-85331 +85326-85327 +85328-85331 +85329-85331 +85329-85330 +85332-85333 +85332-85333 +85334-85342 +85334-85342 +85334-85337 +85336-85337 +85341-85342 +85343-85355 +85343-85355 +85344-85355 +85345-85355 +85346-85355 +85346-85350 +85348-85350 +85349-85350 +85351-85354 +85352-85354 +85353-85354 +85356-85382 +85356-85382 +85357-85382 +85359-85361 +85360-85361 +85362-85364 +85363-85364 +85365-85382 +85366-85382 +85366-85375 +85367-85375 +85369-85370 +85371-85375 +85372-85375 +85373-85375 +85374-85375 +85377-85378 +85379-85381 +85380-85381 +85383-85396 +85383-85396 +85384-85396 +85384-85391 +85385-85391 +85387-85391 +85388-85391 +85389-85391 +85390-85391 +85393-85396 +85393-85395 +85394-85395 +85397-85416 +85397-85416 +85399-85416 +85400-85416 +85400-85403 +85401-85403 +85402-85403 +85405-85416 +85406-85416 +85407-85410 +85408-85410 +85409-85410 +85411-85416 +85412-85416 +85415-85416 +85417-85423 +85417-85423 +85418-85423 +85418-85419 +85419 +85421-85423 +85422-85423 +85424-85433 +85424-85433 +85425-85433 +85425-85428 +85426-85428 +85427-85428 +85429-85433 +85430-85433 +85431-85433 +85434-85445 +85434-85445 +85435-85445 +85436-85445 +85436-85441 +85437-85439 +85438-85439 +85442-85445 +85446-85458 +85446-85458 +85447-85458 +85447-85452 +85447-85448 +85449-85450 +85453-85458 +85454-85458 +85454-85455 +85457-85458 +85459-85475 +85459-85475 +85460-85461 +85463-85475 +85465-85475 +85465-85468 +85466-85468 +85467-85468 +85469-85475 +85470-85475 +85470 +85471-85472 +85473-85475 +85474-85475 +85476-85517 +85476-85517 +85477-85517 +85477-85500 +85477-85491 +85479-85480 +85481-85485 +85482-85485 +85483-85485 +85484-85485 +85486-85491 +85487-85491 +85488-85491 +85489-85491 +85490-85491 +85492-85500 +85493-85500 +85494-85496 +85495-85496 +85497-85498 +85499-85500 +85501-85517 +85502-85517 +85502-85509 +85504-85505 +85506-85509 +85507-85509 +85507-85508 +85510-85517 +85511-85517 +85511-85513 +85512-85513 +85514-85515 +85516-85517 +85518-85530 +85518-85530 +85519-85530 +85519-85522 +85523-85530 +85524-85530 +85525-85527 +85526-85527 +85529-85530 +85529-85530 +85531-85532 +85531-85532 +85532 +85533-85541 +85533-85541 +85533 +85534-85541 +85535-85541 +85536-85538 +85537-85538 +85540-85541 +85540-85541 +85542-85543 +85542-85543 +85544-85564 +85544-85564 +85546-85564 +85547-85564 +85547-85556 +85547-85552 +85551-85552 +85555-85556 +85557-85560 +85558-85560 +85559-85560 +85561-85564 +85562-85564 +85563-85564 +85565-85590 +85565-85590 +85566-85590 +85567-85568 +85569-85590 +85570-85590 +85570-85573 +85571-85573 +85572-85573 +85574-85582 +85575-85582 +85576-85577 +85578-85582 +85578-85580 +85578-85579 +85581-85582 +85583-85590 +85584-85590 +85584-85587 +85585-85587 +85586-85587 +85589-85590 +85591-85598 +85591-85598 +85593-85598 +85594-85598 +85595-85598 +85596-85598 +85597-85598 +85599-85624 +85599-85624 +85600-85624 +85600-85613 +85601-85613 +85602-85604 +85603-85604 +85606-85610 +85606-85607 +85608-85610 +85609-85610 +85611-85613 +85612-85613 +85617-85619 +85618-85619 +85621-85622 +85623-85624 +85625-85634 +85625-85634 +85626-85634 +85626-85630 +85627-85630 +85627-85629 +85628-85629 +85633-85634 +85635-85643 +85635-85643 +85636-85643 +85636-85637 +85640-85643 +85641-85643 +85644-85648 +85644-85648 +85645-85648 +85645-85647 +85646-85647 +85649-85669 +85649-85669 +85650-85669 +85650-85664 +85651-85658 +85651-85654 +85652-85654 +85653-85654 +85655-85658 +85656-85658 +85657-85658 +85660-85662 +85661-85662 +85663-85664 +85665-85669 +85666-85669 +85666-85669 +85666-85667 +85668-85669 +85670-85688 +85670-85688 +85671-85688 +85671-85675 +85671-85674 +85672-85674 +85673-85674 +85676-85688 +85677-85688 +85677-85680 +85678-85680 +85679-85680 +85681-85682 +85683-85688 +85684-85688 +85684-85685 +85686-85688 +85687-85688 +85689-85705 +85689-85705 +85690-85705 +85690 +85692-85695 +85693-85695 +85693-85694 +85696-85705 +85697-85705 +85697-85698 +85700-85701 +85702-85705 +85703-85705 +85703-85704 +85706-85714 +85706-85714 +85707-85714 +85707-85709 +85708-85709 +85710-85712 +85711-85712 +85711 +85715-85725 +85715-85725 +85716-85725 +85716-85719 +85717-85719 +85718-85719 +85720-85725 +85721-85725 +85722-85725 +85722-85723 +85724-85725 +85726-85736 +85726-85736 +85727-85736 +85728-85736 +85728-85730 +85729-85730 +85731-85736 +85733-85736 +85734-85736 +85735-85736 +85737-85754 +85737-85754 +85738-85754 +85738-85741 +85739-85741 +85740-85741 +85742-85754 +85744-85746 +85745-85746 +85747-85754 +85748-85754 +85752-85754 +85753-85754 +85755-85780 +85755-85780 +85756-85780 +85756-85757 +85756-85757 +85758-85759 +85761-85762 +85763-85767 +85764-85767 +85765-85767 +85766-85767 +85768-85776 +85769-85776 +85770-85776 +85772-85776 +85773-85776 +85774-85776 +85774-85775 +85777-85780 +85778-85780 +85779-85780 +85781-85804 +85781-85804 +85782-85804 +85782-85786 +85783-85786 +85784-85786 +85785-85786 +85787-85804 +85787-85794 +85787-85790 +85788-85790 +85789-85790 +85791-85794 +85792-85794 +85793-85794 +85796-85799 +85797-85799 +85798-85799 +85800-85804 +85801-85804 +85802-85804 +85803-85804 +85805-85824 +85805-85824 +85806-85824 +85808-85810 +85809-85810 +85811-85814 +85812-85814 +85813-85814 +85815-85824 +85816-85824 +85818-85824 +85819-85824 +85819-85820 +85821-85824 +85822-85824 +85823-85824 +85825-85827 +85825-85827 +85826-85827 +85828-85830 +85828-85830 +85828-85829 +85831-85832 +85831-85832 +85833-85854 +85833-85854 +85834-85854 +85834-85841 +85834-85835 +85838-85841 +85839-85841 +85840-85841 +85842-85854 +85843-85854 +85844-85854 +85844-85845 +85848-85854 +85849-85854 +85850-85851 +85853-85854 +85855-85867 +85855-85867 +85856-85867 +85856-85857 +85858-85859 +85860-85862 +85861-85862 +85864-85865 +85866-85867 +85868-85872 +85868-85872 +85869-85872 +85869-85870 +85873-85878 +85873-85878 +85874-85878 +85876-85877 +85879-85899 +85879-85899 +85880-85899 +85880-85888 +85880-85882 +85881-85882 +85883-85885 +85883-85884 +85886-85888 +85887-85888 +85889-85899 +85890-85899 +85892-85897 +85892-85896 +85892-85893 +85894-85896 +85895-85896 +85898-85899 +85900-85913 +85900-85913 +85901-85913 +85901-85909 +85901-85902 +85903-85904 +85905-85907 +85906-85907 +85910-85913 +85911-85913 +85911-85912 +85914-85926 +85914-85926 +85915-85926 +85916-85926 +85916-85918 +85916-85917 +85919-85926 +85920-85926 +85920-85921 +85922-85926 +85923-85924 +85925-85926 +85927-85932 +85927-85932 +85928-85932 +85928-85929 +85933-85934 +85933-85934 +85935-85956 +85935-85956 +85936-85956 +85936-85946 +85936-85937 +85936-85937 +85938-85946 +85939-85946 +85941-85946 +85941-85943 +85942-85943 +85947-85956 +85948-85956 +85949-85950 +85952-85953 +85954-85956 +85955-85956 +85957-85963 +85957-85963 +85958-85963 +85959-85963 +85960-85963 +85960-85961 +85964-85971 +85964-85971 +85965-85971 +85968-85971 +85969-85971 +85970-85971 +85972-85976 +85972-85976 +85973-85976 +85973-85974 +85977-85987 +85977-85987 +85978-85987 +85979-85982 +85979-85980 +85984-85987 +85984-85985 +85988-85999 +85988-85999 +85989-85999 +85989-85994 +85990-85994 +85990-85992 +85995-85999 +85996-85997 +85998-85999 +85999 +86000-86011 +86000-86011 +86001-86011 +86002-86011 +86003-86005 +86007-86011 +86007-86011 +86008-86011 +86008-86010 +86009-86010 +86012-86025 +86012-86025 +86013-86025 +86014-86025 +86015-86025 +86017-86024 +86018-86024 +86019-86024 +86021-86024 +86022-86024 +86023-86024 +86026-86036 +86026-86036 +86027-86036 +86027-86030 +86027-86028 +86028 +86031-86036 +86032-86036 +86032-86035 +86033-86035 +86034-86035 +86037-86049 +86037-86049 +86038-86049 +86039-86042 +86039-86041 +86039-86040 +86044-86049 +86044-86047 +86044-86047 +86044-86046 +86050-86067 +86050-86067 +86051-86067 +86051-86057 +86052-86057 +86052-86054 +86059-86061 +86063-86067 +86063-86067 +86064-86067 +86064-86066 +86065-86066 +86068-86082 +86068-86082 +86069-86082 +86070-86071 +86072-86077 +86073-86077 +86074-86077 +86075-86077 +86076-86077 +86078-86082 +86079-86082 +86080-86081 +86083-86120 +86083-86120 +86084-86120 +86084-86092 +86085-86088 +86086-86088 +86087-86088 +86089-86092 +86090-86092 +86091-86092 +86093-86120 +86094-86120 +86095-86120 +86095-86106 +86095-86096 +86097-86100 +86098-86100 +86099-86100 +86102-86106 +86103-86106 +86104-86106 +86105-86106 +86107-86120 +86108-86120 +86110-86120 +86111-86120 +86111-86114 +86112-86114 +86113-86114 +86115-86120 +86116-86120 +86117-86120 +86118-86120 +86119-86120 +86121-86123 +86121-86123 +86121-86122 +86124-86132 +86124-86132 +86127-86132 +86128-86132 +86128-86131 +86129-86131 +86130-86131 +86133-86141 +86133-86141 +86134-86135 +86136-86141 +86137-86141 +86137-86138 +86139-86141 +86140-86141 +86142-86156 +86142-86156 +86143-86156 +86144-86156 +86144-86151 +86145-86151 +86145-86146 +86147-86148 +86150-86151 +86152-86156 +86153-86156 +86153-86154 +86155-86156 +86157-86164 +86157-86164 +86158-86164 +86158-86159 +86161-86164 +86162-86164 +86163-86164 +86165-86184 +86165-86184 +86166-86184 +86166-86171 +86167-86171 +86168-86171 +86169-86171 +86170-86171 +86172-86174 +86173-86174 +86177-86184 +86178-86184 +86179-86184 +86180-86184 +86180-86181 +86182-86184 +86183-86184 +86185-86230 +86185-86230 +86186-86230 +86186-86195 +86186-86195 +86186-86189 +86187-86189 +86188-86189 +86190-86195 +86190-86191 +86193-86195 +86194-86195 +86196-86214 +86196-86197 +86198-86208 +86198-86200 +86199-86200 +86202-86208 +86202-86205 +86203-86205 +86204-86205 +86206-86208 +86207-86208 +86210-86211 +86212-86214 +86213-86214 +86215-86230 +86216-86230 +86216-86219 +86217-86219 +86218-86219 +86221-86230 +86222-86230 +86223-86230 +86224-86230 +86225-86230 +86226-86227 +86229-86230 +86231-86246 +86231-86246 +86232-86246 +86232-86239 +86232-86235 +86233-86235 +86233-86234 +86236-86238 +86237-86238 +86240-86246 +86241-86246 +86241-86243 +86242-86243 +86242-86243 +86244-86246 +86245-86246 +86247-86260 +86247-86260 +86248-86260 +86248-86252 +86248-86251 +86249-86251 +86250-86251 +86253-86260 +86254-86260 +86254-86257 +86255-86257 +86256-86257 +86258-86260 +86259-86260 +86261-86278 +86261-86278 +86262-86278 +86262-86275 +86262-86268 +86262-86265 +86263-86265 +86264-86265 +86267-86268 +86269-86275 +86270-86275 +86270-86273 +86271-86273 +86272-86273 +86276-86278 +86277-86278 +86279-86287 +86279-86287 +86280-86287 +86280-86283 +86281-86283 +86281-86282 +86284-86285 +86288-86302 +86288-86302 +86289-86302 +86291-86296 +86292-86293 +86295-86296 +86297-86302 +86298-86302 +86298-86299 +86301-86302 +86303-86313 +86303-86313 +86304-86313 +86304-86309 +86305-86309 +86306-86307 +86314-86330 +86314-86330 +86315-86330 +86315-86318 +86316-86318 +86317-86318 +86319-86324 +86320-86324 +86320-86321 +86323-86324 +86325-86330 +86326-86330 +86326-86327 +86329-86330 +86331-86362 +86331-86362 +86332-86362 +86332-86343 +86333-86343 +86333-86340 +86334-86340 +86335-86340 +86336-86340 +86337-86338 +86339-86340 +86342-86343 +86344-86349 +86345-86349 +86346-86347 +86348-86349 +86351-86355 +86352-86355 +86353-86355 +86354-86355 +86356-86362 +86357-86362 +86358-86362 +86358-86360 +86359-86360 +86361-86362 +86363-86374 +86363-86374 +86364-86374 +86365-86374 +86365 +86366-86367 +86368-86374 +86369-86370 +86371-86374 +86372-86374 +86372-86373 +86375-86390 +86375-86390 +86376-86390 +86376-86381 +86376-86379 +86377-86379 +86377-86378 +86381 +86382-86390 +86383-86390 +86383-86389 +86384-86389 +86385-86388 +86386-86388 +86387-86388 +86391-86399 +86391-86399 +86392-86399 +86392-86395 +86393-86394 +86397-86398 +86400-86417 +86400-86417 +86401-86417 +86402-86407 +86403-86404 +86406-86407 +86409-86417 +86410-86417 +86410-86411 +86412-86417 +86412-86413 +86415-86417 +86415-86417 +86416-86417 +86418-86428 +86418-86428 +86418-86420 +86419-86420 +86422-86424 +86423-86424 +86425-86428 +86426-86428 +86427-86428 +86429-86433 +86429-86433 +86430-86433 +86430-86431 +86431 +86432-86433 +86434-86444 +86434-86444 +86434-86436 +86435-86436 +86435-86436 +86437-86439 +86438-86439 +86438-86439 +86440-86441 +86441 +86442-86444 +86443-86444 +86445-86461 +86445-86461 +86446-86461 +86447-86461 +86448-86461 +86450-86454 +86451-86454 +86452-86454 +86453-86454 +86455-86461 +86456-86461 +86457-86461 +86457-86460 +86458-86460 +86459-86460 +86462-86473 +86462-86473 +86463-86473 +86463-86466 +86464-86466 +86465-86466 +86467-86472 +86468-86472 +86469-86472 +86470-86472 +86471-86472 +86474-86507 +86474-86507 +86475-86507 +86475-86487 +86475-86476 +86477-86478 +86480-86487 +86483-86487 +86484-86487 +86485-86487 +86486-86487 +86488-86507 +86489-86507 +86489-86492 +86490-86492 +86491-86492 +86494-86498 +86495-86498 +86496-86498 +86497-86498 +86499-86507 +86500-86507 +86501-86507 +86502-86507 +86503-86507 +86504-86507 +86505-86507 +86506-86507 +86508-86519 +86508-86519 +86509-86519 +86510-86519 +86511-86519 +86511-86513 +86512-86513 +86514-86516 +86515-86516 +86517-86519 +86518-86519 +86520-86543 +86520-86543 +86521-86543 +86522 +86524-86543 +86524-86533 +86525-86533 +86526-86533 +86526-86530 +86526-86529 +86527-86529 +86528-86529 +86531-86533 +86532-86533 +86534-86535 +86537-86543 +86538-86543 +86539-86543 +86540-86543 +86541-86543 +86542-86543 +86544-86547 +86544-86547 +86545-86547 +86545-86546 +86548-86553 +86548-86553 +86549-86553 +86549-86550 +86550 +86554-86559 +86554-86559 +86555-86559 +86555-86557 +86560-86568 +86560-86568 +86561-86568 +86561-86565 +86562-86565 +86562-86564 +86566-86567 +86569-86577 +86569-86577 +86570-86577 +86571-86573 +86572-86573 +86575-86577 +86576-86577 +86578-86592 +86578-86592 +86579-86592 +86579-86585 +86579-86583 +86580-86583 +86582-86583 +86583 +86586-86592 +86587-86592 +86587-86589 +86588-86589 +86591-86592 +86593-86609 +86593-86609 +86594-86609 +86594-86597 +86595-86597 +86596-86597 +86599-86603 +86600-86603 +86601-86603 +86602-86603 +86604-86609 +86605-86609 +86605-86606 +86608-86609 +86610-86662 +86610-86662 +86611-86662 +86611-86625 +86612-86625 +86613-86625 +86613-86620 +86613-86616 +86614-86616 +86615-86616 +86619-86620 +86621-86625 +86621-86625 +86622-86625 +86622-86623 +86626-86662 +86627-86662 +86627-86644 +86627-86628 +86631-86636 +86632-86636 +86633-86636 +86634-86636 +86635-86636 +86637-86644 +86638-86644 +86639-86644 +86642-86644 +86643-86644 +86645-86650 +86646-86650 +86646-86647 +86651-86656 +86652-86656 +86652-86653 +86657-86662 +86658-86662 +86658-86659 +86663-86667 +86663-86667 +86664-86667 +86666-86667 +86668-86675 +86668-86675 +86668-86672 +86669-86672 +86669-86670 +86671-86672 +86674-86675 +86676-86697 +86676-86697 +86677-86697 +86677-86688 +86677-86682 +86678-86680 +86679-86680 +86683-86688 +86684-86688 +86684-86686 +86685-86686 +86691-86693 +86692-86693 +86694-86695 +86698-86702 +86698-86702 +86700-86702 +86701-86702 +86703-86705 +86703-86705 +86704-86705 +86705 +86706-86708 +86706-86708 +86707-86708 +86708 +86709-86726 +86709-86726 +86709-86726 +86709-86721 +86709-86715 +86709-86710 +86711-86715 +86712-86715 +86712 +86713-86715 +86714-86715 +86716-86721 +86718-86721 +86719-86721 +86720-86721 +86722-86726 +86725-86726 +86727-86760 +86727-86760 +86727-86734 +86730-86734 +86731-86734 +86732-86734 +86733-86734 +86735-86760 +86735-86747 +86735-86747 +86736-86737 +86738-86739 +86740-86741 +86742-86743 +86744-86745 +86746-86747 +86748-86760 +86749-86760 +86750-86760 +86751-86760 +86751-86756 +86751-86752 +86754-86756 +86755-86756 +86757-86760 +86758-86760 +86759-86760 +86761-86769 +86761-86769 +86762-86769 +86762-86764 +86763-86764 +86766-86769 +86767-86769 +86768-86769 +86770-86809 +86770-86809 +86771-86809 +86772-86809 +86773-86809 +86773-86794 +86773-86776 +86773-86774 +86775-86776 +86777-86780 +86777-86778 +86779-86780 +86781-86786 +86781-86782 +86782 +86783-86784 +86784 +86785-86786 +86787-86794 +86787-86788 +86789-86790 +86791-86794 +86792-86794 +86793-86794 +86796-86809 +86798-86809 +86799-86809 +86799-86802 +86800-86802 +86801-86802 +86803-86809 +86804-86809 +86805-86809 +86805-86806 +86807-86809 +86808-86809 +86810-86834 +86810-86834 +86810-86815 +86812-86813 +86814-86815 +86816-86834 +86818-86820 +86819-86820 +86821-86823 +86822-86823 +86824-86834 +86825-86834 +86825-86828 +86829-86834 +86830-86834 +86830-86831 +86832-86834 +86833-86834 +86835-86884 +86835-86884 +86836-86884 +86837-86838 +86839-86843 +86841-86843 +86842-86843 +86844-86884 +86845-86884 +86845-86852 +86845-86847 +86846-86847 +86848-86852 +86849-86852 +86849-86850 +86851-86852 +86853-86884 +86855-86884 +86856-86884 +86856-86873 +86857-86873 +86857-86858 +86859-86861 +86860-86861 +86862-86864 +86863-86864 +86865-86867 +86866-86867 +86868-86870 +86869-86870 +86871-86873 +86872-86873 +86874-86876 +86875-86876 +86877-86884 +86878-86884 +86878-86879 +86880-86884 +86880-86881 +86882-86884 +86883-86884 +86885-86894 +86885-86894 +86885-86889 +86886-86889 +86886-86888 +86887-86888 +86891-86893 +86892-86893 +86894 +86895-86903 +86895-86903 +86896-86903 +86896-86897 +86899-86903 +86900-86903 +86901-86903 +86902-86903 +86904-86924 +86904-86924 +86905-86924 +86906-86918 +86906-86911 +86906-86909 +86906-86909 +86907-86909 +86908-86909 +86912-86918 +86913-86918 +86913-86916 +86914-86916 +86915-86916 +86920-86924 +86920-86921 +86925-86943 +86925-86943 +86925-86926 +86927-86943 +86928-86935 +86928-86931 +86928-86931 +86929-86931 +86930-86931 +86933-86935 +86934-86935 +86937-86943 +86937-86940 +86938-86940 +86939-86940 +86942-86943 +86944-86958 +86944-86958 +86945-86958 +86945-86947 +86946-86947 +86949-86958 +86949-86953 +86949-86952 +86950-86952 +86950-86951 +86954-86958 +86955-86958 +86956-86957 +86959-86972 +86959-86972 +86960-86972 +86961 +86963-86972 +86963-86964 +86967-86972 +86968-86972 +86969-86972 +86970-86972 +86971-86972 +86973-87004 +86973-87004 +86974-87004 +86974-86996 +86974-86981 +86974-86975 +86976-86981 +86977-86981 +86978-86981 +86979-86981 +86980-86981 +86982-86996 +86983-86996 +86983-86988 +86984-86988 +86984-86985 +86986-86988 +86987-86988 +86990-86996 +86991-86992 +86994-86996 +86995-86996 +86996 +86997-87004 +86999-87004 +87000-87004 +87000-87001 +87003-87004 +87005-87013 +87005-87013 +87006-87013 +87007-87013 +87007-87009 +87007-87008 +87010-87013 +87011-87013 +87011-87012 +87014-87016 +87014-87016 +87015-87016 +87017-87021 +87017-87021 +87018-87021 +87019-87021 +87020-87021 +87022-87023 +87022-87023 +87024-87036 +87024-87036 +87025-87036 +87025-87026 +87028-87036 +87028-87031 +87029-87031 +87030-87031 +87032-87036 +87033-87036 +87034-87036 +87035-87036 +87037-87048 +87037-87048 +87038-87048 +87039-87048 +87039-87048 +87040-87044 +87040-87041 +87041 +87042-87044 +87043-87044 +87044 +87046-87048 +87047-87048 +87047 +87049-87077 +87049-87077 +87050-87077 +87051-87052 +87053-87054 +87055-87077 +87056-87077 +87056-87060 +87056-87058 +87057-87058 +87061-87077 +87061-87067 +87062-87067 +87063-87064 +87065-87067 +87066-87067 +87068-87077 +87069-87077 +87070-87077 +87071-87073 +87072-87073 +87074-87077 +87075-87077 +87076-87077 +87078-87086 +87078-87086 +87079-87086 +87080-87086 +87080-87082 +87080-87081 +87083-87086 +87084-87086 +87084-87085 +87087-87098 +87087-87098 +87088-87098 +87090-87098 +87093-87098 +87094-87098 +87094-87096 +87095-87096 +87099-87108 +87099-87108 +87099-87100 +87099-87100 +87102-87108 +87104-87108 +87105-87108 +87106-87108 +87107-87108 +87109-87118 +87109-87118 +87110-87118 +87111-87112 +87113-87114 +87114 +87115-87118 +87119-87140 +87119-87140 +87120-87140 +87121-87140 +87122-87123 +87124-87126 +87125-87126 +87127-87140 +87127-87130 +87128-87130 +87129-87130 +87132-87140 +87133-87140 +87133-87136 +87134-87136 +87135-87136 +87137-87140 +87138-87140 +87139-87140 +87141-87189 +87141-87189 +87142-87189 +87143-87189 +87143-87162 +87143-87144 +87145-87153 +87146-87153 +87146-87148 +87147-87148 +87149-87153 +87150-87153 +87151-87153 +87152-87153 +87155-87157 +87156-87157 +87158-87162 +87158-87159 +87160-87162 +87161-87162 +87163-87189 +87164-87189 +87165-87189 +87166-87170 +87167-87170 +87168-87170 +87169-87170 +87171-87181 +87172-87181 +87172-87180 +87172-87177 +87172-87173 +87174-87177 +87176-87177 +87178-87180 +87182-87189 +87183-87185 +87184-87185 +87187-87189 +87188-87189 +87190-87207 +87190-87207 +87191-87207 +87191-87194 +87192-87194 +87193-87194 +87196-87207 +87196-87202 +87197-87200 +87198-87200 +87199-87200 +87201-87202 +87203-87207 +87204-87207 +87204-87206 +87205-87206 +87207 +87208-87224 +87208-87224 +87209-87224 +87210-87224 +87211-87224 +87212-87224 +87213-87224 +87213-87219 +87216-87219 +87217-87218 +87220-87224 +87222-87224 +87223-87224 +87224 +87225-87245 +87225-87245 +87226-87245 +87228-87230 +87229-87230 +87231-87245 +87231-87242 +87232-87242 +87233-87237 +87234-87237 +87235-87237 +87236-87237 +87238-87242 +87239-87242 +87240-87242 +87241-87242 +87243-87245 +87243-87244 +87246-87255 +87246-87255 +87247-87255 +87248-87250 +87248-87250 +87249-87250 +87253-87255 +87254-87255 +87256-87275 +87256-87275 +87257-87275 +87258-87275 +87260-87275 +87260-87266 +87261-87266 +87262-87263 +87267-87275 +87267-87270 +87268-87270 +87268-87269 +87271-87275 +87272-87275 +87273-87275 +87273-87274 +87276-87278 +87276-87278 +87277-87278 +87279-87291 +87279-87291 +87280-87291 +87280-87284 +87281-87284 +87282-87284 +87286-87291 +87287-87291 +87288-87291 +87289-87291 +87290-87291 +87292-87300 +87292-87300 +87293-87300 +87294-87296 +87295-87296 +87297-87298 +87301-87310 +87301-87310 +87301-87302 +87301-87302 +87303-87310 +87304-87310 +87305-87306 +87305-87306 +87308-87310 +87309-87310 +87309-87310 +87311-87333 +87311-87333 +87311-87315 +87312-87315 +87313-87315 +87314-87315 +87316-87333 +87317-87333 +87318-87333 +87319-87326 +87320-87321 +87322-87326 +87322-87323 +87324-87326 +87325-87326 +87327-87333 +87328-87333 +87328-87331 +87329-87331 +87330-87331 +87334-87350 +87334-87350 +87334 +87336-87350 +87336-87348 +87336-87340 +87337-87340 +87338-87340 +87339-87340 +87341-87348 +87342-87348 +87343-87348 +87343-87346 +87344-87346 +87345-87346 +87347-87348 +87349-87350 +87351-87361 +87351-87361 +87352-87361 +87354-87361 +87355-87361 +87355-87357 +87355-87356 +87358-87361 +87359-87361 +87360-87361 +87362-87378 +87362-87378 +87363-87378 +87363-87372 +87363-87367 +87364-87367 +87365-87367 +87365-87366 +87368-87372 +87369-87372 +87369-87371 +87369-87370 +87373-87376 +87374-87376 +87375-87376 +87379-87387 +87379-87387 +87380-87387 +87380-87381 +87383-87384 +87385-87387 +87386-87387 +87387 +87388-87402 +87388-87402 +87389-87402 +87391-87402 +87392-87402 +87392-87396 +87392-87396 +87392-87393 +87394-87396 +87395-87396 +87397-87399 +87398-87399 +87398 +87401-87402 +87403-87424 +87403-87424 +87404-87424 +87404-87407 +87405-87407 +87405-87406 +87410-87424 +87412-87415 +87413-87415 +87414-87415 +87416-87424 +87416-87420 +87418-87420 +87419-87420 +87421-87424 +87423-87424 +87425-87436 +87425-87436 +87426-87436 +87426-87430 +87428-87430 +87429-87430 +87431-87436 +87433-87436 +87434-87435 +87437-87484 +87437-87484 +87438-87484 +87440-87484 +87440-87461 +87440-87453 +87440-87441 +87442-87443 +87445-87453 +87445-87453 +87445-87448 +87446-87448 +87447-87448 +87449-87453 +87450-87453 +87451-87453 +87452-87453 +87454-87461 +87456-87461 +87457-87461 +87457-87459 +87458-87459 +87460-87461 +87462-87484 +87463-87484 +87463-87483 +87464-87483 +87464-87470 +87465-87468 +87466-87468 +87467-87468 +87469-87470 +87471-87483 +87472-87483 +87473-87476 +87474-87476 +87475-87476 +87477-87483 +87478-87483 +87478-87479 +87482-87483 +87484 +87485-87494 +87485-87494 +87486-87494 +87486-87489 +87488-87489 +87490-87494 +87491-87494 +87493-87494 +87495-87505 +87495-87505 +87496-87505 +87497-87498 +87499-87505 +87499-87503 +87500-87503 +87501-87503 +87502-87503 +87506-87524 +87506-87524 +87507-87524 +87507-87513 +87509-87513 +87510-87513 +87510-87511 +87512-87513 +87514-87524 +87515-87524 +87515-87517 +87516-87517 +87519-87524 +87520-87524 +87521-87524 +87522-87524 +87523-87524 +87525-87533 +87525-87533 +87526-87533 +87526-87532 +87527-87532 +87528-87532 +87530-87532 +87531-87532 +87534-87540 +87534-87540 +87535-87540 +87537-87540 +87538-87540 +87541-87546 +87541-87546 +87542-87546 +87544-87546 +87547-87551 +87547-87551 +87548-87551 +87550-87551 +87551 +87552-87557 +87552-87557 +87553-87557 +87555-87557 +87556-87557 +87558-87566 +87558-87566 +87559-87566 +87560-87566 +87562-87566 +87563-87566 +87564-87566 +87565-87566 +87567-87572 +87567-87572 +87568-87572 +87571-87572 +87573-87581 +87573-87581 +87574-87581 +87576-87581 +87576 +87579-87581 +87580-87581 +87582-87592 +87582-87592 +87583-87592 +87583-87586 +87583-87584 +87585-87586 +87587-87592 +87588-87592 +87588-87589 +87590-87592 +87591-87592 +87593-87597 +87593-87597 +87594-87597 +87595-87597 +87596-87597 +87598-87615 +87598-87615 +87599-87615 +87599-87606 +87599-87602 +87600-87602 +87601-87602 +87604-87606 +87605-87606 +87607-87615 +87608-87615 +87608-87612 +87609-87612 +87610-87612 +87611-87612 +87613-87615 +87614-87615 +87616-87621 +87616-87621 +87617-87621 +87618-87621 +87619-87621 +87622-87635 +87622-87635 +87625-87635 +87625-87630 +87628-87630 +87629-87630 +87631-87635 +87631-87633 +87632-87633 +87636-87651 +87636-87651 +87637-87651 +87637-87638 +87639-87651 +87640-87651 +87641-87651 +87641-87645 +87642-87645 +87643-87645 +87646-87651 +87648-87651 +87649-87651 +87652-87668 +87652-87668 +87653-87668 +87653-87655 +87654-87655 +87657-87668 +87657-87659 +87658-87659 +87661-87663 +87662-87663 +87664-87668 +87665-87668 +87666-87668 +87666 +87667-87668 +87668 +87669-87677 +87669-87677 +87670-87677 +87671-87677 +87672-87677 +87673-87674 +87675-87677 +87676-87677 +87678-87679 +87678-87679 +87680-87689 +87680-87689 +87681-87689 +87681-87682 +87685-87689 +87686-87689 +87686-87687 +87688-87689 +87690-87698 +87690-87698 +87692-87693 +87694-87698 +87694-87696 +87695-87696 +87697-87698 +87699-87731 +87699-87731 +87700-87731 +87702-87731 +87702-87703 +87706-87707 +87708-87731 +87709-87731 +87710-87711 +87712-87714 +87713-87714 +87715-87731 +87715 +87716-87719 +87716-87718 +87717-87718 +87720-87723 +87720-87722 +87721-87722 +87724-87731 +87724-87726 +87727-87731 +87728-87731 +87729-87731 +87730-87731 +87732-87737 +87732-87737 +87733-87737 +87736-87737 +87738-87747 +87738-87747 +87740-87747 +87740-87741 +87742-87747 +87746-87747 +87748-87759 +87748-87759 +87749-87759 +87750-87754 +87751-87754 +87752-87754 +87753-87754 +87756-87758 +87757-87758 +87760-87771 +87760-87771 +87761-87771 +87761-87762 +87762 +87764-87765 +87766-87771 +87767-87771 +87767-87768 +87772-87783 +87772-87783 +87773-87783 +87773 +87774-87779 +87774-87776 +87780-87783 +87781-87783 +87781-87782 +87784-87808 +87784-87808 +87785-87808 +87785-87787 +87785-87786 +87788-87808 +87789-87808 +87790-87808 +87792-87793 +87794-87804 +87794-87795 +87796-87804 +87796-87799 +87797-87799 +87798-87799 +87800-87804 +87801-87804 +87802-87804 +87803-87804 +87805-87808 +87806-87808 +87807-87808 +87809-87841 +87809-87841 +87810-87841 +87812-87841 +87812-87827 +87813-87815 +87814-87815 +87816-87827 +87816-87817 +87818-87820 +87819-87820 +87821-87823 +87822-87823 +87824-87827 +87825-87827 +87826-87827 +87828-87834 +87829-87831 +87830-87831 +87832-87834 +87833-87834 +87835-87841 +87836-87841 +87836-87838 +87837-87838 +87839-87840 +87842-87847 +87842-87847 +87843-87847 +87844-87847 +87845-87847 +87845 +87846-87847 +87847 +87848-87849 +87848-87849 +87850-87861 +87850-87861 +87851-87861 +87851-87853 +87852-87853 +87854-87855 +87856-87857 +87858-87861 +87859-87861 +87860-87861 +87862-87879 +87862-87879 +87863-87879 +87863-87874 +87864-87874 +87864-87868 +87864-87866 +87865-87866 +87867-87868 +87869-87874 +87870-87874 +87870-87872 +87871-87872 +87873-87874 +87875-87876 +87877-87879 +87878-87879 +87880-87884 +87880-87884 +87881-87884 +87882-87884 +87883-87884 +87885-87907 +87885-87907 +87886-87907 +87887-87907 +87887-87896 +87887-87892 +87888-87892 +87891-87892 +87893-87895 +87894-87895 +87898-87907 +87899-87907 +87899-87902 +87900-87902 +87901-87902 +87903-87907 +87904-87907 +87905-87907 +87906-87907 +87908-87922 +87908-87922 +87909-87922 +87909-87914 +87910-87914 +87910-87912 +87911-87912 +87913-87914 +87916-87917 +87918-87922 +87919-87922 +87921-87922 +87923-87930 +87923-87930 +87924-87930 +87924-87927 +87925-87927 +87925-87926 +87928-87930 +87929-87930 +87931-87938 +87931-87938 +87932-87938 +87932-87935 +87933-87935 +87933-87934 +87936-87938 +87937-87938 +87939-87964 +87939-87964 +87940-87964 +87940-87960 +87941-87960 +87941-87944 +87941-87943 +87942-87943 +87945-87960 +87946-87960 +87946-87951 +87947-87948 +87950-87951 +87952-87960 +87953-87960 +87953-87959 +87954-87959 +87955-87959 +87956-87959 +87957-87959 +87958-87959 +87961-87964 +87963-87964 +87965-87976 +87965-87976 +87966-87976 +87966-87967 +87967 +87968-87976 +87969-87972 +87970-87971 +87974-87976 +87974-87975 +87977-87983 +87977-87983 +87978-87983 +87979-87983 +87979-87980 +87981-87983 +87982-87983 +87984-87992 +87984-87992 +87984 +87985-87992 +87985-87987 +87985-87986 +87988-87992 +87989-87992 +87990-87991 +87993-87997 +87993-87997 +87994-87995 +87997 +87998-88010 +87998-88010 +87999-88010 +87999-88007 +88000-88007 +88000-88001 +88002-88005 +88003-88005 +88003-88004 +88011-88016 +88011-88016 +88012-88016 +88013-88016 +88013-88015 +88014-88015 +88017-88034 +88017-88034 +88017-88021 +88018-88021 +88018-88020 +88019-88020 +88020 +88022-88030 +88023-88030 +88023-88024 +88025-88026 +88027-88030 +88028-88030 +88029-88030 +88031-88034 +88032-88034 +88032-88033 +88035-88042 +88035-88042 +88036-88042 +88037-88041 +88038-88041 +88040-88041 +88043-88050 +88043-88050 +88044-88050 +88046-88047 +88048-88050 +88051-88075 +88051-88075 +88052-88075 +88052-88065 +88053-88065 +88053-88059 +88054-88058 +88055-88058 +88056-88058 +88056-88057 +88060-88065 +88061-88065 +88061-88062 +88064-88065 +88066-88067 +88068-88071 +88069-88071 +88070-88071 +88073-88075 +88074-88075 +88076-88109 +88076-88109 +88077-88109 +88077 +88080-88084 +88082-88084 +88082-88083 +88085-88090 +88086-88090 +88088-88089 +88091-88109 +88092-88109 +88092-88104 +88093-88094 +88095-88096 +88098-88104 +88099-88104 +88100-88103 +88101-88103 +88102-88103 +88105-88109 +88106-88109 +88107-88108 +88110-88120 +88110-88120 +88111-88120 +88112-88120 +88112-88116 +88113-88114 +88115-88116 +88116 +88117-88120 +88119-88120 +88121-88132 +88121-88132 +88122-88132 +88124-88127 +88125-88127 +88125-88126 +88128-88132 +88129-88132 +88130-88132 +88131-88132 +88133-88147 +88133-88147 +88133-88139 +88134-88139 +88134-88136 +88135-88136 +88138-88139 +88140-88147 +88141-88147 +88141-88143 +88142-88143 +88145-88147 +88146-88147 +88148-88156 +88148-88156 +88149-88156 +88150-88156 +88150-88151 +88152-88156 +88153-88156 +88154-88156 +88155-88156 +88157-88182 +88157-88182 +88158-88182 +88158-88169 +88159-88169 +88159-88163 +88162-88163 +88164-88169 +88165-88169 +88167-88169 +88168-88169 +88171-88172 +88175-88177 +88176-88177 +88178-88182 +88179-88182 +88179-88180 +88183-88194 +88183-88194 +88184-88194 +88185-88186 +88187-88188 +88189-88190 +88191-88194 +88192-88194 +88192-88193 +88195-88212 +88195-88212 +88195-88202 +88196-88202 +88196-88202 +88197-88202 +88197-88201 +88198-88199 +88200-88201 +88203-88212 +88204-88212 +88204-88207 +88205-88207 +88206-88207 +88208-88212 +88209-88212 +88210-88212 +88211-88212 +88213-88217 +88213-88217 +88214-88217 +88216-88217 +88218-88222 +88218-88222 +88219-88222 +88220-88221 +88223-88229 +88223-88229 +88224-88229 +88224-88226 +88227-88229 +88228-88229 +88230-88240 +88230-88240 +88231-88240 +88231-88238 +88231-88232 +88233-88235 +88234-88235 +88236-88238 +88237-88238 +88239-88240 +88241-88247 +88241-88247 +88242-88243 +88244-88246 +88245-88246 +88247 +88248-88270 +88248-88270 +88249-88270 +88249 +88251-88255 +88252-88255 +88253-88255 +88254-88255 +88256-88270 +88258-88260 +88259-88260 +88261-88266 +88261-88263 +88261-88262 +88262 +88264-88266 +88264-88265 +88267-88270 +88267-88270 +88268-88270 +88269-88270 +88271-88297 +88271-88297 +88272-88297 +88273-88276 +88274-88276 +88274-88275 +88278-88297 +88279-88282 +88280-88282 +88281-88282 +88283-88297 +88284-88297 +88285-88297 +88287-88297 +88288-88297 +88289-88297 +88289-88291 +88290-88291 +88292-88297 +88293-88297 +88294-88295 +88296-88297 +88298-88328 +88298-88328 +88299-88328 +88300-88305 +88301-88305 +88301-88302 +88303-88305 +88304-88305 +88306-88310 +88307-88310 +88308-88310 +88309-88310 +88311-88328 +88312-88316 +88313-88316 +88314-88316 +88314-88315 +88318-88328 +88319-88321 +88320-88321 +88321 +88322-88328 +88323-88328 +88324-88325 +88327-88328 +88329-88359 +88329-88359 +88330-88359 +88330-88345 +88331-88345 +88331-88336 +88331-88333 +88332-88333 +88334-88335 +88337-88345 +88338-88345 +88338-88340 +88338-88339 +88342-88344 +88343-88344 +88346-88353 +88347-88348 +88349-88350 +88352-88353 +88354-88359 +88355-88359 +88355-88357 +88356-88357 +88358-88359 +88360-88405 +88360-88405 +88361-88405 +88361-88369 +88362-88363 +88364-88369 +88365-88369 +88365-88366 +88367-88369 +88368-88369 +88370-88405 +88370-88376 +88370-88371 +88371 +88372-88376 +88372-88376 +88373-88376 +88374-88376 +88375-88376 +88377-88381 +88377-88378 +88378 +88379-88381 +88379-88381 +88380-88381 +88382-88387 +88383-88387 +88383-88384 +88384 +88385-88387 +88386-88387 +88388-88393 +88389-88393 +88389-88390 +88390 +88391-88393 +88392-88393 +88394-88397 +88394-88395 +88395 +88396-88397 +88398-88401 +88398-88399 +88399 +88400-88401 +88402-88405 +88402-88403 +88403 +88404-88405 +88406-88408 +88406-88408 +88406-88407 +88409-88414 +88409-88414 +88409-88411 +88410-88411 +88412-88414 +88413-88414 +88415-88450 +88415-88450 +88415-88419 +88415-88416 +88417-88418 +88420-88423 +88420-88421 +88424-88427 +88424-88425 +88428-88430 +88428-88429 +88431-88433 +88431-88432 +88434-88436 +88434-88435 +88437-88439 +88437-88438 +88440-88442 +88440-88441 +88443-88447 +88443-88446 +88444-88446 +88445-88446 +88448-88450 +88448-88449 +88451-88457 +88451-88457 +88452-88453 +88453 +88454-88457 +88454 +88455-88457 +88456-88457 +88458-88463 +88458-88463 +88458-88460 +88459-88460 +88460 +88461-88463 +88462-88463 +88463 +88464-88476 +88464-88476 +88464-88465 +88466-88467 +88469-88476 +88470-88472 +88470-88471 +88474-88476 +88474-88475 +88477-88481 +88477-88481 +88480-88481 +88482-88486 +88482-88486 +88484-88485 +88487-88491 +88487-88491 +88489-88491 +88490-88491 +88492-88500 +88492-88500 +88492-88493 +88493 +88494-88496 +88495-88496 +88497-88499 +88498-88499 +88501-88517 +88501-88517 +88501 +88502-88509 +88503-88504 +88506-88509 +88508-88509 +88510-88517 +88511-88517 +88512-88517 +88512-88515 +88512-88513 +88514-88515 +88516-88517 +88518-88525 +88518-88525 +88519-88525 +88519-88523 +88520-88523 +88521-88523 +88522-88523 +88526-88529 +88526-88529 +88526-88527 +88527 +88530-88539 +88530-88539 +88531-88539 +88531-88532 +88533-88534 +88536-88539 +88537-88539 +88538-88539 +88540-88551 +88540-88551 +88540-88544 +88542-88544 +88543-88544 +88545-88551 +88546-88551 +88547-88549 +88548-88549 +88550-88551 +88552-88556 +88552-88556 +88552-88553 +88554-88555 +88555 +88557-88571 +88557-88571 +88558-88571 +88558-88564 +88561-88564 +88562-88564 +88563-88564 +88565-88571 +88566-88571 +88566-88567 +88567 +88568-88569 +88570-88571 +88572-88587 +88572-88587 +88573-88587 +88573-88581 +88573-88576 +88574-88576 +88575-88576 +88577-88580 +88578-88580 +88578-88579 +88582-88587 +88583-88587 +88583-88584 +88584 +88588-88599 +88588-88599 +88589-88599 +88589-88590 +88593-88599 +88594-88596 +88595-88596 +88598-88599 +88600-88605 +88600-88605 +88601-88605 +88602-88605 +88604-88605 +88606-88613 +88606-88613 +88606-88608 +88606-88607 +88609-88613 +88610-88613 +88612-88613 +88614-88621 +88614-88621 +88615-88621 +88615-88616 +88619-88621 +88620-88621 +88622-88627 +88622-88627 +88623-88627 +88623-88626 +88624-88626 +88624-88625 +88628-88633 +88628-88633 +88629-88633 +88629-88630 +88631-88632 +88634-88644 +88634-88644 +88635-88644 +88635-88637 +88635-88636 +88638-88644 +88639-88640 +88641-88644 +88642-88644 +88642-88643 +88645-88657 +88645-88657 +88646-88657 +88647-88657 +88648-88657 +88649-88652 +88650-88652 +88651-88652 +88654-88657 +88655-88657 +88656-88657 +88658-88671 +88658-88671 +88659-88671 +88659-88663 +88659-88660 +88661-88662 +88664-88671 +88665-88671 +88665-88666 +88668-88671 +88668-88670 +88669-88670 +88672-88695 +88672-88695 +88672-88675 +88674-88675 +88676-88695 +88676-88680 +88676-88678 +88677-88678 +88679-88680 +88681-88685 +88681-88683 +88682-88683 +88684-88685 +88686-88690 +88686-88688 +88687-88688 +88689-88690 +88691-88695 +88691-88693 +88692-88693 +88694-88695 +88696-88703 +88696-88703 +88699-88703 +88700-88703 +88701-88703 +88702-88703 +88704-88710 +88704-88710 +88705-88710 +88705-88708 +88706-88708 +88707-88708 +88711-88738 +88711-88738 +88712-88738 +88712-88725 +88712-88720 +88712-88720 +88713-88720 +88713-88714 +88715-88716 +88717-88718 +88719-88720 +88721-88725 +88722-88725 +88723-88725 +88723-88725 +88724-88725 +88726-88738 +88726-88729 +88727-88729 +88727-88728 +88731-88738 +88732-88738 +88733-88738 +88734-88736 +88735-88736 +88737-88738 +88738 +88739-88745 +88739-88745 +88739-88740 +88741-88742 +88746-88750 +88746-88750 +88747-88750 +88747-88748 +88749-88750 +88751-88771 +88751-88771 +88752-88771 +88752-88762 +88753-88755 +88754-88755 +88756-88762 +88757-88762 +88759-88762 +88760-88761 +88763-88771 +88764-88771 +88766-88768 +88767-88768 +88769-88771 +88770-88771 +88771 +88772-88778 +88772-88778 +88772-88774 +88772-88773 +88775-88778 +88776-88778 +88776-88777 +88779-88790 +88779-88790 +88780-88790 +88780-88784 +88781-88784 +88782-88784 +88783-88784 +88785-88790 +88786-88790 +88787-88790 +88788-88790 +88789-88790 +88791-88807 +88791-88807 +88791-88795 +88792-88795 +88792-88793 +88796-88799 +88797-88799 +88798-88799 +88800-88803 +88801-88803 +88802-88803 +88804-88807 +88805-88807 +88806-88807 +88808-88821 +88808-88821 +88809-88821 +88809-88813 +88810-88813 +88810-88811 +88812-88813 +88814-88821 +88815-88821 +88815-88817 +88815-88816 +88820-88821 +88822-88831 +88822-88831 +88823-88831 +88823-88826 +88824-88826 +88825-88826 +88828-88831 +88829-88831 +88830-88831 +88832-88841 +88832-88841 +88832-88836 +88833-88836 +88835-88836 +88837-88841 +88838-88841 +88838-88839 +88839 +88842-88861 +88842-88861 +88842-88856 +88842-88848 +88842-88843 +88843 +88844-88846 +88845-88846 +88849-88856 +88850-88856 +88850-88852 +88851-88852 +88853-88854 +88854 +88857-88861 +88858-88861 +88858-88859 +88862-88868 +88862-88868 +88865-88868 +88865-88868 +88866-88868 +88867-88868 +88869-88874 +88869-88874 +88869-88871 +88870-88871 +88872-88874 +88873-88874 +88875-88882 +88875-88882 +88876-88882 +88876 +88877-88882 +88878-88882 +88879-88880 +88881-88882 +88883-88894 +88883-88894 +88884-88894 +88884-88889 +88885-88889 +88888-88889 +88890-88894 +88891-88894 +88893-88894 +88895-88900 +88895-88900 +88896-88899 +88897-88899 +88898-88899 +88901-88906 +88901-88906 +88901-88904 +88902-88904 +88903-88904 +88907-88915 +88907-88915 +88908-88915 +88908-88911 +88908-88909 +88909 +88912-88915 +88913-88915 +88914-88915 +88916-88926 +88916-88926 +88917-88926 +88917-88922 +88917-88919 +88918-88919 +88923-88926 +88924-88926 +88925-88926 +88927-88935 +88927-88935 +88928-88935 +88928-88931 +88928-88929 +88932-88935 +88933-88935 +88936-88948 +88936-88948 +88937-88948 +88937-88942 +88938-88942 +88938-88939 +88939 +88940-88942 +88940-88941 +88943-88948 +88944-88948 +88944-88945 +88945 +88946-88948 +88946-88947 +88949-88958 +88949-88958 +88950-88958 +88950-88955 +88950-88952 +88951-88952 +88952 +88953-88955 +88954-88955 +88955 +88956-88957 +88959-88971 +88959-88971 +88960-88971 +88960-88961 +88963-88965 +88964-88965 +88966-88971 +88967-88971 +88967-88970 +88967-88968 +88969-88970 +88970 +88972-88978 +88972-88978 +88973-88978 +88976-88978 +88977-88978 +88979-88986 +88979-88986 +88980-88986 +88980-88981 +88984-88986 +88985-88986 +88987-88993 +88987-88993 +88988-88993 +88990-88993 +88991-88993 +88992-88993 +88994-89010 +88994-89010 +88995-89010 +88996-89010 +88996-88997 +88998-88999 +89000-89010 +89001-89010 +89001-89004 +89003-89004 +89005-89010 +89006-89010 +89006-89007 +89009-89010 +89011-89020 +89011-89020 +89012-89020 +89013-89020 +89013-89014 +89015-89016 +89019-89020 +89021-89024 +89021-89024 +89022-89024 +89025-89036 +89025-89036 +89026-89036 +89029-89036 +89029-89036 +89030-89036 +89032-89033 +89034-89036 +89035-89036 +89037-89056 +89037-89056 +89037-89039 +89038-89039 +89040-89042 +89041-89042 +89043-89056 +89044-89056 +89044-89047 +89046-89047 +89048-89056 +89049-89056 +89050-89056 +89050-89054 +89050-89054 +89051-89054 +89052-89054 +89057-89068 +89057-89068 +89058-89068 +89058-89064 +89059-89064 +89059-89060 +89061-89063 +89062-89063 +89066-89067 +89069-89078 +89069-89078 +89070-89072 +89071-89072 +89075-89078 +89075-89076 +89079-89084 +89079-89084 +89080-89084 +89082-89084 +89083-89084 +89085-89103 +89085-89103 +89086-89103 +89087-89094 +89088-89091 +89089-89091 +89090-89091 +89092-89094 +89093-89094 +89096-89103 +89096-89103 +89097-89098 +89099-89103 +89100-89103 +89101-89103 +89102-89103 +89104-89117 +89104-89117 +89105-89117 +89105-89113 +89105-89110 +89106-89110 +89106-89107 +89109-89110 +89112-89113 +89114-89117 +89115-89117 +89116-89117 +89118-89130 +89118-89130 +89119-89130 +89120-89130 +89121-89130 +89121-89123 +89122-89123 +89124-89130 +89125-89130 +89126-89130 +89126-89127 +89128-89130 +89129-89130 +89131-89138 +89131-89138 +89132-89133 +89135-89138 +89136-89138 +89137-89138 +89139-89149 +89139-89149 +89140-89149 +89140-89141 +89142-89149 +89143-89149 +89144-89149 +89144-89145 +89146-89149 +89147-89149 +89147-89148 +89150-89164 +89150-89164 +89151-89164 +89152-89164 +89152-89154 +89155-89157 +89156-89157 +89158-89164 +89159-89164 +89159-89160 +89161-89163 +89162-89163 +89165-89174 +89165-89174 +89166-89170 +89167-89170 +89169-89170 +89172-89174 +89173-89174 +89175-89182 +89175-89182 +89176-89182 +89177-89182 +89180-89182 +89181-89182 +89183-89192 +89183-89192 +89184-89192 +89184-89188 +89184-89187 +89185-89187 +89185-89186 +89186 +89188 +89189-89192 +89190-89192 +89191-89192 +89193-89200 +89193-89200 +89194-89200 +89194-89198 +89195-89198 +89197-89198 +89201-89214 +89201-89214 +89202-89214 +89203-89205 +89204-89205 +89206-89214 +89206-89210 +89206-89209 +89207-89209 +89208-89209 +89211-89214 +89212-89214 +89215-89224 +89215-89224 +89215-89216 +89217-89218 +89220-89222 +89221-89222 +89223-89224 +89225-89231 +89225-89231 +89226-89231 +89226-89228 +89227-89228 +89232-89242 +89232-89242 +89233-89242 +89234-89242 +89235-89242 +89235-89239 +89236-89239 +89237-89239 +89238-89239 +89241-89242 +89243-89263 +89243-89263 +89244-89263 +89244-89250 +89244-89245 +89246-89249 +89247-89249 +89248-89249 +89252-89263 +89252-89260 +89252-89254 +89253-89254 +89255-89260 +89256-89260 +89257-89260 +89258-89260 +89259-89260 +89261-89262 +89264-89296 +89264-89296 +89265-89296 +89265-89281 +89265-89271 +89266-89271 +89267-89271 +89267-89268 +89269-89271 +89270-89271 +89274-89281 +89274-89275 +89277-89278 +89279-89281 +89280-89281 +89282-89296 +89283-89296 +89284-89286 +89285-89286 +89288-89296 +89289-89296 +89289-89291 +89290-89291 +89292-89296 +89292-89294 +89293-89294 +89295-89296 +89297-89309 +89297-89309 +89298-89309 +89298-89299 +89300-89309 +89301-89309 +89301-89303 +89302-89303 +89306-89309 +89307-89309 +89308-89309 +89310-89346 +89310-89346 +89311-89346 +89312-89333 +89313-89314 +89316-89318 +89317-89318 +89319-89333 +89320-89333 +89321-89333 +89321-89325 +89322-89325 +89323-89325 +89324-89325 +89326-89333 +89327-89333 +89327-89328 +89329-89330 +89332-89333 +89334-89346 +89335-89346 +89336-89346 +89336-89341 +89336-89337 +89340-89341 +89342-89346 +89343-89346 +89343-89345 +89344-89345 +89347-89355 +89347-89355 +89348-89355 +89350-89355 +89350 +89352-89355 +89353-89355 +89354-89355 +89356-89369 +89356-89369 +89357-89369 +89357 +89358-89369 +89358-89360 +89358-89360 +89359-89360 +89361-89363 +89362-89363 +89364-89369 +89365-89369 +89367-89369 +89368-89369 +89370-89383 +89370-89383 +89371-89383 +89374-89383 +89375-89383 +89375-89378 +89376-89378 +89377-89378 +89379-89383 +89380-89383 +89381-89383 +89382-89383 +89384-89387 +89384-89387 +89384-89385 +89388-89412 +89388-89412 +89389-89412 +89389-89392 +89390-89392 +89391-89392 +89395-89398 +89396-89398 +89397-89398 +89399-89401 +89400-89401 +89401 +89402-89412 +89403-89412 +89404-89412 +89406-89408 +89407-89408 +89409-89412 +89410-89412 +89411-89412 +89413-89435 +89413-89435 +89414-89435 +89414-89415 +89414-89415 +89417-89419 +89418-89419 +89420-89421 +89422-89435 +89423-89435 +89423-89424 +89428-89435 +89429-89431 +89430-89431 +89432-89435 +89433-89435 +89433-89434 +89436-89479 +89436-89479 +89437-89479 +89440-89441 +89442-89468 +89443-89468 +89445-89468 +89446-89468 +89446-89447 +89448-89468 +89449-89468 +89451-89453 +89452-89453 +89454-89468 +89455-89468 +89456-89468 +89458-89460 +89459-89460 +89461-89463 +89462-89463 +89464-89468 +89465-89468 +89466-89468 +89467-89468 +89469-89479 +89470-89479 +89471-89474 +89472-89474 +89473-89474 +89476-89479 +89477-89479 +89478-89479 +89480-89490 +89480-89490 +89481-89490 +89482-89490 +89482-89486 +89483-89486 +89484-89486 +89485-89486 +89487-89490 +89488-89490 +89489-89490 +89491-89558 +89491-89558 +89492-89558 +89493-89530 +89494-89530 +89495-89530 +89496-89530 +89500-89501 +89502-89504 +89503-89504 +89505-89507 +89506-89507 +89508-89516 +89508-89512 +89509-89512 +89510-89512 +89511-89512 +89513-89516 +89514-89516 +89515-89516 +89517-89530 +89518-89530 +89519-89525 +89519-89520 +89521-89525 +89522-89525 +89523-89525 +89524-89525 +89527-89530 +89528-89530 +89529-89530 +89532-89558 +89534-89538 +89535-89538 +89536-89538 +89539-89558 +89540-89558 +89541-89544 +89541-89543 +89542-89543 +89546-89558 +89547-89558 +89548-89558 +89548-89553 +89549-89553 +89552-89553 +89554-89558 +89555-89558 +89555-89557 +89559-89567 +89559-89567 +89560-89567 +89562-89563 +89564-89567 +89565-89567 +89566-89567 +89568-89608 +89568-89608 +89569-89608 +89569-89592 +89569-89576 +89573-89576 +89574-89576 +89574-89575 +89577-89592 +89578-89592 +89580-89592 +89581-89592 +89582-89583 +89584-89586 +89585-89586 +89587-89592 +89588-89592 +89589-89592 +89590-89592 +89591-89592 +89593-89608 +89594-89608 +89595 +89596-89602 +89596-89597 +89598-89602 +89599-89602 +89599-89600 +89603-89608 +89604-89608 +89606-89607 +89609-89616 +89609-89616 +89610-89616 +89612-89613 +89614-89616 +89615-89616 +89617-89632 +89617-89632 +89618-89632 +89619-89621 +89620-89621 +89622-89632 +89622-89623 +89625-89632 +89626-89632 +89627-89632 +89628-89632 +89628-89629 +89630-89632 +89631-89632 +89633-89638 +89633-89638 +89634-89638 +89634 +89635-89638 +89636-89638 +89639-89653 +89639-89653 +89640-89653 +89640-89646 +89641-89646 +89641-89643 +89642-89643 +89645-89646 +89649-89653 +89649-89651 +89650-89651 +89654-89667 +89654-89667 +89655-89667 +89655-89662 +89655-89656 +89657-89662 +89658-89662 +89660-89662 +89660-89661 +89664-89665 +89666-89667 +89668-89678 +89668-89678 +89669-89678 +89670-89678 +89671-89678 +89671-89673 +89672-89673 +89674-89677 +89675-89677 +89676-89677 +89679-89734 +89679-89734 +89680-89734 +89680 +89681-89723 +89682-89693 +89682-89687 +89683-89687 +89683-89685 +89684-89685 +89686-89687 +89688-89693 +89689-89693 +89690-89693 +89691-89693 +89692-89693 +89694-89704 +89697-89699 +89698-89699 +89700-89701 +89702-89704 +89703-89704 +89705-89723 +89706-89723 +89706-89712 +89707-89712 +89708-89712 +89708-89709 +89709 +89710-89712 +89711-89712 +89713-89723 +89714-89723 +89714-89719 +89714-89716 +89715-89716 +89717-89719 +89718-89719 +89721-89722 +89724-89734 +89725-89734 +89725-89732 +89725-89726 +89728-89729 +89730-89732 +89731-89732 +89735-89743 +89735-89743 +89736-89742 +89736-89739 +89737-89739 +89738-89739 +89740-89742 +89741-89742 +89743 +89744-89783 +89744-89783 +89745-89783 +89745-89774 +89747-89750 +89748-89750 +89749-89750 +89751-89757 +89752-89757 +89753-89757 +89753-89754 +89755-89757 +89756-89757 +89758-89774 +89759-89774 +89759-89765 +89761-89762 +89763-89765 +89764-89765 +89766-89774 +89767-89774 +89769-89774 +89770-89774 +89770-89773 +89771-89773 +89775-89783 +89776-89783 +89776-89777 +89779-89783 +89780-89783 +89781-89783 +89782-89783 +89784-89820 +89784-89820 +89785-89820 +89785-89814 +89785-89802 +89785-89793 +89785-89787 +89786-89787 +89788-89793 +89789-89793 +89789-89790 +89791-89793 +89792-89793 +89794-89802 +89795-89798 +89796-89798 +89797-89798 +89799-89801 +89800-89801 +89803-89814 +89805-89814 +89806-89807 +89809-89814 +89810-89814 +89811-89814 +89812-89814 +89813-89814 +89815-89820 +89816-89820 +89817-89820 +89817-89819 +89818-89819 +89821-89832 +89821-89832 +89822-89832 +89822-89825 +89823-89825 +89824-89825 +89826-89832 +89828-89832 +89828-89830 +89829-89830 +89831-89832 +89833-89839 +89833-89839 +89834-89839 +89835-89839 +89838-89839 +89840-89862 +89840-89862 +89841-89862 +89841-89855 +89841-89849 +89841-89843 +89842-89843 +89844-89849 +89845-89849 +89845-89846 +89847-89849 +89848-89849 +89850-89855 +89853-89855 +89854-89855 +89856-89862 +89857-89859 +89858-89859 +89861-89862 +89863-89869 +89863-89869 +89864-89869 +89865-89869 +89866-89869 +89866-89867 +89868-89869 +89870-89881 +89870-89881 +89871-89881 +89871-89876 +89872-89876 +89873-89876 +89873-89874 +89875-89876 +89877-89881 +89878-89881 +89879-89881 +89880-89881 +89882-89887 +89882-89887 +89883-89887 +89884-89887 +89885-89887 +89886-89887 +89888-89892 +89888-89892 +89889-89892 +89890-89892 +89891-89892 +89893-89897 +89893-89897 +89894-89897 +89895-89897 +89896-89897 +89898-89906 +89898-89906 +89899-89906 +89899-89902 +89900-89902 +89901-89902 +89903-89906 +89904-89906 +89905-89906 +89907-89914 +89907-89914 +89908-89914 +89908-89910 +89909-89910 +89911-89914 +89912-89914 +89913-89914 +89915-89923 +89915-89923 +89916-89923 +89916-89918 +89917-89918 +89919-89923 +89922-89923 +89924-89935 +89924-89935 +89925-89935 +89925-89929 +89926-89929 +89926-89927 +89928-89929 +89930-89935 +89931-89935 +89932-89935 +89933-89935 +89934-89935 +89936-89946 +89936-89946 +89937-89946 +89937-89941 +89942-89946 +89943-89946 +89944-89946 +89944-89945 +89947-89963 +89947-89963 +89948-89963 +89948-89957 +89948-89955 +89948-89950 +89949-89950 +89951-89955 +89952-89955 +89953-89955 +89954-89955 +89956-89957 +89958-89963 +89959-89963 +89960-89963 +89960-89961 +89962-89963 +89964-89968 +89964-89968 +89966-89968 +89967-89968 +89969-89975 +89969-89975 +89971-89975 +89971-89973 +89971-89972 +89974-89975 +89976-89997 +89976-89997 +89977-89997 +89977 +89978-89993 +89979-89993 +89981-89993 +89982-89993 +89982-89986 +89982-89983 +89984-89986 +89985-89986 +89987-89992 +89988-89992 +89989-89992 +89990-89992 +89994-89997 +89995-89997 +89996-89997 +89998-90021 +89998-90021 +89999-90021 +89999-90010 +89999-90006 +89999-90000 +90001-90004 +90001-90003 +90002-90003 +90007-90010 +90008-90010 +90008-90010 +90009-90010 +90011-90021 +90012-90021 +90012-90016 +90013-90016 +90014-90016 +90015-90016 +90018-90021 +90019-90021 +90020-90021 +90022-90028 +90022-90028 +90023-90028 +90023-90025 +90024-90025 +90026-90027 +90029-90045 +90029-90045 +90030-90045 +90030-90032 +90030-90031 +90033-90045 +90034-90045 +90035-90045 +90035-90040 +90038-90040 +90039-90040 +90041-90045 +90042-90045 +90043-90045 +90044-90045 +90046-90059 +90046-90059 +90047-90059 +90047-90050 +90048-90050 +90049-90050 +90052-90053 +90054-90057 +90055-90057 +90056-90057 +90058-90059 +90060-90067 +90060-90067 +90060-90065 +90061-90065 +90062-90065 +90062-90064 +90063-90064 +90066-90067 +90068-90082 +90068-90082 +90070-90082 +90070-90073 +90071-90073 +90072-90073 +90074-90075 +90076-90077 +90078-90082 +90079-90082 +90080-90082 +90081-90082 +90083-90092 +90083-90092 +90085-90092 +90086-90092 +90087-90092 +90088-90092 +90089-90090 +90091-90092 +90093-90102 +90093-90102 +90095-90102 +90096-90102 +90097-90102 +90098-90102 +90099-90102 +90100-90102 +90101-90102 +90103-90113 +90103-90113 +90105-90113 +90105-90109 +90106-90109 +90107-90109 +90108-90109 +90110-90113 +90111-90113 +90112-90113 +90114-90168 +90114-90168 +90115-90168 +90115-90156 +90115-90156 +90115-90153 +90116-90153 +90117-90153 +90119-90127 +90120-90127 +90120-90122 +90121-90122 +90123-90127 +90124-90127 +90125-90127 +90126-90127 +90128-90153 +90129-90153 +90130-90153 +90131-90153 +90131-90136 +90131-90133 +90131-90132 +90134-90136 +90135-90136 +90137-90153 +90138-90153 +90138-90140 +90139-90140 +90141-90145 +90142-90145 +90143-90145 +90144-90145 +90146-90148 +90147-90148 +90149-90152 +90150-90152 +90151-90152 +90154-90156 +90155-90156 +90157-90159 +90158-90159 +90161-90162 +90163-90167 +90164-90167 +90165-90167 +90166-90167 +90168 +90169-90211 +90169-90211 +90169-90180 +90169-90176 +90170-90176 +90170-90173 +90171-90173 +90172-90173 +90174-90176 +90175-90176 +90177-90180 +90178-90180 +90179-90180 +90181-90208 +90181-90192 +90181-90188 +90181-90184 +90182-90184 +90183-90184 +90185-90188 +90186-90188 +90187-90188 +90189-90192 +90190-90192 +90191-90192 +90193-90208 +90193-90194 +90195-90208 +90196-90208 +90197-90208 +90198-90208 +90199-90205 +90200-90205 +90201-90205 +90201-90203 +90202-90203 +90204-90205 +90206-90208 +90207-90208 +90209-90211 +90209-90211 +90210-90211 +90212-90223 +90212-90223 +90213-90215 +90214-90215 +90216-90223 +90217-90223 +90217-90219 +90218-90219 +90220-90223 +90221-90223 +90222-90223 +90224-90290 +90224-90290 +90224-90240 +90225-90226 +90228-90229 +90230-90240 +90231-90240 +90231-90234 +90232-90234 +90233-90234 +90235-90240 +90236-90240 +90238-90240 +90239-90240 +90242-90290 +90242-90243 +90245-90246 +90247-90252 +90248-90252 +90248-90249 +90250-90252 +90251-90252 +90253-90290 +90254-90290 +90254-90257 +90255-90257 +90256-90257 +90259-90260 +90261-90290 +90262-90290 +90265-90267 +90266-90267 +90268-90290 +90269-90290 +90270-90290 +90271-90290 +90271-90275 +90271-90273 +90272-90273 +90274-90275 +90276-90290 +90280-90281 +90283-90290 +90284-90290 +90285-90290 +90286-90290 +90286-90288 +90287-90288 +90289-90290 +90291-90306 +90291-90306 +90292-90306 +90293-90306 +90294-90306 +90294-90295 +90297-90306 +90298-90306 +90299-90306 +90299-90301 +90300-90301 +90302-90306 +90302-90303 +90304-90306 +90305-90306 +90307-90341 +90307-90341 +90308-90341 +90308 +90311-90318 +90312-90318 +90313-90318 +90314-90318 +90314-90316 +90315-90316 +90317-90318 +90319-90341 +90320-90341 +90320-90323 +90320-90321 +90324-90341 +90325-90341 +90325-90329 +90327-90328 +90330-90341 +90331-90341 +90331-90332 +90333-90341 +90333-90336 +90334-90336 +90335-90336 +90337-90341 +90338-90341 +90339-90341 +90340-90341 +90342-90356 +90342-90356 +90343-90356 +90343-90344 +90343-90344 +90347-90348 +90349-90351 +90350-90351 +90352-90356 +90353-90356 +90354-90355 +90357-90376 +90357-90376 +90358-90376 +90360-90376 +90361-90376 +90361-90362 +90364-90376 +90364-90367 +90365-90367 +90368-90370 +90369-90370 +90371-90373 +90372-90373 +90374-90376 +90375-90376 +90377-90379 +90377-90379 +90378-90379 +90380-90390 +90380-90390 +90381-90390 +90381-90384 +90383-90384 +90385-90390 +90386-90390 +90386-90389 +90387-90389 +90388-90389 +90391-90410 +90391-90410 +90391 +90393-90410 +90393-90400 +90393-90395 +90393-90394 +90396-90400 +90397-90400 +90398-90400 +90399-90400 +90401-90410 +90402-90410 +90405-90410 +90406-90410 +90406-90409 +90407-90409 +90408-90409 +90411-90416 +90411-90416 +90412-90416 +90413-90416 +90414-90416 +90415-90416 +90417-90423 +90417-90423 +90420-90423 +90421-90423 +90421-90422 +90424-90442 +90424-90442 +90425-90442 +90428-90431 +90429 +90431 +90432-90442 +90433-90435 +90434-90435 +90436-90442 +90437-90442 +90439-90442 +90440-90442 +90441-90442 +90443-90460 +90443-90460 +90444-90460 +90444-90453 +90445-90453 +90445-90449 +90445-90446 +90447-90449 +90448-90449 +90450-90451 +90451 +90454-90460 +90455-90460 +90455-90457 +90455-90456 +90456 +90458-90459 +90461-90473 +90461-90473 +90462-90473 +90463-90473 +90463-90467 +90464-90467 +90465-90467 +90466-90467 +90468-90473 +90469-90473 +90469-90472 +90470-90472 +90471-90472 +90474-90475 +90474-90475 +90476-90477 +90476-90477 +90478-90482 +90478-90482 +90479-90482 +90480-90482 +90480-90481 +90483-90490 +90483-90490 +90484-90490 +90485-90486 +90487-90490 +90488-90490 +90489-90490 +90491-90526 +90491-90526 +90492-90526 +90492-90517 +90492-90506 +90493-90506 +90493-90497 +90494-90497 +90495-90497 +90496-90497 +90500-90501 +90502-90504 +90503-90504 +90505-90506 +90507-90517 +90508-90509 +90510-90514 +90511-90514 +90512-90514 +90513-90514 +90515-90517 +90516-90517 +90517 +90518-90526 +90519-90526 +90519-90522 +90520-90522 +90523-90526 +90524-90526 +90527-90568 +90527-90568 +90528-90568 +90528-90551 +90530-90531 +90531 +90532-90551 +90532-90534 +90533-90534 +90535-90537 +90536-90537 +90538-90551 +90539-90551 +90539-90545 +90539-90541 +90540-90541 +90542-90545 +90542-90543 +90544-90545 +90546-90551 +90547-90551 +90547-90548 +90549-90551 +90550-90551 +90552-90568 +90553-90568 +90553-90560 +90553-90556 +90554-90556 +90555-90556 +90558-90559 +90561-90568 +90562-90568 +90562-90565 +90563-90565 +90564-90565 +90567-90568 +90569-90586 +90569-90586 +90570-90586 +90570 +90572-90574 +90573-90574 +90575-90586 +90576-90586 +90576-90580 +90579-90580 +90581-90583 +90584-90586 +90587-90636 +90587-90636 +90588-90636 +90588-90628 +90588-90598 +90588-90591 +90589-90591 +90590-90591 +90593-90594 +90595-90598 +90596-90598 +90597-90598 +90599-90610 +90600-90610 +90600-90603 +90601-90603 +90602-90603 +90605-90606 +90607-90610 +90608-90610 +90609-90610 +90611-90628 +90612-90628 +90612-90621 +90612-90618 +90612-90615 +90613-90615 +90614-90615 +90616-90618 +90617-90618 +90618 +90619-90621 +90620-90621 +90623-90624 +90625-90628 +90626-90628 +90626-90627 +90627 +90629-90636 +90630-90636 +90632-90633 +90634-90636 +90635-90636 +90637-90664 +90637-90664 +90638-90664 +90638-90639 +90642-90656 +90643-90656 +90643-90644 +90645-90656 +90648-90649 +90650-90656 +90651-90652 +90653-90654 +90655-90656 +90657-90664 +90658-90664 +90659-90664 +90660-90664 +90660-90661 +90661 +90662-90663 +90665-90682 +90665-90682 +90665 +90667-90669 +90668-90669 +90671-90682 +90672-90676 +90673-90676 +90673-90674 +90675-90676 +90679-90682 +90680-90682 +90681-90682 +90683-90696 +90683-90696 +90684-90696 +90686-90696 +90688-90689 +90690-90696 +90691-90696 +90692-90696 +90692-90693 +90694-90696 +90695-90696 +90696 +90697-90741 +90697-90741 +90697-90709 +90698-90706 +90698-90699 +90700-90702 +90701-90702 +90703-90706 +90704-90706 +90705-90706 +90708-90709 +90710-90741 +90711-90741 +90711-90717 +90711-90713 +90712-90713 +90714-90717 +90715-90717 +90716-90717 +90718-90728 +90719-90722 +90720-90722 +90721-90722 +90724-90728 +90725-90728 +90726-90728 +90727-90728 +90729-90741 +90730-90741 +90730-90732 +90731-90732 +90734-90741 +90735-90737 +90736-90737 +90739-90741 +90740-90741 +90742-90761 +90742-90761 +90743-90761 +90743-90747 +90745-90747 +90746-90747 +90748-90761 +90749-90761 +90750-90761 +90751-90761 +90751-90753 +90751-90752 +90754-90761 +90755-90761 +90755-90759 +90756-90759 +90757-90759 +90757-90758 +90760-90761 +90761 +90762-90797 +90762-90797 +90763-90797 +90764-90797 +90764-90779 +90764-90769 +90765-90769 +90765-90767 +90766-90767 +90768-90769 +90769 +90770-90779 +90772-90773 +90774-90776 +90775-90776 +90777-90779 +90778-90779 +90780-90797 +90780-90787 +90781-90786 +90782-90786 +90783-90786 +90784-90786 +90784-90785 +90789-90797 +90789-90790 +90790 +90791-90797 +90792-90797 +90793-90796 +90794-90796 +90795-90796 +90798-90821 +90798-90821 +90799-90821 +90800-90821 +90801-90821 +90801-90814 +90801-90804 +90805-90808 +90806-90808 +90809-90814 +90810-90814 +90810-90812 +90811-90812 +90815-90821 +90817-90818 +90819-90821 +90820-90821 +90822-90829 +90822-90829 +90823-90829 +90825-90826 +90827-90829 +90828-90829 +90830-90839 +90830-90839 +90831-90839 +90831-90834 +90831-90832 +90835-90839 +90835-90839 +90836-90839 +90837-90839 +90838-90839 +90840-90855 +90840-90855 +90841-90855 +90841-90842 +90844-90846 +90845-90846 +90847-90855 +90848-90855 +90849-90855 +90849-90852 +90850-90852 +90851-90852 +90853-90855 +90854-90855 +90856-90868 +90856-90868 +90857-90860 +90858-90860 +90859-90860 +90863-90868 +90864-90868 +90865-90868 +90866-90868 +90867-90868 +90869-90907 +90869-90907 +90870-90907 +90870-90883 +90871-90876 +90872-90875 +90873-90875 +90874-90875 +90878-90883 +90878-90883 +90878-90879 +90880-90883 +90881-90883 +90882-90883 +90884-90907 +90885-90907 +90886-90907 +90886-90891 +90887-90891 +90887-90889 +90888-90889 +90892-90907 +90895-90904 +90896-90900 +90897-90900 +90897-90899 +90898-90899 +90902-90904 +90903-90904 +90905-90907 +90908-90928 +90908-90928 +90909-90928 +90909-90921 +90909-90910 +90913-90917 +90914-90917 +90915-90917 +90916-90917 +90918-90921 +90919-90921 +90922-90928 +90923-90928 +90925 +90926-90928 +90927-90928 +90929-90939 +90929-90939 +90930-90939 +90930-90934 +90930-90931 +90935-90939 +90936-90939 +90937-90938 +90940-90947 +90940-90947 +90941-90947 +90943-90944 +90945-90947 +90948-90952 +90948-90952 +90949-90952 +90950-90951 +90953-90967 +90953-90967 +90953 +90956-90967 +90957-90960 +90959-90960 +90962-90967 +90962-90967 +90962-90963 +90964-90967 +90965-90967 +90966-90967 +90968-90975 +90968-90975 +90968-90972 +90968-90970 +90971-90972 +90973-90975 +90974-90975 +90976-90984 +90976-90984 +90977-90984 +90977-90980 +90981-90984 +90982-90984 +90985-90998 +90985-90998 +90986-90998 +90986-90991 +90987-90991 +90987-90988 +90989-90991 +90990-90991 +90992-90998 +90993-90998 +90993-90994 +90995-90998 +90996-90998 +90996-90997 +90999-91013 +90999-91013 +91000-91013 +91000-91010 +91001-91010 +91001-91006 +91002-91006 +91004-91006 +91007-91010 +91008-91010 +91008 +91009-91010 +91011-91013 +91012-91013 +91014-91017 +91014-91017 +91015-91017 +91018-91021 +91018-91021 +91019-91021 +91022-91031 +91022-91031 +91022-91031 +91023-91031 +91023-91025 +91023-91024 +91027-91031 +91027-91028 +91029-91030 +91032-91039 +91032-91039 +91032-91035 +91032-91033 +91034-91035 +91036-91039 +91037-91039 +91037-91038 +91040-91052 +91040-91052 +91041-91052 +91041-91048 +91041-91045 +91042-91045 +91042-91043 +91043 +91046-91048 +91047-91048 +91047-91048 +91048 +91049-91052 +91050-91052 +91050-91052 +91051-91052 +91051 +91053-91070 +91053-91070 +91054-91070 +91054-91060 +91054-91058 +91054-91055 +91055 +91056-91058 +91057-91058 +91058 +91061-91070 +91062-91070 +91063-91065 +91064-91065 +91067-91070 +91068-91070 +91069-91070 +91071-91079 +91071-91079 +91072-91079 +91072-91074 +91073-91074 +91075-91079 +91075-91078 +91075-91076 +91077-91078 +91080-91095 +91080-91095 +91080-91092 +91080-91087 +91081-91087 +91081-91084 +91082-91084 +91083-91084 +91085-91087 +91086-91087 +91088-91090 +91089-91090 +91093-91095 +91094-91095 +91096-91100 +91096-91100 +91097-91100 +91097-91098 +91099-91100 +91101-91113 +91101-91113 +91102-91113 +91104-91113 +91104-91105 +91107-91113 +91108-91113 +91108-91109 +91109 +91110-91113 +91112-91113 +91114-91150 +91114-91150 +91115-91150 +91115-91132 +91115-91127 +91116-91127 +91118-91120 +91119-91120 +91121-91127 +91123-91124 +91128-91132 +91128-91130 +91129-91130 +91133-91150 +91134-91150 +91134-91135 +91137-91150 +91138-91150 +91138-91140 +91138-91139 +91141-91150 +91142-91150 +91142-91146 +91142-91144 +91143-91144 +91147-91150 +91147-91148 +91151-91159 +91151-91159 +91151-91157 +91152-91157 +91153-91157 +91154-91157 +91155-91157 +91156-91157 +91160-91173 +91160-91173 +91160-91165 +91160-91164 +91161-91164 +91161-91163 +91162-91163 +91166-91173 +91167-91173 +91167-91168 +91169-91173 +91170-91173 +91171-91173 +91172-91173 +91174-91187 +91174-91187 +91176-91187 +91177-91187 +91177-91179 +91177-91178 +91180-91187 +91181-91187 +91181-91184 +91182-91184 +91183-91184 +91185-91186 +91188-91198 +91188-91198 +91188-91194 +91189-91194 +91190-91193 +91191-91193 +91192-91193 +91197-91198 +91199-91208 +91199-91208 +91200-91208 +91200-91203 +91201-91203 +91202-91203 +91206-91208 +91209-91211 +91209-91211 +91212-91227 +91212-91227 +91212-91224 +91212-91222 +91213-91222 +91215-91222 +91217-91218 +91219-91222 +91220-91222 +91220-91221 +91223-91224 +91225-91227 +91226-91227 +91228-91238 +91228-91238 +91229-91238 +91229-91233 +91230-91233 +91231-91233 +91231-91232 +91235-91237 +91236-91237 +91239-91248 +91239-91248 +91240-91248 +91241-91248 +91241-91248 +91242-91248 +91243-91244 +91245-91248 +91246-91248 +91247-91248 +91249-91259 +91249-91259 +91250-91259 +91250 +91251-91259 +91253-91256 +91254-91256 +91255-91256 +91257-91259 +91258-91259 +91260-91264 +91260-91264 +91261-91264 +91263-91264 +91265-91292 +91265-91292 +91266-91292 +91266-91286 +91266-91268 +91269-91286 +91269-91285 +91269-91284 +91269-91270 +91271-91272 +91273-91274 +91275-91276 +91277-91278 +91279-91280 +91281-91282 +91282 +91283-91284 +91284 +91287-91292 +91288-91292 +91288-91289 +91290-91292 +91291-91292 +91293-91303 +91293-91303 +91297-91303 +91298-91303 +91298-91303 +91298-91299 +91300-91303 +91301-91303 +91302-91303 +91304-91313 +91304-91313 +91307-91309 +91308-91309 +91310-91313 +91311-91313 +91314-91326 +91314-91326 +91315-91326 +91315-91318 +91316-91317 +91320-91326 +91321-91326 +91321-91322 +91323-91326 +91324-91326 +91325-91326 +91327-91330 +91327-91330 +91328-91330 +91331-91345 +91331-91345 +91332-91345 +91332-91339 +91332-91334 +91335-91339 +91336-91339 +91337-91338 +91340-91345 +91341-91345 +91341-91343 +91342-91343 +91346-91369 +91346-91369 +91347-91369 +91348-91349 +91352-91369 +91353-91369 +91354-91369 +91355-91369 +91356-91369 +91357-91369 +91358-91369 +91358-91363 +91359-91363 +91360-91363 +91361-91363 +91362-91363 +91364-91369 +91365-91369 +91366-91369 +91367-91369 +91368-91369 +91370-91378 +91370-91378 +91371-91378 +91372-91373 +91376-91378 +91377-91378 +91379-91407 +91379-91407 +91380-91407 +91380 +91381-91397 +91381-91388 +91383-91386 +91384-91386 +91385-91386 +91387-91388 +91389-91397 +91390-91397 +91390-91391 +91393-91397 +91394-91397 +91395-91397 +91396-91397 +91398-91407 +91399-91407 +91401-91403 +91402-91403 +91405-91407 +91406-91407 +91408-91411 +91408-91411 +91409-91411 +91412-91417 +91412-91417 +91413-91417 +91414-91417 +91415-91417 +91418-91426 +91418-91426 +91419-91426 +91419-91421 +91420-91421 +91422-91426 +91424-91426 +91425-91426 +91427-91429 +91427-91429 +91428-91429 +91430-91431 +91430-91431 +91432-91434 +91432-91434 +91432-91433 +91435-91443 +91435-91443 +91436-91443 +91437-91438 +91438 +91439-91443 +91440-91443 +91440-91441 +91444-91463 +91444-91463 +91445-91463 +91446-91463 +91446-91447 +91448-91450 +91449-91450 +91453-91454 +91455-91463 +91456-91463 +91458-91463 +91458-91459 +91460-91461 +91462-91463 +91464-91472 +91464-91472 +91464-91467 +91466-91467 +91468-91472 +91469-91472 +91471-91472 +91473-91477 +91473-91477 +91473-91474 +91475-91477 +91476-91477 +91478-91482 +91478-91482 +91478-91479 +91480-91482 +91481-91482 +91483-91502 +91483-91502 +91483-91496 +91483-91486 +91484-91486 +91485-91486 +91487-91496 +91487-91488 +91489-91490 +91491-91492 +91493-91494 +91495-91496 +91497-91502 +91498-91502 +91499-91502 +91500-91502 +91501-91502 +91503-91508 +91503-91508 +91503-91504 +91503 +91505-91506 +91505 +91507-91508 +91507 +91509-91517 +91509-91517 +91509-91514 +91510-91514 +91510-91512 +91511-91512 +91513-91514 +91516-91517 +91518-91549 +91518-91549 +91518-91528 +91518-91522 +91519-91520 +91523-91528 +91524-91528 +91524-91527 +91525-91527 +91525-91526 +91529-91549 +91530-91549 +91530-91539 +91530-91535 +91531-91535 +91531-91532 +91534-91535 +91536-91539 +91537-91539 +91538-91539 +91540-91549 +91541-91549 +91541-91543 +91542-91543 +91544-91546 +91545-91546 +91550-91555 +91550-91555 +91551-91555 +91553-91555 +91553-91554 +91556-91586 +91556-91586 +91556-91558 +91557-91558 +91561-91586 +91561-91570 +91562-91570 +91564-91570 +91565-91570 +91565-91568 +91566-91568 +91567-91568 +91569-91570 +91571-91586 +91571-91580 +91574-91580 +91575-91580 +91575-91576 +91577-91580 +91578-91580 +91579-91580 +91582-91586 +91583-91585 +91584-91585 +91587-91595 +91587-91595 +91588-91595 +91588-91593 +91589-91593 +91592-91593 +91596-91625 +91596-91625 +91597-91625 +91597-91604 +91597-91600 +91599-91600 +91601-91604 +91602-91604 +91602-91603 +91605-91625 +91606-91625 +91607-91614 +91608-91611 +91609-91611 +91610-91611 +91611 +91613-91614 +91615-91625 +91616-91625 +91617-91622 +91617-91618 +91619-91622 +91620-91622 +91621-91622 +91624-91625 +91624-91625 +91626-91627 +91626-91627 +91628-91638 +91628-91638 +91628-91632 +91628-91629 +91631-91632 +91633-91638 +91634-91638 +91634-91638 +91635-91638 +91636-91638 +91637-91638 +91639-91657 +91639-91657 +91641-91642 +91643-91657 +91644-91657 +91645-91657 +91645-91651 +91645-91646 +91647-91651 +91649-91651 +91650-91651 +91652-91657 +91653-91657 +91654-91656 +91655-91656 +91658-91675 +91658-91675 +91659-91675 +91659-91661 +91660-91661 +91662-91675 +91663-91675 +91666-91675 +91667-91675 +91668-91670 +91669-91670 +91671-91675 +91672-91675 +91672-91674 +91672-91673 +91676-91730 +91676-91730 +91677-91730 +91678-91685 +91678-91681 +91679-91681 +91680-91681 +91682-91685 +91683-91685 +91684-91685 +91688-91689 +91689 +91690-91693 +91691-91693 +91694-91721 +91694-91712 +91694-91699 +91695-91699 +91696-91699 +91697-91699 +91698-91699 +91701-91705 +91702-91705 +91703-91705 +91704-91705 +91706-91712 +91707-91712 +91708-91712 +91709-91712 +91709-91711 +91710-91711 +91714-91715 +91716-91717 +91718-91721 +91719-91721 +91720-91721 +91722-91730 +91723-91730 +91723-91724 +91726-91730 +91727-91730 +91728-91730 +91729-91730 +91731-91735 +91731-91735 +91733-91735 +91734-91735 +91736-91744 +91736-91744 +91738-91744 +91739-91744 +91739-91740 +91741-91743 +91742-91743 +91745-91755 +91745-91755 +91746-91748 +91747-91748 +91749-91755 +91750-91755 +91751-91752 +91753-91755 +91754-91755 +91756-91762 +91756-91762 +91757-91762 +91757-91761 +91758-91761 +91758-91760 +91759-91760 +91763-91780 +91763-91780 +91764-91780 +91765-91780 +91766-91774 +91766-91768 +91767-91768 +91769-91774 +91770-91774 +91771-91774 +91772-91774 +91773-91774 +91776-91780 +91777-91780 +91778-91780 +91779-91780 +91781-91809 +91781-91809 +91783-91785 +91784-91785 +91786-91802 +91786-91788 +91789-91802 +91789-91790 +91791-91802 +91791-91795 +91792-91795 +91793-91795 +91793-91794 +91796-91798 +91797-91798 +91799-91800 +91801-91802 +91803-91809 +91804-91809 +91805-91809 +91806-91809 +91806-91808 +91807-91808 +91810-91835 +91810-91835 +91811-91835 +91814-91835 +91814-91831 +91814-91815 +91816-91831 +91817-91831 +91817-91819 +91818-91819 +91821-91831 +91822-91823 +91824-91825 +91826-91827 +91828-91829 +91830-91831 +91832-91835 +91832-91833 +91836-91841 +91836-91841 +91837-91841 +91839-91841 +91839-91840 +91842-91846 +91842-91846 +91843-91846 +91843-91844 +91847-91852 +91847-91852 +91848-91852 +91848-91849 +91850-91851 +91853-91858 +91853-91858 +91854-91855 +91856-91858 +91857-91858 +91859-91875 +91859-91875 +91860-91861 +91862-91866 +91864-91866 +91865-91866 +91867-91875 +91867-91870 +91868-91870 +91869-91870 +91871-91875 +91872-91875 +91873-91875 +91874-91875 +91876-91884 +91876-91884 +91877-91884 +91879-91884 +91880-91884 +91880-91881 +91882-91883 +91885-91895 +91885-91895 +91886-91895 +91886-91891 +91887-91891 +91887-91888 +91890-91891 +91894-91895 +91896-91902 +91896-91902 +91898-91902 +91899-91902 +91901-91902 +91902 +91903-91915 +91903-91915 +91904-91915 +91905-91915 +91905-91908 +91906-91908 +91906-91907 +91909-91913 +91909-91913 +91910-91913 +91911-91913 +91912-91913 +91916-91919 +91916-91919 +91916-91917 +91920-91934 +91920-91934 +91921-91934 +91923-91924 +91925-91934 +91926-91934 +91927-91934 +91929-91934 +91930-91934 +91931-91934 +91932-91934 +91933-91934 +91935-91943 +91935-91943 +91936-91943 +91936-91939 +91937-91938 +91940-91943 +91941-91943 +91942-91943 +91944-91955 +91944-91955 +91945-91955 +91946-91955 +91951-91955 +91952-91955 +91954-91955 +91956-91960 +91956-91960 +91956-91957 +91961-91965 +91961-91965 +91961-91962 +91966-91973 +91966-91973 +91967-91973 +91967-91970 +91968-91970 +91969-91970 +91971-91973 +91972-91973 +91974-91982 +91974-91982 +91975-91982 +91977-91982 +91978-91982 +91979-91980 +91983-91984 +91983-91984 +91985-92007 +91985-92007 +91985-92004 +91985-91986 +91987-91988 +91989-91990 +91991-91992 +91993-91994 +91995-91996 +91997-91998 +91999-92000 +92001-92002 +92003-92004 +92005-92006 +92008-92011 +92008-92011 +92009-92011 +92012-92031 +92012-92031 +92012-92013 +92013 +92014-92015 +92015 +92016-92031 +92017-92031 +92018-92031 +92018-92024 +92019-92024 +92020-92024 +92021-92024 +92021-92022 +92023-92024 +92025-92031 +92026-92031 +92027-92031 +92028-92031 +92029-92031 +92030-92031 +92032-92038 +92032-92038 +92032-92034 +92035-92038 +92036-92038 +92039-92047 +92039-92047 +92039-92041 +92042-92047 +92043-92047 +92046-92047 +92048-92056 +92048-92056 +92048-92051 +92048-92049 +92050-92051 +92052-92056 +92053-92056 +92053-92054 +92055-92056 +92057-92064 +92057-92064 +92058-92064 +92058-92059 +92060-92063 +92060-92061 +92062-92063 +92065-92078 +92065-92078 +92066-92078 +92066-92073 +92066-92067 +92068-92073 +92069-92070 +92072-92073 +92074-92078 +92075-92078 +92075-92076 +92077-92078 +92079-92092 +92079-92092 +92080-92092 +92080-92081 +92082-92092 +92082-92085 +92083-92085 +92083-92084 +92086-92092 +92087-92092 +92089-92092 +92090-92092 +92091-92092 +92093-92101 +92093-92101 +92095-92101 +92096-92101 +92096-92098 +92097-92098 +92099-92100 +92102-92110 +92102-92110 +92103-92110 +92103-92107 +92104-92107 +92105-92107 +92106-92107 +92109-92110 +92111-92112 +92111-92112 +92113-92123 +92113-92123 +92114-92123 +92116-92123 +92117-92123 +92117-92120 +92118-92120 +92119-92120 +92121-92122 +92124-92131 +92124-92131 +92125-92131 +92126-92131 +92127-92128 +92129-92131 +92130-92131 +92132-92139 +92132-92139 +92133-92139 +92133-92136 +92134-92136 +92135-92136 +92137-92138 +92140-92142 +92140-92142 +92141-92142 +92143-92160 +92143-92160 +92143-92152 +92143-92148 +92144-92148 +92145-92148 +92146-92148 +92149-92151 +92150-92151 +92153-92160 +92154-92160 +92154-92155 +92155 +92156-92159 +92157-92159 +92158-92159 +92161-92182 +92161-92182 +92162-92182 +92164-92182 +92165-92182 +92165-92178 +92165-92167 +92166-92167 +92168-92173 +92169-92173 +92170-92173 +92170-92171 +92172-92173 +92175-92178 +92177-92178 +92179-92182 +92180-92182 +92183-92185 +92183-92185 +92184-92185 +92186-92193 +92186-92193 +92187-92193 +92188-92189 +92190-92193 +92191-92193 +92192-92193 +92194-92202 +92194-92202 +92195-92202 +92195-92197 +92195-92197 +92196-92197 +92200-92202 +92203-92217 +92203-92217 +92204-92217 +92204-92211 +92204-92206 +92205-92206 +92208-92210 +92209-92210 +92212-92217 +92213-92217 +92214-92216 +92215-92216 +92218-92231 +92218-92231 +92218-92224 +92218-92219 +92220-92221 +92222-92223 +92225-92231 +92226-92231 +92227-92229 +92228-92229 +92230-92231 +92232-92241 +92232-92241 +92232-92238 +92232-92233 +92234-92236 +92235-92236 +92239-92241 +92240-92241 +92240-92241 +92242-92254 +92242-92254 +92243-92254 +92244-92254 +92244-92251 +92244-92246 +92245-92246 +92247-92249 +92248-92249 +92252-92254 +92253-92254 +92253-92254 +92255-92284 +92255-92284 +92255-92274 +92255-92257 +92258-92274 +92259-92274 +92260-92274 +92261-92274 +92261-92262 +92263-92264 +92265-92274 +92266-92274 +92266-92268 +92267-92268 +92269-92274 +92270-92274 +92271-92273 +92272-92273 +92275-92284 +92276-92284 +92279-92280 +92281-92284 +92282-92284 +92283-92284 +92285-92292 +92285-92292 +92286-92292 +92288-92289 +92290-92292 +92291-92292 +92293-92300 +92293-92300 +92294-92300 +92295-92300 +92295-92296 +92298-92300 +92299-92300 +92301-92313 +92301-92313 +92302-92313 +92302-92307 +92304-92305 +92306-92307 +92308-92313 +92308-92310 +92309-92310 +92311-92313 +92312-92313 +92314-92326 +92314-92326 +92315-92326 +92316-92320 +92316-92317 +92318-92320 +92319-92320 +92321-92326 +92321-92322 +92323-92326 +92324-92326 +92325-92326 +92327-92337 +92327-92337 +92328-92337 +92328-92331 +92328-92330 +92329-92330 +92332-92337 +92333-92337 +92333-92335 +92335 +92336-92337 +92337 +92338-92366 +92338-92366 +92339-92366 +92339-92340 +92340 +92342-92346 +92345-92346 +92347-92366 +92347-92361 +92347-92351 +92348-92349 +92352-92361 +92353-92361 +92353-92355 +92354-92355 +92356-92357 +92358-92361 +92359-92361 +92359-92360 +92362-92366 +92363-92366 +92367-92374 +92367-92374 +92368-92374 +92368-92369 +92371-92374 +92372-92374 +92373-92374 +92375-92389 +92375-92389 +92375-92386 +92376-92386 +92376-92380 +92376-92377 +92379-92380 +92381-92386 +92382-92386 +92384-92386 +92385-92386 +92387-92389 +92390-92405 +92390-92405 +92391-92405 +92391-92401 +92391-92401 +92392-92401 +92392-92395 +92394-92395 +92396-92401 +92397-92401 +92399-92401 +92400-92401 +92404-92405 +92406-92423 +92406-92423 +92407-92423 +92407-92414 +92408-92411 +92409-92411 +92410-92411 +92412-92414 +92413-92414 +92415-92423 +92416-92423 +92417-92420 +92418-92420 +92419-92420 +92421-92423 +92422-92423 +92424-92434 +92424-92434 +92425-92434 +92425-92430 +92426-92430 +92426-92428 +92427-92428 +92431-92434 +92432-92434 +92435-92440 +92435-92440 +92436-92440 +92436-92439 +92437-92439 +92437-92438 +92441-92450 +92441-92450 +92443-92447 +92443-92444 +92445-92447 +92446-92447 +92448-92450 +92449-92450 +92451-92457 +92451-92457 +92452-92457 +92452-92453 +92456-92457 +92458-92465 +92458-92465 +92459-92465 +92459 +92462-92465 +92463-92465 +92463-92464 +92466-92473 +92466-92473 +92467-92473 +92467 +92470-92473 +92471-92473 +92471-92472 +92474-92487 +92474-92487 +92474-92485 +92475-92485 +92476-92485 +92476-92480 +92477-92480 +92479-92480 +92481-92485 +92482-92485 +92484-92485 +92486-92487 +92488-92494 +92488-92494 +92489-92494 +92490-92493 +92491-92493 +92491-92492 +92495-92497 +92495-92497 +92495 +92498-92499 +92498-92499 +92500-92503 +92500-92503 +92500-92501 +92504-92505 +92504-92505 +92506-92518 +92506-92518 +92506-92514 +92506-92509 +92506-92507 +92510-92514 +92511-92514 +92511-92512 +92515-92518 +92516-92518 +92516-92518 +92517-92518 +92519-92527 +92519-92527 +92520-92524 +92521-92524 +92522-92524 +92523-92524 +92525-92526 +92528-92529 +92528-92529 +92528 +92530-92532 +92530-92532 +92533-92540 +92533-92540 +92534-92540 +92534-92538 +92535-92538 +92537-92538 +92539-92540 +92541-92556 +92541-92556 +92542-92556 +92542-92546 +92543-92546 +92543-92545 +92543-92544 +92547-92548 +92550-92556 +92551-92556 +92551-92553 +92551-92552 +92553 +92555-92556 +92557-92558 +92557-92558 +92559-92562 +92559-92562 +92561-92562 +92563-92572 +92563-92572 +92563 +92565-92566 +92568-92572 +92568-92569 +92571-92572 +92573-92589 +92573-92589 +92574-92589 +92574-92580 +92574-92576 +92575-92576 +92577-92578 +92581-92589 +92582-92589 +92584-92589 +92585-92589 +92586-92587 +92588-92589 +92590-92604 +92590-92604 +92591-92604 +92592-92598 +92595-92598 +92596-92598 +92597-92598 +92597 +92599-92604 +92600-92604 +92602-92604 +92603-92604 +92605-92606 +92605-92606 +92607-92609 +92607-92609 +92610-92612 +92610-92612 +92611-92612 +92613-92615 +92613-92615 +92616-92621 +92616-92621 +92617-92621 +92617-92619 +92618-92619 +92622-92628 +92622-92628 +92623-92628 +92623-92626 +92624-92626 +92625-92626 +92629-92639 +92629-92639 +92630-92639 +92630-92635 +92631-92632 +92634-92635 +92636-92639 +92637-92639 +92640-92647 +92640-92647 +92641-92647 +92641 +92644-92647 +92644-92645 +92646-92647 +92648-92684 +92648-92684 +92648-92649 +92650-92684 +92651-92684 +92651-92658 +92651-92654 +92652-92654 +92653-92654 +92655-92657 +92656-92657 +92659-92664 +92660-92664 +92660-92661 +92661 +92662-92664 +92663-92664 +92665-92670 +92666-92670 +92666-92667 +92667 +92668-92670 +92669-92670 +92671-92676 +92672-92676 +92672-92673 +92673 +92674-92676 +92675-92676 +92677-92684 +92678-92684 +92678-92681 +92679-92681 +92680-92681 +92682-92684 +92683-92684 +92685-92691 +92685-92691 +92686-92691 +92687-92691 +92688-92691 +92689-92691 +92689-92690 +92692-92696 +92692-92696 +92693-92696 +92694-92696 +92697-92706 +92697-92706 +92697-92702 +92697-92698 +92700-92702 +92701-92702 +92703-92706 +92705-92706 +92707-92719 +92707-92719 +92708-92719 +92708-92717 +92708-92713 +92708-92709 +92709 +92711-92713 +92712-92713 +92714-92717 +92716-92717 +92718-92719 +92719 +92720-92740 +92720-92740 +92720-92727 +92720-92724 +92721-92724 +92721-92722 +92723-92724 +92725-92727 +92726-92727 +92729-92731 +92730-92731 +92732-92740 +92733-92740 +92735-92740 +92735-92737 +92736-92737 +92738-92740 +92739-92740 +92741-92751 +92741-92751 +92742-92751 +92742-92747 +92742-92743 +92743 +92745-92747 +92746-92747 +92748-92751 +92750-92751 +92752-92773 +92752-92773 +92753-92773 +92754-92758 +92755-92758 +92756-92758 +92756-92757 +92760-92773 +92761-92764 +92762-92764 +92766-92773 +92766-92770 +92767-92770 +92768-92770 +92769-92770 +92771-92772 +92774-92792 +92774-92792 +92775-92792 +92775-92789 +92775-92785 +92775-92782 +92776-92782 +92777-92781 +92778-92781 +92779-92781 +92780-92781 +92783-92785 +92784-92785 +92786-92789 +92787-92789 +92789 +92790-92791 +92793-92795 +92793-92795 +92793-92794 +92795 +92796-92826 +92796-92826 +92797-92826 +92797-92824 +92797-92806 +92799-92802 +92800-92802 +92801-92802 +92804-92806 +92807-92824 +92808-92824 +92808-92813 +92810-92813 +92811-92813 +92812-92813 +92814-92824 +92815-92824 +92817-92820 +92818-92820 +92819-92820 +92821-92824 +92822-92824 +92823-92824 +92827-92841 +92827-92841 +92828-92841 +92828-92835 +92829-92835 +92829-92833 +92830-92833 +92831-92833 +92832-92833 +92836-92841 +92837-92841 +92837-92839 +92838-92839 +92842-92850 +92842-92850 +92844-92850 +92845-92850 +92845-92846 +92848-92850 +92849-92850 +92851-92863 +92851-92863 +92852-92863 +92852-92855 +92853-92855 +92854-92855 +92858-92860 +92858-92859 +92861-92863 +92862-92863 +92864-92879 +92864-92879 +92865-92879 +92865-92873 +92865-92866 +92867-92873 +92868-92873 +92870-92873 +92871-92873 +92872-92873 +92874-92879 +92875-92879 +92877-92879 +92877-92878 +92880-92888 +92880-92888 +92881-92888 +92881-92883 +92882-92883 +92885-92888 +92886-92888 +92889-92895 +92889-92895 +92889-92891 +92889-92890 +92892-92895 +92893-92895 +92893-92894 +92896-92905 +92896-92905 +92896-92900 +92897-92900 +92899-92900 +92901-92905 +92903-92905 +92904-92905 +92905 +92906-92915 +92906-92915 +92907-92915 +92907-92911 +92908-92911 +92910-92911 +92912-92915 +92914-92915 +92916-92934 +92916-92934 +92917-92934 +92917-92921 +92918-92921 +92919-92921 +92920-92921 +92923-92934 +92923-92927 +92924-92927 +92926-92927 +92928-92934 +92929-92934 +92930-92934 +92932-92934 +92933-92934 +92935-92980 +92935-92980 +92936-92980 +92936-92953 +92937-92953 +92939-92940 +92939 +92941-92946 +92941-92943 +92942-92943 +92944-92946 +92945-92946 +92947-92953 +92948-92953 +92948-92950 +92951-92953 +92952-92953 +92954-92980 +92955-92980 +92955-92967 +92957-92967 +92957-92959 +92958-92959 +92960-92967 +92960-92963 +92960-92961 +92962-92963 +92964-92967 +92965-92967 +92966-92967 +92968-92980 +92969-92980 +92970-92980 +92970-92972 +92971-92972 +92973-92980 +92973-92976 +92973-92974 +92975-92976 +92977-92980 +92978-92980 +92979-92980 +92981-92986 +92981-92986 +92982-92986 +92983-92984 +92985-92986 +92987-93004 +92987-93004 +92988-93004 +92988-92997 +92989-92990 +92991-92992 +92993-92994 +92995-92997 +92996-92997 +92998-93004 +92999-93004 +92999-93001 +93000-93001 +93002-93003 +93005-93011 +93005-93011 +93006-93011 +93010-93011 +93012-93020 +93012-93020 +93012-93016 +93013-93016 +93013-93015 +93014-93015 +93017-93020 +93018-93020 +93018-93019 +93019 +93021-93032 +93021-93032 +93022-93032 +93022 +93023-93032 +93024-93032 +93025-93032 +93025-93028 +93025-93027 +93026-93027 +93031-93032 +93033-93055 +93033-93055 +93034-93055 +93034-93043 +93035-93043 +93037-93043 +93037-93040 +93038-93040 +93039-93040 +93041-93042 +93044-93055 +93045-93055 +93045-93047 +93046-93047 +93048-93049 +93051-93055 +93052-93055 +93053-93055 +93053-93054 +93056-93069 +93056-93069 +93057-93069 +93058-93061 +93059-93061 +93060-93061 +93062-93069 +93062-93063 +93063 +93064-93069 +93065-93069 +93066-93069 +93066-93067 +93070-93084 +93070-93084 +93071-93084 +93071-93081 +93071-93075 +93073-93075 +93074-93075 +93076-93081 +93077-93081 +93078-93081 +93079-93081 +93080-93081 +93081 +93082-93083 +93085-93104 +93085-93104 +93086-93104 +93086-93091 +93087-93091 +93089-93091 +93090-93091 +93092-93093 +93096-93098 +93097-93098 +93099-93104 +93100-93104 +93101-93103 +93102-93103 +93105-93107 +93105-93107 +93106-93107 +93108-93110 +93108-93110 +93109-93110 +93111-93116 +93111-93116 +93112-93116 +93112-93115 +93113-93115 +93114-93115 +93117-93124 +93117-93124 +93118-93124 +93118-93120 +93119-93120 +93123-93124 +93125-93133 +93125-93133 +93125-93129 +93126-93129 +93131-93133 +93132-93133 +93134-93143 +93134-93143 +93135-93143 +93135-93139 +93136-93139 +93136-93137 +93138-93139 +93142-93143 +93144-93151 +93144-93151 +93144-93146 +93145-93146 +93147-93149 +93148-93149 +93152-93158 +93152-93158 +93153-93158 +93156-93158 +93156-93158 +93157-93158 +93159-93177 +93159-93177 +93160-93177 +93163-93165 +93163-93164 +93166-93177 +93167-93177 +93167-93177 +93168-93177 +93168-93170 +93169-93170 +93171-93175 +93172-93175 +93173-93175 +93174-93175 +93176-93177 +93178-93187 +93178-93187 +93179-93187 +93180-93182 +93181-93182 +93186-93187 +93188-93192 +93188-93192 +93190-93191 +93193-93201 +93193-93201 +93193-93195 +93196-93201 +93197-93201 +93197-93199 +93198-93199 +93202-93213 +93202-93213 +93203-93213 +93203-93205 +93206-93213 +93207-93213 +93207-93211 +93208-93211 +93209-93211 +93210-93211 +93214-93225 +93214-93225 +93215-93225 +93215-93218 +93215-93216 +93219-93225 +93220-93225 +93220-93222 +93221-93222 +93226-93235 +93226-93235 +93227-93235 +93227-93230 +93228-93230 +93229-93230 +93232-93235 +93234-93235 +93235 +93236-93241 +93236-93241 +93237-93241 +93237-93238 +93240-93241 +93242-93246 +93242-93246 +93243-93246 +93243-93244 +93247-93264 +93247-93264 +93248-93264 +93248-93249 +93251-93264 +93252-93264 +93252-93257 +93253-93255 +93253-93254 +93256-93257 +93257 +93258-93264 +93259-93264 +93259-93260 +93260 +93261-93262 +93263-93264 +93264 +93265-93277 +93265-93277 +93265-93270 +93266-93270 +93268-93269 +93272-93277 +93273-93277 +93274-93276 +93275-93276 +93278-93286 +93278-93286 +93278-93283 +93279-93283 +93280-93282 +93281-93282 +93284-93286 +93285-93286 +93287-93304 +93287-93304 +93288-93304 +93288-93295 +93288-93292 +93290-93292 +93290-93291 +93293-93295 +93294-93295 +93296-93304 +93297-93304 +93298-93299 +93301-93304 +93302-93304 +93303-93304 +93305-93323 +93305-93323 +93307-93323 +93308-93323 +93308-93316 +93308-93311 +93309-93311 +93309-93310 +93312-93315 +93313-93315 +93314-93315 +93317-93323 +93317-93320 +93318-93320 +93318-93319 +93321-93322 +93324-93336 +93324-93336 +93325-93327 +93326-93327 +93329-93332 +93330-93332 +93330-93331 +93333-93336 +93333-93335 +93334-93335 +93337-93342 +93337-93342 +93338-93342 +93341-93342 +93343-93362 +93343-93362 +93344-93362 +93344-93351 +93347-93351 +93348-93351 +93350-93351 +93352-93362 +93353-93362 +93353-93356 +93356 +93357-93362 +93358-93362 +93358-93360 +93359-93360 +93363-93369 +93363-93369 +93364-93369 +93364-93365 +93365 +93366-93369 +93370-93373 +93370-93373 +93371-93373 +93374-93380 +93374-93380 +93375-93380 +93375-93377 +93378-93380 +93379-93380 +93381-93387 +93381-93387 +93382-93387 +93382-93385 +93383-93385 +93388-93392 +93388-93392 +93389-93392 +93389-93390 +93390 +93393-93398 +93393-93398 +93394-93398 +93396-93398 +93397-93398 +93399-93414 +93399-93414 +93400-93414 +93400 +93403-93404 +93405-93414 +93406-93414 +93407-93414 +93409-93411 +93410-93411 +93412-93414 +93413-93414 +93415-93426 +93415-93426 +93416-93426 +93416-93419 +93418-93419 +93423-93426 +93424-93426 +93424-93425 +93427-93451 +93427-93451 +93428-93451 +93428-93435 +93428-93432 +93429-93430 +93431-93432 +93433-93435 +93434-93435 +93436-93451 +93436-93438 +93437-93438 +93439-93441 +93440-93441 +93442-93446 +93445-93446 +93447-93451 +93448-93451 +93448-93450 +93449-93450 +93452-93466 +93452-93466 +93452-93453 +93454-93455 +93456-93462 +93457-93459 +93458-93459 +93461-93462 +93461-93462 +93463-93466 +93464-93466 +93465-93466 +93467-93474 +93467-93474 +93468-93469 +93471-93474 +93472-93474 +93472-93473 +93475-93482 +93475-93482 +93475-93476 +93479-93482 +93480-93482 +93483-93492 +93483-93492 +93484-93492 +93486-93488 +93487-93488 +93489-93492 +93490-93492 +93490-93491 +93493-93507 +93493-93507 +93495-93507 +93496-93507 +93496-93499 +93496-93499 +93497-93499 +93497-93498 +93500-93502 +93501-93502 +93503-93507 +93504-93507 +93506-93507 +93508-93511 +93508-93511 +93510-93511 +93511 +93512-93527 +93512-93527 +93513-93527 +93513-93517 +93513-93515 +93514-93515 +93515 +93518-93527 +93519-93527 +93519-93524 +93520-93524 +93521-93524 +93522-93524 +93522-93523 +93525-93527 +93526-93527 +93526 +93527 +93528-93540 +93528-93540 +93529-93540 +93532-93534 +93533-93534 +93535-93540 +93537-93540 +93538-93540 +93541-93554 +93541-93554 +93542-93554 +93542-93547 +93542-93545 +93543-93545 +93544-93545 +93546-93547 +93547 +93548-93554 +93549-93554 +93550-93554 +93550-93551 +93555-93602 +93555-93602 +93556-93602 +93556 +93559-93602 +93561-93602 +93562-93602 +93562-93569 +93562-93565 +93562-93564 +93563-93564 +93566-93568 +93567-93568 +93570-93575 +93571-93575 +93572-93574 +93573-93574 +93576-93588 +93577-93588 +93578-93580 +93579-93580 +93582-93588 +93582-93584 +93583-93584 +93585-93588 +93586-93588 +93587-93588 +93589-93602 +93590-93602 +93590-93595 +93591-93594 +93592-93594 +93593-93594 +93596-93602 +93597-93602 +93598-93601 +93599-93601 +93600-93601 +93603-93608 +93603-93608 +93604-93608 +93605-93608 +93606-93608 +93607-93608 +93607 +93609-93614 +93609-93614 +93610-93614 +93610-93611 +93613-93614 +93615-93628 +93615-93628 +93616-93628 +93616-93623 +93617-93620 +93618-93620 +93619-93620 +93622-93623 +93624-93628 +93625-93628 +93626-93628 +93627-93628 +93629-93643 +93629-93643 +93630-93643 +93631-93632 +93634-93640 +93635-93640 +93636-93640 +93639-93640 +93641-93643 +93642-93643 +93644-93660 +93644-93660 +93645-93660 +93645-93649 +93645-93646 +93647-93649 +93648-93649 +93648-93649 +93650-93660 +93651-93660 +93652-93660 +93652-93657 +93653-93654 +93655-93657 +93655-93657 +93656-93657 +93658-93660 +93659-93660 +93660 +93661-93672 +93661-93672 +93662-93672 +93663-93672 +93664-93672 +93664-93666 +93664-93665 +93667-93672 +93668-93672 +93669-93670 +93671-93672 +93673-93685 +93673-93685 +93674-93685 +93675-93676 +93677-93685 +93678-93685 +93678-93680 +93678-93679 +93681-93685 +93682-93685 +93682-93684 +93683-93684 +93686-93696 +93686-93696 +93687-93696 +93688-93696 +93689-93696 +93689-93691 +93689-93690 +93692-93696 +93693-93696 +93694-93696 +93695-93696 +93697-93713 +93697-93713 +93698-93713 +93698-93701 +93702-93713 +93703-93713 +93704-93713 +93705-93713 +93706-93713 +93707-93713 +93707-93708 +93709-93712 +93710-93712 +93711-93712 +93714-93720 +93714-93720 +93715-93720 +93715-93717 +93716-93717 +93717 +93719-93720 +93720 +93721-93727 +93721-93727 +93725-93727 +93726-93727 +93728-93750 +93728-93750 +93729-93750 +93730-93750 +93731-93750 +93732-93750 +93733-93750 +93734-93739 +93735-93739 +93737-93739 +93738-93739 +93741-93750 +93742-93744 +93743-93744 +93745-93747 +93746-93747 +93748-93750 +93749-93750 +93750 +93751-93757 +93751-93757 +93752-93757 +93752-93753 +93752-93753 +93755-93757 +93756-93757 +93758-93760 +93758-93760 +93759-93760 +93761-93764 +93761-93764 +93763-93764 +93765-93777 +93765-93777 +93765-93770 +93766-93770 +93766-93768 +93767-93768 +93769-93770 +93773-93777 +93774-93777 +93775-93777 +93776-93777 +93778-93788 +93778-93788 +93778-93781 +93779-93781 +93780-93781 +93783-93787 +93784-93787 +93785-93787 +93786-93787 +93789-93804 +93789-93804 +93789-93796 +93789-93791 +93790-93791 +93792-93793 +93794-93795 +93797-93804 +93798-93804 +93798-93799 +93800-93803 +93801-93803 +93802-93803 +93805-93809 +93805-93809 +93806-93809 +93807-93809 +93808-93809 +93810-93818 +93810-93818 +93811-93818 +93811-93814 +93812-93814 +93813-93814 +93815-93817 +93816-93817 +93819-93821 +93819-93821 +93820-93821 +93822-93830 +93822-93830 +93822-93825 +93823-93825 +93826-93830 +93827-93830 +93828-93830 +93831-93847 +93831-93847 +93832-93847 +93833-93847 +93833-93839 +93833-93834 +93835-93838 +93836-93838 +93837-93838 +93840-93847 +93841-93847 +93843-93847 +93844-93846 +93845-93846 +93848-93855 +93848-93855 +93850-93855 +93850-93852 +93850-93851 +93853-93855 +93854-93855 +93854-93855 +93856-93863 +93856-93863 +93858-93863 +93858-93860 +93858-93859 +93861-93863 +93862-93863 +93862-93863 +93864-93867 +93864-93867 +93865-93867 +93866-93867 +93868-93871 +93868-93871 +93869-93871 +93872-93877 +93872-93877 +93872-93873 +93874-93877 +93875-93877 +93878-93883 +93878-93883 +93878-93879 +93880-93883 +93881-93883 +93884-93891 +93884-93891 +93884-93887 +93885-93886 +93888-93891 +93889-93891 +93889-93891 +93890-93891 +93892-93911 +93892-93911 +93892-93902 +93892-93896 +93893-93896 +93894-93896 +93894-93895 +93898-93902 +93900-93902 +93901-93902 +93903-93911 +93904-93911 +93904-93905 +93906-93911 +93906-93907 +93908-93911 +93909-93911 +93910-93911 +93912-93930 +93912-93930 +93912-93920 +93913-93920 +93913-93917 +93913-93915 +93914-93915 +93918-93920 +93919-93920 +93920 +93921-93930 +93921-93924 +93922-93924 +93923-93924 +93926-93930 +93928-93930 +93929-93930 +93931-93967 +93931-93967 +93932-93967 +93932-93938 +93933-93938 +93936-93938 +93939-93967 +93939-93947 +93941-93947 +93942-93947 +93942-93944 +93943-93944 +93944 +93945-93947 +93946-93947 +93948-93967 +93949-93967 +93950-93957 +93951-93957 +93952-93953 +93955-93957 +93956-93957 +93958-93967 +93959-93967 +93959-93960 +93961-93963 +93962-93963 +93965-93967 +93966-93967 +93968-93977 +93968-93977 +93968-93971 +93969-93971 +93972-93977 +93974-93977 +93975-93977 +93978-93990 +93978-93990 +93979-93990 +93979-93985 +93979-93980 +93980 +93981-93982 +93982 +93983-93985 +93984-93985 +93986-93990 +93987-93989 +93988-93989 +93991-94017 +93991-94017 +93993-94001 +93993-93994 +93995-93996 +93997-94001 +93998-94001 +93999-94001 +94000-94001 +94002-94017 +94003-94017 +94003-94015 +94007-94015 +94008-94015 +94009-94011 +94010-94011 +94013-94015 +94014-94015 +94016-94017 +94017 +94018-94023 +94018-94023 +94018-94019 +94021-94023 +94022-94023 +94024-94037 +94024-94037 +94025-94037 +94027-94037 +94028-94037 +94028-94030 +94031-94037 +94032-94037 +94032-94034 +94033-94034 +94035-94037 +94035-94036 +94038-94060 +94038-94060 +94039-94060 +94040-94060 +94042-94060 +94043-94060 +94043-94049 +94043-94046 +94043-94044 +94045-94046 +94047-94048 +94050-94054 +94051-94054 +94051-94052 +94053-94054 +94055-94060 +94056-94060 +94056-94058 +94057-94058 +94059-94060 +94061-94072 +94061-94072 +94061-94062 +94063-94068 +94063-94065 +94064-94065 +94066-94068 +94066-94067 +94070-94072 +94071-94072 +94073-94085 +94073-94085 +94074-94085 +94074-94075 +94076-94081 +94076-94078 +94077-94078 +94079-94081 +94080-94081 +94083-94085 +94084-94085 +94086-94093 +94086-94093 +94087-94093 +94088-94091 +94089-94091 +94090-94091 +94092-94093 +94093 +94094-94100 +94094-94100 +94095-94100 +94095-94098 +94096-94098 +94101-94109 +94101-94109 +94102-94109 +94102-94108 +94103-94108 +94105-94108 +94106-94108 +94106-94108 +94107-94108 +94110-94128 +94110-94128 +94111-94128 +94111-94122 +94112-94122 +94115-94117 +94116-94117 +94118-94122 +94118-94121 +94118-94120 +94119-94120 +94123-94128 +94124-94128 +94124-94125 +94126-94127 +94129-94138 +94129-94138 +94130-94138 +94131-94134 +94133-94134 +94136-94138 +94137-94138 +94139-94151 +94139-94151 +94140-94151 +94140-94141 +94142-94146 +94144-94146 +94145-94146 +94148-94151 +94149-94151 +94150-94151 +94152-94164 +94152-94164 +94152-94153 +94155-94156 +94157-94164 +94159-94161 +94160-94161 +94162-94164 +94163-94164 +94165-94175 +94165-94175 +94166-94175 +94166-94169 +94167-94169 +94168-94169 +94170-94175 +94171-94175 +94172-94173 +94174-94175 +94176-94195 +94176-94195 +94177-94195 +94177-94189 +94177-94182 +94178-94182 +94178-94179 +94180-94182 +94181-94182 +94184-94186 +94185-94186 +94187-94189 +94188-94189 +94190-94195 +94191-94195 +94191-94192 +94193-94195 +94194-94195 +94196-94199 +94196-94199 +94196-94198 +94197-94198 +94200-94206 +94200-94206 +94200 +94202-94206 +94202-94203 +94204-94205 +94207-94234 +94207-94234 +94207-94227 +94208-94210 +94209-94210 +94213-94227 +94214-94227 +94214-94220 +94215-94220 +94215-94217 +94216-94217 +94221-94227 +94222-94227 +94222-94224 +94223-94224 +94228-94234 +94229-94234 +94229-94230 +94231-94232 +94235-94250 +94235-94250 +94236-94250 +94236-94240 +94237-94240 +94239-94240 +94241-94250 +94241-94245 +94242-94243 +94246-94250 +94247-94250 +94247-94250 +94248-94250 +94249-94250 +94251-94265 +94251-94265 +94252-94265 +94252-94253 +94256-94265 +94257-94265 +94257-94264 +94258-94260 +94259-94260 +94262-94264 +94263-94264 +94266-94281 +94266-94281 +94267-94281 +94268-94281 +94269-94281 +94269-94272 +94271-94272 +94273-94281 +94273-94277 +94274-94277 +94275-94276 +94278-94281 +94279-94281 +94279-94280 +94282-94296 +94282-94296 +94283-94296 +94283-94288 +94284-94288 +94284-94285 +94286-94287 +94289-94296 +94290-94296 +94290-94292 +94291-94292 +94295-94296 +94297-94323 +94297-94323 +94298-94323 +94298-94307 +94298-94302 +94300-94302 +94301-94302 +94303-94307 +94305-94307 +94305-94306 +94308-94323 +94309-94323 +94309-94316 +94310-94312 +94311-94312 +94314-94316 +94315-94316 +94316 +94317-94323 +94318-94323 +94318-94320 +94319-94320 +94321-94323 +94322-94323 +94324-94333 +94324-94333 +94325-94333 +94326-94333 +94329-94333 +94330-94333 +94331-94333 +94331-94333 +94332-94333 +94334-94344 +94334-94344 +94335-94344 +94335-94339 +94335-94338 +94336-94338 +94337-94338 +94340-94344 +94341-94344 +94342-94344 +94343-94344 +94345-94347 +94345-94347 +94348-94349 +94348-94349 +94350-94353 +94350-94353 +94350-94351 +94354-94393 +94354-94393 +94355-94393 +94357-94359 +94358-94359 +94360-94363 +94364-94393 +94365-94393 +94365-94374 +94365-94367 +94365-94366 +94368-94372 +94369-94372 +94370-94372 +94371-94372 +94375-94377 +94376-94377 +94376 +94378-94393 +94379-94393 +94380-94393 +94380-94387 +94382-94387 +94382-94384 +94383-94384 +94385-94387 +94386-94387 +94388-94393 +94390-94393 +94391-94393 +94392-94393 +94394-94421 +94394-94421 +94395-94421 +94395-94397 +94396-94397 +94398-94400 +94399-94400 +94400 +94401-94421 +94402-94421 +94402-94412 +94402-94404 +94403-94404 +94405-94407 +94406-94407 +94409-94412 +94410-94412 +94411-94412 +94413-94421 +94415-94417 +94416-94417 +94417 +94418-94421 +94419-94421 +94420-94421 +94422-94440 +94422-94440 +94423-94440 +94423-94432 +94424-94432 +94425-94432 +94425-94428 +94426-94428 +94426-94427 +94429-94432 +94430-94432 +94430-94431 +94433-94440 +94433-94436 +94434-94436 +94435-94436 +94438-94440 +94439-94440 +94441-94462 +94441-94462 +94442-94462 +94442-94453 +94443-94453 +94444-94452 +94444-94446 +94445-94446 +94447-94452 +94448-94452 +94449-94452 +94450-94452 +94451-94452 +94456-94462 +94456-94460 +94456-94457 +94458-94460 +94459-94460 +94461-94462 +94463-94477 +94463-94477 +94464-94477 +94464-94466 +94467-94477 +94468-94477 +94468-94472 +94469-94471 +94470-94471 +94473-94477 +94474-94477 +94474-94476 +94475-94476 +94478-94491 +94478-94491 +94479-94491 +94479-94482 +94480-94482 +94480-94482 +94481-94482 +94485-94487 +94486-94487 +94488-94491 +94490-94491 +94492-94502 +94492-94502 +94492-94499 +94492-94493 +94494-94495 +94497-94499 +94498-94499 +94500-94502 +94501-94502 +94503-94509 +94503-94509 +94504-94509 +94504-94506 +94505-94506 +94507-94509 +94508-94509 +94510-94521 +94510-94521 +94511-94521 +94511-94514 +94512-94514 +94513-94514 +94516-94521 +94517-94521 +94518-94520 +94519-94520 +94522-94530 +94522-94530 +94523-94530 +94523-94524 +94523-94524 +94525-94528 +94526-94528 +94527-94528 +94528 +94531-94541 +94531-94541 +94531-94533 +94532-94533 +94534-94535 +94537-94541 +94538-94541 +94539-94540 +94542-94548 +94542-94548 +94543-94548 +94543-94544 +94545-94547 +94546-94547 +94547 +94549-94557 +94549-94557 +94550-94557 +94550 +94551-94553 +94552-94553 +94556-94557 +94558-94571 +94558-94571 +94559-94571 +94560-94571 +94560-94562 +94561-94562 +94563-94571 +94563-94567 +94564-94567 +94565-94567 +94566-94567 +94568-94570 +94569-94570 +94570 +94572-94594 +94572-94594 +94573-94594 +94575-94594 +94576-94594 +94576-94583 +94576-94580 +94577-94580 +94577-94579 +94578-94579 +94582-94583 +94584-94594 +94585-94594 +94587-94589 +94588-94589 +94590-94594 +94591-94594 +94592-94594 +94593-94594 +94595-94602 +94595-94602 +94596-94602 +94596-94598 +94596-94597 +94599-94602 +94600-94602 +94600-94602 +94601-94602 +94603-94610 +94603-94610 +94604-94610 +94604-94606 +94604-94605 +94607-94610 +94608-94610 +94608-94610 +94609-94610 +94611-94624 +94611-94624 +94612-94624 +94612-94614 +94612-94613 +94615-94624 +94616-94624 +94616-94624 +94616-94618 +94617-94618 +94619-94624 +94620-94624 +94621-94622 +94623-94624 +94625-94634 +94625-94634 +94626-94634 +94628-94631 +94629-94631 +94630-94631 +94632-94634 +94633-94634 +94634 +94635-94683 +94635-94683 +94636-94683 +94636-94643 +94637-94643 +94638-94640 +94639-94640 +94642-94643 +94644-94657 +94645-94657 +94646-94647 +94648-94651 +94649-94651 +94650-94651 +94652-94657 +94654-94657 +94655-94657 +94656-94657 +94658-94665 +94659-94665 +94660-94661 +94662-94665 +94663-94665 +94664-94665 +94666-94669 +94667-94669 +94668-94669 +94670-94672 +94671-94672 +94673-94679 +94674-94679 +94675-94676 +94677-94679 +94678-94679 +94680-94683 +94681-94683 +94682-94683 +94684-94698 +94684-94698 +94685-94698 +94685-94696 +94685-94686 +94688-94693 +94688-94689 +94690-94693 +94691-94693 +94692-94693 +94694-94696 +94695-94696 +94697-94698 +94698 +94699-94723 +94699-94723 +94700-94723 +94700-94719 +94701-94719 +94701-94708 +94701-94704 +94701-94702 +94705-94708 +94706-94708 +94706-94707 +94709-94719 +94710-94719 +94710-94714 +94711-94714 +94712-94714 +94713-94714 +94715-94716 +94717-94718 +94721-94723 +94722-94723 +94724-94747 +94724-94747 +94725-94747 +94725-94742 +94725-94728 +94726-94728 +94727-94728 +94729-94730 +94731-94733 +94732-94733 +94735-94742 +94735-94742 +94735-94736 +94737-94738 +94739-94740 +94741-94742 +94743-94747 +94744-94747 +94745-94746 +94748-94757 +94748-94757 +94749-94757 +94749-94751 +94750-94751 +94753-94757 +94754-94755 +94758-94778 +94758-94778 +94758-94770 +94759-94770 +94760-94761 +94762-94770 +94762-94765 +94763-94765 +94766-94770 +94768-94770 +94769-94770 +94771-94778 +94772-94778 +94772-94773 +94776-94778 +94777-94778 +94779-94800 +94779-94800 +94780-94800 +94780-94792 +94781-94792 +94782-94783 +94784-94792 +94784-94787 +94785-94787 +94788-94792 +94790-94792 +94791-94792 +94793-94800 +94794-94800 +94794-94795 +94798-94800 +94799-94800 +94801-94808 +94801-94808 +94801-94805 +94802-94805 +94802-94804 +94803-94804 +94807-94808 +94809-94814 +94809-94814 +94809-94811 +94810-94811 +94813-94814 +94815-94829 +94815-94829 +94816-94829 +94817-94818 +94820-94824 +94820-94821 +94822-94824 +94822-94823 +94825-94827 +94826-94827 +94828-94829 +94829 +94830-94839 +94830-94839 +94831-94839 +94831-94836 +94832-94836 +94833-94834 +94835-94836 +94838-94839 +94840-94847 +94840-94847 +94841-94847 +94841-94844 +94842-94844 +94845-94847 +94846-94847 +94848-94869 +94848-94869 +94849-94869 +94849-94859 +94851-94852 +94853-94859 +94854-94855 +94856-94859 +94856-94857 +94860-94869 +94861-94869 +94861-94865 +94862-94863 +94864-94865 +94866-94869 +94866-94867 +94870-94906 +94870-94906 +94871-94906 +94871-94899 +94871-94881 +94871-94872 +94873-94879 +94874-94879 +94874-94876 +94875-94876 +94877-94879 +94878-94879 +94882-94892 +94883-94892 +94883-94888 +94883-94887 +94885-94887 +94886-94887 +94890-94891 +94893-94899 +94894-94899 +94894-94896 +94895-94896 +94897-94898 +94900-94906 +94901-94906 +94901-94903 +94902-94903 +94907-94932 +94907-94932 +94908-94932 +94908-94909 +94911-94912 +94913-94917 +94913-94914 +94914 +94916-94917 +94918-94932 +94919-94932 +94919-94924 +94922-94924 +94923-94924 +94925-94932 +94926-94932 +94926-94927 +94928-94929 +94931-94932 +94933-94948 +94933-94948 +94934-94948 +94934-94941 +94934-94937 +94935-94937 +94936-94937 +94938-94941 +94939-94941 +94940-94941 +94942-94948 +94942-94944 +94943-94944 +94945-94948 +94946-94948 +94947-94948 +94949-94957 +94949-94957 +94950-94957 +94952-94957 +94952-94953 +94954-94957 +94955-94957 +94956-94957 +94958-94981 +94958-94981 +94959-94981 +94960-94981 +94960-94966 +94962-94963 +94964-94966 +94965-94966 +94967-94981 +94967-94968 +94969-94970 +94971-94972 +94973-94974 +94975-94981 +94976-94981 +94976-94977 +94980-94981 +94982-94984 +94982-94984 +94983-94984 +94985-94987 +94985-94987 +94986-94987 +94988-94990 +94988-94990 +94989-94990 +94991-94993 +94991-94993 +94992-94993 +94994-94998 +94994-94998 +94995-94998 +94997-94998 +94999-95002 +94999-95002 +95000-95002 +95003-95005 +95003-95005 +95004-95005 +95006-95011 +95006-95011 +95007-95011 +95008-95011 +95009-95011 +95010-95011 +95012-95018 +95012-95018 +95013-95018 +95013-95015 +95014-95015 +95019-95037 +95019-95037 +95019-95031 +95020-95031 +95020-95027 +95020-95026 +95021-95026 +95022-95026 +95022-95023 +95024-95026 +95025-95026 +95028-95031 +95029-95031 +95032-95037 +95033-95037 +95033-95034 +95034 +95035-95037 +95036-95037 +95037 +95038-95065 +95038-95065 +95039-95065 +95039-95063 +95039-95059 +95039-95050 +95040-95050 +95040-95041 +95042-95050 +95043-95050 +95044-95050 +95044-95046 +95044-95045 +95047-95050 +95048-95050 +95049-95050 +95051-95059 +95052-95059 +95053-95059 +95054-95056 +95055-95056 +95057-95059 +95058-95059 +95060-95063 +95061-95063 +95064-95065 +95066-95086 +95066-95086 +95067-95086 +95067-95084 +95067-95080 +95067-95072 +95068-95072 +95069-95072 +95070-95072 +95070-95071 +95071 +95073-95080 +95074-95080 +95075-95080 +95076-95078 +95077-95078 +95079-95080 +95080 +95081-95084 +95082-95084 +95087-95121 +95087-95121 +95087-95089 +95087-95088 +95090-95092 +95091-95092 +95093-95094 +95095-95098 +95095-95096 +95099-95100 +95101-95102 +95103-95106 +95105-95106 +95107-95108 +95109-95112 +95111-95112 +95113-95121 +95114-95117 +95115-95117 +95116-95117 +95119-95121 +95120-95121 +95122-95129 +95122-95129 +95122-95123 +95124-95125 +95126-95127 +95128-95129 +95130-95133 +95130-95133 +95130-95131 +95134-95143 +95134-95143 +95135-95143 +95135-95137 +95135-95136 +95136 +95137 +95138-95140 +95138-95139 +95139 +95140 +95141-95143 +95141-95142 +95142 +95143 +95144-95151 +95144-95151 +95145-95151 +95145-95147 +95145-95146 +95148-95151 +95149-95151 +95149-95150 +95152-95160 +95152-95160 +95153-95160 +95153-95156 +95154-95156 +95155-95156 +95157-95159 +95158-95159 +95161-95172 +95161-95172 +95161-95163 +95162-95163 +95164-95172 +95164-95166 +95165-95166 +95167-95169 +95168-95169 +95170-95172 +95171-95172 +95173-95179 +95173-95179 +95173-95175 +95174-95175 +95177-95179 +95178-95179 +95180-95191 +95180-95191 +95181-95191 +95181-95186 +95183-95184 +95185-95186 +95187-95191 +95188-95191 +95190-95191 +95192-95201 +95192-95201 +95192-95195 +95194-95195 +95196-95201 +95197-95201 +95199-95201 +95200-95201 +95202-95215 +95202-95215 +95203-95215 +95203-95210 +95205-95210 +95205-95207 +95208-95210 +95208-95209 +95211-95215 +95212-95215 +95214-95215 +95216-95226 +95216-95226 +95216-95222 +95216-95218 +95217-95218 +95219-95222 +95220-95222 +95221-95222 +95223-95226 +95224-95226 +95225-95226 +95227-95242 +95227-95242 +95228-95242 +95228-95235 +95228-95233 +95228-95230 +95229-95230 +95234-95235 +95235 +95236-95242 +95237-95242 +95237-95238 +95239-95242 +95240-95242 +95243-95252 +95243-95252 +95244-95252 +95244-95245 +95245 +95248-95252 +95249-95250 +95251-95252 +95253-95257 +95253-95257 +95253-95255 +95254-95255 +95258-95262 +95258-95262 +95259-95262 +95259-95260 +95260 +95263-95272 +95263-95272 +95264-95272 +95264-95268 +95265-95268 +95265-95266 +95269-95272 +95270-95272 +95271-95272 +95273-95289 +95273-95289 +95274-95289 +95274-95280 +95274-95276 +95275-95276 +95276 +95277-95280 +95278-95280 +95278-95280 +95279-95280 +95281-95289 +95282-95289 +95285-95289 +95286-95289 +95286-95287 +95290-95316 +95290-95316 +95291-95316 +95291 +95292-95301 +95292-95298 +95293-95298 +95295-95296 +95297-95298 +95299-95301 +95302-95316 +95303-95316 +95306-95316 +95306-95308 +95307-95308 +95309-95311 +95310-95311 +95312-95316 +95313-95316 +95314-95316 +95315-95316 +95317-95338 +95317-95338 +95318-95338 +95318-95325 +95318-95321 +95319-95321 +95320-95321 +95322-95325 +95322-95325 +95322-95323 +95324-95325 +95326-95338 +95326-95331 +95327-95331 +95328-95329 +95332-95338 +95334-95338 +95334-95335 +95335 +95336-95338 +95337-95338 +95338 +95339-95349 +95339-95349 +95340-95349 +95340-95345 +95341-95345 +95341-95342 +95343-95344 +95348-95349 +95350-95364 +95350-95364 +95351-95364 +95351-95360 +95352-95360 +95352-95353 +95354-95356 +95355-95356 +95358-95359 +95361-95364 +95363-95364 +95364 +95365-95369 +95365-95369 +95366-95369 +95366-95367 +95368-95369 +95370-95380 +95370-95380 +95370-95377 +95370-95371 +95371 +95372-95377 +95372-95374 +95373-95374 +95376-95377 +95378-95380 +95379-95380 +95381-95398 +95381-95398 +95382-95398 +95382-95388 +95383-95388 +95385-95388 +95386-95388 +95387-95388 +95389-95398 +95389-95392 +95390-95391 +95391 +95393-95398 +95394-95398 +95394-95395 +95395 +95396-95397 +95399-95413 +95399-95413 +95400-95413 +95400-95401 +95400-95401 +95402-95405 +95403-95405 +95403-95404 +95406-95413 +95406-95410 +95407-95410 +95408-95410 +95409-95410 +95412-95413 +95413 +95414-95420 +95414-95420 +95415-95420 +95415-95417 +95416-95417 +95419-95420 +95420 +95421-95434 +95421-95434 +95422-95434 +95422-95428 +95422-95424 +95423-95424 +95425-95428 +95425-95427 +95426-95427 +95429-95434 +95430-95434 +95430-95432 +95431-95432 +95435-95437 +95435-95437 +95436-95437 +95438-95476 +95438-95476 +95438-95453 +95438-95445 +95438-95440 +95439-95440 +95441-95445 +95442-95445 +95443-95445 +95444-95445 +95446-95453 +95446-95448 +95447-95448 +95449-95453 +95450-95453 +95451-95453 +95452-95453 +95454-95476 +95455-95476 +95455-95471 +95455-95457 +95456-95457 +95458-95471 +95458-95463 +95459-95463 +95460-95463 +95461-95463 +95462-95463 +95466-95467 +95468-95471 +95469-95471 +95470-95471 +95472-95476 +95473-95476 +95473-95474 +95477-95486 +95477-95486 +95478-95486 +95479-95486 +95479-95481 +95482-95486 +95483-95486 +95483-95484 +95487-95494 +95487-95494 +95488-95489 +95490-95494 +95490-95491 +95495-95513 +95495-95513 +95496-95513 +95496-95508 +95496-95497 +95499-95504 +95499-95500 +95501-95503 +95502-95503 +95505-95508 +95506-95508 +95506-95507 +95509-95513 +95510-95513 +95510-95511 +95512-95513 +95514-95528 +95514-95528 +95514 +95515-95523 +95516-95519 +95518-95519 +95521-95523 +95521-95522 +95524-95528 +95525-95528 +95525-95526 +95529-95550 +95529-95550 +95529-95531 +95530-95531 +95533-95550 +95534-95550 +95534-95548 +95534-95543 +95534-95539 +95534-95535 +95536-95539 +95537-95539 +95538-95539 +95541-95543 +95541-95542 +95544-95548 +95545-95548 +95549-95550 +95551-95571 +95551-95571 +95552-95571 +95552-95562 +95552-95553 +95554-95555 +95557-95562 +95558-95559 +95559 +95561-95562 +95563-95571 +95564-95571 +95564-95565 +95566-95571 +95567-95568 +95570-95571 +95571 +95572-95593 +95572-95593 +95573-95593 +95573-95589 +95574-95589 +95574-95584 +95574-95580 +95575-95577 +95575-95576 +95578-95580 +95579-95580 +95581-95584 +95582-95584 +95585-95589 +95586-95589 +95587-95589 +95588-95589 +95590-95593 +95591-95593 +95592-95593 +95593 +95594-95632 +95594-95632 +95595-95632 +95595-95603 +95596-95603 +95596-95597 +95598-95603 +95599-95603 +95600-95603 +95601-95603 +95602-95603 +95604-95632 +95604-95616 +95604-95606 +95605-95606 +95607-95609 +95608-95609 +95610-95616 +95610-95614 +95611-95614 +95612-95614 +95613-95614 +95617-95632 +95618-95632 +95619-95621 +95620-95621 +95623-95624 +95625-95632 +95626-95632 +95627-95632 +95628-95629 +95630-95631 +95633-95636 +95633-95636 +95634-95636 +95636 +95637-95649 +95637-95649 +95637-95638 +95638 +95639-95649 +95639-95641 +95642-95643 +95644-95645 +95646-95647 +95648-95649 +95650-95653 +95650-95653 +95651-95652 +95654-95669 +95654-95669 +95654-95657 +95655-95657 +95658-95669 +95658-95666 +95658-95666 +95658-95663 +95659-95663 +95660-95663 +95661-95663 +95661-95662 +95664-95666 +95665-95666 +95667-95669 +95668-95669 +95670-95683 +95670-95683 +95671-95683 +95671-95677 +95671-95674 +95672-95674 +95675-95677 +95676-95677 +95678-95683 +95679-95683 +95680-95683 +95681-95683 +95682-95683 +95684-95693 +95684-95693 +95685-95693 +95685-95689 +95685-95688 +95686-95688 +95690-95693 +95691-95693 +95691-95692 +95694-95701 +95694-95701 +95695-95701 +95695-95698 +95696-95698 +95696-95697 +95697 +95699-95701 +95699-95700 +95702-95718 +95702-95718 +95703-95718 +95703-95713 +95704-95705 +95707 +95708-95713 +95709-95713 +95709-95710 +95711-95713 +95712-95713 +95714-95718 +95715-95718 +95715-95716 +95719-95726 +95719-95726 +95720-95726 +95721-95724 +95723-95724 +95726 +95727-95744 +95727-95744 +95727-95739 +95727-95733 +95728-95733 +95728-95733 +95729-95733 +95730-95733 +95731-95733 +95732-95733 +95734-95739 +95734-95735 +95736-95738 +95737-95738 +95740-95744 +95741-95744 +95744 +95745-95751 +95745-95751 +95746-95751 +95746 +95747-95751 +95748-95751 +95748-95750 +95749-95750 +95752-95769 +95752-95769 +95753-95769 +95753-95762 +95753-95756 +95754-95756 +95754-95755 +95757-95762 +95757-95758 +95759-95761 +95760-95761 +95763-95769 +95764-95769 +95767-95769 +95768-95769 +95770-95782 +95770-95782 +95770-95777 +95771-95777 +95771-95772 +95773-95776 +95774-95776 +95775-95776 +95778-95782 +95779-95782 +95779-95780 +95783-95797 +95783-95797 +95783-95789 +95784-95789 +95786-95789 +95787-95789 +95788-95789 +95790-95797 +95791-95793 +95794-95797 +95795-95797 +95795-95796 +95798-95802 +95798-95802 +95799-95802 +95799-95801 +95800-95801 +95802 +95803-95814 +95803-95814 +95804-95814 +95804-95805 +95804-95805 +95806-95808 +95807-95808 +95808 +95809-95814 +95810-95814 +95810-95812 +95811-95812 +95815-95821 +95815-95821 +95816-95821 +95817-95820 +95818-95820 +95819-95820 +95822-95852 +95822-95852 +95823-95852 +95823 +95826-95841 +95827-95841 +95828-95841 +95828-95830 +95831-95833 +95834-95837 +95834-95835 +95838-95841 +95838-95839 +95842-95852 +95842-95847 +95842-95843 +95846-95847 +95847 +95848-95852 +95849-95852 +95850-95852 +95853-95890 +95853-95890 +95854-95890 +95856-95857 +95858-95860 +95861-95890 +95861-95870 +95862-95870 +95864-95867 +95865-95867 +95866-95867 +95868-95870 +95869-95870 +95871-95873 +95872-95873 +95873 +95874-95883 +95875-95883 +95876-95883 +95877-95880 +95878-95880 +95879-95880 +95881-95883 +95882-95883 +95884-95890 +95885-95890 +95886-95890 +95886-95887 +95888-95890 +95889-95890 +95891-95906 +95891-95906 +95893-95895 +95894-95895 +95897-95906 +95897-95903 +95897-95898 +95899-95900 +95902-95903 +95904-95906 +95905-95906 +95907-95913 +95907-95913 +95907-95909 +95910-95913 +95911-95913 +95912-95913 +95914-95921 +95914-95921 +95915-95921 +95915-95916 +95919-95921 +95920-95921 +95920-95921 +95922-95940 +95922-95940 +95923-95940 +95925-95940 +95926-95940 +95926-95928 +95927-95928 +95929-95940 +95929-95934 +95933-95934 +95936-95940 +95937-95940 +95938-95940 +95939-95940 +95941-95971 +95941-95971 +95942-95971 +95942-95956 +95942-95946 +95942-95943 +95945-95946 +95947-95956 +95948-95956 +95948-95953 +95948-95950 +95949-95950 +95951-95953 +95952-95953 +95957-95971 +95958-95971 +95958-95961 +95959-95960 +95962-95971 +95963-95971 +95963-95971 +95966-95971 +95967-95971 +95967-95969 +95968-95969 +95970-95971 +95972-95981 +95972-95981 +95973-95981 +95973-95978 +95973-95976 +95973-95974 +95975-95976 +95979-95981 +95980-95981 +95982-95999 +95982-95999 +95983-95999 +95983-95989 +95984-95989 +95986-95989 +95987-95989 +95987-95988 +95990-95999 +95992-95994 +95992-95993 +95995-95999 +95996-95999 +95996-95997 +96000-96008 +96000-96008 +96001-96008 +96001-96005 +96002-96005 +96002-96003 +96009-96046 +96009-96046 +96010-96046 +96010-96013 +96011-96013 +96014-96046 +96015-96046 +96015-96023 +96016-96018 +96017-96018 +96019-96023 +96020-96023 +96021-96023 +96022-96023 +96024-96046 +96025-96046 +96026-96029 +96027-96029 +96028-96029 +96030-96046 +96031-96046 +96032-96034 +96033-96034 +96035-96046 +96036-96046 +96037-96046 +96037-96038 +96039-96046 +96039-96041 +96043-96046 +96044-96046 +96047-96054 +96047-96054 +96048-96054 +96048-96051 +96049-96051 +96055-96069 +96055-96069 +96056-96069 +96056-96059 +96057-96059 +96060-96069 +96061-96063 +96062-96063 +96064-96069 +96066-96069 +96067-96069 +96068-96069 +96070-96076 +96070-96076 +96071-96076 +96071-96075 +96072-96075 +96073-96075 +96074-96075 +96077-96090 +96077-96090 +96077-96086 +96078-96086 +96078-96081 +96079-96081 +96079-96080 +96082-96083 +96084-96085 +96088-96089 +96091-96099 +96091-96099 +96092-96099 +96094-96095 +96096-96099 +96097-96099 +96098-96099 +96099 +96100-96109 +96100-96109 +96101-96109 +96101-96104 +96102-96104 +96102-96103 +96105-96107 +96106-96107 +96108-96109 +96110-96123 +96110-96123 +96111-96123 +96111-96116 +96112-96116 +96112-96114 +96113-96114 +96118-96121 +96119-96121 +96120-96121 +96124-96129 +96124-96129 +96125-96129 +96126-96129 +96127-96129 +96128-96129 +96130-96139 +96130-96139 +96130-96131 +96132-96139 +96133-96135 +96134-96135 +96136-96139 +96137-96139 +96138-96139 +96140-96159 +96140-96159 +96141-96142 +96143-96150 +96144-96150 +96145-96146 +96147-96150 +96148-96150 +96149-96150 +96151-96159 +96152-96159 +96153-96159 +96153-96154 +96155-96159 +96156-96159 +96157-96159 +96158-96159 +96160-96173 +96160-96173 +96161-96173 +96162-96173 +96164-96173 +96165-96173 +96167-96169 +96168-96169 +96170-96173 +96171-96173 +96172-96173 +96174-96178 +96174-96178 +96174-96177 +96174-96175 +96176-96177 +96179-96185 +96179-96185 +96180-96185 +96182-96185 +96183-96185 +96184-96185 +96186-96199 +96186-96199 +96187-96199 +96187-96191 +96188-96191 +96189-96191 +96190-96191 +96192-96199 +96193-96199 +96194-96199 +96194-96199 +96195-96199 +96196-96199 +96198-96199 +96200-96223 +96200-96223 +96201-96223 +96201-96205 +96202-96205 +96204-96205 +96207-96210 +96208-96210 +96209-96210 +96212-96216 +96213-96216 +96215-96216 +96217-96223 +96218-96223 +96219-96220 +96222-96223 +96224-96231 +96224-96231 +96225-96231 +96227-96231 +96228-96231 +96229-96231 +96230-96231 +96232-96241 +96232-96241 +96232-96236 +96233-96236 +96240-96241 +96242-96247 +96242-96247 +96243-96244 +96246-96247 +96248-96263 +96248-96263 +96248 +96249-96250 +96252-96263 +96253-96263 +96254-96263 +96255-96263 +96256-96263 +96258-96263 +96259-96263 +96259-96260 +96261-96263 +96262-96263 +96264-96273 +96264-96273 +96264-96269 +96265-96269 +96265-96266 +96268-96269 +96272-96273 +96274-96283 +96274-96283 +96274-96280 +96274-96277 +96275-96277 +96278 +96279-96280 +96280 +96281-96283 +96282-96283 +96284-96285 +96284-96285 +96286-96290 +96286-96290 +96287-96288 +96289-96290 +96291-96300 +96291-96300 +96291-96295 +96291-96292 +96293-96295 +96294-96295 +96296-96300 +96297-96300 +96297-96298 +96301-96304 +96301-96304 +96301-96302 +96305-96315 +96305-96315 +96306-96315 +96308-96315 +96308-96311 +96310-96311 +96312-96315 +96313-96315 +96313-96314 +96316-96324 +96316-96324 +96316 +96317-96321 +96317-96319 +96323-96324 +96325-96343 +96325-96343 +96326-96343 +96326-96327 +96328-96336 +96329-96333 +96329-96332 +96329-96330 +96331-96332 +96332 +96335-96336 +96335-96336 +96337-96343 +96337-96338 +96338 +96339-96343 +96340-96343 +96341-96343 +96342-96343 +96344-96357 +96344-96357 +96345-96357 +96345-96351 +96345-96346 +96350-96351 +96351 +96352-96357 +96353-96357 +96353-96355 +96354-96355 +96356-96357 +96358-96378 +96358-96378 +96359-96363 +96359-96360 +96361-96363 +96362-96363 +96365-96378 +96365-96367 +96366-96367 +96368-96371 +96369-96371 +96370-96371 +96372-96375 +96373-96375 +96374-96375 +96376-96378 +96377-96378 +96379-96384 +96379-96384 +96380-96384 +96380-96384 +96380-96381 +96382-96384 +96383-96384 +96385-96396 +96385-96396 +96386-96396 +96386-96391 +96387-96391 +96388-96391 +96389-96391 +96389-96390 +96392-96396 +96393-96396 +96394-96396 +96395-96396 +96397-96407 +96397-96407 +96397-96399 +96398-96399 +96400-96403 +96401-96403 +96402-96403 +96404-96407 +96405-96407 +96406-96407 +96408-96413 +96408-96413 +96409-96413 +96412-96413 +96414-96419 +96414-96419 +96415-96419 +96416-96419 +96417-96419 +96418-96419 +96420-96425 +96420-96425 +96420-96422 +96421-96422 +96423-96425 +96424-96425 +96426-96431 +96426-96431 +96426-96428 +96427-96428 +96429-96431 +96430-96431 +96432-96437 +96432-96437 +96432-96434 +96433-96434 +96435-96437 +96436-96437 +96438-96443 +96438-96443 +96438-96440 +96439-96440 +96441-96443 +96442-96443 +96444-96450 +96444-96450 +96444-96447 +96445-96447 +96446-96447 +96449-96450 +96451-96467 +96451-96467 +96454-96467 +96454-96461 +96455-96458 +96455-96457 +96456-96457 +96459-96461 +96460-96461 +96461 +96462-96467 +96462-96464 +96463-96464 +96465-96467 +96466-96467 +96467 +96468-96478 +96468-96478 +96469-96478 +96470-96472 +96471-96472 +96474-96478 +96474-96475 +96474-96475 +96476-96478 +96477-96478 +96479-96489 +96479-96489 +96479-96484 +96479-96481 +96480-96481 +96482-96483 +96485-96489 +96485-96487 +96486-96487 +96488-96489 +96490-96504 +96490-96504 +96490-96496 +96490-96492 +96491-96492 +96494-96496 +96495-96496 +96497-96504 +96498-96504 +96498-96500 +96499-96500 +96502-96504 +96503-96504 +96505-96517 +96505-96517 +96506-96517 +96506-96511 +96507-96511 +96508-96511 +96509-96511 +96510-96511 +96513-96517 +96514-96517 +96515-96517 +96516-96517 +96518-96536 +96518-96536 +96519-96536 +96521 +96522-96536 +96523-96536 +96523-96530 +96523-96525 +96524-96525 +96526-96528 +96526-96527 +96531-96536 +96532-96536 +96532-96533 +96534-96535 +96537-96540 +96537-96540 +96537 +96538-96540 +96541-96555 +96541-96555 +96541-96543 +96544-96555 +96545-96555 +96547-96555 +96547-96548 +96549-96551 +96550-96551 +96552-96555 +96553-96555 +96554-96555 +96556-96565 +96556-96565 +96557-96565 +96557 +96558-96562 +96559-96562 +96559-96560 +96563-96565 +96564-96565 +96566-96578 +96566-96578 +96567-96578 +96568-96578 +96568-96572 +96568-96570 +96568-96569 +96573-96578 +96574-96578 +96574-96576 +96574-96575 +96579-96612 +96579-96612 +96580-96612 +96580-96591 +96581-96591 +96581-96585 +96581-96583 +96581-96582 +96586-96591 +96587-96591 +96587-96589 +96587-96588 +96592-96612 +96594-96597 +96594-96595 +96596-96597 +96597 +96598-96612 +96598-96602 +96599-96600 +96601-96602 +96603-96612 +96603-96607 +96603 +96605-96607 +96606-96607 +96608-96612 +96608 +96610-96612 +96611-96612 +96613-96626 +96613-96626 +96614-96626 +96614-96619 +96614-96617 +96615-96617 +96616-96617 +96618-96619 +96620-96626 +96621-96626 +96621-96624 +96622-96624 +96623-96624 +96625-96626 +96627-96641 +96627-96641 +96628-96641 +96629-96641 +96629-96630 +96631-96641 +96632-96641 +96634-96635 +96636-96641 +96637-96641 +96637-96639 +96638-96639 +96640-96641 +96642-96665 +96642-96665 +96643-96665 +96643-96645 +96643-96645 +96643-96644 +96647-96648 +96649-96655 +96650-96654 +96651-96654 +96652-96654 +96653-96654 +96656-96665 +96657-96665 +96658-96665 +96658-96660 +96659-96660 +96664-96665 +96666-96683 +96666-96683 +96667-96683 +96667-96673 +96667-96673 +96668-96673 +96668-96669 +96670-96673 +96671-96673 +96672-96673 +96674-96683 +96674-96679 +96675-96679 +96676-96679 +96677-96679 +96678-96679 +96680-96683 +96681-96682 +96684-96703 +96684-96703 +96684-96686 +96685-96686 +96687-96688 +96689-96690 +96692-96696 +96693-96696 +96694-96696 +96695-96696 +96697-96703 +96698-96703 +96699-96700 +96700 +96704-96719 +96704-96719 +96705-96719 +96705-96706 +96706 +96707-96719 +96707-96709 +96708-96709 +96710-96719 +96710-96711 +96714-96719 +96715-96717 +96716-96717 +96718-96719 +96720-96729 +96720-96729 +96721-96729 +96721-96726 +96722-96726 +96724-96726 +96725-96726 +96727-96728 +96730-96739 +96730-96739 +96731-96739 +96731-96736 +96732-96733 +96734-96736 +96735-96736 +96737-96739 +96738-96739 +96740-96754 +96740-96754 +96741-96754 +96741-96744 +96741-96742 +96743 +96745-96747 +96746-96747 +96748-96754 +96749-96754 +96752-96754 +96753-96754 +96755-96773 +96755-96773 +96756-96773 +96756-96762 +96758-96762 +96760-96761 +96763-96773 +96764-96773 +96765-96773 +96765-96766 +96768-96769 +96770-96773 +96771-96773 +96771-96772 +96774-96780 +96774-96780 +96775-96780 +96776-96777 +96778-96780 +96779-96780 +96781-96790 +96781-96790 +96782-96790 +96782-96787 +96784-96787 +96785-96787 +96786-96787 +96788-96790 +96789-96790 +96789 +96791-96807 +96791-96807 +96792-96807 +96792-96800 +96792-96794 +96793-96794 +96796-96800 +96797-96800 +96799-96800 +96801-96807 +96802-96807 +96802-96804 +96803-96804 +96806-96807 +96808-96812 +96808-96812 +96809-96812 +96813-96827 +96813-96827 +96814-96827 +96814-96821 +96814-96817 +96816-96817 +96818-96821 +96819-96821 +96820-96821 +96822-96827 +96823-96827 +96825-96827 +96826-96827 +96828-96854 +96828-96854 +96829-96854 +96829-96850 +96829-96842 +96829-96832 +96830-96832 +96831-96832 +96836-96842 +96837-96842 +96838-96839 +96840-96842 +96841-96842 +96843-96850 +96844-96850 +96848-96850 +96849-96850 +96851-96854 +96852-96854 +96852 +96853-96854 +96854 +96855-96861 +96855-96861 +96855 +96856-96859 +96857-96859 +96858-96859 +96860 +96861 +96862-96866 +96862-96866 +96862-96863 +96864-96865 +96867-96898 +96867-96898 +96868-96898 +96868-96870 +96870 +96871-96886 +96872-96886 +96872-96874 +96873-96874 +96875-96886 +96876-96886 +96876-96879 +96877-96879 +96878-96879 +96880-96886 +96881-96886 +96881-96882 +96883-96884 +96887-96898 +96888-96898 +96888-96889 +96891-96898 +96891-96892 +96893-96898 +96894-96898 +96895-96898 +96896-96898 +96896 +96897-96898 +96898 +96899-96922 +96899-96922 +96900-96922 +96900-96914 +96901-96908 +96902-96908 +96903-96908 +96904-96908 +96905-96906 +96907-96908 +96909-96914 +96910-96914 +96910-96912 +96911-96912 +96915-96922 +96916-96922 +96917-96922 +96917-96919 +96918-96919 +96920-96922 +96921-96922 +96923-96926 +96923-96926 +96924-96926 +96925-96926 +96927-96932 +96927-96932 +96929-96932 +96930-96932 +96931-96932 +96933-96946 +96933-96946 +96935-96936 +96938-96940 +96939-96940 +96941-96946 +96942-96946 +96943-96946 +96943-96945 +96944-96945 +96947-96951 +96947-96951 +96949-96951 +96949-96950 +96952-96956 +96952-96956 +96954-96956 +96955-96956 +96957-96962 +96957-96962 +96957-96958 +96959-96962 +96960-96962 +96961-96962 +96963-96970 +96963-96970 +96963-96968 +96964-96968 +96967-96968 +96969-96970 +96971-96972 +96971-96972 +96971 +96973-96979 +96973-96979 +96973-96977 +96974-96977 +96975-96977 +96975-96976 +96978-96979 +96980-96988 +96980-96988 +96980-96982 +96981-96982 +96983-96985 +96984-96985 +96986-96988 +96987-96988 +96989-97017 +96989-97017 +96989-96999 +96989-96995 +96990-96995 +96990-96992 +96991-96992 +96993-96995 +96994-96995 +96996-96999 +96997-96999 +96998-96999 +97000-97007 +97000-97003 +97001-97003 +97002-97003 +97004-97007 +97005-97007 +97006-97007 +97008-97017 +97009-97017 +97009-97011 +97009-97010 +97012-97017 +97013-97017 +97014-97017 +97015-97017 +97016-97017 +97018-97029 +97018-97029 +97019-97021 +97020-97021 +97022-97029 +97023-97029 +97023-97025 +97024-97025 +97026-97029 +97027-97029 +97028-97029 +97030-97091 +97030-97091 +97031-97073 +97031-97039 +97032-97039 +97032-97034 +97033-97034 +97035-97039 +97035-97037 +97036-97037 +97038-97039 +97040-97073 +97040-97047 +97041-97047 +97041-97043 +97042-97043 +97044-97047 +97045-97047 +97046-97047 +97048-97073 +97049-97073 +97051-97055 +97052-97055 +97053-97055 +97054-97055 +97056-97073 +97057-97073 +97058-97073 +97059-97073 +97061-97064 +97062-97064 +97063-97064 +97065-97073 +97066-97073 +97067-97073 +97068-97073 +97071-97073 +97072-97073 +97074-97091 +97075-97091 +97075-97082 +97076-97082 +97077-97080 +97078-97080 +97079-97080 +97081-97082 +97084-97086 +97085-97086 +97088-97091 +97089-97091 +97090-97091 +97092-97100 +97092-97100 +97093-97100 +97093-97094 +97094 +97095-97100 +97096-97100 +97097-97100 +97098-97100 +97099-97100 +97101-97117 +97101-97117 +97101-97102 +97102 +97103-97117 +97104-97117 +97104-97106 +97105-97106 +97107-97117 +97108-97117 +97109-97117 +97110-97117 +97111-97117 +97112-97117 +97113-97117 +97114-97117 +97115-97116 +97118-97135 +97118-97135 +97119-97135 +97119-97121 +97120-97121 +97123-97124 +97125-97135 +97126-97135 +97127-97135 +97127-97131 +97128-97131 +97129-97131 +97130-97131 +97133-97135 +97134-97135 +97136-97162 +97136-97162 +97137-97162 +97137 +97140-97150 +97142-97150 +97143-97150 +97143-97145 +97144-97145 +97146-97150 +97147-97150 +97148-97150 +97149-97150 +97151-97162 +97152-97162 +97152-97153 +97154-97155 +97157-97162 +97158-97162 +97160-97162 +97161-97162 +97162 +97163-97220 +97163-97220 +97164-97220 +97164-97171 +97165-97166 +97167-97170 +97168-97170 +97169-97170 +97172-97220 +97173-97220 +97174-97177 +97174-97175 +97176-97177 +97179-97220 +97179-97220 +97180-97220 +97180-97193 +97180-97185 +97180-97181 +97182-97185 +97183-97185 +97184-97185 +97186-97193 +97186-97191 +97187-97189 +97188-97189 +97192-97193 +97193 +97194-97220 +97194-97196 +97194-97195 +97198-97220 +97198-97207 +97198-97200 +97198-97199 +97201-97207 +97202-97203 +97204-97205 +97206-97207 +97208-97220 +97209-97220 +97209-97211 +97210-97211 +97212-97215 +97213-97215 +97213-97214 +97216-97217 +97219-97220 +97221-97254 +97221-97254 +97222-97254 +97222-97225 +97222-97224 +97223-97224 +97227-97231 +97228-97231 +97229-97231 +97230-97231 +97232-97254 +97233-97254 +97233-97250 +97233-97238 +97234-97238 +97234-97236 +97235-97236 +97237-97238 +97239-97246 +97240-97242 +97241-97242 +97244-97246 +97245-97246 +97248-97250 +97249-97250 +97251-97254 +97252-97254 +97253-97254 +97255-97293 +97255-97293 +97256-97293 +97256-97266 +97258-97266 +97261-97266 +97261-97263 +97262-97263 +97264-97266 +97265-97266 +97267-97293 +97268-97293 +97268 +97270-97293 +97270-97271 +97273-97278 +97274-97278 +97277-97278 +97279-97293 +97280-97293 +97280-97281 +97283-97293 +97284-97293 +97284-97285 +97287-97293 +97288-97293 +97289-97293 +97290-97293 +97290-97292 +97291-97292 +97294-97326 +97294-97326 +97295-97326 +97295-97297 +97296-97297 +97299-97326 +97299-97306 +97300-97301 +97303-97306 +97304-97306 +97304-97305 +97307-97326 +97307-97312 +97308-97312 +97308-97309 +97311-97312 +97313-97319 +97314-97319 +97315-97316 +97318-97319 +97320-97326 +97321-97326 +97321-97322 +97324-97326 +97325-97326 +97327-97334 +97327-97334 +97328-97334 +97328-97329 +97331-97334 +97332-97334 +97332-97333 +97335-97351 +97335-97351 +97336-97351 +97336-97340 +97336-97337 +97338-97339 +97342-97351 +97343-97344 +97345-97351 +97345-97347 +97346-97347 +97348-97351 +97349-97351 +97350-97351 +97352-97367 +97352-97367 +97353-97367 +97354-97355 +97356-97367 +97357-97367 +97357-97362 +97357-97359 +97358-97359 +97360-97362 +97361-97362 +97365-97367 +97366-97367 +97368-97396 +97368-97396 +97369-97396 +97369-97391 +97369-97386 +97369-97374 +97369-97372 +97370-97372 +97370-97371 +97373-97374 +97375-97386 +97376-97386 +97376-97377 +97378-97379 +97381-97386 +97382-97386 +97383-97384 +97385-97386 +97389-97391 +97390-97391 +97392-97396 +97393-97396 +97394-97395 +97397-97404 +97397-97404 +97398-97404 +97398-97400 +97399-97400 +97401-97402 +97403-97404 +97405-97416 +97405-97416 +97406-97416 +97406-97408 +97407-97408 +97409-97410 +97411-97412 +97413-97414 +97415-97416 +97417-97442 +97417-97442 +97418-97442 +97418-97427 +97419-97427 +97419-97424 +97421-97422 +97423-97424 +97425-97427 +97426-97427 +97428-97442 +97429-97442 +97430-97442 +97430-97432 +97431-97432 +97433-97442 +97434-97442 +97435-97438 +97436-97438 +97437-97438 +97439-97442 +97440-97442 +97441-97442 +97443-97459 +97443-97459 +97444-97459 +97446-97447 +97449-97452 +97450-97452 +97451-97452 +97453-97459 +97454-97459 +97454-97455 +97458-97459 +97460-97475 +97460-97475 +97461-97475 +97461-97471 +97462-97465 +97463-97465 +97464-97465 +97467-97471 +97469-97471 +97470-97471 +97472-97475 +97473-97475 +97473-97474 +97476-97487 +97476-97487 +97477-97487 +97479-97487 +97480-97487 +97481-97487 +97481-97482 +97483-97484 +97485-97486 +97488-97503 +97488-97503 +97489-97503 +97489-97492 +97490-97492 +97493-97494 +97495-97497 +97496-97497 +97498-97503 +97499-97503 +97500-97503 +97501-97503 +97502-97503 +97504-97528 +97504-97528 +97505-97528 +97506-97507 +97508-97517 +97509-97517 +97510 +97513-97517 +97514-97517 +97514-97516 +97518-97528 +97519-97521 +97520-97521 +97522-97528 +97523-97528 +97523-97525 +97524-97525 +97526-97527 +97529-97553 +97529-97553 +97530-97553 +97530-97535 +97531-97535 +97532-97535 +97533-97535 +97534-97535 +97538-97540 +97539-97540 +97541-97553 +97542-97543 +97543 +97545-97553 +97546-97553 +97547-97553 +97548-97553 +97549-97553 +97552-97553 +97554-97568 +97554-97568 +97555-97568 +97555-97557 +97556-97557 +97559-97560 +97562-97568 +97562-97563 +97564-97565 +97566-97568 +97567-97568 +97569-97593 +97569-97593 +97570-97571 +97572-97578 +97572-97574 +97572-97573 +97575-97578 +97576-97578 +97577-97578 +97579-97585 +97580-97585 +97580-97581 +97583-97585 +97584-97585 +97586-97593 +97587-97593 +97588-97593 +97588-97590 +97589-97590 +97592-97593 +97594-97600 +97594-97600 +97595-97600 +97596-97600 +97598-97599 +97601-97615 +97601-97615 +97602-97615 +97602-97603 +97606-97615 +97607-97615 +97608-97610 +97609-97610 +97611-97615 +97612-97615 +97612-97613 +97616-97620 +97616-97620 +97617-97620 +97617-97619 +97621-97645 +97621-97645 +97622-97645 +97622-97639 +97622-97633 +97622-97623 +97626-97633 +97627-97633 +97629-97630 +97631-97633 +97632-97633 +97634-97639 +97635-97639 +97637-97639 +97638-97639 +97640-97645 +97641-97645 +97642-97644 +97643-97644 +97646-97681 +97646-97681 +97647-97681 +97647-97661 +97647-97655 +97648-97650 +97649-97650 +97651-97655 +97652-97655 +97653-97655 +97654-97655 +97656-97661 +97657-97661 +97660-97661 +97662-97681 +97662-97675 +97665-97667 +97666-97667 +97668-97675 +97669-97675 +97672-97675 +97673-97675 +97674-97675 +97676-97681 +97677-97681 +97677-97678 +97680-97681 +97682-97731 +97682-97731 +97683-97731 +97684-97704 +97684-97685 +97686-97704 +97687-97704 +97687-97692 +97690-97692 +97691-97692 +97693-97704 +97694-97704 +97694-97698 +97695-97698 +97696-97698 +97697-97698 +97700-97701 +97702-97704 +97703-97704 +97705-97731 +97706-97731 +97706-97717 +97706-97707 +97709-97710 +97711-97717 +97711-97713 +97712-97713 +97713 +97714-97717 +97715-97717 +97716-97717 +97717 +97718-97731 +97718-97724 +97719-97724 +97720-97724 +97721-97724 +97721-97722 +97723-97724 +97725-97731 +97726-97731 +97727-97731 +97728-97731 +97728-97729 +97730-97731 +97732-97736 +97732-97736 +97733-97736 +97733-97734 +97737-97760 +97737-97760 +97738-97760 +97739-97747 +97739-97740 +97741-97744 +97742-97744 +97743-97744 +97745-97747 +97746-97747 +97746-97747 +97749-97760 +97749-97755 +97749-97751 +97750-97751 +97750-97751 +97752-97755 +97753-97755 +97754-97755 +97754-97755 +97756-97760 +97756-97757 +97758-97759 +97761-97764 +97761-97764 +97763-97764 +97765-97776 +97765-97776 +97766-97776 +97767-97776 +97768-97769 +97770-97771 +97772-97776 +97772-97773 +97774-97776 +97775-97776 +97777-97792 +97777-97792 +97777-97779 +97778-97779 +97782-97792 +97783-97786 +97784-97786 +97785-97786 +97787-97792 +97787-97789 +97788-97789 +97790-97792 +97791-97792 +97793-97816 +97793-97816 +97794-97816 +97795-97816 +97796-97797 +97798-97816 +97798-97800 +97799-97800 +97801-97816 +97802-97807 +97805-97807 +97806-97807 +97807 +97808-97816 +97809-97811 +97810-97811 +97813-97816 +97814-97816 +97815-97816 +97817-97826 +97817-97826 +97818-97826 +97818-97819 +97821-97823 +97822-97823 +97824-97826 +97825-97826 +97827-97855 +97827-97855 +97828-97837 +97829-97837 +97829-97830 +97833-97837 +97835-97837 +97836-97837 +97839-97855 +97839-97841 +97840-97841 +97842-97855 +97843-97855 +97844-97855 +97845-97855 +97849-97855 +97850-97855 +97851-97855 +97852-97855 +97856-97863 +97856-97863 +97857-97863 +97857-97859 +97857-97858 +97860-97863 +97861-97863 +97861-97862 +97864-97905 +97864-97905 +97865-97905 +97865-97895 +97866-97895 +97866-97869 +97867-97869 +97868-97869 +97870-97873 +97870-97871 +97875-97876 +97877-97895 +97878-97895 +97880-97882 +97881-97882 +97883-97895 +97884-97887 +97885-97887 +97886-97887 +97888-97895 +97889-97895 +97889-97893 +97890-97893 +97891-97893 +97892-97893 +97894-97895 +97895 +97896-97905 +97897-97898 +97899-97902 +97900-97902 +97901-97902 +97904-97905 +97906-97920 +97906-97920 +97907-97920 +97907-97912 +97908-97912 +97908-97911 +97909-97911 +97910-97911 +97913-97914 +97916-97919 +97917-97919 +97918-97919 +97921-97934 +97921-97934 +97922-97934 +97925-97926 +97926 +97927-97930 +97928-97930 +97929-97930 +97931-97934 +97932-97934 +97933-97934 +97933 +97935-97946 +97935-97946 +97936-97946 +97936-97940 +97937-97940 +97937-97938 +97938 +97939-97940 +97941-97942 +97943-97944 +97944 +97945-97946 +97947-97975 +97947-97975 +97948-97975 +97948-97953 +97948-97950 +97949-97950 +97951-97952 +97954-97975 +97955-97975 +97956-97975 +97957-97975 +97960-97963 +97961-97963 +97962-97963 +97964-97975 +97965-97975 +97966-97975 +97968-97970 +97969-97970 +97971-97975 +97972-97975 +97973-97975 +97974-97975 +97975 +97976-97980 +97976-97980 +97977-97980 +97978-97980 +97979-97980 +97981-98001 +97981-98001 +97982-98001 +97982-97985 +97983-97985 +97984-97985 +97986-97988 +97987-97988 +97989-97994 +97990-97994 +97991-97994 +97992-97994 +97993-97994 +97996-97997 +97998-98001 +97999-98001 +97999-98000 +98002-98014 +98002-98014 +98003-98014 +98003-98004 +98003-98004 +98005-98014 +98005-98008 +98006-98008 +98007-98008 +98009-98014 +98010-98013 +98011-98013 +98012-98013 +98015-98023 +98015-98023 +98016-98023 +98016-98020 +98017-98020 +98018-98020 +98019-98020 +98021-98023 +98022-98023 +98024-98029 +98024-98029 +98025-98029 +98025-98026 +98027-98028 +98030-98035 +98030-98035 +98031-98035 +98031-98034 +98032-98034 +98033-98034 +98036-98056 +98036-98056 +98037-98056 +98037-98038 +98039-98040 +98039 +98041-98044 +98041-98043 +98042-98043 +98045-98047 +98046-98047 +98049-98050 +98051-98052 +98053-98056 +98054-98056 +98054-98056 +98055-98056 +98057-98096 +98057-98096 +98057-98058 +98057-98058 +98059-98096 +98059-98062 +98060-98062 +98060-98061 +98063-98096 +98063-98064 +98064 +98065-98096 +98066 +98068-98096 +98069-98072 +98070-98072 +98071-98072 +98073-98096 +98074-98082 +98074-98076 +98075-98076 +98077-98082 +98078-98082 +98079-98082 +98080-98082 +98081-98082 +98084-98096 +98084-98087 +98085-98087 +98086-98087 +98090-98093 +98091-98093 +98092-98093 +98094-98096 +98095-98096 +98097-98138 +98097-98138 +98098-98138 +98098-98104 +98099-98104 +98100-98101 +98102-98104 +98103-98104 +98105-98138 +98105-98107 +98106-98107 +98107 +98108-98109 +98110-98138 +98110-98111 +98112-98116 +98113-98116 +98114-98116 +98114-98115 +98118-98121 +98119-98121 +98120-98121 +98122-98138 +98123-98138 +98124-98138 +98126-98138 +98127-98138 +98128-98138 +98129-98138 +98130-98138 +98131-98138 +98132-98138 +98133-98138 +98134-98138 +98136-98138 +98137-98138 +98139-98178 +98139-98178 +98140-98178 +98140-98152 +98141-98142 +98144-98152 +98144-98146 +98144-98145 +98147-98152 +98148-98152 +98149-98150 +98151-98152 +98153-98178 +98154-98178 +98154-98155 +98156-98178 +98156-98161 +98157-98161 +98158-98161 +98158-98159 +98162-98178 +98164-98167 +98165-98167 +98166-98167 +98168-98175 +98169-98175 +98170-98175 +98171-98175 +98172-98175 +98173-98175 +98174-98175 +98176-98178 +98177-98178 +98179-98198 +98179-98198 +98180-98198 +98181-98183 +98181-98182 +98184-98186 +98185-98186 +98187-98198 +98188-98198 +98188-98194 +98188-98191 +98189-98191 +98190-98191 +98193-98194 +98195-98198 +98196-98198 +98197-98198 +98199-98236 +98199-98236 +98199-98216 +98199-98204 +98199-98201 +98199-98200 +98202-98204 +98203-98204 +98205-98208 +98205 +98206-98208 +98207-98208 +98209-98212 +98209 +98210-98212 +98211-98212 +98213-98216 +98213 +98214-98216 +98215-98216 +98217-98236 +98217-98225 +98218-98221 +98219-98221 +98220-98221 +98222-98224 +98223-98224 +98226-98236 +98227-98236 +98227-98231 +98228-98231 +98229-98231 +98230-98231 +98232-98235 +98233-98235 +98234-98235 +98237-98258 +98237-98258 +98238-98258 +98238-98246 +98239-98241 +98240-98241 +98241 +98242-98243 +98245-98246 +98247-98258 +98248-98258 +98248-98252 +98249-98252 +98250-98252 +98251-98252 +98254-98258 +98255-98258 +98256-98258 +98257-98258 +98259-98269 +98259-98269 +98260-98269 +98260-98264 +98260-98261 +98262-98263 +98265-98269 +98266-98269 +98266-98267 +98268-98269 +98270-98304 +98270-98304 +98271-98304 +98271-98276 +98272-98276 +98273-98276 +98274-98276 +98275-98276 +98277-98282 +98278-98282 +98279-98282 +98280-98282 +98281-98282 +98282 +98283-98284 +98286-98304 +98287-98304 +98289-98304 +98290-98304 +98291-98304 +98291-98300 +98291-98295 +98292-98295 +98293-98295 +98293-98294 +98296-98297 +98298-98299 +98301-98304 +98302-98304 +98303-98304 +98305-98324 +98305-98324 +98306-98324 +98306-98309 +98306-98307 +98308-98309 +98310-98324 +98311-98324 +98311-98312 +98313-98316 +98314-98316 +98315-98316 +98317-98318 +98320-98324 +98321-98324 +98322-98324 +98323-98324 +98325-98343 +98325-98343 +98326-98343 +98326-98327 +98328-98343 +98329-98343 +98329-98335 +98330-98335 +98330-98334 +98331-98334 +98332-98334 +98333-98334 +98336-98343 +98337-98343 +98337-98339 +98338-98339 +98341-98343 +98342-98343 +98344-98367 +98344-98367 +98345-98367 +98345-98358 +98345-98349 +98346-98349 +98347-98349 +98348-98349 +98350-98353 +98350-98351 +98352-98353 +98354-98356 +98355-98356 +98359-98367 +98360-98363 +98362-98363 +98363 +98365-98367 +98365-98367 +98366-98367 +98368-98376 +98368-98376 +98369-98376 +98369-98371 +98369-98370 +98370 +98372-98376 +98373-98376 +98373-98375 +98374-98375 +98377-98397 +98377-98397 +98378-98397 +98379-98397 +98380-98397 +98380-98387 +98381-98387 +98381-98386 +98382-98386 +98383-98386 +98384-98386 +98385-98386 +98388-98389 +98391-98394 +98392-98394 +98392-98393 +98395-98397 +98396-98397 +98398-98417 +98398-98417 +98399-98417 +98399-98401 +98400-98401 +98403-98410 +98403-98409 +98403-98408 +98403-98405 +98404-98405 +98406-98408 +98407-98408 +98411-98417 +98412-98417 +98413-98417 +98413-98414 +98418-98440 +98418-98440 +98419-98440 +98419-98424 +98420-98424 +98421-98424 +98422-98424 +98423-98424 +98426 +98427-98433 +98428-98433 +98430-98433 +98430-98433 +98434-98440 +98435-98440 +98436-98437 +98438-98440 +98439-98440 +98441-98455 +98441-98455 +98442-98455 +98442-98447 +98443-98447 +98445-98447 +98446-98447 +98448-98455 +98449-98455 +98450-98455 +98452-98455 +98453-98455 +98454-98455 +98456-98490 +98456-98490 +98457-98490 +98457-98476 +98457-98458 +98459-98476 +98460-98476 +98460-98469 +98461-98469 +98462-98469 +98462-98465 +98463-98465 +98464-98465 +98467-98469 +98468-98469 +98470-98476 +98471-98476 +98471-98472 +98474-98476 +98475-98476 +98477-98490 +98478-98490 +98478 +98479-98490 +98480-98490 +98482-98490 +98482-98485 +98483-98485 +98484-98485 +98486-98490 +98487-98490 +98488-98490 +98489-98490 +98491-98500 +98491-98500 +98492-98500 +98494-98497 +98494-98497 +98494-98495 +98496-98497 +98498-98500 +98501-98525 +98501-98525 +98502-98525 +98502-98510 +98502-98504 +98502-98503 +98506-98510 +98507-98510 +98508-98510 +98509-98510 +98512-98525 +98513-98525 +98515-98518 +98516-98518 +98517-98518 +98519-98521 +98520-98521 +98522-98525 +98522-98523 +98523 +98524-98525 +98525 +98526-98533 +98526-98533 +98527-98533 +98527-98531 +98528-98531 +98529-98531 +98530-98531 +98534-98544 +98534-98544 +98535-98544 +98535-98536 +98537-98544 +98538-98544 +98539-98544 +98539-98543 +98540-98543 +98541-98543 +98542-98543 +98545-98567 +98545-98567 +98545-98556 +98546-98549 +98551-98556 +98551-98552 +98555-98556 +98557-98567 +98558-98567 +98559-98567 +98560-98567 +98561-98567 +98561-98563 +98561-98562 +98564-98567 +98565-98567 +98566-98567 +98568-98574 +98568-98574 +98569-98574 +98569-98571 +98570-98571 +98570 +98572-98574 +98573-98574 +98573 +98575-98609 +98575-98609 +98576-98609 +98576-98579 +98577-98579 +98578-98579 +98582-98609 +98584-98609 +98585-98609 +98585-98592 +98586-98587 +98589-98592 +98590-98592 +98590-98591 +98593-98609 +98594-98609 +98594-98595 +98597-98609 +98598-98609 +98598-98599 +98599 +98601-98609 +98604-98609 +98605-98609 +98605-98606 +98607-98609 +98608-98609 +98610-98618 +98610-98618 +98611-98618 +98612-98614 +98613-98614 +98617-98618 +98619-98628 +98619-98628 +98619-98624 +98620-98624 +98622-98623 +98625-98628 +98626-98628 +98629-98635 +98629-98635 +98630-98635 +98630-98633 +98631-98633 +98632-98633 +98634-98635 +98636-98641 +98636-98641 +98636-98638 +98636-98637 +98639-98641 +98642-98683 +98642-98683 +98643-98683 +98643-98660 +98643-98644 +98645-98660 +98646-98660 +98646-98647 +98648-98660 +98649-98660 +98649-98653 +98652-98653 +98654-98660 +98655-98660 +98657-98660 +98658-98660 +98659-98660 +98661-98683 +98662-98683 +98663-98683 +98664-98665 +98666-98667 +98670-98683 +98670-98675 +98673-98675 +98674-98675 +98676-98683 +98677-98683 +98678-98679 +98680-98683 +98681-98683 +98682-98683 +98684-98693 +98684-98693 +98685-98693 +98685-98687 +98685-98686 +98688-98693 +98689-98693 +98689-98690 +98692-98693 +98694-98699 +98694-98699 +98695-98696 +98697-98699 +98698-98699 +98700-98714 +98700-98714 +98700-98703 +98701-98703 +98704-98705 +98708-98714 +98709-98714 +98711-98712 +98713-98714 +98715-98739 +98715-98739 +98716-98739 +98716 +98719-98727 +98720-98721 +98722-98725 +98723-98725 +98724-98725 +98728-98739 +98729-98739 +98730-98739 +98730-98733 +98730-98731 +98734-98739 +98735-98739 +98735-98737 +98736-98737 +98740-98743 +98740-98743 +98742-98743 +98744-98747 +98744-98747 +98746-98747 +98748-98823 +98748-98823 +98748-98757 +98748-98752 +98748-98749 +98750-98751 +98753-98757 +98754-98757 +98756-98757 +98758-98823 +98759-98823 +98759-98760 +98763-98765 +98764-98765 +98766-98823 +98766-98768 +98767-98768 +98769-98770 +98771-98772 +98773-98774 +98775-98776 +98777-98778 +98779-98780 +98781-98782 +98783-98784 +98785-98786 +98787-98788 +98789-98790 +98791-98792 +98793-98794 +98795-98797 +98796-98797 +98798-98800 +98799-98800 +98801-98803 +98802-98803 +98804-98806 +98805-98806 +98807-98815 +98808-98815 +98809-98815 +98810-98815 +98811-98815 +98812-98815 +98813-98815 +98814-98815 +98816-98819 +98817-98819 +98818-98819 +98820-98823 +98821-98823 +98822-98823 +98824-98857 +98824-98857 +98824-98827 +98824-98825 +98825 +98826-98827 +98827 +98828-98831 +98828-98829 +98829 +98830-98831 +98831 +98832-98836 +98832-98833 +98833 +98834-98836 +98835-98836 +98835 +98837-98841 +98837-98838 +98838 +98839-98841 +98840-98841 +98842-98846 +98842-98843 +98843 +98844-98846 +98845-98846 +98847-98851 +98847-98848 +98848 +98849-98851 +98850-98851 +98852-98857 +98852-98854 +98853-98854 +98855-98857 +98856-98857 +98858-98868 +98858-98868 +98858 +98859-98861 +98860-98861 +98863-98864 +98865-98868 +98865-98867 +98866-98867 +98869-98878 +98869-98878 +98869-98872 +98871-98872 +98873-98878 +98874-98878 +98875-98878 +98876-98878 +98877-98878 +98879-98888 +98879-98888 +98880-98888 +98880-98882 +98880-98882 +98881-98882 +98883-98888 +98883-98885 +98884-98885 +98886-98888 +98887-98888 +98889-98892 +98889-98892 +98890-98891 +98893-98904 +98893-98904 +98894-98904 +98894-98898 +98896-98898 +98897-98898 +98899-98904 +98900-98904 +98903-98904 +98905-98916 +98905-98916 +98906-98916 +98906-98910 +98907-98908 +98909-98910 +98911-98916 +98912-98916 +98915-98916 +98917-98923 +98917-98923 +98918-98923 +98920-98921 +98922-98923 +98924-98948 +98924-98948 +98925-98948 +98925-98929 +98926-98928 +98927-98928 +98928 +98930-98948 +98931-98948 +98932-98933 +98934-98948 +98935-98948 +98935-98939 +98935-98937 +98936-98937 +98938-98939 +98939 +98940-98948 +98941-98948 +98941-98943 +98942-98943 +98944-98948 +98945-98948 +98947-98948 +98949-98980 +98949-98980 +98950-98980 +98950-98961 +98950-98959 +98950-98955 +98950-98953 +98951-98953 +98952-98953 +98954-98955 +98955 +98956-98959 +98957-98959 +98960-98961 +98962-98980 +98962-98977 +98962-98964 +98965-98969 +98966-98969 +98968-98969 +98970-98977 +98971-98977 +98974-98977 +98975-98977 +98976-98977 +98978-98980 +98979-98980 +98981-98999 +98981-98999 +98982-98999 +98982 +98983-98986 +98984-98986 +98985-98986 +98989-98994 +98990-98994 +98991-98994 +98992-98994 +98993-98994 +98995-98999 +98997-98999 +98998-98999 +99000-99001 +99000-99001 +99002-99007 +99002-99007 +99002-99003 +99004-99005 +99006-99007 +99008-99024 +99008-99024 +99008-99009 +99012-99024 +99013-99024 +99014-99024 +99015-99024 +99015-99018 +99016-99018 +99017-99018 +99020-99024 +99021-99024 +99022-99024 +99022-99024 +99023-99024 +99025-99034 +99025-99034 +99025-99029 +99028-99029 +99030-99034 +99033-99034 +99035-99045 +99035-99045 +99035-99037 +99036-99037 +99038-99045 +99039-99040 +99041-99045 +99042-99045 +99043-99045 +99044-99045 +99046-99065 +99046-99065 +99047-99065 +99047-99051 +99050-99051 +99052-99065 +99053-99057 +99055-99057 +99056-99057 +99059-99065 +99059-99061 +99059-99060 +99062-99063 +99064-99065 +99066-99078 +99066-99078 +99067-99078 +99067-99072 +99067-99070 +99068-99070 +99069-99070 +99071-99072 +99075-99078 +99076-99078 +99077-99078 +99079-99145 +99079-99145 +99080-99145 +99080-99111 +99080-99094 +99081-99085 +99082-99085 +99083-99085 +99084-99085 +99087-99094 +99088-99094 +99089-99094 +99090-99094 +99091-99094 +99093-99094 +99095-99107 +99097-99107 +99097-99099 +99098-99099 +99100-99102 +99101-99102 +99103-99107 +99104-99107 +99105-99107 +99106-99107 +99108-99111 +99109-99111 +99113-99145 +99113-99121 +99113-99119 +99114-99119 +99117-99119 +99118-99119 +99120-99121 +99122-99145 +99122-99135 +99123-99135 +99123-99124 +99125-99135 +99126-99135 +99127-99135 +99127-99129 +99127-99128 +99130-99133 +99131-99133 +99132-99133 +99136-99145 +99136-99137 +99138-99145 +99139-99140 +99140 +99142-99145 +99143-99145 +99144-99145 +99146-99155 +99146-99155 +99147-99155 +99148-99149 +99150-99155 +99151-99155 +99151-99152 +99154-99155 +99156-99165 +99156-99165 +99157-99165 +99157-99160 +99158-99160 +99158-99159 +99161-99164 +99161-99163 +99162-99163 +99166-99172 +99166-99172 +99167-99172 +99167-99170 +99168-99170 +99168-99169 +99173-99196 +99173-99196 +99174-99196 +99175-99180 +99175-99176 +99177-99180 +99178-99180 +99178-99179 +99183-99196 +99184-99196 +99185-99186 +99187-99188 +99189-99190 +99191-99192 +99193-99194 +99195-99196 +99197-99204 +99197-99204 +99197-99198 +99201-99204 +99203-99204 +99205-99232 +99205-99232 +99206-99232 +99206-99209 +99207-99209 +99210-99232 +99210-99232 +99211-99217 +99211-99213 +99212-99213 +99213 +99214-99217 +99215-99217 +99216-99217 +99217 +99219-99232 +99220-99232 +99221-99232 +99222-99227 +99222-99224 +99223-99224 +99225-99227 +99226-99227 +99228-99229 +99230-99232 +99231-99232 +99233-99235 +99233-99235 +99233-99234 +99236-99280 +99236-99280 +99237-99280 +99237-99255 +99237-99247 +99237-99240 +99238-99240 +99239-99240 +99241-99242 +99244-99247 +99245-99247 +99246-99247 +99248-99255 +99249-99255 +99250-99252 +99251-99252 +99253-99255 +99254-99255 +99257-99280 +99257-99262 +99258-99262 +99260-99261 +99263-99280 +99264 +99266-99280 +99266-99271 +99267-99271 +99268-99269 +99272-99280 +99273-99278 +99274-99278 +99275-99278 +99275-99276 +99277-99278 +99281-99300 +99281-99300 +99282-99300 +99282-99284 +99283-99284 +99286-99287 +99289-99300 +99290-99293 +99291-99293 +99291-99292 +99294-99300 +99295-99300 +99295-99298 +99296-99298 +99297-99298 +99301-99307 +99301-99307 +99301 +99302-99307 +99303-99307 +99303-99304 +99306-99307 +99308-99345 +99308-99345 +99309-99345 +99309 +99312-99322 +99312-99315 +99313-99315 +99314-99315 +99316-99322 +99317-99322 +99318-99322 +99319-99322 +99320-99322 +99321-99322 +99323-99345 +99324-99345 +99324-99327 +99325-99327 +99326-99327 +99328-99338 +99328-99332 +99329-99332 +99330-99332 +99331-99332 +99333-99338 +99334-99338 +99335-99338 +99335-99336 +99337-99338 +99340-99345 +99341-99345 +99342-99345 +99343-99345 +99344-99345 +99346-99401 +99346-99401 +99346-99369 +99347-99369 +99348-99369 +99348-99352 +99348-99349 +99350-99352 +99351-99352 +99354-99369 +99354-99356 +99355-99356 +99359-99369 +99359-99360 +99361-99369 +99362-99369 +99363-99369 +99364-99369 +99364-99365 +99366-99369 +99367-99369 +99368-99369 +99370-99401 +99371-99401 +99371-99373 +99371 +99372-99373 +99373 +99374-99401 +99375-99401 +99377-99381 +99377-99379 +99378-99379 +99380-99381 +99382-99384 +99383-99384 +99385-99401 +99386-99401 +99387-99401 +99390-99401 +99391-99401 +99391-99392 +99392 +99396-99397 +99398-99401 +99399-99401 +99399-99400 +99402-99428 +99402-99428 +99403-99428 +99403-99421 +99404-99421 +99404-99405 +99407-99421 +99408-99409 +99410-99411 +99412-99414 +99413-99414 +99415-99421 +99416-99421 +99417-99421 +99417-99420 +99417-99418 +99419-99420 +99423-99428 +99423-99427 +99424-99427 +99425-99427 +99426-99427 +99429-99444 +99429-99444 +99430-99432 +99430-99431 +99434-99444 +99434-99437 +99435-99437 +99436-99437 +99438-99443 +99439-99443 +99440-99443 +99440-99442 +99441-99442 +99445-99465 +99445-99465 +99446-99465 +99447-99453 +99448-99453 +99449-99453 +99449-99451 +99450-99451 +99452-99453 +99454-99465 +99455-99465 +99455-99456 +99458-99459 +99460-99465 +99461-99465 +99462-99464 +99463-99464 +99466-99470 +99466-99470 +99467-99470 +99468-99469 +99471-99486 +99471-99486 +99472-99486 +99475-99486 +99476-99483 +99477-99479 +99478-99479 +99479 +99481-99483 +99482-99483 +99483 +99485-99486 +99487-99505 +99487-99505 +99488-99505 +99489-99491 +99490-99491 +99491 +99493-99505 +99494-99505 +99494-99498 +99495-99498 +99495-99498 +99496-99498 +99497-99498 +99498 +99500-99505 +99501-99505 +99502-99505 +99503-99505 +99504-99505 +99505 +99506-99518 +99506-99518 +99507-99518 +99507-99510 +99508-99510 +99508-99509 +99511-99514 +99511-99513 +99512-99513 +99513 +99515-99518 +99516-99518 +99517-99518 +99519-99552 +99519-99552 +99520-99552 +99520-99528 +99521-99525 +99522-99525 +99522-99523 +99524-99525 +99527-99528 +99527-99528 +99529-99552 +99529-99532 +99530-99532 +99531-99532 +99533-99535 +99534-99535 +99536-99539 +99537-99539 +99538-99539 +99540-99549 +99541-99549 +99541-99544 +99542-99544 +99543-99544 +99546-99549 +99547-99549 +99548-99549 +99550-99552 +99551-99552 +99553-99565 +99553-99565 +99554-99565 +99555-99565 +99555-99559 +99555-99557 +99556-99557 +99556-99557 +99560-99565 +99561-99565 +99561-99563 +99562-99563 +99562-99563 +99566-99592 +99566-99592 +99567-99592 +99568-99580 +99568-99569 +99570-99580 +99571-99580 +99572-99574 +99573-99574 +99575-99576 +99577-99580 +99578-99580 +99579-99580 +99581-99592 +99582-99592 +99582-99585 +99583-99585 +99583-99584 +99586-99592 +99587-99592 +99587-99588 +99591-99592 +99593-99650 +99593-99650 +99594-99650 +99595-99596 +99597-99636 +99598-99636 +99599-99636 +99599-99608 +99599-99604 +99600-99604 +99601-99604 +99602-99604 +99603-99604 +99605-99608 +99606-99608 +99607-99608 +99609-99636 +99610-99636 +99610-99617 +99611 +99613-99617 +99615-99617 +99616-99617 +99618-99619 +99620-99636 +99621-99636 +99621-99623 +99621-99622 +99624-99636 +99625-99636 +99626-99627 +99628-99636 +99629-99636 +99630-99636 +99630-99633 +99630-99632 +99631-99632 +99634-99636 +99635-99636 +99637-99650 +99637-99638 +99639-99650 +99640-99650 +99643-99650 +99644-99650 +99644-99646 +99644-99645 +99647-99650 +99648-99650 +99649-99650 +99651-99661 +99651-99661 +99652-99661 +99654-99661 +99655-99657 +99656-99657 +99659-99661 +99660-99661 +99662-99683 +99662-99683 +99663-99683 +99665-99683 +99666-99683 +99666-99667 +99668-99683 +99670-99671 +99673-99683 +99673-99674 +99675-99683 +99676-99683 +99679-99683 +99679-99680 +99681-99683 +99682-99683 +99684-99699 +99684-99699 +99684-99692 +99685-99692 +99685-99686 +99685-99686 +99687-99692 +99687-99692 +99687-99688 +99689-99692 +99690-99692 +99690-99691 +99693-99699 +99694-99699 +99694-99695 +99694-99695 +99696-99699 +99696-99699 +99696-99697 +99698-99699 +99700-99717 +99700-99717 +99701-99717 +99701-99710 +99702-99710 +99703-99710 +99703-99705 +99704-99705 +99706-99710 +99707-99710 +99708-99710 +99709-99710 +99711-99712 +99714-99717 +99715-99717 +99716-99717 +99718-99754 +99718-99754 +99719-99754 +99720-99754 +99720-99726 +99721-99726 +99721-99722 +99723-99726 +99724-99726 +99725-99726 +99730-99732 +99731-99732 +99733-99754 +99734-99754 +99734-99747 +99735-99747 +99736-99747 +99736-99737 +99738-99747 +99738-99742 +99739-99740 +99744-99747 +99746-99747 +99748-99754 +99749-99754 +99749-99751 +99750-99751 +99753-99754 +99755-99797 +99755-99797 +99756-99797 +99756-99776 +99756-99771 +99756-99758 +99757-99758 +99759-99771 +99760-99771 +99761-99766 +99761-99763 +99762-99763 +99764-99766 +99765-99766 +99768-99771 +99769-99771 +99769-99770 +99772-99776 +99773-99776 +99773-99774 +99774 +99775-99776 +99775-99776 +99777-99797 +99778-99797 +99779-99797 +99779-99787 +99780-99787 +99780-99783 +99781-99782 +99784-99787 +99785-99787 +99786-99787 +99788-99797 +99790-99793 +99791-99793 +99793 +99794-99797 +99795-99797 +99795-99796 +99798-99823 +99798-99823 +99799-99823 +99801-99823 +99802-99803 +99804-99823 +99805-99823 +99805-99807 +99806-99807 +99808-99823 +99809-99823 +99810-99813 +99811-99813 +99811 +99812-99813 +99814-99823 +99818-99823 +99818-99819 +99820-99823 +99821-99823 +99822-99823 +99824-99840 +99824-99840 +99825-99840 +99826-99840 +99826-99831 +99826-99828 +99827-99828 +99832-99840 +99833-99840 +99833-99836 +99834-99836 +99835-99836 +99837-99838 +99841-99857 +99841-99857 +99841-99851 +99841-99845 +99841 +99842-99845 +99843-99845 +99844-99845 +99846-99851 +99847-99851 +99847-99848 +99849-99851 +99850-99851 +99852-99857 +99853-99857 +99853-99854 +99856-99857 +99858-99891 +99858-99891 +99859-99891 +99859-99878 +99859-99866 +99860-99861 +99862-99866 +99862-99863 +99865-99866 +99867-99878 +99868-99878 +99868-99869 +99871-99873 +99871-99872 +99875-99878 +99876-99878 +99877-99878 +99879-99891 +99880-99891 +99881-99891 +99881 +99882-99884 +99883-99884 +99885-99891 +99885-99887 +99886-99887 +99889-99891 +99890-99891 +99892-99914 +99892-99914 +99893-99914 +99893-99907 +99893-99901 +99894-99901 +99894-99897 +99896-99897 +99897 +99898-99901 +99899-99901 +99900-99901 +99902-99904 +99903-99904 +99905-99907 +99906-99907 +99908-99914 +99909-99914 +99910-99914 +99911-99914 +99912-99914 +99913-99914 +99915-99949 +99915-99949 +99915-99916 +99918-99949 +99919-99949 +99920-99949 +99921-99949 +99921-99927 +99923-99924 +99926-99927 +99929-99949 +99929-99941 +99929-99933 +99930-99933 +99931-99933 +99931-99932 +99936-99937 +99938-99941 +99939-99941 +99940-99941 +99942-99949 +99943-99949 +99945-99947 +99946-99947 +99948-99949 +99950-99993 +99950-99993 +99950-99978 +99950-99955 +99951-99955 +99952-99955 +99953-99955 +99953-99954 +99957-99958 +99959-99978 +99960-99978 +99961-99978 +99961-99969 +99961-99964 +99962-99964 +99963-99964 +99965-99969 +99966-99969 +99967-99969 +99968-99969 +99970-99978 +99971-99978 +99971-99973 +99972-99973 +99974-99978 +99974-99975 +99976-99978 +99977-99978 +99979-99993 +99980-99993 +99981-99983 +99982-99983 +99986-99993 +99987-99993 +99988-99993 +99988 +99989-99993 +99989-99991 +99990-99991 +99992-99993 +99994-100001 +99994-100001 +99995-99996 +99997-100001 +99998-100001 +99999-100001 +100000-100001 +100002-100026 +100002-100026 +100003-100026 +100003-100005 +100003-100004 +100008-100014 +100009-100014 +100010-100014 +100010-100012 +100011-100012 +100013-100014 +100015-100026 +100016-100026 +100016-100021 +100017-100021 +100017-100018 +100020-100021 +100022-100026 +100023-100026 +100023 +100025-100026 +100027-100046 +100027-100046 +100028-100046 +100029-100046 +100030-100046 +100031 +100033-100046 +100034-100046 +100035-100046 +100037-100046 +100038-100046 +100039-100046 +100040-100046 +100041-100046 +100043-100046 +100044-100046 +100044-100045 +100047-100101 +100047-100101 +100048-100101 +100048-100069 +100048-100054 +100048-100050 +100048-100049 +100052-100053 +100055-100069 +100056-100069 +100056-100062 +100056-100060 +100057-100060 +100058-100060 +100059-100060 +100063-100069 +100064-100069 +100065-100066 +100067-100069 +100068-100069 +100070-100101 +100070-100080 +100071-100080 +100072-100080 +100073-100080 +100074-100080 +100075-100080 +100076-100080 +100077-100080 +100078-100080 +100079-100080 +100081-100089 +100082-100089 +100083-100084 +100085-100089 +100086-100089 +100087-100089 +100088-100089 +100090-100101 +100091-100101 +100091-100096 +100091-100092 +100094-100096 +100095-100096 +100097-100101 +100098-100101 +100099-100101 +100100-100101 +100102-100105 +100102-100105 +100102-100104 +100103-100104 +100106-100123 +100106-100123 +100106-100111 +100107-100111 +100110-100111 +100112-100123 +100115-100116 +100117-100123 +100118-100123 +100118-100120 +100119-100120 +100122-100123 +100124-100156 +100124-100156 +100125-100156 +100125-100146 +100125-100144 +100126-100144 +100127-100144 +100127-100128 +100130-100144 +100131-100144 +100132-100144 +100132-100133 +100134-100144 +100136-100137 +100138-100144 +100138-100139 +100140-100144 +100141-100144 +100142-100144 +100143-100144 +100145-100146 +100147-100156 +100148-100156 +100150-100156 +100151-100156 +100152-100156 +100154-100156 +100155-100156 +100157-100174 +100157-100174 +100158-100174 +100159-100174 +100159-100164 +100160-100164 +100160-100161 +100162-100164 +100163-100164 +100165-100174 +100166-100174 +100166-100170 +100166-100169 +100167-100169 +100168-100169 +100171-100174 +100172-100174 +100172-100173 +100174 +100175-100191 +100175-100191 +100177-100178 +100179-100191 +100180-100191 +100180-100186 +100182-100185 +100183-100185 +100184-100185 +100186 +100189 +100190-100191 +100192-100202 +100192-100202 +100193-100202 +100195-100202 +100195-100197 +100196-100197 +100199-100202 +100200-100202 +100201-100202 +100203-100214 +100203-100214 +100204-100214 +100205-100212 +100205-100208 +100205-100206 +100209-100212 +100210-100212 +100215-100237 +100215-100237 +100216-100237 +100216-100221 +100218-100220 +100219-100220 +100222-100237 +100223-100237 +100223-100237 +100224-100237 +100225-100237 +100226-100237 +100227-100237 +100228-100237 +100231-100232 +100234-100237 +100235-100237 +100236-100237 +100238-100256 +100238-100256 +100239-100256 +100239-100246 +100240-100244 +100241-100244 +100243-100244 +100247-100256 +100248-100256 +100248-100250 +100249-100250 +100252-100256 +100253-100256 +100254-100256 +100255-100256 +100257-100293 +100257-100293 +100257-100264 +100258-100260 +100259-100260 +100262-100264 +100263-100264 +100265-100293 +100266-100293 +100268-100271 +100269-100271 +100270-100271 +100272-100293 +100272-100280 +100272-100273 +100275-100278 +100276-100278 +100277-100278 +100279-100280 +100281-100285 +100281-100284 +100282-100284 +100283-100284 +100286-100293 +100287-100289 +100288-100289 +100290-100292 +100291-100292 +100294-100299 +100294-100299 +100295-100299 +100295-100296 +100296 +100297-100298 +100300-100312 +100300-100312 +100301-100312 +100302-100307 +100302-100304 +100302-100304 +100303-100304 +100309-100312 +100310-100311 +100313-100318 +100313-100318 +100313 +100314-100318 +100316-100318 +100317-100318 +100319-100322 +100319-100322 +100320-100322 +100323-100337 +100323-100337 +100324-100337 +100324-100327 +100326-100327 +100328-100337 +100329-100337 +100331-100332 +100333-100337 +100333-100334 +100336-100337 +100338-100363 +100338-100363 +100339-100363 +100339 +100340-100363 +100341-100363 +100342-100363 +100342-100350 +100343-100350 +100343-100344 +100347-100350 +100348-100350 +100349-100350 +100351-100363 +100352-100354 +100353-100354 +100355-100363 +100356-100363 +100356-100360 +100356-100357 +100358-100360 +100359-100360 +100361-100363 +100362-100363 +100364-100389 +100364-100389 +100365-100389 +100366-100389 +100366-100387 +100367-100387 +100367-100374 +100367-100368 +100368 +100370-100374 +100371-100374 +100372-100374 +100375-100387 +100376-100387 +100377-100387 +100377-100381 +100377-100378 +100379-100381 +100382-100387 +100383-100387 +100383-100384 +100385-100387 +100388-100389 +100390-100396 +100390-100396 +100391-100396 +100392-100396 +100394-100396 +100395-100396 +100397-100414 +100397-100414 +100398-100414 +100398-100406 +100398-100402 +100399-100402 +100399-100400 +100401-100402 +100403-100406 +100404-100406 +100405-100406 +100407-100414 +100408-100414 +100408-100409 +100411-100412 +100413-100414 +100415-100430 +100415-100430 +100416-100430 +100416-100422 +100418-100422 +100420-100422 +100421-100422 +100423-100430 +100424-100430 +100425-100428 +100426-100428 +100426-100427 +100431-100448 +100431-100448 +100431-100439 +100431-100432 +100434-100439 +100436-100439 +100437-100439 +100438-100439 +100440-100448 +100441-100448 +100441-100445 +100441-100443 +100442-100443 +100444-100445 +100445 +100449-100458 +100449-100458 +100450-100458 +100450-100452 +100451-100452 +100454-100455 +100456-100458 +100457-100458 +100459-100467 +100459-100467 +100460-100467 +100460-100461 +100465-100467 +100466-100467 +100468-100485 +100468-100485 +100468-100472 +100469-100470 +100471-100472 +100473-100485 +100474-100485 +100474-100476 +100474-100475 +100479-100480 +100481-100485 +100482-100485 +100483-100485 +100484-100485 +100486-100491 +100486-100491 +100486-100487 +100488-100491 +100489-100491 +100492-100494 +100492-100494 +100492-100493 +100495-100514 +100495-100514 +100496-100514 +100496-100506 +100496-100499 +100496-100497 +100501-100506 +100502-100506 +100503-100506 +100504-100506 +100505-100506 +100508-100514 +100508-100511 +100508-100510 +100509-100510 +100513-100514 +100513-100514 +100515-100524 +100515-100524 +100516-100524 +100516-100517 +100518-100520 +100519-100520 +100521-100524 +100522-100524 +100523-100524 +100525-100535 +100525-100535 +100526-100535 +100526-100527 +100528-100535 +100529-100535 +100529-100531 +100530-100531 +100533-100535 +100534-100535 +100536-100555 +100536-100555 +100537-100555 +100539-100547 +100540-100547 +100540-100543 +100541-100543 +100542-100543 +100545-100547 +100546-100547 +100548-100555 +100548-100550 +100549-100550 +100552-100555 +100553-100555 +100554-100555 +100556-100563 +100556-100563 +100558-100563 +100561-100563 +100564-100576 +100564-100576 +100565-100576 +100565-100571 +100565-100566 +100566 +100567-100571 +100567-100569 +100568-100569 +100569 +100570-100571 +100572-100576 +100573-100576 +100574-100575 +100577-100592 +100577-100592 +100577-100582 +100577-100578 +100580-100581 +100583-100592 +100584-100592 +100585-100592 +100585-100586 +100587-100592 +100588-100592 +100589-100592 +100590-100592 +100591-100592 +100593-100600 +100593-100600 +100593-100598 +100594-100598 +100596-100598 +100597-100598 +100599-100600 +100601-100607 +100601-100607 +100602-100607 +100604-100605 +100606-100607 +100608-100628 +100608-100628 +100609-100628 +100609 +100610-100628 +100610-100613 +100611-100613 +100614-100616 +100615-100616 +100617-100619 +100618-100619 +100620-100622 +100621-100622 +100623-100628 +100624-100628 +100625-100626 +100629-100635 +100629-100635 +100629-100630 +100632-100635 +100633-100635 +100634-100635 +100636-100646 +100636-100646 +100637-100646 +100637-100641 +100638-100641 +100638-100639 +100642-100646 +100642-100643 +100645-100646 +100647-100649 +100647-100649 +100647-100648 +100649 +100650-100652 +100650-100652 +100650-100651 +100652 +100653-100656 +100653-100656 +100653-100655 +100653-100654 +100656 +100657-100659 +100657-100659 +100657-100658 +100660-100663 +100660-100663 +100660 +100662-100663 +100664-100675 +100664-100675 +100664-100666 +100664-100665 +100667-100669 +100667-100668 +100670-100672 +100670-100671 +100673-100675 +100673-100674 +100676-100693 +100676-100693 +100676-100682 +100676-100677 +100679-100681 +100680-100681 +100683-100684 +100685-100686 +100687-100688 +100689-100693 +100690-100692 +100691-100692 +100694-100734 +100694-100734 +100694-100717 +100696-100717 +100696-100697 +100696-100697 +100698-100699 +100698-100699 +100700-100702 +100701-100702 +100703-100705 +100704-100705 +100706-100708 +100707-100708 +100709-100711 +100710-100711 +100712-100714 +100713-100714 +100715-100717 +100716-100717 +100718-100734 +100718-100720 +100718-100720 +100719-100720 +100721-100723 +100721-100722 +100724-100727 +100724-100727 +100725-100727 +100726-100727 +100728-100730 +100728-100729 +100731-100734 +100731-100734 +100732-100734 +100733-100734 +100735-100748 +100735-100748 +100735-100737 +100736-100737 +100738-100739 +100741-100748 +100741-100743 +100742-100743 +100744-100748 +100745-100748 +100746-100748 +100747-100748 +100749-100753 +100749-100753 +100749-100750 +100751-100753 +100752-100753 +100754-100759 +100754-100759 +100754-100755 +100756-100759 +100757-100759 +100760-100767 +100760-100767 +100760-100762 +100761-100762 +100761 +100763-100767 +100763-100766 +100764-100766 +100765-100766 +100768-100784 +100768-100784 +100768-100780 +100768-100774 +100769-100774 +100769-100771 +100770-100771 +100772-100774 +100772-100773 +100775-100780 +100776-100780 +100778-100780 +100779-100780 +100782-100784 +100783-100784 +100785-100811 +100785-100811 +100785-100797 +100785-100786 +100787-100791 +100788-100791 +100789-100791 +100790-100791 +100793-100795 +100794-100795 +100796-100797 +100798-100811 +100799-100811 +100799-100806 +100799-100800 +100801-100802 +100804-100806 +100805-100806 +100807-100811 +100808-100811 +100809-100811 +100810-100811 +100812-100813 +100812-100813 +100812 +100814-100823 +100814-100823 +100814-100816 +100815-100816 +100817-100823 +100818-100823 +100819-100823 +100820-100823 +100820-100822 +100821-100822 +100824-100850 +100824-100850 +100825-100850 +100825-100827 +100825-100827 +100826-100827 +100828-100841 +100828-100838 +100828-100832 +100828-100830 +100829-100830 +100829-100830 +100831-100832 +100833-100838 +100833-100836 +100834-100836 +100834-100836 +100835-100836 +100837-100838 +100839-100841 +100839-100840 +100842-100850 +100842-100844 +100843-100844 +100846-100847 +100848-100850 +100849-100850 +100851-100881 +100851-100881 +100852-100881 +100853-100881 +100853-100855 +100853-100855 +100854-100855 +100856-100867 +100856-100864 +100856-100862 +100856-100858 +100857-100858 +100857-100858 +100859-100862 +100860-100862 +100860-100862 +100861-100862 +100863-100864 +100865-100867 +100865-100866 +100869-100881 +100869-100872 +100870-100872 +100871-100872 +100873-100881 +100874-100881 +100875-100881 +100875-100876 +100877-100881 +100877-100878 +100882-100895 +100882-100895 +100882-100885 +100882-100884 +100883-100884 +100886-100895 +100887-100895 +100887-100888 +100891-100895 +100892-100895 +100893-100895 +100894-100895 +100896-100905 +100896-100905 +100897-100905 +100897-100902 +100897-100899 +100898-100899 +100899 +100900-100902 +100903-100905 +100904-100905 +100906-100925 +100906-100925 +100907-100925 +100907 +100908-100925 +100909-100925 +100910-100911 +100913-100920 +100914-100920 +100914-100916 +100917-100920 +100918-100920 +100919-100920 +100921-100925 +100922-100925 +100923-100925 +100924-100925 +100926-100942 +100926-100942 +100927-100942 +100927-100929 +100928-100929 +100933-100934 +100935-100939 +100935-100936 +100937-100939 +100938-100939 +100940-100942 +100941-100942 +100943-100952 +100943-100952 +100943-100944 +100946-100947 +100949-100952 +100950-100952 +100951-100952 +100953-100966 +100953-100966 +100954-100966 +100956-100966 +100956-100960 +100958-100960 +100959-100960 +100961-100966 +100962-100966 +100962-100963 +100964-100965 +100967-100981 +100967-100981 +100968-100981 +100971-100973 +100972-100973 +100974-100981 +100975-100981 +100976-100977 +100978-100981 +100979-100981 +100980-100981 +100982-100995 +100982-100995 +100983-100995 +100984-100993 +100984-100985 +100986-100987 +100988-100989 +100990-100993 +100991-100993 +100992-100993 +100994-100995 +100996-101001 +100996-101001 +100997-101001 +100997-100998 +100998 +101002-101003 +101002-101003 +101004-101006 +101004-101006 +101007-101012 +101007-101012 +101008-101012 +101010-101012 +101010-101011 +101013-101022 +101013-101022 +101014-101022 +101016-101018 +101017-101018 +101019-101022 +101020-101022 +101020-101021 +101023-101039 +101023-101039 +101024-101039 +101024-101027 +101025-101027 +101026-101027 +101029-101030 +101031-101033 +101032-101033 +101034-101039 +101034-101035 +101036-101037 +101038-101039 +101040-101056 +101040-101056 +101041-101056 +101043-101048 +101045-101048 +101046-101048 +101047-101048 +101049-101056 +101050-101056 +101051-101056 +101052-101056 +101052-101053 +101057-101061 +101057-101061 +101059-101061 +101059-101060 +101062-101072 +101062-101072 +101063-101069 +101063-101064 +101067-101069 +101068-101069 +101070-101072 +101071-101072 +101073-101092 +101073-101092 +101074-101092 +101074-101079 +101075-101077 +101076-101077 +101079 +101080-101092 +101081-101092 +101082-101087 +101083-101084 +101085-101087 +101085-101086 +101089-101092 +101089-101090 +101091-101092 +101093-101102 +101093-101102 +101094-101102 +101096-101098 +101097-101098 +101099-101102 +101100-101102 +101101-101102 +101103-101108 +101103-101108 +101103-101106 +101104-101106 +101109-101114 +101109-101114 +101110-101114 +101110 +101111-101114 +101115-101120 +101115-101120 +101116-101120 +101116-101117 +101121-101130 +101121-101130 +101122-101130 +101122-101126 +101122-101126 +101123-101126 +101125-101126 +101127-101128 +101131-101136 +101131-101136 +101131-101132 +101133-101136 +101134-101136 +101135-101136 +101137-101140 +101137-101140 +101138-101140 +101141-101149 +101141-101149 +101141-101145 +101142-101145 +101142-101144 +101143-101144 +101146-101149 +101147-101149 +101147-101149 +101148-101149 +101150-101154 +101150-101154 +101152-101154 +101153-101154 +101155-101159 +101155-101159 +101155-101156 +101157-101158 +101160-101167 +101160-101167 +101161-101167 +101161 +101162-101163 +101164-101167 +101165-101167 +101166-101167 +101168-101193 +101168-101193 +101169-101193 +101169-101183 +101169 +101170-101183 +101171-101183 +101172-101183 +101172-101177 +101172 +101173-101175 +101178-101183 +101181-101183 +101184-101193 +101185-101193 +101186-101193 +101186-101193 +101194-101221 +101194-101221 +101195-101221 +101195-101197 +101198-101221 +101198-101204 +101200-101202 +101201-101202 +101203-101204 +101205-101221 +101206-101221 +101207-101221 +101208-101221 +101209-101221 +101209 +101210-101221 +101211-101221 +101213-101221 +101214-101221 +101215-101221 +101215-101219 +101216-101217 +101218-101219 +101220-101221 +101222-101226 +101222-101226 +101222-101223 +101225-101226 +101227-101235 +101227-101235 +101227-101232 +101228-101232 +101229-101232 +101229-101230 +101231-101232 +101234-101235 +101236-101276 +101236-101276 +101236-101238 +101237-101238 +101239-101245 +101239-101242 +101240-101242 +101241-101242 +101243-101245 +101244-101245 +101246-101251 +101246-101247 +101247 +101248-101251 +101249-101251 +101249-101250 +101252-101276 +101253-101276 +101253-101259 +101253-101257 +101254-101257 +101255-101257 +101256-101257 +101258-101259 +101260-101276 +101261-101276 +101262-101276 +101263-101276 +101263-101267 +101264-101267 +101264-101266 +101264-101265 +101268-101276 +101268-101272 +101269-101270 +101273-101276 +101274-101276 +101275-101276 +101277-101286 +101277-101286 +101278-101286 +101278-101281 +101280-101281 +101282-101286 +101283-101286 +101284-101286 +101285-101286 +101287-101301 +101287-101301 +101288-101301 +101288-101292 +101288-101289 +101291-101292 +101293-101301 +101294-101301 +101295-101296 +101297-101299 +101298-101299 +101300-101301 +101302-101310 +101302-101310 +101302-101308 +101302-101303 +101304-101308 +101305-101308 +101306-101308 +101307-101308 +101309-101310 +101311-101319 +101311-101319 +101312-101319 +101315-101319 +101316-101319 +101316-101317 +101318-101319 +101320-101323 +101320-101323 +101321-101323 +101322-101323 +101324-101332 +101324-101332 +101325-101332 +101325 +101327-101332 +101328-101332 +101329-101332 +101333-101358 +101333-101358 +101334-101358 +101334-101353 +101335-101337 +101336-101337 +101338-101342 +101341-101342 +101343-101353 +101344-101347 +101345-101347 +101349-101353 +101350-101353 +101351-101352 +101354-101358 +101355-101358 +101356-101357 +101359-101369 +101359-101369 +101360-101369 +101361-101365 +101363-101365 +101364-101365 +101367-101369 +101367-101369 +101368-101369 +101370-101378 +101370-101378 +101371-101378 +101371 +101372-101378 +101373-101378 +101373-101374 +101375-101378 +101376-101378 +101379-101384 +101379-101384 +101381-101384 +101382-101384 +101383-101384 +101385-101408 +101385-101408 +101385-101386 +101388 +101390-101408 +101391-101408 +101391 +101395-101408 +101396-101408 +101397-101408 +101398-101408 +101399-101400 +101403-101408 +101403-101404 +101405-101408 +101406-101408 +101407-101408 +101409-101427 +101409-101427 +101409 +101410 +101411-101427 +101411-101417 +101411 +101412 +101413 +101414-101416 +101414-101415 +101417 +101418-101427 +101419-101427 +101419-101424 +101420-101424 +101421-101424 +101422-101424 +101423-101424 +101426-101427 +101428-101432 +101428-101432 +101430-101432 +101431-101432 +101433-101437 +101433-101437 +101435-101437 +101435-101436 +101438-101457 +101438-101457 +101438-101454 +101438-101443 +101439-101443 +101440-101443 +101440-101441 +101442-101443 +101444-101448 +101445-101448 +101446-101448 +101447-101448 +101449-101454 +101450-101454 +101451-101454 +101452-101454 +101453-101454 +101455-101457 +101456-101457 +101458-101487 +101458-101487 +101458-101483 +101458-101477 +101459-101477 +101460-101477 +101461-101465 +101461-101462 +101463-101465 +101464-101465 +101467-101477 +101468-101477 +101468-101469 +101470-101477 +101471-101477 +101471-101472 +101473-101477 +101474-101477 +101476-101477 +101478-101483 +101479-101483 +101480-101483 +101480-101481 +101482-101483 +101484-101487 +101485-101487 +101486-101487 +101488-101532 +101488-101532 +101489-101491 +101490-101491 +101492-101532 +101493-101532 +101493-101495 +101494-101495 +101496-101532 +101497-101532 +101497-101499 +101498-101499 +101500-101532 +101501-101532 +101501-101506 +101503-101506 +101504-101506 +101505-101506 +101507-101532 +101508-101532 +101510-101515 +101511-101515 +101511-101514 +101511-101512 +101513-101514 +101514 +101516-101532 +101517-101532 +101518-101532 +101519-101532 +101519-101523 +101520-101523 +101520-101522 +101521-101522 +101524-101532 +101525-101526 +101527-101531 +101528-101531 +101529-101531 +101530-101531 +101532 +101533-101565 +101533-101565 +101533 +101534-101565 +101535-101565 +101538-101544 +101539-101544 +101540-101544 +101542-101544 +101543-101544 +101545-101565 +101546-101565 +101546-101547 +101548-101565 +101548-101551 +101553-101565 +101556-101565 +101557-101565 +101557-101558 +101559-101565 +101560-101565 +101561-101565 +101562-101565 +101563-101565 +101564-101565 +101566-101596 +101566-101596 +101567-101596 +101567-101581 +101567-101579 +101568-101579 +101569-101579 +101569-101573 +101570-101573 +101571-101573 +101572-101573 +101576-101579 +101577-101579 +101580-101581 +101582-101596 +101583-101596 +101583-101587 +101583 +101584-101587 +101585-101587 +101588-101596 +101588-101594 +101589-101594 +101592-101594 +101593-101594 +101595-101596 +101597-101607 +101597-101607 +101598-101607 +101598-101603 +101600-101603 +101601-101603 +101602-101603 +101604-101607 +101605-101607 +101606-101607 +101608-101616 +101608-101616 +101608-101611 +101609-101611 +101613-101616 +101613-101614 +101617-101631 +101617-101631 +101618-101631 +101618 +101621-101626 +101621-101622 +101623-101626 +101624-101626 +101625-101626 +101627-101631 +101628-101631 +101630-101631 +101632-101645 +101632-101645 +101633-101645 +101634-101640 +101634-101638 +101635-101636 +101639-101640 +101640 +101642-101645 +101642-101645 +101643-101645 +101644-101645 +101646-101684 +101646-101684 +101647-101684 +101648-101654 +101649-101654 +101650-101654 +101650-101651 +101652-101654 +101653-101654 +101655-101684 +101656-101684 +101656-101662 +101656-101657 +101659-101662 +101660-101662 +101661-101662 +101663-101665 +101664-101665 +101666-101684 +101667-101684 +101668-101670 +101669-101670 +101671-101677 +101672-101677 +101673-101677 +101674-101677 +101675-101677 +101676-101677 +101678-101684 +101680-101684 +101681-101684 +101682-101684 +101683-101684 +101685-101736 +101685-101736 +101686-101736 +101686-101712 +101687-101712 +101688-101700 +101689-101700 +101689-101694 +101691-101694 +101692-101694 +101693-101694 +101695-101700 +101696-101700 +101697-101700 +101698-101700 +101699-101700 +101701-101706 +101702-101704 +101703-101704 +101705-101706 +101707-101712 +101708-101712 +101710-101712 +101711-101712 +101713-101736 +101714-101736 +101715-101727 +101716-101718 +101717-101718 +101719-101727 +101721-101722 +101723-101727 +101724-101727 +101725-101727 +101725-101726 +101729-101736 +101729-101731 +101730-101731 +101732-101736 +101733-101736 +101735-101736 +101737-101751 +101737-101751 +101737-101745 +101738-101740 +101739-101740 +101742-101743 +101744-101745 +101746-101751 +101747-101751 +101748-101749 +101750-101751 +101752-101764 +101752-101764 +101753-101764 +101753-101755 +101754-101755 +101758-101764 +101759-101764 +101760-101764 +101761-101764 +101762-101764 +101763-101764 +101765-101775 +101765-101775 +101766-101775 +101766-101768 +101769-101775 +101769 +101770-101775 +101770-101772 +101770-101772 +101771-101772 +101774-101775 +101776-101785 +101776-101785 +101778-101785 +101779-101785 +101780-101785 +101781-101785 +101781-101782 +101783-101785 +101784-101785 +101786-101797 +101786-101797 +101787-101797 +101787-101788 +101789-101790 +101791-101797 +101791-101794 +101792-101794 +101793-101794 +101795-101797 +101796-101797 +101798-101819 +101798-101819 +101799-101819 +101799-101813 +101800-101801 +101802-101813 +101803-101813 +101803-101806 +101804-101806 +101809-101813 +101809-101810 +101811-101813 +101814-101819 +101815-101819 +101816-101817 +101818-101819 +101820-101832 +101820-101832 +101821-101823 +101822-101823 +101826-101827 +101828-101829 +101830-101832 +101831-101832 +101833-101836 +101833-101836 +101834-101836 +101835-101836 +101837-101858 +101837-101858 +101838-101858 +101838-101846 +101840-101846 +101841-101846 +101842-101846 +101844-101846 +101845-101846 +101847-101858 +101848-101858 +101848-101849 +101850-101851 +101851 +101852-101858 +101853-101858 +101854-101858 +101854-101855 +101856-101858 +101857-101858 +101859-101868 +101859-101868 +101860-101868 +101861-101864 +101862-101864 +101863-101864 +101865-101866 +101868 +101869-101902 +101869-101902 +101870-101902 +101870-101902 +101871-101902 +101872-101902 +101872-101887 +101872-101873 +101874-101887 +101876-101884 +101877-101884 +101878-101884 +101878-101879 +101880-101884 +101882-101884 +101883-101884 +101885-101887 +101886-101887 +101888-101902 +101888-101894 +101890-101891 +101893-101894 +101896-101902 +101896-101899 +101897-101899 +101898-101899 +101901-101902 +101903-101926 +101903-101926 +101904-101926 +101904-101908 +101904-101908 +101905-101908 +101906-101908 +101907-101908 +101909-101926 +101909-101920 +101909-101914 +101909-101911 +101915-101920 +101915-101916 +101917-101918 +101921-101926 +101922-101926 +101923-101924 +101924 +101927-101985 +101927-101985 +101928-101985 +101929-101960 +101929-101953 +101929-101939 +101929 +101931-101939 +101932-101935 +101933-101935 +101934-101935 +101936-101939 +101937-101939 +101938-101939 +101940-101953 +101941-101953 +101941-101947 +101942-101947 +101944-101947 +101945-101947 +101946-101947 +101949-101950 +101951-101953 +101952-101953 +101954-101960 +101955-101960 +101956-101960 +101956-101957 +101958-101960 +101959-101960 +101961-101969 +101961-101965 +101962-101963 +101964-101965 +101966-101969 +101967-101969 +101968-101969 +101970-101971 +101973-101975 +101974-101975 +101976-101985 +101977-101985 +101977-101980 +101978-101980 +101979-101980 +101981-101985 +101982-101985 +101983-101985 +101984-101985 +101986-101996 +101986-101996 +101987-101996 +101987-101990 +101988-101990 +101988-101989 +101991-101996 +101994-101996 +101994-101995 +101997-102009 +101997-102009 +101998-102009 +101998-102006 +101998-102002 +101999-102002 +102001-102002 +102003-102006 +102003-102004 +102007-102009 +102008-102009 +102008-102009 +102010-102031 +102010-102031 +102011-102031 +102011-102020 +102011-102016 +102012-102016 +102013-102016 +102015-102016 +102017-102019 +102018-102019 +102021-102031 +102022-102031 +102022-102023 +102023 +102024-102027 +102025-102027 +102026-102027 +102028-102031 +102029-102031 +102030-102031 +102032-102045 +102032-102045 +102033-102045 +102033-102038 +102035-102038 +102036-102038 +102037-102038 +102039-102045 +102040-102045 +102040-102041 +102043-102045 +102044-102045 +102046-102075 +102046-102075 +102047-102075 +102047-102056 +102048-102056 +102048 +102050-102056 +102052-102056 +102053-102056 +102054-102056 +102055-102056 +102057-102075 +102058-102059 +102060-102061 +102062-102075 +102062-102070 +102063-102070 +102064-102065 +102066-102069 +102067-102069 +102068-102069 +102071-102075 +102073-102075 +102073-102074 +102076-102122 +102076-102122 +102076-102083 +102076-102078 +102079-102083 +102080-102083 +102081-102082 +102084-102122 +102085-102122 +102085-102114 +102085-102098 +102086-102098 +102087-102098 +102090-102092 +102091-102092 +102093-102098 +102094-102098 +102095-102098 +102096-102098 +102097-102098 +102099-102100 +102101-102103 +102102-102103 +102105-102114 +102106-102114 +102106-102109 +102107-102109 +102108-102109 +102110-102114 +102111-102114 +102112-102114 +102113-102114 +102115-102122 +102116-102122 +102116-102118 +102117-102118 +102121-102122 +102123-102136 +102123-102136 +102124-102136 +102124-102132 +102125-102132 +102125-102128 +102126-102128 +102127-102128 +102130-102131 +102134-102136 +102135-102136 +102137-102138 +102137-102138 +102139-102148 +102139-102148 +102140-102148 +102140-102145 +102141-102145 +102141-102142 +102146-102148 +102149-102157 +102149-102157 +102150-102157 +102151-102152 +102155-102157 +102156-102157 +102158-102159 +102158-102159 +102160-102168 +102160-102168 +102161-102168 +102161-102163 +102164-102168 +102165-102168 +102166-102167 +102169-102190 +102169-102190 +102170-102190 +102170-102174 +102173-102174 +102176-102190 +102177-102190 +102178-102190 +102179-102190 +102179-102182 +102180-102182 +102181-102182 +102183-102190 +102184-102190 +102184-102185 +102186-102190 +102187-102190 +102189-102190 +102191-102196 +102191-102196 +102193-102196 +102194-102196 +102195-102196 +102197-102205 +102197-102205 +102198-102205 +102198-102201 +102199-102201 +102199-102200 +102202-102205 +102206-102218 +102206-102218 +102206-102208 +102206-102208 +102207-102208 +102209-102211 +102213-102214 +102215-102216 +102218 +102219-102234 +102219-102234 +102219-102224 +102220-102224 +102220-102221 +102223-102224 +102225-102234 +102225-102226 +102228-102234 +102228-102230 +102229-102230 +102231-102234 +102232-102234 +102233-102234 +102235-102237 +102235-102237 +102238-102242 +102238-102242 +102238-102239 +102243-102249 +102243-102249 +102246-102249 +102247-102249 +102250-102277 +102250-102277 +102251-102277 +102251-102260 +102252-102260 +102252-102255 +102254-102255 +102256-102260 +102257-102260 +102259-102260 +102261-102267 +102261-102263 +102262-102263 +102264-102267 +102265-102267 +102266-102267 +102268-102277 +102269-102277 +102269-102272 +102271-102272 +102273-102277 +102274-102277 +102276-102277 +102278-102287 +102278-102287 +102279-102287 +102280-102287 +102281-102287 +102281-102283 +102281-102283 +102282-102283 +102285-102286 +102288-102309 +102288-102309 +102289-102309 +102289-102290 +102291-102299 +102292-102299 +102293-102299 +102293-102294 +102296-102297 +102298-102299 +102301-102302 +102303-102309 +102304-102309 +102305-102306 +102307-102309 +102308-102309 +102310-102318 +102310-102318 +102311-102318 +102311-102313 +102312-102313 +102315-102318 +102316-102318 +102317-102318 +102319-102327 +102319-102327 +102320-102327 +102320-102324 +102321-102323 +102322-102323 +102325-102326 +102328-102346 +102328-102346 +102329-102346 +102330-102346 +102331-102346 +102332-102346 +102333-102346 +102336-102343 +102337-102343 +102338-102343 +102339-102343 +102340-102343 +102341-102343 +102342-102343 +102344-102346 +102345-102346 +102347-102362 +102347-102362 +102348-102362 +102348-102355 +102349-102355 +102349-102350 +102353-102355 +102354-102355 +102357-102362 +102358-102362 +102358-102359 +102360-102361 +102363-102376 +102363-102376 +102364-102376 +102364-102369 +102364-102365 +102368-102369 +102370-102376 +102371-102376 +102371-102373 +102372-102373 +102375-102376 +102377-102417 +102377-102417 +102377-102408 +102377-102396 +102380-102384 +102381-102384 +102382-102384 +102383-102384 +102385-102388 +102386-102387 +102389-102396 +102390-102396 +102391-102396 +102392-102396 +102393-102396 +102394-102396 +102395-102396 +102397-102408 +102398-102408 +102398-102400 +102399-102400 +102401-102404 +102402-102404 +102403-102404 +102406-102408 +102407-102408 +102409-102417 +102410-102417 +102410-102413 +102411-102413 +102412-102413 +102415-102417 +102416-102417 +102418-102421 +102418-102421 +102418 +102419-102420 +102422-102429 +102422-102429 +102423-102425 +102424-102425 +102424 +102427-102429 +102428-102429 +102430-102439 +102430-102439 +102431-102439 +102432-102433 +102434-102439 +102434-102435 +102436-102439 +102437-102439 +102438-102439 +102440-102458 +102440-102458 +102441-102447 +102441-102444 +102442-102444 +102442-102444 +102442-102444 +102443-102444 +102445-102447 +102446-102447 +102446-102447 +102449-102458 +102449-102451 +102450-102451 +102450-102451 +102452-102455 +102452-102455 +102452-102455 +102453-102455 +102454-102455 +102456-102458 +102459-102481 +102459-102481 +102460-102481 +102462-102481 +102462-102466 +102463-102466 +102464-102466 +102465-102466 +102467-102474 +102468-102474 +102468-102473 +102468-102472 +102469-102472 +102469-102471 +102477-102481 +102478-102481 +102479-102481 +102480-102481 +102482-102490 +102482-102490 +102483-102490 +102483-102487 +102484-102487 +102484-102485 +102486-102487 +102488-102490 +102489-102490 +102491-102498 +102491-102498 +102492-102498 +102492-102493 +102494-102495 +102497-102498 +102499-102502 +102499-102502 +102500-102502 +102501-102502 +102503-102519 +102503-102519 +102503-102505 +102503-102504 +102507-102513 +102508-102513 +102509-102513 +102510-102513 +102510-102511 +102512-102513 +102514-102519 +102515-102516 +102517-102519 +102518-102519 +102520-102530 +102520-102530 +102521-102530 +102521-102525 +102521-102522 +102526-102530 +102527-102530 +102527-102528 +102531-102538 +102531-102538 +102532-102538 +102532-102533 +102534-102538 +102535-102538 +102536-102538 +102537-102538 +102539-102540 +102539-102540 +102541-102554 +102541-102554 +102542-102554 +102542-102547 +102543-102547 +102544-102547 +102545-102547 +102546-102547 +102547 +102548-102554 +102549-102554 +102550-102551 +102553-102554 +102555-102572 +102555-102572 +102556-102572 +102557-102558 +102559-102560 +102561-102562 +102563-102572 +102564-102572 +102564-102565 +102566-102569 +102567-102569 +102568-102569 +102571-102572 +102572 +102573-102587 +102573-102587 +102574-102587 +102574-102578 +102575-102578 +102576-102578 +102577-102578 +102579-102580 +102582-102587 +102583-102587 +102584-102587 +102585-102587 +102585-102586 +102586 +102588-102599 +102588-102599 +102589-102599 +102589-102590 +102591-102592 +102594-102595 +102596-102599 +102597-102599 +102597-102598 +102600-102607 +102600-102607 +102601-102607 +102601-102603 +102602-102603 +102605-102606 +102608-102618 +102608-102618 +102609-102618 +102610-102611 +102613-102618 +102614-102618 +102615-102618 +102616-102618 +102617-102618 +102619-102625 +102619-102625 +102620-102625 +102620-102623 +102621-102622 +102626-102640 +102626-102640 +102626-102630 +102628-102630 +102629-102630 +102631-102635 +102633-102635 +102634-102635 +102636-102640 +102638-102640 +102639-102640 +102641-102648 +102641-102648 +102642-102648 +102642-102643 +102646-102648 +102647-102648 +102649-102660 +102649-102660 +102650-102660 +102650-102652 +102651-102652 +102653-102660 +102654-102660 +102654-102657 +102654-102656 +102654-102655 +102658-102660 +102658-102659 +102661-102686 +102661-102686 +102662-102686 +102663-102686 +102663-102675 +102663-102669 +102663-102665 +102664-102665 +102666-102667 +102673-102675 +102673-102674 +102676-102686 +102677-102686 +102677-102680 +102678-102680 +102679-102680 +102682-102686 +102683-102686 +102684-102686 +102685-102686 +102687-102699 +102687-102699 +102688-102689 +102690-102692 +102691-102692 +102693-102697 +102694-102697 +102695-102697 +102696-102697 +102698-102699 +102700-102727 +102700-102727 +102701-102727 +102701-102706 +102702-102706 +102703-102706 +102704-102706 +102705-102706 +102707-102727 +102707-102723 +102708-102709 +102710-102712 +102711-102712 +102713-102715 +102714-102715 +102716-102718 +102717-102718 +102719-102723 +102720-102723 +102720-102722 +102721-102722 +102724-102727 +102725-102727 +102725-102726 +102728-102747 +102728-102747 +102729-102747 +102729-102731 +102730-102731 +102732-102747 +102733-102734 +102735-102739 +102736-102739 +102737-102739 +102738-102739 +102740-102743 +102741-102743 +102742-102743 +102744-102747 +102745-102747 +102745-102747 +102746-102747 +102748-102753 +102748-102753 +102749-102753 +102750-102753 +102754-102760 +102754-102760 +102755-102760 +102755-102756 +102756 +102757-102758 +102759-102760 +102761-102795 +102761-102795 +102762-102795 +102762-102772 +102763-102772 +102764-102766 +102768-102772 +102769-102772 +102773-102795 +102774-102795 +102775-102781 +102775-102776 +102777-102781 +102778-102781 +102780-102781 +102785-102795 +102786-102795 +102786-102790 +102787-102790 +102787-102789 +102788-102789 +102791-102795 +102791-102794 +102792-102793 +102796-102803 +102796-102803 +102797-102803 +102798-102799 +102800-102801 +102802-102803 +102804-102811 +102804-102811 +102806-102811 +102807-102811 +102808-102811 +102810-102811 +102812-102821 +102812-102821 +102812-102818 +102812-102814 +102812 +102813-102814 +102814 +102815-102818 +102816-102818 +102816 +102817-102818 +102818 +102819-102821 +102819 +102822-102824 +102822-102824 +102825-102856 +102825-102856 +102826-102856 +102827-102856 +102828-102856 +102828-102835 +102828-102831 +102829-102831 +102830-102831 +102834-102835 +102836-102856 +102837-102856 +102838-102847 +102838-102844 +102839-102844 +102839-102840 +102841-102844 +102842-102844 +102843-102844 +102845-102847 +102846-102847 +102849-102856 +102849-102851 +102850-102851 +102850-102851 +102854-102856 +102855-102856 +102855-102856 +102857-102861 +102857-102861 +102858-102861 +102859-102861 +102860-102861 +102862-102873 +102862-102873 +102863-102873 +102865-102873 +102866-102873 +102866-102867 +102867 +102868-102871 +102868-102870 +102869-102870 +102874-102879 +102874-102879 +102875-102879 +102875-102876 +102878-102879 +102880-102890 +102880-102890 +102880-102883 +102884-102890 +102885-102890 +102885-102886 +102888-102890 +102889-102890 +102891-102916 +102891-102916 +102892-102916 +102893-102905 +102894-102895 +102896-102905 +102897-102905 +102898-102905 +102900-102905 +102901-102905 +102902-102905 +102904-102905 +102906-102916 +102906-102916 +102906-102907 +102908-102916 +102911-102916 +102912-102916 +102915-102916 +102917-102931 +102917-102931 +102918-102931 +102918-102927 +102919-102927 +102919-102922 +102920-102921 +102923-102927 +102924-102927 +102925-102927 +102926-102927 +102928-102931 +102929-102931 +102930-102931 +102932-102942 +102932-102942 +102932-102938 +102934-102938 +102934-102938 +102935-102938 +102935-102937 +102935-102936 +102939-102942 +102939-102940 +102943-102958 +102943-102958 +102944-102958 +102945-102958 +102946-102958 +102948-102958 +102948-102949 +102950-102958 +102950-102953 +102951-102953 +102952-102953 +102954-102958 +102955-102958 +102956-102958 +102957-102958 +102959-102978 +102959-102978 +102960-102978 +102960-102967 +102961-102967 +102961-102964 +102962-102964 +102963-102964 +102965-102966 +102968-102975 +102969-102975 +102969-102972 +102970-102972 +102971-102972 +102973-102975 +102974-102975 +102976-102978 +102978 +102979-102983 +102979-102983 +102980-102983 +102982-102983 +102984-103024 +102984-103024 +102984-103014 +102985-103014 +102985-102994 +102986-102988 +102987-102988 +102989-102991 +102989-102990 +102992-102994 +102995-103014 +102996-103014 +102996-103008 +102996-103003 +102996-102997 +102998-102999 +103001-103003 +103002-103003 +103004-103008 +103005-103008 +103006-103008 +103007-103008 +103009-103014 +103010-103014 +103011-103014 +103012-103014 +103013-103014 +103015-103024 +103016-103024 +103016-103018 +103017-103018 +103021-103024 +103023-103024 +103025-103049 +103025-103049 +103026-103049 +103027-103049 +103027-103037 +103027-103031 +103028-103031 +103028-103031 +103029-103031 +103030-103031 +103032-103037 +103032 +103033-103034 +103034 +103035-103037 +103035-103037 +103036-103037 +103038-103049 +103039-103049 +103039-103044 +103040-103043 +103041-103043 +103042-103043 +103045-103049 +103046-103049 +103046-103049 +103047-103049 +103048-103049 +103050-103057 +103050-103057 +103051-103057 +103051 +103053-103054 +103055-103056 +103058-103071 +103058-103071 +103059-103071 +103059-103068 +103060-103068 +103061-103064 +103062-103064 +103062-103063 +103066-103068 +103067-103068 +103072-103096 +103072-103096 +103073-103096 +103075-103076 +103077-103096 +103077-103083 +103078-103083 +103078-103079 +103080-103083 +103081-103083 +103082-103083 +103084-103096 +103085-103096 +103085-103086 +103088-103091 +103089-103091 +103090-103091 +103092-103096 +103093-103096 +103094-103096 +103095-103096 +103097-103105 +103097-103105 +103098-103105 +103098 +103100-103105 +103101-103102 +103104-103105 +103106-103110 +103106-103110 +103106-103107 +103111-103118 +103111-103118 +103112-103118 +103112 +103113-103118 +103114-103118 +103116-103117 +103119-103130 +103119-103130 +103120-103121 +103124-103130 +103125-103130 +103125-103126 +103126 +103131-103143 +103131-103143 +103132-103143 +103134-103136 +103135-103136 +103136 +103137-103143 +103138-103143 +103140-103143 +103140-103142 +103141-103142 +103144-103153 +103144-103153 +103145-103146 +103147-103150 +103148-103149 +103151-103153 +103151-103152 +103154-103161 +103154-103161 +103155-103161 +103157-103158 +103159-103160 +103162-103176 +103162-103176 +103163-103176 +103163-103165 +103164-103165 +103166-103176 +103167-103171 +103167-103169 +103168-103169 +103173-103176 +103173-103176 +103174-103176 +103174-103175 +103177-103178 +103177-103178 +103179-103184 +103179-103184 +103181-103184 +103185-103191 +103185-103191 +103185-103186 +103188-103191 +103189-103191 +103190-103191 +103192-103197 +103192-103197 +103192-103193 +103194-103196 +103195-103196 +103198-103207 +103198-103207 +103200-103201 +103202-103203 +103204-103207 +103205-103207 +103205-103206 +103208-103217 +103208-103217 +103209-103217 +103209-103211 +103210-103211 +103213-103214 +103215-103217 +103216-103217 +103218-103227 +103218-103227 +103219-103227 +103219 +103220-103224 +103221-103224 +103225-103227 +103228-103233 +103228-103233 +103229-103233 +103230-103233 +103231-103233 +103232-103233 +103234-103239 +103234-103239 +103234 +103235-103239 +103237-103239 +103238-103239 +103240-103245 +103240-103245 +103241-103245 +103242-103243 +103245 +103246-103259 +103246-103259 +103246-103247 +103248-103253 +103248-103249 +103250-103253 +103251-103253 +103252-103253 +103255-103259 +103255-103257 +103256-103257 +103260-103275 +103260-103275 +103261-103275 +103261-103263 +103262-103263 +103265-103275 +103265-103267 +103266-103267 +103268-103275 +103269-103275 +103270-103275 +103271-103273 +103272-103273 +103274-103275 +103275 +103276-103286 +103276-103286 +103277-103286 +103277-103281 +103278-103281 +103279-103281 +103280-103281 +103282 +103283-103286 +103284-103286 +103284-103285 +103287-103296 +103287-103296 +103288-103296 +103289-103296 +103289-103290 +103291-103296 +103292-103296 +103292-103293 +103294-103295 +103297-103309 +103297-103309 +103298-103309 +103298-103303 +103298-103299 +103301-103303 +103302-103303 +103304-103309 +103305-103309 +103305-103306 +103307-103309 +103308-103309 +103310-103320 +103310-103320 +103311-103320 +103314-103320 +103315-103320 +103316-103320 +103316-103318 +103317-103318 +103321-103328 +103321-103328 +103322-103328 +103322-103324 +103323-103324 +103325-103328 +103327-103328 +103329-103370 +103329-103370 +103330-103370 +103332-103370 +103332-103335 +103333-103335 +103334-103335 +103336-103370 +103338-103370 +103338-103356 +103353-103356 +103354-103356 +103355-103356 +103357-103370 +103357-103359 +103361-103370 +103362-103370 +103363-103370 +103363-103366 +103364-103366 +103364-103365 +103367-103368 +103371-103391 +103371-103391 +103371-103385 +103372-103385 +103372-103375 +103373-103375 +103374-103375 +103377-103385 +103386-103391 +103386-103388 +103387-103388 +103392-103405 +103392-103405 +103393-103405 +103393-103396 +103394-103396 +103395-103396 +103397-103398 +103400-103405 +103401-103405 +103401-103402 +103403-103405 +103404-103405 +103406-103411 +103406-103411 +103406-103408 +103407-103408 +103412-103418 +103412-103418 +103415-103416 +103417-103418 +103419-103441 +103419-103441 +103419 +103420-103426 +103421-103426 +103424-103426 +103425-103426 +103427-103441 +103427-103429 +103428-103429 +103431-103432 +103433-103435 +103434-103435 +103436-103441 +103438-103441 +103439-103441 +103439-103440 +103442-103452 +103442-103452 +103442-103445 +103442-103444 +103443-103444 +103446-103452 +103447-103452 +103449-103452 +103450-103452 +103451-103452 +103453-103462 +103453-103462 +103454-103462 +103454-103460 +103455-103460 +103457-103458 +103459-103460 +103461-103462 +103463-103481 +103463-103481 +103464-103481 +103464-103468 +103464-103466 +103465-103466 +103469-103481 +103470-103481 +103470-103476 +103471-103472 +103474-103475 +103477-103481 +103478-103481 +103479-103481 +103480-103481 +103482-103487 +103482-103487 +103483-103487 +103484-103486 +103485-103486 +103488-103498 +103488-103498 +103489-103498 +103490-103493 +103491-103493 +103492-103493 +103494-103495 +103495 +103496-103498 +103497-103498 +103499-103503 +103499-103503 +103501-103503 +103504-103535 +103504-103535 +103505-103535 +103505-103508 +103506-103508 +103512-103535 +103513-103535 +103513-103523 +103513-103518 +103514-103518 +103515-103518 +103516-103518 +103517-103518 +103519-103521 +103520-103521 +103524-103535 +103525-103535 +103525-103529 +103526-103529 +103527-103529 +103528-103529 +103530-103532 +103531-103532 +103534-103535 +103536-103541 +103536-103541 +103537-103541 +103537-103539 +103537-103538 +103542-103547 +103542-103547 +103543-103547 +103543-103544 +103546-103547 +103548-103564 +103548-103564 +103549-103564 +103550-103564 +103550-103552 +103551-103552 +103553-103564 +103553-103557 +103554-103555 +103556-103557 +103558-103564 +103559-103564 +103560-103564 +103561-103564 +103562-103564 +103563-103564 +103565-103572 +103565-103572 +103565 +103566-103572 +103566-103567 +103570-103572 +103571-103572 +103573-103589 +103573-103589 +103573-103581 +103573-103577 +103575-103577 +103576-103577 +103580-103581 +103583-103589 +103584-103587 +103585-103587 +103586-103587 +103590-103606 +103590-103606 +103591-103606 +103592-103596 +103592-103594 +103592-103593 +103593 +103598-103606 +103598-103600 +103599-103600 +103601-103606 +103602-103606 +103602-103605 +103603-103605 +103604-103605 +103607-103628 +103607-103628 +103608-103628 +103611 +103612-103621 +103613-103621 +103614-103621 +103615-103621 +103616-103621 +103617-103621 +103617-103619 +103618-103619 +103620-103621 +103622-103628 +103622-103626 +103622-103623 +103629-103638 +103629-103638 +103630-103638 +103632-103638 +103633-103635 +103634-103635 +103637-103638 +103639-103655 +103639-103655 +103640-103655 +103640-103644 +103641-103643 +103641-103642 +103645-103647 +103646-103647 +103648-103655 +103648-103649 +103650-103655 +103651-103655 +103652-103655 +103653-103655 +103654-103655 +103656-103672 +103656-103672 +103656-103661 +103656-103657 +103662-103672 +103663-103672 +103664-103667 +103665-103667 +103666-103667 +103668-103671 +103669-103671 +103670-103671 +103673-103685 +103673-103685 +103673-103679 +103674-103679 +103675-103679 +103675-103677 +103676-103677 +103678-103679 +103680-103683 +103681-103683 +103682-103683 +103684 +103685 +103686-103703 +103686-103703 +103686-103692 +103687-103692 +103687-103689 +103688-103689 +103690-103692 +103691-103692 +103693-103703 +103694-103703 +103694-103698 +103695-103698 +103696-103698 +103697-103698 +103699-103703 +103700-103703 +103701-103703 +103702-103703 +103704-103715 +103704-103715 +103705-103707 +103706-103707 +103708-103715 +103709-103715 +103709-103711 +103710-103711 +103712-103715 +103713-103715 +103714-103715 +103716-103781 +103716-103781 +103717-103781 +103717-103725 +103718-103725 +103718-103720 +103719-103720 +103721-103725 +103721-103723 +103722-103723 +103724-103725 +103726-103781 +103727-103781 +103727-103737 +103729-103732 +103730-103732 +103731-103732 +103733-103735 +103734-103735 +103736-103737 +103738-103781 +103739-103781 +103741-103742 +103743-103745 +103744-103745 +103746-103754 +103748-103750 +103749-103750 +103751-103752 +103753-103754 +103755-103781 +103757-103758 +103759-103761 +103760-103761 +103762-103763 +103764-103769 +103765-103769 +103766-103769 +103767-103769 +103768-103769 +103770-103781 +103771-103781 +103772-103781 +103773-103781 +103774-103781 +103774-103775 +103776-103781 +103779-103781 +103780-103781 +103781 +103782-103847 +103782-103847 +103782-103783 +103785-103794 +103785-103790 +103786-103790 +103787-103790 +103788-103790 +103789-103790 +103791-103794 +103792-103794 +103793-103794 +103795-103847 +103796-103847 +103797-103847 +103798-103847 +103799-103847 +103799-103800 +103801-103847 +103803-103804 +103805-103809 +103806-103809 +103807-103809 +103808-103809 +103810-103816 +103812-103816 +103813-103816 +103814-103816 +103815-103816 +103817-103847 +103818-103847 +103819-103847 +103819-103820 +103821-103847 +103823-103824 +103825-103830 +103826-103830 +103827-103830 +103828-103830 +103829-103830 +103831-103847 +103831-103836 +103832-103833 +103834-103836 +103835-103836 +103837-103847 +103837-103845 +103837-103840 +103838-103840 +103839-103840 +103841-103845 +103842-103845 +103843-103845 +103844-103845 +103846-103847 +103848-103877 +103848-103877 +103848-103849 +103852-103864 +103853-103864 +103854-103864 +103855-103864 +103856-103864 +103856-103857 +103859-103864 +103860-103864 +103861-103864 +103862-103864 +103863-103864 +103865-103877 +103866-103877 +103867-103877 +103868-103871 +103869-103871 +103870-103871 +103872-103877 +103873-103877 +103874-103877 +103875-103877 +103876-103877 +103878-103917 +103878-103917 +103878-103879 +103880-103881 +103882-103891 +103883-103891 +103883-103886 +103884-103886 +103885-103886 +103887-103891 +103888-103891 +103889-103891 +103890-103891 +103892-103895 +103892-103893 +103897-103908 +103897-103902 +103898-103902 +103898-103900 +103899-103900 +103901-103902 +103903-103908 +103905-103908 +103906-103908 +103907-103908 +103909-103912 +103910-103912 +103911-103912 +103913-103917 +103914-103917 +103915-103917 +103916-103917 +103918-104017 +103918-104017 +103918-103919 +103921-103937 +103922-103937 +103922-103929 +103923-103929 +103923-103925 +103923-103924 +103926-103929 +103927-103929 +103928-103929 +103930-103937 +103931-103937 +103931-103932 +103933-103937 +103934-103937 +103935-103937 +103936-103937 +103940-103942 +103941-103942 +103943-104017 +103945-103948 +103946-103948 +103947-103948 +103949-104017 +103950-104017 +103950-103960 +103950-103956 +103951-103956 +103952-103956 +103952-103954 +103953-103954 +103955-103956 +103957-103960 +103958-103960 +103959-103960 +103963-103966 +103964-103966 +103965-103966 +103967-103969 +103968-103969 +103970-104017 +103971-103975 +103972-103975 +103973-103975 +103974-103975 +103976-104017 +103977-104017 +103978-104017 +103980-104009 +103980-103986 +103982-103986 +103983-103986 +103984-103986 +103985-103986 +103987-103997 +103988-103997 +103989-103997 +103990-103997 +103991-103997 +103992-103997 +103993-103997 +103993-103994 +103995-103997 +103996-103997 +103998-104009 +103999-104009 +104000-104009 +104001-104009 +104001-104002 +104001 +104003-104009 +104004-104009 +104004-104005 +104006-104009 +104007-104009 +104008-104009 +104009 +104010-104017 +104011-104017 +104012-104017 +104013-104017 +104014-104017 +104015-104017 +104016-104017 +104018-104058 +104018-104058 +104020-104022 +104021-104022 +104023-104058 +104023-104026 +104025-104026 +104027-104058 +104028-104058 +104029-104031 +104030-104031 +104032-104034 +104033-104034 +104035-104047 +104036-104047 +104036-104043 +104037-104043 +104038-104039 +104040-104041 +104042-104043 +104044-104047 +104045-104047 +104046-104047 +104047 +104048-104058 +104048-104049 +104050-104053 +104051-104053 +104051-104052 +104055-104058 +104056-104058 +104057-104058 +104058 +104059-104086 +104059-104086 +104060-104086 +104060-104065 +104062-104065 +104063-104065 +104064-104065 +104066-104086 +104067-104086 +104069-104071 +104070-104071 +104072-104086 +104072-104073 +104074-104086 +104076-104086 +104076-104078 +104077-104078 +104079-104086 +104080-104086 +104081-104086 +104082-104086 +104082-104083 +104084-104085 +104087-104123 +104087-104123 +104088-104123 +104088-104096 +104091-104096 +104091-104095 +104091-104092 +104093-104095 +104094-104095 +104097-104098 +104101-104106 +104102-104106 +104103-104106 +104104-104106 +104104-104105 +104107-104123 +104108-104123 +104108-104113 +104109-104113 +104110-104113 +104111-104113 +104112-104113 +104114-104123 +104114-104115 +104116-104123 +104117-104123 +104119-104123 +104120-104123 +104121-104123 +104122-104123 +104124-104153 +104124-104153 +104124-104144 +104124-104125 +104126-104128 +104127-104128 +104131-104136 +104132-104136 +104133-104136 +104134-104136 +104135-104136 +104137-104144 +104138-104144 +104139-104144 +104140-104144 +104140-104141 +104142-104144 +104143-104144 +104145-104153 +104146-104153 +104147-104148 +104150-104153 +104151-104153 +104151-104153 +104152-104153 +104154-104210 +104154-104210 +104155-104210 +104155-104180 +104155-104177 +104155-104156 +104157-104160 +104159-104160 +104161-104168 +104162-104168 +104163-104168 +104163-104165 +104163-104164 +104166-104168 +104169-104174 +104173-104174 +104176-104177 +104178-104180 +104179-104180 +104181-104210 +104182-104210 +104182-104190 +104182 +104183-104190 +104184-104190 +104185-104187 +104186-104187 +104188-104190 +104189-104190 +104191-104210 +104192-104210 +104193-104197 +104194-104197 +104194-104195 +104196-104197 +104197 +104198-104210 +104199-104210 +104199-104200 +104199 +104201-104210 +104202-104210 +104202-104203 +104204-104210 +104205-104210 +104205-104207 +104206-104207 +104208-104210 +104209-104210 +104211-104217 +104211-104217 +104212-104217 +104212-104213 +104214-104215 +104216-104217 +104218-104225 +104218-104225 +104219-104225 +104219-104222 +104221-104222 +104223-104225 +104223-104225 +104224-104225 +104226-104232 +104226-104232 +104226-104228 +104227-104228 +104229-104232 +104230-104232 +104233-104251 +104233-104251 +104234-104251 +104235-104236 +104237-104251 +104238-104240 +104239-104240 +104241-104251 +104242-104251 +104242-104243 +104244-104251 +104244-104247 +104246-104247 +104249-104251 +104249-104250 +104252-104296 +104252-104296 +104253-104296 +104253 +104254-104296 +104254-104270 +104255-104270 +104256-104270 +104256-104260 +104257-104260 +104257-104258 +104259-104260 +104261-104270 +104262-104270 +104264-104270 +104265-104270 +104266-104270 +104267-104270 +104267-104269 +104268-104269 +104272-104296 +104273-104275 +104273-104274 +104276-104277 +104278-104296 +104278-104288 +104278-104282 +104279-104282 +104280-104282 +104281-104282 +104283-104288 +104284-104288 +104285-104288 +104286-104288 +104287-104288 +104289-104296 +104289-104291 +104292-104296 +104293-104296 +104294-104296 +104295-104296 +104297-104313 +104297-104313 +104298-104313 +104299-104301 +104300-104301 +104302-104306 +104303-104306 +104304-104306 +104309-104313 +104310-104313 +104311-104313 +104312-104313 +104314-104372 +104314-104372 +104315-104372 +104317-104336 +104317-104319 +104318-104319 +104320-104336 +104321-104336 +104321-104324 +104322-104323 +104325-104336 +104326-104336 +104326-104331 +104326-104329 +104327-104329 +104328-104329 +104330-104331 +104333-104336 +104334-104336 +104335-104336 +104337-104372 +104337-104342 +104338-104342 +104339-104342 +104340-104342 +104341-104342 +104344-104372 +104345-104372 +104345-104355 +104345-104346 +104348-104349 +104350-104353 +104351-104353 +104352-104353 +104354-104355 +104356-104372 +104357-104372 +104358-104359 +104360-104362 +104361-104362 +104363-104364 +104365-104367 +104366-104367 +104368-104372 +104369-104370 +104371-104372 +104373-104397 +104373-104397 +104374-104397 +104374-104383 +104374-104379 +104374 +104377-104379 +104378-104379 +104380-104383 +104381-104383 +104382-104383 +104384-104397 +104385-104397 +104385-104386 +104388-104389 +104390-104391 +104392-104394 +104393-104394 +104395-104397 +104396-104397 +104398-104448 +104398-104448 +104399-104448 +104400-104448 +104400-104413 +104401-104404 +104402-104404 +104403-104404 +104406-104413 +104407-104413 +104407-104409 +104408-104409 +104410-104413 +104411-104413 +104412-104413 +104414-104448 +104415-104421 +104416-104421 +104417-104421 +104418-104421 +104419-104421 +104420-104421 +104422-104448 +104424-104448 +104424-104426 +104425-104426 +104427-104448 +104427-104428 +104429-104430 +104431 +104433-104435 +104434-104435 +104436-104448 +104437-104448 +104438-104448 +104438-104439 +104440-104441 +104443-104446 +104444-104446 +104445-104446 +104447-104448 +104449-104554 +104449-104554 +104449-104461 +104449-104450 +104451-104452 +104453-104461 +104454-104461 +104454-104457 +104455-104457 +104456-104457 +104458-104461 +104459-104461 +104460-104461 +104462-104486 +104462-104475 +104463-104475 +104464-104475 +104465-104475 +104466-104475 +104467-104475 +104467-104470 +104468-104470 +104469-104470 +104471-104475 +104472-104475 +104474-104475 +104476-104486 +104477-104486 +104477-104478 +104481-104482 +104483-104486 +104484-104486 +104485-104486 +104487-104535 +104487-104488 +104490 +104491-104535 +104492-104535 +104493-104535 +104493-104494 +104495-104535 +104496-104535 +104496-104499 +104497-104499 +104498-104499 +104500-104535 +104500-104508 +104501-104502 +104505-104508 +104506-104508 +104507-104508 +104510-104535 +104512-104517 +104513-104517 +104513-104515 +104513-104514 +104516-104517 +104518-104519 +104520-104535 +104521-104522 +104523-104529 +104524-104525 +104526-104529 +104527-104529 +104528-104529 +104530-104532 +104531-104532 +104533-104535 +104534-104535 +104536-104554 +104536-104537 +104539-104554 +104540-104554 +104541-104554 +104542-104554 +104542-104545 +104543-104545 +104544-104545 +104546-104554 +104547-104554 +104549-104554 +104550-104554 +104551-104554 +104552-104554 +104553-104554 +104555-104635 +104555-104635 +104555-104559 +104556-104559 +104557-104559 +104558-104559 +104561-104563 +104561-104562 +104564-104590 +104564-104571 +104564-104565 +104567-104571 +104568-104571 +104568-104569 +104570-104571 +104572-104590 +104573-104590 +104574-104590 +104575-104590 +104576-104590 +104577-104590 +104577-104578 +104579-104590 +104580-104590 +104581-104583 +104582-104583 +104584-104590 +104585-104590 +104585-104586 +104587-104590 +104588-104590 +104588-104589 +104591-104635 +104592-104635 +104594-104601 +104594-104598 +104594-104595 +104596-104598 +104597-104598 +104599-104601 +104600-104601 +104602-104604 +104603-104604 +104605-104609 +104606-104609 +104606-104607 +104608-104609 +104610-104635 +104611-104635 +104611-104613 +104612-104613 +104614-104635 +104616-104635 +104617-104635 +104617-104622 +104617-104619 +104618-104619 +104620-104622 +104621-104622 +104623-104635 +104623-104624 +104626-104629 +104627-104629 +104628-104629 +104630-104631 +104632-104635 +104633-104635 +104634-104635 +104636-104649 +104636-104649 +104637-104649 +104638-104649 +104640-104649 +104641-104649 +104641-104645 +104642-104645 +104642-104643 +104644-104645 +104646-104649 +104648-104649 +104650-104735 +104650-104735 +104650-104651 +104653-104655 +104654-104655 +104656-104668 +104657-104668 +104657-104658 +104659-104668 +104659-104660 +104661-104667 +104661-104662 +104663-104667 +104663-104664 +104665-104667 +104666-104667 +104669-104735 +104670-104735 +104672-104677 +104673-104677 +104674-104677 +104675-104677 +104676-104677 +104678-104702 +104680-104683 +104681-104683 +104682-104683 +104684-104687 +104685-104687 +104686-104687 +104688-104697 +104689-104690 +104691-104693 +104692-104693 +104694-104697 +104695-104697 +104696-104697 +104698-104702 +104698-104699 +104700-104702 +104701-104702 +104703-104735 +104704-104735 +104705-104727 +104705-104718 +104706-104709 +104707-104709 +104708-104709 +104710-104718 +104711-104718 +104712-104718 +104713-104714 +104715-104716 +104717-104718 +104719-104727 +104720-104727 +104721-104727 +104722-104727 +104722-104724 +104723-104724 +104725-104727 +104726-104727 +104728-104735 +104729-104735 +104730-104735 +104731-104735 +104732-104735 +104733-104735 +104734-104735 +104736-104772 +104736-104772 +104737-104772 +104737-104753 +104737-104753 +104738-104753 +104739-104753 +104741-104746 +104742-104746 +104743-104746 +104744-104746 +104745-104746 +104747-104753 +104748-104753 +104748-104749 +104750-104753 +104751-104753 +104752-104753 +104755-104756 +104757-104763 +104757-104759 +104758-104759 +104760-104763 +104761-104763 +104762-104763 +104764-104771 +104765-104771 +104766-104771 +104767-104771 +104768-104771 +104769-104771 +104770-104771 +104772 +104773-104808 +104773-104808 +104774-104808 +104776-104780 +104777-104780 +104778-104780 +104779-104780 +104781-104808 +104783-104786 +104784-104786 +104785-104786 +104787-104797 +104787-104791 +104788-104791 +104789-104791 +104790-104791 +104792-104793 +104796-104797 +104798-104808 +104799-104808 +104800-104803 +104801-104803 +104802-104803 +104804-104808 +104805-104808 +104806-104808 +104807-104808 +104809-104822 +104809-104822 +104809-104813 +104809-104813 +104809-104810 +104811-104813 +104812-104813 +104814-104822 +104815-104822 +104817-104822 +104818-104822 +104819-104822 +104820-104822 +104821-104822 +104823-104842 +104823-104842 +104823-104842 +104823-104824 +104825-104826 +104827-104828 +104829-104842 +104829-104833 +104830-104833 +104831-104833 +104832-104833 +104834-104842 +104835-104842 +104835-104836 +104837-104839 +104838-104839 +104840-104842 +104841-104842 +104843-104856 +104843-104856 +104844-104856 +104844-104846 +104844-104845 +104848-104849 +104850-104856 +104851-104856 +104852-104856 +104853-104856 +104854-104856 +104855-104856 +104857-104867 +104857-104867 +104858-104867 +104859-104867 +104859-104863 +104859-104861 +104860-104861 +104864-104867 +104866-104867 +104868-104883 +104868-104883 +104869-104883 +104869-104870 +104870 +104873-104883 +104874-104883 +104875-104883 +104876-104883 +104878-104883 +104879-104883 +104880-104883 +104881-104883 +104882-104883 +104884-104898 +104884-104898 +104884-104886 +104884-104885 +104885 +104888-104898 +104889-104898 +104890-104898 +104891-104894 +104892-104894 +104893-104894 +104895-104898 +104896-104898 +104897-104898 +104899-105022 +104899-105022 +104900-105022 +104902-104915 +104902-104904 +104903-104904 +104905-104907 +104906-104907 +104908-104910 +104909-104910 +104911-104915 +104912-104915 +104913-104915 +104914-104915 +104916-104929 +104917-104929 +104918-104929 +104918-104923 +104918-104920 +104919-104920 +104921-104923 +104922-104923 +104924-104929 +104925-104929 +104926-104929 +104927-104929 +104928-104929 +104930-105022 +104931-105022 +104932-104933 +104934-104955 +104934-104945 +104935-104945 +104936-104945 +104937-104945 +104937-104938 +104939-104945 +104940-104945 +104941-104945 +104942-104945 +104943-104945 +104944-104945 +104946-104948 +104947-104948 +104949-104955 +104950-104955 +104951-104955 +104952-104955 +104953-104955 +104954-104955 +104956-105022 +104957-105022 +104957-104978 +104959-104978 +104960-104978 +104960-104962 +104961-104962 +104963-104966 +104964-104966 +104965-104966 +104967-104978 +104968-104978 +104969-104978 +104969-104971 +104970-104971 +104972-104978 +104973-104978 +104974-104978 +104975-104978 +104976-104978 +104977-104978 +104979-105022 +104980-105022 +104980-104982 +104981-104982 +104984-104985 +104986-105022 +104987-105022 +104987-104992 +104987-104991 +104988-104991 +104990-104991 +104993-105022 +104993-104994 +104995-104997 +104996-104997 +104998-105012 +104998-105000 +104999-105000 +105001-105005 +105002-105005 +105003-105005 +105004-105005 +105006-105012 +105007-105012 +105007-105009 +105008-105009 +105010-105012 +105010-105011 +105013-105016 +105014-105016 +105015-105016 +105018-105022 +105019-105022 +105019-105020 +105021-105022 +105023-105076 +105023-105076 +105024-105076 +105024-105025 +105026-105076 +105027-105076 +105028-105029 +105030-105076 +105030-105032 +105033-105076 +105034-105076 +105035-105036 +105038-105042 +105039-105042 +105040-105042 +105041-105042 +105043-105076 +105043-105044 +105045-105046 +105047-105076 +105048-105051 +105049-105051 +105050-105051 +105052-105076 +105053-105076 +105053-105054 +105055-105076 +105056-105076 +105057-105058 +105059-105076 +105060-105076 +105061-105076 +105062-105076 +105063-105076 +105064-105076 +105065-105076 +105066 +105069-105070 +105071-105076 +105072-105076 +105072-105074 +105073-105074 +105075-105076 +105077-105135 +105077-105135 +105078-105135 +105078-105083 +105082-105083 +105084-105135 +105085-105135 +105086-105135 +105086-105087 +105088-105135 +105089-105135 +105089-105090 +105092-105097 +105093-105097 +105095-105097 +105096-105097 +105098-105135 +105098-105113 +105100-105103 +105101-105103 +105102-105103 +105104-105113 +105104-105106 +105105-105106 +105107-105113 +105108-105113 +105109-105113 +105110-105113 +105111-105113 +105112-105113 +105114-105120 +105115-105120 +105116-105120 +105117-105120 +105118-105120 +105119-105120 +105121-105135 +105122-105135 +105123-105135 +105123-105125 +105124-105125 +105126-105135 +105127-105135 +105127-105128 +105130-105135 +105131-105135 +105131-105133 +105132-105133 +105134-105135 +105136-105150 +105136-105150 +105137-105150 +105137-105139 +105138-105139 +105143-105146 +105144-105146 +105145-105146 +105147-105150 +105148-105150 +105149-105150 +105151-105154 +105151-105154 +105151 +105152-105154 +105153-105154 +105155-105166 +105155-105166 +105155-105161 +105155-105156 +105159-105161 +105160-105161 +105162-105166 +105165-105166 +105167-105185 +105167-105185 +105167-105170 +105167-105168 +105168 +105171-105185 +105172-105185 +105172-105179 +105174-105179 +105175-105177 +105176-105177 +105178-105179 +105180-105185 +105181-105185 +105182-105185 +105183-105185 +105184-105185 +105186-105207 +105186-105207 +105186-105194 +105186-105188 +105187-105188 +105189-105192 +105190-105192 +105191-105192 +105195-105207 +105196-105207 +105196-105202 +105197-105202 +105199-105202 +105200-105202 +105201-105202 +105203-105207 +105204-105207 +105206-105207 +105207 +105208-105222 +105208-105222 +105209-105222 +105211-105222 +105211-105216 +105211-105212 +105213-105216 +105214-105216 +105215-105216 +105217-105222 +105217-105218 +105220-105222 +105221-105222 +105223-105238 +105223-105238 +105223-105232 +105224-105232 +105225-105226 +105227-105228 +105229-105230 +105231-105232 +105234-105235 +105236-105238 +105237-105238 +105239-105254 +105239-105254 +105240-105254 +105241-105242 +105243-105244 +105245-105254 +105247-105254 +105248-105254 +105248-105250 +105249-105250 +105251-105252 +105255-105285 +105255-105285 +105256-105285 +105256-105262 +105257-105259 +105258-105259 +105260-105262 +105261-105262 +105261-105262 +105263-105285 +105264-105285 +105265-105266 +105267-105285 +105268-105285 +105268-105272 +105268-105270 +105269-105270 +105273-105285 +105274-105285 +105276-105277 +105278-105285 +105278-105282 +105278-105280 +105279-105280 +105281-105282 +105283-105285 +105284-105285 +105286-105311 +105286-105311 +105287-105311 +105287-105308 +105287-105299 +105287-105292 +105288-105290 +105289-105290 +105291-105292 +105295-105296 +105297-105299 +105298-105299 +105300-105308 +105301-105308 +105301-105308 +105301-105305 +105302-105303 +105304-105305 +105306-105308 +105309-105311 +105310-105311 +105312-105335 +105312-105335 +105313-105335 +105315-105335 +105316-105335 +105317-105335 +105317-105325 +105317-105322 +105318-105322 +105319-105320 +105321-105322 +105323-105325 +105329-105335 +105330-105335 +105331-105335 +105332-105335 +105333-105335 +105334-105335 +105336-105353 +105336-105353 +105339-105340 +105341-105353 +105342-105353 +105342-105343 +105345-105348 +105346-105348 +105347-105348 +105349-105353 +105350-105353 +105351-105353 +105352-105353 +105354-105358 +105354-105358 +105355-105358 +105357-105358 +105359-105367 +105359-105367 +105360-105367 +105360-105362 +105363-105367 +105364-105367 +105366-105367 +105368-105389 +105368-105389 +105368-105371 +105368-105370 +105369-105370 +105369-105370 +105372-105383 +105373-105383 +105373-105376 +105374-105376 +105375-105376 +105377-105383 +105378-105383 +105379-105383 +105380-105381 +105382-105383 +105384-105389 +105385-105389 +105388-105389 +105390-105412 +105390-105412 +105391-105412 +105391-105402 +105391-105398 +105393-105398 +105393-105394 +105395-105398 +105396-105398 +105397-105398 +105399-105402 +105400-105402 +105403-105412 +105404-105412 +105404-105408 +105405-105408 +105407-105408 +105411-105412 +105413-105426 +105413-105426 +105414-105426 +105414-105415 +105416-105419 +105417-105419 +105418-105419 +105421-105426 +105422-105426 +105422-105424 +105423-105424 +105424 +105427-105441 +105427-105441 +105428-105441 +105429-105441 +105429-105431 +105430-105431 +105430-105431 +105431 +105432-105436 +105433-105436 +105434-105436 +105435-105436 +105437-105441 +105438-105441 +105440-105441 +105442-105460 +105442-105460 +105443-105460 +105445-105452 +105445-105446 +105447-105452 +105448-105449 +105449 +105451-105452 +105452 +105453-105455 +105454-105455 +105456-105460 +105457-105460 +105457-105458 +105461-105472 +105461-105472 +105461-105465 +105461-105462 +105466-105472 +105467-105472 +105468-105472 +105469-105472 +105470-105472 +105471-105472 +105473-105520 +105473-105520 +105474-105520 +105475-105480 +105476-105480 +105477-105480 +105477-105478 +105482-105520 +105483-105484 +105485-105520 +105485-105492 +105487-105492 +105488-105489 +105490-105492 +105491-105492 +105493-105500 +105493-105495 +105494-105495 +105496-105498 +105497-105498 +105499-105500 +105501-105515 +105503-105504 +105505-105511 +105506-105511 +105507-105511 +105507-105509 +105508-105509 +105510-105511 +105512-105515 +105513-105515 +105514-105515 +105516-105520 +105518-105520 +105519-105520 +105521-105545 +105521-105545 +105521-105522 +105521-105522 +105523-105525 +105524-105525 +105526-105528 +105527-105528 +105527-105528 +105529-105545 +105530-105545 +105532-105534 +105533-105534 +105535-105545 +105536-105545 +105536-105541 +105536-105538 +105537-105538 +105539-105541 +105540-105541 +105542-105545 +105543-105545 +105544-105545 +105546-105560 +105546-105560 +105547-105560 +105547-105552 +105548-105552 +105548-105549 +105551-105552 +105554-105556 +105555-105556 +105557-105558 +105559-105560 +105561-105609 +105561-105609 +105561-105562 +105561-105562 +105563-105565 +105564-105565 +105566-105609 +105567-105609 +105567-105572 +105567-105569 +105568-105569 +105571-105572 +105573-105609 +105574-105609 +105574-105577 +105576-105577 +105578-105609 +105579-105609 +105581-105587 +105582-105585 +105583-105585 +105584-105585 +105586-105587 +105588-105609 +105589-105609 +105592-105593 +105594-105609 +105595-105609 +105595-105609 +105596-105603 +105597-105603 +105598-105599 +105600-105603 +105601-105603 +105602-105603 +105605-105609 +105606-105609 +105607-105609 +105608-105609 +105610-105622 +105610-105622 +105612-105614 +105613-105614 +105615-105618 +105616-105618 +105617-105618 +105619-105622 +105620-105622 +105620-105622 +105621-105622 +105623-105653 +105623-105653 +105623-105629 +105623-105627 +105624-105627 +105625-105627 +105626-105627 +105630-105653 +105631-105653 +105631-105636 +105633-105635 +105634-105635 +105637-105653 +105638-105653 +105638-105640 +105639-105640 +105642-105653 +105643-105653 +105643-105645 +105644-105645 +105646-105647 +105648-105653 +105649-105653 +105650-105653 +105651-105653 +105652-105653 +105654-105675 +105654-105675 +105654-105668 +105654-105662 +105654-105655 +105658-105662 +105658-105659 +105660-105662 +105661-105662 +105663-105668 +105664-105668 +105665-105668 +105666-105668 +105667-105668 +105669-105675 +105670-105675 +105671-105672 +105673-105675 +105674-105675 +105676-105689 +105676-105689 +105676-105680 +105676-105678 +105676-105677 +105681-105689 +105682-105689 +105684-105689 +105684-105685 +105686-105689 +105687-105689 +105688-105689 +105690-105710 +105690-105710 +105691-105710 +105691-105703 +105691-105695 +105692-105695 +105693-105695 +105694-105695 +105697-105699 +105698-105699 +105702-105703 +105703 +105704-105710 +105705-105710 +105705-105706 +105707-105710 +105708-105710 +105709-105710 +105711-105722 +105711-105722 +105711-105718 +105711-105712 +105711-105712 +105714-105716 +105715-105716 +105717-105718 +105719-105722 +105720-105722 +105723-105745 +105723-105745 +105723-105735 +105723-105729 +105724-105729 +105724-105726 +105725-105726 +105727-105729 +105728-105729 +105732-105735 +105732-105733 +105734-105735 +105736-105745 +105737-105745 +105737-105739 +105740-105745 +105741-105745 +105743-105745 +105744-105745 +105746-105761 +105746-105761 +105747-105761 +105747-105748 +105747-105748 +105749-105761 +105750-105753 +105751-105753 +105752-105753 +105755-105761 +105757-105761 +105758-105761 +105758-105760 +105759-105760 +105762-105820 +105762-105820 +105762-105763 +105762-105763 +105764-105780 +105764-105777 +105765-105768 +105766-105768 +105766-105767 +105769-105772 +105770-105772 +105771-105772 +105773-105777 +105774-105777 +105775-105777 +105776-105777 +105778-105780 +105779-105780 +105779-105780 +105781-105820 +105782-105785 +105782-105783 +105782-105783 +105784-105785 +105785 +105787-105820 +105787-105789 +105788-105789 +105788-105789 +105790-105820 +105790-105796 +105791-105794 +105792-105794 +105793-105794 +105795-105796 +105797-105805 +105797-105798 +105800-105805 +105801-105805 +105801-105802 +105801-105802 +105803-105805 +105804-105805 +105806-105820 +105807-105820 +105808-105820 +105808-105812 +105809-105812 +105810-105811 +105813-105816 +105815-105816 +105817-105820 +105817-105818 +105818 +105819-105820 +105820 +105821-105848 +105821-105848 +105822-105848 +105822-105823 +105822-105823 +105824-105825 +105827-105828 +105829-105831 +105830-105831 +105832-105848 +105833-105848 +105834-105848 +105834-105842 +105834-105839 +105834-105837 +105834-105835 +105836-105837 +105838-105839 +105841-105842 +105843-105848 +105844-105848 +105847-105848 +105849-105860 +105849-105860 +105849-105850 +105852-105860 +105852-105853 +105854-105860 +105855-105860 +105856-105860 +105857-105860 +105858-105860 +105859-105860 +105861-105906 +105861-105906 +105862-105865 +105863-105865 +105864-105865 +105866-105875 +105867-105875 +105868-105875 +105870-105875 +105871-105875 +105872-105875 +105873-105875 +105874-105875 +105876-105906 +105877-105906 +105878-105880 +105879-105880 +105881-105906 +105882-105885 +105883-105885 +105884-105885 +105887-105906 +105887-105889 +105888-105889 +105890-105892 +105891-105892 +105893-105898 +105894-105898 +105895-105898 +105896-105898 +105897-105898 +105899-105906 +105900-105906 +105901-105906 +105901-105903 +105902-105903 +105904-105906 +105905-105906 +105907-105925 +105907-105925 +105907-105908 +105910-105913 +105911-105913 +105912-105913 +105914-105925 +105915-105925 +105916-105925 +105916-105921 +105917-105921 +105918-105921 +105919-105921 +105920-105921 +105922-105925 +105923-105925 +105923-105924 +105926-105967 +105926-105967 +105927-105967 +105928-105949 +105928-105933 +105929-105931 +105930-105931 +105932-105933 +105934-105939 +105935-105939 +105936-105939 +105937-105939 +105938-105939 +105940-105949 +105941-105949 +105942-105943 +105944-105949 +105945-105949 +105946-105949 +105947-105949 +105948-105949 +105950-105967 +105950-105951 +105953-105967 +105953-105956 +105954-105956 +105955-105956 +105957-105967 +105957-105958 +105960-105967 +105960-105966 +105961-105966 +105961-105964 +105962-105964 +105963-105964 +105965-105966 +105966 +105968-106038 +105968-106038 +105969-106038 +105970-105982 +105970-105978 +105970-105973 +105971-105973 +105972-105973 +105974-105978 +105975-105978 +105976-105978 +105977-105978 +105979-105982 +105981-105982 +105983-106038 +105983-105993 +105983-105987 +105984-105987 +105985-105987 +105986-105987 +105989-105991 +105990-105991 +105992-105993 +105994-106038 +105995-106038 +105995-105996 +105998-106002 +105999-106002 +106000-106002 +106001-106002 +106003-106009 +106003-106006 +106004-106006 +106005-106006 +106007-106009 +106008-106009 +106010-106038 +106011-106038 +106014-106018 +106015-106018 +106016-106018 +106017-106018 +106019-106030 +106019-106020 +106022-106030 +106023-106030 +106024-106030 +106025-106030 +106026-106030 +106026-106027 +106029-106030 +106031-106038 +106032-106038 +106032-106033 +106035-106038 +106036-106038 +106037-106038 +106039-106077 +106039-106077 +106040-106077 +106040-106048 +106041-106048 +106042-106043 +106044-106048 +106044-106046 +106045-106046 +106047-106048 +106049-106077 +106052-106077 +106052-106060 +106053-106060 +106054-106060 +106054-106055 +106056-106060 +106057-106060 +106057-106058 +106059-106060 +106061-106077 +106061-106067 +106063-106064 +106065-106067 +106066-106067 +106069-106077 +106069-106072 +106070-106072 +106071-106072 +106073-106077 +106074-106077 +106075-106077 +106076-106077 +106078-106091 +106078-106091 +106078-106079 +106080-106082 +106081-106082 +106083-106084 +106085-106091 +106086-106091 +106086-106087 +106088-106091 +106089-106091 +106090-106091 +106092-106104 +106092-106104 +106092-106093 +106094-106104 +106095-106104 +106096-106104 +106097-106104 +106098-106102 +106099-106102 +106099-106100 +106101-106102 +106103-106104 +106105-106124 +106105-106124 +106105-106110 +106105-106107 +106106-106107 +106108-106110 +106109-106110 +106111-106124 +106112-106124 +106112-106116 +106113-106116 +106114-106116 +106115-106116 +106117-106124 +106118-106124 +106119-106120 +106121-106124 +106122-106124 +106123-106124 +106125-106136 +106125-106136 +106126-106128 +106127-106128 +106129-106136 +106130-106136 +106130-106132 +106131-106132 +106133-106136 +106134-106136 +106135-106136 +106137-106224 +106137-106224 +106138-106140 +106139-106140 +106141-106145 +106142-106145 +106143-106145 +106144-106145 +106146-106158 +106147-106153 +106148-106153 +106149-106153 +106149-106150 +106151-106153 +106152-106153 +106154-106155 +106156-106157 +106159-106172 +106160-106172 +106161-106172 +106161-106165 +106161-106162 +106163-106165 +106164-106165 +106166-106172 +106166-106169 +106167-106169 +106168-106169 +106170-106172 +106171-106172 +106173-106187 +106174-106175 +106176-106187 +106177-106187 +106177-106182 +106178-106182 +106179-106180 +106181-106182 +106184-106187 +106185-106187 +106186-106187 +106188-106224 +106189-106224 +106192-106196 +106194-106196 +106195-106196 +106197-106224 +106198-106224 +106199-106224 +106201-106203 +106202-106203 +106205-106217 +106205-106209 +106206-106209 +106207-106209 +106208-106209 +106210-106217 +106211-106217 +106212-106217 +106213-106217 +106213-106215 +106214-106215 +106216-106217 +106218-106224 +106218-106221 +106218-106219 +106220-106221 +106222-106223 +106225-106237 +106225-106237 +106226-106237 +106226-106227 +106228-106229 +106230-106237 +106231-106237 +106232-106233 +106234-106237 +106235-106237 +106236-106237 +106238-106280 +106238-106280 +106239-106280 +106241-106280 +106242-106280 +106242-106244 +106243-106244 +106246-106248 +106247-106248 +106250-106254 +106251-106254 +106252-106254 +106253-106254 +106255-106260 +106256-106260 +106257-106260 +106259-106260 +106260 +106261-106280 +106262-106280 +106263-106265 +106264-106265 +106266-106268 +106267-106268 +106269-106280 +106270-106275 +106270-106271 +106272-106275 +106273-106275 +106274-106275 +106276-106280 +106277-106280 +106277-106279 +106278-106279 +106281-106330 +106281-106330 +106282-106330 +106282 +106284-106330 +106286-106330 +106287-106330 +106287-106289 +106288-106289 +106291-106294 +106292-106294 +106293-106294 +106296-106330 +106297-106330 +106297-106311 +106297-106299 +106298-106299 +106301-106302 +106304-106311 +106305-106311 +106305-106307 +106306-106307 +106308-106311 +106309-106311 +106309-106310 +106312-106330 +106313-106330 +106313-106316 +106314-106316 +106315-106316 +106317-106322 +106317-106318 +106320-106322 +106321-106322 +106325-106330 +106326-106329 +106327-106329 +106328-106329 +106331-106345 +106331-106345 +106331-106337 +106332-106337 +106333-106337 +106334-106337 +106335-106337 +106336-106337 +106338-106345 +106339-106345 +106340-106342 +106341-106342 +106343-106344 +106346-106371 +106346-106371 +106346-106356 +106347-106356 +106348-106349 +106350-106356 +106351-106356 +106352-106356 +106352-106355 +106353-106355 +106354-106355 +106357-106371 +106358-106371 +106359-106360 +106361-106362 +106364-106371 +106366-106371 +106367-106371 +106369-106371 +106370-106371 +106372-106373 +106372-106373 +106373 +106374-106387 +106374-106387 +106375-106387 +106376-106387 +106376-106383 +106376-106377 +106378-106381 +106378-106379 +106380-106381 +106384-106387 +106385-106387 +106385-106386 +106388-106438 +106388-106438 +106389-106438 +106389-106390 +106391-106438 +106392-106438 +106393-106438 +106394-106438 +106397-106398 +106399-106408 +106400-106408 +106400-106402 +106401-106402 +106403-106408 +106404-106408 +106405-106408 +106406-106408 +106407-106408 +106409-106438 +106410-106438 +106410-106414 +106411-106414 +106411-106413 +106412-106413 +106415-106438 +106416-106438 +106416-106418 +106416-106417 +106419-106438 +106420-106438 +106420-106422 +106421-106422 +106423-106424 +106429-106432 +106430-106432 +106431-106432 +106433-106438 +106433-106435 +106434-106435 +106436-106438 +106437-106438 +106439-106447 +106439-106447 +106440-106447 +106440-106443 +106441-106442 +106442 +106444-106447 +106445-106447 +106445-106446 +106446 +106448-106457 +106448-106457 +106449-106457 +106449-106453 +106450-106453 +106450-106453 +106451-106453 +106452-106453 +106456-106457 +106458-106462 +106458-106462 +106459-106462 +106459-106460 +106463-106481 +106463-106481 +106464-106481 +106464-106477 +106465-106467 +106466-106467 +106468-106477 +106468-106469 +106471-106477 +106472-106477 +106473-106477 +106473 +106474-106477 +106475-106477 +106475-106476 +106478-106481 +106479-106481 +106482-106489 +106482-106489 +106483-106489 +106483-106486 +106484-106486 +106485-106486 +106488-106489 +106490-106524 +106490-106524 +106491-106524 +106491-106492 +106494-106524 +106495-106524 +106495-106497 +106496-106497 +106498-106499 +106500-106507 +106501-106507 +106501-106503 +106502-106503 +106504-106507 +106505-106507 +106506-106507 +106508-106524 +106509-106524 +106509-106511 +106510-106511 +106513-106515 +106514-106515 +106516-106517 +106518-106524 +106519-106524 +106520-106524 +106521-106524 +106521-106522 +106523-106524 +106525-106606 +106525-106606 +106525-106575 +106527-106530 +106528-106530 +106529-106530 +106532-106575 +106533-106575 +106533-106539 +106533-106537 +106534-106537 +106534 +106535-106537 +106536-106537 +106538-106539 +106539 +106541-106543 +106542-106543 +106544-106575 +106545-106575 +106546-106548 +106547-106548 +106549-106563 +106549-106555 +106549-106550 +106552-106555 +106553-106555 +106554-106555 +106556-106563 +106557-106563 +106559-106560 +106561-106563 +106562-106563 +106563 +106564-106575 +106564-106571 +106564-106568 +106567-106568 +106569-106571 +106570-106571 +106570-106571 +106572-106575 +106573-106575 +106574-106575 +106576-106606 +106577-106606 +106579-106593 +106579-106581 +106580-106581 +106582-106593 +106582-106583 +106584-106587 +106585-106587 +106585-106586 +106589-106593 +106590-106593 +106591-106593 +106591-106592 +106594-106606 +106595-106606 +106595-106597 +106596-106597 +106598-106606 +106598-106601 +106600-106601 +106602-106606 +106603-106606 +106605-106606 +106607-106664 +106607-106664 +106608-106664 +106608-106625 +106608-106612 +106609-106612 +106609-106610 +106611-106612 +106613-106616 +106614-106616 +106614-106616 +106615-106616 +106617-106620 +106618-106620 +106618-106620 +106619-106620 +106621-106625 +106622-106625 +106622-106625 +106623-106625 +106624-106625 +106626-106664 +106626-106629 +106627-106629 +106628-106629 +106631-106664 +106631-106641 +106631-106632 +106634-106637 +106634-106636 +106635-106636 +106639-106641 +106639-106640 +106642-106664 +106642-106647 +106643-106647 +106643-106644 +106645-106647 +106646-106647 +106648-106664 +106649-106664 +106649-106650 +106653-106654 +106655-106664 +106656-106659 +106656-106657 +106661-106664 +106661-106663 +106662-106663 +106665-106695 +106665-106695 +106665-106668 +106667-106668 +106669-106673 +106671-106673 +106672-106673 +106674-106695 +106674-106685 +106675-106678 +106675-106677 +106676-106677 +106682-106685 +106683-106685 +106686-106695 +106687-106695 +106689-106691 +106689-106690 +106692-106695 +106692-106694 +106693-106694 +106696-106709 +106696-106709 +106697-106709 +106697-106700 +106699-106700 +106700 +106703-106709 +106705-106709 +106706-106709 +106707-106709 +106708-106709 +106710-106749 +106710-106749 +106711-106749 +106711-106724 +106711-106715 +106711-106713 +106712-106713 +106716-106724 +106717-106724 +106719-106724 +106719-106720 +106721-106724 +106722-106724 +106723-106724 +106725-106749 +106726-106749 +106726-106737 +106726-106729 +106727-106729 +106728-106729 +106731-106737 +106732-106737 +106733-106737 +106734-106735 +106736-106737 +106738-106749 +106739-106749 +106739-106740 +106742-106745 +106743-106745 +106744-106745 +106746-106749 +106747-106749 +106748-106749 +106750-106778 +106750-106778 +106751-106778 +106751-106752 +106751-106752 +106753-106770 +106754-106770 +106756-106770 +106757-106770 +106758-106762 +106758-106761 +106759-106761 +106760-106761 +106764-106770 +106765-106766 +106767-106770 +106768-106770 +106769-106770 +106771-106774 +106772-106774 +106773-106774 +106775-106777 +106776-106777 +106779-106794 +106779-106794 +106780-106794 +106782-106794 +106783-106794 +106784-106785 +106786-106794 +106786-106788 +106787-106788 +106788 +106789-106794 +106790-106794 +106791-106794 +106792-106794 +106793-106794 +106795-106838 +106795-106838 +106797-106800 +106798-106800 +106799-106800 +106801-106838 +106802-106838 +106803-106808 +106803-106805 +106804-106805 +106806-106808 +106806-106807 +106809-106838 +106810-106838 +106810-106813 +106811-106813 +106812-106813 +106813 +106814-106838 +106814-106829 +106814-106815 +106817-106818 +106818 +106819-106820 +106821-106829 +106821-106822 +106824-106826 +106825-106826 +106827-106829 +106828-106829 +106831-106838 +106832-106834 +106832-106833 +106836-106838 +106836-106837 +106839-106855 +106839-106855 +106840-106855 +106840-106850 +106841-106850 +106843-106850 +106844-106850 +106845-106850 +106845-106847 +106846-106847 +106848-106850 +106849-106850 +106851-106855 +106851 +106852-106855 +106853-106855 +106854-106855 +106856-106864 +106856-106864 +106857-106864 +106857-106861 +106857-106858 +106859-106860 +106862-106864 +106863-106864 +106865-106880 +106865-106880 +106866-106880 +106867-106869 +106868-106869 +106870-106873 +106874-106880 +106875-106880 +106877-106880 +106878-106880 +106879-106880 +106881-106900 +106881-106900 +106882-106900 +106882-106890 +106882-106883 +106885-106890 +106887-106889 +106888-106889 +106891-106900 +106892-106900 +106892-106896 +106892-106893 +106894-106895 +106897-106900 +106898-106900 +106899-106900 +106901-106915 +106901-106915 +106902-106915 +106902-106904 +106903-106904 +106906-106915 +106907-106915 +106907-106909 +106908-106909 +106910-106915 +106910-106911 +106913-106915 +106914-106915 +106916-106936 +106916-106936 +106917-106936 +106917-106927 +106918-106927 +106919-106927 +106921-106926 +106922-106926 +106923-106926 +106924-106926 +106925-106926 +106928-106936 +106929-106936 +106930-106931 +106932-106936 +106933-106936 +106933-106934 +106937-106969 +106937-106969 +106938-106969 +106940-106958 +106940-106955 +106941-106955 +106941-106947 +106942-106947 +106942-106946 +106943-106944 +106945-106946 +106948-106950 +106949-106950 +106951-106955 +106952-106955 +106953-106955 +106954-106955 +106957-106958 +106959-106969 +106960-106969 +106960-106963 +106960-106961 +106962-106963 +106964-106969 +106965-106969 +106965 +106966-106969 +106967-106969 +106968-106969 +106969 +106970-106974 +106970-106974 +106971-106974 +106973-106974 +106975-106992 +106975-106992 +106976-106992 +106976-106977 +106979-106986 +106980-106986 +106981-106986 +106982-106983 +106985-106986 +106987-106992 +106988-106992 +106990-106991 +106993-107004 +106993-107004 +106994-107004 +106997-107004 +106998-107004 +106998-107001 +106998-107000 +107002-107004 +107005-107037 +107005-107037 +107006-107037 +107006-107017 +107006-107012 +107008-107009 +107010-107012 +107011-107012 +107013-107017 +107014-107017 +107014-107015 +107018-107037 +107019-107037 +107019-107022 +107020-107022 +107021-107022 +107023-107024 +107026-107028 +107027-107028 +107029-107037 +107030-107037 +107031-107037 +107032-107037 +107032-107033 +107034-107037 +107035-107037 +107035-107036 +107038-107044 +107038-107044 +107038-107039 +107038-107039 +107040-107041 +107043-107044 +107045-107055 +107045-107055 +107045-107048 +107045-107046 +107049-107055 +107049-107052 +107050-107052 +107053-107055 +107054-107055 +107056-107065 +107056-107065 +107056-107058 +107057-107058 +107059-107062 +107060-107062 +107061-107062 +107063-107065 +107064-107065 +107066-107091 +107066-107091 +107067-107091 +107068-107069 +107070-107091 +107071-107091 +107072-107091 +107072-107074 +107072-107073 +107075-107079 +107076-107079 +107077-107079 +107078-107079 +107080-107091 +107081-107091 +107082-107083 +107085-107091 +107086-107091 +107089-107091 +107090-107091 +107092-107100 +107092-107100 +107092-107098 +107093-107098 +107093-107094 +107096-107098 +107097-107098 +107099-107100 +107101-107125 +107101-107125 +107101-107102 +107103-107105 +107103-107105 +107104-107105 +107106-107107 +107106-107107 +107108-107110 +107108-107110 +107109-107110 +107111-107113 +107111-107112 +107114-107118 +107114-107115 +107116-107118 +107117-107118 +107119-107125 +107119-107123 +107120-107123 +107121-107123 +107122-107123 +107126-107136 +107126-107136 +107127-107136 +107127-107130 +107133-107135 +107134-107135 +107137-107215 +107137-107215 +107138-107215 +107139-107215 +107140-107215 +107141-107215 +107141-107206 +107143-107145 +107146-107163 +107147-107163 +107147-107148 +107148 +107149-107163 +107150-107163 +107151-107163 +107151-107155 +107151-107152 +107153-107155 +107154-107155 +107156-107163 +107156-107160 +107156-107157 +107158-107159 +107161-107163 +107162-107163 +107164-107206 +107165-107206 +107165-107166 +107167-107206 +107168-107206 +107169-107170 +107171-107189 +107172-107189 +107173-107177 +107173-107174 +107175-107177 +107176-107177 +107179-107189 +107179-107182 +107180-107182 +107181-107182 +107183-107189 +107184-107189 +107184-107185 +107186-107189 +107187-107189 +107188-107189 +107190-107206 +107191-107206 +107192-107202 +107193-107198 +107194-107198 +107195-107198 +107196-107198 +107197-107198 +107199-107202 +107200-107202 +107201-107202 +107203-107206 +107204-107206 +107205-107206 +107207-107215 +107208-107215 +107209-107215 +107210-107215 +107211-107215 +107211-107212 +107213-107215 +107214-107215 +107216-107234 +107216-107234 +107217-107222 +107218-107222 +107218-107219 +107220-107222 +107221-107222 +107224-107234 +107225-107234 +107226-107234 +107228-107234 +107228-107229 +107232-107234 +107233-107234 +107235-107240 +107235-107240 +107235 +107239-107240 +107241-107264 +107241-107264 +107242-107264 +107242 +107243-107264 +107243-107250 +107243-107246 +107244-107246 +107244-107245 +107247-107250 +107248-107250 +107248-107249 +107251-107252 +107254-107264 +107255-107264 +107256-107264 +107257-107264 +107258-107264 +107259-107264 +107259-107261 +107260-107261 +107262-107264 +107263-107264 +107265-107269 +107265-107269 +107266-107269 +107266-107267 +107270-107280 +107270-107280 +107271-107280 +107271-107274 +107272-107274 +107275-107280 +107275-107276 +107277-107278 +107281-107287 +107281-107287 +107282-107287 +107282-107284 +107282-107284 +107283-107284 +107285-107286 +107288-107300 +107288-107300 +107288 +107289-107291 +107289-107290 +107292-107300 +107293-107300 +107294-107300 +107295-107300 +107295-107296 +107297-107300 +107298-107300 +107301-107338 +107301-107338 +107302-107338 +107302-107334 +107302-107303 +107304-107307 +107308-107318 +107309-107318 +107311 +107313-107318 +107313-107318 +107314-107318 +107315-107318 +107316-107318 +107317-107318 +107319-107322 +107319-107321 +107320-107321 +107323-107334 +107323-107327 +107323-107325 +107324-107325 +107326-107327 +107328-107334 +107329-107334 +107329-107330 +107331-107334 +107332-107334 +107333-107334 +107335-107338 +107335-107338 +107336-107338 +107336-107337 +107339-107377 +107339-107377 +107340-107377 +107340-107342 +107341-107342 +107343-107344 +107346-107377 +107346-107347 +107350-107377 +107350-107353 +107351-107353 +107352-107353 +107354-107377 +107356-107360 +107357-107360 +107358-107360 +107359-107360 +107361-107366 +107362-107366 +107363-107366 +107364-107366 +107365-107366 +107367-107377 +107368-107377 +107369-107377 +107370-107377 +107371-107377 +107373-107377 +107376-107377 +107378-107392 +107378-107392 +107379-107392 +107379-107387 +107379-107387 +107379-107383 +107379-107380 +107381-107383 +107382-107383 +107384-107387 +107384-107386 +107385-107386 +107390-107391 +107392 +107393-107402 +107393-107402 +107393-107397 +107393-107394 +107395-107397 +107396-107397 +107398-107402 +107398-107399 +107401-107402 +107403-107430 +107403-107430 +107403 +107404-107408 +107405-107406 +107407-107408 +107407-107408 +107409-107430 +107410-107430 +107411-107430 +107412-107414 +107413-107414 +107417-107430 +107418-107430 +107418-107419 +107420-107430 +107421-107430 +107422-107430 +107423-107430 +107423-107424 +107425-107430 +107425-107427 +107426-107427 +107428-107430 +107429-107430 +107431-107434 +107431-107434 +107432-107433 +107435-107437 +107435-107437 +107437 +107438-107443 +107438-107443 +107438-107440 +107439-107440 +107442-107443 +107444-107446 +107444-107446 +107444-107445 +107447-107465 +107447-107465 +107447-107448 +107449-107465 +107450-107465 +107450-107451 +107452-107456 +107452-107453 +107454-107456 +107455-107456 +107457-107458 +107459-107461 +107460-107461 +107463-107465 +107464-107465 +107466-107485 +107466-107485 +107467-107485 +107467-107474 +107467-107470 +107468-107470 +107469-107470 +107471-107474 +107472-107474 +107473-107474 +107476-107482 +107476-107478 +107477-107478 +107479-107482 +107480-107482 +107481-107482 +107483-107485 +107484-107485 +107486-107510 +107486-107510 +107486 +107487-107488 +107489-107510 +107489-107501 +107489-107501 +107489-107491 +107492-107493 +107494-107495 +107496-107497 +107498-107499 +107500-107501 +107502-107508 +107502-107504 +107503-107504 +107505-107508 +107506-107508 +107507-107508 +107509-107510 +107511-107523 +107511-107523 +107511-107521 +107512-107519 +107512-107513 +107514-107515 +107516-107517 +107518-107519 +107520-107521 +107524-107531 +107524-107531 +107525-107531 +107525-107528 +107526-107528 +107527-107528 +107530-107531 +107532-107550 +107532-107550 +107533-107550 +107534-107535 +107537-107550 +107538-107550 +107541-107544 +107542-107544 +107542-107543 +107545-107550 +107545-107548 +107545-107546 +107549-107550 +107550 +107551-107563 +107551-107563 +107552-107555 +107553-107555 +107553-107554 +107556-107563 +107557-107563 +107559-107563 +107559-107561 +107559-107560 +107564-107569 +107564-107569 +107565-107566 +107567-107569 +107568-107569 +107570-107583 +107570-107583 +107570-107574 +107570-107571 +107572-107574 +107573-107574 +107576-107583 +107576-107579 +107576-107577 +107577 +107578-107579 +107579 +107580-107583 +107580-107581 +107581 +107582-107583 +107583 +107584-107589 +107584-107589 +107586-107589 +107587-107589 +107588-107589 +107590-107596 +107590-107596 +107591-107596 +107593-107596 +107594-107596 +107595-107596 +107597-107636 +107597-107636 +107598-107636 +107598 +107599-107623 +107600-107601 +107602-107623 +107603-107623 +107603-107606 +107604-107606 +107605-107606 +107607-107623 +107607-107610 +107608-107610 +107609-107610 +107611-107612 +107615-107619 +107616-107619 +107617-107619 +107618-107619 +107620-107623 +107621-107623 +107622-107623 +107624-107636 +107625-107636 +107625-107627 +107626-107627 +107628-107631 +107628-107629 +107630-107631 +107632-107635 +107633-107635 +107634-107635 +107637-107650 +107637-107650 +107638-107641 +107639-107641 +107640-107641 +107643-107650 +107644-107650 +107644-107645 +107646-107650 +107647-107650 +107648-107650 +107649-107650 +107651-107655 +107651-107655 +107652-107655 +107652-107653 +107654-107655 +107655 +107656-107669 +107656-107669 +107657-107669 +107658-107659 +107660-107669 +107660-107662 +107661-107662 +107663-107669 +107663-107664 +107665-107666 +107667-107669 +107668-107669 +107670-107686 +107670-107686 +107671-107686 +107671-107673 +107672-107673 +107675-107677 +107676-107677 +107678-107686 +107679-107686 +107680-107686 +107680-107681 +107682-107686 +107683-107686 +107684-107686 +107685-107686 +107687-107700 +107687-107700 +107688-107700 +107688-107692 +107689-107692 +107689-107691 +107690-107691 +107693-107694 +107695-107699 +107696-107699 +107697-107699 +107698-107699 +107700 +107701-107706 +107701-107706 +107702-107703 +107704-107706 +107705-107706 +107707-107712 +107707-107712 +107709-107712 +107710-107712 +107710-107711 +107713-107724 +107713-107724 +107713-107717 +107715-107717 +107716-107717 +107718-107724 +107719-107724 +107720-107724 +107721-107724 +107722-107724 +107723-107724 +107725-107734 +107725-107734 +107725-107730 +107726-107730 +107727-107730 +107727-107728 +107729-107730 +107731-107734 +107732-107734 +107733-107734 +107735-107754 +107735-107754 +107735-107745 +107735-107741 +107736-107741 +107736-107738 +107737-107738 +107739-107741 +107740-107741 +107742-107745 +107743-107745 +107744-107745 +107746-107754 +107747-107754 +107747-107752 +107747-107748 +107749-107752 +107749-107751 +107750-107751 +107753-107754 +107755-107762 +107755-107762 +107756-107758 +107757-107758 +107759-107762 +107760-107762 +107761-107762 +107763-107864 +107763-107864 +107764-107771 +107764-107765 +107766-107771 +107767-107771 +107767-107769 +107768-107769 +107770-107771 +107773-107775 +107773-107774 +107776-107813 +107777-107791 +107777-107782 +107778-107782 +107778-107779 +107780-107782 +107781-107782 +107783-107791 +107784-107791 +107785-107791 +107786-107791 +107788-107791 +107789-107791 +107790-107791 +107792-107813 +107793-107813 +107793-107800 +107793-107794 +107795-107800 +107796-107800 +107798-107800 +107799-107800 +107801-107813 +107803-107813 +107804-107813 +107805-107813 +107806-107813 +107806-107807 +107808-107813 +107808-107809 +107810-107813 +107811-107813 +107812-107813 +107814-107864 +107815-107864 +107815-107823 +107815-107819 +107816-107819 +107817-107819 +107818-107819 +107820-107823 +107821-107823 +107822-107823 +107824-107864 +107825-107864 +107825-107827 +107826-107827 +107828-107839 +107829-107839 +107829-107830 +107831-107839 +107831-107839 +107832-107839 +107833-107839 +107834-107837 +107835-107837 +107836-107837 +107838-107839 +107840-107864 +107841-107864 +107842-107864 +107843-107864 +107843-107847 +107844-107847 +107845-107847 +107845-107846 +107848-107864 +107850-107864 +107850-107855 +107851-107855 +107851-107852 +107853-107855 +107854-107855 +107856-107864 +107857-107864 +107860-107864 +107861-107864 +107862-107864 +107863-107864 +107865-108006 +107865-108006 +107865-107866 +107867-107868 +107869-107872 +107870-107872 +107870-107871 +107875-108006 +107875-107876 +107877-107879 +107878-107879 +107880-108006 +107881-108006 +107882-107886 +107883-107886 +107884-107886 +107885-107886 +107887-107892 +107888-107892 +107889-107892 +107890-107892 +107891-107892 +107893-107899 +107895-107896 +107897-107899 +107898-107899 +107900-108006 +107900-107910 +107900-107904 +107900-107903 +107901-107903 +107902-107903 +107905-107910 +107906-107910 +107907-107910 +107908-107910 +107909-107910 +107911-107925 +107911-107913 +107912-107913 +107915-107920 +107916-107920 +107917-107920 +107918-107920 +107919-107920 +107921-107925 +107922-107925 +107923-107925 +107924-107925 +107926-108006 +107926-107927 +107929-108006 +107929-107943 +107929-107930 +107931-107943 +107932-107943 +107934-107940 +107935-107940 +107936-107940 +107937-107940 +107938-107940 +107939-107940 +107941-107943 +107942-107943 +107944-108006 +107944-107951 +107947-107951 +107948-107951 +107949-107951 +107950-107951 +107952-108006 +107953-108006 +107954-108006 +107955-108006 +107956-108006 +107957-108006 +107957-107970 +107957-107961 +107958-107961 +107959-107961 +107960-107961 +107962-107970 +107962-107963 +107965-107970 +107965-107966 +107967-107970 +107968-107970 +107969-107970 +107971-108006 +107971-107980 +107973-107980 +107973-107977 +107974-107977 +107975-107977 +107976-107977 +107978-107980 +107979-107980 +107982-108006 +107982-107983 +107985-108006 +107985-107993 +107986-107993 +107987-107993 +107987-107989 +107988-107989 +107990-107993 +107991-107993 +107992-107993 +107994-108006 +107994-107998 +107994-107995 +107996-107998 +107997-107998 +107999-108006 +107999-108002 +107999-108000 +108001-108002 +108003-108006 +108003-108004 +108005-108006 +108007-108025 +108007-108025 +108007-108014 +108007-108008 +108009-108013 +108009-108010 +108011-108013 +108012-108013 +108015-108019 +108016-108019 +108018-108019 +108020-108025 +108021-108025 +108021-108022 +108023-108024 +108026-108082 +108026-108082 +108027-108082 +108027-108034 +108029-108034 +108030-108034 +108031-108034 +108031-108032 +108033-108034 +108035-108047 +108035-108041 +108037-108041 +108038-108041 +108039-108041 +108040-108041 +108043-108047 +108045-108047 +108045-108046 +108049-108082 +108050-108082 +108050-108055 +108050-108051 +108052-108054 +108053-108054 +108056-108082 +108057-108082 +108057-108070 +108057-108058 +108060-108061 +108062-108063 +108064-108070 +108065-108070 +108066-108070 +108067-108070 +108068-108070 +108069-108070 +108071-108082 +108071-108072 +108073-108082 +108073-108077 +108074-108077 +108075-108077 +108076-108077 +108078-108082 +108079-108082 +108080-108082 +108081-108082 +108083-108149 +108083-108149 +108084-108149 +108084-108096 +108087-108089 +108087 +108088-108089 +108090-108091 +108092-108096 +108093-108096 +108094-108096 +108095-108096 +108097-108149 +108098-108149 +108100-108105 +108101-108105 +108102-108105 +108103-108105 +108104-108105 +108106-108108 +108107-108108 +108109-108117 +108111-108115 +108112-108113 +108114-108115 +108116-108117 +108118-108149 +108119-108149 +108120-108149 +108121-108122 +108123-108149 +108123 +108124-108125 +108125 +108126-108149 +108127-108149 +108129-108149 +108130-108149 +108131-108149 +108132-108149 +108132-108144 +108132-108135 +108133-108135 +108134-108135 +108136-108144 +108137-108144 +108138-108144 +108139-108144 +108140-108144 +108141-108144 +108142-108144 +108143-108144 +108145-108149 +108145-108146 +108148-108149 +108150-108206 +108150-108206 +108150-108156 +108152-108154 +108153-108154 +108155-108156 +108157-108206 +108158-108206 +108159-108164 +108160-108164 +108161-108164 +108162-108164 +108163-108164 +108165-108168 +108166-108168 +108167-108168 +108169-108206 +108170-108206 +108170-108172 +108171-108172 +108173-108206 +108175-108206 +108175-108176 +108177-108206 +108177-108178 +108181-108190 +108182-108190 +108182-108185 +108183-108185 +108184-108185 +108186-108190 +108187-108190 +108189-108190 +108191-108206 +108192-108206 +108192-108195 +108193-108195 +108194-108195 +108196-108206 +108196-108197 +108198-108206 +108199-108206 +108200-108206 +108200-108202 +108201-108202 +108203-108206 +108204-108206 +108205-108206 +108207-108272 +108207-108272 +108208-108272 +108210-108237 +108210-108212 +108211-108212 +108213-108237 +108215-108216 +108217-108237 +108218-108237 +108219-108225 +108220-108225 +108221-108225 +108222-108225 +108223-108225 +108223-108224 +108226-108228 +108227-108228 +108229-108237 +108231-108237 +108231-108233 +108232-108233 +108234-108237 +108235-108237 +108236-108237 +108238-108272 +108238-108250 +108241-108250 +108241-108247 +108241-108243 +108242-108243 +108244-108247 +108245-108247 +108246-108247 +108248-108250 +108249-108250 +108252-108272 +108253-108254 +108256-108257 +108258-108272 +108258-108259 +108262-108272 +108263-108272 +108264-108272 +108264-108266 +108265-108266 +108267-108272 +108268-108272 +108269-108270 +108271-108272 +108273-108328 +108273-108328 +108274-108328 +108275-108294 +108277-108294 +108277-108278 +108280-108294 +108281-108294 +108282-108285 +108283-108285 +108284-108285 +108286-108294 +108287-108294 +108290-108292 +108291-108292 +108293-108294 +108295-108328 +108296-108328 +108297-108299 +108298-108299 +108300-108310 +108301-108310 +108301-108302 +108303-108310 +108304-108310 +108305-108310 +108306-108310 +108307-108310 +108308-108310 +108309-108310 +108311-108328 +108312-108328 +108313-108328 +108313-108316 +108314-108316 +108315-108316 +108317-108328 +108318-108328 +108318-108319 +108321-108327 +108322-108327 +108323-108327 +108324-108327 +108325-108327 +108326-108327 +108329-108336 +108329-108336 +108331-108336 +108332-108336 +108335-108336 +108337-108362 +108337-108362 +108338-108362 +108338-108342 +108339-108342 +108339-108341 +108340-108341 +108343-108362 +108344-108362 +108344-108345 +108346-108347 +108349-108362 +108349 +108350-108362 +108351-108362 +108352-108362 +108352-108354 +108353-108354 +108355-108362 +108356-108362 +108357-108362 +108358-108362 +108359-108362 +108359-108360 +108361-108362 +108363-108387 +108363-108387 +108364-108387 +108364-108370 +108365-108370 +108366-108368 +108366-108367 +108369-108370 +108371-108387 +108371-108372 +108374-108384 +108374-108378 +108374-108376 +108375-108376 +108377-108378 +108379-108384 +108380-108384 +108381-108382 +108383-108384 +108384 +108385-108387 +108386-108387 +108388-108476 +108388-108476 +108388-108414 +108388 +108389-108414 +108390-108414 +108392-108414 +108393-108414 +108395-108400 +108396-108400 +108397-108400 +108398-108400 +108399-108400 +108401-108414 +108401-108405 +108402-108405 +108403-108405 +108404-108405 +108406-108410 +108407-108410 +108408-108410 +108409-108410 +108411-108414 +108412-108414 +108413-108414 +108415-108476 +108416-108476 +108416-108424 +108416-108417 +108419-108423 +108420-108423 +108421-108423 +108422-108423 +108425-108476 +108426-108476 +108426-108427 +108428-108476 +108429-108476 +108429-108437 +108430-108437 +108432-108437 +108433-108437 +108434-108437 +108435-108437 +108436-108437 +108438-108476 +108438-108439 +108442-108443 +108444-108455 +108444-108450 +108445-108450 +108446-108450 +108447-108450 +108448-108450 +108449-108450 +108451-108455 +108452-108455 +108453-108455 +108454-108455 +108456-108476 +108458-108476 +108459-108476 +108459-108460 +108461-108476 +108461-108462 +108465-108476 +108466-108476 +108467-108476 +108468-108476 +108469-108476 +108470-108476 +108470-108471 +108472-108476 +108473-108476 +108475-108476 +108477-108518 +108477-108518 +108478-108518 +108478-108508 +108478-108488 +108481-108488 +108481-108482 +108483-108488 +108484-108488 +108485-108488 +108486-108488 +108487-108488 +108491-108492 +108493-108497 +108495-108497 +108496-108497 +108498-108508 +108499-108508 +108499-108504 +108500-108504 +108500-108501 +108502-108504 +108503-108504 +108505-108508 +108507-108508 +108509-108518 +108510-108518 +108512-108514 +108513-108514 +108515-108518 +108517-108518 +108519-108531 +108519-108531 +108519-108524 +108520-108524 +108520-108521 +108522-108524 +108523-108524 +108526-108527 +108528-108531 +108530-108531 +108532-108559 +108532-108559 +108533-108559 +108537-108559 +108537-108538 +108539-108541 +108540-108541 +108542-108559 +108543-108559 +108544-108559 +108545-108559 +108545-108549 +108546-108547 +108548-108549 +108550-108559 +108550-108554 +108552-108554 +108553-108554 +108554 +108555-108559 +108556-108559 +108556-108557 +108558-108559 +108560-108603 +108560-108603 +108563-108603 +108563-108569 +108564-108569 +108565-108569 +108566-108569 +108567-108569 +108568-108569 +108570-108572 +108570-108571 +108573-108603 +108573-108580 +108575-108580 +108576-108580 +108577-108580 +108578-108580 +108579-108580 +108581-108603 +108582-108603 +108584-108603 +108584-108585 +108586-108603 +108586-108587 +108588-108590 +108589-108590 +108591-108598 +108591-108595 +108592-108595 +108593-108595 +108594-108595 +108596-108598 +108597-108598 +108600-108603 +108601-108603 +108602-108603 +108604-108659 +108604-108659 +108604-108618 +108604-108612 +108605-108612 +108606-108607 +108608-108612 +108609-108612 +108610-108612 +108611-108612 +108613-108618 +108614-108617 +108615-108617 +108616-108617 +108619-108659 +108619-108624 +108620-108624 +108621-108622 +108623-108624 +108627-108631 +108628-108631 +108629-108631 +108630-108631 +108632-108638 +108633-108638 +108634-108638 +108634-108636 +108635-108636 +108637-108638 +108639-108659 +108641-108651 +108642-108651 +108643-108644 +108645-108651 +108646-108651 +108647-108648 +108649-108651 +108650-108651 +108653-108655 +108654-108655 +108656-108659 +108657-108659 +108658-108659 +108660-108676 +108660-108676 +108661-108676 +108661-108664 +108662-108664 +108663-108664 +108665-108667 +108665-108666 +108668-108676 +108669-108670 +108671-108672 +108673-108676 +108674-108676 +108675-108676 +108677-108684 +108677-108684 +108677-108678 +108680-108684 +108681-108684 +108682-108684 +108683-108684 +108685-108697 +108685-108697 +108686-108697 +108686 +108687-108697 +108688-108697 +108688-108690 +108689-108690 +108692-108694 +108693-108694 +108695-108697 +108696-108697 +108698-108712 +108698-108712 +108698-108704 +108699-108704 +108700-108704 +108700-108701 +108702-108704 +108703-108704 +108706-108707 +108708-108709 +108711-108712 +108713-108748 +108713-108748 +108714-108748 +108715-108748 +108715-108720 +108715-108716 +108717-108720 +108718-108720 +108719-108720 +108721-108748 +108721-108731 +108724-108725 +108726-108731 +108727-108731 +108728-108731 +108729-108731 +108732-108748 +108732-108733 +108735-108738 +108736-108738 +108737-108738 +108739-108748 +108740-108748 +108740-108744 +108741-108742 +108746-108748 +108747-108748 +108749-108764 +108749-108764 +108750-108764 +108752-108753 +108754-108760 +108754-108755 +108756-108760 +108761-108764 +108762-108764 +108763-108764 +108765-108808 +108765-108808 +108767-108768 +108769-108789 +108769-108776 +108770-108772 +108771-108772 +108773-108776 +108774-108776 +108775-108776 +108777-108789 +108778-108789 +108779-108789 +108779-108780 +108781-108789 +108782-108789 +108783-108784 +108785-108789 +108786-108789 +108787-108789 +108788-108789 +108790-108808 +108791-108808 +108791-108802 +108793-108802 +108793-108795 +108794-108795 +108796-108798 +108797-108798 +108799-108800 +108801-108802 +108803-108808 +108804-108808 +108804 +108805-108808 +108806-108808 +108806-108807 +108809-108834 +108809-108834 +108810-108834 +108811-108817 +108812-108817 +108812-108814 +108813-108814 +108815-108817 +108816-108817 +108817 +108818-108823 +108818-108819 +108824-108828 +108824-108825 +108826-108828 +108827-108828 +108829-108834 +108830-108834 +108831-108832 +108835-108843 +108835-108843 +108835-108840 +108836-108840 +108836-108838 +108837-108838 +108842-108843 +108844-108854 +108844-108854 +108845-108854 +108845-108847 +108846-108847 +108848-108854 +108849-108854 +108850-108854 +108852-108854 +108853-108854 +108855-108871 +108855-108871 +108856-108871 +108856-108864 +108856-108859 +108857-108859 +108858-108859 +108861-108864 +108862-108864 +108863-108864 +108865-108866 +108869-108871 +108870-108871 +108872-108874 +108872-108874 +108873-108874 +108875-108903 +108875-108903 +108875-108878 +108876-108878 +108877-108878 +108880-108881 +108883-108893 +108883-108885 +108884-108885 +108886-108888 +108887-108888 +108890-108893 +108892-108893 +108894-108903 +108894-108896 +108895-108896 +108898-108901 +108899-108901 +108900-108901 +108902-108903 +108904-108925 +108904-108925 +108905-108925 +108905-108914 +108905-108914 +108906-108914 +108907-108914 +108908-108914 +108910-108914 +108910-108911 +108912-108914 +108913-108914 +108916-108919 +108917-108919 +108918-108919 +108920-108925 +108921-108923 +108921-108922 +108924-108925 +108926-108934 +108926-108934 +108926-108927 +108926-108927 +108929-108930 +108931-108934 +108932-108934 +108933-108934 +108935-108944 +108935-108944 +108935-108936 +108935-108936 +108937-108939 +108938-108939 +108940-108944 +108941-108944 +108943-108944 +108945-108957 +108945-108957 +108945-108951 +108945-108946 +108945-108946 +108948-108949 +108950-108951 +108952-108957 +108953-108957 +108956-108957 +108958-108967 +108958-108967 +108958-108959 +108958-108959 +108962-108964 +108963-108964 +108965-108967 +108966-108967 +108968-108988 +108968-108988 +108968-108969 +108968-108969 +108971-108972 +108973-108976 +108974-108976 +108974-108975 +108977-108988 +108978-108981 +108978-108979 +108980-108981 +108981 +108983-108988 +108983-108985 +108984-108985 +108986-108988 +108987-108988 +108989-109009 +108989-109009 +108989-108991 +108990-108991 +108992-108993 +108995-109000 +108996-109000 +108996-108997 +108998-109000 +108999-109000 +109001-109009 +109002-109009 +109003-109009 +109003-109004 +109006-109009 +109007-109009 +109008-109009 +109010-109013 +109010-109013 +109010-109012 +109010-109011 +109014-109023 +109014-109023 +109015-109023 +109015-109019 +109015-109016 +109016 +109018-109019 +109020-109023 +109021-109023 +109024-109041 +109024-109041 +109024-109025 +109024-109025 +109026-109030 +109026-109027 +109028-109030 +109029-109030 +109031-109032 +109034-109041 +109035-109041 +109036-109041 +109036-109037 +109040-109041 +109042-109078 +109042-109078 +109042-109043 +109045-109049 +109046-109047 +109048-109049 +109050-109078 +109050-109071 +109052-109054 +109053-109054 +109055-109071 +109056-109071 +109056-109057 +109060-109062 +109061-109062 +109063-109071 +109064-109071 +109064-109067 +109065-109067 +109066-109067 +109068-109071 +109068-109069 +109072-109078 +109073-109078 +109075-109078 +109076-109078 +109077-109078 +109079-109087 +109079-109087 +109079-109080 +109082-109084 +109083-109084 +109085-109087 +109085-109086 +109088-109102 +109088-109102 +109088-109090 +109089-109090 +109092-109093 +109094-109095 +109096-109102 +109097-109102 +109099-109102 +109100-109101 +109103-109147 +109103-109147 +109103-109106 +109104-109106 +109104-109105 +109109-109147 +109109-109119 +109110-109119 +109111-109119 +109111-109117 +109111-109112 +109113-109115 +109114-109115 +109116-109117 +109118-109119 +109120-109147 +109122-109123 +109124-109126 +109125-109126 +109127-109136 +109128-109136 +109128-109131 +109129-109131 +109130-109131 +109132-109136 +109133-109136 +109134-109136 +109135-109136 +109137-109147 +109138-109147 +109138-109143 +109139-109143 +109140-109143 +109140-109142 +109141-109142 +109144-109147 +109146-109147 +109148-109152 +109148-109152 +109150-109152 +109151-109152 +109153-109182 +109153-109182 +109155-109182 +109155-109178 +109155-109158 +109156-109158 +109157-109158 +109159-109173 +109160-109173 +109160-109163 +109161-109163 +109162-109163 +109164-109173 +109164-109167 +109164-109165 +109168-109171 +109169-109171 +109170-109171 +109172-109173 +109174-109178 +109175-109178 +109176-109178 +109177-109178 +109179-109182 +109180-109182 +109181-109182 +109183-109194 +109183-109194 +109184-109185 +109186-109190 +109187-109190 +109188-109190 +109189-109190 +109191-109194 +109195-109220 +109195-109220 +109197-109203 +109197-109200 +109198-109200 +109199-109200 +109201-109203 +109202-109203 +109204-109220 +109206-109207 +109208-109210 +109209-109210 +109211-109220 +109212-109220 +109212-109213 +109214-109220 +109215-109220 +109216-109220 +109217-109220 +109218-109220 +109219-109220 +109221-109237 +109221-109237 +109222-109237 +109224-109237 +109225-109237 +109226-109227 +109228-109237 +109229-109237 +109230-109233 +109231-109233 +109232-109233 +109234-109237 +109235-109237 +109236-109237 +109238-109246 +109238-109246 +109240-109246 +109240-109244 +109241-109244 +109242-109244 +109243-109244 +109245-109246 +109247-109259 +109247-109259 +109248-109259 +109248-109251 +109249-109251 +109249-109250 +109252-109253 +109254-109259 +109255-109259 +109256-109259 +109256-109258 +109257-109258 +109260-109282 +109260-109282 +109261-109282 +109261-109266 +109262-109266 +109263-109264 +109265-109266 +109267-109282 +109267 +109268-109282 +109268-109274 +109269-109274 +109269-109273 +109270-109273 +109271-109273 +109272-109273 +109275-109282 +109276-109282 +109277-109282 +109277-109279 +109278-109279 +109280-109281 +109283-109295 +109283-109295 +109284-109295 +109286-109295 +109286-109292 +109287-109292 +109288-109292 +109289-109292 +109291-109292 +109293-109295 +109294-109295 +109296-109301 +109296-109301 +109296-109297 +109298-109301 +109299-109301 +109300-109301 +109302-109305 +109302-109305 +109303-109305 +109304-109305 +109306-109309 +109306-109309 +109306-109307 +109308-109309 +109310-109324 +109310-109324 +109310-109314 +109311-109312 +109313-109314 +109315-109324 +109316-109324 +109316-109317 +109318-109324 +109319-109324 +109319-109320 +109321-109324 +109322-109324 +109323-109324 +109325-109328 +109325-109328 +109326-109328 +109327-109328 +109329-109408 +109329-109408 +109329-109378 +109330-109331 +109333-109335 +109334-109335 +109336-109341 +109338-109341 +109339-109341 +109340-109341 +109342-109369 +109344-109363 +109345-109363 +109345-109348 +109346-109348 +109347-109348 +109349-109353 +109350-109353 +109351-109353 +109352-109353 +109354-109363 +109355-109363 +109356-109363 +109357-109363 +109358-109363 +109359-109363 +109359-109361 +109360-109361 +109362-109363 +109364-109369 +109365-109369 +109366-109369 +109366-109368 +109367-109368 +109370-109373 +109371-109373 +109372-109373 +109374-109378 +109374-109378 +109375-109378 +109376-109378 +109377-109378 +109379-109408 +109380-109408 +109380-109382 +109381-109382 +109384-109385 +109386-109400 +109387-109389 +109387-109388 +109391-109400 +109392-109400 +109392-109393 +109394-109400 +109395-109400 +109396-109400 +109396-109397 +109398-109400 +109399-109400 +109401-109408 +109402-109408 +109403-109408 +109405-109406 +109407-109408 +109409-109440 +109409-109440 +109410-109440 +109412-109416 +109413-109416 +109414-109416 +109415-109416 +109417-109426 +109418-109419 +109420-109422 +109421-109422 +109423-109426 +109424-109426 +109425-109426 +109427-109440 +109428-109440 +109431-109440 +109432-109440 +109432-109433 +109433 +109434-109440 +109434-109436 +109435-109436 +109437-109440 +109438-109440 +109439-109440 +109441-109474 +109441-109474 +109442-109474 +109442-109455 +109442-109443 +109445-109448 +109446-109448 +109447-109448 +109451-109455 +109452-109455 +109452-109453 +109454-109455 +109456-109474 +109457-109474 +109457-109459 +109458-109459 +109460-109466 +109460-109462 +109461-109462 +109463-109466 +109464-109466 +109465-109466 +109468-109474 +109469-109474 +109473-109474 +109475-109520 +109475-109520 +109476-109520 +109477-109478 +109480-109520 +109480-109484 +109480-109481 +109483-109484 +109485-109520 +109486-109520 +109488-109490 +109489-109490 +109491-109493 +109492-109493 +109494-109520 +109494-109498 +109495-109498 +109496-109498 +109496 +109497-109498 +109499-109520 +109500-109520 +109501-109503 +109502-109503 +109504-109520 +109504-109511 +109505-109511 +109505-109506 +109507-109511 +109509-109511 +109510-109511 +109512-109520 +109513-109520 +109514-109520 +109516-109520 +109517-109520 +109517-109518 +109519-109520 +109520 +109521-109557 +109521-109557 +109522-109557 +109522 +109525-109530 +109525-109527 +109526-109527 +109528-109530 +109529-109530 +109531-109557 +109532-109557 +109533-109534 +109536-109557 +109536-109542 +109536-109538 +109537-109538 +109539-109540 +109541-109542 +109542 +109544-109547 +109545-109547 +109546-109547 +109548-109557 +109549-109550 +109551-109554 +109552-109554 +109553-109554 +109555-109557 +109556-109557 +109558-109592 +109558-109592 +109559-109592 +109559-109570 +109559-109561 +109560-109561 +109563-109570 +109563-109564 +109565-109567 +109566-109567 +109568-109570 +109569-109570 +109571-109592 +109572-109592 +109572-109579 +109573-109579 +109574-109576 +109575-109576 +109577-109579 +109578-109579 +109580-109592 +109582-109592 +109583-109592 +109584-109592 +109587-109592 +109588-109592 +109589-109592 +109590-109592 +109591-109592 +109593-109631 +109593-109631 +109594-109631 +109595-109625 +109595-109601 +109596-109598 +109597-109598 +109600-109601 +109601 +109602-109607 +109603-109607 +109603-109605 +109603-109605 +109604-109605 +109606-109607 +109608-109625 +109609-109625 +109610-109611 +109613-109618 +109613-109615 +109614-109615 +109616-109618 +109617-109618 +109619-109625 +109620-109622 +109620-109621 +109623-109625 +109624-109625 +109624-109625 +109627-109631 +109629-109631 +109630-109631 +109632-109659 +109632-109659 +109632-109655 +109632-109638 +109633-109638 +109634-109638 +109636-109638 +109637-109638 +109639-109655 +109639-109641 +109643-109655 +109645-109655 +109646-109650 +109647-109650 +109648-109650 +109649-109650 +109652-109655 +109653-109655 +109654-109655 +109656-109659 +109657-109659 +109660-109668 +109660-109668 +109661-109668 +109661 +109663-109668 +109663-109665 +109664-109665 +109666-109668 +109667-109668 +109669-109685 +109669-109685 +109669-109678 +109669-109671 +109670-109671 +109673-109678 +109674-109678 +109675-109678 +109677-109678 +109680-109681 +109682-109685 +109683-109685 +109684-109685 +109686-109732 +109686-109732 +109686-109700 +109687-109690 +109688-109690 +109689-109690 +109691-109700 +109691-109696 +109692-109696 +109693-109694 +109695-109696 +109697-109699 +109698-109699 +109699 +109701-109732 +109702-109732 +109703-109732 +109704-109732 +109704-109706 +109704-109705 +109707-109710 +109708-109710 +109709-109710 +109711-109732 +109711-109715 +109712-109713 +109714-109715 +109717-109732 +109718-109732 +109719-109732 +109722-109732 +109722-109723 +109724-109732 +109725-109732 +109727-109732 +109728-109732 +109729-109732 +109730-109732 +109731-109732 +109733-109766 +109733-109766 +109734-109766 +109734-109741 +109734-109735 +109736-109737 +109739-109740 +109743-109766 +109743-109749 +109744-109749 +109744-109747 +109745-109747 +109746-109747 +109748-109749 +109751-109766 +109752-109753 +109755-109766 +109755-109759 +109755-109757 +109756-109757 +109758-109759 +109760-109766 +109763-109766 +109764-109766 +109765-109766 +109766 +109767-109833 +109767-109833 +109768-109833 +109768 +109769-109783 +109771-109783 +109772-109783 +109772-109775 +109773-109775 +109774-109775 +109776-109783 +109777-109783 +109778-109780 +109779-109780 +109781-109783 +109782-109783 +109784-109833 +109785-109833 +109785-109793 +109785-109786 +109788-109789 +109790-109793 +109791-109793 +109792-109793 +109794-109833 +109795-109833 +109795-109796 +109797-109833 +109798-109833 +109798-109799 +109800-109833 +109801-109833 +109801-109808 +109802-109808 +109802-109805 +109803-109805 +109803-109804 +109806-109808 +109807-109808 +109809-109811 +109810-109811 +109812-109815 +109813-109815 +109816-109833 +109817-109833 +109817-109819 +109817-109818 +109820-109833 +109821-109826 +109822-109823 +109825-109826 +109826 +109827-109833 +109828-109833 +109829-109833 +109830-109832 +109831-109832 +109834-109841 +109834-109841 +109835-109841 +109836-109837 +109838-109839 +109840-109841 +109842-109862 +109842-109862 +109843-109862 +109843 +109845-109853 +109846-109847 +109848-109850 +109849-109850 +109851-109853 +109852-109853 +109856-109859 +109856-109858 +109857-109858 +109860-109862 +109861-109862 +109863-109879 +109863-109879 +109864-109879 +109865-109867 +109866-109867 +109868-109879 +109869-109879 +109869-109874 +109869-109870 +109871-109874 +109871-109872 +109873-109874 +109875-109879 +109876-109879 +109878-109879 +109880-109901 +109880-109901 +109881-109901 +109881-109888 +109882-109888 +109883-109888 +109884-109885 +109886-109888 +109887-109888 +109889-109901 +109890-109901 +109891-109901 +109891-109892 +109893-109897 +109894-109897 +109894-109896 +109895-109896 +109898-109901 +109899-109901 +109900-109901 +109902-109910 +109902-109910 +109903-109910 +109905-109910 +109905-109907 +109906-109907 +109908-109910 +109909-109910 +109911-109950 +109911-109950 +109912-109950 +109912-109918 +109912-109913 +109915-109918 +109916-109917 +109919-109950 +109920-109950 +109921-109933 +109922-109933 +109922-109924 +109923-109924 +109925-109933 +109926-109933 +109926-109928 +109927-109928 +109929-109933 +109930-109933 +109931-109933 +109932-109933 +109934-109950 +109935-109950 +109935-109943 +109936-109943 +109936-109938 +109937-109938 +109940-109943 +109941-109943 +109942-109943 +109944-109950 +109945-109950 +109947-109950 +109948-109950 +109948-109949 +109951-109957 +109951-109957 +109952-109957 +109954-109957 +109955-109957 +109955-109956 +109958-109973 +109958-109973 +109959-109973 +109959-109963 +109960-109963 +109961-109963 +109961-109962 +109964-109973 +109964-109968 +109966-109968 +109967-109968 +109968 +109969-109973 +109970-109973 +109971-109973 +109971 +109972-109973 +109973 +109974-109998 +109974-109998 +109974-109975 +109977-109978 +109980-109985 +109981-109985 +109982-109985 +109983-109985 +109984-109985 +109986-109998 +109987-109998 +109988-109998 +109988-109991 +109990-109991 +109991 +109992-109998 +109993-109998 +109993-109994 +109996-109998 +109997-109998 +109999-110054 +109999-110054 +110000-110054 +110000-110046 +110000-110029 +110000-110006 +110003-110004 +110005-110006 +110007-110029 +110008-110029 +110010-110029 +110010-110011 +110012-110015 +110013-110015 +110014-110015 +110016-110029 +110017-110029 +110018-110029 +110019-110021 +110019-110020 +110023-110029 +110024-110025 +110026-110029 +110027-110029 +110027-110028 +110030-110046 +110030 +110031-110032 +110034-110035 +110036-110042 +110037-110042 +110038-110042 +110039-110042 +110039-110041 +110040-110041 +110043-110046 +110044-110046 +110045-110046 +110047-110054 +110048-110054 +110050-110054 +110051-110054 +110053-110054 +110055-110093 +110055-110093 +110056-110093 +110057-110075 +110057-110058 +110059-110060 +110062-110063 +110064-110075 +110065-110075 +110066-110075 +110067-110075 +110068-110075 +110070-110071 +110072-110075 +110073-110075 +110074-110075 +110076-110093 +110076-110078 +110077-110078 +110081-110093 +110082-110093 +110083-110093 +110083-110086 +110084-110086 +110085-110086 +110087-110093 +110088-110093 +110089-110093 +110090-110093 +110091-110093 +110092-110093 +110094-110111 +110094-110111 +110095-110111 +110095-110105 +110095-110100 +110096-110100 +110097-110100 +110097-110099 +110098-110099 +110101-110105 +110102-110105 +110102-110104 +110103-110104 +110107-110109 +110108-110109 +110110-110111 +110112-110157 +110112-110157 +110113-110157 +110114-110115 +110116-110118 +110117-110118 +110119-110125 +110120-110125 +110121-110125 +110121-110122 +110123-110125 +110124-110125 +110126-110130 +110127-110130 +110127-110128 +110129-110130 +110131-110157 +110132-110157 +110133-110157 +110134-110136 +110135-110136 +110138-110139 +110140-110145 +110141-110145 +110142-110145 +110142-110144 +110143-110144 +110146-110157 +110147-110157 +110148-110157 +110148-110152 +110149-110152 +110149-110151 +110150-110151 +110153-110157 +110154-110157 +110155-110157 +110156-110157 +110158-110186 +110158-110186 +110159-110186 +110159 +110161-110163 +110162-110163 +110165-110167 +110166-110167 +110168-110186 +110169-110186 +110169-110183 +110170-110183 +110171-110172 +110173-110180 +110174-110180 +110176-110180 +110176-110177 +110178-110180 +110179-110180 +110181-110183 +110182-110183 +110185-110186 +110187-110196 +110187-110196 +110188-110196 +110189-110196 +110189-110190 +110193-110196 +110194-110196 +110194-110195 +110197-110257 +110197-110257 +110198-110257 +110198-110202 +110200-110202 +110201-110202 +110203-110257 +110203-110257 +110203-110205 +110204-110205 +110206-110257 +110206-110245 +110206-110210 +110208-110210 +110209-110210 +110211-110245 +110212-110213 +110214-110234 +110214-110221 +110214-110216 +110215-110216 +110218-110221 +110219-110221 +110220-110221 +110222-110234 +110222-110225 +110223-110225 +110224-110225 +110226-110234 +110227-110234 +110227-110234 +110228-110234 +110228-110229 +110230-110234 +110231-110234 +110233-110234 +110235-110245 +110236-110245 +110237-110239 +110238-110239 +110240-110242 +110241-110242 +110243-110245 +110244-110245 +110246-110257 +110247-110257 +110247-110251 +110249-110251 +110250-110251 +110252-110257 +110253-110257 +110253-110255 +110256-110257 +110257 +110258-110268 +110258-110268 +110259-110268 +110260-110265 +110262-110263 +110264-110265 +110267-110268 +110267-110268 +110269-110287 +110269-110287 +110270-110287 +110270-110271 +110271 +110273-110287 +110276-110287 +110276-110277 +110278-110287 +110279-110287 +110281-110285 +110282-110285 +110282-110283 +110284-110285 +110286-110287 +110288-110305 +110288-110305 +110289-110305 +110289-110291 +110290-110291 +110295-110296 +110297-110305 +110298-110305 +110298-110299 +110302-110305 +110303-110305 +110304-110305 +110306-110317 +110306-110317 +110307-110317 +110310-110317 +110311-110317 +110312-110317 +110313-110317 +110314-110317 +110315-110317 +110316-110317 +110318-110348 +110318-110348 +110319-110348 +110319 +110320-110338 +110321-110335 +110321-110323 +110324-110326 +110325-110326 +110326 +110327-110330 +110328-110330 +110329-110330 +110331-110335 +110332-110335 +110333-110335 +110334-110335 +110336-110338 +110337-110338 +110339-110348 +110340-110348 +110340-110344 +110342-110344 +110343-110344 +110345-110348 +110346-110348 +110346-110347 +110349-110368 +110349-110368 +110350-110368 +110350 +110353-110357 +110355-110357 +110356-110357 +110357 +110358-110368 +110359-110368 +110361-110368 +110362-110368 +110362-110368 +110363-110368 +110363-110364 +110365-110368 +110366-110368 +110369-110388 +110369-110388 +110370-110388 +110370-110376 +110371-110376 +110372-110376 +110373-110376 +110374-110376 +110375-110376 +110377-110388 +110379-110380 +110381-110385 +110382-110385 +110383-110385 +110384-110385 +110387-110388 +110389-110452 +110389-110452 +110390-110452 +110390-110411 +110393-110395 +110394-110395 +110396-110411 +110397-110411 +110397-110406 +110398-110406 +110398-110399 +110399 +110400-110406 +110401-110406 +110402-110406 +110403-110406 +110404-110406 +110405-110406 +110407-110408 +110410-110411 +110411 +110412-110452 +110413-110452 +110413-110427 +110413-110415 +110414-110415 +110416-110424 +110416-110417 +110418-110420 +110419-110420 +110421-110424 +110422-110424 +110423-110424 +110426-110427 +110428-110452 +110429-110452 +110429-110434 +110429-110432 +110430-110432 +110431-110432 +110435-110452 +110436-110440 +110437-110440 +110437-110438 +110438 +110439-110440 +110440 +110442-110443 +110445-110446 +110447-110452 +110448-110452 +110448-110450 +110449-110450 +110451-110452 +110453-110458 +110453-110458 +110454-110458 +110456-110457 +110459-110465 +110459-110465 +110460-110465 +110462-110465 +110463-110465 +110463-110464 +110466-110491 +110466-110491 +110467-110491 +110467 +110468-110473 +110469-110473 +110469-110470 +110471-110473 +110472-110473 +110477-110478 +110479-110491 +110480-110491 +110483-110491 +110484-110491 +110484-110487 +110485-110487 +110486-110487 +110488-110489 +110492-110512 +110492-110512 +110492-110496 +110493-110496 +110494-110496 +110495-110496 +110497-110512 +110497-110508 +110498-110499 +110502-110508 +110503-110508 +110503-110504 +110505-110508 +110506-110508 +110506-110507 +110509-110512 +110510-110512 +110510-110511 +110513-110535 +110513-110535 +110514-110535 +110514 +110515-110526 +110518-110519 +110520-110526 +110521-110526 +110521-110522 +110525-110526 +110526 +110527-110535 +110528-110535 +110528-110529 +110531-110535 +110531-110532 +110533-110535 +110534-110535 +110536-110540 +110536-110540 +110538-110540 +110539-110540 +110541-110551 +110541-110551 +110542-110551 +110543-110551 +110544-110547 +110544 +110545-110547 +110546-110547 +110546-110547 +110549-110551 +110549 +110550-110551 +110551 +110552-110561 +110552-110561 +110553-110561 +110553-110556 +110553-110554 +110554 +110557-110561 +110558-110561 +110558-110559 +110559 +110562-110606 +110562-110606 +110563-110606 +110564-110565 +110567-110575 +110568-110575 +110568-110571 +110569-110571 +110570-110571 +110572-110575 +110573-110575 +110574-110575 +110576-110606 +110577-110606 +110578-110583 +110580-110581 +110582-110583 +110585-110597 +110585-110587 +110586-110587 +110588-110597 +110589-110597 +110589-110593 +110589-110591 +110590-110591 +110592-110593 +110594-110597 +110595-110597 +110596-110597 +110598-110606 +110599-110606 +110599-110602 +110599-110600 +110600 +110601-110602 +110602 +110603-110606 +110604-110605 +110607-110617 +110607-110617 +110608-110617 +110608-110609 +110610-110614 +110611-110614 +110613-110614 +110615-110617 +110616-110617 +110618-110644 +110618-110644 +110619-110644 +110619 +110621-110644 +110621-110634 +110623-110634 +110624-110634 +110624-110626 +110625-110626 +110627-110631 +110628-110631 +110630-110631 +110632-110634 +110633-110634 +110635-110644 +110636-110644 +110639-110640 +110641-110644 +110642-110644 +110643-110644 +110645-110647 +110645-110647 +110646-110647 +110648-110663 +110648-110663 +110649-110663 +110649 +110652-110663 +110652-110654 +110653-110654 +110655-110657 +110656-110657 +110658-110660 +110659-110660 +110661-110663 +110662-110663 +110664-110681 +110664-110681 +110665-110681 +110666-110671 +110668-110669 +110673-110681 +110674-110675 +110677-110681 +110677-110678 +110679-110681 +110680-110681 +110682-110688 +110682-110688 +110682-110683 +110684-110685 +110686-110688 +110686-110687 +110689-110697 +110689-110697 +110690-110697 +110691-110692 +110693-110695 +110694-110695 +110696-110697 +110698-110715 +110698-110715 +110698-110704 +110698-110701 +110698-110699 +110702-110704 +110705-110715 +110706-110715 +110706-110707 +110708-110710 +110708-110709 +110711-110715 +110711-110714 +110712-110714 +110713-110714 +110716-110745 +110716-110745 +110717-110745 +110717-110724 +110717-110721 +110718-110721 +110719-110721 +110720-110721 +110725-110745 +110726-110745 +110726-110735 +110727-110735 +110728-110735 +110728-110729 +110730-110732 +110731-110732 +110733-110735 +110734-110735 +110737-110744 +110738-110744 +110739-110744 +110740-110744 +110740-110742 +110741-110742 +110743-110744 +110746-110752 +110746-110752 +110747-110752 +110747-110749 +110748-110749 +110750-110752 +110753-110756 +110753-110756 +110753 +110755-110756 +110757-110763 +110757-110763 +110758-110760 +110758-110759 +110761-110763 +110762-110763 +110764-110773 +110764-110773 +110766-110767 +110768-110773 +110769-110770 +110771-110773 +110772-110773 +110774-110782 +110774-110782 +110774-110780 +110775-110780 +110776-110780 +110776-110778 +110777-110778 +110779-110780 +110781-110782 +110783-110798 +110783-110798 +110783-110787 +110784-110785 +110786-110787 +110788-110798 +110789-110798 +110789-110790 +110791-110798 +110792-110798 +110792-110794 +110793-110794 +110795-110798 +110796-110798 +110797-110798 +110799-110809 +110799-110809 +110800-110802 +110801-110802 +110803-110809 +110804-110809 +110804-110805 +110806-110809 +110807-110809 +110808-110809 +110810-110862 +110810-110862 +110810 +110811-110820 +110812-110817 +110813-110814 +110816-110817 +110818-110820 +110819-110820 +110821-110862 +110822-110862 +110822-110835 +110822-110825 +110823-110825 +110824-110825 +110826-110835 +110827-110835 +110828-110835 +110829-110835 +110829-110833 +110830-110833 +110830-110831 +110832-110833 +110834-110835 +110836-110862 +110837-110862 +110837-110838 +110839-110840 +110842-110846 +110843-110846 +110844-110846 +110845-110846 +110847-110862 +110848-110862 +110848-110850 +110849-110850 +110851-110862 +110852-110862 +110853-110862 +110854-110862 +110854-110860 +110855-110860 +110855-110857 +110856-110857 +110858-110860 +110859-110860 +110861-110862 +110863-110967 +110863-110967 +110863-110868 +110864-110868 +110865-110868 +110866-110868 +110867-110868 +110869-110880 +110870-110880 +110871-110880 +110873-110880 +110874-110880 +110874-110876 +110875-110876 +110877-110880 +110877-110878 +110881-110967 +110882-110967 +110882-110960 +110883-110884 +110885-110943 +110885-110889 +110886-110888 +110887-110888 +110890-110943 +110891-110943 +110891-110893 +110892-110893 +110893 +110895-110896 +110897-110911 +110898-110911 +110899-110911 +110899-110908 +110899-110904 +110899-110902 +110900-110902 +110900-110901 +110903-110904 +110905-110908 +110906-110908 +110907-110908 +110909-110911 +110910-110911 +110912-110943 +110914-110943 +110914-110927 +110914-110917 +110915-110917 +110918-110927 +110919-110927 +110920-110927 +110922-110927 +110923-110927 +110924-110927 +110924-110926 +110925-110926 +110928-110943 +110930-110932 +110931-110932 +110933-110943 +110933-110936 +110934-110936 +110935-110936 +110937-110943 +110938-110943 +110939-110943 +110940-110943 +110941-110943 +110942-110943 +110944-110960 +110945-110960 +110946-110956 +110946-110950 +110947-110950 +110948-110950 +110949-110950 +110951-110956 +110952-110956 +110953-110956 +110954-110956 +110955-110956 +110956 +110957-110960 +110958-110960 +110958-110959 +110961-110967 +110962-110967 +110963-110965 +110964-110965 +110966-110967 +110968-111016 +110968-111016 +110968-110992 +110968-110974 +110968-110969 +110973-110974 +110976-110992 +110976-110982 +110978-110979 +110980-110982 +110981-110982 +110983-110992 +110984-110992 +110985-110990 +110986-110990 +110986-110987 +110988-110990 +110989-110990 +110991-110992 +110994-111016 +110994-111002 +110995-111000 +110996-111000 +110997-111000 +110997-110999 +110998-110999 +111001-111002 +111003-111016 +111004-111016 +111005-111006 +111007-111016 +111008-111016 +111009-111016 +111010-111016 +111011-111016 +111011-111012 +111013-111016 +111014-111016 +111015-111016 +111017-111063 +111017-111063 +111018-111063 +111018 +111021-111033 +111022-111033 +111022-111028 +111023-111028 +111024-111028 +111024-111026 +111025-111026 +111027-111028 +111029-111033 +111030-111033 +111030-111031 +111032-111033 +111034-111063 +111035-111063 +111036-111063 +111036-111044 +111036-111042 +111040-111042 +111041-111042 +111043-111044 +111045-111056 +111045-111047 +111046-111047 +111048-111050 +111049-111050 +111051-111056 +111052-111056 +111053-111056 +111054-111056 +111055-111056 +111057-111063 +111058-111063 +111059-111063 +111060-111063 +111061-111063 +111062-111063 +111064-111110 +111064-111110 +111068-111070 +111069-111070 +111071-111110 +111072-111110 +111073-111110 +111074-111110 +111074-111077 +111075-111076 +111078-111110 +111079-111110 +111080-111097 +111080-111087 +111080-111083 +111081-111083 +111082-111083 +111084-111087 +111085-111087 +111086-111087 +111088-111097 +111089-111097 +111089-111091 +111090-111091 +111092-111097 +111093-111097 +111094-111097 +111095-111097 +111096-111097 +111098-111110 +111099-111110 +111100-111104 +111101-111104 +111102-111104 +111103-111104 +111106-111110 +111108-111110 +111109-111110 +111111-111120 +111111-111120 +111111-111112 +111114-111120 +111114-111117 +111116-111117 +111121-111133 +111121-111133 +111122-111133 +111123-111124 +111124 +111126-111133 +111127-111133 +111128-111133 +111130-111133 +111131-111133 +111132-111133 +111134-111148 +111134-111148 +111135-111148 +111135-111138 +111136-111138 +111137-111138 +111141-111148 +111141-111144 +111142-111143 +111143 +111145-111148 +111146-111148 +111146-111147 +111149-111205 +111149-111205 +111150-111205 +111152-111205 +111152-111170 +111152-111153 +111154-111170 +111154-111163 +111155-111157 +111155-111156 +111159-111163 +111160-111163 +111161-111163 +111162-111163 +111164-111170 +111165-111170 +111166-111170 +111167-111170 +111168-111170 +111169-111170 +111171-111205 +111171-111173 +111172-111173 +111175-111178 +111176-111178 +111177-111178 +111179-111191 +111179-111186 +111180-111186 +111181-111186 +111182-111183 +111184-111186 +111185-111186 +111187-111191 +111188-111191 +111189-111191 +111190-111191 +111192-111193 +111193 +111194-111205 +111195-111205 +111196-111199 +111197-111199 +111198-111199 +111202-111205 +111203-111205 +111204-111205 +111206-111232 +111206-111232 +111207-111232 +111207-111208 +111211-111212 +111213-111214 +111215-111220 +111216-111220 +111217-111220 +111219-111220 +111221-111232 +111222-111232 +111223-111232 +111224-111232 +111225-111232 +111226-111228 +111227-111228 +111230-111232 +111231-111232 +111233-111277 +111233-111277 +111234-111277 +111234-111245 +111236-111241 +111237-111238 +111240-111241 +111242-111245 +111242-111245 +111243-111245 +111244-111245 +111246-111277 +111247-111277 +111249-111250 +111251-111252 +111253-111254 +111255-111260 +111256-111260 +111256-111257 +111258-111260 +111259-111260 +111261-111277 +111261-111262 +111266-111269 +111267-111269 +111268-111269 +111270-111277 +111271-111277 +111272-111277 +111273-111277 +111273-111275 +111274-111275 +111276-111277 +111278-111294 +111278-111294 +111279-111294 +111280-111294 +111280 +111281 +111282-111294 +111283-111294 +111284-111294 +111285-111294 +111286-111294 +111288-111294 +111288-111290 +111289-111290 +111291-111294 +111292-111294 +111293-111294 +111295-111331 +111295-111331 +111296-111331 +111296-111323 +111296-111319 +111296-111301 +111297-111301 +111297-111299 +111298-111299 +111300-111301 +111302-111319 +111303-111319 +111303-111307 +111303-111304 +111305-111307 +111306-111307 +111308-111319 +111309-111319 +111309-111310 +111311-111319 +111312-111319 +111313-111317 +111313-111314 +111315-111317 +111316-111317 +111318-111319 +111321-111323 +111322-111323 +111324-111331 +111325-111331 +111326-111331 +111327-111331 +111328-111331 +111328-111330 +111329-111330 +111332-111358 +111332-111358 +111332 +111333-111334 +111336-111337 +111338-111358 +111338-111349 +111339-111349 +111339-111345 +111339-111343 +111339-111342 +111340-111342 +111341-111342 +111344-111345 +111345 +111346-111349 +111347-111349 +111347-111349 +111348-111349 +111350-111358 +111351-111358 +111352-111358 +111353-111358 +111354-111358 +111355-111358 +111355-111357 +111356-111357 +111359-111363 +111359-111363 +111360-111363 +111362-111363 +111364-111376 +111364-111376 +111365-111376 +111367-111376 +111367-111368 +111369-111376 +111369-111371 +111372-111376 +111373-111376 +111374-111376 +111375-111376 +111377-111389 +111377-111389 +111378-111389 +111379-111380 +111381-111382 +111383-111389 +111384-111389 +111384-111385 +111386-111389 +111386-111387 +111388-111389 +111390-111407 +111390-111407 +111391-111407 +111391-111392 +111394-111396 +111395-111396 +111397-111407 +111397-111401 +111398-111401 +111399-111401 +111400-111401 +111402-111407 +111403-111407 +111404-111407 +111405-111407 +111406-111407 +111408-111433 +111408-111433 +111409-111433 +111409 +111412-111417 +111413-111417 +111414-111417 +111414-111415 +111416-111417 +111418-111433 +111420-111433 +111421-111433 +111422-111433 +111423-111433 +111423-111424 +111425-111433 +111426-111433 +111427-111433 +111428-111433 +111429-111433 +111430-111433 +111432-111433 +111434-111466 +111434-111466 +111435-111466 +111435-111440 +111437-111440 +111439-111440 +111441-111466 +111442-111466 +111443-111451 +111443-111445 +111444-111445 +111446-111451 +111447-111451 +111450-111451 +111453-111466 +111453-111456 +111454-111456 +111455-111456 +111457-111459 +111458-111459 +111461-111466 +111462-111466 +111463-111466 +111465-111466 +111467-111481 +111467-111481 +111468-111471 +111469-111471 +111473-111481 +111474-111481 +111478-111481 +111479-111481 +111480-111481 +111482-111498 +111482-111498 +111483-111498 +111483-111487 +111484-111487 +111485-111487 +111486-111487 +111488-111498 +111491-111498 +111492-111498 +111492-111496 +111493-111496 +111496 +111499-111509 +111499-111509 +111500-111509 +111501-111509 +111503-111504 +111506-111509 +111507 +111509 +111510-111527 +111510-111527 +111511-111527 +111511-111512 +111513-111515 +111514-111515 +111516-111519 +111517-111519 +111518-111519 +111520-111527 +111521-111527 +111521-111523 +111521-111522 +111524-111526 +111525-111526 +111528-111533 +111528-111533 +111529-111533 +111529 +111533 +111534-111551 +111534-111551 +111535-111551 +111535-111549 +111535-111544 +111536-111544 +111539-111544 +111540-111544 +111540-111541 +111542-111544 +111543-111544 +111545-111549 +111547-111549 +111550-111551 +111551 +111552-111560 +111552-111560 +111553-111560 +111554-111556 +111554-111555 +111555 +111556 +111558-111560 +111559-111560 +111560 +111561-111575 +111561-111575 +111562-111575 +111562-111566 +111563-111566 +111564-111566 +111565-111566 +111569-111570 +111571-111572 +111573-111575 +111574-111575 +111576-111580 +111576-111580 +111576-111577 +111578-111580 +111579-111580 +111581-111592 +111581-111592 +111581-111582 +111583-111586 +111584-111586 +111585-111586 +111587-111592 +111590-111592 +111591-111592 +111593-111594 +111593-111594 +111595-111604 +111595-111604 +111595-111601 +111596-111601 +111597-111601 +111597-111599 +111598-111599 +111600-111601 +111602-111604 +111603-111604 +111605-111624 +111605-111624 +111605-111619 +111606-111619 +111606-111608 +111607-111608 +111609-111619 +111610-111619 +111611-111619 +111611-111613 +111612-111613 +111614-111619 +111615-111619 +111615-111616 +111617-111619 +111618-111619 +111620-111624 +111621-111624 +111621-111622 +111623-111624 +111625-111636 +111625-111636 +111625-111627 +111628-111636 +111629-111636 +111629-111630 +111631-111636 +111632-111636 +111632-111633 +111634-111636 +111635-111636 +111637-111666 +111637-111666 +111637-111645 +111638-111645 +111639-111642 +111641-111642 +111643-111645 +111644-111645 +111646-111666 +111647-111666 +111649-111666 +111649-111650 +111651-111666 +111652-111666 +111653-111666 +111653-111656 +111654-111656 +111655-111656 +111657-111666 +111657-111660 +111661-111666 +111662-111666 +111662-111666 +111662-111663 +111664-111666 +111665-111666 +111667-111700 +111667-111700 +111668-111700 +111668-111671 +111669-111671 +111670-111671 +111673-111700 +111674-111700 +111675-111700 +111675-111682 +111675-111676 +111677-111679 +111678-111679 +111680-111682 +111681-111682 +111683-111700 +111683-111684 +111687-111688 +111689-111700 +111690-111691 +111692-111700 +111694-111700 +111694-111696 +111695-111696 +111697-111700 +111698-111700 +111698-111699 +111701-111756 +111701-111756 +111702-111756 +111703-111756 +111704-111756 +111705-111706 +111707-111756 +111708-111756 +111712-111756 +111712-111713 +111715-111756 +111716-111718 +111720-111756 +111720-111737 +111720-111737 +111720-111722 +111721-111722 +111723-111725 +111724-111725 +111726-111728 +111727-111728 +111729-111731 +111730-111731 +111738-111756 +111739-111756 +111740-111756 +111740-111741 +111743-111756 +111744-111756 +111744 +111745-111756 +111746-111756 +111747-111756 +111747-111753 +111748-111753 +111749-111753 +111750-111753 +111751-111753 +111752-111753 +111754-111756 +111757-111781 +111757-111781 +111759-111766 +111759-111761 +111760-111761 +111762-111766 +111762-111763 +111764-111766 +111765-111766 +111767-111781 +111768-111781 +111771-111773 +111772-111773 +111774-111781 +111774-111775 +111777-111781 +111778-111779 +111780-111781 +111782-111803 +111782-111803 +111783-111803 +111783-111788 +111783 +111784-111788 +111785-111788 +111785 +111787-111788 +111789-111803 +111790-111803 +111791-111795 +111792-111795 +111793-111795 +111794-111795 +111796-111803 +111797-111803 +111797-111799 +111798-111799 +111800-111803 +111801-111803 +111802-111803 +111804-111823 +111804-111823 +111804-111805 +111806-111810 +111807-111810 +111808-111810 +111808-111809 +111811-111823 +111812-111823 +111812-111813 +111815-111817 +111816-111817 +111818-111819 +111820-111823 +111820-111821 +111824-111847 +111824-111847 +111825-111847 +111825-111827 +111825-111826 +111829-111847 +111829-111831 +111830-111831 +111833-111834 +111835-111837 +111836-111837 +111838-111847 +111839-111847 +111840-111847 +111841-111847 +111842-111847 +111843-111844 +111845-111847 +111846-111847 +111848-111865 +111848-111865 +111849-111865 +111849-111856 +111849-111852 +111850-111852 +111851-111852 +111853-111856 +111853-111855 +111857-111859 +111858-111859 +111860-111864 +111861-111864 +111862-111864 +111863-111864 +111865 +111866-111910 +111866-111910 +111866-111867 +111866-111867 +111868-111870 +111869-111870 +111873-111878 +111874-111878 +111875-111878 +111875-111877 +111876-111877 +111879-111910 +111880-111910 +111881-111882 +111883-111885 +111884-111885 +111886-111910 +111887-111910 +111888-111910 +111889-111910 +111889-111890 +111891-111910 +111891-111897 +111891-111892 +111894-111896 +111895-111896 +111900-111910 +111900-111902 +111901-111902 +111903-111910 +111903-111906 +111905-111906 +111908-111910 +111909-111910 +111911-111941 +111911-111941 +111912-111941 +111913-111941 +111913-111914 +111916-111919 +111920-111930 +111920-111922 +111921-111922 +111923-111930 +111924-111930 +111925-111930 +111926-111930 +111927-111930 +111928-111930 +111928-111929 +111931-111941 +111932-111941 +111932-111935 +111932-111934 +111933-111934 +111937-111941 +111938-111941 +111939-111941 +111940-111941 +111942-111960 +111942-111960 +111943-111945 +111944-111945 +111946-111960 +111947-111960 +111947-111950 +111948-111950 +111948-111949 +111951-111960 +111953-111960 +111953-111954 +111955-111960 +111955 +111956-111960 +111957-111960 +111957-111959 +111958-111959 +111961-111978 +111961-111978 +111962-111978 +111962-111963 +111964-111978 +111965-111978 +111966-111978 +111966-111969 +111967-111969 +111968-111969 +111970-111978 +111970-111972 +111971-111972 +111973-111978 +111974-111978 +111977-111978 +111979-111999 +111979-111999 +111979-111980 +111981-111982 +111983-111999 +111983-111995 +111983-111984 +111987-111995 +111987-111989 +111988-111989 +111990-111995 +111990-111991 +111992-111995 +111993-111995 +111994-111995 +111998-111999 +112000-112044 +112000-112044 +112001-112044 +112002-112044 +112003-112004 +112005-112007 +112006-112007 +112008-112010 +112009-112010 +112011-112014 +112012-112014 +112013-112014 +112015-112044 +112016-112044 +112017-112019 +112018-112019 +112020-112023 +112021-112023 +112022-112023 +112026-112044 +112027-112035 +112028-112035 +112029-112030 +112031-112032 +112033-112035 +112034-112035 +112037-112044 +112038-112044 +112038-112042 +112040-112042 +112041-112042 +112043-112044 +112045-112051 +112045-112051 +112046-112047 +112049-112051 +112050-112051 +112052-112063 +112052-112063 +112053-112063 +112054-112063 +112055-112059 +112055-112056 +112057-112059 +112058-112059 +112061-112063 +112062-112063 +112064-112080 +112064-112080 +112065-112080 +112065-112069 +112065-112067 +112068-112069 +112070-112080 +112071-112080 +112071-112073 +112074-112080 +112075-112080 +112075-112076 +112077 +112078-112079 +112081-112095 +112081-112095 +112082-112095 +112082-112085 +112083-112085 +112084-112085 +112086-112095 +112087-112095 +112088-112093 +112089-112093 +112090-112091 +112092-112093 +112094-112095 +112096-112098 +112096-112098 +112097-112098 +112099-112105 +112099-112105 +112099-112102 +112100-112102 +112103-112104 +112106-112139 +112106-112139 +112107-112139 +112108-112139 +112108-112109 +112111-112127 +112112-112127 +112112-112114 +112112-112113 +112115-112117 +112120-112121 +112122-112125 +112128-112139 +112128-112132 +112128-112130 +112129-112130 +112133-112139 +112135-112136 +112137-112139 +112138-112139 +112140-112152 +112140-112152 +112141-112152 +112141-112148 +112142-112148 +112143-112146 +112143-112145 +112144-112145 +112149-112152 +112150-112151 +112153-112162 +112153-112162 +112155-112162 +112156-112162 +112157 +112158-112161 +112159-112161 +112160-112161 +112163-112180 +112163-112180 +112164-112180 +112166-112171 +112166-112167 +112169-112171 +112170-112171 +112172-112180 +112173-112180 +112175-112180 +112176-112180 +112177-112180 +112178-112180 +112179-112180 +112181-112199 +112181-112199 +112182-112199 +112183-112199 +112184-112185 +112186-112189 +112187-112188 +112190-112191 +112192-112199 +112193-112196 +112194-112196 +112195-112196 +112197-112199 +112198-112199 +112200-112208 +112200-112208 +112201-112208 +112201-112204 +112201-112202 +112205-112208 +112207-112208 +112209-112217 +112209-112217 +112210-112217 +112211-112217 +112212-112213 +112215-112217 +112216-112217 +112218-112229 +112218-112229 +112220-112222 +112220-112221 +112223-112229 +112225-112229 +112226-112229 +112227-112229 +112228-112229 +112230-112246 +112230-112246 +112231-112246 +112231-112237 +112231-112233 +112232-112233 +112234-112235 +112238-112246 +112239-112246 +112239-112240 +112241-112246 +112242-112246 +112243-112246 +112244-112246 +112245-112246 +112247-112254 +112247-112254 +112250-112254 +112251-112254 +112252-112253 +112255-112275 +112255-112275 +112256-112275 +112256-112257 +112257 +112258-112275 +112259-112275 +112260-112275 +112262-112275 +112263-112275 +112264-112275 +112264-112265 +112266-112275 +112268-112275 +112268-112270 +112269-112270 +112270 +112271-112275 +112271-112273 +112272-112273 +112274-112275 +112276-112283 +112276-112283 +112277-112283 +112280-112283 +112281-112283 +112281-112282 +112284-112301 +112284-112301 +112284-112287 +112286-112287 +112288-112290 +112289-112290 +112291-112292 +112293-112295 +112294-112295 +112296-112298 +112297-112298 +112299-112301 +112300-112301 +112302-112363 +112302-112363 +112303-112363 +112303-112304 +112307-112363 +112308-112363 +112308-112310 +112309-112310 +112313-112314 +112315-112320 +112316-112320 +112316-112317 +112318-112320 +112319-112320 +112321-112363 +112322-112363 +112323-112363 +112324-112363 +112324-112327 +112325-112327 +112326-112327 +112328-112329 +112329 +112330-112363 +112331-112363 +112332-112363 +112332-112345 +112333-112334 +112336-112345 +112337-112345 +112337-112339 +112338-112339 +112340-112345 +112341-112345 +112342-112345 +112343-112345 +112344-112345 +112347-112363 +112347-112356 +112347-112350 +112347-112349 +112348-112349 +112351-112356 +112352-112356 +112354-112356 +112354-112355 +112357-112363 +112358-112363 +112359-112363 +112360-112363 +112360-112361 +112362-112363 +112364-112383 +112364-112383 +112364-112367 +112366-112367 +112369-112372 +112370-112372 +112371-112372 +112373-112383 +112374-112383 +112375-112383 +112376-112383 +112376-112377 +112378-112383 +112379-112383 +112379-112381 +112380-112381 +112382-112383 +112384-112390 +112384-112390 +112385-112390 +112385-112389 +112386-112389 +112386-112388 +112387-112388 +112391-112395 +112391-112395 +112392-112395 +112394-112395 +112396-112418 +112396-112418 +112397-112418 +112397-112403 +112397-112399 +112398-112399 +112400-112401 +112404-112418 +112405-112418 +112405-112406 +112407-112408 +112411-112418 +112412-112418 +112413-112418 +112414-112418 +112414-112415 +112416-112418 +112417-112418 +112418 +112419-112425 +112419-112425 +112419-112420 +112421-112425 +112422-112425 +112423-112425 +112423-112424 +112426-112443 +112426-112443 +112427-112443 +112427-112431 +112427-112428 +112429-112431 +112430-112431 +112433-112443 +112434-112443 +112435-112443 +112435-112436 +112436 +112437-112443 +112439-112443 +112440-112443 +112440-112441 +112442-112443 +112444-112447 +112444-112447 +112445-112447 +112446-112447 +112448-112467 +112448-112467 +112448-112452 +112449-112451 +112450-112451 +112453-112467 +112454-112467 +112455-112457 +112456-112457 +112458-112467 +112458-112459 +112460-112461 +112462-112463 +112464-112465 +112466-112467 +112468-112476 +112468-112476 +112468-112469 +112469 +112470-112476 +112471-112476 +112471-112472 +112473-112474 +112475-112476 +112477-112493 +112477-112493 +112479-112493 +112479-112482 +112480-112482 +112480-112481 +112483-112493 +112486-112487 +112488-112493 +112489-112493 +112490-112493 +112491-112493 +112492-112493 +112494-112505 +112494-112505 +112494-112498 +112496-112498 +112496-112497 +112499-112505 +112500-112505 +112500-112502 +112501-112502 +112506-112522 +112506-112522 +112506-112512 +112507-112510 +112508-112510 +112509-112510 +112511-112512 +112513-112522 +112514-112522 +112514-112515 +112517-112522 +112517-112518 +112519-112522 +112520-112522 +112521-112522 +112523-112541 +112523-112541 +112523-112529 +112523-112525 +112526-112529 +112527-112529 +112528-112529 +112530-112541 +112530-112532 +112531-112532 +112533-112535 +112534-112535 +112536-112541 +112537-112538 +112539-112541 +112540-112541 +112542-112546 +112542-112546 +112543-112546 +112544-112546 +112545-112546 +112547-112565 +112547-112565 +112548-112565 +112548-112554 +112549-112554 +112549-112550 +112551-112553 +112552-112553 +112557-112565 +112557-112560 +112557-112559 +112558-112559 +112561-112565 +112562-112565 +112564-112565 +112566-112572 +112566-112572 +112567-112572 +112570-112572 +112571-112572 +112573-112591 +112573-112591 +112574-112591 +112574-112581 +112574-112578 +112575-112578 +112576-112578 +112577-112578 +112578 +112580-112581 +112582-112591 +112583-112591 +112584-112588 +112584-112585 +112586-112588 +112587-112588 +112589-112591 +112590-112591 +112592-112596 +112592-112596 +112593-112596 +112593-112594 +112594 +112595 +112597-112602 +112597-112602 +112597-112598 +112600-112602 +112601-112602 +112603-112619 +112603-112619 +112604-112619 +112604-112612 +112605-112612 +112606-112610 +112607-112610 +112608-112610 +112609-112610 +112613-112619 +112613-112615 +112613-112614 +112616-112619 +112617-112619 +112620-112649 +112620-112649 +112622-112625 +112623-112625 +112624-112625 +112626-112629 +112627-112629 +112627-112628 +112630-112633 +112630-112632 +112631-112632 +112634-112649 +112634-112635 +112635 +112636-112637 +112637 +112638-112641 +112639-112641 +112639-112640 +112642-112644 +112643-112644 +112643 +112645-112649 +112646-112649 +112646-112648 +112647-112648 +112650-112653 +112650-112653 +112651-112653 +112651-112652 +112654-112667 +112654-112667 +112655-112667 +112655-112658 +112656-112658 +112657-112658 +112659-112667 +112659 +112661-112667 +112661-112662 +112663-112667 +112664-112667 +112664-112666 +112665-112666 +112668-112688 +112668-112688 +112669-112688 +112669-112675 +112670-112671 +112673-112675 +112674-112675 +112676-112688 +112677-112688 +112678-112679 +112681-112688 +112681-112684 +112682-112684 +112683-112684 +112685-112688 +112686-112688 +112687-112688 +112689-112701 +112689-112701 +112690-112701 +112691-112701 +112692-112701 +112692 +112693 +112694 +112695-112701 +112695-112696 +112698-112699 +112699 +112700-112701 +112702-112708 +112702-112708 +112703-112708 +112706-112708 +112707-112708 +112709-112725 +112709-112725 +112709-112713 +112710-112713 +112710-112711 +112714-112715 +112716-112720 +112717-112720 +112719-112720 +112721-112725 +112722-112725 +112722-112724 +112723-112724 +112726-112739 +112726-112739 +112726-112732 +112726-112729 +112727-112729 +112727-112728 +112730-112731 +112733-112739 +112734-112739 +112735-112739 +112736-112739 +112737-112739 +112738-112739 +112740-112754 +112740-112754 +112741-112754 +112742-112743 +112744-112754 +112744-112747 +112744-112745 +112745 +112748-112754 +112749-112754 +112750-112751 +112752-112754 +112753-112754 +112755-112767 +112755-112767 +112755-112756 +112760-112767 +112761-112767 +112762-112767 +112763-112767 +112764-112767 +112764-112766 +112768-112778 +112768-112778 +112768-112769 +112769 +112770-112771 +112773-112778 +112774-112778 +112774-112776 +112775-112776 +112779-112798 +112779-112798 +112780-112789 +112781-112789 +112781-112782 +112783-112785 +112784-112785 +112786-112789 +112787-112789 +112788-112789 +112790-112798 +112791-112798 +112793-112794 +112795-112798 +112797-112798 +112799-112806 +112799-112806 +112799-112802 +112803-112806 +112804-112806 +112805-112806 +112807-112809 +112807-112809 +112810-112823 +112810-112823 +112811 +112813-112823 +112813-112814 +112816-112823 +112817-112823 +112817-112818 +112819-112823 +112820-112823 +112821-112823 +112822-112823 +112824-112836 +112824-112836 +112824-112832 +112824-112827 +112824-112825 +112826-112827 +112830-112832 +112831-112832 +112833-112836 +112834-112836 +112837-112850 +112837-112850 +112838-112850 +112838-112843 +112838-112842 +112839-112842 +112840-112842 +112841-112842 +112844-112850 +112845-112850 +112845-112847 +112846-112847 +112848 +112851-112872 +112851-112872 +112851-112862 +112851-112855 +112853-112854 +112856-112858 +112857-112858 +112859-112861 +112859-112860 +112864-112872 +112865-112871 +112865-112868 +112866-112868 +112867-112868 +112869-112871 +112870-112871 +112873-112882 +112873-112882 +112874-112882 +112874-112877 +112875-112877 +112876-112877 +112880-112882 +112881-112882 +112883-112894 +112883-112894 +112884-112894 +112884-112885 +112886-112894 +112887-112894 +112888-112890 +112889-112890 +112891-112894 +112892-112894 +112892-112893 +112895-112898 +112895-112898 +112896-112898 +112897-112898 +112899-112948 +112899-112948 +112899-112917 +112900-112917 +112900-112901 +112902-112917 +112903-112917 +112905-112917 +112905-112912 +112905-112906 +112905 +112907-112912 +112908-112912 +112908-112910 +112909-112910 +112911-112912 +112913-112917 +112914-112917 +112915-112917 +112915-112916 +112918-112948 +112919-112948 +112919-112920 +112921-112948 +112922-112948 +112923-112948 +112924-112948 +112924-112926 +112925-112926 +112927-112948 +112927-112928 +112930-112948 +112933-112934 +112935-112948 +112936-112948 +112937-112948 +112937-112939 +112938-112939 +112940-112943 +112941-112943 +112942-112943 +112944-112948 +112945-112948 +112947-112948 +112949-112956 +112949-112956 +112950-112956 +112951-112952 +112953-112956 +112954-112956 +112955-112956 +112957-112967 +112957-112967 +112958-112967 +112960-112962 +112961-112962 +112963-112967 +112964-112967 +112965-112966 +112968-112974 +112968-112974 +112969-112974 +112969-112972 +112970-112972 +112971-112972 +112975-112997 +112975-112997 +112976-112997 +112976-112978 +112977-112978 +112978 +112980-112997 +112981-112997 +112981-112989 +112982-112983 +112984-112989 +112985-112989 +112985-112986 +112987-112989 +112988-112989 +112990-112997 +112992-112993 +112994-112997 +112995-112997 +112996-112997 +112998-113017 +112998-113017 +112999-113017 +112999-113002 +113000-113002 +113001-113002 +113004-113017 +113004-113005 +113006-113017 +113006-113012 +113006-113007 +113010-113012 +113011-113012 +113013-113017 +113014-113017 +113016-113017 +113018-113024 +113018-113024 +113019-113024 +113019-113021 +113019-113021 +113020-113021 +113025-113053 +113025-113053 +113026-113053 +113026-113032 +113027-113032 +113033-113038 +113034-113038 +113035-113038 +113036-113038 +113037-113038 +113039-113053 +113040-113053 +113040-113042 +113041-113042 +113043-113053 +113043-113044 +113045-113053 +113045 +113046-113053 +113047-113053 +113048-113050 +113049-113050 +113051-113053 +113052-113053 +113054-113123 +113054-113123 +113055-113072 +113056-113072 +113056-113061 +113056-113057 +113058-113061 +113059-113061 +113060-113061 +113062-113072 +113063-113072 +113063-113064 +113065-113072 +113066-113072 +113067-113069 +113068-113069 +113070-113072 +113071-113072 +113073-113123 +113075-113076 +113077-113078 +113079-113123 +113080-113123 +113080-113086 +113081-113086 +113082-113086 +113082-113084 +113083-113084 +113085-113086 +113087-113123 +113088-113089 +113091-113123 +113091-113117 +113091-113110 +113091-113103 +113091-113095 +113092-113095 +113092-113094 +113093-113094 +113096-113103 +113097-113103 +113097-113099 +113098-113099 +113099 +113100-113103 +113101-113103 +113102-113103 +113103 +113104-113110 +113105-113110 +113106-113110 +113106-113107 +113108-113110 +113108-113109 +113111-113117 +113111-113114 +113113-113114 +113115-113117 +113116-113117 +113116 +113118-113123 +113119-113122 +113120-113122 +113121-113122 +113123 +113124-113167 +113124-113167 +113124-113129 +113125-113129 +113126-113129 +113127-113129 +113128-113129 +113131-113162 +113131-113147 +113132-113137 +113132 +113133-113137 +113134-113137 +113135-113137 +113136-113137 +113139-113147 +113139-113147 +113140-113147 +113141-113147 +113142-113147 +113146-113147 +113148 +113149-113152 +113150-113152 +113151-113152 +113153-113154 +113155 +113156-113162 +113158-113159 +113160-113162 +113161-113162 +113162 +113163-113167 +113164-113167 +113165-113167 +113166-113167 +113168-113188 +113168-113188 +113168-113169 +113168-113169 +113170-113171 +113173-113188 +113174-113188 +113175-113188 +113175-113176 +113177-113188 +113178-113188 +113179-113188 +113180-113188 +113180-113181 +113182-113188 +113182-113183 +113185-113187 +113186-113187 +113189-113192 +113189-113192 +113189-113190 +113191-113192 +113193-113209 +113193-113209 +113193-113206 +113194-113206 +113194-113199 +113194-113196 +113195-113196 +113197-113199 +113198-113199 +113200-113206 +113201-113206 +113202-113206 +113203-113206 +113204-113206 +113205-113206 +113207-113209 +113208-113209 +113210-113221 +113210-113221 +113210-113212 +113213-113221 +113214-113221 +113214-113215 +113216-113221 +113217-113221 +113217-113218 +113219-113221 +113220-113221 +113222-113282 +113222-113282 +113224-113232 +113224-113225 +113226-113232 +113228-113229 +113230-113232 +113231-113232 +113233-113282 +113234-113282 +113236-113239 +113237-113239 +113237-113238 +113240-113243 +113241-113243 +113242-113243 +113244-113246 +113245-113246 +113247-113282 +113247-113253 +113248-113249 +113250-113253 +113251-113253 +113252-113253 +113254-113282 +113255-113282 +113257-113282 +113258-113282 +113259-113282 +113260-113282 +113260-113261 +113262-113282 +113262-113263 +113264-113282 +113264-113276 +113267-113276 +113268-113276 +113268-113271 +113268-113270 +113269-113270 +113272-113276 +113273-113276 +113273-113275 +113274-113275 +113277-113282 +113278-113282 +113279-113282 +113280-113282 +113280-113282 +113281-113282 +113283-113302 +113283-113302 +113283-113285 +113284-113285 +113287-113302 +113289-113302 +113289-113292 +113290-113292 +113291-113292 +113293-113302 +113295-113296 +113297-113302 +113298-113302 +113299-113302 +113300-113302 +113301-113302 +113303-113316 +113303-113316 +113304-113316 +113305-113310 +113307-113308 +113309-113310 +113312-113316 +113312-113316 +113313-113314 +113315-113316 +113317-113395 +113317-113395 +113318-113395 +113319-113329 +113320-113329 +113320-113324 +113321-113324 +113322-113324 +113323-113324 +113325-113329 +113326-113329 +113327-113329 +113328-113329 +113331-113395 +113332-113333 +113334-113395 +113335-113395 +113336-113395 +113337-113395 +113338-113395 +113338-113339 +113340-113395 +113341-113395 +113342-113343 +113344-113395 +113345-113348 +113346-113348 +113347-113348 +113350-113395 +113351-113395 +113352-113395 +113353-113395 +113354-113395 +113355-113395 +113356-113395 +113356-113363 +113358-113360 +113359-113360 +113361-113363 +113362-113363 +113364-113395 +113365-113395 +113367-113395 +113368-113395 +113369-113395 +113370-113395 +113370-113372 +113371-113372 +113373-113395 +113373-113374 +113375-113395 +113375-113378 +113376-113378 +113377-113378 +113379-113395 +113380-113395 +113381-113383 +113382-113383 +113384-113395 +113385-113395 +113385-113386 +113387-113395 +113387-113388 +113391-113395 +113392-113393 +113394-113395 +113396-113421 +113396-113421 +113396-113404 +113396-113401 +113396-113398 +113397-113398 +113399-113400 +113402-113404 +113403-113404 +113406-113421 +113406-113408 +113407-113408 +113409-113421 +113410-113421 +113411-113421 +113412-113421 +113413-113421 +113414-113421 +113414-113416 +113415-113416 +113418-113421 +113419-113421 +113420-113421 +113422-113437 +113422-113437 +113423-113429 +113424-113429 +113424-113425 +113424 +113426-113429 +113427-113428 +113430-113437 +113431-113437 +113431-113433 +113432-113433 +113434-113437 +113435-113437 +113436-113437 +113438-113448 +113438-113448 +113438-113440 +113439-113440 +113442-113448 +113443-113448 +113443-113444 +113445-113448 +113446-113448 +113447-113448 +113449-113463 +113449-113463 +113451-113463 +113452-113463 +113454-113463 +113454-113458 +113455-113458 +113456-113458 +113457-113458 +113459-113463 +113461-113463 +113462-113463 +113464-113489 +113464-113489 +113464-113470 +113466-113467 +113468-113470 +113469-113470 +113471-113489 +113472-113489 +113472-113474 +113475-113489 +113476-113489 +113477-113480 +113477-113479 +113478-113479 +113482-113489 +113482-113487 +113482-113484 +113483-113484 +113488-113489 +113489 +113490-113501 +113490-113501 +113492-113493 +113494-113501 +113496-113497 +113498-113501 +113499-113501 +113500-113501 +113502-113509 +113502-113509 +113503-113509 +113503-113506 +113504-113505 +113510-113539 +113510-113539 +113511-113539 +113511-113512 +113511-113512 +113513-113521 +113515-113521 +113516-113521 +113516-113517 +113518-113521 +113519-113521 +113520-113521 +113522-113539 +113523-113539 +113523-113529 +113525-113526 +113527-113529 +113528-113529 +113532-113539 +113532-113533 +113534-113539 +113537-113539 +113537-113538 +113540-113545 +113540-113545 +113541-113545 +113542-113545 +113543-113545 +113544-113545 +113546-113556 +113546-113556 +113547 +113549-113552 +113550-113552 +113550-113551 +113553-113556 +113554-113556 +113554-113555 +113555 +113557-113567 +113557-113567 +113558-113567 +113558-113561 +113559-113561 +113564-113567 +113565-113567 +113568-113575 +113568-113575 +113569-113575 +113569-113571 +113570-113571 +113570 +113573-113574 +113576-113578 +113576-113578 +113577-113578 +113579-113586 +113579-113586 +113580-113586 +113582-113583 +113585-113586 +113587-113613 +113587-113613 +113588-113613 +113589-113613 +113589-113595 +113589-113592 +113590-113592 +113591-113592 +113593-113595 +113594-113595 +113596-113613 +113597-113613 +113597-113599 +113598-113599 +113600-113613 +113600-113606 +113600-113604 +113600-113601 +113603-113604 +113606 +113607-113613 +113608-113613 +113608-113611 +113609-113611 +113610-113611 +113614-113632 +113614-113632 +113614-113615 +113618-113620 +113619-113620 +113621-113632 +113622-113632 +113622-113623 +113625-113629 +113626-113629 +113627-113629 +113628-113629 +113630-113632 +113631-113632 +113633-113635 +113633-113635 +113634-113635 +113636-113640 +113636-113640 +113637-113640 +113637-113638 +113638 +113641-113644 +113641-113644 +113641-113642 +113642 +113645-113649 +113645-113649 +113645-113646 +113646 +113647-113649 +113650-113659 +113650-113659 +113650-113654 +113650-113651 +113651 +113652-113654 +113655-113659 +113656-113659 +113656-113657 +113660-113674 +113660-113674 +113662-113674 +113663-113665 +113664-113665 +113666-113674 +113667-113674 +113668-113670 +113669-113670 +113671-113674 +113672-113674 +113673-113674 +113674 +113675-113687 +113675-113687 +113676-113687 +113678-113687 +113678-113680 +113679-113680 +113681-113687 +113681-113682 +113683-113687 +113684-113687 +113685-113687 +113686-113687 +113688-113692 +113688-113692 +113689-113692 +113689-113691 +113690-113691 +113693-113724 +113693-113724 +113694-113724 +113694-113697 +113694-113696 +113695-113696 +113698-113705 +113699-113705 +113699-113701 +113700-113701 +113702-113703 +113706-113724 +113708-113724 +113708-113710 +113709-113710 +113711-113724 +113711-113719 +113712-113714 +113713-113714 +113716-113719 +113717-113719 +113720-113724 +113721-113724 +113722-113724 +113723-113724 +113725-113750 +113725-113750 +113726-113750 +113726-113730 +113727-113730 +113728-113730 +113729-113730 +113732-113750 +113733-113735 +113733-113734 +113736-113750 +113736-113740 +113738-113740 +113739-113740 +113741-113750 +113742-113750 +113743-113744 +113745-113750 +113746-113750 +113747-113750 +113748-113750 +113749-113750 +113751-113775 +113751-113775 +113752-113775 +113752-113766 +113752-113754 +113753-113754 +113756-113766 +113757-113761 +113758-113761 +113759-113761 +113760-113761 +113763-113766 +113764-113766 +113765-113766 +113767-113775 +113768-113775 +113768-113771 +113769-113771 +113770-113771 +113772-113775 +113773-113775 +113774-113775 +113776-113795 +113776-113795 +113777-113795 +113777-113782 +113778-113782 +113781-113782 +113784-113795 +113784-113790 +113784-113787 +113784-113786 +113785-113786 +113787 +113788-113790 +113789-113790 +113791-113795 +113791-113794 +113792-113794 +113793-113794 +113796-113814 +113796-113814 +113797-113814 +113797-113800 +113797-113799 +113798-113799 +113801-113814 +113802-113814 +113803-113806 +113807-113814 +113808-113814 +113809-113814 +113810-113811 +113812-113814 +113813-113814 +113815-113825 +113815-113825 +113816-113825 +113816-113820 +113817-113820 +113817-113819 +113818-113819 +113822-113825 +113823-113825 +113824-113825 +113826-113867 +113826-113867 +113827-113867 +113828-113843 +113828-113831 +113828-113829 +113832-113843 +113833-113843 +113834-113838 +113834-113836 +113835-113836 +113839-113843 +113839-113840 +113842-113843 +113843 +113844-113867 +113844-113853 +113848-113849 +113851-113853 +113852-113853 +113854-113867 +113855-113867 +113856-113860 +113857-113860 +113858-113860 +113858-113859 +113861-113867 +113862-113863 +113864-113867 +113865-113867 +113866-113867 +113868-113877 +113868-113877 +113869-113877 +113871-113877 +113872-113877 +113872-113874 +113873-113874 +113876-113877 +113878-113911 +113878-113911 +113879-113911 +113879-113903 +113880-113881 +113882-113898 +113887-113888 +113899-113903 +113899-113901 +113899 +113902-113903 +113903 +113904-113911 +113904-113906 +113905-113906 +113907-113911 +113908-113911 +113908-113910 +113909-113910 +113912-113914 +113912-113914 +113912-113913 +113915-113940 +113915-113940 +113916-113940 +113916-113917 +113919-113940 +113920-113940 +113920-113923 +113921-113923 +113922-113923 +113924-113940 +113925-113940 +113926-113940 +113926-113931 +113927-113931 +113927-113928 +113929-113931 +113930-113931 +113932-113940 +113932-113933 +113934-113940 +113935-113940 +113936-113939 +113936-113938 +113937-113938 +113941-113962 +113941-113962 +113942-113962 +113942-113954 +113942-113948 +113942-113943 +113944-113946 +113945-113946 +113953-113954 +113955-113962 +113955-113958 +113956-113958 +113957-113958 +113959-113962 +113960-113962 +113961-113962 +113963-113967 +113963-113967 +113964-113967 +113966-113967 +113968-113979 +113968-113979 +113969-113979 +113969-113971 +113970-113971 +113975-113979 +113976-113979 +113976-113978 +113977-113978 +113980-114020 +113980-114020 +113981-114020 +113981-114013 +113983-114013 +113983-113997 +113984-113997 +113984-113985 +113986-113987 +113988-113989 +113990-113991 +113992-113993 +113994-113995 +113996-113997 +113998-114013 +113998-114010 +113998-114001 +113998-113999 +114000-114001 +114002-114010 +114005-114010 +114005-114006 +114007-114008 +114009-114010 +114011-114013 +114011-114012 +114014-114020 +114015-114020 +114015-114016 +114019-114020 +114021-114031 +114021-114031 +114022-114031 +114022-114030 +114023-114030 +114024-114030 +114025-114030 +114026-114030 +114028-114030 +114029-114030 +114032-114043 +114032-114043 +114033-114043 +114033-114036 +114033-114034 +114035-114036 +114038-114040 +114039-114040 +114041-114043 +114041-114043 +114042-114043 +114044-114074 +114044-114074 +114045-114074 +114047-114051 +114048-114051 +114049-114051 +114050-114051 +114052-114074 +114053-114074 +114053-114055 +114053-114054 +114056-114074 +114057-114074 +114058-114074 +114058-114059 +114061-114074 +114061-114062 +114063-114074 +114064-114074 +114065-114074 +114067-114068 +114069-114074 +114070-114074 +114071-114074 +114072-114074 +114073-114074 +114075-114102 +114075-114102 +114075-114076 +114077-114090 +114078-114090 +114079-114090 +114080-114090 +114080-114081 +114082-114083 +114084-114085 +114086-114090 +114087-114090 +114088-114090 +114089-114090 +114091-114102 +114092-114102 +114094-114097 +114095-114097 +114095-114096 +114098-114102 +114098-114101 +114099-114101 +114100-114101 +114103-114123 +114103-114123 +114104-114123 +114104-114115 +114105-114115 +114105-114106 +114107-114115 +114108-114115 +114108-114109 +114110-114115 +114111-114115 +114112-114115 +114113-114115 +114113 +114114-114115 +114116-114123 +114117-114123 +114117-114119 +114118-114119 +114120-114123 +114121-114123 +114122-114123 +114124-114137 +114124-114137 +114124-114126 +114125-114126 +114127-114129 +114128-114129 +114130-114137 +114130-114132 +114130 +114131 +114132 +114133-114137 +114134-114137 +114135-114137 +114136-114137 +114138-114170 +114138-114170 +114139-114170 +114139-114140 +114141-114170 +114142-114170 +114142-114157 +114143-114146 +114143-114145 +114144-114145 +114144 +114148-114157 +114148-114151 +114149-114151 +114150-114151 +114155-114157 +114156-114157 +114158-114170 +114159-114170 +114159-114165 +114160-114165 +114160-114162 +114161-114162 +114163-114164 +114166-114170 +114167-114170 +114167-114169 +114168-114169 +114171-114183 +114171-114183 +114172-114183 +114172-114175 +114174-114175 +114176 +114177-114179 +114178-114179 +114180-114183 +114180-114182 +114181-114182 +114184-114194 +114184-114194 +114185-114194 +114185-114187 +114188-114194 +114189-114194 +114189-114193 +114190-114193 +114191-114193 +114192-114193 +114195-114204 +114195-114204 +114195-114198 +114195-114197 +114196-114197 +114199-114201 +114199-114200 +114202-114204 +114202-114203 +114205-114235 +114205-114235 +114208-114235 +114208-114211 +114209-114211 +114209-114210 +114212-114235 +114212-114223 +114215-114219 +114215-114216 +114217-114219 +114218-114219 +114220-114223 +114221-114223 +114222-114223 +114224-114235 +114225-114235 +114225-114235 +114226-114227 +114229-114235 +114230-114235 +114231-114235 +114232-114235 +114233-114235 +114234-114235 +114236-114240 +114236-114240 +114237-114240 +114238-114239 +114241-114263 +114241-114263 +114242-114263 +114242-114258 +114242-114252 +114242-114248 +114245-114248 +114246-114248 +114247-114248 +114249-114252 +114250-114252 +114251-114252 +114253-114255 +114254-114255 +114256-114258 +114257-114258 +114259-114263 +114262-114263 +114264-114274 +114264-114274 +114264-114268 +114264-114265 +114267-114268 +114269-114274 +114270-114274 +114273-114274 +114275-114279 +114275-114279 +114276-114279 +114278-114279 +114280-114295 +114280-114295 +114280-114289 +114280-114287 +114281-114287 +114282-114287 +114284-114285 +114286-114287 +114288 +114290-114295 +114291-114295 +114291-114295 +114291-114292 +114293-114295 +114294-114295 +114296-114302 +114296-114302 +114296-114298 +114297-114298 +114299-114300 +114303-114314 +114303-114314 +114305-114306 +114307-114310 +114308-114310 +114309-114310 +114311-114314 +114312-114313 +114315-114320 +114315-114320 +114316-114320 +114318-114320 +114319-114320 +114321-114332 +114321-114332 +114321-114328 +114321-114325 +114322-114325 +114323-114325 +114324-114325 +114329-114332 +114330-114332 +114333-114335 +114333-114335 +114336-114359 +114336-114359 +114337-114359 +114337-114354 +114337-114343 +114337-114340 +114337-114338 +114341-114343 +114342-114343 +114344-114354 +114345-114354 +114345-114349 +114345-114346 +114347-114348 +114350-114354 +114351-114354 +114352-114354 +114353-114354 +114355-114359 +114356-114359 +114357-114359 +114358-114359 +114360-114384 +114360-114384 +114360-114375 +114360-114367 +114362-114363 +114364-114367 +114365-114367 +114366-114367 +114368-114375 +114369-114375 +114370-114375 +114371-114375 +114372-114375 +114372-114373 +114374-114375 +114377-114378 +114379-114383 +114380-114383 +114381-114383 +114382-114383 +114384 +114385-114392 +114385-114392 +114386-114392 +114387-114388 +114389-114392 +114390-114392 +114391-114392 +114393-114402 +114393-114402 +114393-114396 +114395-114396 +114397-114402 +114398-114402 +114400-114401 +114402 +114403-114406 +114403-114406 +114404-114406 +114404-114405 +114407-114419 +114407-114419 +114409-114419 +114410-114411 +114412-114413 +114414-114415 +114416-114419 +114417-114419 +114417-114418 +114420-114425 +114420-114425 +114420-114421 +114422-114425 +114423-114425 +114424-114425 +114426-114429 +114426-114429 +114426-114427 +114428-114429 +114430-114482 +114430-114482 +114430-114436 +114431-114436 +114431-114432 +114433-114436 +114434-114436 +114435-114436 +114437-114446 +114438-114446 +114438-114440 +114439-114440 +114441-114446 +114442-114446 +114443-114446 +114444-114446 +114445-114446 +114447-114476 +114448-114476 +114449-114476 +114449-114450 +114451-114476 +114451-114458 +114453-114455 +114454-114455 +114456-114458 +114457-114458 +114459-114476 +114460-114476 +114461-114462 +114463-114465 +114464-114465 +114466-114476 +114467-114476 +114468-114476 +114471-114476 +114472-114476 +114473-114476 +114474-114476 +114474-114475 +114477-114482 +114478-114482 +114478-114479 +114480-114482 +114481-114482 +114483-114494 +114483-114494 +114483-114485 +114484-114485 +114486-114494 +114487-114494 +114487-114488 +114489-114494 +114490-114494 +114490-114491 +114492-114494 +114493-114494 +114495-114529 +114495-114529 +114495-114500 +114495-114496 +114499-114500 +114501-114529 +114502-114529 +114502-114504 +114502-114503 +114503 +114505-114529 +114506-114529 +114506-114513 +114506-114509 +114507-114508 +114510-114513 +114511-114513 +114514-114529 +114515-114529 +114517-114529 +114518-114520 +114518-114519 +114521-114529 +114522-114529 +114522-114523 +114524-114529 +114525-114529 +114525-114527 +114526-114527 +114528-114529 +114530-114576 +114530-114576 +114531-114576 +114532-114576 +114532-114533 +114535-114537 +114536-114537 +114538-114555 +114539-114555 +114539-114548 +114539-114540 +114541-114542 +114543-114544 +114545-114546 +114547-114548 +114549-114555 +114550-114555 +114556-114576 +114557-114562 +114558-114562 +114558-114560 +114559-114560 +114561-114562 +114563-114576 +114564-114576 +114565-114576 +114566-114576 +114566-114572 +114567-114572 +114568-114572 +114569-114572 +114569-114570 +114571-114572 +114572 +114573-114576 +114574-114576 +114574-114575 +114575 +114577-114602 +114577-114602 +114578-114602 +114580-114602 +114580-114591 +114580-114588 +114580-114583 +114581-114583 +114582-114583 +114584-114588 +114585-114588 +114586-114588 +114587-114588 +114589-114591 +114589-114590 +114592-114602 +114593-114594 +114596-114602 +114597-114599 +114600-114602 +114600-114601 +114603-114616 +114603-114616 +114604-114609 +114604-114606 +114605-114606 +114607-114609 +114608-114609 +114610-114616 +114612-114616 +114613-114614 +114615-114616 +114617-114621 +114617-114621 +114617-114619 +114617-114618 +114622-114642 +114622-114642 +114622-114627 +114622-114624 +114623-114624 +114629-114642 +114630-114632 +114631-114632 +114633-114642 +114635-114642 +114635-114636 +114637-114642 +114638-114642 +114639-114642 +114640-114642 +114641-114642 +114643-114646 +114643-114646 +114645-114646 +114647-114662 +114647-114662 +114648-114662 +114648-114653 +114648-114651 +114649-114651 +114649 +114650-114651 +114654-114662 +114655-114662 +114656-114662 +114657-114662 +114657-114659 +114658-114659 +114660-114662 +114661-114662 +114663-114679 +114663-114679 +114663-114665 +114663-114664 +114666-114679 +114667-114679 +114667-114668 +114670-114679 +114671-114679 +114672-114673 +114674-114679 +114675-114679 +114675-114678 +114676-114678 +114677-114678 +114680-114687 +114680-114687 +114681-114687 +114683-114687 +114685-114687 +114686-114687 +114686 +114688-114699 +114688-114699 +114690-114699 +114693-114699 +114694-114699 +114694-114695 +114696-114697 +114698-114699 +114700-114733 +114700-114733 +114700-114726 +114702-114703 +114704-114711 +114705-114706 +114707-114710 +114708-114709 +114712-114726 +114713-114726 +114714-114726 +114714-114715 +114717-114726 +114723-114726 +114724-114726 +114725-114726 +114727-114733 +114728-114733 +114729-114732 +114730-114732 +114731-114732 +114734-114738 +114734-114738 +114734-114735 +114738 +114739-114764 +114739-114764 +114739-114753 +114739-114745 +114739-114740 +114743-114745 +114744-114745 +114746-114753 +114746-114748 +114747-114748 +114749-114753 +114751-114753 +114751-114752 +114754-114764 +114755-114764 +114755-114757 +114756-114757 +114759-114764 +114760-114764 +114761-114762 +114763-114764 +114765-114792 +114765-114792 +114765-114781 +114765-114770 +114766-114767 +114769-114770 +114771-114781 +114773-114781 +114773-114776 +114775-114776 +114777-114781 +114778-114781 +114778-114780 +114779-114780 +114782-114792 +114783-114792 +114783-114789 +114783-114784 +114785-114789 +114786-114789 +114787-114789 +114787-114788 +114791-114792 +114793-114856 +114793-114856 +114794-114856 +114795-114798 +114796-114798 +114797-114798 +114799-114801 +114800-114801 +114802-114856 +114804-114856 +114805-114856 +114805-114811 +114806-114811 +114806-114807 +114808-114811 +114809-114811 +114810-114811 +114812-114816 +114813-114814 +114815-114816 +114818-114821 +114819-114821 +114820-114821 +114822-114856 +114823-114856 +114824-114856 +114824-114825 +114826-114856 +114827-114856 +114828-114856 +114829-114856 +114830-114856 +114830-114837 +114830-114835 +114831-114835 +114831-114834 +114832-114834 +114833-114834 +114836-114837 +114838-114856 +114838-114842 +114841-114842 +114844-114856 +114844-114848 +114846-114848 +114847-114848 +114849-114856 +114850-114856 +114852-114856 +114852-114853 +114854-114856 +114855-114856 +114857-114865 +114857-114865 +114857-114858 +114859-114865 +114860-114865 +114860-114862 +114861-114862 +114863-114865 +114864-114865 +114866-114868 +114866-114868 +114869-114891 +114869-114891 +114871-114885 +114871-114873 +114871-114872 +114874 +114875-114880 +114875-114878 +114876-114878 +114877-114878 +114881-114882 +114883-114884 +114885 +114886-114891 +114886-114887 +114889-114891 +114890-114891 +114892-114912 +114892-114912 +114893-114912 +114895-114896 +114897-114912 +114899 +114900-114904 +114901-114904 +114901-114903 +114902-114903 +114905-114909 +114905-114908 +114906-114908 +114907-114908 +114911-114912 +114913-114969 +114913-114969 +114914-114969 +114914-114924 +114915-114924 +114915-114923 +114915-114919 +114915-114916 +114917-114919 +114918-114919 +114920-114923 +114921-114923 +114921-114922 +114925-114958 +114925-114938 +114926-114933 +114927-114933 +114927-114930 +114928-114930 +114929-114930 +114931-114933 +114935-114938 +114936-114938 +114937-114938 +114941-114958 +114942-114958 +114942-114943 +114944-114958 +114945-114958 +114946-114958 +114946-114947 +114948-114958 +114950-114951 +114953-114958 +114954-114958 +114954-114955 +114956-114958 +114957-114958 +114960-114969 +114960-114963 +114961-114963 +114962-114963 +114966-114969 +114967-114969 +114968-114969 +114970-114972 +114970-114972 +114971-114972 +114973-114986 +114973-114986 +114974-114986 +114974-114975 +114977-114986 +114979-114986 +114980-114986 +114981-114983 +114981-114982 +114984-114986 +114985-114986 +114987-114993 +114987-114993 +114989-114991 +114990-114991 +114992-114993 +114994-115009 +114994-115009 +114995-115009 +114995-115003 +114995-114996 +114997-114998 +114999-115000 +115001-115003 +115002-115003 +115005-115009 +115006-115009 +115007-115009 +115008-115009 +115010-115026 +115010-115026 +115010-115011 +115012-115016 +115013-115016 +115013-115015 +115014-115015 +115018-115026 +115019-115026 +115020-115026 +115020-115021 +115022-115024 +115023-115024 +115025-115026 +115027-115043 +115027-115043 +115027-115039 +115027-115033 +115028-115033 +115029-115030 +115031-115033 +115032-115033 +115034-115039 +115035-115039 +115036-115037 +115038-115039 +115040-115043 +115041-115043 +115041-115042 +115044-115054 +115044-115054 +115044-115048 +115044-115046 +115045-115046 +115047-115048 +115051-115054 +115052-115054 +115055-115070 +115055-115070 +115056-115070 +115057-115059 +115058-115059 +115060-115066 +115060-115061 +115063-115066 +115064-115066 +115065-115066 +115067-115070 +115068-115070 +115071-115076 +115071-115076 +115073-115076 +115073-115075 +115074-115075 +115077-115082 +115077-115082 +115078-115082 +115079-115082 +115081-115082 +115083-115087 +115083-115087 +115083-115084 +115085-115087 +115086-115087 +115088-115116 +115088-115116 +115088-115095 +115088-115091 +115089-115091 +115090-115091 +115092-115095 +115093-115095 +115094-115095 +115096-115116 +115096-115101 +115097-115101 +115098-115101 +115098-115100 +115099-115100 +115102-115105 +115103-115105 +115104-115105 +115106-115110 +115107-115110 +115108-115110 +115109-115110 +115111-115116 +115112-115116 +115113-115116 +115113-115115 +115114-115115 +115117-115128 +115117-115128 +115118-115120 +115119-115120 +115121-115128 +115122-115128 +115122-115124 +115123-115124 +115125-115128 +115126-115128 +115127-115128 +115129-115175 +115129-115175 +115130-115132 +115131-115132 +115134-115140 +115134-115135 +115137-115140 +115138-115140 +115139-115140 +115141-115158 +115142-115158 +115142-115147 +115143-115147 +115143-115144 +115145-115147 +115146-115147 +115148-115158 +115150-115158 +115150-115153 +115151-115153 +115151-115152 +115154-115158 +115155-115158 +115156-115158 +115157-115158 +115159-115175 +115160-115175 +115160-115164 +115161-115164 +115162-115164 +115163-115164 +115167-115175 +115168-115175 +115169-115175 +115170-115175 +115171-115175 +115172-115175 +115172-115173 +115174-115175 +115176-115194 +115176-115194 +115177-115194 +115177-115180 +115177-115178 +115179-115180 +115182-115185 +115183-115185 +115184-115185 +115186-115193 +115187-115193 +115187-115190 +115188-115190 +115189-115190 +115192-115193 +115194 +115195-115220 +115195-115220 +115196-115220 +115196-115204 +115196-115199 +115197-115199 +115197-115198 +115201-115204 +115203-115204 +115204 +115205-115207 +115206-115207 +115210-115220 +115210-115214 +115212-115214 +115213-115214 +115215-115220 +115216-115220 +115217-115220 +115218-115220 +115219-115220 +115221-115268 +115221-115268 +115223-115268 +115224-115268 +115224-115226 +115225-115226 +115227-115268 +115228-115230 +115229-115230 +115231-115268 +115232-115268 +115232-115252 +115232-115243 +115233-115243 +115234-115243 +115234-115236 +115235-115236 +115237-115243 +115238-115243 +115239-115243 +115239-115242 +115239-115240 +115241-115242 +115244-115252 +115246-115252 +115247-115252 +115248-115252 +115250-115252 +115251-115252 +115253-115268 +115253-115258 +115255-115258 +115256-115257 +115259-115268 +115260-115268 +115260-115261 +115264-115268 +115265-115268 +115266-115268 +115267-115268 +115269-115288 +115269-115288 +115270-115288 +115270-115273 +115271-115273 +115272-115273 +115274-115275 +115277-115288 +115278-115288 +115279-115285 +115279-115281 +115280-115281 +115282-115284 +115283-115284 +115287-115288 +115287-115288 +115289-115319 +115289-115319 +115290-115319 +115291-115292 +115294-115295 +115296-115319 +115297-115319 +115300-115305 +115301-115302 +115304-115305 +115306-115307 +115308-115319 +115308-115309 +115310-115319 +115311-115319 +115311-115312 +115314-115319 +115314-115316 +115315-115316 +115317-115319 +115318-115319 +115320-115328 +115320-115328 +115321-115328 +115321-115324 +115322-115324 +115325-115328 +115325-115326 +115327-115328 +115328 +115329-115338 +115329-115338 +115330-115338 +115330-115335 +115331-115335 +115331-115333 +115334-115335 +115335 +115339-115355 +115339-115355 +115339-115340 +115342-115344 +115343-115344 +115345-115355 +115345-115346 +115347-115355 +115348-115355 +115351-115355 +115352-115355 +115352-115353 +115356-115362 +115356-115362 +115356 +115357 +115361-115362 +115363-115368 +115363-115368 +115364-115366 +115365-115366 +115367-115368 +115369-115381 +115369-115381 +115369-115372 +115370-115372 +115371-115372 +115375-115381 +115376-115381 +115377-115381 +115377-115380 +115378-115380 +115379-115380 +115382-115396 +115382-115396 +115383-115396 +115383-115387 +115383-115384 +115388-115396 +115389-115396 +115389 +115391-115396 +115391-115394 +115392-115394 +115393-115394 +115397-115412 +115397-115412 +115399-115412 +115399-115405 +115400-115405 +115401-115405 +115401-115402 +115403-115405 +115404-115405 +115406-115412 +115406-115409 +115410-115412 +115411-115412 +115413-115422 +115413-115422 +115413-115418 +115414-115418 +115415-115418 +115415-115416 +115417-115418 +115419-115422 +115420-115422 +115421-115422 +115423-115494 +115423-115494 +115423-115432 +115423-115425 +115424-115425 +115428-115429 +115430-115432 +115431-115432 +115433-115434 +115435-115439 +115436-115439 +115437-115439 +115437-115438 +115442-115494 +115443-115494 +115443-115453 +115443-115447 +115444-115447 +115446-115447 +115448-115453 +115448-115449 +115452-115453 +115454-115494 +115454-115483 +115455-115472 +115455-115463 +115456-115463 +115456-115458 +115457-115458 +115459-115463 +115460-115463 +115461-115463 +115462-115463 +115464-115472 +115465-115472 +115466-115467 +115468-115472 +115469-115472 +115470-115472 +115471-115472 +115473-115476 +115473-115475 +115474-115475 +115478-115481 +115479-115481 +115480-115481 +115482-115483 +115484-115488 +115487-115488 +115490-115491 +115492-115493 +115495-115508 +115495-115508 +115496-115508 +115496-115498 +115497-115498 +115501-115508 +115501-115504 +115501-115502 +115505-115508 +115509-115521 +115509-115521 +115510-115521 +115511-115521 +115511-115515 +115514-115515 +115516-115521 +115517-115521 +115520-115521 +115522-115537 +115522-115537 +115523-115537 +115523-115530 +115524-115530 +115526-115527 +115528-115530 +115529-115530 +115531-115537 +115532-115537 +115533-115537 +115535-115537 +115536-115537 +115538-115578 +115538-115578 +115539-115578 +115539-115555 +115540-115555 +115540-115542 +115541-115542 +115544-115555 +115544-115555 +115545-115555 +115545-115549 +115546-115548 +115547-115548 +115550-115555 +115551-115555 +115551-115553 +115552-115553 +115554-115555 +115556-115578 +115557-115578 +115557-115559 +115557-115559 +115558-115559 +115560-115578 +115560-115561 +115560-115561 +115562-115569 +115562-115564 +115563-115564 +115565-115569 +115566-115569 +115567-115569 +115568-115569 +115570-115578 +115571-115578 +115571-115574 +115572-115574 +115573-115574 +115575-115578 +115576-115578 +115577-115578 +115579-115583 +115579-115583 +115579-115580 +115581-115583 +115582-115583 +115584-115598 +115584-115598 +115584-115585 +115588-115592 +115588-115589 +115590-115592 +115591-115592 +115593-115594 +115595-115598 +115596-115598 +115597-115598 +115599-115614 +115599-115614 +115600-115614 +115600 +115601-115606 +115602-115603 +115604-115605 +115607-115614 +115608-115614 +115608-115611 +115609-115611 +115610-115611 +115613-115614 +115615-115619 +115615-115619 +115615-115616 +115617-115619 +115618-115619 +115620-115633 +115620-115633 +115621-115633 +115621-115624 +115623-115624 +115624 +115625-115633 +115626-115633 +115626-115629 +115626-115627 +115627 +115630-115633 +115630-115631 +115631 +115634-115644 +115634-115644 +115635-115644 +115635-115638 +115636-115637 +115639-115644 +115640-115644 +115640-115642 +115641-115642 +115645-115665 +115645-115665 +115646-115665 +115646-115649 +115647-115649 +115648-115649 +115652-115665 +115652-115655 +115653-115655 +115654-115655 +115656-115665 +115657-115665 +115658-115665 +115659-115661 +115660-115661 +115662-115665 +115663-115665 +115664-115665 +115666-115678 +115666-115678 +115667-115678 +115669-115678 +115670-115678 +115671-115678 +115671-115672 +115674-115678 +115675-115678 +115676-115678 +115677-115678 +115679-115689 +115679-115689 +115679-115680 +115682-115686 +115685-115686 +115686 +115687-115689 +115690-115743 +115690-115743 +115691-115743 +115691-115706 +115692-115706 +115692-115698 +115692-115696 +115693-115696 +115693-115695 +115693-115694 +115699-115706 +115700-115706 +115700-115703 +115701-115703 +115702-115703 +115705-115706 +115707-115743 +115710-115743 +115711-115743 +115711-115712 +115713-115743 +115713-115725 +115714-115719 +115716-115719 +115717-115719 +115718-115719 +115720-115722 +115721-115722 +115722 +115723-115724 +115727-115728 +115729-115739 +115729-115730 +115731-115732 +115733-115735 +115734-115735 +115736-115739 +115737-115739 +115737-115738 +115740-115743 +115741-115743 +115742-115743 +115744-115754 +115744-115754 +115745-115754 +115748-115754 +115748-115751 +115748-115749 +115750-115751 +115751 +115752-115754 +115752-115753 +115755-115771 +115755-115771 +115756-115771 +115759-115771 +115760-115771 +115760-115765 +115763-115765 +115764-115765 +115766-115771 +115767-115771 +115767-115768 +115769-115771 +115770-115771 +115772-115788 +115772-115788 +115772-115777 +115774-115775 +115776-115777 +115778-115782 +115778-115780 +115779-115780 +115783-115788 +115785-115788 +115786-115788 +115787-115788 +115789-115799 +115789-115799 +115790-115799 +115790-115795 +115791-115795 +115792-115795 +115794-115795 +115798-115799 +115800-115807 +115800-115807 +115801-115807 +115804-115807 +115805-115806 +115808-115832 +115808-115832 +115809-115832 +115810-115832 +115810-115816 +115810-115815 +115811-115815 +115811-115812 +115813-115814 +115817-115821 +115818-115821 +115819-115821 +115820-115821 +115822-115824 +115823-115824 +115826-115832 +115827-115832 +115827-115828 +115829-115830 +115833-115857 +115833-115857 +115834-115857 +115835-115844 +115836-115844 +115836-115839 +115836-115837 +115838-115839 +115840-115844 +115841-115844 +115841-115842 +115843-115844 +115845-115857 +115845-115849 +115845-115846 +115847-115848 +115850-115854 +115851-115854 +115852-115854 +115853-115854 +115855-115856 +115858-115867 +115858-115867 +115859-115867 +115859-115864 +115859-115861 +115860-115861 +115861 +115862-115864 +115863-115864 +115864 +115865-115867 +115865-115866 +115868-115888 +115868-115888 +115868-115870 +115869-115870 +115873-115875 +115876-115888 +115877-115888 +115878-115880 +115879-115880 +115881-115883 +115882-115883 +115884-115888 +115884-115886 +115885-115886 +115889-115895 +115889-115895 +115890-115895 +115890 +115891-115895 +115892-115893 +115894-115895 +115896-115907 +115896-115907 +115897-115907 +115898-115907 +115898 +115899-115907 +115900-115907 +115901-115907 +115902-115907 +115903-115907 +115906-115907 +115908-115949 +115908-115949 +115909-115949 +115909-115915 +115910-115915 +115910-115911 +115913-115915 +115914-115915 +115916-115917 +115920-115921 +115922-115949 +115923-115949 +115923-115936 +115923-115925 +115924-115925 +115927-115936 +115927-115932 +115928-115932 +115928-115931 +115929-115931 +115930-115931 +115933-115936 +115935-115936 +115937-115949 +115938-115949 +115939-115949 +115940-115949 +115941-115942 +115943-115946 +115944-115946 +115945-115946 +115946 +115947-115948 +115950-115958 +115950-115958 +115951-115958 +115952-115954 +115953-115954 +115956-115958 +115956-115957 +115959-115982 +115959-115982 +115960-115982 +115960-115965 +115961-115965 +115961-115962 +115963-115964 +115966-115982 +115967-115982 +115968-115971 +115968-115970 +115969-115970 +115972-115975 +115973-115975 +115974-115975 +115976-115982 +115977-115982 +115978-115982 +115979-115982 +115980-115982 +115981-115982 +115983-115992 +115983-115992 +115984-115992 +115984-115988 +115985-115988 +115988 +115990-115992 +115990-115991 +115991 +115993-116020 +115993-116020 +115994-116020 +115994-115998 +115994-115998 +115994-115995 +115996-115998 +115996-115997 +116000-116020 +116000-116006 +116001-116006 +116001-116003 +116002-116003 +116004-116006 +116005-116006 +116007-116020 +116008-116020 +116010-116012 +116011-116012 +116013-116020 +116014-116020 +116014-116015 +116016-116020 +116017-116020 +116018-116020 +116019-116020 +116021-116037 +116021-116037 +116022-116037 +116022-116023 +116025-116026 +116028-116037 +116028-116029 +116030-116031 +116033-116034 +116035-116037 +116036-116037 +116038-116048 +116038-116048 +116039-116048 +116039-116043 +116039-116040 +116042-116043 +116044-116048 +116045-116048 +116045-116047 +116046-116047 +116049-116087 +116049-116087 +116050-116087 +116050-116063 +116051-116063 +116053-116057 +116054-116057 +116055-116057 +116056-116057 +116058-116059 +116060-116063 +116061-116063 +116062-116063 +116063 +116064-116087 +116065-116087 +116066-116067 +116068-116087 +116069-116087 +116070-116087 +116071-116087 +116072-116087 +116072-116075 +116072-116073 +116077-116087 +116077-116083 +116077-116078 +116079-116083 +116080-116083 +116081-116083 +116082-116083 +116084-116085 +116088-116131 +116088-116131 +116089-116131 +116090-116131 +116091-116094 +116092-116094 +116093-116094 +116095-116131 +116095-116100 +116096-116100 +116097-116099 +116098-116099 +116101-116131 +116101-116105 +116103-116105 +116104-116105 +116106-116131 +116107-116131 +116107-116109 +116108-116109 +116110-116114 +116111-116114 +116112-116114 +116113-116114 +116115-116131 +116116-116131 +116116-116117 +116118-116131 +116118-116124 +116120-116122 +116121-116122 +116123-116124 +116125-116131 +116126-116131 +116127-116129 +116128-116129 +116130-116131 +116132-116161 +116132-116161 +116133-116161 +116133-116136 +116134-116136 +116134-116135 +116137-116161 +116138-116161 +116138-116149 +116139-116149 +116139-116142 +116141-116142 +116143-116149 +116144-116149 +116147-116149 +116148-116149 +116150-116161 +116151-116161 +116152-116155 +116153-116155 +116154-116155 +116156-116161 +116157-116161 +116158-116161 +116159-116161 +116160-116161 +116162-116198 +116162-116198 +116162-116178 +116162-116163 +116163 +116164-116178 +116167-116169 +116168-116169 +116170-116172 +116170-116171 +116173-116178 +116174-116178 +116175-116178 +116176-116178 +116177-116178 +116178 +116179-116198 +116180-116198 +116182-116184 +116183-116184 +116185-116189 +116186-116189 +116187-116188 +116190-116198 +116191-116198 +116193-116195 +116194-116195 +116196-116198 +116197-116198 +116199-116230 +116199-116230 +116200-116230 +116200-116203 +116200-116202 +116201-116202 +116204-116230 +116205-116230 +116205-116208 +116206-116208 +116207-116208 +116209-116210 +116213-116230 +116214-116230 +116215-116230 +116216-116230 +116216-116221 +116217-116221 +116218-116220 +116219-116220 +116222-116230 +116222-116226 +116224-116226 +116225-116226 +116227-116230 +116228-116230 +116228-116230 +116229-116230 +116231-116234 +116231-116234 +116232-116234 +116233 +116235-116243 +116235-116243 +116236-116243 +116237-116243 +116237-116243 +116238-116243 +116239-116243 +116240-116241 +116242-116243 +116244-116248 +116244-116248 +116245-116248 +116247-116248 +116249-116258 +116249-116258 +116250-116258 +116250-116258 +116250-116251 +116251 +116252-116258 +116252-116254 +116253-116254 +116256-116258 +116257-116258 +116259-116271 +116259-116271 +116260-116271 +116262-116267 +116264-116267 +116265-116267 +116266-116267 +116268-116271 +116269-116271 +116270-116271 +116271 +116272-116279 +116272-116279 +116273-116279 +116273 +116275-116279 +116277 +116278-116279 +116280-116295 +116280-116295 +116281-116295 +116281 +116282-116295 +116282-116290 +116286-116290 +116287-116290 +116288-116290 +116289-116290 +116292-116294 +116293-116294 +116295 +116296-116315 +116296-116315 +116297-116315 +116297-116301 +116298-116299 +116300-116301 +116301 +116302-116315 +116303-116315 +116305-116308 +116306-116308 +116307-116308 +116310-116315 +116312-116313 +116314-116315 +116315 +116316-116343 +116316-116343 +116317-116343 +116317-116336 +116318-116320 +116319-116320 +116321-116322 +116322 +116323-116336 +116324-116336 +116325-116336 +116326-116336 +116327-116330 +116328-116330 +116329-116330 +116331-116336 +116332-116336 +116333-116336 +116334-116336 +116335-116336 +116337-116343 +116338-116343 +116338-116339 +116340-116342 +116341-116342 +116344-116364 +116344-116364 +116345-116364 +116347-116349 +116348-116349 +116351-116364 +116352-116364 +116353-116354 +116355-116359 +116356-116359 +116357-116359 +116358-116359 +116360-116364 +116361-116364 +116362-116364 +116363-116364 +116365-116374 +116365-116374 +116366-116374 +116366-116367 +116369-116374 +116370-116374 +116371-116374 +116372-116374 +116373-116374 +116375-116413 +116375-116413 +116376-116413 +116376-116389 +116377-116389 +116377-116381 +116378-116381 +116380-116381 +116382-116389 +116383-116389 +116383-116385 +116384-116385 +116388-116389 +116390-116413 +116392-116394 +116392-116393 +116395-116400 +116395-116396 +116398-116400 +116399-116400 +116401-116413 +116402-116413 +116403-116413 +116403-116408 +116404-116408 +116405-116407 +116406-116407 +116409-116413 +116411-116413 +116412-116413 +116414-116426 +116414-116426 +116415-116426 +116415-116418 +116416-116418 +116419-116426 +116420-116426 +116421-116423 +116422-116423 +116425-116426 +116427-116433 +116427-116433 +116428-116433 +116430-116433 +116431-116433 +116432-116433 +116434-116453 +116434-116453 +116435-116453 +116435-116442 +116435-116440 +116436-116440 +116437-116440 +116438-116440 +116439-116440 +116441-116442 +116444-116447 +116445-116447 +116446-116447 +116448-116453 +116449-116453 +116449-116451 +116450-116451 +116452-116453 +116454-116470 +116454-116470 +116455-116470 +116455-116460 +116456-116460 +116457-116460 +116458-116460 +116459-116460 +116461-116470 +116462-116470 +116463-116468 +116464-116468 +116465-116468 +116466-116468 +116467-116468 +116471-116501 +116471-116501 +116472-116501 +116472-116475 +116473-116475 +116474-116475 +116476-116501 +116476 +116477-116478 +116479-116484 +116480-116484 +116481-116484 +116482-116484 +116483-116484 +116485-116495 +116486-116495 +116487-116495 +116488-116495 +116489-116495 +116489-116491 +116490-116491 +116492-116495 +116492-116493 +116494-116495 +116496-116501 +116497-116501 +116498-116501 +116498-116500 +116499-116500 +116502-116521 +116502-116521 +116503-116521 +116503-116508 +116507-116508 +116509-116521 +116510-116521 +116511-116513 +116512-116513 +116513 +116514-116521 +116515-116521 +116516-116521 +116517-116521 +116517-116518 +116520-116521 +116522-116536 +116522-116536 +116523-116536 +116523-116533 +116524-116533 +116524-116528 +116524-116525 +116526-116528 +116527-116528 +116529-116533 +116530-116533 +116531-116533 +116532-116533 +116535-116536 +116537-116554 +116537-116554 +116538-116554 +116539-116554 +116540-116554 +116541-116546 +116543-116546 +116544-116546 +116545-116546 +116548-116554 +116549-116550 +116551-116552 +116553-116554 +116555-116571 +116555-116571 +116556-116571 +116557-116558 +116559-116562 +116560-116562 +116561-116562 +116563-116571 +116564-116571 +116564-116565 +116566-116571 +116567-116571 +116569-116571 +116570-116571 +116572-116618 +116572-116618 +116573-116618 +116573-116577 +116574-116577 +116575-116577 +116575-116576 +116578-116579 +116581-116584 +116582-116584 +116583-116584 +116585-116618 +116586-116618 +116587-116590 +116587-116588 +116589-116590 +116591-116592 +116593-116618 +116594-116598 +116595-116598 +116596-116598 +116596-116598 +116597-116598 +116599-116618 +116600-116618 +116600-116603 +116600-116601 +116604-116618 +116605-116618 +116605-116606 +116608-116618 +116608-116611 +116609-116611 +116609-116611 +116610-116611 +116613-116615 +116614-116615 +116617-116618 +116619-116633 +116619-116633 +116620-116633 +116621-116625 +116624-116625 +116627-116633 +116628-116630 +116629-116630 +116631-116633 +116632-116633 +116632-116633 +116634-116698 +116634-116698 +116634-116642 +116635-116637 +116636-116637 +116641-116642 +116643-116669 +116644-116669 +116644-116655 +116644-116655 +116645-116655 +116646-116647 +116648-116655 +116648-116651 +116648-116649 +116652-116655 +116656-116669 +116657-116669 +116657-116659 +116658-116659 +116661-116669 +116663-116665 +116664-116665 +116666-116669 +116667-116669 +116668-116669 +116670-116698 +116671-116698 +116671-116693 +116671-116676 +116672-116676 +116673-116676 +116674-116676 +116675-116676 +116677-116680 +116677-116678 +116679-116680 +116681-116687 +116682-116687 +116683-116687 +116684-116687 +116686-116687 +116688-116692 +116689-116692 +116689-116690 +116691-116692 +116694-116698 +116695-116698 +116696-116698 +116697-116698 +116699-116707 +116699-116707 +116699-116701 +116700-116701 +116703-116705 +116704-116705 +116706-116707 +116708-116726 +116708-116726 +116709-116726 +116709 +116711-116714 +116712-116714 +116713-116714 +116715-116717 +116716-116717 +116718-116726 +116719-116721 +116720-116721 +116722-116726 +116723-116726 +116724-116726 +116725-116726 +116727-116740 +116727-116740 +116727-116732 +116727-116728 +116731-116732 +116733-116740 +116734-116740 +116735 +116736-116740 +116737-116740 +116739-116740 +116741-116771 +116741-116771 +116742-116771 +116742-116763 +116742-116748 +116744-116745 +116746-116748 +116747-116748 +116751-116763 +116752-116763 +116753-116763 +116756-116763 +116757-116763 +116758-116763 +116759-116763 +116760-116763 +116761-116763 +116762-116763 +116764-116771 +116765-116771 +116766-116771 +116767-116771 +116768-116771 +116769-116771 +116770-116771 +116772-116802 +116772-116802 +116773-116802 +116773-116782 +116773-116776 +116774-116776 +116775-116776 +116777-116779 +116778-116779 +116780-116782 +116781-116782 +116783-116802 +116784-116802 +116785-116787 +116786-116787 +116788-116802 +116789-116802 +116790-116802 +116790-116792 +116791-116792 +116793-116794 +116795 +116797-116802 +116798-116802 +116799-116802 +116799-116800 +116801-116802 +116803-116836 +116803-116836 +116804-116836 +116804-116810 +116805-116810 +116806-116810 +116806-116809 +116807-116809 +116808-116809 +116811-116813 +116812-116813 +116815-116836 +116818-116836 +116818-116826 +116819-116826 +116819-116822 +116820-116822 +116821-116822 +116823-116826 +116824-116826 +116825-116826 +116827-116836 +116828-116836 +116828-116831 +116829-116831 +116830-116831 +116832-116836 +116832-116833 +116834-116836 +116835-116836 +116837-116843 +116837-116843 +116838-116843 +116840-116843 +116841-116843 +116842-116843 +116844-116882 +116844-116882 +116845-116882 +116846-116874 +116846-116870 +116847-116870 +116847-116848 +116849-116854 +116850-116854 +116851-116854 +116852-116854 +116853-116854 +116855-116859 +116856-116859 +116856-116858 +116857-116858 +116860-116868 +116861-116868 +116862-116868 +116862-116864 +116863-116864 +116865-116868 +116866-116868 +116867-116868 +116867 +116869-116870 +116870 +116873-116874 +116875-116882 +116875-116880 +116877-116880 +116878-116880 +116879-116880 +116881-116882 +116882 +116883-116920 +116883-116920 +116884-116920 +116884-116906 +116884-116901 +116885-116901 +116886-116901 +116886-116892 +116887-116892 +116888-116892 +116888-116891 +116888-116889 +116893-116901 +116894-116901 +116895-116896 +116897-116901 +116898-116901 +116898-116899 +116904-116906 +116905-116906 +116907-116920 +116908-116920 +116908-116912 +116908-116911 +116909-116911 +116910-116911 +116913-116915 +116914-116915 +116914-116915 +116916-116920 +116916-116918 +116917-116918 +116919-116920 +116921-116934 +116921-116934 +116922-116934 +116922 +116924-116925 +116926-116930 +116927-116930 +116928-116930 +116929-116930 +116931-116934 +116932-116934 +116935-116957 +116935-116957 +116936-116957 +116938-116939 +116940-116957 +116941-116957 +116941-116943 +116942-116943 +116944-116957 +116945-116957 +116946-116957 +116947-116957 +116949-116952 +116950-116952 +116951-116952 +116953-116957 +116953-116955 +116954-116955 +116956-116957 +116958-116986 +116958-116986 +116959-116986 +116960-116972 +116960-116961 +116962-116964 +116963-116964 +116966-116970 +116967-116970 +116968-116970 +116969-116970 +116971-116972 +116973-116986 +116974-116986 +116974-116976 +116977-116986 +116978-116986 +116978-116986 +116979-116986 +116980-116986 +116980-116983 +116981-116983 +116982-116983 +116985-116986 +116987-117011 +116987-117011 +116988-117011 +116988-116990 +116988-116989 +116991-116992 +116993-116998 +116994-116998 +116994-116997 +116994-116996 +116995-116996 +117000-117001 +117002-117011 +117003-117011 +117004-117011 +117005-117011 +117005-117007 +117005 +117008-117011 +117009-117011 +117009 +117012-117017 +117012-117017 +117013-117017 +117014 +117016-117017 +117018-117032 +117018-117032 +117019-117032 +117019-117023 +117020-117022 +117021-117022 +117024-117032 +117025-117032 +117026-117028 +117026-117027 +117029-117030 +117031-117032 +117033-117101 +117033-117101 +117033-117050 +117033-117046 +117033-117034 +117037-117046 +117038-117041 +117039-117041 +117040-117041 +117042-117046 +117043-117046 +117044-117046 +117045-117046 +117047-117048 +117052-117101 +117052-117060 +117053-117060 +117053-117055 +117054-117055 +117056-117060 +117056-117057 +117059-117060 +117061-117062 +117064-117065 +117065 +117066-117101 +117067-117101 +117067-117069 +117068-117069 +117068 +117070-117101 +117072-117101 +117073-117101 +117073-117075 +117074-117075 +117076-117101 +117076-117079 +117076-117077 +117078-117079 +117080-117101 +117081-117101 +117082-117101 +117083-117101 +117083-117086 +117084-117086 +117085-117086 +117087-117101 +117088-117089 +117090-117091 +117093-117101 +117093-117096 +117094-117096 +117095-117096 +117099-117101 +117100-117101 +117102-117166 +117102-117166 +117103-117166 +117103-117131 +117103-117124 +117103-117112 +117104-117112 +117104-117107 +117104-117105 +117106-117107 +117108-117112 +117109-117112 +117109-117110 +117111-117112 +117113-117124 +117114-117124 +117114-117121 +117116-117121 +117117-117121 +117118-117121 +117119-117121 +117120-117121 +117122-117124 +117123-117124 +117125-117131 +117126-117127 +117128-117129 +117132-117145 +117132-117136 +117133-117136 +117135-117136 +117137-117145 +117138-117145 +117139-117145 +117140-117145 +117140-117141 +117142-117145 +117144-117145 +117146-117161 +117146-117148 +117149-117161 +117149-117155 +117149-117154 +117149-117151 +117150-117151 +117152-117154 +117153-117154 +117156-117161 +117157-117161 +117158-117161 +117159-117161 +117160-117161 +117164-117166 +117165-117166 +117167-117179 +117167-117179 +117168-117179 +117169-117179 +117170-117179 +117171-117179 +117173-117175 +117174-117175 +117177-117179 +117178-117179 +117180-117222 +117180-117222 +117181-117222 +117181-117208 +117182-117208 +117182-117189 +117183-117189 +117183-117186 +117184-117186 +117185-117186 +117187-117188 +117192-117208 +117193-117195 +117194-117195 +117196-117202 +117196-117197 +117198-117202 +117200-117202 +117201-117202 +117203-117208 +117204-117208 +117205-117208 +117206-117208 +117207-117208 +117209-117222 +117210-117222 +117210-117216 +117210-117214 +117211-117214 +117213-117214 +117217-117222 +117218-117222 +117218-117221 +117219-117221 +117220-117221 +117223-117232 +117223-117232 +117224-117232 +117224-117226 +117225-117226 +117227-117228 +117229-117231 +117230-117231 +117233-117244 +117233-117244 +117234-117244 +117234-117239 +117235-117239 +117237-117238 +117237 +117240-117244 +117241-117244 +117243-117244 +117244 +117245-117268 +117245-117268 +117246-117268 +117246-117256 +117246-117248 +117247-117248 +117249-117256 +117249-117250 +117251-117255 +117252-117255 +117253-117255 +117254-117255 +117257-117268 +117258-117268 +117259-117263 +117260-117263 +117261-117263 +117262-117263 +117265-117268 +117266-117268 +117269-117300 +117269-117300 +117270-117300 +117271-117300 +117271-117283 +117272-117283 +117272-117277 +117273-117276 +117274-117276 +117275-117276 +117278-117283 +117279-117283 +117279-117280 +117281-117282 +117284-117300 +117287-117300 +117287-117293 +117287-117290 +117288-117290 +117289-117290 +117292-117293 +117294-117300 +117295-117300 +117296-117299 +117297-117299 +117298-117299 +117301-117310 +117301-117310 +117302-117310 +117302-117304 +117303-117304 +117305-117310 +117305-117306 +117307-117309 +117308-117309 +117311-117324 +117311-117324 +117312-117324 +117312-117318 +117312-117315 +117312-117313 +117316-117317 +117319-117320 +117323-117324 +117325-117341 +117325-117341 +117326-117341 +117327-117333 +117328-117333 +117328-117329 +117331-117333 +117332-117333 +117334-117341 +117334-117336 +117335-117336 +117337-117338 +117342-117366 +117342-117366 +117343-117366 +117344-117345 +117347-117366 +117348-117366 +117348-117351 +117349-117351 +117350-117351 +117353-117366 +117353-117354 +117355-117366 +117357-117366 +117358-117361 +117359-117361 +117360-117361 +117363-117366 +117364-117366 +117365-117366 +117367-117378 +117367-117378 +117368-117378 +117369-117378 +117370-117378 +117372-117374 +117373-117374 +117375-117378 +117376-117378 +117377-117378 +117379-117404 +117379-117404 +117380-117404 +117380-117395 +117381-117395 +117381-117383 +117382-117383 +117382 +117385-117390 +117386-117390 +117387-117390 +117388-117390 +117389-117390 +117391-117395 +117392-117395 +117394-117395 +117396-117404 +117397-117404 +117397-117404 +117398-117404 +117398-117399 +117400-117404 +117400-117401 +117403-117404 +117405-117445 +117405-117445 +117406-117445 +117406-117437 +117406-117410 +117406-117407 +117409-117410 +117412-117437 +117412-117418 +117413-117418 +117414-117415 +117416-117417 +117419-117437 +117420-117437 +117421-117422 +117423-117437 +117424-117437 +117425-117437 +117426-117427 +117428-117437 +117428-117432 +117428-117429 +117430-117432 +117431-117432 +117433-117437 +117435-117437 +117436-117437 +117438-117439 +117440-117443 +117441-117443 +117441-117442 +117446-117470 +117446-117470 +117447-117470 +117447-117457 +117448-117457 +117448-117449 +117450-117451 +117453-117457 +117454-117457 +117455-117457 +117457 +117458-117470 +117459-117470 +117460-117466 +117461-117466 +117462-117466 +117464-117466 +117465-117466 +117469-117470 +117471-117490 +117471-117490 +117472-117490 +117474-117483 +117475-117477 +117476-117477 +117478-117483 +117479-117483 +117480-117481 +117482-117483 +117484-117490 +117486-117490 +117487-117490 +117488-117490 +117489-117490 +117491-117534 +117491-117534 +117492-117534 +117492-117528 +117495-117528 +117495-117508 +117496-117508 +117497-117508 +117500-117508 +117500-117503 +117501-117503 +117502-117503 +117504-117508 +117505-117508 +117506-117507 +117509-117528 +117512-117513 +117515-117517 +117516-117517 +117518-117528 +117518-117524 +117519-117522 +117520-117522 +117521-117522 +117525-117528 +117526-117528 +117527-117528 +117529-117534 +117530-117534 +117533-117534 +117535-117556 +117535-117556 +117536-117556 +117536-117542 +117536-117537 +117541-117542 +117543-117556 +117544-117556 +117544-117551 +117545-117551 +117546-117551 +117546-117547 +117548-117551 +117549-117551 +117550-117551 +117553-117556 +117553-117555 +117554-117555 +117557-117589 +117557-117589 +117558-117589 +117558-117561 +117558-117561 +117559-117561 +117560-117561 +117561 +117562-117589 +117563-117589 +117564-117589 +117564-117575 +117565-117575 +117567-117572 +117568-117572 +117569-117572 +117570-117572 +117571-117572 +117573-117575 +117574-117575 +117576-117589 +117577-117589 +117577-117578 +117579-117589 +117580-117589 +117581-117589 +117581-117583 +117582-117583 +117584-117589 +117586-117589 +117586-117587 +117588-117589 +117590-117600 +117590-117600 +117591-117600 +117591-117592 +117593-117599 +117594-117599 +117595-117599 +117596-117599 +117596-117597 +117598-117599 +117601-117608 +117601-117608 +117602-117608 +117603-117608 +117604-117605 +117606-117608 +117607-117608 +117609-117669 +117609-117669 +117610-117669 +117610-117653 +117611-117653 +117611-117614 +117612-117614 +117613-117614 +117615-117653 +117616-117653 +117616-117618 +117619-117653 +117620-117625 +117621-117625 +117622-117623 +117624-117625 +117626-117653 +117626-117632 +117627-117631 +117627-117629 +117628-117629 +117630-117631 +117634-117653 +117636-117639 +117637-117639 +117638-117639 +117640-117653 +117641-117653 +117642-117653 +117642 +117645-117653 +117646-117653 +117646-117647 +117648-117653 +117649-117653 +117651-117653 +117652-117653 +117654-117669 +117655-117669 +117655-117658 +117656-117657 +117662-117669 +117663-117669 +117663-117664 +117665-117669 +117666-117668 +117667-117668 +117670-117681 +117670-117681 +117671-117681 +117671-117676 +117672-117676 +117672-117674 +117672-117673 +117678-117681 +117679-117680 +117682-117737 +117682-117737 +117683-117737 +117683-117684 +117686-117737 +117686-117690 +117686-117688 +117686 +117687-117688 +117689-117690 +117691-117737 +117692-117737 +117692-117735 +117693-117701 +117693-117696 +117694-117696 +117695-117696 +117697-117701 +117698-117701 +117699-117701 +117700-117701 +117702-117703 +117704-117735 +117704-117724 +117705-117724 +117706-117724 +117707-117724 +117708-117724 +117708-117712 +117710-117712 +117711-117712 +117713-117714 +117717-117719 +117718-117719 +117720-117724 +117722-117724 +117723-117724 +117725-117735 +117726-117735 +117726-117732 +117729-117732 +117730-117732 +117731-117732 +117733-117735 +117736-117737 +117738-117776 +117738-117776 +117739-117776 +117739-117750 +117740-117750 +117741-117750 +117742-117750 +117744-117746 +117745-117746 +117747-117750 +117748-117750 +117748-117749 +117751-117776 +117753-117776 +117753-117765 +117753-117759 +117754-117755 +117756-117759 +117757-117759 +117758-117759 +117760-117765 +117761-117765 +117761-117763 +117762-117763 +117766-117776 +117767-117776 +117767-117770 +117769-117770 +117771-117776 +117772-117776 +117775-117776 +117777-117802 +117777-117802 +117778-117802 +117778-117793 +117778-117784 +117778-117779 +117782-117784 +117783-117784 +117785-117793 +117786-117793 +117787-117789 +117788-117789 +117790-117793 +117791-117793 +117792-117793 +117794-117802 +117795-117802 +117798-117802 +117798-117799 +117800-117802 +117801-117802 +117803-117816 +117803-117816 +117804-117816 +117804-117808 +117806-117808 +117807-117808 +117809-117816 +117810-117816 +117810-117812 +117811-117812 +117813-117814 +117817-117823 +117817-117823 +117817-117820 +117818-117820 +117819-117820 +117822-117823 +117824-117830 +117824-117830 +117825-117830 +117825-117828 +117826-117828 +117826 +117827-117828 +117828 +117829-117830 +117831-117842 +117831-117842 +117832-117842 +117833-117842 +117834-117836 +117835-117836 +117837-117842 +117837-117838 +117839-117842 +117840-117842 +117840-117841 +117843-117863 +117843-117863 +117844-117863 +117845-117863 +117845-117860 +117845-117847 +117846-117847 +117848-117860 +117848-117849 +117850-117860 +117850-117852 +117851-117852 +117853-117855 +117854-117855 +117856-117860 +117857-117860 +117858-117860 +117859-117860 +117861-117863 +117864-117910 +117864-117910 +117865-117910 +117865-117868 +117866-117868 +117867-117868 +117869-117910 +117869-117873 +117870-117873 +117871-117873 +117872-117873 +117874-117910 +117875-117910 +117875-117876 +117877-117910 +117878-117910 +117878-117884 +117878-117881 +117879-117881 +117880-117881 +117882-117884 +117885-117910 +117885-117902 +117885-117886 +117887-117902 +117887-117891 +117887-117888 +117889-117891 +117890-117891 +117892-117897 +117893-117897 +117893-117895 +117894-117895 +117896-117897 +117897 +117898-117902 +117899-117902 +117900-117902 +117901-117902 +117903-117910 +117904-117910 +117904-117905 +117906-117910 +117906-117907 +117908-117910 +117909-117910 +117911-117918 +117911-117918 +117911-117912 +117916-117918 +117917-117918 +117919-118010 +117919-118010 +117920-118010 +117920-117957 +117920-117922 +117923-117957 +117923-117935 +117924-117935 +117924-117927 +117925-117927 +117926-117927 +117928-117929 +117931-117932 +117933-117935 +117933-117934 +117936-117957 +117937-117957 +117937-117939 +117938-117939 +117940-117942 +117941-117942 +117944-117945 +117946-117957 +117947-117957 +117948-117957 +117949-117957 +117951-117957 +117952-117957 +117953-117957 +117954-117957 +117955-117957 +117955-117956 +117958-118010 +117960-117963 +117961-117963 +117962-117963 +117964-118010 +117966-117969 +117967-117969 +117967-117968 +117970-118010 +117970-117975 +117971-117973 +117972-117973 +117978-117982 +117979-117982 +117979-117980 +117981-117982 +117982 +117983-118010 +117983-118004 +117983-117996 +117983-117984 +117985-117988 +117985-117986 +117987-117988 +117990-117996 +117992-117996 +117992-117993 +117995-117996 +117996 +117998-118004 +117999-118004 +118000-118001 +118002-118004 +118003-118004 +118005-118010 +118005-118006 +118007-118010 +118007-118009 +118008-118009 +118011-118050 +118011-118050 +118012-118050 +118012 +118013-118017 +118014-118017 +118015-118017 +118016-118017 +118016 +118018-118042 +118018-118037 +118018-118031 +118019-118031 +118020-118031 +118020-118025 +118020-118023 +118020-118022 +118021-118022 +118024-118025 +118026-118031 +118029-118031 +118030-118031 +118032-118037 +118033-118037 +118034-118037 +118035-118037 +118036-118037 +118038-118042 +118039-118042 +118040-118042 +118041-118042 +118045-118047 +118046-118047 +118048-118050 +118048-118049 +118051-118096 +118051-118096 +118052-118096 +118052-118069 +118053-118069 +118053-118060 +118053-118057 +118054-118057 +118055-118057 +118056-118057 +118058-118060 +118059-118060 +118061-118063 +118062-118063 +118063 +118065-118069 +118066-118069 +118067-118069 +118067-118068 +118070-118071 +118072-118084 +118073-118084 +118074-118084 +118074-118075 +118076-118084 +118077-118079 +118078-118079 +118083-118084 +118086-118088 +118087-118088 +118089-118091 +118090-118091 +118092-118096 +118093-118096 +118094-118096 +118095-118096 +118096 +118097-118122 +118097-118122 +118098-118122 +118098-118099 +118100-118102 +118100-118101 +118104-118122 +118105-118122 +118105-118114 +118107-118114 +118108-118114 +118109-118114 +118110-118114 +118110-118113 +118111-118113 +118112-118113 +118115-118122 +118116-118117 +118117 +118118-118122 +118119-118122 +118120-118122 +118121-118122 +118123-118130 +118123-118130 +118124-118130 +118124-118125 +118127-118130 +118128-118130 +118129-118130 +118130 +118131-118143 +118131-118143 +118132-118143 +118133-118134 +118136-118143 +118137-118143 +118140-118143 +118141-118143 +118142-118143 +118143 +118144-118150 +118144-118150 +118145-118150 +118146-118147 +118148-118149 +118151-118198 +118151-118198 +118152-118198 +118152-118162 +118153-118154 +118155-118157 +118156-118157 +118158-118159 +118160-118162 +118161-118162 +118163-118177 +118164-118170 +118165-118170 +118166-118170 +118166-118167 +118168-118170 +118169-118170 +118171-118177 +118172-118177 +118173-118175 +118174-118175 +118176-118177 +118178-118185 +118178-118181 +118179-118181 +118180-118181 +118182-118185 +118183-118185 +118184-118185 +118187-118198 +118188-118198 +118189-118198 +118190-118198 +118191-118198 +118192-118198 +118193-118198 +118195-118196 +118197-118198 +118199-118212 +118199-118212 +118200-118212 +118200-118208 +118200-118202 +118201-118202 +118203-118208 +118204-118208 +118205-118208 +118206-118208 +118207-118208 +118209-118210 +118213-118227 +118213-118227 +118214-118227 +118214-118221 +118215-118216 +118219-118221 +118220-118221 +118222-118227 +118223-118227 +118223-118224 +118228-118246 +118228-118246 +118229-118246 +118230-118246 +118230-118238 +118231-118238 +118231-118236 +118232-118236 +118233-118236 +118234-118236 +118235-118236 +118239-118246 +118240-118246 +118240-118242 +118241-118242 +118243-118246 +118244-118246 +118245-118246 +118247-118269 +118247-118269 +118248-118269 +118250-118261 +118251-118256 +118252-118256 +118252-118253 +118254-118256 +118255-118256 +118258-118261 +118259-118261 +118260-118261 +118262-118269 +118264-118267 +118265-118267 +118266-118267 +118268-118269 +118270-118294 +118270-118294 +118271-118294 +118272-118294 +118275-118286 +118276-118286 +118276-118277 +118279-118281 +118280-118281 +118282-118283 +118284-118286 +118285-118286 +118287-118294 +118288-118294 +118289-118294 +118292-118294 +118293-118294 +118295-118310 +118295-118310 +118296-118310 +118298-118301 +118299-118301 +118300-118301 +118302-118305 +118303-118305 +118304-118305 +118306-118309 +118307-118309 +118308-118309 +118311-118343 +118311-118343 +118312-118343 +118312-118322 +118312-118318 +118312-118313 +118315-118316 +118317-118318 +118319-118322 +118320-118322 +118320-118321 +118324-118326 +118325-118326 +118327-118333 +118329-118333 +118330-118333 +118331-118333 +118331-118332 +118334-118335 +118336-118337 +118339-118341 +118340-118341 +118342-118343 +118344-118388 +118344-118388 +118345-118388 +118345-118346 +118347-118357 +118348-118357 +118348-118351 +118349-118351 +118350-118351 +118350 +118352-118357 +118353-118357 +118354-118357 +118355-118357 +118356-118357 +118358-118359 +118360-118367 +118361-118367 +118362-118367 +118363-118367 +118365-118367 +118366-118367 +118370-118372 +118370-118371 +118371 +118373-118388 +118374-118388 +118375-118388 +118376-118388 +118377 +118378-118388 +118379-118388 +118380-118388 +118383-118384 +118385-118386 +118386 +118387-118388 +118389-118395 +118389-118395 +118390-118395 +118390-118391 +118392-118393 +118394-118395 +118396-118403 +118396-118403 +118397-118403 +118398-118403 +118398-118401 +118399-118401 +118400-118401 +118404-118441 +118404-118441 +118405-118441 +118405-118408 +118406-118408 +118407-118408 +118410-118441 +118410-118418 +118410-118414 +118410-118412 +118411-118412 +118415-118418 +118416-118418 +118419-118424 +118419-118422 +118420-118422 +118421-118422 +118425-118441 +118427-118441 +118427-118428 +118427-118428 +118430-118435 +118430-118432 +118431-118432 +118434-118435 +118436-118441 +118437-118441 +118438-118441 +118439-118441 +118440-118441 +118442-118469 +118442-118469 +118442-118462 +118442-118460 +118444-118460 +118445-118460 +118445-118456 +118445-118452 +118446-118447 +118448-118449 +118450-118452 +118451-118452 +118453-118456 +118458-118459 +118465-118469 +118466-118469 +118467-118469 +118468-118469 +118470-118476 +118470-118476 +118471-118472 +118473-118476 +118474-118476 +118474-118475 +118477-118489 +118477-118489 +118477-118479 +118478-118479 +118480-118481 +118482-118488 +118483-118488 +118484-118488 +118485-118488 +118486-118488 +118487-118488 +118490-118508 +118490-118508 +118491-118508 +118492-118508 +118492-118493 +118495-118508 +118495-118497 +118495-118496 +118498-118508 +118499-118508 +118501-118508 +118502-118508 +118503-118508 +118504-118508 +118507-118508 +118509-118535 +118509-118535 +118510-118535 +118511-118518 +118511-118512 +118513-118514 +118516-118518 +118517-118518 +118520-118523 +118521-118523 +118522-118523 +118524-118535 +118524-118525 +118527-118535 +118528-118535 +118529-118531 +118530-118531 +118532-118535 +118533-118535 +118534-118535 +118536-118544 +118536-118544 +118537-118544 +118537-118538 +118540-118542 +118541-118542 +118543-118544 +118544 +118545-118552 +118545-118552 +118546-118552 +118548-118552 +118549-118552 +118550-118552 +118551-118552 +118553-118602 +118553-118602 +118554-118602 +118554-118594 +118554-118569 +118554-118567 +118555-118567 +118556-118567 +118557-118567 +118558-118567 +118559-118567 +118560-118567 +118562-118563 +118564-118567 +118565-118567 +118565-118566 +118570-118582 +118570-118575 +118571-118572 +118573-118575 +118574-118575 +118576-118580 +118577-118580 +118578-118580 +118579-118580 +118583-118594 +118584-118594 +118584-118590 +118584-118586 +118585-118586 +118587-118590 +118588-118590 +118589-118590 +118591-118592 +118595-118602 +118596-118602 +118596-118598 +118597-118598 +118600-118602 +118601-118602 +118603-118657 +118603-118657 +118604-118657 +118604 +118605-118638 +118605-118630 +118606-118611 +118607-118611 +118608-118611 +118609-118611 +118610-118611 +118612-118615 +118613-118615 +118614-118615 +118616-118630 +118619-118622 +118620-118622 +118621-118622 +118622 +118623-118630 +118624-118630 +118624-118625 +118626-118630 +118628-118630 +118629-118630 +118631-118638 +118632-118638 +118632-118633 +118634-118638 +118635-118638 +118636-118638 +118637-118638 +118640-118642 +118641-118642 +118643-118645 +118644-118645 +118646-118657 +118646-118651 +118647-118648 +118649-118651 +118650-118651 +118652-118657 +118653-118657 +118654-118655 +118656-118657 +118658-118667 +118658-118667 +118659-118662 +118660-118662 +118661-118662 +118664-118667 +118665-118667 +118666-118667 +118667 +118668-118694 +118668-118694 +118669-118694 +118671-118676 +118672-118676 +118673-118676 +118674-118676 +118675-118676 +118677-118694 +118678-118684 +118679-118681 +118680-118681 +118682-118684 +118683-118684 +118686-118694 +118688-118694 +118689-118694 +118690-118694 +118692-118694 +118693-118694 +118695-118722 +118695-118722 +118696-118722 +118696-118705 +118699-118705 +118700-118705 +118701-118705 +118702-118705 +118703-118705 +118704-118705 +118706-118710 +118707-118708 +118711-118722 +118712-118722 +118712-118722 +118712-118715 +118713-118715 +118714-118715 +118716-118722 +118717-118722 +118718-118722 +118719-118722 +118720-118722 +118721-118722 +118723-118734 +118723-118734 +118724-118726 +118725-118726 +118727-118728 +118729-118733 +118730-118733 +118730-118732 +118731-118732 +118735-118761 +118735-118761 +118737-118761 +118737-118738 +118740-118761 +118741-118761 +118741-118745 +118741-118744 +118742-118744 +118743-118744 +118746-118755 +118747-118755 +118749-118755 +118749-118752 +118750-118752 +118751-118752 +118753-118755 +118753-118754 +118756-118761 +118757-118761 +118757-118760 +118758-118760 +118759-118760 +118762-118776 +118762-118776 +118763-118776 +118764-118776 +118765-118776 +118765-118769 +118766-118769 +118766-118767 +118768-118769 +118770-118776 +118771-118776 +118771 +118772-118776 +118774-118776 +118775-118776 +118777-118783 +118777-118783 +118778-118783 +118779-118783 +118780-118783 +118781-118783 +118782-118783 +118783 +118784-118809 +118784-118809 +118785-118809 +118786-118809 +118786-118788 +118787-118788 +118789-118809 +118789-118790 +118791 +118793-118795 +118794-118795 +118796-118809 +118796-118802 +118797-118802 +118798-118801 +118798-118799 +118800-118801 +118803-118809 +118804-118809 +118805-118808 +118806-118808 +118807-118808 +118810-118830 +118810-118830 +118811-118830 +118811-118814 +118811-118813 +118812-118813 +118815-118830 +118816-118830 +118816-118820 +118817-118820 +118818-118820 +118819-118820 +118819 +118821-118822 +118824-118830 +118825-118830 +118827-118830 +118828-118830 +118829-118830 +118830 +118831-118840 +118831-118840 +118832-118840 +118834-118840 +118834-118836 +118835-118836 +118837-118840 +118839-118840 +118841-118853 +118841-118853 +118842-118853 +118842-118844 +118842-118843 +118845-118853 +118846-118853 +118846-118850 +118846-118849 +118847-118849 +118848-118849 +118852-118853 +118854-118864 +118854-118864 +118855-118864 +118855-118861 +118856-118858 +118857-118858 +118859-118860 +118860 +118862-118864 +118863-118864 +118865-118881 +118865-118881 +118866-118881 +118866-118871 +118866-118868 +118867-118868 +118869-118870 +118872-118881 +118873-118881 +118873-118874 +118874 +118875-118881 +118877-118879 +118878-118879 +118880-118881 +118882-118893 +118882-118893 +118883-118893 +118885-118893 +118886-118888 +118887-118888 +118890-118893 +118891-118893 +118892-118893 +118894-118902 +118894-118902 +118895-118902 +118897-118902 +118897-118898 +118897 +118899-118902 +118900-118902 +118901-118902 +118903-118908 +118903-118908 +118904-118908 +118904-118905 +118907-118908 +118909-118923 +118909-118923 +118911-118923 +118912-118913 +118914-118915 +118916-118923 +118917-118923 +118918-118923 +118919-118920 +118920 +118921-118922 +118922 +118924-118950 +118924-118950 +118926-118929 +118926-118927 +118928-118929 +118931-118932 +118933-118950 +118933-118944 +118933-118937 +118933-118934 +118936-118937 +118939-118942 +118940-118942 +118941-118942 +118943-118944 +118945-118950 +118946-118950 +118946-118947 +118948 +118951-118965 +118951-118965 +118951-118957 +118954-118957 +118955-118957 +118958-118965 +118959-118965 +118959-118960 +118961-118965 +118962-118965 +118964-118965 +118966-118993 +118966-118993 +118967-118993 +118967-118973 +118967-118969 +118968-118969 +118971-118973 +118972-118973 +118974-118993 +118975-118993 +118975-118976 +118978 +118979-118993 +118980-118993 +118981-118993 +118982-118985 +118983-118985 +118984-118985 +118986-118993 +118987-118993 +118987 +118988-118993 +118989-118993 +118989-118991 +118990-118991 +118994-119020 +118994-119020 +118996-119000 +118997-119000 +118998-119000 +118999-119000 +119001 +119004-119008 +119005-119008 +119006-119008 +119007-119008 +119009-119020 +119009-119013 +119009-119010 +119012-119013 +119014-119020 +119015-119020 +119015-119019 +119015-119018 +119016-119018 +119016-119017 +119021-119038 +119021-119038 +119021-119032 +119022 +119025-119032 +119026-119032 +119027-119032 +119028-119032 +119029-119032 +119031-119032 +119033-119038 +119034-119038 +119035-119038 +119037-119038 +119039-119059 +119039-119059 +119041-119044 +119042-119044 +119043-119044 +119045-119046 +119047-119059 +119047-119048 +119050-119059 +119051-119059 +119051-119053 +119052-119053 +119054-119059 +119055-119059 +119056-119059 +119057-119059 +119058-119059 +119060-119072 +119060-119072 +119061-119072 +119062-119072 +119062-119066 +119063-119066 +119063-119065 +119063-119064 +119067-119072 +119067-119070 +119068-119070 +119069-119070 +119071-119072 +119073-119090 +119073-119090 +119074-119076 +119075-119076 +119078-119080 +119079-119080 +119082-119085 +119083-119085 +119084-119085 +119086-119090 +119087-119090 +119089-119090 +119090 +119091-119117 +119091-119117 +119092-119117 +119092-119095 +119093-119095 +119094-119095 +119095 +119097-119098 +119099-119117 +119099-119105 +119100-119105 +119100-119103 +119101-119103 +119102-119103 +119104-119105 +119106-119117 +119107-119117 +119108-119117 +119108-119115 +119108-119109 +119110-119115 +119111-119115 +119112-119115 +119113-119115 +119114-119115 +119116-119117 +119118-119142 +119118-119142 +119118-119119 +119121-119122 +119123-119142 +119124-119126 +119125-119126 +119128-119142 +119128-119132 +119130-119132 +119131-119132 +119133-119142 +119134-119142 +119135-119142 +119136-119142 +119136-119138 +119137-119138 +119140-119142 +119141-119142 +119143-119150 +119143-119150 +119144-119150 +119144-119146 +119145-119146 +119148-119150 +119149-119150 +119151-119169 +119151-119169 +119152-119169 +119152-119162 +119153-119162 +119153-119158 +119154-119158 +119155-119158 +119156-119158 +119156-119157 +119160-119162 +119162 +119163-119169 +119164-119169 +119166-119169 +119167-119169 +119170-119178 +119170-119178 +119171-119178 +119174-119175 +119176-119178 +119176-119177 +119179-119182 +119179-119182 +119180-119182 +119183-119214 +119183-119214 +119183-119188 +119186-119187 +119188 +119189-119214 +119190-119214 +119190-119191 +119193-119205 +119193-119196 +119194-119196 +119194-119195 +119197-119205 +119197-119199 +119197-119198 +119201-119205 +119201-119202 +119206-119214 +119207-119214 +119208-119214 +119208-119211 +119208-119210 +119209-119210 +119213-119214 +119215-119220 +119215-119220 +119216-119220 +119217-119219 +119218-119219 +119221-119231 +119221-119231 +119222-119224 +119223-119224 +119224 +119227-119231 +119227-119228 +119229-119231 +119230-119231 +119232-119247 +119232-119247 +119232-119239 +119234 +119235-119238 +119236-119238 +119237-119238 +119240-119247 +119241-119247 +119242-119247 +119243-119247 +119244-119247 +119245-119247 +119246-119247 +119248-119263 +119248-119263 +119248-119257 +119250 +119251-119256 +119252-119256 +119253-119256 +119254-119256 +119255-119256 +119258-119263 +119259-119263 +119259-119262 +119260-119262 +119261-119262 +119264-119284 +119264-119284 +119266 +119269-119272 +119270-119272 +119271-119272 +119273-119284 +119274-119284 +119274-119277 +119275-119277 +119276-119277 +119278-119284 +119279-119284 +119281-119284 +119282-119284 +119283-119284 +119285-119320 +119285-119320 +119287-119288 +119290-119293 +119291-119293 +119292-119293 +119294-119305 +119295-119305 +119295-119300 +119297-119300 +119298-119300 +119299-119300 +119301-119305 +119302-119305 +119304-119305 +119306-119315 +119306-119307 +119309-119311 +119310-119311 +119312-119315 +119313-119315 +119314-119315 +119316-119320 +119317-119320 +119318-119320 +119319-119320 +119321-119335 +119321-119335 +119324-119329 +119326-119329 +119327-119329 +119328-119329 +119330-119335 +119331-119335 +119331-119332 +119333-119334 +119334 +119336-119352 +119336-119352 +119338-119344 +119338-119339 +119340-119344 +119341-119344 +119342-119344 +119343-119344 +119345-119352 +119346-119352 +119347-119350 +119348-119350 +119349-119350 +119353-119367 +119353-119367 +119355-119357 +119356-119357 +119358-119361 +119359-119361 +119360-119361 +119362-119367 +119362-119364 +119362-119363 +119365-119366 +119368-119376 +119368-119376 +119369-119371 +119370-119371 +119373-119376 +119374-119376 +119375-119376 +119377-119389 +119377-119389 +119378-119380 +119379-119380 +119383-119384 +119384 +119385-119389 +119386-119387 +119388-119389 +119390-119393 +119390-119393 +119391-119393 +119394-119439 +119394-119439 +119395-119439 +119396-119397 +119398-119439 +119400-119439 +119401-119439 +119401-119411 +119401-119404 +119405-119411 +119405-119406 +119407-119408 +119409-119411 +119410-119411 +119412-119439 +119412-119416 +119413-119414 +119417-119418 +119419-119420 +119421-119423 +119422-119423 +119424-119426 +119425-119426 +119427-119429 +119428-119429 +119430-119432 +119431-119432 +119433-119436 +119435-119436 +119437-119439 +119437-119438 +119440-119446 +119440-119446 +119442-119443 +119444-119446 +119445-119446 +119447-119457 +119447-119457 +119448-119457 +119450-119453 +119452-119453 +119454-119457 +119455-119457 +119455-119456 +119458-119469 +119458-119469 +119459-119469 +119459-119464 +119460-119463 +119460-119462 +119461-119462 +119465-119469 +119466-119469 +119466-119469 +119467-119469 +119468-119469 +119470-119503 +119470-119503 +119470 +119471 +119472 +119473-119476 +119473-119475 +119474-119475 +119477-119497 +119478-119482 +119478-119479 +119480-119482 +119481-119482 +119483-119485 +119483 +119484 +119485 +119486-119497 +119487-119497 +119488-119497 +119489-119490 +119491-119492 +119493-119497 +119494-119497 +119495-119497 +119496-119497 +119498-119503 +119502-119503 +119504-119526 +119504-119526 +119505-119526 +119505-119521 +119505-119506 +119507-119510 +119508-119510 +119509-119510 +119513-119514 +119515-119521 +119515-119516 +119517-119518 +119519-119520 +119522-119526 +119523-119526 +119524-119525 +119527-119576 +119527-119576 +119528-119576 +119528-119529 +119530-119535 +119531-119535 +119532-119535 +119532-119533 +119534-119535 +119536-119542 +119537-119542 +119537-119538 +119539-119542 +119540-119542 +119541-119542 +119543-119544 +119546-119549 +119547-119549 +119547-119548 +119550-119576 +119551-119576 +119552-119576 +119552-119558 +119552-119557 +119553-119557 +119553-119554 +119555-119557 +119556-119557 +119559-119576 +119559-119568 +119560-119564 +119561-119564 +119562-119564 +119562-119563 +119567-119568 +119569-119576 +119570-119576 +119570-119575 +119571-119575 +119572-119575 +119573-119575 +119574-119575 +119577-119594 +119577-119594 +119578-119594 +119579-119587 +119580-119587 +119581-119587 +119582-119587 +119582-119584 +119583-119584 +119585-119587 +119585-119586 +119588-119594 +119589-119594 +119591-119593 +119592-119593 +119594 +119595-119602 +119595-119602 +119596-119597 +119599-119602 +119599-119601 +119600-119601 +119603-119622 +119603-119622 +119604-119622 +119605-119622 +119605-119606 +119607-119622 +119607-119611 +119609-119610 +119610 +119612-119613 +119612-119613 +119614-119617 +119616-119617 +119618-119622 +119619-119622 +119620-119622 +119620-119621 +119623-119633 +119623-119633 +119624-119633 +119624-119627 +119624-119625 +119628-119633 +119629-119633 +119630-119633 +119631-119633 +119632-119633 +119634-119636 +119634-119636 +119634-119635 +119637-119642 +119637-119642 +119637-119638 +119638 +119641-119642 +119643-119649 +119643-119649 +119644-119649 +119645-119649 +119646-119649 +119650-119664 +119650-119664 +119651-119664 +119651-119658 +119652-119658 +119653-119658 +119654-119658 +119655-119658 +119655-119656 +119660-119664 +119660-119663 +119661-119663 +119662-119663 +119665-119685 +119665-119685 +119666-119685 +119666-119675 +119666-119673 +119667-119671 +119668-119671 +119668-119670 +119669-119670 +119674-119675 +119675 +119676-119685 +119676-119683 +119677-119678 +119680-119683 +119681-119683 +119682-119683 +119684-119685 +119685 +119686-119707 +119686-119707 +119687-119707 +119687-119696 +119688-119696 +119689-119691 +119690-119691 +119692-119695 +119693-119695 +119694-119695 +119697-119707 +119698-119707 +119699-119701 +119700-119701 +119701 +119702-119707 +119703-119707 +119704-119707 +119705-119707 +119706-119707 +119708-119730 +119708-119730 +119709-119730 +119709-119710 +119711-119730 +119711-119720 +119712-119720 +119712-119714 +119713-119714 +119714 +119716-119720 +119717-119718 +119720 +119721-119730 +119722-119730 +119723-119725 +119723-119724 +119726-119729 +119727-119729 +119727-119728 +119731-119754 +119731-119754 +119732-119754 +119732-119739 +119732-119738 +119732-119734 +119733-119734 +119733 +119735-119738 +119736-119738 +119737-119738 +119737 +119740-119746 +119741-119746 +119741-119742 +119744-119746 +119745-119746 +119747-119754 +119748-119754 +119748-119751 +119749-119750 +119752-119754 +119753-119754 +119755-119804 +119755-119804 +119756-119757 +119758-119767 +119759-119767 +119760-119767 +119760-119761 +119762-119767 +119762-119763 +119766-119767 +119768-119804 +119769-119804 +119769-119776 +119770-119776 +119772-119776 +119773-119776 +119774-119776 +119775-119776 +119777-119789 +119778-119789 +119778-119783 +119778-119780 +119779-119780 +119781-119782 +119784-119789 +119785-119789 +119785-119786 +119788-119789 +119790-119804 +119791-119804 +119792-119804 +119793-119804 +119794-119804 +119795-119804 +119796-119804 +119797-119804 +119798-119800 +119799-119800 +119802-119804 +119803-119804 +119805-119824 +119805-119824 +119806-119824 +119807-119824 +119808-119824 +119809-119813 +119811-119813 +119812-119813 +119815-119824 +119816-119824 +119816-119817 +119820-119824 +119821-119824 +119821-119822 +119825-119851 +119825-119851 +119826-119851 +119828-119851 +119828 +119829-119831 +119830-119831 +119830 +119832-119833 +119834-119835 +119836-119837 +119838-119840 +119839-119840 +119841-119851 +119842-119851 +119842-119843 +119844-119851 +119845-119846 +119846 +119848-119851 +119852-119862 +119852-119862 +119853-119862 +119855-119862 +119856-119862 +119857-119862 +119857-119861 +119858-119861 +119860-119861 +119862 +119863-119874 +119863-119874 +119864-119874 +119864-119868 +119867-119868 +119868 +119869-119874 +119871-119874 +119872-119874 +119873-119874 +119875-119915 +119875-119915 +119876-119915 +119877-119915 +119877-119878 +119879-119884 +119880-119884 +119880-119882 +119881-119882 +119882 +119883-119884 +119885-119888 +119886-119888 +119886-119887 +119889-119894 +119890-119894 +119891-119894 +119892-119894 +119893-119894 +119895-119898 +119896-119898 +119896-119897 +119899-119902 +119900-119902 +119901-119902 +119902 +119903-119907 +119904-119907 +119904-119906 +119904-119905 +119908-119915 +119909-119915 +119909-119910 +119911-119915 +119913-119915 +119914-119915 +119916-119920 +119916-119920 +119916 +119917-119920 +119918-119920 +119919-119920 +119920 +119921-119938 +119921-119938 +119922-119938 +119922-119930 +119923-119930 +119925-119930 +119926-119930 +119927-119930 +119928-119930 +119928-119929 +119931-119938 +119931-119932 +119933-119938 +119934-119938 +119935-119938 +119935-119937 +119936-119937 +119939-119961 +119939-119961 +119939-119945 +119939-119941 +119940-119941 +119942-119943 +119946-119961 +119947-119961 +119949-119961 +119950-119961 +119950-119951 +119954-119961 +119955-119957 +119956-119957 +119959-119961 +119960-119961 +119962-119977 +119962-119977 +119963-119977 +119963-119965 +119964-119965 +119967-119970 +119968-119970 +119968-119969 +119969 +119971-119972 +119972 +119973-119977 +119974-119977 +119975-119977 +119976-119977 +119978-119993 +119978-119993 +119979-119993 +119979-119981 +119979-119980 +119983-119993 +119984-119993 +119984-119985 +119988-119989 +119990-119993 +119991-119993 +119992-119993 +119994-120000 +119994-120000 +119995-120000 +119995-119998 +119996-119998 +119997-119998 +119999-120000 +120000 +120001-120003 +120001-120003 +120001-120002 +120004-120014 +120004-120014 +120004-120007 +120004-120005 +120008-120014 +120009-120014 +120009-120010 +120013-120014 +120015-120027 +120015-120027 +120015-120019 +120016-120017 +120018-120019 +120019 +120020-120027 +120020-120021 +120021 +120022-120027 +120023-120027 +120023-120024 +120026-120027 +120028-120043 +120028-120043 +120028-120036 +120028-120032 +120029-120030 +120031-120032 +120033-120036 +120034-120036 +120034-120035 +120037-120043 +120038-120043 +120038-120040 +120039-120040 +120042-120043 +120044-120046 +120044-120046 +120045-120046 +120047-120049 +120047-120049 +120048-120049 +120049 +120050-120074 +120050-120074 +120051-120074 +120051-120061 +120053-120061 +120053-120056 +120053-120054 +120057-120061 +120058-120061 +120058-120059 +120062-120074 +120063-120074 +120063 +120066-120074 +120066-120068 +120069-120070 +120071-120074 +120075-120094 +120075-120094 +120076-120094 +120076-120085 +120076-120078 +120077-120078 +120077 +120079-120085 +120082-120085 +120083-120085 +120084-120085 +120086-120094 +120086-120091 +120086-120090 +120087-120090 +120088-120090 +120089-120090 +120093-120094 +120095-120105 +120095-120105 +120095-120101 +120095-120096 +120097-120099 +120098-120099 +120100-120101 +120102-120105 +120103-120105 +120103-120105 +120104-120105 +120106-120111 +120106-120111 +120106-120109 +120107-120109 +120108-120109 +120112-120125 +120112-120125 +120113-120125 +120114-120125 +120116-120117 +120118-120125 +120119-120125 +120120-120125 +120120-120121 +120124-120125 +120125 +120126-120137 +120126-120137 +120127-120137 +120128-120137 +120128-120130 +120128-120129 +120134-120137 +120135-120137 +120135-120136 +120138-120158 +120138-120158 +120139-120158 +120139-120151 +120140-120143 +120140-120141 +120142-120143 +120144-120145 +120146-120148 +120147-120148 +120149-120151 +120150-120151 +120152-120158 +120152-120154 +120153-120154 +120156-120158 +120157-120158 +120159-120173 +120159-120173 +120160-120173 +120160-120161 +120162-120169 +120163-120169 +120164-120167 +120165-120167 +120166-120167 +120168-120169 +120170-120172 +120171-120172 +120174-120184 +120174-120184 +120175-120184 +120176-120177 +120178-120180 +120179-120180 +120181-120184 +120181-120183 +120182-120183 +120185-120194 +120185-120194 +120186-120194 +120187-120190 +120189-120190 +120189 +120192-120194 +120192-120193 +120193 +120195-120212 +120195-120212 +120196-120212 +120196-120197 +120199-120200 +120201-120202 +120203-120212 +120203-120204 +120205-120212 +120207-120212 +120208-120212 +120209-120212 +120210-120212 +120211-120212 +120213-120225 +120213-120225 +120214-120225 +120214-120219 +120214-120217 +120215-120217 +120216-120217 +120220-120225 +120221-120225 +120221-120222 +120224-120225 +120226-120253 +120226-120253 +120226-120231 +120226-120229 +120227-120229 +120228-120229 +120228 +120230-120231 +120231 +120232-120241 +120233-120241 +120235-120238 +120236-120238 +120237-120238 +120239-120241 +120240-120241 +120242-120253 +120243-120253 +120243-120246 +120243-120244 +120247-120253 +120248-120253 +120248-120249 +120249 +120250-120253 +120251-120253 +120254-120267 +120254-120267 +120255-120256 +120257-120267 +120258-120267 +120259-120267 +120260-120267 +120260-120261 +120263-120267 +120263-120266 +120263-120264 +120268-120276 +120268-120276 +120269-120276 +120271-120272 +120273-120276 +120274-120276 +120277-120329 +120277-120329 +120278-120329 +120278-120299 +120278-120281 +120279-120281 +120280-120281 +120282-120299 +120283-120299 +120284-120285 +120286-120289 +120287-120289 +120288-120289 +120290-120299 +120290-120295 +120291-120295 +120291-120293 +120292-120293 +120294-120295 +120296-120299 +120296-120298 +120297-120298 +120302-120304 +120303-120304 +120305-120310 +120306-120310 +120307-120310 +120308-120310 +120309-120310 +120311-120320 +120312-120313 +120314-120315 +120316-120317 +120318-120320 +120319-120320 +120321-120328 +120322-120323 +120324-120328 +120325-120328 +120326-120328 +120327-120328 +120329 +120330-120344 +120330-120344 +120331-120344 +120331-120338 +120331-120333 +120333 +120334-120338 +120335-120338 +120336-120338 +120337-120338 +120339-120344 +120340-120344 +120340-120342 +120341-120342 +120345-120357 +120345-120357 +120346-120350 +120346-120349 +120346-120348 +120347-120348 +120351-120357 +120351-120352 +120353-120355 +120354-120355 +120358-120366 +120358-120366 +120359-120366 +120359-120362 +120360-120362 +120361-120362 +120361 +120363-120366 +120364-120366 +120365-120366 +120367-120372 +120367-120372 +120369-120372 +120370-120372 +120371-120372 +120373-120377 +120373-120377 +120373-120374 +120375-120377 +120376-120377 +120378-120392 +120378-120392 +120378-120384 +120379-120384 +120379-120383 +120380-120383 +120381-120383 +120382-120383 +120385-120391 +120386-120391 +120386-120387 +120388-120391 +120389-120391 +120390-120391 +120392 +120393-120410 +120393-120410 +120393-120394 +120393-120394 +120395-120396 +120398-120401 +120399-120401 +120399-120400 +120402-120410 +120403-120410 +120404-120410 +120404-120408 +120405-120408 +120406-120408 +120407-120408 +120411-120424 +120411-120424 +120412-120424 +120412-120413 +120414-120415 +120417-120424 +120418-120424 +120419-120421 +120420-120421 +120422-120424 +120422-120423 +120425-120443 +120425-120443 +120426-120443 +120426-120430 +120427-120430 +120427-120428 +120431-120443 +120431-120440 +120432-120440 +120433-120440 +120434-120440 +120434-120439 +120434-120436 +120437-120439 +120438-120439 +120441-120443 +120442-120443 +120444-120449 +120444-120449 +120445-120449 +120446-120447 +120448-120449 +120450-120458 +120450-120458 +120451-120458 +120451-120452 +120452 +120454-120458 +120454-120455 +120456-120458 +120456 +120457-120458 +120458 +120459-120478 +120459-120478 +120460-120478 +120460-120470 +120462-120464 +120462-120463 +120465-120470 +120466-120470 +120468-120470 +120469-120470 +120471-120478 +120471-120472 +120474-120478 +120475-120478 +120476-120478 +120477-120478 +120479-120500 +120479-120500 +120480-120500 +120480-120488 +120481-120484 +120482-120484 +120483-120484 +120485-120488 +120486-120488 +120487-120488 +120489-120500 +120490-120500 +120490-120495 +120490-120491 +120492-120495 +120493-120495 +120494-120495 +120496-120500 +120497-120500 +120497-120499 +120498-120499 +120498-120499 +120501-120523 +120501-120523 +120502-120523 +120502-120511 +120502-120507 +120503-120504 +120505-120507 +120506-120507 +120508-120511 +120509-120511 +120510-120511 +120512-120523 +120513-120523 +120513-120516 +120513-120515 +120514-120515 +120517-120523 +120518-120523 +120518-120522 +120519-120522 +120520-120522 +120521-120522 +120524-120532 +120524-120532 +120525-120527 +120526-120527 +120528-120531 +120529-120531 +120530-120531 +120533-120550 +120533-120550 +120533-120537 +120534-120537 +120535-120537 +120538-120550 +120539-120550 +120539-120540 +120542-120550 +120542-120545 +120543-120545 +120544-120545 +120546-120550 +120548-120550 +120549-120550 +120551-120557 +120551-120557 +120552 +120554-120557 +120555-120557 +120555-120556 +120558-120567 +120558-120567 +120559-120567 +120559-120563 +120559-120560 +120564-120567 +120565-120567 +120568-120577 +120568-120577 +120569-120577 +120571-120577 +120571-120574 +120572-120574 +120573-120574 +120575-120577 +120576-120577 +120578-120589 +120578-120589 +120578-120583 +120579-120580 +120581 +120584-120589 +120585-120589 +120585-120586 +120587 +120590-120594 +120590-120594 +120592-120594 +120592-120594 +120592-120593 +120595-120617 +120595-120617 +120595-120601 +120595-120597 +120596-120597 +120598-120601 +120599-120601 +120600-120601 +120604-120617 +120605-120617 +120606-120617 +120606-120609 +120607-120609 +120608-120609 +120610-120617 +120610-120611 +120614-120617 +120615-120617 +120616-120617 +120618-120631 +120618-120631 +120618 +120621-120622 +120623-120631 +120624-120631 +120625-120631 +120627-120631 +120627-120628 +120629-120631 +120630-120631 +120632-120635 +120632-120635 +120633-120635 +120633-120635 +120633-120634 +120636-120650 +120636-120650 +120637-120650 +120637-120643 +120638-120639 +120641-120643 +120642-120643 +120643 +120644-120647 +120645-120647 +120646-120647 +120647 +120648-120650 +120649-120650 +120651-120657 +120651-120657 +120652-120657 +120652-120653 +120654-120655 +120658-120676 +120658-120676 +120659-120676 +120659-120664 +120660-120664 +120661-120664 +120662-120664 +120663-120664 +120665-120666 +120668-120676 +120668-120670 +120669-120670 +120671-120676 +120672-120676 +120673-120676 +120674-120676 +120675-120676 +120677-120716 +120677-120716 +120678-120716 +120678-120686 +120678-120680 +120679-120680 +120681-120686 +120682-120686 +120685-120686 +120687-120716 +120688-120716 +120688-120695 +120689-120695 +120689-120692 +120690-120691 +120693-120695 +120694-120695 +120696-120716 +120698-120706 +120699-120706 +120700-120704 +120701-120704 +120702-120704 +120703-120704 +120705-120706 +120707-120716 +120708-120716 +120708-120709 +120710-120711 +120711 +120712-120716 +120713-120716 +120715-120716 +120717-120741 +120717-120741 +120718-120741 +120718-120734 +120718-120734 +120719-120734 +120719-120725 +120720-120725 +120721-120725 +120721-120722 +120723-120725 +120724-120725 +120726-120734 +120727-120734 +120728-120734 +120729-120734 +120730-120731 +120733-120734 +120737-120740 +120738-120740 +120739-120740 +120742-120758 +120742-120758 +120742-120754 +120743-120754 +120745-120746 +120747-120754 +120748-120750 +120749-120750 +120752-120754 +120753-120754 +120755-120758 +120755-120757 +120756-120757 +120759-120783 +120759-120783 +120759-120767 +120759-120762 +120760-120762 +120761-120762 +120763-120767 +120764-120767 +120765-120767 +120766-120767 +120769-120783 +120770-120783 +120770-120777 +120771-120773 +120772-120773 +120774-120777 +120775-120777 +120776-120777 +120778-120783 +120781-120783 +120782-120783 +120784-120798 +120784-120798 +120784-120785 +120784-120785 +120787-120788 +120790-120798 +120791-120798 +120792-120798 +120792-120796 +120792-120794 +120793-120794 +120795-120796 +120797-120798 +120799-120853 +120799-120853 +120800-120853 +120800-120844 +120801-120844 +120801-120816 +120801-120809 +120802-120804 +120803-120804 +120805-120809 +120805-120806 +120807-120809 +120808-120809 +120810-120816 +120811-120816 +120812-120816 +120813-120816 +120814-120816 +120815-120816 +120817-120844 +120818-120844 +120818-120831 +120818-120825 +120819-120825 +120820-120825 +120821-120825 +120822-120825 +120823-120825 +120824-120825 +120826-120831 +120827-120831 +120828-120831 +120832-120844 +120833-120844 +120833-120834 +120836-120844 +120836-120838 +120839-120844 +120840-120844 +120841-120844 +120842-120844 +120843-120844 +120845-120853 +120846-120853 +120846-120848 +120847-120848 +120849-120853 +120850-120853 +120851-120853 +120852-120853 +120854-120857 +120854-120857 +120855-120857 +120855-120857 +120855-120856 +120858-120877 +120858-120877 +120859-120877 +120859-120860 +120862-120865 +120863-120865 +120864-120865 +120866-120877 +120866-120868 +120867-120868 +120869-120877 +120870-120877 +120871-120877 +120872-120877 +120873-120877 +120875-120877 +120876-120877 +120878-120882 +120878-120882 +120879-120882 +120881-120882 +120883-120893 +120883-120893 +120884-120893 +120884-120887 +120884-120885 +120888-120893 +120889-120893 +120892-120893 +120894-120903 +120894-120903 +120895-120903 +120897-120903 +120897-120899 +120898-120899 +120900-120903 +120901-120903 +120902-120903 +120904-120919 +120904-120919 +120904-120917 +120905-120917 +120906-120917 +120906-120907 +120909-120917 +120910-120917 +120911-120917 +120912-120917 +120912-120915 +120913-120915 +120914-120915 +120916-120917 +120917 +120918-120919 +120920-120930 +120920-120930 +120921-120930 +120921-120922 +120922 +120923-120930 +120925-120930 +120926-120928 +120927-120928 +120929-120930 +120930 +120931-120943 +120931-120943 +120932-120943 +120932-120940 +120932-120936 +120933-120935 +120934-120935 +120937-120940 +120938-120940 +120939-120940 +120942-120943 +120944-120952 +120944-120952 +120945-120952 +120945-120948 +120946-120948 +120947-120948 +120951-120952 +120953-120961 +120953-120961 +120954-120961 +120954-120958 +120955-120958 +120955-120956 +120957-120958 +120958 +120959-120961 +120960-120961 +120962-120972 +120962-120972 +120962-120966 +120962-120963 +120964-120966 +120965-120966 +120967-120972 +120968-120972 +120968-120971 +120968-120970 +120969-120970 +120973-120983 +120973-120983 +120974-120983 +120974-120980 +120974-120975 +120977-120980 +120978-120980 +120981-120983 +120984-120997 +120984-120997 +120984-120985 +120984-120985 +120986-120988 +120987-120988 +120989-120997 +120990-120997 +120990-120993 +120990-120991 +120994-120997 +120995-120997 +120998-121003 +120998-121003 +120999-121003 +121000-121001 +121002-121003 +121004-121037 +121004-121037 +121004-121034 +121005-121034 +121005-121014 +121005-121009 +121005-121007 +121006-121007 +121010-121014 +121011-121014 +121012-121014 +121013-121014 +121015-121034 +121016-121034 +121016-121026 +121018-121020 +121019-121020 +121021-121026 +121021-121023 +121022-121023 +121024-121026 +121024 +121025-121026 +121026 +121027-121034 +121028-121034 +121031-121034 +121032-121034 +121033-121034 +121035-121037 +121036-121037 +121038-121049 +121038-121049 +121039-121041 +121040-121041 +121042-121045 +121043-121045 +121048-121049 +121050-121058 +121050-121058 +121051-121058 +121053-121058 +121056-121058 +121059-121075 +121059-121075 +121061-121063 +121062-121063 +121064-121066 +121065-121066 +121067-121075 +121070-121073 +121071-121073 +121072-121073 +121074-121075 +121076-121082 +121076-121082 +121078-121082 +121079-121082 +121081-121082 +121083-121084 +121083-121084 +121085-121090 +121085-121090 +121085-121088 +121085-121087 +121086-121087 +121089-121090 +121090 +121091-121104 +121091-121104 +121092-121104 +121092-121094 +121092-121094 +121093-121094 +121096-121104 +121097-121104 +121098-121104 +121098-121099 +121100-121102 +121101-121102 +121105-121120 +121105-121120 +121105-121108 +121105-121108 +121106-121108 +121107-121108 +121110-121120 +121110-121111 +121113-121120 +121114-121117 +121115-121117 +121116-121117 +121118-121120 +121119-121120 +121121-121155 +121121-121155 +121121 +121123-121155 +121123-121135 +121123-121128 +121123-121124 +121126-121128 +121127-121128 +121129-121135 +121130-121135 +121130-121132 +121131-121132 +121133-121134 +121136-121155 +121137-121155 +121137-121151 +121138-121151 +121138-121139 +121140-121151 +121141-121151 +121142-121151 +121142-121146 +121143-121146 +121145-121146 +121147-121151 +121148-121151 +121150-121151 +121152-121155 +121153-121155 +121153-121154 +121156-121166 +121156-121166 +121157-121166 +121158-121166 +121158-121161 +121158-121159 +121162-121166 +121163-121166 +121164-121165 +121167-121183 +121167-121183 +121168-121183 +121169-121172 +121170-121172 +121171-121172 +121173-121175 +121174-121175 +121177-121183 +121177-121179 +121178-121179 +121180-121183 +121181-121183 +121181-121182 +121184-121199 +121184-121199 +121185-121199 +121185-121191 +121186-121191 +121186-121187 +121188-121189 +121192-121199 +121194-121195 +121196-121197 +121200-121210 +121200-121210 +121200-121201 +121200-121201 +121206-121210 +121207-121210 +121208-121210 +121208-121209 +121211-121214 +121211-121214 +121212-121214 +121215-121229 +121215-121229 +121215-121220 +121216-121220 +121217-121218 +121221-121229 +121222-121229 +121222-121223 +121224-121229 +121225-121229 +121226-121229 +121227-121229 +121228-121229 +121230-121250 +121230-121250 +121231-121250 +121231-121244 +121232-121244 +121232-121235 +121232-121233 +121234-121235 +121236-121238 +121237-121238 +121240-121244 +121241-121244 +121242-121244 +121245-121250 +121245-121249 +121246-121249 +121247-121249 +121248-121249 +121251-121271 +121251-121271 +121252-121254 +121253-121254 +121255-121261 +121255-121256 +121257-121261 +121258-121261 +121258-121260 +121259-121260 +121263-121265 +121264-121265 +121266-121271 +121267-121270 +121268-121270 +121269-121270 +121270 +121272-121281 +121272-121281 +121272-121278 +121273-121275 +121274-121275 +121276-121277 +121279-121281 +121280-121281 +121282-121287 +121282-121287 +121283-121284 +121285-121286 +121288-121318 +121288-121318 +121289-121318 +121289-121295 +121289-121291 +121289-121290 +121292-121295 +121292-121295 +121293-121295 +121294-121295 +121296-121318 +121296-121302 +121296-121297 +121299-121302 +121300-121302 +121301-121302 +121303-121318 +121303-121318 +121304-121318 +121304-121307 +121305-121307 +121306-121307 +121308-121313 +121309-121313 +121310-121313 +121311-121313 +121312-121313 +121314-121318 +121315-121318 +121316-121318 +121317-121318 +121319-121348 +121319-121348 +121320-121348 +121320-121336 +121320-121329 +121321-121329 +121322-121329 +121322-121323 +121324-121325 +121326-121327 +121328-121329 +121330-121332 +121331-121332 +121333-121336 +121334-121336 +121335-121336 +121337-121348 +121338-121348 +121338-121343 +121338-121340 +121338-121339 +121342-121343 +121344-121348 +121344-121348 +121346-121348 +121347-121348 +121349-121366 +121349-121366 +121349-121355 +121349-121350 +121352-121355 +121353-121355 +121354-121355 +121356-121366 +121357-121366 +121357-121358 +121360-121366 +121360-121361 +121362-121366 +121363-121366 +121363-121365 +121364-121365 +121367-121374 +121367-121374 +121367-121370 +121368-121370 +121369-121370 +121372-121374 +121373-121374 +121375-121381 +121375-121381 +121375-121376 +121375-121376 +121379-121381 +121382-121394 +121382-121394 +121383-121394 +121383-121384 +121385-121388 +121386-121388 +121387-121388 +121390-121394 +121390-121391 +121392-121394 +121393-121394 +121395-121404 +121395-121404 +121395-121396 +121395-121396 +121398-121404 +121398-121401 +121400-121401 +121402-121404 +121403-121404 +121405-121409 +121405-121409 +121406-121409 +121408-121409 +121410-121415 +121410-121415 +121411-121413 +121412-121413 +121414-121415 +121416-121426 +121416-121426 +121417-121420 +121418-121420 +121419-121420 +121421-121423 +121422-121423 +121424-121426 +121425-121426 +121427-121444 +121427-121444 +121428-121444 +121428-121437 +121429-121437 +121430-121433 +121430-121431 +121432-121433 +121434-121437 +121435-121437 +121436-121437 +121438-121444 +121439-121444 +121439 +121440-121444 +121441-121444 +121442-121444 +121443-121444 +121445-121455 +121445-121455 +121446-121451 +121447-121449 +121448-121449 +121450-121451 +121453-121455 +121453-121455 +121456-121466 +121456-121466 +121457-121466 +121457-121460 +121458-121460 +121459-121460 +121461-121466 +121462-121466 +121463-121466 +121464-121466 +121465-121466 +121467-121485 +121467-121485 +121468-121485 +121468-121470 +121469-121470 +121475-121485 +121476-121485 +121479-121483 +121480-121483 +121481-121483 +121482-121483 +121486-121494 +121486-121494 +121487-121494 +121487-121488 +121489-121490 +121492-121494 +121493-121494 +121495-121501 +121495-121501 +121495-121496 +121497-121501 +121498-121501 +121500-121501 +121502-121513 +121502-121513 +121503-121513 +121503-121513 +121504-121513 +121505-121513 +121505-121507 +121506-121507 +121508-121513 +121509-121513 +121510-121513 +121511-121513 +121512-121513 +121514-121517 +121514-121517 +121514 +121515-121517 +121516-121517 +121518-121524 +121518-121524 +121518-121520 +121518 +121519-121520 +121520 +121521-121524 +121522-121524 +121524 +121525-121527 +121525-121527 +121525 +121526-121527 +121527 +121528-121534 +121528-121534 +121530-121534 +121531-121534 +121532-121534 +121535-121547 +121535-121547 +121535-121538 +121535 +121536-121538 +121537-121538 +121539-121547 +121540-121547 +121542-121547 +121543-121547 +121543-121546 +121544-121546 +121545-121546 +121548-121559 +121548-121559 +121548 +121550-121559 +121551-121559 +121552-121559 +121552-121555 +121553-121555 +121554-121555 +121556-121558 +121557-121558 +121560-121571 +121560-121571 +121561-121571 +121561-121567 +121562-121567 +121564-121567 +121565-121567 +121566-121567 +121568-121570 +121569-121570 +121572-121587 +121572-121587 +121573-121587 +121574-121587 +121575-121587 +121576-121577 +121579-121587 +121579-121580 +121582-121587 +121583-121587 +121584-121587 +121586-121587 +121588-121591 +121588-121591 +121589-121591 +121589-121590 +121592-121601 +121592-121601 +121593-121601 +121594-121601 +121594-121597 +121594-121595 +121598-121601 +121599-121601 +121602-121613 +121602-121613 +121603-121613 +121603-121605 +121604-121605 +121606-121613 +121607-121613 +121607-121609 +121608-121609 +121610-121613 +121611-121613 +121612-121613 +121614-121619 +121614-121619 +121614-121616 +121615-121616 +121617-121619 +121618-121619 +121620-121626 +121620-121626 +121620-121622 +121622 +121623-121626 +121624-121626 +121626 +121627-121631 +121627-121631 +121627 +121628-121629 +121629 +121630-121631 +121631 +121632-121642 +121632-121642 +121632-121637 +121632-121634 +121633-121634 +121635-121636 +121638-121642 +121639-121642 +121639-121640 +121641-121642 +121643-121648 +121643-121648 +121643-121645 +121644-121645 +121646-121648 +121647-121648 +121649-121652 +121649-121652 +121652 +121653-121665 +121653-121665 +121653-121662 +121653-121660 +121654-121660 +121654-121655 +121656-121660 +121657-121660 +121658-121660 +121659-121660 +121663-121665 +121664-121665 +121666-121675 +121666-121675 +121667-121675 +121667-121669 +121668-121669 +121670-121675 +121671-121675 +121672-121673 +121676-121685 +121676-121685 +121678-121685 +121678-121680 +121679-121680 +121681-121685 +121682-121685 +121683-121685 +121683-121685 +121684-121685 +121686-121693 +121686-121693 +121687-121693 +121690-121693 +121690-121693 +121691-121693 +121692-121693 +121694-121747 +121694-121747 +121694-121732 +121696-121732 +121696-121732 +121696-121713 +121697-121713 +121698-121713 +121698-121705 +121698-121700 +121699-121700 +121702-121705 +121703-121705 +121704-121705 +121706-121713 +121707-121713 +121707-121709 +121710-121711 +121711 +121712-121713 +121713 +121714-121732 +121714-121722 +121714-121718 +121717-121718 +121720-121722 +121721-121722 +121724-121732 +121725-121732 +121726-121732 +121727-121732 +121727-121729 +121727-121728 +121730-121732 +121730-121731 +121733-121747 +121733-121747 +121734-121747 +121735-121747 +121737-121747 +121737-121740 +121738-121740 +121738-121739 +121741-121747 +121741-121742 +121742 +121743-121747 +121744-121747 +121745-121747 +121746-121747 +121748-121754 +121748-121754 +121749-121754 +121751-121754 +121752-121754 +121753-121754 +121755-121759 +121755-121759 +121755-121757 +121755-121756 +121760-121769 +121760-121769 +121761-121769 +121761-121766 +121761-121763 +121762-121763 +121764-121766 +121765-121766 +121767-121769 +121770-121781 +121770-121781 +121770-121773 +121770-121771 +121772-121773 +121772-121773 +121774-121781 +121775-121781 +121776-121781 +121777-121781 +121777-121779 +121778-121779 +121780-121781 +121781 +121782-121791 +121782-121791 +121782-121785 +121782-121784 +121783-121784 +121786-121791 +121787-121791 +121787-121789 +121788-121789 +121792-121813 +121792-121813 +121792-121798 +121792-121797 +121792-121794 +121793-121794 +121795-121797 +121796-121797 +121799-121813 +121800-121813 +121800-121806 +121800-121802 +121801-121802 +121803-121804 +121807-121813 +121808-121813 +121809-121811 +121810-121811 +121812-121813 +121814-121817 +121814-121817 +121815-121817 +121816-121817 +121818-121843 +121818-121843 +121819-121832 +121819-121831 +121819-121827 +121820-121827 +121821-121827 +121821-121822 +121823-121827 +121824-121827 +121825-121827 +121826-121827 +121828-121831 +121829-121831 +121830-121831 +121833-121843 +121834-121843 +121834-121837 +121835-121837 +121836-121837 +121837 +121838-121842 +121839-121842 +121840-121842 +121841-121842 +121844-121849 +121844-121849 +121844-121847 +121845-121847 +121846-121847 +121848-121849 +121849 +121850-121856 +121850-121856 +121851-121853 +121852-121853 +121854-121856 +121855-121856 +121857-121860 +121857-121860 +121857-121858 +121859-121860 +121861-121863 +121861-121863 +121864-121871 +121864-121871 +121865-121871 +121865 +121867-121871 +121868-121871 +121869-121871 +121870-121871 +121872-121888 +121872-121888 +121873-121874 +121876-121880 +121877-121880 +121878-121880 +121879-121880 +121881-121883 +121882-121883 +121884-121888 +121885-121888 +121886-121888 +121887-121888 +121889-121901 +121889-121901 +121889-121891 +121890-121891 +121892-121895 +121893-121895 +121894-121895 +121896-121901 +121897-121901 +121897-121900 +121898-121900 +121899-121900 +121902-121909 +121902-121909 +121902 +121905-121906 +121907-121909 +121908-121909 +121910-121916 +121910-121916 +121911-121912 +121913-121915 +121914-121915 +121917-121932 +121917-121932 +121917 +121919-121924 +121920-121924 +121920-121921 +121922-121924 +121923-121924 +121925-121932 +121925-121926 +121927-121932 +121929-121932 +121930-121932 +121931-121932 +121933-121936 +121933-121936 +121935-121936 +121936 +121937-121952 +121937-121952 +121937-121940 +121937-121939 +121938-121939 +121941-121945 +121942-121945 +121942-121944 +121943-121944 +121946-121952 +121947-121952 +121948-121949 +121950-121952 +121951-121952 +121953-121969 +121953-121969 +121954-121969 +121954-121955 +121954-121955 +121956-121957 +121960-121968 +121960-121962 +121961-121962 +121963-121965 +121964-121965 +121966-121968 +121967-121968 +121970-121984 +121970-121984 +121971-121984 +121971-121975 +121972-121974 +121973-121974 +121976-121979 +121977-121979 +121977-121978 +121980-121984 +121981-121984 +121982-121983 +121985-121989 +121985-121989 +121985-121988 +121986-121988 +121987-121988 +121989 +121990-121992 +121990-121992 +121990-121991 +121992 +121993-122012 +121993-122012 +121993-121996 +121994-121996 +121995-121996 +121997-122012 +121997-122001 +121998-122001 +121999-122001 +122000-122001 +122002-122012 +122003-122012 +122004-122005 +122006-122012 +122008-122012 +122009-122012 +122010-122012 +122011-122012 +122013-122025 +122013-122025 +122014-122025 +122014-122020 +122014-122017 +122015-122017 +122016-122017 +122019-122020 +122020 +122021-122025 +122022-122025 +122024-122025 +122026-122031 +122026-122031 +122026-122029 +122027-122029 +122028-122029 +122030-122031 +122032-122042 +122032-122042 +122033-122042 +122033-122040 +122033-122036 +122035-122036 +122037-122040 +122038-122040 +122039-122040 +122041-122042 +122042 +122043-122047 +122043-122047 +122045-122046 +122047 +122048-122069 +122048-122069 +122048-122052 +122050-122052 +122051-122052 +122053-122069 +122054-122069 +122054-122058 +122056-122058 +122057-122058 +122059-122069 +122060-122069 +122062-122064 +122063-122064 +122065-122069 +122065-122066 +122067-122069 +122068-122069 +122070-122084 +122070-122084 +122071-122084 +122071-122072 +122073-122084 +122074-122084 +122074-122077 +122074-122075 +122078-122084 +122079-122084 +122079-122080 +122082-122084 +122083-122084 +122085-122116 +122085-122116 +122085-122086 +122085-122086 +122087-122098 +122088-122098 +122088-122094 +122088-122090 +122089-122090 +122092-122094 +122093-122094 +122095-122098 +122096-122098 +122099-122116 +122099 +122101-122116 +122101-122112 +122101-122107 +122102-122107 +122104-122107 +122105-122107 +122106-122107 +122109-122110 +122111-122112 +122113-122116 +122114-122116 +122115-122116 +122117-122143 +122117-122143 +122117-122120 +122118-122120 +122119-122120 +122121-122143 +122122-122143 +122122-122129 +122123-122129 +122124-122129 +122128-122129 +122130-122143 +122130-122133 +122131-122133 +122132-122133 +122134-122136 +122135-122136 +122137-122143 +122138-122143 +122139-122143 +122140-122143 +122141-122143 +122142-122143 +122144-122148 +122144-122148 +122144-122146 +122145-122146 +122149-122201 +122149-122201 +122150-122201 +122150-122158 +122151-122158 +122151-122153 +122152-122153 +122154-122158 +122154-122156 +122155-122156 +122157-122158 +122159-122201 +122160-122201 +122160-122164 +122161-122164 +122162-122164 +122163-122164 +122167-122169 +122168-122169 +122169 +122170-122175 +122171-122175 +122171-122173 +122172-122173 +122174-122175 +122176-122201 +122177-122201 +122177-122182 +122178-122182 +122179-122180 +122181-122182 +122183-122201 +122184-122185 +122186-122201 +122187-122201 +122188-122201 +122189-122201 +122189-122191 +122190-122191 +122193-122194 +122195-122197 +122196-122197 +122198-122201 +122199-122201 +122200-122201 +122202-122237 +122202-122237 +122202-122212 +122202-122204 +122202-122203 +122206-122212 +122209-122212 +122210-122212 +122211-122212 +122214-122237 +122214-122226 +122215-122226 +122215-122218 +122216-122218 +122217-122218 +122219-122226 +122220-122226 +122221-122226 +122222-122226 +122222 +122223-122226 +122224-122226 +122224-122225 +122228-122233 +122229-122233 +122230-122231 +122232-122233 +122234-122237 +122235-122237 +122236-122237 +122238-122260 +122238-122260 +122238-122241 +122239-122240 +122242-122260 +122243-122260 +122243-122248 +122243-122244 +122245-122247 +122250-122253 +122251-122253 +122252-122253 +122253 +122254-122260 +122255-122260 +122255-122258 +122256-122258 +122257-122258 +122259-122260 +122261-122296 +122261-122296 +122261-122263 +122262-122263 +122264-122266 +122265-122266 +122267-122274 +122268-122274 +122269-122274 +122269-122273 +122270-122273 +122271-122273 +122271-122272 +122275-122296 +122276-122296 +122277-122296 +122277-122280 +122278-122280 +122279-122280 +122281-122296 +122282-122286 +122283-122286 +122283-122284 +122285-122286 +122287-122296 +122288-122296 +122288-122291 +122289-122291 +122289-122290 +122292-122296 +122293-122296 +122294-122296 +122294-122295 +122297-122324 +122297-122324 +122297-122298 +122300-122324 +122300-122303 +122305-122324 +122305-122319 +122306-122319 +122310-122319 +122311-122319 +122312-122319 +122314-122319 +122315-122319 +122315-122316 +122317-122319 +122318-122319 +122320-122324 +122320-122322 +122320-122321 +122325-122343 +122325-122343 +122326-122343 +122326-122332 +122326-122331 +122327-122331 +122328-122331 +122329-122331 +122330-122331 +122332 +122335-122339 +122336-122339 +122337-122339 +122337-122338 +122340-122343 +122341-122343 +122342-122343 +122344-122375 +122344-122375 +122344-122368 +122344-122346 +122345-122346 +122345-122346 +122347-122368 +122348-122355 +122349-122355 +122350-122355 +122350-122354 +122351-122354 +122352-122354 +122353-122354 +122357-122368 +122357-122361 +122358-122361 +122359-122361 +122359-122360 +122362-122363 +122365-122367 +122366-122367 +122369-122375 +122370-122375 +122371-122375 +122371-122372 +122373-122375 +122374-122375 +122376-122454 +122376-122454 +122377-122454 +122377-122386 +122378-122386 +122380-122386 +122381-122386 +122383-122386 +122384-122386 +122385-122386 +122387-122454 +122387-122388 +122389-122393 +122390-122393 +122390-122392 +122391-122392 +122395-122454 +122396-122454 +122397-122454 +122398-122408 +122398-122401 +122399-122401 +122400-122401 +122403-122408 +122404-122408 +122405-122408 +122406-122408 +122407-122408 +122410-122454 +122410-122411 +122410-122411 +122412-122454 +122413-122454 +122413-122454 +122413-122416 +122414-122416 +122415-122416 +122417-122454 +122418-122454 +122418-122422 +122419-122422 +122420-122422 +122421-122422 +122423-122454 +122424-122454 +122425-122428 +122426-122428 +122427-122428 +122429-122454 +122430-122454 +122431-122454 +122432-122454 +122432-122433 +122434-122454 +122435-122454 +122436-122454 +122437-122454 +122438-122454 +122438-122441 +122440-122441 +122442-122454 +122443-122454 +122446-122454 +122447-122454 +122447-122451 +122448-122451 +122448-122449 +122450-122451 +122453-122454 +122455-122484 +122455-122484 +122455-122466 +122455-122457 +122456-122457 +122459-122463 +122460-122463 +122461-122463 +122462-122463 +122464-122466 +122465-122466 +122467-122468 +122472-122484 +122473-122478 +122474-122476 +122475-122476 +122479-122484 +122480-122484 +122480-122481 +122482-122484 +122482 +122483-122484 +122484 +122485-122511 +122485-122511 +122486-122511 +122486-122496 +122486-122489 +122486-122487 +122488-122489 +122490-122496 +122491-122496 +122491-122493 +122492-122493 +122494-122496 +122495-122496 +122497-122511 +122497-122503 +122497-122499 +122498-122499 +122500-122503 +122501-122503 +122501-122502 +122504-122511 +122505-122511 +122505-122507 +122506-122507 +122509-122511 +122510-122511 +122512-122520 +122512-122520 +122513-122520 +122515-122520 +122515-122516 +122517-122520 +122518-122520 +122519-122520 +122521-122554 +122521-122554 +122522-122554 +122522-122548 +122522-122534 +122523-122534 +122523-122524 +122525-122527 +122526-122527 +122528-122529 +122530-122531 +122532-122534 +122533-122534 +122535-122537 +122536-122537 +122538-122541 +122539-122541 +122540-122541 +122543-122548 +122544-122548 +122544-122545 +122547-122548 +122549-122554 +122550-122554 +122551-122554 +122552-122554 +122553-122554 +122555-122587 +122555-122587 +122555-122568 +122556-122568 +122557-122568 +122558-122568 +122558-122559 +122559 +122560-122568 +122560-122563 +122561-122563 +122561-122562 +122564-122568 +122565-122568 +122565-122566 +122567-122568 +122569-122570 +122571-122573 +122572-122573 +122573 +122575-122576 +122577-122579 +122578-122579 +122580-122587 +122581-122583 +122581-122582 +122585-122587 +122586-122587 +122588-122607 +122588-122607 +122589-122607 +122590-122591 +122592-122607 +122593-122599 +122594-122595 +122596-122599 +122596-122598 +122596-122597 +122600-122607 +122601-122607 +122601-122604 +122602-122604 +122603-122604 +122605-122606 +122608-122613 +122608-122613 +122609-122613 +122609-122610 +122611-122613 +122612-122613 +122613 +122614-122640 +122614-122640 +122615-122640 +122615 +122616-122631 +122616-122625 +122616-122620 +122616-122620 +122617-122620 +122619-122620 +122620 +122623-122625 +122624-122625 +122626-122631 +122627-122631 +122627-122631 +122627-122628 +122629-122631 +122630-122631 +122632-122640 +122632-122636 +122634-122636 +122634-122635 +122637-122638 +122641-122679 +122641-122679 +122642-122679 +122642-122673 +122643-122651 +122643-122644 +122645-122646 +122647-122648 +122649-122651 +122650-122651 +122652-122665 +122653-122665 +122654-122665 +122655-122665 +122656-122665 +122657-122665 +122657-122658 +122661-122665 +122662-122665 +122663-122665 +122664-122665 +122666-122673 +122666-122669 +122670-122673 +122671-122673 +122672-122673 +122674-122679 +122674-122676 +122676 +122677-122679 +122678-122679 +122679 +122680-122694 +122680-122694 +122680 +122682-122694 +122682-122685 +122683-122685 +122684-122685 +122687-122694 +122688-122694 +122688-122689 +122690-122694 +122692-122694 +122693-122694 +122695-122720 +122695-122720 +122695-122702 +122695-122697 +122696-122697 +122698-122700 +122699-122700 +122703-122720 +122704-122720 +122704-122709 +122705-122709 +122705-122707 +122709 +122710-122714 +122710-122713 +122711-122713 +122712-122713 +122716-122717 +122718-122720 +122719-122720 +122721-122743 +122721-122743 +122722-122724 +122723-122724 +122725-122743 +122725-122727 +122726-122727 +122728-122743 +122728-122731 +122729-122731 +122730-122731 +122731 +122732-122743 +122733-122743 +122734-122743 +122735-122743 +122735-122736 +122738-122743 +122739-122743 +122739-122740 +122741-122743 +122742-122743 +122744-122757 +122744-122757 +122745-122757 +122747-122750 +122748-122750 +122749-122750 +122751-122757 +122751 +122753-122757 +122754-122757 +122754-122756 +122755-122756 +122758-122772 +122758-122772 +122758-122759 +122759 +122760-122772 +122761-122772 +122762-122768 +122763-122768 +122764-122766 +122765-122766 +122767-122768 +122770-122772 +122771-122772 +122771-122772 +122773-122783 +122773-122783 +122773-122774 +122775-122777 +122775-122776 +122778-122780 +122778-122779 +122781-122783 +122781-122782 +122784-122801 +122784-122801 +122784-122785 +122784-122785 +122787-122789 +122788-122789 +122790-122801 +122790-122791 +122792-122801 +122793-122797 +122794-122797 +122795-122797 +122796-122797 +122799-122801 +122800-122801 +122802-122813 +122802-122813 +122803-122813 +122803-122804 +122805-122813 +122806-122813 +122806-122808 +122807-122808 +122812-122813 +122814-122831 +122814-122831 +122815-122831 +122815-122821 +122817-122821 +122818-122821 +122818-122820 +122818-122820 +122819-122820 +122822-122831 +122823-122831 +122823-122827 +122824-122827 +122824-122826 +122824-122826 +122825-122826 +122830-122831 +122832-122849 +122832-122849 +122833-122849 +122833-122834 +122836-122849 +122837-122849 +122837-122838 +122840-122841 +122842-122844 +122845-122849 +122846-122849 +122847-122849 +122848-122849 +122850-122860 +122850-122860 +122850-122853 +122854-122860 +122855-122860 +122857-122860 +122858-122860 +122859-122860 +122861-122872 +122861-122872 +122861-122867 +122861-122864 +122862 +122865 +122868-122872 +122869-122872 +122870-122872 +122871-122872 +122873-122892 +122873-122892 +122873-122885 +122873-122874 +122875-122877 +122876-122877 +122879-122882 +122880-122882 +122881-122882 +122883-122885 +122884-122885 +122887-122892 +122887-122889 +122887-122888 +122890-122891 +122893-122896 +122893-122896 +122893-122895 +122894-122895 +122897-122912 +122897-122912 +122898-122912 +122898-122901 +122899-122901 +122900-122901 +122901 +122902-122912 +122903-122912 +122905-122912 +122906-122912 +122907-122912 +122907-122909 +122908-122909 +122910-122912 +122911-122912 +122913-122940 +122913-122940 +122913 +122914-122918 +122916-122918 +122917-122918 +122919-122940 +122920-122940 +122920-122925 +122921-122925 +122921-122922 +122924-122925 +122926-122940 +122926-122930 +122927-122930 +122928-122930 +122928-122929 +122931-122932 +122934-122940 +122935-122940 +122936-122940 +122936-122939 +122936-122937 +122938-122939 +122941-122974 +122941-122974 +122943-122974 +122944-122954 +122945-122954 +122946-122954 +122946-122953 +122946-122947 +122948-122950 +122949-122950 +122951-122953 +122952-122953 +122956-122974 +122957-122974 +122957-122960 +122958-122960 +122958-122959 +122961-122974 +122962-122974 +122963-122974 +122964-122974 +122964-122968 +122965-122968 +122965-122967 +122966-122967 +122969-122974 +122971-122973 +122972-122973 +122975-123008 +122975-123008 +122976-123008 +122976-122991 +122978-122985 +122979-122985 +122979-122981 +122980-122981 +122982-122985 +122983-122985 +122984-122985 +122988-122991 +122989-122991 +122990-122991 +122992-123008 +122993-123008 +122995-122996 +122997-122999 +123000-123008 +123000-123001 +123003-123008 +123003 +123004-123008 +123005-123008 +123007-123008 +123009-123033 +123009-123033 +123009-123010 +123009-123010 +123013-123014 +123015-123033 +123015-123017 +123016-123017 +123016-123017 +123018-123033 +123018-123019 +123022-123026 +123023-123026 +123023-123026 +123024-123026 +123025-123026 +123027-123033 +123028-123033 +123029-123033 +123031-123033 +123032-123033 +123034-123061 +123034-123061 +123035-123061 +123035-123036 +123038-123061 +123043-123061 +123044-123051 +123044-123047 +123046-123047 +123048-123051 +123049-123051 +123050-123051 +123053-123061 +123055-123061 +123056-123061 +123056-123057 +123059-123061 +123060-123061 +123062-123093 +123062-123093 +123063-123093 +123063-123081 +123063-123075 +123063-123070 +123064-123070 +123065-123070 +123065-123066 +123067-123070 +123068-123070 +123069-123070 +123072-123073 +123074-123075 +123076-123081 +123077-123081 +123078-123081 +123079-123081 +123082-123093 +123083-123093 +123083-123088 +123083-123085 +123084-123085 +123086-123088 +123087-123088 +123089-123093 +123089-123090 +123091-123093 +123092-123093 +123094-123110 +123094-123110 +123095-123110 +123095-123104 +123095-123098 +123095-123096 +123097-123098 +123099-123104 +123100-123104 +123100-123101 +123102-123104 +123103-123104 +123105-123110 +123106-123110 +123106-123107 +123108-123110 +123109-123110 +123111-123120 +123111-123120 +123112-123120 +123113-123115 +123114-123115 +123116-123120 +123117-123120 +123117-123119 +123117-123118 +123121-123127 +123121-123127 +123122-123127 +123122-123126 +123123-123126 +123125-123126 +123128-123179 +123128-123179 +123129-123179 +123129-123166 +123129-123158 +123129-123135 +123129-123133 +123129-123131 +123130-123131 +123134-123135 +123135 +123136-123158 +123137-123158 +123137-123139 +123138-123139 +123141-123144 +123142-123144 +123143-123144 +123145-123158 +123147-123148 +123149-123158 +123150-123158 +123151-123158 +123153-123158 +123154-123158 +123155-123158 +123156-123158 +123156-123157 +123159-123166 +123160-123166 +123160-123163 +123161-123163 +123162-123163 +123164-123165 +123167-123179 +123168-123179 +123168-123170 +123169-123170 +123172-123179 +123173-123179 +123174-123179 +123175-123179 +123176-123179 +123177-123179 +123177-123178 +123180-123212 +123180-123212 +123181-123212 +123181-123191 +123181-123189 +123182-123189 +123182 +123183-123188 +123184-123188 +123185-123188 +123186-123188 +123187-123188 +123190-123191 +123191 +123192-123212 +123193-123212 +123193-123198 +123193-123194 +123196-123197 +123199-123201 +123200-123201 +123202-123212 +123203-123212 +123205-123206 +123207-123212 +123207-123209 +123208-123209 +123210-123212 +123211-123212 +123213-123244 +123213-123244 +123213-123214 +123215 +123217-123244 +123217-123221 +123218-123221 +123219-123221 +123219-123220 +123222-123244 +123224-123244 +123225-123244 +123225-123232 +123226-123229 +123227-123229 +123227-123228 +123230-123232 +123231-123232 +123233-123244 +123234-123244 +123235-123244 +123235-123236 +123237-123241 +123238-123241 +123240-123241 +123243-123244 +123245-123280 +123245-123280 +123246-123247 +123250-123261 +123251-123261 +123252-123261 +123253-123255 +123254-123255 +123257-123261 +123257-123259 +123257-123258 +123260-123261 +123262-123280 +123263-123280 +123264-123280 +123264-123265 +123266-123280 +123266-123273 +123268-123270 +123269-123270 +123271-123273 +123272-123273 +123276-123280 +123277-123278 +123279-123280 +123281-123310 +123281-123310 +123282-123310 +123282-123304 +123282-123284 +123285-123304 +123285-123286 +123287-123289 +123288-123289 +123291-123304 +123292-123304 +123293-123304 +123293-123298 +123294-123295 +123297-123298 +123299-123303 +123300-123303 +123301-123303 +123301-123302 +123305-123310 +123306-123310 +123306-123308 +123307-123308 +123311-123353 +123311-123353 +123312-123353 +123313-123315 +123314-123315 +123314 +123316-123353 +123316-123319 +123317-123319 +123318-123319 +123321-123343 +123321-123330 +123322-123330 +123323-123330 +123323-123327 +123328-123330 +123329-123330 +123331-123332 +123334-123342 +123337-123342 +123338-123342 +123339-123342 +123340-123342 +123340-123341 +123343 +123344-123353 +123347-123353 +123348-123353 +123350-123353 +123351-123353 +123351 +123352-123353 +123354-123370 +123354-123370 +123355-123370 +123355-123356 +123357-123358 +123360-123370 +123361-123370 +123361-123365 +123362-123365 +123363-123364 +123366-123370 +123367-123370 +123368-123369 +123371-123375 +123371-123375 +123372-123375 +123372-123374 +123373-123374 +123376-123381 +123376-123381 +123377-123381 +123377-123379 +123378-123379 +123380-123381 +123382-123394 +123382-123394 +123382-123383 +123384-123388 +123385-123388 +123385-123386 +123387-123388 +123390-123394 +123391-123394 +123393-123394 +123395-123399 +123395-123399 +123396-123397 +123398-123399 +123400-123451 +123400-123451 +123400-123429 +123400-123413 +123400-123407 +123401-123403 +123402-123403 +123404-123405 +123408-123413 +123409-123413 +123409-123413 +123410-123413 +123411-123413 +123412-123413 +123414-123429 +123414-123419 +123414-123416 +123415-123416 +123417-123419 +123418-123419 +123418-123419 +123420-123429 +123420-123422 +123421-123422 +123423-123429 +123424-123429 +123424-123429 +123425-123429 +123426-123429 +123428-123429 +123430-123451 +123431-123451 +123431-123432 +123434-123435 +123436-123451 +123437-123451 +123437-123438 +123439-123451 +123441-123445 +123441-123442 +123443-123445 +123444-123445 +123446-123450 +123447-123450 +123448-123450 +123449-123450 +123451 +123452-123484 +123452-123484 +123452 +123453-123474 +123454-123466 +123454-123462 +123454-123458 +123455-123458 +123456-123458 +123456-123457 +123459-123462 +123459-123460 +123463-123466 +123464-123466 +123468-123474 +123468-123473 +123469-123473 +123470-123473 +123471-123473 +123471-123472 +123474 +123475-123484 +123476-123484 +123476-123482 +123477-123482 +123478-123482 +123479-123482 +123480-123482 +123481-123482 +123484 +123485-123502 +123485-123502 +123485-123490 +123485-123489 +123486-123489 +123487-123489 +123488-123489 +123490 +123491-123502 +123492-123502 +123492-123499 +123492-123494 +123493-123494 +123495-123499 +123496-123499 +123497-123499 +123497-123498 +123500-123501 +123503-123542 +123503-123542 +123504-123542 +123504-123530 +123504-123516 +123505-123506 +123508-123516 +123508-123513 +123509-123513 +123510-123511 +123512-123513 +123514-123516 +123515-123516 +123517-123530 +123518-123530 +123518-123520 +123519-123520 +123519-123520 +123521-123530 +123522 +123524-123530 +123525-123526 +123527-123530 +123528-123530 +123528-123529 +123531-123542 +123532-123542 +123532-123533 +123534-123542 +123535-123542 +123536-123537 +123538-123542 +123539-123542 +123540-123542 +123541-123542 +123543-123556 +123543-123556 +123544-123556 +123544-123547 +123545-123547 +123546-123547 +123548-123556 +123549-123556 +123550-123556 +123551-123556 +123552-123556 +123553-123556 +123554-123556 +123554-123555 +123557-123568 +123557-123568 +123558-123568 +123558-123562 +123559-123562 +123559-123560 +123563-123566 +123564-123566 +123565-123566 +123569-123585 +123569-123585 +123570-123585 +123570-123577 +123571-123577 +123572-123577 +123573-123577 +123574-123577 +123575-123577 +123576-123577 +123578-123579 +123581-123583 +123582-123583 +123584-123585 +123586-123605 +123586-123605 +123587-123605 +123587-123589 +123588-123589 +123591-123605 +123591-123598 +123592-123598 +123593-123598 +123594-123598 +123595-123598 +123596-123598 +123596-123597 +123599-123605 +123600-123605 +123601-123605 +123601-123604 +123602-123604 +123602-123603 +123603 +123606-123632 +123606-123632 +123607-123612 +123608-123612 +123608-123609 +123610-123612 +123611-123612 +123613-123616 +123617-123618 +123619-123622 +123623-123632 +123624-123627 +123625-123627 +123626-123627 +123629-123632 +123630-123632 +123631-123632 +123633-123642 +123633-123642 +123634-123642 +123634-123636 +123635-123636 +123637-123642 +123638-123642 +123639-123642 +123640-123642 +123640-123641 +123643-123646 +123643-123646 +123643 +123647-123661 +123647-123661 +123648-123661 +123650-123651 +123653-123661 +123654-123661 +123654-123657 +123654-123655 +123658-123661 +123659-123661 +123662-123686 +123662-123686 +123663-123686 +123664-123669 +123665-123669 +123666-123669 +123667-123669 +123668-123669 +123670-123674 +123671-123674 +123673-123674 +123675-123686 +123675-123681 +123675-123678 +123676-123678 +123677-123678 +123680-123681 +123682-123686 +123683-123686 +123685-123686 +123687-123688 +123687-123688 +123688 +123689-123716 +123689-123716 +123689-123699 +123689-123692 +123689-123691 +123690-123691 +123693-123695 +123694-123695 +123694-123695 +123695 +123697-123699 +123698-123699 +123702-123704 +123703-123704 +123705-123716 +123706-123716 +123706-123709 +123707-123709 +123708-123709 +123710-123715 +123711-123715 +123711-123713 +123712-123713 +123714-123715 +123717-123747 +123717-123747 +123718-123747 +123718-123738 +123718-123731 +123718-123731 +123718-123721 +123719-123721 +123720-123721 +123722-123731 +123723-123731 +123725-123729 +123726-123729 +123727-123729 +123728-123729 +123730-123731 +123732-123735 +123732-123733 +123736 +123737 +123738 +123739-123747 +123740-123741 +123742-123746 +123743-123746 +123744-123746 +123745-123746 +123747 +123748-123770 +123748-123770 +123749-123755 +123750-123755 +123751-123755 +123752-123755 +123752-123753 +123754-123755 +123755 +123756-123757 +123759-123770 +123759 +123760-123770 +123761-123770 +123762-123770 +123764-123767 +123765-123767 +123766-123767 +123768-123770 +123768-123769 +123771-123781 +123771-123781 +123773-123781 +123773-123776 +123774-123776 +123774-123775 +123777-123781 +123778-123781 +123779-123781 +123780-123781 +123782-123786 +123782-123786 +123784-123786 +123785-123786 +123787-123792 +123787-123792 +123788-123792 +123789-123792 +123790-123792 +123791-123792 +123793-123813 +123793-123813 +123793-123799 +123793-123794 +123795-123799 +123795-123797 +123796-123797 +123798-123799 +123800-123813 +123801-123813 +123803-123804 +123805-123813 +123806-123813 +123807-123813 +123807-123811 +123808-123811 +123808-123809 +123810-123811 +123812-123813 +123814-123827 +123814-123827 +123814-123816 +123815-123816 +123819-123827 +123820-123827 +123821-123827 +123821-123822 +123823-123827 +123824-123827 +123825-123827 +123826-123827 +123828-123875 +123828-123875 +123829-123875 +123830-123833 +123831-123833 +123832-123833 +123834-123840 +123834-123835 +123836-123840 +123837-123840 +123838-123840 +123839-123840 +123842-123875 +123843-123875 +123844-123875 +123845-123875 +123846-123875 +123848-123875 +123848-123851 +123849-123851 +123850-123851 +123852-123875 +123852-123860 +123852-123853 +123854-123858 +123855-123858 +123855-123857 +123856-123857 +123862-123875 +123862-123863 +123865-123867 +123866-123867 +123868-123875 +123869-123875 +123870-123875 +123870-123872 +123871-123872 +123873-123875 +123873-123874 +123876-123925 +123876-123925 +123877-123925 +123877-123889 +123877-123879 +123878-123879 +123880-123882 +123880-123881 +123884-123887 +123885-123887 +123886-123887 +123888-123889 +123890-123895 +123891-123895 +123891-123893 +123892-123893 +123894-123895 +123896-123901 +123897-123901 +123897-123899 +123898-123899 +123900-123901 +123902-123907 +123903-123907 +123903-123905 +123904-123905 +123906-123907 +123908-123913 +123909-123913 +123909-123911 +123910-123911 +123912-123913 +123914-123919 +123915-123919 +123915-123917 +123916-123917 +123918-123919 +123920-123925 +123921-123925 +123921-123923 +123922-123923 +123924-123925 +123926-123944 +123926-123944 +123927-123944 +123928-123931 +123929-123931 +123930-123931 +123932-123935 +123937-123944 +123938-123944 +123939-123944 +123939-123943 +123939-123941 +123940-123941 +123942-123943 +123945-123960 +123945-123960 +123946-123960 +123946-123949 +123952 +123953-123960 +123954-123960 +123955-123960 +123956-123960 +123957-123960 +123958-123960 +123959-123960 +123961-123971 +123961-123971 +123962-123971 +123962 +123965-123971 +123966-123970 +123967-123970 +123968-123970 +123969-123970 +123972-123978 +123972-123978 +123973-123978 +123973-123974 +123975-123976 +123979-123996 +123979-123996 +123980-123996 +123984-123996 +123985-123996 +123986-123996 +123987-123996 +123988-123996 +123989-123996 +123990-123996 +123990-123994 +123991-123994 +123991-123992 +123993-123994 +123995-123996 +123997-124011 +123997-124011 +123998-124011 +123998-124003 +123999-124003 +124002-124003 +124004-124011 +124005-124011 +124005-124007 +124006-124007 +124008-124011 +124009-124011 +124010-124011 +124010 +124012-124043 +124012-124043 +124013-124043 +124015-124021 +124016-124021 +124018-124021 +124019-124021 +124020-124021 +124022-124025 +124024-124025 +124026-124043 +124027-124043 +124028-124043 +124028-124034 +124030-124034 +124031-124034 +124032-124034 +124033-124034 +124035-124043 +124036-124043 +124036-124041 +124037-124041 +124037-124039 +124038-124039 +124040-124041 +124044-124057 +124044-124057 +124045-124057 +124046-124057 +124046-124056 +124046-124047 +124050-124053 +124051-124053 +124052-124053 +124054-124056 +124055-124056 +124058-124079 +124058-124079 +124059-124079 +124060-124073 +124060-124062 +124060-124061 +124060 +124065-124073 +124066-124073 +124066-124070 +124066-124068 +124067-124068 +124069-124070 +124071-124073 +124072-124073 +124075-124079 +124076-124079 +124077-124079 +124078-124079 +124080-124123 +124080-124123 +124081-124123 +124081-124107 +124081-124087 +124082-124084 +124083-124084 +124085-124087 +124086-124087 +124088-124107 +124088-124089 +124092-124095 +124093-124095 +124094-124095 +124096-124107 +124096-124101 +124096-124098 +124097-124098 +124099-124101 +124100-124101 +124104-124107 +124104-124105 +124108-124123 +124109-124123 +124109-124111 +124110-124111 +124114-124116 +124114-124115 +124117-124123 +124117-124118 +124120-124123 +124121-124123 +124122-124123 +124124-124161 +124124-124161 +124125-124161 +124127-124129 +124128-124129 +124130-124161 +124132-124150 +124134-124139 +124135-124139 +124135-124139 +124136-124139 +124137-124139 +124138-124139 +124140-124150 +124141-124150 +124141-124143 +124144-124150 +124145-124150 +124147-124150 +124148-124150 +124149-124150 +124151-124161 +124154-124161 +124155-124161 +124155-124157 +124156-124157 +124158-124159 +124162-124177 +124162-124177 +124163-124177 +124164-124168 +124164-124165 +124170-124177 +124170-124173 +124170-124172 +124171-124172 +124175-124176 +124178-124204 +124178-124204 +124179-124204 +124179-124184 +124180-124181 +124182-124184 +124183-124184 +124185-124204 +124186-124204 +124186-124188 +124187-124188 +124190-124204 +124191-124204 +124193-124194 +124195-124200 +124195-124199 +124196-124199 +124197-124199 +124197-124198 +124201-124204 +124203-124204 +124205-124217 +124205-124217 +124206-124217 +124206-124210 +124208-124210 +124209-124210 +124211-124212 +124213-124216 +124214-124216 +124215-124216 +124218-124224 +124218-124224 +124219-124224 +124219-124220 +124221-124222 +124225-124236 +124225-124236 +124225-124230 +124226-124227 +124231-124236 +124232-124236 +124232-124234 +124233-124234 +124237-124333 +124237-124333 +124238-124333 +124238-124308 +124239-124308 +124239-124267 +124239-124252 +124239-124244 +124239-124240 +124241-124242 +124242 +124245-124252 +124246-124252 +124246-124247 +124248 +124250-124252 +124250-124251 +124253-124267 +124254-124267 +124254-124257 +124254-124255 +124258-124267 +124259-124267 +124259-124262 +124260-124262 +124261-124262 +124264-124267 +124265-124266 +124268-124308 +124269-124308 +124269-124279 +124269-124273 +124269-124272 +124270-124272 +124271-124272 +124276-124279 +124276-124278 +124277-124278 +124278 +124280-124308 +124281-124308 +124281-124291 +124281-124290 +124281-124282 +124283-124290 +124284-124290 +124285-124290 +124286-124290 +124286-124289 +124286-124287 +124288-124289 +124292-124308 +124293-124308 +124293-124295 +124294-124295 +124296-124297 +124298-124300 +124299-124300 +124301-124303 +124302-124303 +124304-124305 +124306-124307 +124309-124333 +124311-124333 +124311-124314 +124312-124313 +124315-124333 +124316-124333 +124316-124321 +124317-124320 +124317-124319 +124318-124319 +124322-124333 +124323-124333 +124324-124333 +124325-124333 +124325-124330 +124325-124326 +124327-124329 +124328-124329 +124331-124333 +124332-124333 +124334-124354 +124334-124354 +124334-124335 +124336-124337 +124340-124354 +124342-124346 +124342-124344 +124343-124344 +124349-124350 +124351-124352 +124353-124354 +124355-124378 +124355-124378 +124356-124378 +124357-124365 +124358-124365 +124359-124365 +124360-124365 +124362-124365 +124363-124365 +124364-124365 +124366-124369 +124366-124368 +124367-124368 +124370-124378 +124370-124373 +124371-124373 +124372-124373 +124376-124378 +124377-124378 +124379-124430 +124379-124430 +124379-124413 +124379-124384 +124381-124384 +124382-124384 +124382-124383 +124385-124387 +124385-124387 +124386-124387 +124388-124392 +124389-124392 +124390-124392 +124391-124392 +124393-124394 +124395-124401 +124396-124401 +124397-124401 +124397-124398 +124399-124401 +124400-124401 +124402-124404 +124403-124404 +124405-124408 +124405-124407 +124406-124407 +124409-124410 +124409-124410 +124411-124413 +124412-124413 +124415-124430 +124416-124430 +124417-124430 +124418-124430 +124418-124421 +124419-124421 +124420-124421 +124422-124430 +124422-124425 +124423-124424 +124426-124430 +124427-124430 +124427-124429 +124428-124429 +124431-124441 +124431-124441 +124431-124432 +124433-124436 +124433-124435 +124434-124435 +124438-124441 +124439-124441 +124439-124440 +124442-124456 +124442-124456 +124444-124450 +124444-124445 +124446-124450 +124447-124450 +124448-124450 +124448-124449 +124451-124456 +124452-124455 +124453-124455 +124454-124455 +124457-124480 +124457-124480 +124458-124480 +124458-124460 +124458-124459 +124462-124465 +124463-124465 +124463-124464 +124466-124472 +124467-124472 +124469-124472 +124470-124472 +124470-124471 +124473-124480 +124476-124480 +124478-124480 +124479-124480 +124481-124486 +124481-124486 +124482-124486 +124482-124484 +124487-124513 +124487-124513 +124488-124513 +124488-124506 +124489-124506 +124489-124505 +124489-124501 +124490-124493 +124491-124493 +124492-124493 +124494-124501 +124495-124501 +124496-124501 +124496-124499 +124497-124499 +124498-124499 +124500-124501 +124502-124505 +124503-124505 +124507-124513 +124509-124510 +124512-124513 +124514-124532 +124514-124532 +124515-124532 +124515-124523 +124518-124523 +124520-124523 +124521-124523 +124522-124523 +124524-124532 +124525-124532 +124525 +124527-124532 +124528-124532 +124529-124532 +124529-124530 +124531-124532 +124533-124550 +124533-124550 +124535-124538 +124536-124538 +124537-124538 +124539-124550 +124539-124544 +124541-124544 +124542-124544 +124543-124544 +124545-124550 +124546-124550 +124547 +124548-124550 +124549-124550 +124551-124584 +124551-124584 +124551 +124553-124555 +124554-124555 +124558-124584 +124558-124559 +124561-124562 +124563-124566 +124564-124566 +124565-124566 +124567-124584 +124568-124584 +124568-124574 +124569-124574 +124569-124573 +124570-124573 +124571-124573 +124572-124573 +124575-124584 +124576-124584 +124577-124584 +124577-124579 +124578-124579 +124580-124584 +124581-124584 +124582-124584 +124583-124584 +124585-124623 +124585-124623 +124588-124623 +124589-124623 +124590-124593 +124591-124593 +124592-124593 +124594-124595 +124597-124623 +124597-124602 +124597-124601 +124598-124601 +124599-124601 +124600-124601 +124603-124623 +124604-124623 +124605-124623 +124607-124611 +124608-124611 +124609-124611 +124610-124611 +124612-124623 +124613-124623 +124613-124617 +124614-124617 +124615-124616 +124621-124623 +124622-124623 +124624-124652 +124624-124652 +124625-124652 +124627-124628 +124629-124652 +124630-124652 +124630-124632 +124633-124644 +124634-124644 +124635-124639 +124635-124636 +124637-124639 +124638-124639 +124641-124644 +124642-124644 +124642-124643 +124645-124652 +124645-124646 +124647-124649 +124648-124649 +124650-124651 +124653-124674 +124653-124674 +124654-124674 +124654-124659 +124654-124656 +124655-124656 +124657-124659 +124658-124659 +124660-124662 +124661-124662 +124663-124664 +124666-124674 +124667-124674 +124668-124674 +124669-124674 +124669-124671 +124670-124671 +124672-124674 +124673-124674 +124675-124695 +124675-124695 +124676-124695 +124676 +124677-124678 +124682-124695 +124683-124695 +124683-124689 +124683-124684 +124685-124686 +124687-124689 +124688-124689 +124690-124695 +124691-124695 +124691-124692 +124693-124695 +124694-124695 +124696-124717 +124696-124717 +124697-124704 +124699-124700 +124701-124704 +124702-124704 +124706-124717 +124707-124708 +124709-124717 +124710-124717 +124711-124712 +124714-124717 +124715-124716 +124718-124741 +124718-124741 +124719-124741 +124720-124721 +124722-124723 +124724-124741 +124724-124729 +124724-124725 +124726-124727 +124730-124741 +124731-124741 +124731-124733 +124732 +124734-124741 +124735-124741 +124735-124740 +124736-124740 +124737-124740 +124738-124740 +124738-124739 +124742-124772 +124742-124772 +124742-124745 +124743-124744 +124746-124772 +124747-124772 +124750-124754 +124751-124754 +124751-124752 +124753-124754 +124755-124772 +124755-124757 +124756-124757 +124758-124772 +124759-124772 +124760-124772 +124761-124772 +124761-124763 +124761-124762 +124764-124772 +124764-124768 +124764-124765 +124767 +124769-124772 +124770-124772 +124771 +124773-124787 +124773-124787 +124774-124787 +124774-124778 +124774-124775 +124776-124778 +124777-124778 +124779-124782 +124780-124782 +124781-124782 +124784-124787 +124784-124785 +124788-124852 +124788-124852 +124789-124852 +124789 +124790-124799 +124790-124791 +124793-124799 +124793-124795 +124794-124795 +124798-124799 +124800-124852 +124801-124852 +124801-124805 +124802-124805 +124802-124804 +124803-124804 +124808-124852 +124809-124852 +124809-124814 +124810-124814 +124810-124813 +124811-124813 +124812-124813 +124815-124819 +124816-124819 +124817-124819 +124817-124818 +124822-124852 +124823-124852 +124823-124826 +124824-124826 +124825-124826 +124828-124829 +124830-124831 +124832-124852 +124832-124833 +124836-124852 +124837-124852 +124838-124841 +124839-124841 +124840-124841 +124843-124847 +124844-124847 +124844-124847 +124845-124847 +124846-124847 +124848-124852 +124849-124852 +124850-124852 +124851-124852 +124853-124868 +124853-124868 +124854-124868 +124854 +124856 +124858-124868 +124859-124868 +124860-124864 +124860-124863 +124861-124863 +124861-124862 +124866-124868 +124867-124868 +124869-124881 +124869-124881 +124870-124881 +124871-124881 +124872-124881 +124872-124874 +124873-124874 +124875-124881 +124875-124879 +124876-124879 +124876-124877 +124878-124879 +124880-124881 +124882-124890 +124882-124890 +124883-124884 +124885-124890 +124888-124890 +124889-124890 +124891-124913 +124891-124913 +124891-124908 +124891-124894 +124893-124894 +124895-124896 +124897-124901 +124899-124901 +124900-124901 +124902-124908 +124902-124903 +124904-124908 +124905-124908 +124905-124907 +124906-124907 +124909-124913 +124910-124913 +124911-124913 +124912-124913 +124914-124936 +124914-124936 +124915-124936 +124915-124917 +124915-124916 +124918-124919 +124919 +124920-124921 +124921 +124922-124936 +124923-124936 +124925-124936 +124925-124928 +124926-124928 +124927-124928 +124929-124936 +124929-124933 +124931-124933 +124932-124933 +124934-124936 +124935-124936 +124937-124950 +124937-124950 +124937-124943 +124937-124940 +124938-124940 +124939-124940 +124942-124943 +124945-124950 +124945-124946 +124949-124950 +124951-124966 +124951-124966 +124952-124966 +124952-124956 +124953-124956 +124954-124956 +124955-124956 +124957-124966 +124957-124959 +124958-124959 +124960-124966 +124961-124966 +124962-124966 +124962-124964 +124963-124964 +124965-124966 +124967-124976 +124967-124976 +124968-124976 +124971-124976 +124972-124976 +124972-124974 +124973-124974 +124975-124976 +124977-125000 +124977-125000 +124978-125000 +124980-124988 +124981-124988 +124982-124988 +124982-124985 +124984-124985 +124986-124988 +124987-124988 +124989-125000 +124990-125000 +124990-124993 +124990-124991 +124994-125000 +124995-125000 +124995-124996 +124999-125000 +125001-125018 +125001-125018 +125001-125012 +125002-125012 +125002-125007 +125003-125007 +125004-125007 +125006-125007 +125008-125012 +125009-125012 +125009-125011 +125010-125011 +125013-125018 +125013 +125014-125018 +125015-125018 +125017-125018 +125019-125046 +125019-125046 +125020-125046 +125020-125030 +125021-125030 +125021-125023 +125022-125023 +125025-125030 +125026-125030 +125028-125030 +125029-125030 +125031-125034 +125033-125034 +125035-125046 +125036-125046 +125036-125041 +125037-125041 +125038-125041 +125039-125041 +125040-125041 +125044-125046 +125045-125046 +125047-125061 +125047-125061 +125047-125052 +125048-125052 +125049-125052 +125050-125052 +125053-125061 +125053-125054 +125055-125061 +125056-125061 +125056-125057 +125060-125061 +125062-125081 +125062-125081 +125062-125066 +125063-125066 +125064-125066 +125065-125066 +125067-125081 +125068-125070 +125069-125070 +125071-125081 +125072-125081 +125072-125075 +125074-125075 +125076-125081 +125077-125081 +125079-125081 +125080-125081 +125082-125097 +125082-125097 +125082-125086 +125083-125086 +125084-125086 +125085-125086 +125087-125097 +125087-125089 +125090-125097 +125091-125097 +125091-125093 +125092-125093 +125096-125097 +125098-125105 +125098-125105 +125098-125099 +125098-125099 +125103-125105 +125104-125105 +125106-125117 +125106-125117 +125107-125117 +125107-125109 +125108-125109 +125111-125113 +125112-125113 +125114-125117 +125115-125117 +125115-125116 +125118-125137 +125118-125137 +125119-125137 +125119-125125 +125122-125125 +125123-125125 +125124-125125 +125126-125137 +125127-125137 +125127-125137 +125128-125131 +125128-125130 +125129-125130 +125133-125137 +125134-125137 +125135-125137 +125136-125137 +125138-125149 +125138-125149 +125139-125149 +125139-125140 +125142-125144 +125143-125144 +125145-125149 +125146-125149 +125146-125148 +125147-125148 +125150-125169 +125150-125169 +125150-125162 +125150-125160 +125151-125160 +125151-125154 +125152-125154 +125153-125154 +125155-125160 +125156-125160 +125156-125158 +125157-125158 +125163-125169 +125164-125169 +125164-125165 +125166-125167 +125170-125184 +125170-125184 +125171-125184 +125171-125176 +125172-125176 +125174-125176 +125175-125176 +125177-125184 +125178-125179 +125180-125183 +125181-125183 +125182-125183 +125185-125191 +125185-125191 +125185-125186 +125188-125191 +125189-125191 +125189-125190 +125192-125204 +125192-125204 +125192-125196 +125192-125196 +125193-125196 +125194-125196 +125194-125195 +125197-125199 +125198-125199 +125200-125204 +125201-125202 +125203-125204 +125205-125217 +125205-125217 +125205 +125208-125217 +125209-125210 +125212-125217 +125212-125213 +125214-125217 +125216-125217 +125218-125226 +125218-125226 +125218-125221 +125219-125221 +125220-125221 +125223-125226 +125224-125226 +125225-125226 +125227-125250 +125227-125250 +125228-125229 +125232-125250 +125232-125239 +125235-125239 +125235-125236 +125237-125239 +125238-125239 +125241-125250 +125241-125243 +125241-125242 +125244-125250 +125245-125250 +125245-125248 +125246-125248 +125247-125248 +125251-125267 +125251-125267 +125251-125261 +125252-125261 +125252-125256 +125253-125256 +125253-125255 +125254-125255 +125257-125261 +125258-125261 +125258-125260 +125259-125260 +125262-125264 +125263-125264 +125266-125267 +125268-125282 +125268-125282 +125268-125276 +125268-125272 +125269-125272 +125270-125272 +125271-125272 +125273-125275 +125274-125275 +125277-125282 +125278-125282 +125279-125280 +125283-125309 +125283-125309 +125284-125309 +125284-125302 +125284-125292 +125284-125288 +125285-125288 +125286-125288 +125287-125288 +125289-125291 +125290-125291 +125293-125297 +125294-125297 +125294-125296 +125295-125296 +125298-125302 +125299-125302 +125301-125302 +125303-125309 +125304-125309 +125304-125305 +125307-125309 +125308-125309 +125310-125321 +125310-125321 +125310 +125313-125321 +125314-125321 +125316-125317 +125318-125321 +125319-125321 +125320-125321 +125322-125329 +125322-125329 +125322 +125325-125329 +125326-125329 +125327-125329 +125328-125329 +125330-125336 +125330-125336 +125330 +125333-125336 +125334-125336 +125335-125336 +125337-125343 +125337-125343 +125337 +125340-125343 +125341-125343 +125342-125343 +125344-125351 +125344-125351 +125344 +125347-125351 +125348-125351 +125349-125351 +125350-125351 +125352-125369 +125352-125369 +125352 +125355-125369 +125356-125369 +125356-125357 +125358-125365 +125359-125365 +125359-125362 +125360-125362 +125361-125362 +125363-125364 +125366-125369 +125367-125369 +125368-125369 +125370-125378 +125370-125378 +125372-125378 +125372-125373 +125374-125378 +125375-125378 +125376-125378 +125377-125378 +125379-125391 +125379-125391 +125379-125383 +125380-125383 +125382-125383 +125386-125389 +125387-125389 +125388-125389 +125390-125391 +125392-125421 +125392-125421 +125393-125421 +125394-125416 +125394-125412 +125395-125412 +125395-125398 +125396-125398 +125397-125398 +125399-125412 +125399-125402 +125400-125402 +125401-125402 +125403-125407 +125404-125407 +125405-125407 +125406-125407 +125408-125412 +125409-125412 +125410-125412 +125411-125412 +125414-125416 +125415-125416 +125418-125421 +125418-125420 +125419-125420 +125422-125440 +125422-125440 +125423-125440 +125423-125429 +125424-125429 +125424-125425 +125426-125429 +125427-125429 +125428-125429 +125430-125440 +125431-125440 +125431-125436 +125432-125436 +125433-125436 +125434-125436 +125435-125436 +125438-125440 +125439-125440 +125441-125461 +125441-125461 +125441 +125442-125444 +125442-125443 +125445-125461 +125446-125461 +125446-125455 +125446-125450 +125447-125450 +125448-125450 +125449-125450 +125451-125455 +125451-125452 +125453-125454 +125456-125461 +125457-125461 +125458-125461 +125459-125461 +125459-125460 +125462-125469 +125462-125469 +125462-125464 +125462-125463 +125465-125469 +125466-125469 +125468-125469 +125470-125478 +125470-125478 +125471-125478 +125471-125474 +125472-125474 +125472-125473 +125476-125478 +125477-125478 +125479-125487 +125479-125487 +125480-125487 +125481-125487 +125482-125487 +125483-125487 +125486-125487 +125488-125497 +125488-125497 +125489-125497 +125489-125494 +125492-125494 +125493-125494 +125495-125497 +125496-125497 +125498-125518 +125498-125518 +125500-125518 +125501-125505 +125502-125505 +125504-125505 +125507-125518 +125507-125509 +125508-125509 +125510-125518 +125511-125518 +125512-125518 +125512-125513 +125514-125516 +125515-125516 +125519-125532 +125519-125532 +125521-125522 +125523-125532 +125524-125532 +125525-125532 +125526-125532 +125527-125532 +125528-125532 +125531-125532 +125533-125543 +125533-125543 +125535-125543 +125535-125536 +125537-125543 +125538-125543 +125539-125543 +125539-125540 +125541-125543 +125542-125543 +125544-125552 +125544-125552 +125544-125548 +125545-125548 +125546-125548 +125547-125548 +125550-125551 +125553-125560 +125553-125560 +125553-125556 +125554-125556 +125555-125556 +125557-125559 +125558-125559 +125561-125568 +125561-125568 +125561 +125562-125565 +125564-125565 +125566-125567 +125569-125586 +125569-125586 +125569-125576 +125570-125576 +125570-125571 +125573-125576 +125574-125575 +125577-125578 +125579-125585 +125579-125581 +125580-125581 +125582-125585 +125583-125585 +125584-125585 +125587-125599 +125587-125599 +125588-125599 +125590-125595 +125591-125595 +125592-125595 +125596-125599 +125596-125599 +125597-125599 +125598-125599 +125600-125606 +125600-125606 +125603-125606 +125604-125606 +125605-125606 +125607-125625 +125607-125625 +125608-125625 +125608 +125609-125617 +125609-125614 +125610-125614 +125611-125614 +125613-125614 +125616-125617 +125618-125625 +125619-125625 +125619-125621 +125623-125625 +125626-125648 +125626-125648 +125627-125648 +125627-125645 +125627-125641 +125628-125641 +125628-125634 +125628-125630 +125629-125630 +125633-125634 +125635-125641 +125636-125641 +125636-125637 +125638-125641 +125639-125641 +125642-125645 +125643-125645 +125644-125645 +125646-125648 +125647-125648 +125649-125668 +125649-125668 +125650-125668 +125650 +125653-125654 +125655-125668 +125656-125668 +125656-125659 +125656-125657 +125657 +125660-125668 +125661-125668 +125663-125664 +125665-125668 +125666-125668 +125667-125668 +125669-125684 +125669-125684 +125669-125673 +125670-125673 +125671-125673 +125672-125673 +125674-125684 +125675-125684 +125676-125684 +125676-125681 +125677-125681 +125678-125681 +125679-125681 +125680-125681 +125682-125683 +125685-125695 +125685-125695 +125685 +125686-125695 +125686-125691 +125686-125687 +125690-125691 +125693-125695 +125693-125694 +125696-125697 +125696-125697 +125697 +125698-125708 +125698-125708 +125698-125699 +125700-125701 +125705-125708 +125706-125708 +125709-125718 +125709-125718 +125709 +125710-125713 +125711-125712 +125714-125718 +125715-125718 +125717-125718 +125719-125730 +125719-125730 +125720-125730 +125721-125730 +125721-125722 +125722 +125726-125730 +125727-125730 +125729-125730 +125730 +125731-125745 +125731-125745 +125732-125745 +125732-125741 +125732-125739 +125733-125739 +125734-125739 +125735-125737 +125735-125736 +125738-125739 +125742-125745 +125743-125745 +125746-125760 +125746-125760 +125746-125754 +125746-125750 +125747-125750 +125748-125750 +125749-125750 +125751-125753 +125752-125753 +125755-125760 +125756-125760 +125756-125757 +125759-125760 +125761-125775 +125761-125775 +125762-125775 +125763-125775 +125764-125775 +125764-125769 +125766-125769 +125767-125769 +125767-125768 +125770-125775 +125771-125775 +125772-125773 +125776-125782 +125776-125782 +125776-125780 +125777-125780 +125778-125780 +125778-125779 +125783-125791 +125783-125791 +125783-125788 +125783-125785 +125784-125785 +125785 +125789-125791 +125790-125791 +125792-125795 +125792-125795 +125792 +125796-125805 +125796-125805 +125796-125799 +125797-125799 +125798-125799 +125802-125805 +125803-125805 +125806-125819 +125806-125819 +125806-125809 +125807-125809 +125808-125809 +125810-125812 +125811-125812 +125814-125819 +125815-125819 +125815-125816 +125817-125818 +125820-125832 +125820-125832 +125820-125821 +125823-125826 +125824-125826 +125825-125826 +125827-125832 +125828-125832 +125829-125832 +125830-125832 +125831-125832 +125833-125847 +125833-125847 +125833-125841 +125833-125838 +125834-125838 +125835-125838 +125836-125838 +125837-125838 +125842-125847 +125843-125847 +125843-125844 +125845-125846 +125848-125856 +125848-125856 +125849-125856 +125851 +125852-125856 +125853-125856 +125853-125855 +125854-125855 +125857-125869 +125857-125869 +125857-125858 +125861-125869 +125861-125864 +125862-125864 +125863-125864 +125865-125869 +125866-125869 +125867-125869 +125868-125869 +125870-125898 +125870-125898 +125870-125886 +125870-125879 +125870-125874 +125871-125874 +125872-125874 +125877-125879 +125878-125879 +125880-125886 +125881-125886 +125881-125886 +125882-125886 +125884-125886 +125885-125886 +125887-125898 +125888-125898 +125890-125895 +125891-125895 +125892-125895 +125894-125895 +125896-125898 +125897-125898 +125899-125910 +125899-125910 +125900-125910 +125901-125910 +125901-125905 +125902-125904 +125903-125904 +125906-125910 +125907-125910 +125908-125910 +125909-125910 +125911-125915 +125911-125915 +125912-125915 +125912-125913 +125916-125927 +125916-125927 +125917-125927 +125917-125921 +125917-125919 +125918-125919 +125922-125927 +125923-125927 +125923-125926 +125924-125926 +125925-125926 +125928-125935 +125928-125935 +125928 +125931-125935 +125932-125935 +125934-125935 +125936-125949 +125936-125949 +125938-125949 +125939-125949 +125940-125942 +125941-125942 +125943-125945 +125944-125945 +125946-125949 +125947-125949 +125948-125949 +125950-125956 +125950-125956 +125950-125952 +125951-125952 +125954-125956 +125955-125956 +125957-125976 +125957-125976 +125957-125964 +125957-125962 +125958-125962 +125959-125962 +125960-125962 +125961-125962 +125965-125976 +125966-125976 +125967-125976 +125968-125976 +125968-125969 +125972-125976 +125972-125973 +125974-125976 +125974-125975 +125977-125989 +125977-125989 +125977-125978 +125980-125981 +125982-125989 +125983-125989 +125984-125985 +125986-125988 +125987-125988 +125990-125998 +125990-125998 +125991-125998 +125993-125995 +125994-125995 +125996-125998 +125996-125997 +125999-126028 +125999-126028 +126000-126028 +126000-126020 +126001-126020 +126001-126006 +126003-126006 +126004-126006 +126005-126006 +126007-126013 +126008-126013 +126009-126013 +126009-126011 +126010-126011 +126014-126020 +126015-126020 +126016-126018 +126017-126018 +126019-126020 +126021-126028 +126022-126025 +126023-126025 +126024-126025 +126027-126028 +126029-126040 +126029-126040 +126029 +126031-126040 +126032-126035 +126033-126035 +126034-126035 +126037-126040 +126038-126040 +126039-126040 +126041-126072 +126041-126072 +126041-126048 +126041-126042 +126044-126048 +126045-126048 +126045-126047 +126046-126047 +126049-126072 +126050-126072 +126050-126055 +126050-126051 +126053-126055 +126054-126055 +126056-126072 +126056-126061 +126057-126061 +126058-126061 +126059-126061 +126060-126061 +126063-126072 +126063-126069 +126065-126066 +126067-126069 +126068-126069 +126070-126072 +126071-126072 +126073-126101 +126073-126101 +126073 +126074-126083 +126074-126078 +126075-126078 +126075-126076 +126079-126083 +126081-126083 +126082-126083 +126084-126101 +126085-126101 +126085-126090 +126085-126087 +126086-126087 +126089-126090 +126092-126101 +126092-126095 +126092-126094 +126093-126094 +126096-126101 +126097-126101 +126097-126098 +126099-126100 +126102-126123 +126102-126123 +126103-126123 +126105-126107 +126106-126107 +126108-126123 +126109-126123 +126109-126116 +126110-126116 +126111-126116 +126112-126116 +126112-126114 +126113-126114 +126115-126116 +126117-126123 +126118-126123 +126118-126119 +126120-126123 +126121-126123 +126124-126136 +126124-126136 +126125-126136 +126125-126132 +126125-126129 +126126-126129 +126127-126129 +126128-126129 +126130-126131 +126133-126136 +126134-126136 +126135-126136 +126137-126150 +126137-126150 +126138-126150 +126138-126139 +126141-126144 +126142-126144 +126143-126144 +126145-126150 +126145-126150 +126146-126150 +126147-126150 +126148-126150 +126151-126171 +126151-126171 +126151 +126152-126164 +126153-126155 +126153-126154 +126157-126164 +126157-126159 +126158-126159 +126160-126164 +126161-126164 +126161-126163 +126162-126163 +126165-126171 +126166-126171 +126166-126167 +126169-126171 +126170-126171 +126172-126178 +126172-126178 +126172-126173 +126175-126178 +126176-126178 +126177-126178 +126179-126204 +126179-126204 +126179-126191 +126179-126187 +126180-126187 +126181-126187 +126183-126187 +126183-126184 +126185-126186 +126188-126190 +126189-126190 +126192-126204 +126193-126204 +126193-126199 +126194-126199 +126195-126199 +126198-126199 +126200-126202 +126201-126202 +126205-126221 +126205-126221 +126206-126221 +126208-126221 +126208-126210 +126209-126210 +126211-126221 +126211-126214 +126211-126212 +126214 +126215-126221 +126216-126221 +126217-126219 +126218-126219 +126222-126241 +126222-126241 +126222 +126223-126227 +126224-126226 +126225-126226 +126228-126230 +126229-126230 +126231-126241 +126232-126241 +126232-126236 +126234-126236 +126235-126236 +126237-126241 +126238-126241 +126238-126241 +126239-126241 +126240-126241 +126242-126246 +126242-126246 +126243-126245 +126244-126245 +126247-126257 +126247-126257 +126247-126252 +126247-126248 +126249-126251 +126250-126251 +126253-126257 +126254-126257 +126254-126255 +126258-126262 +126258-126262 +126259-126261 +126260-126261 +126263-126277 +126263-126277 +126263-126266 +126264-126266 +126265-126266 +126269-126277 +126269-126274 +126272-126274 +126273-126274 +126278-126289 +126278-126289 +126278-126279 +126281-126289 +126281-126284 +126282-126284 +126283-126284 +126285-126289 +126286-126289 +126287-126289 +126288-126289 +126290-126311 +126290-126311 +126290 +126291-126292 +126293-126311 +126294-126311 +126294-126299 +126294-126295 +126296-126298 +126297-126298 +126300-126311 +126301-126311 +126301-126307 +126301-126303 +126302-126303 +126303 +126304-126306 +126305-126306 +126308-126311 +126309-126311 +126310-126311 +126312-126323 +126312-126323 +126312-126314 +126313-126314 +126317-126318 +126319-126323 +126320-126323 +126320-126321 +126324-126348 +126324-126348 +126324-126325 +126327-126330 +126328-126330 +126329-126330 +126331-126332 +126333-126348 +126334-126348 +126334-126338 +126335-126338 +126335-126336 +126337-126338 +126340-126341 +126342-126344 +126343-126344 +126345-126348 +126346-126348 +126347-126348 +126349-126374 +126349-126374 +126349-126350 +126352-126353 +126354-126374 +126355-126359 +126356-126359 +126358-126359 +126361-126374 +126362-126374 +126362-126364 +126365-126374 +126366-126374 +126367-126369 +126368-126369 +126370-126374 +126371-126374 +126372-126374 +126373-126374 +126375-126386 +126375-126386 +126375 +126376-126381 +126377-126381 +126378-126379 +126382-126383 +126385-126386 +126387-126390 +126387-126390 +126391-126406 +126391-126406 +126391-126393 +126392-126393 +126394-126398 +126394-126395 +126396-126397 +126399-126406 +126400-126406 +126400-126402 +126401-126402 +126403-126404 +126405-126406 +126407-126424 +126407-126424 +126407-126408 +126410-126417 +126411-126417 +126411-126413 +126411-126412 +126414-126417 +126415-126417 +126416-126417 +126418-126424 +126419-126424 +126419-126422 +126420-126422 +126421-126422 +126425-126438 +126425-126438 +126426-126438 +126427-126429 +126428-126429 +126430-126438 +126431-126438 +126431-126432 +126434-126435 +126436-126438 +126437-126438 +126439-126458 +126439-126458 +126439-126448 +126440-126448 +126440-126441 +126443-126448 +126445-126448 +126446-126448 +126447-126448 +126449-126458 +126449-126453 +126449-126450 +126451-126452 +126454-126458 +126455-126458 +126456-126458 +126457-126458 +126459-126471 +126459-126471 +126460-126471 +126461-126463 +126462-126463 +126464-126471 +126465-126471 +126466-126471 +126468-126469 +126470-126471 +126472-126491 +126472-126491 +126472-126475 +126472-126473 +126476-126491 +126477-126491 +126477-126485 +126477-126481 +126478-126481 +126479-126481 +126480-126481 +126482-126484 +126483-126484 +126486-126491 +126487-126491 +126487-126488 +126489-126490 +126492-126517 +126492-126517 +126492-126498 +126492-126493 +126495-126496 +126497-126498 +126499-126506 +126500-126506 +126502-126506 +126503-126506 +126504-126506 +126505-126506 +126507-126517 +126508-126517 +126508-126510 +126509-126510 +126511-126512 +126514-126517 +126515-126517 +126515-126516 +126518-126544 +126518-126544 +126518-126523 +126521-126523 +126522-126523 +126524-126531 +126525-126531 +126525-126527 +126526-126527 +126530-126531 +126532-126544 +126533-126544 +126533-126536 +126533-126534 +126537-126544 +126538-126544 +126538-126539 +126539 +126542-126544 +126543-126544 +126545-126551 +126545-126551 +126547-126551 +126548-126551 +126552-126565 +126552-126565 +126552-126563 +126553-126563 +126553-126558 +126555-126558 +126556-126558 +126557-126558 +126559-126563 +126560-126563 +126560-126562 +126561-126562 +126564-126565 +126566-126582 +126566-126582 +126567-126582 +126567-126574 +126568-126574 +126570-126574 +126571-126574 +126571-126572 +126573-126574 +126577-126582 +126577-126581 +126578-126581 +126579-126581 +126583-126599 +126583-126599 +126584-126599 +126584-126586 +126585-126586 +126588-126589 +126590-126599 +126591-126599 +126591-126594 +126592-126594 +126593-126594 +126596-126599 +126597-126599 +126598-126599 +126600-126622 +126600-126622 +126600-126611 +126600-126607 +126601-126607 +126602-126607 +126603-126607 +126604-126607 +126606-126607 +126608-126610 +126609-126610 +126612-126622 +126613-126622 +126613-126617 +126614-126617 +126615-126617 +126616-126617 +126617 +126619-126622 +126620-126622 +126621-126622 +126623-126640 +126623-126640 +126623-126631 +126623-126624 +126626-126631 +126627-126631 +126628-126631 +126629-126631 +126630-126631 +126632-126640 +126633-126640 +126633-126635 +126633-126634 +126636-126640 +126637-126640 +126637-126639 +126638-126639 +126641-126652 +126641-126652 +126642-126652 +126642-126647 +126644-126647 +126645-126647 +126646-126647 +126649-126652 +126649-126651 +126650-126651 +126653-126669 +126653-126669 +126654-126669 +126654-126656 +126655-126656 +126660-126669 +126661-126669 +126661-126666 +126662-126666 +126663-126666 +126664-126666 +126665-126666 +126668-126669 +126670-126681 +126670-126681 +126671-126681 +126671-126678 +126673-126678 +126673-126674 +126675-126678 +126676-126678 +126677-126678 +126679-126681 +126679-126681 +126680-126681 +126682-126698 +126682-126698 +126682-126687 +126684-126687 +126685-126687 +126686-126687 +126688-126698 +126689-126698 +126690-126698 +126691-126698 +126692-126698 +126693-126698 +126695-126698 +126696-126698 +126697-126698 +126699-126708 +126699-126708 +126699-126706 +126701-126706 +126702-126706 +126703-126706 +126704-126706 +126705-126706 +126707-126708 +126707-126708 +126709-126721 +126709-126721 +126710-126713 +126710-126712 +126711-126712 +126715-126721 +126715-126721 +126715-126717 +126716-126717 +126718-126721 +126719-126721 +126720-126721 +126722-126733 +126722-126733 +126723-126733 +126723-126724 +126726-126727 +126727 +126728-126733 +126729-126733 +126729-126730 +126732-126733 +126734-126753 +126734-126753 +126735-126753 +126735-126746 +126737-126738 +126738 +126739-126746 +126739-126746 +126739-126740 +126741-126743 +126742-126743 +126744-126746 +126745-126746 +126747-126753 +126748-126753 +126748-126749 +126750-126752 +126751-126752 +126754-126778 +126754-126778 +126754-126765 +126754-126759 +126755-126759 +126755-126758 +126756-126758 +126757-126758 +126760-126765 +126760-126763 +126761-126763 +126762-126763 +126766-126778 +126767-126778 +126769-126772 +126770-126772 +126771-126772 +126773-126778 +126774-126778 +126775-126778 +126776-126778 +126777-126778 +126779-126790 +126779-126790 +126779-126785 +126780-126785 +126781-126785 +126782-126785 +126783-126785 +126784-126785 +126787-126788 +126789-126790 +126791-126812 +126791-126812 +126791-126795 +126792-126795 +126794-126795 +126799-126812 +126800-126812 +126802-126812 +126803-126812 +126804-126812 +126805-126812 +126807-126808 +126809-126812 +126810-126812 +126811-126812 +126813-126833 +126813-126833 +126814-126833 +126816-126817 +126818-126833 +126819-126833 +126819-126824 +126819-126820 +126822-126823 +126825-126833 +126826-126833 +126826-126828 +126827-126828 +126829-126832 +126830-126832 +126831-126832 +126834-126840 +126834-126840 +126834-126837 +126835-126837 +126836-126837 +126839-126840 +126841-126851 +126841-126851 +126841-126847 +126842-126847 +126844-126847 +126845-126847 +126846-126847 +126848-126849 +126852-126869 +126852-126869 +126854-126863 +126855-126863 +126856-126863 +126857-126863 +126858-126863 +126859-126863 +126860-126863 +126861-126863 +126862-126863 +126864-126869 +126865-126869 +126866-126869 +126867-126869 +126867-126868 +126870-126888 +126870-126888 +126871-126888 +126871-126878 +126873-126878 +126874-126878 +126875-126878 +126877-126878 +126880-126888 +126880-126886 +126881-126886 +126883-126886 +126884-126886 +126885-126886 +126887-126888 +126889-126906 +126889-126906 +126890-126906 +126890-126897 +126891-126897 +126892-126897 +126893-126897 +126895-126897 +126896-126897 +126898-126906 +126899-126906 +126900-126906 +126901-126906 +126902-126906 +126903-126906 +126905-126906 +126907-126927 +126907-126927 +126907-126918 +126907-126917 +126908-126917 +126910-126917 +126910-126912 +126911-126912 +126914-126917 +126915-126917 +126916-126917 +126918 +126919-126927 +126920-126927 +126922-126927 +126923-126927 +126924-126927 +126925-126927 +126926-126927 +126928-126931 +126928-126931 +126929-126931 +126930-126931 +126932-126937 +126932-126937 +126933-126934 +126936-126937 +126937 +126938-126947 +126938-126947 +126938-126941 +126938-126939 +126942-126947 +126943-126947 +126944-126947 +126945-126947 +126946-126947 +126948-126971 +126948-126971 +126949-126971 +126950-126971 +126950-126957 +126950-126955 +126951-126955 +126952-126955 +126953-126955 +126954-126955 +126958-126971 +126959-126971 +126959-126965 +126959-126963 +126960-126963 +126961-126963 +126962-126963 +126966-126971 +126967-126971 +126967-126968 +126972-126985 +126972-126985 +126973-126985 +126974-126985 +126974-126977 +126974-126976 +126975-126976 +126978-126985 +126979-126985 +126979-126981 +126979-126980 +126982-126984 +126983-126984 +126986-127001 +126986-127001 +126987-127001 +126988-127001 +126989-127001 +126989-126993 +126989-126992 +126990-126992 +126991-126992 +126994-127001 +126995-127001 +126998-127001 +126999-127001 +127000-127001 +127002-127012 +127002-127012 +127003-127012 +127004-127012 +127004-127006 +127005-127006 +127007-127012 +127008-127012 +127008-127010 +127009-127010 +127011-127012 +127013-127020 +127013-127020 +127015-127020 +127015-127017 +127016-127017 +127018-127020 +127019-127020 +127021-127026 +127021-127026 +127021 +127024-127026 +127025-127026 +127027-127064 +127027-127064 +127027-127057 +127027-127028 +127029-127057 +127029-127034 +127029-127030 +127031-127034 +127032-127034 +127033-127034 +127035-127057 +127037-127038 +127039-127050 +127040-127050 +127041-127050 +127042-127043 +127045-127050 +127046-127050 +127047-127050 +127048-127050 +127049-127050 +127051-127057 +127052-127057 +127052-127053 +127054-127057 +127055-127057 +127056-127057 +127058-127064 +127059-127064 +127059-127060 +127062-127064 +127063-127064 +127065-127085 +127065-127085 +127066-127067 +127068-127081 +127068-127070 +127071-127081 +127071-127073 +127072-127073 +127074-127081 +127075-127081 +127076-127081 +127076-127077 +127078-127081 +127079-127081 +127080-127081 +127082-127085 +127083-127085 +127084-127085 +127086-127102 +127086-127102 +127086-127087 +127088-127102 +127089-127102 +127090-127102 +127090-127096 +127090-127093 +127091-127093 +127092-127093 +127095-127096 +127097-127102 +127098-127102 +127100-127102 +127101-127102 +127103-127121 +127103-127121 +127104-127121 +127104 +127108-127118 +127110-127118 +127111-127113 +127112-127113 +127112-127113 +127115-127118 +127117-127118 +127119-127121 +127120-127121 +127122-127132 +127122-127132 +127123-127132 +127123-127126 +127125-127126 +127128-127132 +127129-127132 +127130-127132 +127131-127132 +127133-127144 +127133-127144 +127134-127135 +127137-127140 +127138-127140 +127139-127140 +127141-127144 +127142-127144 +127142-127143 +127145-127159 +127145-127159 +127146-127159 +127147-127149 +127148-127149 +127150-127159 +127150-127151 +127152-127159 +127153-127159 +127155-127159 +127155-127156 +127158-127159 +127160-127166 +127160-127166 +127162-127166 +127162-127163 +127164-127166 +127165-127166 +127167-127177 +127167-127177 +127169-127177 +127170-127177 +127171-127173 +127172-127173 +127175-127177 +127175-127176 +127178-127191 +127178-127191 +127178-127188 +127179-127188 +127180-127188 +127180 +127181-127188 +127182-127188 +127184-127188 +127185-127188 +127186-127188 +127187-127188 +127192-127204 +127192-127204 +127192-127196 +127192-127196 +127193-127196 +127194-127196 +127195-127196 +127198-127203 +127198-127200 +127199-127200 +127201-127203 +127202-127203 +127205-127225 +127205-127225 +127205-127215 +127206-127215 +127206-127209 +127208-127209 +127210-127215 +127211-127215 +127211-127213 +127212-127213 +127216-127225 +127216-127220 +127219-127220 +127221-127225 +127222-127225 +127222 +127226-127236 +127226-127236 +127227-127236 +127227-127230 +127228-127230 +127230 +127232-127236 +127233-127236 +127233-127234 +127235-127236 +127237-127262 +127237-127262 +127237-127246 +127237-127240 +127238-127240 +127243-127246 +127244-127246 +127245-127246 +127247-127262 +127248-127262 +127249-127256 +127249-127251 +127250-127251 +127252-127256 +127253-127256 +127253-127255 +127254-127255 +127257-127262 +127258-127262 +127258-127260 +127259-127260 +127261-127262 +127263-127271 +127263-127271 +127265-127271 +127266-127271 +127267-127271 +127268-127271 +127268-127269 +127270-127271 +127272-127281 +127272-127281 +127272-127273 +127274-127281 +127274-127276 +127275-127276 +127277-127281 +127280-127281 +127282-127294 +127282-127294 +127282 +127283-127284 +127286-127289 +127287-127289 +127288-127289 +127290-127294 +127291-127294 +127292-127294 +127293-127294 +127295-127309 +127295-127309 +127296-127309 +127296-127297 +127298-127309 +127298-127304 +127298-127299 +127300-127304 +127301-127304 +127302-127304 +127303-127304 +127305-127309 +127306-127309 +127307-127308 +127310-127323 +127310-127323 +127310-127314 +127310-127311 +127316-127323 +127317-127323 +127317-127319 +127318-127319 +127320-127322 +127321-127322 +127324-127349 +127324-127349 +127324 +127325-127332 +127327-127332 +127328-127332 +127330-127332 +127331-127332 +127333-127349 +127334-127349 +127335-127349 +127335-127342 +127336-127342 +127338-127340 +127339-127340 +127341-127342 +127343-127349 +127346-127349 +127348-127349 +127350-127359 +127350-127359 +127351-127359 +127351-127353 +127352-127353 +127355-127359 +127357-127359 +127358-127359 +127360-127370 +127360-127370 +127361-127370 +127363-127365 +127364-127365 +127366-127370 +127367-127370 +127369-127370 +127371-127374 +127371-127374 +127373-127374 +127375-127382 +127375-127382 +127376-127382 +127376-127379 +127376-127378 +127377-127378 +127383-127396 +127383-127396 +127383-127384 +127385-127386 +127386 +127388-127396 +127388-127390 +127389-127390 +127391-127396 +127393-127396 +127393-127394 +127397-127415 +127397-127415 +127398-127415 +127398-127401 +127400-127401 +127402-127415 +127402-127406 +127403-127406 +127405-127406 +127407-127410 +127408-127410 +127408-127409 +127409 +127411-127415 +127412-127415 +127412-127414 +127413-127414 +127416-127423 +127416-127423 +127416 +127418-127420 +127419-127420 +127422-127423 +127422-127423 +127424-127429 +127424-127429 +127424-127425 +127425 +127426-127428 +127427-127428 +127430-127435 +127430-127435 +127430-127431 +127431 +127434-127435 +127436-127444 +127436-127444 +127438-127444 +127438-127439 +127440-127444 +127441-127444 +127442-127444 +127443-127444 +127445-127456 +127445-127456 +127446-127456 +127446-127448 +127446-127447 +127449-127456 +127450-127456 +127451-127456 +127452-127456 +127452-127454 +127453-127454 +127457-127469 +127457-127469 +127457-127460 +127458-127460 +127461-127469 +127462-127469 +127464-127469 +127464-127467 +127465-127467 +127466-127467 +127470-127479 +127470-127479 +127471-127479 +127471-127474 +127472-127474 +127475-127479 +127476-127479 +127476-127478 +127477-127478 +127480-127481 +127480-127481 +127482-127485 +127482-127485 +127484-127485 +127486-127490 +127486-127490 +127487-127488 +127489-127490 +127491-127507 +127491-127507 +127491-127497 +127492-127497 +127492-127494 +127492-127493 +127495-127497 +127496-127497 +127498-127507 +127499-127507 +127499-127506 +127499-127502 +127499-127501 +127500-127501 +127503-127506 +127504-127506 +127504-127505 +127508-127514 +127508-127514 +127509-127513 +127510-127511 +127512-127513 +127515-127537 +127515-127537 +127515 +127516-127525 +127516-127517 +127519-127525 +127521-127525 +127522-127525 +127523-127525 +127524-127525 +127528-127537 +127530-127537 +127531-127537 +127532-127537 +127533-127537 +127533-127536 +127535-127536 +127538-127567 +127538-127567 +127539-127567 +127540-127549 +127540-127548 +127540-127541 +127542-127548 +127543-127548 +127545-127548 +127546-127548 +127547-127548 +127550-127567 +127550-127557 +127550-127554 +127551-127554 +127551-127553 +127552-127553 +127556-127557 +127558-127567 +127559-127567 +127559-127566 +127560-127566 +127560-127561 +127562-127566 +127563-127566 +127563-127564 +127565-127566 +127568-127634 +127568-127634 +127569-127634 +127570-127572 +127573-127634 +127573-127574 +127575-127634 +127576-127609 +127576-127587 +127577-127581 +127578-127580 +127579-127580 +127582-127583 +127584-127586 +127585-127586 +127588-127609 +127589-127609 +127589-127600 +127590-127600 +127591-127600 +127591-127595 +127593-127595 +127594-127595 +127596-127600 +127597-127600 +127598-127600 +127599-127600 +127601-127604 +127602-127604 +127603-127604 +127605-127606 +127607-127608 +127610-127634 +127611-127634 +127611-127618 +127612-127613 +127614-127618 +127615-127618 +127616-127618 +127616-127617 +127619-127628 +127619-127623 +127619-127621 +127620-127621 +127624-127628 +127625-127628 +127626-127628 +127627-127628 +127631-127634 +127631-127633 +127631-127632 +127635-127648 +127635-127648 +127636-127648 +127637-127639 +127638-127639 +127639 +127640-127648 +127640-127642 +127641-127642 +127643-127645 +127644-127645 +127646-127648 +127647-127648 +127649-127672 +127649-127672 +127650-127672 +127650-127658 +127651-127658 +127651-127653 +127651-127652 +127655-127658 +127656-127658 +127657-127658 +127659-127672 +127660-127667 +127660-127663 +127660-127661 +127662-127663 +127665-127667 +127665-127666 +127669-127672 +127670-127672 +127673-127690 +127673-127690 +127674-127690 +127674-127679 +127675-127679 +127676-127678 +127680-127690 +127681-127690 +127681-127687 +127683-127686 +127684-127686 +127684-127686 +127685-127686 +127688-127689 +127691-127711 +127691-127711 +127691-127692 +127693-127711 +127694-127711 +127694-127698 +127694-127697 +127695-127697 +127696-127697 +127699-127705 +127700-127705 +127700-127704 +127701-127704 +127702-127704 +127703-127704 +127706-127711 +127707-127711 +127707-127710 +127708-127710 +127709-127710 +127712-127751 +127712-127751 +127714-127719 +127715-127719 +127715-127718 +127716-127718 +127717-127718 +127720-127723 +127720-127721 +127722-127723 +127724-127751 +127724-127751 +127724-127728 +127724-127725 +127726-127728 +127726-127727 +127729-127734 +127729-127733 +127729-127731 +127729-127730 +127732-127733 +127734 +127735-127741 +127735-127737 +127735-127736 +127738-127741 +127739-127741 +127740-127741 +127742-127751 +127742-127743 +127744-127751 +127745-127748 +127746-127748 +127747-127748 +127749-127750 +127752-127795 +127752-127795 +127753-127795 +127754-127755 +127756-127759 +127756-127758 +127757-127758 +127760-127795 +127761-127795 +127764-127767 +127765-127767 +127766-127767 +127768-127795 +127768-127771 +127770-127771 +127772-127795 +127773-127795 +127774-127776 +127775-127776 +127777-127795 +127777-127784 +127778-127784 +127779-127784 +127780-127784 +127780-127782 +127780-127781 +127783-127784 +127785-127795 +127786-127795 +127787-127795 +127788-127795 +127789-127795 +127790-127795 +127792-127793 +127794-127795 +127796-127814 +127796-127814 +127796-127804 +127798-127804 +127798-127799 +127800-127804 +127800-127803 +127801-127803 +127802-127803 +127805-127814 +127806-127814 +127806-127808 +127807-127808 +127811-127814 +127813-127814 +127815-127830 +127815-127830 +127816-127830 +127816 +127819-127830 +127819-127820 +127821-127830 +127822-127830 +127823-127830 +127824-127830 +127825-127830 +127826-127830 +127826-127828 +127827-127828 +127829-127830 +127831-127846 +127831-127846 +127832-127846 +127834-127846 +127834-127837 +127835-127837 +127836-127837 +127839-127846 +127840-127846 +127841-127846 +127842-127846 +127843-127846 +127844-127846 +127845-127846 +127847-127854 +127847-127854 +127849-127854 +127849-127850 +127850 +127852-127854 +127855-127883 +127855-127883 +127856-127883 +127856 +127858-127867 +127860-127863 +127861-127863 +127862-127863 +127864-127867 +127864-127866 +127865-127866 +127869-127871 +127870-127871 +127873-127883 +127874-127880 +127875-127880 +127876-127880 +127876-127878 +127877-127878 +127879-127880 +127881-127883 +127882-127883 +127884-127905 +127884-127905 +127885-127905 +127885-127892 +127886-127892 +127886-127888 +127886-127887 +127887 +127890-127892 +127890-127891 +127893-127905 +127894-127905 +127896-127897 +127898-127905 +127899-127905 +127900-127905 +127901-127905 +127901-127904 +127901-127903 +127902-127903 +127906-127947 +127906-127947 +127907-127947 +127907-127924 +127907-127920 +127908-127920 +127909-127920 +127909-127911 +127912-127920 +127913-127920 +127914-127917 +127915-127917 +127916-127917 +127919-127920 +127921-127924 +127921-127922 +127923-127924 +127925-127930 +127926-127930 +127926-127927 +127928-127930 +127929-127930 +127931-127935 +127934-127935 +127936-127946 +127936-127939 +127937-127939 +127938-127939 +127940-127941 +127942-127946 +127943-127946 +127944-127946 +127945-127946 +127947 +127948-127988 +127948-127988 +127948-127988 +127948-127950 +127949-127950 +127951-127988 +127951-127964 +127954-127955 +127956-127964 +127957-127959 +127958-127959 +127960-127964 +127960-127963 +127962-127963 +127965-127988 +127966-127988 +127967-127988 +127968-127971 +127969-127971 +127970-127971 +127972-127988 +127972-127975 +127972-127974 +127973-127974 +127976-127988 +127978-127988 +127978-127986 +127978-127981 +127979-127981 +127980-127981 +127982-127986 +127983-127986 +127984-127986 +127985-127986 +127987-127988 +127989-128008 +127989-128008 +127990-128004 +127990-127991 +127991 +127992-128004 +127993-128004 +127994-128004 +127994-127998 +127995-127998 +127996-127998 +127997-127998 +127999-128004 +128000-128004 +128001-128004 +128002-128004 +128002-128003 +128005-128008 +128006-128008 +128006-128007 +128009-128016 +128009-128016 +128010-128016 +128010-128012 +128011-128012 +128013-128016 +128014-128016 +128015-128016 +128017-128058 +128017-128058 +128017-128019 +128018-128019 +128021-128058 +128021-128029 +128022-128029 +128022-128023 +128023 +128024-128026 +128025-128026 +128026 +128027-128029 +128028-128029 +128029 +128030-128039 +128031-128039 +128032-128039 +128033-128039 +128033-128034 +128035-128039 +128036-128039 +128037-128039 +128038-128039 +128040-128058 +128041-128058 +128042-128058 +128042-128047 +128042-128043 +128044-128047 +128045-128047 +128046-128047 +128048-128058 +128048-128051 +128049-128051 +128050-128051 +128052-128058 +128053-128058 +128054-128058 +128055-128058 +128056-128058 +128057-128058 +128059-128094 +128059-128094 +128059-128082 +128059-128072 +128059-128072 +128060-128072 +128060-128061 +128062-128072 +128063-128072 +128065-128068 +128066-128068 +128067-128068 +128069-128072 +128070-128072 +128071-128072 +128073-128082 +128074-128082 +128076-128082 +128077-128082 +128078-128082 +128079-128082 +128079-128081 +128080-128081 +128083-128094 +128084-128088 +128084-128085 +128086-128088 +128087-128088 +128089-128093 +128090-128093 +128091-128093 +128092-128093 +128094 +128095-128117 +128095-128117 +128095-128099 +128097-128099 +128098-128099 +128100-128117 +128101-128117 +128101-128108 +128103-128108 +128103-128104 +128105-128108 +128106-128108 +128109-128117 +128110-128117 +128111-128112 +128113-128117 +128114-128117 +128115-128117 +128116-128117 +128118-128119 +128118-128119 +128119 +128120-128140 +128120-128140 +128120-128130 +128120-128126 +128122-128126 +128122-128123 +128124-128126 +128125-128126 +128127-128130 +128128-128130 +128129-128130 +128131-128140 +128131-128140 +128131-128138 +128131-128132 +128132 +128133-128135 +128134-128135 +128135 +128136-128138 +128137-128138 +128138 +128139-128140 +128141-128172 +128141-128172 +128141-128156 +128141-128142 +128143-128156 +128144-128156 +128144-128145 +128146-128156 +128147-128156 +128148-128156 +128149-128156 +128150-128156 +128150-128154 +128151-128152 +128153-128154 +128155-128156 +128158-128163 +128159-128163 +128159-128160 +128161-128163 +128162-128163 +128164-128172 +128165-128172 +128165-128168 +128166-128168 +128167-128168 +128169-128172 +128170-128172 +128171-128172 +128173-128218 +128173-128218 +128173-128179 +128174-128175 +128176-128179 +128177-128179 +128178-128179 +128180-128218 +128181-128218 +128182-128183 +128184-128185 +128186-128187 +128188-128218 +128189-128218 +128189-128193 +128189-128190 +128192-128193 +128194-128218 +128195-128218 +128196-128218 +128197-128218 +128198-128218 +128199-128218 +128199-128200 +128201-128203 +128202-128203 +128204-128206 +128205-128206 +128207-128209 +128208-128209 +128210-128212 +128211-128212 +128213-128215 +128214-128215 +128216-128218 +128217-128218 +128219-128227 +128219-128227 +128220-128227 +128221-128227 +128222-128227 +128223-128227 +128224-128227 +128226-128227 +128228-128250 +128228-128250 +128229-128250 +128229-128233 +128229 +128231-128233 +128232-128233 +128234-128250 +128235-128250 +128235-128238 +128236-128238 +128237-128238 +128239-128250 +128240-128250 +128240-128241 +128242-128250 +128242-128243 +128244-128250 +128245-128250 +128246-128248 +128247-128248 +128249-128250 +128251-128318 +128251-128318 +128252-128318 +128252-128263 +128252-128261 +128252-128257 +128252-128254 +128253-128254 +128255-128257 +128256-128257 +128259-128261 +128260-128261 +128262-128263 +128263 +128264-128270 +128265-128270 +128265-128267 +128266-128267 +128268-128270 +128269-128270 +128271-128280 +128272-128280 +128272-128274 +128273-128274 +128276-128280 +128277-128280 +128278-128280 +128278-128279 +128281-128288 +128282-128288 +128282-128284 +128282-128284 +128283-128284 +128285-128288 +128286-128288 +128286-128288 +128287-128288 +128289-128297 +128290-128297 +128291-128295 +128292-128295 +128293-128295 +128294-128295 +128296-128297 +128298-128306 +128299-128306 +128299-128302 +128300-128302 +128301-128302 +128303-128305 +128303-128304 +128307-128318 +128308-128318 +128308-128310 +128308-128310 +128309-128310 +128311-128318 +128312-128318 +128312-128313 +128315-128318 +128316-128318 +128317-128318 +128319-128329 +128319-128329 +128320-128329 +128320-128322 +128321-128322 +128324-128327 +128325-128327 +128326-128327 +128328-128329 +128330-128339 +128330-128339 +128331-128339 +128332-128334 +128333-128334 +128335-128336 +128337-128339 +128338-128339 +128340-128370 +128340-128370 +128340-128349 +128342-128349 +128342-128343 +128344-128346 +128345-128346 +128347-128349 +128348-128349 +128349 +128350-128370 +128351-128370 +128351-128352 +128353-128370 +128354-128370 +128355-128361 +128355-128356 +128357-128361 +128358-128361 +128359-128361 +128360-128361 +128362-128370 +128363-128370 +128364-128370 +128365-128370 +128366-128370 +128366-128367 +128368-128370 +128369-128370 +128371-128383 +128371-128383 +128372-128383 +128373-128383 +128373-128374 +128375-128377 +128376-128377 +128378-128383 +128379-128383 +128381-128383 +128382-128383 +128384-128416 +128384-128416 +128384-128400 +128384-128400 +128384-128394 +128385-128394 +128386-128394 +128387-128394 +128387-128388 +128389-128394 +128391-128394 +128392-128394 +128393-128394 +128395-128400 +128396-128400 +128397-128400 +128398-128400 +128399-128400 +128401-128408 +128401-128403 +128402-128403 +128404-128407 +128405-128407 +128406-128407 +128409-128416 +128410-128416 +128410-128413 +128411-128413 +128412-128413 +128414-128415 +128417-128423 +128417-128423 +128417-128422 +128418-128422 +128419-128422 +128420-128422 +128420-128421 +128424-128443 +128424-128443 +128426-128443 +128426-128434 +128427-128434 +128428-128430 +128429-128430 +128431-128434 +128432-128434 +128433-128434 +128435-128443 +128436-128443 +128437-128443 +128438-128443 +128439-128443 +128440-128443 +128441-128443 +128442-128443 +128444-128473 +128444-128473 +128444-128454 +128445-128454 +128445-128447 +128446-128447 +128448-128450 +128449-128450 +128451-128454 +128452-128454 +128453-128454 +128455-128473 +128456-128473 +128457-128473 +128457-128460 +128459-128460 +128461-128473 +128462-128473 +128462-128466 +128463-128466 +128464-128466 +128467-128473 +128468-128473 +128468-128469 +128470-128473 +128471-128473 +128472-128473 +128474-128485 +128474-128485 +128475-128485 +128475-128476 +128477-128485 +128478-128485 +128478-128482 +128479-128482 +128480-128482 +128481-128482 +128483-128485 +128484-128485 +128486-128496 +128486-128496 +128487-128496 +128488-128489 +128490-128496 +128491-128496 +128491-128495 +128492-128495 +128492-128493 +128494-128495 +128497-128507 +128497-128507 +128498-128507 +128498-128500 +128499-128500 +128501-128502 +128502 +128503-128507 +128504-128507 +128504-128506 +128505-128506 +128508-128524 +128508-128524 +128509-128524 +128509-128512 +128509-128510 +128510 +128513-128524 +128514-128524 +128515-128517 +128516-128517 +128518-128521 +128519-128521 +128520-128521 +128522-128524 +128523-128524 +128525-128536 +128525-128536 +128526-128536 +128528-128536 +128529-128536 +128530-128536 +128530-128533 +128531-128533 +128532-128533 +128534-128536 +128537-128546 +128537-128546 +128537-128539 +128538-128539 +128541-128546 +128542-128543 +128545-128546 +128547-128563 +128547-128563 +128547-128548 +128547-128548 +128548 +128551-128563 +128552-128563 +128553-128563 +128554-128563 +128554-128556 +128555-128556 +128557-128563 +128559-128563 +128560-128563 +128561-128563 +128562-128563 +128564-128571 +128564-128571 +128565-128571 +128565-128570 +128566-128570 +128567-128570 +128568-128570 +128568-128569 +128572-128583 +128572-128583 +128574-128583 +128574-128578 +128574-128575 +128576-128578 +128577-128578 +128579-128583 +128579-128581 +128582-128583 +128583 +128584-128609 +128584-128609 +128584-128593 +128584-128590 +128585-128590 +128586-128590 +128586-128587 +128588-128590 +128589-128590 +128591-128593 +128592-128593 +128594-128609 +128595-128609 +128595-128602 +128595-128602 +128596-128602 +128597-128602 +128598-128602 +128599-128602 +128600-128602 +128603-128609 +128604-128609 +128605 +128607-128609 +128607-128609 +128608-128609 +128610-128614 +128610-128614 +128612-128614 +128612-128613 +128615-128630 +128615-128630 +128616-128625 +128617-128618 +128619-128623 +128620-128621 +128622-128623 +128624-128625 +128625 +128626-128630 +128627-128630 +128628-128630 +128629-128630 +128631-128641 +128631-128641 +128631-128634 +128633-128634 +128635-128641 +128636-128641 +128638-128641 +128639-128641 +128640-128641 +128642-128651 +128642-128651 +128642-128644 +128643-128644 +128646-128651 +128647-128648 +128650-128651 +128652-128661 +128652-128661 +128652-128653 +128653 +128654-128655 +128657-128661 +128658-128661 +128659-128661 +128660-128661 +128662-128669 +128662-128669 +128663-128669 +128663-128668 +128664-128668 +128665-128668 +128666-128668 +128666-128667 +128670-128679 +128670-128679 +128672-128679 +128673-128679 +128674-128679 +128675-128679 +128675-128677 +128676-128677 +128678-128679 +128680-128717 +128680-128717 +128680-128687 +128681-128687 +128681-128682 +128683-128687 +128684-128687 +128685-128687 +128686-128687 +128688-128692 +128689-128692 +128690-128692 +128691-128692 +128693-128717 +128694-128717 +128696-128698 +128697-128698 +128699-128717 +128700-128717 +128701-128717 +128702-128717 +128703-128717 +128703-128709 +128704-128709 +128704-128706 +128705-128706 +128707-128709 +128708-128709 +128710-128717 +128710-128713 +128712-128713 +128715-128716 +128718-128743 +128718-128743 +128719-128743 +128719-128722 +128720-128721 +128723-128743 +128724-128743 +128726-128743 +128727-128743 +128728-128743 +128729-128743 +128730-128743 +128732-128733 +128734-128743 +128736-128739 +128737-128739 +128738-128739 +128740-128743 +128740-128741 +128742-128743 +128743 +128744-128753 +128744-128753 +128746-128747 +128748-128752 +128749-128752 +128750-128752 +128751-128752 +128754-128755 +128754-128755 +128755 +128756-128771 +128756-128771 +128757-128771 +128757-128758 +128758 +128759-128761 +128762-128771 +128763-128771 +128764-128765 +128766-128771 +128767-128771 +128768-128771 +128769-128771 +128770-128771 +128772-128781 +128772-128781 +128772-128774 +128773-128774 +128776-128781 +128777-128778 +128780-128781 +128782-128808 +128782-128808 +128782-128783 +128782-128783 +128783 +128784-128789 +128786-128789 +128786-128787 +128788-128789 +128789 +128790-128808 +128791-128808 +128793-128808 +128793-128794 +128795-128808 +128796-128808 +128796-128801 +128796-128799 +128796-128798 +128797-128798 +128800-128801 +128802-128808 +128802-128804 +128806-128808 +128807-128808 +128808 +128809-128816 +128809-128816 +128810-128816 +128810-128815 +128811-128815 +128812-128815 +128813-128815 +128813-128814 +128817-128836 +128817-128836 +128819-128836 +128819-128822 +128820-128822 +128821-128822 +128823-128836 +128824-128836 +128824-128830 +128825-128827 +128826-128827 +128828-128830 +128829-128830 +128831-128836 +128832-128836 +128832-128834 +128833-128834 +128837-128862 +128837-128862 +128838-128862 +128838-128853 +128838-128840 +128839-128840 +128841-128853 +128842-128853 +128842-128843 +128844-128846 +128845-128846 +128847-128849 +128848-128849 +128850-128853 +128851-128853 +128852-128853 +128854-128862 +128855-128862 +128855-128859 +128856-128859 +128856-128857 +128858-128859 +128861-128862 +128863-128886 +128863-128886 +128864-128886 +128864-128875 +128864-128866 +128865-128866 +128868-128875 +128869-128875 +128869-128871 +128869-128870 +128872-128875 +128873-128875 +128876-128886 +128877-128886 +128877-128879 +128878-128879 +128880-128886 +128880-128882 +128881-128882 +128883-128886 +128883 +128884-128886 +128885-128886 +128887-128900 +128887-128900 +128888-128900 +128888-128892 +128891-128892 +128892 +128893-128900 +128894-128900 +128896-128900 +128897-128900 +128898-128900 +128899-128900 +128901-128920 +128901-128920 +128902-128905 +128904-128905 +128906-128920 +128907-128920 +128907-128910 +128908-128910 +128909-128910 +128911-128913 +128912-128913 +128914-128920 +128915-128920 +128917-128920 +128918-128920 +128919-128920 +128921-128927 +128921-128927 +128922-128927 +128922-128924 +128923-128924 +128926-128927 +128928-128948 +128928-128948 +128929-128948 +128929-128940 +128930-128932 +128931-128932 +128933-128940 +128934-128940 +128936-128940 +128937-128940 +128938-128940 +128939-128940 +128941-128948 +128942-128948 +128943-128944 +128945-128948 +128946-128948 +128947-128948 +128949-128977 +128949-128977 +128950-128977 +128951-128971 +128951-128962 +128951-128956 +128952-128956 +128952-128953 +128954-128956 +128955-128956 +128957-128962 +128960-128962 +128960-128961 +128963-128971 +128963-128969 +128966-128969 +128967-128969 +128968-128969 +128971 +128972-128977 +128974-128975 +128976-128977 +128978-128985 +128978-128985 +128979-128985 +128979-128980 +128982-128985 +128983-128985 +128984-128985 +128986-129028 +128986-129028 +128987-129028 +128987-128996 +128987-128996 +128987-128988 +128988 +128989-128996 +128990-128996 +128991-128996 +128992-128993 +128994-128996 +128995-128996 +128997-129021 +128997-129002 +128999-129002 +129000-129002 +129001-129002 +129003-129014 +129004-129014 +129006-129008 +129007-129008 +129009-129014 +129010-129014 +129010-129013 +129011-129013 +129012-129013 +129015-129021 +129016-129021 +129018-129021 +129019-129021 +129020-129021 +129022-129028 +129023-129028 +129025-129028 +129026-129028 +129027-129028 +129029-129038 +129029-129038 +129029-129031 +129030-129031 +129033-129038 +129034-129035 +129037-129038 +129039-129046 +129039-129046 +129040-129046 +129040-129045 +129041-129045 +129042-129045 +129043-129045 +129043-129044 +129047-129059 +129047-129059 +129049-129059 +129050-129059 +129051-129059 +129051-129055 +129052-129055 +129053-129055 +129054-129055 +129056-129059 +129057-129059 +129058-129059 +129060-129071 +129060-129071 +129061-129063 +129062-129063 +129064-129071 +129065-129071 +129065-129068 +129067-129068 +129068 +129069-129071 +129070-129071 +129072-129090 +129072-129090 +129072-129080 +129072-129073 +129072-129073 +129074-129080 +129075-129080 +129076-129080 +129076-129077 +129078-129080 +129080 +129081-129090 +129082-129090 +129084-129090 +129084-129085 +129087-129090 +129088-129090 +129089-129090 +129091-129100 +129091-129100 +129092-129100 +129092-129096 +129093-129096 +129094-129096 +129095-129096 +129097-129100 +129098-129100 +129098 +129099-129100 +129100 +129101-129116 +129101-129116 +129102-129116 +129102-129104 +129103-129104 +129105-129116 +129105-129107 +129106-129107 +129108-129116 +129109-129116 +129109-129110 +129112-129116 +129112-129113 +129115-129116 +129117-129137 +129117-129137 +129118-129137 +129118-129128 +129119-129120 +129121-129122 +129123-129128 +129126-129128 +129127-129128 +129129-129137 +129130-129137 +129131-129132 +129133-129134 +129135-129137 +129136-129137 +129138-129170 +129138-129170 +129138-129144 +129138-129139 +129139 +129142-129144 +129143-129144 +129145-129156 +129146-129156 +129146-129147 +129149-129151 +129150-129151 +129152-129156 +129153-129156 +129154-129156 +129155-129156 +129157-129170 +129158-129170 +129159-129161 +129160-129161 +129162-129170 +129162-129165 +129163-129165 +129164-129165 +129166-129170 +129167-129170 +129168-129170 +129169-129170 +129171-129180 +129171-129180 +129171-129173 +129172-129173 +129175-129180 +129176-129177 +129179-129180 +129181-129188 +129181-129188 +129182-129188 +129182-129187 +129183-129187 +129184-129187 +129185-129187 +129185-129186 +129189-129209 +129189-129209 +129191-129209 +129191-129199 +129191-129194 +129191-129192 +129193-129194 +129195-129199 +129196-129199 +129197-129199 +129198-129199 +129200-129209 +129201-129209 +129201-129204 +129201 +129202-129204 +129203-129204 +129205-129209 +129206-129209 +129206 +129207-129209 +129208-129209 +129210-129239 +129210-129239 +129211-129213 +129212-129213 +129214-129239 +129215-129224 +129216-129217 +129218-129224 +129218-129219 +129219 +129220-129224 +129220-129222 +129220-129221 +129225-129239 +129226-129239 +129226-129228 +129226-129227 +129229-129233 +129230-129233 +129231-129233 +129232-129233 +129234-129239 +129235-129239 +129237-129239 +129238-129239 +129240-129256 +129240-129256 +129241-129251 +129242-129251 +129242-129246 +129243-129246 +129244-129246 +129245-129246 +129247-129251 +129248-129251 +129249-129251 +129252-129256 +129253-129256 +129254 +129256 +129257-129273 +129257-129273 +129257 +129258-129273 +129258-129267 +129260-129267 +129261-129267 +129261 +129262-129267 +129263-129267 +129264-129267 +129265-129267 +129266-129267 +129268-129273 +129269-129273 +129270-129273 +129271-129273 +129274-129301 +129274-129301 +129274-129280 +129275-129280 +129276-129280 +129277-129280 +129278-129280 +129279-129280 +129281-129301 +129284-129301 +129285-129301 +129285-129288 +129286-129288 +129287-129288 +129289-129301 +129290-129301 +129291-129301 +129292-129295 +129293-129295 +129293-129294 +129296-129301 +129297-129301 +129298-129301 +129299-129301 +129300-129301 +129302-129303 +129302-129303 +129304-129312 +129304-129312 +129305-129306 +129307-129312 +129308-129312 +129310-129312 +129311-129312 +129313-129364 +129313-129364 +129313-129314 +129313-129314 +129314 +129315-129323 +129318-129323 +129319-129323 +129320-129323 +129321-129323 +129322-129323 +129324-129329 +129325-129329 +129326-129327 +129330-129364 +129331-129364 +129332-129333 +129334-129364 +129334-129338 +129335-129338 +129336-129338 +129337-129338 +129339-129358 +129340-129358 +129341-129358 +129342-129358 +129342-129349 +129342-129346 +129343-129346 +129344-129346 +129345-129346 +129347-129349 +129348-129349 +129350-129358 +129351-129358 +129352-129354 +129353-129354 +129355-129358 +129356-129358 +129357-129358 +129359-129364 +129360-129364 +129361-129364 +129361-129362 +129363-129364 +129365-129374 +129365-129374 +129365-129367 +129366-129367 +129369-129374 +129370-129371 +129373-129374 +129375-129382 +129375-129382 +129376-129382 +129376-129381 +129377-129381 +129378-129381 +129379-129381 +129379-129380 +129383-129398 +129383-129398 +129385-129398 +129385-129392 +129385-129386 +129387-129392 +129388-129392 +129389-129392 +129390-129392 +129391-129392 +129393-129398 +129394-129398 +129395-129398 +129396-129398 +129397-129398 +129399-129408 +129399-129408 +129400-129402 +129401-129402 +129403-129408 +129404-129408 +129405-129408 +129405-129406 +129407-129408 +129409-129413 +129409-129413 +129409 +129410-129413 +129411-129413 +129412-129413 +129414-129429 +129414-129429 +129414 +129415-129422 +129416-129422 +129416-129417 +129418-129422 +129419-129422 +129419-129422 +129419-129420 +129421-129422 +129424-129429 +129426-129429 +129427-129429 +129428-129429 +129430-129488 +129430-129488 +129430-129456 +129431-129456 +129431-129440 +129432-129440 +129433-129440 +129433-129434 +129435-129436 +129436 +129437-129440 +129438-129440 +129438-129439 +129441-129456 +129442-129456 +129444-129456 +129445-129456 +129447-129456 +129448-129456 +129449-129450 +129451-129452 +129453-129454 +129455-129456 +129457-129488 +129459-129488 +129459-129467 +129460-129461 +129462-129465 +129463-129465 +129464-129465 +129466-129467 +129467 +129468-129480 +129469-129480 +129469-129470 +129471-129480 +129472-129480 +129472 +129473-129480 +129474-129480 +129476-129480 +129477-129480 +129478-129480 +129479-129480 +129481-129488 +129482-129488 +129483-129486 +129484-129486 +129485-129486 +129487-129488 +129488 +129489-129495 +129489-129495 +129490-129492 +129491-129492 +129493-129495 +129494-129495 +129496-129499 +129496-129499 +129497-129499 +129497 +129498-129499 +129499 +129500-129506 +129500-129506 +129501-129504 +129502-129504 +129503-129504 +129505-129506 +129506 +129507-129527 +129507-129527 +129507-129516 +129508-129516 +129508-129512 +129510-129512 +129511-129512 +129513-129516 +129514-129516 +129515-129516 +129517-129527 +129517-129519 +129518-129519 +129520-129527 +129521-129527 +129521-129523 +129522-129523 +129524-129527 +129525-129527 +129526-129527 +129528-129551 +129528-129551 +129528-129529 +129528-129529 +129529 +129532-129538 +129533-129534 +129535-129538 +129536-129538 +129537-129538 +129539-129551 +129540-129551 +129540-129541 +129542-129551 +129543-129551 +129544-129547 +129545-129547 +129546-129547 +129548-129551 +129549-129551 +129550-129551 +129552-129561 +129552-129561 +129552-129554 +129553-129554 +129556-129561 +129557-129558 +129560-129561 +129562-129594 +129562-129594 +129562-129564 +129562-129563 +129565-129594 +129566-129594 +129567-129571 +129569-129571 +129570-129571 +129572-129594 +129573-129594 +129573-129578 +129574-129578 +129574-129576 +129575-129576 +129577-129578 +129579-129580 +129582-129583 +129584-129594 +129585-129594 +129585-129586 +129587-129594 +129588-129594 +129590-129594 +129590-129593 +129592-129593 +129595-129598 +129595-129598 +129597-129598 +129599-129627 +129599-129627 +129600-129627 +129601-129605 +129603-129605 +129604-129605 +129606-129627 +129607-129627 +129607-129610 +129607-129609 +129608-129609 +129611-129627 +129612-129627 +129612-129619 +129612-129613 +129613 +129616-129619 +129617-129619 +129618-129619 +129620-129627 +129621-129627 +129621-129624 +129622-129624 +129623-129624 +129628-129653 +129628-129653 +129629-129653 +129629-129634 +129629-129631 +129630-129631 +129632-129634 +129633-129634 +129635-129646 +129636-129646 +129636-129638 +129637-129638 +129639-129641 +129639-129640 +129643-129646 +129644-129646 +129645-129646 +129647-129653 +129648-129653 +129648-129651 +129649-129651 +129650-129651 +129652-129653 +129654-129663 +129654-129663 +129655-129663 +129655-129657 +129656-129657 +129659-129663 +129660-129661 +129662-129663 +129664-129687 +129664-129687 +129665-129687 +129665-129678 +129665-129667 +129666-129667 +129669-129671 +129670-129671 +129672-129678 +129674-129678 +129675-129678 +129676-129678 +129677-129678 +129679-129687 +129680-129687 +129680-129682 +129681-129682 +129683-129687 +129684-129687 +129684-129685 +129686-129687 +129688-129703 +129688-129703 +129689-129703 +129689-129696 +129689-129692 +129690-129692 +129691-129692 +129693-129696 +129694-129696 +129695-129696 +129697-129703 +129698-129703 +129699-129703 +129701-129703 +129702-129703 +129704-129732 +129704-129732 +129705-129732 +129705-129710 +129705-129708 +129706-129708 +129707-129708 +129711-129716 +129712-129716 +129712-129714 +129713-129714 +129717-129725 +129718-129725 +129718-129720 +129719-129720 +129722-129725 +129723-129725 +129724-129725 +129726-129732 +129727-129732 +129727-129729 +129728-129729 +129731-129732 +129732 +129733-129749 +129733-129749 +129734-129749 +129734-129736 +129735-129736 +129737-129744 +129737-129740 +129738-129740 +129739-129740 +129743-129744 +129745-129747 +129746-129747 +129750-129773 +129750-129773 +129751-129773 +129754-129756 +129755-129756 +129757-129773 +129758-129773 +129758-129760 +129761-129773 +129761-129765 +129762-129765 +129762-129763 +129764-129765 +129766-129773 +129766-129767 +129767 +129768-129770 +129769-129770 +129770 +129771-129773 +129772-129773 +129773 +129774-129854 +129774-129854 +129775-129854 +129775-129795 +129776-129795 +129777-129778 +129779-129783 +129780-129781 +129782-129783 +129784-129795 +129784-129788 +129785-129788 +129786-129788 +129787-129788 +129789-129795 +129790-129795 +129791-129795 +129792-129795 +129793-129795 +129794-129795 +129796-129854 +129796-129806 +129797-129800 +129798-129800 +129798-129799 +129801-129806 +129802-129806 +129803-129806 +129804-129806 +129805-129806 +129807-129854 +129808-129854 +129808-129815 +129809-129815 +129810-129815 +129811-129815 +129812-129815 +129813-129815 +129814-129815 +129816-129854 +129817-129854 +129818-129820 +129819-129820 +129821-129823 +129822-129823 +129824-129854 +129825-129854 +129825-129830 +129825-129830 +129825-129829 +129825-129826 +129827-129829 +129828-129829 +129831-129841 +129833-129841 +129834-129841 +129834-129835 +129836-129838 +129837-129838 +129839-129841 +129840-129841 +129842-129854 +129843-129854 +129843-129846 +129845-129846 +129847-129854 +129848-129854 +129848-129851 +129849-129851 +129850-129851 +129852-129854 +129853-129854 +129855-129872 +129855-129872 +129856-129872 +129857-129864 +129858-129864 +129859-129864 +129860-129864 +129861-129864 +129862-129864 +129863-129864 +129865-129872 +129865-129869 +129866-129869 +129867-129869 +129868-129869 +129870-129872 +129871-129872 +129873-129890 +129873-129890 +129874-129890 +129875-129890 +129875-129876 +129878-129880 +129879-129880 +129881-129890 +129883-129890 +129883-129885 +129884-129885 +129886-129890 +129887-129890 +129888-129890 +129889-129890 +129891-129910 +129891-129910 +129892-129910 +129893-129904 +129894-129904 +129894-129896 +129895-129896 +129897-129900 +129898-129900 +129899-129900 +129901-129904 +129902-129904 +129903-129904 +129905-129910 +129905-129907 +129906-129907 +129908-129910 +129909-129910 +129911-129923 +129911-129923 +129912-129923 +129914-129923 +129915-129923 +129915-129916 +129918-129923 +129918-129920 +129919-129920 +129921-129923 +129922-129923 +129924-129932 +129924-129932 +129925-129932 +129925-129928 +129926-129928 +129927-129928 +129931-129932 +129933-129952 +129933-129952 +129935-129944 +129935-129941 +129935-129936 +129937-129941 +129938-129941 +129939-129941 +129940-129941 +129942-129944 +129943-129944 +129945-129952 +129946-129952 +129946-129947 +129948-129952 +129949-129952 +129950-129952 +129951-129952 +129953-129989 +129953-129989 +129954-129989 +129955-129989 +129955-129967 +129955-129962 +129956-129962 +129957-129962 +129957-129958 +129959-129962 +129960-129962 +129961-129962 +129963-129967 +129964-129967 +129965-129967 +129966-129967 +129970-129971 +129971 +129972-129989 +129973-129989 +129973-129974 +129975-129989 +129976-129989 +129976-129977 +129978-129989 +129980-129989 +129981-129989 +129982-129989 +129982-129984 +129983-129984 +129985-129989 +129986-129989 +129987-129989 +129988-129989 +129990-130001 +129990-130001 +129991-130001 +129991 +129992-130001 +129993-130001 +129994-130001 +129995-130001 +129996-130001 +129997-130001 +129998-130001 +129999-130001 +130000-130001 +130002-130032 +130002-130032 +130003-130032 +130003-130006 +130004-130006 +130005-130006 +130007-130032 +130007-130014 +130007-130009 +130008-130009 +130010-130014 +130011-130014 +130012-130014 +130012-130013 +130016-130018 +130017-130018 +130019-130032 +130021-130032 +130022-130032 +130023-130032 +130023-130024 +130025-130032 +130026-130032 +130027-130032 +130029-130032 +130030-130032 +130031-130032 +130033-130080 +130033-130080 +130034-130080 +130035-130036 +130037-130080 +130038-130080 +130038-130047 +130040-130047 +130040-130042 +130041-130042 +130043-130047 +130044-130047 +130045-130047 +130046-130047 +130048-130080 +130049-130080 +130049 +130050-130066 +130051-130066 +130052-130053 +130054-130057 +130055-130057 +130056-130057 +130058-130066 +130059-130066 +130060-130066 +130061-130062 +130063-130064 +130065-130066 +130067-130075 +130068-130075 +130070-130072 +130071-130072 +130073-130075 +130074-130075 +130076-130080 +130077-130080 +130078-130080 +130079-130080 +130081-130130 +130081-130130 +130082-130130 +130082 +130083-130130 +130084-130130 +130084-130106 +130084-130096 +130085-130087 +130086-130087 +130088-130096 +130089-130096 +130089-130090 +130091-130093 +130092-130093 +130094-130096 +130095-130096 +130097-130106 +130098-130106 +130099-130101 +130100-130101 +130102-130106 +130102-130103 +130104-130106 +130105-130106 +130107-130130 +130108-130109 +130110-130130 +130112-130115 +130112-130113 +130114-130115 +130115 +130116-130130 +130117-130130 +130118-130130 +130119-130120 +130121-130122 +130123-130124 +130125-130126 +130127-130128 +130129-130130 +130131-130181 +130131-130181 +130132-130181 +130132-130157 +130132-130156 +130132-130155 +130132-130150 +130133-130150 +130134-130150 +130135-130149 +130135-130137 +130136-130137 +130138-130141 +130139-130141 +130140-130141 +130142-130145 +130143-130145 +130144-130145 +130146-130149 +130147-130149 +130148-130149 +130151-130155 +130152-130155 +130153-130155 +130153-130154 +130158-130165 +130158-130162 +130159-130162 +130160-130162 +130161-130162 +130163-130165 +130164-130165 +130166-130176 +130166-130167 +130168-130170 +130169-130170 +130171-130173 +130172-130173 +130174-130176 +130175-130176 +130177-130181 +130178-130181 +130179-130181 +130180-130181 +130182-130187 +130182-130187 +130183-130187 +130183-130185 +130184-130185 +130187 +130188-130193 +130188-130193 +130189-130193 +130189-130191 +130189-130190 +130192-130193 +130193 +130194-130216 +130194-130216 +130195-130216 +130195-130204 +130195 +130196-130204 +130197-130204 +130198-130199 +130200-130204 +130201-130204 +130202-130204 +130203-130204 +130205-130216 +130206-130216 +130207-130216 +130207-130211 +130208-130211 +130209-130211 +130210-130211 +130213-130215 +130214-130215 +130216 +130217-130239 +130217-130239 +130218-130239 +130218 +130219-130239 +130220-130239 +130220-130229 +130220-130222 +130220 +130221-130222 +130223-130229 +130224-130229 +130224-130227 +130225-130227 +130226-130227 +130230-130239 +130231-130239 +130231-130233 +130234-130239 +130235-130239 +130235-130236 +130236 +130237-130239 +130238-130239 +130239 +130240-130252 +130240-130252 +130241-130252 +130241-130246 +130242-130246 +130243-130246 +130244-130246 +130245-130246 +130247-130252 +130248-130252 +130248-130250 +130249-130250 +130252 +130253-130279 +130253-130279 +130254-130279 +130254-130257 +130255-130257 +130256-130257 +130258-130279 +130259-130279 +130259-130262 +130259-130262 +130260-130262 +130261-130262 +130263-130274 +130263-130270 +130265-130270 +130266-130267 +130268-130270 +130269-130270 +130271-130274 +130272-130274 +130273-130274 +130275-130279 +130276-130279 +130278-130279 +130280-130292 +130280-130292 +130281-130292 +130281-130286 +130282-130286 +130283-130286 +130284-130286 +130285-130286 +130287-130292 +130288-130292 +130288-130290 +130289-130290 +130292 +130293-130309 +130293-130309 +130294-130309 +130294 +130295-130309 +130296-130309 +130296-130298 +130296 +130297-130298 +130299-130309 +130300-130309 +130300-130303 +130301-130303 +130302-130303 +130306-130309 +130307-130309 +130308-130309 +130310-130335 +130310-130335 +130311-130335 +130312-130335 +130313-130335 +130314-130318 +130315-130318 +130316-130318 +130317-130318 +130320-130335 +130320-130327 +130320-130322 +130320-130321 +130323-130327 +130324-130327 +130324-130326 +130325-130326 +130328-130335 +130329-130335 +130329-130333 +130329-130330 +130331-130333 +130332-130333 +130336-130349 +130336-130349 +130337-130349 +130337-130342 +130338-130342 +130339-130342 +130340-130342 +130341-130342 +130343-130349 +130344-130349 +130344-130347 +130345-130347 +130346-130347 +130349 +130350-130370 +130350-130370 +130351-130370 +130351 +130352-130370 +130353-130370 +130353-130355 +130353 +130354-130355 +130356-130370 +130357-130370 +130357-130364 +130357-130360 +130357-130360 +130358-130360 +130359-130360 +130363-130364 +130365-130370 +130366-130370 +130366-130367 +130369-130370 +130371-130394 +130371-130394 +130372-130394 +130375-130379 +130376-130379 +130377-130379 +130378-130379 +130380-130394 +130381-130394 +130381-130382 +130383-130385 +130384-130385 +130386-130388 +130387-130388 +130389-130394 +130390-130394 +130391-130394 +130392-130394 +130393-130394 +130395-130419 +130395-130419 +130396-130419 +130396-130400 +130397-130400 +130398-130400 +130399-130400 +130401-130419 +130402-130404 +130403-130404 +130405-130419 +130406-130419 +130407-130419 +130408-130419 +130409-130419 +130409-130413 +130410-130413 +130411-130413 +130412-130413 +130414-130419 +130415-130419 +130416-130419 +130417-130419 +130418-130419 +130420-130445 +130420-130445 +130421-130445 +130422-130423 +130424-130445 +130425-130445 +130425-130430 +130425-130430 +130426-130430 +130427-130430 +130428-130430 +130429-130430 +130431-130434 +130431-130432 +130435-130445 +130436-130445 +130437-130439 +130438-130439 +130440-130445 +130441-130445 +130442-130445 +130443-130445 +130444-130445 +130446-130475 +130446-130475 +130447-130475 +130447-130451 +130448-130449 +130450-130451 +130452-130475 +130453-130475 +130455-130475 +130456-130475 +130458-130459 +130460-130475 +130461-130475 +130462-130475 +130463-130475 +130463-130469 +130463-130465 +130464-130465 +130466-130469 +130467-130469 +130468-130469 +130470-130475 +130471-130475 +130472-130475 +130472 +130473-130475 +130474-130475 +130474-130475 +130476-130538 +130476-130538 +130477-130538 +130477-130483 +130477 +130478-130483 +130479-130483 +130480-130483 +130481-130483 +130482-130483 +130484-130538 +130485-130538 +130485-130487 +130485-130486 +130488-130495 +130489-130495 +130489-130490 +130493-130495 +130494-130495 +130496-130502 +130497-130502 +130497-130499 +130497-130498 +130501-130502 +130503-130521 +130504-130521 +130504-130507 +130505-130507 +130506-130507 +130509-130511 +130510-130511 +130512-130521 +130513-130521 +130515-130517 +130516-130517 +130518-130521 +130518-130520 +130519-130520 +130522-130528 +130523-130528 +130523-130524 +130526-130528 +130527-130528 +130529-130538 +130530-130538 +130530-130533 +130531-130533 +130532-130533 +130534-130537 +130535-130537 +130536-130537 +130539-130571 +130539-130571 +130540-130571 +130540-130560 +130540-130543 +130541-130543 +130542-130543 +130544-130546 +130545-130546 +130547-130549 +130548-130549 +130550-130552 +130551-130552 +130553-130555 +130554-130555 +130556-130560 +130557-130560 +130558-130560 +130559-130560 +130563-130571 +130563-130565 +130564-130565 +130566-130571 +130567-130571 +130568-130571 +130569-130571 +130570-130571 +130572-130610 +130572-130610 +130573-130610 +130574-130578 +130574-130575 +130576-130578 +130577-130578 +130579-130610 +130579-130597 +130579-130581 +130580-130581 +130582-130597 +130583-130597 +130585-130597 +130585-130591 +130586-130591 +130587-130591 +130588-130591 +130589-130591 +130590-130591 +130592-130597 +130593-130597 +130594-130597 +130595-130597 +130596-130597 +130598-130610 +130599-130610 +130599-130606 +130600-130606 +130601-130606 +130601-130603 +130602-130603 +130604-130606 +130605-130606 +130607-130610 +130608-130610 +130610 +130611-130643 +130611-130643 +130611-130612 +130614-130643 +130614-130615 +130617-130622 +130618-130622 +130619-130622 +130620-130622 +130621-130622 +130623-130628 +130624-130628 +130625-130628 +130626-130628 +130627-130628 +130629-130643 +130630-130643 +130633-130643 +130633-130635 +130634-130635 +130636-130639 +130637-130639 +130638-130639 +130640-130643 +130641-130643 +130642-130643 +130644-130693 +130644-130693 +130645-130693 +130645-130655 +130646-130655 +130646-130647 +130649-130651 +130650-130651 +130652-130655 +130653-130655 +130654-130655 +130655 +130656-130693 +130657-130693 +130658-130659 +130660-130671 +130661-130671 +130661-130662 +130663-130671 +130663-130664 +130666-130671 +130667-130671 +130667-130668 +130669-130671 +130670-130671 +130672-130693 +130673-130693 +130673-130682 +130675-130682 +130675-130676 +130677-130679 +130678-130679 +130680-130682 +130681-130682 +130683-130693 +130684-130693 +130685-130689 +130686-130689 +130687-130689 +130688-130689 +130690-130693 +130691-130693 +130692-130693 +130694-130709 +130694-130709 +130695-130709 +130696-130709 +130696-130699 +130697-130699 +130698-130699 +130699 +130700-130709 +130700-130703 +130700-130702 +130704-130709 +130705-130709 +130706-130709 +130707-130709 +130708-130709 +130710-130771 +130710-130771 +130710-130715 +130710-130712 +130711-130712 +130713-130714 +130716-130720 +130716-130718 +130717-130718 +130719-130720 +130721-130725 +130721-130723 +130722-130723 +130724-130725 +130726-130730 +130726-130728 +130727-130728 +130729-130730 +130731-130735 +130731-130733 +130732-130733 +130734-130735 +130736-130740 +130736-130738 +130737-130738 +130739-130740 +130741-130745 +130741-130743 +130742-130743 +130744-130745 +130746-130750 +130746-130748 +130747-130748 +130749-130750 +130751-130755 +130751-130753 +130752-130753 +130754-130755 +130756-130760 +130756-130758 +130757-130758 +130759-130760 +130761-130765 +130761-130763 +130762-130763 +130764-130765 +130766-130771 +130766-130768 +130767-130768 +130769-130770 +130772-130809 +130772-130809 +130772-130774 +130772-130773 +130775-130809 +130776-130809 +130777-130803 +130777-130792 +130777-130783 +130777-130778 +130779-130783 +130779-130781 +130779-130780 +130784-130792 +130785-130792 +130786-130792 +130787-130788 +130789-130790 +130791-130792 +130794-130800 +130794-130796 +130795-130796 +130797-130800 +130798-130800 +130799-130800 +130801-130803 +130802-130803 +130804-130809 +130805-130809 +130806-130809 +130807-130809 +130808-130809 +130810-130827 +130810-130827 +130811-130827 +130812-130813 +130814-130827 +130815-130827 +130815-130816 +130817-130827 +130817-130824 +130817-130819 +130818-130819 +130820-130824 +130821-130824 +130822-130824 +130823-130824 +130825-130827 +130826-130827 +130828-130886 +130828-130886 +130829-130886 +130829-130842 +130829-130831 +130830-130831 +130833-130842 +130834-130842 +130834-130835 +130836-130838 +130837-130838 +130839-130842 +130840-130842 +130841-130842 +130843-130886 +130844-130886 +130844-130851 +130845-130847 +130846-130847 +130848-130851 +130849-130851 +130850-130851 +130852-130886 +130853-130886 +130854-130855 +130856-130886 +130857-130886 +130857 +130858-130877 +130858-130859 +130860-130862 +130861-130862 +130863-130865 +130864-130865 +130866-130868 +130867-130868 +130869-130871 +130870-130871 +130872-130874 +130873-130874 +130875-130877 +130876-130877 +130878-130880 +130879-130880 +130881-130885 +130882-130885 +130883-130885 +130884-130885 +130886 +130887-130906 +130887-130906 +130888-130906 +130889-130892 +130890-130892 +130891-130892 +130893-130906 +130895-130906 +130895-130903 +130895-130901 +130896-130901 +130897-130901 +130898-130901 +130899-130901 +130900-130901 +130904-130906 +130905-130906 +130907-130913 +130907-130913 +130908-130913 +130910-130913 +130910-130911 +130910-130911 +130914-130938 +130914-130938 +130915-130938 +130917-130938 +130917-130925 +130919-130925 +130920-130925 +130921-130925 +130922-130925 +130923-130925 +130924-130925 +130926-130938 +130927-130938 +130927-130930 +130928-130930 +130929-130930 +130931-130938 +130932-130938 +130934-130938 +130935-130938 +130936-130938 +130937-130938 +130939-130965 +130939-130965 +130939-130956 +130939-130946 +130939-130940 +130942-130946 +130943-130946 +130944-130946 +130945-130946 +130947-130956 +130948-130956 +130950-130952 +130951-130952 +130953-130956 +130954-130956 +130955-130956 +130957-130965 +130958-130965 +130958-130962 +130959-130962 +130960-130962 +130961-130962 +130964-130965 +130966-131008 +130966-131008 +130966-130968 +130969-130971 +130970-130971 +130972-130981 +130973-130981 +130975-130976 +130977-130981 +130977-130978 +130979-130981 +130980-130981 +130982-131008 +130983-131008 +130983-130998 +130983-130991 +130983-130989 +130983-130984 +130985-130989 +130986-130989 +130987-130989 +130988-130989 +130992-130998 +130993-130998 +130995-130998 +130996-130998 +130997-130998 +130999-131008 +131000-131008 +131001-131002 +131003-131004 +131005-131008 +131006-131008 +131007-131008 +131009-131022 +131009-131022 +131010-131022 +131010-131015 +131011-131015 +131012-131015 +131013-131015 +131014-131015 +131016-131022 +131018-131020 +131019-131020 +131021-131022 +131023-131037 +131023-131037 +131024-131037 +131024-131032 +131025-131032 +131026-131032 +131026-131027 +131028-131032 +131029-131031 +131030-131031 +131033-131037 +131034-131037 +131036-131037 +131038-131070 +131038-131070 +131039-131070 +131039-131041 +131039-131040 +131042-131070 +131043-131070 +131043-131049 +131044-131046 +131045-131046 +131047-131049 +131048-131049 +131050-131070 +131051-131070 +131051-131054 +131053-131054 +131055-131070 +131056-131070 +131057-131061 +131058-131061 +131059-131061 +131059-131060 +131062-131070 +131063-131070 +131063-131066 +131064-131066 +131065-131066 +131067-131070 +131068-131070 +131069-131070 +131071-131087 +131071-131087 +131072-131087 +131073-131076 +131074-131076 +131075-131076 +131077-131080 +131078-131080 +131079-131080 +131081-131084 +131082-131084 +131083-131084 +131085-131087 +131086-131087 +131088-131106 +131088-131106 +131089-131106 +131089-131093 +131090-131091 +131092-131093 +131094-131101 +131095-131101 +131097-131101 +131098-131101 +131099-131101 +131100-131101 +131102-131106 +131103-131106 +131104-131106 +131105-131106 +131107-131115 +131107-131115 +131108-131115 +131109-131115 +131110-131111 +131112-131113 +131114-131115 +131116-131128 +131116-131128 +131117-131128 +131117-131124 +131117-131119 +131118-131119 +131120-131124 +131121-131124 +131122-131124 +131123-131124 +131127-131128 +131128 +131129-131132 +131129-131132 +131130-131132 +131130-131131 +131133-131145 +131133-131145 +131134-131145 +131134-131140 +131135-131137 +131136-131137 +131138-131140 +131139-131140 +131141-131145 +131142-131145 +131143-131145 +131144-131145 +131146-131162 +131146-131162 +131147-131162 +131147-131151 +131147-131150 +131148-131150 +131149-131150 +131152-131157 +131153-131157 +131153-131156 +131154-131156 +131155-131156 +131158-131162 +131159-131162 +131159-131161 +131160-131161 +131163-131167 +131163-131167 +131164-131167 +131164-131166 +131165-131166 +131168-131177 +131168-131177 +131169-131177 +131169-131173 +131170-131173 +131170-131171 +131172-131173 +131175-131177 +131176-131177 +131178-131203 +131178-131203 +131179-131203 +131179-131184 +131180-131183 +131181-131183 +131182-131183 +131185-131197 +131186-131197 +131187-131197 +131188-131197 +131189-131197 +131189-131194 +131189-131190 +131191-131194 +131192-131194 +131193-131194 +131195-131197 +131196-131197 +131198-131203 +131199-131203 +131199-131202 +131200-131202 +131201-131202 +131204-131208 +131204-131208 +131205-131208 +131205-131207 +131206-131207 +131209-131231 +131209-131231 +131210-131231 +131210-131218 +131211-131213 +131212-131213 +131214-131215 +131216-131218 +131216 +131217-131218 +131218 +131219-131231 +131220-131231 +131221-131231 +131221-131225 +131222-131225 +131223-131225 +131224-131225 +131226-131231 +131227-131231 +131228-131231 +131229-131231 +131230-131231 +131232-131239 +131232-131239 +131233-131239 +131233-131236 +131234-131236 +131235-131236 +131238-131239 +131240-131257 +131240-131257 +131241-131257 +131241-131247 +131242-131245 +131243-131245 +131244-131245 +131246-131247 +131248-131257 +131249-131257 +131249-131255 +131249-131251 +131250-131251 +131253-131255 +131254-131255 +131256-131257 +131257 +131258-131262 +131258-131262 +131259-131262 +131259-131261 +131260-131261 +131263-131295 +131263-131295 +131264-131295 +131264-131283 +131265-131278 +131265-131268 +131266-131268 +131267-131268 +131269-131273 +131270-131273 +131271-131273 +131272-131273 +131274-131278 +131275-131278 +131276-131278 +131277-131278 +131279-131283 +131280-131283 +131281-131283 +131282-131283 +131284-131295 +131285-131295 +131285-131291 +131285-131286 +131289-131291 +131290-131291 +131292-131295 +131293-131295 +131293-131294 +131296-131327 +131296-131327 +131297-131327 +131297 +131298-131327 +131299-131327 +131300-131327 +131300-131301 +131302-131304 +131303-131304 +131306-131307 +131308-131327 +131308-131310 +131311-131315 +131312-131315 +131313-131315 +131314-131315 +131316-131327 +131317-131327 +131318-131327 +131319-131327 +131320-131327 +131321-131327 +131322-131327 +131322-131324 +131323-131324 +131325-131327 +131326-131327 +131327 +131328-131332 +131328-131332 +131329-131332 +131329-131331 +131330-131331 +131333-131351 +131333-131351 +131334-131351 +131334-131342 +131335-131342 +131336-131338 +131337-131338 +131340-131342 +131341-131342 +131343-131351 +131344-131351 +131346-131351 +131347-131351 +131348-131351 +131349-131351 +131350-131351 +131352-131379 +131352-131379 +131353-131379 +131353-131367 +131353-131357 +131354-131357 +131355-131357 +131356-131357 +131358-131367 +131359-131367 +131361-131363 +131362-131363 +131364-131367 +131365-131367 +131365-131367 +131366-131367 +131368-131379 +131369-131379 +131370-131374 +131370-131371 +131372-131374 +131373-131374 +131375-131379 +131376-131379 +131377-131379 +131378-131379 +131380-131399 +131380-131399 +131381-131399 +131381-131388 +131381-131383 +131382-131383 +131386-131388 +131387-131388 +131389-131399 +131390-131399 +131393-131399 +131394-131399 +131396-131399 +131397-131399 +131398-131399 +131400-131429 +131400-131429 +131401-131429 +131403-131429 +131404-131429 +131404-131415 +131406-131415 +131406-131409 +131407-131409 +131408-131409 +131410-131412 +131411-131412 +131413-131415 +131414-131415 +131416-131429 +131417-131429 +131418-131429 +131419-131429 +131420-131429 +131423-131426 +131424-131426 +131425-131426 +131427-131429 +131428-131429 +131430-131441 +131430-131441 +131431-131441 +131433-131441 +131434-131441 +131435-131436 +131438-131441 +131439-131441 +131440-131441 +131442-131451 +131442-131451 +131443-131451 +131443-131445 +131444-131445 +131446-131448 +131447-131448 +131449-131451 +131450-131451 +131452-131475 +131452-131475 +131453-131475 +131453-131466 +131453-131461 +131453-131456 +131454-131456 +131454-131455 +131458-131459 +131460-131461 +131462-131466 +131463-131466 +131463-131464 +131467-131475 +131468-131475 +131468-131469 +131469 +131470-131475 +131471-131475 +131472-131473 +131474-131475 +131476-131534 +131476-131534 +131477-131534 +131477-131485 +131477-131480 +131478-131480 +131479-131480 +131482-131485 +131483-131485 +131484-131485 +131486-131494 +131487-131494 +131487-131490 +131488-131490 +131489-131490 +131491-131494 +131492-131494 +131493-131494 +131495-131501 +131496-131501 +131496-131498 +131497-131498 +131499-131501 +131500-131501 +131502-131507 +131503-131507 +131504-131507 +131505-131507 +131506-131507 +131508-131514 +131509-131514 +131509-131511 +131510-131511 +131512-131513 +131515-131520 +131516-131520 +131517-131520 +131518-131520 +131519-131520 +131521-131534 +131522-131534 +131522-131526 +131523-131526 +131524-131526 +131525-131526 +131527-131534 +131528-131534 +131529-131534 +131530-131534 +131530-131531 +131532-131534 +131533-131534 +131535-131554 +131535-131554 +131536-131554 +131536-131541 +131537-131541 +131537-131539 +131538-131539 +131540-131541 +131542-131554 +131543-131554 +131543-131546 +131544-131546 +131545-131546 +131547-131554 +131548-131554 +131548-131549 +131550-131554 +131551-131552 +131553-131554 +131555-131562 +131555-131562 +131556-131557 +131558-131562 +131559-131562 +131560-131562 +131561-131562 +131563-131573 +131563-131573 +131563-131566 +131563-131564 +131567-131573 +131568-131573 +131568-131570 +131569-131570 +131574-131578 +131574-131578 +131574-131577 +131575-131577 +131576-131577 +131579-131585 +131579-131585 +131582-131583 +131584-131585 +131586-131590 +131586-131590 +131587-131590 +131587-131589 +131588-131589 +131591-131626 +131591-131626 +131592-131626 +131593-131594 +131595-131606 +131596-131606 +131597-131606 +131598-131606 +131599-131606 +131599-131602 +131600-131602 +131601-131602 +131603-131606 +131604-131606 +131605-131606 +131607-131626 +131608-131614 +131608-131610 +131609-131610 +131611-131614 +131612-131614 +131613-131614 +131615-131626 +131616-131626 +131616-131618 +131617-131618 +131619-131626 +131620-131626 +131621-131626 +131622-131626 +131622-131625 +131623-131625 +131624-131625 +131627-131648 +131627-131648 +131628-131648 +131629-131642 +131629-131631 +131630-131631 +131632-131642 +131633-131642 +131634-131642 +131635-131642 +131636-131642 +131637-131638 +131639-131640 +131641-131642 +131643-131648 +131644-131648 +131645-131648 +131646-131648 +131647-131648 +131649-131657 +131649-131657 +131650-131657 +131650-131655 +131651-131655 +131652-131655 +131653-131655 +131654-131655 +131656-131657 +131658-131661 +131658-131661 +131659-131661 +131660-131661 +131662-131681 +131662-131681 +131663-131681 +131663-131669 +131665-131666 +131667-131669 +131668-131669 +131670-131681 +131671-131681 +131671-131674 +131672-131674 +131673-131674 +131676-131681 +131677-131681 +131678-131679 +131680-131681 +131682-131700 +131682-131700 +131683-131700 +131683-131689 +131683-131686 +131684-131686 +131685-131686 +131687-131689 +131688-131689 +131690-131700 +131691-131700 +131691-131694 +131692-131694 +131693-131694 +131696-131700 +131697-131698 +131699-131700 +131701-131725 +131701-131725 +131702-131705 +131703-131705 +131704-131705 +131706-131725 +131706-131710 +131707-131710 +131707-131709 +131708-131709 +131711-131725 +131712-131725 +131712-131719 +131712-131713 +131714-131716 +131715-131716 +131717-131719 +131718-131719 +131720-131725 +131721-131725 +131722-131725 +131723-131725 +131724-131725 +131726-131740 +131726-131740 +131727-131740 +131727-131730 +131728-131730 +131729-131730 +131732-131740 +131732-131735 +131733-131735 +131734-131735 +131736-131740 +131737-131740 +131738-131740 +131739-131740 +131741-131752 +131741-131752 +131742-131752 +131742-131748 +131742-131744 +131743-131744 +131747-131748 +131749-131752 +131750-131752 +131750-131751 +131753-131824 +131753-131824 +131754-131824 +131754-131802 +131754-131772 +131754-131764 +131755-131764 +131755-131757 +131756-131757 +131758-131764 +131761-131764 +131762-131764 +131762-131763 +131767-131772 +131768-131772 +131769-131772 +131770-131772 +131771-131772 +131774-131802 +131776-131802 +131776-131777 +131778-131802 +131779-131802 +131780-131802 +131780-131794 +131781-131794 +131781-131782 +131783-131785 +131784-131785 +131786-131788 +131787-131788 +131789-131791 +131790-131791 +131792-131794 +131793-131794 +131795-131802 +131797-131802 +131797-131802 +131797-131798 +131799-131800 +131801-131802 +131803-131824 +131804-131824 +131806-131824 +131806-131809 +131807-131809 +131808-131809 +131810-131814 +131811-131814 +131812-131814 +131813-131814 +131815-131819 +131816-131819 +131817-131819 +131818-131819 +131820-131824 +131821-131824 +131822-131824 +131823-131824 +131825-131864 +131825-131864 +131826-131864 +131826-131835 +131827-131835 +131827-131829 +131828-131829 +131831-131833 +131832-131833 +131834-131835 +131836-131864 +131837-131864 +131837-131856 +131837-131842 +131837-131838 +131839-131842 +131840-131842 +131841-131842 +131843-131849 +131844-131849 +131844-131846 +131845-131846 +131847-131849 +131848-131849 +131850-131856 +131851-131856 +131851-131853 +131852-131853 +131854-131856 +131855-131856 +131857-131864 +131858-131864 +131859-131862 +131860-131862 +131861-131862 +131863-131864 +131864 +131865-131887 +131865-131887 +131866-131887 +131866-131880 +131866-131874 +131867-131871 +131868-131871 +131868-131869 +131870-131871 +131872-131874 +131873-131874 +131875-131880 +131876-131880 +131876-131877 +131878-131880 +131879-131880 +131881-131887 +131882-131887 +131883-131884 +131885-131887 +131886-131887 +131888-131897 +131888-131897 +131889-131897 +131889-131890 +131890 +131891-131897 +131892-131894 +131893-131894 +131895-131897 +131896-131897 +131898-131905 +131898-131905 +131899-131905 +131899-131903 +131900-131903 +131901-131903 +131902-131903 +131904-131905 +131905 +131906-131922 +131906-131922 +131907-131922 +131908-131922 +131909-131911 +131910-131911 +131913-131922 +131913-131918 +131914-131918 +131916-131918 +131917-131918 +131919-131922 +131920-131922 +131923-132005 +131923-132005 +131924-132005 +131924-131944 +131924-131935 +131925-131935 +131926-131935 +131926-131934 +131928-131934 +131928-131930 +131929-131930 +131931-131934 +131932-131934 +131933-131934 +131937-131941 +131938-131941 +131938-131939 +131940-131941 +131942-131944 +131943-131944 +131945-132005 +131946-132005 +131947-131976 +131948-131976 +131948-131954 +131949-131954 +131950-131954 +131951-131954 +131952-131954 +131953-131954 +131955-131976 +131957-131976 +131957-131962 +131957-131958 +131959-131962 +131960-131962 +131961-131962 +131963-131969 +131964-131969 +131964-131965 +131966-131969 +131967-131969 +131968-131969 +131970-131976 +131971-131976 +131971-131972 +131973-131976 +131974-131976 +131975-131976 +131977-132005 +131978-132005 +131978-131980 +131981-132005 +131982-132005 +131982-131989 +131983-131989 +131984-131989 +131985-131989 +131986-131989 +131987-131989 +131988-131989 +131990-131992 +131991-131992 +131992 +131995-131998 +131996-131998 +131997-131998 +131999-132005 +132000-132005 +132001-132005 +132001-132003 +132002-132003 +132004-132005 +132006-132039 +132006-132039 +132007-132039 +132007-132017 +132007-132013 +132008-132013 +132009-132013 +132011-132013 +132012-132013 +132016-132017 +132018-132039 +132019-132039 +132020-132039 +132020 +132021-132039 +132022-132039 +132022-132023 +132024-132039 +132025-132039 +132026-132039 +132027-132039 +132028-132039 +132029-132039 +132029-132030 +132031-132039 +132032-132039 +132033-132039 +132033-132035 +132034-132035 +132036-132039 +132037-132039 +132038-132039 +132040-132050 +132040-132050 +132041-132050 +132042-132044 +132043-132044 +132045-132050 +132047-132050 +132049-132050 +132051-132071 +132051-132071 +132052-132071 +132054-132071 +132054-132057 +132054 +132055-132057 +132056-132057 +132058-132071 +132059-132071 +132059-132062 +132060-132062 +132061-132062 +132063-132071 +132064-132071 +132064-132067 +132065-132067 +132066-132067 +132070-132071 +132071 +132072-132092 +132072-132092 +132073-132092 +132073-132083 +132073-132080 +132074-132075 +132076-132080 +132077-132080 +132078-132080 +132079-132080 +132081-132083 +132082-132083 +132084-132092 +132085-132092 +132086-132089 +132087-132089 +132088-132089 +132090-132091 +132093-132100 +132093-132100 +132094-132100 +132094-132096 +132095-132096 +132098-132100 +132099-132100 +132101-132116 +132101-132116 +132102-132116 +132104-132116 +132105-132116 +132108-132116 +132109-132116 +132109-132115 +132110-132111 +132112-132113 +132114-132115 +132117-132138 +132117-132138 +132118-132138 +132120-132122 +132121-132122 +132123-132138 +132124-132138 +132124 +132125-132138 +132126-132138 +132127-132138 +132127-132130 +132128-132130 +132129-132130 +132131-132133 +132132-132133 +132134-132138 +132135-132138 +132136-132138 +132137-132138 +132139-132164 +132139-132164 +132140-132164 +132140-132147 +132140-132145 +132140-132141 +132142-132145 +132142-132143 +132144-132145 +132148-132151 +132149-132151 +132152-132164 +132153-132164 +132153-132155 +132154-132155 +132156-132164 +132157-132164 +132157-132160 +132158-132160 +132159-132160 +132162-132164 +132163-132164 +132165-132178 +132165-132178 +132166-132178 +132166-132170 +132167-132170 +132168-132170 +132169-132170 +132171-132178 +132172-132178 +132173-132176 +132174-132176 +132177-132178 +132179-132194 +132179-132194 +132181-132194 +132181-132187 +132181-132183 +132182-132183 +132184-132187 +132185-132187 +132186-132187 +132188-132194 +132189-132194 +132189-132193 +132190-132193 +132191-132193 +132192-132193 +132195-132211 +132195-132211 +132196-132211 +132196-132200 +132197-132200 +132199-132200 +132201-132211 +132201-132206 +132203-132206 +132204-132206 +132205-132206 +132207-132211 +132208-132211 +132209-132211 +132210-132211 +132212-132221 +132212-132221 +132213-132221 +132213-132217 +132214-132217 +132216-132217 +132218-132221 +132220-132221 +132222-132257 +132222-132257 +132222-132237 +132222-132228 +132224-132225 +132226-132228 +132227-132228 +132229-132237 +132230-132237 +132233-132237 +132234-132237 +132235-132237 +132236-132237 +132238-132247 +132239-132247 +132241-132243 +132242-132243 +132244-132247 +132246-132247 +132248-132257 +132249-132257 +132249-132254 +132250-132251 +132252-132254 +132253-132254 +132255-132257 +132256-132257 +132257 +132258-132280 +132258-132280 +132259-132280 +132259-132263 +132260-132263 +132261-132263 +132262-132263 +132264-132280 +132264-132274 +132264-132270 +132264-132265 +132266-132270 +132267-132270 +132268-132270 +132269-132270 +132272-132273 +132275-132280 +132276-132280 +132276-132277 +132278-132280 +132279-132280 +132281-132303 +132281-132303 +132282-132303 +132282-132284 +132283-132284 +132285-132303 +132286-132303 +132287-132303 +132288-132303 +132289-132303 +132289-132297 +132289-132291 +132290-132291 +132292-132297 +132295-132297 +132296-132297 +132298-132303 +132299-132302 +132300-132302 +132301-132302 +132304-132330 +132304-132330 +132305-132330 +132305-132321 +132306-132314 +132307-132314 +132307-132308 +132309-132310 +132311-132312 +132313-132314 +132315-132317 +132316-132317 +132318-132321 +132319-132321 +132320-132321 +132322-132330 +132323-132330 +132325-132330 +132325-132327 +132326-132327 +132329-132330 +132331-132356 +132331-132356 +132332-132356 +132332-132341 +132332-132339 +132332-132336 +132333-132336 +132334-132336 +132335-132336 +132338-132339 +132340-132341 +132341 +132342-132345 +132343-132345 +132346-132356 +132347-132356 +132347-132350 +132348-132350 +132349-132350 +132352-132356 +132353-132356 +132354-132356 +132355-132356 +132357-132385 +132357-132385 +132358-132385 +132358-132377 +132358-132371 +132358-132363 +132359-132363 +132360-132363 +132360-132362 +132361-132362 +132364-132365 +132366-132368 +132367-132368 +132370-132371 +132372-132377 +132373-132377 +132374-132377 +132375-132377 +132376-132377 +132378-132385 +132379-132385 +132379-132380 +132382-132385 +132383-132385 +132384-132385 +132386-132396 +132386-132396 +132387-132396 +132388-132396 +132388-132389 +132390-132392 +132391-132392 +132395-132396 +132397-132410 +132397-132410 +132398-132410 +132398-132404 +132399-132401 +132400-132401 +132402-132404 +132403-132404 +132405-132410 +132406-132410 +132408-132410 +132409-132410 +132411-132445 +132411-132445 +132412-132445 +132412-132418 +132412-132415 +132413-132415 +132414-132415 +132417-132418 +132419-132445 +132420-132445 +132420-132424 +132420-132423 +132421-132423 +132422-132423 +132425-132445 +132426-132445 +132426-132433 +132427-132429 +132428-132429 +132430-132433 +132430-132431 +132432-132433 +132434-132445 +132435-132445 +132435-132438 +132435-132436 +132439-132445 +132440-132445 +132442-132445 +132443-132445 +132444-132445 +132446-132450 +132446-132450 +132446-132449 +132447-132449 +132448-132449 +132451-132457 +132451-132457 +132452-132455 +132453-132455 +132454-132455 +132458-132462 +132458-132462 +132459-132462 +132459-132461 +132460-132461 +132463-132489 +132463-132489 +132464-132489 +132465-132466 +132467-132469 +132468-132469 +132470-132489 +132471-132489 +132471-132482 +132472-132475 +132473-132475 +132474-132475 +132476-132482 +132476-132478 +132477-132478 +132479-132482 +132480-132482 +132481-132482 +132483-132489 +132484-132489 +132485-132489 +132486-132489 +132487-132489 +132488-132489 +132490-132534 +132490-132534 +132491-132534 +132491-132508 +132491-132503 +132491-132494 +132492-132494 +132492-132493 +132495-132503 +132496-132503 +132496-132498 +132497-132498 +132500-132503 +132501-132503 +132502-132503 +132505-132508 +132506-132508 +132507-132508 +132509-132534 +132510-132534 +132511-132512 +132513-132534 +132514-132534 +132514-132525 +132516-132525 +132516-132525 +132516-132520 +132517-132520 +132517-132518 +132519-132520 +132521-132525 +132521-132522 +132522 +132523-132525 +132524-132525 +132525 +132526-132534 +132527-132534 +132527-132532 +132528-132532 +132529-132532 +132529-132530 +132531-132532 +132533-132534 +132534 +132535-132578 +132535-132578 +132536-132578 +132536-132538 +132536-132537 +132539-132578 +132540-132578 +132540-132543 +132541-132543 +132542-132543 +132544-132578 +132545-132578 +132545-132578 +132546-132578 +132546-132548 +132547-132548 +132549-132578 +132549 +132550-132572 +132551-132572 +132552-132553 +132554-132567 +132554-132556 +132555-132556 +132557-132567 +132557-132558 +132559-132561 +132560-132561 +132562-132567 +132563-132567 +132564-132567 +132565-132567 +132566-132567 +132568-132572 +132568-132569 +132570-132572 +132571-132572 +132573-132578 +132574-132578 +132575-132578 +132576-132578 +132577-132578 +132579-132599 +132579-132599 +132580-132599 +132580-132588 +132581-132588 +132581-132584 +132582-132584 +132583-132584 +132585-132588 +132586-132588 +132587-132588 +132589-132599 +132590-132599 +132591-132595 +132592-132595 +132593-132595 +132594-132595 +132596-132599 +132597-132599 +132598-132599 +132600-132611 +132600-132611 +132601-132611 +132602-132611 +132603-132604 +132605-132606 +132607-132608 +132609-132611 +132610-132611 +132612-132647 +132612-132647 +132613-132647 +132613-132614 +132616-132618 +132617-132618 +132619-132647 +132619-132641 +132619-132637 +132619-132622 +132621-132622 +132623-132629 +132624-132629 +132624-132625 +132626-132629 +132627-132629 +132628-132629 +132630-132637 +132631-132637 +132631-132634 +132632-132634 +132633-132634 +132635-132637 +132636-132637 +132638-132641 +132639-132641 +132639-132640 +132642-132647 +132643-132647 +132644-132647 +132644 +132645-132647 +132646-132647 +132647 +132648-132689 +132648-132689 +132649-132689 +132649-132654 +132650-132651 +132652-132654 +132653-132654 +132655-132689 +132656-132689 +132656-132672 +132657-132665 +132657-132659 +132657-132658 +132661-132665 +132661-132662 +132663-132665 +132664-132665 +132666-132672 +132667-132672 +132667-132670 +132668-132670 +132669-132670 +132671-132672 +132673-132689 +132674-132689 +132674-132683 +132674-132676 +132675-132676 +132678-132683 +132679-132683 +132680-132683 +132681-132683 +132682-132683 +132684-132689 +132685-132689 +132687-132689 +132688-132689 +132690-132706 +132690-132706 +132691-132706 +132691-132692 +132694-132699 +132695-132699 +132695-132696 +132697-132699 +132698-132699 +132699 +132700-132706 +132701-132706 +132701-132705 +132702-132705 +132703-132705 +132704-132705 +132707-132719 +132707-132719 +132708-132719 +132709-132719 +132709-132710 +132711-132719 +132713-132719 +132714-132716 +132715-132716 +132717-132719 +132718-132719 +132720-132732 +132720-132732 +132721-132732 +132722-132724 +132723-132724 +132725-132732 +132725-132727 +132726-132727 +132728-132732 +132729-132732 +132730-132732 +132731-132732 +132733-132755 +132733-132755 +132734-132755 +132734-132735 +132737-132747 +132738-132747 +132738-132739 +132740-132747 +132743-132747 +132744-132747 +132745-132747 +132746-132747 +132748-132755 +132749-132755 +132752-132755 +132753-132755 +132756-132772 +132756-132772 +132757-132772 +132757-132761 +132759-132761 +132760-132761 +132762-132772 +132762-132767 +132762-132763 +132764-132767 +132765-132767 +132766-132767 +132768-132772 +132769-132772 +132770-132772 +132771-132772 +132773-132791 +132773-132791 +132774-132791 +132774-132780 +132775-132780 +132775-132776 +132777-132780 +132778-132780 +132779-132780 +132781-132791 +132782-132791 +132782-132783 +132784-132791 +132785-132786 +132789-132791 +132790-132791 +132792-132823 +132792-132823 +132793-132823 +132794-132812 +132794-132807 +132794-132801 +132794-132797 +132795-132797 +132796-132797 +132798-132801 +132799-132801 +132800-132801 +132802-132807 +132803-132807 +132804-132807 +132805-132807 +132806-132807 +132808-132812 +132809-132812 +132810-132812 +132810-132811 +132813-132823 +132813-132816 +132814-132816 +132815-132816 +132817-132823 +132818-132823 +132818-132820 +132819-132820 +132821-132822 +132824-132867 +132824-132867 +132825-132867 +132826-132867 +132826-132827 +132828-132830 +132829-132830 +132832-132867 +132832-132850 +132834-132850 +132834-132835 +132836-132838 +132837-132838 +132839-132844 +132840-132844 +132841-132844 +132842-132844 +132843-132844 +132845-132850 +132846-132850 +132847-132850 +132848-132850 +132849-132850 +132851-132867 +132852-132867 +132853-132867 +132853-132857 +132854-132857 +132855-132857 +132856-132857 +132858-132867 +132859-132867 +132861-132864 +132862-132864 +132863-132864 +132865-132867 +132866-132867 +132868-132891 +132868-132891 +132869-132891 +132869-132883 +132872-132883 +132872-132876 +132873-132876 +132874-132876 +132875-132876 +132877-132883 +132878-132883 +132879-132883 +132880-132883 +132881-132883 +132882-132883 +132884-132891 +132885-132891 +132887-132889 +132888-132889 +132890-132891 +132892-132900 +132892-132900 +132892-132893 +132895-132900 +132895-132900 +132896-132900 +132897-132900 +132898-132900 +132898-132899 +132901-132920 +132901-132920 +132901-132906 +132902-132906 +132902-132903 +132904-132906 +132905-132906 +132907-132920 +132908-132920 +132909-132910 +132911-132912 +132913-132915 +132914-132915 +132916-132920 +132917-132920 +132918-132920 +132918-132919 +132921-132937 +132921-132937 +132922-132937 +132922-132930 +132923-132930 +132924-132925 +132926-132930 +132927-132930 +132928-132930 +132929-132930 +132932-132937 +132933-132937 +132934-132937 +132936-132937 +132938-132970 +132938-132970 +132939-132970 +132940-132941 +132942-132948 +132943-132948 +132944-132948 +132945-132948 +132946-132948 +132947-132948 +132949-132970 +132950-132970 +132951-132953 +132952-132953 +132954-132970 +132955-132970 +132955-132957 +132956-132957 +132958-132970 +132961-132966 +132962-132963 +132964-132966 +132965-132966 +132967-132970 +132968-132970 +132969-132970 +132971-132988 +132971-132988 +132972-132988 +132973-132974 +132975-132978 +132976-132978 +132977-132978 +132979-132981 +132980-132981 +132983-132984 +132984 +132985-132988 +132986-132988 +132989-133013 +132989-133013 +132990-133013 +132990-132994 +132991-132992 +132993-132994 +132995-133013 +132996-133013 +132996-133001 +132997-132998 +132999-133001 +133000-133001 +133002-133013 +133003-133013 +133004-133013 +133005-133013 +133006-133013 +133008-133009 +133010-133013 +133011-133013 +133012-133013 +133014-133041 +133014-133041 +133015-133041 +133015-133020 +133016-133017 +133018-133020 +133019-133020 +133021-133041 +133022-133041 +133023-133041 +133025-133041 +133026-133041 +133026-133030 +133027-133030 +133028-133030 +133029-133030 +133031-133041 +133032-133041 +133032-133036 +133033-133036 +133034-133036 +133035-133036 +133037-133041 +133038-133041 +133039-133041 +133040-133041 +133042-133048 +133042-133048 +133043-133048 +133044-133048 +133045-133048 +133046-133048 +133047-133048 +133049-133075 +133049-133075 +133050-133075 +133050-133061 +133051-133061 +133051-133053 +133052-133053 +133056-133061 +133057-133061 +133057-133058 +133059-133061 +133060-133061 +133062-133075 +133063-133075 +133063-133068 +133063-133066 +133064-133066 +133065-133066 +133067-133068 +133069-133075 +133070-133075 +133070-133073 +133071-133073 +133072-133073 +133074-133075 +133076-133096 +133076-133096 +133077-133096 +133077-133083 +133077-133080 +133078-133080 +133079-133080 +133084-133096 +133085-133096 +133085-133089 +133085-133087 +133086-133087 +133088-133089 +133090-133096 +133091-133096 +133091-133093 +133092-133093 +133094-133096 +133095-133096 +133097-133111 +133097-133111 +133098-133111 +133100-133101 +133102-133111 +133102-133104 +133103-133104 +133105-133108 +133106-133108 +133107-133108 +133109-133111 +133110-133111 +133112-133128 +133112-133128 +133113-133128 +133113-133121 +133113-133117 +133114-133117 +133115-133117 +133116-133117 +133118-133121 +133119-133121 +133120-133121 +133122-133128 +133123-133128 +133123-133127 +133124-133127 +133125-133127 +133126-133127 +133129-133161 +133129-133161 +133130-133161 +133130-133146 +133130-133136 +133131-133133 +133132-133133 +133134-133136 +133135-133136 +133137-133146 +133138-133146 +133139-133140 +133141-133146 +133142-133146 +133143-133144 +133145-133146 +133147-133161 +133148-133161 +133149-133150 +133151-133161 +133152-133161 +133152-133155 +133154-133155 +133156-133161 +133157-133161 +133159-133161 +133160-133161 +133162-133177 +133162-133177 +133163-133177 +133163-133169 +133165-133169 +133166-133169 +133167-133169 +133168-133169 +133170-133177 +133171-133177 +133174-133177 +133175-133177 +133176-133177 +133178-133200 +133178-133200 +133179-133200 +133180-133182 +133181-133182 +133183-133187 +133184-133187 +133185-133187 +133186-133187 +133188-133200 +133189-133200 +133189-133191 +133190-133191 +133192-133200 +133193-133200 +133193-133195 +133194-133195 +133196-133200 +133197-133200 +133197-133199 +133198-133199 +133201-133224 +133201-133224 +133202-133224 +133202-133211 +133204-133211 +133204-133208 +133206-133208 +133207-133208 +133209-133211 +133210-133211 +133212-133224 +133213-133224 +133216-133224 +133217-133224 +133218-133224 +133219-133220 +133221-133222 +133223-133224 +133225-133251 +133225-133251 +133226-133251 +133228-133251 +133229-133251 +133229-133233 +133230-133233 +133231-133233 +133232-133233 +133234-133251 +133236-133239 +133237-133239 +133238-133239 +133240-133248 +133241-133248 +133242-133248 +133243-133248 +133244-133248 +133245-133248 +133245-133246 +133247-133248 +133248 +133249-133251 +133250-133251 +133252-133256 +133252-133256 +133252-133255 +133253-133255 +133256 +133257-133263 +133257-133263 +133257-133260 +133258-133260 +133259-133260 +133261-133262 +133264-133273 +133264-133273 +133264-133268 +133265-133268 +133266-133267 +133270-133273 +133271-133272 +133274-133282 +133274-133282 +133276-133282 +133276-133280 +133276-133277 +133278-133280 +133279-133280 +133281-133282 +133283-133300 +133283-133300 +133284-133300 +133284-133290 +133285-133290 +133285-133286 +133288-133290 +133289-133290 +133291-133300 +133292-133300 +133292-133296 +133293-133294 +133295-133296 +133297-133300 +133298-133300 +133299-133300 +133300 +133301-133310 +133301-133310 +133302-133310 +133302-133307 +133302-133306 +133303-133306 +133304-133306 +133305-133306 +133309-133310 +133311-133332 +133311-133332 +133312-133332 +133313-133319 +133313-133314 +133315-133319 +133316-133319 +133317-133319 +133317-133318 +133320-133332 +133321-133332 +133322-133332 +133322-133325 +133323-133325 +133324-133325 +133326-133332 +133328-133332 +133329-133332 +133330-133332 +133331-133332 +133333-133350 +133333-133350 +133334-133350 +133335-133336 +133337-133350 +133338-133350 +133340-133350 +133341-133343 +133342-133343 +133345-133347 +133346-133347 +133348-133350 +133349-133350 +133351-133385 +133351-133385 +133352-133385 +133353-133357 +133354-133357 +133355-133357 +133356-133357 +133358-133367 +133359-133367 +133360-133367 +133361-133367 +133364-133367 +133365-133367 +133366-133367 +133368-133385 +133369-133373 +133370-133373 +133371-133373 +133372-133373 +133374-133385 +133376-133385 +133377-133385 +133378-133385 +133378-133383 +133380-133383 +133381-133383 +133382-133383 +133384-133385 +133385 +133386-133413 +133386-133413 +133387-133413 +133387-133394 +133389-133394 +133391-133394 +133392-133394 +133393-133394 +133395-133413 +133396-133413 +133396-133401 +133398-133401 +133399-133401 +133400-133401 +133402-133413 +133403-133413 +133403 +133404-133413 +133405-133413 +133405-133412 +133406-133412 +133409-133412 +133410-133412 +133411-133412 +133414-133472 +133414-133472 +133415-133472 +133415-133433 +133416-133433 +133417-133433 +133417-133421 +133417-133418 +133419-133421 +133420-133421 +133422-133427 +133423-133427 +133423-133424 +133425-133427 +133426-133427 +133428-133433 +133429-133433 +133429-133430 +133431-133433 +133432-133433 +133434-133472 +133434-133448 +133435-133448 +133438-133448 +133438-133443 +133439-133443 +133440-133443 +133440-133441 +133442-133443 +133444-133448 +133445-133448 +133446-133448 +133447-133448 +133449-133472 +133450-133472 +133451-133472 +133451-133456 +133454-133456 +133454 +133455-133456 +133456 +133457-133472 +133458-133472 +133459-133472 +133460-133472 +133461-133472 +133461-133462 +133463-133472 +133463-133466 +133464-133466 +133465-133466 +133467-133472 +133468-133472 +133469-133472 +133470-133472 +133471-133472 +133473-133476 +133473-133476 +133474-133475 +133477-133488 +133477-133488 +133477-133479 +133478-133479 +133481-133484 +133482-133484 +133483-133484 +133485-133488 +133486-133488 +133486-133487 +133489-133495 +133489-133495 +133490-133495 +133490-133492 +133491-133492 +133493-133495 +133496-133528 +133496-133528 +133497-133528 +133497 +133498-133528 +133499-133528 +133500-133506 +133500-133501 +133503-133506 +133504-133506 +133505-133506 +133507-133528 +133508-133528 +133508-133509 +133510-133528 +133510-133513 +133510-133512 +133514-133528 +133515-133528 +133515-133523 +133515-133517 +133516-133517 +133518-133523 +133519-133523 +133520-133523 +133521-133523 +133522-133523 +133525-133528 +133526-133528 +133527-133528 +133529-133555 +133529-133555 +133530-133555 +133530-133543 +133532-133534 +133533-133534 +133535-133543 +133535-133538 +133536-133538 +133536-133538 +133537-133538 +133539-133543 +133540-133543 +133541-133543 +133541-133543 +133542-133543 +133544-133555 +133545-133555 +133545-133548 +133546-133548 +133547-133548 +133549-133555 +133550-133555 +133552-133555 +133553-133555 +133554-133555 +133556-133570 +133556-133570 +133557-133570 +133558-133559 +133560-133570 +133560-133562 +133561-133562 +133563-133570 +133564-133570 +133565-133570 +133565-133567 +133566-133567 +133568-133570 +133569-133570 +133571-133588 +133571-133588 +133572-133588 +133574-133576 +133575-133576 +133577-133588 +133578-133588 +133579-133588 +133579-133583 +133580-133583 +133580-133582 +133584-133588 +133585-133588 +133586-133588 +133587-133588 +133589-133598 +133589-133598 +133589-133595 +133591-133595 +133592-133593 +133596-133598 +133597-133598 +133599-133606 +133599-133606 +133600-133606 +133601-133606 +133602-133603 +133604-133606 +133605-133606 +133607-133625 +133607-133625 +133607-133617 +133609-133611 +133610-133611 +133612-133617 +133613-133617 +133613-133614 +133615-133617 +133616-133617 +133618-133625 +133619-133625 +133619-133622 +133620-133622 +133621-133622 +133626-133627 +133626-133627 +133628-133686 +133628-133686 +133629-133686 +133630-133686 +133630-133631 +133633-133634 +133635-133654 +133636-133637 +133638-133654 +133639-133654 +133639-133644 +133640-133644 +133641-133644 +133642-133644 +133643-133644 +133645-133654 +133646-133654 +133647-133654 +133648-133654 +133649-133650 +133651-133652 +133653-133654 +133655-133686 +133656-133658 +133657-133658 +133659-133686 +133659-133672 +133659-133665 +133659-133661 +133660-133661 +133662-133665 +133663-133665 +133666-133672 +133667-133672 +133668-133672 +133669-133672 +133670-133672 +133671-133672 +133673-133686 +133674-133686 +133675-133686 +133676-133686 +133677-133686 +133677-133678 +133679-133681 +133680-133681 +133682-133683 +133684-133686 +133685-133686 +133687-133710 +133687-133710 +133688-133710 +133688-133690 +133688-133689 +133692-133710 +133693-133710 +133693 +133694-133710 +133695-133710 +133695-133697 +133696-133697 +133698-133710 +133699-133706 +133700-133706 +133701-133706 +133702-133706 +133703-133706 +133704-133706 +133705-133706 +133708-133710 +133709-133710 +133711-133773 +133711-133773 +133712-133773 +133712-133714 +133712-133713 +133717-133773 +133718-133720 +133719-133720 +133721-133773 +133721-133741 +133722-133741 +133722-133729 +133724-133729 +133724-133725 +133726-133729 +133727-133729 +133728-133729 +133730-133741 +133731-133741 +133733-133741 +133733-133736 +133734-133736 +133735-133736 +133737-133741 +133738-133741 +133739-133741 +133740-133741 +133742-133773 +133742-133760 +133742-133743 +133745-133760 +133746-133760 +133746-133751 +133747-133751 +133748-133751 +133749-133751 +133750-133751 +133752-133760 +133753-133760 +133755-133760 +133756-133760 +133757-133760 +133758-133760 +133759-133760 +133761-133773 +133762-133773 +133763-133766 +133764-133766 +133765-133766 +133767-133773 +133767-133769 +133768-133769 +133770-133773 +133771-133773 +133772-133773 +133774-133807 +133774-133807 +133775-133807 +133775-133783 +133775-133779 +133776-133779 +133777-133779 +133778-133779 +133780-133782 +133781-133782 +133784-133807 +133785-133807 +133788-133790 +133789-133790 +133791-133807 +133791-133798 +133792-133798 +133793-133798 +133793-133794 +133795-133798 +133796-133798 +133797-133798 +133799-133807 +133800-133807 +133801-133807 +133803-133807 +133804-133807 +133805-133807 +133806-133807 +133808-133823 +133808-133823 +133810-133823 +133811-133823 +133812-133823 +133812-133813 +133814-133823 +133815-133823 +133816-133823 +133816-133819 +133817-133819 +133818-133819 +133820-133823 +133821-133823 +133822-133823 +133824-133839 +133824-133839 +133825-133839 +133826-133839 +133827-133829 +133828-133829 +133831-133839 +133832-133839 +133833-133839 +133833-133834 +133835-133839 +133836-133839 +133836-133837 +133840-133856 +133840-133856 +133840 +133842-133843 +133844-133856 +133845-133856 +133845-133849 +133846-133849 +133847-133849 +133848-133849 +133850-133856 +133851-133856 +133851-133853 +133852-133853 +133855-133856 +133857-133884 +133857-133884 +133858-133884 +133858 +133859-133884 +133860-133884 +133861-133862 +133861-133862 +133863-133884 +133864-133884 +133864-133866 +133865-133866 +133868-133870 +133869-133870 +133871-133884 +133871-133877 +133872-133875 +133873-133875 +133874-133875 +133876-133877 +133878-133884 +133879-133884 +133879-133882 +133880-133882 +133881-133882 +133883-133884 +133885-133917 +133885-133917 +133886-133917 +133886-133887 +133889-133891 +133890-133891 +133892-133917 +133893-133895 +133894-133895 +133896-133900 +133897-133900 +133898-133900 +133899-133900 +133901-133917 +133901-133906 +133901-133904 +133902-133904 +133903-133904 +133905-133906 +133906 +133907-133917 +133908-133917 +133909-133910 +133911 +133912-133917 +133913-133917 +133914-133917 +133915-133917 +133916-133917 +133918-133934 +133918-133934 +133919-133934 +133919-133930 +133920-133924 +133921-133924 +133922-133924 +133923-133924 +133925-133927 +133926-133927 +133928-133930 +133929-133930 +133931-133934 +133932-133934 +133933-133934 +133935-133950 +133935-133950 +133936-133950 +133936-133937 +133939-133945 +133940-133945 +133940-133941 +133942-133945 +133943-133945 +133944-133945 +133946-133950 +133947-133948 +133949-133950 +133951-133993 +133951-133993 +133952-133993 +133952-133963 +133952-133959 +133952-133953 +133954-133959 +133955-133959 +133957-133959 +133958-133959 +133961-133963 +133962-133963 +133964-133993 +133965-133993 +133966-133967 +133968-133973 +133969-133973 +133970-133973 +133971-133973 +133972-133973 +133974-133993 +133975-133993 +133975-133988 +133975-133980 +133976-133980 +133977-133980 +133978-133980 +133979-133980 +133981-133988 +133982-133988 +133983-133988 +133984-133988 +133985-133988 +133986-133988 +133987-133988 +133989-133993 +133990-133993 +133991-133993 +133992-133993 +133994-134020 +133994-134020 +133995-134020 +133995-134003 +133996-133997 +133998-134000 +133999-134000 +134001-134003 +134002-134003 +134004-134020 +134005-134020 +134005-134009 +134006-134009 +134007-134009 +134008-134009 +134010-134020 +134011-134020 +134012-134020 +134013-134020 +134014-134020 +134014-134018 +134015-134018 +134016-134018 +134017-134018 +134019-134020 +134021-134042 +134021-134042 +134022-134042 +134022-134027 +134023-134024 +134025-134027 +134026-134027 +134028-134042 +134029-134042 +134031-134033 +134032-134033 +134034-134038 +134035-134038 +134036-134038 +134037-134038 +134039-134042 +134040-134042 +134041-134042 +134043-134067 +134043-134067 +134044-134067 +134045-134067 +134045-134052 +134045-134049 +134046-134049 +134047-134049 +134048-134049 +134050-134052 +134051-134052 +134053-134067 +134053-134054 +134056-134059 +134056-134057 +134058-134059 +134060-134067 +134061-134067 +134061-134062 +134064-134067 +134065-134067 +134066-134067 +134068-134102 +134068-134102 +134069-134102 +134069 +134070-134102 +134070-134074 +134070-134072 +134071-134072 +134075-134102 +134076-134102 +134076-134092 +134077-134092 +134078-134092 +134078-134080 +134079-134080 +134081-134085 +134082-134085 +134083-134085 +134084-134085 +134086-134092 +134087-134092 +134088-134092 +134089-134092 +134090-134092 +134091-134092 +134094-134098 +134095-134098 +134096-134098 +134097-134098 +134099-134102 +134100-134102 +134101-134102 +134103-134128 +134103-134128 +134104-134128 +134105-134116 +134105-134111 +134106-134111 +134107-134111 +134108-134111 +134109-134111 +134110-134111 +134112-134116 +134113-134116 +134114-134116 +134115-134116 +134117-134128 +134118-134128 +134118-134120 +134119-134120 +134121-134123 +134122-134123 +134124-134128 +134124-134128 +134125-134128 +134125-134126 +134127-134128 +134129-134138 +134129-134138 +134129-134131 +134130-134131 +134132-134134 +134133-134134 +134135-134138 +134135-134138 +134136-134138 +134137-134138 +134139-134165 +134139-134165 +134139-134148 +134139-134143 +134140-134141 +134143 +134144-134148 +134145-134148 +134146-134148 +134147-134148 +134149-134165 +134150-134165 +134152-134165 +134153-134165 +134153-134156 +134153-134155 +134154-134155 +134157-134160 +134158-134160 +134159-134160 +134161-134165 +134162-134165 +134162-134164 +134163-134164 +134166-134204 +134166-134204 +134167-134204 +134167-134169 +134167-134168 +134170-134204 +134171-134204 +134171-134180 +134172-134180 +134173-134180 +134173-134177 +134174-134177 +134175-134177 +134176-134177 +134178-134180 +134179-134180 +134181-134204 +134182-134204 +134183-134190 +134183-134185 +134184-134185 +134186-134190 +134187-134190 +134188-134190 +134189-134190 +134191-134193 +134192-134193 +134194-134204 +134194-134197 +134195-134197 +134195-134196 +134198-134204 +134199-134204 +134200-134202 +134201-134202 +134203-134204 +134205-134229 +134205-134229 +134206-134229 +134206-134210 +134207-134210 +134208-134210 +134209-134210 +134212-134214 +134213-134214 +134215-134229 +134216-134229 +134216-134217 +134218-134229 +134219-134229 +134220-134229 +134221-134229 +134221-134222 +134223-134229 +134224-134229 +134225-134229 +134226-134229 +134227-134229 +134228-134229 +134230-134259 +134230-134259 +134231-134259 +134231-134244 +134232-134233 +134235-134244 +134235-134239 +134236-134239 +134237-134239 +134238-134239 +134240-134244 +134241-134244 +134242-134244 +134243-134244 +134245-134259 +134246-134259 +134248-134251 +134249-134251 +134250-134251 +134252-134259 +134253-134259 +134254-134259 +134255-134259 +134256-134259 +134257-134259 +134258-134259 +134260-134283 +134260-134283 +134261-134283 +134262-134283 +134262-134263 +134264-134266 +134265-134266 +134268-134270 +134269-134270 +134271-134283 +134271 +134272-134283 +134273-134283 +134274-134280 +134275-134280 +134276-134280 +134277-134280 +134278-134280 +134279-134280 +134281-134283 +134282-134283 +134284-134295 +134284-134295 +134285-134295 +134285-134287 +134286-134287 +134288-134295 +134289-134295 +134290-134292 +134291-134292 +134293-134295 +134294-134295 +134296-134316 +134296-134316 +134297-134316 +134298-134301 +134299-134301 +134300-134301 +134302-134316 +134303-134316 +134303-134304 +134305-134316 +134305-134310 +134306-134310 +134307-134310 +134308-134310 +134309-134310 +134311-134316 +134312-134316 +134313-134316 +134314-134316 +134315-134316 +134317-134326 +134317-134326 +134318-134326 +134318-134319 +134321-134323 +134322-134323 +134324-134326 +134325-134326 +134327-134340 +134327-134340 +134328-134340 +134328-134331 +134329-134331 +134330-134331 +134332-134340 +134333-134340 +134333-134339 +134333-134335 +134334-134335 +134336-134339 +134337-134339 +134338-134339 +134341-134355 +134341-134355 +134342-134355 +134342-134343 +134345-134347 +134346-134347 +134348-134355 +134349-134355 +134349-134350 +134351-134355 +134352-134355 +134353-134355 +134354-134355 +134356-134358 +134356-134358 +134357-134358 +134359-134388 +134359-134388 +134360-134388 +134361-134388 +134361-134364 +134362-134364 +134363-134364 +134366-134388 +134366-134374 +134368-134374 +134368-134374 +134368-134372 +134368-134369 +134369 +134370-134372 +134371-134372 +134372 +134373-134374 +134375-134388 +134376-134388 +134378-134388 +134379-134388 +134379-134383 +134379-134382 +134380-134382 +134381-134382 +134384-134388 +134385-134388 +134388 +134389-134390 +134389-134390 +134391-134407 +134391-134407 +134392-134407 +134393-134407 +134393-134394 +134396-134407 +134396 +134397-134401 +134397-134401 +134398-134401 +134398-134399 +134400-134401 +134402-134404 +134403-134404 +134405-134407 +134406-134407 +134408-134417 +134408-134417 +134409-134417 +134409-134410 +134412-134414 +134413-134414 +134415-134417 +134416-134417 +134418-134425 +134418-134425 +134419-134425 +134421-134425 +134422-134423 +134424-134425 +134426-134451 +134426-134451 +134427-134451 +134427-134431 +134428-134429 +134430-134431 +134432-134451 +134433-134451 +134433-134445 +134434-134445 +134435-134445 +134436-134445 +134436-134437 +134438-134445 +134439-134445 +134440-134441 +134442-134445 +134443-134445 +134443-134444 +134446-134451 +134447-134451 +134449-134451 +134452-134463 +134452-134463 +134453-134463 +134453-134454 +134456-134458 +134457-134458 +134459-134463 +134460-134463 +134461-134463 +134462-134463 +134464-134499 +134464-134499 +134465-134499 +134465-134469 +134466-134468 +134467-134468 +134469 +134470-134499 +134471-134499 +134471-134492 +134471-134477 +134472-134474 +134473-134474 +134475-134477 +134476-134477 +134478-134492 +134479-134492 +134480-134483 +134481-134483 +134482-134483 +134484-134492 +134484-134487 +134485-134487 +134486-134487 +134488-134492 +134489-134492 +134490-134492 +134491-134492 +134493-134499 +134494-134499 +134496-134499 +134497-134499 +134498-134499 +134500-134512 +134500-134512 +134501-134512 +134501-134502 +134504-134506 +134505-134506 +134507-134512 +134508-134512 +134508-134509 +134510-134512 +134511-134512 +134513-134527 +134513-134527 +134514-134527 +134515-134517 +134516-134517 +134518-134527 +134519-134527 +134520-134527 +134521-134527 +134522-134527 +134522-134523 +134524-134527 +134525-134527 +134526-134527 +134528-134551 +134528-134551 +134529-134551 +134530-134551 +134530-134546 +134530-134534 +134531-134534 +134532-134534 +134533-134534 +134535-134540 +134536-134540 +134537-134540 +134538-134540 +134539-134540 +134541-134546 +134542-134546 +134543-134546 +134544-134546 +134545-134546 +134547-134551 +134547-134549 +134547-134548 +134550-134551 +134552-134578 +134552-134578 +134553-134578 +134554-134578 +134554-134557 +134554-134555 +134556-134557 +134558-134578 +134560-134565 +134561-134565 +134562-134565 +134563-134565 +134563-134564 +134566-134578 +134568-134578 +134569-134578 +134570-134578 +134571-134578 +134572-134578 +134572-134574 +134573-134574 +134575-134578 +134575-134576 +134577-134578 +134579-134582 +134579-134582 +134580 +134581-134582 +134582 +134583-134599 +134583-134599 +134584-134590 +134585-134590 +134585 +134586-134590 +134587-134590 +134588-134590 +134589-134590 +134591-134599 +134592-134599 +134592-134594 +134595-134599 +134596-134599 +134597-134599 +134598-134599 +134600-134609 +134600-134609 +134601-134609 +134603-134609 +134604-134609 +134604-134605 +134606-134609 +134607-134609 +134610-134619 +134610-134619 +134611-134619 +134611-134612 +134614-134616 +134615-134616 +134617-134619 +134618-134619 +134620-134631 +134620-134631 +134621-134631 +134622-134623 +134624-134626 +134625-134626 +134627-134629 +134628-134629 +134630-134631 +134631 +134632-134656 +134632-134656 +134633-134656 +134633-134638 +134634-134638 +134635-134636 +134637-134638 +134639-134656 +134640-134656 +134640-134652 +134640-134641 +134643-134652 +134646-134652 +134647-134652 +134650-134652 +134651-134652 +134653-134656 +134653-134654 +134657-134671 +134657-134671 +134658-134671 +134658-134665 +134659-134662 +134660-134662 +134661-134662 +134663-134665 +134664-134665 +134666-134671 +134667-134671 +134667-134670 +134668-134670 +134669-134670 +134672-134690 +134672-134690 +134673-134690 +134673-134675 +134674-134675 +134677-134679 +134678-134679 +134680-134690 +134682-134690 +134683-134690 +134684-134690 +134685-134690 +134686-134690 +134687-134690 +134688-134690 +134689-134690 +134691-134698 +134691-134698 +134692-134698 +134692-134694 +134692-134693 +134695-134698 +134696-134698 +134699-134710 +134699-134710 +134700-134710 +134700-134703 +134700-134701 +134702-134703 +134705-134707 +134706-134707 +134708-134710 +134709-134710 +134711-134728 +134711-134728 +134712-134728 +134713-134714 +134715-134716 +134717-134721 +134718-134721 +134719-134721 +134720-134721 +134722-134728 +134723-134728 +134725-134727 +134726-134727 +134729-134778 +134729-134778 +134730-134778 +134730-134740 +134731-134740 +134732-134740 +134733-134740 +134733-134735 +134734-134735 +134736-134740 +134737-134740 +134738-134740 +134739-134740 +134741-134778 +134742-134778 +134743-134744 +134745-134778 +134746-134778 +134746 +134747-134778 +134749-134759 +134750-134759 +134751-134759 +134751-134754 +134752-134754 +134753-134754 +134755-134759 +134756-134759 +134757-134759 +134758-134759 +134760-134778 +134760-134766 +134760-134761 +134763-134766 +134764-134766 +134765-134766 +134767-134778 +134768-134778 +134769-134772 +134770-134772 +134771-134772 +134773-134778 +134774-134778 +134775-134778 +134776-134778 +134777-134778 +134779-134785 +134779-134785 +134780-134785 +134782-134783 +134784-134785 +134786-134801 +134786-134801 +134787-134801 +134788-134801 +134790-134801 +134791-134801 +134791-134795 +134791-134792 +134793-134795 +134794-134795 +134796-134801 +134797-134801 +134797-134798 +134799-134801 +134800-134801 +134802-134852 +134802-134852 +134803-134852 +134803-134817 +134803-134804 +134806-134817 +134806-134809 +134807-134809 +134808-134809 +134810-134817 +134811-134817 +134812-134817 +134813-134815 +134814-134815 +134816-134817 +134818-134852 +134818-134832 +134819-134822 +134820-134822 +134821-134822 +134823-134832 +134823-134824 +134825-134832 +134826-134832 +134827-134832 +134828-134832 +134829-134832 +134830-134832 +134831-134832 +134833-134852 +134834-134852 +134834-134837 +134835-134837 +134836-134837 +134839-134852 +134839-134840 +134841-134852 +134841-134843 +134842-134843 +134844-134852 +134845-134852 +134846-134852 +134846-134847 +134848-134852 +134849-134852 +134850-134852 +134851-134852 +134853-134869 +134853-134869 +134854-134869 +134855-134869 +134855-134856 +134858-134869 +134858-134862 +134859-134862 +134860-134862 +134861-134862 +134863-134869 +134864-134869 +134865-134869 +134866-134869 +134867-134869 +134868-134869 +134870-134875 +134870-134875 +134871-134875 +134872-134873 +134874-134875 +134876-134883 +134876-134883 +134877-134883 +134879-134880 +134881-134883 +134881-134882 +134884-134905 +134884-134905 +134887-134905 +134888-134905 +134889-134905 +134889-134890 +134891-134905 +134892-134905 +134892-134896 +134892-134893 +134894-134896 +134895-134896 +134897-134905 +134898-134905 +134899-134905 +134899-134901 +134900-134901 +134902-134905 +134903-134905 +134904-134905 +134906-134923 +134906-134923 +134906-134913 +134906-134910 +134906-134909 +134907-134909 +134908-134909 +134911-134913 +134912-134913 +134914-134923 +134915-134923 +134915-134919 +134916-134919 +134917-134919 +134918-134919 +134920-134923 +134921-134923 +134921-134922 +134924-134953 +134924-134953 +134925-134953 +134926-134943 +134926-134930 +134927-134930 +134928-134930 +134929-134930 +134931-134943 +134931-134933 +134932-134933 +134936-134940 +134937-134940 +134938-134940 +134939-134940 +134941-134943 +134942-134943 +134944-134953 +134945-134946 +134947-134953 +134948-134953 +134948 +134949-134951 +134950-134951 +134952-134953 +134953 +134954-134959 +134954-134959 +134955-134959 +134955-134956 +134957-134959 +134958-134959 +134960-134971 +134960-134971 +134960-134965 +134960-134962 +134961-134962 +134963-134964 +134966-134971 +134967-134968 +134970-134971 +134972-134975 +134972-134975 +134973-134975 +134973-134974 +134976-134992 +134976-134992 +134976-134978 +134976-134977 +134979-134981 +134979-134980 +134982-134992 +134982-134985 +134982-134983 +134986-134992 +134987-134992 +134987-134988 +134988 +134989-134991 +134993-135013 +134993-135013 +134994-135013 +134994-135000 +134994-135000 +134995-135000 +134996-135000 +134996-134997 +134998-135000 +134999-135000 +135001-135009 +135001-135004 +135001-135002 +135005-135009 +135006-135009 +135006-135008 +135007-135008 +135010-135013 +135011-135013 +135011-135012 +135014-135036 +135014-135036 +135015-135036 +135015-135019 +135016-135019 +135016-135017 +135018-135019 +135021-135036 +135021-135022 +135023-135036 +135023-135026 +135027-135036 +135028-135036 +135029-135030 +135031-135032 +135034-135036 +135035-135036 +135037-135049 +135037-135049 +135037-135040 +135038-135039 +135041-135049 +135042-135049 +135042-135046 +135043-135046 +135043-135045 +135044-135045 +135047-135048 +135050-135075 +135050-135075 +135050-135054 +135051-135053 +135052-135053 +135055-135075 +135056-135075 +135056-135059 +135056-135057 +135060-135075 +135061-135075 +135061-135066 +135062-135066 +135062-135063 +135064-135066 +135065-135066 +135067-135075 +135068-135075 +135068-135070 +135069-135070 +135071-135075 +135072-135073 +135074-135075 +135076-135094 +135076-135094 +135077-135094 +135079-135094 +135079-135086 +135080-135086 +135080-135082 +135081-135082 +135083-135086 +135084-135085 +135088-135094 +135089-135090 +135091-135092 +135093-135094 +135095-135123 +135095-135123 +135096-135123 +135096-135103 +135096-135103 +135096-135100 +135097-135100 +135097-135098 +135099-135100 +135101-135103 +135102-135103 +135104-135107 +135106-135107 +135108-135123 +135109-135123 +135109-135113 +135111-135113 +135111 +135112-135113 +135114-135123 +135115-135123 +135115-135118 +135115-135117 +135116-135117 +135119-135123 +135120-135123 +135122-135123 +135124-135152 +135124-135152 +135125-135152 +135125-135126 +135128-135131 +135129-135131 +135130-135131 +135132-135146 +135132-135135 +135133-135135 +135134-135135 +135136-135139 +135137-135139 +135138-135139 +135140-135146 +135141-135146 +135142-135144 +135143-135144 +135145-135146 +135147-135152 +135148-135152 +135149-135152 +135150-135152 +135151-135152 +135153-135170 +135153-135170 +135154-135170 +135154-135157 +135155-135157 +135156-135157 +135159-135170 +135159-135162 +135160-135162 +135161-135162 +135163-135170 +135164-135170 +135166-135170 +135167-135170 +135168-135170 +135169-135170 +135171-135190 +135171-135190 +135171-135182 +135171-135172 +135174-135182 +135174-135175 +135177-135179 +135178-135179 +135180-135182 +135181-135182 +135183-135190 +135184-135190 +135184-135185 +135187-135190 +135188-135190 +135189-135190 +135191-135250 +135191-135250 +135192-135250 +135193-135195 +135194-135195 +135196-135250 +135197-135250 +135197-135201 +135197 +135198-135201 +135199-135201 +135200-135201 +135202-135250 +135203-135250 +135204-135217 +135204-135205 +135206-135210 +135207-135210 +135208-135210 +135209-135210 +135211-135217 +135212-135217 +135213-135217 +135214-135217 +135215-135217 +135216-135217 +135217 +135218-135250 +135219-135250 +135219-135230 +135219-135226 +135220-135226 +135221-135226 +135222-135226 +135223-135226 +135224-135226 +135225-135226 +135228-135230 +135229-135230 +135231-135238 +135232-135238 +135232-135235 +135233-135235 +135234-135235 +135236-135237 +135239-135250 +135240-135250 +135240-135243 +135241-135243 +135242-135243 +135244-135249 +135245-135249 +135246-135249 +135247-135249 +135248-135249 +135251-135293 +135251-135293 +135252-135293 +135253-135293 +135253-135254 +135255-135257 +135256-135257 +135259-135293 +135259-135261 +135259-135261 +135260-135261 +135263-135264 +135265-135278 +135265-135270 +135266-135270 +135268-135270 +135269-135270 +135271-135278 +135272-135278 +135273-135278 +135273-135276 +135274-135276 +135275-135276 +135279-135293 +135280-135293 +135280-135286 +135281-135283 +135282-135283 +135284-135286 +135285-135286 +135287-135293 +135288-135293 +135289-135290 +135291-135293 +135292-135293 +135294-135307 +135294-135307 +135294-135299 +135296-135299 +135297-135299 +135297-135298 +135300-135307 +135301-135307 +135302-135303 +135304-135307 +135305-135307 +135306-135307 +135308-135315 +135308-135315 +135308-135312 +135309-135312 +135310-135312 +135311-135312 +135316-135344 +135316-135344 +135316-135326 +135316-135320 +135316-135318 +135319-135320 +135320 +135321-135324 +135322-135324 +135323-135324 +135328-135344 +135328-135331 +135329-135331 +135330-135331 +135333-135344 +135334-135344 +135334-135335 +135336-135344 +135337-135344 +135337-135339 +135340-135344 +135341-135344 +135342-135343 +135345-135370 +135345-135370 +135345-135358 +135345-135346 +135347-135349 +135348-135349 +135351-135358 +135351-135353 +135352-135353 +135354-135358 +135355-135356 +135357-135358 +135359-135362 +135360-135362 +135360-135361 +135363-135370 +135364-135370 +135365-135370 +135365-135367 +135366-135367 +135368-135370 +135369-135370 +135371-135421 +135371-135421 +135372-135421 +135372-135386 +135372-135374 +135373-135374 +135375-135376 +135377-135386 +135377-135380 +135378-135380 +135379-135380 +135381-135386 +135382-135386 +135382-135383 +135384-135386 +135385-135386 +135387-135421 +135388-135421 +135389-135393 +135390-135393 +135391-135393 +135392-135393 +135394-135402 +135394-135395 +135397-135402 +135398-135402 +135399-135402 +135400-135402 +135401-135402 +135403-135421 +135404-135421 +135404-135414 +135405 +135406-135414 +135406-135414 +135406-135409 +135407-135409 +135408-135409 +135410-135414 +135411-135414 +135412-135414 +135413-135414 +135415-135421 +135416-135421 +135416-135417 +135419-135421 +135420-135421 +135422-135506 +135422-135506 +135423-135506 +135423-135426 +135424-135426 +135425-135426 +135427-135429 +135428-135429 +135430-135431 +135432-135506 +135433-135506 +135436-135506 +135436-135438 +135437-135438 +135439-135506 +135439-135455 +135440-135455 +135441-135442 +135443-135445 +135444-135445 +135446-135447 +135448-135449 +135450-135451 +135452-135453 +135454-135455 +135456-135475 +135457-135475 +135457-135459 +135458-135459 +135460-135463 +135461-135463 +135462-135463 +135464-135475 +135465-135475 +135466-135475 +135467-135475 +135468-135475 +135468-135469 +135470-135471 +135472-135473 +135474-135475 +135476-135485 +135477-135485 +135478-135479 +135480-135481 +135482-135483 +135484-135485 +135486-135493 +135487-135493 +135488-135489 +135490-135491 +135492-135493 +135494-135506 +135495-135506 +135496-135497 +135498-135499 +135500-135501 +135502-135503 +135504-135506 +135505-135506 +135507-135533 +135507-135533 +135508-135533 +135508-135527 +135508-135517 +135508-135514 +135509-135514 +135510-135514 +135511-135514 +135512-135514 +135513-135514 +135516-135517 +135518-135527 +135519-135527 +135519-135524 +135520-135524 +135520-135521 +135522-135524 +135523-135524 +135526-135527 +135528-135533 +135529-135533 +135530-135531 +135534-135582 +135534-135582 +135534-135540 +135534-135536 +135535-135536 +135537-135540 +135538-135540 +135539-135540 +135541-135542 +135544-135549 +135545-135549 +135546-135549 +135547-135549 +135548-135549 +135550-135552 +135550 +135551-135552 +135552 +135553-135582 +135554-135582 +135554-135575 +135555 +135556-135575 +135556-135575 +135556-135559 +135557-135559 +135558-135559 +135560-135575 +135561-135575 +135561-135566 +135562-135566 +135563-135564 +135565-135566 +135567-135575 +135568-135575 +135569-135575 +135570-135575 +135571-135573 +135572-135573 +135574-135575 +135576-135582 +135577-135582 +135577-135578 +135580-135582 +135581-135582 +135583-135616 +135583-135616 +135584-135616 +135584-135601 +135584-135598 +135584-135585 +135586-135591 +135587-135591 +135588-135591 +135589-135591 +135589-135590 +135592-135593 +135594-135598 +135595-135598 +135596-135597 +135599-135600 +135602-135616 +135603-135616 +135604-135609 +135605-135609 +135606-135609 +135607-135609 +135608-135609 +135610-135616 +135611-135616 +135613-135616 +135614-135616 +135615-135616 +135617-135654 +135617-135654 +135618-135654 +135618-135623 +135620-135623 +135621-135623 +135622-135623 +135624-135654 +135625-135654 +135626-135628 +135626 +135627-135628 +135628 +135629-135654 +135630-135654 +135630-135650 +135631 +135632-135650 +135632-135650 +135632-135635 +135633-135635 +135634-135635 +135636-135650 +135636-135637 +135639-135646 +135640-135646 +135641-135646 +135642-135643 +135644-135646 +135645-135646 +135647-135650 +135648-135650 +135649-135650 +135651-135654 +135652-135654 +135652-135653 +135655-135676 +135655-135676 +135656-135657 +135658-135667 +135658-135667 +135659-135667 +135660-135667 +135660-135661 +135662-135664 +135663-135664 +135665-135667 +135666-135667 +135668-135676 +135669-135676 +135670-135671 +135672-135674 +135673-135674 +135675-135676 +135677-135703 +135677-135703 +135678-135703 +135678-135685 +135679-135681 +135680-135681 +135682-135685 +135683-135685 +135684-135685 +135686-135703 +135687-135703 +135688-135690 +135689-135690 +135691-135703 +135692-135703 +135692-135698 +135695-135698 +135696-135698 +135697-135698 +135699-135703 +135700-135703 +135700-135701 +135704-135791 +135704-135791 +135705-135791 +135705-135758 +135705-135718 +135705-135712 +135706-135712 +135707-135708 +135709-135710 +135711-135712 +135713-135714 +135716-135717 +135719-135729 +135720-135729 +135720-135723 +135721-135723 +135722-135723 +135724-135725 +135727-135728 +135730-135738 +135731-135738 +135731-135732 +135733-135734 +135736-135737 +135739-135747 +135740-135747 +135740-135741 +135742-135743 +135745-135746 +135748-135758 +135749-135758 +135749-135752 +135750-135752 +135751-135752 +135753-135754 +135756-135757 +135759-135791 +135760-135791 +135760-135767 +135760-135762 +135761-135762 +135764-135767 +135765-135767 +135766-135767 +135768-135791 +135769-135791 +135769-135776 +135769-135772 +135770-135772 +135771-135772 +135774-135776 +135775-135776 +135777-135791 +135778-135791 +135778-135779 +135781-135791 +135782-135791 +135783-135784 +135785-135791 +135786-135791 +135787-135791 +135788-135791 +135789-135791 +135790-135791 +135792-135846 +135792-135846 +135792-135793 +135795-135846 +135795-135799 +135796-135799 +135796-135797 +135798-135799 +135800-135802 +135801-135802 +135804-135846 +135805-135846 +135805-135815 +135805-135812 +135805-135806 +135807-135809 +135808-135809 +135810-135812 +135811-135812 +135813-135815 +135814-135815 +135816-135846 +135817-135846 +135817-135819 +135818-135819 +135820-135822 +135821-135822 +135823-135846 +135824-135846 +135824-135836 +135825-135836 +135826-135836 +135826-135828 +135827-135828 +135829-135836 +135831-135832 +135833-135836 +135834-135836 +135835-135836 +135837-135846 +135838-135846 +135839-135843 +135840-135843 +135841-135843 +135842-135843 +135844-135846 +135845-135846 +135847-135860 +135847-135860 +135848-135860 +135850-135860 +135850 +135851-135860 +135852-135860 +135852-135854 +135853-135854 +135856-135860 +135857-135860 +135858-135860 +135859-135860 +135861-135883 +135861-135883 +135862-135883 +135862-135871 +135863-135871 +135863-135867 +135864-135867 +135865-135867 +135866-135867 +135868-135871 +135869-135871 +135870-135871 +135872-135883 +135873-135883 +135874-135880 +135874-135875 +135876-135880 +135877-135880 +135878-135880 +135879-135880 +135881-135883 +135882-135883 +135883 +135884-135906 +135884-135906 +135885-135906 +135886-135888 +135887-135888 +135890-135906 +135891-135906 +135892-135894 +135893-135894 +135895-135906 +135895-135906 +135895-135901 +135895-135898 +135896-135898 +135897-135898 +135899-135901 +135900-135901 +135902-135906 +135902-135903 +135904-135906 +135905-135906 +135907-135932 +135907-135932 +135908-135932 +135909-135932 +135909-135922 +135909-135912 +135910-135912 +135911-135912 +135913-135917 +135914-135917 +135915-135917 +135916-135917 +135918-135922 +135919-135922 +135920-135922 +135921-135922 +135924-135932 +135924 +135926-135932 +135927-135932 +135927-135930 +135928-135930 +135929-135930 +135931-135932 +135933-135952 +135933-135952 +135933-135940 +135933-135935 +135933 +135934-135935 +135935 +135936-135940 +135937-135940 +135938-135939 +135941-135952 +135942-135952 +135942-135946 +135943-135946 +135944-135946 +135945-135946 +135947-135952 +135948-135952 +135948-135950 +135949-135950 +135953-135968 +135953-135968 +135954-135968 +135954-135960 +135956-135960 +135957-135960 +135958-135960 +135959-135960 +135961-135968 +135962-135968 +135962-135963 +135964-135967 +135965-135967 +135966-135967 +135969-135982 +135969-135982 +135970-135982 +135972-135982 +135973-135982 +135974-135982 +135975-135982 +135975-135981 +135976-135981 +135977-135981 +135978-135981 +135979-135981 +135980-135981 +135983-135992 +135983-135992 +135984-135992 +135986-135992 +135987-135991 +135988-135991 +135988-135989 +135990-135991 +135993-136000 +135993-136000 +135994-136000 +135995-135998 +135996-135998 +135997-135998 +135999-136000 +136001-136029 +136001-136029 +136002-136029 +136004-136029 +136004-136020 +136004-136017 +136004-136005 +136005 +136006-136017 +136007-136017 +136008-136017 +136009-136017 +136010-136017 +136010-136012 +136011-136012 +136013-136017 +136014-136017 +136015-136017 +136016-136017 +136018-136020 +136018-136019 +136021-136029 +136022-136029 +136022-136024 +136023-136024 +136026-136029 +136027-136029 +136028-136029 +136030-136053 +136030-136053 +136031-136053 +136031-136034 +136032-136034 +136032-136033 +136035-136053 +136036-136053 +136036-136038 +136036 +136037-136038 +136039-136053 +136040-136053 +136040-136047 +136040-136043 +136041-136043 +136042-136043 +136045-136047 +136046-136047 +136048-136053 +136049-136053 +136049-136050 +136051-136053 +136052-136053 +136054-136089 +136054-136089 +136055-136089 +136055-136080 +136055-136059 +136055-136057 +136056-136057 +136058-136059 +136060-136080 +136061-136080 +136061-136064 +136062-136064 +136063-136064 +136065-136066 +136067-136080 +136067-136075 +136068-136075 +136068-136069 +136069 +136070-136075 +136070-136072 +136074-136075 +136076-136080 +136077-136080 +136078-136080 +136079-136080 +136081-136089 +136082-136089 +136083-136085 +136084-136085 +136086-136089 +136087-136089 +136088-136089 +136090-136105 +136090-136105 +136091-136105 +136091-136096 +136091-136092 +136093-136096 +136094-136096 +136095-136096 +136099-136101 +136100-136101 +136102-136105 +136103-136105 +136103-136104 +136106-136126 +136106-136126 +136107-136126 +136107-136119 +136107-136110 +136108-136110 +136109-136110 +136112-136113 +136114-136119 +136115-136119 +136115-136116 +136118-136119 +136120-136126 +136121-136126 +136124-136126 +136125-136126 +136127-136141 +136127-136141 +136128-136141 +136130-136141 +136131-136141 +136132-136141 +136133-136141 +136134-136141 +136135-136141 +136136-136141 +136137-136141 +136138-136141 +136138-136139 +136140-136141 +136142-136158 +136142-136158 +136143-136158 +136144-136151 +136144-136146 +136145-136146 +136147-136151 +136148-136151 +136149-136151 +136150-136151 +136152-136158 +136152-136153 +136153 +136154-136158 +136154-136155 +136156-136158 +136157-136158 +136159-136217 +136159-136217 +136160-136217 +136161-136217 +136161-136166 +136161-136162 +136164-136166 +136165-136166 +136167-136217 +136168-136217 +136169-136171 +136170-136171 +136172-136217 +136173-136179 +136174-136179 +136174-136175 +136176-136179 +136177-136179 +136178-136179 +136180-136217 +136180-136188 +136180 +136181-136188 +136182-136188 +136183-136188 +136184-136188 +136184-136186 +136185-136186 +136187-136188 +136189-136217 +136190-136217 +136191-136217 +136191-136192 +136193-136195 +136194-136195 +136196-136198 +136197-136198 +136199-136206 +136200-136206 +136201-136206 +136202-136206 +136203-136206 +136204-136206 +136205-136206 +136207-136217 +136208-136217 +136209-136217 +136210-136217 +136210-136213 +136210-136211 +136212-136213 +136214-136217 +136215-136217 +136216-136217 +136218-136245 +136218-136245 +136219-136245 +136220-136245 +136220-136230 +136220-136221 +136222-136226 +136223-136226 +136224-136226 +136225-136226 +136227-136230 +136228-136230 +136229-136230 +136232-136245 +136233-136234 +136235-136245 +136235-136240 +136236-136240 +136237-136240 +136238-136240 +136239-136240 +136241-136245 +136242-136245 +136243-136245 +136244-136245 +136246-136275 +136246-136275 +136247-136275 +136247-136249 +136248-136249 +136250-136275 +136251-136275 +136251-136252 +136253-136260 +136253-136254 +136255-136260 +136256-136260 +136257-136258 +136259-136260 +136261-136275 +136261-136262 +136264-136275 +136264-136269 +136265-136269 +136266-136269 +136267-136269 +136268-136269 +136270-136275 +136271-136275 +136272-136275 +136273-136275 +136274-136275 +136276-136288 +136276-136288 +136276 +136278-136279 +136280-136288 +136281-136288 +136282-136288 +136283-136288 +136283-136284 +136285-136288 +136286-136288 +136287-136288 +136289-136315 +136289-136315 +136290-136315 +136290-136306 +136290-136291 +136293-136306 +136294-136306 +136294-136300 +136295-136300 +136296-136300 +136297-136300 +136298-136300 +136299-136300 +136301-136306 +136302-136306 +136303-136306 +136304-136306 +136305-136306 +136307-136315 +136308-136315 +136308-136310 +136309-136310 +136312-136315 +136313-136315 +136314-136315 +136316-136334 +136316-136334 +136317-136334 +136318-136334 +136320-136322 +136321-136322 +136323-136334 +136324-136330 +136324-136327 +136325-136327 +136326-136327 +136328-136330 +136329-136330 +136331-136334 +136332-136334 +136333-136334 +136335-136376 +136335-136376 +136336-136376 +136336-136371 +136336-136365 +136336-136353 +136336-136348 +136337-136348 +136337-136342 +136337-136338 +136339-136342 +136340-136342 +136341-136342 +136343-136348 +136345-136348 +136346-136348 +136347-136348 +136349-136353 +136350-136353 +136352-136353 +136354-136365 +136355-136365 +136355-136359 +136357-136359 +136358-136359 +136360-136365 +136361-136365 +136361 +136362-136365 +136363-136365 +136364-136365 +136366-136371 +136367-136371 +136370-136371 +136372-136376 +136373-136376 +136374-136376 +136375-136376 +136377-136383 +136377-136383 +136377-136378 +136380-136383 +136382-136383 +136384-136432 +136384-136432 +136385-136432 +136385-136409 +136385-136394 +136385-136386 +136387-136394 +136388-136394 +136388-136390 +136389-136390 +136391-136394 +136392-136394 +136395-136409 +136396-136409 +136396-136409 +136397-136409 +136398-136409 +136399-136409 +136400-136409 +136400-136403 +136401-136403 +136402-136403 +136404-136409 +136405-136409 +136406-136409 +136407-136409 +136408-136409 +136410-136432 +136411-136432 +136411-136419 +136414-136419 +136414-136415 +136416-136419 +136417-136419 +136418-136419 +136420-136432 +136421-136432 +136423-136424 +136425-136432 +136425-136427 +136426-136427 +136428-136432 +136429-136432 +136430-136432 +136431-136432 +136433-136441 +136433-136441 +136434-136441 +136434 +136435-136441 +136436-136441 +136437-136439 +136438-136439 +136440-136441 +136442-136452 +136442-136452 +136442-136445 +136443-136445 +136444-136445 +136448-136452 +136449-136452 +136450-136452 +136451-136452 +136453-136457 +136453-136457 +136454-136457 +136455-136457 +136456-136457 +136458-136468 +136458-136468 +136458-136460 +136459-136460 +136461-136468 +136462-136468 +136464-136468 +136465-136468 +136466-136468 +136467-136468 +136469-136491 +136469-136491 +136469-136476 +136469-136470 +136471-136473 +136472-136473 +136477-136491 +136478-136491 +136478-136484 +136479-136484 +136480-136484 +136480-136481 +136482-136484 +136483-136484 +136485-136491 +136486-136491 +136487-136488 +136489-136491 +136490-136491 +136492-136534 +136492-136534 +136493-136534 +136493-136497 +136494-136497 +136495-136497 +136496-136497 +136498-136534 +136498-136504 +136499-136500 +136501-136504 +136502-136504 +136503-136504 +136505-136534 +136506-136534 +136507-136520 +136508-136520 +136508-136516 +136508-136509 +136510-136516 +136511-136516 +136512-136516 +136513-136516 +136514-136516 +136515-136516 +136517-136520 +136518-136520 +136519-136520 +136521-136525 +136523-136525 +136524-136525 +136526-136534 +136526-136529 +136527-136529 +136528-136529 +136530-136534 +136531-136534 +136532-136534 +136533-136534 +136535-136552 +136535-136552 +136536-136552 +136536-136541 +136537-136541 +136538-136541 +136539-136541 +136540-136541 +136542-136552 +136543-136552 +136544-136552 +136544-136547 +136545-136547 +136546-136547 +136548-136552 +136549-136552 +136549-136550 +136551-136552 +136552 +136553-136561 +136553-136561 +136554-136561 +136554-136558 +136556-136558 +136557-136558 +136559-136561 +136560-136561 +136562-136592 +136562-136592 +136563-136592 +136563-136582 +136563-136567 +136563-136564 +136565-136567 +136566-136567 +136569-136582 +136570-136582 +136571-136582 +136571-136575 +136572-136575 +136573-136575 +136574-136575 +136576-136582 +136577-136582 +136578-136579 +136581-136582 +136583-136592 +136584-136592 +136585-136587 +136586-136587 +136588-136592 +136589-136592 +136590-136592 +136591-136592 +136593-136617 +136593-136617 +136594-136617 +136595-136617 +136595-136597 +136595-136596 +136598-136617 +136599-136617 +136599-136602 +136600-136602 +136601-136602 +136603-136617 +136603-136612 +136603-136606 +136604-136606 +136605-136606 +136608-136612 +136608-136609 +136610-136612 +136611-136612 +136613-136617 +136614-136617 +136618-136633 +136618-136633 +136619-136633 +136619-136630 +136620-136630 +136620-136626 +136620-136621 +136622-136626 +136622-136623 +136624-136626 +136625-136626 +136628-136630 +136629-136630 +136631-136633 +136632-136633 +136634-136641 +136634-136641 +136635-136641 +136635-136636 +136638-136641 +136640-136641 +136642-136655 +136642-136655 +136643-136655 +136644-136645 +136646-136651 +136647-136651 +136648-136651 +136649-136651 +136650-136651 +136652-136655 +136653-136655 +136654-136655 +136656-136683 +136656-136683 +136657-136683 +136657-136676 +136657-136664 +136658-136659 +136660-136664 +136660-136661 +136662-136664 +136663-136664 +136665-136676 +136666-136676 +136666-136670 +136666-136667 +136668-136670 +136669-136670 +136672-136676 +136672-136673 +136674-136676 +136675-136676 +136677-136683 +136678-136683 +136680-136683 +136681-136683 +136682-136683 +136684-136695 +136684-136695 +136685-136695 +136685-136689 +136685-136686 +136687-136689 +136688-136689 +136691-136695 +136692-136695 +136693-136695 +136694-136695 +136696-136705 +136696-136705 +136697-136704 +136697-136700 +136698-136700 +136699-136700 +136701-136704 +136702-136704 +136703-136704 +136706-136722 +136706-136722 +136707-136722 +136707-136716 +136708-136716 +136711-136716 +136711-136715 +136712-136715 +136713-136715 +136714-136715 +136717-136722 +136718-136722 +136719-136722 +136720-136722 +136721-136722 +136723-136744 +136723-136744 +136724-136744 +136724-136729 +136725-136729 +136725-136726 +136727-136729 +136728-136729 +136730-136744 +136731-136744 +136731-136738 +136731-136737 +136731-136733 +136732-136733 +136734-136737 +136735-136737 +136736-136737 +136739-136744 +136740-136744 +136740-136741 +136745-136766 +136745-136766 +136746-136766 +136747-136766 +136747-136752 +136747-136750 +136748-136750 +136749-136750 +136751-136752 +136754-136756 +136755-136756 +136757-136759 +136758-136759 +136760-136766 +136761-136766 +136762-136766 +136763-136766 +136764-136766 +136765-136766 +136767-136821 +136767-136821 +136768-136821 +136769-136821 +136769-136770 +136771-136773 +136772-136773 +136775-136821 +136776-136798 +136776-136786 +136776-136782 +136776-136779 +136777-136779 +136778-136779 +136780-136782 +136781-136782 +136783-136786 +136784-136786 +136785-136786 +136787-136798 +136788-136798 +136788-136791 +136789-136790 +136792-136798 +136793-136798 +136793-136795 +136794-136795 +136796-136797 +136799-136821 +136800-136821 +136800-136806 +136801-136802 +136803-136806 +136804-136806 +136805-136806 +136807-136821 +136808-136821 +136808-136812 +136808-136809 +136813-136821 +136814-136821 +136814-136818 +136815-136816 +136817-136818 +136822-136825 +136822-136825 +136823-136825 +136823-136824 +136826-136836 +136826-136836 +136827-136836 +136828-136832 +136829-136832 +136830-136832 +136831-136832 +136833-136836 +136837-136847 +136837-136847 +136838-136847 +136839-136847 +136840-136847 +136841-136847 +136841-136843 +136842-136843 +136844-136846 +136845-136846 +136848-136851 +136848-136851 +136849-136851 +136851 +136852-136862 +136852-136862 +136853-136862 +136853-136857 +136853-136854 +136855-136857 +136856-136857 +136858-136862 +136858-136859 +136860-136862 +136861-136862 +136863-136874 +136863-136874 +136864-136865 +136865 +136867-136873 +136868-136873 +136869-136873 +136870-136873 +136871-136873 +136872-136873 +136875-136887 +136875-136887 +136875-136878 +136875-136876 +136876 +136879-136887 +136880-136887 +136880-136882 +136883-136887 +136884-136887 +136888-136923 +136888-136923 +136889-136923 +136889-136906 +136889-136906 +136889-136890 +136891-136892 +136893-136894 +136894 +136895-136896 +136897-136898 +136899-136900 +136901-136902 +136903-136906 +136904-136906 +136905-136906 +136907-136909 +136908-136909 +136910-136917 +136911-136917 +136911-136912 +136913-136917 +136914-136917 +136915-136917 +136916-136917 +136918-136923 +136920-136923 +136921-136923 +136922-136923 +136924-136956 +136924-136956 +136925-136956 +136925-136942 +136926-136942 +136927-136942 +136928-136942 +136928-136930 +136929-136930 +136931-136942 +136932-136942 +136933-136942 +136933-136935 +136934-136935 +136936-136942 +136937-136942 +136938-136942 +136939-136942 +136940-136942 +136941-136942 +136943-136956 +136944-136956 +136945-136946 +136947-136956 +136948-136956 +136948 +136949-136956 +136951-136956 +136951-136952 +136953-136956 +136954-136956 +136955-136956 +136957-136986 +136957-136986 +136958-136986 +136958-136966 +136960-136961 +136962-136966 +136963-136966 +136964-136966 +136965-136966 +136967-136986 +136968-136986 +136970-136986 +136970-136974 +136970-136973 +136971-136973 +136972-136973 +136976-136978 +136977-136978 +136979-136981 +136980-136981 +136982-136986 +136983-136986 +136984-136986 +136985-136986 +136987-136996 +136987-136996 +136987-136989 +136988-136989 +136991-136992 +136993-136996 +136994-136996 +136994-136996 +136994-136995 +136996 +136997-137020 +136997-137020 +136997-137001 +136998-137001 +136999-137001 +137000-137001 +137002-137020 +137002-137004 +137003-137004 +137005-137020 +137006-137020 +137006-137010 +137006-137008 +137007-137008 +137009-137010 +137011-137020 +137012-137020 +137013-137020 +137014-137020 +137016-137020 +137017-137020 +137018-137020 +137019-137020 +137021-137039 +137021-137039 +137021-137024 +137021-137022 +137023-137024 +137025-137029 +137026-137029 +137026-137027 +137028-137029 +137030-137034 +137031-137034 +137031-137032 +137033-137034 +137035-137039 +137036-137039 +137036-137037 +137038-137039 +137040-137057 +137040-137057 +137041-137057 +137041-137047 +137041-137044 +137042-137044 +137043-137044 +137046-137047 +137048-137057 +137049-137057 +137049-137050 +137051-137057 +137052-137057 +137053-137057 +137054-137057 +137055-137057 +137056-137057 +137058-137078 +137058-137078 +137059-137078 +137059-137062 +137060-137062 +137061-137062 +137064-137066 +137065-137066 +137067-137078 +137068-137078 +137069-137078 +137069-137070 +137071-137074 +137072-137074 +137073-137074 +137075-137078 +137076-137078 +137077-137078 +137079-137090 +137079-137090 +137080-137090 +137080-137083 +137080-137081 +137084-137090 +137085-137090 +137085-137087 +137086-137087 +137088-137090 +137089-137090 +137091-137100 +137091-137100 +137092-137100 +137093-137094 +137095-137096 +137097-137100 +137098-137100 +137099-137100 +137101-137111 +137101-137111 +137101-137109 +137101-137108 +137101-137102 +137103-137105 +137104-137105 +137106-137108 +137107-137108 +137112-137125 +137112-137125 +137113-137125 +137114-137116 +137115-137116 +137117-137120 +137117-137119 +137121-137125 +137121-137122 +137123-137125 +137126-137140 +137126-137140 +137127-137140 +137127-137132 +137127-137131 +137128-137131 +137129-137131 +137130-137131 +137133-137140 +137134-137140 +137134-137137 +137134-137135 +137136-137137 +137138-137140 +137139-137140 +137141-137150 +137141-137150 +137141-137146 +137142-137146 +137143-137146 +137144-137146 +137145-137146 +137147-137149 +137148-137149 +137151-137188 +137151-137188 +137151-137155 +137151-137154 +137152-137154 +137153-137154 +137156-137158 +137156-137157 +137159-137161 +137159-137160 +137162-137164 +137162-137163 +137165-137167 +137165-137166 +137168-137170 +137168-137169 +137171-137173 +137171-137172 +137174-137176 +137174-137175 +137177-137179 +137177-137178 +137180-137182 +137180-137181 +137183-137185 +137183-137184 +137186-137188 +137186-137187 +137189-137203 +137189-137203 +137190-137203 +137190-137194 +137190-137192 +137191-137192 +137193-137194 +137195-137203 +137196-137199 +137197-137199 +137198-137199 +137201-137203 +137202-137203 +137204-137213 +137204-137213 +137205-137213 +137205-137208 +137206-137208 +137207-137208 +137209-137210 +137211-137213 +137212-137213 +137214-137232 +137214-137232 +137215-137232 +137215-137219 +137218-137219 +137220-137232 +137221-137232 +137221-137229 +137221-137226 +137221-137222 +137223-137226 +137223-137224 +137225-137226 +137227-137229 +137228-137229 +137230-137231 +137233-137259 +137233-137259 +137234-137259 +137234-137246 +137234-137235 +137238-137243 +137239-137243 +137239-137240 +137241-137243 +137242-137243 +137244-137246 +137245-137246 +137247-137259 +137248-137259 +137248-137253 +137248-137251 +137249-137251 +137250-137251 +137254-137259 +137255-137259 +137255-137257 +137256-137257 +137258-137259 +137260-137267 +137260-137267 +137261-137267 +137262-137263 +137264-137267 +137265-137267 +137266-137267 +137268-137278 +137268-137278 +137269-137278 +137269-137272 +137270-137272 +137271-137272 +137274-137276 +137275-137276 +137277-137278 +137279-137291 +137279-137291 +137280-137291 +137280-137286 +137280-137282 +137281-137282 +137283-137284 +137287-137291 +137288-137291 +137292-137302 +137292-137302 +137293-137302 +137294-137300 +137294-137298 +137294-137295 +137296-137298 +137297-137298 +137299-137300 +137301-137302 +137303-137327 +137303-137327 +137304-137327 +137304-137305 +137307-137308 +137309-137316 +137310-137316 +137311-137316 +137312-137316 +137313-137316 +137314-137316 +137315-137316 +137317-137327 +137318-137327 +137319-137327 +137320-137327 +137321-137327 +137322-137327 +137323-137327 +137324-137327 +137325-137327 +137326-137327 +137328-137345 +137328-137345 +137329-137345 +137331-137345 +137331-137336 +137331-137333 +137332-137333 +137334-137336 +137335-137336 +137338-137345 +137339-137345 +137340-137345 +137341-137345 +137341-137342 +137343-137345 +137344-137345 +137346-137377 +137346-137377 +137346-137368 +137346-137353 +137347-137353 +137348-137353 +137348-137350 +137349-137350 +137351-137353 +137352-137353 +137354-137356 +137355-137356 +137357-137368 +137357-137361 +137357-137358 +137359-137361 +137360-137361 +137362-137368 +137362-137364 +137363-137364 +137366-137368 +137367-137368 +137369-137377 +137370-137377 +137370-137373 +137371-137373 +137372-137373 +137374-137377 +137375-137377 +137376-137377 +137378-137383 +137378-137383 +137379-137383 +137379-137380 +137384-137413 +137384-137413 +137385-137413 +137385-137394 +137385-137391 +137386-137391 +137387-137391 +137387-137388 +137389-137391 +137390-137391 +137392-137393 +137395-137413 +137396-137413 +137396-137405 +137396-137400 +137396-137398 +137397-137398 +137401-137405 +137402-137405 +137403-137405 +137404-137405 +137406-137413 +137407-137413 +137407-137409 +137408-137409 +137410-137413 +137411-137413 +137412-137413 +137414-137441 +137414-137441 +137415-137441 +137415-137434 +137415-137418 +137419-137434 +137420-137434 +137422-137427 +137423-137427 +137423-137424 +137425-137427 +137426-137427 +137428-137434 +137429-137434 +137429-137431 +137430-137431 +137433-137434 +137435-137441 +137436-137441 +137437-137441 +137438-137441 +137439-137441 +137440-137441 +137442-137472 +137442-137472 +137443-137472 +137445-137472 +137445-137450 +137445-137447 +137446-137447 +137448-137450 +137449-137450 +137451-137472 +137452-137472 +137452-137459 +137452-137453 +137454-137459 +137455-137459 +137456-137459 +137457-137459 +137458-137459 +137461-137463 +137462-137463 +137464-137472 +137465-137467 +137466-137467 +137468-137472 +137468-137471 +137470-137471 +137473-137476 +137473-137476 +137474-137476 +137477-137486 +137477-137486 +137478-137486 +137479-137486 +137480-137486 +137481-137486 +137482-137486 +137483-137486 +137484-137486 +137484-137485 +137487-137493 +137487-137493 +137487-137488 +137489-137493 +137490-137493 +137490-137492 +137491-137492 +137494-137509 +137494-137509 +137495-137509 +137495-137498 +137496-137498 +137496 +137497-137498 +137498 +137499-137509 +137500-137509 +137501-137509 +137502-137509 +137503-137509 +137504-137509 +137504-137505 +137506-137509 +137507-137509 +137510-137534 +137510-137534 +137511-137534 +137513-137534 +137513-137531 +137513-137514 +137514 +137515-137531 +137516-137531 +137517-137531 +137518-137523 +137519-137523 +137519-137521 +137520-137521 +137522-137523 +137524-137531 +137525-137531 +137526-137531 +137527-137531 +137528-137531 +137529-137531 +137529-137530 +137532-137534 +137532-137533 +137535-137551 +137535-137551 +137536-137551 +137538-137551 +137540-137546 +137541-137546 +137542-137546 +137543-137546 +137544-137546 +137544-137545 +137547-137551 +137548-137551 +137548-137549 +137552-137571 +137552-137571 +137552-137560 +137552-137555 +137552-137553 +137553 +137556-137560 +137557-137560 +137557-137558 +137561-137571 +137562-137571 +137562-137566 +137562-137563 +137567-137571 +137568-137571 +137568-137569 +137572-137587 +137572-137587 +137572-137574 +137575-137587 +137576-137587 +137576-137578 +137577-137578 +137579-137580 +137581-137587 +137583-137587 +137584-137587 +137584-137586 +137585-137586 +137588-137603 +137588-137603 +137589-137603 +137589-137593 +137589-137590 +137591-137593 +137592-137593 +137594-137598 +137594-137595 +137596-137598 +137597-137598 +137599-137603 +137599-137600 +137601-137603 +137602-137603 +137604-137626 +137604-137626 +137605-137626 +137606-137626 +137606-137609 +137607-137609 +137608-137609 +137610-137626 +137611-137626 +137611-137619 +137612-137614 +137613-137614 +137615-137619 +137616-137619 +137617-137619 +137618-137619 +137620-137626 +137621-137626 +137621-137622 +137624-137626 +137625-137626 +137627-137647 +137627-137647 +137628-137647 +137628-137629 +137630-137632 +137631-137632 +137633-137635 +137634-137635 +137636-137638 +137637-137638 +137639-137641 +137640-137641 +137642-137647 +137643-137647 +137644-137647 +137644-137646 +137645-137646 +137648-137659 +137648-137659 +137648-137649 +137651-137653 +137652-137653 +137654-137659 +137657-137659 +137658-137659 +137660-137673 +137660-137673 +137662-137673 +137662-137667 +137662-137666 +137662-137663 +137664-137666 +137665-137666 +137668-137673 +137669-137673 +137669-137671 +137670-137671 +137672-137673 +137674-137681 +137674-137681 +137675-137681 +137675-137679 +137675-137676 +137677-137679 +137678-137679 +137681 +137682-137686 +137682-137686 +137683-137686 +137683-137684 +137684 +137686 +137687-137696 +137687-137696 +137688-137696 +137688-137690 +137688-137689 +137689 +137691-137696 +137691-137692 +137692 +137694-137695 +137697-137708 +137697-137708 +137699-137708 +137700-137708 +137701-137708 +137702-137708 +137703-137708 +137704-137708 +137705-137708 +137706-137708 +137706-137707 +137709-137726 +137709-137726 +137709-137713 +137710-137713 +137712-137713 +137714-137726 +137715-137716 +137717-137718 +137719-137726 +137719-137720 +137721-137726 +137722-137726 +137723-137726 +137724-137726 +137724-137725 +137727-137761 +137727-137761 +137728-137761 +137728-137738 +137729-137738 +137731-137738 +137732-137738 +137733-137738 +137734-137738 +137735-137738 +137736-137738 +137736-137737 +137739-137761 +137740-137741 +137742-137744 +137743-137744 +137745-137761 +137745-137755 +137745-137749 +137746-137749 +137747-137749 +137748-137749 +137750-137755 +137751-137755 +137752-137755 +137753-137755 +137754-137755 +137756-137761 +137757-137761 +137758-137761 +137759-137761 +137759-137760 +137762-137768 +137762-137768 +137763-137765 +137764-137765 +137766-137768 +137766 +137769-137772 +137769-137772 +137769 +137771-137772 +137771-137772 +137773-137779 +137773-137779 +137773-137777 +137774-137777 +137775-137777 +137775-137776 +137778-137779 diff --git a/tf/0.1.1/otext.tf b/tf/0.1.1/otext.tf new file mode 100644 index 0000000..180af42 --- /dev/null +++ b/tf/0.1.1/otext.tf @@ -0,0 +1,15 @@ +@config +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@fmt:text-orig-full={text}{after} +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sectionFeatures=book_short,chapter,verse +@sectionTypes=book,chapter,verse +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + diff --git a/tf/0.1.1/otype.tf b/tf/0.1.1/otype.tf new file mode 100644 index 0000000..d74a5d6 --- /dev/null +++ b/tf/0.1.1/otype.tf @@ -0,0 +1,20 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +1-137779 w +137780-137806 book +137807-138066 chapter +138067 error +138068-146078 sentence +146079-154022 verse +154023-268900 wg diff --git a/tf/0.1.1/person.tf b/tf/0.1.1/person.tf new file mode 100644 index 0000000..bd39ba7 --- /dev/null +++ b/tf/0.1.1/person.tf @@ -0,0 +1,19433 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=person +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +10 third +15 third +20 third +29 third +40 third +45 third +50 third +55 third +60 third +65 third +73 third +81 third +86 third +93 third +102 third +107 third +112 third +117 third +122 third +127 third +132 third +137 third +142 third +147 third +152 third +157 third +162 third +179 third +184 third +189 third +194 third +199 third +204 third +209 third +214 third +219 third +224 third +229 third +234 third +242 third +283 third +295 third +314 third +322 second +327 third +334 second +348 third +350 third +353 second +360 third +371 third +373 third +382 second +387 third +389 third +392 third +398 third +411 third +413 third +419 third +425 third +429 third +432 third +450 second +454 third +459 third +466 first +474 first +482 third +497 third +503 third +506 third +514 third +525 second +533 third +536 third +548 third +561 third +563 second +570 second +second +576 first +583 third +585 second +589 third +593 third +597 third +600 third +607 third +616 third +626 third +633 third +652 third +660 second +663 third +670 second +678 second +682 second +686 first +689 third +700 third +709 third +713 third +720 third +731 first +739 third +743 third +747 third +768 third +773 third +783 third +796 third +800 third +805 second +808 third +817 second +825 second +830 third +840 third +848 third +856 third +864 third +871 third +879 third +885 third +893 third +899 third +910 second +912 third +919 third +932 second +937 second +945 third +963 third +969 third +984 third +1006 third +1011 third +1019 second +1026 second +1031 first +1035 first +1038 third +1058 third +1066 third +1070 third +1074 first +1086 third +1089 first +1096 third +1110 third +1115 third +1125 third +1129 third +1147 third +1152 first +1158 second +1165 third +1167 second +1172 third +1178 third +1185 third +1190 second +third +1195 third +1205 second +1212 third +1220 first +1224 third +1243 third +1248 third +1251 second +1255 second +1261 third +1265 third +third +1271 third +1283 third +1292 third +1300 third +1303 second +1307 second +1311 third +1316 third +1322 third +1326 second +1332 third +1337 third +1339 second +1345 third +1354 third +1366 third +1371 first +1374 second +1377 third +1381 second +1384 third +1389 second +1393 second +1395 third +1400 second +1402 third +1404 third +1410 third +third +1420 third +1431 third +1460 third +1470 third +1474 third +1480 second +1482 third +1494 third +1512 third +1515 third +1517 second +1521 first +1531 third +1536 third +1562 third +1574 third +1577 third +1604 third +1613 third +1630 third +1633 third +1654 third +1661 third +1671 third +1681 third +1691 third +1697 third +1709 third +1715 third +1725 third +1733 third +1741 third +1747 second +1749 third +1752 third +1754 third +1762 second +1764 second +1775 third +1782 second +1791 third +1794 third +1797 third +1808 second +1814 third +1821 third +1824 third +1834 third +1841 third +1849 third +1855 third +1864 second +1866 first +1874 first +1880 first +1884 third +1897 third +1904 third +1908 third +1916 third +1921 third +1930 third +1932 third +1935 third +1942 first +1947 third +1958 second +1964 second +1966 third +1970 second +1974 third +1976 third +1981 first +1991 third +1997 third +2003 third +2009 third +2012 third +2020 second +2028 second +2033 third +2037 second +2046 second +2048 second +2055 second +2059 second +2067 second +2076 third +2089 second +2091 first +2095 second +2099 second +2103 second +2105 third +2107 second +2110 first +2122 third +2135 third +2137 second +2140 second +2144 third +2147 third +2158 third +2167 third +2169 second +2172 second +2176 third +2179 third +2192 third +2194 third +2197 third +2201 third +2206 first +2218 third +2225 third +third +2228 second +2230 third +2234 second +2236 second +2244 first +2254 third +2263 third +2272 third +2282 second +2285 second +2293 third +2308 third +second +2311 third +2321 first +2330 third +2336 second +2351 second +2359 third +2362 second +2369 second +2377 second +second +2380 third +second +2386 second +2392 first +2394 second +2399 second +2405 second +2417 third +2423 third +2430 second +2436 second +2443 third +2446 second +2453 second +2460 third +2462 second +2472 third +2474 second +2492 second +2503 second +2506 second +2512 third +2521 third +2526 first +2528 third +2537 third +2542 third +2547 third +2563 third +2567 second +2569 second +2574 third +2587 third +2591 first +2593 third +2600 second +second +2611 second +2628 third +2633 second +2638 third +2644 third +2647 second +2650 third +2656 second +2664 second +2672 third +2676 third +2680 third +2695 second +2699 second +2707 first +2713 second +2718 second +2725 second +2731 third +2742 second +2749 third +2755 second +2757 second +2763 third +2768 third +2773 first +2775 third +2782 second +2790 second +2793 second +2814 third +2817 second +2827 third +2831 third +2833 third +2835 second +2845 third +2850 third +2852 third +2855 third +2860 third +2869 third +2874 third +2884 third +2891 third +2897 third +2906 third +2911 third +2919 third +2923 third +2926 third +2930 third +2932 second +2939 first +2942 second +2947 second +2950 second +2956 second +2961 third +2969 second +2977 third +2979 third +2981 third +2990 third +2995 second +3002 third +3014 second +second +3021 third +3023 third +3025 third +3027 first +3037 third +3057 third +3065 second +3068 first +3071 first +3074 first +3080 third +3082 third +3089 second +3093 second +3104 third +3108 second +3115 third +3124 second +3127 second +3132 second +second +3138 second +third +3143 second +3161 second +3164 second +3168 second +first +3177 second +3185 second +3195 second +3206 second +3212 second +3221 third +3229 third +3231 second +3233 third +3235 second +3237 second +second +3240 third +3246 third +3250 third +3254 third +3256 third +3262 third +3269 third +3274 third +3277 third +3284 second +3300 third +3309 second +3311 third +3318 second +3322 third +3328 second +3348 third +3368 third +3372 second +3377 third +3385 third +3392 second +3395 third +3409 third +3416 third +3418 third +3436 third +3440 third +3446 second +3455 third +3474 third +3486 first +3492 first +3499 first +3502 first +3506 first +3508 second +3518 third +3524 third +3526 third +3530 third +3538 third +3542 third +3546 third +3550 third +3556 third +3558 third +3574 third +3578 third +3586 third +3590 third +3594 third +3598 third +3603 third +3605 third +3611 third +3613 third +3619 third +3627 third +3645 third +3650 second +3653 third +3658 second +second +3666 third +3669 first +second +3673 third +3678 third +3682 second +3684 second +3686 second +3688 second +3692 second +3696 third +3706 third +3717 third +3724 third +3728 first +3734 third +3737 first +3744 second +3747 second +3750 third +3757 first +3766 first +3768 second +3770 third +3773 second +3775 third +3780 second +3783 third +3788 third +3790 third +3794 first +3803 first +3805 first +3813 third +3815 third +3832 third +3839 third +3848 third +3853 second +3855 second +third +3859 third +3874 third +3882 third +3887 third +3892 third +3894 third +3899 third +3904 third +3913 third +3915 third +3927 third +3931 third +3939 third +3948 third +3951 first +3955 second +3957 third +3964 third +3977 third +3981 third +3986 third +3989 second +4001 third +4003 second +4006 second +4019 third +4025 second +4028 third +4041 third +4044 third +4048 second +first +4051 third +4055 second +4059 third +4066 third +4072 third +4075 third +4085 third +4097 third +4117 second +third +4127 second +4134 third +4145 third +4149 second +4151 second +4159 third +4161 second +4165 third +4170 second +third +4182 third +4189 third +4195 third +4202 second +4206 third +4214 third +4216 third +4225 third +4227 third +4233 second +third +4247 third +4250 second +4252 third +4257 second +4261 third +4265 third +4273 third +4276 second +4284 third +4287 third +4293 second +4295 second +4298 second +4301 third +4312 third +4315 second +second +4321 second +4328 third +4337 third +4339 third +4353 third +4362 third +4364 second +4368 third +4371 third +4378 second +4384 third +4395 third +4406 third +4413 third +4417 third +4426 second +4428 third +4430 first +4436 first +4442 third +4454 first +4460 third +4462 third +4467 third +4477 third +4481 third +4484 third +4491 third +4494 third +4502 third +4512 third +4514 third +4523 third +4529 third +4533 third +4535 third +4543 third +4548 second +4552 third +4560 third +4563 second +4570 third +4575 third +4582 second +4589 third +4596 third +4601 first +4605 first +4613 third +second +4619 third +4622 third +4646 third +second +4650 third +4654 third +4656 third +4660 third +4664 third +4669 third +4673 third +4687 third +4693 second +4702 third +4707 third +4711 second +4713 first +4716 third +4721 third +4730 third +4733 third +4738 third +4743 second +4745 third +4749 third +4759 second +third +4768 third +4772 third +4777 third +4785 third +4791 third +4795 third +4826 third +4830 third +4840 third +4853 second +4859 third +4871 third +4892 third +4942 third +4952 second +4958 second +4960 second +4971 second +4974 third +4980 second +4982 second +4984 second +4986 second +4988 second +4990 second +4992 second +5027 second +second +5033 third +5035 second +5038 second +5044 second +5049 third +5053 third +5062 third +5069 third +5074 third +5077 third +5089 second +5096 first +5099 third +5111 second +5113 first +5121 second +5132 second +5137 third +5146 third +5154 second +5165 third +5168 second +5172 second +5174 third +5181 second +5185 second +5199 third +5208 third +5213 third +5216 second +5230 third +5233 third +5239 second +5245 first +5249 second +5255 third +5261 third +5276 third +5292 third +5300 second +5304 third +5308 third +5313 third +5315 first +5320 second +5329 second +second +5336 second +5349 second +5364 third +5370 third +5387 third +5390 second +5393 second +5398 third +5404 first +5419 third +5424 first +5436 second +5438 first +5445 first +5451 first +5485 third +5497 third +5503 third +5508 third +5512 third +5520 third +5530 third +5536 third +5541 third +5553 third +5563 third +5567 third +5579 first +5583 third +5588 third +5590 third +5598 third +5624 third +5627 second +5632 first +5637 third +5640 second +5643 second +5645 second +5647 third +5650 third +5652 third +5655 third +5658 third +5661 third +5664 third +5668 third +5674 third +5684 second +5695 second +5700 second +5712 second +5716 first +5722 third +5725 third +second +5728 first +5736 third +5743 first +5746 third +5764 third +5778 third +5781 third +5792 third +5795 second +5798 third +5806 third +5809 first +5814 third +5825 first +5829 second +first +5833 second +5835 third +5842 third +5844 third +third +5854 third +second +5865 third +5873 third +5879 third +5886 third +5899 third +5912 third +5914 first +5920 third +5932 second +5935 second +5940 third +5948 third +5953 first +5959 third +5972 third +first +5983 second +5990 second +5999 third +6004 third +6011 third +6022 third +6031 third +6034 second +6043 first +6045 second +6052 second +6056 first +6063 second +6078 third +6083 third +6095 third +6097 third +6106 third +6108 second +6112 third +6116 third +6121 third +6124 second +6126 third +6129 third +6135 third +6146 third +6151 third +6164 second +6178 third +6181 third +6183 first +6189 third +6193 second +6195 third +6197 first +6203 second +6207 third +6218 third +6224 second +6230 third +6234 third +6239 third +6243 third +6246 third +6251 third +6256 third +6263 third +6266 third +6269 third +6273 third +6279 third +6282 second +6287 third +6289 third +6299 third +6304 third +6309 third +6312 third +6316 third +6320 third +6326 third +6328 third +6336 second +6341 first +6346 third +6350 first +6360 third +6362 third +6364 third +6366 third +6377 third +6382 third +6385 third +6395 third +6397 third +6404 third +6413 third +6418 third +6421 third +6429 third +6432 third +6448 third +6455 third +6465 third +6472 third +6475 third +6478 third +6487 first +6495 third +6501 third +6508 first +6512 third +6521 third +6537 third +6545 third +6553 third +6560 third +6563 first +6569 third +6578 third +6582 third +6589 third +6594 third +6601 third +6613 second +6623 second +6638 third +6642 second +6655 third +6663 third +6673 third +6676 first +6683 third +6686 third +6698 second +6704 second +6706 third +6715 first +6723 third +6730 third +6734 third +6745 third +6758 third +6775 third +6784 third +6787 third +6793 second +6799 third +6808 third +6811 third +6822 second +6831 third +6835 third +6843 third +6845 third +6850 first +6852 first +6855 third +6862 third +6864 third +6874 third +6877 third +6887 third +6899 second +6906 third +6912 third +6915 second +6924 third +6931 third +6936 third +6942 third +6955 third +second +6967 third +6983 third +6993 third +6998 third +7016 third +7018 third +7024 second +third +7037 third +7045 third +7049 third +7055 third +7060 third +7070 third +7077 third +7080 third +7085 third +7089 third +7093 third +7100 third +7114 third +7119 third +7125 second +7130 third +7133 third +7144 third +7147 third +third +7151 third +7155 third +7158 third +third +7167 first +7171 third +7175 third +7177 third +7179 third +7187 second +7191 second +7194 second +7198 second +7200 third +7210 third +7215 third +7218 third +7224 third +7228 third +7230 third +7232 first +7240 third +7246 third +7249 first +7256 third +7259 second +7262 third +7266 second +7269 third +7272 second +7286 third +7290 third +7298 third +7311 third +7324 third +7330 third +7340 third +7348 third +7363 third +7368 third +7377 third +7386 third +7389 third +7400 third +7403 third +7422 third +7427 third +7434 third +7437 third +7442 third +7444 third +7454 third +7460 second +7467 third +7471 third +7476 third +7481 third +7483 second +7485 first +7489 third +7496 second +7501 second +7512 first +7515 second +7520 second +7531 second +7538 third +7542 third +7552 third +7560 third +7566 third +7570 third +7572 third +7588 third +7591 third +7600 third +7607 third +7611 third +7622 third +7625 third +7632 first +7638 first +7646 third +7651 third +7657 second +7668 third +7674 third +7682 third +7690 third +7698 third +7709 third +7717 third +7722 third +7725 third +7730 third +7732 third +7738 third +7747 third +7761 third +7769 third +7780 third +7793 third +7795 third +7808 third +7814 third +7816 third +7818 third +7820 third +7826 third +7841 third +7844 third +7846 third +7850 third +7867 third +7874 third +7883 third +7885 third +7891 third +7895 third +7903 third +7911 third +7919 second +7922 third +7927 third +7939 third +7943 third +7952 third +7954 third +7960 third +7968 third +7989 third +7998 third +8019 third +8026 third +8032 third +8035 third +8050 third +8062 third +8070 third +8075 third +8080 third +8089 third +8098 third +8102 third +8112 third +8117 third +8125 third +8132 third +8138 third +8147 third +8153 third +8158 third +8166 third +second +8187 third +8191 third +8197 third +8204 third +8208 third +8217 third +8221 third +8225 third +8232 third +8245 third +8253 third +8257 third +8261 third +8268 third +8274 third +8281 third +8283 second +8291 third +8297 third +8301 third +8303 second +8309 third +8312 first +8323 third +second +8348 third +8351 third +8362 third +8365 third +8367 third +8378 third +8388 third +8403 third +8410 third +8421 third +8432 third +8438 third +8447 third +8463 third +8467 third +8472 third +8475 third +8480 second +8482 first +8484 second +8490 third +8494 second +second +8505 third +second +8513 third +8518 third +8526 third +8530 third +8533 second +8542 third +8545 third +8550 second +8557 third +8565 third +8571 second +8574 third +8588 third +8595 third +8602 third +8606 third +8614 third +third +8617 third +8631 third +8638 third +8643 third +8647 third +8653 second +8665 third +second +8679 third +8682 second +8685 third +8696 second +8699 third +8708 second +8719 third +8730 third +8736 third +8741 third +8751 third +8753 second +8755 second +8762 third +8772 third +8779 third +8781 second +8788 third +8792 third +8797 third +8803 third +second +8806 third +8814 third +8818 third +8823 third +8825 second +8831 third +8836 second +8838 second +8849 third +8853 third +8863 third +8865 third +8872 third +8882 third +8893 third +8901 third +8909 second +8917 third +8919 second +8928 third +8932 third +8940 third +8943 second +8946 third +8952 third +8954 first +8967 third +8971 second +8976 third +8978 third +8991 third +8998 third +9014 third +9022 third +9025 second +9027 third +9040 third +9051 third +9054 third +9069 third +9076 third +9094 third +9105 third +first +9114 third +9118 third +9120 third +9126 first +9129 third +9134 third +9149 third +9155 second +9158 third +9171 third +9180 third +9182 third +9191 third +9194 third +9203 third +9207 third +9218 third +9223 third +9235 third +9246 third +9250 second +9253 third +9261 third +9271 second +9278 second +9284 third +9288 third +9298 third +9306 third +9312 third +9314 second +9316 second +9326 third +9333 first +9338 third +9340 second +9347 second +9349 second +9351 second +9360 second +9370 second +9373 second +9378 first +9381 second +9390 third +9393 third +9418 third +9423 third +9434 third +9450 third +9457 second +9462 third +9464 second +9477 third +9480 second +9488 third +9501 first +9504 second +9511 first +9519 third +9521 first +9532 second +9536 third +9544 second +9548 third +9554 third +9559 third +9562 third +9567 third +9575 third +9602 third +9611 third +9617 third +9620 second +9626 second +9629 second +9640 third +9646 third +9650 third +9653 third +9658 third +9663 third +9668 third +9673 third +9679 third +9683 third +9689 third +9694 third +9697 third +9704 third +9722 third +9729 first +9732 third +9740 third +9744 third +9758 third +9771 third +9779 third +9783 third +9794 third +9800 second +third +9813 third +9818 third +9823 second +first +9839 second +9842 third +9845 second +9852 third +9860 first +second +9867 third +9872 third +9875 third +9881 third +second +9885 second +9892 third +9904 third +9910 second +9921 third +9923 third +9932 third +9934 third +9941 third +9944 third +9946 third +9949 first +9954 third +9957 third +9960 third +9964 third +9971 third +9976 third +9984 third +9991 third +9999 second +10004 third +10007 third +10010 third +10020 first +10027 third +10034 third +10044 first +10047 first +10049 second +10054 third +10059 third +10065 third +10080 third +10085 first +10090 third +10098 first +10101 second +10106 second +10110 second +10114 third +10117 third +10125 third +10129 third +10139 third +10145 third +10147 third +10154 third +10162 third +10167 third +10169 third +10176 third +10183 third +10191 third +10208 third +10214 third +10220 first +10225 second +10232 second +10238 second +10242 second +10252 third +10261 third +10270 third +10276 third +10278 first +10282 second +10284 second +10290 second +10298 third +10305 third +10316 third +10325 third +10329 third +10338 third +10341 third +10349 third +10374 third +10384 third +10386 second +10389 second +10394 third +10420 third +10422 second +10425 second +10430 third +10446 second +10448 second +10454 first +10464 third +10475 third +10477 third +10483 third +10488 third +10497 third +10502 third +10506 first +10509 third +10523 third +10533 third +10540 third +10544 second +second +10554 third +second +10562 third +second +10577 third +10582 third +10584 second +10592 third +third +10602 first +10606 second +10610 third +10617 second +10621 third +10627 first +10634 third +10643 third +third +10655 third +10665 first +10673 third +10677 third +10684 first +10688 third +10693 first +10703 third +10711 third +10722 third +10733 third +10747 third +10754 third +10757 second +10762 first +10771 third +10776 third +10783 third +10789 third +10796 third +10798 second +10801 second +10807 third +10810 second +10814 first +10819 third +10822 third +10827 third +10837 third +10841 third +10854 third +10862 first +10865 second +10868 third +10878 first +10884 third +10890 third +10902 third +10906 second +10916 third +10918 third +10924 third +10929 third +10939 third +10944 third +10948 third +10956 third +10967 third +10969 second +10978 third +10981 third +10984 third +10992 third +10997 third +11005 third +11014 third +11017 third +third +11023 third +11029 third +11037 third +11047 third +11050 first +11055 third +11063 third +11065 third +third +11072 third +11081 third +11085 third +11089 third +11095 third +11097 third +11103 third +11106 third +11109 third +11114 third +11117 third +11127 third +11129 third +11135 third +11138 third +11142 third +11147 third +second +11153 second +11161 third +11171 third +11174 second +11178 third +11182 first +11184 first +11189 third +11193 second +11198 third +11203 second +11208 second +11211 third +11217 third +11220 second +11222 second +11224 second +11226 second +second +11234 second +11240 third +11246 first +11249 first +third +11255 second +11258 second +second +11264 second +11267 second +11272 second +second +11281 third +11284 third +11291 third +11296 first +11301 third +11309 first +11312 third +11329 third +11334 third +11340 third +11346 third +11356 third +11358 second +11360 first +11363 first +11367 third +11372 third +11375 first +11386 third +11395 second +11410 third +11429 third +11433 third +11437 third +11444 third +11452 third +11470 third +11481 third +11490 third +second +11500 third +11502 first +11506 third +11515 third +11522 third +11526 third +11530 second +11535 third +11540 third +third +11543 second +11552 third +11560 second +11564 second +11581 third +11588 third +11591 third +11593 third +11601 third +11611 third +11615 second +11631 third +11634 first +11638 second +11640 second +11644 second +11646 first +11655 third +11658 first +11668 third +11672 first +11674 third +11688 third +11697 third +11699 second +first +11708 third +11714 third +11719 third +11734 third +11736 third +11755 third +11758 second +third +11761 second +11763 third +11785 third +11787 second +11789 second +second +11797 first +third +11800 first +third +11807 second +11818 third +11824 third +11833 third +11843 third +second +11850 third +11855 third +11859 third +11865 third +11870 third +11876 third +11881 third +11890 third +11907 third +11912 second +11922 third +third +11925 second +11933 third +11936 third +11940 third +11942 second +11951 third +11954 third +second +11957 first +11959 third +11963 third +11971 third +11977 third +11979 third +11983 third +11987 third +11997 third +12002 second +12011 second +12019 second +12025 third +12027 second +12033 third +12036 third +12040 third +12042 third +12049 second +12053 second +12057 third +12076 third +12080 third +12087 third +12093 third +12100 third +12109 third +12115 third +12128 third +12149 third +12155 third +12160 third +12162 third +12172 third +12178 third +12188 third +12201 third +12203 third +12209 third +12213 second +12217 third +12226 third +12238 third +12253 third +12255 third +12257 second +12260 third +12264 third +12268 second +12275 second +12280 third +12287 third +12295 third +12303 third +12308 third +12316 third +12323 third +12328 third +12336 third +12340 third +12347 third +12350 first +12353 second +12357 second +12363 second +12369 second +second +12372 second +12376 third +12381 second +12386 second +12393 third +12408 second +12412 third +12420 third +12422 first +12429 second +12433 first +12438 first +12444 third +12452 third +12457 first +12460 third +12466 second +12470 first +12473 first +12480 third +12487 third +12489 first +third +12496 first +12502 first +12506 third +12508 third +12514 third +12516 second +12518 second +12525 third +12530 third +12535 third +12540 third +12542 first +12545 third +12550 third +12555 third +12558 third +12563 first +12571 third +12579 third +12588 second +12596 third +12602 second +12609 second +12611 third +12614 third +12619 third +12621 third +12626 third +12629 third +12633 third +12636 third +12641 third +12661 third +12664 third +12667 third +12669 third +12676 third +12681 third +12688 third +12698 third +12702 third +12705 second +first +12709 first +12716 third +12721 third +12724 third +12730 third +12734 third +12738 third +12743 third +12747 third +12755 third +12760 second +12766 third +12770 third +12776 third +12779 third +12786 first +12789 third +12797 third +12810 third +12815 third +third +12828 third +12832 third +12837 third +12844 third +12850 third +12855 third +12863 third +12869 third +12881 third +12884 third +12888 second +12891 second +12895 first +12906 second +12913 third +12933 third +12935 third +12939 third +12945 third +12953 third +12955 third +12963 third +12968 third +12971 second +12980 second +second +12993 third +12996 third +13002 third +13013 third +13021 third +13025 second +13033 third +13037 third +13045 second +13053 third +13063 third +13073 third +13076 third +13080 third +13090 first +13093 second +13101 second +13104 third +13110 second +13115 second +13119 third +third +13133 third +13136 second +13138 second +13146 third +13150 third +13159 third +13162 third +13165 second +13177 third +13181 third +13186 third +13194 third +13199 third +13202 third +13206 third +13214 third +13220 third +13229 third +13234 third +13254 third +13265 third +13268 third +13274 third +13276 second +13291 third +13293 third +13300 third +13308 second +13317 first +13330 third +13340 third +13350 third +13353 third +13358 third +13374 third +13376 second +13399 third +13408 second +13422 third +13430 third +13437 third +13443 third +third +13448 third +13455 third +13459 third +13464 second +13470 first +13481 third +13487 third +13490 third +13495 third +13507 third +13519 third +13529 third +13531 second +13533 second +13540 second +13542 third +13545 third +13547 third +13551 third +13563 third +13571 third +13578 third +13583 third +13587 third +13614 second +13618 third +13626 second +13631 second +13637 third +13644 second +13649 third +13657 third +13662 third +13664 third +13667 third +13669 third +13678 second +13689 second +13694 second +13702 second +13713 third +second +13728 third +13733 third +13737 third +13743 third +13750 third +13763 third +13768 third +13772 third +13779 third +13799 third +13814 third +13828 third +13847 second +13857 second +13871 third +13894 second +13904 third +13911 second +13918 third +13931 second +13937 third +13941 third +13952 second +13958 second +13970 second +13976 second +13982 second +13984 first +13993 first +14002 second +14005 second +14013 second +14023 second +14029 second +14033 first +14043 second +14045 second +14049 second +14055 second +14061 third +14084 second +14092 first +14094 third +14114 first +14122 third +14131 second +second +third +14139 first +14144 second +14149 second +14163 third +14165 third +14178 third +14181 second +14185 first +14189 third +14196 third +14205 third +14212 second +14216 third +14232 third +14234 second +14238 third +14241 third +14248 first +14253 third +14255 second +14261 second +14263 second +14265 third +14269 third +14273 third +14282 third +14294 third +14299 third +14302 second +14314 third +14318 third +14320 third +14325 third +14327 third +14335 third +14346 third +14348 third +14365 third +14370 second +14387 third +14393 third +14402 third +14415 third +14435 second +14438 third +14446 third +14452 third +14462 third +14466 third +14472 third +14479 third +14487 third +second +14495 second +14497 third +14502 third +14514 second +first +14519 third +14521 second +14525 third +14527 second +second +14533 second +14538 third +14542 third +14546 third +14555 third +14559 third +14572 third +14577 third +14584 third +14593 third +14596 third +14607 third +14614 third +14631 third +14639 third +14657 second +14665 third +14670 third +second +14680 second +14683 second +14686 third +14690 first +14695 third +14703 third +14709 third +14716 third +14725 third +14746 third +14763 third +14773 third +14780 third +14782 third +14786 third +14789 third +14798 third +14804 third +14807 third +14814 third +14817 third +14819 second +14822 second +14828 third +14831 second +14834 third +14841 third +14843 third +14847 third +14856 second +14861 second +14867 third +14870 third +14877 third +14902 third +14904 first +14912 third +14916 third +14925 third +14930 third +14936 third +14938 third +14942 third +14952 third +14958 third +14960 third +14969 third +14971 third +14980 third +14992 third +15001 third +15013 third +15020 third +15033 third +15036 third +15041 third +second +15045 second +15049 third +15055 third +15064 third +second +15075 third +15077 third +15085 third +15089 second +15095 second +15101 third +15107 third +15114 third +15119 third +15127 second +15132 third +15134 first +15137 first +15140 second +15143 second +15153 third +15158 third +15166 third +15181 third +15189 third +15193 third +15200 third +15209 third +15212 third +15222 third +15229 third +15240 third +15249 second +second +15254 first +third +15267 second +15272 first +second +15286 third +15291 second +second +15296 first +third +15309 second +15314 first +second +15330 third +15332 first +15335 second +15341 second +15346 second +15350 first +15357 second +second +15366 third +15372 second +15374 first +15377 first +15379 first +15382 first +15384 third +15396 first +15402 second +15408 second +15418 third +15420 third +15427 third +third +15435 second +15442 third +15452 third +15468 third +15474 third +15481 third +15488 third +15496 third +15508 third +15515 second +15521 second +15530 first +15532 second +15535 first +15537 second +15540 first +15542 second +15546 second +15548 first +15550 second +15554 first +15556 second +15560 third +15567 first +15571 first +15575 first +15578 first +15582 first +15586 first +15589 first +15596 first +15603 third +15606 first +15610 second +15619 second +15621 third +15627 second +15644 first +15647 second +15650 first +15653 second +15656 first +15659 second +15664 second +15672 second +15675 third +15681 first +15697 first +15700 third +15704 first +15709 second +15716 second +15718 third +15730 third +15732 third +15739 third +15743 second +15750 third +15756 third +15761 third +15778 third +15783 third +15785 third +15787 third +15795 third +15810 third +15818 third +15828 third +15836 third +15847 third +15851 second +15857 third +15864 second +15871 second +15886 third +15888 first +15892 third +15900 third +15903 third +15920 third +second +15927 first +15931 third +15938 third +15942 third +15948 third +15954 second +15956 first +15963 third +second +15972 second +15976 third +15981 third +15984 first +15992 third +15996 third +16001 third +16007 third +16015 third +16017 first +16023 third +16028 third +16035 first +16040 third +16052 third +16058 third +16060 third +16074 third +16076 third +16080 third +16090 third +16093 first +16095 third +16098 second +16108 third +16113 third +second +second +16117 third +16126 third +16129 second +16135 third +16149 first +16153 first +16168 first +16180 third +16187 third +16193 second +16201 third +first +16206 third +16216 first +16225 third +16229 third +16234 first +third +16240 first +16251 second +16253 third +16258 third +16266 first +16272 third +16274 third +16284 third +16287 second +16293 first +16303 third +16308 third +16311 third +16317 second +16320 second +16326 third +16337 third +third +16348 first +16353 third +16358 third +16362 third +16367 second +16373 second +16375 second +16378 second +16393 third +16399 third +16405 first +third +16413 third +16417 third +16427 third +16436 third +16441 third +16443 second +16446 second +second +third +16456 third +16460 second +first +second +third +16471 second +16476 third +16497 third +16503 first +16505 third +second +16513 third +second +16517 third +16522 third +16527 second +16530 third +16537 third +16540 second +16548 third +16558 third +16563 third +16567 second +16582 third +16584 second +16587 first +16593 third +16602 third +16607 third +16613 third +16621 second +16633 first +16637 second +16642 third +16644 third +16655 third +16661 third +16672 third +16676 third +16688 third +16702 third +16709 third +16712 third +16720 third +16722 third +first +16738 third +16741 second +16745 third +16749 third +16753 third +16755 first +16764 second +16767 second +16774 third +16779 second +16781 first +16785 second +16805 third +16810 third +16815 first +second +16818 second +16823 third +16827 third +16830 third +16832 third +16838 third +16842 third +16844 second +16848 third +16855 third +16861 third +16868 second +16875 third +16880 first +16882 second +16888 third +16892 third +16896 third +16903 third +16908 first +16917 third +16925 second +16933 third +16935 third +16941 first +16947 third +16949 third +16961 second +16966 third +16972 third +16990 third +16992 third +17003 third +17005 third +17014 first +17020 third +17025 second +17033 third +17036 third +17043 third +17045 third +17054 third +17058 third +17070 third +17080 third +17089 third +17098 third +17103 third +17111 third +17117 third +17122 third +17128 second +17136 third +17138 second +17150 third +17152 third +17157 second +17160 third +17163 third +17177 third +17186 third +17188 third +17197 third +17201 second +17203 first +17212 third +17216 third +17224 third +17239 first +17251 third +17255 third +17261 third +17266 third +17268 second +17273 first +17277 third +17280 third +17286 first +17291 third +17293 third +17296 third +17300 third +17304 third +17306 third +17313 third +17317 third +17320 third +17328 first +17334 second +17340 third +17352 third +17360 third +17362 third +17374 third +17385 third +17392 third +17407 third +17410 second +17418 third +17422 third +17429 third +17431 third +17436 third +17442 third +17449 third +17455 third +17457 third +17468 third +17472 third +17482 third +17487 third +17495 third +17499 third +17509 third +17516 third +17531 third +17548 second +17551 second +17556 second +17569 third +17571 third +17575 third +17578 third +third +17585 first +17588 third +17592 third +17595 third +17598 third +17602 first +17613 third +17620 third +17633 third +17642 second +17644 third +17652 second +17659 third +17662 third +17679 third +17684 third +second +first +17688 third +17699 third +17703 second +17708 third +17718 third +17722 third +17726 third +17733 third +17743 third +17749 third +17767 third +17773 third +17776 third +17784 third +17794 third +17815 third +17825 third +17832 third +17840 third +17848 third +17854 third +17862 third +17874 third +17884 third +17893 third +17897 third +17907 first +17912 third +17918 first +17920 second +17933 third +17936 third +17939 third +17944 third +17951 third +17955 second +17957 second +second +17960 second +17964 third +17981 third +17993 second +17996 third +18005 third +18009 third +18013 third +18031 third +18035 third +18042 third +18046 second +18049 first +18054 second +18056 third +18059 third +18061 third +second +second +18067 third +18071 second +18076 third +18081 second +third +18089 second +second +first +18104 third +18110 second +18112 third +18115 second +18119 third +18124 third +18127 third +18132 second +second +second +18139 third +18145 third +18149 second +18157 third +18173 third +18177 second +18184 third +18190 third +18196 first +18200 first +18205 third +18207 third +18209 third +18223 third +18231 third +18238 third +18241 third +18246 third +18249 third +18261 second +18284 first +18287 second +18291 first +18308 third +18314 second +first +18323 third +18332 second +18337 second +18341 third +18355 third +18367 third +18379 third +18399 third +18401 third +18409 first +18419 first +18424 third +18429 third +18434 third +18441 third +18453 third +18467 third +18472 second +18480 first +18486 third +18491 third +18502 third +18509 third +18517 third +18531 third +18535 third +18540 second +18542 second +18553 third +18565 third +18568 third +18572 second +18576 first +18586 third +18591 third +18611 third +18625 third +18629 third +18640 third +18642 third +18648 third +18661 third +18671 third +18679 second +18682 first +18685 second +18691 third +18695 second +18697 second +18711 third +18715 third +18722 third +18733 third +18735 third +18738 third +18756 third +18771 third +18775 third +18781 third +18787 third +18792 third +18798 third +18801 third +18812 third +18821 third +18830 third +18833 third +18838 third +18845 third +18847 third +18852 third +18854 third +18862 third +18865 third +18869 third +18872 third +18874 first +18883 first +18887 first +18889 third +18904 third +18916 second +second +18926 third +18928 third +18930 first +second +18934 third +18940 third +18945 third +18948 third +18950 second +18953 second +18955 second +18957 second +18961 second +18967 third +18975 third +18995 third +18997 third +19008 third +19012 third +19014 third +19025 third +19030 third +19046 third +19050 third +19053 third +19059 third +19067 third +19071 third +19076 third +19091 third +third +19094 third +19112 third +19115 third +19119 second +19125 third +19130 third +19136 second +19138 second +19143 second +19146 second +19149 third +19159 third +19163 first +second +second +19170 second +19176 third +19182 third +19196 first +19198 third +19207 third +19211 third +19215 third +19225 third +19227 second +19231 third +19234 third +19246 third +19254 third +19257 third +19266 third +19272 third +19282 third +19287 third +19292 third +19300 first +19306 third +19315 third +19317 third +19329 third +19335 third +19337 third +19342 third +19353 third +19357 third +19363 third +19366 third +19369 third +19376 third +19385 third +19392 third +19404 third +19407 third +19416 third +19424 third +19435 third +19448 third +19457 third +19459 second +19461 third +19466 third +19468 third +19471 second +19473 third +19477 third +19479 third +19486 third +19500 third +19504 third +19510 third +19517 third +19524 third +19533 third +19543 third +19548 third +19556 third +19561 third +19564 third +19567 third +19575 second +19580 third +19582 third +19595 third +19608 third +19611 second +19615 third +19617 third +19630 third +19635 third +19643 third +19653 third +19678 third +third +19683 third +19689 third +19696 third +19700 third +19706 third +19708 third +19717 third +third +19721 third +19725 second +19732 third +19738 third +19740 third +19745 third +19747 third +19750 third +19754 third +19757 third +19762 third +19772 third +19776 third +19793 third +19798 third +19827 third +19830 third +19834 third +19850 third +19854 third +19856 third +19864 third +19867 third +19875 third +19883 third +19886 third +19895 third +19897 third +19907 third +19909 third +19918 third +19922 third +19924 third +19928 third +19931 third +19948 third +19954 third +19956 first +19959 third +19972 third +19976 third +19983 third +19990 third +19994 third +19997 third +19999 third +20010 third +20016 third +20021 third +20023 second +20036 third +20041 third +20043 third +20057 third +second +20068 third +20080 third +20083 third +20089 third +20113 third +20115 third +20121 third +20127 second +second +third +20134 third +20140 third +20145 third +20149 third +20153 third +20159 third +20164 third +20173 third +20176 third +20183 third +20186 third +20191 third +20195 third +20200 third +20203 third +20210 third +20216 third +20226 third +20228 third +20231 third +20234 third +20237 third +20248 third +20251 third +20266 third +20269 third +20272 third +20275 third +20278 third +20281 third +20283 third +20286 third +20289 second +20298 second +20303 third +20306 third +20312 third +20317 third +20319 third +20323 third +20331 third +20341 third +20347 third +20351 third +20357 third +20367 third +20370 third +20377 third +20399 third +20404 third +20406 third +20416 third +20420 third +20422 third +20432 third +20436 third +20443 third +20453 third +20456 third +20462 third +20464 third +20468 third +20473 third +20476 third +20478 third +20480 second +20482 second +20486 second +third +20490 third +20494 third +third +20500 third +20503 third +third +20508 third +20510 third +20517 third +20524 third +20526 third +20533 third +20535 third +20538 third +20543 third +20556 third +20560 third +20564 third +20568 third +20570 first +20580 first +20586 third +20601 third +third +20604 third +20610 third +20628 third +20633 third +20639 third +20647 third +20650 third +20658 first +20666 third +20669 third +20676 third +20680 third +20687 third +20698 third +20707 third +20710 third +20714 third +20717 first +20720 third +20724 third +20727 second +second +20730 third +20734 third +20738 third +20742 second +20746 second +20749 third +20753 third +20759 third +20767 third +20770 third +20788 third +20800 third +20809 third +20832 third +20848 third +20860 third +20862 third +20868 third +20879 first +20885 second +20887 third +20893 second +20898 third +20904 third +20911 first +20913 third +20919 third +20924 third +20934 third +20937 second +20945 first +20947 third +20955 third +20960 third +20972 third +20980 third +20982 third +20991 third +20994 third +20998 third +21003 third +21015 third +21017 third +21022 third +21030 third +21044 third +21051 third +21054 third +21057 third +21059 second +21068 second +21074 third +21076 third +21079 third +21081 third +21087 third +21093 third +21105 third +21111 third +21116 third +21125 third +21131 third +21140 third +21143 second +21148 third +21150 third +21152 third +21156 third +21161 third +21202 third +21207 third +21210 first +21215 first +21218 third +21225 third +21229 third +21249 third +21251 third +21256 third +21261 second +21267 second +21270 third +21272 third +21285 third +21287 third +21289 third +21292 third +21299 third +21305 third +21307 second +21311 second +21320 third +21329 third +21332 second +21342 third +21346 second +21348 second +21351 third +21368 third +21375 third +21384 third +21387 second +21389 second +21393 third +21395 third +21397 third +21403 third +21416 third +21418 third +21427 third +21430 second +21432 third +21437 first +second +21441 third +21445 third +21447 third +21451 third +21456 third +21461 third +21464 third +21469 third +21472 third +21478 third +21486 third +21495 third +21518 third +21536 third +21544 third +21548 third +21554 third +21575 third +21587 third +21589 third +21595 third +21601 third +21605 third +21611 third +21619 third +21623 third +21644 second +21648 third +21652 second +21656 second +21659 second +21666 third +21669 third +21673 second +21686 third +21688 third +21692 third +21694 third +21699 third +21701 third +21707 third +21712 third +21717 third +21723 third +21730 third +21733 third +21736 third +21747 third +21750 first +21753 third +21759 third +21763 third +21777 third +21779 third +21786 third +21797 third +21800 third +21805 third +21809 third +21819 third +21825 third +21829 third +21840 third +21861 third +21870 third +21873 second +21877 second +21879 first +21882 third +21887 second +first +21897 third +21902 first +21905 third +21919 third +21921 first +21924 second +21945 third +21954 third +21961 third +21967 third +21974 third +21981 third +21991 third +21993 third +21998 third +22003 third +22010 third +22014 third +22017 third +22019 third +22021 second +22030 second +22033 third +22043 third +22045 third +22055 third +22059 third +22067 third +22070 third +22074 third +22078 third +22082 third +22089 third +22103 third +22106 third +22113 second +22123 third +22126 third +22130 third +22132 second +22137 third +22140 first +22145 first +22150 third +22154 second +second +second +22159 third +22165 third +22176 third +22197 third +22199 third +22203 third +22207 third +22213 third +22216 third +22219 third +22221 third +22231 third +22240 third +22257 third +22263 third +22271 third +22292 third +22302 third +22310 third +22321 third +22324 third +22326 third +22330 third +22332 third +22336 third +22340 third +22342 second +22344 first +22346 second +22348 third +22355 third +22364 third +22367 third +22372 third +22382 third +22386 third +22396 third +22402 third +22411 third +22413 third +22417 third +22429 third +22433 third +22442 third +22446 third +22448 third +22450 third +22472 third +22474 third +22487 third +22491 third +22502 third +22504 third +22508 third +22510 third +22519 third +22529 third +22541 third +22546 third +22549 third +22556 third +22564 third +22570 third +22575 third +22586 second +22592 third +22595 second +22604 second +22607 third +second +22623 third +22626 second +22628 third +22637 third +22643 second +22645 second +22663 second +22668 second +22674 third +22676 second +22680 second +22682 third +22690 third +22699 third +22706 third +22712 third +22720 third +22726 second +22728 second +22738 third +22743 third +22756 third +22762 third +22770 third +22784 third +22803 third +22805 third +22811 third +22822 third +22825 third +22837 third +22841 third +22849 third +22855 third +22860 third +22866 third +22868 second +22875 third +22888 third +22890 third +22900 third +22907 third +22913 second +third +22927 third +22945 third +22959 third +22965 third +22968 third +22980 third +22990 third +22999 third +23001 third +23003 second +23005 third +second +23008 third +23014 third +23021 third +23024 third +23028 third +23032 third +23036 third +23039 third +23043 third +23045 third +23064 third +23068 third +23070 first +23078 third +23082 third +23084 third +23087 first +23093 third +23102 third +23104 third +23111 third +23120 third +23124 second +23127 third +23130 third +23143 third +23145 third +23150 third +23152 third +23156 third +23162 third +23167 third +23169 third +23171 third +23177 third +23181 third +23193 third +23199 third +23203 third +23220 third +23225 third +23228 first +23231 third +23241 third +23246 third +23255 third +23262 third +23265 second +second +23277 third +23283 third +23286 third +23289 second +23293 second +23295 second +23297 second +23299 second +23306 second +23311 second +23314 second +23319 first +23327 second +third +23341 second +23343 third +23346 third +23349 second +23351 third +23355 third +23359 third +23363 third +23370 third +23385 third +23389 second +23392 third +first +23400 first +23403 third +23411 third +23413 third +23415 third +23419 third +23429 second +23431 third +23448 third +23457 third +23462 third +23480 third +23487 second +23491 third +23494 second +23498 third +23502 third +23506 third +23510 third +23539 third +23545 third +23556 third +23559 third +second +23566 second +23582 third +23586 third +23590 third +23593 third +23598 third +23603 third +23608 third +23613 third +23622 third +23626 third +23639 third +23648 third +23667 third +23670 third +23683 third +23686 first +23689 third +23697 third +23701 third +23713 third +23724 third +23733 third +23740 third +23750 third +23754 third +23760 third +23768 third +23773 third +23778 first +23791 third +23793 third +23796 third +23798 third +23803 third +23809 third +23815 second +23822 third +23835 third +23840 third +third +23851 third +23855 third +23860 third +23866 third +23870 third +23874 third +23880 third +23886 third +23890 third +23898 third +23900 third +23902 first +23907 third +23909 third +23912 third +23914 third +23922 third +23939 third +23942 third +23945 third +23948 second +23952 third +23959 first +23972 third +third +23976 third +23978 third +23982 third +23984 first +23990 third +23993 third +23998 third +24006 first +24009 first +24011 second +24016 third +24026 third +24033 third +24036 third +24042 third +24045 third +24049 third +24058 third +24063 third +24068 second +second +24077 third +24081 second +24092 third +first +second +24103 third +24105 third +24118 first +24120 second +24125 second +24133 third +24135 third +24143 third +24151 third +24154 third +24165 third +24170 first +24174 third +24181 third +24189 third +24195 third +24198 third +24200 third +24205 third +24212 third +24217 third +24224 third +24227 third +24231 third +24235 third +24243 third +24249 second +24252 third +24256 third +24264 third +24268 third +24272 third +24275 third +24284 third +24292 third +24300 third +24306 third +24311 third +24314 third +24319 third +24324 first +24334 third +24337 first +24341 third +24346 third +24348 second +24352 third +24354 third +24361 third +24368 third +24373 third +24377 third +24385 second +24387 first +24392 third +24399 third +24407 third +24411 third +24419 third +24425 third +24430 second +24433 third +24459 third +24461 second +24464 third +24485 third +24487 second +24490 third +24512 third +24517 third +24521 third +24530 third +24534 second +second +24540 second +24546 third +24557 third +24564 third +24566 third +24571 third +24574 third +24583 third +24587 third +24591 third +third +24602 third +24608 third +24620 third +24624 third +24633 third +24641 third +24650 third +24653 third +24663 third +24666 third +24670 third +24675 third +24677 third +24687 third +24689 third +24691 third +24696 third +24700 third +24706 third +24708 third +24710 second +24717 second +24722 third +24728 first +24733 third +24742 third +24748 third +24764 third +24769 first +24773 first +24777 third +24781 second +24792 second +24794 second +24796 second +24798 second +24800 second +24802 second +second +24812 third +24817 first +24826 third +24829 third +24833 third +second +24836 second +second +24839 second +24843 second +24848 second +second +24857 third +24860 third +24868 third +24883 third +24887 third +24897 third +24902 third +24910 third +24929 third +24935 third +24941 third +24955 third +24960 second +24962 first +24965 first +24967 third +24971 first +24974 third +24976 third +24998 third +25029 third +25036 third +25044 third +25050 third +25054 third +25060 third +25068 second +first +25077 third +25084 third +25088 third +25093 third +25096 third +25099 third +25102 third +25107 third +25109 third +25120 first +25124 first +25126 second +25130 third +25132 second +25135 first +25139 third +25141 second +25152 first +25160 third +25163 second +25165 second +second +25172 first +25178 first +25182 third +25184 first +25188 third +25194 first +second +25201 first +second +25213 third +25218 third +25223 third +25234 third +25236 second +25243 third +25249 third +25254 third +25260 third +25265 third +25271 third +25276 third +25286 third +25299 third +25320 third +25330 third +third +25338 second +25341 third +25345 third +25350 third +25353 second +25359 third +second +25363 third +25368 second +second +third +25379 third +25388 third +25391 first +second +25396 third +25400 first +25404 third +25406 second +25410 third +25414 third +25416 third +25423 third +25435 third +25441 third +25443 second +25455 second +25463 third +second +25467 second +25472 third +25474 second +25476 second +25481 third +25485 third +25489 third +25491 third +25501 third +25508 third +25511 second +25517 third +25520 third +25524 third +25527 third +25534 third +25540 third +25548 third +25565 third +25586 third +25600 third +25613 third +25621 third +25625 third +25633 third +25641 third +25645 third +25655 third +25657 third +25662 third +25670 third +25692 third +25695 third +25698 third +25704 third +25706 third +25709 third +25716 third +25722 second +25727 third +25734 third +25737 third +25739 third +25745 third +25753 third +third +25761 third +25771 third +25774 second +25778 second +third +25784 third +25786 second +25790 first +25795 third +25799 second +25801 second +25807 third +25813 third +25816 third +third +third +25822 first +25826 second +25828 second +second +25831 second +25833 third +25837 second +25839 second +25842 second +25854 third +25860 third +25870 third +25882 third +25888 second +25892 third +25898 second +25902 third +25904 first +25909 second +25912 first +25918 first +25925 third +25929 second +25932 third +25937 first +25940 third +25945 second +25948 first +25951 third +25956 third +25962 third +25967 third +25969 first +25973 third +25977 first +25983 first +25985 third +25992 third +25994 third +25997 third +26000 third +26003 third +26007 third +26009 third +26020 third +26029 third +26031 third +26035 third +26041 third +26043 third +26046 third +26048 third +26059 third +26063 third +26070 third +26080 third +26083 third +26086 second +first +26091 third +26096 third +26099 third +26105 third +26110 third +26112 third +26116 third +26124 second +26127 third +26131 third +26137 third +26140 third +26146 third +26150 third +26154 third +26160 third +26164 third +26166 third +26177 third +26181 third +26184 first +26187 second +26190 third +26196 second +26207 second +third +26214 first +26217 first +26224 third +26228 second +second +26233 first +26236 third +26238 third +26249 third +26255 third +26259 second +26268 third +26272 third +26277 third +26282 third +26287 third +26293 third +26295 third +26299 third +26302 third +26309 third +26316 third +26320 third +26325 third +26330 third +26333 third +26345 third +26352 third +26357 third +26361 third +26365 third +26368 third +26375 second +26389 third +26391 third +26393 third +26395 third +26406 third +26408 second +26417 third +26433 third +26439 second +26451 third +26453 third +26456 third +26460 third +26465 third +second +26474 third +26476 second +26506 second +26517 third +26519 third +26527 second +26530 third +26533 third +26563 third +26576 third +third +26581 second +26590 third +26597 third +26603 third +26611 third +26614 third +26620 third +26625 second +26631 first +26641 third +26648 third +26653 third +26661 third +second +26697 third +26705 third +26709 third +26717 third +26724 third +26728 third +26735 third +26738 first +26747 third +26760 third +26767 third +26770 third +26781 third +26788 second +26797 third +26799 second +26806 third +26813 third +26825 third +26836 second +26840 third +26846 third +26853 third +26856 second +26860 third +26862 third +26870 first +26873 third +26876 second +26882 second +third +26890 third +26898 third +26902 third +26908 second +26911 third +26918 second +26924 second +26939 third +26942 third +26946 second +26948 second +26952 third +26959 second +26962 second +26972 third +26981 third +26986 third +26989 second +27003 third +27006 second +27014 third +27017 third +27023 third +27032 third +27034 third +27047 third +27069 second +27072 third +27075 third +27082 third +27088 third +27097 third +27101 third +27107 third +27115 third +third +27124 third +second +27129 second +27132 second +27134 third +27139 third +27152 second +first +27167 third +27172 third +27179 third +27191 third +27194 third +27209 third +27213 third +27231 second +27240 third +27242 third +27245 second +27250 third +27255 second +27258 second +27261 third +27265 first +27270 third +27278 third +27284 third +27290 third +27300 third +27313 second +second +27317 second +27321 third +27343 third +27345 third +27347 second +27350 second +27356 third +27368 third +27374 first +27376 first +second +27379 third +27389 third +27400 third +27402 third +27409 third +27426 third +27437 third +27443 third +27454 third +27456 third +27469 third +27474 third +second +27480 second +27483 third +27490 second +27495 second +second +27504 second +27506 third +third +third +27518 first +27522 third +27531 third +27533 third +27544 third +27550 third +27555 third +27557 third +27562 third +27566 third +27576 third +third +27582 second +27585 first +27587 second +27591 third +27597 third +27599 second +27604 third +27610 second +27615 third +second +27622 third +27624 third +27635 first +27639 third +27646 second +27649 third +27653 third +27658 third +27660 third +27663 third +27669 third +27680 third +27682 first +27685 third +27694 third +27706 third +27724 third +27726 third +27740 third +27745 third +27755 third +27757 third +27760 third +second +27763 third +27771 third +27774 third +27779 third +27782 third +27793 first +27799 first +27811 first +27820 third +27827 third +27833 second +27835 third +first +27842 third +27848 first +27856 third +27861 third +27866 third +27871 first +27886 second +27890 third +27892 third +27899 first +27904 third +27906 third +27914 third +27918 second +27921 first +27923 third +27935 third +27940 third +27943 third +27949 second +27952 second +27956 third +27961 third +27965 third +third +27972 third +27979 second +27989 first +27994 third +27996 third +28000 third +28004 second +28006 second +28010 second +28012 second +28015 second +28029 third +28037 third +28041 third +28048 third +28050 third +28053 third +28057 third +28059 second +28063 second +third +third +28068 second +third +28079 second +first +second +28085 third +28091 third +28115 third +28124 first +28126 third +second +28130 second +28137 third +28140 third +28144 third +28149 third +28159 third +28165 third +28173 third +28178 second +28187 first +28196 second +28200 third +28206 third +28211 third +28218 third +28226 third +28228 third +28235 third +28250 third +28260 third +28277 third +28288 third +28291 third +28299 third +28303 third +28309 first +28314 first +28326 first +28331 third +28341 third +28346 second +28351 third +28354 third +28357 third +28362 third +28365 third +28368 second +28378 third +28380 first +28382 second +28406 third +28411 first +second +28417 third +28421 third +28427 third +28442 second +28448 third +28457 third +28470 third +28478 second +28481 third +28484 first +28486 first +28489 second +28491 third +28501 third +28510 third +28514 third +28521 third +28527 second +28531 second +28534 third +28540 first +28545 second +28551 third +28553 third +28559 third +28570 second +28573 third +28593 third +28595 third +28598 third +28603 second +28612 third +28614 second +28616 third +28625 third +28629 second +28631 second +28634 third +28640 third +28648 third +28653 third +28655 third +28668 third +28673 third +28676 third +28681 third +28684 second +first +28692 third +28696 third +28703 third +28710 third +28717 third +28721 first +28723 second +28731 third +second +28737 third +28740 third +28746 third +second +28758 third +28763 third +28768 third +28772 third +28778 third +28781 third +28786 third +28790 third +28796 third +28799 second +28804 third +28810 third +28816 third +28820 third +28822 third +28827 third +28833 third +28836 third +28839 third +28853 third +28858 third +28865 third +28870 third +28877 third +28879 third +28882 third +28892 third +28894 third +28898 third +28901 third +28915 third +28929 third +28947 second +28963 third +28965 third +28969 third +28975 third +28981 first +28983 first +28989 third +28996 third +29008 third +29016 second +29018 third +29028 second +29035 third +second +29038 third +29048 third +29051 second +first +29054 third +29064 third +29070 third +29088 third +third +29096 third +29098 third +29123 third +29127 third +29130 third +29145 third +29148 third +29160 third +29167 third +29172 third +29180 third +29183 third +29188 third +29192 third +29198 third +29208 third +29212 third +29217 third +29222 third +29238 third +29240 third +29255 third +29259 third +29268 third +29276 third +29280 third +29291 third +29293 third +29297 third +29305 third +29315 third +29318 third +29321 second +second +29328 third +29330 third +29332 second +29336 third +29339 second +second +29348 third +29355 second +29357 third +29361 third +29366 third +29374 third +29376 third +29382 third +29389 third +29394 third +29405 third +29407 third +29410 third +29418 third +29427 third +29432 third +29439 third +29441 third +29453 third +29455 third +29462 second +29472 third +29476 third +29482 third +29488 third +29491 third +29493 third +29497 third +29501 third +29505 third +29508 third +29518 third +29523 third +29531 third +29553 third +29566 third +29579 third +29589 third +29600 third +29612 second +29615 second +29619 third +29647 third +29665 third +29669 third +29676 third +29682 third +29701 third +29716 third +29724 third +29736 third +29741 third +29745 third +29751 second +29754 third +29763 third +29767 second +29773 third +29784 third +29786 third +29796 third +29800 third +29811 third +29819 third +29842 third +29849 first +29853 first +29868 third +29871 first +29879 first +29888 second +second +29898 third +29903 second +29908 third +29914 third +29921 third +29932 third +29936 third +29939 third +29945 third +29949 third +29952 third +29954 third +29960 third +29970 third +29976 third +29984 third +29989 third +30001 third +30035 third +second +30047 third +30049 third +30051 third +30056 third +30061 second +30064 second +30070 second +second +30075 second +30078 second +30084 third +30089 third +30091 third +30103 third +30116 third +30119 third +30125 third +30130 first +30135 third +30139 third +30145 third +30152 third +30156 second +30163 third +30172 third +30179 third +30186 third +30188 second +30192 third +30199 third +30211 third +30221 third +30227 third +30231 third +30233 third +30240 third +30248 third +30254 third +30258 third +30275 third +30284 second +30286 third +30296 third +30310 third +30318 third +30320 third +30327 third +30338 third +30346 second +30350 third +30356 third +30377 third +30382 third +30387 third +30392 third +30395 third +30399 third +30401 third +30417 third +30423 third +30431 third +30439 third +30446 third +30449 third +30457 third +30465 third +30468 third +30474 third +30479 third +30493 third +30496 third +30499 third +30503 third +30510 third +30515 third +30521 third +30528 third +30531 third +30535 third +30538 third +30548 third +30553 third +30567 third +30573 third +30587 third +30592 third +30600 third +30604 third +30613 third +30615 third +30621 third +30631 third +30664 third +30696 second +30698 second +30722 third +30746 third +30748 third +30751 third +30763 third +30768 third +30780 third +30786 third +30795 third +30811 third +30831 third +30837 third +30844 third +30851 third +30854 third +30860 third +30868 third +30887 third +30892 third +30895 third +30899 third +30904 second +30906 second +first +30912 third +30917 third +30922 third +30932 second +30941 third +30965 third +30967 third +30977 third +30981 first +30985 first +30994 third +30997 third +31000 third +31016 third +31031 third +31043 third +31054 third +31065 third +31067 third +31069 third +31074 third +31081 third +31100 third +31110 third +31118 third +31130 third +31149 second +31151 third +31171 third +31175 third +31189 third +31194 third +31222 third +31228 third +31232 third +31235 second +31246 third +31254 second +31270 third +31284 third +31288 third +31294 second +31296 third +31315 third +31319 third +31325 third +31356 third +31371 third +31375 third +31385 third +31392 third +31403 third +31405 third +31411 third +31415 third +31429 third +31447 third +31455 third +31466 third +31470 third +31481 third +31487 third +31491 third +31508 third +31523 third +31525 third +31533 second +31536 second +31542 first +31545 third +31550 second +31553 second +31562 third +31566 third +31570 third +31573 third +31577 third +31581 third +31588 third +31598 third +31649 third +31661 third +31675 third +31687 second +31692 second +31698 third +31704 third +31706 third +31718 third +31726 third +31736 third +31744 second +31751 second +31756 first +31760 first +31763 third +31784 third +31792 third +31796 third +31798 third +31805 first +31808 third +31814 third +31823 third +31825 third +31830 third +31835 first +31838 third +31847 second +31849 third +31855 first +31859 third +31862 second +31864 second +31866 second +31887 third +31890 third +31898 first +31901 third +31907 first +31917 third +31945 third +31954 third +31977 third +31980 third +31985 third +31991 third +32024 second +32032 first +32036 third +32042 third +32203 third +32208 third +32223 third +32232 third +32234 third +32239 second +32243 second +32248 third +32251 third +32256 third +32262 third +32268 third +32279 third +32284 first +32295 third +32299 first +first +32305 second +32308 third +32315 third +32317 third +second +32326 second +32328 third +32333 third +32340 third +32343 second +32347 second +32352 third +32357 third +32367 third +32371 second +32379 third +32384 third +32386 second +32397 third +32403 third +32416 third +32425 third +32434 third +32438 third +32441 third +32455 third +32458 third +32468 third +32472 third +32480 third +32484 third +32507 third +32515 third +32519 third +32525 third +32535 third +32538 third +32551 third +32555 third +32558 third +32562 second +32568 second +32570 first +32576 second +32584 third +32586 first +32592 third +32600 first +32604 third +32613 third +32623 third +32634 third +32648 third +32659 third +32666 third +32676 third +32682 third +32693 third +32703 third +32705 third +32712 third +32719 third +32727 third +32735 third +32742 third +32752 second +32755 first +32758 second +32764 third +32769 second +32771 second +32782 third +32789 third +32794 third +32807 third +32812 third +32814 third +32828 third +32837 third +32842 third +32850 third +32854 third +32859 third +32867 third +32871 third +32883 third +32886 third +32896 second +32904 third +32908 third +32917 third +32924 third +32927 third +32931 third +32940 third +32954 third +32958 first +32960 third +32968 third +32983 third +32990 third +33003 third +33013 third +33015 third +33027 third +33032 third +33034 third +33038 second +33043 second +33052 third +33059 first +33065 first +33071 third +33076 third +33081 third +33093 third +33095 third +33106 third +33111 second +33117 first +33121 third +33134 third +33144 third +33149 third +33156 second +33161 second +33172 third +33175 third +33185 second +33196 third +33201 second +second +33209 third +33212 first +second +33218 third +33223 third +33229 second +33234 second +33240 third +33246 third +33253 third +33265 third +33273 third +33280 third +33283 third +33289 third +33303 third +33309 second +33316 third +33319 third +33330 third +33342 third +33358 third +33360 third +33366 third +33375 third +33378 third +33381 third +33397 third +33401 second +33407 third +33410 third +33417 second +33419 second +33422 second +33429 third +33435 third +33439 first +second +33446 second +33459 third +third +33470 third +33473 third +33477 third +33481 first +33487 third +33489 third +33498 third +33500 second +33506 third +33509 third +33519 third +33526 third +33531 third +33550 second +33552 second +33557 third +33563 third +33571 first +33580 third +33586 third +33590 third +33599 third +33601 third +33605 third +33609 second +33620 third +33624 third +33628 third +33634 third +33640 third +33652 third +33662 third +33667 third +33676 third +33685 third +33694 third +33698 third +33710 third +33713 third +33717 third +33719 third +33727 third +33729 third +33742 third +33744 second +33747 third +33754 third +33758 second +33761 third +33764 third +33772 third +33784 third +33786 third +33793 third +33800 third +33802 third +33811 third +33823 third +33832 third +33835 third +33846 third +33848 third +33853 third +33858 third +33866 second +33868 second +33874 third +33876 third +33881 first +33884 third +33898 third +33900 second +33906 third +33908 third +33914 third +33917 third +33922 third +33926 third +33938 third +33947 third +33949 third +33961 third +33965 third +33999 third +34005 third +34032 third +34047 third +34052 third +34059 third +34061 third +34073 third +34079 third +34089 second +34095 second +34097 second +34099 third +34105 third +34108 third +34110 third +34121 second +34127 second +34129 second +34141 third +34153 second +34163 second +34169 second +34171 second +34176 third +34184 third +34191 first +34195 second +34200 second +34204 second +34208 second +34219 second +34234 second +34238 second +34246 second +34249 second +34251 third +34255 second +34260 second +34267 third +34275 third +34279 second +34286 third +34292 third +34295 second +34298 second +34303 third +34307 third +34309 third +34313 second +34318 second +34320 second +34324 third +34330 second +34336 third +34342 second +34349 third +34352 second +34356 second +34359 second +34363 second +second +34366 second +second +34369 third +34376 third +34384 second +third +34388 third +34393 third +34401 third +34403 third +34411 third +34418 second +34437 second +34439 second +34445 second +first +34464 second +34474 second +34487 third +34507 third +34512 third +34518 third +34528 third +34537 third +34544 third +34551 second +34556 second +34558 first +34572 first +34575 third +34578 third +34583 third +34585 third +34587 third +34595 third +34603 third +34618 third +34628 third +34633 third +34635 third +34643 third +34653 third +34662 third +34665 third +34673 third +34683 third +34693 third +34699 third +34701 second +34704 third +34712 third +34717 third +34729 third +34737 second +34740 first +34747 second +34751 first +34756 second +34759 third +34766 first +34776 first +34778 second +34780 third +34783 second +34785 third +34790 second +34793 third +34799 third +34807 third +first +34816 first +34824 third +34829 third +34833 third +34839 third +34849 third +34855 second +third +34865 third +34872 third +34880 third +34884 third +34887 second +34890 third +34896 third +34898 third +34901 first +second +34904 third +34908 third +34911 third +34917 third +34921 third +34928 third +34933 third +34940 third +34955 third +34972 third +34978 second +34983 first +34990 third +34994 third +35000 second +35005 first +35010 third +35022 third +35026 third +35029 second +35032 second +35034 second +35036 third +35038 third +35040 third +35043 third +35045 third +35047 third +35050 third +35054 third +35062 third +35071 second +35082 second +35088 second +35099 third +35103 second +35106 first +35112 third +35115 third +second +first +35125 third +35131 first +35139 third +35150 third +35159 third +35176 third +35185 first +35193 third +35196 third +35206 third +first +35211 second +first +35215 second +35217 third +35228 second +35230 third +third +35240 second +second +35251 third +35260 third +35266 third +35276 third +35278 second +35281 third +35289 third +35306 third +35319 third +35321 third +35326 third +35336 third +35342 third +35345 third +35352 third +35356 third +35361 third +35365 first +35372 second +third +35376 third +35381 third +35393 third +35398 third +35402 third +first +35408 third +35411 third +35414 second +35422 third +second +35427 first +35437 second +35442 third +35450 third +35454 second +35459 first +35461 third +35471 second +35475 third +35481 first +35483 third +35490 third +35495 third +35497 third +35499 third +35501 third +35506 third +35514 third +35518 third +35520 third +35527 third +35529 second +35533 third +35539 third +35560 third +35575 third +35588 third +35605 third +35608 third +35623 third +35628 third +35634 third +35638 third +35644 third +35652 third +35661 third +35665 third +35673 third +35678 third +35683 third +35685 third +35691 third +35697 third +35699 third +35715 third +35719 third +35721 third +35727 third +35737 third +35741 third +35745 third +35755 third +35763 third +35766 third +35773 third +35777 third +35782 third +35790 third +35803 third +35806 third +35814 third +35824 third +35826 third +35833 third +35839 third +35843 third +35847 third +35852 third +35857 third +35863 third +35867 third +35869 second +35871 second +35875 third +third +35882 third +35886 third +third +35891 third +35902 third +35909 third +35918 third +35926 third +35935 third +35945 third +35952 third +35960 third +35963 first +35970 third +35974 third +35976 third +35983 third +35985 third +35988 third +35993 first +35997 third +36006 third +36008 third +36011 third +36019 third +36026 third +36034 third +36036 third +36039 third +36046 third +36056 third +36068 third +36074 third +36084 third +36089 third +36100 first +36104 second +36106 third +36118 third +36121 third +36130 third +36138 third +36145 third +36148 third +36151 third +36157 third +36161 third +36168 third +36178 third +36181 third +36187 third +36196 third +36201 third +36211 third +36218 third +36220 third +36229 third +36234 third +36239 third +36247 third +36257 third +36259 third +36264 third +36268 third +36283 third +36289 third +36291 third +36297 third +36304 third +36307 second +36313 second +36316 third +36320 third +36327 third +36337 third +36343 third +36347 second +third +36358 third +36365 third +36378 third +36382 third +36390 third +36403 third +36409 third +36417 third +36424 third +36434 third +36440 third +36443 third +36447 third +third +36453 first +36464 third +36466 third +36473 third +36475 third +36482 third +36486 third +36492 third +36494 second +36500 third +36507 third +36512 second +36519 third +36522 second +36524 second +36526 third +36533 third +36555 third +36557 third +36561 third +36563 second +36565 third +36567 third +36569 third +36573 third +36580 third +36584 second +36586 third +36591 third +36594 third +36599 third +36605 third +36615 third +36628 third +36638 third +36642 second +36664 second +36666 second +36669 second +36674 third +36687 second +36694 third +36703 third +36711 third +36719 third +36727 third +36735 third +36737 third +36741 first +36744 third +36748 first +36751 third +36758 third +36761 third +36765 third +36776 third +36781 third +36793 third +36797 third +36803 third +36805 second +36816 third +36818 third +36825 first +36827 third +36830 second +36836 third +36838 third +36851 first +36859 third +36864 third +36869 second +36876 third +36879 third +36894 third +36897 third +36899 third +36906 third +36908 third +36911 third +36919 third +36927 third +36932 third +36940 third +36944 third +36958 third +36960 third +36967 second +36971 third +36980 third +36986 third +37010 third +37015 third +37019 third +37022 third +37029 third +37034 third +37039 third +37044 third +37051 third +37055 third +37069 third +37080 third +37082 third +37095 first +37098 third +37106 third +37110 third +37116 third +37131 third +37137 third +37155 second +37158 third +37161 third +37169 third +37177 third +37185 third +37190 third +37202 third +37209 third +37217 third +37222 first +37236 third +37241 third +37244 third +37247 third +37257 third +37263 third +37270 second +37277 third +37282 third +37285 third +37292 third +37294 third +37303 third +37308 second +37313 third +37316 first +37326 third +37328 second +37330 third +37334 third +37336 third +37342 third +37348 first +37353 third +37357 third +37362 third +37370 first +37374 first +37376 second +37385 third +37390 third +37392 third +37400 third +37404 third +37410 third +37423 third +third +37429 second +37443 third +37450 third +37455 third +37461 third +37464 third +37472 third +37480 third +37493 third +37498 third +37502 third +37511 third +37516 third +third +37529 third +37535 third +37537 first +37546 first +37550 third +37554 third +37559 second +37563 third +37568 third +37570 third +37583 third +37589 third +37596 third +37605 third +37611 third +37622 third +37624 second +first +37636 third +37639 third +37649 third +37653 first +37657 second +37659 third +37666 third +37679 third +37683 third +37685 third +37688 second +37692 third +second +37702 third +37704 second +37714 second +37720 third +37723 first +37728 second +37737 third +37754 third +37762 third +37768 third +37781 third +37785 third +37797 second +37804 third +37809 second +second +first +37819 second +37830 second +37836 second +37838 second +37846 third +37849 third +37860 third +37866 second +37881 second +37891 second +37893 third +37895 second +37900 second +37906 second +37908 third +37920 second +37923 third +37930 second +37944 first +37948 second +37950 third +37955 first +37964 third +37981 third +37995 third +38001 third +38013 second +38017 second +38022 third +38028 third +38033 third +38038 third +38048 third +38055 third +38057 first +38066 second +first +38089 third +38094 second +38099 third +38101 second +38106 third +38114 third +38120 third +first +38131 second +38138 second +38147 third +38152 third +38159 third +38161 third +38170 third +38181 third +38191 third +38198 second +38200 first +38207 third +38211 second +38214 third +38218 second +38221 third +38223 second +38226 third +38235 first +38238 third +38245 third +38247 second +38251 third +second +38287 third +38290 second +38292 second +38294 second +38300 third +38306 third +38312 third +38315 third +38322 third +38330 third +38338 third +38346 third +38357 third +38362 third +38367 third +38370 third +38385 third +38390 third +38399 third +38403 third +second +38410 second +38416 first +38418 third +38433 third +38441 third +38445 second +38448 second +38456 third +38465 third +38472 third +38484 third +38491 third +38497 third +38500 third +38509 third +38511 second +38515 third +38518 third +38524 second +38526 second +38532 third +38540 third +38543 third +38546 third +38556 third +third +38565 second +38571 third +38576 third +38579 second +second +38582 third +38586 third +38595 second +38601 second +38609 first +38615 second +38620 third +38626 third +38629 third +38634 third +38637 second +38644 third +38651 first +38653 first +38658 third +38662 second +38666 third +38676 third +38678 first +38682 first +38687 third +38701 third +38704 third +38707 first +second +38710 third +38712 second +38714 second +second +38717 third +38723 third +38727 third +38731 third +38738 third +38747 third +38750 third +38752 third +38760 second +38774 third +38781 third +38786 third +38789 third +38793 third +38797 third +38804 third +38811 third +38820 third +38829 third +38836 third +38841 third +38849 third +38851 third +38856 second +38868 first +38876 third +38882 third +38889 first +38893 third +38904 third +38910 third +38919 third +38924 third +38927 third +38932 third +38940 third +38947 third +38952 third +38956 third +38965 third +first +38972 first +38975 third +38980 third +38982 third +38990 third +38993 third +39003 third +39016 third +39027 second +39030 third +39045 third +39052 third +39054 third +39058 third +39067 third +39073 third +39084 third +39095 third +39098 third +39109 second +39115 third +39124 third +39127 third +39133 second +39142 third +39156 third +39161 third +39170 third +39177 third +39181 third +39188 second +39196 third +39209 third +39218 third +39224 third +39228 third +39233 third +39238 third +39242 third +39247 third +39263 second +39268 third +39281 third +39285 second +39288 second +39292 third +39299 second +39309 second +39318 third +39329 second +39344 second +39357 third +39363 third +39370 second +39373 third +39380 second +39392 second +39398 second +39407 third +39411 second +39413 second +39422 third +39426 second +39434 third +first +39444 third +39446 third +39448 third +39478 first +39480 third +39490 second +39497 second +39501 second +39505 third +39536 third +39543 second +39549 third +39555 third +39559 third +39564 third +39571 second +39575 third +39581 second +39585 third +39590 first +39596 second +39611 first +39614 second +second +39627 first +39630 second +39634 third +39642 third +39655 third +39657 second +39660 second +39662 first +39667 third +39678 third +39693 third +39702 third +39709 third +39719 third +39722 third +39734 second +39738 second +39741 second +39746 third +39754 third +39756 third +39763 second +39774 third +39779 third +39786 third +39789 second +39791 second +39804 third +39810 third +39820 third +39822 third +39827 first +39830 first +39832 first +39837 third +39839 first +first +39846 first +39848 first +39858 first +39863 second +39870 second +second +second +second +39875 third +39886 third +39891 second +39893 third +39904 third +39911 first +39914 second +39918 second +39923 second +39928 third +39936 second +39941 third +39943 third +39946 third +39953 third +39958 second +39966 third +39977 second +39982 second +second +39988 third +39990 third +39992 first +40001 third +40021 third +40029 second +40031 second +40034 second +40037 second +40045 third +40050 third +40052 second +40055 second +40061 third +40064 second +40069 third +40077 second +40082 second +40084 second +40097 third +40100 third +40103 third +40112 third +third +40131 third +40140 third +40151 third +40153 first +40156 third +40158 third +40162 third +40173 third +40175 third +40178 third +40182 second +40185 third +40192 third +40195 third +40202 second +40208 second +40213 third +40215 third +40224 second +40230 third +40235 third +40242 third +40266 third +40268 first +40276 third +40280 third +40288 third +40294 third +40307 third +40317 third +40323 third +40325 third +40334 third +40355 third +40365 third +40370 third +40373 third +40378 third +40381 third +40383 first +40391 first +40394 third +40397 first +40401 first +40404 third +second +40407 first +40413 first +40420 third +40436 third +40463 third +40468 second +40474 second +40477 third +40479 third +40485 second +40488 third +40490 third +40500 second +40507 second +40514 second +40519 second +40529 second +40536 third +40545 third +40552 third +40555 first +40559 second +40566 second +40568 third +40583 third +40590 third +40592 second +40602 third +40605 third +40607 first +40612 second +40615 second +40623 third +40630 third +40632 second +40636 third +40645 first +40650 second +40653 second +40655 third +40660 third +40668 third +40675 third +40677 third +40681 second +40686 first +40695 first +second +40703 third +40707 third +40710 second +40718 first +40722 first +40726 third +40734 second +40737 third +40747 second +40756 third +40770 third +40772 third +40775 second +40780 third +40786 third +40788 third +40799 third +40802 third +40808 third +40811 third +40817 second +40825 third +40830 third +40837 third +40849 third +40851 second +40857 third +40874 third +40879 third +40888 third +40898 third +40901 third +40908 first +40911 third +40917 third +40922 third +40924 third +40932 third +40939 third +40941 first +40947 third +40952 third +40959 third +40962 third +40974 third +40984 third +40987 second +40994 first +40997 third +41001 third +41005 third +41009 third +41013 second +41022 second +41026 third +41029 first +41032 second +41034 second +41036 first +41040 first +41046 second +41048 third +41052 first +41054 second +second +41062 third +41071 second +41091 third +41102 third +41109 second +third +41113 third +41116 third +41119 third +41125 third +41130 second +41132 second +41136 third +41140 third +41143 second +41147 second +first +41152 first +41159 first +41161 third +41172 third +41190 first +41206 second +second +third +41214 first +41218 second +41221 third +41223 second +41231 third +41248 third +41252 second +41256 third +41263 third +41270 third +41278 third +41281 third +41284 third +41288 third +41296 third +41300 third +41308 third +41313 third +41322 third +41327 second +41333 second +41341 third +41352 third +41354 second +41359 second +41368 second +41370 second +41377 third +41381 third +41384 second +41387 third +41400 third +41405 third +41407 third +41413 second +41418 second +41437 third +41440 third +41446 second +second +41454 second +41457 third +41461 third +41474 third +41478 third +41487 third +41491 third +41495 third +41498 third +41509 second +41513 third +41515 third +41522 third +41525 first +41527 first +41532 first +41534 second +41539 third +41543 first +41545 first +41548 first +41550 second +41555 third +41557 first +41562 first +41568 third +41577 third +41581 second +41599 second +41602 third +41606 third +41608 second +41612 third +41614 third +41620 second +41627 second +41630 third +41635 first +41644 third +41649 third +41655 third +41660 third +41665 third +41691 third +41697 third +41702 third +41706 third +41720 third +41724 third +41740 third +41748 third +41752 third +41766 third +41769 third +41790 third +41801 third +41807 third +41820 third +41823 third +41831 third +41833 third +41839 third +41841 third +41853 third +41864 third +41866 third +41869 third +41889 third +41897 third +41902 third +41906 third +41917 third +41925 second +41928 first +41934 first +41942 third +41956 third +41964 third +41968 third +41971 third +41975 third +41979 third +41982 third +41988 second +41991 first +41995 first +41997 first +41999 third +42011 third +42014 third +42018 third +42025 second +42034 third +42048 third +42054 third +42064 third +42073 third +42077 third +42085 third +42094 third +42103 third +42108 third +42114 third +42120 third +42126 first +42128 first +42134 first +42137 first +42145 first +42150 second +42159 third +42169 third +42175 third +42178 third +42184 third +42187 third +42192 first +42200 first +42206 third +42214 second +42219 second +42222 second +42234 second +42239 second +42242 first +42249 third +42251 third +third +42255 third +42257 third +42260 third +42271 third +42274 third +42283 third +42286 third +42290 third +42296 third +42298 third +42309 third +42311 third +42314 third +42321 third +42326 third +42329 second +42332 first +42338 first +42342 second +42349 first +42363 third +second +42371 third +42378 second +42384 third +42389 third +42396 third +42398 third +42402 third +42404 third +42411 third +42414 third +42418 third +42428 third +42432 first +42435 second +42443 second +42447 third +42453 first +42458 third +42465 first +42467 first +first +42470 first +42473 first +42477 third +42492 third +42496 second +42502 third +42508 third +42510 second +42517 second +42521 third +42525 second +42528 third +42532 third +42534 second +42539 second +42542 third +42551 third +42569 third +42573 first +42575 second +42584 third +third +42599 third +42609 third +42618 second +42623 third +42631 second +42635 third +42639 third +42647 third +42651 third +42654 third +42658 third +42660 second +42666 third +42674 third +42677 third +42680 second +42690 third +42716 third +42721 third +42724 third +42746 third +42753 third +42757 third +42760 third +42773 third +42795 third +42800 third +42815 third +42820 third +42832 third +42845 third +42848 second +42851 second +42854 third +42862 third +42867 first +42873 third +42876 second +42878 second +42894 third +42897 second +42908 third +42917 third +42922 third +42924 third +42926 first +42930 second +42939 first +42943 third +42949 third +42957 third +42959 third +42964 third +42968 third +42977 third +42980 third +42982 third +42990 third +42996 third +third +42999 third +43005 third +43015 third +third +43021 third +43027 third +43033 third +43038 second +43041 third +43045 second +43049 third +second +43057 third +43062 third +43066 first +second +43070 third +43075 second +43079 third +43083 second +43089 second +43093 second +43095 second +43101 third +43117 third +43121 second +43124 third +43126 second +43128 first +43131 second +43134 first +43136 first +43140 second +43142 second +43145 third +43150 third +43157 second +43162 second +43166 first +43169 first +first +43172 third +43180 third +43192 third +43197 third +43201 third +43206 second +43210 third +43213 second +43218 third +43223 third +43230 third +third +43239 third +43250 third +43256 third +43260 third +43266 third +43278 third +43281 second +43285 third +43293 third +43298 third +43301 third +43303 third +43311 third +second +43317 second +43324 third +43326 third +43330 third +43333 second +43344 second +43346 third +43348 second +43350 second +43353 second +43355 second +43370 third +43372 third +43382 third +43395 third +43401 third +43410 third +third +third +third +43417 third +43423 third +43427 third +43431 third +43436 third +third +third +third +third +third +43445 third +43449 third +43456 third +43461 third +43468 third +43474 third +43486 third +43495 third +43499 second +43505 third +43510 third +43515 third +third +43518 first +43523 third +43530 third +43534 third +third +43543 third +43547 third +43550 third +43556 third +43565 third +43567 third +43582 third +43596 third +43602 third +43606 second +43614 third +43620 third +43628 first +43631 first +43641 first +43648 third +43651 third +43654 second +43660 third +43666 third +43679 third +43682 first +43685 third +43698 third +43705 third +43714 third +43725 third +43743 third +43746 first +43750 first +43765 first +43769 first +43772 first +43779 third +43788 third +43795 second +43799 first +43801 third +43815 third +43820 third +43822 third +43829 third +43834 third +43839 third +43842 second +43850 second +43855 third +43861 first +43866 third +43875 third +43879 third +43890 first +43892 third +43898 second +43909 second +43911 second +43913 second +43915 second +43917 second +second +43927 third +43930 first +43937 third +43942 third +43945 second +second +43948 second +43951 second +43957 second +second +43965 third +43967 third +43975 third +43987 third +43990 third +44005 third +44010 third +44014 third +44023 third +44025 third +44028 second +44033 first +44037 third +44040 first +44044 third +44046 third +44064 third +44082 third +44085 second +first +44090 third +44102 third +44106 third +44108 third +44110 third +44113 third +44120 third +44125 third +44127 third +44136 third +44140 third +44149 third +44158 third +44160 third +44163 third +44169 third +44171 third +44176 second +44181 third +44184 third +44189 third +44192 second +44198 third +44206 third +44210 first +second +44214 third +44217 first +44221 third +44223 second +44227 third +44231 third +44233 third +44243 third +44249 third +44253 second +44260 third +44266 third +44271 third +44274 third +44282 third +44288 third +44292 third +44297 third +44300 third +44307 third +44312 second +44321 third +44324 third +44326 third +44332 third +44338 third +44343 third +44348 second +44356 first +44361 first +first +44365 third +44376 third +44382 third +44384 third +44399 third +44412 third +44419 third +44423 third +44437 third +44442 third +44445 second +44448 first +44453 third +44456 third +44462 first +44468 third +44477 third +44484 third +44488 third +44491 third +44493 third +44503 third +44505 third +44514 second +second +44522 third +44530 third +44534 third +44542 second +44546 third +44549 second +44554 first +44559 first +44564 second +second +44568 second +44570 second +44573 second +third +44580 first +44584 second +44587 first +44593 first +44598 first +44603 second +44615 first +44619 third +second +44626 second +44633 third +44636 third +44639 first +44645 third +44653 third +third +44667 second +44670 second +44677 third +44683 third +44685 third +44696 third +44701 second +44709 second +44717 third +44721 second +44726 third +44729 second +44731 second +44737 third +44742 third +44744 third +44751 third +44758 second +44763 third +44769 third +44771 third +44784 third +44790 third +44808 third +44823 third +44848 third +44852 second +44858 third +first +44863 third +44866 third +44869 third +44873 third +44879 second +44891 third +44896 third +44901 third +44908 third +44911 third +44915 third +44925 third +44934 second +44945 third +44951 third +44953 third +44962 second +44966 third +44980 third +44993 third +44998 third +45002 third +45016 third +45026 third +45030 second +45036 second +45039 third +45048 third +45051 first +45056 second +45063 third +45069 third +45075 first +45078 third +45082 second +45086 first +45092 third +45096 third +45101 third +45108 third +45112 first +45118 first +45120 third +45129 third +45132 third +45136 third +45141 third +45152 third +45157 third +45162 third +45172 third +45175 third +45183 third +45185 third +45191 first +first +45200 third +45206 third +45211 third +45214 first +45218 third +45227 third +45230 third +45236 third +45238 third +45243 third +45249 third +45251 third +45256 third +45259 third +45265 third +45269 third +45280 third +45285 third +third +45289 third +45305 third +45309 third +45313 third +45319 third +45326 third +45340 third +45344 first +45347 second +45349 second +45352 second +45361 second +third +45374 third +45377 second +45380 third +45387 third +45391 third +45395 second +45407 third +45420 third +45431 third +45436 third +45441 third +45447 third +45449 third +45456 third +45464 third +45470 third +45478 third +45486 third +45489 third +45494 third +45504 third +45508 third +45512 third +45521 third +45523 third +45538 third +45540 third +45545 third +45548 third +45552 third +45559 third +45564 third +45569 third +45583 third +45590 third +45596 third +45599 second +45602 third +45607 third +45611 third +45620 third +45624 third +45629 second +45635 first +45647 third +45652 third +45658 third +45661 second +45687 third +45695 third +45697 third +45702 third +45713 third +45722 third +45724 first +45734 third +45742 third +45756 third +third +45769 third +third +45773 second +third +45779 third +45785 third +45787 third +45794 third +45800 third +45805 third +second +45808 second +45811 third +45818 first +45822 third +45824 second +45829 second +45834 second +45836 third +45846 third +45848 third +45865 third +45873 third +45878 third +45885 third +45901 third +45906 second +45916 first +45923 third +45932 second +45943 third +45947 second +45963 third +45968 second +45974 second +45980 second +45982 third +45991 third +46000 third +46007 third +46014 third +46033 third +46045 third +46049 third +46056 third +46062 third +46066 third +46101 third +46104 third +46121 second +46123 second +46128 third +46133 third +46136 second +46144 third +46149 second +46155 third +46160 second +46163 second +46166 third +46172 first +46177 third +46184 third +46190 third +46197 third +46199 second +46203 third +46215 third +46225 third +46236 second +46242 second +46257 third +46268 third +46279 third +46288 third +46297 third +46305 third +46308 third +46312 third +46327 third +46335 third +46338 third +46340 third +46345 third +46347 third +46356 third +46362 third +46367 third +46373 second +46378 first +46381 third +46383 second +46385 first +46388 third +46390 second +46396 third +46402 second +46409 third +46411 second +46416 third +46421 third +46431 first +46434 third +46439 second +46442 third +46444 third +46447 third +46452 third +46455 third +46462 third +46466 first +46478 first +46484 first +46488 third +46498 third +second +46502 second +46506 first +46510 first +46525 third +46530 third +46532 third +46536 third +46545 second +46573 second +46593 third +46601 third +46604 third +46611 third +46619 third +46627 third +46632 third +46638 third +46645 third +46655 third +46681 first +46687 second +46697 first +46700 third +46707 second +46709 second +46719 second +46730 second +46733 third +46742 first +46747 third +46755 second +46761 third +46767 first +46777 third +first +46782 third +46790 second +46792 third +46795 first +46805 second +46808 third +46811 third +46818 third +46826 third +46831 third +46834 first +46837 third +46845 third +46855 third +46858 third +46860 second +46866 third +46869 third +46872 third +46882 third +46892 third +46894 second +46901 third +46911 third +46915 second +second +46930 third +46932 third +46944 third +46946 third +46966 third +46973 third +46976 second +46978 second +46981 second +46987 second +46996 third +46999 third +47006 third +47014 second +47022 third +47025 first +47029 third +47039 third +47049 third +second +47057 third +47060 third +47077 second +47092 second +47099 third +47111 third +47113 third +47122 third +47133 third +47150 third +47155 third +47158 third +47161 first +47170 third +47175 second +47179 third +47182 first +47190 third +47198 third +47202 third +47204 third +47209 first +47211 second +47217 third +47223 third +47227 third +47235 third +47242 second +47248 third +47256 third +47262 third +47264 second +47266 third +47273 third +47279 third +47281 third +47291 third +47300 second +47303 second +47306 third +47310 first +47313 second +47316 first +47319 second +47324 third +47337 third +47341 second +47350 third +47352 second +47355 first +47358 third +47361 first +47366 first +47377 third +47383 third +47387 first +47407 third +47411 second +47420 third +47422 second +47426 third +47434 first +47442 third +47445 third +47463 third +47468 third +47476 third +third +47496 third +47499 third +47512 third +47520 third +47528 third +47531 third +47554 third +47559 third +47574 third +47591 third +47594 second +47604 second +47610 first +47617 second +47624 third +47629 second +47633 third +47639 first +47641 third +47644 second +47647 second +47652 third +47670 third +47678 third +47680 second +second +47686 third +47692 third +47697 first +47703 first +47706 third +47713 third +47719 third +47725 third +47735 third +47739 third +47745 third +47754 third +47763 third +47772 third +47774 third +47781 third +47785 second +47791 second +47798 second +third +47803 third +47812 third +47817 third +47819 third +47823 second +47829 second +47837 third +47842 third +47844 third +47854 third +47862 third +47878 third +47880 second +47884 third +47886 third +47892 third +47895 third +47900 third +47906 third +third +47911 third +47919 third +47932 second +47937 second +47940 third +47955 third +47959 second +47962 second +47972 third +47974 second +47983 second +47991 first +first +47997 third +47999 third +48001 second +48004 second +48010 third +48014 first +48018 second +48023 third +48030 third +48042 third +48054 third +48059 first +48066 third +48073 third +48082 third +48098 third +48100 third +48118 second +48130 third +48144 third +48153 third +48160 third +48164 third +48171 third +48178 third +48181 third +48187 third +48193 third +48198 third +48204 third +48212 third +48226 third +48229 third +48232 third +48242 third +48249 third +48257 second +48260 third +48276 third +48280 second +48287 third +48290 third +second +48293 third +48302 third +48320 third +48329 third +48339 third +48354 third +48360 third +48369 third +48375 third +48381 third +48386 third +48393 second +48401 third +48415 third +48424 third +48435 third +48441 third +48447 third +48455 second +48460 third +48467 third +48472 second +48476 second +48486 third +48491 third +48499 third +48516 third +48528 third +48532 first +48535 third +48550 third +48554 third +48561 third +48574 third +48581 third +48585 third +48594 third +48600 third +48604 third +48607 third +48621 third +48625 third +48645 third +48655 third +48660 third +48663 third +48667 third +48670 second +48676 third +48678 third +48683 third +48689 third +48699 third +48702 third +48708 third +48710 third +48715 third +48719 third +48727 third +48731 third +48737 third +48746 third +48750 third +48761 third +48765 third +48769 third +48776 third +48788 third +48793 third +48802 third +48806 third +48810 second +48815 third +48820 second +48830 first +48832 second +48835 second +48842 third +48846 second +48850 third +48866 third +48868 second +48874 third +48883 third +48885 third +48893 first +48901 third +48918 third +48927 third +48931 third +48963 second +48965 first +48975 second +48981 second +48986 third +48996 third +48999 third +49005 third +49009 third +49017 third +49024 third +49035 third +49041 third +49047 third +49051 third +49060 third +49064 third +49068 third +49072 third +49076 third +49087 third +49093 third +third +49103 third +49107 third +49113 third +49117 third +49123 third +49132 third +49135 third +49143 third +49149 third +49155 third +49159 third +49165 third +49168 third +49170 third +49197 third +49202 third +49204 third +49208 first +49222 third +49226 third +49229 third +49231 first +49238 third +49242 third +49250 first +49260 third +49269 third +49272 third +49284 third +49287 third +49293 third +49304 third +49308 second +49310 third +49313 third +49315 third +49319 first +49323 third +49329 second +49331 third +49333 first +49336 second +49339 third +49342 third +49345 second +49348 first +49353 second +49356 third +49363 second +49368 third +49374 third +49379 third +49382 third +49386 second +49390 second +49398 third +49404 first +49409 third +49413 second +49420 first +49424 first +49433 third +49438 third +49444 third +49451 third +second +49464 third +49468 first +49471 third +49476 third +49480 third +49483 first +49487 third +49492 first +49498 third +49502 first +49511 third +49516 first +49527 third +49531 second +49540 third +49547 first +49549 first +49552 third +49560 third +49574 third +second +49581 third +49588 third +49599 third +49602 second +49605 third +49609 third +49613 second +third +49616 second +49618 second +49620 third +49622 third +49624 third +49628 third +49633 third +49636 third +49653 third +49662 third +49664 first +49668 third +49671 third +49680 third +49682 second +49688 second +49691 third +49695 third +49701 third +49704 third +49708 second +49711 third +49722 third +49727 third +49730 third +49738 first +49747 third +49753 third +49756 third +49760 second +49762 second +third +49771 third +49774 second +49781 third +third +49787 second +third +49791 third +49803 first +third +49809 second +49818 second +third +49822 third +49825 first +49828 first +49833 second +49836 second +49838 third +49842 first +49844 second +49867 third +49873 third +49880 third +49894 third +49903 third +49905 third +49915 third +49919 third +49928 third +49930 second +49932 third +49949 third +49953 second +49958 third +49963 third +49965 second +49968 second +49973 third +49976 third +49985 third +49987 third +49989 third +49996 third +50002 third +50010 third +50013 third +50017 second +50027 third +50035 third +50040 third +50048 third +50065 third +50071 third +50077 third +50083 third +50104 third +50119 third +50123 third +50129 third +second +50134 second +50142 third +50148 third +50154 third +50157 third +50161 third +50165 second +50169 second +third +50173 third +50175 second +50183 first +50186 third +50193 third +50202 second +50206 third +50215 third +50218 third +50224 third +50226 third +50233 third +50238 third +50249 third +50259 third +50264 third +50276 third +50279 third +50285 third +50287 third +50292 third +50304 third +50309 third +50312 first +50316 second +50320 third +50326 second +50330 third +50335 third +50338 third +50342 first +50347 third +50350 third +50356 third +50362 third +50368 third +50379 third +50383 first +50388 third +50394 third +50407 third +50415 third +50417 second +50419 first +50421 third +50428 third +third +50434 second +50437 second +50439 third +50442 third +50444 third +50451 third +50454 third +50457 third +50460 third +50463 third +50466 second +50474 second +50477 first +50481 first +first +50485 first +first +50492 second +50496 first +50500 second +50503 first +50507 second +50510 third +50528 third +50535 third +50547 third +50552 third +50562 third +50570 third +50572 third +50577 third +50586 third +50591 third +50601 third +50606 third +50609 third +50620 third +50626 third +50631 third +50641 third +50651 third +50656 third +50662 third +50671 third +50676 third +50683 third +50687 third +50700 third +50704 third +50706 third +50718 third +50721 third +50723 third +50726 third +50733 third +50744 third +50749 third +50753 third +50761 second +second +50764 third +50767 third +50770 third +50773 third +50775 third +50781 third +50790 second +50792 first +50794 first +50801 first +50809 third +50821 third +50833 third +third +50845 third +50854 third +50859 third +50867 third +50869 third +50871 third +50873 third +50879 third +50885 third +50890 third +50893 third +50900 third +50905 third +50910 third +50915 third +50925 third +50934 third +50941 third +50946 third +50950 third +50957 third +50959 third +50966 third +50971 third +50975 third +50981 third +50988 third +50999 third +51006 third +51018 third +51024 third +51027 third +51034 third +51038 second +51045 third +51051 third +51053 third +51069 second +51072 third +51075 third +51078 third +51081 second +51088 third +51092 second +51097 second +51101 third +51105 third +51110 second +51114 third +51118 second +51126 second +51132 third +51140 third +51149 third +51152 third +51161 third +51166 third +51172 first +51176 third +51184 first +51186 third +51195 third +51201 second +51208 first +51210 first +51213 third +51215 second +second +51221 second +51223 third +51227 third +51229 first +51231 third +51236 second +51240 first +51244 second +51248 second +51250 third +51255 second +third +51261 first +51264 second +51273 third +51276 second +51280 third +51285 third +third +51290 second +51294 third +51305 second +51309 second +51312 second +51314 first +51316 first +51323 third +51325 third +51329 third +51334 third +51346 third +51361 third +third +51366 first +51372 third +51374 third +51376 third +51379 third +51387 first +51391 third +51396 third +51400 third +51403 third +51405 second +51408 second +51412 third +51419 third +51424 third +51427 second +second +51431 third +51435 first +51438 third +51441 third +51446 third +51452 third +51458 second +51461 third +51465 first +51470 second +51472 third +51479 third +51482 third +51488 third +51490 first +51497 first +51503 second +51507 third +51511 third +second +first +51515 second +51520 second +51525 third +51532 third +51534 third +51541 third +51552 third +51556 third +51564 first +51570 second +51572 third +51579 second +51588 third +51598 third +51602 first +51605 third +51610 third +51616 third +51623 third +51631 third +51638 first +51641 first +51643 first +51646 third +51657 third +51665 third +51674 third +51677 third +51681 third +51688 third +51697 third +51702 third +51710 third +51715 third +51721 third +51728 third +51735 third +51739 third +51741 third +51743 third +51748 third +51751 third +51761 second +51764 second +third +51771 second +51777 third +51781 second +51785 third +third +51792 third +51797 third +51804 third +51811 third +51813 third +51821 third +51823 third +51829 third +51834 third +51843 third +51850 third +51852 third +51864 third +51876 third +51881 third +51886 third +51903 third +51919 third +51924 third +51937 third +51940 third +51943 third +51967 third +third +51970 second +51973 third +51980 first +51983 third +51986 third +51994 first +51999 third +third +52004 second +second +52010 second +52013 third +52018 third +52023 third +52025 third +52032 third +52038 third +52041 third +52048 third +52056 third +second +52062 second +third +52066 third +52072 second +52074 second +52079 third +52081 third +52085 third +52093 third +52101 third +52103 second +52105 second +52107 second +52113 third +third +52118 third +52123 third +52131 third +52138 third +52143 third +52150 third +52152 first +52157 third +52165 third +52172 third +52181 third +52185 third +52189 first +52192 third +52201 third +52210 third +52216 third +52220 third +52224 third +52229 third +52234 third +52238 second +52243 third +52247 third +52253 third +third +52259 third +52265 third +52270 third +52274 third +52283 third +52291 first +52304 third +52311 third +52313 third +52322 first +52325 third +52329 third +52333 third +52343 third +52348 third +52356 third +52363 third +52370 third +52372 second +52375 third +52384 third +52389 third +52405 first +52412 first +first +52420 third +52423 first +52436 first +52443 third +52446 third +52452 first +52455 third +52459 third +52463 second +52467 third +52477 first +52480 first +52483 second +52485 third +52494 second +52504 first +52514 third +52519 first +52525 first +third +52533 third +52540 third +52547 second +52551 second +52554 second +52563 third +52568 second +second +52574 second +52582 third +52589 second +52595 second +52600 first +52602 first +52610 second +52614 first +52623 second +52627 third +52634 second +52636 second +52652 second +52654 second +52657 first +52662 third +52670 second +52673 second +52676 second +52682 third +52689 second +52694 second +52697 third +52708 third +52713 third +52717 third +52722 third +52729 third +52735 third +52754 third +52757 third +52761 first +52764 third +52768 third +52773 third +52776 third +third +52785 third +52791 third +third +52804 third +52808 third +52818 third +52821 third +52824 second +52829 third +52836 third +52844 third +52851 third +52860 third +52863 third +third +52868 second +52875 third +52877 third +52879 third +52890 third +52898 third +52900 third +52903 third +52915 third +52921 third +52923 third +52934 third +third +52946 third +52955 third +52958 third +52969 third +52978 third +52991 third +52994 third +52997 first +52999 second +53001 third +53009 third +53017 third +53027 third +53032 third +53040 third +53054 third +53057 third +53064 third +53072 third +53078 third +53084 third +53090 third +53102 third +53107 second +third +53113 third +53116 first +53118 second +53122 second +53126 second +53131 second +second +53152 third +53159 third +53161 third +53165 first +53167 first +53172 third +53175 third +53178 third +53184 second +53187 third +53190 third +53195 second +53198 first +53200 first +53203 second +53209 third +53214 third +53220 third +53224 third +53230 first +53234 third +53245 third +53259 third +53271 third +53276 second +53281 third +53286 first +53297 third +53305 third +53308 first +53312 second +53316 second +53319 third +53325 third +53333 first +53336 first +53342 first +53355 third +53364 third +53367 first +53371 first +53379 third +53395 third +53399 first +53407 third +53413 third +53415 first +53424 third +53427 third +53434 first +53442 third +53447 first +third +53451 third +53454 second +53458 third +53469 third +53472 first +53478 third +53484 third +53496 third +53503 third +53513 third +53518 first +53522 third +53526 first +53534 third +53541 third +53543 third +53555 third +53558 third +53560 first +53572 third +53577 third +53587 first +53591 third +53598 third +53605 third +53613 third +53619 first +53623 second +53631 second +53636 second +53650 third +53654 first +53665 third +53672 third +53685 third +53690 third +53696 first +53705 third +53709 third +53718 third +53722 third +53728 third +53733 third +53746 third +53748 third +53753 third +53763 third +53769 third +53773 third +53776 second +53783 third +53788 third +53794 third +53800 first +53803 third +53806 third +53808 third +53814 third +53816 third +53822 third +53828 third +53833 third +53836 first +53840 third +53846 third +53858 third +53866 third +53868 third +53876 second +53878 third +53885 first +53889 second +53892 first +53894 first +53897 second +53902 third +53911 first +53917 third +53919 third +53926 third +53936 third +53944 third +53950 third +53956 third +53965 third +53971 second +53974 second +53983 third +53988 second +53994 third +53996 third +54003 second +second +54013 third +54017 third +54026 third +54033 third +54036 third +54043 third +54046 first +54054 third +54056 second +54062 first +54072 third +54077 third +54083 third +54093 third +54103 third +54109 third +54111 third +54117 third +54124 third +54127 third +54130 third +54133 third +54139 third +54152 third +54158 third +54160 third +54167 third +54171 third +54175 third +54180 third +54188 third +54193 third +54201 third +54206 first +54215 third +54226 third +54232 third +54235 third +54243 third +54249 second +third +54254 second +54258 third +third +54262 third +54266 first +54269 second +54273 third +54282 third +54290 second +54294 third +54300 third +54305 second +54310 first +54314 second +54321 second +54323 third +54330 third +54333 third +54335 second +54337 third +54341 third +54345 third +54350 third +54355 first +54357 third +54362 third +54364 third +54366 third +54368 third +54378 second +54380 second +54382 first +54387 first +54389 third +54397 second +54399 first +54404 first +54407 third +54409 third +54414 third +54421 third +54430 third +54434 third +54438 third +54442 third +54445 third +third +54456 third +54464 third +54467 third +54475 first +54477 first +54482 second +54486 second +54489 first +54494 second +54496 third +54504 third +54508 first +54511 third +54523 third +54528 third +second +54533 second +54536 first +54541 second +54551 third +54555 third +54559 third +third +54564 third +54570 third +54580 third +54583 third +54589 third +54596 third +54601 third +54610 third +54612 third +54617 third +54619 third +54624 third +54632 third +54636 third +54648 third +54650 third +54655 third +54665 third +54670 third +54676 third +54685 third +54691 second +54693 third +54697 third +54704 third +54706 third +54713 second +54719 third +54736 third +third +54754 third +54759 third +54764 third +54766 third +third +54769 third +54777 second +second +54780 second +54787 third +54789 third +54797 third +54806 third +54814 third +54819 third +54822 third +54839 third +54845 third +54854 third +54861 second +54864 third +54868 third +54878 third +54884 third +54888 third +54899 third +54904 third +54916 third +54927 third +54947 third +54952 third +54959 third +54962 third +54966 third +54973 first +second +54977 second +54981 third +54986 first +54996 third +55001 third +55007 third +55014 second +55019 third +55021 third +55024 third +55028 first +55032 third +55037 first +55039 first +55042 first +55046 second +55048 first +55051 first +55056 second +55059 first +55064 first +55071 third +55075 first +55089 third +55096 third +55098 first +55104 third +55112 third +55115 third +55119 third +55123 second +55130 second +55136 second +55140 third +55150 third +55154 third +55159 third +55163 first +55165 second +55172 second +55175 first +55179 second +55181 third +55185 third +55188 third +55191 first +55195 second +55197 third +55203 second +55208 first +55214 second +55217 first +55223 first +55226 second +55234 second +55237 first +second +55244 third +55248 second +third +55258 first +55260 first +55272 third +55275 first +55279 first +55284 third +55289 third +55291 third +55295 second +55301 second +55304 first +55308 first +55312 third +55317 first +55324 third +55326 third +55334 first +55340 third +55344 third +55354 second +55363 second +55365 second +55371 third +55373 third +55378 first +55381 first +55385 second +55388 second +third +55395 first +55403 third +55411 third +55420 third +55429 third +55432 second +first +55437 second +55439 second +55448 third +55453 first +55457 first +55462 second +55466 second +third +55469 third +55475 third +third +55484 second +55489 second +55492 second +55500 first +55502 first +55509 third +55511 second +55517 third +55523 first +55528 first +third +55538 third +55540 second +55547 first +55549 first +55554 first +55558 third +55566 second +55569 second +55581 second +55589 second +55592 third +55600 third +55603 third +55608 third +55614 third +55617 third +55627 first +55629 second +55634 third +55640 first +55645 second +55656 third +55661 second +55667 second +third +55672 third +55676 first +55680 second +55684 second +third +55690 first +55692 first +55698 second +55703 first +55707 third +55714 first +55721 third +55725 third +55729 third +55734 first +55737 second +55739 third +55745 second +55751 third +55754 third +55762 second +55768 third +55772 third +55775 second +third +55780 first +55786 third +third +55796 second +55800 third +55803 second +55807 first +55810 first +55813 first +55815 first +55820 first +55826 first +55831 third +55833 third +55839 third +55841 third +55843 third +55851 second +55854 second +third +55860 first +55866 first +55868 third +55871 third +55876 third +55878 third +55884 third +55890 third +55898 third +55906 third +third +55911 third +55918 third +55925 third +55935 third +third +55940 third +55946 first +first +55953 third +55956 third +55962 third +55970 third +55972 second +second +55980 third +55983 third +55985 third +55987 third +56000 third +third +56004 third +56010 third +56013 third +56015 third +56020 third +56022 third +56025 first +56027 third +56031 third +56035 third +56043 third +56045 third +56050 third +56053 second +56058 second +56063 first +56065 third +56068 third +56070 third +56072 first +third +56082 third +56089 third +56093 third +56099 third +56105 third +56108 third +56111 third +56117 first +56119 first +56121 third +56127 third +56137 third +56139 third +56141 third +56149 third +56153 third +56159 second +56163 third +56169 third +56172 third +56175 third +56181 third +56184 third +56187 third +56194 third +56198 third +56204 second +56207 third +56210 third +56213 third +56218 third +first +56222 third +56229 third +56233 third +56235 first +56238 third +56244 first +56246 second +56248 third +56252 third +56254 third +56259 third +56264 third +56271 third +56274 third +56280 third +56283 third +56285 second +56287 third +56293 third +56296 third +56298 second +56303 first +56309 third +56311 third +56315 third +56317 first +56319 first +56324 first +56326 third +56329 third +56332 third +56336 third +56338 first +56343 second +56346 second +56351 second +56356 third +56359 third +56363 second +56369 first +56371 first +56374 third +56380 first +56382 third +third +56387 third +56394 third +56398 second +56400 third +56402 third +56406 first +56412 third +56417 third +56422 third +56424 third +56429 third +56431 third +56438 third +56443 third +56446 third +56448 third +56453 second +56457 second +56460 third +56463 third +56466 third +56472 third +56474 second +56480 third +56483 third +56486 third +56489 first +56492 third +56497 second +56505 third +56508 third +first +56512 third +56515 third +56525 first +56530 third +56535 third +third +56546 third +56552 first +third +56559 second +56562 second +56566 second +56568 first +56572 third +56575 first +56593 third +56602 third +56609 third +56616 third +56621 third +56625 third +56631 third +56634 third +56639 third +56641 third +56649 third +56651 third +56656 third +56664 third +56671 third +56673 third +56675 third +56678 third +56684 first +56688 first +56695 third +56699 third +56704 third +56709 first +56716 third +third +56719 third +56721 third +56724 third +56728 third +56732 third +56734 third +56736 third +56738 first +56741 third +56744 third +56746 first +56758 third +56770 third +56774 third +56779 third +56783 third +56787 third +56790 third +56793 third +56796 third +56802 first +56808 first +56812 third +56817 third +56822 first +56829 first +56836 first +56839 third +56847 third +56852 third +56854 third +56864 third +56867 first +56873 first +56876 third +56882 first +56887 first +56892 first +56899 first +56906 third +56915 third +56920 third +56922 third +56925 second +56927 third +56932 third +56936 third +56940 third +56948 third +56950 third +56962 third +56967 third +56974 second +56977 second +56980 second +56983 third +56987 first +56991 second +56996 first +57004 third +57010 second +57013 second +57026 third +57028 first +57031 third +57034 first +57041 third +57047 third +57058 third +57062 third +57065 third +57077 first +third +57084 third +57086 third +57093 first +57103 second +third +57112 first +57122 second +57125 third +57130 third +57138 first +57140 second +57143 third +57151 third +57154 third +57161 third +57163 third +57168 second +57170 second +57172 first +57176 first +57179 first +57186 second +57190 first +57194 second +57197 second +57199 second +57201 second +57212 third +57217 third +57223 third +57232 third +57238 third +57242 third +57246 third +57252 third +57256 third +57261 third +57264 third +57269 third +57285 third +57304 third +57306 third +57313 second +57315 second +third +57321 third +57326 third +57336 third +57344 third +57358 third +57360 third +57363 third +57366 third +57373 third +57376 first +57381 third +57387 third +57394 second +57396 third +57401 third +57406 third +57411 third +57418 third +57422 third +57426 third +57431 third +57435 third +57439 third +57445 third +57447 first +57449 first +57452 third +57458 third +third +57461 third +57470 third +57477 third +57480 third +57486 third +57488 first +57492 second +57495 first +57498 first +57502 third +57509 first +57513 first +57520 third +57530 third +57544 third +57551 third +57558 third +57561 third +57564 third +57571 third +57573 third +57580 second +57584 third +57590 first +57594 second +57597 third +57601 third +57605 third +57609 third +57613 first +57615 third +57623 third +57628 first +57639 third +third +57651 third +57655 second +57657 third +57662 first +57665 second +57680 third +57682 third +57691 third +57693 third +57698 third +third +57702 third +57707 third +57714 third +57720 third +57742 third +57744 third +third +57749 third +57754 third +57760 third +57762 third +57766 third +57775 second +57779 third +57786 third +57795 third +57799 third +57802 third +57804 second +57806 third +57809 second +57811 second +third +57816 third +57819 second +57821 third +57827 third +57829 third +57842 third +57849 third +57854 third +57858 third +57861 third +57864 second +57867 third +57876 third +57879 third +third +57885 first +57889 second +second +57896 third +57902 third +57907 third +57909 first +57912 second +57916 first +57920 second +57927 first +57929 third +57933 second +57939 third +57941 second +57943 third +57958 third +third +57963 second +57966 second +57982 third +third +57990 third +57995 third +57998 third +58001 third +58009 third +58011 first +58018 third +58020 first +58024 third +58028 third +58032 third +58051 third +58055 second +58058 second +58060 third +58065 third +58074 third +58080 third +58087 third +58089 third +58110 third +58118 third +58120 third +58127 third +58132 third +58145 third +58150 third +58157 third +58168 third +58171 third +58175 third +58183 third +58188 third +58193 third +58203 third +58205 third +third +58208 third +58218 third +58222 third +58225 third +58230 third +58237 third +58241 third +58257 third +58263 third +58273 third +58280 third +58298 third +58302 third +58305 third +58312 third +58317 third +58324 third +58326 third +58329 second +58338 third +58344 second +58351 second +58353 third +58362 third +58364 third +58373 third +58377 third +58381 third +58388 third +58395 third +58397 third +58413 third +58417 third +58423 third +58428 third +58446 third +58450 third +58453 second +58456 second +58460 third +58467 third +58475 third +58478 third +58481 third +58487 third +58490 third +58500 third +58505 third +58512 third +58517 third +58526 third +58529 second +58532 second +58534 second +58539 third +58541 third +58548 third +58554 third +58562 third +58566 first +58570 third +58574 third +58577 third +58582 third +58588 third +58591 third +58595 third +58602 first +58614 third +58617 third +58620 third +58623 third +58629 third +58644 third +58649 third +58651 third +58654 first +58662 third +58666 third +third +58675 third +58678 first +58680 second +58689 first +58695 second +58700 third +58706 first +58709 first +58717 third +58721 third +58724 third +third +58728 third +58735 third +58740 third +58751 third +58755 first +58760 first +58765 third +58769 third +58772 third +58777 first +58784 third +58790 second +58793 third +58800 third +58807 third +58818 third +second +58823 second +58828 third +58836 third +58838 third +58842 second +second +58850 second +58852 third +58856 third +58867 third +58876 third +58878 third +58881 third +58890 third +58894 third +58898 third +58900 third +58905 third +58911 third +58915 third +58919 third +58921 first +58924 third +58927 third +58932 third +58942 third +58950 third +58954 third +58956 third +58969 third +58971 third +58977 third +58989 third +58998 first +59009 third +59013 third +59019 third +59022 first +59026 first +59028 first +59033 first +59045 third +59052 first +59054 third +59065 first +59074 third +59076 first +59079 first +59081 first +59088 third +59092 first +59094 third +59099 first +59110 third +59115 third +59132 third +59145 third +59153 third +59164 third +59169 third +third +59175 third +59181 third +59184 third +59190 third +59201 third +59204 third +59208 third +59212 second +59216 third +59219 third +59223 first +59226 second +59229 second +59232 third +59237 second +59244 third +59249 first +59252 second +59256 third +59273 third +59279 third +59287 third +59293 second +59298 third +59304 third +59309 second +59312 third +59317 third +59322 third +59324 third +59326 second +59328 first +59331 second +59340 second +59342 first +59351 first +59357 second +59364 first +59369 first +59373 second +59376 first +59379 third +59393 second +59395 second +59397 second +59403 first +59405 first +59407 first +59412 third +59418 third +59426 first +59432 second +59434 third +59437 first +59440 first +59446 first +59448 third +59453 third +59460 third +59464 third +59466 third +59469 first +59475 third +59477 third +59485 third +third +59499 third +59503 third +59508 third +59510 second +59512 third +59515 third +59524 third +59528 third +59530 third +59533 third +59537 first +59541 first +59547 third +59549 third +59558 third +59564 third +59568 second +second +59572 third +59579 third +59583 third +59587 third +59590 third +59593 second +59596 first +59605 third +59611 third +59614 third +59618 third +third +59622 third +59630 third +59636 third +59642 third +59648 third +59655 first +second +59660 first +59666 first +59670 second +59673 first +59677 first +59680 second +59683 first +59688 second +59692 third +59697 second +59700 second +59703 third +59709 second +third +59713 first +59718 second +59720 second +59722 third +59729 first +59738 first +third +59746 second +59749 first +59754 third +59757 second +59761 third +59765 second +59772 second +59781 third +59786 first +59789 first +59795 first +59797 first +59801 first +59803 first +59809 first +59813 second +59817 first +second +59821 third +59826 first +59828 second +59830 first +59833 third +59837 first +59847 third +59856 second +59863 second +59866 second +59869 second +third +59874 second +59879 third +59881 third +59889 first +59892 second +59898 third +59903 second +second +59909 second +59920 third +59925 first +59930 first +59937 third +59941 second +59960 second +59963 first +59973 first +59975 third +59979 third +59985 first +59990 second +59996 first +59998 third +60006 second +60013 first +60015 second +60021 second +60023 first +60029 third +60032 third +60047 third +60050 third +60053 third +60055 second +60060 third +60064 third +60066 first +60069 first +60079 third +60082 second +60086 first +60089 second +60094 second +60118 third +60126 third +60132 first +60135 first +60138 third +60147 third +60149 second +60157 third +60160 third +60164 third +60169 third +60174 third +60179 first +60184 first +60193 third +60198 second +60200 third +60208 first +60221 third +60230 third +60233 third +60237 first +60241 first +60246 first +60252 third +60254 first +60257 third +60262 third +second +60266 first +60268 first +60270 first +60274 second +60277 second +60279 first +60288 third +60291 first +60297 third +second +60301 first +60305 third +60314 third +60318 third +60322 first +60327 third +60332 first +second +first +60337 first +60348 third +60356 third +60363 third +60368 third +60372 second +60377 first +60379 second +60389 third +60396 third +60407 second +60409 first +60423 third +60430 second +60436 third +60439 third +60445 third +60447 third +60453 third +60455 third +60457 second +60466 third +60469 second +second +60472 third +60476 third +60483 second +60485 second +60489 third +60495 first +second +60506 second +second +60519 first +60521 first +60527 first +60536 third +60541 third +60543 third +60549 second +60552 first +60558 third +60564 third +60572 second +60574 second +60577 first +60580 first +60587 third +60589 third +60595 first +60600 first +60605 first +60610 second +60613 first +60616 first +60620 second +60623 second +60628 third +60633 second +60640 third +60643 first +60646 second +60652 third +second +60658 third +60663 second +60669 third +60676 second +60679 first +60686 third +60690 second +60695 first +60698 third +60706 third +60709 third +60714 third +60718 third +60722 third +60731 third +60737 first +60739 first +60743 third +60748 third +60760 third +60765 first +60771 third +60774 third +60778 third +60780 third +60789 third +60799 third +60803 third +60808 first +60821 third +60823 third +60829 second +60835 second +60837 first +60841 second +60843 third +60846 third +60853 third +60860 third +60863 third +60870 first +60874 third +60878 second +60882 first +60890 first +60894 first +60897 first +60906 third +60909 second +60913 first +60917 third +60925 first +60927 third +60931 first +60935 first +60940 third +60945 first +first +60953 third +60969 third +60979 first +60982 second +60993 third +60995 first +61001 second +61006 third +61012 third +61020 third +61025 third +third +61030 third +61034 third +61039 third +61041 third +61045 third +61049 third +61052 first +61057 third +61059 third +61064 second +61070 second +61073 third +61081 third +61084 third +61089 second +61095 second +61099 first +61104 third +61106 third +61109 third +61113 first +61115 third +third +61119 third +61123 third +61127 second +61131 first +61135 second +61141 second +61145 first +61148 second +61150 second +61155 third +61157 second +61164 third +61168 third +61170 third +61172 third +61178 third +61182 third +61189 third +61200 second +61203 first +61206 third +61215 third +61225 second +61229 first +61233 second +61236 third +61245 second +61251 second +61253 second +61258 third +61263 first +61265 third +61271 first +61278 first +61288 second +61291 first +61295 first +61304 third +61309 second +61311 second +61317 first +first +61323 first +61328 first +61332 first +61336 third +61340 second +61344 second +61348 second +61350 first +61352 second +61357 second +61361 third +61364 first +61368 second +third +61373 second +second +third +61378 third +61380 second +61387 second +61390 first +61397 third +61399 first +61405 second +61410 second +61412 second +61414 first +61418 third +61428 third +61430 third +61433 second +61440 third +61443 second +61451 second +61453 third +61459 third +61464 third +61472 second +61477 first +61485 second +61488 first +61492 second +61500 first +61508 first +61515 second +61521 third +61524 second +61529 third +61531 third +61535 second +61539 third +61544 second +61546 first +61550 third +61552 third +61557 first +61559 third +61563 second +61567 first +61572 first +61576 second +61580 third +61586 third +61592 first +61597 first +61606 third +61610 first +61613 second +61620 second +61623 third +61628 first +61632 first +61639 second +61642 first +61647 third +61657 third +61662 first +61665 first +61670 third +61679 first +61687 third +61691 third +61698 first +61703 first +61705 second +61712 second +61721 third +61725 first +61729 second +61739 third +61742 second +61747 first +61756 first +61759 third +61769 first +61785 third +61799 third +61803 third +61807 second +61812 second +61814 first +61817 third +61830 third +61835 third +61841 second +61843 second +61847 second +61850 second +61852 first +61855 first +61858 third +61862 third +61868 second +61871 second +61883 third +61887 first +61890 third +61894 second +61896 first +61902 first +61907 second +61911 third +61918 third +61929 third +61933 third +61940 third +61950 third +61972 third +61988 third +61990 third +61993 second +third +61999 third +62002 first +62004 third +62014 third +62017 first +third +62023 third +62027 third +62030 second +62033 third +62037 third +62039 first +62043 first +62047 second +second +62052 third +62056 third +62059 second +62062 first +62071 third +62074 third +62080 third +62087 third +62093 third +62098 second +62107 third +62113 first +62126 third +62130 third +62133 third +62138 third +62143 third +62149 third +62156 third +62164 third +62176 third +62181 third +62192 third +62198 third +62208 third +62212 third +62216 third +62232 second +third +62236 first +62238 third +62248 third +62250 third +62257 third +62264 third +62276 third +62281 first +62286 first +62297 third +62301 first +62305 second +second +62310 first +62312 second +62314 third +62316 first +62326 third +62332 second +62335 third +62340 first +second +62350 second +62352 third +62364 third +62369 third +62378 second +third +62382 third +62384 first +third +62395 third +62401 first +62410 third +62415 third +62417 third +62427 third +62432 third +62438 third +62440 third +62444 third +62451 third +62457 second +third +62460 third +62464 third +62471 first +62474 third +62478 second +62486 second +62488 third +62494 third +62502 third +62504 third +62508 third +62511 third +62519 third +62523 third +62526 second +62531 third +62537 second +62540 third +62544 third +62550 first +62558 third +62562 second +third +62570 third +62580 third +62590 third +62593 first +62603 third +62606 third +62612 second +62614 third +62618 second +62621 first +62625 first +62629 first +62634 first +62643 third +62647 third +62652 third +62658 third +62663 third +62667 first +62672 third +62677 first +62683 second +first +62691 third +62700 third +62706 third +62712 third +62720 third +62727 third +62730 third +62734 third +second +62741 third +62745 third +62751 third +62753 second +first +62759 second +62763 first +62767 third +62780 third +62782 second +62787 third +62794 third +62796 second +second +third +62802 second +62806 second +62810 first +62814 third +62820 first +62825 third +62831 third +62834 third +62841 third +62843 third +62849 third +62853 second +62860 third +62863 third +62869 second +62871 second +62874 first +62879 first +62882 third +62885 second +62892 third +62904 third +62909 third +62915 third +62919 second +62921 second +62930 third +62940 third +62945 third +62956 third +62961 third +62965 third +62968 second +62973 third +62975 second +second +second +62979 third +62986 first +third +62991 first +62998 third +63002 third +63004 third +63012 third +63019 third +63024 third +63038 third +63044 third +63049 third +63062 third +63070 third +63074 third +63078 third +63084 third +63092 second +63100 third +63104 first +third +63109 first +first +63115 third +63118 third +63123 third +63133 third +63144 third +63148 first +63151 first +63155 third +63159 third +third +63170 third +63177 third +63179 third +63212 third +third +63217 second +63222 third +63225 second +63234 third +63249 third +63251 third +63254 third +first +63259 third +63267 third +63273 third +63278 third +third +63284 third +63292 third +63295 third +63305 third +63312 third +63316 third +63321 third +63323 third +63328 third +63345 third +63350 third +63362 third +63364 third +63372 third +63375 third +63381 third +63384 third +63388 second +63390 third +63395 third +63399 third +63404 third +third +63408 third +63412 third +63430 third +63436 third +63440 third +63442 third +63447 third +63466 third +63472 third +63480 third +63485 third +63490 third +63502 third +63513 third +63516 third +63527 third +63536 third +63544 third +63546 third +63556 third +63560 third +63562 third +63570 first +63572 third +63575 third +63583 third +63588 third +63596 third +63601 third +63608 third +63614 third +63616 third +63623 third +63628 third +63636 third +63654 third +63666 third +63668 third +63671 third +63675 third +63681 third +63689 third +63697 third +third +63703 third +63710 third +63725 third +63730 second +third +63734 third +63740 first +63742 third +63746 third +63751 third +63757 third +63760 third +third +63766 second +63768 second +63774 third +third +63780 second +63782 second +63785 second +63789 first +third +63796 third +63801 third +63803 third +63808 second +63811 first +63816 second +63822 second +63824 first +63838 third +63846 first +63851 third +63867 third +63875 third +63879 third +63884 third +63891 third +63900 third +63907 third +63915 third +63920 first +63925 third +63927 third +63929 second +63933 second +63937 third +63941 second +third +63953 third +63957 third +63960 third +63965 first +63970 third +63974 first +63984 first +63994 first +64004 first +64010 third +64019 third +64026 third +64031 third +64035 third +64038 second +64044 second +64049 second +64054 second +64061 second +64065 third +64068 third +64077 third +64082 second +64084 second +64097 third +64105 third +64113 third +64115 second +64118 third +64129 second +64136 third +64148 third +64150 third +64177 third +64181 first +64183 third +64185 first +64190 third +64192 third +64201 third +64207 third +64214 third +64219 third +64221 third +64228 second +third +64234 third +64236 second +64246 second +64248 third +64253 third +64260 third +64265 third +64272 third +64280 third +64283 third +64285 third +64288 third +64299 third +64302 third +64319 third +64323 third +64331 third +64335 second +64340 second +64342 third +64346 third +64362 third +64365 third +64369 second +second +64374 third +64379 second +64384 third +third +64388 third +64392 third +64401 third +64410 third +third +64419 second +64423 third +64428 second +64430 first +64432 third +64434 second +64438 third +64444 second +64446 third +64451 second +64453 first +64455 third +64457 second +64461 third +64467 second +64469 third +64473 third +64477 second +64480 third +64485 second +64487 second +64489 first +64491 third +64494 second +64500 first +64503 second +64505 second +64508 second +64510 second +64513 second +second +64520 third +64523 third +64526 second +64529 third +64533 third +64539 third +64541 second +64546 third +64550 third +64556 third +64565 third +64568 third +64577 third +64584 third +64591 first +64593 first +64599 second +64601 third +64613 third +64616 third +64622 third +64627 first +64629 first +64634 third +64646 first +64652 third +64654 third +64659 third +64664 third +64667 first +64682 first +64690 third +64700 third +64704 third +64707 third +64732 third +64745 second +64750 third +64757 second +64767 third +64776 second +64781 third +64786 third +64794 third +64800 second +64809 second +64832 third +64835 third +64844 third +64851 second +64854 third +64861 third +64865 second +64881 third +64884 second +64891 third +64900 third +64908 third +64912 third +64914 third +64942 third +64971 third +64973 third +64984 third +64989 third +65007 third +65011 third +65020 third +65029 third +65032 third +65039 third +65055 third +65059 third +65063 third +65070 third +65079 third +65082 third +65091 third +65093 third +65108 third +65121 third +65128 third +65134 third +65139 second +65141 second +65157 third +65166 third +65170 third +65176 third +65189 third +65196 third +65207 third +65212 third +65215 third +65222 third +65228 third +65233 third +65240 third +65244 third +65263 third +65267 third +65269 third +65278 third +65280 third +65282 second +65288 third +65293 first +65301 first +65344 first +65355 third +65358 third +65363 third +65370 third +65374 third +65382 third +65387 third +65399 third +65401 second +65409 second +65411 third +65413 third +65420 third +65428 third +65433 third +65436 first +65445 third +65458 third +65464 third +65479 first +65485 third +65487 first +65507 third +65524 third +65528 third +65532 third +65535 second +65555 third +65565 second +65579 second +65583 third +65591 third +65599 third +65602 first +65613 third +65616 first +65619 third +65624 third +65634 third +65639 second +65646 second +65652 second +65656 second +65677 third +65679 third +65684 third +65698 third +65713 third +65721 third +65728 third +65733 third +65739 first +65758 third +65763 second +65765 second +65769 third +65774 third +65776 third +65781 second +65787 first +65797 third +65806 third +65815 second +65818 third +65822 third +65831 first +65838 second +65840 third +65854 second +65862 third +65876 third +65885 third +65887 third +65890 second +65904 third +65906 third +65915 third +65932 third +65944 third +65952 third +65961 third +65963 third +65970 third +65984 third +66004 third +66016 third +66036 third +66038 third +66068 third +66079 third +second +66085 third +66093 third +66099 third +66103 first +66106 first +66114 second +66121 third +66125 third +66134 third +66136 third +66138 third +66152 third +66163 third +66167 third +66180 third +66196 third +66213 third +66220 second +66226 second +66248 third +66256 second +66258 second +66271 second +66273 second +66283 second +66287 third +66293 first +66303 second +66305 second +third +66316 third +66327 first +66331 second +66341 third +66351 third +66354 second +66356 second +66365 third +66373 third +66379 third +66389 third +66402 third +66406 third +66417 second +66422 third +66426 third +66432 third +66436 third +66451 third +66453 third +66458 second +66469 third +66482 third +66496 third +66514 third +66544 third +66549 third +66556 third +66565 third +66567 third +66575 third +66603 third +66613 third +66621 second +66629 third +66640 first +66648 third +66650 third +66668 second +66672 third +66678 third +66683 third +66699 third +66707 third +66719 third +66735 third +66738 third +66740 third +66746 third +66758 third +66766 third +66771 first +66780 third +66790 first +66797 third +66801 first +66814 third +66831 third +66836 third +66846 second +66849 first +66852 first +66854 first +66860 third +66866 third +66873 third +66883 third +66888 third +66896 third +66901 third +66910 third +66915 third +66921 third +66953 third +66957 third +66959 third +66967 third +66980 third +66994 second +67014 third +67019 second +67025 second +67060 third +67065 third +67068 third +67074 third +67089 third +67100 third +67102 third +67109 third +67122 third +67130 third +67139 third +67141 third +67147 third +67154 third +67160 third +67170 third +67182 third +67186 third +67202 third +67205 third +67222 third +67224 third +67230 third +67252 third +67259 third +67262 second +67271 second +67284 third +67286 third +67297 third +67301 third +67303 third +67316 third +67318 third +67322 second +67328 second +67331 third +67341 third +67347 second +67359 third +67362 third +67369 third +67374 third +67379 third +67385 third +67404 third +67413 third +67424 third +67428 third +67434 third +67463 third +67467 third +67484 third +67499 third +67502 third +67509 third +67519 third +67527 third +second +67531 second +67545 third +67553 third +67562 third +67573 third +67584 third +67591 third +67594 first +67612 first +67615 third +67627 third +67632 third +67637 third +67640 second +67644 second +67648 third +67664 third +67670 third +67674 third +67678 third +67683 third +67689 first +67698 second +second +67706 second +67721 third +third +67733 third +67737 second +67747 third +67761 first +67772 third +67781 third +67783 third +67800 third +67807 third +67812 second +67820 second +67826 third +67833 third +67839 third +67843 third +67845 third +67847 third +67852 third +67862 third +67867 third +67871 third +67873 third +67877 first +67879 second +67885 second +67889 third +67899 third +67904 third +67906 second +67913 second +67915 third +67922 third +67931 third +67935 third +67942 third +67957 third +67972 third +67980 third +67997 third +68000 third +68011 second +68022 first +68036 first +68038 third +68046 third +68069 third +68075 third +68084 third +68086 third +68099 third +68108 third +68117 third +68141 third +68149 third +68151 third +68155 first +68166 third +68177 third +68180 third +68185 third +68193 third +68205 first +68213 third +68218 third +68222 third +68235 third +68243 third +68249 third +68252 third +68257 second +68262 third +68278 third +68281 second +68291 second +68298 first +68304 third +68314 third +68324 second +68327 third +68336 third +68353 third +68358 third +68367 third +68369 third +68378 third +first +68383 third +68387 third +68389 third +68396 third +68402 third +68406 third +68427 third +68431 third +68437 third +68445 third +68455 third +68466 third +68479 third +68491 third +68500 third +68507 third +68516 third +68530 third +68535 third +68542 third +68546 third +68551 third +68563 third +68569 third +68576 third +68578 third +68583 third +68590 third +68598 third +68614 third +68617 third +68622 third +68633 third +68639 third +68645 third +68651 third +68660 third +68664 third +68680 third +68682 third +68690 third +68700 third +68706 third +68711 third +68715 third +68722 second +68725 second +68732 third +68737 third +68747 second +68750 second +68755 third +68762 third +68768 third +68775 third +68792 third +68799 third +68820 third +68823 third +68827 second +68838 second +68841 third +68843 first +68856 first +68858 first +68863 second +first +68872 third +68876 third +68887 third +68898 third +68918 third +68928 third +68938 third +68962 third +68969 third +68976 third +68978 third +68988 second +68992 third +68999 third +69005 first +69007 third +69010 third +69016 third +69021 third +69029 third +69033 third +69041 third +69050 second +69060 second +69074 second +69078 first +69086 third +69094 third +69105 third +69108 third +69121 third +69134 third +69140 third +69148 third +69157 third +69161 third +69175 second +69177 third +69189 third +69205 second +69216 third +69221 third +69235 second +69237 second +69245 second +69249 third +69254 third +69268 third +69279 third +second +first +69299 third +69304 third +69313 third +69317 third +69328 third +69336 second +69344 third +69349 second +69357 third +69360 third +69366 third +69381 third +69393 third +69399 third +69406 third +69418 third +69425 third +69437 third +69442 third +69460 third +69470 third +69476 third +69478 third +69490 third +69507 third +69515 third +69524 third +69536 third +69550 third +69560 third +69563 third +69574 third +69582 third +69589 third +69597 third +69601 third +69606 third +69614 third +69622 third +69628 third +69643 third +69646 third +69650 second +69658 first +69661 third +69666 third +69674 third +69678 second +69687 third +69701 third +69707 second +69714 second +69719 third +69735 first +69740 third +second +69749 third +69754 second +69765 third +69773 third +69777 third +69781 second +69783 second +69796 third +69800 third +69802 second +69811 third +69818 third +69822 third +69832 third +69837 third +69842 second +69844 second +69852 third +69859 third +69862 second +69864 second +69867 third +69871 first +69875 third +69878 third +69891 third +third +69898 third +69909 third +69919 third +69924 third +69926 third +69939 third +first +69946 third +69967 third +69973 third +69977 third +69982 third +69985 second +69988 third +69992 third +69997 third +70009 third +70013 third +70019 third +70024 third +70030 third +70037 third +70042 third +70068 third +70079 third +70089 third +70096 third +70104 third +70114 third +70122 second +70124 third +70126 second +70131 first +70135 second +70137 second +70139 second +70144 third +70150 third +70157 third +70167 third +70178 third +70182 third +70186 third +70193 third +70195 third +70197 third +70205 third +70215 third +second +70225 second +70233 second +70241 second +third +70244 third +70254 third +70256 third +70259 first +70271 third +70276 third +70289 third +70294 second +70298 third +70316 first +70325 third +70327 third +70330 third +70340 third +70353 second +third +70357 second +70359 second +70364 third +70372 third +70375 third +70379 third +70381 third +70394 third +70399 third +70405 third +70410 third +70413 third +70427 third +70431 third +70438 third +70440 third +70449 third +70454 third +70457 third +70463 third +70470 third +70480 third +70490 third +70499 third +70505 third +70510 third +70516 third +70521 third +70527 third +70532 third +70538 third +70544 third +70559 third +70561 third +70567 third +70574 third +70579 third +70595 third +70610 third +70612 third +70626 third +70639 third +70642 third +70647 third +70651 second +70653 second +70657 third +70659 third +70669 third +70676 third +70683 third +70686 third +70693 third +70695 third +70705 third +70719 third +70722 third +70729 second +70736 third +70740 third +70745 third +70757 third +70773 third +70779 third +70781 second +70784 third +70792 third +70797 third +70806 third +70811 third +70817 third +70823 third +70867 third +70894 third +70896 third +70899 third +70908 third +70916 second +70921 second +70925 third +70928 third +70934 third +70940 third +70960 third +70974 third +70984 third +70987 third +70992 third +70997 third +71016 third +71029 third +71035 second +71037 second +71041 third +71046 first +71061 third +71064 second +71067 third +71072 third +71082 third +71087 third +71091 third +second +71105 third +71111 third +71118 third +71126 third +71129 second +71136 second +71138 second +71145 first +71153 third +second +71156 first +71158 second +71164 second +71167 third +71184 third +71202 third +71207 third +71217 third +71222 third +71229 third +71242 third +71255 third +71259 third +71262 second +71267 first +71271 third +71273 third +71277 third +71281 second +71284 third +71294 third +71304 first +71307 first +71310 second +71315 third +71323 first +71332 second +71334 third +71341 third +71343 third +71351 third +71356 second +71360 second +71363 third +71366 third +71375 first +71381 second +71390 first +71404 third +71407 first +71410 third +71426 third +71430 third +71440 third +71444 second +71460 third +71467 third +71476 third +71489 third +71497 third +71508 third +71515 third +71521 third +71538 first +71540 first +71549 third +71558 third +71572 third +71592 third +71604 third +71610 third +71623 third +71625 third +71634 third +71640 third +71651 third +71656 third +71665 third +71671 third +71686 third +71693 third +71697 third +71705 second +71711 second +71716 third +71721 first +71727 first +71744 third +71750 first +71752 first +71769 first +71776 second +71778 second +71780 first +71788 third +71794 third +71804 third +71807 second +71810 third +71814 third +71821 second +71825 third +71831 first +71838 third +71847 third +71856 first +71863 third +71866 third +71876 second +71880 second +71886 third +71892 second +71905 third +71919 first +71925 third +71928 third +71932 second +71941 third +71956 first +71964 third +71966 third +71980 third +71992 third +72008 third +72020 third +72030 third +72040 third +72045 third +72060 third +72073 third +72075 third +72085 third +72095 third +72101 third +72108 third +72112 third +72138 third +72151 third +72164 third +72171 third +72173 third +72187 third +72202 third +72215 third +72225 third +72228 third +72233 third +72240 third +72261 third +72267 third +72280 third +72290 third +72303 third +72307 second +72310 third +72313 third +72323 third +72326 second +72330 third +72338 third +72343 second +72345 second +72350 third +72353 third +72355 second +72360 second +72364 third +72367 third +72370 third +72377 third +72386 third +72399 third +72403 third +72408 third +72419 third +72421 first +72424 third +72431 third +72446 third +72460 third +72471 third +72486 third +72491 third +72502 third +second +72506 third +72511 third +72514 third +72519 third +72523 third +72526 third +72533 third +72539 third +72544 third +second +72553 third +72560 third +72571 third +72582 third +72591 third +72593 third +72600 third +72612 third +72635 third +72641 third +72649 third +72656 third +72664 third +72670 third +72672 third +72677 third +72689 third +72726 third +72732 second +72742 first +72753 third +72762 third +72767 third +72774 third +72785 third +72796 third +72806 third +72819 third +72826 third +72833 third +72855 third +72869 second +72879 second +72885 second +72895 third +72903 third +72911 third +72926 third +72936 third +72945 third +72959 third +72969 third +72978 third +72987 second +72995 third +73003 second +73010 third +73017 third +73028 third +73036 third +73048 third +73060 third +73066 third +73069 third +73086 third +73094 third +73096 first +73107 third +73120 third +73140 third +73144 third +73148 second +73150 first +73153 second +third +73159 first +73184 third +73207 third +73213 third +73219 third +73229 third +73235 third +73240 third +73254 third +73263 first +73274 third +73287 third +73290 second +73294 first +73298 third +73308 third +73310 first +73321 third +73323 second +73339 third +73341 third +73347 third +73353 third +73355 third +73359 third +73369 third +73375 second +73385 third +73387 second +73389 third +73395 second +73399 second +73401 second +73404 first +73414 second +73417 third +73422 third +73436 third +73452 third +73467 third +73479 third +73482 third +73495 third +third +73506 second +73510 second +73516 second +first +73523 third +73527 first +73545 third +73547 third +73553 third +73555 third +73561 third +73573 third +73585 third +73593 third +73608 third +73614 third +73620 third +73648 third +73650 third +73662 third +73685 third +73693 third +73704 third +73720 third +73734 third +73743 third +73751 third +73753 third +73763 third +73767 third +73770 second +73777 third +73779 third +73785 third +73787 third +73797 third +73801 third +73811 third +73836 third +73849 third +73859 second +73865 first +73877 third +73896 third +73908 third +73928 third +73936 third +73950 third +73963 third +73970 third +73984 third +74005 third +74025 third +74031 third +74036 third +74046 third +74050 third +74054 third +74064 third +74071 third +74073 third +74080 third +74086 third +74099 third +74105 second +74111 second +74127 third +74155 third +74167 third +74177 third +74188 third +74192 third +74196 third +74207 third +74217 third +74234 third +74240 second +74247 third +74267 third +74279 third +74294 second +74312 first +74314 first +74327 third +74332 third +74341 third +74354 third +74359 second +74362 third +74367 third +74377 third +74383 third +74386 first +74388 first +74398 first +74400 first +74404 third +74417 third +74423 third +74432 first +74470 third +74479 third +74536 first +74541 third +74550 first +third +74581 first +74593 third +74622 second +second +74628 third +74635 third +74640 third +74655 third +74659 third +74663 third +74677 third +74695 third +74701 first +74709 first +74715 third +74718 third +74728 third +74746 third +74766 third +74776 third +74785 third +74793 second +third +74808 third +74816 third +74825 third +74837 third +74844 third +74847 third +74850 third +74869 third +74873 third +74879 third +74901 third +74908 third +74917 third +74926 third +74930 third +74940 second +74946 third +74948 first +74954 third +74964 first +74977 third +74985 first +74998 first +75007 first +75010 first +75025 third +75031 third +75039 third +75044 third +75047 second +75058 second +75060 third +75063 third +75079 third +75090 third +75100 third +75102 third +75108 third +75119 third +first +75130 third +75140 third +75152 third +75164 third +75168 third +75175 third +75182 third +75187 third +75199 third +75206 third +75219 third +75229 third +75241 third +75245 third +75253 third +75261 third +75270 third +75286 third +75294 third +75301 second +75305 first +75310 third +75314 third +75323 third +75328 third +75330 first +75333 third +second +75340 second +75347 third +75369 third +75374 third +75387 third +75390 third +75398 third +75404 second +75409 third +75419 third +75423 second +75427 second +75433 third +75443 third +75450 third +75457 third +75459 third +75468 third +75472 third +75475 third +75479 third +75489 third +75495 third +75499 third +75507 third +75511 third +75521 third +75528 third +75537 third +75548 third +75555 first +75561 third +75563 third +75594 third +75602 third +75612 third +75629 third +75631 third +75640 third +75647 third +75665 third +75673 third +75689 third +75692 third +75698 third +75711 third +75719 third +75732 third +75743 third +75751 third +75763 third +75772 third +75785 third +75800 third +75803 third +75812 third +75825 third +75852 third +75856 third +75858 third +75866 third +75877 third +75885 third +75887 first +75901 second +75907 first +75911 third +75923 third +75939 third +75947 first +75955 first +75960 third +75966 second +75969 first +75992 third +75997 third +76010 third +76037 third +76040 third +76053 first +76055 first +76057 first +76065 third +76070 first +76077 first +76104 third +76111 third +76115 third +76124 third +76138 third +76141 third +first +76151 third +76160 third +76181 third +76213 third +76220 third +76224 third +76226 third +76231 third +76238 third +76245 third +76255 third +76275 third +76293 first +76297 third +76310 third +76318 third +76331 third +76333 third +76335 third +76345 second +76347 second +76350 second +76353 first +76358 third +76366 third +76373 third +76391 third +76398 third +76408 third +76422 third +76430 third +76441 first +76445 third +76456 second +76459 first +76465 third +76476 third +76485 third +76496 third +76512 third +76515 third +76519 third +76527 third +76538 third +76544 first +76550 third +76563 third +76570 third +76597 third +76601 third +76611 third +76613 third +76626 third +76637 third +76642 third +76657 third +76664 third +76675 third +76686 third +76707 third +76713 second +76721 first +76725 third +76727 third +76731 second +76734 third +76740 third +76743 third +76750 third +76757 third +76763 third +76776 third +76784 third +76787 third +76789 third +76800 third +76815 third +76817 third +76827 third +76839 third +76865 third +76896 third +76917 first +76923 third +76932 third +76940 third +76944 first +76948 first +76952 second +76961 third +76968 third +76982 third +76994 third +77000 third +77010 third +77026 third +77030 third +77035 third +77046 third +77048 third +77051 third +77053 third +77074 third +77092 third +77098 third +77118 third +77132 third +77134 second +77143 third +77145 second +77147 second +77161 third +77167 third +77177 third +77209 third +77216 third +77223 third +77229 third +77249 third +77264 third +77276 third +77280 third +77286 third +77289 third +77294 third +77306 third +77314 third +77317 third +77335 third +77341 third +77344 third +77361 third +77370 second +77390 third +77395 third +77398 third +third +77405 second +77410 third +77413 first +77425 first +77435 third +77452 third +77466 third +77485 third +77492 third +77515 third +77521 first +77530 first +77540 first +77555 third +77562 third +77568 third +77575 first +77598 third +77604 third +77610 third +77614 third +77616 second +77623 third +77639 third +77641 third +77646 third +77655 first +77667 third +77673 third +77680 first +77687 first +77693 first +77699 first +77703 third +77711 third +77718 third +77721 third +77737 third +77744 third +77747 third +77750 second +77756 first +77766 first +77786 first +77819 second +77824 first +77842 third +77850 third +77854 first +77860 first +77868 first +77882 second +77884 first +77887 second +77895 first +77900 first +77908 first +77915 first +77925 second +77938 third +77946 third +77953 first +77955 third +77972 third +77983 second +77991 first +78000 first +78027 first +78029 second +78039 third +78044 first +78049 third +78062 third +78064 third +78079 third +78082 third +78092 third +78100 third +78103 third +78109 third +78116 third +78123 first +78143 first +78152 first +78156 first +78163 third +78171 first +78178 third +78188 third +78194 first +78214 first +78217 first +78223 third +78234 first +78241 first +78250 first +78265 first +78270 third +78279 third +78304 third +78306 third +78314 third +78319 third +78325 third +78331 first +78333 first +78346 third +78350 second +78368 first +78379 first +78385 third +78392 first +78396 third +78407 first +78419 third +78426 third +78434 third +78441 third +78446 third +78459 third +78463 third +78465 second +78471 third +78480 third +78482 third +78486 second +78508 third +78510 third +78512 second +78515 second +78518 first +third +78529 second +78533 second +78537 third +78541 third +78545 third +78549 third +78551 second +78563 first +78588 third +78601 third +78610 third +78625 third +78630 third +78638 second +78640 third +78661 third +78666 third +78672 third +78682 third +78688 third +78692 third +78697 third +78705 third +78712 third +78719 third +78728 third +78735 third +78746 third +78754 third +78757 third +78762 third +78764 third +78767 third +78773 third +78787 third +78795 third +78799 third +78811 third +78817 second +78827 third +78831 third +78839 third +78841 second +78845 second +78865 third +78870 first +78881 first +78883 second +78898 third +78907 third +78916 second +78929 third +78932 third +78935 third +78937 first +78968 second +78974 first +78990 third +79006 first +79016 third +79018 third +79037 first +79042 first +79050 second +79053 first +79055 second +79058 third +79062 first +79068 second +79077 third +79080 third +79087 first +79089 first +79094 third +79098 second +79103 third +79108 third +79113 first +79125 first +79147 third +79151 second +79156 first +79161 third +79167 third +79185 second +79192 second +79194 second +79198 second +79200 second +79202 second +79211 third +79231 second +79233 second +79240 third +79246 first +79249 third +79252 first +79265 third +79274 first +79286 third +79289 second +79295 first +79298 third +79305 third +79310 second +79318 third +79334 third +79347 third +79352 third +79356 third +79360 third +79373 third +79382 third +79384 second +79392 third +79397 third +79399 second +79403 second +79406 third +79409 third +79418 first +79422 third +79426 first +79429 third +79440 third +79444 third +79448 third +79459 third +79463 third +79466 third +79478 third +79487 third +79494 first +79505 third +79518 third +79521 third +79528 second +79536 second +79542 third +79547 second +79549 third +79553 first +79556 third +79559 third +79566 second +79576 third +79582 third +79590 first +79598 first +79603 third +79610 third +79615 third +79625 third +79629 third +79641 third +79645 first +79653 third +79665 third +79670 third +79692 third +second +79696 second +79703 third +79716 third +79725 third +79729 third +79744 third +79746 first +79752 first +79758 second +79765 third +79783 first +79802 third +79812 third +79816 second +79821 third +79830 third +79835 third +79841 third +79863 third +79865 third +79869 second +79871 third +79875 third +79883 second +79897 second +79900 third +79908 third +79916 third +79920 third +79931 third +79939 second +79948 third +second +79959 third +79974 third +80008 first +80012 third +80020 third +80022 first +80027 first +80052 first +80075 third +80090 third +80105 third +80117 third +80123 third +first +80131 third +80144 third +80156 third +80165 third +80189 first +80201 first +first +80237 third +80240 first +80243 second +80252 first +80255 third +80264 third +80286 first +80293 third +80299 first +80304 third +80326 third +80332 third +80335 first +80343 third +80346 first +80371 third +80383 first +80405 first +80410 third +80434 third +80437 third +80443 third +80446 third +80458 first +80467 first +80472 third +80487 third +first +80522 third +80526 third +80550 third +80554 second +80558 first +80565 third +80575 third +80580 third +80594 third +80606 third +80612 third +80625 third +80632 third +80647 third +80660 third +80666 third +80671 third +80694 third +80701 third +80716 third +80735 first +80747 third +second +80759 third +80767 first +80771 third +80774 first +80779 second +80783 first +80788 first +80790 first +80796 third +80799 third +80802 third +80807 first +80815 third +80817 second +80820 second +80830 third +80840 third +80846 third +80854 third +80865 third +80879 first +80882 third +80894 third +80900 third +80916 first +80925 third +80930 first +80939 third +80949 third +80959 first +80961 third +80980 first +80985 first +80994 first +81000 third +81002 second +81035 third +81039 third +81050 second +81059 third +81074 first +81086 first +81096 first +81098 first +81112 first +81114 first +81118 third +81133 third +third +81145 third +81151 first +81154 first +81175 first +81197 third +81204 third +81214 first +81230 first +81244 third +81248 first +81254 third +81261 third +81265 first +81279 first +81290 first +81300 first +81310 first +81316 first +81341 first +81364 first +81376 second +81384 first +81386 second +81391 third +81393 first +81397 second +81399 second +81401 second +81409 first +81418 second +81422 first +81436 first +81473 first +81495 first +81515 third +81528 first +81545 third +81555 third +81573 third +second +81582 third +81586 third +81590 first +81596 first +81598 third +81607 first +81613 first +81617 third +81624 second +81627 first +81629 second +81639 second +81646 first +81670 first +81675 third +81691 third +81701 third +81709 third +81711 third +81717 third +81721 third +81728 third +81753 first +81763 first +81773 third +81782 first +81801 first +81816 third +81836 first +81845 first +81856 third +81874 third +81880 first +81912 third +81927 third +81933 third +81956 third +81963 third +81982 first +81989 first +81998 third +82008 third +82013 third +82021 third +82030 third +82046 third +82063 third +82067 third +82086 first +82093 third +82100 third +82108 first +82111 first +82115 second +82120 third +82122 second +third +82133 second +82136 first +82141 third +82145 third +82148 third +82158 third +82168 third +82177 third +82186 third +82196 first +82202 third +82227 third +82238 third +82245 second +82247 third +82255 third +82262 third +82264 third +82276 second +82280 first +82290 third +82298 third +82305 third +82312 third +82320 third +82323 first +82336 third +82348 third +82352 third +82354 third +82364 third +82366 third +82371 third +82387 third +82396 third +82404 third +82409 third +82417 third +82421 third +82425 third +82433 third +82438 third +82465 third +82474 first +82479 third +82483 third +82492 third +82521 third +82527 third +82539 third +82542 third +82555 third +82565 third +82570 third +82591 third +82602 third +82616 third +82618 third +82639 third +82653 third +82655 third +82660 third +82664 third +82673 first +82687 first +82692 first +82702 first +82708 first +82719 first +82727 third +82744 third +82748 first +82751 third +82763 third +82777 third +82796 first +82805 third +82819 first +82835 first +82849 first +82854 third +82860 first +82869 third +82871 third +82877 first +82882 second +82891 third +82894 third +82899 third +82907 third +82934 third +82939 third +82945 third +82957 third +82967 second +82973 second +82975 second +82979 second +82982 second +82986 second +82988 third +82998 third +83003 third +83006 third +83012 third +83016 third +83018 third +83020 first +83024 third +83029 third +83037 third +83039 third +83046 third +83080 third +83118 first +83135 second +83164 first +83178 third +83186 third +83190 first +83205 first +83216 first +83226 first +83230 first +83241 third +83257 first +83262 first +83267 first +83274 first +83293 first +83307 first +83313 third +83329 third +83335 third +83341 third +83343 third +83366 third +83373 third +83391 third +83404 third +83406 third +83408 third +83414 third +83422 third +83424 third +83442 third +83462 third +83471 third +83473 third +83480 third +83488 third +83500 third +83519 third +83536 third +83546 third +83552 third +83602 third +83606 third +83609 third +83614 second +83623 second +83627 second +83631 second +83635 first +83641 third +83650 second +83665 second +83682 second +83692 third +83701 second +83713 third +83782 third +83790 third +83793 third +83798 third +83801 third +83815 third +83827 third +83833 third +83836 third +83862 third +83880 second +83882 second +83885 second +83889 second +83893 second +83901 second +83931 second +83936 second +83941 second +83946 second +83950 second +83958 second +83966 third +83971 third +83975 third +83978 second +83983 second +83988 third +83997 third +84004 third +84006 third +84029 third +84081 third +84089 third +84099 third +84101 third +84103 third +84112 third +84115 second +84121 second +84133 third +84135 first +84146 first +84148 third +84151 third +84166 third +84176 first +84180 first +84183 third +84188 first +84192 third +84199 third +84202 first +84206 first +84216 third +84219 third +84224 third +84228 third +84234 third +84236 third +84238 third +84243 third +84254 third +84267 third +84285 third +84287 third +84295 first +84300 third +84305 third +84309 third +84312 third +84323 third +84339 third +84360 third +84364 third +84366 third +84384 third +84435 third +84447 first +84470 third +84481 first +84486 third +84489 first +84491 first +84505 third +third +84516 third +84518 third +84523 third +84532 third +84550 third +84559 third +84567 third +84575 third +84580 third +84586 third +84602 first +third +84612 third +84626 third +84703 third +84707 third +84714 third +84718 third +84751 third +84757 third +84771 third +84776 first +84783 third +84795 third +84804 third +84825 third +84829 third +84839 third +84842 third +84847 third +84853 third +84858 third +84866 third +84879 third +84885 third +84895 first +84910 first +84919 first +84921 first +84933 first +84942 third +84955 third +84961 third +84983 third +84989 third +84997 third +85000 third +85016 third +85026 first +85036 first +85048 first +85073 first +85085 third +85099 third +85103 third +85108 third +85114 third +85119 third +85138 third +85159 third +85180 third +85213 third +85232 third +85269 third +85280 third +85285 third +85287 third +85292 third +85295 third +85300 third +85310 third +85324 first +first +85331 third +85333 third +85335 first +85340 first +85344 second +85347 first +85355 first +85357 first +85367 third +85382 first +85386 first +85396 first +85404 third +85406 third +85420 third +85426 first +85429 first +85432 first +85441 third +85445 third +85448 third +85451 third +85455 third +third +85462 second +85478 third +85493 second +85502 second +85522 third +85525 second +85533 first +85536 first +85543 third +85545 second +85548 second +85554 second +85556 second +85570 second +85575 second +85580 second +85588 second +85592 first +85601 second +85616 second +85630 second +85632 second +85638 second +85643 second +85659 second +85691 second +85695 first +85699 third +85705 third +85713 third +85717 third +85720 third +85732 third +85734 third +85739 third +85743 third +85760 second +85778 first +85783 first +85795 third +85807 first +85814 first +85827 first +85832 third +85837 first +85847 first +85852 third +85854 second +85863 third +85875 first +85885 third +85888 first +85890 third +85908 third +85913 third +85931 third +85934 third +85939 third +85948 third +85958 first +85963 third +85967 first +85974 first +85976 first +85980 first +85982 first +85985 first +85987 first +85992 first +85994 first +first +86004 first +86013 first +86016 third +86020 third +86029 third +86040 first +86042 first +86046 first +86049 first +86054 first +86057 first +86060 first +86069 first +86082 third +86084 first +86094 first +86126 third +86149 first +86175 third +86192 third +86209 third +86220 third +86239 third +86275 third +86278 third +86287 third +86290 second +86300 third +86309 third +86312 third +86341 third +86350 third +86367 first +86379 second +second +86389 second +second +86395 third +86399 third +86402 second +86409 second +86414 first +86421 third +86426 first +86441 first +86444 first +86446 first +86473 third +86479 third +86493 third +86509 first +86514 third +86516 third +86536 first +86547 first +86552 third +86556 third +86559 third +86564 first +first +86568 first +86574 third +86581 first +86583 third +86585 first +86590 third +86598 third +86607 third +86611 first +86618 third +86628 third +86630 third +86647 third +86650 third +86653 third +86656 third +86659 third +86662 third +86665 first +86682 third +86687 third +86697 third +86699 third +86717 third +86724 third +86729 third +86749 third +86753 first +86757 first +86765 first +86771 first +86795 third +86811 first +86815 first +86827 third +86836 first +86854 third +86899 third +86914 third +86922 third +86926 third +86941 third +86953 first +86955 third +86989 third +86997 third +87002 third +87006 third +87009 first +87013 first +87016 first +87023 third +87027 third +first +87031 first +87033 first +87036 first +87050 third +87059 first +87062 first +87070 third +87081 third +third +87085 third +third +87088 second +87092 third +87098 third +87103 second +87110 third +87117 second +87121 third +87154 third +87165 third +87175 third +87180 third +87195 third +first +87209 third +87214 third +87221 third +87227 third +87232 third +87245 third +87251 third +87258 third +87264 third +87270 first +87275 first +87278 first +87285 third +87300 third +87311 third +87317 third +second +first +87333 third +87352 first +87357 third +87378 third +87390 third +87400 third +87409 third +87411 second +87417 third +87422 third +87427 third +87432 third +87439 third +87444 third +87455 third +87461 first +87464 second +87472 second +87481 third +87484 second +87487 third +87492 third +87496 third +87505 third +87508 third +87529 third +87533 third +87536 third +87540 third +87543 third +87546 third +87549 third +87554 third +87557 third +87559 third +87570 third +87575 third +87578 third +87594 first +87597 third +87603 third +87617 first +87621 third +87624 third +87626 first +87634 first +87638 third +87640 third +first +87647 first +87656 third +87660 first +87670 first +87672 third +87679 third +87684 first +87691 third +87698 third +87701 second +87705 third +87709 third +87719 third +87723 third +87725 first +87728 third +87734 third +87738 first +87744 third +87759 third +87770 third +87775 third +87779 third +87783 third +87787 third +87789 third +third +87811 third +third +87828 third +87841 second +87843 first +87845 third +87847 third +87849 third +87881 first +87889 first +87896 first +87899 first +87904 first +87944 third +87949 second +87960 second +87962 second +87967 second +87972 second +87978 second +third +87983 first +87987 third +87992 second +87995 second +87997 second +88007 third +88010 third +88012 second +88028 second +88034 second +88039 third +88042 third +88045 third +88059 second +88063 second +88072 third +88079 first +88087 second +88097 third +88104 third +88109 third +88111 third +third +88117 third +88129 first +88161 second +88166 second +88174 third +88182 third +88184 third +88194 third +88215 third +88222 third +88225 third +88228 third +88250 first +88273 second +88278 second +88299 first +88316 third +88326 third +88336 first +88345 third +88351 first +88451 second +88454 second +88457 second +88478 second +88506 second +88511 third +88515 first +third +88520 third +88524 second +88527 third +second +88535 second +88541 second +88546 second +88556 third +88559 third +88571 third +88581 third +88587 third +88591 third +88601 second +88608 second +88610 second +88617 third +88626 second +second +88633 third +88637 third +88663 second +88667 third +88672 second +88698 second +88710 third +88714 second +88716 second +88718 second +88720 second +88730 third +88733 second +88745 third +88771 first +88774 third +88778 third +88780 first +88786 first +88795 first +88809 second +88819 second +88827 second +88834 third +88841 third +88848 third +88856 third +88861 third +88864 second +88872 third +88874 third +88876 third +88878 third +88886 third +88892 third +88900 third +88906 third +88911 third +88913 third +88922 third +88924 third +88931 third +88935 third +88939 first +88942 first +88945 first +88948 first +88952 first +88955 first +88958 first +88963 third +88965 third +88971 third +88975 second +88983 second +88989 first +88995 third +first +88998 third +89002 third +89008 third +89018 third +89024 first +89027 second +89037 first +89039 first +89064 third +89068 second +89074 second +89078 third +89081 third +89087 third +89120 first +89134 second +89164 third +89168 second +89171 second +89182 third +89187 third +third +89200 third +89202 first +89219 third +89231 third +89234 third +89240 third +89245 third +89250 third +89263 first +89272 third +89287 second +89298 second +89304 third +89311 first +89335 third +89338 first +89346 first +89349 third +89351 second +89361 second +89365 third +89373 third +third +89387 third +89393 third +89416 first +89426 second +89438 first +89470 third +89481 first +89493 first +89498 third +89537 third +89544 first +89547 third +third +89551 third +89557 third +third +89561 first +89589 first +89594 first +89608 first +89611 first +89618 third +89634 third +89637 third +89644 third +89647 third +89663 first +89669 first +89678 first +89681 first +89706 first +89723 third +89733 first +89745 first +89760 second +89767 second +89773 third +89778 third +89784 second +89802 third +89804 first +89821 second +89827 third +89833 second +89837 third +89840 second +89851 third +89860 third +89863 second +89870 second +89882 second +89888 second +89893 second +89898 second +89907 second +89915 second +89921 third +89924 second +89936 second +89947 second +89964 second +89969 third +89978 first +89992 second +89995 second +90006 third +90017 third +90028 third +90032 first +90034 first +90051 third +90068 third +90083 first +90093 third +90103 third +90224 first +90244 second +90258 third +90278 third +90296 second +90309 first +90322 second +90326 third +90331 second +90345 third +90356 third +90358 first +90363 third +90366 first +90377 third +90382 third +90390 second +first +90395 first +90404 third +90410 second +90412 first +90419 first +90423 first +90425 third +90438 third +90453 third +90460 third +90462 third +first +90473 first +90484 third +90499 third +90507 third +90522 third +90526 third +90529 first +90560 third +90571 second +90592 third +90596 third +90604 third +90608 third +90622 third +90628 third +90631 third +90641 second +90646 third +90659 third +90664 third +90670 first +90685 first +90707 first +90733 third +90744 first +90763 first +90771 third +90787 third +90790 third +90797 third +90800 third +90804 third +90808 third +90814 third +90816 third +90824 third +90834 third +90843 third +90862 third +90876 first +90885 first +90894 first +90912 third +90921 third +90924 third +90928 third +90932 third +90939 third +90942 third +90946 third +90952 first +90955 first +90970 first +90975 second +90980 second +90984 second +90994 second +90998 second +91002 third +91005 first +91013 second +91016 third +91020 third +91025 second +91031 third +91033 first +91035 third +91039 third +91044 third +91060 third +91066 third +91072 first +91079 second +91092 first +91095 third +91098 third +91100 third +91103 third +91111 third +91117 third +91132 third +91136 third +91140 third +91146 third +91150 third +91152 third +91157 third +91159 third +91164 third +third +91168 third +91175 second +91179 second +91187 third +91194 third +third +91205 third +91207 second +91211 third +91214 third +91224 third +91226 third +91238 third +91240 third +91252 third +91258 third +91262 third +91268 third +91295 third +91306 third +91313 third +91318 third +91320 first +91330 first +91334 first +91339 first +91345 third +91351 second +91354 third +91359 third +91365 third +91374 third +91382 first +91392 second +91397 third +91404 second +91411 third +91413 second +91417 second +91421 second +91423 second +91429 second +91431 second +91434 second +91436 first +91438 second +91443 first +91445 first +91452 third +91457 first +91488 first +91490 first +91492 first +91494 first +91496 first +91498 first +91504 first +91506 first +91508 first +91515 first +91521 first +91533 second +91549 first +91551 first +91555 second +91559 first +91563 third +91573 third +91586 first +91594 third +91597 first +91604 third +91606 first +91627 second +91630 first +91640 third +91661 second +91665 second +91667 third +91687 first +91725 third +91737 second +91744 third +second +91750 second +91754 second +91762 third +91764 first +91781 first +91805 second +91812 first +91820 third +91846 second +91852 third +second +91859 third +91878 second +91884 third +91889 third +91893 second +91897 second +91900 first +91908 second +91915 second +91919 first +91922 third +91928 third +91939 third +91950 third +91953 second +91960 second +91965 second +91968 second +91970 second +91976 second +91982 third +91984 second +92007 third +92011 second +92013 second +92015 second +92017 second +92034 third +92038 third +92041 third +92045 first +92064 third +92085 third +92088 third +92094 second +92101 third +92108 first +92112 third +92115 second +92123 third +92125 third +third +92139 third +second +92147 third +92152 third +92160 third +92163 second +92174 third +92176 second +92181 second +92184 second +92187 second +92197 second +92211 third +92217 third +92224 third +92238 third +92251 third +92256 second +92266 second +92274 second +92277 third +92287 first +92294 first +92303 third +92315 first +92324 third +92330 third +third +92334 third +92341 first +92355 third +third +92361 third +92370 first +92378 third +92383 third +92388 third +92393 third +92398 third +92403 third +92407 third +92416 third +92430 third +92434 third +92439 third +third +92442 third +92454 third +92461 second +92465 second +92469 second +92473 second +92478 third +92483 third +92487 third +92494 first +92497 third +92499 third +92502 third +92505 third +92509 third +92514 third +92524 third +92527 third +92529 second +92532 third +92536 second +92540 second +92549 third +92554 third +92558 second +92560 second +92567 third +92570 third +92580 first +92583 first +92591 first +92605 second +92608 second +92610 second +92614 second +92619 second +92621 second +92624 third +92628 third +92633 third +92639 first +92643 first +92647 third +92658 third +92686 third +92693 first +92699 third +92704 third +92710 third +92715 third +92719 third +92728 third +92733 third +92744 third +92749 third +92759 first +92764 first +92782 third +92784 third +92788 third +92791 third +third +92794 third +third +92798 third +92809 third +92816 third +92826 third +92835 third +92841 third +92843 third +92847 third +92853 third +92857 third +92859 third +92866 third +92869 third +92875 first +92884 first +92888 first +92891 third +92895 third +92898 third +92902 third +92904 third +92909 third +92913 third +92922 first +92938 third +92948 third +92997 third +93004 third +93009 third +93015 first +first +93019 first +first +93022 second +93030 third +93036 third +93050 third +93057 third +93069 third +93084 second +93088 third +93094 first +93104 first +93106 first +93109 first +93116 first +93122 second +93128 first +93133 first +93141 second +93150 third +93154 first +93161 first +93184 first +93189 third +93194 third +93201 third +93204 third +93213 third +93218 first +93225 third +93231 third +93233 second +93239 third +93246 third +93250 third +93252 third +93270 first +93277 first +93283 third +93289 first +93295 first +93300 first +93306 second +93316 third +93323 third +93328 third +93340 first +93345 first +93349 third +93362 third +93365 first +93367 third +93373 third +93377 third +93380 first +93385 first +93387 first +93392 first +93395 third +93402 first +93422 first +93426 first +93428 first +93435 first +93451 first +93464 first +93467 first +93474 first +93477 first +93482 first +93485 first +93492 first +93494 second +93502 third +93505 third +93509 second +93511 second +93517 third +93524 third +93531 first +93536 first +93542 first +93547 first +93554 first +93558 first +93569 third +93575 third +93581 third +93595 third +93602 third +93604 third +93612 third +93621 third +93625 third +93633 third +93643 third +93646 second +93651 third +third +93659 third +93662 first +93666 third +93668 third +93674 first +93680 third +93685 third +93687 second +93691 third +93693 third +93700 third +93703 third +93713 third +93718 third +93720 third +93724 third +93734 third +93739 second +93741 third +93754 second +93760 first +second +93764 first +93770 first +93772 third +93781 first +93788 third +93796 first +93804 first +second +93818 third +93821 first +93825 third +93830 third +93834 third +93839 third +93842 first +93849 second +93857 second +93865 first +93871 first +93873 third +93877 third +93879 third +93883 third +93887 third +93897 second +93916 third +93919 second +93925 second +93935 third +93938 third +93940 second +93949 first +93964 third +93971 first +93973 first +93977 first +93980 second +93982 second +93985 second +93990 second +93992 second +94006 first +94017 third +94020 second +94025 first +94030 second +94033 first +94037 second +94039 first +94049 third +94069 third +94082 third +94087 third +94097 third +94100 third +94109 third +94114 third +94128 third +94131 third +94142 third +94154 third +94199 second +94201 third +94211 third +94217 third +94220 third +94224 third +94227 third +94233 third +94238 third +94245 first +94255 first +94265 second +94273 first +94281 first +94283 third +94294 third +94304 third +94313 third +94320 third +94323 third +94328 second +94339 second +94341 second +94346 first +94348 first +94353 first +94356 first +94362 first +94372 third +third +94377 third +94379 third +94381 third +94389 second +94408 third +94414 second +94417 second +94425 second +94432 second +94437 second +94440 third +94444 third +94448 third +94455 third +94464 third +94472 third +94477 third +94485 third +94487 third +94501 third +94506 first +94509 first +94515 first +94521 first +94530 second +94533 third +94536 third +94541 second +94547 first +first +94555 first +94558 second +94562 second +94570 second +94573 first +94581 third +94586 third +94598 third +94606 third +94614 third +94627 third +94641 third +94687 third +94698 third +94704 third +94708 third +94719 third +94734 first +94747 first +94752 third +94759 third +94764 first +94767 first +94775 third +94781 third +94786 first +94789 first +94797 third +94819 third +94829 third +94832 third +94850 third +94859 first +94869 first +94881 third +94888 first +94892 first +94899 third +94906 third +94910 third +94920 third +94930 third +94935 third +94938 third +94943 third +94945 third +94951 second +94961 third +94996 third +95002 third +95005 third +95007 second +95018 first +95027 first +95031 first +first +95040 first +95043 first +95053 first +95063 first +95065 first +95068 first +95075 first +95080 first +95084 first +95086 first +95089 third +third +95094 third +95098 third +95100 third +95102 third +95104 third +95108 third +95110 third +95114 third +95119 third +95123 third +95125 third +95127 third +95129 third +95133 third +95137 third +95140 third +95143 third +95147 first +95151 first +95154 third +95160 third +95162 first +95164 first +95167 first +95170 first +95174 first +95176 first +95181 first +95193 first +95198 first +95201 first +95204 third +95216 second +95220 second +95226 second +95233 third +95238 third +95241 third +95247 third +95257 third +95262 third +95264 first +95272 second +95284 third +95289 third +95294 first +95301 first +95305 first +95331 third +95333 third +95345 third +95347 third +95360 second +95362 third +95368 second +95371 third +95375 third +95384 first +95389 first +95405 second +95411 second +95413 second +95418 third +95420 third +95423 first +95428 third +95434 third +95437 third +first +95442 first +95446 first +95450 first +95456 second +95465 third +95474 second +95476 third +95481 second +95486 third +first +95494 first +95498 first +95508 first +95517 second +95523 second +95528 second +95532 third +95540 first +95547 third +95549 third +95556 third +95574 third +95583 third +95586 third +95591 third +95593 second +95597 third +95599 third +95604 third +95607 third +95616 third +95622 third +95632 third +95635 third +95638 second +95641 third +95643 third +95645 third +95647 third +95649 third +95653 third +95657 third +95669 third +95673 third +95675 third +95679 third +95689 third +95693 third +95698 third +95701 third +95703 second +95710 third +95713 third +95718 third +95721 third +95739 third +95742 third +95746 third +95751 third +95756 third +95762 third +95765 third +95777 third +95782 third +95785 third +95790 third +95792 first +95797 third +95801 third +third +95806 second +95814 second +95821 third +95824 first +95829 first +95833 second +95837 second +95841 second +95844 first +95847 second +95852 second +95854 first +95860 first +95863 third +95873 third +95876 third +95886 third +95892 third +95901 third +95906 third +95908 third +95917 third +95924 first +95931 first +95936 first +95944 first +95946 first +95956 third +95961 first +95978 first +95981 second +95985 third +95989 third +95991 third +95999 third +96005 third +96008 third +96013 third +96025 first +96031 first +96036 third +96041 third +96046 third +96051 third +96054 third +96059 third +96065 second +96076 third +96085 first +96090 first +96093 third +96116 third +96123 third +96144 third +96152 third +96161 third +96166 third +96178 third +96181 third +96188 third +96191 third +96202 third +96211 third +96218 third +96226 third +96236 third +96239 third +96245 first +96251 first +96257 first +96267 first +96277 third +first +96280 first +96283 first +96285 second +third +96291 second +96295 second +96300 third +96304 first +96306 third +96309 third +96315 third +96319 second +96321 third +96324 third +96327 second +96333 second +96338 third +96347 third +96351 third +96411 third +96420 third +96423 third +96426 third +96429 third +96432 third +96435 third +96438 third +96441 third +96445 third +96448 third +96453 third +third +96507 first +96512 first +96520 first +96530 third +96536 third +second +96540 first +96543 first +96546 first +96557 third +96561 third +96565 first +96567 third +96584 third +96590 third +96593 third +96598 third +96646 second +96662 third +96675 first +96683 second +96691 third +96696 third +96700 first +96703 third +96706 first +96709 second +96713 first +96723 third +96729 third +96731 first +96736 first +96739 first +96744 first +96747 first +96751 second +96754 first +96757 first +96764 first +96773 third +96775 first +96783 third +96793 third +96795 second +96798 third +96805 third +96812 third +96814 second +96819 third +96823 first +96834 first +96837 third +96846 third +96850 third +96852 third +96854 third +second +second +96860 second +second +96866 third +96868 first +96871 second +96876 third +96885 third +96890 second +96900 first +96914 third +96916 third +96924 second +96927 third +96933 third +96947 third +96952 second +96966 third +96969 third +96972 second +97069 first +97076 third +97087 third +97094 first +97102 first +97117 first +97128 second +97139 first +97156 first +97171 first +97175 first +97190 third +97193 third +97196 first +97200 third +97218 third +97226 third +97247 first +97256 first +97263 second +97266 second +97268 first +97272 second +97275 second +97282 first +97298 first +97306 second +97334 first +97337 first +97340 first +97342 third +97364 third +97388 third +97396 third +97448 first +97457 first +97462 first +97468 first +97475 second +97477 first +97491 first +97505 first +97512 first +97517 third +97528 third +97536 first +97543 second +97546 second +97550 first +97557 third +97560 third +97568 first +97591 third +97595 first +97605 first +97607 first +97615 second +97619 second +97625 first +97628 first +97636 first +97645 first +97663 first +97679 first +97708 first +97739 first +97760 first +first +97767 first +97781 second +97795 second +97820 first +97832 first +97847 third +97859 third +97863 third +97874 third +97903 third +97915 third +97924 third +97953 first +97958 third +97977 third +97995 third +98001 third +98007 third +98014 third +98018 third +98021 third +98029 third +98048 first +98064 first +98066 first +98068 first +98100 third +98108 third +98117 third +98135 third +98142 first +98161 third +98163 third +98180 first +98192 third +98236 third +98244 first +98253 third +98264 third +98280 first +98282 first +98285 first +98288 first +98300 third +98302 third +98319 third +98327 first +98335 third +98340 third +98357 third +98378 first +98387 third +98390 first +98402 first +98417 first +98425 first +98429 first +98435 third +98466 first +98473 first +98478 first +98480 first +98493 first +98511 third +98513 third +98521 third +98533 first +98536 first +98538 first +98548 first +98558 second +98570 first +98573 first +98580 third +98588 third +98592 third +98596 third +98600 third +98616 first +98621 first +98628 first +98638 third +second +third +98664 third +98687 first +98694 first +98697 second +98707 third +98710 first +98718 first +98729 third +98732 first +98738 first +98740 second +98744 second +98755 third +98835 second +first +98862 third +98868 third +98870 second +98874 second +98885 first +second +98890 second +98929 first +98931 third +98935 first +98939 first +98941 first +98946 third +98950 second +98955 second +98959 second +third +98963 first +98966 first +98972 second +98978 third +98987 first +99000 second +99003 first +99005 first +99007 first +99011 first +99013 first +99019 second +99035 first +99038 first +99053 third +99073 third +99092 third +99115 first +99121 first +99124 first +first +99134 third +99137 first +99140 second +99143 second +99147 second +99153 second +99165 third +99172 third +99174 second +99181 third +99199 second +99208 first +99235 first +99243 first +99249 third +99262 first +99264 first +99270 first +99280 third +99288 third +99299 second +99301 first +99305 first +99310 first +99339 third +99346 first +99373 first +99376 third +99392 third +99395 third +99406 second +99428 second +99432 first +99446 second +99457 third +99465 second +99470 first +99474 third +99484 second +99492 second +99510 third +99513 third +99518 third +99545 third +99551 third +99554 third +99559 third +99565 third +99585 third +99590 third +99594 first +99642 third +99652 first +99663 first +99669 first +99729 third +99734 first +99741 first +99745 third +99752 third +99756 first +99767 third +99774 first +99776 second +99780 third +99785 third +99788 first +99792 first +99800 first +99805 third +99809 third +99831 third +99840 third +99843 third +99855 third +99859 third +99874 second +99880 third +third +third +99888 third +99902 third +99904 third +99909 third +99922 third +99936 third +100006 first +100024 first +100028 first +100036 first +100054 first +100098 third +100105 second +100108 third +100113 third +100129 first +100135 third +100146 first +100149 first +100158 third +100176 third +100181 first +100194 first +100214 third +100221 first +100229 third +100245 first +100251 first +100299 third +100306 third +100312 third +first +second +100321 second +100324 first +100329 first +100339 first +100345 third +100351 third +100369 third +100374 first +100376 second +100381 second +100387 second +100389 second +100391 first +100417 first +100422 second +100429 first +100433 first +100447 first +100453 third +100465 first +100467 first +third +100478 third +100490 first +100494 third +100497 first +100499 first +100501 first +100510 third +third +100532 third +100544 third +100551 third +100557 first +100560 third +100570 second +100576 first +100578 first +100582 first +100595 third +100600 first +100603 second +100609 second +100613 third +100616 third +100619 third +100622 third +100628 third +100631 first +100635 first +100641 third +100644 first +first +100648 third +100651 third +100655 third +100659 third +100661 first +100682 first +100684 first +100686 first +100688 first +100693 first +100750 third +100753 first +100755 third +100759 first +100762 third +100767 first +100781 third +100784 first +100792 third +100803 first +100808 first +100813 third +100818 first +100824 first +100832 first +100838 first +100841 third +100852 first +100864 first +100867 third +100869 third +100874 third +100885 first +100890 first +100898 first +100901 first +100905 first +100907 first +100912 third +100915 third +100918 third +100929 first +third +100939 third +100942 first +100948 first +100950 third +100954 third +100956 third +100966 third +100970 first +100975 third +100983 first +100998 first +101001 first +first +101006 second +101009 first +101015 first +101022 first +101028 third +101042 third +101044 second +101055 first +101057 second +101062 second +101066 first +101072 first +101075 first +101082 third +101096 first +101098 first +101106 first +101108 first +101110 third +101113 first +101120 first +101124 first +101129 first +101131 first +101134 first +101138 third +101145 first +101151 second +101154 first +101159 first +101169 first +101175 first +first +101179 first +101183 second +101198 third +101206 first +101221 third +101224 first +101233 third +101236 first +101238 first +101254 first +101259 first +101261 second +101272 third +101274 third +101279 third +101283 third +101290 first +101294 first +101303 second +101305 second +101310 second +101313 second +101323 second +101325 first +101327 second +101331 first +101334 first +101347 first +101353 second +101358 first +101361 first +101371 first +101374 first +101378 second +101380 first +101389 first +101394 first +101401 third +101411 second +second +second +101416 second +second +101425 third +101428 second +101433 third +101508 third +101533 first +101537 second +101550 third +101555 third +101574 third +101578 first +101581 third +101583 first +101587 first +101591 third +101594 second +101596 third +101599 first +101605 first +101611 first +101616 first +101619 first +101629 third +101637 first +101640 first +101647 second +101658 first +101664 first +101667 first +101687 third +101708 first +101715 first +101720 first +101729 first +101734 first +101741 first +101747 first +101757 first +101767 first +101769 second +101775 first +101777 first +101787 first +101801 third +101808 third +101813 third +101815 third +101825 first +101834 first +101838 first +101843 first +101856 first +101858 first +101867 third +101875 third +101881 first +101887 third +101892 first +101900 third +101911 third +101914 third +101920 third +101926 third +101931 first +101948 third +101972 third +101990 first +101993 first +101999 third +102006 first +102009 third +102020 third +102023 third +third +102026 third +102033 third +102042 third +102048 first +102051 third +102057 first +102070 second +102072 second +102088 third +102104 first +102106 first +102120 third +102129 first +102138 third +102142 first +102145 first +102148 first +102154 first +102157 first +102159 first +102161 first +102165 third +102172 first +102175 first +102192 first +102205 third +102211 third +102217 third +102219 first +102227 second +102237 second +102242 second +102244 second +102270 third +102274 third +102279 second +102287 third +102295 third +102300 third +102304 third +102314 third +102324 third +102327 third +102329 third +102335 third +102352 third +102362 third +102367 third +102374 third +102379 third +102390 third +102405 third +102414 first +102421 first +102427 third +102429 third +102431 third +102441 third +102457 third +102461 first +102476 third +102496 third +102506 third +102509 third +102513 third +102525 third +102530 third +102540 third +102543 third +102552 third +102556 third +102570 third +102581 first +102593 third +102599 first +102607 first +102612 second +102623 second +102625 second +102627 third +102632 third +102637 third +102645 second +102657 second +102662 first +102669 third +102671 third +102681 third +102691 first +102698 first +102702 third +102707 third +102723 third +102727 first +102730 second +102732 third +102749 second +102767 second +102783 second +102795 second +second +102804 first +102809 first +102812 second +102820 first +102824 second +102826 second +102832 first +102845 second +102847 second +102852 second +102863 first +102872 second +102877 first +102880 third +102887 third +102890 second +102910 first +102913 third +102918 first +102929 first +102932 second +102942 second +102944 third +102947 third +102967 third +102977 third +102981 third +102993 third +103000 third +103005 third +103010 third +103020 third +103022 third +103026 third +second +103032 second +103034 second +103057 second +103065 third +103074 third +103077 second +103087 third +103099 first +103110 third +103112 second +103118 second +second +103122 first +103126 second +103130 third +103132 first +103139 third +103144 second +103150 second +103153 second +103161 first +103171 third +103177 second +103180 third +103197 third +103199 first +103207 second +103212 third +103217 third +103224 first +103227 first +103229 third +103234 first +103236 third +103244 second +103258 second +103264 third +103270 second +103279 second +103281 second +second +103286 second +103288 first +103290 second +103296 second +103300 third +103313 third +103318 second +103320 second +103324 second +103326 second +103331 third +103337 third +103358 first +103361 first +103370 third +103376 third +103390 third +103399 third +103407 first +103411 first +103413 first +103422 third +103430 second +103441 second +103445 second +103448 second +103455 third +103461 third +103467 third +103476 third +103487 third +103489 third +103500 second +103503 third +103507 third +103511 third +103522 third +103533 third +103541 first +103545 first +103552 first +first +103565 second +103569 first +103574 third +103579 third +103589 third +103596 third +103598 third +103606 third +103610 third +103626 third +103631 third +103644 third +103661 third +103672 first +103739 third +103777 third +103784 first +103802 third +103822 third +103851 first +103896 second +103904 third +103939 first +103961 third +103981 third +104019 third +104061 third +104068 third +104075 third +104100 second +104129 first +104146 first +104167 third +104175 third +104179 second +104182 third +104184 third +104192 third +104214 second +104232 third +104234 first +104245 third +104251 first +104253 second +104272 second +104307 second +104316 third +104347 third +104357 third +104375 third +104387 first +104401 second +104406 second +104432 third +104442 second +104464 second +104479 third +104484 first +104489 second +104504 third +104511 third +104538 first +104560 third +104592 third +104615 third +104625 first +104637 first +104647 third +104652 first +104668 third +104670 third +104704 second +104729 second +104744 first +104746 first +104774 first +104786 second +104816 second +104847 third +104858 third +104862 third +104864 third +104870 third +104872 third +104877 third +104887 third +104896 third +104901 third +104931 first +104958 first +104983 first +104989 third +105017 third +105025 first +105027 first +105037 third +105068 third +105081 second +105087 second +105091 second +105093 third +105140 second +105148 first +105151 second +105154 second +105158 third +105163 second +105170 third +105173 third +105181 third +105194 third +105204 third +105210 second +105219 second +105233 third +105240 second +105253 third +105256 second +105264 second +105271 third +105274 third +105294 third +105298 third +105308 third +105314 second +105324 third +105327 third +105338 third +105344 third +105356 second +105360 second +105371 second +105386 third +105392 second +105402 second +105410 third +105420 third +105426 third +105428 third +second +105433 second +105438 third +105443 second +105446 second +105460 third +105464 second +105467 second +105475 second +105479 third +105482 second +105531 third +105550 third +105563 second +105570 third +105575 third +105580 third +105589 third +105606 third +105611 third +105629 third +105636 third +105638 third +105640 third +105649 first +105656 third +105664 third +105670 third +105680 third +105683 first +105701 third +105708 third +105713 second +105721 third +105723 second +105731 third +105739 third +105741 second +105750 second +105755 second +105764 second +105812 third +105814 third +105826 second +105840 third +105846 third +105851 second +105861 second +105877 third +105909 second +105915 second +105927 second +105959 second +105969 second +105980 third +106012 third +106028 first +106034 first +106036 third +106041 second +106048 first +106050 third +106062 first +106069 second +106074 third +106137 first +106183 third +106189 third +106231 first +106240 first +106249 third +106262 second +106283 first +106295 third +106345 third +106356 first +106363 third +106383 third +106387 first +106390 first +106392 first +106396 third +106418 first +106427 third +106460 first +106462 first +106464 first +106493 first +106495 first +106497 first +106512 third +106531 second +106540 first +106545 second +106565 third +106578 third +106599 second +106604 second +106626 second +106633 second +106666 second +106681 third +106688 third +106701 third +106715 third +106717 third +106730 third +106741 third +106755 second +106778 second +106781 third +106796 second +106802 second +106816 second +106834 first +106838 first +106842 first +106851 first +106853 first +106861 second +106863 second +106866 first +106876 first +106884 first +106890 third +106896 third +106905 second +106912 third +106918 first +106923 first +106929 first +106936 first +106938 first +106961 third +106967 second +106969 third +106972 third +106978 third +106992 first +106995 first +107001 second +107004 first +107006 second +107017 second +107025 third +107030 third +107042 second +107056 second +107059 second +107063 second +107067 first +107095 third +107128 third +107132 first +107142 first +107160 first +107162 first +107166 first +107168 first +107209 first +107219 first +107222 first +107224 first +107227 first +107231 first +107238 first +107253 first +107269 first +107274 second +107280 third +107284 first +107291 second +107293 second +107298 second +107303 third +107306 first +107312 first +107345 third +107349 first +107355 third +107389 second +107394 first +107397 first +107404 first +107409 second +107415 third +107431 second +107436 first +second +107441 third +107448 second +107462 third +107475 third +107490 third +107510 second +107513 second +107515 second +107517 second +107519 second +107523 second +107529 third +107533 first +107540 second +107548 second +107550 second +107555 first +107558 first +107561 first +107564 first +107567 first +107575 first +107585 first +107592 second +107599 second +107604 first +107614 third +107636 second +107639 first +107643 first +107652 first +107655 first +first +107674 third +107701 second +107707 third +107713 third +107763 first +107787 second +107802 second +107820 third +107831 second +107833 second +107841 second +107849 third +107872 first +107874 first +107881 second +107945 third +107953 third +107964 first +107972 third +107984 third +108014 third +108017 third +108025 third +108028 third +108036 third +108043 third +108049 third +108099 third +108120 second +108135 second +108147 first +108151 first +108158 first +108174 third +108179 first +108209 third +108214 third +108230 third +108240 first +108252 first +108261 first +108274 first +108279 first +108289 third +108296 third +108320 third +108330 first +108334 third +108342 first +108348 first +108365 second +108373 second +108384 second +108388 second +108391 third +108418 third +108426 second +108431 third +108441 second +108464 second +108489 third +108506 third +108511 third +108525 third +108536 third +108551 third +108562 third +108571 third +108599 third +108605 second +108618 second +108620 second +108622 second +108624 second +108626 third +108640 third +108662 second +108667 second +108671 third +108679 second +108686 second +108691 third +108699 third +108710 second +108714 second +108730 third +108734 third +108743 second +108746 second +108751 second +108766 second +108792 third +108810 second +108833 third +108839 third +108851 third +108860 third +108868 second +108874 second +108879 third +108909 second +108928 second +108932 third +108937 second +108942 second +108947 second +108955 third +108961 second +108967 third +108970 second +108991 second +108994 second +109005 second +109013 second +109017 third +109019 third +109022 third +109033 second +109038 second +109044 second +109058 third +109071 first +109073 first +109076 third +109081 second +109098 third +109107 third +109121 first +109128 second +109133 third +109145 third +109149 third +109153 third +109166 second +109169 third +109172 second +109192 third +109195 third +109212 second +109222 first +109225 third +109238 third +109247 second +109262 third +109267 second +109274 third +109282 second +109284 second +109286 second +109290 second +109295 second +109302 second +109329 first +109383 third +109402 second +109404 first +109411 second +109444 third +109467 third +109479 third +109482 first +109487 second +109508 third +109524 second +109534 third +109542 second +first +109573 first +109581 first +109599 first +109601 second +109627 first +109635 third +109642 first +109659 second +109662 second +109679 first +109700 first +109702 second +109738 first +109750 second +109757 third +109762 third +109770 second +109787 second +109826 third +109835 third +109855 first +109864 first +109876 third +109904 second +109914 first +109920 first +109953 second +109957 first +109963 first +first +109967 first +109971 third +109973 second +109979 first +109988 third +109995 third +110018 second +110033 first +110049 first +110052 second +110056 first +110069 first +110106 third +110116 third +110118 third +110161 first +110163 first +110170 second +110175 third +110183 second +110185 second +110188 second +110191 first +110199 third +110254 first +110257 first +110260 third +110272 third +110294 second +110301 second +110308 second +110320 first +110338 first +110340 second +110348 second +110352 first +110360 second +110371 first +110374 third +110376 third +110386 third +110392 first +110409 first +110425 third +110433 third +110444 first +110458 first +110460 second +110476 second +110482 second +110491 third +110493 third +110501 third +110512 third +110517 second +110524 third +110530 second +110537 first +110544 first +110549 first +110551 first +110556 third +110561 third +110566 first +110578 third +110600 first +110602 first +110606 first +110608 second +110611 second +110617 second +110620 first +110645 second +110650 first +110652 second +110655 second +110658 second +110661 second +110664 second +110671 third +110676 second +110683 second +110685 second +110688 second +110701 second +110704 second +110707 second +110710 second +110715 second +110722 third +110745 third +110752 third +110754 second +110757 second +110764 first +110811 first +110820 third +110822 third +110827 third +110862 second +110880 second +110929 third +110945 third +110962 third +110971 first +110977 third +110984 third +110994 third +111019 first +111059 third +111067 third +111074 third +111079 third +111109 third +111112 second +111119 first +111125 second +111140 third +111148 third +111151 third +111158 third +111165 third +111174 third +111201 third +111209 third +111222 third +111235 first +111247 third +111264 third +111281 second +111283 second +111287 second +111320 third +111325 third +111335 second +111343 third +111345 third +111352 first +111366 third +111370 third +111373 third +111378 first +111385 first +111387 second +111389 second +111393 third +111410 first +111431 second +111436 second +111438 third +111443 first +111449 first +111470 first +111476 first +111485 first +111489 first +111495 third +111498 third +111500 first +111513 first +111515 first +111527 third +111532 second +111538 third +111546 second +111551 third +111556 second +111558 second +111567 third +111588 third +111594 first +111638 first +111647 second +111659 third +111672 third +111686 third +111696 third +111700 third +111702 first +111711 third +111718 third +111742 third +111755 first +111758 first +111770 third +111783 first +111786 first +111790 third +111814 third +111822 first +111827 first +111832 third +111871 first +111880 second +111897 third +111899 third +111904 first +111908 third +111912 first +111936 first +111952 third +111985 first +111997 first +111999 first +112001 first +112039 third +112048 third +112053 first +112067 third +112073 third +112080 third +112082 third +112087 third +112102 third +112105 third +112107 third +112148 third +112152 third +112162 third +112164 third +112174 third +112203 third +112206 third +112219 third +112237 third +112249 first +112257 first +112259 second +112261 third +112267 third +112279 third +112285 third +112288 third +112291 third +112293 third +112296 third +112299 third +112306 third +112311 third +112335 third +112358 third +112368 second +112383 second +112390 second +112392 second +112402 third +112410 third +112429 first +112431 first +112433 first +112438 third +112445 second +112447 second +112452 third +112454 second +112469 first +second +112478 second +112484 third +112495 second +112498 second +112504 third +112506 second +112511 second +112516 second +112525 second +112527 second +112542 second +112554 third +third +112568 third +112579 third +112583 third +112596 third +112599 second +112602 third +112612 third +112615 third +112617 third +112621 third +112635 third +112637 third +112641 third +112644 third +112649 third +112653 second +112656 third +112660 third +112667 third +112672 third +112690 first +112705 third +112712 third +112714 third +112718 third +112725 third +112732 third +112741 third +112747 second +112759 second +112772 second +112778 third +first +112792 second +112802 second +112804 second +112809 second +112811 second +112815 second +112829 third +112836 third +112850 third +112852 third +112862 third +112872 third +112879 third +112882 third +112885 third +112887 third +112896 second +112898 second +112901 third +112904 third +112918 third +112929 third +112950 third +112959 first +112967 first +112974 first +112979 third +112991 third +113003 third +113009 third +113015 third +113024 second +113026 second +113033 second +113039 second +113045 second +113047 second +113054 first +113090 third +113112 third +113117 third +113130 second +113164 third +113172 second +113188 third +113223 first +113227 first +113235 first +113256 first +113265 third +113278 first +113286 first +113294 third +113305 third +113319 second +113331 second +113389 first +113401 first +113404 first +113406 first +113408 first +113410 first +113412 third +113422 second +113429 second +113441 second +113449 second +113452 third +113460 third +113464 third +113474 third +113480 third +113486 third +113489 third +third +113506 third +113509 second +113514 second +113524 second +113531 second +113536 third +113540 second +113548 third +113556 third +113560 third +113563 third +113567 third +third +113576 second +113578 first +113580 third +113587 second +113602 first +113613 third +113617 first +113624 third +113638 first +113640 first +113642 first +113644 first +113646 first +113648 third +113651 first +113654 third +113659 third +113661 second +113675 second +113692 second +113697 third +113705 third +113707 third +113715 third +113721 third +113731 third +113736 third +113742 third +113755 third +113779 third +113783 third +113800 second +113802 second +113821 second +113824 third +113827 third +113846 third +113855 third +113870 second +113875 third +113879 third +113914 second +113918 third +113947 third +113952 third +113965 third +113973 third +113979 third +113982 second +114004 third +114013 first +114018 third +114031 third +114037 third +114046 second +114049 second +114051 second +114055 second +114060 second +114093 third +114103 first +114124 second +114127 second +114130 second +second +second +114139 third +114146 third +114153 third +114165 third +114170 third +114173 second +114176 second +second +114183 second +114187 first +114194 third +114198 first +114201 first +114204 first +114206 third +114213 third +114236 second +114244 third +114250 third +114260 third +114266 second +114270 third +114277 first +114283 first +114289 second +114302 third +third +114314 second +114317 third +114328 third +114332 third +114335 third +114340 third +114342 third +114349 third +114351 third +114356 first +114360 third +114369 third +114385 second +114394 third +114399 first +114403 second +114407 third +114452 third +114460 third +114469 first +114497 first +114504 second +114506 second +114513 first +114516 third +114531 third +114564 third +114578 third +114591 third +114595 third +114599 third +114603 third +114620 third +114625 second +114629 third +114655 third +114665 third +114669 third +114682 second +114684 third +114713 third +114733 third +114737 second +114758 third +114790 third +114794 third +114817 first +114839 third +114844 third +114850 third +114858 second +114860 second +114862 second +114868 third +second +114893 first +114924 third +114932 first +114939 third +114949 third +114965 first +114976 first +114980 third +114988 third +115004 second +115006 third +115017 second +115022 third +115024 third +115028 first +115034 second +115043 first +115050 second +115054 third +115056 third +115069 third +115071 third +115077 second +115129 first +115149 second +115166 third +115181 first +115191 third +115209 first +115221 first +115227 first +115244 first +115249 third +115254 first +115263 third +115276 first +115285 third +115293 third +115299 second +115323 second +115325 second +115333 third +115335 third +115338 second +115341 first +115346 first +115349 first +115355 second +115360 first +115363 second +115373 first +115380 first +second +115385 second +115389 first +115395 first +115397 third +115440 third +115445 third +115451 third +115477 third +115494 third +115499 third +115503 second +115507 first +115512 first +115518 third +115525 third +115531 third +115533 third +115543 third +115579 second +115582 second +115586 third +115606 second +115612 third +115616 third +115619 second +115622 third +115628 second +115633 third +115638 second +115644 third +115650 third +115652 second +115658 first +115668 third +115681 third +115689 first +115697 third +115704 third +115709 first +115725 third +115747 third +115754 first +115756 third +115761 third +115764 second +115770 second +115772 second +115781 second +115784 second +115797 third +115803 first +115809 first +115831 third +115834 third +115872 third +115877 first +115887 first +115892 first +115898 second +115905 third +115912 third +115919 third +115926 third +115934 third +115938 third +115949 third +115954 third +115958 third +115960 third +115967 third +115986 third +115989 third +115999 second +116027 third +116032 third +116041 third +116074 first +116087 first +116090 third +116100 second +116102 second +116119 third +116126 third +116133 first +116138 first +116140 third +116146 third +116151 first +116157 third +116162 second +116166 third +116180 second +116189 third +116192 third +116203 first +116212 first +116221 second +116223 second +116234 third +116246 third +116255 third +116261 third +116273 first +116276 third +116281 first +116291 third +116298 first +116304 third +116317 first +116324 third +116326 first +116332 third +116345 third +116352 third +116370 third +116377 third +116387 third +116391 third +116402 third +116408 second +116410 second +116418 third +116424 third +116428 third +116443 third +116455 first +116470 third +116504 third +116534 first +116538 first +116556 first +116564 first +116568 first +116580 third +116586 third +116602 third +116607 third +116623 third +116640 third +116650 second +116654 first +116660 third +116702 third +116705 third +116710 third +116738 second +116750 second +116765 second +116782 third +116784 third +116814 first +116839 first +116841 third +116901 third +third +116923 first +116934 first +116948 second +116959 first +116976 second +116998 third +third +117006 first +117010 first +117015 third +117023 third +117049 third +117063 first +117071 first +117092 third +117130 third +117143 third +117162 third +117168 second +117176 third +117191 third +117199 third +117215 third +117222 third +117232 third +117239 third +117244 third +117256 third +117264 third +117266 third +117277 third +117283 third +117310 third +117314 third +117318 third +117322 third +117330 third +117341 third +117346 third +117352 third +117356 third +117368 third +117384 third +117393 third +117402 first +117416 third +117428 third +117432 third +117444 third +117450 third +117468 third +117473 third +117494 third +117511 third +117531 third +117539 third +117562 first +117566 third +117585 third +117600 third +117608 third +117612 third +117617 third +117632 third +117634 third +117641 third +second +second +117658 third +117661 third +117669 third +117675 third +117681 third +117685 third +second +117688 third +third +117692 first +117709 first +117728 third +117734 first +117736 third +117743 first +117751 third +117764 first +117767 first +117773 third +117780 third +117791 second +117796 third +117805 first +117815 first +117821 third +117833 third +117844 third +117862 third +117914 third +117930 third +117950 third +117989 third +118027 third +118043 third +118064 third +118081 third +118085 third +118103 third +118115 third +118139 third +118141 third +118150 third +118186 third +118194 third +118212 third +118218 third +118226 third +118248 third +118273 third +118278 third +118288 third +118310 third +118314 third +118338 third +118364 third +118369 third +118376 third +118409 third +118414 second +118417 second +118424 second +118426 first +118429 second +118433 third +118436 first +118454 second +118456 second +118460 third +118462 third +second +first +118470 third +118476 third +118481 first +118494 third +118506 third +118519 third +118528 third +118539 third +118546 third +118561 first +118568 third +118581 first +118593 first +118617 third +118627 third +118639 first +118658 first +118669 first +118691 second +118709 third +118734 third +118736 second +118739 third +118755 third +118763 first +118769 first +118772 third +118785 second +118792 second +118814 second +118823 second +118833 second +118838 third +118844 second +118851 second +118861 third +118864 third +118871 third +118874 third +118876 third +118884 first +118895 third +118906 third +118910 first +118930 third +118935 third +118950 third +118953 third +118960 third +118962 third +118970 third +118980 third +118987 third +118993 third +119002 third +119011 third +119020 third +119024 third +119028 third +119034 third +119038 third +119040 third +119061 third +119081 third +119088 third +119096 third +119120 third +119139 third +119147 third +119150 third +119154 third +119158 third +119160 third +119165 third +119168 third +119172 third +119180 third +119184 third +119192 third +119199 third +119203 third +119220 third +119225 third +119239 third +119241 third +119257 third +119263 third +119267 third +119274 third +119280 third +119289 third +119317 third +119322 third +119335 third +119337 third +119351 third +119354 third +119367 third +119372 third +119382 third +119393 first +119395 third +119415 third +119417 third +119419 third +119421 third +119424 third +119427 third +119430 third +119433 third +119439 third +third +119449 third +119457 third +119464 third +119470 third +third +third +119476 third +third +119500 third +119512 third +119526 third +119545 first +119565 third +119576 third +119578 second +119590 second +119598 second +119604 second +119611 third +119615 second +119619 second +119625 third +119627 third +119629 third +119633 third +119636 second +119640 third +119648 third +119652 second +119657 third +119664 second +119672 first +119675 first +119679 first +119685 first +119696 third +119715 third +119730 third +119739 second +119743 second +119751 third +119753 third +119755 second +119765 third +119783 third +119787 third +119801 third +119806 second +119814 third +119819 third +119827 second +119847 third +119854 third +119859 third +119862 third +119866 third +119870 third +first +119876 second +119916 second +119918 second +119924 third +119944 third +119948 third +119953 first +119966 third +119974 third +119982 first +119986 first +120003 third +120007 second +120011 third +120015 second +120041 third +120052 third +120056 first +120061 first +120070 first +120072 third +120075 second +120080 third +120092 second +120111 second +120123 third +120126 first +120132 third +120139 third +120155 third +120163 third +120173 third +120175 first +120187 first +120194 first +120198 first +120206 third +120219 second +120223 third +120226 second +120231 second +120234 third +120246 third +120254 second +120258 first +120262 first +120270 first +120275 first +120300 third +120331 first +120334 second +120343 first +120345 second +120355 third +first +120358 second +120367 third +120397 second +120401 second +120409 third +120416 third +120418 second +120429 third +120431 third +120442 third +120445 third +120453 third +120461 third +120466 third +120480 third +120500 third +120502 third +120509 third +120516 third +120523 third +120532 third +120536 third +120541 third +120547 third +120553 third +120557 first +120562 third +120565 third +120570 third +120582 third +120588 third +120591 second +120603 third +120613 third +120619 third +120632 second +120637 third +120657 third +120667 second +120678 second +120692 third +120697 third +120708 third +120711 third +120714 third +120716 third +120741 third +120744 third +120768 third +120789 second +120801 third +120811 third +120818 second +120827 second +120829 second +120835 second +120837 second +120840 second +120846 second +120850 second +120854 second +120861 third +120874 third +120880 second +120886 third +120890 third +120896 third +120908 second +120912 second +120919 second +120922 second +120924 second +120936 third +120938 third +120941 third +120948 second +third +120952 second +120956 second +120958 second +second +120963 second +120966 second +120981 third +120992 third +120997 third +120999 third +121009 third +121016 third +121021 second +121024 second +121026 second +121029 second +121044 third +121047 third +121051 third +121055 second +121058 first +second +121069 first +121077 second +121080 third +121084 second +121088 third +121090 third +121095 second +121104 third +121112 third +121121 second +121125 third +121135 third +121137 third +121143 third +121148 third +121155 third +second +121160 third +121176 third +121191 third +121199 third +121205 second +121210 first +121213 first +121220 third +121239 first +121250 first +second +121262 third +121271 third +121278 third +121281 third +second +121287 third +121298 third +121330 third +121332 third +121341 third +121351 first +121359 first +121371 third +121378 third +121389 third +121398 third +121416 third +121429 second +121439 second +121441 second +121446 third +121474 third +121491 third +121514 second +121517 second +second +121520 second +121523 second +121525 second +121527 second +121529 second +121535 second +121538 second +121541 second +121547 second +121550 second +121559 third +121563 third +121571 third +121573 second +121578 third +121581 third +121585 third +121591 third +121593 third +121597 third +121600 third +121603 second +121607 second +121611 third +121614 second +121618 third +121620 second +121624 second +121627 second +121629 second +121631 second +121637 third +121643 second +121647 third +121650 second +121661 third +121664 third +121669 second +second +121677 third +121689 second +121694 second +121701 first +121707 first +121711 first +121713 first +121716 second +121724 second +121740 third +121742 first +121744 first +121750 second +121759 third +121769 third +second +121774 second +121785 third +121791 third +121798 third +121806 third +121808 third +121814 second +121818 second +121832 third +121843 third +second +121849 second +second +121857 second +second +121862 third +121866 second +121872 second +121875 third +121885 third +121889 second +121892 second +121901 third +121904 second +121909 second +second +121916 third +121918 second +121928 third +121933 second +first +121940 second +121945 second +121947 third +121959 second +121971 third +121984 second +third +121989 third +third +121992 third +third +121997 third +122003 third +122018 third +122022 third +122028 third +122030 third +122033 second +122038 second +122042 second +122044 third +122049 third +122055 third +122061 third +122072 third +122077 third +122081 third +122091 third +122096 third +122099 second +122108 third +122114 third +122148 third +122204 second +122227 third +122241 second +122249 second +122264 third +122266 third +122281 third +122298 third +122304 third +122308 third +122323 third +122334 second +122368 second +122370 third +122372 second +122379 second +122394 second +122402 second +122470 second +122497 third +122503 third +122508 third +122514 third +122542 second +122546 second +122550 second +122574 second +122589 third +122592 second +first +122607 third +122618 third +122622 third +122633 third +122640 third +122653 second +122681 first +122691 third +122706 third +122715 third +122721 second +122746 third +122774 second +122777 second +122780 second +122783 second +122809 third +122821 second +122827 second +122835 second +122839 third +122846 second +122853 third +122855 third +122864 third +122867 third +122869 third +122878 third +122892 first +122896 second +122898 second +122903 second +122923 third +122933 third +122942 third +122970 third +122986 third +122994 third +123002 second +123058 second +123061 second +123071 third +123083 third +123087 third +123089 third +123092 third +123120 second +123124 second +123133 second +123135 second +123140 second +123170 second +third +123184 third +123198 third +123204 third +123216 third +123225 third +123239 third +123242 third +123249 third +123267 third +123290 second +123309 third +123333 third +123345 third +123359 third +123362 third +123367 third +123375 third +123377 second +123379 second +123392 third +123402 third +123416 third +123422 third +123427 third +123433 third +123440 third +123454 second +123469 second +123474 second +123483 second +123486 second +123502 third +123507 third +123522 third +123524 third +123562 third +123568 third +123580 third +123590 first +123606 second +123637 second +123645 second +123652 second +123657 third +123660 third +123663 second +123672 third +123684 third +123687 second +second +123696 third +123701 second +123735 third +third +third +third +123755 first +123758 first +123770 second +third +123782 second +123818 third +123860 third +123864 second +123883 second +123936 third +123948 third +123951 third +123964 second +123977 second +123982 third +123998 first +124014 first +124017 first +124029 third +124042 third +124045 first +124063 first +124103 third +124107 first +124113 first +124125 first +124131 second +124143 third +124146 third +124161 third +124166 third +124174 third +124179 third +124189 third +124192 third +124207 third +124217 third +124224 third +124230 third +124236 third +124244 third +124249 third +124257 third +124263 third +124275 third +124291 third +124308 third +third +124339 third +124348 third +124368 third +124375 third +124414 third +124425 third +124430 third +124437 third +124443 third +124456 third +124461 third +124484 third +124486 third +124506 third +third +124516 third +124533 third +124557 first +124560 first +124589 third +124606 third +124617 third +124620 third +124625 third +124631 third +124652 third +124664 third +124680 third +124697 third +124704 third +124706 third +124719 third +124729 third +124733 third +124741 third +124746 third +124768 third +124772 third +124783 first +124787 third +124792 second +124807 second +124820 third +124834 third +124842 third +124857 second +124865 second +124870 second +124892 third +124896 first +124898 first +124903 first +124908 third +124917 third +124919 first +124921 first +124923 first +124930 third +124935 third +124938 first +124940 first +first +124948 second +124969 first +124975 third +124978 third +124983 first +124987 first +124993 third +124998 third +125002 first +125005 first +125012 first +first +125016 first +125024 first +125027 third +125032 first +125042 third +125048 first +125052 first +125054 first +125059 third +125063 first +125067 third +125072 third +125077 third +125083 first +125086 first +125088 first +125095 third +125101 first +125105 second +125109 third +first +125121 third +125141 first +125143 first +125149 first +125153 first +125162 third +125169 third +125173 third +125184 third +125187 first +125191 first +125199 third +third +125206 first +125215 second +125222 third +125226 second +125230 first +125233 third +125243 third +125250 third +125265 third +125276 third +125282 third +125292 third +125297 third +125300 third +125302 third +125306 third +125311 first +125314 third +125323 first +125326 second +125331 first +125334 second +125338 first +125341 second +125345 first +125348 second +125353 first +125357 second +125365 third +125367 second +125371 second +125381 third +125385 third +125413 third +125421 third +125423 third +125437 third +125444 third +125447 second +125450 third +125455 third +125457 first +125461 third +125464 third +125467 third +125474 third +125476 third +125481 third +125484 third +125491 second +125496 second +125498 first +125503 second +125508 second +125518 third +125520 third +125530 third +125534 third +125552 third +125560 third +125563 second +125568 third +125572 third +125576 second +125586 second +125589 third +125594 third +125601 first +125612 second +125615 third +125621 second +125624 third +125631 third +125637 third +125640 third +125644 third +125646 second +125652 second +125657 third +first +125662 first +125670 second +125673 third +second +125684 third +second +125688 third +125695 first +125697 first +125703 third +125707 third +125713 first +125716 third +125718 first +first +125722 third +125725 first +125727 first +125730 third +125740 third +125745 third +125754 third +125758 third +125762 second +125765 third +125769 third +125775 third +125782 third +125787 third +125790 third +125794 third +125801 third +125805 third +125813 third +125819 third +125822 third +125828 third +125841 third +125847 third +125850 third +125856 third +125860 third +125876 third +125889 third +125893 second +125897 first +125905 third +125907 third +125914 third +125921 third +125930 second +125932 third +125937 first +125939 first +125947 first +125953 third +125964 third +125966 second +125971 third +125979 first +125989 third +125992 first +126002 third +126008 third +126015 third +126026 third +126030 first +126043 first +126048 first +126052 first +126058 third +126064 third +126071 third +126078 third +126080 first +126087 first +first +126095 first +126101 first +126104 third +126109 first +126118 first +126121 third +126132 third +126140 first +126142 third +126150 third +126155 second +126157 second +126164 third +126168 third +126174 second +126182 third +126191 third +126197 third +126204 third +126207 third +126212 second +126214 third +126220 third +126227 second +126229 second +126233 third +126246 third +126252 third +126257 third +126262 first +126267 third +126271 third +126276 third +126280 first +126291 first +126299 third +126307 third +126309 third +126316 third +126323 third +126326 third +126339 third +126346 first +126351 third +126357 first +126363 third +126366 third +126380 third +126384 first +126390 third +126392 first +126398 third +126406 third +126409 first +126413 first +126423 third +126427 first +126429 first +126433 third +126441 third +126444 third +126453 third +126461 first +126463 first +126467 third +126475 third +126485 third +126491 third +126494 third +126501 first +126510 third +126513 first +126520 third +126529 third +126536 third +126541 third +126546 first +126550 third +126554 third +126556 first +126563 third +126565 third +126574 third +126576 third +126581 third +126587 first +126595 third +126605 third +126611 third +126618 third +126625 first +126627 first +126635 first +126640 first +126643 third +126652 first +126659 third +126667 third +126672 third +126683 third +126694 third +126700 third +126725 third +126731 third +126736 third +126753 third +126759 first +126765 third +126768 third +126774 third +126786 third +126797 third +126801 third +126806 third +126815 third +126821 third +126833 third +126838 third +126851 third +126853 first +126865 second +126869 second +126872 third +126876 first +126882 first +126887 third +126891 first +126893 third +126897 first +first +126900 first +126904 first +126909 third +126918 third +126920 third +126928 third +126935 first +126937 third +126941 third +126943 third +126948 first +126957 third +126964 third +126970 third +126972 first +126977 first +126985 third +126987 first +126993 third +126995 third +126999 first +127003 first +127014 third +127022 second +127036 first +127061 third +127065 third +127086 first +127089 first +127099 first +127106 first +127116 first +127120 first +127124 third +127128 first +127136 third +127138 second +127144 second +127146 third +127161 third +127167 second +127171 second +127173 first +127177 second +127191 third +127204 third +127207 third +127215 third +127217 second +127225 second +127231 third +127242 first +127248 first +127262 third +third +127279 first +127285 first +127291 third +127296 first +127309 second +127314 first +127316 first +127326 second +127329 second +127337 third +127345 second +127354 third +127362 first +127368 first +127371 first +127381 third +127386 first +first +127392 third +127404 third +127410 third +127415 third +127418 second +127429 third +127433 third +127437 third +127448 first +127450 second +127456 third +first +127463 first +127471 first +127479 first +127482 third +127486 second +127514 third +127527 first +127539 third +127569 first +127587 third +127609 third +127629 third +127642 third +127645 third +127648 third +127654 third +127664 third +127669 third +third +127678 third +third +127687 third +127690 third +127698 third +127705 third +127711 third +127713 third +127751 third +127753 third +127761 second +third +127784 third +127791 third +127797 third +127809 third +127818 second +127832 third +127838 third +127848 third +127872 second +127888 second +second +127895 second +127952 third +127964 third +127966 third +127977 third +127988 third +128026 third +128074 third +128095 second +third +128101 third +128108 third +128110 third +128121 first +128127 third +128135 third +128157 first +128173 first +128181 first +128190 second +second +128195 second +128220 first +128225 third +128230 first +128314 third +128321 first +128323 first +128331 third +128339 second +128341 first +128351 first +128354 second +128356 first +128363 first +128372 second +128374 second +128377 third +128380 third +128390 second +128408 third +128416 third +128423 second +128425 third +128444 first +128458 second +128462 second +128469 third +128471 second +128476 second +128478 second +128485 second +128487 first +128496 second +128498 second +128500 second +128502 second +128507 second +128511 first +128514 first +128524 second +128527 second +128529 second +128536 first +128540 third +128544 third +128549 first +128558 third +128571 second +128573 third +128580 third +128583 third +first +128593 second +128605 third +128611 second +128614 second +second +third +128625 second +128627 second +128631 second +128636 first +128645 third +128649 third +128656 third +128669 second +128671 third +128680 first +128682 second +128689 second +128695 second +128711 third +128717 third +128719 first +128724 second +128731 third +128745 second +128755 second +128759 first +128763 first +128775 third +128779 third +128784 first +128791 first +128804 third +128816 second +128818 third +128837 first +128864 first +128868 second +128877 third +128879 third +128888 first +128892 third +128895 third +128901 second +first +128916 third +128925 first +128929 third +128935 first +128942 first +128950 first +128959 third +128965 third +128971 third +128973 first +128980 second +second +128985 first +128997 first +129004 third +129014 third +129017 first +129023 first +129032 third +129036 third +129046 second +129048 third +129060 first +129066 second +129068 second +129071 second +second +129075 second +129079 third +129083 first +129092 second +129094 second +129096 second +129098 second +129100 second +129104 second +first +129111 second +129114 first +129118 second +129125 third +129130 third +129137 third +129141 third +129148 first +129158 first +129174 third +129178 third +129188 second +129190 third +129204 third +129209 third +first +129214 second +first +129224 third +129228 second +129230 second +129236 second +129240 second +first +129254 third +129256 third +second +first +129261 third +129263 third +129269 third +129272 first +129275 second +129283 first +129302 first +129304 second +129306 second +129309 third +129315 first +129328 third +129331 first +129368 third +129372 third +129382 second +129384 third +129399 first +129404 second +129409 first +second +129417 second +129423 first +129431 second +129434 first +129436 first +129440 first +129443 second +129446 second +129457 first +129467 second +129472 second +129475 third +129488 second +129492 first +first +129495 first +129497 second +129499 second +second +first +129506 first +129509 third +129514 third +129517 first +129521 first +129530 first +129541 first +129543 first +129555 third +129559 third +129564 first +129566 second +129578 first +129585 second +129588 first +129594 third +129596 first +129600 second +129602 third +129658 third +129673 third +129748 third +129753 third +129767 third +129776 third +129796 third +129808 third +129817 third +129832 second +129844 second +129852 third +129854 third +129856 first +129874 first +129892 third +129912 first +129917 third +129929 third +129932 second +second +third +129954 first +129979 third +129991 third +129993 third +130004 third +130015 third +130028 third +130034 third +130039 second +130049 second +130051 second +130068 second +130077 third +130082 first +130084 first +130098 third +130111 third +130150 third +130157 first +130186 third +130191 third +130193 third +130195 first +130197 third +130206 first +130216 second +130218 first +130220 second +130231 third +130235 third +130239 third +130242 third +130247 first +130252 second +130254 third +130263 third +130274 third +130276 third +130282 third +130287 first +130292 second +130294 first +130296 second +130311 first +130335 second +130338 third +130343 first +130349 second +130351 first +130353 second +130368 third +130372 third +130397 third +130401 first +130419 third +130421 third +130434 second +130436 second +130447 third +130453 third +130456 third +130461 third +130477 first +130479 third +130487 third +130491 third +130500 third +130508 third +130514 third +130525 third +130538 third +130561 third +130573 third +130579 second +130583 second +130599 third +130609 third +130613 first +130631 third +130645 first +130657 third +130665 third +130674 second +130684 first +130695 first +130774 first +130776 second +130783 third +130811 third +130832 third +130844 third +130853 third +130888 third +130903 third +130906 third +130908 first +130913 second +130915 third +130918 third +130927 third +130932 third +130941 third +130948 third +130963 third +130967 third +130970 third +130974 third +130990 third +130993 third +131000 third +131011 third +131016 third +131024 first +131032 third +131034 third +131041 third +131043 third +131051 third +131056 third +131072 third +131089 third +131095 third +131103 third +131108 third +131125 third +131128 third +131132 third +131134 third +131142 third +131151 third +131157 third +131162 third +131167 third +131174 third +131179 third +131186 third +131203 third +131208 third +131210 third +131220 third +131237 third +131241 third +131252 third +131257 third +131262 third +131264 third +131280 third +131288 third +131297 first +131299 first +131332 third +131334 first +131344 third +131353 third +131359 third +131369 third +131384 third +131390 third +131394 third +131401 third +131405 third +131422 third +131431 third +131435 third +131439 third +131450 third +131457 third +131465 third +131468 third +131471 third +131503 third +131514 third +131516 third +131536 third +131555 third +131572 third +131578 third +second +third +131590 third +131592 first +131615 second +131628 third +131644 third +131658 first +131664 first +131695 third +131701 third +131731 third +131752 third +131760 third +131766 third +131775 third +131796 third +131805 third +131826 first +131866 third +131882 third +131887 third +131890 third +third +131900 third +131904 first +131907 first +131913 second +131915 third +131922 second +131935 first +third +131946 third +131956 third +131980 third +131991 third +131994 third +132000 third +132010 first +132020 second +second +132041 first +132052 third +132054 second +132056 second +132059 third +132068 third +132073 first +132082 first +132085 third +132095 first +132097 third +132102 third +132104 third +132118 third +132124 second +132126 second +132146 second +132151 second +132153 third +132161 third +132166 first +132172 third +132180 third +132198 third +132202 third +132208 third +132215 third +132219 third +132223 third +132232 third +132240 third +132257 third +132260 third +132271 third +132276 third +132279 third +132293 third +132303 third +132305 third +132324 third +132337 third +132341 third +132344 third +132351 third +132369 third +132373 third +132381 third +132387 third +132395 second +132398 third +132406 third +132416 third +132424 third +132426 third +132438 third +132440 third +132450 third +second +132456 third +132462 third +132464 third +132471 third +132484 third +132504 third +132510 third +132514 first +132525 third +132527 second +132534 second +132538 third +132540 third +132580 third +132590 third +132601 third +132615 third +132643 third +132649 third +132656 second +132677 third +132685 third +132693 third +132702 third +132706 third +132708 third +132712 third +132721 third +132736 third +132741 third +132750 third +132757 third +132774 third +132783 third +132787 third +132793 third +132813 third +132823 third +132825 first +132833 third +132852 third +132870 third +132886 third +132894 second +132908 third +132920 third +132923 third +132927 third +132931 third +132935 third +132939 third +132950 third +132959 third +132972 third +132988 third +132990 third +132996 third +133003 third +133007 third +133015 third +133022 third +133043 third +133050 first +133080 first +third +133098 third +133128 third +133130 third +133138 third +133142 third +133148 third +133158 third +133163 third +133171 third +133179 third +133202 third +133213 third +133226 third +133235 third +133254 third +133256 third +133263 third +133268 third +third +133275 third +133284 first +133292 third +133298 third +133308 third +133312 third +133321 third +133327 third +133334 third +133339 third +133352 third +133362 third +133379 third +133385 third +133387 third +133397 third +133403 third +133408 third +133413 third +133415 third +133435 third +133453 third +133476 third +133480 third +133488 third +133497 first +133499 second +133530 first +133548 first +133557 third +133573 third +133590 third +133595 third +133598 third +133606 third +133608 third +133624 third +133627 third +133629 first +133659 second +133663 second +133667 third +133674 second +133691 third +133693 third +third +133707 third +133715 third +133723 third +133731 third +133744 third +133762 third +133783 third +133786 third +133802 third +133809 third +133825 first +133831 second +133841 third +133845 third +133854 third +133858 first +133860 second +133888 third +133901 second +133906 second +133908 third +133913 third +133919 third +133932 third +133938 third +133960 third +133965 third +133975 second +133982 second +133990 third +133995 third +134005 third +134011 third +134022 third +134029 third +134044 first +134063 third +134069 first +134104 third +134142 third +134145 third +134156 third +134158 third +134165 third +134169 first +134171 third +134182 third +134211 third +134231 third +134247 third +134253 third +134261 first +134271 second +134273 second +134285 third +134289 third +134297 third +134320 third +134328 third +134340 third +134344 third +134357 third +134360 first +134367 second +134372 third +134377 second +134383 third +134387 second +134390 third +134392 first +134411 third +134419 third +134427 third +134433 third +134448 third +134455 third +134465 third +134471 third +134479 third +134495 third +134503 third +134514 third +134519 third +134529 first +134553 third +134559 third +134579 second +first +134594 third +134596 third +134601 third +134613 third +134621 third +134631 third +134633 third +134642 third +134645 third +134649 third +134658 third +134671 third +134676 third +134694 third +134698 third +134704 third +134712 third +134724 third +134730 third +134742 third +134746 second +first +134762 third +134768 third +134780 third +134787 first +134805 third +134854 first +134871 first +134877 third +134883 second +134885 first +134909 second +third +134913 third +134915 third +134923 third +134925 third +134935 third +134948 third +134951 third +134953 third +134965 third +134969 third +134975 third +134978 third +134981 third +134985 third +134988 third +134992 third +134997 third +135000 third +135004 third +135009 third +135013 third +135019 second +third +135026 third +135033 third +135040 third +135049 third +135054 third +135058 third +135061 third +135077 third +135082 second +135086 third +third +135100 second +135105 third +135109 third +135118 third +135121 third +135127 third +135148 third +135157 second +third +135173 first +135186 third +135192 third +135197 third +third +135203 third +135227 third +135238 third +135250 third +135252 first +135262 second +135267 second +135278 second +135280 third +135288 third +135294 second +135299 third +135301 second +135312 third +second +135317 third +135320 third +135325 second +135332 third +135334 first +135339 first +135344 first +135350 third +135362 third +135372 third +135374 third +135388 third +135418 third +135427 third +135429 third +135434 third +135515 third +135525 third +135533 third +135543 third +135579 third +135598 third +135601 third +135603 third +135618 third +135625 third +135638 third +135654 third +second +135669 third +135678 third +135687 third +135694 third +135702 third +135715 third +135726 third +135735 third +135744 third +135755 third +135763 third +135773 third +135780 third +135794 first +135824 third +135830 third +135838 third +135849 third +135855 third +135862 third +135873 third +135889 third +135891 second +135908 first +135926 third +135933 first +135935 first +135937 first +135942 third +135951 third +135954 third +135957 third +135968 third +135970 third +135972 second +135984 third +135992 third +135994 first +136002 third +136004 second +136006 first +136020 second +136025 third +136031 first +136036 second +136051 third +136053 third +136072 third +136082 third +136097 third +136111 third +136117 third +136122 third +136129 third +136143 third +136160 first +136168 third +136180 second +second +136190 second +136219 first +136247 third +136263 third +136277 third +136292 third +136311 third +136317 first +136336 third +136344 third +136350 third +136355 third +136361 third +136363 third +136368 third +136373 third +136379 third +136385 first +136388 third +136393 third +136413 third +136422 third +136434 third +136436 third +136447 third +136449 third +136475 third +136478 third +136486 third +136494 third +136498 third +136506 third +136536 third +136543 third +136554 third +136560 third +136568 third +136584 third +136594 first +136607 third +136616 third +136619 first +136633 third +136637 third +136639 third +136643 third +136657 third +136671 third +136678 third +136690 third +136705 third +136710 third +136717 third +136724 first +136738 third +136743 third +136746 first +136768 first +136775 second +136784 third +136791 third +136798 third +136800 third +136811 third +136820 third +136825 third +136827 third +136833 second +136835 first +136838 third +second +136847 third +136849 third +136851 third +136866 first +136877 third +136880 first +136885 third +136919 third +136925 third +136944 third +136948 second +first +136958 third +136968 third +137015 third +137063 third +137068 third +137083 third +137092 third +137111 third +137113 third +137124 third +137200 third +137217 first +137232 third +137237 third +137245 third +137252 third +137261 third +137273 third +137285 third +137290 third +137293 third +137306 third +137329 third +137382 third +137394 third +137399 third +137402 third +137417 third +137421 third +137432 third +137436 third +137443 third +137460 third +137472 third +137474 second +first +137496 first +137498 first +first +137511 third +137513 second +137515 first +137534 second +137536 third +137539 second +137551 third +137554 third +137559 third +137565 third +137570 third +137572 second +first +137587 third +137611 third +137623 third +137650 first +137661 first +137680 third +second +137685 third +second +137690 third +137693 third +137697 first +137711 third +137714 third +137730 third +137739 third +137762 third +137767 first +137770 second diff --git a/tf/0.1.1/ref.tf b/tf/0.1.1/ref.tf new file mode 100644 index 0000000..0d7204c --- /dev/null +++ b/tf/0.1.1/ref.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=biblical reference with word counting +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +MAT 1:1!1 +MAT 1:1!2 +MAT 1:1!3 +MAT 1:1!4 +MAT 1:1!5 +MAT 1:1!6 +MAT 1:1!7 +MAT 1:1!8 +MAT 1:2!1 +MAT 1:2!2 +MAT 1:2!3 +MAT 1:2!4 +MAT 1:2!6 +MAT 1:2!5 +MAT 1:2!7 +MAT 1:2!8 +MAT 1:2!9 +MAT 1:2!11 +MAT 1:2!10 +MAT 1:2!12 +MAT 1:2!13 +MAT 1:2!14 +MAT 1:2!15 +MAT 1:2!16 +MAT 1:2!17 +MAT 1:2!18 +MAT 1:3!2 +MAT 1:3!1 +MAT 1:3!3 +MAT 1:3!4 +MAT 1:3!5 +MAT 1:3!6 +MAT 1:3!7 +MAT 1:3!8 +MAT 1:3!9 +MAT 1:3!10 +MAT 1:3!11 +MAT 1:3!13 +MAT 1:3!12 +MAT 1:3!14 +MAT 1:3!15 +MAT 1:3!16 +MAT 1:3!18 +MAT 1:3!17 +MAT 1:3!19 +MAT 1:3!20 +MAT 1:3!21 +MAT 1:4!2 +MAT 1:4!1 +MAT 1:4!3 +MAT 1:4!4 +MAT 1:4!5 +MAT 1:4!7 +MAT 1:4!6 +MAT 1:4!8 +MAT 1:4!9 +MAT 1:4!10 +MAT 1:4!12 +MAT 1:4!11 +MAT 1:4!13 +MAT 1:4!14 +MAT 1:4!15 +MAT 1:5!2 +MAT 1:5!1 +MAT 1:5!3 +MAT 1:5!4 +MAT 1:5!5 +MAT 1:5!6 +MAT 1:5!7 +MAT 1:5!8 +MAT 1:5!10 +MAT 1:5!9 +MAT 1:5!11 +MAT 1:5!12 +MAT 1:5!13 +MAT 1:5!14 +MAT 1:5!15 +MAT 1:5!16 +MAT 1:5!18 +MAT 1:5!17 +MAT 1:5!19 +MAT 1:5!20 +MAT 1:5!21 +MAT 1:6!2 +MAT 1:6!1 +MAT 1:6!3 +MAT 1:6!4 +MAT 1:6!5 +MAT 1:6!6 +MAT 1:6!7 +MAT 1:6!9 +MAT 1:6!8 +MAT 1:6!10 +MAT 1:6!11 +MAT 1:6!12 +MAT 1:6!13 +MAT 1:6!14 +MAT 1:6!15 +MAT 1:6!16 +MAT 1:7!2 +MAT 1:7!1 +MAT 1:7!3 +MAT 1:7!4 +MAT 1:7!5 +MAT 1:7!7 +MAT 1:7!6 +MAT 1:7!8 +MAT 1:7!9 +MAT 1:7!10 +MAT 1:7!12 +MAT 1:7!11 +MAT 1:7!13 +MAT 1:7!14 +MAT 1:7!15 +MAT 1:8!2 +MAT 1:8!1 +MAT 1:8!3 +MAT 1:8!4 +MAT 1:8!5 +MAT 1:8!7 +MAT 1:8!6 +MAT 1:8!8 +MAT 1:8!9 +MAT 1:8!10 +MAT 1:8!12 +MAT 1:8!11 +MAT 1:8!13 +MAT 1:8!14 +MAT 1:8!15 +MAT 1:9!2 +MAT 1:9!1 +MAT 1:9!3 +MAT 1:9!4 +MAT 1:9!5 +MAT 1:9!7 +MAT 1:9!6 +MAT 1:9!8 +MAT 1:9!9 +MAT 1:9!10 +MAT 1:9!12 +MAT 1:9!11 +MAT 1:9!13 +MAT 1:9!14 +MAT 1:9!15 +MAT 1:10!2 +MAT 1:10!1 +MAT 1:10!3 +MAT 1:10!4 +MAT 1:10!5 +MAT 1:10!7 +MAT 1:10!6 +MAT 1:10!8 +MAT 1:10!9 +MAT 1:10!10 +MAT 1:10!12 +MAT 1:10!11 +MAT 1:10!13 +MAT 1:10!14 +MAT 1:10!15 +MAT 1:11!2 +MAT 1:11!1 +MAT 1:11!3 +MAT 1:11!4 +MAT 1:11!5 +MAT 1:11!6 +MAT 1:11!7 +MAT 1:11!8 +MAT 1:11!9 +MAT 1:11!10 +MAT 1:11!11 +MAT 1:11!12 +MAT 1:11!13 +MAT 1:12!2 +MAT 1:12!1 +MAT 1:12!3 +MAT 1:12!4 +MAT 1:12!5 +MAT 1:12!6 +MAT 1:12!7 +MAT 1:12!8 +MAT 1:12!9 +MAT 1:12!11 +MAT 1:12!10 +MAT 1:12!12 +MAT 1:12!13 +MAT 1:12!14 +MAT 1:13!2 +MAT 1:13!1 +MAT 1:13!3 +MAT 1:13!4 +MAT 1:13!5 +MAT 1:13!7 +MAT 1:13!6 +MAT 1:13!8 +MAT 1:13!9 +MAT 1:13!10 +MAT 1:13!12 +MAT 1:13!11 +MAT 1:13!13 +MAT 1:13!14 +MAT 1:13!15 +MAT 1:14!2 +MAT 1:14!1 +MAT 1:14!3 +MAT 1:14!4 +MAT 1:14!5 +MAT 1:14!7 +MAT 1:14!6 +MAT 1:14!8 +MAT 1:14!9 +MAT 1:14!10 +MAT 1:14!12 +MAT 1:14!11 +MAT 1:14!13 +MAT 1:14!14 +MAT 1:14!15 +MAT 1:15!2 +MAT 1:15!1 +MAT 1:15!3 +MAT 1:15!4 +MAT 1:15!5 +MAT 1:15!7 +MAT 1:15!6 +MAT 1:15!8 +MAT 1:15!9 +MAT 1:15!10 +MAT 1:15!12 +MAT 1:15!11 +MAT 1:15!13 +MAT 1:15!14 +MAT 1:15!15 +MAT 1:16!2 +MAT 1:16!1 +MAT 1:16!3 +MAT 1:16!4 +MAT 1:16!5 +MAT 1:16!6 +MAT 1:16!7 +MAT 1:16!8 +MAT 1:16!9 +MAT 1:16!10 +MAT 1:16!11 +MAT 1:16!12 +MAT 1:16!13 +MAT 1:16!14 +MAT 1:16!15 +MAT 1:17!2 +MAT 1:17!1 +MAT 1:17!3 +MAT 1:17!4 +MAT 1:17!5 +MAT 1:17!6 +MAT 1:17!7 +MAT 1:17!8 +MAT 1:17!9 +MAT 1:17!10 +MAT 1:17!11 +MAT 1:17!12 +MAT 1:17!13 +MAT 1:17!14 +MAT 1:17!15 +MAT 1:17!16 +MAT 1:17!17 +MAT 1:17!18 +MAT 1:17!19 +MAT 1:17!20 +MAT 1:17!21 +MAT 1:17!22 +MAT 1:17!23 +MAT 1:17!24 +MAT 1:17!25 +MAT 1:17!26 +MAT 1:17!27 +MAT 1:17!28 +MAT 1:17!29 +MAT 1:18!2 +MAT 1:18!1 +MAT 1:18!3 +MAT 1:18!4 +MAT 1:18!5 +MAT 1:18!6 +MAT 1:18!7 +MAT 1:18!8 +MAT 1:18!9 +MAT 1:18!10 +MAT 1:18!11 +MAT 1:18!12 +MAT 1:18!13 +MAT 1:18!14 +MAT 1:18!15 +MAT 1:18!16 +MAT 1:18!17 +MAT 1:18!18 +MAT 1:18!19 +MAT 1:18!20 +MAT 1:18!21 +MAT 1:18!22 +MAT 1:18!23 +MAT 1:18!24 +MAT 1:18!25 +MAT 1:18!26 +MAT 1:19!2 +MAT 1:19!1 +MAT 1:19!3 +MAT 1:19!4 +MAT 1:19!5 +MAT 1:19!6 +MAT 1:19!7 +MAT 1:19!8 +MAT 1:19!9 +MAT 1:19!10 +MAT 1:19!11 +MAT 1:19!12 +MAT 1:19!13 +MAT 1:19!14 +MAT 1:19!15 +MAT 1:19!16 +MAT 1:20!2 +MAT 1:20!1 +MAT 1:20!3 +MAT 1:20!4 +MAT 1:20!5 +MAT 1:20!6 +MAT 1:20!7 +MAT 1:20!8 +MAT 1:20!9 +MAT 1:20!10 +MAT 1:20!11 +MAT 1:20!12 +MAT 1:20!13 +MAT 1:20!14 +MAT 1:20!15 +MAT 1:20!16 +MAT 1:20!17 +MAT 1:20!18 +MAT 1:20!19 +MAT 1:20!20 +MAT 1:20!21 +MAT 1:20!22 +MAT 1:20!24 +MAT 1:20!23 +MAT 1:20!25 +MAT 1:20!26 +MAT 1:20!27 +MAT 1:20!28 +MAT 1:20!29 +MAT 1:20!31 +MAT 1:20!30 +MAT 1:21!2 +MAT 1:21!1 +MAT 1:21!3 +MAT 1:21!4 +MAT 1:21!5 +MAT 1:21!6 +MAT 1:21!7 +MAT 1:21!8 +MAT 1:21!9 +MAT 1:21!11 +MAT 1:21!10 +MAT 1:21!12 +MAT 1:21!13 +MAT 1:21!14 +MAT 1:21!15 +MAT 1:21!16 +MAT 1:21!17 +MAT 1:21!18 +MAT 1:21!19 +MAT 1:22!2 +MAT 1:22!1 +MAT 1:22!3 +MAT 1:22!4 +MAT 1:22!5 +MAT 1:22!6 +MAT 1:22!7 +MAT 1:22!8 +MAT 1:22!9 +MAT 1:22!10 +MAT 1:22!11 +MAT 1:22!12 +MAT 1:22!13 +MAT 1:22!14 +MAT 1:23!1 +MAT 1:23!2 +MAT 1:23!3 +MAT 1:23!4 +MAT 1:23!5 +MAT 1:23!6 +MAT 1:23!7 +MAT 1:23!8 +MAT 1:23!9 +MAT 1:23!10 +MAT 1:23!11 +MAT 1:23!12 +MAT 1:23!13 +MAT 1:23!14 +MAT 1:23!15 +MAT 1:23!16 +MAT 1:23!17 +MAT 1:23!18 +MAT 1:23!19 +MAT 1:23!20 +MAT 1:23!21 +MAT 1:23!22 +MAT 1:24!2 +MAT 1:24!3 +MAT 1:24!4 +MAT 1:24!1 +MAT 1:24!5 +MAT 1:24!6 +MAT 1:24!7 +MAT 1:24!8 +MAT 1:24!9 +MAT 1:24!10 +MAT 1:24!11 +MAT 1:24!12 +MAT 1:24!13 +MAT 1:24!14 +MAT 1:24!15 +MAT 1:24!16 +MAT 1:24!17 +MAT 1:24!18 +MAT 1:24!19 +MAT 1:25!1 +MAT 1:25!2 +MAT 1:25!3 +MAT 1:25!4 +MAT 1:25!5 +MAT 1:25!6 +MAT 1:25!7 +MAT 1:25!8 +MAT 1:25!9 +MAT 1:25!10 +MAT 1:25!11 +MAT 1:25!12 +MAT 1:25!13 +MAT 1:25!14 +MAT 2:1!2 +MAT 2:1!1 +MAT 2:1!3 +MAT 2:1!4 +MAT 2:1!5 +MAT 2:1!6 +MAT 2:1!7 +MAT 2:1!8 +MAT 2:1!9 +MAT 2:1!10 +MAT 2:1!11 +MAT 2:1!12 +MAT 2:1!13 +MAT 2:1!14 +MAT 2:1!15 +MAT 2:1!16 +MAT 2:1!17 +MAT 2:1!18 +MAT 2:1!19 +MAT 2:1!20 +MAT 2:2!1 +MAT 2:2!2 +MAT 2:2!3 +MAT 2:2!4 +MAT 2:2!5 +MAT 2:2!6 +MAT 2:2!7 +MAT 2:2!8 +MAT 2:2!10 +MAT 2:2!9 +MAT 2:2!11 +MAT 2:2!12 +MAT 2:2!13 +MAT 2:2!14 +MAT 2:2!15 +MAT 2:2!16 +MAT 2:2!17 +MAT 2:2!18 +MAT 2:2!19 +MAT 2:2!20 +MAT 2:3!2 +MAT 2:3!1 +MAT 2:3!3 +MAT 2:3!4 +MAT 2:3!5 +MAT 2:3!6 +MAT 2:3!7 +MAT 2:3!8 +MAT 2:3!9 +MAT 2:3!10 +MAT 2:3!11 +MAT 2:4!1 +MAT 2:4!2 +MAT 2:4!3 +MAT 2:4!4 +MAT 2:4!5 +MAT 2:4!6 +MAT 2:4!7 +MAT 2:4!8 +MAT 2:4!9 +MAT 2:4!10 +MAT 2:4!11 +MAT 2:4!12 +MAT 2:4!13 +MAT 2:4!14 +MAT 2:4!15 +MAT 2:4!16 +MAT 2:5!2 +MAT 2:5!1 +MAT 2:5!3 +MAT 2:5!4 +MAT 2:5!5 +MAT 2:5!6 +MAT 2:5!7 +MAT 2:5!8 +MAT 2:5!10 +MAT 2:5!9 +MAT 2:5!11 +MAT 2:5!12 +MAT 2:5!13 +MAT 2:5!14 +MAT 2:6!1 +MAT 2:6!3 +MAT 2:6!4 +MAT 2:6!5 +MAT 2:6!2 +MAT 2:6!6 +MAT 2:6!7 +MAT 2:6!8 +MAT 2:6!9 +MAT 2:6!10 +MAT 2:6!11 +MAT 2:6!12 +MAT 2:6!15 +MAT 2:6!13 +MAT 2:6!14 +MAT 2:6!16 +MAT 2:6!17 +MAT 2:6!18 +MAT 2:6!19 +MAT 2:6!20 +MAT 2:6!21 +MAT 2:6!22 +MAT 2:6!23 +MAT 2:6!24 +MAT 2:7!1 +MAT 2:7!2 +MAT 2:7!3 +MAT 2:7!4 +MAT 2:7!5 +MAT 2:7!6 +MAT 2:7!7 +MAT 2:7!8 +MAT 2:7!9 +MAT 2:7!10 +MAT 2:7!11 +MAT 2:7!12 +MAT 2:7!13 +MAT 2:7!14 +MAT 2:8!1 +MAT 2:8!2 +MAT 2:8!3 +MAT 2:8!4 +MAT 2:8!5 +MAT 2:8!6 +MAT 2:8!7 +MAT 2:8!8 +MAT 2:8!9 +MAT 2:8!10 +MAT 2:8!11 +MAT 2:8!12 +MAT 2:8!14 +MAT 2:8!13 +MAT 2:8!15 +MAT 2:8!16 +MAT 2:8!17 +MAT 2:8!18 +MAT 2:8!19 +MAT 2:8!20 +MAT 2:8!21 +MAT 2:8!22 +MAT 2:9!2 +MAT 2:9!1 +MAT 2:9!3 +MAT 2:9!4 +MAT 2:9!5 +MAT 2:9!6 +MAT 2:9!7 +MAT 2:9!8 +MAT 2:9!9 +MAT 2:9!10 +MAT 2:9!11 +MAT 2:9!12 +MAT 2:9!13 +MAT 2:9!14 +MAT 2:9!15 +MAT 2:9!16 +MAT 2:9!17 +MAT 2:9!18 +MAT 2:9!19 +MAT 2:9!20 +MAT 2:9!21 +MAT 2:9!22 +MAT 2:9!23 +MAT 2:9!24 +MAT 2:9!25 +MAT 2:10!2 +MAT 2:10!1 +MAT 2:10!3 +MAT 2:10!4 +MAT 2:10!5 +MAT 2:10!6 +MAT 2:10!7 +MAT 2:10!8 +MAT 2:11!1 +MAT 2:11!2 +MAT 2:11!3 +MAT 2:11!4 +MAT 2:11!5 +MAT 2:11!6 +MAT 2:11!7 +MAT 2:11!8 +MAT 2:11!9 +MAT 2:11!10 +MAT 2:11!11 +MAT 2:11!12 +MAT 2:11!13 +MAT 2:11!14 +MAT 2:11!15 +MAT 2:11!16 +MAT 2:11!17 +MAT 2:11!18 +MAT 2:11!19 +MAT 2:11!20 +MAT 2:11!21 +MAT 2:11!22 +MAT 2:11!23 +MAT 2:11!24 +MAT 2:11!25 +MAT 2:11!26 +MAT 2:11!27 +MAT 2:11!28 +MAT 2:11!29 +MAT 2:11!30 +MAT 2:12!1 +MAT 2:12!2 +MAT 2:12!3 +MAT 2:12!4 +MAT 2:12!5 +MAT 2:12!6 +MAT 2:12!7 +MAT 2:12!8 +MAT 2:12!9 +MAT 2:12!10 +MAT 2:12!11 +MAT 2:12!12 +MAT 2:12!13 +MAT 2:12!14 +MAT 2:12!15 +MAT 2:12!16 +MAT 2:13!2 +MAT 2:13!1 +MAT 2:13!3 +MAT 2:13!4 +MAT 2:13!5 +MAT 2:13!6 +MAT 2:13!7 +MAT 2:13!8 +MAT 2:13!9 +MAT 2:13!10 +MAT 2:13!11 +MAT 2:13!12 +MAT 2:13!13 +MAT 2:13!14 +MAT 2:13!15 +MAT 2:13!16 +MAT 2:13!17 +MAT 2:13!18 +MAT 2:13!19 +MAT 2:13!20 +MAT 2:13!21 +MAT 2:13!22 +MAT 2:13!23 +MAT 2:13!24 +MAT 2:13!25 +MAT 2:13!26 +MAT 2:13!27 +MAT 2:13!28 +MAT 2:13!29 +MAT 2:13!30 +MAT 2:13!31 +MAT 2:13!33 +MAT 2:13!32 +MAT 2:13!34 +MAT 2:13!35 +MAT 2:13!36 +MAT 2:13!37 +MAT 2:13!38 +MAT 2:13!39 +MAT 2:13!40 +MAT 2:14!2 +MAT 2:14!1 +MAT 2:14!3 +MAT 2:14!4 +MAT 2:14!5 +MAT 2:14!6 +MAT 2:14!7 +MAT 2:14!8 +MAT 2:14!9 +MAT 2:14!10 +MAT 2:14!11 +MAT 2:14!12 +MAT 2:14!13 +MAT 2:14!14 +MAT 2:14!15 +MAT 2:15!1 +MAT 2:15!2 +MAT 2:15!3 +MAT 2:15!4 +MAT 2:15!5 +MAT 2:15!6 +MAT 2:15!7 +MAT 2:15!8 +MAT 2:15!9 +MAT 2:15!10 +MAT 2:15!11 +MAT 2:15!12 +MAT 2:15!13 +MAT 2:15!14 +MAT 2:15!15 +MAT 2:15!16 +MAT 2:15!17 +MAT 2:15!18 +MAT 2:15!19 +MAT 2:15!20 +MAT 2:15!21 +MAT 2:15!22 +MAT 2:15!23 +MAT 2:16!1 +MAT 2:16!2 +MAT 2:16!3 +MAT 2:16!4 +MAT 2:16!5 +MAT 2:16!6 +MAT 2:16!7 +MAT 2:16!8 +MAT 2:16!9 +MAT 2:16!10 +MAT 2:16!11 +MAT 2:16!12 +MAT 2:16!13 +MAT 2:16!14 +MAT 2:16!15 +MAT 2:16!16 +MAT 2:16!17 +MAT 2:16!18 +MAT 2:16!19 +MAT 2:16!20 +MAT 2:16!21 +MAT 2:16!22 +MAT 2:16!23 +MAT 2:16!24 +MAT 2:16!25 +MAT 2:16!26 +MAT 2:16!27 +MAT 2:16!28 +MAT 2:16!29 +MAT 2:16!30 +MAT 2:16!31 +MAT 2:16!32 +MAT 2:16!33 +MAT 2:16!34 +MAT 2:16!35 +MAT 2:16!36 +MAT 2:16!37 +MAT 2:17!1 +MAT 2:17!2 +MAT 2:17!3 +MAT 2:17!4 +MAT 2:17!5 +MAT 2:17!6 +MAT 2:17!7 +MAT 2:17!8 +MAT 2:17!9 +MAT 2:18!2 +MAT 2:18!3 +MAT 2:18!4 +MAT 2:18!1 +MAT 2:18!5 +MAT 2:18!6 +MAT 2:18!7 +MAT 2:18!8 +MAT 2:18!9 +MAT 2:18!10 +MAT 2:18!11 +MAT 2:18!12 +MAT 2:18!13 +MAT 2:18!14 +MAT 2:18!15 +MAT 2:18!16 +MAT 2:18!17 +MAT 2:18!18 +MAT 2:18!19 +MAT 2:18!20 +MAT 2:19!2 +MAT 2:19!1 +MAT 2:19!3 +MAT 2:19!4 +MAT 2:19!5 +MAT 2:19!6 +MAT 2:19!7 +MAT 2:19!8 +MAT 2:19!9 +MAT 2:19!10 +MAT 2:19!11 +MAT 2:19!12 +MAT 2:19!13 +MAT 2:19!14 +MAT 2:20!1 +MAT 2:20!2 +MAT 2:20!3 +MAT 2:20!4 +MAT 2:20!5 +MAT 2:20!6 +MAT 2:20!7 +MAT 2:20!8 +MAT 2:20!9 +MAT 2:20!10 +MAT 2:20!11 +MAT 2:20!12 +MAT 2:20!13 +MAT 2:20!14 +MAT 2:20!16 +MAT 2:20!15 +MAT 2:20!17 +MAT 2:20!18 +MAT 2:20!19 +MAT 2:20!20 +MAT 2:20!21 +MAT 2:20!22 +MAT 2:21!2 +MAT 2:21!1 +MAT 2:21!3 +MAT 2:21!4 +MAT 2:21!5 +MAT 2:21!6 +MAT 2:21!7 +MAT 2:21!8 +MAT 2:21!9 +MAT 2:21!10 +MAT 2:21!11 +MAT 2:21!12 +MAT 2:21!13 +MAT 2:21!14 +MAT 2:21!15 +MAT 2:22!2 +MAT 2:22!1 +MAT 2:22!3 +MAT 2:22!4 +MAT 2:22!5 +MAT 2:22!6 +MAT 2:22!7 +MAT 2:22!8 +MAT 2:22!9 +MAT 2:22!10 +MAT 2:22!11 +MAT 2:22!12 +MAT 2:22!13 +MAT 2:22!14 +MAT 2:22!15 +MAT 2:22!17 +MAT 2:22!16 +MAT 2:22!18 +MAT 2:22!19 +MAT 2:22!20 +MAT 2:22!21 +MAT 2:22!22 +MAT 2:22!23 +MAT 2:22!24 +MAT 2:22!25 +MAT 2:23!1 +MAT 2:23!2 +MAT 2:23!3 +MAT 2:23!4 +MAT 2:23!5 +MAT 2:23!6 +MAT 2:23!7 +MAT 2:23!8 +MAT 2:23!9 +MAT 2:23!10 +MAT 2:23!11 +MAT 2:23!12 +MAT 2:23!13 +MAT 2:23!14 +MAT 2:23!15 +MAT 2:23!16 +MAT 2:23!17 +MAT 3:1!2 +MAT 3:1!1 +MAT 3:1!3 +MAT 3:1!4 +MAT 3:1!5 +MAT 3:1!6 +MAT 3:1!7 +MAT 3:1!8 +MAT 3:1!9 +MAT 3:1!10 +MAT 3:1!11 +MAT 3:1!12 +MAT 3:1!13 +MAT 3:1!14 +MAT 3:1!15 +MAT 3:2!1 +MAT 3:2!2 +MAT 3:2!4 +MAT 3:2!3 +MAT 3:2!5 +MAT 3:2!6 +MAT 3:2!7 +MAT 3:2!8 +MAT 3:3!2 +MAT 3:3!1 +MAT 3:3!3 +MAT 3:3!4 +MAT 3:3!5 +MAT 3:3!6 +MAT 3:3!7 +MAT 3:3!8 +MAT 3:3!9 +MAT 3:3!10 +MAT 3:3!11 +MAT 3:3!12 +MAT 3:3!13 +MAT 3:3!14 +MAT 3:3!15 +MAT 3:3!16 +MAT 3:3!17 +MAT 3:3!18 +MAT 3:3!19 +MAT 3:3!20 +MAT 3:3!21 +MAT 3:3!22 +MAT 3:3!23 +MAT 3:3!24 +MAT 3:4!2 +MAT 3:4!1 +MAT 3:4!3 +MAT 3:4!4 +MAT 3:4!5 +MAT 3:4!6 +MAT 3:4!7 +MAT 3:4!8 +MAT 3:4!9 +MAT 3:4!10 +MAT 3:4!11 +MAT 3:4!12 +MAT 3:4!13 +MAT 3:4!14 +MAT 3:4!15 +MAT 3:4!16 +MAT 3:4!17 +MAT 3:4!18 +MAT 3:4!20 +MAT 3:4!19 +MAT 3:4!21 +MAT 3:4!23 +MAT 3:4!22 +MAT 3:4!24 +MAT 3:4!25 +MAT 3:4!26 +MAT 3:4!27 +MAT 3:5!1 +MAT 3:5!2 +MAT 3:5!3 +MAT 3:5!4 +MAT 3:5!5 +MAT 3:5!6 +MAT 3:5!7 +MAT 3:5!8 +MAT 3:5!9 +MAT 3:5!10 +MAT 3:5!11 +MAT 3:5!12 +MAT 3:5!13 +MAT 3:5!14 +MAT 3:5!15 +MAT 3:6!1 +MAT 3:6!2 +MAT 3:6!3 +MAT 3:6!4 +MAT 3:6!5 +MAT 3:6!6 +MAT 3:6!7 +MAT 3:6!8 +MAT 3:6!9 +MAT 3:6!10 +MAT 3:6!11 +MAT 3:6!12 +MAT 3:7!2 +MAT 3:7!1 +MAT 3:7!3 +MAT 3:7!4 +MAT 3:7!5 +MAT 3:7!6 +MAT 3:7!7 +MAT 3:7!8 +MAT 3:7!9 +MAT 3:7!10 +MAT 3:7!11 +MAT 3:7!12 +MAT 3:7!13 +MAT 3:7!14 +MAT 3:7!15 +MAT 3:7!16 +MAT 3:7!17 +MAT 3:7!18 +MAT 3:7!19 +MAT 3:7!20 +MAT 3:7!21 +MAT 3:7!22 +MAT 3:7!23 +MAT 3:8!2 +MAT 3:8!1 +MAT 3:8!3 +MAT 3:8!4 +MAT 3:8!5 +MAT 3:8!6 +MAT 3:9!1 +MAT 3:9!2 +MAT 3:9!3 +MAT 3:9!4 +MAT 3:9!5 +MAT 3:9!6 +MAT 3:9!7 +MAT 3:9!8 +MAT 3:9!9 +MAT 3:9!10 +MAT 3:9!12 +MAT 3:9!11 +MAT 3:9!13 +MAT 3:9!14 +MAT 3:9!15 +MAT 3:9!16 +MAT 3:9!17 +MAT 3:9!18 +MAT 3:9!19 +MAT 3:9!20 +MAT 3:9!21 +MAT 3:9!22 +MAT 3:9!23 +MAT 3:9!24 +MAT 3:9!25 +MAT 3:10!2 +MAT 3:10!1 +MAT 3:10!3 +MAT 3:10!4 +MAT 3:10!5 +MAT 3:10!6 +MAT 3:10!7 +MAT 3:10!8 +MAT 3:10!9 +MAT 3:10!10 +MAT 3:10!12 +MAT 3:10!11 +MAT 3:10!13 +MAT 3:10!14 +MAT 3:10!15 +MAT 3:10!16 +MAT 3:10!17 +MAT 3:10!18 +MAT 3:10!19 +MAT 3:10!20 +MAT 3:10!21 +MAT 3:10!22 +MAT 3:11!2 +MAT 3:11!1 +MAT 3:11!3 +MAT 3:11!4 +MAT 3:11!5 +MAT 3:11!6 +MAT 3:11!7 +MAT 3:11!8 +MAT 3:11!10 +MAT 3:11!9 +MAT 3:11!11 +MAT 3:11!12 +MAT 3:11!13 +MAT 3:11!14 +MAT 3:11!15 +MAT 3:11!16 +MAT 3:11!17 +MAT 3:11!18 +MAT 3:11!19 +MAT 3:11!20 +MAT 3:11!21 +MAT 3:11!22 +MAT 3:11!23 +MAT 3:11!24 +MAT 3:11!25 +MAT 3:11!26 +MAT 3:11!27 +MAT 3:11!28 +MAT 3:11!29 +MAT 3:11!30 +MAT 3:11!31 +MAT 3:12!1 +MAT 3:12!2 +MAT 3:12!3 +MAT 3:12!4 +MAT 3:12!5 +MAT 3:12!6 +MAT 3:12!7 +MAT 3:12!8 +MAT 3:12!9 +MAT 3:12!10 +MAT 3:12!11 +MAT 3:12!12 +MAT 3:12!13 +MAT 3:12!14 +MAT 3:12!15 +MAT 3:12!16 +MAT 3:12!17 +MAT 3:12!18 +MAT 3:12!19 +MAT 3:12!20 +MAT 3:12!22 +MAT 3:12!21 +MAT 3:12!23 +MAT 3:12!24 +MAT 3:12!25 +MAT 3:12!26 +MAT 3:13!1 +MAT 3:13!2 +MAT 3:13!3 +MAT 3:13!4 +MAT 3:13!5 +MAT 3:13!6 +MAT 3:13!7 +MAT 3:13!8 +MAT 3:13!9 +MAT 3:13!10 +MAT 3:13!11 +MAT 3:13!12 +MAT 3:13!13 +MAT 3:13!14 +MAT 3:13!15 +MAT 3:13!16 +MAT 3:13!17 +MAT 3:14!2 +MAT 3:14!1 +MAT 3:14!3 +MAT 3:14!4 +MAT 3:14!5 +MAT 3:14!6 +MAT 3:14!7 +MAT 3:14!8 +MAT 3:14!9 +MAT 3:14!10 +MAT 3:14!11 +MAT 3:14!12 +MAT 3:14!13 +MAT 3:14!14 +MAT 3:14!15 +MAT 3:14!16 +MAT 3:15!2 +MAT 3:15!1 +MAT 3:15!3 +MAT 3:15!4 +MAT 3:15!5 +MAT 3:15!6 +MAT 3:15!7 +MAT 3:15!8 +MAT 3:15!10 +MAT 3:15!9 +MAT 3:15!11 +MAT 3:15!12 +MAT 3:15!13 +MAT 3:15!14 +MAT 3:15!15 +MAT 3:15!16 +MAT 3:15!17 +MAT 3:15!18 +MAT 3:15!19 +MAT 3:16!2 +MAT 3:16!1 +MAT 3:16!3 +MAT 3:16!4 +MAT 3:16!5 +MAT 3:16!6 +MAT 3:16!7 +MAT 3:16!8 +MAT 3:16!9 +MAT 3:16!10 +MAT 3:16!11 +MAT 3:16!12 +MAT 3:16!13 +MAT 3:16!14 +MAT 3:16!15 +MAT 3:16!16 +MAT 3:16!17 +MAT 3:16!18 +MAT 3:16!19 +MAT 3:16!20 +MAT 3:16!21 +MAT 3:16!22 +MAT 3:16!23 +MAT 3:16!24 +MAT 3:17!1 +MAT 3:17!2 +MAT 3:17!3 +MAT 3:17!4 +MAT 3:17!5 +MAT 3:17!6 +MAT 3:17!7 +MAT 3:17!8 +MAT 3:17!9 +MAT 3:17!10 +MAT 3:17!11 +MAT 3:17!12 +MAT 3:17!13 +MAT 3:17!14 +MAT 3:17!15 +MAT 3:17!16 +MAT 3:17!17 +MAT 4:1!1 +MAT 4:1!2 +MAT 4:1!3 +MAT 4:1!4 +MAT 4:1!5 +MAT 4:1!6 +MAT 4:1!7 +MAT 4:1!8 +MAT 4:1!9 +MAT 4:1!10 +MAT 4:1!11 +MAT 4:1!12 +MAT 4:1!13 +MAT 4:1!14 +MAT 4:2!1 +MAT 4:2!2 +MAT 4:2!3 +MAT 4:2!4 +MAT 4:2!5 +MAT 4:2!6 +MAT 4:2!7 +MAT 4:2!8 +MAT 4:2!9 +MAT 4:3!1 +MAT 4:3!2 +MAT 4:3!3 +MAT 4:3!4 +MAT 4:3!5 +MAT 4:3!6 +MAT 4:3!7 +MAT 4:3!9 +MAT 4:3!8 +MAT 4:3!10 +MAT 4:3!11 +MAT 4:3!12 +MAT 4:3!13 +MAT 4:3!14 +MAT 4:3!15 +MAT 4:3!16 +MAT 4:3!17 +MAT 4:3!18 +MAT 4:4!2 +MAT 4:4!1 +MAT 4:4!3 +MAT 4:4!4 +MAT 4:4!5 +MAT 4:4!6 +MAT 4:4!7 +MAT 4:4!8 +MAT 4:4!9 +MAT 4:4!10 +MAT 4:4!11 +MAT 4:4!12 +MAT 4:4!13 +MAT 4:4!14 +MAT 4:4!15 +MAT 4:4!16 +MAT 4:4!17 +MAT 4:4!18 +MAT 4:4!19 +MAT 4:4!20 +MAT 4:5!1 +MAT 4:5!2 +MAT 4:5!3 +MAT 4:5!4 +MAT 4:5!5 +MAT 4:5!6 +MAT 4:5!7 +MAT 4:5!8 +MAT 4:5!9 +MAT 4:5!10 +MAT 4:5!11 +MAT 4:5!12 +MAT 4:5!13 +MAT 4:5!14 +MAT 4:5!15 +MAT 4:5!16 +MAT 4:5!17 +MAT 4:6!1 +MAT 4:6!2 +MAT 4:6!3 +MAT 4:6!4 +MAT 4:6!6 +MAT 4:6!5 +MAT 4:6!7 +MAT 4:6!8 +MAT 4:6!9 +MAT 4:6!10 +MAT 4:6!11 +MAT 4:6!13 +MAT 4:6!12 +MAT 4:6!14 +MAT 4:6!15 +MAT 4:6!16 +MAT 4:6!17 +MAT 4:6!18 +MAT 4:6!19 +MAT 4:6!20 +MAT 4:6!21 +MAT 4:6!22 +MAT 4:6!23 +MAT 4:6!24 +MAT 4:6!25 +MAT 4:6!26 +MAT 4:6!27 +MAT 4:6!28 +MAT 4:6!29 +MAT 4:6!30 +MAT 4:6!31 +MAT 4:6!32 +MAT 4:6!33 +MAT 4:7!1 +MAT 4:7!2 +MAT 4:7!3 +MAT 4:7!4 +MAT 4:7!5 +MAT 4:7!6 +MAT 4:7!7 +MAT 4:7!8 +MAT 4:7!9 +MAT 4:7!10 +MAT 4:7!11 +MAT 4:7!12 +MAT 4:8!1 +MAT 4:8!2 +MAT 4:8!3 +MAT 4:8!4 +MAT 4:8!5 +MAT 4:8!6 +MAT 4:8!7 +MAT 4:8!8 +MAT 4:8!9 +MAT 4:8!10 +MAT 4:8!11 +MAT 4:8!12 +MAT 4:8!13 +MAT 4:8!14 +MAT 4:8!15 +MAT 4:8!16 +MAT 4:8!17 +MAT 4:8!18 +MAT 4:8!19 +MAT 4:8!20 +MAT 4:8!21 +MAT 4:9!1 +MAT 4:9!2 +MAT 4:9!3 +MAT 4:9!4 +MAT 4:9!6 +MAT 4:9!5 +MAT 4:9!7 +MAT 4:9!8 +MAT 4:9!9 +MAT 4:9!10 +MAT 4:9!11 +MAT 4:10!1 +MAT 4:10!2 +MAT 4:10!3 +MAT 4:10!4 +MAT 4:10!5 +MAT 4:10!6 +MAT 4:10!7 +MAT 4:10!9 +MAT 4:10!8 +MAT 4:10!10 +MAT 4:10!11 +MAT 4:10!12 +MAT 4:10!13 +MAT 4:10!14 +MAT 4:10!15 +MAT 4:10!16 +MAT 4:10!17 +MAT 4:10!18 +MAT 4:11!1 +MAT 4:11!2 +MAT 4:11!3 +MAT 4:11!4 +MAT 4:11!5 +MAT 4:11!6 +MAT 4:11!7 +MAT 4:11!8 +MAT 4:11!9 +MAT 4:11!10 +MAT 4:11!11 +MAT 4:11!12 +MAT 4:12!2 +MAT 4:12!1 +MAT 4:12!3 +MAT 4:12!4 +MAT 4:12!5 +MAT 4:12!6 +MAT 4:12!7 +MAT 4:12!8 +MAT 4:12!9 +MAT 4:13!1 +MAT 4:13!2 +MAT 4:13!3 +MAT 4:13!4 +MAT 4:13!5 +MAT 4:13!6 +MAT 4:13!7 +MAT 4:13!8 +MAT 4:13!9 +MAT 4:13!10 +MAT 4:13!11 +MAT 4:13!12 +MAT 4:13!13 +MAT 4:13!14 +MAT 4:13!15 +MAT 4:14!1 +MAT 4:14!2 +MAT 4:14!3 +MAT 4:14!4 +MAT 4:14!5 +MAT 4:14!6 +MAT 4:14!7 +MAT 4:14!8 +MAT 4:14!9 +MAT 4:15!1 +MAT 4:15!2 +MAT 4:15!3 +MAT 4:15!4 +MAT 4:15!5 +MAT 4:15!6 +MAT 4:15!7 +MAT 4:15!8 +MAT 4:15!9 +MAT 4:15!10 +MAT 4:15!11 +MAT 4:15!12 +MAT 4:15!13 +MAT 4:16!1 +MAT 4:16!2 +MAT 4:16!3 +MAT 4:16!4 +MAT 4:16!5 +MAT 4:16!6 +MAT 4:16!7 +MAT 4:16!9 +MAT 4:16!8 +MAT 4:16!10 +MAT 4:16!11 +MAT 4:16!12 +MAT 4:16!13 +MAT 4:16!14 +MAT 4:16!15 +MAT 4:16!16 +MAT 4:16!17 +MAT 4:16!18 +MAT 4:16!19 +MAT 4:16!20 +MAT 4:17!1 +MAT 4:17!2 +MAT 4:17!3 +MAT 4:17!4 +MAT 4:17!5 +MAT 4:17!6 +MAT 4:17!7 +MAT 4:17!8 +MAT 4:17!9 +MAT 4:17!11 +MAT 4:17!10 +MAT 4:17!12 +MAT 4:17!13 +MAT 4:17!14 +MAT 4:17!15 +MAT 4:18!2 +MAT 4:18!1 +MAT 4:18!3 +MAT 4:18!4 +MAT 4:18!5 +MAT 4:18!6 +MAT 4:18!7 +MAT 4:18!8 +MAT 4:18!9 +MAT 4:18!10 +MAT 4:18!11 +MAT 4:18!12 +MAT 4:18!13 +MAT 4:18!14 +MAT 4:18!15 +MAT 4:18!16 +MAT 4:18!17 +MAT 4:18!18 +MAT 4:18!19 +MAT 4:18!20 +MAT 4:18!21 +MAT 4:18!22 +MAT 4:18!23 +MAT 4:18!24 +MAT 4:18!26 +MAT 4:18!25 +MAT 4:18!27 +MAT 4:19!1 +MAT 4:19!2 +MAT 4:19!3 +MAT 4:19!4 +MAT 4:19!5 +MAT 4:19!6 +MAT 4:19!7 +MAT 4:19!8 +MAT 4:19!9 +MAT 4:19!10 +MAT 4:19!11 +MAT 4:20!2 +MAT 4:20!1 +MAT 4:20!3 +MAT 4:20!4 +MAT 4:20!5 +MAT 4:20!6 +MAT 4:20!7 +MAT 4:20!8 +MAT 4:21!1 +MAT 4:21!2 +MAT 4:21!3 +MAT 4:21!4 +MAT 4:21!5 +MAT 4:21!6 +MAT 4:21!7 +MAT 4:21!8 +MAT 4:21!9 +MAT 4:21!10 +MAT 4:21!11 +MAT 4:21!12 +MAT 4:21!13 +MAT 4:21!14 +MAT 4:21!15 +MAT 4:21!16 +MAT 4:21!17 +MAT 4:21!18 +MAT 4:21!19 +MAT 4:21!20 +MAT 4:21!21 +MAT 4:21!22 +MAT 4:21!23 +MAT 4:21!24 +MAT 4:21!25 +MAT 4:21!26 +MAT 4:21!27 +MAT 4:21!28 +MAT 4:21!29 +MAT 4:21!30 +MAT 4:21!31 +MAT 4:22!2 +MAT 4:22!1 +MAT 4:22!3 +MAT 4:22!4 +MAT 4:22!5 +MAT 4:22!6 +MAT 4:22!7 +MAT 4:22!8 +MAT 4:22!9 +MAT 4:22!10 +MAT 4:22!11 +MAT 4:22!12 +MAT 4:23!1 +MAT 4:23!2 +MAT 4:23!3 +MAT 4:23!4 +MAT 4:23!5 +MAT 4:23!6 +MAT 4:23!7 +MAT 4:23!8 +MAT 4:23!9 +MAT 4:23!10 +MAT 4:23!11 +MAT 4:23!12 +MAT 4:23!13 +MAT 4:23!14 +MAT 4:23!15 +MAT 4:23!16 +MAT 4:23!17 +MAT 4:23!18 +MAT 4:23!19 +MAT 4:23!20 +MAT 4:23!21 +MAT 4:23!22 +MAT 4:23!23 +MAT 4:23!24 +MAT 4:23!25 +MAT 4:23!26 +MAT 4:23!27 +MAT 4:24!1 +MAT 4:24!2 +MAT 4:24!3 +MAT 4:24!4 +MAT 4:24!5 +MAT 4:24!6 +MAT 4:24!7 +MAT 4:24!8 +MAT 4:24!9 +MAT 4:24!10 +MAT 4:24!11 +MAT 4:24!12 +MAT 4:24!13 +MAT 4:24!14 +MAT 4:24!15 +MAT 4:24!16 +MAT 4:24!17 +MAT 4:24!18 +MAT 4:24!19 +MAT 4:24!20 +MAT 4:24!21 +MAT 4:24!22 +MAT 4:24!23 +MAT 4:24!24 +MAT 4:24!25 +MAT 4:24!26 +MAT 4:24!27 +MAT 4:24!28 +MAT 4:24!29 +MAT 4:25!1 +MAT 4:25!2 +MAT 4:25!3 +MAT 4:25!4 +MAT 4:25!5 +MAT 4:25!6 +MAT 4:25!7 +MAT 4:25!8 +MAT 4:25!9 +MAT 4:25!10 +MAT 4:25!11 +MAT 4:25!12 +MAT 4:25!13 +MAT 4:25!14 +MAT 4:25!15 +MAT 4:25!16 +MAT 4:25!17 +MAT 4:25!18 +MAT 5:1!2 +MAT 5:1!1 +MAT 5:1!3 +MAT 5:1!4 +MAT 5:1!5 +MAT 5:1!6 +MAT 5:1!7 +MAT 5:1!8 +MAT 5:1!9 +MAT 5:1!10 +MAT 5:1!11 +MAT 5:1!12 +MAT 5:1!13 +MAT 5:1!14 +MAT 5:1!15 +MAT 5:1!16 +MAT 5:2!1 +MAT 5:2!2 +MAT 5:2!3 +MAT 5:2!4 +MAT 5:2!5 +MAT 5:2!6 +MAT 5:2!7 +MAT 5:2!8 +MAT 5:3!1 +MAT 5:3!2 +MAT 5:3!3 +MAT 5:3!4 +MAT 5:3!5 +MAT 5:3!6 +MAT 5:3!7 +MAT 5:3!8 +MAT 5:3!9 +MAT 5:3!10 +MAT 5:3!11 +MAT 5:3!12 +MAT 5:4!1 +MAT 5:4!2 +MAT 5:4!3 +MAT 5:4!4 +MAT 5:4!5 +MAT 5:4!6 +MAT 5:5!1 +MAT 5:5!2 +MAT 5:5!3 +MAT 5:5!4 +MAT 5:5!5 +MAT 5:5!6 +MAT 5:5!7 +MAT 5:5!8 +MAT 5:6!1 +MAT 5:6!2 +MAT 5:6!3 +MAT 5:6!4 +MAT 5:6!5 +MAT 5:6!6 +MAT 5:6!7 +MAT 5:6!8 +MAT 5:6!9 +MAT 5:6!10 +MAT 5:7!1 +MAT 5:7!2 +MAT 5:7!3 +MAT 5:7!4 +MAT 5:7!5 +MAT 5:7!6 +MAT 5:8!1 +MAT 5:8!2 +MAT 5:8!3 +MAT 5:8!4 +MAT 5:8!5 +MAT 5:8!6 +MAT 5:8!7 +MAT 5:8!8 +MAT 5:8!9 +MAT 5:8!10 +MAT 5:9!1 +MAT 5:9!2 +MAT 5:9!3 +MAT 5:9!4 +MAT 5:9!5 +MAT 5:9!6 +MAT 5:9!7 +MAT 5:9!8 +MAT 5:10!1 +MAT 5:10!2 +MAT 5:10!3 +MAT 5:10!4 +MAT 5:10!5 +MAT 5:10!6 +MAT 5:10!7 +MAT 5:10!8 +MAT 5:10!9 +MAT 5:10!10 +MAT 5:10!11 +MAT 5:10!12 +MAT 5:11!1 +MAT 5:11!2 +MAT 5:11!3 +MAT 5:11!4 +MAT 5:11!5 +MAT 5:11!6 +MAT 5:11!7 +MAT 5:11!8 +MAT 5:11!9 +MAT 5:11!10 +MAT 5:11!11 +MAT 5:11!12 +MAT 5:11!13 +MAT 5:11!14 +MAT 5:11!15 +MAT 5:11!16 +MAT 5:12!1 +MAT 5:12!2 +MAT 5:12!3 +MAT 5:12!4 +MAT 5:12!5 +MAT 5:12!6 +MAT 5:12!7 +MAT 5:12!8 +MAT 5:12!9 +MAT 5:12!10 +MAT 5:12!11 +MAT 5:12!13 +MAT 5:12!12 +MAT 5:12!14 +MAT 5:12!15 +MAT 5:12!16 +MAT 5:12!17 +MAT 5:12!18 +MAT 5:12!19 +MAT 5:13!1 +MAT 5:13!2 +MAT 5:13!3 +MAT 5:13!4 +MAT 5:13!5 +MAT 5:13!6 +MAT 5:13!8 +MAT 5:13!7 +MAT 5:13!9 +MAT 5:13!10 +MAT 5:13!11 +MAT 5:13!12 +MAT 5:13!13 +MAT 5:13!14 +MAT 5:13!15 +MAT 5:13!16 +MAT 5:13!17 +MAT 5:13!18 +MAT 5:13!19 +MAT 5:13!20 +MAT 5:13!21 +MAT 5:13!22 +MAT 5:13!23 +MAT 5:13!24 +MAT 5:13!25 +MAT 5:13!26 +MAT 5:14!1 +MAT 5:14!2 +MAT 5:14!3 +MAT 5:14!4 +MAT 5:14!5 +MAT 5:14!6 +MAT 5:14!7 +MAT 5:14!8 +MAT 5:14!9 +MAT 5:14!10 +MAT 5:14!11 +MAT 5:14!12 +MAT 5:14!13 +MAT 5:15!1 +MAT 5:15!2 +MAT 5:15!3 +MAT 5:15!4 +MAT 5:15!5 +MAT 5:15!6 +MAT 5:15!7 +MAT 5:15!8 +MAT 5:15!9 +MAT 5:15!10 +MAT 5:15!11 +MAT 5:15!12 +MAT 5:15!13 +MAT 5:15!14 +MAT 5:15!15 +MAT 5:15!16 +MAT 5:15!17 +MAT 5:15!18 +MAT 5:15!19 +MAT 5:15!20 +MAT 5:16!1 +MAT 5:16!2 +MAT 5:16!3 +MAT 5:16!4 +MAT 5:16!5 +MAT 5:16!6 +MAT 5:16!7 +MAT 5:16!8 +MAT 5:16!9 +MAT 5:16!10 +MAT 5:16!11 +MAT 5:16!12 +MAT 5:16!13 +MAT 5:16!14 +MAT 5:16!15 +MAT 5:16!16 +MAT 5:16!17 +MAT 5:16!18 +MAT 5:16!19 +MAT 5:16!20 +MAT 5:16!21 +MAT 5:16!22 +MAT 5:16!23 +MAT 5:17!1 +MAT 5:17!2 +MAT 5:17!3 +MAT 5:17!4 +MAT 5:17!5 +MAT 5:17!6 +MAT 5:17!7 +MAT 5:17!8 +MAT 5:17!9 +MAT 5:17!10 +MAT 5:17!11 +MAT 5:17!12 +MAT 5:17!13 +MAT 5:17!14 +MAT 5:17!15 +MAT 5:18!2 +MAT 5:18!1 +MAT 5:18!3 +MAT 5:18!4 +MAT 5:18!5 +MAT 5:18!6 +MAT 5:18!7 +MAT 5:18!8 +MAT 5:18!9 +MAT 5:18!10 +MAT 5:18!11 +MAT 5:18!12 +MAT 5:18!13 +MAT 5:18!14 +MAT 5:18!15 +MAT 5:18!16 +MAT 5:18!17 +MAT 5:18!18 +MAT 5:18!19 +MAT 5:18!20 +MAT 5:18!21 +MAT 5:18!22 +MAT 5:18!23 +MAT 5:18!24 +MAT 5:18!25 +MAT 5:18!26 +MAT 5:18!27 +MAT 5:19!3 +MAT 5:19!2 +MAT 5:19!1 +MAT 5:19!4 +MAT 5:19!5 +MAT 5:19!6 +MAT 5:19!7 +MAT 5:19!8 +MAT 5:19!9 +MAT 5:19!10 +MAT 5:19!11 +MAT 5:19!12 +MAT 5:19!13 +MAT 5:19!14 +MAT 5:19!15 +MAT 5:19!16 +MAT 5:19!17 +MAT 5:19!18 +MAT 5:19!19 +MAT 5:19!20 +MAT 5:19!21 +MAT 5:19!22 +MAT 5:19!24 +MAT 5:19!25 +MAT 5:19!23 +MAT 5:19!26 +MAT 5:19!27 +MAT 5:19!28 +MAT 5:19!29 +MAT 5:19!30 +MAT 5:19!31 +MAT 5:19!32 +MAT 5:19!33 +MAT 5:19!34 +MAT 5:19!35 +MAT 5:19!36 +MAT 5:20!2 +MAT 5:20!1 +MAT 5:20!3 +MAT 5:20!4 +MAT 5:20!5 +MAT 5:20!6 +MAT 5:20!7 +MAT 5:20!8 +MAT 5:20!9 +MAT 5:20!10 +MAT 5:20!11 +MAT 5:20!12 +MAT 5:20!13 +MAT 5:20!14 +MAT 5:20!15 +MAT 5:20!16 +MAT 5:20!17 +MAT 5:20!18 +MAT 5:20!19 +MAT 5:20!20 +MAT 5:20!21 +MAT 5:20!22 +MAT 5:20!23 +MAT 5:21!1 +MAT 5:21!2 +MAT 5:21!3 +MAT 5:21!4 +MAT 5:21!5 +MAT 5:21!6 +MAT 5:21!7 +MAT 5:21!9 +MAT 5:21!10 +MAT 5:21!8 +MAT 5:21!11 +MAT 5:21!12 +MAT 5:21!13 +MAT 5:21!14 +MAT 5:21!15 +MAT 5:22!2 +MAT 5:22!1 +MAT 5:22!3 +MAT 5:22!4 +MAT 5:22!5 +MAT 5:22!6 +MAT 5:22!7 +MAT 5:22!8 +MAT 5:22!9 +MAT 5:22!10 +MAT 5:22!11 +MAT 5:22!12 +MAT 5:22!13 +MAT 5:22!14 +MAT 5:22!15 +MAT 5:22!17 +MAT 5:22!18 +MAT 5:22!16 +MAT 5:22!19 +MAT 5:22!20 +MAT 5:22!21 +MAT 5:22!22 +MAT 5:22!23 +MAT 5:22!24 +MAT 5:22!25 +MAT 5:22!26 +MAT 5:22!27 +MAT 5:22!29 +MAT 5:22!30 +MAT 5:22!28 +MAT 5:22!31 +MAT 5:22!32 +MAT 5:22!33 +MAT 5:22!34 +MAT 5:22!35 +MAT 5:22!36 +MAT 5:22!37 +MAT 5:22!38 +MAT 5:22!39 +MAT 5:23!2 +MAT 5:23!1 +MAT 5:23!3 +MAT 5:23!4 +MAT 5:23!5 +MAT 5:23!6 +MAT 5:23!7 +MAT 5:23!8 +MAT 5:23!9 +MAT 5:23!10 +MAT 5:23!11 +MAT 5:23!12 +MAT 5:23!13 +MAT 5:23!14 +MAT 5:23!15 +MAT 5:23!16 +MAT 5:23!17 +MAT 5:23!18 +MAT 5:23!19 +MAT 5:24!1 +MAT 5:24!2 +MAT 5:24!3 +MAT 5:24!4 +MAT 5:24!5 +MAT 5:24!6 +MAT 5:24!7 +MAT 5:24!8 +MAT 5:24!9 +MAT 5:24!10 +MAT 5:24!11 +MAT 5:24!12 +MAT 5:24!13 +MAT 5:24!14 +MAT 5:24!15 +MAT 5:24!16 +MAT 5:24!17 +MAT 5:24!18 +MAT 5:24!19 +MAT 5:24!20 +MAT 5:24!21 +MAT 5:24!22 +MAT 5:25!1 +MAT 5:25!2 +MAT 5:25!3 +MAT 5:25!4 +MAT 5:25!5 +MAT 5:25!6 +MAT 5:25!7 +MAT 5:25!8 +MAT 5:25!9 +MAT 5:25!10 +MAT 5:25!11 +MAT 5:25!12 +MAT 5:25!13 +MAT 5:25!14 +MAT 5:25!15 +MAT 5:25!16 +MAT 5:25!17 +MAT 5:25!18 +MAT 5:25!19 +MAT 5:25!20 +MAT 5:25!21 +MAT 5:25!22 +MAT 5:25!23 +MAT 5:25!24 +MAT 5:25!25 +MAT 5:25!26 +MAT 5:25!27 +MAT 5:25!28 +MAT 5:25!29 +MAT 5:25!30 +MAT 5:25!31 +MAT 5:26!1 +MAT 5:26!2 +MAT 5:26!3 +MAT 5:26!4 +MAT 5:26!5 +MAT 5:26!6 +MAT 5:26!7 +MAT 5:26!8 +MAT 5:26!9 +MAT 5:26!10 +MAT 5:26!11 +MAT 5:26!12 +MAT 5:26!13 +MAT 5:27!1 +MAT 5:27!2 +MAT 5:27!3 +MAT 5:27!4 +MAT 5:27!5 +MAT 5:28!2 +MAT 5:28!1 +MAT 5:28!3 +MAT 5:28!4 +MAT 5:28!5 +MAT 5:28!6 +MAT 5:28!7 +MAT 5:28!8 +MAT 5:28!9 +MAT 5:28!10 +MAT 5:28!11 +MAT 5:28!12 +MAT 5:28!13 +MAT 5:28!14 +MAT 5:28!15 +MAT 5:28!16 +MAT 5:28!17 +MAT 5:28!18 +MAT 5:28!19 +MAT 5:28!20 +MAT 5:29!2 +MAT 5:29!1 +MAT 5:29!3 +MAT 5:29!4 +MAT 5:29!5 +MAT 5:29!6 +MAT 5:29!7 +MAT 5:29!8 +MAT 5:29!9 +MAT 5:29!10 +MAT 5:29!11 +MAT 5:29!12 +MAT 5:29!13 +MAT 5:29!14 +MAT 5:29!15 +MAT 5:29!17 +MAT 5:29!16 +MAT 5:29!18 +MAT 5:29!19 +MAT 5:29!20 +MAT 5:29!21 +MAT 5:29!22 +MAT 5:29!23 +MAT 5:29!24 +MAT 5:29!25 +MAT 5:29!26 +MAT 5:29!27 +MAT 5:29!28 +MAT 5:29!29 +MAT 5:29!30 +MAT 5:29!31 +MAT 5:29!32 +MAT 5:29!33 +MAT 5:30!1 +MAT 5:30!2 +MAT 5:30!3 +MAT 5:30!4 +MAT 5:30!5 +MAT 5:30!6 +MAT 5:30!7 +MAT 5:30!8 +MAT 5:30!9 +MAT 5:30!10 +MAT 5:30!11 +MAT 5:30!12 +MAT 5:30!13 +MAT 5:30!14 +MAT 5:30!16 +MAT 5:30!15 +MAT 5:30!17 +MAT 5:30!18 +MAT 5:30!19 +MAT 5:30!20 +MAT 5:30!21 +MAT 5:30!22 +MAT 5:30!23 +MAT 5:30!24 +MAT 5:30!25 +MAT 5:30!26 +MAT 5:30!27 +MAT 5:30!28 +MAT 5:30!29 +MAT 5:30!30 +MAT 5:30!31 +MAT 5:30!32 +MAT 5:31!2 +MAT 5:31!1 +MAT 5:31!4 +MAT 5:31!3 +MAT 5:31!5 +MAT 5:31!6 +MAT 5:31!7 +MAT 5:31!8 +MAT 5:31!9 +MAT 5:31!10 +MAT 5:31!11 +MAT 5:32!2 +MAT 5:32!1 +MAT 5:32!3 +MAT 5:32!4 +MAT 5:32!5 +MAT 5:32!6 +MAT 5:32!7 +MAT 5:32!8 +MAT 5:32!9 +MAT 5:32!10 +MAT 5:32!11 +MAT 5:32!12 +MAT 5:32!13 +MAT 5:32!14 +MAT 5:32!15 +MAT 5:32!16 +MAT 5:32!17 +MAT 5:32!18 +MAT 5:32!20 +MAT 5:32!19 +MAT 5:32!21 +MAT 5:32!22 +MAT 5:32!23 +MAT 5:33!1 +MAT 5:33!2 +MAT 5:33!3 +MAT 5:33!4 +MAT 5:33!5 +MAT 5:33!6 +MAT 5:33!7 +MAT 5:33!8 +MAT 5:33!10 +MAT 5:33!9 +MAT 5:33!11 +MAT 5:33!12 +MAT 5:33!13 +MAT 5:33!14 +MAT 5:33!15 +MAT 5:34!2 +MAT 5:34!1 +MAT 5:34!3 +MAT 5:34!4 +MAT 5:34!5 +MAT 5:34!6 +MAT 5:34!7 +MAT 5:34!8 +MAT 5:34!9 +MAT 5:34!10 +MAT 5:34!11 +MAT 5:34!12 +MAT 5:34!14 +MAT 5:34!13 +MAT 5:34!15 +MAT 5:34!16 +MAT 5:35!1 +MAT 5:35!2 +MAT 5:35!3 +MAT 5:35!4 +MAT 5:35!5 +MAT 5:35!7 +MAT 5:35!6 +MAT 5:35!8 +MAT 5:35!9 +MAT 5:35!10 +MAT 5:35!11 +MAT 5:35!12 +MAT 5:35!13 +MAT 5:35!14 +MAT 5:35!16 +MAT 5:35!15 +MAT 5:35!17 +MAT 5:35!18 +MAT 5:35!19 +MAT 5:36!1 +MAT 5:36!2 +MAT 5:36!3 +MAT 5:36!4 +MAT 5:36!5 +MAT 5:36!6 +MAT 5:36!7 +MAT 5:36!8 +MAT 5:36!9 +MAT 5:36!10 +MAT 5:36!11 +MAT 5:36!13 +MAT 5:36!12 +MAT 5:36!14 +MAT 5:36!15 +MAT 5:37!2 +MAT 5:37!1 +MAT 5:37!3 +MAT 5:37!4 +MAT 5:37!5 +MAT 5:37!6 +MAT 5:37!7 +MAT 5:37!8 +MAT 5:37!9 +MAT 5:37!11 +MAT 5:37!10 +MAT 5:37!12 +MAT 5:37!13 +MAT 5:37!14 +MAT 5:37!15 +MAT 5:37!16 +MAT 5:37!17 +MAT 5:38!1 +MAT 5:38!2 +MAT 5:38!3 +MAT 5:38!4 +MAT 5:38!5 +MAT 5:38!6 +MAT 5:38!7 +MAT 5:38!8 +MAT 5:38!9 +MAT 5:38!10 +MAT 5:39!2 +MAT 5:39!1 +MAT 5:39!3 +MAT 5:39!4 +MAT 5:39!5 +MAT 5:39!6 +MAT 5:39!7 +MAT 5:39!8 +MAT 5:39!9 +MAT 5:39!10 +MAT 5:39!11 +MAT 5:39!12 +MAT 5:39!13 +MAT 5:39!14 +MAT 5:39!15 +MAT 5:39!16 +MAT 5:39!17 +MAT 5:39!18 +MAT 5:39!19 +MAT 5:39!20 +MAT 5:39!21 +MAT 5:39!22 +MAT 5:40!1 +MAT 5:40!2 +MAT 5:40!3 +MAT 5:40!4 +MAT 5:40!5 +MAT 5:40!6 +MAT 5:40!7 +MAT 5:40!8 +MAT 5:40!9 +MAT 5:40!10 +MAT 5:40!11 +MAT 5:40!12 +MAT 5:40!13 +MAT 5:40!14 +MAT 5:40!15 +MAT 5:41!1 +MAT 5:41!2 +MAT 5:41!3 +MAT 5:41!4 +MAT 5:41!5 +MAT 5:41!6 +MAT 5:41!7 +MAT 5:41!8 +MAT 5:41!9 +MAT 5:41!10 +MAT 5:42!1 +MAT 5:42!2 +MAT 5:42!3 +MAT 5:42!4 +MAT 5:42!5 +MAT 5:42!6 +MAT 5:42!7 +MAT 5:42!8 +MAT 5:42!9 +MAT 5:42!10 +MAT 5:42!11 +MAT 5:42!12 +MAT 5:43!1 +MAT 5:43!2 +MAT 5:43!3 +MAT 5:43!4 +MAT 5:43!5 +MAT 5:43!6 +MAT 5:43!7 +MAT 5:43!8 +MAT 5:43!9 +MAT 5:43!10 +MAT 5:43!11 +MAT 5:43!12 +MAT 5:44!2 +MAT 5:44!1 +MAT 5:44!3 +MAT 5:44!4 +MAT 5:44!5 +MAT 5:44!6 +MAT 5:44!7 +MAT 5:44!8 +MAT 5:44!9 +MAT 5:44!10 +MAT 5:44!11 +MAT 5:44!12 +MAT 5:44!13 +MAT 5:44!14 +MAT 5:45!1 +MAT 5:45!2 +MAT 5:45!3 +MAT 5:45!4 +MAT 5:45!5 +MAT 5:45!6 +MAT 5:45!7 +MAT 5:45!8 +MAT 5:45!9 +MAT 5:45!10 +MAT 5:45!11 +MAT 5:45!12 +MAT 5:45!13 +MAT 5:45!14 +MAT 5:45!15 +MAT 5:45!16 +MAT 5:45!17 +MAT 5:45!18 +MAT 5:45!19 +MAT 5:45!20 +MAT 5:45!21 +MAT 5:45!22 +MAT 5:45!23 +MAT 5:45!24 +MAT 5:46!2 +MAT 5:46!1 +MAT 5:46!3 +MAT 5:46!4 +MAT 5:46!5 +MAT 5:46!6 +MAT 5:46!7 +MAT 5:46!8 +MAT 5:46!9 +MAT 5:46!10 +MAT 5:46!11 +MAT 5:46!12 +MAT 5:46!13 +MAT 5:46!14 +MAT 5:46!15 +MAT 5:46!16 +MAT 5:47!1 +MAT 5:47!2 +MAT 5:47!3 +MAT 5:47!4 +MAT 5:47!5 +MAT 5:47!6 +MAT 5:47!7 +MAT 5:47!8 +MAT 5:47!9 +MAT 5:47!10 +MAT 5:47!11 +MAT 5:47!12 +MAT 5:47!13 +MAT 5:47!14 +MAT 5:47!15 +MAT 5:47!16 +MAT 5:47!17 +MAT 5:48!2 +MAT 5:48!1 +MAT 5:48!3 +MAT 5:48!4 +MAT 5:48!5 +MAT 5:48!6 +MAT 5:48!7 +MAT 5:48!8 +MAT 5:48!9 +MAT 5:48!10 +MAT 5:48!11 +MAT 5:48!12 +MAT 6:1!2 +MAT 6:1!1 +MAT 6:1!3 +MAT 6:1!4 +MAT 6:1!5 +MAT 6:1!6 +MAT 6:1!7 +MAT 6:1!8 +MAT 6:1!9 +MAT 6:1!10 +MAT 6:1!11 +MAT 6:1!12 +MAT 6:1!13 +MAT 6:1!14 +MAT 6:1!16 +MAT 6:1!15 +MAT 6:1!17 +MAT 6:1!18 +MAT 6:1!19 +MAT 6:1!20 +MAT 6:1!21 +MAT 6:1!22 +MAT 6:1!23 +MAT 6:1!24 +MAT 6:1!25 +MAT 6:1!26 +MAT 6:1!27 +MAT 6:1!28 +MAT 6:2!2 +MAT 6:2!1 +MAT 6:2!3 +MAT 6:2!4 +MAT 6:2!5 +MAT 6:2!6 +MAT 6:2!7 +MAT 6:2!8 +MAT 6:2!9 +MAT 6:2!10 +MAT 6:2!11 +MAT 6:2!12 +MAT 6:2!13 +MAT 6:2!14 +MAT 6:2!15 +MAT 6:2!16 +MAT 6:2!17 +MAT 6:2!18 +MAT 6:2!19 +MAT 6:2!20 +MAT 6:2!21 +MAT 6:2!22 +MAT 6:2!23 +MAT 6:2!24 +MAT 6:2!25 +MAT 6:2!26 +MAT 6:2!27 +MAT 6:2!28 +MAT 6:2!29 +MAT 6:2!30 +MAT 6:2!31 +MAT 6:3!2 +MAT 6:3!1 +MAT 6:3!3 +MAT 6:3!4 +MAT 6:3!5 +MAT 6:3!6 +MAT 6:3!7 +MAT 6:3!8 +MAT 6:3!9 +MAT 6:3!10 +MAT 6:3!11 +MAT 6:3!12 +MAT 6:3!13 +MAT 6:3!14 +MAT 6:4!1 +MAT 6:4!2 +MAT 6:4!3 +MAT 6:4!4 +MAT 6:4!5 +MAT 6:4!6 +MAT 6:4!7 +MAT 6:4!8 +MAT 6:4!9 +MAT 6:4!10 +MAT 6:4!11 +MAT 6:4!12 +MAT 6:4!13 +MAT 6:4!14 +MAT 6:4!15 +MAT 6:4!16 +MAT 6:4!17 +MAT 6:4!18 +MAT 6:4!19 +MAT 6:5!1 +MAT 6:5!2 +MAT 6:5!3 +MAT 6:5!4 +MAT 6:5!5 +MAT 6:5!6 +MAT 6:5!7 +MAT 6:5!8 +MAT 6:5!9 +MAT 6:5!10 +MAT 6:5!11 +MAT 6:5!12 +MAT 6:5!13 +MAT 6:5!14 +MAT 6:5!15 +MAT 6:5!16 +MAT 6:5!17 +MAT 6:5!18 +MAT 6:5!19 +MAT 6:5!20 +MAT 6:5!21 +MAT 6:5!22 +MAT 6:5!23 +MAT 6:5!24 +MAT 6:5!25 +MAT 6:5!26 +MAT 6:5!27 +MAT 6:5!28 +MAT 6:5!29 +MAT 6:5!30 +MAT 6:5!31 +MAT 6:5!32 +MAT 6:6!2 +MAT 6:6!3 +MAT 6:6!1 +MAT 6:6!4 +MAT 6:6!5 +MAT 6:6!6 +MAT 6:6!7 +MAT 6:6!8 +MAT 6:6!9 +MAT 6:6!10 +MAT 6:6!11 +MAT 6:6!12 +MAT 6:6!13 +MAT 6:6!14 +MAT 6:6!15 +MAT 6:6!16 +MAT 6:6!17 +MAT 6:6!18 +MAT 6:6!19 +MAT 6:6!20 +MAT 6:6!21 +MAT 6:6!22 +MAT 6:6!23 +MAT 6:6!24 +MAT 6:6!25 +MAT 6:6!26 +MAT 6:6!27 +MAT 6:6!28 +MAT 6:6!29 +MAT 6:6!30 +MAT 6:6!31 +MAT 6:6!32 +MAT 6:6!33 +MAT 6:7!2 +MAT 6:7!1 +MAT 6:7!3 +MAT 6:7!4 +MAT 6:7!5 +MAT 6:7!6 +MAT 6:7!7 +MAT 6:7!9 +MAT 6:7!8 +MAT 6:7!10 +MAT 6:7!11 +MAT 6:7!12 +MAT 6:7!13 +MAT 6:7!14 +MAT 6:7!15 +MAT 6:8!2 +MAT 6:8!1 +MAT 6:8!3 +MAT 6:8!4 +MAT 6:8!6 +MAT 6:8!5 +MAT 6:8!7 +MAT 6:8!8 +MAT 6:8!9 +MAT 6:8!10 +MAT 6:8!11 +MAT 6:8!12 +MAT 6:8!13 +MAT 6:8!14 +MAT 6:8!15 +MAT 6:8!16 +MAT 6:8!17 +MAT 6:9!2 +MAT 6:9!1 +MAT 6:9!3 +MAT 6:9!4 +MAT 6:9!5 +MAT 6:9!6 +MAT 6:9!7 +MAT 6:9!8 +MAT 6:9!9 +MAT 6:9!10 +MAT 6:9!11 +MAT 6:9!12 +MAT 6:9!13 +MAT 6:9!14 +MAT 6:10!1 +MAT 6:10!2 +MAT 6:10!3 +MAT 6:10!4 +MAT 6:10!5 +MAT 6:10!6 +MAT 6:10!7 +MAT 6:10!8 +MAT 6:10!9 +MAT 6:10!10 +MAT 6:10!11 +MAT 6:10!12 +MAT 6:10!13 +MAT 6:10!14 +MAT 6:11!1 +MAT 6:11!2 +MAT 6:11!3 +MAT 6:11!4 +MAT 6:11!5 +MAT 6:11!6 +MAT 6:11!7 +MAT 6:11!8 +MAT 6:12!1 +MAT 6:12!2 +MAT 6:12!3 +MAT 6:12!4 +MAT 6:12!5 +MAT 6:12!6 +MAT 6:12!7 +MAT 6:12!8 +MAT 6:12!9 +MAT 6:12!10 +MAT 6:12!11 +MAT 6:12!12 +MAT 6:12!13 +MAT 6:13!1 +MAT 6:13!2 +MAT 6:13!3 +MAT 6:13!4 +MAT 6:13!5 +MAT 6:13!6 +MAT 6:13!7 +MAT 6:13!8 +MAT 6:13!9 +MAT 6:13!10 +MAT 6:13!11 +MAT 6:13!12 +MAT 6:14!2 +MAT 6:14!1 +MAT 6:14!3 +MAT 6:14!4 +MAT 6:14!5 +MAT 6:14!6 +MAT 6:14!7 +MAT 6:14!8 +MAT 6:14!9 +MAT 6:14!10 +MAT 6:14!11 +MAT 6:14!12 +MAT 6:14!13 +MAT 6:14!14 +MAT 6:14!15 +MAT 6:14!16 +MAT 6:15!2 +MAT 6:15!1 +MAT 6:15!3 +MAT 6:15!4 +MAT 6:15!5 +MAT 6:15!6 +MAT 6:15!7 +MAT 6:15!8 +MAT 6:15!9 +MAT 6:15!10 +MAT 6:15!11 +MAT 6:15!12 +MAT 6:15!13 +MAT 6:15!14 +MAT 6:16!2 +MAT 6:16!1 +MAT 6:16!3 +MAT 6:16!4 +MAT 6:16!5 +MAT 6:16!6 +MAT 6:16!7 +MAT 6:16!8 +MAT 6:16!9 +MAT 6:16!11 +MAT 6:16!10 +MAT 6:16!12 +MAT 6:16!13 +MAT 6:16!14 +MAT 6:16!15 +MAT 6:16!16 +MAT 6:16!17 +MAT 6:16!18 +MAT 6:16!19 +MAT 6:16!20 +MAT 6:16!21 +MAT 6:16!22 +MAT 6:16!23 +MAT 6:16!24 +MAT 6:16!25 +MAT 6:16!26 +MAT 6:17!2 +MAT 6:17!1 +MAT 6:17!3 +MAT 6:17!4 +MAT 6:17!5 +MAT 6:17!6 +MAT 6:17!7 +MAT 6:17!8 +MAT 6:17!9 +MAT 6:17!10 +MAT 6:17!11 +MAT 6:17!12 +MAT 6:18!1 +MAT 6:18!2 +MAT 6:18!3 +MAT 6:18!4 +MAT 6:18!5 +MAT 6:18!6 +MAT 6:18!7 +MAT 6:18!8 +MAT 6:18!9 +MAT 6:18!10 +MAT 6:18!11 +MAT 6:18!12 +MAT 6:18!13 +MAT 6:18!14 +MAT 6:18!15 +MAT 6:18!16 +MAT 6:18!17 +MAT 6:18!18 +MAT 6:18!19 +MAT 6:18!20 +MAT 6:18!21 +MAT 6:18!22 +MAT 6:18!23 +MAT 6:18!24 +MAT 6:18!25 +MAT 6:19!1 +MAT 6:19!2 +MAT 6:19!3 +MAT 6:19!4 +MAT 6:19!5 +MAT 6:19!6 +MAT 6:19!7 +MAT 6:19!8 +MAT 6:19!9 +MAT 6:19!10 +MAT 6:19!11 +MAT 6:19!12 +MAT 6:19!13 +MAT 6:19!14 +MAT 6:19!15 +MAT 6:19!16 +MAT 6:19!17 +MAT 6:19!18 +MAT 6:20!2 +MAT 6:20!1 +MAT 6:20!3 +MAT 6:20!4 +MAT 6:20!5 +MAT 6:20!6 +MAT 6:20!7 +MAT 6:20!8 +MAT 6:20!9 +MAT 6:20!10 +MAT 6:20!11 +MAT 6:20!12 +MAT 6:20!13 +MAT 6:20!14 +MAT 6:20!15 +MAT 6:20!16 +MAT 6:20!17 +MAT 6:20!18 +MAT 6:20!19 +MAT 6:21!2 +MAT 6:21!1 +MAT 6:21!3 +MAT 6:21!4 +MAT 6:21!5 +MAT 6:21!6 +MAT 6:21!7 +MAT 6:21!8 +MAT 6:21!9 +MAT 6:21!10 +MAT 6:21!11 +MAT 6:21!12 +MAT 6:22!1 +MAT 6:22!2 +MAT 6:22!3 +MAT 6:22!4 +MAT 6:22!5 +MAT 6:22!6 +MAT 6:22!7 +MAT 6:22!9 +MAT 6:22!8 +MAT 6:22!10 +MAT 6:22!11 +MAT 6:22!12 +MAT 6:22!13 +MAT 6:22!14 +MAT 6:22!15 +MAT 6:22!16 +MAT 6:22!17 +MAT 6:22!18 +MAT 6:22!19 +MAT 6:22!20 +MAT 6:23!2 +MAT 6:23!1 +MAT 6:23!3 +MAT 6:23!4 +MAT 6:23!5 +MAT 6:23!6 +MAT 6:23!7 +MAT 6:23!8 +MAT 6:23!9 +MAT 6:23!10 +MAT 6:23!11 +MAT 6:23!12 +MAT 6:23!13 +MAT 6:23!15 +MAT 6:23!14 +MAT 6:23!16 +MAT 6:23!17 +MAT 6:23!18 +MAT 6:23!19 +MAT 6:23!20 +MAT 6:23!21 +MAT 6:23!22 +MAT 6:23!23 +MAT 6:23!24 +MAT 6:23!25 +MAT 6:24!1 +MAT 6:24!2 +MAT 6:24!3 +MAT 6:24!4 +MAT 6:24!5 +MAT 6:24!7 +MAT 6:24!6 +MAT 6:24!8 +MAT 6:24!9 +MAT 6:24!10 +MAT 6:24!11 +MAT 6:24!12 +MAT 6:24!13 +MAT 6:24!14 +MAT 6:24!15 +MAT 6:24!16 +MAT 6:24!17 +MAT 6:24!18 +MAT 6:24!19 +MAT 6:24!20 +MAT 6:24!21 +MAT 6:24!22 +MAT 6:24!23 +MAT 6:24!24 +MAT 6:24!25 +MAT 6:24!26 +MAT 6:24!27 +MAT 6:25!1 +MAT 6:25!2 +MAT 6:25!3 +MAT 6:25!4 +MAT 6:25!5 +MAT 6:25!6 +MAT 6:25!7 +MAT 6:25!8 +MAT 6:25!9 +MAT 6:25!10 +MAT 6:25!11 +MAT 6:25!12 +MAT 6:25!13 +MAT 6:25!14 +MAT 6:25!15 +MAT 6:25!16 +MAT 6:25!17 +MAT 6:25!18 +MAT 6:25!19 +MAT 6:25!20 +MAT 6:25!21 +MAT 6:25!22 +MAT 6:25!23 +MAT 6:25!24 +MAT 6:25!25 +MAT 6:25!26 +MAT 6:25!27 +MAT 6:25!28 +MAT 6:25!29 +MAT 6:25!30 +MAT 6:25!31 +MAT 6:25!32 +MAT 6:26!1 +MAT 6:26!2 +MAT 6:26!3 +MAT 6:26!4 +MAT 6:26!5 +MAT 6:26!6 +MAT 6:26!7 +MAT 6:26!8 +MAT 6:26!9 +MAT 6:26!10 +MAT 6:26!11 +MAT 6:26!12 +MAT 6:26!13 +MAT 6:26!14 +MAT 6:26!15 +MAT 6:26!16 +MAT 6:26!17 +MAT 6:26!18 +MAT 6:26!19 +MAT 6:26!20 +MAT 6:26!21 +MAT 6:26!22 +MAT 6:26!23 +MAT 6:26!24 +MAT 6:26!25 +MAT 6:26!26 +MAT 6:26!27 +MAT 6:26!28 +MAT 6:27!2 +MAT 6:27!1 +MAT 6:27!3 +MAT 6:27!4 +MAT 6:27!5 +MAT 6:27!6 +MAT 6:27!7 +MAT 6:27!8 +MAT 6:27!9 +MAT 6:27!10 +MAT 6:27!11 +MAT 6:27!12 +MAT 6:27!13 +MAT 6:28!1 +MAT 6:28!2 +MAT 6:28!3 +MAT 6:28!4 +MAT 6:28!5 +MAT 6:28!6 +MAT 6:28!7 +MAT 6:28!8 +MAT 6:28!9 +MAT 6:28!10 +MAT 6:28!11 +MAT 6:28!12 +MAT 6:28!13 +MAT 6:28!14 +MAT 6:28!15 +MAT 6:28!16 +MAT 6:29!2 +MAT 6:29!1 +MAT 6:29!3 +MAT 6:29!4 +MAT 6:29!5 +MAT 6:29!6 +MAT 6:29!7 +MAT 6:29!8 +MAT 6:29!9 +MAT 6:29!10 +MAT 6:29!11 +MAT 6:29!12 +MAT 6:29!13 +MAT 6:29!14 +MAT 6:29!15 +MAT 6:30!2 +MAT 6:30!1 +MAT 6:30!3 +MAT 6:30!4 +MAT 6:30!5 +MAT 6:30!6 +MAT 6:30!7 +MAT 6:30!8 +MAT 6:30!9 +MAT 6:30!10 +MAT 6:30!11 +MAT 6:30!12 +MAT 6:30!13 +MAT 6:30!14 +MAT 6:30!15 +MAT 6:30!16 +MAT 6:30!17 +MAT 6:30!18 +MAT 6:30!19 +MAT 6:30!20 +MAT 6:30!21 +MAT 6:30!22 +MAT 6:31!2 +MAT 6:31!1 +MAT 6:31!3 +MAT 6:31!4 +MAT 6:31!5 +MAT 6:31!6 +MAT 6:31!7 +MAT 6:31!8 +MAT 6:31!9 +MAT 6:31!10 +MAT 6:31!11 +MAT 6:31!12 +MAT 6:32!2 +MAT 6:32!1 +MAT 6:32!3 +MAT 6:32!4 +MAT 6:32!5 +MAT 6:32!6 +MAT 6:32!8 +MAT 6:32!7 +MAT 6:32!9 +MAT 6:32!10 +MAT 6:32!11 +MAT 6:32!12 +MAT 6:32!13 +MAT 6:32!14 +MAT 6:32!15 +MAT 6:32!16 +MAT 6:32!17 +MAT 6:33!2 +MAT 6:33!1 +MAT 6:33!3 +MAT 6:33!4 +MAT 6:33!5 +MAT 6:33!6 +MAT 6:33!7 +MAT 6:33!8 +MAT 6:33!9 +MAT 6:33!10 +MAT 6:33!11 +MAT 6:33!12 +MAT 6:33!13 +MAT 6:33!14 +MAT 6:34!2 +MAT 6:34!1 +MAT 6:34!3 +MAT 6:34!4 +MAT 6:34!5 +MAT 6:34!6 +MAT 6:34!8 +MAT 6:34!7 +MAT 6:34!9 +MAT 6:34!10 +MAT 6:34!11 +MAT 6:34!12 +MAT 6:34!13 +MAT 6:34!14 +MAT 6:34!15 +MAT 6:34!16 +MAT 6:34!17 +MAT 7:1!1 +MAT 7:1!2 +MAT 7:1!3 +MAT 7:1!4 +MAT 7:1!5 +MAT 7:2!3 +MAT 7:2!1 +MAT 7:2!2 +MAT 7:2!4 +MAT 7:2!5 +MAT 7:2!6 +MAT 7:2!7 +MAT 7:2!8 +MAT 7:2!9 +MAT 7:2!10 +MAT 7:2!11 +MAT 7:2!12 +MAT 7:2!13 +MAT 7:3!2 +MAT 7:3!1 +MAT 7:3!3 +MAT 7:3!4 +MAT 7:3!5 +MAT 7:3!6 +MAT 7:3!7 +MAT 7:3!8 +MAT 7:3!9 +MAT 7:3!10 +MAT 7:3!11 +MAT 7:3!12 +MAT 7:3!14 +MAT 7:3!13 +MAT 7:3!15 +MAT 7:3!16 +MAT 7:3!17 +MAT 7:3!18 +MAT 7:3!19 +MAT 7:3!20 +MAT 7:3!21 +MAT 7:4!1 +MAT 7:4!2 +MAT 7:4!3 +MAT 7:4!4 +MAT 7:4!5 +MAT 7:4!6 +MAT 7:4!7 +MAT 7:4!8 +MAT 7:4!9 +MAT 7:4!10 +MAT 7:4!11 +MAT 7:4!12 +MAT 7:4!13 +MAT 7:4!14 +MAT 7:4!15 +MAT 7:4!16 +MAT 7:4!17 +MAT 7:4!18 +MAT 7:4!19 +MAT 7:4!20 +MAT 7:4!21 +MAT 7:4!22 +MAT 7:5!1 +MAT 7:5!2 +MAT 7:5!3 +MAT 7:5!4 +MAT 7:5!5 +MAT 7:5!6 +MAT 7:5!7 +MAT 7:5!8 +MAT 7:5!9 +MAT 7:5!10 +MAT 7:5!11 +MAT 7:5!12 +MAT 7:5!13 +MAT 7:5!14 +MAT 7:5!15 +MAT 7:5!16 +MAT 7:5!17 +MAT 7:5!18 +MAT 7:5!19 +MAT 7:5!20 +MAT 7:5!21 +MAT 7:6!1 +MAT 7:6!2 +MAT 7:6!3 +MAT 7:6!4 +MAT 7:6!5 +MAT 7:6!6 +MAT 7:6!7 +MAT 7:6!8 +MAT 7:6!9 +MAT 7:6!10 +MAT 7:6!11 +MAT 7:6!12 +MAT 7:6!13 +MAT 7:6!14 +MAT 7:6!15 +MAT 7:6!16 +MAT 7:6!17 +MAT 7:6!18 +MAT 7:6!19 +MAT 7:6!20 +MAT 7:6!21 +MAT 7:6!22 +MAT 7:6!23 +MAT 7:6!24 +MAT 7:6!25 +MAT 7:6!26 +MAT 7:7!1 +MAT 7:7!2 +MAT 7:7!3 +MAT 7:7!4 +MAT 7:7!5 +MAT 7:7!6 +MAT 7:7!7 +MAT 7:7!8 +MAT 7:7!9 +MAT 7:7!10 +MAT 7:7!11 +MAT 7:8!2 +MAT 7:8!1 +MAT 7:8!3 +MAT 7:8!4 +MAT 7:8!5 +MAT 7:8!6 +MAT 7:8!7 +MAT 7:8!8 +MAT 7:8!9 +MAT 7:8!10 +MAT 7:8!11 +MAT 7:8!12 +MAT 7:8!13 +MAT 7:9!1 +MAT 7:9!3 +MAT 7:9!4 +MAT 7:9!5 +MAT 7:9!2 +MAT 7:9!6 +MAT 7:9!7 +MAT 7:9!8 +MAT 7:9!9 +MAT 7:9!10 +MAT 7:9!11 +MAT 7:9!12 +MAT 7:9!13 +MAT 7:9!14 +MAT 7:9!15 +MAT 7:9!16 +MAT 7:10!1 +MAT 7:10!2 +MAT 7:10!3 +MAT 7:10!4 +MAT 7:10!5 +MAT 7:10!6 +MAT 7:10!7 +MAT 7:10!8 +MAT 7:11!2 +MAT 7:11!1 +MAT 7:11!3 +MAT 7:11!4 +MAT 7:11!5 +MAT 7:11!6 +MAT 7:11!7 +MAT 7:11!8 +MAT 7:11!9 +MAT 7:11!10 +MAT 7:11!11 +MAT 7:11!12 +MAT 7:11!13 +MAT 7:11!14 +MAT 7:11!15 +MAT 7:11!16 +MAT 7:11!17 +MAT 7:11!18 +MAT 7:11!19 +MAT 7:11!20 +MAT 7:11!21 +MAT 7:11!22 +MAT 7:11!23 +MAT 7:11!24 +MAT 7:11!25 +MAT 7:11!26 +MAT 7:12!2 +MAT 7:12!1 +MAT 7:12!4 +MAT 7:12!3 +MAT 7:12!5 +MAT 7:12!6 +MAT 7:12!7 +MAT 7:12!8 +MAT 7:12!9 +MAT 7:12!10 +MAT 7:12!11 +MAT 7:12!12 +MAT 7:12!13 +MAT 7:12!14 +MAT 7:12!15 +MAT 7:12!17 +MAT 7:12!16 +MAT 7:12!18 +MAT 7:12!19 +MAT 7:12!20 +MAT 7:12!21 +MAT 7:12!22 +MAT 7:12!23 +MAT 7:13!1 +MAT 7:13!2 +MAT 7:13!3 +MAT 7:13!4 +MAT 7:13!5 +MAT 7:13!6 +MAT 7:13!7 +MAT 7:13!8 +MAT 7:13!9 +MAT 7:13!10 +MAT 7:13!11 +MAT 7:13!12 +MAT 7:13!13 +MAT 7:13!14 +MAT 7:13!15 +MAT 7:13!16 +MAT 7:13!17 +MAT 7:13!18 +MAT 7:13!19 +MAT 7:13!20 +MAT 7:13!21 +MAT 7:13!22 +MAT 7:13!23 +MAT 7:13!24 +MAT 7:13!25 +MAT 7:14!1 +MAT 7:14!2 +MAT 7:14!3 +MAT 7:14!4 +MAT 7:14!5 +MAT 7:14!6 +MAT 7:14!7 +MAT 7:14!8 +MAT 7:14!9 +MAT 7:14!10 +MAT 7:14!11 +MAT 7:14!12 +MAT 7:14!13 +MAT 7:14!14 +MAT 7:14!15 +MAT 7:14!16 +MAT 7:14!17 +MAT 7:14!18 +MAT 7:14!19 +MAT 7:15!1 +MAT 7:15!2 +MAT 7:15!3 +MAT 7:15!4 +MAT 7:15!5 +MAT 7:15!6 +MAT 7:15!7 +MAT 7:15!8 +MAT 7:15!9 +MAT 7:15!10 +MAT 7:15!11 +MAT 7:15!13 +MAT 7:15!12 +MAT 7:15!14 +MAT 7:15!15 +MAT 7:15!16 +MAT 7:16!1 +MAT 7:16!2 +MAT 7:16!3 +MAT 7:16!4 +MAT 7:16!5 +MAT 7:16!6 +MAT 7:16!7 +MAT 7:16!8 +MAT 7:16!9 +MAT 7:16!10 +MAT 7:16!11 +MAT 7:16!12 +MAT 7:16!13 +MAT 7:16!14 +MAT 7:16!15 +MAT 7:17!1 +MAT 7:17!2 +MAT 7:17!3 +MAT 7:17!4 +MAT 7:17!5 +MAT 7:17!6 +MAT 7:17!7 +MAT 7:17!9 +MAT 7:17!8 +MAT 7:17!10 +MAT 7:17!11 +MAT 7:17!12 +MAT 7:17!13 +MAT 7:17!14 +MAT 7:18!1 +MAT 7:18!2 +MAT 7:18!3 +MAT 7:18!4 +MAT 7:18!5 +MAT 7:18!6 +MAT 7:18!7 +MAT 7:18!8 +MAT 7:18!9 +MAT 7:18!10 +MAT 7:18!11 +MAT 7:18!12 +MAT 7:18!13 +MAT 7:19!1 +MAT 7:19!2 +MAT 7:19!3 +MAT 7:19!4 +MAT 7:19!5 +MAT 7:19!6 +MAT 7:19!7 +MAT 7:19!8 +MAT 7:19!9 +MAT 7:19!10 +MAT 7:19!11 +MAT 7:20!1 +MAT 7:20!2 +MAT 7:20!3 +MAT 7:20!4 +MAT 7:20!5 +MAT 7:20!6 +MAT 7:20!7 +MAT 7:21!1 +MAT 7:21!2 +MAT 7:21!3 +MAT 7:21!4 +MAT 7:21!5 +MAT 7:21!6 +MAT 7:21!7 +MAT 7:21!8 +MAT 7:21!9 +MAT 7:21!10 +MAT 7:21!11 +MAT 7:21!12 +MAT 7:21!13 +MAT 7:21!14 +MAT 7:21!15 +MAT 7:21!16 +MAT 7:21!17 +MAT 7:21!18 +MAT 7:21!19 +MAT 7:21!20 +MAT 7:21!21 +MAT 7:21!22 +MAT 7:21!23 +MAT 7:21!24 +MAT 7:21!25 +MAT 7:22!1 +MAT 7:22!2 +MAT 7:22!3 +MAT 7:22!4 +MAT 7:22!5 +MAT 7:22!6 +MAT 7:22!7 +MAT 7:22!8 +MAT 7:22!9 +MAT 7:22!10 +MAT 7:22!11 +MAT 7:22!12 +MAT 7:22!13 +MAT 7:22!14 +MAT 7:22!15 +MAT 7:22!16 +MAT 7:22!17 +MAT 7:22!18 +MAT 7:22!19 +MAT 7:22!20 +MAT 7:22!21 +MAT 7:22!22 +MAT 7:22!23 +MAT 7:22!24 +MAT 7:22!25 +MAT 7:22!26 +MAT 7:22!27 +MAT 7:23!1 +MAT 7:23!2 +MAT 7:23!3 +MAT 7:23!4 +MAT 7:23!5 +MAT 7:23!6 +MAT 7:23!7 +MAT 7:23!8 +MAT 7:23!9 +MAT 7:23!10 +MAT 7:23!11 +MAT 7:23!12 +MAT 7:23!13 +MAT 7:23!14 +MAT 7:23!15 +MAT 7:24!2 +MAT 7:24!1 +MAT 7:24!3 +MAT 7:24!4 +MAT 7:24!5 +MAT 7:24!6 +MAT 7:24!7 +MAT 7:24!8 +MAT 7:24!9 +MAT 7:24!10 +MAT 7:24!11 +MAT 7:24!12 +MAT 7:24!13 +MAT 7:24!14 +MAT 7:24!15 +MAT 7:24!16 +MAT 7:24!17 +MAT 7:24!18 +MAT 7:24!19 +MAT 7:24!20 +MAT 7:24!21 +MAT 7:24!22 +MAT 7:25!1 +MAT 7:25!2 +MAT 7:25!3 +MAT 7:25!4 +MAT 7:25!5 +MAT 7:25!6 +MAT 7:25!7 +MAT 7:25!8 +MAT 7:25!9 +MAT 7:25!10 +MAT 7:25!11 +MAT 7:25!12 +MAT 7:25!13 +MAT 7:25!14 +MAT 7:25!15 +MAT 7:25!16 +MAT 7:25!17 +MAT 7:25!18 +MAT 7:25!19 +MAT 7:25!20 +MAT 7:25!22 +MAT 7:25!21 +MAT 7:25!23 +MAT 7:25!24 +MAT 7:25!25 +MAT 7:26!1 +MAT 7:26!2 +MAT 7:26!3 +MAT 7:26!4 +MAT 7:26!5 +MAT 7:26!6 +MAT 7:26!7 +MAT 7:26!8 +MAT 7:26!9 +MAT 7:26!10 +MAT 7:26!11 +MAT 7:26!12 +MAT 7:26!13 +MAT 7:26!14 +MAT 7:26!15 +MAT 7:26!16 +MAT 7:26!17 +MAT 7:26!18 +MAT 7:26!19 +MAT 7:26!20 +MAT 7:26!21 +MAT 7:26!22 +MAT 7:26!23 +MAT 7:27!1 +MAT 7:27!2 +MAT 7:27!3 +MAT 7:27!4 +MAT 7:27!5 +MAT 7:27!6 +MAT 7:27!7 +MAT 7:27!8 +MAT 7:27!9 +MAT 7:27!10 +MAT 7:27!11 +MAT 7:27!12 +MAT 7:27!13 +MAT 7:27!14 +MAT 7:27!15 +MAT 7:27!16 +MAT 7:27!17 +MAT 7:27!18 +MAT 7:27!19 +MAT 7:27!20 +MAT 7:27!21 +MAT 7:27!22 +MAT 7:27!23 +MAT 7:27!24 +MAT 7:27!25 +MAT 7:28!1 +MAT 7:28!2 +MAT 7:28!3 +MAT 7:28!4 +MAT 7:28!5 +MAT 7:28!6 +MAT 7:28!7 +MAT 7:28!8 +MAT 7:28!9 +MAT 7:28!10 +MAT 7:28!11 +MAT 7:28!12 +MAT 7:28!13 +MAT 7:28!14 +MAT 7:28!15 +MAT 7:28!16 +MAT 7:29!2 +MAT 7:29!1 +MAT 7:29!3 +MAT 7:29!4 +MAT 7:29!5 +MAT 7:29!6 +MAT 7:29!7 +MAT 7:29!8 +MAT 7:29!9 +MAT 7:29!10 +MAT 7:29!11 +MAT 7:29!12 +MAT 7:29!13 +MAT 8:1!2 +MAT 8:1!1 +MAT 8:1!3 +MAT 8:1!4 +MAT 8:1!5 +MAT 8:1!6 +MAT 8:1!7 +MAT 8:1!8 +MAT 8:1!9 +MAT 8:1!10 +MAT 8:2!1 +MAT 8:2!2 +MAT 8:2!3 +MAT 8:2!4 +MAT 8:2!5 +MAT 8:2!6 +MAT 8:2!7 +MAT 8:2!8 +MAT 8:2!9 +MAT 8:2!10 +MAT 8:2!11 +MAT 8:2!12 +MAT 8:2!13 +MAT 8:3!1 +MAT 8:3!2 +MAT 8:3!3 +MAT 8:3!4 +MAT 8:3!5 +MAT 8:3!6 +MAT 8:3!7 +MAT 8:3!8 +MAT 8:3!9 +MAT 8:3!10 +MAT 8:3!11 +MAT 8:3!12 +MAT 8:3!13 +MAT 8:3!14 +MAT 8:3!15 +MAT 8:4!1 +MAT 8:4!2 +MAT 8:4!3 +MAT 8:4!4 +MAT 8:4!5 +MAT 8:4!6 +MAT 8:4!7 +MAT 8:4!8 +MAT 8:4!9 +MAT 8:4!10 +MAT 8:4!11 +MAT 8:4!12 +MAT 8:4!13 +MAT 8:4!14 +MAT 8:4!15 +MAT 8:4!16 +MAT 8:4!17 +MAT 8:4!18 +MAT 8:4!19 +MAT 8:4!20 +MAT 8:4!21 +MAT 8:4!22 +MAT 8:4!23 +MAT 8:4!24 +MAT 8:5!2 +MAT 8:5!1 +MAT 8:5!3 +MAT 8:5!4 +MAT 8:5!5 +MAT 8:5!6 +MAT 8:5!7 +MAT 8:5!8 +MAT 8:5!9 +MAT 8:5!10 +MAT 8:6!1 +MAT 8:6!2 +MAT 8:6!3 +MAT 8:6!4 +MAT 8:6!5 +MAT 8:6!6 +MAT 8:6!7 +MAT 8:6!8 +MAT 8:6!9 +MAT 8:6!10 +MAT 8:6!11 +MAT 8:6!12 +MAT 8:6!13 +MAT 8:7!1 +MAT 8:7!2 +MAT 8:7!3 +MAT 8:7!4 +MAT 8:7!5 +MAT 8:7!6 +MAT 8:8!2 +MAT 8:8!1 +MAT 8:8!3 +MAT 8:8!4 +MAT 8:8!5 +MAT 8:8!6 +MAT 8:8!7 +MAT 8:8!8 +MAT 8:8!9 +MAT 8:8!10 +MAT 8:8!12 +MAT 8:8!11 +MAT 8:8!13 +MAT 8:8!14 +MAT 8:8!15 +MAT 8:8!16 +MAT 8:8!17 +MAT 8:8!18 +MAT 8:8!19 +MAT 8:8!20 +MAT 8:8!21 +MAT 8:8!22 +MAT 8:8!23 +MAT 8:8!24 +MAT 8:9!2 +MAT 8:9!1 +MAT 8:9!3 +MAT 8:9!5 +MAT 8:9!4 +MAT 8:9!6 +MAT 8:9!7 +MAT 8:9!8 +MAT 8:9!9 +MAT 8:9!10 +MAT 8:9!11 +MAT 8:9!12 +MAT 8:9!13 +MAT 8:9!14 +MAT 8:9!15 +MAT 8:9!16 +MAT 8:9!17 +MAT 8:9!18 +MAT 8:9!19 +MAT 8:9!20 +MAT 8:9!21 +MAT 8:9!22 +MAT 8:9!23 +MAT 8:9!24 +MAT 8:9!25 +MAT 8:9!26 +MAT 8:9!27 +MAT 8:9!28 +MAT 8:9!29 +MAT 8:9!30 +MAT 8:10!2 +MAT 8:10!1 +MAT 8:10!3 +MAT 8:10!4 +MAT 8:10!5 +MAT 8:10!6 +MAT 8:10!7 +MAT 8:10!8 +MAT 8:10!9 +MAT 8:10!10 +MAT 8:10!11 +MAT 8:10!12 +MAT 8:10!13 +MAT 8:10!14 +MAT 8:10!15 +MAT 8:10!16 +MAT 8:10!17 +MAT 8:10!18 +MAT 8:10!19 +MAT 8:10!20 +MAT 8:11!2 +MAT 8:11!1 +MAT 8:11!3 +MAT 8:11!4 +MAT 8:11!5 +MAT 8:11!6 +MAT 8:11!7 +MAT 8:11!8 +MAT 8:11!9 +MAT 8:11!10 +MAT 8:11!11 +MAT 8:11!12 +MAT 8:11!13 +MAT 8:11!14 +MAT 8:11!15 +MAT 8:11!16 +MAT 8:11!17 +MAT 8:11!18 +MAT 8:11!19 +MAT 8:11!20 +MAT 8:11!21 +MAT 8:11!22 +MAT 8:11!23 +MAT 8:12!2 +MAT 8:12!1 +MAT 8:12!3 +MAT 8:12!4 +MAT 8:12!5 +MAT 8:12!6 +MAT 8:12!7 +MAT 8:12!8 +MAT 8:12!9 +MAT 8:12!10 +MAT 8:12!11 +MAT 8:12!12 +MAT 8:12!13 +MAT 8:12!14 +MAT 8:12!15 +MAT 8:12!16 +MAT 8:12!17 +MAT 8:12!18 +MAT 8:12!19 +MAT 8:12!20 +MAT 8:13!1 +MAT 8:13!2 +MAT 8:13!3 +MAT 8:13!4 +MAT 8:13!5 +MAT 8:13!6 +MAT 8:13!7 +MAT 8:13!8 +MAT 8:13!9 +MAT 8:13!10 +MAT 8:13!11 +MAT 8:13!12 +MAT 8:13!13 +MAT 8:13!14 +MAT 8:13!15 +MAT 8:13!16 +MAT 8:13!17 +MAT 8:13!18 +MAT 8:13!19 +MAT 8:14!1 +MAT 8:14!3 +MAT 8:14!4 +MAT 8:14!2 +MAT 8:14!5 +MAT 8:14!6 +MAT 8:14!7 +MAT 8:14!8 +MAT 8:14!9 +MAT 8:14!10 +MAT 8:14!11 +MAT 8:14!12 +MAT 8:14!13 +MAT 8:14!14 +MAT 8:14!15 +MAT 8:15!1 +MAT 8:15!2 +MAT 8:15!3 +MAT 8:15!4 +MAT 8:15!5 +MAT 8:15!6 +MAT 8:15!7 +MAT 8:15!8 +MAT 8:15!9 +MAT 8:15!10 +MAT 8:15!11 +MAT 8:15!12 +MAT 8:15!13 +MAT 8:15!14 +MAT 8:15!15 +MAT 8:16!2 +MAT 8:16!1 +MAT 8:16!3 +MAT 8:16!4 +MAT 8:16!5 +MAT 8:16!6 +MAT 8:16!7 +MAT 8:16!8 +MAT 8:16!9 +MAT 8:16!10 +MAT 8:16!11 +MAT 8:16!12 +MAT 8:16!13 +MAT 8:16!14 +MAT 8:16!15 +MAT 8:16!16 +MAT 8:16!17 +MAT 8:16!18 +MAT 8:17!1 +MAT 8:17!2 +MAT 8:17!3 +MAT 8:17!4 +MAT 8:17!5 +MAT 8:17!6 +MAT 8:17!7 +MAT 8:17!8 +MAT 8:17!9 +MAT 8:17!10 +MAT 8:17!11 +MAT 8:17!12 +MAT 8:17!13 +MAT 8:17!14 +MAT 8:17!15 +MAT 8:17!16 +MAT 8:17!17 +MAT 8:17!18 +MAT 8:18!2 +MAT 8:18!3 +MAT 8:18!4 +MAT 8:18!1 +MAT 8:18!5 +MAT 8:18!6 +MAT 8:18!7 +MAT 8:18!8 +MAT 8:18!9 +MAT 8:18!10 +MAT 8:18!11 +MAT 8:18!12 +MAT 8:19!1 +MAT 8:19!2 +MAT 8:19!3 +MAT 8:19!4 +MAT 8:19!5 +MAT 8:19!6 +MAT 8:19!7 +MAT 8:19!8 +MAT 8:19!9 +MAT 8:19!11 +MAT 8:19!10 +MAT 8:19!12 +MAT 8:20!1 +MAT 8:20!2 +MAT 8:20!3 +MAT 8:20!4 +MAT 8:20!5 +MAT 8:20!6 +MAT 8:20!7 +MAT 8:20!8 +MAT 8:20!9 +MAT 8:20!10 +MAT 8:20!11 +MAT 8:20!12 +MAT 8:20!13 +MAT 8:20!14 +MAT 8:20!15 +MAT 8:20!17 +MAT 8:20!16 +MAT 8:20!18 +MAT 8:20!19 +MAT 8:20!20 +MAT 8:20!21 +MAT 8:20!22 +MAT 8:20!23 +MAT 8:20!24 +MAT 8:20!25 +MAT 8:20!26 +MAT 8:21!2 +MAT 8:21!1 +MAT 8:21!3 +MAT 8:21!4 +MAT 8:21!5 +MAT 8:21!6 +MAT 8:21!7 +MAT 8:21!8 +MAT 8:21!9 +MAT 8:21!10 +MAT 8:21!11 +MAT 8:21!12 +MAT 8:21!13 +MAT 8:21!14 +MAT 8:21!15 +MAT 8:21!16 +MAT 8:22!2 +MAT 8:22!1 +MAT 8:22!3 +MAT 8:22!4 +MAT 8:22!5 +MAT 8:22!6 +MAT 8:22!7 +MAT 8:22!8 +MAT 8:22!9 +MAT 8:22!10 +MAT 8:22!11 +MAT 8:22!12 +MAT 8:22!13 +MAT 8:22!14 +MAT 8:22!15 +MAT 8:23!1 +MAT 8:23!2 +MAT 8:23!3 +MAT 8:23!4 +MAT 8:23!5 +MAT 8:23!6 +MAT 8:23!7 +MAT 8:23!8 +MAT 8:23!9 +MAT 8:23!10 +MAT 8:23!11 +MAT 8:24!1 +MAT 8:24!2 +MAT 8:24!3 +MAT 8:24!4 +MAT 8:24!5 +MAT 8:24!6 +MAT 8:24!7 +MAT 8:24!8 +MAT 8:24!9 +MAT 8:24!10 +MAT 8:24!11 +MAT 8:24!12 +MAT 8:24!13 +MAT 8:24!14 +MAT 8:24!15 +MAT 8:24!17 +MAT 8:24!16 +MAT 8:24!18 +MAT 8:25!1 +MAT 8:25!2 +MAT 8:25!3 +MAT 8:25!4 +MAT 8:25!5 +MAT 8:25!6 +MAT 8:25!7 +MAT 8:25!8 +MAT 8:26!1 +MAT 8:26!2 +MAT 8:26!3 +MAT 8:26!4 +MAT 8:26!5 +MAT 8:26!6 +MAT 8:26!7 +MAT 8:26!8 +MAT 8:26!9 +MAT 8:26!10 +MAT 8:26!11 +MAT 8:26!12 +MAT 8:26!13 +MAT 8:26!14 +MAT 8:26!15 +MAT 8:26!16 +MAT 8:26!17 +MAT 8:26!18 +MAT 8:26!19 +MAT 8:27!2 +MAT 8:27!1 +MAT 8:27!3 +MAT 8:27!4 +MAT 8:27!5 +MAT 8:27!6 +MAT 8:27!7 +MAT 8:27!8 +MAT 8:27!9 +MAT 8:27!10 +MAT 8:27!11 +MAT 8:27!12 +MAT 8:27!13 +MAT 8:27!14 +MAT 8:27!15 +MAT 8:27!16 +MAT 8:27!17 +MAT 8:28!1 +MAT 8:28!2 +MAT 8:28!3 +MAT 8:28!4 +MAT 8:28!5 +MAT 8:28!6 +MAT 8:28!7 +MAT 8:28!8 +MAT 8:28!9 +MAT 8:28!10 +MAT 8:28!11 +MAT 8:28!12 +MAT 8:28!13 +MAT 8:28!14 +MAT 8:28!15 +MAT 8:28!16 +MAT 8:28!17 +MAT 8:28!18 +MAT 8:28!19 +MAT 8:28!20 +MAT 8:28!21 +MAT 8:28!22 +MAT 8:28!23 +MAT 8:28!24 +MAT 8:28!25 +MAT 8:28!26 +MAT 8:28!27 +MAT 8:28!28 +MAT 8:28!29 +MAT 8:28!30 +MAT 8:29!1 +MAT 8:29!2 +MAT 8:29!3 +MAT 8:29!4 +MAT 8:29!5 +MAT 8:29!6 +MAT 8:29!7 +MAT 8:29!8 +MAT 8:29!9 +MAT 8:29!10 +MAT 8:29!11 +MAT 8:29!12 +MAT 8:29!13 +MAT 8:29!14 +MAT 8:29!15 +MAT 8:29!16 +MAT 8:29!17 +MAT 8:30!2 +MAT 8:30!1 +MAT 8:30!3 +MAT 8:30!4 +MAT 8:30!5 +MAT 8:30!6 +MAT 8:30!7 +MAT 8:30!8 +MAT 8:30!9 +MAT 8:31!2 +MAT 8:31!1 +MAT 8:31!3 +MAT 8:31!4 +MAT 8:31!5 +MAT 8:31!6 +MAT 8:31!7 +MAT 8:31!8 +MAT 8:31!9 +MAT 8:31!10 +MAT 8:31!11 +MAT 8:31!12 +MAT 8:31!13 +MAT 8:31!14 +MAT 8:31!15 +MAT 8:31!16 +MAT 8:32!1 +MAT 8:32!2 +MAT 8:32!3 +MAT 8:32!4 +MAT 8:32!6 +MAT 8:32!5 +MAT 8:32!7 +MAT 8:32!8 +MAT 8:32!9 +MAT 8:32!10 +MAT 8:32!11 +MAT 8:32!12 +MAT 8:32!13 +MAT 8:32!14 +MAT 8:32!15 +MAT 8:32!16 +MAT 8:32!17 +MAT 8:32!18 +MAT 8:32!19 +MAT 8:32!20 +MAT 8:32!21 +MAT 8:32!22 +MAT 8:32!23 +MAT 8:32!24 +MAT 8:32!25 +MAT 8:32!26 +MAT 8:32!27 +MAT 8:32!28 +MAT 8:33!2 +MAT 8:33!1 +MAT 8:33!3 +MAT 8:33!4 +MAT 8:33!5 +MAT 8:33!6 +MAT 8:33!7 +MAT 8:33!8 +MAT 8:33!9 +MAT 8:33!10 +MAT 8:33!11 +MAT 8:33!12 +MAT 8:33!13 +MAT 8:33!14 +MAT 8:33!15 +MAT 8:34!1 +MAT 8:34!2 +MAT 8:34!3 +MAT 8:34!4 +MAT 8:34!5 +MAT 8:34!6 +MAT 8:34!7 +MAT 8:34!8 +MAT 8:34!9 +MAT 8:34!10 +MAT 8:34!11 +MAT 8:34!12 +MAT 8:34!13 +MAT 8:34!14 +MAT 8:34!15 +MAT 8:34!16 +MAT 8:34!17 +MAT 8:34!18 +MAT 8:34!19 +MAT 8:34!20 +MAT 9:1!1 +MAT 9:1!2 +MAT 9:1!3 +MAT 9:1!4 +MAT 9:1!5 +MAT 9:1!6 +MAT 9:1!7 +MAT 9:1!8 +MAT 9:1!9 +MAT 9:1!10 +MAT 9:1!11 +MAT 9:2!1 +MAT 9:2!2 +MAT 9:2!3 +MAT 9:2!4 +MAT 9:2!5 +MAT 9:2!6 +MAT 9:2!7 +MAT 9:2!8 +MAT 9:2!9 +MAT 9:2!11 +MAT 9:2!12 +MAT 9:2!10 +MAT 9:2!13 +MAT 9:2!14 +MAT 9:2!15 +MAT 9:2!16 +MAT 9:2!17 +MAT 9:2!18 +MAT 9:2!19 +MAT 9:2!20 +MAT 9:2!21 +MAT 9:2!22 +MAT 9:2!23 +MAT 9:2!24 +MAT 9:3!1 +MAT 9:3!2 +MAT 9:3!3 +MAT 9:3!4 +MAT 9:3!5 +MAT 9:3!6 +MAT 9:3!7 +MAT 9:3!8 +MAT 9:3!9 +MAT 9:3!10 +MAT 9:4!1 +MAT 9:4!3 +MAT 9:4!4 +MAT 9:4!2 +MAT 9:4!5 +MAT 9:4!6 +MAT 9:4!7 +MAT 9:4!8 +MAT 9:4!9 +MAT 9:4!10 +MAT 9:4!11 +MAT 9:4!12 +MAT 9:4!13 +MAT 9:4!14 +MAT 9:4!15 +MAT 9:4!16 +MAT 9:5!2 +MAT 9:5!1 +MAT 9:5!3 +MAT 9:5!4 +MAT 9:5!5 +MAT 9:5!6 +MAT 9:5!7 +MAT 9:5!8 +MAT 9:5!9 +MAT 9:5!10 +MAT 9:5!11 +MAT 9:5!12 +MAT 9:5!13 +MAT 9:5!14 +MAT 9:6!2 +MAT 9:6!1 +MAT 9:6!3 +MAT 9:6!4 +MAT 9:6!5 +MAT 9:6!6 +MAT 9:6!7 +MAT 9:6!8 +MAT 9:6!9 +MAT 9:6!10 +MAT 9:6!11 +MAT 9:6!12 +MAT 9:6!13 +MAT 9:6!14 +MAT 9:6!15 +MAT 9:6!16 +MAT 9:6!17 +MAT 9:6!18 +MAT 9:6!19 +MAT 9:6!20 +MAT 9:6!21 +MAT 9:6!22 +MAT 9:6!23 +MAT 9:6!24 +MAT 9:6!25 +MAT 9:6!26 +MAT 9:6!27 +MAT 9:6!28 +MAT 9:6!29 +MAT 9:6!30 +MAT 9:7!1 +MAT 9:7!2 +MAT 9:7!3 +MAT 9:7!4 +MAT 9:7!5 +MAT 9:7!6 +MAT 9:7!7 +MAT 9:8!2 +MAT 9:8!1 +MAT 9:8!3 +MAT 9:8!4 +MAT 9:8!5 +MAT 9:8!6 +MAT 9:8!7 +MAT 9:8!8 +MAT 9:8!9 +MAT 9:8!10 +MAT 9:8!11 +MAT 9:8!12 +MAT 9:8!13 +MAT 9:8!14 +MAT 9:8!15 +MAT 9:9!1 +MAT 9:9!2 +MAT 9:9!5 +MAT 9:9!3 +MAT 9:9!4 +MAT 9:9!6 +MAT 9:9!7 +MAT 9:9!8 +MAT 9:9!9 +MAT 9:9!10 +MAT 9:9!11 +MAT 9:9!12 +MAT 9:9!13 +MAT 9:9!14 +MAT 9:9!15 +MAT 9:9!16 +MAT 9:9!17 +MAT 9:9!18 +MAT 9:9!19 +MAT 9:9!20 +MAT 9:9!21 +MAT 9:9!22 +MAT 9:10!1 +MAT 9:10!2 +MAT 9:10!3 +MAT 9:10!4 +MAT 9:10!5 +MAT 9:10!6 +MAT 9:10!7 +MAT 9:10!8 +MAT 9:10!9 +MAT 9:10!10 +MAT 9:10!11 +MAT 9:10!12 +MAT 9:10!13 +MAT 9:10!14 +MAT 9:10!15 +MAT 9:10!16 +MAT 9:10!17 +MAT 9:10!18 +MAT 9:10!19 +MAT 9:10!20 +MAT 9:10!21 +MAT 9:11!1 +MAT 9:11!2 +MAT 9:11!3 +MAT 9:11!4 +MAT 9:11!5 +MAT 9:11!6 +MAT 9:11!7 +MAT 9:11!8 +MAT 9:11!9 +MAT 9:11!10 +MAT 9:11!11 +MAT 9:11!12 +MAT 9:11!13 +MAT 9:11!14 +MAT 9:11!15 +MAT 9:11!16 +MAT 9:11!17 +MAT 9:11!18 +MAT 9:11!19 +MAT 9:12!2 +MAT 9:12!1 +MAT 9:12!3 +MAT 9:12!4 +MAT 9:12!5 +MAT 9:12!6 +MAT 9:12!10 +MAT 9:12!7 +MAT 9:12!8 +MAT 9:12!9 +MAT 9:12!11 +MAT 9:12!12 +MAT 9:12!13 +MAT 9:12!14 +MAT 9:13!2 +MAT 9:13!1 +MAT 9:13!3 +MAT 9:13!4 +MAT 9:13!5 +MAT 9:13!6 +MAT 9:13!7 +MAT 9:13!8 +MAT 9:13!9 +MAT 9:13!10 +MAT 9:13!12 +MAT 9:13!11 +MAT 9:13!13 +MAT 9:13!14 +MAT 9:13!15 +MAT 9:13!16 +MAT 9:13!17 +MAT 9:14!1 +MAT 9:14!2 +MAT 9:14!3 +MAT 9:14!4 +MAT 9:14!5 +MAT 9:14!6 +MAT 9:14!7 +MAT 9:14!8 +MAT 9:14!9 +MAT 9:14!10 +MAT 9:14!11 +MAT 9:14!12 +MAT 9:14!13 +MAT 9:14!14 +MAT 9:14!16 +MAT 9:14!15 +MAT 9:14!17 +MAT 9:14!18 +MAT 9:14!19 +MAT 9:14!20 +MAT 9:15!1 +MAT 9:15!2 +MAT 9:15!3 +MAT 9:15!4 +MAT 9:15!5 +MAT 9:15!6 +MAT 9:15!7 +MAT 9:15!8 +MAT 9:15!9 +MAT 9:15!10 +MAT 9:15!11 +MAT 9:15!12 +MAT 9:15!13 +MAT 9:15!14 +MAT 9:15!15 +MAT 9:15!16 +MAT 9:15!17 +MAT 9:15!18 +MAT 9:15!19 +MAT 9:15!21 +MAT 9:15!20 +MAT 9:15!22 +MAT 9:15!23 +MAT 9:15!24 +MAT 9:15!25 +MAT 9:15!26 +MAT 9:15!27 +MAT 9:15!28 +MAT 9:15!29 +MAT 9:15!30 +MAT 9:15!31 +MAT 9:16!2 +MAT 9:16!1 +MAT 9:16!3 +MAT 9:16!4 +MAT 9:16!5 +MAT 9:16!6 +MAT 9:16!7 +MAT 9:16!8 +MAT 9:16!9 +MAT 9:16!11 +MAT 9:16!10 +MAT 9:16!12 +MAT 9:16!13 +MAT 9:16!14 +MAT 9:16!15 +MAT 9:16!16 +MAT 9:16!17 +MAT 9:16!18 +MAT 9:16!19 +MAT 9:16!20 +MAT 9:16!21 +MAT 9:17!1 +MAT 9:17!2 +MAT 9:17!3 +MAT 9:17!4 +MAT 9:17!5 +MAT 9:17!6 +MAT 9:17!7 +MAT 9:17!9 +MAT 9:17!8 +MAT 9:17!10 +MAT 9:17!11 +MAT 9:17!12 +MAT 9:17!13 +MAT 9:17!14 +MAT 9:17!15 +MAT 9:17!16 +MAT 9:17!17 +MAT 9:17!18 +MAT 9:17!19 +MAT 9:17!20 +MAT 9:17!21 +MAT 9:17!22 +MAT 9:17!23 +MAT 9:17!24 +MAT 9:17!25 +MAT 9:17!26 +MAT 9:17!27 +MAT 9:17!28 +MAT 9:17!29 +MAT 9:17!30 +MAT 9:17!31 +MAT 9:18!1 +MAT 9:18!2 +MAT 9:18!3 +MAT 9:18!4 +MAT 9:18!5 +MAT 9:18!6 +MAT 9:18!7 +MAT 9:18!8 +MAT 9:18!9 +MAT 9:18!10 +MAT 9:18!11 +MAT 9:18!12 +MAT 9:18!13 +MAT 9:18!14 +MAT 9:18!15 +MAT 9:18!16 +MAT 9:18!17 +MAT 9:18!18 +MAT 9:18!19 +MAT 9:18!20 +MAT 9:18!21 +MAT 9:18!22 +MAT 9:18!23 +MAT 9:18!24 +MAT 9:18!25 +MAT 9:18!26 +MAT 9:18!27 +MAT 9:19!1 +MAT 9:19!2 +MAT 9:19!3 +MAT 9:19!4 +MAT 9:19!5 +MAT 9:19!6 +MAT 9:19!7 +MAT 9:19!8 +MAT 9:19!9 +MAT 9:19!10 +MAT 9:20!1 +MAT 9:20!2 +MAT 9:20!3 +MAT 9:20!4 +MAT 9:20!5 +MAT 9:20!6 +MAT 9:20!7 +MAT 9:20!8 +MAT 9:20!9 +MAT 9:20!10 +MAT 9:20!11 +MAT 9:20!12 +MAT 9:20!13 +MAT 9:20!14 +MAT 9:21!2 +MAT 9:21!1 +MAT 9:21!3 +MAT 9:21!4 +MAT 9:21!5 +MAT 9:21!6 +MAT 9:21!7 +MAT 9:21!8 +MAT 9:21!9 +MAT 9:21!10 +MAT 9:21!11 +MAT 9:22!2 +MAT 9:22!1 +MAT 9:22!3 +MAT 9:22!4 +MAT 9:22!5 +MAT 9:22!6 +MAT 9:22!7 +MAT 9:22!8 +MAT 9:22!9 +MAT 9:22!10 +MAT 9:22!11 +MAT 9:22!12 +MAT 9:22!13 +MAT 9:22!14 +MAT 9:22!15 +MAT 9:22!16 +MAT 9:22!17 +MAT 9:22!18 +MAT 9:22!19 +MAT 9:22!20 +MAT 9:22!21 +MAT 9:22!22 +MAT 9:22!23 +MAT 9:23!1 +MAT 9:23!3 +MAT 9:23!4 +MAT 9:23!2 +MAT 9:23!5 +MAT 9:23!6 +MAT 9:23!7 +MAT 9:23!8 +MAT 9:23!9 +MAT 9:23!10 +MAT 9:23!11 +MAT 9:23!12 +MAT 9:23!13 +MAT 9:23!14 +MAT 9:23!15 +MAT 9:23!16 +MAT 9:23!17 +MAT 9:24!1 +MAT 9:24!2 +MAT 9:24!4 +MAT 9:24!3 +MAT 9:24!5 +MAT 9:24!6 +MAT 9:24!7 +MAT 9:24!8 +MAT 9:24!9 +MAT 9:24!10 +MAT 9:24!11 +MAT 9:24!12 +MAT 9:25!2 +MAT 9:25!1 +MAT 9:25!3 +MAT 9:25!4 +MAT 9:25!5 +MAT 9:25!6 +MAT 9:25!7 +MAT 9:25!8 +MAT 9:25!9 +MAT 9:25!10 +MAT 9:25!11 +MAT 9:25!12 +MAT 9:25!13 +MAT 9:25!14 +MAT 9:26!1 +MAT 9:26!2 +MAT 9:26!3 +MAT 9:26!4 +MAT 9:26!5 +MAT 9:26!6 +MAT 9:26!7 +MAT 9:26!8 +MAT 9:26!9 +MAT 9:26!10 +MAT 9:27!1 +MAT 9:27!2 +MAT 9:27!3 +MAT 9:27!4 +MAT 9:27!5 +MAT 9:27!6 +MAT 9:27!7 +MAT 9:27!8 +MAT 9:27!9 +MAT 9:27!10 +MAT 9:27!11 +MAT 9:27!12 +MAT 9:27!13 +MAT 9:27!14 +MAT 9:27!15 +MAT 9:28!2 +MAT 9:28!1 +MAT 9:28!3 +MAT 9:28!4 +MAT 9:28!5 +MAT 9:28!6 +MAT 9:28!7 +MAT 9:28!8 +MAT 9:28!9 +MAT 9:28!10 +MAT 9:28!11 +MAT 9:28!12 +MAT 9:28!13 +MAT 9:28!14 +MAT 9:28!15 +MAT 9:28!16 +MAT 9:28!17 +MAT 9:28!18 +MAT 9:28!19 +MAT 9:28!20 +MAT 9:28!21 +MAT 9:28!22 +MAT 9:28!23 +MAT 9:29!1 +MAT 9:29!2 +MAT 9:29!3 +MAT 9:29!4 +MAT 9:29!5 +MAT 9:29!6 +MAT 9:29!7 +MAT 9:29!8 +MAT 9:29!9 +MAT 9:29!10 +MAT 9:29!11 +MAT 9:29!12 +MAT 9:30!1 +MAT 9:30!2 +MAT 9:30!3 +MAT 9:30!4 +MAT 9:30!5 +MAT 9:30!6 +MAT 9:30!7 +MAT 9:30!8 +MAT 9:30!9 +MAT 9:30!10 +MAT 9:30!11 +MAT 9:30!12 +MAT 9:30!13 +MAT 9:30!14 +MAT 9:31!2 +MAT 9:31!1 +MAT 9:31!3 +MAT 9:31!4 +MAT 9:31!5 +MAT 9:31!6 +MAT 9:31!7 +MAT 9:31!8 +MAT 9:31!9 +MAT 9:31!10 +MAT 9:32!2 +MAT 9:32!1 +MAT 9:32!3 +MAT 9:32!4 +MAT 9:32!5 +MAT 9:32!6 +MAT 9:32!7 +MAT 9:32!8 +MAT 9:33!1 +MAT 9:33!2 +MAT 9:33!3 +MAT 9:33!4 +MAT 9:33!5 +MAT 9:33!6 +MAT 9:33!7 +MAT 9:33!8 +MAT 9:33!9 +MAT 9:33!10 +MAT 9:33!11 +MAT 9:33!12 +MAT 9:33!13 +MAT 9:33!14 +MAT 9:33!15 +MAT 9:33!16 +MAT 9:33!17 +MAT 9:33!18 +MAT 9:34!2 +MAT 9:34!1 +MAT 9:34!3 +MAT 9:34!4 +MAT 9:34!5 +MAT 9:34!6 +MAT 9:34!7 +MAT 9:34!8 +MAT 9:34!9 +MAT 9:34!10 +MAT 9:34!11 +MAT 9:34!12 +MAT 9:35!1 +MAT 9:35!2 +MAT 9:35!3 +MAT 9:35!4 +MAT 9:35!5 +MAT 9:35!6 +MAT 9:35!7 +MAT 9:35!8 +MAT 9:35!9 +MAT 9:35!10 +MAT 9:35!11 +MAT 9:35!12 +MAT 9:35!13 +MAT 9:35!14 +MAT 9:35!15 +MAT 9:35!16 +MAT 9:35!17 +MAT 9:35!18 +MAT 9:35!19 +MAT 9:35!20 +MAT 9:35!21 +MAT 9:35!22 +MAT 9:35!23 +MAT 9:35!24 +MAT 9:35!25 +MAT 9:35!26 +MAT 9:35!27 +MAT 9:35!28 +MAT 9:36!2 +MAT 9:36!1 +MAT 9:36!3 +MAT 9:36!4 +MAT 9:36!5 +MAT 9:36!6 +MAT 9:36!7 +MAT 9:36!8 +MAT 9:36!9 +MAT 9:36!10 +MAT 9:36!11 +MAT 9:36!12 +MAT 9:36!13 +MAT 9:36!14 +MAT 9:36!15 +MAT 9:36!16 +MAT 9:36!17 +MAT 9:37!1 +MAT 9:37!2 +MAT 9:37!3 +MAT 9:37!4 +MAT 9:37!5 +MAT 9:37!7 +MAT 9:37!6 +MAT 9:37!8 +MAT 9:37!9 +MAT 9:37!11 +MAT 9:37!10 +MAT 9:37!12 +MAT 9:37!13 +MAT 9:38!2 +MAT 9:38!1 +MAT 9:38!3 +MAT 9:38!4 +MAT 9:38!5 +MAT 9:38!6 +MAT 9:38!7 +MAT 9:38!8 +MAT 9:38!9 +MAT 9:38!10 +MAT 9:38!11 +MAT 9:38!12 +MAT 9:38!13 +MAT 10:1!1 +MAT 10:1!2 +MAT 10:1!3 +MAT 10:1!4 +MAT 10:1!5 +MAT 10:1!6 +MAT 10:1!7 +MAT 10:1!8 +MAT 10:1!9 +MAT 10:1!10 +MAT 10:1!11 +MAT 10:1!12 +MAT 10:1!13 +MAT 10:1!14 +MAT 10:1!15 +MAT 10:1!16 +MAT 10:1!17 +MAT 10:1!18 +MAT 10:1!19 +MAT 10:1!20 +MAT 10:1!21 +MAT 10:2!2 +MAT 10:2!1 +MAT 10:2!3 +MAT 10:2!4 +MAT 10:2!5 +MAT 10:2!6 +MAT 10:2!7 +MAT 10:2!8 +MAT 10:2!9 +MAT 10:2!10 +MAT 10:2!11 +MAT 10:2!12 +MAT 10:2!13 +MAT 10:2!14 +MAT 10:2!15 +MAT 10:2!16 +MAT 10:2!17 +MAT 10:2!18 +MAT 10:2!19 +MAT 10:2!20 +MAT 10:2!21 +MAT 10:2!22 +MAT 10:2!23 +MAT 10:2!24 +MAT 10:2!25 +MAT 10:2!26 +MAT 10:2!27 +MAT 10:2!28 +MAT 10:3!1 +MAT 10:3!2 +MAT 10:3!3 +MAT 10:3!4 +MAT 10:3!5 +MAT 10:3!6 +MAT 10:3!7 +MAT 10:3!8 +MAT 10:3!9 +MAT 10:3!10 +MAT 10:3!11 +MAT 10:3!12 +MAT 10:3!13 +MAT 10:3!14 +MAT 10:4!1 +MAT 10:4!2 +MAT 10:4!3 +MAT 10:4!4 +MAT 10:4!5 +MAT 10:4!6 +MAT 10:4!7 +MAT 10:4!8 +MAT 10:4!9 +MAT 10:4!10 +MAT 10:4!11 +MAT 10:5!1 +MAT 10:5!2 +MAT 10:5!3 +MAT 10:5!4 +MAT 10:5!5 +MAT 10:5!6 +MAT 10:5!7 +MAT 10:5!8 +MAT 10:5!9 +MAT 10:5!10 +MAT 10:5!11 +MAT 10:5!12 +MAT 10:5!13 +MAT 10:5!14 +MAT 10:5!15 +MAT 10:5!16 +MAT 10:5!17 +MAT 10:5!18 +MAT 10:5!19 +MAT 10:5!20 +MAT 10:6!2 +MAT 10:6!1 +MAT 10:6!3 +MAT 10:6!4 +MAT 10:6!5 +MAT 10:6!6 +MAT 10:6!7 +MAT 10:6!8 +MAT 10:6!9 +MAT 10:6!10 +MAT 10:7!2 +MAT 10:7!1 +MAT 10:7!3 +MAT 10:7!4 +MAT 10:7!5 +MAT 10:7!6 +MAT 10:7!7 +MAT 10:7!8 +MAT 10:7!9 +MAT 10:7!10 +MAT 10:8!1 +MAT 10:8!2 +MAT 10:8!3 +MAT 10:8!4 +MAT 10:8!5 +MAT 10:8!6 +MAT 10:8!7 +MAT 10:8!8 +MAT 10:8!9 +MAT 10:8!10 +MAT 10:8!11 +MAT 10:8!12 +MAT 10:9!1 +MAT 10:9!2 +MAT 10:9!3 +MAT 10:9!4 +MAT 10:9!5 +MAT 10:9!6 +MAT 10:9!7 +MAT 10:9!8 +MAT 10:9!9 +MAT 10:9!10 +MAT 10:9!11 +MAT 10:10!1 +MAT 10:10!2 +MAT 10:10!3 +MAT 10:10!4 +MAT 10:10!5 +MAT 10:10!6 +MAT 10:10!7 +MAT 10:10!8 +MAT 10:10!9 +MAT 10:10!10 +MAT 10:10!11 +MAT 10:10!13 +MAT 10:10!12 +MAT 10:10!14 +MAT 10:10!15 +MAT 10:10!16 +MAT 10:10!17 +MAT 10:10!18 +MAT 10:11!3 +MAT 10:11!4 +MAT 10:11!1 +MAT 10:11!2 +MAT 10:11!5 +MAT 10:11!6 +MAT 10:11!7 +MAT 10:11!8 +MAT 10:11!9 +MAT 10:11!10 +MAT 10:11!11 +MAT 10:11!12 +MAT 10:11!13 +MAT 10:11!14 +MAT 10:11!15 +MAT 10:11!16 +MAT 10:11!17 +MAT 10:11!18 +MAT 10:11!19 +MAT 10:12!2 +MAT 10:12!1 +MAT 10:12!3 +MAT 10:12!4 +MAT 10:12!5 +MAT 10:12!6 +MAT 10:12!7 +MAT 10:13!1 +MAT 10:13!3 +MAT 10:13!2 +MAT 10:13!4 +MAT 10:13!5 +MAT 10:13!6 +MAT 10:13!7 +MAT 10:13!8 +MAT 10:13!9 +MAT 10:13!10 +MAT 10:13!11 +MAT 10:13!12 +MAT 10:13!13 +MAT 10:13!15 +MAT 10:13!14 +MAT 10:13!16 +MAT 10:13!17 +MAT 10:13!18 +MAT 10:13!19 +MAT 10:13!20 +MAT 10:13!21 +MAT 10:13!22 +MAT 10:13!23 +MAT 10:13!24 +MAT 10:14!1 +MAT 10:14!3 +MAT 10:14!2 +MAT 10:14!4 +MAT 10:14!5 +MAT 10:14!6 +MAT 10:14!7 +MAT 10:14!8 +MAT 10:14!9 +MAT 10:14!10 +MAT 10:14!11 +MAT 10:14!12 +MAT 10:14!13 +MAT 10:14!14 +MAT 10:14!15 +MAT 10:14!16 +MAT 10:14!17 +MAT 10:14!18 +MAT 10:14!19 +MAT 10:14!20 +MAT 10:14!21 +MAT 10:14!22 +MAT 10:14!23 +MAT 10:14!24 +MAT 10:14!25 +MAT 10:15!1 +MAT 10:15!2 +MAT 10:15!3 +MAT 10:15!4 +MAT 10:15!5 +MAT 10:15!6 +MAT 10:15!7 +MAT 10:15!8 +MAT 10:15!9 +MAT 10:15!10 +MAT 10:15!11 +MAT 10:15!12 +MAT 10:15!13 +MAT 10:15!14 +MAT 10:15!15 +MAT 10:15!16 +MAT 10:16!1 +MAT 10:16!2 +MAT 10:16!3 +MAT 10:16!4 +MAT 10:16!5 +MAT 10:16!6 +MAT 10:16!7 +MAT 10:16!8 +MAT 10:16!9 +MAT 10:16!11 +MAT 10:16!10 +MAT 10:16!12 +MAT 10:16!13 +MAT 10:16!14 +MAT 10:16!15 +MAT 10:16!16 +MAT 10:16!17 +MAT 10:16!18 +MAT 10:16!19 +MAT 10:16!20 +MAT 10:17!2 +MAT 10:17!1 +MAT 10:17!3 +MAT 10:17!4 +MAT 10:17!5 +MAT 10:17!7 +MAT 10:17!6 +MAT 10:17!8 +MAT 10:17!9 +MAT 10:17!10 +MAT 10:17!11 +MAT 10:17!12 +MAT 10:17!13 +MAT 10:17!14 +MAT 10:17!15 +MAT 10:17!16 +MAT 10:17!17 +MAT 10:18!4 +MAT 10:18!1 +MAT 10:18!2 +MAT 10:18!3 +MAT 10:18!5 +MAT 10:18!6 +MAT 10:18!7 +MAT 10:18!8 +MAT 10:18!9 +MAT 10:18!10 +MAT 10:18!11 +MAT 10:18!12 +MAT 10:18!13 +MAT 10:18!14 +MAT 10:18!15 +MAT 10:19!2 +MAT 10:19!1 +MAT 10:19!3 +MAT 10:19!4 +MAT 10:19!5 +MAT 10:19!6 +MAT 10:19!7 +MAT 10:19!8 +MAT 10:19!9 +MAT 10:19!10 +MAT 10:19!12 +MAT 10:19!11 +MAT 10:19!13 +MAT 10:19!14 +MAT 10:19!15 +MAT 10:19!16 +MAT 10:19!17 +MAT 10:19!18 +MAT 10:19!19 +MAT 10:20!2 +MAT 10:20!1 +MAT 10:20!3 +MAT 10:20!4 +MAT 10:20!5 +MAT 10:20!6 +MAT 10:20!7 +MAT 10:20!8 +MAT 10:20!9 +MAT 10:20!10 +MAT 10:20!11 +MAT 10:20!12 +MAT 10:20!13 +MAT 10:20!14 +MAT 10:20!15 +MAT 10:20!16 +MAT 10:21!2 +MAT 10:21!1 +MAT 10:21!3 +MAT 10:21!4 +MAT 10:21!5 +MAT 10:21!6 +MAT 10:21!7 +MAT 10:21!8 +MAT 10:21!9 +MAT 10:21!10 +MAT 10:21!11 +MAT 10:21!12 +MAT 10:21!13 +MAT 10:21!14 +MAT 10:21!15 +MAT 10:21!16 +MAT 10:21!17 +MAT 10:22!1 +MAT 10:22!2 +MAT 10:22!3 +MAT 10:22!4 +MAT 10:22!5 +MAT 10:22!6 +MAT 10:22!7 +MAT 10:22!8 +MAT 10:22!9 +MAT 10:22!11 +MAT 10:22!10 +MAT 10:22!12 +MAT 10:22!13 +MAT 10:22!14 +MAT 10:22!15 +MAT 10:22!16 +MAT 10:23!2 +MAT 10:23!1 +MAT 10:23!3 +MAT 10:23!4 +MAT 10:23!5 +MAT 10:23!6 +MAT 10:23!7 +MAT 10:23!8 +MAT 10:23!9 +MAT 10:23!10 +MAT 10:23!11 +MAT 10:23!12 +MAT 10:23!14 +MAT 10:23!13 +MAT 10:23!15 +MAT 10:23!16 +MAT 10:23!17 +MAT 10:23!18 +MAT 10:23!19 +MAT 10:23!20 +MAT 10:23!21 +MAT 10:23!22 +MAT 10:23!23 +MAT 10:23!24 +MAT 10:23!25 +MAT 10:23!26 +MAT 10:23!27 +MAT 10:23!28 +MAT 10:23!29 +MAT 10:24!1 +MAT 10:24!2 +MAT 10:24!3 +MAT 10:24!4 +MAT 10:24!5 +MAT 10:24!6 +MAT 10:24!7 +MAT 10:24!8 +MAT 10:24!9 +MAT 10:24!10 +MAT 10:24!11 +MAT 10:24!12 +MAT 10:25!1 +MAT 10:25!2 +MAT 10:25!3 +MAT 10:25!4 +MAT 10:25!5 +MAT 10:25!6 +MAT 10:25!7 +MAT 10:25!8 +MAT 10:25!9 +MAT 10:25!10 +MAT 10:25!11 +MAT 10:25!12 +MAT 10:25!13 +MAT 10:25!14 +MAT 10:25!15 +MAT 10:25!16 +MAT 10:25!17 +MAT 10:25!18 +MAT 10:25!19 +MAT 10:25!20 +MAT 10:25!21 +MAT 10:25!22 +MAT 10:25!23 +MAT 10:25!24 +MAT 10:25!25 +MAT 10:25!26 +MAT 10:26!2 +MAT 10:26!1 +MAT 10:26!3 +MAT 10:26!4 +MAT 10:26!6 +MAT 10:26!5 +MAT 10:26!7 +MAT 10:26!8 +MAT 10:26!9 +MAT 10:26!10 +MAT 10:26!11 +MAT 10:26!12 +MAT 10:26!13 +MAT 10:26!14 +MAT 10:26!15 +MAT 10:26!16 +MAT 10:27!1 +MAT 10:27!2 +MAT 10:27!3 +MAT 10:27!4 +MAT 10:27!5 +MAT 10:27!6 +MAT 10:27!7 +MAT 10:27!8 +MAT 10:27!9 +MAT 10:27!10 +MAT 10:27!11 +MAT 10:27!12 +MAT 10:27!13 +MAT 10:27!14 +MAT 10:27!15 +MAT 10:27!16 +MAT 10:27!17 +MAT 10:27!18 +MAT 10:27!19 +MAT 10:27!20 +MAT 10:28!1 +MAT 10:28!2 +MAT 10:28!3 +MAT 10:28!4 +MAT 10:28!5 +MAT 10:28!6 +MAT 10:28!7 +MAT 10:28!8 +MAT 10:28!10 +MAT 10:28!12 +MAT 10:28!13 +MAT 10:28!9 +MAT 10:28!11 +MAT 10:28!14 +MAT 10:28!16 +MAT 10:28!15 +MAT 10:28!17 +MAT 10:28!18 +MAT 10:28!19 +MAT 10:28!20 +MAT 10:28!21 +MAT 10:28!22 +MAT 10:28!23 +MAT 10:28!24 +MAT 10:28!25 +MAT 10:28!26 +MAT 10:29!1 +MAT 10:29!2 +MAT 10:29!3 +MAT 10:29!4 +MAT 10:29!5 +MAT 10:29!6 +MAT 10:29!7 +MAT 10:29!8 +MAT 10:29!9 +MAT 10:29!10 +MAT 10:29!11 +MAT 10:29!12 +MAT 10:29!13 +MAT 10:29!14 +MAT 10:29!15 +MAT 10:29!16 +MAT 10:29!17 +MAT 10:29!18 +MAT 10:30!2 +MAT 10:30!3 +MAT 10:30!1 +MAT 10:30!4 +MAT 10:30!5 +MAT 10:30!6 +MAT 10:30!7 +MAT 10:30!8 +MAT 10:30!9 +MAT 10:30!10 +MAT 10:31!2 +MAT 10:31!1 +MAT 10:31!3 +MAT 10:31!4 +MAT 10:31!5 +MAT 10:31!6 +MAT 10:31!7 +MAT 10:32!2 +MAT 10:32!1 +MAT 10:32!3 +MAT 10:32!4 +MAT 10:32!5 +MAT 10:32!6 +MAT 10:32!7 +MAT 10:32!8 +MAT 10:32!9 +MAT 10:32!10 +MAT 10:32!11 +MAT 10:32!12 +MAT 10:32!13 +MAT 10:32!14 +MAT 10:32!15 +MAT 10:32!16 +MAT 10:32!17 +MAT 10:32!18 +MAT 10:32!19 +MAT 10:32!20 +MAT 10:32!21 +MAT 10:33!2 +MAT 10:33!3 +MAT 10:33!1 +MAT 10:33!4 +MAT 10:33!5 +MAT 10:33!6 +MAT 10:33!7 +MAT 10:33!8 +MAT 10:33!9 +MAT 10:33!10 +MAT 10:33!11 +MAT 10:33!12 +MAT 10:33!13 +MAT 10:33!14 +MAT 10:33!15 +MAT 10:33!16 +MAT 10:33!17 +MAT 10:33!18 +MAT 10:33!19 +MAT 10:34!1 +MAT 10:34!2 +MAT 10:34!3 +MAT 10:34!4 +MAT 10:34!5 +MAT 10:34!6 +MAT 10:34!7 +MAT 10:34!8 +MAT 10:34!9 +MAT 10:34!10 +MAT 10:34!11 +MAT 10:34!12 +MAT 10:34!13 +MAT 10:34!14 +MAT 10:34!15 +MAT 10:35!2 +MAT 10:35!1 +MAT 10:35!3 +MAT 10:35!4 +MAT 10:35!5 +MAT 10:35!6 +MAT 10:35!7 +MAT 10:35!8 +MAT 10:35!9 +MAT 10:35!10 +MAT 10:35!11 +MAT 10:35!12 +MAT 10:35!13 +MAT 10:35!14 +MAT 10:35!15 +MAT 10:35!16 +MAT 10:35!17 +MAT 10:35!18 +MAT 10:35!19 +MAT 10:35!20 +MAT 10:36!1 +MAT 10:36!2 +MAT 10:36!3 +MAT 10:36!4 +MAT 10:36!5 +MAT 10:36!6 +MAT 10:36!7 +MAT 10:37!1 +MAT 10:37!2 +MAT 10:37!3 +MAT 10:37!4 +MAT 10:37!5 +MAT 10:37!6 +MAT 10:37!7 +MAT 10:37!8 +MAT 10:37!9 +MAT 10:37!10 +MAT 10:37!11 +MAT 10:37!12 +MAT 10:37!13 +MAT 10:37!14 +MAT 10:37!15 +MAT 10:37!16 +MAT 10:37!17 +MAT 10:37!18 +MAT 10:37!19 +MAT 10:37!20 +MAT 10:37!21 +MAT 10:37!22 +MAT 10:37!23 +MAT 10:38!1 +MAT 10:38!2 +MAT 10:38!3 +MAT 10:38!4 +MAT 10:38!5 +MAT 10:38!6 +MAT 10:38!7 +MAT 10:38!8 +MAT 10:38!9 +MAT 10:38!10 +MAT 10:38!11 +MAT 10:38!12 +MAT 10:38!13 +MAT 10:38!14 +MAT 10:38!15 +MAT 10:39!1 +MAT 10:39!2 +MAT 10:39!3 +MAT 10:39!4 +MAT 10:39!5 +MAT 10:39!6 +MAT 10:39!7 +MAT 10:39!8 +MAT 10:39!9 +MAT 10:39!10 +MAT 10:39!11 +MAT 10:39!12 +MAT 10:39!13 +MAT 10:39!14 +MAT 10:39!15 +MAT 10:39!16 +MAT 10:39!17 +MAT 10:40!1 +MAT 10:40!2 +MAT 10:40!3 +MAT 10:40!4 +MAT 10:40!5 +MAT 10:40!6 +MAT 10:40!7 +MAT 10:40!8 +MAT 10:40!9 +MAT 10:40!10 +MAT 10:40!11 +MAT 10:40!12 +MAT 10:40!13 +MAT 10:41!1 +MAT 10:41!2 +MAT 10:41!3 +MAT 10:41!4 +MAT 10:41!5 +MAT 10:41!6 +MAT 10:41!7 +MAT 10:41!8 +MAT 10:41!9 +MAT 10:41!10 +MAT 10:41!11 +MAT 10:41!12 +MAT 10:41!13 +MAT 10:41!14 +MAT 10:41!15 +MAT 10:41!16 +MAT 10:41!17 +MAT 10:41!18 +MAT 10:41!19 +MAT 10:42!1 +MAT 10:42!3 +MAT 10:42!2 +MAT 10:42!4 +MAT 10:42!5 +MAT 10:42!6 +MAT 10:42!7 +MAT 10:42!8 +MAT 10:42!9 +MAT 10:42!10 +MAT 10:42!11 +MAT 10:42!12 +MAT 10:42!13 +MAT 10:42!14 +MAT 10:42!15 +MAT 10:42!16 +MAT 10:42!17 +MAT 10:42!18 +MAT 10:42!19 +MAT 10:42!20 +MAT 10:42!21 +MAT 10:42!22 +MAT 10:42!23 +MAT 11:1!1 +MAT 11:1!2 +MAT 11:1!3 +MAT 11:1!4 +MAT 11:1!5 +MAT 11:1!6 +MAT 11:1!7 +MAT 11:1!8 +MAT 11:1!9 +MAT 11:1!10 +MAT 11:1!11 +MAT 11:1!12 +MAT 11:1!13 +MAT 11:1!14 +MAT 11:1!15 +MAT 11:1!16 +MAT 11:1!17 +MAT 11:1!18 +MAT 11:1!19 +MAT 11:1!20 +MAT 11:1!21 +MAT 11:2!2 +MAT 11:2!1 +MAT 11:2!3 +MAT 11:2!4 +MAT 11:2!5 +MAT 11:2!6 +MAT 11:2!7 +MAT 11:2!8 +MAT 11:2!9 +MAT 11:2!10 +MAT 11:2!11 +MAT 11:2!12 +MAT 11:2!13 +MAT 11:2!14 +MAT 11:2!15 +MAT 11:2!16 +MAT 11:3!1 +MAT 11:3!2 +MAT 11:3!3 +MAT 11:3!4 +MAT 11:3!5 +MAT 11:3!6 +MAT 11:3!7 +MAT 11:3!8 +MAT 11:3!9 +MAT 11:4!1 +MAT 11:4!2 +MAT 11:4!3 +MAT 11:4!4 +MAT 11:4!5 +MAT 11:4!6 +MAT 11:4!7 +MAT 11:4!8 +MAT 11:4!9 +MAT 11:4!10 +MAT 11:4!11 +MAT 11:4!12 +MAT 11:4!13 +MAT 11:5!1 +MAT 11:5!2 +MAT 11:5!3 +MAT 11:5!4 +MAT 11:5!5 +MAT 11:5!6 +MAT 11:5!7 +MAT 11:5!8 +MAT 11:5!9 +MAT 11:5!10 +MAT 11:5!11 +MAT 11:5!12 +MAT 11:5!13 +MAT 11:5!14 +MAT 11:5!15 +MAT 11:5!16 +MAT 11:6!1 +MAT 11:6!2 +MAT 11:6!3 +MAT 11:6!5 +MAT 11:6!4 +MAT 11:6!6 +MAT 11:6!7 +MAT 11:6!8 +MAT 11:6!9 +MAT 11:7!2 +MAT 11:7!1 +MAT 11:7!3 +MAT 11:7!4 +MAT 11:7!5 +MAT 11:7!6 +MAT 11:7!7 +MAT 11:7!8 +MAT 11:7!9 +MAT 11:7!10 +MAT 11:7!11 +MAT 11:7!12 +MAT 11:7!17 +MAT 11:7!13 +MAT 11:7!14 +MAT 11:7!15 +MAT 11:7!16 +MAT 11:7!18 +MAT 11:7!19 +MAT 11:7!20 +MAT 11:7!21 +MAT 11:8!1 +MAT 11:8!2 +MAT 11:8!4 +MAT 11:8!3 +MAT 11:8!5 +MAT 11:8!6 +MAT 11:8!7 +MAT 11:8!8 +MAT 11:8!9 +MAT 11:8!10 +MAT 11:8!11 +MAT 11:8!12 +MAT 11:8!13 +MAT 11:8!14 +MAT 11:8!15 +MAT 11:8!16 +MAT 11:8!17 +MAT 11:8!18 +MAT 11:9!1 +MAT 11:9!2 +MAT 11:9!3 +MAT 11:9!4 +MAT 11:9!5 +MAT 11:9!6 +MAT 11:9!7 +MAT 11:9!8 +MAT 11:9!9 +MAT 11:9!10 +MAT 11:9!11 +MAT 11:10!1 +MAT 11:10!2 +MAT 11:10!3 +MAT 11:10!4 +MAT 11:10!5 +MAT 11:10!6 +MAT 11:10!7 +MAT 11:10!8 +MAT 11:10!9 +MAT 11:10!10 +MAT 11:10!11 +MAT 11:10!12 +MAT 11:10!13 +MAT 11:10!14 +MAT 11:10!15 +MAT 11:10!16 +MAT 11:10!17 +MAT 11:10!18 +MAT 11:10!19 +MAT 11:10!20 +MAT 11:10!21 +MAT 11:11!1 +MAT 11:11!2 +MAT 11:11!3 +MAT 11:11!4 +MAT 11:11!5 +MAT 11:11!6 +MAT 11:11!7 +MAT 11:11!8 +MAT 11:11!9 +MAT 11:11!10 +MAT 11:11!11 +MAT 11:11!12 +MAT 11:11!14 +MAT 11:11!13 +MAT 11:11!15 +MAT 11:11!16 +MAT 11:11!17 +MAT 11:11!18 +MAT 11:11!19 +MAT 11:11!20 +MAT 11:11!21 +MAT 11:11!22 +MAT 11:11!23 +MAT 11:12!2 +MAT 11:12!1 +MAT 11:12!3 +MAT 11:12!4 +MAT 11:12!5 +MAT 11:12!6 +MAT 11:12!7 +MAT 11:12!8 +MAT 11:12!9 +MAT 11:12!10 +MAT 11:12!11 +MAT 11:12!12 +MAT 11:12!13 +MAT 11:12!14 +MAT 11:12!15 +MAT 11:12!16 +MAT 11:12!17 +MAT 11:12!18 +MAT 11:13!2 +MAT 11:13!1 +MAT 11:13!3 +MAT 11:13!4 +MAT 11:13!5 +MAT 11:13!6 +MAT 11:13!7 +MAT 11:13!8 +MAT 11:13!9 +MAT 11:13!10 +MAT 11:14!1 +MAT 11:14!2 +MAT 11:14!3 +MAT 11:14!4 +MAT 11:14!5 +MAT 11:14!6 +MAT 11:14!7 +MAT 11:14!8 +MAT 11:14!9 +MAT 11:14!10 +MAT 11:15!1 +MAT 11:15!2 +MAT 11:15!3 +MAT 11:15!4 +MAT 11:16!2 +MAT 11:16!1 +MAT 11:16!3 +MAT 11:16!4 +MAT 11:16!5 +MAT 11:16!6 +MAT 11:16!7 +MAT 11:16!8 +MAT 11:16!9 +MAT 11:16!10 +MAT 11:16!11 +MAT 11:16!12 +MAT 11:16!13 +MAT 11:16!14 +MAT 11:16!15 +MAT 11:16!16 +MAT 11:16!17 +MAT 11:17!1 +MAT 11:17!2 +MAT 11:17!3 +MAT 11:17!4 +MAT 11:17!5 +MAT 11:17!6 +MAT 11:17!7 +MAT 11:17!8 +MAT 11:17!9 +MAT 11:17!10 +MAT 11:18!2 +MAT 11:18!1 +MAT 11:18!3 +MAT 11:18!4 +MAT 11:18!5 +MAT 11:18!6 +MAT 11:18!7 +MAT 11:18!8 +MAT 11:18!9 +MAT 11:18!10 +MAT 11:18!11 +MAT 11:19!1 +MAT 11:19!2 +MAT 11:19!3 +MAT 11:19!4 +MAT 11:19!5 +MAT 11:19!6 +MAT 11:19!7 +MAT 11:19!8 +MAT 11:19!9 +MAT 11:19!10 +MAT 11:19!11 +MAT 11:19!12 +MAT 11:19!13 +MAT 11:19!14 +MAT 11:19!15 +MAT 11:19!17 +MAT 11:19!16 +MAT 11:19!18 +MAT 11:19!19 +MAT 11:19!20 +MAT 11:19!21 +MAT 11:19!22 +MAT 11:19!23 +MAT 11:19!24 +MAT 11:19!25 +MAT 11:19!26 +MAT 11:19!27 +MAT 11:20!1 +MAT 11:20!2 +MAT 11:20!3 +MAT 11:20!4 +MAT 11:20!5 +MAT 11:20!6 +MAT 11:20!7 +MAT 11:20!8 +MAT 11:20!9 +MAT 11:20!10 +MAT 11:20!11 +MAT 11:20!12 +MAT 11:20!13 +MAT 11:20!14 +MAT 11:20!15 +MAT 11:21!1 +MAT 11:21!2 +MAT 11:21!3 +MAT 11:21!4 +MAT 11:21!5 +MAT 11:21!6 +MAT 11:21!7 +MAT 11:21!8 +MAT 11:21!9 +MAT 11:21!10 +MAT 11:21!11 +MAT 11:21!12 +MAT 11:21!13 +MAT 11:21!14 +MAT 11:21!15 +MAT 11:21!16 +MAT 11:21!17 +MAT 11:21!18 +MAT 11:21!19 +MAT 11:21!21 +MAT 11:21!20 +MAT 11:21!22 +MAT 11:21!23 +MAT 11:21!24 +MAT 11:21!25 +MAT 11:21!26 +MAT 11:22!1 +MAT 11:22!2 +MAT 11:22!3 +MAT 11:22!4 +MAT 11:22!5 +MAT 11:22!6 +MAT 11:22!7 +MAT 11:22!8 +MAT 11:22!9 +MAT 11:22!10 +MAT 11:22!11 +MAT 11:22!12 +MAT 11:22!13 +MAT 11:23!1 +MAT 11:23!3 +MAT 11:23!4 +MAT 11:23!2 +MAT 11:23!5 +MAT 11:23!6 +MAT 11:23!7 +MAT 11:23!8 +MAT 11:23!9 +MAT 11:23!10 +MAT 11:23!11 +MAT 11:23!12 +MAT 11:23!13 +MAT 11:23!14 +MAT 11:23!15 +MAT 11:23!16 +MAT 11:23!17 +MAT 11:23!18 +MAT 11:23!19 +MAT 11:23!20 +MAT 11:23!21 +MAT 11:23!23 +MAT 11:23!22 +MAT 11:23!24 +MAT 11:23!25 +MAT 11:23!26 +MAT 11:24!1 +MAT 11:24!2 +MAT 11:24!3 +MAT 11:24!4 +MAT 11:24!5 +MAT 11:24!6 +MAT 11:24!7 +MAT 11:24!8 +MAT 11:24!9 +MAT 11:24!10 +MAT 11:24!11 +MAT 11:24!12 +MAT 11:24!13 +MAT 11:25!1 +MAT 11:25!2 +MAT 11:25!3 +MAT 11:25!4 +MAT 11:25!5 +MAT 11:25!6 +MAT 11:25!7 +MAT 11:25!8 +MAT 11:25!9 +MAT 11:25!10 +MAT 11:25!11 +MAT 11:25!12 +MAT 11:25!13 +MAT 11:25!14 +MAT 11:25!15 +MAT 11:25!16 +MAT 11:25!17 +MAT 11:25!18 +MAT 11:25!19 +MAT 11:25!20 +MAT 11:25!21 +MAT 11:25!22 +MAT 11:25!23 +MAT 11:25!24 +MAT 11:25!25 +MAT 11:25!26 +MAT 11:25!27 +MAT 11:25!28 +MAT 11:26!1 +MAT 11:26!2 +MAT 11:26!3 +MAT 11:26!4 +MAT 11:26!5 +MAT 11:26!6 +MAT 11:26!7 +MAT 11:26!8 +MAT 11:26!9 +MAT 11:27!1 +MAT 11:27!2 +MAT 11:27!3 +MAT 11:27!4 +MAT 11:27!5 +MAT 11:27!6 +MAT 11:27!7 +MAT 11:27!8 +MAT 11:27!9 +MAT 11:27!10 +MAT 11:27!11 +MAT 11:27!12 +MAT 11:27!13 +MAT 11:27!14 +MAT 11:27!15 +MAT 11:27!16 +MAT 11:27!17 +MAT 11:27!18 +MAT 11:27!19 +MAT 11:27!20 +MAT 11:27!21 +MAT 11:27!22 +MAT 11:27!23 +MAT 11:27!24 +MAT 11:27!25 +MAT 11:27!26 +MAT 11:27!28 +MAT 11:27!27 +MAT 11:27!32 +MAT 11:27!29 +MAT 11:27!30 +MAT 11:27!31 +MAT 11:28!1 +MAT 11:28!2 +MAT 11:28!3 +MAT 11:28!4 +MAT 11:28!5 +MAT 11:28!6 +MAT 11:28!7 +MAT 11:28!8 +MAT 11:28!9 +MAT 11:28!10 +MAT 11:28!11 +MAT 11:29!1 +MAT 11:29!2 +MAT 11:29!3 +MAT 11:29!4 +MAT 11:29!5 +MAT 11:29!6 +MAT 11:29!7 +MAT 11:29!8 +MAT 11:29!9 +MAT 11:29!10 +MAT 11:29!11 +MAT 11:29!13 +MAT 11:29!12 +MAT 11:29!14 +MAT 11:29!15 +MAT 11:29!16 +MAT 11:29!17 +MAT 11:29!18 +MAT 11:29!19 +MAT 11:29!20 +MAT 11:29!21 +MAT 11:29!22 +MAT 11:29!23 +MAT 11:30!2 +MAT 11:30!1 +MAT 11:30!3 +MAT 11:30!4 +MAT 11:30!5 +MAT 11:30!6 +MAT 11:30!7 +MAT 11:30!8 +MAT 11:30!9 +MAT 11:30!10 +MAT 11:30!11 +MAT 12:1!1 +MAT 12:1!2 +MAT 12:1!3 +MAT 12:1!4 +MAT 12:1!5 +MAT 12:1!6 +MAT 12:1!7 +MAT 12:1!8 +MAT 12:1!9 +MAT 12:1!10 +MAT 12:1!11 +MAT 12:1!12 +MAT 12:1!14 +MAT 12:1!13 +MAT 12:1!15 +MAT 12:1!16 +MAT 12:1!17 +MAT 12:1!18 +MAT 12:1!19 +MAT 12:1!20 +MAT 12:1!21 +MAT 12:1!22 +MAT 12:1!23 +MAT 12:2!2 +MAT 12:2!1 +MAT 12:2!3 +MAT 12:2!4 +MAT 12:2!5 +MAT 12:2!6 +MAT 12:2!7 +MAT 12:2!8 +MAT 12:2!9 +MAT 12:2!10 +MAT 12:2!11 +MAT 12:2!12 +MAT 12:2!15 +MAT 12:2!13 +MAT 12:2!14 +MAT 12:2!16 +MAT 12:2!17 +MAT 12:3!2 +MAT 12:3!1 +MAT 12:3!3 +MAT 12:3!4 +MAT 12:3!5 +MAT 12:3!6 +MAT 12:3!7 +MAT 12:3!8 +MAT 12:3!9 +MAT 12:3!10 +MAT 12:3!11 +MAT 12:3!12 +MAT 12:3!13 +MAT 12:3!14 +MAT 12:3!15 +MAT 12:4!1 +MAT 12:4!2 +MAT 12:4!3 +MAT 12:4!4 +MAT 12:4!5 +MAT 12:4!6 +MAT 12:4!7 +MAT 12:4!8 +MAT 12:4!9 +MAT 12:4!10 +MAT 12:4!11 +MAT 12:4!12 +MAT 12:4!13 +MAT 12:4!14 +MAT 12:4!19 +MAT 12:4!15 +MAT 12:4!16 +MAT 12:4!17 +MAT 12:4!18 +MAT 12:4!20 +MAT 12:4!21 +MAT 12:4!22 +MAT 12:4!23 +MAT 12:4!24 +MAT 12:4!25 +MAT 12:4!26 +MAT 12:4!27 +MAT 12:4!28 +MAT 12:5!1 +MAT 12:5!2 +MAT 12:5!3 +MAT 12:5!4 +MAT 12:5!5 +MAT 12:5!6 +MAT 12:5!7 +MAT 12:5!8 +MAT 12:5!9 +MAT 12:5!10 +MAT 12:5!11 +MAT 12:5!12 +MAT 12:5!13 +MAT 12:5!14 +MAT 12:5!15 +MAT 12:5!16 +MAT 12:5!17 +MAT 12:5!18 +MAT 12:5!19 +MAT 12:5!20 +MAT 12:6!2 +MAT 12:6!1 +MAT 12:6!3 +MAT 12:6!4 +MAT 12:6!5 +MAT 12:6!6 +MAT 12:6!7 +MAT 12:6!8 +MAT 12:6!9 +MAT 12:7!2 +MAT 12:7!1 +MAT 12:7!3 +MAT 12:7!4 +MAT 12:7!5 +MAT 12:7!6 +MAT 12:7!7 +MAT 12:7!8 +MAT 12:7!9 +MAT 12:7!10 +MAT 12:7!12 +MAT 12:7!11 +MAT 12:7!13 +MAT 12:7!14 +MAT 12:7!15 +MAT 12:8!2 +MAT 12:8!3 +MAT 12:8!1 +MAT 12:8!4 +MAT 12:8!5 +MAT 12:8!6 +MAT 12:8!7 +MAT 12:8!8 +MAT 12:8!9 +MAT 12:9!1 +MAT 12:9!2 +MAT 12:9!3 +MAT 12:9!4 +MAT 12:9!5 +MAT 12:9!6 +MAT 12:9!7 +MAT 12:9!8 +MAT 12:10!1 +MAT 12:10!2 +MAT 12:10!3 +MAT 12:10!4 +MAT 12:10!5 +MAT 12:10!6 +MAT 12:10!7 +MAT 12:10!8 +MAT 12:10!9 +MAT 12:10!10 +MAT 12:10!11 +MAT 12:10!12 +MAT 12:10!13 +MAT 12:10!14 +MAT 12:10!15 +MAT 12:10!16 +MAT 12:10!17 +MAT 12:10!18 +MAT 12:11!2 +MAT 12:11!1 +MAT 12:11!3 +MAT 12:11!4 +MAT 12:11!5 +MAT 12:11!6 +MAT 12:11!7 +MAT 12:11!8 +MAT 12:11!9 +MAT 12:11!10 +MAT 12:11!11 +MAT 12:11!12 +MAT 12:11!13 +MAT 12:11!14 +MAT 12:11!15 +MAT 12:11!16 +MAT 12:11!17 +MAT 12:11!18 +MAT 12:11!19 +MAT 12:11!20 +MAT 12:11!21 +MAT 12:11!22 +MAT 12:11!23 +MAT 12:11!24 +MAT 12:11!25 +MAT 12:11!26 +MAT 12:12!2 +MAT 12:12!1 +MAT 12:12!3 +MAT 12:12!4 +MAT 12:12!5 +MAT 12:12!6 +MAT 12:12!7 +MAT 12:12!8 +MAT 12:12!9 +MAT 12:12!10 +MAT 12:12!11 +MAT 12:13!1 +MAT 12:13!2 +MAT 12:13!3 +MAT 12:13!4 +MAT 12:13!5 +MAT 12:13!6 +MAT 12:13!7 +MAT 12:13!8 +MAT 12:13!9 +MAT 12:13!10 +MAT 12:13!11 +MAT 12:13!12 +MAT 12:13!13 +MAT 12:13!14 +MAT 12:13!15 +MAT 12:13!16 +MAT 12:14!2 +MAT 12:14!1 +MAT 12:14!3 +MAT 12:14!4 +MAT 12:14!5 +MAT 12:14!6 +MAT 12:14!7 +MAT 12:14!8 +MAT 12:14!9 +MAT 12:14!10 +MAT 12:14!11 +MAT 12:15!2 +MAT 12:15!1 +MAT 12:15!3 +MAT 12:15!4 +MAT 12:15!5 +MAT 12:15!6 +MAT 12:15!7 +MAT 12:15!8 +MAT 12:15!9 +MAT 12:15!10 +MAT 12:15!11 +MAT 12:15!12 +MAT 12:15!13 +MAT 12:15!14 +MAT 12:16!1 +MAT 12:16!2 +MAT 12:16!3 +MAT 12:16!4 +MAT 12:16!5 +MAT 12:16!6 +MAT 12:16!7 +MAT 12:16!8 +MAT 12:17!1 +MAT 12:17!2 +MAT 12:17!3 +MAT 12:17!4 +MAT 12:17!5 +MAT 12:17!6 +MAT 12:17!7 +MAT 12:17!8 +MAT 12:17!9 +MAT 12:18!1 +MAT 12:18!2 +MAT 12:18!3 +MAT 12:18!4 +MAT 12:18!5 +MAT 12:18!6 +MAT 12:18!7 +MAT 12:18!8 +MAT 12:18!9 +MAT 12:18!10 +MAT 12:18!11 +MAT 12:18!12 +MAT 12:18!13 +MAT 12:18!14 +MAT 12:18!15 +MAT 12:18!16 +MAT 12:18!17 +MAT 12:18!18 +MAT 12:18!19 +MAT 12:18!20 +MAT 12:18!21 +MAT 12:18!22 +MAT 12:18!23 +MAT 12:18!24 +MAT 12:18!25 +MAT 12:19!1 +MAT 12:19!2 +MAT 12:19!3 +MAT 12:19!4 +MAT 12:19!5 +MAT 12:19!6 +MAT 12:19!7 +MAT 12:19!8 +MAT 12:19!9 +MAT 12:19!10 +MAT 12:19!11 +MAT 12:19!12 +MAT 12:19!13 +MAT 12:20!1 +MAT 12:20!2 +MAT 12:20!3 +MAT 12:20!4 +MAT 12:20!5 +MAT 12:20!6 +MAT 12:20!7 +MAT 12:20!8 +MAT 12:20!9 +MAT 12:20!10 +MAT 12:20!11 +MAT 12:20!12 +MAT 12:20!13 +MAT 12:20!14 +MAT 12:20!15 +MAT 12:20!16 +MAT 12:21!1 +MAT 12:21!2 +MAT 12:21!3 +MAT 12:21!4 +MAT 12:21!5 +MAT 12:21!6 +MAT 12:22!1 +MAT 12:22!2 +MAT 12:22!3 +MAT 12:22!4 +MAT 12:22!5 +MAT 12:22!6 +MAT 12:22!7 +MAT 12:22!8 +MAT 12:22!9 +MAT 12:22!10 +MAT 12:22!11 +MAT 12:22!12 +MAT 12:22!13 +MAT 12:22!14 +MAT 12:22!15 +MAT 12:22!16 +MAT 12:23!1 +MAT 12:23!2 +MAT 12:23!3 +MAT 12:23!4 +MAT 12:23!5 +MAT 12:23!6 +MAT 12:23!7 +MAT 12:23!8 +MAT 12:23!9 +MAT 12:23!10 +MAT 12:23!11 +MAT 12:23!12 +MAT 12:23!13 +MAT 12:24!2 +MAT 12:24!1 +MAT 12:24!3 +MAT 12:24!4 +MAT 12:24!5 +MAT 12:24!6 +MAT 12:24!7 +MAT 12:24!8 +MAT 12:24!9 +MAT 12:24!10 +MAT 12:24!11 +MAT 12:24!12 +MAT 12:24!13 +MAT 12:24!14 +MAT 12:24!15 +MAT 12:24!16 +MAT 12:24!17 +MAT 12:24!18 +MAT 12:25!2 +MAT 12:25!1 +MAT 12:25!3 +MAT 12:25!4 +MAT 12:25!5 +MAT 12:25!6 +MAT 12:25!7 +MAT 12:25!8 +MAT 12:25!9 +MAT 12:25!10 +MAT 12:25!11 +MAT 12:25!12 +MAT 12:25!13 +MAT 12:25!14 +MAT 12:25!15 +MAT 12:25!16 +MAT 12:25!17 +MAT 12:25!18 +MAT 12:25!19 +MAT 12:25!20 +MAT 12:25!21 +MAT 12:25!22 +MAT 12:25!23 +MAT 12:26!1 +MAT 12:26!2 +MAT 12:26!3 +MAT 12:26!4 +MAT 12:26!5 +MAT 12:26!6 +MAT 12:26!7 +MAT 12:26!8 +MAT 12:26!9 +MAT 12:26!10 +MAT 12:26!12 +MAT 12:26!11 +MAT 12:26!13 +MAT 12:26!14 +MAT 12:26!15 +MAT 12:26!16 +MAT 12:27!1 +MAT 12:27!2 +MAT 12:27!3 +MAT 12:27!4 +MAT 12:27!5 +MAT 12:27!6 +MAT 12:27!7 +MAT 12:27!8 +MAT 12:27!9 +MAT 12:27!10 +MAT 12:27!11 +MAT 12:27!12 +MAT 12:27!13 +MAT 12:27!14 +MAT 12:27!15 +MAT 12:27!16 +MAT 12:27!17 +MAT 12:27!18 +MAT 12:27!20 +MAT 12:27!19 +MAT 12:28!2 +MAT 12:28!1 +MAT 12:28!3 +MAT 12:28!4 +MAT 12:28!5 +MAT 12:28!6 +MAT 12:28!7 +MAT 12:28!8 +MAT 12:28!9 +MAT 12:28!10 +MAT 12:28!11 +MAT 12:28!12 +MAT 12:28!13 +MAT 12:28!14 +MAT 12:28!15 +MAT 12:28!16 +MAT 12:28!17 +MAT 12:29!1 +MAT 12:29!2 +MAT 12:29!3 +MAT 12:29!4 +MAT 12:29!5 +MAT 12:29!6 +MAT 12:29!7 +MAT 12:29!8 +MAT 12:29!9 +MAT 12:29!10 +MAT 12:29!11 +MAT 12:29!12 +MAT 12:29!13 +MAT 12:29!14 +MAT 12:29!15 +MAT 12:29!16 +MAT 12:29!17 +MAT 12:29!18 +MAT 12:29!19 +MAT 12:29!20 +MAT 12:29!21 +MAT 12:29!22 +MAT 12:29!23 +MAT 12:29!24 +MAT 12:29!25 +MAT 12:29!26 +MAT 12:29!27 +MAT 12:30!1 +MAT 12:30!2 +MAT 12:30!3 +MAT 12:30!4 +MAT 12:30!5 +MAT 12:30!6 +MAT 12:30!7 +MAT 12:30!8 +MAT 12:30!9 +MAT 12:30!10 +MAT 12:30!11 +MAT 12:30!12 +MAT 12:30!13 +MAT 12:30!14 +MAT 12:30!15 +MAT 12:31!1 +MAT 12:31!2 +MAT 12:31!3 +MAT 12:31!4 +MAT 12:31!5 +MAT 12:31!6 +MAT 12:31!7 +MAT 12:31!8 +MAT 12:31!9 +MAT 12:31!10 +MAT 12:31!11 +MAT 12:31!13 +MAT 12:31!12 +MAT 12:31!14 +MAT 12:31!15 +MAT 12:31!16 +MAT 12:31!17 +MAT 12:31!18 +MAT 12:32!1 +MAT 12:32!3 +MAT 12:32!2 +MAT 12:32!4 +MAT 12:32!5 +MAT 12:32!6 +MAT 12:32!7 +MAT 12:32!8 +MAT 12:32!9 +MAT 12:32!10 +MAT 12:32!11 +MAT 12:32!12 +MAT 12:32!14 +MAT 12:32!15 +MAT 12:32!13 +MAT 12:32!16 +MAT 12:32!17 +MAT 12:32!18 +MAT 12:32!19 +MAT 12:32!20 +MAT 12:32!21 +MAT 12:32!22 +MAT 12:32!23 +MAT 12:32!24 +MAT 12:32!25 +MAT 12:32!26 +MAT 12:32!27 +MAT 12:32!28 +MAT 12:32!29 +MAT 12:32!30 +MAT 12:32!31 +MAT 12:32!32 +MAT 12:32!33 +MAT 12:33!1 +MAT 12:33!2 +MAT 12:33!3 +MAT 12:33!4 +MAT 12:33!5 +MAT 12:33!6 +MAT 12:33!7 +MAT 12:33!8 +MAT 12:33!9 +MAT 12:33!10 +MAT 12:33!11 +MAT 12:33!12 +MAT 12:33!13 +MAT 12:33!14 +MAT 12:33!15 +MAT 12:33!16 +MAT 12:33!17 +MAT 12:33!18 +MAT 12:33!19 +MAT 12:33!20 +MAT 12:33!22 +MAT 12:33!21 +MAT 12:33!23 +MAT 12:33!24 +MAT 12:33!25 +MAT 12:33!26 +MAT 12:33!27 +MAT 12:34!1 +MAT 12:34!2 +MAT 12:34!3 +MAT 12:34!4 +MAT 12:34!5 +MAT 12:34!6 +MAT 12:34!7 +MAT 12:34!8 +MAT 12:34!10 +MAT 12:34!9 +MAT 12:34!11 +MAT 12:34!12 +MAT 12:34!13 +MAT 12:34!14 +MAT 12:34!15 +MAT 12:34!16 +MAT 12:34!17 +MAT 12:35!1 +MAT 12:35!2 +MAT 12:35!3 +MAT 12:35!4 +MAT 12:35!5 +MAT 12:35!6 +MAT 12:35!7 +MAT 12:35!8 +MAT 12:35!9 +MAT 12:35!10 +MAT 12:35!11 +MAT 12:35!12 +MAT 12:35!13 +MAT 12:35!14 +MAT 12:35!15 +MAT 12:35!16 +MAT 12:35!17 +MAT 12:35!18 +MAT 12:35!19 +MAT 12:36!2 +MAT 12:36!1 +MAT 12:36!3 +MAT 12:36!4 +MAT 12:36!5 +MAT 12:36!6 +MAT 12:36!7 +MAT 12:36!8 +MAT 12:36!9 +MAT 12:36!10 +MAT 12:36!11 +MAT 12:36!12 +MAT 12:36!13 +MAT 12:36!14 +MAT 12:36!15 +MAT 12:36!16 +MAT 12:36!17 +MAT 12:36!18 +MAT 12:37!2 +MAT 12:37!1 +MAT 12:37!3 +MAT 12:37!4 +MAT 12:37!5 +MAT 12:37!6 +MAT 12:37!7 +MAT 12:37!8 +MAT 12:37!9 +MAT 12:37!10 +MAT 12:37!11 +MAT 12:37!12 +MAT 12:38!1 +MAT 12:38!2 +MAT 12:38!3 +MAT 12:38!4 +MAT 12:38!5 +MAT 12:38!6 +MAT 12:38!7 +MAT 12:38!8 +MAT 12:38!9 +MAT 12:38!10 +MAT 12:38!11 +MAT 12:38!12 +MAT 12:38!13 +MAT 12:38!14 +MAT 12:38!15 +MAT 12:39!2 +MAT 12:39!1 +MAT 12:39!3 +MAT 12:39!4 +MAT 12:39!5 +MAT 12:39!6 +MAT 12:39!7 +MAT 12:39!8 +MAT 12:39!9 +MAT 12:39!10 +MAT 12:39!11 +MAT 12:39!12 +MAT 12:39!13 +MAT 12:39!14 +MAT 12:39!15 +MAT 12:39!16 +MAT 12:39!17 +MAT 12:39!18 +MAT 12:39!19 +MAT 12:39!20 +MAT 12:39!21 +MAT 12:39!22 +MAT 12:39!23 +MAT 12:40!2 +MAT 12:40!1 +MAT 12:40!3 +MAT 12:40!4 +MAT 12:40!5 +MAT 12:40!6 +MAT 12:40!7 +MAT 12:40!8 +MAT 12:40!9 +MAT 12:40!10 +MAT 12:40!11 +MAT 12:40!12 +MAT 12:40!13 +MAT 12:40!14 +MAT 12:40!15 +MAT 12:40!16 +MAT 12:40!17 +MAT 12:40!18 +MAT 12:40!19 +MAT 12:40!20 +MAT 12:40!21 +MAT 12:40!22 +MAT 12:40!23 +MAT 12:40!24 +MAT 12:40!25 +MAT 12:40!26 +MAT 12:40!27 +MAT 12:40!28 +MAT 12:40!29 +MAT 12:40!30 +MAT 12:41!1 +MAT 12:41!2 +MAT 12:41!3 +MAT 12:41!4 +MAT 12:41!5 +MAT 12:41!6 +MAT 12:41!7 +MAT 12:41!8 +MAT 12:41!9 +MAT 12:41!10 +MAT 12:41!11 +MAT 12:41!12 +MAT 12:41!13 +MAT 12:41!14 +MAT 12:41!15 +MAT 12:41!16 +MAT 12:41!17 +MAT 12:41!18 +MAT 12:41!19 +MAT 12:41!20 +MAT 12:41!21 +MAT 12:41!22 +MAT 12:41!23 +MAT 12:41!24 +MAT 12:42!1 +MAT 12:42!2 +MAT 12:42!3 +MAT 12:42!4 +MAT 12:42!5 +MAT 12:42!6 +MAT 12:42!7 +MAT 12:42!8 +MAT 12:42!9 +MAT 12:42!10 +MAT 12:42!11 +MAT 12:42!12 +MAT 12:42!13 +MAT 12:42!14 +MAT 12:42!15 +MAT 12:42!16 +MAT 12:42!17 +MAT 12:42!18 +MAT 12:42!19 +MAT 12:42!20 +MAT 12:42!21 +MAT 12:42!22 +MAT 12:42!23 +MAT 12:42!24 +MAT 12:42!25 +MAT 12:42!26 +MAT 12:42!27 +MAT 12:42!28 +MAT 12:42!29 +MAT 12:43!2 +MAT 12:43!1 +MAT 12:43!3 +MAT 12:43!4 +MAT 12:43!5 +MAT 12:43!6 +MAT 12:43!7 +MAT 12:43!8 +MAT 12:43!9 +MAT 12:43!10 +MAT 12:43!11 +MAT 12:43!12 +MAT 12:43!13 +MAT 12:43!14 +MAT 12:43!15 +MAT 12:43!16 +MAT 12:43!17 +MAT 12:43!18 +MAT 12:44!1 +MAT 12:44!2 +MAT 12:44!3 +MAT 12:44!4 +MAT 12:44!5 +MAT 12:44!6 +MAT 12:44!7 +MAT 12:44!8 +MAT 12:44!9 +MAT 12:44!10 +MAT 12:44!11 +MAT 12:44!12 +MAT 12:44!13 +MAT 12:44!14 +MAT 12:44!15 +MAT 12:44!16 +MAT 12:44!17 +MAT 12:45!1 +MAT 12:45!2 +MAT 12:45!3 +MAT 12:45!4 +MAT 12:45!5 +MAT 12:45!6 +MAT 12:45!7 +MAT 12:45!8 +MAT 12:45!9 +MAT 12:45!10 +MAT 12:45!11 +MAT 12:45!12 +MAT 12:45!13 +MAT 12:45!14 +MAT 12:45!15 +MAT 12:45!16 +MAT 12:45!17 +MAT 12:45!18 +MAT 12:45!19 +MAT 12:45!20 +MAT 12:45!21 +MAT 12:45!22 +MAT 12:45!23 +MAT 12:45!24 +MAT 12:45!25 +MAT 12:45!26 +MAT 12:45!27 +MAT 12:45!28 +MAT 12:45!29 +MAT 12:45!30 +MAT 12:45!31 +MAT 12:45!32 +MAT 12:45!33 +MAT 12:46!1 +MAT 12:46!2 +MAT 12:46!3 +MAT 12:46!4 +MAT 12:46!5 +MAT 12:46!6 +MAT 12:46!7 +MAT 12:46!8 +MAT 12:46!9 +MAT 12:46!10 +MAT 12:46!11 +MAT 12:46!12 +MAT 12:46!13 +MAT 12:46!14 +MAT 12:46!15 +MAT 12:46!16 +MAT 12:46!17 +MAT 12:47!2 +MAT 12:47!1 +MAT 12:47!3 +MAT 12:47!4 +MAT 12:47!5 +MAT 12:47!6 +MAT 12:47!7 +MAT 12:47!8 +MAT 12:47!9 +MAT 12:47!10 +MAT 12:47!11 +MAT 12:47!12 +MAT 12:47!13 +MAT 12:47!14 +MAT 12:47!15 +MAT 12:47!16 +MAT 12:47!17 +MAT 12:48!2 +MAT 12:48!1 +MAT 12:48!3 +MAT 12:48!4 +MAT 12:48!5 +MAT 12:48!6 +MAT 12:48!7 +MAT 12:48!8 +MAT 12:48!9 +MAT 12:48!10 +MAT 12:48!11 +MAT 12:48!12 +MAT 12:48!13 +MAT 12:48!14 +MAT 12:48!15 +MAT 12:48!16 +MAT 12:48!17 +MAT 12:48!18 +MAT 12:49!1 +MAT 12:49!2 +MAT 12:49!3 +MAT 12:49!4 +MAT 12:49!5 +MAT 12:49!6 +MAT 12:49!7 +MAT 12:49!8 +MAT 12:49!9 +MAT 12:49!10 +MAT 12:49!11 +MAT 12:49!12 +MAT 12:49!13 +MAT 12:49!14 +MAT 12:49!15 +MAT 12:49!16 +MAT 12:49!17 +MAT 12:49!18 +MAT 12:50!2 +MAT 12:50!3 +MAT 12:50!1 +MAT 12:50!4 +MAT 12:50!5 +MAT 12:50!6 +MAT 12:50!7 +MAT 12:50!8 +MAT 12:50!9 +MAT 12:50!10 +MAT 12:50!11 +MAT 12:50!12 +MAT 12:50!13 +MAT 12:50!14 +MAT 12:50!15 +MAT 12:50!16 +MAT 12:50!17 +MAT 12:50!18 +MAT 12:50!19 +MAT 12:50!20 +MAT 13:1!1 +MAT 13:1!2 +MAT 13:1!3 +MAT 13:1!4 +MAT 13:1!6 +MAT 13:1!7 +MAT 13:1!5 +MAT 13:1!8 +MAT 13:1!9 +MAT 13:1!10 +MAT 13:1!11 +MAT 13:1!12 +MAT 13:1!13 +MAT 13:2!1 +MAT 13:2!2 +MAT 13:2!3 +MAT 13:2!4 +MAT 13:2!5 +MAT 13:2!6 +MAT 13:2!7 +MAT 13:2!8 +MAT 13:2!9 +MAT 13:2!10 +MAT 13:2!11 +MAT 13:2!12 +MAT 13:2!13 +MAT 13:2!14 +MAT 13:2!15 +MAT 13:2!16 +MAT 13:2!17 +MAT 13:2!18 +MAT 13:2!19 +MAT 13:2!20 +MAT 13:3!1 +MAT 13:3!2 +MAT 13:3!3 +MAT 13:3!4 +MAT 13:3!5 +MAT 13:3!6 +MAT 13:3!7 +MAT 13:3!8 +MAT 13:3!9 +MAT 13:3!10 +MAT 13:3!11 +MAT 13:3!12 +MAT 13:3!13 +MAT 13:4!1 +MAT 13:4!2 +MAT 13:4!3 +MAT 13:4!4 +MAT 13:4!5 +MAT 13:4!7 +MAT 13:4!6 +MAT 13:4!8 +MAT 13:4!9 +MAT 13:4!10 +MAT 13:4!11 +MAT 13:4!12 +MAT 13:4!13 +MAT 13:4!14 +MAT 13:4!15 +MAT 13:4!16 +MAT 13:4!17 +MAT 13:5!2 +MAT 13:5!1 +MAT 13:5!3 +MAT 13:5!4 +MAT 13:5!5 +MAT 13:5!6 +MAT 13:5!7 +MAT 13:5!8 +MAT 13:5!9 +MAT 13:5!10 +MAT 13:5!11 +MAT 13:5!12 +MAT 13:5!13 +MAT 13:5!14 +MAT 13:5!15 +MAT 13:5!16 +MAT 13:5!17 +MAT 13:5!18 +MAT 13:5!19 +MAT 13:5!20 +MAT 13:6!2 +MAT 13:6!1 +MAT 13:6!3 +MAT 13:6!4 +MAT 13:6!5 +MAT 13:6!6 +MAT 13:6!7 +MAT 13:6!8 +MAT 13:6!9 +MAT 13:6!10 +MAT 13:6!11 +MAT 13:7!2 +MAT 13:7!1 +MAT 13:7!3 +MAT 13:7!4 +MAT 13:7!5 +MAT 13:7!6 +MAT 13:7!7 +MAT 13:7!8 +MAT 13:7!9 +MAT 13:7!10 +MAT 13:7!11 +MAT 13:7!12 +MAT 13:7!13 +MAT 13:8!2 +MAT 13:8!1 +MAT 13:8!3 +MAT 13:8!4 +MAT 13:8!5 +MAT 13:8!6 +MAT 13:8!7 +MAT 13:8!8 +MAT 13:8!9 +MAT 13:8!10 +MAT 13:8!11 +MAT 13:8!13 +MAT 13:8!12 +MAT 13:8!14 +MAT 13:8!16 +MAT 13:8!15 +MAT 13:8!17 +MAT 13:8!19 +MAT 13:8!18 +MAT 13:8!20 +MAT 13:9!1 +MAT 13:9!2 +MAT 13:9!3 +MAT 13:9!4 +MAT 13:10!1 +MAT 13:10!2 +MAT 13:10!3 +MAT 13:10!4 +MAT 13:10!5 +MAT 13:10!6 +MAT 13:10!7 +MAT 13:10!8 +MAT 13:10!9 +MAT 13:10!10 +MAT 13:10!11 +MAT 13:10!12 +MAT 13:11!2 +MAT 13:11!1 +MAT 13:11!3 +MAT 13:11!4 +MAT 13:11!5 +MAT 13:11!6 +MAT 13:11!7 +MAT 13:11!8 +MAT 13:11!9 +MAT 13:11!10 +MAT 13:11!11 +MAT 13:11!12 +MAT 13:11!13 +MAT 13:11!14 +MAT 13:11!16 +MAT 13:11!15 +MAT 13:11!17 +MAT 13:11!18 +MAT 13:12!2 +MAT 13:12!1 +MAT 13:12!3 +MAT 13:12!4 +MAT 13:12!5 +MAT 13:12!6 +MAT 13:12!7 +MAT 13:12!9 +MAT 13:12!8 +MAT 13:12!10 +MAT 13:12!11 +MAT 13:12!12 +MAT 13:12!13 +MAT 13:12!14 +MAT 13:12!15 +MAT 13:12!16 +MAT 13:12!17 +MAT 13:13!1 +MAT 13:13!2 +MAT 13:13!3 +MAT 13:13!4 +MAT 13:13!5 +MAT 13:13!6 +MAT 13:13!7 +MAT 13:13!8 +MAT 13:13!9 +MAT 13:13!10 +MAT 13:13!11 +MAT 13:13!12 +MAT 13:13!13 +MAT 13:13!14 +MAT 13:13!15 +MAT 13:13!16 +MAT 13:14!1 +MAT 13:14!2 +MAT 13:14!3 +MAT 13:14!4 +MAT 13:14!5 +MAT 13:14!6 +MAT 13:14!7 +MAT 13:14!8 +MAT 13:14!9 +MAT 13:14!10 +MAT 13:14!11 +MAT 13:14!12 +MAT 13:14!13 +MAT 13:14!14 +MAT 13:14!15 +MAT 13:14!16 +MAT 13:14!17 +MAT 13:14!18 +MAT 13:14!19 +MAT 13:14!20 +MAT 13:14!21 +MAT 13:15!2 +MAT 13:15!1 +MAT 13:15!3 +MAT 13:15!4 +MAT 13:15!5 +MAT 13:15!6 +MAT 13:15!7 +MAT 13:15!8 +MAT 13:15!9 +MAT 13:15!10 +MAT 13:15!11 +MAT 13:15!12 +MAT 13:15!13 +MAT 13:15!14 +MAT 13:15!15 +MAT 13:15!16 +MAT 13:15!17 +MAT 13:15!18 +MAT 13:15!19 +MAT 13:15!20 +MAT 13:15!21 +MAT 13:15!22 +MAT 13:15!23 +MAT 13:15!24 +MAT 13:15!25 +MAT 13:15!26 +MAT 13:15!27 +MAT 13:15!28 +MAT 13:15!29 +MAT 13:15!30 +MAT 13:15!31 +MAT 13:15!32 +MAT 13:15!33 +MAT 13:15!34 +MAT 13:15!35 +MAT 13:16!2 +MAT 13:16!3 +MAT 13:16!1 +MAT 13:16!4 +MAT 13:16!5 +MAT 13:16!6 +MAT 13:16!7 +MAT 13:16!8 +MAT 13:16!9 +MAT 13:16!10 +MAT 13:16!11 +MAT 13:16!12 +MAT 13:16!13 +MAT 13:17!2 +MAT 13:17!1 +MAT 13:17!3 +MAT 13:17!4 +MAT 13:17!5 +MAT 13:17!6 +MAT 13:17!7 +MAT 13:17!8 +MAT 13:17!9 +MAT 13:17!10 +MAT 13:17!11 +MAT 13:17!12 +MAT 13:17!13 +MAT 13:17!14 +MAT 13:17!15 +MAT 13:17!16 +MAT 13:17!17 +MAT 13:17!18 +MAT 13:17!19 +MAT 13:17!20 +MAT 13:17!21 +MAT 13:17!22 +MAT 13:17!23 +MAT 13:18!2 +MAT 13:18!1 +MAT 13:18!3 +MAT 13:18!4 +MAT 13:18!5 +MAT 13:18!6 +MAT 13:18!7 +MAT 13:19!1 +MAT 13:19!2 +MAT 13:19!3 +MAT 13:19!4 +MAT 13:19!5 +MAT 13:19!6 +MAT 13:19!7 +MAT 13:19!8 +MAT 13:19!9 +MAT 13:19!10 +MAT 13:19!11 +MAT 13:19!12 +MAT 13:19!13 +MAT 13:19!14 +MAT 13:19!15 +MAT 13:19!16 +MAT 13:19!17 +MAT 13:19!18 +MAT 13:19!19 +MAT 13:19!20 +MAT 13:19!21 +MAT 13:19!22 +MAT 13:19!23 +MAT 13:19!24 +MAT 13:19!25 +MAT 13:19!26 +MAT 13:19!27 +MAT 13:20!2 +MAT 13:20!1 +MAT 13:20!3 +MAT 13:20!4 +MAT 13:20!5 +MAT 13:20!6 +MAT 13:20!7 +MAT 13:20!8 +MAT 13:20!9 +MAT 13:20!10 +MAT 13:20!11 +MAT 13:20!12 +MAT 13:20!13 +MAT 13:20!14 +MAT 13:20!15 +MAT 13:20!16 +MAT 13:20!17 +MAT 13:20!18 +MAT 13:21!3 +MAT 13:21!1 +MAT 13:21!2 +MAT 13:21!4 +MAT 13:21!5 +MAT 13:21!6 +MAT 13:21!7 +MAT 13:21!8 +MAT 13:21!9 +MAT 13:21!11 +MAT 13:21!10 +MAT 13:21!12 +MAT 13:21!13 +MAT 13:21!14 +MAT 13:21!15 +MAT 13:21!16 +MAT 13:21!17 +MAT 13:21!18 +MAT 13:21!19 +MAT 13:22!2 +MAT 13:22!1 +MAT 13:22!3 +MAT 13:22!4 +MAT 13:22!5 +MAT 13:22!6 +MAT 13:22!7 +MAT 13:22!8 +MAT 13:22!9 +MAT 13:22!10 +MAT 13:22!11 +MAT 13:22!12 +MAT 13:22!13 +MAT 13:22!14 +MAT 13:22!15 +MAT 13:22!16 +MAT 13:22!17 +MAT 13:22!18 +MAT 13:22!19 +MAT 13:22!20 +MAT 13:22!21 +MAT 13:22!22 +MAT 13:22!23 +MAT 13:22!24 +MAT 13:22!25 +MAT 13:22!26 +MAT 13:22!27 +MAT 13:22!28 +MAT 13:23!2 +MAT 13:23!1 +MAT 13:23!3 +MAT 13:23!4 +MAT 13:23!5 +MAT 13:23!6 +MAT 13:23!7 +MAT 13:23!8 +MAT 13:23!9 +MAT 13:23!10 +MAT 13:23!11 +MAT 13:23!12 +MAT 13:23!13 +MAT 13:23!14 +MAT 13:23!15 +MAT 13:23!17 +MAT 13:23!16 +MAT 13:23!18 +MAT 13:23!19 +MAT 13:23!22 +MAT 13:23!20 +MAT 13:23!21 +MAT 13:23!23 +MAT 13:23!25 +MAT 13:23!24 +MAT 13:23!26 +MAT 13:23!28 +MAT 13:23!27 +MAT 13:23!29 +MAT 13:24!1 +MAT 13:24!2 +MAT 13:24!3 +MAT 13:24!4 +MAT 13:24!5 +MAT 13:24!6 +MAT 13:24!7 +MAT 13:24!8 +MAT 13:24!9 +MAT 13:24!10 +MAT 13:24!11 +MAT 13:24!12 +MAT 13:24!13 +MAT 13:24!14 +MAT 13:24!15 +MAT 13:24!16 +MAT 13:24!17 +MAT 13:24!18 +MAT 13:25!2 +MAT 13:25!1 +MAT 13:25!3 +MAT 13:25!4 +MAT 13:25!5 +MAT 13:25!6 +MAT 13:25!7 +MAT 13:25!8 +MAT 13:25!9 +MAT 13:25!10 +MAT 13:25!11 +MAT 13:25!12 +MAT 13:25!13 +MAT 13:25!14 +MAT 13:25!15 +MAT 13:25!16 +MAT 13:25!17 +MAT 13:25!18 +MAT 13:25!19 +MAT 13:26!2 +MAT 13:26!1 +MAT 13:26!3 +MAT 13:26!4 +MAT 13:26!5 +MAT 13:26!6 +MAT 13:26!7 +MAT 13:26!8 +MAT 13:26!9 +MAT 13:26!10 +MAT 13:26!11 +MAT 13:26!12 +MAT 13:26!13 +MAT 13:27!2 +MAT 13:27!1 +MAT 13:27!3 +MAT 13:27!4 +MAT 13:27!5 +MAT 13:27!6 +MAT 13:27!7 +MAT 13:27!8 +MAT 13:27!9 +MAT 13:27!10 +MAT 13:27!11 +MAT 13:27!12 +MAT 13:27!13 +MAT 13:27!14 +MAT 13:27!15 +MAT 13:27!16 +MAT 13:27!17 +MAT 13:27!19 +MAT 13:27!18 +MAT 13:27!20 +MAT 13:27!21 +MAT 13:28!2 +MAT 13:28!1 +MAT 13:28!3 +MAT 13:28!4 +MAT 13:28!5 +MAT 13:28!6 +MAT 13:28!7 +MAT 13:28!8 +MAT 13:28!10 +MAT 13:28!9 +MAT 13:28!11 +MAT 13:28!12 +MAT 13:28!13 +MAT 13:28!15 +MAT 13:28!14 +MAT 13:28!16 +MAT 13:28!17 +MAT 13:28!18 +MAT 13:29!2 +MAT 13:29!1 +MAT 13:29!3 +MAT 13:29!4 +MAT 13:29!5 +MAT 13:29!6 +MAT 13:29!7 +MAT 13:29!8 +MAT 13:29!9 +MAT 13:29!10 +MAT 13:29!11 +MAT 13:29!12 +MAT 13:29!13 +MAT 13:29!14 +MAT 13:30!1 +MAT 13:30!2 +MAT 13:30!3 +MAT 13:30!4 +MAT 13:30!5 +MAT 13:30!6 +MAT 13:30!7 +MAT 13:30!8 +MAT 13:30!9 +MAT 13:30!10 +MAT 13:30!11 +MAT 13:30!12 +MAT 13:30!13 +MAT 13:30!14 +MAT 13:30!15 +MAT 13:30!16 +MAT 13:30!17 +MAT 13:30!18 +MAT 13:30!19 +MAT 13:30!20 +MAT 13:30!21 +MAT 13:30!22 +MAT 13:30!23 +MAT 13:30!24 +MAT 13:30!25 +MAT 13:30!26 +MAT 13:30!27 +MAT 13:30!29 +MAT 13:30!28 +MAT 13:30!30 +MAT 13:30!31 +MAT 13:30!32 +MAT 13:30!33 +MAT 13:30!34 +MAT 13:30!35 +MAT 13:31!1 +MAT 13:31!2 +MAT 13:31!3 +MAT 13:31!4 +MAT 13:31!5 +MAT 13:31!6 +MAT 13:31!7 +MAT 13:31!8 +MAT 13:31!9 +MAT 13:31!10 +MAT 13:31!11 +MAT 13:31!12 +MAT 13:31!13 +MAT 13:31!14 +MAT 13:31!15 +MAT 13:31!16 +MAT 13:31!17 +MAT 13:31!18 +MAT 13:31!19 +MAT 13:31!20 +MAT 13:31!21 +MAT 13:32!3 +MAT 13:32!1 +MAT 13:32!2 +MAT 13:32!4 +MAT 13:32!5 +MAT 13:32!6 +MAT 13:32!7 +MAT 13:32!9 +MAT 13:32!8 +MAT 13:32!10 +MAT 13:32!11 +MAT 13:32!12 +MAT 13:32!13 +MAT 13:32!14 +MAT 13:32!15 +MAT 13:32!16 +MAT 13:32!17 +MAT 13:32!18 +MAT 13:32!19 +MAT 13:32!20 +MAT 13:32!21 +MAT 13:32!22 +MAT 13:32!23 +MAT 13:32!24 +MAT 13:32!25 +MAT 13:32!26 +MAT 13:32!27 +MAT 13:32!28 +MAT 13:32!29 +MAT 13:33!1 +MAT 13:33!2 +MAT 13:33!3 +MAT 13:33!4 +MAT 13:33!5 +MAT 13:33!6 +MAT 13:33!7 +MAT 13:33!8 +MAT 13:33!9 +MAT 13:33!10 +MAT 13:33!11 +MAT 13:33!12 +MAT 13:33!13 +MAT 13:33!14 +MAT 13:33!15 +MAT 13:33!16 +MAT 13:33!17 +MAT 13:33!18 +MAT 13:33!19 +MAT 13:33!20 +MAT 13:33!21 +MAT 13:33!22 +MAT 13:33!23 +MAT 13:34!1 +MAT 13:34!2 +MAT 13:34!3 +MAT 13:34!4 +MAT 13:34!5 +MAT 13:34!6 +MAT 13:34!7 +MAT 13:34!8 +MAT 13:34!9 +MAT 13:34!10 +MAT 13:34!11 +MAT 13:34!12 +MAT 13:34!13 +MAT 13:34!14 +MAT 13:34!15 +MAT 13:35!1 +MAT 13:35!2 +MAT 13:35!3 +MAT 13:35!4 +MAT 13:35!5 +MAT 13:35!6 +MAT 13:35!7 +MAT 13:35!8 +MAT 13:35!9 +MAT 13:35!10 +MAT 13:35!11 +MAT 13:35!12 +MAT 13:35!13 +MAT 13:35!14 +MAT 13:35!15 +MAT 13:35!16 +MAT 13:35!17 +MAT 13:35!18 +MAT 13:36!1 +MAT 13:36!2 +MAT 13:36!3 +MAT 13:36!4 +MAT 13:36!5 +MAT 13:36!6 +MAT 13:36!7 +MAT 13:36!8 +MAT 13:36!9 +MAT 13:36!10 +MAT 13:36!11 +MAT 13:36!12 +MAT 13:36!13 +MAT 13:36!14 +MAT 13:36!15 +MAT 13:36!16 +MAT 13:36!17 +MAT 13:36!18 +MAT 13:36!19 +MAT 13:36!20 +MAT 13:36!21 +MAT 13:36!22 +MAT 13:36!23 +MAT 13:37!2 +MAT 13:37!1 +MAT 13:37!3 +MAT 13:37!4 +MAT 13:37!5 +MAT 13:37!6 +MAT 13:37!7 +MAT 13:37!8 +MAT 13:37!9 +MAT 13:37!10 +MAT 13:37!11 +MAT 13:37!12 +MAT 13:37!13 +MAT 13:37!14 +MAT 13:38!2 +MAT 13:38!1 +MAT 13:38!3 +MAT 13:38!4 +MAT 13:38!5 +MAT 13:38!6 +MAT 13:38!8 +MAT 13:38!7 +MAT 13:38!9 +MAT 13:38!10 +MAT 13:38!11 +MAT 13:38!12 +MAT 13:38!13 +MAT 13:38!14 +MAT 13:38!15 +MAT 13:38!16 +MAT 13:38!18 +MAT 13:38!17 +MAT 13:38!19 +MAT 13:38!20 +MAT 13:38!21 +MAT 13:38!22 +MAT 13:38!23 +MAT 13:38!24 +MAT 13:39!2 +MAT 13:39!1 +MAT 13:39!3 +MAT 13:39!4 +MAT 13:39!5 +MAT 13:39!6 +MAT 13:39!7 +MAT 13:39!8 +MAT 13:39!9 +MAT 13:39!11 +MAT 13:39!10 +MAT 13:39!12 +MAT 13:39!13 +MAT 13:39!14 +MAT 13:39!15 +MAT 13:39!17 +MAT 13:39!16 +MAT 13:39!18 +MAT 13:39!19 +MAT 13:39!20 +MAT 13:40!2 +MAT 13:40!1 +MAT 13:40!3 +MAT 13:40!4 +MAT 13:40!5 +MAT 13:40!6 +MAT 13:40!7 +MAT 13:40!8 +MAT 13:40!9 +MAT 13:40!10 +MAT 13:40!11 +MAT 13:40!12 +MAT 13:40!13 +MAT 13:40!14 +MAT 13:40!15 +MAT 13:41!1 +MAT 13:41!2 +MAT 13:41!3 +MAT 13:41!4 +MAT 13:41!5 +MAT 13:41!6 +MAT 13:41!7 +MAT 13:41!8 +MAT 13:41!9 +MAT 13:41!10 +MAT 13:41!11 +MAT 13:41!12 +MAT 13:41!13 +MAT 13:41!14 +MAT 13:41!15 +MAT 13:41!16 +MAT 13:41!17 +MAT 13:41!18 +MAT 13:41!19 +MAT 13:41!20 +MAT 13:41!21 +MAT 13:41!22 +MAT 13:42!1 +MAT 13:42!2 +MAT 13:42!3 +MAT 13:42!4 +MAT 13:42!5 +MAT 13:42!6 +MAT 13:42!7 +MAT 13:42!8 +MAT 13:42!9 +MAT 13:42!10 +MAT 13:42!11 +MAT 13:42!12 +MAT 13:42!13 +MAT 13:42!14 +MAT 13:42!15 +MAT 13:42!16 +MAT 13:42!17 +MAT 13:43!1 +MAT 13:43!2 +MAT 13:43!3 +MAT 13:43!4 +MAT 13:43!8 +MAT 13:43!9 +MAT 13:43!10 +MAT 13:43!11 +MAT 13:43!12 +MAT 13:43!13 +MAT 13:43!5 +MAT 13:43!6 +MAT 13:43!7 +MAT 13:43!14 +MAT 13:43!15 +MAT 13:43!16 +MAT 13:43!17 +MAT 13:44!1 +MAT 13:44!2 +MAT 13:44!3 +MAT 13:44!4 +MAT 13:44!5 +MAT 13:44!6 +MAT 13:44!7 +MAT 13:44!8 +MAT 13:44!9 +MAT 13:44!10 +MAT 13:44!11 +MAT 13:44!12 +MAT 13:44!13 +MAT 13:44!14 +MAT 13:44!15 +MAT 13:44!16 +MAT 13:44!17 +MAT 13:44!18 +MAT 13:44!19 +MAT 13:44!20 +MAT 13:44!21 +MAT 13:44!22 +MAT 13:44!23 +MAT 13:44!24 +MAT 13:44!25 +MAT 13:44!26 +MAT 13:44!27 +MAT 13:44!28 +MAT 13:44!29 +MAT 13:44!30 +MAT 13:45!1 +MAT 13:45!2 +MAT 13:45!3 +MAT 13:45!4 +MAT 13:45!5 +MAT 13:45!6 +MAT 13:45!7 +MAT 13:45!8 +MAT 13:45!9 +MAT 13:45!10 +MAT 13:45!11 +MAT 13:46!2 +MAT 13:46!1 +MAT 13:46!3 +MAT 13:46!4 +MAT 13:46!5 +MAT 13:46!6 +MAT 13:46!7 +MAT 13:46!8 +MAT 13:46!9 +MAT 13:46!10 +MAT 13:46!11 +MAT 13:46!12 +MAT 13:46!13 +MAT 13:47!1 +MAT 13:47!2 +MAT 13:47!3 +MAT 13:47!4 +MAT 13:47!5 +MAT 13:47!6 +MAT 13:47!7 +MAT 13:47!8 +MAT 13:47!9 +MAT 13:47!10 +MAT 13:47!11 +MAT 13:47!12 +MAT 13:47!13 +MAT 13:47!14 +MAT 13:47!15 +MAT 13:47!16 +MAT 13:47!17 +MAT 13:48!1 +MAT 13:48!2 +MAT 13:48!3 +MAT 13:48!4 +MAT 13:48!5 +MAT 13:48!6 +MAT 13:48!7 +MAT 13:48!8 +MAT 13:48!9 +MAT 13:48!10 +MAT 13:48!11 +MAT 13:48!12 +MAT 13:48!13 +MAT 13:48!14 +MAT 13:48!16 +MAT 13:48!15 +MAT 13:48!17 +MAT 13:48!18 +MAT 13:48!19 +MAT 13:49!1 +MAT 13:49!2 +MAT 13:49!3 +MAT 13:49!4 +MAT 13:49!5 +MAT 13:49!6 +MAT 13:49!7 +MAT 13:49!8 +MAT 13:49!9 +MAT 13:49!10 +MAT 13:49!11 +MAT 13:49!12 +MAT 13:49!13 +MAT 13:49!14 +MAT 13:49!15 +MAT 13:49!16 +MAT 13:49!17 +MAT 13:49!18 +MAT 13:50!1 +MAT 13:50!2 +MAT 13:50!3 +MAT 13:50!4 +MAT 13:50!5 +MAT 13:50!6 +MAT 13:50!7 +MAT 13:50!8 +MAT 13:50!9 +MAT 13:50!10 +MAT 13:50!11 +MAT 13:50!12 +MAT 13:50!13 +MAT 13:50!14 +MAT 13:50!15 +MAT 13:50!16 +MAT 13:50!17 +MAT 13:51!1 +MAT 13:51!2 +MAT 13:51!3 +MAT 13:51!4 +MAT 13:51!5 +MAT 13:51!6 +MAT 13:52!2 +MAT 13:52!1 +MAT 13:52!3 +MAT 13:52!4 +MAT 13:52!5 +MAT 13:52!6 +MAT 13:52!7 +MAT 13:52!8 +MAT 13:52!9 +MAT 13:52!10 +MAT 13:52!11 +MAT 13:52!12 +MAT 13:52!13 +MAT 13:52!14 +MAT 13:52!15 +MAT 13:52!16 +MAT 13:52!17 +MAT 13:52!18 +MAT 13:52!19 +MAT 13:52!20 +MAT 13:52!21 +MAT 13:52!22 +MAT 13:52!23 +MAT 13:52!24 +MAT 13:52!25 +MAT 13:52!26 +MAT 13:53!1 +MAT 13:53!2 +MAT 13:53!3 +MAT 13:53!4 +MAT 13:53!5 +MAT 13:53!6 +MAT 13:53!7 +MAT 13:53!8 +MAT 13:53!9 +MAT 13:53!10 +MAT 13:53!11 +MAT 13:54!1 +MAT 13:54!2 +MAT 13:54!3 +MAT 13:54!4 +MAT 13:54!5 +MAT 13:54!6 +MAT 13:54!7 +MAT 13:54!8 +MAT 13:54!9 +MAT 13:54!10 +MAT 13:54!11 +MAT 13:54!12 +MAT 13:54!13 +MAT 13:54!14 +MAT 13:54!15 +MAT 13:54!16 +MAT 13:54!17 +MAT 13:54!18 +MAT 13:54!19 +MAT 13:54!20 +MAT 13:54!21 +MAT 13:54!22 +MAT 13:54!23 +MAT 13:54!24 +MAT 13:54!25 +MAT 13:55!1 +MAT 13:55!2 +MAT 13:55!3 +MAT 13:55!4 +MAT 13:55!5 +MAT 13:55!6 +MAT 13:55!7 +MAT 13:55!8 +MAT 13:55!9 +MAT 13:55!10 +MAT 13:55!11 +MAT 13:55!12 +MAT 13:55!13 +MAT 13:55!14 +MAT 13:55!15 +MAT 13:55!16 +MAT 13:55!17 +MAT 13:55!18 +MAT 13:55!19 +MAT 13:55!20 +MAT 13:55!21 +MAT 13:55!22 +MAT 13:55!23 +MAT 13:55!24 +MAT 13:56!1 +MAT 13:56!2 +MAT 13:56!3 +MAT 13:56!4 +MAT 13:56!5 +MAT 13:56!6 +MAT 13:56!7 +MAT 13:56!8 +MAT 13:56!9 +MAT 13:56!11 +MAT 13:56!10 +MAT 13:56!12 +MAT 13:56!13 +MAT 13:56!14 +MAT 13:57!1 +MAT 13:57!2 +MAT 13:57!3 +MAT 13:57!4 +MAT 13:57!6 +MAT 13:57!5 +MAT 13:57!7 +MAT 13:57!8 +MAT 13:57!9 +MAT 13:57!10 +MAT 13:57!11 +MAT 13:57!12 +MAT 13:57!13 +MAT 13:57!14 +MAT 13:57!15 +MAT 13:57!16 +MAT 13:57!17 +MAT 13:57!18 +MAT 13:57!19 +MAT 13:57!20 +MAT 13:57!21 +MAT 13:57!22 +MAT 13:57!23 +MAT 13:58!1 +MAT 13:58!2 +MAT 13:58!3 +MAT 13:58!4 +MAT 13:58!5 +MAT 13:58!6 +MAT 13:58!7 +MAT 13:58!8 +MAT 13:58!9 +MAT 13:58!10 +MAT 14:1!1 +MAT 14:1!2 +MAT 14:1!3 +MAT 14:1!4 +MAT 14:1!5 +MAT 14:1!6 +MAT 14:1!7 +MAT 14:1!8 +MAT 14:1!9 +MAT 14:1!10 +MAT 14:1!11 +MAT 14:2!1 +MAT 14:2!2 +MAT 14:2!3 +MAT 14:2!4 +MAT 14:2!5 +MAT 14:2!6 +MAT 14:2!7 +MAT 14:2!8 +MAT 14:2!9 +MAT 14:2!10 +MAT 14:2!11 +MAT 14:2!12 +MAT 14:2!13 +MAT 14:2!14 +MAT 14:2!15 +MAT 14:2!16 +MAT 14:2!17 +MAT 14:2!18 +MAT 14:2!19 +MAT 14:2!20 +MAT 14:2!21 +MAT 14:2!22 +MAT 14:2!23 +MAT 14:3!2 +MAT 14:3!1 +MAT 14:3!3 +MAT 14:3!4 +MAT 14:3!5 +MAT 14:3!6 +MAT 14:3!7 +MAT 14:3!8 +MAT 14:3!9 +MAT 14:3!10 +MAT 14:3!11 +MAT 14:3!12 +MAT 14:3!13 +MAT 14:3!14 +MAT 14:3!15 +MAT 14:3!16 +MAT 14:3!17 +MAT 14:3!18 +MAT 14:3!19 +MAT 14:4!2 +MAT 14:4!1 +MAT 14:4!3 +MAT 14:4!4 +MAT 14:4!5 +MAT 14:4!6 +MAT 14:4!7 +MAT 14:4!8 +MAT 14:4!9 +MAT 14:4!10 +MAT 14:5!1 +MAT 14:5!2 +MAT 14:5!3 +MAT 14:5!4 +MAT 14:5!5 +MAT 14:5!6 +MAT 14:5!7 +MAT 14:5!8 +MAT 14:5!9 +MAT 14:5!10 +MAT 14:5!11 +MAT 14:5!12 +MAT 14:6!2 +MAT 14:6!1 +MAT 14:6!4 +MAT 14:6!5 +MAT 14:6!3 +MAT 14:6!6 +MAT 14:6!7 +MAT 14:6!8 +MAT 14:6!9 +MAT 14:6!10 +MAT 14:6!11 +MAT 14:6!12 +MAT 14:6!13 +MAT 14:6!14 +MAT 14:6!15 +MAT 14:6!16 +MAT 14:6!17 +MAT 14:7!1 +MAT 14:7!2 +MAT 14:7!3 +MAT 14:7!4 +MAT 14:7!5 +MAT 14:7!6 +MAT 14:7!8 +MAT 14:7!7 +MAT 14:7!9 +MAT 14:8!2 +MAT 14:8!1 +MAT 14:8!3 +MAT 14:8!4 +MAT 14:8!5 +MAT 14:8!6 +MAT 14:8!7 +MAT 14:8!10 +MAT 14:8!8 +MAT 14:8!9 +MAT 14:8!11 +MAT 14:8!12 +MAT 14:8!13 +MAT 14:8!14 +MAT 14:8!15 +MAT 14:8!16 +MAT 14:8!17 +MAT 14:8!18 +MAT 14:9!1 +MAT 14:9!2 +MAT 14:9!3 +MAT 14:9!4 +MAT 14:9!5 +MAT 14:9!6 +MAT 14:9!7 +MAT 14:9!8 +MAT 14:9!9 +MAT 14:9!10 +MAT 14:9!11 +MAT 14:9!12 +MAT 14:10!1 +MAT 14:10!2 +MAT 14:10!3 +MAT 14:10!4 +MAT 14:10!5 +MAT 14:10!6 +MAT 14:10!7 +MAT 14:11!1 +MAT 14:11!2 +MAT 14:11!3 +MAT 14:11!4 +MAT 14:11!5 +MAT 14:11!6 +MAT 14:11!7 +MAT 14:11!8 +MAT 14:11!9 +MAT 14:11!10 +MAT 14:11!11 +MAT 14:11!12 +MAT 14:11!13 +MAT 14:11!14 +MAT 14:11!15 +MAT 14:11!16 +MAT 14:12!1 +MAT 14:12!2 +MAT 14:12!3 +MAT 14:12!4 +MAT 14:12!5 +MAT 14:12!6 +MAT 14:12!7 +MAT 14:12!8 +MAT 14:12!9 +MAT 14:12!10 +MAT 14:12!11 +MAT 14:12!12 +MAT 14:12!13 +MAT 14:12!14 +MAT 14:12!15 +MAT 14:12!16 +MAT 14:13!2 +MAT 14:13!1 +MAT 14:13!3 +MAT 14:13!4 +MAT 14:13!5 +MAT 14:13!6 +MAT 14:13!7 +MAT 14:13!8 +MAT 14:13!9 +MAT 14:13!10 +MAT 14:13!11 +MAT 14:13!12 +MAT 14:13!13 +MAT 14:13!14 +MAT 14:13!15 +MAT 14:13!16 +MAT 14:13!17 +MAT 14:13!18 +MAT 14:13!19 +MAT 14:13!20 +MAT 14:13!21 +MAT 14:13!22 +MAT 14:13!23 +MAT 14:14!1 +MAT 14:14!2 +MAT 14:14!3 +MAT 14:14!4 +MAT 14:14!5 +MAT 14:14!6 +MAT 14:14!7 +MAT 14:14!8 +MAT 14:14!9 +MAT 14:14!10 +MAT 14:14!11 +MAT 14:14!12 +MAT 14:14!13 +MAT 14:14!14 +MAT 14:15!2 +MAT 14:15!1 +MAT 14:15!3 +MAT 14:15!4 +MAT 14:15!5 +MAT 14:15!6 +MAT 14:15!7 +MAT 14:15!8 +MAT 14:15!9 +MAT 14:15!10 +MAT 14:15!11 +MAT 14:15!12 +MAT 14:15!13 +MAT 14:15!14 +MAT 14:15!15 +MAT 14:15!16 +MAT 14:15!17 +MAT 14:15!19 +MAT 14:15!18 +MAT 14:15!20 +MAT 14:15!21 +MAT 14:15!22 +MAT 14:15!23 +MAT 14:15!24 +MAT 14:15!25 +MAT 14:15!26 +MAT 14:15!27 +MAT 14:15!28 +MAT 14:15!29 +MAT 14:16!2 +MAT 14:16!1 +MAT 14:16!3 +MAT 14:16!4 +MAT 14:16!5 +MAT 14:16!6 +MAT 14:16!7 +MAT 14:16!8 +MAT 14:16!9 +MAT 14:16!10 +MAT 14:16!11 +MAT 14:16!12 +MAT 14:16!13 +MAT 14:17!2 +MAT 14:17!1 +MAT 14:17!3 +MAT 14:17!4 +MAT 14:17!5 +MAT 14:17!6 +MAT 14:17!7 +MAT 14:17!8 +MAT 14:17!9 +MAT 14:17!10 +MAT 14:17!11 +MAT 14:17!12 +MAT 14:17!13 +MAT 14:17!14 +MAT 14:18!2 +MAT 14:18!1 +MAT 14:18!3 +MAT 14:18!4 +MAT 14:18!5 +MAT 14:18!6 +MAT 14:18!7 +MAT 14:19!1 +MAT 14:19!2 +MAT 14:19!3 +MAT 14:19!4 +MAT 14:19!5 +MAT 14:19!6 +MAT 14:19!7 +MAT 14:19!8 +MAT 14:19!9 +MAT 14:19!10 +MAT 14:19!11 +MAT 14:19!12 +MAT 14:19!13 +MAT 14:19!14 +MAT 14:19!15 +MAT 14:19!16 +MAT 14:19!17 +MAT 14:19!18 +MAT 14:19!19 +MAT 14:19!20 +MAT 14:19!21 +MAT 14:19!22 +MAT 14:19!23 +MAT 14:19!24 +MAT 14:19!25 +MAT 14:19!26 +MAT 14:19!27 +MAT 14:19!28 +MAT 14:19!30 +MAT 14:19!29 +MAT 14:19!31 +MAT 14:19!32 +MAT 14:19!33 +MAT 14:20!1 +MAT 14:20!2 +MAT 14:20!3 +MAT 14:20!4 +MAT 14:20!5 +MAT 14:20!6 +MAT 14:20!7 +MAT 14:20!8 +MAT 14:20!9 +MAT 14:20!10 +MAT 14:20!11 +MAT 14:20!12 +MAT 14:20!13 +MAT 14:20!14 +MAT 14:21!2 +MAT 14:21!1 +MAT 14:21!3 +MAT 14:21!4 +MAT 14:21!5 +MAT 14:21!6 +MAT 14:21!7 +MAT 14:21!8 +MAT 14:21!9 +MAT 14:21!10 +MAT 14:21!11 +MAT 14:22!1 +MAT 14:22!2 +MAT 14:22!3 +MAT 14:22!4 +MAT 14:22!5 +MAT 14:22!6 +MAT 14:22!7 +MAT 14:22!8 +MAT 14:22!9 +MAT 14:22!10 +MAT 14:22!11 +MAT 14:22!12 +MAT 14:22!13 +MAT 14:22!14 +MAT 14:22!15 +MAT 14:22!16 +MAT 14:22!17 +MAT 14:22!18 +MAT 14:22!19 +MAT 14:22!20 +MAT 14:23!1 +MAT 14:23!2 +MAT 14:23!3 +MAT 14:23!4 +MAT 14:23!5 +MAT 14:23!6 +MAT 14:23!7 +MAT 14:23!8 +MAT 14:23!9 +MAT 14:23!10 +MAT 14:23!11 +MAT 14:23!13 +MAT 14:23!12 +MAT 14:23!14 +MAT 14:23!15 +MAT 14:23!16 +MAT 14:23!17 +MAT 14:24!2 +MAT 14:24!1 +MAT 14:24!3 +MAT 14:24!4 +MAT 14:24!5 +MAT 14:24!6 +MAT 14:24!7 +MAT 14:24!8 +MAT 14:24!9 +MAT 14:24!10 +MAT 14:24!11 +MAT 14:24!12 +MAT 14:24!13 +MAT 14:24!14 +MAT 14:24!16 +MAT 14:24!15 +MAT 14:24!17 +MAT 14:24!18 +MAT 14:24!19 +MAT 14:25!2 +MAT 14:25!1 +MAT 14:25!3 +MAT 14:25!4 +MAT 14:25!5 +MAT 14:25!6 +MAT 14:25!7 +MAT 14:25!8 +MAT 14:25!9 +MAT 14:25!10 +MAT 14:25!11 +MAT 14:25!12 +MAT 14:26!2 +MAT 14:26!1 +MAT 14:26!3 +MAT 14:26!4 +MAT 14:26!5 +MAT 14:26!6 +MAT 14:26!7 +MAT 14:26!8 +MAT 14:26!9 +MAT 14:26!10 +MAT 14:26!11 +MAT 14:26!12 +MAT 14:26!13 +MAT 14:26!14 +MAT 14:26!15 +MAT 14:26!16 +MAT 14:26!17 +MAT 14:26!18 +MAT 14:26!19 +MAT 14:27!2 +MAT 14:27!1 +MAT 14:27!3 +MAT 14:27!4 +MAT 14:27!5 +MAT 14:27!6 +MAT 14:27!7 +MAT 14:27!8 +MAT 14:27!9 +MAT 14:27!10 +MAT 14:27!11 +MAT 14:27!12 +MAT 14:28!2 +MAT 14:28!1 +MAT 14:28!3 +MAT 14:28!4 +MAT 14:28!5 +MAT 14:28!6 +MAT 14:28!7 +MAT 14:28!8 +MAT 14:28!9 +MAT 14:28!10 +MAT 14:28!11 +MAT 14:28!12 +MAT 14:28!13 +MAT 14:28!14 +MAT 14:28!15 +MAT 14:28!16 +MAT 14:28!17 +MAT 14:28!18 +MAT 14:29!2 +MAT 14:29!1 +MAT 14:29!3 +MAT 14:29!4 +MAT 14:29!5 +MAT 14:29!6 +MAT 14:29!7 +MAT 14:29!8 +MAT 14:29!9 +MAT 14:29!10 +MAT 14:29!11 +MAT 14:29!12 +MAT 14:29!13 +MAT 14:29!14 +MAT 14:29!15 +MAT 14:29!16 +MAT 14:29!17 +MAT 14:29!18 +MAT 14:29!19 +MAT 14:30!2 +MAT 14:30!1 +MAT 14:30!3 +MAT 14:30!4 +MAT 14:30!5 +MAT 14:30!6 +MAT 14:30!7 +MAT 14:30!8 +MAT 14:30!9 +MAT 14:30!10 +MAT 14:30!11 +MAT 14:30!12 +MAT 14:30!13 +MAT 14:31!2 +MAT 14:31!1 +MAT 14:31!3 +MAT 14:31!4 +MAT 14:31!5 +MAT 14:31!6 +MAT 14:31!7 +MAT 14:31!8 +MAT 14:31!9 +MAT 14:31!10 +MAT 14:31!11 +MAT 14:31!12 +MAT 14:31!13 +MAT 14:31!14 +MAT 14:31!15 +MAT 14:31!16 +MAT 14:32!1 +MAT 14:32!2 +MAT 14:32!3 +MAT 14:32!4 +MAT 14:32!5 +MAT 14:32!6 +MAT 14:32!7 +MAT 14:32!8 +MAT 14:32!9 +MAT 14:33!2 +MAT 14:33!1 +MAT 14:33!3 +MAT 14:33!4 +MAT 14:33!5 +MAT 14:33!6 +MAT 14:33!7 +MAT 14:33!8 +MAT 14:33!9 +MAT 14:33!10 +MAT 14:33!11 +MAT 14:33!12 +MAT 14:34!1 +MAT 14:34!2 +MAT 14:34!3 +MAT 14:34!4 +MAT 14:34!5 +MAT 14:34!6 +MAT 14:34!7 +MAT 14:34!8 +MAT 14:35!1 +MAT 14:35!2 +MAT 14:35!3 +MAT 14:35!4 +MAT 14:35!5 +MAT 14:35!6 +MAT 14:35!7 +MAT 14:35!8 +MAT 14:35!9 +MAT 14:35!10 +MAT 14:35!11 +MAT 14:35!12 +MAT 14:35!13 +MAT 14:35!14 +MAT 14:35!15 +MAT 14:35!16 +MAT 14:35!17 +MAT 14:35!18 +MAT 14:35!19 +MAT 14:35!20 +MAT 14:35!21 +MAT 14:36!1 +MAT 14:36!2 +MAT 14:36!3 +MAT 14:36!4 +MAT 14:36!5 +MAT 14:36!6 +MAT 14:36!7 +MAT 14:36!8 +MAT 14:36!9 +MAT 14:36!10 +MAT 14:36!11 +MAT 14:36!12 +MAT 14:36!13 +MAT 14:36!14 +MAT 14:36!15 +MAT 15:1!1 +MAT 15:1!2 +MAT 15:1!3 +MAT 15:1!4 +MAT 15:1!5 +MAT 15:1!6 +MAT 15:1!7 +MAT 15:1!8 +MAT 15:1!9 +MAT 15:1!10 +MAT 15:2!1 +MAT 15:2!2 +MAT 15:2!3 +MAT 15:2!4 +MAT 15:2!5 +MAT 15:2!6 +MAT 15:2!7 +MAT 15:2!8 +MAT 15:2!9 +MAT 15:2!10 +MAT 15:2!12 +MAT 15:2!11 +MAT 15:2!13 +MAT 15:2!14 +MAT 15:2!15 +MAT 15:2!16 +MAT 15:2!17 +MAT 15:2!18 +MAT 15:3!2 +MAT 15:3!1 +MAT 15:3!3 +MAT 15:3!4 +MAT 15:3!5 +MAT 15:3!6 +MAT 15:3!7 +MAT 15:3!8 +MAT 15:3!9 +MAT 15:3!10 +MAT 15:3!11 +MAT 15:3!12 +MAT 15:3!13 +MAT 15:3!14 +MAT 15:3!15 +MAT 15:3!16 +MAT 15:3!17 +MAT 15:3!18 +MAT 15:4!2 +MAT 15:4!1 +MAT 15:4!3 +MAT 15:4!4 +MAT 15:4!5 +MAT 15:4!6 +MAT 15:4!7 +MAT 15:4!8 +MAT 15:4!9 +MAT 15:4!10 +MAT 15:4!11 +MAT 15:4!12 +MAT 15:4!13 +MAT 15:4!14 +MAT 15:4!15 +MAT 15:4!16 +MAT 15:4!17 +MAT 15:4!18 +MAT 15:5!2 +MAT 15:5!1 +MAT 15:5!3 +MAT 15:5!5 +MAT 15:5!4 +MAT 15:5!6 +MAT 15:5!7 +MAT 15:5!8 +MAT 15:5!9 +MAT 15:5!10 +MAT 15:5!11 +MAT 15:5!12 +MAT 15:5!14 +MAT 15:5!13 +MAT 15:5!15 +MAT 15:5!16 +MAT 15:5!17 +MAT 15:6!1 +MAT 15:6!2 +MAT 15:6!3 +MAT 15:6!4 +MAT 15:6!5 +MAT 15:6!6 +MAT 15:6!7 +MAT 15:6!8 +MAT 15:6!9 +MAT 15:6!10 +MAT 15:6!11 +MAT 15:6!12 +MAT 15:6!13 +MAT 15:6!14 +MAT 15:6!15 +MAT 15:6!16 +MAT 15:6!17 +MAT 15:6!18 +MAT 15:6!19 +MAT 15:6!20 +MAT 15:7!1 +MAT 15:7!2 +MAT 15:7!3 +MAT 15:7!4 +MAT 15:7!5 +MAT 15:7!6 +MAT 15:7!7 +MAT 15:8!1 +MAT 15:8!2 +MAT 15:8!3 +MAT 15:8!4 +MAT 15:8!5 +MAT 15:8!6 +MAT 15:8!7 +MAT 15:8!9 +MAT 15:8!8 +MAT 15:8!10 +MAT 15:8!11 +MAT 15:8!12 +MAT 15:8!13 +MAT 15:8!14 +MAT 15:8!15 +MAT 15:9!2 +MAT 15:9!1 +MAT 15:9!3 +MAT 15:9!4 +MAT 15:9!5 +MAT 15:9!6 +MAT 15:9!7 +MAT 15:9!8 +MAT 15:10!1 +MAT 15:10!2 +MAT 15:10!3 +MAT 15:10!4 +MAT 15:10!5 +MAT 15:10!6 +MAT 15:10!7 +MAT 15:10!8 +MAT 15:10!9 +MAT 15:11!1 +MAT 15:11!2 +MAT 15:11!3 +MAT 15:11!4 +MAT 15:11!5 +MAT 15:11!6 +MAT 15:11!7 +MAT 15:11!8 +MAT 15:11!9 +MAT 15:11!10 +MAT 15:11!11 +MAT 15:11!12 +MAT 15:11!13 +MAT 15:11!14 +MAT 15:11!15 +MAT 15:11!16 +MAT 15:11!17 +MAT 15:11!18 +MAT 15:11!19 +MAT 15:12!1 +MAT 15:12!2 +MAT 15:12!3 +MAT 15:12!4 +MAT 15:12!5 +MAT 15:12!6 +MAT 15:12!7 +MAT 15:12!8 +MAT 15:12!9 +MAT 15:12!10 +MAT 15:12!11 +MAT 15:12!12 +MAT 15:12!13 +MAT 15:12!14 +MAT 15:13!2 +MAT 15:13!1 +MAT 15:13!3 +MAT 15:13!4 +MAT 15:13!5 +MAT 15:13!6 +MAT 15:13!7 +MAT 15:13!8 +MAT 15:13!9 +MAT 15:13!10 +MAT 15:13!11 +MAT 15:13!12 +MAT 15:13!13 +MAT 15:13!14 +MAT 15:13!15 +MAT 15:14!1 +MAT 15:14!2 +MAT 15:14!4 +MAT 15:14!3 +MAT 15:14!5 +MAT 15:14!6 +MAT 15:14!8 +MAT 15:14!10 +MAT 15:14!7 +MAT 15:14!9 +MAT 15:14!11 +MAT 15:14!12 +MAT 15:14!13 +MAT 15:14!14 +MAT 15:14!15 +MAT 15:15!2 +MAT 15:15!1 +MAT 15:15!3 +MAT 15:15!4 +MAT 15:15!5 +MAT 15:15!6 +MAT 15:15!7 +MAT 15:15!8 +MAT 15:15!9 +MAT 15:15!10 +MAT 15:16!2 +MAT 15:16!1 +MAT 15:16!3 +MAT 15:16!4 +MAT 15:16!5 +MAT 15:16!6 +MAT 15:16!7 +MAT 15:16!8 +MAT 15:17!1 +MAT 15:17!2 +MAT 15:17!3 +MAT 15:17!4 +MAT 15:17!5 +MAT 15:17!6 +MAT 15:17!7 +MAT 15:17!8 +MAT 15:17!9 +MAT 15:17!10 +MAT 15:17!11 +MAT 15:17!12 +MAT 15:17!13 +MAT 15:17!14 +MAT 15:17!15 +MAT 15:17!16 +MAT 15:17!17 +MAT 15:18!2 +MAT 15:18!1 +MAT 15:18!3 +MAT 15:18!4 +MAT 15:18!5 +MAT 15:18!6 +MAT 15:18!7 +MAT 15:18!8 +MAT 15:18!9 +MAT 15:18!10 +MAT 15:18!11 +MAT 15:18!12 +MAT 15:18!13 +MAT 15:18!14 +MAT 15:19!2 +MAT 15:19!1 +MAT 15:19!3 +MAT 15:19!4 +MAT 15:19!5 +MAT 15:19!6 +MAT 15:19!7 +MAT 15:19!8 +MAT 15:19!9 +MAT 15:19!10 +MAT 15:19!11 +MAT 15:19!12 +MAT 15:19!13 +MAT 15:20!1 +MAT 15:20!2 +MAT 15:20!3 +MAT 15:20!4 +MAT 15:20!5 +MAT 15:20!6 +MAT 15:20!8 +MAT 15:20!7 +MAT 15:20!9 +MAT 15:20!10 +MAT 15:20!11 +MAT 15:20!12 +MAT 15:20!13 +MAT 15:20!14 +MAT 15:20!15 +MAT 15:21!1 +MAT 15:21!2 +MAT 15:21!3 +MAT 15:21!4 +MAT 15:21!5 +MAT 15:21!6 +MAT 15:21!7 +MAT 15:21!8 +MAT 15:21!9 +MAT 15:21!10 +MAT 15:21!11 +MAT 15:21!12 +MAT 15:22!1 +MAT 15:22!2 +MAT 15:22!3 +MAT 15:22!4 +MAT 15:22!5 +MAT 15:22!6 +MAT 15:22!7 +MAT 15:22!8 +MAT 15:22!9 +MAT 15:22!10 +MAT 15:22!11 +MAT 15:22!12 +MAT 15:22!13 +MAT 15:22!14 +MAT 15:22!15 +MAT 15:22!16 +MAT 15:22!17 +MAT 15:22!18 +MAT 15:22!19 +MAT 15:22!20 +MAT 15:22!21 +MAT 15:23!2 +MAT 15:23!1 +MAT 15:23!3 +MAT 15:23!4 +MAT 15:23!5 +MAT 15:23!6 +MAT 15:23!7 +MAT 15:23!8 +MAT 15:23!9 +MAT 15:23!10 +MAT 15:23!11 +MAT 15:23!12 +MAT 15:23!13 +MAT 15:23!14 +MAT 15:23!15 +MAT 15:23!16 +MAT 15:23!17 +MAT 15:23!18 +MAT 15:23!19 +MAT 15:23!20 +MAT 15:24!2 +MAT 15:24!1 +MAT 15:24!3 +MAT 15:24!4 +MAT 15:24!5 +MAT 15:24!6 +MAT 15:24!7 +MAT 15:24!8 +MAT 15:24!9 +MAT 15:24!10 +MAT 15:24!11 +MAT 15:24!12 +MAT 15:24!13 +MAT 15:24!14 +MAT 15:24!15 +MAT 15:25!2 +MAT 15:25!1 +MAT 15:25!3 +MAT 15:25!4 +MAT 15:25!5 +MAT 15:25!6 +MAT 15:25!7 +MAT 15:25!8 +MAT 15:25!9 +MAT 15:26!2 +MAT 15:26!1 +MAT 15:26!3 +MAT 15:26!4 +MAT 15:26!5 +MAT 15:26!6 +MAT 15:26!7 +MAT 15:26!8 +MAT 15:26!9 +MAT 15:26!10 +MAT 15:26!11 +MAT 15:26!12 +MAT 15:26!13 +MAT 15:26!14 +MAT 15:26!15 +MAT 15:26!16 +MAT 15:27!2 +MAT 15:27!1 +MAT 15:27!3 +MAT 15:27!4 +MAT 15:27!5 +MAT 15:27!7 +MAT 15:27!6 +MAT 15:27!8 +MAT 15:27!9 +MAT 15:27!10 +MAT 15:27!11 +MAT 15:27!12 +MAT 15:27!13 +MAT 15:27!14 +MAT 15:27!15 +MAT 15:27!16 +MAT 15:27!17 +MAT 15:27!18 +MAT 15:27!19 +MAT 15:27!20 +MAT 15:27!21 +MAT 15:28!1 +MAT 15:28!2 +MAT 15:28!3 +MAT 15:28!4 +MAT 15:28!5 +MAT 15:28!6 +MAT 15:28!7 +MAT 15:28!8 +MAT 15:28!9 +MAT 15:28!10 +MAT 15:28!11 +MAT 15:28!12 +MAT 15:28!13 +MAT 15:28!14 +MAT 15:28!15 +MAT 15:28!16 +MAT 15:28!17 +MAT 15:28!18 +MAT 15:28!19 +MAT 15:28!20 +MAT 15:28!21 +MAT 15:28!22 +MAT 15:28!23 +MAT 15:28!24 +MAT 15:28!25 +MAT 15:29!1 +MAT 15:29!2 +MAT 15:29!3 +MAT 15:29!4 +MAT 15:29!5 +MAT 15:29!6 +MAT 15:29!7 +MAT 15:29!8 +MAT 15:29!9 +MAT 15:29!10 +MAT 15:29!11 +MAT 15:29!12 +MAT 15:29!13 +MAT 15:29!14 +MAT 15:29!15 +MAT 15:29!16 +MAT 15:29!17 +MAT 15:29!18 +MAT 15:30!1 +MAT 15:30!2 +MAT 15:30!3 +MAT 15:30!4 +MAT 15:30!5 +MAT 15:30!6 +MAT 15:30!7 +MAT 15:30!8 +MAT 15:30!9 +MAT 15:30!10 +MAT 15:30!11 +MAT 15:30!12 +MAT 15:30!13 +MAT 15:30!14 +MAT 15:30!15 +MAT 15:30!16 +MAT 15:30!17 +MAT 15:30!18 +MAT 15:30!19 +MAT 15:30!20 +MAT 15:30!21 +MAT 15:30!22 +MAT 15:30!23 +MAT 15:30!24 +MAT 15:30!25 +MAT 15:31!1 +MAT 15:31!2 +MAT 15:31!3 +MAT 15:31!4 +MAT 15:31!5 +MAT 15:31!6 +MAT 15:31!7 +MAT 15:31!8 +MAT 15:31!9 +MAT 15:31!10 +MAT 15:31!11 +MAT 15:31!12 +MAT 15:31!13 +MAT 15:31!14 +MAT 15:31!15 +MAT 15:31!16 +MAT 15:31!17 +MAT 15:31!18 +MAT 15:31!19 +MAT 15:31!20 +MAT 15:32!2 +MAT 15:32!1 +MAT 15:32!3 +MAT 15:32!4 +MAT 15:32!5 +MAT 15:32!6 +MAT 15:32!7 +MAT 15:32!8 +MAT 15:32!9 +MAT 15:32!10 +MAT 15:32!11 +MAT 15:32!12 +MAT 15:32!13 +MAT 15:32!14 +MAT 15:32!15 +MAT 15:32!16 +MAT 15:32!17 +MAT 15:32!18 +MAT 15:32!19 +MAT 15:32!20 +MAT 15:32!21 +MAT 15:32!22 +MAT 15:32!23 +MAT 15:32!24 +MAT 15:32!25 +MAT 15:32!26 +MAT 15:32!27 +MAT 15:32!28 +MAT 15:32!29 +MAT 15:32!30 +MAT 15:32!31 +MAT 15:32!32 +MAT 15:32!33 +MAT 15:32!34 +MAT 15:32!35 +MAT 15:33!1 +MAT 15:33!2 +MAT 15:33!3 +MAT 15:33!4 +MAT 15:33!5 +MAT 15:33!6 +MAT 15:33!7 +MAT 15:33!8 +MAT 15:33!9 +MAT 15:33!10 +MAT 15:33!11 +MAT 15:33!12 +MAT 15:33!13 +MAT 15:33!14 +MAT 15:33!15 +MAT 15:34!1 +MAT 15:34!2 +MAT 15:34!3 +MAT 15:34!4 +MAT 15:34!5 +MAT 15:34!6 +MAT 15:34!7 +MAT 15:34!8 +MAT 15:34!10 +MAT 15:34!9 +MAT 15:34!11 +MAT 15:34!12 +MAT 15:34!13 +MAT 15:34!14 +MAT 15:34!15 +MAT 15:35!1 +MAT 15:35!2 +MAT 15:35!3 +MAT 15:35!4 +MAT 15:35!5 +MAT 15:35!6 +MAT 15:35!7 +MAT 15:35!8 +MAT 15:36!1 +MAT 15:36!2 +MAT 15:36!3 +MAT 15:36!4 +MAT 15:36!5 +MAT 15:36!6 +MAT 15:36!7 +MAT 15:36!8 +MAT 15:36!9 +MAT 15:36!10 +MAT 15:36!11 +MAT 15:36!12 +MAT 15:36!13 +MAT 15:36!14 +MAT 15:36!16 +MAT 15:36!15 +MAT 15:36!17 +MAT 15:36!18 +MAT 15:36!19 +MAT 15:37!1 +MAT 15:37!2 +MAT 15:37!3 +MAT 15:37!4 +MAT 15:37!5 +MAT 15:37!6 +MAT 15:37!7 +MAT 15:37!8 +MAT 15:37!9 +MAT 15:37!10 +MAT 15:37!12 +MAT 15:37!13 +MAT 15:37!14 +MAT 15:37!11 +MAT 15:38!2 +MAT 15:38!1 +MAT 15:38!3 +MAT 15:38!4 +MAT 15:38!5 +MAT 15:38!6 +MAT 15:38!7 +MAT 15:38!8 +MAT 15:38!9 +MAT 15:38!10 +MAT 15:39!1 +MAT 15:39!2 +MAT 15:39!3 +MAT 15:39!4 +MAT 15:39!5 +MAT 15:39!6 +MAT 15:39!7 +MAT 15:39!8 +MAT 15:39!9 +MAT 15:39!10 +MAT 15:39!11 +MAT 15:39!12 +MAT 15:39!13 +MAT 15:39!14 +MAT 16:1!1 +MAT 16:1!2 +MAT 16:1!3 +MAT 16:1!4 +MAT 16:1!5 +MAT 16:1!6 +MAT 16:1!7 +MAT 16:1!8 +MAT 16:1!9 +MAT 16:1!10 +MAT 16:1!11 +MAT 16:1!12 +MAT 16:1!13 +MAT 16:1!14 +MAT 16:1!15 +MAT 16:2!2 +MAT 16:2!1 +MAT 16:2!3 +MAT 16:2!4 +MAT 16:2!5 +MAT 16:2!6 +MAT 16:2!7 +MAT 16:2!8 +MAT 16:2!9 +MAT 16:2!11 +MAT 16:2!10 +MAT 16:2!12 +MAT 16:2!13 +MAT 16:3!1 +MAT 16:3!2 +MAT 16:3!3 +MAT 16:3!4 +MAT 16:3!6 +MAT 16:3!5 +MAT 16:3!7 +MAT 16:3!8 +MAT 16:3!9 +MAT 16:3!11 +MAT 16:3!10 +MAT 16:3!12 +MAT 16:3!13 +MAT 16:3!14 +MAT 16:3!16 +MAT 16:3!15 +MAT 16:3!18 +MAT 16:3!17 +MAT 16:3!19 +MAT 16:3!20 +MAT 16:3!21 +MAT 16:3!22 +MAT 16:3!23 +MAT 16:4!1 +MAT 16:4!2 +MAT 16:4!3 +MAT 16:4!4 +MAT 16:4!5 +MAT 16:4!6 +MAT 16:4!7 +MAT 16:4!8 +MAT 16:4!9 +MAT 16:4!10 +MAT 16:4!11 +MAT 16:4!12 +MAT 16:4!13 +MAT 16:4!14 +MAT 16:4!15 +MAT 16:4!16 +MAT 16:4!17 +MAT 16:4!18 +MAT 16:4!19 +MAT 16:4!20 +MAT 16:5!1 +MAT 16:5!3 +MAT 16:5!4 +MAT 16:5!2 +MAT 16:5!5 +MAT 16:5!6 +MAT 16:5!7 +MAT 16:5!8 +MAT 16:5!9 +MAT 16:5!10 +MAT 16:6!2 +MAT 16:6!1 +MAT 16:6!3 +MAT 16:6!4 +MAT 16:6!5 +MAT 16:6!6 +MAT 16:6!7 +MAT 16:6!8 +MAT 16:6!9 +MAT 16:6!10 +MAT 16:6!11 +MAT 16:6!12 +MAT 16:6!13 +MAT 16:6!14 +MAT 16:6!15 +MAT 16:7!2 +MAT 16:7!1 +MAT 16:7!3 +MAT 16:7!4 +MAT 16:7!5 +MAT 16:7!6 +MAT 16:7!7 +MAT 16:7!8 +MAT 16:7!9 +MAT 16:7!10 +MAT 16:8!2 +MAT 16:8!1 +MAT 16:8!3 +MAT 16:8!4 +MAT 16:8!5 +MAT 16:8!6 +MAT 16:8!7 +MAT 16:8!8 +MAT 16:8!9 +MAT 16:8!10 +MAT 16:8!11 +MAT 16:8!12 +MAT 16:8!13 +MAT 16:8!14 +MAT 16:9!1 +MAT 16:9!2 +MAT 16:9!3 +MAT 16:9!4 +MAT 16:9!5 +MAT 16:9!6 +MAT 16:9!7 +MAT 16:9!8 +MAT 16:9!9 +MAT 16:9!10 +MAT 16:9!11 +MAT 16:9!12 +MAT 16:9!13 +MAT 16:10!1 +MAT 16:10!2 +MAT 16:10!3 +MAT 16:10!4 +MAT 16:10!5 +MAT 16:10!6 +MAT 16:10!7 +MAT 16:10!8 +MAT 16:10!9 +MAT 16:10!10 +MAT 16:11!1 +MAT 16:11!2 +MAT 16:11!3 +MAT 16:11!4 +MAT 16:11!5 +MAT 16:11!6 +MAT 16:11!7 +MAT 16:11!8 +MAT 16:11!9 +MAT 16:11!11 +MAT 16:11!10 +MAT 16:11!12 +MAT 16:11!13 +MAT 16:11!14 +MAT 16:11!15 +MAT 16:11!16 +MAT 16:11!17 +MAT 16:11!18 +MAT 16:12!1 +MAT 16:12!2 +MAT 16:12!3 +MAT 16:12!4 +MAT 16:12!5 +MAT 16:12!6 +MAT 16:12!7 +MAT 16:12!8 +MAT 16:12!9 +MAT 16:12!10 +MAT 16:12!11 +MAT 16:12!12 +MAT 16:12!13 +MAT 16:12!14 +MAT 16:12!15 +MAT 16:12!16 +MAT 16:12!17 +MAT 16:12!18 +MAT 16:12!19 +MAT 16:13!2 +MAT 16:13!3 +MAT 16:13!4 +MAT 16:13!1 +MAT 16:13!5 +MAT 16:13!6 +MAT 16:13!7 +MAT 16:13!8 +MAT 16:13!9 +MAT 16:13!10 +MAT 16:13!11 +MAT 16:13!12 +MAT 16:13!13 +MAT 16:13!14 +MAT 16:13!15 +MAT 16:13!17 +MAT 16:13!18 +MAT 16:13!19 +MAT 16:13!16 +MAT 16:13!20 +MAT 16:13!21 +MAT 16:13!22 +MAT 16:13!23 +MAT 16:13!24 +MAT 16:14!2 +MAT 16:14!1 +MAT 16:14!3 +MAT 16:14!5 +MAT 16:14!4 +MAT 16:14!6 +MAT 16:14!7 +MAT 16:14!8 +MAT 16:14!10 +MAT 16:14!9 +MAT 16:14!11 +MAT 16:14!13 +MAT 16:14!12 +MAT 16:14!14 +MAT 16:14!15 +MAT 16:14!16 +MAT 16:14!17 +MAT 16:14!18 +MAT 16:15!1 +MAT 16:15!2 +MAT 16:15!4 +MAT 16:15!3 +MAT 16:15!5 +MAT 16:15!6 +MAT 16:15!8 +MAT 16:15!7 +MAT 16:16!2 +MAT 16:16!1 +MAT 16:16!3 +MAT 16:16!4 +MAT 16:16!5 +MAT 16:16!6 +MAT 16:16!7 +MAT 16:16!8 +MAT 16:16!9 +MAT 16:16!10 +MAT 16:16!11 +MAT 16:16!12 +MAT 16:16!13 +MAT 16:16!14 +MAT 16:16!15 +MAT 16:17!2 +MAT 16:17!1 +MAT 16:17!3 +MAT 16:17!4 +MAT 16:17!5 +MAT 16:17!6 +MAT 16:17!7 +MAT 16:17!8 +MAT 16:17!9 +MAT 16:17!10 +MAT 16:17!11 +MAT 16:17!12 +MAT 16:17!13 +MAT 16:17!14 +MAT 16:17!15 +MAT 16:17!16 +MAT 16:17!17 +MAT 16:17!18 +MAT 16:17!19 +MAT 16:17!20 +MAT 16:17!21 +MAT 16:17!22 +MAT 16:17!23 +MAT 16:17!24 +MAT 16:17!25 +MAT 16:18!2 +MAT 16:18!1 +MAT 16:18!3 +MAT 16:18!4 +MAT 16:18!5 +MAT 16:18!6 +MAT 16:18!7 +MAT 16:18!8 +MAT 16:18!9 +MAT 16:18!10 +MAT 16:18!11 +MAT 16:18!12 +MAT 16:18!13 +MAT 16:18!14 +MAT 16:18!15 +MAT 16:18!16 +MAT 16:18!17 +MAT 16:18!18 +MAT 16:18!19 +MAT 16:18!20 +MAT 16:18!21 +MAT 16:18!22 +MAT 16:18!23 +MAT 16:19!1 +MAT 16:19!2 +MAT 16:19!3 +MAT 16:19!4 +MAT 16:19!5 +MAT 16:19!6 +MAT 16:19!7 +MAT 16:19!8 +MAT 16:19!9 +MAT 16:19!11 +MAT 16:19!10 +MAT 16:19!12 +MAT 16:19!13 +MAT 16:19!14 +MAT 16:19!15 +MAT 16:19!16 +MAT 16:19!17 +MAT 16:19!18 +MAT 16:19!19 +MAT 16:19!20 +MAT 16:19!21 +MAT 16:19!23 +MAT 16:19!22 +MAT 16:19!24 +MAT 16:19!25 +MAT 16:19!26 +MAT 16:19!27 +MAT 16:19!28 +MAT 16:19!29 +MAT 16:19!30 +MAT 16:19!31 +MAT 16:19!32 +MAT 16:20!1 +MAT 16:20!2 +MAT 16:20!3 +MAT 16:20!4 +MAT 16:20!5 +MAT 16:20!6 +MAT 16:20!7 +MAT 16:20!8 +MAT 16:20!9 +MAT 16:20!10 +MAT 16:20!11 +MAT 16:20!12 +MAT 16:21!1 +MAT 16:21!2 +MAT 16:21!3 +MAT 16:21!4 +MAT 16:21!5 +MAT 16:21!6 +MAT 16:21!7 +MAT 16:21!8 +MAT 16:21!9 +MAT 16:21!10 +MAT 16:21!11 +MAT 16:21!12 +MAT 16:21!13 +MAT 16:21!14 +MAT 16:21!15 +MAT 16:21!16 +MAT 16:21!17 +MAT 16:21!18 +MAT 16:21!19 +MAT 16:21!20 +MAT 16:21!21 +MAT 16:21!22 +MAT 16:21!23 +MAT 16:21!24 +MAT 16:21!25 +MAT 16:21!26 +MAT 16:21!27 +MAT 16:21!28 +MAT 16:21!29 +MAT 16:21!30 +MAT 16:21!31 +MAT 16:21!32 +MAT 16:22!1 +MAT 16:22!2 +MAT 16:22!3 +MAT 16:22!4 +MAT 16:22!5 +MAT 16:22!6 +MAT 16:22!7 +MAT 16:22!8 +MAT 16:22!9 +MAT 16:22!10 +MAT 16:22!11 +MAT 16:22!12 +MAT 16:22!13 +MAT 16:22!14 +MAT 16:22!15 +MAT 16:22!16 +MAT 16:22!17 +MAT 16:23!2 +MAT 16:23!1 +MAT 16:23!3 +MAT 16:23!4 +MAT 16:23!5 +MAT 16:23!6 +MAT 16:23!7 +MAT 16:23!8 +MAT 16:23!9 +MAT 16:23!10 +MAT 16:23!11 +MAT 16:23!13 +MAT 16:23!12 +MAT 16:23!14 +MAT 16:23!15 +MAT 16:23!16 +MAT 16:23!17 +MAT 16:23!18 +MAT 16:23!19 +MAT 16:23!20 +MAT 16:23!21 +MAT 16:23!22 +MAT 16:23!23 +MAT 16:24!1 +MAT 16:24!2 +MAT 16:24!3 +MAT 16:24!4 +MAT 16:24!5 +MAT 16:24!6 +MAT 16:24!7 +MAT 16:24!8 +MAT 16:24!9 +MAT 16:24!10 +MAT 16:24!11 +MAT 16:24!12 +MAT 16:24!13 +MAT 16:24!14 +MAT 16:24!15 +MAT 16:24!16 +MAT 16:24!17 +MAT 16:24!18 +MAT 16:24!19 +MAT 16:24!20 +MAT 16:24!21 +MAT 16:24!22 +MAT 16:24!23 +MAT 16:25!2 +MAT 16:25!3 +MAT 16:25!1 +MAT 16:25!4 +MAT 16:25!5 +MAT 16:25!6 +MAT 16:25!7 +MAT 16:25!8 +MAT 16:25!9 +MAT 16:25!10 +MAT 16:25!12 +MAT 16:25!13 +MAT 16:25!11 +MAT 16:25!14 +MAT 16:25!15 +MAT 16:25!16 +MAT 16:25!17 +MAT 16:25!18 +MAT 16:25!19 +MAT 16:25!20 +MAT 16:25!21 +MAT 16:26!2 +MAT 16:26!1 +MAT 16:26!3 +MAT 16:26!4 +MAT 16:26!5 +MAT 16:26!6 +MAT 16:26!7 +MAT 16:26!8 +MAT 16:26!9 +MAT 16:26!11 +MAT 16:26!10 +MAT 16:26!12 +MAT 16:26!13 +MAT 16:26!14 +MAT 16:26!15 +MAT 16:26!16 +MAT 16:26!17 +MAT 16:26!18 +MAT 16:26!19 +MAT 16:26!20 +MAT 16:26!21 +MAT 16:26!22 +MAT 16:27!2 +MAT 16:27!1 +MAT 16:27!3 +MAT 16:27!4 +MAT 16:27!5 +MAT 16:27!6 +MAT 16:27!7 +MAT 16:27!8 +MAT 16:27!9 +MAT 16:27!10 +MAT 16:27!11 +MAT 16:27!12 +MAT 16:27!13 +MAT 16:27!14 +MAT 16:27!15 +MAT 16:27!16 +MAT 16:27!17 +MAT 16:27!18 +MAT 16:27!19 +MAT 16:27!20 +MAT 16:27!21 +MAT 16:27!22 +MAT 16:27!23 +MAT 16:27!24 +MAT 16:27!25 +MAT 16:28!1 +MAT 16:28!2 +MAT 16:28!3 +MAT 16:28!4 +MAT 16:28!5 +MAT 16:28!6 +MAT 16:28!7 +MAT 16:28!8 +MAT 16:28!9 +MAT 16:28!10 +MAT 16:28!11 +MAT 16:28!12 +MAT 16:28!13 +MAT 16:28!14 +MAT 16:28!15 +MAT 16:28!16 +MAT 16:28!17 +MAT 16:28!18 +MAT 16:28!19 +MAT 16:28!20 +MAT 16:28!21 +MAT 16:28!22 +MAT 16:28!23 +MAT 16:28!24 +MAT 16:28!25 +MAT 16:28!26 +MAT 17:1!1 +MAT 17:1!2 +MAT 17:1!3 +MAT 17:1!4 +MAT 17:1!5 +MAT 17:1!6 +MAT 17:1!7 +MAT 17:1!8 +MAT 17:1!9 +MAT 17:1!10 +MAT 17:1!11 +MAT 17:1!12 +MAT 17:1!13 +MAT 17:1!14 +MAT 17:1!15 +MAT 17:1!16 +MAT 17:1!17 +MAT 17:1!18 +MAT 17:1!19 +MAT 17:1!20 +MAT 17:1!21 +MAT 17:1!22 +MAT 17:1!23 +MAT 17:1!24 +MAT 17:2!1 +MAT 17:2!2 +MAT 17:2!3 +MAT 17:2!4 +MAT 17:2!5 +MAT 17:2!6 +MAT 17:2!7 +MAT 17:2!8 +MAT 17:2!9 +MAT 17:2!10 +MAT 17:2!11 +MAT 17:2!12 +MAT 17:2!14 +MAT 17:2!13 +MAT 17:2!15 +MAT 17:2!16 +MAT 17:2!17 +MAT 17:2!18 +MAT 17:2!19 +MAT 17:2!20 +MAT 17:2!21 +MAT 17:3!1 +MAT 17:3!2 +MAT 17:3!3 +MAT 17:3!4 +MAT 17:3!5 +MAT 17:3!6 +MAT 17:3!7 +MAT 17:3!8 +MAT 17:3!9 +MAT 17:3!10 +MAT 17:4!2 +MAT 17:4!1 +MAT 17:4!3 +MAT 17:4!4 +MAT 17:4!5 +MAT 17:4!6 +MAT 17:4!7 +MAT 17:4!8 +MAT 17:4!9 +MAT 17:4!10 +MAT 17:4!11 +MAT 17:4!12 +MAT 17:4!13 +MAT 17:4!14 +MAT 17:4!15 +MAT 17:4!16 +MAT 17:4!17 +MAT 17:4!18 +MAT 17:4!19 +MAT 17:4!20 +MAT 17:4!21 +MAT 17:4!22 +MAT 17:4!23 +MAT 17:4!24 +MAT 17:4!25 +MAT 17:4!26 +MAT 17:4!27 +MAT 17:5!1 +MAT 17:5!2 +MAT 17:5!3 +MAT 17:5!4 +MAT 17:5!5 +MAT 17:5!6 +MAT 17:5!7 +MAT 17:5!8 +MAT 17:5!9 +MAT 17:5!10 +MAT 17:5!11 +MAT 17:5!12 +MAT 17:5!13 +MAT 17:5!14 +MAT 17:5!15 +MAT 17:5!16 +MAT 17:5!17 +MAT 17:5!18 +MAT 17:5!19 +MAT 17:5!20 +MAT 17:5!21 +MAT 17:5!22 +MAT 17:5!23 +MAT 17:5!24 +MAT 17:5!25 +MAT 17:5!26 +MAT 17:5!27 +MAT 17:6!1 +MAT 17:6!2 +MAT 17:6!3 +MAT 17:6!4 +MAT 17:6!5 +MAT 17:6!6 +MAT 17:6!7 +MAT 17:6!8 +MAT 17:6!9 +MAT 17:6!10 +MAT 17:6!11 +MAT 17:7!1 +MAT 17:7!2 +MAT 17:7!3 +MAT 17:7!4 +MAT 17:7!5 +MAT 17:7!6 +MAT 17:7!7 +MAT 17:7!8 +MAT 17:7!9 +MAT 17:7!10 +MAT 17:7!11 +MAT 17:7!12 +MAT 17:8!2 +MAT 17:8!1 +MAT 17:8!3 +MAT 17:8!4 +MAT 17:8!5 +MAT 17:8!6 +MAT 17:8!7 +MAT 17:8!8 +MAT 17:8!9 +MAT 17:8!10 +MAT 17:8!11 +MAT 17:8!12 +MAT 17:9!1 +MAT 17:9!2 +MAT 17:9!3 +MAT 17:9!4 +MAT 17:9!5 +MAT 17:9!6 +MAT 17:9!7 +MAT 17:9!8 +MAT 17:9!9 +MAT 17:9!10 +MAT 17:9!11 +MAT 17:9!12 +MAT 17:9!13 +MAT 17:9!14 +MAT 17:9!15 +MAT 17:9!16 +MAT 17:9!17 +MAT 17:9!18 +MAT 17:9!19 +MAT 17:9!20 +MAT 17:9!21 +MAT 17:9!22 +MAT 17:9!23 +MAT 17:9!24 +MAT 17:10!1 +MAT 17:10!2 +MAT 17:10!3 +MAT 17:10!4 +MAT 17:10!5 +MAT 17:10!6 +MAT 17:10!8 +MAT 17:10!7 +MAT 17:10!9 +MAT 17:10!10 +MAT 17:10!11 +MAT 17:10!12 +MAT 17:10!14 +MAT 17:10!13 +MAT 17:10!15 +MAT 17:10!16 +MAT 17:11!2 +MAT 17:11!1 +MAT 17:11!3 +MAT 17:11!4 +MAT 17:11!6 +MAT 17:11!5 +MAT 17:11!7 +MAT 17:11!8 +MAT 17:11!9 +MAT 17:11!10 +MAT 17:12!2 +MAT 17:12!1 +MAT 17:12!3 +MAT 17:12!4 +MAT 17:12!5 +MAT 17:12!6 +MAT 17:12!7 +MAT 17:12!8 +MAT 17:12!9 +MAT 17:12!10 +MAT 17:12!11 +MAT 17:12!12 +MAT 17:12!13 +MAT 17:12!14 +MAT 17:12!15 +MAT 17:12!16 +MAT 17:12!17 +MAT 17:12!18 +MAT 17:12!19 +MAT 17:12!20 +MAT 17:12!21 +MAT 17:12!22 +MAT 17:12!23 +MAT 17:12!24 +MAT 17:12!25 +MAT 17:12!26 +MAT 17:12!27 +MAT 17:13!1 +MAT 17:13!2 +MAT 17:13!3 +MAT 17:13!4 +MAT 17:13!5 +MAT 17:13!6 +MAT 17:13!7 +MAT 17:13!8 +MAT 17:13!9 +MAT 17:13!10 +MAT 17:13!11 +MAT 17:14!1 +MAT 17:14!2 +MAT 17:14!3 +MAT 17:14!4 +MAT 17:14!5 +MAT 17:14!6 +MAT 17:14!7 +MAT 17:14!8 +MAT 17:14!9 +MAT 17:14!10 +MAT 17:15!1 +MAT 17:15!2 +MAT 17:15!3 +MAT 17:15!4 +MAT 17:15!5 +MAT 17:15!6 +MAT 17:15!7 +MAT 17:15!8 +MAT 17:15!9 +MAT 17:15!10 +MAT 17:15!11 +MAT 17:15!12 +MAT 17:15!14 +MAT 17:15!13 +MAT 17:15!15 +MAT 17:15!16 +MAT 17:15!17 +MAT 17:15!18 +MAT 17:15!19 +MAT 17:15!20 +MAT 17:15!21 +MAT 17:15!22 +MAT 17:15!23 +MAT 17:16!1 +MAT 17:16!2 +MAT 17:16!3 +MAT 17:16!4 +MAT 17:16!5 +MAT 17:16!6 +MAT 17:16!7 +MAT 17:16!8 +MAT 17:16!9 +MAT 17:16!10 +MAT 17:16!11 +MAT 17:17!2 +MAT 17:17!1 +MAT 17:17!3 +MAT 17:17!4 +MAT 17:17!5 +MAT 17:17!6 +MAT 17:17!7 +MAT 17:17!8 +MAT 17:17!9 +MAT 17:17!10 +MAT 17:17!11 +MAT 17:17!12 +MAT 17:17!13 +MAT 17:17!14 +MAT 17:17!15 +MAT 17:17!16 +MAT 17:17!17 +MAT 17:17!18 +MAT 17:17!19 +MAT 17:17!20 +MAT 17:17!21 +MAT 17:17!22 +MAT 17:17!23 +MAT 17:18!1 +MAT 17:18!2 +MAT 17:18!3 +MAT 17:18!4 +MAT 17:18!5 +MAT 17:18!6 +MAT 17:18!7 +MAT 17:18!8 +MAT 17:18!9 +MAT 17:18!10 +MAT 17:18!11 +MAT 17:18!12 +MAT 17:18!13 +MAT 17:18!14 +MAT 17:18!15 +MAT 17:18!16 +MAT 17:18!17 +MAT 17:18!18 +MAT 17:18!19 +MAT 17:19!1 +MAT 17:19!3 +MAT 17:19!4 +MAT 17:19!2 +MAT 17:19!5 +MAT 17:19!6 +MAT 17:19!7 +MAT 17:19!8 +MAT 17:19!9 +MAT 17:19!10 +MAT 17:19!11 +MAT 17:19!12 +MAT 17:19!13 +MAT 17:19!14 +MAT 17:19!15 +MAT 17:19!16 +MAT 17:20!2 +MAT 17:20!1 +MAT 17:20!3 +MAT 17:20!4 +MAT 17:20!5 +MAT 17:20!6 +MAT 17:20!7 +MAT 17:20!8 +MAT 17:20!10 +MAT 17:20!9 +MAT 17:20!11 +MAT 17:20!12 +MAT 17:20!13 +MAT 17:20!14 +MAT 17:20!15 +MAT 17:20!16 +MAT 17:20!17 +MAT 17:20!18 +MAT 17:20!19 +MAT 17:20!20 +MAT 17:20!21 +MAT 17:20!22 +MAT 17:20!23 +MAT 17:20!24 +MAT 17:20!25 +MAT 17:20!26 +MAT 17:20!27 +MAT 17:20!28 +MAT 17:20!29 +MAT 17:20!30 +MAT 17:20!31 +MAT 17:22!2 +MAT 17:22!1 +MAT 17:22!3 +MAT 17:22!4 +MAT 17:22!5 +MAT 17:22!6 +MAT 17:22!7 +MAT 17:22!8 +MAT 17:22!9 +MAT 17:22!10 +MAT 17:22!11 +MAT 17:22!12 +MAT 17:22!13 +MAT 17:22!14 +MAT 17:22!15 +MAT 17:22!16 +MAT 17:22!17 +MAT 17:22!18 +MAT 17:22!19 +MAT 17:23!1 +MAT 17:23!2 +MAT 17:23!3 +MAT 17:23!4 +MAT 17:23!5 +MAT 17:23!6 +MAT 17:23!7 +MAT 17:23!8 +MAT 17:23!9 +MAT 17:23!10 +MAT 17:23!11 +MAT 17:24!2 +MAT 17:24!1 +MAT 17:24!3 +MAT 17:24!4 +MAT 17:24!5 +MAT 17:24!6 +MAT 17:24!7 +MAT 17:24!8 +MAT 17:24!9 +MAT 17:24!10 +MAT 17:24!11 +MAT 17:24!12 +MAT 17:24!13 +MAT 17:24!14 +MAT 17:24!18 +MAT 17:24!15 +MAT 17:24!16 +MAT 17:24!17 +MAT 17:24!19 +MAT 17:24!20 +MAT 17:25!1 +MAT 17:25!2 +MAT 17:25!3 +MAT 17:25!4 +MAT 17:25!5 +MAT 17:25!6 +MAT 17:25!7 +MAT 17:25!8 +MAT 17:25!9 +MAT 17:25!10 +MAT 17:25!11 +MAT 17:25!12 +MAT 17:25!13 +MAT 17:25!14 +MAT 17:25!15 +MAT 17:25!16 +MAT 17:25!17 +MAT 17:25!18 +MAT 17:25!19 +MAT 17:25!20 +MAT 17:25!21 +MAT 17:25!22 +MAT 17:25!23 +MAT 17:25!24 +MAT 17:25!25 +MAT 17:25!26 +MAT 17:25!27 +MAT 17:25!28 +MAT 17:25!29 +MAT 17:25!30 +MAT 17:25!31 +MAT 17:25!32 +MAT 17:25!33 +MAT 17:25!34 +MAT 17:26!2 +MAT 17:26!1 +MAT 17:26!3 +MAT 17:26!4 +MAT 17:26!5 +MAT 17:26!6 +MAT 17:26!7 +MAT 17:26!8 +MAT 17:26!9 +MAT 17:26!10 +MAT 17:26!11 +MAT 17:26!12 +MAT 17:26!13 +MAT 17:26!14 +MAT 17:27!2 +MAT 17:27!1 +MAT 17:27!3 +MAT 17:27!4 +MAT 17:27!5 +MAT 17:27!6 +MAT 17:27!7 +MAT 17:27!8 +MAT 17:27!9 +MAT 17:27!10 +MAT 17:27!11 +MAT 17:27!12 +MAT 17:27!13 +MAT 17:27!14 +MAT 17:27!15 +MAT 17:27!16 +MAT 17:27!17 +MAT 17:27!18 +MAT 17:27!19 +MAT 17:27!20 +MAT 17:27!21 +MAT 17:27!22 +MAT 17:27!23 +MAT 17:27!24 +MAT 17:27!25 +MAT 17:27!26 +MAT 17:27!27 +MAT 17:27!28 +MAT 17:27!29 +MAT 17:27!30 +MAT 17:27!31 +MAT 18:1!1 +MAT 18:1!2 +MAT 18:1!3 +MAT 18:1!4 +MAT 18:1!5 +MAT 18:1!6 +MAT 18:1!7 +MAT 18:1!8 +MAT 18:1!9 +MAT 18:1!10 +MAT 18:1!12 +MAT 18:1!11 +MAT 18:1!13 +MAT 18:1!14 +MAT 18:1!15 +MAT 18:1!16 +MAT 18:1!17 +MAT 18:1!18 +MAT 18:1!19 +MAT 18:2!1 +MAT 18:2!2 +MAT 18:2!3 +MAT 18:2!4 +MAT 18:2!5 +MAT 18:2!6 +MAT 18:2!7 +MAT 18:2!8 +MAT 18:3!1 +MAT 18:3!2 +MAT 18:3!3 +MAT 18:3!4 +MAT 18:3!5 +MAT 18:3!6 +MAT 18:3!7 +MAT 18:3!8 +MAT 18:3!9 +MAT 18:3!10 +MAT 18:3!11 +MAT 18:3!12 +MAT 18:3!13 +MAT 18:3!14 +MAT 18:3!15 +MAT 18:3!16 +MAT 18:3!17 +MAT 18:3!18 +MAT 18:3!19 +MAT 18:3!20 +MAT 18:3!21 +MAT 18:4!2 +MAT 18:4!1 +MAT 18:4!3 +MAT 18:4!4 +MAT 18:4!5 +MAT 18:4!6 +MAT 18:4!7 +MAT 18:4!8 +MAT 18:4!9 +MAT 18:4!10 +MAT 18:4!11 +MAT 18:4!12 +MAT 18:4!13 +MAT 18:4!14 +MAT 18:4!15 +MAT 18:4!16 +MAT 18:4!17 +MAT 18:5!1 +MAT 18:5!3 +MAT 18:5!2 +MAT 18:5!4 +MAT 18:5!5 +MAT 18:5!6 +MAT 18:5!7 +MAT 18:5!8 +MAT 18:5!9 +MAT 18:5!10 +MAT 18:5!11 +MAT 18:5!12 +MAT 18:5!13 +MAT 18:6!2 +MAT 18:6!3 +MAT 18:6!1 +MAT 18:6!4 +MAT 18:6!5 +MAT 18:6!6 +MAT 18:6!7 +MAT 18:6!8 +MAT 18:6!9 +MAT 18:6!10 +MAT 18:6!11 +MAT 18:6!12 +MAT 18:6!13 +MAT 18:6!14 +MAT 18:6!15 +MAT 18:6!16 +MAT 18:6!17 +MAT 18:6!18 +MAT 18:6!19 +MAT 18:6!20 +MAT 18:6!21 +MAT 18:6!22 +MAT 18:6!23 +MAT 18:6!24 +MAT 18:6!25 +MAT 18:6!26 +MAT 18:6!27 +MAT 18:6!28 +MAT 18:6!29 +MAT 18:7!1 +MAT 18:7!2 +MAT 18:7!3 +MAT 18:7!4 +MAT 18:7!5 +MAT 18:7!6 +MAT 18:7!8 +MAT 18:7!7 +MAT 18:7!9 +MAT 18:7!10 +MAT 18:7!11 +MAT 18:7!12 +MAT 18:7!13 +MAT 18:7!14 +MAT 18:7!15 +MAT 18:7!16 +MAT 18:7!17 +MAT 18:7!18 +MAT 18:7!19 +MAT 18:7!20 +MAT 18:8!2 +MAT 18:8!1 +MAT 18:8!3 +MAT 18:8!4 +MAT 18:8!5 +MAT 18:8!6 +MAT 18:8!7 +MAT 18:8!8 +MAT 18:8!9 +MAT 18:8!10 +MAT 18:8!11 +MAT 18:8!12 +MAT 18:8!13 +MAT 18:8!14 +MAT 18:8!15 +MAT 18:8!16 +MAT 18:8!17 +MAT 18:8!18 +MAT 18:8!19 +MAT 18:8!20 +MAT 18:8!21 +MAT 18:8!22 +MAT 18:8!23 +MAT 18:8!24 +MAT 18:8!25 +MAT 18:8!26 +MAT 18:8!27 +MAT 18:8!28 +MAT 18:8!29 +MAT 18:8!30 +MAT 18:8!31 +MAT 18:8!32 +MAT 18:8!33 +MAT 18:8!34 +MAT 18:8!35 +MAT 18:8!36 +MAT 18:8!37 +MAT 18:8!38 +MAT 18:8!39 +MAT 18:8!40 +MAT 18:9!1 +MAT 18:9!2 +MAT 18:9!3 +MAT 18:9!4 +MAT 18:9!5 +MAT 18:9!6 +MAT 18:9!7 +MAT 18:9!8 +MAT 18:9!9 +MAT 18:9!10 +MAT 18:9!11 +MAT 18:9!12 +MAT 18:9!13 +MAT 18:9!14 +MAT 18:9!15 +MAT 18:9!16 +MAT 18:9!17 +MAT 18:9!18 +MAT 18:9!19 +MAT 18:9!20 +MAT 18:9!21 +MAT 18:9!22 +MAT 18:9!23 +MAT 18:9!24 +MAT 18:9!25 +MAT 18:9!26 +MAT 18:9!27 +MAT 18:9!28 +MAT 18:9!29 +MAT 18:9!30 +MAT 18:9!31 +MAT 18:10!1 +MAT 18:10!2 +MAT 18:10!3 +MAT 18:10!4 +MAT 18:10!5 +MAT 18:10!6 +MAT 18:10!7 +MAT 18:10!9 +MAT 18:10!8 +MAT 18:10!10 +MAT 18:10!11 +MAT 18:10!12 +MAT 18:10!13 +MAT 18:10!14 +MAT 18:10!15 +MAT 18:10!16 +MAT 18:10!17 +MAT 18:10!18 +MAT 18:10!19 +MAT 18:10!20 +MAT 18:10!21 +MAT 18:10!22 +MAT 18:10!23 +MAT 18:10!24 +MAT 18:10!25 +MAT 18:10!26 +MAT 18:10!27 +MAT 18:12!1 +MAT 18:12!2 +MAT 18:12!3 +MAT 18:12!4 +MAT 18:12!5 +MAT 18:12!6 +MAT 18:12!7 +MAT 18:12!8 +MAT 18:12!9 +MAT 18:12!10 +MAT 18:12!11 +MAT 18:12!12 +MAT 18:12!13 +MAT 18:12!14 +MAT 18:12!15 +MAT 18:12!16 +MAT 18:12!17 +MAT 18:12!18 +MAT 18:12!19 +MAT 18:12!20 +MAT 18:12!21 +MAT 18:12!22 +MAT 18:12!23 +MAT 18:12!24 +MAT 18:12!25 +MAT 18:12!26 +MAT 18:12!27 +MAT 18:13!1 +MAT 18:13!2 +MAT 18:13!3 +MAT 18:13!4 +MAT 18:13!5 +MAT 18:13!6 +MAT 18:13!7 +MAT 18:13!8 +MAT 18:13!9 +MAT 18:13!10 +MAT 18:13!11 +MAT 18:13!12 +MAT 18:13!13 +MAT 18:13!14 +MAT 18:13!15 +MAT 18:13!16 +MAT 18:13!17 +MAT 18:13!18 +MAT 18:13!19 +MAT 18:13!20 +MAT 18:13!21 +MAT 18:14!1 +MAT 18:14!2 +MAT 18:14!3 +MAT 18:14!4 +MAT 18:14!5 +MAT 18:14!6 +MAT 18:14!7 +MAT 18:14!8 +MAT 18:14!9 +MAT 18:14!10 +MAT 18:14!11 +MAT 18:14!12 +MAT 18:14!13 +MAT 18:14!14 +MAT 18:14!15 +MAT 18:14!16 +MAT 18:14!17 +MAT 18:15!2 +MAT 18:15!1 +MAT 18:15!3 +MAT 18:15!4 +MAT 18:15!5 +MAT 18:15!6 +MAT 18:15!7 +MAT 18:15!8 +MAT 18:15!9 +MAT 18:15!10 +MAT 18:15!11 +MAT 18:15!12 +MAT 18:15!13 +MAT 18:15!14 +MAT 18:15!15 +MAT 18:15!16 +MAT 18:15!17 +MAT 18:15!18 +MAT 18:15!19 +MAT 18:15!20 +MAT 18:15!21 +MAT 18:16!2 +MAT 18:16!1 +MAT 18:16!3 +MAT 18:16!4 +MAT 18:16!5 +MAT 18:16!6 +MAT 18:16!7 +MAT 18:16!8 +MAT 18:16!9 +MAT 18:16!10 +MAT 18:16!11 +MAT 18:16!12 +MAT 18:16!13 +MAT 18:16!14 +MAT 18:16!15 +MAT 18:16!17 +MAT 18:16!18 +MAT 18:16!16 +MAT 18:16!19 +MAT 18:16!20 +MAT 18:16!21 +MAT 18:17!2 +MAT 18:17!1 +MAT 18:17!3 +MAT 18:17!4 +MAT 18:17!5 +MAT 18:17!6 +MAT 18:17!7 +MAT 18:17!9 +MAT 18:17!8 +MAT 18:17!10 +MAT 18:17!11 +MAT 18:17!12 +MAT 18:17!13 +MAT 18:17!14 +MAT 18:17!15 +MAT 18:17!16 +MAT 18:17!17 +MAT 18:17!18 +MAT 18:17!19 +MAT 18:17!20 +MAT 18:17!21 +MAT 18:18!1 +MAT 18:18!2 +MAT 18:18!3 +MAT 18:18!5 +MAT 18:18!4 +MAT 18:18!6 +MAT 18:18!7 +MAT 18:18!8 +MAT 18:18!9 +MAT 18:18!10 +MAT 18:18!11 +MAT 18:18!12 +MAT 18:18!13 +MAT 18:18!14 +MAT 18:18!16 +MAT 18:18!15 +MAT 18:18!17 +MAT 18:18!18 +MAT 18:18!19 +MAT 18:18!20 +MAT 18:18!21 +MAT 18:18!22 +MAT 18:18!23 +MAT 18:18!24 +MAT 18:19!2 +MAT 18:19!1 +MAT 18:19!3 +MAT 18:19!4 +MAT 18:19!5 +MAT 18:19!6 +MAT 18:19!7 +MAT 18:19!9 +MAT 18:19!10 +MAT 18:19!8 +MAT 18:19!11 +MAT 18:19!12 +MAT 18:19!13 +MAT 18:19!14 +MAT 18:19!15 +MAT 18:19!16 +MAT 18:19!18 +MAT 18:19!17 +MAT 18:19!19 +MAT 18:19!20 +MAT 18:19!21 +MAT 18:19!22 +MAT 18:19!23 +MAT 18:19!24 +MAT 18:19!25 +MAT 18:19!26 +MAT 18:19!27 +MAT 18:19!28 +MAT 18:20!2 +MAT 18:20!1 +MAT 18:20!3 +MAT 18:20!7 +MAT 18:20!4 +MAT 18:20!5 +MAT 18:20!6 +MAT 18:20!8 +MAT 18:20!9 +MAT 18:20!10 +MAT 18:20!11 +MAT 18:20!12 +MAT 18:20!13 +MAT 18:20!14 +MAT 18:20!15 +MAT 18:20!16 +MAT 18:21!1 +MAT 18:21!2 +MAT 18:21!3 +MAT 18:21!4 +MAT 18:21!5 +MAT 18:21!6 +MAT 18:21!7 +MAT 18:21!8 +MAT 18:21!9 +MAT 18:21!10 +MAT 18:21!11 +MAT 18:21!12 +MAT 18:21!13 +MAT 18:21!14 +MAT 18:21!15 +MAT 18:21!16 +MAT 18:21!17 +MAT 18:21!18 +MAT 18:21!19 +MAT 18:22!1 +MAT 18:22!2 +MAT 18:22!3 +MAT 18:22!4 +MAT 18:22!5 +MAT 18:22!6 +MAT 18:22!7 +MAT 18:22!8 +MAT 18:22!9 +MAT 18:22!10 +MAT 18:22!11 +MAT 18:22!12 +MAT 18:22!13 +MAT 18:23!1 +MAT 18:23!2 +MAT 18:23!3 +MAT 18:23!4 +MAT 18:23!5 +MAT 18:23!6 +MAT 18:23!7 +MAT 18:23!8 +MAT 18:23!9 +MAT 18:23!10 +MAT 18:23!11 +MAT 18:23!12 +MAT 18:23!13 +MAT 18:23!14 +MAT 18:23!15 +MAT 18:23!16 +MAT 18:23!17 +MAT 18:24!2 +MAT 18:24!1 +MAT 18:24!3 +MAT 18:24!4 +MAT 18:24!5 +MAT 18:24!7 +MAT 18:24!6 +MAT 18:24!8 +MAT 18:24!9 +MAT 18:24!10 +MAT 18:25!3 +MAT 18:25!1 +MAT 18:25!2 +MAT 18:25!4 +MAT 18:25!5 +MAT 18:25!6 +MAT 18:25!8 +MAT 18:25!9 +MAT 18:25!10 +MAT 18:25!7 +MAT 18:25!11 +MAT 18:25!12 +MAT 18:25!13 +MAT 18:25!14 +MAT 18:25!15 +MAT 18:25!16 +MAT 18:25!17 +MAT 18:25!18 +MAT 18:25!19 +MAT 18:25!20 +MAT 18:25!21 +MAT 18:25!22 +MAT 18:26!2 +MAT 18:26!1 +MAT 18:26!3 +MAT 18:26!4 +MAT 18:26!5 +MAT 18:26!6 +MAT 18:26!7 +MAT 18:26!8 +MAT 18:26!9 +MAT 18:26!10 +MAT 18:26!11 +MAT 18:26!12 +MAT 18:26!13 +MAT 18:26!14 +MAT 18:27!2 +MAT 18:27!1 +MAT 18:27!3 +MAT 18:27!4 +MAT 18:27!5 +MAT 18:27!6 +MAT 18:27!7 +MAT 18:27!8 +MAT 18:27!9 +MAT 18:27!10 +MAT 18:27!11 +MAT 18:27!12 +MAT 18:27!13 +MAT 18:27!14 +MAT 18:28!2 +MAT 18:28!1 +MAT 18:28!3 +MAT 18:28!4 +MAT 18:28!5 +MAT 18:28!6 +MAT 18:28!7 +MAT 18:28!8 +MAT 18:28!9 +MAT 18:28!10 +MAT 18:28!11 +MAT 18:28!12 +MAT 18:28!13 +MAT 18:28!14 +MAT 18:28!15 +MAT 18:28!16 +MAT 18:28!17 +MAT 18:28!18 +MAT 18:28!19 +MAT 18:28!20 +MAT 18:28!21 +MAT 18:28!22 +MAT 18:28!23 +MAT 18:28!24 +MAT 18:29!2 +MAT 18:29!1 +MAT 18:29!3 +MAT 18:29!4 +MAT 18:29!5 +MAT 18:29!6 +MAT 18:29!7 +MAT 18:29!8 +MAT 18:29!9 +MAT 18:29!10 +MAT 18:29!11 +MAT 18:29!12 +MAT 18:29!13 +MAT 18:29!14 +MAT 18:30!2 +MAT 18:30!1 +MAT 18:30!3 +MAT 18:30!4 +MAT 18:30!5 +MAT 18:30!6 +MAT 18:30!7 +MAT 18:30!8 +MAT 18:30!9 +MAT 18:30!10 +MAT 18:30!11 +MAT 18:30!12 +MAT 18:30!13 +MAT 18:30!14 +MAT 18:31!2 +MAT 18:31!3 +MAT 18:31!4 +MAT 18:31!5 +MAT 18:31!1 +MAT 18:31!6 +MAT 18:31!7 +MAT 18:31!8 +MAT 18:31!9 +MAT 18:31!10 +MAT 18:31!11 +MAT 18:31!12 +MAT 18:31!13 +MAT 18:31!14 +MAT 18:31!15 +MAT 18:31!16 +MAT 18:31!17 +MAT 18:31!18 +MAT 18:32!1 +MAT 18:32!2 +MAT 18:32!3 +MAT 18:32!4 +MAT 18:32!5 +MAT 18:32!6 +MAT 18:32!7 +MAT 18:32!8 +MAT 18:32!9 +MAT 18:32!10 +MAT 18:32!11 +MAT 18:32!12 +MAT 18:32!13 +MAT 18:32!14 +MAT 18:32!15 +MAT 18:32!16 +MAT 18:32!17 +MAT 18:32!18 +MAT 18:32!19 +MAT 18:33!1 +MAT 18:33!2 +MAT 18:33!3 +MAT 18:33!4 +MAT 18:33!5 +MAT 18:33!6 +MAT 18:33!7 +MAT 18:33!8 +MAT 18:33!9 +MAT 18:33!10 +MAT 18:33!11 +MAT 18:33!12 +MAT 18:34!1 +MAT 18:34!2 +MAT 18:34!3 +MAT 18:34!4 +MAT 18:34!5 +MAT 18:34!6 +MAT 18:34!7 +MAT 18:34!8 +MAT 18:34!9 +MAT 18:34!10 +MAT 18:34!11 +MAT 18:34!12 +MAT 18:34!13 +MAT 18:34!14 +MAT 18:34!15 +MAT 18:34!16 +MAT 18:35!1 +MAT 18:35!2 +MAT 18:35!3 +MAT 18:35!4 +MAT 18:35!5 +MAT 18:35!6 +MAT 18:35!7 +MAT 18:35!8 +MAT 18:35!9 +MAT 18:35!10 +MAT 18:35!11 +MAT 18:35!12 +MAT 18:35!13 +MAT 18:35!14 +MAT 18:35!15 +MAT 18:35!16 +MAT 18:35!17 +MAT 18:35!18 +MAT 18:35!19 +MAT 18:35!20 +MAT 19:1!1 +MAT 19:1!2 +MAT 19:1!3 +MAT 19:1!4 +MAT 19:1!5 +MAT 19:1!6 +MAT 19:1!7 +MAT 19:1!8 +MAT 19:1!9 +MAT 19:1!10 +MAT 19:1!11 +MAT 19:1!12 +MAT 19:1!13 +MAT 19:1!14 +MAT 19:1!15 +MAT 19:1!16 +MAT 19:1!17 +MAT 19:1!18 +MAT 19:1!19 +MAT 19:1!20 +MAT 19:1!21 +MAT 19:1!22 +MAT 19:1!23 +MAT 19:2!1 +MAT 19:2!2 +MAT 19:2!3 +MAT 19:2!4 +MAT 19:2!5 +MAT 19:2!6 +MAT 19:2!7 +MAT 19:2!8 +MAT 19:2!9 +MAT 19:3!1 +MAT 19:3!2 +MAT 19:3!3 +MAT 19:3!4 +MAT 19:3!5 +MAT 19:3!6 +MAT 19:3!7 +MAT 19:3!8 +MAT 19:3!9 +MAT 19:3!10 +MAT 19:3!11 +MAT 19:3!12 +MAT 19:3!13 +MAT 19:3!14 +MAT 19:3!15 +MAT 19:3!16 +MAT 19:3!17 +MAT 19:4!2 +MAT 19:4!1 +MAT 19:4!3 +MAT 19:4!4 +MAT 19:4!5 +MAT 19:4!6 +MAT 19:4!7 +MAT 19:4!8 +MAT 19:4!9 +MAT 19:4!10 +MAT 19:4!11 +MAT 19:4!12 +MAT 19:4!13 +MAT 19:4!14 +MAT 19:4!15 +MAT 19:4!16 +MAT 19:5!1 +MAT 19:5!2 +MAT 19:5!3 +MAT 19:5!4 +MAT 19:5!5 +MAT 19:5!6 +MAT 19:5!7 +MAT 19:5!8 +MAT 19:5!9 +MAT 19:5!10 +MAT 19:5!11 +MAT 19:5!12 +MAT 19:5!13 +MAT 19:5!14 +MAT 19:5!15 +MAT 19:5!16 +MAT 19:5!17 +MAT 19:5!18 +MAT 19:5!19 +MAT 19:5!20 +MAT 19:5!21 +MAT 19:5!22 +MAT 19:5!23 +MAT 19:6!1 +MAT 19:6!2 +MAT 19:6!3 +MAT 19:6!4 +MAT 19:6!5 +MAT 19:6!6 +MAT 19:6!7 +MAT 19:6!9 +MAT 19:6!8 +MAT 19:6!10 +MAT 19:6!11 +MAT 19:6!12 +MAT 19:6!13 +MAT 19:6!14 +MAT 19:6!15 +MAT 19:7!1 +MAT 19:7!2 +MAT 19:7!4 +MAT 19:7!3 +MAT 19:7!5 +MAT 19:7!6 +MAT 19:7!7 +MAT 19:7!8 +MAT 19:7!9 +MAT 19:7!10 +MAT 19:7!11 +MAT 19:8!1 +MAT 19:8!2 +MAT 19:8!3 +MAT 19:8!4 +MAT 19:8!5 +MAT 19:8!6 +MAT 19:8!7 +MAT 19:8!8 +MAT 19:8!9 +MAT 19:8!10 +MAT 19:8!11 +MAT 19:8!12 +MAT 19:8!13 +MAT 19:8!14 +MAT 19:8!17 +MAT 19:8!15 +MAT 19:8!16 +MAT 19:8!18 +MAT 19:8!19 +MAT 19:8!20 +MAT 19:9!2 +MAT 19:9!1 +MAT 19:9!3 +MAT 19:9!4 +MAT 19:9!6 +MAT 19:9!5 +MAT 19:9!7 +MAT 19:9!8 +MAT 19:9!9 +MAT 19:9!10 +MAT 19:9!11 +MAT 19:9!12 +MAT 19:9!13 +MAT 19:9!14 +MAT 19:9!15 +MAT 19:9!16 +MAT 19:9!17 +MAT 19:10!1 +MAT 19:10!2 +MAT 19:10!3 +MAT 19:10!4 +MAT 19:10!5 +MAT 19:10!6 +MAT 19:10!7 +MAT 19:10!8 +MAT 19:10!9 +MAT 19:10!10 +MAT 19:10!11 +MAT 19:10!12 +MAT 19:10!13 +MAT 19:10!14 +MAT 19:10!15 +MAT 19:10!16 +MAT 19:10!17 +MAT 19:11!2 +MAT 19:11!1 +MAT 19:11!3 +MAT 19:11!4 +MAT 19:11!5 +MAT 19:11!6 +MAT 19:11!7 +MAT 19:11!8 +MAT 19:11!9 +MAT 19:11!10 +MAT 19:11!11 +MAT 19:11!12 +MAT 19:11!13 +MAT 19:12!2 +MAT 19:12!1 +MAT 19:12!3 +MAT 19:12!4 +MAT 19:12!5 +MAT 19:12!6 +MAT 19:12!7 +MAT 19:12!8 +MAT 19:12!9 +MAT 19:12!10 +MAT 19:12!11 +MAT 19:12!12 +MAT 19:12!13 +MAT 19:12!14 +MAT 19:12!15 +MAT 19:12!16 +MAT 19:12!17 +MAT 19:12!18 +MAT 19:12!19 +MAT 19:12!20 +MAT 19:12!21 +MAT 19:12!22 +MAT 19:12!23 +MAT 19:12!24 +MAT 19:12!25 +MAT 19:12!26 +MAT 19:12!27 +MAT 19:12!28 +MAT 19:12!29 +MAT 19:12!30 +MAT 19:12!31 +MAT 19:12!32 +MAT 19:13!1 +MAT 19:13!2 +MAT 19:13!3 +MAT 19:13!4 +MAT 19:13!5 +MAT 19:13!6 +MAT 19:13!7 +MAT 19:13!8 +MAT 19:13!9 +MAT 19:13!10 +MAT 19:13!11 +MAT 19:13!13 +MAT 19:13!12 +MAT 19:13!14 +MAT 19:13!15 +MAT 19:13!16 +MAT 19:14!2 +MAT 19:14!1 +MAT 19:14!3 +MAT 19:14!4 +MAT 19:14!5 +MAT 19:14!6 +MAT 19:14!7 +MAT 19:14!8 +MAT 19:14!9 +MAT 19:14!10 +MAT 19:14!11 +MAT 19:14!12 +MAT 19:14!13 +MAT 19:14!14 +MAT 19:14!16 +MAT 19:14!15 +MAT 19:14!17 +MAT 19:14!18 +MAT 19:14!19 +MAT 19:14!20 +MAT 19:14!21 +MAT 19:14!22 +MAT 19:15!1 +MAT 19:15!2 +MAT 19:15!3 +MAT 19:15!4 +MAT 19:15!5 +MAT 19:15!6 +MAT 19:15!7 +MAT 19:16!1 +MAT 19:16!2 +MAT 19:16!3 +MAT 19:16!4 +MAT 19:16!5 +MAT 19:16!6 +MAT 19:16!7 +MAT 19:16!8 +MAT 19:16!9 +MAT 19:16!10 +MAT 19:16!11 +MAT 19:16!12 +MAT 19:16!13 +MAT 19:16!14 +MAT 19:17!2 +MAT 19:17!1 +MAT 19:17!3 +MAT 19:17!4 +MAT 19:17!5 +MAT 19:17!6 +MAT 19:17!7 +MAT 19:17!8 +MAT 19:17!9 +MAT 19:17!10 +MAT 19:17!11 +MAT 19:17!12 +MAT 19:17!13 +MAT 19:17!14 +MAT 19:17!16 +MAT 19:17!15 +MAT 19:17!17 +MAT 19:17!18 +MAT 19:17!19 +MAT 19:17!20 +MAT 19:17!21 +MAT 19:17!22 +MAT 19:17!23 +MAT 19:17!24 +MAT 19:18!1 +MAT 19:18!2 +MAT 19:18!3 +MAT 19:18!5 +MAT 19:18!4 +MAT 19:18!6 +MAT 19:18!7 +MAT 19:18!8 +MAT 19:18!9 +MAT 19:18!10 +MAT 19:18!11 +MAT 19:18!12 +MAT 19:18!13 +MAT 19:18!14 +MAT 19:18!15 +MAT 19:18!16 +MAT 19:19!1 +MAT 19:19!2 +MAT 19:19!3 +MAT 19:19!4 +MAT 19:19!5 +MAT 19:19!6 +MAT 19:19!7 +MAT 19:19!8 +MAT 19:19!9 +MAT 19:19!10 +MAT 19:19!11 +MAT 19:19!12 +MAT 19:19!13 +MAT 19:20!1 +MAT 19:20!2 +MAT 19:20!3 +MAT 19:20!4 +MAT 19:20!5 +MAT 19:20!6 +MAT 19:20!7 +MAT 19:20!8 +MAT 19:20!9 +MAT 19:20!10 +MAT 19:21!1 +MAT 19:21!2 +MAT 19:21!3 +MAT 19:21!4 +MAT 19:21!5 +MAT 19:21!6 +MAT 19:21!7 +MAT 19:21!8 +MAT 19:21!9 +MAT 19:21!10 +MAT 19:21!11 +MAT 19:21!12 +MAT 19:21!13 +MAT 19:21!14 +MAT 19:21!15 +MAT 19:21!16 +MAT 19:21!17 +MAT 19:21!18 +MAT 19:21!19 +MAT 19:21!20 +MAT 19:21!21 +MAT 19:21!22 +MAT 19:21!23 +MAT 19:21!24 +MAT 19:21!25 +MAT 19:22!2 +MAT 19:22!3 +MAT 19:22!4 +MAT 19:22!1 +MAT 19:22!5 +MAT 19:22!6 +MAT 19:22!7 +MAT 19:22!8 +MAT 19:22!10 +MAT 19:22!9 +MAT 19:22!11 +MAT 19:22!12 +MAT 19:22!13 +MAT 19:23!2 +MAT 19:23!1 +MAT 19:23!3 +MAT 19:23!4 +MAT 19:23!5 +MAT 19:23!6 +MAT 19:23!7 +MAT 19:23!8 +MAT 19:23!9 +MAT 19:23!10 +MAT 19:23!11 +MAT 19:23!12 +MAT 19:23!13 +MAT 19:23!14 +MAT 19:23!15 +MAT 19:23!16 +MAT 19:23!17 +MAT 19:23!18 +MAT 19:23!19 +MAT 19:24!2 +MAT 19:24!1 +MAT 19:24!3 +MAT 19:24!4 +MAT 19:24!5 +MAT 19:24!6 +MAT 19:24!7 +MAT 19:24!8 +MAT 19:24!9 +MAT 19:24!10 +MAT 19:24!11 +MAT 19:24!12 +MAT 19:24!13 +MAT 19:24!14 +MAT 19:24!15 +MAT 19:24!16 +MAT 19:24!17 +MAT 19:24!18 +MAT 19:25!2 +MAT 19:25!1 +MAT 19:25!3 +MAT 19:25!4 +MAT 19:25!5 +MAT 19:25!6 +MAT 19:25!7 +MAT 19:25!9 +MAT 19:25!8 +MAT 19:25!10 +MAT 19:25!11 +MAT 19:26!2 +MAT 19:26!1 +MAT 19:26!3 +MAT 19:26!4 +MAT 19:26!5 +MAT 19:26!6 +MAT 19:26!7 +MAT 19:26!8 +MAT 19:26!9 +MAT 19:26!10 +MAT 19:26!11 +MAT 19:26!13 +MAT 19:26!12 +MAT 19:26!14 +MAT 19:26!15 +MAT 19:26!16 +MAT 19:27!1 +MAT 19:27!2 +MAT 19:27!3 +MAT 19:27!4 +MAT 19:27!5 +MAT 19:27!6 +MAT 19:27!7 +MAT 19:27!8 +MAT 19:27!9 +MAT 19:27!10 +MAT 19:27!11 +MAT 19:27!12 +MAT 19:27!13 +MAT 19:27!15 +MAT 19:27!14 +MAT 19:27!16 +MAT 19:27!17 +MAT 19:28!2 +MAT 19:28!1 +MAT 19:28!3 +MAT 19:28!4 +MAT 19:28!5 +MAT 19:28!6 +MAT 19:28!7 +MAT 19:28!8 +MAT 19:28!9 +MAT 19:28!10 +MAT 19:28!11 +MAT 19:28!12 +MAT 19:28!13 +MAT 19:28!14 +MAT 19:28!15 +MAT 19:28!16 +MAT 19:28!17 +MAT 19:28!18 +MAT 19:28!19 +MAT 19:28!20 +MAT 19:28!21 +MAT 19:28!22 +MAT 19:28!23 +MAT 19:28!24 +MAT 19:28!25 +MAT 19:28!26 +MAT 19:28!27 +MAT 19:28!28 +MAT 19:28!29 +MAT 19:28!30 +MAT 19:28!31 +MAT 19:28!32 +MAT 19:28!33 +MAT 19:28!34 +MAT 19:28!35 +MAT 19:28!36 +MAT 19:28!37 +MAT 19:28!38 +MAT 19:29!1 +MAT 19:29!2 +MAT 19:29!3 +MAT 19:29!4 +MAT 19:29!5 +MAT 19:29!6 +MAT 19:29!7 +MAT 19:29!8 +MAT 19:29!9 +MAT 19:29!10 +MAT 19:29!11 +MAT 19:29!12 +MAT 19:29!13 +MAT 19:29!14 +MAT 19:29!15 +MAT 19:29!16 +MAT 19:29!17 +MAT 19:29!18 +MAT 19:29!19 +MAT 19:29!20 +MAT 19:29!21 +MAT 19:29!22 +MAT 19:29!23 +MAT 19:29!24 +MAT 19:29!25 +MAT 19:29!26 +MAT 19:29!27 +MAT 19:30!2 +MAT 19:30!1 +MAT 19:30!4 +MAT 19:30!3 +MAT 19:30!5 +MAT 19:30!6 +MAT 19:30!7 +MAT 19:30!8 +MAT 20:1!2 +MAT 20:1!1 +MAT 20:1!3 +MAT 20:1!4 +MAT 20:1!5 +MAT 20:1!6 +MAT 20:1!7 +MAT 20:1!8 +MAT 20:1!9 +MAT 20:1!10 +MAT 20:1!11 +MAT 20:1!12 +MAT 20:1!13 +MAT 20:1!14 +MAT 20:1!15 +MAT 20:1!16 +MAT 20:1!17 +MAT 20:1!18 +MAT 20:1!19 +MAT 20:2!2 +MAT 20:2!1 +MAT 20:2!3 +MAT 20:2!4 +MAT 20:2!5 +MAT 20:2!6 +MAT 20:2!7 +MAT 20:2!8 +MAT 20:2!9 +MAT 20:2!10 +MAT 20:2!11 +MAT 20:2!12 +MAT 20:2!13 +MAT 20:2!14 +MAT 20:2!15 +MAT 20:3!1 +MAT 20:3!2 +MAT 20:3!3 +MAT 20:3!4 +MAT 20:3!5 +MAT 20:3!6 +MAT 20:3!7 +MAT 20:3!8 +MAT 20:3!9 +MAT 20:3!10 +MAT 20:3!11 +MAT 20:3!12 +MAT 20:4!1 +MAT 20:4!2 +MAT 20:4!3 +MAT 20:4!4 +MAT 20:4!5 +MAT 20:4!6 +MAT 20:4!7 +MAT 20:4!8 +MAT 20:4!9 +MAT 20:4!10 +MAT 20:4!12 +MAT 20:4!11 +MAT 20:4!13 +MAT 20:4!14 +MAT 20:4!15 +MAT 20:4!16 +MAT 20:5!2 +MAT 20:5!1 +MAT 20:5!3 +MAT 20:5!5 +MAT 20:5!4 +MAT 20:5!6 +MAT 20:5!7 +MAT 20:5!8 +MAT 20:5!9 +MAT 20:5!10 +MAT 20:5!11 +MAT 20:5!12 +MAT 20:5!13 +MAT 20:6!2 +MAT 20:6!1 +MAT 20:6!3 +MAT 20:6!4 +MAT 20:6!5 +MAT 20:6!6 +MAT 20:6!7 +MAT 20:6!8 +MAT 20:6!9 +MAT 20:6!10 +MAT 20:6!11 +MAT 20:6!12 +MAT 20:6!13 +MAT 20:6!14 +MAT 20:6!15 +MAT 20:6!16 +MAT 20:6!17 +MAT 20:6!18 +MAT 20:7!1 +MAT 20:7!2 +MAT 20:7!3 +MAT 20:7!4 +MAT 20:7!5 +MAT 20:7!6 +MAT 20:7!7 +MAT 20:7!8 +MAT 20:7!9 +MAT 20:7!10 +MAT 20:7!11 +MAT 20:7!12 +MAT 20:7!13 +MAT 20:7!14 +MAT 20:8!2 +MAT 20:8!1 +MAT 20:8!3 +MAT 20:8!4 +MAT 20:8!5 +MAT 20:8!6 +MAT 20:8!7 +MAT 20:8!8 +MAT 20:8!9 +MAT 20:8!10 +MAT 20:8!11 +MAT 20:8!12 +MAT 20:8!13 +MAT 20:8!14 +MAT 20:8!15 +MAT 20:8!16 +MAT 20:8!17 +MAT 20:8!18 +MAT 20:8!19 +MAT 20:8!20 +MAT 20:8!21 +MAT 20:8!22 +MAT 20:8!23 +MAT 20:8!24 +MAT 20:8!25 +MAT 20:9!2 +MAT 20:9!1 +MAT 20:9!3 +MAT 20:9!4 +MAT 20:9!5 +MAT 20:9!6 +MAT 20:9!7 +MAT 20:9!8 +MAT 20:9!9 +MAT 20:9!10 +MAT 20:10!1 +MAT 20:10!2 +MAT 20:10!3 +MAT 20:10!4 +MAT 20:10!5 +MAT 20:10!6 +MAT 20:10!7 +MAT 20:10!8 +MAT 20:10!9 +MAT 20:10!10 +MAT 20:10!11 +MAT 20:10!12 +MAT 20:10!13 +MAT 20:10!14 +MAT 20:10!15 +MAT 20:11!2 +MAT 20:11!1 +MAT 20:11!3 +MAT 20:11!4 +MAT 20:11!5 +MAT 20:11!6 +MAT 20:12!1 +MAT 20:12!2 +MAT 20:12!3 +MAT 20:12!4 +MAT 20:12!5 +MAT 20:12!6 +MAT 20:12!7 +MAT 20:12!8 +MAT 20:12!9 +MAT 20:12!10 +MAT 20:12!12 +MAT 20:12!11 +MAT 20:12!13 +MAT 20:12!14 +MAT 20:12!15 +MAT 20:12!16 +MAT 20:12!17 +MAT 20:12!18 +MAT 20:12!19 +MAT 20:12!20 +MAT 20:12!21 +MAT 20:13!2 +MAT 20:13!1 +MAT 20:13!3 +MAT 20:13!4 +MAT 20:13!5 +MAT 20:13!6 +MAT 20:13!7 +MAT 20:13!8 +MAT 20:13!9 +MAT 20:13!10 +MAT 20:13!11 +MAT 20:13!12 +MAT 20:13!13 +MAT 20:13!14 +MAT 20:14!1 +MAT 20:14!2 +MAT 20:14!3 +MAT 20:14!4 +MAT 20:14!5 +MAT 20:14!7 +MAT 20:14!6 +MAT 20:14!8 +MAT 20:14!9 +MAT 20:14!10 +MAT 20:14!11 +MAT 20:14!12 +MAT 20:14!13 +MAT 20:14!14 +MAT 20:15!1 +MAT 20:15!2 +MAT 20:15!3 +MAT 20:15!4 +MAT 20:15!5 +MAT 20:15!6 +MAT 20:15!7 +MAT 20:15!8 +MAT 20:15!9 +MAT 20:15!10 +MAT 20:15!11 +MAT 20:15!12 +MAT 20:15!13 +MAT 20:15!14 +MAT 20:15!15 +MAT 20:15!16 +MAT 20:15!17 +MAT 20:15!18 +MAT 20:15!19 +MAT 20:16!1 +MAT 20:16!2 +MAT 20:16!3 +MAT 20:16!4 +MAT 20:16!5 +MAT 20:16!6 +MAT 20:16!7 +MAT 20:16!8 +MAT 20:16!9 +MAT 20:17!2 +MAT 20:17!4 +MAT 20:17!1 +MAT 20:17!3 +MAT 20:17!5 +MAT 20:17!6 +MAT 20:17!7 +MAT 20:17!8 +MAT 20:17!9 +MAT 20:17!10 +MAT 20:17!11 +MAT 20:17!12 +MAT 20:17!13 +MAT 20:17!14 +MAT 20:17!15 +MAT 20:17!16 +MAT 20:17!17 +MAT 20:18!1 +MAT 20:18!2 +MAT 20:18!3 +MAT 20:18!4 +MAT 20:18!5 +MAT 20:18!6 +MAT 20:18!7 +MAT 20:18!8 +MAT 20:18!9 +MAT 20:18!10 +MAT 20:18!11 +MAT 20:18!12 +MAT 20:18!13 +MAT 20:18!14 +MAT 20:18!15 +MAT 20:18!16 +MAT 20:18!17 +MAT 20:18!18 +MAT 20:18!19 +MAT 20:19!1 +MAT 20:19!2 +MAT 20:19!3 +MAT 20:19!4 +MAT 20:19!5 +MAT 20:19!6 +MAT 20:19!7 +MAT 20:19!8 +MAT 20:19!9 +MAT 20:19!10 +MAT 20:19!11 +MAT 20:19!12 +MAT 20:19!13 +MAT 20:19!14 +MAT 20:19!15 +MAT 20:19!16 +MAT 20:19!17 +MAT 20:20!1 +MAT 20:20!2 +MAT 20:20!3 +MAT 20:20!4 +MAT 20:20!5 +MAT 20:20!6 +MAT 20:20!7 +MAT 20:20!8 +MAT 20:20!9 +MAT 20:20!10 +MAT 20:20!11 +MAT 20:20!12 +MAT 20:20!13 +MAT 20:20!14 +MAT 20:20!15 +MAT 20:20!16 +MAT 20:20!17 +MAT 20:20!18 +MAT 20:21!2 +MAT 20:21!1 +MAT 20:21!3 +MAT 20:21!4 +MAT 20:21!5 +MAT 20:21!6 +MAT 20:21!7 +MAT 20:21!8 +MAT 20:21!9 +MAT 20:21!10 +MAT 20:21!11 +MAT 20:21!12 +MAT 20:21!13 +MAT 20:21!14 +MAT 20:21!15 +MAT 20:21!16 +MAT 20:21!17 +MAT 20:21!18 +MAT 20:21!19 +MAT 20:21!20 +MAT 20:21!21 +MAT 20:21!22 +MAT 20:21!23 +MAT 20:21!24 +MAT 20:21!25 +MAT 20:21!26 +MAT 20:21!27 +MAT 20:21!28 +MAT 20:22!2 +MAT 20:22!1 +MAT 20:22!3 +MAT 20:22!4 +MAT 20:22!5 +MAT 20:22!6 +MAT 20:22!7 +MAT 20:22!8 +MAT 20:22!9 +MAT 20:22!10 +MAT 20:22!11 +MAT 20:22!12 +MAT 20:22!13 +MAT 20:22!14 +MAT 20:22!17 +MAT 20:22!15 +MAT 20:22!16 +MAT 20:22!18 +MAT 20:22!19 +MAT 20:22!20 +MAT 20:23!1 +MAT 20:23!2 +MAT 20:23!4 +MAT 20:23!3 +MAT 20:23!5 +MAT 20:23!6 +MAT 20:23!7 +MAT 20:23!9 +MAT 20:23!8 +MAT 20:23!10 +MAT 20:23!11 +MAT 20:23!12 +MAT 20:23!13 +MAT 20:23!14 +MAT 20:23!15 +MAT 20:23!16 +MAT 20:23!17 +MAT 20:23!18 +MAT 20:23!19 +MAT 20:23!20 +MAT 20:23!21 +MAT 20:23!22 +MAT 20:23!23 +MAT 20:23!24 +MAT 20:23!25 +MAT 20:23!26 +MAT 20:23!27 +MAT 20:23!28 +MAT 20:24!1 +MAT 20:24!2 +MAT 20:24!3 +MAT 20:24!4 +MAT 20:24!5 +MAT 20:24!6 +MAT 20:24!7 +MAT 20:24!8 +MAT 20:24!9 +MAT 20:25!2 +MAT 20:25!1 +MAT 20:25!3 +MAT 20:25!4 +MAT 20:25!5 +MAT 20:25!6 +MAT 20:25!7 +MAT 20:25!8 +MAT 20:25!9 +MAT 20:25!10 +MAT 20:25!11 +MAT 20:25!12 +MAT 20:25!13 +MAT 20:25!14 +MAT 20:25!15 +MAT 20:25!16 +MAT 20:25!17 +MAT 20:25!18 +MAT 20:25!19 +MAT 20:26!1 +MAT 20:26!2 +MAT 20:26!3 +MAT 20:26!4 +MAT 20:26!5 +MAT 20:26!6 +MAT 20:26!8 +MAT 20:26!7 +MAT 20:26!9 +MAT 20:26!10 +MAT 20:26!11 +MAT 20:26!12 +MAT 20:26!13 +MAT 20:26!14 +MAT 20:26!15 +MAT 20:26!16 +MAT 20:27!1 +MAT 20:27!3 +MAT 20:27!2 +MAT 20:27!4 +MAT 20:27!5 +MAT 20:27!6 +MAT 20:27!7 +MAT 20:27!8 +MAT 20:27!9 +MAT 20:27!10 +MAT 20:27!11 +MAT 20:28!1 +MAT 20:28!2 +MAT 20:28!3 +MAT 20:28!4 +MAT 20:28!5 +MAT 20:28!6 +MAT 20:28!7 +MAT 20:28!8 +MAT 20:28!9 +MAT 20:28!10 +MAT 20:28!11 +MAT 20:28!12 +MAT 20:28!13 +MAT 20:28!14 +MAT 20:28!15 +MAT 20:28!16 +MAT 20:28!17 +MAT 20:28!18 +MAT 20:29!1 +MAT 20:29!2 +MAT 20:29!3 +MAT 20:29!4 +MAT 20:29!5 +MAT 20:29!6 +MAT 20:29!7 +MAT 20:29!8 +MAT 20:29!9 +MAT 20:30!1 +MAT 20:30!2 +MAT 20:30!3 +MAT 20:30!4 +MAT 20:30!5 +MAT 20:30!6 +MAT 20:30!7 +MAT 20:30!8 +MAT 20:30!9 +MAT 20:30!10 +MAT 20:30!11 +MAT 20:30!12 +MAT 20:30!13 +MAT 20:30!14 +MAT 20:30!16 +MAT 20:30!17 +MAT 20:30!15 +MAT 20:30!18 +MAT 20:30!19 +MAT 20:31!2 +MAT 20:31!1 +MAT 20:31!3 +MAT 20:31!4 +MAT 20:31!5 +MAT 20:31!6 +MAT 20:31!7 +MAT 20:31!9 +MAT 20:31!8 +MAT 20:31!10 +MAT 20:31!11 +MAT 20:31!12 +MAT 20:31!14 +MAT 20:31!15 +MAT 20:31!13 +MAT 20:31!16 +MAT 20:31!17 +MAT 20:32!1 +MAT 20:32!2 +MAT 20:32!3 +MAT 20:32!4 +MAT 20:32!5 +MAT 20:32!6 +MAT 20:32!7 +MAT 20:32!8 +MAT 20:32!10 +MAT 20:32!9 +MAT 20:32!11 +MAT 20:32!12 +MAT 20:33!1 +MAT 20:33!2 +MAT 20:33!3 +MAT 20:33!4 +MAT 20:33!5 +MAT 20:33!6 +MAT 20:33!7 +MAT 20:33!8 +MAT 20:34!2 +MAT 20:34!1 +MAT 20:34!3 +MAT 20:34!4 +MAT 20:34!5 +MAT 20:34!6 +MAT 20:34!7 +MAT 20:34!8 +MAT 20:34!9 +MAT 20:34!10 +MAT 20:34!11 +MAT 20:34!12 +MAT 20:34!13 +MAT 20:34!14 +MAT 21:1!1 +MAT 21:1!2 +MAT 21:1!3 +MAT 21:1!4 +MAT 21:1!5 +MAT 21:1!6 +MAT 21:1!7 +MAT 21:1!8 +MAT 21:1!9 +MAT 21:1!10 +MAT 21:1!11 +MAT 21:1!12 +MAT 21:1!13 +MAT 21:1!14 +MAT 21:1!15 +MAT 21:1!16 +MAT 21:1!17 +MAT 21:1!18 +MAT 21:1!19 +MAT 21:2!1 +MAT 21:2!2 +MAT 21:2!3 +MAT 21:2!4 +MAT 21:2!5 +MAT 21:2!6 +MAT 21:2!7 +MAT 21:2!8 +MAT 21:2!9 +MAT 21:2!10 +MAT 21:2!11 +MAT 21:2!12 +MAT 21:2!13 +MAT 21:2!14 +MAT 21:2!15 +MAT 21:2!16 +MAT 21:2!17 +MAT 21:2!18 +MAT 21:2!19 +MAT 21:2!20 +MAT 21:2!21 +MAT 21:3!1 +MAT 21:3!2 +MAT 21:3!3 +MAT 21:3!4 +MAT 21:3!5 +MAT 21:3!6 +MAT 21:3!7 +MAT 21:3!8 +MAT 21:3!9 +MAT 21:3!10 +MAT 21:3!11 +MAT 21:3!12 +MAT 21:3!13 +MAT 21:3!15 +MAT 21:3!14 +MAT 21:3!16 +MAT 21:3!17 +MAT 21:4!2 +MAT 21:4!1 +MAT 21:4!3 +MAT 21:4!4 +MAT 21:4!5 +MAT 21:4!6 +MAT 21:4!7 +MAT 21:4!8 +MAT 21:4!9 +MAT 21:4!10 +MAT 21:4!11 +MAT 21:5!1 +MAT 21:5!2 +MAT 21:5!3 +MAT 21:5!4 +MAT 21:5!5 +MAT 21:5!6 +MAT 21:5!7 +MAT 21:5!8 +MAT 21:5!9 +MAT 21:5!10 +MAT 21:5!11 +MAT 21:5!12 +MAT 21:5!13 +MAT 21:5!14 +MAT 21:5!15 +MAT 21:5!16 +MAT 21:5!17 +MAT 21:5!18 +MAT 21:5!19 +MAT 21:5!20 +MAT 21:6!2 +MAT 21:6!3 +MAT 21:6!4 +MAT 21:6!1 +MAT 21:6!5 +MAT 21:6!6 +MAT 21:6!7 +MAT 21:6!8 +MAT 21:6!9 +MAT 21:6!10 +MAT 21:6!11 +MAT 21:7!1 +MAT 21:7!2 +MAT 21:7!3 +MAT 21:7!4 +MAT 21:7!5 +MAT 21:7!6 +MAT 21:7!7 +MAT 21:7!8 +MAT 21:7!9 +MAT 21:7!10 +MAT 21:7!11 +MAT 21:7!12 +MAT 21:7!13 +MAT 21:7!14 +MAT 21:7!15 +MAT 21:7!16 +MAT 21:8!2 +MAT 21:8!1 +MAT 21:8!3 +MAT 21:8!4 +MAT 21:8!5 +MAT 21:8!6 +MAT 21:8!7 +MAT 21:8!8 +MAT 21:8!9 +MAT 21:8!10 +MAT 21:8!11 +MAT 21:8!13 +MAT 21:8!12 +MAT 21:8!14 +MAT 21:8!15 +MAT 21:8!16 +MAT 21:8!17 +MAT 21:8!18 +MAT 21:8!19 +MAT 21:8!20 +MAT 21:8!21 +MAT 21:8!22 +MAT 21:8!23 +MAT 21:9!2 +MAT 21:9!1 +MAT 21:9!3 +MAT 21:9!4 +MAT 21:9!5 +MAT 21:9!6 +MAT 21:9!7 +MAT 21:9!8 +MAT 21:9!9 +MAT 21:9!10 +MAT 21:9!11 +MAT 21:9!12 +MAT 21:9!13 +MAT 21:9!14 +MAT 21:9!15 +MAT 21:9!16 +MAT 21:9!17 +MAT 21:9!18 +MAT 21:9!19 +MAT 21:9!20 +MAT 21:9!21 +MAT 21:9!22 +MAT 21:9!23 +MAT 21:9!24 +MAT 21:9!25 +MAT 21:10!1 +MAT 21:10!2 +MAT 21:10!3 +MAT 21:10!4 +MAT 21:10!5 +MAT 21:10!6 +MAT 21:10!7 +MAT 21:10!8 +MAT 21:10!9 +MAT 21:10!10 +MAT 21:10!11 +MAT 21:10!12 +MAT 21:10!13 +MAT 21:11!2 +MAT 21:11!1 +MAT 21:11!3 +MAT 21:11!4 +MAT 21:11!5 +MAT 21:11!6 +MAT 21:11!7 +MAT 21:11!8 +MAT 21:11!9 +MAT 21:11!10 +MAT 21:11!11 +MAT 21:11!12 +MAT 21:11!13 +MAT 21:11!14 +MAT 21:12!1 +MAT 21:12!2 +MAT 21:12!3 +MAT 21:12!4 +MAT 21:12!5 +MAT 21:12!6 +MAT 21:12!7 +MAT 21:12!8 +MAT 21:12!9 +MAT 21:12!10 +MAT 21:12!11 +MAT 21:12!12 +MAT 21:12!13 +MAT 21:12!14 +MAT 21:12!15 +MAT 21:12!16 +MAT 21:12!17 +MAT 21:12!22 +MAT 21:12!18 +MAT 21:12!19 +MAT 21:12!20 +MAT 21:12!21 +MAT 21:12!23 +MAT 21:12!24 +MAT 21:12!25 +MAT 21:12!26 +MAT 21:12!27 +MAT 21:12!28 +MAT 21:12!29 +MAT 21:13!1 +MAT 21:13!2 +MAT 21:13!3 +MAT 21:13!4 +MAT 21:13!5 +MAT 21:13!6 +MAT 21:13!7 +MAT 21:13!8 +MAT 21:13!9 +MAT 21:13!10 +MAT 21:13!12 +MAT 21:13!11 +MAT 21:13!13 +MAT 21:13!14 +MAT 21:13!15 +MAT 21:13!16 +MAT 21:14!1 +MAT 21:14!2 +MAT 21:14!3 +MAT 21:14!4 +MAT 21:14!5 +MAT 21:14!6 +MAT 21:14!7 +MAT 21:14!8 +MAT 21:14!9 +MAT 21:14!10 +MAT 21:14!11 +MAT 21:14!12 +MAT 21:15!2 +MAT 21:15!3 +MAT 21:15!4 +MAT 21:15!5 +MAT 21:15!6 +MAT 21:15!7 +MAT 21:15!1 +MAT 21:15!8 +MAT 21:15!9 +MAT 21:15!10 +MAT 21:15!11 +MAT 21:15!12 +MAT 21:15!13 +MAT 21:15!14 +MAT 21:15!15 +MAT 21:15!16 +MAT 21:15!17 +MAT 21:15!18 +MAT 21:15!19 +MAT 21:15!20 +MAT 21:15!21 +MAT 21:15!22 +MAT 21:15!23 +MAT 21:15!24 +MAT 21:15!25 +MAT 21:15!26 +MAT 21:16!1 +MAT 21:16!2 +MAT 21:16!3 +MAT 21:16!4 +MAT 21:16!5 +MAT 21:16!6 +MAT 21:16!7 +MAT 21:16!9 +MAT 21:16!8 +MAT 21:16!10 +MAT 21:16!11 +MAT 21:16!12 +MAT 21:16!13 +MAT 21:16!14 +MAT 21:16!15 +MAT 21:16!16 +MAT 21:16!17 +MAT 21:16!18 +MAT 21:16!19 +MAT 21:16!20 +MAT 21:16!21 +MAT 21:16!22 +MAT 21:16!23 +MAT 21:17!1 +MAT 21:17!2 +MAT 21:17!3 +MAT 21:17!4 +MAT 21:17!5 +MAT 21:17!6 +MAT 21:17!7 +MAT 21:17!8 +MAT 21:17!9 +MAT 21:17!10 +MAT 21:17!11 +MAT 21:17!12 +MAT 21:18!2 +MAT 21:18!1 +MAT 21:18!3 +MAT 21:18!4 +MAT 21:18!5 +MAT 21:18!6 +MAT 21:18!7 +MAT 21:19!1 +MAT 21:19!2 +MAT 21:19!3 +MAT 21:19!4 +MAT 21:19!5 +MAT 21:19!6 +MAT 21:19!7 +MAT 21:19!8 +MAT 21:19!9 +MAT 21:19!10 +MAT 21:19!11 +MAT 21:19!12 +MAT 21:19!13 +MAT 21:19!14 +MAT 21:19!15 +MAT 21:19!16 +MAT 21:19!17 +MAT 21:19!18 +MAT 21:19!19 +MAT 21:19!20 +MAT 21:19!21 +MAT 21:19!22 +MAT 21:19!23 +MAT 21:19!24 +MAT 21:19!25 +MAT 21:19!26 +MAT 21:19!27 +MAT 21:19!28 +MAT 21:19!29 +MAT 21:19!30 +MAT 21:19!31 +MAT 21:19!32 +MAT 21:19!33 +MAT 21:19!34 +MAT 21:19!35 +MAT 21:19!36 +MAT 21:20!1 +MAT 21:20!2 +MAT 21:20!3 +MAT 21:20!4 +MAT 21:20!5 +MAT 21:20!6 +MAT 21:20!7 +MAT 21:20!8 +MAT 21:20!9 +MAT 21:20!10 +MAT 21:20!11 +MAT 21:21!2 +MAT 21:21!1 +MAT 21:21!3 +MAT 21:21!4 +MAT 21:21!5 +MAT 21:21!6 +MAT 21:21!7 +MAT 21:21!8 +MAT 21:21!9 +MAT 21:21!10 +MAT 21:21!11 +MAT 21:21!12 +MAT 21:21!13 +MAT 21:21!14 +MAT 21:21!15 +MAT 21:21!16 +MAT 21:21!17 +MAT 21:21!18 +MAT 21:21!19 +MAT 21:21!20 +MAT 21:21!21 +MAT 21:21!22 +MAT 21:21!23 +MAT 21:21!24 +MAT 21:21!25 +MAT 21:21!26 +MAT 21:21!27 +MAT 21:21!28 +MAT 21:21!29 +MAT 21:21!30 +MAT 21:21!31 +MAT 21:21!32 +MAT 21:21!33 +MAT 21:21!34 +MAT 21:22!1 +MAT 21:22!2 +MAT 21:22!4 +MAT 21:22!3 +MAT 21:22!5 +MAT 21:22!6 +MAT 21:22!7 +MAT 21:22!8 +MAT 21:22!9 +MAT 21:22!10 +MAT 21:23!1 +MAT 21:23!2 +MAT 21:23!3 +MAT 21:23!4 +MAT 21:23!5 +MAT 21:23!6 +MAT 21:23!7 +MAT 21:23!8 +MAT 21:23!9 +MAT 21:23!10 +MAT 21:23!11 +MAT 21:23!12 +MAT 21:23!13 +MAT 21:23!14 +MAT 21:23!15 +MAT 21:23!16 +MAT 21:23!17 +MAT 21:23!18 +MAT 21:23!19 +MAT 21:23!20 +MAT 21:23!21 +MAT 21:23!22 +MAT 21:23!23 +MAT 21:23!24 +MAT 21:23!25 +MAT 21:23!26 +MAT 21:23!27 +MAT 21:23!28 +MAT 21:23!29 +MAT 21:24!2 +MAT 21:24!1 +MAT 21:24!3 +MAT 21:24!4 +MAT 21:24!5 +MAT 21:24!6 +MAT 21:24!7 +MAT 21:24!8 +MAT 21:24!9 +MAT 21:24!10 +MAT 21:24!11 +MAT 21:24!13 +MAT 21:24!12 +MAT 21:24!14 +MAT 21:24!15 +MAT 21:24!16 +MAT 21:24!17 +MAT 21:24!18 +MAT 21:24!19 +MAT 21:24!20 +MAT 21:24!21 +MAT 21:24!22 +MAT 21:24!23 +MAT 21:25!1 +MAT 21:25!2 +MAT 21:25!3 +MAT 21:25!4 +MAT 21:25!5 +MAT 21:25!6 +MAT 21:25!7 +MAT 21:25!8 +MAT 21:25!9 +MAT 21:25!10 +MAT 21:25!11 +MAT 21:25!13 +MAT 21:25!12 +MAT 21:25!14 +MAT 21:25!15 +MAT 21:25!16 +MAT 21:25!17 +MAT 21:25!18 +MAT 21:25!19 +MAT 21:25!20 +MAT 21:25!21 +MAT 21:25!22 +MAT 21:25!23 +MAT 21:25!26 +MAT 21:25!24 +MAT 21:25!25 +MAT 21:25!27 +MAT 21:25!28 +MAT 21:25!29 +MAT 21:26!2 +MAT 21:26!1 +MAT 21:26!3 +MAT 21:26!4 +MAT 21:26!5 +MAT 21:26!6 +MAT 21:26!7 +MAT 21:26!8 +MAT 21:26!10 +MAT 21:26!9 +MAT 21:26!11 +MAT 21:26!12 +MAT 21:26!13 +MAT 21:26!14 +MAT 21:26!15 +MAT 21:27!1 +MAT 21:27!2 +MAT 21:27!3 +MAT 21:27!4 +MAT 21:27!5 +MAT 21:27!6 +MAT 21:27!7 +MAT 21:27!8 +MAT 21:27!9 +MAT 21:27!10 +MAT 21:27!11 +MAT 21:27!12 +MAT 21:27!13 +MAT 21:27!14 +MAT 21:27!15 +MAT 21:27!16 +MAT 21:27!17 +MAT 21:27!18 +MAT 21:27!19 +MAT 21:27!20 +MAT 21:28!2 +MAT 21:28!1 +MAT 21:28!3 +MAT 21:28!4 +MAT 21:28!5 +MAT 21:28!6 +MAT 21:28!7 +MAT 21:28!8 +MAT 21:28!9 +MAT 21:28!10 +MAT 21:28!11 +MAT 21:28!12 +MAT 21:28!13 +MAT 21:28!14 +MAT 21:28!15 +MAT 21:28!16 +MAT 21:28!17 +MAT 21:28!18 +MAT 21:28!19 +MAT 21:29!2 +MAT 21:29!1 +MAT 21:29!3 +MAT 21:29!4 +MAT 21:29!5 +MAT 21:29!6 +MAT 21:29!7 +MAT 21:29!8 +MAT 21:29!9 +MAT 21:30!2 +MAT 21:30!1 +MAT 21:30!3 +MAT 21:30!4 +MAT 21:30!5 +MAT 21:30!6 +MAT 21:30!8 +MAT 21:30!7 +MAT 21:30!9 +MAT 21:30!10 +MAT 21:30!11 +MAT 21:30!12 +MAT 21:30!13 +MAT 21:30!14 +MAT 21:30!15 +MAT 21:31!1 +MAT 21:31!2 +MAT 21:31!3 +MAT 21:31!4 +MAT 21:31!5 +MAT 21:31!6 +MAT 21:31!7 +MAT 21:31!8 +MAT 21:31!9 +MAT 21:31!10 +MAT 21:31!11 +MAT 21:31!12 +MAT 21:31!13 +MAT 21:31!14 +MAT 21:31!15 +MAT 21:31!16 +MAT 21:31!17 +MAT 21:31!18 +MAT 21:31!19 +MAT 21:31!20 +MAT 21:31!21 +MAT 21:31!22 +MAT 21:31!23 +MAT 21:31!24 +MAT 21:31!25 +MAT 21:31!26 +MAT 21:31!27 +MAT 21:31!28 +MAT 21:31!29 +MAT 21:31!30 +MAT 21:31!31 +MAT 21:31!32 +MAT 21:32!2 +MAT 21:32!1 +MAT 21:32!3 +MAT 21:32!4 +MAT 21:32!5 +MAT 21:32!6 +MAT 21:32!7 +MAT 21:32!8 +MAT 21:32!9 +MAT 21:32!10 +MAT 21:32!11 +MAT 21:32!12 +MAT 21:32!14 +MAT 21:32!13 +MAT 21:32!15 +MAT 21:32!16 +MAT 21:32!17 +MAT 21:32!18 +MAT 21:32!19 +MAT 21:32!20 +MAT 21:32!22 +MAT 21:32!21 +MAT 21:32!23 +MAT 21:32!24 +MAT 21:32!25 +MAT 21:32!26 +MAT 21:32!27 +MAT 21:32!28 +MAT 21:32!29 +MAT 21:33!1 +MAT 21:33!2 +MAT 21:33!3 +MAT 21:33!4 +MAT 21:33!5 +MAT 21:33!6 +MAT 21:33!7 +MAT 21:33!8 +MAT 21:33!9 +MAT 21:33!10 +MAT 21:33!11 +MAT 21:33!12 +MAT 21:33!13 +MAT 21:33!14 +MAT 21:33!15 +MAT 21:33!16 +MAT 21:33!17 +MAT 21:33!18 +MAT 21:33!19 +MAT 21:33!20 +MAT 21:33!21 +MAT 21:33!22 +MAT 21:33!23 +MAT 21:33!24 +MAT 21:33!25 +MAT 21:33!26 +MAT 21:33!27 +MAT 21:34!2 +MAT 21:34!1 +MAT 21:34!3 +MAT 21:34!4 +MAT 21:34!5 +MAT 21:34!6 +MAT 21:34!7 +MAT 21:34!8 +MAT 21:34!9 +MAT 21:34!10 +MAT 21:34!11 +MAT 21:34!12 +MAT 21:34!13 +MAT 21:34!14 +MAT 21:34!15 +MAT 21:34!16 +MAT 21:34!17 +MAT 21:34!18 +MAT 21:35!1 +MAT 21:35!2 +MAT 21:35!3 +MAT 21:35!4 +MAT 21:35!5 +MAT 21:35!6 +MAT 21:35!7 +MAT 21:35!9 +MAT 21:35!8 +MAT 21:35!10 +MAT 21:35!12 +MAT 21:35!11 +MAT 21:35!13 +MAT 21:35!15 +MAT 21:35!14 +MAT 21:35!16 +MAT 21:36!1 +MAT 21:36!2 +MAT 21:36!3 +MAT 21:36!4 +MAT 21:36!5 +MAT 21:36!6 +MAT 21:36!7 +MAT 21:36!8 +MAT 21:36!9 +MAT 21:36!10 +MAT 21:36!11 +MAT 21:37!2 +MAT 21:37!1 +MAT 21:37!3 +MAT 21:37!4 +MAT 21:37!5 +MAT 21:37!6 +MAT 21:37!7 +MAT 21:37!8 +MAT 21:37!9 +MAT 21:37!10 +MAT 21:37!11 +MAT 21:37!12 +MAT 21:37!13 +MAT 21:38!2 +MAT 21:38!1 +MAT 21:38!3 +MAT 21:38!4 +MAT 21:38!5 +MAT 21:38!6 +MAT 21:38!7 +MAT 21:38!8 +MAT 21:38!9 +MAT 21:38!10 +MAT 21:38!11 +MAT 21:38!12 +MAT 21:38!13 +MAT 21:38!14 +MAT 21:38!15 +MAT 21:38!16 +MAT 21:38!17 +MAT 21:38!18 +MAT 21:38!19 +MAT 21:38!20 +MAT 21:38!21 +MAT 21:39!1 +MAT 21:39!2 +MAT 21:39!3 +MAT 21:39!4 +MAT 21:39!5 +MAT 21:39!6 +MAT 21:39!7 +MAT 21:39!8 +MAT 21:39!9 +MAT 21:40!2 +MAT 21:40!1 +MAT 21:40!3 +MAT 21:40!4 +MAT 21:40!5 +MAT 21:40!6 +MAT 21:40!7 +MAT 21:40!8 +MAT 21:40!9 +MAT 21:40!10 +MAT 21:40!11 +MAT 21:40!12 +MAT 21:41!1 +MAT 21:41!2 +MAT 21:41!3 +MAT 21:41!4 +MAT 21:41!5 +MAT 21:41!6 +MAT 21:41!7 +MAT 21:41!8 +MAT 21:41!9 +MAT 21:41!10 +MAT 21:41!11 +MAT 21:41!12 +MAT 21:41!13 +MAT 21:41!14 +MAT 21:41!15 +MAT 21:41!16 +MAT 21:41!17 +MAT 21:41!18 +MAT 21:41!19 +MAT 21:41!20 +MAT 21:41!21 +MAT 21:42!1 +MAT 21:42!2 +MAT 21:42!3 +MAT 21:42!4 +MAT 21:42!5 +MAT 21:42!6 +MAT 21:42!7 +MAT 21:42!8 +MAT 21:42!9 +MAT 21:42!10 +MAT 21:42!11 +MAT 21:42!12 +MAT 21:42!13 +MAT 21:42!14 +MAT 21:42!15 +MAT 21:42!16 +MAT 21:42!17 +MAT 21:42!18 +MAT 21:42!19 +MAT 21:42!20 +MAT 21:42!21 +MAT 21:42!22 +MAT 21:42!23 +MAT 21:42!24 +MAT 21:42!25 +MAT 21:42!26 +MAT 21:42!27 +MAT 21:42!28 +MAT 21:42!29 +MAT 21:43!1 +MAT 21:43!2 +MAT 21:43!3 +MAT 21:43!4 +MAT 21:43!5 +MAT 21:43!6 +MAT 21:43!7 +MAT 21:43!8 +MAT 21:43!9 +MAT 21:43!10 +MAT 21:43!11 +MAT 21:43!12 +MAT 21:43!13 +MAT 21:43!14 +MAT 21:43!15 +MAT 21:43!16 +MAT 21:43!17 +MAT 21:43!18 +MAT 21:43!19 +MAT 21:44!1 +MAT 21:44!2 +MAT 21:44!3 +MAT 21:44!4 +MAT 21:44!5 +MAT 21:44!6 +MAT 21:44!7 +MAT 21:44!8 +MAT 21:44!11 +MAT 21:44!9 +MAT 21:44!12 +MAT 21:44!10 +MAT 21:44!13 +MAT 21:44!14 +MAT 21:44!15 +MAT 21:45!1 +MAT 21:45!3 +MAT 21:45!4 +MAT 21:45!5 +MAT 21:45!6 +MAT 21:45!7 +MAT 21:45!2 +MAT 21:45!8 +MAT 21:45!9 +MAT 21:45!10 +MAT 21:45!11 +MAT 21:45!12 +MAT 21:45!13 +MAT 21:45!14 +MAT 21:45!15 +MAT 21:46!1 +MAT 21:46!2 +MAT 21:46!3 +MAT 21:46!4 +MAT 21:46!5 +MAT 21:46!6 +MAT 21:46!7 +MAT 21:46!8 +MAT 21:46!9 +MAT 21:46!10 +MAT 21:46!11 +MAT 21:46!12 +MAT 22:1!1 +MAT 22:1!2 +MAT 22:1!3 +MAT 22:1!4 +MAT 22:1!5 +MAT 22:1!6 +MAT 22:1!7 +MAT 22:1!8 +MAT 22:1!9 +MAT 22:1!10 +MAT 22:2!1 +MAT 22:2!2 +MAT 22:2!3 +MAT 22:2!4 +MAT 22:2!5 +MAT 22:2!6 +MAT 22:2!7 +MAT 22:2!8 +MAT 22:2!9 +MAT 22:2!10 +MAT 22:2!11 +MAT 22:2!12 +MAT 22:2!13 +MAT 22:3!1 +MAT 22:3!2 +MAT 22:3!3 +MAT 22:3!4 +MAT 22:3!5 +MAT 22:3!6 +MAT 22:3!7 +MAT 22:3!8 +MAT 22:3!9 +MAT 22:3!10 +MAT 22:3!11 +MAT 22:3!12 +MAT 22:3!13 +MAT 22:3!14 +MAT 22:3!15 +MAT 22:4!1 +MAT 22:4!2 +MAT 22:4!3 +MAT 22:4!4 +MAT 22:4!5 +MAT 22:4!6 +MAT 22:4!7 +MAT 22:4!8 +MAT 22:4!9 +MAT 22:4!10 +MAT 22:4!11 +MAT 22:4!12 +MAT 22:4!13 +MAT 22:4!14 +MAT 22:4!15 +MAT 22:4!16 +MAT 22:4!17 +MAT 22:4!18 +MAT 22:4!19 +MAT 22:4!20 +MAT 22:4!21 +MAT 22:4!22 +MAT 22:4!23 +MAT 22:4!24 +MAT 22:4!25 +MAT 22:4!26 +MAT 22:4!27 +MAT 22:5!2 +MAT 22:5!1 +MAT 22:5!3 +MAT 22:5!4 +MAT 22:5!6 +MAT 22:5!5 +MAT 22:5!7 +MAT 22:5!8 +MAT 22:5!9 +MAT 22:5!10 +MAT 22:5!12 +MAT 22:5!11 +MAT 22:5!13 +MAT 22:5!14 +MAT 22:5!15 +MAT 22:5!16 +MAT 22:6!2 +MAT 22:6!1 +MAT 22:6!3 +MAT 22:6!4 +MAT 22:6!5 +MAT 22:6!6 +MAT 22:6!7 +MAT 22:6!8 +MAT 22:6!9 +MAT 22:6!10 +MAT 22:7!2 +MAT 22:7!1 +MAT 22:7!3 +MAT 22:7!4 +MAT 22:7!5 +MAT 22:7!6 +MAT 22:7!7 +MAT 22:7!8 +MAT 22:7!9 +MAT 22:7!10 +MAT 22:7!11 +MAT 22:7!12 +MAT 22:7!13 +MAT 22:7!14 +MAT 22:7!15 +MAT 22:7!16 +MAT 22:7!17 +MAT 22:7!18 +MAT 22:8!1 +MAT 22:8!2 +MAT 22:8!3 +MAT 22:8!4 +MAT 22:8!5 +MAT 22:8!7 +MAT 22:8!6 +MAT 22:8!8 +MAT 22:8!9 +MAT 22:8!10 +MAT 22:8!12 +MAT 22:8!11 +MAT 22:8!13 +MAT 22:8!14 +MAT 22:8!15 +MAT 22:8!16 +MAT 22:9!2 +MAT 22:9!1 +MAT 22:9!3 +MAT 22:9!4 +MAT 22:9!5 +MAT 22:9!6 +MAT 22:9!7 +MAT 22:9!8 +MAT 22:9!10 +MAT 22:9!9 +MAT 22:9!11 +MAT 22:9!12 +MAT 22:9!13 +MAT 22:9!14 +MAT 22:9!15 +MAT 22:10!1 +MAT 22:10!3 +MAT 22:10!4 +MAT 22:10!5 +MAT 22:10!2 +MAT 22:10!6 +MAT 22:10!7 +MAT 22:10!8 +MAT 22:10!9 +MAT 22:10!10 +MAT 22:10!11 +MAT 22:10!12 +MAT 22:10!14 +MAT 22:10!13 +MAT 22:10!15 +MAT 22:10!16 +MAT 22:10!17 +MAT 22:10!18 +MAT 22:10!19 +MAT 22:10!20 +MAT 22:10!21 +MAT 22:11!2 +MAT 22:11!3 +MAT 22:11!4 +MAT 22:11!1 +MAT 22:11!5 +MAT 22:11!6 +MAT 22:11!7 +MAT 22:11!8 +MAT 22:11!9 +MAT 22:11!10 +MAT 22:11!11 +MAT 22:11!12 +MAT 22:11!13 +MAT 22:11!14 +MAT 22:12!1 +MAT 22:12!2 +MAT 22:12!3 +MAT 22:12!4 +MAT 22:12!5 +MAT 22:12!6 +MAT 22:12!7 +MAT 22:12!8 +MAT 22:12!9 +MAT 22:12!10 +MAT 22:12!11 +MAT 22:12!13 +MAT 22:12!12 +MAT 22:12!14 +MAT 22:13!1 +MAT 22:13!2 +MAT 22:13!3 +MAT 22:13!4 +MAT 22:13!5 +MAT 22:13!6 +MAT 22:13!7 +MAT 22:13!8 +MAT 22:13!9 +MAT 22:13!10 +MAT 22:13!11 +MAT 22:13!12 +MAT 22:13!13 +MAT 22:13!14 +MAT 22:13!15 +MAT 22:13!16 +MAT 22:13!17 +MAT 22:13!18 +MAT 22:13!19 +MAT 22:13!20 +MAT 22:13!21 +MAT 22:13!22 +MAT 22:13!23 +MAT 22:13!24 +MAT 22:13!25 +MAT 22:13!26 +MAT 22:13!27 +MAT 22:14!2 +MAT 22:14!1 +MAT 22:14!3 +MAT 22:14!4 +MAT 22:14!6 +MAT 22:14!5 +MAT 22:14!7 +MAT 22:15!1 +MAT 22:15!2 +MAT 22:15!3 +MAT 22:15!4 +MAT 22:15!5 +MAT 22:15!6 +MAT 22:15!7 +MAT 22:15!8 +MAT 22:15!9 +MAT 22:15!10 +MAT 22:15!11 +MAT 22:16!1 +MAT 22:16!2 +MAT 22:16!3 +MAT 22:16!4 +MAT 22:16!5 +MAT 22:16!6 +MAT 22:16!7 +MAT 22:16!8 +MAT 22:16!9 +MAT 22:16!10 +MAT 22:16!11 +MAT 22:16!12 +MAT 22:16!13 +MAT 22:16!14 +MAT 22:16!15 +MAT 22:16!16 +MAT 22:16!17 +MAT 22:16!18 +MAT 22:16!19 +MAT 22:16!20 +MAT 22:16!21 +MAT 22:16!22 +MAT 22:16!23 +MAT 22:16!24 +MAT 22:16!25 +MAT 22:16!26 +MAT 22:16!27 +MAT 22:16!28 +MAT 22:16!29 +MAT 22:16!31 +MAT 22:16!30 +MAT 22:16!32 +MAT 22:16!33 +MAT 22:16!34 +MAT 22:16!35 +MAT 22:17!2 +MAT 22:17!1 +MAT 22:17!3 +MAT 22:17!4 +MAT 22:17!5 +MAT 22:17!6 +MAT 22:17!7 +MAT 22:17!8 +MAT 22:17!9 +MAT 22:17!10 +MAT 22:17!11 +MAT 22:17!12 +MAT 22:18!2 +MAT 22:18!3 +MAT 22:18!4 +MAT 22:18!1 +MAT 22:18!5 +MAT 22:18!6 +MAT 22:18!7 +MAT 22:18!8 +MAT 22:18!9 +MAT 22:18!10 +MAT 22:18!11 +MAT 22:18!12 +MAT 22:19!1 +MAT 22:19!2 +MAT 22:19!3 +MAT 22:19!4 +MAT 22:19!5 +MAT 22:19!6 +MAT 22:19!8 +MAT 22:19!7 +MAT 22:19!9 +MAT 22:19!10 +MAT 22:19!11 +MAT 22:20!1 +MAT 22:20!2 +MAT 22:20!3 +MAT 22:20!4 +MAT 22:20!5 +MAT 22:20!6 +MAT 22:20!7 +MAT 22:20!8 +MAT 22:20!9 +MAT 22:20!10 +MAT 22:21!1 +MAT 22:21!2 +MAT 22:21!3 +MAT 22:21!4 +MAT 22:21!5 +MAT 22:21!7 +MAT 22:21!6 +MAT 22:21!8 +MAT 22:21!9 +MAT 22:21!10 +MAT 22:21!11 +MAT 22:21!12 +MAT 22:21!13 +MAT 22:21!14 +MAT 22:21!15 +MAT 22:21!16 +MAT 22:22!1 +MAT 22:22!2 +MAT 22:22!3 +MAT 22:22!4 +MAT 22:22!5 +MAT 22:22!6 +MAT 22:22!7 +MAT 22:23!1 +MAT 22:23!2 +MAT 22:23!3 +MAT 22:23!4 +MAT 22:23!5 +MAT 22:23!6 +MAT 22:23!7 +MAT 22:23!8 +MAT 22:23!9 +MAT 22:23!10 +MAT 22:23!11 +MAT 22:23!12 +MAT 22:23!13 +MAT 22:23!14 +MAT 22:24!1 +MAT 22:24!2 +MAT 22:24!3 +MAT 22:24!4 +MAT 22:24!5 +MAT 22:24!6 +MAT 22:24!7 +MAT 22:24!8 +MAT 22:24!9 +MAT 22:24!10 +MAT 22:24!11 +MAT 22:24!12 +MAT 22:24!13 +MAT 22:24!14 +MAT 22:24!15 +MAT 22:24!16 +MAT 22:24!17 +MAT 22:24!18 +MAT 22:24!19 +MAT 22:24!20 +MAT 22:24!21 +MAT 22:24!22 +MAT 22:24!23 +MAT 22:25!2 +MAT 22:25!1 +MAT 22:25!3 +MAT 22:25!4 +MAT 22:25!5 +MAT 22:25!6 +MAT 22:25!7 +MAT 22:25!8 +MAT 22:25!9 +MAT 22:25!10 +MAT 22:25!11 +MAT 22:25!12 +MAT 22:25!13 +MAT 22:25!14 +MAT 22:25!15 +MAT 22:25!16 +MAT 22:25!17 +MAT 22:25!18 +MAT 22:25!19 +MAT 22:25!20 +MAT 22:25!21 +MAT 22:25!22 +MAT 22:26!1 +MAT 22:26!2 +MAT 22:26!3 +MAT 22:26!4 +MAT 22:26!5 +MAT 22:26!6 +MAT 22:26!7 +MAT 22:26!8 +MAT 22:26!9 +MAT 22:26!10 +MAT 22:27!2 +MAT 22:27!1 +MAT 22:27!3 +MAT 22:27!4 +MAT 22:27!5 +MAT 22:27!6 +MAT 22:28!4 +MAT 22:28!1 +MAT 22:28!2 +MAT 22:28!3 +MAT 22:28!5 +MAT 22:28!6 +MAT 22:28!7 +MAT 22:28!9 +MAT 22:28!8 +MAT 22:28!11 +MAT 22:28!10 +MAT 22:28!12 +MAT 22:28!13 +MAT 22:29!2 +MAT 22:29!1 +MAT 22:29!3 +MAT 22:29!4 +MAT 22:29!5 +MAT 22:29!6 +MAT 22:29!7 +MAT 22:29!8 +MAT 22:29!9 +MAT 22:29!10 +MAT 22:29!11 +MAT 22:29!12 +MAT 22:29!13 +MAT 22:29!14 +MAT 22:29!15 +MAT 22:29!16 +MAT 22:30!2 +MAT 22:30!1 +MAT 22:30!3 +MAT 22:30!4 +MAT 22:30!5 +MAT 22:30!6 +MAT 22:30!7 +MAT 22:30!8 +MAT 22:30!9 +MAT 22:30!10 +MAT 22:30!11 +MAT 22:30!12 +MAT 22:30!13 +MAT 22:30!14 +MAT 22:30!15 +MAT 22:31!2 +MAT 22:31!1 +MAT 22:31!3 +MAT 22:31!4 +MAT 22:31!5 +MAT 22:31!6 +MAT 22:31!7 +MAT 22:31!8 +MAT 22:31!9 +MAT 22:31!10 +MAT 22:31!11 +MAT 22:31!12 +MAT 22:31!13 +MAT 22:31!14 +MAT 22:31!15 +MAT 22:32!1 +MAT 22:32!2 +MAT 22:32!3 +MAT 22:32!4 +MAT 22:32!5 +MAT 22:32!6 +MAT 22:32!7 +MAT 22:32!8 +MAT 22:32!9 +MAT 22:32!10 +MAT 22:32!11 +MAT 22:32!12 +MAT 22:32!13 +MAT 22:32!14 +MAT 22:32!15 +MAT 22:32!16 +MAT 22:32!17 +MAT 22:32!18 +MAT 22:32!19 +MAT 22:32!20 +MAT 22:33!1 +MAT 22:33!2 +MAT 22:33!3 +MAT 22:33!4 +MAT 22:33!5 +MAT 22:33!6 +MAT 22:33!7 +MAT 22:33!8 +MAT 22:33!9 +MAT 22:34!2 +MAT 22:34!1 +MAT 22:34!3 +MAT 22:34!4 +MAT 22:34!5 +MAT 22:34!6 +MAT 22:34!7 +MAT 22:34!8 +MAT 22:34!9 +MAT 22:34!10 +MAT 22:34!11 +MAT 22:34!12 +MAT 22:35!1 +MAT 22:35!2 +MAT 22:35!3 +MAT 22:35!4 +MAT 22:35!5 +MAT 22:35!6 +MAT 22:35!7 +MAT 22:35!8 +MAT 22:36!1 +MAT 22:36!2 +MAT 22:36!3 +MAT 22:36!4 +MAT 22:36!5 +MAT 22:36!6 +MAT 22:36!7 +MAT 22:37!2 +MAT 22:37!1 +MAT 22:37!3 +MAT 22:37!4 +MAT 22:37!5 +MAT 22:37!6 +MAT 22:37!7 +MAT 22:37!8 +MAT 22:37!9 +MAT 22:37!10 +MAT 22:37!11 +MAT 22:37!12 +MAT 22:37!13 +MAT 22:37!14 +MAT 22:37!15 +MAT 22:37!16 +MAT 22:37!17 +MAT 22:37!18 +MAT 22:37!19 +MAT 22:37!20 +MAT 22:37!21 +MAT 22:37!22 +MAT 22:37!23 +MAT 22:37!24 +MAT 22:37!25 +MAT 22:37!26 +MAT 22:38!1 +MAT 22:38!2 +MAT 22:38!3 +MAT 22:38!4 +MAT 22:38!5 +MAT 22:38!6 +MAT 22:38!7 +MAT 22:39!1 +MAT 22:39!2 +MAT 22:39!3 +MAT 22:39!4 +MAT 22:39!5 +MAT 22:39!6 +MAT 22:39!7 +MAT 22:39!8 +MAT 22:39!9 +MAT 22:40!1 +MAT 22:40!2 +MAT 22:40!3 +MAT 22:40!4 +MAT 22:40!5 +MAT 22:40!6 +MAT 22:40!7 +MAT 22:40!8 +MAT 22:40!9 +MAT 22:40!10 +MAT 22:40!11 +MAT 22:40!12 +MAT 22:41!2 +MAT 22:41!1 +MAT 22:41!3 +MAT 22:41!4 +MAT 22:41!5 +MAT 22:41!6 +MAT 22:41!7 +MAT 22:41!8 +MAT 22:42!1 +MAT 22:42!2 +MAT 22:42!3 +MAT 22:42!4 +MAT 22:42!5 +MAT 22:42!6 +MAT 22:42!7 +MAT 22:42!8 +MAT 22:42!9 +MAT 22:42!10 +MAT 22:42!11 +MAT 22:42!12 +MAT 22:42!13 +MAT 22:42!14 +MAT 22:43!1 +MAT 22:43!2 +MAT 22:43!4 +MAT 22:43!3 +MAT 22:43!5 +MAT 22:43!6 +MAT 22:43!7 +MAT 22:43!8 +MAT 22:43!9 +MAT 22:43!10 +MAT 22:43!11 +MAT 22:44!1 +MAT 22:44!2 +MAT 22:44!3 +MAT 22:44!4 +MAT 22:44!5 +MAT 22:44!6 +MAT 22:44!7 +MAT 22:44!8 +MAT 22:44!9 +MAT 22:44!10 +MAT 22:44!11 +MAT 22:44!12 +MAT 22:44!13 +MAT 22:44!14 +MAT 22:44!15 +MAT 22:44!16 +MAT 22:44!17 +MAT 22:44!18 +MAT 22:44!19 +MAT 22:45!2 +MAT 22:45!1 +MAT 22:45!3 +MAT 22:45!4 +MAT 22:45!5 +MAT 22:45!6 +MAT 22:45!7 +MAT 22:45!8 +MAT 22:45!9 +MAT 22:45!10 +MAT 22:46!1 +MAT 22:46!2 +MAT 22:46!3 +MAT 22:46!4 +MAT 22:46!5 +MAT 22:46!6 +MAT 22:46!7 +MAT 22:46!8 +MAT 22:46!9 +MAT 22:46!10 +MAT 22:46!11 +MAT 22:46!12 +MAT 22:46!13 +MAT 22:46!14 +MAT 22:46!15 +MAT 22:46!16 +MAT 23:1!1 +MAT 23:1!2 +MAT 23:1!3 +MAT 23:1!4 +MAT 23:1!5 +MAT 23:1!6 +MAT 23:1!7 +MAT 23:1!8 +MAT 23:1!9 +MAT 23:1!10 +MAT 23:2!1 +MAT 23:2!2 +MAT 23:2!3 +MAT 23:2!4 +MAT 23:2!5 +MAT 23:2!6 +MAT 23:2!7 +MAT 23:2!8 +MAT 23:2!9 +MAT 23:2!10 +MAT 23:2!11 +MAT 23:3!2 +MAT 23:3!1 +MAT 23:3!4 +MAT 23:3!3 +MAT 23:3!5 +MAT 23:3!6 +MAT 23:3!7 +MAT 23:3!8 +MAT 23:3!9 +MAT 23:3!11 +MAT 23:3!10 +MAT 23:3!12 +MAT 23:3!13 +MAT 23:3!14 +MAT 23:3!15 +MAT 23:3!16 +MAT 23:3!18 +MAT 23:3!17 +MAT 23:3!19 +MAT 23:3!20 +MAT 23:3!21 +MAT 23:4!2 +MAT 23:4!1 +MAT 23:4!3 +MAT 23:4!4 +MAT 23:4!5 +MAT 23:4!6 +MAT 23:4!7 +MAT 23:4!8 +MAT 23:4!9 +MAT 23:4!10 +MAT 23:4!11 +MAT 23:4!13 +MAT 23:4!12 +MAT 23:4!14 +MAT 23:4!15 +MAT 23:4!16 +MAT 23:4!17 +MAT 23:4!18 +MAT 23:4!19 +MAT 23:4!20 +MAT 23:5!2 +MAT 23:5!1 +MAT 23:5!3 +MAT 23:5!4 +MAT 23:5!5 +MAT 23:5!6 +MAT 23:5!7 +MAT 23:5!8 +MAT 23:5!9 +MAT 23:5!10 +MAT 23:5!11 +MAT 23:5!13 +MAT 23:5!12 +MAT 23:5!14 +MAT 23:5!15 +MAT 23:5!16 +MAT 23:5!17 +MAT 23:5!18 +MAT 23:5!19 +MAT 23:5!20 +MAT 23:6!2 +MAT 23:6!1 +MAT 23:6!3 +MAT 23:6!4 +MAT 23:6!5 +MAT 23:6!6 +MAT 23:6!7 +MAT 23:6!8 +MAT 23:6!9 +MAT 23:6!10 +MAT 23:6!11 +MAT 23:6!12 +MAT 23:6!13 +MAT 23:7!1 +MAT 23:7!2 +MAT 23:7!3 +MAT 23:7!4 +MAT 23:7!5 +MAT 23:7!6 +MAT 23:7!7 +MAT 23:7!8 +MAT 23:7!9 +MAT 23:7!10 +MAT 23:7!11 +MAT 23:7!12 +MAT 23:8!2 +MAT 23:8!1 +MAT 23:8!3 +MAT 23:8!4 +MAT 23:8!5 +MAT 23:8!7 +MAT 23:8!6 +MAT 23:8!8 +MAT 23:8!9 +MAT 23:8!10 +MAT 23:8!11 +MAT 23:8!13 +MAT 23:8!12 +MAT 23:8!14 +MAT 23:8!15 +MAT 23:8!16 +MAT 23:9!1 +MAT 23:9!2 +MAT 23:9!5 +MAT 23:9!3 +MAT 23:9!4 +MAT 23:9!6 +MAT 23:9!7 +MAT 23:9!8 +MAT 23:9!10 +MAT 23:9!9 +MAT 23:9!11 +MAT 23:9!12 +MAT 23:9!13 +MAT 23:9!14 +MAT 23:9!15 +MAT 23:9!16 +MAT 23:10!1 +MAT 23:10!2 +MAT 23:10!3 +MAT 23:10!4 +MAT 23:10!5 +MAT 23:10!6 +MAT 23:10!7 +MAT 23:10!8 +MAT 23:10!9 +MAT 23:10!10 +MAT 23:11!2 +MAT 23:11!1 +MAT 23:11!3 +MAT 23:11!4 +MAT 23:11!5 +MAT 23:11!6 +MAT 23:11!7 +MAT 23:12!2 +MAT 23:12!1 +MAT 23:12!3 +MAT 23:12!4 +MAT 23:12!5 +MAT 23:12!6 +MAT 23:12!7 +MAT 23:12!8 +MAT 23:12!9 +MAT 23:12!10 +MAT 23:13!2 +MAT 23:13!1 +MAT 23:13!3 +MAT 23:13!4 +MAT 23:13!5 +MAT 23:13!6 +MAT 23:13!7 +MAT 23:13!8 +MAT 23:13!9 +MAT 23:13!10 +MAT 23:13!11 +MAT 23:13!12 +MAT 23:13!13 +MAT 23:13!14 +MAT 23:13!15 +MAT 23:13!16 +MAT 23:13!18 +MAT 23:13!17 +MAT 23:13!19 +MAT 23:13!20 +MAT 23:13!21 +MAT 23:13!22 +MAT 23:13!23 +MAT 23:13!25 +MAT 23:13!24 +MAT 23:15!1 +MAT 23:15!2 +MAT 23:15!3 +MAT 23:15!4 +MAT 23:15!5 +MAT 23:15!6 +MAT 23:15!7 +MAT 23:15!8 +MAT 23:15!9 +MAT 23:15!10 +MAT 23:15!11 +MAT 23:15!12 +MAT 23:15!13 +MAT 23:15!14 +MAT 23:15!15 +MAT 23:15!16 +MAT 23:15!17 +MAT 23:15!18 +MAT 23:15!19 +MAT 23:15!20 +MAT 23:15!21 +MAT 23:15!22 +MAT 23:15!23 +MAT 23:15!24 +MAT 23:15!25 +MAT 23:16!1 +MAT 23:16!2 +MAT 23:16!3 +MAT 23:16!4 +MAT 23:16!5 +MAT 23:16!6 +MAT 23:16!8 +MAT 23:16!7 +MAT 23:16!9 +MAT 23:16!10 +MAT 23:16!11 +MAT 23:16!12 +MAT 23:16!13 +MAT 23:16!14 +MAT 23:16!16 +MAT 23:16!17 +MAT 23:16!15 +MAT 23:16!18 +MAT 23:16!19 +MAT 23:16!20 +MAT 23:16!21 +MAT 23:16!22 +MAT 23:16!23 +MAT 23:16!24 +MAT 23:17!1 +MAT 23:17!2 +MAT 23:17!3 +MAT 23:17!5 +MAT 23:17!4 +MAT 23:17!6 +MAT 23:17!7 +MAT 23:17!8 +MAT 23:17!9 +MAT 23:17!10 +MAT 23:17!11 +MAT 23:17!12 +MAT 23:17!13 +MAT 23:17!14 +MAT 23:17!15 +MAT 23:17!16 +MAT 23:18!1 +MAT 23:18!3 +MAT 23:18!2 +MAT 23:18!4 +MAT 23:18!5 +MAT 23:18!6 +MAT 23:18!7 +MAT 23:18!8 +MAT 23:18!9 +MAT 23:18!11 +MAT 23:18!12 +MAT 23:18!10 +MAT 23:18!13 +MAT 23:18!14 +MAT 23:18!15 +MAT 23:18!16 +MAT 23:18!17 +MAT 23:18!18 +MAT 23:18!19 +MAT 23:18!20 +MAT 23:19!1 +MAT 23:19!3 +MAT 23:19!2 +MAT 23:19!4 +MAT 23:19!5 +MAT 23:19!6 +MAT 23:19!7 +MAT 23:19!8 +MAT 23:19!9 +MAT 23:19!10 +MAT 23:19!11 +MAT 23:19!12 +MAT 23:19!13 +MAT 23:20!2 +MAT 23:20!1 +MAT 23:20!3 +MAT 23:20!4 +MAT 23:20!5 +MAT 23:20!6 +MAT 23:20!7 +MAT 23:20!8 +MAT 23:20!9 +MAT 23:20!10 +MAT 23:20!11 +MAT 23:20!12 +MAT 23:20!13 +MAT 23:20!14 +MAT 23:20!15 +MAT 23:21!1 +MAT 23:21!2 +MAT 23:21!3 +MAT 23:21!4 +MAT 23:21!5 +MAT 23:21!6 +MAT 23:21!7 +MAT 23:21!8 +MAT 23:21!9 +MAT 23:21!10 +MAT 23:21!11 +MAT 23:21!12 +MAT 23:21!13 +MAT 23:21!14 +MAT 23:22!1 +MAT 23:22!2 +MAT 23:22!3 +MAT 23:22!4 +MAT 23:22!5 +MAT 23:22!6 +MAT 23:22!7 +MAT 23:22!8 +MAT 23:22!9 +MAT 23:22!10 +MAT 23:22!11 +MAT 23:22!12 +MAT 23:22!13 +MAT 23:22!14 +MAT 23:22!15 +MAT 23:22!16 +MAT 23:22!17 +MAT 23:22!18 +MAT 23:23!1 +MAT 23:23!2 +MAT 23:23!3 +MAT 23:23!4 +MAT 23:23!5 +MAT 23:23!6 +MAT 23:23!7 +MAT 23:23!8 +MAT 23:23!9 +MAT 23:23!10 +MAT 23:23!11 +MAT 23:23!12 +MAT 23:23!13 +MAT 23:23!14 +MAT 23:23!15 +MAT 23:23!16 +MAT 23:23!17 +MAT 23:23!18 +MAT 23:23!19 +MAT 23:23!20 +MAT 23:23!21 +MAT 23:23!22 +MAT 23:23!23 +MAT 23:23!24 +MAT 23:23!25 +MAT 23:23!26 +MAT 23:23!27 +MAT 23:23!28 +MAT 23:23!29 +MAT 23:23!30 +MAT 23:23!32 +MAT 23:23!33 +MAT 23:23!31 +MAT 23:23!34 +MAT 23:23!35 +MAT 23:23!36 +MAT 23:23!37 +MAT 23:24!1 +MAT 23:24!2 +MAT 23:24!3 +MAT 23:24!4 +MAT 23:24!5 +MAT 23:24!6 +MAT 23:24!8 +MAT 23:24!7 +MAT 23:24!9 +MAT 23:24!10 +MAT 23:25!1 +MAT 23:25!2 +MAT 23:25!3 +MAT 23:25!4 +MAT 23:25!5 +MAT 23:25!6 +MAT 23:25!7 +MAT 23:25!8 +MAT 23:25!9 +MAT 23:25!10 +MAT 23:25!11 +MAT 23:25!12 +MAT 23:25!13 +MAT 23:25!14 +MAT 23:25!15 +MAT 23:25!17 +MAT 23:25!16 +MAT 23:25!18 +MAT 23:25!19 +MAT 23:25!20 +MAT 23:25!21 +MAT 23:25!22 +MAT 23:26!1 +MAT 23:26!2 +MAT 23:26!3 +MAT 23:26!4 +MAT 23:26!5 +MAT 23:26!6 +MAT 23:26!7 +MAT 23:26!8 +MAT 23:26!9 +MAT 23:26!10 +MAT 23:26!11 +MAT 23:26!12 +MAT 23:26!13 +MAT 23:26!14 +MAT 23:26!15 +MAT 23:27!1 +MAT 23:27!2 +MAT 23:27!3 +MAT 23:27!4 +MAT 23:27!5 +MAT 23:27!6 +MAT 23:27!7 +MAT 23:27!8 +MAT 23:27!9 +MAT 23:27!10 +MAT 23:27!13 +MAT 23:27!11 +MAT 23:27!12 +MAT 23:27!14 +MAT 23:27!15 +MAT 23:27!17 +MAT 23:27!16 +MAT 23:27!18 +MAT 23:27!19 +MAT 23:27!20 +MAT 23:27!21 +MAT 23:27!22 +MAT 23:27!23 +MAT 23:28!1 +MAT 23:28!2 +MAT 23:28!3 +MAT 23:28!5 +MAT 23:28!4 +MAT 23:28!6 +MAT 23:28!7 +MAT 23:28!8 +MAT 23:28!9 +MAT 23:28!11 +MAT 23:28!10 +MAT 23:28!12 +MAT 23:28!13 +MAT 23:28!14 +MAT 23:28!15 +MAT 23:28!16 +MAT 23:29!1 +MAT 23:29!2 +MAT 23:29!3 +MAT 23:29!4 +MAT 23:29!5 +MAT 23:29!6 +MAT 23:29!7 +MAT 23:29!8 +MAT 23:29!9 +MAT 23:29!10 +MAT 23:29!11 +MAT 23:29!12 +MAT 23:29!13 +MAT 23:29!14 +MAT 23:29!15 +MAT 23:29!16 +MAT 23:29!17 +MAT 23:29!18 +MAT 23:30!1 +MAT 23:30!2 +MAT 23:30!3 +MAT 23:30!4 +MAT 23:30!5 +MAT 23:30!6 +MAT 23:30!7 +MAT 23:30!8 +MAT 23:30!9 +MAT 23:30!10 +MAT 23:30!12 +MAT 23:30!11 +MAT 23:30!13 +MAT 23:30!14 +MAT 23:30!15 +MAT 23:30!16 +MAT 23:30!17 +MAT 23:30!18 +MAT 23:30!19 +MAT 23:30!20 +MAT 23:31!1 +MAT 23:31!2 +MAT 23:31!3 +MAT 23:31!4 +MAT 23:31!6 +MAT 23:31!5 +MAT 23:31!7 +MAT 23:31!8 +MAT 23:31!9 +MAT 23:31!10 +MAT 23:32!1 +MAT 23:32!2 +MAT 23:32!3 +MAT 23:32!4 +MAT 23:32!5 +MAT 23:32!6 +MAT 23:32!7 +MAT 23:32!8 +MAT 23:33!1 +MAT 23:33!2 +MAT 23:33!3 +MAT 23:33!4 +MAT 23:33!5 +MAT 23:33!6 +MAT 23:33!7 +MAT 23:33!8 +MAT 23:33!9 +MAT 23:33!10 +MAT 23:34!3 +MAT 23:34!1 +MAT 23:34!2 +MAT 23:34!4 +MAT 23:34!5 +MAT 23:34!6 +MAT 23:34!7 +MAT 23:34!8 +MAT 23:34!9 +MAT 23:34!10 +MAT 23:34!11 +MAT 23:34!12 +MAT 23:34!13 +MAT 23:34!14 +MAT 23:34!15 +MAT 23:34!16 +MAT 23:34!17 +MAT 23:34!18 +MAT 23:34!19 +MAT 23:34!20 +MAT 23:34!21 +MAT 23:34!22 +MAT 23:34!23 +MAT 23:34!24 +MAT 23:34!25 +MAT 23:34!26 +MAT 23:34!27 +MAT 23:34!28 +MAT 23:34!29 +MAT 23:34!30 +MAT 23:34!31 +MAT 23:35!1 +MAT 23:35!2 +MAT 23:35!3 +MAT 23:35!4 +MAT 23:35!5 +MAT 23:35!6 +MAT 23:35!7 +MAT 23:35!8 +MAT 23:35!9 +MAT 23:35!10 +MAT 23:35!11 +MAT 23:35!12 +MAT 23:35!13 +MAT 23:35!14 +MAT 23:35!15 +MAT 23:35!16 +MAT 23:35!17 +MAT 23:35!18 +MAT 23:35!19 +MAT 23:35!20 +MAT 23:35!21 +MAT 23:35!22 +MAT 23:35!23 +MAT 23:35!24 +MAT 23:35!25 +MAT 23:35!26 +MAT 23:35!27 +MAT 23:35!28 +MAT 23:35!29 +MAT 23:35!30 +MAT 23:35!31 +MAT 23:36!1 +MAT 23:36!2 +MAT 23:36!3 +MAT 23:36!4 +MAT 23:36!5 +MAT 23:36!6 +MAT 23:36!7 +MAT 23:36!8 +MAT 23:36!9 +MAT 23:36!10 +MAT 23:37!1 +MAT 23:37!2 +MAT 23:37!3 +MAT 23:37!4 +MAT 23:37!5 +MAT 23:37!6 +MAT 23:37!7 +MAT 23:37!8 +MAT 23:37!9 +MAT 23:37!10 +MAT 23:37!11 +MAT 23:37!12 +MAT 23:37!13 +MAT 23:37!14 +MAT 23:37!15 +MAT 23:37!16 +MAT 23:37!17 +MAT 23:37!18 +MAT 23:37!19 +MAT 23:37!20 +MAT 23:37!21 +MAT 23:37!22 +MAT 23:37!23 +MAT 23:37!24 +MAT 23:37!25 +MAT 23:37!26 +MAT 23:37!27 +MAT 23:37!28 +MAT 23:37!29 +MAT 23:37!30 +MAT 23:37!31 +MAT 23:38!1 +MAT 23:38!2 +MAT 23:38!3 +MAT 23:38!4 +MAT 23:38!5 +MAT 23:38!6 +MAT 23:39!2 +MAT 23:39!1 +MAT 23:39!3 +MAT 23:39!4 +MAT 23:39!5 +MAT 23:39!6 +MAT 23:39!7 +MAT 23:39!8 +MAT 23:39!9 +MAT 23:39!10 +MAT 23:39!11 +MAT 23:39!12 +MAT 23:39!13 +MAT 23:39!14 +MAT 23:39!15 +MAT 23:39!16 +MAT 23:39!17 +MAT 23:39!18 +MAT 24:1!1 +MAT 24:1!3 +MAT 24:1!4 +MAT 24:1!2 +MAT 24:1!5 +MAT 24:1!6 +MAT 24:1!7 +MAT 24:1!8 +MAT 24:1!9 +MAT 24:1!10 +MAT 24:1!11 +MAT 24:1!12 +MAT 24:1!13 +MAT 24:1!14 +MAT 24:1!15 +MAT 24:1!16 +MAT 24:1!17 +MAT 24:1!18 +MAT 24:1!19 +MAT 24:2!2 +MAT 24:2!1 +MAT 24:2!3 +MAT 24:2!4 +MAT 24:2!5 +MAT 24:2!6 +MAT 24:2!7 +MAT 24:2!8 +MAT 24:2!9 +MAT 24:2!10 +MAT 24:2!11 +MAT 24:2!12 +MAT 24:2!13 +MAT 24:2!14 +MAT 24:2!15 +MAT 24:2!16 +MAT 24:2!18 +MAT 24:2!19 +MAT 24:2!17 +MAT 24:2!20 +MAT 24:2!21 +MAT 24:2!22 +MAT 24:3!2 +MAT 24:3!1 +MAT 24:3!3 +MAT 24:3!4 +MAT 24:3!5 +MAT 24:3!6 +MAT 24:3!7 +MAT 24:3!8 +MAT 24:3!9 +MAT 24:3!10 +MAT 24:3!11 +MAT 24:3!12 +MAT 24:3!13 +MAT 24:3!14 +MAT 24:3!15 +MAT 24:3!16 +MAT 24:3!17 +MAT 24:3!18 +MAT 24:3!19 +MAT 24:3!20 +MAT 24:3!21 +MAT 24:3!22 +MAT 24:3!23 +MAT 24:3!24 +MAT 24:3!25 +MAT 24:3!26 +MAT 24:3!27 +MAT 24:3!28 +MAT 24:3!29 +MAT 24:3!30 +MAT 24:3!31 +MAT 24:4!1 +MAT 24:4!2 +MAT 24:4!3 +MAT 24:4!4 +MAT 24:4!5 +MAT 24:4!6 +MAT 24:4!7 +MAT 24:4!8 +MAT 24:4!9 +MAT 24:4!10 +MAT 24:4!11 +MAT 24:5!2 +MAT 24:5!1 +MAT 24:5!3 +MAT 24:5!4 +MAT 24:5!5 +MAT 24:5!6 +MAT 24:5!7 +MAT 24:5!8 +MAT 24:5!9 +MAT 24:5!10 +MAT 24:5!11 +MAT 24:5!12 +MAT 24:5!13 +MAT 24:5!14 +MAT 24:5!15 +MAT 24:6!2 +MAT 24:6!1 +MAT 24:6!3 +MAT 24:6!4 +MAT 24:6!5 +MAT 24:6!6 +MAT 24:6!7 +MAT 24:6!8 +MAT 24:6!9 +MAT 24:6!10 +MAT 24:6!12 +MAT 24:6!11 +MAT 24:6!13 +MAT 24:6!14 +MAT 24:6!15 +MAT 24:6!16 +MAT 24:6!17 +MAT 24:6!18 +MAT 24:7!2 +MAT 24:7!1 +MAT 24:7!3 +MAT 24:7!4 +MAT 24:7!5 +MAT 24:7!6 +MAT 24:7!7 +MAT 24:7!8 +MAT 24:7!9 +MAT 24:7!10 +MAT 24:7!11 +MAT 24:7!12 +MAT 24:7!13 +MAT 24:7!14 +MAT 24:7!15 +MAT 24:7!16 +MAT 24:8!2 +MAT 24:8!1 +MAT 24:8!3 +MAT 24:8!4 +MAT 24:8!5 +MAT 24:9!1 +MAT 24:9!2 +MAT 24:9!3 +MAT 24:9!4 +MAT 24:9!5 +MAT 24:9!6 +MAT 24:9!7 +MAT 24:9!8 +MAT 24:9!9 +MAT 24:9!10 +MAT 24:9!11 +MAT 24:9!12 +MAT 24:9!13 +MAT 24:9!14 +MAT 24:9!15 +MAT 24:9!16 +MAT 24:9!17 +MAT 24:9!18 +MAT 24:9!19 +MAT 24:10!1 +MAT 24:10!2 +MAT 24:10!3 +MAT 24:10!4 +MAT 24:10!5 +MAT 24:10!6 +MAT 24:10!7 +MAT 24:10!8 +MAT 24:10!9 +MAT 24:10!10 +MAT 24:11!1 +MAT 24:11!2 +MAT 24:11!3 +MAT 24:11!4 +MAT 24:11!5 +MAT 24:11!6 +MAT 24:11!7 +MAT 24:12!1 +MAT 24:12!2 +MAT 24:12!3 +MAT 24:12!4 +MAT 24:12!5 +MAT 24:12!6 +MAT 24:12!7 +MAT 24:12!8 +MAT 24:12!9 +MAT 24:12!10 +MAT 24:12!11 +MAT 24:13!2 +MAT 24:13!1 +MAT 24:13!3 +MAT 24:13!4 +MAT 24:13!5 +MAT 24:13!6 +MAT 24:13!7 +MAT 24:14!1 +MAT 24:14!2 +MAT 24:14!3 +MAT 24:14!4 +MAT 24:14!5 +MAT 24:14!6 +MAT 24:14!7 +MAT 24:14!8 +MAT 24:14!9 +MAT 24:14!10 +MAT 24:14!11 +MAT 24:14!12 +MAT 24:14!13 +MAT 24:14!14 +MAT 24:14!15 +MAT 24:14!16 +MAT 24:14!17 +MAT 24:14!18 +MAT 24:14!19 +MAT 24:14!20 +MAT 24:14!21 +MAT 24:15!2 +MAT 24:15!1 +MAT 24:15!3 +MAT 24:15!4 +MAT 24:15!5 +MAT 24:15!6 +MAT 24:15!7 +MAT 24:15!8 +MAT 24:15!9 +MAT 24:15!10 +MAT 24:15!11 +MAT 24:15!12 +MAT 24:15!13 +MAT 24:15!14 +MAT 24:15!15 +MAT 24:15!16 +MAT 24:15!17 +MAT 24:15!18 +MAT 24:15!19 +MAT 24:15!20 +MAT 24:16!1 +MAT 24:16!2 +MAT 24:16!3 +MAT 24:16!4 +MAT 24:16!5 +MAT 24:16!6 +MAT 24:16!7 +MAT 24:16!8 +MAT 24:16!9 +MAT 24:17!1 +MAT 24:17!2 +MAT 24:17!3 +MAT 24:17!4 +MAT 24:17!5 +MAT 24:17!6 +MAT 24:17!7 +MAT 24:17!8 +MAT 24:17!9 +MAT 24:17!10 +MAT 24:17!11 +MAT 24:17!12 +MAT 24:18!1 +MAT 24:18!2 +MAT 24:18!3 +MAT 24:18!4 +MAT 24:18!5 +MAT 24:18!6 +MAT 24:18!7 +MAT 24:18!8 +MAT 24:18!9 +MAT 24:18!10 +MAT 24:18!11 +MAT 24:18!12 +MAT 24:19!2 +MAT 24:19!1 +MAT 24:19!3 +MAT 24:19!4 +MAT 24:19!5 +MAT 24:19!6 +MAT 24:19!7 +MAT 24:19!8 +MAT 24:19!9 +MAT 24:19!10 +MAT 24:19!11 +MAT 24:19!12 +MAT 24:19!13 +MAT 24:20!2 +MAT 24:20!1 +MAT 24:20!3 +MAT 24:20!4 +MAT 24:20!5 +MAT 24:20!6 +MAT 24:20!7 +MAT 24:20!8 +MAT 24:20!9 +MAT 24:20!10 +MAT 24:20!11 +MAT 24:21!2 +MAT 24:21!1 +MAT 24:21!3 +MAT 24:21!4 +MAT 24:21!5 +MAT 24:21!6 +MAT 24:21!7 +MAT 24:21!8 +MAT 24:21!9 +MAT 24:21!10 +MAT 24:21!11 +MAT 24:21!12 +MAT 24:21!13 +MAT 24:21!14 +MAT 24:21!15 +MAT 24:21!16 +MAT 24:21!17 +MAT 24:21!18 +MAT 24:22!1 +MAT 24:22!2 +MAT 24:22!3 +MAT 24:22!4 +MAT 24:22!5 +MAT 24:22!6 +MAT 24:22!7 +MAT 24:22!9 +MAT 24:22!8 +MAT 24:22!10 +MAT 24:22!11 +MAT 24:22!12 +MAT 24:22!14 +MAT 24:22!13 +MAT 24:22!15 +MAT 24:22!16 +MAT 24:22!17 +MAT 24:22!18 +MAT 24:22!19 +MAT 24:22!20 +MAT 24:23!2 +MAT 24:23!1 +MAT 24:23!3 +MAT 24:23!4 +MAT 24:23!5 +MAT 24:23!6 +MAT 24:23!7 +MAT 24:23!8 +MAT 24:23!9 +MAT 24:23!10 +MAT 24:23!11 +MAT 24:23!12 +MAT 24:23!13 +MAT 24:24!2 +MAT 24:24!1 +MAT 24:24!3 +MAT 24:24!4 +MAT 24:24!5 +MAT 24:24!6 +MAT 24:24!7 +MAT 24:24!8 +MAT 24:24!9 +MAT 24:24!10 +MAT 24:24!11 +MAT 24:24!12 +MAT 24:24!13 +MAT 24:24!14 +MAT 24:24!15 +MAT 24:24!16 +MAT 24:24!17 +MAT 24:24!18 +MAT 24:25!1 +MAT 24:25!2 +MAT 24:25!3 +MAT 24:26!2 +MAT 24:26!1 +MAT 24:26!3 +MAT 24:26!4 +MAT 24:26!5 +MAT 24:26!6 +MAT 24:26!7 +MAT 24:26!8 +MAT 24:26!9 +MAT 24:26!10 +MAT 24:26!11 +MAT 24:26!12 +MAT 24:26!13 +MAT 24:26!14 +MAT 24:26!15 +MAT 24:26!16 +MAT 24:26!17 +MAT 24:27!2 +MAT 24:27!1 +MAT 24:27!3 +MAT 24:27!4 +MAT 24:27!5 +MAT 24:27!6 +MAT 24:27!7 +MAT 24:27!8 +MAT 24:27!9 +MAT 24:27!10 +MAT 24:27!11 +MAT 24:27!12 +MAT 24:27!13 +MAT 24:27!14 +MAT 24:27!15 +MAT 24:27!16 +MAT 24:27!17 +MAT 24:27!18 +MAT 24:27!19 +MAT 24:28!2 +MAT 24:28!1 +MAT 24:28!3 +MAT 24:28!4 +MAT 24:28!5 +MAT 24:28!6 +MAT 24:28!7 +MAT 24:28!8 +MAT 24:28!9 +MAT 24:29!2 +MAT 24:29!1 +MAT 24:29!3 +MAT 24:29!4 +MAT 24:29!5 +MAT 24:29!6 +MAT 24:29!7 +MAT 24:29!8 +MAT 24:29!9 +MAT 24:29!10 +MAT 24:29!11 +MAT 24:29!12 +MAT 24:29!13 +MAT 24:29!14 +MAT 24:29!15 +MAT 24:29!16 +MAT 24:29!17 +MAT 24:29!18 +MAT 24:29!19 +MAT 24:29!20 +MAT 24:29!21 +MAT 24:29!22 +MAT 24:29!23 +MAT 24:29!24 +MAT 24:29!25 +MAT 24:29!26 +MAT 24:29!27 +MAT 24:29!28 +MAT 24:29!29 +MAT 24:29!30 +MAT 24:29!31 +MAT 24:29!32 +MAT 24:30!1 +MAT 24:30!2 +MAT 24:30!3 +MAT 24:30!4 +MAT 24:30!5 +MAT 24:30!6 +MAT 24:30!7 +MAT 24:30!8 +MAT 24:30!9 +MAT 24:30!10 +MAT 24:30!11 +MAT 24:30!12 +MAT 24:30!13 +MAT 24:30!14 +MAT 24:30!15 +MAT 24:30!16 +MAT 24:30!17 +MAT 24:30!18 +MAT 24:30!19 +MAT 24:30!20 +MAT 24:30!21 +MAT 24:30!22 +MAT 24:30!23 +MAT 24:30!24 +MAT 24:30!25 +MAT 24:30!26 +MAT 24:30!27 +MAT 24:30!28 +MAT 24:30!29 +MAT 24:30!30 +MAT 24:30!31 +MAT 24:30!32 +MAT 24:30!33 +MAT 24:30!34 +MAT 24:30!35 +MAT 24:30!36 +MAT 24:31!1 +MAT 24:31!2 +MAT 24:31!3 +MAT 24:31!4 +MAT 24:31!5 +MAT 24:31!6 +MAT 24:31!7 +MAT 24:31!8 +MAT 24:31!9 +MAT 24:31!10 +MAT 24:31!11 +MAT 24:31!12 +MAT 24:31!13 +MAT 24:31!14 +MAT 24:31!15 +MAT 24:31!16 +MAT 24:31!17 +MAT 24:31!18 +MAT 24:31!19 +MAT 24:31!20 +MAT 24:31!21 +MAT 24:31!22 +MAT 24:31!23 +MAT 24:32!2 +MAT 24:32!1 +MAT 24:32!3 +MAT 24:32!4 +MAT 24:32!5 +MAT 24:32!6 +MAT 24:32!7 +MAT 24:32!8 +MAT 24:32!9 +MAT 24:32!10 +MAT 24:32!11 +MAT 24:32!12 +MAT 24:32!13 +MAT 24:32!14 +MAT 24:32!15 +MAT 24:32!16 +MAT 24:32!17 +MAT 24:32!18 +MAT 24:32!19 +MAT 24:32!20 +MAT 24:32!21 +MAT 24:32!22 +MAT 24:32!23 +MAT 24:33!1 +MAT 24:33!2 +MAT 24:33!3 +MAT 24:33!4 +MAT 24:33!5 +MAT 24:33!6 +MAT 24:33!7 +MAT 24:33!8 +MAT 24:33!9 +MAT 24:33!10 +MAT 24:33!11 +MAT 24:33!12 +MAT 24:33!13 +MAT 24:34!1 +MAT 24:34!2 +MAT 24:34!3 +MAT 24:34!4 +MAT 24:34!5 +MAT 24:34!6 +MAT 24:34!7 +MAT 24:34!8 +MAT 24:34!9 +MAT 24:34!10 +MAT 24:34!11 +MAT 24:34!12 +MAT 24:34!13 +MAT 24:34!14 +MAT 24:34!15 +MAT 24:35!1 +MAT 24:35!2 +MAT 24:35!3 +MAT 24:35!4 +MAT 24:35!5 +MAT 24:35!6 +MAT 24:35!8 +MAT 24:35!7 +MAT 24:35!9 +MAT 24:35!10 +MAT 24:35!11 +MAT 24:35!12 +MAT 24:35!13 +MAT 24:36!2 +MAT 24:36!1 +MAT 24:36!3 +MAT 24:36!4 +MAT 24:36!6 +MAT 24:36!7 +MAT 24:36!5 +MAT 24:36!8 +MAT 24:36!9 +MAT 24:36!10 +MAT 24:36!11 +MAT 24:36!12 +MAT 24:36!13 +MAT 24:36!14 +MAT 24:36!15 +MAT 24:36!16 +MAT 24:36!17 +MAT 24:36!18 +MAT 24:36!19 +MAT 24:36!20 +MAT 24:36!21 +MAT 24:36!22 +MAT 24:37!2 +MAT 24:37!1 +MAT 24:37!3 +MAT 24:37!4 +MAT 24:37!5 +MAT 24:37!6 +MAT 24:37!7 +MAT 24:37!8 +MAT 24:37!9 +MAT 24:37!10 +MAT 24:37!11 +MAT 24:37!12 +MAT 24:37!13 +MAT 24:37!14 +MAT 24:38!2 +MAT 24:38!1 +MAT 24:38!4 +MAT 24:38!5 +MAT 24:38!6 +MAT 24:38!7 +MAT 24:38!8 +MAT 24:38!9 +MAT 24:38!10 +MAT 24:38!11 +MAT 24:38!3 +MAT 24:38!12 +MAT 24:38!13 +MAT 24:38!14 +MAT 24:38!15 +MAT 24:38!16 +MAT 24:38!17 +MAT 24:38!18 +MAT 24:38!19 +MAT 24:38!20 +MAT 24:38!21 +MAT 24:38!22 +MAT 24:38!23 +MAT 24:38!24 +MAT 24:38!25 +MAT 24:39!1 +MAT 24:39!2 +MAT 24:39!3 +MAT 24:39!4 +MAT 24:39!5 +MAT 24:39!6 +MAT 24:39!7 +MAT 24:39!8 +MAT 24:39!9 +MAT 24:39!10 +MAT 24:39!11 +MAT 24:39!12 +MAT 24:39!13 +MAT 24:39!14 +MAT 24:39!15 +MAT 24:39!16 +MAT 24:39!17 +MAT 24:39!18 +MAT 24:39!19 +MAT 24:40!1 +MAT 24:40!2 +MAT 24:40!3 +MAT 24:40!4 +MAT 24:40!5 +MAT 24:40!6 +MAT 24:40!7 +MAT 24:40!8 +MAT 24:40!9 +MAT 24:40!10 +MAT 24:40!11 +MAT 24:41!1 +MAT 24:41!2 +MAT 24:41!3 +MAT 24:41!4 +MAT 24:41!5 +MAT 24:41!6 +MAT 24:41!7 +MAT 24:41!8 +MAT 24:41!9 +MAT 24:41!10 +MAT 24:42!2 +MAT 24:42!1 +MAT 24:42!3 +MAT 24:42!4 +MAT 24:42!5 +MAT 24:42!6 +MAT 24:42!7 +MAT 24:42!8 +MAT 24:42!9 +MAT 24:42!10 +MAT 24:42!11 +MAT 24:43!2 +MAT 24:43!1 +MAT 24:43!3 +MAT 24:43!4 +MAT 24:43!5 +MAT 24:43!6 +MAT 24:43!7 +MAT 24:43!8 +MAT 24:43!9 +MAT 24:43!10 +MAT 24:43!11 +MAT 24:43!12 +MAT 24:43!13 +MAT 24:43!15 +MAT 24:43!14 +MAT 24:43!16 +MAT 24:43!18 +MAT 24:43!17 +MAT 24:43!19 +MAT 24:43!20 +MAT 24:43!21 +MAT 24:43!22 +MAT 24:43!23 +MAT 24:44!1 +MAT 24:44!2 +MAT 24:44!3 +MAT 24:44!4 +MAT 24:44!5 +MAT 24:44!6 +MAT 24:44!7 +MAT 24:44!8 +MAT 24:44!9 +MAT 24:44!10 +MAT 24:44!11 +MAT 24:44!12 +MAT 24:44!13 +MAT 24:44!14 +MAT 24:44!15 +MAT 24:44!16 +MAT 24:45!2 +MAT 24:45!1 +MAT 24:45!3 +MAT 24:45!4 +MAT 24:45!5 +MAT 24:45!7 +MAT 24:45!8 +MAT 24:45!6 +MAT 24:45!9 +MAT 24:45!10 +MAT 24:45!11 +MAT 24:45!12 +MAT 24:45!13 +MAT 24:45!14 +MAT 24:45!15 +MAT 24:45!16 +MAT 24:45!17 +MAT 24:45!18 +MAT 24:45!19 +MAT 24:45!20 +MAT 24:45!21 +MAT 24:45!22 +MAT 24:45!23 +MAT 24:46!1 +MAT 24:46!2 +MAT 24:46!3 +MAT 24:46!4 +MAT 24:46!5 +MAT 24:46!11 +MAT 24:46!12 +MAT 24:46!6 +MAT 24:46!7 +MAT 24:46!8 +MAT 24:46!9 +MAT 24:46!10 +MAT 24:47!1 +MAT 24:47!2 +MAT 24:47!3 +MAT 24:47!4 +MAT 24:47!5 +MAT 24:47!6 +MAT 24:47!7 +MAT 24:47!8 +MAT 24:47!9 +MAT 24:47!10 +MAT 24:47!11 +MAT 24:48!2 +MAT 24:48!1 +MAT 24:48!3 +MAT 24:48!4 +MAT 24:48!5 +MAT 24:48!6 +MAT 24:48!7 +MAT 24:48!8 +MAT 24:48!9 +MAT 24:48!10 +MAT 24:48!11 +MAT 24:48!12 +MAT 24:48!13 +MAT 24:48!14 +MAT 24:48!15 +MAT 24:49!1 +MAT 24:49!2 +MAT 24:49!3 +MAT 24:49!4 +MAT 24:49!5 +MAT 24:49!6 +MAT 24:49!8 +MAT 24:49!7 +MAT 24:49!9 +MAT 24:49!10 +MAT 24:49!11 +MAT 24:49!12 +MAT 24:49!13 +MAT 24:50!1 +MAT 24:50!2 +MAT 24:50!3 +MAT 24:50!4 +MAT 24:50!5 +MAT 24:50!6 +MAT 24:50!7 +MAT 24:50!8 +MAT 24:50!9 +MAT 24:50!10 +MAT 24:50!11 +MAT 24:50!12 +MAT 24:50!13 +MAT 24:50!14 +MAT 24:50!15 +MAT 24:50!16 +MAT 24:50!17 +MAT 24:51!1 +MAT 24:51!2 +MAT 24:51!3 +MAT 24:51!4 +MAT 24:51!5 +MAT 24:51!6 +MAT 24:51!7 +MAT 24:51!8 +MAT 24:51!9 +MAT 24:51!10 +MAT 24:51!11 +MAT 24:51!12 +MAT 24:51!13 +MAT 24:51!14 +MAT 24:51!15 +MAT 24:51!16 +MAT 24:51!17 +MAT 24:51!18 +MAT 24:51!19 +MAT 24:51!20 +MAT 25:1!1 +MAT 25:1!2 +MAT 25:1!3 +MAT 25:1!4 +MAT 25:1!5 +MAT 25:1!6 +MAT 25:1!7 +MAT 25:1!8 +MAT 25:1!9 +MAT 25:1!10 +MAT 25:1!11 +MAT 25:1!12 +MAT 25:1!13 +MAT 25:1!14 +MAT 25:1!15 +MAT 25:1!16 +MAT 25:1!17 +MAT 25:1!18 +MAT 25:2!2 +MAT 25:2!1 +MAT 25:2!3 +MAT 25:2!4 +MAT 25:2!5 +MAT 25:2!6 +MAT 25:2!7 +MAT 25:2!8 +MAT 25:2!9 +MAT 25:3!2 +MAT 25:3!1 +MAT 25:3!3 +MAT 25:3!4 +MAT 25:3!5 +MAT 25:3!6 +MAT 25:3!7 +MAT 25:3!8 +MAT 25:3!9 +MAT 25:3!10 +MAT 25:3!11 +MAT 25:4!2 +MAT 25:4!1 +MAT 25:4!3 +MAT 25:4!4 +MAT 25:4!5 +MAT 25:4!6 +MAT 25:4!7 +MAT 25:4!8 +MAT 25:4!9 +MAT 25:4!10 +MAT 25:4!11 +MAT 25:4!12 +MAT 25:5!2 +MAT 25:5!1 +MAT 25:5!3 +MAT 25:5!4 +MAT 25:5!5 +MAT 25:5!6 +MAT 25:5!7 +MAT 25:5!8 +MAT 25:6!2 +MAT 25:6!1 +MAT 25:6!3 +MAT 25:6!4 +MAT 25:6!5 +MAT 25:6!6 +MAT 25:6!7 +MAT 25:6!8 +MAT 25:6!9 +MAT 25:6!10 +MAT 25:6!11 +MAT 25:7!1 +MAT 25:7!2 +MAT 25:7!3 +MAT 25:7!4 +MAT 25:7!5 +MAT 25:7!6 +MAT 25:7!7 +MAT 25:7!8 +MAT 25:7!9 +MAT 25:7!10 +MAT 25:7!11 +MAT 25:8!2 +MAT 25:8!1 +MAT 25:8!3 +MAT 25:8!4 +MAT 25:8!5 +MAT 25:8!6 +MAT 25:8!7 +MAT 25:8!8 +MAT 25:8!9 +MAT 25:8!10 +MAT 25:8!11 +MAT 25:8!12 +MAT 25:8!13 +MAT 25:8!14 +MAT 25:8!15 +MAT 25:8!16 +MAT 25:8!17 +MAT 25:9!2 +MAT 25:9!1 +MAT 25:9!3 +MAT 25:9!4 +MAT 25:9!5 +MAT 25:9!6 +MAT 25:9!7 +MAT 25:9!8 +MAT 25:9!9 +MAT 25:9!10 +MAT 25:9!11 +MAT 25:9!12 +MAT 25:9!13 +MAT 25:9!14 +MAT 25:9!15 +MAT 25:9!16 +MAT 25:9!17 +MAT 25:9!18 +MAT 25:9!19 +MAT 25:9!20 +MAT 25:9!21 +MAT 25:10!2 +MAT 25:10!1 +MAT 25:10!3 +MAT 25:10!4 +MAT 25:10!5 +MAT 25:10!6 +MAT 25:10!7 +MAT 25:10!8 +MAT 25:10!9 +MAT 25:10!10 +MAT 25:10!11 +MAT 25:10!12 +MAT 25:10!13 +MAT 25:10!14 +MAT 25:10!15 +MAT 25:10!16 +MAT 25:10!17 +MAT 25:10!18 +MAT 25:10!19 +MAT 25:10!20 +MAT 25:11!2 +MAT 25:11!1 +MAT 25:11!3 +MAT 25:11!4 +MAT 25:11!5 +MAT 25:11!6 +MAT 25:11!7 +MAT 25:11!8 +MAT 25:11!9 +MAT 25:11!10 +MAT 25:11!11 +MAT 25:11!12 +MAT 25:12!2 +MAT 25:12!1 +MAT 25:12!3 +MAT 25:12!4 +MAT 25:12!5 +MAT 25:12!6 +MAT 25:12!7 +MAT 25:12!8 +MAT 25:12!9 +MAT 25:12!10 +MAT 25:13!2 +MAT 25:13!1 +MAT 25:13!3 +MAT 25:13!4 +MAT 25:13!5 +MAT 25:13!6 +MAT 25:13!7 +MAT 25:13!8 +MAT 25:13!9 +MAT 25:13!10 +MAT 25:14!2 +MAT 25:14!1 +MAT 25:14!3 +MAT 25:14!4 +MAT 25:14!5 +MAT 25:14!6 +MAT 25:14!7 +MAT 25:14!8 +MAT 25:14!9 +MAT 25:14!10 +MAT 25:14!11 +MAT 25:14!12 +MAT 25:14!13 +MAT 25:14!14 +MAT 25:15!1 +MAT 25:15!3 +MAT 25:15!2 +MAT 25:15!4 +MAT 25:15!5 +MAT 25:15!6 +MAT 25:15!8 +MAT 25:15!7 +MAT 25:15!9 +MAT 25:15!11 +MAT 25:15!10 +MAT 25:15!12 +MAT 25:15!13 +MAT 25:15!14 +MAT 25:15!15 +MAT 25:15!16 +MAT 25:15!17 +MAT 25:15!18 +MAT 25:15!19 +MAT 25:15!20 +MAT 25:16!1 +MAT 25:16!2 +MAT 25:16!3 +MAT 25:16!4 +MAT 25:16!5 +MAT 25:16!6 +MAT 25:16!7 +MAT 25:16!8 +MAT 25:16!9 +MAT 25:16!10 +MAT 25:16!11 +MAT 25:16!12 +MAT 25:16!13 +MAT 25:17!1 +MAT 25:17!2 +MAT 25:17!3 +MAT 25:17!4 +MAT 25:17!5 +MAT 25:17!6 +MAT 25:17!7 +MAT 25:18!2 +MAT 25:18!1 +MAT 25:18!3 +MAT 25:18!4 +MAT 25:18!5 +MAT 25:18!6 +MAT 25:18!7 +MAT 25:18!8 +MAT 25:18!9 +MAT 25:18!10 +MAT 25:18!11 +MAT 25:18!12 +MAT 25:18!13 +MAT 25:18!14 +MAT 25:18!15 +MAT 25:19!2 +MAT 25:19!1 +MAT 25:19!3 +MAT 25:19!4 +MAT 25:19!5 +MAT 25:19!6 +MAT 25:19!7 +MAT 25:19!8 +MAT 25:19!9 +MAT 25:19!10 +MAT 25:19!11 +MAT 25:19!12 +MAT 25:19!13 +MAT 25:19!14 +MAT 25:19!15 +MAT 25:20!1 +MAT 25:20!2 +MAT 25:20!3 +MAT 25:20!4 +MAT 25:20!5 +MAT 25:20!6 +MAT 25:20!7 +MAT 25:20!8 +MAT 25:20!9 +MAT 25:20!10 +MAT 25:20!11 +MAT 25:20!12 +MAT 25:20!13 +MAT 25:20!14 +MAT 25:20!15 +MAT 25:20!16 +MAT 25:20!17 +MAT 25:20!18 +MAT 25:20!19 +MAT 25:20!20 +MAT 25:20!21 +MAT 25:20!22 +MAT 25:21!1 +MAT 25:21!2 +MAT 25:21!3 +MAT 25:21!4 +MAT 25:21!5 +MAT 25:21!6 +MAT 25:21!7 +MAT 25:21!8 +MAT 25:21!9 +MAT 25:21!10 +MAT 25:21!11 +MAT 25:21!12 +MAT 25:21!13 +MAT 25:21!14 +MAT 25:21!15 +MAT 25:21!16 +MAT 25:21!17 +MAT 25:21!18 +MAT 25:21!19 +MAT 25:21!20 +MAT 25:21!21 +MAT 25:21!22 +MAT 25:21!23 +MAT 25:21!24 +MAT 25:21!25 +MAT 25:22!1 +MAT 25:22!2 +MAT 25:22!3 +MAT 25:22!4 +MAT 25:22!5 +MAT 25:22!6 +MAT 25:22!7 +MAT 25:22!8 +MAT 25:22!9 +MAT 25:22!10 +MAT 25:22!11 +MAT 25:22!12 +MAT 25:22!13 +MAT 25:22!14 +MAT 25:22!15 +MAT 25:22!16 +MAT 25:22!17 +MAT 25:23!1 +MAT 25:23!2 +MAT 25:23!3 +MAT 25:23!4 +MAT 25:23!5 +MAT 25:23!6 +MAT 25:23!7 +MAT 25:23!8 +MAT 25:23!9 +MAT 25:23!10 +MAT 25:23!11 +MAT 25:23!12 +MAT 25:23!13 +MAT 25:23!14 +MAT 25:23!15 +MAT 25:23!16 +MAT 25:23!17 +MAT 25:23!18 +MAT 25:23!19 +MAT 25:23!20 +MAT 25:23!21 +MAT 25:23!22 +MAT 25:23!23 +MAT 25:23!24 +MAT 25:23!25 +MAT 25:24!2 +MAT 25:24!1 +MAT 25:24!3 +MAT 25:24!4 +MAT 25:24!5 +MAT 25:24!6 +MAT 25:24!7 +MAT 25:24!8 +MAT 25:24!9 +MAT 25:24!10 +MAT 25:24!11 +MAT 25:24!12 +MAT 25:24!13 +MAT 25:24!15 +MAT 25:24!14 +MAT 25:24!16 +MAT 25:24!17 +MAT 25:24!18 +MAT 25:24!19 +MAT 25:24!20 +MAT 25:24!21 +MAT 25:24!22 +MAT 25:24!23 +MAT 25:24!24 +MAT 25:24!25 +MAT 25:25!1 +MAT 25:25!2 +MAT 25:25!3 +MAT 25:25!4 +MAT 25:25!5 +MAT 25:25!6 +MAT 25:25!7 +MAT 25:25!8 +MAT 25:25!9 +MAT 25:25!10 +MAT 25:25!11 +MAT 25:25!12 +MAT 25:25!13 +MAT 25:25!14 +MAT 25:26!2 +MAT 25:26!1 +MAT 25:26!3 +MAT 25:26!4 +MAT 25:26!5 +MAT 25:26!6 +MAT 25:26!7 +MAT 25:26!9 +MAT 25:26!8 +MAT 25:26!10 +MAT 25:26!11 +MAT 25:26!12 +MAT 25:26!13 +MAT 25:26!14 +MAT 25:26!15 +MAT 25:26!16 +MAT 25:26!17 +MAT 25:26!18 +MAT 25:26!19 +MAT 25:26!20 +MAT 25:26!21 +MAT 25:26!22 +MAT 25:27!3 +MAT 25:27!1 +MAT 25:27!2 +MAT 25:27!4 +MAT 25:27!5 +MAT 25:27!6 +MAT 25:27!7 +MAT 25:27!8 +MAT 25:27!9 +MAT 25:27!10 +MAT 25:27!14 +MAT 25:27!11 +MAT 25:27!12 +MAT 25:27!13 +MAT 25:27!15 +MAT 25:27!16 +MAT 25:27!17 +MAT 25:27!18 +MAT 25:28!2 +MAT 25:28!1 +MAT 25:28!3 +MAT 25:28!4 +MAT 25:28!5 +MAT 25:28!6 +MAT 25:28!7 +MAT 25:28!8 +MAT 25:28!9 +MAT 25:28!10 +MAT 25:28!11 +MAT 25:28!12 +MAT 25:28!13 +MAT 25:29!2 +MAT 25:29!1 +MAT 25:29!3 +MAT 25:29!4 +MAT 25:29!5 +MAT 25:29!6 +MAT 25:29!7 +MAT 25:29!9 +MAT 25:29!8 +MAT 25:29!10 +MAT 25:29!11 +MAT 25:29!12 +MAT 25:29!13 +MAT 25:29!14 +MAT 25:29!15 +MAT 25:29!16 +MAT 25:29!17 +MAT 25:30!1 +MAT 25:30!2 +MAT 25:30!3 +MAT 25:30!4 +MAT 25:30!5 +MAT 25:30!6 +MAT 25:30!7 +MAT 25:30!8 +MAT 25:30!9 +MAT 25:30!10 +MAT 25:30!11 +MAT 25:30!12 +MAT 25:30!13 +MAT 25:30!14 +MAT 25:30!15 +MAT 25:30!16 +MAT 25:30!17 +MAT 25:30!18 +MAT 25:30!19 +MAT 25:31!2 +MAT 25:31!1 +MAT 25:31!3 +MAT 25:31!4 +MAT 25:31!5 +MAT 25:31!6 +MAT 25:31!7 +MAT 25:31!8 +MAT 25:31!9 +MAT 25:31!10 +MAT 25:31!11 +MAT 25:31!12 +MAT 25:31!13 +MAT 25:31!14 +MAT 25:31!15 +MAT 25:31!16 +MAT 25:31!17 +MAT 25:31!18 +MAT 25:31!19 +MAT 25:31!20 +MAT 25:31!21 +MAT 25:31!22 +MAT 25:31!23 +MAT 25:32!1 +MAT 25:32!2 +MAT 25:32!3 +MAT 25:32!4 +MAT 25:32!5 +MAT 25:32!6 +MAT 25:32!7 +MAT 25:32!8 +MAT 25:32!9 +MAT 25:32!10 +MAT 25:32!11 +MAT 25:32!12 +MAT 25:32!13 +MAT 25:32!14 +MAT 25:32!15 +MAT 25:32!16 +MAT 25:32!17 +MAT 25:32!18 +MAT 25:32!19 +MAT 25:32!20 +MAT 25:32!21 +MAT 25:33!1 +MAT 25:33!4 +MAT 25:33!2 +MAT 25:33!3 +MAT 25:33!5 +MAT 25:33!6 +MAT 25:33!7 +MAT 25:33!8 +MAT 25:33!10 +MAT 25:33!9 +MAT 25:33!11 +MAT 25:33!12 +MAT 25:33!13 +MAT 25:34!1 +MAT 25:34!2 +MAT 25:34!3 +MAT 25:34!4 +MAT 25:34!5 +MAT 25:34!6 +MAT 25:34!7 +MAT 25:34!8 +MAT 25:34!9 +MAT 25:34!10 +MAT 25:34!11 +MAT 25:34!12 +MAT 25:34!13 +MAT 25:34!14 +MAT 25:34!15 +MAT 25:34!16 +MAT 25:34!17 +MAT 25:34!18 +MAT 25:34!20 +MAT 25:34!21 +MAT 25:34!22 +MAT 25:34!19 +MAT 25:35!2 +MAT 25:35!1 +MAT 25:35!3 +MAT 25:35!4 +MAT 25:35!5 +MAT 25:35!6 +MAT 25:35!7 +MAT 25:35!8 +MAT 25:35!9 +MAT 25:35!10 +MAT 25:35!11 +MAT 25:35!12 +MAT 25:35!13 +MAT 25:35!14 +MAT 25:35!15 +MAT 25:36!1 +MAT 25:36!2 +MAT 25:36!3 +MAT 25:36!4 +MAT 25:36!5 +MAT 25:36!6 +MAT 25:36!7 +MAT 25:36!8 +MAT 25:36!9 +MAT 25:36!10 +MAT 25:36!11 +MAT 25:36!12 +MAT 25:36!13 +MAT 25:36!14 +MAT 25:36!15 +MAT 25:37!1 +MAT 25:37!2 +MAT 25:37!3 +MAT 25:37!4 +MAT 25:37!5 +MAT 25:37!6 +MAT 25:37!7 +MAT 25:37!8 +MAT 25:37!10 +MAT 25:37!9 +MAT 25:37!11 +MAT 25:37!12 +MAT 25:37!13 +MAT 25:37!14 +MAT 25:37!15 +MAT 25:37!16 +MAT 25:37!17 +MAT 25:38!2 +MAT 25:38!1 +MAT 25:38!4 +MAT 25:38!3 +MAT 25:38!5 +MAT 25:38!6 +MAT 25:38!7 +MAT 25:38!8 +MAT 25:38!9 +MAT 25:38!10 +MAT 25:38!11 +MAT 25:39!2 +MAT 25:39!1 +MAT 25:39!4 +MAT 25:39!3 +MAT 25:39!5 +MAT 25:39!6 +MAT 25:39!7 +MAT 25:39!8 +MAT 25:39!9 +MAT 25:39!10 +MAT 25:39!11 +MAT 25:39!12 +MAT 25:40!1 +MAT 25:40!2 +MAT 25:40!3 +MAT 25:40!4 +MAT 25:40!5 +MAT 25:40!6 +MAT 25:40!7 +MAT 25:40!8 +MAT 25:40!9 +MAT 25:40!10 +MAT 25:40!11 +MAT 25:40!12 +MAT 25:40!13 +MAT 25:40!14 +MAT 25:40!15 +MAT 25:40!16 +MAT 25:40!17 +MAT 25:40!18 +MAT 25:40!19 +MAT 25:40!20 +MAT 25:40!21 +MAT 25:41!1 +MAT 25:41!2 +MAT 25:41!3 +MAT 25:41!4 +MAT 25:41!5 +MAT 25:41!6 +MAT 25:41!10 +MAT 25:41!7 +MAT 25:41!8 +MAT 25:41!9 +MAT 25:41!11 +MAT 25:41!12 +MAT 25:41!13 +MAT 25:41!14 +MAT 25:41!15 +MAT 25:41!16 +MAT 25:41!17 +MAT 25:41!18 +MAT 25:41!19 +MAT 25:41!20 +MAT 25:41!21 +MAT 25:41!22 +MAT 25:41!23 +MAT 25:42!2 +MAT 25:42!1 +MAT 25:42!3 +MAT 25:42!4 +MAT 25:42!5 +MAT 25:42!6 +MAT 25:42!7 +MAT 25:42!8 +MAT 25:42!9 +MAT 25:42!10 +MAT 25:42!11 +MAT 25:42!12 +MAT 25:43!1 +MAT 25:43!2 +MAT 25:43!3 +MAT 25:43!4 +MAT 25:43!5 +MAT 25:43!6 +MAT 25:43!7 +MAT 25:43!8 +MAT 25:43!9 +MAT 25:43!10 +MAT 25:43!11 +MAT 25:43!12 +MAT 25:43!13 +MAT 25:43!14 +MAT 25:43!15 +MAT 25:43!16 +MAT 25:43!17 +MAT 25:43!18 +MAT 25:43!19 +MAT 25:44!1 +MAT 25:44!2 +MAT 25:44!3 +MAT 25:44!4 +MAT 25:44!5 +MAT 25:44!6 +MAT 25:44!7 +MAT 25:44!9 +MAT 25:44!8 +MAT 25:44!10 +MAT 25:44!11 +MAT 25:44!12 +MAT 25:44!13 +MAT 25:44!14 +MAT 25:44!15 +MAT 25:44!16 +MAT 25:44!17 +MAT 25:44!18 +MAT 25:44!19 +MAT 25:44!20 +MAT 25:44!21 +MAT 25:44!22 +MAT 25:44!23 +MAT 25:44!24 +MAT 25:44!25 +MAT 25:45!1 +MAT 25:45!2 +MAT 25:45!3 +MAT 25:45!4 +MAT 25:45!5 +MAT 25:45!6 +MAT 25:45!7 +MAT 25:45!8 +MAT 25:45!9 +MAT 25:45!10 +MAT 25:45!11 +MAT 25:45!12 +MAT 25:45!13 +MAT 25:45!14 +MAT 25:45!15 +MAT 25:45!16 +MAT 25:45!17 +MAT 25:45!18 +MAT 25:46!1 +MAT 25:46!2 +MAT 25:46!3 +MAT 25:46!4 +MAT 25:46!5 +MAT 25:46!6 +MAT 25:46!8 +MAT 25:46!7 +MAT 25:46!9 +MAT 25:46!10 +MAT 25:46!11 +MAT 25:46!12 +MAT 26:1!1 +MAT 26:1!2 +MAT 26:1!3 +MAT 26:1!4 +MAT 26:1!5 +MAT 26:1!6 +MAT 26:1!7 +MAT 26:1!8 +MAT 26:1!9 +MAT 26:1!10 +MAT 26:1!11 +MAT 26:1!12 +MAT 26:1!13 +MAT 26:1!14 +MAT 26:2!1 +MAT 26:2!2 +MAT 26:2!3 +MAT 26:2!4 +MAT 26:2!5 +MAT 26:2!6 +MAT 26:2!7 +MAT 26:2!8 +MAT 26:2!9 +MAT 26:2!10 +MAT 26:2!11 +MAT 26:2!12 +MAT 26:2!13 +MAT 26:2!14 +MAT 26:2!15 +MAT 26:2!16 +MAT 26:2!17 +MAT 26:3!1 +MAT 26:3!2 +MAT 26:3!3 +MAT 26:3!4 +MAT 26:3!5 +MAT 26:3!6 +MAT 26:3!7 +MAT 26:3!8 +MAT 26:3!9 +MAT 26:3!10 +MAT 26:3!11 +MAT 26:3!12 +MAT 26:3!13 +MAT 26:3!14 +MAT 26:3!15 +MAT 26:3!16 +MAT 26:3!17 +MAT 26:4!1 +MAT 26:4!2 +MAT 26:4!3 +MAT 26:4!4 +MAT 26:4!5 +MAT 26:4!6 +MAT 26:4!7 +MAT 26:4!8 +MAT 26:4!9 +MAT 26:5!2 +MAT 26:5!1 +MAT 26:5!3 +MAT 26:5!4 +MAT 26:5!5 +MAT 26:5!6 +MAT 26:5!7 +MAT 26:5!8 +MAT 26:5!9 +MAT 26:5!10 +MAT 26:5!11 +MAT 26:5!12 +MAT 26:5!13 +MAT 26:6!2 +MAT 26:6!1 +MAT 26:6!3 +MAT 26:6!4 +MAT 26:6!5 +MAT 26:6!6 +MAT 26:6!7 +MAT 26:6!8 +MAT 26:6!9 +MAT 26:6!10 +MAT 26:6!11 +MAT 26:7!1 +MAT 26:7!2 +MAT 26:7!3 +MAT 26:7!4 +MAT 26:7!5 +MAT 26:7!6 +MAT 26:7!7 +MAT 26:7!8 +MAT 26:7!9 +MAT 26:7!10 +MAT 26:7!11 +MAT 26:7!12 +MAT 26:7!13 +MAT 26:7!14 +MAT 26:8!2 +MAT 26:8!1 +MAT 26:8!3 +MAT 26:8!4 +MAT 26:8!5 +MAT 26:8!6 +MAT 26:8!7 +MAT 26:8!8 +MAT 26:8!9 +MAT 26:8!10 +MAT 26:8!11 +MAT 26:9!2 +MAT 26:9!1 +MAT 26:9!3 +MAT 26:9!4 +MAT 26:9!5 +MAT 26:9!6 +MAT 26:9!7 +MAT 26:9!8 +MAT 26:10!2 +MAT 26:10!1 +MAT 26:10!3 +MAT 26:10!4 +MAT 26:10!5 +MAT 26:10!6 +MAT 26:10!7 +MAT 26:10!8 +MAT 26:10!9 +MAT 26:10!10 +MAT 26:10!11 +MAT 26:10!13 +MAT 26:10!12 +MAT 26:10!14 +MAT 26:10!15 +MAT 26:10!16 +MAT 26:10!17 +MAT 26:11!2 +MAT 26:11!1 +MAT 26:11!3 +MAT 26:11!4 +MAT 26:11!5 +MAT 26:11!6 +MAT 26:11!7 +MAT 26:11!9 +MAT 26:11!8 +MAT 26:11!10 +MAT 26:11!11 +MAT 26:11!12 +MAT 26:12!2 +MAT 26:12!3 +MAT 26:12!1 +MAT 26:12!4 +MAT 26:12!5 +MAT 26:12!6 +MAT 26:12!7 +MAT 26:12!8 +MAT 26:12!9 +MAT 26:12!10 +MAT 26:12!11 +MAT 26:12!12 +MAT 26:12!13 +MAT 26:12!14 +MAT 26:12!15 +MAT 26:13!1 +MAT 26:13!2 +MAT 26:13!3 +MAT 26:13!5 +MAT 26:13!4 +MAT 26:13!6 +MAT 26:13!7 +MAT 26:13!8 +MAT 26:13!9 +MAT 26:13!10 +MAT 26:13!11 +MAT 26:13!12 +MAT 26:13!13 +MAT 26:13!14 +MAT 26:13!15 +MAT 26:13!16 +MAT 26:13!17 +MAT 26:13!18 +MAT 26:13!19 +MAT 26:13!20 +MAT 26:13!21 +MAT 26:14!1 +MAT 26:14!3 +MAT 26:14!4 +MAT 26:14!5 +MAT 26:14!6 +MAT 26:14!7 +MAT 26:14!8 +MAT 26:14!9 +MAT 26:14!2 +MAT 26:14!10 +MAT 26:14!11 +MAT 26:14!12 +MAT 26:15!1 +MAT 26:15!3 +MAT 26:15!2 +MAT 26:15!4 +MAT 26:15!5 +MAT 26:15!6 +MAT 26:15!7 +MAT 26:15!8 +MAT 26:15!9 +MAT 26:15!11 +MAT 26:15!10 +MAT 26:15!12 +MAT 26:15!13 +MAT 26:15!14 +MAT 26:15!15 +MAT 26:16!1 +MAT 26:16!2 +MAT 26:16!3 +MAT 26:16!4 +MAT 26:16!5 +MAT 26:16!6 +MAT 26:16!7 +MAT 26:16!8 +MAT 26:17!2 +MAT 26:17!1 +MAT 26:17!3 +MAT 26:17!4 +MAT 26:17!5 +MAT 26:17!6 +MAT 26:17!7 +MAT 26:17!8 +MAT 26:17!9 +MAT 26:17!10 +MAT 26:17!11 +MAT 26:17!13 +MAT 26:17!12 +MAT 26:17!14 +MAT 26:17!15 +MAT 26:17!16 +MAT 26:17!17 +MAT 26:17!18 +MAT 26:18!2 +MAT 26:18!1 +MAT 26:18!3 +MAT 26:18!4 +MAT 26:18!5 +MAT 26:18!6 +MAT 26:18!7 +MAT 26:18!8 +MAT 26:18!9 +MAT 26:18!10 +MAT 26:18!11 +MAT 26:18!12 +MAT 26:18!13 +MAT 26:18!14 +MAT 26:18!15 +MAT 26:18!16 +MAT 26:18!17 +MAT 26:18!18 +MAT 26:18!19 +MAT 26:18!20 +MAT 26:18!21 +MAT 26:18!22 +MAT 26:18!23 +MAT 26:18!24 +MAT 26:18!25 +MAT 26:18!26 +MAT 26:18!27 +MAT 26:18!28 +MAT 26:18!29 +MAT 26:18!30 +MAT 26:19!1 +MAT 26:19!2 +MAT 26:19!3 +MAT 26:19!4 +MAT 26:19!5 +MAT 26:19!6 +MAT 26:19!7 +MAT 26:19!8 +MAT 26:19!9 +MAT 26:19!10 +MAT 26:19!11 +MAT 26:19!12 +MAT 26:19!13 +MAT 26:20!2 +MAT 26:20!1 +MAT 26:20!3 +MAT 26:20!4 +MAT 26:20!5 +MAT 26:20!6 +MAT 26:20!7 +MAT 26:20!8 +MAT 26:21!1 +MAT 26:21!2 +MAT 26:21!3 +MAT 26:21!4 +MAT 26:21!5 +MAT 26:21!6 +MAT 26:21!7 +MAT 26:21!8 +MAT 26:21!9 +MAT 26:21!10 +MAT 26:21!11 +MAT 26:21!12 +MAT 26:21!13 +MAT 26:22!1 +MAT 26:22!2 +MAT 26:22!3 +MAT 26:22!4 +MAT 26:22!5 +MAT 26:22!6 +MAT 26:22!7 +MAT 26:22!8 +MAT 26:22!9 +MAT 26:22!10 +MAT 26:22!11 +MAT 26:22!12 +MAT 26:23!2 +MAT 26:23!1 +MAT 26:23!3 +MAT 26:23!4 +MAT 26:23!5 +MAT 26:23!6 +MAT 26:23!7 +MAT 26:23!8 +MAT 26:23!9 +MAT 26:23!10 +MAT 26:23!11 +MAT 26:23!12 +MAT 26:23!13 +MAT 26:23!14 +MAT 26:23!15 +MAT 26:23!16 +MAT 26:24!2 +MAT 26:24!1 +MAT 26:24!3 +MAT 26:24!4 +MAT 26:24!5 +MAT 26:24!6 +MAT 26:24!7 +MAT 26:24!8 +MAT 26:24!9 +MAT 26:24!10 +MAT 26:24!12 +MAT 26:24!11 +MAT 26:24!13 +MAT 26:24!14 +MAT 26:24!15 +MAT 26:24!16 +MAT 26:24!17 +MAT 26:24!18 +MAT 26:24!19 +MAT 26:24!20 +MAT 26:24!21 +MAT 26:24!22 +MAT 26:24!23 +MAT 26:24!24 +MAT 26:24!25 +MAT 26:24!26 +MAT 26:24!27 +MAT 26:24!28 +MAT 26:24!29 +MAT 26:24!30 +MAT 26:24!31 +MAT 26:25!2 +MAT 26:25!1 +MAT 26:25!3 +MAT 26:25!4 +MAT 26:25!5 +MAT 26:25!6 +MAT 26:25!7 +MAT 26:25!8 +MAT 26:25!9 +MAT 26:25!10 +MAT 26:25!11 +MAT 26:25!12 +MAT 26:25!13 +MAT 26:25!14 +MAT 26:25!15 +MAT 26:26!2 +MAT 26:26!1 +MAT 26:26!3 +MAT 26:26!5 +MAT 26:26!6 +MAT 26:26!4 +MAT 26:26!7 +MAT 26:26!8 +MAT 26:26!9 +MAT 26:26!10 +MAT 26:26!11 +MAT 26:26!12 +MAT 26:26!13 +MAT 26:26!14 +MAT 26:26!15 +MAT 26:26!16 +MAT 26:26!17 +MAT 26:26!18 +MAT 26:26!19 +MAT 26:26!20 +MAT 26:26!21 +MAT 26:26!22 +MAT 26:27!1 +MAT 26:27!2 +MAT 26:27!3 +MAT 26:27!4 +MAT 26:27!5 +MAT 26:27!6 +MAT 26:27!7 +MAT 26:27!8 +MAT 26:27!9 +MAT 26:27!10 +MAT 26:27!11 +MAT 26:27!12 +MAT 26:28!2 +MAT 26:28!1 +MAT 26:28!3 +MAT 26:28!4 +MAT 26:28!5 +MAT 26:28!6 +MAT 26:28!7 +MAT 26:28!8 +MAT 26:28!9 +MAT 26:28!10 +MAT 26:28!11 +MAT 26:28!12 +MAT 26:28!13 +MAT 26:28!14 +MAT 26:28!15 +MAT 26:29!2 +MAT 26:29!1 +MAT 26:29!3 +MAT 26:29!4 +MAT 26:29!5 +MAT 26:29!6 +MAT 26:29!7 +MAT 26:29!8 +MAT 26:29!9 +MAT 26:29!10 +MAT 26:29!11 +MAT 26:29!12 +MAT 26:29!13 +MAT 26:29!14 +MAT 26:29!15 +MAT 26:29!16 +MAT 26:29!17 +MAT 26:29!18 +MAT 26:29!19 +MAT 26:29!20 +MAT 26:29!21 +MAT 26:29!22 +MAT 26:29!23 +MAT 26:29!24 +MAT 26:29!25 +MAT 26:29!26 +MAT 26:29!27 +MAT 26:29!28 +MAT 26:29!29 +MAT 26:29!30 +MAT 26:30!1 +MAT 26:30!2 +MAT 26:30!3 +MAT 26:30!4 +MAT 26:30!5 +MAT 26:30!6 +MAT 26:30!7 +MAT 26:30!8 +MAT 26:31!1 +MAT 26:31!2 +MAT 26:31!3 +MAT 26:31!4 +MAT 26:31!5 +MAT 26:31!6 +MAT 26:31!7 +MAT 26:31!8 +MAT 26:31!9 +MAT 26:31!10 +MAT 26:31!11 +MAT 26:31!12 +MAT 26:31!13 +MAT 26:31!14 +MAT 26:31!16 +MAT 26:31!15 +MAT 26:31!17 +MAT 26:31!18 +MAT 26:31!19 +MAT 26:31!20 +MAT 26:31!21 +MAT 26:31!22 +MAT 26:31!23 +MAT 26:31!24 +MAT 26:31!25 +MAT 26:32!2 +MAT 26:32!1 +MAT 26:32!3 +MAT 26:32!4 +MAT 26:32!5 +MAT 26:32!6 +MAT 26:32!7 +MAT 26:32!8 +MAT 26:32!9 +MAT 26:32!10 +MAT 26:33!2 +MAT 26:33!1 +MAT 26:33!3 +MAT 26:33!4 +MAT 26:33!5 +MAT 26:33!6 +MAT 26:33!7 +MAT 26:33!8 +MAT 26:33!9 +MAT 26:33!10 +MAT 26:33!11 +MAT 26:33!12 +MAT 26:33!13 +MAT 26:33!14 +MAT 26:34!1 +MAT 26:34!2 +MAT 26:34!3 +MAT 26:34!4 +MAT 26:34!5 +MAT 26:34!6 +MAT 26:34!7 +MAT 26:34!8 +MAT 26:34!9 +MAT 26:34!10 +MAT 26:34!11 +MAT 26:34!12 +MAT 26:34!13 +MAT 26:34!14 +MAT 26:34!15 +MAT 26:34!16 +MAT 26:34!17 +MAT 26:34!18 +MAT 26:35!1 +MAT 26:35!2 +MAT 26:35!3 +MAT 26:35!4 +MAT 26:35!5 +MAT 26:35!6 +MAT 26:35!7 +MAT 26:35!8 +MAT 26:35!9 +MAT 26:35!10 +MAT 26:35!11 +MAT 26:35!12 +MAT 26:35!13 +MAT 26:35!14 +MAT 26:35!15 +MAT 26:35!16 +MAT 26:35!17 +MAT 26:35!18 +MAT 26:35!19 +MAT 26:35!20 +MAT 26:36!1 +MAT 26:36!2 +MAT 26:36!3 +MAT 26:36!4 +MAT 26:36!5 +MAT 26:36!6 +MAT 26:36!7 +MAT 26:36!8 +MAT 26:36!9 +MAT 26:36!10 +MAT 26:36!11 +MAT 26:36!12 +MAT 26:36!13 +MAT 26:36!14 +MAT 26:36!15 +MAT 26:36!16 +MAT 26:36!17 +MAT 26:36!18 +MAT 26:36!19 +MAT 26:36!20 +MAT 26:36!21 +MAT 26:37!1 +MAT 26:37!2 +MAT 26:37!3 +MAT 26:37!4 +MAT 26:37!5 +MAT 26:37!6 +MAT 26:37!7 +MAT 26:37!8 +MAT 26:37!9 +MAT 26:37!10 +MAT 26:37!11 +MAT 26:37!12 +MAT 26:37!13 +MAT 26:38!1 +MAT 26:38!2 +MAT 26:38!3 +MAT 26:38!4 +MAT 26:38!5 +MAT 26:38!6 +MAT 26:38!7 +MAT 26:38!8 +MAT 26:38!9 +MAT 26:38!10 +MAT 26:38!11 +MAT 26:38!12 +MAT 26:38!13 +MAT 26:38!14 +MAT 26:38!15 +MAT 26:38!16 +MAT 26:39!1 +MAT 26:39!2 +MAT 26:39!3 +MAT 26:39!4 +MAT 26:39!5 +MAT 26:39!6 +MAT 26:39!7 +MAT 26:39!8 +MAT 26:39!9 +MAT 26:39!10 +MAT 26:39!11 +MAT 26:39!12 +MAT 26:39!13 +MAT 26:39!14 +MAT 26:39!15 +MAT 26:39!16 +MAT 26:39!17 +MAT 26:39!18 +MAT 26:39!19 +MAT 26:39!20 +MAT 26:39!21 +MAT 26:39!22 +MAT 26:39!23 +MAT 26:39!24 +MAT 26:39!25 +MAT 26:39!26 +MAT 26:39!27 +MAT 26:39!28 +MAT 26:39!29 +MAT 26:40!1 +MAT 26:40!2 +MAT 26:40!3 +MAT 26:40!4 +MAT 26:40!5 +MAT 26:40!6 +MAT 26:40!7 +MAT 26:40!8 +MAT 26:40!9 +MAT 26:40!10 +MAT 26:40!11 +MAT 26:40!12 +MAT 26:40!13 +MAT 26:40!14 +MAT 26:40!15 +MAT 26:40!16 +MAT 26:40!17 +MAT 26:40!18 +MAT 26:40!19 +MAT 26:40!20 +MAT 26:40!21 +MAT 26:41!1 +MAT 26:41!2 +MAT 26:41!3 +MAT 26:41!4 +MAT 26:41!5 +MAT 26:41!6 +MAT 26:41!7 +MAT 26:41!8 +MAT 26:41!10 +MAT 26:41!9 +MAT 26:41!11 +MAT 26:41!12 +MAT 26:41!14 +MAT 26:41!13 +MAT 26:41!15 +MAT 26:41!16 +MAT 26:42!1 +MAT 26:42!2 +MAT 26:42!3 +MAT 26:42!4 +MAT 26:42!5 +MAT 26:42!6 +MAT 26:42!7 +MAT 26:42!8 +MAT 26:42!9 +MAT 26:42!10 +MAT 26:42!11 +MAT 26:42!12 +MAT 26:42!13 +MAT 26:42!14 +MAT 26:42!15 +MAT 26:42!16 +MAT 26:42!17 +MAT 26:42!18 +MAT 26:42!19 +MAT 26:42!20 +MAT 26:42!21 +MAT 26:43!1 +MAT 26:43!2 +MAT 26:43!3 +MAT 26:43!4 +MAT 26:43!5 +MAT 26:43!6 +MAT 26:43!8 +MAT 26:43!7 +MAT 26:43!12 +MAT 26:43!9 +MAT 26:43!10 +MAT 26:43!11 +MAT 26:44!1 +MAT 26:44!2 +MAT 26:44!3 +MAT 26:44!4 +MAT 26:44!5 +MAT 26:44!6 +MAT 26:44!7 +MAT 26:44!8 +MAT 26:44!9 +MAT 26:44!10 +MAT 26:44!11 +MAT 26:44!12 +MAT 26:44!13 +MAT 26:45!1 +MAT 26:45!2 +MAT 26:45!3 +MAT 26:45!4 +MAT 26:45!5 +MAT 26:45!6 +MAT 26:45!7 +MAT 26:45!8 +MAT 26:45!9 +MAT 26:45!10 +MAT 26:45!11 +MAT 26:45!12 +MAT 26:45!13 +MAT 26:45!14 +MAT 26:45!15 +MAT 26:45!16 +MAT 26:45!17 +MAT 26:45!18 +MAT 26:45!19 +MAT 26:45!20 +MAT 26:45!21 +MAT 26:45!22 +MAT 26:45!23 +MAT 26:45!24 +MAT 26:45!25 +MAT 26:46!1 +MAT 26:46!2 +MAT 26:46!3 +MAT 26:46!4 +MAT 26:46!5 +MAT 26:46!6 +MAT 26:46!7 +MAT 26:47!1 +MAT 26:47!2 +MAT 26:47!3 +MAT 26:47!4 +MAT 26:47!5 +MAT 26:47!6 +MAT 26:47!7 +MAT 26:47!8 +MAT 26:47!9 +MAT 26:47!10 +MAT 26:47!11 +MAT 26:47!12 +MAT 26:47!13 +MAT 26:47!14 +MAT 26:47!15 +MAT 26:47!16 +MAT 26:47!17 +MAT 26:47!18 +MAT 26:47!19 +MAT 26:47!20 +MAT 26:47!21 +MAT 26:47!22 +MAT 26:47!23 +MAT 26:47!24 +MAT 26:47!25 +MAT 26:47!26 +MAT 26:48!2 +MAT 26:48!1 +MAT 26:48!3 +MAT 26:48!4 +MAT 26:48!5 +MAT 26:48!6 +MAT 26:48!7 +MAT 26:48!8 +MAT 26:48!10 +MAT 26:48!9 +MAT 26:48!11 +MAT 26:48!12 +MAT 26:48!13 +MAT 26:48!14 +MAT 26:48!15 +MAT 26:49!1 +MAT 26:49!2 +MAT 26:49!3 +MAT 26:49!4 +MAT 26:49!5 +MAT 26:49!6 +MAT 26:49!7 +MAT 26:49!8 +MAT 26:49!9 +MAT 26:49!10 +MAT 26:49!11 +MAT 26:50!2 +MAT 26:50!1 +MAT 26:50!3 +MAT 26:50!4 +MAT 26:50!5 +MAT 26:50!6 +MAT 26:50!7 +MAT 26:50!8 +MAT 26:50!9 +MAT 26:50!10 +MAT 26:50!11 +MAT 26:50!12 +MAT 26:50!13 +MAT 26:50!14 +MAT 26:50!15 +MAT 26:50!16 +MAT 26:50!17 +MAT 26:50!18 +MAT 26:50!19 +MAT 26:50!20 +MAT 26:51!1 +MAT 26:51!2 +MAT 26:51!3 +MAT 26:51!4 +MAT 26:51!5 +MAT 26:51!6 +MAT 26:51!7 +MAT 26:51!8 +MAT 26:51!9 +MAT 26:51!10 +MAT 26:51!11 +MAT 26:51!12 +MAT 26:51!13 +MAT 26:51!14 +MAT 26:51!15 +MAT 26:51!16 +MAT 26:51!17 +MAT 26:51!18 +MAT 26:51!19 +MAT 26:51!20 +MAT 26:51!21 +MAT 26:51!22 +MAT 26:51!23 +MAT 26:52!1 +MAT 26:52!2 +MAT 26:52!3 +MAT 26:52!4 +MAT 26:52!5 +MAT 26:52!6 +MAT 26:52!7 +MAT 26:52!8 +MAT 26:52!9 +MAT 26:52!10 +MAT 26:52!11 +MAT 26:52!12 +MAT 26:52!13 +MAT 26:52!15 +MAT 26:52!14 +MAT 26:52!16 +MAT 26:52!17 +MAT 26:52!18 +MAT 26:52!19 +MAT 26:52!20 +MAT 26:52!21 +MAT 26:53!1 +MAT 26:53!2 +MAT 26:53!3 +MAT 26:53!4 +MAT 26:53!5 +MAT 26:53!6 +MAT 26:53!7 +MAT 26:53!8 +MAT 26:53!9 +MAT 26:53!10 +MAT 26:53!11 +MAT 26:53!12 +MAT 26:53!13 +MAT 26:53!14 +MAT 26:53!15 +MAT 26:53!16 +MAT 26:53!17 +MAT 26:54!2 +MAT 26:54!1 +MAT 26:54!3 +MAT 26:54!4 +MAT 26:54!5 +MAT 26:54!6 +MAT 26:54!7 +MAT 26:54!8 +MAT 26:54!9 +MAT 26:55!1 +MAT 26:55!2 +MAT 26:55!3 +MAT 26:55!4 +MAT 26:55!5 +MAT 26:55!6 +MAT 26:55!7 +MAT 26:55!8 +MAT 26:55!9 +MAT 26:55!10 +MAT 26:55!11 +MAT 26:55!12 +MAT 26:55!13 +MAT 26:55!14 +MAT 26:55!15 +MAT 26:55!16 +MAT 26:55!17 +MAT 26:55!18 +MAT 26:55!19 +MAT 26:55!20 +MAT 26:55!21 +MAT 26:55!22 +MAT 26:55!23 +MAT 26:55!24 +MAT 26:55!25 +MAT 26:55!26 +MAT 26:55!27 +MAT 26:55!28 +MAT 26:55!29 +MAT 26:55!30 +MAT 26:56!2 +MAT 26:56!1 +MAT 26:56!3 +MAT 26:56!4 +MAT 26:56!5 +MAT 26:56!6 +MAT 26:56!7 +MAT 26:56!8 +MAT 26:56!9 +MAT 26:56!10 +MAT 26:56!11 +MAT 26:56!12 +MAT 26:56!13 +MAT 26:56!14 +MAT 26:56!15 +MAT 26:56!16 +MAT 26:56!17 +MAT 26:57!2 +MAT 26:57!1 +MAT 26:57!3 +MAT 26:57!4 +MAT 26:57!5 +MAT 26:57!6 +MAT 26:57!7 +MAT 26:57!8 +MAT 26:57!9 +MAT 26:57!10 +MAT 26:57!11 +MAT 26:57!12 +MAT 26:57!13 +MAT 26:57!14 +MAT 26:57!15 +MAT 26:57!16 +MAT 26:57!17 +MAT 26:58!2 +MAT 26:58!1 +MAT 26:58!3 +MAT 26:58!4 +MAT 26:58!5 +MAT 26:58!6 +MAT 26:58!7 +MAT 26:58!8 +MAT 26:58!9 +MAT 26:58!10 +MAT 26:58!11 +MAT 26:58!12 +MAT 26:58!13 +MAT 26:58!14 +MAT 26:58!15 +MAT 26:58!16 +MAT 26:58!17 +MAT 26:58!18 +MAT 26:58!19 +MAT 26:58!20 +MAT 26:58!21 +MAT 26:58!22 +MAT 26:59!2 +MAT 26:59!1 +MAT 26:59!3 +MAT 26:59!4 +MAT 26:59!5 +MAT 26:59!6 +MAT 26:59!7 +MAT 26:59!8 +MAT 26:59!9 +MAT 26:59!10 +MAT 26:59!11 +MAT 26:59!12 +MAT 26:59!13 +MAT 26:59!14 +MAT 26:59!15 +MAT 26:60!1 +MAT 26:60!2 +MAT 26:60!3 +MAT 26:60!4 +MAT 26:60!6 +MAT 26:60!5 +MAT 26:60!8 +MAT 26:60!7 +MAT 26:60!9 +MAT 26:60!10 +MAT 26:61!1 +MAT 26:61!2 +MAT 26:61!3 +MAT 26:61!4 +MAT 26:61!5 +MAT 26:61!6 +MAT 26:61!7 +MAT 26:61!8 +MAT 26:61!9 +MAT 26:61!10 +MAT 26:61!11 +MAT 26:61!12 +MAT 26:61!13 +MAT 26:61!14 +MAT 26:62!1 +MAT 26:62!2 +MAT 26:62!3 +MAT 26:62!4 +MAT 26:62!5 +MAT 26:62!6 +MAT 26:62!7 +MAT 26:62!8 +MAT 26:62!9 +MAT 26:62!10 +MAT 26:62!11 +MAT 26:62!12 +MAT 26:63!2 +MAT 26:63!1 +MAT 26:63!3 +MAT 26:63!4 +MAT 26:63!5 +MAT 26:63!6 +MAT 26:63!7 +MAT 26:63!8 +MAT 26:63!9 +MAT 26:63!10 +MAT 26:63!11 +MAT 26:63!12 +MAT 26:63!13 +MAT 26:63!14 +MAT 26:63!15 +MAT 26:63!16 +MAT 26:63!17 +MAT 26:63!18 +MAT 26:63!19 +MAT 26:63!20 +MAT 26:63!21 +MAT 26:63!22 +MAT 26:63!23 +MAT 26:63!24 +MAT 26:63!25 +MAT 26:63!26 +MAT 26:63!27 +MAT 26:63!28 +MAT 26:64!1 +MAT 26:64!2 +MAT 26:64!3 +MAT 26:64!4 +MAT 26:64!5 +MAT 26:64!6 +MAT 26:64!7 +MAT 26:64!8 +MAT 26:64!9 +MAT 26:64!10 +MAT 26:64!11 +MAT 26:64!12 +MAT 26:64!13 +MAT 26:64!14 +MAT 26:64!15 +MAT 26:64!16 +MAT 26:64!17 +MAT 26:64!18 +MAT 26:64!19 +MAT 26:64!20 +MAT 26:64!21 +MAT 26:64!22 +MAT 26:64!23 +MAT 26:64!24 +MAT 26:64!25 +MAT 26:64!26 +MAT 26:64!27 +MAT 26:64!28 +MAT 26:65!1 +MAT 26:65!2 +MAT 26:65!3 +MAT 26:65!4 +MAT 26:65!5 +MAT 26:65!6 +MAT 26:65!7 +MAT 26:65!8 +MAT 26:65!9 +MAT 26:65!10 +MAT 26:65!11 +MAT 26:65!12 +MAT 26:65!14 +MAT 26:65!13 +MAT 26:65!15 +MAT 26:65!16 +MAT 26:65!17 +MAT 26:65!18 +MAT 26:65!19 +MAT 26:66!1 +MAT 26:66!2 +MAT 26:66!3 +MAT 26:66!5 +MAT 26:66!4 +MAT 26:66!6 +MAT 26:66!7 +MAT 26:66!8 +MAT 26:66!9 +MAT 26:66!10 +MAT 26:67!1 +MAT 26:67!2 +MAT 26:67!3 +MAT 26:67!4 +MAT 26:67!5 +MAT 26:67!6 +MAT 26:67!7 +MAT 26:67!8 +MAT 26:67!9 +MAT 26:67!11 +MAT 26:67!10 +MAT 26:67!12 +MAT 26:68!1 +MAT 26:68!2 +MAT 26:68!3 +MAT 26:68!4 +MAT 26:68!5 +MAT 26:68!6 +MAT 26:68!7 +MAT 26:68!8 +MAT 26:68!9 +MAT 26:69!2 +MAT 26:69!1 +MAT 26:69!3 +MAT 26:69!4 +MAT 26:69!5 +MAT 26:69!6 +MAT 26:69!7 +MAT 26:69!8 +MAT 26:69!9 +MAT 26:69!10 +MAT 26:69!11 +MAT 26:69!12 +MAT 26:69!13 +MAT 26:69!14 +MAT 26:69!15 +MAT 26:69!16 +MAT 26:69!17 +MAT 26:69!18 +MAT 26:69!19 +MAT 26:69!20 +MAT 26:69!21 +MAT 26:70!2 +MAT 26:70!1 +MAT 26:70!3 +MAT 26:70!4 +MAT 26:70!5 +MAT 26:70!6 +MAT 26:70!7 +MAT 26:70!8 +MAT 26:70!9 +MAT 26:70!10 +MAT 26:71!2 +MAT 26:71!1 +MAT 26:71!3 +MAT 26:71!4 +MAT 26:71!5 +MAT 26:71!6 +MAT 26:71!7 +MAT 26:71!8 +MAT 26:71!9 +MAT 26:71!10 +MAT 26:71!11 +MAT 26:71!12 +MAT 26:71!13 +MAT 26:71!14 +MAT 26:71!15 +MAT 26:71!16 +MAT 26:71!17 +MAT 26:71!18 +MAT 26:72!1 +MAT 26:72!2 +MAT 26:72!3 +MAT 26:72!4 +MAT 26:72!5 +MAT 26:72!6 +MAT 26:72!7 +MAT 26:72!8 +MAT 26:72!9 +MAT 26:72!10 +MAT 26:73!3 +MAT 26:73!1 +MAT 26:73!2 +MAT 26:73!4 +MAT 26:73!5 +MAT 26:73!6 +MAT 26:73!7 +MAT 26:73!8 +MAT 26:73!9 +MAT 26:73!10 +MAT 26:73!11 +MAT 26:73!12 +MAT 26:73!13 +MAT 26:73!14 +MAT 26:73!15 +MAT 26:73!17 +MAT 26:73!16 +MAT 26:73!18 +MAT 26:73!19 +MAT 26:73!20 +MAT 26:73!21 +MAT 26:73!22 +MAT 26:73!23 +MAT 26:74!1 +MAT 26:74!2 +MAT 26:74!3 +MAT 26:74!4 +MAT 26:74!5 +MAT 26:74!6 +MAT 26:74!7 +MAT 26:74!8 +MAT 26:74!9 +MAT 26:74!10 +MAT 26:74!11 +MAT 26:74!12 +MAT 26:74!13 +MAT 26:74!14 +MAT 26:75!1 +MAT 26:75!2 +MAT 26:75!3 +MAT 26:75!4 +MAT 26:75!5 +MAT 26:75!6 +MAT 26:75!7 +MAT 26:75!8 +MAT 26:75!9 +MAT 26:75!10 +MAT 26:75!11 +MAT 26:75!12 +MAT 26:75!13 +MAT 26:75!14 +MAT 26:75!15 +MAT 26:75!16 +MAT 26:75!17 +MAT 26:75!18 +MAT 26:75!19 +MAT 26:75!20 +MAT 27:1!2 +MAT 27:1!1 +MAT 27:1!3 +MAT 27:1!4 +MAT 27:1!5 +MAT 27:1!6 +MAT 27:1!7 +MAT 27:1!8 +MAT 27:1!9 +MAT 27:1!10 +MAT 27:1!11 +MAT 27:1!12 +MAT 27:1!13 +MAT 27:1!14 +MAT 27:1!15 +MAT 27:1!16 +MAT 27:1!17 +MAT 27:1!18 +MAT 27:1!19 +MAT 27:2!1 +MAT 27:2!2 +MAT 27:2!3 +MAT 27:2!4 +MAT 27:2!5 +MAT 27:2!6 +MAT 27:2!7 +MAT 27:2!8 +MAT 27:2!9 +MAT 27:3!1 +MAT 27:3!3 +MAT 27:3!4 +MAT 27:3!5 +MAT 27:3!6 +MAT 27:3!2 +MAT 27:3!7 +MAT 27:3!8 +MAT 27:3!9 +MAT 27:3!10 +MAT 27:3!11 +MAT 27:3!12 +MAT 27:3!13 +MAT 27:3!14 +MAT 27:3!15 +MAT 27:3!16 +MAT 27:3!17 +MAT 27:4!1 +MAT 27:4!2 +MAT 27:4!3 +MAT 27:4!4 +MAT 27:4!5 +MAT 27:4!7 +MAT 27:4!6 +MAT 27:4!8 +MAT 27:4!9 +MAT 27:4!10 +MAT 27:4!11 +MAT 27:4!12 +MAT 27:4!13 +MAT 27:5!1 +MAT 27:5!2 +MAT 27:5!3 +MAT 27:5!4 +MAT 27:5!5 +MAT 27:5!6 +MAT 27:5!7 +MAT 27:5!8 +MAT 27:5!9 +MAT 27:5!10 +MAT 27:5!11 +MAT 27:6!2 +MAT 27:6!1 +MAT 27:6!3 +MAT 27:6!4 +MAT 27:6!5 +MAT 27:6!6 +MAT 27:6!7 +MAT 27:6!8 +MAT 27:6!9 +MAT 27:6!10 +MAT 27:6!11 +MAT 27:6!12 +MAT 27:6!13 +MAT 27:6!14 +MAT 27:6!15 +MAT 27:6!16 +MAT 27:6!17 +MAT 27:6!18 +MAT 27:7!2 +MAT 27:7!1 +MAT 27:7!3 +MAT 27:7!4 +MAT 27:7!5 +MAT 27:7!6 +MAT 27:7!7 +MAT 27:7!8 +MAT 27:7!9 +MAT 27:7!10 +MAT 27:7!11 +MAT 27:7!12 +MAT 27:7!13 +MAT 27:7!14 +MAT 27:8!1 +MAT 27:8!2 +MAT 27:8!3 +MAT 27:8!4 +MAT 27:8!5 +MAT 27:8!6 +MAT 27:8!7 +MAT 27:8!8 +MAT 27:8!9 +MAT 27:8!10 +MAT 27:9!1 +MAT 27:9!2 +MAT 27:9!3 +MAT 27:9!4 +MAT 27:9!5 +MAT 27:9!6 +MAT 27:9!7 +MAT 27:9!8 +MAT 27:9!9 +MAT 27:9!10 +MAT 27:9!11 +MAT 27:9!12 +MAT 27:9!13 +MAT 27:9!14 +MAT 27:9!15 +MAT 27:9!16 +MAT 27:9!17 +MAT 27:9!18 +MAT 27:9!19 +MAT 27:9!20 +MAT 27:9!21 +MAT 27:9!22 +MAT 27:9!23 +MAT 27:10!1 +MAT 27:10!2 +MAT 27:10!3 +MAT 27:10!4 +MAT 27:10!5 +MAT 27:10!6 +MAT 27:10!7 +MAT 27:10!8 +MAT 27:10!9 +MAT 27:10!10 +MAT 27:10!11 +MAT 27:10!12 +MAT 27:11!2 +MAT 27:11!1 +MAT 27:11!3 +MAT 27:11!4 +MAT 27:11!5 +MAT 27:11!6 +MAT 27:11!7 +MAT 27:11!8 +MAT 27:11!9 +MAT 27:11!10 +MAT 27:11!11 +MAT 27:11!12 +MAT 27:11!13 +MAT 27:11!14 +MAT 27:11!15 +MAT 27:11!16 +MAT 27:11!17 +MAT 27:11!18 +MAT 27:11!19 +MAT 27:11!21 +MAT 27:11!20 +MAT 27:11!22 +MAT 27:11!23 +MAT 27:11!24 +MAT 27:11!25 +MAT 27:12!1 +MAT 27:12!2 +MAT 27:12!3 +MAT 27:12!4 +MAT 27:12!5 +MAT 27:12!6 +MAT 27:12!7 +MAT 27:12!8 +MAT 27:12!9 +MAT 27:12!10 +MAT 27:12!11 +MAT 27:12!12 +MAT 27:13!1 +MAT 27:13!2 +MAT 27:13!3 +MAT 27:13!4 +MAT 27:13!5 +MAT 27:13!6 +MAT 27:13!7 +MAT 27:13!8 +MAT 27:13!9 +MAT 27:13!10 +MAT 27:14!1 +MAT 27:14!2 +MAT 27:14!3 +MAT 27:14!4 +MAT 27:14!5 +MAT 27:14!6 +MAT 27:14!7 +MAT 27:14!8 +MAT 27:14!9 +MAT 27:14!10 +MAT 27:14!11 +MAT 27:14!12 +MAT 27:14!13 +MAT 27:15!2 +MAT 27:15!1 +MAT 27:15!3 +MAT 27:15!4 +MAT 27:15!5 +MAT 27:15!6 +MAT 27:15!7 +MAT 27:15!9 +MAT 27:15!10 +MAT 27:15!8 +MAT 27:15!11 +MAT 27:15!12 +MAT 27:15!13 +MAT 27:16!2 +MAT 27:16!1 +MAT 27:16!3 +MAT 27:16!4 +MAT 27:16!5 +MAT 27:16!6 +MAT 27:16!7 +MAT 27:17!2 +MAT 27:17!1 +MAT 27:17!3 +MAT 27:17!4 +MAT 27:17!5 +MAT 27:17!6 +MAT 27:17!7 +MAT 27:17!9 +MAT 27:17!8 +MAT 27:17!10 +MAT 27:17!11 +MAT 27:17!12 +MAT 27:17!13 +MAT 27:17!14 +MAT 27:17!15 +MAT 27:17!16 +MAT 27:17!17 +MAT 27:18!2 +MAT 27:18!1 +MAT 27:18!3 +MAT 27:18!4 +MAT 27:18!5 +MAT 27:18!6 +MAT 27:18!7 +MAT 27:19!2 +MAT 27:19!1 +MAT 27:19!3 +MAT 27:19!4 +MAT 27:19!5 +MAT 27:19!6 +MAT 27:19!7 +MAT 27:19!8 +MAT 27:19!9 +MAT 27:19!10 +MAT 27:19!11 +MAT 27:19!12 +MAT 27:19!13 +MAT 27:19!14 +MAT 27:19!15 +MAT 27:19!16 +MAT 27:19!17 +MAT 27:19!18 +MAT 27:19!19 +MAT 27:19!21 +MAT 27:19!20 +MAT 27:19!22 +MAT 27:19!23 +MAT 27:19!24 +MAT 27:19!25 +MAT 27:19!26 +MAT 27:19!27 +MAT 27:20!2 +MAT 27:20!1 +MAT 27:20!3 +MAT 27:20!4 +MAT 27:20!5 +MAT 27:20!6 +MAT 27:20!7 +MAT 27:20!8 +MAT 27:20!9 +MAT 27:20!10 +MAT 27:20!11 +MAT 27:20!12 +MAT 27:20!13 +MAT 27:20!15 +MAT 27:20!14 +MAT 27:20!16 +MAT 27:20!17 +MAT 27:21!2 +MAT 27:21!1 +MAT 27:21!3 +MAT 27:21!4 +MAT 27:21!5 +MAT 27:21!6 +MAT 27:21!8 +MAT 27:21!7 +MAT 27:21!9 +MAT 27:21!10 +MAT 27:21!11 +MAT 27:21!12 +MAT 27:21!13 +MAT 27:21!15 +MAT 27:21!14 +MAT 27:21!16 +MAT 27:21!17 +MAT 27:21!18 +MAT 27:22!1 +MAT 27:22!2 +MAT 27:22!3 +MAT 27:22!4 +MAT 27:22!6 +MAT 27:22!5 +MAT 27:22!7 +MAT 27:22!8 +MAT 27:22!9 +MAT 27:22!10 +MAT 27:22!11 +MAT 27:22!12 +MAT 27:22!13 +MAT 27:22!14 +MAT 27:23!2 +MAT 27:23!1 +MAT 27:23!3 +MAT 27:23!5 +MAT 27:23!4 +MAT 27:23!6 +MAT 27:23!7 +MAT 27:23!9 +MAT 27:23!8 +MAT 27:23!10 +MAT 27:23!11 +MAT 27:23!12 +MAT 27:23!13 +MAT 27:24!2 +MAT 27:24!3 +MAT 27:24!4 +MAT 27:24!1 +MAT 27:24!5 +MAT 27:24!6 +MAT 27:24!7 +MAT 27:24!8 +MAT 27:24!9 +MAT 27:24!10 +MAT 27:24!11 +MAT 27:24!12 +MAT 27:24!13 +MAT 27:24!14 +MAT 27:24!15 +MAT 27:24!16 +MAT 27:24!17 +MAT 27:24!18 +MAT 27:24!19 +MAT 27:24!20 +MAT 27:24!21 +MAT 27:24!22 +MAT 27:24!23 +MAT 27:24!24 +MAT 27:24!25 +MAT 27:24!26 +MAT 27:24!27 +MAT 27:24!28 +MAT 27:25!1 +MAT 27:25!2 +MAT 27:25!3 +MAT 27:25!4 +MAT 27:25!5 +MAT 27:25!6 +MAT 27:25!7 +MAT 27:25!8 +MAT 27:25!9 +MAT 27:25!10 +MAT 27:25!11 +MAT 27:25!12 +MAT 27:25!13 +MAT 27:25!14 +MAT 27:25!15 +MAT 27:25!16 +MAT 27:26!1 +MAT 27:26!2 +MAT 27:26!3 +MAT 27:26!4 +MAT 27:26!5 +MAT 27:26!7 +MAT 27:26!6 +MAT 27:26!8 +MAT 27:26!9 +MAT 27:26!10 +MAT 27:26!11 +MAT 27:26!12 +MAT 27:27!1 +MAT 27:27!2 +MAT 27:27!3 +MAT 27:27!4 +MAT 27:27!5 +MAT 27:27!6 +MAT 27:27!7 +MAT 27:27!8 +MAT 27:27!9 +MAT 27:27!10 +MAT 27:27!11 +MAT 27:27!12 +MAT 27:27!13 +MAT 27:27!14 +MAT 27:27!15 +MAT 27:27!16 +MAT 27:27!17 +MAT 27:28!1 +MAT 27:28!2 +MAT 27:28!3 +MAT 27:28!4 +MAT 27:28!5 +MAT 27:28!6 +MAT 27:28!7 +MAT 27:29!1 +MAT 27:29!2 +MAT 27:29!3 +MAT 27:29!4 +MAT 27:29!5 +MAT 27:29!6 +MAT 27:29!7 +MAT 27:29!8 +MAT 27:29!9 +MAT 27:29!10 +MAT 27:29!11 +MAT 27:29!12 +MAT 27:29!13 +MAT 27:29!14 +MAT 27:29!15 +MAT 27:29!16 +MAT 27:29!17 +MAT 27:29!18 +MAT 27:29!19 +MAT 27:29!20 +MAT 27:29!21 +MAT 27:29!22 +MAT 27:29!23 +MAT 27:29!24 +MAT 27:29!25 +MAT 27:29!26 +MAT 27:29!27 +MAT 27:30!1 +MAT 27:30!2 +MAT 27:30!3 +MAT 27:30!4 +MAT 27:30!5 +MAT 27:30!6 +MAT 27:30!7 +MAT 27:30!8 +MAT 27:30!9 +MAT 27:30!10 +MAT 27:30!11 +MAT 27:30!12 +MAT 27:30!13 +MAT 27:31!1 +MAT 27:31!2 +MAT 27:31!3 +MAT 27:31!4 +MAT 27:31!5 +MAT 27:31!6 +MAT 27:31!7 +MAT 27:31!8 +MAT 27:31!9 +MAT 27:31!10 +MAT 27:31!11 +MAT 27:31!12 +MAT 27:31!13 +MAT 27:31!14 +MAT 27:31!15 +MAT 27:31!16 +MAT 27:31!17 +MAT 27:31!18 +MAT 27:31!19 +MAT 27:31!20 +MAT 27:32!2 +MAT 27:32!1 +MAT 27:32!3 +MAT 27:32!4 +MAT 27:32!5 +MAT 27:32!6 +MAT 27:32!7 +MAT 27:32!8 +MAT 27:32!9 +MAT 27:32!10 +MAT 27:32!11 +MAT 27:32!12 +MAT 27:32!13 +MAT 27:32!14 +MAT 27:33!1 +MAT 27:33!2 +MAT 27:33!3 +MAT 27:33!4 +MAT 27:33!5 +MAT 27:33!6 +MAT 27:33!7 +MAT 27:33!8 +MAT 27:33!11 +MAT 27:33!9 +MAT 27:33!10 +MAT 27:34!1 +MAT 27:34!2 +MAT 27:34!3 +MAT 27:34!4 +MAT 27:34!5 +MAT 27:34!6 +MAT 27:34!7 +MAT 27:34!8 +MAT 27:34!9 +MAT 27:34!10 +MAT 27:34!11 +MAT 27:34!12 +MAT 27:35!2 +MAT 27:35!1 +MAT 27:35!3 +MAT 27:35!4 +MAT 27:35!5 +MAT 27:35!6 +MAT 27:35!7 +MAT 27:35!8 +MAT 27:35!9 +MAT 27:36!1 +MAT 27:36!2 +MAT 27:36!3 +MAT 27:36!4 +MAT 27:36!5 +MAT 27:37!1 +MAT 27:37!2 +MAT 27:37!3 +MAT 27:37!4 +MAT 27:37!5 +MAT 27:37!6 +MAT 27:37!7 +MAT 27:37!8 +MAT 27:37!9 +MAT 27:37!10 +MAT 27:37!11 +MAT 27:37!12 +MAT 27:37!13 +MAT 27:37!14 +MAT 27:37!15 +MAT 27:37!16 +MAT 27:37!17 +MAT 27:38!1 +MAT 27:38!2 +MAT 27:38!3 +MAT 27:38!4 +MAT 27:38!5 +MAT 27:38!6 +MAT 27:38!7 +MAT 27:38!8 +MAT 27:38!9 +MAT 27:38!10 +MAT 27:38!11 +MAT 27:38!12 +MAT 27:38!13 +MAT 27:39!2 +MAT 27:39!1 +MAT 27:39!3 +MAT 27:39!4 +MAT 27:39!5 +MAT 27:39!6 +MAT 27:39!7 +MAT 27:39!8 +MAT 27:39!9 +MAT 27:40!1 +MAT 27:40!2 +MAT 27:40!3 +MAT 27:40!4 +MAT 27:40!5 +MAT 27:40!6 +MAT 27:40!7 +MAT 27:40!8 +MAT 27:40!9 +MAT 27:40!10 +MAT 27:40!11 +MAT 27:40!12 +MAT 27:40!13 +MAT 27:40!14 +MAT 27:40!16 +MAT 27:40!15 +MAT 27:40!17 +MAT 27:40!18 +MAT 27:40!19 +MAT 27:40!20 +MAT 27:40!21 +MAT 27:40!22 +MAT 27:40!23 +MAT 27:41!1 +MAT 27:41!2 +MAT 27:41!3 +MAT 27:41!4 +MAT 27:41!5 +MAT 27:41!6 +MAT 27:41!7 +MAT 27:41!8 +MAT 27:41!9 +MAT 27:41!10 +MAT 27:42!1 +MAT 27:42!2 +MAT 27:42!3 +MAT 27:42!6 +MAT 27:42!4 +MAT 27:42!5 +MAT 27:42!7 +MAT 27:42!8 +MAT 27:42!9 +MAT 27:42!10 +MAT 27:42!11 +MAT 27:42!12 +MAT 27:42!13 +MAT 27:42!14 +MAT 27:42!15 +MAT 27:42!16 +MAT 27:42!17 +MAT 27:42!18 +MAT 27:43!1 +MAT 27:43!2 +MAT 27:43!3 +MAT 27:43!4 +MAT 27:43!5 +MAT 27:43!6 +MAT 27:43!7 +MAT 27:43!8 +MAT 27:43!9 +MAT 27:43!11 +MAT 27:43!10 +MAT 27:43!12 +MAT 27:43!13 +MAT 27:43!15 +MAT 27:43!14 +MAT 27:44!2 +MAT 27:44!1 +MAT 27:44!3 +MAT 27:44!4 +MAT 27:44!5 +MAT 27:44!6 +MAT 27:44!7 +MAT 27:44!8 +MAT 27:44!9 +MAT 27:44!10 +MAT 27:44!11 +MAT 27:44!12 +MAT 27:45!2 +MAT 27:45!1 +MAT 27:45!3 +MAT 27:45!4 +MAT 27:45!5 +MAT 27:45!6 +MAT 27:45!7 +MAT 27:45!8 +MAT 27:45!9 +MAT 27:45!10 +MAT 27:45!11 +MAT 27:45!12 +MAT 27:45!13 +MAT 27:46!2 +MAT 27:46!1 +MAT 27:46!3 +MAT 27:46!4 +MAT 27:46!5 +MAT 27:46!6 +MAT 27:46!7 +MAT 27:46!8 +MAT 27:46!9 +MAT 27:46!10 +MAT 27:46!11 +MAT 27:46!12 +MAT 27:46!13 +MAT 27:46!14 +MAT 27:46!15 +MAT 27:46!16 +MAT 27:46!17 +MAT 27:46!18 +MAT 27:46!19 +MAT 27:46!20 +MAT 27:46!21 +MAT 27:46!22 +MAT 27:46!23 +MAT 27:46!24 +MAT 27:46!25 +MAT 27:47!2 +MAT 27:47!1 +MAT 27:47!3 +MAT 27:47!4 +MAT 27:47!5 +MAT 27:47!6 +MAT 27:47!7 +MAT 27:47!8 +MAT 27:47!9 +MAT 27:47!10 +MAT 27:47!11 +MAT 27:48!1 +MAT 27:48!2 +MAT 27:48!4 +MAT 27:48!5 +MAT 27:48!6 +MAT 27:48!3 +MAT 27:48!7 +MAT 27:48!8 +MAT 27:48!9 +MAT 27:48!11 +MAT 27:48!10 +MAT 27:48!12 +MAT 27:48!13 +MAT 27:48!14 +MAT 27:48!15 +MAT 27:48!16 +MAT 27:48!17 +MAT 27:49!2 +MAT 27:49!1 +MAT 27:49!3 +MAT 27:49!4 +MAT 27:49!5 +MAT 27:49!6 +MAT 27:49!7 +MAT 27:49!8 +MAT 27:49!9 +MAT 27:49!10 +MAT 27:49!11 +MAT 27:50!2 +MAT 27:50!1 +MAT 27:50!3 +MAT 27:50!4 +MAT 27:50!5 +MAT 27:50!6 +MAT 27:50!7 +MAT 27:50!8 +MAT 27:50!9 +MAT 27:50!10 +MAT 27:51!1 +MAT 27:51!2 +MAT 27:51!3 +MAT 27:51!4 +MAT 27:51!5 +MAT 27:51!6 +MAT 27:51!7 +MAT 27:51!8 +MAT 27:51!9 +MAT 27:51!10 +MAT 27:51!11 +MAT 27:51!12 +MAT 27:51!13 +MAT 27:51!14 +MAT 27:51!15 +MAT 27:51!16 +MAT 27:51!17 +MAT 27:51!18 +MAT 27:51!19 +MAT 27:51!20 +MAT 27:51!21 +MAT 27:52!1 +MAT 27:52!2 +MAT 27:52!3 +MAT 27:52!4 +MAT 27:52!5 +MAT 27:52!6 +MAT 27:52!7 +MAT 27:52!8 +MAT 27:52!9 +MAT 27:52!10 +MAT 27:52!11 +MAT 27:53!1 +MAT 27:53!2 +MAT 27:53!3 +MAT 27:53!4 +MAT 27:53!5 +MAT 27:53!6 +MAT 27:53!7 +MAT 27:53!8 +MAT 27:53!9 +MAT 27:53!10 +MAT 27:53!11 +MAT 27:53!12 +MAT 27:53!13 +MAT 27:53!14 +MAT 27:53!15 +MAT 27:53!16 +MAT 27:53!17 +MAT 27:54!2 +MAT 27:54!1 +MAT 27:54!3 +MAT 27:54!4 +MAT 27:54!5 +MAT 27:54!6 +MAT 27:54!7 +MAT 27:54!8 +MAT 27:54!9 +MAT 27:54!10 +MAT 27:54!11 +MAT 27:54!12 +MAT 27:54!13 +MAT 27:54!14 +MAT 27:54!15 +MAT 27:54!16 +MAT 27:54!17 +MAT 27:54!18 +MAT 27:54!19 +MAT 27:54!20 +MAT 27:54!21 +MAT 27:54!22 +MAT 27:54!23 +MAT 27:54!24 +MAT 27:55!2 +MAT 27:55!1 +MAT 27:55!3 +MAT 27:55!4 +MAT 27:55!5 +MAT 27:55!6 +MAT 27:55!7 +MAT 27:55!8 +MAT 27:55!9 +MAT 27:55!10 +MAT 27:55!11 +MAT 27:55!12 +MAT 27:55!13 +MAT 27:55!14 +MAT 27:55!15 +MAT 27:55!16 +MAT 27:55!17 +MAT 27:56!1 +MAT 27:56!2 +MAT 27:56!3 +MAT 27:56!4 +MAT 27:56!5 +MAT 27:56!6 +MAT 27:56!7 +MAT 27:56!8 +MAT 27:56!9 +MAT 27:56!10 +MAT 27:56!11 +MAT 27:56!12 +MAT 27:56!13 +MAT 27:56!14 +MAT 27:56!15 +MAT 27:56!16 +MAT 27:56!17 +MAT 27:56!18 +MAT 27:56!19 +MAT 27:56!20 +MAT 27:57!2 +MAT 27:57!1 +MAT 27:57!3 +MAT 27:57!4 +MAT 27:57!5 +MAT 27:57!6 +MAT 27:57!7 +MAT 27:57!8 +MAT 27:57!9 +MAT 27:57!10 +MAT 27:57!11 +MAT 27:57!12 +MAT 27:57!13 +MAT 27:57!14 +MAT 27:57!15 +MAT 27:57!16 +MAT 27:58!1 +MAT 27:58!2 +MAT 27:58!3 +MAT 27:58!4 +MAT 27:58!5 +MAT 27:58!6 +MAT 27:58!7 +MAT 27:58!8 +MAT 27:58!9 +MAT 27:58!10 +MAT 27:58!11 +MAT 27:58!12 +MAT 27:58!13 +MAT 27:58!14 +MAT 27:59!1 +MAT 27:59!2 +MAT 27:59!3 +MAT 27:59!4 +MAT 27:59!5 +MAT 27:59!6 +MAT 27:59!7 +MAT 27:59!8 +MAT 27:59!9 +MAT 27:59!10 +MAT 27:59!11 +MAT 27:60!1 +MAT 27:60!2 +MAT 27:60!3 +MAT 27:60!4 +MAT 27:60!5 +MAT 27:60!6 +MAT 27:60!7 +MAT 27:60!8 +MAT 27:60!9 +MAT 27:60!10 +MAT 27:60!11 +MAT 27:60!12 +MAT 27:60!13 +MAT 27:60!14 +MAT 27:60!15 +MAT 27:60!16 +MAT 27:60!17 +MAT 27:60!18 +MAT 27:60!19 +MAT 27:60!20 +MAT 27:60!21 +MAT 27:60!22 +MAT 27:61!2 +MAT 27:61!3 +MAT 27:61!4 +MAT 27:61!5 +MAT 27:61!6 +MAT 27:61!7 +MAT 27:61!8 +MAT 27:61!9 +MAT 27:61!10 +MAT 27:61!1 +MAT 27:61!11 +MAT 27:61!12 +MAT 27:61!13 +MAT 27:61!14 +MAT 27:62!2 +MAT 27:62!1 +MAT 27:62!3 +MAT 27:62!4 +MAT 27:62!5 +MAT 27:62!6 +MAT 27:62!7 +MAT 27:62!8 +MAT 27:62!9 +MAT 27:62!10 +MAT 27:62!11 +MAT 27:62!12 +MAT 27:62!13 +MAT 27:62!14 +MAT 27:62!15 +MAT 27:62!16 +MAT 27:63!1 +MAT 27:63!2 +MAT 27:63!3 +MAT 27:63!4 +MAT 27:63!5 +MAT 27:63!6 +MAT 27:63!7 +MAT 27:63!8 +MAT 27:63!9 +MAT 27:63!10 +MAT 27:63!11 +MAT 27:63!12 +MAT 27:63!13 +MAT 27:63!14 +MAT 27:64!2 +MAT 27:64!1 +MAT 27:64!3 +MAT 27:64!4 +MAT 27:64!5 +MAT 27:64!6 +MAT 27:64!7 +MAT 27:64!8 +MAT 27:64!9 +MAT 27:64!10 +MAT 27:64!11 +MAT 27:64!12 +MAT 27:64!13 +MAT 27:64!14 +MAT 27:64!15 +MAT 27:64!16 +MAT 27:64!17 +MAT 27:64!18 +MAT 27:64!19 +MAT 27:64!20 +MAT 27:64!21 +MAT 27:64!22 +MAT 27:64!23 +MAT 27:64!24 +MAT 27:64!25 +MAT 27:64!26 +MAT 27:64!27 +MAT 27:64!28 +MAT 27:64!29 +MAT 27:64!30 +MAT 27:64!31 +MAT 27:64!32 +MAT 27:65!1 +MAT 27:65!2 +MAT 27:65!3 +MAT 27:65!4 +MAT 27:65!5 +MAT 27:65!6 +MAT 27:65!7 +MAT 27:65!8 +MAT 27:65!9 +MAT 27:65!10 +MAT 27:66!2 +MAT 27:66!1 +MAT 27:66!3 +MAT 27:66!4 +MAT 27:66!5 +MAT 27:66!6 +MAT 27:66!7 +MAT 27:66!8 +MAT 27:66!9 +MAT 27:66!10 +MAT 27:66!11 +MAT 27:66!12 +MAT 28:1!2 +MAT 28:1!1 +MAT 28:1!3 +MAT 28:1!4 +MAT 28:1!5 +MAT 28:1!6 +MAT 28:1!7 +MAT 28:1!8 +MAT 28:1!9 +MAT 28:1!10 +MAT 28:1!11 +MAT 28:1!12 +MAT 28:1!13 +MAT 28:1!14 +MAT 28:1!15 +MAT 28:1!16 +MAT 28:1!17 +MAT 28:1!18 +MAT 28:1!19 +MAT 28:2!1 +MAT 28:2!2 +MAT 28:2!3 +MAT 28:2!5 +MAT 28:2!4 +MAT 28:2!7 +MAT 28:2!6 +MAT 28:2!8 +MAT 28:2!9 +MAT 28:2!10 +MAT 28:2!11 +MAT 28:2!12 +MAT 28:2!13 +MAT 28:2!14 +MAT 28:2!15 +MAT 28:2!16 +MAT 28:2!17 +MAT 28:2!18 +MAT 28:2!19 +MAT 28:2!20 +MAT 28:3!2 +MAT 28:3!1 +MAT 28:3!3 +MAT 28:3!4 +MAT 28:3!5 +MAT 28:3!6 +MAT 28:3!7 +MAT 28:3!8 +MAT 28:3!9 +MAT 28:3!10 +MAT 28:3!11 +MAT 28:3!12 +MAT 28:3!13 +MAT 28:3!14 +MAT 28:4!2 +MAT 28:4!1 +MAT 28:4!3 +MAT 28:4!4 +MAT 28:4!5 +MAT 28:4!6 +MAT 28:4!7 +MAT 28:4!8 +MAT 28:4!9 +MAT 28:4!10 +MAT 28:4!11 +MAT 28:4!12 +MAT 28:5!2 +MAT 28:5!1 +MAT 28:5!3 +MAT 28:5!4 +MAT 28:5!5 +MAT 28:5!6 +MAT 28:5!7 +MAT 28:5!8 +MAT 28:5!9 +MAT 28:5!10 +MAT 28:5!12 +MAT 28:5!11 +MAT 28:5!13 +MAT 28:5!14 +MAT 28:5!15 +MAT 28:5!16 +MAT 28:5!17 +MAT 28:6!1 +MAT 28:6!2 +MAT 28:6!3 +MAT 28:6!5 +MAT 28:6!4 +MAT 28:6!6 +MAT 28:6!7 +MAT 28:6!8 +MAT 28:6!9 +MAT 28:6!10 +MAT 28:6!11 +MAT 28:6!12 +MAT 28:6!13 +MAT 28:7!1 +MAT 28:7!2 +MAT 28:7!3 +MAT 28:7!4 +MAT 28:7!5 +MAT 28:7!6 +MAT 28:7!7 +MAT 28:7!8 +MAT 28:7!9 +MAT 28:7!10 +MAT 28:7!11 +MAT 28:7!12 +MAT 28:7!13 +MAT 28:7!14 +MAT 28:7!15 +MAT 28:7!16 +MAT 28:7!17 +MAT 28:7!18 +MAT 28:7!19 +MAT 28:7!20 +MAT 28:7!21 +MAT 28:7!22 +MAT 28:7!23 +MAT 28:7!24 +MAT 28:7!25 +MAT 28:8!1 +MAT 28:8!2 +MAT 28:8!3 +MAT 28:8!4 +MAT 28:8!5 +MAT 28:8!6 +MAT 28:8!7 +MAT 28:8!8 +MAT 28:8!9 +MAT 28:8!10 +MAT 28:8!11 +MAT 28:8!12 +MAT 28:8!13 +MAT 28:8!14 +MAT 28:8!15 +MAT 28:8!16 +MAT 28:9!1 +MAT 28:9!2 +MAT 28:9!3 +MAT 28:9!4 +MAT 28:9!5 +MAT 28:9!6 +MAT 28:9!7 +MAT 28:9!9 +MAT 28:9!8 +MAT 28:9!10 +MAT 28:9!11 +MAT 28:9!12 +MAT 28:9!13 +MAT 28:9!14 +MAT 28:9!15 +MAT 28:9!16 +MAT 28:9!17 +MAT 28:10!1 +MAT 28:10!2 +MAT 28:10!3 +MAT 28:10!4 +MAT 28:10!5 +MAT 28:10!6 +MAT 28:10!7 +MAT 28:10!8 +MAT 28:10!9 +MAT 28:10!10 +MAT 28:10!11 +MAT 28:10!12 +MAT 28:10!13 +MAT 28:10!14 +MAT 28:10!15 +MAT 28:10!16 +MAT 28:10!17 +MAT 28:10!18 +MAT 28:10!19 +MAT 28:10!20 +MAT 28:11!2 +MAT 28:11!1 +MAT 28:11!3 +MAT 28:11!4 +MAT 28:11!5 +MAT 28:11!6 +MAT 28:11!7 +MAT 28:11!8 +MAT 28:11!9 +MAT 28:11!10 +MAT 28:11!11 +MAT 28:11!12 +MAT 28:11!13 +MAT 28:11!14 +MAT 28:11!15 +MAT 28:11!16 +MAT 28:11!17 +MAT 28:12!1 +MAT 28:12!2 +MAT 28:12!3 +MAT 28:12!4 +MAT 28:12!5 +MAT 28:12!7 +MAT 28:12!6 +MAT 28:12!8 +MAT 28:12!9 +MAT 28:12!10 +MAT 28:12!11 +MAT 28:12!12 +MAT 28:12!13 +MAT 28:13!1 +MAT 28:13!2 +MAT 28:13!3 +MAT 28:13!4 +MAT 28:13!5 +MAT 28:13!6 +MAT 28:13!7 +MAT 28:13!8 +MAT 28:13!9 +MAT 28:13!10 +MAT 28:13!11 +MAT 28:13!12 +MAT 28:14!1 +MAT 28:14!2 +MAT 28:14!3 +MAT 28:14!4 +MAT 28:14!5 +MAT 28:14!6 +MAT 28:14!7 +MAT 28:14!8 +MAT 28:14!9 +MAT 28:14!10 +MAT 28:14!11 +MAT 28:14!12 +MAT 28:14!13 +MAT 28:15!2 +MAT 28:15!1 +MAT 28:15!3 +MAT 28:15!4 +MAT 28:15!5 +MAT 28:15!6 +MAT 28:15!7 +MAT 28:15!8 +MAT 28:15!9 +MAT 28:15!10 +MAT 28:15!11 +MAT 28:15!12 +MAT 28:15!13 +MAT 28:15!14 +MAT 28:15!15 +MAT 28:15!16 +MAT 28:15!17 +MAT 28:15!18 +MAT 28:16!2 +MAT 28:16!1 +MAT 28:16!3 +MAT 28:16!4 +MAT 28:16!5 +MAT 28:16!6 +MAT 28:16!7 +MAT 28:16!8 +MAT 28:16!9 +MAT 28:16!10 +MAT 28:16!11 +MAT 28:16!12 +MAT 28:16!13 +MAT 28:16!14 +MAT 28:16!15 +MAT 28:16!16 +MAT 28:17!1 +MAT 28:17!2 +MAT 28:17!3 +MAT 28:17!4 +MAT 28:17!6 +MAT 28:17!5 +MAT 28:17!7 +MAT 28:18!1 +MAT 28:18!2 +MAT 28:18!3 +MAT 28:18!4 +MAT 28:18!5 +MAT 28:18!6 +MAT 28:18!7 +MAT 28:18!8 +MAT 28:18!9 +MAT 28:18!10 +MAT 28:18!11 +MAT 28:18!12 +MAT 28:18!13 +MAT 28:18!14 +MAT 28:18!15 +MAT 28:18!16 +MAT 28:18!17 +MAT 28:19!2 +MAT 28:19!1 +MAT 28:19!3 +MAT 28:19!4 +MAT 28:19!5 +MAT 28:19!6 +MAT 28:19!7 +MAT 28:19!8 +MAT 28:19!9 +MAT 28:19!10 +MAT 28:19!11 +MAT 28:19!12 +MAT 28:19!13 +MAT 28:19!14 +MAT 28:19!15 +MAT 28:19!16 +MAT 28:19!17 +MAT 28:19!18 +MAT 28:19!19 +MAT 28:19!20 +MAT 28:20!1 +MAT 28:20!2 +MAT 28:20!3 +MAT 28:20!4 +MAT 28:20!5 +MAT 28:20!6 +MAT 28:20!7 +MAT 28:20!8 +MAT 28:20!9 +MAT 28:20!10 +MAT 28:20!11 +MAT 28:20!12 +MAT 28:20!13 +MAT 28:20!14 +MAT 28:20!15 +MAT 28:20!16 +MAT 28:20!17 +MAT 28:20!18 +MAT 28:20!19 +MAT 28:20!20 +MAT 28:20!21 +MRK 1:1!1 +MRK 1:1!2 +MRK 1:1!3 +MRK 1:1!4 +MRK 1:1!5 +MRK 1:1!6 +MRK 1:1!7 +MRK 1:2!1 +MRK 1:2!2 +MRK 1:2!3 +MRK 1:2!4 +MRK 1:2!5 +MRK 1:2!6 +MRK 1:2!7 +MRK 1:2!8 +MRK 1:2!9 +MRK 1:2!10 +MRK 1:2!11 +MRK 1:2!12 +MRK 1:2!13 +MRK 1:2!14 +MRK 1:2!15 +MRK 1:2!16 +MRK 1:2!17 +MRK 1:2!18 +MRK 1:2!19 +MRK 1:2!20 +MRK 1:3!1 +MRK 1:3!2 +MRK 1:3!3 +MRK 1:3!4 +MRK 1:3!5 +MRK 1:3!6 +MRK 1:3!7 +MRK 1:3!8 +MRK 1:3!9 +MRK 1:3!10 +MRK 1:3!11 +MRK 1:3!12 +MRK 1:3!13 +MRK 1:3!14 +MRK 1:4!1 +MRK 1:4!2 +MRK 1:4!3 +MRK 1:4!4 +MRK 1:4!5 +MRK 1:4!6 +MRK 1:4!7 +MRK 1:4!8 +MRK 1:4!9 +MRK 1:4!10 +MRK 1:4!11 +MRK 1:4!12 +MRK 1:4!13 +MRK 1:5!1 +MRK 1:5!2 +MRK 1:5!3 +MRK 1:5!4 +MRK 1:5!5 +MRK 1:5!6 +MRK 1:5!7 +MRK 1:5!8 +MRK 1:5!9 +MRK 1:5!10 +MRK 1:5!11 +MRK 1:5!12 +MRK 1:5!13 +MRK 1:5!14 +MRK 1:5!15 +MRK 1:5!16 +MRK 1:5!17 +MRK 1:5!18 +MRK 1:5!19 +MRK 1:5!20 +MRK 1:5!21 +MRK 1:5!22 +MRK 1:5!23 +MRK 1:5!24 +MRK 1:6!1 +MRK 1:6!2 +MRK 1:6!3 +MRK 1:6!4 +MRK 1:6!5 +MRK 1:6!6 +MRK 1:6!7 +MRK 1:6!8 +MRK 1:6!9 +MRK 1:6!10 +MRK 1:6!11 +MRK 1:6!12 +MRK 1:6!13 +MRK 1:6!14 +MRK 1:6!15 +MRK 1:6!16 +MRK 1:6!17 +MRK 1:6!18 +MRK 1:6!19 +MRK 1:6!20 +MRK 1:7!1 +MRK 1:7!2 +MRK 1:7!3 +MRK 1:7!4 +MRK 1:7!5 +MRK 1:7!6 +MRK 1:7!7 +MRK 1:7!8 +MRK 1:7!9 +MRK 1:7!10 +MRK 1:7!11 +MRK 1:7!12 +MRK 1:7!13 +MRK 1:7!14 +MRK 1:7!15 +MRK 1:7!16 +MRK 1:7!17 +MRK 1:7!18 +MRK 1:7!19 +MRK 1:7!20 +MRK 1:8!1 +MRK 1:8!2 +MRK 1:8!3 +MRK 1:8!4 +MRK 1:8!6 +MRK 1:8!5 +MRK 1:8!7 +MRK 1:8!8 +MRK 1:8!9 +MRK 1:8!10 +MRK 1:9!1 +MRK 1:9!2 +MRK 1:9!3 +MRK 1:9!4 +MRK 1:9!5 +MRK 1:9!6 +MRK 1:9!7 +MRK 1:9!8 +MRK 1:9!9 +MRK 1:9!10 +MRK 1:9!11 +MRK 1:9!12 +MRK 1:9!13 +MRK 1:9!14 +MRK 1:9!15 +MRK 1:9!16 +MRK 1:9!17 +MRK 1:9!18 +MRK 1:9!19 +MRK 1:10!1 +MRK 1:10!2 +MRK 1:10!3 +MRK 1:10!4 +MRK 1:10!5 +MRK 1:10!6 +MRK 1:10!7 +MRK 1:10!8 +MRK 1:10!9 +MRK 1:10!10 +MRK 1:10!11 +MRK 1:10!12 +MRK 1:10!13 +MRK 1:10!14 +MRK 1:10!15 +MRK 1:10!16 +MRK 1:10!17 +MRK 1:10!18 +MRK 1:11!1 +MRK 1:11!2 +MRK 1:11!3 +MRK 1:11!4 +MRK 1:11!5 +MRK 1:11!6 +MRK 1:11!7 +MRK 1:11!8 +MRK 1:11!9 +MRK 1:11!10 +MRK 1:11!11 +MRK 1:11!12 +MRK 1:11!13 +MRK 1:11!14 +MRK 1:11!15 +MRK 1:11!16 +MRK 1:12!1 +MRK 1:12!2 +MRK 1:12!3 +MRK 1:12!4 +MRK 1:12!5 +MRK 1:12!6 +MRK 1:12!7 +MRK 1:12!8 +MRK 1:12!9 +MRK 1:13!1 +MRK 1:13!2 +MRK 1:13!3 +MRK 1:13!4 +MRK 1:13!5 +MRK 1:13!6 +MRK 1:13!7 +MRK 1:13!8 +MRK 1:13!9 +MRK 1:13!10 +MRK 1:13!11 +MRK 1:13!12 +MRK 1:13!13 +MRK 1:13!14 +MRK 1:13!15 +MRK 1:13!16 +MRK 1:13!17 +MRK 1:13!18 +MRK 1:13!19 +MRK 1:13!20 +MRK 1:13!21 +MRK 1:14!1 +MRK 1:14!2 +MRK 1:14!3 +MRK 1:14!4 +MRK 1:14!5 +MRK 1:14!6 +MRK 1:14!7 +MRK 1:14!8 +MRK 1:14!9 +MRK 1:14!10 +MRK 1:14!11 +MRK 1:14!12 +MRK 1:14!13 +MRK 1:14!14 +MRK 1:14!15 +MRK 1:14!16 +MRK 1:14!17 +MRK 1:15!1 +MRK 1:15!2 +MRK 1:15!3 +MRK 1:15!4 +MRK 1:15!5 +MRK 1:15!6 +MRK 1:15!7 +MRK 1:15!8 +MRK 1:15!9 +MRK 1:15!10 +MRK 1:15!11 +MRK 1:15!12 +MRK 1:15!13 +MRK 1:15!14 +MRK 1:15!15 +MRK 1:15!16 +MRK 1:15!17 +MRK 1:15!18 +MRK 1:16!1 +MRK 1:16!2 +MRK 1:16!3 +MRK 1:16!4 +MRK 1:16!5 +MRK 1:16!6 +MRK 1:16!7 +MRK 1:16!8 +MRK 1:16!9 +MRK 1:16!10 +MRK 1:16!11 +MRK 1:16!12 +MRK 1:16!13 +MRK 1:16!14 +MRK 1:16!15 +MRK 1:16!16 +MRK 1:16!17 +MRK 1:16!18 +MRK 1:16!20 +MRK 1:16!19 +MRK 1:16!21 +MRK 1:17!1 +MRK 1:17!2 +MRK 1:17!3 +MRK 1:17!4 +MRK 1:17!5 +MRK 1:17!6 +MRK 1:17!7 +MRK 1:17!8 +MRK 1:17!9 +MRK 1:17!10 +MRK 1:17!11 +MRK 1:17!12 +MRK 1:17!13 +MRK 1:17!14 +MRK 1:18!1 +MRK 1:18!2 +MRK 1:18!3 +MRK 1:18!4 +MRK 1:18!5 +MRK 1:18!6 +MRK 1:18!7 +MRK 1:19!1 +MRK 1:19!2 +MRK 1:19!3 +MRK 1:19!4 +MRK 1:19!5 +MRK 1:19!6 +MRK 1:19!7 +MRK 1:19!8 +MRK 1:19!9 +MRK 1:19!10 +MRK 1:19!11 +MRK 1:19!12 +MRK 1:19!13 +MRK 1:19!14 +MRK 1:19!15 +MRK 1:19!16 +MRK 1:19!17 +MRK 1:19!18 +MRK 1:19!19 +MRK 1:19!20 +MRK 1:19!21 +MRK 1:20!1 +MRK 1:20!2 +MRK 1:20!3 +MRK 1:20!4 +MRK 1:20!5 +MRK 1:20!6 +MRK 1:20!7 +MRK 1:20!8 +MRK 1:20!9 +MRK 1:20!10 +MRK 1:20!11 +MRK 1:20!12 +MRK 1:20!13 +MRK 1:20!14 +MRK 1:20!15 +MRK 1:20!16 +MRK 1:20!17 +MRK 1:20!18 +MRK 1:20!19 +MRK 1:21!1 +MRK 1:21!2 +MRK 1:21!3 +MRK 1:21!4 +MRK 1:21!5 +MRK 1:21!6 +MRK 1:21!7 +MRK 1:21!8 +MRK 1:21!9 +MRK 1:21!10 +MRK 1:21!11 +MRK 1:21!12 +MRK 1:21!13 +MRK 1:22!1 +MRK 1:22!2 +MRK 1:22!3 +MRK 1:22!4 +MRK 1:22!5 +MRK 1:22!6 +MRK 1:22!8 +MRK 1:22!7 +MRK 1:22!9 +MRK 1:22!10 +MRK 1:22!11 +MRK 1:22!12 +MRK 1:22!13 +MRK 1:22!14 +MRK 1:22!15 +MRK 1:22!16 +MRK 1:22!17 +MRK 1:22!18 +MRK 1:23!1 +MRK 1:23!2 +MRK 1:23!3 +MRK 1:23!4 +MRK 1:23!5 +MRK 1:23!6 +MRK 1:23!7 +MRK 1:23!8 +MRK 1:23!9 +MRK 1:23!10 +MRK 1:23!11 +MRK 1:23!12 +MRK 1:23!13 +MRK 1:24!1 +MRK 1:24!2 +MRK 1:24!3 +MRK 1:24!4 +MRK 1:24!5 +MRK 1:24!6 +MRK 1:24!7 +MRK 1:24!8 +MRK 1:24!9 +MRK 1:24!10 +MRK 1:24!11 +MRK 1:24!12 +MRK 1:24!13 +MRK 1:24!14 +MRK 1:24!15 +MRK 1:24!16 +MRK 1:24!17 +MRK 1:24!18 +MRK 1:25!1 +MRK 1:25!2 +MRK 1:25!3 +MRK 1:25!4 +MRK 1:25!5 +MRK 1:25!6 +MRK 1:25!7 +MRK 1:25!8 +MRK 1:25!9 +MRK 1:25!10 +MRK 1:26!1 +MRK 1:26!4 +MRK 1:26!5 +MRK 1:26!6 +MRK 1:26!7 +MRK 1:26!2 +MRK 1:26!3 +MRK 1:26!8 +MRK 1:26!9 +MRK 1:26!10 +MRK 1:26!11 +MRK 1:26!12 +MRK 1:26!13 +MRK 1:26!14 +MRK 1:27!1 +MRK 1:27!2 +MRK 1:27!3 +MRK 1:27!4 +MRK 1:27!5 +MRK 1:27!6 +MRK 1:27!7 +MRK 1:27!8 +MRK 1:27!9 +MRK 1:27!10 +MRK 1:27!11 +MRK 1:27!12 +MRK 1:27!13 +MRK 1:27!14 +MRK 1:27!15 +MRK 1:27!16 +MRK 1:27!17 +MRK 1:27!18 +MRK 1:27!19 +MRK 1:27!20 +MRK 1:27!21 +MRK 1:27!22 +MRK 1:27!23 +MRK 1:28!1 +MRK 1:28!2 +MRK 1:28!3 +MRK 1:28!4 +MRK 1:28!5 +MRK 1:28!6 +MRK 1:28!7 +MRK 1:28!8 +MRK 1:28!9 +MRK 1:28!10 +MRK 1:28!11 +MRK 1:28!12 +MRK 1:28!13 +MRK 1:29!1 +MRK 1:29!2 +MRK 1:29!3 +MRK 1:29!4 +MRK 1:29!5 +MRK 1:29!6 +MRK 1:29!7 +MRK 1:29!8 +MRK 1:29!9 +MRK 1:29!10 +MRK 1:29!11 +MRK 1:29!12 +MRK 1:29!13 +MRK 1:29!14 +MRK 1:29!15 +MRK 1:29!16 +MRK 1:29!17 +MRK 1:30!2 +MRK 1:30!1 +MRK 1:30!3 +MRK 1:30!4 +MRK 1:30!5 +MRK 1:30!6 +MRK 1:30!7 +MRK 1:30!8 +MRK 1:30!9 +MRK 1:30!10 +MRK 1:30!11 +MRK 1:30!12 +MRK 1:31!1 +MRK 1:31!2 +MRK 1:31!3 +MRK 1:31!4 +MRK 1:31!5 +MRK 1:31!6 +MRK 1:31!7 +MRK 1:31!8 +MRK 1:31!9 +MRK 1:31!10 +MRK 1:31!11 +MRK 1:31!12 +MRK 1:31!13 +MRK 1:31!14 +MRK 1:31!15 +MRK 1:32!2 +MRK 1:32!1 +MRK 1:32!3 +MRK 1:32!4 +MRK 1:32!5 +MRK 1:32!6 +MRK 1:32!7 +MRK 1:32!8 +MRK 1:32!9 +MRK 1:32!10 +MRK 1:32!11 +MRK 1:32!12 +MRK 1:32!13 +MRK 1:32!14 +MRK 1:32!15 +MRK 1:32!16 +MRK 1:32!17 +MRK 1:33!1 +MRK 1:33!2 +MRK 1:33!6 +MRK 1:33!3 +MRK 1:33!4 +MRK 1:33!5 +MRK 1:33!7 +MRK 1:33!8 +MRK 1:33!9 +MRK 1:34!1 +MRK 1:34!2 +MRK 1:34!3 +MRK 1:34!4 +MRK 1:34!5 +MRK 1:34!6 +MRK 1:34!7 +MRK 1:34!8 +MRK 1:34!9 +MRK 1:34!10 +MRK 1:34!11 +MRK 1:34!12 +MRK 1:34!13 +MRK 1:34!14 +MRK 1:34!15 +MRK 1:34!16 +MRK 1:34!17 +MRK 1:34!18 +MRK 1:34!19 +MRK 1:34!20 +MRK 1:35!1 +MRK 1:35!2 +MRK 1:35!3 +MRK 1:35!4 +MRK 1:35!5 +MRK 1:35!6 +MRK 1:35!7 +MRK 1:35!8 +MRK 1:35!9 +MRK 1:35!10 +MRK 1:35!11 +MRK 1:35!12 +MRK 1:35!13 +MRK 1:36!1 +MRK 1:36!2 +MRK 1:36!3 +MRK 1:36!4 +MRK 1:36!5 +MRK 1:36!6 +MRK 1:36!7 +MRK 1:36!8 +MRK 1:37!1 +MRK 1:37!2 +MRK 1:37!3 +MRK 1:37!4 +MRK 1:37!5 +MRK 1:37!6 +MRK 1:37!7 +MRK 1:37!8 +MRK 1:37!9 +MRK 1:37!10 +MRK 1:38!1 +MRK 1:38!2 +MRK 1:38!3 +MRK 1:38!4 +MRK 1:38!5 +MRK 1:38!6 +MRK 1:38!7 +MRK 1:38!8 +MRK 1:38!9 +MRK 1:38!10 +MRK 1:38!11 +MRK 1:38!12 +MRK 1:38!13 +MRK 1:38!16 +MRK 1:38!14 +MRK 1:38!15 +MRK 1:38!17 +MRK 1:39!1 +MRK 1:39!2 +MRK 1:39!3 +MRK 1:39!4 +MRK 1:39!5 +MRK 1:39!6 +MRK 1:39!7 +MRK 1:39!8 +MRK 1:39!9 +MRK 1:39!10 +MRK 1:39!11 +MRK 1:39!12 +MRK 1:39!13 +MRK 1:39!14 +MRK 1:39!15 +MRK 1:40!1 +MRK 1:40!2 +MRK 1:40!3 +MRK 1:40!4 +MRK 1:40!5 +MRK 1:40!6 +MRK 1:40!7 +MRK 1:40!8 +MRK 1:40!9 +MRK 1:40!10 +MRK 1:40!11 +MRK 1:40!12 +MRK 1:40!13 +MRK 1:40!14 +MRK 1:40!15 +MRK 1:40!16 +MRK 1:40!17 +MRK 1:41!1 +MRK 1:41!2 +MRK 1:41!3 +MRK 1:41!4 +MRK 1:41!5 +MRK 1:41!6 +MRK 1:41!7 +MRK 1:41!8 +MRK 1:41!9 +MRK 1:41!10 +MRK 1:41!11 +MRK 1:41!12 +MRK 1:42!1 +MRK 1:42!2 +MRK 1:42!3 +MRK 1:42!4 +MRK 1:42!5 +MRK 1:42!6 +MRK 1:42!7 +MRK 1:42!8 +MRK 1:42!9 +MRK 1:43!1 +MRK 1:43!2 +MRK 1:43!3 +MRK 1:43!4 +MRK 1:43!5 +MRK 1:43!6 +MRK 1:44!1 +MRK 1:44!2 +MRK 1:44!3 +MRK 1:44!4 +MRK 1:44!5 +MRK 1:44!6 +MRK 1:44!7 +MRK 1:44!8 +MRK 1:44!9 +MRK 1:44!10 +MRK 1:44!11 +MRK 1:44!12 +MRK 1:44!13 +MRK 1:44!14 +MRK 1:44!15 +MRK 1:44!16 +MRK 1:44!17 +MRK 1:44!18 +MRK 1:44!19 +MRK 1:44!20 +MRK 1:44!21 +MRK 1:44!22 +MRK 1:44!23 +MRK 1:44!24 +MRK 1:44!25 +MRK 1:45!2 +MRK 1:45!1 +MRK 1:45!3 +MRK 1:45!4 +MRK 1:45!5 +MRK 1:45!6 +MRK 1:45!7 +MRK 1:45!8 +MRK 1:45!9 +MRK 1:45!10 +MRK 1:45!11 +MRK 1:45!12 +MRK 1:45!13 +MRK 1:45!14 +MRK 1:45!15 +MRK 1:45!16 +MRK 1:45!17 +MRK 1:45!18 +MRK 1:45!19 +MRK 1:45!20 +MRK 1:45!21 +MRK 1:45!22 +MRK 1:45!23 +MRK 1:45!24 +MRK 1:45!25 +MRK 1:45!26 +MRK 1:45!27 +MRK 1:45!28 +MRK 1:45!29 +MRK 2:1!1 +MRK 2:1!2 +MRK 2:1!3 +MRK 2:1!4 +MRK 2:1!5 +MRK 2:1!6 +MRK 2:1!7 +MRK 2:1!8 +MRK 2:1!9 +MRK 2:1!10 +MRK 2:1!11 +MRK 2:1!12 +MRK 2:2!1 +MRK 2:2!2 +MRK 2:2!3 +MRK 2:2!4 +MRK 2:2!5 +MRK 2:2!6 +MRK 2:2!7 +MRK 2:2!8 +MRK 2:2!9 +MRK 2:2!10 +MRK 2:2!11 +MRK 2:2!12 +MRK 2:2!13 +MRK 2:2!14 +MRK 2:2!15 +MRK 2:2!16 +MRK 2:3!1 +MRK 2:3!2 +MRK 2:3!3 +MRK 2:3!4 +MRK 2:3!5 +MRK 2:3!6 +MRK 2:3!7 +MRK 2:3!8 +MRK 2:3!9 +MRK 2:4!1 +MRK 2:4!2 +MRK 2:4!3 +MRK 2:4!4 +MRK 2:4!5 +MRK 2:4!6 +MRK 2:4!7 +MRK 2:4!8 +MRK 2:4!9 +MRK 2:4!10 +MRK 2:4!11 +MRK 2:4!12 +MRK 2:4!13 +MRK 2:4!14 +MRK 2:4!15 +MRK 2:4!16 +MRK 2:4!17 +MRK 2:4!18 +MRK 2:4!19 +MRK 2:4!20 +MRK 2:4!21 +MRK 2:4!22 +MRK 2:5!1 +MRK 2:5!3 +MRK 2:5!4 +MRK 2:5!2 +MRK 2:5!5 +MRK 2:5!6 +MRK 2:5!7 +MRK 2:5!8 +MRK 2:5!9 +MRK 2:5!10 +MRK 2:5!11 +MRK 2:5!12 +MRK 2:5!13 +MRK 2:5!14 +MRK 2:5!15 +MRK 2:6!2 +MRK 2:6!1 +MRK 2:6!3 +MRK 2:6!4 +MRK 2:6!5 +MRK 2:6!6 +MRK 2:6!7 +MRK 2:6!8 +MRK 2:6!9 +MRK 2:6!10 +MRK 2:6!11 +MRK 2:6!12 +MRK 2:6!13 +MRK 2:7!1 +MRK 2:7!2 +MRK 2:7!3 +MRK 2:7!4 +MRK 2:7!5 +MRK 2:7!6 +MRK 2:7!7 +MRK 2:7!8 +MRK 2:7!9 +MRK 2:7!10 +MRK 2:7!11 +MRK 2:7!12 +MRK 2:7!13 +MRK 2:7!14 +MRK 2:8!1 +MRK 2:8!2 +MRK 2:8!4 +MRK 2:8!5 +MRK 2:8!3 +MRK 2:8!6 +MRK 2:8!7 +MRK 2:8!8 +MRK 2:8!9 +MRK 2:8!10 +MRK 2:8!11 +MRK 2:8!12 +MRK 2:8!13 +MRK 2:8!14 +MRK 2:8!15 +MRK 2:8!16 +MRK 2:8!17 +MRK 2:8!18 +MRK 2:8!19 +MRK 2:8!20 +MRK 2:8!21 +MRK 2:8!22 +MRK 2:9!1 +MRK 2:9!2 +MRK 2:9!3 +MRK 2:9!4 +MRK 2:9!5 +MRK 2:9!6 +MRK 2:9!7 +MRK 2:9!8 +MRK 2:9!9 +MRK 2:9!10 +MRK 2:9!11 +MRK 2:9!12 +MRK 2:9!13 +MRK 2:9!14 +MRK 2:9!15 +MRK 2:9!16 +MRK 2:9!17 +MRK 2:9!18 +MRK 2:9!19 +MRK 2:9!20 +MRK 2:10!2 +MRK 2:10!1 +MRK 2:10!3 +MRK 2:10!4 +MRK 2:10!5 +MRK 2:10!6 +MRK 2:10!7 +MRK 2:10!8 +MRK 2:10!9 +MRK 2:10!10 +MRK 2:10!11 +MRK 2:10!12 +MRK 2:10!13 +MRK 2:10!14 +MRK 2:10!15 +MRK 2:10!16 +MRK 2:10!17 +MRK 2:10!18 +MRK 2:11!1 +MRK 2:11!2 +MRK 2:11!3 +MRK 2:11!4 +MRK 2:11!5 +MRK 2:11!6 +MRK 2:11!7 +MRK 2:11!8 +MRK 2:11!9 +MRK 2:11!10 +MRK 2:11!11 +MRK 2:11!12 +MRK 2:11!13 +MRK 2:12!1 +MRK 2:12!2 +MRK 2:12!3 +MRK 2:12!4 +MRK 2:12!5 +MRK 2:12!6 +MRK 2:12!7 +MRK 2:12!8 +MRK 2:12!9 +MRK 2:12!10 +MRK 2:12!11 +MRK 2:12!12 +MRK 2:12!13 +MRK 2:12!14 +MRK 2:12!15 +MRK 2:12!16 +MRK 2:12!17 +MRK 2:12!18 +MRK 2:12!19 +MRK 2:12!20 +MRK 2:12!21 +MRK 2:12!22 +MRK 2:13!1 +MRK 2:13!2 +MRK 2:13!3 +MRK 2:13!4 +MRK 2:13!5 +MRK 2:13!6 +MRK 2:13!7 +MRK 2:13!8 +MRK 2:13!9 +MRK 2:13!10 +MRK 2:13!11 +MRK 2:13!12 +MRK 2:13!13 +MRK 2:13!14 +MRK 2:13!15 +MRK 2:13!16 +MRK 2:14!1 +MRK 2:14!2 +MRK 2:14!3 +MRK 2:14!4 +MRK 2:14!5 +MRK 2:14!6 +MRK 2:14!7 +MRK 2:14!8 +MRK 2:14!9 +MRK 2:14!10 +MRK 2:14!11 +MRK 2:14!12 +MRK 2:14!13 +MRK 2:14!14 +MRK 2:14!15 +MRK 2:14!16 +MRK 2:14!17 +MRK 2:14!18 +MRK 2:14!19 +MRK 2:14!20 +MRK 2:15!1 +MRK 2:15!2 +MRK 2:15!3 +MRK 2:15!4 +MRK 2:15!5 +MRK 2:15!6 +MRK 2:15!7 +MRK 2:15!8 +MRK 2:15!9 +MRK 2:15!10 +MRK 2:15!11 +MRK 2:15!12 +MRK 2:15!13 +MRK 2:15!14 +MRK 2:15!15 +MRK 2:15!16 +MRK 2:15!17 +MRK 2:15!18 +MRK 2:15!19 +MRK 2:15!20 +MRK 2:15!22 +MRK 2:15!21 +MRK 2:15!23 +MRK 2:15!24 +MRK 2:15!25 +MRK 2:15!26 +MRK 2:16!1 +MRK 2:16!2 +MRK 2:16!3 +MRK 2:16!4 +MRK 2:16!5 +MRK 2:16!6 +MRK 2:16!7 +MRK 2:16!8 +MRK 2:16!9 +MRK 2:16!10 +MRK 2:16!11 +MRK 2:16!12 +MRK 2:16!13 +MRK 2:16!14 +MRK 2:16!15 +MRK 2:16!16 +MRK 2:16!17 +MRK 2:16!18 +MRK 2:16!19 +MRK 2:16!20 +MRK 2:16!21 +MRK 2:16!22 +MRK 2:16!23 +MRK 2:16!24 +MRK 2:17!1 +MRK 2:17!2 +MRK 2:17!3 +MRK 2:17!4 +MRK 2:17!5 +MRK 2:17!6 +MRK 2:17!7 +MRK 2:17!8 +MRK 2:17!12 +MRK 2:17!9 +MRK 2:17!10 +MRK 2:17!11 +MRK 2:17!13 +MRK 2:17!14 +MRK 2:17!15 +MRK 2:17!16 +MRK 2:17!17 +MRK 2:17!18 +MRK 2:17!19 +MRK 2:17!20 +MRK 2:17!21 +MRK 2:17!22 +MRK 2:18!1 +MRK 2:18!2 +MRK 2:18!9 +MRK 2:18!3 +MRK 2:18!4 +MRK 2:18!5 +MRK 2:18!6 +MRK 2:18!7 +MRK 2:18!8 +MRK 2:18!10 +MRK 2:18!11 +MRK 2:18!12 +MRK 2:18!13 +MRK 2:18!14 +MRK 2:18!15 +MRK 2:18!16 +MRK 2:18!17 +MRK 2:18!18 +MRK 2:18!19 +MRK 2:18!20 +MRK 2:18!21 +MRK 2:18!22 +MRK 2:18!23 +MRK 2:18!24 +MRK 2:18!25 +MRK 2:18!27 +MRK 2:18!26 +MRK 2:18!28 +MRK 2:18!29 +MRK 2:18!30 +MRK 2:18!31 +MRK 2:19!1 +MRK 2:19!2 +MRK 2:19!3 +MRK 2:19!4 +MRK 2:19!5 +MRK 2:19!6 +MRK 2:19!7 +MRK 2:19!8 +MRK 2:19!9 +MRK 2:19!10 +MRK 2:19!11 +MRK 2:19!12 +MRK 2:19!13 +MRK 2:19!14 +MRK 2:19!15 +MRK 2:19!16 +MRK 2:19!17 +MRK 2:19!18 +MRK 2:19!19 +MRK 2:19!20 +MRK 2:19!21 +MRK 2:19!22 +MRK 2:19!23 +MRK 2:19!24 +MRK 2:19!25 +MRK 2:19!26 +MRK 2:19!27 +MRK 2:19!28 +MRK 2:19!29 +MRK 2:20!2 +MRK 2:20!1 +MRK 2:20!3 +MRK 2:20!4 +MRK 2:20!5 +MRK 2:20!6 +MRK 2:20!7 +MRK 2:20!8 +MRK 2:20!9 +MRK 2:20!10 +MRK 2:20!11 +MRK 2:20!12 +MRK 2:20!13 +MRK 2:20!14 +MRK 2:20!15 +MRK 2:20!16 +MRK 2:21!1 +MRK 2:21!2 +MRK 2:21!3 +MRK 2:21!4 +MRK 2:21!5 +MRK 2:21!6 +MRK 2:21!7 +MRK 2:21!8 +MRK 2:21!10 +MRK 2:21!9 +MRK 2:21!11 +MRK 2:21!12 +MRK 2:21!13 +MRK 2:21!14 +MRK 2:21!17 +MRK 2:21!18 +MRK 2:21!15 +MRK 2:21!16 +MRK 2:21!19 +MRK 2:21!20 +MRK 2:21!21 +MRK 2:21!22 +MRK 2:21!23 +MRK 2:21!24 +MRK 2:22!1 +MRK 2:22!2 +MRK 2:22!3 +MRK 2:22!4 +MRK 2:22!5 +MRK 2:22!6 +MRK 2:22!7 +MRK 2:22!8 +MRK 2:22!10 +MRK 2:22!9 +MRK 2:22!11 +MRK 2:22!12 +MRK 2:22!13 +MRK 2:22!14 +MRK 2:22!15 +MRK 2:22!16 +MRK 2:22!17 +MRK 2:22!18 +MRK 2:22!19 +MRK 2:22!20 +MRK 2:22!21 +MRK 2:22!22 +MRK 2:22!23 +MRK 2:22!24 +MRK 2:22!25 +MRK 2:22!26 +MRK 2:22!27 +MRK 2:22!28 +MRK 2:22!29 +MRK 2:23!1 +MRK 2:23!2 +MRK 2:23!3 +MRK 2:23!4 +MRK 2:23!5 +MRK 2:23!6 +MRK 2:23!7 +MRK 2:23!8 +MRK 2:23!9 +MRK 2:23!10 +MRK 2:23!11 +MRK 2:23!12 +MRK 2:23!13 +MRK 2:23!14 +MRK 2:23!15 +MRK 2:23!16 +MRK 2:23!17 +MRK 2:23!18 +MRK 2:23!19 +MRK 2:23!20 +MRK 2:24!1 +MRK 2:24!2 +MRK 2:24!3 +MRK 2:24!4 +MRK 2:24!5 +MRK 2:24!6 +MRK 2:24!7 +MRK 2:24!8 +MRK 2:24!9 +MRK 2:24!10 +MRK 2:24!11 +MRK 2:24!12 +MRK 2:24!13 +MRK 2:25!1 +MRK 2:25!2 +MRK 2:25!3 +MRK 2:25!4 +MRK 2:25!5 +MRK 2:25!6 +MRK 2:25!7 +MRK 2:25!8 +MRK 2:25!9 +MRK 2:25!10 +MRK 2:25!11 +MRK 2:25!12 +MRK 2:25!13 +MRK 2:25!14 +MRK 2:25!15 +MRK 2:25!16 +MRK 2:25!17 +MRK 2:25!18 +MRK 2:26!1 +MRK 2:26!2 +MRK 2:26!3 +MRK 2:26!4 +MRK 2:26!5 +MRK 2:26!6 +MRK 2:26!7 +MRK 2:26!8 +MRK 2:26!9 +MRK 2:26!10 +MRK 2:26!11 +MRK 2:26!12 +MRK 2:26!13 +MRK 2:26!14 +MRK 2:26!15 +MRK 2:26!16 +MRK 2:26!17 +MRK 2:26!20 +MRK 2:26!18 +MRK 2:26!19 +MRK 2:26!21 +MRK 2:26!22 +MRK 2:26!23 +MRK 2:26!24 +MRK 2:26!25 +MRK 2:26!26 +MRK 2:26!27 +MRK 2:26!28 +MRK 2:26!29 +MRK 2:26!30 +MRK 2:26!31 +MRK 2:27!1 +MRK 2:27!2 +MRK 2:27!3 +MRK 2:27!4 +MRK 2:27!5 +MRK 2:27!6 +MRK 2:27!7 +MRK 2:27!8 +MRK 2:27!9 +MRK 2:27!10 +MRK 2:27!11 +MRK 2:27!12 +MRK 2:27!13 +MRK 2:27!14 +MRK 2:27!15 +MRK 2:27!16 +MRK 2:28!1 +MRK 2:28!3 +MRK 2:28!4 +MRK 2:28!5 +MRK 2:28!6 +MRK 2:28!7 +MRK 2:28!2 +MRK 2:28!8 +MRK 2:28!9 +MRK 2:28!10 +MRK 3:1!1 +MRK 3:1!2 +MRK 3:1!3 +MRK 3:1!4 +MRK 3:1!5 +MRK 3:1!6 +MRK 3:1!7 +MRK 3:1!8 +MRK 3:1!9 +MRK 3:1!10 +MRK 3:1!11 +MRK 3:1!12 +MRK 3:1!13 +MRK 3:2!1 +MRK 3:2!2 +MRK 3:2!3 +MRK 3:2!4 +MRK 3:2!5 +MRK 3:2!6 +MRK 3:2!7 +MRK 3:2!8 +MRK 3:2!9 +MRK 3:2!10 +MRK 3:2!11 +MRK 3:3!1 +MRK 3:3!2 +MRK 3:3!3 +MRK 3:3!4 +MRK 3:3!5 +MRK 3:3!6 +MRK 3:3!9 +MRK 3:3!7 +MRK 3:3!8 +MRK 3:3!10 +MRK 3:3!11 +MRK 3:3!12 +MRK 3:3!13 +MRK 3:4!1 +MRK 3:4!2 +MRK 3:4!3 +MRK 3:4!4 +MRK 3:4!5 +MRK 3:4!6 +MRK 3:4!7 +MRK 3:4!8 +MRK 3:4!9 +MRK 3:4!10 +MRK 3:4!11 +MRK 3:4!12 +MRK 3:4!13 +MRK 3:4!14 +MRK 3:4!16 +MRK 3:4!15 +MRK 3:4!17 +MRK 3:5!1 +MRK 3:5!2 +MRK 3:5!3 +MRK 3:5!4 +MRK 3:5!5 +MRK 3:5!6 +MRK 3:5!7 +MRK 3:5!8 +MRK 3:5!9 +MRK 3:5!10 +MRK 3:5!11 +MRK 3:5!12 +MRK 3:5!13 +MRK 3:5!14 +MRK 3:5!15 +MRK 3:5!16 +MRK 3:5!17 +MRK 3:5!18 +MRK 3:5!19 +MRK 3:5!20 +MRK 3:5!21 +MRK 3:5!22 +MRK 3:5!23 +MRK 3:5!24 +MRK 3:5!25 +MRK 3:6!1 +MRK 3:6!2 +MRK 3:6!3 +MRK 3:6!4 +MRK 3:6!5 +MRK 3:6!6 +MRK 3:6!7 +MRK 3:6!8 +MRK 3:6!9 +MRK 3:6!10 +MRK 3:6!11 +MRK 3:6!12 +MRK 3:6!13 +MRK 3:6!14 +MRK 3:6!15 +MRK 3:7!1 +MRK 3:7!2 +MRK 3:7!3 +MRK 3:7!4 +MRK 3:7!5 +MRK 3:7!6 +MRK 3:7!7 +MRK 3:7!8 +MRK 3:7!9 +MRK 3:7!10 +MRK 3:7!11 +MRK 3:7!12 +MRK 3:7!13 +MRK 3:7!14 +MRK 3:7!15 +MRK 3:7!16 +MRK 3:7!17 +MRK 3:7!18 +MRK 3:7!19 +MRK 3:7!20 +MRK 3:7!21 +MRK 3:7!22 +MRK 3:8!1 +MRK 3:8!2 +MRK 3:8!3 +MRK 3:8!4 +MRK 3:8!5 +MRK 3:8!6 +MRK 3:8!7 +MRK 3:8!8 +MRK 3:8!9 +MRK 3:8!10 +MRK 3:8!11 +MRK 3:8!12 +MRK 3:8!13 +MRK 3:8!14 +MRK 3:8!15 +MRK 3:8!16 +MRK 3:8!17 +MRK 3:8!18 +MRK 3:8!19 +MRK 3:8!20 +MRK 3:8!21 +MRK 3:8!22 +MRK 3:8!23 +MRK 3:8!24 +MRK 3:9!1 +MRK 3:9!2 +MRK 3:9!3 +MRK 3:9!4 +MRK 3:9!5 +MRK 3:9!6 +MRK 3:9!7 +MRK 3:9!8 +MRK 3:9!9 +MRK 3:9!10 +MRK 3:9!11 +MRK 3:9!12 +MRK 3:9!13 +MRK 3:9!14 +MRK 3:9!15 +MRK 3:9!16 +MRK 3:10!2 +MRK 3:10!1 +MRK 3:10!3 +MRK 3:10!4 +MRK 3:10!5 +MRK 3:10!6 +MRK 3:10!7 +MRK 3:10!8 +MRK 3:10!9 +MRK 3:10!10 +MRK 3:10!11 +MRK 3:10!12 +MRK 3:11!1 +MRK 3:11!2 +MRK 3:11!3 +MRK 3:11!4 +MRK 3:11!5 +MRK 3:11!6 +MRK 3:11!7 +MRK 3:11!8 +MRK 3:11!9 +MRK 3:11!10 +MRK 3:11!11 +MRK 3:11!12 +MRK 3:11!13 +MRK 3:11!14 +MRK 3:11!15 +MRK 3:11!16 +MRK 3:11!17 +MRK 3:11!18 +MRK 3:11!19 +MRK 3:11!20 +MRK 3:12!1 +MRK 3:12!2 +MRK 3:12!3 +MRK 3:12!4 +MRK 3:12!5 +MRK 3:12!6 +MRK 3:12!7 +MRK 3:12!8 +MRK 3:12!9 +MRK 3:13!1 +MRK 3:13!2 +MRK 3:13!3 +MRK 3:13!4 +MRK 3:13!5 +MRK 3:13!6 +MRK 3:13!7 +MRK 3:13!8 +MRK 3:13!9 +MRK 3:13!10 +MRK 3:13!11 +MRK 3:13!12 +MRK 3:13!13 +MRK 3:13!14 +MRK 3:14!1 +MRK 3:14!2 +MRK 3:14!3 +MRK 3:14!4 +MRK 3:14!5 +MRK 3:14!6 +MRK 3:14!7 +MRK 3:14!8 +MRK 3:14!9 +MRK 3:14!10 +MRK 3:14!11 +MRK 3:14!12 +MRK 3:15!1 +MRK 3:15!2 +MRK 3:15!3 +MRK 3:15!4 +MRK 3:15!5 +MRK 3:15!6 +MRK 3:16!1 +MRK 3:16!2 +MRK 3:16!3 +MRK 3:16!4 +MRK 3:16!5 +MRK 3:16!6 +MRK 3:16!7 +MRK 3:16!8 +MRK 3:16!9 +MRK 3:16!10 +MRK 3:17!1 +MRK 3:17!2 +MRK 3:17!3 +MRK 3:17!4 +MRK 3:17!5 +MRK 3:17!6 +MRK 3:17!7 +MRK 3:17!8 +MRK 3:17!9 +MRK 3:17!10 +MRK 3:17!11 +MRK 3:17!12 +MRK 3:17!13 +MRK 3:17!14 +MRK 3:17!15 +MRK 3:17!16 +MRK 3:17!17 +MRK 3:17!18 +MRK 3:17!19 +MRK 3:17!20 +MRK 3:18!1 +MRK 3:18!2 +MRK 3:18!3 +MRK 3:18!4 +MRK 3:18!5 +MRK 3:18!6 +MRK 3:18!7 +MRK 3:18!8 +MRK 3:18!9 +MRK 3:18!10 +MRK 3:18!11 +MRK 3:18!12 +MRK 3:18!13 +MRK 3:18!14 +MRK 3:18!15 +MRK 3:18!16 +MRK 3:18!17 +MRK 3:18!18 +MRK 3:18!19 +MRK 3:18!20 +MRK 3:18!21 +MRK 3:19!1 +MRK 3:19!2 +MRK 3:19!3 +MRK 3:19!4 +MRK 3:19!5 +MRK 3:19!6 +MRK 3:19!7 +MRK 3:20!1 +MRK 3:20!2 +MRK 3:20!3 +MRK 3:20!4 +MRK 3:20!5 +MRK 3:20!6 +MRK 3:20!7 +MRK 3:20!8 +MRK 3:20!9 +MRK 3:20!10 +MRK 3:20!11 +MRK 3:20!12 +MRK 3:20!13 +MRK 3:20!14 +MRK 3:20!15 +MRK 3:20!16 +MRK 3:21!1 +MRK 3:21!2 +MRK 3:21!3 +MRK 3:21!4 +MRK 3:21!5 +MRK 3:21!6 +MRK 3:21!7 +MRK 3:21!8 +MRK 3:21!10 +MRK 3:21!9 +MRK 3:21!11 +MRK 3:21!12 +MRK 3:22!1 +MRK 3:22!2 +MRK 3:22!3 +MRK 3:22!4 +MRK 3:22!5 +MRK 3:22!6 +MRK 3:22!7 +MRK 3:22!8 +MRK 3:22!9 +MRK 3:22!10 +MRK 3:22!11 +MRK 3:22!12 +MRK 3:22!13 +MRK 3:22!14 +MRK 3:22!15 +MRK 3:22!16 +MRK 3:22!17 +MRK 3:22!18 +MRK 3:22!19 +MRK 3:22!20 +MRK 3:22!21 +MRK 3:23!1 +MRK 3:23!2 +MRK 3:23!3 +MRK 3:23!4 +MRK 3:23!5 +MRK 3:23!6 +MRK 3:23!7 +MRK 3:23!8 +MRK 3:23!9 +MRK 3:23!10 +MRK 3:23!11 +MRK 3:23!12 +MRK 3:24!1 +MRK 3:24!2 +MRK 3:24!3 +MRK 3:24!4 +MRK 3:24!5 +MRK 3:24!6 +MRK 3:24!7 +MRK 3:24!8 +MRK 3:24!9 +MRK 3:24!10 +MRK 3:24!11 +MRK 3:24!12 +MRK 3:25!1 +MRK 3:25!2 +MRK 3:25!3 +MRK 3:25!4 +MRK 3:25!5 +MRK 3:25!6 +MRK 3:25!7 +MRK 3:25!8 +MRK 3:25!9 +MRK 3:25!10 +MRK 3:25!11 +MRK 3:25!12 +MRK 3:26!1 +MRK 3:26!2 +MRK 3:26!3 +MRK 3:26!4 +MRK 3:26!5 +MRK 3:26!6 +MRK 3:26!7 +MRK 3:26!8 +MRK 3:26!9 +MRK 3:26!10 +MRK 3:26!11 +MRK 3:26!12 +MRK 3:26!13 +MRK 3:26!14 +MRK 3:26!15 +MRK 3:27!1 +MRK 3:27!2 +MRK 3:27!3 +MRK 3:27!4 +MRK 3:27!5 +MRK 3:27!6 +MRK 3:27!7 +MRK 3:27!8 +MRK 3:27!9 +MRK 3:27!10 +MRK 3:27!11 +MRK 3:27!12 +MRK 3:27!13 +MRK 3:27!14 +MRK 3:27!15 +MRK 3:27!16 +MRK 3:27!17 +MRK 3:27!18 +MRK 3:27!19 +MRK 3:27!20 +MRK 3:27!21 +MRK 3:27!22 +MRK 3:27!23 +MRK 3:27!24 +MRK 3:27!25 +MRK 3:27!26 +MRK 3:28!1 +MRK 3:28!2 +MRK 3:28!3 +MRK 3:28!4 +MRK 3:28!6 +MRK 3:28!7 +MRK 3:28!8 +MRK 3:28!9 +MRK 3:28!10 +MRK 3:28!5 +MRK 3:28!11 +MRK 3:28!12 +MRK 3:28!13 +MRK 3:28!14 +MRK 3:28!15 +MRK 3:28!17 +MRK 3:28!16 +MRK 3:28!18 +MRK 3:29!2 +MRK 3:29!3 +MRK 3:29!1 +MRK 3:29!4 +MRK 3:29!5 +MRK 3:29!6 +MRK 3:29!7 +MRK 3:29!8 +MRK 3:29!9 +MRK 3:29!10 +MRK 3:29!11 +MRK 3:29!12 +MRK 3:29!13 +MRK 3:29!14 +MRK 3:29!15 +MRK 3:29!16 +MRK 3:29!17 +MRK 3:29!18 +MRK 3:29!19 +MRK 3:29!20 +MRK 3:30!1 +MRK 3:30!2 +MRK 3:30!3 +MRK 3:30!4 +MRK 3:30!5 +MRK 3:31!1 +MRK 3:31!2 +MRK 3:31!3 +MRK 3:31!4 +MRK 3:31!5 +MRK 3:31!6 +MRK 3:31!7 +MRK 3:31!8 +MRK 3:31!9 +MRK 3:31!10 +MRK 3:31!11 +MRK 3:31!12 +MRK 3:31!13 +MRK 3:31!14 +MRK 3:31!15 +MRK 3:31!16 +MRK 3:31!17 +MRK 3:32!1 +MRK 3:32!2 +MRK 3:32!3 +MRK 3:32!4 +MRK 3:32!5 +MRK 3:32!6 +MRK 3:32!7 +MRK 3:32!8 +MRK 3:32!9 +MRK 3:32!10 +MRK 3:32!11 +MRK 3:32!12 +MRK 3:32!13 +MRK 3:32!14 +MRK 3:32!15 +MRK 3:32!16 +MRK 3:32!17 +MRK 3:32!18 +MRK 3:32!19 +MRK 3:32!20 +MRK 3:32!21 +MRK 3:32!22 +MRK 3:32!23 +MRK 3:33!1 +MRK 3:33!2 +MRK 3:33!3 +MRK 3:33!4 +MRK 3:33!5 +MRK 3:33!6 +MRK 3:33!7 +MRK 3:33!8 +MRK 3:33!9 +MRK 3:33!10 +MRK 3:33!11 +MRK 3:33!12 +MRK 3:34!1 +MRK 3:34!2 +MRK 3:34!3 +MRK 3:34!4 +MRK 3:34!5 +MRK 3:34!6 +MRK 3:34!7 +MRK 3:34!8 +MRK 3:34!9 +MRK 3:34!10 +MRK 3:34!11 +MRK 3:34!12 +MRK 3:34!13 +MRK 3:34!14 +MRK 3:34!15 +MRK 3:34!16 +MRK 3:35!2 +MRK 3:35!1 +MRK 3:35!3 +MRK 3:35!4 +MRK 3:35!5 +MRK 3:35!6 +MRK 3:35!7 +MRK 3:35!8 +MRK 3:35!9 +MRK 3:35!10 +MRK 3:35!11 +MRK 3:35!12 +MRK 3:35!13 +MRK 3:35!14 +MRK 3:35!15 +MRK 4:1!1 +MRK 4:1!2 +MRK 4:1!3 +MRK 4:1!4 +MRK 4:1!5 +MRK 4:1!6 +MRK 4:1!7 +MRK 4:1!8 +MRK 4:1!9 +MRK 4:1!10 +MRK 4:1!11 +MRK 4:1!12 +MRK 4:1!13 +MRK 4:1!14 +MRK 4:1!15 +MRK 4:1!16 +MRK 4:1!17 +MRK 4:1!18 +MRK 4:1!19 +MRK 4:1!20 +MRK 4:1!21 +MRK 4:1!22 +MRK 4:1!23 +MRK 4:1!24 +MRK 4:1!25 +MRK 4:1!26 +MRK 4:1!27 +MRK 4:1!28 +MRK 4:1!29 +MRK 4:1!30 +MRK 4:1!31 +MRK 4:1!32 +MRK 4:1!33 +MRK 4:2!1 +MRK 4:2!2 +MRK 4:2!3 +MRK 4:2!4 +MRK 4:2!5 +MRK 4:2!6 +MRK 4:2!7 +MRK 4:2!8 +MRK 4:2!9 +MRK 4:2!10 +MRK 4:2!11 +MRK 4:2!12 +MRK 4:2!13 +MRK 4:3!1 +MRK 4:3!2 +MRK 4:3!3 +MRK 4:3!4 +MRK 4:3!5 +MRK 4:3!6 +MRK 4:4!1 +MRK 4:4!2 +MRK 4:4!3 +MRK 4:4!4 +MRK 4:4!5 +MRK 4:4!7 +MRK 4:4!6 +MRK 4:4!8 +MRK 4:4!9 +MRK 4:4!10 +MRK 4:4!11 +MRK 4:4!12 +MRK 4:4!13 +MRK 4:4!14 +MRK 4:4!15 +MRK 4:4!16 +MRK 4:4!17 +MRK 4:4!18 +MRK 4:5!1 +MRK 4:5!2 +MRK 4:5!3 +MRK 4:5!4 +MRK 4:5!5 +MRK 4:5!6 +MRK 4:5!7 +MRK 4:5!8 +MRK 4:5!9 +MRK 4:5!10 +MRK 4:5!11 +MRK 4:5!12 +MRK 4:5!13 +MRK 4:5!14 +MRK 4:5!15 +MRK 4:5!16 +MRK 4:5!17 +MRK 4:5!18 +MRK 4:5!19 +MRK 4:5!20 +MRK 4:6!1 +MRK 4:6!2 +MRK 4:6!3 +MRK 4:6!4 +MRK 4:6!5 +MRK 4:6!6 +MRK 4:6!7 +MRK 4:6!8 +MRK 4:6!9 +MRK 4:6!10 +MRK 4:6!11 +MRK 4:6!12 +MRK 4:6!13 +MRK 4:7!1 +MRK 4:7!2 +MRK 4:7!3 +MRK 4:7!4 +MRK 4:7!5 +MRK 4:7!6 +MRK 4:7!7 +MRK 4:7!8 +MRK 4:7!9 +MRK 4:7!10 +MRK 4:7!11 +MRK 4:7!12 +MRK 4:7!13 +MRK 4:7!14 +MRK 4:7!15 +MRK 4:7!16 +MRK 4:7!17 +MRK 4:8!1 +MRK 4:8!2 +MRK 4:8!3 +MRK 4:8!4 +MRK 4:8!5 +MRK 4:8!6 +MRK 4:8!7 +MRK 4:8!8 +MRK 4:8!9 +MRK 4:8!10 +MRK 4:8!11 +MRK 4:8!12 +MRK 4:8!13 +MRK 4:8!14 +MRK 4:8!15 +MRK 4:8!16 +MRK 4:8!17 +MRK 4:8!18 +MRK 4:8!19 +MRK 4:8!20 +MRK 4:8!21 +MRK 4:8!22 +MRK 4:8!23 +MRK 4:8!24 +MRK 4:9!1 +MRK 4:9!2 +MRK 4:9!3 +MRK 4:9!4 +MRK 4:9!5 +MRK 4:9!6 +MRK 4:9!7 +MRK 4:10!1 +MRK 4:10!2 +MRK 4:10!3 +MRK 4:10!4 +MRK 4:10!5 +MRK 4:10!6 +MRK 4:10!7 +MRK 4:10!8 +MRK 4:10!9 +MRK 4:10!10 +MRK 4:10!11 +MRK 4:10!12 +MRK 4:10!13 +MRK 4:10!14 +MRK 4:10!15 +MRK 4:11!1 +MRK 4:11!2 +MRK 4:11!3 +MRK 4:11!4 +MRK 4:11!7 +MRK 4:11!5 +MRK 4:11!6 +MRK 4:11!8 +MRK 4:11!9 +MRK 4:11!10 +MRK 4:11!11 +MRK 4:11!13 +MRK 4:11!12 +MRK 4:11!14 +MRK 4:11!15 +MRK 4:11!16 +MRK 4:11!17 +MRK 4:11!18 +MRK 4:11!19 +MRK 4:11!20 +MRK 4:12!1 +MRK 4:12!2 +MRK 4:12!3 +MRK 4:12!4 +MRK 4:12!5 +MRK 4:12!6 +MRK 4:12!7 +MRK 4:12!8 +MRK 4:12!9 +MRK 4:12!10 +MRK 4:12!11 +MRK 4:12!12 +MRK 4:12!13 +MRK 4:12!14 +MRK 4:12!15 +MRK 4:12!16 +MRK 4:12!17 +MRK 4:12!18 +MRK 4:13!1 +MRK 4:13!2 +MRK 4:13!3 +MRK 4:13!4 +MRK 4:13!5 +MRK 4:13!6 +MRK 4:13!7 +MRK 4:13!8 +MRK 4:13!9 +MRK 4:13!10 +MRK 4:13!11 +MRK 4:13!12 +MRK 4:13!13 +MRK 4:13!14 +MRK 4:14!1 +MRK 4:14!2 +MRK 4:14!3 +MRK 4:14!4 +MRK 4:14!5 +MRK 4:15!2 +MRK 4:15!1 +MRK 4:15!3 +MRK 4:15!4 +MRK 4:15!5 +MRK 4:15!6 +MRK 4:15!7 +MRK 4:15!8 +MRK 4:15!9 +MRK 4:15!10 +MRK 4:15!11 +MRK 4:15!12 +MRK 4:15!13 +MRK 4:15!14 +MRK 4:15!15 +MRK 4:15!16 +MRK 4:15!17 +MRK 4:15!18 +MRK 4:15!19 +MRK 4:15!20 +MRK 4:15!21 +MRK 4:15!22 +MRK 4:15!23 +MRK 4:15!24 +MRK 4:15!25 +MRK 4:15!26 +MRK 4:16!1 +MRK 4:16!3 +MRK 4:16!4 +MRK 4:16!5 +MRK 4:16!6 +MRK 4:16!7 +MRK 4:16!8 +MRK 4:16!9 +MRK 4:16!2 +MRK 4:16!10 +MRK 4:16!11 +MRK 4:16!12 +MRK 4:16!13 +MRK 4:16!14 +MRK 4:16!15 +MRK 4:16!16 +MRK 4:16!17 +MRK 4:16!18 +MRK 4:16!19 +MRK 4:17!1 +MRK 4:17!2 +MRK 4:17!3 +MRK 4:17!4 +MRK 4:17!5 +MRK 4:17!6 +MRK 4:17!7 +MRK 4:17!8 +MRK 4:17!9 +MRK 4:17!10 +MRK 4:17!11 +MRK 4:17!12 +MRK 4:17!13 +MRK 4:17!14 +MRK 4:17!15 +MRK 4:17!16 +MRK 4:17!17 +MRK 4:17!18 +MRK 4:17!19 +MRK 4:18!1 +MRK 4:18!2 +MRK 4:18!3 +MRK 4:18!4 +MRK 4:18!5 +MRK 4:18!6 +MRK 4:18!7 +MRK 4:18!8 +MRK 4:18!9 +MRK 4:18!10 +MRK 4:18!11 +MRK 4:18!12 +MRK 4:18!13 +MRK 4:18!14 +MRK 4:19!1 +MRK 4:19!2 +MRK 4:19!3 +MRK 4:19!4 +MRK 4:19!5 +MRK 4:19!6 +MRK 4:19!7 +MRK 4:19!8 +MRK 4:19!9 +MRK 4:19!10 +MRK 4:19!11 +MRK 4:19!12 +MRK 4:19!13 +MRK 4:19!14 +MRK 4:19!15 +MRK 4:19!16 +MRK 4:19!17 +MRK 4:19!18 +MRK 4:19!19 +MRK 4:19!20 +MRK 4:19!21 +MRK 4:19!22 +MRK 4:19!23 +MRK 4:20!1 +MRK 4:20!3 +MRK 4:20!4 +MRK 4:20!5 +MRK 4:20!6 +MRK 4:20!7 +MRK 4:20!8 +MRK 4:20!9 +MRK 4:20!10 +MRK 4:20!2 +MRK 4:20!11 +MRK 4:20!12 +MRK 4:20!13 +MRK 4:20!14 +MRK 4:20!15 +MRK 4:20!16 +MRK 4:20!17 +MRK 4:20!18 +MRK 4:20!19 +MRK 4:20!20 +MRK 4:20!21 +MRK 4:20!22 +MRK 4:20!23 +MRK 4:20!24 +MRK 4:20!25 +MRK 4:20!26 +MRK 4:21!1 +MRK 4:21!2 +MRK 4:21!3 +MRK 4:21!4 +MRK 4:21!5 +MRK 4:21!6 +MRK 4:21!7 +MRK 4:21!8 +MRK 4:21!9 +MRK 4:21!10 +MRK 4:21!11 +MRK 4:21!12 +MRK 4:21!13 +MRK 4:21!14 +MRK 4:21!15 +MRK 4:21!16 +MRK 4:21!17 +MRK 4:21!18 +MRK 4:21!19 +MRK 4:21!20 +MRK 4:21!21 +MRK 4:21!22 +MRK 4:21!23 +MRK 4:22!2 +MRK 4:22!1 +MRK 4:22!3 +MRK 4:22!4 +MRK 4:22!5 +MRK 4:22!6 +MRK 4:22!7 +MRK 4:22!8 +MRK 4:22!9 +MRK 4:22!10 +MRK 4:22!11 +MRK 4:22!12 +MRK 4:22!13 +MRK 4:22!14 +MRK 4:22!15 +MRK 4:22!16 +MRK 4:22!17 +MRK 4:23!1 +MRK 4:23!2 +MRK 4:23!3 +MRK 4:23!4 +MRK 4:23!5 +MRK 4:23!6 +MRK 4:24!1 +MRK 4:24!2 +MRK 4:24!3 +MRK 4:24!4 +MRK 4:24!5 +MRK 4:24!6 +MRK 4:24!7 +MRK 4:24!8 +MRK 4:24!9 +MRK 4:24!10 +MRK 4:24!11 +MRK 4:24!12 +MRK 4:24!13 +MRK 4:24!14 +MRK 4:24!15 +MRK 4:25!2 +MRK 4:25!1 +MRK 4:25!3 +MRK 4:25!4 +MRK 4:25!5 +MRK 4:25!6 +MRK 4:25!7 +MRK 4:25!8 +MRK 4:25!9 +MRK 4:25!10 +MRK 4:25!11 +MRK 4:25!12 +MRK 4:25!13 +MRK 4:25!14 +MRK 4:25!15 +MRK 4:26!1 +MRK 4:26!2 +MRK 4:26!3 +MRK 4:26!4 +MRK 4:26!5 +MRK 4:26!6 +MRK 4:26!7 +MRK 4:26!8 +MRK 4:26!9 +MRK 4:26!10 +MRK 4:26!11 +MRK 4:26!12 +MRK 4:26!13 +MRK 4:26!14 +MRK 4:26!15 +MRK 4:26!16 +MRK 4:27!1 +MRK 4:27!2 +MRK 4:27!3 +MRK 4:27!4 +MRK 4:27!5 +MRK 4:27!6 +MRK 4:27!7 +MRK 4:27!8 +MRK 4:27!9 +MRK 4:27!10 +MRK 4:27!11 +MRK 4:27!12 +MRK 4:27!13 +MRK 4:27!14 +MRK 4:27!15 +MRK 4:27!16 +MRK 4:27!17 +MRK 4:28!1 +MRK 4:28!2 +MRK 4:28!3 +MRK 4:28!4 +MRK 4:28!5 +MRK 4:28!6 +MRK 4:28!7 +MRK 4:28!8 +MRK 4:28!9 +MRK 4:28!10 +MRK 4:28!11 +MRK 4:28!12 +MRK 4:28!13 +MRK 4:28!14 +MRK 4:29!2 +MRK 4:29!1 +MRK 4:29!3 +MRK 4:29!4 +MRK 4:29!5 +MRK 4:29!6 +MRK 4:29!7 +MRK 4:29!8 +MRK 4:29!9 +MRK 4:29!10 +MRK 4:29!11 +MRK 4:29!12 +MRK 4:29!13 +MRK 4:30!1 +MRK 4:30!2 +MRK 4:30!3 +MRK 4:30!4 +MRK 4:30!5 +MRK 4:30!6 +MRK 4:30!7 +MRK 4:30!8 +MRK 4:30!9 +MRK 4:30!10 +MRK 4:30!11 +MRK 4:30!13 +MRK 4:30!12 +MRK 4:30!14 +MRK 4:31!1 +MRK 4:31!2 +MRK 4:31!3 +MRK 4:31!4 +MRK 4:31!5 +MRK 4:31!6 +MRK 4:31!7 +MRK 4:31!8 +MRK 4:31!9 +MRK 4:31!10 +MRK 4:31!11 +MRK 4:31!12 +MRK 4:31!13 +MRK 4:31!14 +MRK 4:31!15 +MRK 4:31!16 +MRK 4:31!17 +MRK 4:31!18 +MRK 4:32!1 +MRK 4:32!2 +MRK 4:32!3 +MRK 4:32!4 +MRK 4:32!5 +MRK 4:32!6 +MRK 4:32!7 +MRK 4:32!8 +MRK 4:32!9 +MRK 4:32!10 +MRK 4:32!11 +MRK 4:32!12 +MRK 4:32!13 +MRK 4:32!14 +MRK 4:32!15 +MRK 4:32!16 +MRK 4:32!17 +MRK 4:32!18 +MRK 4:32!19 +MRK 4:32!20 +MRK 4:32!25 +MRK 4:32!21 +MRK 4:32!22 +MRK 4:32!23 +MRK 4:32!24 +MRK 4:33!1 +MRK 4:33!2 +MRK 4:33!3 +MRK 4:33!4 +MRK 4:33!5 +MRK 4:33!6 +MRK 4:33!7 +MRK 4:33!8 +MRK 4:33!9 +MRK 4:33!10 +MRK 4:33!11 +MRK 4:34!2 +MRK 4:34!1 +MRK 4:34!3 +MRK 4:34!4 +MRK 4:34!5 +MRK 4:34!6 +MRK 4:34!9 +MRK 4:34!7 +MRK 4:34!8 +MRK 4:34!10 +MRK 4:34!11 +MRK 4:34!12 +MRK 4:34!13 +MRK 4:34!14 +MRK 4:35!1 +MRK 4:35!2 +MRK 4:35!3 +MRK 4:35!4 +MRK 4:35!5 +MRK 4:35!6 +MRK 4:35!7 +MRK 4:35!8 +MRK 4:35!9 +MRK 4:35!10 +MRK 4:35!11 +MRK 4:35!12 +MRK 4:35!13 +MRK 4:36!1 +MRK 4:36!2 +MRK 4:36!3 +MRK 4:36!4 +MRK 4:36!5 +MRK 4:36!6 +MRK 4:36!7 +MRK 4:36!8 +MRK 4:36!9 +MRK 4:36!10 +MRK 4:36!11 +MRK 4:36!12 +MRK 4:36!13 +MRK 4:36!14 +MRK 4:36!15 +MRK 4:36!16 +MRK 4:36!17 +MRK 4:37!1 +MRK 4:37!2 +MRK 4:37!3 +MRK 4:37!4 +MRK 4:37!5 +MRK 4:37!6 +MRK 4:37!7 +MRK 4:37!8 +MRK 4:37!9 +MRK 4:37!10 +MRK 4:37!11 +MRK 4:37!12 +MRK 4:37!13 +MRK 4:37!14 +MRK 4:37!15 +MRK 4:37!16 +MRK 4:37!17 +MRK 4:38!1 +MRK 4:38!2 +MRK 4:38!3 +MRK 4:38!4 +MRK 4:38!5 +MRK 4:38!6 +MRK 4:38!7 +MRK 4:38!8 +MRK 4:38!9 +MRK 4:38!10 +MRK 4:38!11 +MRK 4:38!12 +MRK 4:38!13 +MRK 4:38!14 +MRK 4:38!15 +MRK 4:38!16 +MRK 4:38!17 +MRK 4:38!18 +MRK 4:38!19 +MRK 4:38!20 +MRK 4:38!21 +MRK 4:38!22 +MRK 4:39!1 +MRK 4:39!2 +MRK 4:39!3 +MRK 4:39!4 +MRK 4:39!5 +MRK 4:39!6 +MRK 4:39!7 +MRK 4:39!8 +MRK 4:39!9 +MRK 4:39!10 +MRK 4:39!11 +MRK 4:39!12 +MRK 4:39!13 +MRK 4:39!14 +MRK 4:39!15 +MRK 4:39!16 +MRK 4:39!17 +MRK 4:39!18 +MRK 4:39!19 +MRK 4:40!1 +MRK 4:40!2 +MRK 4:40!3 +MRK 4:40!4 +MRK 4:40!5 +MRK 4:40!6 +MRK 4:40!7 +MRK 4:40!8 +MRK 4:40!9 +MRK 4:40!10 +MRK 4:40!11 +MRK 4:41!1 +MRK 4:41!2 +MRK 4:41!3 +MRK 4:41!4 +MRK 4:41!5 +MRK 4:41!6 +MRK 4:41!7 +MRK 4:41!8 +MRK 4:41!10 +MRK 4:41!9 +MRK 4:41!11 +MRK 4:41!12 +MRK 4:41!13 +MRK 4:41!14 +MRK 4:41!15 +MRK 4:41!16 +MRK 4:41!17 +MRK 4:41!18 +MRK 4:41!19 +MRK 4:41!20 +MRK 4:41!21 +MRK 5:1!1 +MRK 5:1!2 +MRK 5:1!3 +MRK 5:1!4 +MRK 5:1!5 +MRK 5:1!6 +MRK 5:1!7 +MRK 5:1!8 +MRK 5:1!9 +MRK 5:1!10 +MRK 5:1!11 +MRK 5:1!12 +MRK 5:2!1 +MRK 5:2!2 +MRK 5:2!3 +MRK 5:2!4 +MRK 5:2!5 +MRK 5:2!6 +MRK 5:2!7 +MRK 5:2!8 +MRK 5:2!9 +MRK 5:2!10 +MRK 5:2!11 +MRK 5:2!12 +MRK 5:2!13 +MRK 5:2!14 +MRK 5:2!15 +MRK 5:2!16 +MRK 5:3!1 +MRK 5:3!2 +MRK 5:3!3 +MRK 5:3!4 +MRK 5:3!5 +MRK 5:3!6 +MRK 5:3!7 +MRK 5:3!8 +MRK 5:3!9 +MRK 5:3!10 +MRK 5:3!11 +MRK 5:3!12 +MRK 5:3!13 +MRK 5:3!14 +MRK 5:3!15 +MRK 5:4!1 +MRK 5:4!2 +MRK 5:4!3 +MRK 5:4!4 +MRK 5:4!5 +MRK 5:4!6 +MRK 5:4!7 +MRK 5:4!8 +MRK 5:4!9 +MRK 5:4!10 +MRK 5:4!11 +MRK 5:4!12 +MRK 5:4!13 +MRK 5:4!14 +MRK 5:4!15 +MRK 5:4!16 +MRK 5:4!17 +MRK 5:4!18 +MRK 5:4!19 +MRK 5:4!20 +MRK 5:4!21 +MRK 5:4!22 +MRK 5:4!23 +MRK 5:5!1 +MRK 5:5!2 +MRK 5:5!3 +MRK 5:5!4 +MRK 5:5!5 +MRK 5:5!6 +MRK 5:5!7 +MRK 5:5!8 +MRK 5:5!9 +MRK 5:5!10 +MRK 5:5!11 +MRK 5:5!12 +MRK 5:5!13 +MRK 5:5!14 +MRK 5:5!15 +MRK 5:5!16 +MRK 5:5!17 +MRK 5:5!18 +MRK 5:5!19 +MRK 5:6!1 +MRK 5:6!2 +MRK 5:6!3 +MRK 5:6!4 +MRK 5:6!5 +MRK 5:6!6 +MRK 5:6!7 +MRK 5:6!8 +MRK 5:6!9 +MRK 5:6!10 +MRK 5:7!1 +MRK 5:7!2 +MRK 5:7!3 +MRK 5:7!4 +MRK 5:7!5 +MRK 5:7!6 +MRK 5:7!7 +MRK 5:7!8 +MRK 5:7!9 +MRK 5:7!10 +MRK 5:7!11 +MRK 5:7!12 +MRK 5:7!13 +MRK 5:7!14 +MRK 5:7!15 +MRK 5:7!16 +MRK 5:7!17 +MRK 5:7!18 +MRK 5:7!19 +MRK 5:7!20 +MRK 5:7!21 +MRK 5:7!22 +MRK 5:8!2 +MRK 5:8!1 +MRK 5:8!3 +MRK 5:8!5 +MRK 5:8!6 +MRK 5:8!7 +MRK 5:8!8 +MRK 5:8!4 +MRK 5:8!9 +MRK 5:8!10 +MRK 5:8!11 +MRK 5:9!1 +MRK 5:9!2 +MRK 5:9!3 +MRK 5:9!4 +MRK 5:9!5 +MRK 5:9!6 +MRK 5:9!7 +MRK 5:9!8 +MRK 5:9!9 +MRK 5:9!10 +MRK 5:9!11 +MRK 5:9!12 +MRK 5:9!13 +MRK 5:9!14 +MRK 5:9!15 +MRK 5:10!1 +MRK 5:10!2 +MRK 5:10!3 +MRK 5:10!4 +MRK 5:10!5 +MRK 5:10!6 +MRK 5:10!7 +MRK 5:10!8 +MRK 5:10!9 +MRK 5:10!10 +MRK 5:10!11 +MRK 5:11!2 +MRK 5:11!1 +MRK 5:11!3 +MRK 5:11!4 +MRK 5:11!5 +MRK 5:11!6 +MRK 5:11!7 +MRK 5:11!8 +MRK 5:11!9 +MRK 5:11!10 +MRK 5:12!1 +MRK 5:12!2 +MRK 5:12!3 +MRK 5:12!4 +MRK 5:12!5 +MRK 5:12!6 +MRK 5:12!7 +MRK 5:12!8 +MRK 5:12!9 +MRK 5:12!10 +MRK 5:12!11 +MRK 5:12!12 +MRK 5:12!13 +MRK 5:13!1 +MRK 5:13!2 +MRK 5:13!3 +MRK 5:13!4 +MRK 5:13!5 +MRK 5:13!6 +MRK 5:13!7 +MRK 5:13!8 +MRK 5:13!9 +MRK 5:13!10 +MRK 5:13!11 +MRK 5:13!12 +MRK 5:13!13 +MRK 5:13!14 +MRK 5:13!15 +MRK 5:13!16 +MRK 5:13!17 +MRK 5:13!18 +MRK 5:13!19 +MRK 5:13!20 +MRK 5:13!21 +MRK 5:13!22 +MRK 5:13!23 +MRK 5:13!24 +MRK 5:13!25 +MRK 5:13!26 +MRK 5:13!27 +MRK 5:13!28 +MRK 5:13!29 +MRK 5:13!30 +MRK 5:14!1 +MRK 5:14!2 +MRK 5:14!3 +MRK 5:14!4 +MRK 5:14!5 +MRK 5:14!6 +MRK 5:14!7 +MRK 5:14!8 +MRK 5:14!9 +MRK 5:14!10 +MRK 5:14!11 +MRK 5:14!12 +MRK 5:14!13 +MRK 5:14!14 +MRK 5:14!15 +MRK 5:14!16 +MRK 5:14!17 +MRK 5:14!18 +MRK 5:14!19 +MRK 5:14!20 +MRK 5:14!21 +MRK 5:15!1 +MRK 5:15!2 +MRK 5:15!3 +MRK 5:15!4 +MRK 5:15!5 +MRK 5:15!6 +MRK 5:15!7 +MRK 5:15!8 +MRK 5:15!9 +MRK 5:15!14 +MRK 5:15!15 +MRK 5:15!16 +MRK 5:15!17 +MRK 5:15!10 +MRK 5:15!11 +MRK 5:15!12 +MRK 5:15!13 +MRK 5:15!18 +MRK 5:15!19 +MRK 5:16!1 +MRK 5:16!2 +MRK 5:16!3 +MRK 5:16!4 +MRK 5:16!5 +MRK 5:16!6 +MRK 5:16!7 +MRK 5:16!8 +MRK 5:16!9 +MRK 5:16!10 +MRK 5:16!11 +MRK 5:16!12 +MRK 5:16!13 +MRK 5:17!1 +MRK 5:17!2 +MRK 5:17!3 +MRK 5:17!4 +MRK 5:17!5 +MRK 5:17!6 +MRK 5:17!7 +MRK 5:17!8 +MRK 5:17!9 +MRK 5:18!1 +MRK 5:18!2 +MRK 5:18!3 +MRK 5:18!4 +MRK 5:18!5 +MRK 5:18!6 +MRK 5:18!7 +MRK 5:18!8 +MRK 5:18!9 +MRK 5:18!10 +MRK 5:18!11 +MRK 5:18!12 +MRK 5:18!13 +MRK 5:18!14 +MRK 5:19!1 +MRK 5:19!2 +MRK 5:19!3 +MRK 5:19!4 +MRK 5:19!5 +MRK 5:19!6 +MRK 5:19!7 +MRK 5:19!8 +MRK 5:19!9 +MRK 5:19!10 +MRK 5:19!11 +MRK 5:19!12 +MRK 5:19!13 +MRK 5:19!14 +MRK 5:19!15 +MRK 5:19!16 +MRK 5:19!17 +MRK 5:19!18 +MRK 5:19!19 +MRK 5:19!20 +MRK 5:19!21 +MRK 5:19!22 +MRK 5:19!23 +MRK 5:19!24 +MRK 5:19!25 +MRK 5:19!26 +MRK 5:20!1 +MRK 5:20!2 +MRK 5:20!3 +MRK 5:20!4 +MRK 5:20!5 +MRK 5:20!6 +MRK 5:20!7 +MRK 5:20!8 +MRK 5:20!9 +MRK 5:20!10 +MRK 5:20!11 +MRK 5:20!12 +MRK 5:20!13 +MRK 5:20!14 +MRK 5:20!15 +MRK 5:20!16 +MRK 5:21!1 +MRK 5:21!2 +MRK 5:21!3 +MRK 5:21!4 +MRK 5:21!5 +MRK 5:21!6 +MRK 5:21!7 +MRK 5:21!8 +MRK 5:21!9 +MRK 5:21!10 +MRK 5:21!11 +MRK 5:21!12 +MRK 5:21!13 +MRK 5:21!14 +MRK 5:21!15 +MRK 5:21!16 +MRK 5:21!17 +MRK 5:21!18 +MRK 5:21!19 +MRK 5:21!20 +MRK 5:21!21 +MRK 5:22!1 +MRK 5:22!2 +MRK 5:22!3 +MRK 5:22!4 +MRK 5:22!5 +MRK 5:22!6 +MRK 5:22!7 +MRK 5:22!8 +MRK 5:22!9 +MRK 5:22!10 +MRK 5:22!11 +MRK 5:22!12 +MRK 5:22!13 +MRK 5:22!14 +MRK 5:22!15 +MRK 5:23!1 +MRK 5:23!2 +MRK 5:23!3 +MRK 5:23!4 +MRK 5:23!5 +MRK 5:23!6 +MRK 5:23!7 +MRK 5:23!8 +MRK 5:23!9 +MRK 5:23!10 +MRK 5:23!11 +MRK 5:23!12 +MRK 5:23!13 +MRK 5:23!14 +MRK 5:23!15 +MRK 5:23!16 +MRK 5:23!17 +MRK 5:23!18 +MRK 5:23!19 +MRK 5:23!20 +MRK 5:23!21 +MRK 5:24!1 +MRK 5:24!2 +MRK 5:24!3 +MRK 5:24!4 +MRK 5:24!5 +MRK 5:24!6 +MRK 5:24!7 +MRK 5:24!8 +MRK 5:24!9 +MRK 5:24!10 +MRK 5:24!11 +MRK 5:24!12 +MRK 5:25!1 +MRK 5:25!2 +MRK 5:25!3 +MRK 5:25!4 +MRK 5:25!5 +MRK 5:25!6 +MRK 5:25!7 +MRK 5:25!8 +MRK 5:26!1 +MRK 5:26!2 +MRK 5:26!3 +MRK 5:26!4 +MRK 5:26!5 +MRK 5:26!6 +MRK 5:26!7 +MRK 5:26!8 +MRK 5:26!9 +MRK 5:26!10 +MRK 5:26!11 +MRK 5:26!12 +MRK 5:26!13 +MRK 5:26!14 +MRK 5:26!15 +MRK 5:26!16 +MRK 5:26!17 +MRK 5:26!18 +MRK 5:26!19 +MRK 5:26!20 +MRK 5:26!21 +MRK 5:27!1 +MRK 5:27!2 +MRK 5:27!3 +MRK 5:27!4 +MRK 5:27!5 +MRK 5:27!6 +MRK 5:27!7 +MRK 5:27!8 +MRK 5:27!9 +MRK 5:27!10 +MRK 5:27!11 +MRK 5:27!12 +MRK 5:27!13 +MRK 5:27!14 +MRK 5:28!2 +MRK 5:28!1 +MRK 5:28!3 +MRK 5:28!4 +MRK 5:28!5 +MRK 5:28!6 +MRK 5:28!7 +MRK 5:28!8 +MRK 5:28!9 +MRK 5:28!10 +MRK 5:29!1 +MRK 5:29!2 +MRK 5:29!3 +MRK 5:29!4 +MRK 5:29!5 +MRK 5:29!6 +MRK 5:29!7 +MRK 5:29!8 +MRK 5:29!9 +MRK 5:29!10 +MRK 5:29!11 +MRK 5:29!12 +MRK 5:29!13 +MRK 5:29!14 +MRK 5:29!15 +MRK 5:29!16 +MRK 5:29!17 +MRK 5:30!1 +MRK 5:30!2 +MRK 5:30!3 +MRK 5:30!4 +MRK 5:30!5 +MRK 5:30!6 +MRK 5:30!7 +MRK 5:30!8 +MRK 5:30!9 +MRK 5:30!10 +MRK 5:30!11 +MRK 5:30!12 +MRK 5:30!13 +MRK 5:30!14 +MRK 5:30!15 +MRK 5:30!16 +MRK 5:30!17 +MRK 5:30!18 +MRK 5:30!20 +MRK 5:30!19 +MRK 5:30!21 +MRK 5:30!22 +MRK 5:31!1 +MRK 5:31!2 +MRK 5:31!3 +MRK 5:31!4 +MRK 5:31!5 +MRK 5:31!6 +MRK 5:31!7 +MRK 5:31!8 +MRK 5:31!9 +MRK 5:31!10 +MRK 5:31!11 +MRK 5:31!12 +MRK 5:31!13 +MRK 5:31!14 +MRK 5:31!15 +MRK 5:31!16 +MRK 5:32!1 +MRK 5:32!2 +MRK 5:32!3 +MRK 5:32!4 +MRK 5:32!5 +MRK 5:32!6 +MRK 5:33!2 +MRK 5:33!1 +MRK 5:33!3 +MRK 5:33!4 +MRK 5:33!5 +MRK 5:33!6 +MRK 5:33!7 +MRK 5:33!8 +MRK 5:33!9 +MRK 5:33!10 +MRK 5:33!11 +MRK 5:33!12 +MRK 5:33!13 +MRK 5:33!14 +MRK 5:33!15 +MRK 5:33!16 +MRK 5:33!17 +MRK 5:33!18 +MRK 5:33!19 +MRK 5:33!20 +MRK 5:34!2 +MRK 5:34!1 +MRK 5:34!3 +MRK 5:34!4 +MRK 5:34!5 +MRK 5:34!6 +MRK 5:34!7 +MRK 5:34!8 +MRK 5:34!9 +MRK 5:34!10 +MRK 5:34!11 +MRK 5:34!12 +MRK 5:34!13 +MRK 5:34!14 +MRK 5:34!15 +MRK 5:34!16 +MRK 5:34!17 +MRK 5:34!18 +MRK 5:34!19 +MRK 5:34!20 +MRK 5:35!1 +MRK 5:35!2 +MRK 5:35!3 +MRK 5:35!4 +MRK 5:35!5 +MRK 5:35!6 +MRK 5:35!7 +MRK 5:35!8 +MRK 5:35!9 +MRK 5:35!10 +MRK 5:35!11 +MRK 5:35!12 +MRK 5:35!13 +MRK 5:35!14 +MRK 5:35!15 +MRK 5:35!16 +MRK 5:35!17 +MRK 5:35!18 +MRK 5:36!2 +MRK 5:36!1 +MRK 5:36!3 +MRK 5:36!4 +MRK 5:36!5 +MRK 5:36!6 +MRK 5:36!7 +MRK 5:36!8 +MRK 5:36!9 +MRK 5:36!10 +MRK 5:36!11 +MRK 5:36!12 +MRK 5:36!13 +MRK 5:36!14 +MRK 5:37!1 +MRK 5:37!2 +MRK 5:37!3 +MRK 5:37!4 +MRK 5:37!5 +MRK 5:37!6 +MRK 5:37!7 +MRK 5:37!8 +MRK 5:37!9 +MRK 5:37!10 +MRK 5:37!11 +MRK 5:37!12 +MRK 5:37!13 +MRK 5:37!14 +MRK 5:37!15 +MRK 5:37!16 +MRK 5:37!17 +MRK 5:37!18 +MRK 5:38!1 +MRK 5:38!2 +MRK 5:38!3 +MRK 5:38!4 +MRK 5:38!5 +MRK 5:38!6 +MRK 5:38!7 +MRK 5:38!8 +MRK 5:38!9 +MRK 5:38!10 +MRK 5:38!11 +MRK 5:38!12 +MRK 5:38!13 +MRK 5:38!14 +MRK 5:38!15 +MRK 5:39!1 +MRK 5:39!2 +MRK 5:39!3 +MRK 5:39!4 +MRK 5:39!5 +MRK 5:39!6 +MRK 5:39!7 +MRK 5:39!8 +MRK 5:39!9 +MRK 5:39!10 +MRK 5:39!11 +MRK 5:39!12 +MRK 5:39!13 +MRK 5:39!14 +MRK 5:40!1 +MRK 5:40!2 +MRK 5:40!3 +MRK 5:40!5 +MRK 5:40!4 +MRK 5:40!6 +MRK 5:40!7 +MRK 5:40!8 +MRK 5:40!9 +MRK 5:40!10 +MRK 5:40!11 +MRK 5:40!12 +MRK 5:40!13 +MRK 5:40!14 +MRK 5:40!15 +MRK 5:40!16 +MRK 5:40!17 +MRK 5:40!18 +MRK 5:40!19 +MRK 5:40!20 +MRK 5:40!21 +MRK 5:40!22 +MRK 5:40!23 +MRK 5:40!24 +MRK 5:40!25 +MRK 5:41!1 +MRK 5:41!2 +MRK 5:41!3 +MRK 5:41!4 +MRK 5:41!5 +MRK 5:41!6 +MRK 5:41!7 +MRK 5:41!8 +MRK 5:41!9 +MRK 5:41!10 +MRK 5:41!11 +MRK 5:41!12 +MRK 5:41!13 +MRK 5:41!14 +MRK 5:41!15 +MRK 5:41!16 +MRK 5:41!17 +MRK 5:41!18 +MRK 5:42!1 +MRK 5:42!2 +MRK 5:42!3 +MRK 5:42!4 +MRK 5:42!5 +MRK 5:42!6 +MRK 5:42!7 +MRK 5:42!9 +MRK 5:42!8 +MRK 5:42!10 +MRK 5:42!11 +MRK 5:42!12 +MRK 5:42!13 +MRK 5:42!14 +MRK 5:42!15 +MRK 5:42!16 +MRK 5:43!1 +MRK 5:43!2 +MRK 5:43!3 +MRK 5:43!4 +MRK 5:43!5 +MRK 5:43!6 +MRK 5:43!7 +MRK 5:43!8 +MRK 5:43!9 +MRK 5:43!10 +MRK 5:43!11 +MRK 5:43!12 +MRK 5:43!13 +MRK 6:1!1 +MRK 6:1!2 +MRK 6:1!3 +MRK 6:1!4 +MRK 6:1!5 +MRK 6:1!6 +MRK 6:1!7 +MRK 6:1!8 +MRK 6:1!9 +MRK 6:1!10 +MRK 6:1!11 +MRK 6:1!12 +MRK 6:1!13 +MRK 6:1!14 +MRK 6:1!15 +MRK 6:2!1 +MRK 6:2!2 +MRK 6:2!3 +MRK 6:2!4 +MRK 6:2!5 +MRK 6:2!6 +MRK 6:2!7 +MRK 6:2!8 +MRK 6:2!9 +MRK 6:2!10 +MRK 6:2!11 +MRK 6:2!12 +MRK 6:2!13 +MRK 6:2!14 +MRK 6:2!15 +MRK 6:2!16 +MRK 6:2!17 +MRK 6:2!18 +MRK 6:2!19 +MRK 6:2!20 +MRK 6:2!21 +MRK 6:2!22 +MRK 6:2!23 +MRK 6:2!24 +MRK 6:2!25 +MRK 6:2!26 +MRK 6:2!27 +MRK 6:2!28 +MRK 6:2!29 +MRK 6:2!30 +MRK 6:2!31 +MRK 6:2!32 +MRK 6:2!33 +MRK 6:3!1 +MRK 6:3!2 +MRK 6:3!3 +MRK 6:3!4 +MRK 6:3!5 +MRK 6:3!6 +MRK 6:3!7 +MRK 6:3!8 +MRK 6:3!9 +MRK 6:3!10 +MRK 6:3!11 +MRK 6:3!12 +MRK 6:3!13 +MRK 6:3!14 +MRK 6:3!15 +MRK 6:3!16 +MRK 6:3!17 +MRK 6:3!18 +MRK 6:3!19 +MRK 6:3!20 +MRK 6:3!21 +MRK 6:3!22 +MRK 6:3!23 +MRK 6:3!24 +MRK 6:3!25 +MRK 6:3!26 +MRK 6:3!27 +MRK 6:3!28 +MRK 6:3!29 +MRK 6:3!30 +MRK 6:3!31 +MRK 6:4!1 +MRK 6:4!2 +MRK 6:4!3 +MRK 6:4!4 +MRK 6:4!5 +MRK 6:4!6 +MRK 6:4!7 +MRK 6:4!8 +MRK 6:4!9 +MRK 6:4!10 +MRK 6:4!11 +MRK 6:4!12 +MRK 6:4!13 +MRK 6:4!14 +MRK 6:4!15 +MRK 6:4!16 +MRK 6:4!17 +MRK 6:4!18 +MRK 6:4!19 +MRK 6:4!20 +MRK 6:4!21 +MRK 6:4!22 +MRK 6:4!23 +MRK 6:4!24 +MRK 6:4!25 +MRK 6:4!26 +MRK 6:5!1 +MRK 6:5!2 +MRK 6:5!3 +MRK 6:5!4 +MRK 6:5!5 +MRK 6:5!6 +MRK 6:5!7 +MRK 6:5!8 +MRK 6:5!9 +MRK 6:5!10 +MRK 6:5!11 +MRK 6:5!12 +MRK 6:5!13 +MRK 6:5!14 +MRK 6:5!15 +MRK 6:6!1 +MRK 6:6!2 +MRK 6:6!3 +MRK 6:6!4 +MRK 6:6!5 +MRK 6:6!6 +MRK 6:6!7 +MRK 6:6!8 +MRK 6:6!9 +MRK 6:6!10 +MRK 6:6!11 +MRK 6:6!12 +MRK 6:7!1 +MRK 6:7!2 +MRK 6:7!3 +MRK 6:7!4 +MRK 6:7!5 +MRK 6:7!6 +MRK 6:7!7 +MRK 6:7!8 +MRK 6:7!9 +MRK 6:7!10 +MRK 6:7!11 +MRK 6:7!12 +MRK 6:7!13 +MRK 6:7!14 +MRK 6:7!15 +MRK 6:7!16 +MRK 6:7!17 +MRK 6:7!18 +MRK 6:8!1 +MRK 6:8!2 +MRK 6:8!3 +MRK 6:8!4 +MRK 6:8!5 +MRK 6:8!6 +MRK 6:8!7 +MRK 6:8!8 +MRK 6:8!9 +MRK 6:8!10 +MRK 6:8!11 +MRK 6:8!12 +MRK 6:8!13 +MRK 6:8!14 +MRK 6:8!15 +MRK 6:8!16 +MRK 6:8!17 +MRK 6:8!18 +MRK 6:8!19 +MRK 6:8!20 +MRK 6:8!21 +MRK 6:9!1 +MRK 6:9!2 +MRK 6:9!3 +MRK 6:9!4 +MRK 6:9!5 +MRK 6:9!6 +MRK 6:9!7 +MRK 6:9!8 +MRK 6:10!1 +MRK 6:10!2 +MRK 6:10!3 +MRK 6:10!5 +MRK 6:10!4 +MRK 6:10!6 +MRK 6:10!7 +MRK 6:10!8 +MRK 6:10!9 +MRK 6:10!10 +MRK 6:10!11 +MRK 6:10!12 +MRK 6:10!13 +MRK 6:10!14 +MRK 6:11!1 +MRK 6:11!3 +MRK 6:11!2 +MRK 6:11!4 +MRK 6:11!5 +MRK 6:11!6 +MRK 6:11!7 +MRK 6:11!8 +MRK 6:11!9 +MRK 6:11!10 +MRK 6:11!11 +MRK 6:11!12 +MRK 6:11!13 +MRK 6:11!14 +MRK 6:11!15 +MRK 6:11!16 +MRK 6:11!17 +MRK 6:11!18 +MRK 6:11!19 +MRK 6:11!20 +MRK 6:11!21 +MRK 6:11!22 +MRK 6:11!23 +MRK 6:12!1 +MRK 6:12!2 +MRK 6:12!3 +MRK 6:12!4 +MRK 6:12!5 +MRK 6:13!1 +MRK 6:13!2 +MRK 6:13!3 +MRK 6:13!4 +MRK 6:13!5 +MRK 6:13!6 +MRK 6:13!7 +MRK 6:13!8 +MRK 6:13!9 +MRK 6:13!10 +MRK 6:13!11 +MRK 6:14!1 +MRK 6:14!2 +MRK 6:14!3 +MRK 6:14!4 +MRK 6:14!5 +MRK 6:14!7 +MRK 6:14!6 +MRK 6:14!8 +MRK 6:14!9 +MRK 6:14!10 +MRK 6:14!11 +MRK 6:14!12 +MRK 6:14!13 +MRK 6:14!14 +MRK 6:14!15 +MRK 6:14!16 +MRK 6:14!17 +MRK 6:14!18 +MRK 6:14!19 +MRK 6:14!20 +MRK 6:14!21 +MRK 6:14!22 +MRK 6:14!23 +MRK 6:14!24 +MRK 6:14!25 +MRK 6:14!26 +MRK 6:14!27 +MRK 6:14!28 +MRK 6:15!2 +MRK 6:15!1 +MRK 6:15!3 +MRK 6:15!4 +MRK 6:15!5 +MRK 6:15!6 +MRK 6:15!8 +MRK 6:15!7 +MRK 6:15!9 +MRK 6:15!10 +MRK 6:15!11 +MRK 6:15!12 +MRK 6:15!13 +MRK 6:15!14 +MRK 6:15!15 +MRK 6:16!2 +MRK 6:16!1 +MRK 6:16!3 +MRK 6:16!4 +MRK 6:16!5 +MRK 6:16!6 +MRK 6:16!7 +MRK 6:16!8 +MRK 6:16!9 +MRK 6:16!10 +MRK 6:16!11 +MRK 6:17!2 +MRK 6:17!1 +MRK 6:17!3 +MRK 6:17!4 +MRK 6:17!5 +MRK 6:17!6 +MRK 6:17!7 +MRK 6:17!8 +MRK 6:17!9 +MRK 6:17!10 +MRK 6:17!11 +MRK 6:17!12 +MRK 6:17!13 +MRK 6:17!14 +MRK 6:17!15 +MRK 6:17!16 +MRK 6:17!17 +MRK 6:17!18 +MRK 6:17!19 +MRK 6:17!20 +MRK 6:17!21 +MRK 6:17!22 +MRK 6:17!23 +MRK 6:17!24 +MRK 6:18!2 +MRK 6:18!1 +MRK 6:18!3 +MRK 6:18!4 +MRK 6:18!5 +MRK 6:18!6 +MRK 6:18!7 +MRK 6:18!8 +MRK 6:18!9 +MRK 6:18!10 +MRK 6:18!11 +MRK 6:18!12 +MRK 6:18!13 +MRK 6:18!14 +MRK 6:18!15 +MRK 6:18!16 +MRK 6:19!2 +MRK 6:19!1 +MRK 6:19!3 +MRK 6:19!4 +MRK 6:19!5 +MRK 6:19!6 +MRK 6:19!7 +MRK 6:19!8 +MRK 6:19!9 +MRK 6:19!10 +MRK 6:19!11 +MRK 6:19!12 +MRK 6:20!2 +MRK 6:20!1 +MRK 6:20!3 +MRK 6:20!4 +MRK 6:20!5 +MRK 6:20!6 +MRK 6:20!7 +MRK 6:20!8 +MRK 6:20!9 +MRK 6:20!10 +MRK 6:20!11 +MRK 6:20!12 +MRK 6:20!13 +MRK 6:20!14 +MRK 6:20!15 +MRK 6:20!16 +MRK 6:20!17 +MRK 6:20!18 +MRK 6:20!19 +MRK 6:20!20 +MRK 6:20!21 +MRK 6:20!22 +MRK 6:20!23 +MRK 6:20!24 +MRK 6:21!1 +MRK 6:21!2 +MRK 6:21!3 +MRK 6:21!4 +MRK 6:21!5 +MRK 6:21!6 +MRK 6:21!7 +MRK 6:21!8 +MRK 6:21!9 +MRK 6:21!10 +MRK 6:21!11 +MRK 6:21!12 +MRK 6:21!13 +MRK 6:21!14 +MRK 6:21!15 +MRK 6:21!16 +MRK 6:21!17 +MRK 6:21!18 +MRK 6:21!19 +MRK 6:21!20 +MRK 6:21!21 +MRK 6:21!22 +MRK 6:22!1 +MRK 6:22!2 +MRK 6:22!3 +MRK 6:22!4 +MRK 6:22!5 +MRK 6:22!6 +MRK 6:22!7 +MRK 6:22!8 +MRK 6:22!9 +MRK 6:22!10 +MRK 6:22!11 +MRK 6:22!12 +MRK 6:22!13 +MRK 6:22!14 +MRK 6:22!15 +MRK 6:22!17 +MRK 6:22!16 +MRK 6:22!18 +MRK 6:22!19 +MRK 6:22!20 +MRK 6:22!21 +MRK 6:22!22 +MRK 6:22!23 +MRK 6:22!25 +MRK 6:22!24 +MRK 6:22!26 +MRK 6:22!27 +MRK 6:22!28 +MRK 6:22!29 +MRK 6:23!1 +MRK 6:23!2 +MRK 6:23!3 +MRK 6:23!4 +MRK 6:23!5 +MRK 6:23!6 +MRK 6:23!7 +MRK 6:23!8 +MRK 6:23!9 +MRK 6:23!10 +MRK 6:23!11 +MRK 6:23!12 +MRK 6:23!13 +MRK 6:23!14 +MRK 6:24!1 +MRK 6:24!2 +MRK 6:24!3 +MRK 6:24!4 +MRK 6:24!5 +MRK 6:24!6 +MRK 6:24!7 +MRK 6:24!8 +MRK 6:24!10 +MRK 6:24!9 +MRK 6:24!11 +MRK 6:24!12 +MRK 6:24!13 +MRK 6:24!14 +MRK 6:24!15 +MRK 6:24!16 +MRK 6:25!1 +MRK 6:25!2 +MRK 6:25!3 +MRK 6:25!4 +MRK 6:25!5 +MRK 6:25!6 +MRK 6:25!7 +MRK 6:25!8 +MRK 6:25!9 +MRK 6:25!10 +MRK 6:25!11 +MRK 6:25!12 +MRK 6:25!13 +MRK 6:25!14 +MRK 6:25!15 +MRK 6:25!16 +MRK 6:25!17 +MRK 6:25!18 +MRK 6:25!19 +MRK 6:25!20 +MRK 6:25!21 +MRK 6:25!22 +MRK 6:26!1 +MRK 6:26!2 +MRK 6:26!3 +MRK 6:26!4 +MRK 6:26!5 +MRK 6:26!6 +MRK 6:26!7 +MRK 6:26!8 +MRK 6:26!9 +MRK 6:26!10 +MRK 6:26!11 +MRK 6:26!12 +MRK 6:26!13 +MRK 6:26!14 +MRK 6:26!15 +MRK 6:27!1 +MRK 6:27!2 +MRK 6:27!3 +MRK 6:27!6 +MRK 6:27!4 +MRK 6:27!5 +MRK 6:27!7 +MRK 6:27!8 +MRK 6:27!9 +MRK 6:27!10 +MRK 6:27!11 +MRK 6:28!1 +MRK 6:28!2 +MRK 6:28!3 +MRK 6:28!4 +MRK 6:28!5 +MRK 6:28!6 +MRK 6:28!7 +MRK 6:28!8 +MRK 6:28!9 +MRK 6:28!10 +MRK 6:28!11 +MRK 6:28!12 +MRK 6:28!13 +MRK 6:28!14 +MRK 6:28!15 +MRK 6:28!16 +MRK 6:28!17 +MRK 6:28!18 +MRK 6:28!19 +MRK 6:28!20 +MRK 6:28!21 +MRK 6:28!22 +MRK 6:28!23 +MRK 6:28!24 +MRK 6:28!25 +MRK 6:28!26 +MRK 6:28!27 +MRK 6:29!1 +MRK 6:29!2 +MRK 6:29!3 +MRK 6:29!4 +MRK 6:29!5 +MRK 6:29!6 +MRK 6:29!7 +MRK 6:29!8 +MRK 6:29!9 +MRK 6:29!10 +MRK 6:29!11 +MRK 6:29!12 +MRK 6:29!13 +MRK 6:29!14 +MRK 6:29!15 +MRK 6:29!16 +MRK 6:30!1 +MRK 6:30!2 +MRK 6:30!3 +MRK 6:30!4 +MRK 6:30!5 +MRK 6:30!6 +MRK 6:30!7 +MRK 6:30!8 +MRK 6:30!9 +MRK 6:30!10 +MRK 6:30!11 +MRK 6:30!12 +MRK 6:30!13 +MRK 6:30!14 +MRK 6:30!15 +MRK 6:30!16 +MRK 6:31!1 +MRK 6:31!2 +MRK 6:31!3 +MRK 6:31!4 +MRK 6:31!5 +MRK 6:31!6 +MRK 6:31!7 +MRK 6:31!8 +MRK 6:31!9 +MRK 6:31!10 +MRK 6:31!11 +MRK 6:31!12 +MRK 6:31!13 +MRK 6:31!14 +MRK 6:31!16 +MRK 6:31!15 +MRK 6:31!17 +MRK 6:31!18 +MRK 6:31!19 +MRK 6:31!20 +MRK 6:31!21 +MRK 6:31!22 +MRK 6:31!23 +MRK 6:31!24 +MRK 6:31!25 +MRK 6:31!26 +MRK 6:32!1 +MRK 6:32!2 +MRK 6:32!3 +MRK 6:32!4 +MRK 6:32!5 +MRK 6:32!6 +MRK 6:32!7 +MRK 6:32!8 +MRK 6:32!9 +MRK 6:32!10 +MRK 6:33!1 +MRK 6:33!2 +MRK 6:33!3 +MRK 6:33!4 +MRK 6:33!5 +MRK 6:33!6 +MRK 6:33!7 +MRK 6:33!8 +MRK 6:33!9 +MRK 6:33!10 +MRK 6:33!11 +MRK 6:33!12 +MRK 6:33!13 +MRK 6:33!14 +MRK 6:33!15 +MRK 6:33!16 +MRK 6:33!17 +MRK 6:33!18 +MRK 6:34!1 +MRK 6:34!2 +MRK 6:34!3 +MRK 6:34!4 +MRK 6:34!5 +MRK 6:34!6 +MRK 6:34!7 +MRK 6:34!8 +MRK 6:34!9 +MRK 6:34!10 +MRK 6:34!11 +MRK 6:34!12 +MRK 6:34!13 +MRK 6:34!14 +MRK 6:34!15 +MRK 6:34!16 +MRK 6:34!17 +MRK 6:34!18 +MRK 6:34!19 +MRK 6:34!20 +MRK 6:34!21 +MRK 6:35!1 +MRK 6:35!2 +MRK 6:35!3 +MRK 6:35!4 +MRK 6:35!5 +MRK 6:35!6 +MRK 6:35!7 +MRK 6:35!8 +MRK 6:35!9 +MRK 6:35!10 +MRK 6:35!11 +MRK 6:35!12 +MRK 6:35!13 +MRK 6:35!14 +MRK 6:35!15 +MRK 6:35!16 +MRK 6:35!17 +MRK 6:35!18 +MRK 6:35!19 +MRK 6:35!20 +MRK 6:36!1 +MRK 6:36!2 +MRK 6:36!3 +MRK 6:36!4 +MRK 6:36!5 +MRK 6:36!6 +MRK 6:36!7 +MRK 6:36!8 +MRK 6:36!9 +MRK 6:36!10 +MRK 6:36!11 +MRK 6:36!12 +MRK 6:36!13 +MRK 6:36!14 +MRK 6:37!2 +MRK 6:37!1 +MRK 6:37!3 +MRK 6:37!4 +MRK 6:37!5 +MRK 6:37!6 +MRK 6:37!7 +MRK 6:37!8 +MRK 6:37!9 +MRK 6:37!10 +MRK 6:37!11 +MRK 6:37!12 +MRK 6:37!13 +MRK 6:37!14 +MRK 6:37!15 +MRK 6:37!16 +MRK 6:37!17 +MRK 6:37!18 +MRK 6:37!19 +MRK 6:37!20 +MRK 6:37!21 +MRK 6:38!2 +MRK 6:38!1 +MRK 6:38!3 +MRK 6:38!4 +MRK 6:38!5 +MRK 6:38!7 +MRK 6:38!6 +MRK 6:38!8 +MRK 6:38!9 +MRK 6:38!10 +MRK 6:38!11 +MRK 6:38!12 +MRK 6:38!13 +MRK 6:38!14 +MRK 6:38!15 +MRK 6:38!16 +MRK 6:39!1 +MRK 6:39!2 +MRK 6:39!3 +MRK 6:39!4 +MRK 6:39!5 +MRK 6:39!6 +MRK 6:39!7 +MRK 6:39!8 +MRK 6:39!9 +MRK 6:39!10 +MRK 6:39!11 +MRK 6:40!1 +MRK 6:40!2 +MRK 6:40!3 +MRK 6:40!4 +MRK 6:40!5 +MRK 6:40!6 +MRK 6:40!7 +MRK 6:40!8 +MRK 6:40!9 +MRK 6:41!1 +MRK 6:41!2 +MRK 6:41!3 +MRK 6:41!4 +MRK 6:41!5 +MRK 6:41!6 +MRK 6:41!7 +MRK 6:41!8 +MRK 6:41!9 +MRK 6:41!10 +MRK 6:41!11 +MRK 6:41!12 +MRK 6:41!13 +MRK 6:41!14 +MRK 6:41!15 +MRK 6:41!16 +MRK 6:41!17 +MRK 6:41!18 +MRK 6:41!19 +MRK 6:41!20 +MRK 6:41!21 +MRK 6:41!22 +MRK 6:41!23 +MRK 6:41!24 +MRK 6:41!25 +MRK 6:41!26 +MRK 6:41!27 +MRK 6:41!28 +MRK 6:41!29 +MRK 6:41!30 +MRK 6:41!31 +MRK 6:42!1 +MRK 6:42!2 +MRK 6:42!3 +MRK 6:42!4 +MRK 6:42!5 +MRK 6:43!1 +MRK 6:43!2 +MRK 6:43!3 +MRK 6:43!4 +MRK 6:43!5 +MRK 6:43!6 +MRK 6:43!7 +MRK 6:43!8 +MRK 6:43!9 +MRK 6:43!10 +MRK 6:44!1 +MRK 6:44!2 +MRK 6:44!3 +MRK 6:44!4 +MRK 6:44!5 +MRK 6:44!6 +MRK 6:44!7 +MRK 6:44!8 +MRK 6:45!1 +MRK 6:45!2 +MRK 6:45!3 +MRK 6:45!4 +MRK 6:45!5 +MRK 6:45!6 +MRK 6:45!7 +MRK 6:45!8 +MRK 6:45!9 +MRK 6:45!10 +MRK 6:45!11 +MRK 6:45!12 +MRK 6:45!13 +MRK 6:45!14 +MRK 6:45!15 +MRK 6:45!16 +MRK 6:45!17 +MRK 6:45!18 +MRK 6:45!19 +MRK 6:45!20 +MRK 6:45!21 +MRK 6:45!22 +MRK 6:46!1 +MRK 6:46!2 +MRK 6:46!3 +MRK 6:46!4 +MRK 6:46!5 +MRK 6:46!6 +MRK 6:46!7 +MRK 6:46!8 +MRK 6:47!1 +MRK 6:47!2 +MRK 6:47!3 +MRK 6:47!4 +MRK 6:47!5 +MRK 6:47!6 +MRK 6:47!7 +MRK 6:47!8 +MRK 6:47!9 +MRK 6:47!10 +MRK 6:47!11 +MRK 6:47!12 +MRK 6:47!13 +MRK 6:47!14 +MRK 6:47!15 +MRK 6:47!16 +MRK 6:48!1 +MRK 6:48!2 +MRK 6:48!3 +MRK 6:48!4 +MRK 6:48!5 +MRK 6:48!6 +MRK 6:48!7 +MRK 6:48!9 +MRK 6:48!8 +MRK 6:48!10 +MRK 6:48!11 +MRK 6:48!12 +MRK 6:48!13 +MRK 6:48!14 +MRK 6:48!15 +MRK 6:48!16 +MRK 6:48!17 +MRK 6:48!18 +MRK 6:48!19 +MRK 6:48!20 +MRK 6:48!21 +MRK 6:48!22 +MRK 6:48!23 +MRK 6:48!24 +MRK 6:48!25 +MRK 6:48!26 +MRK 6:48!27 +MRK 6:48!28 +MRK 6:48!29 +MRK 6:49!2 +MRK 6:49!1 +MRK 6:49!3 +MRK 6:49!4 +MRK 6:49!5 +MRK 6:49!6 +MRK 6:49!7 +MRK 6:49!8 +MRK 6:49!9 +MRK 6:49!10 +MRK 6:49!11 +MRK 6:49!12 +MRK 6:49!13 +MRK 6:49!14 +MRK 6:50!2 +MRK 6:50!1 +MRK 6:50!3 +MRK 6:50!4 +MRK 6:50!5 +MRK 6:50!6 +MRK 6:50!8 +MRK 6:50!7 +MRK 6:50!9 +MRK 6:50!10 +MRK 6:50!11 +MRK 6:50!12 +MRK 6:50!13 +MRK 6:50!14 +MRK 6:50!15 +MRK 6:50!16 +MRK 6:50!17 +MRK 6:50!18 +MRK 6:50!19 +MRK 6:50!20 +MRK 6:51!1 +MRK 6:51!2 +MRK 6:51!3 +MRK 6:51!4 +MRK 6:51!5 +MRK 6:51!6 +MRK 6:51!7 +MRK 6:51!8 +MRK 6:51!9 +MRK 6:51!10 +MRK 6:51!11 +MRK 6:51!12 +MRK 6:51!13 +MRK 6:51!14 +MRK 6:51!15 +MRK 6:51!16 +MRK 6:51!17 +MRK 6:51!18 +MRK 6:52!2 +MRK 6:52!1 +MRK 6:52!3 +MRK 6:52!4 +MRK 6:52!5 +MRK 6:52!6 +MRK 6:52!7 +MRK 6:52!8 +MRK 6:52!12 +MRK 6:52!9 +MRK 6:52!10 +MRK 6:52!11 +MRK 6:53!1 +MRK 6:53!2 +MRK 6:53!3 +MRK 6:53!4 +MRK 6:53!5 +MRK 6:53!6 +MRK 6:53!7 +MRK 6:53!8 +MRK 6:53!9 +MRK 6:53!10 +MRK 6:54!1 +MRK 6:54!2 +MRK 6:54!3 +MRK 6:54!4 +MRK 6:54!5 +MRK 6:54!6 +MRK 6:54!7 +MRK 6:54!8 +MRK 6:54!9 +MRK 6:55!1 +MRK 6:55!2 +MRK 6:55!3 +MRK 6:55!4 +MRK 6:55!5 +MRK 6:55!6 +MRK 6:55!7 +MRK 6:55!8 +MRK 6:55!9 +MRK 6:55!10 +MRK 6:55!11 +MRK 6:55!12 +MRK 6:55!13 +MRK 6:55!14 +MRK 6:55!15 +MRK 6:55!16 +MRK 6:55!17 +MRK 6:55!18 +MRK 6:56!1 +MRK 6:56!3 +MRK 6:56!2 +MRK 6:56!4 +MRK 6:56!5 +MRK 6:56!6 +MRK 6:56!7 +MRK 6:56!8 +MRK 6:56!9 +MRK 6:56!10 +MRK 6:56!11 +MRK 6:56!12 +MRK 6:56!13 +MRK 6:56!14 +MRK 6:56!15 +MRK 6:56!16 +MRK 6:56!17 +MRK 6:56!18 +MRK 6:56!19 +MRK 6:56!20 +MRK 6:56!21 +MRK 6:56!22 +MRK 6:56!23 +MRK 6:56!24 +MRK 6:56!25 +MRK 6:56!26 +MRK 6:56!27 +MRK 6:56!28 +MRK 6:56!29 +MRK 6:56!30 +MRK 6:56!32 +MRK 6:56!31 +MRK 6:56!33 +MRK 6:56!34 +MRK 6:56!35 +MRK 7:1!1 +MRK 7:1!2 +MRK 7:1!3 +MRK 7:1!4 +MRK 7:1!5 +MRK 7:1!6 +MRK 7:1!7 +MRK 7:1!8 +MRK 7:1!9 +MRK 7:1!10 +MRK 7:1!11 +MRK 7:1!12 +MRK 7:1!13 +MRK 7:2!1 +MRK 7:2!2 +MRK 7:2!3 +MRK 7:2!4 +MRK 7:2!5 +MRK 7:2!6 +MRK 7:2!7 +MRK 7:2!8 +MRK 7:2!9 +MRK 7:2!10 +MRK 7:2!11 +MRK 7:2!12 +MRK 7:2!13 +MRK 7:2!14 +MRK 7:2!15 +MRK 7:3!2 +MRK 7:3!1 +MRK 7:3!3 +MRK 7:3!4 +MRK 7:3!5 +MRK 7:3!6 +MRK 7:3!7 +MRK 7:3!8 +MRK 7:3!9 +MRK 7:3!10 +MRK 7:3!11 +MRK 7:3!12 +MRK 7:3!13 +MRK 7:3!14 +MRK 7:3!15 +MRK 7:3!16 +MRK 7:3!17 +MRK 7:3!18 +MRK 7:3!19 +MRK 7:3!20 +MRK 7:4!1 +MRK 7:4!2 +MRK 7:4!3 +MRK 7:4!4 +MRK 7:4!5 +MRK 7:4!6 +MRK 7:4!7 +MRK 7:4!8 +MRK 7:4!9 +MRK 7:4!10 +MRK 7:4!11 +MRK 7:4!12 +MRK 7:4!13 +MRK 7:4!14 +MRK 7:4!15 +MRK 7:4!16 +MRK 7:4!17 +MRK 7:4!18 +MRK 7:4!19 +MRK 7:4!20 +MRK 7:4!21 +MRK 7:5!1 +MRK 7:5!2 +MRK 7:5!3 +MRK 7:5!4 +MRK 7:5!5 +MRK 7:5!6 +MRK 7:5!7 +MRK 7:5!8 +MRK 7:5!9 +MRK 7:5!10 +MRK 7:5!11 +MRK 7:5!12 +MRK 7:5!13 +MRK 7:5!14 +MRK 7:5!15 +MRK 7:5!16 +MRK 7:5!17 +MRK 7:5!18 +MRK 7:5!19 +MRK 7:5!20 +MRK 7:5!21 +MRK 7:5!22 +MRK 7:5!23 +MRK 7:5!24 +MRK 7:5!25 +MRK 7:5!26 +MRK 7:6!2 +MRK 7:6!1 +MRK 7:6!3 +MRK 7:6!4 +MRK 7:6!5 +MRK 7:6!6 +MRK 7:6!7 +MRK 7:6!8 +MRK 7:6!9 +MRK 7:6!10 +MRK 7:6!11 +MRK 7:6!12 +MRK 7:6!13 +MRK 7:6!14 +MRK 7:6!15 +MRK 7:6!16 +MRK 7:6!17 +MRK 7:6!18 +MRK 7:6!19 +MRK 7:6!20 +MRK 7:6!21 +MRK 7:6!23 +MRK 7:6!22 +MRK 7:6!24 +MRK 7:6!25 +MRK 7:6!26 +MRK 7:6!27 +MRK 7:6!28 +MRK 7:6!29 +MRK 7:7!2 +MRK 7:7!1 +MRK 7:7!3 +MRK 7:7!4 +MRK 7:7!5 +MRK 7:7!6 +MRK 7:7!7 +MRK 7:7!8 +MRK 7:8!1 +MRK 7:8!2 +MRK 7:8!3 +MRK 7:8!4 +MRK 7:8!5 +MRK 7:8!6 +MRK 7:8!7 +MRK 7:8!8 +MRK 7:8!9 +MRK 7:8!10 +MRK 7:9!1 +MRK 7:9!2 +MRK 7:9!3 +MRK 7:9!4 +MRK 7:9!5 +MRK 7:9!6 +MRK 7:9!7 +MRK 7:9!8 +MRK 7:9!9 +MRK 7:9!10 +MRK 7:9!11 +MRK 7:9!12 +MRK 7:9!13 +MRK 7:9!14 +MRK 7:10!2 +MRK 7:10!1 +MRK 7:10!3 +MRK 7:10!4 +MRK 7:10!5 +MRK 7:10!6 +MRK 7:10!7 +MRK 7:10!8 +MRK 7:10!9 +MRK 7:10!10 +MRK 7:10!11 +MRK 7:10!12 +MRK 7:10!13 +MRK 7:10!14 +MRK 7:10!15 +MRK 7:10!16 +MRK 7:10!17 +MRK 7:10!18 +MRK 7:10!19 +MRK 7:11!2 +MRK 7:11!1 +MRK 7:11!3 +MRK 7:11!4 +MRK 7:11!5 +MRK 7:11!6 +MRK 7:11!7 +MRK 7:11!8 +MRK 7:11!9 +MRK 7:11!10 +MRK 7:11!11 +MRK 7:11!12 +MRK 7:11!13 +MRK 7:11!14 +MRK 7:11!15 +MRK 7:11!17 +MRK 7:11!16 +MRK 7:11!18 +MRK 7:11!19 +MRK 7:11!20 +MRK 7:12!1 +MRK 7:12!2 +MRK 7:12!3 +MRK 7:12!4 +MRK 7:12!5 +MRK 7:12!6 +MRK 7:12!7 +MRK 7:12!8 +MRK 7:12!9 +MRK 7:12!10 +MRK 7:13!1 +MRK 7:13!2 +MRK 7:13!3 +MRK 7:13!4 +MRK 7:13!5 +MRK 7:13!6 +MRK 7:13!7 +MRK 7:13!8 +MRK 7:13!9 +MRK 7:13!10 +MRK 7:13!11 +MRK 7:13!12 +MRK 7:13!13 +MRK 7:13!14 +MRK 7:13!15 +MRK 7:14!1 +MRK 7:14!2 +MRK 7:14!3 +MRK 7:14!4 +MRK 7:14!5 +MRK 7:14!6 +MRK 7:14!7 +MRK 7:14!8 +MRK 7:14!9 +MRK 7:14!10 +MRK 7:14!11 +MRK 7:14!12 +MRK 7:15!1 +MRK 7:15!2 +MRK 7:15!3 +MRK 7:15!4 +MRK 7:15!5 +MRK 7:15!6 +MRK 7:15!7 +MRK 7:15!8 +MRK 7:15!9 +MRK 7:15!10 +MRK 7:15!11 +MRK 7:15!12 +MRK 7:15!13 +MRK 7:15!14 +MRK 7:15!15 +MRK 7:15!16 +MRK 7:15!17 +MRK 7:15!18 +MRK 7:15!19 +MRK 7:15!20 +MRK 7:15!21 +MRK 7:15!22 +MRK 7:15!23 +MRK 7:17!1 +MRK 7:17!2 +MRK 7:17!3 +MRK 7:17!4 +MRK 7:17!5 +MRK 7:17!6 +MRK 7:17!7 +MRK 7:17!8 +MRK 7:17!9 +MRK 7:17!10 +MRK 7:17!11 +MRK 7:17!12 +MRK 7:17!13 +MRK 7:17!14 +MRK 7:17!15 +MRK 7:18!1 +MRK 7:18!2 +MRK 7:18!3 +MRK 7:18!4 +MRK 7:18!5 +MRK 7:18!6 +MRK 7:18!7 +MRK 7:18!8 +MRK 7:18!9 +MRK 7:18!10 +MRK 7:18!11 +MRK 7:18!12 +MRK 7:18!13 +MRK 7:18!14 +MRK 7:18!15 +MRK 7:18!16 +MRK 7:18!17 +MRK 7:18!18 +MRK 7:18!19 +MRK 7:18!20 +MRK 7:18!21 +MRK 7:18!22 +MRK 7:19!1 +MRK 7:19!2 +MRK 7:19!3 +MRK 7:19!5 +MRK 7:19!4 +MRK 7:19!6 +MRK 7:19!7 +MRK 7:19!8 +MRK 7:19!9 +MRK 7:19!10 +MRK 7:19!11 +MRK 7:19!12 +MRK 7:19!13 +MRK 7:19!14 +MRK 7:19!15 +MRK 7:19!16 +MRK 7:19!17 +MRK 7:19!18 +MRK 7:19!19 +MRK 7:19!20 +MRK 7:20!2 +MRK 7:20!1 +MRK 7:20!3 +MRK 7:20!4 +MRK 7:20!5 +MRK 7:20!6 +MRK 7:20!7 +MRK 7:20!8 +MRK 7:20!9 +MRK 7:20!10 +MRK 7:20!11 +MRK 7:20!12 +MRK 7:21!2 +MRK 7:21!1 +MRK 7:21!3 +MRK 7:21!4 +MRK 7:21!5 +MRK 7:21!6 +MRK 7:21!7 +MRK 7:21!8 +MRK 7:21!9 +MRK 7:21!10 +MRK 7:21!11 +MRK 7:21!12 +MRK 7:21!13 +MRK 7:21!14 +MRK 7:21!15 +MRK 7:22!1 +MRK 7:22!2 +MRK 7:22!3 +MRK 7:22!4 +MRK 7:22!5 +MRK 7:22!6 +MRK 7:22!7 +MRK 7:22!8 +MRK 7:22!9 +MRK 7:22!10 +MRK 7:23!1 +MRK 7:23!2 +MRK 7:23!3 +MRK 7:23!4 +MRK 7:23!5 +MRK 7:23!6 +MRK 7:23!7 +MRK 7:23!8 +MRK 7:23!9 +MRK 7:23!10 +MRK 7:24!2 +MRK 7:24!1 +MRK 7:24!3 +MRK 7:24!4 +MRK 7:24!5 +MRK 7:24!6 +MRK 7:24!7 +MRK 7:24!8 +MRK 7:24!9 +MRK 7:24!10 +MRK 7:24!11 +MRK 7:24!12 +MRK 7:24!13 +MRK 7:24!15 +MRK 7:24!14 +MRK 7:24!16 +MRK 7:24!17 +MRK 7:24!18 +MRK 7:24!19 +MRK 7:25!1 +MRK 7:25!2 +MRK 7:25!3 +MRK 7:25!5 +MRK 7:25!6 +MRK 7:25!4 +MRK 7:25!7 +MRK 7:25!9 +MRK 7:25!10 +MRK 7:25!11 +MRK 7:25!8 +MRK 7:25!12 +MRK 7:25!13 +MRK 7:25!14 +MRK 7:25!15 +MRK 7:25!16 +MRK 7:25!17 +MRK 7:25!18 +MRK 7:25!19 +MRK 7:26!2 +MRK 7:26!1 +MRK 7:26!3 +MRK 7:26!4 +MRK 7:26!5 +MRK 7:26!6 +MRK 7:26!7 +MRK 7:26!8 +MRK 7:26!9 +MRK 7:26!10 +MRK 7:26!11 +MRK 7:26!12 +MRK 7:26!13 +MRK 7:26!14 +MRK 7:26!15 +MRK 7:26!16 +MRK 7:26!17 +MRK 7:26!18 +MRK 7:26!19 +MRK 7:27!1 +MRK 7:27!2 +MRK 7:27!3 +MRK 7:27!4 +MRK 7:27!5 +MRK 7:27!6 +MRK 7:27!7 +MRK 7:27!8 +MRK 7:27!10 +MRK 7:27!9 +MRK 7:27!11 +MRK 7:27!12 +MRK 7:27!13 +MRK 7:27!14 +MRK 7:27!15 +MRK 7:27!16 +MRK 7:27!17 +MRK 7:27!18 +MRK 7:27!19 +MRK 7:27!20 +MRK 7:27!21 +MRK 7:28!2 +MRK 7:28!1 +MRK 7:28!3 +MRK 7:28!4 +MRK 7:28!5 +MRK 7:28!6 +MRK 7:28!7 +MRK 7:28!8 +MRK 7:28!9 +MRK 7:28!10 +MRK 7:28!11 +MRK 7:28!12 +MRK 7:28!13 +MRK 7:28!14 +MRK 7:28!15 +MRK 7:28!16 +MRK 7:28!17 +MRK 7:28!18 +MRK 7:28!19 +MRK 7:28!20 +MRK 7:29!1 +MRK 7:29!2 +MRK 7:29!3 +MRK 7:29!4 +MRK 7:29!5 +MRK 7:29!6 +MRK 7:29!7 +MRK 7:29!8 +MRK 7:29!9 +MRK 7:29!10 +MRK 7:29!11 +MRK 7:29!12 +MRK 7:29!13 +MRK 7:29!14 +MRK 7:29!15 +MRK 7:30!1 +MRK 7:30!2 +MRK 7:30!3 +MRK 7:30!4 +MRK 7:30!5 +MRK 7:30!6 +MRK 7:30!7 +MRK 7:30!8 +MRK 7:30!9 +MRK 7:30!10 +MRK 7:30!11 +MRK 7:30!12 +MRK 7:30!13 +MRK 7:30!14 +MRK 7:30!15 +MRK 7:30!16 +MRK 7:30!17 +MRK 7:31!1 +MRK 7:31!2 +MRK 7:31!3 +MRK 7:31!4 +MRK 7:31!5 +MRK 7:31!6 +MRK 7:31!7 +MRK 7:31!8 +MRK 7:31!9 +MRK 7:31!10 +MRK 7:31!11 +MRK 7:31!12 +MRK 7:31!13 +MRK 7:31!14 +MRK 7:31!15 +MRK 7:31!16 +MRK 7:31!17 +MRK 7:31!18 +MRK 7:31!19 +MRK 7:31!20 +MRK 7:32!1 +MRK 7:32!2 +MRK 7:32!3 +MRK 7:32!4 +MRK 7:32!5 +MRK 7:32!6 +MRK 7:32!7 +MRK 7:32!8 +MRK 7:32!9 +MRK 7:32!10 +MRK 7:32!11 +MRK 7:32!12 +MRK 7:32!13 +MRK 7:32!14 +MRK 7:33!1 +MRK 7:33!2 +MRK 7:33!3 +MRK 7:33!4 +MRK 7:33!5 +MRK 7:33!6 +MRK 7:33!7 +MRK 7:33!8 +MRK 7:33!9 +MRK 7:33!10 +MRK 7:33!11 +MRK 7:33!12 +MRK 7:33!13 +MRK 7:33!14 +MRK 7:33!15 +MRK 7:33!16 +MRK 7:33!17 +MRK 7:33!18 +MRK 7:33!19 +MRK 7:33!20 +MRK 7:33!21 +MRK 7:33!22 +MRK 7:34!1 +MRK 7:34!2 +MRK 7:34!3 +MRK 7:34!4 +MRK 7:34!5 +MRK 7:34!6 +MRK 7:34!7 +MRK 7:34!8 +MRK 7:34!9 +MRK 7:34!10 +MRK 7:34!11 +MRK 7:34!12 +MRK 7:34!13 +MRK 7:35!1 +MRK 7:35!2 +MRK 7:35!3 +MRK 7:35!4 +MRK 7:35!5 +MRK 7:35!6 +MRK 7:35!7 +MRK 7:35!8 +MRK 7:35!9 +MRK 7:35!10 +MRK 7:35!11 +MRK 7:35!12 +MRK 7:35!13 +MRK 7:35!14 +MRK 7:35!15 +MRK 7:35!16 +MRK 7:36!1 +MRK 7:36!2 +MRK 7:36!3 +MRK 7:36!4 +MRK 7:36!5 +MRK 7:36!6 +MRK 7:36!8 +MRK 7:36!7 +MRK 7:36!9 +MRK 7:36!10 +MRK 7:36!11 +MRK 7:36!12 +MRK 7:36!13 +MRK 7:36!14 +MRK 7:37!1 +MRK 7:37!2 +MRK 7:37!3 +MRK 7:37!4 +MRK 7:37!5 +MRK 7:37!6 +MRK 7:37!7 +MRK 7:37!8 +MRK 7:37!11 +MRK 7:37!9 +MRK 7:37!10 +MRK 7:37!12 +MRK 7:37!13 +MRK 7:37!14 +MRK 7:37!15 +MRK 8:1!1 +MRK 8:1!2 +MRK 8:1!3 +MRK 8:1!4 +MRK 8:1!5 +MRK 8:1!6 +MRK 8:1!7 +MRK 8:1!8 +MRK 8:1!9 +MRK 8:1!10 +MRK 8:1!11 +MRK 8:1!12 +MRK 8:1!13 +MRK 8:1!14 +MRK 8:1!15 +MRK 8:1!16 +MRK 8:1!17 +MRK 8:1!18 +MRK 8:2!1 +MRK 8:2!2 +MRK 8:2!3 +MRK 8:2!4 +MRK 8:2!5 +MRK 8:2!6 +MRK 8:2!7 +MRK 8:2!8 +MRK 8:2!9 +MRK 8:2!10 +MRK 8:2!11 +MRK 8:2!12 +MRK 8:2!13 +MRK 8:2!14 +MRK 8:2!15 +MRK 8:3!1 +MRK 8:3!2 +MRK 8:3!3 +MRK 8:3!4 +MRK 8:3!5 +MRK 8:3!6 +MRK 8:3!7 +MRK 8:3!8 +MRK 8:3!9 +MRK 8:3!10 +MRK 8:3!11 +MRK 8:3!12 +MRK 8:3!13 +MRK 8:3!14 +MRK 8:3!15 +MRK 8:3!16 +MRK 8:3!17 +MRK 8:3!18 +MRK 8:4!1 +MRK 8:4!2 +MRK 8:4!3 +MRK 8:4!4 +MRK 8:4!5 +MRK 8:4!6 +MRK 8:4!7 +MRK 8:4!8 +MRK 8:4!10 +MRK 8:4!11 +MRK 8:4!9 +MRK 8:4!12 +MRK 8:4!13 +MRK 8:4!14 +MRK 8:4!15 +MRK 8:4!16 +MRK 8:5!1 +MRK 8:5!2 +MRK 8:5!3 +MRK 8:5!4 +MRK 8:5!6 +MRK 8:5!5 +MRK 8:5!8 +MRK 8:5!7 +MRK 8:5!9 +MRK 8:5!10 +MRK 8:6!1 +MRK 8:6!2 +MRK 8:6!3 +MRK 8:6!4 +MRK 8:6!5 +MRK 8:6!6 +MRK 8:6!7 +MRK 8:6!8 +MRK 8:6!9 +MRK 8:6!10 +MRK 8:6!11 +MRK 8:6!12 +MRK 8:6!13 +MRK 8:6!14 +MRK 8:6!15 +MRK 8:6!16 +MRK 8:6!17 +MRK 8:6!18 +MRK 8:6!19 +MRK 8:6!20 +MRK 8:6!21 +MRK 8:6!22 +MRK 8:6!23 +MRK 8:6!24 +MRK 8:6!25 +MRK 8:6!26 +MRK 8:7!1 +MRK 8:7!2 +MRK 8:7!3 +MRK 8:7!4 +MRK 8:7!5 +MRK 8:7!6 +MRK 8:7!7 +MRK 8:7!8 +MRK 8:7!9 +MRK 8:7!10 +MRK 8:7!11 +MRK 8:8!1 +MRK 8:8!2 +MRK 8:8!3 +MRK 8:8!4 +MRK 8:8!5 +MRK 8:8!6 +MRK 8:8!7 +MRK 8:8!8 +MRK 8:8!9 +MRK 8:8!10 +MRK 8:9!2 +MRK 8:9!1 +MRK 8:9!3 +MRK 8:9!4 +MRK 8:9!5 +MRK 8:9!6 +MRK 8:9!7 +MRK 8:10!1 +MRK 8:10!2 +MRK 8:10!3 +MRK 8:10!4 +MRK 8:10!5 +MRK 8:10!6 +MRK 8:10!7 +MRK 8:10!8 +MRK 8:10!9 +MRK 8:10!10 +MRK 8:10!11 +MRK 8:10!12 +MRK 8:10!13 +MRK 8:10!14 +MRK 8:10!15 +MRK 8:11!1 +MRK 8:11!2 +MRK 8:11!3 +MRK 8:11!4 +MRK 8:11!5 +MRK 8:11!6 +MRK 8:11!7 +MRK 8:11!8 +MRK 8:11!9 +MRK 8:11!10 +MRK 8:11!11 +MRK 8:11!12 +MRK 8:11!13 +MRK 8:11!14 +MRK 8:11!15 +MRK 8:11!16 +MRK 8:11!17 +MRK 8:12!1 +MRK 8:12!2 +MRK 8:12!3 +MRK 8:12!4 +MRK 8:12!5 +MRK 8:12!6 +MRK 8:12!7 +MRK 8:12!8 +MRK 8:12!9 +MRK 8:12!10 +MRK 8:12!11 +MRK 8:12!12 +MRK 8:12!13 +MRK 8:12!14 +MRK 8:12!15 +MRK 8:12!16 +MRK 8:12!17 +MRK 8:12!18 +MRK 8:12!19 +MRK 8:12!20 +MRK 8:12!21 +MRK 8:13!1 +MRK 8:13!2 +MRK 8:13!3 +MRK 8:13!4 +MRK 8:13!5 +MRK 8:13!6 +MRK 8:13!7 +MRK 8:13!8 +MRK 8:13!9 +MRK 8:14!1 +MRK 8:14!2 +MRK 8:14!3 +MRK 8:14!4 +MRK 8:14!5 +MRK 8:14!6 +MRK 8:14!7 +MRK 8:14!8 +MRK 8:14!9 +MRK 8:14!10 +MRK 8:14!11 +MRK 8:14!12 +MRK 8:14!13 +MRK 8:14!14 +MRK 8:14!15 +MRK 8:14!16 +MRK 8:15!1 +MRK 8:15!2 +MRK 8:15!3 +MRK 8:15!4 +MRK 8:15!5 +MRK 8:15!6 +MRK 8:15!7 +MRK 8:15!8 +MRK 8:15!9 +MRK 8:15!10 +MRK 8:15!11 +MRK 8:15!12 +MRK 8:15!13 +MRK 8:15!14 +MRK 8:15!15 +MRK 8:16!1 +MRK 8:16!2 +MRK 8:16!3 +MRK 8:16!4 +MRK 8:16!5 +MRK 8:16!6 +MRK 8:16!7 +MRK 8:16!8 +MRK 8:17!1 +MRK 8:17!2 +MRK 8:17!3 +MRK 8:17!4 +MRK 8:17!5 +MRK 8:17!6 +MRK 8:17!7 +MRK 8:17!8 +MRK 8:17!9 +MRK 8:17!10 +MRK 8:17!11 +MRK 8:17!12 +MRK 8:17!13 +MRK 8:17!14 +MRK 8:17!15 +MRK 8:17!16 +MRK 8:17!17 +MRK 8:17!18 +MRK 8:17!19 +MRK 8:18!1 +MRK 8:18!2 +MRK 8:18!3 +MRK 8:18!4 +MRK 8:18!5 +MRK 8:18!6 +MRK 8:18!7 +MRK 8:18!8 +MRK 8:18!9 +MRK 8:18!10 +MRK 8:18!11 +MRK 8:18!12 +MRK 8:19!1 +MRK 8:19!2 +MRK 8:19!3 +MRK 8:19!4 +MRK 8:19!5 +MRK 8:19!6 +MRK 8:19!7 +MRK 8:19!8 +MRK 8:19!9 +MRK 8:19!10 +MRK 8:19!11 +MRK 8:19!12 +MRK 8:19!13 +MRK 8:19!14 +MRK 8:19!15 +MRK 8:19!16 +MRK 8:20!1 +MRK 8:20!2 +MRK 8:20!3 +MRK 8:20!4 +MRK 8:20!5 +MRK 8:20!6 +MRK 8:20!7 +MRK 8:20!8 +MRK 8:20!9 +MRK 8:20!10 +MRK 8:20!11 +MRK 8:20!12 +MRK 8:20!13 +MRK 8:20!14 +MRK 8:21!1 +MRK 8:21!2 +MRK 8:21!3 +MRK 8:21!4 +MRK 8:21!5 +MRK 8:22!1 +MRK 8:22!2 +MRK 8:22!3 +MRK 8:22!4 +MRK 8:22!5 +MRK 8:22!6 +MRK 8:22!7 +MRK 8:22!8 +MRK 8:22!9 +MRK 8:22!10 +MRK 8:22!11 +MRK 8:22!12 +MRK 8:22!13 +MRK 8:22!14 +MRK 8:23!1 +MRK 8:23!2 +MRK 8:23!3 +MRK 8:23!4 +MRK 8:23!5 +MRK 8:23!6 +MRK 8:23!7 +MRK 8:23!8 +MRK 8:23!9 +MRK 8:23!10 +MRK 8:23!11 +MRK 8:23!12 +MRK 8:23!13 +MRK 8:23!14 +MRK 8:23!15 +MRK 8:23!16 +MRK 8:23!17 +MRK 8:23!18 +MRK 8:23!19 +MRK 8:23!20 +MRK 8:23!21 +MRK 8:23!22 +MRK 8:23!23 +MRK 8:23!24 +MRK 8:23!25 +MRK 8:23!26 +MRK 8:24!1 +MRK 8:24!2 +MRK 8:24!3 +MRK 8:24!4 +MRK 8:24!5 +MRK 8:24!6 +MRK 8:24!7 +MRK 8:24!8 +MRK 8:24!9 +MRK 8:24!11 +MRK 8:24!10 +MRK 8:25!1 +MRK 8:25!2 +MRK 8:25!3 +MRK 8:25!4 +MRK 8:25!5 +MRK 8:25!6 +MRK 8:25!7 +MRK 8:25!8 +MRK 8:25!9 +MRK 8:25!10 +MRK 8:25!11 +MRK 8:25!12 +MRK 8:25!13 +MRK 8:25!14 +MRK 8:25!15 +MRK 8:25!16 +MRK 8:25!17 +MRK 8:26!1 +MRK 8:26!2 +MRK 8:26!3 +MRK 8:26!4 +MRK 8:26!5 +MRK 8:26!6 +MRK 8:26!7 +MRK 8:26!8 +MRK 8:26!9 +MRK 8:26!10 +MRK 8:26!11 +MRK 8:26!12 +MRK 8:27!1 +MRK 8:27!2 +MRK 8:27!3 +MRK 8:27!4 +MRK 8:27!5 +MRK 8:27!6 +MRK 8:27!7 +MRK 8:27!8 +MRK 8:27!9 +MRK 8:27!10 +MRK 8:27!11 +MRK 8:27!12 +MRK 8:27!13 +MRK 8:27!14 +MRK 8:27!15 +MRK 8:27!16 +MRK 8:27!17 +MRK 8:27!18 +MRK 8:27!19 +MRK 8:27!20 +MRK 8:27!21 +MRK 8:27!22 +MRK 8:27!23 +MRK 8:27!24 +MRK 8:27!25 +MRK 8:27!26 +MRK 8:27!30 +MRK 8:27!27 +MRK 8:27!28 +MRK 8:27!29 +MRK 8:28!2 +MRK 8:28!1 +MRK 8:28!3 +MRK 8:28!4 +MRK 8:28!5 +MRK 8:28!6 +MRK 8:28!7 +MRK 8:28!8 +MRK 8:28!9 +MRK 8:28!10 +MRK 8:28!11 +MRK 8:28!12 +MRK 8:28!14 +MRK 8:28!13 +MRK 8:28!15 +MRK 8:28!16 +MRK 8:28!17 +MRK 8:28!18 +MRK 8:29!1 +MRK 8:29!2 +MRK 8:29!3 +MRK 8:29!4 +MRK 8:29!6 +MRK 8:29!5 +MRK 8:29!7 +MRK 8:29!8 +MRK 8:29!10 +MRK 8:29!9 +MRK 8:29!11 +MRK 8:29!12 +MRK 8:29!13 +MRK 8:29!14 +MRK 8:29!15 +MRK 8:29!16 +MRK 8:29!17 +MRK 8:29!18 +MRK 8:29!19 +MRK 8:30!1 +MRK 8:30!2 +MRK 8:30!3 +MRK 8:30!4 +MRK 8:30!5 +MRK 8:30!6 +MRK 8:30!7 +MRK 8:30!8 +MRK 8:31!1 +MRK 8:31!2 +MRK 8:31!3 +MRK 8:31!4 +MRK 8:31!5 +MRK 8:31!6 +MRK 8:31!7 +MRK 8:31!8 +MRK 8:31!9 +MRK 8:31!10 +MRK 8:31!11 +MRK 8:31!12 +MRK 8:31!13 +MRK 8:31!14 +MRK 8:31!15 +MRK 8:31!16 +MRK 8:31!17 +MRK 8:31!18 +MRK 8:31!19 +MRK 8:31!20 +MRK 8:31!21 +MRK 8:31!22 +MRK 8:31!23 +MRK 8:31!24 +MRK 8:31!25 +MRK 8:31!26 +MRK 8:31!27 +MRK 8:31!28 +MRK 8:31!29 +MRK 8:31!30 +MRK 8:32!1 +MRK 8:32!2 +MRK 8:32!3 +MRK 8:32!4 +MRK 8:32!5 +MRK 8:32!6 +MRK 8:32!8 +MRK 8:32!9 +MRK 8:32!7 +MRK 8:32!10 +MRK 8:32!11 +MRK 8:32!12 +MRK 8:32!13 +MRK 8:33!2 +MRK 8:33!1 +MRK 8:33!3 +MRK 8:33!4 +MRK 8:33!5 +MRK 8:33!6 +MRK 8:33!7 +MRK 8:33!8 +MRK 8:33!9 +MRK 8:33!10 +MRK 8:33!11 +MRK 8:33!12 +MRK 8:33!13 +MRK 8:33!14 +MRK 8:33!15 +MRK 8:33!16 +MRK 8:33!17 +MRK 8:33!18 +MRK 8:33!19 +MRK 8:33!20 +MRK 8:33!21 +MRK 8:33!22 +MRK 8:33!23 +MRK 8:33!24 +MRK 8:33!25 +MRK 8:33!26 +MRK 8:34!1 +MRK 8:34!2 +MRK 8:34!3 +MRK 8:34!4 +MRK 8:34!5 +MRK 8:34!6 +MRK 8:34!7 +MRK 8:34!8 +MRK 8:34!9 +MRK 8:34!10 +MRK 8:34!11 +MRK 8:34!12 +MRK 8:34!13 +MRK 8:34!14 +MRK 8:34!15 +MRK 8:34!16 +MRK 8:34!17 +MRK 8:34!18 +MRK 8:34!19 +MRK 8:34!20 +MRK 8:34!21 +MRK 8:34!22 +MRK 8:34!23 +MRK 8:34!24 +MRK 8:34!25 +MRK 8:34!26 +MRK 8:35!2 +MRK 8:35!3 +MRK 8:35!1 +MRK 8:35!4 +MRK 8:35!5 +MRK 8:35!6 +MRK 8:35!7 +MRK 8:35!8 +MRK 8:35!9 +MRK 8:35!10 +MRK 8:35!12 +MRK 8:35!13 +MRK 8:35!11 +MRK 8:35!14 +MRK 8:35!15 +MRK 8:35!16 +MRK 8:35!17 +MRK 8:35!18 +MRK 8:35!19 +MRK 8:35!20 +MRK 8:35!21 +MRK 8:35!22 +MRK 8:35!23 +MRK 8:35!24 +MRK 8:36!2 +MRK 8:36!1 +MRK 8:36!3 +MRK 8:36!4 +MRK 8:36!5 +MRK 8:36!6 +MRK 8:36!7 +MRK 8:36!8 +MRK 8:36!9 +MRK 8:36!10 +MRK 8:36!11 +MRK 8:36!12 +MRK 8:36!13 +MRK 8:37!2 +MRK 8:37!1 +MRK 8:37!3 +MRK 8:37!4 +MRK 8:37!5 +MRK 8:37!6 +MRK 8:37!7 +MRK 8:37!8 +MRK 8:38!2 +MRK 8:38!3 +MRK 8:38!1 +MRK 8:38!4 +MRK 8:38!5 +MRK 8:38!6 +MRK 8:38!7 +MRK 8:38!8 +MRK 8:38!9 +MRK 8:38!10 +MRK 8:38!11 +MRK 8:38!12 +MRK 8:38!13 +MRK 8:38!14 +MRK 8:38!15 +MRK 8:38!16 +MRK 8:38!17 +MRK 8:38!18 +MRK 8:38!19 +MRK 8:38!20 +MRK 8:38!21 +MRK 8:38!22 +MRK 8:38!23 +MRK 8:38!24 +MRK 8:38!25 +MRK 8:38!26 +MRK 8:38!27 +MRK 8:38!28 +MRK 8:38!29 +MRK 8:38!30 +MRK 8:38!31 +MRK 8:38!32 +MRK 8:38!33 +MRK 8:38!34 +MRK 8:38!35 +MRK 8:38!36 +MRK 8:38!37 +MRK 9:1!1 +MRK 9:1!2 +MRK 9:1!3 +MRK 9:1!4 +MRK 9:1!5 +MRK 9:1!6 +MRK 9:1!7 +MRK 9:1!8 +MRK 9:1!9 +MRK 9:1!11 +MRK 9:1!10 +MRK 9:1!12 +MRK 9:1!13 +MRK 9:1!14 +MRK 9:1!15 +MRK 9:1!16 +MRK 9:1!17 +MRK 9:1!18 +MRK 9:1!19 +MRK 9:1!20 +MRK 9:1!21 +MRK 9:1!22 +MRK 9:1!23 +MRK 9:1!24 +MRK 9:1!25 +MRK 9:1!26 +MRK 9:1!27 +MRK 9:2!1 +MRK 9:2!2 +MRK 9:2!3 +MRK 9:2!4 +MRK 9:2!5 +MRK 9:2!6 +MRK 9:2!7 +MRK 9:2!8 +MRK 9:2!9 +MRK 9:2!10 +MRK 9:2!11 +MRK 9:2!12 +MRK 9:2!13 +MRK 9:2!14 +MRK 9:2!15 +MRK 9:2!16 +MRK 9:2!17 +MRK 9:2!18 +MRK 9:2!19 +MRK 9:2!20 +MRK 9:2!21 +MRK 9:2!22 +MRK 9:2!23 +MRK 9:2!24 +MRK 9:2!25 +MRK 9:2!26 +MRK 9:2!27 +MRK 9:3!1 +MRK 9:3!2 +MRK 9:3!3 +MRK 9:3!4 +MRK 9:3!5 +MRK 9:3!6 +MRK 9:3!7 +MRK 9:3!8 +MRK 9:3!9 +MRK 9:3!10 +MRK 9:3!11 +MRK 9:3!12 +MRK 9:3!13 +MRK 9:3!14 +MRK 9:3!15 +MRK 9:3!16 +MRK 9:3!17 +MRK 9:4!1 +MRK 9:4!2 +MRK 9:4!3 +MRK 9:4!4 +MRK 9:4!5 +MRK 9:4!6 +MRK 9:4!7 +MRK 9:4!8 +MRK 9:4!9 +MRK 9:4!10 +MRK 9:4!11 +MRK 9:5!1 +MRK 9:5!2 +MRK 9:5!3 +MRK 9:5!4 +MRK 9:5!5 +MRK 9:5!6 +MRK 9:5!7 +MRK 9:5!8 +MRK 9:5!9 +MRK 9:5!10 +MRK 9:5!11 +MRK 9:5!12 +MRK 9:5!13 +MRK 9:5!14 +MRK 9:5!15 +MRK 9:5!16 +MRK 9:5!17 +MRK 9:5!18 +MRK 9:5!19 +MRK 9:5!20 +MRK 9:5!21 +MRK 9:5!22 +MRK 9:5!23 +MRK 9:5!24 +MRK 9:5!25 +MRK 9:6!2 +MRK 9:6!1 +MRK 9:6!3 +MRK 9:6!4 +MRK 9:6!5 +MRK 9:6!7 +MRK 9:6!6 +MRK 9:6!8 +MRK 9:7!1 +MRK 9:7!2 +MRK 9:7!3 +MRK 9:7!4 +MRK 9:7!5 +MRK 9:7!6 +MRK 9:7!7 +MRK 9:7!8 +MRK 9:7!9 +MRK 9:7!10 +MRK 9:7!11 +MRK 9:7!12 +MRK 9:7!13 +MRK 9:7!14 +MRK 9:7!15 +MRK 9:7!16 +MRK 9:7!17 +MRK 9:7!18 +MRK 9:7!19 +MRK 9:7!20 +MRK 9:8!1 +MRK 9:8!2 +MRK 9:8!3 +MRK 9:8!4 +MRK 9:8!5 +MRK 9:8!6 +MRK 9:8!7 +MRK 9:8!8 +MRK 9:8!9 +MRK 9:8!10 +MRK 9:8!11 +MRK 9:8!12 +MRK 9:9!1 +MRK 9:9!2 +MRK 9:9!3 +MRK 9:9!4 +MRK 9:9!5 +MRK 9:9!6 +MRK 9:9!7 +MRK 9:9!8 +MRK 9:9!9 +MRK 9:9!10 +MRK 9:9!11 +MRK 9:9!12 +MRK 9:9!13 +MRK 9:9!14 +MRK 9:9!15 +MRK 9:9!16 +MRK 9:9!17 +MRK 9:9!18 +MRK 9:9!19 +MRK 9:9!20 +MRK 9:9!21 +MRK 9:9!22 +MRK 9:9!23 +MRK 9:10!1 +MRK 9:10!2 +MRK 9:10!3 +MRK 9:10!4 +MRK 9:10!5 +MRK 9:10!6 +MRK 9:10!7 +MRK 9:10!8 +MRK 9:10!9 +MRK 9:10!10 +MRK 9:10!11 +MRK 9:10!12 +MRK 9:10!13 +MRK 9:11!1 +MRK 9:11!2 +MRK 9:11!3 +MRK 9:11!4 +MRK 9:11!5 +MRK 9:11!6 +MRK 9:11!7 +MRK 9:11!8 +MRK 9:11!9 +MRK 9:11!11 +MRK 9:11!10 +MRK 9:11!12 +MRK 9:11!13 +MRK 9:12!2 +MRK 9:12!1 +MRK 9:12!3 +MRK 9:12!4 +MRK 9:12!6 +MRK 9:12!5 +MRK 9:12!7 +MRK 9:12!8 +MRK 9:12!9 +MRK 9:12!10 +MRK 9:12!11 +MRK 9:12!12 +MRK 9:12!13 +MRK 9:12!14 +MRK 9:12!15 +MRK 9:12!16 +MRK 9:12!17 +MRK 9:12!18 +MRK 9:12!19 +MRK 9:12!20 +MRK 9:12!21 +MRK 9:12!22 +MRK 9:12!23 +MRK 9:13!1 +MRK 9:13!2 +MRK 9:13!3 +MRK 9:13!4 +MRK 9:13!5 +MRK 9:13!6 +MRK 9:13!7 +MRK 9:13!8 +MRK 9:13!9 +MRK 9:13!10 +MRK 9:13!11 +MRK 9:13!12 +MRK 9:13!13 +MRK 9:13!14 +MRK 9:13!15 +MRK 9:13!16 +MRK 9:14!1 +MRK 9:14!2 +MRK 9:14!3 +MRK 9:14!4 +MRK 9:14!5 +MRK 9:14!6 +MRK 9:14!7 +MRK 9:14!8 +MRK 9:14!9 +MRK 9:14!10 +MRK 9:14!11 +MRK 9:14!12 +MRK 9:14!13 +MRK 9:14!14 +MRK 9:14!15 +MRK 9:15!1 +MRK 9:15!2 +MRK 9:15!3 +MRK 9:15!4 +MRK 9:15!5 +MRK 9:15!6 +MRK 9:15!7 +MRK 9:15!8 +MRK 9:15!9 +MRK 9:15!10 +MRK 9:15!11 +MRK 9:15!12 +MRK 9:16!1 +MRK 9:16!2 +MRK 9:16!3 +MRK 9:16!4 +MRK 9:16!5 +MRK 9:16!6 +MRK 9:16!7 +MRK 9:17!1 +MRK 9:17!2 +MRK 9:17!3 +MRK 9:17!4 +MRK 9:17!5 +MRK 9:17!6 +MRK 9:17!7 +MRK 9:17!8 +MRK 9:17!9 +MRK 9:17!10 +MRK 9:17!11 +MRK 9:17!12 +MRK 9:17!13 +MRK 9:17!14 +MRK 9:17!15 +MRK 9:17!16 +MRK 9:17!17 +MRK 9:18!1 +MRK 9:18!3 +MRK 9:18!2 +MRK 9:18!4 +MRK 9:18!5 +MRK 9:18!6 +MRK 9:18!7 +MRK 9:18!8 +MRK 9:18!9 +MRK 9:18!10 +MRK 9:18!11 +MRK 9:18!12 +MRK 9:18!13 +MRK 9:18!14 +MRK 9:18!15 +MRK 9:18!16 +MRK 9:18!17 +MRK 9:18!18 +MRK 9:18!19 +MRK 9:18!20 +MRK 9:18!21 +MRK 9:18!22 +MRK 9:18!23 +MRK 9:18!24 +MRK 9:18!25 +MRK 9:18!26 +MRK 9:19!2 +MRK 9:19!1 +MRK 9:19!3 +MRK 9:19!4 +MRK 9:19!5 +MRK 9:19!6 +MRK 9:19!7 +MRK 9:19!8 +MRK 9:19!9 +MRK 9:19!10 +MRK 9:19!11 +MRK 9:19!12 +MRK 9:19!13 +MRK 9:19!14 +MRK 9:19!15 +MRK 9:19!16 +MRK 9:19!17 +MRK 9:19!18 +MRK 9:19!19 +MRK 9:19!20 +MRK 9:19!21 +MRK 9:20!1 +MRK 9:20!2 +MRK 9:20!3 +MRK 9:20!4 +MRK 9:20!5 +MRK 9:20!6 +MRK 9:20!7 +MRK 9:20!8 +MRK 9:20!9 +MRK 9:20!10 +MRK 9:20!11 +MRK 9:20!12 +MRK 9:20!13 +MRK 9:20!14 +MRK 9:20!15 +MRK 9:20!16 +MRK 9:20!17 +MRK 9:20!18 +MRK 9:20!19 +MRK 9:20!20 +MRK 9:21!1 +MRK 9:21!2 +MRK 9:21!3 +MRK 9:21!4 +MRK 9:21!5 +MRK 9:21!6 +MRK 9:21!7 +MRK 9:21!8 +MRK 9:21!9 +MRK 9:21!10 +MRK 9:21!11 +MRK 9:21!12 +MRK 9:21!14 +MRK 9:21!13 +MRK 9:21!15 +MRK 9:21!16 +MRK 9:21!17 +MRK 9:22!1 +MRK 9:22!2 +MRK 9:22!3 +MRK 9:22!4 +MRK 9:22!5 +MRK 9:22!6 +MRK 9:22!7 +MRK 9:22!8 +MRK 9:22!9 +MRK 9:22!10 +MRK 9:22!11 +MRK 9:22!12 +MRK 9:22!13 +MRK 9:22!14 +MRK 9:22!15 +MRK 9:22!16 +MRK 9:22!17 +MRK 9:22!18 +MRK 9:22!19 +MRK 9:22!20 +MRK 9:22!21 +MRK 9:22!22 +MRK 9:23!2 +MRK 9:23!1 +MRK 9:23!3 +MRK 9:23!4 +MRK 9:23!5 +MRK 9:23!6 +MRK 9:23!7 +MRK 9:23!8 +MRK 9:23!9 +MRK 9:23!10 +MRK 9:23!11 +MRK 9:23!12 +MRK 9:24!1 +MRK 9:24!2 +MRK 9:24!3 +MRK 9:24!4 +MRK 9:24!5 +MRK 9:24!6 +MRK 9:24!7 +MRK 9:24!8 +MRK 9:24!9 +MRK 9:24!10 +MRK 9:24!11 +MRK 9:24!12 +MRK 9:25!2 +MRK 9:25!3 +MRK 9:25!4 +MRK 9:25!1 +MRK 9:25!5 +MRK 9:25!6 +MRK 9:25!7 +MRK 9:25!8 +MRK 9:25!9 +MRK 9:25!10 +MRK 9:25!11 +MRK 9:25!12 +MRK 9:25!13 +MRK 9:25!14 +MRK 9:25!15 +MRK 9:25!16 +MRK 9:25!17 +MRK 9:25!18 +MRK 9:25!19 +MRK 9:25!20 +MRK 9:25!21 +MRK 9:25!22 +MRK 9:25!23 +MRK 9:25!24 +MRK 9:25!25 +MRK 9:25!26 +MRK 9:25!27 +MRK 9:25!28 +MRK 9:25!29 +MRK 9:25!30 +MRK 9:26!1 +MRK 9:26!2 +MRK 9:26!3 +MRK 9:26!4 +MRK 9:26!5 +MRK 9:26!6 +MRK 9:26!7 +MRK 9:26!8 +MRK 9:26!9 +MRK 9:26!10 +MRK 9:26!11 +MRK 9:26!12 +MRK 9:26!13 +MRK 9:26!14 +MRK 9:26!15 +MRK 9:26!16 +MRK 9:27!2 +MRK 9:27!1 +MRK 9:27!3 +MRK 9:27!4 +MRK 9:27!5 +MRK 9:27!6 +MRK 9:27!7 +MRK 9:27!8 +MRK 9:27!9 +MRK 9:27!10 +MRK 9:27!11 +MRK 9:28!1 +MRK 9:28!2 +MRK 9:28!3 +MRK 9:28!4 +MRK 9:28!5 +MRK 9:28!6 +MRK 9:28!7 +MRK 9:28!8 +MRK 9:28!9 +MRK 9:28!10 +MRK 9:28!11 +MRK 9:28!12 +MRK 9:28!13 +MRK 9:28!14 +MRK 9:28!15 +MRK 9:28!16 +MRK 9:28!17 +MRK 9:28!18 +MRK 9:29!1 +MRK 9:29!2 +MRK 9:29!3 +MRK 9:29!4 +MRK 9:29!5 +MRK 9:29!6 +MRK 9:29!7 +MRK 9:29!8 +MRK 9:29!9 +MRK 9:29!10 +MRK 9:29!11 +MRK 9:29!12 +MRK 9:29!13 +MRK 9:29!14 +MRK 9:30!1 +MRK 9:30!2 +MRK 9:30!3 +MRK 9:30!4 +MRK 9:30!5 +MRK 9:30!6 +MRK 9:30!7 +MRK 9:30!8 +MRK 9:30!9 +MRK 9:30!10 +MRK 9:30!11 +MRK 9:30!12 +MRK 9:31!2 +MRK 9:31!1 +MRK 9:31!3 +MRK 9:31!4 +MRK 9:31!5 +MRK 9:31!6 +MRK 9:31!7 +MRK 9:31!8 +MRK 9:31!9 +MRK 9:31!10 +MRK 9:31!11 +MRK 9:31!12 +MRK 9:31!13 +MRK 9:31!14 +MRK 9:31!15 +MRK 9:31!16 +MRK 9:31!17 +MRK 9:31!18 +MRK 9:31!19 +MRK 9:31!20 +MRK 9:31!21 +MRK 9:31!22 +MRK 9:31!23 +MRK 9:31!24 +MRK 9:31!25 +MRK 9:31!26 +MRK 9:32!2 +MRK 9:32!1 +MRK 9:32!3 +MRK 9:32!4 +MRK 9:32!5 +MRK 9:32!6 +MRK 9:32!7 +MRK 9:32!8 +MRK 9:32!9 +MRK 9:33!1 +MRK 9:33!2 +MRK 9:33!3 +MRK 9:33!4 +MRK 9:33!5 +MRK 9:33!6 +MRK 9:33!7 +MRK 9:33!8 +MRK 9:33!9 +MRK 9:33!10 +MRK 9:33!11 +MRK 9:33!12 +MRK 9:33!13 +MRK 9:33!14 +MRK 9:33!15 +MRK 9:33!16 +MRK 9:34!2 +MRK 9:34!1 +MRK 9:34!3 +MRK 9:34!6 +MRK 9:34!4 +MRK 9:34!5 +MRK 9:34!7 +MRK 9:34!8 +MRK 9:34!9 +MRK 9:34!10 +MRK 9:34!11 +MRK 9:34!12 +MRK 9:35!1 +MRK 9:35!2 +MRK 9:35!3 +MRK 9:35!4 +MRK 9:35!5 +MRK 9:35!6 +MRK 9:35!7 +MRK 9:35!8 +MRK 9:35!9 +MRK 9:35!10 +MRK 9:35!11 +MRK 9:35!12 +MRK 9:35!13 +MRK 9:35!14 +MRK 9:35!15 +MRK 9:35!16 +MRK 9:35!17 +MRK 9:35!18 +MRK 9:35!19 +MRK 9:36!1 +MRK 9:36!2 +MRK 9:36!3 +MRK 9:36!4 +MRK 9:36!5 +MRK 9:36!6 +MRK 9:36!7 +MRK 9:36!8 +MRK 9:36!9 +MRK 9:36!10 +MRK 9:36!11 +MRK 9:36!12 +MRK 9:36!13 +MRK 9:37!2 +MRK 9:37!1 +MRK 9:37!3 +MRK 9:37!4 +MRK 9:37!5 +MRK 9:37!6 +MRK 9:37!7 +MRK 9:37!8 +MRK 9:37!9 +MRK 9:37!10 +MRK 9:37!11 +MRK 9:37!12 +MRK 9:37!13 +MRK 9:37!14 +MRK 9:37!16 +MRK 9:37!15 +MRK 9:37!17 +MRK 9:37!18 +MRK 9:37!19 +MRK 9:37!20 +MRK 9:37!21 +MRK 9:37!22 +MRK 9:37!23 +MRK 9:37!24 +MRK 9:37!25 +MRK 9:38!1 +MRK 9:38!2 +MRK 9:38!3 +MRK 9:38!4 +MRK 9:38!5 +MRK 9:38!6 +MRK 9:38!7 +MRK 9:38!8 +MRK 9:38!9 +MRK 9:38!10 +MRK 9:38!11 +MRK 9:38!12 +MRK 9:38!13 +MRK 9:38!14 +MRK 9:38!15 +MRK 9:38!16 +MRK 9:38!17 +MRK 9:38!18 +MRK 9:38!19 +MRK 9:38!20 +MRK 9:38!21 +MRK 9:38!22 +MRK 9:38!23 +MRK 9:38!24 +MRK 9:39!2 +MRK 9:39!1 +MRK 9:39!3 +MRK 9:39!4 +MRK 9:39!5 +MRK 9:39!6 +MRK 9:39!7 +MRK 9:39!9 +MRK 9:39!8 +MRK 9:39!10 +MRK 9:39!11 +MRK 9:39!12 +MRK 9:39!13 +MRK 9:39!14 +MRK 9:39!15 +MRK 9:39!16 +MRK 9:39!17 +MRK 9:39!18 +MRK 9:39!19 +MRK 9:39!20 +MRK 9:39!21 +MRK 9:39!22 +MRK 9:40!2 +MRK 9:40!1 +MRK 9:40!3 +MRK 9:40!4 +MRK 9:40!5 +MRK 9:40!6 +MRK 9:40!7 +MRK 9:40!8 +MRK 9:40!9 +MRK 9:41!2 +MRK 9:41!3 +MRK 9:41!1 +MRK 9:41!4 +MRK 9:41!5 +MRK 9:41!6 +MRK 9:41!7 +MRK 9:41!8 +MRK 9:41!9 +MRK 9:41!10 +MRK 9:41!11 +MRK 9:41!12 +MRK 9:41!13 +MRK 9:41!14 +MRK 9:41!15 +MRK 9:41!16 +MRK 9:41!17 +MRK 9:41!18 +MRK 9:41!19 +MRK 9:41!20 +MRK 9:41!21 +MRK 9:41!22 +MRK 9:42!1 +MRK 9:42!3 +MRK 9:42!2 +MRK 9:42!4 +MRK 9:42!5 +MRK 9:42!6 +MRK 9:42!7 +MRK 9:42!8 +MRK 9:42!9 +MRK 9:42!10 +MRK 9:42!11 +MRK 9:42!12 +MRK 9:42!13 +MRK 9:42!14 +MRK 9:42!15 +MRK 9:42!16 +MRK 9:42!17 +MRK 9:42!18 +MRK 9:42!19 +MRK 9:42!20 +MRK 9:42!21 +MRK 9:42!22 +MRK 9:42!23 +MRK 9:42!24 +MRK 9:42!25 +MRK 9:42!26 +MRK 9:42!27 +MRK 9:43!1 +MRK 9:43!2 +MRK 9:43!3 +MRK 9:43!4 +MRK 9:43!5 +MRK 9:43!6 +MRK 9:43!7 +MRK 9:43!8 +MRK 9:43!9 +MRK 9:43!10 +MRK 9:43!11 +MRK 9:43!12 +MRK 9:43!13 +MRK 9:43!14 +MRK 9:43!15 +MRK 9:43!16 +MRK 9:43!17 +MRK 9:43!18 +MRK 9:43!19 +MRK 9:43!20 +MRK 9:43!21 +MRK 9:43!22 +MRK 9:43!23 +MRK 9:43!24 +MRK 9:43!25 +MRK 9:43!26 +MRK 9:43!27 +MRK 9:43!28 +MRK 9:43!29 +MRK 9:43!30 +MRK 9:43!31 +MRK 9:45!1 +MRK 9:45!2 +MRK 9:45!3 +MRK 9:45!4 +MRK 9:45!5 +MRK 9:45!6 +MRK 9:45!7 +MRK 9:45!8 +MRK 9:45!9 +MRK 9:45!10 +MRK 9:45!11 +MRK 9:45!12 +MRK 9:45!13 +MRK 9:45!14 +MRK 9:45!15 +MRK 9:45!16 +MRK 9:45!17 +MRK 9:45!18 +MRK 9:45!19 +MRK 9:45!20 +MRK 9:45!21 +MRK 9:45!22 +MRK 9:45!23 +MRK 9:45!24 +MRK 9:45!25 +MRK 9:45!26 +MRK 9:47!1 +MRK 9:47!2 +MRK 9:47!3 +MRK 9:47!4 +MRK 9:47!5 +MRK 9:47!6 +MRK 9:47!7 +MRK 9:47!8 +MRK 9:47!9 +MRK 9:47!10 +MRK 9:47!12 +MRK 9:47!11 +MRK 9:47!13 +MRK 9:47!14 +MRK 9:47!15 +MRK 9:47!16 +MRK 9:47!17 +MRK 9:47!18 +MRK 9:47!19 +MRK 9:47!20 +MRK 9:47!21 +MRK 9:47!22 +MRK 9:47!23 +MRK 9:47!24 +MRK 9:47!25 +MRK 9:47!26 +MRK 9:47!27 +MRK 9:48!1 +MRK 9:48!2 +MRK 9:48!3 +MRK 9:48!4 +MRK 9:48!5 +MRK 9:48!6 +MRK 9:48!7 +MRK 9:48!8 +MRK 9:48!9 +MRK 9:48!10 +MRK 9:48!11 +MRK 9:49!2 +MRK 9:49!1 +MRK 9:49!3 +MRK 9:49!4 +MRK 9:50!1 +MRK 9:50!2 +MRK 9:50!3 +MRK 9:50!5 +MRK 9:50!4 +MRK 9:50!6 +MRK 9:50!7 +MRK 9:50!8 +MRK 9:50!9 +MRK 9:50!10 +MRK 9:50!11 +MRK 9:50!12 +MRK 9:50!13 +MRK 9:50!14 +MRK 9:50!15 +MRK 9:50!16 +MRK 9:50!17 +MRK 9:50!18 +MRK 9:50!19 +MRK 9:50!20 +MRK 9:50!21 +MRK 10:1!1 +MRK 10:1!2 +MRK 10:1!3 +MRK 10:1!4 +MRK 10:1!5 +MRK 10:1!6 +MRK 10:1!7 +MRK 10:1!8 +MRK 10:1!9 +MRK 10:1!10 +MRK 10:1!11 +MRK 10:1!12 +MRK 10:1!13 +MRK 10:1!14 +MRK 10:1!15 +MRK 10:1!16 +MRK 10:1!17 +MRK 10:1!18 +MRK 10:1!19 +MRK 10:1!20 +MRK 10:1!21 +MRK 10:1!22 +MRK 10:1!23 +MRK 10:1!24 +MRK 10:1!25 +MRK 10:2!1 +MRK 10:2!2 +MRK 10:2!3 +MRK 10:2!4 +MRK 10:2!5 +MRK 10:2!6 +MRK 10:2!7 +MRK 10:2!8 +MRK 10:2!9 +MRK 10:2!10 +MRK 10:2!11 +MRK 10:2!12 +MRK 10:3!2 +MRK 10:3!1 +MRK 10:3!3 +MRK 10:3!4 +MRK 10:3!5 +MRK 10:3!6 +MRK 10:3!7 +MRK 10:3!8 +MRK 10:3!9 +MRK 10:4!2 +MRK 10:4!1 +MRK 10:4!3 +MRK 10:4!4 +MRK 10:4!5 +MRK 10:4!6 +MRK 10:4!7 +MRK 10:4!8 +MRK 10:4!9 +MRK 10:4!10 +MRK 10:5!2 +MRK 10:5!1 +MRK 10:5!3 +MRK 10:5!4 +MRK 10:5!5 +MRK 10:5!6 +MRK 10:5!7 +MRK 10:5!8 +MRK 10:5!9 +MRK 10:5!10 +MRK 10:5!11 +MRK 10:5!12 +MRK 10:5!13 +MRK 10:5!14 +MRK 10:6!2 +MRK 10:6!1 +MRK 10:6!3 +MRK 10:6!4 +MRK 10:6!5 +MRK 10:6!6 +MRK 10:6!7 +MRK 10:6!8 +MRK 10:6!9 +MRK 10:7!1 +MRK 10:7!2 +MRK 10:7!3 +MRK 10:7!4 +MRK 10:7!5 +MRK 10:7!6 +MRK 10:7!7 +MRK 10:7!8 +MRK 10:7!9 +MRK 10:7!10 +MRK 10:8!1 +MRK 10:8!2 +MRK 10:8!3 +MRK 10:8!4 +MRK 10:8!5 +MRK 10:8!6 +MRK 10:8!7 +MRK 10:8!8 +MRK 10:8!9 +MRK 10:8!10 +MRK 10:8!11 +MRK 10:8!12 +MRK 10:8!13 +MRK 10:8!14 +MRK 10:9!2 +MRK 10:9!1 +MRK 10:9!3 +MRK 10:9!4 +MRK 10:9!5 +MRK 10:9!6 +MRK 10:9!7 +MRK 10:9!8 +MRK 10:10!1 +MRK 10:10!2 +MRK 10:10!3 +MRK 10:10!4 +MRK 10:10!5 +MRK 10:10!6 +MRK 10:10!7 +MRK 10:10!8 +MRK 10:10!9 +MRK 10:10!10 +MRK 10:10!11 +MRK 10:11!1 +MRK 10:11!2 +MRK 10:11!3 +MRK 10:11!5 +MRK 10:11!4 +MRK 10:11!6 +MRK 10:11!7 +MRK 10:11!8 +MRK 10:11!9 +MRK 10:11!10 +MRK 10:11!11 +MRK 10:11!12 +MRK 10:11!13 +MRK 10:11!14 +MRK 10:11!15 +MRK 10:12!1 +MRK 10:12!2 +MRK 10:12!3 +MRK 10:12!4 +MRK 10:12!5 +MRK 10:12!6 +MRK 10:12!7 +MRK 10:12!8 +MRK 10:12!9 +MRK 10:12!10 +MRK 10:13!1 +MRK 10:13!2 +MRK 10:13!3 +MRK 10:13!4 +MRK 10:13!5 +MRK 10:13!6 +MRK 10:13!7 +MRK 10:13!9 +MRK 10:13!8 +MRK 10:13!10 +MRK 10:13!11 +MRK 10:13!12 +MRK 10:14!2 +MRK 10:14!1 +MRK 10:14!3 +MRK 10:14!4 +MRK 10:14!5 +MRK 10:14!6 +MRK 10:14!7 +MRK 10:14!8 +MRK 10:14!9 +MRK 10:14!10 +MRK 10:14!11 +MRK 10:14!12 +MRK 10:14!13 +MRK 10:14!14 +MRK 10:14!15 +MRK 10:14!16 +MRK 10:14!17 +MRK 10:14!19 +MRK 10:14!18 +MRK 10:14!20 +MRK 10:14!21 +MRK 10:14!22 +MRK 10:14!23 +MRK 10:14!24 +MRK 10:14!25 +MRK 10:15!1 +MRK 10:15!2 +MRK 10:15!3 +MRK 10:15!5 +MRK 10:15!4 +MRK 10:15!6 +MRK 10:15!7 +MRK 10:15!8 +MRK 10:15!9 +MRK 10:15!10 +MRK 10:15!11 +MRK 10:15!12 +MRK 10:15!13 +MRK 10:15!14 +MRK 10:15!15 +MRK 10:15!16 +MRK 10:15!17 +MRK 10:15!18 +MRK 10:16!1 +MRK 10:16!2 +MRK 10:16!3 +MRK 10:16!4 +MRK 10:16!5 +MRK 10:16!6 +MRK 10:16!7 +MRK 10:16!8 +MRK 10:16!9 +MRK 10:17!1 +MRK 10:17!2 +MRK 10:17!3 +MRK 10:17!4 +MRK 10:17!5 +MRK 10:17!7 +MRK 10:17!6 +MRK 10:17!8 +MRK 10:17!9 +MRK 10:17!10 +MRK 10:17!11 +MRK 10:17!12 +MRK 10:17!13 +MRK 10:17!14 +MRK 10:17!15 +MRK 10:17!16 +MRK 10:17!17 +MRK 10:17!18 +MRK 10:17!19 +MRK 10:17!20 +MRK 10:18!2 +MRK 10:18!1 +MRK 10:18!3 +MRK 10:18!4 +MRK 10:18!5 +MRK 10:18!6 +MRK 10:18!7 +MRK 10:18!8 +MRK 10:18!9 +MRK 10:18!10 +MRK 10:18!11 +MRK 10:18!12 +MRK 10:18!13 +MRK 10:18!14 +MRK 10:18!15 +MRK 10:18!16 +MRK 10:19!1 +MRK 10:19!2 +MRK 10:19!3 +MRK 10:19!4 +MRK 10:19!5 +MRK 10:19!6 +MRK 10:19!7 +MRK 10:19!8 +MRK 10:19!9 +MRK 10:19!10 +MRK 10:19!11 +MRK 10:19!12 +MRK 10:19!13 +MRK 10:19!14 +MRK 10:19!15 +MRK 10:19!16 +MRK 10:19!17 +MRK 10:19!18 +MRK 10:19!19 +MRK 10:19!20 +MRK 10:20!2 +MRK 10:20!1 +MRK 10:20!3 +MRK 10:20!4 +MRK 10:20!5 +MRK 10:20!6 +MRK 10:20!7 +MRK 10:20!8 +MRK 10:20!9 +MRK 10:20!10 +MRK 10:20!11 +MRK 10:21!2 +MRK 10:21!1 +MRK 10:21!3 +MRK 10:21!4 +MRK 10:21!5 +MRK 10:21!6 +MRK 10:21!7 +MRK 10:21!8 +MRK 10:21!9 +MRK 10:21!10 +MRK 10:21!11 +MRK 10:21!12 +MRK 10:21!13 +MRK 10:21!14 +MRK 10:21!15 +MRK 10:21!16 +MRK 10:21!17 +MRK 10:21!18 +MRK 10:21!19 +MRK 10:21!20 +MRK 10:21!21 +MRK 10:21!22 +MRK 10:21!23 +MRK 10:21!24 +MRK 10:21!25 +MRK 10:21!26 +MRK 10:21!27 +MRK 10:21!28 +MRK 10:21!29 +MRK 10:21!30 +MRK 10:22!2 +MRK 10:22!1 +MRK 10:22!3 +MRK 10:22!4 +MRK 10:22!5 +MRK 10:22!6 +MRK 10:22!7 +MRK 10:22!8 +MRK 10:22!10 +MRK 10:22!9 +MRK 10:22!11 +MRK 10:22!12 +MRK 10:22!13 +MRK 10:23!1 +MRK 10:23!2 +MRK 10:23!3 +MRK 10:23!4 +MRK 10:23!5 +MRK 10:23!6 +MRK 10:23!7 +MRK 10:23!8 +MRK 10:23!9 +MRK 10:23!10 +MRK 10:23!11 +MRK 10:23!12 +MRK 10:23!13 +MRK 10:23!14 +MRK 10:23!15 +MRK 10:23!16 +MRK 10:23!17 +MRK 10:23!18 +MRK 10:23!19 +MRK 10:23!20 +MRK 10:24!2 +MRK 10:24!1 +MRK 10:24!3 +MRK 10:24!4 +MRK 10:24!5 +MRK 10:24!6 +MRK 10:24!7 +MRK 10:24!8 +MRK 10:24!10 +MRK 10:24!9 +MRK 10:24!11 +MRK 10:24!12 +MRK 10:24!13 +MRK 10:24!14 +MRK 10:24!15 +MRK 10:24!16 +MRK 10:24!17 +MRK 10:24!18 +MRK 10:24!19 +MRK 10:24!20 +MRK 10:24!21 +MRK 10:24!22 +MRK 10:24!23 +MRK 10:24!24 +MRK 10:24!25 +MRK 10:25!1 +MRK 10:25!2 +MRK 10:25!3 +MRK 10:25!4 +MRK 10:25!5 +MRK 10:25!6 +MRK 10:25!7 +MRK 10:25!8 +MRK 10:25!9 +MRK 10:25!10 +MRK 10:25!11 +MRK 10:25!12 +MRK 10:25!13 +MRK 10:25!14 +MRK 10:25!15 +MRK 10:25!16 +MRK 10:25!17 +MRK 10:26!2 +MRK 10:26!1 +MRK 10:26!3 +MRK 10:26!4 +MRK 10:26!5 +MRK 10:26!6 +MRK 10:26!7 +MRK 10:26!8 +MRK 10:26!9 +MRK 10:26!10 +MRK 10:26!11 +MRK 10:27!1 +MRK 10:27!2 +MRK 10:27!3 +MRK 10:27!4 +MRK 10:27!5 +MRK 10:27!6 +MRK 10:27!7 +MRK 10:27!8 +MRK 10:27!9 +MRK 10:27!10 +MRK 10:27!11 +MRK 10:27!12 +MRK 10:27!14 +MRK 10:27!13 +MRK 10:27!15 +MRK 10:27!16 +MRK 10:27!17 +MRK 10:27!18 +MRK 10:28!1 +MRK 10:28!3 +MRK 10:28!4 +MRK 10:28!2 +MRK 10:28!5 +MRK 10:28!6 +MRK 10:28!7 +MRK 10:28!8 +MRK 10:28!9 +MRK 10:28!10 +MRK 10:28!11 +MRK 10:28!12 +MRK 10:29!1 +MRK 10:29!2 +MRK 10:29!3 +MRK 10:29!4 +MRK 10:29!5 +MRK 10:29!6 +MRK 10:29!7 +MRK 10:29!8 +MRK 10:29!9 +MRK 10:29!10 +MRK 10:29!11 +MRK 10:29!12 +MRK 10:29!13 +MRK 10:29!14 +MRK 10:29!15 +MRK 10:29!16 +MRK 10:29!17 +MRK 10:29!18 +MRK 10:29!19 +MRK 10:29!20 +MRK 10:29!21 +MRK 10:29!22 +MRK 10:29!23 +MRK 10:29!24 +MRK 10:29!25 +MRK 10:29!26 +MRK 10:29!27 +MRK 10:29!28 +MRK 10:29!29 +MRK 10:30!1 +MRK 10:30!2 +MRK 10:30!3 +MRK 10:30!5 +MRK 10:30!6 +MRK 10:30!7 +MRK 10:30!8 +MRK 10:30!9 +MRK 10:30!4 +MRK 10:30!10 +MRK 10:30!11 +MRK 10:30!12 +MRK 10:30!13 +MRK 10:30!14 +MRK 10:30!15 +MRK 10:30!16 +MRK 10:30!17 +MRK 10:30!18 +MRK 10:30!19 +MRK 10:30!20 +MRK 10:30!21 +MRK 10:30!22 +MRK 10:30!23 +MRK 10:30!24 +MRK 10:30!25 +MRK 10:30!26 +MRK 10:30!27 +MRK 10:30!28 +MRK 10:30!29 +MRK 10:30!30 +MRK 10:31!2 +MRK 10:31!1 +MRK 10:31!4 +MRK 10:31!3 +MRK 10:31!5 +MRK 10:31!6 +MRK 10:31!7 +MRK 10:31!8 +MRK 10:31!9 +MRK 10:32!2 +MRK 10:32!1 +MRK 10:32!3 +MRK 10:32!4 +MRK 10:32!5 +MRK 10:32!6 +MRK 10:32!7 +MRK 10:32!8 +MRK 10:32!9 +MRK 10:32!10 +MRK 10:32!11 +MRK 10:32!12 +MRK 10:32!13 +MRK 10:32!14 +MRK 10:32!15 +MRK 10:32!16 +MRK 10:32!18 +MRK 10:32!17 +MRK 10:32!19 +MRK 10:32!20 +MRK 10:32!21 +MRK 10:32!22 +MRK 10:32!23 +MRK 10:32!24 +MRK 10:32!25 +MRK 10:32!26 +MRK 10:32!27 +MRK 10:32!28 +MRK 10:32!29 +MRK 10:32!30 +MRK 10:32!31 +MRK 10:32!32 +MRK 10:33!1 +MRK 10:33!2 +MRK 10:33!3 +MRK 10:33!4 +MRK 10:33!5 +MRK 10:33!6 +MRK 10:33!7 +MRK 10:33!8 +MRK 10:33!9 +MRK 10:33!10 +MRK 10:33!11 +MRK 10:33!12 +MRK 10:33!13 +MRK 10:33!14 +MRK 10:33!15 +MRK 10:33!16 +MRK 10:33!17 +MRK 10:33!18 +MRK 10:33!19 +MRK 10:33!20 +MRK 10:33!21 +MRK 10:33!22 +MRK 10:33!23 +MRK 10:33!24 +MRK 10:33!25 +MRK 10:34!1 +MRK 10:34!2 +MRK 10:34!3 +MRK 10:34!4 +MRK 10:34!5 +MRK 10:34!6 +MRK 10:34!7 +MRK 10:34!8 +MRK 10:34!9 +MRK 10:34!10 +MRK 10:34!11 +MRK 10:34!12 +MRK 10:34!13 +MRK 10:34!14 +MRK 10:34!15 +MRK 10:34!16 +MRK 10:35!1 +MRK 10:35!2 +MRK 10:35!3 +MRK 10:35!4 +MRK 10:35!5 +MRK 10:35!6 +MRK 10:35!7 +MRK 10:35!8 +MRK 10:35!9 +MRK 10:35!10 +MRK 10:35!11 +MRK 10:35!12 +MRK 10:35!13 +MRK 10:35!14 +MRK 10:35!16 +MRK 10:35!15 +MRK 10:35!17 +MRK 10:35!18 +MRK 10:35!19 +MRK 10:35!20 +MRK 10:36!2 +MRK 10:36!1 +MRK 10:36!3 +MRK 10:36!4 +MRK 10:36!6 +MRK 10:36!5 +MRK 10:36!7 +MRK 10:36!8 +MRK 10:36!9 +MRK 10:37!2 +MRK 10:37!1 +MRK 10:37!3 +MRK 10:37!4 +MRK 10:37!5 +MRK 10:37!6 +MRK 10:37!7 +MRK 10:37!8 +MRK 10:37!10 +MRK 10:37!9 +MRK 10:37!11 +MRK 10:37!12 +MRK 10:37!13 +MRK 10:37!14 +MRK 10:37!15 +MRK 10:37!16 +MRK 10:37!17 +MRK 10:37!18 +MRK 10:37!19 +MRK 10:37!20 +MRK 10:38!2 +MRK 10:38!1 +MRK 10:38!3 +MRK 10:38!4 +MRK 10:38!5 +MRK 10:38!6 +MRK 10:38!7 +MRK 10:38!8 +MRK 10:38!9 +MRK 10:38!10 +MRK 10:38!11 +MRK 10:38!12 +MRK 10:38!13 +MRK 10:38!14 +MRK 10:38!15 +MRK 10:38!16 +MRK 10:38!17 +MRK 10:38!18 +MRK 10:38!19 +MRK 10:38!20 +MRK 10:38!21 +MRK 10:38!22 +MRK 10:38!23 +MRK 10:39!2 +MRK 10:39!1 +MRK 10:39!3 +MRK 10:39!4 +MRK 10:39!5 +MRK 10:39!7 +MRK 10:39!6 +MRK 10:39!8 +MRK 10:39!9 +MRK 10:39!10 +MRK 10:39!11 +MRK 10:39!12 +MRK 10:39!13 +MRK 10:39!14 +MRK 10:39!15 +MRK 10:39!16 +MRK 10:39!17 +MRK 10:39!18 +MRK 10:39!19 +MRK 10:39!20 +MRK 10:39!21 +MRK 10:39!22 +MRK 10:39!23 +MRK 10:40!2 +MRK 10:40!1 +MRK 10:40!3 +MRK 10:40!4 +MRK 10:40!5 +MRK 10:40!6 +MRK 10:40!7 +MRK 10:40!8 +MRK 10:40!9 +MRK 10:40!10 +MRK 10:40!11 +MRK 10:40!12 +MRK 10:40!13 +MRK 10:40!14 +MRK 10:40!15 +MRK 10:40!16 +MRK 10:41!1 +MRK 10:41!2 +MRK 10:41!3 +MRK 10:41!4 +MRK 10:41!5 +MRK 10:41!6 +MRK 10:41!7 +MRK 10:41!8 +MRK 10:41!9 +MRK 10:41!10 +MRK 10:42!1 +MRK 10:42!2 +MRK 10:42!3 +MRK 10:42!4 +MRK 10:42!5 +MRK 10:42!6 +MRK 10:42!7 +MRK 10:42!8 +MRK 10:42!9 +MRK 10:42!10 +MRK 10:42!11 +MRK 10:42!12 +MRK 10:42!13 +MRK 10:42!14 +MRK 10:42!15 +MRK 10:42!16 +MRK 10:42!17 +MRK 10:42!18 +MRK 10:42!19 +MRK 10:42!20 +MRK 10:42!21 +MRK 10:42!22 +MRK 10:43!3 +MRK 10:43!1 +MRK 10:43!2 +MRK 10:43!4 +MRK 10:43!5 +MRK 10:43!6 +MRK 10:43!7 +MRK 10:43!9 +MRK 10:43!8 +MRK 10:43!10 +MRK 10:43!11 +MRK 10:43!12 +MRK 10:43!13 +MRK 10:43!14 +MRK 10:43!15 +MRK 10:43!16 +MRK 10:43!17 +MRK 10:44!1 +MRK 10:44!3 +MRK 10:44!2 +MRK 10:44!4 +MRK 10:44!5 +MRK 10:44!6 +MRK 10:44!7 +MRK 10:44!8 +MRK 10:44!9 +MRK 10:44!10 +MRK 10:44!11 +MRK 10:45!2 +MRK 10:45!1 +MRK 10:45!3 +MRK 10:45!4 +MRK 10:45!5 +MRK 10:45!6 +MRK 10:45!7 +MRK 10:45!8 +MRK 10:45!9 +MRK 10:45!10 +MRK 10:45!11 +MRK 10:45!12 +MRK 10:45!13 +MRK 10:45!14 +MRK 10:45!15 +MRK 10:45!16 +MRK 10:45!17 +MRK 10:45!18 +MRK 10:45!19 +MRK 10:46!1 +MRK 10:46!2 +MRK 10:46!3 +MRK 10:46!4 +MRK 10:46!5 +MRK 10:46!6 +MRK 10:46!7 +MRK 10:46!8 +MRK 10:46!9 +MRK 10:46!10 +MRK 10:46!11 +MRK 10:46!12 +MRK 10:46!13 +MRK 10:46!14 +MRK 10:46!15 +MRK 10:46!16 +MRK 10:46!17 +MRK 10:46!18 +MRK 10:46!19 +MRK 10:46!20 +MRK 10:46!21 +MRK 10:46!22 +MRK 10:46!23 +MRK 10:46!24 +MRK 10:46!25 +MRK 10:46!26 +MRK 10:47!1 +MRK 10:47!2 +MRK 10:47!3 +MRK 10:47!4 +MRK 10:47!5 +MRK 10:47!6 +MRK 10:47!7 +MRK 10:47!8 +MRK 10:47!9 +MRK 10:47!10 +MRK 10:47!11 +MRK 10:47!12 +MRK 10:47!13 +MRK 10:47!14 +MRK 10:47!15 +MRK 10:47!16 +MRK 10:48!1 +MRK 10:48!2 +MRK 10:48!3 +MRK 10:48!4 +MRK 10:48!5 +MRK 10:48!6 +MRK 10:48!8 +MRK 10:48!7 +MRK 10:48!9 +MRK 10:48!10 +MRK 10:48!11 +MRK 10:48!12 +MRK 10:48!13 +MRK 10:48!14 +MRK 10:48!15 +MRK 10:49!1 +MRK 10:49!2 +MRK 10:49!3 +MRK 10:49!4 +MRK 10:49!5 +MRK 10:49!6 +MRK 10:49!7 +MRK 10:49!8 +MRK 10:49!9 +MRK 10:49!10 +MRK 10:49!11 +MRK 10:49!12 +MRK 10:49!13 +MRK 10:49!14 +MRK 10:49!15 +MRK 10:49!16 +MRK 10:49!17 +MRK 10:50!2 +MRK 10:50!1 +MRK 10:50!3 +MRK 10:50!4 +MRK 10:50!5 +MRK 10:50!6 +MRK 10:50!7 +MRK 10:50!8 +MRK 10:50!9 +MRK 10:50!10 +MRK 10:50!11 +MRK 10:51!1 +MRK 10:51!2 +MRK 10:51!3 +MRK 10:51!4 +MRK 10:51!5 +MRK 10:51!6 +MRK 10:51!7 +MRK 10:51!8 +MRK 10:51!10 +MRK 10:51!9 +MRK 10:51!12 +MRK 10:51!11 +MRK 10:51!13 +MRK 10:51!14 +MRK 10:51!15 +MRK 10:51!16 +MRK 10:51!17 +MRK 10:51!18 +MRK 10:52!1 +MRK 10:52!2 +MRK 10:52!3 +MRK 10:52!4 +MRK 10:52!5 +MRK 10:52!6 +MRK 10:52!7 +MRK 10:52!8 +MRK 10:52!9 +MRK 10:52!10 +MRK 10:52!11 +MRK 10:52!12 +MRK 10:52!13 +MRK 10:52!14 +MRK 10:52!15 +MRK 10:52!16 +MRK 10:52!17 +MRK 10:52!18 +MRK 10:52!19 +MRK 10:52!20 +MRK 11:1!1 +MRK 11:1!2 +MRK 11:1!3 +MRK 11:1!4 +MRK 11:1!5 +MRK 11:1!6 +MRK 11:1!7 +MRK 11:1!8 +MRK 11:1!9 +MRK 11:1!10 +MRK 11:1!11 +MRK 11:1!12 +MRK 11:1!13 +MRK 11:1!14 +MRK 11:1!15 +MRK 11:1!16 +MRK 11:1!17 +MRK 11:1!18 +MRK 11:1!19 +MRK 11:2!1 +MRK 11:2!2 +MRK 11:2!3 +MRK 11:2!4 +MRK 11:2!5 +MRK 11:2!6 +MRK 11:2!7 +MRK 11:2!8 +MRK 11:2!9 +MRK 11:2!10 +MRK 11:2!11 +MRK 11:2!12 +MRK 11:2!13 +MRK 11:2!14 +MRK 11:2!15 +MRK 11:2!16 +MRK 11:2!18 +MRK 11:2!17 +MRK 11:2!19 +MRK 11:2!20 +MRK 11:2!21 +MRK 11:2!23 +MRK 11:2!22 +MRK 11:2!24 +MRK 11:2!25 +MRK 11:2!26 +MRK 11:2!27 +MRK 11:2!28 +MRK 11:3!1 +MRK 11:3!2 +MRK 11:3!3 +MRK 11:3!4 +MRK 11:3!5 +MRK 11:3!6 +MRK 11:3!7 +MRK 11:3!8 +MRK 11:3!9 +MRK 11:3!10 +MRK 11:3!11 +MRK 11:3!12 +MRK 11:3!13 +MRK 11:3!14 +MRK 11:3!15 +MRK 11:3!16 +MRK 11:3!17 +MRK 11:3!18 +MRK 11:3!19 +MRK 11:3!20 +MRK 11:4!1 +MRK 11:4!2 +MRK 11:4!3 +MRK 11:4!4 +MRK 11:4!5 +MRK 11:4!6 +MRK 11:4!7 +MRK 11:4!8 +MRK 11:4!9 +MRK 11:4!10 +MRK 11:4!11 +MRK 11:4!12 +MRK 11:4!13 +MRK 11:4!14 +MRK 11:4!15 +MRK 11:5!1 +MRK 11:5!2 +MRK 11:5!3 +MRK 11:5!4 +MRK 11:5!5 +MRK 11:5!6 +MRK 11:5!7 +MRK 11:5!8 +MRK 11:5!9 +MRK 11:5!10 +MRK 11:5!11 +MRK 11:5!12 +MRK 11:6!2 +MRK 11:6!1 +MRK 11:6!3 +MRK 11:6!4 +MRK 11:6!5 +MRK 11:6!6 +MRK 11:6!7 +MRK 11:6!8 +MRK 11:6!9 +MRK 11:6!10 +MRK 11:6!11 +MRK 11:7!1 +MRK 11:7!2 +MRK 11:7!3 +MRK 11:7!4 +MRK 11:7!5 +MRK 11:7!6 +MRK 11:7!7 +MRK 11:7!8 +MRK 11:7!9 +MRK 11:7!10 +MRK 11:7!11 +MRK 11:7!12 +MRK 11:7!13 +MRK 11:7!14 +MRK 11:7!15 +MRK 11:7!16 +MRK 11:7!17 +MRK 11:8!1 +MRK 11:8!2 +MRK 11:8!3 +MRK 11:8!4 +MRK 11:8!5 +MRK 11:8!6 +MRK 11:8!7 +MRK 11:8!8 +MRK 11:8!9 +MRK 11:8!11 +MRK 11:8!10 +MRK 11:8!12 +MRK 11:8!13 +MRK 11:8!14 +MRK 11:8!15 +MRK 11:8!16 +MRK 11:9!1 +MRK 11:9!2 +MRK 11:9!3 +MRK 11:9!4 +MRK 11:9!5 +MRK 11:9!6 +MRK 11:9!7 +MRK 11:9!8 +MRK 11:9!9 +MRK 11:9!10 +MRK 11:9!11 +MRK 11:9!12 +MRK 11:9!13 +MRK 11:9!14 +MRK 11:10!1 +MRK 11:10!2 +MRK 11:10!3 +MRK 11:10!4 +MRK 11:10!5 +MRK 11:10!6 +MRK 11:10!7 +MRK 11:10!8 +MRK 11:10!9 +MRK 11:10!10 +MRK 11:10!11 +MRK 11:10!12 +MRK 11:11!1 +MRK 11:11!2 +MRK 11:11!3 +MRK 11:11!4 +MRK 11:11!5 +MRK 11:11!6 +MRK 11:11!7 +MRK 11:11!8 +MRK 11:11!11 +MRK 11:11!12 +MRK 11:11!13 +MRK 11:11!14 +MRK 11:11!15 +MRK 11:11!9 +MRK 11:11!10 +MRK 11:11!16 +MRK 11:11!17 +MRK 11:11!18 +MRK 11:11!19 +MRK 11:11!20 +MRK 11:11!21 +MRK 11:12!1 +MRK 11:12!2 +MRK 11:12!3 +MRK 11:12!4 +MRK 11:12!5 +MRK 11:12!6 +MRK 11:12!7 +MRK 11:12!8 +MRK 11:13!1 +MRK 11:13!2 +MRK 11:13!4 +MRK 11:13!5 +MRK 11:13!3 +MRK 11:13!6 +MRK 11:13!7 +MRK 11:13!8 +MRK 11:13!10 +MRK 11:13!9 +MRK 11:13!11 +MRK 11:13!12 +MRK 11:13!13 +MRK 11:13!14 +MRK 11:13!15 +MRK 11:13!16 +MRK 11:13!17 +MRK 11:13!18 +MRK 11:13!19 +MRK 11:13!20 +MRK 11:13!21 +MRK 11:13!22 +MRK 11:13!23 +MRK 11:13!25 +MRK 11:13!24 +MRK 11:13!26 +MRK 11:13!27 +MRK 11:13!28 +MRK 11:13!29 +MRK 11:14!1 +MRK 11:14!2 +MRK 11:14!3 +MRK 11:14!4 +MRK 11:14!5 +MRK 11:14!6 +MRK 11:14!7 +MRK 11:14!8 +MRK 11:14!9 +MRK 11:14!10 +MRK 11:14!11 +MRK 11:14!12 +MRK 11:14!13 +MRK 11:14!14 +MRK 11:14!15 +MRK 11:14!16 +MRK 11:14!17 +MRK 11:14!18 +MRK 11:15!1 +MRK 11:15!2 +MRK 11:15!3 +MRK 11:15!4 +MRK 11:15!5 +MRK 11:15!6 +MRK 11:15!7 +MRK 11:15!8 +MRK 11:15!9 +MRK 11:15!10 +MRK 11:15!11 +MRK 11:15!12 +MRK 11:15!13 +MRK 11:15!14 +MRK 11:15!15 +MRK 11:15!16 +MRK 11:15!17 +MRK 11:15!18 +MRK 11:15!19 +MRK 11:15!20 +MRK 11:15!21 +MRK 11:15!22 +MRK 11:15!23 +MRK 11:15!24 +MRK 11:15!25 +MRK 11:15!26 +MRK 11:15!27 +MRK 11:15!28 +MRK 11:15!29 +MRK 11:15!30 +MRK 11:15!31 +MRK 11:15!32 +MRK 11:16!1 +MRK 11:16!2 +MRK 11:16!3 +MRK 11:16!4 +MRK 11:16!5 +MRK 11:16!6 +MRK 11:16!7 +MRK 11:16!8 +MRK 11:16!9 +MRK 11:16!10 +MRK 11:17!1 +MRK 11:17!2 +MRK 11:17!3 +MRK 11:17!4 +MRK 11:17!5 +MRK 11:17!6 +MRK 11:17!7 +MRK 11:17!8 +MRK 11:17!9 +MRK 11:17!10 +MRK 11:17!11 +MRK 11:17!12 +MRK 11:17!13 +MRK 11:17!14 +MRK 11:17!15 +MRK 11:17!16 +MRK 11:17!17 +MRK 11:17!19 +MRK 11:17!18 +MRK 11:17!20 +MRK 11:17!21 +MRK 11:17!22 +MRK 11:17!23 +MRK 11:18!1 +MRK 11:18!2 +MRK 11:18!3 +MRK 11:18!4 +MRK 11:18!5 +MRK 11:18!6 +MRK 11:18!7 +MRK 11:18!8 +MRK 11:18!9 +MRK 11:18!10 +MRK 11:18!11 +MRK 11:18!12 +MRK 11:18!14 +MRK 11:18!13 +MRK 11:18!15 +MRK 11:18!17 +MRK 11:18!16 +MRK 11:18!18 +MRK 11:18!19 +MRK 11:18!20 +MRK 11:18!21 +MRK 11:18!22 +MRK 11:18!23 +MRK 11:18!24 +MRK 11:19!1 +MRK 11:19!2 +MRK 11:19!3 +MRK 11:19!4 +MRK 11:19!5 +MRK 11:19!6 +MRK 11:19!7 +MRK 11:19!8 +MRK 11:20!1 +MRK 11:20!2 +MRK 11:20!3 +MRK 11:20!4 +MRK 11:20!5 +MRK 11:20!6 +MRK 11:20!7 +MRK 11:20!8 +MRK 11:20!9 +MRK 11:21!1 +MRK 11:21!2 +MRK 11:21!3 +MRK 11:21!4 +MRK 11:21!5 +MRK 11:21!6 +MRK 11:21!7 +MRK 11:21!8 +MRK 11:21!9 +MRK 11:21!10 +MRK 11:21!11 +MRK 11:21!12 +MRK 11:21!13 +MRK 11:22!1 +MRK 11:22!2 +MRK 11:22!3 +MRK 11:22!4 +MRK 11:22!5 +MRK 11:22!6 +MRK 11:22!7 +MRK 11:22!8 +MRK 11:22!9 +MRK 11:23!1 +MRK 11:23!2 +MRK 11:23!3 +MRK 11:23!4 +MRK 11:23!6 +MRK 11:23!5 +MRK 11:23!7 +MRK 11:23!8 +MRK 11:23!9 +MRK 11:23!10 +MRK 11:23!11 +MRK 11:23!12 +MRK 11:23!13 +MRK 11:23!14 +MRK 11:23!15 +MRK 11:23!16 +MRK 11:23!17 +MRK 11:23!18 +MRK 11:23!19 +MRK 11:23!20 +MRK 11:23!21 +MRK 11:23!22 +MRK 11:23!23 +MRK 11:23!24 +MRK 11:23!25 +MRK 11:23!26 +MRK 11:23!27 +MRK 11:23!28 +MRK 11:23!29 +MRK 11:23!30 +MRK 11:23!31 +MRK 11:24!1 +MRK 11:24!2 +MRK 11:24!3 +MRK 11:24!4 +MRK 11:24!5 +MRK 11:24!6 +MRK 11:24!7 +MRK 11:24!8 +MRK 11:24!9 +MRK 11:24!10 +MRK 11:24!11 +MRK 11:24!12 +MRK 11:24!13 +MRK 11:24!14 +MRK 11:24!15 +MRK 11:25!1 +MRK 11:25!2 +MRK 11:25!3 +MRK 11:25!4 +MRK 11:25!5 +MRK 11:25!6 +MRK 11:25!7 +MRK 11:25!8 +MRK 11:25!9 +MRK 11:25!10 +MRK 11:25!11 +MRK 11:25!12 +MRK 11:25!13 +MRK 11:25!14 +MRK 11:25!15 +MRK 11:25!16 +MRK 11:25!17 +MRK 11:25!18 +MRK 11:25!19 +MRK 11:25!20 +MRK 11:25!21 +MRK 11:25!22 +MRK 11:25!23 +MRK 11:25!24 +MRK 11:27!1 +MRK 11:27!2 +MRK 11:27!3 +MRK 11:27!4 +MRK 11:27!5 +MRK 11:27!6 +MRK 11:27!7 +MRK 11:27!8 +MRK 11:27!9 +MRK 11:27!10 +MRK 11:27!11 +MRK 11:27!12 +MRK 11:27!13 +MRK 11:27!14 +MRK 11:27!15 +MRK 11:27!16 +MRK 11:27!17 +MRK 11:27!18 +MRK 11:27!19 +MRK 11:27!20 +MRK 11:27!21 +MRK 11:27!22 +MRK 11:28!1 +MRK 11:28!2 +MRK 11:28!3 +MRK 11:28!4 +MRK 11:28!5 +MRK 11:28!6 +MRK 11:28!7 +MRK 11:28!8 +MRK 11:28!9 +MRK 11:28!10 +MRK 11:28!11 +MRK 11:28!12 +MRK 11:28!13 +MRK 11:28!14 +MRK 11:28!15 +MRK 11:28!16 +MRK 11:28!17 +MRK 11:28!18 +MRK 11:29!2 +MRK 11:29!1 +MRK 11:29!3 +MRK 11:29!4 +MRK 11:29!5 +MRK 11:29!6 +MRK 11:29!7 +MRK 11:29!8 +MRK 11:29!9 +MRK 11:29!10 +MRK 11:29!11 +MRK 11:29!12 +MRK 11:29!13 +MRK 11:29!14 +MRK 11:29!15 +MRK 11:29!16 +MRK 11:29!17 +MRK 11:29!18 +MRK 11:29!19 +MRK 11:29!20 +MRK 11:30!1 +MRK 11:30!2 +MRK 11:30!3 +MRK 11:30!4 +MRK 11:30!5 +MRK 11:30!6 +MRK 11:30!7 +MRK 11:30!8 +MRK 11:30!9 +MRK 11:30!10 +MRK 11:30!11 +MRK 11:30!12 +MRK 11:31!1 +MRK 11:31!2 +MRK 11:31!3 +MRK 11:31!4 +MRK 11:31!5 +MRK 11:31!6 +MRK 11:31!7 +MRK 11:31!8 +MRK 11:31!9 +MRK 11:31!10 +MRK 11:31!13 +MRK 11:31!11 +MRK 11:31!12 +MRK 11:31!14 +MRK 11:31!15 +MRK 11:31!16 +MRK 11:32!1 +MRK 11:32!2 +MRK 11:32!3 +MRK 11:32!4 +MRK 11:32!5 +MRK 11:32!6 +MRK 11:32!7 +MRK 11:32!9 +MRK 11:32!8 +MRK 11:32!10 +MRK 11:32!11 +MRK 11:32!12 +MRK 11:32!14 +MRK 11:32!13 +MRK 11:32!15 +MRK 11:32!16 +MRK 11:33!1 +MRK 11:33!2 +MRK 11:33!3 +MRK 11:33!4 +MRK 11:33!5 +MRK 11:33!6 +MRK 11:33!7 +MRK 11:33!8 +MRK 11:33!9 +MRK 11:33!10 +MRK 11:33!11 +MRK 11:33!12 +MRK 11:33!13 +MRK 11:33!14 +MRK 11:33!15 +MRK 11:33!16 +MRK 11:33!17 +MRK 11:33!18 +MRK 11:33!19 +MRK 11:33!20 +MRK 11:33!21 +MRK 12:1!1 +MRK 12:1!2 +MRK 12:1!3 +MRK 12:1!4 +MRK 12:1!5 +MRK 12:1!6 +MRK 12:1!7 +MRK 12:1!8 +MRK 12:1!9 +MRK 12:1!10 +MRK 12:1!11 +MRK 12:1!12 +MRK 12:1!13 +MRK 12:1!14 +MRK 12:1!15 +MRK 12:1!16 +MRK 12:1!17 +MRK 12:1!18 +MRK 12:1!19 +MRK 12:1!20 +MRK 12:1!21 +MRK 12:1!22 +MRK 12:1!23 +MRK 12:1!24 +MRK 12:2!1 +MRK 12:2!2 +MRK 12:2!3 +MRK 12:2!4 +MRK 12:2!5 +MRK 12:2!6 +MRK 12:2!7 +MRK 12:2!8 +MRK 12:2!9 +MRK 12:2!10 +MRK 12:2!11 +MRK 12:2!12 +MRK 12:2!13 +MRK 12:2!14 +MRK 12:2!15 +MRK 12:2!16 +MRK 12:2!17 +MRK 12:2!18 +MRK 12:3!1 +MRK 12:3!2 +MRK 12:3!3 +MRK 12:3!4 +MRK 12:3!5 +MRK 12:3!6 +MRK 12:3!7 +MRK 12:4!1 +MRK 12:4!2 +MRK 12:4!3 +MRK 12:4!4 +MRK 12:4!5 +MRK 12:4!6 +MRK 12:4!7 +MRK 12:4!8 +MRK 12:4!9 +MRK 12:4!10 +MRK 12:4!11 +MRK 12:5!1 +MRK 12:5!2 +MRK 12:5!3 +MRK 12:5!4 +MRK 12:5!5 +MRK 12:5!6 +MRK 12:5!7 +MRK 12:5!8 +MRK 12:5!10 +MRK 12:5!9 +MRK 12:5!11 +MRK 12:5!13 +MRK 12:5!12 +MRK 12:5!14 +MRK 12:6!1 +MRK 12:6!3 +MRK 12:6!2 +MRK 12:6!4 +MRK 12:6!5 +MRK 12:6!6 +MRK 12:6!7 +MRK 12:6!8 +MRK 12:6!9 +MRK 12:6!10 +MRK 12:6!11 +MRK 12:6!12 +MRK 12:6!13 +MRK 12:6!14 +MRK 12:6!15 +MRK 12:6!16 +MRK 12:7!2 +MRK 12:7!1 +MRK 12:7!3 +MRK 12:7!4 +MRK 12:7!5 +MRK 12:7!6 +MRK 12:7!7 +MRK 12:7!8 +MRK 12:7!9 +MRK 12:7!10 +MRK 12:7!11 +MRK 12:7!12 +MRK 12:7!13 +MRK 12:7!14 +MRK 12:7!15 +MRK 12:7!16 +MRK 12:7!17 +MRK 12:7!18 +MRK 12:7!19 +MRK 12:7!20 +MRK 12:8!1 +MRK 12:8!2 +MRK 12:8!3 +MRK 12:8!4 +MRK 12:8!5 +MRK 12:8!6 +MRK 12:8!7 +MRK 12:8!8 +MRK 12:8!9 +MRK 12:8!10 +MRK 12:9!1 +MRK 12:9!2 +MRK 12:9!3 +MRK 12:9!4 +MRK 12:9!5 +MRK 12:9!6 +MRK 12:9!7 +MRK 12:9!8 +MRK 12:9!9 +MRK 12:9!10 +MRK 12:9!11 +MRK 12:9!12 +MRK 12:9!13 +MRK 12:9!14 +MRK 12:9!15 +MRK 12:9!16 +MRK 12:10!1 +MRK 12:10!2 +MRK 12:10!3 +MRK 12:10!4 +MRK 12:10!5 +MRK 12:10!6 +MRK 12:10!7 +MRK 12:10!8 +MRK 12:10!9 +MRK 12:10!10 +MRK 12:10!11 +MRK 12:10!12 +MRK 12:10!13 +MRK 12:10!14 +MRK 12:10!15 +MRK 12:11!1 +MRK 12:11!2 +MRK 12:11!3 +MRK 12:11!4 +MRK 12:11!5 +MRK 12:11!6 +MRK 12:11!7 +MRK 12:11!8 +MRK 12:11!9 +MRK 12:11!10 +MRK 12:12!1 +MRK 12:12!2 +MRK 12:12!3 +MRK 12:12!4 +MRK 12:12!5 +MRK 12:12!6 +MRK 12:12!7 +MRK 12:12!8 +MRK 12:12!10 +MRK 12:12!9 +MRK 12:12!11 +MRK 12:12!12 +MRK 12:12!13 +MRK 12:12!14 +MRK 12:12!15 +MRK 12:12!16 +MRK 12:12!17 +MRK 12:12!18 +MRK 12:12!19 +MRK 12:12!20 +MRK 12:13!1 +MRK 12:13!2 +MRK 12:13!3 +MRK 12:13!4 +MRK 12:13!5 +MRK 12:13!6 +MRK 12:13!7 +MRK 12:13!8 +MRK 12:13!9 +MRK 12:13!10 +MRK 12:13!11 +MRK 12:13!12 +MRK 12:13!13 +MRK 12:13!14 +MRK 12:14!1 +MRK 12:14!2 +MRK 12:14!3 +MRK 12:14!4 +MRK 12:14!5 +MRK 12:14!6 +MRK 12:14!7 +MRK 12:14!8 +MRK 12:14!9 +MRK 12:14!10 +MRK 12:14!11 +MRK 12:14!12 +MRK 12:14!13 +MRK 12:14!14 +MRK 12:14!15 +MRK 12:14!17 +MRK 12:14!16 +MRK 12:14!18 +MRK 12:14!19 +MRK 12:14!20 +MRK 12:14!21 +MRK 12:14!22 +MRK 12:14!23 +MRK 12:14!24 +MRK 12:14!25 +MRK 12:14!26 +MRK 12:14!27 +MRK 12:14!28 +MRK 12:14!29 +MRK 12:14!30 +MRK 12:14!31 +MRK 12:14!32 +MRK 12:14!33 +MRK 12:14!34 +MRK 12:14!35 +MRK 12:14!36 +MRK 12:14!37 +MRK 12:14!38 +MRK 12:14!39 +MRK 12:15!2 +MRK 12:15!1 +MRK 12:15!3 +MRK 12:15!4 +MRK 12:15!5 +MRK 12:15!6 +MRK 12:15!7 +MRK 12:15!8 +MRK 12:15!9 +MRK 12:15!10 +MRK 12:15!11 +MRK 12:15!12 +MRK 12:15!13 +MRK 12:15!14 +MRK 12:15!15 +MRK 12:15!16 +MRK 12:16!2 +MRK 12:16!1 +MRK 12:16!3 +MRK 12:16!4 +MRK 12:16!5 +MRK 12:16!6 +MRK 12:16!7 +MRK 12:16!8 +MRK 12:16!9 +MRK 12:16!10 +MRK 12:16!11 +MRK 12:16!12 +MRK 12:16!13 +MRK 12:16!15 +MRK 12:16!14 +MRK 12:16!16 +MRK 12:16!17 +MRK 12:16!18 +MRK 12:17!2 +MRK 12:17!1 +MRK 12:17!3 +MRK 12:17!4 +MRK 12:17!5 +MRK 12:17!6 +MRK 12:17!7 +MRK 12:17!8 +MRK 12:17!9 +MRK 12:17!10 +MRK 12:17!11 +MRK 12:17!12 +MRK 12:17!13 +MRK 12:17!14 +MRK 12:17!15 +MRK 12:17!16 +MRK 12:17!17 +MRK 12:17!18 +MRK 12:17!19 +MRK 12:18!1 +MRK 12:18!2 +MRK 12:18!4 +MRK 12:18!5 +MRK 12:18!3 +MRK 12:18!6 +MRK 12:18!7 +MRK 12:18!8 +MRK 12:18!9 +MRK 12:18!10 +MRK 12:18!11 +MRK 12:18!12 +MRK 12:18!13 +MRK 12:18!14 +MRK 12:19!1 +MRK 12:19!2 +MRK 12:19!3 +MRK 12:19!4 +MRK 12:19!5 +MRK 12:19!6 +MRK 12:19!7 +MRK 12:19!8 +MRK 12:19!9 +MRK 12:19!10 +MRK 12:19!11 +MRK 12:19!12 +MRK 12:19!13 +MRK 12:19!14 +MRK 12:19!15 +MRK 12:19!16 +MRK 12:19!17 +MRK 12:19!18 +MRK 12:19!19 +MRK 12:19!20 +MRK 12:19!21 +MRK 12:19!22 +MRK 12:19!23 +MRK 12:19!24 +MRK 12:19!25 +MRK 12:19!26 +MRK 12:19!27 +MRK 12:19!28 +MRK 12:19!29 +MRK 12:20!1 +MRK 12:20!2 +MRK 12:20!3 +MRK 12:20!4 +MRK 12:20!5 +MRK 12:20!6 +MRK 12:20!7 +MRK 12:20!8 +MRK 12:20!9 +MRK 12:20!10 +MRK 12:20!11 +MRK 12:20!12 +MRK 12:20!13 +MRK 12:21!1 +MRK 12:21!2 +MRK 12:21!3 +MRK 12:21!4 +MRK 12:21!5 +MRK 12:21!6 +MRK 12:21!7 +MRK 12:21!8 +MRK 12:21!9 +MRK 12:21!10 +MRK 12:21!11 +MRK 12:21!12 +MRK 12:21!13 +MRK 12:21!14 +MRK 12:22!1 +MRK 12:22!2 +MRK 12:22!3 +MRK 12:22!4 +MRK 12:22!5 +MRK 12:22!6 +MRK 12:22!7 +MRK 12:22!8 +MRK 12:22!9 +MRK 12:22!10 +MRK 12:22!11 +MRK 12:22!12 +MRK 12:23!1 +MRK 12:23!2 +MRK 12:23!3 +MRK 12:23!4 +MRK 12:23!5 +MRK 12:23!6 +MRK 12:23!7 +MRK 12:23!9 +MRK 12:23!8 +MRK 12:23!11 +MRK 12:23!10 +MRK 12:23!12 +MRK 12:23!13 +MRK 12:23!14 +MRK 12:23!15 +MRK 12:24!1 +MRK 12:24!2 +MRK 12:24!3 +MRK 12:24!4 +MRK 12:24!5 +MRK 12:24!6 +MRK 12:24!7 +MRK 12:24!8 +MRK 12:24!9 +MRK 12:24!10 +MRK 12:24!11 +MRK 12:24!12 +MRK 12:24!13 +MRK 12:24!14 +MRK 12:24!15 +MRK 12:24!16 +MRK 12:24!17 +MRK 12:25!2 +MRK 12:25!1 +MRK 12:25!3 +MRK 12:25!4 +MRK 12:25!5 +MRK 12:25!6 +MRK 12:25!7 +MRK 12:25!8 +MRK 12:25!9 +MRK 12:25!10 +MRK 12:25!11 +MRK 12:25!12 +MRK 12:25!13 +MRK 12:25!14 +MRK 12:25!15 +MRK 12:25!16 +MRK 12:26!2 +MRK 12:26!1 +MRK 12:26!3 +MRK 12:26!4 +MRK 12:26!5 +MRK 12:26!6 +MRK 12:26!7 +MRK 12:26!8 +MRK 12:26!9 +MRK 12:26!10 +MRK 12:26!11 +MRK 12:26!12 +MRK 12:26!13 +MRK 12:26!14 +MRK 12:26!15 +MRK 12:26!16 +MRK 12:26!17 +MRK 12:26!18 +MRK 12:26!19 +MRK 12:26!20 +MRK 12:26!21 +MRK 12:26!22 +MRK 12:26!23 +MRK 12:26!24 +MRK 12:26!25 +MRK 12:26!26 +MRK 12:26!27 +MRK 12:26!28 +MRK 12:26!29 +MRK 12:26!30 +MRK 12:26!31 +MRK 12:27!1 +MRK 12:27!2 +MRK 12:27!3 +MRK 12:27!4 +MRK 12:27!5 +MRK 12:27!6 +MRK 12:27!7 +MRK 12:27!8 +MRK 12:28!1 +MRK 12:28!2 +MRK 12:28!3 +MRK 12:28!4 +MRK 12:28!5 +MRK 12:28!6 +MRK 12:28!7 +MRK 12:28!8 +MRK 12:28!9 +MRK 12:28!10 +MRK 12:28!11 +MRK 12:28!12 +MRK 12:28!13 +MRK 12:28!14 +MRK 12:28!15 +MRK 12:28!16 +MRK 12:28!17 +MRK 12:28!18 +MRK 12:28!19 +MRK 12:28!20 +MRK 12:29!1 +MRK 12:29!2 +MRK 12:29!3 +MRK 12:29!4 +MRK 12:29!5 +MRK 12:29!6 +MRK 12:29!7 +MRK 12:29!8 +MRK 12:29!9 +MRK 12:29!10 +MRK 12:29!11 +MRK 12:29!12 +MRK 12:29!13 +MRK 12:29!14 +MRK 12:29!15 +MRK 12:30!1 +MRK 12:30!2 +MRK 12:30!3 +MRK 12:30!4 +MRK 12:30!5 +MRK 12:30!6 +MRK 12:30!7 +MRK 12:30!8 +MRK 12:30!9 +MRK 12:30!10 +MRK 12:30!11 +MRK 12:30!12 +MRK 12:30!13 +MRK 12:30!14 +MRK 12:30!15 +MRK 12:30!16 +MRK 12:30!17 +MRK 12:30!18 +MRK 12:30!19 +MRK 12:30!20 +MRK 12:30!21 +MRK 12:30!22 +MRK 12:30!23 +MRK 12:30!24 +MRK 12:30!25 +MRK 12:30!26 +MRK 12:30!27 +MRK 12:30!28 +MRK 12:30!29 +MRK 12:31!1 +MRK 12:31!2 +MRK 12:31!3 +MRK 12:31!4 +MRK 12:31!5 +MRK 12:31!6 +MRK 12:31!7 +MRK 12:31!8 +MRK 12:31!9 +MRK 12:31!10 +MRK 12:31!11 +MRK 12:31!12 +MRK 12:31!13 +MRK 12:31!14 +MRK 12:32!1 +MRK 12:32!2 +MRK 12:32!3 +MRK 12:32!4 +MRK 12:32!5 +MRK 12:32!6 +MRK 12:32!7 +MRK 12:32!8 +MRK 12:32!9 +MRK 12:32!10 +MRK 12:32!11 +MRK 12:32!12 +MRK 12:32!13 +MRK 12:32!14 +MRK 12:32!15 +MRK 12:32!16 +MRK 12:32!17 +MRK 12:32!18 +MRK 12:32!19 +MRK 12:33!1 +MRK 12:33!2 +MRK 12:33!3 +MRK 12:33!4 +MRK 12:33!5 +MRK 12:33!6 +MRK 12:33!7 +MRK 12:33!8 +MRK 12:33!9 +MRK 12:33!10 +MRK 12:33!11 +MRK 12:33!12 +MRK 12:33!13 +MRK 12:33!14 +MRK 12:33!15 +MRK 12:33!16 +MRK 12:33!17 +MRK 12:33!18 +MRK 12:33!19 +MRK 12:33!20 +MRK 12:33!21 +MRK 12:33!22 +MRK 12:33!23 +MRK 12:33!24 +MRK 12:33!25 +MRK 12:33!26 +MRK 12:33!27 +MRK 12:33!28 +MRK 12:33!29 +MRK 12:33!30 +MRK 12:33!31 +MRK 12:33!32 +MRK 12:34!1 +MRK 12:34!2 +MRK 12:34!3 +MRK 12:34!4 +MRK 12:34!5 +MRK 12:34!6 +MRK 12:34!7 +MRK 12:34!8 +MRK 12:34!9 +MRK 12:34!10 +MRK 12:34!11 +MRK 12:34!12 +MRK 12:34!13 +MRK 12:34!14 +MRK 12:34!15 +MRK 12:34!16 +MRK 12:34!17 +MRK 12:34!18 +MRK 12:34!19 +MRK 12:34!20 +MRK 12:34!21 +MRK 12:34!22 +MRK 12:34!23 +MRK 12:34!24 +MRK 12:35!1 +MRK 12:35!2 +MRK 12:35!3 +MRK 12:35!4 +MRK 12:35!5 +MRK 12:35!6 +MRK 12:35!7 +MRK 12:35!8 +MRK 12:35!9 +MRK 12:35!10 +MRK 12:35!11 +MRK 12:35!12 +MRK 12:35!13 +MRK 12:35!14 +MRK 12:35!15 +MRK 12:35!16 +MRK 12:35!17 +MRK 12:35!18 +MRK 12:35!19 +MRK 12:36!1 +MRK 12:36!2 +MRK 12:36!3 +MRK 12:36!4 +MRK 12:36!5 +MRK 12:36!6 +MRK 12:36!7 +MRK 12:36!8 +MRK 12:36!9 +MRK 12:36!10 +MRK 12:36!11 +MRK 12:36!12 +MRK 12:36!13 +MRK 12:36!14 +MRK 12:36!15 +MRK 12:36!16 +MRK 12:36!17 +MRK 12:36!18 +MRK 12:36!19 +MRK 12:36!20 +MRK 12:36!21 +MRK 12:36!22 +MRK 12:36!23 +MRK 12:36!24 +MRK 12:36!25 +MRK 12:36!26 +MRK 12:36!27 +MRK 12:37!1 +MRK 12:37!2 +MRK 12:37!3 +MRK 12:37!4 +MRK 12:37!5 +MRK 12:37!6 +MRK 12:37!7 +MRK 12:37!8 +MRK 12:37!10 +MRK 12:37!9 +MRK 12:37!11 +MRK 12:37!12 +MRK 12:37!13 +MRK 12:37!14 +MRK 12:37!15 +MRK 12:37!16 +MRK 12:37!17 +MRK 12:38!1 +MRK 12:38!2 +MRK 12:38!3 +MRK 12:38!4 +MRK 12:38!5 +MRK 12:38!6 +MRK 12:38!7 +MRK 12:38!8 +MRK 12:38!9 +MRK 12:38!10 +MRK 12:38!11 +MRK 12:38!12 +MRK 12:38!13 +MRK 12:38!14 +MRK 12:38!15 +MRK 12:38!16 +MRK 12:38!17 +MRK 12:38!18 +MRK 12:38!19 +MRK 12:38!20 +MRK 12:39!1 +MRK 12:39!2 +MRK 12:39!3 +MRK 12:39!4 +MRK 12:39!5 +MRK 12:39!6 +MRK 12:39!7 +MRK 12:39!8 +MRK 12:39!9 +MRK 12:39!10 +MRK 12:40!1 +MRK 12:40!2 +MRK 12:40!3 +MRK 12:40!4 +MRK 12:40!5 +MRK 12:40!6 +MRK 12:40!7 +MRK 12:40!8 +MRK 12:40!9 +MRK 12:40!10 +MRK 12:40!11 +MRK 12:40!12 +MRK 12:40!13 +MRK 12:40!14 +MRK 12:41!1 +MRK 12:41!2 +MRK 12:41!3 +MRK 12:41!4 +MRK 12:41!5 +MRK 12:41!6 +MRK 12:41!7 +MRK 12:41!8 +MRK 12:41!9 +MRK 12:41!10 +MRK 12:41!11 +MRK 12:41!12 +MRK 12:41!13 +MRK 12:41!14 +MRK 12:41!15 +MRK 12:41!16 +MRK 12:41!17 +MRK 12:41!18 +MRK 12:41!19 +MRK 12:42!1 +MRK 12:42!2 +MRK 12:42!3 +MRK 12:42!4 +MRK 12:42!5 +MRK 12:42!6 +MRK 12:42!7 +MRK 12:42!8 +MRK 12:42!9 +MRK 12:42!10 +MRK 12:42!11 +MRK 12:43!1 +MRK 12:43!2 +MRK 12:43!3 +MRK 12:43!4 +MRK 12:43!5 +MRK 12:43!6 +MRK 12:43!7 +MRK 12:43!8 +MRK 12:43!9 +MRK 12:43!10 +MRK 12:43!11 +MRK 12:43!12 +MRK 12:43!13 +MRK 12:43!14 +MRK 12:43!15 +MRK 12:43!16 +MRK 12:43!17 +MRK 12:43!19 +MRK 12:43!18 +MRK 12:43!20 +MRK 12:43!21 +MRK 12:43!22 +MRK 12:43!23 +MRK 12:43!24 +MRK 12:44!2 +MRK 12:44!1 +MRK 12:44!3 +MRK 12:44!4 +MRK 12:44!5 +MRK 12:44!6 +MRK 12:44!7 +MRK 12:44!9 +MRK 12:44!8 +MRK 12:44!10 +MRK 12:44!11 +MRK 12:44!12 +MRK 12:44!13 +MRK 12:44!17 +MRK 12:44!14 +MRK 12:44!15 +MRK 12:44!16 +MRK 12:44!18 +MRK 12:44!19 +MRK 12:44!20 +MRK 12:44!21 +MRK 13:1!1 +MRK 13:1!2 +MRK 13:1!3 +MRK 13:1!4 +MRK 13:1!5 +MRK 13:1!6 +MRK 13:1!7 +MRK 13:1!8 +MRK 13:1!9 +MRK 13:1!10 +MRK 13:1!11 +MRK 13:1!12 +MRK 13:1!13 +MRK 13:1!14 +MRK 13:1!15 +MRK 13:1!16 +MRK 13:1!17 +MRK 13:1!18 +MRK 13:1!19 +MRK 13:2!1 +MRK 13:2!2 +MRK 13:2!3 +MRK 13:2!4 +MRK 13:2!5 +MRK 13:2!6 +MRK 13:2!7 +MRK 13:2!8 +MRK 13:2!9 +MRK 13:2!10 +MRK 13:2!11 +MRK 13:2!12 +MRK 13:2!13 +MRK 13:2!15 +MRK 13:2!16 +MRK 13:2!14 +MRK 13:2!17 +MRK 13:2!18 +MRK 13:2!19 +MRK 13:2!20 +MRK 13:3!1 +MRK 13:3!2 +MRK 13:3!3 +MRK 13:3!4 +MRK 13:3!5 +MRK 13:3!6 +MRK 13:3!7 +MRK 13:3!8 +MRK 13:3!9 +MRK 13:3!10 +MRK 13:3!11 +MRK 13:3!12 +MRK 13:3!13 +MRK 13:3!14 +MRK 13:3!15 +MRK 13:3!16 +MRK 13:3!17 +MRK 13:3!18 +MRK 13:3!19 +MRK 13:3!20 +MRK 13:3!21 +MRK 13:3!22 +MRK 13:4!1 +MRK 13:4!2 +MRK 13:4!3 +MRK 13:4!4 +MRK 13:4!5 +MRK 13:4!6 +MRK 13:4!7 +MRK 13:4!8 +MRK 13:4!9 +MRK 13:4!10 +MRK 13:4!11 +MRK 13:4!12 +MRK 13:4!14 +MRK 13:4!13 +MRK 13:5!2 +MRK 13:5!1 +MRK 13:5!3 +MRK 13:5!4 +MRK 13:5!5 +MRK 13:5!6 +MRK 13:5!7 +MRK 13:5!8 +MRK 13:5!9 +MRK 13:5!10 +MRK 13:5!11 +MRK 13:6!1 +MRK 13:6!2 +MRK 13:6!3 +MRK 13:6!4 +MRK 13:6!5 +MRK 13:6!6 +MRK 13:6!7 +MRK 13:6!8 +MRK 13:6!9 +MRK 13:6!10 +MRK 13:6!11 +MRK 13:6!12 +MRK 13:6!13 +MRK 13:7!2 +MRK 13:7!1 +MRK 13:7!3 +MRK 13:7!4 +MRK 13:7!5 +MRK 13:7!6 +MRK 13:7!7 +MRK 13:7!8 +MRK 13:7!9 +MRK 13:7!10 +MRK 13:7!11 +MRK 13:7!12 +MRK 13:7!13 +MRK 13:7!14 +MRK 13:7!15 +MRK 13:8!2 +MRK 13:8!1 +MRK 13:8!3 +MRK 13:8!4 +MRK 13:8!5 +MRK 13:8!6 +MRK 13:8!7 +MRK 13:8!8 +MRK 13:8!9 +MRK 13:8!10 +MRK 13:8!11 +MRK 13:8!12 +MRK 13:8!13 +MRK 13:8!14 +MRK 13:8!15 +MRK 13:8!16 +MRK 13:8!17 +MRK 13:8!18 +MRK 13:9!2 +MRK 13:9!1 +MRK 13:9!3 +MRK 13:9!4 +MRK 13:9!5 +MRK 13:9!6 +MRK 13:9!7 +MRK 13:9!8 +MRK 13:9!9 +MRK 13:9!10 +MRK 13:9!11 +MRK 13:9!12 +MRK 13:9!13 +MRK 13:9!14 +MRK 13:9!15 +MRK 13:9!16 +MRK 13:9!17 +MRK 13:9!18 +MRK 13:9!19 +MRK 13:9!20 +MRK 13:9!21 +MRK 13:9!22 +MRK 13:9!23 +MRK 13:10!1 +MRK 13:10!2 +MRK 13:10!3 +MRK 13:10!4 +MRK 13:10!5 +MRK 13:10!6 +MRK 13:10!8 +MRK 13:10!9 +MRK 13:10!10 +MRK 13:10!7 +MRK 13:11!1 +MRK 13:11!2 +MRK 13:11!3 +MRK 13:11!4 +MRK 13:11!5 +MRK 13:11!6 +MRK 13:11!7 +MRK 13:11!8 +MRK 13:11!9 +MRK 13:11!10 +MRK 13:11!12 +MRK 13:11!11 +MRK 13:11!13 +MRK 13:11!14 +MRK 13:11!15 +MRK 13:11!16 +MRK 13:11!17 +MRK 13:11!18 +MRK 13:11!19 +MRK 13:11!20 +MRK 13:11!22 +MRK 13:11!21 +MRK 13:11!23 +MRK 13:11!24 +MRK 13:11!25 +MRK 13:11!26 +MRK 13:11!27 +MRK 13:11!28 +MRK 13:11!29 +MRK 13:11!30 +MRK 13:11!31 +MRK 13:12!1 +MRK 13:12!2 +MRK 13:12!3 +MRK 13:12!4 +MRK 13:12!5 +MRK 13:12!6 +MRK 13:12!7 +MRK 13:12!8 +MRK 13:12!9 +MRK 13:12!10 +MRK 13:12!11 +MRK 13:12!12 +MRK 13:12!13 +MRK 13:12!14 +MRK 13:12!15 +MRK 13:12!16 +MRK 13:12!17 +MRK 13:13!1 +MRK 13:13!2 +MRK 13:13!3 +MRK 13:13!4 +MRK 13:13!5 +MRK 13:13!6 +MRK 13:13!7 +MRK 13:13!8 +MRK 13:13!9 +MRK 13:13!11 +MRK 13:13!10 +MRK 13:13!12 +MRK 13:13!13 +MRK 13:13!14 +MRK 13:13!15 +MRK 13:13!16 +MRK 13:14!2 +MRK 13:14!1 +MRK 13:14!3 +MRK 13:14!4 +MRK 13:14!5 +MRK 13:14!6 +MRK 13:14!7 +MRK 13:14!8 +MRK 13:14!9 +MRK 13:14!10 +MRK 13:14!11 +MRK 13:14!12 +MRK 13:14!13 +MRK 13:14!14 +MRK 13:14!15 +MRK 13:14!16 +MRK 13:14!17 +MRK 13:14!18 +MRK 13:14!19 +MRK 13:14!20 +MRK 13:14!21 +MRK 13:14!22 +MRK 13:14!23 +MRK 13:15!1 +MRK 13:15!2 +MRK 13:15!3 +MRK 13:15!4 +MRK 13:15!5 +MRK 13:15!6 +MRK 13:15!7 +MRK 13:15!8 +MRK 13:15!9 +MRK 13:15!10 +MRK 13:15!11 +MRK 13:15!12 +MRK 13:15!13 +MRK 13:15!14 +MRK 13:16!1 +MRK 13:16!2 +MRK 13:16!3 +MRK 13:16!4 +MRK 13:16!5 +MRK 13:16!6 +MRK 13:16!7 +MRK 13:16!8 +MRK 13:16!9 +MRK 13:16!10 +MRK 13:16!11 +MRK 13:16!12 +MRK 13:16!13 +MRK 13:16!14 +MRK 13:17!2 +MRK 13:17!1 +MRK 13:17!3 +MRK 13:17!4 +MRK 13:17!5 +MRK 13:17!6 +MRK 13:17!7 +MRK 13:17!8 +MRK 13:17!9 +MRK 13:17!10 +MRK 13:17!11 +MRK 13:17!12 +MRK 13:17!13 +MRK 13:18!2 +MRK 13:18!1 +MRK 13:18!3 +MRK 13:18!4 +MRK 13:18!5 +MRK 13:18!6 +MRK 13:19!2 +MRK 13:19!1 +MRK 13:19!3 +MRK 13:19!4 +MRK 13:19!5 +MRK 13:19!6 +MRK 13:19!7 +MRK 13:19!8 +MRK 13:19!9 +MRK 13:19!10 +MRK 13:19!11 +MRK 13:19!12 +MRK 13:19!13 +MRK 13:19!14 +MRK 13:19!15 +MRK 13:19!16 +MRK 13:19!17 +MRK 13:19!18 +MRK 13:19!19 +MRK 13:19!20 +MRK 13:19!21 +MRK 13:19!22 +MRK 13:19!23 +MRK 13:19!24 +MRK 13:20!1 +MRK 13:20!2 +MRK 13:20!3 +MRK 13:20!4 +MRK 13:20!5 +MRK 13:20!6 +MRK 13:20!7 +MRK 13:20!9 +MRK 13:20!8 +MRK 13:20!10 +MRK 13:20!11 +MRK 13:20!12 +MRK 13:20!13 +MRK 13:20!14 +MRK 13:20!15 +MRK 13:20!16 +MRK 13:20!17 +MRK 13:20!18 +MRK 13:20!19 +MRK 13:20!20 +MRK 13:20!21 +MRK 13:21!1 +MRK 13:21!3 +MRK 13:21!2 +MRK 13:21!4 +MRK 13:21!5 +MRK 13:21!6 +MRK 13:21!7 +MRK 13:21!8 +MRK 13:21!9 +MRK 13:21!10 +MRK 13:21!11 +MRK 13:21!12 +MRK 13:21!13 +MRK 13:21!14 +MRK 13:22!2 +MRK 13:22!1 +MRK 13:22!3 +MRK 13:22!4 +MRK 13:22!5 +MRK 13:22!6 +MRK 13:22!7 +MRK 13:22!8 +MRK 13:22!9 +MRK 13:22!10 +MRK 13:22!11 +MRK 13:22!12 +MRK 13:22!13 +MRK 13:22!14 +MRK 13:22!15 +MRK 13:22!16 +MRK 13:22!17 +MRK 13:23!2 +MRK 13:23!1 +MRK 13:23!3 +MRK 13:23!4 +MRK 13:23!5 +MRK 13:23!6 +MRK 13:24!1 +MRK 13:24!2 +MRK 13:24!3 +MRK 13:24!4 +MRK 13:24!5 +MRK 13:24!6 +MRK 13:24!7 +MRK 13:24!8 +MRK 13:24!9 +MRK 13:24!10 +MRK 13:24!11 +MRK 13:24!12 +MRK 13:24!13 +MRK 13:24!14 +MRK 13:24!15 +MRK 13:24!16 +MRK 13:24!17 +MRK 13:24!18 +MRK 13:24!19 +MRK 13:24!20 +MRK 13:25!1 +MRK 13:25!2 +MRK 13:25!3 +MRK 13:25!4 +MRK 13:25!8 +MRK 13:25!5 +MRK 13:25!6 +MRK 13:25!7 +MRK 13:25!9 +MRK 13:25!10 +MRK 13:25!11 +MRK 13:25!12 +MRK 13:25!13 +MRK 13:25!14 +MRK 13:25!15 +MRK 13:25!16 +MRK 13:26!1 +MRK 13:26!2 +MRK 13:26!3 +MRK 13:26!4 +MRK 13:26!5 +MRK 13:26!6 +MRK 13:26!7 +MRK 13:26!8 +MRK 13:26!9 +MRK 13:26!10 +MRK 13:26!11 +MRK 13:26!12 +MRK 13:26!13 +MRK 13:26!14 +MRK 13:26!15 +MRK 13:27!1 +MRK 13:27!2 +MRK 13:27!3 +MRK 13:27!4 +MRK 13:27!5 +MRK 13:27!6 +MRK 13:27!7 +MRK 13:27!8 +MRK 13:27!9 +MRK 13:27!10 +MRK 13:27!11 +MRK 13:27!12 +MRK 13:27!13 +MRK 13:27!14 +MRK 13:27!15 +MRK 13:27!16 +MRK 13:27!17 +MRK 13:27!18 +MRK 13:27!19 +MRK 13:27!20 +MRK 13:28!2 +MRK 13:28!1 +MRK 13:28!3 +MRK 13:28!4 +MRK 13:28!5 +MRK 13:28!6 +MRK 13:28!7 +MRK 13:28!8 +MRK 13:28!9 +MRK 13:28!10 +MRK 13:28!11 +MRK 13:28!12 +MRK 13:28!13 +MRK 13:28!14 +MRK 13:28!15 +MRK 13:28!16 +MRK 13:28!17 +MRK 13:28!18 +MRK 13:28!19 +MRK 13:28!20 +MRK 13:28!21 +MRK 13:28!22 +MRK 13:28!23 +MRK 13:28!24 +MRK 13:29!1 +MRK 13:29!2 +MRK 13:29!3 +MRK 13:29!4 +MRK 13:29!5 +MRK 13:29!6 +MRK 13:29!7 +MRK 13:29!8 +MRK 13:29!9 +MRK 13:29!10 +MRK 13:29!11 +MRK 13:29!12 +MRK 13:29!13 +MRK 13:30!1 +MRK 13:30!2 +MRK 13:30!3 +MRK 13:30!4 +MRK 13:30!5 +MRK 13:30!6 +MRK 13:30!7 +MRK 13:30!8 +MRK 13:30!9 +MRK 13:30!10 +MRK 13:30!11 +MRK 13:30!12 +MRK 13:30!13 +MRK 13:30!14 +MRK 13:30!15 +MRK 13:31!1 +MRK 13:31!2 +MRK 13:31!3 +MRK 13:31!4 +MRK 13:31!5 +MRK 13:31!6 +MRK 13:31!8 +MRK 13:31!7 +MRK 13:31!9 +MRK 13:31!10 +MRK 13:31!11 +MRK 13:31!12 +MRK 13:32!2 +MRK 13:32!1 +MRK 13:32!3 +MRK 13:32!4 +MRK 13:32!5 +MRK 13:32!6 +MRK 13:32!7 +MRK 13:32!8 +MRK 13:32!9 +MRK 13:32!10 +MRK 13:32!11 +MRK 13:32!12 +MRK 13:32!13 +MRK 13:32!14 +MRK 13:32!15 +MRK 13:32!16 +MRK 13:32!17 +MRK 13:32!18 +MRK 13:32!19 +MRK 13:32!20 +MRK 13:32!21 +MRK 13:32!22 +MRK 13:33!1 +MRK 13:33!2 +MRK 13:33!5 +MRK 13:33!3 +MRK 13:33!4 +MRK 13:33!6 +MRK 13:33!7 +MRK 13:33!8 +MRK 13:33!9 +MRK 13:34!1 +MRK 13:34!2 +MRK 13:34!3 +MRK 13:34!4 +MRK 13:34!5 +MRK 13:34!6 +MRK 13:34!7 +MRK 13:34!8 +MRK 13:34!9 +MRK 13:34!10 +MRK 13:34!11 +MRK 13:34!12 +MRK 13:34!13 +MRK 13:34!14 +MRK 13:34!15 +MRK 13:34!16 +MRK 13:34!17 +MRK 13:34!18 +MRK 13:34!19 +MRK 13:34!20 +MRK 13:34!21 +MRK 13:34!22 +MRK 13:34!23 +MRK 13:34!24 +MRK 13:35!2 +MRK 13:35!1 +MRK 13:35!5 +MRK 13:35!3 +MRK 13:35!4 +MRK 13:35!6 +MRK 13:35!7 +MRK 13:35!8 +MRK 13:35!9 +MRK 13:35!10 +MRK 13:35!11 +MRK 13:35!12 +MRK 13:35!13 +MRK 13:35!14 +MRK 13:35!15 +MRK 13:35!16 +MRK 13:35!17 +MRK 13:35!18 +MRK 13:35!19 +MRK 13:36!1 +MRK 13:36!2 +MRK 13:36!3 +MRK 13:36!4 +MRK 13:36!5 +MRK 13:36!6 +MRK 13:37!2 +MRK 13:37!1 +MRK 13:37!3 +MRK 13:37!4 +MRK 13:37!5 +MRK 13:37!6 +MRK 13:37!7 +MRK 14:1!2 +MRK 14:1!1 +MRK 14:1!3 +MRK 14:1!4 +MRK 14:1!5 +MRK 14:1!6 +MRK 14:1!7 +MRK 14:1!8 +MRK 14:1!9 +MRK 14:1!10 +MRK 14:1!11 +MRK 14:1!12 +MRK 14:1!13 +MRK 14:1!14 +MRK 14:1!15 +MRK 14:1!16 +MRK 14:1!17 +MRK 14:1!18 +MRK 14:1!19 +MRK 14:1!20 +MRK 14:1!21 +MRK 14:1!22 +MRK 14:1!23 +MRK 14:2!2 +MRK 14:2!1 +MRK 14:2!3 +MRK 14:2!4 +MRK 14:2!5 +MRK 14:2!6 +MRK 14:2!7 +MRK 14:2!8 +MRK 14:2!9 +MRK 14:2!10 +MRK 14:2!11 +MRK 14:2!12 +MRK 14:3!1 +MRK 14:3!2 +MRK 14:3!3 +MRK 14:3!4 +MRK 14:3!5 +MRK 14:3!6 +MRK 14:3!7 +MRK 14:3!8 +MRK 14:3!9 +MRK 14:3!10 +MRK 14:3!11 +MRK 14:3!12 +MRK 14:3!13 +MRK 14:3!14 +MRK 14:3!15 +MRK 14:3!16 +MRK 14:3!17 +MRK 14:3!18 +MRK 14:3!19 +MRK 14:3!20 +MRK 14:3!21 +MRK 14:3!22 +MRK 14:3!23 +MRK 14:3!24 +MRK 14:3!25 +MRK 14:3!26 +MRK 14:3!27 +MRK 14:3!28 +MRK 14:4!2 +MRK 14:4!3 +MRK 14:4!1 +MRK 14:4!4 +MRK 14:4!5 +MRK 14:4!6 +MRK 14:4!7 +MRK 14:4!8 +MRK 14:4!9 +MRK 14:4!10 +MRK 14:4!11 +MRK 14:4!12 +MRK 14:4!13 +MRK 14:4!14 +MRK 14:5!2 +MRK 14:5!1 +MRK 14:5!3 +MRK 14:5!4 +MRK 14:5!5 +MRK 14:5!6 +MRK 14:5!7 +MRK 14:5!8 +MRK 14:5!9 +MRK 14:5!10 +MRK 14:5!11 +MRK 14:5!12 +MRK 14:5!13 +MRK 14:5!14 +MRK 14:5!15 +MRK 14:5!16 +MRK 14:6!2 +MRK 14:6!1 +MRK 14:6!3 +MRK 14:6!4 +MRK 14:6!5 +MRK 14:6!6 +MRK 14:6!7 +MRK 14:6!8 +MRK 14:6!9 +MRK 14:6!10 +MRK 14:6!11 +MRK 14:6!12 +MRK 14:6!13 +MRK 14:6!14 +MRK 14:6!15 +MRK 14:7!2 +MRK 14:7!1 +MRK 14:7!3 +MRK 14:7!4 +MRK 14:7!5 +MRK 14:7!6 +MRK 14:7!7 +MRK 14:7!8 +MRK 14:7!9 +MRK 14:7!10 +MRK 14:7!11 +MRK 14:7!12 +MRK 14:7!13 +MRK 14:7!14 +MRK 14:7!16 +MRK 14:7!15 +MRK 14:7!17 +MRK 14:7!18 +MRK 14:7!19 +MRK 14:8!1 +MRK 14:8!2 +MRK 14:8!3 +MRK 14:8!4 +MRK 14:8!5 +MRK 14:8!6 +MRK 14:8!7 +MRK 14:8!8 +MRK 14:8!9 +MRK 14:8!10 +MRK 14:8!11 +MRK 14:9!2 +MRK 14:9!1 +MRK 14:9!3 +MRK 14:9!4 +MRK 14:9!6 +MRK 14:9!5 +MRK 14:9!7 +MRK 14:9!8 +MRK 14:9!9 +MRK 14:9!10 +MRK 14:9!11 +MRK 14:9!12 +MRK 14:9!13 +MRK 14:9!14 +MRK 14:9!15 +MRK 14:9!16 +MRK 14:9!17 +MRK 14:9!18 +MRK 14:9!19 +MRK 14:9!20 +MRK 14:9!21 +MRK 14:10!1 +MRK 14:10!2 +MRK 14:10!3 +MRK 14:10!4 +MRK 14:10!5 +MRK 14:10!6 +MRK 14:10!7 +MRK 14:10!8 +MRK 14:10!9 +MRK 14:10!10 +MRK 14:10!11 +MRK 14:10!12 +MRK 14:10!13 +MRK 14:10!14 +MRK 14:10!15 +MRK 14:11!2 +MRK 14:11!1 +MRK 14:11!3 +MRK 14:11!4 +MRK 14:11!5 +MRK 14:11!6 +MRK 14:11!7 +MRK 14:11!8 +MRK 14:11!9 +MRK 14:11!10 +MRK 14:11!11 +MRK 14:11!12 +MRK 14:11!13 +MRK 14:11!14 +MRK 14:11!15 +MRK 14:12!1 +MRK 14:12!2 +MRK 14:12!3 +MRK 14:12!4 +MRK 14:12!5 +MRK 14:12!6 +MRK 14:12!7 +MRK 14:12!8 +MRK 14:12!9 +MRK 14:12!10 +MRK 14:12!11 +MRK 14:12!12 +MRK 14:12!13 +MRK 14:12!14 +MRK 14:12!15 +MRK 14:12!17 +MRK 14:12!16 +MRK 14:12!18 +MRK 14:12!19 +MRK 14:12!20 +MRK 14:12!21 +MRK 14:12!22 +MRK 14:12!23 +MRK 14:13!1 +MRK 14:13!2 +MRK 14:13!3 +MRK 14:13!4 +MRK 14:13!5 +MRK 14:13!6 +MRK 14:13!7 +MRK 14:13!8 +MRK 14:13!9 +MRK 14:13!10 +MRK 14:13!11 +MRK 14:13!12 +MRK 14:13!13 +MRK 14:13!14 +MRK 14:13!15 +MRK 14:13!16 +MRK 14:13!17 +MRK 14:13!18 +MRK 14:13!19 +MRK 14:13!20 +MRK 14:13!21 +MRK 14:13!22 +MRK 14:14!1 +MRK 14:14!3 +MRK 14:14!2 +MRK 14:14!4 +MRK 14:14!5 +MRK 14:14!6 +MRK 14:14!7 +MRK 14:14!8 +MRK 14:14!9 +MRK 14:14!10 +MRK 14:14!11 +MRK 14:14!12 +MRK 14:14!13 +MRK 14:14!14 +MRK 14:14!15 +MRK 14:14!16 +MRK 14:14!17 +MRK 14:14!18 +MRK 14:14!19 +MRK 14:14!20 +MRK 14:14!21 +MRK 14:14!22 +MRK 14:14!23 +MRK 14:14!24 +MRK 14:15!1 +MRK 14:15!2 +MRK 14:15!3 +MRK 14:15!4 +MRK 14:15!5 +MRK 14:15!6 +MRK 14:15!7 +MRK 14:15!8 +MRK 14:15!9 +MRK 14:15!10 +MRK 14:15!11 +MRK 14:15!12 +MRK 14:16!1 +MRK 14:16!2 +MRK 14:16!3 +MRK 14:16!4 +MRK 14:16!5 +MRK 14:16!6 +MRK 14:16!7 +MRK 14:16!8 +MRK 14:16!9 +MRK 14:16!10 +MRK 14:16!11 +MRK 14:16!12 +MRK 14:16!13 +MRK 14:16!14 +MRK 14:16!15 +MRK 14:16!16 +MRK 14:16!17 +MRK 14:16!18 +MRK 14:17!1 +MRK 14:17!2 +MRK 14:17!3 +MRK 14:17!4 +MRK 14:17!5 +MRK 14:17!6 +MRK 14:17!7 +MRK 14:18!1 +MRK 14:18!3 +MRK 14:18!2 +MRK 14:18!4 +MRK 14:18!5 +MRK 14:18!6 +MRK 14:18!7 +MRK 14:18!8 +MRK 14:18!9 +MRK 14:18!10 +MRK 14:18!11 +MRK 14:18!12 +MRK 14:18!16 +MRK 14:18!17 +MRK 14:18!13 +MRK 14:18!14 +MRK 14:18!15 +MRK 14:18!18 +MRK 14:18!19 +MRK 14:18!20 +MRK 14:18!21 +MRK 14:19!1 +MRK 14:19!2 +MRK 14:19!3 +MRK 14:19!4 +MRK 14:19!5 +MRK 14:19!6 +MRK 14:19!7 +MRK 14:19!8 +MRK 14:19!9 +MRK 14:19!10 +MRK 14:20!2 +MRK 14:20!1 +MRK 14:20!3 +MRK 14:20!4 +MRK 14:20!5 +MRK 14:20!6 +MRK 14:20!7 +MRK 14:20!8 +MRK 14:20!9 +MRK 14:20!10 +MRK 14:20!11 +MRK 14:20!12 +MRK 14:20!13 +MRK 14:20!14 +MRK 14:21!1 +MRK 14:21!3 +MRK 14:21!2 +MRK 14:21!4 +MRK 14:21!5 +MRK 14:21!6 +MRK 14:21!7 +MRK 14:21!8 +MRK 14:21!9 +MRK 14:21!10 +MRK 14:21!11 +MRK 14:21!13 +MRK 14:21!12 +MRK 14:21!14 +MRK 14:21!15 +MRK 14:21!16 +MRK 14:21!17 +MRK 14:21!18 +MRK 14:21!19 +MRK 14:21!20 +MRK 14:21!21 +MRK 14:21!22 +MRK 14:21!23 +MRK 14:21!24 +MRK 14:21!25 +MRK 14:21!26 +MRK 14:21!27 +MRK 14:21!28 +MRK 14:21!29 +MRK 14:21!30 +MRK 14:21!31 +MRK 14:22!1 +MRK 14:22!2 +MRK 14:22!3 +MRK 14:22!4 +MRK 14:22!5 +MRK 14:22!6 +MRK 14:22!7 +MRK 14:22!8 +MRK 14:22!9 +MRK 14:22!10 +MRK 14:22!11 +MRK 14:22!12 +MRK 14:22!13 +MRK 14:22!14 +MRK 14:22!15 +MRK 14:22!16 +MRK 14:22!17 +MRK 14:22!18 +MRK 14:23!1 +MRK 14:23!2 +MRK 14:23!3 +MRK 14:23!4 +MRK 14:23!5 +MRK 14:23!6 +MRK 14:23!7 +MRK 14:23!8 +MRK 14:23!9 +MRK 14:23!10 +MRK 14:23!11 +MRK 14:24!1 +MRK 14:24!2 +MRK 14:24!3 +MRK 14:24!4 +MRK 14:24!5 +MRK 14:24!6 +MRK 14:24!7 +MRK 14:24!8 +MRK 14:24!9 +MRK 14:24!10 +MRK 14:24!11 +MRK 14:24!12 +MRK 14:24!13 +MRK 14:24!14 +MRK 14:25!1 +MRK 14:25!2 +MRK 14:25!3 +MRK 14:25!4 +MRK 14:25!5 +MRK 14:25!6 +MRK 14:25!7 +MRK 14:25!8 +MRK 14:25!9 +MRK 14:25!10 +MRK 14:25!11 +MRK 14:25!12 +MRK 14:25!13 +MRK 14:25!14 +MRK 14:25!15 +MRK 14:25!16 +MRK 14:25!17 +MRK 14:25!18 +MRK 14:25!19 +MRK 14:25!20 +MRK 14:25!21 +MRK 14:25!22 +MRK 14:25!23 +MRK 14:25!24 +MRK 14:25!25 +MRK 14:25!26 +MRK 14:26!1 +MRK 14:26!2 +MRK 14:26!3 +MRK 14:26!4 +MRK 14:26!5 +MRK 14:26!6 +MRK 14:26!7 +MRK 14:26!8 +MRK 14:27!1 +MRK 14:27!2 +MRK 14:27!3 +MRK 14:27!4 +MRK 14:27!5 +MRK 14:27!6 +MRK 14:27!7 +MRK 14:27!8 +MRK 14:27!9 +MRK 14:27!10 +MRK 14:27!11 +MRK 14:27!12 +MRK 14:27!13 +MRK 14:27!14 +MRK 14:27!15 +MRK 14:27!16 +MRK 14:27!17 +MRK 14:28!1 +MRK 14:28!2 +MRK 14:28!3 +MRK 14:28!4 +MRK 14:28!5 +MRK 14:28!6 +MRK 14:28!7 +MRK 14:28!8 +MRK 14:28!9 +MRK 14:28!10 +MRK 14:29!2 +MRK 14:29!1 +MRK 14:29!3 +MRK 14:29!4 +MRK 14:29!5 +MRK 14:29!6 +MRK 14:29!7 +MRK 14:29!8 +MRK 14:29!9 +MRK 14:29!10 +MRK 14:29!11 +MRK 14:29!12 +MRK 14:30!1 +MRK 14:30!2 +MRK 14:30!3 +MRK 14:30!4 +MRK 14:30!5 +MRK 14:30!6 +MRK 14:30!7 +MRK 14:30!8 +MRK 14:30!9 +MRK 14:30!10 +MRK 14:30!11 +MRK 14:30!12 +MRK 14:30!13 +MRK 14:30!14 +MRK 14:30!15 +MRK 14:30!16 +MRK 14:30!17 +MRK 14:30!18 +MRK 14:30!19 +MRK 14:30!20 +MRK 14:30!21 +MRK 14:30!22 +MRK 14:31!2 +MRK 14:31!1 +MRK 14:31!3 +MRK 14:31!4 +MRK 14:31!5 +MRK 14:31!6 +MRK 14:31!7 +MRK 14:31!8 +MRK 14:31!9 +MRK 14:31!10 +MRK 14:31!11 +MRK 14:31!12 +MRK 14:31!13 +MRK 14:31!15 +MRK 14:31!14 +MRK 14:31!16 +MRK 14:31!17 +MRK 14:31!18 +MRK 14:32!1 +MRK 14:32!2 +MRK 14:32!3 +MRK 14:32!4 +MRK 14:32!5 +MRK 14:32!6 +MRK 14:32!7 +MRK 14:32!8 +MRK 14:32!9 +MRK 14:32!10 +MRK 14:32!11 +MRK 14:32!12 +MRK 14:32!13 +MRK 14:32!14 +MRK 14:32!15 +MRK 14:32!16 +MRK 14:32!17 +MRK 14:33!1 +MRK 14:33!2 +MRK 14:33!3 +MRK 14:33!4 +MRK 14:33!5 +MRK 14:33!6 +MRK 14:33!7 +MRK 14:33!8 +MRK 14:33!9 +MRK 14:33!10 +MRK 14:33!11 +MRK 14:33!12 +MRK 14:33!13 +MRK 14:33!14 +MRK 14:33!15 +MRK 14:33!16 +MRK 14:33!17 +MRK 14:34!1 +MRK 14:34!2 +MRK 14:34!3 +MRK 14:34!4 +MRK 14:34!5 +MRK 14:34!6 +MRK 14:34!7 +MRK 14:34!8 +MRK 14:34!9 +MRK 14:34!10 +MRK 14:34!11 +MRK 14:34!12 +MRK 14:34!13 +MRK 14:34!14 +MRK 14:35!1 +MRK 14:35!2 +MRK 14:35!3 +MRK 14:35!4 +MRK 14:35!5 +MRK 14:35!6 +MRK 14:35!7 +MRK 14:35!8 +MRK 14:35!9 +MRK 14:35!10 +MRK 14:35!11 +MRK 14:35!12 +MRK 14:35!13 +MRK 14:35!14 +MRK 14:35!15 +MRK 14:35!16 +MRK 14:35!17 +MRK 14:35!18 +MRK 14:36!1 +MRK 14:36!2 +MRK 14:36!3 +MRK 14:36!4 +MRK 14:36!5 +MRK 14:36!6 +MRK 14:36!7 +MRK 14:36!8 +MRK 14:36!9 +MRK 14:36!10 +MRK 14:36!11 +MRK 14:36!12 +MRK 14:36!13 +MRK 14:36!14 +MRK 14:36!15 +MRK 14:36!16 +MRK 14:36!17 +MRK 14:36!18 +MRK 14:36!19 +MRK 14:36!20 +MRK 14:36!21 +MRK 14:36!22 +MRK 14:37!1 +MRK 14:37!2 +MRK 14:37!3 +MRK 14:37!4 +MRK 14:37!5 +MRK 14:37!6 +MRK 14:37!7 +MRK 14:37!8 +MRK 14:37!9 +MRK 14:37!10 +MRK 14:37!11 +MRK 14:37!12 +MRK 14:37!13 +MRK 14:37!14 +MRK 14:37!15 +MRK 14:37!16 +MRK 14:37!17 +MRK 14:38!1 +MRK 14:38!2 +MRK 14:38!3 +MRK 14:38!4 +MRK 14:38!5 +MRK 14:38!6 +MRK 14:38!7 +MRK 14:38!8 +MRK 14:38!10 +MRK 14:38!9 +MRK 14:38!11 +MRK 14:38!12 +MRK 14:38!14 +MRK 14:38!13 +MRK 14:38!15 +MRK 14:38!16 +MRK 14:39!1 +MRK 14:39!2 +MRK 14:39!3 +MRK 14:39!4 +MRK 14:39!5 +MRK 14:39!6 +MRK 14:39!7 +MRK 14:39!8 +MRK 14:40!1 +MRK 14:40!2 +MRK 14:40!3 +MRK 14:40!4 +MRK 14:40!5 +MRK 14:40!6 +MRK 14:40!8 +MRK 14:40!7 +MRK 14:40!12 +MRK 14:40!9 +MRK 14:40!10 +MRK 14:40!11 +MRK 14:40!13 +MRK 14:40!14 +MRK 14:40!15 +MRK 14:40!16 +MRK 14:40!17 +MRK 14:40!18 +MRK 14:41!1 +MRK 14:41!2 +MRK 14:41!3 +MRK 14:41!4 +MRK 14:41!5 +MRK 14:41!6 +MRK 14:41!7 +MRK 14:41!8 +MRK 14:41!9 +MRK 14:41!10 +MRK 14:41!11 +MRK 14:41!12 +MRK 14:41!13 +MRK 14:41!14 +MRK 14:41!15 +MRK 14:41!16 +MRK 14:41!17 +MRK 14:41!18 +MRK 14:41!19 +MRK 14:41!20 +MRK 14:41!21 +MRK 14:41!22 +MRK 14:41!23 +MRK 14:41!24 +MRK 14:41!25 +MRK 14:41!26 +MRK 14:41!27 +MRK 14:42!1 +MRK 14:42!2 +MRK 14:42!3 +MRK 14:42!4 +MRK 14:42!5 +MRK 14:42!6 +MRK 14:42!7 +MRK 14:43!1 +MRK 14:43!2 +MRK 14:43!3 +MRK 14:43!4 +MRK 14:43!5 +MRK 14:43!6 +MRK 14:43!7 +MRK 14:43!8 +MRK 14:43!9 +MRK 14:43!10 +MRK 14:43!11 +MRK 14:43!12 +MRK 14:43!13 +MRK 14:43!14 +MRK 14:43!15 +MRK 14:43!16 +MRK 14:43!17 +MRK 14:43!18 +MRK 14:43!19 +MRK 14:43!20 +MRK 14:43!21 +MRK 14:43!22 +MRK 14:43!23 +MRK 14:43!24 +MRK 14:43!25 +MRK 14:43!26 +MRK 14:43!27 +MRK 14:43!28 +MRK 14:44!2 +MRK 14:44!1 +MRK 14:44!3 +MRK 14:44!4 +MRK 14:44!5 +MRK 14:44!6 +MRK 14:44!7 +MRK 14:44!8 +MRK 14:44!10 +MRK 14:44!9 +MRK 14:44!11 +MRK 14:44!12 +MRK 14:44!13 +MRK 14:44!14 +MRK 14:44!15 +MRK 14:44!16 +MRK 14:44!17 +MRK 14:44!18 +MRK 14:45!1 +MRK 14:45!2 +MRK 14:45!3 +MRK 14:45!4 +MRK 14:45!5 +MRK 14:45!6 +MRK 14:45!7 +MRK 14:45!8 +MRK 14:45!9 +MRK 14:45!10 +MRK 14:46!2 +MRK 14:46!1 +MRK 14:46!3 +MRK 14:46!4 +MRK 14:46!5 +MRK 14:46!6 +MRK 14:46!7 +MRK 14:46!8 +MRK 14:46!9 +MRK 14:47!2 +MRK 14:47!1 +MRK 14:47!3 +MRK 14:47!4 +MRK 14:47!5 +MRK 14:47!6 +MRK 14:47!7 +MRK 14:47!8 +MRK 14:47!9 +MRK 14:47!10 +MRK 14:47!11 +MRK 14:47!12 +MRK 14:47!13 +MRK 14:47!14 +MRK 14:47!15 +MRK 14:47!16 +MRK 14:47!17 +MRK 14:47!18 +MRK 14:48!1 +MRK 14:48!2 +MRK 14:48!3 +MRK 14:48!4 +MRK 14:48!5 +MRK 14:48!6 +MRK 14:48!7 +MRK 14:48!8 +MRK 14:48!9 +MRK 14:48!10 +MRK 14:48!11 +MRK 14:48!12 +MRK 14:48!13 +MRK 14:48!14 +MRK 14:48!15 +MRK 14:48!16 +MRK 14:49!1 +MRK 14:49!2 +MRK 14:49!3 +MRK 14:49!4 +MRK 14:49!5 +MRK 14:49!6 +MRK 14:49!7 +MRK 14:49!8 +MRK 14:49!9 +MRK 14:49!10 +MRK 14:49!11 +MRK 14:49!12 +MRK 14:49!13 +MRK 14:49!14 +MRK 14:49!15 +MRK 14:49!16 +MRK 14:49!17 +MRK 14:49!18 +MRK 14:50!1 +MRK 14:50!2 +MRK 14:50!3 +MRK 14:50!4 +MRK 14:50!5 +MRK 14:51!1 +MRK 14:51!2 +MRK 14:51!3 +MRK 14:51!4 +MRK 14:51!5 +MRK 14:51!6 +MRK 14:51!7 +MRK 14:51!8 +MRK 14:51!9 +MRK 14:51!10 +MRK 14:51!11 +MRK 14:51!12 +MRK 14:52!2 +MRK 14:52!1 +MRK 14:52!3 +MRK 14:52!4 +MRK 14:52!5 +MRK 14:52!6 +MRK 14:52!7 +MRK 14:53!1 +MRK 14:53!2 +MRK 14:53!3 +MRK 14:53!4 +MRK 14:53!5 +MRK 14:53!6 +MRK 14:53!7 +MRK 14:53!8 +MRK 14:53!9 +MRK 14:53!10 +MRK 14:53!11 +MRK 14:53!12 +MRK 14:53!13 +MRK 14:53!14 +MRK 14:53!15 +MRK 14:53!16 +MRK 14:53!17 +MRK 14:53!18 +MRK 14:54!1 +MRK 14:54!2 +MRK 14:54!3 +MRK 14:54!4 +MRK 14:54!5 +MRK 14:54!6 +MRK 14:54!7 +MRK 14:54!8 +MRK 14:54!9 +MRK 14:54!10 +MRK 14:54!11 +MRK 14:54!12 +MRK 14:54!13 +MRK 14:54!14 +MRK 14:54!15 +MRK 14:54!16 +MRK 14:54!17 +MRK 14:54!18 +MRK 14:54!19 +MRK 14:54!20 +MRK 14:54!21 +MRK 14:54!22 +MRK 14:54!23 +MRK 14:54!24 +MRK 14:54!25 +MRK 14:55!2 +MRK 14:55!1 +MRK 14:55!3 +MRK 14:55!4 +MRK 14:55!5 +MRK 14:55!6 +MRK 14:55!7 +MRK 14:55!8 +MRK 14:55!9 +MRK 14:55!10 +MRK 14:55!11 +MRK 14:55!12 +MRK 14:55!13 +MRK 14:55!14 +MRK 14:55!15 +MRK 14:55!16 +MRK 14:55!17 +MRK 14:55!18 +MRK 14:55!19 +MRK 14:56!2 +MRK 14:56!1 +MRK 14:56!3 +MRK 14:56!4 +MRK 14:56!5 +MRK 14:56!6 +MRK 14:56!7 +MRK 14:56!8 +MRK 14:56!9 +MRK 14:56!10 +MRK 14:56!11 +MRK 14:57!1 +MRK 14:57!2 +MRK 14:57!3 +MRK 14:57!4 +MRK 14:57!5 +MRK 14:57!6 +MRK 14:57!7 +MRK 14:58!1 +MRK 14:58!2 +MRK 14:58!3 +MRK 14:58!4 +MRK 14:58!5 +MRK 14:58!6 +MRK 14:58!7 +MRK 14:58!8 +MRK 14:58!9 +MRK 14:58!10 +MRK 14:58!11 +MRK 14:58!12 +MRK 14:58!13 +MRK 14:58!14 +MRK 14:58!15 +MRK 14:58!16 +MRK 14:58!17 +MRK 14:58!18 +MRK 14:58!19 +MRK 14:58!20 +MRK 14:59!1 +MRK 14:59!2 +MRK 14:59!3 +MRK 14:59!4 +MRK 14:59!5 +MRK 14:59!6 +MRK 14:59!7 +MRK 14:59!8 +MRK 14:60!1 +MRK 14:60!2 +MRK 14:60!5 +MRK 14:60!6 +MRK 14:60!3 +MRK 14:60!4 +MRK 14:60!7 +MRK 14:60!8 +MRK 14:60!9 +MRK 14:60!10 +MRK 14:60!11 +MRK 14:60!12 +MRK 14:60!13 +MRK 14:60!14 +MRK 14:60!15 +MRK 14:60!16 +MRK 14:60!17 +MRK 14:61!2 +MRK 14:61!1 +MRK 14:61!3 +MRK 14:61!4 +MRK 14:61!5 +MRK 14:61!6 +MRK 14:61!7 +MRK 14:61!8 +MRK 14:61!9 +MRK 14:61!10 +MRK 14:61!11 +MRK 14:61!12 +MRK 14:61!13 +MRK 14:61!14 +MRK 14:61!15 +MRK 14:61!16 +MRK 14:61!17 +MRK 14:61!18 +MRK 14:61!19 +MRK 14:61!20 +MRK 14:61!21 +MRK 14:61!22 +MRK 14:61!23 +MRK 14:62!2 +MRK 14:62!1 +MRK 14:62!3 +MRK 14:62!4 +MRK 14:62!5 +MRK 14:62!6 +MRK 14:62!7 +MRK 14:62!8 +MRK 14:62!9 +MRK 14:62!10 +MRK 14:62!11 +MRK 14:62!12 +MRK 14:62!13 +MRK 14:62!14 +MRK 14:62!16 +MRK 14:62!17 +MRK 14:62!15 +MRK 14:62!18 +MRK 14:62!19 +MRK 14:62!20 +MRK 14:62!21 +MRK 14:62!22 +MRK 14:62!23 +MRK 14:62!24 +MRK 14:63!2 +MRK 14:63!1 +MRK 14:63!3 +MRK 14:63!4 +MRK 14:63!5 +MRK 14:63!6 +MRK 14:63!7 +MRK 14:63!8 +MRK 14:63!9 +MRK 14:63!10 +MRK 14:63!11 +MRK 14:63!13 +MRK 14:63!12 +MRK 14:64!1 +MRK 14:64!2 +MRK 14:64!3 +MRK 14:64!4 +MRK 14:64!5 +MRK 14:64!6 +MRK 14:64!8 +MRK 14:64!7 +MRK 14:64!9 +MRK 14:64!10 +MRK 14:64!11 +MRK 14:64!12 +MRK 14:64!13 +MRK 14:64!14 +MRK 14:65!1 +MRK 14:65!2 +MRK 14:65!3 +MRK 14:65!4 +MRK 14:65!5 +MRK 14:65!6 +MRK 14:65!7 +MRK 14:65!8 +MRK 14:65!9 +MRK 14:65!10 +MRK 14:65!11 +MRK 14:65!12 +MRK 14:65!13 +MRK 14:65!14 +MRK 14:65!15 +MRK 14:65!16 +MRK 14:65!17 +MRK 14:65!18 +MRK 14:65!19 +MRK 14:65!20 +MRK 14:65!21 +MRK 14:65!22 +MRK 14:65!23 +MRK 14:66!1 +MRK 14:66!2 +MRK 14:66!3 +MRK 14:66!4 +MRK 14:66!5 +MRK 14:66!6 +MRK 14:66!7 +MRK 14:66!8 +MRK 14:66!9 +MRK 14:66!10 +MRK 14:66!11 +MRK 14:66!12 +MRK 14:66!13 +MRK 14:66!14 +MRK 14:67!1 +MRK 14:67!2 +MRK 14:67!3 +MRK 14:67!4 +MRK 14:67!5 +MRK 14:67!6 +MRK 14:67!7 +MRK 14:67!8 +MRK 14:67!9 +MRK 14:67!10 +MRK 14:67!11 +MRK 14:67!12 +MRK 14:67!13 +MRK 14:67!15 +MRK 14:67!16 +MRK 14:67!14 +MRK 14:68!2 +MRK 14:68!1 +MRK 14:68!3 +MRK 14:68!4 +MRK 14:68!5 +MRK 14:68!6 +MRK 14:68!7 +MRK 14:68!8 +MRK 14:68!9 +MRK 14:68!10 +MRK 14:68!11 +MRK 14:68!12 +MRK 14:68!13 +MRK 14:68!14 +MRK 14:68!15 +MRK 14:68!16 +MRK 14:68!17 +MRK 14:69!1 +MRK 14:69!2 +MRK 14:69!3 +MRK 14:69!4 +MRK 14:69!5 +MRK 14:69!6 +MRK 14:69!7 +MRK 14:69!8 +MRK 14:69!9 +MRK 14:69!10 +MRK 14:69!11 +MRK 14:69!12 +MRK 14:69!13 +MRK 14:69!14 +MRK 14:69!15 +MRK 14:70!2 +MRK 14:70!1 +MRK 14:70!3 +MRK 14:70!4 +MRK 14:70!5 +MRK 14:70!6 +MRK 14:70!7 +MRK 14:70!8 +MRK 14:70!9 +MRK 14:70!10 +MRK 14:70!11 +MRK 14:70!12 +MRK 14:70!13 +MRK 14:70!14 +MRK 14:70!15 +MRK 14:70!16 +MRK 14:70!17 +MRK 14:70!19 +MRK 14:70!18 +MRK 14:70!20 +MRK 14:70!21 +MRK 14:71!2 +MRK 14:71!1 +MRK 14:71!3 +MRK 14:71!4 +MRK 14:71!5 +MRK 14:71!6 +MRK 14:71!7 +MRK 14:71!8 +MRK 14:71!9 +MRK 14:71!10 +MRK 14:71!11 +MRK 14:71!12 +MRK 14:71!13 +MRK 14:71!14 +MRK 14:72!1 +MRK 14:72!2 +MRK 14:72!3 +MRK 14:72!4 +MRK 14:72!5 +MRK 14:72!6 +MRK 14:72!7 +MRK 14:72!8 +MRK 14:72!9 +MRK 14:72!10 +MRK 14:72!11 +MRK 14:72!12 +MRK 14:72!13 +MRK 14:72!14 +MRK 14:72!15 +MRK 14:72!16 +MRK 14:72!17 +MRK 14:72!18 +MRK 14:72!19 +MRK 14:72!20 +MRK 14:72!21 +MRK 14:72!22 +MRK 14:72!23 +MRK 14:72!24 +MRK 14:72!25 +MRK 14:72!26 +MRK 14:72!27 +MRK 14:72!28 +MRK 15:1!1 +MRK 15:1!2 +MRK 15:1!3 +MRK 15:1!6 +MRK 15:1!7 +MRK 15:1!4 +MRK 15:1!5 +MRK 15:1!8 +MRK 15:1!9 +MRK 15:1!10 +MRK 15:1!11 +MRK 15:1!12 +MRK 15:1!13 +MRK 15:1!14 +MRK 15:1!15 +MRK 15:1!16 +MRK 15:1!17 +MRK 15:1!18 +MRK 15:1!19 +MRK 15:1!20 +MRK 15:1!21 +MRK 15:1!22 +MRK 15:1!23 +MRK 15:2!1 +MRK 15:2!2 +MRK 15:2!3 +MRK 15:2!4 +MRK 15:2!5 +MRK 15:2!6 +MRK 15:2!7 +MRK 15:2!8 +MRK 15:2!9 +MRK 15:2!10 +MRK 15:2!11 +MRK 15:2!13 +MRK 15:2!12 +MRK 15:2!14 +MRK 15:2!15 +MRK 15:2!16 +MRK 15:2!17 +MRK 15:2!18 +MRK 15:3!1 +MRK 15:3!2 +MRK 15:3!3 +MRK 15:3!4 +MRK 15:3!5 +MRK 15:3!6 +MRK 15:4!2 +MRK 15:4!1 +MRK 15:4!3 +MRK 15:4!4 +MRK 15:4!5 +MRK 15:4!6 +MRK 15:4!7 +MRK 15:4!8 +MRK 15:4!9 +MRK 15:4!10 +MRK 15:4!11 +MRK 15:4!12 +MRK 15:4!13 +MRK 15:4!14 +MRK 15:5!2 +MRK 15:5!1 +MRK 15:5!3 +MRK 15:5!4 +MRK 15:5!5 +MRK 15:5!6 +MRK 15:5!7 +MRK 15:5!8 +MRK 15:5!9 +MRK 15:5!10 +MRK 15:6!2 +MRK 15:6!1 +MRK 15:6!3 +MRK 15:6!4 +MRK 15:6!5 +MRK 15:6!6 +MRK 15:6!7 +MRK 15:6!8 +MRK 15:6!9 +MRK 15:7!2 +MRK 15:7!1 +MRK 15:7!9 +MRK 15:7!3 +MRK 15:7!4 +MRK 15:7!5 +MRK 15:7!6 +MRK 15:7!7 +MRK 15:7!8 +MRK 15:7!10 +MRK 15:7!11 +MRK 15:7!12 +MRK 15:7!13 +MRK 15:7!14 +MRK 15:7!15 +MRK 15:8!1 +MRK 15:8!2 +MRK 15:8!3 +MRK 15:8!4 +MRK 15:8!5 +MRK 15:8!6 +MRK 15:8!7 +MRK 15:8!8 +MRK 15:8!9 +MRK 15:9!2 +MRK 15:9!1 +MRK 15:9!3 +MRK 15:9!4 +MRK 15:9!5 +MRK 15:9!6 +MRK 15:9!7 +MRK 15:9!8 +MRK 15:9!9 +MRK 15:9!10 +MRK 15:9!11 +MRK 15:9!12 +MRK 15:9!13 +MRK 15:10!2 +MRK 15:10!1 +MRK 15:10!3 +MRK 15:10!4 +MRK 15:10!5 +MRK 15:10!6 +MRK 15:10!7 +MRK 15:10!8 +MRK 15:10!9 +MRK 15:11!2 +MRK 15:11!1 +MRK 15:11!3 +MRK 15:11!4 +MRK 15:11!5 +MRK 15:11!6 +MRK 15:11!7 +MRK 15:11!8 +MRK 15:11!9 +MRK 15:11!10 +MRK 15:11!11 +MRK 15:11!12 +MRK 15:12!2 +MRK 15:12!1 +MRK 15:12!3 +MRK 15:12!4 +MRK 15:12!5 +MRK 15:12!6 +MRK 15:12!7 +MRK 15:12!9 +MRK 15:12!8 +MRK 15:12!10 +MRK 15:12!11 +MRK 15:12!12 +MRK 15:12!13 +MRK 15:12!14 +MRK 15:12!15 +MRK 15:12!16 +MRK 15:13!2 +MRK 15:13!1 +MRK 15:13!3 +MRK 15:13!4 +MRK 15:13!5 +MRK 15:13!6 +MRK 15:14!2 +MRK 15:14!1 +MRK 15:14!3 +MRK 15:14!4 +MRK 15:14!5 +MRK 15:14!7 +MRK 15:14!8 +MRK 15:14!6 +MRK 15:14!9 +MRK 15:14!11 +MRK 15:14!10 +MRK 15:14!12 +MRK 15:14!13 +MRK 15:14!14 +MRK 15:14!15 +MRK 15:15!2 +MRK 15:15!1 +MRK 15:15!3 +MRK 15:15!4 +MRK 15:15!5 +MRK 15:15!6 +MRK 15:15!7 +MRK 15:15!8 +MRK 15:15!9 +MRK 15:15!10 +MRK 15:15!11 +MRK 15:15!12 +MRK 15:15!13 +MRK 15:15!14 +MRK 15:15!15 +MRK 15:15!16 +MRK 15:15!17 +MRK 15:15!18 +MRK 15:15!19 +MRK 15:15!20 +MRK 15:16!2 +MRK 15:16!1 +MRK 15:16!3 +MRK 15:16!4 +MRK 15:16!5 +MRK 15:16!6 +MRK 15:16!7 +MRK 15:16!8 +MRK 15:16!9 +MRK 15:16!10 +MRK 15:16!11 +MRK 15:16!12 +MRK 15:16!13 +MRK 15:16!14 +MRK 15:16!15 +MRK 15:16!16 +MRK 15:17!1 +MRK 15:17!2 +MRK 15:17!3 +MRK 15:17!4 +MRK 15:17!5 +MRK 15:17!6 +MRK 15:17!7 +MRK 15:17!8 +MRK 15:17!9 +MRK 15:17!10 +MRK 15:18!1 +MRK 15:18!2 +MRK 15:18!3 +MRK 15:18!4 +MRK 15:18!5 +MRK 15:18!6 +MRK 15:18!7 +MRK 15:18!8 +MRK 15:19!1 +MRK 15:19!2 +MRK 15:19!3 +MRK 15:19!4 +MRK 15:19!5 +MRK 15:19!6 +MRK 15:19!7 +MRK 15:19!8 +MRK 15:19!9 +MRK 15:19!10 +MRK 15:19!11 +MRK 15:19!12 +MRK 15:19!13 +MRK 15:19!14 +MRK 15:19!15 +MRK 15:20!1 +MRK 15:20!2 +MRK 15:20!3 +MRK 15:20!4 +MRK 15:20!5 +MRK 15:20!6 +MRK 15:20!7 +MRK 15:20!8 +MRK 15:20!9 +MRK 15:20!10 +MRK 15:20!11 +MRK 15:20!12 +MRK 15:20!13 +MRK 15:20!14 +MRK 15:20!15 +MRK 15:20!16 +MRK 15:20!17 +MRK 15:20!18 +MRK 15:20!19 +MRK 15:20!20 +MRK 15:21!1 +MRK 15:21!2 +MRK 15:21!3 +MRK 15:21!4 +MRK 15:21!5 +MRK 15:21!6 +MRK 15:21!7 +MRK 15:21!8 +MRK 15:21!9 +MRK 15:21!10 +MRK 15:21!11 +MRK 15:21!12 +MRK 15:21!13 +MRK 15:21!14 +MRK 15:21!15 +MRK 15:21!16 +MRK 15:21!17 +MRK 15:21!18 +MRK 15:21!19 +MRK 15:22!1 +MRK 15:22!2 +MRK 15:22!3 +MRK 15:22!4 +MRK 15:22!5 +MRK 15:22!7 +MRK 15:22!6 +MRK 15:22!8 +MRK 15:22!9 +MRK 15:22!10 +MRK 15:22!11 +MRK 15:22!12 +MRK 15:23!1 +MRK 15:23!2 +MRK 15:23!3 +MRK 15:23!4 +MRK 15:23!5 +MRK 15:23!7 +MRK 15:23!6 +MRK 15:23!8 +MRK 15:23!9 +MRK 15:24!1 +MRK 15:24!2 +MRK 15:24!3 +MRK 15:24!4 +MRK 15:24!5 +MRK 15:24!6 +MRK 15:24!7 +MRK 15:24!8 +MRK 15:24!9 +MRK 15:24!10 +MRK 15:24!11 +MRK 15:24!12 +MRK 15:24!13 +MRK 15:24!14 +MRK 15:24!15 +MRK 15:25!2 +MRK 15:25!1 +MRK 15:25!3 +MRK 15:25!4 +MRK 15:25!5 +MRK 15:25!6 +MRK 15:25!7 +MRK 15:26!1 +MRK 15:26!2 +MRK 15:26!8 +MRK 15:26!3 +MRK 15:26!4 +MRK 15:26!5 +MRK 15:26!6 +MRK 15:26!7 +MRK 15:26!9 +MRK 15:26!10 +MRK 15:26!11 +MRK 15:26!12 +MRK 15:27!1 +MRK 15:27!2 +MRK 15:27!3 +MRK 15:27!4 +MRK 15:27!5 +MRK 15:27!6 +MRK 15:27!7 +MRK 15:27!8 +MRK 15:27!9 +MRK 15:27!10 +MRK 15:27!11 +MRK 15:27!12 +MRK 15:27!13 +MRK 15:27!14 +MRK 15:29!1 +MRK 15:29!2 +MRK 15:29!3 +MRK 15:29!4 +MRK 15:29!5 +MRK 15:29!6 +MRK 15:29!7 +MRK 15:29!8 +MRK 15:29!9 +MRK 15:29!10 +MRK 15:29!11 +MRK 15:29!12 +MRK 15:29!13 +MRK 15:29!14 +MRK 15:29!15 +MRK 15:29!16 +MRK 15:29!17 +MRK 15:29!18 +MRK 15:29!19 +MRK 15:29!20 +MRK 15:29!21 +MRK 15:30!1 +MRK 15:30!2 +MRK 15:30!3 +MRK 15:30!4 +MRK 15:30!5 +MRK 15:30!6 +MRK 15:31!1 +MRK 15:31!2 +MRK 15:31!3 +MRK 15:31!4 +MRK 15:31!5 +MRK 15:31!6 +MRK 15:31!7 +MRK 15:31!8 +MRK 15:31!9 +MRK 15:31!10 +MRK 15:31!11 +MRK 15:31!12 +MRK 15:31!13 +MRK 15:31!14 +MRK 15:31!17 +MRK 15:31!15 +MRK 15:31!16 +MRK 15:32!1 +MRK 15:32!2 +MRK 15:32!3 +MRK 15:32!4 +MRK 15:32!5 +MRK 15:32!6 +MRK 15:32!7 +MRK 15:32!8 +MRK 15:32!9 +MRK 15:32!10 +MRK 15:32!11 +MRK 15:32!12 +MRK 15:32!13 +MRK 15:32!14 +MRK 15:32!15 +MRK 15:32!16 +MRK 15:32!17 +MRK 15:32!18 +MRK 15:32!19 +MRK 15:32!20 +MRK 15:32!21 +MRK 15:33!1 +MRK 15:33!2 +MRK 15:33!3 +MRK 15:33!4 +MRK 15:33!5 +MRK 15:33!6 +MRK 15:33!7 +MRK 15:33!8 +MRK 15:33!9 +MRK 15:33!10 +MRK 15:33!11 +MRK 15:33!12 +MRK 15:33!13 +MRK 15:34!1 +MRK 15:34!2 +MRK 15:34!3 +MRK 15:34!4 +MRK 15:34!5 +MRK 15:34!6 +MRK 15:34!7 +MRK 15:34!8 +MRK 15:34!9 +MRK 15:34!10 +MRK 15:34!11 +MRK 15:34!12 +MRK 15:34!13 +MRK 15:34!14 +MRK 15:34!15 +MRK 15:34!16 +MRK 15:34!17 +MRK 15:34!18 +MRK 15:34!19 +MRK 15:34!20 +MRK 15:34!21 +MRK 15:34!22 +MRK 15:34!23 +MRK 15:34!24 +MRK 15:34!25 +MRK 15:34!26 +MRK 15:35!1 +MRK 15:35!2 +MRK 15:35!3 +MRK 15:35!4 +MRK 15:35!5 +MRK 15:35!6 +MRK 15:35!7 +MRK 15:35!8 +MRK 15:35!9 +MRK 15:36!2 +MRK 15:36!3 +MRK 15:36!1 +MRK 15:36!4 +MRK 15:36!5 +MRK 15:36!6 +MRK 15:36!7 +MRK 15:36!8 +MRK 15:36!9 +MRK 15:36!10 +MRK 15:36!11 +MRK 15:36!12 +MRK 15:36!13 +MRK 15:36!14 +MRK 15:36!15 +MRK 15:36!16 +MRK 15:36!17 +MRK 15:36!18 +MRK 15:36!19 +MRK 15:37!2 +MRK 15:37!1 +MRK 15:37!3 +MRK 15:37!4 +MRK 15:37!5 +MRK 15:37!6 +MRK 15:37!7 +MRK 15:38!1 +MRK 15:38!2 +MRK 15:38!3 +MRK 15:38!4 +MRK 15:38!5 +MRK 15:38!6 +MRK 15:38!7 +MRK 15:38!8 +MRK 15:38!9 +MRK 15:38!10 +MRK 15:38!11 +MRK 15:38!12 +MRK 15:39!2 +MRK 15:39!3 +MRK 15:39!4 +MRK 15:39!5 +MRK 15:39!6 +MRK 15:39!7 +MRK 15:39!8 +MRK 15:39!9 +MRK 15:39!1 +MRK 15:39!10 +MRK 15:39!11 +MRK 15:39!12 +MRK 15:39!13 +MRK 15:39!14 +MRK 15:39!15 +MRK 15:39!16 +MRK 15:39!17 +MRK 15:39!18 +MRK 15:39!19 +MRK 15:39!20 +MRK 15:40!2 +MRK 15:40!1 +MRK 15:40!3 +MRK 15:40!4 +MRK 15:40!5 +MRK 15:40!6 +MRK 15:40!7 +MRK 15:40!8 +MRK 15:40!9 +MRK 15:40!10 +MRK 15:40!11 +MRK 15:40!12 +MRK 15:40!13 +MRK 15:40!14 +MRK 15:40!15 +MRK 15:40!16 +MRK 15:40!17 +MRK 15:40!18 +MRK 15:40!19 +MRK 15:40!20 +MRK 15:40!21 +MRK 15:40!22 +MRK 15:40!23 +MRK 15:40!24 +MRK 15:41!1 +MRK 15:41!2 +MRK 15:41!3 +MRK 15:41!4 +MRK 15:41!5 +MRK 15:41!6 +MRK 15:41!7 +MRK 15:41!8 +MRK 15:41!9 +MRK 15:41!10 +MRK 15:41!11 +MRK 15:41!12 +MRK 15:41!13 +MRK 15:41!14 +MRK 15:41!15 +MRK 15:41!16 +MRK 15:41!17 +MRK 15:41!18 +MRK 15:41!19 +MRK 15:42!1 +MRK 15:42!2 +MRK 15:42!3 +MRK 15:42!4 +MRK 15:42!5 +MRK 15:42!6 +MRK 15:42!7 +MRK 15:42!8 +MRK 15:42!9 +MRK 15:42!10 +MRK 15:43!1 +MRK 15:43!2 +MRK 15:43!3 +MRK 15:43!4 +MRK 15:43!5 +MRK 15:43!6 +MRK 15:43!7 +MRK 15:43!8 +MRK 15:43!9 +MRK 15:43!10 +MRK 15:43!11 +MRK 15:43!12 +MRK 15:43!13 +MRK 15:43!14 +MRK 15:43!15 +MRK 15:43!16 +MRK 15:43!17 +MRK 15:43!18 +MRK 15:43!19 +MRK 15:43!20 +MRK 15:43!21 +MRK 15:43!22 +MRK 15:43!23 +MRK 15:43!24 +MRK 15:43!25 +MRK 15:43!26 +MRK 15:43!27 +MRK 15:44!2 +MRK 15:44!1 +MRK 15:44!3 +MRK 15:44!4 +MRK 15:44!5 +MRK 15:44!6 +MRK 15:44!7 +MRK 15:44!8 +MRK 15:44!9 +MRK 15:44!10 +MRK 15:44!11 +MRK 15:44!12 +MRK 15:44!13 +MRK 15:44!14 +MRK 15:44!15 +MRK 15:44!16 +MRK 15:45!1 +MRK 15:45!2 +MRK 15:45!3 +MRK 15:45!4 +MRK 15:45!5 +MRK 15:45!6 +MRK 15:45!7 +MRK 15:45!8 +MRK 15:45!9 +MRK 15:45!10 +MRK 15:46!1 +MRK 15:46!2 +MRK 15:46!3 +MRK 15:46!4 +MRK 15:46!5 +MRK 15:46!6 +MRK 15:46!7 +MRK 15:46!8 +MRK 15:46!9 +MRK 15:46!10 +MRK 15:46!11 +MRK 15:46!12 +MRK 15:46!13 +MRK 15:46!14 +MRK 15:46!15 +MRK 15:46!16 +MRK 15:46!17 +MRK 15:46!18 +MRK 15:46!19 +MRK 15:46!20 +MRK 15:46!21 +MRK 15:46!22 +MRK 15:46!23 +MRK 15:46!24 +MRK 15:46!25 +MRK 15:46!26 +MRK 15:47!2 +MRK 15:47!1 +MRK 15:47!3 +MRK 15:47!4 +MRK 15:47!5 +MRK 15:47!6 +MRK 15:47!7 +MRK 15:47!8 +MRK 15:47!9 +MRK 15:47!10 +MRK 15:47!11 +MRK 15:47!12 +MRK 16:1!1 +MRK 16:1!2 +MRK 16:1!3 +MRK 16:1!4 +MRK 16:1!5 +MRK 16:1!6 +MRK 16:1!7 +MRK 16:1!8 +MRK 16:1!9 +MRK 16:1!10 +MRK 16:1!11 +MRK 16:1!12 +MRK 16:1!13 +MRK 16:1!14 +MRK 16:1!15 +MRK 16:1!16 +MRK 16:1!17 +MRK 16:1!18 +MRK 16:1!19 +MRK 16:1!20 +MRK 16:2!1 +MRK 16:2!2 +MRK 16:2!3 +MRK 16:2!4 +MRK 16:2!5 +MRK 16:2!6 +MRK 16:2!7 +MRK 16:2!8 +MRK 16:2!9 +MRK 16:2!10 +MRK 16:2!11 +MRK 16:2!12 +MRK 16:2!13 +MRK 16:2!14 +MRK 16:3!1 +MRK 16:3!2 +MRK 16:3!3 +MRK 16:3!4 +MRK 16:3!5 +MRK 16:3!6 +MRK 16:3!7 +MRK 16:3!8 +MRK 16:3!9 +MRK 16:3!10 +MRK 16:3!11 +MRK 16:3!12 +MRK 16:3!13 +MRK 16:3!14 +MRK 16:4!1 +MRK 16:4!2 +MRK 16:4!3 +MRK 16:4!4 +MRK 16:4!5 +MRK 16:4!6 +MRK 16:4!7 +MRK 16:4!9 +MRK 16:4!8 +MRK 16:4!10 +MRK 16:4!11 +MRK 16:5!1 +MRK 16:5!2 +MRK 16:5!3 +MRK 16:5!4 +MRK 16:5!5 +MRK 16:5!6 +MRK 16:5!7 +MRK 16:5!8 +MRK 16:5!9 +MRK 16:5!10 +MRK 16:5!11 +MRK 16:5!12 +MRK 16:5!13 +MRK 16:5!14 +MRK 16:5!15 +MRK 16:5!16 +MRK 16:6!2 +MRK 16:6!1 +MRK 16:6!3 +MRK 16:6!4 +MRK 16:6!5 +MRK 16:6!6 +MRK 16:6!8 +MRK 16:6!7 +MRK 16:6!9 +MRK 16:6!10 +MRK 16:6!11 +MRK 16:6!12 +MRK 16:6!13 +MRK 16:6!14 +MRK 16:6!15 +MRK 16:6!16 +MRK 16:6!17 +MRK 16:6!18 +MRK 16:6!19 +MRK 16:6!20 +MRK 16:6!21 +MRK 16:6!22 +MRK 16:7!1 +MRK 16:7!2 +MRK 16:7!3 +MRK 16:7!4 +MRK 16:7!5 +MRK 16:7!6 +MRK 16:7!7 +MRK 16:7!8 +MRK 16:7!9 +MRK 16:7!10 +MRK 16:7!11 +MRK 16:7!12 +MRK 16:7!13 +MRK 16:7!14 +MRK 16:7!15 +MRK 16:7!16 +MRK 16:7!17 +MRK 16:7!18 +MRK 16:7!19 +MRK 16:7!20 +MRK 16:7!21 +MRK 16:8!1 +MRK 16:8!2 +MRK 16:8!3 +MRK 16:8!4 +MRK 16:8!5 +MRK 16:8!6 +MRK 16:8!8 +MRK 16:8!7 +MRK 16:8!9 +MRK 16:8!10 +MRK 16:8!11 +MRK 16:8!12 +MRK 16:8!13 +MRK 16:8!14 +MRK 16:8!15 +MRK 16:8!16 +MRK 16:8!18 +MRK 16:8!17 +MRK 16:9!2 +MRK 16:9!1 +MRK 16:9!3 +MRK 16:9!4 +MRK 16:9!5 +MRK 16:9!6 +MRK 16:9!7 +MRK 16:9!8 +MRK 16:9!9 +MRK 16:9!10 +MRK 16:9!11 +MRK 16:9!12 +MRK 16:9!13 +MRK 16:9!14 +MRK 16:9!15 +MRK 16:10!1 +MRK 16:10!2 +MRK 16:10!3 +MRK 16:10!4 +MRK 16:10!5 +MRK 16:10!6 +MRK 16:10!7 +MRK 16:10!8 +MRK 16:10!9 +MRK 16:10!10 +MRK 16:11!1 +MRK 16:11!2 +MRK 16:11!3 +MRK 16:11!4 +MRK 16:11!5 +MRK 16:11!6 +MRK 16:11!7 +MRK 16:11!8 +MRK 16:11!9 +MRK 16:12!2 +MRK 16:12!1 +MRK 16:12!3 +MRK 16:12!4 +MRK 16:12!5 +MRK 16:12!6 +MRK 16:12!7 +MRK 16:12!8 +MRK 16:12!9 +MRK 16:12!10 +MRK 16:12!11 +MRK 16:12!12 +MRK 16:12!13 +MRK 16:12!14 +MRK 16:13!1 +MRK 16:13!2 +MRK 16:13!3 +MRK 16:13!4 +MRK 16:13!5 +MRK 16:13!6 +MRK 16:13!7 +MRK 16:13!8 +MRK 16:14!2 +MRK 16:14!1 +MRK 16:14!3 +MRK 16:14!4 +MRK 16:14!5 +MRK 16:14!6 +MRK 16:14!7 +MRK 16:14!8 +MRK 16:14!9 +MRK 16:14!10 +MRK 16:14!11 +MRK 16:14!12 +MRK 16:14!13 +MRK 16:14!14 +MRK 16:14!15 +MRK 16:14!16 +MRK 16:14!17 +MRK 16:14!18 +MRK 16:14!19 +MRK 16:14!20 +MRK 16:14!21 +MRK 16:15!1 +MRK 16:15!2 +MRK 16:15!3 +MRK 16:15!4 +MRK 16:15!5 +MRK 16:15!6 +MRK 16:15!7 +MRK 16:15!8 +MRK 16:15!9 +MRK 16:15!10 +MRK 16:15!11 +MRK 16:15!12 +MRK 16:15!13 +MRK 16:15!14 +MRK 16:16!1 +MRK 16:16!2 +MRK 16:16!3 +MRK 16:16!4 +MRK 16:16!5 +MRK 16:16!7 +MRK 16:16!6 +MRK 16:16!8 +MRK 16:16!9 +MRK 16:17!2 +MRK 16:17!1 +MRK 16:17!5 +MRK 16:17!3 +MRK 16:17!4 +MRK 16:17!6 +MRK 16:17!7 +MRK 16:17!8 +MRK 16:17!9 +MRK 16:17!10 +MRK 16:17!11 +MRK 16:17!12 +MRK 16:17!13 +MRK 16:17!15 +MRK 16:17!14 +MRK 16:18!1 +MRK 16:18!2 +MRK 16:18!3 +MRK 16:18!4 +MRK 16:18!5 +MRK 16:18!6 +MRK 16:18!7 +MRK 16:18!8 +MRK 16:18!9 +MRK 16:18!10 +MRK 16:18!11 +MRK 16:18!12 +MRK 16:18!13 +MRK 16:18!14 +MRK 16:18!15 +MRK 16:18!16 +MRK 16:18!17 +MRK 16:19!2 +MRK 16:19!3 +MRK 16:19!1 +MRK 16:19!4 +MRK 16:19!5 +MRK 16:19!6 +MRK 16:19!7 +MRK 16:19!8 +MRK 16:19!9 +MRK 16:19!10 +MRK 16:19!11 +MRK 16:19!12 +MRK 16:19!13 +MRK 16:19!14 +MRK 16:19!15 +MRK 16:19!16 +MRK 16:19!17 +MRK 16:19!18 +MRK 16:19!19 +MRK 16:20!2 +MRK 16:20!1 +MRK 16:20!3 +MRK 16:20!4 +MRK 16:20!5 +MRK 16:20!6 +MRK 16:20!7 +MRK 16:20!8 +MRK 16:20!9 +MRK 16:20!10 +MRK 16:20!11 +MRK 16:20!12 +MRK 16:20!13 +MRK 16:20!14 +MRK 16:20!15 +MRK 16:20!16 +MRK 16:99!2 +MRK 16:99!1 +MRK 16:99!3 +MRK 16:99!4 +MRK 16:99!5 +MRK 16:99!6 +MRK 16:99!7 +MRK 16:99!8 +MRK 16:99!9 +MRK 16:99!10 +MRK 16:99!12 +MRK 16:99!11 +MRK 16:99!13 +MRK 16:99!14 +MRK 16:99!15 +MRK 16:99!16 +MRK 16:99!17 +MRK 16:99!18 +MRK 16:99!19 +MRK 16:99!20 +MRK 16:99!21 +MRK 16:99!22 +MRK 16:99!23 +MRK 16:99!24 +MRK 16:99!25 +MRK 16:99!26 +MRK 16:99!27 +MRK 16:99!28 +MRK 16:99!29 +MRK 16:99!30 +MRK 16:99!31 +MRK 16:99!32 +MRK 16:99!33 +LUK 1:1!1 +LUK 1:1!2 +LUK 1:1!3 +LUK 1:1!4 +LUK 1:1!5 +LUK 1:1!6 +LUK 1:1!7 +LUK 1:1!8 +LUK 1:1!9 +LUK 1:1!10 +LUK 1:1!11 +LUK 1:2!1 +LUK 1:2!2 +LUK 1:2!3 +LUK 1:2!4 +LUK 1:2!5 +LUK 1:2!6 +LUK 1:2!7 +LUK 1:2!8 +LUK 1:2!9 +LUK 1:2!10 +LUK 1:2!11 +LUK 1:2!12 +LUK 1:3!1 +LUK 1:3!2 +LUK 1:3!3 +LUK 1:3!4 +LUK 1:3!5 +LUK 1:3!6 +LUK 1:3!7 +LUK 1:3!8 +LUK 1:3!9 +LUK 1:3!10 +LUK 1:3!11 +LUK 1:4!1 +LUK 1:4!2 +LUK 1:4!3 +LUK 1:4!4 +LUK 1:4!5 +LUK 1:4!6 +LUK 1:4!7 +LUK 1:4!8 +LUK 1:5!1 +LUK 1:5!2 +LUK 1:5!3 +LUK 1:5!4 +LUK 1:5!5 +LUK 1:5!6 +LUK 1:5!7 +LUK 1:5!8 +LUK 1:5!9 +LUK 1:5!10 +LUK 1:5!11 +LUK 1:5!12 +LUK 1:5!13 +LUK 1:5!14 +LUK 1:5!15 +LUK 1:5!16 +LUK 1:5!17 +LUK 1:5!18 +LUK 1:5!19 +LUK 1:5!20 +LUK 1:5!21 +LUK 1:5!22 +LUK 1:5!23 +LUK 1:5!24 +LUK 1:5!25 +LUK 1:5!26 +LUK 1:5!27 +LUK 1:6!2 +LUK 1:6!1 +LUK 1:6!3 +LUK 1:6!4 +LUK 1:6!5 +LUK 1:6!6 +LUK 1:6!7 +LUK 1:6!8 +LUK 1:6!9 +LUK 1:6!10 +LUK 1:6!11 +LUK 1:6!12 +LUK 1:6!13 +LUK 1:6!14 +LUK 1:6!15 +LUK 1:6!16 +LUK 1:6!17 +LUK 1:7!1 +LUK 1:7!2 +LUK 1:7!3 +LUK 1:7!4 +LUK 1:7!5 +LUK 1:7!6 +LUK 1:7!7 +LUK 1:7!8 +LUK 1:7!9 +LUK 1:7!10 +LUK 1:7!11 +LUK 1:7!12 +LUK 1:7!13 +LUK 1:7!18 +LUK 1:7!14 +LUK 1:7!15 +LUK 1:7!16 +LUK 1:7!17 +LUK 1:8!2 +LUK 1:8!1 +LUK 1:8!3 +LUK 1:8!4 +LUK 1:8!5 +LUK 1:8!6 +LUK 1:8!7 +LUK 1:8!8 +LUK 1:8!9 +LUK 1:8!10 +LUK 1:8!11 +LUK 1:8!12 +LUK 1:8!13 +LUK 1:8!14 +LUK 1:8!15 +LUK 1:9!1 +LUK 1:9!2 +LUK 1:9!3 +LUK 1:9!4 +LUK 1:9!5 +LUK 1:9!6 +LUK 1:9!7 +LUK 1:9!8 +LUK 1:9!9 +LUK 1:9!10 +LUK 1:9!11 +LUK 1:9!12 +LUK 1:9!13 +LUK 1:9!14 +LUK 1:10!1 +LUK 1:10!2 +LUK 1:10!3 +LUK 1:10!4 +LUK 1:10!6 +LUK 1:10!7 +LUK 1:10!5 +LUK 1:10!8 +LUK 1:10!9 +LUK 1:10!10 +LUK 1:10!11 +LUK 1:10!12 +LUK 1:10!13 +LUK 1:11!2 +LUK 1:11!1 +LUK 1:11!3 +LUK 1:11!4 +LUK 1:11!5 +LUK 1:11!6 +LUK 1:11!7 +LUK 1:11!8 +LUK 1:11!9 +LUK 1:11!10 +LUK 1:11!11 +LUK 1:11!12 +LUK 1:12!1 +LUK 1:12!2 +LUK 1:12!3 +LUK 1:12!4 +LUK 1:12!5 +LUK 1:12!6 +LUK 1:12!7 +LUK 1:12!8 +LUK 1:12!9 +LUK 1:13!2 +LUK 1:13!1 +LUK 1:13!3 +LUK 1:13!4 +LUK 1:13!5 +LUK 1:13!6 +LUK 1:13!7 +LUK 1:13!8 +LUK 1:13!9 +LUK 1:13!10 +LUK 1:13!11 +LUK 1:13!12 +LUK 1:13!13 +LUK 1:13!14 +LUK 1:13!15 +LUK 1:13!16 +LUK 1:13!17 +LUK 1:13!18 +LUK 1:13!19 +LUK 1:13!20 +LUK 1:13!21 +LUK 1:13!22 +LUK 1:13!23 +LUK 1:13!24 +LUK 1:13!25 +LUK 1:13!26 +LUK 1:13!27 +LUK 1:13!28 +LUK 1:14!1 +LUK 1:14!2 +LUK 1:14!4 +LUK 1:14!3 +LUK 1:14!5 +LUK 1:14!6 +LUK 1:14!7 +LUK 1:14!8 +LUK 1:14!9 +LUK 1:14!10 +LUK 1:14!11 +LUK 1:14!12 +LUK 1:14!13 +LUK 1:15!2 +LUK 1:15!1 +LUK 1:15!3 +LUK 1:15!4 +LUK 1:15!5 +LUK 1:15!6 +LUK 1:15!7 +LUK 1:15!8 +LUK 1:15!9 +LUK 1:15!10 +LUK 1:15!11 +LUK 1:15!12 +LUK 1:15!13 +LUK 1:15!14 +LUK 1:15!15 +LUK 1:15!16 +LUK 1:15!17 +LUK 1:15!18 +LUK 1:15!19 +LUK 1:15!20 +LUK 1:15!21 +LUK 1:16!1 +LUK 1:16!2 +LUK 1:16!3 +LUK 1:16!4 +LUK 1:16!5 +LUK 1:16!6 +LUK 1:16!7 +LUK 1:16!8 +LUK 1:16!9 +LUK 1:16!10 +LUK 1:16!11 +LUK 1:17!1 +LUK 1:17!2 +LUK 1:17!3 +LUK 1:17!4 +LUK 1:17!5 +LUK 1:17!6 +LUK 1:17!7 +LUK 1:17!8 +LUK 1:17!9 +LUK 1:17!10 +LUK 1:17!11 +LUK 1:17!12 +LUK 1:17!13 +LUK 1:17!14 +LUK 1:17!15 +LUK 1:17!16 +LUK 1:17!17 +LUK 1:17!18 +LUK 1:17!19 +LUK 1:17!20 +LUK 1:17!21 +LUK 1:17!22 +LUK 1:17!23 +LUK 1:17!24 +LUK 1:18!1 +LUK 1:18!2 +LUK 1:18!3 +LUK 1:18!4 +LUK 1:18!5 +LUK 1:18!6 +LUK 1:18!7 +LUK 1:18!8 +LUK 1:18!9 +LUK 1:18!10 +LUK 1:18!12 +LUK 1:18!11 +LUK 1:18!13 +LUK 1:18!14 +LUK 1:18!15 +LUK 1:18!16 +LUK 1:18!17 +LUK 1:18!18 +LUK 1:18!19 +LUK 1:18!20 +LUK 1:18!21 +LUK 1:18!22 +LUK 1:18!23 +LUK 1:19!1 +LUK 1:19!2 +LUK 1:19!3 +LUK 1:19!4 +LUK 1:19!5 +LUK 1:19!6 +LUK 1:19!7 +LUK 1:19!8 +LUK 1:19!9 +LUK 1:19!10 +LUK 1:19!11 +LUK 1:19!12 +LUK 1:19!13 +LUK 1:19!14 +LUK 1:19!15 +LUK 1:19!16 +LUK 1:19!17 +LUK 1:19!18 +LUK 1:19!19 +LUK 1:19!20 +LUK 1:19!21 +LUK 1:19!22 +LUK 1:19!23 +LUK 1:20!1 +LUK 1:20!2 +LUK 1:20!3 +LUK 1:20!4 +LUK 1:20!5 +LUK 1:20!6 +LUK 1:20!7 +LUK 1:20!8 +LUK 1:20!9 +LUK 1:20!10 +LUK 1:20!11 +LUK 1:20!12 +LUK 1:20!13 +LUK 1:20!14 +LUK 1:20!15 +LUK 1:20!16 +LUK 1:20!17 +LUK 1:20!18 +LUK 1:20!19 +LUK 1:20!20 +LUK 1:20!21 +LUK 1:20!22 +LUK 1:20!23 +LUK 1:20!24 +LUK 1:20!25 +LUK 1:20!26 +LUK 1:21!1 +LUK 1:21!2 +LUK 1:21!5 +LUK 1:21!3 +LUK 1:21!4 +LUK 1:21!6 +LUK 1:21!7 +LUK 1:21!8 +LUK 1:21!9 +LUK 1:21!10 +LUK 1:21!11 +LUK 1:21!12 +LUK 1:21!13 +LUK 1:21!14 +LUK 1:21!15 +LUK 1:21!16 +LUK 1:22!2 +LUK 1:22!1 +LUK 1:22!3 +LUK 1:22!4 +LUK 1:22!5 +LUK 1:22!6 +LUK 1:22!7 +LUK 1:22!8 +LUK 1:22!9 +LUK 1:22!10 +LUK 1:22!11 +LUK 1:22!12 +LUK 1:22!13 +LUK 1:22!14 +LUK 1:22!15 +LUK 1:22!16 +LUK 1:22!17 +LUK 1:22!18 +LUK 1:22!19 +LUK 1:22!20 +LUK 1:22!21 +LUK 1:22!22 +LUK 1:23!1 +LUK 1:23!2 +LUK 1:23!3 +LUK 1:23!4 +LUK 1:23!5 +LUK 1:23!6 +LUK 1:23!7 +LUK 1:23!8 +LUK 1:23!9 +LUK 1:23!10 +LUK 1:23!11 +LUK 1:23!12 +LUK 1:23!13 +LUK 1:23!14 +LUK 1:24!2 +LUK 1:24!1 +LUK 1:24!3 +LUK 1:24!4 +LUK 1:24!5 +LUK 1:24!6 +LUK 1:24!7 +LUK 1:24!8 +LUK 1:24!9 +LUK 1:24!10 +LUK 1:24!11 +LUK 1:24!12 +LUK 1:24!13 +LUK 1:24!14 +LUK 1:24!15 +LUK 1:24!16 +LUK 1:25!1 +LUK 1:25!2 +LUK 1:25!3 +LUK 1:25!4 +LUK 1:25!5 +LUK 1:25!6 +LUK 1:25!7 +LUK 1:25!8 +LUK 1:25!9 +LUK 1:25!10 +LUK 1:25!11 +LUK 1:25!12 +LUK 1:25!13 +LUK 1:25!14 +LUK 1:26!2 +LUK 1:26!1 +LUK 1:26!3 +LUK 1:26!4 +LUK 1:26!5 +LUK 1:26!6 +LUK 1:26!7 +LUK 1:26!8 +LUK 1:26!9 +LUK 1:26!10 +LUK 1:26!11 +LUK 1:26!12 +LUK 1:26!13 +LUK 1:26!14 +LUK 1:26!15 +LUK 1:26!16 +LUK 1:26!17 +LUK 1:26!18 +LUK 1:26!19 +LUK 1:26!20 +LUK 1:27!1 +LUK 1:27!2 +LUK 1:27!3 +LUK 1:27!4 +LUK 1:27!5 +LUK 1:27!6 +LUK 1:27!7 +LUK 1:27!8 +LUK 1:27!9 +LUK 1:27!10 +LUK 1:27!11 +LUK 1:27!12 +LUK 1:27!13 +LUK 1:27!14 +LUK 1:27!15 +LUK 1:27!16 +LUK 1:28!1 +LUK 1:28!2 +LUK 1:28!3 +LUK 1:28!4 +LUK 1:28!5 +LUK 1:28!6 +LUK 1:28!7 +LUK 1:28!8 +LUK 1:28!9 +LUK 1:28!10 +LUK 1:28!11 +LUK 1:29!2 +LUK 1:29!1 +LUK 1:29!3 +LUK 1:29!4 +LUK 1:29!5 +LUK 1:29!6 +LUK 1:29!7 +LUK 1:29!8 +LUK 1:29!9 +LUK 1:29!10 +LUK 1:29!11 +LUK 1:29!12 +LUK 1:29!13 +LUK 1:30!1 +LUK 1:30!2 +LUK 1:30!3 +LUK 1:30!4 +LUK 1:30!5 +LUK 1:30!6 +LUK 1:30!7 +LUK 1:30!8 +LUK 1:30!10 +LUK 1:30!9 +LUK 1:30!11 +LUK 1:30!12 +LUK 1:30!13 +LUK 1:30!14 +LUK 1:31!1 +LUK 1:31!2 +LUK 1:31!3 +LUK 1:31!4 +LUK 1:31!5 +LUK 1:31!6 +LUK 1:31!7 +LUK 1:31!8 +LUK 1:31!9 +LUK 1:31!10 +LUK 1:31!11 +LUK 1:31!12 +LUK 1:31!13 +LUK 1:31!14 +LUK 1:32!1 +LUK 1:32!2 +LUK 1:32!3 +LUK 1:32!4 +LUK 1:32!5 +LUK 1:32!6 +LUK 1:32!7 +LUK 1:32!8 +LUK 1:32!9 +LUK 1:32!10 +LUK 1:32!11 +LUK 1:32!12 +LUK 1:32!13 +LUK 1:32!14 +LUK 1:32!15 +LUK 1:32!16 +LUK 1:32!17 +LUK 1:32!18 +LUK 1:32!19 +LUK 1:33!1 +LUK 1:33!2 +LUK 1:33!3 +LUK 1:33!4 +LUK 1:33!5 +LUK 1:33!6 +LUK 1:33!7 +LUK 1:33!8 +LUK 1:33!9 +LUK 1:33!10 +LUK 1:33!11 +LUK 1:33!12 +LUK 1:33!13 +LUK 1:33!14 +LUK 1:33!15 +LUK 1:33!16 +LUK 1:34!2 +LUK 1:34!1 +LUK 1:34!3 +LUK 1:34!4 +LUK 1:34!5 +LUK 1:34!6 +LUK 1:34!7 +LUK 1:34!8 +LUK 1:34!9 +LUK 1:34!10 +LUK 1:34!11 +LUK 1:34!12 +LUK 1:34!13 +LUK 1:35!1 +LUK 1:35!2 +LUK 1:35!3 +LUK 1:35!4 +LUK 1:35!5 +LUK 1:35!6 +LUK 1:35!7 +LUK 1:35!8 +LUK 1:35!9 +LUK 1:35!10 +LUK 1:35!11 +LUK 1:35!12 +LUK 1:35!13 +LUK 1:35!14 +LUK 1:35!15 +LUK 1:35!16 +LUK 1:35!17 +LUK 1:35!18 +LUK 1:35!19 +LUK 1:35!20 +LUK 1:35!21 +LUK 1:35!22 +LUK 1:35!23 +LUK 1:35!24 +LUK 1:36!1 +LUK 1:36!2 +LUK 1:36!3 +LUK 1:36!4 +LUK 1:36!5 +LUK 1:36!6 +LUK 1:36!7 +LUK 1:36!8 +LUK 1:36!9 +LUK 1:36!10 +LUK 1:36!11 +LUK 1:36!12 +LUK 1:36!13 +LUK 1:36!14 +LUK 1:36!15 +LUK 1:36!16 +LUK 1:36!17 +LUK 1:36!18 +LUK 1:36!19 +LUK 1:36!20 +LUK 1:36!21 +LUK 1:36!22 +LUK 1:37!1 +LUK 1:37!2 +LUK 1:37!3 +LUK 1:37!4 +LUK 1:37!5 +LUK 1:37!6 +LUK 1:37!7 +LUK 1:37!8 +LUK 1:38!2 +LUK 1:38!1 +LUK 1:38!3 +LUK 1:38!4 +LUK 1:38!5 +LUK 1:38!6 +LUK 1:38!7 +LUK 1:38!8 +LUK 1:38!9 +LUK 1:38!10 +LUK 1:38!11 +LUK 1:38!12 +LUK 1:38!13 +LUK 1:38!14 +LUK 1:38!15 +LUK 1:38!16 +LUK 1:38!17 +LUK 1:38!18 +LUK 1:38!19 +LUK 1:39!2 +LUK 1:39!3 +LUK 1:39!1 +LUK 1:39!4 +LUK 1:39!5 +LUK 1:39!6 +LUK 1:39!7 +LUK 1:39!8 +LUK 1:39!9 +LUK 1:39!10 +LUK 1:39!11 +LUK 1:39!12 +LUK 1:39!13 +LUK 1:39!14 +LUK 1:39!15 +LUK 1:39!16 +LUK 1:40!1 +LUK 1:40!2 +LUK 1:40!3 +LUK 1:40!4 +LUK 1:40!5 +LUK 1:40!6 +LUK 1:40!7 +LUK 1:40!8 +LUK 1:40!9 +LUK 1:40!10 +LUK 1:41!1 +LUK 1:41!2 +LUK 1:41!3 +LUK 1:41!4 +LUK 1:41!5 +LUK 1:41!6 +LUK 1:41!7 +LUK 1:41!8 +LUK 1:41!9 +LUK 1:41!10 +LUK 1:41!11 +LUK 1:41!12 +LUK 1:41!13 +LUK 1:41!14 +LUK 1:41!15 +LUK 1:41!16 +LUK 1:41!17 +LUK 1:41!18 +LUK 1:41!19 +LUK 1:41!20 +LUK 1:41!21 +LUK 1:41!22 +LUK 1:41!23 +LUK 1:42!1 +LUK 1:42!2 +LUK 1:42!3 +LUK 1:42!4 +LUK 1:42!5 +LUK 1:42!6 +LUK 1:42!7 +LUK 1:42!8 +LUK 1:42!9 +LUK 1:42!10 +LUK 1:42!11 +LUK 1:42!12 +LUK 1:42!13 +LUK 1:42!14 +LUK 1:42!15 +LUK 1:42!16 +LUK 1:42!17 +LUK 1:43!1 +LUK 1:43!2 +LUK 1:43!3 +LUK 1:43!4 +LUK 1:43!5 +LUK 1:43!6 +LUK 1:43!7 +LUK 1:43!8 +LUK 1:43!9 +LUK 1:43!10 +LUK 1:43!11 +LUK 1:43!12 +LUK 1:43!13 +LUK 1:44!2 +LUK 1:44!1 +LUK 1:44!3 +LUK 1:44!4 +LUK 1:44!5 +LUK 1:44!6 +LUK 1:44!7 +LUK 1:44!8 +LUK 1:44!9 +LUK 1:44!10 +LUK 1:44!11 +LUK 1:44!12 +LUK 1:44!13 +LUK 1:44!14 +LUK 1:44!15 +LUK 1:44!16 +LUK 1:44!17 +LUK 1:44!18 +LUK 1:44!19 +LUK 1:44!20 +LUK 1:44!21 +LUK 1:44!22 +LUK 1:45!1 +LUK 1:45!2 +LUK 1:45!3 +LUK 1:45!4 +LUK 1:45!5 +LUK 1:45!6 +LUK 1:45!7 +LUK 1:45!8 +LUK 1:45!9 +LUK 1:45!10 +LUK 1:45!11 +LUK 1:45!12 +LUK 1:46!1 +LUK 1:46!2 +LUK 1:46!3 +LUK 1:46!4 +LUK 1:46!5 +LUK 1:46!6 +LUK 1:46!7 +LUK 1:46!8 +LUK 1:46!9 +LUK 1:47!1 +LUK 1:47!2 +LUK 1:47!3 +LUK 1:47!4 +LUK 1:47!5 +LUK 1:47!6 +LUK 1:47!7 +LUK 1:47!8 +LUK 1:47!9 +LUK 1:47!10 +LUK 1:47!11 +LUK 1:48!1 +LUK 1:48!2 +LUK 1:48!3 +LUK 1:48!4 +LUK 1:48!5 +LUK 1:48!6 +LUK 1:48!7 +LUK 1:48!8 +LUK 1:48!10 +LUK 1:48!9 +LUK 1:48!11 +LUK 1:48!12 +LUK 1:48!13 +LUK 1:48!14 +LUK 1:48!15 +LUK 1:48!16 +LUK 1:48!17 +LUK 1:48!18 +LUK 1:49!1 +LUK 1:49!2 +LUK 1:49!3 +LUK 1:49!4 +LUK 1:49!5 +LUK 1:49!6 +LUK 1:49!7 +LUK 1:49!8 +LUK 1:49!9 +LUK 1:49!10 +LUK 1:49!11 +LUK 1:50!1 +LUK 1:50!2 +LUK 1:50!3 +LUK 1:50!4 +LUK 1:50!5 +LUK 1:50!6 +LUK 1:50!7 +LUK 1:50!8 +LUK 1:50!9 +LUK 1:50!10 +LUK 1:50!11 +LUK 1:51!1 +LUK 1:51!2 +LUK 1:51!3 +LUK 1:51!4 +LUK 1:51!5 +LUK 1:51!6 +LUK 1:51!7 +LUK 1:51!8 +LUK 1:51!9 +LUK 1:51!10 +LUK 1:52!1 +LUK 1:52!2 +LUK 1:52!3 +LUK 1:52!4 +LUK 1:52!5 +LUK 1:52!6 +LUK 1:52!7 +LUK 1:53!1 +LUK 1:53!2 +LUK 1:53!3 +LUK 1:53!4 +LUK 1:53!5 +LUK 1:53!6 +LUK 1:53!7 +LUK 1:54!1 +LUK 1:54!2 +LUK 1:54!3 +LUK 1:54!4 +LUK 1:54!5 +LUK 1:54!6 +LUK 1:55!7 +LUK 1:55!8 +LUK 1:55!9 +LUK 1:55!10 +LUK 1:55!11 +LUK 1:55!12 +LUK 1:55!13 +LUK 1:55!14 +LUK 1:55!15 +LUK 1:55!1 +LUK 1:55!2 +LUK 1:55!3 +LUK 1:55!4 +LUK 1:55!5 +LUK 1:55!6 +LUK 1:56!2 +LUK 1:56!1 +LUK 1:56!3 +LUK 1:56!4 +LUK 1:56!5 +LUK 1:56!6 +LUK 1:56!7 +LUK 1:56!8 +LUK 1:56!9 +LUK 1:56!10 +LUK 1:56!11 +LUK 1:56!12 +LUK 1:56!13 +LUK 1:56!14 +LUK 1:57!2 +LUK 1:57!1 +LUK 1:57!3 +LUK 1:57!4 +LUK 1:57!5 +LUK 1:57!6 +LUK 1:57!7 +LUK 1:57!8 +LUK 1:57!9 +LUK 1:57!10 +LUK 1:57!11 +LUK 1:57!12 +LUK 1:58!1 +LUK 1:58!2 +LUK 1:58!3 +LUK 1:58!4 +LUK 1:58!5 +LUK 1:58!6 +LUK 1:58!7 +LUK 1:58!8 +LUK 1:58!9 +LUK 1:58!10 +LUK 1:58!11 +LUK 1:58!12 +LUK 1:58!13 +LUK 1:58!14 +LUK 1:58!15 +LUK 1:58!16 +LUK 1:58!17 +LUK 1:58!18 +LUK 1:58!19 +LUK 1:59!1 +LUK 1:59!2 +LUK 1:59!3 +LUK 1:59!4 +LUK 1:59!5 +LUK 1:59!6 +LUK 1:59!7 +LUK 1:59!8 +LUK 1:59!9 +LUK 1:59!10 +LUK 1:59!11 +LUK 1:59!12 +LUK 1:59!13 +LUK 1:59!14 +LUK 1:59!15 +LUK 1:59!16 +LUK 1:59!17 +LUK 1:59!18 +LUK 1:59!19 +LUK 1:59!20 +LUK 1:59!21 +LUK 1:60!1 +LUK 1:60!2 +LUK 1:60!3 +LUK 1:60!4 +LUK 1:60!5 +LUK 1:60!6 +LUK 1:60!7 +LUK 1:60!8 +LUK 1:60!9 +LUK 1:60!10 +LUK 1:61!1 +LUK 1:61!2 +LUK 1:61!3 +LUK 1:61!4 +LUK 1:61!5 +LUK 1:61!7 +LUK 1:61!8 +LUK 1:61!9 +LUK 1:61!10 +LUK 1:61!11 +LUK 1:61!6 +LUK 1:61!12 +LUK 1:61!13 +LUK 1:61!14 +LUK 1:61!15 +LUK 1:61!16 +LUK 1:62!2 +LUK 1:62!1 +LUK 1:62!3 +LUK 1:62!4 +LUK 1:62!5 +LUK 1:62!6 +LUK 1:62!8 +LUK 1:62!9 +LUK 1:62!7 +LUK 1:62!10 +LUK 1:62!11 +LUK 1:63!1 +LUK 1:63!2 +LUK 1:63!3 +LUK 1:63!4 +LUK 1:63!5 +LUK 1:63!6 +LUK 1:63!7 +LUK 1:63!8 +LUK 1:63!9 +LUK 1:63!10 +LUK 1:63!11 +LUK 1:63!12 +LUK 1:64!2 +LUK 1:64!1 +LUK 1:64!3 +LUK 1:64!4 +LUK 1:64!5 +LUK 1:64!6 +LUK 1:64!7 +LUK 1:64!8 +LUK 1:64!9 +LUK 1:64!10 +LUK 1:64!11 +LUK 1:64!12 +LUK 1:64!13 +LUK 1:64!14 +LUK 1:64!15 +LUK 1:65!1 +LUK 1:65!2 +LUK 1:65!5 +LUK 1:65!3 +LUK 1:65!4 +LUK 1:65!6 +LUK 1:65!7 +LUK 1:65!8 +LUK 1:65!9 +LUK 1:65!10 +LUK 1:65!11 +LUK 1:65!12 +LUK 1:65!13 +LUK 1:65!14 +LUK 1:65!15 +LUK 1:65!16 +LUK 1:65!17 +LUK 1:65!18 +LUK 1:65!19 +LUK 1:65!20 +LUK 1:66!1 +LUK 1:66!2 +LUK 1:66!3 +LUK 1:66!4 +LUK 1:66!5 +LUK 1:66!6 +LUK 1:66!7 +LUK 1:66!8 +LUK 1:66!9 +LUK 1:66!10 +LUK 1:66!12 +LUK 1:66!11 +LUK 1:66!13 +LUK 1:66!14 +LUK 1:66!15 +LUK 1:66!16 +LUK 1:66!18 +LUK 1:66!17 +LUK 1:66!19 +LUK 1:66!20 +LUK 1:66!21 +LUK 1:66!22 +LUK 1:66!23 +LUK 1:67!1 +LUK 1:67!2 +LUK 1:67!3 +LUK 1:67!4 +LUK 1:67!5 +LUK 1:67!6 +LUK 1:67!7 +LUK 1:67!8 +LUK 1:67!9 +LUK 1:67!10 +LUK 1:67!11 +LUK 1:68!1 +LUK 1:68!2 +LUK 1:68!3 +LUK 1:68!4 +LUK 1:68!5 +LUK 1:68!6 +LUK 1:68!7 +LUK 1:68!8 +LUK 1:68!9 +LUK 1:68!10 +LUK 1:68!11 +LUK 1:68!12 +LUK 1:68!13 +LUK 1:68!14 +LUK 1:69!1 +LUK 1:69!2 +LUK 1:69!3 +LUK 1:69!4 +LUK 1:69!5 +LUK 1:69!6 +LUK 1:69!7 +LUK 1:69!8 +LUK 1:69!9 +LUK 1:69!10 +LUK 1:70!1 +LUK 1:70!2 +LUK 1:70!3 +LUK 1:70!4 +LUK 1:70!5 +LUK 1:70!6 +LUK 1:70!7 +LUK 1:70!8 +LUK 1:70!9 +LUK 1:70!10 +LUK 1:71!1 +LUK 1:71!2 +LUK 1:71!3 +LUK 1:71!4 +LUK 1:71!5 +LUK 1:71!6 +LUK 1:71!7 +LUK 1:71!8 +LUK 1:71!9 +LUK 1:71!10 +LUK 1:71!11 +LUK 1:72!1 +LUK 1:72!2 +LUK 1:72!3 +LUK 1:72!4 +LUK 1:72!5 +LUK 1:72!6 +LUK 1:72!7 +LUK 1:72!8 +LUK 1:72!9 +LUK 1:72!10 +LUK 1:72!11 +LUK 1:73!1 +LUK 1:73!2 +LUK 1:73!3 +LUK 1:73!4 +LUK 1:73!5 +LUK 1:73!6 +LUK 1:73!7 +LUK 1:73!8 +LUK 1:73!9 +LUK 1:73!10 +LUK 1:73!11 +LUK 1:74!2 +LUK 1:74!3 +LUK 1:74!4 +LUK 1:74!5 +LUK 1:74!1 +LUK 1:74!6 +LUK 1:74!7 +LUK 1:75!1 +LUK 1:75!2 +LUK 1:75!3 +LUK 1:75!4 +LUK 1:75!5 +LUK 1:75!6 +LUK 1:75!7 +LUK 1:75!8 +LUK 1:75!9 +LUK 1:75!10 +LUK 1:76!3 +LUK 1:76!4 +LUK 1:76!1 +LUK 1:76!2 +LUK 1:76!5 +LUK 1:76!6 +LUK 1:76!7 +LUK 1:76!9 +LUK 1:76!8 +LUK 1:76!10 +LUK 1:76!11 +LUK 1:76!12 +LUK 1:76!13 +LUK 1:76!14 +LUK 1:77!1 +LUK 1:77!2 +LUK 1:77!3 +LUK 1:77!4 +LUK 1:77!5 +LUK 1:77!6 +LUK 1:77!7 +LUK 1:77!8 +LUK 1:77!9 +LUK 1:77!10 +LUK 1:77!11 +LUK 1:78!1 +LUK 1:78!2 +LUK 1:78!3 +LUK 1:78!4 +LUK 1:78!5 +LUK 1:78!6 +LUK 1:78!7 +LUK 1:78!8 +LUK 1:78!9 +LUK 1:78!10 +LUK 1:78!11 +LUK 1:78!12 +LUK 1:79!1 +LUK 1:79!2 +LUK 1:79!3 +LUK 1:79!4 +LUK 1:79!5 +LUK 1:79!6 +LUK 1:79!7 +LUK 1:79!8 +LUK 1:79!9 +LUK 1:79!10 +LUK 1:79!11 +LUK 1:79!12 +LUK 1:79!13 +LUK 1:79!14 +LUK 1:79!15 +LUK 1:79!16 +LUK 1:80!2 +LUK 1:80!1 +LUK 1:80!3 +LUK 1:80!4 +LUK 1:80!5 +LUK 1:80!6 +LUK 1:80!7 +LUK 1:80!8 +LUK 1:80!9 +LUK 1:80!10 +LUK 1:80!11 +LUK 1:80!12 +LUK 1:80!13 +LUK 1:80!14 +LUK 1:80!15 +LUK 1:80!16 +LUK 1:80!17 +LUK 1:80!18 +LUK 1:80!19 +LUK 2:1!2 +LUK 2:1!1 +LUK 2:1!3 +LUK 2:1!4 +LUK 2:1!5 +LUK 2:1!6 +LUK 2:1!7 +LUK 2:1!8 +LUK 2:1!9 +LUK 2:1!10 +LUK 2:1!11 +LUK 2:1!12 +LUK 2:1!13 +LUK 2:1!14 +LUK 2:1!15 +LUK 2:2!1 +LUK 2:2!2 +LUK 2:2!3 +LUK 2:2!4 +LUK 2:2!5 +LUK 2:2!6 +LUK 2:2!7 +LUK 2:2!8 +LUK 2:3!1 +LUK 2:3!2 +LUK 2:3!3 +LUK 2:3!4 +LUK 2:3!5 +LUK 2:3!6 +LUK 2:3!7 +LUK 2:3!8 +LUK 2:3!9 +LUK 2:4!2 +LUK 2:4!1 +LUK 2:4!3 +LUK 2:4!4 +LUK 2:4!5 +LUK 2:4!6 +LUK 2:4!7 +LUK 2:4!8 +LUK 2:4!9 +LUK 2:4!10 +LUK 2:4!11 +LUK 2:4!12 +LUK 2:4!13 +LUK 2:4!14 +LUK 2:4!15 +LUK 2:4!16 +LUK 2:4!17 +LUK 2:4!18 +LUK 2:4!19 +LUK 2:4!20 +LUK 2:4!21 +LUK 2:4!22 +LUK 2:4!23 +LUK 2:4!24 +LUK 2:4!25 +LUK 2:4!26 +LUK 2:4!27 +LUK 2:4!28 +LUK 2:5!1 +LUK 2:5!2 +LUK 2:5!3 +LUK 2:5!4 +LUK 2:5!5 +LUK 2:5!6 +LUK 2:5!7 +LUK 2:5!8 +LUK 2:6!2 +LUK 2:6!1 +LUK 2:6!3 +LUK 2:6!4 +LUK 2:6!5 +LUK 2:6!6 +LUK 2:6!7 +LUK 2:6!8 +LUK 2:6!9 +LUK 2:6!10 +LUK 2:6!11 +LUK 2:6!12 +LUK 2:6!13 +LUK 2:7!1 +LUK 2:7!2 +LUK 2:7!3 +LUK 2:7!4 +LUK 2:7!5 +LUK 2:7!6 +LUK 2:7!7 +LUK 2:7!8 +LUK 2:7!9 +LUK 2:7!10 +LUK 2:7!11 +LUK 2:7!12 +LUK 2:7!13 +LUK 2:7!14 +LUK 2:7!15 +LUK 2:7!16 +LUK 2:7!17 +LUK 2:7!18 +LUK 2:7!19 +LUK 2:7!20 +LUK 2:7!21 +LUK 2:7!22 +LUK 2:7!23 +LUK 2:8!1 +LUK 2:8!2 +LUK 2:8!3 +LUK 2:8!4 +LUK 2:8!5 +LUK 2:8!6 +LUK 2:8!7 +LUK 2:8!8 +LUK 2:8!9 +LUK 2:8!10 +LUK 2:8!11 +LUK 2:8!12 +LUK 2:8!13 +LUK 2:8!14 +LUK 2:8!15 +LUK 2:8!16 +LUK 2:8!17 +LUK 2:8!18 +LUK 2:9!1 +LUK 2:9!2 +LUK 2:9!3 +LUK 2:9!4 +LUK 2:9!5 +LUK 2:9!6 +LUK 2:9!7 +LUK 2:9!8 +LUK 2:9!9 +LUK 2:9!10 +LUK 2:9!11 +LUK 2:9!12 +LUK 2:9!13 +LUK 2:9!14 +LUK 2:10!1 +LUK 2:10!2 +LUK 2:10!3 +LUK 2:10!4 +LUK 2:10!5 +LUK 2:10!6 +LUK 2:10!7 +LUK 2:10!9 +LUK 2:10!8 +LUK 2:10!10 +LUK 2:10!11 +LUK 2:10!12 +LUK 2:10!13 +LUK 2:10!14 +LUK 2:10!15 +LUK 2:10!16 +LUK 2:10!17 +LUK 2:10!18 +LUK 2:11!1 +LUK 2:11!2 +LUK 2:11!3 +LUK 2:11!4 +LUK 2:11!5 +LUK 2:11!6 +LUK 2:11!7 +LUK 2:11!8 +LUK 2:11!9 +LUK 2:11!10 +LUK 2:11!11 +LUK 2:11!12 +LUK 2:12!1 +LUK 2:12!2 +LUK 2:12!3 +LUK 2:12!4 +LUK 2:12!5 +LUK 2:12!6 +LUK 2:12!7 +LUK 2:12!8 +LUK 2:12!9 +LUK 2:12!10 +LUK 2:12!11 +LUK 2:13!1 +LUK 2:13!2 +LUK 2:13!3 +LUK 2:13!4 +LUK 2:13!5 +LUK 2:13!6 +LUK 2:13!7 +LUK 2:13!8 +LUK 2:13!9 +LUK 2:13!10 +LUK 2:13!11 +LUK 2:13!12 +LUK 2:13!13 +LUK 2:13!14 +LUK 2:14!1 +LUK 2:14!2 +LUK 2:14!3 +LUK 2:14!4 +LUK 2:14!5 +LUK 2:14!6 +LUK 2:14!7 +LUK 2:14!8 +LUK 2:14!9 +LUK 2:14!10 +LUK 2:14!11 +LUK 2:15!1 +LUK 2:15!2 +LUK 2:15!3 +LUK 2:15!4 +LUK 2:15!5 +LUK 2:15!6 +LUK 2:15!7 +LUK 2:15!8 +LUK 2:15!9 +LUK 2:15!10 +LUK 2:15!11 +LUK 2:15!12 +LUK 2:15!13 +LUK 2:15!14 +LUK 2:15!15 +LUK 2:15!16 +LUK 2:15!18 +LUK 2:15!17 +LUK 2:15!19 +LUK 2:15!20 +LUK 2:15!21 +LUK 2:15!22 +LUK 2:15!23 +LUK 2:15!24 +LUK 2:15!25 +LUK 2:15!26 +LUK 2:15!27 +LUK 2:15!28 +LUK 2:15!29 +LUK 2:15!30 +LUK 2:15!31 +LUK 2:15!32 +LUK 2:16!1 +LUK 2:16!2 +LUK 2:16!3 +LUK 2:16!4 +LUK 2:16!5 +LUK 2:16!7 +LUK 2:16!6 +LUK 2:16!8 +LUK 2:16!9 +LUK 2:16!10 +LUK 2:16!11 +LUK 2:16!12 +LUK 2:16!13 +LUK 2:16!14 +LUK 2:16!15 +LUK 2:16!16 +LUK 2:16!17 +LUK 2:16!18 +LUK 2:17!2 +LUK 2:17!1 +LUK 2:17!3 +LUK 2:17!4 +LUK 2:17!5 +LUK 2:17!6 +LUK 2:17!7 +LUK 2:17!8 +LUK 2:17!9 +LUK 2:17!10 +LUK 2:17!11 +LUK 2:17!12 +LUK 2:17!13 +LUK 2:18!1 +LUK 2:18!2 +LUK 2:18!3 +LUK 2:18!4 +LUK 2:18!5 +LUK 2:18!6 +LUK 2:18!7 +LUK 2:18!8 +LUK 2:18!9 +LUK 2:18!10 +LUK 2:18!11 +LUK 2:18!12 +LUK 2:18!13 +LUK 2:19!2 +LUK 2:19!1 +LUK 2:19!3 +LUK 2:19!5 +LUK 2:19!4 +LUK 2:19!6 +LUK 2:19!7 +LUK 2:19!8 +LUK 2:19!9 +LUK 2:19!10 +LUK 2:19!11 +LUK 2:19!12 +LUK 2:19!13 +LUK 2:20!1 +LUK 2:20!2 +LUK 2:20!3 +LUK 2:20!4 +LUK 2:20!5 +LUK 2:20!6 +LUK 2:20!7 +LUK 2:20!8 +LUK 2:20!9 +LUK 2:20!10 +LUK 2:20!11 +LUK 2:20!12 +LUK 2:20!13 +LUK 2:20!14 +LUK 2:20!15 +LUK 2:20!16 +LUK 2:20!17 +LUK 2:20!18 +LUK 2:20!19 +LUK 2:21!1 +LUK 2:21!2 +LUK 2:21!3 +LUK 2:21!4 +LUK 2:21!5 +LUK 2:21!6 +LUK 2:21!7 +LUK 2:21!8 +LUK 2:21!9 +LUK 2:21!10 +LUK 2:21!11 +LUK 2:21!12 +LUK 2:21!13 +LUK 2:21!14 +LUK 2:21!15 +LUK 2:21!16 +LUK 2:21!17 +LUK 2:21!18 +LUK 2:21!19 +LUK 2:21!20 +LUK 2:21!21 +LUK 2:21!22 +LUK 2:21!23 +LUK 2:21!24 +LUK 2:21!25 +LUK 2:21!26 +LUK 2:22!1 +LUK 2:22!2 +LUK 2:22!3 +LUK 2:22!4 +LUK 2:22!5 +LUK 2:22!6 +LUK 2:22!7 +LUK 2:22!8 +LUK 2:22!9 +LUK 2:22!10 +LUK 2:22!11 +LUK 2:22!12 +LUK 2:22!13 +LUK 2:22!14 +LUK 2:22!15 +LUK 2:22!16 +LUK 2:22!17 +LUK 2:22!18 +LUK 2:22!19 +LUK 2:23!1 +LUK 2:23!2 +LUK 2:23!3 +LUK 2:23!4 +LUK 2:23!5 +LUK 2:23!6 +LUK 2:23!7 +LUK 2:23!8 +LUK 2:23!9 +LUK 2:23!10 +LUK 2:23!11 +LUK 2:23!12 +LUK 2:23!13 +LUK 2:23!14 +LUK 2:24!1 +LUK 2:24!2 +LUK 2:24!3 +LUK 2:24!4 +LUK 2:24!5 +LUK 2:24!6 +LUK 2:24!7 +LUK 2:24!8 +LUK 2:24!9 +LUK 2:24!10 +LUK 2:24!11 +LUK 2:24!12 +LUK 2:24!13 +LUK 2:24!14 +LUK 2:24!15 +LUK 2:24!16 +LUK 2:24!17 +LUK 2:25!1 +LUK 2:25!2 +LUK 2:25!3 +LUK 2:25!4 +LUK 2:25!5 +LUK 2:25!6 +LUK 2:25!7 +LUK 2:25!8 +LUK 2:25!9 +LUK 2:25!10 +LUK 2:25!11 +LUK 2:25!12 +LUK 2:25!13 +LUK 2:25!14 +LUK 2:25!15 +LUK 2:25!16 +LUK 2:25!17 +LUK 2:25!18 +LUK 2:25!19 +LUK 2:25!20 +LUK 2:25!21 +LUK 2:25!22 +LUK 2:25!24 +LUK 2:25!23 +LUK 2:25!25 +LUK 2:25!26 +LUK 2:26!1 +LUK 2:26!2 +LUK 2:26!4 +LUK 2:26!3 +LUK 2:26!5 +LUK 2:26!6 +LUK 2:26!7 +LUK 2:26!8 +LUK 2:26!9 +LUK 2:26!10 +LUK 2:26!11 +LUK 2:26!12 +LUK 2:26!13 +LUK 2:26!14 +LUK 2:26!15 +LUK 2:26!16 +LUK 2:26!17 +LUK 2:26!18 +LUK 2:26!19 +LUK 2:27!1 +LUK 2:27!2 +LUK 2:27!3 +LUK 2:27!4 +LUK 2:27!5 +LUK 2:27!6 +LUK 2:27!7 +LUK 2:27!8 +LUK 2:27!9 +LUK 2:27!10 +LUK 2:27!11 +LUK 2:27!12 +LUK 2:27!13 +LUK 2:27!14 +LUK 2:27!15 +LUK 2:27!16 +LUK 2:27!17 +LUK 2:27!18 +LUK 2:27!19 +LUK 2:27!20 +LUK 2:27!21 +LUK 2:27!22 +LUK 2:27!23 +LUK 2:27!24 +LUK 2:27!25 +LUK 2:27!26 +LUK 2:27!27 +LUK 2:28!1 +LUK 2:28!2 +LUK 2:28!3 +LUK 2:28!4 +LUK 2:28!5 +LUK 2:28!6 +LUK 2:28!7 +LUK 2:28!8 +LUK 2:28!9 +LUK 2:28!10 +LUK 2:28!11 +LUK 2:28!12 +LUK 2:28!13 +LUK 2:29!6 +LUK 2:29!1 +LUK 2:29!2 +LUK 2:29!3 +LUK 2:29!4 +LUK 2:29!5 +LUK 2:29!7 +LUK 2:29!8 +LUK 2:29!9 +LUK 2:29!10 +LUK 2:29!11 +LUK 2:29!12 +LUK 2:30!1 +LUK 2:30!2 +LUK 2:30!3 +LUK 2:30!4 +LUK 2:30!5 +LUK 2:30!6 +LUK 2:30!7 +LUK 2:30!8 +LUK 2:31!1 +LUK 2:31!2 +LUK 2:31!3 +LUK 2:31!4 +LUK 2:31!5 +LUK 2:31!6 +LUK 2:31!7 +LUK 2:32!1 +LUK 2:32!2 +LUK 2:32!3 +LUK 2:32!4 +LUK 2:32!5 +LUK 2:32!6 +LUK 2:32!7 +LUK 2:32!8 +LUK 2:32!9 +LUK 2:33!1 +LUK 2:33!2 +LUK 2:33!9 +LUK 2:33!3 +LUK 2:33!4 +LUK 2:33!5 +LUK 2:33!6 +LUK 2:33!7 +LUK 2:33!8 +LUK 2:33!10 +LUK 2:33!11 +LUK 2:33!12 +LUK 2:33!13 +LUK 2:33!14 +LUK 2:34!1 +LUK 2:34!2 +LUK 2:34!3 +LUK 2:34!4 +LUK 2:34!5 +LUK 2:34!6 +LUK 2:34!7 +LUK 2:34!8 +LUK 2:34!9 +LUK 2:34!10 +LUK 2:34!11 +LUK 2:34!12 +LUK 2:34!13 +LUK 2:34!14 +LUK 2:34!15 +LUK 2:34!16 +LUK 2:34!17 +LUK 2:34!18 +LUK 2:34!19 +LUK 2:34!20 +LUK 2:34!21 +LUK 2:34!22 +LUK 2:34!23 +LUK 2:34!24 +LUK 2:34!25 +LUK 2:34!26 +LUK 2:35!3 +LUK 2:35!1 +LUK 2:35!2 +LUK 2:35!4 +LUK 2:35!5 +LUK 2:35!6 +LUK 2:35!7 +LUK 2:35!8 +LUK 2:35!9 +LUK 2:35!10 +LUK 2:35!11 +LUK 2:35!12 +LUK 2:35!13 +LUK 2:35!14 +LUK 2:35!15 +LUK 2:36!1 +LUK 2:36!2 +LUK 2:36!3 +LUK 2:36!4 +LUK 2:36!5 +LUK 2:36!6 +LUK 2:36!7 +LUK 2:36!8 +LUK 2:36!9 +LUK 2:36!10 +LUK 2:36!11 +LUK 2:36!12 +LUK 2:36!13 +LUK 2:36!14 +LUK 2:36!15 +LUK 2:36!16 +LUK 2:36!17 +LUK 2:36!18 +LUK 2:36!19 +LUK 2:36!20 +LUK 2:36!21 +LUK 2:36!22 +LUK 2:36!23 +LUK 2:37!1 +LUK 2:37!2 +LUK 2:37!3 +LUK 2:37!4 +LUK 2:37!5 +LUK 2:37!6 +LUK 2:37!7 +LUK 2:37!8 +LUK 2:37!9 +LUK 2:37!10 +LUK 2:37!11 +LUK 2:37!12 +LUK 2:37!13 +LUK 2:37!14 +LUK 2:37!15 +LUK 2:37!16 +LUK 2:37!17 +LUK 2:37!18 +LUK 2:37!19 +LUK 2:38!1 +LUK 2:38!2 +LUK 2:38!3 +LUK 2:38!4 +LUK 2:38!5 +LUK 2:38!6 +LUK 2:38!7 +LUK 2:38!8 +LUK 2:38!9 +LUK 2:38!10 +LUK 2:38!11 +LUK 2:38!12 +LUK 2:38!13 +LUK 2:38!14 +LUK 2:38!15 +LUK 2:38!16 +LUK 2:38!17 +LUK 2:39!1 +LUK 2:39!2 +LUK 2:39!3 +LUK 2:39!4 +LUK 2:39!5 +LUK 2:39!6 +LUK 2:39!7 +LUK 2:39!8 +LUK 2:39!9 +LUK 2:39!10 +LUK 2:39!11 +LUK 2:39!12 +LUK 2:39!13 +LUK 2:39!14 +LUK 2:39!15 +LUK 2:39!16 +LUK 2:39!17 +LUK 2:40!2 +LUK 2:40!1 +LUK 2:40!3 +LUK 2:40!4 +LUK 2:40!5 +LUK 2:40!6 +LUK 2:40!7 +LUK 2:40!8 +LUK 2:40!9 +LUK 2:40!10 +LUK 2:40!11 +LUK 2:40!12 +LUK 2:40!13 +LUK 2:40!14 +LUK 2:41!1 +LUK 2:41!2 +LUK 2:41!3 +LUK 2:41!4 +LUK 2:41!5 +LUK 2:41!6 +LUK 2:41!7 +LUK 2:41!8 +LUK 2:41!9 +LUK 2:41!10 +LUK 2:41!11 +LUK 2:41!12 +LUK 2:41!13 +LUK 2:42!1 +LUK 2:42!2 +LUK 2:42!3 +LUK 2:42!4 +LUK 2:42!5 +LUK 2:42!6 +LUK 2:42!7 +LUK 2:42!8 +LUK 2:42!9 +LUK 2:42!10 +LUK 2:42!11 +LUK 2:42!12 +LUK 2:43!1 +LUK 2:43!2 +LUK 2:43!3 +LUK 2:43!4 +LUK 2:43!5 +LUK 2:43!6 +LUK 2:43!7 +LUK 2:43!8 +LUK 2:43!9 +LUK 2:43!10 +LUK 2:43!11 +LUK 2:43!12 +LUK 2:43!13 +LUK 2:43!14 +LUK 2:43!15 +LUK 2:43!16 +LUK 2:43!17 +LUK 2:43!18 +LUK 2:43!19 +LUK 2:43!20 +LUK 2:44!2 +LUK 2:44!1 +LUK 2:44!3 +LUK 2:44!4 +LUK 2:44!5 +LUK 2:44!6 +LUK 2:44!7 +LUK 2:44!8 +LUK 2:44!9 +LUK 2:44!10 +LUK 2:44!11 +LUK 2:44!12 +LUK 2:44!13 +LUK 2:44!14 +LUK 2:44!15 +LUK 2:44!16 +LUK 2:44!17 +LUK 2:44!18 +LUK 2:44!19 +LUK 2:45!1 +LUK 2:45!2 +LUK 2:45!3 +LUK 2:45!4 +LUK 2:45!5 +LUK 2:45!6 +LUK 2:45!7 +LUK 2:45!8 +LUK 2:46!1 +LUK 2:46!2 +LUK 2:46!3 +LUK 2:46!4 +LUK 2:46!5 +LUK 2:46!6 +LUK 2:46!7 +LUK 2:46!8 +LUK 2:46!9 +LUK 2:46!10 +LUK 2:46!11 +LUK 2:46!12 +LUK 2:46!13 +LUK 2:46!14 +LUK 2:46!15 +LUK 2:46!16 +LUK 2:46!17 +LUK 2:46!18 +LUK 2:46!19 +LUK 2:46!20 +LUK 2:46!21 +LUK 2:47!2 +LUK 2:47!1 +LUK 2:47!3 +LUK 2:47!4 +LUK 2:47!5 +LUK 2:47!6 +LUK 2:47!7 +LUK 2:47!8 +LUK 2:47!9 +LUK 2:47!10 +LUK 2:47!11 +LUK 2:47!12 +LUK 2:47!13 +LUK 2:48!1 +LUK 2:48!2 +LUK 2:48!3 +LUK 2:48!4 +LUK 2:48!5 +LUK 2:48!6 +LUK 2:48!7 +LUK 2:48!8 +LUK 2:48!9 +LUK 2:48!10 +LUK 2:48!11 +LUK 2:48!12 +LUK 2:48!13 +LUK 2:48!14 +LUK 2:48!15 +LUK 2:48!16 +LUK 2:48!17 +LUK 2:48!18 +LUK 2:48!19 +LUK 2:48!20 +LUK 2:48!21 +LUK 2:48!22 +LUK 2:48!23 +LUK 2:48!24 +LUK 2:49!1 +LUK 2:49!2 +LUK 2:49!3 +LUK 2:49!4 +LUK 2:49!5 +LUK 2:49!6 +LUK 2:49!7 +LUK 2:49!8 +LUK 2:49!9 +LUK 2:49!10 +LUK 2:49!11 +LUK 2:49!12 +LUK 2:49!13 +LUK 2:49!14 +LUK 2:49!15 +LUK 2:49!16 +LUK 2:49!18 +LUK 2:49!19 +LUK 2:49!17 +LUK 2:50!1 +LUK 2:50!2 +LUK 2:50!3 +LUK 2:50!4 +LUK 2:50!5 +LUK 2:50!6 +LUK 2:50!7 +LUK 2:50!8 +LUK 2:50!9 +LUK 2:51!1 +LUK 2:51!2 +LUK 2:51!3 +LUK 2:51!4 +LUK 2:51!5 +LUK 2:51!6 +LUK 2:51!7 +LUK 2:51!8 +LUK 2:51!9 +LUK 2:51!10 +LUK 2:51!11 +LUK 2:51!12 +LUK 2:51!13 +LUK 2:51!14 +LUK 2:51!15 +LUK 2:51!16 +LUK 2:51!17 +LUK 2:51!18 +LUK 2:51!19 +LUK 2:51!20 +LUK 2:51!21 +LUK 2:51!22 +LUK 2:51!23 +LUK 2:51!24 +LUK 2:52!1 +LUK 2:52!2 +LUK 2:52!3 +LUK 2:52!4 +LUK 2:52!5 +LUK 2:52!6 +LUK 2:52!7 +LUK 2:52!8 +LUK 2:52!9 +LUK 2:52!10 +LUK 2:52!11 +LUK 2:52!12 +LUK 2:52!13 +LUK 2:52!14 +LUK 3:1!3 +LUK 3:1!1 +LUK 3:1!2 +LUK 3:1!4 +LUK 3:1!5 +LUK 3:1!6 +LUK 3:1!7 +LUK 3:1!8 +LUK 3:1!9 +LUK 3:1!10 +LUK 3:1!11 +LUK 3:1!12 +LUK 3:1!13 +LUK 3:1!14 +LUK 3:1!15 +LUK 3:1!16 +LUK 3:1!17 +LUK 3:1!18 +LUK 3:1!20 +LUK 3:1!19 +LUK 3:1!21 +LUK 3:1!22 +LUK 3:1!23 +LUK 3:1!24 +LUK 3:1!25 +LUK 3:1!26 +LUK 3:1!27 +LUK 3:1!28 +LUK 3:1!29 +LUK 3:1!30 +LUK 3:1!31 +LUK 3:1!32 +LUK 3:1!33 +LUK 3:1!34 +LUK 3:2!1 +LUK 3:2!2 +LUK 3:2!3 +LUK 3:2!4 +LUK 3:2!5 +LUK 3:2!6 +LUK 3:2!7 +LUK 3:2!8 +LUK 3:2!9 +LUK 3:2!10 +LUK 3:2!11 +LUK 3:2!12 +LUK 3:2!13 +LUK 3:2!14 +LUK 3:2!15 +LUK 3:2!16 +LUK 3:3!1 +LUK 3:3!2 +LUK 3:3!3 +LUK 3:3!4 +LUK 3:3!5 +LUK 3:3!6 +LUK 3:3!7 +LUK 3:3!8 +LUK 3:3!9 +LUK 3:3!10 +LUK 3:3!11 +LUK 3:3!12 +LUK 3:3!13 +LUK 3:3!14 +LUK 3:4!1 +LUK 3:4!2 +LUK 3:4!3 +LUK 3:4!4 +LUK 3:4!5 +LUK 3:4!6 +LUK 3:4!7 +LUK 3:4!8 +LUK 3:4!9 +LUK 3:4!10 +LUK 3:4!11 +LUK 3:4!12 +LUK 3:4!13 +LUK 3:4!14 +LUK 3:4!15 +LUK 3:4!16 +LUK 3:4!17 +LUK 3:4!18 +LUK 3:4!19 +LUK 3:4!20 +LUK 3:4!21 +LUK 3:4!22 +LUK 3:5!1 +LUK 3:5!2 +LUK 3:5!3 +LUK 3:5!4 +LUK 3:5!5 +LUK 3:5!6 +LUK 3:5!7 +LUK 3:5!8 +LUK 3:5!9 +LUK 3:5!10 +LUK 3:5!11 +LUK 3:5!12 +LUK 3:5!13 +LUK 3:5!14 +LUK 3:5!15 +LUK 3:5!16 +LUK 3:5!17 +LUK 3:5!18 +LUK 3:5!19 +LUK 3:5!20 +LUK 3:5!21 +LUK 3:6!1 +LUK 3:6!2 +LUK 3:6!3 +LUK 3:6!4 +LUK 3:6!5 +LUK 3:6!6 +LUK 3:6!7 +LUK 3:6!8 +LUK 3:7!2 +LUK 3:7!1 +LUK 3:7!3 +LUK 3:7!4 +LUK 3:7!6 +LUK 3:7!7 +LUK 3:7!8 +LUK 3:7!5 +LUK 3:7!9 +LUK 3:7!10 +LUK 3:7!11 +LUK 3:7!12 +LUK 3:7!13 +LUK 3:7!14 +LUK 3:7!15 +LUK 3:7!16 +LUK 3:7!17 +LUK 3:7!18 +LUK 3:8!2 +LUK 3:8!1 +LUK 3:8!3 +LUK 3:8!4 +LUK 3:8!5 +LUK 3:8!6 +LUK 3:8!7 +LUK 3:8!8 +LUK 3:8!9 +LUK 3:8!10 +LUK 3:8!11 +LUK 3:8!12 +LUK 3:8!13 +LUK 3:8!14 +LUK 3:8!15 +LUK 3:8!16 +LUK 3:8!18 +LUK 3:8!17 +LUK 3:8!19 +LUK 3:8!20 +LUK 3:8!21 +LUK 3:8!22 +LUK 3:8!23 +LUK 3:8!24 +LUK 3:8!25 +LUK 3:8!26 +LUK 3:8!27 +LUK 3:8!28 +LUK 3:8!29 +LUK 3:8!30 +LUK 3:8!31 +LUK 3:9!2 +LUK 3:9!1 +LUK 3:9!3 +LUK 3:9!4 +LUK 3:9!5 +LUK 3:9!6 +LUK 3:9!7 +LUK 3:9!8 +LUK 3:9!9 +LUK 3:9!10 +LUK 3:9!11 +LUK 3:9!13 +LUK 3:9!12 +LUK 3:9!14 +LUK 3:9!15 +LUK 3:9!16 +LUK 3:9!17 +LUK 3:9!18 +LUK 3:9!19 +LUK 3:9!20 +LUK 3:9!21 +LUK 3:9!22 +LUK 3:9!23 +LUK 3:10!1 +LUK 3:10!2 +LUK 3:10!3 +LUK 3:10!4 +LUK 3:10!5 +LUK 3:10!6 +LUK 3:10!8 +LUK 3:10!7 +LUK 3:10!9 +LUK 3:11!2 +LUK 3:11!1 +LUK 3:11!3 +LUK 3:11!4 +LUK 3:11!5 +LUK 3:11!6 +LUK 3:11!7 +LUK 3:11!8 +LUK 3:11!9 +LUK 3:11!10 +LUK 3:11!11 +LUK 3:11!12 +LUK 3:11!13 +LUK 3:11!14 +LUK 3:11!15 +LUK 3:11!16 +LUK 3:11!17 +LUK 3:11!18 +LUK 3:12!2 +LUK 3:12!1 +LUK 3:12!3 +LUK 3:12!4 +LUK 3:12!5 +LUK 3:12!6 +LUK 3:12!7 +LUK 3:12!8 +LUK 3:12!9 +LUK 3:12!10 +LUK 3:12!11 +LUK 3:12!12 +LUK 3:13!2 +LUK 3:13!1 +LUK 3:13!3 +LUK 3:13!4 +LUK 3:13!5 +LUK 3:13!6 +LUK 3:13!7 +LUK 3:13!8 +LUK 3:13!9 +LUK 3:13!10 +LUK 3:13!11 +LUK 3:13!12 +LUK 3:14!2 +LUK 3:14!1 +LUK 3:14!3 +LUK 3:14!4 +LUK 3:14!5 +LUK 3:14!6 +LUK 3:14!7 +LUK 3:14!8 +LUK 3:14!9 +LUK 3:14!10 +LUK 3:14!11 +LUK 3:14!12 +LUK 3:14!13 +LUK 3:14!14 +LUK 3:14!15 +LUK 3:14!16 +LUK 3:14!17 +LUK 3:14!18 +LUK 3:14!19 +LUK 3:14!20 +LUK 3:14!21 +LUK 3:14!22 +LUK 3:15!2 +LUK 3:15!1 +LUK 3:15!3 +LUK 3:15!4 +LUK 3:15!5 +LUK 3:15!6 +LUK 3:15!7 +LUK 3:15!8 +LUK 3:15!9 +LUK 3:15!10 +LUK 3:15!11 +LUK 3:15!12 +LUK 3:15!13 +LUK 3:15!14 +LUK 3:15!15 +LUK 3:15!16 +LUK 3:15!17 +LUK 3:15!18 +LUK 3:15!19 +LUK 3:15!20 +LUK 3:16!1 +LUK 3:16!2 +LUK 3:16!3 +LUK 3:16!4 +LUK 3:16!5 +LUK 3:16!7 +LUK 3:16!6 +LUK 3:16!8 +LUK 3:16!9 +LUK 3:16!10 +LUK 3:16!12 +LUK 3:16!11 +LUK 3:16!13 +LUK 3:16!14 +LUK 3:16!15 +LUK 3:16!16 +LUK 3:16!17 +LUK 3:16!18 +LUK 3:16!19 +LUK 3:16!20 +LUK 3:16!21 +LUK 3:16!22 +LUK 3:16!23 +LUK 3:16!24 +LUK 3:16!25 +LUK 3:16!26 +LUK 3:16!27 +LUK 3:16!28 +LUK 3:16!29 +LUK 3:16!30 +LUK 3:16!31 +LUK 3:16!32 +LUK 3:16!33 +LUK 3:17!1 +LUK 3:17!2 +LUK 3:17!3 +LUK 3:17!4 +LUK 3:17!5 +LUK 3:17!6 +LUK 3:17!7 +LUK 3:17!8 +LUK 3:17!9 +LUK 3:17!10 +LUK 3:17!11 +LUK 3:17!12 +LUK 3:17!13 +LUK 3:17!14 +LUK 3:17!15 +LUK 3:17!16 +LUK 3:17!17 +LUK 3:17!18 +LUK 3:17!19 +LUK 3:17!21 +LUK 3:17!20 +LUK 3:17!22 +LUK 3:17!23 +LUK 3:17!24 +LUK 3:17!25 +LUK 3:18!2 +LUK 3:18!3 +LUK 3:18!1 +LUK 3:18!4 +LUK 3:18!5 +LUK 3:18!6 +LUK 3:18!7 +LUK 3:18!8 +LUK 3:18!9 +LUK 3:19!2 +LUK 3:19!1 +LUK 3:19!3 +LUK 3:19!4 +LUK 3:19!5 +LUK 3:19!6 +LUK 3:19!7 +LUK 3:19!8 +LUK 3:19!9 +LUK 3:19!10 +LUK 3:19!11 +LUK 3:19!12 +LUK 3:19!13 +LUK 3:19!14 +LUK 3:19!15 +LUK 3:19!16 +LUK 3:19!17 +LUK 3:19!18 +LUK 3:19!19 +LUK 3:19!21 +LUK 3:19!20 +LUK 3:19!22 +LUK 3:19!23 +LUK 3:20!1 +LUK 3:20!2 +LUK 3:20!3 +LUK 3:20!4 +LUK 3:20!5 +LUK 3:20!6 +LUK 3:20!7 +LUK 3:20!8 +LUK 3:20!9 +LUK 3:20!10 +LUK 3:21!2 +LUK 3:21!1 +LUK 3:21!3 +LUK 3:21!4 +LUK 3:21!5 +LUK 3:21!6 +LUK 3:21!7 +LUK 3:21!8 +LUK 3:21!9 +LUK 3:21!10 +LUK 3:21!11 +LUK 3:21!12 +LUK 3:21!13 +LUK 3:21!14 +LUK 3:21!15 +LUK 3:21!16 +LUK 3:22!1 +LUK 3:22!2 +LUK 3:22!3 +LUK 3:22!4 +LUK 3:22!5 +LUK 3:22!6 +LUK 3:22!7 +LUK 3:22!8 +LUK 3:22!9 +LUK 3:22!10 +LUK 3:22!11 +LUK 3:22!12 +LUK 3:22!13 +LUK 3:22!14 +LUK 3:22!15 +LUK 3:22!16 +LUK 3:22!17 +LUK 3:22!18 +LUK 3:22!19 +LUK 3:22!20 +LUK 3:22!21 +LUK 3:22!22 +LUK 3:22!23 +LUK 3:22!24 +LUK 3:22!25 +LUK 3:22!26 +LUK 3:22!27 +LUK 3:23!1 +LUK 3:23!2 +LUK 3:23!4 +LUK 3:23!3 +LUK 3:23!5 +LUK 3:23!6 +LUK 3:23!7 +LUK 3:23!8 +LUK 3:23!11 +LUK 3:23!12 +LUK 3:23!9 +LUK 3:23!10 +LUK 3:23!13 +LUK 3:23!14 +LUK 3:23!15 +LUK 3:24!1 +LUK 3:24!2 +LUK 3:24!3 +LUK 3:24!4 +LUK 3:24!5 +LUK 3:24!6 +LUK 3:24!7 +LUK 3:24!8 +LUK 3:24!9 +LUK 3:24!10 +LUK 3:25!1 +LUK 3:25!2 +LUK 3:25!3 +LUK 3:25!4 +LUK 3:25!5 +LUK 3:25!6 +LUK 3:25!7 +LUK 3:25!8 +LUK 3:25!9 +LUK 3:25!10 +LUK 3:26!1 +LUK 3:26!2 +LUK 3:26!3 +LUK 3:26!4 +LUK 3:26!5 +LUK 3:26!6 +LUK 3:26!7 +LUK 3:26!8 +LUK 3:26!9 +LUK 3:26!10 +LUK 3:27!1 +LUK 3:27!2 +LUK 3:27!3 +LUK 3:27!4 +LUK 3:27!5 +LUK 3:27!6 +LUK 3:27!7 +LUK 3:27!8 +LUK 3:27!9 +LUK 3:27!10 +LUK 3:28!1 +LUK 3:28!2 +LUK 3:28!3 +LUK 3:28!4 +LUK 3:28!5 +LUK 3:28!6 +LUK 3:28!7 +LUK 3:28!8 +LUK 3:28!9 +LUK 3:28!10 +LUK 3:29!1 +LUK 3:29!2 +LUK 3:29!3 +LUK 3:29!4 +LUK 3:29!5 +LUK 3:29!6 +LUK 3:29!7 +LUK 3:29!8 +LUK 3:29!9 +LUK 3:29!10 +LUK 3:30!1 +LUK 3:30!2 +LUK 3:30!3 +LUK 3:30!4 +LUK 3:30!5 +LUK 3:30!6 +LUK 3:30!7 +LUK 3:30!8 +LUK 3:30!9 +LUK 3:30!10 +LUK 3:31!1 +LUK 3:31!2 +LUK 3:31!3 +LUK 3:31!4 +LUK 3:31!5 +LUK 3:31!6 +LUK 3:31!7 +LUK 3:31!8 +LUK 3:31!9 +LUK 3:31!10 +LUK 3:32!1 +LUK 3:32!2 +LUK 3:32!3 +LUK 3:32!4 +LUK 3:32!5 +LUK 3:32!6 +LUK 3:32!7 +LUK 3:32!8 +LUK 3:32!9 +LUK 3:32!10 +LUK 3:33!1 +LUK 3:33!2 +LUK 3:33!3 +LUK 3:33!4 +LUK 3:33!5 +LUK 3:33!6 +LUK 3:33!7 +LUK 3:33!8 +LUK 3:33!9 +LUK 3:33!10 +LUK 3:33!11 +LUK 3:33!12 +LUK 3:34!1 +LUK 3:34!2 +LUK 3:34!3 +LUK 3:34!4 +LUK 3:34!5 +LUK 3:34!6 +LUK 3:34!7 +LUK 3:34!8 +LUK 3:34!9 +LUK 3:34!10 +LUK 3:35!1 +LUK 3:35!2 +LUK 3:35!3 +LUK 3:35!4 +LUK 3:35!5 +LUK 3:35!6 +LUK 3:35!7 +LUK 3:35!8 +LUK 3:35!9 +LUK 3:35!10 +LUK 3:36!1 +LUK 3:36!2 +LUK 3:36!3 +LUK 3:36!4 +LUK 3:36!5 +LUK 3:36!6 +LUK 3:36!7 +LUK 3:36!8 +LUK 3:36!9 +LUK 3:36!10 +LUK 3:37!1 +LUK 3:37!2 +LUK 3:37!3 +LUK 3:37!4 +LUK 3:37!5 +LUK 3:37!6 +LUK 3:37!7 +LUK 3:37!8 +LUK 3:37!9 +LUK 3:37!10 +LUK 3:38!1 +LUK 3:38!2 +LUK 3:38!3 +LUK 3:38!4 +LUK 3:38!5 +LUK 3:38!6 +LUK 3:38!7 +LUK 3:38!8 +LUK 4:1!2 +LUK 4:1!1 +LUK 4:1!3 +LUK 4:1!4 +LUK 4:1!5 +LUK 4:1!6 +LUK 4:1!7 +LUK 4:1!8 +LUK 4:1!9 +LUK 4:1!10 +LUK 4:1!11 +LUK 4:1!12 +LUK 4:1!13 +LUK 4:1!14 +LUK 4:1!15 +LUK 4:1!16 +LUK 4:1!17 +LUK 4:2!1 +LUK 4:2!2 +LUK 4:2!3 +LUK 4:2!4 +LUK 4:2!5 +LUK 4:2!6 +LUK 4:2!7 +LUK 4:2!8 +LUK 4:2!9 +LUK 4:2!10 +LUK 4:2!11 +LUK 4:2!12 +LUK 4:2!13 +LUK 4:2!14 +LUK 4:2!15 +LUK 4:2!16 +LUK 4:2!17 +LUK 4:2!18 +LUK 4:3!2 +LUK 4:3!1 +LUK 4:3!3 +LUK 4:3!4 +LUK 4:3!5 +LUK 4:3!6 +LUK 4:3!8 +LUK 4:3!7 +LUK 4:3!9 +LUK 4:3!10 +LUK 4:3!11 +LUK 4:3!12 +LUK 4:3!13 +LUK 4:3!14 +LUK 4:3!15 +LUK 4:3!16 +LUK 4:3!17 +LUK 4:4!1 +LUK 4:4!2 +LUK 4:4!3 +LUK 4:4!4 +LUK 4:4!5 +LUK 4:4!6 +LUK 4:4!7 +LUK 4:4!8 +LUK 4:4!9 +LUK 4:4!10 +LUK 4:4!11 +LUK 4:4!12 +LUK 4:4!13 +LUK 4:4!14 +LUK 4:4!15 +LUK 4:5!1 +LUK 4:5!2 +LUK 4:5!3 +LUK 4:5!4 +LUK 4:5!5 +LUK 4:5!6 +LUK 4:5!7 +LUK 4:5!8 +LUK 4:5!9 +LUK 4:5!10 +LUK 4:5!11 +LUK 4:5!12 +LUK 4:5!13 +LUK 4:6!1 +LUK 4:6!2 +LUK 4:6!3 +LUK 4:6!4 +LUK 4:6!5 +LUK 4:6!6 +LUK 4:6!7 +LUK 4:6!8 +LUK 4:6!9 +LUK 4:6!10 +LUK 4:6!11 +LUK 4:6!12 +LUK 4:6!13 +LUK 4:6!14 +LUK 4:6!15 +LUK 4:6!16 +LUK 4:6!17 +LUK 4:6!18 +LUK 4:6!19 +LUK 4:6!21 +LUK 4:6!20 +LUK 4:6!22 +LUK 4:6!23 +LUK 4:6!24 +LUK 4:7!2 +LUK 4:7!3 +LUK 4:7!1 +LUK 4:7!4 +LUK 4:7!5 +LUK 4:7!6 +LUK 4:7!7 +LUK 4:7!8 +LUK 4:7!9 +LUK 4:8!1 +LUK 4:8!2 +LUK 4:8!3 +LUK 4:8!4 +LUK 4:8!5 +LUK 4:8!6 +LUK 4:8!7 +LUK 4:8!8 +LUK 4:8!9 +LUK 4:8!10 +LUK 4:8!11 +LUK 4:8!12 +LUK 4:8!13 +LUK 4:8!14 +LUK 4:8!15 +LUK 4:8!16 +LUK 4:9!2 +LUK 4:9!1 +LUK 4:9!3 +LUK 4:9!4 +LUK 4:9!5 +LUK 4:9!6 +LUK 4:9!7 +LUK 4:9!8 +LUK 4:9!9 +LUK 4:9!10 +LUK 4:9!11 +LUK 4:9!12 +LUK 4:9!13 +LUK 4:9!14 +LUK 4:9!15 +LUK 4:9!16 +LUK 4:9!18 +LUK 4:9!17 +LUK 4:9!19 +LUK 4:9!20 +LUK 4:9!21 +LUK 4:9!22 +LUK 4:9!23 +LUK 4:9!24 +LUK 4:10!2 +LUK 4:10!1 +LUK 4:10!3 +LUK 4:10!4 +LUK 4:10!5 +LUK 4:10!6 +LUK 4:10!7 +LUK 4:10!8 +LUK 4:10!9 +LUK 4:10!10 +LUK 4:10!11 +LUK 4:10!12 +LUK 4:11!1 +LUK 4:11!2 +LUK 4:11!3 +LUK 4:11!4 +LUK 4:11!5 +LUK 4:11!6 +LUK 4:11!7 +LUK 4:11!8 +LUK 4:11!9 +LUK 4:11!10 +LUK 4:11!11 +LUK 4:11!12 +LUK 4:11!13 +LUK 4:11!14 +LUK 4:12!1 +LUK 4:12!2 +LUK 4:12!3 +LUK 4:12!4 +LUK 4:12!5 +LUK 4:12!6 +LUK 4:12!7 +LUK 4:12!8 +LUK 4:12!9 +LUK 4:12!10 +LUK 4:12!11 +LUK 4:12!12 +LUK 4:12!13 +LUK 4:12!14 +LUK 4:13!1 +LUK 4:13!2 +LUK 4:13!3 +LUK 4:13!4 +LUK 4:13!5 +LUK 4:13!6 +LUK 4:13!7 +LUK 4:13!8 +LUK 4:13!9 +LUK 4:13!10 +LUK 4:13!11 +LUK 4:14!1 +LUK 4:14!2 +LUK 4:14!3 +LUK 4:14!4 +LUK 4:14!5 +LUK 4:14!6 +LUK 4:14!7 +LUK 4:14!8 +LUK 4:14!9 +LUK 4:14!10 +LUK 4:14!11 +LUK 4:14!12 +LUK 4:14!13 +LUK 4:14!14 +LUK 4:14!15 +LUK 4:14!16 +LUK 4:14!17 +LUK 4:14!18 +LUK 4:14!19 +LUK 4:14!20 +LUK 4:14!21 +LUK 4:15!1 +LUK 4:15!2 +LUK 4:15!3 +LUK 4:15!4 +LUK 4:15!5 +LUK 4:15!6 +LUK 4:15!7 +LUK 4:15!8 +LUK 4:15!9 +LUK 4:15!10 +LUK 4:16!1 +LUK 4:16!2 +LUK 4:16!3 +LUK 4:16!4 +LUK 4:16!5 +LUK 4:16!6 +LUK 4:16!7 +LUK 4:16!8 +LUK 4:16!9 +LUK 4:16!10 +LUK 4:16!11 +LUK 4:16!12 +LUK 4:16!13 +LUK 4:16!14 +LUK 4:16!15 +LUK 4:16!16 +LUK 4:16!17 +LUK 4:16!18 +LUK 4:16!19 +LUK 4:16!20 +LUK 4:16!21 +LUK 4:16!22 +LUK 4:16!23 +LUK 4:16!24 +LUK 4:17!1 +LUK 4:17!2 +LUK 4:17!3 +LUK 4:17!4 +LUK 4:17!5 +LUK 4:17!6 +LUK 4:17!7 +LUK 4:17!8 +LUK 4:17!9 +LUK 4:17!10 +LUK 4:17!11 +LUK 4:17!12 +LUK 4:17!13 +LUK 4:17!14 +LUK 4:17!15 +LUK 4:17!16 +LUK 4:17!17 +LUK 4:18!1 +LUK 4:18!2 +LUK 4:18!3 +LUK 4:18!4 +LUK 4:18!5 +LUK 4:18!6 +LUK 4:18!7 +LUK 4:18!8 +LUK 4:18!9 +LUK 4:18!10 +LUK 4:18!11 +LUK 4:18!12 +LUK 4:18!13 +LUK 4:18!14 +LUK 4:18!15 +LUK 4:18!16 +LUK 4:18!17 +LUK 4:18!18 +LUK 4:18!19 +LUK 4:18!20 +LUK 4:18!21 +LUK 4:18!22 +LUK 4:19!1 +LUK 4:19!2 +LUK 4:19!3 +LUK 4:19!4 +LUK 4:20!1 +LUK 4:20!2 +LUK 4:20!3 +LUK 4:20!4 +LUK 4:20!5 +LUK 4:20!6 +LUK 4:20!7 +LUK 4:20!8 +LUK 4:20!9 +LUK 4:20!10 +LUK 4:20!11 +LUK 4:20!12 +LUK 4:20!13 +LUK 4:20!14 +LUK 4:20!15 +LUK 4:20!16 +LUK 4:20!17 +LUK 4:20!18 +LUK 4:21!2 +LUK 4:21!1 +LUK 4:21!3 +LUK 4:21!4 +LUK 4:21!5 +LUK 4:21!6 +LUK 4:21!7 +LUK 4:21!8 +LUK 4:21!9 +LUK 4:21!10 +LUK 4:21!11 +LUK 4:21!12 +LUK 4:21!13 +LUK 4:21!14 +LUK 4:21!15 +LUK 4:22!1 +LUK 4:22!2 +LUK 4:22!3 +LUK 4:22!4 +LUK 4:22!5 +LUK 4:22!6 +LUK 4:22!7 +LUK 4:22!8 +LUK 4:22!9 +LUK 4:22!10 +LUK 4:22!11 +LUK 4:22!12 +LUK 4:22!13 +LUK 4:22!14 +LUK 4:22!15 +LUK 4:22!16 +LUK 4:22!17 +LUK 4:22!18 +LUK 4:22!19 +LUK 4:22!20 +LUK 4:22!21 +LUK 4:22!23 +LUK 4:22!22 +LUK 4:22!24 +LUK 4:23!1 +LUK 4:23!2 +LUK 4:23!3 +LUK 4:23!4 +LUK 4:23!5 +LUK 4:23!6 +LUK 4:23!7 +LUK 4:23!8 +LUK 4:23!9 +LUK 4:23!10 +LUK 4:23!11 +LUK 4:23!12 +LUK 4:23!13 +LUK 4:23!15 +LUK 4:23!14 +LUK 4:23!16 +LUK 4:23!17 +LUK 4:23!18 +LUK 4:23!19 +LUK 4:23!20 +LUK 4:23!21 +LUK 4:23!22 +LUK 4:23!23 +LUK 4:23!24 +LUK 4:23!25 +LUK 4:23!26 +LUK 4:24!2 +LUK 4:24!1 +LUK 4:24!3 +LUK 4:24!4 +LUK 4:24!5 +LUK 4:24!6 +LUK 4:24!7 +LUK 4:24!8 +LUK 4:24!9 +LUK 4:24!10 +LUK 4:24!11 +LUK 4:24!12 +LUK 4:24!13 +LUK 4:24!14 +LUK 4:25!3 +LUK 4:25!1 +LUK 4:25!2 +LUK 4:25!4 +LUK 4:25!5 +LUK 4:25!6 +LUK 4:25!7 +LUK 4:25!8 +LUK 4:25!9 +LUK 4:25!10 +LUK 4:25!11 +LUK 4:25!12 +LUK 4:25!13 +LUK 4:25!14 +LUK 4:25!15 +LUK 4:25!16 +LUK 4:25!17 +LUK 4:25!18 +LUK 4:25!19 +LUK 4:25!20 +LUK 4:25!21 +LUK 4:25!22 +LUK 4:25!23 +LUK 4:25!24 +LUK 4:25!25 +LUK 4:25!26 +LUK 4:25!27 +LUK 4:25!28 +LUK 4:25!29 +LUK 4:25!30 +LUK 4:25!31 +LUK 4:25!32 +LUK 4:25!33 +LUK 4:26!1 +LUK 4:26!2 +LUK 4:26!3 +LUK 4:26!4 +LUK 4:26!5 +LUK 4:26!6 +LUK 4:26!7 +LUK 4:26!8 +LUK 4:26!9 +LUK 4:26!10 +LUK 4:26!11 +LUK 4:26!12 +LUK 4:26!13 +LUK 4:26!14 +LUK 4:26!15 +LUK 4:27!1 +LUK 4:27!2 +LUK 4:27!3 +LUK 4:27!4 +LUK 4:27!5 +LUK 4:27!6 +LUK 4:27!7 +LUK 4:27!8 +LUK 4:27!9 +LUK 4:27!10 +LUK 4:27!11 +LUK 4:27!12 +LUK 4:27!13 +LUK 4:27!14 +LUK 4:27!15 +LUK 4:27!16 +LUK 4:27!17 +LUK 4:27!18 +LUK 4:27!19 +LUK 4:27!20 +LUK 4:28!1 +LUK 4:28!2 +LUK 4:28!4 +LUK 4:28!3 +LUK 4:28!5 +LUK 4:28!6 +LUK 4:28!7 +LUK 4:28!8 +LUK 4:28!9 +LUK 4:29!1 +LUK 4:29!2 +LUK 4:29!3 +LUK 4:29!4 +LUK 4:29!5 +LUK 4:29!6 +LUK 4:29!7 +LUK 4:29!8 +LUK 4:29!9 +LUK 4:29!10 +LUK 4:29!11 +LUK 4:29!12 +LUK 4:29!13 +LUK 4:29!14 +LUK 4:29!15 +LUK 4:29!16 +LUK 4:29!17 +LUK 4:29!18 +LUK 4:29!20 +LUK 4:29!19 +LUK 4:29!21 +LUK 4:29!22 +LUK 4:29!23 +LUK 4:30!2 +LUK 4:30!1 +LUK 4:30!3 +LUK 4:30!4 +LUK 4:30!5 +LUK 4:30!6 +LUK 4:30!7 +LUK 4:31!1 +LUK 4:31!2 +LUK 4:31!3 +LUK 4:31!4 +LUK 4:31!5 +LUK 4:31!6 +LUK 4:31!7 +LUK 4:31!8 +LUK 4:31!9 +LUK 4:31!10 +LUK 4:31!11 +LUK 4:31!12 +LUK 4:31!13 +LUK 4:31!14 +LUK 4:32!1 +LUK 4:32!2 +LUK 4:32!3 +LUK 4:32!4 +LUK 4:32!5 +LUK 4:32!6 +LUK 4:32!7 +LUK 4:32!8 +LUK 4:32!9 +LUK 4:32!10 +LUK 4:32!11 +LUK 4:32!12 +LUK 4:32!13 +LUK 4:33!1 +LUK 4:33!2 +LUK 4:33!3 +LUK 4:33!4 +LUK 4:33!5 +LUK 4:33!6 +LUK 4:33!7 +LUK 4:33!8 +LUK 4:33!9 +LUK 4:33!10 +LUK 4:33!11 +LUK 4:33!12 +LUK 4:33!13 +LUK 4:33!14 +LUK 4:34!1 +LUK 4:34!2 +LUK 4:34!3 +LUK 4:34!4 +LUK 4:34!5 +LUK 4:34!6 +LUK 4:34!7 +LUK 4:34!8 +LUK 4:34!9 +LUK 4:34!10 +LUK 4:34!11 +LUK 4:34!12 +LUK 4:34!13 +LUK 4:34!14 +LUK 4:34!15 +LUK 4:34!16 +LUK 4:34!17 +LUK 4:34!18 +LUK 4:35!1 +LUK 4:35!2 +LUK 4:35!3 +LUK 4:35!4 +LUK 4:35!5 +LUK 4:35!6 +LUK 4:35!7 +LUK 4:35!8 +LUK 4:35!9 +LUK 4:35!10 +LUK 4:35!11 +LUK 4:35!12 +LUK 4:35!15 +LUK 4:35!16 +LUK 4:35!13 +LUK 4:35!14 +LUK 4:35!17 +LUK 4:35!18 +LUK 4:35!19 +LUK 4:35!20 +LUK 4:35!21 +LUK 4:35!22 +LUK 4:35!23 +LUK 4:35!24 +LUK 4:35!25 +LUK 4:36!1 +LUK 4:36!2 +LUK 4:36!3 +LUK 4:36!4 +LUK 4:36!5 +LUK 4:36!6 +LUK 4:36!7 +LUK 4:36!8 +LUK 4:36!9 +LUK 4:36!10 +LUK 4:36!11 +LUK 4:36!12 +LUK 4:36!13 +LUK 4:36!14 +LUK 4:36!15 +LUK 4:36!16 +LUK 4:36!17 +LUK 4:36!18 +LUK 4:36!19 +LUK 4:36!20 +LUK 4:36!21 +LUK 4:36!22 +LUK 4:36!23 +LUK 4:36!24 +LUK 4:36!25 +LUK 4:37!1 +LUK 4:37!2 +LUK 4:37!3 +LUK 4:37!4 +LUK 4:37!5 +LUK 4:37!6 +LUK 4:37!7 +LUK 4:37!8 +LUK 4:37!9 +LUK 4:37!10 +LUK 4:38!2 +LUK 4:38!1 +LUK 4:38!3 +LUK 4:38!4 +LUK 4:38!5 +LUK 4:38!6 +LUK 4:38!7 +LUK 4:38!8 +LUK 4:38!9 +LUK 4:38!10 +LUK 4:38!12 +LUK 4:38!11 +LUK 4:38!13 +LUK 4:38!14 +LUK 4:38!15 +LUK 4:38!16 +LUK 4:38!17 +LUK 4:38!18 +LUK 4:38!19 +LUK 4:38!20 +LUK 4:38!21 +LUK 4:38!22 +LUK 4:38!23 +LUK 4:39!1 +LUK 4:39!2 +LUK 4:39!3 +LUK 4:39!4 +LUK 4:39!5 +LUK 4:39!6 +LUK 4:39!7 +LUK 4:39!8 +LUK 4:39!9 +LUK 4:39!10 +LUK 4:39!12 +LUK 4:39!11 +LUK 4:39!13 +LUK 4:39!14 +LUK 4:39!15 +LUK 4:40!2 +LUK 4:40!1 +LUK 4:40!3 +LUK 4:40!4 +LUK 4:40!5 +LUK 4:40!6 +LUK 4:40!7 +LUK 4:40!8 +LUK 4:40!9 +LUK 4:40!10 +LUK 4:40!11 +LUK 4:40!12 +LUK 4:40!13 +LUK 4:40!14 +LUK 4:40!16 +LUK 4:40!15 +LUK 4:40!17 +LUK 4:40!18 +LUK 4:40!19 +LUK 4:40!20 +LUK 4:40!21 +LUK 4:40!22 +LUK 4:40!23 +LUK 4:40!24 +LUK 4:41!2 +LUK 4:41!1 +LUK 4:41!3 +LUK 4:41!4 +LUK 4:41!5 +LUK 4:41!6 +LUK 4:41!7 +LUK 4:41!8 +LUK 4:41!9 +LUK 4:41!10 +LUK 4:41!11 +LUK 4:41!12 +LUK 4:41!13 +LUK 4:41!14 +LUK 4:41!15 +LUK 4:41!16 +LUK 4:41!17 +LUK 4:41!18 +LUK 4:41!19 +LUK 4:41!20 +LUK 4:41!21 +LUK 4:41!22 +LUK 4:41!23 +LUK 4:41!24 +LUK 4:41!25 +LUK 4:41!26 +LUK 4:41!27 +LUK 4:41!28 +LUK 4:42!2 +LUK 4:42!1 +LUK 4:42!3 +LUK 4:42!4 +LUK 4:42!5 +LUK 4:42!6 +LUK 4:42!7 +LUK 4:42!8 +LUK 4:42!9 +LUK 4:42!10 +LUK 4:42!11 +LUK 4:42!12 +LUK 4:42!13 +LUK 4:42!14 +LUK 4:42!15 +LUK 4:42!16 +LUK 4:42!17 +LUK 4:42!18 +LUK 4:42!19 +LUK 4:42!20 +LUK 4:42!21 +LUK 4:42!22 +LUK 4:42!23 +LUK 4:42!24 +LUK 4:42!25 +LUK 4:43!2 +LUK 4:43!1 +LUK 4:43!3 +LUK 4:43!4 +LUK 4:43!5 +LUK 4:43!6 +LUK 4:43!7 +LUK 4:43!8 +LUK 4:43!9 +LUK 4:43!10 +LUK 4:43!11 +LUK 4:43!12 +LUK 4:43!14 +LUK 4:43!15 +LUK 4:43!16 +LUK 4:43!17 +LUK 4:43!13 +LUK 4:43!18 +LUK 4:43!19 +LUK 4:43!20 +LUK 4:43!21 +LUK 4:44!1 +LUK 4:44!2 +LUK 4:44!3 +LUK 4:44!4 +LUK 4:44!5 +LUK 4:44!6 +LUK 4:44!7 +LUK 4:44!8 +LUK 5:1!2 +LUK 5:1!1 +LUK 5:1!3 +LUK 5:1!4 +LUK 5:1!5 +LUK 5:1!6 +LUK 5:1!7 +LUK 5:1!8 +LUK 5:1!9 +LUK 5:1!10 +LUK 5:1!11 +LUK 5:1!12 +LUK 5:1!13 +LUK 5:1!14 +LUK 5:1!15 +LUK 5:1!16 +LUK 5:1!17 +LUK 5:1!18 +LUK 5:1!19 +LUK 5:1!20 +LUK 5:1!21 +LUK 5:1!22 +LUK 5:2!1 +LUK 5:2!2 +LUK 5:2!3 +LUK 5:2!4 +LUK 5:2!5 +LUK 5:2!6 +LUK 5:2!7 +LUK 5:2!8 +LUK 5:2!10 +LUK 5:2!9 +LUK 5:2!11 +LUK 5:2!12 +LUK 5:2!13 +LUK 5:2!14 +LUK 5:2!15 +LUK 5:2!16 +LUK 5:2!17 +LUK 5:3!2 +LUK 5:3!1 +LUK 5:3!3 +LUK 5:3!4 +LUK 5:3!5 +LUK 5:3!6 +LUK 5:3!7 +LUK 5:3!8 +LUK 5:3!9 +LUK 5:3!10 +LUK 5:3!11 +LUK 5:3!12 +LUK 5:3!13 +LUK 5:3!14 +LUK 5:3!15 +LUK 5:3!16 +LUK 5:3!18 +LUK 5:3!17 +LUK 5:3!19 +LUK 5:3!20 +LUK 5:3!21 +LUK 5:3!22 +LUK 5:3!23 +LUK 5:3!24 +LUK 5:4!2 +LUK 5:4!1 +LUK 5:4!3 +LUK 5:4!4 +LUK 5:4!5 +LUK 5:4!6 +LUK 5:4!7 +LUK 5:4!8 +LUK 5:4!9 +LUK 5:4!10 +LUK 5:4!11 +LUK 5:4!12 +LUK 5:4!13 +LUK 5:4!14 +LUK 5:4!15 +LUK 5:4!16 +LUK 5:4!17 +LUK 5:4!18 +LUK 5:4!19 +LUK 5:5!1 +LUK 5:5!2 +LUK 5:5!3 +LUK 5:5!4 +LUK 5:5!5 +LUK 5:5!6 +LUK 5:5!7 +LUK 5:5!8 +LUK 5:5!9 +LUK 5:5!10 +LUK 5:5!11 +LUK 5:5!13 +LUK 5:5!12 +LUK 5:5!14 +LUK 5:5!15 +LUK 5:5!16 +LUK 5:5!17 +LUK 5:5!18 +LUK 5:5!19 +LUK 5:6!1 +LUK 5:6!2 +LUK 5:6!3 +LUK 5:6!4 +LUK 5:6!5 +LUK 5:6!6 +LUK 5:6!7 +LUK 5:6!9 +LUK 5:6!8 +LUK 5:6!10 +LUK 5:6!11 +LUK 5:6!12 +LUK 5:7!1 +LUK 5:7!2 +LUK 5:7!3 +LUK 5:7!4 +LUK 5:7!5 +LUK 5:7!6 +LUK 5:7!7 +LUK 5:7!8 +LUK 5:7!9 +LUK 5:7!10 +LUK 5:7!11 +LUK 5:7!12 +LUK 5:7!13 +LUK 5:7!14 +LUK 5:7!15 +LUK 5:7!16 +LUK 5:7!17 +LUK 5:7!18 +LUK 5:7!19 +LUK 5:7!20 +LUK 5:7!21 +LUK 5:7!22 +LUK 5:8!2 +LUK 5:8!1 +LUK 5:8!3 +LUK 5:8!4 +LUK 5:8!5 +LUK 5:8!6 +LUK 5:8!7 +LUK 5:8!8 +LUK 5:8!9 +LUK 5:8!10 +LUK 5:8!11 +LUK 5:8!12 +LUK 5:8!13 +LUK 5:8!14 +LUK 5:8!15 +LUK 5:8!16 +LUK 5:8!17 +LUK 5:9!2 +LUK 5:9!1 +LUK 5:9!3 +LUK 5:9!4 +LUK 5:9!5 +LUK 5:9!6 +LUK 5:9!7 +LUK 5:9!8 +LUK 5:9!9 +LUK 5:9!10 +LUK 5:9!11 +LUK 5:9!12 +LUK 5:9!13 +LUK 5:9!14 +LUK 5:9!15 +LUK 5:9!16 +LUK 5:10!2 +LUK 5:10!1 +LUK 5:10!3 +LUK 5:10!4 +LUK 5:10!5 +LUK 5:10!6 +LUK 5:10!7 +LUK 5:10!8 +LUK 5:10!9 +LUK 5:10!10 +LUK 5:10!11 +LUK 5:10!12 +LUK 5:10!13 +LUK 5:10!14 +LUK 5:10!15 +LUK 5:10!16 +LUK 5:10!17 +LUK 5:10!18 +LUK 5:10!19 +LUK 5:10!20 +LUK 5:10!21 +LUK 5:10!22 +LUK 5:10!23 +LUK 5:10!24 +LUK 5:10!25 +LUK 5:10!26 +LUK 5:10!27 +LUK 5:10!28 +LUK 5:11!1 +LUK 5:11!2 +LUK 5:11!3 +LUK 5:11!4 +LUK 5:11!5 +LUK 5:11!6 +LUK 5:11!7 +LUK 5:11!8 +LUK 5:11!9 +LUK 5:11!10 +LUK 5:11!11 +LUK 5:12!1 +LUK 5:12!2 +LUK 5:12!3 +LUK 5:12!4 +LUK 5:12!5 +LUK 5:12!6 +LUK 5:12!7 +LUK 5:12!8 +LUK 5:12!9 +LUK 5:12!10 +LUK 5:12!11 +LUK 5:12!12 +LUK 5:12!13 +LUK 5:12!14 +LUK 5:12!15 +LUK 5:12!17 +LUK 5:12!16 +LUK 5:12!18 +LUK 5:12!19 +LUK 5:12!20 +LUK 5:12!21 +LUK 5:12!22 +LUK 5:12!23 +LUK 5:12!24 +LUK 5:12!25 +LUK 5:12!26 +LUK 5:12!27 +LUK 5:12!28 +LUK 5:12!29 +LUK 5:12!30 +LUK 5:12!31 +LUK 5:13!1 +LUK 5:13!2 +LUK 5:13!3 +LUK 5:13!4 +LUK 5:13!5 +LUK 5:13!6 +LUK 5:13!7 +LUK 5:13!8 +LUK 5:13!9 +LUK 5:13!10 +LUK 5:13!11 +LUK 5:13!12 +LUK 5:13!13 +LUK 5:13!14 +LUK 5:13!15 +LUK 5:13!16 +LUK 5:14!1 +LUK 5:14!2 +LUK 5:14!3 +LUK 5:14!4 +LUK 5:14!5 +LUK 5:14!6 +LUK 5:14!7 +LUK 5:14!8 +LUK 5:14!9 +LUK 5:14!10 +LUK 5:14!11 +LUK 5:14!12 +LUK 5:14!13 +LUK 5:14!14 +LUK 5:14!15 +LUK 5:14!16 +LUK 5:14!17 +LUK 5:14!18 +LUK 5:14!19 +LUK 5:14!20 +LUK 5:14!21 +LUK 5:14!22 +LUK 5:14!23 +LUK 5:14!24 +LUK 5:15!2 +LUK 5:15!1 +LUK 5:15!3 +LUK 5:15!4 +LUK 5:15!5 +LUK 5:15!6 +LUK 5:15!7 +LUK 5:15!8 +LUK 5:15!9 +LUK 5:15!10 +LUK 5:15!11 +LUK 5:15!12 +LUK 5:15!13 +LUK 5:15!14 +LUK 5:15!15 +LUK 5:15!16 +LUK 5:15!17 +LUK 5:15!18 +LUK 5:16!2 +LUK 5:16!1 +LUK 5:16!3 +LUK 5:16!4 +LUK 5:16!5 +LUK 5:16!6 +LUK 5:16!7 +LUK 5:16!8 +LUK 5:16!9 +LUK 5:17!1 +LUK 5:17!2 +LUK 5:17!3 +LUK 5:17!4 +LUK 5:17!5 +LUK 5:17!6 +LUK 5:17!7 +LUK 5:17!8 +LUK 5:17!9 +LUK 5:17!10 +LUK 5:17!11 +LUK 5:17!12 +LUK 5:17!13 +LUK 5:17!14 +LUK 5:17!15 +LUK 5:17!16 +LUK 5:17!17 +LUK 5:17!18 +LUK 5:17!19 +LUK 5:17!20 +LUK 5:17!21 +LUK 5:17!22 +LUK 5:17!23 +LUK 5:17!24 +LUK 5:17!25 +LUK 5:17!26 +LUK 5:17!27 +LUK 5:17!28 +LUK 5:17!29 +LUK 5:17!30 +LUK 5:17!31 +LUK 5:17!32 +LUK 5:17!33 +LUK 5:17!34 +LUK 5:17!35 +LUK 5:17!36 +LUK 5:18!1 +LUK 5:18!2 +LUK 5:18!3 +LUK 5:18!4 +LUK 5:18!5 +LUK 5:18!6 +LUK 5:18!7 +LUK 5:18!8 +LUK 5:18!9 +LUK 5:18!10 +LUK 5:18!11 +LUK 5:18!12 +LUK 5:18!13 +LUK 5:18!14 +LUK 5:18!15 +LUK 5:18!16 +LUK 5:18!17 +LUK 5:18!18 +LUK 5:19!1 +LUK 5:19!2 +LUK 5:19!3 +LUK 5:19!4 +LUK 5:19!5 +LUK 5:19!6 +LUK 5:19!7 +LUK 5:19!8 +LUK 5:19!9 +LUK 5:19!10 +LUK 5:19!11 +LUK 5:19!12 +LUK 5:19!13 +LUK 5:19!14 +LUK 5:19!15 +LUK 5:19!16 +LUK 5:19!17 +LUK 5:19!18 +LUK 5:19!19 +LUK 5:19!20 +LUK 5:19!21 +LUK 5:19!22 +LUK 5:19!23 +LUK 5:19!24 +LUK 5:19!25 +LUK 5:19!26 +LUK 5:19!27 +LUK 5:20!1 +LUK 5:20!2 +LUK 5:20!3 +LUK 5:20!4 +LUK 5:20!5 +LUK 5:20!6 +LUK 5:20!7 +LUK 5:20!8 +LUK 5:20!9 +LUK 5:20!10 +LUK 5:20!11 +LUK 5:20!12 +LUK 5:21!1 +LUK 5:21!2 +LUK 5:21!3 +LUK 5:21!4 +LUK 5:21!5 +LUK 5:21!6 +LUK 5:21!7 +LUK 5:21!8 +LUK 5:21!9 +LUK 5:21!10 +LUK 5:21!11 +LUK 5:21!12 +LUK 5:21!13 +LUK 5:21!14 +LUK 5:21!15 +LUK 5:21!16 +LUK 5:21!17 +LUK 5:21!18 +LUK 5:21!19 +LUK 5:21!20 +LUK 5:21!21 +LUK 5:21!22 +LUK 5:21!23 +LUK 5:21!24 +LUK 5:22!2 +LUK 5:22!3 +LUK 5:22!4 +LUK 5:22!1 +LUK 5:22!5 +LUK 5:22!6 +LUK 5:22!7 +LUK 5:22!8 +LUK 5:22!9 +LUK 5:22!10 +LUK 5:22!11 +LUK 5:22!12 +LUK 5:22!13 +LUK 5:22!14 +LUK 5:22!15 +LUK 5:22!16 +LUK 5:22!17 +LUK 5:23!1 +LUK 5:23!2 +LUK 5:23!3 +LUK 5:23!4 +LUK 5:23!5 +LUK 5:23!6 +LUK 5:23!7 +LUK 5:23!8 +LUK 5:23!9 +LUK 5:23!10 +LUK 5:23!11 +LUK 5:23!12 +LUK 5:23!13 +LUK 5:23!14 +LUK 5:24!2 +LUK 5:24!1 +LUK 5:24!3 +LUK 5:24!4 +LUK 5:24!5 +LUK 5:24!6 +LUK 5:24!7 +LUK 5:24!8 +LUK 5:24!9 +LUK 5:24!10 +LUK 5:24!11 +LUK 5:24!12 +LUK 5:24!13 +LUK 5:24!14 +LUK 5:24!15 +LUK 5:24!16 +LUK 5:24!17 +LUK 5:24!18 +LUK 5:24!19 +LUK 5:24!20 +LUK 5:24!21 +LUK 5:24!22 +LUK 5:24!23 +LUK 5:24!24 +LUK 5:24!25 +LUK 5:24!26 +LUK 5:24!27 +LUK 5:24!28 +LUK 5:24!29 +LUK 5:24!30 +LUK 5:24!31 +LUK 5:25!1 +LUK 5:25!2 +LUK 5:25!3 +LUK 5:25!4 +LUK 5:25!5 +LUK 5:25!6 +LUK 5:25!7 +LUK 5:25!8 +LUK 5:25!9 +LUK 5:25!10 +LUK 5:25!11 +LUK 5:25!12 +LUK 5:25!13 +LUK 5:25!14 +LUK 5:25!15 +LUK 5:25!16 +LUK 5:25!17 +LUK 5:26!1 +LUK 5:26!2 +LUK 5:26!3 +LUK 5:26!4 +LUK 5:26!5 +LUK 5:26!6 +LUK 5:26!7 +LUK 5:26!8 +LUK 5:26!9 +LUK 5:26!10 +LUK 5:26!11 +LUK 5:26!12 +LUK 5:26!13 +LUK 5:26!14 +LUK 5:26!15 +LUK 5:26!16 +LUK 5:27!1 +LUK 5:27!2 +LUK 5:27!3 +LUK 5:27!4 +LUK 5:27!5 +LUK 5:27!6 +LUK 5:27!7 +LUK 5:27!8 +LUK 5:27!9 +LUK 5:27!10 +LUK 5:27!11 +LUK 5:27!12 +LUK 5:27!13 +LUK 5:27!14 +LUK 5:27!15 +LUK 5:27!16 +LUK 5:27!17 +LUK 5:27!18 +LUK 5:28!1 +LUK 5:28!2 +LUK 5:28!3 +LUK 5:28!4 +LUK 5:28!5 +LUK 5:28!6 +LUK 5:29!1 +LUK 5:29!2 +LUK 5:29!3 +LUK 5:29!4 +LUK 5:29!5 +LUK 5:29!6 +LUK 5:29!7 +LUK 5:29!8 +LUK 5:29!9 +LUK 5:29!10 +LUK 5:29!11 +LUK 5:29!12 +LUK 5:29!13 +LUK 5:29!14 +LUK 5:29!15 +LUK 5:29!16 +LUK 5:29!17 +LUK 5:29!18 +LUK 5:29!19 +LUK 5:29!22 +LUK 5:29!20 +LUK 5:29!21 +LUK 5:30!1 +LUK 5:30!2 +LUK 5:30!3 +LUK 5:30!4 +LUK 5:30!5 +LUK 5:30!6 +LUK 5:30!7 +LUK 5:30!8 +LUK 5:30!9 +LUK 5:30!10 +LUK 5:30!11 +LUK 5:30!12 +LUK 5:30!13 +LUK 5:30!14 +LUK 5:30!15 +LUK 5:30!16 +LUK 5:30!17 +LUK 5:30!18 +LUK 5:30!19 +LUK 5:30!20 +LUK 5:30!21 +LUK 5:30!22 +LUK 5:30!23 +LUK 5:31!1 +LUK 5:31!2 +LUK 5:31!3 +LUK 5:31!4 +LUK 5:31!5 +LUK 5:31!6 +LUK 5:31!7 +LUK 5:31!8 +LUK 5:31!9 +LUK 5:31!13 +LUK 5:31!10 +LUK 5:31!11 +LUK 5:31!12 +LUK 5:31!14 +LUK 5:31!15 +LUK 5:31!16 +LUK 5:31!17 +LUK 5:32!1 +LUK 5:32!2 +LUK 5:32!3 +LUK 5:32!4 +LUK 5:32!5 +LUK 5:32!6 +LUK 5:32!7 +LUK 5:32!8 +LUK 5:33!2 +LUK 5:33!1 +LUK 5:33!3 +LUK 5:33!4 +LUK 5:33!5 +LUK 5:33!6 +LUK 5:33!7 +LUK 5:33!8 +LUK 5:33!9 +LUK 5:33!10 +LUK 5:33!11 +LUK 5:33!12 +LUK 5:33!13 +LUK 5:33!14 +LUK 5:33!15 +LUK 5:33!16 +LUK 5:33!17 +LUK 5:33!18 +LUK 5:33!20 +LUK 5:33!19 +LUK 5:33!21 +LUK 5:33!22 +LUK 5:33!23 +LUK 5:33!24 +LUK 5:34!2 +LUK 5:34!1 +LUK 5:34!3 +LUK 5:34!4 +LUK 5:34!5 +LUK 5:34!6 +LUK 5:34!7 +LUK 5:34!8 +LUK 5:34!9 +LUK 5:34!10 +LUK 5:34!11 +LUK 5:34!12 +LUK 5:34!13 +LUK 5:34!14 +LUK 5:34!15 +LUK 5:34!16 +LUK 5:34!17 +LUK 5:34!18 +LUK 5:34!19 +LUK 5:34!21 +LUK 5:34!20 +LUK 5:35!2 +LUK 5:35!1 +LUK 5:35!3 +LUK 5:35!4 +LUK 5:35!5 +LUK 5:35!6 +LUK 5:35!7 +LUK 5:35!8 +LUK 5:35!9 +LUK 5:35!10 +LUK 5:35!11 +LUK 5:35!12 +LUK 5:35!13 +LUK 5:35!14 +LUK 5:35!15 +LUK 5:35!16 +LUK 5:36!2 +LUK 5:36!1 +LUK 5:36!3 +LUK 5:36!4 +LUK 5:36!5 +LUK 5:36!6 +LUK 5:36!7 +LUK 5:36!8 +LUK 5:36!9 +LUK 5:36!10 +LUK 5:36!11 +LUK 5:36!12 +LUK 5:36!13 +LUK 5:36!14 +LUK 5:36!15 +LUK 5:36!16 +LUK 5:36!17 +LUK 5:36!19 +LUK 5:36!18 +LUK 5:36!20 +LUK 5:36!21 +LUK 5:36!22 +LUK 5:36!23 +LUK 5:36!24 +LUK 5:36!25 +LUK 5:36!26 +LUK 5:36!27 +LUK 5:36!28 +LUK 5:36!29 +LUK 5:36!30 +LUK 5:36!31 +LUK 5:36!32 +LUK 5:36!33 +LUK 5:36!34 +LUK 5:36!35 +LUK 5:37!1 +LUK 5:37!2 +LUK 5:37!3 +LUK 5:37!4 +LUK 5:37!5 +LUK 5:37!6 +LUK 5:37!7 +LUK 5:37!8 +LUK 5:37!10 +LUK 5:37!9 +LUK 5:37!11 +LUK 5:37!12 +LUK 5:37!13 +LUK 5:37!14 +LUK 5:37!15 +LUK 5:37!16 +LUK 5:37!17 +LUK 5:37!18 +LUK 5:37!19 +LUK 5:37!20 +LUK 5:37!21 +LUK 5:37!22 +LUK 5:37!23 +LUK 5:37!24 +LUK 5:37!25 +LUK 5:38!1 +LUK 5:38!2 +LUK 5:38!3 +LUK 5:38!4 +LUK 5:38!5 +LUK 5:38!6 +LUK 5:38!7 +LUK 5:39!1 +LUK 5:39!2 +LUK 5:39!3 +LUK 5:39!4 +LUK 5:39!5 +LUK 5:39!6 +LUK 5:39!8 +LUK 5:39!7 +LUK 5:39!9 +LUK 5:39!10 +LUK 5:39!11 +LUK 5:39!12 +LUK 6:1!2 +LUK 6:1!1 +LUK 6:1!3 +LUK 6:1!4 +LUK 6:1!5 +LUK 6:1!6 +LUK 6:1!7 +LUK 6:1!8 +LUK 6:1!9 +LUK 6:1!10 +LUK 6:1!14 +LUK 6:1!15 +LUK 6:1!11 +LUK 6:1!12 +LUK 6:1!13 +LUK 6:1!16 +LUK 6:1!17 +LUK 6:1!18 +LUK 6:1!19 +LUK 6:1!20 +LUK 6:2!2 +LUK 6:2!1 +LUK 6:2!3 +LUK 6:2!4 +LUK 6:2!5 +LUK 6:2!6 +LUK 6:2!7 +LUK 6:2!8 +LUK 6:2!9 +LUK 6:2!10 +LUK 6:2!11 +LUK 6:2!12 +LUK 6:3!1 +LUK 6:3!2 +LUK 6:3!3 +LUK 6:3!4 +LUK 6:3!5 +LUK 6:3!6 +LUK 6:3!7 +LUK 6:3!8 +LUK 6:3!10 +LUK 6:3!9 +LUK 6:3!11 +LUK 6:3!12 +LUK 6:3!13 +LUK 6:3!14 +LUK 6:3!15 +LUK 6:3!16 +LUK 6:3!17 +LUK 6:3!18 +LUK 6:3!19 +LUK 6:3!20 +LUK 6:3!21 +LUK 6:4!1 +LUK 6:4!2 +LUK 6:4!3 +LUK 6:4!4 +LUK 6:4!5 +LUK 6:4!6 +LUK 6:4!7 +LUK 6:4!8 +LUK 6:4!9 +LUK 6:4!10 +LUK 6:4!11 +LUK 6:4!12 +LUK 6:4!13 +LUK 6:4!14 +LUK 6:4!15 +LUK 6:4!16 +LUK 6:4!17 +LUK 6:4!18 +LUK 6:4!19 +LUK 6:4!20 +LUK 6:4!23 +LUK 6:4!21 +LUK 6:4!22 +LUK 6:4!24 +LUK 6:4!25 +LUK 6:4!26 +LUK 6:4!27 +LUK 6:4!28 +LUK 6:5!1 +LUK 6:5!2 +LUK 6:5!3 +LUK 6:5!5 +LUK 6:5!4 +LUK 6:5!6 +LUK 6:5!7 +LUK 6:5!8 +LUK 6:5!9 +LUK 6:5!10 +LUK 6:5!11 +LUK 6:6!2 +LUK 6:6!1 +LUK 6:6!3 +LUK 6:6!4 +LUK 6:6!5 +LUK 6:6!6 +LUK 6:6!7 +LUK 6:6!8 +LUK 6:6!9 +LUK 6:6!10 +LUK 6:6!11 +LUK 6:6!12 +LUK 6:6!13 +LUK 6:6!14 +LUK 6:6!15 +LUK 6:6!16 +LUK 6:6!17 +LUK 6:6!18 +LUK 6:6!19 +LUK 6:6!20 +LUK 6:6!21 +LUK 6:6!22 +LUK 6:6!23 +LUK 6:6!24 +LUK 6:7!2 +LUK 6:7!1 +LUK 6:7!3 +LUK 6:7!4 +LUK 6:7!5 +LUK 6:7!6 +LUK 6:7!7 +LUK 6:7!8 +LUK 6:7!9 +LUK 6:7!10 +LUK 6:7!11 +LUK 6:7!12 +LUK 6:7!13 +LUK 6:7!14 +LUK 6:7!15 +LUK 6:7!16 +LUK 6:7!17 +LUK 6:8!2 +LUK 6:8!1 +LUK 6:8!3 +LUK 6:8!4 +LUK 6:8!5 +LUK 6:8!6 +LUK 6:8!8 +LUK 6:8!7 +LUK 6:8!9 +LUK 6:8!10 +LUK 6:8!11 +LUK 6:8!12 +LUK 6:8!13 +LUK 6:8!14 +LUK 6:8!15 +LUK 6:8!16 +LUK 6:8!17 +LUK 6:8!18 +LUK 6:8!19 +LUK 6:8!20 +LUK 6:8!21 +LUK 6:8!22 +LUK 6:8!23 +LUK 6:8!24 +LUK 6:9!2 +LUK 6:9!1 +LUK 6:9!3 +LUK 6:9!4 +LUK 6:9!5 +LUK 6:9!6 +LUK 6:9!7 +LUK 6:9!8 +LUK 6:9!9 +LUK 6:9!10 +LUK 6:9!11 +LUK 6:9!12 +LUK 6:9!13 +LUK 6:9!14 +LUK 6:9!15 +LUK 6:9!16 +LUK 6:9!17 +LUK 6:9!18 +LUK 6:9!19 +LUK 6:10!1 +LUK 6:10!2 +LUK 6:10!3 +LUK 6:10!4 +LUK 6:10!5 +LUK 6:10!6 +LUK 6:10!7 +LUK 6:10!8 +LUK 6:10!9 +LUK 6:10!10 +LUK 6:10!12 +LUK 6:10!11 +LUK 6:10!13 +LUK 6:10!14 +LUK 6:10!15 +LUK 6:10!16 +LUK 6:10!17 +LUK 6:10!18 +LUK 6:11!2 +LUK 6:11!1 +LUK 6:11!3 +LUK 6:11!4 +LUK 6:11!5 +LUK 6:11!6 +LUK 6:11!7 +LUK 6:11!8 +LUK 6:11!10 +LUK 6:11!9 +LUK 6:11!11 +LUK 6:11!12 +LUK 6:11!13 +LUK 6:12!2 +LUK 6:12!1 +LUK 6:12!3 +LUK 6:12!4 +LUK 6:12!5 +LUK 6:12!6 +LUK 6:12!7 +LUK 6:12!8 +LUK 6:12!9 +LUK 6:12!10 +LUK 6:12!11 +LUK 6:12!12 +LUK 6:12!13 +LUK 6:12!14 +LUK 6:12!15 +LUK 6:12!16 +LUK 6:12!17 +LUK 6:12!18 +LUK 6:12!19 +LUK 6:12!20 +LUK 6:13!1 +LUK 6:13!2 +LUK 6:13!3 +LUK 6:13!4 +LUK 6:13!5 +LUK 6:13!6 +LUK 6:13!7 +LUK 6:13!8 +LUK 6:13!9 +LUK 6:13!10 +LUK 6:13!11 +LUK 6:13!12 +LUK 6:13!13 +LUK 6:13!14 +LUK 6:13!15 +LUK 6:13!16 +LUK 6:13!17 +LUK 6:14!1 +LUK 6:14!2 +LUK 6:14!3 +LUK 6:14!4 +LUK 6:14!5 +LUK 6:14!6 +LUK 6:14!7 +LUK 6:14!8 +LUK 6:14!9 +LUK 6:14!10 +LUK 6:14!11 +LUK 6:14!12 +LUK 6:14!13 +LUK 6:14!14 +LUK 6:14!15 +LUK 6:14!16 +LUK 6:14!17 +LUK 6:14!18 +LUK 6:15!1 +LUK 6:15!2 +LUK 6:15!3 +LUK 6:15!4 +LUK 6:15!5 +LUK 6:15!6 +LUK 6:15!7 +LUK 6:15!8 +LUK 6:15!9 +LUK 6:15!10 +LUK 6:15!11 +LUK 6:15!12 +LUK 6:16!1 +LUK 6:16!2 +LUK 6:16!3 +LUK 6:16!4 +LUK 6:16!5 +LUK 6:16!6 +LUK 6:16!7 +LUK 6:16!8 +LUK 6:16!9 +LUK 6:17!1 +LUK 6:17!2 +LUK 6:17!3 +LUK 6:17!4 +LUK 6:17!5 +LUK 6:17!6 +LUK 6:17!7 +LUK 6:17!8 +LUK 6:17!9 +LUK 6:17!10 +LUK 6:17!11 +LUK 6:17!12 +LUK 6:17!13 +LUK 6:17!14 +LUK 6:17!15 +LUK 6:17!16 +LUK 6:17!17 +LUK 6:17!18 +LUK 6:17!19 +LUK 6:17!20 +LUK 6:17!21 +LUK 6:17!22 +LUK 6:17!23 +LUK 6:17!24 +LUK 6:17!25 +LUK 6:17!26 +LUK 6:17!27 +LUK 6:17!28 +LUK 6:17!29 +LUK 6:17!30 +LUK 6:18!1 +LUK 6:18!2 +LUK 6:18!3 +LUK 6:18!4 +LUK 6:18!5 +LUK 6:18!6 +LUK 6:18!7 +LUK 6:18!8 +LUK 6:18!9 +LUK 6:18!10 +LUK 6:18!11 +LUK 6:18!12 +LUK 6:18!13 +LUK 6:18!14 +LUK 6:18!15 +LUK 6:18!16 +LUK 6:18!17 +LUK 6:19!1 +LUK 6:19!2 +LUK 6:19!3 +LUK 6:19!4 +LUK 6:19!5 +LUK 6:19!6 +LUK 6:19!7 +LUK 6:19!8 +LUK 6:19!9 +LUK 6:19!10 +LUK 6:19!11 +LUK 6:19!12 +LUK 6:19!13 +LUK 6:19!14 +LUK 6:19!15 +LUK 6:20!1 +LUK 6:20!2 +LUK 6:20!3 +LUK 6:20!4 +LUK 6:20!5 +LUK 6:20!6 +LUK 6:20!7 +LUK 6:20!8 +LUK 6:20!9 +LUK 6:20!10 +LUK 6:20!11 +LUK 6:20!12 +LUK 6:20!13 +LUK 6:20!14 +LUK 6:20!15 +LUK 6:20!16 +LUK 6:20!17 +LUK 6:20!18 +LUK 6:20!19 +LUK 6:20!20 +LUK 6:20!21 +LUK 6:21!1 +LUK 6:21!2 +LUK 6:21!3 +LUK 6:21!4 +LUK 6:21!5 +LUK 6:21!6 +LUK 6:21!7 +LUK 6:21!8 +LUK 6:21!9 +LUK 6:21!10 +LUK 6:21!11 +LUK 6:21!12 +LUK 6:22!1 +LUK 6:22!2 +LUK 6:22!3 +LUK 6:22!4 +LUK 6:22!5 +LUK 6:22!6 +LUK 6:22!7 +LUK 6:22!8 +LUK 6:22!9 +LUK 6:22!10 +LUK 6:22!11 +LUK 6:22!12 +LUK 6:22!13 +LUK 6:22!14 +LUK 6:22!15 +LUK 6:22!16 +LUK 6:22!17 +LUK 6:22!18 +LUK 6:22!19 +LUK 6:22!20 +LUK 6:22!21 +LUK 6:22!22 +LUK 6:22!23 +LUK 6:22!24 +LUK 6:22!25 +LUK 6:23!1 +LUK 6:23!2 +LUK 6:23!3 +LUK 6:23!4 +LUK 6:23!5 +LUK 6:23!6 +LUK 6:23!7 +LUK 6:23!9 +LUK 6:23!8 +LUK 6:23!10 +LUK 6:23!11 +LUK 6:23!12 +LUK 6:23!13 +LUK 6:23!14 +LUK 6:23!15 +LUK 6:23!16 +LUK 6:23!20 +LUK 6:23!17 +LUK 6:23!18 +LUK 6:23!19 +LUK 6:23!21 +LUK 6:23!22 +LUK 6:23!23 +LUK 6:23!24 +LUK 6:23!25 +LUK 6:23!26 +LUK 6:24!1 +LUK 6:24!2 +LUK 6:24!3 +LUK 6:24!4 +LUK 6:24!5 +LUK 6:24!6 +LUK 6:24!7 +LUK 6:24!8 +LUK 6:24!9 +LUK 6:24!10 +LUK 6:25!1 +LUK 6:25!2 +LUK 6:25!3 +LUK 6:25!4 +LUK 6:25!5 +LUK 6:25!6 +LUK 6:25!7 +LUK 6:25!8 +LUK 6:25!9 +LUK 6:25!10 +LUK 6:25!11 +LUK 6:25!12 +LUK 6:25!13 +LUK 6:25!14 +LUK 6:25!15 +LUK 6:26!1 +LUK 6:26!2 +LUK 6:26!3 +LUK 6:26!4 +LUK 6:26!5 +LUK 6:26!6 +LUK 6:26!7 +LUK 6:26!8 +LUK 6:26!12 +LUK 6:26!9 +LUK 6:26!10 +LUK 6:26!11 +LUK 6:26!13 +LUK 6:26!14 +LUK 6:26!15 +LUK 6:26!16 +LUK 6:26!17 +LUK 6:26!18 +LUK 6:27!1 +LUK 6:27!3 +LUK 6:27!2 +LUK 6:27!4 +LUK 6:27!5 +LUK 6:27!6 +LUK 6:27!7 +LUK 6:27!8 +LUK 6:27!9 +LUK 6:27!10 +LUK 6:27!11 +LUK 6:27!12 +LUK 6:27!13 +LUK 6:27!14 +LUK 6:28!1 +LUK 6:28!2 +LUK 6:28!3 +LUK 6:28!4 +LUK 6:28!5 +LUK 6:28!6 +LUK 6:28!7 +LUK 6:28!8 +LUK 6:28!9 +LUK 6:29!1 +LUK 6:29!2 +LUK 6:29!3 +LUK 6:29!4 +LUK 6:29!5 +LUK 6:29!6 +LUK 6:29!7 +LUK 6:29!8 +LUK 6:29!9 +LUK 6:29!10 +LUK 6:29!11 +LUK 6:29!12 +LUK 6:29!13 +LUK 6:29!14 +LUK 6:29!15 +LUK 6:29!16 +LUK 6:29!17 +LUK 6:29!18 +LUK 6:29!19 +LUK 6:29!20 +LUK 6:29!21 +LUK 6:29!22 +LUK 6:30!1 +LUK 6:30!2 +LUK 6:30!3 +LUK 6:30!4 +LUK 6:30!5 +LUK 6:30!6 +LUK 6:30!7 +LUK 6:30!8 +LUK 6:30!9 +LUK 6:30!10 +LUK 6:30!11 +LUK 6:30!12 +LUK 6:31!1 +LUK 6:31!2 +LUK 6:31!3 +LUK 6:31!4 +LUK 6:31!5 +LUK 6:31!6 +LUK 6:31!7 +LUK 6:31!8 +LUK 6:31!9 +LUK 6:31!10 +LUK 6:31!11 +LUK 6:32!1 +LUK 6:32!2 +LUK 6:32!3 +LUK 6:32!4 +LUK 6:32!5 +LUK 6:32!6 +LUK 6:32!7 +LUK 6:32!9 +LUK 6:32!8 +LUK 6:32!10 +LUK 6:32!12 +LUK 6:32!11 +LUK 6:32!13 +LUK 6:32!14 +LUK 6:32!15 +LUK 6:32!16 +LUK 6:32!17 +LUK 6:32!18 +LUK 6:33!2 +LUK 6:33!3 +LUK 6:33!1 +LUK 6:33!4 +LUK 6:33!5 +LUK 6:33!6 +LUK 6:33!7 +LUK 6:33!8 +LUK 6:33!10 +LUK 6:33!9 +LUK 6:33!11 +LUK 6:33!12 +LUK 6:33!13 +LUK 6:33!14 +LUK 6:33!15 +LUK 6:33!16 +LUK 6:33!17 +LUK 6:34!1 +LUK 6:34!2 +LUK 6:34!3 +LUK 6:34!4 +LUK 6:34!5 +LUK 6:34!6 +LUK 6:34!7 +LUK 6:34!8 +LUK 6:34!10 +LUK 6:34!9 +LUK 6:34!11 +LUK 6:34!12 +LUK 6:34!13 +LUK 6:34!14 +LUK 6:34!15 +LUK 6:34!16 +LUK 6:34!17 +LUK 6:34!18 +LUK 6:34!19 +LUK 6:35!1 +LUK 6:35!2 +LUK 6:35!3 +LUK 6:35!4 +LUK 6:35!5 +LUK 6:35!6 +LUK 6:35!7 +LUK 6:35!8 +LUK 6:35!9 +LUK 6:35!10 +LUK 6:35!11 +LUK 6:35!12 +LUK 6:35!13 +LUK 6:35!14 +LUK 6:35!15 +LUK 6:35!16 +LUK 6:35!17 +LUK 6:35!18 +LUK 6:35!19 +LUK 6:35!20 +LUK 6:35!21 +LUK 6:35!22 +LUK 6:35!23 +LUK 6:35!24 +LUK 6:35!25 +LUK 6:35!26 +LUK 6:35!27 +LUK 6:35!28 +LUK 6:35!29 +LUK 6:35!30 +LUK 6:36!1 +LUK 6:36!2 +LUK 6:36!3 +LUK 6:36!4 +LUK 6:36!5 +LUK 6:36!6 +LUK 6:36!7 +LUK 6:36!8 +LUK 6:37!1 +LUK 6:37!2 +LUK 6:37!3 +LUK 6:37!4 +LUK 6:37!5 +LUK 6:37!6 +LUK 6:37!7 +LUK 6:37!8 +LUK 6:37!9 +LUK 6:37!10 +LUK 6:37!11 +LUK 6:37!12 +LUK 6:37!13 +LUK 6:37!14 +LUK 6:37!15 +LUK 6:37!16 +LUK 6:37!17 +LUK 6:38!1 +LUK 6:38!2 +LUK 6:38!3 +LUK 6:38!4 +LUK 6:38!5 +LUK 6:38!6 +LUK 6:38!7 +LUK 6:38!8 +LUK 6:38!9 +LUK 6:38!10 +LUK 6:38!11 +LUK 6:38!12 +LUK 6:38!13 +LUK 6:38!14 +LUK 6:38!16 +LUK 6:38!15 +LUK 6:38!17 +LUK 6:38!18 +LUK 6:38!19 +LUK 6:38!20 +LUK 6:39!2 +LUK 6:39!1 +LUK 6:39!3 +LUK 6:39!4 +LUK 6:39!5 +LUK 6:39!6 +LUK 6:39!7 +LUK 6:39!8 +LUK 6:39!9 +LUK 6:39!10 +LUK 6:39!11 +LUK 6:39!12 +LUK 6:39!13 +LUK 6:39!14 +LUK 6:39!15 +LUK 6:40!1 +LUK 6:40!2 +LUK 6:40!3 +LUK 6:40!4 +LUK 6:40!5 +LUK 6:40!6 +LUK 6:40!8 +LUK 6:40!7 +LUK 6:40!9 +LUK 6:40!10 +LUK 6:40!11 +LUK 6:40!12 +LUK 6:40!13 +LUK 6:40!14 +LUK 6:41!2 +LUK 6:41!1 +LUK 6:41!3 +LUK 6:41!4 +LUK 6:41!5 +LUK 6:41!6 +LUK 6:41!7 +LUK 6:41!8 +LUK 6:41!9 +LUK 6:41!10 +LUK 6:41!11 +LUK 6:41!12 +LUK 6:41!14 +LUK 6:41!13 +LUK 6:41!15 +LUK 6:41!16 +LUK 6:41!17 +LUK 6:41!18 +LUK 6:41!19 +LUK 6:41!20 +LUK 6:41!21 +LUK 6:41!22 +LUK 6:42!1 +LUK 6:42!2 +LUK 6:42!3 +LUK 6:42!4 +LUK 6:42!5 +LUK 6:42!6 +LUK 6:42!7 +LUK 6:42!8 +LUK 6:42!9 +LUK 6:42!10 +LUK 6:42!11 +LUK 6:42!12 +LUK 6:42!13 +LUK 6:42!14 +LUK 6:42!15 +LUK 6:42!16 +LUK 6:42!17 +LUK 6:42!18 +LUK 6:42!19 +LUK 6:42!20 +LUK 6:42!21 +LUK 6:42!22 +LUK 6:42!23 +LUK 6:42!24 +LUK 6:42!25 +LUK 6:42!26 +LUK 6:42!27 +LUK 6:42!28 +LUK 6:42!29 +LUK 6:42!30 +LUK 6:42!31 +LUK 6:42!32 +LUK 6:42!33 +LUK 6:42!34 +LUK 6:42!35 +LUK 6:42!36 +LUK 6:42!37 +LUK 6:42!38 +LUK 6:42!39 +LUK 6:42!40 +LUK 6:42!41 +LUK 6:42!42 +LUK 6:42!43 +LUK 6:42!44 +LUK 6:42!45 +LUK 6:42!46 +LUK 6:42!47 +LUK 6:43!2 +LUK 6:43!1 +LUK 6:43!3 +LUK 6:43!6 +LUK 6:43!4 +LUK 6:43!5 +LUK 6:43!7 +LUK 6:43!8 +LUK 6:43!9 +LUK 6:43!10 +LUK 6:43!11 +LUK 6:43!12 +LUK 6:43!13 +LUK 6:43!14 +LUK 6:43!15 +LUK 6:44!2 +LUK 6:44!1 +LUK 6:44!3 +LUK 6:44!4 +LUK 6:44!5 +LUK 6:44!6 +LUK 6:44!7 +LUK 6:44!8 +LUK 6:44!10 +LUK 6:44!9 +LUK 6:44!11 +LUK 6:44!12 +LUK 6:44!13 +LUK 6:44!14 +LUK 6:44!15 +LUK 6:44!16 +LUK 6:44!17 +LUK 6:44!18 +LUK 6:44!19 +LUK 6:45!1 +LUK 6:45!2 +LUK 6:45!3 +LUK 6:45!4 +LUK 6:45!5 +LUK 6:45!6 +LUK 6:45!7 +LUK 6:45!8 +LUK 6:45!9 +LUK 6:45!10 +LUK 6:45!11 +LUK 6:45!12 +LUK 6:45!13 +LUK 6:45!14 +LUK 6:45!15 +LUK 6:45!16 +LUK 6:45!17 +LUK 6:45!18 +LUK 6:45!19 +LUK 6:45!20 +LUK 6:45!21 +LUK 6:45!23 +LUK 6:45!22 +LUK 6:45!24 +LUK 6:45!25 +LUK 6:45!26 +LUK 6:45!27 +LUK 6:45!28 +LUK 6:45!29 +LUK 6:46!2 +LUK 6:46!1 +LUK 6:46!3 +LUK 6:46!4 +LUK 6:46!5 +LUK 6:46!6 +LUK 6:46!7 +LUK 6:46!8 +LUK 6:46!9 +LUK 6:46!10 +LUK 6:46!11 +LUK 6:47!1 +LUK 6:47!2 +LUK 6:47!3 +LUK 6:47!4 +LUK 6:47!5 +LUK 6:47!6 +LUK 6:47!7 +LUK 6:47!8 +LUK 6:47!9 +LUK 6:47!10 +LUK 6:47!11 +LUK 6:47!12 +LUK 6:47!13 +LUK 6:47!14 +LUK 6:47!15 +LUK 6:47!16 +LUK 6:47!17 +LUK 6:47!18 +LUK 6:48!1 +LUK 6:48!2 +LUK 6:48!3 +LUK 6:48!4 +LUK 6:48!5 +LUK 6:48!6 +LUK 6:48!7 +LUK 6:48!8 +LUK 6:48!9 +LUK 6:48!10 +LUK 6:48!11 +LUK 6:48!12 +LUK 6:48!13 +LUK 6:48!14 +LUK 6:48!15 +LUK 6:48!17 +LUK 6:48!16 +LUK 6:48!18 +LUK 6:48!19 +LUK 6:48!20 +LUK 6:48!21 +LUK 6:48!22 +LUK 6:48!23 +LUK 6:48!24 +LUK 6:48!25 +LUK 6:48!26 +LUK 6:48!27 +LUK 6:48!28 +LUK 6:48!29 +LUK 6:48!30 +LUK 6:48!31 +LUK 6:48!32 +LUK 6:48!33 +LUK 6:48!34 +LUK 6:49!2 +LUK 6:49!1 +LUK 6:49!3 +LUK 6:49!4 +LUK 6:49!5 +LUK 6:49!6 +LUK 6:49!7 +LUK 6:49!8 +LUK 6:49!9 +LUK 6:49!10 +LUK 6:49!11 +LUK 6:49!12 +LUK 6:49!13 +LUK 6:49!14 +LUK 6:49!15 +LUK 6:49!16 +LUK 6:49!17 +LUK 6:49!18 +LUK 6:49!19 +LUK 6:49!20 +LUK 6:49!21 +LUK 6:49!22 +LUK 6:49!23 +LUK 6:49!24 +LUK 6:49!25 +LUK 6:49!26 +LUK 6:49!27 +LUK 6:49!28 +LUK 6:49!29 +LUK 6:49!30 +LUK 6:49!31 +LUK 7:1!1 +LUK 7:1!2 +LUK 7:1!3 +LUK 7:1!4 +LUK 7:1!5 +LUK 7:1!6 +LUK 7:1!7 +LUK 7:1!8 +LUK 7:1!9 +LUK 7:1!10 +LUK 7:1!11 +LUK 7:1!12 +LUK 7:1!13 +LUK 7:1!14 +LUK 7:2!2 +LUK 7:2!1 +LUK 7:2!3 +LUK 7:2!4 +LUK 7:2!5 +LUK 7:2!6 +LUK 7:2!7 +LUK 7:2!8 +LUK 7:2!9 +LUK 7:2!10 +LUK 7:2!11 +LUK 7:2!12 +LUK 7:3!2 +LUK 7:3!1 +LUK 7:3!3 +LUK 7:3!4 +LUK 7:3!5 +LUK 7:3!6 +LUK 7:3!7 +LUK 7:3!8 +LUK 7:3!9 +LUK 7:3!10 +LUK 7:3!11 +LUK 7:3!12 +LUK 7:3!13 +LUK 7:3!14 +LUK 7:3!15 +LUK 7:3!16 +LUK 7:3!17 +LUK 7:3!18 +LUK 7:3!19 +LUK 7:4!2 +LUK 7:4!1 +LUK 7:4!3 +LUK 7:4!4 +LUK 7:4!5 +LUK 7:4!6 +LUK 7:4!7 +LUK 7:4!8 +LUK 7:4!9 +LUK 7:4!10 +LUK 7:4!11 +LUK 7:4!12 +LUK 7:4!13 +LUK 7:4!14 +LUK 7:4!15 +LUK 7:4!16 +LUK 7:5!2 +LUK 7:5!1 +LUK 7:5!3 +LUK 7:5!4 +LUK 7:5!5 +LUK 7:5!6 +LUK 7:5!7 +LUK 7:5!8 +LUK 7:5!9 +LUK 7:5!10 +LUK 7:5!11 +LUK 7:6!2 +LUK 7:6!1 +LUK 7:6!3 +LUK 7:6!4 +LUK 7:6!5 +LUK 7:6!6 +LUK 7:6!8 +LUK 7:6!7 +LUK 7:6!9 +LUK 7:6!10 +LUK 7:6!11 +LUK 7:6!12 +LUK 7:6!13 +LUK 7:6!14 +LUK 7:6!15 +LUK 7:6!16 +LUK 7:6!17 +LUK 7:6!18 +LUK 7:6!19 +LUK 7:6!20 +LUK 7:6!21 +LUK 7:6!22 +LUK 7:6!23 +LUK 7:6!24 +LUK 7:6!26 +LUK 7:6!25 +LUK 7:6!28 +LUK 7:6!27 +LUK 7:6!29 +LUK 7:6!30 +LUK 7:6!31 +LUK 7:6!32 +LUK 7:6!33 +LUK 7:6!34 +LUK 7:7!1 +LUK 7:7!2 +LUK 7:7!3 +LUK 7:7!4 +LUK 7:7!5 +LUK 7:7!6 +LUK 7:7!7 +LUK 7:7!8 +LUK 7:7!9 +LUK 7:7!10 +LUK 7:7!11 +LUK 7:7!12 +LUK 7:7!13 +LUK 7:7!14 +LUK 7:7!15 +LUK 7:8!2 +LUK 7:8!1 +LUK 7:8!3 +LUK 7:8!5 +LUK 7:8!4 +LUK 7:8!6 +LUK 7:8!7 +LUK 7:8!8 +LUK 7:8!9 +LUK 7:8!10 +LUK 7:8!11 +LUK 7:8!12 +LUK 7:8!13 +LUK 7:8!14 +LUK 7:8!15 +LUK 7:8!16 +LUK 7:8!17 +LUK 7:8!18 +LUK 7:8!19 +LUK 7:8!20 +LUK 7:8!21 +LUK 7:8!22 +LUK 7:8!23 +LUK 7:8!24 +LUK 7:8!25 +LUK 7:8!26 +LUK 7:8!27 +LUK 7:8!28 +LUK 7:8!29 +LUK 7:8!30 +LUK 7:8!31 +LUK 7:9!2 +LUK 7:9!1 +LUK 7:9!3 +LUK 7:9!4 +LUK 7:9!5 +LUK 7:9!6 +LUK 7:9!7 +LUK 7:9!8 +LUK 7:9!9 +LUK 7:9!10 +LUK 7:9!11 +LUK 7:9!12 +LUK 7:9!13 +LUK 7:9!14 +LUK 7:9!15 +LUK 7:9!16 +LUK 7:9!17 +LUK 7:9!18 +LUK 7:9!19 +LUK 7:9!20 +LUK 7:9!21 +LUK 7:9!22 +LUK 7:9!23 +LUK 7:10!1 +LUK 7:10!2 +LUK 7:10!3 +LUK 7:10!4 +LUK 7:10!5 +LUK 7:10!6 +LUK 7:10!7 +LUK 7:10!8 +LUK 7:10!9 +LUK 7:10!10 +LUK 7:10!11 +LUK 7:11!1 +LUK 7:11!2 +LUK 7:11!3 +LUK 7:11!4 +LUK 7:11!5 +LUK 7:11!6 +LUK 7:11!7 +LUK 7:11!8 +LUK 7:11!9 +LUK 7:11!10 +LUK 7:11!11 +LUK 7:11!12 +LUK 7:11!13 +LUK 7:11!14 +LUK 7:11!15 +LUK 7:11!16 +LUK 7:11!17 +LUK 7:11!18 +LUK 7:11!19 +LUK 7:12!2 +LUK 7:12!1 +LUK 7:12!3 +LUK 7:12!4 +LUK 7:12!5 +LUK 7:12!6 +LUK 7:12!7 +LUK 7:12!8 +LUK 7:12!9 +LUK 7:12!10 +LUK 7:12!11 +LUK 7:12!12 +LUK 7:12!13 +LUK 7:12!14 +LUK 7:12!15 +LUK 7:12!16 +LUK 7:12!17 +LUK 7:12!18 +LUK 7:12!19 +LUK 7:12!20 +LUK 7:12!21 +LUK 7:12!22 +LUK 7:12!23 +LUK 7:12!24 +LUK 7:12!25 +LUK 7:12!26 +LUK 7:12!27 +LUK 7:12!28 +LUK 7:13!1 +LUK 7:13!2 +LUK 7:13!3 +LUK 7:13!4 +LUK 7:13!5 +LUK 7:13!6 +LUK 7:13!7 +LUK 7:13!8 +LUK 7:13!9 +LUK 7:13!10 +LUK 7:13!11 +LUK 7:13!12 +LUK 7:13!13 +LUK 7:14!1 +LUK 7:14!2 +LUK 7:14!3 +LUK 7:14!4 +LUK 7:14!5 +LUK 7:14!7 +LUK 7:14!6 +LUK 7:14!8 +LUK 7:14!9 +LUK 7:14!10 +LUK 7:14!11 +LUK 7:14!12 +LUK 7:14!13 +LUK 7:14!14 +LUK 7:14!15 +LUK 7:15!1 +LUK 7:15!2 +LUK 7:15!3 +LUK 7:15!4 +LUK 7:15!5 +LUK 7:15!6 +LUK 7:15!7 +LUK 7:15!8 +LUK 7:15!9 +LUK 7:15!10 +LUK 7:15!11 +LUK 7:15!12 +LUK 7:15!13 +LUK 7:16!2 +LUK 7:16!1 +LUK 7:16!3 +LUK 7:16!4 +LUK 7:16!5 +LUK 7:16!6 +LUK 7:16!7 +LUK 7:16!8 +LUK 7:16!9 +LUK 7:16!10 +LUK 7:16!11 +LUK 7:16!12 +LUK 7:16!13 +LUK 7:16!14 +LUK 7:16!15 +LUK 7:16!16 +LUK 7:16!17 +LUK 7:16!18 +LUK 7:16!19 +LUK 7:16!20 +LUK 7:16!21 +LUK 7:16!22 +LUK 7:16!23 +LUK 7:17!1 +LUK 7:17!2 +LUK 7:17!3 +LUK 7:17!4 +LUK 7:17!5 +LUK 7:17!10 +LUK 7:17!11 +LUK 7:17!6 +LUK 7:17!7 +LUK 7:17!8 +LUK 7:17!9 +LUK 7:17!12 +LUK 7:17!13 +LUK 7:17!14 +LUK 7:17!15 +LUK 7:18!1 +LUK 7:18!2 +LUK 7:18!3 +LUK 7:18!4 +LUK 7:18!5 +LUK 7:18!6 +LUK 7:18!7 +LUK 7:18!8 +LUK 7:18!9 +LUK 7:18!10 +LUK 7:18!11 +LUK 7:18!12 +LUK 7:18!13 +LUK 7:18!14 +LUK 7:18!15 +LUK 7:18!16 +LUK 7:18!17 +LUK 7:18!18 +LUK 7:19!1 +LUK 7:19!2 +LUK 7:19!3 +LUK 7:19!4 +LUK 7:19!5 +LUK 7:19!6 +LUK 7:19!7 +LUK 7:19!8 +LUK 7:19!9 +LUK 7:19!10 +LUK 7:19!11 +LUK 7:19!12 +LUK 7:20!2 +LUK 7:20!1 +LUK 7:20!3 +LUK 7:20!4 +LUK 7:20!5 +LUK 7:20!6 +LUK 7:20!7 +LUK 7:20!8 +LUK 7:20!9 +LUK 7:20!10 +LUK 7:20!11 +LUK 7:20!12 +LUK 7:20!13 +LUK 7:20!14 +LUK 7:20!15 +LUK 7:20!16 +LUK 7:20!17 +LUK 7:20!18 +LUK 7:20!19 +LUK 7:20!20 +LUK 7:20!21 +LUK 7:20!22 +LUK 7:21!1 +LUK 7:21!2 +LUK 7:21!3 +LUK 7:21!4 +LUK 7:21!5 +LUK 7:21!6 +LUK 7:21!7 +LUK 7:21!8 +LUK 7:21!9 +LUK 7:21!10 +LUK 7:21!11 +LUK 7:21!12 +LUK 7:21!13 +LUK 7:21!14 +LUK 7:21!15 +LUK 7:21!16 +LUK 7:21!17 +LUK 7:21!18 +LUK 7:22!1 +LUK 7:22!2 +LUK 7:22!3 +LUK 7:22!4 +LUK 7:22!5 +LUK 7:22!6 +LUK 7:22!7 +LUK 7:22!8 +LUK 7:22!9 +LUK 7:22!10 +LUK 7:22!11 +LUK 7:22!12 +LUK 7:22!13 +LUK 7:22!14 +LUK 7:22!15 +LUK 7:22!16 +LUK 7:22!17 +LUK 7:22!18 +LUK 7:22!19 +LUK 7:22!20 +LUK 7:22!21 +LUK 7:22!22 +LUK 7:22!23 +LUK 7:22!24 +LUK 7:23!1 +LUK 7:23!2 +LUK 7:23!3 +LUK 7:23!5 +LUK 7:23!4 +LUK 7:23!6 +LUK 7:23!7 +LUK 7:23!8 +LUK 7:23!9 +LUK 7:24!2 +LUK 7:24!1 +LUK 7:24!3 +LUK 7:24!4 +LUK 7:24!5 +LUK 7:24!6 +LUK 7:24!7 +LUK 7:24!8 +LUK 7:24!9 +LUK 7:24!10 +LUK 7:24!11 +LUK 7:24!12 +LUK 7:24!13 +LUK 7:24!18 +LUK 7:24!14 +LUK 7:24!15 +LUK 7:24!16 +LUK 7:24!17 +LUK 7:24!19 +LUK 7:24!20 +LUK 7:24!21 +LUK 7:24!22 +LUK 7:25!1 +LUK 7:25!2 +LUK 7:25!4 +LUK 7:25!3 +LUK 7:25!5 +LUK 7:25!6 +LUK 7:25!7 +LUK 7:25!8 +LUK 7:25!9 +LUK 7:25!10 +LUK 7:25!11 +LUK 7:25!12 +LUK 7:25!13 +LUK 7:25!14 +LUK 7:25!15 +LUK 7:25!16 +LUK 7:25!17 +LUK 7:25!18 +LUK 7:25!19 +LUK 7:25!20 +LUK 7:25!21 +LUK 7:26!1 +LUK 7:26!2 +LUK 7:26!4 +LUK 7:26!3 +LUK 7:26!5 +LUK 7:26!6 +LUK 7:26!7 +LUK 7:26!8 +LUK 7:26!9 +LUK 7:26!10 +LUK 7:26!11 +LUK 7:27!1 +LUK 7:27!2 +LUK 7:27!3 +LUK 7:27!4 +LUK 7:27!5 +LUK 7:27!6 +LUK 7:27!7 +LUK 7:27!8 +LUK 7:27!9 +LUK 7:27!10 +LUK 7:27!11 +LUK 7:27!12 +LUK 7:27!13 +LUK 7:27!14 +LUK 7:27!15 +LUK 7:27!16 +LUK 7:27!17 +LUK 7:27!18 +LUK 7:27!19 +LUK 7:27!20 +LUK 7:28!1 +LUK 7:28!2 +LUK 7:28!3 +LUK 7:28!4 +LUK 7:28!5 +LUK 7:28!6 +LUK 7:28!7 +LUK 7:28!8 +LUK 7:28!9 +LUK 7:28!11 +LUK 7:28!10 +LUK 7:28!12 +LUK 7:28!13 +LUK 7:28!14 +LUK 7:28!15 +LUK 7:28!16 +LUK 7:28!17 +LUK 7:28!18 +LUK 7:28!19 +LUK 7:28!20 +LUK 7:29!1 +LUK 7:29!2 +LUK 7:29!3 +LUK 7:29!4 +LUK 7:29!6 +LUK 7:29!7 +LUK 7:29!8 +LUK 7:29!5 +LUK 7:29!9 +LUK 7:29!10 +LUK 7:29!11 +LUK 7:29!12 +LUK 7:29!13 +LUK 7:29!14 +LUK 7:29!15 +LUK 7:30!2 +LUK 7:30!1 +LUK 7:30!3 +LUK 7:30!4 +LUK 7:30!5 +LUK 7:30!6 +LUK 7:30!7 +LUK 7:30!8 +LUK 7:30!9 +LUK 7:30!10 +LUK 7:30!11 +LUK 7:30!12 +LUK 7:30!13 +LUK 7:30!14 +LUK 7:30!15 +LUK 7:30!16 +LUK 7:30!17 +LUK 7:31!2 +LUK 7:31!1 +LUK 7:31!3 +LUK 7:31!4 +LUK 7:31!5 +LUK 7:31!6 +LUK 7:31!7 +LUK 7:31!8 +LUK 7:31!9 +LUK 7:31!10 +LUK 7:31!11 +LUK 7:31!12 +LUK 7:32!1 +LUK 7:32!2 +LUK 7:32!3 +LUK 7:32!4 +LUK 7:32!5 +LUK 7:32!6 +LUK 7:32!7 +LUK 7:32!8 +LUK 7:32!9 +LUK 7:32!10 +LUK 7:32!11 +LUK 7:32!12 +LUK 7:32!13 +LUK 7:32!14 +LUK 7:32!15 +LUK 7:32!16 +LUK 7:32!17 +LUK 7:32!18 +LUK 7:32!19 +LUK 7:32!20 +LUK 7:32!21 +LUK 7:33!2 +LUK 7:33!1 +LUK 7:33!3 +LUK 7:33!4 +LUK 7:33!5 +LUK 7:33!6 +LUK 7:33!7 +LUK 7:33!8 +LUK 7:33!9 +LUK 7:33!10 +LUK 7:33!11 +LUK 7:33!12 +LUK 7:33!13 +LUK 7:33!14 +LUK 7:33!15 +LUK 7:34!1 +LUK 7:34!2 +LUK 7:34!3 +LUK 7:34!4 +LUK 7:34!5 +LUK 7:34!6 +LUK 7:34!7 +LUK 7:34!8 +LUK 7:34!9 +LUK 7:34!10 +LUK 7:34!11 +LUK 7:34!12 +LUK 7:34!13 +LUK 7:34!14 +LUK 7:34!15 +LUK 7:34!16 +LUK 7:34!17 +LUK 7:34!18 +LUK 7:34!19 +LUK 7:35!1 +LUK 7:35!2 +LUK 7:35!3 +LUK 7:35!4 +LUK 7:35!5 +LUK 7:35!6 +LUK 7:35!7 +LUK 7:35!8 +LUK 7:35!9 +LUK 7:36!2 +LUK 7:36!1 +LUK 7:36!3 +LUK 7:36!5 +LUK 7:36!6 +LUK 7:36!4 +LUK 7:36!7 +LUK 7:36!8 +LUK 7:36!9 +LUK 7:36!10 +LUK 7:36!11 +LUK 7:36!12 +LUK 7:36!13 +LUK 7:36!14 +LUK 7:36!15 +LUK 7:36!16 +LUK 7:36!17 +LUK 7:36!18 +LUK 7:37!1 +LUK 7:37!2 +LUK 7:37!3 +LUK 7:37!4 +LUK 7:37!5 +LUK 7:37!6 +LUK 7:37!7 +LUK 7:37!8 +LUK 7:37!9 +LUK 7:37!10 +LUK 7:37!11 +LUK 7:37!12 +LUK 7:37!13 +LUK 7:37!14 +LUK 7:37!15 +LUK 7:37!16 +LUK 7:37!17 +LUK 7:37!18 +LUK 7:37!19 +LUK 7:37!20 +LUK 7:37!21 +LUK 7:38!1 +LUK 7:38!2 +LUK 7:38!3 +LUK 7:38!4 +LUK 7:38!5 +LUK 7:38!6 +LUK 7:38!7 +LUK 7:38!8 +LUK 7:38!11 +LUK 7:38!9 +LUK 7:38!10 +LUK 7:38!12 +LUK 7:38!13 +LUK 7:38!14 +LUK 7:38!15 +LUK 7:38!16 +LUK 7:38!17 +LUK 7:38!18 +LUK 7:38!19 +LUK 7:38!20 +LUK 7:38!21 +LUK 7:38!22 +LUK 7:38!23 +LUK 7:38!24 +LUK 7:38!25 +LUK 7:38!26 +LUK 7:38!27 +LUK 7:38!28 +LUK 7:38!29 +LUK 7:38!30 +LUK 7:38!31 +LUK 7:39!2 +LUK 7:39!1 +LUK 7:39!3 +LUK 7:39!4 +LUK 7:39!5 +LUK 7:39!6 +LUK 7:39!7 +LUK 7:39!8 +LUK 7:39!9 +LUK 7:39!10 +LUK 7:39!11 +LUK 7:39!13 +LUK 7:39!12 +LUK 7:39!14 +LUK 7:39!15 +LUK 7:39!17 +LUK 7:39!16 +LUK 7:39!18 +LUK 7:39!19 +LUK 7:39!20 +LUK 7:39!21 +LUK 7:39!22 +LUK 7:39!23 +LUK 7:39!24 +LUK 7:39!25 +LUK 7:39!26 +LUK 7:39!27 +LUK 7:39!28 +LUK 7:40!1 +LUK 7:40!2 +LUK 7:40!3 +LUK 7:40!4 +LUK 7:40!5 +LUK 7:40!6 +LUK 7:40!7 +LUK 7:40!8 +LUK 7:40!9 +LUK 7:40!10 +LUK 7:40!11 +LUK 7:40!12 +LUK 7:40!14 +LUK 7:40!13 +LUK 7:40!15 +LUK 7:40!16 +LUK 7:40!17 +LUK 7:41!1 +LUK 7:41!2 +LUK 7:41!3 +LUK 7:41!4 +LUK 7:41!5 +LUK 7:41!6 +LUK 7:41!7 +LUK 7:41!8 +LUK 7:41!9 +LUK 7:41!10 +LUK 7:41!12 +LUK 7:41!11 +LUK 7:41!13 +LUK 7:41!14 +LUK 7:42!1 +LUK 7:42!2 +LUK 7:42!3 +LUK 7:42!4 +LUK 7:42!5 +LUK 7:42!6 +LUK 7:42!8 +LUK 7:42!7 +LUK 7:42!9 +LUK 7:42!10 +LUK 7:42!11 +LUK 7:42!12 +LUK 7:43!1 +LUK 7:43!2 +LUK 7:43!3 +LUK 7:43!4 +LUK 7:43!5 +LUK 7:43!6 +LUK 7:43!7 +LUK 7:43!8 +LUK 7:43!9 +LUK 7:43!11 +LUK 7:43!10 +LUK 7:43!12 +LUK 7:43!13 +LUK 7:43!14 +LUK 7:43!15 +LUK 7:44!1 +LUK 7:44!2 +LUK 7:44!3 +LUK 7:44!4 +LUK 7:44!5 +LUK 7:44!6 +LUK 7:44!7 +LUK 7:44!8 +LUK 7:44!9 +LUK 7:44!10 +LUK 7:44!11 +LUK 7:44!12 +LUK 7:44!13 +LUK 7:44!15 +LUK 7:44!14 +LUK 7:44!16 +LUK 7:44!17 +LUK 7:44!18 +LUK 7:44!19 +LUK 7:44!20 +LUK 7:44!21 +LUK 7:44!22 +LUK 7:44!23 +LUK 7:44!25 +LUK 7:44!24 +LUK 7:44!26 +LUK 7:44!27 +LUK 7:44!28 +LUK 7:44!29 +LUK 7:44!30 +LUK 7:44!31 +LUK 7:44!32 +LUK 7:44!33 +LUK 7:44!34 +LUK 7:44!35 +LUK 7:44!36 +LUK 7:45!1 +LUK 7:45!2 +LUK 7:45!3 +LUK 7:45!4 +LUK 7:45!6 +LUK 7:45!5 +LUK 7:45!7 +LUK 7:45!8 +LUK 7:45!9 +LUK 7:45!10 +LUK 7:45!11 +LUK 7:45!12 +LUK 7:45!13 +LUK 7:45!14 +LUK 7:45!15 +LUK 7:46!1 +LUK 7:46!2 +LUK 7:46!3 +LUK 7:46!4 +LUK 7:46!5 +LUK 7:46!6 +LUK 7:46!8 +LUK 7:46!7 +LUK 7:46!9 +LUK 7:46!10 +LUK 7:46!11 +LUK 7:46!12 +LUK 7:46!13 +LUK 7:47!1 +LUK 7:47!2 +LUK 7:47!3 +LUK 7:47!4 +LUK 7:47!5 +LUK 7:47!6 +LUK 7:47!7 +LUK 7:47!8 +LUK 7:47!9 +LUK 7:47!10 +LUK 7:47!11 +LUK 7:47!12 +LUK 7:47!13 +LUK 7:47!15 +LUK 7:47!14 +LUK 7:47!16 +LUK 7:47!17 +LUK 7:47!18 +LUK 7:47!19 +LUK 7:48!2 +LUK 7:48!1 +LUK 7:48!3 +LUK 7:48!4 +LUK 7:48!5 +LUK 7:48!6 +LUK 7:48!7 +LUK 7:49!1 +LUK 7:49!2 +LUK 7:49!3 +LUK 7:49!4 +LUK 7:49!5 +LUK 7:49!6 +LUK 7:49!7 +LUK 7:49!8 +LUK 7:49!9 +LUK 7:49!10 +LUK 7:49!11 +LUK 7:49!12 +LUK 7:49!13 +LUK 7:49!14 +LUK 7:50!2 +LUK 7:50!1 +LUK 7:50!3 +LUK 7:50!4 +LUK 7:50!5 +LUK 7:50!6 +LUK 7:50!7 +LUK 7:50!8 +LUK 7:50!9 +LUK 7:50!10 +LUK 7:50!11 +LUK 7:50!12 +LUK 7:50!13 +LUK 8:1!1 +LUK 8:1!2 +LUK 8:1!3 +LUK 8:1!4 +LUK 8:1!5 +LUK 8:1!6 +LUK 8:1!7 +LUK 8:1!8 +LUK 8:1!9 +LUK 8:1!10 +LUK 8:1!11 +LUK 8:1!12 +LUK 8:1!13 +LUK 8:1!14 +LUK 8:1!15 +LUK 8:1!16 +LUK 8:1!17 +LUK 8:1!18 +LUK 8:1!19 +LUK 8:1!20 +LUK 8:1!23 +LUK 8:1!24 +LUK 8:1!21 +LUK 8:1!22 +LUK 8:2!1 +LUK 8:2!2 +LUK 8:2!3 +LUK 8:2!4 +LUK 8:2!5 +LUK 8:2!6 +LUK 8:2!7 +LUK 8:2!8 +LUK 8:2!9 +LUK 8:2!10 +LUK 8:2!11 +LUK 8:2!12 +LUK 8:2!13 +LUK 8:2!14 +LUK 8:2!15 +LUK 8:2!16 +LUK 8:2!17 +LUK 8:2!18 +LUK 8:2!19 +LUK 8:2!20 +LUK 8:3!1 +LUK 8:3!2 +LUK 8:3!3 +LUK 8:3!4 +LUK 8:3!5 +LUK 8:3!6 +LUK 8:3!7 +LUK 8:3!8 +LUK 8:3!9 +LUK 8:3!10 +LUK 8:3!11 +LUK 8:3!12 +LUK 8:3!13 +LUK 8:3!14 +LUK 8:3!15 +LUK 8:3!16 +LUK 8:3!17 +LUK 8:3!18 +LUK 8:4!2 +LUK 8:4!1 +LUK 8:4!3 +LUK 8:4!4 +LUK 8:4!5 +LUK 8:4!6 +LUK 8:4!7 +LUK 8:4!8 +LUK 8:4!9 +LUK 8:4!10 +LUK 8:4!11 +LUK 8:4!12 +LUK 8:4!13 +LUK 8:4!14 +LUK 8:5!1 +LUK 8:5!2 +LUK 8:5!3 +LUK 8:5!4 +LUK 8:5!5 +LUK 8:5!6 +LUK 8:5!7 +LUK 8:5!8 +LUK 8:5!9 +LUK 8:5!10 +LUK 8:5!11 +LUK 8:5!12 +LUK 8:5!13 +LUK 8:5!14 +LUK 8:5!15 +LUK 8:5!16 +LUK 8:5!17 +LUK 8:5!18 +LUK 8:5!19 +LUK 8:5!20 +LUK 8:5!21 +LUK 8:5!22 +LUK 8:5!23 +LUK 8:5!24 +LUK 8:5!25 +LUK 8:5!26 +LUK 8:5!27 +LUK 8:5!28 +LUK 8:6!1 +LUK 8:6!2 +LUK 8:6!3 +LUK 8:6!4 +LUK 8:6!5 +LUK 8:6!6 +LUK 8:6!7 +LUK 8:6!8 +LUK 8:6!9 +LUK 8:6!10 +LUK 8:6!11 +LUK 8:6!12 +LUK 8:6!13 +LUK 8:6!14 +LUK 8:7!1 +LUK 8:7!2 +LUK 8:7!3 +LUK 8:7!4 +LUK 8:7!5 +LUK 8:7!6 +LUK 8:7!7 +LUK 8:7!8 +LUK 8:7!9 +LUK 8:7!10 +LUK 8:7!11 +LUK 8:7!12 +LUK 8:7!13 +LUK 8:8!1 +LUK 8:8!2 +LUK 8:8!3 +LUK 8:8!4 +LUK 8:8!5 +LUK 8:8!6 +LUK 8:8!7 +LUK 8:8!8 +LUK 8:8!9 +LUK 8:8!10 +LUK 8:8!11 +LUK 8:8!12 +LUK 8:8!13 +LUK 8:8!14 +LUK 8:8!15 +LUK 8:8!16 +LUK 8:8!17 +LUK 8:8!18 +LUK 8:8!19 +LUK 8:8!20 +LUK 8:8!21 +LUK 8:9!2 +LUK 8:9!1 +LUK 8:9!3 +LUK 8:9!4 +LUK 8:9!5 +LUK 8:9!6 +LUK 8:9!7 +LUK 8:9!9 +LUK 8:9!8 +LUK 8:9!10 +LUK 8:9!11 +LUK 8:10!2 +LUK 8:10!1 +LUK 8:10!3 +LUK 8:10!4 +LUK 8:10!5 +LUK 8:10!6 +LUK 8:10!7 +LUK 8:10!8 +LUK 8:10!9 +LUK 8:10!10 +LUK 8:10!11 +LUK 8:10!12 +LUK 8:10!14 +LUK 8:10!13 +LUK 8:10!15 +LUK 8:10!16 +LUK 8:10!17 +LUK 8:10!18 +LUK 8:10!19 +LUK 8:10!20 +LUK 8:10!21 +LUK 8:10!22 +LUK 8:10!23 +LUK 8:10!24 +LUK 8:10!25 +LUK 8:11!2 +LUK 8:11!1 +LUK 8:11!3 +LUK 8:11!4 +LUK 8:11!5 +LUK 8:11!6 +LUK 8:11!7 +LUK 8:11!8 +LUK 8:11!9 +LUK 8:11!10 +LUK 8:11!11 +LUK 8:11!12 +LUK 8:12!2 +LUK 8:12!1 +LUK 8:12!3 +LUK 8:12!4 +LUK 8:12!5 +LUK 8:12!6 +LUK 8:12!7 +LUK 8:12!8 +LUK 8:12!9 +LUK 8:12!10 +LUK 8:12!11 +LUK 8:12!12 +LUK 8:12!13 +LUK 8:12!14 +LUK 8:12!15 +LUK 8:12!16 +LUK 8:12!17 +LUK 8:12!18 +LUK 8:12!19 +LUK 8:12!20 +LUK 8:12!21 +LUK 8:12!22 +LUK 8:12!23 +LUK 8:12!24 +LUK 8:13!2 +LUK 8:13!1 +LUK 8:13!3 +LUK 8:13!4 +LUK 8:13!5 +LUK 8:13!6 +LUK 8:13!7 +LUK 8:13!8 +LUK 8:13!9 +LUK 8:13!10 +LUK 8:13!11 +LUK 8:13!12 +LUK 8:13!13 +LUK 8:13!14 +LUK 8:13!15 +LUK 8:13!16 +LUK 8:13!17 +LUK 8:13!18 +LUK 8:13!19 +LUK 8:13!20 +LUK 8:13!21 +LUK 8:13!22 +LUK 8:13!23 +LUK 8:13!24 +LUK 8:13!25 +LUK 8:13!26 +LUK 8:13!27 +LUK 8:14!2 +LUK 8:14!1 +LUK 8:14!3 +LUK 8:14!4 +LUK 8:14!5 +LUK 8:14!6 +LUK 8:14!7 +LUK 8:14!8 +LUK 8:14!9 +LUK 8:14!10 +LUK 8:14!11 +LUK 8:14!12 +LUK 8:14!13 +LUK 8:14!14 +LUK 8:14!15 +LUK 8:14!16 +LUK 8:14!17 +LUK 8:14!18 +LUK 8:14!19 +LUK 8:14!20 +LUK 8:14!21 +LUK 8:14!22 +LUK 8:14!23 +LUK 8:14!24 +LUK 8:15!2 +LUK 8:15!1 +LUK 8:15!3 +LUK 8:15!4 +LUK 8:15!5 +LUK 8:15!6 +LUK 8:15!7 +LUK 8:15!8 +LUK 8:15!9 +LUK 8:15!10 +LUK 8:15!11 +LUK 8:15!12 +LUK 8:15!13 +LUK 8:15!14 +LUK 8:15!15 +LUK 8:15!16 +LUK 8:15!17 +LUK 8:15!18 +LUK 8:15!19 +LUK 8:15!20 +LUK 8:15!21 +LUK 8:15!22 +LUK 8:16!2 +LUK 8:16!1 +LUK 8:16!3 +LUK 8:16!4 +LUK 8:16!5 +LUK 8:16!6 +LUK 8:16!7 +LUK 8:16!8 +LUK 8:16!9 +LUK 8:16!10 +LUK 8:16!11 +LUK 8:16!12 +LUK 8:16!13 +LUK 8:16!14 +LUK 8:16!15 +LUK 8:16!16 +LUK 8:16!17 +LUK 8:16!18 +LUK 8:16!19 +LUK 8:16!20 +LUK 8:16!21 +LUK 8:17!2 +LUK 8:17!1 +LUK 8:17!3 +LUK 8:17!4 +LUK 8:17!5 +LUK 8:17!6 +LUK 8:17!7 +LUK 8:17!8 +LUK 8:17!9 +LUK 8:17!10 +LUK 8:17!11 +LUK 8:17!12 +LUK 8:17!13 +LUK 8:17!14 +LUK 8:17!15 +LUK 8:17!16 +LUK 8:17!17 +LUK 8:17!18 +LUK 8:18!2 +LUK 8:18!1 +LUK 8:18!3 +LUK 8:18!4 +LUK 8:18!7 +LUK 8:18!6 +LUK 8:18!5 +LUK 8:18!8 +LUK 8:18!9 +LUK 8:18!10 +LUK 8:18!11 +LUK 8:18!13 +LUK 8:18!12 +LUK 8:18!14 +LUK 8:18!15 +LUK 8:18!16 +LUK 8:18!17 +LUK 8:18!19 +LUK 8:18!18 +LUK 8:18!20 +LUK 8:18!21 +LUK 8:18!22 +LUK 8:19!2 +LUK 8:19!1 +LUK 8:19!3 +LUK 8:19!4 +LUK 8:19!5 +LUK 8:19!6 +LUK 8:19!7 +LUK 8:19!8 +LUK 8:19!9 +LUK 8:19!10 +LUK 8:19!11 +LUK 8:19!12 +LUK 8:19!13 +LUK 8:19!14 +LUK 8:19!15 +LUK 8:19!16 +LUK 8:19!17 +LUK 8:19!18 +LUK 8:20!2 +LUK 8:20!1 +LUK 8:20!3 +LUK 8:20!4 +LUK 8:20!5 +LUK 8:20!6 +LUK 8:20!7 +LUK 8:20!8 +LUK 8:20!9 +LUK 8:20!10 +LUK 8:20!11 +LUK 8:20!12 +LUK 8:20!13 +LUK 8:20!15 +LUK 8:20!14 +LUK 8:21!2 +LUK 8:21!1 +LUK 8:21!3 +LUK 8:21!4 +LUK 8:21!5 +LUK 8:21!6 +LUK 8:21!7 +LUK 8:21!8 +LUK 8:21!9 +LUK 8:21!10 +LUK 8:21!11 +LUK 8:21!12 +LUK 8:21!13 +LUK 8:21!14 +LUK 8:21!15 +LUK 8:21!16 +LUK 8:21!17 +LUK 8:21!18 +LUK 8:21!19 +LUK 8:21!20 +LUK 8:21!21 +LUK 8:22!2 +LUK 8:22!1 +LUK 8:22!3 +LUK 8:22!4 +LUK 8:22!5 +LUK 8:22!6 +LUK 8:22!7 +LUK 8:22!8 +LUK 8:22!9 +LUK 8:22!10 +LUK 8:22!11 +LUK 8:22!12 +LUK 8:22!13 +LUK 8:22!14 +LUK 8:22!15 +LUK 8:22!16 +LUK 8:22!17 +LUK 8:22!18 +LUK 8:22!19 +LUK 8:22!20 +LUK 8:22!21 +LUK 8:22!22 +LUK 8:22!23 +LUK 8:22!24 +LUK 8:22!25 +LUK 8:22!26 +LUK 8:22!27 +LUK 8:23!2 +LUK 8:23!1 +LUK 8:23!3 +LUK 8:23!4 +LUK 8:23!5 +LUK 8:23!6 +LUK 8:23!7 +LUK 8:23!8 +LUK 8:23!9 +LUK 8:23!10 +LUK 8:23!11 +LUK 8:23!12 +LUK 8:23!13 +LUK 8:23!14 +LUK 8:23!15 +LUK 8:24!2 +LUK 8:24!1 +LUK 8:24!3 +LUK 8:24!4 +LUK 8:24!5 +LUK 8:24!6 +LUK 8:24!7 +LUK 8:24!8 +LUK 8:24!10 +LUK 8:24!9 +LUK 8:24!11 +LUK 8:24!12 +LUK 8:24!13 +LUK 8:24!14 +LUK 8:24!15 +LUK 8:24!16 +LUK 8:24!17 +LUK 8:24!18 +LUK 8:24!19 +LUK 8:24!20 +LUK 8:24!21 +LUK 8:24!22 +LUK 8:24!23 +LUK 8:24!24 +LUK 8:25!2 +LUK 8:25!1 +LUK 8:25!3 +LUK 8:25!4 +LUK 8:25!5 +LUK 8:25!6 +LUK 8:25!7 +LUK 8:25!9 +LUK 8:25!8 +LUK 8:25!10 +LUK 8:25!11 +LUK 8:25!12 +LUK 8:25!13 +LUK 8:25!15 +LUK 8:25!14 +LUK 8:25!16 +LUK 8:25!17 +LUK 8:25!18 +LUK 8:25!19 +LUK 8:25!20 +LUK 8:25!21 +LUK 8:25!23 +LUK 8:25!24 +LUK 8:25!25 +LUK 8:25!22 +LUK 8:25!26 +LUK 8:25!27 +LUK 8:25!28 +LUK 8:26!1 +LUK 8:26!2 +LUK 8:26!3 +LUK 8:26!4 +LUK 8:26!5 +LUK 8:26!6 +LUK 8:26!7 +LUK 8:26!8 +LUK 8:26!9 +LUK 8:26!10 +LUK 8:26!11 +LUK 8:26!12 +LUK 8:27!2 +LUK 8:27!3 +LUK 8:27!1 +LUK 8:27!4 +LUK 8:27!5 +LUK 8:27!6 +LUK 8:27!7 +LUK 8:27!8 +LUK 8:27!9 +LUK 8:27!10 +LUK 8:27!11 +LUK 8:27!12 +LUK 8:27!13 +LUK 8:27!14 +LUK 8:27!15 +LUK 8:27!16 +LUK 8:27!17 +LUK 8:27!18 +LUK 8:27!19 +LUK 8:27!20 +LUK 8:27!21 +LUK 8:27!22 +LUK 8:27!23 +LUK 8:27!24 +LUK 8:27!25 +LUK 8:27!26 +LUK 8:27!27 +LUK 8:27!28 +LUK 8:27!29 +LUK 8:28!2 +LUK 8:28!1 +LUK 8:28!3 +LUK 8:28!4 +LUK 8:28!5 +LUK 8:28!6 +LUK 8:28!7 +LUK 8:28!8 +LUK 8:28!9 +LUK 8:28!10 +LUK 8:28!11 +LUK 8:28!12 +LUK 8:28!13 +LUK 8:28!14 +LUK 8:28!15 +LUK 8:28!16 +LUK 8:28!17 +LUK 8:28!18 +LUK 8:28!19 +LUK 8:28!20 +LUK 8:28!21 +LUK 8:28!22 +LUK 8:28!23 +LUK 8:28!24 +LUK 8:28!25 +LUK 8:28!26 +LUK 8:29!2 +LUK 8:29!1 +LUK 8:29!3 +LUK 8:29!4 +LUK 8:29!5 +LUK 8:29!6 +LUK 8:29!7 +LUK 8:29!8 +LUK 8:29!9 +LUK 8:29!10 +LUK 8:29!12 +LUK 8:29!11 +LUK 8:29!13 +LUK 8:29!14 +LUK 8:29!15 +LUK 8:29!16 +LUK 8:29!17 +LUK 8:29!18 +LUK 8:29!19 +LUK 8:29!20 +LUK 8:29!21 +LUK 8:29!22 +LUK 8:29!23 +LUK 8:29!24 +LUK 8:29!25 +LUK 8:29!26 +LUK 8:29!27 +LUK 8:29!28 +LUK 8:29!29 +LUK 8:29!30 +LUK 8:29!31 +LUK 8:29!32 +LUK 8:30!2 +LUK 8:30!1 +LUK 8:30!3 +LUK 8:30!4 +LUK 8:30!5 +LUK 8:30!6 +LUK 8:30!7 +LUK 8:30!8 +LUK 8:30!9 +LUK 8:30!11 +LUK 8:30!10 +LUK 8:30!12 +LUK 8:30!13 +LUK 8:30!14 +LUK 8:30!15 +LUK 8:30!16 +LUK 8:30!17 +LUK 8:30!18 +LUK 8:30!19 +LUK 8:31!1 +LUK 8:31!2 +LUK 8:31!3 +LUK 8:31!4 +LUK 8:31!5 +LUK 8:31!6 +LUK 8:31!7 +LUK 8:31!8 +LUK 8:31!9 +LUK 8:31!10 +LUK 8:31!11 +LUK 8:32!2 +LUK 8:32!1 +LUK 8:32!3 +LUK 8:32!4 +LUK 8:32!5 +LUK 8:32!6 +LUK 8:32!7 +LUK 8:32!8 +LUK 8:32!9 +LUK 8:32!10 +LUK 8:32!11 +LUK 8:32!12 +LUK 8:32!13 +LUK 8:32!14 +LUK 8:32!15 +LUK 8:32!16 +LUK 8:32!17 +LUK 8:32!18 +LUK 8:32!19 +LUK 8:32!20 +LUK 8:32!21 +LUK 8:32!22 +LUK 8:33!2 +LUK 8:33!3 +LUK 8:33!4 +LUK 8:33!1 +LUK 8:33!5 +LUK 8:33!6 +LUK 8:33!7 +LUK 8:33!8 +LUK 8:33!9 +LUK 8:33!10 +LUK 8:33!11 +LUK 8:33!12 +LUK 8:33!13 +LUK 8:33!14 +LUK 8:33!15 +LUK 8:33!16 +LUK 8:33!17 +LUK 8:33!18 +LUK 8:33!19 +LUK 8:33!20 +LUK 8:33!21 +LUK 8:33!22 +LUK 8:33!23 +LUK 8:34!2 +LUK 8:34!3 +LUK 8:34!4 +LUK 8:34!1 +LUK 8:34!5 +LUK 8:34!6 +LUK 8:34!7 +LUK 8:34!8 +LUK 8:34!9 +LUK 8:34!10 +LUK 8:34!11 +LUK 8:34!12 +LUK 8:34!13 +LUK 8:34!14 +LUK 8:34!15 +LUK 8:34!16 +LUK 8:35!2 +LUK 8:35!1 +LUK 8:35!3 +LUK 8:35!4 +LUK 8:35!5 +LUK 8:35!6 +LUK 8:35!7 +LUK 8:35!8 +LUK 8:35!9 +LUK 8:35!10 +LUK 8:35!11 +LUK 8:35!12 +LUK 8:35!13 +LUK 8:35!14 +LUK 8:35!15 +LUK 8:35!16 +LUK 8:35!17 +LUK 8:35!18 +LUK 8:35!19 +LUK 8:35!20 +LUK 8:35!21 +LUK 8:35!22 +LUK 8:35!23 +LUK 8:35!24 +LUK 8:35!25 +LUK 8:35!26 +LUK 8:35!27 +LUK 8:35!28 +LUK 8:35!29 +LUK 8:35!30 +LUK 8:36!2 +LUK 8:36!1 +LUK 8:36!3 +LUK 8:36!4 +LUK 8:36!5 +LUK 8:36!6 +LUK 8:36!7 +LUK 8:36!8 +LUK 8:36!9 +LUK 8:37!1 +LUK 8:37!2 +LUK 8:37!4 +LUK 8:37!5 +LUK 8:37!6 +LUK 8:37!7 +LUK 8:37!8 +LUK 8:37!9 +LUK 8:37!10 +LUK 8:37!3 +LUK 8:37!11 +LUK 8:37!12 +LUK 8:37!13 +LUK 8:37!14 +LUK 8:37!15 +LUK 8:37!16 +LUK 8:37!17 +LUK 8:37!19 +LUK 8:37!18 +LUK 8:37!20 +LUK 8:37!21 +LUK 8:37!22 +LUK 8:37!23 +LUK 8:38!2 +LUK 8:38!1 +LUK 8:38!3 +LUK 8:38!4 +LUK 8:38!5 +LUK 8:38!6 +LUK 8:38!7 +LUK 8:38!8 +LUK 8:38!9 +LUK 8:38!10 +LUK 8:38!11 +LUK 8:38!12 +LUK 8:38!13 +LUK 8:38!15 +LUK 8:38!14 +LUK 8:38!16 +LUK 8:38!17 +LUK 8:39!1 +LUK 8:39!2 +LUK 8:39!3 +LUK 8:39!4 +LUK 8:39!5 +LUK 8:39!6 +LUK 8:39!7 +LUK 8:39!8 +LUK 8:39!9 +LUK 8:39!10 +LUK 8:39!11 +LUK 8:39!12 +LUK 8:39!13 +LUK 8:39!14 +LUK 8:39!15 +LUK 8:39!16 +LUK 8:39!17 +LUK 8:39!18 +LUK 8:39!19 +LUK 8:39!20 +LUK 8:39!21 +LUK 8:39!22 +LUK 8:39!23 +LUK 8:39!24 +LUK 8:40!2 +LUK 8:40!1 +LUK 8:40!3 +LUK 8:40!4 +LUK 8:40!5 +LUK 8:40!6 +LUK 8:40!7 +LUK 8:40!8 +LUK 8:40!9 +LUK 8:40!10 +LUK 8:40!12 +LUK 8:40!13 +LUK 8:40!11 +LUK 8:40!14 +LUK 8:40!15 +LUK 8:41!1 +LUK 8:41!2 +LUK 8:41!3 +LUK 8:41!4 +LUK 8:41!5 +LUK 8:41!6 +LUK 8:41!7 +LUK 8:41!8 +LUK 8:41!9 +LUK 8:41!10 +LUK 8:41!11 +LUK 8:41!12 +LUK 8:41!13 +LUK 8:41!14 +LUK 8:41!15 +LUK 8:41!16 +LUK 8:41!17 +LUK 8:41!18 +LUK 8:41!19 +LUK 8:41!20 +LUK 8:41!21 +LUK 8:41!22 +LUK 8:41!23 +LUK 8:41!24 +LUK 8:41!25 +LUK 8:41!26 +LUK 8:42!1 +LUK 8:42!2 +LUK 8:42!3 +LUK 8:42!6 +LUK 8:42!7 +LUK 8:42!8 +LUK 8:42!4 +LUK 8:42!5 +LUK 8:42!9 +LUK 8:42!10 +LUK 8:42!11 +LUK 8:42!13 +LUK 8:42!12 +LUK 8:42!14 +LUK 8:42!15 +LUK 8:42!16 +LUK 8:42!17 +LUK 8:42!18 +LUK 8:42!19 +LUK 8:42!20 +LUK 8:43!1 +LUK 8:43!2 +LUK 8:43!3 +LUK 8:43!4 +LUK 8:43!5 +LUK 8:43!6 +LUK 8:43!7 +LUK 8:43!8 +LUK 8:43!9 +LUK 8:43!10 +LUK 8:43!11 +LUK 8:43!12 +LUK 8:43!13 +LUK 8:43!14 +LUK 8:43!15 +LUK 8:44!1 +LUK 8:44!2 +LUK 8:44!3 +LUK 8:44!4 +LUK 8:44!5 +LUK 8:44!6 +LUK 8:44!7 +LUK 8:44!8 +LUK 8:44!9 +LUK 8:44!10 +LUK 8:44!11 +LUK 8:44!12 +LUK 8:44!13 +LUK 8:44!14 +LUK 8:44!15 +LUK 8:44!16 +LUK 8:45!1 +LUK 8:45!2 +LUK 8:45!3 +LUK 8:45!4 +LUK 8:45!5 +LUK 8:45!6 +LUK 8:45!7 +LUK 8:45!8 +LUK 8:45!10 +LUK 8:45!9 +LUK 8:45!11 +LUK 8:45!12 +LUK 8:45!13 +LUK 8:45!14 +LUK 8:45!15 +LUK 8:45!16 +LUK 8:45!17 +LUK 8:45!18 +LUK 8:45!19 +LUK 8:45!20 +LUK 8:45!21 +LUK 8:46!2 +LUK 8:46!1 +LUK 8:46!3 +LUK 8:46!4 +LUK 8:46!5 +LUK 8:46!6 +LUK 8:46!7 +LUK 8:46!9 +LUK 8:46!8 +LUK 8:46!10 +LUK 8:46!11 +LUK 8:46!12 +LUK 8:46!13 +LUK 8:46!14 +LUK 8:47!2 +LUK 8:47!3 +LUK 8:47!4 +LUK 8:47!1 +LUK 8:47!5 +LUK 8:47!6 +LUK 8:47!7 +LUK 8:47!8 +LUK 8:47!9 +LUK 8:47!10 +LUK 8:47!11 +LUK 8:47!12 +LUK 8:47!13 +LUK 8:47!14 +LUK 8:47!15 +LUK 8:47!16 +LUK 8:47!17 +LUK 8:47!18 +LUK 8:47!19 +LUK 8:47!20 +LUK 8:47!21 +LUK 8:47!22 +LUK 8:47!23 +LUK 8:47!24 +LUK 8:47!25 +LUK 8:47!26 +LUK 8:48!2 +LUK 8:48!1 +LUK 8:48!3 +LUK 8:48!4 +LUK 8:48!5 +LUK 8:48!6 +LUK 8:48!7 +LUK 8:48!8 +LUK 8:48!9 +LUK 8:48!10 +LUK 8:48!11 +LUK 8:48!12 +LUK 8:48!13 +LUK 8:49!1 +LUK 8:49!2 +LUK 8:49!3 +LUK 8:49!4 +LUK 8:49!5 +LUK 8:49!6 +LUK 8:49!7 +LUK 8:49!8 +LUK 8:49!9 +LUK 8:49!10 +LUK 8:49!11 +LUK 8:49!12 +LUK 8:49!13 +LUK 8:49!14 +LUK 8:49!15 +LUK 8:49!16 +LUK 8:49!17 +LUK 8:49!18 +LUK 8:50!2 +LUK 8:50!1 +LUK 8:50!3 +LUK 8:50!4 +LUK 8:50!5 +LUK 8:50!6 +LUK 8:50!7 +LUK 8:50!8 +LUK 8:50!9 +LUK 8:50!10 +LUK 8:50!11 +LUK 8:50!12 +LUK 8:51!2 +LUK 8:51!1 +LUK 8:51!3 +LUK 8:51!4 +LUK 8:51!5 +LUK 8:51!6 +LUK 8:51!7 +LUK 8:51!8 +LUK 8:51!9 +LUK 8:51!10 +LUK 8:51!11 +LUK 8:51!12 +LUK 8:51!13 +LUK 8:51!14 +LUK 8:51!15 +LUK 8:51!16 +LUK 8:51!17 +LUK 8:51!18 +LUK 8:51!19 +LUK 8:51!20 +LUK 8:51!21 +LUK 8:51!22 +LUK 8:51!23 +LUK 8:51!24 +LUK 8:51!25 +LUK 8:51!26 +LUK 8:52!2 +LUK 8:52!3 +LUK 8:52!1 +LUK 8:52!4 +LUK 8:52!5 +LUK 8:52!6 +LUK 8:52!8 +LUK 8:52!7 +LUK 8:52!9 +LUK 8:52!10 +LUK 8:52!11 +LUK 8:52!12 +LUK 8:52!13 +LUK 8:52!14 +LUK 8:52!15 +LUK 8:53!1 +LUK 8:53!2 +LUK 8:53!3 +LUK 8:53!4 +LUK 8:53!5 +LUK 8:53!6 +LUK 8:54!2 +LUK 8:54!1 +LUK 8:54!3 +LUK 8:54!4 +LUK 8:54!5 +LUK 8:54!6 +LUK 8:54!7 +LUK 8:54!8 +LUK 8:54!9 +LUK 8:54!10 +LUK 8:54!11 +LUK 8:55!1 +LUK 8:55!2 +LUK 8:55!3 +LUK 8:55!4 +LUK 8:55!5 +LUK 8:55!6 +LUK 8:55!7 +LUK 8:55!8 +LUK 8:55!9 +LUK 8:55!10 +LUK 8:55!11 +LUK 8:55!12 +LUK 8:55!13 +LUK 8:56!1 +LUK 8:56!2 +LUK 8:56!3 +LUK 8:56!4 +LUK 8:56!5 +LUK 8:56!7 +LUK 8:56!6 +LUK 8:56!8 +LUK 8:56!9 +LUK 8:56!10 +LUK 8:56!11 +LUK 8:56!12 +LUK 8:56!13 +LUK 9:1!2 +LUK 9:1!1 +LUK 9:1!3 +LUK 9:1!4 +LUK 9:1!5 +LUK 9:1!6 +LUK 9:1!7 +LUK 9:1!8 +LUK 9:1!9 +LUK 9:1!10 +LUK 9:1!11 +LUK 9:1!12 +LUK 9:1!13 +LUK 9:1!14 +LUK 9:1!15 +LUK 9:1!16 +LUK 9:2!1 +LUK 9:2!2 +LUK 9:2!3 +LUK 9:2!4 +LUK 9:2!5 +LUK 9:2!6 +LUK 9:2!7 +LUK 9:2!8 +LUK 9:2!9 +LUK 9:2!10 +LUK 9:3!1 +LUK 9:3!2 +LUK 9:3!3 +LUK 9:3!4 +LUK 9:3!5 +LUK 9:3!6 +LUK 9:3!7 +LUK 9:3!8 +LUK 9:3!9 +LUK 9:3!10 +LUK 9:3!11 +LUK 9:3!12 +LUK 9:3!13 +LUK 9:3!14 +LUK 9:3!15 +LUK 9:3!16 +LUK 9:3!17 +LUK 9:3!18 +LUK 9:3!19 +LUK 9:3!20 +LUK 9:3!21 +LUK 9:3!22 +LUK 9:4!1 +LUK 9:4!4 +LUK 9:4!2 +LUK 9:4!3 +LUK 9:4!5 +LUK 9:4!6 +LUK 9:4!7 +LUK 9:4!8 +LUK 9:4!9 +LUK 9:4!10 +LUK 9:4!11 +LUK 9:5!1 +LUK 9:5!3 +LUK 9:5!2 +LUK 9:5!4 +LUK 9:5!5 +LUK 9:5!6 +LUK 9:5!7 +LUK 9:5!8 +LUK 9:5!9 +LUK 9:5!10 +LUK 9:5!11 +LUK 9:5!12 +LUK 9:5!13 +LUK 9:5!14 +LUK 9:5!15 +LUK 9:5!16 +LUK 9:5!17 +LUK 9:5!18 +LUK 9:5!19 +LUK 9:5!20 +LUK 9:5!21 +LUK 9:5!22 +LUK 9:6!2 +LUK 9:6!1 +LUK 9:6!3 +LUK 9:6!4 +LUK 9:6!5 +LUK 9:6!6 +LUK 9:6!7 +LUK 9:6!8 +LUK 9:6!9 +LUK 9:6!10 +LUK 9:7!2 +LUK 9:7!1 +LUK 9:7!3 +LUK 9:7!4 +LUK 9:7!5 +LUK 9:7!6 +LUK 9:7!7 +LUK 9:7!8 +LUK 9:7!9 +LUK 9:7!10 +LUK 9:7!11 +LUK 9:7!12 +LUK 9:7!13 +LUK 9:7!14 +LUK 9:7!15 +LUK 9:7!16 +LUK 9:7!17 +LUK 9:7!18 +LUK 9:7!19 +LUK 9:7!20 +LUK 9:8!3 +LUK 9:8!1 +LUK 9:8!2 +LUK 9:8!4 +LUK 9:8!5 +LUK 9:8!6 +LUK 9:8!8 +LUK 9:8!7 +LUK 9:8!9 +LUK 9:8!10 +LUK 9:8!11 +LUK 9:8!12 +LUK 9:8!13 +LUK 9:8!14 +LUK 9:9!2 +LUK 9:9!1 +LUK 9:9!3 +LUK 9:9!4 +LUK 9:9!5 +LUK 9:9!6 +LUK 9:9!8 +LUK 9:9!7 +LUK 9:9!9 +LUK 9:9!10 +LUK 9:9!11 +LUK 9:9!12 +LUK 9:9!13 +LUK 9:9!14 +LUK 9:9!15 +LUK 9:9!16 +LUK 9:9!17 +LUK 9:9!18 +LUK 9:10!1 +LUK 9:10!2 +LUK 9:10!3 +LUK 9:10!4 +LUK 9:10!5 +LUK 9:10!6 +LUK 9:10!7 +LUK 9:10!8 +LUK 9:10!9 +LUK 9:10!10 +LUK 9:10!11 +LUK 9:10!12 +LUK 9:10!13 +LUK 9:10!14 +LUK 9:10!15 +LUK 9:10!16 +LUK 9:10!17 +LUK 9:10!18 +LUK 9:11!2 +LUK 9:11!1 +LUK 9:11!3 +LUK 9:11!4 +LUK 9:11!5 +LUK 9:11!6 +LUK 9:11!7 +LUK 9:11!8 +LUK 9:11!9 +LUK 9:11!10 +LUK 9:11!11 +LUK 9:11!12 +LUK 9:11!13 +LUK 9:11!14 +LUK 9:11!15 +LUK 9:11!16 +LUK 9:11!17 +LUK 9:11!18 +LUK 9:11!19 +LUK 9:11!21 +LUK 9:11!20 +LUK 9:11!22 +LUK 9:12!2 +LUK 9:12!1 +LUK 9:12!3 +LUK 9:12!4 +LUK 9:12!5 +LUK 9:12!7 +LUK 9:12!6 +LUK 9:12!8 +LUK 9:12!9 +LUK 9:12!10 +LUK 9:12!11 +LUK 9:12!12 +LUK 9:12!13 +LUK 9:12!14 +LUK 9:12!15 +LUK 9:12!16 +LUK 9:12!17 +LUK 9:12!18 +LUK 9:12!19 +LUK 9:12!20 +LUK 9:12!21 +LUK 9:12!22 +LUK 9:12!23 +LUK 9:12!24 +LUK 9:12!25 +LUK 9:12!26 +LUK 9:12!27 +LUK 9:12!28 +LUK 9:12!29 +LUK 9:12!30 +LUK 9:12!31 +LUK 9:12!32 +LUK 9:13!2 +LUK 9:13!1 +LUK 9:13!3 +LUK 9:13!4 +LUK 9:13!5 +LUK 9:13!6 +LUK 9:13!7 +LUK 9:13!8 +LUK 9:13!10 +LUK 9:13!9 +LUK 9:13!11 +LUK 9:13!12 +LUK 9:13!13 +LUK 9:13!14 +LUK 9:13!15 +LUK 9:13!16 +LUK 9:13!17 +LUK 9:13!18 +LUK 9:13!19 +LUK 9:13!20 +LUK 9:13!21 +LUK 9:13!22 +LUK 9:13!23 +LUK 9:13!24 +LUK 9:13!25 +LUK 9:13!26 +LUK 9:13!27 +LUK 9:13!28 +LUK 9:13!29 +LUK 9:13!30 +LUK 9:13!31 +LUK 9:13!32 +LUK 9:14!2 +LUK 9:14!1 +LUK 9:14!3 +LUK 9:14!5 +LUK 9:14!4 +LUK 9:14!7 +LUK 9:14!6 +LUK 9:14!8 +LUK 9:14!9 +LUK 9:14!10 +LUK 9:14!11 +LUK 9:14!12 +LUK 9:14!13 +LUK 9:14!14 +LUK 9:14!15 +LUK 9:14!16 +LUK 9:14!17 +LUK 9:15!1 +LUK 9:15!2 +LUK 9:15!3 +LUK 9:15!4 +LUK 9:15!5 +LUK 9:15!6 +LUK 9:16!2 +LUK 9:16!1 +LUK 9:16!3 +LUK 9:16!4 +LUK 9:16!5 +LUK 9:16!6 +LUK 9:16!7 +LUK 9:16!8 +LUK 9:16!9 +LUK 9:16!10 +LUK 9:16!11 +LUK 9:16!12 +LUK 9:16!13 +LUK 9:16!14 +LUK 9:16!15 +LUK 9:16!16 +LUK 9:16!17 +LUK 9:16!18 +LUK 9:16!19 +LUK 9:16!20 +LUK 9:16!21 +LUK 9:16!22 +LUK 9:16!23 +LUK 9:16!24 +LUK 9:17!1 +LUK 9:17!2 +LUK 9:17!3 +LUK 9:17!4 +LUK 9:17!5 +LUK 9:17!6 +LUK 9:17!7 +LUK 9:17!8 +LUK 9:17!9 +LUK 9:17!10 +LUK 9:17!11 +LUK 9:17!12 +LUK 9:17!13 +LUK 9:18!1 +LUK 9:18!2 +LUK 9:18!3 +LUK 9:18!4 +LUK 9:18!5 +LUK 9:18!7 +LUK 9:18!6 +LUK 9:18!8 +LUK 9:18!9 +LUK 9:18!10 +LUK 9:18!11 +LUK 9:18!12 +LUK 9:18!13 +LUK 9:18!14 +LUK 9:18!15 +LUK 9:18!16 +LUK 9:18!17 +LUK 9:18!18 +LUK 9:18!19 +LUK 9:18!23 +LUK 9:18!20 +LUK 9:18!21 +LUK 9:18!22 +LUK 9:19!2 +LUK 9:19!1 +LUK 9:19!3 +LUK 9:19!4 +LUK 9:19!5 +LUK 9:19!6 +LUK 9:19!7 +LUK 9:19!9 +LUK 9:19!8 +LUK 9:19!10 +LUK 9:19!12 +LUK 9:19!11 +LUK 9:19!13 +LUK 9:19!14 +LUK 9:19!15 +LUK 9:19!16 +LUK 9:19!17 +LUK 9:19!18 +LUK 9:20!2 +LUK 9:20!1 +LUK 9:20!3 +LUK 9:20!5 +LUK 9:20!4 +LUK 9:20!6 +LUK 9:20!7 +LUK 9:20!9 +LUK 9:20!8 +LUK 9:20!11 +LUK 9:20!10 +LUK 9:20!12 +LUK 9:20!13 +LUK 9:20!14 +LUK 9:20!15 +LUK 9:20!16 +LUK 9:20!17 +LUK 9:21!2 +LUK 9:21!1 +LUK 9:21!3 +LUK 9:21!4 +LUK 9:21!5 +LUK 9:21!6 +LUK 9:21!7 +LUK 9:21!8 +LUK 9:22!1 +LUK 9:22!2 +LUK 9:22!3 +LUK 9:22!4 +LUK 9:22!5 +LUK 9:22!6 +LUK 9:22!7 +LUK 9:22!8 +LUK 9:22!9 +LUK 9:22!10 +LUK 9:22!11 +LUK 9:22!12 +LUK 9:22!13 +LUK 9:22!14 +LUK 9:22!15 +LUK 9:22!16 +LUK 9:22!17 +LUK 9:22!18 +LUK 9:22!19 +LUK 9:22!20 +LUK 9:22!21 +LUK 9:22!22 +LUK 9:22!23 +LUK 9:22!24 +LUK 9:22!25 +LUK 9:23!2 +LUK 9:23!1 +LUK 9:23!3 +LUK 9:23!4 +LUK 9:23!5 +LUK 9:23!6 +LUK 9:23!7 +LUK 9:23!8 +LUK 9:23!9 +LUK 9:23!10 +LUK 9:23!11 +LUK 9:23!12 +LUK 9:23!13 +LUK 9:23!14 +LUK 9:23!15 +LUK 9:23!16 +LUK 9:23!17 +LUK 9:23!18 +LUK 9:23!19 +LUK 9:23!20 +LUK 9:23!21 +LUK 9:23!22 +LUK 9:24!2 +LUK 9:24!3 +LUK 9:24!1 +LUK 9:24!4 +LUK 9:24!5 +LUK 9:24!6 +LUK 9:24!7 +LUK 9:24!8 +LUK 9:24!9 +LUK 9:24!10 +LUK 9:24!12 +LUK 9:24!13 +LUK 9:24!11 +LUK 9:24!14 +LUK 9:24!15 +LUK 9:24!16 +LUK 9:24!17 +LUK 9:24!18 +LUK 9:24!19 +LUK 9:24!20 +LUK 9:24!21 +LUK 9:24!22 +LUK 9:25!2 +LUK 9:25!1 +LUK 9:25!3 +LUK 9:25!4 +LUK 9:25!5 +LUK 9:25!6 +LUK 9:25!7 +LUK 9:25!8 +LUK 9:25!10 +LUK 9:25!9 +LUK 9:25!11 +LUK 9:25!12 +LUK 9:25!13 +LUK 9:26!2 +LUK 9:26!3 +LUK 9:26!1 +LUK 9:26!4 +LUK 9:26!5 +LUK 9:26!6 +LUK 9:26!7 +LUK 9:26!8 +LUK 9:26!9 +LUK 9:26!10 +LUK 9:26!11 +LUK 9:26!12 +LUK 9:26!13 +LUK 9:26!14 +LUK 9:26!15 +LUK 9:26!16 +LUK 9:26!17 +LUK 9:26!18 +LUK 9:26!19 +LUK 9:26!20 +LUK 9:26!21 +LUK 9:26!22 +LUK 9:26!23 +LUK 9:26!24 +LUK 9:26!25 +LUK 9:26!26 +LUK 9:26!27 +LUK 9:26!28 +LUK 9:27!2 +LUK 9:27!1 +LUK 9:27!3 +LUK 9:27!4 +LUK 9:27!5 +LUK 9:27!6 +LUK 9:27!7 +LUK 9:27!8 +LUK 9:27!9 +LUK 9:27!10 +LUK 9:27!11 +LUK 9:27!12 +LUK 9:27!13 +LUK 9:27!14 +LUK 9:27!15 +LUK 9:27!16 +LUK 9:27!17 +LUK 9:27!18 +LUK 9:27!19 +LUK 9:27!20 +LUK 9:27!21 +LUK 9:28!2 +LUK 9:28!1 +LUK 9:28!3 +LUK 9:28!4 +LUK 9:28!5 +LUK 9:28!6 +LUK 9:28!7 +LUK 9:28!8 +LUK 9:28!9 +LUK 9:28!10 +LUK 9:28!11 +LUK 9:28!12 +LUK 9:28!13 +LUK 9:28!14 +LUK 9:28!15 +LUK 9:28!16 +LUK 9:28!17 +LUK 9:28!18 +LUK 9:28!19 +LUK 9:28!20 +LUK 9:28!21 +LUK 9:29!1 +LUK 9:29!2 +LUK 9:29!3 +LUK 9:29!4 +LUK 9:29!5 +LUK 9:29!6 +LUK 9:29!7 +LUK 9:29!8 +LUK 9:29!9 +LUK 9:29!10 +LUK 9:29!11 +LUK 9:29!12 +LUK 9:29!13 +LUK 9:29!14 +LUK 9:29!15 +LUK 9:29!16 +LUK 9:29!17 +LUK 9:29!18 +LUK 9:30!1 +LUK 9:30!2 +LUK 9:30!3 +LUK 9:30!4 +LUK 9:30!5 +LUK 9:30!6 +LUK 9:30!7 +LUK 9:30!8 +LUK 9:30!9 +LUK 9:30!10 +LUK 9:30!11 +LUK 9:31!1 +LUK 9:31!2 +LUK 9:31!3 +LUK 9:31!4 +LUK 9:31!5 +LUK 9:31!6 +LUK 9:31!7 +LUK 9:31!8 +LUK 9:31!9 +LUK 9:31!11 +LUK 9:31!12 +LUK 9:31!13 +LUK 9:31!10 +LUK 9:32!2 +LUK 9:32!1 +LUK 9:32!3 +LUK 9:32!4 +LUK 9:32!5 +LUK 9:32!6 +LUK 9:32!7 +LUK 9:32!8 +LUK 9:32!9 +LUK 9:32!10 +LUK 9:32!12 +LUK 9:32!11 +LUK 9:32!13 +LUK 9:32!14 +LUK 9:32!15 +LUK 9:32!16 +LUK 9:32!17 +LUK 9:32!18 +LUK 9:32!19 +LUK 9:32!20 +LUK 9:32!21 +LUK 9:32!22 +LUK 9:32!23 +LUK 9:33!1 +LUK 9:33!2 +LUK 9:33!3 +LUK 9:33!4 +LUK 9:33!5 +LUK 9:33!6 +LUK 9:33!7 +LUK 9:33!8 +LUK 9:33!9 +LUK 9:33!10 +LUK 9:33!11 +LUK 9:33!12 +LUK 9:33!13 +LUK 9:33!14 +LUK 9:33!15 +LUK 9:33!16 +LUK 9:33!17 +LUK 9:33!18 +LUK 9:33!19 +LUK 9:33!20 +LUK 9:33!21 +LUK 9:33!22 +LUK 9:33!23 +LUK 9:33!24 +LUK 9:33!25 +LUK 9:33!26 +LUK 9:33!27 +LUK 9:33!28 +LUK 9:33!29 +LUK 9:33!30 +LUK 9:33!31 +LUK 9:33!32 +LUK 9:33!33 +LUK 9:33!34 +LUK 9:33!35 +LUK 9:33!36 +LUK 9:34!2 +LUK 9:34!1 +LUK 9:34!3 +LUK 9:34!4 +LUK 9:34!5 +LUK 9:34!6 +LUK 9:34!7 +LUK 9:34!8 +LUK 9:34!9 +LUK 9:34!11 +LUK 9:34!10 +LUK 9:34!12 +LUK 9:34!13 +LUK 9:34!14 +LUK 9:34!15 +LUK 9:34!16 +LUK 9:34!17 +LUK 9:34!18 +LUK 9:35!1 +LUK 9:35!2 +LUK 9:35!3 +LUK 9:35!4 +LUK 9:35!5 +LUK 9:35!6 +LUK 9:35!7 +LUK 9:35!8 +LUK 9:35!9 +LUK 9:35!10 +LUK 9:35!11 +LUK 9:35!12 +LUK 9:35!13 +LUK 9:35!14 +LUK 9:35!15 +LUK 9:35!16 +LUK 9:36!1 +LUK 9:36!2 +LUK 9:36!3 +LUK 9:36!4 +LUK 9:36!5 +LUK 9:36!6 +LUK 9:36!7 +LUK 9:36!8 +LUK 9:36!9 +LUK 9:36!10 +LUK 9:36!11 +LUK 9:36!12 +LUK 9:36!13 +LUK 9:36!14 +LUK 9:36!15 +LUK 9:36!16 +LUK 9:36!17 +LUK 9:36!18 +LUK 9:36!19 +LUK 9:36!20 +LUK 9:36!21 +LUK 9:36!22 +LUK 9:37!2 +LUK 9:37!1 +LUK 9:37!3 +LUK 9:37!4 +LUK 9:37!5 +LUK 9:37!6 +LUK 9:37!7 +LUK 9:37!8 +LUK 9:37!9 +LUK 9:37!10 +LUK 9:37!11 +LUK 9:37!12 +LUK 9:37!13 +LUK 9:37!14 +LUK 9:38!1 +LUK 9:38!2 +LUK 9:38!3 +LUK 9:38!4 +LUK 9:38!5 +LUK 9:38!6 +LUK 9:38!7 +LUK 9:38!8 +LUK 9:38!9 +LUK 9:38!10 +LUK 9:38!11 +LUK 9:38!12 +LUK 9:38!13 +LUK 9:38!14 +LUK 9:38!15 +LUK 9:38!16 +LUK 9:38!17 +LUK 9:38!18 +LUK 9:38!19 +LUK 9:38!20 +LUK 9:39!1 +LUK 9:39!2 +LUK 9:39!3 +LUK 9:39!4 +LUK 9:39!5 +LUK 9:39!6 +LUK 9:39!7 +LUK 9:39!8 +LUK 9:39!9 +LUK 9:39!10 +LUK 9:39!11 +LUK 9:39!12 +LUK 9:39!13 +LUK 9:39!14 +LUK 9:39!15 +LUK 9:39!16 +LUK 9:39!17 +LUK 9:39!18 +LUK 9:39!19 +LUK 9:39!20 +LUK 9:40!1 +LUK 9:40!2 +LUK 9:40!3 +LUK 9:40!4 +LUK 9:40!5 +LUK 9:40!6 +LUK 9:40!7 +LUK 9:40!8 +LUK 9:40!9 +LUK 9:40!10 +LUK 9:40!11 +LUK 9:41!2 +LUK 9:41!1 +LUK 9:41!3 +LUK 9:41!4 +LUK 9:41!5 +LUK 9:41!6 +LUK 9:41!7 +LUK 9:41!8 +LUK 9:41!9 +LUK 9:41!10 +LUK 9:41!11 +LUK 9:41!12 +LUK 9:41!13 +LUK 9:41!14 +LUK 9:41!15 +LUK 9:41!16 +LUK 9:41!17 +LUK 9:41!18 +LUK 9:41!19 +LUK 9:41!20 +LUK 9:41!21 +LUK 9:41!22 +LUK 9:41!23 +LUK 9:42!2 +LUK 9:42!1 +LUK 9:42!3 +LUK 9:42!4 +LUK 9:42!5 +LUK 9:42!6 +LUK 9:42!7 +LUK 9:42!8 +LUK 9:42!9 +LUK 9:42!10 +LUK 9:42!12 +LUK 9:42!11 +LUK 9:42!13 +LUK 9:42!14 +LUK 9:42!15 +LUK 9:42!16 +LUK 9:42!17 +LUK 9:42!18 +LUK 9:42!19 +LUK 9:42!20 +LUK 9:42!21 +LUK 9:42!22 +LUK 9:42!23 +LUK 9:42!24 +LUK 9:42!25 +LUK 9:42!26 +LUK 9:42!27 +LUK 9:42!28 +LUK 9:43!2 +LUK 9:43!1 +LUK 9:43!3 +LUK 9:43!4 +LUK 9:43!5 +LUK 9:43!6 +LUK 9:43!7 +LUK 9:43!8 +LUK 9:43!10 +LUK 9:43!9 +LUK 9:43!11 +LUK 9:43!12 +LUK 9:43!13 +LUK 9:43!14 +LUK 9:43!15 +LUK 9:43!16 +LUK 9:43!17 +LUK 9:43!18 +LUK 9:43!19 +LUK 9:43!20 +LUK 9:44!1 +LUK 9:44!2 +LUK 9:44!3 +LUK 9:44!4 +LUK 9:44!5 +LUK 9:44!6 +LUK 9:44!7 +LUK 9:44!8 +LUK 9:44!9 +LUK 9:44!11 +LUK 9:44!10 +LUK 9:44!12 +LUK 9:44!13 +LUK 9:44!14 +LUK 9:44!15 +LUK 9:44!16 +LUK 9:44!17 +LUK 9:44!18 +LUK 9:44!19 +LUK 9:45!2 +LUK 9:45!1 +LUK 9:45!3 +LUK 9:45!4 +LUK 9:45!5 +LUK 9:45!6 +LUK 9:45!7 +LUK 9:45!8 +LUK 9:45!9 +LUK 9:45!10 +LUK 9:45!11 +LUK 9:45!12 +LUK 9:45!13 +LUK 9:45!14 +LUK 9:45!15 +LUK 9:45!16 +LUK 9:45!17 +LUK 9:45!18 +LUK 9:45!19 +LUK 9:45!20 +LUK 9:45!21 +LUK 9:45!22 +LUK 9:45!23 +LUK 9:46!2 +LUK 9:46!1 +LUK 9:46!4 +LUK 9:46!5 +LUK 9:46!3 +LUK 9:46!6 +LUK 9:46!8 +LUK 9:46!7 +LUK 9:46!11 +LUK 9:46!9 +LUK 9:46!10 +LUK 9:47!2 +LUK 9:47!1 +LUK 9:47!3 +LUK 9:47!4 +LUK 9:47!5 +LUK 9:47!6 +LUK 9:47!7 +LUK 9:47!8 +LUK 9:47!9 +LUK 9:47!10 +LUK 9:47!11 +LUK 9:47!12 +LUK 9:47!13 +LUK 9:47!14 +LUK 9:47!15 +LUK 9:48!1 +LUK 9:48!2 +LUK 9:48!3 +LUK 9:48!5 +LUK 9:48!4 +LUK 9:48!6 +LUK 9:48!7 +LUK 9:48!8 +LUK 9:48!9 +LUK 9:48!10 +LUK 9:48!11 +LUK 9:48!12 +LUK 9:48!13 +LUK 9:48!14 +LUK 9:48!15 +LUK 9:48!16 +LUK 9:48!18 +LUK 9:48!17 +LUK 9:48!19 +LUK 9:48!20 +LUK 9:48!21 +LUK 9:48!22 +LUK 9:48!23 +LUK 9:48!24 +LUK 9:48!26 +LUK 9:48!25 +LUK 9:48!27 +LUK 9:48!28 +LUK 9:48!29 +LUK 9:48!30 +LUK 9:48!31 +LUK 9:48!32 +LUK 9:48!33 +LUK 9:48!34 +LUK 9:49!2 +LUK 9:49!1 +LUK 9:49!3 +LUK 9:49!4 +LUK 9:49!5 +LUK 9:49!6 +LUK 9:49!7 +LUK 9:49!8 +LUK 9:49!9 +LUK 9:49!10 +LUK 9:49!11 +LUK 9:49!12 +LUK 9:49!13 +LUK 9:49!14 +LUK 9:49!15 +LUK 9:49!16 +LUK 9:49!17 +LUK 9:49!18 +LUK 9:49!19 +LUK 9:49!20 +LUK 9:49!21 +LUK 9:49!22 +LUK 9:50!2 +LUK 9:50!1 +LUK 9:50!3 +LUK 9:50!4 +LUK 9:50!5 +LUK 9:50!6 +LUK 9:50!7 +LUK 9:50!9 +LUK 9:50!8 +LUK 9:50!10 +LUK 9:50!11 +LUK 9:50!12 +LUK 9:50!13 +LUK 9:50!14 +LUK 9:50!15 +LUK 9:50!16 +LUK 9:51!2 +LUK 9:51!1 +LUK 9:51!3 +LUK 9:51!4 +LUK 9:51!5 +LUK 9:51!6 +LUK 9:51!7 +LUK 9:51!8 +LUK 9:51!9 +LUK 9:51!10 +LUK 9:51!11 +LUK 9:51!12 +LUK 9:51!13 +LUK 9:51!14 +LUK 9:51!15 +LUK 9:51!16 +LUK 9:51!17 +LUK 9:51!18 +LUK 9:51!19 +LUK 9:52!1 +LUK 9:52!2 +LUK 9:52!3 +LUK 9:52!4 +LUK 9:52!5 +LUK 9:52!6 +LUK 9:52!7 +LUK 9:52!8 +LUK 9:52!9 +LUK 9:52!10 +LUK 9:52!11 +LUK 9:52!12 +LUK 9:52!13 +LUK 9:52!14 +LUK 9:52!15 +LUK 9:53!1 +LUK 9:53!2 +LUK 9:53!3 +LUK 9:53!4 +LUK 9:53!5 +LUK 9:53!6 +LUK 9:53!7 +LUK 9:53!8 +LUK 9:53!9 +LUK 9:53!10 +LUK 9:53!11 +LUK 9:53!12 +LUK 9:54!2 +LUK 9:54!1 +LUK 9:54!3 +LUK 9:54!4 +LUK 9:54!5 +LUK 9:54!6 +LUK 9:54!7 +LUK 9:54!8 +LUK 9:54!9 +LUK 9:54!10 +LUK 9:54!11 +LUK 9:54!12 +LUK 9:54!13 +LUK 9:54!14 +LUK 9:54!15 +LUK 9:54!16 +LUK 9:54!17 +LUK 9:54!18 +LUK 9:54!19 +LUK 9:55!2 +LUK 9:55!1 +LUK 9:55!3 +LUK 9:55!4 +LUK 9:56!1 +LUK 9:56!2 +LUK 9:56!3 +LUK 9:56!4 +LUK 9:56!5 +LUK 9:57!1 +LUK 9:57!2 +LUK 9:57!3 +LUK 9:57!4 +LUK 9:57!5 +LUK 9:57!6 +LUK 9:57!7 +LUK 9:57!8 +LUK 9:57!9 +LUK 9:57!10 +LUK 9:57!11 +LUK 9:57!12 +LUK 9:57!14 +LUK 9:57!13 +LUK 9:57!15 +LUK 9:58!1 +LUK 9:58!2 +LUK 9:58!3 +LUK 9:58!4 +LUK 9:58!5 +LUK 9:58!6 +LUK 9:58!7 +LUK 9:58!8 +LUK 9:58!9 +LUK 9:58!10 +LUK 9:58!11 +LUK 9:58!12 +LUK 9:58!13 +LUK 9:58!14 +LUK 9:58!15 +LUK 9:58!17 +LUK 9:58!16 +LUK 9:58!18 +LUK 9:58!19 +LUK 9:58!20 +LUK 9:58!21 +LUK 9:58!22 +LUK 9:58!23 +LUK 9:58!24 +LUK 9:58!25 +LUK 9:58!26 +LUK 9:59!2 +LUK 9:59!1 +LUK 9:59!3 +LUK 9:59!4 +LUK 9:59!5 +LUK 9:59!6 +LUK 9:59!8 +LUK 9:59!7 +LUK 9:59!9 +LUK 9:59!10 +LUK 9:59!11 +LUK 9:59!12 +LUK 9:59!13 +LUK 9:59!14 +LUK 9:59!15 +LUK 9:59!16 +LUK 9:59!17 +LUK 9:60!2 +LUK 9:60!1 +LUK 9:60!3 +LUK 9:60!4 +LUK 9:60!5 +LUK 9:60!6 +LUK 9:60!7 +LUK 9:60!8 +LUK 9:60!9 +LUK 9:60!10 +LUK 9:60!12 +LUK 9:60!11 +LUK 9:60!13 +LUK 9:60!14 +LUK 9:60!15 +LUK 9:60!16 +LUK 9:60!17 +LUK 9:60!18 +LUK 9:61!2 +LUK 9:61!1 +LUK 9:61!3 +LUK 9:61!4 +LUK 9:61!5 +LUK 9:61!6 +LUK 9:61!7 +LUK 9:61!9 +LUK 9:61!8 +LUK 9:61!10 +LUK 9:61!11 +LUK 9:61!12 +LUK 9:61!13 +LUK 9:61!14 +LUK 9:61!15 +LUK 9:61!16 +LUK 9:61!17 +LUK 9:62!2 +LUK 9:62!1 +LUK 9:62!3 +LUK 9:62!4 +LUK 9:62!5 +LUK 9:62!6 +LUK 9:62!7 +LUK 9:62!8 +LUK 9:62!9 +LUK 9:62!10 +LUK 9:62!11 +LUK 9:62!12 +LUK 9:62!13 +LUK 9:62!14 +LUK 9:62!15 +LUK 9:62!16 +LUK 9:62!17 +LUK 9:62!18 +LUK 9:62!19 +LUK 9:62!20 +LUK 9:62!21 +LUK 9:62!22 +LUK 9:62!23 +LUK 10:1!2 +LUK 10:1!1 +LUK 10:1!3 +LUK 10:1!4 +LUK 10:1!5 +LUK 10:1!6 +LUK 10:1!7 +LUK 10:1!8 +LUK 10:1!9 +LUK 10:1!10 +LUK 10:1!11 +LUK 10:1!12 +LUK 10:1!13 +LUK 10:1!14 +LUK 10:1!15 +LUK 10:1!16 +LUK 10:1!17 +LUK 10:1!18 +LUK 10:1!19 +LUK 10:1!20 +LUK 10:1!21 +LUK 10:1!22 +LUK 10:1!23 +LUK 10:1!24 +LUK 10:1!25 +LUK 10:2!2 +LUK 10:2!1 +LUK 10:2!3 +LUK 10:2!4 +LUK 10:2!6 +LUK 10:2!5 +LUK 10:2!7 +LUK 10:2!8 +LUK 10:2!10 +LUK 10:2!9 +LUK 10:2!11 +LUK 10:2!12 +LUK 10:2!14 +LUK 10:2!13 +LUK 10:2!15 +LUK 10:2!16 +LUK 10:2!17 +LUK 10:2!18 +LUK 10:2!19 +LUK 10:2!20 +LUK 10:2!21 +LUK 10:2!22 +LUK 10:2!23 +LUK 10:2!24 +LUK 10:2!25 +LUK 10:3!1 +LUK 10:3!2 +LUK 10:3!3 +LUK 10:3!4 +LUK 10:3!5 +LUK 10:3!6 +LUK 10:3!7 +LUK 10:3!8 +LUK 10:3!9 +LUK 10:4!1 +LUK 10:4!2 +LUK 10:4!3 +LUK 10:4!4 +LUK 10:4!5 +LUK 10:4!6 +LUK 10:4!7 +LUK 10:4!8 +LUK 10:4!9 +LUK 10:4!10 +LUK 10:4!11 +LUK 10:4!12 +LUK 10:4!13 +LUK 10:5!3 +LUK 10:5!4 +LUK 10:5!1 +LUK 10:5!2 +LUK 10:5!6 +LUK 10:5!5 +LUK 10:5!7 +LUK 10:5!8 +LUK 10:5!9 +LUK 10:5!10 +LUK 10:5!11 +LUK 10:5!12 +LUK 10:6!1 +LUK 10:6!2 +LUK 10:6!3 +LUK 10:6!4 +LUK 10:6!5 +LUK 10:6!6 +LUK 10:6!7 +LUK 10:6!8 +LUK 10:6!9 +LUK 10:6!10 +LUK 10:6!11 +LUK 10:6!12 +LUK 10:6!14 +LUK 10:6!13 +LUK 10:6!15 +LUK 10:6!16 +LUK 10:6!17 +LUK 10:6!18 +LUK 10:7!3 +LUK 10:7!1 +LUK 10:7!2 +LUK 10:7!4 +LUK 10:7!5 +LUK 10:7!6 +LUK 10:7!7 +LUK 10:7!8 +LUK 10:7!9 +LUK 10:7!10 +LUK 10:7!11 +LUK 10:7!12 +LUK 10:7!14 +LUK 10:7!13 +LUK 10:7!15 +LUK 10:7!16 +LUK 10:7!17 +LUK 10:7!18 +LUK 10:7!19 +LUK 10:7!20 +LUK 10:7!21 +LUK 10:7!22 +LUK 10:7!23 +LUK 10:7!24 +LUK 10:7!25 +LUK 10:8!1 +LUK 10:8!4 +LUK 10:8!2 +LUK 10:8!3 +LUK 10:8!5 +LUK 10:8!6 +LUK 10:8!7 +LUK 10:8!8 +LUK 10:8!9 +LUK 10:8!10 +LUK 10:8!11 +LUK 10:8!12 +LUK 10:8!13 +LUK 10:9!1 +LUK 10:9!2 +LUK 10:9!3 +LUK 10:9!4 +LUK 10:9!5 +LUK 10:9!6 +LUK 10:9!7 +LUK 10:9!8 +LUK 10:9!9 +LUK 10:9!10 +LUK 10:9!11 +LUK 10:9!12 +LUK 10:9!13 +LUK 10:9!14 +LUK 10:9!15 +LUK 10:9!16 +LUK 10:10!3 +LUK 10:10!4 +LUK 10:10!1 +LUK 10:10!2 +LUK 10:10!5 +LUK 10:10!6 +LUK 10:10!7 +LUK 10:10!8 +LUK 10:10!9 +LUK 10:10!10 +LUK 10:10!11 +LUK 10:10!12 +LUK 10:10!13 +LUK 10:10!14 +LUK 10:10!15 +LUK 10:10!16 +LUK 10:11!1 +LUK 10:11!2 +LUK 10:11!3 +LUK 10:11!4 +LUK 10:11!5 +LUK 10:11!6 +LUK 10:11!7 +LUK 10:11!8 +LUK 10:11!9 +LUK 10:11!10 +LUK 10:11!11 +LUK 10:11!12 +LUK 10:11!13 +LUK 10:11!14 +LUK 10:11!15 +LUK 10:11!16 +LUK 10:11!17 +LUK 10:11!18 +LUK 10:11!19 +LUK 10:11!20 +LUK 10:11!21 +LUK 10:11!22 +LUK 10:11!23 +LUK 10:11!24 +LUK 10:12!1 +LUK 10:12!2 +LUK 10:12!3 +LUK 10:12!4 +LUK 10:12!5 +LUK 10:12!6 +LUK 10:12!7 +LUK 10:12!8 +LUK 10:12!9 +LUK 10:12!10 +LUK 10:12!11 +LUK 10:12!12 +LUK 10:12!13 +LUK 10:12!14 +LUK 10:13!1 +LUK 10:13!2 +LUK 10:13!3 +LUK 10:13!4 +LUK 10:13!5 +LUK 10:13!6 +LUK 10:13!7 +LUK 10:13!8 +LUK 10:13!9 +LUK 10:13!10 +LUK 10:13!11 +LUK 10:13!12 +LUK 10:13!13 +LUK 10:13!14 +LUK 10:13!15 +LUK 10:13!16 +LUK 10:13!17 +LUK 10:13!18 +LUK 10:13!19 +LUK 10:13!21 +LUK 10:13!20 +LUK 10:13!22 +LUK 10:13!23 +LUK 10:13!24 +LUK 10:13!25 +LUK 10:13!26 +LUK 10:13!27 +LUK 10:14!1 +LUK 10:14!2 +LUK 10:14!3 +LUK 10:14!4 +LUK 10:14!5 +LUK 10:14!6 +LUK 10:14!7 +LUK 10:14!8 +LUK 10:14!9 +LUK 10:14!10 +LUK 10:14!11 +LUK 10:15!1 +LUK 10:15!3 +LUK 10:15!4 +LUK 10:15!2 +LUK 10:15!5 +LUK 10:15!6 +LUK 10:15!7 +LUK 10:15!8 +LUK 10:15!9 +LUK 10:15!10 +LUK 10:15!11 +LUK 10:16!1 +LUK 10:16!2 +LUK 10:16!3 +LUK 10:16!4 +LUK 10:16!5 +LUK 10:16!6 +LUK 10:16!7 +LUK 10:16!8 +LUK 10:16!9 +LUK 10:16!10 +LUK 10:16!11 +LUK 10:16!13 +LUK 10:16!12 +LUK 10:16!14 +LUK 10:16!15 +LUK 10:16!16 +LUK 10:16!17 +LUK 10:16!18 +LUK 10:16!19 +LUK 10:17!2 +LUK 10:17!1 +LUK 10:17!3 +LUK 10:17!4 +LUK 10:17!5 +LUK 10:17!6 +LUK 10:17!7 +LUK 10:17!8 +LUK 10:17!9 +LUK 10:17!10 +LUK 10:17!11 +LUK 10:17!12 +LUK 10:17!13 +LUK 10:17!14 +LUK 10:17!15 +LUK 10:17!16 +LUK 10:17!17 +LUK 10:18!2 +LUK 10:18!1 +LUK 10:18!3 +LUK 10:18!4 +LUK 10:18!5 +LUK 10:18!6 +LUK 10:18!7 +LUK 10:18!8 +LUK 10:18!9 +LUK 10:18!10 +LUK 10:18!11 +LUK 10:18!12 +LUK 10:19!1 +LUK 10:19!2 +LUK 10:19!3 +LUK 10:19!4 +LUK 10:19!5 +LUK 10:19!6 +LUK 10:19!7 +LUK 10:19!8 +LUK 10:19!9 +LUK 10:19!10 +LUK 10:19!11 +LUK 10:19!12 +LUK 10:19!13 +LUK 10:19!14 +LUK 10:19!15 +LUK 10:19!16 +LUK 10:19!17 +LUK 10:19!18 +LUK 10:19!19 +LUK 10:19!20 +LUK 10:19!21 +LUK 10:19!22 +LUK 10:19!23 +LUK 10:19!24 +LUK 10:20!1 +LUK 10:20!2 +LUK 10:20!3 +LUK 10:20!4 +LUK 10:20!5 +LUK 10:20!6 +LUK 10:20!7 +LUK 10:20!8 +LUK 10:20!9 +LUK 10:20!10 +LUK 10:20!12 +LUK 10:20!11 +LUK 10:20!13 +LUK 10:20!14 +LUK 10:20!15 +LUK 10:20!16 +LUK 10:20!17 +LUK 10:20!18 +LUK 10:20!19 +LUK 10:20!20 +LUK 10:21!1 +LUK 10:21!2 +LUK 10:21!3 +LUK 10:21!4 +LUK 10:21!5 +LUK 10:21!6 +LUK 10:21!7 +LUK 10:21!8 +LUK 10:21!9 +LUK 10:21!10 +LUK 10:21!11 +LUK 10:21!12 +LUK 10:21!13 +LUK 10:21!14 +LUK 10:21!15 +LUK 10:21!16 +LUK 10:21!17 +LUK 10:21!18 +LUK 10:21!19 +LUK 10:21!20 +LUK 10:21!21 +LUK 10:21!22 +LUK 10:21!23 +LUK 10:21!24 +LUK 10:21!25 +LUK 10:21!26 +LUK 10:21!27 +LUK 10:21!28 +LUK 10:21!29 +LUK 10:21!30 +LUK 10:21!31 +LUK 10:21!32 +LUK 10:21!33 +LUK 10:21!34 +LUK 10:21!35 +LUK 10:21!36 +LUK 10:21!37 +LUK 10:21!38 +LUK 10:21!39 +LUK 10:21!40 +LUK 10:22!1 +LUK 10:22!2 +LUK 10:22!3 +LUK 10:22!4 +LUK 10:22!5 +LUK 10:22!6 +LUK 10:22!7 +LUK 10:22!8 +LUK 10:22!9 +LUK 10:22!10 +LUK 10:22!11 +LUK 10:22!12 +LUK 10:22!13 +LUK 10:22!14 +LUK 10:22!15 +LUK 10:22!16 +LUK 10:22!17 +LUK 10:22!18 +LUK 10:22!19 +LUK 10:22!20 +LUK 10:22!21 +LUK 10:22!22 +LUK 10:22!23 +LUK 10:22!24 +LUK 10:22!25 +LUK 10:22!26 +LUK 10:22!27 +LUK 10:22!28 +LUK 10:22!30 +LUK 10:22!29 +LUK 10:22!34 +LUK 10:22!31 +LUK 10:22!32 +LUK 10:22!33 +LUK 10:23!1 +LUK 10:23!2 +LUK 10:23!3 +LUK 10:23!4 +LUK 10:23!5 +LUK 10:23!6 +LUK 10:23!7 +LUK 10:23!8 +LUK 10:23!9 +LUK 10:23!10 +LUK 10:23!11 +LUK 10:23!12 +LUK 10:23!13 +LUK 10:23!14 +LUK 10:23!15 +LUK 10:24!2 +LUK 10:24!1 +LUK 10:24!3 +LUK 10:24!4 +LUK 10:24!5 +LUK 10:24!6 +LUK 10:24!7 +LUK 10:24!8 +LUK 10:24!9 +LUK 10:24!10 +LUK 10:24!11 +LUK 10:24!12 +LUK 10:24!13 +LUK 10:24!14 +LUK 10:24!15 +LUK 10:24!16 +LUK 10:24!17 +LUK 10:24!18 +LUK 10:24!19 +LUK 10:24!20 +LUK 10:24!21 +LUK 10:24!22 +LUK 10:24!23 +LUK 10:25!1 +LUK 10:25!2 +LUK 10:25!3 +LUK 10:25!4 +LUK 10:25!5 +LUK 10:25!6 +LUK 10:25!7 +LUK 10:25!8 +LUK 10:25!9 +LUK 10:25!10 +LUK 10:25!11 +LUK 10:25!12 +LUK 10:25!13 +LUK 10:25!14 +LUK 10:26!2 +LUK 10:26!1 +LUK 10:26!3 +LUK 10:26!4 +LUK 10:26!5 +LUK 10:26!6 +LUK 10:26!7 +LUK 10:26!8 +LUK 10:26!9 +LUK 10:26!10 +LUK 10:26!11 +LUK 10:26!12 +LUK 10:27!2 +LUK 10:27!1 +LUK 10:27!3 +LUK 10:27!4 +LUK 10:27!5 +LUK 10:27!6 +LUK 10:27!7 +LUK 10:27!8 +LUK 10:27!9 +LUK 10:27!10 +LUK 10:27!11 +LUK 10:27!12 +LUK 10:27!13 +LUK 10:27!14 +LUK 10:27!15 +LUK 10:27!16 +LUK 10:27!17 +LUK 10:27!18 +LUK 10:27!19 +LUK 10:27!20 +LUK 10:27!21 +LUK 10:27!22 +LUK 10:27!23 +LUK 10:27!24 +LUK 10:27!25 +LUK 10:27!26 +LUK 10:27!27 +LUK 10:27!28 +LUK 10:27!29 +LUK 10:27!30 +LUK 10:27!31 +LUK 10:27!32 +LUK 10:27!33 +LUK 10:27!34 +LUK 10:27!35 +LUK 10:27!36 +LUK 10:27!37 +LUK 10:27!38 +LUK 10:28!2 +LUK 10:28!1 +LUK 10:28!3 +LUK 10:28!4 +LUK 10:28!5 +LUK 10:28!6 +LUK 10:28!7 +LUK 10:28!8 +LUK 10:28!9 +LUK 10:29!2 +LUK 10:29!1 +LUK 10:29!3 +LUK 10:29!4 +LUK 10:29!5 +LUK 10:29!6 +LUK 10:29!7 +LUK 10:29!8 +LUK 10:29!9 +LUK 10:29!10 +LUK 10:29!11 +LUK 10:29!12 +LUK 10:29!13 +LUK 10:29!14 +LUK 10:30!1 +LUK 10:30!2 +LUK 10:30!3 +LUK 10:30!4 +LUK 10:30!5 +LUK 10:30!6 +LUK 10:30!7 +LUK 10:30!8 +LUK 10:30!9 +LUK 10:30!10 +LUK 10:30!11 +LUK 10:30!12 +LUK 10:30!13 +LUK 10:30!14 +LUK 10:30!15 +LUK 10:30!16 +LUK 10:30!17 +LUK 10:30!18 +LUK 10:30!19 +LUK 10:30!20 +LUK 10:30!21 +LUK 10:30!22 +LUK 10:30!23 +LUK 10:30!24 +LUK 10:31!3 +LUK 10:31!1 +LUK 10:31!2 +LUK 10:31!4 +LUK 10:31!5 +LUK 10:31!6 +LUK 10:31!7 +LUK 10:31!8 +LUK 10:31!9 +LUK 10:31!10 +LUK 10:31!11 +LUK 10:31!12 +LUK 10:31!13 +LUK 10:31!14 +LUK 10:32!2 +LUK 10:32!1 +LUK 10:32!3 +LUK 10:32!4 +LUK 10:32!5 +LUK 10:32!6 +LUK 10:32!7 +LUK 10:32!8 +LUK 10:32!9 +LUK 10:32!10 +LUK 10:32!11 +LUK 10:33!2 +LUK 10:33!1 +LUK 10:33!3 +LUK 10:33!4 +LUK 10:33!5 +LUK 10:33!6 +LUK 10:33!7 +LUK 10:33!8 +LUK 10:33!9 +LUK 10:33!10 +LUK 10:34!1 +LUK 10:34!2 +LUK 10:34!3 +LUK 10:34!4 +LUK 10:34!5 +LUK 10:34!6 +LUK 10:34!7 +LUK 10:34!8 +LUK 10:34!9 +LUK 10:34!10 +LUK 10:34!12 +LUK 10:34!11 +LUK 10:34!13 +LUK 10:34!14 +LUK 10:34!15 +LUK 10:34!16 +LUK 10:34!17 +LUK 10:34!18 +LUK 10:34!19 +LUK 10:34!20 +LUK 10:34!21 +LUK 10:34!22 +LUK 10:34!23 +LUK 10:34!24 +LUK 10:35!1 +LUK 10:35!2 +LUK 10:35!3 +LUK 10:35!4 +LUK 10:35!5 +LUK 10:35!6 +LUK 10:35!7 +LUK 10:35!8 +LUK 10:35!9 +LUK 10:35!10 +LUK 10:35!11 +LUK 10:35!12 +LUK 10:35!13 +LUK 10:35!14 +LUK 10:35!15 +LUK 10:35!17 +LUK 10:35!18 +LUK 10:35!16 +LUK 10:35!19 +LUK 10:35!20 +LUK 10:35!21 +LUK 10:35!22 +LUK 10:35!23 +LUK 10:35!24 +LUK 10:35!25 +LUK 10:35!26 +LUK 10:36!6 +LUK 10:36!7 +LUK 10:36!1 +LUK 10:36!2 +LUK 10:36!3 +LUK 10:36!4 +LUK 10:36!8 +LUK 10:36!5 +LUK 10:36!9 +LUK 10:36!10 +LUK 10:36!11 +LUK 10:36!12 +LUK 10:36!13 +LUK 10:37!2 +LUK 10:37!1 +LUK 10:37!3 +LUK 10:37!4 +LUK 10:37!5 +LUK 10:37!6 +LUK 10:37!7 +LUK 10:37!8 +LUK 10:37!9 +LUK 10:37!11 +LUK 10:37!10 +LUK 10:37!12 +LUK 10:37!13 +LUK 10:37!14 +LUK 10:37!15 +LUK 10:37!16 +LUK 10:37!17 +LUK 10:37!18 +LUK 10:37!19 +LUK 10:38!2 +LUK 10:38!1 +LUK 10:38!3 +LUK 10:38!4 +LUK 10:38!5 +LUK 10:38!6 +LUK 10:38!7 +LUK 10:38!8 +LUK 10:38!9 +LUK 10:38!10 +LUK 10:38!12 +LUK 10:38!11 +LUK 10:38!13 +LUK 10:38!14 +LUK 10:38!15 +LUK 10:38!16 +LUK 10:38!17 +LUK 10:38!18 +LUK 10:38!19 +LUK 10:38!20 +LUK 10:39!1 +LUK 10:39!2 +LUK 10:39!3 +LUK 10:39!4 +LUK 10:39!5 +LUK 10:39!6 +LUK 10:39!7 +LUK 10:39!8 +LUK 10:39!9 +LUK 10:39!10 +LUK 10:39!11 +LUK 10:39!12 +LUK 10:39!13 +LUK 10:39!14 +LUK 10:39!15 +LUK 10:39!16 +LUK 10:39!17 +LUK 10:39!18 +LUK 10:40!2 +LUK 10:40!1 +LUK 10:40!3 +LUK 10:40!4 +LUK 10:40!5 +LUK 10:40!6 +LUK 10:40!7 +LUK 10:40!9 +LUK 10:40!8 +LUK 10:40!10 +LUK 10:40!11 +LUK 10:40!12 +LUK 10:40!13 +LUK 10:40!14 +LUK 10:40!15 +LUK 10:40!16 +LUK 10:40!17 +LUK 10:40!18 +LUK 10:40!19 +LUK 10:40!20 +LUK 10:40!22 +LUK 10:40!21 +LUK 10:40!24 +LUK 10:40!23 +LUK 10:40!25 +LUK 10:40!26 +LUK 10:40!27 +LUK 10:40!28 +LUK 10:41!2 +LUK 10:41!1 +LUK 10:41!3 +LUK 10:41!4 +LUK 10:41!5 +LUK 10:41!6 +LUK 10:41!7 +LUK 10:41!8 +LUK 10:41!9 +LUK 10:41!10 +LUK 10:41!11 +LUK 10:41!12 +LUK 10:41!13 +LUK 10:42!2 +LUK 10:42!1 +LUK 10:42!4 +LUK 10:42!3 +LUK 10:42!5 +LUK 10:42!6 +LUK 10:42!8 +LUK 10:42!7 +LUK 10:42!9 +LUK 10:42!10 +LUK 10:42!11 +LUK 10:42!12 +LUK 10:42!13 +LUK 10:42!14 +LUK 10:42!15 +LUK 10:42!16 +LUK 11:1!1 +LUK 11:1!2 +LUK 11:1!3 +LUK 11:1!4 +LUK 11:1!5 +LUK 11:1!10 +LUK 11:1!6 +LUK 11:1!7 +LUK 11:1!8 +LUK 11:1!9 +LUK 11:1!11 +LUK 11:1!12 +LUK 11:1!13 +LUK 11:1!14 +LUK 11:1!15 +LUK 11:1!16 +LUK 11:1!17 +LUK 11:1!18 +LUK 11:1!19 +LUK 11:1!20 +LUK 11:1!21 +LUK 11:1!22 +LUK 11:1!23 +LUK 11:1!24 +LUK 11:1!25 +LUK 11:1!26 +LUK 11:1!27 +LUK 11:1!28 +LUK 11:1!29 +LUK 11:1!30 +LUK 11:2!2 +LUK 11:2!1 +LUK 11:2!3 +LUK 11:2!4 +LUK 11:2!5 +LUK 11:2!6 +LUK 11:2!7 +LUK 11:2!8 +LUK 11:2!9 +LUK 11:2!10 +LUK 11:2!11 +LUK 11:2!12 +LUK 11:2!13 +LUK 11:2!14 +LUK 11:2!15 +LUK 11:3!1 +LUK 11:3!2 +LUK 11:3!3 +LUK 11:3!4 +LUK 11:3!5 +LUK 11:3!6 +LUK 11:3!7 +LUK 11:3!8 +LUK 11:3!9 +LUK 11:3!10 +LUK 11:4!1 +LUK 11:4!2 +LUK 11:4!3 +LUK 11:4!4 +LUK 11:4!5 +LUK 11:4!6 +LUK 11:4!8 +LUK 11:4!7 +LUK 11:4!9 +LUK 11:4!10 +LUK 11:4!11 +LUK 11:4!12 +LUK 11:4!13 +LUK 11:4!14 +LUK 11:4!15 +LUK 11:4!16 +LUK 11:4!17 +LUK 11:4!18 +LUK 11:4!19 +LUK 11:5!1 +LUK 11:5!2 +LUK 11:5!3 +LUK 11:5!4 +LUK 11:5!5 +LUK 11:5!6 +LUK 11:5!7 +LUK 11:5!8 +LUK 11:5!9 +LUK 11:5!10 +LUK 11:5!11 +LUK 11:5!12 +LUK 11:5!13 +LUK 11:5!14 +LUK 11:5!15 +LUK 11:5!16 +LUK 11:5!17 +LUK 11:5!18 +LUK 11:5!19 +LUK 11:5!20 +LUK 11:5!21 +LUK 11:5!22 +LUK 11:6!1 +LUK 11:6!2 +LUK 11:6!3 +LUK 11:6!4 +LUK 11:6!5 +LUK 11:6!6 +LUK 11:6!7 +LUK 11:6!8 +LUK 11:6!9 +LUK 11:6!10 +LUK 11:6!11 +LUK 11:6!12 +LUK 11:6!13 +LUK 11:6!14 +LUK 11:7!1 +LUK 11:7!2 +LUK 11:7!3 +LUK 11:7!4 +LUK 11:7!5 +LUK 11:7!6 +LUK 11:7!7 +LUK 11:7!8 +LUK 11:7!9 +LUK 11:7!10 +LUK 11:7!11 +LUK 11:7!12 +LUK 11:7!13 +LUK 11:7!14 +LUK 11:7!15 +LUK 11:7!16 +LUK 11:7!17 +LUK 11:7!18 +LUK 11:7!19 +LUK 11:7!20 +LUK 11:7!21 +LUK 11:7!22 +LUK 11:7!23 +LUK 11:7!24 +LUK 11:7!25 +LUK 11:7!26 +LUK 11:7!27 +LUK 11:8!1 +LUK 11:8!2 +LUK 11:8!3 +LUK 11:8!4 +LUK 11:8!5 +LUK 11:8!6 +LUK 11:8!7 +LUK 11:8!8 +LUK 11:8!9 +LUK 11:8!10 +LUK 11:8!11 +LUK 11:8!12 +LUK 11:8!13 +LUK 11:8!15 +LUK 11:8!14 +LUK 11:8!16 +LUK 11:8!17 +LUK 11:8!18 +LUK 11:8!19 +LUK 11:8!20 +LUK 11:8!21 +LUK 11:8!22 +LUK 11:8!23 +LUK 11:9!1 +LUK 11:9!2 +LUK 11:9!3 +LUK 11:9!4 +LUK 11:9!5 +LUK 11:9!6 +LUK 11:9!7 +LUK 11:9!8 +LUK 11:9!9 +LUK 11:9!10 +LUK 11:9!11 +LUK 11:9!12 +LUK 11:9!13 +LUK 11:9!14 +LUK 11:10!2 +LUK 11:10!1 +LUK 11:10!3 +LUK 11:10!4 +LUK 11:10!5 +LUK 11:10!6 +LUK 11:10!7 +LUK 11:10!8 +LUK 11:10!9 +LUK 11:10!10 +LUK 11:10!11 +LUK 11:10!12 +LUK 11:10!13 +LUK 11:11!2 +LUK 11:11!1 +LUK 11:11!3 +LUK 11:11!4 +LUK 11:11!5 +LUK 11:11!6 +LUK 11:11!7 +LUK 11:11!8 +LUK 11:11!9 +LUK 11:11!10 +LUK 11:11!11 +LUK 11:11!12 +LUK 11:11!13 +LUK 11:11!14 +LUK 11:11!15 +LUK 11:11!16 +LUK 11:12!1 +LUK 11:12!2 +LUK 11:12!3 +LUK 11:12!4 +LUK 11:12!5 +LUK 11:12!6 +LUK 11:12!7 +LUK 11:13!2 +LUK 11:13!1 +LUK 11:13!3 +LUK 11:13!4 +LUK 11:13!5 +LUK 11:13!6 +LUK 11:13!7 +LUK 11:13!8 +LUK 11:13!9 +LUK 11:13!10 +LUK 11:13!11 +LUK 11:13!12 +LUK 11:13!13 +LUK 11:13!14 +LUK 11:13!15 +LUK 11:13!16 +LUK 11:13!17 +LUK 11:13!18 +LUK 11:13!19 +LUK 11:13!20 +LUK 11:13!21 +LUK 11:13!22 +LUK 11:13!23 +LUK 11:13!24 +LUK 11:13!25 +LUK 11:14!1 +LUK 11:14!2 +LUK 11:14!3 +LUK 11:14!4 +LUK 11:14!5 +LUK 11:14!6 +LUK 11:14!7 +LUK 11:14!8 +LUK 11:14!10 +LUK 11:14!9 +LUK 11:14!11 +LUK 11:14!12 +LUK 11:14!13 +LUK 11:14!14 +LUK 11:14!15 +LUK 11:14!16 +LUK 11:14!17 +LUK 11:14!18 +LUK 11:14!19 +LUK 11:14!20 +LUK 11:15!2 +LUK 11:15!1 +LUK 11:15!3 +LUK 11:15!4 +LUK 11:15!5 +LUK 11:15!6 +LUK 11:15!7 +LUK 11:15!8 +LUK 11:15!9 +LUK 11:15!10 +LUK 11:15!11 +LUK 11:15!12 +LUK 11:15!13 +LUK 11:15!14 +LUK 11:16!2 +LUK 11:16!1 +LUK 11:16!3 +LUK 11:16!4 +LUK 11:16!5 +LUK 11:16!6 +LUK 11:16!7 +LUK 11:16!8 +LUK 11:16!9 +LUK 11:17!2 +LUK 11:17!1 +LUK 11:17!3 +LUK 11:17!4 +LUK 11:17!5 +LUK 11:17!6 +LUK 11:17!7 +LUK 11:17!8 +LUK 11:17!9 +LUK 11:17!10 +LUK 11:17!11 +LUK 11:17!12 +LUK 11:17!13 +LUK 11:17!14 +LUK 11:17!15 +LUK 11:17!16 +LUK 11:17!17 +LUK 11:17!18 +LUK 11:17!19 +LUK 11:18!2 +LUK 11:18!1 +LUK 11:18!3 +LUK 11:18!4 +LUK 11:18!5 +LUK 11:18!6 +LUK 11:18!7 +LUK 11:18!8 +LUK 11:18!9 +LUK 11:18!10 +LUK 11:18!11 +LUK 11:18!12 +LUK 11:18!13 +LUK 11:18!14 +LUK 11:18!15 +LUK 11:18!16 +LUK 11:18!17 +LUK 11:18!18 +LUK 11:18!19 +LUK 11:18!20 +LUK 11:18!21 +LUK 11:19!2 +LUK 11:19!1 +LUK 11:19!3 +LUK 11:19!4 +LUK 11:19!5 +LUK 11:19!6 +LUK 11:19!7 +LUK 11:19!8 +LUK 11:19!9 +LUK 11:19!10 +LUK 11:19!11 +LUK 11:19!12 +LUK 11:19!13 +LUK 11:19!14 +LUK 11:19!15 +LUK 11:19!16 +LUK 11:19!17 +LUK 11:19!18 +LUK 11:19!19 +LUK 11:19!20 +LUK 11:20!2 +LUK 11:20!1 +LUK 11:20!3 +LUK 11:20!4 +LUK 11:20!5 +LUK 11:20!6 +LUK 11:20!7 +LUK 11:20!8 +LUK 11:20!9 +LUK 11:20!10 +LUK 11:20!11 +LUK 11:20!12 +LUK 11:20!13 +LUK 11:20!14 +LUK 11:20!15 +LUK 11:20!16 +LUK 11:20!17 +LUK 11:21!1 +LUK 11:21!2 +LUK 11:21!3 +LUK 11:21!4 +LUK 11:21!5 +LUK 11:21!6 +LUK 11:21!7 +LUK 11:21!8 +LUK 11:21!9 +LUK 11:21!10 +LUK 11:21!11 +LUK 11:21!12 +LUK 11:21!13 +LUK 11:21!14 +LUK 11:22!2 +LUK 11:22!1 +LUK 11:22!3 +LUK 11:22!4 +LUK 11:22!5 +LUK 11:22!6 +LUK 11:22!7 +LUK 11:22!8 +LUK 11:22!9 +LUK 11:22!10 +LUK 11:22!11 +LUK 11:22!12 +LUK 11:22!13 +LUK 11:22!14 +LUK 11:22!15 +LUK 11:22!16 +LUK 11:22!17 +LUK 11:22!18 +LUK 11:22!19 +LUK 11:23!1 +LUK 11:23!2 +LUK 11:23!3 +LUK 11:23!4 +LUK 11:23!5 +LUK 11:23!6 +LUK 11:23!7 +LUK 11:23!8 +LUK 11:23!9 +LUK 11:23!10 +LUK 11:23!11 +LUK 11:23!12 +LUK 11:23!13 +LUK 11:23!14 +LUK 11:23!15 +LUK 11:24!1 +LUK 11:24!2 +LUK 11:24!3 +LUK 11:24!4 +LUK 11:24!5 +LUK 11:24!6 +LUK 11:24!7 +LUK 11:24!8 +LUK 11:24!9 +LUK 11:24!10 +LUK 11:24!11 +LUK 11:24!12 +LUK 11:24!13 +LUK 11:24!14 +LUK 11:24!15 +LUK 11:24!16 +LUK 11:24!17 +LUK 11:24!18 +LUK 11:24!19 +LUK 11:24!20 +LUK 11:24!21 +LUK 11:24!22 +LUK 11:24!23 +LUK 11:24!24 +LUK 11:24!25 +LUK 11:25!1 +LUK 11:25!2 +LUK 11:25!3 +LUK 11:25!4 +LUK 11:25!5 +LUK 11:25!6 +LUK 11:26!1 +LUK 11:26!2 +LUK 11:26!3 +LUK 11:26!4 +LUK 11:26!5 +LUK 11:26!6 +LUK 11:26!7 +LUK 11:26!8 +LUK 11:26!9 +LUK 11:26!10 +LUK 11:26!11 +LUK 11:26!12 +LUK 11:26!13 +LUK 11:26!14 +LUK 11:26!15 +LUK 11:26!16 +LUK 11:26!17 +LUK 11:26!18 +LUK 11:26!19 +LUK 11:26!20 +LUK 11:26!21 +LUK 11:26!22 +LUK 11:26!23 +LUK 11:27!2 +LUK 11:27!1 +LUK 11:27!3 +LUK 11:27!4 +LUK 11:27!5 +LUK 11:27!6 +LUK 11:27!7 +LUK 11:27!8 +LUK 11:27!10 +LUK 11:27!9 +LUK 11:27!11 +LUK 11:27!12 +LUK 11:27!13 +LUK 11:27!14 +LUK 11:27!15 +LUK 11:27!16 +LUK 11:27!17 +LUK 11:27!18 +LUK 11:27!19 +LUK 11:27!20 +LUK 11:27!21 +LUK 11:27!22 +LUK 11:27!23 +LUK 11:27!24 +LUK 11:27!25 +LUK 11:27!26 +LUK 11:28!2 +LUK 11:28!1 +LUK 11:28!3 +LUK 11:28!4 +LUK 11:28!5 +LUK 11:28!6 +LUK 11:28!7 +LUK 11:28!8 +LUK 11:28!9 +LUK 11:28!10 +LUK 11:28!11 +LUK 11:28!12 +LUK 11:28!13 +LUK 11:29!2 +LUK 11:29!1 +LUK 11:29!3 +LUK 11:29!4 +LUK 11:29!5 +LUK 11:29!6 +LUK 11:29!7 +LUK 11:29!8 +LUK 11:29!9 +LUK 11:29!10 +LUK 11:29!11 +LUK 11:29!12 +LUK 11:29!13 +LUK 11:29!14 +LUK 11:29!15 +LUK 11:29!16 +LUK 11:29!17 +LUK 11:29!18 +LUK 11:29!19 +LUK 11:29!20 +LUK 11:29!21 +LUK 11:29!22 +LUK 11:29!23 +LUK 11:29!24 +LUK 11:30!2 +LUK 11:30!1 +LUK 11:30!3 +LUK 11:30!4 +LUK 11:30!5 +LUK 11:30!6 +LUK 11:30!7 +LUK 11:30!8 +LUK 11:30!9 +LUK 11:30!10 +LUK 11:30!11 +LUK 11:30!12 +LUK 11:30!13 +LUK 11:30!14 +LUK 11:30!15 +LUK 11:30!16 +LUK 11:30!17 +LUK 11:31!1 +LUK 11:31!2 +LUK 11:31!3 +LUK 11:31!4 +LUK 11:31!5 +LUK 11:31!6 +LUK 11:31!7 +LUK 11:31!8 +LUK 11:31!9 +LUK 11:31!10 +LUK 11:31!11 +LUK 11:31!12 +LUK 11:31!13 +LUK 11:31!14 +LUK 11:31!15 +LUK 11:31!16 +LUK 11:31!17 +LUK 11:31!18 +LUK 11:31!19 +LUK 11:31!20 +LUK 11:31!21 +LUK 11:31!22 +LUK 11:31!23 +LUK 11:31!24 +LUK 11:31!25 +LUK 11:31!26 +LUK 11:31!27 +LUK 11:31!28 +LUK 11:31!29 +LUK 11:31!30 +LUK 11:31!31 +LUK 11:32!1 +LUK 11:32!2 +LUK 11:32!3 +LUK 11:32!4 +LUK 11:32!5 +LUK 11:32!6 +LUK 11:32!7 +LUK 11:32!8 +LUK 11:32!9 +LUK 11:32!10 +LUK 11:32!11 +LUK 11:32!12 +LUK 11:32!13 +LUK 11:32!14 +LUK 11:32!15 +LUK 11:32!16 +LUK 11:32!17 +LUK 11:32!18 +LUK 11:32!19 +LUK 11:32!20 +LUK 11:32!21 +LUK 11:32!22 +LUK 11:32!23 +LUK 11:32!24 +LUK 11:33!1 +LUK 11:33!2 +LUK 11:33!3 +LUK 11:33!4 +LUK 11:33!5 +LUK 11:33!6 +LUK 11:33!7 +LUK 11:33!8 +LUK 11:33!9 +LUK 11:33!10 +LUK 11:33!11 +LUK 11:33!12 +LUK 11:33!13 +LUK 11:33!14 +LUK 11:33!15 +LUK 11:33!16 +LUK 11:33!17 +LUK 11:33!18 +LUK 11:33!19 +LUK 11:33!20 +LUK 11:34!1 +LUK 11:34!2 +LUK 11:34!3 +LUK 11:34!4 +LUK 11:34!5 +LUK 11:34!6 +LUK 11:34!7 +LUK 11:34!8 +LUK 11:34!9 +LUK 11:34!10 +LUK 11:34!11 +LUK 11:34!12 +LUK 11:34!13 +LUK 11:34!14 +LUK 11:34!15 +LUK 11:34!16 +LUK 11:34!17 +LUK 11:34!18 +LUK 11:34!19 +LUK 11:34!20 +LUK 11:34!21 +LUK 11:34!23 +LUK 11:34!22 +LUK 11:34!24 +LUK 11:34!25 +LUK 11:34!26 +LUK 11:34!27 +LUK 11:34!28 +LUK 11:34!29 +LUK 11:34!30 +LUK 11:35!2 +LUK 11:35!1 +LUK 11:35!3 +LUK 11:35!4 +LUK 11:35!5 +LUK 11:35!6 +LUK 11:35!7 +LUK 11:35!8 +LUK 11:35!9 +LUK 11:35!10 +LUK 11:36!2 +LUK 11:36!1 +LUK 11:36!3 +LUK 11:36!4 +LUK 11:36!5 +LUK 11:36!6 +LUK 11:36!7 +LUK 11:36!8 +LUK 11:36!9 +LUK 11:36!10 +LUK 11:36!11 +LUK 11:36!12 +LUK 11:36!13 +LUK 11:36!14 +LUK 11:36!15 +LUK 11:36!16 +LUK 11:36!17 +LUK 11:36!18 +LUK 11:36!19 +LUK 11:36!20 +LUK 11:36!21 +LUK 11:36!22 +LUK 11:36!23 +LUK 11:37!2 +LUK 11:37!1 +LUK 11:37!3 +LUK 11:37!4 +LUK 11:37!5 +LUK 11:37!6 +LUK 11:37!7 +LUK 11:37!8 +LUK 11:37!9 +LUK 11:37!10 +LUK 11:37!11 +LUK 11:37!13 +LUK 11:37!12 +LUK 11:37!14 +LUK 11:38!2 +LUK 11:38!1 +LUK 11:38!3 +LUK 11:38!4 +LUK 11:38!5 +LUK 11:38!6 +LUK 11:38!7 +LUK 11:38!8 +LUK 11:38!9 +LUK 11:38!10 +LUK 11:38!11 +LUK 11:38!12 +LUK 11:39!2 +LUK 11:39!1 +LUK 11:39!3 +LUK 11:39!4 +LUK 11:39!5 +LUK 11:39!6 +LUK 11:39!7 +LUK 11:39!8 +LUK 11:39!9 +LUK 11:39!10 +LUK 11:39!11 +LUK 11:39!12 +LUK 11:39!13 +LUK 11:39!14 +LUK 11:39!15 +LUK 11:39!16 +LUK 11:39!17 +LUK 11:39!18 +LUK 11:39!20 +LUK 11:39!19 +LUK 11:39!21 +LUK 11:39!22 +LUK 11:39!23 +LUK 11:39!24 +LUK 11:39!25 +LUK 11:39!26 +LUK 11:40!1 +LUK 11:40!2 +LUK 11:40!3 +LUK 11:40!4 +LUK 11:40!5 +LUK 11:40!6 +LUK 11:40!7 +LUK 11:40!8 +LUK 11:40!9 +LUK 11:40!10 +LUK 11:41!1 +LUK 11:41!2 +LUK 11:41!3 +LUK 11:41!4 +LUK 11:41!5 +LUK 11:41!6 +LUK 11:41!7 +LUK 11:41!8 +LUK 11:41!9 +LUK 11:41!10 +LUK 11:41!11 +LUK 11:42!1 +LUK 11:42!2 +LUK 11:42!3 +LUK 11:42!4 +LUK 11:42!5 +LUK 11:42!6 +LUK 11:42!7 +LUK 11:42!8 +LUK 11:42!9 +LUK 11:42!10 +LUK 11:42!11 +LUK 11:42!12 +LUK 11:42!13 +LUK 11:42!14 +LUK 11:42!15 +LUK 11:42!16 +LUK 11:42!17 +LUK 11:42!18 +LUK 11:42!19 +LUK 11:42!20 +LUK 11:42!21 +LUK 11:42!22 +LUK 11:42!23 +LUK 11:42!24 +LUK 11:42!26 +LUK 11:42!27 +LUK 11:42!25 +LUK 11:42!28 +LUK 11:42!29 +LUK 11:42!30 +LUK 11:42!31 +LUK 11:43!1 +LUK 11:43!2 +LUK 11:43!3 +LUK 11:43!4 +LUK 11:43!5 +LUK 11:43!6 +LUK 11:43!7 +LUK 11:43!8 +LUK 11:43!9 +LUK 11:43!10 +LUK 11:43!11 +LUK 11:43!12 +LUK 11:43!13 +LUK 11:43!14 +LUK 11:43!15 +LUK 11:43!16 +LUK 11:43!17 +LUK 11:44!1 +LUK 11:44!2 +LUK 11:44!3 +LUK 11:44!4 +LUK 11:44!5 +LUK 11:44!6 +LUK 11:44!7 +LUK 11:44!8 +LUK 11:44!9 +LUK 11:44!10 +LUK 11:44!11 +LUK 11:44!12 +LUK 11:44!13 +LUK 11:44!14 +LUK 11:44!15 +LUK 11:44!16 +LUK 11:44!17 +LUK 11:45!2 +LUK 11:45!1 +LUK 11:45!3 +LUK 11:45!4 +LUK 11:45!5 +LUK 11:45!6 +LUK 11:45!7 +LUK 11:45!8 +LUK 11:45!9 +LUK 11:45!10 +LUK 11:45!11 +LUK 11:45!12 +LUK 11:45!13 +LUK 11:46!2 +LUK 11:46!1 +LUK 11:46!3 +LUK 11:46!4 +LUK 11:46!5 +LUK 11:46!6 +LUK 11:46!7 +LUK 11:46!8 +LUK 11:46!9 +LUK 11:46!10 +LUK 11:46!11 +LUK 11:46!12 +LUK 11:46!13 +LUK 11:46!14 +LUK 11:46!15 +LUK 11:46!16 +LUK 11:46!17 +LUK 11:46!18 +LUK 11:46!19 +LUK 11:46!20 +LUK 11:46!21 +LUK 11:46!22 +LUK 11:46!23 +LUK 11:46!24 +LUK 11:47!1 +LUK 11:47!2 +LUK 11:47!3 +LUK 11:47!4 +LUK 11:47!5 +LUK 11:47!6 +LUK 11:47!7 +LUK 11:47!8 +LUK 11:47!10 +LUK 11:47!9 +LUK 11:47!11 +LUK 11:47!12 +LUK 11:47!13 +LUK 11:47!14 +LUK 11:48!1 +LUK 11:48!2 +LUK 11:48!3 +LUK 11:48!4 +LUK 11:48!5 +LUK 11:48!6 +LUK 11:48!7 +LUK 11:48!8 +LUK 11:48!9 +LUK 11:48!10 +LUK 11:48!11 +LUK 11:48!13 +LUK 11:48!12 +LUK 11:48!14 +LUK 11:48!15 +LUK 11:48!17 +LUK 11:48!16 +LUK 11:48!18 +LUK 11:49!1 +LUK 11:49!2 +LUK 11:49!3 +LUK 11:49!4 +LUK 11:49!5 +LUK 11:49!6 +LUK 11:49!7 +LUK 11:49!8 +LUK 11:49!9 +LUK 11:49!10 +LUK 11:49!11 +LUK 11:49!12 +LUK 11:49!13 +LUK 11:49!14 +LUK 11:49!15 +LUK 11:49!16 +LUK 11:49!17 +LUK 11:49!18 +LUK 11:49!19 +LUK 11:49!20 +LUK 11:50!1 +LUK 11:50!2 +LUK 11:50!3 +LUK 11:50!4 +LUK 11:50!5 +LUK 11:50!6 +LUK 11:50!7 +LUK 11:50!8 +LUK 11:50!9 +LUK 11:50!10 +LUK 11:50!11 +LUK 11:50!12 +LUK 11:50!13 +LUK 11:50!14 +LUK 11:50!15 +LUK 11:50!16 +LUK 11:51!1 +LUK 11:51!2 +LUK 11:51!3 +LUK 11:51!4 +LUK 11:51!5 +LUK 11:51!6 +LUK 11:51!7 +LUK 11:51!8 +LUK 11:51!9 +LUK 11:51!10 +LUK 11:51!11 +LUK 11:51!12 +LUK 11:51!13 +LUK 11:51!14 +LUK 11:51!15 +LUK 11:51!16 +LUK 11:51!17 +LUK 11:51!18 +LUK 11:51!19 +LUK 11:51!20 +LUK 11:51!21 +LUK 11:51!22 +LUK 11:52!1 +LUK 11:52!2 +LUK 11:52!3 +LUK 11:52!4 +LUK 11:52!5 +LUK 11:52!6 +LUK 11:52!7 +LUK 11:52!8 +LUK 11:52!9 +LUK 11:52!10 +LUK 11:52!11 +LUK 11:52!12 +LUK 11:52!13 +LUK 11:52!14 +LUK 11:52!15 +LUK 11:52!16 +LUK 11:52!17 +LUK 11:53!1 +LUK 11:53!2 +LUK 11:53!3 +LUK 11:53!4 +LUK 11:53!5 +LUK 11:53!6 +LUK 11:53!7 +LUK 11:53!8 +LUK 11:53!9 +LUK 11:53!10 +LUK 11:53!11 +LUK 11:53!12 +LUK 11:53!13 +LUK 11:53!14 +LUK 11:53!15 +LUK 11:53!16 +LUK 11:54!1 +LUK 11:54!2 +LUK 11:54!3 +LUK 11:54!4 +LUK 11:54!5 +LUK 11:54!6 +LUK 11:54!7 +LUK 11:54!8 +LUK 12:1!1 +LUK 12:1!2 +LUK 12:1!3 +LUK 12:1!4 +LUK 12:1!5 +LUK 12:1!6 +LUK 12:1!7 +LUK 12:1!8 +LUK 12:1!9 +LUK 12:1!10 +LUK 12:1!11 +LUK 12:1!12 +LUK 12:1!13 +LUK 12:1!14 +LUK 12:1!15 +LUK 12:1!16 +LUK 12:1!17 +LUK 12:1!18 +LUK 12:1!19 +LUK 12:1!20 +LUK 12:1!21 +LUK 12:1!22 +LUK 12:1!23 +LUK 12:1!24 +LUK 12:1!25 +LUK 12:1!26 +LUK 12:1!27 +LUK 12:2!2 +LUK 12:2!1 +LUK 12:2!4 +LUK 12:2!3 +LUK 12:2!5 +LUK 12:2!6 +LUK 12:2!7 +LUK 12:2!8 +LUK 12:2!9 +LUK 12:2!10 +LUK 12:2!11 +LUK 12:2!12 +LUK 12:3!1 +LUK 12:3!2 +LUK 12:3!3 +LUK 12:3!4 +LUK 12:3!5 +LUK 12:3!6 +LUK 12:3!7 +LUK 12:3!8 +LUK 12:3!9 +LUK 12:3!10 +LUK 12:3!11 +LUK 12:3!12 +LUK 12:3!13 +LUK 12:3!14 +LUK 12:3!15 +LUK 12:3!16 +LUK 12:3!17 +LUK 12:3!18 +LUK 12:3!19 +LUK 12:3!20 +LUK 12:3!21 +LUK 12:3!22 +LUK 12:3!23 +LUK 12:3!24 +LUK 12:4!2 +LUK 12:4!1 +LUK 12:4!3 +LUK 12:4!4 +LUK 12:4!5 +LUK 12:4!6 +LUK 12:4!7 +LUK 12:4!8 +LUK 12:4!9 +LUK 12:4!10 +LUK 12:4!11 +LUK 12:4!12 +LUK 12:4!13 +LUK 12:4!14 +LUK 12:4!15 +LUK 12:4!16 +LUK 12:4!17 +LUK 12:4!18 +LUK 12:4!19 +LUK 12:4!20 +LUK 12:4!21 +LUK 12:5!2 +LUK 12:5!1 +LUK 12:5!3 +LUK 12:5!4 +LUK 12:5!5 +LUK 12:5!6 +LUK 12:5!7 +LUK 12:5!8 +LUK 12:5!9 +LUK 12:5!10 +LUK 12:5!11 +LUK 12:5!12 +LUK 12:5!13 +LUK 12:5!14 +LUK 12:5!15 +LUK 12:5!16 +LUK 12:5!17 +LUK 12:5!18 +LUK 12:5!19 +LUK 12:5!20 +LUK 12:5!21 +LUK 12:6!1 +LUK 12:6!2 +LUK 12:6!3 +LUK 12:6!4 +LUK 12:6!5 +LUK 12:6!6 +LUK 12:6!7 +LUK 12:6!8 +LUK 12:6!9 +LUK 12:6!10 +LUK 12:6!11 +LUK 12:6!12 +LUK 12:6!13 +LUK 12:6!14 +LUK 12:6!15 +LUK 12:6!16 +LUK 12:7!1 +LUK 12:7!2 +LUK 12:7!3 +LUK 12:7!4 +LUK 12:7!5 +LUK 12:7!6 +LUK 12:7!7 +LUK 12:7!8 +LUK 12:7!9 +LUK 12:7!10 +LUK 12:7!11 +LUK 12:7!12 +LUK 12:7!13 +LUK 12:7!14 +LUK 12:8!2 +LUK 12:8!1 +LUK 12:8!3 +LUK 12:8!4 +LUK 12:8!6 +LUK 12:8!5 +LUK 12:8!7 +LUK 12:8!8 +LUK 12:8!9 +LUK 12:8!10 +LUK 12:8!11 +LUK 12:8!12 +LUK 12:8!13 +LUK 12:8!14 +LUK 12:8!15 +LUK 12:8!16 +LUK 12:8!17 +LUK 12:8!18 +LUK 12:8!19 +LUK 12:8!20 +LUK 12:8!21 +LUK 12:8!22 +LUK 12:8!23 +LUK 12:8!24 +LUK 12:8!25 +LUK 12:9!2 +LUK 12:9!1 +LUK 12:9!3 +LUK 12:9!4 +LUK 12:9!5 +LUK 12:9!6 +LUK 12:9!7 +LUK 12:9!8 +LUK 12:9!9 +LUK 12:9!10 +LUK 12:9!11 +LUK 12:9!12 +LUK 12:9!13 +LUK 12:10!1 +LUK 12:10!2 +LUK 12:10!3 +LUK 12:10!4 +LUK 12:10!5 +LUK 12:10!6 +LUK 12:10!7 +LUK 12:10!8 +LUK 12:10!9 +LUK 12:10!10 +LUK 12:10!11 +LUK 12:10!12 +LUK 12:10!14 +LUK 12:10!13 +LUK 12:10!15 +LUK 12:10!16 +LUK 12:10!17 +LUK 12:10!18 +LUK 12:10!19 +LUK 12:10!20 +LUK 12:10!21 +LUK 12:11!2 +LUK 12:11!1 +LUK 12:11!3 +LUK 12:11!4 +LUK 12:11!5 +LUK 12:11!6 +LUK 12:11!7 +LUK 12:11!8 +LUK 12:11!9 +LUK 12:11!10 +LUK 12:11!11 +LUK 12:11!12 +LUK 12:11!13 +LUK 12:11!14 +LUK 12:11!15 +LUK 12:11!16 +LUK 12:11!17 +LUK 12:11!18 +LUK 12:11!19 +LUK 12:11!20 +LUK 12:11!21 +LUK 12:11!22 +LUK 12:12!2 +LUK 12:12!1 +LUK 12:12!3 +LUK 12:12!4 +LUK 12:12!5 +LUK 12:12!6 +LUK 12:12!7 +LUK 12:12!8 +LUK 12:12!9 +LUK 12:12!10 +LUK 12:12!11 +LUK 12:12!13 +LUK 12:12!12 +LUK 12:13!2 +LUK 12:13!1 +LUK 12:13!3 +LUK 12:13!4 +LUK 12:13!5 +LUK 12:13!6 +LUK 12:13!7 +LUK 12:13!8 +LUK 12:13!9 +LUK 12:13!10 +LUK 12:13!11 +LUK 12:13!12 +LUK 12:13!13 +LUK 12:13!14 +LUK 12:13!15 +LUK 12:13!16 +LUK 12:13!17 +LUK 12:14!2 +LUK 12:14!1 +LUK 12:14!3 +LUK 12:14!4 +LUK 12:14!5 +LUK 12:14!6 +LUK 12:14!7 +LUK 12:14!8 +LUK 12:14!9 +LUK 12:14!10 +LUK 12:14!11 +LUK 12:14!12 +LUK 12:14!13 +LUK 12:15!2 +LUK 12:15!1 +LUK 12:15!3 +LUK 12:15!4 +LUK 12:15!5 +LUK 12:15!6 +LUK 12:15!7 +LUK 12:15!8 +LUK 12:15!9 +LUK 12:15!10 +LUK 12:15!11 +LUK 12:15!12 +LUK 12:15!13 +LUK 12:15!14 +LUK 12:15!15 +LUK 12:15!16 +LUK 12:15!17 +LUK 12:15!18 +LUK 12:15!19 +LUK 12:15!20 +LUK 12:15!21 +LUK 12:15!22 +LUK 12:15!23 +LUK 12:15!24 +LUK 12:16!2 +LUK 12:16!1 +LUK 12:16!3 +LUK 12:16!4 +LUK 12:16!5 +LUK 12:16!6 +LUK 12:16!7 +LUK 12:16!8 +LUK 12:16!9 +LUK 12:16!11 +LUK 12:16!12 +LUK 12:16!10 +LUK 12:17!1 +LUK 12:17!2 +LUK 12:17!3 +LUK 12:17!4 +LUK 12:17!5 +LUK 12:17!6 +LUK 12:17!7 +LUK 12:17!8 +LUK 12:17!9 +LUK 12:17!10 +LUK 12:17!11 +LUK 12:17!12 +LUK 12:17!13 +LUK 12:17!14 +LUK 12:17!15 +LUK 12:18!1 +LUK 12:18!2 +LUK 12:18!3 +LUK 12:18!4 +LUK 12:18!5 +LUK 12:18!6 +LUK 12:18!7 +LUK 12:18!8 +LUK 12:18!9 +LUK 12:18!10 +LUK 12:18!11 +LUK 12:18!12 +LUK 12:18!13 +LUK 12:18!14 +LUK 12:18!15 +LUK 12:18!16 +LUK 12:18!17 +LUK 12:18!18 +LUK 12:18!19 +LUK 12:18!20 +LUK 12:18!21 +LUK 12:19!1 +LUK 12:19!2 +LUK 12:19!3 +LUK 12:19!4 +LUK 12:19!5 +LUK 12:19!6 +LUK 12:19!7 +LUK 12:19!8 +LUK 12:19!9 +LUK 12:19!10 +LUK 12:19!11 +LUK 12:19!12 +LUK 12:19!13 +LUK 12:19!14 +LUK 12:19!15 +LUK 12:19!16 +LUK 12:19!17 +LUK 12:20!2 +LUK 12:20!1 +LUK 12:20!3 +LUK 12:20!4 +LUK 12:20!5 +LUK 12:20!6 +LUK 12:20!7 +LUK 12:20!8 +LUK 12:20!9 +LUK 12:20!10 +LUK 12:20!11 +LUK 12:20!12 +LUK 12:20!13 +LUK 12:20!14 +LUK 12:20!15 +LUK 12:20!17 +LUK 12:20!16 +LUK 12:20!18 +LUK 12:20!19 +LUK 12:20!20 +LUK 12:21!1 +LUK 12:21!2 +LUK 12:21!3 +LUK 12:21!4 +LUK 12:21!5 +LUK 12:21!6 +LUK 12:21!7 +LUK 12:21!8 +LUK 12:21!9 +LUK 12:22!2 +LUK 12:22!1 +LUK 12:22!3 +LUK 12:22!4 +LUK 12:22!5 +LUK 12:22!6 +LUK 12:22!7 +LUK 12:22!8 +LUK 12:22!9 +LUK 12:22!10 +LUK 12:22!11 +LUK 12:22!12 +LUK 12:22!13 +LUK 12:22!14 +LUK 12:22!15 +LUK 12:22!16 +LUK 12:22!17 +LUK 12:22!18 +LUK 12:22!19 +LUK 12:22!20 +LUK 12:22!21 +LUK 12:23!2 +LUK 12:23!1 +LUK 12:23!3 +LUK 12:23!4 +LUK 12:23!5 +LUK 12:23!6 +LUK 12:23!7 +LUK 12:23!8 +LUK 12:23!9 +LUK 12:23!10 +LUK 12:23!11 +LUK 12:23!12 +LUK 12:24!1 +LUK 12:24!2 +LUK 12:24!3 +LUK 12:24!4 +LUK 12:24!5 +LUK 12:24!6 +LUK 12:24!7 +LUK 12:24!8 +LUK 12:24!9 +LUK 12:24!10 +LUK 12:24!11 +LUK 12:24!12 +LUK 12:24!13 +LUK 12:24!14 +LUK 12:24!15 +LUK 12:24!16 +LUK 12:24!17 +LUK 12:24!18 +LUK 12:24!19 +LUK 12:24!20 +LUK 12:24!21 +LUK 12:24!22 +LUK 12:24!23 +LUK 12:24!24 +LUK 12:24!25 +LUK 12:25!2 +LUK 12:25!1 +LUK 12:25!3 +LUK 12:25!4 +LUK 12:25!5 +LUK 12:25!6 +LUK 12:25!7 +LUK 12:25!8 +LUK 12:25!9 +LUK 12:25!10 +LUK 12:25!11 +LUK 12:25!12 +LUK 12:26!2 +LUK 12:26!1 +LUK 12:26!3 +LUK 12:26!4 +LUK 12:26!5 +LUK 12:26!6 +LUK 12:26!7 +LUK 12:26!8 +LUK 12:26!9 +LUK 12:26!10 +LUK 12:27!1 +LUK 12:27!2 +LUK 12:27!3 +LUK 12:27!4 +LUK 12:27!5 +LUK 12:27!6 +LUK 12:27!7 +LUK 12:27!8 +LUK 12:27!10 +LUK 12:27!9 +LUK 12:27!11 +LUK 12:27!12 +LUK 12:27!13 +LUK 12:27!14 +LUK 12:27!15 +LUK 12:27!16 +LUK 12:27!17 +LUK 12:27!18 +LUK 12:27!19 +LUK 12:27!20 +LUK 12:27!21 +LUK 12:27!22 +LUK 12:28!2 +LUK 12:28!1 +LUK 12:28!3 +LUK 12:28!4 +LUK 12:28!5 +LUK 12:28!6 +LUK 12:28!7 +LUK 12:28!8 +LUK 12:28!9 +LUK 12:28!10 +LUK 12:28!11 +LUK 12:28!12 +LUK 12:28!13 +LUK 12:28!14 +LUK 12:28!15 +LUK 12:28!16 +LUK 12:28!17 +LUK 12:28!18 +LUK 12:28!19 +LUK 12:28!20 +LUK 12:28!21 +LUK 12:29!1 +LUK 12:29!2 +LUK 12:29!3 +LUK 12:29!4 +LUK 12:29!5 +LUK 12:29!6 +LUK 12:29!7 +LUK 12:29!8 +LUK 12:29!9 +LUK 12:29!10 +LUK 12:29!11 +LUK 12:29!12 +LUK 12:30!2 +LUK 12:30!1 +LUK 12:30!3 +LUK 12:30!4 +LUK 12:30!5 +LUK 12:30!6 +LUK 12:30!7 +LUK 12:30!8 +LUK 12:30!10 +LUK 12:30!9 +LUK 12:30!11 +LUK 12:30!12 +LUK 12:30!13 +LUK 12:30!14 +LUK 12:30!15 +LUK 12:30!16 +LUK 12:31!1 +LUK 12:31!2 +LUK 12:31!3 +LUK 12:31!4 +LUK 12:31!5 +LUK 12:31!6 +LUK 12:31!7 +LUK 12:31!8 +LUK 12:31!9 +LUK 12:32!1 +LUK 12:32!2 +LUK 12:32!3 +LUK 12:32!4 +LUK 12:32!5 +LUK 12:32!6 +LUK 12:32!7 +LUK 12:32!8 +LUK 12:32!9 +LUK 12:32!10 +LUK 12:32!11 +LUK 12:32!12 +LUK 12:32!13 +LUK 12:32!14 +LUK 12:33!1 +LUK 12:33!2 +LUK 12:33!3 +LUK 12:33!4 +LUK 12:33!5 +LUK 12:33!6 +LUK 12:33!7 +LUK 12:33!8 +LUK 12:33!9 +LUK 12:33!10 +LUK 12:33!11 +LUK 12:33!12 +LUK 12:33!13 +LUK 12:33!14 +LUK 12:33!15 +LUK 12:33!16 +LUK 12:33!17 +LUK 12:33!18 +LUK 12:33!19 +LUK 12:33!20 +LUK 12:33!21 +LUK 12:33!22 +LUK 12:33!23 +LUK 12:33!24 +LUK 12:34!2 +LUK 12:34!1 +LUK 12:34!3 +LUK 12:34!4 +LUK 12:34!5 +LUK 12:34!6 +LUK 12:34!7 +LUK 12:34!8 +LUK 12:34!9 +LUK 12:34!10 +LUK 12:34!11 +LUK 12:34!12 +LUK 12:35!1 +LUK 12:35!2 +LUK 12:35!3 +LUK 12:35!4 +LUK 12:35!5 +LUK 12:35!6 +LUK 12:35!7 +LUK 12:35!8 +LUK 12:35!9 +LUK 12:36!1 +LUK 12:36!2 +LUK 12:36!3 +LUK 12:36!4 +LUK 12:36!5 +LUK 12:36!6 +LUK 12:36!7 +LUK 12:36!8 +LUK 12:36!9 +LUK 12:36!10 +LUK 12:36!11 +LUK 12:36!12 +LUK 12:36!13 +LUK 12:36!14 +LUK 12:36!15 +LUK 12:36!16 +LUK 12:36!17 +LUK 12:36!18 +LUK 12:36!19 +LUK 12:36!20 +LUK 12:37!1 +LUK 12:37!2 +LUK 12:37!3 +LUK 12:37!4 +LUK 12:37!5 +LUK 12:37!10 +LUK 12:37!6 +LUK 12:37!7 +LUK 12:37!8 +LUK 12:37!9 +LUK 12:37!11 +LUK 12:37!12 +LUK 12:37!13 +LUK 12:37!14 +LUK 12:37!15 +LUK 12:37!16 +LUK 12:37!17 +LUK 12:37!18 +LUK 12:37!19 +LUK 12:37!20 +LUK 12:37!21 +LUK 12:37!22 +LUK 12:38!1 +LUK 12:38!2 +LUK 12:38!3 +LUK 12:38!4 +LUK 12:38!5 +LUK 12:38!6 +LUK 12:38!7 +LUK 12:38!8 +LUK 12:38!9 +LUK 12:38!10 +LUK 12:38!11 +LUK 12:38!12 +LUK 12:38!13 +LUK 12:38!14 +LUK 12:38!15 +LUK 12:38!16 +LUK 12:39!2 +LUK 12:39!1 +LUK 12:39!3 +LUK 12:39!4 +LUK 12:39!5 +LUK 12:39!6 +LUK 12:39!7 +LUK 12:39!8 +LUK 12:39!9 +LUK 12:39!10 +LUK 12:39!11 +LUK 12:39!12 +LUK 12:39!13 +LUK 12:39!15 +LUK 12:39!14 +LUK 12:39!16 +LUK 12:39!17 +LUK 12:39!18 +LUK 12:39!19 +LUK 12:39!20 +LUK 12:40!1 +LUK 12:40!2 +LUK 12:40!3 +LUK 12:40!4 +LUK 12:40!5 +LUK 12:40!6 +LUK 12:40!7 +LUK 12:40!8 +LUK 12:40!9 +LUK 12:40!10 +LUK 12:40!11 +LUK 12:40!12 +LUK 12:40!13 +LUK 12:40!14 +LUK 12:41!2 +LUK 12:41!1 +LUK 12:41!3 +LUK 12:41!4 +LUK 12:41!5 +LUK 12:41!6 +LUK 12:41!7 +LUK 12:41!8 +LUK 12:41!9 +LUK 12:41!10 +LUK 12:41!11 +LUK 12:41!12 +LUK 12:41!13 +LUK 12:41!14 +LUK 12:41!15 +LUK 12:42!1 +LUK 12:42!2 +LUK 12:42!3 +LUK 12:42!4 +LUK 12:42!6 +LUK 12:42!5 +LUK 12:42!7 +LUK 12:42!8 +LUK 12:42!9 +LUK 12:42!10 +LUK 12:42!11 +LUK 12:42!12 +LUK 12:42!13 +LUK 12:42!14 +LUK 12:42!15 +LUK 12:42!16 +LUK 12:42!17 +LUK 12:42!18 +LUK 12:42!19 +LUK 12:42!20 +LUK 12:42!21 +LUK 12:42!22 +LUK 12:42!23 +LUK 12:42!24 +LUK 12:42!25 +LUK 12:42!26 +LUK 12:43!1 +LUK 12:43!2 +LUK 12:43!3 +LUK 12:43!4 +LUK 12:43!5 +LUK 12:43!11 +LUK 12:43!12 +LUK 12:43!6 +LUK 12:43!7 +LUK 12:43!8 +LUK 12:43!9 +LUK 12:43!10 +LUK 12:44!1 +LUK 12:44!2 +LUK 12:44!3 +LUK 12:44!4 +LUK 12:44!5 +LUK 12:44!6 +LUK 12:44!7 +LUK 12:44!8 +LUK 12:44!9 +LUK 12:44!10 +LUK 12:44!11 +LUK 12:45!2 +LUK 12:45!1 +LUK 12:45!3 +LUK 12:45!4 +LUK 12:45!5 +LUK 12:45!6 +LUK 12:45!7 +LUK 12:45!8 +LUK 12:45!9 +LUK 12:45!10 +LUK 12:45!11 +LUK 12:45!12 +LUK 12:45!13 +LUK 12:45!14 +LUK 12:45!15 +LUK 12:45!16 +LUK 12:45!17 +LUK 12:45!18 +LUK 12:45!19 +LUK 12:45!20 +LUK 12:45!21 +LUK 12:45!22 +LUK 12:45!23 +LUK 12:45!25 +LUK 12:45!24 +LUK 12:45!26 +LUK 12:45!27 +LUK 12:45!28 +LUK 12:45!29 +LUK 12:46!1 +LUK 12:46!2 +LUK 12:46!3 +LUK 12:46!4 +LUK 12:46!5 +LUK 12:46!6 +LUK 12:46!7 +LUK 12:46!8 +LUK 12:46!9 +LUK 12:46!10 +LUK 12:46!11 +LUK 12:46!12 +LUK 12:46!13 +LUK 12:46!14 +LUK 12:46!15 +LUK 12:46!16 +LUK 12:46!17 +LUK 12:46!18 +LUK 12:46!19 +LUK 12:46!20 +LUK 12:46!21 +LUK 12:46!22 +LUK 12:46!23 +LUK 12:46!24 +LUK 12:46!25 +LUK 12:46!26 +LUK 12:46!27 +LUK 12:46!28 +LUK 12:47!2 +LUK 12:47!1 +LUK 12:47!3 +LUK 12:47!4 +LUK 12:47!5 +LUK 12:47!6 +LUK 12:47!7 +LUK 12:47!8 +LUK 12:47!9 +LUK 12:47!10 +LUK 12:47!11 +LUK 12:47!12 +LUK 12:47!13 +LUK 12:47!14 +LUK 12:47!15 +LUK 12:47!16 +LUK 12:47!17 +LUK 12:47!18 +LUK 12:47!19 +LUK 12:47!20 +LUK 12:47!21 +LUK 12:47!22 +LUK 12:48!2 +LUK 12:48!1 +LUK 12:48!3 +LUK 12:48!4 +LUK 12:48!6 +LUK 12:48!5 +LUK 12:48!7 +LUK 12:48!8 +LUK 12:48!9 +LUK 12:48!10 +LUK 12:48!12 +LUK 12:48!11 +LUK 12:48!13 +LUK 12:48!14 +LUK 12:48!15 +LUK 12:48!16 +LUK 12:48!17 +LUK 12:48!18 +LUK 12:48!19 +LUK 12:48!20 +LUK 12:48!21 +LUK 12:48!22 +LUK 12:48!23 +LUK 12:48!24 +LUK 12:48!25 +LUK 12:48!26 +LUK 12:49!2 +LUK 12:49!1 +LUK 12:49!3 +LUK 12:49!4 +LUK 12:49!5 +LUK 12:49!6 +LUK 12:49!7 +LUK 12:49!8 +LUK 12:49!9 +LUK 12:49!10 +LUK 12:49!11 +LUK 12:49!12 +LUK 12:50!2 +LUK 12:50!1 +LUK 12:50!3 +LUK 12:50!4 +LUK 12:50!5 +LUK 12:50!6 +LUK 12:50!7 +LUK 12:50!8 +LUK 12:50!9 +LUK 12:50!10 +LUK 12:51!1 +LUK 12:51!2 +LUK 12:51!4 +LUK 12:51!3 +LUK 12:51!5 +LUK 12:51!6 +LUK 12:51!7 +LUK 12:51!8 +LUK 12:51!10 +LUK 12:51!11 +LUK 12:51!9 +LUK 12:51!12 +LUK 12:51!13 +LUK 12:51!14 +LUK 12:52!2 +LUK 12:52!1 +LUK 12:52!10 +LUK 12:52!3 +LUK 12:52!4 +LUK 12:52!5 +LUK 12:52!6 +LUK 12:52!7 +LUK 12:52!8 +LUK 12:52!9 +LUK 12:52!11 +LUK 12:52!12 +LUK 12:52!13 +LUK 12:52!14 +LUK 12:52!15 +LUK 12:52!16 +LUK 12:52!17 +LUK 12:53!1 +LUK 12:53!2 +LUK 12:53!3 +LUK 12:53!4 +LUK 12:53!5 +LUK 12:53!6 +LUK 12:53!7 +LUK 12:53!8 +LUK 12:53!9 +LUK 12:53!10 +LUK 12:53!11 +LUK 12:53!12 +LUK 12:53!13 +LUK 12:53!14 +LUK 12:53!15 +LUK 12:53!16 +LUK 12:53!17 +LUK 12:53!18 +LUK 12:53!19 +LUK 12:53!20 +LUK 12:53!21 +LUK 12:53!22 +LUK 12:53!23 +LUK 12:53!24 +LUK 12:53!25 +LUK 12:53!26 +LUK 12:54!2 +LUK 12:54!1 +LUK 12:54!3 +LUK 12:54!4 +LUK 12:54!5 +LUK 12:54!6 +LUK 12:54!7 +LUK 12:54!8 +LUK 12:54!9 +LUK 12:54!10 +LUK 12:54!11 +LUK 12:54!12 +LUK 12:54!13 +LUK 12:54!14 +LUK 12:54!15 +LUK 12:54!16 +LUK 12:54!17 +LUK 12:54!18 +LUK 12:54!19 +LUK 12:55!1 +LUK 12:55!2 +LUK 12:55!3 +LUK 12:55!4 +LUK 12:55!5 +LUK 12:55!6 +LUK 12:55!7 +LUK 12:55!8 +LUK 12:55!9 +LUK 12:55!10 +LUK 12:56!1 +LUK 12:56!2 +LUK 12:56!3 +LUK 12:56!4 +LUK 12:56!5 +LUK 12:56!6 +LUK 12:56!7 +LUK 12:56!8 +LUK 12:56!10 +LUK 12:56!9 +LUK 12:56!13 +LUK 12:56!11 +LUK 12:56!12 +LUK 12:56!14 +LUK 12:56!15 +LUK 12:56!16 +LUK 12:56!17 +LUK 12:57!2 +LUK 12:57!1 +LUK 12:57!3 +LUK 12:57!4 +LUK 12:57!5 +LUK 12:57!6 +LUK 12:57!7 +LUK 12:57!8 +LUK 12:57!9 +LUK 12:58!2 +LUK 12:58!1 +LUK 12:58!3 +LUK 12:58!4 +LUK 12:58!5 +LUK 12:58!6 +LUK 12:58!7 +LUK 12:58!8 +LUK 12:58!9 +LUK 12:58!10 +LUK 12:58!11 +LUK 12:58!12 +LUK 12:58!13 +LUK 12:58!14 +LUK 12:58!15 +LUK 12:58!16 +LUK 12:58!17 +LUK 12:58!18 +LUK 12:58!19 +LUK 12:58!20 +LUK 12:58!21 +LUK 12:58!22 +LUK 12:58!23 +LUK 12:58!24 +LUK 12:58!25 +LUK 12:58!26 +LUK 12:58!27 +LUK 12:58!28 +LUK 12:58!29 +LUK 12:58!30 +LUK 12:58!31 +LUK 12:58!32 +LUK 12:58!33 +LUK 12:58!34 +LUK 12:58!35 +LUK 12:58!36 +LUK 12:58!37 +LUK 12:58!38 +LUK 12:59!1 +LUK 12:59!2 +LUK 12:59!3 +LUK 12:59!4 +LUK 12:59!5 +LUK 12:59!6 +LUK 12:59!7 +LUK 12:59!8 +LUK 12:59!9 +LUK 12:59!10 +LUK 12:59!11 +LUK 12:59!12 +LUK 13:1!2 +LUK 13:1!1 +LUK 13:1!3 +LUK 13:1!4 +LUK 13:1!5 +LUK 13:1!6 +LUK 13:1!7 +LUK 13:1!8 +LUK 13:1!9 +LUK 13:1!10 +LUK 13:1!11 +LUK 13:1!12 +LUK 13:1!13 +LUK 13:1!14 +LUK 13:1!15 +LUK 13:1!16 +LUK 13:1!17 +LUK 13:1!18 +LUK 13:1!19 +LUK 13:1!20 +LUK 13:1!21 +LUK 13:2!1 +LUK 13:2!2 +LUK 13:2!3 +LUK 13:2!4 +LUK 13:2!5 +LUK 13:2!6 +LUK 13:2!7 +LUK 13:2!8 +LUK 13:2!9 +LUK 13:2!10 +LUK 13:2!11 +LUK 13:2!12 +LUK 13:2!13 +LUK 13:2!14 +LUK 13:2!15 +LUK 13:2!16 +LUK 13:2!17 +LUK 13:2!18 +LUK 13:3!1 +LUK 13:3!2 +LUK 13:3!3 +LUK 13:3!4 +LUK 13:3!5 +LUK 13:3!6 +LUK 13:3!7 +LUK 13:3!8 +LUK 13:3!9 +LUK 13:3!10 +LUK 13:4!1 +LUK 13:4!2 +LUK 13:4!3 +LUK 13:4!4 +LUK 13:4!5 +LUK 13:4!6 +LUK 13:4!7 +LUK 13:4!8 +LUK 13:4!9 +LUK 13:4!10 +LUK 13:4!11 +LUK 13:4!12 +LUK 13:4!13 +LUK 13:4!14 +LUK 13:4!15 +LUK 13:4!16 +LUK 13:4!17 +LUK 13:4!18 +LUK 13:4!19 +LUK 13:4!20 +LUK 13:4!21 +LUK 13:4!22 +LUK 13:4!23 +LUK 13:4!24 +LUK 13:4!25 +LUK 13:4!26 +LUK 13:4!27 +LUK 13:4!28 +LUK 13:5!1 +LUK 13:5!2 +LUK 13:5!3 +LUK 13:5!4 +LUK 13:5!5 +LUK 13:5!6 +LUK 13:5!7 +LUK 13:5!8 +LUK 13:5!9 +LUK 13:5!10 +LUK 13:6!2 +LUK 13:6!1 +LUK 13:6!3 +LUK 13:6!4 +LUK 13:6!5 +LUK 13:6!6 +LUK 13:6!7 +LUK 13:6!8 +LUK 13:6!9 +LUK 13:6!10 +LUK 13:6!11 +LUK 13:6!12 +LUK 13:6!13 +LUK 13:6!14 +LUK 13:6!15 +LUK 13:6!16 +LUK 13:6!17 +LUK 13:6!18 +LUK 13:6!19 +LUK 13:6!20 +LUK 13:6!21 +LUK 13:6!22 +LUK 13:7!2 +LUK 13:7!1 +LUK 13:7!3 +LUK 13:7!4 +LUK 13:7!5 +LUK 13:7!6 +LUK 13:7!7 +LUK 13:7!8 +LUK 13:7!9 +LUK 13:7!10 +LUK 13:7!11 +LUK 13:7!12 +LUK 13:7!13 +LUK 13:7!14 +LUK 13:7!15 +LUK 13:7!16 +LUK 13:7!17 +LUK 13:7!18 +LUK 13:7!19 +LUK 13:7!20 +LUK 13:7!21 +LUK 13:7!22 +LUK 13:7!23 +LUK 13:7!24 +LUK 13:7!25 +LUK 13:7!26 +LUK 13:7!27 +LUK 13:7!28 +LUK 13:8!2 +LUK 13:8!1 +LUK 13:8!3 +LUK 13:8!4 +LUK 13:8!5 +LUK 13:8!6 +LUK 13:8!7 +LUK 13:8!8 +LUK 13:8!9 +LUK 13:8!10 +LUK 13:8!11 +LUK 13:8!12 +LUK 13:8!13 +LUK 13:8!14 +LUK 13:8!15 +LUK 13:8!16 +LUK 13:8!17 +LUK 13:8!18 +LUK 13:8!19 +LUK 13:8!20 +LUK 13:9!2 +LUK 13:9!1 +LUK 13:9!3 +LUK 13:9!4 +LUK 13:9!5 +LUK 13:9!6 +LUK 13:9!7 +LUK 13:9!9 +LUK 13:9!8 +LUK 13:9!10 +LUK 13:9!11 +LUK 13:9!12 +LUK 13:10!2 +LUK 13:10!1 +LUK 13:10!3 +LUK 13:10!4 +LUK 13:10!5 +LUK 13:10!6 +LUK 13:10!7 +LUK 13:10!8 +LUK 13:10!9 +LUK 13:10!10 +LUK 13:11!1 +LUK 13:11!2 +LUK 13:11!3 +LUK 13:11!4 +LUK 13:11!6 +LUK 13:11!5 +LUK 13:11!7 +LUK 13:11!8 +LUK 13:11!9 +LUK 13:11!10 +LUK 13:11!11 +LUK 13:11!12 +LUK 13:11!13 +LUK 13:11!14 +LUK 13:11!15 +LUK 13:11!16 +LUK 13:11!17 +LUK 13:11!18 +LUK 13:11!19 +LUK 13:12!2 +LUK 13:12!1 +LUK 13:12!3 +LUK 13:12!4 +LUK 13:12!5 +LUK 13:12!6 +LUK 13:12!7 +LUK 13:12!8 +LUK 13:12!9 +LUK 13:12!10 +LUK 13:12!11 +LUK 13:12!12 +LUK 13:12!13 +LUK 13:12!14 +LUK 13:13!1 +LUK 13:13!2 +LUK 13:13!3 +LUK 13:13!4 +LUK 13:13!5 +LUK 13:13!6 +LUK 13:13!7 +LUK 13:13!8 +LUK 13:13!9 +LUK 13:13!10 +LUK 13:13!11 +LUK 13:13!12 +LUK 13:14!2 +LUK 13:14!1 +LUK 13:14!3 +LUK 13:14!4 +LUK 13:14!5 +LUK 13:14!6 +LUK 13:14!7 +LUK 13:14!8 +LUK 13:14!9 +LUK 13:14!10 +LUK 13:14!11 +LUK 13:14!12 +LUK 13:14!13 +LUK 13:14!14 +LUK 13:14!15 +LUK 13:14!16 +LUK 13:14!17 +LUK 13:14!18 +LUK 13:14!19 +LUK 13:14!20 +LUK 13:14!21 +LUK 13:14!22 +LUK 13:14!25 +LUK 13:14!23 +LUK 13:14!24 +LUK 13:14!26 +LUK 13:14!27 +LUK 13:14!28 +LUK 13:14!29 +LUK 13:14!30 +LUK 13:14!31 +LUK 13:14!32 +LUK 13:14!33 +LUK 13:15!2 +LUK 13:15!1 +LUK 13:15!3 +LUK 13:15!4 +LUK 13:15!5 +LUK 13:15!6 +LUK 13:15!7 +LUK 13:15!8 +LUK 13:15!13 +LUK 13:15!9 +LUK 13:15!10 +LUK 13:15!11 +LUK 13:15!12 +LUK 13:15!14 +LUK 13:15!15 +LUK 13:15!16 +LUK 13:15!17 +LUK 13:15!18 +LUK 13:15!19 +LUK 13:15!20 +LUK 13:15!21 +LUK 13:15!22 +LUK 13:15!23 +LUK 13:15!24 +LUK 13:15!25 +LUK 13:15!26 +LUK 13:16!2 +LUK 13:16!10 +LUK 13:16!1 +LUK 13:16!3 +LUK 13:16!4 +LUK 13:16!5 +LUK 13:16!6 +LUK 13:16!7 +LUK 13:16!8 +LUK 13:16!9 +LUK 13:16!11 +LUK 13:16!12 +LUK 13:16!13 +LUK 13:16!14 +LUK 13:16!17 +LUK 13:16!18 +LUK 13:16!19 +LUK 13:16!20 +LUK 13:16!21 +LUK 13:16!22 +LUK 13:16!23 +LUK 13:16!24 +LUK 13:16!25 +LUK 13:16!15 +LUK 13:16!16 +LUK 13:17!1 +LUK 13:17!2 +LUK 13:17!3 +LUK 13:17!4 +LUK 13:17!5 +LUK 13:17!6 +LUK 13:17!7 +LUK 13:17!8 +LUK 13:17!9 +LUK 13:17!10 +LUK 13:17!11 +LUK 13:17!12 +LUK 13:17!13 +LUK 13:17!14 +LUK 13:17!15 +LUK 13:17!16 +LUK 13:17!17 +LUK 13:17!18 +LUK 13:17!19 +LUK 13:17!20 +LUK 13:17!21 +LUK 13:17!22 +LUK 13:18!2 +LUK 13:18!1 +LUK 13:18!3 +LUK 13:18!4 +LUK 13:18!5 +LUK 13:18!6 +LUK 13:18!7 +LUK 13:18!8 +LUK 13:18!9 +LUK 13:18!10 +LUK 13:18!11 +LUK 13:18!12 +LUK 13:18!13 +LUK 13:19!1 +LUK 13:19!2 +LUK 13:19!3 +LUK 13:19!4 +LUK 13:19!5 +LUK 13:19!6 +LUK 13:19!7 +LUK 13:19!8 +LUK 13:19!9 +LUK 13:19!10 +LUK 13:19!11 +LUK 13:19!12 +LUK 13:19!13 +LUK 13:19!14 +LUK 13:19!15 +LUK 13:19!16 +LUK 13:19!17 +LUK 13:19!18 +LUK 13:19!19 +LUK 13:19!20 +LUK 13:19!21 +LUK 13:19!22 +LUK 13:19!23 +LUK 13:19!24 +LUK 13:19!25 +LUK 13:19!26 +LUK 13:19!27 +LUK 13:20!1 +LUK 13:20!2 +LUK 13:20!3 +LUK 13:20!4 +LUK 13:20!5 +LUK 13:20!6 +LUK 13:20!7 +LUK 13:20!8 +LUK 13:20!9 +LUK 13:21!1 +LUK 13:21!2 +LUK 13:21!3 +LUK 13:21!4 +LUK 13:21!5 +LUK 13:21!6 +LUK 13:21!7 +LUK 13:21!8 +LUK 13:21!9 +LUK 13:21!10 +LUK 13:21!11 +LUK 13:21!12 +LUK 13:21!13 +LUK 13:21!14 +LUK 13:21!15 +LUK 13:22!1 +LUK 13:22!2 +LUK 13:22!3 +LUK 13:22!4 +LUK 13:22!5 +LUK 13:22!6 +LUK 13:22!7 +LUK 13:22!8 +LUK 13:22!9 +LUK 13:22!10 +LUK 13:22!11 +LUK 13:22!12 +LUK 13:23!2 +LUK 13:23!1 +LUK 13:23!3 +LUK 13:23!4 +LUK 13:23!5 +LUK 13:23!6 +LUK 13:23!7 +LUK 13:23!8 +LUK 13:23!9 +LUK 13:23!11 +LUK 13:23!10 +LUK 13:23!12 +LUK 13:23!13 +LUK 13:23!14 +LUK 13:24!1 +LUK 13:24!2 +LUK 13:24!3 +LUK 13:24!4 +LUK 13:24!5 +LUK 13:24!6 +LUK 13:24!7 +LUK 13:24!9 +LUK 13:24!10 +LUK 13:24!8 +LUK 13:24!11 +LUK 13:24!12 +LUK 13:24!13 +LUK 13:24!14 +LUK 13:24!15 +LUK 13:25!1 +LUK 13:25!3 +LUK 13:25!2 +LUK 13:25!4 +LUK 13:25!5 +LUK 13:25!6 +LUK 13:25!7 +LUK 13:25!8 +LUK 13:25!9 +LUK 13:25!10 +LUK 13:25!11 +LUK 13:25!12 +LUK 13:25!13 +LUK 13:25!14 +LUK 13:25!15 +LUK 13:25!16 +LUK 13:25!17 +LUK 13:25!18 +LUK 13:25!19 +LUK 13:25!20 +LUK 13:25!21 +LUK 13:25!22 +LUK 13:25!23 +LUK 13:25!24 +LUK 13:25!25 +LUK 13:25!26 +LUK 13:25!27 +LUK 13:25!28 +LUK 13:25!29 +LUK 13:25!30 +LUK 13:25!31 +LUK 13:26!1 +LUK 13:26!2 +LUK 13:26!3 +LUK 13:26!4 +LUK 13:26!5 +LUK 13:26!6 +LUK 13:26!7 +LUK 13:26!8 +LUK 13:26!9 +LUK 13:26!10 +LUK 13:26!11 +LUK 13:26!12 +LUK 13:26!13 +LUK 13:26!14 +LUK 13:27!1 +LUK 13:27!2 +LUK 13:27!3 +LUK 13:27!4 +LUK 13:27!5 +LUK 13:27!6 +LUK 13:27!7 +LUK 13:27!8 +LUK 13:27!9 +LUK 13:27!10 +LUK 13:27!11 +LUK 13:27!12 +LUK 13:27!13 +LUK 13:27!14 +LUK 13:28!1 +LUK 13:28!2 +LUK 13:28!3 +LUK 13:28!4 +LUK 13:28!5 +LUK 13:28!6 +LUK 13:28!7 +LUK 13:28!8 +LUK 13:28!9 +LUK 13:28!10 +LUK 13:28!11 +LUK 13:28!12 +LUK 13:28!13 +LUK 13:28!14 +LUK 13:28!15 +LUK 13:28!16 +LUK 13:28!17 +LUK 13:28!18 +LUK 13:28!19 +LUK 13:28!20 +LUK 13:28!21 +LUK 13:28!22 +LUK 13:28!23 +LUK 13:28!24 +LUK 13:28!25 +LUK 13:28!27 +LUK 13:28!26 +LUK 13:28!28 +LUK 13:28!29 +LUK 13:29!1 +LUK 13:29!2 +LUK 13:29!3 +LUK 13:29!4 +LUK 13:29!5 +LUK 13:29!6 +LUK 13:29!7 +LUK 13:29!8 +LUK 13:29!9 +LUK 13:29!10 +LUK 13:29!11 +LUK 13:29!12 +LUK 13:29!13 +LUK 13:29!14 +LUK 13:29!15 +LUK 13:29!16 +LUK 13:29!17 +LUK 13:29!18 +LUK 13:30!1 +LUK 13:30!2 +LUK 13:30!3 +LUK 13:30!4 +LUK 13:30!5 +LUK 13:30!6 +LUK 13:30!7 +LUK 13:30!8 +LUK 13:30!9 +LUK 13:30!10 +LUK 13:30!11 +LUK 13:30!12 +LUK 13:30!13 +LUK 13:31!1 +LUK 13:31!2 +LUK 13:31!3 +LUK 13:31!4 +LUK 13:31!5 +LUK 13:31!6 +LUK 13:31!7 +LUK 13:31!8 +LUK 13:31!9 +LUK 13:31!10 +LUK 13:31!11 +LUK 13:31!12 +LUK 13:31!13 +LUK 13:31!14 +LUK 13:31!15 +LUK 13:31!16 +LUK 13:31!17 +LUK 13:31!18 +LUK 13:32!1 +LUK 13:32!2 +LUK 13:32!3 +LUK 13:32!4 +LUK 13:32!5 +LUK 13:32!6 +LUK 13:32!7 +LUK 13:32!8 +LUK 13:32!9 +LUK 13:32!10 +LUK 13:32!11 +LUK 13:32!12 +LUK 13:32!13 +LUK 13:32!14 +LUK 13:32!15 +LUK 13:32!16 +LUK 13:32!17 +LUK 13:32!18 +LUK 13:32!19 +LUK 13:32!20 +LUK 13:32!21 +LUK 13:33!1 +LUK 13:33!2 +LUK 13:33!3 +LUK 13:33!4 +LUK 13:33!5 +LUK 13:33!6 +LUK 13:33!7 +LUK 13:33!8 +LUK 13:33!9 +LUK 13:33!10 +LUK 13:33!11 +LUK 13:33!12 +LUK 13:33!13 +LUK 13:33!14 +LUK 13:33!15 +LUK 13:33!16 +LUK 13:33!17 +LUK 13:34!1 +LUK 13:34!2 +LUK 13:34!3 +LUK 13:34!4 +LUK 13:34!5 +LUK 13:34!6 +LUK 13:34!7 +LUK 13:34!8 +LUK 13:34!9 +LUK 13:34!10 +LUK 13:34!11 +LUK 13:34!12 +LUK 13:34!13 +LUK 13:34!14 +LUK 13:34!15 +LUK 13:34!16 +LUK 13:34!17 +LUK 13:34!18 +LUK 13:34!19 +LUK 13:34!20 +LUK 13:34!21 +LUK 13:34!22 +LUK 13:34!23 +LUK 13:34!24 +LUK 13:34!25 +LUK 13:34!26 +LUK 13:34!27 +LUK 13:34!28 +LUK 13:34!29 +LUK 13:34!30 +LUK 13:35!1 +LUK 13:35!2 +LUK 13:35!3 +LUK 13:35!4 +LUK 13:35!5 +LUK 13:35!6 +LUK 13:35!8 +LUK 13:35!7 +LUK 13:35!9 +LUK 13:35!10 +LUK 13:35!11 +LUK 13:35!12 +LUK 13:35!13 +LUK 13:35!14 +LUK 13:35!15 +LUK 13:35!16 +LUK 13:35!17 +LUK 13:35!18 +LUK 13:35!19 +LUK 13:35!20 +LUK 13:35!21 +LUK 13:35!22 +LUK 13:35!23 +LUK 14:1!1 +LUK 14:1!2 +LUK 14:1!3 +LUK 14:1!4 +LUK 14:1!5 +LUK 14:1!6 +LUK 14:1!7 +LUK 14:1!8 +LUK 14:1!9 +LUK 14:1!10 +LUK 14:1!11 +LUK 14:1!12 +LUK 14:1!13 +LUK 14:1!14 +LUK 14:1!15 +LUK 14:1!16 +LUK 14:1!17 +LUK 14:1!18 +LUK 14:1!19 +LUK 14:1!20 +LUK 14:1!21 +LUK 14:2!1 +LUK 14:2!2 +LUK 14:2!3 +LUK 14:2!4 +LUK 14:2!6 +LUK 14:2!5 +LUK 14:2!7 +LUK 14:2!8 +LUK 14:3!1 +LUK 14:3!2 +LUK 14:3!3 +LUK 14:3!4 +LUK 14:3!5 +LUK 14:3!6 +LUK 14:3!7 +LUK 14:3!8 +LUK 14:3!9 +LUK 14:3!10 +LUK 14:3!11 +LUK 14:3!12 +LUK 14:3!13 +LUK 14:3!14 +LUK 14:3!15 +LUK 14:3!16 +LUK 14:3!17 +LUK 14:4!2 +LUK 14:4!1 +LUK 14:4!3 +LUK 14:4!4 +LUK 14:4!5 +LUK 14:4!6 +LUK 14:4!7 +LUK 14:4!8 +LUK 14:4!9 +LUK 14:5!1 +LUK 14:5!2 +LUK 14:5!3 +LUK 14:5!4 +LUK 14:5!5 +LUK 14:5!6 +LUK 14:5!7 +LUK 14:5!8 +LUK 14:5!9 +LUK 14:5!10 +LUK 14:5!11 +LUK 14:5!12 +LUK 14:5!13 +LUK 14:5!14 +LUK 14:5!15 +LUK 14:5!16 +LUK 14:5!17 +LUK 14:5!18 +LUK 14:5!19 +LUK 14:5!20 +LUK 14:5!21 +LUK 14:6!1 +LUK 14:6!2 +LUK 14:6!3 +LUK 14:6!4 +LUK 14:6!5 +LUK 14:6!6 +LUK 14:7!2 +LUK 14:7!1 +LUK 14:7!3 +LUK 14:7!4 +LUK 14:7!5 +LUK 14:7!6 +LUK 14:7!7 +LUK 14:7!8 +LUK 14:7!9 +LUK 14:7!10 +LUK 14:7!11 +LUK 14:7!12 +LUK 14:7!13 +LUK 14:7!14 +LUK 14:8!1 +LUK 14:8!2 +LUK 14:8!3 +LUK 14:8!4 +LUK 14:8!5 +LUK 14:8!6 +LUK 14:8!7 +LUK 14:8!8 +LUK 14:8!9 +LUK 14:8!10 +LUK 14:8!11 +LUK 14:8!12 +LUK 14:8!13 +LUK 14:8!14 +LUK 14:8!15 +LUK 14:8!16 +LUK 14:8!17 +LUK 14:8!18 +LUK 14:8!19 +LUK 14:9!1 +LUK 14:9!2 +LUK 14:9!3 +LUK 14:9!4 +LUK 14:9!5 +LUK 14:9!6 +LUK 14:9!7 +LUK 14:9!8 +LUK 14:9!9 +LUK 14:9!10 +LUK 14:9!11 +LUK 14:9!12 +LUK 14:9!13 +LUK 14:9!14 +LUK 14:9!15 +LUK 14:9!16 +LUK 14:9!17 +LUK 14:9!18 +LUK 14:9!19 +LUK 14:9!20 +LUK 14:9!21 +LUK 14:10!1 +LUK 14:10!2 +LUK 14:10!3 +LUK 14:10!4 +LUK 14:10!5 +LUK 14:10!6 +LUK 14:10!7 +LUK 14:10!8 +LUK 14:10!9 +LUK 14:10!10 +LUK 14:10!11 +LUK 14:10!12 +LUK 14:10!13 +LUK 14:10!14 +LUK 14:10!15 +LUK 14:10!16 +LUK 14:10!17 +LUK 14:10!18 +LUK 14:10!19 +LUK 14:10!20 +LUK 14:10!21 +LUK 14:10!22 +LUK 14:10!23 +LUK 14:10!24 +LUK 14:10!25 +LUK 14:10!26 +LUK 14:10!27 +LUK 14:10!28 +LUK 14:10!29 +LUK 14:11!1 +LUK 14:11!2 +LUK 14:11!3 +LUK 14:11!4 +LUK 14:11!5 +LUK 14:11!6 +LUK 14:11!7 +LUK 14:11!8 +LUK 14:11!9 +LUK 14:11!10 +LUK 14:11!11 +LUK 14:12!2 +LUK 14:12!1 +LUK 14:12!3 +LUK 14:12!4 +LUK 14:12!5 +LUK 14:12!6 +LUK 14:12!7 +LUK 14:12!8 +LUK 14:12!9 +LUK 14:12!10 +LUK 14:12!11 +LUK 14:12!12 +LUK 14:12!13 +LUK 14:12!14 +LUK 14:12!15 +LUK 14:12!16 +LUK 14:12!17 +LUK 14:12!18 +LUK 14:12!19 +LUK 14:12!20 +LUK 14:12!21 +LUK 14:12!22 +LUK 14:12!23 +LUK 14:12!24 +LUK 14:12!25 +LUK 14:12!26 +LUK 14:12!27 +LUK 14:12!28 +LUK 14:12!29 +LUK 14:12!30 +LUK 14:12!31 +LUK 14:12!32 +LUK 14:12!33 +LUK 14:12!34 +LUK 14:12!35 +LUK 14:12!36 +LUK 14:12!37 +LUK 14:13!1 +LUK 14:13!2 +LUK 14:13!3 +LUK 14:13!4 +LUK 14:13!5 +LUK 14:13!6 +LUK 14:13!7 +LUK 14:13!8 +LUK 14:13!9 +LUK 14:14!1 +LUK 14:14!2 +LUK 14:14!3 +LUK 14:14!4 +LUK 14:14!5 +LUK 14:14!6 +LUK 14:14!7 +LUK 14:14!8 +LUK 14:14!10 +LUK 14:14!9 +LUK 14:14!11 +LUK 14:14!12 +LUK 14:14!13 +LUK 14:14!14 +LUK 14:14!15 +LUK 14:14!16 +LUK 14:15!2 +LUK 14:15!3 +LUK 14:15!4 +LUK 14:15!5 +LUK 14:15!1 +LUK 14:15!6 +LUK 14:15!7 +LUK 14:15!8 +LUK 14:15!9 +LUK 14:15!10 +LUK 14:15!11 +LUK 14:15!12 +LUK 14:15!13 +LUK 14:15!14 +LUK 14:15!15 +LUK 14:15!16 +LUK 14:15!17 +LUK 14:16!2 +LUK 14:16!1 +LUK 14:16!3 +LUK 14:16!4 +LUK 14:16!5 +LUK 14:16!6 +LUK 14:16!7 +LUK 14:16!8 +LUK 14:16!9 +LUK 14:16!10 +LUK 14:16!11 +LUK 14:16!12 +LUK 14:17!1 +LUK 14:17!2 +LUK 14:17!3 +LUK 14:17!4 +LUK 14:17!5 +LUK 14:17!6 +LUK 14:17!7 +LUK 14:17!8 +LUK 14:17!9 +LUK 14:17!10 +LUK 14:17!11 +LUK 14:17!12 +LUK 14:17!13 +LUK 14:17!14 +LUK 14:17!15 +LUK 14:17!16 +LUK 14:17!17 +LUK 14:18!1 +LUK 14:18!2 +LUK 14:18!3 +LUK 14:18!4 +LUK 14:18!5 +LUK 14:18!6 +LUK 14:18!7 +LUK 14:18!8 +LUK 14:18!9 +LUK 14:18!10 +LUK 14:18!11 +LUK 14:18!12 +LUK 14:18!13 +LUK 14:18!14 +LUK 14:18!15 +LUK 14:18!16 +LUK 14:18!17 +LUK 14:18!18 +LUK 14:18!19 +LUK 14:18!20 +LUK 14:18!21 +LUK 14:18!22 +LUK 14:18!23 +LUK 14:19!1 +LUK 14:19!2 +LUK 14:19!3 +LUK 14:19!4 +LUK 14:19!5 +LUK 14:19!7 +LUK 14:19!6 +LUK 14:19!8 +LUK 14:19!9 +LUK 14:19!10 +LUK 14:19!11 +LUK 14:19!12 +LUK 14:19!13 +LUK 14:19!14 +LUK 14:19!15 +LUK 14:19!16 +LUK 14:20!1 +LUK 14:20!2 +LUK 14:20!3 +LUK 14:20!4 +LUK 14:20!5 +LUK 14:20!6 +LUK 14:20!7 +LUK 14:20!8 +LUK 14:20!9 +LUK 14:20!10 +LUK 14:20!11 +LUK 14:21!1 +LUK 14:21!2 +LUK 14:21!3 +LUK 14:21!4 +LUK 14:21!5 +LUK 14:21!6 +LUK 14:21!7 +LUK 14:21!8 +LUK 14:21!9 +LUK 14:21!10 +LUK 14:21!11 +LUK 14:21!12 +LUK 14:21!13 +LUK 14:21!14 +LUK 14:21!15 +LUK 14:21!16 +LUK 14:21!17 +LUK 14:21!18 +LUK 14:21!19 +LUK 14:21!20 +LUK 14:21!21 +LUK 14:21!22 +LUK 14:21!23 +LUK 14:21!24 +LUK 14:21!25 +LUK 14:21!26 +LUK 14:21!27 +LUK 14:21!28 +LUK 14:21!29 +LUK 14:21!30 +LUK 14:21!31 +LUK 14:21!32 +LUK 14:21!33 +LUK 14:21!34 +LUK 14:21!35 +LUK 14:21!36 +LUK 14:21!37 +LUK 14:22!1 +LUK 14:22!2 +LUK 14:22!3 +LUK 14:22!4 +LUK 14:22!5 +LUK 14:22!6 +LUK 14:22!7 +LUK 14:22!8 +LUK 14:22!9 +LUK 14:22!10 +LUK 14:22!11 +LUK 14:22!12 +LUK 14:23!1 +LUK 14:23!2 +LUK 14:23!3 +LUK 14:23!4 +LUK 14:23!5 +LUK 14:23!6 +LUK 14:23!7 +LUK 14:23!8 +LUK 14:23!9 +LUK 14:23!10 +LUK 14:23!11 +LUK 14:23!12 +LUK 14:23!13 +LUK 14:23!14 +LUK 14:23!15 +LUK 14:23!16 +LUK 14:23!17 +LUK 14:23!18 +LUK 14:23!19 +LUK 14:23!20 +LUK 14:23!21 +LUK 14:24!2 +LUK 14:24!1 +LUK 14:24!3 +LUK 14:24!4 +LUK 14:24!5 +LUK 14:24!6 +LUK 14:24!7 +LUK 14:24!8 +LUK 14:24!9 +LUK 14:24!10 +LUK 14:24!11 +LUK 14:24!12 +LUK 14:24!13 +LUK 14:24!14 +LUK 14:25!2 +LUK 14:25!1 +LUK 14:25!3 +LUK 14:25!4 +LUK 14:25!5 +LUK 14:25!6 +LUK 14:25!7 +LUK 14:25!8 +LUK 14:25!9 +LUK 14:25!10 +LUK 14:26!1 +LUK 14:26!2 +LUK 14:26!3 +LUK 14:26!4 +LUK 14:26!5 +LUK 14:26!6 +LUK 14:26!7 +LUK 14:26!8 +LUK 14:26!9 +LUK 14:26!10 +LUK 14:26!11 +LUK 14:26!12 +LUK 14:26!13 +LUK 14:26!14 +LUK 14:26!15 +LUK 14:26!16 +LUK 14:26!17 +LUK 14:26!18 +LUK 14:26!19 +LUK 14:26!20 +LUK 14:26!21 +LUK 14:26!22 +LUK 14:26!23 +LUK 14:26!24 +LUK 14:26!25 +LUK 14:26!26 +LUK 14:26!28 +LUK 14:26!27 +LUK 14:26!29 +LUK 14:26!30 +LUK 14:26!31 +LUK 14:26!32 +LUK 14:26!33 +LUK 14:26!34 +LUK 14:26!35 +LUK 14:26!36 +LUK 14:26!37 +LUK 14:27!1 +LUK 14:27!2 +LUK 14:27!3 +LUK 14:27!4 +LUK 14:27!5 +LUK 14:27!6 +LUK 14:27!7 +LUK 14:27!8 +LUK 14:27!9 +LUK 14:27!10 +LUK 14:27!11 +LUK 14:27!12 +LUK 14:27!13 +LUK 14:27!14 +LUK 14:27!15 +LUK 14:28!2 +LUK 14:28!8 +LUK 14:28!1 +LUK 14:28!3 +LUK 14:28!4 +LUK 14:28!5 +LUK 14:28!6 +LUK 14:28!7 +LUK 14:28!9 +LUK 14:28!10 +LUK 14:28!11 +LUK 14:28!12 +LUK 14:28!13 +LUK 14:28!14 +LUK 14:28!15 +LUK 14:28!16 +LUK 14:28!17 +LUK 14:29!1 +LUK 14:29!2 +LUK 14:29!3 +LUK 14:29!4 +LUK 14:29!5 +LUK 14:29!6 +LUK 14:29!7 +LUK 14:29!8 +LUK 14:29!9 +LUK 14:29!10 +LUK 14:29!11 +LUK 14:29!12 +LUK 14:29!13 +LUK 14:29!14 +LUK 14:29!15 +LUK 14:29!16 +LUK 14:30!1 +LUK 14:30!2 +LUK 14:30!3 +LUK 14:30!4 +LUK 14:30!5 +LUK 14:30!6 +LUK 14:30!7 +LUK 14:30!8 +LUK 14:30!9 +LUK 14:30!10 +LUK 14:30!11 +LUK 14:31!1 +LUK 14:31!10 +LUK 14:31!2 +LUK 14:31!3 +LUK 14:31!4 +LUK 14:31!5 +LUK 14:31!6 +LUK 14:31!7 +LUK 14:31!8 +LUK 14:31!9 +LUK 14:31!11 +LUK 14:31!12 +LUK 14:31!13 +LUK 14:31!14 +LUK 14:31!15 +LUK 14:31!16 +LUK 14:31!17 +LUK 14:31!18 +LUK 14:31!19 +LUK 14:31!20 +LUK 14:31!21 +LUK 14:31!22 +LUK 14:31!23 +LUK 14:31!24 +LUK 14:31!25 +LUK 14:31!26 +LUK 14:31!27 +LUK 14:32!2 +LUK 14:32!1 +LUK 14:32!3 +LUK 14:32!4 +LUK 14:32!5 +LUK 14:32!6 +LUK 14:32!7 +LUK 14:32!8 +LUK 14:32!9 +LUK 14:32!10 +LUK 14:32!11 +LUK 14:32!12 +LUK 14:32!13 +LUK 14:33!2 +LUK 14:33!1 +LUK 14:33!3 +LUK 14:33!4 +LUK 14:33!5 +LUK 14:33!6 +LUK 14:33!7 +LUK 14:33!8 +LUK 14:33!9 +LUK 14:33!10 +LUK 14:33!11 +LUK 14:33!12 +LUK 14:33!13 +LUK 14:33!14 +LUK 14:33!15 +LUK 14:33!16 +LUK 14:33!17 +LUK 14:34!2 +LUK 14:34!1 +LUK 14:34!3 +LUK 14:34!4 +LUK 14:34!6 +LUK 14:34!5 +LUK 14:34!7 +LUK 14:34!8 +LUK 14:34!9 +LUK 14:34!10 +LUK 14:34!11 +LUK 14:34!12 +LUK 14:34!13 +LUK 14:35!1 +LUK 14:35!2 +LUK 14:35!3 +LUK 14:35!4 +LUK 14:35!5 +LUK 14:35!6 +LUK 14:35!7 +LUK 14:35!8 +LUK 14:35!9 +LUK 14:35!10 +LUK 14:35!11 +LUK 14:35!12 +LUK 14:35!13 +LUK 14:35!14 +LUK 14:35!15 +LUK 14:35!16 +LUK 15:1!2 +LUK 15:1!1 +LUK 15:1!4 +LUK 15:1!3 +LUK 15:1!5 +LUK 15:1!6 +LUK 15:1!7 +LUK 15:1!8 +LUK 15:1!9 +LUK 15:1!10 +LUK 15:1!11 +LUK 15:1!12 +LUK 15:2!1 +LUK 15:2!2 +LUK 15:2!4 +LUK 15:2!3 +LUK 15:2!5 +LUK 15:2!6 +LUK 15:2!7 +LUK 15:2!8 +LUK 15:2!9 +LUK 15:2!10 +LUK 15:2!11 +LUK 15:2!12 +LUK 15:2!13 +LUK 15:2!14 +LUK 15:2!15 +LUK 15:2!16 +LUK 15:3!2 +LUK 15:3!1 +LUK 15:3!3 +LUK 15:3!4 +LUK 15:3!5 +LUK 15:3!6 +LUK 15:3!7 +LUK 15:3!8 +LUK 15:4!1 +LUK 15:4!2 +LUK 15:4!3 +LUK 15:4!4 +LUK 15:4!5 +LUK 15:4!6 +LUK 15:4!7 +LUK 15:4!8 +LUK 15:4!9 +LUK 15:4!10 +LUK 15:4!11 +LUK 15:4!12 +LUK 15:4!13 +LUK 15:4!14 +LUK 15:4!15 +LUK 15:4!16 +LUK 15:4!17 +LUK 15:4!18 +LUK 15:4!19 +LUK 15:4!20 +LUK 15:4!21 +LUK 15:4!22 +LUK 15:4!23 +LUK 15:4!24 +LUK 15:4!25 +LUK 15:4!26 +LUK 15:4!27 +LUK 15:4!28 +LUK 15:5!1 +LUK 15:5!2 +LUK 15:5!3 +LUK 15:5!4 +LUK 15:5!5 +LUK 15:5!6 +LUK 15:5!7 +LUK 15:5!8 +LUK 15:6!1 +LUK 15:6!2 +LUK 15:6!3 +LUK 15:6!4 +LUK 15:6!5 +LUK 15:6!6 +LUK 15:6!7 +LUK 15:6!8 +LUK 15:6!9 +LUK 15:6!10 +LUK 15:6!11 +LUK 15:6!12 +LUK 15:6!13 +LUK 15:6!14 +LUK 15:6!15 +LUK 15:6!16 +LUK 15:6!17 +LUK 15:6!18 +LUK 15:6!19 +LUK 15:6!20 +LUK 15:6!21 +LUK 15:6!22 +LUK 15:7!1 +LUK 15:7!2 +LUK 15:7!3 +LUK 15:7!4 +LUK 15:7!5 +LUK 15:7!6 +LUK 15:7!7 +LUK 15:7!8 +LUK 15:7!9 +LUK 15:7!10 +LUK 15:7!11 +LUK 15:7!12 +LUK 15:7!13 +LUK 15:7!14 +LUK 15:7!15 +LUK 15:7!16 +LUK 15:7!17 +LUK 15:7!18 +LUK 15:7!19 +LUK 15:7!20 +LUK 15:7!21 +LUK 15:7!23 +LUK 15:7!22 +LUK 15:8!1 +LUK 15:8!2 +LUK 15:8!3 +LUK 15:8!4 +LUK 15:8!6 +LUK 15:8!5 +LUK 15:8!7 +LUK 15:8!8 +LUK 15:8!9 +LUK 15:8!10 +LUK 15:8!11 +LUK 15:8!12 +LUK 15:8!13 +LUK 15:8!14 +LUK 15:8!15 +LUK 15:8!16 +LUK 15:8!17 +LUK 15:8!18 +LUK 15:8!19 +LUK 15:8!20 +LUK 15:8!21 +LUK 15:8!22 +LUK 15:8!23 +LUK 15:9!1 +LUK 15:9!2 +LUK 15:9!3 +LUK 15:9!4 +LUK 15:9!5 +LUK 15:9!6 +LUK 15:9!7 +LUK 15:9!8 +LUK 15:9!9 +LUK 15:9!10 +LUK 15:9!11 +LUK 15:9!12 +LUK 15:9!13 +LUK 15:9!14 +LUK 15:9!15 +LUK 15:9!16 +LUK 15:10!1 +LUK 15:10!2 +LUK 15:10!3 +LUK 15:10!4 +LUK 15:10!5 +LUK 15:10!6 +LUK 15:10!7 +LUK 15:10!8 +LUK 15:10!9 +LUK 15:10!10 +LUK 15:10!11 +LUK 15:10!12 +LUK 15:10!13 +LUK 15:10!14 +LUK 15:11!2 +LUK 15:11!1 +LUK 15:11!3 +LUK 15:11!4 +LUK 15:11!5 +LUK 15:11!6 +LUK 15:11!7 +LUK 15:12!1 +LUK 15:12!2 +LUK 15:12!3 +LUK 15:12!4 +LUK 15:12!5 +LUK 15:12!6 +LUK 15:12!7 +LUK 15:12!8 +LUK 15:12!9 +LUK 15:12!10 +LUK 15:12!11 +LUK 15:12!12 +LUK 15:12!13 +LUK 15:12!14 +LUK 15:12!15 +LUK 15:12!17 +LUK 15:12!16 +LUK 15:12!18 +LUK 15:12!19 +LUK 15:12!20 +LUK 15:12!21 +LUK 15:13!1 +LUK 15:13!2 +LUK 15:13!3 +LUK 15:13!4 +LUK 15:13!5 +LUK 15:13!6 +LUK 15:13!7 +LUK 15:13!8 +LUK 15:13!9 +LUK 15:13!10 +LUK 15:13!11 +LUK 15:13!12 +LUK 15:13!13 +LUK 15:13!14 +LUK 15:13!15 +LUK 15:13!16 +LUK 15:13!17 +LUK 15:13!18 +LUK 15:13!19 +LUK 15:13!20 +LUK 15:13!21 +LUK 15:13!22 +LUK 15:14!2 +LUK 15:14!1 +LUK 15:14!3 +LUK 15:14!4 +LUK 15:14!5 +LUK 15:14!6 +LUK 15:14!7 +LUK 15:14!8 +LUK 15:14!9 +LUK 15:14!10 +LUK 15:14!11 +LUK 15:14!12 +LUK 15:14!13 +LUK 15:14!14 +LUK 15:14!15 +LUK 15:15!1 +LUK 15:15!2 +LUK 15:15!3 +LUK 15:15!4 +LUK 15:15!5 +LUK 15:15!6 +LUK 15:15!7 +LUK 15:15!8 +LUK 15:15!9 +LUK 15:15!10 +LUK 15:15!11 +LUK 15:15!12 +LUK 15:15!13 +LUK 15:15!14 +LUK 15:15!15 +LUK 15:15!16 +LUK 15:15!17 +LUK 15:15!18 +LUK 15:16!1 +LUK 15:16!2 +LUK 15:16!3 +LUK 15:16!4 +LUK 15:16!5 +LUK 15:16!6 +LUK 15:16!7 +LUK 15:16!8 +LUK 15:16!9 +LUK 15:16!10 +LUK 15:16!11 +LUK 15:16!12 +LUK 15:16!13 +LUK 15:16!14 +LUK 15:16!15 +LUK 15:16!16 +LUK 15:16!17 +LUK 15:17!3 +LUK 15:17!1 +LUK 15:17!2 +LUK 15:17!4 +LUK 15:17!5 +LUK 15:17!6 +LUK 15:17!7 +LUK 15:17!8 +LUK 15:17!9 +LUK 15:17!10 +LUK 15:17!11 +LUK 15:17!12 +LUK 15:17!14 +LUK 15:17!13 +LUK 15:17!15 +LUK 15:17!16 +LUK 15:17!17 +LUK 15:18!1 +LUK 15:18!2 +LUK 15:18!3 +LUK 15:18!4 +LUK 15:18!5 +LUK 15:18!6 +LUK 15:18!7 +LUK 15:18!8 +LUK 15:18!9 +LUK 15:18!10 +LUK 15:18!11 +LUK 15:18!12 +LUK 15:18!13 +LUK 15:18!14 +LUK 15:18!15 +LUK 15:18!16 +LUK 15:18!17 +LUK 15:19!1 +LUK 15:19!2 +LUK 15:19!3 +LUK 15:19!4 +LUK 15:19!5 +LUK 15:19!6 +LUK 15:19!7 +LUK 15:19!8 +LUK 15:19!9 +LUK 15:19!10 +LUK 15:19!11 +LUK 15:19!12 +LUK 15:19!13 +LUK 15:20!1 +LUK 15:20!2 +LUK 15:20!3 +LUK 15:20!4 +LUK 15:20!5 +LUK 15:20!6 +LUK 15:20!7 +LUK 15:20!9 +LUK 15:20!8 +LUK 15:20!10 +LUK 15:20!11 +LUK 15:20!12 +LUK 15:20!13 +LUK 15:20!14 +LUK 15:20!15 +LUK 15:20!16 +LUK 15:20!17 +LUK 15:20!18 +LUK 15:20!19 +LUK 15:20!20 +LUK 15:20!21 +LUK 15:20!22 +LUK 15:20!23 +LUK 15:20!24 +LUK 15:20!25 +LUK 15:20!26 +LUK 15:20!27 +LUK 15:20!28 +LUK 15:20!29 +LUK 15:21!2 +LUK 15:21!1 +LUK 15:21!3 +LUK 15:21!4 +LUK 15:21!5 +LUK 15:21!6 +LUK 15:21!7 +LUK 15:21!8 +LUK 15:21!9 +LUK 15:21!10 +LUK 15:21!11 +LUK 15:21!12 +LUK 15:21!13 +LUK 15:21!14 +LUK 15:21!15 +LUK 15:21!16 +LUK 15:21!17 +LUK 15:21!18 +LUK 15:21!19 +LUK 15:22!2 +LUK 15:22!1 +LUK 15:22!3 +LUK 15:22!4 +LUK 15:22!5 +LUK 15:22!6 +LUK 15:22!7 +LUK 15:22!8 +LUK 15:22!9 +LUK 15:22!10 +LUK 15:22!11 +LUK 15:22!12 +LUK 15:22!13 +LUK 15:22!14 +LUK 15:22!15 +LUK 15:22!16 +LUK 15:22!17 +LUK 15:22!18 +LUK 15:22!19 +LUK 15:22!20 +LUK 15:22!21 +LUK 15:22!22 +LUK 15:22!23 +LUK 15:22!24 +LUK 15:22!25 +LUK 15:22!26 +LUK 15:22!27 +LUK 15:22!28 +LUK 15:23!1 +LUK 15:23!2 +LUK 15:23!3 +LUK 15:23!4 +LUK 15:23!5 +LUK 15:23!6 +LUK 15:23!7 +LUK 15:23!8 +LUK 15:23!9 +LUK 15:23!10 +LUK 15:24!1 +LUK 15:24!2 +LUK 15:24!3 +LUK 15:24!4 +LUK 15:24!5 +LUK 15:24!6 +LUK 15:24!7 +LUK 15:24!8 +LUK 15:24!9 +LUK 15:24!10 +LUK 15:24!11 +LUK 15:24!12 +LUK 15:24!13 +LUK 15:24!14 +LUK 15:24!15 +LUK 15:24!16 +LUK 15:25!2 +LUK 15:25!1 +LUK 15:25!3 +LUK 15:25!4 +LUK 15:25!5 +LUK 15:25!6 +LUK 15:25!7 +LUK 15:25!8 +LUK 15:25!9 +LUK 15:25!10 +LUK 15:25!11 +LUK 15:25!12 +LUK 15:25!13 +LUK 15:25!14 +LUK 15:25!15 +LUK 15:25!16 +LUK 15:25!17 +LUK 15:25!18 +LUK 15:25!19 +LUK 15:26!1 +LUK 15:26!2 +LUK 15:26!3 +LUK 15:26!4 +LUK 15:26!5 +LUK 15:26!6 +LUK 15:26!8 +LUK 15:26!7 +LUK 15:26!9 +LUK 15:26!10 +LUK 15:27!2 +LUK 15:27!1 +LUK 15:27!3 +LUK 15:27!4 +LUK 15:27!5 +LUK 15:27!6 +LUK 15:27!7 +LUK 15:27!8 +LUK 15:27!9 +LUK 15:27!10 +LUK 15:27!11 +LUK 15:27!12 +LUK 15:27!13 +LUK 15:27!14 +LUK 15:27!15 +LUK 15:27!16 +LUK 15:27!17 +LUK 15:27!18 +LUK 15:27!19 +LUK 15:27!20 +LUK 15:27!21 +LUK 15:27!22 +LUK 15:28!2 +LUK 15:28!1 +LUK 15:28!3 +LUK 15:28!4 +LUK 15:28!5 +LUK 15:28!6 +LUK 15:28!8 +LUK 15:28!7 +LUK 15:28!9 +LUK 15:28!10 +LUK 15:28!11 +LUK 15:28!12 +LUK 15:28!13 +LUK 15:29!2 +LUK 15:29!1 +LUK 15:29!3 +LUK 15:29!4 +LUK 15:29!5 +LUK 15:29!6 +LUK 15:29!7 +LUK 15:29!8 +LUK 15:29!9 +LUK 15:29!10 +LUK 15:29!11 +LUK 15:29!12 +LUK 15:29!13 +LUK 15:29!14 +LUK 15:29!15 +LUK 15:29!16 +LUK 15:29!17 +LUK 15:29!18 +LUK 15:29!19 +LUK 15:29!20 +LUK 15:29!21 +LUK 15:29!22 +LUK 15:29!23 +LUK 15:29!24 +LUK 15:29!25 +LUK 15:29!26 +LUK 15:29!27 +LUK 15:30!2 +LUK 15:30!1 +LUK 15:30!3 +LUK 15:30!4 +LUK 15:30!5 +LUK 15:30!6 +LUK 15:30!7 +LUK 15:30!8 +LUK 15:30!9 +LUK 15:30!10 +LUK 15:30!11 +LUK 15:30!12 +LUK 15:30!13 +LUK 15:30!14 +LUK 15:30!15 +LUK 15:30!16 +LUK 15:30!17 +LUK 15:30!18 +LUK 15:30!19 +LUK 15:31!2 +LUK 15:31!1 +LUK 15:31!3 +LUK 15:31!4 +LUK 15:31!5 +LUK 15:31!6 +LUK 15:31!7 +LUK 15:31!8 +LUK 15:31!9 +LUK 15:31!10 +LUK 15:31!11 +LUK 15:31!12 +LUK 15:31!13 +LUK 15:31!14 +LUK 15:31!15 +LUK 15:31!16 +LUK 15:32!2 +LUK 15:32!1 +LUK 15:32!3 +LUK 15:32!4 +LUK 15:32!5 +LUK 15:32!6 +LUK 15:32!7 +LUK 15:32!8 +LUK 15:32!9 +LUK 15:32!10 +LUK 15:32!11 +LUK 15:32!12 +LUK 15:32!13 +LUK 15:32!14 +LUK 15:32!15 +LUK 15:32!16 +LUK 15:32!17 +LUK 15:32!18 +LUK 16:1!2 +LUK 16:1!1 +LUK 16:1!3 +LUK 16:1!4 +LUK 16:1!5 +LUK 16:1!6 +LUK 16:1!7 +LUK 16:1!8 +LUK 16:1!9 +LUK 16:1!10 +LUK 16:1!11 +LUK 16:1!12 +LUK 16:1!13 +LUK 16:1!14 +LUK 16:1!15 +LUK 16:1!16 +LUK 16:1!17 +LUK 16:1!18 +LUK 16:1!19 +LUK 16:1!20 +LUK 16:1!21 +LUK 16:1!22 +LUK 16:2!1 +LUK 16:2!2 +LUK 16:2!3 +LUK 16:2!4 +LUK 16:2!5 +LUK 16:2!6 +LUK 16:2!7 +LUK 16:2!8 +LUK 16:2!9 +LUK 16:2!10 +LUK 16:2!11 +LUK 16:2!12 +LUK 16:2!13 +LUK 16:2!14 +LUK 16:2!15 +LUK 16:2!16 +LUK 16:2!18 +LUK 16:2!17 +LUK 16:2!19 +LUK 16:2!20 +LUK 16:2!21 +LUK 16:3!2 +LUK 16:3!1 +LUK 16:3!3 +LUK 16:3!4 +LUK 16:3!5 +LUK 16:3!6 +LUK 16:3!7 +LUK 16:3!8 +LUK 16:3!9 +LUK 16:3!10 +LUK 16:3!11 +LUK 16:3!12 +LUK 16:3!13 +LUK 16:3!14 +LUK 16:3!15 +LUK 16:3!16 +LUK 16:3!17 +LUK 16:3!18 +LUK 16:3!19 +LUK 16:3!20 +LUK 16:3!21 +LUK 16:3!22 +LUK 16:4!1 +LUK 16:4!2 +LUK 16:4!3 +LUK 16:4!4 +LUK 16:4!5 +LUK 16:4!6 +LUK 16:4!7 +LUK 16:4!8 +LUK 16:4!9 +LUK 16:4!10 +LUK 16:4!11 +LUK 16:4!12 +LUK 16:4!13 +LUK 16:4!14 +LUK 16:4!15 +LUK 16:5!1 +LUK 16:5!2 +LUK 16:5!3 +LUK 16:5!4 +LUK 16:5!5 +LUK 16:5!6 +LUK 16:5!7 +LUK 16:5!8 +LUK 16:5!9 +LUK 16:5!10 +LUK 16:5!11 +LUK 16:5!12 +LUK 16:5!13 +LUK 16:5!14 +LUK 16:5!15 +LUK 16:5!16 +LUK 16:5!17 +LUK 16:6!2 +LUK 16:6!1 +LUK 16:6!3 +LUK 16:6!4 +LUK 16:6!5 +LUK 16:6!6 +LUK 16:6!8 +LUK 16:6!7 +LUK 16:6!9 +LUK 16:6!10 +LUK 16:6!11 +LUK 16:6!12 +LUK 16:6!13 +LUK 16:6!14 +LUK 16:6!15 +LUK 16:6!16 +LUK 16:6!17 +LUK 16:6!18 +LUK 16:6!19 +LUK 16:7!1 +LUK 16:7!2 +LUK 16:7!3 +LUK 16:7!5 +LUK 16:7!4 +LUK 16:7!6 +LUK 16:7!7 +LUK 16:7!9 +LUK 16:7!8 +LUK 16:7!10 +LUK 16:7!11 +LUK 16:7!12 +LUK 16:7!13 +LUK 16:7!14 +LUK 16:7!15 +LUK 16:7!16 +LUK 16:7!17 +LUK 16:7!18 +LUK 16:7!19 +LUK 16:7!20 +LUK 16:7!21 +LUK 16:7!22 +LUK 16:8!1 +LUK 16:8!2 +LUK 16:8!3 +LUK 16:8!4 +LUK 16:8!5 +LUK 16:8!6 +LUK 16:8!7 +LUK 16:8!8 +LUK 16:8!9 +LUK 16:8!10 +LUK 16:8!11 +LUK 16:8!12 +LUK 16:8!13 +LUK 16:8!14 +LUK 16:8!15 +LUK 16:8!16 +LUK 16:8!17 +LUK 16:8!18 +LUK 16:8!19 +LUK 16:8!20 +LUK 16:8!21 +LUK 16:8!22 +LUK 16:8!23 +LUK 16:8!24 +LUK 16:8!25 +LUK 16:8!26 +LUK 16:8!27 +LUK 16:8!28 +LUK 16:8!29 +LUK 16:9!1 +LUK 16:9!2 +LUK 16:9!3 +LUK 16:9!4 +LUK 16:9!5 +LUK 16:9!6 +LUK 16:9!7 +LUK 16:9!8 +LUK 16:9!9 +LUK 16:9!10 +LUK 16:9!11 +LUK 16:9!12 +LUK 16:9!13 +LUK 16:9!14 +LUK 16:9!15 +LUK 16:9!16 +LUK 16:9!17 +LUK 16:9!18 +LUK 16:9!19 +LUK 16:9!20 +LUK 16:9!21 +LUK 16:10!1 +LUK 16:10!2 +LUK 16:10!3 +LUK 16:10!4 +LUK 16:10!5 +LUK 16:10!6 +LUK 16:10!7 +LUK 16:10!8 +LUK 16:10!9 +LUK 16:10!10 +LUK 16:10!11 +LUK 16:10!12 +LUK 16:10!13 +LUK 16:10!14 +LUK 16:10!15 +LUK 16:10!16 +LUK 16:10!17 +LUK 16:10!18 +LUK 16:10!19 +LUK 16:11!2 +LUK 16:11!1 +LUK 16:11!3 +LUK 16:11!4 +LUK 16:11!5 +LUK 16:11!6 +LUK 16:11!7 +LUK 16:11!8 +LUK 16:11!9 +LUK 16:11!10 +LUK 16:11!11 +LUK 16:11!12 +LUK 16:11!13 +LUK 16:11!14 +LUK 16:12!1 +LUK 16:12!2 +LUK 16:12!3 +LUK 16:12!4 +LUK 16:12!5 +LUK 16:12!6 +LUK 16:12!7 +LUK 16:12!8 +LUK 16:12!9 +LUK 16:12!10 +LUK 16:12!11 +LUK 16:12!12 +LUK 16:12!13 +LUK 16:13!1 +LUK 16:13!2 +LUK 16:13!3 +LUK 16:13!4 +LUK 16:13!5 +LUK 16:13!6 +LUK 16:13!8 +LUK 16:13!7 +LUK 16:13!9 +LUK 16:13!10 +LUK 16:13!11 +LUK 16:13!12 +LUK 16:13!13 +LUK 16:13!14 +LUK 16:13!15 +LUK 16:13!16 +LUK 16:13!17 +LUK 16:13!18 +LUK 16:13!19 +LUK 16:13!20 +LUK 16:13!21 +LUK 16:13!22 +LUK 16:13!23 +LUK 16:13!24 +LUK 16:13!25 +LUK 16:13!26 +LUK 16:13!27 +LUK 16:13!28 +LUK 16:14!2 +LUK 16:14!1 +LUK 16:14!3 +LUK 16:14!4 +LUK 16:14!5 +LUK 16:14!6 +LUK 16:14!7 +LUK 16:14!8 +LUK 16:14!9 +LUK 16:14!10 +LUK 16:14!11 +LUK 16:15!1 +LUK 16:15!2 +LUK 16:15!3 +LUK 16:15!4 +LUK 16:15!5 +LUK 16:15!6 +LUK 16:15!7 +LUK 16:15!8 +LUK 16:15!9 +LUK 16:15!10 +LUK 16:15!11 +LUK 16:15!13 +LUK 16:15!12 +LUK 16:15!14 +LUK 16:15!15 +LUK 16:15!16 +LUK 16:15!17 +LUK 16:15!18 +LUK 16:15!19 +LUK 16:15!20 +LUK 16:15!21 +LUK 16:15!22 +LUK 16:15!23 +LUK 16:15!24 +LUK 16:15!25 +LUK 16:15!26 +LUK 16:15!27 +LUK 16:16!1 +LUK 16:16!2 +LUK 16:16!3 +LUK 16:16!4 +LUK 16:16!5 +LUK 16:16!6 +LUK 16:16!7 +LUK 16:16!8 +LUK 16:16!9 +LUK 16:16!10 +LUK 16:16!11 +LUK 16:16!12 +LUK 16:16!13 +LUK 16:16!14 +LUK 16:16!15 +LUK 16:16!16 +LUK 16:16!17 +LUK 16:16!18 +LUK 16:16!19 +LUK 16:17!2 +LUK 16:17!1 +LUK 16:17!3 +LUK 16:17!4 +LUK 16:17!5 +LUK 16:17!6 +LUK 16:17!7 +LUK 16:17!8 +LUK 16:17!9 +LUK 16:17!10 +LUK 16:17!11 +LUK 16:17!12 +LUK 16:17!13 +LUK 16:17!14 +LUK 16:17!15 +LUK 16:18!1 +LUK 16:18!2 +LUK 16:18!3 +LUK 16:18!4 +LUK 16:18!5 +LUK 16:18!6 +LUK 16:18!7 +LUK 16:18!8 +LUK 16:18!9 +LUK 16:18!10 +LUK 16:18!11 +LUK 16:18!12 +LUK 16:18!13 +LUK 16:18!14 +LUK 16:18!15 +LUK 16:18!16 +LUK 16:18!17 +LUK 16:19!2 +LUK 16:19!1 +LUK 16:19!3 +LUK 16:19!4 +LUK 16:19!5 +LUK 16:19!6 +LUK 16:19!7 +LUK 16:19!8 +LUK 16:19!9 +LUK 16:19!10 +LUK 16:19!11 +LUK 16:19!12 +LUK 16:19!13 +LUK 16:19!14 +LUK 16:20!2 +LUK 16:20!1 +LUK 16:20!3 +LUK 16:20!4 +LUK 16:20!5 +LUK 16:20!6 +LUK 16:20!7 +LUK 16:20!8 +LUK 16:20!9 +LUK 16:20!10 +LUK 16:20!11 +LUK 16:21!1 +LUK 16:21!2 +LUK 16:21!3 +LUK 16:21!4 +LUK 16:21!5 +LUK 16:21!6 +LUK 16:21!7 +LUK 16:21!8 +LUK 16:21!9 +LUK 16:21!10 +LUK 16:21!11 +LUK 16:21!12 +LUK 16:21!13 +LUK 16:21!14 +LUK 16:21!15 +LUK 16:21!16 +LUK 16:21!17 +LUK 16:21!18 +LUK 16:21!19 +LUK 16:21!20 +LUK 16:22!2 +LUK 16:22!1 +LUK 16:22!3 +LUK 16:22!4 +LUK 16:22!5 +LUK 16:22!6 +LUK 16:22!7 +LUK 16:22!8 +LUK 16:22!9 +LUK 16:22!10 +LUK 16:22!11 +LUK 16:22!12 +LUK 16:22!13 +LUK 16:22!14 +LUK 16:22!15 +LUK 16:22!17 +LUK 16:22!16 +LUK 16:22!18 +LUK 16:22!19 +LUK 16:22!20 +LUK 16:22!21 +LUK 16:22!22 +LUK 16:23!1 +LUK 16:23!2 +LUK 16:23!3 +LUK 16:23!4 +LUK 16:23!5 +LUK 16:23!6 +LUK 16:23!7 +LUK 16:23!8 +LUK 16:23!9 +LUK 16:23!10 +LUK 16:23!11 +LUK 16:23!12 +LUK 16:23!13 +LUK 16:23!14 +LUK 16:23!15 +LUK 16:23!16 +LUK 16:23!17 +LUK 16:23!18 +LUK 16:23!19 +LUK 16:23!20 +LUK 16:23!21 +LUK 16:24!1 +LUK 16:24!2 +LUK 16:24!3 +LUK 16:24!4 +LUK 16:24!5 +LUK 16:24!6 +LUK 16:24!7 +LUK 16:24!8 +LUK 16:24!9 +LUK 16:24!10 +LUK 16:24!11 +LUK 16:24!12 +LUK 16:24!13 +LUK 16:24!14 +LUK 16:24!15 +LUK 16:24!16 +LUK 16:24!17 +LUK 16:24!18 +LUK 16:24!19 +LUK 16:24!20 +LUK 16:24!21 +LUK 16:24!22 +LUK 16:24!23 +LUK 16:24!24 +LUK 16:24!25 +LUK 16:24!26 +LUK 16:24!27 +LUK 16:24!28 +LUK 16:24!29 +LUK 16:24!30 +LUK 16:25!2 +LUK 16:25!1 +LUK 16:25!3 +LUK 16:25!4 +LUK 16:25!5 +LUK 16:25!6 +LUK 16:25!7 +LUK 16:25!8 +LUK 16:25!9 +LUK 16:25!10 +LUK 16:25!11 +LUK 16:25!12 +LUK 16:25!13 +LUK 16:25!14 +LUK 16:25!15 +LUK 16:25!16 +LUK 16:25!17 +LUK 16:25!18 +LUK 16:25!19 +LUK 16:25!21 +LUK 16:25!20 +LUK 16:25!22 +LUK 16:25!23 +LUK 16:25!25 +LUK 16:25!24 +LUK 16:25!26 +LUK 16:26!1 +LUK 16:26!2 +LUK 16:26!3 +LUK 16:26!4 +LUK 16:26!5 +LUK 16:26!6 +LUK 16:26!7 +LUK 16:26!8 +LUK 16:26!9 +LUK 16:26!10 +LUK 16:26!11 +LUK 16:26!12 +LUK 16:26!13 +LUK 16:26!14 +LUK 16:26!15 +LUK 16:26!16 +LUK 16:26!17 +LUK 16:26!18 +LUK 16:26!19 +LUK 16:26!20 +LUK 16:26!21 +LUK 16:26!22 +LUK 16:26!23 +LUK 16:26!24 +LUK 16:26!25 +LUK 16:27!2 +LUK 16:27!1 +LUK 16:27!5 +LUK 16:27!3 +LUK 16:27!4 +LUK 16:27!6 +LUK 16:27!7 +LUK 16:27!8 +LUK 16:27!9 +LUK 16:27!10 +LUK 16:27!11 +LUK 16:27!12 +LUK 16:27!13 +LUK 16:27!14 +LUK 16:27!15 +LUK 16:28!2 +LUK 16:28!1 +LUK 16:28!3 +LUK 16:28!4 +LUK 16:28!5 +LUK 16:28!6 +LUK 16:28!7 +LUK 16:28!8 +LUK 16:28!9 +LUK 16:28!10 +LUK 16:28!11 +LUK 16:28!12 +LUK 16:28!13 +LUK 16:28!14 +LUK 16:28!15 +LUK 16:28!16 +LUK 16:28!17 +LUK 16:28!18 +LUK 16:29!2 +LUK 16:29!1 +LUK 16:29!3 +LUK 16:29!4 +LUK 16:29!5 +LUK 16:29!6 +LUK 16:29!7 +LUK 16:29!8 +LUK 16:29!9 +LUK 16:29!10 +LUK 16:30!2 +LUK 16:30!1 +LUK 16:30!3 +LUK 16:30!4 +LUK 16:30!5 +LUK 16:30!6 +LUK 16:30!7 +LUK 16:30!8 +LUK 16:30!9 +LUK 16:30!10 +LUK 16:30!11 +LUK 16:30!12 +LUK 16:30!13 +LUK 16:30!14 +LUK 16:30!15 +LUK 16:31!2 +LUK 16:31!1 +LUK 16:31!3 +LUK 16:31!4 +LUK 16:31!5 +LUK 16:31!6 +LUK 16:31!7 +LUK 16:31!8 +LUK 16:31!9 +LUK 16:31!10 +LUK 16:31!11 +LUK 16:31!12 +LUK 16:31!13 +LUK 16:31!14 +LUK 16:31!15 +LUK 16:31!16 +LUK 16:31!17 +LUK 17:1!2 +LUK 17:1!1 +LUK 17:1!3 +LUK 17:1!4 +LUK 17:1!5 +LUK 17:1!6 +LUK 17:1!7 +LUK 17:1!8 +LUK 17:1!9 +LUK 17:1!10 +LUK 17:1!11 +LUK 17:1!12 +LUK 17:1!13 +LUK 17:1!15 +LUK 17:1!14 +LUK 17:1!16 +LUK 17:1!17 +LUK 17:1!18 +LUK 17:2!1 +LUK 17:2!2 +LUK 17:2!3 +LUK 17:2!4 +LUK 17:2!5 +LUK 17:2!6 +LUK 17:2!7 +LUK 17:2!8 +LUK 17:2!9 +LUK 17:2!10 +LUK 17:2!11 +LUK 17:2!12 +LUK 17:2!13 +LUK 17:2!14 +LUK 17:2!15 +LUK 17:2!16 +LUK 17:2!17 +LUK 17:2!18 +LUK 17:2!19 +LUK 17:2!20 +LUK 17:2!21 +LUK 17:2!22 +LUK 17:3!1 +LUK 17:3!2 +LUK 17:3!3 +LUK 17:3!4 +LUK 17:3!5 +LUK 17:3!6 +LUK 17:3!7 +LUK 17:3!8 +LUK 17:3!9 +LUK 17:3!10 +LUK 17:3!11 +LUK 17:3!12 +LUK 17:3!13 +LUK 17:3!14 +LUK 17:4!1 +LUK 17:4!2 +LUK 17:4!3 +LUK 17:4!4 +LUK 17:4!5 +LUK 17:4!6 +LUK 17:4!7 +LUK 17:4!8 +LUK 17:4!9 +LUK 17:4!10 +LUK 17:4!11 +LUK 17:4!12 +LUK 17:4!13 +LUK 17:4!14 +LUK 17:4!15 +LUK 17:4!16 +LUK 17:4!17 +LUK 17:5!1 +LUK 17:5!2 +LUK 17:5!3 +LUK 17:5!4 +LUK 17:5!5 +LUK 17:5!6 +LUK 17:5!7 +LUK 17:5!8 +LUK 17:5!9 +LUK 17:6!2 +LUK 17:6!1 +LUK 17:6!3 +LUK 17:6!4 +LUK 17:6!5 +LUK 17:6!6 +LUK 17:6!7 +LUK 17:6!8 +LUK 17:6!9 +LUK 17:6!10 +LUK 17:6!12 +LUK 17:6!11 +LUK 17:6!13 +LUK 17:6!14 +LUK 17:6!15 +LUK 17:6!16 +LUK 17:6!17 +LUK 17:6!18 +LUK 17:6!19 +LUK 17:6!20 +LUK 17:6!21 +LUK 17:6!22 +LUK 17:6!24 +LUK 17:6!23 +LUK 17:6!25 +LUK 17:7!2 +LUK 17:7!1 +LUK 17:7!3 +LUK 17:7!4 +LUK 17:7!6 +LUK 17:7!5 +LUK 17:7!7 +LUK 17:7!8 +LUK 17:7!9 +LUK 17:7!10 +LUK 17:7!11 +LUK 17:7!12 +LUK 17:7!13 +LUK 17:7!14 +LUK 17:7!15 +LUK 17:7!16 +LUK 17:7!17 +LUK 17:7!18 +LUK 17:7!19 +LUK 17:8!1 +LUK 17:8!2 +LUK 17:8!3 +LUK 17:8!4 +LUK 17:8!5 +LUK 17:8!6 +LUK 17:8!7 +LUK 17:8!8 +LUK 17:8!9 +LUK 17:8!10 +LUK 17:8!11 +LUK 17:8!12 +LUK 17:8!13 +LUK 17:8!14 +LUK 17:8!15 +LUK 17:8!16 +LUK 17:8!17 +LUK 17:8!18 +LUK 17:8!19 +LUK 17:8!20 +LUK 17:8!21 +LUK 17:8!22 +LUK 17:9!1 +LUK 17:9!2 +LUK 17:9!3 +LUK 17:9!4 +LUK 17:9!5 +LUK 17:9!6 +LUK 17:9!7 +LUK 17:9!8 +LUK 17:9!9 +LUK 17:10!1 +LUK 17:10!2 +LUK 17:10!3 +LUK 17:10!4 +LUK 17:10!5 +LUK 17:10!6 +LUK 17:10!7 +LUK 17:10!8 +LUK 17:10!9 +LUK 17:10!10 +LUK 17:10!11 +LUK 17:10!12 +LUK 17:10!13 +LUK 17:10!14 +LUK 17:10!15 +LUK 17:10!17 +LUK 17:10!16 +LUK 17:10!18 +LUK 17:11!1 +LUK 17:11!2 +LUK 17:11!3 +LUK 17:11!4 +LUK 17:11!5 +LUK 17:11!6 +LUK 17:11!7 +LUK 17:11!8 +LUK 17:11!9 +LUK 17:11!10 +LUK 17:11!11 +LUK 17:11!12 +LUK 17:11!13 +LUK 17:11!14 +LUK 17:11!15 +LUK 17:12!1 +LUK 17:12!2 +LUK 17:12!3 +LUK 17:12!4 +LUK 17:12!5 +LUK 17:12!6 +LUK 17:12!7 +LUK 17:12!8 +LUK 17:12!9 +LUK 17:12!10 +LUK 17:12!11 +LUK 17:12!12 +LUK 17:12!13 +LUK 17:13!1 +LUK 17:13!2 +LUK 17:13!3 +LUK 17:13!4 +LUK 17:13!5 +LUK 17:13!6 +LUK 17:13!7 +LUK 17:13!8 +LUK 17:13!9 +LUK 17:14!1 +LUK 17:14!2 +LUK 17:14!3 +LUK 17:14!4 +LUK 17:14!5 +LUK 17:14!6 +LUK 17:14!7 +LUK 17:14!8 +LUK 17:14!9 +LUK 17:14!10 +LUK 17:14!11 +LUK 17:14!12 +LUK 17:14!13 +LUK 17:14!14 +LUK 17:14!15 +LUK 17:14!16 +LUK 17:15!2 +LUK 17:15!1 +LUK 17:15!3 +LUK 17:15!4 +LUK 17:15!5 +LUK 17:15!6 +LUK 17:15!7 +LUK 17:15!8 +LUK 17:15!9 +LUK 17:15!10 +LUK 17:15!11 +LUK 17:15!12 +LUK 17:15!13 +LUK 17:15!14 +LUK 17:16!1 +LUK 17:16!2 +LUK 17:16!3 +LUK 17:16!4 +LUK 17:16!5 +LUK 17:16!6 +LUK 17:16!7 +LUK 17:16!8 +LUK 17:16!9 +LUK 17:16!10 +LUK 17:16!11 +LUK 17:16!12 +LUK 17:16!13 +LUK 17:16!14 +LUK 17:17!2 +LUK 17:17!1 +LUK 17:17!3 +LUK 17:17!4 +LUK 17:17!5 +LUK 17:17!6 +LUK 17:17!7 +LUK 17:17!8 +LUK 17:17!9 +LUK 17:17!11 +LUK 17:17!10 +LUK 17:17!12 +LUK 17:17!13 +LUK 17:18!1 +LUK 17:18!2 +LUK 17:18!3 +LUK 17:18!4 +LUK 17:18!5 +LUK 17:18!6 +LUK 17:18!7 +LUK 17:18!8 +LUK 17:18!9 +LUK 17:18!10 +LUK 17:18!11 +LUK 17:18!12 +LUK 17:19!1 +LUK 17:19!2 +LUK 17:19!3 +LUK 17:19!4 +LUK 17:19!5 +LUK 17:19!6 +LUK 17:19!7 +LUK 17:19!8 +LUK 17:19!9 +LUK 17:19!10 +LUK 17:20!2 +LUK 17:20!1 +LUK 17:20!3 +LUK 17:20!4 +LUK 17:20!5 +LUK 17:20!6 +LUK 17:20!7 +LUK 17:20!8 +LUK 17:20!9 +LUK 17:20!10 +LUK 17:20!11 +LUK 17:20!12 +LUK 17:20!13 +LUK 17:20!14 +LUK 17:20!15 +LUK 17:20!16 +LUK 17:20!17 +LUK 17:20!18 +LUK 17:20!19 +LUK 17:20!20 +LUK 17:20!21 +LUK 17:20!22 +LUK 17:20!23 +LUK 17:21!1 +LUK 17:21!2 +LUK 17:21!3 +LUK 17:21!4 +LUK 17:21!5 +LUK 17:21!6 +LUK 17:21!8 +LUK 17:21!7 +LUK 17:21!9 +LUK 17:21!10 +LUK 17:21!11 +LUK 17:21!12 +LUK 17:21!13 +LUK 17:21!14 +LUK 17:21!15 +LUK 17:22!2 +LUK 17:22!1 +LUK 17:22!3 +LUK 17:22!4 +LUK 17:22!5 +LUK 17:22!6 +LUK 17:22!7 +LUK 17:22!8 +LUK 17:22!9 +LUK 17:22!10 +LUK 17:22!11 +LUK 17:22!12 +LUK 17:22!13 +LUK 17:22!14 +LUK 17:22!15 +LUK 17:22!16 +LUK 17:22!17 +LUK 17:22!18 +LUK 17:22!19 +LUK 17:22!20 +LUK 17:23!1 +LUK 17:23!2 +LUK 17:23!3 +LUK 17:23!4 +LUK 17:23!5 +LUK 17:23!6 +LUK 17:23!7 +LUK 17:23!8 +LUK 17:23!9 +LUK 17:23!10 +LUK 17:23!11 +LUK 17:24!2 +LUK 17:24!1 +LUK 17:24!3 +LUK 17:24!4 +LUK 17:24!5 +LUK 17:24!6 +LUK 17:24!7 +LUK 17:24!8 +LUK 17:24!9 +LUK 17:24!10 +LUK 17:24!11 +LUK 17:24!12 +LUK 17:24!13 +LUK 17:24!14 +LUK 17:24!15 +LUK 17:24!16 +LUK 17:24!17 +LUK 17:24!18 +LUK 17:24!19 +LUK 17:24!20 +LUK 17:24!21 +LUK 17:24!22 +LUK 17:24!23 +LUK 17:24!24 +LUK 17:24!25 +LUK 17:25!2 +LUK 17:25!3 +LUK 17:25!1 +LUK 17:25!4 +LUK 17:25!5 +LUK 17:25!6 +LUK 17:25!7 +LUK 17:25!8 +LUK 17:25!9 +LUK 17:25!10 +LUK 17:25!11 +LUK 17:25!12 +LUK 17:26!1 +LUK 17:26!2 +LUK 17:26!3 +LUK 17:26!4 +LUK 17:26!5 +LUK 17:26!6 +LUK 17:26!7 +LUK 17:26!8 +LUK 17:26!9 +LUK 17:26!10 +LUK 17:26!11 +LUK 17:26!12 +LUK 17:26!13 +LUK 17:26!14 +LUK 17:26!15 +LUK 17:26!16 +LUK 17:26!17 +LUK 17:27!1 +LUK 17:27!2 +LUK 17:27!3 +LUK 17:27!4 +LUK 17:27!5 +LUK 17:27!6 +LUK 17:27!7 +LUK 17:27!8 +LUK 17:27!9 +LUK 17:27!10 +LUK 17:27!11 +LUK 17:27!12 +LUK 17:27!13 +LUK 17:27!14 +LUK 17:27!15 +LUK 17:27!16 +LUK 17:27!17 +LUK 17:27!18 +LUK 17:27!19 +LUK 17:28!2 +LUK 17:28!1 +LUK 17:28!3 +LUK 17:28!4 +LUK 17:28!5 +LUK 17:28!6 +LUK 17:28!7 +LUK 17:28!8 +LUK 17:28!9 +LUK 17:28!10 +LUK 17:28!11 +LUK 17:28!12 +LUK 17:28!13 +LUK 17:29!2 +LUK 17:29!1 +LUK 17:29!3 +LUK 17:29!4 +LUK 17:29!5 +LUK 17:29!6 +LUK 17:29!7 +LUK 17:29!8 +LUK 17:29!9 +LUK 17:29!10 +LUK 17:29!11 +LUK 17:29!12 +LUK 17:29!13 +LUK 17:29!14 +LUK 17:29!15 +LUK 17:29!16 +LUK 17:30!1 +LUK 17:30!2 +LUK 17:30!3 +LUK 17:30!4 +LUK 17:30!5 +LUK 17:30!6 +LUK 17:30!7 +LUK 17:30!8 +LUK 17:30!9 +LUK 17:30!10 +LUK 17:30!11 +LUK 17:31!1 +LUK 17:31!2 +LUK 17:31!3 +LUK 17:31!4 +LUK 17:31!5 +LUK 17:31!6 +LUK 17:31!7 +LUK 17:31!8 +LUK 17:31!9 +LUK 17:31!10 +LUK 17:31!11 +LUK 17:31!12 +LUK 17:31!13 +LUK 17:31!14 +LUK 17:31!15 +LUK 17:31!16 +LUK 17:31!17 +LUK 17:31!18 +LUK 17:31!19 +LUK 17:31!20 +LUK 17:31!21 +LUK 17:31!22 +LUK 17:31!23 +LUK 17:31!24 +LUK 17:31!25 +LUK 17:31!26 +LUK 17:31!27 +LUK 17:31!28 +LUK 17:31!29 +LUK 17:31!30 +LUK 17:32!1 +LUK 17:32!2 +LUK 17:32!3 +LUK 17:32!4 +LUK 17:33!2 +LUK 17:33!1 +LUK 17:33!3 +LUK 17:33!4 +LUK 17:33!5 +LUK 17:33!6 +LUK 17:33!7 +LUK 17:33!8 +LUK 17:33!9 +LUK 17:33!10 +LUK 17:33!12 +LUK 17:33!11 +LUK 17:33!13 +LUK 17:33!14 +LUK 17:33!15 +LUK 17:34!1 +LUK 17:34!2 +LUK 17:34!3 +LUK 17:34!4 +LUK 17:34!5 +LUK 17:34!6 +LUK 17:34!7 +LUK 17:34!8 +LUK 17:34!9 +LUK 17:34!10 +LUK 17:34!11 +LUK 17:34!12 +LUK 17:34!13 +LUK 17:34!14 +LUK 17:34!15 +LUK 17:34!16 +LUK 17:34!17 +LUK 17:35!1 +LUK 17:35!3 +LUK 17:35!2 +LUK 17:35!4 +LUK 17:35!5 +LUK 17:35!6 +LUK 17:35!7 +LUK 17:35!8 +LUK 17:35!9 +LUK 17:35!11 +LUK 17:35!10 +LUK 17:35!12 +LUK 17:35!13 +LUK 17:37!1 +LUK 17:37!2 +LUK 17:37!3 +LUK 17:37!4 +LUK 17:37!5 +LUK 17:37!6 +LUK 17:37!8 +LUK 17:37!7 +LUK 17:37!9 +LUK 17:37!10 +LUK 17:37!11 +LUK 17:37!12 +LUK 17:37!13 +LUK 17:37!14 +LUK 17:37!15 +LUK 17:37!16 +LUK 17:37!17 +LUK 17:37!18 +LUK 18:1!2 +LUK 18:1!1 +LUK 18:1!3 +LUK 18:1!4 +LUK 18:1!5 +LUK 18:1!6 +LUK 18:1!7 +LUK 18:1!8 +LUK 18:1!9 +LUK 18:1!10 +LUK 18:1!11 +LUK 18:1!12 +LUK 18:1!13 +LUK 18:2!1 +LUK 18:2!2 +LUK 18:2!3 +LUK 18:2!4 +LUK 18:2!5 +LUK 18:2!6 +LUK 18:2!7 +LUK 18:2!8 +LUK 18:2!9 +LUK 18:2!10 +LUK 18:2!11 +LUK 18:2!12 +LUK 18:2!13 +LUK 18:2!14 +LUK 18:2!15 +LUK 18:3!2 +LUK 18:3!1 +LUK 18:3!3 +LUK 18:3!4 +LUK 18:3!5 +LUK 18:3!6 +LUK 18:3!7 +LUK 18:3!8 +LUK 18:3!9 +LUK 18:3!10 +LUK 18:3!11 +LUK 18:3!12 +LUK 18:3!13 +LUK 18:3!14 +LUK 18:3!15 +LUK 18:3!16 +LUK 18:3!17 +LUK 18:3!18 +LUK 18:4!1 +LUK 18:4!2 +LUK 18:4!3 +LUK 18:4!4 +LUK 18:4!5 +LUK 18:4!8 +LUK 18:4!6 +LUK 18:4!7 +LUK 18:4!9 +LUK 18:4!10 +LUK 18:4!11 +LUK 18:4!12 +LUK 18:4!13 +LUK 18:4!14 +LUK 18:4!15 +LUK 18:4!16 +LUK 18:4!17 +LUK 18:4!18 +LUK 18:4!19 +LUK 18:4!20 +LUK 18:5!2 +LUK 18:5!1 +LUK 18:5!3 +LUK 18:5!4 +LUK 18:5!5 +LUK 18:5!6 +LUK 18:5!7 +LUK 18:5!8 +LUK 18:5!9 +LUK 18:5!10 +LUK 18:5!11 +LUK 18:5!12 +LUK 18:5!13 +LUK 18:5!14 +LUK 18:5!15 +LUK 18:5!16 +LUK 18:5!17 +LUK 18:5!18 +LUK 18:6!2 +LUK 18:6!1 +LUK 18:6!3 +LUK 18:6!4 +LUK 18:6!5 +LUK 18:6!6 +LUK 18:6!7 +LUK 18:6!8 +LUK 18:6!9 +LUK 18:6!10 +LUK 18:6!11 +LUK 18:7!2 +LUK 18:7!4 +LUK 18:7!5 +LUK 18:7!1 +LUK 18:7!3 +LUK 18:7!6 +LUK 18:7!7 +LUK 18:7!8 +LUK 18:7!9 +LUK 18:7!10 +LUK 18:7!11 +LUK 18:7!12 +LUK 18:7!13 +LUK 18:7!14 +LUK 18:7!15 +LUK 18:7!16 +LUK 18:7!17 +LUK 18:7!18 +LUK 18:7!19 +LUK 18:7!20 +LUK 18:7!21 +LUK 18:8!1 +LUK 18:8!2 +LUK 18:8!3 +LUK 18:8!4 +LUK 18:8!5 +LUK 18:8!6 +LUK 18:8!7 +LUK 18:8!8 +LUK 18:8!9 +LUK 18:8!10 +LUK 18:8!11 +LUK 18:8!12 +LUK 18:8!13 +LUK 18:8!14 +LUK 18:8!15 +LUK 18:8!16 +LUK 18:8!17 +LUK 18:8!18 +LUK 18:8!19 +LUK 18:8!20 +LUK 18:8!21 +LUK 18:8!22 +LUK 18:9!2 +LUK 18:9!1 +LUK 18:9!3 +LUK 18:9!4 +LUK 18:9!5 +LUK 18:9!6 +LUK 18:9!7 +LUK 18:9!8 +LUK 18:9!9 +LUK 18:9!10 +LUK 18:9!11 +LUK 18:9!12 +LUK 18:9!13 +LUK 18:9!14 +LUK 18:9!15 +LUK 18:9!16 +LUK 18:9!17 +LUK 18:9!18 +LUK 18:9!19 +LUK 18:10!1 +LUK 18:10!2 +LUK 18:10!3 +LUK 18:10!4 +LUK 18:10!5 +LUK 18:10!6 +LUK 18:10!7 +LUK 18:10!8 +LUK 18:10!9 +LUK 18:10!10 +LUK 18:10!11 +LUK 18:10!12 +LUK 18:10!13 +LUK 18:10!14 +LUK 18:11!1 +LUK 18:11!2 +LUK 18:11!3 +LUK 18:11!4 +LUK 18:11!5 +LUK 18:11!6 +LUK 18:11!7 +LUK 18:11!8 +LUK 18:11!9 +LUK 18:11!10 +LUK 18:11!11 +LUK 18:11!12 +LUK 18:11!13 +LUK 18:11!14 +LUK 18:11!15 +LUK 18:11!16 +LUK 18:11!17 +LUK 18:11!18 +LUK 18:11!19 +LUK 18:11!20 +LUK 18:11!21 +LUK 18:11!22 +LUK 18:11!23 +LUK 18:11!25 +LUK 18:11!24 +LUK 18:11!26 +LUK 18:11!27 +LUK 18:11!28 +LUK 18:12!1 +LUK 18:12!2 +LUK 18:12!3 +LUK 18:12!4 +LUK 18:12!5 +LUK 18:12!6 +LUK 18:12!7 +LUK 18:12!8 +LUK 18:13!2 +LUK 18:13!1 +LUK 18:13!3 +LUK 18:13!4 +LUK 18:13!5 +LUK 18:13!6 +LUK 18:13!7 +LUK 18:13!8 +LUK 18:13!9 +LUK 18:13!10 +LUK 18:13!11 +LUK 18:13!12 +LUK 18:13!13 +LUK 18:13!14 +LUK 18:13!15 +LUK 18:13!16 +LUK 18:13!17 +LUK 18:13!18 +LUK 18:13!19 +LUK 18:13!20 +LUK 18:13!21 +LUK 18:13!22 +LUK 18:13!23 +LUK 18:13!24 +LUK 18:13!25 +LUK 18:13!26 +LUK 18:14!1 +LUK 18:14!2 +LUK 18:14!3 +LUK 18:14!4 +LUK 18:14!5 +LUK 18:14!6 +LUK 18:14!7 +LUK 18:14!8 +LUK 18:14!9 +LUK 18:14!10 +LUK 18:14!11 +LUK 18:14!12 +LUK 18:14!13 +LUK 18:14!14 +LUK 18:14!15 +LUK 18:14!16 +LUK 18:14!17 +LUK 18:14!19 +LUK 18:14!18 +LUK 18:14!20 +LUK 18:14!21 +LUK 18:14!22 +LUK 18:15!2 +LUK 18:15!1 +LUK 18:15!3 +LUK 18:15!4 +LUK 18:15!5 +LUK 18:15!6 +LUK 18:15!7 +LUK 18:15!8 +LUK 18:15!9 +LUK 18:15!11 +LUK 18:15!10 +LUK 18:15!12 +LUK 18:15!13 +LUK 18:15!14 +LUK 18:15!15 +LUK 18:16!2 +LUK 18:16!1 +LUK 18:16!3 +LUK 18:16!4 +LUK 18:16!5 +LUK 18:16!6 +LUK 18:16!7 +LUK 18:16!8 +LUK 18:16!9 +LUK 18:16!10 +LUK 18:16!11 +LUK 18:16!12 +LUK 18:16!13 +LUK 18:16!14 +LUK 18:16!15 +LUK 18:16!16 +LUK 18:16!18 +LUK 18:16!17 +LUK 18:16!19 +LUK 18:16!20 +LUK 18:16!21 +LUK 18:16!22 +LUK 18:16!23 +LUK 18:16!24 +LUK 18:17!1 +LUK 18:17!2 +LUK 18:17!3 +LUK 18:17!5 +LUK 18:17!4 +LUK 18:17!6 +LUK 18:17!7 +LUK 18:17!8 +LUK 18:17!9 +LUK 18:17!10 +LUK 18:17!11 +LUK 18:17!12 +LUK 18:17!13 +LUK 18:17!14 +LUK 18:17!15 +LUK 18:17!16 +LUK 18:17!17 +LUK 18:17!18 +LUK 18:18!1 +LUK 18:18!2 +LUK 18:18!3 +LUK 18:18!5 +LUK 18:18!4 +LUK 18:18!6 +LUK 18:18!7 +LUK 18:18!8 +LUK 18:18!9 +LUK 18:18!10 +LUK 18:18!11 +LUK 18:18!12 +LUK 18:18!13 +LUK 18:19!2 +LUK 18:19!1 +LUK 18:19!3 +LUK 18:19!4 +LUK 18:19!5 +LUK 18:19!6 +LUK 18:19!7 +LUK 18:19!8 +LUK 18:19!9 +LUK 18:19!10 +LUK 18:19!11 +LUK 18:19!12 +LUK 18:19!13 +LUK 18:19!14 +LUK 18:19!15 +LUK 18:19!16 +LUK 18:20!1 +LUK 18:20!2 +LUK 18:20!3 +LUK 18:20!4 +LUK 18:20!5 +LUK 18:20!6 +LUK 18:20!7 +LUK 18:20!8 +LUK 18:20!9 +LUK 18:20!10 +LUK 18:20!11 +LUK 18:20!12 +LUK 18:20!13 +LUK 18:20!14 +LUK 18:20!15 +LUK 18:20!16 +LUK 18:20!17 +LUK 18:20!18 +LUK 18:21!2 +LUK 18:21!1 +LUK 18:21!3 +LUK 18:21!4 +LUK 18:21!5 +LUK 18:21!6 +LUK 18:21!7 +LUK 18:21!8 +LUK 18:22!2 +LUK 18:22!1 +LUK 18:22!3 +LUK 18:22!4 +LUK 18:22!5 +LUK 18:22!6 +LUK 18:22!7 +LUK 18:22!8 +LUK 18:22!9 +LUK 18:22!10 +LUK 18:22!11 +LUK 18:22!12 +LUK 18:22!13 +LUK 18:22!14 +LUK 18:22!15 +LUK 18:22!16 +LUK 18:22!17 +LUK 18:22!18 +LUK 18:22!19 +LUK 18:22!20 +LUK 18:22!21 +LUK 18:22!22 +LUK 18:22!23 +LUK 18:22!24 +LUK 18:22!25 +LUK 18:22!26 +LUK 18:22!27 +LUK 18:23!2 +LUK 18:23!1 +LUK 18:23!3 +LUK 18:23!4 +LUK 18:23!5 +LUK 18:23!6 +LUK 18:23!8 +LUK 18:23!7 +LUK 18:23!9 +LUK 18:23!10 +LUK 18:24!2 +LUK 18:24!1 +LUK 18:24!3 +LUK 18:24!4 +LUK 18:24!5 +LUK 18:24!6 +LUK 18:24!7 +LUK 18:24!8 +LUK 18:24!9 +LUK 18:24!10 +LUK 18:24!11 +LUK 18:24!12 +LUK 18:24!13 +LUK 18:24!14 +LUK 18:24!15 +LUK 18:24!16 +LUK 18:24!17 +LUK 18:24!18 +LUK 18:25!2 +LUK 18:25!1 +LUK 18:25!3 +LUK 18:25!4 +LUK 18:25!5 +LUK 18:25!6 +LUK 18:25!7 +LUK 18:25!8 +LUK 18:25!9 +LUK 18:25!10 +LUK 18:25!11 +LUK 18:25!12 +LUK 18:25!13 +LUK 18:25!14 +LUK 18:25!15 +LUK 18:25!16 +LUK 18:26!2 +LUK 18:26!1 +LUK 18:26!3 +LUK 18:26!4 +LUK 18:26!5 +LUK 18:26!6 +LUK 18:26!7 +LUK 18:26!8 +LUK 18:27!2 +LUK 18:27!1 +LUK 18:27!3 +LUK 18:27!4 +LUK 18:27!5 +LUK 18:27!6 +LUK 18:27!7 +LUK 18:27!8 +LUK 18:27!9 +LUK 18:27!10 +LUK 18:27!11 +LUK 18:27!12 +LUK 18:28!2 +LUK 18:28!1 +LUK 18:28!3 +LUK 18:28!4 +LUK 18:28!5 +LUK 18:28!6 +LUK 18:28!7 +LUK 18:28!8 +LUK 18:28!9 +LUK 18:28!10 +LUK 18:28!11 +LUK 18:29!2 +LUK 18:29!1 +LUK 18:29!3 +LUK 18:29!4 +LUK 18:29!5 +LUK 18:29!6 +LUK 18:29!7 +LUK 18:29!8 +LUK 18:29!9 +LUK 18:29!10 +LUK 18:29!11 +LUK 18:29!12 +LUK 18:29!13 +LUK 18:29!14 +LUK 18:29!15 +LUK 18:29!16 +LUK 18:29!17 +LUK 18:29!18 +LUK 18:29!19 +LUK 18:29!20 +LUK 18:29!21 +LUK 18:29!22 +LUK 18:29!23 +LUK 18:29!24 +LUK 18:29!25 +LUK 18:29!26 +LUK 18:30!1 +LUK 18:30!2 +LUK 18:30!3 +LUK 18:30!4 +LUK 18:30!5 +LUK 18:30!6 +LUK 18:30!7 +LUK 18:30!8 +LUK 18:30!9 +LUK 18:30!10 +LUK 18:30!11 +LUK 18:30!12 +LUK 18:30!13 +LUK 18:30!14 +LUK 18:30!15 +LUK 18:30!16 +LUK 18:30!17 +LUK 18:31!2 +LUK 18:31!1 +LUK 18:31!3 +LUK 18:31!4 +LUK 18:31!5 +LUK 18:31!6 +LUK 18:31!7 +LUK 18:31!8 +LUK 18:31!9 +LUK 18:31!10 +LUK 18:31!11 +LUK 18:31!12 +LUK 18:31!13 +LUK 18:31!14 +LUK 18:31!15 +LUK 18:31!16 +LUK 18:31!17 +LUK 18:31!18 +LUK 18:31!19 +LUK 18:31!20 +LUK 18:31!21 +LUK 18:31!22 +LUK 18:31!23 +LUK 18:32!2 +LUK 18:32!1 +LUK 18:32!3 +LUK 18:32!4 +LUK 18:32!5 +LUK 18:32!6 +LUK 18:32!7 +LUK 18:32!8 +LUK 18:32!9 +LUK 18:32!10 +LUK 18:33!1 +LUK 18:33!2 +LUK 18:33!3 +LUK 18:33!4 +LUK 18:33!5 +LUK 18:33!6 +LUK 18:33!7 +LUK 18:33!8 +LUK 18:33!9 +LUK 18:33!10 +LUK 18:34!1 +LUK 18:34!2 +LUK 18:34!3 +LUK 18:34!4 +LUK 18:34!5 +LUK 18:34!6 +LUK 18:34!7 +LUK 18:34!8 +LUK 18:34!9 +LUK 18:34!10 +LUK 18:34!11 +LUK 18:34!12 +LUK 18:34!13 +LUK 18:34!14 +LUK 18:34!15 +LUK 18:34!16 +LUK 18:34!17 +LUK 18:34!18 +LUK 18:35!2 +LUK 18:35!1 +LUK 18:35!3 +LUK 18:35!4 +LUK 18:35!5 +LUK 18:35!6 +LUK 18:35!7 +LUK 18:35!8 +LUK 18:35!9 +LUK 18:35!10 +LUK 18:35!11 +LUK 18:35!12 +LUK 18:35!13 +LUK 18:35!14 +LUK 18:35!15 +LUK 18:36!2 +LUK 18:36!1 +LUK 18:36!3 +LUK 18:36!4 +LUK 18:36!5 +LUK 18:36!6 +LUK 18:36!7 +LUK 18:36!8 +LUK 18:37!2 +LUK 18:37!1 +LUK 18:37!3 +LUK 18:37!4 +LUK 18:37!5 +LUK 18:37!6 +LUK 18:37!7 +LUK 18:37!8 +LUK 18:38!1 +LUK 18:38!2 +LUK 18:38!3 +LUK 18:38!4 +LUK 18:38!5 +LUK 18:38!6 +LUK 18:38!7 +LUK 18:38!8 +LUK 18:39!1 +LUK 18:39!2 +LUK 18:39!3 +LUK 18:39!4 +LUK 18:39!5 +LUK 18:39!6 +LUK 18:39!7 +LUK 18:39!9 +LUK 18:39!8 +LUK 18:39!10 +LUK 18:39!11 +LUK 18:39!12 +LUK 18:39!13 +LUK 18:39!14 +LUK 18:39!15 +LUK 18:39!16 +LUK 18:40!2 +LUK 18:40!1 +LUK 18:40!3 +LUK 18:40!4 +LUK 18:40!5 +LUK 18:40!6 +LUK 18:40!7 +LUK 18:40!8 +LUK 18:40!9 +LUK 18:40!11 +LUK 18:40!10 +LUK 18:40!12 +LUK 18:40!13 +LUK 18:40!14 +LUK 18:41!1 +LUK 18:41!2 +LUK 18:41!4 +LUK 18:41!3 +LUK 18:41!6 +LUK 18:41!5 +LUK 18:41!7 +LUK 18:41!8 +LUK 18:41!9 +LUK 18:41!10 +LUK 18:42!1 +LUK 18:42!2 +LUK 18:42!3 +LUK 18:42!4 +LUK 18:42!5 +LUK 18:42!6 +LUK 18:42!7 +LUK 18:42!8 +LUK 18:42!9 +LUK 18:42!10 +LUK 18:42!11 +LUK 18:43!1 +LUK 18:43!2 +LUK 18:43!3 +LUK 18:43!4 +LUK 18:43!5 +LUK 18:43!6 +LUK 18:43!7 +LUK 18:43!8 +LUK 18:43!9 +LUK 18:43!10 +LUK 18:43!11 +LUK 18:43!12 +LUK 18:43!13 +LUK 18:43!14 +LUK 18:43!15 +LUK 18:43!16 +LUK 18:43!17 +LUK 18:43!18 +LUK 19:1!1 +LUK 19:1!2 +LUK 19:1!3 +LUK 19:1!4 +LUK 19:1!5 +LUK 19:2!1 +LUK 19:2!2 +LUK 19:2!3 +LUK 19:2!4 +LUK 19:2!5 +LUK 19:2!6 +LUK 19:2!7 +LUK 19:2!8 +LUK 19:2!9 +LUK 19:2!10 +LUK 19:2!11 +LUK 19:2!12 +LUK 19:2!13 +LUK 19:3!1 +LUK 19:3!2 +LUK 19:3!3 +LUK 19:3!4 +LUK 19:3!5 +LUK 19:3!6 +LUK 19:3!7 +LUK 19:3!8 +LUK 19:3!9 +LUK 19:3!10 +LUK 19:3!11 +LUK 19:3!12 +LUK 19:3!13 +LUK 19:3!14 +LUK 19:3!15 +LUK 19:3!16 +LUK 19:3!17 +LUK 19:3!18 +LUK 19:4!1 +LUK 19:4!2 +LUK 19:4!3 +LUK 19:4!4 +LUK 19:4!5 +LUK 19:4!6 +LUK 19:4!7 +LUK 19:4!8 +LUK 19:4!9 +LUK 19:4!10 +LUK 19:4!11 +LUK 19:4!12 +LUK 19:4!13 +LUK 19:4!15 +LUK 19:4!14 +LUK 19:5!1 +LUK 19:5!2 +LUK 19:5!3 +LUK 19:5!4 +LUK 19:5!5 +LUK 19:5!6 +LUK 19:5!7 +LUK 19:5!8 +LUK 19:5!9 +LUK 19:5!10 +LUK 19:5!11 +LUK 19:5!12 +LUK 19:5!13 +LUK 19:5!14 +LUK 19:5!15 +LUK 19:5!17 +LUK 19:5!16 +LUK 19:5!18 +LUK 19:5!19 +LUK 19:5!20 +LUK 19:5!21 +LUK 19:5!23 +LUK 19:5!24 +LUK 19:5!22 +LUK 19:6!1 +LUK 19:6!2 +LUK 19:6!3 +LUK 19:6!4 +LUK 19:6!5 +LUK 19:6!6 +LUK 19:6!7 +LUK 19:7!1 +LUK 19:7!2 +LUK 19:7!3 +LUK 19:7!4 +LUK 19:7!5 +LUK 19:7!6 +LUK 19:7!7 +LUK 19:7!8 +LUK 19:7!9 +LUK 19:7!10 +LUK 19:7!11 +LUK 19:8!2 +LUK 19:8!1 +LUK 19:8!3 +LUK 19:8!4 +LUK 19:8!5 +LUK 19:8!6 +LUK 19:8!7 +LUK 19:8!14 +LUK 19:8!8 +LUK 19:8!9 +LUK 19:8!10 +LUK 19:8!11 +LUK 19:8!12 +LUK 19:8!13 +LUK 19:8!15 +LUK 19:8!16 +LUK 19:8!17 +LUK 19:8!18 +LUK 19:8!19 +LUK 19:8!20 +LUK 19:8!21 +LUK 19:8!22 +LUK 19:8!23 +LUK 19:8!24 +LUK 19:9!2 +LUK 19:9!1 +LUK 19:9!3 +LUK 19:9!4 +LUK 19:9!5 +LUK 19:9!6 +LUK 19:9!7 +LUK 19:9!8 +LUK 19:9!9 +LUK 19:9!10 +LUK 19:9!11 +LUK 19:9!12 +LUK 19:9!13 +LUK 19:9!14 +LUK 19:9!15 +LUK 19:9!16 +LUK 19:9!17 +LUK 19:9!18 +LUK 19:9!19 +LUK 19:10!2 +LUK 19:10!1 +LUK 19:10!3 +LUK 19:10!4 +LUK 19:10!5 +LUK 19:10!6 +LUK 19:10!7 +LUK 19:10!8 +LUK 19:10!9 +LUK 19:10!10 +LUK 19:10!11 +LUK 19:11!2 +LUK 19:11!1 +LUK 19:11!3 +LUK 19:11!4 +LUK 19:11!5 +LUK 19:11!6 +LUK 19:11!7 +LUK 19:11!8 +LUK 19:11!9 +LUK 19:11!11 +LUK 19:11!10 +LUK 19:11!12 +LUK 19:11!13 +LUK 19:11!14 +LUK 19:11!15 +LUK 19:11!16 +LUK 19:11!17 +LUK 19:11!18 +LUK 19:11!19 +LUK 19:11!20 +LUK 19:11!21 +LUK 19:11!22 +LUK 19:11!23 +LUK 19:11!24 +LUK 19:12!2 +LUK 19:12!1 +LUK 19:12!3 +LUK 19:12!4 +LUK 19:12!5 +LUK 19:12!6 +LUK 19:12!7 +LUK 19:12!8 +LUK 19:12!9 +LUK 19:12!10 +LUK 19:12!11 +LUK 19:12!12 +LUK 19:12!13 +LUK 19:12!14 +LUK 19:13!2 +LUK 19:13!1 +LUK 19:13!3 +LUK 19:13!4 +LUK 19:13!5 +LUK 19:13!6 +LUK 19:13!7 +LUK 19:13!8 +LUK 19:13!9 +LUK 19:13!10 +LUK 19:13!11 +LUK 19:13!12 +LUK 19:13!13 +LUK 19:13!14 +LUK 19:13!15 +LUK 19:13!16 +LUK 19:13!17 +LUK 19:14!2 +LUK 19:14!1 +LUK 19:14!3 +LUK 19:14!4 +LUK 19:14!5 +LUK 19:14!6 +LUK 19:14!7 +LUK 19:14!8 +LUK 19:14!9 +LUK 19:14!10 +LUK 19:14!11 +LUK 19:14!12 +LUK 19:14!13 +LUK 19:14!14 +LUK 19:14!15 +LUK 19:14!16 +LUK 19:14!17 +LUK 19:14!18 +LUK 19:15!1 +LUK 19:15!2 +LUK 19:15!3 +LUK 19:15!4 +LUK 19:15!5 +LUK 19:15!6 +LUK 19:15!7 +LUK 19:15!8 +LUK 19:15!9 +LUK 19:15!10 +LUK 19:15!11 +LUK 19:15!12 +LUK 19:15!13 +LUK 19:15!14 +LUK 19:15!15 +LUK 19:15!16 +LUK 19:15!17 +LUK 19:15!18 +LUK 19:15!19 +LUK 19:15!20 +LUK 19:15!21 +LUK 19:15!22 +LUK 19:15!23 +LUK 19:15!24 +LUK 19:15!25 +LUK 19:16!2 +LUK 19:16!1 +LUK 19:16!3 +LUK 19:16!4 +LUK 19:16!5 +LUK 19:16!6 +LUK 19:16!7 +LUK 19:16!8 +LUK 19:16!9 +LUK 19:16!10 +LUK 19:16!12 +LUK 19:16!11 +LUK 19:17!1 +LUK 19:17!2 +LUK 19:17!3 +LUK 19:17!4 +LUK 19:17!5 +LUK 19:17!6 +LUK 19:17!7 +LUK 19:17!8 +LUK 19:17!9 +LUK 19:17!10 +LUK 19:17!11 +LUK 19:17!12 +LUK 19:17!13 +LUK 19:17!14 +LUK 19:17!15 +LUK 19:17!16 +LUK 19:17!17 +LUK 19:18!1 +LUK 19:18!2 +LUK 19:18!3 +LUK 19:18!4 +LUK 19:18!5 +LUK 19:18!9 +LUK 19:18!6 +LUK 19:18!7 +LUK 19:18!8 +LUK 19:18!10 +LUK 19:18!11 +LUK 19:18!12 +LUK 19:19!2 +LUK 19:19!1 +LUK 19:19!3 +LUK 19:19!4 +LUK 19:19!5 +LUK 19:19!6 +LUK 19:19!7 +LUK 19:19!9 +LUK 19:19!10 +LUK 19:19!8 +LUK 19:20!1 +LUK 19:20!2 +LUK 19:20!3 +LUK 19:20!4 +LUK 19:20!5 +LUK 19:20!6 +LUK 19:20!7 +LUK 19:20!8 +LUK 19:20!9 +LUK 19:20!10 +LUK 19:20!11 +LUK 19:20!12 +LUK 19:20!13 +LUK 19:20!14 +LUK 19:20!15 +LUK 19:21!2 +LUK 19:21!1 +LUK 19:21!3 +LUK 19:21!4 +LUK 19:21!5 +LUK 19:21!6 +LUK 19:21!7 +LUK 19:21!8 +LUK 19:21!9 +LUK 19:21!10 +LUK 19:21!11 +LUK 19:21!12 +LUK 19:21!13 +LUK 19:21!14 +LUK 19:21!15 +LUK 19:21!16 +LUK 19:22!1 +LUK 19:22!2 +LUK 19:22!3 +LUK 19:22!4 +LUK 19:22!5 +LUK 19:22!6 +LUK 19:22!7 +LUK 19:22!8 +LUK 19:22!9 +LUK 19:22!10 +LUK 19:22!11 +LUK 19:22!12 +LUK 19:22!13 +LUK 19:22!16 +LUK 19:22!14 +LUK 19:22!15 +LUK 19:22!17 +LUK 19:22!18 +LUK 19:22!19 +LUK 19:22!20 +LUK 19:22!21 +LUK 19:22!22 +LUK 19:22!23 +LUK 19:22!24 +LUK 19:22!25 +LUK 19:23!1 +LUK 19:23!2 +LUK 19:23!3 +LUK 19:23!4 +LUK 19:23!5 +LUK 19:23!6 +LUK 19:23!7 +LUK 19:23!8 +LUK 19:23!9 +LUK 19:23!10 +LUK 19:23!15 +LUK 19:23!11 +LUK 19:23!12 +LUK 19:23!13 +LUK 19:23!14 +LUK 19:23!16 +LUK 19:23!17 +LUK 19:24!1 +LUK 19:24!2 +LUK 19:24!3 +LUK 19:24!4 +LUK 19:24!5 +LUK 19:24!6 +LUK 19:24!7 +LUK 19:24!8 +LUK 19:24!9 +LUK 19:24!10 +LUK 19:24!11 +LUK 19:24!12 +LUK 19:24!13 +LUK 19:24!14 +LUK 19:24!15 +LUK 19:24!16 +LUK 19:25!1 +LUK 19:25!2 +LUK 19:25!3 +LUK 19:25!4 +LUK 19:25!5 +LUK 19:25!6 +LUK 19:25!7 +LUK 19:26!1 +LUK 19:26!2 +LUK 19:26!3 +LUK 19:26!4 +LUK 19:26!5 +LUK 19:26!6 +LUK 19:26!7 +LUK 19:26!9 +LUK 19:26!8 +LUK 19:26!10 +LUK 19:26!11 +LUK 19:26!12 +LUK 19:26!13 +LUK 19:26!14 +LUK 19:26!15 +LUK 19:26!16 +LUK 19:27!1 +LUK 19:27!2 +LUK 19:27!3 +LUK 19:27!4 +LUK 19:27!5 +LUK 19:27!6 +LUK 19:27!7 +LUK 19:27!8 +LUK 19:27!9 +LUK 19:27!10 +LUK 19:27!11 +LUK 19:27!12 +LUK 19:27!13 +LUK 19:27!14 +LUK 19:27!15 +LUK 19:27!16 +LUK 19:27!17 +LUK 19:27!18 +LUK 19:27!19 +LUK 19:28!1 +LUK 19:28!2 +LUK 19:28!3 +LUK 19:28!4 +LUK 19:28!5 +LUK 19:28!6 +LUK 19:28!7 +LUK 19:28!8 +LUK 19:29!1 +LUK 19:29!2 +LUK 19:29!3 +LUK 19:29!4 +LUK 19:29!5 +LUK 19:29!6 +LUK 19:29!7 +LUK 19:29!8 +LUK 19:29!9 +LUK 19:29!10 +LUK 19:29!11 +LUK 19:29!12 +LUK 19:29!13 +LUK 19:29!14 +LUK 19:29!15 +LUK 19:29!16 +LUK 19:29!17 +LUK 19:29!18 +LUK 19:30!1 +LUK 19:30!2 +LUK 19:30!3 +LUK 19:30!4 +LUK 19:30!5 +LUK 19:30!6 +LUK 19:30!7 +LUK 19:30!8 +LUK 19:30!9 +LUK 19:30!10 +LUK 19:30!12 +LUK 19:30!11 +LUK 19:30!13 +LUK 19:30!14 +LUK 19:30!15 +LUK 19:30!17 +LUK 19:30!16 +LUK 19:30!18 +LUK 19:30!19 +LUK 19:30!20 +LUK 19:30!21 +LUK 19:30!22 +LUK 19:31!1 +LUK 19:31!2 +LUK 19:31!3 +LUK 19:31!4 +LUK 19:31!5 +LUK 19:31!6 +LUK 19:31!7 +LUK 19:31!8 +LUK 19:31!9 +LUK 19:31!10 +LUK 19:31!11 +LUK 19:31!12 +LUK 19:31!13 +LUK 19:31!14 +LUK 19:31!15 +LUK 19:31!16 +LUK 19:32!2 +LUK 19:32!1 +LUK 19:32!3 +LUK 19:32!4 +LUK 19:32!5 +LUK 19:32!6 +LUK 19:32!7 +LUK 19:32!8 +LUK 19:33!2 +LUK 19:33!1 +LUK 19:33!3 +LUK 19:33!4 +LUK 19:33!5 +LUK 19:33!6 +LUK 19:33!7 +LUK 19:33!8 +LUK 19:33!9 +LUK 19:33!10 +LUK 19:33!11 +LUK 19:33!12 +LUK 19:33!13 +LUK 19:33!14 +LUK 19:33!15 +LUK 19:34!2 +LUK 19:34!1 +LUK 19:34!3 +LUK 19:34!4 +LUK 19:34!5 +LUK 19:34!6 +LUK 19:34!7 +LUK 19:34!8 +LUK 19:34!9 +LUK 19:35!1 +LUK 19:35!2 +LUK 19:35!3 +LUK 19:35!4 +LUK 19:35!5 +LUK 19:35!6 +LUK 19:35!7 +LUK 19:35!8 +LUK 19:35!9 +LUK 19:35!10 +LUK 19:35!11 +LUK 19:35!12 +LUK 19:35!13 +LUK 19:35!14 +LUK 19:35!15 +LUK 19:35!16 +LUK 19:35!17 +LUK 19:36!2 +LUK 19:36!1 +LUK 19:36!3 +LUK 19:36!4 +LUK 19:36!5 +LUK 19:36!6 +LUK 19:36!7 +LUK 19:36!8 +LUK 19:36!9 +LUK 19:36!10 +LUK 19:37!2 +LUK 19:37!1 +LUK 19:37!3 +LUK 19:37!4 +LUK 19:37!5 +LUK 19:37!6 +LUK 19:37!7 +LUK 19:37!8 +LUK 19:37!9 +LUK 19:37!10 +LUK 19:37!11 +LUK 19:37!12 +LUK 19:37!13 +LUK 19:37!14 +LUK 19:37!15 +LUK 19:37!16 +LUK 19:37!17 +LUK 19:37!18 +LUK 19:37!19 +LUK 19:37!20 +LUK 19:37!21 +LUK 19:37!22 +LUK 19:37!23 +LUK 19:37!24 +LUK 19:37!25 +LUK 19:37!26 +LUK 19:37!27 +LUK 19:37!28 +LUK 19:38!1 +LUK 19:38!2 +LUK 19:38!3 +LUK 19:38!4 +LUK 19:38!7 +LUK 19:38!8 +LUK 19:38!9 +LUK 19:38!5 +LUK 19:38!6 +LUK 19:38!10 +LUK 19:38!11 +LUK 19:38!12 +LUK 19:38!13 +LUK 19:38!14 +LUK 19:38!15 +LUK 19:38!16 +LUK 19:39!1 +LUK 19:39!2 +LUK 19:39!3 +LUK 19:39!4 +LUK 19:39!5 +LUK 19:39!6 +LUK 19:39!7 +LUK 19:39!8 +LUK 19:39!9 +LUK 19:39!10 +LUK 19:39!11 +LUK 19:39!12 +LUK 19:39!13 +LUK 19:39!14 +LUK 19:39!15 +LUK 19:40!1 +LUK 19:40!2 +LUK 19:40!3 +LUK 19:40!4 +LUK 19:40!5 +LUK 19:40!6 +LUK 19:40!7 +LUK 19:40!8 +LUK 19:40!9 +LUK 19:40!10 +LUK 19:40!11 +LUK 19:41!1 +LUK 19:41!2 +LUK 19:41!3 +LUK 19:41!4 +LUK 19:41!5 +LUK 19:41!6 +LUK 19:41!7 +LUK 19:41!8 +LUK 19:41!9 +LUK 19:42!1 +LUK 19:42!2 +LUK 19:42!3 +LUK 19:42!4 +LUK 19:42!5 +LUK 19:42!6 +LUK 19:42!7 +LUK 19:42!8 +LUK 19:42!9 +LUK 19:42!10 +LUK 19:42!11 +LUK 19:42!12 +LUK 19:42!13 +LUK 19:42!15 +LUK 19:42!14 +LUK 19:42!16 +LUK 19:42!17 +LUK 19:42!18 +LUK 19:42!19 +LUK 19:43!1 +LUK 19:43!2 +LUK 19:43!3 +LUK 19:43!4 +LUK 19:43!5 +LUK 19:43!6 +LUK 19:43!7 +LUK 19:43!8 +LUK 19:43!9 +LUK 19:43!10 +LUK 19:43!11 +LUK 19:43!12 +LUK 19:43!13 +LUK 19:43!14 +LUK 19:43!15 +LUK 19:43!16 +LUK 19:43!17 +LUK 19:43!18 +LUK 19:43!19 +LUK 19:44!1 +LUK 19:44!2 +LUK 19:44!3 +LUK 19:44!4 +LUK 19:44!5 +LUK 19:44!6 +LUK 19:44!7 +LUK 19:44!8 +LUK 19:44!9 +LUK 19:44!10 +LUK 19:44!11 +LUK 19:44!12 +LUK 19:44!13 +LUK 19:44!14 +LUK 19:44!15 +LUK 19:44!16 +LUK 19:44!17 +LUK 19:44!18 +LUK 19:44!19 +LUK 19:44!20 +LUK 19:44!21 +LUK 19:44!22 +LUK 19:44!23 +LUK 19:44!24 +LUK 19:44!25 +LUK 19:44!26 +LUK 19:45!1 +LUK 19:45!2 +LUK 19:45!3 +LUK 19:45!4 +LUK 19:45!5 +LUK 19:45!6 +LUK 19:45!7 +LUK 19:45!8 +LUK 19:45!9 +LUK 19:46!1 +LUK 19:46!2 +LUK 19:46!3 +LUK 19:46!4 +LUK 19:46!5 +LUK 19:46!6 +LUK 19:46!7 +LUK 19:46!8 +LUK 19:46!9 +LUK 19:46!10 +LUK 19:46!12 +LUK 19:46!11 +LUK 19:46!13 +LUK 19:46!14 +LUK 19:46!15 +LUK 19:46!16 +LUK 19:47!1 +LUK 19:47!2 +LUK 19:47!3 +LUK 19:47!4 +LUK 19:47!5 +LUK 19:47!6 +LUK 19:47!7 +LUK 19:47!8 +LUK 19:47!9 +LUK 19:47!11 +LUK 19:47!10 +LUK 19:47!12 +LUK 19:47!13 +LUK 19:47!14 +LUK 19:47!15 +LUK 19:47!16 +LUK 19:47!17 +LUK 19:47!18 +LUK 19:47!19 +LUK 19:47!20 +LUK 19:47!21 +LUK 19:47!22 +LUK 19:47!23 +LUK 19:48!1 +LUK 19:48!2 +LUK 19:48!3 +LUK 19:48!4 +LUK 19:48!5 +LUK 19:48!6 +LUK 19:48!9 +LUK 19:48!7 +LUK 19:48!8 +LUK 19:48!10 +LUK 19:48!11 +LUK 19:48!12 +LUK 19:48!13 +LUK 20:1!1 +LUK 20:1!2 +LUK 20:1!3 +LUK 20:1!4 +LUK 20:1!5 +LUK 20:1!6 +LUK 20:1!7 +LUK 20:1!8 +LUK 20:1!9 +LUK 20:1!10 +LUK 20:1!11 +LUK 20:1!12 +LUK 20:1!13 +LUK 20:1!14 +LUK 20:1!15 +LUK 20:1!16 +LUK 20:1!17 +LUK 20:1!18 +LUK 20:1!19 +LUK 20:1!20 +LUK 20:1!21 +LUK 20:1!22 +LUK 20:1!23 +LUK 20:1!24 +LUK 20:2!1 +LUK 20:2!2 +LUK 20:2!3 +LUK 20:2!4 +LUK 20:2!5 +LUK 20:2!6 +LUK 20:2!7 +LUK 20:2!8 +LUK 20:2!9 +LUK 20:2!10 +LUK 20:2!11 +LUK 20:2!12 +LUK 20:2!13 +LUK 20:2!14 +LUK 20:2!15 +LUK 20:2!16 +LUK 20:2!17 +LUK 20:2!18 +LUK 20:2!19 +LUK 20:2!20 +LUK 20:2!21 +LUK 20:3!2 +LUK 20:3!1 +LUK 20:3!3 +LUK 20:3!4 +LUK 20:3!5 +LUK 20:3!6 +LUK 20:3!7 +LUK 20:3!8 +LUK 20:3!9 +LUK 20:3!10 +LUK 20:3!11 +LUK 20:3!12 +LUK 20:4!1 +LUK 20:4!2 +LUK 20:4!3 +LUK 20:4!4 +LUK 20:4!5 +LUK 20:4!6 +LUK 20:4!7 +LUK 20:4!8 +LUK 20:4!9 +LUK 20:5!2 +LUK 20:5!1 +LUK 20:5!3 +LUK 20:5!4 +LUK 20:5!5 +LUK 20:5!6 +LUK 20:5!7 +LUK 20:5!8 +LUK 20:5!9 +LUK 20:5!10 +LUK 20:5!11 +LUK 20:5!12 +LUK 20:5!13 +LUK 20:5!14 +LUK 20:5!15 +LUK 20:5!16 +LUK 20:5!17 +LUK 20:6!2 +LUK 20:6!1 +LUK 20:6!3 +LUK 20:6!4 +LUK 20:6!5 +LUK 20:6!6 +LUK 20:6!7 +LUK 20:6!8 +LUK 20:6!9 +LUK 20:6!10 +LUK 20:6!12 +LUK 20:6!11 +LUK 20:6!13 +LUK 20:6!14 +LUK 20:6!15 +LUK 20:6!16 +LUK 20:7!1 +LUK 20:7!2 +LUK 20:7!3 +LUK 20:7!4 +LUK 20:7!5 +LUK 20:8!1 +LUK 20:8!2 +LUK 20:8!3 +LUK 20:8!4 +LUK 20:8!5 +LUK 20:8!6 +LUK 20:8!7 +LUK 20:8!8 +LUK 20:8!9 +LUK 20:8!10 +LUK 20:8!11 +LUK 20:8!12 +LUK 20:8!13 +LUK 20:8!14 +LUK 20:9!2 +LUK 20:9!1 +LUK 20:9!3 +LUK 20:9!4 +LUK 20:9!5 +LUK 20:9!6 +LUK 20:9!7 +LUK 20:9!8 +LUK 20:9!9 +LUK 20:9!10 +LUK 20:9!11 +LUK 20:9!12 +LUK 20:9!13 +LUK 20:9!14 +LUK 20:9!15 +LUK 20:9!16 +LUK 20:9!17 +LUK 20:9!18 +LUK 20:9!19 +LUK 20:9!20 +LUK 20:10!1 +LUK 20:10!2 +LUK 20:10!3 +LUK 20:10!4 +LUK 20:10!5 +LUK 20:10!6 +LUK 20:10!7 +LUK 20:10!8 +LUK 20:10!9 +LUK 20:10!10 +LUK 20:10!11 +LUK 20:10!12 +LUK 20:10!13 +LUK 20:10!14 +LUK 20:10!15 +LUK 20:10!17 +LUK 20:10!16 +LUK 20:10!18 +LUK 20:10!19 +LUK 20:10!20 +LUK 20:10!21 +LUK 20:10!22 +LUK 20:11!1 +LUK 20:11!2 +LUK 20:11!3 +LUK 20:11!5 +LUK 20:11!4 +LUK 20:11!7 +LUK 20:11!6 +LUK 20:11!8 +LUK 20:11!9 +LUK 20:11!10 +LUK 20:11!11 +LUK 20:11!12 +LUK 20:11!13 +LUK 20:12!1 +LUK 20:12!2 +LUK 20:12!3 +LUK 20:12!4 +LUK 20:12!6 +LUK 20:12!5 +LUK 20:12!7 +LUK 20:12!8 +LUK 20:12!9 +LUK 20:12!10 +LUK 20:13!2 +LUK 20:13!1 +LUK 20:13!3 +LUK 20:13!4 +LUK 20:13!5 +LUK 20:13!6 +LUK 20:13!7 +LUK 20:13!8 +LUK 20:13!9 +LUK 20:13!10 +LUK 20:13!11 +LUK 20:13!12 +LUK 20:13!13 +LUK 20:13!14 +LUK 20:13!15 +LUK 20:13!16 +LUK 20:13!17 +LUK 20:14!2 +LUK 20:14!1 +LUK 20:14!3 +LUK 20:14!4 +LUK 20:14!5 +LUK 20:14!6 +LUK 20:14!7 +LUK 20:14!8 +LUK 20:14!9 +LUK 20:14!10 +LUK 20:14!11 +LUK 20:14!12 +LUK 20:14!13 +LUK 20:14!14 +LUK 20:14!15 +LUK 20:14!16 +LUK 20:14!17 +LUK 20:14!18 +LUK 20:14!19 +LUK 20:14!20 +LUK 20:15!1 +LUK 20:15!2 +LUK 20:15!3 +LUK 20:15!4 +LUK 20:15!5 +LUK 20:15!6 +LUK 20:15!7 +LUK 20:15!9 +LUK 20:15!8 +LUK 20:15!10 +LUK 20:15!11 +LUK 20:15!12 +LUK 20:15!13 +LUK 20:15!14 +LUK 20:15!15 +LUK 20:16!1 +LUK 20:16!2 +LUK 20:16!3 +LUK 20:16!4 +LUK 20:16!5 +LUK 20:16!6 +LUK 20:16!7 +LUK 20:16!8 +LUK 20:16!9 +LUK 20:16!10 +LUK 20:16!11 +LUK 20:16!13 +LUK 20:16!12 +LUK 20:16!14 +LUK 20:16!15 +LUK 20:16!16 +LUK 20:17!2 +LUK 20:17!1 +LUK 20:17!3 +LUK 20:17!4 +LUK 20:17!5 +LUK 20:17!7 +LUK 20:17!6 +LUK 20:17!8 +LUK 20:17!9 +LUK 20:17!10 +LUK 20:17!11 +LUK 20:17!12 +LUK 20:17!13 +LUK 20:17!14 +LUK 20:17!15 +LUK 20:17!16 +LUK 20:17!17 +LUK 20:17!18 +LUK 20:17!19 +LUK 20:17!20 +LUK 20:17!21 +LUK 20:18!1 +LUK 20:18!2 +LUK 20:18!3 +LUK 20:18!4 +LUK 20:18!5 +LUK 20:18!6 +LUK 20:18!7 +LUK 20:18!8 +LUK 20:18!11 +LUK 20:18!12 +LUK 20:18!9 +LUK 20:18!10 +LUK 20:18!13 +LUK 20:18!14 +LUK 20:18!15 +LUK 20:19!1 +LUK 20:19!2 +LUK 20:19!3 +LUK 20:19!4 +LUK 20:19!5 +LUK 20:19!6 +LUK 20:19!7 +LUK 20:19!8 +LUK 20:19!9 +LUK 20:19!10 +LUK 20:19!11 +LUK 20:19!12 +LUK 20:19!13 +LUK 20:19!14 +LUK 20:19!15 +LUK 20:19!16 +LUK 20:19!17 +LUK 20:19!18 +LUK 20:19!19 +LUK 20:19!20 +LUK 20:19!22 +LUK 20:19!21 +LUK 20:19!23 +LUK 20:19!24 +LUK 20:19!25 +LUK 20:19!26 +LUK 20:19!27 +LUK 20:19!28 +LUK 20:19!29 +LUK 20:20!1 +LUK 20:20!2 +LUK 20:20!3 +LUK 20:20!4 +LUK 20:20!5 +LUK 20:20!6 +LUK 20:20!7 +LUK 20:20!8 +LUK 20:20!9 +LUK 20:20!10 +LUK 20:20!11 +LUK 20:20!12 +LUK 20:20!13 +LUK 20:20!14 +LUK 20:20!15 +LUK 20:20!16 +LUK 20:20!17 +LUK 20:20!18 +LUK 20:20!19 +LUK 20:20!20 +LUK 20:20!21 +LUK 20:20!22 +LUK 20:21!1 +LUK 20:21!2 +LUK 20:21!3 +LUK 20:21!4 +LUK 20:21!5 +LUK 20:21!6 +LUK 20:21!7 +LUK 20:21!8 +LUK 20:21!9 +LUK 20:21!10 +LUK 20:21!11 +LUK 20:21!12 +LUK 20:21!13 +LUK 20:21!14 +LUK 20:21!15 +LUK 20:21!16 +LUK 20:21!17 +LUK 20:21!18 +LUK 20:21!19 +LUK 20:21!20 +LUK 20:21!21 +LUK 20:21!22 +LUK 20:21!23 +LUK 20:22!1 +LUK 20:22!2 +LUK 20:22!3 +LUK 20:22!4 +LUK 20:22!5 +LUK 20:22!6 +LUK 20:22!7 +LUK 20:23!2 +LUK 20:23!1 +LUK 20:23!3 +LUK 20:23!4 +LUK 20:23!5 +LUK 20:23!6 +LUK 20:23!7 +LUK 20:23!8 +LUK 20:24!1 +LUK 20:24!2 +LUK 20:24!3 +LUK 20:24!5 +LUK 20:24!4 +LUK 20:24!6 +LUK 20:24!7 +LUK 20:24!8 +LUK 20:24!10 +LUK 20:24!9 +LUK 20:24!11 +LUK 20:24!12 +LUK 20:25!2 +LUK 20:25!1 +LUK 20:25!3 +LUK 20:25!4 +LUK 20:25!5 +LUK 20:25!6 +LUK 20:25!7 +LUK 20:25!8 +LUK 20:25!9 +LUK 20:25!10 +LUK 20:25!11 +LUK 20:25!12 +LUK 20:25!13 +LUK 20:25!14 +LUK 20:25!15 +LUK 20:25!16 +LUK 20:26!1 +LUK 20:26!2 +LUK 20:26!3 +LUK 20:26!4 +LUK 20:26!5 +LUK 20:26!6 +LUK 20:26!7 +LUK 20:26!8 +LUK 20:26!9 +LUK 20:26!10 +LUK 20:26!11 +LUK 20:26!12 +LUK 20:26!13 +LUK 20:26!14 +LUK 20:26!15 +LUK 20:26!16 +LUK 20:27!2 +LUK 20:27!1 +LUK 20:27!3 +LUK 20:27!4 +LUK 20:27!5 +LUK 20:27!6 +LUK 20:27!7 +LUK 20:27!8 +LUK 20:27!9 +LUK 20:27!10 +LUK 20:27!11 +LUK 20:27!12 +LUK 20:28!1 +LUK 20:28!2 +LUK 20:28!3 +LUK 20:28!4 +LUK 20:28!5 +LUK 20:28!6 +LUK 20:28!7 +LUK 20:28!8 +LUK 20:28!9 +LUK 20:28!10 +LUK 20:28!11 +LUK 20:28!12 +LUK 20:28!13 +LUK 20:28!14 +LUK 20:28!15 +LUK 20:28!16 +LUK 20:28!17 +LUK 20:28!18 +LUK 20:28!19 +LUK 20:28!20 +LUK 20:28!21 +LUK 20:28!22 +LUK 20:28!23 +LUK 20:28!24 +LUK 20:28!25 +LUK 20:28!26 +LUK 20:28!27 +LUK 20:28!28 +LUK 20:29!2 +LUK 20:29!1 +LUK 20:29!3 +LUK 20:29!4 +LUK 20:29!5 +LUK 20:29!6 +LUK 20:29!7 +LUK 20:29!8 +LUK 20:29!9 +LUK 20:29!10 +LUK 20:29!11 +LUK 20:30!1 +LUK 20:30!2 +LUK 20:30!3 +LUK 20:31!1 +LUK 20:31!2 +LUK 20:31!3 +LUK 20:31!4 +LUK 20:31!5 +LUK 20:31!7 +LUK 20:31!6 +LUK 20:31!8 +LUK 20:31!9 +LUK 20:31!10 +LUK 20:31!11 +LUK 20:31!12 +LUK 20:31!13 +LUK 20:31!14 +LUK 20:31!15 +LUK 20:32!1 +LUK 20:32!2 +LUK 20:32!3 +LUK 20:32!4 +LUK 20:32!5 +LUK 20:33!3 +LUK 20:33!1 +LUK 20:33!2 +LUK 20:33!4 +LUK 20:33!5 +LUK 20:33!6 +LUK 20:33!7 +LUK 20:33!8 +LUK 20:33!10 +LUK 20:33!9 +LUK 20:33!12 +LUK 20:33!11 +LUK 20:33!13 +LUK 20:33!14 +LUK 20:33!15 +LUK 20:33!16 +LUK 20:34!1 +LUK 20:34!2 +LUK 20:34!3 +LUK 20:34!4 +LUK 20:34!5 +LUK 20:34!6 +LUK 20:34!7 +LUK 20:34!8 +LUK 20:34!9 +LUK 20:34!10 +LUK 20:34!11 +LUK 20:34!12 +LUK 20:34!13 +LUK 20:35!2 +LUK 20:35!1 +LUK 20:35!3 +LUK 20:35!4 +LUK 20:35!5 +LUK 20:35!6 +LUK 20:35!7 +LUK 20:35!8 +LUK 20:35!9 +LUK 20:35!10 +LUK 20:35!11 +LUK 20:35!12 +LUK 20:35!13 +LUK 20:35!14 +LUK 20:35!15 +LUK 20:35!16 +LUK 20:35!17 +LUK 20:36!2 +LUK 20:36!1 +LUK 20:36!3 +LUK 20:36!4 +LUK 20:36!5 +LUK 20:36!7 +LUK 20:36!6 +LUK 20:36!8 +LUK 20:36!9 +LUK 20:36!10 +LUK 20:36!12 +LUK 20:36!11 +LUK 20:36!13 +LUK 20:36!14 +LUK 20:36!15 +LUK 20:36!16 +LUK 20:37!2 +LUK 20:37!1 +LUK 20:37!3 +LUK 20:37!4 +LUK 20:37!5 +LUK 20:37!6 +LUK 20:37!7 +LUK 20:37!8 +LUK 20:37!9 +LUK 20:37!10 +LUK 20:37!11 +LUK 20:37!12 +LUK 20:37!13 +LUK 20:37!14 +LUK 20:37!15 +LUK 20:37!16 +LUK 20:37!17 +LUK 20:37!18 +LUK 20:37!19 +LUK 20:37!20 +LUK 20:37!21 +LUK 20:37!22 +LUK 20:37!23 +LUK 20:38!2 +LUK 20:38!1 +LUK 20:38!3 +LUK 20:38!4 +LUK 20:38!5 +LUK 20:38!6 +LUK 20:38!7 +LUK 20:38!9 +LUK 20:38!8 +LUK 20:38!10 +LUK 20:38!11 +LUK 20:39!2 +LUK 20:39!1 +LUK 20:39!3 +LUK 20:39!4 +LUK 20:39!5 +LUK 20:39!6 +LUK 20:39!7 +LUK 20:39!8 +LUK 20:39!9 +LUK 20:40!2 +LUK 20:40!1 +LUK 20:40!3 +LUK 20:40!4 +LUK 20:40!5 +LUK 20:40!6 +LUK 20:41!2 +LUK 20:41!1 +LUK 20:41!3 +LUK 20:41!4 +LUK 20:41!5 +LUK 20:41!6 +LUK 20:41!7 +LUK 20:41!8 +LUK 20:41!9 +LUK 20:41!10 +LUK 20:41!11 +LUK 20:42!2 +LUK 20:42!1 +LUK 20:42!3 +LUK 20:42!4 +LUK 20:42!5 +LUK 20:42!6 +LUK 20:42!7 +LUK 20:42!8 +LUK 20:42!9 +LUK 20:42!10 +LUK 20:42!11 +LUK 20:42!12 +LUK 20:42!13 +LUK 20:42!14 +LUK 20:42!15 +LUK 20:42!16 +LUK 20:43!1 +LUK 20:43!2 +LUK 20:43!3 +LUK 20:43!4 +LUK 20:43!5 +LUK 20:43!6 +LUK 20:43!7 +LUK 20:43!8 +LUK 20:43!9 +LUK 20:43!10 +LUK 20:44!2 +LUK 20:44!1 +LUK 20:44!3 +LUK 20:44!4 +LUK 20:44!5 +LUK 20:44!6 +LUK 20:44!7 +LUK 20:44!8 +LUK 20:44!9 +LUK 20:44!10 +LUK 20:45!2 +LUK 20:45!1 +LUK 20:45!3 +LUK 20:45!4 +LUK 20:45!5 +LUK 20:45!6 +LUK 20:45!7 +LUK 20:45!8 +LUK 20:46!1 +LUK 20:46!2 +LUK 20:46!3 +LUK 20:46!4 +LUK 20:46!5 +LUK 20:46!6 +LUK 20:46!7 +LUK 20:46!8 +LUK 20:46!9 +LUK 20:46!10 +LUK 20:46!11 +LUK 20:46!12 +LUK 20:46!13 +LUK 20:46!14 +LUK 20:46!15 +LUK 20:46!16 +LUK 20:46!17 +LUK 20:46!18 +LUK 20:46!19 +LUK 20:46!20 +LUK 20:46!21 +LUK 20:46!22 +LUK 20:46!23 +LUK 20:46!24 +LUK 20:46!25 +LUK 20:47!1 +LUK 20:47!2 +LUK 20:47!3 +LUK 20:47!4 +LUK 20:47!5 +LUK 20:47!6 +LUK 20:47!7 +LUK 20:47!8 +LUK 20:47!9 +LUK 20:47!10 +LUK 20:47!11 +LUK 20:47!12 +LUK 20:47!13 +LUK 20:47!14 +LUK 21:1!2 +LUK 21:1!1 +LUK 21:1!3 +LUK 21:1!4 +LUK 21:1!5 +LUK 21:1!6 +LUK 21:1!7 +LUK 21:1!8 +LUK 21:1!9 +LUK 21:1!10 +LUK 21:1!11 +LUK 21:1!12 +LUK 21:2!2 +LUK 21:2!1 +LUK 21:2!3 +LUK 21:2!4 +LUK 21:2!5 +LUK 21:2!6 +LUK 21:2!7 +LUK 21:2!8 +LUK 21:2!9 +LUK 21:3!1 +LUK 21:3!2 +LUK 21:3!3 +LUK 21:3!4 +LUK 21:3!5 +LUK 21:3!6 +LUK 21:3!7 +LUK 21:3!8 +LUK 21:3!9 +LUK 21:3!10 +LUK 21:3!11 +LUK 21:3!12 +LUK 21:3!13 +LUK 21:3!14 +LUK 21:4!2 +LUK 21:4!1 +LUK 21:4!3 +LUK 21:4!4 +LUK 21:4!5 +LUK 21:4!6 +LUK 21:4!7 +LUK 21:4!8 +LUK 21:4!9 +LUK 21:4!10 +LUK 21:4!11 +LUK 21:4!13 +LUK 21:4!12 +LUK 21:4!14 +LUK 21:4!15 +LUK 21:4!16 +LUK 21:4!17 +LUK 21:4!18 +LUK 21:4!19 +LUK 21:4!20 +LUK 21:4!21 +LUK 21:4!22 +LUK 21:4!23 +LUK 21:5!1 +LUK 21:5!2 +LUK 21:5!3 +LUK 21:5!4 +LUK 21:5!5 +LUK 21:5!6 +LUK 21:5!7 +LUK 21:5!8 +LUK 21:5!9 +LUK 21:5!10 +LUK 21:5!11 +LUK 21:5!12 +LUK 21:5!13 +LUK 21:6!1 +LUK 21:6!2 +LUK 21:6!3 +LUK 21:6!4 +LUK 21:6!5 +LUK 21:6!6 +LUK 21:6!7 +LUK 21:6!8 +LUK 21:6!9 +LUK 21:6!11 +LUK 21:6!12 +LUK 21:6!10 +LUK 21:6!13 +LUK 21:6!14 +LUK 21:6!15 +LUK 21:7!2 +LUK 21:7!1 +LUK 21:7!3 +LUK 21:7!4 +LUK 21:7!5 +LUK 21:7!7 +LUK 21:7!6 +LUK 21:7!8 +LUK 21:7!9 +LUK 21:7!10 +LUK 21:7!11 +LUK 21:7!12 +LUK 21:7!13 +LUK 21:7!14 +LUK 21:7!15 +LUK 21:7!16 +LUK 21:7!17 +LUK 21:8!2 +LUK 21:8!1 +LUK 21:8!3 +LUK 21:8!4 +LUK 21:8!5 +LUK 21:8!6 +LUK 21:8!8 +LUK 21:8!7 +LUK 21:8!9 +LUK 21:8!10 +LUK 21:8!11 +LUK 21:8!12 +LUK 21:8!13 +LUK 21:8!14 +LUK 21:8!15 +LUK 21:8!16 +LUK 21:8!17 +LUK 21:8!18 +LUK 21:8!19 +LUK 21:8!20 +LUK 21:8!21 +LUK 21:8!22 +LUK 21:8!23 +LUK 21:8!24 +LUK 21:9!2 +LUK 21:9!1 +LUK 21:9!3 +LUK 21:9!4 +LUK 21:9!5 +LUK 21:9!6 +LUK 21:9!7 +LUK 21:9!8 +LUK 21:9!10 +LUK 21:9!9 +LUK 21:9!11 +LUK 21:9!12 +LUK 21:9!13 +LUK 21:9!14 +LUK 21:9!15 +LUK 21:9!16 +LUK 21:9!17 +LUK 21:9!18 +LUK 21:10!1 +LUK 21:10!2 +LUK 21:10!3 +LUK 21:10!4 +LUK 21:10!5 +LUK 21:10!6 +LUK 21:10!7 +LUK 21:10!8 +LUK 21:10!9 +LUK 21:10!10 +LUK 21:10!11 +LUK 21:11!2 +LUK 21:11!1 +LUK 21:11!3 +LUK 21:11!4 +LUK 21:11!5 +LUK 21:11!6 +LUK 21:11!7 +LUK 21:11!8 +LUK 21:11!9 +LUK 21:11!10 +LUK 21:11!12 +LUK 21:11!11 +LUK 21:11!13 +LUK 21:11!14 +LUK 21:11!15 +LUK 21:11!16 +LUK 21:11!17 +LUK 21:11!18 +LUK 21:12!2 +LUK 21:12!1 +LUK 21:12!3 +LUK 21:12!4 +LUK 21:12!5 +LUK 21:12!6 +LUK 21:12!7 +LUK 21:12!8 +LUK 21:12!9 +LUK 21:12!10 +LUK 21:12!11 +LUK 21:12!12 +LUK 21:12!13 +LUK 21:12!14 +LUK 21:12!15 +LUK 21:12!16 +LUK 21:12!17 +LUK 21:12!18 +LUK 21:12!19 +LUK 21:12!20 +LUK 21:12!21 +LUK 21:12!22 +LUK 21:12!23 +LUK 21:12!24 +LUK 21:12!25 +LUK 21:12!26 +LUK 21:12!27 +LUK 21:13!1 +LUK 21:13!2 +LUK 21:13!3 +LUK 21:13!4 +LUK 21:14!2 +LUK 21:14!1 +LUK 21:14!3 +LUK 21:14!4 +LUK 21:14!5 +LUK 21:14!6 +LUK 21:14!7 +LUK 21:14!8 +LUK 21:14!9 +LUK 21:15!2 +LUK 21:15!1 +LUK 21:15!3 +LUK 21:15!4 +LUK 21:15!5 +LUK 21:15!6 +LUK 21:15!7 +LUK 21:15!8 +LUK 21:15!9 +LUK 21:15!10 +LUK 21:15!11 +LUK 21:15!12 +LUK 21:15!13 +LUK 21:15!14 +LUK 21:15!15 +LUK 21:15!16 +LUK 21:15!17 +LUK 21:16!2 +LUK 21:16!1 +LUK 21:16!3 +LUK 21:16!4 +LUK 21:16!5 +LUK 21:16!6 +LUK 21:16!7 +LUK 21:16!8 +LUK 21:16!9 +LUK 21:16!10 +LUK 21:16!11 +LUK 21:16!12 +LUK 21:16!13 +LUK 21:16!14 +LUK 21:16!15 +LUK 21:17!1 +LUK 21:17!2 +LUK 21:17!3 +LUK 21:17!4 +LUK 21:17!5 +LUK 21:17!6 +LUK 21:17!7 +LUK 21:17!8 +LUK 21:17!9 +LUK 21:18!1 +LUK 21:18!2 +LUK 21:18!3 +LUK 21:18!4 +LUK 21:18!5 +LUK 21:18!6 +LUK 21:18!7 +LUK 21:18!8 +LUK 21:18!9 +LUK 21:19!1 +LUK 21:19!2 +LUK 21:19!3 +LUK 21:19!4 +LUK 21:19!5 +LUK 21:19!6 +LUK 21:19!7 +LUK 21:19!8 +LUK 21:20!2 +LUK 21:20!1 +LUK 21:20!3 +LUK 21:20!4 +LUK 21:20!5 +LUK 21:20!6 +LUK 21:20!7 +LUK 21:20!8 +LUK 21:20!9 +LUK 21:20!10 +LUK 21:20!11 +LUK 21:20!12 +LUK 21:20!13 +LUK 21:20!14 +LUK 21:21!1 +LUK 21:21!2 +LUK 21:21!3 +LUK 21:21!4 +LUK 21:21!5 +LUK 21:21!6 +LUK 21:21!7 +LUK 21:21!8 +LUK 21:21!9 +LUK 21:21!10 +LUK 21:21!11 +LUK 21:21!12 +LUK 21:21!13 +LUK 21:21!14 +LUK 21:21!15 +LUK 21:21!16 +LUK 21:21!17 +LUK 21:21!18 +LUK 21:21!19 +LUK 21:21!20 +LUK 21:21!21 +LUK 21:21!22 +LUK 21:21!23 +LUK 21:21!24 +LUK 21:22!1 +LUK 21:22!2 +LUK 21:22!3 +LUK 21:22!4 +LUK 21:22!5 +LUK 21:22!6 +LUK 21:22!7 +LUK 21:22!8 +LUK 21:22!9 +LUK 21:22!10 +LUK 21:23!1 +LUK 21:23!2 +LUK 21:23!3 +LUK 21:23!4 +LUK 21:23!5 +LUK 21:23!6 +LUK 21:23!7 +LUK 21:23!8 +LUK 21:23!9 +LUK 21:23!10 +LUK 21:23!11 +LUK 21:23!12 +LUK 21:23!14 +LUK 21:23!13 +LUK 21:23!15 +LUK 21:23!16 +LUK 21:23!17 +LUK 21:23!18 +LUK 21:23!19 +LUK 21:23!20 +LUK 21:23!21 +LUK 21:23!22 +LUK 21:23!23 +LUK 21:23!24 +LUK 21:24!1 +LUK 21:24!2 +LUK 21:24!3 +LUK 21:24!4 +LUK 21:24!5 +LUK 21:24!6 +LUK 21:24!7 +LUK 21:24!8 +LUK 21:24!9 +LUK 21:24!10 +LUK 21:24!11 +LUK 21:24!12 +LUK 21:24!13 +LUK 21:24!14 +LUK 21:24!15 +LUK 21:24!16 +LUK 21:24!17 +LUK 21:24!18 +LUK 21:24!19 +LUK 21:24!20 +LUK 21:24!21 +LUK 21:25!1 +LUK 21:25!2 +LUK 21:25!3 +LUK 21:25!4 +LUK 21:25!5 +LUK 21:25!6 +LUK 21:25!7 +LUK 21:25!8 +LUK 21:25!9 +LUK 21:25!10 +LUK 21:25!11 +LUK 21:25!12 +LUK 21:25!13 +LUK 21:25!14 +LUK 21:25!15 +LUK 21:25!16 +LUK 21:25!17 +LUK 21:25!18 +LUK 21:25!19 +LUK 21:25!20 +LUK 21:25!21 +LUK 21:26!1 +LUK 21:26!2 +LUK 21:26!3 +LUK 21:26!4 +LUK 21:26!5 +LUK 21:26!6 +LUK 21:26!7 +LUK 21:26!8 +LUK 21:26!9 +LUK 21:26!10 +LUK 21:26!12 +LUK 21:26!11 +LUK 21:26!13 +LUK 21:26!14 +LUK 21:26!15 +LUK 21:26!16 +LUK 21:27!1 +LUK 21:27!2 +LUK 21:27!3 +LUK 21:27!4 +LUK 21:27!5 +LUK 21:27!6 +LUK 21:27!7 +LUK 21:27!8 +LUK 21:27!9 +LUK 21:27!10 +LUK 21:27!11 +LUK 21:27!12 +LUK 21:27!13 +LUK 21:27!14 +LUK 21:27!15 +LUK 21:28!2 +LUK 21:28!1 +LUK 21:28!3 +LUK 21:28!4 +LUK 21:28!5 +LUK 21:28!6 +LUK 21:28!7 +LUK 21:28!8 +LUK 21:28!9 +LUK 21:28!10 +LUK 21:28!11 +LUK 21:28!12 +LUK 21:28!13 +LUK 21:28!14 +LUK 21:28!15 +LUK 21:29!1 +LUK 21:29!2 +LUK 21:29!3 +LUK 21:29!4 +LUK 21:29!5 +LUK 21:29!6 +LUK 21:29!7 +LUK 21:29!8 +LUK 21:29!9 +LUK 21:29!10 +LUK 21:29!11 +LUK 21:30!1 +LUK 21:30!2 +LUK 21:30!3 +LUK 21:30!4 +LUK 21:30!5 +LUK 21:30!6 +LUK 21:30!7 +LUK 21:30!8 +LUK 21:30!9 +LUK 21:30!10 +LUK 21:30!11 +LUK 21:30!12 +LUK 21:30!13 +LUK 21:31!1 +LUK 21:31!2 +LUK 21:31!3 +LUK 21:31!4 +LUK 21:31!5 +LUK 21:31!6 +LUK 21:31!7 +LUK 21:31!8 +LUK 21:31!9 +LUK 21:31!10 +LUK 21:31!11 +LUK 21:31!12 +LUK 21:31!13 +LUK 21:31!14 +LUK 21:31!15 +LUK 21:32!1 +LUK 21:32!2 +LUK 21:32!3 +LUK 21:32!4 +LUK 21:32!5 +LUK 21:32!6 +LUK 21:32!7 +LUK 21:32!8 +LUK 21:32!9 +LUK 21:32!10 +LUK 21:32!11 +LUK 21:32!12 +LUK 21:32!13 +LUK 21:32!14 +LUK 21:33!1 +LUK 21:33!2 +LUK 21:33!3 +LUK 21:33!4 +LUK 21:33!5 +LUK 21:33!6 +LUK 21:33!8 +LUK 21:33!7 +LUK 21:33!9 +LUK 21:33!10 +LUK 21:33!11 +LUK 21:33!12 +LUK 21:33!13 +LUK 21:34!2 +LUK 21:34!1 +LUK 21:34!3 +LUK 21:34!4 +LUK 21:34!5 +LUK 21:34!6 +LUK 21:34!7 +LUK 21:34!8 +LUK 21:34!9 +LUK 21:34!10 +LUK 21:34!11 +LUK 21:34!12 +LUK 21:34!13 +LUK 21:34!14 +LUK 21:34!15 +LUK 21:34!16 +LUK 21:34!17 +LUK 21:34!18 +LUK 21:34!19 +LUK 21:34!20 +LUK 21:34!21 +LUK 21:34!22 +LUK 21:34!23 +LUK 21:34!24 +LUK 21:35!1 +LUK 21:35!2 +LUK 21:35!4 +LUK 21:35!3 +LUK 21:35!5 +LUK 21:35!6 +LUK 21:35!7 +LUK 21:35!8 +LUK 21:35!9 +LUK 21:35!10 +LUK 21:35!11 +LUK 21:35!12 +LUK 21:35!13 +LUK 21:36!2 +LUK 21:36!1 +LUK 21:36!3 +LUK 21:36!4 +LUK 21:36!5 +LUK 21:36!6 +LUK 21:36!7 +LUK 21:36!8 +LUK 21:36!9 +LUK 21:36!10 +LUK 21:36!11 +LUK 21:36!12 +LUK 21:36!13 +LUK 21:36!14 +LUK 21:36!15 +LUK 21:36!16 +LUK 21:36!17 +LUK 21:36!18 +LUK 21:36!19 +LUK 21:36!20 +LUK 21:36!21 +LUK 21:37!2 +LUK 21:37!1 +LUK 21:37!8 +LUK 21:37!3 +LUK 21:37!4 +LUK 21:37!5 +LUK 21:37!6 +LUK 21:37!7 +LUK 21:37!10 +LUK 21:37!9 +LUK 21:37!11 +LUK 21:37!12 +LUK 21:37!13 +LUK 21:37!14 +LUK 21:37!15 +LUK 21:37!16 +LUK 21:37!17 +LUK 21:37!18 +LUK 21:37!19 +LUK 21:38!1 +LUK 21:38!2 +LUK 21:38!3 +LUK 21:38!4 +LUK 21:38!5 +LUK 21:38!6 +LUK 21:38!7 +LUK 21:38!8 +LUK 21:38!9 +LUK 21:38!10 +LUK 21:38!11 +LUK 21:38!12 +LUK 22:1!2 +LUK 22:1!1 +LUK 22:1!3 +LUK 22:1!4 +LUK 22:1!5 +LUK 22:1!6 +LUK 22:1!7 +LUK 22:1!8 +LUK 22:1!9 +LUK 22:2!1 +LUK 22:2!2 +LUK 22:2!3 +LUK 22:2!4 +LUK 22:2!5 +LUK 22:2!6 +LUK 22:2!7 +LUK 22:2!8 +LUK 22:2!9 +LUK 22:2!10 +LUK 22:2!11 +LUK 22:2!13 +LUK 22:2!12 +LUK 22:2!14 +LUK 22:2!15 +LUK 22:3!2 +LUK 22:3!1 +LUK 22:3!3 +LUK 22:3!4 +LUK 22:3!5 +LUK 22:3!6 +LUK 22:3!7 +LUK 22:3!8 +LUK 22:3!9 +LUK 22:3!10 +LUK 22:3!11 +LUK 22:3!12 +LUK 22:3!13 +LUK 22:3!14 +LUK 22:4!1 +LUK 22:4!2 +LUK 22:4!3 +LUK 22:4!4 +LUK 22:4!5 +LUK 22:4!6 +LUK 22:4!7 +LUK 22:4!8 +LUK 22:4!9 +LUK 22:4!10 +LUK 22:4!11 +LUK 22:4!12 +LUK 22:5!1 +LUK 22:5!2 +LUK 22:5!3 +LUK 22:5!4 +LUK 22:5!5 +LUK 22:5!6 +LUK 22:5!7 +LUK 22:6!1 +LUK 22:6!2 +LUK 22:6!3 +LUK 22:6!4 +LUK 22:6!5 +LUK 22:6!6 +LUK 22:6!7 +LUK 22:6!8 +LUK 22:6!9 +LUK 22:6!10 +LUK 22:6!11 +LUK 22:7!2 +LUK 22:7!1 +LUK 22:7!3 +LUK 22:7!4 +LUK 22:7!5 +LUK 22:7!6 +LUK 22:7!7 +LUK 22:7!8 +LUK 22:7!9 +LUK 22:7!10 +LUK 22:7!11 +LUK 22:8!1 +LUK 22:8!2 +LUK 22:8!3 +LUK 22:8!4 +LUK 22:8!5 +LUK 22:8!6 +LUK 22:8!7 +LUK 22:8!8 +LUK 22:8!9 +LUK 22:8!10 +LUK 22:8!11 +LUK 22:8!12 +LUK 22:8!13 +LUK 22:9!2 +LUK 22:9!1 +LUK 22:9!3 +LUK 22:9!4 +LUK 22:9!6 +LUK 22:9!5 +LUK 22:9!7 +LUK 22:10!2 +LUK 22:10!1 +LUK 22:10!3 +LUK 22:10!4 +LUK 22:10!5 +LUK 22:10!6 +LUK 22:10!7 +LUK 22:10!8 +LUK 22:10!9 +LUK 22:10!10 +LUK 22:10!11 +LUK 22:10!12 +LUK 22:10!13 +LUK 22:10!14 +LUK 22:10!15 +LUK 22:10!16 +LUK 22:10!17 +LUK 22:10!18 +LUK 22:10!19 +LUK 22:10!20 +LUK 22:10!21 +LUK 22:10!22 +LUK 22:10!23 +LUK 22:10!24 +LUK 22:11!1 +LUK 22:11!2 +LUK 22:11!3 +LUK 22:11!4 +LUK 22:11!5 +LUK 22:11!6 +LUK 22:11!7 +LUK 22:11!8 +LUK 22:11!9 +LUK 22:11!10 +LUK 22:11!11 +LUK 22:11!12 +LUK 22:11!13 +LUK 22:11!14 +LUK 22:11!15 +LUK 22:11!16 +LUK 22:11!17 +LUK 22:11!18 +LUK 22:11!19 +LUK 22:11!20 +LUK 22:11!21 +LUK 22:11!22 +LUK 22:12!1 +LUK 22:12!2 +LUK 22:12!3 +LUK 22:12!4 +LUK 22:12!5 +LUK 22:12!6 +LUK 22:12!7 +LUK 22:12!8 +LUK 22:13!2 +LUK 22:13!1 +LUK 22:13!3 +LUK 22:13!4 +LUK 22:13!5 +LUK 22:13!6 +LUK 22:13!7 +LUK 22:13!8 +LUK 22:13!9 +LUK 22:13!10 +LUK 22:14!1 +LUK 22:14!2 +LUK 22:14!3 +LUK 22:14!4 +LUK 22:14!5 +LUK 22:14!6 +LUK 22:14!7 +LUK 22:14!8 +LUK 22:14!9 +LUK 22:14!10 +LUK 22:14!11 +LUK 22:15!1 +LUK 22:15!2 +LUK 22:15!3 +LUK 22:15!4 +LUK 22:15!5 +LUK 22:15!6 +LUK 22:15!7 +LUK 22:15!8 +LUK 22:15!9 +LUK 22:15!10 +LUK 22:15!11 +LUK 22:15!12 +LUK 22:15!13 +LUK 22:15!14 +LUK 22:15!15 +LUK 22:15!16 +LUK 22:16!2 +LUK 22:16!1 +LUK 22:16!3 +LUK 22:16!4 +LUK 22:16!5 +LUK 22:16!6 +LUK 22:16!7 +LUK 22:16!8 +LUK 22:16!9 +LUK 22:16!10 +LUK 22:16!11 +LUK 22:16!12 +LUK 22:16!13 +LUK 22:16!14 +LUK 22:16!15 +LUK 22:16!16 +LUK 22:16!17 +LUK 22:17!1 +LUK 22:17!2 +LUK 22:17!3 +LUK 22:17!4 +LUK 22:17!5 +LUK 22:17!6 +LUK 22:17!7 +LUK 22:17!8 +LUK 22:17!9 +LUK 22:17!10 +LUK 22:17!11 +LUK 22:18!2 +LUK 22:18!1 +LUK 22:18!3 +LUK 22:18!4 +LUK 22:18!5 +LUK 22:18!6 +LUK 22:18!7 +LUK 22:18!8 +LUK 22:18!9 +LUK 22:18!10 +LUK 22:18!11 +LUK 22:18!12 +LUK 22:18!13 +LUK 22:18!14 +LUK 22:18!15 +LUK 22:18!16 +LUK 22:18!17 +LUK 22:18!18 +LUK 22:18!19 +LUK 22:18!20 +LUK 22:18!21 +LUK 22:19!1 +LUK 22:19!2 +LUK 22:19!3 +LUK 22:19!4 +LUK 22:19!5 +LUK 22:19!6 +LUK 22:19!7 +LUK 22:19!8 +LUK 22:19!9 +LUK 22:19!10 +LUK 22:19!11 +LUK 22:19!12 +LUK 22:19!13 +LUK 22:19!14 +LUK 22:19!15 +LUK 22:19!16 +LUK 22:19!17 +LUK 22:19!18 +LUK 22:19!19 +LUK 22:19!20 +LUK 22:19!21 +LUK 22:19!22 +LUK 22:19!23 +LUK 22:19!24 +LUK 22:20!1 +LUK 22:20!2 +LUK 22:20!3 +LUK 22:20!4 +LUK 22:20!5 +LUK 22:20!6 +LUK 22:20!7 +LUK 22:20!8 +LUK 22:20!12 +LUK 22:20!13 +LUK 22:20!14 +LUK 22:20!15 +LUK 22:20!16 +LUK 22:20!17 +LUK 22:20!18 +LUK 22:20!9 +LUK 22:20!10 +LUK 22:20!11 +LUK 22:20!19 +LUK 22:20!20 +LUK 22:20!21 +LUK 22:20!22 +LUK 22:21!1 +LUK 22:21!2 +LUK 22:21!3 +LUK 22:21!4 +LUK 22:21!5 +LUK 22:21!6 +LUK 22:21!7 +LUK 22:21!8 +LUK 22:21!9 +LUK 22:21!10 +LUK 22:21!11 +LUK 22:21!12 +LUK 22:22!1 +LUK 22:22!4 +LUK 22:22!2 +LUK 22:22!3 +LUK 22:22!5 +LUK 22:22!6 +LUK 22:22!7 +LUK 22:22!8 +LUK 22:22!9 +LUK 22:22!10 +LUK 22:22!11 +LUK 22:22!12 +LUK 22:22!13 +LUK 22:22!14 +LUK 22:22!15 +LUK 22:22!16 +LUK 22:22!17 +LUK 22:22!18 +LUK 22:23!1 +LUK 22:23!2 +LUK 22:23!3 +LUK 22:23!4 +LUK 22:23!5 +LUK 22:23!6 +LUK 22:23!7 +LUK 22:23!9 +LUK 22:23!8 +LUK 22:23!10 +LUK 22:23!11 +LUK 22:23!12 +LUK 22:23!13 +LUK 22:23!14 +LUK 22:23!16 +LUK 22:23!15 +LUK 22:24!2 +LUK 22:24!1 +LUK 22:24!5 +LUK 22:24!6 +LUK 22:24!3 +LUK 22:24!4 +LUK 22:24!7 +LUK 22:24!8 +LUK 22:24!9 +LUK 22:24!10 +LUK 22:24!11 +LUK 22:24!12 +LUK 22:25!2 +LUK 22:25!1 +LUK 22:25!3 +LUK 22:25!4 +LUK 22:25!5 +LUK 22:25!6 +LUK 22:25!7 +LUK 22:25!8 +LUK 22:25!9 +LUK 22:25!10 +LUK 22:25!11 +LUK 22:25!12 +LUK 22:25!13 +LUK 22:25!14 +LUK 22:25!15 +LUK 22:25!16 +LUK 22:26!2 +LUK 22:26!1 +LUK 22:26!3 +LUK 22:26!4 +LUK 22:26!5 +LUK 22:26!6 +LUK 22:26!7 +LUK 22:26!8 +LUK 22:26!9 +LUK 22:26!10 +LUK 22:26!11 +LUK 22:26!12 +LUK 22:26!13 +LUK 22:26!14 +LUK 22:26!15 +LUK 22:26!16 +LUK 22:26!17 +LUK 22:26!18 +LUK 22:26!19 +LUK 22:27!2 +LUK 22:27!1 +LUK 22:27!3 +LUK 22:27!4 +LUK 22:27!5 +LUK 22:27!6 +LUK 22:27!7 +LUK 22:27!8 +LUK 22:27!9 +LUK 22:27!10 +LUK 22:27!11 +LUK 22:27!13 +LUK 22:27!12 +LUK 22:27!14 +LUK 22:27!15 +LUK 22:27!16 +LUK 22:27!17 +LUK 22:27!18 +LUK 22:27!19 +LUK 22:27!20 +LUK 22:28!2 +LUK 22:28!1 +LUK 22:28!3 +LUK 22:28!4 +LUK 22:28!5 +LUK 22:28!6 +LUK 22:28!7 +LUK 22:28!8 +LUK 22:28!9 +LUK 22:28!10 +LUK 22:28!11 +LUK 22:29!1 +LUK 22:29!2 +LUK 22:29!3 +LUK 22:29!4 +LUK 22:29!5 +LUK 22:29!6 +LUK 22:29!7 +LUK 22:29!8 +LUK 22:29!9 +LUK 22:29!10 +LUK 22:30!1 +LUK 22:30!2 +LUK 22:30!3 +LUK 22:30!4 +LUK 22:30!5 +LUK 22:30!6 +LUK 22:30!7 +LUK 22:30!8 +LUK 22:30!9 +LUK 22:30!10 +LUK 22:30!11 +LUK 22:30!12 +LUK 22:30!13 +LUK 22:30!14 +LUK 22:30!15 +LUK 22:30!16 +LUK 22:30!17 +LUK 22:30!18 +LUK 22:30!19 +LUK 22:30!21 +LUK 22:30!22 +LUK 22:30!20 +LUK 22:31!1 +LUK 22:31!2 +LUK 22:31!3 +LUK 22:31!4 +LUK 22:31!5 +LUK 22:31!6 +LUK 22:31!7 +LUK 22:31!8 +LUK 22:31!9 +LUK 22:31!10 +LUK 22:31!11 +LUK 22:31!12 +LUK 22:32!2 +LUK 22:32!1 +LUK 22:32!3 +LUK 22:32!4 +LUK 22:32!5 +LUK 22:32!6 +LUK 22:32!7 +LUK 22:32!8 +LUK 22:32!9 +LUK 22:32!10 +LUK 22:32!11 +LUK 22:32!12 +LUK 22:32!13 +LUK 22:32!14 +LUK 22:32!15 +LUK 22:32!16 +LUK 22:32!17 +LUK 22:32!18 +LUK 22:32!19 +LUK 22:33!2 +LUK 22:33!1 +LUK 22:33!3 +LUK 22:33!4 +LUK 22:33!5 +LUK 22:33!6 +LUK 22:33!7 +LUK 22:33!8 +LUK 22:33!9 +LUK 22:33!10 +LUK 22:33!11 +LUK 22:33!12 +LUK 22:33!13 +LUK 22:33!14 +LUK 22:33!15 +LUK 22:33!16 +LUK 22:34!2 +LUK 22:34!1 +LUK 22:34!3 +LUK 22:34!4 +LUK 22:34!5 +LUK 22:34!6 +LUK 22:34!7 +LUK 22:34!8 +LUK 22:34!9 +LUK 22:34!10 +LUK 22:34!11 +LUK 22:34!12 +LUK 22:34!13 +LUK 22:34!15 +LUK 22:34!16 +LUK 22:34!14 +LUK 22:35!1 +LUK 22:35!2 +LUK 22:35!3 +LUK 22:35!4 +LUK 22:35!5 +LUK 22:35!6 +LUK 22:35!7 +LUK 22:35!8 +LUK 22:35!9 +LUK 22:35!10 +LUK 22:35!11 +LUK 22:35!12 +LUK 22:35!13 +LUK 22:35!14 +LUK 22:35!15 +LUK 22:35!17 +LUK 22:35!16 +LUK 22:35!18 +LUK 22:35!19 +LUK 22:36!2 +LUK 22:36!1 +LUK 22:36!3 +LUK 22:36!4 +LUK 22:36!5 +LUK 22:36!6 +LUK 22:36!7 +LUK 22:36!8 +LUK 22:36!9 +LUK 22:36!10 +LUK 22:36!11 +LUK 22:36!12 +LUK 22:36!13 +LUK 22:36!14 +LUK 22:36!15 +LUK 22:36!16 +LUK 22:36!17 +LUK 22:36!18 +LUK 22:36!19 +LUK 22:36!20 +LUK 22:36!21 +LUK 22:36!22 +LUK 22:36!23 +LUK 22:37!2 +LUK 22:37!1 +LUK 22:37!3 +LUK 22:37!4 +LUK 22:37!8 +LUK 22:37!5 +LUK 22:37!6 +LUK 22:37!7 +LUK 22:37!12 +LUK 22:37!13 +LUK 22:37!14 +LUK 22:37!15 +LUK 22:37!16 +LUK 22:37!9 +LUK 22:37!10 +LUK 22:37!11 +LUK 22:37!18 +LUK 22:37!17 +LUK 22:37!19 +LUK 22:37!20 +LUK 22:37!21 +LUK 22:37!22 +LUK 22:37!23 +LUK 22:38!2 +LUK 22:38!1 +LUK 22:38!3 +LUK 22:38!4 +LUK 22:38!5 +LUK 22:38!6 +LUK 22:38!7 +LUK 22:38!8 +LUK 22:38!10 +LUK 22:38!9 +LUK 22:38!11 +LUK 22:38!12 +LUK 22:38!13 +LUK 22:38!14 +LUK 22:39!1 +LUK 22:39!2 +LUK 22:39!3 +LUK 22:39!4 +LUK 22:39!5 +LUK 22:39!6 +LUK 22:39!7 +LUK 22:39!8 +LUK 22:39!9 +LUK 22:39!10 +LUK 22:39!11 +LUK 22:39!13 +LUK 22:39!12 +LUK 22:39!14 +LUK 22:39!15 +LUK 22:39!16 +LUK 22:39!17 +LUK 22:40!2 +LUK 22:40!1 +LUK 22:40!3 +LUK 22:40!4 +LUK 22:40!5 +LUK 22:40!6 +LUK 22:40!7 +LUK 22:40!8 +LUK 22:40!9 +LUK 22:40!10 +LUK 22:40!11 +LUK 22:40!12 +LUK 22:41!1 +LUK 22:41!2 +LUK 22:41!3 +LUK 22:41!4 +LUK 22:41!5 +LUK 22:41!6 +LUK 22:41!7 +LUK 22:41!8 +LUK 22:41!9 +LUK 22:41!10 +LUK 22:41!11 +LUK 22:41!12 +LUK 22:41!13 +LUK 22:42!1 +LUK 22:42!2 +LUK 22:42!3 +LUK 22:42!4 +LUK 22:42!5 +LUK 22:42!6 +LUK 22:42!7 +LUK 22:42!8 +LUK 22:42!9 +LUK 22:42!10 +LUK 22:42!11 +LUK 22:42!12 +LUK 22:42!13 +LUK 22:42!14 +LUK 22:42!15 +LUK 22:42!16 +LUK 22:42!17 +LUK 22:42!18 +LUK 22:42!19 +LUK 22:43!2 +LUK 22:43!1 +LUK 22:43!3 +LUK 22:43!4 +LUK 22:43!5 +LUK 22:43!6 +LUK 22:43!7 +LUK 22:43!8 +LUK 22:44!1 +LUK 22:44!2 +LUK 22:44!3 +LUK 22:44!4 +LUK 22:44!5 +LUK 22:44!6 +LUK 22:44!7 +LUK 22:44!8 +LUK 22:44!9 +LUK 22:44!10 +LUK 22:44!11 +LUK 22:44!12 +LUK 22:44!13 +LUK 22:44!14 +LUK 22:44!15 +LUK 22:44!16 +LUK 22:44!17 +LUK 22:44!18 +LUK 22:45!1 +LUK 22:45!2 +LUK 22:45!3 +LUK 22:45!4 +LUK 22:45!5 +LUK 22:45!6 +LUK 22:45!7 +LUK 22:45!8 +LUK 22:45!9 +LUK 22:45!10 +LUK 22:45!11 +LUK 22:45!12 +LUK 22:45!13 +LUK 22:45!14 +LUK 22:45!15 +LUK 22:46!1 +LUK 22:46!2 +LUK 22:46!3 +LUK 22:46!4 +LUK 22:46!5 +LUK 22:46!6 +LUK 22:46!7 +LUK 22:46!8 +LUK 22:46!9 +LUK 22:46!10 +LUK 22:46!11 +LUK 22:46!12 +LUK 22:47!1 +LUK 22:47!2 +LUK 22:47!3 +LUK 22:47!4 +LUK 22:47!5 +LUK 22:47!6 +LUK 22:47!7 +LUK 22:47!8 +LUK 22:47!9 +LUK 22:47!10 +LUK 22:47!11 +LUK 22:47!12 +LUK 22:47!13 +LUK 22:47!14 +LUK 22:47!15 +LUK 22:47!16 +LUK 22:47!17 +LUK 22:47!18 +LUK 22:47!19 +LUK 22:47!20 +LUK 22:48!2 +LUK 22:48!1 +LUK 22:48!3 +LUK 22:48!4 +LUK 22:48!5 +LUK 22:48!6 +LUK 22:48!7 +LUK 22:48!8 +LUK 22:48!9 +LUK 22:48!10 +LUK 22:48!11 +LUK 22:49!2 +LUK 22:49!3 +LUK 22:49!4 +LUK 22:49!5 +LUK 22:49!1 +LUK 22:49!6 +LUK 22:49!7 +LUK 22:49!8 +LUK 22:49!9 +LUK 22:49!10 +LUK 22:49!11 +LUK 22:49!12 +LUK 22:49!13 +LUK 22:50!1 +LUK 22:50!2 +LUK 22:50!3 +LUK 22:50!4 +LUK 22:50!5 +LUK 22:50!6 +LUK 22:50!7 +LUK 22:50!8 +LUK 22:50!9 +LUK 22:50!10 +LUK 22:50!11 +LUK 22:50!12 +LUK 22:50!13 +LUK 22:50!14 +LUK 22:50!15 +LUK 22:50!16 +LUK 22:50!17 +LUK 22:51!2 +LUK 22:51!1 +LUK 22:51!3 +LUK 22:51!4 +LUK 22:51!5 +LUK 22:51!6 +LUK 22:51!7 +LUK 22:51!8 +LUK 22:51!9 +LUK 22:51!10 +LUK 22:51!11 +LUK 22:51!12 +LUK 22:51!13 +LUK 22:51!14 +LUK 22:52!2 +LUK 22:52!1 +LUK 22:52!3 +LUK 22:52!4 +LUK 22:52!5 +LUK 22:52!6 +LUK 22:52!7 +LUK 22:52!8 +LUK 22:52!9 +LUK 22:52!10 +LUK 22:52!11 +LUK 22:52!12 +LUK 22:52!13 +LUK 22:52!14 +LUK 22:52!15 +LUK 22:52!16 +LUK 22:52!17 +LUK 22:52!18 +LUK 22:52!19 +LUK 22:52!20 +LUK 22:52!21 +LUK 22:52!22 +LUK 22:52!23 +LUK 22:53!1 +LUK 22:53!2 +LUK 22:53!3 +LUK 22:53!4 +LUK 22:53!5 +LUK 22:53!6 +LUK 22:53!7 +LUK 22:53!8 +LUK 22:53!9 +LUK 22:53!10 +LUK 22:53!11 +LUK 22:53!12 +LUK 22:53!13 +LUK 22:53!14 +LUK 22:53!15 +LUK 22:53!16 +LUK 22:53!17 +LUK 22:53!18 +LUK 22:53!19 +LUK 22:53!20 +LUK 22:53!21 +LUK 22:53!22 +LUK 22:53!23 +LUK 22:53!24 +LUK 22:53!25 +LUK 22:53!26 +LUK 22:54!2 +LUK 22:54!1 +LUK 22:54!3 +LUK 22:54!4 +LUK 22:54!5 +LUK 22:54!6 +LUK 22:54!7 +LUK 22:54!8 +LUK 22:54!9 +LUK 22:54!10 +LUK 22:54!11 +LUK 22:54!13 +LUK 22:54!12 +LUK 22:54!14 +LUK 22:54!15 +LUK 22:54!16 +LUK 22:55!2 +LUK 22:55!1 +LUK 22:55!3 +LUK 22:55!4 +LUK 22:55!5 +LUK 22:55!6 +LUK 22:55!7 +LUK 22:55!8 +LUK 22:55!9 +LUK 22:55!10 +LUK 22:55!11 +LUK 22:55!12 +LUK 22:55!13 +LUK 22:55!14 +LUK 22:56!2 +LUK 22:56!4 +LUK 22:56!5 +LUK 22:56!1 +LUK 22:56!3 +LUK 22:56!6 +LUK 22:56!7 +LUK 22:56!8 +LUK 22:56!9 +LUK 22:56!10 +LUK 22:56!11 +LUK 22:56!12 +LUK 22:56!13 +LUK 22:56!14 +LUK 22:56!15 +LUK 22:56!16 +LUK 22:56!17 +LUK 22:56!18 +LUK 22:57!2 +LUK 22:57!1 +LUK 22:57!3 +LUK 22:57!4 +LUK 22:57!5 +LUK 22:57!6 +LUK 22:57!7 +LUK 22:57!8 +LUK 22:58!1 +LUK 22:58!2 +LUK 22:58!3 +LUK 22:58!4 +LUK 22:58!5 +LUK 22:58!6 +LUK 22:58!7 +LUK 22:58!8 +LUK 22:58!9 +LUK 22:58!10 +LUK 22:58!11 +LUK 22:58!12 +LUK 22:58!14 +LUK 22:58!13 +LUK 22:58!15 +LUK 22:58!16 +LUK 22:58!17 +LUK 22:58!18 +LUK 22:58!19 +LUK 22:59!1 +LUK 22:59!2 +LUK 22:59!3 +LUK 22:59!4 +LUK 22:59!5 +LUK 22:59!6 +LUK 22:59!7 +LUK 22:59!8 +LUK 22:59!9 +LUK 22:59!10 +LUK 22:59!11 +LUK 22:59!12 +LUK 22:59!13 +LUK 22:59!14 +LUK 22:59!15 +LUK 22:59!16 +LUK 22:59!18 +LUK 22:59!17 +LUK 22:59!19 +LUK 22:59!20 +LUK 22:60!2 +LUK 22:60!1 +LUK 22:60!3 +LUK 22:60!4 +LUK 22:60!5 +LUK 22:60!6 +LUK 22:60!7 +LUK 22:60!8 +LUK 22:60!9 +LUK 22:60!10 +LUK 22:60!11 +LUK 22:60!12 +LUK 22:60!13 +LUK 22:60!14 +LUK 22:60!15 +LUK 22:60!16 +LUK 22:61!1 +LUK 22:61!2 +LUK 22:61!3 +LUK 22:61!4 +LUK 22:61!5 +LUK 22:61!6 +LUK 22:61!7 +LUK 22:61!8 +LUK 22:61!9 +LUK 22:61!10 +LUK 22:61!11 +LUK 22:61!12 +LUK 22:61!13 +LUK 22:61!14 +LUK 22:61!15 +LUK 22:61!16 +LUK 22:61!17 +LUK 22:61!18 +LUK 22:61!19 +LUK 22:61!20 +LUK 22:61!21 +LUK 22:61!22 +LUK 22:61!23 +LUK 22:61!24 +LUK 22:61!25 +LUK 22:61!26 +LUK 22:62!1 +LUK 22:62!2 +LUK 22:62!3 +LUK 22:62!4 +LUK 22:62!5 +LUK 22:63!1 +LUK 22:63!2 +LUK 22:63!3 +LUK 22:63!4 +LUK 22:63!5 +LUK 22:63!6 +LUK 22:63!7 +LUK 22:63!8 +LUK 22:63!9 +LUK 22:64!1 +LUK 22:64!2 +LUK 22:64!3 +LUK 22:64!4 +LUK 22:64!5 +LUK 22:64!6 +LUK 22:64!7 +LUK 22:64!8 +LUK 22:64!9 +LUK 22:64!10 +LUK 22:64!11 +LUK 22:65!1 +LUK 22:65!2 +LUK 22:65!3 +LUK 22:65!5 +LUK 22:65!4 +LUK 22:65!6 +LUK 22:65!7 +LUK 22:66!1 +LUK 22:66!2 +LUK 22:66!3 +LUK 22:66!4 +LUK 22:66!5 +LUK 22:66!6 +LUK 22:66!7 +LUK 22:66!8 +LUK 22:66!9 +LUK 22:66!11 +LUK 22:66!10 +LUK 22:66!12 +LUK 22:66!13 +LUK 22:66!14 +LUK 22:66!15 +LUK 22:66!16 +LUK 22:66!17 +LUK 22:66!18 +LUK 22:66!19 +LUK 22:66!20 +LUK 22:67!1 +LUK 22:67!2 +LUK 22:67!3 +LUK 22:67!4 +LUK 22:67!5 +LUK 22:67!6 +LUK 22:67!7 +LUK 22:67!8 +LUK 22:67!10 +LUK 22:67!9 +LUK 22:67!11 +LUK 22:67!12 +LUK 22:67!13 +LUK 22:67!14 +LUK 22:67!15 +LUK 22:67!16 +LUK 22:67!17 +LUK 22:68!2 +LUK 22:68!1 +LUK 22:68!3 +LUK 22:68!4 +LUK 22:68!5 +LUK 22:68!6 +LUK 22:69!4 +LUK 22:69!1 +LUK 22:69!2 +LUK 22:69!3 +LUK 22:69!5 +LUK 22:69!10 +LUK 22:69!6 +LUK 22:69!7 +LUK 22:69!8 +LUK 22:69!9 +LUK 22:69!11 +LUK 22:69!12 +LUK 22:69!13 +LUK 22:69!14 +LUK 22:69!15 +LUK 22:69!16 +LUK 22:70!2 +LUK 22:70!1 +LUK 22:70!3 +LUK 22:70!5 +LUK 22:70!4 +LUK 22:70!6 +LUK 22:70!7 +LUK 22:70!8 +LUK 22:70!9 +LUK 22:70!10 +LUK 22:70!12 +LUK 22:70!11 +LUK 22:70!13 +LUK 22:70!14 +LUK 22:70!15 +LUK 22:70!16 +LUK 22:70!17 +LUK 22:70!18 +LUK 22:70!19 +LUK 22:70!20 +LUK 22:71!2 +LUK 22:71!1 +LUK 22:71!3 +LUK 22:71!4 +LUK 22:71!5 +LUK 22:71!6 +LUK 22:71!7 +LUK 22:71!8 +LUK 22:71!10 +LUK 22:71!9 +LUK 22:71!11 +LUK 22:71!12 +LUK 22:71!13 +LUK 22:71!14 +LUK 22:71!15 +LUK 23:1!1 +LUK 23:1!2 +LUK 23:1!3 +LUK 23:1!4 +LUK 23:1!5 +LUK 23:1!6 +LUK 23:1!7 +LUK 23:1!8 +LUK 23:1!9 +LUK 23:1!10 +LUK 23:1!11 +LUK 23:2!2 +LUK 23:2!1 +LUK 23:2!3 +LUK 23:2!4 +LUK 23:2!5 +LUK 23:2!7 +LUK 23:2!6 +LUK 23:2!8 +LUK 23:2!9 +LUK 23:2!10 +LUK 23:2!11 +LUK 23:2!12 +LUK 23:2!13 +LUK 23:2!14 +LUK 23:2!15 +LUK 23:2!16 +LUK 23:2!17 +LUK 23:2!18 +LUK 23:2!19 +LUK 23:2!20 +LUK 23:2!21 +LUK 23:2!22 +LUK 23:3!2 +LUK 23:3!1 +LUK 23:3!3 +LUK 23:3!4 +LUK 23:3!5 +LUK 23:3!6 +LUK 23:3!7 +LUK 23:3!8 +LUK 23:3!9 +LUK 23:3!10 +LUK 23:3!11 +LUK 23:3!12 +LUK 23:3!14 +LUK 23:3!13 +LUK 23:3!15 +LUK 23:3!16 +LUK 23:3!17 +LUK 23:3!18 +LUK 23:3!19 +LUK 23:4!2 +LUK 23:4!1 +LUK 23:4!3 +LUK 23:4!4 +LUK 23:4!5 +LUK 23:4!6 +LUK 23:4!7 +LUK 23:4!8 +LUK 23:4!9 +LUK 23:4!10 +LUK 23:4!11 +LUK 23:4!12 +LUK 23:4!13 +LUK 23:4!14 +LUK 23:4!15 +LUK 23:4!16 +LUK 23:4!17 +LUK 23:5!2 +LUK 23:5!1 +LUK 23:5!3 +LUK 23:5!4 +LUK 23:5!5 +LUK 23:5!6 +LUK 23:5!7 +LUK 23:5!8 +LUK 23:5!9 +LUK 23:5!10 +LUK 23:5!11 +LUK 23:5!12 +LUK 23:5!13 +LUK 23:5!14 +LUK 23:5!15 +LUK 23:5!16 +LUK 23:5!17 +LUK 23:5!18 +LUK 23:5!19 +LUK 23:5!20 +LUK 23:6!2 +LUK 23:6!1 +LUK 23:6!3 +LUK 23:6!4 +LUK 23:6!5 +LUK 23:6!6 +LUK 23:6!7 +LUK 23:6!8 +LUK 23:6!9 +LUK 23:7!1 +LUK 23:7!2 +LUK 23:7!3 +LUK 23:7!4 +LUK 23:7!5 +LUK 23:7!6 +LUK 23:7!7 +LUK 23:7!8 +LUK 23:7!9 +LUK 23:7!10 +LUK 23:7!11 +LUK 23:7!12 +LUK 23:7!13 +LUK 23:7!14 +LUK 23:7!15 +LUK 23:7!16 +LUK 23:7!17 +LUK 23:7!18 +LUK 23:7!19 +LUK 23:7!20 +LUK 23:7!21 +LUK 23:8!2 +LUK 23:8!1 +LUK 23:8!3 +LUK 23:8!4 +LUK 23:8!5 +LUK 23:8!6 +LUK 23:8!7 +LUK 23:8!8 +LUK 23:8!10 +LUK 23:8!9 +LUK 23:8!14 +LUK 23:8!11 +LUK 23:8!12 +LUK 23:8!13 +LUK 23:8!15 +LUK 23:8!16 +LUK 23:8!17 +LUK 23:8!18 +LUK 23:8!19 +LUK 23:8!20 +LUK 23:8!21 +LUK 23:8!22 +LUK 23:8!23 +LUK 23:8!26 +LUK 23:8!24 +LUK 23:8!25 +LUK 23:8!27 +LUK 23:8!28 +LUK 23:8!29 +LUK 23:9!2 +LUK 23:9!1 +LUK 23:9!3 +LUK 23:9!4 +LUK 23:9!5 +LUK 23:9!6 +LUK 23:9!8 +LUK 23:9!7 +LUK 23:9!9 +LUK 23:9!10 +LUK 23:9!11 +LUK 23:10!2 +LUK 23:10!1 +LUK 23:10!3 +LUK 23:10!4 +LUK 23:10!5 +LUK 23:10!6 +LUK 23:10!7 +LUK 23:10!8 +LUK 23:10!9 +LUK 23:10!10 +LUK 23:11!2 +LUK 23:11!4 +LUK 23:11!5 +LUK 23:11!1 +LUK 23:11!3 +LUK 23:11!6 +LUK 23:11!7 +LUK 23:11!8 +LUK 23:11!9 +LUK 23:11!10 +LUK 23:11!11 +LUK 23:11!12 +LUK 23:11!13 +LUK 23:11!14 +LUK 23:11!15 +LUK 23:11!16 +LUK 23:11!17 +LUK 23:11!18 +LUK 23:12!2 +LUK 23:12!1 +LUK 23:12!3 +LUK 23:12!5 +LUK 23:12!4 +LUK 23:12!6 +LUK 23:12!7 +LUK 23:12!8 +LUK 23:12!9 +LUK 23:12!10 +LUK 23:12!11 +LUK 23:12!12 +LUK 23:12!13 +LUK 23:12!14 +LUK 23:12!15 +LUK 23:12!17 +LUK 23:12!16 +LUK 23:12!18 +LUK 23:12!19 +LUK 23:12!20 +LUK 23:12!21 +LUK 23:12!22 +LUK 23:13!2 +LUK 23:13!1 +LUK 23:13!3 +LUK 23:13!4 +LUK 23:13!5 +LUK 23:13!6 +LUK 23:13!7 +LUK 23:13!8 +LUK 23:13!9 +LUK 23:13!10 +LUK 23:13!11 +LUK 23:14!1 +LUK 23:14!2 +LUK 23:14!3 +LUK 23:14!4 +LUK 23:14!5 +LUK 23:14!6 +LUK 23:14!7 +LUK 23:14!8 +LUK 23:14!9 +LUK 23:14!10 +LUK 23:14!11 +LUK 23:14!12 +LUK 23:14!13 +LUK 23:14!14 +LUK 23:14!15 +LUK 23:14!16 +LUK 23:14!17 +LUK 23:14!18 +LUK 23:14!19 +LUK 23:14!20 +LUK 23:14!21 +LUK 23:14!22 +LUK 23:14!23 +LUK 23:14!24 +LUK 23:14!25 +LUK 23:14!26 +LUK 23:14!27 +LUK 23:14!28 +LUK 23:14!29 +LUK 23:15!1 +LUK 23:15!2 +LUK 23:15!3 +LUK 23:15!5 +LUK 23:15!4 +LUK 23:15!6 +LUK 23:15!7 +LUK 23:15!8 +LUK 23:15!9 +LUK 23:15!10 +LUK 23:15!11 +LUK 23:15!12 +LUK 23:15!13 +LUK 23:15!14 +LUK 23:15!15 +LUK 23:15!16 +LUK 23:16!2 +LUK 23:16!1 +LUK 23:16!3 +LUK 23:16!4 +LUK 23:18!2 +LUK 23:18!1 +LUK 23:18!3 +LUK 23:18!4 +LUK 23:18!5 +LUK 23:18!6 +LUK 23:18!8 +LUK 23:18!7 +LUK 23:18!9 +LUK 23:18!10 +LUK 23:18!11 +LUK 23:19!1 +LUK 23:19!2 +LUK 23:19!12 +LUK 23:19!3 +LUK 23:19!4 +LUK 23:19!5 +LUK 23:19!6 +LUK 23:19!7 +LUK 23:19!8 +LUK 23:19!9 +LUK 23:19!10 +LUK 23:19!11 +LUK 23:19!13 +LUK 23:19!14 +LUK 23:19!15 +LUK 23:20!2 +LUK 23:20!1 +LUK 23:20!3 +LUK 23:20!4 +LUK 23:20!5 +LUK 23:20!6 +LUK 23:20!7 +LUK 23:20!8 +LUK 23:20!9 +LUK 23:20!10 +LUK 23:21!2 +LUK 23:21!1 +LUK 23:21!3 +LUK 23:21!4 +LUK 23:21!5 +LUK 23:21!6 +LUK 23:21!7 +LUK 23:22!2 +LUK 23:22!1 +LUK 23:22!3 +LUK 23:22!4 +LUK 23:22!5 +LUK 23:22!6 +LUK 23:22!8 +LUK 23:22!7 +LUK 23:22!9 +LUK 23:22!10 +LUK 23:22!11 +LUK 23:22!12 +LUK 23:22!13 +LUK 23:22!14 +LUK 23:22!15 +LUK 23:22!16 +LUK 23:22!17 +LUK 23:22!19 +LUK 23:22!18 +LUK 23:22!20 +LUK 23:22!21 +LUK 23:23!2 +LUK 23:23!1 +LUK 23:23!3 +LUK 23:23!4 +LUK 23:23!5 +LUK 23:23!6 +LUK 23:23!7 +LUK 23:23!8 +LUK 23:23!9 +LUK 23:23!10 +LUK 23:23!11 +LUK 23:23!12 +LUK 23:23!13 +LUK 23:24!1 +LUK 23:24!2 +LUK 23:24!3 +LUK 23:24!4 +LUK 23:24!5 +LUK 23:24!6 +LUK 23:24!7 +LUK 23:25!2 +LUK 23:25!1 +LUK 23:25!3 +LUK 23:25!4 +LUK 23:25!5 +LUK 23:25!6 +LUK 23:25!7 +LUK 23:25!8 +LUK 23:25!9 +LUK 23:25!10 +LUK 23:25!11 +LUK 23:25!12 +LUK 23:25!14 +LUK 23:25!13 +LUK 23:25!15 +LUK 23:25!16 +LUK 23:25!17 +LUK 23:25!18 +LUK 23:25!19 +LUK 23:26!1 +LUK 23:26!2 +LUK 23:26!3 +LUK 23:26!4 +LUK 23:26!5 +LUK 23:26!6 +LUK 23:26!7 +LUK 23:26!8 +LUK 23:26!9 +LUK 23:26!10 +LUK 23:26!11 +LUK 23:26!12 +LUK 23:26!13 +LUK 23:26!14 +LUK 23:26!15 +LUK 23:26!16 +LUK 23:26!17 +LUK 23:26!18 +LUK 23:26!19 +LUK 23:27!2 +LUK 23:27!1 +LUK 23:27!3 +LUK 23:27!4 +LUK 23:27!5 +LUK 23:27!6 +LUK 23:27!7 +LUK 23:27!8 +LUK 23:27!9 +LUK 23:27!10 +LUK 23:27!11 +LUK 23:27!12 +LUK 23:27!13 +LUK 23:27!14 +LUK 23:28!2 +LUK 23:28!1 +LUK 23:28!3 +LUK 23:28!4 +LUK 23:28!5 +LUK 23:28!6 +LUK 23:28!7 +LUK 23:28!8 +LUK 23:28!9 +LUK 23:28!10 +LUK 23:28!11 +LUK 23:28!12 +LUK 23:28!13 +LUK 23:28!14 +LUK 23:28!15 +LUK 23:28!16 +LUK 23:28!17 +LUK 23:28!18 +LUK 23:28!19 +LUK 23:28!20 +LUK 23:28!21 +LUK 23:29!1 +LUK 23:29!2 +LUK 23:29!3 +LUK 23:29!4 +LUK 23:29!5 +LUK 23:29!6 +LUK 23:29!7 +LUK 23:29!8 +LUK 23:29!9 +LUK 23:29!10 +LUK 23:29!11 +LUK 23:29!12 +LUK 23:29!13 +LUK 23:29!14 +LUK 23:29!15 +LUK 23:29!16 +LUK 23:29!17 +LUK 23:29!18 +LUK 23:29!19 +LUK 23:29!20 +LUK 23:29!21 +LUK 23:30!1 +LUK 23:30!2 +LUK 23:30!3 +LUK 23:30!4 +LUK 23:30!5 +LUK 23:30!6 +LUK 23:30!7 +LUK 23:30!8 +LUK 23:30!9 +LUK 23:30!10 +LUK 23:30!11 +LUK 23:30!12 +LUK 23:30!13 +LUK 23:31!1 +LUK 23:31!2 +LUK 23:31!3 +LUK 23:31!4 +LUK 23:31!5 +LUK 23:31!6 +LUK 23:31!7 +LUK 23:31!8 +LUK 23:31!9 +LUK 23:31!10 +LUK 23:31!11 +LUK 23:31!12 +LUK 23:32!2 +LUK 23:32!1 +LUK 23:32!3 +LUK 23:32!4 +LUK 23:32!5 +LUK 23:32!6 +LUK 23:32!7 +LUK 23:32!8 +LUK 23:32!9 +LUK 23:33!1 +LUK 23:33!2 +LUK 23:33!3 +LUK 23:33!4 +LUK 23:33!5 +LUK 23:33!6 +LUK 23:33!7 +LUK 23:33!8 +LUK 23:33!9 +LUK 23:33!10 +LUK 23:33!11 +LUK 23:33!12 +LUK 23:33!13 +LUK 23:33!14 +LUK 23:33!15 +LUK 23:33!17 +LUK 23:33!16 +LUK 23:33!18 +LUK 23:33!19 +LUK 23:33!21 +LUK 23:33!20 +LUK 23:33!22 +LUK 23:33!23 +LUK 23:34!2 +LUK 23:34!1 +LUK 23:34!3 +LUK 23:34!4 +LUK 23:34!5 +LUK 23:34!6 +LUK 23:34!7 +LUK 23:34!9 +LUK 23:34!8 +LUK 23:34!10 +LUK 23:34!11 +LUK 23:34!12 +LUK 23:34!14 +LUK 23:34!13 +LUK 23:34!15 +LUK 23:34!16 +LUK 23:34!17 +LUK 23:34!18 +LUK 23:34!19 +LUK 23:35!1 +LUK 23:35!2 +LUK 23:35!3 +LUK 23:35!4 +LUK 23:35!5 +LUK 23:35!7 +LUK 23:35!6 +LUK 23:35!8 +LUK 23:35!9 +LUK 23:35!10 +LUK 23:35!11 +LUK 23:35!12 +LUK 23:35!13 +LUK 23:35!14 +LUK 23:35!15 +LUK 23:35!16 +LUK 23:35!17 +LUK 23:35!18 +LUK 23:35!19 +LUK 23:35!20 +LUK 23:35!21 +LUK 23:35!22 +LUK 23:35!23 +LUK 23:35!24 +LUK 23:36!2 +LUK 23:36!1 +LUK 23:36!3 +LUK 23:36!4 +LUK 23:36!5 +LUK 23:36!6 +LUK 23:36!7 +LUK 23:36!8 +LUK 23:36!9 +LUK 23:36!10 +LUK 23:37!1 +LUK 23:37!2 +LUK 23:37!3 +LUK 23:37!4 +LUK 23:37!5 +LUK 23:37!6 +LUK 23:37!7 +LUK 23:37!8 +LUK 23:37!9 +LUK 23:37!10 +LUK 23:37!11 +LUK 23:38!2 +LUK 23:38!1 +LUK 23:38!3 +LUK 23:38!4 +LUK 23:38!5 +LUK 23:38!6 +LUK 23:38!7 +LUK 23:38!8 +LUK 23:38!9 +LUK 23:38!10 +LUK 23:38!11 +LUK 23:39!2 +LUK 23:39!1 +LUK 23:39!3 +LUK 23:39!4 +LUK 23:39!5 +LUK 23:39!6 +LUK 23:39!7 +LUK 23:39!8 +LUK 23:39!9 +LUK 23:39!10 +LUK 23:39!11 +LUK 23:39!12 +LUK 23:39!13 +LUK 23:39!14 +LUK 23:39!15 +LUK 23:39!16 +LUK 23:40!2 +LUK 23:40!1 +LUK 23:40!3 +LUK 23:40!4 +LUK 23:40!5 +LUK 23:40!6 +LUK 23:40!7 +LUK 23:40!8 +LUK 23:40!9 +LUK 23:40!10 +LUK 23:40!11 +LUK 23:40!12 +LUK 23:40!13 +LUK 23:40!14 +LUK 23:40!15 +LUK 23:40!16 +LUK 23:40!17 +LUK 23:40!18 +LUK 23:41!1 +LUK 23:41!3 +LUK 23:41!2 +LUK 23:41!4 +LUK 23:41!6 +LUK 23:41!5 +LUK 23:41!7 +LUK 23:41!8 +LUK 23:41!9 +LUK 23:41!11 +LUK 23:41!10 +LUK 23:41!12 +LUK 23:41!13 +LUK 23:41!14 +LUK 23:42!1 +LUK 23:42!2 +LUK 23:42!3 +LUK 23:42!4 +LUK 23:42!5 +LUK 23:42!6 +LUK 23:42!7 +LUK 23:42!8 +LUK 23:42!9 +LUK 23:42!10 +LUK 23:42!11 +LUK 23:43!1 +LUK 23:43!2 +LUK 23:43!3 +LUK 23:43!4 +LUK 23:43!5 +LUK 23:43!6 +LUK 23:43!7 +LUK 23:43!8 +LUK 23:43!9 +LUK 23:43!10 +LUK 23:43!11 +LUK 23:43!12 +LUK 23:43!13 +LUK 23:44!1 +LUK 23:44!2 +LUK 23:44!3 +LUK 23:44!4 +LUK 23:44!5 +LUK 23:44!6 +LUK 23:44!7 +LUK 23:44!8 +LUK 23:44!9 +LUK 23:44!10 +LUK 23:44!11 +LUK 23:44!12 +LUK 23:44!13 +LUK 23:44!14 +LUK 23:44!15 +LUK 23:44!16 +LUK 23:45!1 +LUK 23:45!2 +LUK 23:45!3 +LUK 23:45!5 +LUK 23:45!4 +LUK 23:45!6 +LUK 23:45!7 +LUK 23:45!8 +LUK 23:45!9 +LUK 23:45!10 +LUK 23:46!1 +LUK 23:46!2 +LUK 23:46!3 +LUK 23:46!4 +LUK 23:46!5 +LUK 23:46!6 +LUK 23:46!7 +LUK 23:46!8 +LUK 23:46!9 +LUK 23:46!10 +LUK 23:46!11 +LUK 23:46!12 +LUK 23:46!13 +LUK 23:46!14 +LUK 23:46!15 +LUK 23:46!17 +LUK 23:46!16 +LUK 23:46!18 +LUK 23:46!19 +LUK 23:47!2 +LUK 23:47!3 +LUK 23:47!4 +LUK 23:47!1 +LUK 23:47!5 +LUK 23:47!6 +LUK 23:47!7 +LUK 23:47!8 +LUK 23:47!9 +LUK 23:47!10 +LUK 23:47!11 +LUK 23:47!12 +LUK 23:47!13 +LUK 23:47!14 +LUK 23:47!15 +LUK 23:47!16 +LUK 23:48!1 +LUK 23:48!2 +LUK 23:48!3 +LUK 23:48!4 +LUK 23:48!6 +LUK 23:48!7 +LUK 23:48!8 +LUK 23:48!9 +LUK 23:48!5 +LUK 23:48!10 +LUK 23:48!11 +LUK 23:48!12 +LUK 23:48!13 +LUK 23:48!14 +LUK 23:48!15 +LUK 23:48!16 +LUK 23:49!2 +LUK 23:49!1 +LUK 23:49!7 +LUK 23:49!8 +LUK 23:49!3 +LUK 23:49!4 +LUK 23:49!5 +LUK 23:49!6 +LUK 23:49!9 +LUK 23:49!10 +LUK 23:49!11 +LUK 23:49!12 +LUK 23:49!13 +LUK 23:49!14 +LUK 23:49!15 +LUK 23:49!16 +LUK 23:49!17 +LUK 23:49!18 +LUK 23:50!1 +LUK 23:50!2 +LUK 23:50!3 +LUK 23:50!4 +LUK 23:50!5 +LUK 23:50!7 +LUK 23:50!6 +LUK 23:50!8 +LUK 23:50!9 +LUK 23:50!10 +LUK 23:50!11 +LUK 23:51!1 +LUK 23:51!2 +LUK 23:51!3 +LUK 23:51!4 +LUK 23:51!5 +LUK 23:51!6 +LUK 23:51!7 +LUK 23:51!8 +LUK 23:51!9 +LUK 23:51!10 +LUK 23:51!11 +LUK 23:51!12 +LUK 23:51!13 +LUK 23:51!14 +LUK 23:51!15 +LUK 23:51!16 +LUK 23:51!17 +LUK 23:51!18 +LUK 23:51!19 +LUK 23:51!20 +LUK 23:51!21 +LUK 23:52!1 +LUK 23:52!2 +LUK 23:52!3 +LUK 23:52!4 +LUK 23:52!5 +LUK 23:52!6 +LUK 23:52!7 +LUK 23:52!8 +LUK 23:52!9 +LUK 23:53!1 +LUK 23:53!2 +LUK 23:53!3 +LUK 23:53!4 +LUK 23:53!5 +LUK 23:53!6 +LUK 23:53!7 +LUK 23:53!8 +LUK 23:53!9 +LUK 23:53!10 +LUK 23:53!11 +LUK 23:53!12 +LUK 23:53!13 +LUK 23:53!14 +LUK 23:53!17 +LUK 23:53!15 +LUK 23:53!16 +LUK 23:54!1 +LUK 23:54!2 +LUK 23:54!4 +LUK 23:54!3 +LUK 23:54!5 +LUK 23:54!6 +LUK 23:54!7 +LUK 23:55!2 +LUK 23:55!1 +LUK 23:55!3 +LUK 23:55!4 +LUK 23:55!5 +LUK 23:55!6 +LUK 23:55!7 +LUK 23:55!8 +LUK 23:55!9 +LUK 23:55!10 +LUK 23:55!11 +LUK 23:55!12 +LUK 23:55!13 +LUK 23:55!14 +LUK 23:55!15 +LUK 23:55!16 +LUK 23:55!17 +LUK 23:55!18 +LUK 23:55!19 +LUK 23:55!20 +LUK 23:56!2 +LUK 23:56!1 +LUK 23:56!3 +LUK 23:56!4 +LUK 23:56!5 +LUK 23:56!6 +LUK 23:56!7 +LUK 23:56!9 +LUK 23:56!8 +LUK 23:56!10 +LUK 23:56!11 +LUK 23:56!12 +LUK 23:56!13 +LUK 23:56!14 +LUK 24:1!2 +LUK 24:1!1 +LUK 24:1!3 +LUK 24:1!4 +LUK 24:1!5 +LUK 24:1!6 +LUK 24:1!7 +LUK 24:1!8 +LUK 24:1!9 +LUK 24:1!10 +LUK 24:1!11 +LUK 24:1!12 +LUK 24:1!13 +LUK 24:1!14 +LUK 24:1!15 +LUK 24:2!2 +LUK 24:2!1 +LUK 24:2!3 +LUK 24:2!4 +LUK 24:2!5 +LUK 24:2!6 +LUK 24:2!7 +LUK 24:2!8 +LUK 24:3!2 +LUK 24:3!1 +LUK 24:3!3 +LUK 24:3!4 +LUK 24:3!5 +LUK 24:3!6 +LUK 24:3!7 +LUK 24:3!8 +LUK 24:3!9 +LUK 24:4!1 +LUK 24:4!2 +LUK 24:4!3 +LUK 24:4!4 +LUK 24:4!5 +LUK 24:4!6 +LUK 24:4!7 +LUK 24:4!8 +LUK 24:4!9 +LUK 24:4!10 +LUK 24:4!11 +LUK 24:4!12 +LUK 24:4!13 +LUK 24:4!14 +LUK 24:4!15 +LUK 24:4!16 +LUK 24:4!17 +LUK 24:5!2 +LUK 24:5!1 +LUK 24:5!3 +LUK 24:5!4 +LUK 24:5!5 +LUK 24:5!6 +LUK 24:5!7 +LUK 24:5!8 +LUK 24:5!9 +LUK 24:5!10 +LUK 24:5!11 +LUK 24:5!12 +LUK 24:5!13 +LUK 24:5!14 +LUK 24:5!15 +LUK 24:5!16 +LUK 24:5!17 +LUK 24:5!18 +LUK 24:5!19 +LUK 24:5!20 +LUK 24:5!21 +LUK 24:6!1 +LUK 24:6!2 +LUK 24:6!3 +LUK 24:6!4 +LUK 24:6!5 +LUK 24:6!6 +LUK 24:6!7 +LUK 24:6!8 +LUK 24:6!9 +LUK 24:6!10 +LUK 24:6!11 +LUK 24:6!12 +LUK 24:6!13 +LUK 24:6!14 +LUK 24:7!1 +LUK 24:7!6 +LUK 24:7!7 +LUK 24:7!2 +LUK 24:7!3 +LUK 24:7!4 +LUK 24:7!5 +LUK 24:7!8 +LUK 24:7!9 +LUK 24:7!10 +LUK 24:7!11 +LUK 24:7!12 +LUK 24:7!13 +LUK 24:7!14 +LUK 24:7!15 +LUK 24:7!16 +LUK 24:7!17 +LUK 24:7!18 +LUK 24:7!19 +LUK 24:8!1 +LUK 24:8!2 +LUK 24:8!3 +LUK 24:8!4 +LUK 24:8!5 +LUK 24:9!1 +LUK 24:9!2 +LUK 24:9!3 +LUK 24:9!4 +LUK 24:9!5 +LUK 24:9!6 +LUK 24:9!7 +LUK 24:9!8 +LUK 24:9!9 +LUK 24:9!10 +LUK 24:9!11 +LUK 24:9!12 +LUK 24:9!13 +LUK 24:9!14 +LUK 24:10!2 +LUK 24:10!1 +LUK 24:10!3 +LUK 24:10!4 +LUK 24:10!5 +LUK 24:10!6 +LUK 24:10!7 +LUK 24:10!8 +LUK 24:10!9 +LUK 24:10!10 +LUK 24:10!11 +LUK 24:10!12 +LUK 24:10!13 +LUK 24:10!14 +LUK 24:10!15 +LUK 24:10!16 +LUK 24:10!17 +LUK 24:10!18 +LUK 24:10!19 +LUK 24:10!20 +LUK 24:10!21 +LUK 24:11!1 +LUK 24:11!2 +LUK 24:11!3 +LUK 24:11!4 +LUK 24:11!5 +LUK 24:11!6 +LUK 24:11!7 +LUK 24:11!8 +LUK 24:11!9 +LUK 24:11!10 +LUK 24:11!11 +LUK 24:11!12 +LUK 24:12!2 +LUK 24:12!1 +LUK 24:12!3 +LUK 24:12!4 +LUK 24:12!5 +LUK 24:12!6 +LUK 24:12!7 +LUK 24:12!8 +LUK 24:12!9 +LUK 24:12!10 +LUK 24:12!11 +LUK 24:12!12 +LUK 24:12!13 +LUK 24:12!14 +LUK 24:12!15 +LUK 24:12!16 +LUK 24:12!17 +LUK 24:12!18 +LUK 24:12!19 +LUK 24:12!20 +LUK 24:12!21 +LUK 24:13!1 +LUK 24:13!2 +LUK 24:13!3 +LUK 24:13!4 +LUK 24:13!5 +LUK 24:13!6 +LUK 24:13!7 +LUK 24:13!8 +LUK 24:13!9 +LUK 24:13!10 +LUK 24:13!11 +LUK 24:13!12 +LUK 24:13!13 +LUK 24:13!14 +LUK 24:13!15 +LUK 24:13!16 +LUK 24:13!17 +LUK 24:13!18 +LUK 24:13!19 +LUK 24:13!20 +LUK 24:13!21 +LUK 24:14!1 +LUK 24:14!2 +LUK 24:14!3 +LUK 24:14!4 +LUK 24:14!5 +LUK 24:14!6 +LUK 24:14!7 +LUK 24:14!8 +LUK 24:14!9 +LUK 24:14!10 +LUK 24:15!1 +LUK 24:15!2 +LUK 24:15!3 +LUK 24:15!4 +LUK 24:15!5 +LUK 24:15!6 +LUK 24:15!7 +LUK 24:15!8 +LUK 24:15!9 +LUK 24:15!10 +LUK 24:15!11 +LUK 24:15!12 +LUK 24:15!13 +LUK 24:15!14 +LUK 24:16!2 +LUK 24:16!1 +LUK 24:16!3 +LUK 24:16!4 +LUK 24:16!5 +LUK 24:16!6 +LUK 24:16!7 +LUK 24:16!8 +LUK 24:16!9 +LUK 24:17!2 +LUK 24:17!1 +LUK 24:17!3 +LUK 24:17!4 +LUK 24:17!5 +LUK 24:17!6 +LUK 24:17!7 +LUK 24:17!8 +LUK 24:17!9 +LUK 24:17!10 +LUK 24:17!11 +LUK 24:17!12 +LUK 24:17!13 +LUK 24:17!14 +LUK 24:17!15 +LUK 24:17!16 +LUK 24:18!2 +LUK 24:18!1 +LUK 24:18!3 +LUK 24:18!4 +LUK 24:18!5 +LUK 24:18!6 +LUK 24:18!7 +LUK 24:18!8 +LUK 24:18!9 +LUK 24:18!10 +LUK 24:18!11 +LUK 24:18!12 +LUK 24:18!13 +LUK 24:18!14 +LUK 24:18!15 +LUK 24:18!16 +LUK 24:18!17 +LUK 24:18!18 +LUK 24:18!19 +LUK 24:18!20 +LUK 24:18!21 +LUK 24:18!22 +LUK 24:18!23 +LUK 24:19!1 +LUK 24:19!2 +LUK 24:19!3 +LUK 24:19!4 +LUK 24:19!6 +LUK 24:19!5 +LUK 24:19!7 +LUK 24:19!8 +LUK 24:19!9 +LUK 24:19!10 +LUK 24:19!11 +LUK 24:19!12 +LUK 24:19!13 +LUK 24:19!14 +LUK 24:19!15 +LUK 24:19!16 +LUK 24:19!17 +LUK 24:19!18 +LUK 24:19!19 +LUK 24:19!20 +LUK 24:19!21 +LUK 24:19!22 +LUK 24:19!23 +LUK 24:19!24 +LUK 24:19!25 +LUK 24:19!26 +LUK 24:19!27 +LUK 24:19!28 +LUK 24:19!29 +LUK 24:20!2 +LUK 24:20!1 +LUK 24:20!3 +LUK 24:20!4 +LUK 24:20!5 +LUK 24:20!6 +LUK 24:20!7 +LUK 24:20!8 +LUK 24:20!9 +LUK 24:20!10 +LUK 24:20!11 +LUK 24:20!12 +LUK 24:20!13 +LUK 24:20!14 +LUK 24:20!15 +LUK 24:20!16 +LUK 24:21!2 +LUK 24:21!1 +LUK 24:21!3 +LUK 24:21!4 +LUK 24:21!5 +LUK 24:21!6 +LUK 24:21!7 +LUK 24:21!8 +LUK 24:21!9 +LUK 24:21!10 +LUK 24:21!11 +LUK 24:21!12 +LUK 24:21!13 +LUK 24:21!14 +LUK 24:21!15 +LUK 24:21!16 +LUK 24:21!17 +LUK 24:21!18 +LUK 24:21!19 +LUK 24:21!20 +LUK 24:21!21 +LUK 24:21!22 +LUK 24:21!23 +LUK 24:21!24 +LUK 24:21!25 +LUK 24:22!1 +LUK 24:22!2 +LUK 24:22!3 +LUK 24:22!4 +LUK 24:22!5 +LUK 24:22!6 +LUK 24:22!7 +LUK 24:22!8 +LUK 24:22!9 +LUK 24:22!10 +LUK 24:22!11 +LUK 24:22!12 +LUK 24:22!13 +LUK 24:23!1 +LUK 24:23!2 +LUK 24:23!3 +LUK 24:23!4 +LUK 24:23!5 +LUK 24:23!6 +LUK 24:23!7 +LUK 24:23!8 +LUK 24:23!9 +LUK 24:23!10 +LUK 24:23!11 +LUK 24:23!12 +LUK 24:23!13 +LUK 24:23!14 +LUK 24:23!15 +LUK 24:23!16 +LUK 24:24!1 +LUK 24:24!2 +LUK 24:24!3 +LUK 24:24!4 +LUK 24:24!5 +LUK 24:24!6 +LUK 24:24!7 +LUK 24:24!8 +LUK 24:24!9 +LUK 24:24!10 +LUK 24:24!11 +LUK 24:24!12 +LUK 24:24!13 +LUK 24:24!14 +LUK 24:24!15 +LUK 24:24!16 +LUK 24:24!17 +LUK 24:24!19 +LUK 24:24!18 +LUK 24:24!20 +LUK 24:24!21 +LUK 24:25!1 +LUK 24:25!2 +LUK 24:25!3 +LUK 24:25!4 +LUK 24:25!5 +LUK 24:25!6 +LUK 24:25!7 +LUK 24:25!8 +LUK 24:25!9 +LUK 24:25!10 +LUK 24:25!11 +LUK 24:25!12 +LUK 24:25!13 +LUK 24:25!14 +LUK 24:25!15 +LUK 24:25!16 +LUK 24:25!17 +LUK 24:25!18 +LUK 24:25!19 +LUK 24:26!1 +LUK 24:26!3 +LUK 24:26!2 +LUK 24:26!4 +LUK 24:26!5 +LUK 24:26!6 +LUK 24:26!7 +LUK 24:26!8 +LUK 24:26!9 +LUK 24:26!10 +LUK 24:26!11 +LUK 24:26!12 +LUK 24:27!1 +LUK 24:27!2 +LUK 24:27!3 +LUK 24:27!4 +LUK 24:27!5 +LUK 24:27!6 +LUK 24:27!7 +LUK 24:27!8 +LUK 24:27!9 +LUK 24:27!10 +LUK 24:27!11 +LUK 24:27!12 +LUK 24:27!13 +LUK 24:27!14 +LUK 24:27!15 +LUK 24:27!16 +LUK 24:27!17 +LUK 24:27!18 +LUK 24:28!1 +LUK 24:28!2 +LUK 24:28!3 +LUK 24:28!4 +LUK 24:28!5 +LUK 24:28!6 +LUK 24:28!7 +LUK 24:28!8 +LUK 24:28!9 +LUK 24:28!10 +LUK 24:28!11 +LUK 24:28!12 +LUK 24:29!1 +LUK 24:29!2 +LUK 24:29!3 +LUK 24:29!4 +LUK 24:29!5 +LUK 24:29!6 +LUK 24:29!7 +LUK 24:29!8 +LUK 24:29!9 +LUK 24:29!10 +LUK 24:29!11 +LUK 24:29!12 +LUK 24:29!13 +LUK 24:29!14 +LUK 24:29!15 +LUK 24:29!16 +LUK 24:29!17 +LUK 24:29!18 +LUK 24:29!19 +LUK 24:29!20 +LUK 24:29!21 +LUK 24:29!22 +LUK 24:30!1 +LUK 24:30!2 +LUK 24:30!3 +LUK 24:30!4 +LUK 24:30!5 +LUK 24:30!6 +LUK 24:30!7 +LUK 24:30!8 +LUK 24:30!9 +LUK 24:30!10 +LUK 24:30!11 +LUK 24:30!12 +LUK 24:30!13 +LUK 24:30!14 +LUK 24:30!15 +LUK 24:30!16 +LUK 24:31!2 +LUK 24:31!1 +LUK 24:31!4 +LUK 24:31!5 +LUK 24:31!3 +LUK 24:31!6 +LUK 24:31!7 +LUK 24:31!8 +LUK 24:31!9 +LUK 24:31!10 +LUK 24:31!11 +LUK 24:31!12 +LUK 24:31!13 +LUK 24:31!14 +LUK 24:32!1 +LUK 24:32!2 +LUK 24:32!3 +LUK 24:32!4 +LUK 24:32!5 +LUK 24:32!6 +LUK 24:32!7 +LUK 24:32!8 +LUK 24:32!9 +LUK 24:32!10 +LUK 24:32!11 +LUK 24:32!12 +LUK 24:32!13 +LUK 24:32!14 +LUK 24:32!15 +LUK 24:32!16 +LUK 24:32!17 +LUK 24:32!18 +LUK 24:32!19 +LUK 24:32!20 +LUK 24:32!21 +LUK 24:32!22 +LUK 24:32!23 +LUK 24:33!1 +LUK 24:33!2 +LUK 24:33!3 +LUK 24:33!4 +LUK 24:33!5 +LUK 24:33!6 +LUK 24:33!7 +LUK 24:33!8 +LUK 24:33!9 +LUK 24:33!10 +LUK 24:33!11 +LUK 24:33!12 +LUK 24:33!13 +LUK 24:33!14 +LUK 24:33!15 +LUK 24:33!16 +LUK 24:33!17 +LUK 24:34!1 +LUK 24:34!2 +LUK 24:34!3 +LUK 24:34!4 +LUK 24:34!5 +LUK 24:34!6 +LUK 24:34!7 +LUK 24:34!8 +LUK 24:34!9 +LUK 24:35!1 +LUK 24:35!2 +LUK 24:35!3 +LUK 24:35!4 +LUK 24:35!5 +LUK 24:35!6 +LUK 24:35!7 +LUK 24:35!8 +LUK 24:35!9 +LUK 24:35!10 +LUK 24:35!11 +LUK 24:35!12 +LUK 24:35!13 +LUK 24:35!14 +LUK 24:35!15 +LUK 24:35!16 +LUK 24:36!2 +LUK 24:36!1 +LUK 24:36!3 +LUK 24:36!4 +LUK 24:36!5 +LUK 24:36!6 +LUK 24:36!7 +LUK 24:36!8 +LUK 24:36!9 +LUK 24:36!10 +LUK 24:36!11 +LUK 24:36!12 +LUK 24:36!13 +LUK 24:36!14 +LUK 24:37!2 +LUK 24:37!1 +LUK 24:37!3 +LUK 24:37!4 +LUK 24:37!5 +LUK 24:37!6 +LUK 24:37!7 +LUK 24:37!8 +LUK 24:38!1 +LUK 24:38!2 +LUK 24:38!3 +LUK 24:38!4 +LUK 24:38!5 +LUK 24:38!6 +LUK 24:38!7 +LUK 24:38!8 +LUK 24:38!9 +LUK 24:38!10 +LUK 24:38!11 +LUK 24:38!12 +LUK 24:38!13 +LUK 24:38!14 +LUK 24:38!15 +LUK 24:39!1 +LUK 24:39!2 +LUK 24:39!3 +LUK 24:39!4 +LUK 24:39!5 +LUK 24:39!6 +LUK 24:39!7 +LUK 24:39!8 +LUK 24:39!9 +LUK 24:39!10 +LUK 24:39!11 +LUK 24:39!12 +LUK 24:39!13 +LUK 24:39!14 +LUK 24:39!15 +LUK 24:39!16 +LUK 24:39!17 +LUK 24:39!18 +LUK 24:39!19 +LUK 24:39!20 +LUK 24:39!21 +LUK 24:39!22 +LUK 24:39!23 +LUK 24:39!24 +LUK 24:39!25 +LUK 24:39!27 +LUK 24:39!26 +LUK 24:40!1 +LUK 24:40!2 +LUK 24:40!3 +LUK 24:40!4 +LUK 24:40!5 +LUK 24:40!6 +LUK 24:40!7 +LUK 24:40!8 +LUK 24:40!9 +LUK 24:40!10 +LUK 24:41!2 +LUK 24:41!1 +LUK 24:41!3 +LUK 24:41!4 +LUK 24:41!5 +LUK 24:41!6 +LUK 24:41!7 +LUK 24:41!8 +LUK 24:41!9 +LUK 24:41!10 +LUK 24:41!11 +LUK 24:41!12 +LUK 24:41!13 +LUK 24:41!14 +LUK 24:41!15 +LUK 24:42!2 +LUK 24:42!1 +LUK 24:42!3 +LUK 24:42!4 +LUK 24:42!5 +LUK 24:42!6 +LUK 24:42!7 +LUK 24:43!1 +LUK 24:43!2 +LUK 24:43!3 +LUK 24:43!4 +LUK 24:43!5 +LUK 24:44!2 +LUK 24:44!1 +LUK 24:44!3 +LUK 24:44!4 +LUK 24:44!5 +LUK 24:44!6 +LUK 24:44!7 +LUK 24:44!8 +LUK 24:44!9 +LUK 24:44!10 +LUK 24:44!11 +LUK 24:44!12 +LUK 24:44!13 +LUK 24:44!14 +LUK 24:44!15 +LUK 24:44!16 +LUK 24:44!17 +LUK 24:44!18 +LUK 24:44!19 +LUK 24:44!20 +LUK 24:44!21 +LUK 24:44!22 +LUK 24:44!23 +LUK 24:44!24 +LUK 24:44!25 +LUK 24:44!26 +LUK 24:44!27 +LUK 24:44!28 +LUK 24:44!29 +LUK 24:44!30 +LUK 24:44!31 +LUK 24:44!32 +LUK 24:44!33 +LUK 24:45!1 +LUK 24:45!2 +LUK 24:45!3 +LUK 24:45!4 +LUK 24:45!5 +LUK 24:45!6 +LUK 24:45!7 +LUK 24:45!8 +LUK 24:45!9 +LUK 24:45!10 +LUK 24:45!11 +LUK 24:45!12 +LUK 24:46!1 +LUK 24:46!2 +LUK 24:46!3 +LUK 24:46!4 +LUK 24:46!5 +LUK 24:46!6 +LUK 24:46!7 +LUK 24:46!8 +LUK 24:46!9 +LUK 24:46!10 +LUK 24:46!11 +LUK 24:46!12 +LUK 24:46!13 +LUK 24:47!1 +LUK 24:47!2 +LUK 24:47!3 +LUK 24:47!4 +LUK 24:47!5 +LUK 24:47!6 +LUK 24:47!7 +LUK 24:47!8 +LUK 24:47!9 +LUK 24:47!10 +LUK 24:47!11 +LUK 24:47!12 +LUK 24:47!13 +LUK 24:47!14 +LUK 24:47!15 +LUK 24:47!16 +LUK 24:47!17 +LUK 24:48!1 +LUK 24:48!2 +LUK 24:48!3 +LUK 24:49!1 +LUK 24:49!2 +LUK 24:49!3 +LUK 24:49!4 +LUK 24:49!5 +LUK 24:49!6 +LUK 24:49!7 +LUK 24:49!8 +LUK 24:49!9 +LUK 24:49!10 +LUK 24:49!11 +LUK 24:49!13 +LUK 24:49!12 +LUK 24:49!14 +LUK 24:49!15 +LUK 24:49!16 +LUK 24:49!17 +LUK 24:49!18 +LUK 24:49!19 +LUK 24:49!20 +LUK 24:49!21 +LUK 24:49!22 +LUK 24:49!23 +LUK 24:50!2 +LUK 24:50!1 +LUK 24:50!3 +LUK 24:50!4 +LUK 24:50!5 +LUK 24:50!6 +LUK 24:50!7 +LUK 24:50!8 +LUK 24:50!9 +LUK 24:50!10 +LUK 24:50!11 +LUK 24:50!12 +LUK 24:50!13 +LUK 24:51!1 +LUK 24:51!2 +LUK 24:51!3 +LUK 24:51!4 +LUK 24:51!5 +LUK 24:51!6 +LUK 24:51!7 +LUK 24:51!8 +LUK 24:51!9 +LUK 24:51!10 +LUK 24:51!11 +LUK 24:51!12 +LUK 24:51!13 +LUK 24:51!14 +LUK 24:51!15 +LUK 24:52!1 +LUK 24:52!2 +LUK 24:52!3 +LUK 24:52!4 +LUK 24:52!5 +LUK 24:52!6 +LUK 24:52!7 +LUK 24:52!8 +LUK 24:52!9 +LUK 24:52!10 +LUK 24:53!1 +LUK 24:53!2 +LUK 24:53!8 +LUK 24:53!3 +LUK 24:53!4 +LUK 24:53!5 +LUK 24:53!6 +LUK 24:53!7 +LUK 24:53!9 +LUK 24:53!10 +JHN 1:1!1 +JHN 1:1!2 +JHN 1:1!3 +JHN 1:1!4 +JHN 1:1!5 +JHN 1:1!6 +JHN 1:1!7 +JHN 1:1!8 +JHN 1:1!9 +JHN 1:1!10 +JHN 1:1!11 +JHN 1:1!12 +JHN 1:1!13 +JHN 1:1!14 +JHN 1:1!15 +JHN 1:1!16 +JHN 1:1!17 +JHN 1:2!1 +JHN 1:2!2 +JHN 1:2!3 +JHN 1:2!4 +JHN 1:2!5 +JHN 1:2!6 +JHN 1:2!7 +JHN 1:3!1 +JHN 1:3!2 +JHN 1:3!3 +JHN 1:3!4 +JHN 1:3!5 +JHN 1:3!6 +JHN 1:3!7 +JHN 1:3!8 +JHN 1:3!9 +JHN 1:3!10 +JHN 1:3!11 +JHN 1:3!12 +JHN 1:4!1 +JHN 1:4!2 +JHN 1:4!3 +JHN 1:4!4 +JHN 1:4!5 +JHN 1:4!6 +JHN 1:4!7 +JHN 1:4!8 +JHN 1:4!9 +JHN 1:4!10 +JHN 1:4!11 +JHN 1:4!12 +JHN 1:5!1 +JHN 1:5!2 +JHN 1:5!3 +JHN 1:5!4 +JHN 1:5!5 +JHN 1:5!6 +JHN 1:5!7 +JHN 1:5!8 +JHN 1:5!9 +JHN 1:5!10 +JHN 1:5!11 +JHN 1:5!12 +JHN 1:5!13 +JHN 1:6!1 +JHN 1:6!2 +JHN 1:6!3 +JHN 1:6!4 +JHN 1:6!5 +JHN 1:6!6 +JHN 1:6!7 +JHN 1:6!8 +JHN 1:7!1 +JHN 1:7!2 +JHN 1:7!3 +JHN 1:7!4 +JHN 1:7!5 +JHN 1:7!6 +JHN 1:7!7 +JHN 1:7!8 +JHN 1:7!9 +JHN 1:7!10 +JHN 1:7!11 +JHN 1:7!12 +JHN 1:7!13 +JHN 1:7!14 +JHN 1:8!1 +JHN 1:8!2 +JHN 1:8!3 +JHN 1:8!4 +JHN 1:8!5 +JHN 1:8!6 +JHN 1:8!7 +JHN 1:8!8 +JHN 1:8!9 +JHN 1:8!10 +JHN 1:8!11 +JHN 1:9!2 +JHN 1:9!3 +JHN 1:9!4 +JHN 1:9!5 +JHN 1:9!6 +JHN 1:9!7 +JHN 1:9!8 +JHN 1:9!9 +JHN 1:9!1 +JHN 1:9!10 +JHN 1:9!11 +JHN 1:9!12 +JHN 1:9!13 +JHN 1:10!1 +JHN 1:10!2 +JHN 1:10!3 +JHN 1:10!4 +JHN 1:10!5 +JHN 1:10!6 +JHN 1:10!7 +JHN 1:10!8 +JHN 1:10!9 +JHN 1:10!10 +JHN 1:10!11 +JHN 1:10!12 +JHN 1:10!13 +JHN 1:10!14 +JHN 1:10!15 +JHN 1:10!16 +JHN 1:11!1 +JHN 1:11!2 +JHN 1:11!3 +JHN 1:11!4 +JHN 1:11!5 +JHN 1:11!6 +JHN 1:11!7 +JHN 1:11!8 +JHN 1:11!9 +JHN 1:11!10 +JHN 1:12!2 +JHN 1:12!1 +JHN 1:12!3 +JHN 1:12!4 +JHN 1:12!5 +JHN 1:12!7 +JHN 1:12!8 +JHN 1:12!9 +JHN 1:12!10 +JHN 1:12!6 +JHN 1:12!11 +JHN 1:12!12 +JHN 1:12!13 +JHN 1:12!14 +JHN 1:12!15 +JHN 1:12!16 +JHN 1:13!1 +JHN 1:13!2 +JHN 1:13!3 +JHN 1:13!4 +JHN 1:13!5 +JHN 1:13!6 +JHN 1:13!7 +JHN 1:13!8 +JHN 1:13!9 +JHN 1:13!10 +JHN 1:13!11 +JHN 1:13!12 +JHN 1:13!13 +JHN 1:13!14 +JHN 1:13!15 +JHN 1:13!16 +JHN 1:14!1 +JHN 1:14!2 +JHN 1:14!3 +JHN 1:14!4 +JHN 1:14!5 +JHN 1:14!6 +JHN 1:14!7 +JHN 1:14!8 +JHN 1:14!9 +JHN 1:14!10 +JHN 1:14!11 +JHN 1:14!12 +JHN 1:14!13 +JHN 1:14!14 +JHN 1:14!15 +JHN 1:14!16 +JHN 1:14!17 +JHN 1:14!18 +JHN 1:14!19 +JHN 1:14!20 +JHN 1:14!21 +JHN 1:14!22 +JHN 1:14!23 +JHN 1:15!1 +JHN 1:15!2 +JHN 1:15!3 +JHN 1:15!4 +JHN 1:15!5 +JHN 1:15!6 +JHN 1:15!7 +JHN 1:15!8 +JHN 1:15!9 +JHN 1:15!10 +JHN 1:15!11 +JHN 1:15!12 +JHN 1:15!13 +JHN 1:15!14 +JHN 1:15!15 +JHN 1:15!16 +JHN 1:15!17 +JHN 1:15!18 +JHN 1:15!19 +JHN 1:15!20 +JHN 1:15!21 +JHN 1:15!22 +JHN 1:16!1 +JHN 1:16!2 +JHN 1:16!3 +JHN 1:16!4 +JHN 1:16!5 +JHN 1:16!6 +JHN 1:16!7 +JHN 1:16!8 +JHN 1:16!9 +JHN 1:16!10 +JHN 1:16!11 +JHN 1:16!12 +JHN 1:17!1 +JHN 1:17!2 +JHN 1:17!3 +JHN 1:17!4 +JHN 1:17!5 +JHN 1:17!6 +JHN 1:17!7 +JHN 1:17!8 +JHN 1:17!9 +JHN 1:17!10 +JHN 1:17!11 +JHN 1:17!12 +JHN 1:17!13 +JHN 1:17!14 +JHN 1:17!15 +JHN 1:18!1 +JHN 1:18!2 +JHN 1:18!3 +JHN 1:18!4 +JHN 1:18!5 +JHN 1:18!6 +JHN 1:18!7 +JHN 1:18!8 +JHN 1:18!9 +JHN 1:18!10 +JHN 1:18!11 +JHN 1:18!12 +JHN 1:18!13 +JHN 1:18!14 +JHN 1:18!15 +JHN 1:19!1 +JHN 1:19!2 +JHN 1:19!3 +JHN 1:19!4 +JHN 1:19!5 +JHN 1:19!6 +JHN 1:19!7 +JHN 1:19!8 +JHN 1:19!9 +JHN 1:19!10 +JHN 1:19!11 +JHN 1:19!12 +JHN 1:19!13 +JHN 1:19!14 +JHN 1:19!15 +JHN 1:19!16 +JHN 1:19!17 +JHN 1:19!18 +JHN 1:19!19 +JHN 1:19!20 +JHN 1:19!21 +JHN 1:19!22 +JHN 1:19!23 +JHN 1:19!24 +JHN 1:20!1 +JHN 1:20!2 +JHN 1:20!3 +JHN 1:20!4 +JHN 1:20!5 +JHN 1:20!6 +JHN 1:20!7 +JHN 1:20!8 +JHN 1:20!9 +JHN 1:20!10 +JHN 1:20!11 +JHN 1:20!12 +JHN 1:20!13 +JHN 1:21!1 +JHN 1:21!2 +JHN 1:21!3 +JHN 1:21!5 +JHN 1:21!4 +JHN 1:21!6 +JHN 1:21!7 +JHN 1:21!8 +JHN 1:21!9 +JHN 1:21!10 +JHN 1:21!11 +JHN 1:21!12 +JHN 1:21!13 +JHN 1:21!14 +JHN 1:21!15 +JHN 1:21!16 +JHN 1:21!17 +JHN 1:21!18 +JHN 1:21!19 +JHN 1:22!2 +JHN 1:22!1 +JHN 1:22!3 +JHN 1:22!4 +JHN 1:22!5 +JHN 1:22!6 +JHN 1:22!7 +JHN 1:22!8 +JHN 1:22!9 +JHN 1:22!10 +JHN 1:22!11 +JHN 1:22!12 +JHN 1:22!13 +JHN 1:22!14 +JHN 1:22!15 +JHN 1:23!1 +JHN 1:23!2 +JHN 1:23!3 +JHN 1:23!4 +JHN 1:23!5 +JHN 1:23!6 +JHN 1:23!7 +JHN 1:23!8 +JHN 1:23!9 +JHN 1:23!10 +JHN 1:23!11 +JHN 1:23!12 +JHN 1:23!13 +JHN 1:23!14 +JHN 1:23!15 +JHN 1:23!16 +JHN 1:24!1 +JHN 1:24!2 +JHN 1:24!3 +JHN 1:24!4 +JHN 1:24!5 +JHN 1:24!6 +JHN 1:25!1 +JHN 1:25!2 +JHN 1:25!3 +JHN 1:25!4 +JHN 1:25!5 +JHN 1:25!6 +JHN 1:25!8 +JHN 1:25!7 +JHN 1:25!9 +JHN 1:25!10 +JHN 1:25!11 +JHN 1:25!12 +JHN 1:25!13 +JHN 1:25!14 +JHN 1:25!15 +JHN 1:25!16 +JHN 1:25!17 +JHN 1:25!18 +JHN 1:25!19 +JHN 1:25!20 +JHN 1:26!1 +JHN 1:26!2 +JHN 1:26!3 +JHN 1:26!4 +JHN 1:26!5 +JHN 1:26!6 +JHN 1:26!7 +JHN 1:26!8 +JHN 1:26!9 +JHN 1:26!10 +JHN 1:26!11 +JHN 1:26!12 +JHN 1:26!13 +JHN 1:26!14 +JHN 1:26!15 +JHN 1:26!16 +JHN 1:27!1 +JHN 1:27!2 +JHN 1:27!3 +JHN 1:27!4 +JHN 1:27!5 +JHN 1:27!6 +JHN 1:27!7 +JHN 1:27!8 +JHN 1:27!9 +JHN 1:27!10 +JHN 1:27!11 +JHN 1:27!12 +JHN 1:27!13 +JHN 1:27!14 +JHN 1:27!15 +JHN 1:27!16 +JHN 1:28!1 +JHN 1:28!2 +JHN 1:28!3 +JHN 1:28!4 +JHN 1:28!5 +JHN 1:28!6 +JHN 1:28!7 +JHN 1:28!8 +JHN 1:28!9 +JHN 1:28!12 +JHN 1:28!10 +JHN 1:28!11 +JHN 1:29!1 +JHN 1:29!2 +JHN 1:29!3 +JHN 1:29!4 +JHN 1:29!5 +JHN 1:29!6 +JHN 1:29!7 +JHN 1:29!8 +JHN 1:29!9 +JHN 1:29!10 +JHN 1:29!11 +JHN 1:29!12 +JHN 1:29!13 +JHN 1:29!14 +JHN 1:29!15 +JHN 1:29!16 +JHN 1:29!17 +JHN 1:29!18 +JHN 1:29!19 +JHN 1:29!20 +JHN 1:29!21 +JHN 1:30!1 +JHN 1:30!2 +JHN 1:30!3 +JHN 1:30!4 +JHN 1:30!5 +JHN 1:30!6 +JHN 1:30!7 +JHN 1:30!8 +JHN 1:30!9 +JHN 1:30!10 +JHN 1:30!11 +JHN 1:30!12 +JHN 1:30!13 +JHN 1:30!14 +JHN 1:30!15 +JHN 1:30!16 +JHN 1:30!17 +JHN 1:30!18 +JHN 1:31!1 +JHN 1:31!2 +JHN 1:31!3 +JHN 1:31!4 +JHN 1:31!5 +JHN 1:31!6 +JHN 1:31!7 +JHN 1:31!8 +JHN 1:31!9 +JHN 1:31!10 +JHN 1:31!11 +JHN 1:31!12 +JHN 1:31!13 +JHN 1:31!14 +JHN 1:31!15 +JHN 1:31!16 +JHN 1:32!1 +JHN 1:32!2 +JHN 1:32!3 +JHN 1:32!4 +JHN 1:32!5 +JHN 1:32!6 +JHN 1:32!7 +JHN 1:32!8 +JHN 1:32!9 +JHN 1:32!10 +JHN 1:32!11 +JHN 1:32!12 +JHN 1:32!13 +JHN 1:32!14 +JHN 1:32!15 +JHN 1:32!16 +JHN 1:32!17 +JHN 1:33!1 +JHN 1:33!2 +JHN 1:33!3 +JHN 1:33!4 +JHN 1:33!5 +JHN 1:33!6 +JHN 1:33!7 +JHN 1:33!8 +JHN 1:33!9 +JHN 1:33!10 +JHN 1:33!11 +JHN 1:33!12 +JHN 1:33!13 +JHN 1:33!14 +JHN 1:33!17 +JHN 1:33!15 +JHN 1:33!16 +JHN 1:33!18 +JHN 1:33!19 +JHN 1:33!20 +JHN 1:33!21 +JHN 1:33!22 +JHN 1:33!23 +JHN 1:33!24 +JHN 1:33!25 +JHN 1:33!26 +JHN 1:33!27 +JHN 1:33!28 +JHN 1:33!29 +JHN 1:33!30 +JHN 1:33!31 +JHN 1:33!32 +JHN 1:34!1 +JHN 1:34!2 +JHN 1:34!3 +JHN 1:34!4 +JHN 1:34!5 +JHN 1:34!6 +JHN 1:34!7 +JHN 1:34!8 +JHN 1:34!9 +JHN 1:34!10 +JHN 1:34!11 +JHN 1:35!1 +JHN 1:35!2 +JHN 1:35!3 +JHN 1:35!4 +JHN 1:35!5 +JHN 1:35!6 +JHN 1:35!7 +JHN 1:35!8 +JHN 1:35!9 +JHN 1:35!10 +JHN 1:35!11 +JHN 1:35!12 +JHN 1:36!1 +JHN 1:36!2 +JHN 1:36!3 +JHN 1:36!4 +JHN 1:36!5 +JHN 1:36!6 +JHN 1:36!7 +JHN 1:36!8 +JHN 1:36!9 +JHN 1:36!10 +JHN 1:36!11 +JHN 1:37!1 +JHN 1:37!2 +JHN 1:37!3 +JHN 1:37!4 +JHN 1:37!5 +JHN 1:37!6 +JHN 1:37!7 +JHN 1:37!8 +JHN 1:37!9 +JHN 1:37!10 +JHN 1:37!11 +JHN 1:38!2 +JHN 1:38!3 +JHN 1:38!4 +JHN 1:38!1 +JHN 1:38!5 +JHN 1:38!6 +JHN 1:38!7 +JHN 1:38!8 +JHN 1:38!9 +JHN 1:38!10 +JHN 1:38!11 +JHN 1:38!12 +JHN 1:38!14 +JHN 1:38!13 +JHN 1:38!15 +JHN 1:38!16 +JHN 1:38!17 +JHN 1:38!18 +JHN 1:38!19 +JHN 1:38!20 +JHN 1:38!21 +JHN 1:38!22 +JHN 1:38!23 +JHN 1:39!1 +JHN 1:39!2 +JHN 1:39!3 +JHN 1:39!4 +JHN 1:39!5 +JHN 1:39!7 +JHN 1:39!6 +JHN 1:39!8 +JHN 1:39!9 +JHN 1:39!10 +JHN 1:39!11 +JHN 1:39!12 +JHN 1:39!13 +JHN 1:39!14 +JHN 1:39!15 +JHN 1:39!16 +JHN 1:39!17 +JHN 1:39!18 +JHN 1:39!19 +JHN 1:39!20 +JHN 1:39!21 +JHN 1:39!22 +JHN 1:40!1 +JHN 1:40!2 +JHN 1:40!3 +JHN 1:40!4 +JHN 1:40!5 +JHN 1:40!6 +JHN 1:40!7 +JHN 1:40!8 +JHN 1:40!9 +JHN 1:40!10 +JHN 1:40!11 +JHN 1:40!12 +JHN 1:40!13 +JHN 1:40!14 +JHN 1:40!15 +JHN 1:40!16 +JHN 1:40!17 +JHN 1:41!1 +JHN 1:41!2 +JHN 1:41!3 +JHN 1:41!4 +JHN 1:41!5 +JHN 1:41!6 +JHN 1:41!7 +JHN 1:41!8 +JHN 1:41!9 +JHN 1:41!10 +JHN 1:41!11 +JHN 1:41!12 +JHN 1:41!13 +JHN 1:41!14 +JHN 1:41!15 +JHN 1:41!16 +JHN 1:41!17 +JHN 1:41!18 +JHN 1:42!1 +JHN 1:42!2 +JHN 1:42!3 +JHN 1:42!4 +JHN 1:42!5 +JHN 1:42!6 +JHN 1:42!7 +JHN 1:42!8 +JHN 1:42!9 +JHN 1:42!10 +JHN 1:42!11 +JHN 1:42!12 +JHN 1:42!13 +JHN 1:42!14 +JHN 1:42!15 +JHN 1:42!16 +JHN 1:42!17 +JHN 1:42!18 +JHN 1:42!19 +JHN 1:42!20 +JHN 1:42!21 +JHN 1:42!22 +JHN 1:43!1 +JHN 1:43!2 +JHN 1:43!3 +JHN 1:43!4 +JHN 1:43!5 +JHN 1:43!6 +JHN 1:43!7 +JHN 1:43!8 +JHN 1:43!9 +JHN 1:43!10 +JHN 1:43!11 +JHN 1:43!12 +JHN 1:43!13 +JHN 1:43!14 +JHN 1:43!15 +JHN 1:43!16 +JHN 1:43!17 +JHN 1:44!2 +JHN 1:44!1 +JHN 1:44!3 +JHN 1:44!4 +JHN 1:44!5 +JHN 1:44!6 +JHN 1:44!7 +JHN 1:44!8 +JHN 1:44!9 +JHN 1:44!10 +JHN 1:44!11 +JHN 1:44!12 +JHN 1:45!1 +JHN 1:45!2 +JHN 1:45!3 +JHN 1:45!4 +JHN 1:45!5 +JHN 1:45!6 +JHN 1:45!7 +JHN 1:45!8 +JHN 1:45!9 +JHN 1:45!10 +JHN 1:45!11 +JHN 1:45!12 +JHN 1:45!13 +JHN 1:45!14 +JHN 1:45!15 +JHN 1:45!16 +JHN 1:45!17 +JHN 1:45!18 +JHN 1:45!19 +JHN 1:45!20 +JHN 1:45!21 +JHN 1:45!22 +JHN 1:45!23 +JHN 1:45!24 +JHN 1:46!1 +JHN 1:46!2 +JHN 1:46!3 +JHN 1:46!4 +JHN 1:46!5 +JHN 1:46!6 +JHN 1:46!10 +JHN 1:46!7 +JHN 1:46!8 +JHN 1:46!9 +JHN 1:46!11 +JHN 1:46!12 +JHN 1:46!13 +JHN 1:46!14 +JHN 1:46!15 +JHN 1:46!16 +JHN 1:46!17 +JHN 1:47!1 +JHN 1:47!2 +JHN 1:47!3 +JHN 1:47!4 +JHN 1:47!5 +JHN 1:47!6 +JHN 1:47!7 +JHN 1:47!8 +JHN 1:47!9 +JHN 1:47!10 +JHN 1:47!11 +JHN 1:47!12 +JHN 1:47!13 +JHN 1:47!14 +JHN 1:47!15 +JHN 1:47!16 +JHN 1:47!17 +JHN 1:47!18 +JHN 1:47!19 +JHN 1:48!1 +JHN 1:48!2 +JHN 1:48!3 +JHN 1:48!4 +JHN 1:48!5 +JHN 1:48!6 +JHN 1:48!7 +JHN 1:48!8 +JHN 1:48!9 +JHN 1:48!10 +JHN 1:48!11 +JHN 1:48!12 +JHN 1:48!13 +JHN 1:48!14 +JHN 1:48!15 +JHN 1:48!16 +JHN 1:48!17 +JHN 1:48!18 +JHN 1:48!19 +JHN 1:48!20 +JHN 1:48!22 +JHN 1:48!21 +JHN 1:49!1 +JHN 1:49!2 +JHN 1:49!3 +JHN 1:49!4 +JHN 1:49!5 +JHN 1:49!6 +JHN 1:49!7 +JHN 1:49!8 +JHN 1:49!9 +JHN 1:49!10 +JHN 1:49!11 +JHN 1:49!12 +JHN 1:49!14 +JHN 1:49!15 +JHN 1:49!13 +JHN 1:50!1 +JHN 1:50!2 +JHN 1:50!3 +JHN 1:50!4 +JHN 1:50!5 +JHN 1:50!6 +JHN 1:50!7 +JHN 1:50!8 +JHN 1:50!9 +JHN 1:50!10 +JHN 1:50!11 +JHN 1:50!12 +JHN 1:50!13 +JHN 1:50!14 +JHN 1:50!15 +JHN 1:50!16 +JHN 1:50!17 +JHN 1:50!18 +JHN 1:51!1 +JHN 1:51!2 +JHN 1:51!3 +JHN 1:51!4 +JHN 1:51!5 +JHN 1:51!6 +JHN 1:51!7 +JHN 1:51!8 +JHN 1:51!9 +JHN 1:51!10 +JHN 1:51!11 +JHN 1:51!12 +JHN 1:51!13 +JHN 1:51!14 +JHN 1:51!15 +JHN 1:51!16 +JHN 1:51!17 +JHN 1:51!18 +JHN 1:51!19 +JHN 1:51!20 +JHN 1:51!21 +JHN 1:51!22 +JHN 1:51!23 +JHN 1:51!24 +JHN 2:1!1 +JHN 2:1!2 +JHN 2:1!3 +JHN 2:1!4 +JHN 2:1!5 +JHN 2:1!6 +JHN 2:1!7 +JHN 2:1!8 +JHN 2:1!9 +JHN 2:1!10 +JHN 2:1!11 +JHN 2:1!12 +JHN 2:1!13 +JHN 2:1!14 +JHN 2:1!15 +JHN 2:1!16 +JHN 2:1!17 +JHN 2:1!18 +JHN 2:2!2 +JHN 2:2!1 +JHN 2:2!3 +JHN 2:2!4 +JHN 2:2!5 +JHN 2:2!6 +JHN 2:2!7 +JHN 2:2!8 +JHN 2:2!9 +JHN 2:2!10 +JHN 2:2!11 +JHN 2:2!12 +JHN 2:3!1 +JHN 2:3!2 +JHN 2:3!3 +JHN 2:3!4 +JHN 2:3!5 +JHN 2:3!6 +JHN 2:3!7 +JHN 2:3!8 +JHN 2:3!9 +JHN 2:3!10 +JHN 2:3!11 +JHN 2:3!12 +JHN 2:3!13 +JHN 2:4!1 +JHN 2:4!2 +JHN 2:4!3 +JHN 2:4!4 +JHN 2:4!5 +JHN 2:4!6 +JHN 2:4!7 +JHN 2:4!8 +JHN 2:4!9 +JHN 2:4!10 +JHN 2:4!11 +JHN 2:4!12 +JHN 2:4!13 +JHN 2:4!14 +JHN 2:4!15 +JHN 2:5!1 +JHN 2:5!2 +JHN 2:5!3 +JHN 2:5!4 +JHN 2:5!5 +JHN 2:5!6 +JHN 2:5!8 +JHN 2:5!9 +JHN 2:5!7 +JHN 2:5!10 +JHN 2:5!11 +JHN 2:5!12 +JHN 2:6!2 +JHN 2:6!1 +JHN 2:6!12 +JHN 2:6!3 +JHN 2:6!4 +JHN 2:6!5 +JHN 2:6!6 +JHN 2:6!7 +JHN 2:6!8 +JHN 2:6!9 +JHN 2:6!10 +JHN 2:6!11 +JHN 2:6!13 +JHN 2:6!14 +JHN 2:6!15 +JHN 2:6!16 +JHN 2:6!17 +JHN 2:6!18 +JHN 2:7!1 +JHN 2:7!2 +JHN 2:7!3 +JHN 2:7!4 +JHN 2:7!5 +JHN 2:7!6 +JHN 2:7!7 +JHN 2:7!8 +JHN 2:7!9 +JHN 2:7!10 +JHN 2:7!11 +JHN 2:7!12 +JHN 2:7!13 +JHN 2:8!1 +JHN 2:8!2 +JHN 2:8!3 +JHN 2:8!4 +JHN 2:8!5 +JHN 2:8!6 +JHN 2:8!7 +JHN 2:8!8 +JHN 2:8!9 +JHN 2:8!11 +JHN 2:8!10 +JHN 2:8!12 +JHN 2:9!2 +JHN 2:9!1 +JHN 2:9!3 +JHN 2:9!4 +JHN 2:9!5 +JHN 2:9!6 +JHN 2:9!7 +JHN 2:9!8 +JHN 2:9!9 +JHN 2:9!10 +JHN 2:9!11 +JHN 2:9!12 +JHN 2:9!13 +JHN 2:9!14 +JHN 2:9!16 +JHN 2:9!18 +JHN 2:9!15 +JHN 2:9!17 +JHN 2:9!19 +JHN 2:9!20 +JHN 2:9!21 +JHN 2:9!22 +JHN 2:9!23 +JHN 2:9!24 +JHN 2:9!25 +JHN 2:9!26 +JHN 2:9!27 +JHN 2:10!1 +JHN 2:10!2 +JHN 2:10!3 +JHN 2:10!4 +JHN 2:10!5 +JHN 2:10!6 +JHN 2:10!7 +JHN 2:10!8 +JHN 2:10!9 +JHN 2:10!10 +JHN 2:10!11 +JHN 2:10!12 +JHN 2:10!13 +JHN 2:10!14 +JHN 2:10!15 +JHN 2:10!16 +JHN 2:10!17 +JHN 2:10!18 +JHN 2:10!19 +JHN 2:10!20 +JHN 2:10!21 +JHN 2:10!22 +JHN 2:11!1 +JHN 2:11!3 +JHN 2:11!4 +JHN 2:11!5 +JHN 2:11!2 +JHN 2:11!6 +JHN 2:11!7 +JHN 2:11!8 +JHN 2:11!9 +JHN 2:11!10 +JHN 2:11!11 +JHN 2:11!12 +JHN 2:11!13 +JHN 2:11!14 +JHN 2:11!15 +JHN 2:11!16 +JHN 2:11!17 +JHN 2:11!18 +JHN 2:11!19 +JHN 2:11!20 +JHN 2:11!21 +JHN 2:11!22 +JHN 2:11!23 +JHN 2:12!1 +JHN 2:12!2 +JHN 2:12!3 +JHN 2:12!4 +JHN 2:12!5 +JHN 2:12!6 +JHN 2:12!7 +JHN 2:12!8 +JHN 2:12!9 +JHN 2:12!10 +JHN 2:12!11 +JHN 2:12!12 +JHN 2:12!13 +JHN 2:12!14 +JHN 2:12!15 +JHN 2:12!16 +JHN 2:12!17 +JHN 2:12!18 +JHN 2:12!19 +JHN 2:12!20 +JHN 2:12!21 +JHN 2:12!22 +JHN 2:12!23 +JHN 2:13!1 +JHN 2:13!2 +JHN 2:13!3 +JHN 2:13!4 +JHN 2:13!5 +JHN 2:13!6 +JHN 2:13!7 +JHN 2:13!8 +JHN 2:13!9 +JHN 2:13!10 +JHN 2:13!11 +JHN 2:13!12 +JHN 2:13!13 +JHN 2:14!1 +JHN 2:14!2 +JHN 2:14!3 +JHN 2:14!4 +JHN 2:14!5 +JHN 2:14!6 +JHN 2:14!7 +JHN 2:14!8 +JHN 2:14!9 +JHN 2:14!10 +JHN 2:14!11 +JHN 2:14!12 +JHN 2:14!13 +JHN 2:14!14 +JHN 2:14!15 +JHN 2:14!16 +JHN 2:15!1 +JHN 2:15!2 +JHN 2:15!3 +JHN 2:15!4 +JHN 2:15!5 +JHN 2:15!6 +JHN 2:15!7 +JHN 2:15!8 +JHN 2:15!9 +JHN 2:15!10 +JHN 2:15!12 +JHN 2:15!11 +JHN 2:15!13 +JHN 2:15!14 +JHN 2:15!15 +JHN 2:15!16 +JHN 2:15!17 +JHN 2:15!18 +JHN 2:15!19 +JHN 2:15!21 +JHN 2:15!22 +JHN 2:15!20 +JHN 2:15!23 +JHN 2:15!24 +JHN 2:15!25 +JHN 2:15!26 +JHN 2:16!1 +JHN 2:16!2 +JHN 2:16!3 +JHN 2:16!4 +JHN 2:16!5 +JHN 2:16!6 +JHN 2:16!7 +JHN 2:16!8 +JHN 2:16!9 +JHN 2:16!10 +JHN 2:16!11 +JHN 2:16!12 +JHN 2:16!13 +JHN 2:16!14 +JHN 2:16!15 +JHN 2:16!16 +JHN 2:16!17 +JHN 2:16!18 +JHN 2:17!1 +JHN 2:17!2 +JHN 2:17!3 +JHN 2:17!4 +JHN 2:17!5 +JHN 2:17!6 +JHN 2:17!7 +JHN 2:17!8 +JHN 2:17!9 +JHN 2:17!10 +JHN 2:17!11 +JHN 2:17!12 +JHN 2:17!13 +JHN 2:17!14 +JHN 2:18!2 +JHN 2:18!1 +JHN 2:18!3 +JHN 2:18!4 +JHN 2:18!5 +JHN 2:18!6 +JHN 2:18!7 +JHN 2:18!8 +JHN 2:18!9 +JHN 2:18!10 +JHN 2:18!11 +JHN 2:18!12 +JHN 2:18!13 +JHN 2:18!14 +JHN 2:19!1 +JHN 2:19!2 +JHN 2:19!3 +JHN 2:19!4 +JHN 2:19!5 +JHN 2:19!6 +JHN 2:19!7 +JHN 2:19!8 +JHN 2:19!9 +JHN 2:19!10 +JHN 2:19!11 +JHN 2:19!12 +JHN 2:19!13 +JHN 2:19!14 +JHN 2:19!15 +JHN 2:20!2 +JHN 2:20!1 +JHN 2:20!3 +JHN 2:20!4 +JHN 2:20!5 +JHN 2:20!6 +JHN 2:20!7 +JHN 2:20!8 +JHN 2:20!9 +JHN 2:20!10 +JHN 2:20!11 +JHN 2:20!12 +JHN 2:20!13 +JHN 2:20!14 +JHN 2:20!15 +JHN 2:20!16 +JHN 2:20!17 +JHN 2:20!18 +JHN 2:20!19 +JHN 2:21!2 +JHN 2:21!1 +JHN 2:21!3 +JHN 2:21!4 +JHN 2:21!5 +JHN 2:21!6 +JHN 2:21!7 +JHN 2:21!8 +JHN 2:21!9 +JHN 2:22!2 +JHN 2:22!1 +JHN 2:22!3 +JHN 2:22!4 +JHN 2:22!5 +JHN 2:22!6 +JHN 2:22!7 +JHN 2:22!8 +JHN 2:22!9 +JHN 2:22!10 +JHN 2:22!11 +JHN 2:22!12 +JHN 2:22!13 +JHN 2:22!14 +JHN 2:22!15 +JHN 2:22!16 +JHN 2:22!17 +JHN 2:22!18 +JHN 2:22!19 +JHN 2:22!20 +JHN 2:22!21 +JHN 2:22!22 +JHN 2:22!23 +JHN 2:23!2 +JHN 2:23!1 +JHN 2:23!3 +JHN 2:23!4 +JHN 2:23!5 +JHN 2:23!6 +JHN 2:23!7 +JHN 2:23!8 +JHN 2:23!9 +JHN 2:23!10 +JHN 2:23!11 +JHN 2:23!12 +JHN 2:23!13 +JHN 2:23!14 +JHN 2:23!15 +JHN 2:23!16 +JHN 2:23!17 +JHN 2:23!18 +JHN 2:23!19 +JHN 2:23!20 +JHN 2:23!21 +JHN 2:23!22 +JHN 2:23!23 +JHN 2:23!24 +JHN 2:24!2 +JHN 2:24!1 +JHN 2:24!3 +JHN 2:24!4 +JHN 2:24!5 +JHN 2:24!6 +JHN 2:24!7 +JHN 2:24!8 +JHN 2:24!9 +JHN 2:24!10 +JHN 2:24!11 +JHN 2:24!12 +JHN 2:25!1 +JHN 2:25!2 +JHN 2:25!3 +JHN 2:25!4 +JHN 2:25!5 +JHN 2:25!6 +JHN 2:25!7 +JHN 2:25!8 +JHN 2:25!9 +JHN 2:25!10 +JHN 2:25!11 +JHN 2:25!13 +JHN 2:25!12 +JHN 2:25!14 +JHN 2:25!15 +JHN 2:25!16 +JHN 2:25!17 +JHN 2:25!18 +JHN 2:25!19 +JHN 3:1!2 +JHN 3:1!1 +JHN 3:1!3 +JHN 3:1!4 +JHN 3:1!5 +JHN 3:1!6 +JHN 3:1!10 +JHN 3:1!11 +JHN 3:1!12 +JHN 3:1!7 +JHN 3:1!8 +JHN 3:1!9 +JHN 3:2!1 +JHN 3:2!2 +JHN 3:2!3 +JHN 3:2!4 +JHN 3:2!5 +JHN 3:2!6 +JHN 3:2!7 +JHN 3:2!8 +JHN 3:2!9 +JHN 3:2!10 +JHN 3:2!11 +JHN 3:2!12 +JHN 3:2!13 +JHN 3:2!14 +JHN 3:2!15 +JHN 3:2!17 +JHN 3:2!16 +JHN 3:2!18 +JHN 3:2!19 +JHN 3:2!20 +JHN 3:2!21 +JHN 3:2!23 +JHN 3:2!24 +JHN 3:2!25 +JHN 3:2!22 +JHN 3:2!26 +JHN 3:2!27 +JHN 3:2!28 +JHN 3:2!29 +JHN 3:2!30 +JHN 3:2!31 +JHN 3:2!32 +JHN 3:3!1 +JHN 3:3!2 +JHN 3:3!3 +JHN 3:3!4 +JHN 3:3!5 +JHN 3:3!6 +JHN 3:3!7 +JHN 3:3!8 +JHN 3:3!9 +JHN 3:3!10 +JHN 3:3!11 +JHN 3:3!12 +JHN 3:3!13 +JHN 3:3!14 +JHN 3:3!15 +JHN 3:3!16 +JHN 3:3!17 +JHN 3:3!18 +JHN 3:3!19 +JHN 3:3!20 +JHN 3:3!21 +JHN 3:4!1 +JHN 3:4!2 +JHN 3:4!3 +JHN 3:4!4 +JHN 3:4!5 +JHN 3:4!6 +JHN 3:4!7 +JHN 3:4!8 +JHN 3:4!9 +JHN 3:4!10 +JHN 3:4!11 +JHN 3:4!12 +JHN 3:4!13 +JHN 3:4!14 +JHN 3:4!15 +JHN 3:4!16 +JHN 3:4!17 +JHN 3:4!18 +JHN 3:4!19 +JHN 3:4!20 +JHN 3:4!21 +JHN 3:4!22 +JHN 3:4!23 +JHN 3:5!1 +JHN 3:5!2 +JHN 3:5!3 +JHN 3:5!4 +JHN 3:5!5 +JHN 3:5!6 +JHN 3:5!7 +JHN 3:5!8 +JHN 3:5!9 +JHN 3:5!10 +JHN 3:5!11 +JHN 3:5!12 +JHN 3:5!13 +JHN 3:5!14 +JHN 3:5!15 +JHN 3:5!16 +JHN 3:5!17 +JHN 3:5!18 +JHN 3:5!19 +JHN 3:5!20 +JHN 3:5!21 +JHN 3:5!22 +JHN 3:6!1 +JHN 3:6!2 +JHN 3:6!3 +JHN 3:6!4 +JHN 3:6!5 +JHN 3:6!6 +JHN 3:6!7 +JHN 3:6!8 +JHN 3:6!9 +JHN 3:6!10 +JHN 3:6!11 +JHN 3:6!12 +JHN 3:6!13 +JHN 3:6!14 +JHN 3:6!15 +JHN 3:7!1 +JHN 3:7!2 +JHN 3:7!3 +JHN 3:7!4 +JHN 3:7!5 +JHN 3:7!6 +JHN 3:7!7 +JHN 3:7!8 +JHN 3:7!9 +JHN 3:8!1 +JHN 3:8!2 +JHN 3:8!3 +JHN 3:8!4 +JHN 3:8!5 +JHN 3:8!6 +JHN 3:8!7 +JHN 3:8!8 +JHN 3:8!9 +JHN 3:8!10 +JHN 3:8!11 +JHN 3:8!12 +JHN 3:8!13 +JHN 3:8!14 +JHN 3:8!15 +JHN 3:8!16 +JHN 3:8!17 +JHN 3:8!18 +JHN 3:8!19 +JHN 3:8!20 +JHN 3:8!21 +JHN 3:8!22 +JHN 3:8!23 +JHN 3:8!24 +JHN 3:8!25 +JHN 3:8!26 +JHN 3:9!1 +JHN 3:9!2 +JHN 3:9!3 +JHN 3:9!4 +JHN 3:9!5 +JHN 3:9!6 +JHN 3:9!7 +JHN 3:9!8 +JHN 3:9!9 +JHN 3:10!1 +JHN 3:10!2 +JHN 3:10!3 +JHN 3:10!4 +JHN 3:10!5 +JHN 3:10!6 +JHN 3:10!7 +JHN 3:10!8 +JHN 3:10!9 +JHN 3:10!10 +JHN 3:10!11 +JHN 3:10!12 +JHN 3:10!13 +JHN 3:10!14 +JHN 3:10!15 +JHN 3:11!1 +JHN 3:11!2 +JHN 3:11!3 +JHN 3:11!4 +JHN 3:11!5 +JHN 3:11!6 +JHN 3:11!7 +JHN 3:11!8 +JHN 3:11!9 +JHN 3:11!10 +JHN 3:11!11 +JHN 3:11!12 +JHN 3:11!13 +JHN 3:11!14 +JHN 3:11!15 +JHN 3:11!16 +JHN 3:11!17 +JHN 3:11!18 +JHN 3:12!1 +JHN 3:12!2 +JHN 3:12!3 +JHN 3:12!4 +JHN 3:12!5 +JHN 3:12!6 +JHN 3:12!7 +JHN 3:12!8 +JHN 3:12!9 +JHN 3:12!10 +JHN 3:12!11 +JHN 3:12!12 +JHN 3:12!13 +JHN 3:12!14 +JHN 3:12!15 +JHN 3:13!1 +JHN 3:13!2 +JHN 3:13!3 +JHN 3:13!4 +JHN 3:13!5 +JHN 3:13!6 +JHN 3:13!7 +JHN 3:13!8 +JHN 3:13!9 +JHN 3:13!10 +JHN 3:13!11 +JHN 3:13!12 +JHN 3:13!13 +JHN 3:13!14 +JHN 3:13!15 +JHN 3:13!16 +JHN 3:13!17 +JHN 3:14!1 +JHN 3:14!2 +JHN 3:14!3 +JHN 3:14!4 +JHN 3:14!5 +JHN 3:14!6 +JHN 3:14!7 +JHN 3:14!8 +JHN 3:14!9 +JHN 3:14!10 +JHN 3:14!12 +JHN 3:14!11 +JHN 3:14!13 +JHN 3:14!14 +JHN 3:14!15 +JHN 3:14!16 +JHN 3:15!1 +JHN 3:15!2 +JHN 3:15!3 +JHN 3:15!4 +JHN 3:15!5 +JHN 3:15!6 +JHN 3:15!7 +JHN 3:15!8 +JHN 3:15!9 +JHN 3:16!2 +JHN 3:16!1 +JHN 3:16!3 +JHN 3:16!4 +JHN 3:16!5 +JHN 3:16!6 +JHN 3:16!7 +JHN 3:16!8 +JHN 3:16!9 +JHN 3:16!10 +JHN 3:16!11 +JHN 3:16!12 +JHN 3:16!13 +JHN 3:16!14 +JHN 3:16!15 +JHN 3:16!16 +JHN 3:16!17 +JHN 3:16!18 +JHN 3:16!19 +JHN 3:16!20 +JHN 3:16!21 +JHN 3:16!22 +JHN 3:16!23 +JHN 3:16!24 +JHN 3:16!25 +JHN 3:17!2 +JHN 3:17!1 +JHN 3:17!3 +JHN 3:17!4 +JHN 3:17!5 +JHN 3:17!6 +JHN 3:17!7 +JHN 3:17!8 +JHN 3:17!9 +JHN 3:17!10 +JHN 3:17!11 +JHN 3:17!12 +JHN 3:17!13 +JHN 3:17!14 +JHN 3:17!15 +JHN 3:17!16 +JHN 3:17!17 +JHN 3:17!18 +JHN 3:17!19 +JHN 3:17!20 +JHN 3:17!21 +JHN 3:18!1 +JHN 3:18!2 +JHN 3:18!3 +JHN 3:18!4 +JHN 3:18!5 +JHN 3:18!6 +JHN 3:18!7 +JHN 3:18!8 +JHN 3:18!9 +JHN 3:18!10 +JHN 3:18!11 +JHN 3:18!12 +JHN 3:18!13 +JHN 3:18!14 +JHN 3:18!15 +JHN 3:18!16 +JHN 3:18!17 +JHN 3:18!18 +JHN 3:18!19 +JHN 3:18!20 +JHN 3:18!21 +JHN 3:18!22 +JHN 3:19!2 +JHN 3:19!1 +JHN 3:19!3 +JHN 3:19!4 +JHN 3:19!5 +JHN 3:19!6 +JHN 3:19!7 +JHN 3:19!8 +JHN 3:19!9 +JHN 3:19!10 +JHN 3:19!11 +JHN 3:19!12 +JHN 3:19!13 +JHN 3:19!14 +JHN 3:19!15 +JHN 3:19!16 +JHN 3:19!17 +JHN 3:19!18 +JHN 3:19!19 +JHN 3:19!20 +JHN 3:19!21 +JHN 3:19!22 +JHN 3:19!24 +JHN 3:19!23 +JHN 3:19!26 +JHN 3:19!25 +JHN 3:19!27 +JHN 3:19!28 +JHN 3:20!2 +JHN 3:20!1 +JHN 3:20!3 +JHN 3:20!4 +JHN 3:20!5 +JHN 3:20!6 +JHN 3:20!7 +JHN 3:20!8 +JHN 3:20!9 +JHN 3:20!10 +JHN 3:20!11 +JHN 3:20!12 +JHN 3:20!13 +JHN 3:20!14 +JHN 3:20!15 +JHN 3:20!16 +JHN 3:20!17 +JHN 3:20!18 +JHN 3:20!19 +JHN 3:20!20 +JHN 3:21!2 +JHN 3:21!1 +JHN 3:21!3 +JHN 3:21!4 +JHN 3:21!5 +JHN 3:21!6 +JHN 3:21!7 +JHN 3:21!8 +JHN 3:21!9 +JHN 3:21!10 +JHN 3:21!11 +JHN 3:21!12 +JHN 3:21!13 +JHN 3:21!14 +JHN 3:21!15 +JHN 3:21!16 +JHN 3:21!17 +JHN 3:21!18 +JHN 3:21!19 +JHN 3:22!1 +JHN 3:22!2 +JHN 3:22!3 +JHN 3:22!4 +JHN 3:22!5 +JHN 3:22!6 +JHN 3:22!7 +JHN 3:22!8 +JHN 3:22!9 +JHN 3:22!10 +JHN 3:22!11 +JHN 3:22!12 +JHN 3:22!13 +JHN 3:22!14 +JHN 3:22!15 +JHN 3:22!16 +JHN 3:22!17 +JHN 3:22!18 +JHN 3:22!19 +JHN 3:22!20 +JHN 3:23!2 +JHN 3:23!1 +JHN 3:23!5 +JHN 3:23!3 +JHN 3:23!4 +JHN 3:23!6 +JHN 3:23!7 +JHN 3:23!8 +JHN 3:23!9 +JHN 3:23!10 +JHN 3:23!11 +JHN 3:23!12 +JHN 3:23!13 +JHN 3:23!14 +JHN 3:23!15 +JHN 3:23!16 +JHN 3:23!17 +JHN 3:23!18 +JHN 3:23!19 +JHN 3:24!2 +JHN 3:24!1 +JHN 3:24!3 +JHN 3:24!4 +JHN 3:24!5 +JHN 3:24!6 +JHN 3:24!7 +JHN 3:24!8 +JHN 3:25!2 +JHN 3:25!1 +JHN 3:25!3 +JHN 3:25!4 +JHN 3:25!5 +JHN 3:25!6 +JHN 3:25!7 +JHN 3:25!8 +JHN 3:25!9 +JHN 3:25!10 +JHN 3:25!11 +JHN 3:26!1 +JHN 3:26!2 +JHN 3:26!3 +JHN 3:26!4 +JHN 3:26!5 +JHN 3:26!6 +JHN 3:26!7 +JHN 3:26!8 +JHN 3:26!9 +JHN 3:26!10 +JHN 3:26!11 +JHN 3:26!12 +JHN 3:26!13 +JHN 3:26!14 +JHN 3:26!15 +JHN 3:26!16 +JHN 3:26!17 +JHN 3:26!18 +JHN 3:26!19 +JHN 3:26!20 +JHN 3:26!21 +JHN 3:26!22 +JHN 3:26!23 +JHN 3:26!24 +JHN 3:26!25 +JHN 3:26!26 +JHN 3:26!27 +JHN 3:27!1 +JHN 3:27!2 +JHN 3:27!3 +JHN 3:27!4 +JHN 3:27!5 +JHN 3:27!6 +JHN 3:27!7 +JHN 3:27!8 +JHN 3:27!9 +JHN 3:27!10 +JHN 3:27!11 +JHN 3:27!12 +JHN 3:27!13 +JHN 3:27!14 +JHN 3:27!15 +JHN 3:27!16 +JHN 3:27!17 +JHN 3:28!1 +JHN 3:28!2 +JHN 3:28!3 +JHN 3:28!4 +JHN 3:28!5 +JHN 3:28!6 +JHN 3:28!7 +JHN 3:28!8 +JHN 3:28!9 +JHN 3:28!10 +JHN 3:28!11 +JHN 3:28!12 +JHN 3:28!13 +JHN 3:28!14 +JHN 3:28!15 +JHN 3:28!16 +JHN 3:28!17 +JHN 3:29!1 +JHN 3:29!2 +JHN 3:29!3 +JHN 3:29!4 +JHN 3:29!5 +JHN 3:29!6 +JHN 3:29!8 +JHN 3:29!7 +JHN 3:29!9 +JHN 3:29!10 +JHN 3:29!11 +JHN 3:29!12 +JHN 3:29!13 +JHN 3:29!14 +JHN 3:29!15 +JHN 3:29!16 +JHN 3:29!17 +JHN 3:29!18 +JHN 3:29!19 +JHN 3:29!20 +JHN 3:29!21 +JHN 3:29!22 +JHN 3:29!23 +JHN 3:29!25 +JHN 3:29!24 +JHN 3:29!26 +JHN 3:29!27 +JHN 3:29!28 +JHN 3:29!29 +JHN 3:29!30 +JHN 3:30!2 +JHN 3:30!1 +JHN 3:30!3 +JHN 3:30!5 +JHN 3:30!4 +JHN 3:30!6 +JHN 3:31!1 +JHN 3:31!2 +JHN 3:31!3 +JHN 3:31!4 +JHN 3:31!5 +JHN 3:31!6 +JHN 3:31!7 +JHN 3:31!8 +JHN 3:31!9 +JHN 3:31!10 +JHN 3:31!11 +JHN 3:31!12 +JHN 3:31!13 +JHN 3:31!14 +JHN 3:31!15 +JHN 3:31!16 +JHN 3:31!17 +JHN 3:31!18 +JHN 3:31!19 +JHN 3:31!20 +JHN 3:31!21 +JHN 3:31!22 +JHN 3:31!23 +JHN 3:31!24 +JHN 3:31!25 +JHN 3:31!26 +JHN 3:31!27 +JHN 3:31!28 +JHN 3:32!1 +JHN 3:32!2 +JHN 3:32!3 +JHN 3:32!4 +JHN 3:32!5 +JHN 3:32!6 +JHN 3:32!7 +JHN 3:32!8 +JHN 3:32!9 +JHN 3:32!10 +JHN 3:32!11 +JHN 3:32!12 +JHN 3:33!1 +JHN 3:33!2 +JHN 3:33!3 +JHN 3:33!4 +JHN 3:33!5 +JHN 3:33!6 +JHN 3:33!7 +JHN 3:33!8 +JHN 3:33!9 +JHN 3:33!10 +JHN 3:33!11 +JHN 3:34!2 +JHN 3:34!1 +JHN 3:34!3 +JHN 3:34!4 +JHN 3:34!5 +JHN 3:34!6 +JHN 3:34!7 +JHN 3:34!8 +JHN 3:34!9 +JHN 3:34!10 +JHN 3:34!12 +JHN 3:34!11 +JHN 3:34!13 +JHN 3:34!14 +JHN 3:34!15 +JHN 3:34!16 +JHN 3:34!17 +JHN 3:35!1 +JHN 3:35!2 +JHN 3:35!3 +JHN 3:35!4 +JHN 3:35!5 +JHN 3:35!6 +JHN 3:35!7 +JHN 3:35!8 +JHN 3:35!9 +JHN 3:35!10 +JHN 3:35!11 +JHN 3:35!12 +JHN 3:36!1 +JHN 3:36!2 +JHN 3:36!3 +JHN 3:36!4 +JHN 3:36!5 +JHN 3:36!6 +JHN 3:36!7 +JHN 3:36!8 +JHN 3:36!10 +JHN 3:36!9 +JHN 3:36!11 +JHN 3:36!12 +JHN 3:36!13 +JHN 3:36!14 +JHN 3:36!15 +JHN 3:36!16 +JHN 3:36!17 +JHN 3:36!18 +JHN 3:36!19 +JHN 3:36!20 +JHN 3:36!21 +JHN 3:36!22 +JHN 3:36!23 +JHN 3:36!24 +JHN 4:1!2 +JHN 4:1!1 +JHN 4:1!3 +JHN 4:1!4 +JHN 4:1!5 +JHN 4:1!6 +JHN 4:1!7 +JHN 4:1!8 +JHN 4:1!9 +JHN 4:1!10 +JHN 4:1!11 +JHN 4:1!12 +JHN 4:1!13 +JHN 4:1!14 +JHN 4:1!15 +JHN 4:1!16 +JHN 4:1!17 +JHN 4:1!18 +JHN 4:2!1 +JHN 4:2!2 +JHN 4:2!3 +JHN 4:2!4 +JHN 4:2!5 +JHN 4:2!6 +JHN 4:2!7 +JHN 4:2!8 +JHN 4:2!9 +JHN 4:3!1 +JHN 4:3!2 +JHN 4:3!3 +JHN 4:3!4 +JHN 4:3!5 +JHN 4:3!6 +JHN 4:3!7 +JHN 4:3!8 +JHN 4:3!9 +JHN 4:4!2 +JHN 4:4!1 +JHN 4:4!3 +JHN 4:4!4 +JHN 4:4!5 +JHN 4:4!6 +JHN 4:4!7 +JHN 4:5!2 +JHN 4:5!1 +JHN 4:5!3 +JHN 4:5!4 +JHN 4:5!5 +JHN 4:5!6 +JHN 4:5!7 +JHN 4:5!8 +JHN 4:5!9 +JHN 4:5!10 +JHN 4:5!11 +JHN 4:5!12 +JHN 4:5!13 +JHN 4:5!14 +JHN 4:5!15 +JHN 4:5!16 +JHN 4:5!17 +JHN 4:5!18 +JHN 4:6!2 +JHN 4:6!1 +JHN 4:6!3 +JHN 4:6!4 +JHN 4:6!5 +JHN 4:6!6 +JHN 4:6!8 +JHN 4:6!7 +JHN 4:6!9 +JHN 4:6!10 +JHN 4:6!11 +JHN 4:6!12 +JHN 4:6!13 +JHN 4:6!14 +JHN 4:6!15 +JHN 4:6!16 +JHN 4:6!17 +JHN 4:6!18 +JHN 4:6!19 +JHN 4:6!20 +JHN 4:6!21 +JHN 4:6!22 +JHN 4:7!1 +JHN 4:7!2 +JHN 4:7!3 +JHN 4:7!4 +JHN 4:7!5 +JHN 4:7!6 +JHN 4:7!7 +JHN 4:7!8 +JHN 4:7!9 +JHN 4:7!10 +JHN 4:7!11 +JHN 4:7!12 +JHN 4:7!13 +JHN 4:7!14 +JHN 4:8!2 +JHN 4:8!1 +JHN 4:8!3 +JHN 4:8!4 +JHN 4:8!5 +JHN 4:8!6 +JHN 4:8!7 +JHN 4:8!8 +JHN 4:8!9 +JHN 4:8!10 +JHN 4:8!11 +JHN 4:9!2 +JHN 4:9!1 +JHN 4:9!3 +JHN 4:9!4 +JHN 4:9!5 +JHN 4:9!6 +JHN 4:9!7 +JHN 4:9!8 +JHN 4:9!9 +JHN 4:9!10 +JHN 4:9!11 +JHN 4:9!12 +JHN 4:9!13 +JHN 4:9!16 +JHN 4:9!17 +JHN 4:9!18 +JHN 4:9!14 +JHN 4:9!15 +JHN 4:9!20 +JHN 4:9!19 +JHN 4:9!21 +JHN 4:9!22 +JHN 4:9!23 +JHN 4:10!1 +JHN 4:10!2 +JHN 4:10!3 +JHN 4:10!4 +JHN 4:10!5 +JHN 4:10!6 +JHN 4:10!7 +JHN 4:10!8 +JHN 4:10!9 +JHN 4:10!10 +JHN 4:10!11 +JHN 4:10!12 +JHN 4:10!13 +JHN 4:10!14 +JHN 4:10!15 +JHN 4:10!16 +JHN 4:10!17 +JHN 4:10!18 +JHN 4:10!19 +JHN 4:10!20 +JHN 4:10!22 +JHN 4:10!21 +JHN 4:10!23 +JHN 4:10!24 +JHN 4:10!25 +JHN 4:10!27 +JHN 4:10!26 +JHN 4:10!28 +JHN 4:10!29 +JHN 4:10!30 +JHN 4:11!1 +JHN 4:11!2 +JHN 4:11!3 +JHN 4:11!4 +JHN 4:11!5 +JHN 4:11!6 +JHN 4:11!7 +JHN 4:11!8 +JHN 4:11!9 +JHN 4:11!10 +JHN 4:11!11 +JHN 4:11!13 +JHN 4:11!12 +JHN 4:11!14 +JHN 4:11!15 +JHN 4:11!16 +JHN 4:11!17 +JHN 4:11!18 +JHN 4:12!1 +JHN 4:12!2 +JHN 4:12!3 +JHN 4:12!4 +JHN 4:12!5 +JHN 4:12!6 +JHN 4:12!7 +JHN 4:12!8 +JHN 4:12!9 +JHN 4:12!10 +JHN 4:12!11 +JHN 4:12!12 +JHN 4:12!13 +JHN 4:12!14 +JHN 4:12!15 +JHN 4:12!16 +JHN 4:12!17 +JHN 4:12!18 +JHN 4:12!19 +JHN 4:12!20 +JHN 4:12!21 +JHN 4:12!22 +JHN 4:12!23 +JHN 4:12!24 +JHN 4:12!25 +JHN 4:12!26 +JHN 4:13!1 +JHN 4:13!2 +JHN 4:13!3 +JHN 4:13!4 +JHN 4:13!5 +JHN 4:13!6 +JHN 4:13!7 +JHN 4:13!8 +JHN 4:13!9 +JHN 4:13!10 +JHN 4:13!11 +JHN 4:13!12 +JHN 4:13!13 +JHN 4:13!14 +JHN 4:14!2 +JHN 4:14!3 +JHN 4:14!1 +JHN 4:14!4 +JHN 4:14!5 +JHN 4:14!6 +JHN 4:14!7 +JHN 4:14!8 +JHN 4:14!9 +JHN 4:14!10 +JHN 4:14!11 +JHN 4:14!12 +JHN 4:14!13 +JHN 4:14!14 +JHN 4:14!15 +JHN 4:14!16 +JHN 4:14!17 +JHN 4:14!18 +JHN 4:14!19 +JHN 4:14!20 +JHN 4:14!21 +JHN 4:14!22 +JHN 4:14!23 +JHN 4:14!24 +JHN 4:14!25 +JHN 4:14!26 +JHN 4:14!27 +JHN 4:14!28 +JHN 4:14!29 +JHN 4:14!30 +JHN 4:14!31 +JHN 4:14!32 +JHN 4:15!1 +JHN 4:15!2 +JHN 4:15!3 +JHN 4:15!4 +JHN 4:15!5 +JHN 4:15!6 +JHN 4:15!7 +JHN 4:15!8 +JHN 4:15!9 +JHN 4:15!10 +JHN 4:15!11 +JHN 4:15!12 +JHN 4:15!13 +JHN 4:15!14 +JHN 4:15!15 +JHN 4:15!16 +JHN 4:15!17 +JHN 4:15!18 +JHN 4:16!1 +JHN 4:16!2 +JHN 4:16!3 +JHN 4:16!4 +JHN 4:16!5 +JHN 4:16!6 +JHN 4:16!7 +JHN 4:16!8 +JHN 4:16!9 +JHN 4:16!10 +JHN 4:17!1 +JHN 4:17!2 +JHN 4:17!3 +JHN 4:17!4 +JHN 4:17!5 +JHN 4:17!6 +JHN 4:17!7 +JHN 4:17!8 +JHN 4:17!9 +JHN 4:17!10 +JHN 4:17!11 +JHN 4:17!12 +JHN 4:17!13 +JHN 4:17!14 +JHN 4:17!15 +JHN 4:17!16 +JHN 4:17!17 +JHN 4:17!18 +JHN 4:18!2 +JHN 4:18!1 +JHN 4:18!3 +JHN 4:18!4 +JHN 4:18!5 +JHN 4:18!7 +JHN 4:18!6 +JHN 4:18!8 +JHN 4:18!9 +JHN 4:18!10 +JHN 4:18!11 +JHN 4:18!12 +JHN 4:18!13 +JHN 4:18!14 +JHN 4:18!15 +JHN 4:19!1 +JHN 4:19!2 +JHN 4:19!3 +JHN 4:19!4 +JHN 4:19!5 +JHN 4:19!6 +JHN 4:19!7 +JHN 4:19!8 +JHN 4:19!9 +JHN 4:19!10 +JHN 4:20!1 +JHN 4:20!2 +JHN 4:20!3 +JHN 4:20!4 +JHN 4:20!5 +JHN 4:20!6 +JHN 4:20!7 +JHN 4:20!8 +JHN 4:20!9 +JHN 4:20!10 +JHN 4:20!11 +JHN 4:20!12 +JHN 4:20!13 +JHN 4:20!14 +JHN 4:20!15 +JHN 4:20!16 +JHN 4:20!17 +JHN 4:20!18 +JHN 4:20!19 +JHN 4:20!20 +JHN 4:21!1 +JHN 4:21!2 +JHN 4:21!3 +JHN 4:21!4 +JHN 4:21!5 +JHN 4:21!6 +JHN 4:21!7 +JHN 4:21!8 +JHN 4:21!9 +JHN 4:21!10 +JHN 4:21!11 +JHN 4:21!12 +JHN 4:21!13 +JHN 4:21!14 +JHN 4:21!15 +JHN 4:21!16 +JHN 4:21!17 +JHN 4:21!18 +JHN 4:21!19 +JHN 4:21!20 +JHN 4:21!21 +JHN 4:21!22 +JHN 4:22!1 +JHN 4:22!2 +JHN 4:22!3 +JHN 4:22!4 +JHN 4:22!5 +JHN 4:22!6 +JHN 4:22!7 +JHN 4:22!8 +JHN 4:22!9 +JHN 4:22!10 +JHN 4:22!11 +JHN 4:22!12 +JHN 4:22!13 +JHN 4:22!14 +JHN 4:22!15 +JHN 4:22!16 +JHN 4:23!1 +JHN 4:23!2 +JHN 4:23!3 +JHN 4:23!4 +JHN 4:23!5 +JHN 4:23!6 +JHN 4:23!7 +JHN 4:23!8 +JHN 4:23!9 +JHN 4:23!10 +JHN 4:23!11 +JHN 4:23!12 +JHN 4:23!13 +JHN 4:23!14 +JHN 4:23!15 +JHN 4:23!16 +JHN 4:23!17 +JHN 4:23!19 +JHN 4:23!18 +JHN 4:23!20 +JHN 4:23!21 +JHN 4:23!22 +JHN 4:23!23 +JHN 4:23!24 +JHN 4:23!25 +JHN 4:23!26 +JHN 4:24!1 +JHN 4:24!2 +JHN 4:24!3 +JHN 4:24!4 +JHN 4:24!5 +JHN 4:24!6 +JHN 4:24!7 +JHN 4:24!8 +JHN 4:24!9 +JHN 4:24!10 +JHN 4:24!12 +JHN 4:24!11 +JHN 4:25!1 +JHN 4:25!2 +JHN 4:25!3 +JHN 4:25!4 +JHN 4:25!5 +JHN 4:25!6 +JHN 4:25!7 +JHN 4:25!9 +JHN 4:25!10 +JHN 4:25!11 +JHN 4:25!8 +JHN 4:25!12 +JHN 4:25!13 +JHN 4:25!14 +JHN 4:25!15 +JHN 4:25!16 +JHN 4:25!17 +JHN 4:26!1 +JHN 4:26!2 +JHN 4:26!3 +JHN 4:26!4 +JHN 4:26!5 +JHN 4:26!7 +JHN 4:26!8 +JHN 4:26!9 +JHN 4:26!6 +JHN 4:27!1 +JHN 4:27!2 +JHN 4:27!3 +JHN 4:27!4 +JHN 4:27!5 +JHN 4:27!6 +JHN 4:27!7 +JHN 4:27!8 +JHN 4:27!9 +JHN 4:27!10 +JHN 4:27!11 +JHN 4:27!12 +JHN 4:27!13 +JHN 4:27!15 +JHN 4:27!14 +JHN 4:27!16 +JHN 4:27!17 +JHN 4:27!18 +JHN 4:27!19 +JHN 4:27!20 +JHN 4:27!21 +JHN 4:27!22 +JHN 4:27!23 +JHN 4:28!2 +JHN 4:28!1 +JHN 4:28!3 +JHN 4:28!4 +JHN 4:28!5 +JHN 4:28!6 +JHN 4:28!7 +JHN 4:28!8 +JHN 4:28!9 +JHN 4:28!10 +JHN 4:28!11 +JHN 4:28!12 +JHN 4:28!13 +JHN 4:28!14 +JHN 4:28!15 +JHN 4:28!16 +JHN 4:29!1 +JHN 4:29!2 +JHN 4:29!3 +JHN 4:29!4 +JHN 4:29!5 +JHN 4:29!6 +JHN 4:29!7 +JHN 4:29!8 +JHN 4:29!9 +JHN 4:29!10 +JHN 4:29!11 +JHN 4:29!12 +JHN 4:29!13 +JHN 4:29!14 +JHN 4:30!1 +JHN 4:30!2 +JHN 4:30!3 +JHN 4:30!4 +JHN 4:30!5 +JHN 4:30!6 +JHN 4:30!7 +JHN 4:30!8 +JHN 4:31!1 +JHN 4:31!2 +JHN 4:31!3 +JHN 4:31!4 +JHN 4:31!5 +JHN 4:31!6 +JHN 4:31!7 +JHN 4:31!8 +JHN 4:31!9 +JHN 4:31!10 +JHN 4:32!2 +JHN 4:32!1 +JHN 4:32!3 +JHN 4:32!4 +JHN 4:32!5 +JHN 4:32!6 +JHN 4:32!7 +JHN 4:32!8 +JHN 4:32!9 +JHN 4:32!10 +JHN 4:32!11 +JHN 4:32!12 +JHN 4:33!2 +JHN 4:33!1 +JHN 4:33!3 +JHN 4:33!4 +JHN 4:33!5 +JHN 4:33!6 +JHN 4:33!7 +JHN 4:33!8 +JHN 4:33!9 +JHN 4:33!10 +JHN 4:33!11 +JHN 4:34!1 +JHN 4:34!2 +JHN 4:34!3 +JHN 4:34!4 +JHN 4:34!5 +JHN 4:34!6 +JHN 4:34!7 +JHN 4:34!8 +JHN 4:34!9 +JHN 4:34!10 +JHN 4:34!11 +JHN 4:34!12 +JHN 4:34!13 +JHN 4:34!14 +JHN 4:34!15 +JHN 4:34!16 +JHN 4:34!17 +JHN 4:34!18 +JHN 4:34!19 +JHN 4:35!1 +JHN 4:35!2 +JHN 4:35!3 +JHN 4:35!4 +JHN 4:35!5 +JHN 4:35!6 +JHN 4:35!7 +JHN 4:35!8 +JHN 4:35!9 +JHN 4:35!10 +JHN 4:35!11 +JHN 4:35!12 +JHN 4:35!13 +JHN 4:35!14 +JHN 4:35!15 +JHN 4:35!16 +JHN 4:35!17 +JHN 4:35!18 +JHN 4:35!19 +JHN 4:35!20 +JHN 4:35!21 +JHN 4:35!22 +JHN 4:35!23 +JHN 4:35!24 +JHN 4:35!25 +JHN 4:35!26 +JHN 4:35!27 +JHN 4:35!28 +JHN 4:36!1 +JHN 4:36!2 +JHN 4:36!3 +JHN 4:36!4 +JHN 4:36!5 +JHN 4:36!6 +JHN 4:36!7 +JHN 4:36!8 +JHN 4:36!9 +JHN 4:36!10 +JHN 4:36!11 +JHN 4:36!14 +JHN 4:36!15 +JHN 4:36!12 +JHN 4:36!13 +JHN 4:36!16 +JHN 4:36!17 +JHN 4:36!18 +JHN 4:37!2 +JHN 4:37!1 +JHN 4:37!3 +JHN 4:37!4 +JHN 4:37!5 +JHN 4:37!6 +JHN 4:37!7 +JHN 4:37!8 +JHN 4:37!9 +JHN 4:37!10 +JHN 4:37!11 +JHN 4:37!12 +JHN 4:37!13 +JHN 4:37!14 +JHN 4:37!15 +JHN 4:37!16 +JHN 4:38!1 +JHN 4:38!2 +JHN 4:38!3 +JHN 4:38!4 +JHN 4:38!5 +JHN 4:38!6 +JHN 4:38!7 +JHN 4:38!8 +JHN 4:38!9 +JHN 4:38!10 +JHN 4:38!11 +JHN 4:38!12 +JHN 4:38!13 +JHN 4:38!14 +JHN 4:38!15 +JHN 4:38!16 +JHN 4:38!17 +JHN 4:39!2 +JHN 4:39!1 +JHN 4:39!3 +JHN 4:39!4 +JHN 4:39!5 +JHN 4:39!6 +JHN 4:39!10 +JHN 4:39!11 +JHN 4:39!7 +JHN 4:39!8 +JHN 4:39!9 +JHN 4:39!12 +JHN 4:39!13 +JHN 4:39!14 +JHN 4:39!15 +JHN 4:39!16 +JHN 4:39!17 +JHN 4:39!18 +JHN 4:39!19 +JHN 4:39!20 +JHN 4:39!21 +JHN 4:39!22 +JHN 4:39!23 +JHN 4:40!2 +JHN 4:40!1 +JHN 4:40!3 +JHN 4:40!4 +JHN 4:40!5 +JHN 4:40!6 +JHN 4:40!7 +JHN 4:40!8 +JHN 4:40!9 +JHN 4:40!10 +JHN 4:40!11 +JHN 4:40!12 +JHN 4:40!13 +JHN 4:40!14 +JHN 4:40!15 +JHN 4:40!16 +JHN 4:40!17 +JHN 4:41!1 +JHN 4:41!2 +JHN 4:41!3 +JHN 4:41!4 +JHN 4:41!5 +JHN 4:41!6 +JHN 4:41!7 +JHN 4:41!8 +JHN 4:42!2 +JHN 4:42!1 +JHN 4:42!3 +JHN 4:42!4 +JHN 4:42!5 +JHN 4:42!6 +JHN 4:42!7 +JHN 4:42!8 +JHN 4:42!9 +JHN 4:42!10 +JHN 4:42!11 +JHN 4:42!13 +JHN 4:42!12 +JHN 4:42!14 +JHN 4:42!15 +JHN 4:42!16 +JHN 4:42!17 +JHN 4:42!18 +JHN 4:42!19 +JHN 4:42!20 +JHN 4:42!21 +JHN 4:42!22 +JHN 4:42!23 +JHN 4:42!24 +JHN 4:43!2 +JHN 4:43!1 +JHN 4:43!3 +JHN 4:43!4 +JHN 4:43!5 +JHN 4:43!6 +JHN 4:43!7 +JHN 4:43!8 +JHN 4:43!9 +JHN 4:43!10 +JHN 4:44!2 +JHN 4:44!1 +JHN 4:44!3 +JHN 4:44!4 +JHN 4:44!5 +JHN 4:44!6 +JHN 4:44!7 +JHN 4:44!8 +JHN 4:44!9 +JHN 4:44!10 +JHN 4:44!11 +JHN 4:44!12 +JHN 4:44!13 +JHN 4:45!2 +JHN 4:45!1 +JHN 4:45!3 +JHN 4:45!4 +JHN 4:45!5 +JHN 4:45!6 +JHN 4:45!7 +JHN 4:45!8 +JHN 4:45!9 +JHN 4:45!10 +JHN 4:45!12 +JHN 4:45!11 +JHN 4:45!13 +JHN 4:45!14 +JHN 4:45!15 +JHN 4:45!16 +JHN 4:45!17 +JHN 4:45!18 +JHN 4:45!19 +JHN 4:45!22 +JHN 4:45!20 +JHN 4:45!21 +JHN 4:45!23 +JHN 4:45!24 +JHN 4:45!25 +JHN 4:45!26 +JHN 4:46!2 +JHN 4:46!1 +JHN 4:46!3 +JHN 4:46!4 +JHN 4:46!5 +JHN 4:46!6 +JHN 4:46!7 +JHN 4:46!8 +JHN 4:46!9 +JHN 4:46!10 +JHN 4:46!11 +JHN 4:46!12 +JHN 4:46!13 +JHN 4:46!14 +JHN 4:46!15 +JHN 4:46!16 +JHN 4:46!17 +JHN 4:46!18 +JHN 4:46!19 +JHN 4:46!20 +JHN 4:46!21 +JHN 4:46!22 +JHN 4:46!23 +JHN 4:47!1 +JHN 4:47!2 +JHN 4:47!3 +JHN 4:47!4 +JHN 4:47!5 +JHN 4:47!6 +JHN 4:47!7 +JHN 4:47!8 +JHN 4:47!9 +JHN 4:47!10 +JHN 4:47!11 +JHN 4:47!12 +JHN 4:47!13 +JHN 4:47!14 +JHN 4:47!15 +JHN 4:47!16 +JHN 4:47!17 +JHN 4:47!18 +JHN 4:47!19 +JHN 4:47!20 +JHN 4:47!21 +JHN 4:47!22 +JHN 4:47!23 +JHN 4:47!25 +JHN 4:47!24 +JHN 4:47!26 +JHN 4:48!2 +JHN 4:48!1 +JHN 4:48!3 +JHN 4:48!4 +JHN 4:48!5 +JHN 4:48!6 +JHN 4:48!7 +JHN 4:48!8 +JHN 4:48!9 +JHN 4:48!10 +JHN 4:48!11 +JHN 4:48!12 +JHN 4:48!13 +JHN 4:48!14 +JHN 4:48!15 +JHN 4:49!1 +JHN 4:49!2 +JHN 4:49!3 +JHN 4:49!4 +JHN 4:49!5 +JHN 4:49!6 +JHN 4:49!7 +JHN 4:49!8 +JHN 4:49!9 +JHN 4:49!10 +JHN 4:49!11 +JHN 4:49!12 +JHN 4:50!1 +JHN 4:50!2 +JHN 4:50!3 +JHN 4:50!4 +JHN 4:50!5 +JHN 4:50!6 +JHN 4:50!7 +JHN 4:50!8 +JHN 4:50!9 +JHN 4:50!10 +JHN 4:50!11 +JHN 4:50!12 +JHN 4:50!13 +JHN 4:50!14 +JHN 4:50!15 +JHN 4:50!16 +JHN 4:50!17 +JHN 4:50!18 +JHN 4:50!19 +JHN 4:50!20 +JHN 4:50!21 +JHN 4:51!2 +JHN 4:51!1 +JHN 4:51!3 +JHN 4:51!4 +JHN 4:51!5 +JHN 4:51!6 +JHN 4:51!7 +JHN 4:51!8 +JHN 4:51!9 +JHN 4:51!10 +JHN 4:51!11 +JHN 4:51!12 +JHN 4:51!13 +JHN 4:51!14 +JHN 4:52!2 +JHN 4:52!1 +JHN 4:52!3 +JHN 4:52!4 +JHN 4:52!5 +JHN 4:52!6 +JHN 4:52!7 +JHN 4:52!8 +JHN 4:52!9 +JHN 4:52!10 +JHN 4:52!12 +JHN 4:52!11 +JHN 4:52!13 +JHN 4:52!14 +JHN 4:52!15 +JHN 4:52!16 +JHN 4:52!17 +JHN 4:52!18 +JHN 4:52!19 +JHN 4:52!20 +JHN 4:52!21 +JHN 4:53!2 +JHN 4:53!1 +JHN 4:53!3 +JHN 4:53!4 +JHN 4:53!5 +JHN 4:53!6 +JHN 4:53!7 +JHN 4:53!8 +JHN 4:53!9 +JHN 4:53!10 +JHN 4:53!11 +JHN 4:53!12 +JHN 4:53!13 +JHN 4:53!14 +JHN 4:53!15 +JHN 4:53!16 +JHN 4:53!17 +JHN 4:53!18 +JHN 4:53!19 +JHN 4:53!20 +JHN 4:53!21 +JHN 4:53!22 +JHN 4:53!23 +JHN 4:53!24 +JHN 4:53!25 +JHN 4:53!26 +JHN 4:54!2 +JHN 4:54!3 +JHN 4:54!1 +JHN 4:54!4 +JHN 4:54!5 +JHN 4:54!6 +JHN 4:54!7 +JHN 4:54!8 +JHN 4:54!9 +JHN 4:54!10 +JHN 4:54!11 +JHN 4:54!12 +JHN 4:54!13 +JHN 4:54!14 +JHN 4:54!15 +JHN 5:1!1 +JHN 5:1!2 +JHN 5:1!3 +JHN 5:1!4 +JHN 5:1!5 +JHN 5:1!6 +JHN 5:1!7 +JHN 5:1!8 +JHN 5:1!9 +JHN 5:1!10 +JHN 5:1!11 +JHN 5:2!2 +JHN 5:2!1 +JHN 5:2!3 +JHN 5:2!4 +JHN 5:2!5 +JHN 5:2!6 +JHN 5:2!7 +JHN 5:2!8 +JHN 5:2!9 +JHN 5:2!10 +JHN 5:2!11 +JHN 5:2!12 +JHN 5:2!13 +JHN 5:2!14 +JHN 5:2!15 +JHN 5:2!16 +JHN 5:3!1 +JHN 5:3!2 +JHN 5:3!3 +JHN 5:3!4 +JHN 5:3!5 +JHN 5:3!6 +JHN 5:3!7 +JHN 5:3!8 +JHN 5:3!9 +JHN 5:3!10 +JHN 5:3!11 +JHN 5:3!12 +JHN 5:3!13 +JHN 5:3!14 +JHN 5:4!2 +JHN 5:4!1 +JHN 5:4!3 +JHN 5:4!4 +JHN 5:4!5 +JHN 5:4!6 +JHN 5:4!7 +JHN 5:4!8 +JHN 5:4!9 +JHN 5:4!10 +JHN 5:4!11 +JHN 5:4!12 +JHN 5:4!14 +JHN 5:4!13 +JHN 5:4!15 +JHN 5:4!16 +JHN 5:4!17 +JHN 5:4!18 +JHN 5:4!19 +JHN 5:4!20 +JHN 5:4!21 +JHN 5:4!22 +JHN 5:4!23 +JHN 5:4!24 +JHN 5:4!25 +JHN 5:4!26 +JHN 5:4!27 +JHN 5:5!2 +JHN 5:5!1 +JHN 5:5!3 +JHN 5:5!4 +JHN 5:5!5 +JHN 5:5!6 +JHN 5:5!7 +JHN 5:5!8 +JHN 5:5!9 +JHN 5:5!10 +JHN 5:5!11 +JHN 5:5!12 +JHN 5:5!13 +JHN 5:5!14 +JHN 5:6!3 +JHN 5:6!4 +JHN 5:6!1 +JHN 5:6!5 +JHN 5:6!2 +JHN 5:6!6 +JHN 5:6!7 +JHN 5:6!8 +JHN 5:6!9 +JHN 5:6!11 +JHN 5:6!10 +JHN 5:6!12 +JHN 5:6!13 +JHN 5:6!14 +JHN 5:6!15 +JHN 5:6!16 +JHN 5:6!17 +JHN 5:7!1 +JHN 5:7!2 +JHN 5:7!3 +JHN 5:7!4 +JHN 5:7!5 +JHN 5:7!6 +JHN 5:7!7 +JHN 5:7!8 +JHN 5:7!9 +JHN 5:7!10 +JHN 5:7!11 +JHN 5:7!12 +JHN 5:7!13 +JHN 5:7!14 +JHN 5:7!15 +JHN 5:7!16 +JHN 5:7!17 +JHN 5:7!18 +JHN 5:7!21 +JHN 5:7!19 +JHN 5:7!20 +JHN 5:7!22 +JHN 5:7!23 +JHN 5:7!24 +JHN 5:7!25 +JHN 5:7!26 +JHN 5:7!27 +JHN 5:8!1 +JHN 5:8!2 +JHN 5:8!3 +JHN 5:8!4 +JHN 5:8!5 +JHN 5:8!6 +JHN 5:8!7 +JHN 5:8!8 +JHN 5:8!9 +JHN 5:8!10 +JHN 5:8!11 +JHN 5:9!1 +JHN 5:9!2 +JHN 5:9!3 +JHN 5:9!4 +JHN 5:9!5 +JHN 5:9!6 +JHN 5:9!7 +JHN 5:9!8 +JHN 5:9!9 +JHN 5:9!10 +JHN 5:9!11 +JHN 5:9!12 +JHN 5:9!13 +JHN 5:9!15 +JHN 5:9!14 +JHN 5:9!16 +JHN 5:9!17 +JHN 5:9!18 +JHN 5:9!19 +JHN 5:9!20 +JHN 5:10!2 +JHN 5:10!1 +JHN 5:10!3 +JHN 5:10!4 +JHN 5:10!5 +JHN 5:10!6 +JHN 5:10!7 +JHN 5:10!8 +JHN 5:10!9 +JHN 5:10!10 +JHN 5:10!11 +JHN 5:10!12 +JHN 5:10!13 +JHN 5:10!14 +JHN 5:10!15 +JHN 5:11!2 +JHN 5:11!1 +JHN 5:11!3 +JHN 5:11!4 +JHN 5:11!5 +JHN 5:11!6 +JHN 5:11!7 +JHN 5:11!8 +JHN 5:11!9 +JHN 5:11!10 +JHN 5:11!11 +JHN 5:11!12 +JHN 5:11!13 +JHN 5:11!14 +JHN 5:11!15 +JHN 5:11!16 +JHN 5:11!17 +JHN 5:12!1 +JHN 5:12!2 +JHN 5:12!3 +JHN 5:12!4 +JHN 5:12!5 +JHN 5:12!6 +JHN 5:12!7 +JHN 5:12!8 +JHN 5:12!9 +JHN 5:12!10 +JHN 5:12!11 +JHN 5:12!12 +JHN 5:13!2 +JHN 5:13!1 +JHN 5:13!3 +JHN 5:13!4 +JHN 5:13!5 +JHN 5:13!6 +JHN 5:13!7 +JHN 5:13!9 +JHN 5:13!8 +JHN 5:13!10 +JHN 5:13!11 +JHN 5:13!12 +JHN 5:13!13 +JHN 5:13!14 +JHN 5:13!15 +JHN 5:13!16 +JHN 5:14!1 +JHN 5:14!2 +JHN 5:14!3 +JHN 5:14!4 +JHN 5:14!5 +JHN 5:14!6 +JHN 5:14!7 +JHN 5:14!8 +JHN 5:14!9 +JHN 5:14!10 +JHN 5:14!11 +JHN 5:14!12 +JHN 5:14!13 +JHN 5:14!14 +JHN 5:14!15 +JHN 5:14!16 +JHN 5:14!17 +JHN 5:14!18 +JHN 5:14!19 +JHN 5:14!20 +JHN 5:14!22 +JHN 5:14!21 +JHN 5:14!23 +JHN 5:15!1 +JHN 5:15!2 +JHN 5:15!3 +JHN 5:15!4 +JHN 5:15!5 +JHN 5:15!6 +JHN 5:15!7 +JHN 5:15!8 +JHN 5:15!9 +JHN 5:15!10 +JHN 5:15!11 +JHN 5:15!12 +JHN 5:15!13 +JHN 5:15!14 +JHN 5:16!1 +JHN 5:16!2 +JHN 5:16!3 +JHN 5:16!4 +JHN 5:16!5 +JHN 5:16!6 +JHN 5:16!7 +JHN 5:16!8 +JHN 5:16!9 +JHN 5:16!10 +JHN 5:16!11 +JHN 5:16!12 +JHN 5:16!13 +JHN 5:17!2 +JHN 5:17!1 +JHN 5:17!3 +JHN 5:17!4 +JHN 5:17!5 +JHN 5:17!6 +JHN 5:17!7 +JHN 5:17!8 +JHN 5:17!9 +JHN 5:17!10 +JHN 5:17!11 +JHN 5:17!12 +JHN 5:18!3 +JHN 5:18!1 +JHN 5:18!2 +JHN 5:18!4 +JHN 5:18!5 +JHN 5:18!6 +JHN 5:18!9 +JHN 5:18!7 +JHN 5:18!8 +JHN 5:18!10 +JHN 5:18!11 +JHN 5:18!12 +JHN 5:18!13 +JHN 5:18!14 +JHN 5:18!15 +JHN 5:18!16 +JHN 5:18!17 +JHN 5:18!18 +JHN 5:18!19 +JHN 5:18!20 +JHN 5:18!21 +JHN 5:18!22 +JHN 5:18!23 +JHN 5:18!24 +JHN 5:18!25 +JHN 5:18!26 +JHN 5:18!27 +JHN 5:19!2 +JHN 5:19!1 +JHN 5:19!3 +JHN 5:19!4 +JHN 5:19!5 +JHN 5:19!6 +JHN 5:19!7 +JHN 5:19!8 +JHN 5:19!9 +JHN 5:19!10 +JHN 5:19!11 +JHN 5:19!12 +JHN 5:19!13 +JHN 5:19!14 +JHN 5:19!15 +JHN 5:19!16 +JHN 5:19!17 +JHN 5:19!18 +JHN 5:19!19 +JHN 5:19!20 +JHN 5:19!21 +JHN 5:19!23 +JHN 5:19!22 +JHN 5:19!24 +JHN 5:19!25 +JHN 5:19!26 +JHN 5:19!28 +JHN 5:19!29 +JHN 5:19!27 +JHN 5:19!30 +JHN 5:19!31 +JHN 5:19!32 +JHN 5:19!33 +JHN 5:19!34 +JHN 5:19!35 +JHN 5:19!36 +JHN 5:19!37 +JHN 5:20!2 +JHN 5:20!1 +JHN 5:20!3 +JHN 5:20!4 +JHN 5:20!5 +JHN 5:20!6 +JHN 5:20!7 +JHN 5:20!9 +JHN 5:20!10 +JHN 5:20!8 +JHN 5:20!11 +JHN 5:20!12 +JHN 5:20!13 +JHN 5:20!14 +JHN 5:20!15 +JHN 5:20!16 +JHN 5:20!19 +JHN 5:20!17 +JHN 5:20!18 +JHN 5:20!20 +JHN 5:20!21 +JHN 5:20!22 +JHN 5:21!2 +JHN 5:21!1 +JHN 5:21!3 +JHN 5:21!4 +JHN 5:21!5 +JHN 5:21!6 +JHN 5:21!7 +JHN 5:21!8 +JHN 5:21!9 +JHN 5:21!10 +JHN 5:21!11 +JHN 5:21!12 +JHN 5:21!13 +JHN 5:21!14 +JHN 5:21!15 +JHN 5:21!16 +JHN 5:22!2 +JHN 5:22!1 +JHN 5:22!3 +JHN 5:22!4 +JHN 5:22!5 +JHN 5:22!6 +JHN 5:22!7 +JHN 5:22!8 +JHN 5:22!9 +JHN 5:22!10 +JHN 5:22!11 +JHN 5:22!12 +JHN 5:22!13 +JHN 5:23!1 +JHN 5:23!2 +JHN 5:23!3 +JHN 5:23!4 +JHN 5:23!5 +JHN 5:23!6 +JHN 5:23!7 +JHN 5:23!8 +JHN 5:23!9 +JHN 5:23!10 +JHN 5:23!11 +JHN 5:23!12 +JHN 5:23!13 +JHN 5:23!14 +JHN 5:23!15 +JHN 5:23!16 +JHN 5:23!17 +JHN 5:23!18 +JHN 5:23!19 +JHN 5:23!20 +JHN 5:23!21 +JHN 5:24!1 +JHN 5:24!2 +JHN 5:24!3 +JHN 5:24!4 +JHN 5:24!5 +JHN 5:24!6 +JHN 5:24!7 +JHN 5:24!8 +JHN 5:24!9 +JHN 5:24!10 +JHN 5:24!11 +JHN 5:24!12 +JHN 5:24!13 +JHN 5:24!14 +JHN 5:24!15 +JHN 5:24!16 +JHN 5:24!17 +JHN 5:24!18 +JHN 5:24!19 +JHN 5:24!20 +JHN 5:24!21 +JHN 5:24!22 +JHN 5:24!23 +JHN 5:24!24 +JHN 5:24!25 +JHN 5:24!26 +JHN 5:24!27 +JHN 5:24!28 +JHN 5:24!29 +JHN 5:24!30 +JHN 5:24!31 +JHN 5:25!1 +JHN 5:25!2 +JHN 5:25!3 +JHN 5:25!4 +JHN 5:25!5 +JHN 5:25!6 +JHN 5:25!7 +JHN 5:25!8 +JHN 5:25!9 +JHN 5:25!10 +JHN 5:25!11 +JHN 5:25!12 +JHN 5:25!13 +JHN 5:25!14 +JHN 5:25!15 +JHN 5:25!16 +JHN 5:25!17 +JHN 5:25!18 +JHN 5:25!19 +JHN 5:25!20 +JHN 5:25!21 +JHN 5:25!22 +JHN 5:25!23 +JHN 5:25!24 +JHN 5:26!2 +JHN 5:26!1 +JHN 5:26!3 +JHN 5:26!4 +JHN 5:26!5 +JHN 5:26!6 +JHN 5:26!7 +JHN 5:26!8 +JHN 5:26!9 +JHN 5:26!10 +JHN 5:26!11 +JHN 5:26!12 +JHN 5:26!13 +JHN 5:26!14 +JHN 5:26!15 +JHN 5:26!16 +JHN 5:26!17 +JHN 5:27!1 +JHN 5:27!2 +JHN 5:27!3 +JHN 5:27!4 +JHN 5:27!5 +JHN 5:27!6 +JHN 5:27!7 +JHN 5:27!8 +JHN 5:27!9 +JHN 5:27!10 +JHN 5:28!1 +JHN 5:28!2 +JHN 5:28!3 +JHN 5:28!4 +JHN 5:28!5 +JHN 5:28!6 +JHN 5:28!7 +JHN 5:28!8 +JHN 5:28!9 +JHN 5:28!10 +JHN 5:28!11 +JHN 5:28!12 +JHN 5:28!13 +JHN 5:28!14 +JHN 5:28!15 +JHN 5:28!16 +JHN 5:28!17 +JHN 5:29!1 +JHN 5:29!2 +JHN 5:29!3 +JHN 5:29!4 +JHN 5:29!5 +JHN 5:29!6 +JHN 5:29!7 +JHN 5:29!8 +JHN 5:29!9 +JHN 5:29!10 +JHN 5:29!11 +JHN 5:29!12 +JHN 5:29!13 +JHN 5:29!14 +JHN 5:29!15 +JHN 5:29!16 +JHN 5:30!1 +JHN 5:30!2 +JHN 5:30!3 +JHN 5:30!4 +JHN 5:30!5 +JHN 5:30!6 +JHN 5:30!7 +JHN 5:30!8 +JHN 5:30!9 +JHN 5:30!10 +JHN 5:30!11 +JHN 5:30!12 +JHN 5:30!13 +JHN 5:30!14 +JHN 5:30!15 +JHN 5:30!16 +JHN 5:30!17 +JHN 5:30!18 +JHN 5:30!19 +JHN 5:30!20 +JHN 5:30!21 +JHN 5:30!22 +JHN 5:30!23 +JHN 5:30!24 +JHN 5:30!25 +JHN 5:30!26 +JHN 5:30!27 +JHN 5:30!28 +JHN 5:30!29 +JHN 5:30!30 +JHN 5:31!1 +JHN 5:31!2 +JHN 5:31!3 +JHN 5:31!4 +JHN 5:31!5 +JHN 5:31!6 +JHN 5:31!7 +JHN 5:31!8 +JHN 5:31!9 +JHN 5:31!10 +JHN 5:31!11 +JHN 5:32!1 +JHN 5:32!2 +JHN 5:32!3 +JHN 5:32!4 +JHN 5:32!5 +JHN 5:32!6 +JHN 5:32!7 +JHN 5:32!8 +JHN 5:32!9 +JHN 5:32!10 +JHN 5:32!11 +JHN 5:32!12 +JHN 5:32!13 +JHN 5:32!14 +JHN 5:32!15 +JHN 5:32!16 +JHN 5:32!17 +JHN 5:33!1 +JHN 5:33!2 +JHN 5:33!3 +JHN 5:33!4 +JHN 5:33!5 +JHN 5:33!6 +JHN 5:33!7 +JHN 5:33!8 +JHN 5:34!2 +JHN 5:34!1 +JHN 5:34!3 +JHN 5:34!4 +JHN 5:34!5 +JHN 5:34!6 +JHN 5:34!7 +JHN 5:34!8 +JHN 5:34!9 +JHN 5:34!10 +JHN 5:34!11 +JHN 5:34!12 +JHN 5:34!13 +JHN 5:34!14 +JHN 5:35!1 +JHN 5:35!2 +JHN 5:35!3 +JHN 5:35!4 +JHN 5:35!5 +JHN 5:35!6 +JHN 5:35!7 +JHN 5:35!8 +JHN 5:35!10 +JHN 5:35!9 +JHN 5:35!11 +JHN 5:35!12 +JHN 5:35!13 +JHN 5:35!14 +JHN 5:35!15 +JHN 5:35!16 +JHN 5:35!17 +JHN 5:35!18 +JHN 5:36!2 +JHN 5:36!1 +JHN 5:36!3 +JHN 5:36!4 +JHN 5:36!5 +JHN 5:36!6 +JHN 5:36!7 +JHN 5:36!8 +JHN 5:36!10 +JHN 5:36!9 +JHN 5:36!11 +JHN 5:36!12 +JHN 5:36!13 +JHN 5:36!14 +JHN 5:36!15 +JHN 5:36!16 +JHN 5:36!17 +JHN 5:36!18 +JHN 5:36!19 +JHN 5:36!20 +JHN 5:36!21 +JHN 5:36!22 +JHN 5:36!23 +JHN 5:36!24 +JHN 5:36!25 +JHN 5:36!26 +JHN 5:36!27 +JHN 5:36!28 +JHN 5:36!29 +JHN 5:36!30 +JHN 5:36!31 +JHN 5:36!32 +JHN 5:37!1 +JHN 5:37!2 +JHN 5:37!3 +JHN 5:37!4 +JHN 5:37!5 +JHN 5:37!6 +JHN 5:37!7 +JHN 5:37!8 +JHN 5:37!9 +JHN 5:37!10 +JHN 5:37!11 +JHN 5:37!12 +JHN 5:37!13 +JHN 5:37!14 +JHN 5:37!15 +JHN 5:37!16 +JHN 5:37!17 +JHN 5:37!18 +JHN 5:38!1 +JHN 5:38!5 +JHN 5:38!6 +JHN 5:38!2 +JHN 5:38!3 +JHN 5:38!4 +JHN 5:38!7 +JHN 5:38!8 +JHN 5:38!9 +JHN 5:38!10 +JHN 5:38!11 +JHN 5:38!12 +JHN 5:38!13 +JHN 5:38!14 +JHN 5:38!15 +JHN 5:38!16 +JHN 5:38!17 +JHN 5:39!1 +JHN 5:39!2 +JHN 5:39!3 +JHN 5:39!4 +JHN 5:39!5 +JHN 5:39!6 +JHN 5:39!7 +JHN 5:39!8 +JHN 5:39!9 +JHN 5:39!10 +JHN 5:39!11 +JHN 5:39!12 +JHN 5:39!13 +JHN 5:39!14 +JHN 5:39!15 +JHN 5:39!16 +JHN 5:39!17 +JHN 5:39!18 +JHN 5:40!1 +JHN 5:40!2 +JHN 5:40!3 +JHN 5:40!4 +JHN 5:40!5 +JHN 5:40!6 +JHN 5:40!7 +JHN 5:40!8 +JHN 5:40!9 +JHN 5:41!1 +JHN 5:41!2 +JHN 5:41!3 +JHN 5:41!4 +JHN 5:41!5 +JHN 5:42!1 +JHN 5:42!2 +JHN 5:42!3 +JHN 5:42!4 +JHN 5:42!5 +JHN 5:42!6 +JHN 5:42!7 +JHN 5:42!8 +JHN 5:42!9 +JHN 5:42!10 +JHN 5:42!11 +JHN 5:42!12 +JHN 5:43!1 +JHN 5:43!2 +JHN 5:43!3 +JHN 5:43!4 +JHN 5:43!5 +JHN 5:43!6 +JHN 5:43!7 +JHN 5:43!8 +JHN 5:43!9 +JHN 5:43!10 +JHN 5:43!11 +JHN 5:43!12 +JHN 5:43!13 +JHN 5:43!14 +JHN 5:43!15 +JHN 5:43!16 +JHN 5:43!17 +JHN 5:43!18 +JHN 5:43!19 +JHN 5:43!20 +JHN 5:43!21 +JHN 5:43!22 +JHN 5:44!1 +JHN 5:44!2 +JHN 5:44!3 +JHN 5:44!4 +JHN 5:44!5 +JHN 5:44!6 +JHN 5:44!7 +JHN 5:44!8 +JHN 5:44!9 +JHN 5:44!10 +JHN 5:44!11 +JHN 5:44!12 +JHN 5:44!13 +JHN 5:44!14 +JHN 5:44!15 +JHN 5:44!16 +JHN 5:44!17 +JHN 5:44!18 +JHN 5:45!1 +JHN 5:45!2 +JHN 5:45!3 +JHN 5:45!4 +JHN 5:45!5 +JHN 5:45!6 +JHN 5:45!7 +JHN 5:45!8 +JHN 5:45!9 +JHN 5:45!10 +JHN 5:45!11 +JHN 5:45!12 +JHN 5:45!13 +JHN 5:45!14 +JHN 5:45!15 +JHN 5:45!16 +JHN 5:45!17 +JHN 5:45!18 +JHN 5:46!2 +JHN 5:46!1 +JHN 5:46!3 +JHN 5:46!4 +JHN 5:46!6 +JHN 5:46!5 +JHN 5:46!7 +JHN 5:46!9 +JHN 5:46!8 +JHN 5:46!10 +JHN 5:46!11 +JHN 5:46!12 +JHN 5:47!2 +JHN 5:47!1 +JHN 5:47!3 +JHN 5:47!4 +JHN 5:47!5 +JHN 5:47!6 +JHN 5:47!7 +JHN 5:47!8 +JHN 5:47!9 +JHN 5:47!10 +JHN 5:47!11 +JHN 5:47!12 +JHN 6:1!1 +JHN 6:1!2 +JHN 6:1!3 +JHN 6:1!4 +JHN 6:1!5 +JHN 6:1!6 +JHN 6:1!7 +JHN 6:1!8 +JHN 6:1!9 +JHN 6:1!10 +JHN 6:1!11 +JHN 6:1!12 +JHN 6:2!2 +JHN 6:2!1 +JHN 6:2!3 +JHN 6:2!4 +JHN 6:2!5 +JHN 6:2!6 +JHN 6:2!7 +JHN 6:2!8 +JHN 6:2!9 +JHN 6:2!10 +JHN 6:2!11 +JHN 6:2!12 +JHN 6:2!13 +JHN 6:2!14 +JHN 6:3!2 +JHN 6:3!1 +JHN 6:3!3 +JHN 6:3!4 +JHN 6:3!5 +JHN 6:3!6 +JHN 6:3!7 +JHN 6:3!8 +JHN 6:3!9 +JHN 6:3!10 +JHN 6:3!11 +JHN 6:3!12 +JHN 6:3!13 +JHN 6:4!2 +JHN 6:4!1 +JHN 6:4!3 +JHN 6:4!4 +JHN 6:4!5 +JHN 6:4!6 +JHN 6:4!7 +JHN 6:4!8 +JHN 6:4!9 +JHN 6:5!2 +JHN 6:5!5 +JHN 6:5!6 +JHN 6:5!1 +JHN 6:5!3 +JHN 6:5!4 +JHN 6:5!7 +JHN 6:5!8 +JHN 6:5!9 +JHN 6:5!10 +JHN 6:5!11 +JHN 6:5!12 +JHN 6:5!13 +JHN 6:5!14 +JHN 6:5!15 +JHN 6:5!16 +JHN 6:5!17 +JHN 6:5!18 +JHN 6:5!19 +JHN 6:5!20 +JHN 6:5!21 +JHN 6:5!22 +JHN 6:5!23 +JHN 6:6!2 +JHN 6:6!1 +JHN 6:6!3 +JHN 6:6!4 +JHN 6:6!5 +JHN 6:6!7 +JHN 6:6!6 +JHN 6:6!8 +JHN 6:6!9 +JHN 6:6!11 +JHN 6:6!10 +JHN 6:7!1 +JHN 6:7!2 +JHN 6:7!3 +JHN 6:7!4 +JHN 6:7!5 +JHN 6:7!6 +JHN 6:7!7 +JHN 6:7!8 +JHN 6:7!9 +JHN 6:7!10 +JHN 6:7!11 +JHN 6:7!12 +JHN 6:7!13 +JHN 6:7!14 +JHN 6:7!15 +JHN 6:8!1 +JHN 6:8!2 +JHN 6:8!3 +JHN 6:8!4 +JHN 6:8!5 +JHN 6:8!6 +JHN 6:8!7 +JHN 6:8!8 +JHN 6:8!9 +JHN 6:8!10 +JHN 6:8!11 +JHN 6:8!12 +JHN 6:9!1 +JHN 6:9!2 +JHN 6:9!3 +JHN 6:9!4 +JHN 6:9!5 +JHN 6:9!6 +JHN 6:9!7 +JHN 6:9!8 +JHN 6:9!9 +JHN 6:9!10 +JHN 6:9!11 +JHN 6:9!12 +JHN 6:9!13 +JHN 6:9!14 +JHN 6:9!15 +JHN 6:9!16 +JHN 6:9!17 +JHN 6:10!1 +JHN 6:10!2 +JHN 6:10!3 +JHN 6:10!4 +JHN 6:10!5 +JHN 6:10!6 +JHN 6:10!7 +JHN 6:10!9 +JHN 6:10!8 +JHN 6:10!10 +JHN 6:10!11 +JHN 6:10!12 +JHN 6:10!13 +JHN 6:10!14 +JHN 6:10!16 +JHN 6:10!15 +JHN 6:10!17 +JHN 6:10!18 +JHN 6:10!19 +JHN 6:10!20 +JHN 6:10!21 +JHN 6:10!22 +JHN 6:11!2 +JHN 6:11!1 +JHN 6:11!3 +JHN 6:11!4 +JHN 6:11!5 +JHN 6:11!6 +JHN 6:11!7 +JHN 6:11!8 +JHN 6:11!9 +JHN 6:11!10 +JHN 6:11!11 +JHN 6:11!12 +JHN 6:11!13 +JHN 6:11!14 +JHN 6:11!15 +JHN 6:11!16 +JHN 6:11!17 +JHN 6:11!18 +JHN 6:12!2 +JHN 6:12!1 +JHN 6:12!3 +JHN 6:12!4 +JHN 6:12!5 +JHN 6:12!6 +JHN 6:12!7 +JHN 6:12!8 +JHN 6:12!9 +JHN 6:12!10 +JHN 6:12!11 +JHN 6:12!12 +JHN 6:12!13 +JHN 6:12!14 +JHN 6:12!15 +JHN 6:13!2 +JHN 6:13!1 +JHN 6:13!3 +JHN 6:13!4 +JHN 6:13!5 +JHN 6:13!6 +JHN 6:13!7 +JHN 6:13!8 +JHN 6:13!9 +JHN 6:13!10 +JHN 6:13!11 +JHN 6:13!12 +JHN 6:13!13 +JHN 6:13!14 +JHN 6:13!15 +JHN 6:13!16 +JHN 6:13!17 +JHN 6:14!2 +JHN 6:14!1 +JHN 6:14!3 +JHN 6:14!4 +JHN 6:14!5 +JHN 6:14!6 +JHN 6:14!7 +JHN 6:14!8 +JHN 6:14!9 +JHN 6:14!10 +JHN 6:14!11 +JHN 6:14!12 +JHN 6:14!13 +JHN 6:14!14 +JHN 6:14!15 +JHN 6:14!16 +JHN 6:14!17 +JHN 6:14!18 +JHN 6:14!19 +JHN 6:15!2 +JHN 6:15!3 +JHN 6:15!4 +JHN 6:15!5 +JHN 6:15!6 +JHN 6:15!7 +JHN 6:15!8 +JHN 6:15!9 +JHN 6:15!10 +JHN 6:15!11 +JHN 6:15!12 +JHN 6:15!13 +JHN 6:15!14 +JHN 6:15!15 +JHN 6:15!16 +JHN 6:15!17 +JHN 6:15!1 +JHN 6:15!18 +JHN 6:15!19 +JHN 6:16!2 +JHN 6:16!1 +JHN 6:16!3 +JHN 6:16!4 +JHN 6:16!5 +JHN 6:16!6 +JHN 6:16!7 +JHN 6:16!8 +JHN 6:16!9 +JHN 6:16!10 +JHN 6:16!11 +JHN 6:17!1 +JHN 6:17!2 +JHN 6:17!3 +JHN 6:17!4 +JHN 6:17!5 +JHN 6:17!6 +JHN 6:17!7 +JHN 6:17!8 +JHN 6:17!9 +JHN 6:17!10 +JHN 6:17!11 +JHN 6:17!12 +JHN 6:17!13 +JHN 6:17!14 +JHN 6:17!15 +JHN 6:17!16 +JHN 6:17!17 +JHN 6:17!18 +JHN 6:17!19 +JHN 6:17!20 +JHN 6:17!21 +JHN 6:18!2 +JHN 6:18!1 +JHN 6:18!3 +JHN 6:18!4 +JHN 6:18!5 +JHN 6:18!6 +JHN 6:18!7 +JHN 6:19!2 +JHN 6:19!1 +JHN 6:19!3 +JHN 6:19!4 +JHN 6:19!5 +JHN 6:19!6 +JHN 6:19!7 +JHN 6:19!8 +JHN 6:19!9 +JHN 6:19!10 +JHN 6:19!11 +JHN 6:19!12 +JHN 6:19!13 +JHN 6:19!14 +JHN 6:19!15 +JHN 6:19!16 +JHN 6:19!17 +JHN 6:19!18 +JHN 6:19!19 +JHN 6:19!20 +JHN 6:19!21 +JHN 6:19!22 +JHN 6:20!2 +JHN 6:20!1 +JHN 6:20!3 +JHN 6:20!4 +JHN 6:20!5 +JHN 6:20!6 +JHN 6:20!7 +JHN 6:20!8 +JHN 6:21!2 +JHN 6:21!1 +JHN 6:21!3 +JHN 6:21!4 +JHN 6:21!5 +JHN 6:21!6 +JHN 6:21!7 +JHN 6:21!8 +JHN 6:21!9 +JHN 6:21!10 +JHN 6:21!11 +JHN 6:21!12 +JHN 6:21!13 +JHN 6:21!14 +JHN 6:21!15 +JHN 6:21!16 +JHN 6:21!17 +JHN 6:21!18 +JHN 6:22!1 +JHN 6:22!2 +JHN 6:22!3 +JHN 6:22!4 +JHN 6:22!5 +JHN 6:22!6 +JHN 6:22!7 +JHN 6:22!8 +JHN 6:22!9 +JHN 6:22!10 +JHN 6:22!11 +JHN 6:22!12 +JHN 6:22!13 +JHN 6:22!14 +JHN 6:22!15 +JHN 6:22!16 +JHN 6:22!17 +JHN 6:22!18 +JHN 6:22!19 +JHN 6:22!20 +JHN 6:22!21 +JHN 6:22!22 +JHN 6:22!23 +JHN 6:22!24 +JHN 6:22!25 +JHN 6:22!26 +JHN 6:22!27 +JHN 6:22!28 +JHN 6:22!29 +JHN 6:22!30 +JHN 6:22!31 +JHN 6:22!32 +JHN 6:22!33 +JHN 6:22!34 +JHN 6:22!35 +JHN 6:22!36 +JHN 6:22!37 +JHN 6:23!1 +JHN 6:23!3 +JHN 6:23!2 +JHN 6:23!4 +JHN 6:23!5 +JHN 6:23!6 +JHN 6:23!7 +JHN 6:23!8 +JHN 6:23!9 +JHN 6:23!10 +JHN 6:23!11 +JHN 6:23!12 +JHN 6:23!13 +JHN 6:23!14 +JHN 6:23!15 +JHN 6:24!2 +JHN 6:24!1 +JHN 6:24!3 +JHN 6:24!4 +JHN 6:24!5 +JHN 6:24!6 +JHN 6:24!7 +JHN 6:24!8 +JHN 6:24!9 +JHN 6:24!10 +JHN 6:24!11 +JHN 6:24!12 +JHN 6:24!13 +JHN 6:24!14 +JHN 6:24!15 +JHN 6:24!16 +JHN 6:24!17 +JHN 6:24!18 +JHN 6:24!19 +JHN 6:24!20 +JHN 6:24!21 +JHN 6:24!22 +JHN 6:24!23 +JHN 6:24!24 +JHN 6:24!25 +JHN 6:24!26 +JHN 6:25!1 +JHN 6:25!2 +JHN 6:25!3 +JHN 6:25!4 +JHN 6:25!5 +JHN 6:25!6 +JHN 6:25!7 +JHN 6:25!8 +JHN 6:25!9 +JHN 6:25!10 +JHN 6:25!11 +JHN 6:25!12 +JHN 6:26!1 +JHN 6:26!2 +JHN 6:26!3 +JHN 6:26!4 +JHN 6:26!5 +JHN 6:26!6 +JHN 6:26!7 +JHN 6:26!8 +JHN 6:26!9 +JHN 6:26!10 +JHN 6:26!11 +JHN 6:26!12 +JHN 6:26!13 +JHN 6:26!14 +JHN 6:26!15 +JHN 6:26!16 +JHN 6:26!17 +JHN 6:26!18 +JHN 6:26!19 +JHN 6:26!20 +JHN 6:26!21 +JHN 6:26!22 +JHN 6:26!23 +JHN 6:26!24 +JHN 6:27!1 +JHN 6:27!2 +JHN 6:27!3 +JHN 6:27!4 +JHN 6:27!5 +JHN 6:27!6 +JHN 6:27!7 +JHN 6:27!8 +JHN 6:27!9 +JHN 6:27!10 +JHN 6:27!11 +JHN 6:27!12 +JHN 6:27!13 +JHN 6:27!14 +JHN 6:27!15 +JHN 6:27!16 +JHN 6:27!17 +JHN 6:27!18 +JHN 6:27!19 +JHN 6:27!20 +JHN 6:27!21 +JHN 6:27!23 +JHN 6:27!22 +JHN 6:27!24 +JHN 6:27!25 +JHN 6:27!27 +JHN 6:27!28 +JHN 6:27!26 +JHN 6:28!2 +JHN 6:28!1 +JHN 6:28!3 +JHN 6:28!4 +JHN 6:28!5 +JHN 6:28!6 +JHN 6:28!7 +JHN 6:28!8 +JHN 6:28!9 +JHN 6:28!10 +JHN 6:28!11 +JHN 6:28!12 +JHN 6:29!1 +JHN 6:29!2 +JHN 6:29!3 +JHN 6:29!4 +JHN 6:29!5 +JHN 6:29!6 +JHN 6:29!7 +JHN 6:29!8 +JHN 6:29!9 +JHN 6:29!10 +JHN 6:29!11 +JHN 6:29!12 +JHN 6:29!13 +JHN 6:29!14 +JHN 6:29!15 +JHN 6:29!16 +JHN 6:29!17 +JHN 6:30!2 +JHN 6:30!1 +JHN 6:30!3 +JHN 6:30!5 +JHN 6:30!4 +JHN 6:30!8 +JHN 6:30!6 +JHN 6:30!7 +JHN 6:30!9 +JHN 6:30!10 +JHN 6:30!11 +JHN 6:30!12 +JHN 6:30!13 +JHN 6:30!14 +JHN 6:30!15 +JHN 6:31!1 +JHN 6:31!2 +JHN 6:31!3 +JHN 6:31!4 +JHN 6:31!5 +JHN 6:31!6 +JHN 6:31!7 +JHN 6:31!8 +JHN 6:31!9 +JHN 6:31!10 +JHN 6:31!11 +JHN 6:31!12 +JHN 6:31!13 +JHN 6:31!14 +JHN 6:31!15 +JHN 6:31!16 +JHN 6:31!17 +JHN 6:31!18 +JHN 6:31!19 +JHN 6:32!2 +JHN 6:32!1 +JHN 6:32!3 +JHN 6:32!4 +JHN 6:32!5 +JHN 6:32!6 +JHN 6:32!7 +JHN 6:32!8 +JHN 6:32!9 +JHN 6:32!10 +JHN 6:32!11 +JHN 6:32!12 +JHN 6:32!13 +JHN 6:32!14 +JHN 6:32!15 +JHN 6:32!16 +JHN 6:32!17 +JHN 6:32!18 +JHN 6:32!19 +JHN 6:32!20 +JHN 6:32!21 +JHN 6:32!22 +JHN 6:32!23 +JHN 6:32!24 +JHN 6:32!25 +JHN 6:32!26 +JHN 6:32!27 +JHN 6:32!28 +JHN 6:32!29 +JHN 6:32!30 +JHN 6:32!31 +JHN 6:33!2 +JHN 6:33!1 +JHN 6:33!3 +JHN 6:33!4 +JHN 6:33!5 +JHN 6:33!6 +JHN 6:33!7 +JHN 6:33!8 +JHN 6:33!9 +JHN 6:33!10 +JHN 6:33!11 +JHN 6:33!12 +JHN 6:33!13 +JHN 6:33!14 +JHN 6:33!15 +JHN 6:33!16 +JHN 6:34!2 +JHN 6:34!1 +JHN 6:34!3 +JHN 6:34!4 +JHN 6:34!5 +JHN 6:34!6 +JHN 6:34!7 +JHN 6:34!8 +JHN 6:34!9 +JHN 6:34!10 +JHN 6:34!11 +JHN 6:35!1 +JHN 6:35!2 +JHN 6:35!3 +JHN 6:35!4 +JHN 6:35!5 +JHN 6:35!6 +JHN 6:35!7 +JHN 6:35!8 +JHN 6:35!9 +JHN 6:35!10 +JHN 6:35!11 +JHN 6:35!12 +JHN 6:35!13 +JHN 6:35!14 +JHN 6:35!15 +JHN 6:35!16 +JHN 6:35!17 +JHN 6:35!18 +JHN 6:35!19 +JHN 6:35!20 +JHN 6:35!21 +JHN 6:35!22 +JHN 6:35!23 +JHN 6:35!24 +JHN 6:35!25 +JHN 6:35!26 +JHN 6:36!1 +JHN 6:36!2 +JHN 6:36!3 +JHN 6:36!4 +JHN 6:36!5 +JHN 6:36!6 +JHN 6:36!7 +JHN 6:36!8 +JHN 6:36!9 +JHN 6:36!10 +JHN 6:37!1 +JHN 6:37!2 +JHN 6:37!3 +JHN 6:37!4 +JHN 6:37!5 +JHN 6:37!6 +JHN 6:37!7 +JHN 6:37!8 +JHN 6:37!9 +JHN 6:37!10 +JHN 6:37!11 +JHN 6:37!12 +JHN 6:37!13 +JHN 6:37!14 +JHN 6:37!15 +JHN 6:37!16 +JHN 6:37!17 +JHN 6:37!18 +JHN 6:38!1 +JHN 6:38!2 +JHN 6:38!3 +JHN 6:38!4 +JHN 6:38!5 +JHN 6:38!6 +JHN 6:38!7 +JHN 6:38!8 +JHN 6:38!9 +JHN 6:38!10 +JHN 6:38!11 +JHN 6:38!12 +JHN 6:38!13 +JHN 6:38!14 +JHN 6:38!15 +JHN 6:38!16 +JHN 6:38!17 +JHN 6:38!18 +JHN 6:39!2 +JHN 6:39!1 +JHN 6:39!3 +JHN 6:39!4 +JHN 6:39!5 +JHN 6:39!6 +JHN 6:39!7 +JHN 6:39!8 +JHN 6:39!9 +JHN 6:39!10 +JHN 6:39!11 +JHN 6:39!12 +JHN 6:39!13 +JHN 6:39!14 +JHN 6:39!15 +JHN 6:39!16 +JHN 6:39!17 +JHN 6:39!18 +JHN 6:39!19 +JHN 6:39!20 +JHN 6:39!21 +JHN 6:39!22 +JHN 6:39!23 +JHN 6:39!24 +JHN 6:40!2 +JHN 6:40!1 +JHN 6:40!3 +JHN 6:40!4 +JHN 6:40!5 +JHN 6:40!6 +JHN 6:40!7 +JHN 6:40!8 +JHN 6:40!9 +JHN 6:40!10 +JHN 6:40!11 +JHN 6:40!12 +JHN 6:40!13 +JHN 6:40!14 +JHN 6:40!15 +JHN 6:40!16 +JHN 6:40!17 +JHN 6:40!18 +JHN 6:40!19 +JHN 6:40!20 +JHN 6:40!21 +JHN 6:40!22 +JHN 6:40!23 +JHN 6:40!24 +JHN 6:40!25 +JHN 6:40!26 +JHN 6:40!27 +JHN 6:40!28 +JHN 6:40!29 +JHN 6:41!2 +JHN 6:41!1 +JHN 6:41!3 +JHN 6:41!4 +JHN 6:41!5 +JHN 6:41!6 +JHN 6:41!7 +JHN 6:41!8 +JHN 6:41!9 +JHN 6:41!10 +JHN 6:41!11 +JHN 6:41!12 +JHN 6:41!13 +JHN 6:41!14 +JHN 6:41!15 +JHN 6:41!16 +JHN 6:41!17 +JHN 6:42!1 +JHN 6:42!2 +JHN 6:42!3 +JHN 6:42!4 +JHN 6:42!5 +JHN 6:42!6 +JHN 6:42!7 +JHN 6:42!8 +JHN 6:42!9 +JHN 6:42!10 +JHN 6:42!11 +JHN 6:42!12 +JHN 6:42!13 +JHN 6:42!14 +JHN 6:42!15 +JHN 6:42!16 +JHN 6:42!17 +JHN 6:42!18 +JHN 6:42!19 +JHN 6:42!20 +JHN 6:42!21 +JHN 6:42!22 +JHN 6:42!23 +JHN 6:42!24 +JHN 6:42!25 +JHN 6:43!1 +JHN 6:43!2 +JHN 6:43!3 +JHN 6:43!4 +JHN 6:43!5 +JHN 6:43!6 +JHN 6:43!7 +JHN 6:43!8 +JHN 6:43!9 +JHN 6:44!1 +JHN 6:44!2 +JHN 6:44!3 +JHN 6:44!4 +JHN 6:44!5 +JHN 6:44!6 +JHN 6:44!7 +JHN 6:44!8 +JHN 6:44!9 +JHN 6:44!10 +JHN 6:44!11 +JHN 6:44!12 +JHN 6:44!13 +JHN 6:44!14 +JHN 6:44!15 +JHN 6:44!16 +JHN 6:44!17 +JHN 6:44!18 +JHN 6:44!19 +JHN 6:44!20 +JHN 6:44!21 +JHN 6:45!1 +JHN 6:45!2 +JHN 6:45!3 +JHN 6:45!4 +JHN 6:45!5 +JHN 6:45!6 +JHN 6:45!7 +JHN 6:45!8 +JHN 6:45!9 +JHN 6:45!10 +JHN 6:45!11 +JHN 6:45!12 +JHN 6:45!13 +JHN 6:45!14 +JHN 6:45!15 +JHN 6:45!16 +JHN 6:45!17 +JHN 6:45!18 +JHN 6:45!19 +JHN 6:45!20 +JHN 6:45!21 +JHN 6:46!1 +JHN 6:46!2 +JHN 6:46!3 +JHN 6:46!4 +JHN 6:46!5 +JHN 6:46!6 +JHN 6:46!7 +JHN 6:46!8 +JHN 6:46!9 +JHN 6:46!10 +JHN 6:46!11 +JHN 6:46!12 +JHN 6:46!13 +JHN 6:46!14 +JHN 6:46!15 +JHN 6:46!16 +JHN 6:46!17 +JHN 6:47!1 +JHN 6:47!2 +JHN 6:47!3 +JHN 6:47!4 +JHN 6:47!5 +JHN 6:47!6 +JHN 6:47!7 +JHN 6:47!8 +JHN 6:47!9 +JHN 6:48!1 +JHN 6:48!2 +JHN 6:48!3 +JHN 6:48!4 +JHN 6:48!5 +JHN 6:48!6 +JHN 6:49!1 +JHN 6:49!2 +JHN 6:49!3 +JHN 6:49!4 +JHN 6:49!5 +JHN 6:49!6 +JHN 6:49!7 +JHN 6:49!8 +JHN 6:49!9 +JHN 6:49!10 +JHN 6:49!11 +JHN 6:50!1 +JHN 6:50!2 +JHN 6:50!3 +JHN 6:50!4 +JHN 6:50!5 +JHN 6:50!6 +JHN 6:50!7 +JHN 6:50!8 +JHN 6:50!9 +JHN 6:50!10 +JHN 6:50!11 +JHN 6:50!12 +JHN 6:50!13 +JHN 6:50!14 +JHN 6:50!15 +JHN 6:50!16 +JHN 6:50!17 +JHN 6:51!1 +JHN 6:51!2 +JHN 6:51!3 +JHN 6:51!4 +JHN 6:51!5 +JHN 6:51!6 +JHN 6:51!7 +JHN 6:51!8 +JHN 6:51!9 +JHN 6:51!10 +JHN 6:51!11 +JHN 6:51!12 +JHN 6:51!13 +JHN 6:51!14 +JHN 6:51!15 +JHN 6:51!16 +JHN 6:51!17 +JHN 6:51!18 +JHN 6:51!19 +JHN 6:51!20 +JHN 6:51!21 +JHN 6:51!22 +JHN 6:51!26 +JHN 6:51!23 +JHN 6:51!24 +JHN 6:51!25 +JHN 6:51!27 +JHN 6:51!28 +JHN 6:51!29 +JHN 6:51!30 +JHN 6:51!31 +JHN 6:51!32 +JHN 6:51!33 +JHN 6:51!34 +JHN 6:51!35 +JHN 6:51!36 +JHN 6:51!37 +JHN 6:51!38 +JHN 6:52!2 +JHN 6:52!1 +JHN 6:52!3 +JHN 6:52!4 +JHN 6:52!5 +JHN 6:52!6 +JHN 6:52!7 +JHN 6:52!8 +JHN 6:52!9 +JHN 6:52!10 +JHN 6:52!11 +JHN 6:52!12 +JHN 6:52!13 +JHN 6:52!14 +JHN 6:52!15 +JHN 6:53!2 +JHN 6:53!1 +JHN 6:53!3 +JHN 6:53!4 +JHN 6:53!5 +JHN 6:53!6 +JHN 6:53!7 +JHN 6:53!8 +JHN 6:53!9 +JHN 6:53!10 +JHN 6:53!11 +JHN 6:53!12 +JHN 6:53!13 +JHN 6:53!14 +JHN 6:53!15 +JHN 6:53!16 +JHN 6:53!17 +JHN 6:53!18 +JHN 6:53!19 +JHN 6:53!20 +JHN 6:53!21 +JHN 6:53!22 +JHN 6:53!23 +JHN 6:53!24 +JHN 6:53!25 +JHN 6:53!26 +JHN 6:53!27 +JHN 6:53!28 +JHN 6:54!1 +JHN 6:54!2 +JHN 6:54!3 +JHN 6:54!4 +JHN 6:54!5 +JHN 6:54!6 +JHN 6:54!7 +JHN 6:54!8 +JHN 6:54!9 +JHN 6:54!10 +JHN 6:54!11 +JHN 6:54!12 +JHN 6:54!13 +JHN 6:54!14 +JHN 6:54!15 +JHN 6:54!16 +JHN 6:54!17 +JHN 6:54!18 +JHN 6:54!19 +JHN 6:55!2 +JHN 6:55!1 +JHN 6:55!3 +JHN 6:55!4 +JHN 6:55!5 +JHN 6:55!7 +JHN 6:55!6 +JHN 6:55!8 +JHN 6:55!9 +JHN 6:55!10 +JHN 6:55!11 +JHN 6:55!12 +JHN 6:55!14 +JHN 6:55!13 +JHN 6:56!1 +JHN 6:56!2 +JHN 6:56!3 +JHN 6:56!4 +JHN 6:56!5 +JHN 6:56!6 +JHN 6:56!7 +JHN 6:56!8 +JHN 6:56!9 +JHN 6:56!10 +JHN 6:56!11 +JHN 6:56!12 +JHN 6:56!13 +JHN 6:56!14 +JHN 6:56!15 +JHN 6:56!16 +JHN 6:57!1 +JHN 6:57!2 +JHN 6:57!3 +JHN 6:57!4 +JHN 6:57!5 +JHN 6:57!6 +JHN 6:57!7 +JHN 6:57!8 +JHN 6:57!9 +JHN 6:57!10 +JHN 6:57!11 +JHN 6:57!12 +JHN 6:57!13 +JHN 6:57!14 +JHN 6:57!15 +JHN 6:57!16 +JHN 6:57!17 +JHN 6:57!18 +JHN 6:57!19 +JHN 6:58!1 +JHN 6:58!2 +JHN 6:58!3 +JHN 6:58!4 +JHN 6:58!5 +JHN 6:58!6 +JHN 6:58!7 +JHN 6:58!8 +JHN 6:58!9 +JHN 6:58!10 +JHN 6:58!11 +JHN 6:58!12 +JHN 6:58!13 +JHN 6:58!14 +JHN 6:58!15 +JHN 6:58!16 +JHN 6:58!17 +JHN 6:58!18 +JHN 6:58!19 +JHN 6:58!20 +JHN 6:58!21 +JHN 6:58!22 +JHN 6:58!23 +JHN 6:58!24 +JHN 6:59!1 +JHN 6:59!2 +JHN 6:59!3 +JHN 6:59!4 +JHN 6:59!5 +JHN 6:59!6 +JHN 6:59!7 +JHN 6:60!2 +JHN 6:60!1 +JHN 6:60!4 +JHN 6:60!5 +JHN 6:60!6 +JHN 6:60!7 +JHN 6:60!3 +JHN 6:60!8 +JHN 6:60!9 +JHN 6:60!10 +JHN 6:60!11 +JHN 6:60!12 +JHN 6:60!13 +JHN 6:60!14 +JHN 6:60!15 +JHN 6:60!16 +JHN 6:60!17 +JHN 6:61!2 +JHN 6:61!3 +JHN 6:61!4 +JHN 6:61!1 +JHN 6:61!5 +JHN 6:61!6 +JHN 6:61!7 +JHN 6:61!8 +JHN 6:61!9 +JHN 6:61!10 +JHN 6:61!11 +JHN 6:61!12 +JHN 6:61!13 +JHN 6:61!14 +JHN 6:61!15 +JHN 6:61!16 +JHN 6:61!17 +JHN 6:61!18 +JHN 6:62!2 +JHN 6:62!1 +JHN 6:62!3 +JHN 6:62!4 +JHN 6:62!5 +JHN 6:62!6 +JHN 6:62!7 +JHN 6:62!8 +JHN 6:62!9 +JHN 6:62!10 +JHN 6:62!11 +JHN 6:62!12 +JHN 6:63!1 +JHN 6:63!2 +JHN 6:63!3 +JHN 6:63!4 +JHN 6:63!5 +JHN 6:63!6 +JHN 6:63!7 +JHN 6:63!8 +JHN 6:63!9 +JHN 6:63!10 +JHN 6:63!11 +JHN 6:63!12 +JHN 6:63!13 +JHN 6:63!14 +JHN 6:63!15 +JHN 6:63!16 +JHN 6:63!17 +JHN 6:63!18 +JHN 6:63!19 +JHN 6:63!20 +JHN 6:63!21 +JHN 6:64!1 +JHN 6:64!2 +JHN 6:64!3 +JHN 6:64!4 +JHN 6:64!5 +JHN 6:64!6 +JHN 6:64!7 +JHN 6:64!8 +JHN 6:64!10 +JHN 6:64!9 +JHN 6:64!11 +JHN 6:64!12 +JHN 6:64!13 +JHN 6:64!14 +JHN 6:64!15 +JHN 6:64!16 +JHN 6:64!17 +JHN 6:64!18 +JHN 6:64!19 +JHN 6:64!20 +JHN 6:64!21 +JHN 6:64!22 +JHN 6:64!23 +JHN 6:64!24 +JHN 6:64!25 +JHN 6:65!1 +JHN 6:65!2 +JHN 6:65!3 +JHN 6:65!4 +JHN 6:65!5 +JHN 6:65!6 +JHN 6:65!7 +JHN 6:65!8 +JHN 6:65!9 +JHN 6:65!10 +JHN 6:65!11 +JHN 6:65!12 +JHN 6:65!13 +JHN 6:65!14 +JHN 6:65!15 +JHN 6:65!16 +JHN 6:65!17 +JHN 6:65!18 +JHN 6:65!19 +JHN 6:65!20 +JHN 6:66!1 +JHN 6:66!2 +JHN 6:66!3 +JHN 6:66!4 +JHN 6:66!5 +JHN 6:66!6 +JHN 6:66!7 +JHN 6:66!8 +JHN 6:66!9 +JHN 6:66!10 +JHN 6:66!11 +JHN 6:66!12 +JHN 6:66!13 +JHN 6:66!14 +JHN 6:66!15 +JHN 6:67!2 +JHN 6:67!1 +JHN 6:67!3 +JHN 6:67!4 +JHN 6:67!5 +JHN 6:67!6 +JHN 6:67!7 +JHN 6:67!8 +JHN 6:67!9 +JHN 6:67!10 +JHN 6:67!11 +JHN 6:68!1 +JHN 6:68!2 +JHN 6:68!3 +JHN 6:68!4 +JHN 6:68!5 +JHN 6:68!6 +JHN 6:68!7 +JHN 6:68!8 +JHN 6:68!9 +JHN 6:68!10 +JHN 6:68!11 +JHN 6:68!12 +JHN 6:69!1 +JHN 6:69!2 +JHN 6:69!3 +JHN 6:69!4 +JHN 6:69!5 +JHN 6:69!6 +JHN 6:69!7 +JHN 6:69!8 +JHN 6:69!9 +JHN 6:69!10 +JHN 6:69!11 +JHN 6:69!12 +JHN 6:70!1 +JHN 6:70!2 +JHN 6:70!3 +JHN 6:70!4 +JHN 6:70!5 +JHN 6:70!6 +JHN 6:70!7 +JHN 6:70!8 +JHN 6:70!9 +JHN 6:70!10 +JHN 6:70!11 +JHN 6:70!12 +JHN 6:70!13 +JHN 6:70!14 +JHN 6:70!15 +JHN 6:70!16 +JHN 6:71!2 +JHN 6:71!1 +JHN 6:71!3 +JHN 6:71!4 +JHN 6:71!5 +JHN 6:71!6 +JHN 6:71!8 +JHN 6:71!7 +JHN 6:71!9 +JHN 6:71!10 +JHN 6:71!11 +JHN 6:71!12 +JHN 6:71!13 +JHN 6:71!14 +JHN 6:71!15 +JHN 7:1!1 +JHN 7:1!2 +JHN 7:1!3 +JHN 7:1!4 +JHN 7:1!5 +JHN 7:1!6 +JHN 7:1!7 +JHN 7:1!8 +JHN 7:1!9 +JHN 7:1!11 +JHN 7:1!10 +JHN 7:1!12 +JHN 7:1!13 +JHN 7:1!14 +JHN 7:1!15 +JHN 7:1!16 +JHN 7:1!17 +JHN 7:1!18 +JHN 7:1!19 +JHN 7:1!22 +JHN 7:1!20 +JHN 7:1!21 +JHN 7:2!2 +JHN 7:2!1 +JHN 7:2!3 +JHN 7:2!4 +JHN 7:2!5 +JHN 7:2!6 +JHN 7:2!7 +JHN 7:2!8 +JHN 7:2!9 +JHN 7:3!2 +JHN 7:3!1 +JHN 7:3!3 +JHN 7:3!4 +JHN 7:3!5 +JHN 7:3!6 +JHN 7:3!7 +JHN 7:3!8 +JHN 7:3!9 +JHN 7:3!10 +JHN 7:3!11 +JHN 7:3!12 +JHN 7:3!13 +JHN 7:3!14 +JHN 7:3!15 +JHN 7:3!16 +JHN 7:3!17 +JHN 7:3!18 +JHN 7:3!19 +JHN 7:3!20 +JHN 7:3!21 +JHN 7:3!22 +JHN 7:3!23 +JHN 7:3!24 +JHN 7:3!25 +JHN 7:4!2 +JHN 7:4!1 +JHN 7:4!3 +JHN 7:4!4 +JHN 7:4!5 +JHN 7:4!6 +JHN 7:4!7 +JHN 7:4!8 +JHN 7:4!9 +JHN 7:4!10 +JHN 7:4!11 +JHN 7:4!12 +JHN 7:4!13 +JHN 7:4!14 +JHN 7:4!15 +JHN 7:4!16 +JHN 7:4!17 +JHN 7:4!18 +JHN 7:4!19 +JHN 7:5!2 +JHN 7:5!1 +JHN 7:5!3 +JHN 7:5!4 +JHN 7:5!5 +JHN 7:5!6 +JHN 7:5!7 +JHN 7:5!8 +JHN 7:6!2 +JHN 7:6!1 +JHN 7:6!3 +JHN 7:6!4 +JHN 7:6!5 +JHN 7:6!6 +JHN 7:6!7 +JHN 7:6!8 +JHN 7:6!9 +JHN 7:6!10 +JHN 7:6!11 +JHN 7:6!13 +JHN 7:6!12 +JHN 7:6!14 +JHN 7:6!15 +JHN 7:6!16 +JHN 7:6!17 +JHN 7:6!18 +JHN 7:6!19 +JHN 7:7!1 +JHN 7:7!2 +JHN 7:7!3 +JHN 7:7!4 +JHN 7:7!5 +JHN 7:7!6 +JHN 7:7!8 +JHN 7:7!7 +JHN 7:7!9 +JHN 7:7!10 +JHN 7:7!11 +JHN 7:7!12 +JHN 7:7!13 +JHN 7:7!14 +JHN 7:7!15 +JHN 7:7!16 +JHN 7:7!17 +JHN 7:7!18 +JHN 7:7!19 +JHN 7:7!20 +JHN 7:8!1 +JHN 7:8!2 +JHN 7:8!3 +JHN 7:8!4 +JHN 7:8!5 +JHN 7:8!6 +JHN 7:8!7 +JHN 7:8!8 +JHN 7:8!9 +JHN 7:8!10 +JHN 7:8!11 +JHN 7:8!12 +JHN 7:8!13 +JHN 7:8!14 +JHN 7:8!15 +JHN 7:8!16 +JHN 7:8!17 +JHN 7:8!18 +JHN 7:9!2 +JHN 7:9!1 +JHN 7:9!3 +JHN 7:9!4 +JHN 7:9!5 +JHN 7:9!6 +JHN 7:9!7 +JHN 7:9!8 +JHN 7:10!2 +JHN 7:10!1 +JHN 7:10!3 +JHN 7:10!4 +JHN 7:10!5 +JHN 7:10!6 +JHN 7:10!7 +JHN 7:10!8 +JHN 7:10!9 +JHN 7:10!10 +JHN 7:10!11 +JHN 7:10!12 +JHN 7:10!13 +JHN 7:10!14 +JHN 7:10!15 +JHN 7:10!16 +JHN 7:10!17 +JHN 7:10!18 +JHN 7:10!19 +JHN 7:11!2 +JHN 7:11!1 +JHN 7:11!3 +JHN 7:11!4 +JHN 7:11!5 +JHN 7:11!6 +JHN 7:11!7 +JHN 7:11!8 +JHN 7:11!9 +JHN 7:11!10 +JHN 7:11!11 +JHN 7:11!12 +JHN 7:11!13 +JHN 7:12!1 +JHN 7:12!2 +JHN 7:12!3 +JHN 7:12!4 +JHN 7:12!5 +JHN 7:12!6 +JHN 7:12!7 +JHN 7:12!8 +JHN 7:12!9 +JHN 7:12!11 +JHN 7:12!10 +JHN 7:12!12 +JHN 7:12!13 +JHN 7:12!14 +JHN 7:12!15 +JHN 7:12!17 +JHN 7:12!16 +JHN 7:12!18 +JHN 7:12!19 +JHN 7:12!20 +JHN 7:12!21 +JHN 7:12!22 +JHN 7:12!23 +JHN 7:13!2 +JHN 7:13!1 +JHN 7:13!3 +JHN 7:13!4 +JHN 7:13!5 +JHN 7:13!6 +JHN 7:13!7 +JHN 7:13!8 +JHN 7:13!9 +JHN 7:13!10 +JHN 7:13!11 +JHN 7:14!2 +JHN 7:14!1 +JHN 7:14!3 +JHN 7:14!4 +JHN 7:14!5 +JHN 7:14!6 +JHN 7:14!7 +JHN 7:14!8 +JHN 7:14!9 +JHN 7:14!10 +JHN 7:14!11 +JHN 7:14!12 +JHN 7:15!2 +JHN 7:15!1 +JHN 7:15!3 +JHN 7:15!4 +JHN 7:15!5 +JHN 7:15!6 +JHN 7:15!7 +JHN 7:15!8 +JHN 7:15!9 +JHN 7:15!10 +JHN 7:15!11 +JHN 7:16!2 +JHN 7:16!1 +JHN 7:16!3 +JHN 7:16!4 +JHN 7:16!5 +JHN 7:16!6 +JHN 7:16!7 +JHN 7:16!8 +JHN 7:16!9 +JHN 7:16!10 +JHN 7:16!11 +JHN 7:16!12 +JHN 7:16!13 +JHN 7:16!14 +JHN 7:16!15 +JHN 7:16!16 +JHN 7:17!1 +JHN 7:17!2 +JHN 7:17!3 +JHN 7:17!4 +JHN 7:17!5 +JHN 7:17!6 +JHN 7:17!7 +JHN 7:17!8 +JHN 7:17!9 +JHN 7:17!10 +JHN 7:17!11 +JHN 7:17!12 +JHN 7:17!13 +JHN 7:17!14 +JHN 7:17!15 +JHN 7:17!16 +JHN 7:17!17 +JHN 7:17!18 +JHN 7:17!19 +JHN 7:17!20 +JHN 7:17!21 +JHN 7:18!1 +JHN 7:18!2 +JHN 7:18!3 +JHN 7:18!4 +JHN 7:18!5 +JHN 7:18!6 +JHN 7:18!7 +JHN 7:18!8 +JHN 7:18!9 +JHN 7:18!11 +JHN 7:18!10 +JHN 7:18!12 +JHN 7:18!13 +JHN 7:18!14 +JHN 7:18!15 +JHN 7:18!16 +JHN 7:18!17 +JHN 7:18!18 +JHN 7:18!19 +JHN 7:18!20 +JHN 7:18!21 +JHN 7:18!22 +JHN 7:18!23 +JHN 7:18!24 +JHN 7:18!25 +JHN 7:18!26 +JHN 7:19!1 +JHN 7:19!2 +JHN 7:19!3 +JHN 7:19!4 +JHN 7:19!5 +JHN 7:19!6 +JHN 7:19!7 +JHN 7:19!8 +JHN 7:19!9 +JHN 7:19!10 +JHN 7:19!11 +JHN 7:19!12 +JHN 7:19!13 +JHN 7:19!14 +JHN 7:19!15 +JHN 7:19!17 +JHN 7:19!16 +JHN 7:20!1 +JHN 7:20!2 +JHN 7:20!3 +JHN 7:20!4 +JHN 7:20!5 +JHN 7:20!6 +JHN 7:20!7 +JHN 7:20!9 +JHN 7:20!8 +JHN 7:21!1 +JHN 7:21!2 +JHN 7:21!3 +JHN 7:21!4 +JHN 7:21!5 +JHN 7:21!6 +JHN 7:21!7 +JHN 7:21!8 +JHN 7:21!9 +JHN 7:21!10 +JHN 7:21!11 +JHN 7:22!1 +JHN 7:22!2 +JHN 7:22!3 +JHN 7:22!4 +JHN 7:22!5 +JHN 7:22!6 +JHN 7:22!7 +JHN 7:22!9 +JHN 7:22!8 +JHN 7:22!10 +JHN 7:22!11 +JHN 7:22!12 +JHN 7:22!13 +JHN 7:22!14 +JHN 7:22!15 +JHN 7:22!16 +JHN 7:22!17 +JHN 7:22!18 +JHN 7:22!19 +JHN 7:22!20 +JHN 7:22!21 +JHN 7:22!22 +JHN 7:23!1 +JHN 7:23!2 +JHN 7:23!3 +JHN 7:23!4 +JHN 7:23!5 +JHN 7:23!6 +JHN 7:23!7 +JHN 7:23!8 +JHN 7:23!9 +JHN 7:23!10 +JHN 7:23!11 +JHN 7:23!12 +JHN 7:23!13 +JHN 7:23!14 +JHN 7:23!15 +JHN 7:23!16 +JHN 7:23!17 +JHN 7:23!18 +JHN 7:23!19 +JHN 7:23!20 +JHN 7:23!21 +JHN 7:24!1 +JHN 7:24!2 +JHN 7:24!3 +JHN 7:24!4 +JHN 7:24!5 +JHN 7:24!6 +JHN 7:24!7 +JHN 7:24!8 +JHN 7:24!9 +JHN 7:25!2 +JHN 7:25!1 +JHN 7:25!3 +JHN 7:25!4 +JHN 7:25!5 +JHN 7:25!6 +JHN 7:25!7 +JHN 7:25!8 +JHN 7:25!9 +JHN 7:25!10 +JHN 7:25!12 +JHN 7:25!11 +JHN 7:26!1 +JHN 7:26!2 +JHN 7:26!3 +JHN 7:26!4 +JHN 7:26!5 +JHN 7:26!6 +JHN 7:26!7 +JHN 7:26!8 +JHN 7:26!9 +JHN 7:26!10 +JHN 7:26!11 +JHN 7:26!12 +JHN 7:26!13 +JHN 7:26!14 +JHN 7:26!15 +JHN 7:26!16 +JHN 7:26!17 +JHN 7:26!18 +JHN 7:26!19 +JHN 7:27!1 +JHN 7:27!2 +JHN 7:27!3 +JHN 7:27!4 +JHN 7:27!5 +JHN 7:27!7 +JHN 7:27!6 +JHN 7:27!8 +JHN 7:27!9 +JHN 7:27!10 +JHN 7:27!11 +JHN 7:27!12 +JHN 7:27!13 +JHN 7:27!14 +JHN 7:28!2 +JHN 7:28!1 +JHN 7:28!3 +JHN 7:28!4 +JHN 7:28!5 +JHN 7:28!6 +JHN 7:28!7 +JHN 7:28!8 +JHN 7:28!9 +JHN 7:28!10 +JHN 7:28!11 +JHN 7:28!12 +JHN 7:28!13 +JHN 7:28!14 +JHN 7:28!15 +JHN 7:28!16 +JHN 7:28!17 +JHN 7:28!18 +JHN 7:28!19 +JHN 7:28!20 +JHN 7:28!21 +JHN 7:28!22 +JHN 7:28!23 +JHN 7:28!24 +JHN 7:28!25 +JHN 7:28!26 +JHN 7:28!27 +JHN 7:28!28 +JHN 7:28!29 +JHN 7:28!30 +JHN 7:28!31 +JHN 7:29!1 +JHN 7:29!2 +JHN 7:29!3 +JHN 7:29!4 +JHN 7:29!5 +JHN 7:29!6 +JHN 7:29!7 +JHN 7:29!8 +JHN 7:29!9 +JHN 7:29!10 +JHN 7:30!2 +JHN 7:30!1 +JHN 7:30!3 +JHN 7:30!4 +JHN 7:30!5 +JHN 7:30!6 +JHN 7:30!7 +JHN 7:30!8 +JHN 7:30!9 +JHN 7:30!10 +JHN 7:30!11 +JHN 7:30!12 +JHN 7:30!13 +JHN 7:30!14 +JHN 7:30!15 +JHN 7:30!16 +JHN 7:30!17 +JHN 7:31!4 +JHN 7:31!1 +JHN 7:31!2 +JHN 7:31!3 +JHN 7:31!5 +JHN 7:31!6 +JHN 7:31!7 +JHN 7:31!8 +JHN 7:31!9 +JHN 7:31!10 +JHN 7:31!11 +JHN 7:31!12 +JHN 7:31!13 +JHN 7:31!14 +JHN 7:31!15 +JHN 7:31!16 +JHN 7:31!17 +JHN 7:31!18 +JHN 7:31!19 +JHN 7:31!20 +JHN 7:31!21 +JHN 7:32!1 +JHN 7:32!2 +JHN 7:32!3 +JHN 7:32!4 +JHN 7:32!5 +JHN 7:32!6 +JHN 7:32!7 +JHN 7:32!8 +JHN 7:32!9 +JHN 7:32!10 +JHN 7:32!11 +JHN 7:32!12 +JHN 7:32!13 +JHN 7:32!14 +JHN 7:32!15 +JHN 7:32!16 +JHN 7:32!17 +JHN 7:32!18 +JHN 7:32!19 +JHN 7:32!20 +JHN 7:33!2 +JHN 7:33!1 +JHN 7:33!3 +JHN 7:33!4 +JHN 7:33!5 +JHN 7:33!6 +JHN 7:33!7 +JHN 7:33!8 +JHN 7:33!9 +JHN 7:33!10 +JHN 7:33!11 +JHN 7:33!12 +JHN 7:33!13 +JHN 7:33!14 +JHN 7:33!15 +JHN 7:33!16 +JHN 7:34!1 +JHN 7:34!2 +JHN 7:34!3 +JHN 7:34!4 +JHN 7:34!5 +JHN 7:34!6 +JHN 7:34!7 +JHN 7:34!8 +JHN 7:34!9 +JHN 7:34!13 +JHN 7:34!10 +JHN 7:34!11 +JHN 7:34!12 +JHN 7:35!2 +JHN 7:35!1 +JHN 7:35!3 +JHN 7:35!4 +JHN 7:35!5 +JHN 7:35!6 +JHN 7:35!7 +JHN 7:35!10 +JHN 7:35!8 +JHN 7:35!9 +JHN 7:35!11 +JHN 7:35!12 +JHN 7:35!13 +JHN 7:35!14 +JHN 7:35!15 +JHN 7:35!16 +JHN 7:35!22 +JHN 7:35!17 +JHN 7:35!18 +JHN 7:35!19 +JHN 7:35!20 +JHN 7:35!21 +JHN 7:35!23 +JHN 7:35!24 +JHN 7:35!25 +JHN 7:35!26 +JHN 7:35!27 +JHN 7:36!1 +JHN 7:36!2 +JHN 7:36!3 +JHN 7:36!4 +JHN 7:36!5 +JHN 7:36!6 +JHN 7:36!7 +JHN 7:36!8 +JHN 7:36!9 +JHN 7:36!10 +JHN 7:36!11 +JHN 7:36!12 +JHN 7:36!13 +JHN 7:36!14 +JHN 7:36!15 +JHN 7:36!16 +JHN 7:36!20 +JHN 7:36!17 +JHN 7:36!18 +JHN 7:36!19 +JHN 7:37!2 +JHN 7:37!1 +JHN 7:37!3 +JHN 7:37!4 +JHN 7:37!5 +JHN 7:37!6 +JHN 7:37!7 +JHN 7:37!8 +JHN 7:37!9 +JHN 7:37!10 +JHN 7:37!11 +JHN 7:37!12 +JHN 7:37!13 +JHN 7:37!14 +JHN 7:37!15 +JHN 7:37!16 +JHN 7:37!17 +JHN 7:37!18 +JHN 7:37!19 +JHN 7:37!20 +JHN 7:37!21 +JHN 7:37!22 +JHN 7:37!23 +JHN 7:38!1 +JHN 7:38!2 +JHN 7:38!3 +JHN 7:38!4 +JHN 7:38!5 +JHN 7:38!6 +JHN 7:38!7 +JHN 7:38!8 +JHN 7:38!9 +JHN 7:38!15 +JHN 7:38!16 +JHN 7:38!10 +JHN 7:38!11 +JHN 7:38!12 +JHN 7:38!13 +JHN 7:38!14 +JHN 7:39!2 +JHN 7:39!1 +JHN 7:39!3 +JHN 7:39!4 +JHN 7:39!5 +JHN 7:39!6 +JHN 7:39!7 +JHN 7:39!9 +JHN 7:39!8 +JHN 7:39!10 +JHN 7:39!11 +JHN 7:39!12 +JHN 7:39!13 +JHN 7:39!15 +JHN 7:39!14 +JHN 7:39!16 +JHN 7:39!17 +JHN 7:39!18 +JHN 7:39!19 +JHN 7:39!20 +JHN 7:39!21 +JHN 7:40!4 +JHN 7:40!1 +JHN 7:40!2 +JHN 7:40!3 +JHN 7:40!5 +JHN 7:40!6 +JHN 7:40!7 +JHN 7:40!8 +JHN 7:40!9 +JHN 7:40!10 +JHN 7:40!11 +JHN 7:40!12 +JHN 7:40!13 +JHN 7:40!14 +JHN 7:41!1 +JHN 7:41!2 +JHN 7:41!3 +JHN 7:41!4 +JHN 7:41!5 +JHN 7:41!6 +JHN 7:41!8 +JHN 7:41!7 +JHN 7:41!9 +JHN 7:41!11 +JHN 7:41!10 +JHN 7:41!12 +JHN 7:41!13 +JHN 7:41!14 +JHN 7:41!15 +JHN 7:41!16 +JHN 7:41!17 +JHN 7:42!1 +JHN 7:42!2 +JHN 7:42!3 +JHN 7:42!4 +JHN 7:42!5 +JHN 7:42!6 +JHN 7:42!7 +JHN 7:42!8 +JHN 7:42!9 +JHN 7:42!10 +JHN 7:42!11 +JHN 7:42!12 +JHN 7:42!13 +JHN 7:42!14 +JHN 7:42!15 +JHN 7:42!16 +JHN 7:42!17 +JHN 7:42!18 +JHN 7:42!19 +JHN 7:42!20 +JHN 7:43!2 +JHN 7:43!1 +JHN 7:43!3 +JHN 7:43!4 +JHN 7:43!5 +JHN 7:43!6 +JHN 7:43!7 +JHN 7:43!8 +JHN 7:44!2 +JHN 7:44!1 +JHN 7:44!4 +JHN 7:44!5 +JHN 7:44!3 +JHN 7:44!6 +JHN 7:44!7 +JHN 7:44!8 +JHN 7:44!9 +JHN 7:44!10 +JHN 7:44!11 +JHN 7:44!12 +JHN 7:44!13 +JHN 7:44!14 +JHN 7:45!2 +JHN 7:45!1 +JHN 7:45!3 +JHN 7:45!4 +JHN 7:45!5 +JHN 7:45!6 +JHN 7:45!7 +JHN 7:45!8 +JHN 7:45!9 +JHN 7:45!10 +JHN 7:45!11 +JHN 7:45!12 +JHN 7:45!13 +JHN 7:45!14 +JHN 7:45!15 +JHN 7:45!16 +JHN 7:45!17 +JHN 7:45!18 +JHN 7:46!1 +JHN 7:46!2 +JHN 7:46!3 +JHN 7:46!4 +JHN 7:46!5 +JHN 7:46!6 +JHN 7:46!7 +JHN 7:46!8 +JHN 7:46!9 +JHN 7:46!11 +JHN 7:46!12 +JHN 7:46!10 +JHN 7:47!2 +JHN 7:47!1 +JHN 7:47!3 +JHN 7:47!4 +JHN 7:47!5 +JHN 7:47!6 +JHN 7:47!7 +JHN 7:47!8 +JHN 7:47!9 +JHN 7:48!1 +JHN 7:48!2 +JHN 7:48!3 +JHN 7:48!4 +JHN 7:48!5 +JHN 7:48!6 +JHN 7:48!7 +JHN 7:48!8 +JHN 7:48!9 +JHN 7:48!10 +JHN 7:48!11 +JHN 7:48!12 +JHN 7:49!1 +JHN 7:49!2 +JHN 7:49!3 +JHN 7:49!4 +JHN 7:49!5 +JHN 7:49!6 +JHN 7:49!7 +JHN 7:49!8 +JHN 7:49!9 +JHN 7:49!10 +JHN 7:49!11 +JHN 7:50!1 +JHN 7:50!3 +JHN 7:50!4 +JHN 7:50!2 +JHN 7:50!5 +JHN 7:50!6 +JHN 7:50!7 +JHN 7:50!8 +JHN 7:50!9 +JHN 7:50!11 +JHN 7:50!10 +JHN 7:50!12 +JHN 7:50!13 +JHN 7:51!1 +JHN 7:51!2 +JHN 7:51!3 +JHN 7:51!4 +JHN 7:51!5 +JHN 7:51!6 +JHN 7:51!7 +JHN 7:51!8 +JHN 7:51!9 +JHN 7:51!10 +JHN 7:51!11 +JHN 7:51!12 +JHN 7:51!13 +JHN 7:51!14 +JHN 7:51!15 +JHN 7:51!16 +JHN 7:51!17 +JHN 7:52!1 +JHN 7:52!2 +JHN 7:52!3 +JHN 7:52!4 +JHN 7:52!5 +JHN 7:52!6 +JHN 7:52!7 +JHN 7:52!8 +JHN 7:52!9 +JHN 7:52!10 +JHN 7:52!11 +JHN 7:52!12 +JHN 7:52!13 +JHN 7:52!14 +JHN 7:52!15 +JHN 7:52!16 +JHN 7:52!17 +JHN 7:52!18 +JHN 7:52!19 +JHN 7:52!20 +JHN 7:52!21 +JHN 7:53!1 +JHN 7:53!2 +JHN 7:53!3 +JHN 7:53!4 +JHN 7:53!5 +JHN 7:53!6 +JHN 7:53!7 +JHN 8:1!2 +JHN 8:1!1 +JHN 8:1!3 +JHN 8:1!4 +JHN 8:1!5 +JHN 8:1!6 +JHN 8:1!7 +JHN 8:1!8 +JHN 8:2!2 +JHN 8:2!1 +JHN 8:2!3 +JHN 8:2!4 +JHN 8:2!5 +JHN 8:2!6 +JHN 8:2!7 +JHN 8:2!8 +JHN 8:2!9 +JHN 8:2!10 +JHN 8:2!11 +JHN 8:2!12 +JHN 8:2!13 +JHN 8:2!14 +JHN 8:2!15 +JHN 8:2!16 +JHN 8:2!17 +JHN 8:2!18 +JHN 8:3!2 +JHN 8:3!1 +JHN 8:3!3 +JHN 8:3!4 +JHN 8:3!5 +JHN 8:3!6 +JHN 8:3!7 +JHN 8:3!8 +JHN 8:3!9 +JHN 8:3!10 +JHN 8:3!11 +JHN 8:3!12 +JHN 8:3!13 +JHN 8:3!14 +JHN 8:3!15 +JHN 8:3!16 +JHN 8:3!17 +JHN 8:3!18 +JHN 8:4!1 +JHN 8:4!2 +JHN 8:4!3 +JHN 8:4!4 +JHN 8:4!5 +JHN 8:4!6 +JHN 8:4!7 +JHN 8:4!8 +JHN 8:4!9 +JHN 8:5!2 +JHN 8:5!1 +JHN 8:5!3 +JHN 8:5!4 +JHN 8:5!5 +JHN 8:5!6 +JHN 8:5!7 +JHN 8:5!8 +JHN 8:5!9 +JHN 8:5!10 +JHN 8:5!12 +JHN 8:5!11 +JHN 8:5!13 +JHN 8:5!14 +JHN 8:6!2 +JHN 8:6!1 +JHN 8:6!3 +JHN 8:6!4 +JHN 8:6!5 +JHN 8:6!6 +JHN 8:6!7 +JHN 8:6!8 +JHN 8:6!9 +JHN 8:6!11 +JHN 8:6!10 +JHN 8:6!12 +JHN 8:6!13 +JHN 8:6!14 +JHN 8:6!15 +JHN 8:6!16 +JHN 8:6!17 +JHN 8:6!18 +JHN 8:6!19 +JHN 8:6!20 +JHN 8:7!2 +JHN 8:7!1 +JHN 8:7!3 +JHN 8:7!4 +JHN 8:7!5 +JHN 8:7!6 +JHN 8:7!7 +JHN 8:7!8 +JHN 8:7!9 +JHN 8:7!10 +JHN 8:7!11 +JHN 8:7!12 +JHN 8:7!13 +JHN 8:7!14 +JHN 8:7!15 +JHN 8:7!16 +JHN 8:7!17 +JHN 8:7!18 +JHN 8:8!1 +JHN 8:8!2 +JHN 8:8!3 +JHN 8:8!4 +JHN 8:8!5 +JHN 8:8!6 +JHN 8:8!7 +JHN 8:8!8 +JHN 8:9!2 +JHN 8:9!1 +JHN 8:9!3 +JHN 8:9!4 +JHN 8:9!5 +JHN 8:9!6 +JHN 8:9!7 +JHN 8:9!8 +JHN 8:9!9 +JHN 8:9!10 +JHN 8:9!11 +JHN 8:9!12 +JHN 8:9!13 +JHN 8:9!14 +JHN 8:9!15 +JHN 8:9!16 +JHN 8:9!17 +JHN 8:9!18 +JHN 8:9!19 +JHN 8:9!20 +JHN 8:9!21 +JHN 8:9!22 +JHN 8:9!23 +JHN 8:9!24 +JHN 8:9!25 +JHN 8:9!26 +JHN 8:9!27 +JHN 8:9!28 +JHN 8:9!29 +JHN 8:10!2 +JHN 8:10!3 +JHN 8:10!4 +JHN 8:10!1 +JHN 8:10!5 +JHN 8:10!6 +JHN 8:10!7 +JHN 8:10!8 +JHN 8:10!9 +JHN 8:10!10 +JHN 8:10!11 +JHN 8:10!12 +JHN 8:10!13 +JHN 8:10!14 +JHN 8:10!15 +JHN 8:10!16 +JHN 8:10!17 +JHN 8:10!18 +JHN 8:10!19 +JHN 8:10!20 +JHN 8:10!21 +JHN 8:10!22 +JHN 8:10!23 +JHN 8:11!2 +JHN 8:11!1 +JHN 8:11!3 +JHN 8:11!4 +JHN 8:11!5 +JHN 8:11!7 +JHN 8:11!6 +JHN 8:11!8 +JHN 8:11!9 +JHN 8:11!10 +JHN 8:11!11 +JHN 8:11!12 +JHN 8:11!13 +JHN 8:11!14 +JHN 8:11!15 +JHN 8:11!16 +JHN 8:11!17 +JHN 8:11!18 +JHN 8:12!2 +JHN 8:12!1 +JHN 8:12!3 +JHN 8:12!4 +JHN 8:12!5 +JHN 8:12!6 +JHN 8:12!7 +JHN 8:12!8 +JHN 8:12!9 +JHN 8:12!10 +JHN 8:12!11 +JHN 8:12!12 +JHN 8:12!13 +JHN 8:12!14 +JHN 8:12!15 +JHN 8:12!16 +JHN 8:12!17 +JHN 8:12!18 +JHN 8:12!19 +JHN 8:12!20 +JHN 8:12!21 +JHN 8:12!22 +JHN 8:12!23 +JHN 8:12!24 +JHN 8:12!25 +JHN 8:12!26 +JHN 8:12!27 +JHN 8:12!28 +JHN 8:13!2 +JHN 8:13!1 +JHN 8:13!3 +JHN 8:13!4 +JHN 8:13!5 +JHN 8:13!6 +JHN 8:13!7 +JHN 8:13!8 +JHN 8:13!9 +JHN 8:13!10 +JHN 8:13!11 +JHN 8:13!12 +JHN 8:13!13 +JHN 8:13!14 +JHN 8:13!15 +JHN 8:14!1 +JHN 8:14!2 +JHN 8:14!3 +JHN 8:14!4 +JHN 8:14!5 +JHN 8:14!6 +JHN 8:14!7 +JHN 8:14!8 +JHN 8:14!9 +JHN 8:14!10 +JHN 8:14!11 +JHN 8:14!12 +JHN 8:14!13 +JHN 8:14!14 +JHN 8:14!15 +JHN 8:14!16 +JHN 8:14!17 +JHN 8:14!18 +JHN 8:14!19 +JHN 8:14!20 +JHN 8:14!21 +JHN 8:14!22 +JHN 8:14!24 +JHN 8:14!23 +JHN 8:14!25 +JHN 8:14!26 +JHN 8:14!27 +JHN 8:14!28 +JHN 8:14!29 +JHN 8:14!30 +JHN 8:14!31 +JHN 8:15!1 +JHN 8:15!2 +JHN 8:15!3 +JHN 8:15!4 +JHN 8:15!5 +JHN 8:15!6 +JHN 8:15!7 +JHN 8:15!8 +JHN 8:15!9 +JHN 8:16!4 +JHN 8:16!2 +JHN 8:16!1 +JHN 8:16!3 +JHN 8:16!5 +JHN 8:16!6 +JHN 8:16!7 +JHN 8:16!8 +JHN 8:16!9 +JHN 8:16!10 +JHN 8:16!11 +JHN 8:16!12 +JHN 8:16!13 +JHN 8:16!14 +JHN 8:16!15 +JHN 8:16!16 +JHN 8:16!17 +JHN 8:16!18 +JHN 8:16!19 +JHN 8:16!20 +JHN 8:16!21 +JHN 8:17!5 +JHN 8:17!1 +JHN 8:17!2 +JHN 8:17!3 +JHN 8:17!4 +JHN 8:17!6 +JHN 8:17!7 +JHN 8:17!8 +JHN 8:17!9 +JHN 8:17!10 +JHN 8:17!11 +JHN 8:17!12 +JHN 8:17!13 +JHN 8:17!14 +JHN 8:17!15 +JHN 8:18!1 +JHN 8:18!2 +JHN 8:18!3 +JHN 8:18!4 +JHN 8:18!5 +JHN 8:18!6 +JHN 8:18!7 +JHN 8:18!8 +JHN 8:18!9 +JHN 8:18!10 +JHN 8:18!11 +JHN 8:18!12 +JHN 8:18!13 +JHN 8:18!14 +JHN 8:19!2 +JHN 8:19!1 +JHN 8:19!3 +JHN 8:19!4 +JHN 8:19!5 +JHN 8:19!6 +JHN 8:19!7 +JHN 8:19!8 +JHN 8:19!9 +JHN 8:19!10 +JHN 8:19!11 +JHN 8:19!12 +JHN 8:19!13 +JHN 8:19!14 +JHN 8:19!15 +JHN 8:19!16 +JHN 8:19!17 +JHN 8:19!18 +JHN 8:19!19 +JHN 8:19!20 +JHN 8:19!25 +JHN 8:19!21 +JHN 8:19!22 +JHN 8:19!23 +JHN 8:19!24 +JHN 8:19!26 +JHN 8:20!1 +JHN 8:20!2 +JHN 8:20!3 +JHN 8:20!4 +JHN 8:20!5 +JHN 8:20!6 +JHN 8:20!7 +JHN 8:20!8 +JHN 8:20!9 +JHN 8:20!10 +JHN 8:20!11 +JHN 8:20!12 +JHN 8:20!13 +JHN 8:20!14 +JHN 8:20!15 +JHN 8:20!16 +JHN 8:20!17 +JHN 8:20!18 +JHN 8:20!19 +JHN 8:20!20 +JHN 8:20!21 +JHN 8:21!2 +JHN 8:21!1 +JHN 8:21!3 +JHN 8:21!4 +JHN 8:21!5 +JHN 8:21!6 +JHN 8:21!7 +JHN 8:21!8 +JHN 8:21!9 +JHN 8:21!10 +JHN 8:21!11 +JHN 8:21!12 +JHN 8:21!13 +JHN 8:21!14 +JHN 8:21!15 +JHN 8:21!16 +JHN 8:21!17 +JHN 8:21!18 +JHN 8:21!22 +JHN 8:21!19 +JHN 8:21!20 +JHN 8:21!21 +JHN 8:22!2 +JHN 8:22!1 +JHN 8:22!3 +JHN 8:22!4 +JHN 8:22!5 +JHN 8:22!6 +JHN 8:22!7 +JHN 8:22!8 +JHN 8:22!9 +JHN 8:22!10 +JHN 8:22!11 +JHN 8:22!12 +JHN 8:22!16 +JHN 8:22!13 +JHN 8:22!14 +JHN 8:22!15 +JHN 8:23!1 +JHN 8:23!2 +JHN 8:23!3 +JHN 8:23!4 +JHN 8:23!5 +JHN 8:23!6 +JHN 8:23!7 +JHN 8:23!8 +JHN 8:23!9 +JHN 8:23!10 +JHN 8:23!11 +JHN 8:23!12 +JHN 8:23!13 +JHN 8:23!14 +JHN 8:23!15 +JHN 8:23!16 +JHN 8:23!17 +JHN 8:23!18 +JHN 8:23!19 +JHN 8:23!20 +JHN 8:23!21 +JHN 8:23!22 +JHN 8:23!23 +JHN 8:23!24 +JHN 8:23!25 +JHN 8:23!26 +JHN 8:24!2 +JHN 8:24!1 +JHN 8:24!3 +JHN 8:24!4 +JHN 8:24!5 +JHN 8:24!6 +JHN 8:24!7 +JHN 8:24!8 +JHN 8:24!9 +JHN 8:24!11 +JHN 8:24!10 +JHN 8:24!12 +JHN 8:24!13 +JHN 8:24!14 +JHN 8:24!15 +JHN 8:24!16 +JHN 8:24!17 +JHN 8:24!18 +JHN 8:24!19 +JHN 8:24!20 +JHN 8:24!21 +JHN 8:25!2 +JHN 8:25!1 +JHN 8:25!3 +JHN 8:25!4 +JHN 8:25!5 +JHN 8:25!6 +JHN 8:25!7 +JHN 8:25!8 +JHN 8:25!9 +JHN 8:25!10 +JHN 8:25!14 +JHN 8:25!13 +JHN 8:25!11 +JHN 8:25!12 +JHN 8:25!15 +JHN 8:25!16 +JHN 8:25!17 +JHN 8:26!2 +JHN 8:26!1 +JHN 8:26!3 +JHN 8:26!4 +JHN 8:26!5 +JHN 8:26!6 +JHN 8:26!7 +JHN 8:26!8 +JHN 8:26!9 +JHN 8:26!10 +JHN 8:26!11 +JHN 8:26!12 +JHN 8:26!13 +JHN 8:26!15 +JHN 8:26!14 +JHN 8:26!16 +JHN 8:26!17 +JHN 8:26!18 +JHN 8:26!19 +JHN 8:26!20 +JHN 8:26!21 +JHN 8:26!22 +JHN 8:26!23 +JHN 8:27!1 +JHN 8:27!2 +JHN 8:27!3 +JHN 8:27!4 +JHN 8:27!5 +JHN 8:27!6 +JHN 8:27!7 +JHN 8:28!2 +JHN 8:28!1 +JHN 8:28!3 +JHN 8:28!4 +JHN 8:28!5 +JHN 8:28!6 +JHN 8:28!7 +JHN 8:28!8 +JHN 8:28!9 +JHN 8:28!10 +JHN 8:28!11 +JHN 8:28!12 +JHN 8:28!13 +JHN 8:28!14 +JHN 8:28!15 +JHN 8:28!16 +JHN 8:28!17 +JHN 8:28!18 +JHN 8:28!19 +JHN 8:28!20 +JHN 8:28!21 +JHN 8:28!22 +JHN 8:28!23 +JHN 8:28!24 +JHN 8:28!25 +JHN 8:28!26 +JHN 8:28!27 +JHN 8:28!28 +JHN 8:29!1 +JHN 8:29!2 +JHN 8:29!3 +JHN 8:29!4 +JHN 8:29!5 +JHN 8:29!6 +JHN 8:29!7 +JHN 8:29!8 +JHN 8:29!9 +JHN 8:29!10 +JHN 8:29!11 +JHN 8:29!12 +JHN 8:29!13 +JHN 8:29!14 +JHN 8:29!15 +JHN 8:29!16 +JHN 8:29!17 +JHN 8:29!18 +JHN 8:30!1 +JHN 8:30!2 +JHN 8:30!3 +JHN 8:30!4 +JHN 8:30!5 +JHN 8:30!6 +JHN 8:30!7 +JHN 8:31!2 +JHN 8:31!1 +JHN 8:31!3 +JHN 8:31!4 +JHN 8:31!5 +JHN 8:31!6 +JHN 8:31!7 +JHN 8:31!8 +JHN 8:31!9 +JHN 8:31!10 +JHN 8:31!11 +JHN 8:31!12 +JHN 8:31!13 +JHN 8:31!14 +JHN 8:31!15 +JHN 8:31!16 +JHN 8:31!17 +JHN 8:31!18 +JHN 8:31!19 +JHN 8:31!20 +JHN 8:31!21 +JHN 8:32!1 +JHN 8:32!2 +JHN 8:32!3 +JHN 8:32!4 +JHN 8:32!5 +JHN 8:32!6 +JHN 8:32!7 +JHN 8:32!8 +JHN 8:32!9 +JHN 8:33!1 +JHN 8:33!2 +JHN 8:33!3 +JHN 8:33!4 +JHN 8:33!5 +JHN 8:33!6 +JHN 8:33!7 +JHN 8:33!8 +JHN 8:33!9 +JHN 8:33!10 +JHN 8:33!11 +JHN 8:33!12 +JHN 8:33!13 +JHN 8:33!14 +JHN 8:33!15 +JHN 8:33!16 +JHN 8:34!1 +JHN 8:34!2 +JHN 8:34!3 +JHN 8:34!4 +JHN 8:34!5 +JHN 8:34!6 +JHN 8:34!7 +JHN 8:34!8 +JHN 8:34!9 +JHN 8:34!10 +JHN 8:34!11 +JHN 8:34!12 +JHN 8:34!13 +JHN 8:34!14 +JHN 8:34!16 +JHN 8:34!15 +JHN 8:34!17 +JHN 8:34!18 +JHN 8:35!2 +JHN 8:35!1 +JHN 8:35!3 +JHN 8:35!4 +JHN 8:35!5 +JHN 8:35!6 +JHN 8:35!7 +JHN 8:35!8 +JHN 8:35!9 +JHN 8:35!10 +JHN 8:35!11 +JHN 8:35!12 +JHN 8:35!13 +JHN 8:35!14 +JHN 8:35!15 +JHN 8:35!16 +JHN 8:35!17 +JHN 8:36!2 +JHN 8:36!1 +JHN 8:36!3 +JHN 8:36!4 +JHN 8:36!5 +JHN 8:36!6 +JHN 8:36!7 +JHN 8:36!8 +JHN 8:36!9 +JHN 8:37!1 +JHN 8:37!2 +JHN 8:37!3 +JHN 8:37!4 +JHN 8:37!5 +JHN 8:37!6 +JHN 8:37!7 +JHN 8:37!8 +JHN 8:37!9 +JHN 8:37!10 +JHN 8:37!11 +JHN 8:37!12 +JHN 8:37!13 +JHN 8:37!14 +JHN 8:37!15 +JHN 8:37!16 +JHN 8:37!17 +JHN 8:37!18 +JHN 8:38!1 +JHN 8:38!2 +JHN 8:38!3 +JHN 8:38!4 +JHN 8:38!5 +JHN 8:38!6 +JHN 8:38!7 +JHN 8:38!10 +JHN 8:38!8 +JHN 8:38!9 +JHN 8:38!11 +JHN 8:38!12 +JHN 8:38!13 +JHN 8:38!14 +JHN 8:38!15 +JHN 8:38!16 +JHN 8:39!1 +JHN 8:39!2 +JHN 8:39!3 +JHN 8:39!4 +JHN 8:39!5 +JHN 8:39!6 +JHN 8:39!7 +JHN 8:39!8 +JHN 8:39!9 +JHN 8:39!10 +JHN 8:39!11 +JHN 8:39!12 +JHN 8:39!13 +JHN 8:39!14 +JHN 8:39!15 +JHN 8:39!16 +JHN 8:39!17 +JHN 8:39!18 +JHN 8:39!19 +JHN 8:39!20 +JHN 8:39!21 +JHN 8:39!22 +JHN 8:39!23 +JHN 8:40!2 +JHN 8:40!1 +JHN 8:40!3 +JHN 8:40!5 +JHN 8:40!4 +JHN 8:40!6 +JHN 8:40!7 +JHN 8:40!8 +JHN 8:40!9 +JHN 8:40!10 +JHN 8:40!11 +JHN 8:40!12 +JHN 8:40!13 +JHN 8:40!14 +JHN 8:40!15 +JHN 8:40!16 +JHN 8:40!17 +JHN 8:40!18 +JHN 8:40!19 +JHN 8:40!20 +JHN 8:41!1 +JHN 8:41!2 +JHN 8:41!3 +JHN 8:41!4 +JHN 8:41!5 +JHN 8:41!6 +JHN 8:41!7 +JHN 8:41!8 +JHN 8:41!9 +JHN 8:41!10 +JHN 8:41!11 +JHN 8:41!12 +JHN 8:41!13 +JHN 8:41!14 +JHN 8:41!15 +JHN 8:41!16 +JHN 8:41!18 +JHN 8:41!19 +JHN 8:41!17 +JHN 8:42!1 +JHN 8:42!2 +JHN 8:42!3 +JHN 8:42!4 +JHN 8:42!5 +JHN 8:42!6 +JHN 8:42!7 +JHN 8:42!8 +JHN 8:42!9 +JHN 8:42!10 +JHN 8:42!12 +JHN 8:42!11 +JHN 8:42!13 +JHN 8:42!15 +JHN 8:42!14 +JHN 8:42!16 +JHN 8:42!17 +JHN 8:42!18 +JHN 8:42!19 +JHN 8:42!20 +JHN 8:42!21 +JHN 8:42!23 +JHN 8:42!22 +JHN 8:42!24 +JHN 8:42!25 +JHN 8:42!26 +JHN 8:42!27 +JHN 8:42!28 +JHN 8:42!29 +JHN 8:42!30 +JHN 8:43!1 +JHN 8:43!2 +JHN 8:43!3 +JHN 8:43!4 +JHN 8:43!5 +JHN 8:43!6 +JHN 8:43!7 +JHN 8:43!8 +JHN 8:43!9 +JHN 8:43!10 +JHN 8:43!11 +JHN 8:43!12 +JHN 8:43!13 +JHN 8:43!14 +JHN 8:43!15 +JHN 8:43!16 +JHN 8:44!1 +JHN 8:44!2 +JHN 8:44!3 +JHN 8:44!4 +JHN 8:44!5 +JHN 8:44!6 +JHN 8:44!7 +JHN 8:44!8 +JHN 8:44!9 +JHN 8:44!10 +JHN 8:44!11 +JHN 8:44!12 +JHN 8:44!13 +JHN 8:44!15 +JHN 8:44!14 +JHN 8:44!16 +JHN 8:44!17 +JHN 8:44!18 +JHN 8:44!19 +JHN 8:44!20 +JHN 8:44!21 +JHN 8:44!22 +JHN 8:44!23 +JHN 8:44!24 +JHN 8:44!25 +JHN 8:44!26 +JHN 8:44!27 +JHN 8:44!28 +JHN 8:44!29 +JHN 8:44!30 +JHN 8:44!31 +JHN 8:44!32 +JHN 8:44!33 +JHN 8:44!34 +JHN 8:44!35 +JHN 8:44!36 +JHN 8:44!37 +JHN 8:44!38 +JHN 8:44!39 +JHN 8:44!40 +JHN 8:44!41 +JHN 8:44!42 +JHN 8:44!43 +JHN 8:44!44 +JHN 8:44!45 +JHN 8:44!46 +JHN 8:44!47 +JHN 8:45!2 +JHN 8:45!1 +JHN 8:45!3 +JHN 8:45!4 +JHN 8:45!5 +JHN 8:45!6 +JHN 8:45!7 +JHN 8:45!8 +JHN 8:45!9 +JHN 8:46!1 +JHN 8:46!2 +JHN 8:46!3 +JHN 8:46!4 +JHN 8:46!5 +JHN 8:46!6 +JHN 8:46!7 +JHN 8:46!8 +JHN 8:46!9 +JHN 8:46!10 +JHN 8:46!11 +JHN 8:46!12 +JHN 8:46!13 +JHN 8:46!14 +JHN 8:46!15 +JHN 8:46!16 +JHN 8:47!1 +JHN 8:47!2 +JHN 8:47!3 +JHN 8:47!4 +JHN 8:47!5 +JHN 8:47!6 +JHN 8:47!7 +JHN 8:47!8 +JHN 8:47!9 +JHN 8:47!10 +JHN 8:47!11 +JHN 8:47!12 +JHN 8:47!13 +JHN 8:47!14 +JHN 8:47!15 +JHN 8:47!16 +JHN 8:47!17 +JHN 8:47!18 +JHN 8:47!19 +JHN 8:47!20 +JHN 8:47!21 +JHN 8:48!1 +JHN 8:48!2 +JHN 8:48!3 +JHN 8:48!4 +JHN 8:48!5 +JHN 8:48!6 +JHN 8:48!7 +JHN 8:48!8 +JHN 8:48!9 +JHN 8:48!10 +JHN 8:48!11 +JHN 8:48!12 +JHN 8:48!13 +JHN 8:48!14 +JHN 8:48!15 +JHN 8:48!16 +JHN 8:48!17 +JHN 8:49!1 +JHN 8:49!2 +JHN 8:49!3 +JHN 8:49!4 +JHN 8:49!5 +JHN 8:49!6 +JHN 8:49!7 +JHN 8:49!8 +JHN 8:49!9 +JHN 8:49!10 +JHN 8:49!11 +JHN 8:49!12 +JHN 8:49!13 +JHN 8:49!14 +JHN 8:49!15 +JHN 8:50!2 +JHN 8:50!1 +JHN 8:50!3 +JHN 8:50!4 +JHN 8:50!5 +JHN 8:50!6 +JHN 8:50!7 +JHN 8:50!8 +JHN 8:50!9 +JHN 8:50!10 +JHN 8:50!11 +JHN 8:50!12 +JHN 8:51!1 +JHN 8:51!2 +JHN 8:51!3 +JHN 8:51!4 +JHN 8:51!5 +JHN 8:51!6 +JHN 8:51!7 +JHN 8:51!8 +JHN 8:51!9 +JHN 8:51!10 +JHN 8:51!11 +JHN 8:51!12 +JHN 8:51!13 +JHN 8:51!14 +JHN 8:51!15 +JHN 8:51!16 +JHN 8:51!17 +JHN 8:52!1 +JHN 8:52!2 +JHN 8:52!3 +JHN 8:52!4 +JHN 8:52!5 +JHN 8:52!6 +JHN 8:52!7 +JHN 8:52!8 +JHN 8:52!9 +JHN 8:52!10 +JHN 8:52!11 +JHN 8:52!12 +JHN 8:52!13 +JHN 8:52!14 +JHN 8:52!15 +JHN 8:52!16 +JHN 8:52!17 +JHN 8:52!18 +JHN 8:52!19 +JHN 8:52!20 +JHN 8:52!21 +JHN 8:52!22 +JHN 8:52!23 +JHN 8:52!24 +JHN 8:52!25 +JHN 8:52!26 +JHN 8:52!27 +JHN 8:52!28 +JHN 8:52!29 +JHN 8:52!30 +JHN 8:53!1 +JHN 8:53!2 +JHN 8:53!3 +JHN 8:53!4 +JHN 8:53!5 +JHN 8:53!6 +JHN 8:53!7 +JHN 8:53!8 +JHN 8:53!9 +JHN 8:53!10 +JHN 8:53!11 +JHN 8:53!12 +JHN 8:53!13 +JHN 8:53!14 +JHN 8:53!15 +JHN 8:53!16 +JHN 8:53!17 +JHN 8:54!1 +JHN 8:54!2 +JHN 8:54!3 +JHN 8:54!4 +JHN 8:54!5 +JHN 8:54!6 +JHN 8:54!7 +JHN 8:54!8 +JHN 8:54!9 +JHN 8:54!10 +JHN 8:54!11 +JHN 8:54!12 +JHN 8:54!13 +JHN 8:54!14 +JHN 8:54!15 +JHN 8:54!16 +JHN 8:54!17 +JHN 8:54!18 +JHN 8:54!19 +JHN 8:54!20 +JHN 8:54!21 +JHN 8:54!22 +JHN 8:54!23 +JHN 8:54!24 +JHN 8:54!25 +JHN 8:55!1 +JHN 8:55!2 +JHN 8:55!3 +JHN 8:55!4 +JHN 8:55!6 +JHN 8:55!5 +JHN 8:55!7 +JHN 8:55!8 +JHN 8:55!9 +JHN 8:55!10 +JHN 8:55!11 +JHN 8:55!12 +JHN 8:55!13 +JHN 8:55!14 +JHN 8:55!15 +JHN 8:55!16 +JHN 8:55!17 +JHN 8:55!18 +JHN 8:55!19 +JHN 8:55!20 +JHN 8:55!21 +JHN 8:55!22 +JHN 8:55!23 +JHN 8:55!24 +JHN 8:55!25 +JHN 8:55!26 +JHN 8:56!1 +JHN 8:56!2 +JHN 8:56!3 +JHN 8:56!4 +JHN 8:56!5 +JHN 8:56!6 +JHN 8:56!7 +JHN 8:56!8 +JHN 8:56!9 +JHN 8:56!10 +JHN 8:56!11 +JHN 8:56!12 +JHN 8:56!13 +JHN 8:56!14 +JHN 8:56!15 +JHN 8:57!2 +JHN 8:57!1 +JHN 8:57!3 +JHN 8:57!4 +JHN 8:57!5 +JHN 8:57!6 +JHN 8:57!7 +JHN 8:57!8 +JHN 8:57!9 +JHN 8:57!10 +JHN 8:57!11 +JHN 8:57!12 +JHN 8:57!13 +JHN 8:58!1 +JHN 8:58!2 +JHN 8:58!3 +JHN 8:58!4 +JHN 8:58!5 +JHN 8:58!6 +JHN 8:58!7 +JHN 8:58!8 +JHN 8:58!9 +JHN 8:58!10 +JHN 8:58!11 +JHN 8:58!12 +JHN 8:59!2 +JHN 8:59!1 +JHN 8:59!3 +JHN 8:59!4 +JHN 8:59!5 +JHN 8:59!6 +JHN 8:59!7 +JHN 8:59!9 +JHN 8:59!8 +JHN 8:59!10 +JHN 8:59!11 +JHN 8:59!12 +JHN 8:59!13 +JHN 8:59!14 +JHN 8:59!15 +JHN 9:1!1 +JHN 9:1!2 +JHN 9:1!3 +JHN 9:1!4 +JHN 9:1!5 +JHN 9:1!6 +JHN 9:1!7 +JHN 9:2!1 +JHN 9:2!2 +JHN 9:2!3 +JHN 9:2!4 +JHN 9:2!5 +JHN 9:2!6 +JHN 9:2!7 +JHN 9:2!8 +JHN 9:2!9 +JHN 9:2!10 +JHN 9:2!11 +JHN 9:2!12 +JHN 9:2!13 +JHN 9:2!14 +JHN 9:2!15 +JHN 9:2!16 +JHN 9:2!17 +JHN 9:2!18 +JHN 9:3!1 +JHN 9:3!2 +JHN 9:3!3 +JHN 9:3!4 +JHN 9:3!5 +JHN 9:3!6 +JHN 9:3!7 +JHN 9:3!8 +JHN 9:3!9 +JHN 9:3!10 +JHN 9:3!11 +JHN 9:3!12 +JHN 9:3!13 +JHN 9:3!14 +JHN 9:3!15 +JHN 9:3!16 +JHN 9:3!17 +JHN 9:3!18 +JHN 9:4!2 +JHN 9:4!1 +JHN 9:4!3 +JHN 9:4!4 +JHN 9:4!5 +JHN 9:4!6 +JHN 9:4!7 +JHN 9:4!8 +JHN 9:4!9 +JHN 9:4!10 +JHN 9:4!11 +JHN 9:4!12 +JHN 9:4!13 +JHN 9:4!14 +JHN 9:4!15 +JHN 9:4!16 +JHN 9:4!17 +JHN 9:5!1 +JHN 9:5!2 +JHN 9:5!3 +JHN 9:5!4 +JHN 9:5!5 +JHN 9:5!7 +JHN 9:5!6 +JHN 9:5!8 +JHN 9:5!9 +JHN 9:6!1 +JHN 9:6!2 +JHN 9:6!3 +JHN 9:6!4 +JHN 9:6!5 +JHN 9:6!6 +JHN 9:6!7 +JHN 9:6!8 +JHN 9:6!9 +JHN 9:6!10 +JHN 9:6!11 +JHN 9:6!12 +JHN 9:6!13 +JHN 9:6!14 +JHN 9:6!15 +JHN 9:6!16 +JHN 9:6!17 +JHN 9:6!18 +JHN 9:7!1 +JHN 9:7!2 +JHN 9:7!3 +JHN 9:7!4 +JHN 9:7!5 +JHN 9:7!6 +JHN 9:7!7 +JHN 9:7!8 +JHN 9:7!9 +JHN 9:7!10 +JHN 9:7!11 +JHN 9:7!12 +JHN 9:7!13 +JHN 9:7!15 +JHN 9:7!14 +JHN 9:7!16 +JHN 9:7!17 +JHN 9:7!18 +JHN 9:7!19 +JHN 9:7!20 +JHN 9:8!2 +JHN 9:8!1 +JHN 9:8!3 +JHN 9:8!4 +JHN 9:8!5 +JHN 9:8!6 +JHN 9:8!7 +JHN 9:8!8 +JHN 9:8!9 +JHN 9:8!10 +JHN 9:8!11 +JHN 9:8!12 +JHN 9:8!13 +JHN 9:8!14 +JHN 9:8!15 +JHN 9:8!16 +JHN 9:8!17 +JHN 9:8!18 +JHN 9:8!19 +JHN 9:8!20 +JHN 9:9!1 +JHN 9:9!2 +JHN 9:9!3 +JHN 9:9!4 +JHN 9:9!5 +JHN 9:9!6 +JHN 9:9!7 +JHN 9:9!8 +JHN 9:9!9 +JHN 9:9!10 +JHN 9:9!11 +JHN 9:9!12 +JHN 9:9!13 +JHN 9:9!14 +JHN 9:9!15 +JHN 9:9!16 +JHN 9:9!17 +JHN 9:10!2 +JHN 9:10!1 +JHN 9:10!3 +JHN 9:10!5 +JHN 9:10!4 +JHN 9:10!6 +JHN 9:10!7 +JHN 9:10!8 +JHN 9:10!9 +JHN 9:11!1 +JHN 9:11!2 +JHN 9:11!3 +JHN 9:11!4 +JHN 9:11!5 +JHN 9:11!6 +JHN 9:11!7 +JHN 9:11!8 +JHN 9:11!9 +JHN 9:11!10 +JHN 9:11!11 +JHN 9:11!12 +JHN 9:11!13 +JHN 9:11!14 +JHN 9:11!15 +JHN 9:11!16 +JHN 9:11!17 +JHN 9:11!18 +JHN 9:11!19 +JHN 9:11!20 +JHN 9:11!21 +JHN 9:11!22 +JHN 9:11!23 +JHN 9:11!24 +JHN 9:11!26 +JHN 9:11!25 +JHN 9:11!27 +JHN 9:11!28 +JHN 9:11!29 +JHN 9:12!1 +JHN 9:12!2 +JHN 9:12!3 +JHN 9:12!4 +JHN 9:12!5 +JHN 9:12!6 +JHN 9:12!7 +JHN 9:12!8 +JHN 9:12!9 +JHN 9:13!1 +JHN 9:13!2 +JHN 9:13!6 +JHN 9:13!7 +JHN 9:13!8 +JHN 9:13!3 +JHN 9:13!4 +JHN 9:13!5 +JHN 9:14!2 +JHN 9:14!1 +JHN 9:14!3 +JHN 9:14!4 +JHN 9:14!5 +JHN 9:14!6 +JHN 9:14!7 +JHN 9:14!8 +JHN 9:14!9 +JHN 9:14!10 +JHN 9:14!11 +JHN 9:14!12 +JHN 9:14!13 +JHN 9:14!14 +JHN 9:14!15 +JHN 9:14!16 +JHN 9:15!2 +JHN 9:15!1 +JHN 9:15!3 +JHN 9:15!4 +JHN 9:15!5 +JHN 9:15!6 +JHN 9:15!7 +JHN 9:15!8 +JHN 9:15!9 +JHN 9:15!11 +JHN 9:15!10 +JHN 9:15!12 +JHN 9:15!13 +JHN 9:15!14 +JHN 9:15!15 +JHN 9:15!17 +JHN 9:15!16 +JHN 9:15!18 +JHN 9:15!19 +JHN 9:15!20 +JHN 9:15!21 +JHN 9:15!22 +JHN 9:15!23 +JHN 9:16!2 +JHN 9:16!1 +JHN 9:16!3 +JHN 9:16!4 +JHN 9:16!5 +JHN 9:16!6 +JHN 9:16!7 +JHN 9:16!8 +JHN 9:16!10 +JHN 9:16!11 +JHN 9:16!9 +JHN 9:16!12 +JHN 9:16!13 +JHN 9:16!14 +JHN 9:16!15 +JHN 9:16!16 +JHN 9:16!17 +JHN 9:16!18 +JHN 9:16!19 +JHN 9:16!20 +JHN 9:16!21 +JHN 9:16!22 +JHN 9:16!23 +JHN 9:16!24 +JHN 9:16!25 +JHN 9:16!26 +JHN 9:16!27 +JHN 9:16!28 +JHN 9:16!29 +JHN 9:16!30 +JHN 9:16!31 +JHN 9:16!32 +JHN 9:17!2 +JHN 9:17!1 +JHN 9:17!3 +JHN 9:17!4 +JHN 9:17!5 +JHN 9:17!6 +JHN 9:17!7 +JHN 9:17!8 +JHN 9:17!9 +JHN 9:17!10 +JHN 9:17!11 +JHN 9:17!12 +JHN 9:17!13 +JHN 9:17!14 +JHN 9:17!15 +JHN 9:17!17 +JHN 9:17!16 +JHN 9:17!18 +JHN 9:17!19 +JHN 9:17!20 +JHN 9:17!21 +JHN 9:18!3 +JHN 9:18!1 +JHN 9:18!2 +JHN 9:18!4 +JHN 9:18!5 +JHN 9:18!6 +JHN 9:18!7 +JHN 9:18!8 +JHN 9:18!9 +JHN 9:18!10 +JHN 9:18!11 +JHN 9:18!12 +JHN 9:18!13 +JHN 9:18!14 +JHN 9:18!15 +JHN 9:18!16 +JHN 9:18!17 +JHN 9:18!18 +JHN 9:18!19 +JHN 9:18!20 +JHN 9:19!1 +JHN 9:19!2 +JHN 9:19!3 +JHN 9:19!4 +JHN 9:19!5 +JHN 9:19!6 +JHN 9:19!7 +JHN 9:19!8 +JHN 9:19!9 +JHN 9:19!10 +JHN 9:19!11 +JHN 9:19!12 +JHN 9:19!13 +JHN 9:19!14 +JHN 9:19!15 +JHN 9:19!17 +JHN 9:19!16 +JHN 9:19!18 +JHN 9:19!19 +JHN 9:20!2 +JHN 9:20!1 +JHN 9:20!3 +JHN 9:20!4 +JHN 9:20!5 +JHN 9:20!6 +JHN 9:20!7 +JHN 9:20!8 +JHN 9:20!9 +JHN 9:20!10 +JHN 9:20!11 +JHN 9:20!12 +JHN 9:20!13 +JHN 9:20!14 +JHN 9:20!15 +JHN 9:20!16 +JHN 9:20!17 +JHN 9:20!18 +JHN 9:21!2 +JHN 9:21!1 +JHN 9:21!3 +JHN 9:21!4 +JHN 9:21!5 +JHN 9:21!6 +JHN 9:21!7 +JHN 9:21!8 +JHN 9:21!9 +JHN 9:21!10 +JHN 9:21!11 +JHN 9:21!12 +JHN 9:21!13 +JHN 9:21!14 +JHN 9:21!15 +JHN 9:21!16 +JHN 9:21!17 +JHN 9:21!18 +JHN 9:21!19 +JHN 9:21!20 +JHN 9:21!21 +JHN 9:21!22 +JHN 9:21!23 +JHN 9:22!1 +JHN 9:22!2 +JHN 9:22!3 +JHN 9:22!4 +JHN 9:22!5 +JHN 9:22!6 +JHN 9:22!7 +JHN 9:22!8 +JHN 9:22!9 +JHN 9:22!11 +JHN 9:22!10 +JHN 9:22!12 +JHN 9:22!13 +JHN 9:22!14 +JHN 9:22!15 +JHN 9:22!16 +JHN 9:22!17 +JHN 9:22!18 +JHN 9:22!19 +JHN 9:22!20 +JHN 9:22!21 +JHN 9:22!22 +JHN 9:23!1 +JHN 9:23!2 +JHN 9:23!3 +JHN 9:23!4 +JHN 9:23!5 +JHN 9:23!6 +JHN 9:23!7 +JHN 9:23!8 +JHN 9:23!9 +JHN 9:23!10 +JHN 9:23!11 +JHN 9:24!2 +JHN 9:24!1 +JHN 9:24!3 +JHN 9:24!4 +JHN 9:24!5 +JHN 9:24!6 +JHN 9:24!7 +JHN 9:24!8 +JHN 9:24!9 +JHN 9:24!10 +JHN 9:24!11 +JHN 9:24!12 +JHN 9:24!13 +JHN 9:24!14 +JHN 9:24!15 +JHN 9:24!16 +JHN 9:24!17 +JHN 9:24!18 +JHN 9:24!19 +JHN 9:24!20 +JHN 9:24!21 +JHN 9:24!22 +JHN 9:24!23 +JHN 9:24!24 +JHN 9:25!2 +JHN 9:25!1 +JHN 9:25!3 +JHN 9:25!4 +JHN 9:25!5 +JHN 9:25!6 +JHN 9:25!7 +JHN 9:25!8 +JHN 9:25!9 +JHN 9:25!10 +JHN 9:25!11 +JHN 9:25!12 +JHN 9:25!13 +JHN 9:25!14 +JHN 9:25!15 +JHN 9:26!2 +JHN 9:26!1 +JHN 9:26!3 +JHN 9:26!4 +JHN 9:26!5 +JHN 9:26!6 +JHN 9:26!7 +JHN 9:26!8 +JHN 9:26!9 +JHN 9:26!10 +JHN 9:26!11 +JHN 9:27!1 +JHN 9:27!2 +JHN 9:27!3 +JHN 9:27!4 +JHN 9:27!5 +JHN 9:27!6 +JHN 9:27!7 +JHN 9:27!8 +JHN 9:27!9 +JHN 9:27!10 +JHN 9:27!11 +JHN 9:27!12 +JHN 9:27!13 +JHN 9:27!14 +JHN 9:27!15 +JHN 9:27!16 +JHN 9:27!17 +JHN 9:27!18 +JHN 9:27!19 +JHN 9:28!1 +JHN 9:28!2 +JHN 9:28!3 +JHN 9:28!4 +JHN 9:28!5 +JHN 9:28!6 +JHN 9:28!7 +JHN 9:28!9 +JHN 9:28!8 +JHN 9:28!11 +JHN 9:28!10 +JHN 9:28!12 +JHN 9:28!13 +JHN 9:28!15 +JHN 9:28!14 +JHN 9:29!1 +JHN 9:29!2 +JHN 9:29!3 +JHN 9:29!4 +JHN 9:29!5 +JHN 9:29!6 +JHN 9:29!7 +JHN 9:29!9 +JHN 9:29!8 +JHN 9:29!10 +JHN 9:29!11 +JHN 9:29!12 +JHN 9:29!13 +JHN 9:30!1 +JHN 9:30!2 +JHN 9:30!3 +JHN 9:30!4 +JHN 9:30!5 +JHN 9:30!6 +JHN 9:30!9 +JHN 9:30!7 +JHN 9:30!8 +JHN 9:30!10 +JHN 9:30!11 +JHN 9:30!12 +JHN 9:30!13 +JHN 9:30!14 +JHN 9:30!15 +JHN 9:30!16 +JHN 9:30!17 +JHN 9:30!18 +JHN 9:30!19 +JHN 9:30!20 +JHN 9:30!21 +JHN 9:30!22 +JHN 9:30!23 +JHN 9:31!1 +JHN 9:31!2 +JHN 9:31!3 +JHN 9:31!4 +JHN 9:31!5 +JHN 9:31!6 +JHN 9:31!7 +JHN 9:31!8 +JHN 9:31!9 +JHN 9:31!10 +JHN 9:31!11 +JHN 9:31!12 +JHN 9:31!13 +JHN 9:31!14 +JHN 9:31!15 +JHN 9:31!16 +JHN 9:31!17 +JHN 9:31!18 +JHN 9:31!19 +JHN 9:32!1 +JHN 9:32!2 +JHN 9:32!3 +JHN 9:32!4 +JHN 9:32!5 +JHN 9:32!6 +JHN 9:32!7 +JHN 9:32!8 +JHN 9:32!9 +JHN 9:32!10 +JHN 9:32!11 +JHN 9:33!1 +JHN 9:33!2 +JHN 9:33!3 +JHN 9:33!4 +JHN 9:33!5 +JHN 9:33!6 +JHN 9:33!7 +JHN 9:33!8 +JHN 9:33!9 +JHN 9:33!10 +JHN 9:34!1 +JHN 9:34!2 +JHN 9:34!3 +JHN 9:34!4 +JHN 9:34!5 +JHN 9:34!6 +JHN 9:34!7 +JHN 9:34!8 +JHN 9:34!9 +JHN 9:34!10 +JHN 9:34!11 +JHN 9:34!12 +JHN 9:34!13 +JHN 9:34!14 +JHN 9:34!15 +JHN 9:34!16 +JHN 9:34!17 +JHN 9:35!1 +JHN 9:35!2 +JHN 9:35!3 +JHN 9:35!4 +JHN 9:35!5 +JHN 9:35!6 +JHN 9:35!7 +JHN 9:35!8 +JHN 9:35!9 +JHN 9:35!10 +JHN 9:35!11 +JHN 9:35!12 +JHN 9:35!13 +JHN 9:35!14 +JHN 9:35!15 +JHN 9:35!16 +JHN 9:35!17 +JHN 9:36!1 +JHN 9:36!2 +JHN 9:36!3 +JHN 9:36!4 +JHN 9:36!5 +JHN 9:36!6 +JHN 9:36!7 +JHN 9:36!8 +JHN 9:36!9 +JHN 9:36!10 +JHN 9:36!11 +JHN 9:36!12 +JHN 9:37!1 +JHN 9:37!2 +JHN 9:37!3 +JHN 9:37!4 +JHN 9:37!5 +JHN 9:37!6 +JHN 9:37!7 +JHN 9:37!8 +JHN 9:37!9 +JHN 9:37!10 +JHN 9:37!11 +JHN 9:37!12 +JHN 9:37!13 +JHN 9:37!14 +JHN 9:38!2 +JHN 9:38!1 +JHN 9:38!3 +JHN 9:38!4 +JHN 9:38!5 +JHN 9:38!6 +JHN 9:38!7 +JHN 9:38!8 +JHN 9:39!1 +JHN 9:39!2 +JHN 9:39!3 +JHN 9:39!4 +JHN 9:39!5 +JHN 9:39!6 +JHN 9:39!7 +JHN 9:39!8 +JHN 9:39!9 +JHN 9:39!10 +JHN 9:39!11 +JHN 9:39!12 +JHN 9:39!13 +JHN 9:39!14 +JHN 9:39!15 +JHN 9:39!16 +JHN 9:39!17 +JHN 9:39!18 +JHN 9:39!19 +JHN 9:39!20 +JHN 9:39!21 +JHN 9:39!22 +JHN 9:40!1 +JHN 9:40!5 +JHN 9:40!2 +JHN 9:40!3 +JHN 9:40!4 +JHN 9:40!6 +JHN 9:40!7 +JHN 9:40!8 +JHN 9:40!9 +JHN 9:40!10 +JHN 9:40!11 +JHN 9:40!12 +JHN 9:40!13 +JHN 9:40!14 +JHN 9:40!15 +JHN 9:40!16 +JHN 9:40!17 +JHN 9:41!1 +JHN 9:41!2 +JHN 9:41!3 +JHN 9:41!4 +JHN 9:41!5 +JHN 9:41!6 +JHN 9:41!7 +JHN 9:41!9 +JHN 9:41!8 +JHN 9:41!10 +JHN 9:41!11 +JHN 9:41!13 +JHN 9:41!12 +JHN 9:41!14 +JHN 9:41!15 +JHN 9:41!16 +JHN 9:41!17 +JHN 9:41!18 +JHN 9:41!19 +JHN 9:41!20 +JHN 10:1!1 +JHN 10:1!2 +JHN 10:1!3 +JHN 10:1!4 +JHN 10:1!5 +JHN 10:1!6 +JHN 10:1!7 +JHN 10:1!8 +JHN 10:1!9 +JHN 10:1!10 +JHN 10:1!11 +JHN 10:1!12 +JHN 10:1!13 +JHN 10:1!14 +JHN 10:1!15 +JHN 10:1!16 +JHN 10:1!17 +JHN 10:1!18 +JHN 10:1!19 +JHN 10:1!20 +JHN 10:1!21 +JHN 10:1!22 +JHN 10:1!23 +JHN 10:2!2 +JHN 10:2!1 +JHN 10:2!3 +JHN 10:2!4 +JHN 10:2!5 +JHN 10:2!6 +JHN 10:2!8 +JHN 10:2!7 +JHN 10:2!9 +JHN 10:2!10 +JHN 10:3!1 +JHN 10:3!2 +JHN 10:3!3 +JHN 10:3!4 +JHN 10:3!5 +JHN 10:3!6 +JHN 10:3!7 +JHN 10:3!8 +JHN 10:3!9 +JHN 10:3!10 +JHN 10:3!11 +JHN 10:3!12 +JHN 10:3!13 +JHN 10:3!14 +JHN 10:3!15 +JHN 10:3!16 +JHN 10:3!17 +JHN 10:3!18 +JHN 10:3!19 +JHN 10:3!20 +JHN 10:3!21 +JHN 10:4!1 +JHN 10:4!2 +JHN 10:4!3 +JHN 10:4!4 +JHN 10:4!5 +JHN 10:4!6 +JHN 10:4!7 +JHN 10:4!8 +JHN 10:4!9 +JHN 10:4!10 +JHN 10:4!11 +JHN 10:4!12 +JHN 10:4!13 +JHN 10:4!14 +JHN 10:4!15 +JHN 10:4!16 +JHN 10:4!17 +JHN 10:4!18 +JHN 10:5!2 +JHN 10:5!1 +JHN 10:5!3 +JHN 10:5!4 +JHN 10:5!5 +JHN 10:5!6 +JHN 10:5!7 +JHN 10:5!8 +JHN 10:5!9 +JHN 10:5!10 +JHN 10:5!11 +JHN 10:5!12 +JHN 10:5!13 +JHN 10:5!14 +JHN 10:5!15 +JHN 10:5!16 +JHN 10:6!1 +JHN 10:6!2 +JHN 10:6!3 +JHN 10:6!4 +JHN 10:6!5 +JHN 10:6!6 +JHN 10:6!7 +JHN 10:6!9 +JHN 10:6!8 +JHN 10:6!10 +JHN 10:6!11 +JHN 10:6!12 +JHN 10:6!13 +JHN 10:6!14 +JHN 10:6!15 +JHN 10:6!16 +JHN 10:7!2 +JHN 10:7!1 +JHN 10:7!3 +JHN 10:7!4 +JHN 10:7!5 +JHN 10:7!6 +JHN 10:7!7 +JHN 10:7!8 +JHN 10:7!9 +JHN 10:7!10 +JHN 10:7!11 +JHN 10:7!12 +JHN 10:7!13 +JHN 10:7!14 +JHN 10:7!15 +JHN 10:7!16 +JHN 10:8!1 +JHN 10:8!2 +JHN 10:8!3 +JHN 10:8!4 +JHN 10:8!5 +JHN 10:8!6 +JHN 10:8!7 +JHN 10:8!8 +JHN 10:8!9 +JHN 10:8!10 +JHN 10:8!11 +JHN 10:8!12 +JHN 10:8!13 +JHN 10:8!14 +JHN 10:8!15 +JHN 10:9!1 +JHN 10:9!2 +JHN 10:9!3 +JHN 10:9!4 +JHN 10:9!7 +JHN 10:9!5 +JHN 10:9!6 +JHN 10:9!8 +JHN 10:9!9 +JHN 10:9!10 +JHN 10:9!11 +JHN 10:9!12 +JHN 10:9!13 +JHN 10:9!14 +JHN 10:9!15 +JHN 10:9!16 +JHN 10:9!17 +JHN 10:10!1 +JHN 10:10!2 +JHN 10:10!3 +JHN 10:10!4 +JHN 10:10!5 +JHN 10:10!6 +JHN 10:10!7 +JHN 10:10!8 +JHN 10:10!9 +JHN 10:10!10 +JHN 10:10!11 +JHN 10:10!12 +JHN 10:10!13 +JHN 10:10!14 +JHN 10:10!15 +JHN 10:10!16 +JHN 10:10!17 +JHN 10:10!18 +JHN 10:10!19 +JHN 10:10!20 +JHN 10:11!1 +JHN 10:11!2 +JHN 10:11!3 +JHN 10:11!4 +JHN 10:11!5 +JHN 10:11!6 +JHN 10:11!7 +JHN 10:11!8 +JHN 10:11!9 +JHN 10:11!10 +JHN 10:11!11 +JHN 10:11!12 +JHN 10:11!13 +JHN 10:11!14 +JHN 10:11!15 +JHN 10:11!16 +JHN 10:11!17 +JHN 10:12!1 +JHN 10:12!2 +JHN 10:12!3 +JHN 10:12!4 +JHN 10:12!5 +JHN 10:12!6 +JHN 10:12!7 +JHN 10:12!8 +JHN 10:12!9 +JHN 10:12!10 +JHN 10:12!11 +JHN 10:12!12 +JHN 10:12!13 +JHN 10:12!14 +JHN 10:12!15 +JHN 10:12!16 +JHN 10:12!17 +JHN 10:12!18 +JHN 10:12!19 +JHN 10:12!20 +JHN 10:12!21 +JHN 10:12!22 +JHN 10:12!23 +JHN 10:12!24 +JHN 10:12!25 +JHN 10:12!26 +JHN 10:12!27 +JHN 10:12!28 +JHN 10:12!29 +JHN 10:13!1 +JHN 10:13!2 +JHN 10:13!3 +JHN 10:13!4 +JHN 10:13!5 +JHN 10:13!6 +JHN 10:13!7 +JHN 10:13!8 +JHN 10:13!9 +JHN 10:13!10 +JHN 10:14!1 +JHN 10:14!2 +JHN 10:14!3 +JHN 10:14!4 +JHN 10:14!5 +JHN 10:14!6 +JHN 10:14!7 +JHN 10:14!8 +JHN 10:14!9 +JHN 10:14!10 +JHN 10:14!11 +JHN 10:14!12 +JHN 10:14!13 +JHN 10:14!14 +JHN 10:14!15 +JHN 10:15!1 +JHN 10:15!2 +JHN 10:15!3 +JHN 10:15!4 +JHN 10:15!5 +JHN 10:15!6 +JHN 10:15!7 +JHN 10:15!8 +JHN 10:15!9 +JHN 10:15!10 +JHN 10:15!11 +JHN 10:15!12 +JHN 10:15!13 +JHN 10:15!14 +JHN 10:15!15 +JHN 10:15!16 +JHN 10:15!17 +JHN 10:16!1 +JHN 10:16!2 +JHN 10:16!3 +JHN 10:16!4 +JHN 10:16!5 +JHN 10:16!6 +JHN 10:16!7 +JHN 10:16!8 +JHN 10:16!9 +JHN 10:16!10 +JHN 10:16!11 +JHN 10:16!12 +JHN 10:16!14 +JHN 10:16!15 +JHN 10:16!13 +JHN 10:16!16 +JHN 10:16!17 +JHN 10:16!18 +JHN 10:16!19 +JHN 10:16!20 +JHN 10:16!21 +JHN 10:16!22 +JHN 10:16!23 +JHN 10:16!24 +JHN 10:16!25 +JHN 10:16!26 +JHN 10:17!1 +JHN 10:17!2 +JHN 10:17!3 +JHN 10:17!4 +JHN 10:17!5 +JHN 10:17!6 +JHN 10:17!7 +JHN 10:17!8 +JHN 10:17!9 +JHN 10:17!10 +JHN 10:17!11 +JHN 10:17!12 +JHN 10:17!13 +JHN 10:17!14 +JHN 10:17!15 +JHN 10:17!16 +JHN 10:18!1 +JHN 10:18!2 +JHN 10:18!3 +JHN 10:18!4 +JHN 10:18!5 +JHN 10:18!6 +JHN 10:18!7 +JHN 10:18!8 +JHN 10:18!9 +JHN 10:18!10 +JHN 10:18!11 +JHN 10:18!12 +JHN 10:18!13 +JHN 10:18!14 +JHN 10:18!15 +JHN 10:18!16 +JHN 10:18!17 +JHN 10:18!18 +JHN 10:18!19 +JHN 10:18!20 +JHN 10:18!21 +JHN 10:18!22 +JHN 10:18!23 +JHN 10:18!24 +JHN 10:18!25 +JHN 10:18!26 +JHN 10:18!27 +JHN 10:18!28 +JHN 10:18!29 +JHN 10:19!1 +JHN 10:19!2 +JHN 10:19!3 +JHN 10:19!4 +JHN 10:19!5 +JHN 10:19!6 +JHN 10:19!7 +JHN 10:19!8 +JHN 10:19!9 +JHN 10:19!10 +JHN 10:20!2 +JHN 10:20!1 +JHN 10:20!3 +JHN 10:20!4 +JHN 10:20!5 +JHN 10:20!6 +JHN 10:20!7 +JHN 10:20!8 +JHN 10:20!9 +JHN 10:20!10 +JHN 10:20!11 +JHN 10:20!12 +JHN 10:21!1 +JHN 10:21!2 +JHN 10:21!3 +JHN 10:21!4 +JHN 10:21!5 +JHN 10:21!6 +JHN 10:21!7 +JHN 10:21!8 +JHN 10:21!9 +JHN 10:21!10 +JHN 10:21!11 +JHN 10:21!12 +JHN 10:21!13 +JHN 10:21!14 +JHN 10:22!1 +JHN 10:22!2 +JHN 10:22!3 +JHN 10:22!4 +JHN 10:22!5 +JHN 10:22!6 +JHN 10:22!7 +JHN 10:22!8 +JHN 10:22!9 +JHN 10:23!1 +JHN 10:23!2 +JHN 10:23!3 +JHN 10:23!4 +JHN 10:23!5 +JHN 10:23!6 +JHN 10:23!7 +JHN 10:23!8 +JHN 10:23!9 +JHN 10:23!10 +JHN 10:23!11 +JHN 10:23!12 +JHN 10:24!2 +JHN 10:24!1 +JHN 10:24!3 +JHN 10:24!4 +JHN 10:24!5 +JHN 10:24!6 +JHN 10:24!7 +JHN 10:24!8 +JHN 10:24!9 +JHN 10:24!10 +JHN 10:24!11 +JHN 10:24!12 +JHN 10:24!13 +JHN 10:24!14 +JHN 10:24!15 +JHN 10:24!16 +JHN 10:24!17 +JHN 10:24!18 +JHN 10:24!19 +JHN 10:24!20 +JHN 10:24!21 +JHN 10:24!22 +JHN 10:25!1 +JHN 10:25!2 +JHN 10:25!3 +JHN 10:25!4 +JHN 10:25!5 +JHN 10:25!6 +JHN 10:25!7 +JHN 10:25!8 +JHN 10:25!9 +JHN 10:25!10 +JHN 10:25!11 +JHN 10:25!12 +JHN 10:25!13 +JHN 10:25!14 +JHN 10:25!15 +JHN 10:25!16 +JHN 10:25!17 +JHN 10:25!18 +JHN 10:25!19 +JHN 10:25!20 +JHN 10:25!21 +JHN 10:25!22 +JHN 10:25!23 +JHN 10:25!24 +JHN 10:26!1 +JHN 10:26!2 +JHN 10:26!3 +JHN 10:26!4 +JHN 10:26!5 +JHN 10:26!6 +JHN 10:26!7 +JHN 10:26!8 +JHN 10:26!9 +JHN 10:26!10 +JHN 10:26!11 +JHN 10:26!12 +JHN 10:27!1 +JHN 10:27!2 +JHN 10:27!3 +JHN 10:27!4 +JHN 10:27!5 +JHN 10:27!6 +JHN 10:27!7 +JHN 10:27!8 +JHN 10:27!9 +JHN 10:27!10 +JHN 10:27!11 +JHN 10:27!12 +JHN 10:27!13 +JHN 10:27!14 +JHN 10:28!1 +JHN 10:28!2 +JHN 10:28!3 +JHN 10:28!4 +JHN 10:28!5 +JHN 10:28!6 +JHN 10:28!7 +JHN 10:28!8 +JHN 10:28!9 +JHN 10:28!10 +JHN 10:28!11 +JHN 10:28!12 +JHN 10:28!13 +JHN 10:28!14 +JHN 10:28!15 +JHN 10:28!16 +JHN 10:28!17 +JHN 10:28!18 +JHN 10:28!19 +JHN 10:28!20 +JHN 10:28!21 +JHN 10:29!1 +JHN 10:29!2 +JHN 10:29!3 +JHN 10:29!4 +JHN 10:29!5 +JHN 10:29!6 +JHN 10:29!7 +JHN 10:29!8 +JHN 10:29!9 +JHN 10:29!10 +JHN 10:29!11 +JHN 10:29!12 +JHN 10:29!13 +JHN 10:29!14 +JHN 10:29!15 +JHN 10:29!16 +JHN 10:29!17 +JHN 10:29!18 +JHN 10:30!1 +JHN 10:30!2 +JHN 10:30!3 +JHN 10:30!4 +JHN 10:30!5 +JHN 10:30!6 +JHN 10:31!1 +JHN 10:31!2 +JHN 10:31!3 +JHN 10:31!4 +JHN 10:31!5 +JHN 10:31!6 +JHN 10:31!7 +JHN 10:31!8 +JHN 10:32!1 +JHN 10:32!2 +JHN 10:32!3 +JHN 10:32!4 +JHN 10:32!5 +JHN 10:32!6 +JHN 10:32!9 +JHN 10:32!7 +JHN 10:32!8 +JHN 10:32!10 +JHN 10:32!11 +JHN 10:32!12 +JHN 10:32!13 +JHN 10:32!14 +JHN 10:32!15 +JHN 10:32!16 +JHN 10:32!17 +JHN 10:32!18 +JHN 10:33!1 +JHN 10:33!2 +JHN 10:33!3 +JHN 10:33!4 +JHN 10:33!5 +JHN 10:33!6 +JHN 10:33!7 +JHN 10:33!8 +JHN 10:33!9 +JHN 10:33!10 +JHN 10:33!11 +JHN 10:33!12 +JHN 10:33!13 +JHN 10:33!14 +JHN 10:33!15 +JHN 10:33!16 +JHN 10:33!17 +JHN 10:33!18 +JHN 10:33!19 +JHN 10:33!20 +JHN 10:33!21 +JHN 10:34!1 +JHN 10:34!2 +JHN 10:34!3 +JHN 10:34!4 +JHN 10:34!5 +JHN 10:34!6 +JHN 10:34!7 +JHN 10:34!8 +JHN 10:34!9 +JHN 10:34!10 +JHN 10:34!11 +JHN 10:34!12 +JHN 10:34!13 +JHN 10:34!14 +JHN 10:34!15 +JHN 10:34!16 +JHN 10:35!1 +JHN 10:35!2 +JHN 10:35!3 +JHN 10:35!4 +JHN 10:35!5 +JHN 10:35!6 +JHN 10:35!7 +JHN 10:35!8 +JHN 10:35!9 +JHN 10:35!10 +JHN 10:35!11 +JHN 10:35!12 +JHN 10:35!13 +JHN 10:35!14 +JHN 10:35!15 +JHN 10:35!16 +JHN 10:35!17 +JHN 10:36!1 +JHN 10:36!2 +JHN 10:36!3 +JHN 10:36!4 +JHN 10:36!5 +JHN 10:36!6 +JHN 10:36!7 +JHN 10:36!8 +JHN 10:36!9 +JHN 10:36!10 +JHN 10:36!11 +JHN 10:36!12 +JHN 10:36!13 +JHN 10:36!14 +JHN 10:36!15 +JHN 10:36!16 +JHN 10:36!17 +JHN 10:36!18 +JHN 10:36!19 +JHN 10:37!1 +JHN 10:37!2 +JHN 10:37!3 +JHN 10:37!4 +JHN 10:37!5 +JHN 10:37!6 +JHN 10:37!7 +JHN 10:37!8 +JHN 10:37!9 +JHN 10:37!10 +JHN 10:37!11 +JHN 10:38!2 +JHN 10:38!1 +JHN 10:38!3 +JHN 10:38!4 +JHN 10:38!5 +JHN 10:38!6 +JHN 10:38!7 +JHN 10:38!8 +JHN 10:38!9 +JHN 10:38!10 +JHN 10:38!11 +JHN 10:38!12 +JHN 10:38!13 +JHN 10:38!14 +JHN 10:38!15 +JHN 10:38!16 +JHN 10:38!17 +JHN 10:38!18 +JHN 10:38!19 +JHN 10:38!20 +JHN 10:38!21 +JHN 10:38!22 +JHN 10:38!23 +JHN 10:39!2 +JHN 10:39!1 +JHN 10:39!3 +JHN 10:39!5 +JHN 10:39!4 +JHN 10:39!6 +JHN 10:39!7 +JHN 10:39!8 +JHN 10:39!9 +JHN 10:39!10 +JHN 10:39!11 +JHN 10:40!1 +JHN 10:40!2 +JHN 10:40!3 +JHN 10:40!4 +JHN 10:40!5 +JHN 10:40!6 +JHN 10:40!7 +JHN 10:40!8 +JHN 10:40!9 +JHN 10:40!10 +JHN 10:40!11 +JHN 10:40!15 +JHN 10:40!12 +JHN 10:40!13 +JHN 10:40!14 +JHN 10:40!16 +JHN 10:40!17 +JHN 10:40!18 +JHN 10:41!1 +JHN 10:41!2 +JHN 10:41!3 +JHN 10:41!4 +JHN 10:41!5 +JHN 10:41!6 +JHN 10:41!7 +JHN 10:41!8 +JHN 10:41!10 +JHN 10:41!9 +JHN 10:41!11 +JHN 10:41!13 +JHN 10:41!12 +JHN 10:41!15 +JHN 10:41!14 +JHN 10:41!16 +JHN 10:41!17 +JHN 10:41!18 +JHN 10:41!19 +JHN 10:41!20 +JHN 10:41!21 +JHN 10:41!22 +JHN 10:42!1 +JHN 10:42!2 +JHN 10:42!3 +JHN 10:42!4 +JHN 10:42!5 +JHN 10:42!6 +JHN 11:1!2 +JHN 11:1!1 +JHN 11:1!3 +JHN 11:1!4 +JHN 11:1!5 +JHN 11:1!6 +JHN 11:1!7 +JHN 11:1!8 +JHN 11:1!9 +JHN 11:1!10 +JHN 11:1!11 +JHN 11:1!12 +JHN 11:1!13 +JHN 11:1!14 +JHN 11:1!15 +JHN 11:1!16 +JHN 11:2!2 +JHN 11:2!1 +JHN 11:2!3 +JHN 11:2!4 +JHN 11:2!5 +JHN 11:2!6 +JHN 11:2!7 +JHN 11:2!8 +JHN 11:2!9 +JHN 11:2!10 +JHN 11:2!11 +JHN 11:2!12 +JHN 11:2!13 +JHN 11:2!14 +JHN 11:2!15 +JHN 11:2!16 +JHN 11:2!17 +JHN 11:2!18 +JHN 11:2!19 +JHN 11:2!20 +JHN 11:2!21 +JHN 11:3!2 +JHN 11:3!1 +JHN 11:3!3 +JHN 11:3!4 +JHN 11:3!5 +JHN 11:3!6 +JHN 11:3!7 +JHN 11:3!8 +JHN 11:3!9 +JHN 11:3!10 +JHN 11:3!11 +JHN 11:3!12 +JHN 11:4!2 +JHN 11:4!1 +JHN 11:4!3 +JHN 11:4!4 +JHN 11:4!5 +JHN 11:4!6 +JHN 11:4!7 +JHN 11:4!8 +JHN 11:4!9 +JHN 11:4!10 +JHN 11:4!11 +JHN 11:4!12 +JHN 11:4!13 +JHN 11:4!14 +JHN 11:4!15 +JHN 11:4!16 +JHN 11:4!17 +JHN 11:4!18 +JHN 11:4!19 +JHN 11:4!20 +JHN 11:4!21 +JHN 11:4!22 +JHN 11:4!23 +JHN 11:4!24 +JHN 11:4!25 +JHN 11:4!26 +JHN 11:5!2 +JHN 11:5!1 +JHN 11:5!3 +JHN 11:5!4 +JHN 11:5!5 +JHN 11:5!6 +JHN 11:5!7 +JHN 11:5!8 +JHN 11:5!9 +JHN 11:5!10 +JHN 11:5!11 +JHN 11:5!12 +JHN 11:5!13 +JHN 11:6!2 +JHN 11:6!1 +JHN 11:6!3 +JHN 11:6!4 +JHN 11:6!5 +JHN 11:6!7 +JHN 11:6!6 +JHN 11:6!8 +JHN 11:6!9 +JHN 11:6!10 +JHN 11:6!11 +JHN 11:6!12 +JHN 11:6!13 +JHN 11:6!14 +JHN 11:7!1 +JHN 11:7!2 +JHN 11:7!3 +JHN 11:7!4 +JHN 11:7!5 +JHN 11:7!6 +JHN 11:7!7 +JHN 11:7!8 +JHN 11:7!9 +JHN 11:7!10 +JHN 11:7!11 +JHN 11:8!1 +JHN 11:8!2 +JHN 11:8!3 +JHN 11:8!4 +JHN 11:8!5 +JHN 11:8!6 +JHN 11:8!7 +JHN 11:8!8 +JHN 11:8!9 +JHN 11:8!10 +JHN 11:8!11 +JHN 11:8!12 +JHN 11:8!13 +JHN 11:8!14 +JHN 11:8!15 +JHN 11:9!1 +JHN 11:9!2 +JHN 11:9!3 +JHN 11:9!4 +JHN 11:9!5 +JHN 11:9!6 +JHN 11:9!7 +JHN 11:9!8 +JHN 11:9!9 +JHN 11:9!10 +JHN 11:9!11 +JHN 11:9!12 +JHN 11:9!13 +JHN 11:9!14 +JHN 11:9!15 +JHN 11:9!16 +JHN 11:9!17 +JHN 11:9!18 +JHN 11:9!19 +JHN 11:9!20 +JHN 11:9!21 +JHN 11:9!22 +JHN 11:9!23 +JHN 11:10!2 +JHN 11:10!1 +JHN 11:10!3 +JHN 11:10!4 +JHN 11:10!5 +JHN 11:10!6 +JHN 11:10!7 +JHN 11:10!8 +JHN 11:10!9 +JHN 11:10!10 +JHN 11:10!11 +JHN 11:10!12 +JHN 11:10!13 +JHN 11:10!14 +JHN 11:10!15 +JHN 11:11!1 +JHN 11:11!2 +JHN 11:11!3 +JHN 11:11!4 +JHN 11:11!5 +JHN 11:11!6 +JHN 11:11!7 +JHN 11:11!8 +JHN 11:11!9 +JHN 11:11!10 +JHN 11:11!11 +JHN 11:11!12 +JHN 11:11!13 +JHN 11:11!14 +JHN 11:11!15 +JHN 11:11!16 +JHN 11:11!17 +JHN 11:12!2 +JHN 11:12!1 +JHN 11:12!3 +JHN 11:12!4 +JHN 11:12!5 +JHN 11:12!6 +JHN 11:12!7 +JHN 11:12!8 +JHN 11:12!9 +JHN 11:13!2 +JHN 11:13!1 +JHN 11:13!3 +JHN 11:13!4 +JHN 11:13!5 +JHN 11:13!6 +JHN 11:13!7 +JHN 11:13!8 +JHN 11:13!10 +JHN 11:13!9 +JHN 11:13!11 +JHN 11:13!12 +JHN 11:13!13 +JHN 11:13!14 +JHN 11:13!15 +JHN 11:13!16 +JHN 11:13!17 +JHN 11:13!18 +JHN 11:14!2 +JHN 11:14!1 +JHN 11:14!3 +JHN 11:14!4 +JHN 11:14!5 +JHN 11:14!6 +JHN 11:14!7 +JHN 11:14!8 +JHN 11:14!9 +JHN 11:15!1 +JHN 11:15!2 +JHN 11:15!3 +JHN 11:15!4 +JHN 11:15!5 +JHN 11:15!6 +JHN 11:15!7 +JHN 11:15!8 +JHN 11:15!9 +JHN 11:15!10 +JHN 11:15!11 +JHN 11:15!12 +JHN 11:15!13 +JHN 11:15!14 +JHN 11:16!2 +JHN 11:16!1 +JHN 11:16!3 +JHN 11:16!4 +JHN 11:16!5 +JHN 11:16!6 +JHN 11:16!7 +JHN 11:16!8 +JHN 11:16!9 +JHN 11:16!10 +JHN 11:16!11 +JHN 11:16!12 +JHN 11:16!13 +JHN 11:16!14 +JHN 11:16!15 +JHN 11:17!2 +JHN 11:17!1 +JHN 11:17!3 +JHN 11:17!4 +JHN 11:17!5 +JHN 11:17!6 +JHN 11:17!7 +JHN 11:17!9 +JHN 11:17!8 +JHN 11:17!10 +JHN 11:17!11 +JHN 11:17!12 +JHN 11:17!13 +JHN 11:18!2 +JHN 11:18!1 +JHN 11:18!3 +JHN 11:18!4 +JHN 11:18!5 +JHN 11:18!6 +JHN 11:18!7 +JHN 11:18!8 +JHN 11:18!9 +JHN 11:18!10 +JHN 11:19!2 +JHN 11:19!1 +JHN 11:19!3 +JHN 11:19!4 +JHN 11:19!5 +JHN 11:19!6 +JHN 11:19!7 +JHN 11:19!8 +JHN 11:19!9 +JHN 11:19!10 +JHN 11:19!11 +JHN 11:19!12 +JHN 11:19!13 +JHN 11:19!14 +JHN 11:19!15 +JHN 11:19!16 +JHN 11:19!17 +JHN 11:20!2 +JHN 11:20!4 +JHN 11:20!5 +JHN 11:20!6 +JHN 11:20!7 +JHN 11:20!8 +JHN 11:20!1 +JHN 11:20!3 +JHN 11:20!9 +JHN 11:20!10 +JHN 11:20!12 +JHN 11:20!11 +JHN 11:20!13 +JHN 11:20!14 +JHN 11:20!15 +JHN 11:20!16 +JHN 11:21!2 +JHN 11:21!1 +JHN 11:21!3 +JHN 11:21!4 +JHN 11:21!5 +JHN 11:21!6 +JHN 11:21!7 +JHN 11:21!8 +JHN 11:21!9 +JHN 11:21!10 +JHN 11:21!12 +JHN 11:21!11 +JHN 11:21!13 +JHN 11:21!14 +JHN 11:21!15 +JHN 11:21!16 +JHN 11:22!1 +JHN 11:22!2 +JHN 11:22!3 +JHN 11:22!4 +JHN 11:22!6 +JHN 11:22!5 +JHN 11:22!7 +JHN 11:22!8 +JHN 11:22!9 +JHN 11:22!10 +JHN 11:22!11 +JHN 11:22!12 +JHN 11:22!13 +JHN 11:23!1 +JHN 11:23!2 +JHN 11:23!3 +JHN 11:23!4 +JHN 11:23!5 +JHN 11:23!6 +JHN 11:23!7 +JHN 11:23!8 +JHN 11:24!1 +JHN 11:24!2 +JHN 11:24!3 +JHN 11:24!4 +JHN 11:24!5 +JHN 11:24!6 +JHN 11:24!7 +JHN 11:24!8 +JHN 11:24!9 +JHN 11:24!10 +JHN 11:24!11 +JHN 11:24!12 +JHN 11:24!13 +JHN 11:24!14 +JHN 11:25!1 +JHN 11:25!2 +JHN 11:25!3 +JHN 11:25!4 +JHN 11:25!5 +JHN 11:25!6 +JHN 11:25!7 +JHN 11:25!8 +JHN 11:25!9 +JHN 11:25!10 +JHN 11:25!11 +JHN 11:25!12 +JHN 11:25!13 +JHN 11:25!14 +JHN 11:25!15 +JHN 11:25!16 +JHN 11:25!17 +JHN 11:25!18 +JHN 11:26!1 +JHN 11:26!2 +JHN 11:26!3 +JHN 11:26!4 +JHN 11:26!5 +JHN 11:26!6 +JHN 11:26!7 +JHN 11:26!8 +JHN 11:26!9 +JHN 11:26!10 +JHN 11:26!11 +JHN 11:26!12 +JHN 11:26!13 +JHN 11:26!14 +JHN 11:26!15 +JHN 11:26!16 +JHN 11:27!1 +JHN 11:27!2 +JHN 11:27!3 +JHN 11:27!4 +JHN 11:27!5 +JHN 11:27!6 +JHN 11:27!7 +JHN 11:27!8 +JHN 11:27!9 +JHN 11:27!10 +JHN 11:27!11 +JHN 11:27!12 +JHN 11:27!13 +JHN 11:27!14 +JHN 11:27!15 +JHN 11:27!16 +JHN 11:27!17 +JHN 11:27!18 +JHN 11:27!19 +JHN 11:27!20 +JHN 11:28!1 +JHN 11:28!2 +JHN 11:28!3 +JHN 11:28!4 +JHN 11:28!5 +JHN 11:28!6 +JHN 11:28!7 +JHN 11:28!8 +JHN 11:28!9 +JHN 11:28!10 +JHN 11:28!11 +JHN 11:28!12 +JHN 11:28!13 +JHN 11:28!14 +JHN 11:28!15 +JHN 11:28!16 +JHN 11:28!17 +JHN 11:28!18 +JHN 11:29!2 +JHN 11:29!1 +JHN 11:29!3 +JHN 11:29!4 +JHN 11:29!5 +JHN 11:29!6 +JHN 11:29!7 +JHN 11:29!8 +JHN 11:29!9 +JHN 11:29!10 +JHN 11:30!2 +JHN 11:30!1 +JHN 11:30!3 +JHN 11:30!4 +JHN 11:30!5 +JHN 11:30!6 +JHN 11:30!7 +JHN 11:30!8 +JHN 11:30!9 +JHN 11:30!10 +JHN 11:30!11 +JHN 11:30!12 +JHN 11:30!13 +JHN 11:30!14 +JHN 11:30!15 +JHN 11:30!16 +JHN 11:30!17 +JHN 11:30!18 +JHN 11:30!19 +JHN 11:31!2 +JHN 11:31!1 +JHN 11:31!3 +JHN 11:31!4 +JHN 11:31!5 +JHN 11:31!6 +JHN 11:31!7 +JHN 11:31!8 +JHN 11:31!9 +JHN 11:31!10 +JHN 11:31!11 +JHN 11:31!12 +JHN 11:31!13 +JHN 11:31!14 +JHN 11:31!15 +JHN 11:31!16 +JHN 11:31!17 +JHN 11:31!18 +JHN 11:31!19 +JHN 11:31!20 +JHN 11:31!21 +JHN 11:31!22 +JHN 11:31!23 +JHN 11:31!24 +JHN 11:31!25 +JHN 11:31!26 +JHN 11:31!27 +JHN 11:31!28 +JHN 11:31!29 +JHN 11:31!30 +JHN 11:31!31 +JHN 11:31!32 +JHN 11:32!2 +JHN 11:32!1 +JHN 11:32!3 +JHN 11:32!4 +JHN 11:32!5 +JHN 11:32!6 +JHN 11:32!7 +JHN 11:32!8 +JHN 11:32!9 +JHN 11:32!10 +JHN 11:32!11 +JHN 11:32!13 +JHN 11:32!12 +JHN 11:32!14 +JHN 11:32!15 +JHN 11:32!16 +JHN 11:32!17 +JHN 11:32!18 +JHN 11:32!19 +JHN 11:32!20 +JHN 11:32!21 +JHN 11:32!23 +JHN 11:32!22 +JHN 11:32!25 +JHN 11:32!24 +JHN 11:32!26 +JHN 11:32!27 +JHN 11:33!2 +JHN 11:33!1 +JHN 11:33!3 +JHN 11:33!4 +JHN 11:33!5 +JHN 11:33!6 +JHN 11:33!7 +JHN 11:33!8 +JHN 11:33!9 +JHN 11:33!10 +JHN 11:33!11 +JHN 11:33!12 +JHN 11:33!13 +JHN 11:33!14 +JHN 11:33!15 +JHN 11:33!16 +JHN 11:33!17 +JHN 11:33!18 +JHN 11:34!1 +JHN 11:34!2 +JHN 11:34!3 +JHN 11:34!4 +JHN 11:34!5 +JHN 11:34!6 +JHN 11:34!7 +JHN 11:34!8 +JHN 11:34!9 +JHN 11:34!10 +JHN 11:34!11 +JHN 11:35!1 +JHN 11:35!2 +JHN 11:35!3 +JHN 11:36!2 +JHN 11:36!1 +JHN 11:36!3 +JHN 11:36!4 +JHN 11:36!5 +JHN 11:36!6 +JHN 11:36!7 +JHN 11:36!8 +JHN 11:37!2 +JHN 11:37!1 +JHN 11:37!3 +JHN 11:37!4 +JHN 11:37!5 +JHN 11:37!6 +JHN 11:37!7 +JHN 11:37!8 +JHN 11:37!9 +JHN 11:37!10 +JHN 11:37!11 +JHN 11:37!12 +JHN 11:37!13 +JHN 11:37!14 +JHN 11:37!15 +JHN 11:37!16 +JHN 11:37!17 +JHN 11:37!18 +JHN 11:37!19 +JHN 11:37!20 +JHN 11:38!2 +JHN 11:38!1 +JHN 11:38!3 +JHN 11:38!4 +JHN 11:38!5 +JHN 11:38!6 +JHN 11:38!7 +JHN 11:38!8 +JHN 11:38!9 +JHN 11:38!10 +JHN 11:38!12 +JHN 11:38!11 +JHN 11:38!13 +JHN 11:38!14 +JHN 11:38!15 +JHN 11:38!16 +JHN 11:38!17 +JHN 11:38!18 +JHN 11:39!1 +JHN 11:39!2 +JHN 11:39!3 +JHN 11:39!4 +JHN 11:39!5 +JHN 11:39!6 +JHN 11:39!7 +JHN 11:39!8 +JHN 11:39!9 +JHN 11:39!10 +JHN 11:39!11 +JHN 11:39!12 +JHN 11:39!13 +JHN 11:39!14 +JHN 11:39!15 +JHN 11:39!16 +JHN 11:39!18 +JHN 11:39!17 +JHN 11:39!19 +JHN 11:40!1 +JHN 11:40!2 +JHN 11:40!3 +JHN 11:40!4 +JHN 11:40!5 +JHN 11:40!6 +JHN 11:40!7 +JHN 11:40!8 +JHN 11:40!9 +JHN 11:40!10 +JHN 11:40!11 +JHN 11:40!12 +JHN 11:40!13 +JHN 11:40!14 +JHN 11:40!15 +JHN 11:41!2 +JHN 11:41!1 +JHN 11:41!3 +JHN 11:41!4 +JHN 11:41!6 +JHN 11:41!5 +JHN 11:41!7 +JHN 11:41!8 +JHN 11:41!9 +JHN 11:41!10 +JHN 11:41!11 +JHN 11:41!12 +JHN 11:41!13 +JHN 11:41!14 +JHN 11:41!15 +JHN 11:41!16 +JHN 11:41!17 +JHN 11:41!18 +JHN 11:41!19 +JHN 11:42!2 +JHN 11:42!1 +JHN 11:42!3 +JHN 11:42!4 +JHN 11:42!5 +JHN 11:42!6 +JHN 11:42!7 +JHN 11:42!8 +JHN 11:42!9 +JHN 11:42!10 +JHN 11:42!11 +JHN 11:42!12 +JHN 11:42!13 +JHN 11:42!14 +JHN 11:42!15 +JHN 11:42!16 +JHN 11:42!17 +JHN 11:42!18 +JHN 11:42!19 +JHN 11:42!20 +JHN 11:43!1 +JHN 11:43!2 +JHN 11:43!3 +JHN 11:43!4 +JHN 11:43!5 +JHN 11:43!6 +JHN 11:43!7 +JHN 11:43!8 +JHN 11:43!9 +JHN 11:44!1 +JHN 11:44!2 +JHN 11:44!3 +JHN 11:44!4 +JHN 11:44!5 +JHN 11:44!6 +JHN 11:44!7 +JHN 11:44!8 +JHN 11:44!9 +JHN 11:44!10 +JHN 11:44!11 +JHN 11:44!12 +JHN 11:44!13 +JHN 11:44!14 +JHN 11:44!15 +JHN 11:44!16 +JHN 11:44!17 +JHN 11:44!18 +JHN 11:44!19 +JHN 11:44!20 +JHN 11:44!21 +JHN 11:44!22 +JHN 11:44!23 +JHN 11:44!24 +JHN 11:44!25 +JHN 11:44!26 +JHN 11:45!2 +JHN 11:45!1 +JHN 11:45!3 +JHN 11:45!4 +JHN 11:45!5 +JHN 11:45!6 +JHN 11:45!7 +JHN 11:45!8 +JHN 11:45!9 +JHN 11:45!10 +JHN 11:45!11 +JHN 11:45!12 +JHN 11:45!13 +JHN 11:45!14 +JHN 11:45!15 +JHN 11:45!16 +JHN 11:45!17 +JHN 11:46!2 +JHN 11:46!1 +JHN 11:46!3 +JHN 11:46!4 +JHN 11:46!5 +JHN 11:46!6 +JHN 11:46!7 +JHN 11:46!8 +JHN 11:46!9 +JHN 11:46!10 +JHN 11:46!11 +JHN 11:46!12 +JHN 11:46!13 +JHN 11:46!14 +JHN 11:47!2 +JHN 11:47!1 +JHN 11:47!3 +JHN 11:47!4 +JHN 11:47!5 +JHN 11:47!6 +JHN 11:47!7 +JHN 11:47!8 +JHN 11:47!9 +JHN 11:47!10 +JHN 11:47!11 +JHN 11:47!12 +JHN 11:47!13 +JHN 11:47!14 +JHN 11:47!15 +JHN 11:47!16 +JHN 11:47!17 +JHN 11:47!19 +JHN 11:47!18 +JHN 11:48!1 +JHN 11:48!2 +JHN 11:48!3 +JHN 11:48!4 +JHN 11:48!5 +JHN 11:48!6 +JHN 11:48!7 +JHN 11:48!8 +JHN 11:48!9 +JHN 11:48!10 +JHN 11:48!11 +JHN 11:48!12 +JHN 11:48!13 +JHN 11:48!14 +JHN 11:48!15 +JHN 11:48!16 +JHN 11:48!17 +JHN 11:48!18 +JHN 11:48!19 +JHN 11:48!20 +JHN 11:48!21 +JHN 11:49!2 +JHN 11:49!1 +JHN 11:49!3 +JHN 11:49!4 +JHN 11:49!5 +JHN 11:49!6 +JHN 11:49!7 +JHN 11:49!8 +JHN 11:49!9 +JHN 11:49!10 +JHN 11:49!11 +JHN 11:49!12 +JHN 11:49!13 +JHN 11:49!14 +JHN 11:49!15 +JHN 11:49!16 +JHN 11:49!17 +JHN 11:50!1 +JHN 11:50!2 +JHN 11:50!3 +JHN 11:50!4 +JHN 11:50!5 +JHN 11:50!6 +JHN 11:50!7 +JHN 11:50!8 +JHN 11:50!9 +JHN 11:50!10 +JHN 11:50!11 +JHN 11:50!12 +JHN 11:50!13 +JHN 11:50!14 +JHN 11:50!15 +JHN 11:50!16 +JHN 11:50!17 +JHN 11:50!18 +JHN 11:51!2 +JHN 11:51!1 +JHN 11:51!3 +JHN 11:51!4 +JHN 11:51!5 +JHN 11:51!6 +JHN 11:51!7 +JHN 11:51!8 +JHN 11:51!9 +JHN 11:51!10 +JHN 11:51!11 +JHN 11:51!12 +JHN 11:51!13 +JHN 11:51!14 +JHN 11:51!15 +JHN 11:51!16 +JHN 11:51!17 +JHN 11:51!18 +JHN 11:51!19 +JHN 11:51!20 +JHN 11:52!1 +JHN 11:52!2 +JHN 11:52!3 +JHN 11:52!4 +JHN 11:52!5 +JHN 11:52!6 +JHN 11:52!7 +JHN 11:52!8 +JHN 11:52!9 +JHN 11:52!10 +JHN 11:52!11 +JHN 11:52!12 +JHN 11:52!13 +JHN 11:52!14 +JHN 11:52!15 +JHN 11:52!16 +JHN 11:52!17 +JHN 11:52!18 +JHN 11:53!3 +JHN 11:53!1 +JHN 11:53!2 +JHN 11:53!4 +JHN 11:53!5 +JHN 11:53!6 +JHN 11:53!7 +JHN 11:53!8 +JHN 11:53!9 +JHN 11:54!2 +JHN 11:54!1 +JHN 11:54!3 +JHN 11:54!4 +JHN 11:54!5 +JHN 11:54!6 +JHN 11:54!7 +JHN 11:54!8 +JHN 11:54!9 +JHN 11:54!10 +JHN 11:54!11 +JHN 11:54!12 +JHN 11:54!13 +JHN 11:54!14 +JHN 11:54!15 +JHN 11:54!16 +JHN 11:54!17 +JHN 11:54!18 +JHN 11:54!19 +JHN 11:54!20 +JHN 11:54!21 +JHN 11:54!22 +JHN 11:54!23 +JHN 11:54!24 +JHN 11:54!25 +JHN 11:54!26 +JHN 11:54!27 +JHN 11:55!2 +JHN 11:55!1 +JHN 11:55!3 +JHN 11:55!4 +JHN 11:55!5 +JHN 11:55!6 +JHN 11:55!7 +JHN 11:55!8 +JHN 11:55!9 +JHN 11:55!10 +JHN 11:55!11 +JHN 11:55!12 +JHN 11:55!13 +JHN 11:55!14 +JHN 11:55!15 +JHN 11:55!16 +JHN 11:55!17 +JHN 11:55!18 +JHN 11:55!19 +JHN 11:55!20 +JHN 11:55!21 +JHN 11:56!2 +JHN 11:56!1 +JHN 11:56!3 +JHN 11:56!4 +JHN 11:56!5 +JHN 11:56!6 +JHN 11:56!7 +JHN 11:56!8 +JHN 11:56!9 +JHN 11:56!10 +JHN 11:56!11 +JHN 11:56!12 +JHN 11:56!13 +JHN 11:56!14 +JHN 11:56!15 +JHN 11:56!16 +JHN 11:56!17 +JHN 11:56!18 +JHN 11:56!19 +JHN 11:56!20 +JHN 11:56!21 +JHN 11:56!22 +JHN 11:57!2 +JHN 11:57!1 +JHN 11:57!3 +JHN 11:57!4 +JHN 11:57!5 +JHN 11:57!6 +JHN 11:57!7 +JHN 11:57!8 +JHN 11:57!9 +JHN 11:57!10 +JHN 11:57!11 +JHN 11:57!12 +JHN 11:57!13 +JHN 11:57!14 +JHN 11:57!15 +JHN 11:57!16 +JHN 11:57!17 +JHN 11:57!18 +JHN 12:1!2 +JHN 12:1!1 +JHN 12:1!3 +JHN 12:1!4 +JHN 12:1!5 +JHN 12:1!6 +JHN 12:1!7 +JHN 12:1!8 +JHN 12:1!9 +JHN 12:1!10 +JHN 12:1!11 +JHN 12:1!12 +JHN 12:1!13 +JHN 12:1!14 +JHN 12:1!15 +JHN 12:1!16 +JHN 12:1!17 +JHN 12:1!18 +JHN 12:1!19 +JHN 12:2!2 +JHN 12:2!1 +JHN 12:2!3 +JHN 12:2!4 +JHN 12:2!5 +JHN 12:2!6 +JHN 12:2!7 +JHN 12:2!8 +JHN 12:2!9 +JHN 12:2!11 +JHN 12:2!10 +JHN 12:2!12 +JHN 12:2!14 +JHN 12:2!13 +JHN 12:2!15 +JHN 12:2!16 +JHN 12:2!17 +JHN 12:2!18 +JHN 12:2!19 +JHN 12:3!2 +JHN 12:3!1 +JHN 12:3!3 +JHN 12:3!4 +JHN 12:3!5 +JHN 12:3!6 +JHN 12:3!7 +JHN 12:3!8 +JHN 12:3!9 +JHN 12:3!10 +JHN 12:3!11 +JHN 12:3!12 +JHN 12:3!13 +JHN 12:3!14 +JHN 12:3!15 +JHN 12:3!16 +JHN 12:3!17 +JHN 12:3!18 +JHN 12:3!19 +JHN 12:3!20 +JHN 12:3!21 +JHN 12:3!22 +JHN 12:3!24 +JHN 12:3!23 +JHN 12:3!25 +JHN 12:3!26 +JHN 12:3!27 +JHN 12:3!28 +JHN 12:3!29 +JHN 12:3!30 +JHN 12:3!31 +JHN 12:4!2 +JHN 12:4!1 +JHN 12:4!3 +JHN 12:4!4 +JHN 12:4!5 +JHN 12:4!6 +JHN 12:4!7 +JHN 12:4!8 +JHN 12:4!9 +JHN 12:4!10 +JHN 12:4!11 +JHN 12:4!12 +JHN 12:4!13 +JHN 12:5!1 +JHN 12:5!2 +JHN 12:5!3 +JHN 12:5!4 +JHN 12:5!5 +JHN 12:5!6 +JHN 12:5!7 +JHN 12:5!8 +JHN 12:5!9 +JHN 12:5!10 +JHN 12:5!11 +JHN 12:5!12 +JHN 12:6!2 +JHN 12:6!1 +JHN 12:6!3 +JHN 12:6!4 +JHN 12:6!5 +JHN 12:6!6 +JHN 12:6!7 +JHN 12:6!8 +JHN 12:6!9 +JHN 12:6!10 +JHN 12:6!11 +JHN 12:6!12 +JHN 12:6!13 +JHN 12:6!14 +JHN 12:6!15 +JHN 12:6!16 +JHN 12:6!17 +JHN 12:6!18 +JHN 12:6!19 +JHN 12:6!20 +JHN 12:6!21 +JHN 12:7!2 +JHN 12:7!1 +JHN 12:7!3 +JHN 12:7!4 +JHN 12:7!5 +JHN 12:7!6 +JHN 12:7!7 +JHN 12:7!8 +JHN 12:7!9 +JHN 12:7!10 +JHN 12:7!11 +JHN 12:7!12 +JHN 12:7!13 +JHN 12:7!14 +JHN 12:7!15 +JHN 12:8!3 +JHN 12:8!1 +JHN 12:8!2 +JHN 12:8!4 +JHN 12:8!5 +JHN 12:8!6 +JHN 12:8!7 +JHN 12:8!9 +JHN 12:8!8 +JHN 12:8!10 +JHN 12:8!11 +JHN 12:8!12 +JHN 12:9!2 +JHN 12:9!1 +JHN 12:9!3 +JHN 12:9!4 +JHN 12:9!5 +JHN 12:9!6 +JHN 12:9!7 +JHN 12:9!8 +JHN 12:9!9 +JHN 12:9!10 +JHN 12:9!11 +JHN 12:9!12 +JHN 12:9!13 +JHN 12:9!14 +JHN 12:9!15 +JHN 12:9!16 +JHN 12:9!17 +JHN 12:9!18 +JHN 12:9!19 +JHN 12:9!20 +JHN 12:9!21 +JHN 12:9!24 +JHN 12:9!22 +JHN 12:9!23 +JHN 12:9!25 +JHN 12:9!26 +JHN 12:9!27 +JHN 12:9!28 +JHN 12:10!2 +JHN 12:10!1 +JHN 12:10!3 +JHN 12:10!4 +JHN 12:10!5 +JHN 12:10!6 +JHN 12:10!7 +JHN 12:10!8 +JHN 12:10!9 +JHN 12:11!1 +JHN 12:11!2 +JHN 12:11!6 +JHN 12:11!7 +JHN 12:11!3 +JHN 12:11!4 +JHN 12:11!5 +JHN 12:11!8 +JHN 12:11!9 +JHN 12:11!10 +JHN 12:11!11 +JHN 12:11!12 +JHN 12:12!1 +JHN 12:12!2 +JHN 12:12!3 +JHN 12:12!4 +JHN 12:12!5 +JHN 12:12!6 +JHN 12:12!7 +JHN 12:12!8 +JHN 12:12!9 +JHN 12:12!10 +JHN 12:12!11 +JHN 12:12!12 +JHN 12:12!13 +JHN 12:12!14 +JHN 12:12!15 +JHN 12:12!16 +JHN 12:13!1 +JHN 12:13!2 +JHN 12:13!3 +JHN 12:13!4 +JHN 12:13!5 +JHN 12:13!6 +JHN 12:13!7 +JHN 12:13!8 +JHN 12:13!9 +JHN 12:13!10 +JHN 12:13!11 +JHN 12:13!12 +JHN 12:13!13 +JHN 12:13!14 +JHN 12:13!15 +JHN 12:13!16 +JHN 12:13!17 +JHN 12:13!18 +JHN 12:13!19 +JHN 12:13!20 +JHN 12:13!21 +JHN 12:13!22 +JHN 12:13!23 +JHN 12:13!24 +JHN 12:14!2 +JHN 12:14!1 +JHN 12:14!5 +JHN 12:14!3 +JHN 12:14!4 +JHN 12:14!6 +JHN 12:14!7 +JHN 12:14!8 +JHN 12:14!9 +JHN 12:14!10 +JHN 12:14!11 +JHN 12:15!1 +JHN 12:15!2 +JHN 12:15!3 +JHN 12:15!4 +JHN 12:15!5 +JHN 12:15!6 +JHN 12:15!7 +JHN 12:15!8 +JHN 12:15!9 +JHN 12:15!10 +JHN 12:15!11 +JHN 12:15!12 +JHN 12:15!13 +JHN 12:16!1 +JHN 12:16!2 +JHN 12:16!3 +JHN 12:16!4 +JHN 12:16!5 +JHN 12:16!6 +JHN 12:16!7 +JHN 12:16!8 +JHN 12:16!9 +JHN 12:16!10 +JHN 12:16!11 +JHN 12:16!12 +JHN 12:16!13 +JHN 12:16!14 +JHN 12:16!15 +JHN 12:16!16 +JHN 12:16!17 +JHN 12:16!20 +JHN 12:16!18 +JHN 12:16!19 +JHN 12:16!21 +JHN 12:16!22 +JHN 12:16!23 +JHN 12:16!24 +JHN 12:17!2 +JHN 12:17!1 +JHN 12:17!3 +JHN 12:17!4 +JHN 12:17!5 +JHN 12:17!6 +JHN 12:17!7 +JHN 12:17!8 +JHN 12:17!9 +JHN 12:17!10 +JHN 12:17!11 +JHN 12:17!12 +JHN 12:17!13 +JHN 12:17!14 +JHN 12:17!15 +JHN 12:17!16 +JHN 12:17!17 +JHN 12:17!18 +JHN 12:17!19 +JHN 12:17!20 +JHN 12:18!1 +JHN 12:18!2 +JHN 12:18!3 +JHN 12:18!4 +JHN 12:18!5 +JHN 12:18!6 +JHN 12:18!7 +JHN 12:18!8 +JHN 12:18!9 +JHN 12:18!10 +JHN 12:18!11 +JHN 12:18!12 +JHN 12:18!13 +JHN 12:18!14 +JHN 12:19!2 +JHN 12:19!1 +JHN 12:19!3 +JHN 12:19!4 +JHN 12:19!5 +JHN 12:19!6 +JHN 12:19!7 +JHN 12:19!8 +JHN 12:19!9 +JHN 12:19!10 +JHN 12:19!11 +JHN 12:19!12 +JHN 12:19!13 +JHN 12:19!14 +JHN 12:19!15 +JHN 12:19!16 +JHN 12:19!17 +JHN 12:20!2 +JHN 12:20!1 +JHN 12:20!3 +JHN 12:20!4 +JHN 12:20!5 +JHN 12:20!6 +JHN 12:20!7 +JHN 12:20!8 +JHN 12:20!9 +JHN 12:20!10 +JHN 12:20!11 +JHN 12:20!12 +JHN 12:21!2 +JHN 12:21!1 +JHN 12:21!3 +JHN 12:21!4 +JHN 12:21!5 +JHN 12:21!6 +JHN 12:21!7 +JHN 12:21!8 +JHN 12:21!9 +JHN 12:21!10 +JHN 12:21!11 +JHN 12:21!12 +JHN 12:21!13 +JHN 12:21!14 +JHN 12:21!15 +JHN 12:21!16 +JHN 12:21!17 +JHN 12:21!18 +JHN 12:22!1 +JHN 12:22!2 +JHN 12:22!3 +JHN 12:22!4 +JHN 12:22!5 +JHN 12:22!6 +JHN 12:22!7 +JHN 12:22!8 +JHN 12:22!9 +JHN 12:22!10 +JHN 12:22!11 +JHN 12:22!12 +JHN 12:22!13 +JHN 12:22!14 +JHN 12:22!15 +JHN 12:23!2 +JHN 12:23!1 +JHN 12:23!3 +JHN 12:23!4 +JHN 12:23!5 +JHN 12:23!6 +JHN 12:23!7 +JHN 12:23!8 +JHN 12:23!9 +JHN 12:23!10 +JHN 12:23!11 +JHN 12:23!12 +JHN 12:23!13 +JHN 12:23!14 +JHN 12:23!15 +JHN 12:24!1 +JHN 12:24!2 +JHN 12:24!3 +JHN 12:24!4 +JHN 12:24!5 +JHN 12:24!6 +JHN 12:24!7 +JHN 12:24!8 +JHN 12:24!9 +JHN 12:24!10 +JHN 12:24!11 +JHN 12:24!12 +JHN 12:24!13 +JHN 12:24!14 +JHN 12:24!15 +JHN 12:24!16 +JHN 12:24!17 +JHN 12:24!18 +JHN 12:24!20 +JHN 12:24!19 +JHN 12:24!21 +JHN 12:24!22 +JHN 12:24!23 +JHN 12:24!24 +JHN 12:25!1 +JHN 12:25!2 +JHN 12:25!3 +JHN 12:25!4 +JHN 12:25!5 +JHN 12:25!6 +JHN 12:25!7 +JHN 12:25!8 +JHN 12:25!9 +JHN 12:25!10 +JHN 12:25!11 +JHN 12:25!12 +JHN 12:25!13 +JHN 12:25!14 +JHN 12:25!15 +JHN 12:25!16 +JHN 12:25!17 +JHN 12:25!18 +JHN 12:25!19 +JHN 12:25!20 +JHN 12:25!21 +JHN 12:25!22 +JHN 12:26!1 +JHN 12:26!2 +JHN 12:26!3 +JHN 12:26!4 +JHN 12:26!5 +JHN 12:26!6 +JHN 12:26!7 +JHN 12:26!8 +JHN 12:26!9 +JHN 12:26!10 +JHN 12:26!11 +JHN 12:26!12 +JHN 12:26!13 +JHN 12:26!14 +JHN 12:26!15 +JHN 12:26!16 +JHN 12:26!17 +JHN 12:26!18 +JHN 12:26!19 +JHN 12:26!20 +JHN 12:26!21 +JHN 12:26!22 +JHN 12:26!23 +JHN 12:26!24 +JHN 12:26!25 +JHN 12:27!1 +JHN 12:27!2 +JHN 12:27!3 +JHN 12:27!4 +JHN 12:27!5 +JHN 12:27!6 +JHN 12:27!7 +JHN 12:27!8 +JHN 12:27!9 +JHN 12:27!10 +JHN 12:27!11 +JHN 12:27!12 +JHN 12:27!13 +JHN 12:27!14 +JHN 12:27!15 +JHN 12:27!16 +JHN 12:27!17 +JHN 12:27!18 +JHN 12:27!19 +JHN 12:27!20 +JHN 12:27!21 +JHN 12:27!22 +JHN 12:27!23 +JHN 12:28!1 +JHN 12:28!2 +JHN 12:28!3 +JHN 12:28!4 +JHN 12:28!5 +JHN 12:28!7 +JHN 12:28!6 +JHN 12:28!8 +JHN 12:28!9 +JHN 12:28!10 +JHN 12:28!11 +JHN 12:28!12 +JHN 12:28!13 +JHN 12:28!14 +JHN 12:28!15 +JHN 12:28!16 +JHN 12:29!2 +JHN 12:29!1 +JHN 12:29!3 +JHN 12:29!4 +JHN 12:29!5 +JHN 12:29!6 +JHN 12:29!7 +JHN 12:29!8 +JHN 12:29!9 +JHN 12:29!10 +JHN 12:29!11 +JHN 12:29!12 +JHN 12:29!13 +JHN 12:29!14 +JHN 12:29!15 +JHN 12:30!1 +JHN 12:30!2 +JHN 12:30!3 +JHN 12:30!4 +JHN 12:30!5 +JHN 12:30!6 +JHN 12:30!7 +JHN 12:30!8 +JHN 12:30!9 +JHN 12:30!10 +JHN 12:30!11 +JHN 12:30!12 +JHN 12:30!13 +JHN 12:30!14 +JHN 12:31!1 +JHN 12:31!3 +JHN 12:31!2 +JHN 12:31!4 +JHN 12:31!5 +JHN 12:31!6 +JHN 12:31!7 +JHN 12:31!8 +JHN 12:31!9 +JHN 12:31!10 +JHN 12:31!11 +JHN 12:31!12 +JHN 12:31!13 +JHN 12:31!14 +JHN 12:32!2 +JHN 12:32!1 +JHN 12:32!3 +JHN 12:32!4 +JHN 12:32!5 +JHN 12:32!6 +JHN 12:32!7 +JHN 12:32!8 +JHN 12:32!9 +JHN 12:32!10 +JHN 12:33!2 +JHN 12:33!1 +JHN 12:33!3 +JHN 12:33!4 +JHN 12:33!5 +JHN 12:33!6 +JHN 12:33!7 +JHN 12:33!8 +JHN 12:34!2 +JHN 12:34!1 +JHN 12:34!3 +JHN 12:34!4 +JHN 12:34!5 +JHN 12:34!6 +JHN 12:34!7 +JHN 12:34!8 +JHN 12:34!9 +JHN 12:34!10 +JHN 12:34!11 +JHN 12:34!12 +JHN 12:34!13 +JHN 12:34!14 +JHN 12:34!15 +JHN 12:34!16 +JHN 12:34!17 +JHN 12:34!18 +JHN 12:34!19 +JHN 12:34!20 +JHN 12:34!21 +JHN 12:34!22 +JHN 12:34!23 +JHN 12:34!24 +JHN 12:34!25 +JHN 12:34!26 +JHN 12:34!27 +JHN 12:34!28 +JHN 12:34!29 +JHN 12:34!30 +JHN 12:34!31 +JHN 12:34!32 +JHN 12:34!33 +JHN 12:34!34 +JHN 12:34!35 +JHN 12:35!2 +JHN 12:35!1 +JHN 12:35!3 +JHN 12:35!4 +JHN 12:35!5 +JHN 12:35!6 +JHN 12:35!7 +JHN 12:35!8 +JHN 12:35!9 +JHN 12:35!10 +JHN 12:35!11 +JHN 12:35!12 +JHN 12:35!13 +JHN 12:35!14 +JHN 12:35!15 +JHN 12:35!16 +JHN 12:35!17 +JHN 12:35!18 +JHN 12:35!19 +JHN 12:35!20 +JHN 12:35!21 +JHN 12:35!22 +JHN 12:35!23 +JHN 12:35!24 +JHN 12:35!25 +JHN 12:35!26 +JHN 12:35!27 +JHN 12:35!28 +JHN 12:35!29 +JHN 12:35!30 +JHN 12:35!31 +JHN 12:35!32 +JHN 12:35!33 +JHN 12:36!1 +JHN 12:36!2 +JHN 12:36!3 +JHN 12:36!4 +JHN 12:36!5 +JHN 12:36!6 +JHN 12:36!7 +JHN 12:36!8 +JHN 12:36!9 +JHN 12:36!10 +JHN 12:36!11 +JHN 12:36!12 +JHN 12:36!13 +JHN 12:36!14 +JHN 12:36!15 +JHN 12:36!16 +JHN 12:36!17 +JHN 12:36!18 +JHN 12:36!19 +JHN 12:36!20 +JHN 12:37!2 +JHN 12:37!3 +JHN 12:37!1 +JHN 12:37!4 +JHN 12:37!5 +JHN 12:37!6 +JHN 12:37!7 +JHN 12:37!8 +JHN 12:37!9 +JHN 12:37!10 +JHN 12:37!11 +JHN 12:38!1 +JHN 12:38!2 +JHN 12:38!3 +JHN 12:38!4 +JHN 12:38!5 +JHN 12:38!6 +JHN 12:38!7 +JHN 12:38!8 +JHN 12:38!9 +JHN 12:38!10 +JHN 12:38!11 +JHN 12:38!12 +JHN 12:38!13 +JHN 12:38!14 +JHN 12:38!15 +JHN 12:38!16 +JHN 12:38!17 +JHN 12:38!18 +JHN 12:38!19 +JHN 12:38!20 +JHN 12:38!21 +JHN 12:39!1 +JHN 12:39!2 +JHN 12:39!3 +JHN 12:39!4 +JHN 12:39!5 +JHN 12:39!6 +JHN 12:39!7 +JHN 12:39!8 +JHN 12:39!9 +JHN 12:40!1 +JHN 12:40!2 +JHN 12:40!3 +JHN 12:40!4 +JHN 12:40!5 +JHN 12:40!6 +JHN 12:40!7 +JHN 12:40!8 +JHN 12:40!9 +JHN 12:40!10 +JHN 12:40!11 +JHN 12:40!12 +JHN 12:40!13 +JHN 12:40!14 +JHN 12:40!15 +JHN 12:40!16 +JHN 12:40!17 +JHN 12:40!18 +JHN 12:40!19 +JHN 12:40!20 +JHN 12:40!21 +JHN 12:40!22 +JHN 12:40!23 +JHN 12:41!1 +JHN 12:41!2 +JHN 12:41!3 +JHN 12:41!4 +JHN 12:41!5 +JHN 12:41!6 +JHN 12:41!7 +JHN 12:41!8 +JHN 12:41!9 +JHN 12:41!10 +JHN 12:41!11 +JHN 12:41!12 +JHN 12:42!2 +JHN 12:42!1 +JHN 12:42!3 +JHN 12:42!4 +JHN 12:42!5 +JHN 12:42!6 +JHN 12:42!7 +JHN 12:42!8 +JHN 12:42!9 +JHN 12:42!10 +JHN 12:42!11 +JHN 12:42!12 +JHN 12:42!13 +JHN 12:42!14 +JHN 12:42!15 +JHN 12:42!16 +JHN 12:42!17 +JHN 12:42!18 +JHN 12:42!19 +JHN 12:42!20 +JHN 12:43!2 +JHN 12:43!1 +JHN 12:43!3 +JHN 12:43!4 +JHN 12:43!5 +JHN 12:43!6 +JHN 12:43!7 +JHN 12:43!8 +JHN 12:43!9 +JHN 12:43!10 +JHN 12:43!11 +JHN 12:43!12 +JHN 12:44!2 +JHN 12:44!1 +JHN 12:44!3 +JHN 12:44!4 +JHN 12:44!5 +JHN 12:44!6 +JHN 12:44!7 +JHN 12:44!8 +JHN 12:44!9 +JHN 12:44!10 +JHN 12:44!11 +JHN 12:44!12 +JHN 12:44!13 +JHN 12:44!14 +JHN 12:44!15 +JHN 12:44!16 +JHN 12:44!17 +JHN 12:44!18 +JHN 12:45!1 +JHN 12:45!2 +JHN 12:45!3 +JHN 12:45!4 +JHN 12:45!5 +JHN 12:45!6 +JHN 12:45!7 +JHN 12:45!8 +JHN 12:46!1 +JHN 12:46!2 +JHN 12:46!3 +JHN 12:46!4 +JHN 12:46!5 +JHN 12:46!6 +JHN 12:46!7 +JHN 12:46!8 +JHN 12:46!9 +JHN 12:46!10 +JHN 12:46!11 +JHN 12:46!12 +JHN 12:46!13 +JHN 12:46!14 +JHN 12:46!15 +JHN 12:46!16 +JHN 12:46!17 +JHN 12:47!1 +JHN 12:47!2 +JHN 12:47!3 +JHN 12:47!5 +JHN 12:47!4 +JHN 12:47!6 +JHN 12:47!7 +JHN 12:47!8 +JHN 12:47!9 +JHN 12:47!10 +JHN 12:47!11 +JHN 12:47!12 +JHN 12:47!13 +JHN 12:47!14 +JHN 12:47!16 +JHN 12:47!15 +JHN 12:47!17 +JHN 12:47!18 +JHN 12:47!19 +JHN 12:47!20 +JHN 12:47!21 +JHN 12:47!22 +JHN 12:47!23 +JHN 12:47!24 +JHN 12:47!25 +JHN 12:47!26 +JHN 12:48!1 +JHN 12:48!2 +JHN 12:48!3 +JHN 12:48!4 +JHN 12:48!5 +JHN 12:48!6 +JHN 12:48!7 +JHN 12:48!8 +JHN 12:48!9 +JHN 12:48!10 +JHN 12:48!11 +JHN 12:48!12 +JHN 12:48!13 +JHN 12:48!14 +JHN 12:48!15 +JHN 12:48!16 +JHN 12:48!17 +JHN 12:48!18 +JHN 12:48!19 +JHN 12:48!20 +JHN 12:48!21 +JHN 12:48!22 +JHN 12:48!23 +JHN 12:48!24 +JHN 12:49!1 +JHN 12:49!2 +JHN 12:49!3 +JHN 12:49!4 +JHN 12:49!5 +JHN 12:49!6 +JHN 12:49!7 +JHN 12:49!8 +JHN 12:49!9 +JHN 12:49!10 +JHN 12:49!11 +JHN 12:49!12 +JHN 12:49!13 +JHN 12:49!14 +JHN 12:49!15 +JHN 12:49!16 +JHN 12:49!17 +JHN 12:49!18 +JHN 12:49!19 +JHN 12:49!20 +JHN 12:50!1 +JHN 12:50!2 +JHN 12:50!3 +JHN 12:50!4 +JHN 12:50!5 +JHN 12:50!6 +JHN 12:50!7 +JHN 12:50!8 +JHN 12:50!9 +JHN 12:50!11 +JHN 12:50!10 +JHN 12:50!12 +JHN 12:50!13 +JHN 12:50!14 +JHN 12:50!15 +JHN 12:50!16 +JHN 12:50!17 +JHN 12:50!18 +JHN 12:50!19 +JHN 12:50!20 +JHN 13:1!2 +JHN 13:1!1 +JHN 13:1!3 +JHN 13:1!4 +JHN 13:1!5 +JHN 13:1!6 +JHN 13:1!8 +JHN 13:1!9 +JHN 13:1!7 +JHN 13:1!10 +JHN 13:1!11 +JHN 13:1!12 +JHN 13:1!13 +JHN 13:1!14 +JHN 13:1!15 +JHN 13:1!16 +JHN 13:1!17 +JHN 13:1!18 +JHN 13:1!19 +JHN 13:1!20 +JHN 13:1!21 +JHN 13:1!22 +JHN 13:1!23 +JHN 13:1!24 +JHN 13:1!25 +JHN 13:1!26 +JHN 13:1!27 +JHN 13:1!28 +JHN 13:1!29 +JHN 13:1!30 +JHN 13:1!31 +JHN 13:1!32 +JHN 13:1!33 +JHN 13:1!34 +JHN 13:2!1 +JHN 13:2!2 +JHN 13:2!3 +JHN 13:2!4 +JHN 13:2!5 +JHN 13:2!6 +JHN 13:2!7 +JHN 13:2!8 +JHN 13:2!9 +JHN 13:2!10 +JHN 13:2!11 +JHN 13:2!12 +JHN 13:2!13 +JHN 13:2!14 +JHN 13:2!15 +JHN 13:2!16 +JHN 13:3!1 +JHN 13:3!2 +JHN 13:3!3 +JHN 13:3!4 +JHN 13:3!5 +JHN 13:3!6 +JHN 13:3!7 +JHN 13:3!8 +JHN 13:3!9 +JHN 13:3!10 +JHN 13:3!11 +JHN 13:3!12 +JHN 13:3!13 +JHN 13:3!14 +JHN 13:3!15 +JHN 13:3!16 +JHN 13:3!17 +JHN 13:3!18 +JHN 13:3!19 +JHN 13:3!20 +JHN 13:4!1 +JHN 13:4!2 +JHN 13:4!3 +JHN 13:4!4 +JHN 13:4!5 +JHN 13:4!6 +JHN 13:4!7 +JHN 13:4!8 +JHN 13:4!9 +JHN 13:4!10 +JHN 13:4!11 +JHN 13:4!12 +JHN 13:4!13 +JHN 13:5!1 +JHN 13:5!2 +JHN 13:5!3 +JHN 13:5!4 +JHN 13:5!5 +JHN 13:5!6 +JHN 13:5!7 +JHN 13:5!8 +JHN 13:5!9 +JHN 13:5!10 +JHN 13:5!11 +JHN 13:5!12 +JHN 13:5!13 +JHN 13:5!14 +JHN 13:5!15 +JHN 13:5!16 +JHN 13:5!17 +JHN 13:5!18 +JHN 13:5!19 +JHN 13:5!20 +JHN 13:6!2 +JHN 13:6!1 +JHN 13:6!3 +JHN 13:6!4 +JHN 13:6!5 +JHN 13:6!6 +JHN 13:6!7 +JHN 13:6!8 +JHN 13:6!9 +JHN 13:6!11 +JHN 13:6!10 +JHN 13:6!12 +JHN 13:6!13 +JHN 13:7!1 +JHN 13:7!2 +JHN 13:7!3 +JHN 13:7!4 +JHN 13:7!5 +JHN 13:7!6 +JHN 13:7!7 +JHN 13:7!8 +JHN 13:7!9 +JHN 13:7!10 +JHN 13:7!11 +JHN 13:7!12 +JHN 13:7!14 +JHN 13:7!13 +JHN 13:7!15 +JHN 13:7!16 +JHN 13:8!1 +JHN 13:8!2 +JHN 13:8!3 +JHN 13:8!4 +JHN 13:8!5 +JHN 13:8!6 +JHN 13:8!7 +JHN 13:8!8 +JHN 13:8!9 +JHN 13:8!10 +JHN 13:8!11 +JHN 13:8!12 +JHN 13:8!13 +JHN 13:8!14 +JHN 13:8!15 +JHN 13:8!16 +JHN 13:8!17 +JHN 13:8!18 +JHN 13:8!19 +JHN 13:8!20 +JHN 13:8!21 +JHN 13:8!22 +JHN 13:8!23 +JHN 13:8!24 +JHN 13:9!1 +JHN 13:9!2 +JHN 13:9!3 +JHN 13:9!4 +JHN 13:9!5 +JHN 13:9!6 +JHN 13:9!7 +JHN 13:9!8 +JHN 13:9!9 +JHN 13:9!10 +JHN 13:9!11 +JHN 13:9!12 +JHN 13:9!13 +JHN 13:9!14 +JHN 13:9!15 +JHN 13:9!16 +JHN 13:9!17 +JHN 13:10!1 +JHN 13:10!2 +JHN 13:10!3 +JHN 13:10!4 +JHN 13:10!5 +JHN 13:10!6 +JHN 13:10!7 +JHN 13:10!8 +JHN 13:10!9 +JHN 13:10!10 +JHN 13:10!11 +JHN 13:10!12 +JHN 13:10!13 +JHN 13:10!14 +JHN 13:10!15 +JHN 13:10!16 +JHN 13:10!17 +JHN 13:10!18 +JHN 13:10!19 +JHN 13:10!20 +JHN 13:10!21 +JHN 13:10!22 +JHN 13:10!23 +JHN 13:10!24 +JHN 13:11!2 +JHN 13:11!1 +JHN 13:11!3 +JHN 13:11!4 +JHN 13:11!5 +JHN 13:11!6 +JHN 13:11!7 +JHN 13:11!8 +JHN 13:11!9 +JHN 13:11!10 +JHN 13:11!11 +JHN 13:11!12 +JHN 13:11!13 +JHN 13:12!2 +JHN 13:12!1 +JHN 13:12!3 +JHN 13:12!4 +JHN 13:12!5 +JHN 13:12!6 +JHN 13:12!7 +JHN 13:12!8 +JHN 13:12!9 +JHN 13:12!10 +JHN 13:12!11 +JHN 13:12!12 +JHN 13:12!13 +JHN 13:12!14 +JHN 13:12!15 +JHN 13:12!16 +JHN 13:12!17 +JHN 13:12!18 +JHN 13:12!19 +JHN 13:12!20 +JHN 13:13!1 +JHN 13:13!2 +JHN 13:13!3 +JHN 13:13!4 +JHN 13:13!5 +JHN 13:13!6 +JHN 13:13!7 +JHN 13:13!8 +JHN 13:13!9 +JHN 13:13!10 +JHN 13:13!11 +JHN 13:13!13 +JHN 13:13!12 +JHN 13:14!2 +JHN 13:14!1 +JHN 13:14!3 +JHN 13:14!8 +JHN 13:14!9 +JHN 13:14!10 +JHN 13:14!11 +JHN 13:14!12 +JHN 13:14!4 +JHN 13:14!5 +JHN 13:14!6 +JHN 13:14!7 +JHN 13:14!13 +JHN 13:14!14 +JHN 13:14!15 +JHN 13:14!17 +JHN 13:14!16 +JHN 13:14!18 +JHN 13:14!19 +JHN 13:15!2 +JHN 13:15!1 +JHN 13:15!3 +JHN 13:15!4 +JHN 13:15!5 +JHN 13:15!6 +JHN 13:15!7 +JHN 13:15!8 +JHN 13:15!9 +JHN 13:15!10 +JHN 13:15!11 +JHN 13:15!12 +JHN 13:16!1 +JHN 13:16!2 +JHN 13:16!3 +JHN 13:16!4 +JHN 13:16!5 +JHN 13:16!6 +JHN 13:16!7 +JHN 13:16!8 +JHN 13:16!9 +JHN 13:16!10 +JHN 13:16!11 +JHN 13:16!12 +JHN 13:16!13 +JHN 13:16!14 +JHN 13:16!15 +JHN 13:16!16 +JHN 13:16!17 +JHN 13:17!1 +JHN 13:17!2 +JHN 13:17!3 +JHN 13:17!4 +JHN 13:17!5 +JHN 13:17!6 +JHN 13:17!7 +JHN 13:17!8 +JHN 13:18!1 +JHN 13:18!2 +JHN 13:18!3 +JHN 13:18!4 +JHN 13:18!5 +JHN 13:18!6 +JHN 13:18!7 +JHN 13:18!8 +JHN 13:18!9 +JHN 13:18!10 +JHN 13:18!11 +JHN 13:18!12 +JHN 13:18!13 +JHN 13:18!14 +JHN 13:18!15 +JHN 13:18!16 +JHN 13:18!17 +JHN 13:18!18 +JHN 13:18!19 +JHN 13:18!20 +JHN 13:18!21 +JHN 13:18!22 +JHN 13:18!23 +JHN 13:18!24 +JHN 13:18!25 +JHN 13:19!1 +JHN 13:19!2 +JHN 13:19!3 +JHN 13:19!4 +JHN 13:19!5 +JHN 13:19!6 +JHN 13:19!7 +JHN 13:19!8 +JHN 13:19!9 +JHN 13:19!10 +JHN 13:19!11 +JHN 13:19!12 +JHN 13:19!13 +JHN 13:19!14 +JHN 13:20!1 +JHN 13:20!2 +JHN 13:20!3 +JHN 13:20!4 +JHN 13:20!5 +JHN 13:20!6 +JHN 13:20!7 +JHN 13:20!8 +JHN 13:20!9 +JHN 13:20!10 +JHN 13:20!11 +JHN 13:20!13 +JHN 13:20!12 +JHN 13:20!14 +JHN 13:20!15 +JHN 13:20!16 +JHN 13:20!17 +JHN 13:20!18 +JHN 13:20!19 +JHN 13:21!1 +JHN 13:21!2 +JHN 13:21!3 +JHN 13:21!4 +JHN 13:21!5 +JHN 13:21!6 +JHN 13:21!7 +JHN 13:21!8 +JHN 13:21!9 +JHN 13:21!10 +JHN 13:21!11 +JHN 13:21!12 +JHN 13:21!13 +JHN 13:21!14 +JHN 13:21!15 +JHN 13:21!16 +JHN 13:21!17 +JHN 13:21!18 +JHN 13:21!19 +JHN 13:21!20 +JHN 13:22!1 +JHN 13:22!2 +JHN 13:22!3 +JHN 13:22!4 +JHN 13:22!5 +JHN 13:22!6 +JHN 13:22!7 +JHN 13:22!8 +JHN 13:22!9 +JHN 13:23!1 +JHN 13:23!2 +JHN 13:23!3 +JHN 13:23!4 +JHN 13:23!5 +JHN 13:23!6 +JHN 13:23!7 +JHN 13:23!8 +JHN 13:23!9 +JHN 13:23!10 +JHN 13:23!11 +JHN 13:23!12 +JHN 13:23!13 +JHN 13:23!14 +JHN 13:23!15 +JHN 13:23!16 +JHN 13:24!2 +JHN 13:24!1 +JHN 13:24!3 +JHN 13:24!4 +JHN 13:24!5 +JHN 13:24!6 +JHN 13:24!7 +JHN 13:24!8 +JHN 13:24!9 +JHN 13:24!10 +JHN 13:24!11 +JHN 13:24!12 +JHN 13:24!13 +JHN 13:24!14 +JHN 13:25!2 +JHN 13:25!1 +JHN 13:25!3 +JHN 13:25!4 +JHN 13:25!5 +JHN 13:25!6 +JHN 13:25!7 +JHN 13:25!8 +JHN 13:25!9 +JHN 13:25!10 +JHN 13:25!11 +JHN 13:25!12 +JHN 13:25!13 +JHN 13:26!2 +JHN 13:26!1 +JHN 13:26!3 +JHN 13:26!4 +JHN 13:26!6 +JHN 13:26!5 +JHN 13:26!7 +JHN 13:26!8 +JHN 13:26!9 +JHN 13:26!10 +JHN 13:26!11 +JHN 13:26!12 +JHN 13:26!13 +JHN 13:26!14 +JHN 13:26!16 +JHN 13:26!15 +JHN 13:26!17 +JHN 13:26!18 +JHN 13:26!19 +JHN 13:26!20 +JHN 13:26!21 +JHN 13:26!22 +JHN 13:26!23 +JHN 13:26!24 +JHN 13:27!1 +JHN 13:27!2 +JHN 13:27!3 +JHN 13:27!4 +JHN 13:27!5 +JHN 13:27!6 +JHN 13:27!7 +JHN 13:27!8 +JHN 13:27!9 +JHN 13:27!10 +JHN 13:27!12 +JHN 13:27!11 +JHN 13:27!13 +JHN 13:27!14 +JHN 13:27!15 +JHN 13:27!16 +JHN 13:27!17 +JHN 13:27!18 +JHN 13:28!2 +JHN 13:28!4 +JHN 13:28!3 +JHN 13:28!5 +JHN 13:28!6 +JHN 13:28!1 +JHN 13:28!7 +JHN 13:28!8 +JHN 13:28!9 +JHN 13:28!10 +JHN 13:29!2 +JHN 13:29!1 +JHN 13:29!3 +JHN 13:29!4 +JHN 13:29!5 +JHN 13:29!6 +JHN 13:29!7 +JHN 13:29!8 +JHN 13:29!9 +JHN 13:29!10 +JHN 13:29!11 +JHN 13:29!12 +JHN 13:29!13 +JHN 13:29!14 +JHN 13:29!15 +JHN 13:29!16 +JHN 13:29!17 +JHN 13:29!18 +JHN 13:29!19 +JHN 13:29!20 +JHN 13:29!23 +JHN 13:29!21 +JHN 13:29!22 +JHN 13:29!24 +JHN 13:29!25 +JHN 13:30!2 +JHN 13:30!1 +JHN 13:30!3 +JHN 13:30!4 +JHN 13:30!5 +JHN 13:30!6 +JHN 13:30!7 +JHN 13:30!9 +JHN 13:30!8 +JHN 13:30!10 +JHN 13:31!2 +JHN 13:31!1 +JHN 13:31!3 +JHN 13:31!4 +JHN 13:31!5 +JHN 13:31!6 +JHN 13:31!7 +JHN 13:31!8 +JHN 13:31!9 +JHN 13:31!10 +JHN 13:31!11 +JHN 13:31!12 +JHN 13:31!13 +JHN 13:31!14 +JHN 13:31!15 +JHN 13:31!16 +JHN 13:31!17 +JHN 13:32!1 +JHN 13:32!2 +JHN 13:32!3 +JHN 13:32!4 +JHN 13:32!5 +JHN 13:32!6 +JHN 13:32!7 +JHN 13:32!8 +JHN 13:32!9 +JHN 13:32!10 +JHN 13:32!11 +JHN 13:32!12 +JHN 13:32!13 +JHN 13:32!14 +JHN 13:32!15 +JHN 13:32!16 +JHN 13:32!17 +JHN 13:33!1 +JHN 13:33!2 +JHN 13:33!3 +JHN 13:33!4 +JHN 13:33!5 +JHN 13:33!6 +JHN 13:33!7 +JHN 13:33!8 +JHN 13:33!9 +JHN 13:33!10 +JHN 13:33!11 +JHN 13:33!12 +JHN 13:33!13 +JHN 13:33!14 +JHN 13:33!15 +JHN 13:33!16 +JHN 13:33!17 +JHN 13:33!21 +JHN 13:33!18 +JHN 13:33!19 +JHN 13:33!20 +JHN 13:33!22 +JHN 13:33!23 +JHN 13:33!24 +JHN 13:33!25 +JHN 13:34!1 +JHN 13:34!2 +JHN 13:34!3 +JHN 13:34!4 +JHN 13:34!5 +JHN 13:34!6 +JHN 13:34!7 +JHN 13:34!8 +JHN 13:34!9 +JHN 13:34!10 +JHN 13:34!11 +JHN 13:34!12 +JHN 13:34!13 +JHN 13:34!14 +JHN 13:34!15 +JHN 13:35!1 +JHN 13:35!2 +JHN 13:35!3 +JHN 13:35!4 +JHN 13:35!5 +JHN 13:35!6 +JHN 13:35!7 +JHN 13:35!8 +JHN 13:35!9 +JHN 13:35!10 +JHN 13:35!11 +JHN 13:35!12 +JHN 13:35!13 +JHN 13:36!1 +JHN 13:36!2 +JHN 13:36!3 +JHN 13:36!4 +JHN 13:36!5 +JHN 13:36!6 +JHN 13:36!7 +JHN 13:36!8 +JHN 13:36!9 +JHN 13:36!10 +JHN 13:36!11 +JHN 13:36!14 +JHN 13:36!15 +JHN 13:36!16 +JHN 13:36!12 +JHN 13:36!13 +JHN 13:36!18 +JHN 13:36!17 +JHN 13:36!19 +JHN 13:37!1 +JHN 13:37!2 +JHN 13:37!3 +JHN 13:37!4 +JHN 13:37!5 +JHN 13:37!6 +JHN 13:37!7 +JHN 13:37!8 +JHN 13:37!9 +JHN 13:37!10 +JHN 13:37!11 +JHN 13:37!12 +JHN 13:37!13 +JHN 13:37!14 +JHN 13:37!15 +JHN 13:37!16 +JHN 13:37!17 +JHN 13:38!1 +JHN 13:38!2 +JHN 13:38!3 +JHN 13:38!4 +JHN 13:38!5 +JHN 13:38!6 +JHN 13:38!7 +JHN 13:38!8 +JHN 13:38!9 +JHN 13:38!10 +JHN 13:38!11 +JHN 13:38!12 +JHN 13:38!13 +JHN 13:38!14 +JHN 13:38!15 +JHN 13:38!16 +JHN 13:38!17 +JHN 13:38!18 +JHN 13:38!19 +JHN 13:38!20 +JHN 13:38!21 +JHN 14:1!1 +JHN 14:1!2 +JHN 14:1!3 +JHN 14:1!4 +JHN 14:1!5 +JHN 14:1!6 +JHN 14:1!7 +JHN 14:1!8 +JHN 14:1!9 +JHN 14:1!10 +JHN 14:1!11 +JHN 14:1!12 +JHN 14:1!13 +JHN 14:2!1 +JHN 14:2!2 +JHN 14:2!3 +JHN 14:2!4 +JHN 14:2!5 +JHN 14:2!6 +JHN 14:2!7 +JHN 14:2!8 +JHN 14:2!9 +JHN 14:2!11 +JHN 14:2!10 +JHN 14:2!12 +JHN 14:2!14 +JHN 14:2!13 +JHN 14:2!15 +JHN 14:2!16 +JHN 14:2!17 +JHN 14:2!18 +JHN 14:2!19 +JHN 14:2!20 +JHN 14:3!1 +JHN 14:3!2 +JHN 14:3!3 +JHN 14:3!4 +JHN 14:3!5 +JHN 14:3!6 +JHN 14:3!7 +JHN 14:3!8 +JHN 14:3!9 +JHN 14:3!10 +JHN 14:3!11 +JHN 14:3!12 +JHN 14:3!13 +JHN 14:3!14 +JHN 14:3!15 +JHN 14:3!16 +JHN 14:3!17 +JHN 14:3!18 +JHN 14:3!19 +JHN 14:3!20 +JHN 14:3!21 +JHN 14:4!1 +JHN 14:4!2 +JHN 14:4!3 +JHN 14:4!4 +JHN 14:4!5 +JHN 14:4!6 +JHN 14:4!7 +JHN 14:5!1 +JHN 14:5!2 +JHN 14:5!3 +JHN 14:5!4 +JHN 14:5!5 +JHN 14:5!6 +JHN 14:5!7 +JHN 14:5!8 +JHN 14:5!9 +JHN 14:5!10 +JHN 14:5!11 +JHN 14:5!12 +JHN 14:6!1 +JHN 14:6!2 +JHN 14:6!3 +JHN 14:6!4 +JHN 14:6!5 +JHN 14:6!6 +JHN 14:6!7 +JHN 14:6!8 +JHN 14:6!9 +JHN 14:6!10 +JHN 14:6!11 +JHN 14:6!12 +JHN 14:6!13 +JHN 14:6!14 +JHN 14:6!15 +JHN 14:6!16 +JHN 14:6!17 +JHN 14:6!18 +JHN 14:6!19 +JHN 14:6!20 +JHN 14:6!21 +JHN 14:6!22 +JHN 14:7!1 +JHN 14:7!2 +JHN 14:7!3 +JHN 14:7!8 +JHN 14:7!4 +JHN 14:7!5 +JHN 14:7!6 +JHN 14:7!7 +JHN 14:7!9 +JHN 14:7!10 +JHN 14:7!11 +JHN 14:7!12 +JHN 14:7!13 +JHN 14:7!14 +JHN 14:7!15 +JHN 14:8!1 +JHN 14:8!2 +JHN 14:8!3 +JHN 14:8!4 +JHN 14:8!5 +JHN 14:8!6 +JHN 14:8!7 +JHN 14:8!8 +JHN 14:8!9 +JHN 14:8!10 +JHN 14:8!11 +JHN 14:9!1 +JHN 14:9!2 +JHN 14:9!3 +JHN 14:9!4 +JHN 14:9!5 +JHN 14:9!6 +JHN 14:9!7 +JHN 14:9!8 +JHN 14:9!9 +JHN 14:9!10 +JHN 14:9!11 +JHN 14:9!12 +JHN 14:9!13 +JHN 14:9!14 +JHN 14:9!15 +JHN 14:9!16 +JHN 14:9!17 +JHN 14:9!18 +JHN 14:9!19 +JHN 14:9!20 +JHN 14:9!21 +JHN 14:9!22 +JHN 14:9!23 +JHN 14:9!24 +JHN 14:9!25 +JHN 14:9!26 +JHN 14:9!27 +JHN 14:10!1 +JHN 14:10!2 +JHN 14:10!3 +JHN 14:10!4 +JHN 14:10!5 +JHN 14:10!6 +JHN 14:10!7 +JHN 14:10!8 +JHN 14:10!9 +JHN 14:10!10 +JHN 14:10!11 +JHN 14:10!12 +JHN 14:10!13 +JHN 14:10!14 +JHN 14:10!15 +JHN 14:10!16 +JHN 14:10!17 +JHN 14:10!18 +JHN 14:10!19 +JHN 14:10!20 +JHN 14:10!21 +JHN 14:10!22 +JHN 14:10!23 +JHN 14:10!25 +JHN 14:10!24 +JHN 14:10!26 +JHN 14:10!27 +JHN 14:10!28 +JHN 14:10!29 +JHN 14:10!30 +JHN 14:10!31 +JHN 14:10!32 +JHN 14:10!33 +JHN 14:11!1 +JHN 14:11!2 +JHN 14:11!3 +JHN 14:11!4 +JHN 14:11!5 +JHN 14:11!6 +JHN 14:11!7 +JHN 14:11!8 +JHN 14:11!9 +JHN 14:11!10 +JHN 14:11!11 +JHN 14:11!12 +JHN 14:11!14 +JHN 14:11!13 +JHN 14:11!15 +JHN 14:11!16 +JHN 14:11!17 +JHN 14:11!18 +JHN 14:11!19 +JHN 14:11!20 +JHN 14:12!1 +JHN 14:12!2 +JHN 14:12!3 +JHN 14:12!4 +JHN 14:12!5 +JHN 14:12!6 +JHN 14:12!7 +JHN 14:12!8 +JHN 14:12!9 +JHN 14:12!10 +JHN 14:12!11 +JHN 14:12!12 +JHN 14:12!13 +JHN 14:12!14 +JHN 14:12!15 +JHN 14:12!16 +JHN 14:12!17 +JHN 14:12!18 +JHN 14:12!19 +JHN 14:12!20 +JHN 14:12!21 +JHN 14:12!22 +JHN 14:12!23 +JHN 14:12!24 +JHN 14:12!25 +JHN 14:13!1 +JHN 14:13!3 +JHN 14:13!4 +JHN 14:13!2 +JHN 14:13!5 +JHN 14:13!6 +JHN 14:13!7 +JHN 14:13!8 +JHN 14:13!9 +JHN 14:13!10 +JHN 14:13!11 +JHN 14:13!12 +JHN 14:13!13 +JHN 14:13!14 +JHN 14:13!15 +JHN 14:13!16 +JHN 14:13!17 +JHN 14:13!18 +JHN 14:14!1 +JHN 14:14!2 +JHN 14:14!3 +JHN 14:14!4 +JHN 14:14!5 +JHN 14:14!6 +JHN 14:14!7 +JHN 14:14!8 +JHN 14:14!9 +JHN 14:14!10 +JHN 14:15!1 +JHN 14:15!2 +JHN 14:15!3 +JHN 14:15!4 +JHN 14:15!5 +JHN 14:15!6 +JHN 14:15!7 +JHN 14:15!8 +JHN 14:16!1 +JHN 14:16!2 +JHN 14:16!3 +JHN 14:16!4 +JHN 14:16!5 +JHN 14:16!6 +JHN 14:16!7 +JHN 14:16!8 +JHN 14:16!9 +JHN 14:16!10 +JHN 14:16!11 +JHN 14:16!12 +JHN 14:16!13 +JHN 14:16!14 +JHN 14:16!15 +JHN 14:16!16 +JHN 14:17!1 +JHN 14:17!2 +JHN 14:17!3 +JHN 14:17!4 +JHN 14:17!5 +JHN 14:17!10 +JHN 14:17!6 +JHN 14:17!7 +JHN 14:17!8 +JHN 14:17!9 +JHN 14:17!11 +JHN 14:17!12 +JHN 14:17!13 +JHN 14:17!14 +JHN 14:17!15 +JHN 14:17!16 +JHN 14:17!17 +JHN 14:17!18 +JHN 14:17!19 +JHN 14:17!20 +JHN 14:17!21 +JHN 14:17!22 +JHN 14:17!23 +JHN 14:17!24 +JHN 14:17!25 +JHN 14:17!26 +JHN 14:17!27 +JHN 14:18!1 +JHN 14:18!2 +JHN 14:18!3 +JHN 14:18!4 +JHN 14:18!5 +JHN 14:18!6 +JHN 14:18!7 +JHN 14:19!3 +JHN 14:19!1 +JHN 14:19!2 +JHN 14:19!4 +JHN 14:19!5 +JHN 14:19!6 +JHN 14:19!7 +JHN 14:19!8 +JHN 14:19!10 +JHN 14:19!9 +JHN 14:19!11 +JHN 14:19!12 +JHN 14:19!13 +JHN 14:19!14 +JHN 14:19!15 +JHN 14:19!16 +JHN 14:19!17 +JHN 14:19!18 +JHN 14:20!1 +JHN 14:20!2 +JHN 14:20!3 +JHN 14:20!4 +JHN 14:20!5 +JHN 14:20!6 +JHN 14:20!7 +JHN 14:20!8 +JHN 14:20!9 +JHN 14:20!10 +JHN 14:20!11 +JHN 14:20!12 +JHN 14:20!13 +JHN 14:20!14 +JHN 14:20!15 +JHN 14:20!16 +JHN 14:20!17 +JHN 14:20!18 +JHN 14:20!19 +JHN 14:21!1 +JHN 14:21!2 +JHN 14:21!3 +JHN 14:21!4 +JHN 14:21!5 +JHN 14:21!6 +JHN 14:21!7 +JHN 14:21!8 +JHN 14:21!9 +JHN 14:21!10 +JHN 14:21!11 +JHN 14:21!12 +JHN 14:21!13 +JHN 14:21!15 +JHN 14:21!14 +JHN 14:21!16 +JHN 14:21!17 +JHN 14:21!18 +JHN 14:21!19 +JHN 14:21!20 +JHN 14:21!21 +JHN 14:21!22 +JHN 14:21!23 +JHN 14:21!24 +JHN 14:21!25 +JHN 14:21!26 +JHN 14:21!27 +JHN 14:21!28 +JHN 14:21!29 +JHN 14:22!1 +JHN 14:22!2 +JHN 14:22!3 +JHN 14:22!4 +JHN 14:22!5 +JHN 14:22!6 +JHN 14:22!7 +JHN 14:22!8 +JHN 14:22!9 +JHN 14:22!10 +JHN 14:22!11 +JHN 14:22!13 +JHN 14:22!12 +JHN 14:22!14 +JHN 14:22!15 +JHN 14:22!16 +JHN 14:22!17 +JHN 14:22!18 +JHN 14:22!19 +JHN 14:23!1 +JHN 14:23!2 +JHN 14:23!3 +JHN 14:23!4 +JHN 14:23!5 +JHN 14:23!6 +JHN 14:23!7 +JHN 14:23!8 +JHN 14:23!9 +JHN 14:23!10 +JHN 14:23!11 +JHN 14:23!12 +JHN 14:23!13 +JHN 14:23!14 +JHN 14:23!15 +JHN 14:23!16 +JHN 14:23!17 +JHN 14:23!18 +JHN 14:23!19 +JHN 14:23!20 +JHN 14:23!21 +JHN 14:23!22 +JHN 14:23!23 +JHN 14:23!24 +JHN 14:23!25 +JHN 14:23!26 +JHN 14:23!27 +JHN 14:23!28 +JHN 14:24!1 +JHN 14:24!2 +JHN 14:24!3 +JHN 14:24!4 +JHN 14:24!5 +JHN 14:24!6 +JHN 14:24!7 +JHN 14:24!8 +JHN 14:24!9 +JHN 14:24!10 +JHN 14:24!11 +JHN 14:24!12 +JHN 14:24!13 +JHN 14:24!14 +JHN 14:24!15 +JHN 14:24!16 +JHN 14:24!17 +JHN 14:24!18 +JHN 14:24!19 +JHN 14:24!20 +JHN 14:24!21 +JHN 14:24!22 +JHN 14:25!1 +JHN 14:25!2 +JHN 14:25!3 +JHN 14:25!4 +JHN 14:25!5 +JHN 14:25!6 +JHN 14:26!2 +JHN 14:26!1 +JHN 14:26!3 +JHN 14:26!4 +JHN 14:26!5 +JHN 14:26!6 +JHN 14:26!7 +JHN 14:26!8 +JHN 14:26!9 +JHN 14:26!10 +JHN 14:26!11 +JHN 14:26!12 +JHN 14:26!13 +JHN 14:26!14 +JHN 14:26!15 +JHN 14:26!16 +JHN 14:26!17 +JHN 14:26!18 +JHN 14:26!19 +JHN 14:26!20 +JHN 14:26!21 +JHN 14:26!22 +JHN 14:26!23 +JHN 14:26!24 +JHN 14:26!25 +JHN 14:26!26 +JHN 14:26!27 +JHN 14:27!1 +JHN 14:27!2 +JHN 14:27!3 +JHN 14:27!4 +JHN 14:27!5 +JHN 14:27!6 +JHN 14:27!7 +JHN 14:27!8 +JHN 14:27!9 +JHN 14:27!10 +JHN 14:27!11 +JHN 14:27!12 +JHN 14:27!13 +JHN 14:27!14 +JHN 14:27!15 +JHN 14:27!16 +JHN 14:27!17 +JHN 14:27!18 +JHN 14:27!19 +JHN 14:27!20 +JHN 14:27!21 +JHN 14:27!22 +JHN 14:27!23 +JHN 14:28!1 +JHN 14:28!2 +JHN 14:28!3 +JHN 14:28!4 +JHN 14:28!5 +JHN 14:28!6 +JHN 14:28!7 +JHN 14:28!8 +JHN 14:28!9 +JHN 14:28!10 +JHN 14:28!11 +JHN 14:28!12 +JHN 14:28!13 +JHN 14:28!15 +JHN 14:28!14 +JHN 14:28!16 +JHN 14:28!17 +JHN 14:28!18 +JHN 14:28!19 +JHN 14:28!20 +JHN 14:28!21 +JHN 14:28!22 +JHN 14:28!23 +JHN 14:28!24 +JHN 14:28!25 +JHN 14:28!26 +JHN 14:29!1 +JHN 14:29!2 +JHN 14:29!3 +JHN 14:29!4 +JHN 14:29!5 +JHN 14:29!6 +JHN 14:29!7 +JHN 14:29!8 +JHN 14:29!9 +JHN 14:29!10 +JHN 14:30!1 +JHN 14:30!2 +JHN 14:30!3 +JHN 14:30!4 +JHN 14:30!5 +JHN 14:30!7 +JHN 14:30!6 +JHN 14:30!8 +JHN 14:30!9 +JHN 14:30!10 +JHN 14:30!11 +JHN 14:30!12 +JHN 14:30!13 +JHN 14:30!14 +JHN 14:30!15 +JHN 14:30!16 +JHN 14:30!17 +JHN 14:31!1 +JHN 14:31!2 +JHN 14:31!3 +JHN 14:31!4 +JHN 14:31!5 +JHN 14:31!6 +JHN 14:31!7 +JHN 14:31!8 +JHN 14:31!9 +JHN 14:31!10 +JHN 14:31!11 +JHN 14:31!12 +JHN 14:31!13 +JHN 14:31!14 +JHN 14:31!15 +JHN 14:31!16 +JHN 14:31!17 +JHN 14:31!18 +JHN 14:31!19 +JHN 14:31!20 +JHN 15:1!1 +JHN 15:1!2 +JHN 15:1!3 +JHN 15:1!4 +JHN 15:1!5 +JHN 15:1!6 +JHN 15:1!7 +JHN 15:1!8 +JHN 15:1!9 +JHN 15:1!10 +JHN 15:1!11 +JHN 15:1!12 +JHN 15:1!13 +JHN 15:2!1 +JHN 15:2!2 +JHN 15:2!3 +JHN 15:2!4 +JHN 15:2!5 +JHN 15:2!6 +JHN 15:2!7 +JHN 15:2!8 +JHN 15:2!9 +JHN 15:2!10 +JHN 15:2!11 +JHN 15:2!12 +JHN 15:2!13 +JHN 15:2!14 +JHN 15:2!15 +JHN 15:2!16 +JHN 15:2!17 +JHN 15:2!18 +JHN 15:2!19 +JHN 15:2!20 +JHN 15:3!1 +JHN 15:3!2 +JHN 15:3!3 +JHN 15:3!4 +JHN 15:3!5 +JHN 15:3!6 +JHN 15:3!7 +JHN 15:3!8 +JHN 15:3!9 +JHN 15:3!10 +JHN 15:4!1 +JHN 15:4!2 +JHN 15:4!3 +JHN 15:4!4 +JHN 15:4!5 +JHN 15:4!6 +JHN 15:4!7 +JHN 15:4!8 +JHN 15:4!9 +JHN 15:4!10 +JHN 15:4!11 +JHN 15:4!12 +JHN 15:4!13 +JHN 15:4!14 +JHN 15:4!15 +JHN 15:4!16 +JHN 15:4!17 +JHN 15:4!18 +JHN 15:4!19 +JHN 15:4!20 +JHN 15:4!21 +JHN 15:4!22 +JHN 15:4!23 +JHN 15:4!24 +JHN 15:4!25 +JHN 15:4!26 +JHN 15:4!27 +JHN 15:4!28 +JHN 15:4!29 +JHN 15:5!1 +JHN 15:5!2 +JHN 15:5!3 +JHN 15:5!4 +JHN 15:5!5 +JHN 15:5!6 +JHN 15:5!7 +JHN 15:5!8 +JHN 15:5!9 +JHN 15:5!10 +JHN 15:5!11 +JHN 15:5!12 +JHN 15:5!13 +JHN 15:5!14 +JHN 15:5!15 +JHN 15:5!16 +JHN 15:5!17 +JHN 15:5!18 +JHN 15:5!19 +JHN 15:5!20 +JHN 15:5!21 +JHN 15:5!22 +JHN 15:5!23 +JHN 15:5!24 +JHN 15:5!25 +JHN 15:6!1 +JHN 15:6!2 +JHN 15:6!3 +JHN 15:6!4 +JHN 15:6!5 +JHN 15:6!6 +JHN 15:6!7 +JHN 15:6!8 +JHN 15:6!9 +JHN 15:6!10 +JHN 15:6!11 +JHN 15:6!12 +JHN 15:6!13 +JHN 15:6!14 +JHN 15:6!15 +JHN 15:6!16 +JHN 15:6!17 +JHN 15:6!18 +JHN 15:6!19 +JHN 15:6!20 +JHN 15:6!21 +JHN 15:6!22 +JHN 15:6!23 +JHN 15:7!1 +JHN 15:7!2 +JHN 15:7!3 +JHN 15:7!4 +JHN 15:7!5 +JHN 15:7!6 +JHN 15:7!7 +JHN 15:7!8 +JHN 15:7!9 +JHN 15:7!10 +JHN 15:7!11 +JHN 15:7!13 +JHN 15:7!12 +JHN 15:7!14 +JHN 15:7!15 +JHN 15:7!16 +JHN 15:7!17 +JHN 15:7!18 +JHN 15:8!1 +JHN 15:8!2 +JHN 15:8!3 +JHN 15:8!4 +JHN 15:8!5 +JHN 15:8!6 +JHN 15:8!7 +JHN 15:8!8 +JHN 15:8!9 +JHN 15:8!10 +JHN 15:8!11 +JHN 15:8!12 +JHN 15:8!13 +JHN 15:8!14 +JHN 15:9!1 +JHN 15:9!2 +JHN 15:9!3 +JHN 15:9!4 +JHN 15:9!5 +JHN 15:9!6 +JHN 15:9!7 +JHN 15:9!8 +JHN 15:9!9 +JHN 15:9!10 +JHN 15:9!11 +JHN 15:9!12 +JHN 15:9!13 +JHN 15:9!14 +JHN 15:10!1 +JHN 15:10!2 +JHN 15:10!3 +JHN 15:10!4 +JHN 15:10!5 +JHN 15:10!6 +JHN 15:10!7 +JHN 15:10!8 +JHN 15:10!9 +JHN 15:10!10 +JHN 15:10!11 +JHN 15:10!12 +JHN 15:10!13 +JHN 15:10!14 +JHN 15:10!15 +JHN 15:10!16 +JHN 15:10!17 +JHN 15:10!18 +JHN 15:10!19 +JHN 15:10!20 +JHN 15:10!22 +JHN 15:10!21 +JHN 15:10!23 +JHN 15:10!24 +JHN 15:11!1 +JHN 15:11!2 +JHN 15:11!3 +JHN 15:11!4 +JHN 15:11!5 +JHN 15:11!6 +JHN 15:11!7 +JHN 15:11!8 +JHN 15:11!9 +JHN 15:11!10 +JHN 15:11!11 +JHN 15:11!12 +JHN 15:11!13 +JHN 15:11!14 +JHN 15:11!15 +JHN 15:11!16 +JHN 15:12!1 +JHN 15:12!2 +JHN 15:12!3 +JHN 15:12!4 +JHN 15:12!5 +JHN 15:12!6 +JHN 15:12!7 +JHN 15:12!8 +JHN 15:12!9 +JHN 15:12!10 +JHN 15:12!11 +JHN 15:12!12 +JHN 15:13!1 +JHN 15:13!2 +JHN 15:13!3 +JHN 15:13!4 +JHN 15:13!5 +JHN 15:13!6 +JHN 15:13!7 +JHN 15:13!8 +JHN 15:13!9 +JHN 15:13!10 +JHN 15:13!11 +JHN 15:13!12 +JHN 15:13!13 +JHN 15:13!14 +JHN 15:13!15 +JHN 15:14!1 +JHN 15:14!2 +JHN 15:14!3 +JHN 15:14!4 +JHN 15:14!5 +JHN 15:14!6 +JHN 15:14!7 +JHN 15:14!8 +JHN 15:14!9 +JHN 15:14!10 +JHN 15:15!1 +JHN 15:15!2 +JHN 15:15!3 +JHN 15:15!4 +JHN 15:15!5 +JHN 15:15!6 +JHN 15:15!7 +JHN 15:15!8 +JHN 15:15!9 +JHN 15:15!10 +JHN 15:15!11 +JHN 15:15!12 +JHN 15:15!13 +JHN 15:15!14 +JHN 15:15!16 +JHN 15:15!15 +JHN 15:15!17 +JHN 15:15!18 +JHN 15:15!19 +JHN 15:15!20 +JHN 15:15!21 +JHN 15:15!22 +JHN 15:15!23 +JHN 15:15!24 +JHN 15:15!25 +JHN 15:15!26 +JHN 15:15!27 +JHN 15:15!28 +JHN 15:16!1 +JHN 15:16!2 +JHN 15:16!3 +JHN 15:16!4 +JHN 15:16!5 +JHN 15:16!6 +JHN 15:16!7 +JHN 15:16!8 +JHN 15:16!9 +JHN 15:16!10 +JHN 15:16!11 +JHN 15:16!12 +JHN 15:16!13 +JHN 15:16!14 +JHN 15:16!15 +JHN 15:16!16 +JHN 15:16!17 +JHN 15:16!18 +JHN 15:16!19 +JHN 15:16!20 +JHN 15:16!21 +JHN 15:16!22 +JHN 15:16!23 +JHN 15:16!25 +JHN 15:16!26 +JHN 15:16!24 +JHN 15:16!27 +JHN 15:16!28 +JHN 15:16!29 +JHN 15:16!30 +JHN 15:16!31 +JHN 15:16!32 +JHN 15:16!33 +JHN 15:16!34 +JHN 15:16!35 +JHN 15:17!1 +JHN 15:17!2 +JHN 15:17!3 +JHN 15:17!4 +JHN 15:17!5 +JHN 15:17!6 +JHN 15:18!1 +JHN 15:18!2 +JHN 15:18!3 +JHN 15:18!4 +JHN 15:18!5 +JHN 15:18!6 +JHN 15:18!7 +JHN 15:18!8 +JHN 15:18!9 +JHN 15:18!10 +JHN 15:18!11 +JHN 15:19!1 +JHN 15:19!2 +JHN 15:19!3 +JHN 15:19!4 +JHN 15:19!5 +JHN 15:19!8 +JHN 15:19!6 +JHN 15:19!7 +JHN 15:19!9 +JHN 15:19!10 +JHN 15:19!11 +JHN 15:19!13 +JHN 15:19!12 +JHN 15:19!14 +JHN 15:19!15 +JHN 15:19!16 +JHN 15:19!17 +JHN 15:19!18 +JHN 15:19!19 +JHN 15:19!20 +JHN 15:19!21 +JHN 15:19!22 +JHN 15:19!23 +JHN 15:19!24 +JHN 15:19!25 +JHN 15:19!26 +JHN 15:19!27 +JHN 15:19!28 +JHN 15:19!29 +JHN 15:19!30 +JHN 15:19!31 +JHN 15:20!1 +JHN 15:20!2 +JHN 15:20!3 +JHN 15:20!4 +JHN 15:20!5 +JHN 15:20!6 +JHN 15:20!7 +JHN 15:20!8 +JHN 15:20!9 +JHN 15:20!10 +JHN 15:20!11 +JHN 15:20!12 +JHN 15:20!13 +JHN 15:20!14 +JHN 15:20!15 +JHN 15:20!16 +JHN 15:20!17 +JHN 15:20!18 +JHN 15:20!19 +JHN 15:20!20 +JHN 15:20!21 +JHN 15:20!22 +JHN 15:20!23 +JHN 15:20!24 +JHN 15:20!25 +JHN 15:20!26 +JHN 15:20!27 +JHN 15:20!28 +JHN 15:20!29 +JHN 15:21!1 +JHN 15:21!2 +JHN 15:21!3 +JHN 15:21!4 +JHN 15:21!5 +JHN 15:21!6 +JHN 15:21!7 +JHN 15:21!8 +JHN 15:21!9 +JHN 15:21!10 +JHN 15:21!11 +JHN 15:21!12 +JHN 15:21!13 +JHN 15:21!14 +JHN 15:21!15 +JHN 15:21!16 +JHN 15:22!1 +JHN 15:22!2 +JHN 15:22!3 +JHN 15:22!4 +JHN 15:22!5 +JHN 15:22!6 +JHN 15:22!7 +JHN 15:22!8 +JHN 15:22!9 +JHN 15:22!11 +JHN 15:22!10 +JHN 15:22!12 +JHN 15:22!13 +JHN 15:22!14 +JHN 15:22!15 +JHN 15:22!16 +JHN 15:22!17 +JHN 15:22!18 +JHN 15:23!1 +JHN 15:23!2 +JHN 15:23!3 +JHN 15:23!4 +JHN 15:23!5 +JHN 15:23!6 +JHN 15:23!7 +JHN 15:23!8 +JHN 15:24!1 +JHN 15:24!2 +JHN 15:24!3 +JHN 15:24!4 +JHN 15:24!5 +JHN 15:24!6 +JHN 15:24!7 +JHN 15:24!8 +JHN 15:24!9 +JHN 15:24!10 +JHN 15:24!11 +JHN 15:24!12 +JHN 15:24!13 +JHN 15:24!14 +JHN 15:24!16 +JHN 15:24!15 +JHN 15:24!17 +JHN 15:24!18 +JHN 15:24!19 +JHN 15:24!20 +JHN 15:24!21 +JHN 15:24!22 +JHN 15:24!23 +JHN 15:24!24 +JHN 15:24!25 +JHN 15:24!26 +JHN 15:25!1 +JHN 15:25!2 +JHN 15:25!3 +JHN 15:25!4 +JHN 15:25!5 +JHN 15:25!6 +JHN 15:25!7 +JHN 15:25!8 +JHN 15:25!9 +JHN 15:25!10 +JHN 15:25!11 +JHN 15:25!12 +JHN 15:25!13 +JHN 15:25!14 +JHN 15:25!15 +JHN 15:26!1 +JHN 15:26!2 +JHN 15:26!3 +JHN 15:26!4 +JHN 15:26!5 +JHN 15:26!6 +JHN 15:26!7 +JHN 15:26!8 +JHN 15:26!9 +JHN 15:26!10 +JHN 15:26!11 +JHN 15:26!12 +JHN 15:26!13 +JHN 15:26!14 +JHN 15:26!15 +JHN 15:26!16 +JHN 15:26!17 +JHN 15:26!18 +JHN 15:26!19 +JHN 15:26!20 +JHN 15:26!21 +JHN 15:26!22 +JHN 15:26!23 +JHN 15:26!24 +JHN 15:27!3 +JHN 15:27!1 +JHN 15:27!2 +JHN 15:27!4 +JHN 15:27!5 +JHN 15:27!6 +JHN 15:27!7 +JHN 15:27!8 +JHN 15:27!9 +JHN 15:27!10 +JHN 16:1!1 +JHN 16:1!2 +JHN 16:1!3 +JHN 16:1!4 +JHN 16:1!5 +JHN 16:1!6 +JHN 16:2!1 +JHN 16:2!2 +JHN 16:2!3 +JHN 16:2!4 +JHN 16:2!5 +JHN 16:2!6 +JHN 16:2!7 +JHN 16:2!8 +JHN 16:2!9 +JHN 16:2!10 +JHN 16:2!11 +JHN 16:2!12 +JHN 16:2!13 +JHN 16:2!14 +JHN 16:2!15 +JHN 16:2!16 +JHN 16:3!1 +JHN 16:3!2 +JHN 16:3!3 +JHN 16:3!4 +JHN 16:3!5 +JHN 16:3!6 +JHN 16:3!7 +JHN 16:3!8 +JHN 16:3!9 +JHN 16:3!10 +JHN 16:4!1 +JHN 16:4!2 +JHN 16:4!3 +JHN 16:4!4 +JHN 16:4!5 +JHN 16:4!6 +JHN 16:4!7 +JHN 16:4!8 +JHN 16:4!9 +JHN 16:4!10 +JHN 16:4!11 +JHN 16:4!12 +JHN 16:4!13 +JHN 16:4!14 +JHN 16:4!15 +JHN 16:4!16 +JHN 16:4!18 +JHN 16:4!17 +JHN 16:4!19 +JHN 16:4!20 +JHN 16:4!21 +JHN 16:4!22 +JHN 16:4!23 +JHN 16:4!24 +JHN 16:4!25 +JHN 16:4!26 +JHN 16:4!27 +JHN 16:5!2 +JHN 16:5!1 +JHN 16:5!3 +JHN 16:5!4 +JHN 16:5!5 +JHN 16:5!6 +JHN 16:5!7 +JHN 16:5!8 +JHN 16:5!9 +JHN 16:5!10 +JHN 16:5!11 +JHN 16:5!12 +JHN 16:5!13 +JHN 16:5!14 +JHN 16:5!15 +JHN 16:6!1 +JHN 16:6!2 +JHN 16:6!3 +JHN 16:6!4 +JHN 16:6!5 +JHN 16:6!6 +JHN 16:6!7 +JHN 16:6!8 +JHN 16:6!9 +JHN 16:6!10 +JHN 16:6!11 +JHN 16:7!1 +JHN 16:7!2 +JHN 16:7!3 +JHN 16:7!4 +JHN 16:7!5 +JHN 16:7!6 +JHN 16:7!7 +JHN 16:7!8 +JHN 16:7!9 +JHN 16:7!10 +JHN 16:7!11 +JHN 16:7!13 +JHN 16:7!12 +JHN 16:7!14 +JHN 16:7!15 +JHN 16:7!16 +JHN 16:7!17 +JHN 16:7!18 +JHN 16:7!19 +JHN 16:7!20 +JHN 16:7!21 +JHN 16:7!22 +JHN 16:7!24 +JHN 16:7!23 +JHN 16:7!25 +JHN 16:7!26 +JHN 16:7!27 +JHN 16:7!28 +JHN 16:7!29 +JHN 16:8!1 +JHN 16:8!2 +JHN 16:8!3 +JHN 16:8!4 +JHN 16:8!5 +JHN 16:8!6 +JHN 16:8!7 +JHN 16:8!8 +JHN 16:8!9 +JHN 16:8!10 +JHN 16:8!11 +JHN 16:8!12 +JHN 16:8!13 +JHN 16:8!14 +JHN 16:9!3 +JHN 16:9!1 +JHN 16:9!2 +JHN 16:9!4 +JHN 16:9!5 +JHN 16:9!6 +JHN 16:9!7 +JHN 16:9!8 +JHN 16:10!3 +JHN 16:10!1 +JHN 16:10!2 +JHN 16:10!4 +JHN 16:10!5 +JHN 16:10!6 +JHN 16:10!7 +JHN 16:10!8 +JHN 16:10!9 +JHN 16:10!10 +JHN 16:10!11 +JHN 16:10!12 +JHN 16:11!2 +JHN 16:11!1 +JHN 16:11!3 +JHN 16:11!4 +JHN 16:11!5 +JHN 16:11!6 +JHN 16:11!7 +JHN 16:11!8 +JHN 16:11!9 +JHN 16:11!10 +JHN 16:12!1 +JHN 16:12!3 +JHN 16:12!2 +JHN 16:12!4 +JHN 16:12!5 +JHN 16:12!6 +JHN 16:12!7 +JHN 16:12!8 +JHN 16:12!9 +JHN 16:12!10 +JHN 16:13!2 +JHN 16:13!1 +JHN 16:13!3 +JHN 16:13!4 +JHN 16:13!5 +JHN 16:13!6 +JHN 16:13!7 +JHN 16:13!8 +JHN 16:13!9 +JHN 16:13!10 +JHN 16:13!11 +JHN 16:13!12 +JHN 16:13!13 +JHN 16:13!14 +JHN 16:13!16 +JHN 16:13!15 +JHN 16:13!17 +JHN 16:13!18 +JHN 16:13!19 +JHN 16:13!20 +JHN 16:13!21 +JHN 16:13!22 +JHN 16:13!23 +JHN 16:13!24 +JHN 16:13!25 +JHN 16:13!26 +JHN 16:13!27 +JHN 16:13!28 +JHN 16:14!1 +JHN 16:14!2 +JHN 16:14!3 +JHN 16:14!4 +JHN 16:14!5 +JHN 16:14!6 +JHN 16:14!7 +JHN 16:14!8 +JHN 16:14!9 +JHN 16:14!10 +JHN 16:14!11 +JHN 16:15!1 +JHN 16:15!2 +JHN 16:15!3 +JHN 16:15!4 +JHN 16:15!5 +JHN 16:15!6 +JHN 16:15!7 +JHN 16:15!8 +JHN 16:15!9 +JHN 16:15!10 +JHN 16:15!11 +JHN 16:15!12 +JHN 16:15!13 +JHN 16:15!14 +JHN 16:15!15 +JHN 16:15!16 +JHN 16:15!17 +JHN 16:15!18 +JHN 16:16!1 +JHN 16:16!2 +JHN 16:16!3 +JHN 16:16!4 +JHN 16:16!5 +JHN 16:16!6 +JHN 16:16!7 +JHN 16:16!8 +JHN 16:16!9 +JHN 16:16!10 +JHN 16:16!11 +JHN 16:17!2 +JHN 16:17!1 +JHN 16:17!3 +JHN 16:17!4 +JHN 16:17!5 +JHN 16:17!6 +JHN 16:17!7 +JHN 16:17!8 +JHN 16:17!9 +JHN 16:17!10 +JHN 16:17!11 +JHN 16:17!12 +JHN 16:17!13 +JHN 16:17!14 +JHN 16:17!15 +JHN 16:17!16 +JHN 16:17!17 +JHN 16:17!18 +JHN 16:17!19 +JHN 16:17!20 +JHN 16:17!21 +JHN 16:17!22 +JHN 16:17!23 +JHN 16:17!24 +JHN 16:17!25 +JHN 16:17!26 +JHN 16:17!27 +JHN 16:17!28 +JHN 16:17!29 +JHN 16:17!30 +JHN 16:17!31 +JHN 16:18!2 +JHN 16:18!1 +JHN 16:18!4 +JHN 16:18!5 +JHN 16:18!3 +JHN 16:18!6 +JHN 16:18!7 +JHN 16:18!8 +JHN 16:18!9 +JHN 16:18!10 +JHN 16:18!11 +JHN 16:18!12 +JHN 16:18!13 +JHN 16:19!1 +JHN 16:19!2 +JHN 16:19!3 +JHN 16:19!4 +JHN 16:19!5 +JHN 16:19!6 +JHN 16:19!7 +JHN 16:19!8 +JHN 16:19!9 +JHN 16:19!10 +JHN 16:19!11 +JHN 16:19!12 +JHN 16:19!13 +JHN 16:19!14 +JHN 16:19!15 +JHN 16:19!16 +JHN 16:19!17 +JHN 16:19!18 +JHN 16:19!19 +JHN 16:19!20 +JHN 16:19!21 +JHN 16:19!22 +JHN 16:19!23 +JHN 16:19!24 +JHN 16:19!25 +JHN 16:19!26 +JHN 16:19!27 +JHN 16:20!1 +JHN 16:20!2 +JHN 16:20!3 +JHN 16:20!4 +JHN 16:20!5 +JHN 16:20!6 +JHN 16:20!7 +JHN 16:20!8 +JHN 16:20!9 +JHN 16:20!11 +JHN 16:20!10 +JHN 16:20!12 +JHN 16:20!13 +JHN 16:20!14 +JHN 16:20!15 +JHN 16:20!16 +JHN 16:20!17 +JHN 16:20!18 +JHN 16:20!19 +JHN 16:20!20 +JHN 16:20!21 +JHN 16:20!22 +JHN 16:21!3 +JHN 16:21!1 +JHN 16:21!2 +JHN 16:21!4 +JHN 16:21!5 +JHN 16:21!6 +JHN 16:21!7 +JHN 16:21!8 +JHN 16:21!9 +JHN 16:21!10 +JHN 16:21!11 +JHN 16:21!13 +JHN 16:21!12 +JHN 16:21!14 +JHN 16:21!15 +JHN 16:21!16 +JHN 16:21!17 +JHN 16:21!18 +JHN 16:21!19 +JHN 16:21!20 +JHN 16:21!21 +JHN 16:21!22 +JHN 16:21!23 +JHN 16:21!24 +JHN 16:21!25 +JHN 16:21!26 +JHN 16:21!27 +JHN 16:21!28 +JHN 16:21!29 +JHN 16:22!3 +JHN 16:22!5 +JHN 16:22!1 +JHN 16:22!2 +JHN 16:22!4 +JHN 16:22!6 +JHN 16:22!7 +JHN 16:22!9 +JHN 16:22!8 +JHN 16:22!10 +JHN 16:22!11 +JHN 16:22!12 +JHN 16:22!13 +JHN 16:22!14 +JHN 16:22!15 +JHN 16:22!16 +JHN 16:22!17 +JHN 16:22!18 +JHN 16:22!19 +JHN 16:22!20 +JHN 16:22!21 +JHN 16:22!22 +JHN 16:22!23 +JHN 16:22!24 +JHN 16:23!1 +JHN 16:23!2 +JHN 16:23!3 +JHN 16:23!4 +JHN 16:23!5 +JHN 16:23!6 +JHN 16:23!7 +JHN 16:23!8 +JHN 16:23!9 +JHN 16:23!10 +JHN 16:23!11 +JHN 16:23!12 +JHN 16:23!13 +JHN 16:23!14 +JHN 16:23!15 +JHN 16:23!16 +JHN 16:23!17 +JHN 16:23!18 +JHN 16:23!19 +JHN 16:23!20 +JHN 16:23!21 +JHN 16:23!22 +JHN 16:23!23 +JHN 16:23!24 +JHN 16:24!1 +JHN 16:24!2 +JHN 16:24!3 +JHN 16:24!4 +JHN 16:24!5 +JHN 16:24!6 +JHN 16:24!7 +JHN 16:24!8 +JHN 16:24!9 +JHN 16:24!10 +JHN 16:24!11 +JHN 16:24!12 +JHN 16:24!13 +JHN 16:24!14 +JHN 16:24!15 +JHN 16:24!16 +JHN 16:24!17 +JHN 16:24!18 +JHN 16:25!1 +JHN 16:25!2 +JHN 16:25!3 +JHN 16:25!4 +JHN 16:25!5 +JHN 16:25!6 +JHN 16:25!7 +JHN 16:25!8 +JHN 16:25!9 +JHN 16:25!10 +JHN 16:25!11 +JHN 16:25!12 +JHN 16:25!13 +JHN 16:25!14 +JHN 16:25!15 +JHN 16:25!16 +JHN 16:25!17 +JHN 16:25!18 +JHN 16:25!19 +JHN 16:25!20 +JHN 16:26!1 +JHN 16:26!2 +JHN 16:26!3 +JHN 16:26!4 +JHN 16:26!5 +JHN 16:26!6 +JHN 16:26!7 +JHN 16:26!8 +JHN 16:26!9 +JHN 16:26!10 +JHN 16:26!11 +JHN 16:26!12 +JHN 16:26!13 +JHN 16:26!14 +JHN 16:26!15 +JHN 16:26!16 +JHN 16:26!17 +JHN 16:26!18 +JHN 16:26!19 +JHN 16:26!20 +JHN 16:27!2 +JHN 16:27!1 +JHN 16:27!3 +JHN 16:27!4 +JHN 16:27!5 +JHN 16:27!6 +JHN 16:27!7 +JHN 16:27!8 +JHN 16:27!9 +JHN 16:27!10 +JHN 16:27!11 +JHN 16:27!12 +JHN 16:27!13 +JHN 16:27!14 +JHN 16:27!15 +JHN 16:27!16 +JHN 16:27!17 +JHN 16:27!18 +JHN 16:28!1 +JHN 16:28!2 +JHN 16:28!3 +JHN 16:28!4 +JHN 16:28!5 +JHN 16:28!6 +JHN 16:28!7 +JHN 16:28!8 +JHN 16:28!9 +JHN 16:28!10 +JHN 16:28!11 +JHN 16:28!12 +JHN 16:28!13 +JHN 16:28!14 +JHN 16:28!15 +JHN 16:28!16 +JHN 16:28!17 +JHN 16:28!18 +JHN 16:29!1 +JHN 16:29!2 +JHN 16:29!3 +JHN 16:29!4 +JHN 16:29!5 +JHN 16:29!6 +JHN 16:29!7 +JHN 16:29!8 +JHN 16:29!9 +JHN 16:29!10 +JHN 16:29!11 +JHN 16:29!12 +JHN 16:29!13 +JHN 16:30!1 +JHN 16:30!2 +JHN 16:30!3 +JHN 16:30!4 +JHN 16:30!5 +JHN 16:30!6 +JHN 16:30!7 +JHN 16:30!8 +JHN 16:30!9 +JHN 16:30!10 +JHN 16:30!11 +JHN 16:30!12 +JHN 16:30!13 +JHN 16:30!14 +JHN 16:30!15 +JHN 16:30!16 +JHN 16:30!17 +JHN 16:30!18 +JHN 16:30!19 +JHN 16:30!20 +JHN 16:31!1 +JHN 16:31!2 +JHN 16:31!3 +JHN 16:31!4 +JHN 16:31!5 +JHN 16:32!1 +JHN 16:32!2 +JHN 16:32!3 +JHN 16:32!4 +JHN 16:32!5 +JHN 16:32!6 +JHN 16:32!7 +JHN 16:32!8 +JHN 16:32!9 +JHN 16:32!10 +JHN 16:32!11 +JHN 16:32!12 +JHN 16:32!13 +JHN 16:32!14 +JHN 16:32!15 +JHN 16:32!16 +JHN 16:32!17 +JHN 16:32!18 +JHN 16:32!19 +JHN 16:32!20 +JHN 16:32!21 +JHN 16:32!22 +JHN 16:32!23 +JHN 16:32!24 +JHN 16:33!1 +JHN 16:33!2 +JHN 16:33!3 +JHN 16:33!4 +JHN 16:33!5 +JHN 16:33!6 +JHN 16:33!7 +JHN 16:33!8 +JHN 16:33!9 +JHN 16:33!10 +JHN 16:33!11 +JHN 16:33!12 +JHN 16:33!13 +JHN 16:33!14 +JHN 16:33!15 +JHN 16:33!16 +JHN 16:33!17 +JHN 16:33!18 +JHN 16:33!19 +JHN 17:1!1 +JHN 17:1!2 +JHN 17:1!3 +JHN 17:1!4 +JHN 17:1!5 +JHN 17:1!6 +JHN 17:1!7 +JHN 17:1!8 +JHN 17:1!9 +JHN 17:1!10 +JHN 17:1!11 +JHN 17:1!12 +JHN 17:1!13 +JHN 17:1!14 +JHN 17:1!15 +JHN 17:1!16 +JHN 17:1!17 +JHN 17:1!18 +JHN 17:1!19 +JHN 17:1!20 +JHN 17:1!21 +JHN 17:1!22 +JHN 17:1!23 +JHN 17:1!24 +JHN 17:1!25 +JHN 17:2!1 +JHN 17:2!2 +JHN 17:2!3 +JHN 17:2!4 +JHN 17:2!5 +JHN 17:2!6 +JHN 17:2!7 +JHN 17:2!8 +JHN 17:2!9 +JHN 17:2!10 +JHN 17:2!11 +JHN 17:2!12 +JHN 17:2!13 +JHN 17:2!14 +JHN 17:2!15 +JHN 17:3!2 +JHN 17:3!1 +JHN 17:3!3 +JHN 17:3!4 +JHN 17:3!5 +JHN 17:3!6 +JHN 17:3!7 +JHN 17:3!8 +JHN 17:3!9 +JHN 17:3!10 +JHN 17:3!11 +JHN 17:3!12 +JHN 17:3!13 +JHN 17:3!14 +JHN 17:3!15 +JHN 17:3!16 +JHN 17:3!17 +JHN 17:3!18 +JHN 17:4!1 +JHN 17:4!2 +JHN 17:4!3 +JHN 17:4!4 +JHN 17:4!5 +JHN 17:4!6 +JHN 17:4!9 +JHN 17:4!7 +JHN 17:4!8 +JHN 17:4!10 +JHN 17:4!11 +JHN 17:4!12 +JHN 17:4!13 +JHN 17:4!14 +JHN 17:5!1 +JHN 17:5!6 +JHN 17:5!2 +JHN 17:5!3 +JHN 17:5!4 +JHN 17:5!5 +JHN 17:5!7 +JHN 17:5!8 +JHN 17:5!9 +JHN 17:5!10 +JHN 17:5!11 +JHN 17:5!12 +JHN 17:5!13 +JHN 17:5!14 +JHN 17:5!15 +JHN 17:5!16 +JHN 17:5!17 +JHN 17:5!18 +JHN 17:5!19 +JHN 17:6!1 +JHN 17:6!2 +JHN 17:6!3 +JHN 17:6!4 +JHN 17:6!5 +JHN 17:6!6 +JHN 17:6!7 +JHN 17:6!8 +JHN 17:6!9 +JHN 17:6!10 +JHN 17:6!11 +JHN 17:6!12 +JHN 17:6!13 +JHN 17:6!14 +JHN 17:6!15 +JHN 17:6!16 +JHN 17:6!17 +JHN 17:6!18 +JHN 17:6!19 +JHN 17:6!20 +JHN 17:6!21 +JHN 17:6!22 +JHN 17:7!1 +JHN 17:7!2 +JHN 17:7!3 +JHN 17:7!4 +JHN 17:7!5 +JHN 17:7!6 +JHN 17:7!7 +JHN 17:7!8 +JHN 17:7!9 +JHN 17:7!10 +JHN 17:8!1 +JHN 17:8!2 +JHN 17:8!3 +JHN 17:8!4 +JHN 17:8!5 +JHN 17:8!6 +JHN 17:8!7 +JHN 17:8!8 +JHN 17:8!9 +JHN 17:8!10 +JHN 17:8!11 +JHN 17:8!12 +JHN 17:8!13 +JHN 17:8!14 +JHN 17:8!15 +JHN 17:8!16 +JHN 17:8!17 +JHN 17:8!18 +JHN 17:8!19 +JHN 17:8!20 +JHN 17:8!21 +JHN 17:8!22 +JHN 17:8!23 +JHN 17:8!24 +JHN 17:9!1 +JHN 17:9!2 +JHN 17:9!3 +JHN 17:9!4 +JHN 17:9!5 +JHN 17:9!6 +JHN 17:9!7 +JHN 17:9!8 +JHN 17:9!9 +JHN 17:9!10 +JHN 17:9!11 +JHN 17:9!12 +JHN 17:9!13 +JHN 17:9!14 +JHN 17:9!15 +JHN 17:9!16 +JHN 17:9!17 +JHN 17:10!1 +JHN 17:10!2 +JHN 17:10!3 +JHN 17:10!4 +JHN 17:10!5 +JHN 17:10!6 +JHN 17:10!7 +JHN 17:10!8 +JHN 17:10!9 +JHN 17:10!10 +JHN 17:10!11 +JHN 17:10!12 +JHN 17:10!13 +JHN 17:10!14 +JHN 17:11!1 +JHN 17:11!2 +JHN 17:11!3 +JHN 17:11!4 +JHN 17:11!5 +JHN 17:11!6 +JHN 17:11!7 +JHN 17:11!8 +JHN 17:11!9 +JHN 17:11!10 +JHN 17:11!11 +JHN 17:11!12 +JHN 17:11!13 +JHN 17:11!14 +JHN 17:11!15 +JHN 17:11!16 +JHN 17:11!17 +JHN 17:11!18 +JHN 17:11!19 +JHN 17:11!20 +JHN 17:11!21 +JHN 17:11!22 +JHN 17:11!23 +JHN 17:11!24 +JHN 17:11!25 +JHN 17:11!26 +JHN 17:11!27 +JHN 17:11!28 +JHN 17:11!29 +JHN 17:11!30 +JHN 17:11!31 +JHN 17:11!32 +JHN 17:12!1 +JHN 17:12!2 +JHN 17:12!3 +JHN 17:12!4 +JHN 17:12!5 +JHN 17:12!6 +JHN 17:12!7 +JHN 17:12!8 +JHN 17:12!9 +JHN 17:12!10 +JHN 17:12!11 +JHN 17:12!12 +JHN 17:12!13 +JHN 17:12!14 +JHN 17:12!15 +JHN 17:12!16 +JHN 17:12!17 +JHN 17:12!18 +JHN 17:12!19 +JHN 17:12!20 +JHN 17:12!21 +JHN 17:12!22 +JHN 17:12!23 +JHN 17:12!24 +JHN 17:12!25 +JHN 17:12!26 +JHN 17:12!27 +JHN 17:12!28 +JHN 17:12!29 +JHN 17:12!30 +JHN 17:12!31 +JHN 17:13!2 +JHN 17:13!1 +JHN 17:13!3 +JHN 17:13!4 +JHN 17:13!5 +JHN 17:13!6 +JHN 17:13!7 +JHN 17:13!8 +JHN 17:13!9 +JHN 17:13!10 +JHN 17:13!11 +JHN 17:13!12 +JHN 17:13!13 +JHN 17:13!14 +JHN 17:13!15 +JHN 17:13!16 +JHN 17:13!17 +JHN 17:13!18 +JHN 17:13!19 +JHN 17:13!20 +JHN 17:14!1 +JHN 17:14!2 +JHN 17:14!3 +JHN 17:14!4 +JHN 17:14!5 +JHN 17:14!6 +JHN 17:14!7 +JHN 17:14!8 +JHN 17:14!9 +JHN 17:14!10 +JHN 17:14!11 +JHN 17:14!12 +JHN 17:14!13 +JHN 17:14!14 +JHN 17:14!15 +JHN 17:14!16 +JHN 17:14!17 +JHN 17:14!18 +JHN 17:14!19 +JHN 17:14!20 +JHN 17:14!21 +JHN 17:14!22 +JHN 17:14!23 +JHN 17:14!24 +JHN 17:15!1 +JHN 17:15!2 +JHN 17:15!3 +JHN 17:15!4 +JHN 17:15!5 +JHN 17:15!6 +JHN 17:15!7 +JHN 17:15!8 +JHN 17:15!9 +JHN 17:15!10 +JHN 17:15!11 +JHN 17:15!12 +JHN 17:15!13 +JHN 17:15!14 +JHN 17:15!15 +JHN 17:16!1 +JHN 17:16!2 +JHN 17:16!3 +JHN 17:16!4 +JHN 17:16!5 +JHN 17:16!6 +JHN 17:16!7 +JHN 17:16!8 +JHN 17:16!9 +JHN 17:16!10 +JHN 17:16!11 +JHN 17:16!12 +JHN 17:17!1 +JHN 17:17!2 +JHN 17:17!3 +JHN 17:17!4 +JHN 17:17!5 +JHN 17:17!6 +JHN 17:17!7 +JHN 17:17!8 +JHN 17:17!9 +JHN 17:17!10 +JHN 17:17!11 +JHN 17:18!1 +JHN 17:18!2 +JHN 17:18!3 +JHN 17:18!4 +JHN 17:18!5 +JHN 17:18!6 +JHN 17:18!7 +JHN 17:18!8 +JHN 17:18!9 +JHN 17:18!10 +JHN 17:18!11 +JHN 17:18!12 +JHN 17:19!1 +JHN 17:19!2 +JHN 17:19!3 +JHN 17:19!4 +JHN 17:19!5 +JHN 17:19!6 +JHN 17:19!7 +JHN 17:19!8 +JHN 17:19!11 +JHN 17:19!9 +JHN 17:19!10 +JHN 17:19!12 +JHN 17:19!13 +JHN 17:20!4 +JHN 17:20!1 +JHN 17:20!2 +JHN 17:20!3 +JHN 17:20!5 +JHN 17:20!6 +JHN 17:20!7 +JHN 17:20!8 +JHN 17:20!9 +JHN 17:20!10 +JHN 17:20!11 +JHN 17:20!12 +JHN 17:20!13 +JHN 17:20!14 +JHN 17:20!15 +JHN 17:20!16 +JHN 17:20!17 +JHN 17:21!1 +JHN 17:21!2 +JHN 17:21!3 +JHN 17:21!4 +JHN 17:21!5 +JHN 17:21!7 +JHN 17:21!6 +JHN 17:21!8 +JHN 17:21!9 +JHN 17:21!10 +JHN 17:21!11 +JHN 17:21!12 +JHN 17:21!13 +JHN 17:21!14 +JHN 17:21!15 +JHN 17:21!16 +JHN 17:21!17 +JHN 17:21!18 +JHN 17:21!19 +JHN 17:21!20 +JHN 17:21!21 +JHN 17:21!22 +JHN 17:21!23 +JHN 17:21!24 +JHN 17:21!25 +JHN 17:21!26 +JHN 17:22!1 +JHN 17:22!2 +JHN 17:22!3 +JHN 17:22!4 +JHN 17:22!5 +JHN 17:22!6 +JHN 17:22!7 +JHN 17:22!8 +JHN 17:22!9 +JHN 17:22!10 +JHN 17:22!11 +JHN 17:22!12 +JHN 17:22!13 +JHN 17:22!14 +JHN 17:23!1 +JHN 17:23!2 +JHN 17:23!3 +JHN 17:23!4 +JHN 17:23!5 +JHN 17:23!6 +JHN 17:23!7 +JHN 17:23!8 +JHN 17:23!9 +JHN 17:23!10 +JHN 17:23!11 +JHN 17:23!12 +JHN 17:23!13 +JHN 17:23!14 +JHN 17:23!15 +JHN 17:23!16 +JHN 17:23!17 +JHN 17:23!18 +JHN 17:23!19 +JHN 17:23!20 +JHN 17:23!21 +JHN 17:23!22 +JHN 17:23!23 +JHN 17:23!24 +JHN 17:23!25 +JHN 17:23!26 +JHN 17:24!1 +JHN 17:24!2 +JHN 17:24!3 +JHN 17:24!4 +JHN 17:24!5 +JHN 17:24!6 +JHN 17:24!7 +JHN 17:24!8 +JHN 17:24!9 +JHN 17:24!10 +JHN 17:24!11 +JHN 17:24!12 +JHN 17:24!13 +JHN 17:24!14 +JHN 17:24!15 +JHN 17:24!16 +JHN 17:24!17 +JHN 17:24!18 +JHN 17:24!19 +JHN 17:24!20 +JHN 17:24!21 +JHN 17:24!22 +JHN 17:24!23 +JHN 17:24!24 +JHN 17:24!25 +JHN 17:24!26 +JHN 17:24!27 +JHN 17:24!28 +JHN 17:25!1 +JHN 17:25!2 +JHN 17:25!3 +JHN 17:25!4 +JHN 17:25!5 +JHN 17:25!6 +JHN 17:25!7 +JHN 17:25!8 +JHN 17:25!10 +JHN 17:25!9 +JHN 17:25!11 +JHN 17:25!12 +JHN 17:25!13 +JHN 17:25!14 +JHN 17:25!15 +JHN 17:25!16 +JHN 17:25!17 +JHN 17:25!18 +JHN 17:25!19 +JHN 17:26!1 +JHN 17:26!2 +JHN 17:26!3 +JHN 17:26!4 +JHN 17:26!5 +JHN 17:26!6 +JHN 17:26!7 +JHN 17:26!8 +JHN 17:26!9 +JHN 17:26!10 +JHN 17:26!11 +JHN 17:26!12 +JHN 17:26!13 +JHN 17:26!14 +JHN 17:26!15 +JHN 17:26!16 +JHN 17:26!17 +JHN 17:26!18 +JHN 17:26!19 +JHN 17:26!20 +JHN 18:1!1 +JHN 18:1!2 +JHN 18:1!3 +JHN 18:1!4 +JHN 18:1!5 +JHN 18:1!6 +JHN 18:1!7 +JHN 18:1!8 +JHN 18:1!9 +JHN 18:1!10 +JHN 18:1!11 +JHN 18:1!12 +JHN 18:1!13 +JHN 18:1!14 +JHN 18:1!15 +JHN 18:1!16 +JHN 18:1!17 +JHN 18:1!18 +JHN 18:1!19 +JHN 18:1!20 +JHN 18:1!21 +JHN 18:1!22 +JHN 18:1!23 +JHN 18:1!24 +JHN 18:2!2 +JHN 18:2!1 +JHN 18:2!3 +JHN 18:2!4 +JHN 18:2!5 +JHN 18:2!6 +JHN 18:2!7 +JHN 18:2!8 +JHN 18:2!9 +JHN 18:2!10 +JHN 18:2!11 +JHN 18:2!12 +JHN 18:2!13 +JHN 18:2!14 +JHN 18:2!15 +JHN 18:2!16 +JHN 18:2!17 +JHN 18:2!18 +JHN 18:3!2 +JHN 18:3!1 +JHN 18:3!3 +JHN 18:3!4 +JHN 18:3!5 +JHN 18:3!6 +JHN 18:3!7 +JHN 18:3!8 +JHN 18:3!9 +JHN 18:3!10 +JHN 18:3!11 +JHN 18:3!12 +JHN 18:3!13 +JHN 18:3!14 +JHN 18:3!15 +JHN 18:3!16 +JHN 18:3!17 +JHN 18:3!18 +JHN 18:3!19 +JHN 18:3!20 +JHN 18:3!21 +JHN 18:3!22 +JHN 18:3!23 +JHN 18:4!2 +JHN 18:4!1 +JHN 18:4!3 +JHN 18:4!4 +JHN 18:4!5 +JHN 18:4!6 +JHN 18:4!7 +JHN 18:4!8 +JHN 18:4!9 +JHN 18:4!10 +JHN 18:4!11 +JHN 18:4!12 +JHN 18:4!13 +JHN 18:4!14 +JHN 18:5!1 +JHN 18:5!2 +JHN 18:5!3 +JHN 18:5!4 +JHN 18:5!5 +JHN 18:5!6 +JHN 18:5!7 +JHN 18:5!8 +JHN 18:5!9 +JHN 18:5!11 +JHN 18:5!10 +JHN 18:5!12 +JHN 18:5!13 +JHN 18:5!14 +JHN 18:5!15 +JHN 18:5!16 +JHN 18:5!17 +JHN 18:5!18 +JHN 18:6!2 +JHN 18:6!1 +JHN 18:6!3 +JHN 18:6!4 +JHN 18:6!5 +JHN 18:6!6 +JHN 18:6!7 +JHN 18:6!8 +JHN 18:6!9 +JHN 18:6!10 +JHN 18:6!11 +JHN 18:6!12 +JHN 18:6!13 +JHN 18:7!2 +JHN 18:7!1 +JHN 18:7!3 +JHN 18:7!4 +JHN 18:7!5 +JHN 18:7!6 +JHN 18:7!8 +JHN 18:7!7 +JHN 18:7!9 +JHN 18:7!10 +JHN 18:7!11 +JHN 18:7!12 +JHN 18:8!1 +JHN 18:8!2 +JHN 18:8!3 +JHN 18:8!4 +JHN 18:8!5 +JHN 18:8!6 +JHN 18:8!7 +JHN 18:8!9 +JHN 18:8!8 +JHN 18:8!10 +JHN 18:8!11 +JHN 18:8!12 +JHN 18:8!13 +JHN 18:8!14 +JHN 18:9!1 +JHN 18:9!2 +JHN 18:9!3 +JHN 18:9!4 +JHN 18:9!5 +JHN 18:9!6 +JHN 18:9!7 +JHN 18:9!8 +JHN 18:9!9 +JHN 18:9!10 +JHN 18:9!11 +JHN 18:9!12 +JHN 18:9!13 +JHN 18:9!14 +JHN 18:9!15 +JHN 18:10!2 +JHN 18:10!1 +JHN 18:10!3 +JHN 18:10!4 +JHN 18:10!5 +JHN 18:10!6 +JHN 18:10!7 +JHN 18:10!8 +JHN 18:10!9 +JHN 18:10!10 +JHN 18:10!11 +JHN 18:10!12 +JHN 18:10!13 +JHN 18:10!14 +JHN 18:10!15 +JHN 18:10!16 +JHN 18:10!17 +JHN 18:10!18 +JHN 18:10!19 +JHN 18:10!20 +JHN 18:10!22 +JHN 18:10!21 +JHN 18:10!23 +JHN 18:10!24 +JHN 18:10!25 +JHN 18:10!26 +JHN 18:11!2 +JHN 18:11!1 +JHN 18:11!3 +JHN 18:11!4 +JHN 18:11!5 +JHN 18:11!6 +JHN 18:11!7 +JHN 18:11!8 +JHN 18:11!9 +JHN 18:11!10 +JHN 18:11!11 +JHN 18:11!12 +JHN 18:11!13 +JHN 18:11!14 +JHN 18:11!15 +JHN 18:11!16 +JHN 18:11!17 +JHN 18:11!18 +JHN 18:11!19 +JHN 18:11!20 +JHN 18:11!21 +JHN 18:11!22 +JHN 18:11!23 +JHN 18:12!2 +JHN 18:12!1 +JHN 18:12!3 +JHN 18:12!4 +JHN 18:12!5 +JHN 18:12!6 +JHN 18:12!7 +JHN 18:12!8 +JHN 18:12!9 +JHN 18:12!10 +JHN 18:12!11 +JHN 18:12!12 +JHN 18:12!13 +JHN 18:12!14 +JHN 18:12!15 +JHN 18:12!16 +JHN 18:12!17 +JHN 18:13!1 +JHN 18:13!2 +JHN 18:13!3 +JHN 18:13!4 +JHN 18:13!5 +JHN 18:13!7 +JHN 18:13!6 +JHN 18:13!8 +JHN 18:13!9 +JHN 18:13!10 +JHN 18:13!11 +JHN 18:13!12 +JHN 18:13!13 +JHN 18:13!14 +JHN 18:13!15 +JHN 18:13!16 +JHN 18:14!2 +JHN 18:14!1 +JHN 18:14!3 +JHN 18:14!4 +JHN 18:14!5 +JHN 18:14!6 +JHN 18:14!7 +JHN 18:14!8 +JHN 18:14!9 +JHN 18:14!10 +JHN 18:14!11 +JHN 18:14!12 +JHN 18:14!13 +JHN 18:14!14 +JHN 18:14!15 +JHN 18:15!2 +JHN 18:15!1 +JHN 18:15!3 +JHN 18:15!4 +JHN 18:15!5 +JHN 18:15!6 +JHN 18:15!7 +JHN 18:15!8 +JHN 18:15!9 +JHN 18:15!11 +JHN 18:15!10 +JHN 18:15!12 +JHN 18:15!13 +JHN 18:15!14 +JHN 18:15!15 +JHN 18:15!16 +JHN 18:15!17 +JHN 18:15!18 +JHN 18:15!19 +JHN 18:15!20 +JHN 18:15!21 +JHN 18:15!22 +JHN 18:15!23 +JHN 18:15!24 +JHN 18:15!25 +JHN 18:15!26 +JHN 18:16!2 +JHN 18:16!1 +JHN 18:16!3 +JHN 18:16!4 +JHN 18:16!5 +JHN 18:16!6 +JHN 18:16!7 +JHN 18:16!8 +JHN 18:16!10 +JHN 18:16!9 +JHN 18:16!11 +JHN 18:16!12 +JHN 18:16!13 +JHN 18:16!14 +JHN 18:16!15 +JHN 18:16!16 +JHN 18:16!17 +JHN 18:16!18 +JHN 18:16!19 +JHN 18:16!20 +JHN 18:16!21 +JHN 18:16!22 +JHN 18:16!23 +JHN 18:16!24 +JHN 18:16!25 +JHN 18:16!26 +JHN 18:17!2 +JHN 18:17!1 +JHN 18:17!3 +JHN 18:17!4 +JHN 18:17!5 +JHN 18:17!6 +JHN 18:17!7 +JHN 18:17!8 +JHN 18:17!9 +JHN 18:17!10 +JHN 18:17!11 +JHN 18:17!12 +JHN 18:17!13 +JHN 18:17!14 +JHN 18:17!16 +JHN 18:17!17 +JHN 18:17!18 +JHN 18:17!15 +JHN 18:17!19 +JHN 18:17!20 +JHN 18:17!21 +JHN 18:17!22 +JHN 18:18!2 +JHN 18:18!1 +JHN 18:18!3 +JHN 18:18!4 +JHN 18:18!5 +JHN 18:18!6 +JHN 18:18!7 +JHN 18:18!8 +JHN 18:18!9 +JHN 18:18!10 +JHN 18:18!11 +JHN 18:18!12 +JHN 18:18!13 +JHN 18:18!14 +JHN 18:18!16 +JHN 18:18!17 +JHN 18:18!18 +JHN 18:18!19 +JHN 18:18!20 +JHN 18:18!21 +JHN 18:18!15 +JHN 18:18!22 +JHN 18:18!23 +JHN 18:18!24 +JHN 18:19!2 +JHN 18:19!1 +JHN 18:19!3 +JHN 18:19!4 +JHN 18:19!5 +JHN 18:19!6 +JHN 18:19!7 +JHN 18:19!8 +JHN 18:19!9 +JHN 18:19!10 +JHN 18:19!11 +JHN 18:19!12 +JHN 18:19!13 +JHN 18:19!14 +JHN 18:19!15 +JHN 18:20!1 +JHN 18:20!2 +JHN 18:20!3 +JHN 18:20!4 +JHN 18:20!5 +JHN 18:20!6 +JHN 18:20!7 +JHN 18:20!8 +JHN 18:20!9 +JHN 18:20!10 +JHN 18:20!11 +JHN 18:20!12 +JHN 18:20!13 +JHN 18:20!14 +JHN 18:20!15 +JHN 18:20!16 +JHN 18:20!17 +JHN 18:20!18 +JHN 18:20!19 +JHN 18:20!20 +JHN 18:20!21 +JHN 18:20!22 +JHN 18:20!23 +JHN 18:20!24 +JHN 18:20!25 +JHN 18:20!26 +JHN 18:20!27 +JHN 18:21!1 +JHN 18:21!2 +JHN 18:21!3 +JHN 18:21!4 +JHN 18:21!5 +JHN 18:21!6 +JHN 18:21!7 +JHN 18:21!8 +JHN 18:21!9 +JHN 18:21!10 +JHN 18:21!11 +JHN 18:21!12 +JHN 18:21!13 +JHN 18:21!14 +JHN 18:21!15 +JHN 18:22!2 +JHN 18:22!1 +JHN 18:22!3 +JHN 18:22!4 +JHN 18:22!5 +JHN 18:22!6 +JHN 18:22!7 +JHN 18:22!8 +JHN 18:22!9 +JHN 18:22!10 +JHN 18:22!11 +JHN 18:22!12 +JHN 18:22!13 +JHN 18:22!14 +JHN 18:22!15 +JHN 18:22!16 +JHN 18:22!17 +JHN 18:23!1 +JHN 18:23!2 +JHN 18:23!3 +JHN 18:23!4 +JHN 18:23!5 +JHN 18:23!6 +JHN 18:23!7 +JHN 18:23!8 +JHN 18:23!9 +JHN 18:23!10 +JHN 18:23!12 +JHN 18:23!11 +JHN 18:23!13 +JHN 18:23!14 +JHN 18:23!15 +JHN 18:23!16 +JHN 18:24!2 +JHN 18:24!1 +JHN 18:24!3 +JHN 18:24!4 +JHN 18:24!5 +JHN 18:24!6 +JHN 18:24!7 +JHN 18:24!8 +JHN 18:24!9 +JHN 18:24!10 +JHN 18:25!2 +JHN 18:25!3 +JHN 18:25!4 +JHN 18:25!1 +JHN 18:25!5 +JHN 18:25!6 +JHN 18:25!7 +JHN 18:25!9 +JHN 18:25!8 +JHN 18:25!10 +JHN 18:25!11 +JHN 18:25!12 +JHN 18:25!13 +JHN 18:25!14 +JHN 18:25!15 +JHN 18:25!16 +JHN 18:25!17 +JHN 18:25!18 +JHN 18:25!19 +JHN 18:25!20 +JHN 18:25!21 +JHN 18:25!22 +JHN 18:25!23 +JHN 18:25!24 +JHN 18:26!1 +JHN 18:26!2 +JHN 18:26!3 +JHN 18:26!4 +JHN 18:26!5 +JHN 18:26!6 +JHN 18:26!7 +JHN 18:26!9 +JHN 18:26!8 +JHN 18:26!10 +JHN 18:26!11 +JHN 18:26!12 +JHN 18:26!13 +JHN 18:26!14 +JHN 18:26!15 +JHN 18:26!16 +JHN 18:26!18 +JHN 18:26!17 +JHN 18:26!19 +JHN 18:26!20 +JHN 18:26!21 +JHN 18:26!22 +JHN 18:26!23 +JHN 18:27!2 +JHN 18:27!1 +JHN 18:27!3 +JHN 18:27!4 +JHN 18:27!5 +JHN 18:27!6 +JHN 18:27!7 +JHN 18:27!8 +JHN 18:28!2 +JHN 18:28!1 +JHN 18:28!3 +JHN 18:28!4 +JHN 18:28!5 +JHN 18:28!6 +JHN 18:28!7 +JHN 18:28!8 +JHN 18:28!9 +JHN 18:28!10 +JHN 18:28!12 +JHN 18:28!11 +JHN 18:28!13 +JHN 18:28!14 +JHN 18:28!15 +JHN 18:28!16 +JHN 18:28!17 +JHN 18:28!18 +JHN 18:28!19 +JHN 18:28!20 +JHN 18:28!21 +JHN 18:28!22 +JHN 18:28!23 +JHN 18:28!24 +JHN 18:28!25 +JHN 18:28!26 +JHN 18:28!27 +JHN 18:29!2 +JHN 18:29!1 +JHN 18:29!3 +JHN 18:29!4 +JHN 18:29!5 +JHN 18:29!6 +JHN 18:29!7 +JHN 18:29!8 +JHN 18:29!9 +JHN 18:29!10 +JHN 18:29!11 +JHN 18:29!13 +JHN 18:29!14 +JHN 18:29!15 +JHN 18:29!12 +JHN 18:30!1 +JHN 18:30!2 +JHN 18:30!3 +JHN 18:30!4 +JHN 18:30!5 +JHN 18:30!6 +JHN 18:30!7 +JHN 18:30!10 +JHN 18:30!8 +JHN 18:30!9 +JHN 18:30!12 +JHN 18:30!11 +JHN 18:30!13 +JHN 18:30!14 +JHN 18:30!15 +JHN 18:31!2 +JHN 18:31!1 +JHN 18:31!3 +JHN 18:31!4 +JHN 18:31!5 +JHN 18:31!6 +JHN 18:31!7 +JHN 18:31!8 +JHN 18:31!9 +JHN 18:31!10 +JHN 18:31!11 +JHN 18:31!12 +JHN 18:31!13 +JHN 18:31!14 +JHN 18:31!15 +JHN 18:31!16 +JHN 18:31!17 +JHN 18:31!18 +JHN 18:31!19 +JHN 18:31!20 +JHN 18:31!21 +JHN 18:31!22 +JHN 18:31!23 +JHN 18:31!24 +JHN 18:32!1 +JHN 18:32!2 +JHN 18:32!3 +JHN 18:32!4 +JHN 18:32!5 +JHN 18:32!6 +JHN 18:32!7 +JHN 18:32!8 +JHN 18:32!9 +JHN 18:32!10 +JHN 18:32!11 +JHN 18:32!12 +JHN 18:32!13 +JHN 18:33!2 +JHN 18:33!1 +JHN 18:33!3 +JHN 18:33!4 +JHN 18:33!5 +JHN 18:33!6 +JHN 18:33!7 +JHN 18:33!8 +JHN 18:33!9 +JHN 18:33!10 +JHN 18:33!11 +JHN 18:33!12 +JHN 18:33!13 +JHN 18:33!14 +JHN 18:33!15 +JHN 18:33!16 +JHN 18:33!17 +JHN 18:33!18 +JHN 18:33!19 +JHN 18:33!20 +JHN 18:33!21 +JHN 18:34!1 +JHN 18:34!2 +JHN 18:34!3 +JHN 18:34!4 +JHN 18:34!5 +JHN 18:34!6 +JHN 18:34!7 +JHN 18:34!8 +JHN 18:34!9 +JHN 18:34!10 +JHN 18:34!11 +JHN 18:34!12 +JHN 18:34!13 +JHN 18:35!1 +JHN 18:35!2 +JHN 18:35!3 +JHN 18:35!4 +JHN 18:35!5 +JHN 18:35!6 +JHN 18:35!7 +JHN 18:35!8 +JHN 18:35!9 +JHN 18:35!10 +JHN 18:35!11 +JHN 18:35!12 +JHN 18:35!13 +JHN 18:35!14 +JHN 18:35!15 +JHN 18:35!16 +JHN 18:35!17 +JHN 18:35!18 +JHN 18:35!19 +JHN 18:36!1 +JHN 18:36!2 +JHN 18:36!3 +JHN 18:36!4 +JHN 18:36!5 +JHN 18:36!6 +JHN 18:36!7 +JHN 18:36!8 +JHN 18:36!9 +JHN 18:36!10 +JHN 18:36!11 +JHN 18:36!12 +JHN 18:36!13 +JHN 18:36!14 +JHN 18:36!15 +JHN 18:36!16 +JHN 18:36!17 +JHN 18:36!18 +JHN 18:36!19 +JHN 18:36!20 +JHN 18:36!21 +JHN 18:36!22 +JHN 18:36!25 +JHN 18:36!23 +JHN 18:36!24 +JHN 18:36!26 +JHN 18:36!27 +JHN 18:36!28 +JHN 18:36!29 +JHN 18:36!30 +JHN 18:36!31 +JHN 18:36!32 +JHN 18:36!33 +JHN 18:36!35 +JHN 18:36!34 +JHN 18:36!36 +JHN 18:36!37 +JHN 18:36!38 +JHN 18:36!39 +JHN 18:36!40 +JHN 18:36!41 +JHN 18:36!42 +JHN 18:37!2 +JHN 18:37!1 +JHN 18:37!3 +JHN 18:37!4 +JHN 18:37!5 +JHN 18:37!6 +JHN 18:37!7 +JHN 18:37!8 +JHN 18:37!9 +JHN 18:37!10 +JHN 18:37!11 +JHN 18:37!12 +JHN 18:37!13 +JHN 18:37!14 +JHN 18:37!15 +JHN 18:37!16 +JHN 18:37!17 +JHN 18:37!18 +JHN 18:37!19 +JHN 18:37!20 +JHN 18:37!21 +JHN 18:37!22 +JHN 18:37!23 +JHN 18:37!24 +JHN 18:37!25 +JHN 18:37!26 +JHN 18:37!27 +JHN 18:37!28 +JHN 18:37!29 +JHN 18:37!30 +JHN 18:37!31 +JHN 18:37!32 +JHN 18:37!33 +JHN 18:37!34 +JHN 18:37!35 +JHN 18:37!36 +JHN 18:37!37 +JHN 18:37!38 +JHN 18:37!39 +JHN 18:37!40 +JHN 18:37!41 +JHN 18:37!42 +JHN 18:38!1 +JHN 18:38!2 +JHN 18:38!3 +JHN 18:38!4 +JHN 18:38!5 +JHN 18:38!6 +JHN 18:38!7 +JHN 18:38!8 +JHN 18:38!9 +JHN 18:38!10 +JHN 18:38!11 +JHN 18:38!12 +JHN 18:38!13 +JHN 18:38!14 +JHN 18:38!15 +JHN 18:38!16 +JHN 18:38!17 +JHN 18:38!18 +JHN 18:38!19 +JHN 18:38!20 +JHN 18:38!21 +JHN 18:38!22 +JHN 18:38!23 +JHN 18:38!24 +JHN 18:39!2 +JHN 18:39!1 +JHN 18:39!3 +JHN 18:39!4 +JHN 18:39!5 +JHN 18:39!6 +JHN 18:39!7 +JHN 18:39!8 +JHN 18:39!9 +JHN 18:39!10 +JHN 18:39!11 +JHN 18:39!13 +JHN 18:39!12 +JHN 18:39!14 +JHN 18:39!15 +JHN 18:39!16 +JHN 18:39!17 +JHN 18:39!18 +JHN 18:39!19 +JHN 18:40!2 +JHN 18:40!1 +JHN 18:40!3 +JHN 18:40!4 +JHN 18:40!5 +JHN 18:40!6 +JHN 18:40!7 +JHN 18:40!8 +JHN 18:40!9 +JHN 18:40!11 +JHN 18:40!10 +JHN 18:40!12 +JHN 18:40!13 +JHN 18:40!14 +JHN 19:1!2 +JHN 19:1!1 +JHN 19:1!3 +JHN 19:1!4 +JHN 19:1!5 +JHN 19:1!6 +JHN 19:1!7 +JHN 19:1!8 +JHN 19:1!9 +JHN 19:2!1 +JHN 19:2!2 +JHN 19:2!3 +JHN 19:2!4 +JHN 19:2!5 +JHN 19:2!6 +JHN 19:2!7 +JHN 19:2!8 +JHN 19:2!9 +JHN 19:2!10 +JHN 19:2!11 +JHN 19:2!12 +JHN 19:2!13 +JHN 19:2!14 +JHN 19:2!15 +JHN 19:2!16 +JHN 19:3!1 +JHN 19:3!2 +JHN 19:3!3 +JHN 19:3!4 +JHN 19:3!5 +JHN 19:3!6 +JHN 19:3!7 +JHN 19:3!8 +JHN 19:3!9 +JHN 19:3!10 +JHN 19:3!11 +JHN 19:3!12 +JHN 19:3!13 +JHN 19:3!14 +JHN 19:3!15 +JHN 19:4!1 +JHN 19:4!2 +JHN 19:4!3 +JHN 19:4!4 +JHN 19:4!5 +JHN 19:4!6 +JHN 19:4!7 +JHN 19:4!8 +JHN 19:4!9 +JHN 19:4!10 +JHN 19:4!11 +JHN 19:4!12 +JHN 19:4!13 +JHN 19:4!14 +JHN 19:4!15 +JHN 19:4!16 +JHN 19:4!17 +JHN 19:4!18 +JHN 19:4!19 +JHN 19:4!20 +JHN 19:4!21 +JHN 19:4!22 +JHN 19:5!2 +JHN 19:5!1 +JHN 19:5!3 +JHN 19:5!4 +JHN 19:5!5 +JHN 19:5!6 +JHN 19:5!7 +JHN 19:5!8 +JHN 19:5!9 +JHN 19:5!10 +JHN 19:5!11 +JHN 19:5!12 +JHN 19:5!13 +JHN 19:5!14 +JHN 19:5!15 +JHN 19:5!16 +JHN 19:5!17 +JHN 19:5!18 +JHN 19:5!19 +JHN 19:6!2 +JHN 19:6!1 +JHN 19:6!3 +JHN 19:6!4 +JHN 19:6!5 +JHN 19:6!6 +JHN 19:6!7 +JHN 19:6!8 +JHN 19:6!9 +JHN 19:6!10 +JHN 19:6!11 +JHN 19:6!12 +JHN 19:6!13 +JHN 19:6!14 +JHN 19:6!15 +JHN 19:6!16 +JHN 19:6!17 +JHN 19:6!18 +JHN 19:6!19 +JHN 19:6!20 +JHN 19:6!21 +JHN 19:6!22 +JHN 19:6!24 +JHN 19:6!23 +JHN 19:6!25 +JHN 19:6!26 +JHN 19:6!27 +JHN 19:6!28 +JHN 19:6!29 +JHN 19:7!1 +JHN 19:7!2 +JHN 19:7!3 +JHN 19:7!4 +JHN 19:7!5 +JHN 19:7!6 +JHN 19:7!7 +JHN 19:7!8 +JHN 19:7!9 +JHN 19:7!10 +JHN 19:7!11 +JHN 19:7!12 +JHN 19:7!13 +JHN 19:7!14 +JHN 19:7!15 +JHN 19:7!16 +JHN 19:7!17 +JHN 19:7!18 +JHN 19:8!2 +JHN 19:8!1 +JHN 19:8!3 +JHN 19:8!4 +JHN 19:8!5 +JHN 19:8!6 +JHN 19:8!7 +JHN 19:8!8 +JHN 19:8!9 +JHN 19:8!10 +JHN 19:9!1 +JHN 19:9!2 +JHN 19:9!3 +JHN 19:9!4 +JHN 19:9!5 +JHN 19:9!6 +JHN 19:9!7 +JHN 19:9!8 +JHN 19:9!9 +JHN 19:9!10 +JHN 19:9!11 +JHN 19:9!12 +JHN 19:9!13 +JHN 19:9!15 +JHN 19:9!14 +JHN 19:9!16 +JHN 19:9!17 +JHN 19:9!18 +JHN 19:9!19 +JHN 19:9!20 +JHN 19:10!2 +JHN 19:10!1 +JHN 19:10!3 +JHN 19:10!4 +JHN 19:10!5 +JHN 19:10!7 +JHN 19:10!6 +JHN 19:10!8 +JHN 19:10!9 +JHN 19:10!10 +JHN 19:10!11 +JHN 19:10!12 +JHN 19:10!13 +JHN 19:10!14 +JHN 19:10!15 +JHN 19:10!16 +JHN 19:10!17 +JHN 19:10!18 +JHN 19:10!19 +JHN 19:10!20 +JHN 19:11!1 +JHN 19:11!2 +JHN 19:11!3 +JHN 19:11!4 +JHN 19:11!5 +JHN 19:11!8 +JHN 19:11!6 +JHN 19:11!7 +JHN 19:11!9 +JHN 19:11!10 +JHN 19:11!11 +JHN 19:11!12 +JHN 19:11!13 +JHN 19:11!14 +JHN 19:11!15 +JHN 19:11!16 +JHN 19:11!17 +JHN 19:11!18 +JHN 19:11!19 +JHN 19:11!20 +JHN 19:11!21 +JHN 19:11!22 +JHN 19:11!23 +JHN 19:12!1 +JHN 19:12!2 +JHN 19:12!3 +JHN 19:12!4 +JHN 19:12!5 +JHN 19:12!6 +JHN 19:12!7 +JHN 19:12!9 +JHN 19:12!8 +JHN 19:12!10 +JHN 19:12!11 +JHN 19:12!12 +JHN 19:12!13 +JHN 19:12!14 +JHN 19:12!15 +JHN 19:12!16 +JHN 19:12!17 +JHN 19:12!18 +JHN 19:12!19 +JHN 19:12!20 +JHN 19:12!21 +JHN 19:12!22 +JHN 19:12!23 +JHN 19:12!24 +JHN 19:12!25 +JHN 19:12!26 +JHN 19:12!27 +JHN 19:12!28 +JHN 19:13!2 +JHN 19:13!1 +JHN 19:13!3 +JHN 19:13!4 +JHN 19:13!5 +JHN 19:13!6 +JHN 19:13!7 +JHN 19:13!8 +JHN 19:13!9 +JHN 19:13!10 +JHN 19:13!11 +JHN 19:13!12 +JHN 19:13!13 +JHN 19:13!14 +JHN 19:13!15 +JHN 19:13!16 +JHN 19:13!17 +JHN 19:13!18 +JHN 19:13!19 +JHN 19:13!21 +JHN 19:13!20 +JHN 19:13!22 +JHN 19:14!2 +JHN 19:14!1 +JHN 19:14!3 +JHN 19:14!4 +JHN 19:14!5 +JHN 19:14!6 +JHN 19:14!7 +JHN 19:14!8 +JHN 19:14!9 +JHN 19:14!10 +JHN 19:14!11 +JHN 19:14!12 +JHN 19:14!13 +JHN 19:14!14 +JHN 19:14!15 +JHN 19:14!16 +JHN 19:14!17 +JHN 19:15!2 +JHN 19:15!1 +JHN 19:15!3 +JHN 19:15!4 +JHN 19:15!5 +JHN 19:15!6 +JHN 19:15!7 +JHN 19:15!8 +JHN 19:15!9 +JHN 19:15!10 +JHN 19:15!11 +JHN 19:15!12 +JHN 19:15!13 +JHN 19:15!14 +JHN 19:15!15 +JHN 19:15!16 +JHN 19:15!17 +JHN 19:15!18 +JHN 19:15!19 +JHN 19:15!20 +JHN 19:15!21 +JHN 19:15!22 +JHN 19:15!23 +JHN 19:15!24 +JHN 19:16!2 +JHN 19:16!1 +JHN 19:16!3 +JHN 19:16!4 +JHN 19:16!5 +JHN 19:16!6 +JHN 19:16!7 +JHN 19:16!9 +JHN 19:16!8 +JHN 19:16!10 +JHN 19:16!11 +JHN 19:17!1 +JHN 19:17!2 +JHN 19:17!3 +JHN 19:17!4 +JHN 19:17!5 +JHN 19:17!6 +JHN 19:17!7 +JHN 19:17!8 +JHN 19:17!9 +JHN 19:17!10 +JHN 19:17!11 +JHN 19:17!12 +JHN 19:17!13 +JHN 19:17!14 +JHN 19:17!15 +JHN 19:18!1 +JHN 19:18!2 +JHN 19:18!3 +JHN 19:18!4 +JHN 19:18!5 +JHN 19:18!6 +JHN 19:18!7 +JHN 19:18!8 +JHN 19:18!9 +JHN 19:18!10 +JHN 19:18!11 +JHN 19:18!13 +JHN 19:18!12 +JHN 19:18!14 +JHN 19:18!15 +JHN 19:19!2 +JHN 19:19!1 +JHN 19:19!3 +JHN 19:19!4 +JHN 19:19!5 +JHN 19:19!6 +JHN 19:19!7 +JHN 19:19!8 +JHN 19:19!9 +JHN 19:19!10 +JHN 19:19!11 +JHN 19:19!13 +JHN 19:19!12 +JHN 19:19!14 +JHN 19:19!15 +JHN 19:19!16 +JHN 19:19!17 +JHN 19:19!18 +JHN 19:19!19 +JHN 19:19!20 +JHN 19:19!21 +JHN 19:20!2 +JHN 19:20!1 +JHN 19:20!3 +JHN 19:20!4 +JHN 19:20!6 +JHN 19:20!5 +JHN 19:20!7 +JHN 19:20!8 +JHN 19:20!9 +JHN 19:20!10 +JHN 19:20!14 +JHN 19:20!15 +JHN 19:20!11 +JHN 19:20!12 +JHN 19:20!13 +JHN 19:20!16 +JHN 19:20!17 +JHN 19:20!18 +JHN 19:20!19 +JHN 19:20!20 +JHN 19:20!21 +JHN 19:20!22 +JHN 19:20!23 +JHN 19:20!24 +JHN 19:20!25 +JHN 19:21!2 +JHN 19:21!1 +JHN 19:21!3 +JHN 19:21!4 +JHN 19:21!5 +JHN 19:21!6 +JHN 19:21!7 +JHN 19:21!8 +JHN 19:21!9 +JHN 19:21!10 +JHN 19:21!11 +JHN 19:21!12 +JHN 19:21!13 +JHN 19:21!14 +JHN 19:21!15 +JHN 19:21!16 +JHN 19:21!17 +JHN 19:21!18 +JHN 19:21!19 +JHN 19:21!21 +JHN 19:21!22 +JHN 19:21!20 +JHN 19:22!1 +JHN 19:22!2 +JHN 19:22!3 +JHN 19:22!4 +JHN 19:22!5 +JHN 19:22!6 +JHN 19:23!2 +JHN 19:23!4 +JHN 19:23!1 +JHN 19:23!3 +JHN 19:23!5 +JHN 19:23!6 +JHN 19:23!7 +JHN 19:23!8 +JHN 19:23!9 +JHN 19:23!10 +JHN 19:23!11 +JHN 19:23!12 +JHN 19:23!13 +JHN 19:23!14 +JHN 19:23!15 +JHN 19:23!16 +JHN 19:23!17 +JHN 19:23!18 +JHN 19:23!19 +JHN 19:23!20 +JHN 19:23!21 +JHN 19:23!23 +JHN 19:23!22 +JHN 19:23!24 +JHN 19:23!25 +JHN 19:23!26 +JHN 19:23!27 +JHN 19:23!28 +JHN 19:23!29 +JHN 19:23!30 +JHN 19:23!31 +JHN 19:23!32 +JHN 19:24!2 +JHN 19:24!1 +JHN 19:24!3 +JHN 19:24!4 +JHN 19:24!5 +JHN 19:24!6 +JHN 19:24!7 +JHN 19:24!8 +JHN 19:24!9 +JHN 19:24!10 +JHN 19:24!11 +JHN 19:24!12 +JHN 19:24!13 +JHN 19:24!14 +JHN 19:24!15 +JHN 19:24!16 +JHN 19:24!17 +JHN 19:24!18 +JHN 19:24!19 +JHN 19:24!20 +JHN 19:24!21 +JHN 19:24!22 +JHN 19:24!23 +JHN 19:24!24 +JHN 19:24!25 +JHN 19:24!26 +JHN 19:24!27 +JHN 19:24!28 +JHN 19:24!29 +JHN 19:24!32 +JHN 19:24!31 +JHN 19:24!30 +JHN 19:24!33 +JHN 19:24!34 +JHN 19:24!35 +JHN 19:25!2 +JHN 19:25!1 +JHN 19:25!3 +JHN 19:25!4 +JHN 19:25!5 +JHN 19:25!6 +JHN 19:25!7 +JHN 19:25!8 +JHN 19:25!9 +JHN 19:25!10 +JHN 19:25!11 +JHN 19:25!12 +JHN 19:25!13 +JHN 19:25!14 +JHN 19:25!15 +JHN 19:25!16 +JHN 19:25!17 +JHN 19:25!18 +JHN 19:25!19 +JHN 19:25!20 +JHN 19:25!21 +JHN 19:25!22 +JHN 19:25!23 +JHN 19:25!24 +JHN 19:26!2 +JHN 19:26!1 +JHN 19:26!3 +JHN 19:26!4 +JHN 19:26!5 +JHN 19:26!6 +JHN 19:26!7 +JHN 19:26!8 +JHN 19:26!9 +JHN 19:26!10 +JHN 19:26!11 +JHN 19:26!12 +JHN 19:26!13 +JHN 19:26!14 +JHN 19:26!15 +JHN 19:26!16 +JHN 19:26!17 +JHN 19:26!18 +JHN 19:26!19 +JHN 19:27!1 +JHN 19:27!2 +JHN 19:27!3 +JHN 19:27!4 +JHN 19:27!5 +JHN 19:27!6 +JHN 19:27!7 +JHN 19:27!8 +JHN 19:27!9 +JHN 19:27!10 +JHN 19:27!11 +JHN 19:27!12 +JHN 19:27!13 +JHN 19:27!14 +JHN 19:27!15 +JHN 19:27!16 +JHN 19:27!17 +JHN 19:27!18 +JHN 19:27!19 +JHN 19:27!20 +JHN 19:28!1 +JHN 19:28!2 +JHN 19:28!4 +JHN 19:28!5 +JHN 19:28!3 +JHN 19:28!6 +JHN 19:28!7 +JHN 19:28!8 +JHN 19:28!9 +JHN 19:28!10 +JHN 19:28!11 +JHN 19:28!12 +JHN 19:28!13 +JHN 19:28!14 +JHN 19:28!15 +JHN 19:29!1 +JHN 19:29!3 +JHN 19:29!4 +JHN 19:29!2 +JHN 19:29!6 +JHN 19:29!5 +JHN 19:29!7 +JHN 19:29!8 +JHN 19:29!9 +JHN 19:29!10 +JHN 19:29!11 +JHN 19:29!12 +JHN 19:29!13 +JHN 19:29!14 +JHN 19:29!15 +JHN 19:30!2 +JHN 19:30!1 +JHN 19:30!3 +JHN 19:30!4 +JHN 19:30!5 +JHN 19:30!6 +JHN 19:30!7 +JHN 19:30!8 +JHN 19:30!9 +JHN 19:30!10 +JHN 19:30!11 +JHN 19:30!12 +JHN 19:30!13 +JHN 19:30!14 +JHN 19:30!15 +JHN 19:30!16 +JHN 19:31!2 +JHN 19:31!1 +JHN 19:31!3 +JHN 19:31!4 +JHN 19:31!5 +JHN 19:31!6 +JHN 19:31!7 +JHN 19:31!8 +JHN 19:31!9 +JHN 19:31!10 +JHN 19:31!11 +JHN 19:31!12 +JHN 19:31!13 +JHN 19:31!14 +JHN 19:31!15 +JHN 19:31!16 +JHN 19:31!17 +JHN 19:31!19 +JHN 19:31!18 +JHN 19:31!20 +JHN 19:31!21 +JHN 19:31!22 +JHN 19:31!23 +JHN 19:31!24 +JHN 19:31!25 +JHN 19:31!26 +JHN 19:31!27 +JHN 19:31!28 +JHN 19:31!29 +JHN 19:31!30 +JHN 19:31!31 +JHN 19:31!32 +JHN 19:31!33 +JHN 19:31!34 +JHN 19:31!35 +JHN 19:32!2 +JHN 19:32!1 +JHN 19:32!3 +JHN 19:32!4 +JHN 19:32!5 +JHN 19:32!7 +JHN 19:32!9 +JHN 19:32!10 +JHN 19:32!11 +JHN 19:32!6 +JHN 19:32!8 +JHN 19:32!12 +JHN 19:32!13 +JHN 19:32!14 +JHN 19:32!15 +JHN 19:32!16 +JHN 19:32!17 +JHN 19:33!2 +JHN 19:33!1 +JHN 19:33!3 +JHN 19:33!4 +JHN 19:33!5 +JHN 19:33!6 +JHN 19:33!7 +JHN 19:33!8 +JHN 19:33!9 +JHN 19:33!10 +JHN 19:33!11 +JHN 19:33!12 +JHN 19:33!13 +JHN 19:33!14 +JHN 19:33!15 +JHN 19:34!1 +JHN 19:34!2 +JHN 19:34!3 +JHN 19:34!4 +JHN 19:34!5 +JHN 19:34!6 +JHN 19:34!7 +JHN 19:34!8 +JHN 19:34!9 +JHN 19:34!10 +JHN 19:34!11 +JHN 19:34!12 +JHN 19:34!13 +JHN 19:34!14 +JHN 19:34!15 +JHN 19:35!1 +JHN 19:35!2 +JHN 19:35!3 +JHN 19:35!4 +JHN 19:35!5 +JHN 19:35!6 +JHN 19:35!8 +JHN 19:35!7 +JHN 19:35!9 +JHN 19:35!10 +JHN 19:35!11 +JHN 19:35!12 +JHN 19:35!13 +JHN 19:35!14 +JHN 19:35!15 +JHN 19:35!16 +JHN 19:35!17 +JHN 19:35!18 +JHN 19:35!19 +JHN 19:35!20 +JHN 19:36!2 +JHN 19:36!1 +JHN 19:36!3 +JHN 19:36!4 +JHN 19:36!5 +JHN 19:36!6 +JHN 19:36!7 +JHN 19:36!8 +JHN 19:36!11 +JHN 19:36!9 +JHN 19:36!10 +JHN 19:37!1 +JHN 19:37!2 +JHN 19:37!3 +JHN 19:37!4 +JHN 19:37!5 +JHN 19:37!6 +JHN 19:37!7 +JHN 19:37!8 +JHN 19:37!9 +JHN 19:38!2 +JHN 19:38!1 +JHN 19:38!3 +JHN 19:38!4 +JHN 19:38!5 +JHN 19:38!6 +JHN 19:38!7 +JHN 19:38!8 +JHN 19:38!9 +JHN 19:38!10 +JHN 19:38!11 +JHN 19:38!12 +JHN 19:38!13 +JHN 19:38!15 +JHN 19:38!14 +JHN 19:38!16 +JHN 19:38!17 +JHN 19:38!18 +JHN 19:38!19 +JHN 19:38!20 +JHN 19:38!21 +JHN 19:38!22 +JHN 19:38!23 +JHN 19:38!24 +JHN 19:38!25 +JHN 19:38!26 +JHN 19:38!27 +JHN 19:38!28 +JHN 19:38!29 +JHN 19:38!30 +JHN 19:38!32 +JHN 19:38!31 +JHN 19:38!33 +JHN 19:38!34 +JHN 19:38!35 +JHN 19:38!36 +JHN 19:38!37 +JHN 19:39!2 +JHN 19:39!1 +JHN 19:39!3 +JHN 19:39!4 +JHN 19:39!5 +JHN 19:39!6 +JHN 19:39!7 +JHN 19:39!8 +JHN 19:39!9 +JHN 19:39!10 +JHN 19:39!11 +JHN 19:39!12 +JHN 19:39!13 +JHN 19:39!14 +JHN 19:39!15 +JHN 19:39!16 +JHN 19:39!17 +JHN 19:39!18 +JHN 19:39!19 +JHN 19:40!2 +JHN 19:40!1 +JHN 19:40!3 +JHN 19:40!4 +JHN 19:40!5 +JHN 19:40!6 +JHN 19:40!7 +JHN 19:40!8 +JHN 19:40!9 +JHN 19:40!10 +JHN 19:40!11 +JHN 19:40!12 +JHN 19:40!13 +JHN 19:40!14 +JHN 19:40!15 +JHN 19:40!16 +JHN 19:40!17 +JHN 19:40!18 +JHN 19:40!19 +JHN 19:41!2 +JHN 19:41!1 +JHN 19:41!3 +JHN 19:41!4 +JHN 19:41!5 +JHN 19:41!6 +JHN 19:41!7 +JHN 19:41!8 +JHN 19:41!9 +JHN 19:41!10 +JHN 19:41!11 +JHN 19:41!12 +JHN 19:41!13 +JHN 19:41!14 +JHN 19:41!15 +JHN 19:41!16 +JHN 19:41!17 +JHN 19:41!18 +JHN 19:41!19 +JHN 19:41!20 +JHN 19:42!2 +JHN 19:42!1 +JHN 19:42!3 +JHN 19:42!4 +JHN 19:42!5 +JHN 19:42!6 +JHN 19:42!7 +JHN 19:42!8 +JHN 19:42!9 +JHN 19:42!10 +JHN 19:42!11 +JHN 19:42!12 +JHN 19:42!13 +JHN 19:42!14 +JHN 19:42!15 +JHN 20:1!2 +JHN 20:1!1 +JHN 20:1!3 +JHN 20:1!4 +JHN 20:1!5 +JHN 20:1!6 +JHN 20:1!7 +JHN 20:1!8 +JHN 20:1!9 +JHN 20:1!10 +JHN 20:1!14 +JHN 20:1!15 +JHN 20:1!16 +JHN 20:1!11 +JHN 20:1!12 +JHN 20:1!13 +JHN 20:1!17 +JHN 20:1!18 +JHN 20:1!19 +JHN 20:1!20 +JHN 20:1!21 +JHN 20:1!22 +JHN 20:1!23 +JHN 20:1!24 +JHN 20:2!2 +JHN 20:2!1 +JHN 20:2!3 +JHN 20:2!4 +JHN 20:2!5 +JHN 20:2!6 +JHN 20:2!7 +JHN 20:2!8 +JHN 20:2!9 +JHN 20:2!10 +JHN 20:2!11 +JHN 20:2!12 +JHN 20:2!13 +JHN 20:2!14 +JHN 20:2!15 +JHN 20:2!16 +JHN 20:2!17 +JHN 20:2!18 +JHN 20:2!19 +JHN 20:2!20 +JHN 20:2!21 +JHN 20:2!22 +JHN 20:2!23 +JHN 20:2!24 +JHN 20:2!25 +JHN 20:2!26 +JHN 20:2!27 +JHN 20:2!28 +JHN 20:2!29 +JHN 20:2!30 +JHN 20:2!31 +JHN 20:3!2 +JHN 20:3!1 +JHN 20:3!3 +JHN 20:3!4 +JHN 20:3!5 +JHN 20:3!6 +JHN 20:3!7 +JHN 20:3!8 +JHN 20:3!9 +JHN 20:3!10 +JHN 20:3!11 +JHN 20:3!12 +JHN 20:3!13 +JHN 20:4!2 +JHN 20:4!1 +JHN 20:4!3 +JHN 20:4!4 +JHN 20:4!5 +JHN 20:4!6 +JHN 20:4!7 +JHN 20:4!8 +JHN 20:4!9 +JHN 20:4!10 +JHN 20:4!11 +JHN 20:4!12 +JHN 20:4!13 +JHN 20:4!14 +JHN 20:4!15 +JHN 20:4!16 +JHN 20:4!17 +JHN 20:4!18 +JHN 20:4!19 +JHN 20:5!1 +JHN 20:5!2 +JHN 20:5!3 +JHN 20:5!4 +JHN 20:5!5 +JHN 20:5!6 +JHN 20:5!8 +JHN 20:5!7 +JHN 20:5!9 +JHN 20:6!2 +JHN 20:6!1 +JHN 20:6!3 +JHN 20:6!4 +JHN 20:6!5 +JHN 20:6!6 +JHN 20:6!7 +JHN 20:6!8 +JHN 20:6!9 +JHN 20:6!10 +JHN 20:6!11 +JHN 20:6!12 +JHN 20:6!13 +JHN 20:6!14 +JHN 20:6!15 +JHN 20:6!16 +JHN 20:6!17 +JHN 20:7!1 +JHN 20:7!2 +JHN 20:7!3 +JHN 20:7!4 +JHN 20:7!5 +JHN 20:7!6 +JHN 20:7!7 +JHN 20:7!8 +JHN 20:7!9 +JHN 20:7!10 +JHN 20:7!11 +JHN 20:7!12 +JHN 20:7!13 +JHN 20:7!14 +JHN 20:7!15 +JHN 20:7!16 +JHN 20:7!17 +JHN 20:7!18 +JHN 20:7!19 +JHN 20:7!20 +JHN 20:8!2 +JHN 20:8!1 +JHN 20:8!3 +JHN 20:8!4 +JHN 20:8!5 +JHN 20:8!6 +JHN 20:8!7 +JHN 20:8!8 +JHN 20:8!9 +JHN 20:8!10 +JHN 20:8!11 +JHN 20:8!12 +JHN 20:8!13 +JHN 20:8!14 +JHN 20:8!15 +JHN 20:8!16 +JHN 20:8!17 +JHN 20:9!2 +JHN 20:9!1 +JHN 20:9!3 +JHN 20:9!4 +JHN 20:9!5 +JHN 20:9!6 +JHN 20:9!7 +JHN 20:9!8 +JHN 20:9!9 +JHN 20:9!10 +JHN 20:9!11 +JHN 20:10!2 +JHN 20:10!1 +JHN 20:10!3 +JHN 20:10!4 +JHN 20:10!5 +JHN 20:10!6 +JHN 20:10!7 +JHN 20:11!2 +JHN 20:11!1 +JHN 20:11!3 +JHN 20:11!4 +JHN 20:11!5 +JHN 20:11!6 +JHN 20:11!7 +JHN 20:11!8 +JHN 20:11!10 +JHN 20:11!9 +JHN 20:11!11 +JHN 20:11!12 +JHN 20:11!13 +JHN 20:11!14 +JHN 20:11!15 +JHN 20:12!1 +JHN 20:12!2 +JHN 20:12!3 +JHN 20:12!4 +JHN 20:12!5 +JHN 20:12!6 +JHN 20:12!7 +JHN 20:12!17 +JHN 20:12!18 +JHN 20:12!19 +JHN 20:12!20 +JHN 20:12!21 +JHN 20:12!22 +JHN 20:12!8 +JHN 20:12!9 +JHN 20:12!10 +JHN 20:12!11 +JHN 20:12!12 +JHN 20:12!13 +JHN 20:12!14 +JHN 20:12!15 +JHN 20:12!16 +JHN 20:13!1 +JHN 20:13!2 +JHN 20:13!3 +JHN 20:13!4 +JHN 20:13!5 +JHN 20:13!6 +JHN 20:13!7 +JHN 20:13!8 +JHN 20:13!9 +JHN 20:13!10 +JHN 20:13!11 +JHN 20:13!12 +JHN 20:13!13 +JHN 20:13!14 +JHN 20:13!15 +JHN 20:13!16 +JHN 20:13!17 +JHN 20:13!18 +JHN 20:13!19 +JHN 20:13!20 +JHN 20:14!1 +JHN 20:14!2 +JHN 20:14!3 +JHN 20:14!4 +JHN 20:14!5 +JHN 20:14!6 +JHN 20:14!7 +JHN 20:14!8 +JHN 20:14!9 +JHN 20:14!10 +JHN 20:14!11 +JHN 20:14!12 +JHN 20:14!13 +JHN 20:14!14 +JHN 20:14!15 +JHN 20:14!16 +JHN 20:14!17 +JHN 20:15!1 +JHN 20:15!2 +JHN 20:15!3 +JHN 20:15!4 +JHN 20:15!5 +JHN 20:15!6 +JHN 20:15!7 +JHN 20:15!8 +JHN 20:15!9 +JHN 20:15!10 +JHN 20:15!11 +JHN 20:15!12 +JHN 20:15!13 +JHN 20:15!14 +JHN 20:15!15 +JHN 20:15!16 +JHN 20:15!17 +JHN 20:15!18 +JHN 20:15!19 +JHN 20:15!20 +JHN 20:15!21 +JHN 20:15!22 +JHN 20:15!23 +JHN 20:15!24 +JHN 20:15!25 +JHN 20:15!26 +JHN 20:15!27 +JHN 20:15!28 +JHN 20:15!29 +JHN 20:16!1 +JHN 20:16!2 +JHN 20:16!3 +JHN 20:16!4 +JHN 20:16!5 +JHN 20:16!6 +JHN 20:16!7 +JHN 20:16!8 +JHN 20:16!9 +JHN 20:16!10 +JHN 20:16!11 +JHN 20:16!12 +JHN 20:16!13 +JHN 20:17!1 +JHN 20:17!2 +JHN 20:17!3 +JHN 20:17!4 +JHN 20:17!5 +JHN 20:17!6 +JHN 20:17!8 +JHN 20:17!7 +JHN 20:17!9 +JHN 20:17!10 +JHN 20:17!11 +JHN 20:17!12 +JHN 20:17!14 +JHN 20:17!13 +JHN 20:17!15 +JHN 20:17!16 +JHN 20:17!17 +JHN 20:17!18 +JHN 20:17!19 +JHN 20:17!20 +JHN 20:17!21 +JHN 20:17!22 +JHN 20:17!23 +JHN 20:17!24 +JHN 20:17!25 +JHN 20:17!26 +JHN 20:17!27 +JHN 20:17!28 +JHN 20:17!29 +JHN 20:17!30 +JHN 20:17!31 +JHN 20:17!32 +JHN 20:17!33 +JHN 20:17!34 +JHN 20:17!35 +JHN 20:18!1 +JHN 20:18!2 +JHN 20:18!3 +JHN 20:18!4 +JHN 20:18!5 +JHN 20:18!6 +JHN 20:18!7 +JHN 20:18!8 +JHN 20:18!9 +JHN 20:18!10 +JHN 20:18!11 +JHN 20:18!12 +JHN 20:18!13 +JHN 20:18!14 +JHN 20:18!15 +JHN 20:19!2 +JHN 20:19!1 +JHN 20:19!3 +JHN 20:19!4 +JHN 20:19!5 +JHN 20:19!6 +JHN 20:19!7 +JHN 20:19!8 +JHN 20:19!9 +JHN 20:19!10 +JHN 20:19!11 +JHN 20:19!12 +JHN 20:19!13 +JHN 20:19!14 +JHN 20:19!15 +JHN 20:19!16 +JHN 20:19!17 +JHN 20:19!18 +JHN 20:19!19 +JHN 20:19!20 +JHN 20:19!21 +JHN 20:19!22 +JHN 20:19!23 +JHN 20:19!24 +JHN 20:19!25 +JHN 20:19!26 +JHN 20:19!27 +JHN 20:19!28 +JHN 20:19!29 +JHN 20:19!30 +JHN 20:19!31 +JHN 20:19!32 +JHN 20:19!33 +JHN 20:19!34 +JHN 20:19!35 +JHN 20:20!1 +JHN 20:20!2 +JHN 20:20!3 +JHN 20:20!4 +JHN 20:20!5 +JHN 20:20!6 +JHN 20:20!7 +JHN 20:20!8 +JHN 20:20!9 +JHN 20:20!10 +JHN 20:20!11 +JHN 20:20!13 +JHN 20:20!12 +JHN 20:20!14 +JHN 20:20!15 +JHN 20:20!16 +JHN 20:20!17 +JHN 20:20!18 +JHN 20:21!2 +JHN 20:21!1 +JHN 20:21!3 +JHN 20:21!4 +JHN 20:21!5 +JHN 20:21!6 +JHN 20:21!7 +JHN 20:21!8 +JHN 20:21!9 +JHN 20:21!10 +JHN 20:21!11 +JHN 20:21!12 +JHN 20:21!13 +JHN 20:21!14 +JHN 20:21!15 +JHN 20:21!16 +JHN 20:22!1 +JHN 20:22!2 +JHN 20:22!3 +JHN 20:22!4 +JHN 20:22!5 +JHN 20:22!6 +JHN 20:22!7 +JHN 20:22!8 +JHN 20:22!9 +JHN 20:22!10 +JHN 20:23!1 +JHN 20:23!3 +JHN 20:23!2 +JHN 20:23!4 +JHN 20:23!5 +JHN 20:23!6 +JHN 20:23!7 +JHN 20:23!8 +JHN 20:23!9 +JHN 20:23!10 +JHN 20:23!11 +JHN 20:24!2 +JHN 20:24!1 +JHN 20:24!3 +JHN 20:24!4 +JHN 20:24!5 +JHN 20:24!6 +JHN 20:24!7 +JHN 20:24!8 +JHN 20:24!9 +JHN 20:24!10 +JHN 20:24!11 +JHN 20:24!12 +JHN 20:24!13 +JHN 20:24!14 +JHN 20:24!15 +JHN 20:24!16 +JHN 20:25!2 +JHN 20:25!1 +JHN 20:25!3 +JHN 20:25!4 +JHN 20:25!5 +JHN 20:25!6 +JHN 20:25!7 +JHN 20:25!8 +JHN 20:25!9 +JHN 20:25!11 +JHN 20:25!10 +JHN 20:25!12 +JHN 20:25!13 +JHN 20:25!14 +JHN 20:25!15 +JHN 20:25!16 +JHN 20:25!17 +JHN 20:25!18 +JHN 20:25!19 +JHN 20:25!20 +JHN 20:25!21 +JHN 20:25!22 +JHN 20:25!23 +JHN 20:25!24 +JHN 20:25!25 +JHN 20:25!26 +JHN 20:25!27 +JHN 20:25!28 +JHN 20:25!29 +JHN 20:25!30 +JHN 20:25!31 +JHN 20:25!32 +JHN 20:25!33 +JHN 20:25!34 +JHN 20:25!35 +JHN 20:25!36 +JHN 20:25!37 +JHN 20:25!38 +JHN 20:25!39 +JHN 20:25!40 +JHN 20:25!41 +JHN 20:25!42 +JHN 20:25!43 +JHN 20:25!44 +JHN 20:25!45 +JHN 20:25!46 +JHN 20:26!1 +JHN 20:26!2 +JHN 20:26!3 +JHN 20:26!4 +JHN 20:26!5 +JHN 20:26!6 +JHN 20:26!7 +JHN 20:26!8 +JHN 20:26!9 +JHN 20:26!10 +JHN 20:26!11 +JHN 20:26!12 +JHN 20:26!13 +JHN 20:26!14 +JHN 20:26!15 +JHN 20:26!16 +JHN 20:26!17 +JHN 20:26!18 +JHN 20:26!19 +JHN 20:26!20 +JHN 20:26!21 +JHN 20:26!22 +JHN 20:26!23 +JHN 20:26!24 +JHN 20:26!25 +JHN 20:26!26 +JHN 20:26!27 +JHN 20:26!28 +JHN 20:26!29 +JHN 20:27!1 +JHN 20:27!2 +JHN 20:27!3 +JHN 20:27!4 +JHN 20:27!5 +JHN 20:27!6 +JHN 20:27!7 +JHN 20:27!8 +JHN 20:27!9 +JHN 20:27!10 +JHN 20:27!11 +JHN 20:27!12 +JHN 20:27!13 +JHN 20:27!14 +JHN 20:27!15 +JHN 20:27!16 +JHN 20:27!17 +JHN 20:27!18 +JHN 20:27!19 +JHN 20:27!20 +JHN 20:27!21 +JHN 20:27!22 +JHN 20:27!23 +JHN 20:27!24 +JHN 20:27!25 +JHN 20:27!26 +JHN 20:27!27 +JHN 20:27!28 +JHN 20:27!29 +JHN 20:27!30 +JHN 20:27!31 +JHN 20:28!1 +JHN 20:28!2 +JHN 20:28!3 +JHN 20:28!4 +JHN 20:28!5 +JHN 20:28!6 +JHN 20:28!7 +JHN 20:28!8 +JHN 20:28!9 +JHN 20:28!10 +JHN 20:28!11 +JHN 20:28!12 +JHN 20:29!1 +JHN 20:29!2 +JHN 20:29!3 +JHN 20:29!4 +JHN 20:29!5 +JHN 20:29!6 +JHN 20:29!7 +JHN 20:29!8 +JHN 20:29!9 +JHN 20:29!10 +JHN 20:29!11 +JHN 20:29!12 +JHN 20:29!13 +JHN 20:29!14 +JHN 20:30!3 +JHN 20:30!2 +JHN 20:30!4 +JHN 20:30!1 +JHN 20:30!5 +JHN 20:30!6 +JHN 20:30!7 +JHN 20:30!8 +JHN 20:30!9 +JHN 20:30!10 +JHN 20:30!11 +JHN 20:30!12 +JHN 20:30!13 +JHN 20:30!14 +JHN 20:30!15 +JHN 20:30!16 +JHN 20:30!17 +JHN 20:30!18 +JHN 20:30!19 +JHN 20:30!20 +JHN 20:31!2 +JHN 20:31!1 +JHN 20:31!3 +JHN 20:31!4 +JHN 20:31!5 +JHN 20:31!6 +JHN 20:31!7 +JHN 20:31!8 +JHN 20:31!9 +JHN 20:31!10 +JHN 20:31!11 +JHN 20:31!12 +JHN 20:31!13 +JHN 20:31!14 +JHN 20:31!15 +JHN 20:31!16 +JHN 20:31!17 +JHN 20:31!18 +JHN 20:31!19 +JHN 20:31!20 +JHN 20:31!21 +JHN 20:31!22 +JHN 20:31!23 +JHN 21:1!1 +JHN 21:1!2 +JHN 21:1!3 +JHN 21:1!4 +JHN 21:1!5 +JHN 21:1!6 +JHN 21:1!7 +JHN 21:1!8 +JHN 21:1!9 +JHN 21:1!10 +JHN 21:1!11 +JHN 21:1!12 +JHN 21:1!13 +JHN 21:1!15 +JHN 21:1!14 +JHN 21:1!16 +JHN 21:2!1 +JHN 21:2!2 +JHN 21:2!3 +JHN 21:2!4 +JHN 21:2!5 +JHN 21:2!6 +JHN 21:2!7 +JHN 21:2!8 +JHN 21:2!9 +JHN 21:2!10 +JHN 21:2!11 +JHN 21:2!12 +JHN 21:2!13 +JHN 21:2!14 +JHN 21:2!15 +JHN 21:2!16 +JHN 21:2!17 +JHN 21:2!18 +JHN 21:2!19 +JHN 21:2!20 +JHN 21:2!21 +JHN 21:2!22 +JHN 21:2!23 +JHN 21:2!24 +JHN 21:2!25 +JHN 21:2!26 +JHN 21:2!27 +JHN 21:3!1 +JHN 21:3!2 +JHN 21:3!3 +JHN 21:3!4 +JHN 21:3!5 +JHN 21:3!6 +JHN 21:3!7 +JHN 21:3!8 +JHN 21:3!9 +JHN 21:3!10 +JHN 21:3!11 +JHN 21:3!12 +JHN 21:3!13 +JHN 21:3!14 +JHN 21:3!15 +JHN 21:3!16 +JHN 21:3!17 +JHN 21:3!18 +JHN 21:3!19 +JHN 21:3!20 +JHN 21:3!21 +JHN 21:3!22 +JHN 21:3!23 +JHN 21:3!24 +JHN 21:3!25 +JHN 21:3!26 +JHN 21:4!2 +JHN 21:4!1 +JHN 21:4!3 +JHN 21:4!4 +JHN 21:4!5 +JHN 21:4!6 +JHN 21:4!7 +JHN 21:4!8 +JHN 21:4!9 +JHN 21:4!11 +JHN 21:4!10 +JHN 21:4!12 +JHN 21:4!13 +JHN 21:4!14 +JHN 21:4!15 +JHN 21:4!16 +JHN 21:4!17 +JHN 21:5!2 +JHN 21:5!1 +JHN 21:5!3 +JHN 21:5!4 +JHN 21:5!5 +JHN 21:5!6 +JHN 21:5!7 +JHN 21:5!8 +JHN 21:5!9 +JHN 21:5!10 +JHN 21:5!11 +JHN 21:5!12 +JHN 21:6!2 +JHN 21:6!1 +JHN 21:6!3 +JHN 21:6!4 +JHN 21:6!5 +JHN 21:6!6 +JHN 21:6!7 +JHN 21:6!8 +JHN 21:6!9 +JHN 21:6!10 +JHN 21:6!11 +JHN 21:6!12 +JHN 21:6!13 +JHN 21:6!14 +JHN 21:6!15 +JHN 21:6!17 +JHN 21:6!16 +JHN 21:6!18 +JHN 21:6!19 +JHN 21:6!20 +JHN 21:6!21 +JHN 21:6!22 +JHN 21:6!23 +JHN 21:6!24 +JHN 21:6!25 +JHN 21:6!26 +JHN 21:6!27 +JHN 21:7!2 +JHN 21:7!1 +JHN 21:7!3 +JHN 21:7!4 +JHN 21:7!5 +JHN 21:7!6 +JHN 21:7!7 +JHN 21:7!8 +JHN 21:7!9 +JHN 21:7!10 +JHN 21:7!11 +JHN 21:7!12 +JHN 21:7!13 +JHN 21:7!14 +JHN 21:7!16 +JHN 21:7!15 +JHN 21:7!17 +JHN 21:7!18 +JHN 21:7!19 +JHN 21:7!20 +JHN 21:7!21 +JHN 21:7!22 +JHN 21:7!23 +JHN 21:7!24 +JHN 21:7!25 +JHN 21:7!27 +JHN 21:7!26 +JHN 21:7!28 +JHN 21:7!29 +JHN 21:7!30 +JHN 21:7!31 +JHN 21:7!32 +JHN 21:7!33 +JHN 21:7!34 +JHN 21:8!2 +JHN 21:8!1 +JHN 21:8!3 +JHN 21:8!4 +JHN 21:8!5 +JHN 21:8!6 +JHN 21:8!7 +JHN 21:8!9 +JHN 21:8!8 +JHN 21:8!10 +JHN 21:8!11 +JHN 21:8!12 +JHN 21:8!13 +JHN 21:8!14 +JHN 21:8!15 +JHN 21:8!16 +JHN 21:8!17 +JHN 21:8!18 +JHN 21:8!19 +JHN 21:8!20 +JHN 21:8!21 +JHN 21:8!22 +JHN 21:8!23 +JHN 21:8!24 +JHN 21:9!2 +JHN 21:9!1 +JHN 21:9!3 +JHN 21:9!4 +JHN 21:9!5 +JHN 21:9!6 +JHN 21:9!7 +JHN 21:9!8 +JHN 21:9!9 +JHN 21:9!10 +JHN 21:9!11 +JHN 21:9!12 +JHN 21:9!13 +JHN 21:9!14 +JHN 21:10!1 +JHN 21:10!2 +JHN 21:10!3 +JHN 21:10!4 +JHN 21:10!5 +JHN 21:10!6 +JHN 21:10!7 +JHN 21:10!8 +JHN 21:10!9 +JHN 21:10!10 +JHN 21:10!11 +JHN 21:11!1 +JHN 21:11!2 +JHN 21:11!3 +JHN 21:11!4 +JHN 21:11!5 +JHN 21:11!6 +JHN 21:11!7 +JHN 21:11!8 +JHN 21:11!9 +JHN 21:11!10 +JHN 21:11!11 +JHN 21:11!12 +JHN 21:11!13 +JHN 21:11!14 +JHN 21:11!15 +JHN 21:11!16 +JHN 21:11!17 +JHN 21:11!18 +JHN 21:11!19 +JHN 21:11!20 +JHN 21:11!21 +JHN 21:11!22 +JHN 21:11!23 +JHN 21:12!1 +JHN 21:12!2 +JHN 21:12!3 +JHN 21:12!4 +JHN 21:12!5 +JHN 21:12!6 +JHN 21:12!7 +JHN 21:12!9 +JHN 21:12!10 +JHN 21:12!8 +JHN 21:12!11 +JHN 21:12!12 +JHN 21:12!13 +JHN 21:12!14 +JHN 21:12!15 +JHN 21:12!16 +JHN 21:12!17 +JHN 21:12!18 +JHN 21:12!19 +JHN 21:12!20 +JHN 21:13!1 +JHN 21:13!2 +JHN 21:13!3 +JHN 21:13!4 +JHN 21:13!5 +JHN 21:13!6 +JHN 21:13!7 +JHN 21:13!8 +JHN 21:13!9 +JHN 21:13!10 +JHN 21:13!11 +JHN 21:13!12 +JHN 21:13!13 +JHN 21:14!1 +JHN 21:14!2 +JHN 21:14!3 +JHN 21:14!4 +JHN 21:14!5 +JHN 21:14!6 +JHN 21:14!7 +JHN 21:14!8 +JHN 21:14!9 +JHN 21:14!10 +JHN 21:15!2 +JHN 21:15!1 +JHN 21:15!3 +JHN 21:15!4 +JHN 21:15!5 +JHN 21:15!6 +JHN 21:15!7 +JHN 21:15!8 +JHN 21:15!9 +JHN 21:15!10 +JHN 21:15!11 +JHN 21:15!12 +JHN 21:15!13 +JHN 21:15!14 +JHN 21:15!15 +JHN 21:15!16 +JHN 21:15!17 +JHN 21:15!18 +JHN 21:15!19 +JHN 21:15!20 +JHN 21:15!21 +JHN 21:15!22 +JHN 21:15!23 +JHN 21:15!24 +JHN 21:15!25 +JHN 21:15!26 +JHN 21:15!27 +JHN 21:15!28 +JHN 21:15!29 +JHN 21:15!30 +JHN 21:16!1 +JHN 21:16!2 +JHN 21:16!3 +JHN 21:16!4 +JHN 21:16!5 +JHN 21:16!6 +JHN 21:16!7 +JHN 21:16!8 +JHN 21:16!9 +JHN 21:16!10 +JHN 21:16!11 +JHN 21:16!12 +JHN 21:16!13 +JHN 21:16!14 +JHN 21:16!15 +JHN 21:16!16 +JHN 21:16!17 +JHN 21:16!18 +JHN 21:16!19 +JHN 21:16!20 +JHN 21:16!21 +JHN 21:16!22 +JHN 21:16!23 +JHN 21:17!1 +JHN 21:17!2 +JHN 21:17!3 +JHN 21:17!4 +JHN 21:17!5 +JHN 21:17!6 +JHN 21:17!7 +JHN 21:17!8 +JHN 21:17!9 +JHN 21:17!10 +JHN 21:17!11 +JHN 21:17!12 +JHN 21:17!13 +JHN 21:17!14 +JHN 21:17!15 +JHN 21:17!16 +JHN 21:17!17 +JHN 21:17!18 +JHN 21:17!19 +JHN 21:17!20 +JHN 21:17!21 +JHN 21:17!22 +JHN 21:17!23 +JHN 21:17!24 +JHN 21:17!25 +JHN 21:17!26 +JHN 21:17!27 +JHN 21:17!28 +JHN 21:17!29 +JHN 21:17!30 +JHN 21:17!31 +JHN 21:17!32 +JHN 21:17!33 +JHN 21:17!34 +JHN 21:17!35 +JHN 21:17!36 +JHN 21:17!37 +JHN 21:18!1 +JHN 21:18!2 +JHN 21:18!3 +JHN 21:18!4 +JHN 21:18!5 +JHN 21:18!6 +JHN 21:18!7 +JHN 21:18!8 +JHN 21:18!9 +JHN 21:18!10 +JHN 21:18!11 +JHN 21:18!12 +JHN 21:18!13 +JHN 21:18!15 +JHN 21:18!14 +JHN 21:18!16 +JHN 21:18!17 +JHN 21:18!18 +JHN 21:18!19 +JHN 21:18!20 +JHN 21:18!21 +JHN 21:18!22 +JHN 21:18!23 +JHN 21:18!24 +JHN 21:18!25 +JHN 21:18!26 +JHN 21:18!27 +JHN 21:18!28 +JHN 21:18!29 +JHN 21:19!2 +JHN 21:19!1 +JHN 21:19!3 +JHN 21:19!4 +JHN 21:19!5 +JHN 21:19!6 +JHN 21:19!7 +JHN 21:19!8 +JHN 21:19!9 +JHN 21:19!10 +JHN 21:19!11 +JHN 21:19!12 +JHN 21:19!13 +JHN 21:19!14 +JHN 21:19!15 +JHN 21:19!16 +JHN 21:20!1 +JHN 21:20!2 +JHN 21:20!3 +JHN 21:20!4 +JHN 21:20!5 +JHN 21:20!6 +JHN 21:20!7 +JHN 21:20!8 +JHN 21:20!9 +JHN 21:20!10 +JHN 21:20!11 +JHN 21:20!12 +JHN 21:20!13 +JHN 21:20!14 +JHN 21:20!15 +JHN 21:20!16 +JHN 21:20!17 +JHN 21:20!18 +JHN 21:20!19 +JHN 21:20!20 +JHN 21:20!21 +JHN 21:20!22 +JHN 21:20!23 +JHN 21:20!24 +JHN 21:20!25 +JHN 21:20!26 +JHN 21:20!27 +JHN 21:20!28 +JHN 21:20!29 +JHN 21:21!2 +JHN 21:21!1 +JHN 21:21!3 +JHN 21:21!4 +JHN 21:21!5 +JHN 21:21!6 +JHN 21:21!7 +JHN 21:21!8 +JHN 21:21!9 +JHN 21:21!11 +JHN 21:21!10 +JHN 21:21!12 +JHN 21:22!1 +JHN 21:22!2 +JHN 21:22!3 +JHN 21:22!4 +JHN 21:22!5 +JHN 21:22!6 +JHN 21:22!8 +JHN 21:22!7 +JHN 21:22!9 +JHN 21:22!10 +JHN 21:22!11 +JHN 21:22!12 +JHN 21:22!13 +JHN 21:22!14 +JHN 21:22!15 +JHN 21:22!16 +JHN 21:23!2 +JHN 21:23!1 +JHN 21:23!3 +JHN 21:23!4 +JHN 21:23!5 +JHN 21:23!6 +JHN 21:23!7 +JHN 21:23!8 +JHN 21:23!9 +JHN 21:23!10 +JHN 21:23!11 +JHN 21:23!12 +JHN 21:23!13 +JHN 21:23!14 +JHN 21:23!17 +JHN 21:23!15 +JHN 21:23!16 +JHN 21:23!18 +JHN 21:23!19 +JHN 21:23!20 +JHN 21:23!21 +JHN 21:23!22 +JHN 21:23!23 +JHN 21:23!24 +JHN 21:23!25 +JHN 21:23!26 +JHN 21:23!28 +JHN 21:23!27 +JHN 21:23!29 +JHN 21:23!30 +JHN 21:23!31 +JHN 21:23!32 +JHN 21:23!33 +JHN 21:24!1 +JHN 21:24!2 +JHN 21:24!3 +JHN 21:24!4 +JHN 21:24!5 +JHN 21:24!6 +JHN 21:24!7 +JHN 21:24!8 +JHN 21:24!9 +JHN 21:24!10 +JHN 21:24!11 +JHN 21:24!12 +JHN 21:24!13 +JHN 21:24!14 +JHN 21:24!15 +JHN 21:24!16 +JHN 21:24!17 +JHN 21:24!18 +JHN 21:24!19 +JHN 21:24!20 +JHN 21:25!2 +JHN 21:25!1 +JHN 21:25!3 +JHN 21:25!4 +JHN 21:25!5 +JHN 21:25!6 +JHN 21:25!7 +JHN 21:25!8 +JHN 21:25!9 +JHN 21:25!11 +JHN 21:25!10 +JHN 21:25!12 +JHN 21:25!13 +JHN 21:25!14 +JHN 21:25!17 +JHN 21:25!15 +JHN 21:25!16 +JHN 21:25!18 +JHN 21:25!19 +JHN 21:25!20 +JHN 21:25!21 +JHN 21:25!22 +JHN 21:25!23 +ACT 1:1!8 +ACT 1:1!9 +ACT 1:1!2 +ACT 1:1!1 +ACT 1:1!3 +ACT 1:1!4 +ACT 1:1!5 +ACT 1:1!6 +ACT 1:1!7 +ACT 1:1!10 +ACT 1:1!15 +ACT 1:1!14 +ACT 1:1!16 +ACT 1:1!17 +ACT 1:1!11 +ACT 1:1!12 +ACT 1:1!13 +ACT 1:2!1 +ACT 1:2!2 +ACT 1:2!3 +ACT 1:2!4 +ACT 1:2!5 +ACT 1:2!6 +ACT 1:2!10 +ACT 1:2!11 +ACT 1:2!7 +ACT 1:2!8 +ACT 1:2!9 +ACT 1:2!12 +ACT 1:3!1 +ACT 1:3!2 +ACT 1:3!3 +ACT 1:3!4 +ACT 1:3!5 +ACT 1:3!6 +ACT 1:3!7 +ACT 1:3!8 +ACT 1:3!9 +ACT 1:3!10 +ACT 1:3!11 +ACT 1:3!12 +ACT 1:3!13 +ACT 1:3!14 +ACT 1:3!15 +ACT 1:3!16 +ACT 1:3!17 +ACT 1:3!18 +ACT 1:3!19 +ACT 1:3!20 +ACT 1:3!21 +ACT 1:3!22 +ACT 1:3!23 +ACT 1:3!24 +ACT 1:3!25 +ACT 1:4!1 +ACT 1:4!2 +ACT 1:4!3 +ACT 1:4!4 +ACT 1:4!5 +ACT 1:4!6 +ACT 1:4!7 +ACT 1:4!8 +ACT 1:4!9 +ACT 1:4!10 +ACT 1:4!11 +ACT 1:4!12 +ACT 1:4!13 +ACT 1:4!14 +ACT 1:4!15 +ACT 1:4!16 +ACT 1:4!17 +ACT 1:5!1 +ACT 1:5!3 +ACT 1:5!2 +ACT 1:5!4 +ACT 1:5!5 +ACT 1:5!7 +ACT 1:5!6 +ACT 1:5!8 +ACT 1:5!9 +ACT 1:5!11 +ACT 1:5!10 +ACT 1:5!12 +ACT 1:5!13 +ACT 1:5!14 +ACT 1:5!15 +ACT 1:5!16 +ACT 1:6!2 +ACT 1:6!3 +ACT 1:6!1 +ACT 1:6!4 +ACT 1:6!5 +ACT 1:6!6 +ACT 1:6!7 +ACT 1:6!8 +ACT 1:6!9 +ACT 1:6!10 +ACT 1:6!11 +ACT 1:6!12 +ACT 1:6!13 +ACT 1:6!14 +ACT 1:6!15 +ACT 1:6!16 +ACT 1:6!17 +ACT 1:6!18 +ACT 1:7!1 +ACT 1:7!2 +ACT 1:7!3 +ACT 1:7!4 +ACT 1:7!5 +ACT 1:7!6 +ACT 1:7!7 +ACT 1:7!8 +ACT 1:7!9 +ACT 1:7!10 +ACT 1:7!11 +ACT 1:7!12 +ACT 1:7!13 +ACT 1:7!14 +ACT 1:7!15 +ACT 1:7!16 +ACT 1:7!17 +ACT 1:7!18 +ACT 1:8!1 +ACT 1:8!2 +ACT 1:8!3 +ACT 1:8!4 +ACT 1:8!5 +ACT 1:8!6 +ACT 1:8!7 +ACT 1:8!8 +ACT 1:8!9 +ACT 1:8!10 +ACT 1:8!11 +ACT 1:8!12 +ACT 1:8!13 +ACT 1:8!15 +ACT 1:8!14 +ACT 1:8!16 +ACT 1:8!17 +ACT 1:8!18 +ACT 1:8!19 +ACT 1:8!20 +ACT 1:8!21 +ACT 1:8!22 +ACT 1:8!23 +ACT 1:8!24 +ACT 1:8!25 +ACT 1:8!26 +ACT 1:8!27 +ACT 1:8!28 +ACT 1:9!1 +ACT 1:9!2 +ACT 1:9!3 +ACT 1:9!4 +ACT 1:9!5 +ACT 1:9!6 +ACT 1:9!7 +ACT 1:9!8 +ACT 1:9!9 +ACT 1:9!10 +ACT 1:9!11 +ACT 1:9!12 +ACT 1:9!13 +ACT 1:9!14 +ACT 1:10!1 +ACT 1:10!2 +ACT 1:10!3 +ACT 1:10!4 +ACT 1:10!5 +ACT 1:10!6 +ACT 1:10!7 +ACT 1:10!8 +ACT 1:10!9 +ACT 1:10!10 +ACT 1:10!11 +ACT 1:10!12 +ACT 1:10!13 +ACT 1:10!14 +ACT 1:10!15 +ACT 1:10!16 +ACT 1:10!17 +ACT 1:10!18 +ACT 1:11!1 +ACT 1:11!2 +ACT 1:11!3 +ACT 1:11!4 +ACT 1:11!5 +ACT 1:11!6 +ACT 1:11!7 +ACT 1:11!8 +ACT 1:11!9 +ACT 1:11!10 +ACT 1:11!11 +ACT 1:11!12 +ACT 1:11!13 +ACT 1:11!14 +ACT 1:11!15 +ACT 1:11!16 +ACT 1:11!17 +ACT 1:11!18 +ACT 1:11!19 +ACT 1:11!20 +ACT 1:11!21 +ACT 1:11!22 +ACT 1:11!23 +ACT 1:11!24 +ACT 1:11!25 +ACT 1:11!26 +ACT 1:11!27 +ACT 1:11!28 +ACT 1:11!29 +ACT 1:11!30 +ACT 1:11!31 +ACT 1:12!1 +ACT 1:12!2 +ACT 1:12!3 +ACT 1:12!4 +ACT 1:12!5 +ACT 1:12!6 +ACT 1:12!7 +ACT 1:12!8 +ACT 1:12!9 +ACT 1:12!10 +ACT 1:12!11 +ACT 1:12!12 +ACT 1:12!13 +ACT 1:12!14 +ACT 1:12!16 +ACT 1:12!15 +ACT 1:13!1 +ACT 1:13!2 +ACT 1:13!3 +ACT 1:13!4 +ACT 1:13!5 +ACT 1:13!6 +ACT 1:13!7 +ACT 1:13!8 +ACT 1:13!9 +ACT 1:13!10 +ACT 1:13!12 +ACT 1:13!11 +ACT 1:13!13 +ACT 1:13!14 +ACT 1:13!15 +ACT 1:13!16 +ACT 1:13!17 +ACT 1:13!18 +ACT 1:13!19 +ACT 1:13!20 +ACT 1:13!21 +ACT 1:13!22 +ACT 1:13!23 +ACT 1:13!24 +ACT 1:13!25 +ACT 1:13!26 +ACT 1:13!27 +ACT 1:13!28 +ACT 1:13!29 +ACT 1:13!30 +ACT 1:13!31 +ACT 1:13!32 +ACT 1:13!33 +ACT 1:13!34 +ACT 1:14!1 +ACT 1:14!2 +ACT 1:14!3 +ACT 1:14!4 +ACT 1:14!5 +ACT 1:14!6 +ACT 1:14!7 +ACT 1:14!8 +ACT 1:14!9 +ACT 1:14!10 +ACT 1:14!11 +ACT 1:14!12 +ACT 1:14!13 +ACT 1:14!14 +ACT 1:14!15 +ACT 1:14!16 +ACT 1:14!17 +ACT 1:14!18 +ACT 1:14!19 +ACT 1:14!20 +ACT 1:15!1 +ACT 1:15!2 +ACT 1:15!3 +ACT 1:15!4 +ACT 1:15!5 +ACT 1:15!6 +ACT 1:15!8 +ACT 1:15!9 +ACT 1:15!10 +ACT 1:15!11 +ACT 1:15!7 +ACT 1:15!12 +ACT 1:15!14 +ACT 1:15!13 +ACT 1:15!15 +ACT 1:15!16 +ACT 1:15!17 +ACT 1:15!18 +ACT 1:15!19 +ACT 1:15!20 +ACT 1:15!21 +ACT 1:15!22 +ACT 1:16!1 +ACT 1:16!2 +ACT 1:16!3 +ACT 1:16!4 +ACT 1:16!5 +ACT 1:16!6 +ACT 1:16!7 +ACT 1:16!8 +ACT 1:16!9 +ACT 1:16!10 +ACT 1:16!11 +ACT 1:16!12 +ACT 1:16!13 +ACT 1:16!14 +ACT 1:16!15 +ACT 1:16!16 +ACT 1:16!17 +ACT 1:16!18 +ACT 1:16!19 +ACT 1:16!20 +ACT 1:16!21 +ACT 1:16!22 +ACT 1:16!23 +ACT 1:17!1 +ACT 1:17!2 +ACT 1:17!3 +ACT 1:17!4 +ACT 1:17!5 +ACT 1:17!6 +ACT 1:17!7 +ACT 1:17!8 +ACT 1:17!9 +ACT 1:17!10 +ACT 1:17!11 +ACT 1:17!12 +ACT 1:18!2 +ACT 1:18!3 +ACT 1:18!1 +ACT 1:18!4 +ACT 1:18!5 +ACT 1:18!6 +ACT 1:18!7 +ACT 1:18!8 +ACT 1:18!9 +ACT 1:18!10 +ACT 1:18!11 +ACT 1:18!12 +ACT 1:18!13 +ACT 1:18!14 +ACT 1:18!15 +ACT 1:18!16 +ACT 1:18!17 +ACT 1:18!18 +ACT 1:18!19 +ACT 1:18!20 +ACT 1:19!1 +ACT 1:19!2 +ACT 1:19!3 +ACT 1:19!4 +ACT 1:19!5 +ACT 1:19!6 +ACT 1:19!7 +ACT 1:19!8 +ACT 1:19!9 +ACT 1:19!10 +ACT 1:19!11 +ACT 1:19!12 +ACT 1:19!13 +ACT 1:19!14 +ACT 1:19!15 +ACT 1:19!16 +ACT 1:19!17 +ACT 1:19!18 +ACT 1:19!19 +ACT 1:19!20 +ACT 1:19!21 +ACT 1:20!2 +ACT 1:20!1 +ACT 1:20!3 +ACT 1:20!4 +ACT 1:20!5 +ACT 1:20!6 +ACT 1:20!7 +ACT 1:20!8 +ACT 1:20!9 +ACT 1:20!10 +ACT 1:20!11 +ACT 1:20!12 +ACT 1:20!13 +ACT 1:20!14 +ACT 1:20!15 +ACT 1:20!16 +ACT 1:20!17 +ACT 1:20!18 +ACT 1:20!19 +ACT 1:20!20 +ACT 1:20!21 +ACT 1:20!22 +ACT 1:20!23 +ACT 1:21!2 +ACT 1:21!1 +ACT 1:21!3 +ACT 1:21!6 +ACT 1:21!4 +ACT 1:21!5 +ACT 1:21!7 +ACT 1:21!8 +ACT 1:21!9 +ACT 1:21!10 +ACT 1:21!11 +ACT 1:21!12 +ACT 1:21!13 +ACT 1:21!14 +ACT 1:21!15 +ACT 1:21!16 +ACT 1:21!17 +ACT 1:21!18 +ACT 1:22!1 +ACT 1:22!2 +ACT 1:22!3 +ACT 1:22!4 +ACT 1:22!5 +ACT 1:22!6 +ACT 1:22!7 +ACT 1:22!8 +ACT 1:22!9 +ACT 1:22!10 +ACT 1:22!11 +ACT 1:22!12 +ACT 1:22!13 +ACT 1:22!14 +ACT 1:22!15 +ACT 1:22!16 +ACT 1:22!17 +ACT 1:22!18 +ACT 1:22!19 +ACT 1:22!20 +ACT 1:22!21 +ACT 1:23!1 +ACT 1:23!2 +ACT 1:23!3 +ACT 1:23!4 +ACT 1:23!5 +ACT 1:23!6 +ACT 1:23!7 +ACT 1:23!8 +ACT 1:23!9 +ACT 1:23!10 +ACT 1:23!11 +ACT 1:23!12 +ACT 1:24!1 +ACT 1:24!2 +ACT 1:24!3 +ACT 1:24!5 +ACT 1:24!6 +ACT 1:24!7 +ACT 1:24!4 +ACT 1:24!8 +ACT 1:24!9 +ACT 1:24!10 +ACT 1:24!11 +ACT 1:24!12 +ACT 1:24!13 +ACT 1:24!14 +ACT 1:24!15 +ACT 1:25!1 +ACT 1:25!2 +ACT 1:25!3 +ACT 1:25!4 +ACT 1:25!5 +ACT 1:25!6 +ACT 1:25!7 +ACT 1:25!8 +ACT 1:25!9 +ACT 1:25!10 +ACT 1:25!11 +ACT 1:25!12 +ACT 1:25!13 +ACT 1:25!14 +ACT 1:25!15 +ACT 1:25!16 +ACT 1:25!17 +ACT 1:25!18 +ACT 1:26!1 +ACT 1:26!2 +ACT 1:26!3 +ACT 1:26!4 +ACT 1:26!5 +ACT 1:26!6 +ACT 1:26!7 +ACT 1:26!8 +ACT 1:26!9 +ACT 1:26!10 +ACT 1:26!11 +ACT 1:26!12 +ACT 1:26!13 +ACT 1:26!14 +ACT 1:26!15 +ACT 1:26!16 +ACT 2:1!1 +ACT 2:1!2 +ACT 2:1!3 +ACT 2:1!4 +ACT 2:1!5 +ACT 2:1!6 +ACT 2:1!7 +ACT 2:1!8 +ACT 2:1!9 +ACT 2:1!10 +ACT 2:1!11 +ACT 2:1!12 +ACT 2:1!13 +ACT 2:1!14 +ACT 2:2!1 +ACT 2:2!2 +ACT 2:2!3 +ACT 2:2!4 +ACT 2:2!5 +ACT 2:2!6 +ACT 2:2!7 +ACT 2:2!8 +ACT 2:2!9 +ACT 2:2!10 +ACT 2:2!11 +ACT 2:2!12 +ACT 2:2!13 +ACT 2:2!14 +ACT 2:2!15 +ACT 2:2!16 +ACT 2:2!17 +ACT 2:2!18 +ACT 2:2!19 +ACT 2:3!1 +ACT 2:3!2 +ACT 2:3!3 +ACT 2:3!4 +ACT 2:3!5 +ACT 2:3!6 +ACT 2:3!7 +ACT 2:3!8 +ACT 2:3!9 +ACT 2:3!10 +ACT 2:3!11 +ACT 2:3!12 +ACT 2:3!13 +ACT 2:4!1 +ACT 2:4!2 +ACT 2:4!3 +ACT 2:4!4 +ACT 2:4!5 +ACT 2:4!6 +ACT 2:4!7 +ACT 2:4!8 +ACT 2:4!9 +ACT 2:4!10 +ACT 2:4!11 +ACT 2:4!12 +ACT 2:4!13 +ACT 2:4!14 +ACT 2:4!15 +ACT 2:4!16 +ACT 2:5!2 +ACT 2:5!1 +ACT 2:5!5 +ACT 2:5!3 +ACT 2:5!4 +ACT 2:5!6 +ACT 2:5!7 +ACT 2:5!8 +ACT 2:5!9 +ACT 2:5!10 +ACT 2:5!11 +ACT 2:5!12 +ACT 2:5!13 +ACT 2:5!14 +ACT 2:5!15 +ACT 2:6!2 +ACT 2:6!1 +ACT 2:6!3 +ACT 2:6!4 +ACT 2:6!5 +ACT 2:6!6 +ACT 2:6!7 +ACT 2:6!8 +ACT 2:6!9 +ACT 2:6!10 +ACT 2:6!11 +ACT 2:6!12 +ACT 2:6!13 +ACT 2:6!14 +ACT 2:6!15 +ACT 2:6!16 +ACT 2:6!17 +ACT 2:6!18 +ACT 2:6!19 +ACT 2:7!2 +ACT 2:7!1 +ACT 2:7!3 +ACT 2:7!4 +ACT 2:7!5 +ACT 2:7!7 +ACT 2:7!6 +ACT 2:7!8 +ACT 2:7!9 +ACT 2:7!11 +ACT 2:7!12 +ACT 2:7!10 +ACT 2:7!13 +ACT 2:8!1 +ACT 2:8!2 +ACT 2:8!3 +ACT 2:8!4 +ACT 2:8!5 +ACT 2:8!6 +ACT 2:8!7 +ACT 2:8!8 +ACT 2:8!9 +ACT 2:8!10 +ACT 2:8!11 +ACT 2:8!12 +ACT 2:9!1 +ACT 2:9!2 +ACT 2:9!3 +ACT 2:9!4 +ACT 2:9!5 +ACT 2:9!6 +ACT 2:9!7 +ACT 2:9!8 +ACT 2:9!9 +ACT 2:9!10 +ACT 2:9!12 +ACT 2:9!11 +ACT 2:9!13 +ACT 2:9!14 +ACT 2:9!15 +ACT 2:9!16 +ACT 2:9!17 +ACT 2:9!18 +ACT 2:10!2 +ACT 2:10!1 +ACT 2:10!3 +ACT 2:10!4 +ACT 2:10!5 +ACT 2:10!6 +ACT 2:10!7 +ACT 2:10!8 +ACT 2:10!9 +ACT 2:10!10 +ACT 2:10!11 +ACT 2:10!12 +ACT 2:10!13 +ACT 2:10!14 +ACT 2:10!15 +ACT 2:10!16 +ACT 2:10!17 +ACT 2:11!2 +ACT 2:11!1 +ACT 2:11!3 +ACT 2:11!4 +ACT 2:11!5 +ACT 2:11!6 +ACT 2:11!7 +ACT 2:11!8 +ACT 2:11!9 +ACT 2:11!10 +ACT 2:11!11 +ACT 2:11!12 +ACT 2:11!13 +ACT 2:11!14 +ACT 2:11!15 +ACT 2:11!16 +ACT 2:11!17 +ACT 2:12!2 +ACT 2:12!1 +ACT 2:12!3 +ACT 2:12!4 +ACT 2:12!5 +ACT 2:12!6 +ACT 2:12!7 +ACT 2:12!8 +ACT 2:12!9 +ACT 2:12!11 +ACT 2:12!12 +ACT 2:12!10 +ACT 2:12!13 +ACT 2:13!2 +ACT 2:13!1 +ACT 2:13!3 +ACT 2:13!4 +ACT 2:13!5 +ACT 2:13!6 +ACT 2:13!7 +ACT 2:13!8 +ACT 2:14!2 +ACT 2:14!1 +ACT 2:14!5 +ACT 2:14!6 +ACT 2:14!7 +ACT 2:14!3 +ACT 2:14!4 +ACT 2:14!8 +ACT 2:14!9 +ACT 2:14!10 +ACT 2:14!11 +ACT 2:14!12 +ACT 2:14!13 +ACT 2:14!14 +ACT 2:14!15 +ACT 2:14!16 +ACT 2:14!17 +ACT 2:14!18 +ACT 2:14!19 +ACT 2:14!20 +ACT 2:14!21 +ACT 2:14!22 +ACT 2:14!23 +ACT 2:14!24 +ACT 2:14!25 +ACT 2:14!26 +ACT 2:14!27 +ACT 2:14!28 +ACT 2:14!29 +ACT 2:14!30 +ACT 2:15!2 +ACT 2:15!1 +ACT 2:15!3 +ACT 2:15!4 +ACT 2:15!5 +ACT 2:15!6 +ACT 2:15!7 +ACT 2:15!9 +ACT 2:15!8 +ACT 2:15!10 +ACT 2:15!11 +ACT 2:15!12 +ACT 2:15!13 +ACT 2:16!1 +ACT 2:16!2 +ACT 2:16!3 +ACT 2:16!4 +ACT 2:16!5 +ACT 2:16!6 +ACT 2:16!7 +ACT 2:16!8 +ACT 2:16!9 +ACT 2:17!1 +ACT 2:17!2 +ACT 2:17!3 +ACT 2:17!4 +ACT 2:17!5 +ACT 2:17!6 +ACT 2:17!7 +ACT 2:17!8 +ACT 2:17!9 +ACT 2:17!10 +ACT 2:17!11 +ACT 2:17!12 +ACT 2:17!13 +ACT 2:17!14 +ACT 2:17!15 +ACT 2:17!16 +ACT 2:17!17 +ACT 2:17!18 +ACT 2:17!19 +ACT 2:17!20 +ACT 2:17!21 +ACT 2:17!22 +ACT 2:17!23 +ACT 2:17!24 +ACT 2:17!25 +ACT 2:17!26 +ACT 2:17!27 +ACT 2:17!28 +ACT 2:17!29 +ACT 2:17!30 +ACT 2:17!31 +ACT 2:17!32 +ACT 2:17!33 +ACT 2:17!34 +ACT 2:17!35 +ACT 2:17!36 +ACT 2:17!37 +ACT 2:17!38 +ACT 2:18!1 +ACT 2:18!2 +ACT 2:18!3 +ACT 2:18!4 +ACT 2:18!5 +ACT 2:18!6 +ACT 2:18!7 +ACT 2:18!8 +ACT 2:18!9 +ACT 2:18!10 +ACT 2:18!11 +ACT 2:18!12 +ACT 2:18!13 +ACT 2:18!14 +ACT 2:18!15 +ACT 2:18!16 +ACT 2:18!17 +ACT 2:18!18 +ACT 2:18!19 +ACT 2:18!20 +ACT 2:18!21 +ACT 2:19!1 +ACT 2:19!2 +ACT 2:19!3 +ACT 2:19!4 +ACT 2:19!5 +ACT 2:19!6 +ACT 2:19!7 +ACT 2:19!8 +ACT 2:19!9 +ACT 2:19!10 +ACT 2:19!11 +ACT 2:19!12 +ACT 2:19!13 +ACT 2:19!14 +ACT 2:19!15 +ACT 2:19!16 +ACT 2:19!17 +ACT 2:19!18 +ACT 2:19!19 +ACT 2:20!1 +ACT 2:20!2 +ACT 2:20!3 +ACT 2:20!4 +ACT 2:20!5 +ACT 2:20!6 +ACT 2:20!7 +ACT 2:20!8 +ACT 2:20!9 +ACT 2:20!10 +ACT 2:20!11 +ACT 2:20!12 +ACT 2:20!13 +ACT 2:20!14 +ACT 2:20!15 +ACT 2:20!16 +ACT 2:20!17 +ACT 2:20!18 +ACT 2:21!1 +ACT 2:21!2 +ACT 2:21!3 +ACT 2:21!5 +ACT 2:21!4 +ACT 2:21!6 +ACT 2:21!7 +ACT 2:21!8 +ACT 2:21!9 +ACT 2:21!10 +ACT 2:22!1 +ACT 2:22!2 +ACT 2:22!3 +ACT 2:22!4 +ACT 2:22!5 +ACT 2:22!6 +ACT 2:22!7 +ACT 2:22!8 +ACT 2:22!9 +ACT 2:22!10 +ACT 2:22!11 +ACT 2:22!12 +ACT 2:22!13 +ACT 2:22!14 +ACT 2:22!15 +ACT 2:22!16 +ACT 2:22!17 +ACT 2:22!18 +ACT 2:22!19 +ACT 2:22!20 +ACT 2:22!21 +ACT 2:22!22 +ACT 2:22!23 +ACT 2:22!24 +ACT 2:22!25 +ACT 2:22!26 +ACT 2:22!27 +ACT 2:22!28 +ACT 2:22!29 +ACT 2:22!30 +ACT 2:22!31 +ACT 2:22!32 +ACT 2:22!33 +ACT 2:23!1 +ACT 2:23!2 +ACT 2:23!3 +ACT 2:23!4 +ACT 2:23!5 +ACT 2:23!6 +ACT 2:23!7 +ACT 2:23!8 +ACT 2:23!9 +ACT 2:23!10 +ACT 2:23!11 +ACT 2:23!12 +ACT 2:23!13 +ACT 2:23!14 +ACT 2:24!1 +ACT 2:24!2 +ACT 2:24!3 +ACT 2:24!4 +ACT 2:24!5 +ACT 2:24!6 +ACT 2:24!7 +ACT 2:24!8 +ACT 2:24!9 +ACT 2:24!10 +ACT 2:24!11 +ACT 2:24!12 +ACT 2:24!13 +ACT 2:24!14 +ACT 2:24!15 +ACT 2:24!16 +ACT 2:24!17 +ACT 2:25!2 +ACT 2:25!1 +ACT 2:25!3 +ACT 2:25!4 +ACT 2:25!5 +ACT 2:25!6 +ACT 2:25!7 +ACT 2:25!8 +ACT 2:25!9 +ACT 2:25!10 +ACT 2:25!11 +ACT 2:25!12 +ACT 2:25!13 +ACT 2:25!14 +ACT 2:25!15 +ACT 2:25!16 +ACT 2:25!17 +ACT 2:25!18 +ACT 2:25!19 +ACT 2:25!20 +ACT 2:26!1 +ACT 2:26!2 +ACT 2:26!3 +ACT 2:26!4 +ACT 2:26!5 +ACT 2:26!6 +ACT 2:26!7 +ACT 2:26!8 +ACT 2:26!9 +ACT 2:26!10 +ACT 2:26!11 +ACT 2:26!13 +ACT 2:26!12 +ACT 2:26!14 +ACT 2:26!15 +ACT 2:26!16 +ACT 2:26!17 +ACT 2:26!18 +ACT 2:26!19 +ACT 2:26!20 +ACT 2:27!1 +ACT 2:27!2 +ACT 2:27!3 +ACT 2:27!4 +ACT 2:27!5 +ACT 2:27!6 +ACT 2:27!7 +ACT 2:27!8 +ACT 2:27!9 +ACT 2:27!10 +ACT 2:27!11 +ACT 2:27!12 +ACT 2:27!13 +ACT 2:27!14 +ACT 2:27!15 +ACT 2:28!1 +ACT 2:28!2 +ACT 2:28!3 +ACT 2:28!4 +ACT 2:28!5 +ACT 2:28!6 +ACT 2:28!7 +ACT 2:28!8 +ACT 2:28!9 +ACT 2:28!10 +ACT 2:28!11 +ACT 2:29!1 +ACT 2:29!2 +ACT 2:29!3 +ACT 2:29!4 +ACT 2:29!5 +ACT 2:29!6 +ACT 2:29!7 +ACT 2:29!8 +ACT 2:29!9 +ACT 2:29!10 +ACT 2:29!11 +ACT 2:29!12 +ACT 2:29!13 +ACT 2:29!14 +ACT 2:29!15 +ACT 2:29!16 +ACT 2:29!17 +ACT 2:29!18 +ACT 2:29!19 +ACT 2:29!20 +ACT 2:29!21 +ACT 2:29!22 +ACT 2:29!23 +ACT 2:29!24 +ACT 2:29!25 +ACT 2:29!26 +ACT 2:29!27 +ACT 2:29!28 +ACT 2:30!2 +ACT 2:30!1 +ACT 2:30!3 +ACT 2:30!4 +ACT 2:30!5 +ACT 2:30!6 +ACT 2:30!7 +ACT 2:30!8 +ACT 2:30!9 +ACT 2:30!10 +ACT 2:30!11 +ACT 2:30!12 +ACT 2:30!13 +ACT 2:30!14 +ACT 2:30!15 +ACT 2:30!16 +ACT 2:30!17 +ACT 2:30!18 +ACT 2:30!19 +ACT 2:30!20 +ACT 2:30!21 +ACT 2:31!1 +ACT 2:31!2 +ACT 2:31!3 +ACT 2:31!4 +ACT 2:31!5 +ACT 2:31!6 +ACT 2:31!7 +ACT 2:31!8 +ACT 2:31!9 +ACT 2:31!10 +ACT 2:31!11 +ACT 2:31!12 +ACT 2:31!13 +ACT 2:31!14 +ACT 2:31!15 +ACT 2:31!16 +ACT 2:31!17 +ACT 2:31!18 +ACT 2:32!1 +ACT 2:32!2 +ACT 2:32!3 +ACT 2:32!4 +ACT 2:32!5 +ACT 2:32!6 +ACT 2:32!7 +ACT 2:32!8 +ACT 2:32!9 +ACT 2:32!10 +ACT 2:32!11 +ACT 2:33!3 +ACT 2:33!1 +ACT 2:33!2 +ACT 2:33!4 +ACT 2:33!5 +ACT 2:33!6 +ACT 2:33!8 +ACT 2:33!7 +ACT 2:33!9 +ACT 2:33!10 +ACT 2:33!11 +ACT 2:33!12 +ACT 2:33!13 +ACT 2:33!14 +ACT 2:33!15 +ACT 2:33!16 +ACT 2:33!17 +ACT 2:33!18 +ACT 2:33!19 +ACT 2:33!20 +ACT 2:33!21 +ACT 2:33!22 +ACT 2:33!23 +ACT 2:33!24 +ACT 2:33!25 +ACT 2:34!2 +ACT 2:34!1 +ACT 2:34!3 +ACT 2:34!4 +ACT 2:34!5 +ACT 2:34!6 +ACT 2:34!7 +ACT 2:34!9 +ACT 2:34!8 +ACT 2:34!10 +ACT 2:34!11 +ACT 2:34!12 +ACT 2:34!13 +ACT 2:34!14 +ACT 2:34!15 +ACT 2:34!16 +ACT 2:34!17 +ACT 2:34!18 +ACT 2:34!19 +ACT 2:35!1 +ACT 2:35!2 +ACT 2:35!3 +ACT 2:35!4 +ACT 2:35!5 +ACT 2:35!6 +ACT 2:35!7 +ACT 2:35!8 +ACT 2:35!9 +ACT 2:35!10 +ACT 2:36!2 +ACT 2:36!1 +ACT 2:36!3 +ACT 2:36!4 +ACT 2:36!5 +ACT 2:36!6 +ACT 2:36!7 +ACT 2:36!8 +ACT 2:36!9 +ACT 2:36!11 +ACT 2:36!12 +ACT 2:36!13 +ACT 2:36!14 +ACT 2:36!15 +ACT 2:36!10 +ACT 2:36!16 +ACT 2:36!17 +ACT 2:36!18 +ACT 2:36!19 +ACT 2:36!20 +ACT 2:36!21 +ACT 2:37!2 +ACT 2:37!1 +ACT 2:37!3 +ACT 2:37!4 +ACT 2:37!5 +ACT 2:37!7 +ACT 2:37!6 +ACT 2:37!8 +ACT 2:37!9 +ACT 2:37!10 +ACT 2:37!11 +ACT 2:37!12 +ACT 2:37!13 +ACT 2:37!14 +ACT 2:37!15 +ACT 2:37!16 +ACT 2:37!17 +ACT 2:37!18 +ACT 2:38!2 +ACT 2:38!1 +ACT 2:38!3 +ACT 2:38!4 +ACT 2:38!5 +ACT 2:38!6 +ACT 2:38!7 +ACT 2:38!8 +ACT 2:38!9 +ACT 2:38!10 +ACT 2:38!11 +ACT 2:38!12 +ACT 2:38!13 +ACT 2:38!14 +ACT 2:38!15 +ACT 2:38!16 +ACT 2:38!17 +ACT 2:38!18 +ACT 2:38!19 +ACT 2:38!20 +ACT 2:38!21 +ACT 2:38!22 +ACT 2:38!23 +ACT 2:38!24 +ACT 2:38!25 +ACT 2:38!26 +ACT 2:39!2 +ACT 2:39!1 +ACT 2:39!3 +ACT 2:39!4 +ACT 2:39!5 +ACT 2:39!6 +ACT 2:39!7 +ACT 2:39!8 +ACT 2:39!9 +ACT 2:39!10 +ACT 2:39!11 +ACT 2:39!12 +ACT 2:39!13 +ACT 2:39!14 +ACT 2:39!16 +ACT 2:39!15 +ACT 2:39!17 +ACT 2:39!18 +ACT 2:39!19 +ACT 2:39!20 +ACT 2:39!21 +ACT 2:40!2 +ACT 2:40!1 +ACT 2:40!3 +ACT 2:40!4 +ACT 2:40!5 +ACT 2:40!6 +ACT 2:40!7 +ACT 2:40!8 +ACT 2:40!9 +ACT 2:40!10 +ACT 2:40!11 +ACT 2:40!12 +ACT 2:40!13 +ACT 2:40!14 +ACT 2:40!15 +ACT 2:40!16 +ACT 2:41!2 +ACT 2:41!3 +ACT 2:41!1 +ACT 2:41!4 +ACT 2:41!5 +ACT 2:41!6 +ACT 2:41!7 +ACT 2:41!8 +ACT 2:41!9 +ACT 2:41!10 +ACT 2:41!11 +ACT 2:41!12 +ACT 2:41!13 +ACT 2:41!14 +ACT 2:41!15 +ACT 2:41!16 +ACT 2:41!17 +ACT 2:42!2 +ACT 2:42!1 +ACT 2:42!3 +ACT 2:42!4 +ACT 2:42!5 +ACT 2:42!6 +ACT 2:42!7 +ACT 2:42!8 +ACT 2:42!9 +ACT 2:42!10 +ACT 2:42!11 +ACT 2:42!12 +ACT 2:42!13 +ACT 2:42!14 +ACT 2:42!15 +ACT 2:42!16 +ACT 2:42!17 +ACT 2:43!2 +ACT 2:43!1 +ACT 2:43!3 +ACT 2:43!4 +ACT 2:43!5 +ACT 2:43!7 +ACT 2:43!6 +ACT 2:43!8 +ACT 2:43!9 +ACT 2:43!10 +ACT 2:43!11 +ACT 2:43!12 +ACT 2:43!13 +ACT 2:43!14 +ACT 2:44!2 +ACT 2:44!1 +ACT 2:44!3 +ACT 2:44!4 +ACT 2:44!5 +ACT 2:44!6 +ACT 2:44!7 +ACT 2:44!8 +ACT 2:44!9 +ACT 2:44!10 +ACT 2:45!1 +ACT 2:45!2 +ACT 2:45!3 +ACT 2:45!4 +ACT 2:45!5 +ACT 2:45!6 +ACT 2:45!7 +ACT 2:45!8 +ACT 2:45!9 +ACT 2:45!10 +ACT 2:45!11 +ACT 2:45!12 +ACT 2:45!13 +ACT 2:45!14 +ACT 2:45!15 +ACT 2:45!16 +ACT 2:46!3 +ACT 2:46!1 +ACT 2:46!2 +ACT 2:46!4 +ACT 2:46!5 +ACT 2:46!6 +ACT 2:46!7 +ACT 2:46!8 +ACT 2:46!10 +ACT 2:46!9 +ACT 2:46!11 +ACT 2:46!12 +ACT 2:46!13 +ACT 2:46!14 +ACT 2:46!15 +ACT 2:46!16 +ACT 2:46!17 +ACT 2:46!18 +ACT 2:46!19 +ACT 2:46!20 +ACT 2:47!1 +ACT 2:47!2 +ACT 2:47!3 +ACT 2:47!4 +ACT 2:47!5 +ACT 2:47!6 +ACT 2:47!7 +ACT 2:47!8 +ACT 2:47!9 +ACT 2:47!10 +ACT 2:47!12 +ACT 2:47!11 +ACT 2:47!13 +ACT 2:47!14 +ACT 2:47!15 +ACT 2:47!16 +ACT 2:47!17 +ACT 2:47!18 +ACT 2:47!19 +ACT 2:47!20 +ACT 2:47!21 +ACT 3:1!2 +ACT 3:1!1 +ACT 3:1!3 +ACT 3:1!4 +ACT 3:1!5 +ACT 3:1!6 +ACT 3:1!7 +ACT 3:1!8 +ACT 3:1!9 +ACT 3:1!10 +ACT 3:1!11 +ACT 3:1!12 +ACT 3:1!13 +ACT 3:1!14 +ACT 3:1!15 +ACT 3:2!1 +ACT 3:2!2 +ACT 3:2!3 +ACT 3:2!4 +ACT 3:2!5 +ACT 3:2!6 +ACT 3:2!7 +ACT 3:2!8 +ACT 3:2!9 +ACT 3:2!10 +ACT 3:2!11 +ACT 3:2!12 +ACT 3:2!13 +ACT 3:2!14 +ACT 3:2!15 +ACT 3:2!16 +ACT 3:2!17 +ACT 3:2!18 +ACT 3:2!19 +ACT 3:2!20 +ACT 3:2!21 +ACT 3:2!22 +ACT 3:2!23 +ACT 3:2!24 +ACT 3:2!25 +ACT 3:2!26 +ACT 3:2!27 +ACT 3:2!28 +ACT 3:2!29 +ACT 3:2!30 +ACT 3:2!31 +ACT 3:3!1 +ACT 3:3!2 +ACT 3:3!3 +ACT 3:3!4 +ACT 3:3!5 +ACT 3:3!6 +ACT 3:3!7 +ACT 3:3!8 +ACT 3:3!9 +ACT 3:3!10 +ACT 3:3!11 +ACT 3:3!12 +ACT 3:3!13 +ACT 3:4!2 +ACT 3:4!3 +ACT 3:4!1 +ACT 3:4!4 +ACT 3:4!5 +ACT 3:4!6 +ACT 3:4!7 +ACT 3:4!8 +ACT 3:4!9 +ACT 3:4!10 +ACT 3:4!11 +ACT 3:4!12 +ACT 3:5!2 +ACT 3:5!1 +ACT 3:5!3 +ACT 3:5!4 +ACT 3:5!5 +ACT 3:5!6 +ACT 3:5!7 +ACT 3:5!8 +ACT 3:5!9 +ACT 3:6!2 +ACT 3:6!1 +ACT 3:6!3 +ACT 3:6!4 +ACT 3:6!5 +ACT 3:6!6 +ACT 3:6!7 +ACT 3:6!8 +ACT 3:6!9 +ACT 3:6!11 +ACT 3:6!10 +ACT 3:6!12 +ACT 3:6!13 +ACT 3:6!14 +ACT 3:6!15 +ACT 3:6!16 +ACT 3:6!17 +ACT 3:6!18 +ACT 3:6!19 +ACT 3:6!20 +ACT 3:6!21 +ACT 3:6!22 +ACT 3:6!23 +ACT 3:7!1 +ACT 3:7!2 +ACT 3:7!3 +ACT 3:7!4 +ACT 3:7!5 +ACT 3:7!6 +ACT 3:7!7 +ACT 3:7!8 +ACT 3:7!10 +ACT 3:7!9 +ACT 3:7!11 +ACT 3:7!12 +ACT 3:7!13 +ACT 3:7!14 +ACT 3:7!15 +ACT 3:7!16 +ACT 3:7!17 +ACT 3:8!1 +ACT 3:8!2 +ACT 3:8!3 +ACT 3:8!4 +ACT 3:8!5 +ACT 3:8!6 +ACT 3:8!7 +ACT 3:8!8 +ACT 3:8!9 +ACT 3:8!10 +ACT 3:8!11 +ACT 3:8!12 +ACT 3:8!13 +ACT 3:8!14 +ACT 3:8!15 +ACT 3:8!16 +ACT 3:8!17 +ACT 3:8!18 +ACT 3:8!19 +ACT 3:9!1 +ACT 3:9!2 +ACT 3:9!3 +ACT 3:9!4 +ACT 3:9!5 +ACT 3:9!6 +ACT 3:9!7 +ACT 3:9!8 +ACT 3:9!9 +ACT 3:9!10 +ACT 3:9!11 +ACT 3:10!2 +ACT 3:10!1 +ACT 3:10!3 +ACT 3:10!4 +ACT 3:10!5 +ACT 3:10!6 +ACT 3:10!7 +ACT 3:10!8 +ACT 3:10!9 +ACT 3:10!10 +ACT 3:10!11 +ACT 3:10!12 +ACT 3:10!13 +ACT 3:10!14 +ACT 3:10!15 +ACT 3:10!16 +ACT 3:10!17 +ACT 3:10!18 +ACT 3:10!19 +ACT 3:10!20 +ACT 3:10!21 +ACT 3:10!22 +ACT 3:10!23 +ACT 3:10!24 +ACT 3:10!25 +ACT 3:10!26 +ACT 3:11!2 +ACT 3:11!1 +ACT 3:11!3 +ACT 3:11!4 +ACT 3:11!5 +ACT 3:11!6 +ACT 3:11!7 +ACT 3:11!8 +ACT 3:11!9 +ACT 3:11!10 +ACT 3:11!11 +ACT 3:11!12 +ACT 3:11!13 +ACT 3:11!14 +ACT 3:11!15 +ACT 3:11!16 +ACT 3:11!17 +ACT 3:11!18 +ACT 3:11!19 +ACT 3:11!20 +ACT 3:11!21 +ACT 3:12!2 +ACT 3:12!1 +ACT 3:12!3 +ACT 3:12!4 +ACT 3:12!5 +ACT 3:12!6 +ACT 3:12!7 +ACT 3:12!8 +ACT 3:12!9 +ACT 3:12!10 +ACT 3:12!11 +ACT 3:12!12 +ACT 3:12!13 +ACT 3:12!14 +ACT 3:12!15 +ACT 3:12!16 +ACT 3:12!17 +ACT 3:12!18 +ACT 3:12!19 +ACT 3:12!20 +ACT 3:12!21 +ACT 3:12!22 +ACT 3:12!23 +ACT 3:12!24 +ACT 3:12!25 +ACT 3:12!26 +ACT 3:12!27 +ACT 3:13!1 +ACT 3:13!2 +ACT 3:13!3 +ACT 3:13!4 +ACT 3:13!5 +ACT 3:13!6 +ACT 3:13!7 +ACT 3:13!8 +ACT 3:13!9 +ACT 3:13!10 +ACT 3:13!11 +ACT 3:13!12 +ACT 3:13!13 +ACT 3:13!14 +ACT 3:13!15 +ACT 3:13!16 +ACT 3:13!17 +ACT 3:13!20 +ACT 3:13!18 +ACT 3:13!19 +ACT 3:13!21 +ACT 3:13!22 +ACT 3:13!23 +ACT 3:13!24 +ACT 3:13!25 +ACT 3:13!26 +ACT 3:13!27 +ACT 3:13!28 +ACT 3:13!29 +ACT 3:14!2 +ACT 3:14!1 +ACT 3:14!3 +ACT 3:14!4 +ACT 3:14!5 +ACT 3:14!6 +ACT 3:14!7 +ACT 3:14!8 +ACT 3:14!9 +ACT 3:14!10 +ACT 3:14!11 +ACT 3:14!12 +ACT 3:14!13 +ACT 3:15!2 +ACT 3:15!1 +ACT 3:15!3 +ACT 3:15!4 +ACT 3:15!5 +ACT 3:15!6 +ACT 3:15!7 +ACT 3:15!8 +ACT 3:15!9 +ACT 3:15!10 +ACT 3:15!11 +ACT 3:15!12 +ACT 3:15!13 +ACT 3:15!14 +ACT 3:15!15 +ACT 3:15!16 +ACT 3:16!1 +ACT 3:16!2 +ACT 3:16!3 +ACT 3:16!4 +ACT 3:16!5 +ACT 3:16!6 +ACT 3:16!7 +ACT 3:16!8 +ACT 3:16!9 +ACT 3:16!10 +ACT 3:16!11 +ACT 3:16!12 +ACT 3:16!13 +ACT 3:16!14 +ACT 3:16!15 +ACT 3:16!16 +ACT 3:16!17 +ACT 3:16!18 +ACT 3:16!19 +ACT 3:16!20 +ACT 3:16!21 +ACT 3:16!22 +ACT 3:16!23 +ACT 3:16!24 +ACT 3:16!25 +ACT 3:16!26 +ACT 3:16!27 +ACT 3:16!28 +ACT 3:16!29 +ACT 3:16!30 +ACT 3:17!1 +ACT 3:17!3 +ACT 3:17!2 +ACT 3:17!4 +ACT 3:17!5 +ACT 3:17!6 +ACT 3:17!7 +ACT 3:17!8 +ACT 3:17!9 +ACT 3:17!10 +ACT 3:17!11 +ACT 3:17!12 +ACT 3:17!13 +ACT 3:18!2 +ACT 3:18!1 +ACT 3:18!3 +ACT 3:18!4 +ACT 3:18!5 +ACT 3:18!6 +ACT 3:18!7 +ACT 3:18!8 +ACT 3:18!9 +ACT 3:18!10 +ACT 3:18!11 +ACT 3:18!12 +ACT 3:18!13 +ACT 3:18!14 +ACT 3:18!15 +ACT 3:18!16 +ACT 3:19!2 +ACT 3:19!1 +ACT 3:19!3 +ACT 3:19!4 +ACT 3:19!5 +ACT 3:19!6 +ACT 3:19!7 +ACT 3:19!8 +ACT 3:19!9 +ACT 3:19!10 +ACT 3:20!1 +ACT 3:20!2 +ACT 3:20!3 +ACT 3:20!4 +ACT 3:20!5 +ACT 3:20!6 +ACT 3:20!7 +ACT 3:20!8 +ACT 3:20!9 +ACT 3:20!10 +ACT 3:20!11 +ACT 3:20!12 +ACT 3:20!13 +ACT 3:20!14 +ACT 3:20!15 +ACT 3:20!16 +ACT 3:21!2 +ACT 3:21!4 +ACT 3:21!1 +ACT 3:21!3 +ACT 3:21!5 +ACT 3:21!6 +ACT 3:21!7 +ACT 3:21!8 +ACT 3:21!9 +ACT 3:21!10 +ACT 3:21!11 +ACT 3:21!12 +ACT 3:21!13 +ACT 3:21!14 +ACT 3:21!15 +ACT 3:21!16 +ACT 3:21!17 +ACT 3:21!18 +ACT 3:21!19 +ACT 3:21!20 +ACT 3:21!21 +ACT 3:22!2 +ACT 3:22!1 +ACT 3:22!3 +ACT 3:22!4 +ACT 3:22!5 +ACT 3:22!6 +ACT 3:22!7 +ACT 3:22!8 +ACT 3:22!9 +ACT 3:22!10 +ACT 3:22!11 +ACT 3:22!12 +ACT 3:22!13 +ACT 3:22!14 +ACT 3:22!15 +ACT 3:22!16 +ACT 3:22!17 +ACT 3:22!18 +ACT 3:22!19 +ACT 3:22!20 +ACT 3:22!22 +ACT 3:22!21 +ACT 3:22!23 +ACT 3:22!24 +ACT 3:22!25 +ACT 3:23!2 +ACT 3:23!1 +ACT 3:23!3 +ACT 3:23!4 +ACT 3:23!6 +ACT 3:23!5 +ACT 3:23!7 +ACT 3:23!8 +ACT 3:23!9 +ACT 3:23!10 +ACT 3:23!11 +ACT 3:23!12 +ACT 3:23!13 +ACT 3:23!14 +ACT 3:23!15 +ACT 3:24!3 +ACT 3:24!1 +ACT 3:24!2 +ACT 3:24!4 +ACT 3:24!5 +ACT 3:24!6 +ACT 3:24!7 +ACT 3:24!8 +ACT 3:24!9 +ACT 3:24!10 +ACT 3:24!11 +ACT 3:24!12 +ACT 3:24!13 +ACT 3:24!14 +ACT 3:24!15 +ACT 3:24!16 +ACT 3:24!17 +ACT 3:25!1 +ACT 3:25!2 +ACT 3:25!3 +ACT 3:25!4 +ACT 3:25!5 +ACT 3:25!6 +ACT 3:25!7 +ACT 3:25!8 +ACT 3:25!9 +ACT 3:25!10 +ACT 3:25!11 +ACT 3:25!12 +ACT 3:25!13 +ACT 3:25!14 +ACT 3:25!15 +ACT 3:25!16 +ACT 3:25!17 +ACT 3:25!18 +ACT 3:25!19 +ACT 3:25!20 +ACT 3:25!21 +ACT 3:25!22 +ACT 3:25!23 +ACT 3:25!24 +ACT 3:25!25 +ACT 3:25!26 +ACT 3:25!27 +ACT 3:25!28 +ACT 3:25!29 +ACT 3:25!30 +ACT 3:25!31 +ACT 3:26!1 +ACT 3:26!2 +ACT 3:26!4 +ACT 3:26!5 +ACT 3:26!3 +ACT 3:26!6 +ACT 3:26!7 +ACT 3:26!8 +ACT 3:26!9 +ACT 3:26!10 +ACT 3:26!11 +ACT 3:26!12 +ACT 3:26!13 +ACT 3:26!14 +ACT 3:26!15 +ACT 3:26!16 +ACT 3:26!17 +ACT 3:26!18 +ACT 3:26!19 +ACT 3:26!20 +ACT 4:1!2 +ACT 4:1!1 +ACT 4:1!3 +ACT 4:1!4 +ACT 4:1!5 +ACT 4:1!6 +ACT 4:1!7 +ACT 4:1!8 +ACT 4:1!9 +ACT 4:1!10 +ACT 4:1!11 +ACT 4:1!12 +ACT 4:1!13 +ACT 4:1!14 +ACT 4:1!15 +ACT 4:1!16 +ACT 4:1!17 +ACT 4:1!18 +ACT 4:2!1 +ACT 4:2!2 +ACT 4:2!3 +ACT 4:2!4 +ACT 4:2!5 +ACT 4:2!6 +ACT 4:2!7 +ACT 4:2!8 +ACT 4:2!9 +ACT 4:2!10 +ACT 4:2!11 +ACT 4:2!12 +ACT 4:2!13 +ACT 4:2!14 +ACT 4:2!15 +ACT 4:2!16 +ACT 4:2!17 +ACT 4:3!1 +ACT 4:3!2 +ACT 4:3!3 +ACT 4:3!4 +ACT 4:3!5 +ACT 4:3!6 +ACT 4:3!7 +ACT 4:3!8 +ACT 4:3!9 +ACT 4:3!10 +ACT 4:3!11 +ACT 4:3!12 +ACT 4:3!14 +ACT 4:3!13 +ACT 4:3!15 +ACT 4:3!16 +ACT 4:4!2 +ACT 4:4!1 +ACT 4:4!3 +ACT 4:4!4 +ACT 4:4!5 +ACT 4:4!6 +ACT 4:4!7 +ACT 4:4!8 +ACT 4:4!9 +ACT 4:4!10 +ACT 4:4!11 +ACT 4:4!12 +ACT 4:4!13 +ACT 4:4!14 +ACT 4:4!15 +ACT 4:5!2 +ACT 4:5!1 +ACT 4:5!3 +ACT 4:5!4 +ACT 4:5!5 +ACT 4:5!6 +ACT 4:5!7 +ACT 4:5!8 +ACT 4:5!9 +ACT 4:5!10 +ACT 4:5!11 +ACT 4:5!12 +ACT 4:5!13 +ACT 4:5!14 +ACT 4:5!15 +ACT 4:5!16 +ACT 4:5!17 +ACT 4:6!1 +ACT 4:6!2 +ACT 4:6!3 +ACT 4:6!4 +ACT 4:6!5 +ACT 4:6!6 +ACT 4:6!7 +ACT 4:6!8 +ACT 4:6!9 +ACT 4:6!10 +ACT 4:6!11 +ACT 4:6!12 +ACT 4:6!13 +ACT 4:6!14 +ACT 4:6!15 +ACT 4:6!16 +ACT 4:7!1 +ACT 4:7!2 +ACT 4:7!3 +ACT 4:7!4 +ACT 4:7!5 +ACT 4:7!6 +ACT 4:7!7 +ACT 4:7!8 +ACT 4:7!9 +ACT 4:7!10 +ACT 4:7!11 +ACT 4:7!12 +ACT 4:7!13 +ACT 4:7!14 +ACT 4:7!15 +ACT 4:7!16 +ACT 4:7!17 +ACT 4:8!1 +ACT 4:8!2 +ACT 4:8!3 +ACT 4:8!4 +ACT 4:8!5 +ACT 4:8!6 +ACT 4:8!7 +ACT 4:8!8 +ACT 4:8!9 +ACT 4:8!10 +ACT 4:8!11 +ACT 4:8!12 +ACT 4:8!13 +ACT 4:9!1 +ACT 4:9!2 +ACT 4:9!3 +ACT 4:9!4 +ACT 4:9!5 +ACT 4:9!6 +ACT 4:9!7 +ACT 4:9!8 +ACT 4:9!9 +ACT 4:9!10 +ACT 4:9!11 +ACT 4:9!12 +ACT 4:10!1 +ACT 4:10!2 +ACT 4:10!3 +ACT 4:10!4 +ACT 4:10!5 +ACT 4:10!6 +ACT 4:10!7 +ACT 4:10!8 +ACT 4:10!9 +ACT 4:10!10 +ACT 4:10!11 +ACT 4:10!12 +ACT 4:10!13 +ACT 4:10!14 +ACT 4:10!15 +ACT 4:10!16 +ACT 4:10!17 +ACT 4:10!18 +ACT 4:10!19 +ACT 4:10!20 +ACT 4:10!21 +ACT 4:10!22 +ACT 4:10!23 +ACT 4:10!24 +ACT 4:10!25 +ACT 4:10!26 +ACT 4:10!27 +ACT 4:10!28 +ACT 4:10!29 +ACT 4:10!30 +ACT 4:10!31 +ACT 4:10!32 +ACT 4:10!33 +ACT 4:11!1 +ACT 4:11!2 +ACT 4:11!3 +ACT 4:11!4 +ACT 4:11!5 +ACT 4:11!6 +ACT 4:11!7 +ACT 4:11!8 +ACT 4:11!9 +ACT 4:11!10 +ACT 4:11!11 +ACT 4:11!12 +ACT 4:11!13 +ACT 4:11!14 +ACT 4:11!15 +ACT 4:12!1 +ACT 4:12!2 +ACT 4:12!3 +ACT 4:12!4 +ACT 4:12!5 +ACT 4:12!6 +ACT 4:12!7 +ACT 4:12!8 +ACT 4:12!10 +ACT 4:12!9 +ACT 4:12!12 +ACT 4:12!14 +ACT 4:12!15 +ACT 4:12!16 +ACT 4:12!11 +ACT 4:12!13 +ACT 4:12!17 +ACT 4:12!18 +ACT 4:12!19 +ACT 4:12!20 +ACT 4:12!21 +ACT 4:12!22 +ACT 4:12!23 +ACT 4:12!24 +ACT 4:12!25 +ACT 4:13!2 +ACT 4:13!1 +ACT 4:13!3 +ACT 4:13!4 +ACT 4:13!5 +ACT 4:13!7 +ACT 4:13!8 +ACT 4:13!6 +ACT 4:13!9 +ACT 4:13!10 +ACT 4:13!11 +ACT 4:13!12 +ACT 4:13!13 +ACT 4:13!14 +ACT 4:13!15 +ACT 4:13!16 +ACT 4:13!17 +ACT 4:13!19 +ACT 4:13!18 +ACT 4:13!20 +ACT 4:13!21 +ACT 4:13!22 +ACT 4:13!23 +ACT 4:13!24 +ACT 4:13!25 +ACT 4:14!2 +ACT 4:14!4 +ACT 4:14!1 +ACT 4:14!3 +ACT 4:14!8 +ACT 4:14!9 +ACT 4:14!5 +ACT 4:14!6 +ACT 4:14!7 +ACT 4:14!10 +ACT 4:14!12 +ACT 4:14!11 +ACT 4:15!2 +ACT 4:15!1 +ACT 4:15!3 +ACT 4:15!4 +ACT 4:15!5 +ACT 4:15!6 +ACT 4:15!7 +ACT 4:15!8 +ACT 4:15!9 +ACT 4:15!10 +ACT 4:16!1 +ACT 4:16!2 +ACT 4:16!3 +ACT 4:16!4 +ACT 4:16!5 +ACT 4:16!6 +ACT 4:16!9 +ACT 4:16!8 +ACT 4:16!7 +ACT 4:16!10 +ACT 4:16!11 +ACT 4:16!12 +ACT 4:16!13 +ACT 4:16!14 +ACT 4:16!15 +ACT 4:16!16 +ACT 4:16!17 +ACT 4:16!18 +ACT 4:16!19 +ACT 4:16!20 +ACT 4:16!21 +ACT 4:16!22 +ACT 4:16!23 +ACT 4:17!1 +ACT 4:17!2 +ACT 4:17!3 +ACT 4:17!4 +ACT 4:17!5 +ACT 4:17!6 +ACT 4:17!7 +ACT 4:17!8 +ACT 4:17!9 +ACT 4:17!10 +ACT 4:17!11 +ACT 4:17!12 +ACT 4:17!13 +ACT 4:17!14 +ACT 4:17!15 +ACT 4:17!16 +ACT 4:17!17 +ACT 4:17!18 +ACT 4:17!19 +ACT 4:18!1 +ACT 4:18!2 +ACT 4:18!3 +ACT 4:18!4 +ACT 4:18!5 +ACT 4:18!6 +ACT 4:18!7 +ACT 4:18!8 +ACT 4:18!9 +ACT 4:18!10 +ACT 4:18!11 +ACT 4:18!12 +ACT 4:18!13 +ACT 4:18!14 +ACT 4:19!2 +ACT 4:19!1 +ACT 4:19!3 +ACT 4:19!4 +ACT 4:19!5 +ACT 4:19!6 +ACT 4:19!7 +ACT 4:19!8 +ACT 4:19!9 +ACT 4:19!10 +ACT 4:19!11 +ACT 4:19!12 +ACT 4:19!13 +ACT 4:19!14 +ACT 4:19!15 +ACT 4:19!16 +ACT 4:19!17 +ACT 4:19!18 +ACT 4:19!19 +ACT 4:19!20 +ACT 4:19!21 +ACT 4:19!22 +ACT 4:20!3 +ACT 4:20!1 +ACT 4:20!2 +ACT 4:20!4 +ACT 4:20!5 +ACT 4:20!6 +ACT 4:20!7 +ACT 4:20!8 +ACT 4:20!9 +ACT 4:20!10 +ACT 4:21!2 +ACT 4:21!1 +ACT 4:21!3 +ACT 4:21!4 +ACT 4:21!5 +ACT 4:21!6 +ACT 4:21!7 +ACT 4:21!8 +ACT 4:21!9 +ACT 4:21!10 +ACT 4:21!11 +ACT 4:21!12 +ACT 4:21!13 +ACT 4:21!14 +ACT 4:21!15 +ACT 4:21!16 +ACT 4:21!17 +ACT 4:21!18 +ACT 4:21!19 +ACT 4:21!20 +ACT 4:21!21 +ACT 4:21!22 +ACT 4:22!2 +ACT 4:22!1 +ACT 4:22!4 +ACT 4:22!5 +ACT 4:22!3 +ACT 4:22!6 +ACT 4:22!7 +ACT 4:22!8 +ACT 4:22!9 +ACT 4:22!10 +ACT 4:22!11 +ACT 4:22!12 +ACT 4:22!13 +ACT 4:22!14 +ACT 4:22!15 +ACT 4:23!2 +ACT 4:23!1 +ACT 4:23!3 +ACT 4:23!4 +ACT 4:23!5 +ACT 4:23!6 +ACT 4:23!7 +ACT 4:23!8 +ACT 4:23!9 +ACT 4:23!10 +ACT 4:23!11 +ACT 4:23!12 +ACT 4:23!13 +ACT 4:23!14 +ACT 4:23!15 +ACT 4:23!16 +ACT 4:23!17 +ACT 4:24!2 +ACT 4:24!1 +ACT 4:24!3 +ACT 4:24!4 +ACT 4:24!5 +ACT 4:24!6 +ACT 4:24!7 +ACT 4:24!8 +ACT 4:24!9 +ACT 4:24!10 +ACT 4:24!11 +ACT 4:24!12 +ACT 4:24!13 +ACT 4:24!14 +ACT 4:24!15 +ACT 4:24!16 +ACT 4:24!17 +ACT 4:24!18 +ACT 4:24!19 +ACT 4:24!20 +ACT 4:24!21 +ACT 4:24!22 +ACT 4:24!23 +ACT 4:24!24 +ACT 4:24!25 +ACT 4:24!26 +ACT 4:24!27 +ACT 4:24!28 +ACT 4:25!1 +ACT 4:25!2 +ACT 4:25!3 +ACT 4:25!4 +ACT 4:25!5 +ACT 4:25!6 +ACT 4:25!7 +ACT 4:25!8 +ACT 4:25!9 +ACT 4:25!10 +ACT 4:25!11 +ACT 4:25!12 +ACT 4:25!13 +ACT 4:25!14 +ACT 4:25!15 +ACT 4:25!16 +ACT 4:25!17 +ACT 4:25!18 +ACT 4:25!19 +ACT 4:25!20 +ACT 4:26!1 +ACT 4:26!2 +ACT 4:26!3 +ACT 4:26!4 +ACT 4:26!5 +ACT 4:26!6 +ACT 4:26!7 +ACT 4:26!8 +ACT 4:26!9 +ACT 4:26!10 +ACT 4:26!11 +ACT 4:26!12 +ACT 4:26!13 +ACT 4:26!14 +ACT 4:26!15 +ACT 4:26!16 +ACT 4:26!17 +ACT 4:26!18 +ACT 4:26!19 +ACT 4:26!20 +ACT 4:27!2 +ACT 4:27!1 +ACT 4:27!3 +ACT 4:27!4 +ACT 4:27!5 +ACT 4:27!6 +ACT 4:27!7 +ACT 4:27!8 +ACT 4:27!9 +ACT 4:27!10 +ACT 4:27!11 +ACT 4:27!12 +ACT 4:27!13 +ACT 4:27!14 +ACT 4:27!15 +ACT 4:27!16 +ACT 4:27!18 +ACT 4:27!17 +ACT 4:27!19 +ACT 4:27!20 +ACT 4:27!21 +ACT 4:27!22 +ACT 4:27!23 +ACT 4:27!24 +ACT 4:27!25 +ACT 4:27!26 +ACT 4:28!1 +ACT 4:28!2 +ACT 4:28!10 +ACT 4:28!3 +ACT 4:28!4 +ACT 4:28!5 +ACT 4:28!6 +ACT 4:28!7 +ACT 4:28!8 +ACT 4:28!9 +ACT 4:29!1 +ACT 4:29!4 +ACT 4:29!2 +ACT 4:29!3 +ACT 4:29!5 +ACT 4:29!6 +ACT 4:29!7 +ACT 4:29!8 +ACT 4:29!9 +ACT 4:29!10 +ACT 4:29!11 +ACT 4:29!12 +ACT 4:29!13 +ACT 4:29!14 +ACT 4:29!15 +ACT 4:29!16 +ACT 4:29!17 +ACT 4:29!18 +ACT 4:29!19 +ACT 4:29!20 +ACT 4:29!21 +ACT 4:30!1 +ACT 4:30!2 +ACT 4:30!3 +ACT 4:30!4 +ACT 4:30!5 +ACT 4:30!6 +ACT 4:30!7 +ACT 4:30!8 +ACT 4:30!9 +ACT 4:30!10 +ACT 4:30!11 +ACT 4:30!12 +ACT 4:30!13 +ACT 4:30!14 +ACT 4:30!15 +ACT 4:30!16 +ACT 4:30!17 +ACT 4:30!18 +ACT 4:30!19 +ACT 4:30!20 +ACT 4:30!21 +ACT 4:31!1 +ACT 4:31!2 +ACT 4:31!3 +ACT 4:31!4 +ACT 4:31!5 +ACT 4:31!6 +ACT 4:31!7 +ACT 4:31!8 +ACT 4:31!9 +ACT 4:31!10 +ACT 4:31!11 +ACT 4:31!12 +ACT 4:31!13 +ACT 4:31!14 +ACT 4:31!15 +ACT 4:31!16 +ACT 4:31!17 +ACT 4:31!18 +ACT 4:31!19 +ACT 4:31!20 +ACT 4:31!21 +ACT 4:31!22 +ACT 4:31!23 +ACT 4:31!24 +ACT 4:32!2 +ACT 4:32!1 +ACT 4:32!3 +ACT 4:32!4 +ACT 4:32!5 +ACT 4:32!7 +ACT 4:32!8 +ACT 4:32!9 +ACT 4:32!6 +ACT 4:32!10 +ACT 4:32!11 +ACT 4:32!12 +ACT 4:32!13 +ACT 4:32!14 +ACT 4:32!15 +ACT 4:32!16 +ACT 4:32!17 +ACT 4:32!19 +ACT 4:32!20 +ACT 4:32!18 +ACT 4:32!21 +ACT 4:32!22 +ACT 4:32!23 +ACT 4:32!24 +ACT 4:32!25 +ACT 4:33!1 +ACT 4:33!2 +ACT 4:33!3 +ACT 4:33!4 +ACT 4:33!5 +ACT 4:33!6 +ACT 4:33!9 +ACT 4:33!10 +ACT 4:33!11 +ACT 4:33!12 +ACT 4:33!13 +ACT 4:33!7 +ACT 4:33!8 +ACT 4:33!15 +ACT 4:33!14 +ACT 4:33!16 +ACT 4:33!17 +ACT 4:33!18 +ACT 4:33!19 +ACT 4:33!20 +ACT 4:34!2 +ACT 4:34!1 +ACT 4:34!3 +ACT 4:34!4 +ACT 4:34!5 +ACT 4:34!6 +ACT 4:34!7 +ACT 4:34!9 +ACT 4:34!8 +ACT 4:34!10 +ACT 4:34!11 +ACT 4:34!12 +ACT 4:34!13 +ACT 4:34!14 +ACT 4:34!15 +ACT 4:34!16 +ACT 4:34!17 +ACT 4:34!18 +ACT 4:34!19 +ACT 4:34!20 +ACT 4:35!1 +ACT 4:35!2 +ACT 4:35!3 +ACT 4:35!4 +ACT 4:35!5 +ACT 4:35!6 +ACT 4:35!7 +ACT 4:35!9 +ACT 4:35!8 +ACT 4:35!10 +ACT 4:35!11 +ACT 4:35!12 +ACT 4:35!13 +ACT 4:35!14 +ACT 4:35!15 +ACT 4:36!2 +ACT 4:36!1 +ACT 4:36!3 +ACT 4:36!4 +ACT 4:36!5 +ACT 4:36!6 +ACT 4:36!7 +ACT 4:36!8 +ACT 4:36!9 +ACT 4:36!10 +ACT 4:36!11 +ACT 4:36!12 +ACT 4:36!13 +ACT 4:36!14 +ACT 4:36!15 +ACT 4:36!16 +ACT 4:36!17 +ACT 4:37!1 +ACT 4:37!2 +ACT 4:37!3 +ACT 4:37!4 +ACT 4:37!5 +ACT 4:37!6 +ACT 4:37!7 +ACT 4:37!8 +ACT 4:37!9 +ACT 4:37!10 +ACT 4:37!11 +ACT 4:37!12 +ACT 4:37!13 +ACT 4:37!14 +ACT 5:1!2 +ACT 5:1!1 +ACT 5:1!3 +ACT 5:1!4 +ACT 5:1!5 +ACT 5:1!6 +ACT 5:1!7 +ACT 5:1!8 +ACT 5:1!9 +ACT 5:1!10 +ACT 5:1!11 +ACT 5:1!12 +ACT 5:2!1 +ACT 5:2!2 +ACT 5:2!3 +ACT 5:2!4 +ACT 5:2!5 +ACT 5:2!6 +ACT 5:2!7 +ACT 5:2!8 +ACT 5:2!9 +ACT 5:2!10 +ACT 5:2!11 +ACT 5:2!12 +ACT 5:2!13 +ACT 5:2!14 +ACT 5:2!15 +ACT 5:2!16 +ACT 5:2!17 +ACT 5:2!18 +ACT 5:2!19 +ACT 5:3!2 +ACT 5:3!1 +ACT 5:3!3 +ACT 5:3!4 +ACT 5:3!5 +ACT 5:3!6 +ACT 5:3!7 +ACT 5:3!8 +ACT 5:3!9 +ACT 5:3!10 +ACT 5:3!11 +ACT 5:3!12 +ACT 5:3!13 +ACT 5:3!14 +ACT 5:3!15 +ACT 5:3!16 +ACT 5:3!17 +ACT 5:3!18 +ACT 5:3!19 +ACT 5:3!20 +ACT 5:3!21 +ACT 5:3!22 +ACT 5:3!23 +ACT 5:3!24 +ACT 5:3!25 +ACT 5:3!26 +ACT 5:4!1 +ACT 5:4!2 +ACT 5:4!3 +ACT 5:4!4 +ACT 5:4!5 +ACT 5:4!6 +ACT 5:4!7 +ACT 5:4!8 +ACT 5:4!9 +ACT 5:4!10 +ACT 5:4!11 +ACT 5:4!12 +ACT 5:4!13 +ACT 5:4!14 +ACT 5:4!15 +ACT 5:4!16 +ACT 5:4!17 +ACT 5:4!18 +ACT 5:4!19 +ACT 5:4!20 +ACT 5:4!21 +ACT 5:4!22 +ACT 5:4!23 +ACT 5:4!24 +ACT 5:4!25 +ACT 5:4!26 +ACT 5:4!27 +ACT 5:5!2 +ACT 5:5!3 +ACT 5:5!4 +ACT 5:5!1 +ACT 5:5!5 +ACT 5:5!6 +ACT 5:5!7 +ACT 5:5!8 +ACT 5:5!9 +ACT 5:5!10 +ACT 5:5!11 +ACT 5:5!12 +ACT 5:5!13 +ACT 5:5!14 +ACT 5:5!15 +ACT 5:5!16 +ACT 5:5!17 +ACT 5:6!2 +ACT 5:6!1 +ACT 5:6!3 +ACT 5:6!4 +ACT 5:6!5 +ACT 5:6!6 +ACT 5:6!7 +ACT 5:6!8 +ACT 5:6!9 +ACT 5:7!2 +ACT 5:7!1 +ACT 5:7!3 +ACT 5:7!4 +ACT 5:7!5 +ACT 5:7!6 +ACT 5:7!7 +ACT 5:7!8 +ACT 5:7!9 +ACT 5:7!10 +ACT 5:7!11 +ACT 5:7!12 +ACT 5:7!13 +ACT 5:7!14 +ACT 5:7!15 +ACT 5:8!2 +ACT 5:8!1 +ACT 5:8!3 +ACT 5:8!4 +ACT 5:8!5 +ACT 5:8!6 +ACT 5:8!7 +ACT 5:8!8 +ACT 5:8!9 +ACT 5:8!10 +ACT 5:8!11 +ACT 5:8!12 +ACT 5:8!14 +ACT 5:8!13 +ACT 5:8!15 +ACT 5:8!16 +ACT 5:8!17 +ACT 5:9!2 +ACT 5:9!1 +ACT 5:9!3 +ACT 5:9!4 +ACT 5:9!5 +ACT 5:9!6 +ACT 5:9!7 +ACT 5:9!8 +ACT 5:9!9 +ACT 5:9!10 +ACT 5:9!11 +ACT 5:9!12 +ACT 5:9!13 +ACT 5:9!14 +ACT 5:9!15 +ACT 5:9!16 +ACT 5:9!17 +ACT 5:9!18 +ACT 5:9!19 +ACT 5:9!20 +ACT 5:9!21 +ACT 5:9!22 +ACT 5:9!23 +ACT 5:9!24 +ACT 5:9!25 +ACT 5:9!26 +ACT 5:9!27 +ACT 5:10!2 +ACT 5:10!1 +ACT 5:10!3 +ACT 5:10!4 +ACT 5:10!5 +ACT 5:10!6 +ACT 5:10!7 +ACT 5:10!8 +ACT 5:10!9 +ACT 5:10!11 +ACT 5:10!10 +ACT 5:10!12 +ACT 5:10!13 +ACT 5:10!14 +ACT 5:10!15 +ACT 5:10!16 +ACT 5:10!17 +ACT 5:10!18 +ACT 5:10!19 +ACT 5:10!20 +ACT 5:10!21 +ACT 5:10!22 +ACT 5:10!23 +ACT 5:11!1 +ACT 5:11!2 +ACT 5:11!3 +ACT 5:11!4 +ACT 5:11!5 +ACT 5:11!6 +ACT 5:11!7 +ACT 5:11!8 +ACT 5:11!9 +ACT 5:11!10 +ACT 5:11!11 +ACT 5:11!12 +ACT 5:11!13 +ACT 5:11!14 +ACT 5:12!2 +ACT 5:12!1 +ACT 5:12!3 +ACT 5:12!4 +ACT 5:12!5 +ACT 5:12!6 +ACT 5:12!7 +ACT 5:12!8 +ACT 5:12!9 +ACT 5:12!10 +ACT 5:12!11 +ACT 5:12!12 +ACT 5:12!13 +ACT 5:12!14 +ACT 5:12!15 +ACT 5:12!16 +ACT 5:12!17 +ACT 5:12!18 +ACT 5:12!19 +ACT 5:12!20 +ACT 5:12!21 +ACT 5:12!22 +ACT 5:13!2 +ACT 5:13!1 +ACT 5:13!3 +ACT 5:13!4 +ACT 5:13!5 +ACT 5:13!6 +ACT 5:13!7 +ACT 5:13!8 +ACT 5:13!9 +ACT 5:13!10 +ACT 5:13!11 +ACT 5:13!12 +ACT 5:14!2 +ACT 5:14!1 +ACT 5:14!3 +ACT 5:14!4 +ACT 5:14!5 +ACT 5:14!6 +ACT 5:14!7 +ACT 5:14!9 +ACT 5:14!8 +ACT 5:14!10 +ACT 5:14!11 +ACT 5:15!1 +ACT 5:15!2 +ACT 5:15!3 +ACT 5:15!4 +ACT 5:15!5 +ACT 5:15!6 +ACT 5:15!7 +ACT 5:15!8 +ACT 5:15!9 +ACT 5:15!10 +ACT 5:15!11 +ACT 5:15!12 +ACT 5:15!13 +ACT 5:15!14 +ACT 5:15!15 +ACT 5:15!16 +ACT 5:15!17 +ACT 5:15!18 +ACT 5:15!19 +ACT 5:15!20 +ACT 5:15!21 +ACT 5:15!22 +ACT 5:15!23 +ACT 5:16!2 +ACT 5:16!1 +ACT 5:16!3 +ACT 5:16!4 +ACT 5:16!5 +ACT 5:16!6 +ACT 5:16!7 +ACT 5:16!9 +ACT 5:16!8 +ACT 5:16!10 +ACT 5:16!11 +ACT 5:16!12 +ACT 5:16!13 +ACT 5:16!14 +ACT 5:16!15 +ACT 5:16!16 +ACT 5:16!17 +ACT 5:16!19 +ACT 5:16!18 +ACT 5:17!2 +ACT 5:17!1 +ACT 5:17!3 +ACT 5:17!4 +ACT 5:17!5 +ACT 5:17!6 +ACT 5:17!7 +ACT 5:17!8 +ACT 5:17!9 +ACT 5:17!10 +ACT 5:17!11 +ACT 5:17!12 +ACT 5:17!13 +ACT 5:17!14 +ACT 5:17!15 +ACT 5:17!16 +ACT 5:18!1 +ACT 5:18!2 +ACT 5:18!3 +ACT 5:18!4 +ACT 5:18!5 +ACT 5:18!6 +ACT 5:18!7 +ACT 5:18!8 +ACT 5:18!9 +ACT 5:18!10 +ACT 5:18!11 +ACT 5:18!12 +ACT 5:18!13 +ACT 5:19!2 +ACT 5:19!1 +ACT 5:19!3 +ACT 5:19!4 +ACT 5:19!5 +ACT 5:19!6 +ACT 5:19!7 +ACT 5:19!8 +ACT 5:19!9 +ACT 5:19!10 +ACT 5:19!12 +ACT 5:19!11 +ACT 5:19!13 +ACT 5:19!14 +ACT 5:20!1 +ACT 5:20!2 +ACT 5:20!3 +ACT 5:20!4 +ACT 5:20!5 +ACT 5:20!6 +ACT 5:20!7 +ACT 5:20!8 +ACT 5:20!9 +ACT 5:20!10 +ACT 5:20!11 +ACT 5:20!12 +ACT 5:20!13 +ACT 5:20!14 +ACT 5:20!15 +ACT 5:21!2 +ACT 5:21!1 +ACT 5:21!3 +ACT 5:21!4 +ACT 5:21!5 +ACT 5:21!6 +ACT 5:21!7 +ACT 5:21!8 +ACT 5:21!9 +ACT 5:21!10 +ACT 5:21!11 +ACT 5:21!13 +ACT 5:21!12 +ACT 5:21!14 +ACT 5:21!15 +ACT 5:21!16 +ACT 5:21!17 +ACT 5:21!18 +ACT 5:21!19 +ACT 5:21!20 +ACT 5:21!21 +ACT 5:21!22 +ACT 5:21!23 +ACT 5:21!24 +ACT 5:21!25 +ACT 5:21!26 +ACT 5:21!27 +ACT 5:21!28 +ACT 5:21!29 +ACT 5:21!30 +ACT 5:21!31 +ACT 5:21!32 +ACT 5:21!33 +ACT 5:21!34 +ACT 5:21!35 +ACT 5:21!36 +ACT 5:22!2 +ACT 5:22!1 +ACT 5:22!3 +ACT 5:22!4 +ACT 5:22!5 +ACT 5:22!6 +ACT 5:22!7 +ACT 5:22!8 +ACT 5:22!9 +ACT 5:22!10 +ACT 5:22!12 +ACT 5:22!11 +ACT 5:22!13 +ACT 5:23!1 +ACT 5:23!2 +ACT 5:23!5 +ACT 5:23!3 +ACT 5:23!4 +ACT 5:23!6 +ACT 5:23!7 +ACT 5:23!8 +ACT 5:23!9 +ACT 5:23!10 +ACT 5:23!11 +ACT 5:23!12 +ACT 5:23!13 +ACT 5:23!14 +ACT 5:23!15 +ACT 5:23!16 +ACT 5:23!18 +ACT 5:23!17 +ACT 5:23!19 +ACT 5:23!20 +ACT 5:23!21 +ACT 5:24!2 +ACT 5:24!1 +ACT 5:24!3 +ACT 5:24!4 +ACT 5:24!5 +ACT 5:24!6 +ACT 5:24!8 +ACT 5:24!7 +ACT 5:24!9 +ACT 5:24!10 +ACT 5:24!11 +ACT 5:24!12 +ACT 5:24!13 +ACT 5:24!14 +ACT 5:24!15 +ACT 5:24!16 +ACT 5:24!17 +ACT 5:24!19 +ACT 5:24!18 +ACT 5:24!20 +ACT 5:24!21 +ACT 5:25!2 +ACT 5:25!1 +ACT 5:25!3 +ACT 5:25!4 +ACT 5:25!5 +ACT 5:25!6 +ACT 5:25!7 +ACT 5:25!8 +ACT 5:25!9 +ACT 5:25!10 +ACT 5:25!11 +ACT 5:25!12 +ACT 5:25!13 +ACT 5:25!14 +ACT 5:25!15 +ACT 5:25!19 +ACT 5:25!16 +ACT 5:25!17 +ACT 5:25!18 +ACT 5:25!20 +ACT 5:25!21 +ACT 5:25!22 +ACT 5:25!23 +ACT 5:26!1 +ACT 5:26!2 +ACT 5:26!3 +ACT 5:26!4 +ACT 5:26!5 +ACT 5:26!6 +ACT 5:26!7 +ACT 5:26!8 +ACT 5:26!9 +ACT 5:26!10 +ACT 5:26!11 +ACT 5:26!12 +ACT 5:26!14 +ACT 5:26!13 +ACT 5:26!15 +ACT 5:26!16 +ACT 5:26!17 +ACT 5:26!18 +ACT 5:27!2 +ACT 5:27!1 +ACT 5:27!3 +ACT 5:27!4 +ACT 5:27!5 +ACT 5:27!6 +ACT 5:27!7 +ACT 5:27!8 +ACT 5:27!9 +ACT 5:27!10 +ACT 5:27!11 +ACT 5:27!12 +ACT 5:28!1 +ACT 5:28!2 +ACT 5:28!3 +ACT 5:28!4 +ACT 5:28!5 +ACT 5:28!6 +ACT 5:28!7 +ACT 5:28!8 +ACT 5:28!9 +ACT 5:28!10 +ACT 5:28!11 +ACT 5:28!12 +ACT 5:28!13 +ACT 5:28!14 +ACT 5:28!15 +ACT 5:28!16 +ACT 5:28!17 +ACT 5:28!18 +ACT 5:28!19 +ACT 5:28!20 +ACT 5:28!21 +ACT 5:28!22 +ACT 5:28!23 +ACT 5:28!24 +ACT 5:28!25 +ACT 5:28!26 +ACT 5:28!27 +ACT 5:28!28 +ACT 5:29!2 +ACT 5:29!1 +ACT 5:29!3 +ACT 5:29!4 +ACT 5:29!5 +ACT 5:29!6 +ACT 5:29!7 +ACT 5:29!9 +ACT 5:29!8 +ACT 5:29!10 +ACT 5:29!11 +ACT 5:29!12 +ACT 5:29!13 +ACT 5:30!1 +ACT 5:30!2 +ACT 5:30!3 +ACT 5:30!4 +ACT 5:30!5 +ACT 5:30!6 +ACT 5:30!7 +ACT 5:30!8 +ACT 5:30!9 +ACT 5:30!10 +ACT 5:30!11 +ACT 5:30!12 +ACT 5:30!13 +ACT 5:31!1 +ACT 5:31!2 +ACT 5:31!3 +ACT 5:31!4 +ACT 5:31!5 +ACT 5:31!6 +ACT 5:31!7 +ACT 5:31!8 +ACT 5:31!9 +ACT 5:31!10 +ACT 5:31!11 +ACT 5:31!12 +ACT 5:31!13 +ACT 5:31!14 +ACT 5:31!15 +ACT 5:31!16 +ACT 5:31!17 +ACT 5:31!18 +ACT 5:32!1 +ACT 5:32!2 +ACT 5:32!3 +ACT 5:32!4 +ACT 5:32!5 +ACT 5:32!6 +ACT 5:32!7 +ACT 5:32!8 +ACT 5:32!9 +ACT 5:32!10 +ACT 5:32!11 +ACT 5:32!12 +ACT 5:32!13 +ACT 5:32!14 +ACT 5:32!15 +ACT 5:32!16 +ACT 5:32!17 +ACT 5:32!18 +ACT 5:32!19 +ACT 5:33!2 +ACT 5:33!1 +ACT 5:33!3 +ACT 5:33!4 +ACT 5:33!5 +ACT 5:33!6 +ACT 5:33!7 +ACT 5:33!8 +ACT 5:34!2 +ACT 5:34!1 +ACT 5:34!3 +ACT 5:34!4 +ACT 5:34!5 +ACT 5:34!6 +ACT 5:34!7 +ACT 5:34!8 +ACT 5:34!9 +ACT 5:34!10 +ACT 5:34!11 +ACT 5:34!12 +ACT 5:34!13 +ACT 5:34!14 +ACT 5:34!15 +ACT 5:34!16 +ACT 5:34!17 +ACT 5:34!18 +ACT 5:34!19 +ACT 5:34!20 +ACT 5:35!2 +ACT 5:35!1 +ACT 5:35!3 +ACT 5:35!4 +ACT 5:35!5 +ACT 5:35!6 +ACT 5:35!7 +ACT 5:35!8 +ACT 5:35!9 +ACT 5:35!10 +ACT 5:35!11 +ACT 5:35!12 +ACT 5:35!13 +ACT 5:35!15 +ACT 5:35!14 +ACT 5:36!2 +ACT 5:36!1 +ACT 5:36!3 +ACT 5:36!4 +ACT 5:36!5 +ACT 5:36!6 +ACT 5:36!7 +ACT 5:36!8 +ACT 5:36!9 +ACT 5:36!10 +ACT 5:36!11 +ACT 5:36!12 +ACT 5:36!13 +ACT 5:36!14 +ACT 5:36!15 +ACT 5:36!16 +ACT 5:36!17 +ACT 5:36!18 +ACT 5:36!19 +ACT 5:36!20 +ACT 5:36!21 +ACT 5:36!22 +ACT 5:36!23 +ACT 5:36!24 +ACT 5:36!25 +ACT 5:36!26 +ACT 5:36!27 +ACT 5:36!28 +ACT 5:36!29 +ACT 5:37!1 +ACT 5:37!2 +ACT 5:37!3 +ACT 5:37!4 +ACT 5:37!5 +ACT 5:37!6 +ACT 5:37!7 +ACT 5:37!8 +ACT 5:37!9 +ACT 5:37!10 +ACT 5:37!11 +ACT 5:37!12 +ACT 5:37!13 +ACT 5:37!14 +ACT 5:37!15 +ACT 5:37!16 +ACT 5:37!17 +ACT 5:37!18 +ACT 5:37!19 +ACT 5:37!20 +ACT 5:37!21 +ACT 5:37!22 +ACT 5:37!23 +ACT 5:37!24 +ACT 5:38!1 +ACT 5:38!2 +ACT 5:38!3 +ACT 5:38!4 +ACT 5:38!5 +ACT 5:38!6 +ACT 5:38!7 +ACT 5:38!8 +ACT 5:38!9 +ACT 5:38!10 +ACT 5:38!11 +ACT 5:38!12 +ACT 5:38!13 +ACT 5:38!14 +ACT 5:38!15 +ACT 5:38!16 +ACT 5:38!17 +ACT 5:38!18 +ACT 5:38!19 +ACT 5:38!20 +ACT 5:38!21 +ACT 5:38!22 +ACT 5:38!23 +ACT 5:38!24 +ACT 5:38!25 +ACT 5:38!26 +ACT 5:39!2 +ACT 5:39!1 +ACT 5:39!3 +ACT 5:39!4 +ACT 5:39!5 +ACT 5:39!6 +ACT 5:39!7 +ACT 5:39!8 +ACT 5:39!9 +ACT 5:39!10 +ACT 5:39!11 +ACT 5:39!12 +ACT 5:39!13 +ACT 5:39!14 +ACT 5:39!16 +ACT 5:39!15 +ACT 5:39!17 +ACT 5:40!1 +ACT 5:40!2 +ACT 5:40!3 +ACT 5:40!4 +ACT 5:40!5 +ACT 5:40!6 +ACT 5:40!7 +ACT 5:40!8 +ACT 5:40!9 +ACT 5:40!10 +ACT 5:40!11 +ACT 5:40!12 +ACT 5:40!13 +ACT 5:40!14 +ACT 5:40!15 +ACT 5:41!2 +ACT 5:41!3 +ACT 5:41!1 +ACT 5:41!4 +ACT 5:41!5 +ACT 5:41!6 +ACT 5:41!7 +ACT 5:41!8 +ACT 5:41!9 +ACT 5:41!10 +ACT 5:41!11 +ACT 5:41!12 +ACT 5:41!13 +ACT 5:41!14 +ACT 5:41!15 +ACT 5:42!2 +ACT 5:42!1 +ACT 5:42!3 +ACT 5:42!4 +ACT 5:42!5 +ACT 5:42!6 +ACT 5:42!7 +ACT 5:42!8 +ACT 5:42!9 +ACT 5:42!10 +ACT 5:42!11 +ACT 5:42!12 +ACT 5:42!13 +ACT 5:42!14 +ACT 5:42!15 +ACT 5:42!16 +ACT 5:42!17 +ACT 6:1!2 +ACT 6:1!1 +ACT 6:1!3 +ACT 6:1!4 +ACT 6:1!5 +ACT 6:1!6 +ACT 6:1!7 +ACT 6:1!8 +ACT 6:1!9 +ACT 6:1!10 +ACT 6:1!11 +ACT 6:1!12 +ACT 6:1!13 +ACT 6:1!14 +ACT 6:1!15 +ACT 6:1!16 +ACT 6:1!17 +ACT 6:1!18 +ACT 6:1!19 +ACT 6:1!20 +ACT 6:1!21 +ACT 6:1!22 +ACT 6:1!23 +ACT 6:1!24 +ACT 6:1!25 +ACT 6:2!2 +ACT 6:2!3 +ACT 6:2!4 +ACT 6:2!1 +ACT 6:2!5 +ACT 6:2!6 +ACT 6:2!7 +ACT 6:2!8 +ACT 6:2!9 +ACT 6:2!10 +ACT 6:2!11 +ACT 6:2!12 +ACT 6:2!13 +ACT 6:2!14 +ACT 6:2!15 +ACT 6:2!16 +ACT 6:2!17 +ACT 6:2!18 +ACT 6:2!19 +ACT 6:2!20 +ACT 6:3!2 +ACT 6:3!3 +ACT 6:3!1 +ACT 6:3!4 +ACT 6:3!5 +ACT 6:3!6 +ACT 6:3!7 +ACT 6:3!8 +ACT 6:3!9 +ACT 6:3!10 +ACT 6:3!11 +ACT 6:3!12 +ACT 6:3!13 +ACT 6:3!14 +ACT 6:3!15 +ACT 6:3!16 +ACT 6:3!17 +ACT 6:3!18 +ACT 6:4!2 +ACT 6:4!1 +ACT 6:4!3 +ACT 6:4!4 +ACT 6:4!5 +ACT 6:4!6 +ACT 6:4!7 +ACT 6:4!8 +ACT 6:4!9 +ACT 6:4!10 +ACT 6:5!1 +ACT 6:5!2 +ACT 6:5!3 +ACT 6:5!4 +ACT 6:5!5 +ACT 6:5!6 +ACT 6:5!7 +ACT 6:5!8 +ACT 6:5!9 +ACT 6:5!10 +ACT 6:5!11 +ACT 6:5!12 +ACT 6:5!13 +ACT 6:5!14 +ACT 6:5!15 +ACT 6:5!16 +ACT 6:5!17 +ACT 6:5!18 +ACT 6:5!19 +ACT 6:5!20 +ACT 6:5!21 +ACT 6:5!22 +ACT 6:5!23 +ACT 6:5!24 +ACT 6:5!25 +ACT 6:5!26 +ACT 6:5!27 +ACT 6:5!28 +ACT 6:5!29 +ACT 6:5!30 +ACT 6:5!31 +ACT 6:6!1 +ACT 6:6!2 +ACT 6:6!3 +ACT 6:6!4 +ACT 6:6!5 +ACT 6:6!6 +ACT 6:6!7 +ACT 6:6!8 +ACT 6:6!9 +ACT 6:6!10 +ACT 6:6!11 +ACT 6:7!1 +ACT 6:7!2 +ACT 6:7!3 +ACT 6:7!4 +ACT 6:7!5 +ACT 6:7!6 +ACT 6:7!7 +ACT 6:7!8 +ACT 6:7!9 +ACT 6:7!10 +ACT 6:7!11 +ACT 6:7!12 +ACT 6:7!13 +ACT 6:7!14 +ACT 6:7!15 +ACT 6:7!17 +ACT 6:7!16 +ACT 6:7!18 +ACT 6:7!19 +ACT 6:7!20 +ACT 6:7!21 +ACT 6:7!22 +ACT 6:7!23 +ACT 6:8!2 +ACT 6:8!1 +ACT 6:8!3 +ACT 6:8!4 +ACT 6:8!5 +ACT 6:8!6 +ACT 6:8!7 +ACT 6:8!8 +ACT 6:8!9 +ACT 6:8!10 +ACT 6:8!11 +ACT 6:8!12 +ACT 6:8!13 +ACT 6:8!14 +ACT 6:9!2 +ACT 6:9!1 +ACT 6:9!3 +ACT 6:9!4 +ACT 6:9!5 +ACT 6:9!6 +ACT 6:9!7 +ACT 6:9!8 +ACT 6:9!9 +ACT 6:9!10 +ACT 6:9!11 +ACT 6:9!12 +ACT 6:9!13 +ACT 6:9!14 +ACT 6:9!15 +ACT 6:9!16 +ACT 6:9!17 +ACT 6:9!18 +ACT 6:9!19 +ACT 6:9!20 +ACT 6:9!21 +ACT 6:9!22 +ACT 6:9!23 +ACT 6:10!1 +ACT 6:10!2 +ACT 6:10!3 +ACT 6:10!4 +ACT 6:10!5 +ACT 6:10!6 +ACT 6:10!7 +ACT 6:10!8 +ACT 6:10!9 +ACT 6:10!10 +ACT 6:10!11 +ACT 6:11!1 +ACT 6:11!2 +ACT 6:11!3 +ACT 6:11!4 +ACT 6:11!5 +ACT 6:11!6 +ACT 6:11!7 +ACT 6:11!8 +ACT 6:11!9 +ACT 6:11!10 +ACT 6:11!11 +ACT 6:11!12 +ACT 6:11!13 +ACT 6:11!14 +ACT 6:11!15 +ACT 6:12!2 +ACT 6:12!1 +ACT 6:12!3 +ACT 6:12!4 +ACT 6:12!5 +ACT 6:12!6 +ACT 6:12!7 +ACT 6:12!8 +ACT 6:12!9 +ACT 6:12!10 +ACT 6:12!11 +ACT 6:12!12 +ACT 6:12!13 +ACT 6:12!14 +ACT 6:12!15 +ACT 6:12!16 +ACT 6:12!17 +ACT 6:12!18 +ACT 6:12!19 +ACT 6:13!2 +ACT 6:13!1 +ACT 6:13!3 +ACT 6:13!4 +ACT 6:13!5 +ACT 6:13!6 +ACT 6:13!7 +ACT 6:13!8 +ACT 6:13!9 +ACT 6:13!10 +ACT 6:13!11 +ACT 6:13!12 +ACT 6:13!13 +ACT 6:13!14 +ACT 6:13!15 +ACT 6:13!16 +ACT 6:13!17 +ACT 6:13!18 +ACT 6:13!19 +ACT 6:13!20 +ACT 6:14!2 +ACT 6:14!1 +ACT 6:14!3 +ACT 6:14!4 +ACT 6:14!5 +ACT 6:14!6 +ACT 6:14!7 +ACT 6:14!8 +ACT 6:14!9 +ACT 6:14!10 +ACT 6:14!11 +ACT 6:14!12 +ACT 6:14!13 +ACT 6:14!14 +ACT 6:14!15 +ACT 6:14!16 +ACT 6:14!17 +ACT 6:14!18 +ACT 6:14!19 +ACT 6:14!20 +ACT 6:14!21 +ACT 6:15!1 +ACT 6:15!2 +ACT 6:15!3 +ACT 6:15!4 +ACT 6:15!5 +ACT 6:15!6 +ACT 6:15!7 +ACT 6:15!8 +ACT 6:15!9 +ACT 6:15!10 +ACT 6:15!11 +ACT 6:15!12 +ACT 6:15!13 +ACT 6:15!14 +ACT 6:15!15 +ACT 6:15!16 +ACT 6:15!17 +ACT 7:1!2 +ACT 7:1!1 +ACT 7:1!3 +ACT 7:1!4 +ACT 7:1!5 +ACT 7:1!6 +ACT 7:1!7 +ACT 7:1!8 +ACT 7:2!2 +ACT 7:2!1 +ACT 7:2!3 +ACT 7:2!4 +ACT 7:2!5 +ACT 7:2!6 +ACT 7:2!7 +ACT 7:2!8 +ACT 7:2!9 +ACT 7:2!10 +ACT 7:2!11 +ACT 7:2!12 +ACT 7:2!13 +ACT 7:2!14 +ACT 7:2!15 +ACT 7:2!16 +ACT 7:2!17 +ACT 7:2!18 +ACT 7:2!19 +ACT 7:2!20 +ACT 7:2!21 +ACT 7:2!22 +ACT 7:2!23 +ACT 7:2!24 +ACT 7:2!25 +ACT 7:2!26 +ACT 7:2!27 +ACT 7:3!1 +ACT 7:3!2 +ACT 7:3!3 +ACT 7:3!4 +ACT 7:3!5 +ACT 7:3!6 +ACT 7:3!7 +ACT 7:3!8 +ACT 7:3!9 +ACT 7:3!10 +ACT 7:3!11 +ACT 7:3!12 +ACT 7:3!13 +ACT 7:3!14 +ACT 7:3!15 +ACT 7:3!16 +ACT 7:3!17 +ACT 7:3!18 +ACT 7:3!20 +ACT 7:3!19 +ACT 7:3!21 +ACT 7:3!22 +ACT 7:4!1 +ACT 7:4!2 +ACT 7:4!3 +ACT 7:4!4 +ACT 7:4!5 +ACT 7:4!6 +ACT 7:4!7 +ACT 7:4!8 +ACT 7:4!9 +ACT 7:4!10 +ACT 7:4!11 +ACT 7:4!12 +ACT 7:4!13 +ACT 7:4!14 +ACT 7:4!15 +ACT 7:4!16 +ACT 7:4!17 +ACT 7:4!18 +ACT 7:4!19 +ACT 7:4!20 +ACT 7:4!21 +ACT 7:4!22 +ACT 7:4!23 +ACT 7:4!24 +ACT 7:4!25 +ACT 7:4!26 +ACT 7:5!1 +ACT 7:5!2 +ACT 7:5!3 +ACT 7:5!4 +ACT 7:5!5 +ACT 7:5!6 +ACT 7:5!7 +ACT 7:5!8 +ACT 7:5!9 +ACT 7:5!10 +ACT 7:5!11 +ACT 7:5!12 +ACT 7:5!13 +ACT 7:5!14 +ACT 7:5!15 +ACT 7:5!16 +ACT 7:5!17 +ACT 7:5!18 +ACT 7:5!19 +ACT 7:5!20 +ACT 7:5!21 +ACT 7:5!22 +ACT 7:5!23 +ACT 7:5!24 +ACT 7:5!25 +ACT 7:5!26 +ACT 7:5!27 +ACT 7:6!2 +ACT 7:6!1 +ACT 7:6!3 +ACT 7:6!4 +ACT 7:6!5 +ACT 7:6!6 +ACT 7:6!7 +ACT 7:6!8 +ACT 7:6!9 +ACT 7:6!10 +ACT 7:6!11 +ACT 7:6!12 +ACT 7:6!13 +ACT 7:6!14 +ACT 7:6!15 +ACT 7:6!16 +ACT 7:6!18 +ACT 7:6!19 +ACT 7:6!17 +ACT 7:6!20 +ACT 7:6!21 +ACT 7:7!1 +ACT 7:7!2 +ACT 7:7!3 +ACT 7:7!5 +ACT 7:7!4 +ACT 7:7!6 +ACT 7:7!7 +ACT 7:7!8 +ACT 7:7!9 +ACT 7:7!10 +ACT 7:7!11 +ACT 7:7!12 +ACT 7:7!13 +ACT 7:7!14 +ACT 7:7!15 +ACT 7:7!16 +ACT 7:7!17 +ACT 7:7!18 +ACT 7:7!19 +ACT 7:7!20 +ACT 7:7!21 +ACT 7:7!22 +ACT 7:8!1 +ACT 7:8!2 +ACT 7:8!3 +ACT 7:8!4 +ACT 7:8!5 +ACT 7:8!6 +ACT 7:8!7 +ACT 7:8!8 +ACT 7:8!9 +ACT 7:8!10 +ACT 7:8!11 +ACT 7:8!12 +ACT 7:8!13 +ACT 7:8!14 +ACT 7:8!15 +ACT 7:8!16 +ACT 7:8!17 +ACT 7:8!18 +ACT 7:8!19 +ACT 7:8!20 +ACT 7:8!21 +ACT 7:8!22 +ACT 7:8!23 +ACT 7:8!24 +ACT 7:8!25 +ACT 7:8!26 +ACT 7:9!1 +ACT 7:9!2 +ACT 7:9!3 +ACT 7:9!4 +ACT 7:9!5 +ACT 7:9!6 +ACT 7:9!7 +ACT 7:9!8 +ACT 7:9!9 +ACT 7:9!10 +ACT 7:9!11 +ACT 7:9!12 +ACT 7:9!13 +ACT 7:9!14 +ACT 7:9!15 +ACT 7:10!1 +ACT 7:10!2 +ACT 7:10!3 +ACT 7:10!4 +ACT 7:10!5 +ACT 7:10!6 +ACT 7:10!7 +ACT 7:10!8 +ACT 7:10!9 +ACT 7:10!10 +ACT 7:10!11 +ACT 7:10!12 +ACT 7:10!13 +ACT 7:10!14 +ACT 7:10!15 +ACT 7:10!16 +ACT 7:10!17 +ACT 7:10!18 +ACT 7:10!19 +ACT 7:10!20 +ACT 7:10!21 +ACT 7:10!22 +ACT 7:10!23 +ACT 7:10!24 +ACT 7:10!25 +ACT 7:10!26 +ACT 7:10!27 +ACT 7:10!28 +ACT 7:10!29 +ACT 7:11!2 +ACT 7:11!1 +ACT 7:11!3 +ACT 7:11!4 +ACT 7:11!5 +ACT 7:11!6 +ACT 7:11!7 +ACT 7:11!8 +ACT 7:11!9 +ACT 7:11!10 +ACT 7:11!11 +ACT 7:11!12 +ACT 7:11!13 +ACT 7:11!14 +ACT 7:11!15 +ACT 7:11!16 +ACT 7:11!17 +ACT 7:11!18 +ACT 7:11!19 +ACT 7:12!2 +ACT 7:12!3 +ACT 7:12!1 +ACT 7:12!4 +ACT 7:12!5 +ACT 7:12!6 +ACT 7:12!7 +ACT 7:12!8 +ACT 7:12!9 +ACT 7:12!10 +ACT 7:12!11 +ACT 7:12!12 +ACT 7:13!1 +ACT 7:13!2 +ACT 7:13!3 +ACT 7:13!4 +ACT 7:13!5 +ACT 7:13!6 +ACT 7:13!7 +ACT 7:13!8 +ACT 7:13!9 +ACT 7:13!10 +ACT 7:13!11 +ACT 7:13!12 +ACT 7:13!13 +ACT 7:13!14 +ACT 7:13!15 +ACT 7:13!16 +ACT 7:13!17 +ACT 7:14!2 +ACT 7:14!1 +ACT 7:14!3 +ACT 7:14!4 +ACT 7:14!5 +ACT 7:14!6 +ACT 7:14!7 +ACT 7:14!8 +ACT 7:14!9 +ACT 7:14!10 +ACT 7:14!11 +ACT 7:14!12 +ACT 7:14!13 +ACT 7:14!14 +ACT 7:14!15 +ACT 7:14!16 +ACT 7:15!1 +ACT 7:15!2 +ACT 7:15!3 +ACT 7:15!4 +ACT 7:15!5 +ACT 7:15!6 +ACT 7:15!7 +ACT 7:15!8 +ACT 7:15!9 +ACT 7:15!10 +ACT 7:15!11 +ACT 7:15!12 +ACT 7:16!1 +ACT 7:16!2 +ACT 7:16!3 +ACT 7:16!4 +ACT 7:16!5 +ACT 7:16!6 +ACT 7:16!7 +ACT 7:16!8 +ACT 7:16!9 +ACT 7:16!10 +ACT 7:16!11 +ACT 7:16!12 +ACT 7:16!13 +ACT 7:16!14 +ACT 7:16!15 +ACT 7:16!16 +ACT 7:16!17 +ACT 7:16!18 +ACT 7:16!19 +ACT 7:16!20 +ACT 7:17!2 +ACT 7:17!1 +ACT 7:17!3 +ACT 7:17!4 +ACT 7:17!5 +ACT 7:17!6 +ACT 7:17!7 +ACT 7:17!8 +ACT 7:17!9 +ACT 7:17!10 +ACT 7:17!11 +ACT 7:17!12 +ACT 7:17!13 +ACT 7:17!15 +ACT 7:17!16 +ACT 7:17!14 +ACT 7:17!17 +ACT 7:17!18 +ACT 7:17!19 +ACT 7:17!20 +ACT 7:18!1 +ACT 7:18!2 +ACT 7:18!3 +ACT 7:18!6 +ACT 7:18!7 +ACT 7:18!4 +ACT 7:18!5 +ACT 7:18!8 +ACT 7:18!9 +ACT 7:18!10 +ACT 7:18!11 +ACT 7:18!12 +ACT 7:19!1 +ACT 7:19!2 +ACT 7:19!3 +ACT 7:19!4 +ACT 7:19!5 +ACT 7:19!6 +ACT 7:19!7 +ACT 7:19!8 +ACT 7:19!9 +ACT 7:19!10 +ACT 7:19!11 +ACT 7:19!12 +ACT 7:19!14 +ACT 7:19!13 +ACT 7:19!15 +ACT 7:19!16 +ACT 7:19!17 +ACT 7:19!18 +ACT 7:20!1 +ACT 7:20!2 +ACT 7:20!3 +ACT 7:20!4 +ACT 7:20!5 +ACT 7:20!6 +ACT 7:20!7 +ACT 7:20!8 +ACT 7:20!9 +ACT 7:20!10 +ACT 7:20!11 +ACT 7:20!12 +ACT 7:20!13 +ACT 7:20!14 +ACT 7:20!15 +ACT 7:20!16 +ACT 7:20!17 +ACT 7:20!18 +ACT 7:20!19 +ACT 7:21!2 +ACT 7:21!1 +ACT 7:21!3 +ACT 7:21!4 +ACT 7:21!5 +ACT 7:21!6 +ACT 7:21!7 +ACT 7:21!8 +ACT 7:21!9 +ACT 7:21!10 +ACT 7:21!11 +ACT 7:21!12 +ACT 7:21!13 +ACT 7:21!14 +ACT 7:22!1 +ACT 7:22!2 +ACT 7:22!3 +ACT 7:22!4 +ACT 7:22!5 +ACT 7:22!6 +ACT 7:22!8 +ACT 7:22!7 +ACT 7:22!9 +ACT 7:22!10 +ACT 7:22!11 +ACT 7:22!12 +ACT 7:22!13 +ACT 7:22!14 +ACT 7:23!2 +ACT 7:23!1 +ACT 7:23!3 +ACT 7:23!4 +ACT 7:23!5 +ACT 7:23!6 +ACT 7:23!7 +ACT 7:23!8 +ACT 7:23!9 +ACT 7:23!10 +ACT 7:23!11 +ACT 7:23!12 +ACT 7:23!13 +ACT 7:23!14 +ACT 7:23!15 +ACT 7:23!16 +ACT 7:23!17 +ACT 7:23!18 +ACT 7:24!1 +ACT 7:24!2 +ACT 7:24!3 +ACT 7:24!4 +ACT 7:24!5 +ACT 7:24!6 +ACT 7:24!7 +ACT 7:24!8 +ACT 7:24!9 +ACT 7:24!10 +ACT 7:24!11 +ACT 7:24!12 +ACT 7:24!13 +ACT 7:25!2 +ACT 7:25!1 +ACT 7:25!3 +ACT 7:25!4 +ACT 7:25!5 +ACT 7:25!6 +ACT 7:25!7 +ACT 7:25!8 +ACT 7:25!9 +ACT 7:25!10 +ACT 7:25!11 +ACT 7:25!12 +ACT 7:25!13 +ACT 7:25!14 +ACT 7:25!16 +ACT 7:25!15 +ACT 7:25!17 +ACT 7:25!18 +ACT 7:26!2 +ACT 7:26!1 +ACT 7:26!3 +ACT 7:26!4 +ACT 7:26!5 +ACT 7:26!6 +ACT 7:26!7 +ACT 7:26!8 +ACT 7:26!9 +ACT 7:26!10 +ACT 7:26!11 +ACT 7:26!12 +ACT 7:26!13 +ACT 7:26!14 +ACT 7:26!15 +ACT 7:26!16 +ACT 7:26!17 +ACT 7:26!18 +ACT 7:26!19 +ACT 7:26!20 +ACT 7:27!2 +ACT 7:27!1 +ACT 7:27!3 +ACT 7:27!4 +ACT 7:27!5 +ACT 7:27!6 +ACT 7:27!7 +ACT 7:27!8 +ACT 7:27!9 +ACT 7:27!10 +ACT 7:27!11 +ACT 7:27!12 +ACT 7:27!13 +ACT 7:27!14 +ACT 7:27!15 +ACT 7:27!16 +ACT 7:28!1 +ACT 7:28!2 +ACT 7:28!3 +ACT 7:28!4 +ACT 7:28!5 +ACT 7:28!6 +ACT 7:28!7 +ACT 7:28!8 +ACT 7:28!9 +ACT 7:28!10 +ACT 7:28!11 +ACT 7:29!2 +ACT 7:29!1 +ACT 7:29!3 +ACT 7:29!4 +ACT 7:29!5 +ACT 7:29!6 +ACT 7:29!7 +ACT 7:29!8 +ACT 7:29!9 +ACT 7:29!10 +ACT 7:29!11 +ACT 7:29!12 +ACT 7:29!13 +ACT 7:29!14 +ACT 7:29!15 +ACT 7:29!16 +ACT 7:29!17 +ACT 7:30!1 +ACT 7:30!2 +ACT 7:30!3 +ACT 7:30!4 +ACT 7:30!5 +ACT 7:30!6 +ACT 7:30!7 +ACT 7:30!8 +ACT 7:30!9 +ACT 7:30!10 +ACT 7:30!11 +ACT 7:30!12 +ACT 7:30!13 +ACT 7:30!14 +ACT 7:30!15 +ACT 7:30!16 +ACT 7:30!17 +ACT 7:31!2 +ACT 7:31!1 +ACT 7:31!3 +ACT 7:31!4 +ACT 7:31!5 +ACT 7:31!6 +ACT 7:31!7 +ACT 7:31!9 +ACT 7:31!8 +ACT 7:31!10 +ACT 7:31!11 +ACT 7:31!12 +ACT 7:31!13 +ACT 7:31!14 +ACT 7:32!1 +ACT 7:32!2 +ACT 7:32!3 +ACT 7:32!4 +ACT 7:32!5 +ACT 7:32!6 +ACT 7:32!7 +ACT 7:32!8 +ACT 7:32!9 +ACT 7:32!10 +ACT 7:32!11 +ACT 7:32!12 +ACT 7:32!13 +ACT 7:32!15 +ACT 7:32!14 +ACT 7:32!16 +ACT 7:32!17 +ACT 7:32!18 +ACT 7:32!19 +ACT 7:32!20 +ACT 7:33!2 +ACT 7:33!1 +ACT 7:33!3 +ACT 7:33!4 +ACT 7:33!5 +ACT 7:33!6 +ACT 7:33!7 +ACT 7:33!8 +ACT 7:33!9 +ACT 7:33!10 +ACT 7:33!11 +ACT 7:33!13 +ACT 7:33!12 +ACT 7:33!14 +ACT 7:33!15 +ACT 7:33!16 +ACT 7:33!17 +ACT 7:33!18 +ACT 7:33!19 +ACT 7:33!20 +ACT 7:34!1 +ACT 7:34!2 +ACT 7:34!3 +ACT 7:34!4 +ACT 7:34!5 +ACT 7:34!6 +ACT 7:34!7 +ACT 7:34!8 +ACT 7:34!9 +ACT 7:34!10 +ACT 7:34!11 +ACT 7:34!12 +ACT 7:34!13 +ACT 7:34!14 +ACT 7:34!15 +ACT 7:34!16 +ACT 7:34!17 +ACT 7:34!18 +ACT 7:34!19 +ACT 7:34!20 +ACT 7:34!21 +ACT 7:34!22 +ACT 7:34!23 +ACT 7:34!24 +ACT 7:34!25 +ACT 7:34!26 +ACT 7:35!1 +ACT 7:35!2 +ACT 7:35!3 +ACT 7:35!4 +ACT 7:35!5 +ACT 7:35!6 +ACT 7:35!7 +ACT 7:35!8 +ACT 7:35!9 +ACT 7:35!10 +ACT 7:35!11 +ACT 7:35!12 +ACT 7:35!13 +ACT 7:35!14 +ACT 7:35!15 +ACT 7:35!16 +ACT 7:35!17 +ACT 7:35!18 +ACT 7:35!19 +ACT 7:35!20 +ACT 7:35!21 +ACT 7:35!22 +ACT 7:35!23 +ACT 7:35!24 +ACT 7:35!25 +ACT 7:35!26 +ACT 7:35!27 +ACT 7:35!28 +ACT 7:35!29 +ACT 7:36!1 +ACT 7:36!2 +ACT 7:36!3 +ACT 7:36!4 +ACT 7:36!5 +ACT 7:36!6 +ACT 7:36!7 +ACT 7:36!8 +ACT 7:36!9 +ACT 7:36!10 +ACT 7:36!11 +ACT 7:36!12 +ACT 7:36!13 +ACT 7:36!14 +ACT 7:36!15 +ACT 7:36!16 +ACT 7:36!17 +ACT 7:36!18 +ACT 7:36!19 +ACT 7:36!20 +ACT 7:37!1 +ACT 7:37!2 +ACT 7:37!3 +ACT 7:37!4 +ACT 7:37!5 +ACT 7:37!6 +ACT 7:37!7 +ACT 7:37!8 +ACT 7:37!9 +ACT 7:37!10 +ACT 7:37!11 +ACT 7:37!12 +ACT 7:37!13 +ACT 7:37!14 +ACT 7:37!15 +ACT 7:37!16 +ACT 7:37!17 +ACT 7:37!18 +ACT 7:37!19 +ACT 7:37!20 +ACT 7:38!1 +ACT 7:38!2 +ACT 7:38!3 +ACT 7:38!4 +ACT 7:38!5 +ACT 7:38!6 +ACT 7:38!7 +ACT 7:38!8 +ACT 7:38!9 +ACT 7:38!10 +ACT 7:38!11 +ACT 7:38!12 +ACT 7:38!13 +ACT 7:38!14 +ACT 7:38!15 +ACT 7:38!16 +ACT 7:38!17 +ACT 7:38!18 +ACT 7:38!19 +ACT 7:38!20 +ACT 7:38!21 +ACT 7:38!22 +ACT 7:38!23 +ACT 7:38!24 +ACT 7:38!25 +ACT 7:38!26 +ACT 7:38!27 +ACT 7:38!28 +ACT 7:38!29 +ACT 7:38!30 +ACT 7:39!1 +ACT 7:39!2 +ACT 7:39!3 +ACT 7:39!4 +ACT 7:39!5 +ACT 7:39!6 +ACT 7:39!7 +ACT 7:39!8 +ACT 7:39!9 +ACT 7:39!10 +ACT 7:39!11 +ACT 7:39!12 +ACT 7:39!13 +ACT 7:39!14 +ACT 7:39!15 +ACT 7:39!16 +ACT 7:39!17 +ACT 7:39!18 +ACT 7:40!1 +ACT 7:40!2 +ACT 7:40!3 +ACT 7:40!4 +ACT 7:40!5 +ACT 7:40!6 +ACT 7:40!7 +ACT 7:40!8 +ACT 7:40!9 +ACT 7:40!11 +ACT 7:40!10 +ACT 7:40!12 +ACT 7:40!13 +ACT 7:40!14 +ACT 7:40!15 +ACT 7:40!16 +ACT 7:40!17 +ACT 7:40!18 +ACT 7:40!19 +ACT 7:40!20 +ACT 7:40!21 +ACT 7:40!22 +ACT 7:40!23 +ACT 7:40!24 +ACT 7:41!1 +ACT 7:41!2 +ACT 7:41!3 +ACT 7:41!4 +ACT 7:41!5 +ACT 7:41!6 +ACT 7:41!7 +ACT 7:41!8 +ACT 7:41!9 +ACT 7:41!10 +ACT 7:41!11 +ACT 7:41!12 +ACT 7:41!13 +ACT 7:41!14 +ACT 7:41!15 +ACT 7:41!16 +ACT 7:41!17 +ACT 7:41!18 +ACT 7:41!19 +ACT 7:42!2 +ACT 7:42!1 +ACT 7:42!3 +ACT 7:42!4 +ACT 7:42!5 +ACT 7:42!6 +ACT 7:42!7 +ACT 7:42!8 +ACT 7:42!9 +ACT 7:42!10 +ACT 7:42!11 +ACT 7:42!12 +ACT 7:42!13 +ACT 7:42!14 +ACT 7:42!15 +ACT 7:42!16 +ACT 7:42!17 +ACT 7:42!18 +ACT 7:42!19 +ACT 7:42!20 +ACT 7:42!21 +ACT 7:42!22 +ACT 7:42!23 +ACT 7:42!24 +ACT 7:42!25 +ACT 7:42!26 +ACT 7:42!27 +ACT 7:42!28 +ACT 7:42!29 +ACT 7:42!30 +ACT 7:42!31 +ACT 7:43!1 +ACT 7:43!2 +ACT 7:43!3 +ACT 7:43!4 +ACT 7:43!5 +ACT 7:43!6 +ACT 7:43!7 +ACT 7:43!8 +ACT 7:43!9 +ACT 7:43!10 +ACT 7:43!11 +ACT 7:43!12 +ACT 7:43!13 +ACT 7:43!14 +ACT 7:43!15 +ACT 7:43!16 +ACT 7:43!17 +ACT 7:43!18 +ACT 7:43!19 +ACT 7:43!20 +ACT 7:43!21 +ACT 7:43!22 +ACT 7:43!23 +ACT 7:44!1 +ACT 7:44!2 +ACT 7:44!3 +ACT 7:44!4 +ACT 7:44!5 +ACT 7:44!6 +ACT 7:44!7 +ACT 7:44!8 +ACT 7:44!9 +ACT 7:44!10 +ACT 7:44!11 +ACT 7:44!12 +ACT 7:44!13 +ACT 7:44!14 +ACT 7:44!15 +ACT 7:44!16 +ACT 7:44!17 +ACT 7:44!18 +ACT 7:44!19 +ACT 7:44!20 +ACT 7:44!21 +ACT 7:44!22 +ACT 7:44!23 +ACT 7:44!24 +ACT 7:45!1 +ACT 7:45!2 +ACT 7:45!3 +ACT 7:45!4 +ACT 7:45!5 +ACT 7:45!6 +ACT 7:45!7 +ACT 7:45!8 +ACT 7:45!9 +ACT 7:45!10 +ACT 7:45!11 +ACT 7:45!12 +ACT 7:45!13 +ACT 7:45!14 +ACT 7:45!15 +ACT 7:45!16 +ACT 7:45!17 +ACT 7:45!18 +ACT 7:45!19 +ACT 7:45!20 +ACT 7:45!21 +ACT 7:45!22 +ACT 7:45!23 +ACT 7:45!24 +ACT 7:45!25 +ACT 7:45!26 +ACT 7:45!27 +ACT 7:46!1 +ACT 7:46!2 +ACT 7:46!3 +ACT 7:46!4 +ACT 7:46!5 +ACT 7:46!6 +ACT 7:46!7 +ACT 7:46!8 +ACT 7:46!9 +ACT 7:46!10 +ACT 7:46!11 +ACT 7:46!12 +ACT 7:46!13 +ACT 7:47!2 +ACT 7:47!1 +ACT 7:47!3 +ACT 7:47!4 +ACT 7:47!5 +ACT 7:48!1 +ACT 7:48!2 +ACT 7:48!3 +ACT 7:48!4 +ACT 7:48!5 +ACT 7:48!6 +ACT 7:48!7 +ACT 7:48!8 +ACT 7:48!9 +ACT 7:48!10 +ACT 7:48!11 +ACT 7:49!1 +ACT 7:49!2 +ACT 7:49!3 +ACT 7:49!4 +ACT 7:49!6 +ACT 7:49!5 +ACT 7:49!7 +ACT 7:49!8 +ACT 7:49!9 +ACT 7:49!10 +ACT 7:49!11 +ACT 7:49!12 +ACT 7:49!13 +ACT 7:49!14 +ACT 7:49!15 +ACT 7:49!16 +ACT 7:49!17 +ACT 7:49!18 +ACT 7:49!19 +ACT 7:49!20 +ACT 7:49!21 +ACT 7:49!22 +ACT 7:49!23 +ACT 7:50!1 +ACT 7:50!2 +ACT 7:50!3 +ACT 7:50!4 +ACT 7:50!5 +ACT 7:50!6 +ACT 7:50!7 +ACT 7:51!1 +ACT 7:51!2 +ACT 7:51!3 +ACT 7:51!4 +ACT 7:51!5 +ACT 7:51!6 +ACT 7:51!7 +ACT 7:51!8 +ACT 7:51!9 +ACT 7:51!10 +ACT 7:51!11 +ACT 7:51!12 +ACT 7:51!13 +ACT 7:51!14 +ACT 7:51!15 +ACT 7:51!16 +ACT 7:51!17 +ACT 7:51!18 +ACT 7:51!19 +ACT 7:51!20 +ACT 7:52!1 +ACT 7:52!2 +ACT 7:52!3 +ACT 7:52!4 +ACT 7:52!5 +ACT 7:52!6 +ACT 7:52!7 +ACT 7:52!8 +ACT 7:52!9 +ACT 7:52!10 +ACT 7:52!11 +ACT 7:52!12 +ACT 7:52!13 +ACT 7:52!14 +ACT 7:52!15 +ACT 7:52!16 +ACT 7:52!17 +ACT 7:52!18 +ACT 7:52!19 +ACT 7:52!20 +ACT 7:52!21 +ACT 7:52!22 +ACT 7:52!23 +ACT 7:52!24 +ACT 7:53!1 +ACT 7:53!2 +ACT 7:53!3 +ACT 7:53!4 +ACT 7:53!5 +ACT 7:53!6 +ACT 7:53!7 +ACT 7:53!8 +ACT 7:53!9 +ACT 7:53!10 +ACT 7:54!2 +ACT 7:54!1 +ACT 7:54!3 +ACT 7:54!4 +ACT 7:54!5 +ACT 7:54!6 +ACT 7:54!7 +ACT 7:54!8 +ACT 7:54!9 +ACT 7:54!10 +ACT 7:54!11 +ACT 7:54!12 +ACT 7:54!13 +ACT 7:55!2 +ACT 7:55!1 +ACT 7:55!3 +ACT 7:55!4 +ACT 7:55!5 +ACT 7:55!6 +ACT 7:55!7 +ACT 7:55!8 +ACT 7:55!9 +ACT 7:55!10 +ACT 7:55!11 +ACT 7:55!12 +ACT 7:55!13 +ACT 7:55!14 +ACT 7:55!15 +ACT 7:55!16 +ACT 7:55!17 +ACT 7:55!18 +ACT 7:55!19 +ACT 7:56!1 +ACT 7:56!2 +ACT 7:56!3 +ACT 7:56!4 +ACT 7:56!5 +ACT 7:56!6 +ACT 7:56!7 +ACT 7:56!8 +ACT 7:56!9 +ACT 7:56!10 +ACT 7:56!11 +ACT 7:56!12 +ACT 7:56!13 +ACT 7:56!14 +ACT 7:56!16 +ACT 7:56!17 +ACT 7:56!15 +ACT 7:57!2 +ACT 7:57!1 +ACT 7:57!3 +ACT 7:57!4 +ACT 7:57!5 +ACT 7:57!6 +ACT 7:57!7 +ACT 7:57!8 +ACT 7:57!9 +ACT 7:57!10 +ACT 7:57!11 +ACT 7:57!12 +ACT 7:57!13 +ACT 7:58!1 +ACT 7:58!2 +ACT 7:58!3 +ACT 7:58!4 +ACT 7:58!5 +ACT 7:58!6 +ACT 7:58!7 +ACT 7:58!8 +ACT 7:58!9 +ACT 7:58!10 +ACT 7:58!11 +ACT 7:58!12 +ACT 7:58!13 +ACT 7:58!14 +ACT 7:58!15 +ACT 7:58!16 +ACT 7:58!17 +ACT 7:58!18 +ACT 7:58!19 +ACT 7:59!1 +ACT 7:59!2 +ACT 7:59!3 +ACT 7:59!4 +ACT 7:59!5 +ACT 7:59!6 +ACT 7:59!7 +ACT 7:59!8 +ACT 7:59!9 +ACT 7:59!10 +ACT 7:59!11 +ACT 7:59!12 +ACT 7:59!13 +ACT 7:60!2 +ACT 7:60!1 +ACT 7:60!3 +ACT 7:60!4 +ACT 7:60!5 +ACT 7:60!6 +ACT 7:60!7 +ACT 7:60!8 +ACT 7:60!9 +ACT 7:60!10 +ACT 7:60!11 +ACT 7:60!12 +ACT 7:60!13 +ACT 7:60!14 +ACT 7:60!15 +ACT 7:60!16 +ACT 7:60!17 +ACT 7:60!18 +ACT 8:1!2 +ACT 8:1!1 +ACT 8:1!3 +ACT 8:1!4 +ACT 8:1!5 +ACT 8:1!6 +ACT 8:1!7 +ACT 8:1!9 +ACT 8:1!8 +ACT 8:1!10 +ACT 8:1!11 +ACT 8:1!12 +ACT 8:1!13 +ACT 8:1!14 +ACT 8:1!15 +ACT 8:1!16 +ACT 8:1!17 +ACT 8:1!18 +ACT 8:1!19 +ACT 8:1!20 +ACT 8:1!21 +ACT 8:1!23 +ACT 8:1!22 +ACT 8:1!24 +ACT 8:1!25 +ACT 8:1!26 +ACT 8:1!27 +ACT 8:1!28 +ACT 8:1!29 +ACT 8:1!30 +ACT 8:1!31 +ACT 8:1!32 +ACT 8:1!33 +ACT 8:1!34 +ACT 8:2!2 +ACT 8:2!1 +ACT 8:2!3 +ACT 8:2!4 +ACT 8:2!5 +ACT 8:2!6 +ACT 8:2!7 +ACT 8:2!8 +ACT 8:2!9 +ACT 8:2!10 +ACT 8:2!11 +ACT 8:2!12 +ACT 8:3!2 +ACT 8:3!1 +ACT 8:3!3 +ACT 8:3!4 +ACT 8:3!5 +ACT 8:3!6 +ACT 8:3!7 +ACT 8:3!8 +ACT 8:3!9 +ACT 8:3!10 +ACT 8:3!11 +ACT 8:3!12 +ACT 8:3!13 +ACT 8:3!14 +ACT 8:3!15 +ACT 8:3!16 +ACT 8:3!17 +ACT 8:4!3 +ACT 8:4!2 +ACT 8:4!1 +ACT 8:4!4 +ACT 8:4!5 +ACT 8:4!6 +ACT 8:4!7 +ACT 8:4!8 +ACT 8:5!2 +ACT 8:5!1 +ACT 8:5!3 +ACT 8:5!4 +ACT 8:5!5 +ACT 8:5!6 +ACT 8:5!7 +ACT 8:5!8 +ACT 8:5!9 +ACT 8:5!10 +ACT 8:5!11 +ACT 8:5!12 +ACT 8:6!2 +ACT 8:6!1 +ACT 8:6!3 +ACT 8:6!4 +ACT 8:6!5 +ACT 8:6!6 +ACT 8:6!7 +ACT 8:6!8 +ACT 8:6!9 +ACT 8:6!10 +ACT 8:6!11 +ACT 8:6!12 +ACT 8:6!13 +ACT 8:6!14 +ACT 8:6!15 +ACT 8:6!16 +ACT 8:6!17 +ACT 8:6!18 +ACT 8:6!19 +ACT 8:6!20 +ACT 8:7!2 +ACT 8:7!1 +ACT 8:7!3 +ACT 8:7!4 +ACT 8:7!5 +ACT 8:7!6 +ACT 8:7!7 +ACT 8:7!8 +ACT 8:7!9 +ACT 8:7!10 +ACT 8:7!12 +ACT 8:7!11 +ACT 8:7!13 +ACT 8:7!14 +ACT 8:7!15 +ACT 8:7!16 +ACT 8:8!2 +ACT 8:8!1 +ACT 8:8!3 +ACT 8:8!4 +ACT 8:8!5 +ACT 8:8!6 +ACT 8:8!7 +ACT 8:8!8 +ACT 8:9!2 +ACT 8:9!1 +ACT 8:9!3 +ACT 8:9!4 +ACT 8:9!5 +ACT 8:9!6 +ACT 8:9!7 +ACT 8:9!8 +ACT 8:9!9 +ACT 8:9!10 +ACT 8:9!11 +ACT 8:9!12 +ACT 8:9!13 +ACT 8:9!14 +ACT 8:9!15 +ACT 8:9!16 +ACT 8:9!17 +ACT 8:9!18 +ACT 8:9!19 +ACT 8:9!21 +ACT 8:9!20 +ACT 8:10!1 +ACT 8:10!2 +ACT 8:10!3 +ACT 8:10!4 +ACT 8:10!5 +ACT 8:10!6 +ACT 8:10!7 +ACT 8:10!8 +ACT 8:10!9 +ACT 8:10!10 +ACT 8:10!11 +ACT 8:10!12 +ACT 8:10!13 +ACT 8:10!14 +ACT 8:10!15 +ACT 8:10!16 +ACT 8:10!17 +ACT 8:11!2 +ACT 8:11!1 +ACT 8:11!3 +ACT 8:11!4 +ACT 8:11!5 +ACT 8:11!6 +ACT 8:11!7 +ACT 8:11!8 +ACT 8:11!9 +ACT 8:11!10 +ACT 8:11!11 +ACT 8:12!2 +ACT 8:12!1 +ACT 8:12!3 +ACT 8:12!4 +ACT 8:12!5 +ACT 8:12!6 +ACT 8:12!7 +ACT 8:12!8 +ACT 8:12!9 +ACT 8:12!10 +ACT 8:12!11 +ACT 8:12!12 +ACT 8:12!13 +ACT 8:12!14 +ACT 8:12!15 +ACT 8:12!16 +ACT 8:12!17 +ACT 8:12!19 +ACT 8:12!18 +ACT 8:12!20 +ACT 8:12!21 +ACT 8:13!2 +ACT 8:13!1 +ACT 8:13!3 +ACT 8:13!4 +ACT 8:13!5 +ACT 8:13!6 +ACT 8:13!7 +ACT 8:13!8 +ACT 8:13!9 +ACT 8:13!10 +ACT 8:13!11 +ACT 8:13!12 +ACT 8:13!13 +ACT 8:13!14 +ACT 8:13!15 +ACT 8:13!16 +ACT 8:13!17 +ACT 8:13!18 +ACT 8:13!19 +ACT 8:13!20 +ACT 8:14!2 +ACT 8:14!3 +ACT 8:14!4 +ACT 8:14!5 +ACT 8:14!6 +ACT 8:14!1 +ACT 8:14!7 +ACT 8:14!8 +ACT 8:14!9 +ACT 8:14!10 +ACT 8:14!11 +ACT 8:14!12 +ACT 8:14!13 +ACT 8:14!14 +ACT 8:14!15 +ACT 8:14!16 +ACT 8:14!17 +ACT 8:14!18 +ACT 8:14!19 +ACT 8:14!20 +ACT 8:15!1 +ACT 8:15!2 +ACT 8:15!3 +ACT 8:15!4 +ACT 8:15!5 +ACT 8:15!6 +ACT 8:15!7 +ACT 8:15!8 +ACT 8:15!9 +ACT 8:16!2 +ACT 8:16!1 +ACT 8:16!3 +ACT 8:16!7 +ACT 8:16!4 +ACT 8:16!5 +ACT 8:16!6 +ACT 8:16!9 +ACT 8:16!8 +ACT 8:16!10 +ACT 8:16!11 +ACT 8:16!12 +ACT 8:16!13 +ACT 8:16!14 +ACT 8:16!15 +ACT 8:16!16 +ACT 8:16!17 +ACT 8:17!1 +ACT 8:17!2 +ACT 8:17!3 +ACT 8:17!4 +ACT 8:17!5 +ACT 8:17!6 +ACT 8:17!7 +ACT 8:17!8 +ACT 8:17!9 +ACT 8:17!10 +ACT 8:18!2 +ACT 8:18!3 +ACT 8:18!4 +ACT 8:18!1 +ACT 8:18!5 +ACT 8:18!6 +ACT 8:18!7 +ACT 8:18!8 +ACT 8:18!9 +ACT 8:18!10 +ACT 8:18!11 +ACT 8:18!12 +ACT 8:18!13 +ACT 8:18!14 +ACT 8:18!15 +ACT 8:18!16 +ACT 8:18!17 +ACT 8:18!18 +ACT 8:19!1 +ACT 8:19!2 +ACT 8:19!3 +ACT 8:19!4 +ACT 8:19!5 +ACT 8:19!6 +ACT 8:19!7 +ACT 8:19!9 +ACT 8:19!8 +ACT 8:19!10 +ACT 8:19!11 +ACT 8:19!12 +ACT 8:19!13 +ACT 8:19!14 +ACT 8:19!15 +ACT 8:20!2 +ACT 8:20!1 +ACT 8:20!3 +ACT 8:20!4 +ACT 8:20!5 +ACT 8:20!6 +ACT 8:20!7 +ACT 8:20!8 +ACT 8:20!9 +ACT 8:20!10 +ACT 8:20!11 +ACT 8:20!12 +ACT 8:20!13 +ACT 8:20!14 +ACT 8:20!19 +ACT 8:20!15 +ACT 8:20!16 +ACT 8:20!17 +ACT 8:20!18 +ACT 8:20!20 +ACT 8:20!21 +ACT 8:20!22 +ACT 8:21!1 +ACT 8:21!2 +ACT 8:21!3 +ACT 8:21!4 +ACT 8:21!5 +ACT 8:21!6 +ACT 8:21!7 +ACT 8:21!8 +ACT 8:21!9 +ACT 8:21!10 +ACT 8:21!12 +ACT 8:21!11 +ACT 8:21!13 +ACT 8:21!14 +ACT 8:21!15 +ACT 8:21!16 +ACT 8:21!17 +ACT 8:21!18 +ACT 8:21!19 +ACT 8:21!20 +ACT 8:22!2 +ACT 8:22!1 +ACT 8:22!3 +ACT 8:22!4 +ACT 8:22!5 +ACT 8:22!6 +ACT 8:22!7 +ACT 8:22!8 +ACT 8:22!9 +ACT 8:22!10 +ACT 8:22!11 +ACT 8:22!13 +ACT 8:22!12 +ACT 8:22!14 +ACT 8:22!15 +ACT 8:22!16 +ACT 8:22!17 +ACT 8:22!18 +ACT 8:22!19 +ACT 8:22!20 +ACT 8:23!2 +ACT 8:23!1 +ACT 8:23!3 +ACT 8:23!4 +ACT 8:23!5 +ACT 8:23!6 +ACT 8:23!7 +ACT 8:23!9 +ACT 8:23!10 +ACT 8:23!8 +ACT 8:24!2 +ACT 8:24!1 +ACT 8:24!3 +ACT 8:24!4 +ACT 8:24!5 +ACT 8:24!6 +ACT 8:24!7 +ACT 8:24!8 +ACT 8:24!9 +ACT 8:24!10 +ACT 8:24!11 +ACT 8:24!12 +ACT 8:24!13 +ACT 8:24!15 +ACT 8:24!16 +ACT 8:24!17 +ACT 8:24!14 +ACT 8:24!18 +ACT 8:24!19 +ACT 8:25!2 +ACT 8:25!3 +ACT 8:25!1 +ACT 8:25!4 +ACT 8:25!5 +ACT 8:25!6 +ACT 8:25!7 +ACT 8:25!8 +ACT 8:25!9 +ACT 8:25!10 +ACT 8:25!11 +ACT 8:25!12 +ACT 8:25!13 +ACT 8:25!15 +ACT 8:25!14 +ACT 8:25!16 +ACT 8:25!17 +ACT 8:25!18 +ACT 8:25!19 +ACT 8:26!2 +ACT 8:26!1 +ACT 8:26!3 +ACT 8:26!4 +ACT 8:26!5 +ACT 8:26!6 +ACT 8:26!7 +ACT 8:26!8 +ACT 8:26!9 +ACT 8:26!10 +ACT 8:26!11 +ACT 8:26!12 +ACT 8:26!13 +ACT 8:26!14 +ACT 8:26!15 +ACT 8:26!16 +ACT 8:26!17 +ACT 8:26!18 +ACT 8:26!19 +ACT 8:26!20 +ACT 8:26!21 +ACT 8:26!22 +ACT 8:26!23 +ACT 8:26!24 +ACT 8:27!1 +ACT 8:27!2 +ACT 8:27!3 +ACT 8:27!4 +ACT 8:27!5 +ACT 8:27!6 +ACT 8:27!7 +ACT 8:27!8 +ACT 8:27!9 +ACT 8:27!10 +ACT 8:27!11 +ACT 8:27!12 +ACT 8:27!13 +ACT 8:27!14 +ACT 8:27!15 +ACT 8:27!16 +ACT 8:27!17 +ACT 8:27!18 +ACT 8:27!19 +ACT 8:27!20 +ACT 8:27!21 +ACT 8:27!22 +ACT 8:27!23 +ACT 8:27!24 +ACT 8:28!1 +ACT 8:28!2 +ACT 8:28!3 +ACT 8:28!4 +ACT 8:28!5 +ACT 8:28!6 +ACT 8:28!7 +ACT 8:28!8 +ACT 8:28!9 +ACT 8:28!10 +ACT 8:28!11 +ACT 8:28!12 +ACT 8:28!13 +ACT 8:28!14 +ACT 8:29!2 +ACT 8:29!1 +ACT 8:29!3 +ACT 8:29!4 +ACT 8:29!5 +ACT 8:29!6 +ACT 8:29!7 +ACT 8:29!8 +ACT 8:29!9 +ACT 8:29!10 +ACT 8:29!11 +ACT 8:29!12 +ACT 8:30!2 +ACT 8:30!1 +ACT 8:30!3 +ACT 8:30!4 +ACT 8:30!5 +ACT 8:30!6 +ACT 8:30!7 +ACT 8:30!8 +ACT 8:30!9 +ACT 8:30!10 +ACT 8:30!11 +ACT 8:30!12 +ACT 8:30!13 +ACT 8:30!14 +ACT 8:30!15 +ACT 8:30!16 +ACT 8:30!17 +ACT 8:31!2 +ACT 8:31!1 +ACT 8:31!3 +ACT 8:31!5 +ACT 8:31!6 +ACT 8:31!4 +ACT 8:31!7 +ACT 8:31!8 +ACT 8:31!9 +ACT 8:31!10 +ACT 8:31!11 +ACT 8:31!12 +ACT 8:31!14 +ACT 8:31!13 +ACT 8:31!15 +ACT 8:31!16 +ACT 8:31!17 +ACT 8:31!18 +ACT 8:31!19 +ACT 8:31!20 +ACT 8:32!2 +ACT 8:32!1 +ACT 8:32!3 +ACT 8:32!4 +ACT 8:32!5 +ACT 8:32!6 +ACT 8:32!7 +ACT 8:32!8 +ACT 8:32!9 +ACT 8:32!10 +ACT 8:32!11 +ACT 8:32!12 +ACT 8:32!13 +ACT 8:32!14 +ACT 8:32!15 +ACT 8:32!16 +ACT 8:32!17 +ACT 8:32!18 +ACT 8:32!19 +ACT 8:32!20 +ACT 8:32!21 +ACT 8:32!22 +ACT 8:32!23 +ACT 8:32!24 +ACT 8:32!25 +ACT 8:32!26 +ACT 8:32!27 +ACT 8:32!28 +ACT 8:33!1 +ACT 8:33!2 +ACT 8:33!3 +ACT 8:33!4 +ACT 8:33!5 +ACT 8:33!6 +ACT 8:33!7 +ACT 8:33!8 +ACT 8:33!9 +ACT 8:33!10 +ACT 8:33!11 +ACT 8:33!12 +ACT 8:33!13 +ACT 8:33!14 +ACT 8:33!15 +ACT 8:33!16 +ACT 8:33!17 +ACT 8:33!18 +ACT 8:33!19 +ACT 8:33!20 +ACT 8:34!2 +ACT 8:34!1 +ACT 8:34!3 +ACT 8:34!4 +ACT 8:34!5 +ACT 8:34!6 +ACT 8:34!7 +ACT 8:34!8 +ACT 8:34!9 +ACT 8:34!10 +ACT 8:34!11 +ACT 8:34!12 +ACT 8:34!13 +ACT 8:34!14 +ACT 8:34!15 +ACT 8:34!16 +ACT 8:34!17 +ACT 8:34!18 +ACT 8:34!19 +ACT 8:34!20 +ACT 8:34!21 +ACT 8:35!2 +ACT 8:35!3 +ACT 8:35!4 +ACT 8:35!1 +ACT 8:35!5 +ACT 8:35!6 +ACT 8:35!7 +ACT 8:35!8 +ACT 8:35!9 +ACT 8:35!10 +ACT 8:35!11 +ACT 8:35!12 +ACT 8:35!13 +ACT 8:35!14 +ACT 8:35!15 +ACT 8:35!16 +ACT 8:35!17 +ACT 8:36!2 +ACT 8:36!1 +ACT 8:36!3 +ACT 8:36!4 +ACT 8:36!5 +ACT 8:36!6 +ACT 8:36!7 +ACT 8:36!8 +ACT 8:36!9 +ACT 8:36!10 +ACT 8:36!11 +ACT 8:36!12 +ACT 8:36!13 +ACT 8:36!14 +ACT 8:36!15 +ACT 8:36!16 +ACT 8:36!17 +ACT 8:36!18 +ACT 8:36!19 +ACT 8:36!20 +ACT 8:38!1 +ACT 8:38!2 +ACT 8:38!3 +ACT 8:38!4 +ACT 8:38!5 +ACT 8:38!6 +ACT 8:38!7 +ACT 8:38!8 +ACT 8:38!9 +ACT 8:38!10 +ACT 8:38!11 +ACT 8:38!13 +ACT 8:38!12 +ACT 8:38!14 +ACT 8:38!15 +ACT 8:38!16 +ACT 8:38!17 +ACT 8:38!18 +ACT 8:38!19 +ACT 8:38!20 +ACT 8:39!2 +ACT 8:39!1 +ACT 8:39!3 +ACT 8:39!4 +ACT 8:39!5 +ACT 8:39!6 +ACT 8:39!7 +ACT 8:39!8 +ACT 8:39!9 +ACT 8:39!10 +ACT 8:39!11 +ACT 8:39!12 +ACT 8:39!13 +ACT 8:39!14 +ACT 8:39!15 +ACT 8:39!16 +ACT 8:39!17 +ACT 8:39!18 +ACT 8:39!20 +ACT 8:39!19 +ACT 8:39!21 +ACT 8:39!22 +ACT 8:39!23 +ACT 8:39!24 +ACT 8:40!2 +ACT 8:40!1 +ACT 8:40!3 +ACT 8:40!4 +ACT 8:40!5 +ACT 8:40!6 +ACT 8:40!7 +ACT 8:40!8 +ACT 8:40!9 +ACT 8:40!10 +ACT 8:40!11 +ACT 8:40!12 +ACT 8:40!13 +ACT 8:40!14 +ACT 8:40!15 +ACT 8:40!16 +ACT 8:40!17 +ACT 9:1!2 +ACT 9:1!1 +ACT 9:1!3 +ACT 9:1!4 +ACT 9:1!5 +ACT 9:1!6 +ACT 9:1!7 +ACT 9:1!8 +ACT 9:1!9 +ACT 9:1!10 +ACT 9:1!11 +ACT 9:1!12 +ACT 9:1!13 +ACT 9:1!14 +ACT 9:1!15 +ACT 9:1!16 +ACT 9:2!1 +ACT 9:2!2 +ACT 9:2!3 +ACT 9:2!4 +ACT 9:2!5 +ACT 9:2!6 +ACT 9:2!7 +ACT 9:2!8 +ACT 9:2!9 +ACT 9:2!10 +ACT 9:2!11 +ACT 9:2!13 +ACT 9:2!12 +ACT 9:2!14 +ACT 9:2!15 +ACT 9:2!16 +ACT 9:2!18 +ACT 9:2!17 +ACT 9:2!19 +ACT 9:2!20 +ACT 9:2!21 +ACT 9:2!22 +ACT 9:2!23 +ACT 9:2!24 +ACT 9:3!2 +ACT 9:3!1 +ACT 9:3!3 +ACT 9:3!4 +ACT 9:3!5 +ACT 9:3!6 +ACT 9:3!7 +ACT 9:3!8 +ACT 9:3!9 +ACT 9:3!11 +ACT 9:3!10 +ACT 9:3!12 +ACT 9:3!13 +ACT 9:3!14 +ACT 9:3!15 +ACT 9:3!16 +ACT 9:3!17 +ACT 9:4!1 +ACT 9:4!2 +ACT 9:4!3 +ACT 9:4!4 +ACT 9:4!5 +ACT 9:4!6 +ACT 9:4!7 +ACT 9:4!8 +ACT 9:4!9 +ACT 9:4!10 +ACT 9:4!11 +ACT 9:4!12 +ACT 9:4!13 +ACT 9:4!14 +ACT 9:5!2 +ACT 9:5!1 +ACT 9:5!3 +ACT 9:5!4 +ACT 9:5!5 +ACT 9:5!7 +ACT 9:5!6 +ACT 9:5!8 +ACT 9:5!9 +ACT 9:5!10 +ACT 9:5!11 +ACT 9:5!12 +ACT 9:5!13 +ACT 9:6!1 +ACT 9:6!2 +ACT 9:6!3 +ACT 9:6!4 +ACT 9:6!5 +ACT 9:6!6 +ACT 9:6!7 +ACT 9:6!8 +ACT 9:6!9 +ACT 9:6!10 +ACT 9:6!11 +ACT 9:6!12 +ACT 9:6!13 +ACT 9:6!15 +ACT 9:6!14 +ACT 9:7!2 +ACT 9:7!1 +ACT 9:7!3 +ACT 9:7!4 +ACT 9:7!5 +ACT 9:7!6 +ACT 9:7!7 +ACT 9:7!8 +ACT 9:7!10 +ACT 9:7!9 +ACT 9:7!11 +ACT 9:7!12 +ACT 9:7!14 +ACT 9:7!13 +ACT 9:7!15 +ACT 9:8!2 +ACT 9:8!1 +ACT 9:8!3 +ACT 9:8!4 +ACT 9:8!5 +ACT 9:8!6 +ACT 9:8!8 +ACT 9:8!7 +ACT 9:8!9 +ACT 9:8!10 +ACT 9:8!11 +ACT 9:8!12 +ACT 9:8!13 +ACT 9:8!15 +ACT 9:8!14 +ACT 9:8!16 +ACT 9:8!17 +ACT 9:8!18 +ACT 9:8!19 +ACT 9:9!1 +ACT 9:9!2 +ACT 9:9!6 +ACT 9:9!3 +ACT 9:9!4 +ACT 9:9!5 +ACT 9:9!7 +ACT 9:9!8 +ACT 9:9!9 +ACT 9:9!10 +ACT 9:9!11 +ACT 9:10!2 +ACT 9:10!1 +ACT 9:10!3 +ACT 9:10!4 +ACT 9:10!7 +ACT 9:10!8 +ACT 9:10!5 +ACT 9:10!6 +ACT 9:10!9 +ACT 9:10!10 +ACT 9:10!11 +ACT 9:10!12 +ACT 9:10!13 +ACT 9:10!14 +ACT 9:10!15 +ACT 9:10!16 +ACT 9:10!17 +ACT 9:10!19 +ACT 9:10!18 +ACT 9:10!20 +ACT 9:10!21 +ACT 9:10!22 +ACT 9:10!23 +ACT 9:11!2 +ACT 9:11!1 +ACT 9:11!3 +ACT 9:11!4 +ACT 9:11!5 +ACT 9:11!6 +ACT 9:11!7 +ACT 9:11!8 +ACT 9:11!9 +ACT 9:11!10 +ACT 9:11!11 +ACT 9:11!12 +ACT 9:11!13 +ACT 9:11!14 +ACT 9:11!15 +ACT 9:11!16 +ACT 9:11!17 +ACT 9:11!18 +ACT 9:11!19 +ACT 9:11!20 +ACT 9:11!21 +ACT 9:11!23 +ACT 9:11!22 +ACT 9:11!24 +ACT 9:12!1 +ACT 9:12!2 +ACT 9:12!3 +ACT 9:12!4 +ACT 9:12!5 +ACT 9:12!6 +ACT 9:12!7 +ACT 9:12!8 +ACT 9:12!9 +ACT 9:12!10 +ACT 9:12!11 +ACT 9:12!12 +ACT 9:13!2 +ACT 9:13!1 +ACT 9:13!3 +ACT 9:13!4 +ACT 9:13!5 +ACT 9:13!6 +ACT 9:13!7 +ACT 9:13!8 +ACT 9:13!9 +ACT 9:13!10 +ACT 9:13!11 +ACT 9:13!12 +ACT 9:13!13 +ACT 9:13!14 +ACT 9:13!15 +ACT 9:13!16 +ACT 9:13!17 +ACT 9:13!18 +ACT 9:13!19 +ACT 9:14!1 +ACT 9:14!2 +ACT 9:14!3 +ACT 9:14!4 +ACT 9:14!5 +ACT 9:14!6 +ACT 9:14!7 +ACT 9:14!8 +ACT 9:14!9 +ACT 9:14!10 +ACT 9:14!11 +ACT 9:14!12 +ACT 9:14!13 +ACT 9:14!14 +ACT 9:15!2 +ACT 9:15!1 +ACT 9:15!3 +ACT 9:15!4 +ACT 9:15!5 +ACT 9:15!6 +ACT 9:15!7 +ACT 9:15!8 +ACT 9:15!9 +ACT 9:15!10 +ACT 9:15!11 +ACT 9:15!12 +ACT 9:15!13 +ACT 9:15!14 +ACT 9:15!15 +ACT 9:15!16 +ACT 9:15!17 +ACT 9:15!18 +ACT 9:15!19 +ACT 9:15!21 +ACT 9:15!20 +ACT 9:15!22 +ACT 9:15!23 +ACT 9:15!25 +ACT 9:15!24 +ACT 9:15!26 +ACT 9:16!2 +ACT 9:16!1 +ACT 9:16!3 +ACT 9:16!4 +ACT 9:16!5 +ACT 9:16!7 +ACT 9:16!8 +ACT 9:16!9 +ACT 9:16!10 +ACT 9:16!11 +ACT 9:16!12 +ACT 9:16!6 +ACT 9:17!2 +ACT 9:17!1 +ACT 9:17!3 +ACT 9:17!4 +ACT 9:17!5 +ACT 9:17!6 +ACT 9:17!7 +ACT 9:17!8 +ACT 9:17!9 +ACT 9:17!10 +ACT 9:17!11 +ACT 9:17!12 +ACT 9:17!13 +ACT 9:17!14 +ACT 9:17!15 +ACT 9:17!16 +ACT 9:17!17 +ACT 9:17!18 +ACT 9:17!19 +ACT 9:17!22 +ACT 9:17!23 +ACT 9:17!24 +ACT 9:17!25 +ACT 9:17!26 +ACT 9:17!27 +ACT 9:17!28 +ACT 9:17!29 +ACT 9:17!30 +ACT 9:17!20 +ACT 9:17!21 +ACT 9:17!31 +ACT 9:17!32 +ACT 9:17!33 +ACT 9:17!34 +ACT 9:17!35 +ACT 9:17!36 +ACT 9:18!1 +ACT 9:18!2 +ACT 9:18!3 +ACT 9:18!5 +ACT 9:18!4 +ACT 9:18!6 +ACT 9:18!7 +ACT 9:18!8 +ACT 9:18!9 +ACT 9:18!11 +ACT 9:18!10 +ACT 9:18!12 +ACT 9:18!13 +ACT 9:18!14 +ACT 9:19!1 +ACT 9:19!2 +ACT 9:19!3 +ACT 9:19!4 +ACT 9:19!6 +ACT 9:19!5 +ACT 9:19!7 +ACT 9:19!8 +ACT 9:19!9 +ACT 9:19!10 +ACT 9:19!11 +ACT 9:19!12 +ACT 9:19!13 +ACT 9:20!1 +ACT 9:20!2 +ACT 9:20!3 +ACT 9:20!4 +ACT 9:20!5 +ACT 9:20!6 +ACT 9:20!7 +ACT 9:20!8 +ACT 9:20!9 +ACT 9:20!10 +ACT 9:20!11 +ACT 9:20!12 +ACT 9:20!13 +ACT 9:20!14 +ACT 9:20!15 +ACT 9:21!2 +ACT 9:21!1 +ACT 9:21!3 +ACT 9:21!4 +ACT 9:21!5 +ACT 9:21!6 +ACT 9:21!7 +ACT 9:21!8 +ACT 9:21!9 +ACT 9:21!10 +ACT 9:21!11 +ACT 9:21!12 +ACT 9:21!13 +ACT 9:21!14 +ACT 9:21!15 +ACT 9:21!16 +ACT 9:21!17 +ACT 9:21!18 +ACT 9:21!19 +ACT 9:21!20 +ACT 9:21!21 +ACT 9:21!22 +ACT 9:21!23 +ACT 9:21!24 +ACT 9:21!25 +ACT 9:21!26 +ACT 9:21!27 +ACT 9:21!28 +ACT 9:21!29 +ACT 9:21!30 +ACT 9:21!31 +ACT 9:22!2 +ACT 9:22!1 +ACT 9:22!3 +ACT 9:22!4 +ACT 9:22!5 +ACT 9:22!6 +ACT 9:22!7 +ACT 9:22!8 +ACT 9:22!9 +ACT 9:22!10 +ACT 9:22!11 +ACT 9:22!12 +ACT 9:22!13 +ACT 9:22!14 +ACT 9:22!15 +ACT 9:22!16 +ACT 9:22!17 +ACT 9:23!2 +ACT 9:23!1 +ACT 9:23!3 +ACT 9:23!4 +ACT 9:23!5 +ACT 9:23!6 +ACT 9:23!7 +ACT 9:23!8 +ACT 9:23!9 +ACT 9:23!10 +ACT 9:24!2 +ACT 9:24!1 +ACT 9:24!3 +ACT 9:24!4 +ACT 9:24!5 +ACT 9:24!6 +ACT 9:24!7 +ACT 9:24!9 +ACT 9:24!8 +ACT 9:24!10 +ACT 9:24!11 +ACT 9:24!12 +ACT 9:24!14 +ACT 9:24!13 +ACT 9:24!15 +ACT 9:24!16 +ACT 9:24!17 +ACT 9:24!18 +ACT 9:24!19 +ACT 9:25!2 +ACT 9:25!1 +ACT 9:25!3 +ACT 9:25!4 +ACT 9:25!5 +ACT 9:25!6 +ACT 9:25!7 +ACT 9:25!8 +ACT 9:25!9 +ACT 9:25!10 +ACT 9:25!11 +ACT 9:25!12 +ACT 9:25!13 +ACT 9:25!14 +ACT 9:26!2 +ACT 9:26!1 +ACT 9:26!3 +ACT 9:26!4 +ACT 9:26!5 +ACT 9:26!6 +ACT 9:26!7 +ACT 9:26!8 +ACT 9:26!9 +ACT 9:26!10 +ACT 9:26!11 +ACT 9:26!12 +ACT 9:26!13 +ACT 9:26!14 +ACT 9:26!15 +ACT 9:26!16 +ACT 9:26!17 +ACT 9:27!2 +ACT 9:27!1 +ACT 9:27!3 +ACT 9:27!4 +ACT 9:27!5 +ACT 9:27!6 +ACT 9:27!7 +ACT 9:27!8 +ACT 9:27!9 +ACT 9:27!10 +ACT 9:27!11 +ACT 9:27!12 +ACT 9:27!13 +ACT 9:27!14 +ACT 9:27!15 +ACT 9:27!16 +ACT 9:27!17 +ACT 9:27!18 +ACT 9:27!19 +ACT 9:27!20 +ACT 9:27!21 +ACT 9:27!22 +ACT 9:27!23 +ACT 9:27!24 +ACT 9:27!25 +ACT 9:27!26 +ACT 9:27!27 +ACT 9:27!28 +ACT 9:27!29 +ACT 9:27!30 +ACT 9:27!31 +ACT 9:28!1 +ACT 9:28!2 +ACT 9:28!5 +ACT 9:28!6 +ACT 9:28!7 +ACT 9:28!3 +ACT 9:28!4 +ACT 9:28!8 +ACT 9:28!9 +ACT 9:28!10 +ACT 9:28!11 +ACT 9:28!12 +ACT 9:28!13 +ACT 9:28!14 +ACT 9:28!15 +ACT 9:29!2 +ACT 9:29!1 +ACT 9:29!3 +ACT 9:29!4 +ACT 9:29!5 +ACT 9:29!6 +ACT 9:29!7 +ACT 9:29!9 +ACT 9:29!8 +ACT 9:29!10 +ACT 9:29!11 +ACT 9:29!12 +ACT 9:30!2 +ACT 9:30!1 +ACT 9:30!3 +ACT 9:30!4 +ACT 9:30!5 +ACT 9:30!6 +ACT 9:30!7 +ACT 9:30!8 +ACT 9:30!9 +ACT 9:30!10 +ACT 9:30!11 +ACT 9:30!12 +ACT 9:30!13 +ACT 9:31!2 +ACT 9:31!3 +ACT 9:31!1 +ACT 9:31!4 +ACT 9:31!5 +ACT 9:31!6 +ACT 9:31!7 +ACT 9:31!8 +ACT 9:31!9 +ACT 9:31!10 +ACT 9:31!11 +ACT 9:31!12 +ACT 9:31!13 +ACT 9:31!14 +ACT 9:31!15 +ACT 9:31!16 +ACT 9:31!17 +ACT 9:31!18 +ACT 9:31!19 +ACT 9:31!20 +ACT 9:31!21 +ACT 9:31!22 +ACT 9:31!23 +ACT 9:31!24 +ACT 9:31!25 +ACT 9:31!26 +ACT 9:31!27 +ACT 9:31!28 +ACT 9:32!2 +ACT 9:32!1 +ACT 9:32!3 +ACT 9:32!4 +ACT 9:32!5 +ACT 9:32!6 +ACT 9:32!7 +ACT 9:32!8 +ACT 9:32!9 +ACT 9:32!10 +ACT 9:32!11 +ACT 9:32!12 +ACT 9:32!13 +ACT 9:32!14 +ACT 9:33!2 +ACT 9:33!1 +ACT 9:33!3 +ACT 9:33!4 +ACT 9:33!5 +ACT 9:33!6 +ACT 9:33!7 +ACT 9:33!8 +ACT 9:33!9 +ACT 9:33!10 +ACT 9:33!11 +ACT 9:33!12 +ACT 9:33!13 +ACT 9:33!14 +ACT 9:33!15 +ACT 9:33!16 +ACT 9:34!1 +ACT 9:34!2 +ACT 9:34!3 +ACT 9:34!4 +ACT 9:34!5 +ACT 9:34!6 +ACT 9:34!7 +ACT 9:34!8 +ACT 9:34!9 +ACT 9:34!10 +ACT 9:34!11 +ACT 9:34!12 +ACT 9:34!13 +ACT 9:34!14 +ACT 9:34!15 +ACT 9:34!16 +ACT 9:34!17 +ACT 9:35!1 +ACT 9:35!2 +ACT 9:35!3 +ACT 9:35!4 +ACT 9:35!5 +ACT 9:35!6 +ACT 9:35!7 +ACT 9:35!8 +ACT 9:35!9 +ACT 9:35!10 +ACT 9:35!11 +ACT 9:35!12 +ACT 9:35!13 +ACT 9:35!14 +ACT 9:35!15 +ACT 9:36!3 +ACT 9:36!1 +ACT 9:36!2 +ACT 9:36!5 +ACT 9:36!4 +ACT 9:36!6 +ACT 9:36!7 +ACT 9:36!8 +ACT 9:36!9 +ACT 9:36!10 +ACT 9:36!11 +ACT 9:36!12 +ACT 9:36!13 +ACT 9:36!14 +ACT 9:36!15 +ACT 9:36!16 +ACT 9:36!17 +ACT 9:36!18 +ACT 9:36!19 +ACT 9:36!20 +ACT 9:36!21 +ACT 9:37!2 +ACT 9:37!1 +ACT 9:37!3 +ACT 9:37!4 +ACT 9:37!5 +ACT 9:37!6 +ACT 9:37!7 +ACT 9:37!8 +ACT 9:37!9 +ACT 9:37!11 +ACT 9:37!10 +ACT 9:37!12 +ACT 9:37!13 +ACT 9:37!14 +ACT 9:38!2 +ACT 9:38!3 +ACT 9:38!4 +ACT 9:38!1 +ACT 9:38!5 +ACT 9:38!6 +ACT 9:38!7 +ACT 9:38!8 +ACT 9:38!9 +ACT 9:38!10 +ACT 9:38!11 +ACT 9:38!12 +ACT 9:38!13 +ACT 9:38!14 +ACT 9:38!15 +ACT 9:38!16 +ACT 9:38!17 +ACT 9:38!18 +ACT 9:38!19 +ACT 9:38!20 +ACT 9:38!21 +ACT 9:38!22 +ACT 9:38!23 +ACT 9:38!24 +ACT 9:38!25 +ACT 9:39!2 +ACT 9:39!1 +ACT 9:39!3 +ACT 9:39!4 +ACT 9:39!5 +ACT 9:39!6 +ACT 9:39!7 +ACT 9:39!8 +ACT 9:39!9 +ACT 9:39!10 +ACT 9:39!11 +ACT 9:39!12 +ACT 9:39!13 +ACT 9:39!14 +ACT 9:39!15 +ACT 9:39!16 +ACT 9:39!17 +ACT 9:39!18 +ACT 9:39!19 +ACT 9:39!20 +ACT 9:39!21 +ACT 9:39!22 +ACT 9:39!23 +ACT 9:39!24 +ACT 9:39!25 +ACT 9:39!26 +ACT 9:39!27 +ACT 9:39!28 +ACT 9:39!29 +ACT 9:39!30 +ACT 9:40!2 +ACT 9:40!5 +ACT 9:40!6 +ACT 9:40!1 +ACT 9:40!3 +ACT 9:40!4 +ACT 9:40!7 +ACT 9:40!8 +ACT 9:40!9 +ACT 9:40!10 +ACT 9:40!11 +ACT 9:40!12 +ACT 9:40!13 +ACT 9:40!14 +ACT 9:40!15 +ACT 9:40!16 +ACT 9:40!17 +ACT 9:40!18 +ACT 9:40!19 +ACT 9:40!21 +ACT 9:40!20 +ACT 9:40!22 +ACT 9:40!23 +ACT 9:40!24 +ACT 9:40!25 +ACT 9:40!26 +ACT 9:40!27 +ACT 9:40!28 +ACT 9:40!29 +ACT 9:40!30 +ACT 9:41!2 +ACT 9:41!1 +ACT 9:41!3 +ACT 9:41!4 +ACT 9:41!5 +ACT 9:41!6 +ACT 9:41!8 +ACT 9:41!7 +ACT 9:41!9 +ACT 9:41!10 +ACT 9:41!11 +ACT 9:41!12 +ACT 9:41!13 +ACT 9:41!14 +ACT 9:41!15 +ACT 9:41!16 +ACT 9:42!2 +ACT 9:42!1 +ACT 9:42!3 +ACT 9:42!4 +ACT 9:42!5 +ACT 9:42!6 +ACT 9:42!7 +ACT 9:42!8 +ACT 9:42!9 +ACT 9:42!10 +ACT 9:42!11 +ACT 9:42!12 +ACT 9:42!13 +ACT 9:43!2 +ACT 9:43!1 +ACT 9:43!3 +ACT 9:43!4 +ACT 9:43!5 +ACT 9:43!6 +ACT 9:43!7 +ACT 9:43!8 +ACT 9:43!9 +ACT 9:43!10 +ACT 9:43!11 +ACT 10:1!2 +ACT 10:1!1 +ACT 10:1!3 +ACT 10:1!4 +ACT 10:1!5 +ACT 10:1!6 +ACT 10:1!7 +ACT 10:1!8 +ACT 10:1!9 +ACT 10:1!10 +ACT 10:1!11 +ACT 10:1!12 +ACT 10:1!13 +ACT 10:2!1 +ACT 10:2!2 +ACT 10:2!3 +ACT 10:2!4 +ACT 10:2!5 +ACT 10:2!6 +ACT 10:2!7 +ACT 10:2!8 +ACT 10:2!9 +ACT 10:2!10 +ACT 10:2!11 +ACT 10:2!12 +ACT 10:2!13 +ACT 10:2!14 +ACT 10:2!15 +ACT 10:2!16 +ACT 10:2!17 +ACT 10:2!18 +ACT 10:2!19 +ACT 10:2!20 +ACT 10:2!21 +ACT 10:3!1 +ACT 10:3!2 +ACT 10:3!3 +ACT 10:3!4 +ACT 10:3!5 +ACT 10:3!6 +ACT 10:3!7 +ACT 10:3!8 +ACT 10:3!9 +ACT 10:3!10 +ACT 10:3!11 +ACT 10:3!12 +ACT 10:3!13 +ACT 10:3!14 +ACT 10:3!15 +ACT 10:3!16 +ACT 10:3!17 +ACT 10:3!18 +ACT 10:3!19 +ACT 10:3!20 +ACT 10:4!2 +ACT 10:4!1 +ACT 10:4!3 +ACT 10:4!4 +ACT 10:4!5 +ACT 10:4!6 +ACT 10:4!7 +ACT 10:4!8 +ACT 10:4!9 +ACT 10:4!10 +ACT 10:4!11 +ACT 10:4!13 +ACT 10:4!12 +ACT 10:4!14 +ACT 10:4!15 +ACT 10:4!16 +ACT 10:4!17 +ACT 10:4!18 +ACT 10:4!19 +ACT 10:4!20 +ACT 10:4!21 +ACT 10:4!22 +ACT 10:4!23 +ACT 10:4!24 +ACT 10:4!25 +ACT 10:4!26 +ACT 10:4!27 +ACT 10:5!1 +ACT 10:5!2 +ACT 10:5!3 +ACT 10:5!4 +ACT 10:5!5 +ACT 10:5!6 +ACT 10:5!7 +ACT 10:5!8 +ACT 10:5!9 +ACT 10:5!10 +ACT 10:5!11 +ACT 10:5!12 +ACT 10:5!13 +ACT 10:6!1 +ACT 10:6!2 +ACT 10:6!3 +ACT 10:6!4 +ACT 10:6!5 +ACT 10:6!6 +ACT 10:6!7 +ACT 10:6!8 +ACT 10:6!9 +ACT 10:6!10 +ACT 10:6!11 +ACT 10:7!2 +ACT 10:7!1 +ACT 10:7!3 +ACT 10:7!4 +ACT 10:7!5 +ACT 10:7!6 +ACT 10:7!7 +ACT 10:7!8 +ACT 10:7!9 +ACT 10:7!10 +ACT 10:7!11 +ACT 10:7!12 +ACT 10:7!13 +ACT 10:7!14 +ACT 10:7!15 +ACT 10:7!16 +ACT 10:7!17 +ACT 10:7!18 +ACT 10:8!1 +ACT 10:8!2 +ACT 10:8!3 +ACT 10:8!4 +ACT 10:8!5 +ACT 10:8!6 +ACT 10:8!7 +ACT 10:8!8 +ACT 10:8!9 +ACT 10:9!2 +ACT 10:9!1 +ACT 10:9!3 +ACT 10:9!4 +ACT 10:9!5 +ACT 10:9!6 +ACT 10:9!7 +ACT 10:9!8 +ACT 10:9!9 +ACT 10:9!10 +ACT 10:9!11 +ACT 10:9!12 +ACT 10:9!13 +ACT 10:9!14 +ACT 10:9!15 +ACT 10:9!16 +ACT 10:9!17 +ACT 10:9!18 +ACT 10:10!2 +ACT 10:10!1 +ACT 10:10!3 +ACT 10:10!4 +ACT 10:10!5 +ACT 10:10!6 +ACT 10:10!8 +ACT 10:10!7 +ACT 10:10!9 +ACT 10:10!10 +ACT 10:10!11 +ACT 10:10!12 +ACT 10:10!13 +ACT 10:11!1 +ACT 10:11!2 +ACT 10:11!3 +ACT 10:11!4 +ACT 10:11!5 +ACT 10:11!6 +ACT 10:11!7 +ACT 10:11!8 +ACT 10:11!9 +ACT 10:11!10 +ACT 10:11!11 +ACT 10:11!12 +ACT 10:11!13 +ACT 10:11!14 +ACT 10:11!15 +ACT 10:11!16 +ACT 10:11!17 +ACT 10:11!18 +ACT 10:12!1 +ACT 10:12!2 +ACT 10:12!3 +ACT 10:12!4 +ACT 10:12!5 +ACT 10:12!6 +ACT 10:12!7 +ACT 10:12!8 +ACT 10:12!9 +ACT 10:12!10 +ACT 10:12!11 +ACT 10:12!12 +ACT 10:12!13 +ACT 10:12!14 +ACT 10:13!1 +ACT 10:13!2 +ACT 10:13!3 +ACT 10:13!4 +ACT 10:13!5 +ACT 10:13!7 +ACT 10:13!6 +ACT 10:13!8 +ACT 10:13!9 +ACT 10:13!10 +ACT 10:14!2 +ACT 10:14!1 +ACT 10:14!3 +ACT 10:14!4 +ACT 10:14!5 +ACT 10:14!6 +ACT 10:14!7 +ACT 10:14!8 +ACT 10:14!9 +ACT 10:14!10 +ACT 10:14!11 +ACT 10:14!12 +ACT 10:14!13 +ACT 10:15!1 +ACT 10:15!2 +ACT 10:15!3 +ACT 10:15!4 +ACT 10:15!5 +ACT 10:15!6 +ACT 10:15!7 +ACT 10:15!8 +ACT 10:15!9 +ACT 10:15!10 +ACT 10:15!11 +ACT 10:15!12 +ACT 10:15!13 +ACT 10:15!14 +ACT 10:16!2 +ACT 10:16!1 +ACT 10:16!3 +ACT 10:16!4 +ACT 10:16!5 +ACT 10:16!6 +ACT 10:16!7 +ACT 10:16!8 +ACT 10:16!9 +ACT 10:16!10 +ACT 10:16!11 +ACT 10:16!12 +ACT 10:16!13 +ACT 10:17!2 +ACT 10:17!1 +ACT 10:17!3 +ACT 10:17!4 +ACT 10:17!5 +ACT 10:17!6 +ACT 10:17!7 +ACT 10:17!9 +ACT 10:17!8 +ACT 10:17!10 +ACT 10:17!11 +ACT 10:17!12 +ACT 10:17!13 +ACT 10:17!14 +ACT 10:17!15 +ACT 10:17!16 +ACT 10:17!17 +ACT 10:17!18 +ACT 10:17!19 +ACT 10:17!20 +ACT 10:17!21 +ACT 10:17!22 +ACT 10:17!23 +ACT 10:17!24 +ACT 10:17!25 +ACT 10:17!26 +ACT 10:17!27 +ACT 10:17!28 +ACT 10:17!29 +ACT 10:17!30 +ACT 10:17!31 +ACT 10:18!1 +ACT 10:18!2 +ACT 10:18!3 +ACT 10:18!4 +ACT 10:18!5 +ACT 10:18!6 +ACT 10:18!7 +ACT 10:18!8 +ACT 10:18!9 +ACT 10:18!10 +ACT 10:19!2 +ACT 10:19!1 +ACT 10:19!3 +ACT 10:19!4 +ACT 10:19!5 +ACT 10:19!6 +ACT 10:19!7 +ACT 10:19!8 +ACT 10:19!9 +ACT 10:19!10 +ACT 10:19!11 +ACT 10:19!12 +ACT 10:19!13 +ACT 10:19!14 +ACT 10:19!15 +ACT 10:20!1 +ACT 10:20!2 +ACT 10:20!3 +ACT 10:20!4 +ACT 10:20!5 +ACT 10:20!6 +ACT 10:20!7 +ACT 10:20!8 +ACT 10:20!9 +ACT 10:20!10 +ACT 10:20!11 +ACT 10:20!12 +ACT 10:20!13 +ACT 10:21!2 +ACT 10:21!1 +ACT 10:21!3 +ACT 10:21!4 +ACT 10:21!5 +ACT 10:21!6 +ACT 10:21!7 +ACT 10:21!8 +ACT 10:21!9 +ACT 10:21!10 +ACT 10:21!11 +ACT 10:21!12 +ACT 10:21!13 +ACT 10:21!14 +ACT 10:21!15 +ACT 10:21!16 +ACT 10:21!17 +ACT 10:21!18 +ACT 10:22!2 +ACT 10:22!1 +ACT 10:22!3 +ACT 10:22!4 +ACT 10:22!5 +ACT 10:22!6 +ACT 10:22!7 +ACT 10:22!8 +ACT 10:22!9 +ACT 10:22!10 +ACT 10:22!11 +ACT 10:22!13 +ACT 10:22!12 +ACT 10:22!14 +ACT 10:22!15 +ACT 10:22!16 +ACT 10:22!17 +ACT 10:22!18 +ACT 10:22!19 +ACT 10:22!20 +ACT 10:22!21 +ACT 10:22!22 +ACT 10:22!23 +ACT 10:22!24 +ACT 10:22!25 +ACT 10:22!26 +ACT 10:22!27 +ACT 10:22!28 +ACT 10:22!29 +ACT 10:22!30 +ACT 10:22!31 +ACT 10:22!32 +ACT 10:22!33 +ACT 10:22!34 +ACT 10:23!2 +ACT 10:23!1 +ACT 10:23!3 +ACT 10:23!4 +ACT 10:23!6 +ACT 10:23!5 +ACT 10:23!7 +ACT 10:23!8 +ACT 10:23!9 +ACT 10:23!10 +ACT 10:23!11 +ACT 10:23!12 +ACT 10:23!13 +ACT 10:23!14 +ACT 10:23!15 +ACT 10:23!16 +ACT 10:23!17 +ACT 10:23!18 +ACT 10:23!19 +ACT 10:23!20 +ACT 10:24!2 +ACT 10:24!1 +ACT 10:24!3 +ACT 10:24!4 +ACT 10:24!5 +ACT 10:24!6 +ACT 10:24!7 +ACT 10:24!9 +ACT 10:24!8 +ACT 10:24!10 +ACT 10:24!11 +ACT 10:24!12 +ACT 10:24!13 +ACT 10:24!14 +ACT 10:24!15 +ACT 10:24!16 +ACT 10:24!17 +ACT 10:24!18 +ACT 10:24!19 +ACT 10:24!20 +ACT 10:24!21 +ACT 10:25!2 +ACT 10:25!1 +ACT 10:25!3 +ACT 10:25!4 +ACT 10:25!5 +ACT 10:25!6 +ACT 10:25!7 +ACT 10:25!8 +ACT 10:25!9 +ACT 10:25!10 +ACT 10:25!11 +ACT 10:25!12 +ACT 10:25!13 +ACT 10:25!14 +ACT 10:25!15 +ACT 10:25!16 +ACT 10:26!2 +ACT 10:26!1 +ACT 10:26!3 +ACT 10:26!4 +ACT 10:26!5 +ACT 10:26!6 +ACT 10:26!7 +ACT 10:26!8 +ACT 10:26!9 +ACT 10:26!10 +ACT 10:26!11 +ACT 10:26!12 +ACT 10:27!1 +ACT 10:27!2 +ACT 10:27!3 +ACT 10:27!4 +ACT 10:27!5 +ACT 10:27!6 +ACT 10:27!7 +ACT 10:27!8 +ACT 10:28!2 +ACT 10:28!1 +ACT 10:28!3 +ACT 10:28!4 +ACT 10:28!5 +ACT 10:28!6 +ACT 10:28!7 +ACT 10:28!8 +ACT 10:28!9 +ACT 10:28!10 +ACT 10:28!11 +ACT 10:28!12 +ACT 10:28!13 +ACT 10:28!14 +ACT 10:28!15 +ACT 10:28!16 +ACT 10:28!17 +ACT 10:28!18 +ACT 10:28!19 +ACT 10:28!20 +ACT 10:28!25 +ACT 10:28!21 +ACT 10:28!22 +ACT 10:28!23 +ACT 10:28!24 +ACT 10:29!1 +ACT 10:29!2 +ACT 10:29!3 +ACT 10:29!4 +ACT 10:29!5 +ACT 10:29!7 +ACT 10:29!6 +ACT 10:29!8 +ACT 10:29!9 +ACT 10:29!10 +ACT 10:29!11 +ACT 10:30!1 +ACT 10:30!2 +ACT 10:30!3 +ACT 10:30!4 +ACT 10:30!5 +ACT 10:30!6 +ACT 10:30!7 +ACT 10:30!8 +ACT 10:30!9 +ACT 10:30!10 +ACT 10:30!11 +ACT 10:30!12 +ACT 10:30!15 +ACT 10:30!13 +ACT 10:30!14 +ACT 10:30!16 +ACT 10:30!17 +ACT 10:30!18 +ACT 10:30!19 +ACT 10:30!20 +ACT 10:30!21 +ACT 10:30!22 +ACT 10:30!23 +ACT 10:30!24 +ACT 10:30!25 +ACT 10:30!26 +ACT 10:30!27 +ACT 10:30!28 +ACT 10:31!1 +ACT 10:31!2 +ACT 10:31!3 +ACT 10:31!4 +ACT 10:31!5 +ACT 10:31!6 +ACT 10:31!7 +ACT 10:31!8 +ACT 10:31!9 +ACT 10:31!10 +ACT 10:31!11 +ACT 10:31!12 +ACT 10:31!13 +ACT 10:31!14 +ACT 10:31!15 +ACT 10:32!2 +ACT 10:32!1 +ACT 10:32!3 +ACT 10:32!4 +ACT 10:32!5 +ACT 10:32!6 +ACT 10:32!7 +ACT 10:32!8 +ACT 10:32!9 +ACT 10:32!10 +ACT 10:32!11 +ACT 10:32!12 +ACT 10:32!13 +ACT 10:32!14 +ACT 10:32!15 +ACT 10:32!16 +ACT 10:32!17 +ACT 10:32!18 +ACT 10:33!2 +ACT 10:33!1 +ACT 10:33!3 +ACT 10:33!4 +ACT 10:33!5 +ACT 10:33!7 +ACT 10:33!6 +ACT 10:33!8 +ACT 10:33!9 +ACT 10:33!10 +ACT 10:33!12 +ACT 10:33!11 +ACT 10:33!13 +ACT 10:33!14 +ACT 10:33!15 +ACT 10:33!16 +ACT 10:33!17 +ACT 10:33!18 +ACT 10:33!19 +ACT 10:33!20 +ACT 10:33!21 +ACT 10:33!22 +ACT 10:33!23 +ACT 10:33!24 +ACT 10:33!25 +ACT 10:33!26 +ACT 10:34!2 +ACT 10:34!3 +ACT 10:34!1 +ACT 10:34!4 +ACT 10:34!5 +ACT 10:34!6 +ACT 10:34!7 +ACT 10:34!8 +ACT 10:34!9 +ACT 10:34!10 +ACT 10:34!11 +ACT 10:34!12 +ACT 10:34!13 +ACT 10:34!14 +ACT 10:34!15 +ACT 10:35!1 +ACT 10:35!2 +ACT 10:35!3 +ACT 10:35!4 +ACT 10:35!5 +ACT 10:35!6 +ACT 10:35!7 +ACT 10:35!8 +ACT 10:35!9 +ACT 10:35!10 +ACT 10:35!11 +ACT 10:35!12 +ACT 10:35!13 +ACT 10:36!1 +ACT 10:36!2 +ACT 10:36!3 +ACT 10:36!4 +ACT 10:36!5 +ACT 10:36!6 +ACT 10:36!7 +ACT 10:36!8 +ACT 10:36!9 +ACT 10:36!10 +ACT 10:36!11 +ACT 10:36!12 +ACT 10:36!13 +ACT 10:36!14 +ACT 10:36!15 +ACT 10:36!16 +ACT 10:37!1 +ACT 10:37!2 +ACT 10:37!3 +ACT 10:37!5 +ACT 10:37!4 +ACT 10:37!6 +ACT 10:37!7 +ACT 10:37!8 +ACT 10:37!9 +ACT 10:37!10 +ACT 10:37!11 +ACT 10:37!12 +ACT 10:37!13 +ACT 10:37!14 +ACT 10:37!15 +ACT 10:37!16 +ACT 10:37!17 +ACT 10:37!18 +ACT 10:37!19 +ACT 10:38!1 +ACT 10:38!2 +ACT 10:38!3 +ACT 10:38!4 +ACT 10:38!5 +ACT 10:38!6 +ACT 10:38!7 +ACT 10:38!8 +ACT 10:38!9 +ACT 10:38!10 +ACT 10:38!11 +ACT 10:38!12 +ACT 10:38!13 +ACT 10:38!14 +ACT 10:38!15 +ACT 10:38!16 +ACT 10:38!17 +ACT 10:38!18 +ACT 10:38!19 +ACT 10:38!20 +ACT 10:38!21 +ACT 10:38!22 +ACT 10:38!23 +ACT 10:38!24 +ACT 10:38!25 +ACT 10:38!26 +ACT 10:38!27 +ACT 10:38!28 +ACT 10:38!29 +ACT 10:38!30 +ACT 10:39!1 +ACT 10:39!2 +ACT 10:39!3 +ACT 10:39!4 +ACT 10:39!5 +ACT 10:39!6 +ACT 10:39!8 +ACT 10:39!7 +ACT 10:39!9 +ACT 10:39!10 +ACT 10:39!11 +ACT 10:39!12 +ACT 10:39!13 +ACT 10:39!14 +ACT 10:39!15 +ACT 10:39!16 +ACT 10:39!17 +ACT 10:39!18 +ACT 10:39!19 +ACT 10:39!20 +ACT 10:40!1 +ACT 10:40!2 +ACT 10:40!3 +ACT 10:40!4 +ACT 10:40!5 +ACT 10:40!6 +ACT 10:40!7 +ACT 10:40!8 +ACT 10:40!9 +ACT 10:40!10 +ACT 10:40!11 +ACT 10:40!12 +ACT 10:40!13 +ACT 10:41!1 +ACT 10:41!2 +ACT 10:41!3 +ACT 10:41!4 +ACT 10:41!5 +ACT 10:41!6 +ACT 10:41!7 +ACT 10:41!8 +ACT 10:41!9 +ACT 10:41!10 +ACT 10:41!11 +ACT 10:41!12 +ACT 10:41!13 +ACT 10:41!14 +ACT 10:41!15 +ACT 10:41!16 +ACT 10:41!17 +ACT 10:41!18 +ACT 10:41!19 +ACT 10:41!20 +ACT 10:41!21 +ACT 10:41!22 +ACT 10:41!23 +ACT 10:42!1 +ACT 10:42!2 +ACT 10:42!3 +ACT 10:42!4 +ACT 10:42!5 +ACT 10:42!6 +ACT 10:42!7 +ACT 10:42!8 +ACT 10:42!9 +ACT 10:42!10 +ACT 10:42!11 +ACT 10:42!12 +ACT 10:42!13 +ACT 10:42!14 +ACT 10:42!15 +ACT 10:42!16 +ACT 10:42!17 +ACT 10:42!18 +ACT 10:42!19 +ACT 10:42!20 +ACT 10:43!1 +ACT 10:43!2 +ACT 10:43!3 +ACT 10:43!4 +ACT 10:43!5 +ACT 10:43!6 +ACT 10:43!7 +ACT 10:43!8 +ACT 10:43!9 +ACT 10:43!10 +ACT 10:43!11 +ACT 10:43!12 +ACT 10:43!13 +ACT 10:43!14 +ACT 10:43!15 +ACT 10:43!16 +ACT 10:43!17 +ACT 10:44!1 +ACT 10:44!2 +ACT 10:44!3 +ACT 10:44!4 +ACT 10:44!5 +ACT 10:44!6 +ACT 10:44!7 +ACT 10:44!8 +ACT 10:44!9 +ACT 10:44!10 +ACT 10:44!11 +ACT 10:44!12 +ACT 10:44!13 +ACT 10:44!14 +ACT 10:44!15 +ACT 10:44!16 +ACT 10:44!17 +ACT 10:44!18 +ACT 10:45!1 +ACT 10:45!2 +ACT 10:45!3 +ACT 10:45!4 +ACT 10:45!5 +ACT 10:45!6 +ACT 10:45!7 +ACT 10:45!8 +ACT 10:45!9 +ACT 10:45!10 +ACT 10:45!11 +ACT 10:45!12 +ACT 10:45!13 +ACT 10:45!14 +ACT 10:45!15 +ACT 10:45!16 +ACT 10:45!17 +ACT 10:45!18 +ACT 10:45!19 +ACT 10:45!20 +ACT 10:45!21 +ACT 10:46!2 +ACT 10:46!1 +ACT 10:46!3 +ACT 10:46!4 +ACT 10:46!5 +ACT 10:46!6 +ACT 10:46!7 +ACT 10:46!8 +ACT 10:46!9 +ACT 10:46!10 +ACT 10:46!11 +ACT 10:46!12 +ACT 10:47!1 +ACT 10:47!2 +ACT 10:47!3 +ACT 10:47!5 +ACT 10:47!4 +ACT 10:47!6 +ACT 10:47!7 +ACT 10:47!8 +ACT 10:47!9 +ACT 10:47!10 +ACT 10:47!11 +ACT 10:47!12 +ACT 10:47!13 +ACT 10:47!14 +ACT 10:47!15 +ACT 10:47!16 +ACT 10:47!17 +ACT 10:47!18 +ACT 10:47!19 +ACT 10:48!2 +ACT 10:48!1 +ACT 10:48!3 +ACT 10:48!4 +ACT 10:48!5 +ACT 10:48!6 +ACT 10:48!7 +ACT 10:48!8 +ACT 10:48!9 +ACT 10:48!10 +ACT 10:48!11 +ACT 10:48!12 +ACT 10:48!13 +ACT 10:48!14 +ACT 10:48!15 +ACT 11:1!2 +ACT 11:1!1 +ACT 11:1!3 +ACT 11:1!4 +ACT 11:1!5 +ACT 11:1!6 +ACT 11:1!7 +ACT 11:1!8 +ACT 11:1!9 +ACT 11:1!10 +ACT 11:1!11 +ACT 11:1!12 +ACT 11:1!13 +ACT 11:1!14 +ACT 11:1!15 +ACT 11:1!16 +ACT 11:1!17 +ACT 11:1!18 +ACT 11:1!19 +ACT 11:1!20 +ACT 11:1!21 +ACT 11:2!2 +ACT 11:2!1 +ACT 11:2!3 +ACT 11:2!4 +ACT 11:2!5 +ACT 11:2!6 +ACT 11:2!7 +ACT 11:2!8 +ACT 11:2!9 +ACT 11:2!10 +ACT 11:2!11 +ACT 11:2!12 +ACT 11:3!1 +ACT 11:3!2 +ACT 11:3!3 +ACT 11:3!4 +ACT 11:3!5 +ACT 11:3!6 +ACT 11:3!7 +ACT 11:3!8 +ACT 11:3!9 +ACT 11:3!10 +ACT 11:4!2 +ACT 11:4!1 +ACT 11:4!3 +ACT 11:4!4 +ACT 11:4!5 +ACT 11:4!6 +ACT 11:4!7 +ACT 11:5!1 +ACT 11:5!2 +ACT 11:5!6 +ACT 11:5!3 +ACT 11:5!4 +ACT 11:5!5 +ACT 11:5!7 +ACT 11:5!8 +ACT 11:5!9 +ACT 11:5!10 +ACT 11:5!11 +ACT 11:5!12 +ACT 11:5!13 +ACT 11:5!14 +ACT 11:5!15 +ACT 11:5!16 +ACT 11:5!17 +ACT 11:5!18 +ACT 11:5!19 +ACT 11:5!20 +ACT 11:5!21 +ACT 11:5!22 +ACT 11:5!23 +ACT 11:5!24 +ACT 11:5!25 +ACT 11:5!26 +ACT 11:5!27 +ACT 11:6!1 +ACT 11:6!2 +ACT 11:6!3 +ACT 11:6!4 +ACT 11:6!5 +ACT 11:6!6 +ACT 11:6!7 +ACT 11:6!8 +ACT 11:6!9 +ACT 11:6!10 +ACT 11:6!11 +ACT 11:6!12 +ACT 11:6!13 +ACT 11:6!14 +ACT 11:6!15 +ACT 11:6!16 +ACT 11:6!17 +ACT 11:6!18 +ACT 11:6!19 +ACT 11:6!20 +ACT 11:6!21 +ACT 11:7!2 +ACT 11:7!1 +ACT 11:7!3 +ACT 11:7!4 +ACT 11:7!5 +ACT 11:7!6 +ACT 11:7!8 +ACT 11:7!7 +ACT 11:7!9 +ACT 11:7!10 +ACT 11:7!11 +ACT 11:8!2 +ACT 11:8!1 +ACT 11:8!3 +ACT 11:8!4 +ACT 11:8!5 +ACT 11:8!6 +ACT 11:8!7 +ACT 11:8!8 +ACT 11:8!9 +ACT 11:8!10 +ACT 11:8!11 +ACT 11:8!12 +ACT 11:8!13 +ACT 11:8!14 +ACT 11:9!2 +ACT 11:9!1 +ACT 11:9!3 +ACT 11:9!4 +ACT 11:9!5 +ACT 11:9!6 +ACT 11:9!7 +ACT 11:9!8 +ACT 11:9!9 +ACT 11:9!10 +ACT 11:9!11 +ACT 11:9!12 +ACT 11:9!13 +ACT 11:9!14 +ACT 11:9!15 +ACT 11:10!2 +ACT 11:10!1 +ACT 11:10!3 +ACT 11:10!4 +ACT 11:10!5 +ACT 11:10!6 +ACT 11:10!7 +ACT 11:10!8 +ACT 11:10!9 +ACT 11:10!10 +ACT 11:10!11 +ACT 11:10!12 +ACT 11:11!1 +ACT 11:11!2 +ACT 11:11!3 +ACT 11:11!4 +ACT 11:11!5 +ACT 11:11!6 +ACT 11:11!7 +ACT 11:11!8 +ACT 11:11!9 +ACT 11:11!10 +ACT 11:11!11 +ACT 11:11!12 +ACT 11:11!13 +ACT 11:11!14 +ACT 11:11!15 +ACT 11:11!16 +ACT 11:11!17 +ACT 11:12!2 +ACT 11:12!1 +ACT 11:12!3 +ACT 11:12!4 +ACT 11:12!5 +ACT 11:12!6 +ACT 11:12!7 +ACT 11:12!8 +ACT 11:12!9 +ACT 11:12!11 +ACT 11:12!10 +ACT 11:12!12 +ACT 11:12!13 +ACT 11:12!14 +ACT 11:12!15 +ACT 11:12!16 +ACT 11:12!17 +ACT 11:12!18 +ACT 11:12!19 +ACT 11:12!20 +ACT 11:12!21 +ACT 11:12!22 +ACT 11:12!23 +ACT 11:12!24 +ACT 11:12!25 +ACT 11:13!2 +ACT 11:13!1 +ACT 11:13!3 +ACT 11:13!4 +ACT 11:13!5 +ACT 11:13!6 +ACT 11:13!7 +ACT 11:13!8 +ACT 11:13!9 +ACT 11:13!10 +ACT 11:13!11 +ACT 11:13!12 +ACT 11:13!13 +ACT 11:13!14 +ACT 11:13!15 +ACT 11:13!16 +ACT 11:13!17 +ACT 11:13!18 +ACT 11:13!19 +ACT 11:13!20 +ACT 11:13!21 +ACT 11:13!22 +ACT 11:13!23 +ACT 11:14!1 +ACT 11:14!2 +ACT 11:14!3 +ACT 11:14!4 +ACT 11:14!5 +ACT 11:14!6 +ACT 11:14!7 +ACT 11:14!8 +ACT 11:14!9 +ACT 11:14!10 +ACT 11:14!11 +ACT 11:14!12 +ACT 11:14!13 +ACT 11:14!14 +ACT 11:15!2 +ACT 11:15!1 +ACT 11:15!3 +ACT 11:15!4 +ACT 11:15!5 +ACT 11:15!6 +ACT 11:15!7 +ACT 11:15!8 +ACT 11:15!9 +ACT 11:15!10 +ACT 11:15!11 +ACT 11:15!12 +ACT 11:15!13 +ACT 11:15!14 +ACT 11:15!15 +ACT 11:15!16 +ACT 11:15!17 +ACT 11:15!18 +ACT 11:15!19 +ACT 11:16!2 +ACT 11:16!1 +ACT 11:16!3 +ACT 11:16!4 +ACT 11:16!5 +ACT 11:16!6 +ACT 11:16!7 +ACT 11:16!8 +ACT 11:16!10 +ACT 11:16!9 +ACT 11:16!11 +ACT 11:16!12 +ACT 11:16!14 +ACT 11:16!13 +ACT 11:16!15 +ACT 11:16!16 +ACT 11:16!17 +ACT 11:16!18 +ACT 11:17!2 +ACT 11:17!1 +ACT 11:17!3 +ACT 11:17!4 +ACT 11:17!5 +ACT 11:17!6 +ACT 11:17!7 +ACT 11:17!8 +ACT 11:17!9 +ACT 11:17!10 +ACT 11:17!11 +ACT 11:17!12 +ACT 11:17!13 +ACT 11:17!14 +ACT 11:17!15 +ACT 11:17!16 +ACT 11:17!17 +ACT 11:17!18 +ACT 11:17!19 +ACT 11:17!20 +ACT 11:17!21 +ACT 11:17!22 +ACT 11:17!23 +ACT 11:17!24 +ACT 11:17!25 +ACT 11:18!2 +ACT 11:18!1 +ACT 11:18!3 +ACT 11:18!4 +ACT 11:18!5 +ACT 11:18!6 +ACT 11:18!7 +ACT 11:18!8 +ACT 11:18!9 +ACT 11:18!10 +ACT 11:18!11 +ACT 11:18!12 +ACT 11:18!13 +ACT 11:18!14 +ACT 11:18!15 +ACT 11:18!16 +ACT 11:18!17 +ACT 11:18!18 +ACT 11:18!19 +ACT 11:18!20 +ACT 11:19!2 +ACT 11:19!3 +ACT 11:19!1 +ACT 11:19!4 +ACT 11:19!5 +ACT 11:19!6 +ACT 11:19!7 +ACT 11:19!8 +ACT 11:19!9 +ACT 11:19!10 +ACT 11:19!11 +ACT 11:19!12 +ACT 11:19!13 +ACT 11:19!14 +ACT 11:19!15 +ACT 11:19!16 +ACT 11:19!17 +ACT 11:19!18 +ACT 11:19!19 +ACT 11:19!20 +ACT 11:19!21 +ACT 11:19!22 +ACT 11:19!23 +ACT 11:19!24 +ACT 11:19!25 +ACT 11:19!26 +ACT 11:20!2 +ACT 11:20!1 +ACT 11:20!3 +ACT 11:20!4 +ACT 11:20!5 +ACT 11:20!6 +ACT 11:20!7 +ACT 11:20!8 +ACT 11:20!9 +ACT 11:20!10 +ACT 11:20!11 +ACT 11:20!12 +ACT 11:20!13 +ACT 11:20!14 +ACT 11:20!15 +ACT 11:20!16 +ACT 11:20!17 +ACT 11:20!18 +ACT 11:20!19 +ACT 11:20!20 +ACT 11:20!21 +ACT 11:20!22 +ACT 11:21!1 +ACT 11:21!2 +ACT 11:21!3 +ACT 11:21!4 +ACT 11:21!5 +ACT 11:21!6 +ACT 11:21!8 +ACT 11:21!7 +ACT 11:21!9 +ACT 11:21!10 +ACT 11:21!11 +ACT 11:21!12 +ACT 11:21!13 +ACT 11:21!14 +ACT 11:21!15 +ACT 11:22!2 +ACT 11:22!1 +ACT 11:22!3 +ACT 11:22!4 +ACT 11:22!14 +ACT 11:22!15 +ACT 11:22!5 +ACT 11:22!6 +ACT 11:22!7 +ACT 11:22!8 +ACT 11:22!9 +ACT 11:22!10 +ACT 11:22!11 +ACT 11:22!12 +ACT 11:22!13 +ACT 11:22!16 +ACT 11:22!17 +ACT 11:22!18 +ACT 11:22!19 +ACT 11:22!20 +ACT 11:23!1 +ACT 11:23!2 +ACT 11:23!3 +ACT 11:23!4 +ACT 11:23!5 +ACT 11:23!6 +ACT 11:23!7 +ACT 11:23!8 +ACT 11:23!9 +ACT 11:23!10 +ACT 11:23!11 +ACT 11:23!12 +ACT 11:23!13 +ACT 11:23!14 +ACT 11:23!15 +ACT 11:23!16 +ACT 11:23!17 +ACT 11:23!18 +ACT 11:23!19 +ACT 11:23!20 +ACT 11:24!1 +ACT 11:24!2 +ACT 11:24!3 +ACT 11:24!4 +ACT 11:24!5 +ACT 11:24!6 +ACT 11:24!7 +ACT 11:24!8 +ACT 11:24!9 +ACT 11:24!10 +ACT 11:24!11 +ACT 11:24!12 +ACT 11:24!13 +ACT 11:24!14 +ACT 11:24!15 +ACT 11:24!16 +ACT 11:25!2 +ACT 11:25!1 +ACT 11:25!3 +ACT 11:25!4 +ACT 11:25!5 +ACT 11:25!6 +ACT 11:26!1 +ACT 11:26!2 +ACT 11:26!3 +ACT 11:26!4 +ACT 11:26!5 +ACT 11:26!7 +ACT 11:26!6 +ACT 11:26!8 +ACT 11:26!9 +ACT 11:26!10 +ACT 11:26!11 +ACT 11:26!12 +ACT 11:26!13 +ACT 11:26!14 +ACT 11:26!15 +ACT 11:26!16 +ACT 11:26!17 +ACT 11:26!18 +ACT 11:26!19 +ACT 11:26!21 +ACT 11:26!20 +ACT 11:26!22 +ACT 11:26!23 +ACT 11:26!24 +ACT 11:26!25 +ACT 11:26!26 +ACT 11:26!27 +ACT 11:27!3 +ACT 11:27!1 +ACT 11:27!2 +ACT 11:27!4 +ACT 11:27!5 +ACT 11:27!6 +ACT 11:27!7 +ACT 11:27!8 +ACT 11:27!9 +ACT 11:27!10 +ACT 11:27!11 +ACT 11:28!2 +ACT 11:28!1 +ACT 11:28!3 +ACT 11:28!4 +ACT 11:28!5 +ACT 11:28!6 +ACT 11:28!7 +ACT 11:28!8 +ACT 11:28!9 +ACT 11:28!10 +ACT 11:28!11 +ACT 11:28!12 +ACT 11:28!13 +ACT 11:28!14 +ACT 11:28!15 +ACT 11:28!16 +ACT 11:28!17 +ACT 11:28!18 +ACT 11:28!19 +ACT 11:28!20 +ACT 11:28!21 +ACT 11:28!22 +ACT 11:28!23 +ACT 11:29!2 +ACT 11:29!1 +ACT 11:29!3 +ACT 11:29!4 +ACT 11:29!5 +ACT 11:29!6 +ACT 11:29!7 +ACT 11:29!8 +ACT 11:29!9 +ACT 11:29!10 +ACT 11:29!11 +ACT 11:29!12 +ACT 11:29!13 +ACT 11:29!14 +ACT 11:29!15 +ACT 11:29!16 +ACT 11:29!17 +ACT 11:29!18 +ACT 11:30!1 +ACT 11:30!2 +ACT 11:30!3 +ACT 11:30!4 +ACT 11:30!5 +ACT 11:30!6 +ACT 11:30!7 +ACT 11:30!8 +ACT 11:30!9 +ACT 11:30!10 +ACT 11:30!11 +ACT 11:30!12 +ACT 12:1!3 +ACT 12:1!1 +ACT 12:1!2 +ACT 12:1!4 +ACT 12:1!5 +ACT 12:1!6 +ACT 12:1!7 +ACT 12:1!8 +ACT 12:1!9 +ACT 12:1!10 +ACT 12:1!11 +ACT 12:1!12 +ACT 12:1!13 +ACT 12:1!14 +ACT 12:1!15 +ACT 12:1!16 +ACT 12:1!17 +ACT 12:2!2 +ACT 12:2!1 +ACT 12:2!3 +ACT 12:2!4 +ACT 12:2!5 +ACT 12:2!6 +ACT 12:2!7 +ACT 12:3!2 +ACT 12:3!1 +ACT 12:3!3 +ACT 12:3!4 +ACT 12:3!5 +ACT 12:3!6 +ACT 12:3!7 +ACT 12:3!8 +ACT 12:3!9 +ACT 12:3!10 +ACT 12:3!11 +ACT 12:3!13 +ACT 12:3!12 +ACT 12:3!14 +ACT 12:3!15 +ACT 12:3!16 +ACT 12:4!1 +ACT 12:4!2 +ACT 12:4!3 +ACT 12:4!4 +ACT 12:4!5 +ACT 12:4!6 +ACT 12:4!7 +ACT 12:4!8 +ACT 12:4!9 +ACT 12:4!10 +ACT 12:4!11 +ACT 12:4!12 +ACT 12:4!13 +ACT 12:4!14 +ACT 12:4!15 +ACT 12:4!16 +ACT 12:4!17 +ACT 12:4!18 +ACT 12:4!19 +ACT 12:4!20 +ACT 12:5!3 +ACT 12:5!2 +ACT 12:5!1 +ACT 12:5!4 +ACT 12:5!5 +ACT 12:5!6 +ACT 12:5!7 +ACT 12:5!8 +ACT 12:5!10 +ACT 12:5!9 +ACT 12:5!11 +ACT 12:5!13 +ACT 12:5!12 +ACT 12:5!14 +ACT 12:5!15 +ACT 12:5!16 +ACT 12:5!17 +ACT 12:5!18 +ACT 12:5!19 +ACT 12:5!20 +ACT 12:5!21 +ACT 12:6!2 +ACT 12:6!1 +ACT 12:6!3 +ACT 12:6!4 +ACT 12:6!5 +ACT 12:6!6 +ACT 12:6!7 +ACT 12:6!8 +ACT 12:6!9 +ACT 12:6!10 +ACT 12:6!12 +ACT 12:6!13 +ACT 12:6!11 +ACT 12:6!14 +ACT 12:6!15 +ACT 12:6!16 +ACT 12:6!17 +ACT 12:6!18 +ACT 12:6!19 +ACT 12:6!20 +ACT 12:6!22 +ACT 12:6!21 +ACT 12:6!23 +ACT 12:6!24 +ACT 12:6!25 +ACT 12:6!26 +ACT 12:6!27 +ACT 12:6!28 +ACT 12:7!1 +ACT 12:7!2 +ACT 12:7!3 +ACT 12:7!4 +ACT 12:7!5 +ACT 12:7!6 +ACT 12:7!7 +ACT 12:7!8 +ACT 12:7!9 +ACT 12:7!10 +ACT 12:7!11 +ACT 12:7!13 +ACT 12:7!12 +ACT 12:7!14 +ACT 12:7!15 +ACT 12:7!16 +ACT 12:7!17 +ACT 12:7!18 +ACT 12:7!19 +ACT 12:7!20 +ACT 12:7!21 +ACT 12:7!22 +ACT 12:7!23 +ACT 12:7!24 +ACT 12:7!25 +ACT 12:7!26 +ACT 12:7!27 +ACT 12:7!28 +ACT 12:7!29 +ACT 12:7!30 +ACT 12:7!31 +ACT 12:8!2 +ACT 12:8!1 +ACT 12:8!3 +ACT 12:8!4 +ACT 12:8!5 +ACT 12:8!6 +ACT 12:8!7 +ACT 12:8!8 +ACT 12:8!9 +ACT 12:8!10 +ACT 12:8!11 +ACT 12:8!12 +ACT 12:8!14 +ACT 12:8!13 +ACT 12:8!15 +ACT 12:8!16 +ACT 12:8!17 +ACT 12:8!18 +ACT 12:8!19 +ACT 12:8!20 +ACT 12:8!21 +ACT 12:8!22 +ACT 12:8!23 +ACT 12:8!24 +ACT 12:8!25 +ACT 12:9!1 +ACT 12:9!2 +ACT 12:9!3 +ACT 12:9!4 +ACT 12:9!5 +ACT 12:9!6 +ACT 12:9!7 +ACT 12:9!8 +ACT 12:9!9 +ACT 12:9!10 +ACT 12:9!11 +ACT 12:9!12 +ACT 12:9!13 +ACT 12:9!14 +ACT 12:9!16 +ACT 12:9!15 +ACT 12:9!17 +ACT 12:9!18 +ACT 12:10!2 +ACT 12:10!1 +ACT 12:10!3 +ACT 12:10!5 +ACT 12:10!6 +ACT 12:10!4 +ACT 12:10!7 +ACT 12:10!8 +ACT 12:10!9 +ACT 12:10!10 +ACT 12:10!11 +ACT 12:10!12 +ACT 12:10!13 +ACT 12:10!14 +ACT 12:10!15 +ACT 12:10!16 +ACT 12:10!17 +ACT 12:10!18 +ACT 12:10!19 +ACT 12:10!20 +ACT 12:10!21 +ACT 12:10!22 +ACT 12:10!23 +ACT 12:10!24 +ACT 12:10!25 +ACT 12:10!26 +ACT 12:10!27 +ACT 12:10!28 +ACT 12:10!29 +ACT 12:10!30 +ACT 12:10!31 +ACT 12:10!32 +ACT 12:10!33 +ACT 12:11!1 +ACT 12:11!2 +ACT 12:11!3 +ACT 12:11!4 +ACT 12:11!5 +ACT 12:11!6 +ACT 12:11!7 +ACT 12:11!8 +ACT 12:11!9 +ACT 12:11!10 +ACT 12:11!11 +ACT 12:11!12 +ACT 12:11!13 +ACT 12:11!14 +ACT 12:11!15 +ACT 12:11!16 +ACT 12:11!17 +ACT 12:11!18 +ACT 12:11!19 +ACT 12:11!20 +ACT 12:11!21 +ACT 12:11!22 +ACT 12:11!23 +ACT 12:11!24 +ACT 12:11!25 +ACT 12:11!26 +ACT 12:11!27 +ACT 12:11!28 +ACT 12:11!29 +ACT 12:11!30 +ACT 12:11!31 +ACT 12:12!2 +ACT 12:12!1 +ACT 12:12!3 +ACT 12:12!4 +ACT 12:12!5 +ACT 12:12!6 +ACT 12:12!7 +ACT 12:12!8 +ACT 12:12!9 +ACT 12:12!10 +ACT 12:12!11 +ACT 12:12!12 +ACT 12:12!13 +ACT 12:12!14 +ACT 12:12!15 +ACT 12:12!17 +ACT 12:12!16 +ACT 12:12!18 +ACT 12:12!19 +ACT 12:12!20 +ACT 12:13!2 +ACT 12:13!1 +ACT 12:13!3 +ACT 12:13!4 +ACT 12:13!5 +ACT 12:13!6 +ACT 12:13!7 +ACT 12:13!8 +ACT 12:13!10 +ACT 12:13!9 +ACT 12:13!11 +ACT 12:13!12 +ACT 12:14!1 +ACT 12:14!2 +ACT 12:14!3 +ACT 12:14!4 +ACT 12:14!5 +ACT 12:14!6 +ACT 12:14!7 +ACT 12:14!8 +ACT 12:14!9 +ACT 12:14!10 +ACT 12:14!11 +ACT 12:14!12 +ACT 12:14!13 +ACT 12:14!15 +ACT 12:14!14 +ACT 12:14!16 +ACT 12:14!17 +ACT 12:14!18 +ACT 12:14!19 +ACT 12:14!20 +ACT 12:14!21 +ACT 12:14!22 +ACT 12:15!2 +ACT 12:15!1 +ACT 12:15!3 +ACT 12:15!4 +ACT 12:15!5 +ACT 12:15!6 +ACT 12:15!8 +ACT 12:15!7 +ACT 12:15!9 +ACT 12:15!10 +ACT 12:15!11 +ACT 12:15!13 +ACT 12:15!12 +ACT 12:15!14 +ACT 12:15!15 +ACT 12:15!16 +ACT 12:15!17 +ACT 12:15!18 +ACT 12:16!2 +ACT 12:16!1 +ACT 12:16!3 +ACT 12:16!4 +ACT 12:16!5 +ACT 12:16!7 +ACT 12:16!6 +ACT 12:16!8 +ACT 12:16!9 +ACT 12:16!10 +ACT 12:16!11 +ACT 12:17!2 +ACT 12:17!1 +ACT 12:17!3 +ACT 12:17!4 +ACT 12:17!5 +ACT 12:17!6 +ACT 12:17!7 +ACT 12:17!8 +ACT 12:17!9 +ACT 12:17!10 +ACT 12:17!11 +ACT 12:17!12 +ACT 12:17!13 +ACT 12:17!14 +ACT 12:17!15 +ACT 12:17!16 +ACT 12:17!18 +ACT 12:17!17 +ACT 12:17!19 +ACT 12:17!20 +ACT 12:17!21 +ACT 12:17!22 +ACT 12:17!23 +ACT 12:17!24 +ACT 12:17!25 +ACT 12:17!26 +ACT 12:17!27 +ACT 12:17!28 +ACT 12:17!29 +ACT 12:17!30 +ACT 12:18!2 +ACT 12:18!1 +ACT 12:18!3 +ACT 12:18!4 +ACT 12:18!5 +ACT 12:18!6 +ACT 12:18!7 +ACT 12:18!8 +ACT 12:18!9 +ACT 12:18!10 +ACT 12:18!12 +ACT 12:18!11 +ACT 12:18!13 +ACT 12:18!14 +ACT 12:18!15 +ACT 12:19!2 +ACT 12:19!1 +ACT 12:19!3 +ACT 12:19!4 +ACT 12:19!5 +ACT 12:19!6 +ACT 12:19!7 +ACT 12:19!8 +ACT 12:19!9 +ACT 12:19!10 +ACT 12:19!11 +ACT 12:19!12 +ACT 12:19!13 +ACT 12:19!14 +ACT 12:19!15 +ACT 12:19!16 +ACT 12:19!17 +ACT 12:19!18 +ACT 12:19!19 +ACT 12:19!20 +ACT 12:20!2 +ACT 12:20!1 +ACT 12:20!3 +ACT 12:20!4 +ACT 12:20!5 +ACT 12:20!6 +ACT 12:20!8 +ACT 12:20!7 +ACT 12:20!9 +ACT 12:20!10 +ACT 12:20!11 +ACT 12:20!12 +ACT 12:20!13 +ACT 12:20!14 +ACT 12:20!15 +ACT 12:20!16 +ACT 12:20!17 +ACT 12:20!18 +ACT 12:20!19 +ACT 12:20!20 +ACT 12:20!21 +ACT 12:20!22 +ACT 12:20!23 +ACT 12:20!24 +ACT 12:20!25 +ACT 12:20!26 +ACT 12:20!27 +ACT 12:20!28 +ACT 12:20!29 +ACT 12:20!30 +ACT 12:20!31 +ACT 12:21!2 +ACT 12:21!1 +ACT 12:21!3 +ACT 12:21!4 +ACT 12:21!5 +ACT 12:21!6 +ACT 12:21!7 +ACT 12:21!8 +ACT 12:21!9 +ACT 12:21!10 +ACT 12:21!11 +ACT 12:21!12 +ACT 12:21!13 +ACT 12:21!14 +ACT 12:21!15 +ACT 12:22!2 +ACT 12:22!1 +ACT 12:22!3 +ACT 12:22!4 +ACT 12:22!5 +ACT 12:22!6 +ACT 12:22!7 +ACT 12:22!8 +ACT 12:22!9 +ACT 12:23!2 +ACT 12:23!1 +ACT 12:23!3 +ACT 12:23!4 +ACT 12:23!5 +ACT 12:23!6 +ACT 12:23!7 +ACT 12:23!8 +ACT 12:23!9 +ACT 12:23!10 +ACT 12:23!11 +ACT 12:23!12 +ACT 12:23!13 +ACT 12:23!14 +ACT 12:23!15 +ACT 12:23!16 +ACT 12:23!17 +ACT 12:23!18 +ACT 12:24!2 +ACT 12:24!1 +ACT 12:24!3 +ACT 12:24!4 +ACT 12:24!5 +ACT 12:24!6 +ACT 12:24!7 +ACT 12:24!8 +ACT 12:25!2 +ACT 12:25!1 +ACT 12:25!3 +ACT 12:25!4 +ACT 12:25!5 +ACT 12:25!6 +ACT 12:25!7 +ACT 12:25!8 +ACT 12:25!9 +ACT 12:25!10 +ACT 12:25!11 +ACT 12:25!12 +ACT 12:25!13 +ACT 12:25!14 +ACT 12:25!15 +ACT 13:1!2 +ACT 13:1!1 +ACT 13:1!3 +ACT 13:1!4 +ACT 13:1!5 +ACT 13:1!6 +ACT 13:1!7 +ACT 13:1!8 +ACT 13:1!9 +ACT 13:1!10 +ACT 13:1!11 +ACT 13:1!13 +ACT 13:1!12 +ACT 13:1!14 +ACT 13:1!15 +ACT 13:1!16 +ACT 13:1!17 +ACT 13:1!18 +ACT 13:1!19 +ACT 13:1!20 +ACT 13:1!21 +ACT 13:1!22 +ACT 13:1!23 +ACT 13:1!25 +ACT 13:1!24 +ACT 13:1!26 +ACT 13:1!27 +ACT 13:1!28 +ACT 13:1!29 +ACT 13:1!30 +ACT 13:1!31 +ACT 13:2!2 +ACT 13:2!1 +ACT 13:2!3 +ACT 13:2!4 +ACT 13:2!5 +ACT 13:2!6 +ACT 13:2!7 +ACT 13:2!8 +ACT 13:2!9 +ACT 13:2!10 +ACT 13:2!11 +ACT 13:2!12 +ACT 13:2!14 +ACT 13:2!13 +ACT 13:2!15 +ACT 13:2!16 +ACT 13:2!17 +ACT 13:2!18 +ACT 13:2!19 +ACT 13:2!20 +ACT 13:2!21 +ACT 13:2!22 +ACT 13:2!23 +ACT 13:2!24 +ACT 13:2!25 +ACT 13:3!1 +ACT 13:3!2 +ACT 13:3!3 +ACT 13:3!4 +ACT 13:3!5 +ACT 13:3!6 +ACT 13:3!7 +ACT 13:3!8 +ACT 13:3!9 +ACT 13:3!10 +ACT 13:4!2 +ACT 13:4!3 +ACT 13:4!1 +ACT 13:4!4 +ACT 13:4!5 +ACT 13:4!6 +ACT 13:4!7 +ACT 13:4!8 +ACT 13:4!9 +ACT 13:4!10 +ACT 13:4!11 +ACT 13:4!13 +ACT 13:4!12 +ACT 13:4!14 +ACT 13:4!15 +ACT 13:4!16 +ACT 13:5!1 +ACT 13:5!2 +ACT 13:5!3 +ACT 13:5!4 +ACT 13:5!5 +ACT 13:5!6 +ACT 13:5!7 +ACT 13:5!8 +ACT 13:5!9 +ACT 13:5!10 +ACT 13:5!11 +ACT 13:5!12 +ACT 13:5!13 +ACT 13:5!14 +ACT 13:5!16 +ACT 13:5!15 +ACT 13:5!17 +ACT 13:5!18 +ACT 13:5!19 +ACT 13:6!2 +ACT 13:6!1 +ACT 13:6!3 +ACT 13:6!4 +ACT 13:6!5 +ACT 13:6!6 +ACT 13:6!7 +ACT 13:6!8 +ACT 13:6!9 +ACT 13:6!10 +ACT 13:6!11 +ACT 13:6!12 +ACT 13:6!13 +ACT 13:6!14 +ACT 13:6!15 +ACT 13:6!16 +ACT 13:7!1 +ACT 13:7!2 +ACT 13:7!3 +ACT 13:7!4 +ACT 13:7!5 +ACT 13:7!6 +ACT 13:7!7 +ACT 13:7!8 +ACT 13:7!9 +ACT 13:7!10 +ACT 13:7!11 +ACT 13:7!12 +ACT 13:7!13 +ACT 13:7!14 +ACT 13:7!15 +ACT 13:7!16 +ACT 13:7!17 +ACT 13:7!18 +ACT 13:7!19 +ACT 13:7!20 +ACT 13:8!2 +ACT 13:8!1 +ACT 13:8!3 +ACT 13:8!4 +ACT 13:8!5 +ACT 13:8!6 +ACT 13:8!8 +ACT 13:8!7 +ACT 13:8!9 +ACT 13:8!10 +ACT 13:8!11 +ACT 13:8!12 +ACT 13:8!13 +ACT 13:8!14 +ACT 13:8!15 +ACT 13:8!16 +ACT 13:8!17 +ACT 13:8!18 +ACT 13:8!19 +ACT 13:9!2 +ACT 13:9!1 +ACT 13:9!3 +ACT 13:9!4 +ACT 13:9!5 +ACT 13:9!6 +ACT 13:9!7 +ACT 13:9!8 +ACT 13:9!9 +ACT 13:9!10 +ACT 13:9!11 +ACT 13:10!1 +ACT 13:10!2 +ACT 13:10!3 +ACT 13:10!4 +ACT 13:10!5 +ACT 13:10!6 +ACT 13:10!7 +ACT 13:10!8 +ACT 13:10!9 +ACT 13:10!10 +ACT 13:10!11 +ACT 13:10!12 +ACT 13:10!13 +ACT 13:10!14 +ACT 13:10!15 +ACT 13:10!16 +ACT 13:10!17 +ACT 13:10!18 +ACT 13:10!19 +ACT 13:10!20 +ACT 13:10!21 +ACT 13:10!22 +ACT 13:11!1 +ACT 13:11!2 +ACT 13:11!3 +ACT 13:11!4 +ACT 13:11!5 +ACT 13:11!6 +ACT 13:11!7 +ACT 13:11!8 +ACT 13:11!9 +ACT 13:11!10 +ACT 13:11!11 +ACT 13:11!12 +ACT 13:11!13 +ACT 13:11!14 +ACT 13:11!15 +ACT 13:11!16 +ACT 13:11!18 +ACT 13:11!17 +ACT 13:11!19 +ACT 13:11!20 +ACT 13:11!21 +ACT 13:11!22 +ACT 13:11!23 +ACT 13:11!24 +ACT 13:11!25 +ACT 13:11!26 +ACT 13:11!27 +ACT 13:11!28 +ACT 13:12!1 +ACT 13:12!3 +ACT 13:12!4 +ACT 13:12!2 +ACT 13:12!5 +ACT 13:12!6 +ACT 13:12!7 +ACT 13:12!8 +ACT 13:12!9 +ACT 13:12!10 +ACT 13:12!11 +ACT 13:12!12 +ACT 13:12!13 +ACT 13:13!2 +ACT 13:13!1 +ACT 13:13!3 +ACT 13:13!4 +ACT 13:13!5 +ACT 13:13!6 +ACT 13:13!7 +ACT 13:13!8 +ACT 13:13!9 +ACT 13:13!10 +ACT 13:13!11 +ACT 13:13!12 +ACT 13:13!13 +ACT 13:13!15 +ACT 13:13!14 +ACT 13:13!16 +ACT 13:13!17 +ACT 13:13!18 +ACT 13:13!19 +ACT 13:13!20 +ACT 13:13!21 +ACT 13:14!2 +ACT 13:14!1 +ACT 13:14!3 +ACT 13:14!4 +ACT 13:14!5 +ACT 13:14!6 +ACT 13:14!7 +ACT 13:14!8 +ACT 13:14!9 +ACT 13:14!10 +ACT 13:14!11 +ACT 13:14!12 +ACT 13:14!13 +ACT 13:14!14 +ACT 13:14!15 +ACT 13:14!16 +ACT 13:14!17 +ACT 13:14!18 +ACT 13:14!19 +ACT 13:14!20 +ACT 13:14!21 +ACT 13:15!2 +ACT 13:15!1 +ACT 13:15!3 +ACT 13:15!4 +ACT 13:15!5 +ACT 13:15!6 +ACT 13:15!7 +ACT 13:15!8 +ACT 13:15!9 +ACT 13:15!10 +ACT 13:15!11 +ACT 13:15!12 +ACT 13:15!13 +ACT 13:15!14 +ACT 13:15!15 +ACT 13:15!16 +ACT 13:15!17 +ACT 13:15!18 +ACT 13:15!20 +ACT 13:15!21 +ACT 13:15!22 +ACT 13:15!19 +ACT 13:15!23 +ACT 13:15!24 +ACT 13:15!25 +ACT 13:15!26 +ACT 13:15!27 +ACT 13:15!28 +ACT 13:16!2 +ACT 13:16!3 +ACT 13:16!1 +ACT 13:16!4 +ACT 13:16!5 +ACT 13:16!6 +ACT 13:16!7 +ACT 13:16!8 +ACT 13:16!9 +ACT 13:16!10 +ACT 13:16!11 +ACT 13:16!12 +ACT 13:16!13 +ACT 13:16!14 +ACT 13:16!15 +ACT 13:16!16 +ACT 13:17!1 +ACT 13:17!2 +ACT 13:17!3 +ACT 13:17!4 +ACT 13:17!5 +ACT 13:17!6 +ACT 13:17!7 +ACT 13:17!8 +ACT 13:17!9 +ACT 13:17!10 +ACT 13:17!11 +ACT 13:17!12 +ACT 13:17!13 +ACT 13:17!14 +ACT 13:17!15 +ACT 13:17!16 +ACT 13:17!17 +ACT 13:17!18 +ACT 13:17!19 +ACT 13:17!20 +ACT 13:17!21 +ACT 13:17!22 +ACT 13:17!23 +ACT 13:17!24 +ACT 13:17!25 +ACT 13:17!26 +ACT 13:17!27 +ACT 13:17!28 +ACT 13:18!1 +ACT 13:18!2 +ACT 13:18!3 +ACT 13:18!4 +ACT 13:18!5 +ACT 13:18!6 +ACT 13:18!7 +ACT 13:18!8 +ACT 13:18!9 +ACT 13:19!1 +ACT 13:19!2 +ACT 13:19!3 +ACT 13:19!4 +ACT 13:19!5 +ACT 13:19!6 +ACT 13:19!7 +ACT 13:19!8 +ACT 13:19!9 +ACT 13:19!10 +ACT 13:19!11 +ACT 13:20!1 +ACT 13:20!2 +ACT 13:20!3 +ACT 13:20!4 +ACT 13:20!5 +ACT 13:20!6 +ACT 13:20!7 +ACT 13:20!8 +ACT 13:20!9 +ACT 13:20!10 +ACT 13:20!11 +ACT 13:20!12 +ACT 13:20!13 +ACT 13:21!1 +ACT 13:21!2 +ACT 13:21!3 +ACT 13:21!4 +ACT 13:21!5 +ACT 13:21!6 +ACT 13:21!7 +ACT 13:21!8 +ACT 13:21!9 +ACT 13:21!10 +ACT 13:21!11 +ACT 13:21!12 +ACT 13:21!13 +ACT 13:21!14 +ACT 13:21!15 +ACT 13:21!16 +ACT 13:21!17 +ACT 13:21!18 +ACT 13:22!1 +ACT 13:22!2 +ACT 13:22!3 +ACT 13:22!4 +ACT 13:22!5 +ACT 13:22!6 +ACT 13:22!7 +ACT 13:22!8 +ACT 13:22!9 +ACT 13:22!10 +ACT 13:22!11 +ACT 13:22!12 +ACT 13:22!13 +ACT 13:22!14 +ACT 13:22!15 +ACT 13:22!16 +ACT 13:22!17 +ACT 13:22!18 +ACT 13:22!19 +ACT 13:22!20 +ACT 13:22!21 +ACT 13:22!22 +ACT 13:22!23 +ACT 13:22!24 +ACT 13:22!25 +ACT 13:22!26 +ACT 13:22!27 +ACT 13:22!28 +ACT 13:22!29 +ACT 13:23!2 +ACT 13:23!3 +ACT 13:23!4 +ACT 13:23!1 +ACT 13:23!5 +ACT 13:23!6 +ACT 13:23!7 +ACT 13:23!8 +ACT 13:23!9 +ACT 13:23!10 +ACT 13:23!11 +ACT 13:23!12 +ACT 13:23!13 +ACT 13:24!1 +ACT 13:24!2 +ACT 13:24!3 +ACT 13:24!4 +ACT 13:24!5 +ACT 13:24!6 +ACT 13:24!7 +ACT 13:24!8 +ACT 13:24!9 +ACT 13:24!10 +ACT 13:24!11 +ACT 13:24!12 +ACT 13:24!13 +ACT 13:25!2 +ACT 13:25!1 +ACT 13:25!3 +ACT 13:25!4 +ACT 13:25!5 +ACT 13:25!6 +ACT 13:25!7 +ACT 13:25!8 +ACT 13:25!9 +ACT 13:25!11 +ACT 13:25!10 +ACT 13:25!12 +ACT 13:25!13 +ACT 13:25!14 +ACT 13:25!15 +ACT 13:25!16 +ACT 13:25!17 +ACT 13:25!18 +ACT 13:25!19 +ACT 13:25!20 +ACT 13:25!21 +ACT 13:25!22 +ACT 13:25!23 +ACT 13:25!24 +ACT 13:25!25 +ACT 13:25!26 +ACT 13:25!27 +ACT 13:25!28 +ACT 13:26!1 +ACT 13:26!2 +ACT 13:26!3 +ACT 13:26!4 +ACT 13:26!5 +ACT 13:26!6 +ACT 13:26!7 +ACT 13:26!8 +ACT 13:26!9 +ACT 13:26!10 +ACT 13:26!11 +ACT 13:26!12 +ACT 13:26!13 +ACT 13:26!14 +ACT 13:26!15 +ACT 13:26!16 +ACT 13:26!17 +ACT 13:26!18 +ACT 13:26!19 +ACT 13:27!2 +ACT 13:27!1 +ACT 13:27!3 +ACT 13:27!4 +ACT 13:27!5 +ACT 13:27!6 +ACT 13:27!7 +ACT 13:27!8 +ACT 13:27!9 +ACT 13:27!10 +ACT 13:27!11 +ACT 13:27!12 +ACT 13:27!13 +ACT 13:27!14 +ACT 13:27!15 +ACT 13:27!16 +ACT 13:27!17 +ACT 13:27!18 +ACT 13:27!19 +ACT 13:27!20 +ACT 13:27!21 +ACT 13:27!22 +ACT 13:27!23 +ACT 13:28!1 +ACT 13:28!2 +ACT 13:28!3 +ACT 13:28!4 +ACT 13:28!5 +ACT 13:28!6 +ACT 13:28!7 +ACT 13:28!8 +ACT 13:28!9 +ACT 13:29!2 +ACT 13:29!1 +ACT 13:29!3 +ACT 13:29!4 +ACT 13:29!5 +ACT 13:29!6 +ACT 13:29!7 +ACT 13:29!8 +ACT 13:29!9 +ACT 13:29!10 +ACT 13:29!11 +ACT 13:29!12 +ACT 13:29!13 +ACT 13:29!14 +ACT 13:29!15 +ACT 13:30!2 +ACT 13:30!1 +ACT 13:30!3 +ACT 13:30!4 +ACT 13:30!5 +ACT 13:30!6 +ACT 13:30!7 +ACT 13:31!1 +ACT 13:31!2 +ACT 13:31!3 +ACT 13:31!4 +ACT 13:31!5 +ACT 13:31!6 +ACT 13:31!7 +ACT 13:31!8 +ACT 13:31!9 +ACT 13:31!10 +ACT 13:31!11 +ACT 13:31!12 +ACT 13:31!13 +ACT 13:31!14 +ACT 13:31!15 +ACT 13:31!16 +ACT 13:31!17 +ACT 13:31!18 +ACT 13:31!19 +ACT 13:31!20 +ACT 13:31!21 +ACT 13:32!1 +ACT 13:32!2 +ACT 13:32!3 +ACT 13:32!4 +ACT 13:32!5 +ACT 13:32!6 +ACT 13:32!7 +ACT 13:32!8 +ACT 13:32!10 +ACT 13:32!9 +ACT 13:33!1 +ACT 13:33!2 +ACT 13:33!3 +ACT 13:33!4 +ACT 13:33!5 +ACT 13:33!6 +ACT 13:33!7 +ACT 13:33!8 +ACT 13:33!9 +ACT 13:33!10 +ACT 13:33!11 +ACT 13:33!12 +ACT 13:33!13 +ACT 13:33!14 +ACT 13:33!15 +ACT 13:33!17 +ACT 13:33!18 +ACT 13:33!16 +ACT 13:33!19 +ACT 13:33!20 +ACT 13:33!21 +ACT 13:33!22 +ACT 13:33!23 +ACT 13:33!24 +ACT 13:33!25 +ACT 13:33!26 +ACT 13:34!2 +ACT 13:34!1 +ACT 13:34!3 +ACT 13:34!4 +ACT 13:34!5 +ACT 13:34!6 +ACT 13:34!7 +ACT 13:34!8 +ACT 13:34!9 +ACT 13:34!10 +ACT 13:34!11 +ACT 13:34!12 +ACT 13:34!13 +ACT 13:34!14 +ACT 13:34!15 +ACT 13:34!16 +ACT 13:34!17 +ACT 13:34!18 +ACT 13:34!19 +ACT 13:34!20 +ACT 13:34!21 +ACT 13:35!1 +ACT 13:35!2 +ACT 13:35!3 +ACT 13:35!4 +ACT 13:35!5 +ACT 13:35!6 +ACT 13:35!7 +ACT 13:35!8 +ACT 13:35!9 +ACT 13:35!10 +ACT 13:35!11 +ACT 13:35!12 +ACT 13:36!3 +ACT 13:36!2 +ACT 13:36!1 +ACT 13:36!4 +ACT 13:36!5 +ACT 13:36!6 +ACT 13:36!7 +ACT 13:36!8 +ACT 13:36!9 +ACT 13:36!10 +ACT 13:36!11 +ACT 13:36!12 +ACT 13:36!13 +ACT 13:36!14 +ACT 13:36!15 +ACT 13:36!16 +ACT 13:36!17 +ACT 13:36!18 +ACT 13:36!19 +ACT 13:36!20 +ACT 13:37!2 +ACT 13:37!1 +ACT 13:37!3 +ACT 13:37!4 +ACT 13:37!5 +ACT 13:37!6 +ACT 13:37!7 +ACT 13:37!8 +ACT 13:38!2 +ACT 13:38!1 +ACT 13:38!3 +ACT 13:38!4 +ACT 13:38!5 +ACT 13:38!6 +ACT 13:38!7 +ACT 13:38!8 +ACT 13:38!9 +ACT 13:38!10 +ACT 13:38!11 +ACT 13:38!12 +ACT 13:38!13 +ACT 13:38!14 +ACT 13:38!15 +ACT 13:38!16 +ACT 13:38!17 +ACT 13:38!18 +ACT 13:38!19 +ACT 13:38!20 +ACT 13:38!21 +ACT 13:38!22 +ACT 13:38!23 +ACT 13:39!1 +ACT 13:39!2 +ACT 13:39!3 +ACT 13:39!4 +ACT 13:39!5 +ACT 13:39!6 +ACT 13:40!2 +ACT 13:40!1 +ACT 13:40!3 +ACT 13:40!4 +ACT 13:40!5 +ACT 13:40!6 +ACT 13:40!7 +ACT 13:40!8 +ACT 13:40!9 +ACT 13:41!1 +ACT 13:41!2 +ACT 13:41!3 +ACT 13:41!4 +ACT 13:41!5 +ACT 13:41!6 +ACT 13:41!7 +ACT 13:41!8 +ACT 13:41!9 +ACT 13:41!10 +ACT 13:41!11 +ACT 13:41!12 +ACT 13:41!13 +ACT 13:41!14 +ACT 13:41!15 +ACT 13:41!16 +ACT 13:41!17 +ACT 13:41!18 +ACT 13:41!19 +ACT 13:41!20 +ACT 13:41!21 +ACT 13:41!22 +ACT 13:41!23 +ACT 13:41!24 +ACT 13:42!2 +ACT 13:42!1 +ACT 13:42!3 +ACT 13:42!4 +ACT 13:42!5 +ACT 13:42!6 +ACT 13:42!7 +ACT 13:42!8 +ACT 13:42!9 +ACT 13:42!10 +ACT 13:42!11 +ACT 13:42!12 +ACT 13:42!13 +ACT 13:43!2 +ACT 13:43!1 +ACT 13:43!3 +ACT 13:43!4 +ACT 13:43!5 +ACT 13:43!6 +ACT 13:43!7 +ACT 13:43!8 +ACT 13:43!9 +ACT 13:43!10 +ACT 13:43!11 +ACT 13:43!12 +ACT 13:43!13 +ACT 13:43!14 +ACT 13:43!15 +ACT 13:43!16 +ACT 13:43!17 +ACT 13:43!18 +ACT 13:43!19 +ACT 13:43!20 +ACT 13:43!21 +ACT 13:43!22 +ACT 13:43!23 +ACT 13:43!24 +ACT 13:43!25 +ACT 13:43!26 +ACT 13:43!27 +ACT 13:44!2 +ACT 13:44!1 +ACT 13:44!3 +ACT 13:44!4 +ACT 13:44!5 +ACT 13:44!6 +ACT 13:44!7 +ACT 13:44!8 +ACT 13:44!9 +ACT 13:44!10 +ACT 13:44!11 +ACT 13:44!12 +ACT 13:44!13 +ACT 13:44!14 +ACT 13:45!2 +ACT 13:45!3 +ACT 13:45!4 +ACT 13:45!1 +ACT 13:45!5 +ACT 13:45!6 +ACT 13:45!7 +ACT 13:45!8 +ACT 13:45!9 +ACT 13:45!10 +ACT 13:45!11 +ACT 13:45!12 +ACT 13:45!13 +ACT 13:45!14 +ACT 13:45!15 +ACT 13:46!2 +ACT 13:46!1 +ACT 13:46!3 +ACT 13:46!4 +ACT 13:46!5 +ACT 13:46!6 +ACT 13:46!7 +ACT 13:46!8 +ACT 13:46!10 +ACT 13:46!11 +ACT 13:46!9 +ACT 13:46!12 +ACT 13:46!13 +ACT 13:46!14 +ACT 13:46!15 +ACT 13:46!16 +ACT 13:46!17 +ACT 13:46!18 +ACT 13:46!19 +ACT 13:46!20 +ACT 13:46!21 +ACT 13:46!22 +ACT 13:46!24 +ACT 13:46!25 +ACT 13:46!23 +ACT 13:46!26 +ACT 13:46!27 +ACT 13:46!28 +ACT 13:46!29 +ACT 13:46!30 +ACT 13:46!31 +ACT 13:46!32 +ACT 13:46!33 +ACT 13:47!2 +ACT 13:47!1 +ACT 13:47!3 +ACT 13:47!4 +ACT 13:47!5 +ACT 13:47!6 +ACT 13:47!7 +ACT 13:47!8 +ACT 13:47!9 +ACT 13:47!10 +ACT 13:47!11 +ACT 13:47!12 +ACT 13:47!13 +ACT 13:47!14 +ACT 13:47!15 +ACT 13:47!16 +ACT 13:47!17 +ACT 13:47!18 +ACT 13:47!19 +ACT 13:47!20 +ACT 13:48!2 +ACT 13:48!1 +ACT 13:48!3 +ACT 13:48!4 +ACT 13:48!5 +ACT 13:48!6 +ACT 13:48!7 +ACT 13:48!8 +ACT 13:48!9 +ACT 13:48!10 +ACT 13:48!11 +ACT 13:48!12 +ACT 13:48!13 +ACT 13:48!14 +ACT 13:48!15 +ACT 13:48!16 +ACT 13:48!17 +ACT 13:48!18 +ACT 13:48!19 +ACT 13:49!2 +ACT 13:49!1 +ACT 13:49!3 +ACT 13:49!4 +ACT 13:49!5 +ACT 13:49!6 +ACT 13:49!7 +ACT 13:49!8 +ACT 13:49!9 +ACT 13:49!10 +ACT 13:50!2 +ACT 13:50!1 +ACT 13:50!3 +ACT 13:50!4 +ACT 13:50!5 +ACT 13:50!6 +ACT 13:50!7 +ACT 13:50!8 +ACT 13:50!9 +ACT 13:50!10 +ACT 13:50!11 +ACT 13:50!12 +ACT 13:50!13 +ACT 13:50!14 +ACT 13:50!15 +ACT 13:50!16 +ACT 13:50!17 +ACT 13:50!18 +ACT 13:50!19 +ACT 13:50!20 +ACT 13:50!21 +ACT 13:50!22 +ACT 13:50!23 +ACT 13:50!24 +ACT 13:50!25 +ACT 13:50!26 +ACT 13:50!27 +ACT 13:50!28 +ACT 13:50!29 +ACT 13:51!2 +ACT 13:51!1 +ACT 13:51!3 +ACT 13:51!4 +ACT 13:51!5 +ACT 13:51!6 +ACT 13:51!7 +ACT 13:51!8 +ACT 13:51!9 +ACT 13:51!10 +ACT 13:51!11 +ACT 13:51!12 +ACT 13:52!2 +ACT 13:52!1 +ACT 13:52!3 +ACT 13:52!4 +ACT 13:52!5 +ACT 13:52!6 +ACT 13:52!7 +ACT 13:52!8 +ACT 14:1!2 +ACT 14:1!1 +ACT 14:1!3 +ACT 14:1!4 +ACT 14:1!5 +ACT 14:1!6 +ACT 14:1!7 +ACT 14:1!8 +ACT 14:1!9 +ACT 14:1!10 +ACT 14:1!11 +ACT 14:1!12 +ACT 14:1!13 +ACT 14:1!14 +ACT 14:1!15 +ACT 14:1!16 +ACT 14:1!17 +ACT 14:1!18 +ACT 14:1!19 +ACT 14:1!21 +ACT 14:1!20 +ACT 14:1!22 +ACT 14:1!23 +ACT 14:1!24 +ACT 14:1!25 +ACT 14:2!2 +ACT 14:2!1 +ACT 14:2!3 +ACT 14:2!4 +ACT 14:2!5 +ACT 14:2!6 +ACT 14:2!7 +ACT 14:2!8 +ACT 14:2!9 +ACT 14:2!10 +ACT 14:2!11 +ACT 14:2!12 +ACT 14:2!13 +ACT 14:2!14 +ACT 14:3!3 +ACT 14:3!2 +ACT 14:3!1 +ACT 14:3!4 +ACT 14:3!5 +ACT 14:3!6 +ACT 14:3!7 +ACT 14:3!8 +ACT 14:3!9 +ACT 14:3!10 +ACT 14:3!11 +ACT 14:3!12 +ACT 14:3!13 +ACT 14:3!14 +ACT 14:3!15 +ACT 14:3!16 +ACT 14:3!17 +ACT 14:3!18 +ACT 14:3!19 +ACT 14:3!20 +ACT 14:3!21 +ACT 14:3!22 +ACT 14:3!23 +ACT 14:3!24 +ACT 14:3!25 +ACT 14:3!26 +ACT 14:4!2 +ACT 14:4!1 +ACT 14:4!3 +ACT 14:4!4 +ACT 14:4!5 +ACT 14:4!6 +ACT 14:4!7 +ACT 14:4!9 +ACT 14:4!8 +ACT 14:4!10 +ACT 14:4!11 +ACT 14:4!12 +ACT 14:4!13 +ACT 14:4!15 +ACT 14:4!14 +ACT 14:4!16 +ACT 14:4!17 +ACT 14:4!18 +ACT 14:5!2 +ACT 14:5!1 +ACT 14:5!3 +ACT 14:5!4 +ACT 14:5!5 +ACT 14:5!7 +ACT 14:5!6 +ACT 14:5!8 +ACT 14:5!9 +ACT 14:5!10 +ACT 14:5!11 +ACT 14:5!12 +ACT 14:5!13 +ACT 14:5!14 +ACT 14:5!15 +ACT 14:5!16 +ACT 14:5!17 +ACT 14:6!1 +ACT 14:6!2 +ACT 14:6!3 +ACT 14:6!4 +ACT 14:6!5 +ACT 14:6!6 +ACT 14:6!7 +ACT 14:6!8 +ACT 14:6!9 +ACT 14:6!10 +ACT 14:6!11 +ACT 14:6!12 +ACT 14:6!13 +ACT 14:7!1 +ACT 14:7!2 +ACT 14:7!3 +ACT 14:8!1 +ACT 14:8!2 +ACT 14:8!3 +ACT 14:8!4 +ACT 14:8!7 +ACT 14:8!8 +ACT 14:8!5 +ACT 14:8!6 +ACT 14:8!9 +ACT 14:8!10 +ACT 14:8!11 +ACT 14:8!12 +ACT 14:8!13 +ACT 14:8!14 +ACT 14:8!15 +ACT 14:8!16 +ACT 14:8!17 +ACT 14:9!1 +ACT 14:9!2 +ACT 14:9!3 +ACT 14:9!4 +ACT 14:9!5 +ACT 14:9!6 +ACT 14:9!7 +ACT 14:9!8 +ACT 14:9!9 +ACT 14:9!10 +ACT 14:9!11 +ACT 14:9!12 +ACT 14:9!13 +ACT 14:9!14 +ACT 14:9!15 +ACT 14:10!1 +ACT 14:10!2 +ACT 14:10!3 +ACT 14:10!4 +ACT 14:10!5 +ACT 14:10!6 +ACT 14:10!7 +ACT 14:10!8 +ACT 14:10!9 +ACT 14:10!10 +ACT 14:10!11 +ACT 14:10!12 +ACT 14:10!13 +ACT 14:11!2 +ACT 14:11!1 +ACT 14:11!3 +ACT 14:11!4 +ACT 14:11!5 +ACT 14:11!6 +ACT 14:11!7 +ACT 14:11!8 +ACT 14:11!9 +ACT 14:11!10 +ACT 14:11!11 +ACT 14:11!12 +ACT 14:11!13 +ACT 14:11!14 +ACT 14:11!15 +ACT 14:11!16 +ACT 14:11!17 +ACT 14:11!18 +ACT 14:11!19 +ACT 14:11!20 +ACT 14:12!2 +ACT 14:12!1 +ACT 14:12!3 +ACT 14:12!4 +ACT 14:12!5 +ACT 14:12!7 +ACT 14:12!6 +ACT 14:12!8 +ACT 14:12!9 +ACT 14:12!10 +ACT 14:12!11 +ACT 14:12!12 +ACT 14:12!13 +ACT 14:12!14 +ACT 14:12!15 +ACT 14:12!16 +ACT 14:13!2 +ACT 14:13!1 +ACT 14:13!3 +ACT 14:13!4 +ACT 14:13!5 +ACT 14:13!6 +ACT 14:13!7 +ACT 14:13!8 +ACT 14:13!9 +ACT 14:13!10 +ACT 14:13!11 +ACT 14:13!12 +ACT 14:13!13 +ACT 14:13!14 +ACT 14:13!15 +ACT 14:13!16 +ACT 14:13!17 +ACT 14:13!18 +ACT 14:13!19 +ACT 14:13!20 +ACT 14:13!21 +ACT 14:13!22 +ACT 14:14!2 +ACT 14:14!1 +ACT 14:14!3 +ACT 14:14!4 +ACT 14:14!5 +ACT 14:14!6 +ACT 14:14!7 +ACT 14:14!8 +ACT 14:14!9 +ACT 14:14!10 +ACT 14:14!11 +ACT 14:14!12 +ACT 14:14!13 +ACT 14:14!14 +ACT 14:14!15 +ACT 14:14!16 +ACT 14:15!1 +ACT 14:15!2 +ACT 14:15!3 +ACT 14:15!4 +ACT 14:15!5 +ACT 14:15!6 +ACT 14:15!7 +ACT 14:15!8 +ACT 14:15!9 +ACT 14:15!11 +ACT 14:15!12 +ACT 14:15!10 +ACT 14:15!13 +ACT 14:15!14 +ACT 14:15!15 +ACT 14:15!16 +ACT 14:15!17 +ACT 14:15!18 +ACT 14:15!19 +ACT 14:15!20 +ACT 14:15!21 +ACT 14:15!22 +ACT 14:15!23 +ACT 14:15!24 +ACT 14:15!25 +ACT 14:15!26 +ACT 14:15!27 +ACT 14:15!28 +ACT 14:15!29 +ACT 14:15!30 +ACT 14:15!31 +ACT 14:15!32 +ACT 14:15!33 +ACT 14:15!34 +ACT 14:15!35 +ACT 14:15!36 +ACT 14:15!37 +ACT 14:16!1 +ACT 14:16!2 +ACT 14:16!3 +ACT 14:16!4 +ACT 14:16!5 +ACT 14:16!6 +ACT 14:16!7 +ACT 14:16!8 +ACT 14:16!9 +ACT 14:16!10 +ACT 14:16!11 +ACT 14:16!12 +ACT 14:16!13 +ACT 14:17!1 +ACT 14:17!2 +ACT 14:17!3 +ACT 14:17!4 +ACT 14:17!5 +ACT 14:17!6 +ACT 14:17!7 +ACT 14:17!8 +ACT 14:17!9 +ACT 14:17!10 +ACT 14:17!11 +ACT 14:17!12 +ACT 14:17!13 +ACT 14:17!14 +ACT 14:17!15 +ACT 14:17!16 +ACT 14:17!17 +ACT 14:17!18 +ACT 14:17!19 +ACT 14:17!20 +ACT 14:18!1 +ACT 14:18!2 +ACT 14:18!3 +ACT 14:18!4 +ACT 14:18!5 +ACT 14:18!6 +ACT 14:18!7 +ACT 14:18!8 +ACT 14:18!9 +ACT 14:18!10 +ACT 14:18!11 +ACT 14:19!2 +ACT 14:19!1 +ACT 14:19!3 +ACT 14:19!4 +ACT 14:19!5 +ACT 14:19!6 +ACT 14:19!7 +ACT 14:19!8 +ACT 14:19!9 +ACT 14:19!10 +ACT 14:19!11 +ACT 14:19!12 +ACT 14:19!13 +ACT 14:19!14 +ACT 14:19!15 +ACT 14:19!16 +ACT 14:19!17 +ACT 14:19!18 +ACT 14:19!19 +ACT 14:19!20 +ACT 14:19!21 +ACT 14:19!22 +ACT 14:20!2 +ACT 14:20!1 +ACT 14:20!3 +ACT 14:20!4 +ACT 14:20!5 +ACT 14:20!6 +ACT 14:20!7 +ACT 14:20!8 +ACT 14:20!9 +ACT 14:20!10 +ACT 14:20!11 +ACT 14:20!12 +ACT 14:20!13 +ACT 14:20!14 +ACT 14:20!15 +ACT 14:20!16 +ACT 14:20!17 +ACT 14:20!18 +ACT 14:20!19 +ACT 14:21!2 +ACT 14:21!1 +ACT 14:21!3 +ACT 14:21!4 +ACT 14:21!5 +ACT 14:21!6 +ACT 14:21!7 +ACT 14:21!8 +ACT 14:21!9 +ACT 14:21!10 +ACT 14:21!11 +ACT 14:21!12 +ACT 14:21!13 +ACT 14:21!14 +ACT 14:21!15 +ACT 14:21!16 +ACT 14:21!17 +ACT 14:21!18 +ACT 14:22!1 +ACT 14:22!2 +ACT 14:22!3 +ACT 14:22!4 +ACT 14:22!5 +ACT 14:22!6 +ACT 14:22!7 +ACT 14:22!8 +ACT 14:22!9 +ACT 14:22!10 +ACT 14:22!11 +ACT 14:22!15 +ACT 14:22!12 +ACT 14:22!13 +ACT 14:22!14 +ACT 14:22!16 +ACT 14:22!17 +ACT 14:22!18 +ACT 14:22!19 +ACT 14:22!20 +ACT 14:22!21 +ACT 14:22!22 +ACT 14:23!2 +ACT 14:23!1 +ACT 14:23!3 +ACT 14:23!4 +ACT 14:23!5 +ACT 14:23!6 +ACT 14:23!7 +ACT 14:23!8 +ACT 14:23!9 +ACT 14:23!10 +ACT 14:23!11 +ACT 14:23!12 +ACT 14:23!13 +ACT 14:23!14 +ACT 14:23!15 +ACT 14:23!16 +ACT 14:24!1 +ACT 14:24!2 +ACT 14:24!3 +ACT 14:24!4 +ACT 14:24!5 +ACT 14:24!6 +ACT 14:24!7 +ACT 14:24!8 +ACT 14:25!1 +ACT 14:25!2 +ACT 14:25!3 +ACT 14:25!4 +ACT 14:25!5 +ACT 14:25!6 +ACT 14:25!7 +ACT 14:25!8 +ACT 14:25!9 +ACT 14:26!1 +ACT 14:26!2 +ACT 14:26!3 +ACT 14:26!4 +ACT 14:26!5 +ACT 14:26!6 +ACT 14:26!7 +ACT 14:26!8 +ACT 14:26!9 +ACT 14:26!10 +ACT 14:26!11 +ACT 14:26!12 +ACT 14:26!13 +ACT 14:26!14 +ACT 14:26!15 +ACT 14:26!16 +ACT 14:27!2 +ACT 14:27!1 +ACT 14:27!3 +ACT 14:27!4 +ACT 14:27!5 +ACT 14:27!6 +ACT 14:27!7 +ACT 14:27!8 +ACT 14:27!9 +ACT 14:27!10 +ACT 14:27!11 +ACT 14:27!12 +ACT 14:27!13 +ACT 14:27!14 +ACT 14:27!15 +ACT 14:27!16 +ACT 14:27!17 +ACT 14:27!18 +ACT 14:27!19 +ACT 14:27!20 +ACT 14:28!2 +ACT 14:28!1 +ACT 14:28!3 +ACT 14:28!4 +ACT 14:28!5 +ACT 14:28!6 +ACT 14:28!7 +ACT 14:28!8 +ACT 15:1!1 +ACT 15:1!2 +ACT 15:1!3 +ACT 15:1!4 +ACT 15:1!5 +ACT 15:1!6 +ACT 15:1!7 +ACT 15:1!8 +ACT 15:1!9 +ACT 15:1!10 +ACT 15:1!11 +ACT 15:1!12 +ACT 15:1!13 +ACT 15:1!14 +ACT 15:1!15 +ACT 15:1!16 +ACT 15:1!17 +ACT 15:1!18 +ACT 15:1!19 +ACT 15:1!20 +ACT 15:2!2 +ACT 15:2!1 +ACT 15:2!3 +ACT 15:2!4 +ACT 15:2!5 +ACT 15:2!6 +ACT 15:2!7 +ACT 15:2!8 +ACT 15:2!9 +ACT 15:2!10 +ACT 15:2!11 +ACT 15:2!12 +ACT 15:2!13 +ACT 15:2!14 +ACT 15:2!15 +ACT 15:2!16 +ACT 15:2!17 +ACT 15:2!18 +ACT 15:2!19 +ACT 15:2!20 +ACT 15:2!21 +ACT 15:2!22 +ACT 15:2!23 +ACT 15:2!24 +ACT 15:2!25 +ACT 15:2!26 +ACT 15:2!27 +ACT 15:2!28 +ACT 15:2!29 +ACT 15:2!30 +ACT 15:2!31 +ACT 15:2!32 +ACT 15:2!33 +ACT 15:2!34 +ACT 15:2!35 +ACT 15:3!2 +ACT 15:3!3 +ACT 15:3!1 +ACT 15:3!4 +ACT 15:3!5 +ACT 15:3!6 +ACT 15:3!7 +ACT 15:3!8 +ACT 15:3!9 +ACT 15:3!10 +ACT 15:3!11 +ACT 15:3!12 +ACT 15:3!13 +ACT 15:3!14 +ACT 15:3!15 +ACT 15:3!16 +ACT 15:3!17 +ACT 15:3!18 +ACT 15:3!19 +ACT 15:3!20 +ACT 15:3!21 +ACT 15:3!22 +ACT 15:3!23 +ACT 15:3!24 +ACT 15:3!25 +ACT 15:4!2 +ACT 15:4!1 +ACT 15:4!3 +ACT 15:4!4 +ACT 15:4!5 +ACT 15:4!6 +ACT 15:4!7 +ACT 15:4!8 +ACT 15:4!9 +ACT 15:4!10 +ACT 15:4!11 +ACT 15:4!12 +ACT 15:4!13 +ACT 15:4!14 +ACT 15:4!16 +ACT 15:4!15 +ACT 15:4!17 +ACT 15:4!18 +ACT 15:4!19 +ACT 15:4!20 +ACT 15:4!21 +ACT 15:4!22 +ACT 15:5!2 +ACT 15:5!1 +ACT 15:5!3 +ACT 15:5!4 +ACT 15:5!5 +ACT 15:5!6 +ACT 15:5!7 +ACT 15:5!8 +ACT 15:5!9 +ACT 15:5!10 +ACT 15:5!11 +ACT 15:5!12 +ACT 15:5!13 +ACT 15:5!14 +ACT 15:5!15 +ACT 15:5!17 +ACT 15:5!16 +ACT 15:5!18 +ACT 15:5!19 +ACT 15:5!20 +ACT 15:5!21 +ACT 15:6!2 +ACT 15:6!1 +ACT 15:6!3 +ACT 15:6!4 +ACT 15:6!5 +ACT 15:6!6 +ACT 15:6!7 +ACT 15:6!8 +ACT 15:6!9 +ACT 15:6!10 +ACT 15:6!11 +ACT 15:6!12 +ACT 15:7!2 +ACT 15:7!1 +ACT 15:7!3 +ACT 15:7!4 +ACT 15:7!5 +ACT 15:7!6 +ACT 15:7!7 +ACT 15:7!8 +ACT 15:7!9 +ACT 15:7!10 +ACT 15:7!11 +ACT 15:7!12 +ACT 15:7!13 +ACT 15:7!14 +ACT 15:7!15 +ACT 15:7!16 +ACT 15:7!17 +ACT 15:7!18 +ACT 15:7!19 +ACT 15:7!20 +ACT 15:7!21 +ACT 15:7!22 +ACT 15:7!23 +ACT 15:7!24 +ACT 15:7!25 +ACT 15:7!26 +ACT 15:7!27 +ACT 15:7!28 +ACT 15:7!29 +ACT 15:7!30 +ACT 15:7!31 +ACT 15:7!32 +ACT 15:7!33 +ACT 15:7!34 +ACT 15:7!35 +ACT 15:8!1 +ACT 15:8!2 +ACT 15:8!3 +ACT 15:8!4 +ACT 15:8!5 +ACT 15:8!6 +ACT 15:8!7 +ACT 15:8!8 +ACT 15:8!9 +ACT 15:8!10 +ACT 15:8!11 +ACT 15:8!12 +ACT 15:8!13 +ACT 15:8!14 +ACT 15:9!1 +ACT 15:9!2 +ACT 15:9!3 +ACT 15:9!4 +ACT 15:9!6 +ACT 15:9!5 +ACT 15:9!7 +ACT 15:9!8 +ACT 15:9!9 +ACT 15:9!10 +ACT 15:9!11 +ACT 15:9!12 +ACT 15:9!13 +ACT 15:9!14 +ACT 15:10!2 +ACT 15:10!1 +ACT 15:10!3 +ACT 15:10!4 +ACT 15:10!5 +ACT 15:10!6 +ACT 15:10!7 +ACT 15:10!8 +ACT 15:10!9 +ACT 15:10!10 +ACT 15:10!11 +ACT 15:10!12 +ACT 15:10!13 +ACT 15:10!14 +ACT 15:10!22 +ACT 15:10!15 +ACT 15:10!16 +ACT 15:10!17 +ACT 15:10!18 +ACT 15:10!19 +ACT 15:10!20 +ACT 15:10!21 +ACT 15:11!1 +ACT 15:11!8 +ACT 15:11!2 +ACT 15:11!3 +ACT 15:11!4 +ACT 15:11!5 +ACT 15:11!6 +ACT 15:11!7 +ACT 15:11!9 +ACT 15:11!10 +ACT 15:11!11 +ACT 15:11!12 +ACT 15:11!13 +ACT 15:12!2 +ACT 15:12!1 +ACT 15:12!3 +ACT 15:12!4 +ACT 15:12!5 +ACT 15:12!6 +ACT 15:12!7 +ACT 15:12!8 +ACT 15:12!9 +ACT 15:12!10 +ACT 15:12!11 +ACT 15:12!16 +ACT 15:12!17 +ACT 15:12!18 +ACT 15:12!12 +ACT 15:12!13 +ACT 15:12!14 +ACT 15:12!15 +ACT 15:12!19 +ACT 15:12!20 +ACT 15:12!21 +ACT 15:12!22 +ACT 15:12!23 +ACT 15:13!2 +ACT 15:13!1 +ACT 15:13!3 +ACT 15:13!4 +ACT 15:13!5 +ACT 15:13!6 +ACT 15:13!7 +ACT 15:13!8 +ACT 15:13!9 +ACT 15:13!10 +ACT 15:13!11 +ACT 15:13!12 +ACT 15:14!1 +ACT 15:14!2 +ACT 15:14!3 +ACT 15:14!4 +ACT 15:14!5 +ACT 15:14!6 +ACT 15:14!7 +ACT 15:14!8 +ACT 15:14!9 +ACT 15:14!10 +ACT 15:14!11 +ACT 15:14!12 +ACT 15:14!13 +ACT 15:14!14 +ACT 15:15!1 +ACT 15:15!2 +ACT 15:15!3 +ACT 15:15!4 +ACT 15:15!5 +ACT 15:15!6 +ACT 15:15!7 +ACT 15:15!8 +ACT 15:15!9 +ACT 15:16!1 +ACT 15:16!2 +ACT 15:16!3 +ACT 15:16!4 +ACT 15:16!5 +ACT 15:16!6 +ACT 15:16!7 +ACT 15:16!8 +ACT 15:16!9 +ACT 15:16!10 +ACT 15:16!11 +ACT 15:16!12 +ACT 15:16!13 +ACT 15:16!14 +ACT 15:16!15 +ACT 15:16!16 +ACT 15:16!17 +ACT 15:16!18 +ACT 15:17!1 +ACT 15:17!2 +ACT 15:17!3 +ACT 15:17!4 +ACT 15:17!5 +ACT 15:17!6 +ACT 15:17!7 +ACT 15:17!8 +ACT 15:17!9 +ACT 15:17!10 +ACT 15:17!11 +ACT 15:17!12 +ACT 15:17!13 +ACT 15:17!14 +ACT 15:17!15 +ACT 15:17!16 +ACT 15:17!17 +ACT 15:17!18 +ACT 15:17!19 +ACT 15:17!20 +ACT 15:17!21 +ACT 15:17!22 +ACT 15:17!23 +ACT 15:17!24 +ACT 15:17!25 +ACT 15:18!1 +ACT 15:18!2 +ACT 15:18!3 +ACT 15:19!1 +ACT 15:19!2 +ACT 15:19!3 +ACT 15:19!4 +ACT 15:19!5 +ACT 15:19!6 +ACT 15:19!7 +ACT 15:19!8 +ACT 15:19!9 +ACT 15:19!10 +ACT 15:19!11 +ACT 15:19!12 +ACT 15:19!13 +ACT 15:20!1 +ACT 15:20!2 +ACT 15:20!3 +ACT 15:20!4 +ACT 15:20!5 +ACT 15:20!6 +ACT 15:20!7 +ACT 15:20!8 +ACT 15:20!9 +ACT 15:20!10 +ACT 15:20!11 +ACT 15:20!12 +ACT 15:20!13 +ACT 15:20!14 +ACT 15:20!15 +ACT 15:20!16 +ACT 15:20!17 +ACT 15:21!2 +ACT 15:21!1 +ACT 15:21!3 +ACT 15:21!4 +ACT 15:21!5 +ACT 15:21!6 +ACT 15:21!7 +ACT 15:21!8 +ACT 15:21!9 +ACT 15:21!10 +ACT 15:21!11 +ACT 15:21!12 +ACT 15:21!13 +ACT 15:21!14 +ACT 15:21!15 +ACT 15:21!16 +ACT 15:21!17 +ACT 15:21!18 +ACT 15:22!1 +ACT 15:22!2 +ACT 15:22!3 +ACT 15:22!4 +ACT 15:22!5 +ACT 15:22!6 +ACT 15:22!7 +ACT 15:22!8 +ACT 15:22!9 +ACT 15:22!10 +ACT 15:22!11 +ACT 15:22!12 +ACT 15:22!13 +ACT 15:22!14 +ACT 15:22!15 +ACT 15:22!16 +ACT 15:22!17 +ACT 15:22!18 +ACT 15:22!19 +ACT 15:22!20 +ACT 15:22!21 +ACT 15:22!22 +ACT 15:22!23 +ACT 15:22!24 +ACT 15:22!25 +ACT 15:22!26 +ACT 15:22!27 +ACT 15:22!28 +ACT 15:22!29 +ACT 15:22!30 +ACT 15:22!31 +ACT 15:22!32 +ACT 15:22!33 +ACT 15:22!34 +ACT 15:23!1 +ACT 15:23!2 +ACT 15:23!3 +ACT 15:23!4 +ACT 15:23!5 +ACT 15:23!6 +ACT 15:23!7 +ACT 15:23!8 +ACT 15:23!9 +ACT 15:23!10 +ACT 15:23!11 +ACT 15:23!12 +ACT 15:23!13 +ACT 15:23!14 +ACT 15:23!15 +ACT 15:23!16 +ACT 15:23!17 +ACT 15:23!18 +ACT 15:23!19 +ACT 15:23!20 +ACT 15:23!21 +ACT 15:23!22 +ACT 15:23!23 +ACT 15:24!1 +ACT 15:24!2 +ACT 15:24!3 +ACT 15:24!4 +ACT 15:24!5 +ACT 15:24!6 +ACT 15:24!7 +ACT 15:24!8 +ACT 15:24!9 +ACT 15:24!10 +ACT 15:24!11 +ACT 15:24!12 +ACT 15:24!13 +ACT 15:24!14 +ACT 15:24!15 +ACT 15:24!16 +ACT 15:25!1 +ACT 15:25!2 +ACT 15:25!3 +ACT 15:25!4 +ACT 15:25!5 +ACT 15:25!6 +ACT 15:25!7 +ACT 15:25!8 +ACT 15:25!9 +ACT 15:25!10 +ACT 15:25!11 +ACT 15:25!12 +ACT 15:25!13 +ACT 15:25!14 +ACT 15:25!15 +ACT 15:25!16 +ACT 15:26!1 +ACT 15:26!2 +ACT 15:26!3 +ACT 15:26!4 +ACT 15:26!5 +ACT 15:26!6 +ACT 15:26!7 +ACT 15:26!8 +ACT 15:26!9 +ACT 15:26!10 +ACT 15:26!11 +ACT 15:26!12 +ACT 15:26!13 +ACT 15:27!2 +ACT 15:27!1 +ACT 15:27!3 +ACT 15:27!4 +ACT 15:27!5 +ACT 15:27!6 +ACT 15:27!7 +ACT 15:27!8 +ACT 15:27!9 +ACT 15:27!10 +ACT 15:27!11 +ACT 15:27!12 +ACT 15:28!2 +ACT 15:28!1 +ACT 15:28!3 +ACT 15:28!4 +ACT 15:28!5 +ACT 15:28!6 +ACT 15:28!7 +ACT 15:28!8 +ACT 15:28!9 +ACT 15:28!10 +ACT 15:28!13 +ACT 15:28!11 +ACT 15:28!12 +ACT 15:28!14 +ACT 15:28!15 +ACT 15:28!16 +ACT 15:28!17 +ACT 15:29!1 +ACT 15:29!2 +ACT 15:29!3 +ACT 15:29!4 +ACT 15:29!5 +ACT 15:29!6 +ACT 15:29!7 +ACT 15:29!8 +ACT 15:29!9 +ACT 15:29!10 +ACT 15:29!11 +ACT 15:29!12 +ACT 15:29!13 +ACT 15:29!14 +ACT 15:29!15 +ACT 15:30!2 +ACT 15:30!3 +ACT 15:30!1 +ACT 15:30!4 +ACT 15:30!5 +ACT 15:30!6 +ACT 15:30!7 +ACT 15:30!8 +ACT 15:30!9 +ACT 15:30!10 +ACT 15:30!11 +ACT 15:30!12 +ACT 15:30!13 +ACT 15:30!14 +ACT 15:31!2 +ACT 15:31!1 +ACT 15:31!3 +ACT 15:31!4 +ACT 15:31!5 +ACT 15:31!6 +ACT 15:32!2 +ACT 15:32!1 +ACT 15:32!3 +ACT 15:32!4 +ACT 15:32!5 +ACT 15:32!6 +ACT 15:32!7 +ACT 15:32!8 +ACT 15:32!9 +ACT 15:32!10 +ACT 15:32!11 +ACT 15:32!12 +ACT 15:32!13 +ACT 15:32!14 +ACT 15:32!15 +ACT 15:32!16 +ACT 15:33!2 +ACT 15:33!1 +ACT 15:33!3 +ACT 15:33!4 +ACT 15:33!5 +ACT 15:33!6 +ACT 15:33!7 +ACT 15:33!8 +ACT 15:33!9 +ACT 15:33!10 +ACT 15:33!11 +ACT 15:33!12 +ACT 15:33!13 +ACT 15:35!2 +ACT 15:35!1 +ACT 15:35!3 +ACT 15:35!4 +ACT 15:35!5 +ACT 15:35!6 +ACT 15:35!7 +ACT 15:35!8 +ACT 15:35!9 +ACT 15:35!10 +ACT 15:35!11 +ACT 15:35!12 +ACT 15:35!13 +ACT 15:35!14 +ACT 15:35!15 +ACT 15:35!16 +ACT 15:35!17 +ACT 15:35!18 +ACT 15:36!2 +ACT 15:36!1 +ACT 15:36!3 +ACT 15:36!4 +ACT 15:36!5 +ACT 15:36!6 +ACT 15:36!7 +ACT 15:36!8 +ACT 15:36!10 +ACT 15:36!9 +ACT 15:36!11 +ACT 15:36!12 +ACT 15:36!13 +ACT 15:36!14 +ACT 15:36!15 +ACT 15:36!16 +ACT 15:36!17 +ACT 15:36!18 +ACT 15:36!19 +ACT 15:36!20 +ACT 15:36!21 +ACT 15:36!22 +ACT 15:36!23 +ACT 15:36!24 +ACT 15:36!25 +ACT 15:37!2 +ACT 15:37!1 +ACT 15:37!3 +ACT 15:37!4 +ACT 15:37!5 +ACT 15:37!6 +ACT 15:37!7 +ACT 15:37!8 +ACT 15:37!9 +ACT 15:37!10 +ACT 15:38!2 +ACT 15:38!1 +ACT 15:38!3 +ACT 15:38!4 +ACT 15:38!5 +ACT 15:38!6 +ACT 15:38!7 +ACT 15:38!8 +ACT 15:38!9 +ACT 15:38!10 +ACT 15:38!11 +ACT 15:38!12 +ACT 15:38!13 +ACT 15:38!14 +ACT 15:38!15 +ACT 15:38!16 +ACT 15:38!17 +ACT 15:38!18 +ACT 15:38!19 +ACT 15:39!2 +ACT 15:39!1 +ACT 15:39!3 +ACT 15:39!4 +ACT 15:39!5 +ACT 15:39!6 +ACT 15:39!7 +ACT 15:39!8 +ACT 15:39!10 +ACT 15:39!9 +ACT 15:39!11 +ACT 15:39!12 +ACT 15:39!13 +ACT 15:39!14 +ACT 15:39!15 +ACT 15:39!16 +ACT 15:39!17 +ACT 15:40!2 +ACT 15:40!1 +ACT 15:40!3 +ACT 15:40!4 +ACT 15:40!5 +ACT 15:40!6 +ACT 15:40!7 +ACT 15:40!8 +ACT 15:40!9 +ACT 15:40!10 +ACT 15:40!11 +ACT 15:40!12 +ACT 15:40!13 +ACT 15:41!2 +ACT 15:41!1 +ACT 15:41!3 +ACT 15:41!4 +ACT 15:41!5 +ACT 15:41!6 +ACT 15:41!7 +ACT 15:41!8 +ACT 15:41!9 +ACT 16:1!2 +ACT 16:1!1 +ACT 16:1!3 +ACT 16:1!4 +ACT 16:1!5 +ACT 16:1!6 +ACT 16:1!7 +ACT 16:1!8 +ACT 16:1!9 +ACT 16:1!10 +ACT 16:1!13 +ACT 16:1!14 +ACT 16:1!11 +ACT 16:1!12 +ACT 16:1!15 +ACT 16:1!16 +ACT 16:1!17 +ACT 16:1!18 +ACT 16:1!19 +ACT 16:1!20 +ACT 16:1!22 +ACT 16:1!21 +ACT 16:1!23 +ACT 16:2!1 +ACT 16:2!2 +ACT 16:2!3 +ACT 16:2!4 +ACT 16:2!5 +ACT 16:2!6 +ACT 16:2!7 +ACT 16:2!8 +ACT 16:2!9 +ACT 16:3!2 +ACT 16:3!3 +ACT 16:3!4 +ACT 16:3!1 +ACT 16:3!5 +ACT 16:3!6 +ACT 16:3!7 +ACT 16:3!8 +ACT 16:3!9 +ACT 16:3!10 +ACT 16:3!11 +ACT 16:3!12 +ACT 16:3!13 +ACT 16:3!14 +ACT 16:3!15 +ACT 16:3!16 +ACT 16:3!17 +ACT 16:3!18 +ACT 16:3!19 +ACT 16:3!20 +ACT 16:3!22 +ACT 16:3!21 +ACT 16:3!23 +ACT 16:3!24 +ACT 16:3!25 +ACT 16:3!26 +ACT 16:3!27 +ACT 16:3!28 +ACT 16:3!29 +ACT 16:4!2 +ACT 16:4!1 +ACT 16:4!3 +ACT 16:4!4 +ACT 16:4!5 +ACT 16:4!6 +ACT 16:4!7 +ACT 16:4!8 +ACT 16:4!9 +ACT 16:4!10 +ACT 16:4!11 +ACT 16:4!12 +ACT 16:4!13 +ACT 16:4!14 +ACT 16:4!15 +ACT 16:4!16 +ACT 16:4!17 +ACT 16:4!18 +ACT 16:4!19 +ACT 16:4!20 +ACT 16:5!2 +ACT 16:5!3 +ACT 16:5!1 +ACT 16:5!4 +ACT 16:5!5 +ACT 16:5!6 +ACT 16:5!7 +ACT 16:5!8 +ACT 16:5!9 +ACT 16:5!10 +ACT 16:5!11 +ACT 16:5!12 +ACT 16:5!13 +ACT 16:6!2 +ACT 16:6!1 +ACT 16:6!3 +ACT 16:6!4 +ACT 16:6!5 +ACT 16:6!6 +ACT 16:6!7 +ACT 16:6!8 +ACT 16:6!9 +ACT 16:6!10 +ACT 16:6!11 +ACT 16:6!12 +ACT 16:6!13 +ACT 16:6!14 +ACT 16:6!15 +ACT 16:6!16 +ACT 16:6!17 +ACT 16:6!18 +ACT 16:7!2 +ACT 16:7!1 +ACT 16:7!3 +ACT 16:7!4 +ACT 16:7!5 +ACT 16:7!6 +ACT 16:7!7 +ACT 16:7!8 +ACT 16:7!9 +ACT 16:7!10 +ACT 16:7!11 +ACT 16:7!12 +ACT 16:7!13 +ACT 16:7!14 +ACT 16:7!15 +ACT 16:7!16 +ACT 16:7!17 +ACT 16:8!2 +ACT 16:8!1 +ACT 16:8!3 +ACT 16:8!4 +ACT 16:8!5 +ACT 16:8!6 +ACT 16:8!7 +ACT 16:9!1 +ACT 16:9!2 +ACT 16:9!3 +ACT 16:9!4 +ACT 16:9!5 +ACT 16:9!6 +ACT 16:9!7 +ACT 16:9!8 +ACT 16:9!9 +ACT 16:9!10 +ACT 16:9!11 +ACT 16:9!12 +ACT 16:9!13 +ACT 16:9!14 +ACT 16:9!15 +ACT 16:9!16 +ACT 16:9!17 +ACT 16:9!18 +ACT 16:9!19 +ACT 16:9!20 +ACT 16:9!21 +ACT 16:9!22 +ACT 16:10!2 +ACT 16:10!1 +ACT 16:10!3 +ACT 16:10!4 +ACT 16:10!5 +ACT 16:10!6 +ACT 16:10!7 +ACT 16:10!8 +ACT 16:10!9 +ACT 16:10!10 +ACT 16:10!11 +ACT 16:10!12 +ACT 16:10!13 +ACT 16:10!15 +ACT 16:10!16 +ACT 16:10!14 +ACT 16:10!17 +ACT 16:10!18 +ACT 16:11!2 +ACT 16:11!1 +ACT 16:11!3 +ACT 16:11!4 +ACT 16:11!5 +ACT 16:11!6 +ACT 16:11!7 +ACT 16:11!9 +ACT 16:11!8 +ACT 16:11!10 +ACT 16:11!11 +ACT 16:11!12 +ACT 16:11!13 +ACT 16:12!1 +ACT 16:12!2 +ACT 16:12!3 +ACT 16:12!4 +ACT 16:12!5 +ACT 16:12!6 +ACT 16:12!7 +ACT 16:12!8 +ACT 16:12!9 +ACT 16:12!10 +ACT 16:12!11 +ACT 16:12!13 +ACT 16:12!12 +ACT 16:12!18 +ACT 16:12!14 +ACT 16:12!15 +ACT 16:12!16 +ACT 16:12!17 +ACT 16:12!19 +ACT 16:12!20 +ACT 16:13!2 +ACT 16:13!1 +ACT 16:13!3 +ACT 16:13!4 +ACT 16:13!5 +ACT 16:13!6 +ACT 16:13!7 +ACT 16:13!8 +ACT 16:13!9 +ACT 16:13!10 +ACT 16:13!11 +ACT 16:13!12 +ACT 16:13!14 +ACT 16:13!15 +ACT 16:13!13 +ACT 16:13!16 +ACT 16:13!17 +ACT 16:13!18 +ACT 16:13!19 +ACT 16:13!20 +ACT 16:13!21 +ACT 16:14!1 +ACT 16:14!2 +ACT 16:14!3 +ACT 16:14!4 +ACT 16:14!5 +ACT 16:14!6 +ACT 16:14!7 +ACT 16:14!8 +ACT 16:14!9 +ACT 16:14!10 +ACT 16:14!11 +ACT 16:14!12 +ACT 16:14!13 +ACT 16:14!17 +ACT 16:14!18 +ACT 16:14!14 +ACT 16:14!15 +ACT 16:14!16 +ACT 16:14!19 +ACT 16:14!20 +ACT 16:14!21 +ACT 16:14!22 +ACT 16:14!23 +ACT 16:15!2 +ACT 16:15!1 +ACT 16:15!3 +ACT 16:15!4 +ACT 16:15!5 +ACT 16:15!6 +ACT 16:15!7 +ACT 16:15!8 +ACT 16:15!9 +ACT 16:15!10 +ACT 16:15!11 +ACT 16:15!12 +ACT 16:15!13 +ACT 16:15!14 +ACT 16:15!15 +ACT 16:15!16 +ACT 16:15!17 +ACT 16:15!18 +ACT 16:15!19 +ACT 16:15!20 +ACT 16:15!21 +ACT 16:15!22 +ACT 16:15!23 +ACT 16:15!24 +ACT 16:15!25 +ACT 16:16!2 +ACT 16:16!1 +ACT 16:16!3 +ACT 16:16!4 +ACT 16:16!5 +ACT 16:16!6 +ACT 16:16!7 +ACT 16:16!8 +ACT 16:16!9 +ACT 16:16!10 +ACT 16:16!11 +ACT 16:16!12 +ACT 16:16!13 +ACT 16:16!14 +ACT 16:16!15 +ACT 16:16!16 +ACT 16:16!17 +ACT 16:16!18 +ACT 16:16!19 +ACT 16:16!20 +ACT 16:16!21 +ACT 16:16!22 +ACT 16:17!1 +ACT 16:17!2 +ACT 16:17!3 +ACT 16:17!4 +ACT 16:17!5 +ACT 16:17!6 +ACT 16:17!7 +ACT 16:17!8 +ACT 16:17!9 +ACT 16:17!10 +ACT 16:17!11 +ACT 16:17!12 +ACT 16:17!13 +ACT 16:17!14 +ACT 16:17!15 +ACT 16:17!16 +ACT 16:17!17 +ACT 16:17!18 +ACT 16:17!19 +ACT 16:17!20 +ACT 16:17!21 +ACT 16:17!22 +ACT 16:18!2 +ACT 16:18!1 +ACT 16:18!3 +ACT 16:18!4 +ACT 16:18!5 +ACT 16:18!6 +ACT 16:18!8 +ACT 16:18!9 +ACT 16:18!7 +ACT 16:18!10 +ACT 16:18!11 +ACT 16:18!12 +ACT 16:18!13 +ACT 16:18!14 +ACT 16:18!15 +ACT 16:18!16 +ACT 16:18!17 +ACT 16:18!18 +ACT 16:18!19 +ACT 16:18!20 +ACT 16:18!21 +ACT 16:18!22 +ACT 16:18!23 +ACT 16:18!24 +ACT 16:18!25 +ACT 16:18!26 +ACT 16:18!27 +ACT 16:18!28 +ACT 16:19!2 +ACT 16:19!3 +ACT 16:19!4 +ACT 16:19!5 +ACT 16:19!1 +ACT 16:19!6 +ACT 16:19!7 +ACT 16:19!8 +ACT 16:19!9 +ACT 16:19!10 +ACT 16:19!11 +ACT 16:19!12 +ACT 16:19!13 +ACT 16:19!14 +ACT 16:19!15 +ACT 16:19!16 +ACT 16:19!17 +ACT 16:19!18 +ACT 16:19!19 +ACT 16:19!20 +ACT 16:19!21 +ACT 16:19!22 +ACT 16:19!23 +ACT 16:19!24 +ACT 16:19!25 +ACT 16:20!1 +ACT 16:20!2 +ACT 16:20!3 +ACT 16:20!4 +ACT 16:20!5 +ACT 16:20!6 +ACT 16:20!7 +ACT 16:20!8 +ACT 16:20!9 +ACT 16:20!10 +ACT 16:20!11 +ACT 16:20!12 +ACT 16:20!13 +ACT 16:20!14 +ACT 16:20!15 +ACT 16:21!1 +ACT 16:21!2 +ACT 16:21!3 +ACT 16:21!4 +ACT 16:21!8 +ACT 16:21!9 +ACT 16:21!10 +ACT 16:21!5 +ACT 16:21!6 +ACT 16:21!7 +ACT 16:21!11 +ACT 16:21!12 +ACT 16:22!1 +ACT 16:22!2 +ACT 16:22!3 +ACT 16:22!4 +ACT 16:22!5 +ACT 16:22!6 +ACT 16:22!7 +ACT 16:22!8 +ACT 16:22!9 +ACT 16:22!10 +ACT 16:22!11 +ACT 16:22!12 +ACT 16:22!13 +ACT 16:22!14 +ACT 16:22!15 +ACT 16:23!2 +ACT 16:23!3 +ACT 16:23!4 +ACT 16:23!1 +ACT 16:23!5 +ACT 16:23!6 +ACT 16:23!7 +ACT 16:23!8 +ACT 16:23!9 +ACT 16:23!10 +ACT 16:23!11 +ACT 16:23!12 +ACT 16:23!13 +ACT 16:23!14 +ACT 16:24!1 +ACT 16:24!2 +ACT 16:24!3 +ACT 16:24!4 +ACT 16:24!5 +ACT 16:24!6 +ACT 16:24!7 +ACT 16:24!8 +ACT 16:24!9 +ACT 16:24!10 +ACT 16:24!11 +ACT 16:24!12 +ACT 16:24!13 +ACT 16:24!15 +ACT 16:24!14 +ACT 16:24!16 +ACT 16:24!17 +ACT 16:24!18 +ACT 16:25!2 +ACT 16:25!1 +ACT 16:25!3 +ACT 16:25!4 +ACT 16:25!5 +ACT 16:25!6 +ACT 16:25!7 +ACT 16:25!8 +ACT 16:25!9 +ACT 16:25!10 +ACT 16:25!11 +ACT 16:25!13 +ACT 16:25!12 +ACT 16:25!14 +ACT 16:25!15 +ACT 16:25!16 +ACT 16:26!2 +ACT 16:26!1 +ACT 16:26!3 +ACT 16:26!5 +ACT 16:26!4 +ACT 16:26!6 +ACT 16:26!7 +ACT 16:26!8 +ACT 16:26!9 +ACT 16:26!10 +ACT 16:26!11 +ACT 16:26!13 +ACT 16:26!12 +ACT 16:26!14 +ACT 16:26!15 +ACT 16:26!16 +ACT 16:26!17 +ACT 16:26!18 +ACT 16:26!19 +ACT 16:26!20 +ACT 16:26!21 +ACT 16:26!22 +ACT 16:27!2 +ACT 16:27!4 +ACT 16:27!5 +ACT 16:27!1 +ACT 16:27!3 +ACT 16:27!6 +ACT 16:27!7 +ACT 16:27!8 +ACT 16:27!9 +ACT 16:27!10 +ACT 16:27!11 +ACT 16:27!12 +ACT 16:27!13 +ACT 16:27!14 +ACT 16:27!15 +ACT 16:27!16 +ACT 16:27!17 +ACT 16:27!18 +ACT 16:27!19 +ACT 16:27!20 +ACT 16:27!21 +ACT 16:27!22 +ACT 16:28!2 +ACT 16:28!1 +ACT 16:28!3 +ACT 16:28!4 +ACT 16:28!5 +ACT 16:28!6 +ACT 16:28!7 +ACT 16:28!10 +ACT 16:28!8 +ACT 16:28!9 +ACT 16:28!12 +ACT 16:28!11 +ACT 16:28!13 +ACT 16:28!14 +ACT 16:29!2 +ACT 16:29!1 +ACT 16:29!3 +ACT 16:29!4 +ACT 16:29!5 +ACT 16:29!6 +ACT 16:29!7 +ACT 16:29!8 +ACT 16:29!9 +ACT 16:29!10 +ACT 16:29!11 +ACT 16:29!12 +ACT 16:30!1 +ACT 16:30!2 +ACT 16:30!3 +ACT 16:30!4 +ACT 16:30!5 +ACT 16:30!6 +ACT 16:30!7 +ACT 16:30!8 +ACT 16:30!10 +ACT 16:30!9 +ACT 16:30!11 +ACT 16:30!12 +ACT 16:31!2 +ACT 16:31!1 +ACT 16:31!3 +ACT 16:31!4 +ACT 16:31!5 +ACT 16:31!6 +ACT 16:31!7 +ACT 16:31!8 +ACT 16:31!9 +ACT 16:31!10 +ACT 16:31!11 +ACT 16:31!12 +ACT 16:31!13 +ACT 16:31!14 +ACT 16:31!15 +ACT 16:32!1 +ACT 16:32!2 +ACT 16:32!3 +ACT 16:32!4 +ACT 16:32!5 +ACT 16:32!6 +ACT 16:32!7 +ACT 16:32!8 +ACT 16:32!9 +ACT 16:32!10 +ACT 16:32!11 +ACT 16:32!12 +ACT 16:32!13 +ACT 16:32!14 +ACT 16:33!1 +ACT 16:33!2 +ACT 16:33!3 +ACT 16:33!4 +ACT 16:33!5 +ACT 16:33!6 +ACT 16:33!7 +ACT 16:33!8 +ACT 16:33!9 +ACT 16:33!10 +ACT 16:33!11 +ACT 16:33!12 +ACT 16:33!13 +ACT 16:33!14 +ACT 16:33!15 +ACT 16:33!16 +ACT 16:33!17 +ACT 16:33!18 +ACT 16:33!19 +ACT 16:33!20 +ACT 16:33!21 +ACT 16:34!2 +ACT 16:34!1 +ACT 16:34!3 +ACT 16:34!4 +ACT 16:34!5 +ACT 16:34!6 +ACT 16:34!7 +ACT 16:34!8 +ACT 16:34!9 +ACT 16:34!10 +ACT 16:34!11 +ACT 16:34!12 +ACT 16:34!13 +ACT 16:34!14 +ACT 16:35!2 +ACT 16:35!1 +ACT 16:35!3 +ACT 16:35!4 +ACT 16:35!5 +ACT 16:35!6 +ACT 16:35!7 +ACT 16:35!8 +ACT 16:35!9 +ACT 16:35!10 +ACT 16:35!11 +ACT 16:35!12 +ACT 16:35!13 +ACT 16:36!2 +ACT 16:36!1 +ACT 16:36!3 +ACT 16:36!4 +ACT 16:36!5 +ACT 16:36!6 +ACT 16:36!7 +ACT 16:36!8 +ACT 16:36!9 +ACT 16:36!10 +ACT 16:36!11 +ACT 16:36!12 +ACT 16:36!13 +ACT 16:36!14 +ACT 16:36!15 +ACT 16:36!16 +ACT 16:36!18 +ACT 16:36!17 +ACT 16:36!19 +ACT 16:36!20 +ACT 16:36!21 +ACT 16:36!22 +ACT 16:37!2 +ACT 16:37!1 +ACT 16:37!3 +ACT 16:37!4 +ACT 16:37!5 +ACT 16:37!6 +ACT 16:37!7 +ACT 16:37!8 +ACT 16:37!9 +ACT 16:37!10 +ACT 16:37!11 +ACT 16:37!12 +ACT 16:37!13 +ACT 16:37!14 +ACT 16:37!15 +ACT 16:37!16 +ACT 16:37!17 +ACT 16:37!18 +ACT 16:37!19 +ACT 16:37!20 +ACT 16:37!21 +ACT 16:37!23 +ACT 16:37!22 +ACT 16:37!24 +ACT 16:37!25 +ACT 16:37!26 +ACT 16:37!27 +ACT 16:37!28 +ACT 16:38!2 +ACT 16:38!1 +ACT 16:38!3 +ACT 16:38!4 +ACT 16:38!5 +ACT 16:38!6 +ACT 16:38!7 +ACT 16:38!8 +ACT 16:38!9 +ACT 16:38!11 +ACT 16:38!10 +ACT 16:38!12 +ACT 16:38!13 +ACT 16:38!14 +ACT 16:38!15 +ACT 16:39!1 +ACT 16:39!2 +ACT 16:39!3 +ACT 16:39!4 +ACT 16:39!5 +ACT 16:39!6 +ACT 16:39!7 +ACT 16:39!8 +ACT 16:39!9 +ACT 16:39!10 +ACT 16:39!11 +ACT 16:40!2 +ACT 16:40!1 +ACT 16:40!3 +ACT 16:40!4 +ACT 16:40!5 +ACT 16:40!6 +ACT 16:40!7 +ACT 16:40!8 +ACT 16:40!9 +ACT 16:40!10 +ACT 16:40!11 +ACT 16:40!12 +ACT 16:40!13 +ACT 16:40!14 +ACT 16:40!15 +ACT 16:40!16 +ACT 17:1!2 +ACT 17:1!1 +ACT 17:1!3 +ACT 17:1!4 +ACT 17:1!5 +ACT 17:1!6 +ACT 17:1!7 +ACT 17:1!8 +ACT 17:1!9 +ACT 17:1!10 +ACT 17:1!11 +ACT 17:1!12 +ACT 17:1!13 +ACT 17:1!14 +ACT 17:1!15 +ACT 17:2!2 +ACT 17:2!1 +ACT 17:2!3 +ACT 17:2!4 +ACT 17:2!5 +ACT 17:2!6 +ACT 17:2!7 +ACT 17:2!8 +ACT 17:2!9 +ACT 17:2!10 +ACT 17:2!11 +ACT 17:2!12 +ACT 17:2!13 +ACT 17:2!14 +ACT 17:2!15 +ACT 17:2!16 +ACT 17:2!17 +ACT 17:2!18 +ACT 17:3!1 +ACT 17:3!2 +ACT 17:3!3 +ACT 17:3!4 +ACT 17:3!7 +ACT 17:3!5 +ACT 17:3!6 +ACT 17:3!8 +ACT 17:3!9 +ACT 17:3!10 +ACT 17:3!11 +ACT 17:3!12 +ACT 17:3!13 +ACT 17:3!14 +ACT 17:3!15 +ACT 17:3!16 +ACT 17:3!17 +ACT 17:3!18 +ACT 17:3!19 +ACT 17:3!20 +ACT 17:3!21 +ACT 17:3!22 +ACT 17:3!23 +ACT 17:3!24 +ACT 17:4!1 +ACT 17:4!2 +ACT 17:4!3 +ACT 17:4!4 +ACT 17:4!5 +ACT 17:4!6 +ACT 17:4!7 +ACT 17:4!8 +ACT 17:4!9 +ACT 17:4!10 +ACT 17:4!11 +ACT 17:4!12 +ACT 17:4!14 +ACT 17:4!13 +ACT 17:4!15 +ACT 17:4!16 +ACT 17:4!17 +ACT 17:4!18 +ACT 17:4!20 +ACT 17:4!19 +ACT 17:4!21 +ACT 17:4!22 +ACT 17:4!23 +ACT 17:4!24 +ACT 17:5!2 +ACT 17:5!3 +ACT 17:5!4 +ACT 17:5!1 +ACT 17:5!5 +ACT 17:5!6 +ACT 17:5!7 +ACT 17:5!8 +ACT 17:5!9 +ACT 17:5!10 +ACT 17:5!11 +ACT 17:5!12 +ACT 17:5!13 +ACT 17:5!14 +ACT 17:5!15 +ACT 17:5!16 +ACT 17:5!17 +ACT 17:5!18 +ACT 17:5!19 +ACT 17:5!20 +ACT 17:5!21 +ACT 17:5!22 +ACT 17:5!23 +ACT 17:5!24 +ACT 17:5!25 +ACT 17:5!26 +ACT 17:5!27 +ACT 17:6!3 +ACT 17:6!1 +ACT 17:6!2 +ACT 17:6!4 +ACT 17:6!5 +ACT 17:6!6 +ACT 17:6!7 +ACT 17:6!8 +ACT 17:6!9 +ACT 17:6!10 +ACT 17:6!11 +ACT 17:6!12 +ACT 17:6!13 +ACT 17:6!14 +ACT 17:6!15 +ACT 17:6!16 +ACT 17:6!17 +ACT 17:6!18 +ACT 17:6!19 +ACT 17:6!20 +ACT 17:6!21 +ACT 17:6!22 +ACT 17:7!1 +ACT 17:7!2 +ACT 17:7!3 +ACT 17:7!4 +ACT 17:7!5 +ACT 17:7!6 +ACT 17:7!7 +ACT 17:7!8 +ACT 17:7!9 +ACT 17:7!10 +ACT 17:7!11 +ACT 17:7!12 +ACT 17:7!13 +ACT 17:7!15 +ACT 17:7!16 +ACT 17:7!14 +ACT 17:8!2 +ACT 17:8!1 +ACT 17:8!3 +ACT 17:8!4 +ACT 17:8!5 +ACT 17:8!6 +ACT 17:8!7 +ACT 17:8!8 +ACT 17:8!9 +ACT 17:9!1 +ACT 17:9!2 +ACT 17:9!3 +ACT 17:9!4 +ACT 17:9!5 +ACT 17:9!6 +ACT 17:9!7 +ACT 17:9!8 +ACT 17:9!9 +ACT 17:9!10 +ACT 17:9!11 +ACT 17:9!12 +ACT 17:10!2 +ACT 17:10!1 +ACT 17:10!3 +ACT 17:10!4 +ACT 17:10!5 +ACT 17:10!6 +ACT 17:10!7 +ACT 17:10!9 +ACT 17:10!8 +ACT 17:10!10 +ACT 17:10!11 +ACT 17:10!12 +ACT 17:10!13 +ACT 17:10!14 +ACT 17:10!15 +ACT 17:10!16 +ACT 17:10!17 +ACT 17:10!18 +ACT 17:10!19 +ACT 17:10!20 +ACT 17:10!21 +ACT 17:10!22 +ACT 17:10!23 +ACT 17:11!2 +ACT 17:11!1 +ACT 17:11!3 +ACT 17:11!4 +ACT 17:11!5 +ACT 17:11!6 +ACT 17:11!7 +ACT 17:11!8 +ACT 17:11!9 +ACT 17:11!10 +ACT 17:11!11 +ACT 17:11!12 +ACT 17:11!13 +ACT 17:11!14 +ACT 17:11!15 +ACT 17:11!16 +ACT 17:11!17 +ACT 17:11!18 +ACT 17:11!19 +ACT 17:11!20 +ACT 17:11!21 +ACT 17:11!22 +ACT 17:11!23 +ACT 17:11!24 +ACT 17:12!2 +ACT 17:12!3 +ACT 17:12!1 +ACT 17:12!4 +ACT 17:12!5 +ACT 17:12!6 +ACT 17:12!7 +ACT 17:12!8 +ACT 17:12!9 +ACT 17:12!10 +ACT 17:12!11 +ACT 17:12!12 +ACT 17:12!13 +ACT 17:12!14 +ACT 17:12!15 +ACT 17:12!16 +ACT 17:13!2 +ACT 17:13!1 +ACT 17:13!3 +ACT 17:13!4 +ACT 17:13!5 +ACT 17:13!6 +ACT 17:13!7 +ACT 17:13!8 +ACT 17:13!9 +ACT 17:13!10 +ACT 17:13!11 +ACT 17:13!12 +ACT 17:13!13 +ACT 17:13!14 +ACT 17:13!15 +ACT 17:13!16 +ACT 17:13!17 +ACT 17:13!18 +ACT 17:13!19 +ACT 17:13!20 +ACT 17:13!21 +ACT 17:13!22 +ACT 17:13!23 +ACT 17:13!24 +ACT 17:13!25 +ACT 17:13!26 +ACT 17:13!27 +ACT 17:13!28 +ACT 17:14!2 +ACT 17:14!1 +ACT 17:14!3 +ACT 17:14!4 +ACT 17:14!5 +ACT 17:14!6 +ACT 17:14!7 +ACT 17:14!8 +ACT 17:14!9 +ACT 17:14!10 +ACT 17:14!11 +ACT 17:14!12 +ACT 17:14!13 +ACT 17:14!15 +ACT 17:14!14 +ACT 17:14!17 +ACT 17:14!16 +ACT 17:14!18 +ACT 17:14!19 +ACT 17:14!20 +ACT 17:14!21 +ACT 17:14!22 +ACT 17:15!2 +ACT 17:15!1 +ACT 17:15!3 +ACT 17:15!4 +ACT 17:15!5 +ACT 17:15!6 +ACT 17:15!7 +ACT 17:15!8 +ACT 17:15!9 +ACT 17:15!10 +ACT 17:15!11 +ACT 17:15!12 +ACT 17:15!13 +ACT 17:15!14 +ACT 17:15!15 +ACT 17:15!16 +ACT 17:15!17 +ACT 17:15!18 +ACT 17:15!19 +ACT 17:15!20 +ACT 17:15!21 +ACT 17:15!22 +ACT 17:15!23 +ACT 17:15!24 +ACT 17:16!2 +ACT 17:16!1 +ACT 17:16!3 +ACT 17:16!4 +ACT 17:16!5 +ACT 17:16!6 +ACT 17:16!7 +ACT 17:16!8 +ACT 17:16!9 +ACT 17:16!10 +ACT 17:16!11 +ACT 17:16!12 +ACT 17:16!13 +ACT 17:16!14 +ACT 17:16!15 +ACT 17:16!16 +ACT 17:16!17 +ACT 17:16!18 +ACT 17:16!19 +ACT 17:17!3 +ACT 17:17!2 +ACT 17:17!1 +ACT 17:17!4 +ACT 17:17!5 +ACT 17:17!6 +ACT 17:17!7 +ACT 17:17!8 +ACT 17:17!9 +ACT 17:17!10 +ACT 17:17!11 +ACT 17:17!12 +ACT 17:17!13 +ACT 17:17!14 +ACT 17:17!15 +ACT 17:17!16 +ACT 17:17!17 +ACT 17:17!18 +ACT 17:17!19 +ACT 17:17!20 +ACT 17:17!21 +ACT 17:18!2 +ACT 17:18!1 +ACT 17:18!3 +ACT 17:18!4 +ACT 17:18!5 +ACT 17:18!6 +ACT 17:18!7 +ACT 17:18!8 +ACT 17:18!9 +ACT 17:18!10 +ACT 17:18!11 +ACT 17:18!12 +ACT 17:18!13 +ACT 17:18!15 +ACT 17:18!16 +ACT 17:18!17 +ACT 17:18!18 +ACT 17:18!19 +ACT 17:18!14 +ACT 17:18!20 +ACT 17:18!22 +ACT 17:18!21 +ACT 17:18!25 +ACT 17:18!23 +ACT 17:18!24 +ACT 17:18!26 +ACT 17:18!27 +ACT 17:18!28 +ACT 17:18!29 +ACT 17:18!30 +ACT 17:18!31 +ACT 17:18!32 +ACT 17:18!33 +ACT 17:18!34 +ACT 17:19!2 +ACT 17:19!1 +ACT 17:19!3 +ACT 17:19!4 +ACT 17:19!5 +ACT 17:19!6 +ACT 17:19!7 +ACT 17:19!8 +ACT 17:19!9 +ACT 17:19!10 +ACT 17:19!11 +ACT 17:19!12 +ACT 17:19!13 +ACT 17:19!14 +ACT 17:19!15 +ACT 17:19!16 +ACT 17:19!17 +ACT 17:19!18 +ACT 17:19!19 +ACT 17:19!20 +ACT 17:20!2 +ACT 17:20!1 +ACT 17:20!3 +ACT 17:20!4 +ACT 17:20!5 +ACT 17:20!6 +ACT 17:20!7 +ACT 17:20!8 +ACT 17:20!10 +ACT 17:20!9 +ACT 17:20!11 +ACT 17:20!12 +ACT 17:20!15 +ACT 17:20!13 +ACT 17:20!14 +ACT 17:21!2 +ACT 17:21!1 +ACT 17:21!3 +ACT 17:21!4 +ACT 17:21!5 +ACT 17:21!6 +ACT 17:21!7 +ACT 17:21!8 +ACT 17:21!9 +ACT 17:21!10 +ACT 17:21!11 +ACT 17:21!12 +ACT 17:21!13 +ACT 17:21!14 +ACT 17:21!15 +ACT 17:21!16 +ACT 17:21!17 +ACT 17:21!18 +ACT 17:22!2 +ACT 17:22!1 +ACT 17:22!3 +ACT 17:22!4 +ACT 17:22!5 +ACT 17:22!6 +ACT 17:22!7 +ACT 17:22!8 +ACT 17:22!9 +ACT 17:22!10 +ACT 17:22!11 +ACT 17:22!12 +ACT 17:22!13 +ACT 17:22!14 +ACT 17:22!15 +ACT 17:22!16 +ACT 17:22!17 +ACT 17:23!2 +ACT 17:23!1 +ACT 17:23!3 +ACT 17:23!4 +ACT 17:23!5 +ACT 17:23!6 +ACT 17:23!7 +ACT 17:23!8 +ACT 17:23!9 +ACT 17:23!10 +ACT 17:23!11 +ACT 17:23!12 +ACT 17:23!13 +ACT 17:23!14 +ACT 17:23!15 +ACT 17:23!17 +ACT 17:23!16 +ACT 17:23!18 +ACT 17:23!19 +ACT 17:23!20 +ACT 17:23!21 +ACT 17:23!22 +ACT 17:23!23 +ACT 17:24!1 +ACT 17:24!2 +ACT 17:24!3 +ACT 17:24!4 +ACT 17:24!5 +ACT 17:24!6 +ACT 17:24!7 +ACT 17:24!8 +ACT 17:24!9 +ACT 17:24!10 +ACT 17:24!11 +ACT 17:24!12 +ACT 17:24!13 +ACT 17:24!14 +ACT 17:24!15 +ACT 17:24!17 +ACT 17:24!16 +ACT 17:24!18 +ACT 17:24!19 +ACT 17:24!20 +ACT 17:24!21 +ACT 17:24!22 +ACT 17:25!1 +ACT 17:25!2 +ACT 17:25!3 +ACT 17:25!4 +ACT 17:25!5 +ACT 17:25!6 +ACT 17:25!7 +ACT 17:25!8 +ACT 17:25!9 +ACT 17:25!10 +ACT 17:25!11 +ACT 17:25!12 +ACT 17:25!13 +ACT 17:25!14 +ACT 17:25!15 +ACT 17:25!16 +ACT 17:26!2 +ACT 17:26!1 +ACT 17:26!3 +ACT 17:26!4 +ACT 17:26!5 +ACT 17:26!6 +ACT 17:26!7 +ACT 17:26!8 +ACT 17:26!9 +ACT 17:26!10 +ACT 17:26!11 +ACT 17:26!12 +ACT 17:26!13 +ACT 17:26!14 +ACT 17:26!15 +ACT 17:26!16 +ACT 17:26!17 +ACT 17:26!18 +ACT 17:26!19 +ACT 17:26!20 +ACT 17:26!21 +ACT 17:26!22 +ACT 17:27!1 +ACT 17:27!2 +ACT 17:27!3 +ACT 17:27!4 +ACT 17:27!5 +ACT 17:27!6 +ACT 17:27!7 +ACT 17:27!8 +ACT 17:27!9 +ACT 17:27!10 +ACT 17:27!12 +ACT 17:27!11 +ACT 17:27!13 +ACT 17:27!14 +ACT 17:27!15 +ACT 17:27!16 +ACT 17:27!17 +ACT 17:27!18 +ACT 17:27!19 +ACT 17:28!3 +ACT 17:28!1 +ACT 17:28!2 +ACT 17:28!4 +ACT 17:28!5 +ACT 17:28!6 +ACT 17:28!7 +ACT 17:28!8 +ACT 17:28!9 +ACT 17:28!10 +ACT 17:28!11 +ACT 17:28!12 +ACT 17:28!13 +ACT 17:28!14 +ACT 17:28!15 +ACT 17:28!16 +ACT 17:28!18 +ACT 17:28!17 +ACT 17:28!19 +ACT 17:28!20 +ACT 17:28!21 +ACT 17:29!2 +ACT 17:29!3 +ACT 17:29!1 +ACT 17:29!4 +ACT 17:29!5 +ACT 17:29!6 +ACT 17:29!7 +ACT 17:29!8 +ACT 17:29!9 +ACT 17:29!10 +ACT 17:29!11 +ACT 17:29!12 +ACT 17:29!13 +ACT 17:29!14 +ACT 17:29!15 +ACT 17:29!16 +ACT 17:29!17 +ACT 17:29!18 +ACT 17:29!19 +ACT 17:29!20 +ACT 17:29!21 +ACT 17:29!22 +ACT 17:30!2 +ACT 17:30!3 +ACT 17:30!1 +ACT 17:30!4 +ACT 17:30!5 +ACT 17:30!6 +ACT 17:30!7 +ACT 17:30!8 +ACT 17:30!9 +ACT 17:30!10 +ACT 17:30!11 +ACT 17:30!12 +ACT 17:30!13 +ACT 17:30!14 +ACT 17:30!15 +ACT 17:30!16 +ACT 17:30!17 +ACT 17:31!1 +ACT 17:31!2 +ACT 17:31!3 +ACT 17:31!4 +ACT 17:31!5 +ACT 17:31!6 +ACT 17:31!7 +ACT 17:31!8 +ACT 17:31!9 +ACT 17:31!10 +ACT 17:31!11 +ACT 17:31!12 +ACT 17:31!13 +ACT 17:31!14 +ACT 17:31!15 +ACT 17:31!16 +ACT 17:31!17 +ACT 17:31!18 +ACT 17:31!19 +ACT 17:31!20 +ACT 17:31!21 +ACT 17:31!22 +ACT 17:32!2 +ACT 17:32!1 +ACT 17:32!3 +ACT 17:32!4 +ACT 17:32!6 +ACT 17:32!5 +ACT 17:32!7 +ACT 17:32!9 +ACT 17:32!8 +ACT 17:32!10 +ACT 17:32!11 +ACT 17:32!12 +ACT 17:32!13 +ACT 17:32!14 +ACT 17:32!15 +ACT 17:32!16 +ACT 17:33!1 +ACT 17:33!2 +ACT 17:33!3 +ACT 17:33!4 +ACT 17:33!5 +ACT 17:33!6 +ACT 17:33!7 +ACT 17:34!2 +ACT 17:34!1 +ACT 17:34!3 +ACT 17:34!4 +ACT 17:34!5 +ACT 17:34!6 +ACT 17:34!7 +ACT 17:34!8 +ACT 17:34!9 +ACT 17:34!10 +ACT 17:34!11 +ACT 17:34!12 +ACT 17:34!13 +ACT 17:34!14 +ACT 17:34!15 +ACT 17:34!16 +ACT 17:34!17 +ACT 17:34!18 +ACT 17:34!19 +ACT 17:34!20 +ACT 18:1!1 +ACT 18:1!2 +ACT 18:1!3 +ACT 18:1!4 +ACT 18:1!5 +ACT 18:1!6 +ACT 18:1!7 +ACT 18:1!8 +ACT 18:1!9 +ACT 18:2!1 +ACT 18:2!2 +ACT 18:2!3 +ACT 18:2!4 +ACT 18:2!5 +ACT 18:2!6 +ACT 18:2!7 +ACT 18:2!8 +ACT 18:2!9 +ACT 18:2!10 +ACT 18:2!11 +ACT 18:2!12 +ACT 18:2!13 +ACT 18:2!14 +ACT 18:2!15 +ACT 18:2!16 +ACT 18:2!17 +ACT 18:2!18 +ACT 18:2!19 +ACT 18:2!20 +ACT 18:2!21 +ACT 18:2!22 +ACT 18:2!23 +ACT 18:2!24 +ACT 18:2!25 +ACT 18:2!26 +ACT 18:2!27 +ACT 18:2!28 +ACT 18:2!29 +ACT 18:2!30 +ACT 18:2!31 +ACT 18:3!1 +ACT 18:3!2 +ACT 18:3!3 +ACT 18:3!4 +ACT 18:3!5 +ACT 18:3!6 +ACT 18:3!7 +ACT 18:3!8 +ACT 18:3!9 +ACT 18:3!10 +ACT 18:3!12 +ACT 18:3!11 +ACT 18:3!13 +ACT 18:3!14 +ACT 18:3!15 +ACT 18:4!2 +ACT 18:4!1 +ACT 18:4!3 +ACT 18:4!4 +ACT 18:4!5 +ACT 18:4!6 +ACT 18:4!7 +ACT 18:4!8 +ACT 18:4!9 +ACT 18:4!10 +ACT 18:4!11 +ACT 18:4!12 +ACT 18:4!13 +ACT 18:5!2 +ACT 18:5!1 +ACT 18:5!3 +ACT 18:5!4 +ACT 18:5!5 +ACT 18:5!6 +ACT 18:5!8 +ACT 18:5!7 +ACT 18:5!9 +ACT 18:5!10 +ACT 18:5!11 +ACT 18:5!12 +ACT 18:5!13 +ACT 18:5!14 +ACT 18:5!15 +ACT 18:5!16 +ACT 18:5!17 +ACT 18:5!18 +ACT 18:5!19 +ACT 18:5!20 +ACT 18:5!21 +ACT 18:5!22 +ACT 18:5!23 +ACT 18:5!24 +ACT 18:6!2 +ACT 18:6!1 +ACT 18:6!3 +ACT 18:6!4 +ACT 18:6!5 +ACT 18:6!6 +ACT 18:6!7 +ACT 18:6!8 +ACT 18:6!9 +ACT 18:6!10 +ACT 18:6!11 +ACT 18:6!12 +ACT 18:6!13 +ACT 18:6!14 +ACT 18:6!15 +ACT 18:6!16 +ACT 18:6!17 +ACT 18:6!18 +ACT 18:6!19 +ACT 18:6!20 +ACT 18:6!21 +ACT 18:6!22 +ACT 18:6!23 +ACT 18:6!24 +ACT 18:6!25 +ACT 18:6!26 +ACT 18:6!27 +ACT 18:7!1 +ACT 18:7!2 +ACT 18:7!3 +ACT 18:7!4 +ACT 18:7!5 +ACT 18:7!6 +ACT 18:7!7 +ACT 18:7!8 +ACT 18:7!9 +ACT 18:7!10 +ACT 18:7!11 +ACT 18:7!12 +ACT 18:7!13 +ACT 18:7!14 +ACT 18:7!15 +ACT 18:7!16 +ACT 18:7!17 +ACT 18:7!18 +ACT 18:7!19 +ACT 18:7!20 +ACT 18:8!2 +ACT 18:8!1 +ACT 18:8!3 +ACT 18:8!4 +ACT 18:8!5 +ACT 18:8!6 +ACT 18:8!7 +ACT 18:8!8 +ACT 18:8!9 +ACT 18:8!10 +ACT 18:8!11 +ACT 18:8!12 +ACT 18:8!13 +ACT 18:8!14 +ACT 18:8!15 +ACT 18:8!16 +ACT 18:8!17 +ACT 18:8!18 +ACT 18:8!19 +ACT 18:8!20 +ACT 18:9!2 +ACT 18:9!1 +ACT 18:9!3 +ACT 18:9!4 +ACT 18:9!5 +ACT 18:9!6 +ACT 18:9!7 +ACT 18:9!8 +ACT 18:9!9 +ACT 18:9!10 +ACT 18:9!11 +ACT 18:9!12 +ACT 18:9!13 +ACT 18:9!14 +ACT 18:9!15 +ACT 18:9!16 +ACT 18:9!17 +ACT 18:10!1 +ACT 18:10!2 +ACT 18:10!3 +ACT 18:10!4 +ACT 18:10!5 +ACT 18:10!6 +ACT 18:10!7 +ACT 18:10!8 +ACT 18:10!9 +ACT 18:10!10 +ACT 18:10!11 +ACT 18:10!12 +ACT 18:10!13 +ACT 18:10!14 +ACT 18:10!17 +ACT 18:10!15 +ACT 18:10!16 +ACT 18:10!18 +ACT 18:10!19 +ACT 18:10!20 +ACT 18:10!21 +ACT 18:11!2 +ACT 18:11!1 +ACT 18:11!3 +ACT 18:11!4 +ACT 18:11!5 +ACT 18:11!6 +ACT 18:11!7 +ACT 18:11!8 +ACT 18:11!9 +ACT 18:11!10 +ACT 18:11!11 +ACT 18:11!12 +ACT 18:11!13 +ACT 18:12!2 +ACT 18:12!1 +ACT 18:12!4 +ACT 18:12!3 +ACT 18:12!5 +ACT 18:12!6 +ACT 18:12!7 +ACT 18:12!8 +ACT 18:12!9 +ACT 18:12!10 +ACT 18:12!11 +ACT 18:12!12 +ACT 18:12!13 +ACT 18:12!14 +ACT 18:12!15 +ACT 18:12!16 +ACT 18:12!17 +ACT 18:12!18 +ACT 18:13!1 +ACT 18:13!2 +ACT 18:13!3 +ACT 18:13!4 +ACT 18:13!5 +ACT 18:13!6 +ACT 18:13!7 +ACT 18:13!8 +ACT 18:13!9 +ACT 18:13!10 +ACT 18:13!11 +ACT 18:13!12 +ACT 18:14!2 +ACT 18:14!1 +ACT 18:14!3 +ACT 18:14!4 +ACT 18:14!5 +ACT 18:14!6 +ACT 18:14!7 +ACT 18:14!8 +ACT 18:14!9 +ACT 18:14!10 +ACT 18:14!11 +ACT 18:14!12 +ACT 18:14!13 +ACT 18:14!15 +ACT 18:14!14 +ACT 18:14!16 +ACT 18:14!17 +ACT 18:14!18 +ACT 18:14!19 +ACT 18:14!20 +ACT 18:14!21 +ACT 18:14!22 +ACT 18:14!23 +ACT 18:14!26 +ACT 18:14!24 +ACT 18:14!25 +ACT 18:14!27 +ACT 18:14!28 +ACT 18:15!2 +ACT 18:15!1 +ACT 18:15!4 +ACT 18:15!3 +ACT 18:15!5 +ACT 18:15!6 +ACT 18:15!7 +ACT 18:15!8 +ACT 18:15!9 +ACT 18:15!10 +ACT 18:15!11 +ACT 18:15!12 +ACT 18:15!13 +ACT 18:15!14 +ACT 18:15!15 +ACT 18:15!19 +ACT 18:15!20 +ACT 18:15!17 +ACT 18:15!16 +ACT 18:15!18 +ACT 18:15!21 +ACT 18:16!1 +ACT 18:16!2 +ACT 18:16!3 +ACT 18:16!4 +ACT 18:16!5 +ACT 18:16!6 +ACT 18:17!2 +ACT 18:17!3 +ACT 18:17!1 +ACT 18:17!4 +ACT 18:17!5 +ACT 18:17!6 +ACT 18:17!7 +ACT 18:17!8 +ACT 18:17!9 +ACT 18:17!10 +ACT 18:17!11 +ACT 18:17!12 +ACT 18:17!13 +ACT 18:17!14 +ACT 18:17!15 +ACT 18:17!16 +ACT 18:18!2 +ACT 18:18!1 +ACT 18:18!3 +ACT 18:18!4 +ACT 18:18!5 +ACT 18:18!6 +ACT 18:18!7 +ACT 18:18!8 +ACT 18:18!9 +ACT 18:18!10 +ACT 18:18!11 +ACT 18:18!12 +ACT 18:18!13 +ACT 18:18!14 +ACT 18:18!15 +ACT 18:18!16 +ACT 18:18!17 +ACT 18:18!18 +ACT 18:18!19 +ACT 18:18!20 +ACT 18:18!21 +ACT 18:18!22 +ACT 18:18!23 +ACT 18:18!24 +ACT 18:18!25 +ACT 18:18!27 +ACT 18:18!26 +ACT 18:18!28 +ACT 18:19!2 +ACT 18:19!1 +ACT 18:19!3 +ACT 18:19!4 +ACT 18:19!5 +ACT 18:19!6 +ACT 18:19!7 +ACT 18:19!9 +ACT 18:19!8 +ACT 18:19!10 +ACT 18:19!11 +ACT 18:19!12 +ACT 18:19!13 +ACT 18:19!14 +ACT 18:19!15 +ACT 18:19!16 +ACT 18:20!2 +ACT 18:20!1 +ACT 18:20!3 +ACT 18:20!4 +ACT 18:20!5 +ACT 18:20!6 +ACT 18:20!7 +ACT 18:20!8 +ACT 18:20!9 +ACT 18:21!1 +ACT 18:21!2 +ACT 18:21!3 +ACT 18:21!4 +ACT 18:21!5 +ACT 18:21!6 +ACT 18:21!7 +ACT 18:21!8 +ACT 18:21!9 +ACT 18:21!10 +ACT 18:21!11 +ACT 18:21!12 +ACT 18:21!13 +ACT 18:21!14 +ACT 18:21!15 +ACT 18:22!1 +ACT 18:22!2 +ACT 18:22!3 +ACT 18:22!4 +ACT 18:22!5 +ACT 18:22!6 +ACT 18:22!7 +ACT 18:22!8 +ACT 18:22!9 +ACT 18:22!10 +ACT 18:22!11 +ACT 18:22!12 +ACT 18:23!1 +ACT 18:23!2 +ACT 18:23!3 +ACT 18:23!4 +ACT 18:23!5 +ACT 18:23!6 +ACT 18:23!7 +ACT 18:23!8 +ACT 18:23!9 +ACT 18:23!10 +ACT 18:23!11 +ACT 18:23!12 +ACT 18:23!13 +ACT 18:23!14 +ACT 18:23!15 +ACT 18:23!16 +ACT 18:24!2 +ACT 18:24!1 +ACT 18:24!3 +ACT 18:24!4 +ACT 18:24!5 +ACT 18:24!6 +ACT 18:24!7 +ACT 18:24!8 +ACT 18:24!9 +ACT 18:24!10 +ACT 18:24!14 +ACT 18:24!15 +ACT 18:24!16 +ACT 18:24!17 +ACT 18:24!18 +ACT 18:24!11 +ACT 18:24!12 +ACT 18:24!13 +ACT 18:25!1 +ACT 18:25!2 +ACT 18:25!3 +ACT 18:25!4 +ACT 18:25!5 +ACT 18:25!6 +ACT 18:25!7 +ACT 18:25!8 +ACT 18:25!9 +ACT 18:25!10 +ACT 18:25!11 +ACT 18:25!12 +ACT 18:25!13 +ACT 18:25!14 +ACT 18:25!15 +ACT 18:25!16 +ACT 18:25!17 +ACT 18:25!18 +ACT 18:25!19 +ACT 18:25!20 +ACT 18:25!21 +ACT 18:25!22 +ACT 18:25!23 +ACT 18:25!24 +ACT 18:26!2 +ACT 18:26!1 +ACT 18:26!3 +ACT 18:26!4 +ACT 18:26!5 +ACT 18:26!6 +ACT 18:26!7 +ACT 18:26!9 +ACT 18:26!8 +ACT 18:26!10 +ACT 18:26!11 +ACT 18:26!12 +ACT 18:26!13 +ACT 18:26!14 +ACT 18:26!15 +ACT 18:26!16 +ACT 18:26!17 +ACT 18:26!18 +ACT 18:26!19 +ACT 18:26!20 +ACT 18:26!21 +ACT 18:26!22 +ACT 18:26!23 +ACT 18:27!2 +ACT 18:27!1 +ACT 18:27!3 +ACT 18:27!4 +ACT 18:27!5 +ACT 18:27!6 +ACT 18:27!7 +ACT 18:27!8 +ACT 18:27!9 +ACT 18:27!10 +ACT 18:27!11 +ACT 18:27!12 +ACT 18:27!13 +ACT 18:27!14 +ACT 18:27!15 +ACT 18:27!16 +ACT 18:27!17 +ACT 18:27!18 +ACT 18:27!19 +ACT 18:27!20 +ACT 18:27!21 +ACT 18:27!22 +ACT 18:27!23 +ACT 18:27!24 +ACT 18:28!2 +ACT 18:28!1 +ACT 18:28!3 +ACT 18:28!4 +ACT 18:28!5 +ACT 18:28!6 +ACT 18:28!7 +ACT 18:28!8 +ACT 18:28!9 +ACT 18:28!10 +ACT 18:28!11 +ACT 18:28!12 +ACT 18:28!13 +ACT 18:28!14 +ACT 19:1!2 +ACT 19:1!1 +ACT 19:1!3 +ACT 19:1!4 +ACT 19:1!5 +ACT 19:1!6 +ACT 19:1!7 +ACT 19:1!8 +ACT 19:1!9 +ACT 19:1!10 +ACT 19:1!11 +ACT 19:1!12 +ACT 19:1!13 +ACT 19:1!14 +ACT 19:1!15 +ACT 19:1!16 +ACT 19:1!17 +ACT 19:1!18 +ACT 19:1!19 +ACT 19:1!20 +ACT 19:1!21 +ACT 19:2!2 +ACT 19:2!1 +ACT 19:2!3 +ACT 19:2!4 +ACT 19:2!5 +ACT 19:2!6 +ACT 19:2!7 +ACT 19:2!8 +ACT 19:2!9 +ACT 19:2!11 +ACT 19:2!10 +ACT 19:2!12 +ACT 19:2!13 +ACT 19:2!14 +ACT 19:2!15 +ACT 19:2!20 +ACT 19:2!16 +ACT 19:2!17 +ACT 19:2!18 +ACT 19:2!19 +ACT 19:3!2 +ACT 19:3!1 +ACT 19:3!5 +ACT 19:3!3 +ACT 19:3!4 +ACT 19:3!6 +ACT 19:3!8 +ACT 19:3!7 +ACT 19:3!9 +ACT 19:3!10 +ACT 19:3!11 +ACT 19:3!12 +ACT 19:3!13 +ACT 19:4!2 +ACT 19:4!1 +ACT 19:4!3 +ACT 19:4!4 +ACT 19:4!5 +ACT 19:4!6 +ACT 19:4!7 +ACT 19:4!8 +ACT 19:4!9 +ACT 19:4!10 +ACT 19:4!16 +ACT 19:4!17 +ACT 19:4!11 +ACT 19:4!12 +ACT 19:4!13 +ACT 19:4!14 +ACT 19:4!15 +ACT 19:4!18 +ACT 19:4!19 +ACT 19:4!20 +ACT 19:4!21 +ACT 19:4!22 +ACT 19:5!2 +ACT 19:5!1 +ACT 19:5!3 +ACT 19:5!4 +ACT 19:5!5 +ACT 19:5!6 +ACT 19:5!7 +ACT 19:5!8 +ACT 19:5!9 +ACT 19:6!1 +ACT 19:6!2 +ACT 19:6!3 +ACT 19:6!4 +ACT 19:6!5 +ACT 19:6!6 +ACT 19:6!7 +ACT 19:6!8 +ACT 19:6!9 +ACT 19:6!10 +ACT 19:6!11 +ACT 19:6!12 +ACT 19:6!13 +ACT 19:6!15 +ACT 19:6!14 +ACT 19:6!16 +ACT 19:6!17 +ACT 19:6!18 +ACT 19:7!2 +ACT 19:7!1 +ACT 19:7!3 +ACT 19:7!4 +ACT 19:7!5 +ACT 19:7!6 +ACT 19:7!7 +ACT 19:8!2 +ACT 19:8!1 +ACT 19:8!3 +ACT 19:8!4 +ACT 19:8!5 +ACT 19:8!6 +ACT 19:8!7 +ACT 19:8!8 +ACT 19:8!9 +ACT 19:8!10 +ACT 19:8!11 +ACT 19:8!12 +ACT 19:8!13 +ACT 19:8!14 +ACT 19:8!15 +ACT 19:8!16 +ACT 19:8!17 +ACT 19:9!2 +ACT 19:9!1 +ACT 19:9!3 +ACT 19:9!4 +ACT 19:9!5 +ACT 19:9!6 +ACT 19:9!7 +ACT 19:9!8 +ACT 19:9!9 +ACT 19:9!10 +ACT 19:9!11 +ACT 19:9!12 +ACT 19:9!13 +ACT 19:9!14 +ACT 19:9!15 +ACT 19:9!16 +ACT 19:9!17 +ACT 19:9!18 +ACT 19:9!19 +ACT 19:9!20 +ACT 19:9!21 +ACT 19:9!22 +ACT 19:9!23 +ACT 19:9!24 +ACT 19:9!25 +ACT 19:10!2 +ACT 19:10!1 +ACT 19:10!3 +ACT 19:10!4 +ACT 19:10!5 +ACT 19:10!6 +ACT 19:10!7 +ACT 19:10!8 +ACT 19:10!9 +ACT 19:10!10 +ACT 19:10!11 +ACT 19:10!12 +ACT 19:10!13 +ACT 19:10!14 +ACT 19:10!15 +ACT 19:10!16 +ACT 19:10!17 +ACT 19:10!19 +ACT 19:10!18 +ACT 19:10!20 +ACT 19:10!21 +ACT 19:11!2 +ACT 19:11!1 +ACT 19:11!3 +ACT 19:11!4 +ACT 19:11!5 +ACT 19:11!6 +ACT 19:11!7 +ACT 19:11!8 +ACT 19:11!9 +ACT 19:11!10 +ACT 19:11!11 +ACT 19:11!12 +ACT 19:12!1 +ACT 19:12!2 +ACT 19:12!3 +ACT 19:12!4 +ACT 19:12!5 +ACT 19:12!6 +ACT 19:12!7 +ACT 19:12!8 +ACT 19:12!9 +ACT 19:12!10 +ACT 19:12!11 +ACT 19:12!12 +ACT 19:12!13 +ACT 19:12!14 +ACT 19:12!15 +ACT 19:12!16 +ACT 19:12!17 +ACT 19:12!18 +ACT 19:12!19 +ACT 19:12!21 +ACT 19:12!20 +ACT 19:12!22 +ACT 19:12!23 +ACT 19:12!24 +ACT 19:12!25 +ACT 19:13!2 +ACT 19:13!1 +ACT 19:13!3 +ACT 19:13!4 +ACT 19:13!5 +ACT 19:13!6 +ACT 19:13!7 +ACT 19:13!8 +ACT 19:13!9 +ACT 19:13!10 +ACT 19:13!11 +ACT 19:13!12 +ACT 19:13!13 +ACT 19:13!14 +ACT 19:13!15 +ACT 19:13!16 +ACT 19:13!17 +ACT 19:13!18 +ACT 19:13!19 +ACT 19:13!20 +ACT 19:13!21 +ACT 19:13!22 +ACT 19:13!23 +ACT 19:13!24 +ACT 19:13!25 +ACT 19:13!26 +ACT 19:13!27 +ACT 19:13!28 +ACT 19:13!29 +ACT 19:14!2 +ACT 19:14!3 +ACT 19:14!4 +ACT 19:14!5 +ACT 19:14!6 +ACT 19:14!7 +ACT 19:14!8 +ACT 19:14!9 +ACT 19:14!1 +ACT 19:14!10 +ACT 19:15!2 +ACT 19:15!1 +ACT 19:15!3 +ACT 19:15!4 +ACT 19:15!5 +ACT 19:15!6 +ACT 19:15!7 +ACT 19:15!8 +ACT 19:15!9 +ACT 19:15!10 +ACT 19:15!11 +ACT 19:15!12 +ACT 19:15!13 +ACT 19:15!14 +ACT 19:15!15 +ACT 19:15!17 +ACT 19:15!16 +ACT 19:15!18 +ACT 19:15!19 +ACT 19:16!1 +ACT 19:16!2 +ACT 19:16!5 +ACT 19:16!6 +ACT 19:16!3 +ACT 19:16!4 +ACT 19:16!7 +ACT 19:16!8 +ACT 19:16!9 +ACT 19:16!10 +ACT 19:16!11 +ACT 19:16!12 +ACT 19:16!13 +ACT 19:16!14 +ACT 19:16!15 +ACT 19:16!16 +ACT 19:16!17 +ACT 19:16!18 +ACT 19:16!19 +ACT 19:16!20 +ACT 19:16!21 +ACT 19:16!22 +ACT 19:16!23 +ACT 19:16!24 +ACT 19:16!25 +ACT 19:16!26 +ACT 19:16!27 +ACT 19:17!2 +ACT 19:17!1 +ACT 19:17!3 +ACT 19:17!4 +ACT 19:17!5 +ACT 19:17!7 +ACT 19:17!6 +ACT 19:17!8 +ACT 19:17!9 +ACT 19:17!10 +ACT 19:17!11 +ACT 19:17!12 +ACT 19:17!13 +ACT 19:17!14 +ACT 19:17!15 +ACT 19:17!16 +ACT 19:17!17 +ACT 19:17!18 +ACT 19:17!19 +ACT 19:17!20 +ACT 19:17!21 +ACT 19:17!22 +ACT 19:17!23 +ACT 19:17!24 +ACT 19:17!25 +ACT 19:17!26 +ACT 19:18!2 +ACT 19:18!1 +ACT 19:18!3 +ACT 19:18!4 +ACT 19:18!5 +ACT 19:18!6 +ACT 19:18!7 +ACT 19:18!8 +ACT 19:18!9 +ACT 19:18!10 +ACT 19:18!11 +ACT 19:19!2 +ACT 19:19!1 +ACT 19:19!3 +ACT 19:19!4 +ACT 19:19!5 +ACT 19:19!6 +ACT 19:19!7 +ACT 19:19!8 +ACT 19:19!9 +ACT 19:19!10 +ACT 19:19!11 +ACT 19:19!12 +ACT 19:19!13 +ACT 19:19!14 +ACT 19:19!15 +ACT 19:19!16 +ACT 19:19!17 +ACT 19:19!18 +ACT 19:19!19 +ACT 19:19!20 +ACT 19:19!21 +ACT 19:19!22 +ACT 19:20!1 +ACT 19:20!2 +ACT 19:20!3 +ACT 19:20!4 +ACT 19:20!5 +ACT 19:20!6 +ACT 19:20!7 +ACT 19:20!8 +ACT 19:20!9 +ACT 19:20!10 +ACT 19:21!2 +ACT 19:21!1 +ACT 19:21!3 +ACT 19:21!4 +ACT 19:21!5 +ACT 19:21!6 +ACT 19:21!7 +ACT 19:21!8 +ACT 19:21!9 +ACT 19:21!10 +ACT 19:21!11 +ACT 19:21!12 +ACT 19:21!13 +ACT 19:21!14 +ACT 19:21!15 +ACT 19:21!16 +ACT 19:21!17 +ACT 19:21!18 +ACT 19:21!19 +ACT 19:21!20 +ACT 19:21!21 +ACT 19:21!22 +ACT 19:21!23 +ACT 19:21!24 +ACT 19:21!25 +ACT 19:21!26 +ACT 19:21!27 +ACT 19:21!28 +ACT 19:21!29 +ACT 19:21!30 +ACT 19:22!2 +ACT 19:22!1 +ACT 19:22!3 +ACT 19:22!4 +ACT 19:22!5 +ACT 19:22!6 +ACT 19:22!7 +ACT 19:22!8 +ACT 19:22!9 +ACT 19:22!10 +ACT 19:22!11 +ACT 19:22!12 +ACT 19:22!13 +ACT 19:22!14 +ACT 19:22!15 +ACT 19:22!16 +ACT 19:22!17 +ACT 19:22!18 +ACT 19:23!2 +ACT 19:23!1 +ACT 19:23!3 +ACT 19:23!4 +ACT 19:23!5 +ACT 19:23!6 +ACT 19:23!7 +ACT 19:23!8 +ACT 19:23!9 +ACT 19:23!10 +ACT 19:23!11 +ACT 19:23!12 +ACT 19:24!2 +ACT 19:24!3 +ACT 19:24!1 +ACT 19:24!4 +ACT 19:24!5 +ACT 19:24!6 +ACT 19:24!7 +ACT 19:24!8 +ACT 19:24!9 +ACT 19:24!10 +ACT 19:24!11 +ACT 19:24!12 +ACT 19:24!13 +ACT 19:24!14 +ACT 19:24!15 +ACT 19:25!1 +ACT 19:25!3 +ACT 19:25!4 +ACT 19:25!5 +ACT 19:25!6 +ACT 19:25!7 +ACT 19:25!8 +ACT 19:25!2 +ACT 19:25!9 +ACT 19:25!10 +ACT 19:25!11 +ACT 19:25!12 +ACT 19:25!13 +ACT 19:25!14 +ACT 19:25!15 +ACT 19:25!16 +ACT 19:25!17 +ACT 19:25!18 +ACT 19:25!19 +ACT 19:25!20 +ACT 19:26!1 +ACT 19:26!2 +ACT 19:26!3 +ACT 19:26!4 +ACT 19:26!5 +ACT 19:26!6 +ACT 19:26!7 +ACT 19:26!8 +ACT 19:26!9 +ACT 19:26!10 +ACT 19:26!11 +ACT 19:26!12 +ACT 19:26!13 +ACT 19:26!14 +ACT 19:26!15 +ACT 19:26!16 +ACT 19:26!17 +ACT 19:26!18 +ACT 19:26!19 +ACT 19:26!20 +ACT 19:26!21 +ACT 19:26!22 +ACT 19:26!23 +ACT 19:26!24 +ACT 19:26!25 +ACT 19:26!26 +ACT 19:26!27 +ACT 19:26!28 +ACT 19:26!29 +ACT 19:27!3 +ACT 19:27!1 +ACT 19:27!2 +ACT 19:27!4 +ACT 19:27!5 +ACT 19:27!6 +ACT 19:27!7 +ACT 19:27!8 +ACT 19:27!9 +ACT 19:27!10 +ACT 19:27!11 +ACT 19:27!12 +ACT 19:27!13 +ACT 19:27!14 +ACT 19:27!15 +ACT 19:27!16 +ACT 19:27!17 +ACT 19:27!18 +ACT 19:27!19 +ACT 19:27!20 +ACT 19:27!21 +ACT 19:27!22 +ACT 19:27!24 +ACT 19:27!23 +ACT 19:27!25 +ACT 19:27!26 +ACT 19:27!27 +ACT 19:27!28 +ACT 19:27!29 +ACT 19:27!30 +ACT 19:27!31 +ACT 19:27!32 +ACT 19:27!33 +ACT 19:27!34 +ACT 19:27!35 +ACT 19:27!36 +ACT 19:27!37 +ACT 19:28!2 +ACT 19:28!1 +ACT 19:28!3 +ACT 19:28!4 +ACT 19:28!5 +ACT 19:28!6 +ACT 19:28!7 +ACT 19:28!8 +ACT 19:28!9 +ACT 19:28!10 +ACT 19:28!11 +ACT 19:28!12 +ACT 19:29!1 +ACT 19:29!2 +ACT 19:29!3 +ACT 19:29!4 +ACT 19:29!5 +ACT 19:29!6 +ACT 19:29!8 +ACT 19:29!7 +ACT 19:29!9 +ACT 19:29!10 +ACT 19:29!11 +ACT 19:29!12 +ACT 19:29!13 +ACT 19:29!14 +ACT 19:29!15 +ACT 19:29!16 +ACT 19:29!17 +ACT 19:29!18 +ACT 19:29!19 +ACT 19:30!2 +ACT 19:30!1 +ACT 19:30!3 +ACT 19:30!4 +ACT 19:30!5 +ACT 19:30!6 +ACT 19:30!7 +ACT 19:30!8 +ACT 19:30!9 +ACT 19:30!10 +ACT 19:30!11 +ACT 19:30!12 +ACT 19:31!2 +ACT 19:31!1 +ACT 19:31!3 +ACT 19:31!4 +ACT 19:31!5 +ACT 19:31!6 +ACT 19:31!7 +ACT 19:31!8 +ACT 19:31!9 +ACT 19:31!10 +ACT 19:31!11 +ACT 19:31!12 +ACT 19:31!13 +ACT 19:31!14 +ACT 19:31!15 +ACT 19:31!16 +ACT 19:31!17 +ACT 19:31!18 +ACT 19:32!2 +ACT 19:32!3 +ACT 19:32!1 +ACT 19:32!4 +ACT 19:32!5 +ACT 19:32!6 +ACT 19:32!8 +ACT 19:32!9 +ACT 19:32!10 +ACT 19:32!7 +ACT 19:32!11 +ACT 19:32!12 +ACT 19:32!13 +ACT 19:32!14 +ACT 19:32!15 +ACT 19:32!16 +ACT 19:32!17 +ACT 19:32!18 +ACT 19:32!19 +ACT 19:33!2 +ACT 19:33!1 +ACT 19:33!3 +ACT 19:33!4 +ACT 19:33!5 +ACT 19:33!6 +ACT 19:33!7 +ACT 19:33!8 +ACT 19:33!9 +ACT 19:33!10 +ACT 19:33!12 +ACT 19:33!11 +ACT 19:33!13 +ACT 19:33!14 +ACT 19:33!15 +ACT 19:33!16 +ACT 19:33!17 +ACT 19:33!18 +ACT 19:33!19 +ACT 19:33!20 +ACT 19:34!2 +ACT 19:34!1 +ACT 19:34!3 +ACT 19:34!4 +ACT 19:34!5 +ACT 19:34!6 +ACT 19:34!8 +ACT 19:34!7 +ACT 19:34!9 +ACT 19:34!10 +ACT 19:34!11 +ACT 19:34!12 +ACT 19:34!13 +ACT 19:34!14 +ACT 19:34!15 +ACT 19:34!16 +ACT 19:34!17 +ACT 19:34!18 +ACT 19:34!19 +ACT 19:35!2 +ACT 19:35!3 +ACT 19:35!4 +ACT 19:35!1 +ACT 19:35!5 +ACT 19:35!6 +ACT 19:35!7 +ACT 19:35!8 +ACT 19:35!9 +ACT 19:35!11 +ACT 19:35!10 +ACT 19:35!13 +ACT 19:35!12 +ACT 19:35!14 +ACT 19:35!15 +ACT 19:35!16 +ACT 19:35!17 +ACT 19:35!18 +ACT 19:35!19 +ACT 19:35!21 +ACT 19:35!20 +ACT 19:35!22 +ACT 19:35!23 +ACT 19:35!24 +ACT 19:35!25 +ACT 19:35!26 +ACT 19:35!27 +ACT 19:36!2 +ACT 19:36!1 +ACT 19:36!3 +ACT 19:36!4 +ACT 19:36!5 +ACT 19:36!6 +ACT 19:36!7 +ACT 19:36!8 +ACT 19:36!9 +ACT 19:36!10 +ACT 19:36!11 +ACT 19:36!12 +ACT 19:36!13 +ACT 19:37!2 +ACT 19:37!1 +ACT 19:37!3 +ACT 19:37!4 +ACT 19:37!5 +ACT 19:37!6 +ACT 19:37!7 +ACT 19:37!8 +ACT 19:37!9 +ACT 19:37!10 +ACT 19:37!11 +ACT 19:37!12 +ACT 19:38!3 +ACT 19:38!2 +ACT 19:38!1 +ACT 19:38!4 +ACT 19:38!5 +ACT 19:38!6 +ACT 19:38!7 +ACT 19:38!8 +ACT 19:38!9 +ACT 19:38!10 +ACT 19:38!11 +ACT 19:38!12 +ACT 19:38!13 +ACT 19:38!14 +ACT 19:38!15 +ACT 19:38!16 +ACT 19:38!17 +ACT 19:38!18 +ACT 19:38!19 +ACT 19:38!20 +ACT 19:39!2 +ACT 19:39!1 +ACT 19:39!3 +ACT 19:39!4 +ACT 19:39!5 +ACT 19:39!6 +ACT 19:39!7 +ACT 19:39!8 +ACT 19:39!9 +ACT 19:39!10 +ACT 19:40!2 +ACT 19:40!1 +ACT 19:40!3 +ACT 19:40!4 +ACT 19:40!5 +ACT 19:40!6 +ACT 19:40!7 +ACT 19:40!8 +ACT 19:40!9 +ACT 19:40!10 +ACT 19:40!11 +ACT 19:40!12 +ACT 19:40!13 +ACT 19:40!14 +ACT 19:40!15 +ACT 19:40!16 +ACT 19:40!17 +ACT 19:40!18 +ACT 19:40!19 +ACT 19:40!20 +ACT 19:40!21 +ACT 19:40!22 +ACT 19:40!23 +ACT 19:40!24 +ACT 19:40!25 +ACT 19:40!26 +ACT 19:40!27 +ACT 20:1!2 +ACT 20:1!1 +ACT 20:1!3 +ACT 20:1!4 +ACT 20:1!5 +ACT 20:1!6 +ACT 20:1!8 +ACT 20:1!9 +ACT 20:1!7 +ACT 20:1!10 +ACT 20:1!11 +ACT 20:1!12 +ACT 20:1!13 +ACT 20:1!14 +ACT 20:1!15 +ACT 20:1!16 +ACT 20:1!17 +ACT 20:1!18 +ACT 20:2!2 +ACT 20:2!1 +ACT 20:2!3 +ACT 20:2!4 +ACT 20:2!5 +ACT 20:2!6 +ACT 20:2!7 +ACT 20:2!8 +ACT 20:2!9 +ACT 20:2!10 +ACT 20:2!11 +ACT 20:2!12 +ACT 20:2!13 +ACT 20:2!14 +ACT 20:3!2 +ACT 20:3!1 +ACT 20:3!3 +ACT 20:3!4 +ACT 20:3!5 +ACT 20:3!6 +ACT 20:3!7 +ACT 20:3!8 +ACT 20:3!9 +ACT 20:3!10 +ACT 20:3!11 +ACT 20:3!12 +ACT 20:3!13 +ACT 20:3!14 +ACT 20:3!15 +ACT 20:3!16 +ACT 20:3!17 +ACT 20:3!18 +ACT 20:3!19 +ACT 20:3!20 +ACT 20:3!21 +ACT 20:4!2 +ACT 20:4!1 +ACT 20:4!3 +ACT 20:4!4 +ACT 20:4!5 +ACT 20:4!6 +ACT 20:4!8 +ACT 20:4!7 +ACT 20:4!9 +ACT 20:4!10 +ACT 20:4!11 +ACT 20:4!12 +ACT 20:4!13 +ACT 20:4!14 +ACT 20:4!15 +ACT 20:4!16 +ACT 20:4!18 +ACT 20:4!17 +ACT 20:4!19 +ACT 20:4!20 +ACT 20:4!21 +ACT 20:5!2 +ACT 20:5!1 +ACT 20:5!3 +ACT 20:5!4 +ACT 20:5!5 +ACT 20:5!6 +ACT 20:5!7 +ACT 20:6!2 +ACT 20:6!1 +ACT 20:6!3 +ACT 20:6!4 +ACT 20:6!5 +ACT 20:6!6 +ACT 20:6!7 +ACT 20:6!8 +ACT 20:6!9 +ACT 20:6!10 +ACT 20:6!11 +ACT 20:6!12 +ACT 20:6!13 +ACT 20:6!14 +ACT 20:6!15 +ACT 20:6!16 +ACT 20:6!17 +ACT 20:6!18 +ACT 20:6!19 +ACT 20:6!20 +ACT 20:6!21 +ACT 20:6!22 +ACT 20:6!23 +ACT 20:6!24 +ACT 20:7!2 +ACT 20:7!1 +ACT 20:7!3 +ACT 20:7!4 +ACT 20:7!5 +ACT 20:7!6 +ACT 20:7!7 +ACT 20:7!8 +ACT 20:7!9 +ACT 20:7!10 +ACT 20:7!11 +ACT 20:7!12 +ACT 20:7!13 +ACT 20:7!14 +ACT 20:7!15 +ACT 20:7!16 +ACT 20:7!17 +ACT 20:7!18 +ACT 20:7!20 +ACT 20:7!19 +ACT 20:7!21 +ACT 20:7!22 +ACT 20:7!23 +ACT 20:7!24 +ACT 20:8!2 +ACT 20:8!1 +ACT 20:8!3 +ACT 20:8!4 +ACT 20:8!5 +ACT 20:8!6 +ACT 20:8!7 +ACT 20:8!8 +ACT 20:8!9 +ACT 20:8!10 +ACT 20:9!2 +ACT 20:9!3 +ACT 20:9!4 +ACT 20:9!5 +ACT 20:9!6 +ACT 20:9!1 +ACT 20:9!7 +ACT 20:9!8 +ACT 20:9!9 +ACT 20:9!10 +ACT 20:9!11 +ACT 20:9!12 +ACT 20:9!13 +ACT 20:9!14 +ACT 20:9!15 +ACT 20:9!16 +ACT 20:9!17 +ACT 20:9!18 +ACT 20:9!19 +ACT 20:9!20 +ACT 20:9!21 +ACT 20:9!22 +ACT 20:9!23 +ACT 20:9!24 +ACT 20:9!25 +ACT 20:9!26 +ACT 20:9!27 +ACT 20:9!28 +ACT 20:9!29 +ACT 20:10!2 +ACT 20:10!1 +ACT 20:10!3 +ACT 20:10!4 +ACT 20:10!5 +ACT 20:10!6 +ACT 20:10!7 +ACT 20:10!8 +ACT 20:10!9 +ACT 20:10!10 +ACT 20:10!11 +ACT 20:10!13 +ACT 20:10!12 +ACT 20:10!14 +ACT 20:10!15 +ACT 20:10!16 +ACT 20:10!17 +ACT 20:10!18 +ACT 20:11!2 +ACT 20:11!1 +ACT 20:11!3 +ACT 20:11!4 +ACT 20:11!5 +ACT 20:11!6 +ACT 20:11!7 +ACT 20:11!8 +ACT 20:11!11 +ACT 20:11!9 +ACT 20:11!10 +ACT 20:11!12 +ACT 20:11!13 +ACT 20:11!14 +ACT 20:11!15 +ACT 20:11!16 +ACT 20:12!2 +ACT 20:12!1 +ACT 20:12!3 +ACT 20:12!4 +ACT 20:12!5 +ACT 20:12!6 +ACT 20:12!7 +ACT 20:12!8 +ACT 20:12!9 +ACT 20:13!2 +ACT 20:13!1 +ACT 20:13!3 +ACT 20:13!4 +ACT 20:13!5 +ACT 20:13!6 +ACT 20:13!7 +ACT 20:13!8 +ACT 20:13!9 +ACT 20:13!10 +ACT 20:13!11 +ACT 20:13!12 +ACT 20:13!13 +ACT 20:13!14 +ACT 20:13!15 +ACT 20:13!17 +ACT 20:13!16 +ACT 20:13!18 +ACT 20:13!19 +ACT 20:13!20 +ACT 20:13!21 +ACT 20:13!22 +ACT 20:14!2 +ACT 20:14!1 +ACT 20:14!3 +ACT 20:14!4 +ACT 20:14!5 +ACT 20:14!6 +ACT 20:14!7 +ACT 20:14!8 +ACT 20:14!9 +ACT 20:14!10 +ACT 20:14!11 +ACT 20:14!12 +ACT 20:15!1 +ACT 20:15!2 +ACT 20:15!3 +ACT 20:15!4 +ACT 20:15!5 +ACT 20:15!6 +ACT 20:15!7 +ACT 20:15!9 +ACT 20:15!8 +ACT 20:15!10 +ACT 20:15!11 +ACT 20:15!12 +ACT 20:15!13 +ACT 20:15!15 +ACT 20:15!14 +ACT 20:15!16 +ACT 20:15!17 +ACT 20:15!18 +ACT 20:15!19 +ACT 20:16!2 +ACT 20:16!1 +ACT 20:16!3 +ACT 20:16!4 +ACT 20:16!5 +ACT 20:16!6 +ACT 20:16!7 +ACT 20:16!8 +ACT 20:16!9 +ACT 20:16!10 +ACT 20:16!11 +ACT 20:16!12 +ACT 20:16!13 +ACT 20:16!14 +ACT 20:16!15 +ACT 20:16!17 +ACT 20:16!16 +ACT 20:16!18 +ACT 20:16!19 +ACT 20:16!20 +ACT 20:16!21 +ACT 20:16!22 +ACT 20:16!23 +ACT 20:16!24 +ACT 20:16!25 +ACT 20:16!26 +ACT 20:16!27 +ACT 20:16!28 +ACT 20:17!2 +ACT 20:17!1 +ACT 20:17!3 +ACT 20:17!4 +ACT 20:17!5 +ACT 20:17!6 +ACT 20:17!7 +ACT 20:17!8 +ACT 20:17!9 +ACT 20:17!10 +ACT 20:17!11 +ACT 20:17!12 +ACT 20:18!2 +ACT 20:18!1 +ACT 20:18!3 +ACT 20:18!4 +ACT 20:18!5 +ACT 20:18!6 +ACT 20:18!7 +ACT 20:18!8 +ACT 20:18!9 +ACT 20:18!10 +ACT 20:18!11 +ACT 20:18!12 +ACT 20:18!13 +ACT 20:18!14 +ACT 20:18!15 +ACT 20:18!16 +ACT 20:18!17 +ACT 20:18!18 +ACT 20:18!19 +ACT 20:18!20 +ACT 20:18!21 +ACT 20:18!22 +ACT 20:18!23 +ACT 20:18!24 +ACT 20:18!25 +ACT 20:19!1 +ACT 20:19!2 +ACT 20:19!3 +ACT 20:19!4 +ACT 20:19!5 +ACT 20:19!6 +ACT 20:19!7 +ACT 20:19!8 +ACT 20:19!9 +ACT 20:19!10 +ACT 20:19!11 +ACT 20:19!12 +ACT 20:19!13 +ACT 20:19!14 +ACT 20:19!15 +ACT 20:19!16 +ACT 20:19!17 +ACT 20:19!18 +ACT 20:20!1 +ACT 20:20!3 +ACT 20:20!2 +ACT 20:20!4 +ACT 20:20!5 +ACT 20:20!6 +ACT 20:20!7 +ACT 20:20!8 +ACT 20:20!9 +ACT 20:20!10 +ACT 20:20!11 +ACT 20:20!12 +ACT 20:20!13 +ACT 20:20!14 +ACT 20:20!15 +ACT 20:20!16 +ACT 20:21!1 +ACT 20:21!3 +ACT 20:21!2 +ACT 20:21!4 +ACT 20:21!5 +ACT 20:21!6 +ACT 20:21!7 +ACT 20:21!8 +ACT 20:21!9 +ACT 20:21!10 +ACT 20:21!11 +ACT 20:21!12 +ACT 20:21!13 +ACT 20:21!14 +ACT 20:21!15 +ACT 20:21!16 +ACT 20:22!1 +ACT 20:22!2 +ACT 20:22!3 +ACT 20:22!4 +ACT 20:22!6 +ACT 20:22!7 +ACT 20:22!5 +ACT 20:22!8 +ACT 20:22!9 +ACT 20:22!10 +ACT 20:22!11 +ACT 20:22!12 +ACT 20:22!13 +ACT 20:22!14 +ACT 20:22!15 +ACT 20:22!16 +ACT 20:22!17 +ACT 20:23!1 +ACT 20:23!2 +ACT 20:23!3 +ACT 20:23!4 +ACT 20:23!5 +ACT 20:23!6 +ACT 20:23!7 +ACT 20:23!8 +ACT 20:23!9 +ACT 20:23!10 +ACT 20:23!11 +ACT 20:23!12 +ACT 20:23!13 +ACT 20:23!14 +ACT 20:23!15 +ACT 20:23!16 +ACT 20:23!17 +ACT 20:24!1 +ACT 20:24!2 +ACT 20:24!3 +ACT 20:24!4 +ACT 20:24!5 +ACT 20:24!6 +ACT 20:24!7 +ACT 20:24!8 +ACT 20:24!9 +ACT 20:24!10 +ACT 20:24!11 +ACT 20:24!12 +ACT 20:24!13 +ACT 20:24!14 +ACT 20:24!15 +ACT 20:24!16 +ACT 20:24!17 +ACT 20:24!18 +ACT 20:24!19 +ACT 20:24!20 +ACT 20:24!21 +ACT 20:24!22 +ACT 20:24!23 +ACT 20:24!24 +ACT 20:24!25 +ACT 20:24!26 +ACT 20:24!27 +ACT 20:24!28 +ACT 20:24!29 +ACT 20:25!1 +ACT 20:25!2 +ACT 20:25!3 +ACT 20:25!4 +ACT 20:25!5 +ACT 20:25!6 +ACT 20:25!7 +ACT 20:25!8 +ACT 20:25!9 +ACT 20:25!10 +ACT 20:25!11 +ACT 20:25!12 +ACT 20:25!13 +ACT 20:25!14 +ACT 20:25!15 +ACT 20:25!16 +ACT 20:25!17 +ACT 20:25!18 +ACT 20:25!19 +ACT 20:26!1 +ACT 20:26!2 +ACT 20:26!3 +ACT 20:26!4 +ACT 20:26!5 +ACT 20:26!6 +ACT 20:26!7 +ACT 20:26!8 +ACT 20:26!9 +ACT 20:26!10 +ACT 20:26!11 +ACT 20:26!12 +ACT 20:26!13 +ACT 20:26!14 +ACT 20:27!2 +ACT 20:27!1 +ACT 20:27!3 +ACT 20:27!4 +ACT 20:27!5 +ACT 20:27!6 +ACT 20:27!7 +ACT 20:27!8 +ACT 20:27!9 +ACT 20:27!10 +ACT 20:27!11 +ACT 20:27!12 +ACT 20:28!1 +ACT 20:28!2 +ACT 20:28!3 +ACT 20:28!4 +ACT 20:28!5 +ACT 20:28!6 +ACT 20:28!7 +ACT 20:28!8 +ACT 20:28!9 +ACT 20:28!10 +ACT 20:28!11 +ACT 20:28!12 +ACT 20:28!13 +ACT 20:28!14 +ACT 20:28!15 +ACT 20:28!16 +ACT 20:28!17 +ACT 20:28!18 +ACT 20:28!19 +ACT 20:28!20 +ACT 20:28!21 +ACT 20:28!22 +ACT 20:28!23 +ACT 20:28!24 +ACT 20:28!25 +ACT 20:28!26 +ACT 20:28!27 +ACT 20:29!1 +ACT 20:29!2 +ACT 20:29!3 +ACT 20:29!4 +ACT 20:29!5 +ACT 20:29!6 +ACT 20:29!7 +ACT 20:29!8 +ACT 20:29!9 +ACT 20:29!10 +ACT 20:29!11 +ACT 20:29!12 +ACT 20:29!13 +ACT 20:29!14 +ACT 20:29!15 +ACT 20:29!16 +ACT 20:30!1 +ACT 20:30!2 +ACT 20:30!3 +ACT 20:30!4 +ACT 20:30!5 +ACT 20:30!6 +ACT 20:30!7 +ACT 20:30!8 +ACT 20:30!9 +ACT 20:30!10 +ACT 20:30!11 +ACT 20:30!12 +ACT 20:30!13 +ACT 20:30!14 +ACT 20:31!1 +ACT 20:31!2 +ACT 20:31!3 +ACT 20:31!4 +ACT 20:31!5 +ACT 20:31!6 +ACT 20:31!7 +ACT 20:31!8 +ACT 20:31!9 +ACT 20:31!10 +ACT 20:31!11 +ACT 20:31!12 +ACT 20:31!13 +ACT 20:31!14 +ACT 20:31!15 +ACT 20:32!1 +ACT 20:32!2 +ACT 20:32!3 +ACT 20:32!4 +ACT 20:32!5 +ACT 20:32!6 +ACT 20:32!7 +ACT 20:32!8 +ACT 20:32!9 +ACT 20:32!10 +ACT 20:32!11 +ACT 20:32!12 +ACT 20:32!13 +ACT 20:32!14 +ACT 20:32!15 +ACT 20:32!16 +ACT 20:32!17 +ACT 20:32!18 +ACT 20:32!19 +ACT 20:32!20 +ACT 20:32!21 +ACT 20:32!22 +ACT 20:32!23 +ACT 20:32!24 +ACT 20:33!1 +ACT 20:33!2 +ACT 20:33!3 +ACT 20:33!4 +ACT 20:33!5 +ACT 20:33!6 +ACT 20:33!7 +ACT 20:34!1 +ACT 20:34!2 +ACT 20:34!3 +ACT 20:34!4 +ACT 20:34!5 +ACT 20:34!6 +ACT 20:34!7 +ACT 20:34!8 +ACT 20:34!9 +ACT 20:34!10 +ACT 20:34!11 +ACT 20:34!12 +ACT 20:34!13 +ACT 20:34!14 +ACT 20:34!15 +ACT 20:35!1 +ACT 20:35!2 +ACT 20:35!3 +ACT 20:35!4 +ACT 20:35!5 +ACT 20:35!6 +ACT 20:35!7 +ACT 20:35!8 +ACT 20:35!9 +ACT 20:35!10 +ACT 20:35!12 +ACT 20:35!11 +ACT 20:35!13 +ACT 20:35!14 +ACT 20:35!15 +ACT 20:35!16 +ACT 20:35!17 +ACT 20:35!18 +ACT 20:35!19 +ACT 20:35!20 +ACT 20:35!21 +ACT 20:35!22 +ACT 20:35!23 +ACT 20:35!24 +ACT 20:35!25 +ACT 20:35!26 +ACT 20:36!1 +ACT 20:36!2 +ACT 20:36!3 +ACT 20:36!4 +ACT 20:36!5 +ACT 20:36!6 +ACT 20:36!7 +ACT 20:36!8 +ACT 20:36!9 +ACT 20:36!10 +ACT 20:36!11 +ACT 20:37!2 +ACT 20:37!1 +ACT 20:37!4 +ACT 20:37!3 +ACT 20:37!5 +ACT 20:37!6 +ACT 20:37!7 +ACT 20:37!8 +ACT 20:37!9 +ACT 20:37!10 +ACT 20:37!11 +ACT 20:37!12 +ACT 20:37!13 +ACT 20:37!14 +ACT 20:38!1 +ACT 20:38!2 +ACT 20:38!3 +ACT 20:38!4 +ACT 20:38!5 +ACT 20:38!6 +ACT 20:38!7 +ACT 20:38!8 +ACT 20:38!9 +ACT 20:38!10 +ACT 20:38!11 +ACT 20:38!12 +ACT 20:38!13 +ACT 20:38!14 +ACT 20:38!16 +ACT 20:38!15 +ACT 20:38!17 +ACT 20:38!18 +ACT 20:38!19 +ACT 20:38!20 +ACT 21:1!2 +ACT 21:1!1 +ACT 21:1!3 +ACT 21:1!4 +ACT 21:1!5 +ACT 21:1!6 +ACT 21:1!7 +ACT 21:1!8 +ACT 21:1!9 +ACT 21:1!10 +ACT 21:1!11 +ACT 21:1!12 +ACT 21:1!13 +ACT 21:1!15 +ACT 21:1!14 +ACT 21:1!16 +ACT 21:1!17 +ACT 21:1!18 +ACT 21:1!19 +ACT 21:1!20 +ACT 21:1!21 +ACT 21:1!22 +ACT 21:2!1 +ACT 21:2!2 +ACT 21:2!3 +ACT 21:2!4 +ACT 21:2!5 +ACT 21:2!6 +ACT 21:2!7 +ACT 21:2!8 +ACT 21:3!2 +ACT 21:3!1 +ACT 21:3!3 +ACT 21:3!4 +ACT 21:3!5 +ACT 21:3!6 +ACT 21:3!7 +ACT 21:3!8 +ACT 21:3!9 +ACT 21:3!10 +ACT 21:3!11 +ACT 21:3!12 +ACT 21:3!13 +ACT 21:3!14 +ACT 21:3!15 +ACT 21:3!17 +ACT 21:3!16 +ACT 21:3!18 +ACT 21:3!19 +ACT 21:3!20 +ACT 21:3!21 +ACT 21:3!22 +ACT 21:3!23 +ACT 21:4!2 +ACT 21:4!1 +ACT 21:4!3 +ACT 21:4!4 +ACT 21:4!5 +ACT 21:4!6 +ACT 21:4!7 +ACT 21:4!8 +ACT 21:4!9 +ACT 21:4!10 +ACT 21:4!11 +ACT 21:4!12 +ACT 21:4!13 +ACT 21:4!14 +ACT 21:4!15 +ACT 21:4!16 +ACT 21:4!17 +ACT 21:4!18 +ACT 21:4!19 +ACT 21:5!2 +ACT 21:5!1 +ACT 21:5!3 +ACT 21:5!4 +ACT 21:5!5 +ACT 21:5!6 +ACT 21:5!7 +ACT 21:5!8 +ACT 21:5!9 +ACT 21:5!10 +ACT 21:5!11 +ACT 21:5!12 +ACT 21:5!13 +ACT 21:5!14 +ACT 21:5!15 +ACT 21:5!16 +ACT 21:5!17 +ACT 21:5!18 +ACT 21:5!19 +ACT 21:5!20 +ACT 21:5!21 +ACT 21:5!22 +ACT 21:5!23 +ACT 21:5!24 +ACT 21:5!25 +ACT 21:5!26 +ACT 21:5!27 +ACT 21:5!28 +ACT 21:6!1 +ACT 21:6!2 +ACT 21:6!3 +ACT 21:6!4 +ACT 21:6!5 +ACT 21:6!6 +ACT 21:6!7 +ACT 21:6!9 +ACT 21:6!8 +ACT 21:6!10 +ACT 21:6!11 +ACT 21:6!12 +ACT 21:6!13 +ACT 21:7!2 +ACT 21:7!1 +ACT 21:7!3 +ACT 21:7!4 +ACT 21:7!5 +ACT 21:7!6 +ACT 21:7!7 +ACT 21:7!8 +ACT 21:7!9 +ACT 21:7!10 +ACT 21:7!11 +ACT 21:7!12 +ACT 21:7!13 +ACT 21:7!14 +ACT 21:7!15 +ACT 21:7!16 +ACT 21:7!17 +ACT 21:7!18 +ACT 21:7!19 +ACT 21:8!2 +ACT 21:8!1 +ACT 21:8!3 +ACT 21:8!4 +ACT 21:8!5 +ACT 21:8!6 +ACT 21:8!7 +ACT 21:8!8 +ACT 21:8!9 +ACT 21:8!10 +ACT 21:8!11 +ACT 21:8!12 +ACT 21:8!13 +ACT 21:8!14 +ACT 21:8!15 +ACT 21:8!16 +ACT 21:8!17 +ACT 21:8!18 +ACT 21:8!19 +ACT 21:8!20 +ACT 21:8!21 +ACT 21:8!22 +ACT 21:9!2 +ACT 21:9!1 +ACT 21:9!3 +ACT 21:9!4 +ACT 21:9!5 +ACT 21:9!6 +ACT 21:9!7 +ACT 21:10!2 +ACT 21:10!1 +ACT 21:10!3 +ACT 21:10!4 +ACT 21:10!5 +ACT 21:10!6 +ACT 21:10!7 +ACT 21:10!8 +ACT 21:10!9 +ACT 21:10!10 +ACT 21:10!11 +ACT 21:10!12 +ACT 21:11!1 +ACT 21:11!2 +ACT 21:11!3 +ACT 21:11!4 +ACT 21:11!5 +ACT 21:11!6 +ACT 21:11!7 +ACT 21:11!8 +ACT 21:11!9 +ACT 21:11!10 +ACT 21:11!11 +ACT 21:11!12 +ACT 21:11!13 +ACT 21:11!14 +ACT 21:11!15 +ACT 21:11!16 +ACT 21:11!17 +ACT 21:11!18 +ACT 21:11!19 +ACT 21:11!20 +ACT 21:11!21 +ACT 21:11!22 +ACT 21:11!23 +ACT 21:11!24 +ACT 21:11!25 +ACT 21:11!26 +ACT 21:11!27 +ACT 21:11!28 +ACT 21:11!29 +ACT 21:11!30 +ACT 21:11!31 +ACT 21:11!32 +ACT 21:11!33 +ACT 21:11!34 +ACT 21:11!35 +ACT 21:11!36 +ACT 21:11!37 +ACT 21:11!38 +ACT 21:11!39 +ACT 21:11!40 +ACT 21:11!41 +ACT 21:11!42 +ACT 21:12!2 +ACT 21:12!1 +ACT 21:12!3 +ACT 21:12!4 +ACT 21:12!5 +ACT 21:12!7 +ACT 21:12!6 +ACT 21:12!8 +ACT 21:12!9 +ACT 21:12!10 +ACT 21:12!11 +ACT 21:12!12 +ACT 21:12!13 +ACT 21:12!14 +ACT 21:12!15 +ACT 21:12!16 +ACT 21:13!1 +ACT 21:13!2 +ACT 21:13!3 +ACT 21:13!4 +ACT 21:13!5 +ACT 21:13!6 +ACT 21:13!7 +ACT 21:13!8 +ACT 21:13!9 +ACT 21:13!10 +ACT 21:13!11 +ACT 21:13!12 +ACT 21:13!14 +ACT 21:13!13 +ACT 21:13!15 +ACT 21:13!16 +ACT 21:13!17 +ACT 21:13!18 +ACT 21:13!19 +ACT 21:13!20 +ACT 21:13!21 +ACT 21:13!22 +ACT 21:13!23 +ACT 21:13!24 +ACT 21:13!25 +ACT 21:13!26 +ACT 21:13!27 +ACT 21:13!28 +ACT 21:13!29 +ACT 21:13!30 +ACT 21:14!3 +ACT 21:14!1 +ACT 21:14!2 +ACT 21:14!4 +ACT 21:14!5 +ACT 21:14!6 +ACT 21:14!7 +ACT 21:14!8 +ACT 21:14!9 +ACT 21:14!10 +ACT 21:14!11 +ACT 21:15!2 +ACT 21:15!1 +ACT 21:15!3 +ACT 21:15!4 +ACT 21:15!5 +ACT 21:15!6 +ACT 21:15!7 +ACT 21:15!8 +ACT 21:15!9 +ACT 21:16!2 +ACT 21:16!1 +ACT 21:16!3 +ACT 21:16!4 +ACT 21:16!5 +ACT 21:16!6 +ACT 21:16!7 +ACT 21:16!8 +ACT 21:16!9 +ACT 21:16!10 +ACT 21:16!11 +ACT 21:16!12 +ACT 21:16!13 +ACT 21:16!14 +ACT 21:16!15 +ACT 21:16!16 +ACT 21:16!17 +ACT 21:16!18 +ACT 21:17!2 +ACT 21:17!1 +ACT 21:17!3 +ACT 21:17!4 +ACT 21:17!5 +ACT 21:17!6 +ACT 21:17!7 +ACT 21:17!8 +ACT 21:17!9 +ACT 21:17!10 +ACT 21:18!2 +ACT 21:18!1 +ACT 21:18!3 +ACT 21:18!4 +ACT 21:18!5 +ACT 21:18!6 +ACT 21:18!7 +ACT 21:18!8 +ACT 21:18!9 +ACT 21:18!10 +ACT 21:18!12 +ACT 21:18!13 +ACT 21:18!11 +ACT 21:18!14 +ACT 21:18!15 +ACT 21:19!1 +ACT 21:19!2 +ACT 21:19!3 +ACT 21:19!4 +ACT 21:19!5 +ACT 21:19!6 +ACT 21:19!7 +ACT 21:19!8 +ACT 21:19!9 +ACT 21:19!10 +ACT 21:19!11 +ACT 21:19!12 +ACT 21:19!13 +ACT 21:19!14 +ACT 21:19!15 +ACT 21:19!16 +ACT 21:19!17 +ACT 21:19!18 +ACT 21:20!2 +ACT 21:20!1 +ACT 21:20!3 +ACT 21:20!4 +ACT 21:20!5 +ACT 21:20!6 +ACT 21:20!8 +ACT 21:20!7 +ACT 21:20!9 +ACT 21:20!10 +ACT 21:20!11 +ACT 21:20!12 +ACT 21:20!13 +ACT 21:20!18 +ACT 21:20!19 +ACT 21:20!14 +ACT 21:20!15 +ACT 21:20!16 +ACT 21:20!17 +ACT 21:20!20 +ACT 21:20!21 +ACT 21:20!22 +ACT 21:20!23 +ACT 21:20!24 +ACT 21:20!25 +ACT 21:21!2 +ACT 21:21!1 +ACT 21:21!3 +ACT 21:21!4 +ACT 21:21!5 +ACT 21:21!7 +ACT 21:21!6 +ACT 21:21!8 +ACT 21:21!9 +ACT 21:21!10 +ACT 21:21!11 +ACT 21:21!12 +ACT 21:21!13 +ACT 21:21!14 +ACT 21:21!15 +ACT 21:21!16 +ACT 21:21!17 +ACT 21:21!18 +ACT 21:21!19 +ACT 21:21!20 +ACT 21:21!21 +ACT 21:21!22 +ACT 21:21!23 +ACT 21:21!24 +ACT 21:21!25 +ACT 21:22!2 +ACT 21:22!1 +ACT 21:22!3 +ACT 21:22!4 +ACT 21:22!5 +ACT 21:22!6 +ACT 21:22!7 +ACT 21:23!2 +ACT 21:23!1 +ACT 21:23!3 +ACT 21:23!4 +ACT 21:23!5 +ACT 21:23!6 +ACT 21:23!7 +ACT 21:23!8 +ACT 21:23!9 +ACT 21:23!10 +ACT 21:23!11 +ACT 21:23!12 +ACT 21:23!13 +ACT 21:23!14 +ACT 21:24!1 +ACT 21:24!2 +ACT 21:24!3 +ACT 21:24!4 +ACT 21:24!5 +ACT 21:24!6 +ACT 21:24!7 +ACT 21:24!8 +ACT 21:24!9 +ACT 21:24!10 +ACT 21:24!11 +ACT 21:24!12 +ACT 21:24!13 +ACT 21:24!14 +ACT 21:24!15 +ACT 21:24!16 +ACT 21:24!17 +ACT 21:24!18 +ACT 21:24!19 +ACT 21:24!20 +ACT 21:24!21 +ACT 21:24!22 +ACT 21:24!23 +ACT 21:24!24 +ACT 21:24!25 +ACT 21:24!26 +ACT 21:24!27 +ACT 21:24!28 +ACT 21:24!29 +ACT 21:24!30 +ACT 21:25!2 +ACT 21:25!1 +ACT 21:25!3 +ACT 21:25!4 +ACT 21:25!5 +ACT 21:25!6 +ACT 21:25!7 +ACT 21:25!8 +ACT 21:25!9 +ACT 21:25!10 +ACT 21:25!12 +ACT 21:25!11 +ACT 21:25!13 +ACT 21:25!14 +ACT 21:25!15 +ACT 21:25!16 +ACT 21:25!17 +ACT 21:25!18 +ACT 21:25!19 +ACT 21:26!1 +ACT 21:26!2 +ACT 21:26!3 +ACT 21:26!4 +ACT 21:26!5 +ACT 21:26!6 +ACT 21:26!7 +ACT 21:26!8 +ACT 21:26!9 +ACT 21:26!10 +ACT 21:26!11 +ACT 21:26!12 +ACT 21:26!13 +ACT 21:26!14 +ACT 21:26!15 +ACT 21:26!16 +ACT 21:26!17 +ACT 21:26!18 +ACT 21:26!19 +ACT 21:26!20 +ACT 21:26!21 +ACT 21:26!22 +ACT 21:26!23 +ACT 21:26!24 +ACT 21:26!25 +ACT 21:26!26 +ACT 21:26!27 +ACT 21:26!28 +ACT 21:26!29 +ACT 21:26!30 +ACT 21:26!31 +ACT 21:26!32 +ACT 21:27!2 +ACT 21:27!1 +ACT 21:27!3 +ACT 21:27!4 +ACT 21:27!5 +ACT 21:27!6 +ACT 21:27!7 +ACT 21:27!8 +ACT 21:27!9 +ACT 21:27!10 +ACT 21:27!11 +ACT 21:27!12 +ACT 21:27!13 +ACT 21:27!14 +ACT 21:27!15 +ACT 21:27!16 +ACT 21:27!17 +ACT 21:27!18 +ACT 21:27!19 +ACT 21:27!20 +ACT 21:27!21 +ACT 21:27!22 +ACT 21:27!23 +ACT 21:27!24 +ACT 21:27!25 +ACT 21:27!26 +ACT 21:27!27 +ACT 21:28!1 +ACT 21:28!2 +ACT 21:28!3 +ACT 21:28!4 +ACT 21:28!5 +ACT 21:28!6 +ACT 21:28!7 +ACT 21:28!8 +ACT 21:28!9 +ACT 21:28!10 +ACT 21:28!11 +ACT 21:28!12 +ACT 21:28!13 +ACT 21:28!14 +ACT 21:28!15 +ACT 21:28!16 +ACT 21:28!17 +ACT 21:28!18 +ACT 21:28!19 +ACT 21:28!20 +ACT 21:28!21 +ACT 21:28!22 +ACT 21:28!24 +ACT 21:28!23 +ACT 21:28!25 +ACT 21:28!26 +ACT 21:28!27 +ACT 21:28!28 +ACT 21:28!29 +ACT 21:28!30 +ACT 21:28!31 +ACT 21:28!32 +ACT 21:28!33 +ACT 21:28!34 +ACT 21:28!35 +ACT 21:28!36 +ACT 21:29!2 +ACT 21:29!1 +ACT 21:29!3 +ACT 21:29!4 +ACT 21:29!5 +ACT 21:29!6 +ACT 21:29!7 +ACT 21:29!8 +ACT 21:29!9 +ACT 21:29!10 +ACT 21:29!11 +ACT 21:29!13 +ACT 21:29!14 +ACT 21:29!12 +ACT 21:29!15 +ACT 21:29!16 +ACT 21:29!17 +ACT 21:29!18 +ACT 21:29!19 +ACT 21:29!20 +ACT 21:30!2 +ACT 21:30!1 +ACT 21:30!3 +ACT 21:30!4 +ACT 21:30!5 +ACT 21:30!6 +ACT 21:30!7 +ACT 21:30!8 +ACT 21:30!9 +ACT 21:30!10 +ACT 21:30!11 +ACT 21:30!12 +ACT 21:30!13 +ACT 21:30!14 +ACT 21:30!15 +ACT 21:30!16 +ACT 21:30!17 +ACT 21:30!18 +ACT 21:30!19 +ACT 21:30!20 +ACT 21:30!21 +ACT 21:30!22 +ACT 21:30!23 +ACT 21:30!24 +ACT 21:31!2 +ACT 21:31!1 +ACT 21:31!3 +ACT 21:31!4 +ACT 21:31!5 +ACT 21:31!6 +ACT 21:31!7 +ACT 21:31!8 +ACT 21:31!9 +ACT 21:31!10 +ACT 21:31!11 +ACT 21:31!12 +ACT 21:31!14 +ACT 21:31!13 +ACT 21:32!1 +ACT 21:32!2 +ACT 21:32!3 +ACT 21:32!4 +ACT 21:32!5 +ACT 21:32!6 +ACT 21:32!7 +ACT 21:32!8 +ACT 21:32!9 +ACT 21:32!11 +ACT 21:32!10 +ACT 21:32!12 +ACT 21:32!13 +ACT 21:32!14 +ACT 21:32!15 +ACT 21:32!16 +ACT 21:32!17 +ACT 21:32!18 +ACT 21:32!19 +ACT 21:32!20 +ACT 21:32!21 +ACT 21:33!1 +ACT 21:33!2 +ACT 21:33!3 +ACT 21:33!4 +ACT 21:33!5 +ACT 21:33!6 +ACT 21:33!7 +ACT 21:33!8 +ACT 21:33!9 +ACT 21:33!10 +ACT 21:33!11 +ACT 21:33!12 +ACT 21:33!13 +ACT 21:33!14 +ACT 21:33!15 +ACT 21:33!16 +ACT 21:33!17 +ACT 21:33!18 +ACT 21:33!19 +ACT 21:34!2 +ACT 21:34!1 +ACT 21:34!3 +ACT 21:34!4 +ACT 21:34!5 +ACT 21:34!6 +ACT 21:34!7 +ACT 21:34!8 +ACT 21:34!11 +ACT 21:34!9 +ACT 21:34!10 +ACT 21:34!12 +ACT 21:34!13 +ACT 21:34!14 +ACT 21:34!15 +ACT 21:34!16 +ACT 21:34!17 +ACT 21:34!18 +ACT 21:34!19 +ACT 21:34!20 +ACT 21:34!21 +ACT 21:34!22 +ACT 21:34!23 +ACT 21:34!24 +ACT 21:35!2 +ACT 21:35!1 +ACT 21:35!3 +ACT 21:35!4 +ACT 21:35!5 +ACT 21:35!6 +ACT 21:35!7 +ACT 21:35!8 +ACT 21:35!9 +ACT 21:35!10 +ACT 21:35!11 +ACT 21:35!12 +ACT 21:35!13 +ACT 21:35!14 +ACT 21:35!15 +ACT 21:35!16 +ACT 21:35!17 +ACT 21:36!2 +ACT 21:36!1 +ACT 21:36!3 +ACT 21:36!4 +ACT 21:36!5 +ACT 21:36!6 +ACT 21:36!7 +ACT 21:36!8 +ACT 21:36!9 +ACT 21:37!2 +ACT 21:37!1 +ACT 21:37!3 +ACT 21:37!4 +ACT 21:37!5 +ACT 21:37!6 +ACT 21:37!7 +ACT 21:37!8 +ACT 21:37!9 +ACT 21:37!10 +ACT 21:37!11 +ACT 21:37!12 +ACT 21:37!13 +ACT 21:37!14 +ACT 21:37!15 +ACT 21:37!16 +ACT 21:37!17 +ACT 21:37!18 +ACT 21:37!20 +ACT 21:37!19 +ACT 21:37!21 +ACT 21:37!22 +ACT 21:37!23 +ACT 21:38!2 +ACT 21:38!1 +ACT 21:38!3 +ACT 21:38!4 +ACT 21:38!5 +ACT 21:38!6 +ACT 21:38!7 +ACT 21:38!8 +ACT 21:38!9 +ACT 21:38!10 +ACT 21:38!11 +ACT 21:38!12 +ACT 21:38!13 +ACT 21:38!14 +ACT 21:38!15 +ACT 21:38!16 +ACT 21:38!17 +ACT 21:38!18 +ACT 21:38!19 +ACT 21:38!20 +ACT 21:38!21 +ACT 21:38!22 +ACT 21:39!2 +ACT 21:39!1 +ACT 21:39!3 +ACT 21:39!4 +ACT 21:39!7 +ACT 21:39!5 +ACT 21:39!8 +ACT 21:39!6 +ACT 21:39!9 +ACT 21:39!10 +ACT 21:39!11 +ACT 21:39!12 +ACT 21:39!13 +ACT 21:39!14 +ACT 21:39!15 +ACT 21:39!16 +ACT 21:39!18 +ACT 21:39!17 +ACT 21:39!19 +ACT 21:39!20 +ACT 21:39!21 +ACT 21:39!22 +ACT 21:39!23 +ACT 21:39!24 +ACT 21:39!25 +ACT 21:40!2 +ACT 21:40!1 +ACT 21:40!3 +ACT 21:40!4 +ACT 21:40!5 +ACT 21:40!6 +ACT 21:40!7 +ACT 21:40!8 +ACT 21:40!9 +ACT 21:40!10 +ACT 21:40!11 +ACT 21:40!12 +ACT 21:40!13 +ACT 21:40!14 +ACT 21:40!16 +ACT 21:40!15 +ACT 21:40!17 +ACT 21:40!18 +ACT 21:40!19 +ACT 21:40!20 +ACT 21:40!21 +ACT 21:40!22 +ACT 21:40!23 +ACT 22:1!1 +ACT 22:1!2 +ACT 22:1!3 +ACT 22:1!4 +ACT 22:1!5 +ACT 22:1!6 +ACT 22:1!7 +ACT 22:1!8 +ACT 22:1!9 +ACT 22:1!10 +ACT 22:1!11 +ACT 22:2!2 +ACT 22:2!1 +ACT 22:2!3 +ACT 22:2!4 +ACT 22:2!5 +ACT 22:2!6 +ACT 22:2!7 +ACT 22:2!8 +ACT 22:2!9 +ACT 22:2!10 +ACT 22:2!11 +ACT 22:2!12 +ACT 22:2!13 +ACT 22:3!1 +ACT 22:3!2 +ACT 22:3!3 +ACT 22:3!4 +ACT 22:3!5 +ACT 22:3!6 +ACT 22:3!7 +ACT 22:3!8 +ACT 22:3!9 +ACT 22:3!11 +ACT 22:3!10 +ACT 22:3!12 +ACT 22:3!13 +ACT 22:3!14 +ACT 22:3!15 +ACT 22:3!16 +ACT 22:3!17 +ACT 22:3!18 +ACT 22:3!19 +ACT 22:3!20 +ACT 22:3!21 +ACT 22:3!22 +ACT 22:3!23 +ACT 22:3!24 +ACT 22:3!25 +ACT 22:3!27 +ACT 22:3!26 +ACT 22:3!28 +ACT 22:3!29 +ACT 22:3!30 +ACT 22:3!31 +ACT 22:3!32 +ACT 22:3!33 +ACT 22:3!34 +ACT 22:4!1 +ACT 22:4!2 +ACT 22:4!3 +ACT 22:4!4 +ACT 22:4!5 +ACT 22:4!6 +ACT 22:4!7 +ACT 22:4!8 +ACT 22:4!9 +ACT 22:4!10 +ACT 22:4!11 +ACT 22:4!12 +ACT 22:4!14 +ACT 22:4!13 +ACT 22:4!15 +ACT 22:4!16 +ACT 22:5!1 +ACT 22:5!2 +ACT 22:5!3 +ACT 22:5!4 +ACT 22:5!5 +ACT 22:5!6 +ACT 22:5!7 +ACT 22:5!8 +ACT 22:5!9 +ACT 22:5!10 +ACT 22:5!11 +ACT 22:5!12 +ACT 22:5!13 +ACT 22:5!14 +ACT 22:5!15 +ACT 22:5!16 +ACT 22:5!17 +ACT 22:5!18 +ACT 22:5!19 +ACT 22:5!20 +ACT 22:5!21 +ACT 22:5!22 +ACT 22:5!23 +ACT 22:5!24 +ACT 22:5!25 +ACT 22:5!26 +ACT 22:5!27 +ACT 22:5!28 +ACT 22:5!29 +ACT 22:5!30 +ACT 22:5!31 +ACT 22:6!2 +ACT 22:6!1 +ACT 22:6!3 +ACT 22:6!4 +ACT 22:6!5 +ACT 22:6!6 +ACT 22:6!7 +ACT 22:6!8 +ACT 22:6!9 +ACT 22:6!10 +ACT 22:6!11 +ACT 22:6!12 +ACT 22:6!13 +ACT 22:6!14 +ACT 22:6!15 +ACT 22:6!16 +ACT 22:6!17 +ACT 22:6!18 +ACT 22:6!19 +ACT 22:7!2 +ACT 22:7!1 +ACT 22:7!3 +ACT 22:7!4 +ACT 22:7!5 +ACT 22:7!6 +ACT 22:7!7 +ACT 22:7!8 +ACT 22:7!9 +ACT 22:7!10 +ACT 22:7!11 +ACT 22:7!12 +ACT 22:7!13 +ACT 22:7!14 +ACT 22:7!15 +ACT 22:8!2 +ACT 22:8!1 +ACT 22:8!3 +ACT 22:8!4 +ACT 22:8!5 +ACT 22:8!6 +ACT 22:8!8 +ACT 22:8!7 +ACT 22:8!9 +ACT 22:8!10 +ACT 22:8!11 +ACT 22:8!12 +ACT 22:8!13 +ACT 22:8!14 +ACT 22:8!15 +ACT 22:8!16 +ACT 22:8!17 +ACT 22:8!18 +ACT 22:9!2 +ACT 22:9!7 +ACT 22:9!1 +ACT 22:9!3 +ACT 22:9!4 +ACT 22:9!5 +ACT 22:9!6 +ACT 22:9!8 +ACT 22:9!9 +ACT 22:9!11 +ACT 22:9!13 +ACT 22:9!14 +ACT 22:9!10 +ACT 22:9!12 +ACT 22:9!15 +ACT 22:9!16 +ACT 22:9!17 +ACT 22:10!2 +ACT 22:10!1 +ACT 22:10!3 +ACT 22:10!4 +ACT 22:10!5 +ACT 22:10!7 +ACT 22:10!6 +ACT 22:10!8 +ACT 22:10!9 +ACT 22:10!10 +ACT 22:10!11 +ACT 22:10!12 +ACT 22:10!13 +ACT 22:10!14 +ACT 22:10!15 +ACT 22:10!16 +ACT 22:10!17 +ACT 22:10!18 +ACT 22:10!19 +ACT 22:10!20 +ACT 22:10!21 +ACT 22:10!24 +ACT 22:10!22 +ACT 22:10!23 +ACT 22:11!2 +ACT 22:11!1 +ACT 22:11!3 +ACT 22:11!4 +ACT 22:11!5 +ACT 22:11!6 +ACT 22:11!7 +ACT 22:11!8 +ACT 22:11!9 +ACT 22:11!10 +ACT 22:11!11 +ACT 22:11!12 +ACT 22:11!13 +ACT 22:11!14 +ACT 22:11!15 +ACT 22:11!16 +ACT 22:11!17 +ACT 22:11!18 +ACT 22:12!2 +ACT 22:12!1 +ACT 22:12!3 +ACT 22:12!4 +ACT 22:12!5 +ACT 22:12!6 +ACT 22:12!7 +ACT 22:12!8 +ACT 22:12!9 +ACT 22:12!10 +ACT 22:12!11 +ACT 22:12!12 +ACT 22:12!13 +ACT 22:12!14 +ACT 22:13!1 +ACT 22:13!2 +ACT 22:13!3 +ACT 22:13!4 +ACT 22:13!5 +ACT 22:13!6 +ACT 22:13!7 +ACT 22:13!8 +ACT 22:13!9 +ACT 22:13!10 +ACT 22:13!11 +ACT 22:13!12 +ACT 22:13!13 +ACT 22:13!14 +ACT 22:13!15 +ACT 22:13!16 +ACT 22:13!17 +ACT 22:14!2 +ACT 22:14!1 +ACT 22:14!3 +ACT 22:14!4 +ACT 22:14!5 +ACT 22:14!6 +ACT 22:14!7 +ACT 22:14!8 +ACT 22:14!9 +ACT 22:14!10 +ACT 22:14!11 +ACT 22:14!12 +ACT 22:14!13 +ACT 22:14!14 +ACT 22:14!15 +ACT 22:14!16 +ACT 22:14!17 +ACT 22:14!18 +ACT 22:14!19 +ACT 22:14!20 +ACT 22:14!21 +ACT 22:14!22 +ACT 22:14!23 +ACT 22:14!24 +ACT 22:14!25 +ACT 22:15!1 +ACT 22:15!2 +ACT 22:15!4 +ACT 22:15!5 +ACT 22:15!6 +ACT 22:15!7 +ACT 22:15!3 +ACT 22:15!8 +ACT 22:15!9 +ACT 22:15!10 +ACT 22:15!11 +ACT 22:16!1 +ACT 22:16!2 +ACT 22:16!3 +ACT 22:16!4 +ACT 22:16!5 +ACT 22:16!6 +ACT 22:16!7 +ACT 22:16!8 +ACT 22:16!9 +ACT 22:16!10 +ACT 22:16!11 +ACT 22:16!12 +ACT 22:16!13 +ACT 22:16!14 +ACT 22:16!15 +ACT 22:17!2 +ACT 22:17!1 +ACT 22:17!3 +ACT 22:17!4 +ACT 22:17!5 +ACT 22:17!6 +ACT 22:17!7 +ACT 22:17!8 +ACT 22:17!9 +ACT 22:17!10 +ACT 22:17!11 +ACT 22:17!12 +ACT 22:17!13 +ACT 22:17!14 +ACT 22:17!15 +ACT 22:17!16 +ACT 22:18!1 +ACT 22:18!2 +ACT 22:18!3 +ACT 22:18!4 +ACT 22:18!5 +ACT 22:18!6 +ACT 22:18!7 +ACT 22:18!8 +ACT 22:18!9 +ACT 22:18!10 +ACT 22:18!11 +ACT 22:18!12 +ACT 22:18!13 +ACT 22:18!14 +ACT 22:18!15 +ACT 22:18!16 +ACT 22:18!17 +ACT 22:18!18 +ACT 22:18!19 +ACT 22:19!1 +ACT 22:19!2 +ACT 22:19!3 +ACT 22:19!4 +ACT 22:19!5 +ACT 22:19!6 +ACT 22:19!7 +ACT 22:19!8 +ACT 22:19!9 +ACT 22:19!10 +ACT 22:19!11 +ACT 22:19!12 +ACT 22:19!13 +ACT 22:19!14 +ACT 22:19!15 +ACT 22:19!16 +ACT 22:19!17 +ACT 22:19!18 +ACT 22:20!1 +ACT 22:20!2 +ACT 22:20!3 +ACT 22:20!4 +ACT 22:20!5 +ACT 22:20!6 +ACT 22:20!7 +ACT 22:20!8 +ACT 22:20!9 +ACT 22:20!10 +ACT 22:20!11 +ACT 22:20!12 +ACT 22:20!13 +ACT 22:20!14 +ACT 22:20!15 +ACT 22:20!16 +ACT 22:20!17 +ACT 22:20!18 +ACT 22:20!19 +ACT 22:20!20 +ACT 22:20!21 +ACT 22:20!22 +ACT 22:21!1 +ACT 22:21!2 +ACT 22:21!3 +ACT 22:21!4 +ACT 22:21!5 +ACT 22:21!6 +ACT 22:21!7 +ACT 22:21!8 +ACT 22:21!9 +ACT 22:21!10 +ACT 22:21!11 +ACT 22:21!12 +ACT 22:22!2 +ACT 22:22!1 +ACT 22:22!3 +ACT 22:22!4 +ACT 22:22!5 +ACT 22:22!6 +ACT 22:22!7 +ACT 22:22!8 +ACT 22:22!9 +ACT 22:22!10 +ACT 22:22!11 +ACT 22:22!12 +ACT 22:22!13 +ACT 22:22!14 +ACT 22:22!15 +ACT 22:22!16 +ACT 22:22!17 +ACT 22:22!18 +ACT 22:22!19 +ACT 22:22!21 +ACT 22:22!20 +ACT 22:22!22 +ACT 22:22!23 +ACT 22:22!24 +ACT 22:23!2 +ACT 22:23!1 +ACT 22:23!3 +ACT 22:23!4 +ACT 22:23!5 +ACT 22:23!6 +ACT 22:23!7 +ACT 22:23!8 +ACT 22:23!9 +ACT 22:23!10 +ACT 22:23!11 +ACT 22:23!12 +ACT 22:23!13 +ACT 22:24!1 +ACT 22:24!2 +ACT 22:24!3 +ACT 22:24!4 +ACT 22:24!5 +ACT 22:24!6 +ACT 22:24!7 +ACT 22:24!8 +ACT 22:24!9 +ACT 22:24!10 +ACT 22:24!11 +ACT 22:24!12 +ACT 22:24!13 +ACT 22:24!14 +ACT 22:24!15 +ACT 22:24!16 +ACT 22:24!17 +ACT 22:24!18 +ACT 22:24!19 +ACT 22:24!20 +ACT 22:25!2 +ACT 22:25!1 +ACT 22:25!3 +ACT 22:25!4 +ACT 22:25!5 +ACT 22:25!6 +ACT 22:25!7 +ACT 22:25!8 +ACT 22:25!9 +ACT 22:25!10 +ACT 22:25!11 +ACT 22:25!12 +ACT 22:25!13 +ACT 22:25!14 +ACT 22:25!15 +ACT 22:25!16 +ACT 22:25!17 +ACT 22:25!18 +ACT 22:25!21 +ACT 22:25!19 +ACT 22:25!20 +ACT 22:26!2 +ACT 22:26!1 +ACT 22:26!3 +ACT 22:26!4 +ACT 22:26!5 +ACT 22:26!6 +ACT 22:26!7 +ACT 22:26!8 +ACT 22:26!9 +ACT 22:26!11 +ACT 22:26!10 +ACT 22:26!12 +ACT 22:26!14 +ACT 22:26!13 +ACT 22:26!15 +ACT 22:26!16 +ACT 22:26!17 +ACT 22:26!18 +ACT 22:27!2 +ACT 22:27!1 +ACT 22:27!3 +ACT 22:27!4 +ACT 22:27!5 +ACT 22:27!6 +ACT 22:27!7 +ACT 22:27!8 +ACT 22:27!9 +ACT 22:27!10 +ACT 22:27!11 +ACT 22:27!13 +ACT 22:27!12 +ACT 22:27!14 +ACT 22:27!15 +ACT 22:28!2 +ACT 22:28!1 +ACT 22:28!3 +ACT 22:28!4 +ACT 22:28!5 +ACT 22:28!6 +ACT 22:28!7 +ACT 22:28!8 +ACT 22:28!9 +ACT 22:28!10 +ACT 22:28!11 +ACT 22:28!13 +ACT 22:28!12 +ACT 22:28!14 +ACT 22:28!15 +ACT 22:28!17 +ACT 22:28!16 +ACT 22:28!18 +ACT 22:28!19 +ACT 22:29!2 +ACT 22:29!1 +ACT 22:29!3 +ACT 22:29!4 +ACT 22:29!5 +ACT 22:29!6 +ACT 22:29!7 +ACT 22:29!8 +ACT 22:29!9 +ACT 22:29!13 +ACT 22:29!10 +ACT 22:29!11 +ACT 22:29!12 +ACT 22:29!14 +ACT 22:29!15 +ACT 22:29!16 +ACT 22:29!17 +ACT 22:29!18 +ACT 22:29!19 +ACT 22:29!20 +ACT 22:29!21 +ACT 22:29!22 +ACT 22:29!23 +ACT 22:30!2 +ACT 22:30!1 +ACT 22:30!3 +ACT 22:30!4 +ACT 22:30!5 +ACT 22:30!6 +ACT 22:30!7 +ACT 22:30!8 +ACT 22:30!9 +ACT 22:30!10 +ACT 22:30!11 +ACT 22:30!12 +ACT 22:30!13 +ACT 22:30!14 +ACT 22:30!15 +ACT 22:30!16 +ACT 22:30!17 +ACT 22:30!18 +ACT 22:30!19 +ACT 22:30!20 +ACT 22:30!21 +ACT 22:30!22 +ACT 22:30!23 +ACT 22:30!24 +ACT 22:30!25 +ACT 22:30!26 +ACT 22:30!27 +ACT 22:30!28 +ACT 22:30!29 +ACT 22:30!30 +ACT 22:30!31 +ACT 23:1!2 +ACT 23:1!3 +ACT 23:1!4 +ACT 23:1!1 +ACT 23:1!5 +ACT 23:1!6 +ACT 23:1!7 +ACT 23:1!8 +ACT 23:1!9 +ACT 23:1!10 +ACT 23:1!11 +ACT 23:1!12 +ACT 23:1!13 +ACT 23:1!14 +ACT 23:1!15 +ACT 23:1!16 +ACT 23:1!17 +ACT 23:1!18 +ACT 23:1!19 +ACT 23:1!20 +ACT 23:2!2 +ACT 23:2!1 +ACT 23:2!3 +ACT 23:2!4 +ACT 23:2!5 +ACT 23:2!6 +ACT 23:2!7 +ACT 23:2!8 +ACT 23:2!9 +ACT 23:2!10 +ACT 23:2!11 +ACT 23:2!12 +ACT 23:3!1 +ACT 23:3!2 +ACT 23:3!3 +ACT 23:3!4 +ACT 23:3!5 +ACT 23:3!6 +ACT 23:3!7 +ACT 23:3!8 +ACT 23:3!9 +ACT 23:3!10 +ACT 23:3!11 +ACT 23:3!12 +ACT 23:3!13 +ACT 23:3!14 +ACT 23:3!15 +ACT 23:3!16 +ACT 23:3!17 +ACT 23:3!18 +ACT 23:3!19 +ACT 23:3!20 +ACT 23:3!21 +ACT 23:3!22 +ACT 23:3!23 +ACT 23:3!24 +ACT 23:3!25 +ACT 23:3!26 +ACT 23:4!2 +ACT 23:4!1 +ACT 23:4!3 +ACT 23:4!4 +ACT 23:4!5 +ACT 23:4!6 +ACT 23:4!7 +ACT 23:4!8 +ACT 23:4!9 +ACT 23:5!2 +ACT 23:5!1 +ACT 23:5!3 +ACT 23:5!4 +ACT 23:5!5 +ACT 23:5!6 +ACT 23:5!7 +ACT 23:5!8 +ACT 23:5!9 +ACT 23:5!10 +ACT 23:5!12 +ACT 23:5!11 +ACT 23:5!13 +ACT 23:5!14 +ACT 23:5!15 +ACT 23:5!16 +ACT 23:5!17 +ACT 23:5!18 +ACT 23:5!19 +ACT 23:5!20 +ACT 23:6!2 +ACT 23:6!3 +ACT 23:6!4 +ACT 23:6!1 +ACT 23:6!5 +ACT 23:6!6 +ACT 23:6!7 +ACT 23:6!8 +ACT 23:6!9 +ACT 23:6!10 +ACT 23:6!12 +ACT 23:6!11 +ACT 23:6!13 +ACT 23:6!14 +ACT 23:6!15 +ACT 23:6!16 +ACT 23:6!17 +ACT 23:6!18 +ACT 23:6!19 +ACT 23:6!20 +ACT 23:6!21 +ACT 23:6!22 +ACT 23:6!23 +ACT 23:6!24 +ACT 23:6!25 +ACT 23:6!26 +ACT 23:6!27 +ACT 23:6!28 +ACT 23:6!29 +ACT 23:6!30 +ACT 23:6!31 +ACT 23:7!2 +ACT 23:7!1 +ACT 23:7!3 +ACT 23:7!4 +ACT 23:7!5 +ACT 23:7!6 +ACT 23:7!7 +ACT 23:7!8 +ACT 23:7!9 +ACT 23:7!10 +ACT 23:7!11 +ACT 23:7!12 +ACT 23:7!13 +ACT 23:7!14 +ACT 23:8!2 +ACT 23:8!1 +ACT 23:8!3 +ACT 23:8!4 +ACT 23:8!5 +ACT 23:8!6 +ACT 23:8!7 +ACT 23:8!8 +ACT 23:8!9 +ACT 23:8!10 +ACT 23:8!12 +ACT 23:8!11 +ACT 23:8!13 +ACT 23:8!14 +ACT 23:8!15 +ACT 23:9!2 +ACT 23:9!1 +ACT 23:9!3 +ACT 23:9!4 +ACT 23:9!5 +ACT 23:9!6 +ACT 23:9!7 +ACT 23:9!8 +ACT 23:9!9 +ACT 23:9!10 +ACT 23:9!11 +ACT 23:9!12 +ACT 23:9!13 +ACT 23:9!14 +ACT 23:9!15 +ACT 23:9!16 +ACT 23:9!17 +ACT 23:9!18 +ACT 23:9!19 +ACT 23:9!20 +ACT 23:9!21 +ACT 23:9!22 +ACT 23:9!24 +ACT 23:9!23 +ACT 23:9!25 +ACT 23:9!26 +ACT 23:9!27 +ACT 23:9!28 +ACT 23:9!29 +ACT 23:10!2 +ACT 23:10!1 +ACT 23:10!4 +ACT 23:10!3 +ACT 23:10!6 +ACT 23:10!7 +ACT 23:10!5 +ACT 23:10!8 +ACT 23:10!9 +ACT 23:10!10 +ACT 23:10!11 +ACT 23:10!12 +ACT 23:10!13 +ACT 23:10!14 +ACT 23:10!15 +ACT 23:10!16 +ACT 23:10!17 +ACT 23:10!18 +ACT 23:10!19 +ACT 23:10!20 +ACT 23:10!21 +ACT 23:10!22 +ACT 23:10!24 +ACT 23:10!23 +ACT 23:10!25 +ACT 23:10!26 +ACT 23:10!27 +ACT 23:11!2 +ACT 23:11!1 +ACT 23:11!3 +ACT 23:11!4 +ACT 23:11!5 +ACT 23:11!6 +ACT 23:11!7 +ACT 23:11!8 +ACT 23:11!9 +ACT 23:11!10 +ACT 23:11!12 +ACT 23:11!11 +ACT 23:11!13 +ACT 23:11!14 +ACT 23:11!15 +ACT 23:11!16 +ACT 23:11!17 +ACT 23:11!18 +ACT 23:11!19 +ACT 23:11!21 +ACT 23:11!20 +ACT 23:11!22 +ACT 23:11!23 +ACT 23:11!24 +ACT 23:11!25 +ACT 23:12!2 +ACT 23:12!1 +ACT 23:12!3 +ACT 23:12!4 +ACT 23:12!5 +ACT 23:12!6 +ACT 23:12!7 +ACT 23:12!8 +ACT 23:12!9 +ACT 23:12!10 +ACT 23:12!11 +ACT 23:12!12 +ACT 23:12!13 +ACT 23:12!14 +ACT 23:12!15 +ACT 23:12!16 +ACT 23:12!17 +ACT 23:12!18 +ACT 23:12!19 +ACT 23:13!2 +ACT 23:13!1 +ACT 23:13!3 +ACT 23:13!4 +ACT 23:13!5 +ACT 23:13!6 +ACT 23:13!7 +ACT 23:13!8 +ACT 23:13!9 +ACT 23:14!1 +ACT 23:14!2 +ACT 23:14!3 +ACT 23:14!4 +ACT 23:14!5 +ACT 23:14!6 +ACT 23:14!7 +ACT 23:14!8 +ACT 23:14!9 +ACT 23:14!10 +ACT 23:14!11 +ACT 23:14!12 +ACT 23:14!13 +ACT 23:14!14 +ACT 23:14!15 +ACT 23:14!16 +ACT 23:14!17 +ACT 23:14!18 +ACT 23:15!2 +ACT 23:15!1 +ACT 23:15!3 +ACT 23:15!4 +ACT 23:15!5 +ACT 23:15!6 +ACT 23:15!7 +ACT 23:15!8 +ACT 23:15!9 +ACT 23:15!10 +ACT 23:15!11 +ACT 23:15!12 +ACT 23:15!13 +ACT 23:15!14 +ACT 23:15!15 +ACT 23:15!16 +ACT 23:15!17 +ACT 23:15!18 +ACT 23:15!19 +ACT 23:15!20 +ACT 23:15!21 +ACT 23:15!23 +ACT 23:15!22 +ACT 23:15!24 +ACT 23:15!25 +ACT 23:15!26 +ACT 23:15!27 +ACT 23:15!28 +ACT 23:15!29 +ACT 23:15!30 +ACT 23:15!31 +ACT 23:15!32 +ACT 23:16!2 +ACT 23:16!3 +ACT 23:16!4 +ACT 23:16!5 +ACT 23:16!6 +ACT 23:16!7 +ACT 23:16!1 +ACT 23:16!8 +ACT 23:16!9 +ACT 23:16!10 +ACT 23:16!11 +ACT 23:16!12 +ACT 23:16!13 +ACT 23:16!14 +ACT 23:16!15 +ACT 23:16!16 +ACT 23:16!17 +ACT 23:16!18 +ACT 23:17!2 +ACT 23:17!3 +ACT 23:17!4 +ACT 23:17!1 +ACT 23:17!5 +ACT 23:17!6 +ACT 23:17!7 +ACT 23:17!8 +ACT 23:17!9 +ACT 23:17!10 +ACT 23:17!11 +ACT 23:17!12 +ACT 23:17!13 +ACT 23:17!14 +ACT 23:17!15 +ACT 23:17!17 +ACT 23:17!16 +ACT 23:17!18 +ACT 23:17!19 +ACT 23:17!20 +ACT 23:18!2 +ACT 23:18!3 +ACT 23:18!1 +ACT 23:18!4 +ACT 23:18!5 +ACT 23:18!6 +ACT 23:18!7 +ACT 23:18!8 +ACT 23:18!9 +ACT 23:18!10 +ACT 23:18!11 +ACT 23:18!12 +ACT 23:18!13 +ACT 23:18!14 +ACT 23:18!15 +ACT 23:18!16 +ACT 23:18!17 +ACT 23:18!18 +ACT 23:18!19 +ACT 23:18!20 +ACT 23:18!21 +ACT 23:18!22 +ACT 23:18!23 +ACT 23:18!24 +ACT 23:18!25 +ACT 23:18!26 +ACT 23:18!27 +ACT 23:19!2 +ACT 23:19!6 +ACT 23:19!7 +ACT 23:19!1 +ACT 23:19!3 +ACT 23:19!4 +ACT 23:19!5 +ACT 23:19!8 +ACT 23:19!9 +ACT 23:19!10 +ACT 23:19!11 +ACT 23:19!12 +ACT 23:19!13 +ACT 23:19!14 +ACT 23:19!15 +ACT 23:19!17 +ACT 23:19!18 +ACT 23:19!16 +ACT 23:20!2 +ACT 23:20!1 +ACT 23:20!3 +ACT 23:20!4 +ACT 23:20!5 +ACT 23:20!6 +ACT 23:20!7 +ACT 23:20!8 +ACT 23:20!9 +ACT 23:20!10 +ACT 23:20!11 +ACT 23:20!12 +ACT 23:20!13 +ACT 23:20!14 +ACT 23:20!15 +ACT 23:20!16 +ACT 23:20!17 +ACT 23:20!18 +ACT 23:20!19 +ACT 23:20!20 +ACT 23:20!21 +ACT 23:20!22 +ACT 23:20!23 +ACT 23:20!24 +ACT 23:21!2 +ACT 23:21!1 +ACT 23:21!3 +ACT 23:21!4 +ACT 23:21!5 +ACT 23:21!7 +ACT 23:21!6 +ACT 23:21!8 +ACT 23:21!9 +ACT 23:21!10 +ACT 23:21!11 +ACT 23:21!12 +ACT 23:21!13 +ACT 23:21!14 +ACT 23:21!15 +ACT 23:21!16 +ACT 23:21!17 +ACT 23:21!18 +ACT 23:21!19 +ACT 23:21!20 +ACT 23:21!21 +ACT 23:21!22 +ACT 23:21!23 +ACT 23:21!24 +ACT 23:21!25 +ACT 23:21!26 +ACT 23:21!27 +ACT 23:21!28 +ACT 23:21!29 +ACT 23:21!30 +ACT 23:21!31 +ACT 23:21!32 +ACT 23:21!33 +ACT 23:22!2 +ACT 23:22!3 +ACT 23:22!1 +ACT 23:22!4 +ACT 23:22!5 +ACT 23:22!6 +ACT 23:22!7 +ACT 23:22!8 +ACT 23:22!9 +ACT 23:22!10 +ACT 23:22!11 +ACT 23:22!12 +ACT 23:22!13 +ACT 23:22!14 +ACT 23:22!15 +ACT 23:23!1 +ACT 23:23!2 +ACT 23:23!3 +ACT 23:23!4 +ACT 23:23!5 +ACT 23:23!6 +ACT 23:23!7 +ACT 23:23!8 +ACT 23:23!9 +ACT 23:23!10 +ACT 23:23!15 +ACT 23:23!16 +ACT 23:23!17 +ACT 23:23!18 +ACT 23:23!19 +ACT 23:23!20 +ACT 23:23!11 +ACT 23:23!12 +ACT 23:23!13 +ACT 23:23!14 +ACT 23:23!21 +ACT 23:23!22 +ACT 23:23!23 +ACT 23:23!24 +ACT 23:23!25 +ACT 23:24!2 +ACT 23:24!1 +ACT 23:24!3 +ACT 23:24!4 +ACT 23:24!5 +ACT 23:24!6 +ACT 23:24!7 +ACT 23:24!8 +ACT 23:24!9 +ACT 23:24!10 +ACT 23:24!11 +ACT 23:24!12 +ACT 23:25!1 +ACT 23:25!2 +ACT 23:25!3 +ACT 23:25!4 +ACT 23:25!5 +ACT 23:25!6 +ACT 23:26!1 +ACT 23:26!2 +ACT 23:26!3 +ACT 23:26!4 +ACT 23:26!5 +ACT 23:26!6 +ACT 23:26!7 +ACT 23:27!1 +ACT 23:27!2 +ACT 23:27!3 +ACT 23:27!4 +ACT 23:27!5 +ACT 23:27!6 +ACT 23:27!7 +ACT 23:27!8 +ACT 23:27!9 +ACT 23:27!10 +ACT 23:27!11 +ACT 23:27!12 +ACT 23:27!13 +ACT 23:27!14 +ACT 23:27!15 +ACT 23:27!16 +ACT 23:27!17 +ACT 23:27!18 +ACT 23:27!19 +ACT 23:27!20 +ACT 23:27!21 +ACT 23:28!2 +ACT 23:28!1 +ACT 23:28!3 +ACT 23:28!4 +ACT 23:28!5 +ACT 23:28!6 +ACT 23:28!7 +ACT 23:28!8 +ACT 23:28!9 +ACT 23:28!10 +ACT 23:28!11 +ACT 23:28!12 +ACT 23:28!13 +ACT 23:28!14 +ACT 23:29!2 +ACT 23:29!1 +ACT 23:29!3 +ACT 23:29!4 +ACT 23:29!5 +ACT 23:29!6 +ACT 23:29!7 +ACT 23:29!8 +ACT 23:29!10 +ACT 23:29!9 +ACT 23:29!11 +ACT 23:29!12 +ACT 23:29!13 +ACT 23:29!14 +ACT 23:29!16 +ACT 23:29!15 +ACT 23:30!2 +ACT 23:30!1 +ACT 23:30!3 +ACT 23:30!4 +ACT 23:30!5 +ACT 23:30!6 +ACT 23:30!7 +ACT 23:30!8 +ACT 23:30!9 +ACT 23:30!10 +ACT 23:30!11 +ACT 23:30!12 +ACT 23:30!13 +ACT 23:30!14 +ACT 23:30!15 +ACT 23:30!16 +ACT 23:30!17 +ACT 23:30!18 +ACT 23:30!19 +ACT 23:30!20 +ACT 23:30!21 +ACT 23:31!2 +ACT 23:31!3 +ACT 23:31!1 +ACT 23:31!4 +ACT 23:31!5 +ACT 23:31!6 +ACT 23:31!7 +ACT 23:31!8 +ACT 23:31!9 +ACT 23:31!10 +ACT 23:31!11 +ACT 23:31!12 +ACT 23:31!13 +ACT 23:31!14 +ACT 23:31!15 +ACT 23:31!16 +ACT 23:31!17 +ACT 23:32!2 +ACT 23:32!1 +ACT 23:32!3 +ACT 23:32!4 +ACT 23:32!5 +ACT 23:32!6 +ACT 23:32!7 +ACT 23:32!8 +ACT 23:32!9 +ACT 23:32!10 +ACT 23:32!11 +ACT 23:32!12 +ACT 23:32!13 +ACT 23:33!1 +ACT 23:33!2 +ACT 23:33!3 +ACT 23:33!4 +ACT 23:33!5 +ACT 23:33!6 +ACT 23:33!7 +ACT 23:33!8 +ACT 23:33!9 +ACT 23:33!10 +ACT 23:33!11 +ACT 23:33!12 +ACT 23:33!13 +ACT 23:33!14 +ACT 23:33!15 +ACT 23:33!16 +ACT 23:34!2 +ACT 23:34!1 +ACT 23:34!3 +ACT 23:34!4 +ACT 23:34!5 +ACT 23:34!6 +ACT 23:34!7 +ACT 23:34!8 +ACT 23:34!9 +ACT 23:34!10 +ACT 23:34!11 +ACT 23:34!12 +ACT 23:34!13 +ACT 23:35!3 +ACT 23:35!1 +ACT 23:35!2 +ACT 23:35!4 +ACT 23:35!5 +ACT 23:35!6 +ACT 23:35!7 +ACT 23:35!8 +ACT 23:35!9 +ACT 23:35!10 +ACT 23:35!11 +ACT 23:35!12 +ACT 23:35!13 +ACT 23:35!14 +ACT 23:35!15 +ACT 23:35!16 +ACT 23:35!17 +ACT 24:1!2 +ACT 24:1!1 +ACT 24:1!3 +ACT 24:1!4 +ACT 24:1!5 +ACT 24:1!6 +ACT 24:1!7 +ACT 24:1!8 +ACT 24:1!9 +ACT 24:1!10 +ACT 24:1!11 +ACT 24:1!12 +ACT 24:1!13 +ACT 24:1!14 +ACT 24:1!15 +ACT 24:1!16 +ACT 24:1!17 +ACT 24:1!18 +ACT 24:1!19 +ACT 24:1!20 +ACT 24:1!21 +ACT 24:1!22 +ACT 24:2!2 +ACT 24:2!1 +ACT 24:2!3 +ACT 24:2!4 +ACT 24:2!5 +ACT 24:2!6 +ACT 24:2!7 +ACT 24:2!8 +ACT 24:2!9 +ACT 24:2!10 +ACT 24:2!11 +ACT 24:2!12 +ACT 24:2!13 +ACT 24:2!14 +ACT 24:2!15 +ACT 24:2!16 +ACT 24:2!17 +ACT 24:2!18 +ACT 24:2!19 +ACT 24:2!20 +ACT 24:2!21 +ACT 24:2!22 +ACT 24:2!23 +ACT 24:3!2 +ACT 24:3!1 +ACT 24:3!3 +ACT 24:3!4 +ACT 24:3!5 +ACT 24:3!8 +ACT 24:3!9 +ACT 24:3!10 +ACT 24:3!6 +ACT 24:3!7 +ACT 24:4!2 +ACT 24:4!1 +ACT 24:4!3 +ACT 24:4!4 +ACT 24:4!5 +ACT 24:4!6 +ACT 24:4!7 +ACT 24:4!8 +ACT 24:4!9 +ACT 24:4!10 +ACT 24:4!11 +ACT 24:4!12 +ACT 24:4!13 +ACT 24:4!14 +ACT 24:4!15 +ACT 24:5!2 +ACT 24:5!1 +ACT 24:5!3 +ACT 24:5!4 +ACT 24:5!5 +ACT 24:5!6 +ACT 24:5!7 +ACT 24:5!8 +ACT 24:5!9 +ACT 24:5!10 +ACT 24:5!11 +ACT 24:5!12 +ACT 24:5!13 +ACT 24:5!14 +ACT 24:5!15 +ACT 24:5!16 +ACT 24:5!18 +ACT 24:5!17 +ACT 24:5!19 +ACT 24:5!20 +ACT 24:5!21 +ACT 24:5!22 +ACT 24:6!1 +ACT 24:6!2 +ACT 24:6!3 +ACT 24:6!4 +ACT 24:6!6 +ACT 24:6!5 +ACT 24:6!7 +ACT 24:6!8 +ACT 24:6!9 +ACT 24:8!1 +ACT 24:8!2 +ACT 24:8!3 +ACT 24:8!4 +ACT 24:8!5 +ACT 24:8!6 +ACT 24:8!7 +ACT 24:8!8 +ACT 24:8!9 +ACT 24:8!10 +ACT 24:8!11 +ACT 24:8!12 +ACT 24:8!13 +ACT 24:9!2 +ACT 24:9!1 +ACT 24:9!3 +ACT 24:9!4 +ACT 24:9!5 +ACT 24:9!6 +ACT 24:9!7 +ACT 24:9!8 +ACT 24:9!9 +ACT 24:10!2 +ACT 24:10!1 +ACT 24:10!3 +ACT 24:10!4 +ACT 24:10!5 +ACT 24:10!6 +ACT 24:10!7 +ACT 24:10!8 +ACT 24:10!9 +ACT 24:10!10 +ACT 24:10!11 +ACT 24:10!12 +ACT 24:10!13 +ACT 24:10!14 +ACT 24:10!15 +ACT 24:10!16 +ACT 24:10!17 +ACT 24:10!18 +ACT 24:10!19 +ACT 24:10!20 +ACT 24:10!21 +ACT 24:10!22 +ACT 24:10!23 +ACT 24:10!24 +ACT 24:11!1 +ACT 24:11!2 +ACT 24:11!3 +ACT 24:11!4 +ACT 24:11!5 +ACT 24:11!6 +ACT 24:11!7 +ACT 24:11!8 +ACT 24:11!9 +ACT 24:11!10 +ACT 24:11!11 +ACT 24:11!12 +ACT 24:11!13 +ACT 24:11!14 +ACT 24:11!15 +ACT 24:11!16 +ACT 24:12!1 +ACT 24:12!6 +ACT 24:12!7 +ACT 24:12!8 +ACT 24:12!9 +ACT 24:12!10 +ACT 24:12!11 +ACT 24:12!12 +ACT 24:12!14 +ACT 24:12!13 +ACT 24:12!2 +ACT 24:12!3 +ACT 24:12!4 +ACT 24:12!5 +ACT 24:12!15 +ACT 24:12!16 +ACT 24:12!17 +ACT 24:12!18 +ACT 24:12!19 +ACT 24:12!20 +ACT 24:12!21 +ACT 24:12!22 +ACT 24:13!1 +ACT 24:13!3 +ACT 24:13!2 +ACT 24:13!4 +ACT 24:13!5 +ACT 24:13!6 +ACT 24:13!7 +ACT 24:13!8 +ACT 24:13!9 +ACT 24:14!2 +ACT 24:14!1 +ACT 24:14!3 +ACT 24:14!4 +ACT 24:14!5 +ACT 24:14!6 +ACT 24:14!7 +ACT 24:14!8 +ACT 24:14!9 +ACT 24:14!10 +ACT 24:14!11 +ACT 24:14!12 +ACT 24:14!13 +ACT 24:14!14 +ACT 24:14!15 +ACT 24:14!16 +ACT 24:14!17 +ACT 24:14!18 +ACT 24:14!19 +ACT 24:14!20 +ACT 24:14!21 +ACT 24:14!22 +ACT 24:14!23 +ACT 24:14!24 +ACT 24:14!25 +ACT 24:14!26 +ACT 24:14!27 +ACT 24:14!28 +ACT 24:15!2 +ACT 24:15!1 +ACT 24:15!3 +ACT 24:15!4 +ACT 24:15!5 +ACT 24:15!6 +ACT 24:15!7 +ACT 24:15!8 +ACT 24:15!9 +ACT 24:15!10 +ACT 24:15!12 +ACT 24:15!13 +ACT 24:15!11 +ACT 24:15!15 +ACT 24:15!14 +ACT 24:15!16 +ACT 24:15!17 +ACT 24:16!1 +ACT 24:16!2 +ACT 24:16!3 +ACT 24:16!4 +ACT 24:16!5 +ACT 24:16!6 +ACT 24:16!7 +ACT 24:16!8 +ACT 24:16!9 +ACT 24:16!10 +ACT 24:16!11 +ACT 24:16!12 +ACT 24:16!13 +ACT 24:16!14 +ACT 24:16!15 +ACT 24:16!16 +ACT 24:17!3 +ACT 24:17!1 +ACT 24:17!2 +ACT 24:17!4 +ACT 24:17!5 +ACT 24:17!6 +ACT 24:17!7 +ACT 24:17!8 +ACT 24:17!9 +ACT 24:17!10 +ACT 24:17!11 +ACT 24:17!12 +ACT 24:17!13 +ACT 24:18!1 +ACT 24:18!2 +ACT 24:18!3 +ACT 24:18!4 +ACT 24:18!5 +ACT 24:18!6 +ACT 24:18!7 +ACT 24:18!8 +ACT 24:18!9 +ACT 24:18!10 +ACT 24:18!11 +ACT 24:18!12 +ACT 24:18!13 +ACT 24:18!14 +ACT 24:19!2 +ACT 24:19!1 +ACT 24:19!3 +ACT 24:19!4 +ACT 24:19!5 +ACT 24:19!6 +ACT 24:19!7 +ACT 24:19!9 +ACT 24:19!10 +ACT 24:19!11 +ACT 24:19!12 +ACT 24:19!13 +ACT 24:19!8 +ACT 24:19!14 +ACT 24:19!15 +ACT 24:19!16 +ACT 24:19!17 +ACT 24:19!18 +ACT 24:20!1 +ACT 24:20!2 +ACT 24:20!3 +ACT 24:20!4 +ACT 24:20!5 +ACT 24:20!7 +ACT 24:20!6 +ACT 24:20!8 +ACT 24:20!9 +ACT 24:20!10 +ACT 24:20!11 +ACT 24:20!12 +ACT 24:21!1 +ACT 24:21!2 +ACT 24:21!3 +ACT 24:21!4 +ACT 24:21!5 +ACT 24:21!6 +ACT 24:21!7 +ACT 24:21!8 +ACT 24:21!9 +ACT 24:21!10 +ACT 24:21!11 +ACT 24:21!12 +ACT 24:21!13 +ACT 24:21!14 +ACT 24:21!15 +ACT 24:21!16 +ACT 24:21!17 +ACT 24:21!18 +ACT 24:21!19 +ACT 24:22!2 +ACT 24:22!1 +ACT 24:22!3 +ACT 24:22!4 +ACT 24:22!5 +ACT 24:22!6 +ACT 24:22!7 +ACT 24:22!8 +ACT 24:22!9 +ACT 24:22!10 +ACT 24:22!11 +ACT 24:22!12 +ACT 24:22!13 +ACT 24:22!14 +ACT 24:22!15 +ACT 24:22!16 +ACT 24:22!17 +ACT 24:22!18 +ACT 24:22!19 +ACT 24:22!20 +ACT 24:22!21 +ACT 24:23!1 +ACT 24:23!2 +ACT 24:23!3 +ACT 24:23!4 +ACT 24:23!5 +ACT 24:23!7 +ACT 24:23!6 +ACT 24:23!8 +ACT 24:23!9 +ACT 24:23!11 +ACT 24:23!10 +ACT 24:23!12 +ACT 24:23!13 +ACT 24:23!14 +ACT 24:23!15 +ACT 24:23!16 +ACT 24:24!2 +ACT 24:24!1 +ACT 24:24!3 +ACT 24:24!4 +ACT 24:24!6 +ACT 24:24!7 +ACT 24:24!5 +ACT 24:24!8 +ACT 24:24!9 +ACT 24:24!10 +ACT 24:24!11 +ACT 24:24!12 +ACT 24:24!13 +ACT 24:24!14 +ACT 24:24!15 +ACT 24:24!16 +ACT 24:24!17 +ACT 24:24!18 +ACT 24:24!19 +ACT 24:24!20 +ACT 24:24!21 +ACT 24:24!22 +ACT 24:24!23 +ACT 24:24!24 +ACT 24:24!25 +ACT 24:24!26 +ACT 24:25!2 +ACT 24:25!1 +ACT 24:25!3 +ACT 24:25!4 +ACT 24:25!5 +ACT 24:25!6 +ACT 24:25!7 +ACT 24:25!8 +ACT 24:25!9 +ACT 24:25!10 +ACT 24:25!11 +ACT 24:25!12 +ACT 24:25!13 +ACT 24:25!14 +ACT 24:25!15 +ACT 24:25!16 +ACT 24:25!17 +ACT 24:25!18 +ACT 24:25!19 +ACT 24:25!20 +ACT 24:25!21 +ACT 24:25!23 +ACT 24:25!22 +ACT 24:25!24 +ACT 24:25!25 +ACT 24:25!26 +ACT 24:26!1 +ACT 24:26!2 +ACT 24:26!3 +ACT 24:26!4 +ACT 24:26!5 +ACT 24:26!6 +ACT 24:26!7 +ACT 24:26!8 +ACT 24:26!9 +ACT 24:26!10 +ACT 24:26!11 +ACT 24:26!12 +ACT 24:26!13 +ACT 24:26!14 +ACT 24:26!15 +ACT 24:26!16 +ACT 24:26!17 +ACT 24:27!2 +ACT 24:27!1 +ACT 24:27!3 +ACT 24:27!4 +ACT 24:27!6 +ACT 24:27!7 +ACT 24:27!5 +ACT 24:27!8 +ACT 24:27!9 +ACT 24:27!11 +ACT 24:27!10 +ACT 24:27!12 +ACT 24:27!13 +ACT 24:27!14 +ACT 24:27!15 +ACT 24:27!16 +ACT 24:27!17 +ACT 24:27!18 +ACT 24:27!19 +ACT 24:27!20 +ACT 24:27!21 +ACT 25:1!2 +ACT 25:1!1 +ACT 25:1!3 +ACT 25:1!4 +ACT 25:1!5 +ACT 25:1!6 +ACT 25:1!7 +ACT 25:1!8 +ACT 25:1!9 +ACT 25:1!10 +ACT 25:1!11 +ACT 25:1!12 +ACT 25:1!13 +ACT 25:2!2 +ACT 25:2!1 +ACT 25:2!3 +ACT 25:2!4 +ACT 25:2!5 +ACT 25:2!6 +ACT 25:2!7 +ACT 25:2!8 +ACT 25:2!9 +ACT 25:2!10 +ACT 25:2!11 +ACT 25:2!12 +ACT 25:2!13 +ACT 25:2!14 +ACT 25:2!15 +ACT 25:2!16 +ACT 25:3!1 +ACT 25:3!2 +ACT 25:3!3 +ACT 25:3!4 +ACT 25:3!5 +ACT 25:3!6 +ACT 25:3!7 +ACT 25:3!8 +ACT 25:3!9 +ACT 25:3!10 +ACT 25:3!11 +ACT 25:3!12 +ACT 25:3!13 +ACT 25:3!14 +ACT 25:3!15 +ACT 25:3!16 +ACT 25:4!2 +ACT 25:4!3 +ACT 25:4!1 +ACT 25:4!4 +ACT 25:4!5 +ACT 25:4!6 +ACT 25:4!7 +ACT 25:4!8 +ACT 25:4!9 +ACT 25:4!10 +ACT 25:4!12 +ACT 25:4!11 +ACT 25:4!13 +ACT 25:4!14 +ACT 25:4!15 +ACT 25:4!16 +ACT 25:5!2 +ACT 25:5!5 +ACT 25:5!1 +ACT 25:5!3 +ACT 25:5!4 +ACT 25:5!6 +ACT 25:5!7 +ACT 25:5!15 +ACT 25:5!16 +ACT 25:5!8 +ACT 25:5!9 +ACT 25:5!14 +ACT 25:5!10 +ACT 25:5!11 +ACT 25:5!12 +ACT 25:5!13 +ACT 25:6!2 +ACT 25:6!1 +ACT 25:6!3 +ACT 25:6!4 +ACT 25:6!5 +ACT 25:6!6 +ACT 25:6!7 +ACT 25:6!8 +ACT 25:6!9 +ACT 25:6!10 +ACT 25:6!11 +ACT 25:6!12 +ACT 25:6!13 +ACT 25:6!14 +ACT 25:6!15 +ACT 25:6!16 +ACT 25:6!17 +ACT 25:6!18 +ACT 25:6!19 +ACT 25:6!20 +ACT 25:6!21 +ACT 25:6!22 +ACT 25:6!23 +ACT 25:7!2 +ACT 25:7!1 +ACT 25:7!3 +ACT 25:7!4 +ACT 25:7!5 +ACT 25:7!6 +ACT 25:7!7 +ACT 25:7!8 +ACT 25:7!9 +ACT 25:7!10 +ACT 25:7!11 +ACT 25:7!12 +ACT 25:7!13 +ACT 25:7!14 +ACT 25:7!15 +ACT 25:7!16 +ACT 25:7!19 +ACT 25:7!17 +ACT 25:7!18 +ACT 25:8!1 +ACT 25:8!2 +ACT 25:8!3 +ACT 25:8!4 +ACT 25:8!5 +ACT 25:8!6 +ACT 25:8!7 +ACT 25:8!8 +ACT 25:8!9 +ACT 25:8!10 +ACT 25:8!11 +ACT 25:8!12 +ACT 25:8!13 +ACT 25:8!14 +ACT 25:8!15 +ACT 25:8!16 +ACT 25:8!17 +ACT 25:8!18 +ACT 25:8!19 +ACT 25:9!3 +ACT 25:9!1 +ACT 25:9!2 +ACT 25:9!4 +ACT 25:9!5 +ACT 25:9!6 +ACT 25:9!7 +ACT 25:9!8 +ACT 25:9!9 +ACT 25:9!10 +ACT 25:9!11 +ACT 25:9!12 +ACT 25:9!13 +ACT 25:9!14 +ACT 25:9!15 +ACT 25:9!16 +ACT 25:9!17 +ACT 25:9!18 +ACT 25:9!19 +ACT 25:9!20 +ACT 25:9!21 +ACT 25:9!22 +ACT 25:10!2 +ACT 25:10!1 +ACT 25:10!3 +ACT 25:10!4 +ACT 25:10!6 +ACT 25:10!7 +ACT 25:10!8 +ACT 25:10!9 +ACT 25:10!5 +ACT 25:10!10 +ACT 25:10!11 +ACT 25:10!12 +ACT 25:10!14 +ACT 25:10!13 +ACT 25:10!15 +ACT 25:10!16 +ACT 25:10!17 +ACT 25:10!18 +ACT 25:10!19 +ACT 25:10!20 +ACT 25:10!21 +ACT 25:10!22 +ACT 25:11!3 +ACT 25:11!2 +ACT 25:11!1 +ACT 25:11!4 +ACT 25:11!5 +ACT 25:11!6 +ACT 25:11!7 +ACT 25:11!9 +ACT 25:11!8 +ACT 25:11!10 +ACT 25:11!11 +ACT 25:11!12 +ACT 25:11!13 +ACT 25:11!15 +ACT 25:11!14 +ACT 25:11!16 +ACT 25:11!17 +ACT 25:11!18 +ACT 25:11!19 +ACT 25:11!20 +ACT 25:11!21 +ACT 25:11!22 +ACT 25:11!24 +ACT 25:11!23 +ACT 25:11!25 +ACT 25:11!26 +ACT 25:11!27 +ACT 25:11!28 +ACT 25:12!1 +ACT 25:12!2 +ACT 25:12!3 +ACT 25:12!4 +ACT 25:12!5 +ACT 25:12!6 +ACT 25:12!7 +ACT 25:12!8 +ACT 25:12!9 +ACT 25:12!10 +ACT 25:12!11 +ACT 25:12!12 +ACT 25:12!13 +ACT 25:13!2 +ACT 25:13!1 +ACT 25:13!4 +ACT 25:13!3 +ACT 25:13!5 +ACT 25:13!6 +ACT 25:13!7 +ACT 25:13!8 +ACT 25:13!9 +ACT 25:13!10 +ACT 25:13!11 +ACT 25:13!12 +ACT 25:13!13 +ACT 25:13!14 +ACT 25:13!15 +ACT 25:14!2 +ACT 25:14!1 +ACT 25:14!3 +ACT 25:14!4 +ACT 25:14!5 +ACT 25:14!6 +ACT 25:14!7 +ACT 25:14!8 +ACT 25:14!9 +ACT 25:14!10 +ACT 25:14!11 +ACT 25:14!12 +ACT 25:14!13 +ACT 25:14!14 +ACT 25:14!15 +ACT 25:14!16 +ACT 25:14!17 +ACT 25:14!18 +ACT 25:14!19 +ACT 25:14!20 +ACT 25:14!21 +ACT 25:14!22 +ACT 25:14!23 +ACT 25:15!1 +ACT 25:15!2 +ACT 25:15!3 +ACT 25:15!4 +ACT 25:15!5 +ACT 25:15!6 +ACT 25:15!7 +ACT 25:15!8 +ACT 25:15!9 +ACT 25:15!10 +ACT 25:15!11 +ACT 25:15!12 +ACT 25:15!13 +ACT 25:15!14 +ACT 25:15!15 +ACT 25:15!16 +ACT 25:15!17 +ACT 25:15!18 +ACT 25:16!1 +ACT 25:16!2 +ACT 25:16!3 +ACT 25:16!4 +ACT 25:16!5 +ACT 25:16!6 +ACT 25:16!7 +ACT 25:16!8 +ACT 25:16!9 +ACT 25:16!10 +ACT 25:16!11 +ACT 25:16!12 +ACT 25:16!13 +ACT 25:16!14 +ACT 25:16!15 +ACT 25:16!16 +ACT 25:16!17 +ACT 25:16!18 +ACT 25:16!19 +ACT 25:16!20 +ACT 25:16!22 +ACT 25:16!21 +ACT 25:16!23 +ACT 25:16!24 +ACT 25:16!25 +ACT 25:16!26 +ACT 25:16!27 +ACT 25:17!2 +ACT 25:17!1 +ACT 25:17!3 +ACT 25:17!4 +ACT 25:17!5 +ACT 25:17!6 +ACT 25:17!7 +ACT 25:17!8 +ACT 25:17!9 +ACT 25:17!10 +ACT 25:17!11 +ACT 25:17!12 +ACT 25:17!13 +ACT 25:17!14 +ACT 25:17!15 +ACT 25:17!16 +ACT 25:18!1 +ACT 25:18!2 +ACT 25:18!3 +ACT 25:18!4 +ACT 25:18!5 +ACT 25:18!8 +ACT 25:18!6 +ACT 25:18!7 +ACT 25:18!9 +ACT 25:18!10 +ACT 25:18!11 +ACT 25:18!12 +ACT 25:19!2 +ACT 25:19!1 +ACT 25:19!3 +ACT 25:19!4 +ACT 25:19!5 +ACT 25:19!6 +ACT 25:19!7 +ACT 25:19!8 +ACT 25:19!9 +ACT 25:19!10 +ACT 25:19!11 +ACT 25:19!12 +ACT 25:19!13 +ACT 25:19!14 +ACT 25:19!15 +ACT 25:19!16 +ACT 25:19!20 +ACT 25:19!17 +ACT 25:19!18 +ACT 25:19!19 +ACT 25:20!2 +ACT 25:20!3 +ACT 25:20!1 +ACT 25:20!4 +ACT 25:20!5 +ACT 25:20!6 +ACT 25:20!7 +ACT 25:20!8 +ACT 25:20!9 +ACT 25:20!10 +ACT 25:20!11 +ACT 25:20!12 +ACT 25:20!13 +ACT 25:20!14 +ACT 25:20!15 +ACT 25:20!16 +ACT 25:20!17 +ACT 25:21!2 +ACT 25:21!1 +ACT 25:21!3 +ACT 25:21!4 +ACT 25:21!5 +ACT 25:21!6 +ACT 25:21!7 +ACT 25:21!8 +ACT 25:21!9 +ACT 25:21!10 +ACT 25:21!11 +ACT 25:21!12 +ACT 25:21!13 +ACT 25:21!14 +ACT 25:21!15 +ACT 25:21!16 +ACT 25:21!17 +ACT 25:21!18 +ACT 25:21!19 +ACT 25:21!20 +ACT 25:22!2 +ACT 25:22!1 +ACT 25:22!3 +ACT 25:22!4 +ACT 25:22!5 +ACT 25:22!6 +ACT 25:22!7 +ACT 25:22!8 +ACT 25:22!9 +ACT 25:22!10 +ACT 25:22!11 +ACT 25:22!13 +ACT 25:22!12 +ACT 25:22!14 +ACT 25:22!15 +ACT 25:23!2 +ACT 25:23!1 +ACT 25:23!3 +ACT 25:23!4 +ACT 25:23!5 +ACT 25:23!6 +ACT 25:23!7 +ACT 25:23!8 +ACT 25:23!9 +ACT 25:23!10 +ACT 25:23!11 +ACT 25:23!12 +ACT 25:23!13 +ACT 25:23!14 +ACT 25:23!15 +ACT 25:23!16 +ACT 25:23!17 +ACT 25:23!18 +ACT 25:23!19 +ACT 25:23!20 +ACT 25:23!21 +ACT 25:23!22 +ACT 25:23!23 +ACT 25:23!24 +ACT 25:23!25 +ACT 25:23!26 +ACT 25:23!27 +ACT 25:23!28 +ACT 25:23!29 +ACT 25:23!30 +ACT 25:23!31 +ACT 25:23!32 +ACT 25:23!33 +ACT 25:23!34 +ACT 25:24!1 +ACT 25:24!2 +ACT 25:24!3 +ACT 25:24!4 +ACT 25:24!5 +ACT 25:24!6 +ACT 25:24!7 +ACT 25:24!8 +ACT 25:24!9 +ACT 25:24!10 +ACT 25:24!11 +ACT 25:24!12 +ACT 25:24!13 +ACT 25:24!14 +ACT 25:24!15 +ACT 25:24!16 +ACT 25:24!17 +ACT 25:24!18 +ACT 25:24!19 +ACT 25:24!20 +ACT 25:24!21 +ACT 25:24!22 +ACT 25:24!23 +ACT 25:24!24 +ACT 25:24!25 +ACT 25:24!26 +ACT 25:24!27 +ACT 25:24!28 +ACT 25:24!29 +ACT 25:24!30 +ACT 25:24!31 +ACT 25:24!32 +ACT 25:24!33 +ACT 25:24!34 +ACT 25:25!2 +ACT 25:25!1 +ACT 25:25!3 +ACT 25:25!4 +ACT 25:25!5 +ACT 25:25!7 +ACT 25:25!6 +ACT 25:25!8 +ACT 25:25!10 +ACT 25:25!9 +ACT 25:25!11 +ACT 25:25!12 +ACT 25:25!13 +ACT 25:25!14 +ACT 25:25!15 +ACT 25:25!16 +ACT 25:26!1 +ACT 25:26!2 +ACT 25:26!3 +ACT 25:26!4 +ACT 25:26!5 +ACT 25:26!6 +ACT 25:26!7 +ACT 25:26!8 +ACT 25:26!9 +ACT 25:26!10 +ACT 25:26!11 +ACT 25:26!12 +ACT 25:26!13 +ACT 25:26!14 +ACT 25:26!15 +ACT 25:26!16 +ACT 25:26!17 +ACT 25:26!18 +ACT 25:26!19 +ACT 25:26!20 +ACT 25:26!21 +ACT 25:26!22 +ACT 25:26!23 +ACT 25:26!24 +ACT 25:26!25 +ACT 25:26!26 +ACT 25:26!27 +ACT 25:27!2 +ACT 25:27!1 +ACT 25:27!3 +ACT 25:27!4 +ACT 25:27!5 +ACT 25:27!6 +ACT 25:27!7 +ACT 25:27!8 +ACT 25:27!9 +ACT 25:27!10 +ACT 25:27!11 +ACT 25:27!12 +ACT 25:27!13 +ACT 26:1!2 +ACT 26:1!1 +ACT 26:1!3 +ACT 26:1!4 +ACT 26:1!5 +ACT 26:1!6 +ACT 26:1!7 +ACT 26:1!8 +ACT 26:1!9 +ACT 26:1!10 +ACT 26:1!11 +ACT 26:1!12 +ACT 26:1!13 +ACT 26:1!14 +ACT 26:1!15 +ACT 26:1!16 +ACT 26:1!17 +ACT 26:1!18 +ACT 26:2!7 +ACT 26:2!8 +ACT 26:2!1 +ACT 26:2!2 +ACT 26:2!3 +ACT 26:2!4 +ACT 26:2!5 +ACT 26:2!6 +ACT 26:2!9 +ACT 26:2!10 +ACT 26:2!11 +ACT 26:2!12 +ACT 26:2!13 +ACT 26:2!15 +ACT 26:2!16 +ACT 26:2!14 +ACT 26:3!1 +ACT 26:3!3 +ACT 26:3!4 +ACT 26:3!2 +ACT 26:3!5 +ACT 26:3!6 +ACT 26:3!7 +ACT 26:3!8 +ACT 26:3!10 +ACT 26:3!9 +ACT 26:3!11 +ACT 26:3!12 +ACT 26:3!13 +ACT 26:3!14 +ACT 26:3!15 +ACT 26:3!16 +ACT 26:3!17 +ACT 26:4!2 +ACT 26:4!3 +ACT 26:4!1 +ACT 26:4!4 +ACT 26:4!5 +ACT 26:4!6 +ACT 26:4!7 +ACT 26:4!8 +ACT 26:4!9 +ACT 26:4!10 +ACT 26:4!11 +ACT 26:4!12 +ACT 26:4!13 +ACT 26:4!14 +ACT 26:4!15 +ACT 26:4!17 +ACT 26:4!16 +ACT 26:4!18 +ACT 26:4!19 +ACT 26:4!20 +ACT 26:4!21 +ACT 26:5!1 +ACT 26:5!2 +ACT 26:5!3 +ACT 26:5!4 +ACT 26:5!5 +ACT 26:5!6 +ACT 26:5!7 +ACT 26:5!8 +ACT 26:5!9 +ACT 26:5!10 +ACT 26:5!11 +ACT 26:5!12 +ACT 26:5!13 +ACT 26:5!14 +ACT 26:5!15 +ACT 26:5!16 +ACT 26:6!1 +ACT 26:6!2 +ACT 26:6!3 +ACT 26:6!4 +ACT 26:6!5 +ACT 26:6!6 +ACT 26:6!7 +ACT 26:6!8 +ACT 26:6!9 +ACT 26:6!11 +ACT 26:6!12 +ACT 26:6!13 +ACT 26:6!14 +ACT 26:6!10 +ACT 26:6!15 +ACT 26:6!16 +ACT 26:7!1 +ACT 26:7!2 +ACT 26:7!13 +ACT 26:7!3 +ACT 26:7!4 +ACT 26:7!5 +ACT 26:7!6 +ACT 26:7!7 +ACT 26:7!8 +ACT 26:7!9 +ACT 26:7!10 +ACT 26:7!11 +ACT 26:7!12 +ACT 26:7!14 +ACT 26:7!15 +ACT 26:7!16 +ACT 26:7!17 +ACT 26:7!18 +ACT 26:7!19 +ACT 26:7!20 +ACT 26:8!1 +ACT 26:8!2 +ACT 26:8!3 +ACT 26:8!4 +ACT 26:8!5 +ACT 26:8!6 +ACT 26:8!7 +ACT 26:8!8 +ACT 26:8!9 +ACT 26:8!10 +ACT 26:9!2 +ACT 26:9!3 +ACT 26:9!1 +ACT 26:9!4 +ACT 26:9!5 +ACT 26:9!12 +ACT 26:9!6 +ACT 26:9!7 +ACT 26:9!8 +ACT 26:9!9 +ACT 26:9!10 +ACT 26:9!11 +ACT 26:9!13 +ACT 26:9!14 +ACT 26:9!15 +ACT 26:10!1 +ACT 26:10!2 +ACT 26:10!3 +ACT 26:10!4 +ACT 26:10!5 +ACT 26:10!6 +ACT 26:10!8 +ACT 26:10!7 +ACT 26:10!9 +ACT 26:10!10 +ACT 26:10!11 +ACT 26:10!12 +ACT 26:10!13 +ACT 26:10!14 +ACT 26:10!15 +ACT 26:10!16 +ACT 26:10!17 +ACT 26:10!18 +ACT 26:10!19 +ACT 26:10!20 +ACT 26:10!22 +ACT 26:10!21 +ACT 26:10!23 +ACT 26:10!24 +ACT 26:10!25 +ACT 26:11!1 +ACT 26:11!2 +ACT 26:11!3 +ACT 26:11!4 +ACT 26:11!5 +ACT 26:11!6 +ACT 26:11!7 +ACT 26:11!8 +ACT 26:11!9 +ACT 26:11!10 +ACT 26:11!12 +ACT 26:11!11 +ACT 26:11!13 +ACT 26:11!14 +ACT 26:11!15 +ACT 26:11!16 +ACT 26:11!17 +ACT 26:11!18 +ACT 26:11!19 +ACT 26:11!20 +ACT 26:11!21 +ACT 26:12!1 +ACT 26:12!2 +ACT 26:12!3 +ACT 26:12!4 +ACT 26:12!5 +ACT 26:12!6 +ACT 26:12!7 +ACT 26:12!8 +ACT 26:12!9 +ACT 26:12!10 +ACT 26:12!11 +ACT 26:12!12 +ACT 26:12!13 +ACT 26:13!1 +ACT 26:13!2 +ACT 26:13!3 +ACT 26:13!4 +ACT 26:13!5 +ACT 26:13!6 +ACT 26:13!8 +ACT 26:13!9 +ACT 26:13!10 +ACT 26:13!11 +ACT 26:13!12 +ACT 26:13!13 +ACT 26:13!14 +ACT 26:13!16 +ACT 26:13!15 +ACT 26:13!17 +ACT 26:13!18 +ACT 26:13!19 +ACT 26:13!20 +ACT 26:13!21 +ACT 26:13!7 +ACT 26:14!2 +ACT 26:14!1 +ACT 26:14!4 +ACT 26:14!3 +ACT 26:14!5 +ACT 26:14!6 +ACT 26:14!7 +ACT 26:14!8 +ACT 26:14!9 +ACT 26:14!10 +ACT 26:14!11 +ACT 26:14!12 +ACT 26:14!13 +ACT 26:14!14 +ACT 26:14!15 +ACT 26:14!16 +ACT 26:14!17 +ACT 26:14!18 +ACT 26:14!19 +ACT 26:14!20 +ACT 26:14!21 +ACT 26:14!22 +ACT 26:14!23 +ACT 26:14!24 +ACT 26:14!25 +ACT 26:15!2 +ACT 26:15!1 +ACT 26:15!3 +ACT 26:15!4 +ACT 26:15!5 +ACT 26:15!6 +ACT 26:15!8 +ACT 26:15!7 +ACT 26:15!9 +ACT 26:15!10 +ACT 26:15!11 +ACT 26:15!12 +ACT 26:15!13 +ACT 26:15!14 +ACT 26:15!15 +ACT 26:15!16 +ACT 26:16!1 +ACT 26:16!2 +ACT 26:16!3 +ACT 26:16!4 +ACT 26:16!5 +ACT 26:16!6 +ACT 26:16!7 +ACT 26:16!8 +ACT 26:16!11 +ACT 26:16!9 +ACT 26:16!10 +ACT 26:16!12 +ACT 26:16!13 +ACT 26:16!14 +ACT 26:16!15 +ACT 26:16!16 +ACT 26:16!17 +ACT 26:16!18 +ACT 26:16!20 +ACT 26:16!19 +ACT 26:16!21 +ACT 26:16!22 +ACT 26:16!24 +ACT 26:16!23 +ACT 26:16!25 +ACT 26:16!26 +ACT 26:17!1 +ACT 26:17!2 +ACT 26:17!3 +ACT 26:17!4 +ACT 26:17!5 +ACT 26:17!6 +ACT 26:17!7 +ACT 26:17!8 +ACT 26:17!9 +ACT 26:17!10 +ACT 26:17!11 +ACT 26:17!12 +ACT 26:17!13 +ACT 26:17!14 +ACT 26:18!1 +ACT 26:18!2 +ACT 26:18!3 +ACT 26:18!4 +ACT 26:18!5 +ACT 26:18!6 +ACT 26:18!7 +ACT 26:18!8 +ACT 26:18!9 +ACT 26:18!10 +ACT 26:18!11 +ACT 26:18!12 +ACT 26:18!13 +ACT 26:18!14 +ACT 26:18!15 +ACT 26:18!16 +ACT 26:18!17 +ACT 26:18!18 +ACT 26:18!19 +ACT 26:18!20 +ACT 26:18!21 +ACT 26:18!22 +ACT 26:18!23 +ACT 26:18!24 +ACT 26:18!25 +ACT 26:18!26 +ACT 26:18!27 +ACT 26:18!28 +ACT 26:18!29 +ACT 26:18!30 +ACT 26:18!31 +ACT 26:19!1 +ACT 26:19!2 +ACT 26:19!3 +ACT 26:19!4 +ACT 26:19!5 +ACT 26:19!6 +ACT 26:19!7 +ACT 26:19!8 +ACT 26:19!9 +ACT 26:20!1 +ACT 26:20!6 +ACT 26:20!2 +ACT 26:20!3 +ACT 26:20!4 +ACT 26:20!5 +ACT 26:20!7 +ACT 26:20!8 +ACT 26:20!10 +ACT 26:20!9 +ACT 26:20!11 +ACT 26:20!12 +ACT 26:20!13 +ACT 26:20!14 +ACT 26:20!15 +ACT 26:20!16 +ACT 26:20!17 +ACT 26:20!18 +ACT 26:20!19 +ACT 26:20!20 +ACT 26:20!21 +ACT 26:20!22 +ACT 26:20!23 +ACT 26:20!24 +ACT 26:20!25 +ACT 26:20!26 +ACT 26:20!27 +ACT 26:20!28 +ACT 26:20!29 +ACT 26:21!1 +ACT 26:21!2 +ACT 26:21!4 +ACT 26:21!3 +ACT 26:21!5 +ACT 26:21!6 +ACT 26:21!7 +ACT 26:21!8 +ACT 26:21!9 +ACT 26:21!10 +ACT 26:22!2 +ACT 26:22!3 +ACT 26:22!1 +ACT 26:22!4 +ACT 26:22!5 +ACT 26:22!6 +ACT 26:22!7 +ACT 26:22!8 +ACT 26:22!9 +ACT 26:22!10 +ACT 26:22!11 +ACT 26:22!12 +ACT 26:22!13 +ACT 26:22!15 +ACT 26:22!14 +ACT 26:22!16 +ACT 26:22!17 +ACT 26:22!18 +ACT 26:22!20 +ACT 26:22!19 +ACT 26:22!21 +ACT 26:22!26 +ACT 26:22!27 +ACT 26:22!22 +ACT 26:22!23 +ACT 26:22!24 +ACT 26:22!28 +ACT 26:22!29 +ACT 26:22!25 +ACT 26:23!1 +ACT 26:23!2 +ACT 26:23!3 +ACT 26:23!4 +ACT 26:23!5 +ACT 26:23!6 +ACT 26:23!7 +ACT 26:23!8 +ACT 26:23!9 +ACT 26:23!11 +ACT 26:23!10 +ACT 26:23!12 +ACT 26:23!14 +ACT 26:23!13 +ACT 26:23!15 +ACT 26:23!16 +ACT 26:23!17 +ACT 26:23!18 +ACT 26:24!2 +ACT 26:24!1 +ACT 26:24!3 +ACT 26:24!4 +ACT 26:24!5 +ACT 26:24!6 +ACT 26:24!7 +ACT 26:24!8 +ACT 26:24!9 +ACT 26:24!10 +ACT 26:24!11 +ACT 26:24!12 +ACT 26:24!13 +ACT 26:24!14 +ACT 26:24!16 +ACT 26:24!15 +ACT 26:24!17 +ACT 26:24!18 +ACT 26:24!19 +ACT 26:25!2 +ACT 26:25!1 +ACT 26:25!3 +ACT 26:25!6 +ACT 26:25!7 +ACT 26:25!8 +ACT 26:25!4 +ACT 26:25!5 +ACT 26:25!9 +ACT 26:25!10 +ACT 26:25!11 +ACT 26:25!12 +ACT 26:25!13 +ACT 26:25!14 +ACT 26:26!2 +ACT 26:26!1 +ACT 26:26!3 +ACT 26:26!4 +ACT 26:26!5 +ACT 26:26!6 +ACT 26:26!7 +ACT 26:26!8 +ACT 26:26!9 +ACT 26:26!10 +ACT 26:26!11 +ACT 26:26!13 +ACT 26:26!12 +ACT 26:26!14 +ACT 26:26!15 +ACT 26:26!16 +ACT 26:26!17 +ACT 26:26!18 +ACT 26:26!20 +ACT 26:26!19 +ACT 26:26!21 +ACT 26:26!24 +ACT 26:26!22 +ACT 26:26!23 +ACT 26:26!25 +ACT 26:27!2 +ACT 26:27!3 +ACT 26:27!1 +ACT 26:27!4 +ACT 26:27!5 +ACT 26:27!6 +ACT 26:27!7 +ACT 26:27!8 +ACT 26:28!2 +ACT 26:28!1 +ACT 26:28!3 +ACT 26:28!4 +ACT 26:28!5 +ACT 26:28!6 +ACT 26:28!7 +ACT 26:28!8 +ACT 26:28!9 +ACT 26:28!10 +ACT 26:28!11 +ACT 26:28!12 +ACT 26:29!2 +ACT 26:29!1 +ACT 26:29!3 +ACT 26:29!5 +ACT 26:29!4 +ACT 26:29!6 +ACT 26:29!7 +ACT 26:29!8 +ACT 26:29!9 +ACT 26:29!10 +ACT 26:29!11 +ACT 26:29!12 +ACT 26:29!13 +ACT 26:29!14 +ACT 26:29!15 +ACT 26:29!16 +ACT 26:29!17 +ACT 26:29!18 +ACT 26:29!19 +ACT 26:29!20 +ACT 26:29!21 +ACT 26:29!22 +ACT 26:29!23 +ACT 26:29!24 +ACT 26:29!25 +ACT 26:29!26 +ACT 26:29!27 +ACT 26:29!28 +ACT 26:29!29 +ACT 26:29!30 +ACT 26:29!31 +ACT 26:29!32 +ACT 26:29!33 +ACT 26:30!1 +ACT 26:30!2 +ACT 26:30!3 +ACT 26:30!4 +ACT 26:30!5 +ACT 26:30!6 +ACT 26:30!7 +ACT 26:30!9 +ACT 26:30!8 +ACT 26:30!10 +ACT 26:30!11 +ACT 26:30!12 +ACT 26:30!13 +ACT 26:30!14 +ACT 26:31!1 +ACT 26:31!2 +ACT 26:31!3 +ACT 26:31!4 +ACT 26:31!5 +ACT 26:31!6 +ACT 26:31!7 +ACT 26:31!8 +ACT 26:31!9 +ACT 26:31!10 +ACT 26:31!11 +ACT 26:31!12 +ACT 26:31!13 +ACT 26:31!14 +ACT 26:31!15 +ACT 26:31!16 +ACT 26:32!2 +ACT 26:32!1 +ACT 26:32!3 +ACT 26:32!4 +ACT 26:32!5 +ACT 26:32!6 +ACT 26:32!7 +ACT 26:32!8 +ACT 26:32!9 +ACT 26:32!10 +ACT 26:32!11 +ACT 26:32!12 +ACT 26:32!13 +ACT 26:32!14 +ACT 27:1!2 +ACT 27:1!1 +ACT 27:1!3 +ACT 27:1!4 +ACT 27:1!5 +ACT 27:1!6 +ACT 27:1!7 +ACT 27:1!8 +ACT 27:1!9 +ACT 27:1!10 +ACT 27:1!12 +ACT 27:1!11 +ACT 27:1!13 +ACT 27:1!14 +ACT 27:1!15 +ACT 27:1!16 +ACT 27:1!17 +ACT 27:1!18 +ACT 27:1!19 +ACT 27:1!20 +ACT 27:1!21 +ACT 27:1!22 +ACT 27:2!2 +ACT 27:2!1 +ACT 27:2!3 +ACT 27:2!4 +ACT 27:2!5 +ACT 27:2!6 +ACT 27:2!7 +ACT 27:2!8 +ACT 27:2!9 +ACT 27:2!10 +ACT 27:2!11 +ACT 27:2!12 +ACT 27:2!13 +ACT 27:2!14 +ACT 27:2!15 +ACT 27:2!16 +ACT 27:2!17 +ACT 27:2!18 +ACT 27:2!19 +ACT 27:3!2 +ACT 27:3!1 +ACT 27:3!3 +ACT 27:3!4 +ACT 27:3!5 +ACT 27:3!6 +ACT 27:3!8 +ACT 27:3!9 +ACT 27:3!10 +ACT 27:3!7 +ACT 27:3!11 +ACT 27:3!12 +ACT 27:3!13 +ACT 27:3!14 +ACT 27:3!15 +ACT 27:3!16 +ACT 27:3!17 +ACT 27:3!18 +ACT 27:3!19 +ACT 27:3!20 +ACT 27:4!1 +ACT 27:4!2 +ACT 27:4!3 +ACT 27:4!4 +ACT 27:4!5 +ACT 27:4!6 +ACT 27:4!7 +ACT 27:4!8 +ACT 27:4!9 +ACT 27:4!10 +ACT 27:4!11 +ACT 27:5!2 +ACT 27:5!1 +ACT 27:5!3 +ACT 27:5!4 +ACT 27:5!5 +ACT 27:5!6 +ACT 27:5!7 +ACT 27:5!8 +ACT 27:5!9 +ACT 27:5!10 +ACT 27:5!11 +ACT 27:5!12 +ACT 27:5!13 +ACT 27:5!14 +ACT 27:5!15 +ACT 27:6!3 +ACT 27:6!4 +ACT 27:6!1 +ACT 27:6!2 +ACT 27:6!5 +ACT 27:6!6 +ACT 27:6!7 +ACT 27:6!8 +ACT 27:6!9 +ACT 27:6!10 +ACT 27:6!11 +ACT 27:6!12 +ACT 27:6!13 +ACT 27:6!14 +ACT 27:7!3 +ACT 27:7!1 +ACT 27:7!2 +ACT 27:7!4 +ACT 27:7!5 +ACT 27:7!6 +ACT 27:7!7 +ACT 27:7!8 +ACT 27:7!9 +ACT 27:7!10 +ACT 27:7!11 +ACT 27:7!12 +ACT 27:7!13 +ACT 27:7!14 +ACT 27:7!15 +ACT 27:7!16 +ACT 27:7!17 +ACT 27:7!18 +ACT 27:7!19 +ACT 27:7!20 +ACT 27:7!21 +ACT 27:8!2 +ACT 27:8!1 +ACT 27:8!3 +ACT 27:8!4 +ACT 27:8!5 +ACT 27:8!6 +ACT 27:8!7 +ACT 27:8!8 +ACT 27:8!9 +ACT 27:8!10 +ACT 27:8!11 +ACT 27:8!12 +ACT 27:8!13 +ACT 27:8!15 +ACT 27:8!16 +ACT 27:8!14 +ACT 27:9!2 +ACT 27:9!1 +ACT 27:9!3 +ACT 27:9!4 +ACT 27:9!5 +ACT 27:9!6 +ACT 27:9!7 +ACT 27:9!8 +ACT 27:9!9 +ACT 27:9!10 +ACT 27:9!11 +ACT 27:9!12 +ACT 27:9!13 +ACT 27:9!14 +ACT 27:9!15 +ACT 27:9!16 +ACT 27:9!17 +ACT 27:9!18 +ACT 27:9!19 +ACT 27:9!20 +ACT 27:10!1 +ACT 27:10!2 +ACT 27:10!3 +ACT 27:10!4 +ACT 27:10!5 +ACT 27:10!6 +ACT 27:10!7 +ACT 27:10!8 +ACT 27:10!9 +ACT 27:10!10 +ACT 27:10!11 +ACT 27:10!12 +ACT 27:10!13 +ACT 27:10!14 +ACT 27:10!15 +ACT 27:10!16 +ACT 27:10!17 +ACT 27:10!18 +ACT 27:10!19 +ACT 27:10!20 +ACT 27:10!21 +ACT 27:10!22 +ACT 27:10!24 +ACT 27:10!23 +ACT 27:10!25 +ACT 27:10!26 +ACT 27:11!2 +ACT 27:11!1 +ACT 27:11!3 +ACT 27:11!4 +ACT 27:11!5 +ACT 27:11!6 +ACT 27:11!7 +ACT 27:11!8 +ACT 27:11!9 +ACT 27:11!10 +ACT 27:11!11 +ACT 27:11!12 +ACT 27:11!13 +ACT 27:11!14 +ACT 27:11!15 +ACT 27:12!2 +ACT 27:12!1 +ACT 27:12!3 +ACT 27:12!4 +ACT 27:12!5 +ACT 27:12!6 +ACT 27:12!7 +ACT 27:12!8 +ACT 27:12!9 +ACT 27:12!10 +ACT 27:12!11 +ACT 27:12!12 +ACT 27:12!13 +ACT 27:12!14 +ACT 27:12!15 +ACT 27:12!16 +ACT 27:12!17 +ACT 27:12!18 +ACT 27:12!19 +ACT 27:12!21 +ACT 27:12!22 +ACT 27:12!23 +ACT 27:12!24 +ACT 27:12!25 +ACT 27:12!26 +ACT 27:12!27 +ACT 27:12!28 +ACT 27:12!29 +ACT 27:12!20 +ACT 27:13!2 +ACT 27:13!1 +ACT 27:13!3 +ACT 27:13!4 +ACT 27:13!5 +ACT 27:13!6 +ACT 27:13!7 +ACT 27:13!8 +ACT 27:13!9 +ACT 27:13!10 +ACT 27:13!11 +ACT 27:13!12 +ACT 27:14!4 +ACT 27:14!1 +ACT 27:14!2 +ACT 27:14!3 +ACT 27:14!5 +ACT 27:14!6 +ACT 27:14!7 +ACT 27:14!8 +ACT 27:14!9 +ACT 27:14!10 +ACT 27:14!11 +ACT 27:14!12 +ACT 27:15!2 +ACT 27:15!1 +ACT 27:15!3 +ACT 27:15!4 +ACT 27:15!5 +ACT 27:15!6 +ACT 27:15!7 +ACT 27:15!8 +ACT 27:15!9 +ACT 27:15!10 +ACT 27:15!11 +ACT 27:15!12 +ACT 27:16!2 +ACT 27:16!4 +ACT 27:16!1 +ACT 27:16!3 +ACT 27:16!5 +ACT 27:16!6 +ACT 27:16!7 +ACT 27:16!8 +ACT 27:16!9 +ACT 27:16!10 +ACT 27:16!11 +ACT 27:16!12 +ACT 27:17!1 +ACT 27:17!2 +ACT 27:17!3 +ACT 27:17!4 +ACT 27:17!5 +ACT 27:17!6 +ACT 27:17!7 +ACT 27:17!9 +ACT 27:17!8 +ACT 27:17!10 +ACT 27:17!11 +ACT 27:17!12 +ACT 27:17!13 +ACT 27:17!14 +ACT 27:17!15 +ACT 27:17!16 +ACT 27:17!17 +ACT 27:17!18 +ACT 27:17!19 +ACT 27:18!2 +ACT 27:18!1 +ACT 27:18!3 +ACT 27:18!4 +ACT 27:18!5 +ACT 27:18!6 +ACT 27:18!7 +ACT 27:18!8 +ACT 27:19!1 +ACT 27:19!2 +ACT 27:19!3 +ACT 27:19!4 +ACT 27:19!5 +ACT 27:19!6 +ACT 27:19!7 +ACT 27:19!8 +ACT 27:19!9 +ACT 27:20!2 +ACT 27:20!1 +ACT 27:20!3 +ACT 27:20!4 +ACT 27:20!5 +ACT 27:20!6 +ACT 27:20!7 +ACT 27:20!8 +ACT 27:20!9 +ACT 27:20!11 +ACT 27:20!10 +ACT 27:20!12 +ACT 27:20!13 +ACT 27:20!14 +ACT 27:20!15 +ACT 27:20!16 +ACT 27:20!17 +ACT 27:20!18 +ACT 27:20!19 +ACT 27:20!20 +ACT 27:20!21 +ACT 27:21!2 +ACT 27:21!1 +ACT 27:21!3 +ACT 27:21!4 +ACT 27:21!5 +ACT 27:21!6 +ACT 27:21!7 +ACT 27:21!8 +ACT 27:21!9 +ACT 27:21!10 +ACT 27:21!11 +ACT 27:21!12 +ACT 27:21!15 +ACT 27:21!16 +ACT 27:21!14 +ACT 27:21!13 +ACT 27:21!17 +ACT 27:21!18 +ACT 27:21!19 +ACT 27:21!20 +ACT 27:21!21 +ACT 27:21!22 +ACT 27:21!23 +ACT 27:21!25 +ACT 27:21!24 +ACT 27:21!26 +ACT 27:21!27 +ACT 27:21!28 +ACT 27:21!29 +ACT 27:21!30 +ACT 27:21!31 +ACT 27:22!1 +ACT 27:22!2 +ACT 27:22!3 +ACT 27:22!4 +ACT 27:22!5 +ACT 27:22!6 +ACT 27:22!8 +ACT 27:22!7 +ACT 27:22!9 +ACT 27:22!10 +ACT 27:22!11 +ACT 27:22!12 +ACT 27:22!13 +ACT 27:22!14 +ACT 27:22!15 +ACT 27:22!16 +ACT 27:23!2 +ACT 27:23!1 +ACT 27:23!3 +ACT 27:23!4 +ACT 27:23!5 +ACT 27:23!6 +ACT 27:23!7 +ACT 27:23!8 +ACT 27:23!9 +ACT 27:23!10 +ACT 27:23!11 +ACT 27:23!12 +ACT 27:23!13 +ACT 27:23!14 +ACT 27:24!1 +ACT 27:24!2 +ACT 27:24!3 +ACT 27:24!4 +ACT 27:24!5 +ACT 27:24!6 +ACT 27:24!8 +ACT 27:24!7 +ACT 27:24!9 +ACT 27:24!10 +ACT 27:24!11 +ACT 27:24!12 +ACT 27:24!13 +ACT 27:24!14 +ACT 27:24!15 +ACT 27:24!16 +ACT 27:24!17 +ACT 27:24!18 +ACT 27:24!19 +ACT 27:25!1 +ACT 27:25!2 +ACT 27:25!3 +ACT 27:25!5 +ACT 27:25!4 +ACT 27:25!6 +ACT 27:25!7 +ACT 27:25!8 +ACT 27:25!9 +ACT 27:25!10 +ACT 27:25!11 +ACT 27:25!12 +ACT 27:25!13 +ACT 27:25!14 +ACT 27:25!15 +ACT 27:26!3 +ACT 27:26!5 +ACT 27:26!1 +ACT 27:26!2 +ACT 27:26!4 +ACT 27:26!6 +ACT 27:26!7 +ACT 27:27!2 +ACT 27:27!1 +ACT 27:27!3 +ACT 27:27!4 +ACT 27:27!5 +ACT 27:27!6 +ACT 27:27!7 +ACT 27:27!8 +ACT 27:27!9 +ACT 27:27!10 +ACT 27:27!11 +ACT 27:27!12 +ACT 27:27!13 +ACT 27:27!14 +ACT 27:27!15 +ACT 27:27!16 +ACT 27:27!17 +ACT 27:27!18 +ACT 27:27!19 +ACT 27:27!21 +ACT 27:27!20 +ACT 27:28!1 +ACT 27:28!2 +ACT 27:28!3 +ACT 27:28!4 +ACT 27:28!5 +ACT 27:28!7 +ACT 27:28!6 +ACT 27:28!8 +ACT 27:28!9 +ACT 27:28!10 +ACT 27:28!11 +ACT 27:28!12 +ACT 27:28!13 +ACT 27:28!14 +ACT 27:29!2 +ACT 27:29!1 +ACT 27:29!3 +ACT 27:29!4 +ACT 27:29!5 +ACT 27:29!6 +ACT 27:29!7 +ACT 27:29!8 +ACT 27:29!9 +ACT 27:29!10 +ACT 27:29!11 +ACT 27:29!12 +ACT 27:29!13 +ACT 27:29!14 +ACT 27:29!15 +ACT 27:29!16 +ACT 27:30!2 +ACT 27:30!1 +ACT 27:30!3 +ACT 27:30!4 +ACT 27:30!5 +ACT 27:30!6 +ACT 27:30!7 +ACT 27:30!8 +ACT 27:30!9 +ACT 27:30!10 +ACT 27:30!11 +ACT 27:30!12 +ACT 27:30!13 +ACT 27:30!14 +ACT 27:30!15 +ACT 27:30!16 +ACT 27:30!17 +ACT 27:30!18 +ACT 27:30!19 +ACT 27:30!20 +ACT 27:30!22 +ACT 27:30!21 +ACT 27:31!1 +ACT 27:31!2 +ACT 27:31!3 +ACT 27:31!4 +ACT 27:31!5 +ACT 27:31!6 +ACT 27:31!7 +ACT 27:31!8 +ACT 27:31!9 +ACT 27:31!10 +ACT 27:31!11 +ACT 27:31!12 +ACT 27:31!13 +ACT 27:31!14 +ACT 27:31!15 +ACT 27:31!16 +ACT 27:31!17 +ACT 27:31!18 +ACT 27:31!19 +ACT 27:32!1 +ACT 27:32!2 +ACT 27:32!3 +ACT 27:32!4 +ACT 27:32!5 +ACT 27:32!6 +ACT 27:32!7 +ACT 27:32!8 +ACT 27:32!9 +ACT 27:32!10 +ACT 27:32!11 +ACT 27:32!12 +ACT 27:33!2 +ACT 27:33!1 +ACT 27:33!3 +ACT 27:33!4 +ACT 27:33!5 +ACT 27:33!6 +ACT 27:33!7 +ACT 27:33!8 +ACT 27:33!9 +ACT 27:33!10 +ACT 27:33!11 +ACT 27:33!12 +ACT 27:33!13 +ACT 27:33!14 +ACT 27:33!16 +ACT 27:33!15 +ACT 27:33!17 +ACT 27:33!18 +ACT 27:33!19 +ACT 27:33!20 +ACT 27:33!21 +ACT 27:34!1 +ACT 27:34!2 +ACT 27:34!3 +ACT 27:34!4 +ACT 27:34!5 +ACT 27:34!7 +ACT 27:34!6 +ACT 27:34!8 +ACT 27:34!9 +ACT 27:34!10 +ACT 27:34!11 +ACT 27:34!12 +ACT 27:34!14 +ACT 27:34!13 +ACT 27:34!15 +ACT 27:34!16 +ACT 27:34!17 +ACT 27:34!18 +ACT 27:34!19 +ACT 27:34!20 +ACT 27:35!2 +ACT 27:35!1 +ACT 27:35!3 +ACT 27:35!4 +ACT 27:35!5 +ACT 27:35!6 +ACT 27:35!7 +ACT 27:35!8 +ACT 27:35!9 +ACT 27:35!10 +ACT 27:35!11 +ACT 27:35!12 +ACT 27:35!13 +ACT 27:35!14 +ACT 27:35!15 +ACT 27:36!2 +ACT 27:36!1 +ACT 27:36!3 +ACT 27:36!4 +ACT 27:36!5 +ACT 27:36!6 +ACT 27:36!7 +ACT 27:36!8 +ACT 27:37!2 +ACT 27:37!1 +ACT 27:37!3 +ACT 27:37!4 +ACT 27:37!5 +ACT 27:37!6 +ACT 27:37!7 +ACT 27:37!8 +ACT 27:37!9 +ACT 27:37!10 +ACT 27:37!11 +ACT 27:38!2 +ACT 27:38!1 +ACT 27:38!3 +ACT 27:38!4 +ACT 27:38!5 +ACT 27:38!6 +ACT 27:38!7 +ACT 27:38!8 +ACT 27:38!9 +ACT 27:38!10 +ACT 27:38!11 +ACT 27:38!12 +ACT 27:39!2 +ACT 27:39!1 +ACT 27:39!3 +ACT 27:39!4 +ACT 27:39!5 +ACT 27:39!6 +ACT 27:39!7 +ACT 27:39!8 +ACT 27:39!10 +ACT 27:39!12 +ACT 27:39!9 +ACT 27:39!11 +ACT 27:39!13 +ACT 27:39!14 +ACT 27:39!15 +ACT 27:39!16 +ACT 27:39!20 +ACT 27:39!21 +ACT 27:39!22 +ACT 27:39!17 +ACT 27:39!18 +ACT 27:39!19 +ACT 27:40!1 +ACT 27:40!2 +ACT 27:40!3 +ACT 27:40!4 +ACT 27:40!5 +ACT 27:40!6 +ACT 27:40!7 +ACT 27:40!8 +ACT 27:40!9 +ACT 27:40!10 +ACT 27:40!11 +ACT 27:40!12 +ACT 27:40!13 +ACT 27:40!14 +ACT 27:40!15 +ACT 27:40!16 +ACT 27:40!17 +ACT 27:40!18 +ACT 27:40!19 +ACT 27:40!20 +ACT 27:40!21 +ACT 27:40!22 +ACT 27:40!23 +ACT 27:40!24 +ACT 27:41!2 +ACT 27:41!1 +ACT 27:41!3 +ACT 27:41!4 +ACT 27:41!5 +ACT 27:41!6 +ACT 27:41!7 +ACT 27:41!8 +ACT 27:41!9 +ACT 27:41!11 +ACT 27:41!10 +ACT 27:41!12 +ACT 27:41!13 +ACT 27:41!14 +ACT 27:41!15 +ACT 27:41!17 +ACT 27:41!16 +ACT 27:41!18 +ACT 27:41!19 +ACT 27:41!20 +ACT 27:41!21 +ACT 27:41!22 +ACT 27:42!2 +ACT 27:42!1 +ACT 27:42!3 +ACT 27:42!4 +ACT 27:42!5 +ACT 27:42!6 +ACT 27:42!7 +ACT 27:42!8 +ACT 27:42!9 +ACT 27:42!10 +ACT 27:42!11 +ACT 27:42!12 +ACT 27:42!13 +ACT 27:43!2 +ACT 27:43!1 +ACT 27:43!3 +ACT 27:43!4 +ACT 27:43!5 +ACT 27:43!6 +ACT 27:43!7 +ACT 27:43!8 +ACT 27:43!9 +ACT 27:43!10 +ACT 27:43!11 +ACT 27:43!13 +ACT 27:43!12 +ACT 27:43!14 +ACT 27:43!15 +ACT 27:43!16 +ACT 27:43!17 +ACT 27:43!18 +ACT 27:43!19 +ACT 27:43!20 +ACT 27:43!21 +ACT 27:43!22 +ACT 27:44!1 +ACT 27:44!2 +ACT 27:44!3 +ACT 27:44!5 +ACT 27:44!4 +ACT 27:44!6 +ACT 27:44!7 +ACT 27:44!9 +ACT 27:44!8 +ACT 27:44!10 +ACT 27:44!11 +ACT 27:44!12 +ACT 27:44!13 +ACT 27:44!14 +ACT 27:44!15 +ACT 27:44!16 +ACT 27:44!17 +ACT 27:44!18 +ACT 27:44!19 +ACT 27:44!20 +ACT 27:44!21 +ACT 27:44!22 +ACT 27:44!23 +ACT 28:1!1 +ACT 28:1!2 +ACT 28:1!3 +ACT 28:1!4 +ACT 28:1!5 +ACT 28:1!6 +ACT 28:1!7 +ACT 28:1!8 +ACT 28:1!9 +ACT 28:2!2 +ACT 28:2!1 +ACT 28:2!3 +ACT 28:2!4 +ACT 28:2!6 +ACT 28:2!5 +ACT 28:2!7 +ACT 28:2!8 +ACT 28:2!9 +ACT 28:2!11 +ACT 28:2!10 +ACT 28:2!12 +ACT 28:2!13 +ACT 28:2!14 +ACT 28:2!15 +ACT 28:2!16 +ACT 28:2!17 +ACT 28:2!18 +ACT 28:2!19 +ACT 28:2!20 +ACT 28:2!21 +ACT 28:2!22 +ACT 28:2!23 +ACT 28:2!24 +ACT 28:3!2 +ACT 28:3!1 +ACT 28:3!3 +ACT 28:3!4 +ACT 28:3!5 +ACT 28:3!6 +ACT 28:3!7 +ACT 28:3!8 +ACT 28:3!9 +ACT 28:3!10 +ACT 28:3!11 +ACT 28:3!12 +ACT 28:3!13 +ACT 28:3!14 +ACT 28:3!15 +ACT 28:3!16 +ACT 28:3!17 +ACT 28:3!18 +ACT 28:3!19 +ACT 28:3!20 +ACT 28:3!21 +ACT 28:4!2 +ACT 28:4!1 +ACT 28:4!3 +ACT 28:4!4 +ACT 28:4!5 +ACT 28:4!6 +ACT 28:4!7 +ACT 28:4!8 +ACT 28:4!9 +ACT 28:4!10 +ACT 28:4!11 +ACT 28:4!12 +ACT 28:4!13 +ACT 28:4!14 +ACT 28:4!15 +ACT 28:4!16 +ACT 28:4!17 +ACT 28:4!18 +ACT 28:4!19 +ACT 28:4!20 +ACT 28:4!21 +ACT 28:4!22 +ACT 28:4!23 +ACT 28:4!24 +ACT 28:4!25 +ACT 28:4!26 +ACT 28:4!29 +ACT 28:4!27 +ACT 28:4!28 +ACT 28:4!30 +ACT 28:4!31 +ACT 28:5!2 +ACT 28:5!3 +ACT 28:5!1 +ACT 28:5!4 +ACT 28:5!5 +ACT 28:5!6 +ACT 28:5!7 +ACT 28:5!8 +ACT 28:5!9 +ACT 28:5!10 +ACT 28:5!11 +ACT 28:5!12 +ACT 28:6!2 +ACT 28:6!1 +ACT 28:6!3 +ACT 28:6!4 +ACT 28:6!5 +ACT 28:6!6 +ACT 28:6!7 +ACT 28:6!8 +ACT 28:6!9 +ACT 28:6!10 +ACT 28:6!13 +ACT 28:6!11 +ACT 28:6!12 +ACT 28:6!14 +ACT 28:6!15 +ACT 28:6!16 +ACT 28:6!17 +ACT 28:6!18 +ACT 28:6!19 +ACT 28:6!20 +ACT 28:6!21 +ACT 28:6!22 +ACT 28:6!23 +ACT 28:6!24 +ACT 28:6!25 +ACT 28:6!26 +ACT 28:6!27 +ACT 28:7!2 +ACT 28:7!1 +ACT 28:7!3 +ACT 28:7!4 +ACT 28:7!5 +ACT 28:7!6 +ACT 28:7!7 +ACT 28:7!8 +ACT 28:7!9 +ACT 28:7!10 +ACT 28:7!11 +ACT 28:7!12 +ACT 28:7!13 +ACT 28:7!14 +ACT 28:7!15 +ACT 28:7!16 +ACT 28:7!17 +ACT 28:7!18 +ACT 28:7!19 +ACT 28:7!20 +ACT 28:7!21 +ACT 28:7!22 +ACT 28:8!2 +ACT 28:8!1 +ACT 28:8!3 +ACT 28:8!4 +ACT 28:8!5 +ACT 28:8!6 +ACT 28:8!7 +ACT 28:8!8 +ACT 28:8!9 +ACT 28:8!10 +ACT 28:8!11 +ACT 28:8!12 +ACT 28:8!13 +ACT 28:8!16 +ACT 28:8!17 +ACT 28:8!18 +ACT 28:8!14 +ACT 28:8!15 +ACT 28:8!19 +ACT 28:8!20 +ACT 28:8!21 +ACT 28:8!22 +ACT 28:8!23 +ACT 28:8!24 +ACT 28:9!2 +ACT 28:9!1 +ACT 28:9!3 +ACT 28:9!4 +ACT 28:9!5 +ACT 28:9!6 +ACT 28:9!7 +ACT 28:9!8 +ACT 28:9!9 +ACT 28:9!10 +ACT 28:9!11 +ACT 28:9!12 +ACT 28:9!13 +ACT 28:9!14 +ACT 28:9!15 +ACT 28:10!1 +ACT 28:10!2 +ACT 28:10!3 +ACT 28:10!4 +ACT 28:10!5 +ACT 28:10!6 +ACT 28:10!7 +ACT 28:10!8 +ACT 28:10!9 +ACT 28:10!10 +ACT 28:10!11 +ACT 28:10!12 +ACT 28:10!13 +ACT 28:11!2 +ACT 28:11!1 +ACT 28:11!3 +ACT 28:11!4 +ACT 28:11!5 +ACT 28:11!6 +ACT 28:11!7 +ACT 28:11!8 +ACT 28:11!9 +ACT 28:11!10 +ACT 28:11!11 +ACT 28:11!12 +ACT 28:11!13 +ACT 28:11!14 +ACT 28:12!1 +ACT 28:12!2 +ACT 28:12!3 +ACT 28:12!4 +ACT 28:12!5 +ACT 28:12!6 +ACT 28:12!7 +ACT 28:13!1 +ACT 28:13!2 +ACT 28:13!3 +ACT 28:13!4 +ACT 28:13!5 +ACT 28:13!6 +ACT 28:13!7 +ACT 28:13!8 +ACT 28:13!9 +ACT 28:13!10 +ACT 28:13!11 +ACT 28:13!12 +ACT 28:13!13 +ACT 28:13!14 +ACT 28:13!15 +ACT 28:14!1 +ACT 28:14!2 +ACT 28:14!3 +ACT 28:14!4 +ACT 28:14!5 +ACT 28:14!6 +ACT 28:14!7 +ACT 28:14!8 +ACT 28:14!9 +ACT 28:14!10 +ACT 28:14!11 +ACT 28:14!12 +ACT 28:14!13 +ACT 28:14!14 +ACT 28:14!15 +ACT 28:15!1 +ACT 28:15!2 +ACT 28:15!3 +ACT 28:15!4 +ACT 28:15!5 +ACT 28:15!6 +ACT 28:15!7 +ACT 28:15!8 +ACT 28:15!9 +ACT 28:15!10 +ACT 28:15!11 +ACT 28:15!12 +ACT 28:15!13 +ACT 28:15!14 +ACT 28:15!15 +ACT 28:15!16 +ACT 28:15!17 +ACT 28:15!18 +ACT 28:15!19 +ACT 28:15!20 +ACT 28:15!21 +ACT 28:15!22 +ACT 28:15!23 +ACT 28:15!24 +ACT 28:15!25 +ACT 28:15!26 +ACT 28:16!2 +ACT 28:16!1 +ACT 28:16!3 +ACT 28:16!4 +ACT 28:16!5 +ACT 28:16!6 +ACT 28:16!7 +ACT 28:16!8 +ACT 28:16!9 +ACT 28:16!10 +ACT 28:16!11 +ACT 28:16!12 +ACT 28:16!13 +ACT 28:16!14 +ACT 28:16!15 +ACT 28:16!16 +ACT 28:17!2 +ACT 28:17!1 +ACT 28:17!3 +ACT 28:17!4 +ACT 28:17!5 +ACT 28:17!6 +ACT 28:17!7 +ACT 28:17!8 +ACT 28:17!9 +ACT 28:17!10 +ACT 28:17!11 +ACT 28:17!12 +ACT 28:17!14 +ACT 28:17!13 +ACT 28:17!15 +ACT 28:17!16 +ACT 28:17!17 +ACT 28:17!18 +ACT 28:17!20 +ACT 28:17!21 +ACT 28:17!19 +ACT 28:17!22 +ACT 28:17!23 +ACT 28:17!24 +ACT 28:17!25 +ACT 28:17!26 +ACT 28:17!27 +ACT 28:17!28 +ACT 28:17!29 +ACT 28:17!30 +ACT 28:17!31 +ACT 28:17!32 +ACT 28:17!33 +ACT 28:17!34 +ACT 28:17!35 +ACT 28:17!36 +ACT 28:17!37 +ACT 28:17!38 +ACT 28:17!39 +ACT 28:17!40 +ACT 28:18!1 +ACT 28:18!2 +ACT 28:18!3 +ACT 28:18!4 +ACT 28:18!5 +ACT 28:18!6 +ACT 28:18!7 +ACT 28:18!8 +ACT 28:18!9 +ACT 28:18!10 +ACT 28:18!11 +ACT 28:18!12 +ACT 28:18!13 +ACT 28:19!2 +ACT 28:19!1 +ACT 28:19!3 +ACT 28:19!4 +ACT 28:19!5 +ACT 28:19!6 +ACT 28:19!7 +ACT 28:19!8 +ACT 28:19!9 +ACT 28:19!10 +ACT 28:19!11 +ACT 28:19!12 +ACT 28:19!14 +ACT 28:19!15 +ACT 28:19!13 +ACT 28:20!3 +ACT 28:20!1 +ACT 28:20!2 +ACT 28:20!4 +ACT 28:20!5 +ACT 28:20!6 +ACT 28:20!7 +ACT 28:20!8 +ACT 28:20!9 +ACT 28:20!10 +ACT 28:20!12 +ACT 28:20!11 +ACT 28:20!13 +ACT 28:20!14 +ACT 28:20!15 +ACT 28:20!16 +ACT 28:20!17 +ACT 28:20!18 +ACT 28:20!19 +ACT 28:20!20 +ACT 28:21!2 +ACT 28:21!1 +ACT 28:21!3 +ACT 28:21!4 +ACT 28:21!5 +ACT 28:21!7 +ACT 28:21!6 +ACT 28:21!8 +ACT 28:21!9 +ACT 28:21!10 +ACT 28:21!11 +ACT 28:21!12 +ACT 28:21!13 +ACT 28:21!14 +ACT 28:21!15 +ACT 28:21!16 +ACT 28:21!17 +ACT 28:21!18 +ACT 28:21!19 +ACT 28:21!20 +ACT 28:21!21 +ACT 28:21!22 +ACT 28:21!23 +ACT 28:21!24 +ACT 28:21!25 +ACT 28:21!26 +ACT 28:22!2 +ACT 28:22!1 +ACT 28:22!3 +ACT 28:22!4 +ACT 28:22!5 +ACT 28:22!6 +ACT 28:22!7 +ACT 28:22!10 +ACT 28:22!9 +ACT 28:22!8 +ACT 28:22!11 +ACT 28:22!12 +ACT 28:22!13 +ACT 28:22!14 +ACT 28:22!15 +ACT 28:22!16 +ACT 28:22!17 +ACT 28:22!18 +ACT 28:22!19 +ACT 28:23!2 +ACT 28:23!1 +ACT 28:23!3 +ACT 28:23!4 +ACT 28:23!5 +ACT 28:23!6 +ACT 28:23!7 +ACT 28:23!8 +ACT 28:23!9 +ACT 28:23!10 +ACT 28:23!11 +ACT 28:23!12 +ACT 28:23!13 +ACT 28:23!14 +ACT 28:23!15 +ACT 28:23!16 +ACT 28:23!17 +ACT 28:23!18 +ACT 28:23!20 +ACT 28:23!19 +ACT 28:23!21 +ACT 28:23!22 +ACT 28:23!23 +ACT 28:23!24 +ACT 28:23!25 +ACT 28:23!26 +ACT 28:23!27 +ACT 28:23!28 +ACT 28:23!29 +ACT 28:23!30 +ACT 28:23!31 +ACT 28:23!32 +ACT 28:23!33 +ACT 28:23!34 +ACT 28:23!35 +ACT 28:23!36 +ACT 28:24!1 +ACT 28:24!3 +ACT 28:24!2 +ACT 28:24!4 +ACT 28:24!5 +ACT 28:24!6 +ACT 28:24!8 +ACT 28:24!7 +ACT 28:24!9 +ACT 28:25!2 +ACT 28:25!1 +ACT 28:25!3 +ACT 28:25!4 +ACT 28:25!5 +ACT 28:25!6 +ACT 28:25!7 +ACT 28:25!8 +ACT 28:25!9 +ACT 28:25!10 +ACT 28:25!11 +ACT 28:25!12 +ACT 28:25!13 +ACT 28:25!14 +ACT 28:25!15 +ACT 28:25!16 +ACT 28:25!17 +ACT 28:25!18 +ACT 28:25!19 +ACT 28:25!20 +ACT 28:25!21 +ACT 28:25!22 +ACT 28:25!23 +ACT 28:25!24 +ACT 28:25!25 +ACT 28:25!26 +ACT 28:26!1 +ACT 28:26!2 +ACT 28:26!3 +ACT 28:26!4 +ACT 28:26!5 +ACT 28:26!6 +ACT 28:26!7 +ACT 28:26!8 +ACT 28:26!9 +ACT 28:26!10 +ACT 28:26!11 +ACT 28:26!12 +ACT 28:26!13 +ACT 28:26!14 +ACT 28:26!15 +ACT 28:26!16 +ACT 28:26!17 +ACT 28:26!18 +ACT 28:26!19 +ACT 28:26!20 +ACT 28:26!21 +ACT 28:27!2 +ACT 28:27!1 +ACT 28:27!3 +ACT 28:27!4 +ACT 28:27!5 +ACT 28:27!6 +ACT 28:27!7 +ACT 28:27!8 +ACT 28:27!9 +ACT 28:27!10 +ACT 28:27!11 +ACT 28:27!12 +ACT 28:27!13 +ACT 28:27!14 +ACT 28:27!15 +ACT 28:27!16 +ACT 28:27!17 +ACT 28:27!18 +ACT 28:27!19 +ACT 28:27!20 +ACT 28:27!21 +ACT 28:27!22 +ACT 28:27!23 +ACT 28:27!24 +ACT 28:27!25 +ACT 28:27!26 +ACT 28:27!27 +ACT 28:27!28 +ACT 28:27!29 +ACT 28:27!30 +ACT 28:27!31 +ACT 28:27!32 +ACT 28:27!33 +ACT 28:27!34 +ACT 28:27!35 +ACT 28:28!2 +ACT 28:28!1 +ACT 28:28!3 +ACT 28:28!4 +ACT 28:28!5 +ACT 28:28!6 +ACT 28:28!7 +ACT 28:28!8 +ACT 28:28!9 +ACT 28:28!10 +ACT 28:28!11 +ACT 28:28!12 +ACT 28:28!13 +ACT 28:28!14 +ACT 28:28!15 +ACT 28:28!16 +ACT 28:30!2 +ACT 28:30!1 +ACT 28:30!3 +ACT 28:30!4 +ACT 28:30!5 +ACT 28:30!6 +ACT 28:30!7 +ACT 28:30!8 +ACT 28:30!9 +ACT 28:30!10 +ACT 28:30!11 +ACT 28:30!12 +ACT 28:30!13 +ACT 28:30!14 +ACT 28:31!1 +ACT 28:31!2 +ACT 28:31!3 +ACT 28:31!4 +ACT 28:31!5 +ACT 28:31!6 +ACT 28:31!7 +ACT 28:31!8 +ACT 28:31!9 +ACT 28:31!10 +ACT 28:31!11 +ACT 28:31!12 +ACT 28:31!13 +ACT 28:31!14 +ACT 28:31!15 +ACT 28:31!16 +ACT 28:31!17 +ROM 1:1!1 +ROM 1:1!2 +ROM 1:1!3 +ROM 1:1!4 +ROM 1:1!5 +ROM 1:1!6 +ROM 1:1!7 +ROM 1:1!8 +ROM 1:1!9 +ROM 1:1!10 +ROM 1:2!1 +ROM 1:2!2 +ROM 1:2!3 +ROM 1:2!4 +ROM 1:2!5 +ROM 1:2!6 +ROM 1:2!7 +ROM 1:2!8 +ROM 1:2!9 +ROM 1:3!1 +ROM 1:3!2 +ROM 1:3!3 +ROM 1:3!4 +ROM 1:3!5 +ROM 1:3!6 +ROM 1:3!7 +ROM 1:3!8 +ROM 1:3!9 +ROM 1:3!10 +ROM 1:3!11 +ROM 1:4!1 +ROM 1:4!2 +ROM 1:4!3 +ROM 1:4!4 +ROM 1:4!5 +ROM 1:4!6 +ROM 1:4!7 +ROM 1:4!8 +ROM 1:4!9 +ROM 1:4!10 +ROM 1:4!11 +ROM 1:4!12 +ROM 1:4!13 +ROM 1:4!14 +ROM 1:4!15 +ROM 1:4!16 +ROM 1:4!17 +ROM 1:5!1 +ROM 1:5!2 +ROM 1:5!3 +ROM 1:5!4 +ROM 1:5!5 +ROM 1:5!6 +ROM 1:5!7 +ROM 1:5!8 +ROM 1:5!9 +ROM 1:5!10 +ROM 1:5!11 +ROM 1:5!12 +ROM 1:5!13 +ROM 1:5!14 +ROM 1:5!15 +ROM 1:5!16 +ROM 1:5!17 +ROM 1:6!1 +ROM 1:6!2 +ROM 1:6!3 +ROM 1:6!4 +ROM 1:6!5 +ROM 1:6!6 +ROM 1:6!7 +ROM 1:6!8 +ROM 1:7!1 +ROM 1:7!2 +ROM 1:7!3 +ROM 1:7!4 +ROM 1:7!5 +ROM 1:7!6 +ROM 1:7!7 +ROM 1:7!8 +ROM 1:7!9 +ROM 1:7!11 +ROM 1:7!10 +ROM 1:7!12 +ROM 1:7!13 +ROM 1:7!14 +ROM 1:7!15 +ROM 1:7!16 +ROM 1:7!17 +ROM 1:7!18 +ROM 1:7!19 +ROM 1:7!20 +ROM 1:7!21 +ROM 1:8!2 +ROM 1:8!1 +ROM 1:8!3 +ROM 1:8!4 +ROM 1:8!5 +ROM 1:8!6 +ROM 1:8!7 +ROM 1:8!8 +ROM 1:8!9 +ROM 1:8!10 +ROM 1:8!11 +ROM 1:8!12 +ROM 1:8!13 +ROM 1:8!14 +ROM 1:8!15 +ROM 1:8!16 +ROM 1:8!17 +ROM 1:8!18 +ROM 1:8!19 +ROM 1:8!20 +ROM 1:8!21 +ROM 1:9!2 +ROM 1:9!1 +ROM 1:9!3 +ROM 1:9!4 +ROM 1:9!5 +ROM 1:9!6 +ROM 1:9!7 +ROM 1:9!8 +ROM 1:9!9 +ROM 1:9!10 +ROM 1:9!11 +ROM 1:9!12 +ROM 1:9!13 +ROM 1:9!14 +ROM 1:9!15 +ROM 1:9!16 +ROM 1:9!17 +ROM 1:9!18 +ROM 1:9!19 +ROM 1:9!20 +ROM 1:9!21 +ROM 1:9!22 +ROM 1:9!23 +ROM 1:10!1 +ROM 1:10!2 +ROM 1:10!3 +ROM 1:10!4 +ROM 1:10!5 +ROM 1:10!6 +ROM 1:10!7 +ROM 1:10!8 +ROM 1:10!9 +ROM 1:10!10 +ROM 1:10!11 +ROM 1:10!12 +ROM 1:10!13 +ROM 1:10!14 +ROM 1:10!15 +ROM 1:10!16 +ROM 1:10!17 +ROM 1:10!18 +ROM 1:10!19 +ROM 1:11!2 +ROM 1:11!1 +ROM 1:11!3 +ROM 1:11!4 +ROM 1:11!5 +ROM 1:11!7 +ROM 1:11!6 +ROM 1:11!8 +ROM 1:11!10 +ROM 1:11!9 +ROM 1:11!11 +ROM 1:11!12 +ROM 1:11!13 +ROM 1:11!14 +ROM 1:12!2 +ROM 1:12!1 +ROM 1:12!3 +ROM 1:12!4 +ROM 1:12!5 +ROM 1:12!6 +ROM 1:12!7 +ROM 1:12!8 +ROM 1:12!9 +ROM 1:12!10 +ROM 1:12!11 +ROM 1:12!13 +ROM 1:12!12 +ROM 1:12!14 +ROM 1:12!15 +ROM 1:13!3 +ROM 1:13!6 +ROM 1:13!1 +ROM 1:13!2 +ROM 1:13!4 +ROM 1:13!5 +ROM 1:13!7 +ROM 1:13!8 +ROM 1:13!9 +ROM 1:13!10 +ROM 1:13!11 +ROM 1:13!12 +ROM 1:13!13 +ROM 1:13!14 +ROM 1:13!15 +ROM 1:13!16 +ROM 1:13!17 +ROM 1:13!18 +ROM 1:13!19 +ROM 1:13!20 +ROM 1:13!21 +ROM 1:13!22 +ROM 1:13!23 +ROM 1:13!24 +ROM 1:13!25 +ROM 1:13!26 +ROM 1:13!27 +ROM 1:13!28 +ROM 1:13!29 +ROM 1:13!30 +ROM 1:14!2 +ROM 1:14!1 +ROM 1:14!3 +ROM 1:14!4 +ROM 1:14!6 +ROM 1:14!5 +ROM 1:14!7 +ROM 1:14!8 +ROM 1:14!9 +ROM 1:14!10 +ROM 1:15!1 +ROM 1:15!2 +ROM 1:15!3 +ROM 1:15!4 +ROM 1:15!5 +ROM 1:15!6 +ROM 1:15!7 +ROM 1:15!8 +ROM 1:15!9 +ROM 1:15!10 +ROM 1:15!11 +ROM 1:16!2 +ROM 1:16!1 +ROM 1:16!3 +ROM 1:16!4 +ROM 1:16!5 +ROM 1:16!7 +ROM 1:16!6 +ROM 1:16!8 +ROM 1:16!9 +ROM 1:16!10 +ROM 1:16!11 +ROM 1:16!12 +ROM 1:16!13 +ROM 1:16!14 +ROM 1:16!16 +ROM 1:16!15 +ROM 1:16!17 +ROM 1:16!18 +ROM 1:16!19 +ROM 1:17!2 +ROM 1:17!1 +ROM 1:17!3 +ROM 1:17!4 +ROM 1:17!5 +ROM 1:17!6 +ROM 1:17!7 +ROM 1:17!8 +ROM 1:17!9 +ROM 1:17!10 +ROM 1:17!11 +ROM 1:17!12 +ROM 1:17!14 +ROM 1:17!13 +ROM 1:17!15 +ROM 1:17!16 +ROM 1:17!17 +ROM 1:17!18 +ROM 1:18!2 +ROM 1:18!1 +ROM 1:18!3 +ROM 1:18!4 +ROM 1:18!5 +ROM 1:18!6 +ROM 1:18!7 +ROM 1:18!8 +ROM 1:18!9 +ROM 1:18!10 +ROM 1:18!11 +ROM 1:18!12 +ROM 1:18!13 +ROM 1:18!14 +ROM 1:18!15 +ROM 1:18!16 +ROM 1:18!17 +ROM 1:18!18 +ROM 1:19!1 +ROM 1:19!2 +ROM 1:19!3 +ROM 1:19!4 +ROM 1:19!5 +ROM 1:19!6 +ROM 1:19!7 +ROM 1:19!8 +ROM 1:19!9 +ROM 1:19!12 +ROM 1:19!10 +ROM 1:19!11 +ROM 1:19!13 +ROM 1:19!14 +ROM 1:20!2 +ROM 1:20!1 +ROM 1:20!3 +ROM 1:20!4 +ROM 1:20!12 +ROM 1:20!13 +ROM 1:20!14 +ROM 1:20!15 +ROM 1:20!16 +ROM 1:20!17 +ROM 1:20!18 +ROM 1:20!5 +ROM 1:20!6 +ROM 1:20!7 +ROM 1:20!8 +ROM 1:20!9 +ROM 1:20!10 +ROM 1:20!11 +ROM 1:20!19 +ROM 1:20!20 +ROM 1:20!21 +ROM 1:20!22 +ROM 1:20!23 +ROM 1:21!1 +ROM 1:21!2 +ROM 1:21!3 +ROM 1:21!4 +ROM 1:21!5 +ROM 1:21!6 +ROM 1:21!7 +ROM 1:21!8 +ROM 1:21!9 +ROM 1:21!10 +ROM 1:21!11 +ROM 1:21!12 +ROM 1:21!13 +ROM 1:21!14 +ROM 1:21!15 +ROM 1:21!16 +ROM 1:21!17 +ROM 1:21!18 +ROM 1:21!19 +ROM 1:21!20 +ROM 1:21!21 +ROM 1:21!22 +ROM 1:22!1 +ROM 1:22!2 +ROM 1:22!3 +ROM 1:22!4 +ROM 1:23!1 +ROM 1:23!2 +ROM 1:23!3 +ROM 1:23!4 +ROM 1:23!5 +ROM 1:23!6 +ROM 1:23!7 +ROM 1:23!8 +ROM 1:23!9 +ROM 1:23!10 +ROM 1:23!11 +ROM 1:23!12 +ROM 1:23!13 +ROM 1:23!14 +ROM 1:23!15 +ROM 1:23!16 +ROM 1:23!17 +ROM 1:23!18 +ROM 1:24!1 +ROM 1:24!2 +ROM 1:24!3 +ROM 1:24!4 +ROM 1:24!5 +ROM 1:24!6 +ROM 1:24!7 +ROM 1:24!8 +ROM 1:24!9 +ROM 1:24!10 +ROM 1:24!11 +ROM 1:24!12 +ROM 1:24!13 +ROM 1:24!14 +ROM 1:24!15 +ROM 1:24!16 +ROM 1:24!17 +ROM 1:24!18 +ROM 1:24!19 +ROM 1:24!20 +ROM 1:25!1 +ROM 1:25!2 +ROM 1:25!3 +ROM 1:25!4 +ROM 1:25!5 +ROM 1:25!6 +ROM 1:25!7 +ROM 1:25!8 +ROM 1:25!9 +ROM 1:25!10 +ROM 1:25!11 +ROM 1:25!12 +ROM 1:25!13 +ROM 1:25!14 +ROM 1:25!15 +ROM 1:25!16 +ROM 1:25!17 +ROM 1:25!18 +ROM 1:25!19 +ROM 1:25!20 +ROM 1:25!21 +ROM 1:25!22 +ROM 1:25!23 +ROM 1:25!24 +ROM 1:25!25 +ROM 1:26!1 +ROM 1:26!2 +ROM 1:26!3 +ROM 1:26!4 +ROM 1:26!5 +ROM 1:26!6 +ROM 1:26!7 +ROM 1:26!8 +ROM 1:26!9 +ROM 1:26!12 +ROM 1:26!11 +ROM 1:26!10 +ROM 1:26!13 +ROM 1:26!14 +ROM 1:26!15 +ROM 1:26!16 +ROM 1:26!17 +ROM 1:26!18 +ROM 1:26!19 +ROM 1:26!20 +ROM 1:26!21 +ROM 1:26!22 +ROM 1:27!2 +ROM 1:27!1 +ROM 1:27!3 +ROM 1:27!4 +ROM 1:27!5 +ROM 1:27!6 +ROM 1:27!7 +ROM 1:27!8 +ROM 1:27!9 +ROM 1:27!10 +ROM 1:27!11 +ROM 1:27!12 +ROM 1:27!13 +ROM 1:27!14 +ROM 1:27!15 +ROM 1:27!16 +ROM 1:27!17 +ROM 1:27!18 +ROM 1:27!19 +ROM 1:27!20 +ROM 1:27!21 +ROM 1:27!22 +ROM 1:27!23 +ROM 1:27!24 +ROM 1:27!25 +ROM 1:27!26 +ROM 1:27!27 +ROM 1:27!28 +ROM 1:27!29 +ROM 1:27!30 +ROM 1:27!31 +ROM 1:27!32 +ROM 1:27!33 +ROM 1:27!34 +ROM 1:27!35 +ROM 1:28!1 +ROM 1:28!2 +ROM 1:28!3 +ROM 1:28!4 +ROM 1:28!5 +ROM 1:28!6 +ROM 1:28!7 +ROM 1:28!8 +ROM 1:28!9 +ROM 1:28!10 +ROM 1:28!11 +ROM 1:28!12 +ROM 1:28!13 +ROM 1:28!14 +ROM 1:28!15 +ROM 1:28!16 +ROM 1:28!17 +ROM 1:28!18 +ROM 1:28!19 +ROM 1:28!20 +ROM 1:29!1 +ROM 1:29!2 +ROM 1:29!3 +ROM 1:29!4 +ROM 1:29!5 +ROM 1:29!6 +ROM 1:29!7 +ROM 1:29!8 +ROM 1:29!9 +ROM 1:29!10 +ROM 1:29!11 +ROM 1:29!12 +ROM 1:29!13 +ROM 1:30!1 +ROM 1:30!2 +ROM 1:30!3 +ROM 1:30!4 +ROM 1:30!5 +ROM 1:30!6 +ROM 1:30!7 +ROM 1:30!8 +ROM 1:30!9 +ROM 1:31!1 +ROM 1:31!2 +ROM 1:31!3 +ROM 1:31!4 +ROM 1:32!1 +ROM 1:32!2 +ROM 1:32!3 +ROM 1:32!4 +ROM 1:32!5 +ROM 1:32!6 +ROM 1:32!7 +ROM 1:32!8 +ROM 1:32!9 +ROM 1:32!10 +ROM 1:32!11 +ROM 1:32!12 +ROM 1:32!13 +ROM 1:32!14 +ROM 1:32!15 +ROM 1:32!16 +ROM 1:32!17 +ROM 1:32!18 +ROM 1:32!19 +ROM 1:32!20 +ROM 1:32!21 +ROM 1:32!22 +ROM 1:32!23 +ROM 2:1!1 +ROM 2:1!2 +ROM 2:1!3 +ROM 2:1!4 +ROM 2:1!5 +ROM 2:1!6 +ROM 2:1!7 +ROM 2:1!8 +ROM 2:1!11 +ROM 2:1!9 +ROM 2:1!10 +ROM 2:1!12 +ROM 2:1!13 +ROM 2:1!14 +ROM 2:1!15 +ROM 2:1!16 +ROM 2:1!18 +ROM 2:1!17 +ROM 2:1!19 +ROM 2:1!20 +ROM 2:1!21 +ROM 2:1!22 +ROM 2:2!2 +ROM 2:2!1 +ROM 2:2!3 +ROM 2:2!4 +ROM 2:2!5 +ROM 2:2!6 +ROM 2:2!7 +ROM 2:2!8 +ROM 2:2!9 +ROM 2:2!10 +ROM 2:2!11 +ROM 2:2!12 +ROM 2:2!13 +ROM 2:2!14 +ROM 2:2!15 +ROM 2:3!2 +ROM 2:3!1 +ROM 2:3!3 +ROM 2:3!4 +ROM 2:3!5 +ROM 2:3!6 +ROM 2:3!7 +ROM 2:3!8 +ROM 2:3!9 +ROM 2:3!10 +ROM 2:3!11 +ROM 2:3!12 +ROM 2:3!13 +ROM 2:3!14 +ROM 2:3!15 +ROM 2:3!16 +ROM 2:3!17 +ROM 2:3!18 +ROM 2:3!19 +ROM 2:3!20 +ROM 2:3!21 +ROM 2:4!1 +ROM 2:4!2 +ROM 2:4!3 +ROM 2:4!4 +ROM 2:4!5 +ROM 2:4!6 +ROM 2:4!7 +ROM 2:4!8 +ROM 2:4!9 +ROM 2:4!10 +ROM 2:4!11 +ROM 2:4!12 +ROM 2:4!13 +ROM 2:4!14 +ROM 2:4!15 +ROM 2:4!16 +ROM 2:4!17 +ROM 2:4!18 +ROM 2:4!19 +ROM 2:4!20 +ROM 2:4!21 +ROM 2:4!22 +ROM 2:4!23 +ROM 2:5!2 +ROM 2:5!1 +ROM 2:5!3 +ROM 2:5!4 +ROM 2:5!5 +ROM 2:5!6 +ROM 2:5!7 +ROM 2:5!8 +ROM 2:5!9 +ROM 2:5!10 +ROM 2:5!11 +ROM 2:5!12 +ROM 2:5!13 +ROM 2:5!14 +ROM 2:5!15 +ROM 2:5!16 +ROM 2:5!17 +ROM 2:5!18 +ROM 2:5!19 +ROM 2:6!1 +ROM 2:6!2 +ROM 2:6!3 +ROM 2:6!4 +ROM 2:6!5 +ROM 2:6!6 +ROM 2:6!7 +ROM 2:7!2 +ROM 2:7!1 +ROM 2:7!3 +ROM 2:7!4 +ROM 2:7!5 +ROM 2:7!6 +ROM 2:7!7 +ROM 2:7!8 +ROM 2:7!9 +ROM 2:7!10 +ROM 2:7!11 +ROM 2:7!12 +ROM 2:7!13 +ROM 2:7!14 +ROM 2:8!2 +ROM 2:8!1 +ROM 2:8!3 +ROM 2:8!4 +ROM 2:8!5 +ROM 2:8!6 +ROM 2:8!7 +ROM 2:8!8 +ROM 2:8!10 +ROM 2:8!9 +ROM 2:8!11 +ROM 2:8!12 +ROM 2:8!13 +ROM 2:8!14 +ROM 2:8!15 +ROM 2:9!1 +ROM 2:9!2 +ROM 2:9!3 +ROM 2:9!4 +ROM 2:9!5 +ROM 2:9!6 +ROM 2:9!7 +ROM 2:9!8 +ROM 2:9!9 +ROM 2:9!10 +ROM 2:9!11 +ROM 2:9!13 +ROM 2:9!12 +ROM 2:9!14 +ROM 2:9!15 +ROM 2:9!16 +ROM 2:10!2 +ROM 2:10!1 +ROM 2:10!3 +ROM 2:10!4 +ROM 2:10!5 +ROM 2:10!6 +ROM 2:10!7 +ROM 2:10!8 +ROM 2:10!9 +ROM 2:10!10 +ROM 2:10!11 +ROM 2:10!13 +ROM 2:10!12 +ROM 2:10!14 +ROM 2:10!15 +ROM 2:10!16 +ROM 2:11!2 +ROM 2:11!1 +ROM 2:11!3 +ROM 2:11!4 +ROM 2:11!5 +ROM 2:11!6 +ROM 2:11!7 +ROM 2:12!2 +ROM 2:12!1 +ROM 2:12!3 +ROM 2:12!4 +ROM 2:12!5 +ROM 2:12!6 +ROM 2:12!7 +ROM 2:12!8 +ROM 2:12!9 +ROM 2:12!10 +ROM 2:12!11 +ROM 2:12!12 +ROM 2:12!13 +ROM 2:12!14 +ROM 2:12!15 +ROM 2:13!2 +ROM 2:13!1 +ROM 2:13!3 +ROM 2:13!4 +ROM 2:13!5 +ROM 2:13!6 +ROM 2:13!7 +ROM 2:13!8 +ROM 2:13!9 +ROM 2:13!10 +ROM 2:13!11 +ROM 2:13!12 +ROM 2:13!13 +ROM 2:13!14 +ROM 2:14!2 +ROM 2:14!1 +ROM 2:14!3 +ROM 2:14!4 +ROM 2:14!5 +ROM 2:14!6 +ROM 2:14!7 +ROM 2:14!8 +ROM 2:14!9 +ROM 2:14!10 +ROM 2:14!11 +ROM 2:14!12 +ROM 2:14!13 +ROM 2:14!14 +ROM 2:14!15 +ROM 2:14!16 +ROM 2:14!17 +ROM 2:14!18 +ROM 2:14!19 +ROM 2:15!1 +ROM 2:15!2 +ROM 2:15!3 +ROM 2:15!4 +ROM 2:15!5 +ROM 2:15!6 +ROM 2:15!7 +ROM 2:15!8 +ROM 2:15!9 +ROM 2:15!10 +ROM 2:15!11 +ROM 2:15!12 +ROM 2:15!13 +ROM 2:15!14 +ROM 2:15!15 +ROM 2:15!16 +ROM 2:15!17 +ROM 2:15!18 +ROM 2:15!19 +ROM 2:15!20 +ROM 2:15!21 +ROM 2:15!22 +ROM 2:15!23 +ROM 2:15!24 +ROM 2:16!3 +ROM 2:16!1 +ROM 2:16!2 +ROM 2:16!4 +ROM 2:16!5 +ROM 2:16!6 +ROM 2:16!7 +ROM 2:16!8 +ROM 2:16!9 +ROM 2:16!10 +ROM 2:16!11 +ROM 2:16!12 +ROM 2:16!13 +ROM 2:16!14 +ROM 2:16!15 +ROM 2:16!16 +ROM 2:16!17 +ROM 2:17!2 +ROM 2:17!1 +ROM 2:17!3 +ROM 2:17!4 +ROM 2:17!5 +ROM 2:17!6 +ROM 2:17!7 +ROM 2:17!8 +ROM 2:17!9 +ROM 2:17!10 +ROM 2:17!11 +ROM 2:17!12 +ROM 2:18!1 +ROM 2:18!2 +ROM 2:18!3 +ROM 2:18!4 +ROM 2:18!5 +ROM 2:18!6 +ROM 2:18!7 +ROM 2:18!8 +ROM 2:18!9 +ROM 2:18!10 +ROM 2:18!11 +ROM 2:18!12 +ROM 2:19!2 +ROM 2:19!1 +ROM 2:19!3 +ROM 2:19!5 +ROM 2:19!4 +ROM 2:19!6 +ROM 2:19!7 +ROM 2:19!8 +ROM 2:19!9 +ROM 2:19!10 +ROM 2:20!1 +ROM 2:20!2 +ROM 2:20!3 +ROM 2:20!4 +ROM 2:20!5 +ROM 2:20!6 +ROM 2:20!7 +ROM 2:20!8 +ROM 2:20!9 +ROM 2:20!10 +ROM 2:20!11 +ROM 2:20!12 +ROM 2:20!13 +ROM 2:20!14 +ROM 2:20!15 +ROM 2:21!2 +ROM 2:21!1 +ROM 2:21!3 +ROM 2:21!4 +ROM 2:21!5 +ROM 2:21!6 +ROM 2:21!7 +ROM 2:21!8 +ROM 2:21!9 +ROM 2:21!10 +ROM 2:21!11 +ROM 2:21!12 +ROM 2:22!1 +ROM 2:22!2 +ROM 2:22!3 +ROM 2:22!4 +ROM 2:22!5 +ROM 2:22!6 +ROM 2:22!7 +ROM 2:22!8 +ROM 2:22!9 +ROM 2:22!10 +ROM 2:23!1 +ROM 2:23!2 +ROM 2:23!3 +ROM 2:23!4 +ROM 2:23!5 +ROM 2:23!6 +ROM 2:23!7 +ROM 2:23!8 +ROM 2:23!9 +ROM 2:23!10 +ROM 2:23!11 +ROM 2:23!12 +ROM 2:24!2 +ROM 2:24!1 +ROM 2:24!3 +ROM 2:24!4 +ROM 2:24!5 +ROM 2:24!6 +ROM 2:24!7 +ROM 2:24!8 +ROM 2:24!9 +ROM 2:24!10 +ROM 2:24!11 +ROM 2:24!12 +ROM 2:24!13 +ROM 2:25!3 +ROM 2:25!2 +ROM 2:25!1 +ROM 2:25!4 +ROM 2:25!5 +ROM 2:25!6 +ROM 2:25!7 +ROM 2:25!9 +ROM 2:25!8 +ROM 2:25!10 +ROM 2:25!11 +ROM 2:25!12 +ROM 2:25!13 +ROM 2:25!14 +ROM 2:25!15 +ROM 2:25!16 +ROM 2:25!17 +ROM 2:26!2 +ROM 2:26!1 +ROM 2:26!3 +ROM 2:26!4 +ROM 2:26!5 +ROM 2:26!6 +ROM 2:26!7 +ROM 2:26!8 +ROM 2:26!9 +ROM 2:26!10 +ROM 2:26!11 +ROM 2:26!12 +ROM 2:26!13 +ROM 2:26!14 +ROM 2:26!15 +ROM 2:26!16 +ROM 2:27!1 +ROM 2:27!2 +ROM 2:27!3 +ROM 2:27!4 +ROM 2:27!5 +ROM 2:27!6 +ROM 2:27!7 +ROM 2:27!8 +ROM 2:27!9 +ROM 2:27!10 +ROM 2:27!11 +ROM 2:27!12 +ROM 2:27!13 +ROM 2:27!14 +ROM 2:27!15 +ROM 2:27!16 +ROM 2:27!17 +ROM 2:28!2 +ROM 2:28!1 +ROM 2:28!3 +ROM 2:28!4 +ROM 2:28!5 +ROM 2:28!6 +ROM 2:28!7 +ROM 2:28!8 +ROM 2:28!9 +ROM 2:28!10 +ROM 2:28!11 +ROM 2:28!12 +ROM 2:28!13 +ROM 2:28!14 +ROM 2:28!15 +ROM 2:28!16 +ROM 2:29!1 +ROM 2:29!2 +ROM 2:29!3 +ROM 2:29!4 +ROM 2:29!5 +ROM 2:29!6 +ROM 2:29!7 +ROM 2:29!8 +ROM 2:29!9 +ROM 2:29!10 +ROM 2:29!11 +ROM 2:29!12 +ROM 2:29!13 +ROM 2:29!14 +ROM 2:29!15 +ROM 2:29!16 +ROM 2:29!17 +ROM 2:29!18 +ROM 2:29!19 +ROM 2:29!20 +ROM 2:29!21 +ROM 2:29!22 +ROM 2:29!23 +ROM 3:1!2 +ROM 3:1!1 +ROM 3:1!3 +ROM 3:1!4 +ROM 3:1!5 +ROM 3:1!6 +ROM 3:1!7 +ROM 3:1!8 +ROM 3:1!9 +ROM 3:1!10 +ROM 3:1!11 +ROM 3:1!12 +ROM 3:2!1 +ROM 3:2!2 +ROM 3:2!3 +ROM 3:2!4 +ROM 3:2!7 +ROM 3:2!6 +ROM 3:2!5 +ROM 3:2!8 +ROM 3:2!9 +ROM 3:2!10 +ROM 3:2!11 +ROM 3:2!12 +ROM 3:2!13 +ROM 3:3!2 +ROM 3:3!1 +ROM 3:3!3 +ROM 3:3!4 +ROM 3:3!5 +ROM 3:3!6 +ROM 3:3!7 +ROM 3:3!8 +ROM 3:3!9 +ROM 3:3!10 +ROM 3:3!11 +ROM 3:3!12 +ROM 3:3!13 +ROM 3:3!14 +ROM 3:4!1 +ROM 3:4!2 +ROM 3:4!4 +ROM 3:4!3 +ROM 3:4!5 +ROM 3:4!6 +ROM 3:4!7 +ROM 3:4!9 +ROM 3:4!8 +ROM 3:4!10 +ROM 3:4!11 +ROM 3:4!12 +ROM 3:4!13 +ROM 3:4!14 +ROM 3:4!15 +ROM 3:4!16 +ROM 3:4!17 +ROM 3:4!18 +ROM 3:4!19 +ROM 3:4!20 +ROM 3:4!21 +ROM 3:4!22 +ROM 3:4!23 +ROM 3:4!24 +ROM 3:4!25 +ROM 3:4!26 +ROM 3:5!2 +ROM 3:5!1 +ROM 3:5!3 +ROM 3:5!4 +ROM 3:5!5 +ROM 3:5!6 +ROM 3:5!7 +ROM 3:5!8 +ROM 3:5!9 +ROM 3:5!10 +ROM 3:5!11 +ROM 3:5!12 +ROM 3:5!13 +ROM 3:5!14 +ROM 3:5!15 +ROM 3:5!16 +ROM 3:5!17 +ROM 3:5!18 +ROM 3:5!19 +ROM 3:5!20 +ROM 3:5!21 +ROM 3:6!1 +ROM 3:6!2 +ROM 3:6!3 +ROM 3:6!4 +ROM 3:6!5 +ROM 3:6!6 +ROM 3:6!7 +ROM 3:6!8 +ROM 3:6!9 +ROM 3:7!2 +ROM 3:7!1 +ROM 3:7!3 +ROM 3:7!4 +ROM 3:7!5 +ROM 3:7!6 +ROM 3:7!7 +ROM 3:7!8 +ROM 3:7!9 +ROM 3:7!10 +ROM 3:7!11 +ROM 3:7!12 +ROM 3:7!13 +ROM 3:7!14 +ROM 3:7!15 +ROM 3:7!16 +ROM 3:7!17 +ROM 3:7!18 +ROM 3:7!19 +ROM 3:7!20 +ROM 3:7!21 +ROM 3:8!1 +ROM 3:8!2 +ROM 3:8!3 +ROM 3:8!4 +ROM 3:8!5 +ROM 3:8!6 +ROM 3:8!7 +ROM 3:8!8 +ROM 3:8!9 +ROM 3:8!10 +ROM 3:8!11 +ROM 3:8!12 +ROM 3:8!13 +ROM 3:8!14 +ROM 3:8!15 +ROM 3:8!16 +ROM 3:8!17 +ROM 3:8!18 +ROM 3:8!19 +ROM 3:8!20 +ROM 3:8!21 +ROM 3:8!22 +ROM 3:8!23 +ROM 3:9!2 +ROM 3:9!1 +ROM 3:9!3 +ROM 3:9!4 +ROM 3:9!5 +ROM 3:9!7 +ROM 3:9!6 +ROM 3:9!9 +ROM 3:9!8 +ROM 3:9!10 +ROM 3:9!11 +ROM 3:9!12 +ROM 3:9!13 +ROM 3:9!14 +ROM 3:9!15 +ROM 3:10!1 +ROM 3:10!2 +ROM 3:10!3 +ROM 3:10!4 +ROM 3:10!5 +ROM 3:10!6 +ROM 3:10!7 +ROM 3:10!8 +ROM 3:11!1 +ROM 3:11!2 +ROM 3:11!3 +ROM 3:11!4 +ROM 3:11!5 +ROM 3:11!6 +ROM 3:11!7 +ROM 3:11!8 +ROM 3:11!9 +ROM 3:11!10 +ROM 3:12!1 +ROM 3:12!2 +ROM 3:12!3 +ROM 3:12!4 +ROM 3:12!5 +ROM 3:12!6 +ROM 3:12!7 +ROM 3:12!8 +ROM 3:12!9 +ROM 3:12!10 +ROM 3:12!11 +ROM 3:12!12 +ROM 3:12!13 +ROM 3:13!1 +ROM 3:13!2 +ROM 3:13!3 +ROM 3:13!4 +ROM 3:13!5 +ROM 3:13!6 +ROM 3:13!7 +ROM 3:13!8 +ROM 3:13!9 +ROM 3:13!10 +ROM 3:13!11 +ROM 3:13!12 +ROM 3:13!13 +ROM 3:13!14 +ROM 3:13!15 +ROM 3:14!1 +ROM 3:14!2 +ROM 3:14!3 +ROM 3:14!4 +ROM 3:14!5 +ROM 3:14!6 +ROM 3:14!7 +ROM 3:15!1 +ROM 3:15!2 +ROM 3:15!3 +ROM 3:15!4 +ROM 3:15!5 +ROM 3:15!6 +ROM 3:16!1 +ROM 3:16!2 +ROM 3:16!3 +ROM 3:16!4 +ROM 3:16!5 +ROM 3:16!6 +ROM 3:16!7 +ROM 3:17!1 +ROM 3:17!2 +ROM 3:17!3 +ROM 3:17!4 +ROM 3:17!5 +ROM 3:18!1 +ROM 3:18!2 +ROM 3:18!3 +ROM 3:18!4 +ROM 3:18!5 +ROM 3:18!6 +ROM 3:18!7 +ROM 3:18!8 +ROM 3:19!2 +ROM 3:19!1 +ROM 3:19!3 +ROM 3:19!4 +ROM 3:19!5 +ROM 3:19!6 +ROM 3:19!7 +ROM 3:19!8 +ROM 3:19!9 +ROM 3:19!10 +ROM 3:19!11 +ROM 3:19!12 +ROM 3:19!13 +ROM 3:19!14 +ROM 3:19!15 +ROM 3:19!16 +ROM 3:19!17 +ROM 3:19!18 +ROM 3:19!19 +ROM 3:19!20 +ROM 3:19!21 +ROM 3:19!22 +ROM 3:19!23 +ROM 3:19!24 +ROM 3:20!1 +ROM 3:20!2 +ROM 3:20!3 +ROM 3:20!4 +ROM 3:20!5 +ROM 3:20!6 +ROM 3:20!7 +ROM 3:20!8 +ROM 3:20!9 +ROM 3:20!10 +ROM 3:20!12 +ROM 3:20!11 +ROM 3:20!13 +ROM 3:20!14 +ROM 3:20!15 +ROM 3:21!2 +ROM 3:21!1 +ROM 3:21!3 +ROM 3:21!4 +ROM 3:21!5 +ROM 3:21!6 +ROM 3:21!7 +ROM 3:21!8 +ROM 3:21!9 +ROM 3:21!10 +ROM 3:21!11 +ROM 3:21!12 +ROM 3:21!13 +ROM 3:21!14 +ROM 3:22!2 +ROM 3:22!1 +ROM 3:22!3 +ROM 3:22!4 +ROM 3:22!5 +ROM 3:22!6 +ROM 3:22!7 +ROM 3:22!8 +ROM 3:22!9 +ROM 3:22!10 +ROM 3:22!11 +ROM 3:22!13 +ROM 3:22!12 +ROM 3:22!14 +ROM 3:22!15 +ROM 3:23!2 +ROM 3:23!1 +ROM 3:23!3 +ROM 3:23!4 +ROM 3:23!5 +ROM 3:23!6 +ROM 3:23!7 +ROM 3:23!8 +ROM 3:23!9 +ROM 3:24!1 +ROM 3:24!2 +ROM 3:24!3 +ROM 3:24!4 +ROM 3:24!5 +ROM 3:24!6 +ROM 3:24!7 +ROM 3:24!8 +ROM 3:24!9 +ROM 3:24!10 +ROM 3:24!11 +ROM 3:24!12 +ROM 3:25!1 +ROM 3:25!2 +ROM 3:25!3 +ROM 3:25!4 +ROM 3:25!5 +ROM 3:25!6 +ROM 3:25!7 +ROM 3:25!8 +ROM 3:25!9 +ROM 3:25!10 +ROM 3:25!11 +ROM 3:25!12 +ROM 3:25!13 +ROM 3:25!14 +ROM 3:25!15 +ROM 3:25!16 +ROM 3:25!17 +ROM 3:25!18 +ROM 3:25!19 +ROM 3:25!20 +ROM 3:25!21 +ROM 3:25!22 +ROM 3:26!1 +ROM 3:26!2 +ROM 3:26!3 +ROM 3:26!4 +ROM 3:26!5 +ROM 3:26!6 +ROM 3:26!7 +ROM 3:26!8 +ROM 3:26!9 +ROM 3:26!10 +ROM 3:26!11 +ROM 3:26!12 +ROM 3:26!13 +ROM 3:26!14 +ROM 3:26!15 +ROM 3:26!16 +ROM 3:26!17 +ROM 3:26!18 +ROM 3:26!19 +ROM 3:26!20 +ROM 3:26!21 +ROM 3:26!22 +ROM 3:26!23 +ROM 3:26!24 +ROM 3:26!25 +ROM 3:26!26 +ROM 3:27!2 +ROM 3:27!1 +ROM 3:27!3 +ROM 3:27!4 +ROM 3:27!5 +ROM 3:27!6 +ROM 3:27!7 +ROM 3:27!8 +ROM 3:27!9 +ROM 3:27!10 +ROM 3:27!11 +ROM 3:27!12 +ROM 3:27!13 +ROM 3:27!14 +ROM 3:27!15 +ROM 3:28!2 +ROM 3:28!1 +ROM 3:28!3 +ROM 3:28!4 +ROM 3:28!5 +ROM 3:28!6 +ROM 3:28!7 +ROM 3:28!8 +ROM 3:29!1 +ROM 3:29!2 +ROM 3:29!3 +ROM 3:29!4 +ROM 3:29!5 +ROM 3:29!6 +ROM 3:29!7 +ROM 3:29!8 +ROM 3:29!9 +ROM 3:29!10 +ROM 3:29!11 +ROM 3:30!1 +ROM 3:30!2 +ROM 3:30!3 +ROM 3:30!4 +ROM 3:30!5 +ROM 3:30!6 +ROM 3:30!7 +ROM 3:30!8 +ROM 3:30!9 +ROM 3:30!10 +ROM 3:30!11 +ROM 3:30!12 +ROM 3:30!13 +ROM 3:30!14 +ROM 3:31!2 +ROM 3:31!1 +ROM 3:31!3 +ROM 3:31!4 +ROM 3:31!5 +ROM 3:31!6 +ROM 3:31!7 +ROM 3:31!8 +ROM 3:31!9 +ROM 3:31!10 +ROM 3:31!11 +ROM 4:1!2 +ROM 4:1!3 +ROM 4:1!1 +ROM 4:1!4 +ROM 4:1!5 +ROM 4:1!6 +ROM 4:1!7 +ROM 4:1!8 +ROM 4:1!9 +ROM 4:1!10 +ROM 4:2!2 +ROM 4:2!1 +ROM 4:2!3 +ROM 4:2!4 +ROM 4:2!5 +ROM 4:2!6 +ROM 4:2!7 +ROM 4:2!8 +ROM 4:2!9 +ROM 4:2!10 +ROM 4:2!11 +ROM 4:2!12 +ROM 4:3!2 +ROM 4:3!1 +ROM 4:3!3 +ROM 4:3!4 +ROM 4:3!5 +ROM 4:3!7 +ROM 4:3!6 +ROM 4:3!8 +ROM 4:3!9 +ROM 4:3!10 +ROM 4:3!11 +ROM 4:3!12 +ROM 4:3!13 +ROM 4:3!14 +ROM 4:3!15 +ROM 4:4!2 +ROM 4:4!1 +ROM 4:4!3 +ROM 4:4!4 +ROM 4:4!5 +ROM 4:4!7 +ROM 4:4!6 +ROM 4:4!8 +ROM 4:4!9 +ROM 4:4!10 +ROM 4:4!11 +ROM 4:4!12 +ROM 4:5!2 +ROM 4:5!1 +ROM 4:5!3 +ROM 4:5!4 +ROM 4:5!6 +ROM 4:5!5 +ROM 4:5!7 +ROM 4:5!8 +ROM 4:5!9 +ROM 4:5!10 +ROM 4:5!11 +ROM 4:5!12 +ROM 4:5!13 +ROM 4:5!14 +ROM 4:5!15 +ROM 4:5!16 +ROM 4:5!17 +ROM 4:6!1 +ROM 4:6!2 +ROM 4:6!3 +ROM 4:6!4 +ROM 4:6!5 +ROM 4:6!6 +ROM 4:6!7 +ROM 4:6!8 +ROM 4:6!9 +ROM 4:6!10 +ROM 4:6!11 +ROM 4:6!12 +ROM 4:6!13 +ROM 4:6!14 +ROM 4:6!15 +ROM 4:7!1 +ROM 4:7!2 +ROM 4:7!4 +ROM 4:7!5 +ROM 4:7!3 +ROM 4:7!6 +ROM 4:7!7 +ROM 4:7!9 +ROM 4:7!10 +ROM 4:7!8 +ROM 4:8!1 +ROM 4:8!2 +ROM 4:8!3 +ROM 4:8!4 +ROM 4:8!5 +ROM 4:8!6 +ROM 4:8!7 +ROM 4:8!8 +ROM 4:9!3 +ROM 4:9!1 +ROM 4:9!2 +ROM 4:9!4 +ROM 4:9!5 +ROM 4:9!6 +ROM 4:9!7 +ROM 4:9!8 +ROM 4:9!9 +ROM 4:9!10 +ROM 4:9!11 +ROM 4:9!12 +ROM 4:9!14 +ROM 4:9!13 +ROM 4:9!15 +ROM 4:9!16 +ROM 4:9!17 +ROM 4:9!18 +ROM 4:9!19 +ROM 4:9!20 +ROM 4:9!21 +ROM 4:10!2 +ROM 4:10!1 +ROM 4:10!3 +ROM 4:10!6 +ROM 4:10!4 +ROM 4:10!5 +ROM 4:10!7 +ROM 4:10!8 +ROM 4:10!9 +ROM 4:10!10 +ROM 4:10!11 +ROM 4:10!12 +ROM 4:10!13 +ROM 4:10!14 +ROM 4:10!15 +ROM 4:11!1 +ROM 4:11!3 +ROM 4:11!2 +ROM 4:11!4 +ROM 4:11!5 +ROM 4:11!6 +ROM 4:11!7 +ROM 4:11!8 +ROM 4:11!9 +ROM 4:11!10 +ROM 4:11!11 +ROM 4:11!12 +ROM 4:11!13 +ROM 4:11!14 +ROM 4:11!15 +ROM 4:11!16 +ROM 4:11!17 +ROM 4:11!18 +ROM 4:11!19 +ROM 4:11!20 +ROM 4:11!21 +ROM 4:11!22 +ROM 4:11!23 +ROM 4:11!24 +ROM 4:11!25 +ROM 4:11!26 +ROM 4:11!27 +ROM 4:11!28 +ROM 4:11!29 +ROM 4:12!1 +ROM 4:12!2 +ROM 4:12!3 +ROM 4:12!4 +ROM 4:12!5 +ROM 4:12!6 +ROM 4:12!7 +ROM 4:12!8 +ROM 4:12!9 +ROM 4:12!10 +ROM 4:12!11 +ROM 4:12!12 +ROM 4:12!13 +ROM 4:12!14 +ROM 4:12!15 +ROM 4:12!16 +ROM 4:12!17 +ROM 4:12!18 +ROM 4:12!19 +ROM 4:12!20 +ROM 4:12!21 +ROM 4:12!22 +ROM 4:13!2 +ROM 4:13!1 +ROM 4:13!3 +ROM 4:13!4 +ROM 4:13!5 +ROM 4:13!6 +ROM 4:13!13 +ROM 4:13!14 +ROM 4:13!17 +ROM 4:13!15 +ROM 4:13!16 +ROM 4:13!7 +ROM 4:13!8 +ROM 4:13!9 +ROM 4:13!10 +ROM 4:13!11 +ROM 4:13!12 +ROM 4:13!18 +ROM 4:13!19 +ROM 4:13!20 +ROM 4:13!21 +ROM 4:14!2 +ROM 4:14!1 +ROM 4:14!3 +ROM 4:14!4 +ROM 4:14!5 +ROM 4:14!6 +ROM 4:14!7 +ROM 4:14!8 +ROM 4:14!9 +ROM 4:14!10 +ROM 4:14!11 +ROM 4:14!12 +ROM 4:14!13 +ROM 4:15!2 +ROM 4:15!1 +ROM 4:15!3 +ROM 4:15!4 +ROM 4:15!5 +ROM 4:15!7 +ROM 4:15!6 +ROM 4:15!8 +ROM 4:15!9 +ROM 4:15!10 +ROM 4:15!11 +ROM 4:15!12 +ROM 4:16!1 +ROM 4:16!2 +ROM 4:16!3 +ROM 4:16!4 +ROM 4:16!5 +ROM 4:16!6 +ROM 4:16!7 +ROM 4:16!8 +ROM 4:16!9 +ROM 4:16!10 +ROM 4:16!11 +ROM 4:16!12 +ROM 4:16!13 +ROM 4:16!14 +ROM 4:16!15 +ROM 4:16!16 +ROM 4:16!17 +ROM 4:16!18 +ROM 4:16!19 +ROM 4:16!20 +ROM 4:16!21 +ROM 4:16!22 +ROM 4:16!23 +ROM 4:16!24 +ROM 4:16!25 +ROM 4:16!26 +ROM 4:16!27 +ROM 4:16!28 +ROM 4:16!29 +ROM 4:16!30 +ROM 4:16!31 +ROM 4:16!32 +ROM 4:16!33 +ROM 4:17!9 +ROM 4:17!10 +ROM 4:17!11 +ROM 4:17!12 +ROM 4:17!13 +ROM 4:17!14 +ROM 4:17!15 +ROM 4:17!16 +ROM 4:17!17 +ROM 4:17!18 +ROM 4:17!19 +ROM 4:17!20 +ROM 4:17!21 +ROM 4:17!22 +ROM 4:17!23 +ROM 4:17!1 +ROM 4:17!2 +ROM 4:17!3 +ROM 4:17!4 +ROM 4:17!5 +ROM 4:17!6 +ROM 4:17!7 +ROM 4:17!8 +ROM 4:18!1 +ROM 4:18!2 +ROM 4:18!3 +ROM 4:18!4 +ROM 4:18!5 +ROM 4:18!6 +ROM 4:18!7 +ROM 4:18!8 +ROM 4:18!9 +ROM 4:18!10 +ROM 4:18!11 +ROM 4:18!12 +ROM 4:18!13 +ROM 4:18!14 +ROM 4:18!15 +ROM 4:18!16 +ROM 4:18!17 +ROM 4:18!18 +ROM 4:18!19 +ROM 4:18!20 +ROM 4:18!21 +ROM 4:19!1 +ROM 4:19!2 +ROM 4:19!3 +ROM 4:19!4 +ROM 4:19!5 +ROM 4:19!6 +ROM 4:19!7 +ROM 4:19!8 +ROM 4:19!9 +ROM 4:19!10 +ROM 4:19!11 +ROM 4:19!12 +ROM 4:19!13 +ROM 4:19!14 +ROM 4:19!15 +ROM 4:19!16 +ROM 4:19!17 +ROM 4:19!18 +ROM 4:19!19 +ROM 4:20!2 +ROM 4:20!1 +ROM 4:20!3 +ROM 4:20!4 +ROM 4:20!5 +ROM 4:20!6 +ROM 4:20!7 +ROM 4:20!8 +ROM 4:20!9 +ROM 4:20!10 +ROM 4:20!11 +ROM 4:20!12 +ROM 4:20!13 +ROM 4:20!14 +ROM 4:20!15 +ROM 4:20!16 +ROM 4:20!17 +ROM 4:20!18 +ROM 4:21!1 +ROM 4:21!2 +ROM 4:21!3 +ROM 4:21!7 +ROM 4:21!6 +ROM 4:21!4 +ROM 4:21!5 +ROM 4:21!8 +ROM 4:21!9 +ROM 4:22!1 +ROM 4:22!2 +ROM 4:22!3 +ROM 4:22!4 +ROM 4:22!5 +ROM 4:22!6 +ROM 4:23!3 +ROM 4:23!1 +ROM 4:23!2 +ROM 4:23!4 +ROM 4:23!5 +ROM 4:23!6 +ROM 4:23!7 +ROM 4:23!8 +ROM 4:23!9 +ROM 4:24!1 +ROM 4:24!2 +ROM 4:24!3 +ROM 4:24!4 +ROM 4:24!5 +ROM 4:24!7 +ROM 4:24!6 +ROM 4:24!8 +ROM 4:24!9 +ROM 4:24!10 +ROM 4:24!11 +ROM 4:24!12 +ROM 4:24!17 +ROM 4:24!18 +ROM 4:24!13 +ROM 4:24!14 +ROM 4:24!15 +ROM 4:24!16 +ROM 4:25!1 +ROM 4:25!2 +ROM 4:25!3 +ROM 4:25!4 +ROM 4:25!5 +ROM 4:25!6 +ROM 4:25!7 +ROM 4:25!8 +ROM 4:25!9 +ROM 4:25!10 +ROM 4:25!11 +ROM 4:25!12 +ROM 5:1!2 +ROM 5:1!1 +ROM 5:1!3 +ROM 5:1!4 +ROM 5:1!5 +ROM 5:1!6 +ROM 5:1!7 +ROM 5:1!8 +ROM 5:1!9 +ROM 5:1!10 +ROM 5:1!11 +ROM 5:1!12 +ROM 5:1!13 +ROM 5:1!14 +ROM 5:1!15 +ROM 5:2!1 +ROM 5:2!2 +ROM 5:2!3 +ROM 5:2!4 +ROM 5:2!5 +ROM 5:2!6 +ROM 5:2!7 +ROM 5:2!8 +ROM 5:2!9 +ROM 5:2!10 +ROM 5:2!11 +ROM 5:2!12 +ROM 5:2!13 +ROM 5:2!14 +ROM 5:2!15 +ROM 5:2!16 +ROM 5:2!17 +ROM 5:2!18 +ROM 5:2!19 +ROM 5:2!20 +ROM 5:2!21 +ROM 5:2!22 +ROM 5:2!23 +ROM 5:3!3 +ROM 5:3!1 +ROM 5:3!2 +ROM 5:3!4 +ROM 5:3!5 +ROM 5:3!6 +ROM 5:3!7 +ROM 5:3!8 +ROM 5:3!9 +ROM 5:3!10 +ROM 5:3!11 +ROM 5:3!12 +ROM 5:3!13 +ROM 5:3!14 +ROM 5:3!15 +ROM 5:4!2 +ROM 5:4!1 +ROM 5:4!3 +ROM 5:4!4 +ROM 5:4!6 +ROM 5:4!5 +ROM 5:4!7 +ROM 5:4!8 +ROM 5:5!2 +ROM 5:5!1 +ROM 5:5!3 +ROM 5:5!4 +ROM 5:5!5 +ROM 5:5!6 +ROM 5:5!7 +ROM 5:5!8 +ROM 5:5!9 +ROM 5:5!10 +ROM 5:5!11 +ROM 5:5!12 +ROM 5:5!13 +ROM 5:5!14 +ROM 5:5!15 +ROM 5:5!16 +ROM 5:5!17 +ROM 5:5!18 +ROM 5:5!19 +ROM 5:5!20 +ROM 5:5!21 +ROM 5:6!2 +ROM 5:6!1 +ROM 5:6!3 +ROM 5:6!4 +ROM 5:6!5 +ROM 5:6!6 +ROM 5:6!7 +ROM 5:6!8 +ROM 5:6!9 +ROM 5:6!10 +ROM 5:6!11 +ROM 5:6!12 +ROM 5:7!2 +ROM 5:7!1 +ROM 5:7!3 +ROM 5:7!4 +ROM 5:7!5 +ROM 5:7!6 +ROM 5:7!8 +ROM 5:7!7 +ROM 5:7!9 +ROM 5:7!10 +ROM 5:7!11 +ROM 5:7!12 +ROM 5:7!13 +ROM 5:7!14 +ROM 5:7!15 +ROM 5:8!2 +ROM 5:8!1 +ROM 5:8!3 +ROM 5:8!4 +ROM 5:8!5 +ROM 5:8!6 +ROM 5:8!7 +ROM 5:8!8 +ROM 5:8!9 +ROM 5:8!10 +ROM 5:8!11 +ROM 5:8!12 +ROM 5:8!13 +ROM 5:8!14 +ROM 5:8!15 +ROM 5:8!16 +ROM 5:8!17 +ROM 5:8!18 +ROM 5:9!2 +ROM 5:9!1 +ROM 5:9!3 +ROM 5:9!4 +ROM 5:9!5 +ROM 5:9!6 +ROM 5:9!7 +ROM 5:9!8 +ROM 5:9!9 +ROM 5:9!10 +ROM 5:9!11 +ROM 5:9!12 +ROM 5:9!13 +ROM 5:9!14 +ROM 5:9!15 +ROM 5:10!2 +ROM 5:10!1 +ROM 5:10!3 +ROM 5:10!4 +ROM 5:10!5 +ROM 5:10!6 +ROM 5:10!7 +ROM 5:10!8 +ROM 5:10!9 +ROM 5:10!10 +ROM 5:10!11 +ROM 5:10!12 +ROM 5:10!13 +ROM 5:10!14 +ROM 5:10!15 +ROM 5:10!16 +ROM 5:10!17 +ROM 5:10!18 +ROM 5:10!19 +ROM 5:10!20 +ROM 5:10!21 +ROM 5:11!3 +ROM 5:11!1 +ROM 5:11!2 +ROM 5:11!4 +ROM 5:11!5 +ROM 5:11!6 +ROM 5:11!7 +ROM 5:11!8 +ROM 5:11!9 +ROM 5:11!10 +ROM 5:11!11 +ROM 5:11!12 +ROM 5:11!13 +ROM 5:11!14 +ROM 5:11!15 +ROM 5:11!16 +ROM 5:11!17 +ROM 5:11!18 +ROM 5:11!19 +ROM 5:11!20 +ROM 5:11!21 +ROM 5:12!1 +ROM 5:12!2 +ROM 5:12!3 +ROM 5:12!4 +ROM 5:12!5 +ROM 5:12!6 +ROM 5:12!7 +ROM 5:12!8 +ROM 5:12!9 +ROM 5:12!10 +ROM 5:12!11 +ROM 5:12!12 +ROM 5:12!13 +ROM 5:12!14 +ROM 5:12!15 +ROM 5:12!16 +ROM 5:12!17 +ROM 5:12!18 +ROM 5:12!19 +ROM 5:12!20 +ROM 5:12!21 +ROM 5:12!22 +ROM 5:12!23 +ROM 5:12!24 +ROM 5:12!25 +ROM 5:12!26 +ROM 5:12!27 +ROM 5:12!28 +ROM 5:12!29 +ROM 5:12!30 +ROM 5:13!2 +ROM 5:13!1 +ROM 5:13!3 +ROM 5:13!4 +ROM 5:13!5 +ROM 5:13!6 +ROM 5:13!7 +ROM 5:13!9 +ROM 5:13!8 +ROM 5:13!10 +ROM 5:13!11 +ROM 5:13!12 +ROM 5:13!13 +ROM 5:13!14 +ROM 5:14!1 +ROM 5:14!2 +ROM 5:14!3 +ROM 5:14!4 +ROM 5:14!5 +ROM 5:14!6 +ROM 5:14!7 +ROM 5:14!8 +ROM 5:14!9 +ROM 5:14!10 +ROM 5:14!11 +ROM 5:14!12 +ROM 5:14!13 +ROM 5:14!14 +ROM 5:14!15 +ROM 5:14!16 +ROM 5:14!17 +ROM 5:14!18 +ROM 5:14!19 +ROM 5:14!20 +ROM 5:14!21 +ROM 5:14!22 +ROM 5:14!23 +ROM 5:14!24 +ROM 5:15!1 +ROM 5:15!2 +ROM 5:15!3 +ROM 5:15!4 +ROM 5:15!5 +ROM 5:15!6 +ROM 5:15!7 +ROM 5:15!8 +ROM 5:15!9 +ROM 5:15!11 +ROM 5:15!10 +ROM 5:15!12 +ROM 5:15!13 +ROM 5:15!14 +ROM 5:15!15 +ROM 5:15!16 +ROM 5:15!17 +ROM 5:15!18 +ROM 5:15!19 +ROM 5:15!20 +ROM 5:15!21 +ROM 5:15!22 +ROM 5:15!23 +ROM 5:15!24 +ROM 5:15!25 +ROM 5:15!26 +ROM 5:15!27 +ROM 5:15!28 +ROM 5:15!29 +ROM 5:15!30 +ROM 5:15!31 +ROM 5:15!32 +ROM 5:15!33 +ROM 5:15!34 +ROM 5:15!35 +ROM 5:15!36 +ROM 5:15!37 +ROM 5:15!38 +ROM 5:15!39 +ROM 5:16!1 +ROM 5:16!2 +ROM 5:16!3 +ROM 5:16!4 +ROM 5:16!5 +ROM 5:16!6 +ROM 5:16!7 +ROM 5:16!8 +ROM 5:16!11 +ROM 5:16!10 +ROM 5:16!9 +ROM 5:16!12 +ROM 5:16!13 +ROM 5:16!14 +ROM 5:16!15 +ROM 5:16!16 +ROM 5:16!18 +ROM 5:16!17 +ROM 5:16!19 +ROM 5:16!20 +ROM 5:16!21 +ROM 5:16!22 +ROM 5:16!23 +ROM 5:16!24 +ROM 5:17!2 +ROM 5:17!1 +ROM 5:17!3 +ROM 5:17!4 +ROM 5:17!5 +ROM 5:17!6 +ROM 5:17!7 +ROM 5:17!8 +ROM 5:17!9 +ROM 5:17!10 +ROM 5:17!11 +ROM 5:17!12 +ROM 5:17!13 +ROM 5:17!14 +ROM 5:17!15 +ROM 5:17!16 +ROM 5:17!17 +ROM 5:17!18 +ROM 5:17!19 +ROM 5:17!20 +ROM 5:17!21 +ROM 5:17!22 +ROM 5:17!23 +ROM 5:17!24 +ROM 5:17!25 +ROM 5:17!26 +ROM 5:17!27 +ROM 5:17!28 +ROM 5:17!29 +ROM 5:17!30 +ROM 5:17!31 +ROM 5:17!32 +ROM 5:17!33 +ROM 5:18!1 +ROM 5:18!2 +ROM 5:18!3 +ROM 5:18!4 +ROM 5:18!5 +ROM 5:18!6 +ROM 5:18!7 +ROM 5:18!8 +ROM 5:18!9 +ROM 5:18!10 +ROM 5:18!11 +ROM 5:18!12 +ROM 5:18!13 +ROM 5:18!14 +ROM 5:18!15 +ROM 5:18!16 +ROM 5:18!17 +ROM 5:18!18 +ROM 5:18!19 +ROM 5:18!20 +ROM 5:18!21 +ROM 5:18!22 +ROM 5:19!2 +ROM 5:19!1 +ROM 5:19!3 +ROM 5:19!4 +ROM 5:19!5 +ROM 5:19!6 +ROM 5:19!7 +ROM 5:19!8 +ROM 5:19!9 +ROM 5:19!10 +ROM 5:19!11 +ROM 5:19!12 +ROM 5:19!13 +ROM 5:19!14 +ROM 5:19!15 +ROM 5:19!16 +ROM 5:19!17 +ROM 5:19!18 +ROM 5:19!19 +ROM 5:19!20 +ROM 5:19!21 +ROM 5:19!22 +ROM 5:19!23 +ROM 5:20!2 +ROM 5:20!1 +ROM 5:20!3 +ROM 5:20!4 +ROM 5:20!5 +ROM 5:20!6 +ROM 5:20!7 +ROM 5:20!9 +ROM 5:20!8 +ROM 5:20!10 +ROM 5:20!11 +ROM 5:20!12 +ROM 5:20!13 +ROM 5:20!14 +ROM 5:20!15 +ROM 5:21!1 +ROM 5:21!2 +ROM 5:21!3 +ROM 5:21!4 +ROM 5:21!5 +ROM 5:21!6 +ROM 5:21!7 +ROM 5:21!8 +ROM 5:21!9 +ROM 5:21!10 +ROM 5:21!11 +ROM 5:21!12 +ROM 5:21!13 +ROM 5:21!14 +ROM 5:21!15 +ROM 5:21!16 +ROM 5:21!17 +ROM 5:21!18 +ROM 5:21!19 +ROM 5:21!20 +ROM 5:21!21 +ROM 5:21!22 +ROM 5:21!23 +ROM 5:21!24 +ROM 6:1!2 +ROM 6:1!1 +ROM 6:1!3 +ROM 6:1!4 +ROM 6:1!5 +ROM 6:1!6 +ROM 6:1!7 +ROM 6:1!8 +ROM 6:1!9 +ROM 6:1!10 +ROM 6:2!1 +ROM 6:2!2 +ROM 6:2!3 +ROM 6:2!4 +ROM 6:2!5 +ROM 6:2!6 +ROM 6:2!7 +ROM 6:2!8 +ROM 6:2!9 +ROM 6:2!10 +ROM 6:2!11 +ROM 6:3!1 +ROM 6:3!2 +ROM 6:3!3 +ROM 6:3!4 +ROM 6:3!5 +ROM 6:3!6 +ROM 6:3!7 +ROM 6:3!8 +ROM 6:3!9 +ROM 6:3!10 +ROM 6:3!11 +ROM 6:3!12 +ROM 6:3!13 +ROM 6:4!2 +ROM 6:4!1 +ROM 6:4!3 +ROM 6:4!4 +ROM 6:4!5 +ROM 6:4!6 +ROM 6:4!7 +ROM 6:4!8 +ROM 6:4!9 +ROM 6:4!10 +ROM 6:4!11 +ROM 6:4!12 +ROM 6:4!13 +ROM 6:4!14 +ROM 6:4!15 +ROM 6:4!16 +ROM 6:4!17 +ROM 6:4!18 +ROM 6:4!19 +ROM 6:4!20 +ROM 6:4!21 +ROM 6:4!22 +ROM 6:4!23 +ROM 6:4!24 +ROM 6:4!25 +ROM 6:4!26 +ROM 6:4!27 +ROM 6:5!2 +ROM 6:5!1 +ROM 6:5!3 +ROM 6:5!4 +ROM 6:5!5 +ROM 6:5!6 +ROM 6:5!7 +ROM 6:5!8 +ROM 6:5!9 +ROM 6:5!10 +ROM 6:5!11 +ROM 6:5!12 +ROM 6:5!13 +ROM 6:5!14 +ROM 6:6!1 +ROM 6:6!2 +ROM 6:6!3 +ROM 6:6!4 +ROM 6:6!5 +ROM 6:6!6 +ROM 6:6!7 +ROM 6:6!8 +ROM 6:6!9 +ROM 6:6!10 +ROM 6:6!11 +ROM 6:6!12 +ROM 6:6!13 +ROM 6:6!14 +ROM 6:6!15 +ROM 6:6!16 +ROM 6:6!17 +ROM 6:6!18 +ROM 6:6!19 +ROM 6:6!20 +ROM 6:7!2 +ROM 6:7!1 +ROM 6:7!3 +ROM 6:7!4 +ROM 6:7!5 +ROM 6:7!6 +ROM 6:7!7 +ROM 6:8!2 +ROM 6:8!1 +ROM 6:8!3 +ROM 6:8!4 +ROM 6:8!5 +ROM 6:8!6 +ROM 6:8!7 +ROM 6:8!8 +ROM 6:8!9 +ROM 6:8!10 +ROM 6:9!1 +ROM 6:9!2 +ROM 6:9!3 +ROM 6:9!4 +ROM 6:9!5 +ROM 6:9!6 +ROM 6:9!7 +ROM 6:9!8 +ROM 6:9!9 +ROM 6:9!10 +ROM 6:9!11 +ROM 6:9!12 +ROM 6:10!2 +ROM 6:10!1 +ROM 6:10!3 +ROM 6:10!4 +ROM 6:10!5 +ROM 6:10!6 +ROM 6:10!7 +ROM 6:10!9 +ROM 6:10!8 +ROM 6:10!10 +ROM 6:10!11 +ROM 6:10!12 +ROM 6:10!13 +ROM 6:11!1 +ROM 6:11!2 +ROM 6:11!3 +ROM 6:11!4 +ROM 6:11!5 +ROM 6:11!6 +ROM 6:11!8 +ROM 6:11!7 +ROM 6:11!9 +ROM 6:11!10 +ROM 6:11!12 +ROM 6:11!11 +ROM 6:11!13 +ROM 6:11!14 +ROM 6:11!15 +ROM 6:11!16 +ROM 6:11!17 +ROM 6:12!2 +ROM 6:12!1 +ROM 6:12!3 +ROM 6:12!4 +ROM 6:12!5 +ROM 6:12!6 +ROM 6:12!7 +ROM 6:12!8 +ROM 6:12!9 +ROM 6:12!10 +ROM 6:12!11 +ROM 6:12!12 +ROM 6:12!13 +ROM 6:12!14 +ROM 6:12!15 +ROM 6:12!16 +ROM 6:13!1 +ROM 6:13!2 +ROM 6:13!3 +ROM 6:13!4 +ROM 6:13!5 +ROM 6:13!6 +ROM 6:13!7 +ROM 6:13!8 +ROM 6:13!9 +ROM 6:13!10 +ROM 6:13!11 +ROM 6:13!12 +ROM 6:13!13 +ROM 6:13!14 +ROM 6:13!15 +ROM 6:13!16 +ROM 6:13!17 +ROM 6:13!18 +ROM 6:13!19 +ROM 6:13!20 +ROM 6:13!21 +ROM 6:13!22 +ROM 6:13!23 +ROM 6:13!24 +ROM 6:13!25 +ROM 6:13!26 +ROM 6:14!2 +ROM 6:14!1 +ROM 6:14!3 +ROM 6:14!4 +ROM 6:14!5 +ROM 6:14!7 +ROM 6:14!6 +ROM 6:14!8 +ROM 6:14!9 +ROM 6:14!10 +ROM 6:14!11 +ROM 6:14!12 +ROM 6:14!13 +ROM 6:15!2 +ROM 6:15!1 +ROM 6:15!3 +ROM 6:15!4 +ROM 6:15!5 +ROM 6:15!6 +ROM 6:15!7 +ROM 6:15!8 +ROM 6:15!9 +ROM 6:15!10 +ROM 6:15!11 +ROM 6:15!12 +ROM 6:15!13 +ROM 6:16!1 +ROM 6:16!2 +ROM 6:16!3 +ROM 6:16!4 +ROM 6:16!5 +ROM 6:16!6 +ROM 6:16!7 +ROM 6:16!8 +ROM 6:16!9 +ROM 6:16!10 +ROM 6:16!11 +ROM 6:16!12 +ROM 6:16!13 +ROM 6:16!14 +ROM 6:16!15 +ROM 6:16!16 +ROM 6:16!17 +ROM 6:16!18 +ROM 6:16!19 +ROM 6:16!20 +ROM 6:16!21 +ROM 6:17!2 +ROM 6:17!1 +ROM 6:17!3 +ROM 6:17!4 +ROM 6:17!5 +ROM 6:17!6 +ROM 6:17!7 +ROM 6:17!8 +ROM 6:17!9 +ROM 6:17!11 +ROM 6:17!10 +ROM 6:17!12 +ROM 6:17!13 +ROM 6:17!14 +ROM 6:17!15 +ROM 6:17!16 +ROM 6:17!17 +ROM 6:17!18 +ROM 6:18!2 +ROM 6:18!1 +ROM 6:18!3 +ROM 6:18!4 +ROM 6:18!5 +ROM 6:18!6 +ROM 6:18!7 +ROM 6:18!8 +ROM 6:19!1 +ROM 6:19!2 +ROM 6:19!3 +ROM 6:19!4 +ROM 6:19!5 +ROM 6:19!6 +ROM 6:19!7 +ROM 6:19!8 +ROM 6:19!10 +ROM 6:19!9 +ROM 6:19!11 +ROM 6:19!12 +ROM 6:19!13 +ROM 6:19!14 +ROM 6:19!15 +ROM 6:19!16 +ROM 6:19!17 +ROM 6:19!18 +ROM 6:19!19 +ROM 6:19!20 +ROM 6:19!21 +ROM 6:19!22 +ROM 6:19!23 +ROM 6:19!24 +ROM 6:19!25 +ROM 6:19!26 +ROM 6:19!27 +ROM 6:19!28 +ROM 6:19!29 +ROM 6:19!30 +ROM 6:19!31 +ROM 6:19!32 +ROM 6:19!33 +ROM 6:19!34 +ROM 6:20!2 +ROM 6:20!1 +ROM 6:20!3 +ROM 6:20!5 +ROM 6:20!6 +ROM 6:20!4 +ROM 6:20!7 +ROM 6:20!8 +ROM 6:20!9 +ROM 6:20!10 +ROM 6:21!2 +ROM 6:21!1 +ROM 6:21!3 +ROM 6:21!4 +ROM 6:21!5 +ROM 6:21!6 +ROM 6:21!7 +ROM 6:21!8 +ROM 6:21!9 +ROM 6:21!11 +ROM 6:21!10 +ROM 6:21!12 +ROM 6:21!13 +ROM 6:21!14 +ROM 6:22!2 +ROM 6:22!1 +ROM 6:22!3 +ROM 6:22!4 +ROM 6:22!5 +ROM 6:22!6 +ROM 6:22!8 +ROM 6:22!7 +ROM 6:22!9 +ROM 6:22!10 +ROM 6:22!11 +ROM 6:22!12 +ROM 6:22!13 +ROM 6:22!14 +ROM 6:22!15 +ROM 6:22!16 +ROM 6:22!18 +ROM 6:22!17 +ROM 6:22!19 +ROM 6:22!20 +ROM 6:22!21 +ROM 6:23!2 +ROM 6:23!1 +ROM 6:23!3 +ROM 6:23!4 +ROM 6:23!5 +ROM 6:23!6 +ROM 6:23!8 +ROM 6:23!7 +ROM 6:23!9 +ROM 6:23!10 +ROM 6:23!11 +ROM 6:23!12 +ROM 6:23!13 +ROM 6:23!14 +ROM 6:23!15 +ROM 6:23!16 +ROM 6:23!17 +ROM 6:23!18 +ROM 6:23!19 +ROM 7:1!1 +ROM 7:1!3 +ROM 7:1!2 +ROM 7:1!5 +ROM 7:1!4 +ROM 7:1!6 +ROM 7:1!7 +ROM 7:1!8 +ROM 7:1!9 +ROM 7:1!10 +ROM 7:1!11 +ROM 7:1!12 +ROM 7:1!13 +ROM 7:1!14 +ROM 7:1!15 +ROM 7:1!16 +ROM 7:1!17 +ROM 7:2!2 +ROM 7:2!1 +ROM 7:2!3 +ROM 7:2!4 +ROM 7:2!5 +ROM 7:2!6 +ROM 7:2!7 +ROM 7:2!8 +ROM 7:2!9 +ROM 7:2!11 +ROM 7:2!10 +ROM 7:2!12 +ROM 7:2!13 +ROM 7:2!14 +ROM 7:2!15 +ROM 7:2!16 +ROM 7:2!17 +ROM 7:2!18 +ROM 7:2!19 +ROM 7:2!20 +ROM 7:3!1 +ROM 7:3!2 +ROM 7:3!3 +ROM 7:3!4 +ROM 7:3!5 +ROM 7:3!6 +ROM 7:3!7 +ROM 7:3!8 +ROM 7:3!9 +ROM 7:3!10 +ROM 7:3!11 +ROM 7:3!13 +ROM 7:3!12 +ROM 7:3!14 +ROM 7:3!15 +ROM 7:3!16 +ROM 7:3!17 +ROM 7:3!18 +ROM 7:3!19 +ROM 7:3!20 +ROM 7:3!21 +ROM 7:3!22 +ROM 7:3!23 +ROM 7:3!24 +ROM 7:3!25 +ROM 7:3!26 +ROM 7:3!27 +ROM 7:3!28 +ROM 7:3!29 +ROM 7:4!1 +ROM 7:4!2 +ROM 7:4!3 +ROM 7:4!4 +ROM 7:4!5 +ROM 7:4!6 +ROM 7:4!7 +ROM 7:4!8 +ROM 7:4!9 +ROM 7:4!10 +ROM 7:4!11 +ROM 7:4!12 +ROM 7:4!13 +ROM 7:4!14 +ROM 7:4!15 +ROM 7:4!16 +ROM 7:4!17 +ROM 7:4!18 +ROM 7:4!19 +ROM 7:4!20 +ROM 7:4!21 +ROM 7:4!22 +ROM 7:4!23 +ROM 7:4!24 +ROM 7:4!25 +ROM 7:4!26 +ROM 7:5!2 +ROM 7:5!1 +ROM 7:5!3 +ROM 7:5!4 +ROM 7:5!5 +ROM 7:5!6 +ROM 7:5!7 +ROM 7:5!8 +ROM 7:5!9 +ROM 7:5!10 +ROM 7:5!11 +ROM 7:5!12 +ROM 7:5!13 +ROM 7:5!14 +ROM 7:5!15 +ROM 7:5!16 +ROM 7:5!17 +ROM 7:5!18 +ROM 7:5!19 +ROM 7:5!20 +ROM 7:5!21 +ROM 7:5!22 +ROM 7:5!23 +ROM 7:5!24 +ROM 7:6!2 +ROM 7:6!1 +ROM 7:6!3 +ROM 7:6!4 +ROM 7:6!5 +ROM 7:6!6 +ROM 7:6!7 +ROM 7:6!8 +ROM 7:6!9 +ROM 7:6!10 +ROM 7:6!11 +ROM 7:6!12 +ROM 7:6!13 +ROM 7:6!14 +ROM 7:6!15 +ROM 7:6!16 +ROM 7:6!17 +ROM 7:6!18 +ROM 7:6!19 +ROM 7:6!20 +ROM 7:7!2 +ROM 7:7!1 +ROM 7:7!3 +ROM 7:7!4 +ROM 7:7!5 +ROM 7:7!6 +ROM 7:7!7 +ROM 7:7!8 +ROM 7:7!9 +ROM 7:7!10 +ROM 7:7!11 +ROM 7:7!12 +ROM 7:7!13 +ROM 7:7!14 +ROM 7:7!15 +ROM 7:7!16 +ROM 7:7!17 +ROM 7:7!20 +ROM 7:7!19 +ROM 7:7!18 +ROM 7:7!21 +ROM 7:7!22 +ROM 7:7!23 +ROM 7:7!24 +ROM 7:7!25 +ROM 7:7!26 +ROM 7:7!27 +ROM 7:7!28 +ROM 7:7!29 +ROM 7:7!30 +ROM 7:8!2 +ROM 7:8!1 +ROM 7:8!3 +ROM 7:8!4 +ROM 7:8!5 +ROM 7:8!6 +ROM 7:8!7 +ROM 7:8!8 +ROM 7:8!9 +ROM 7:8!10 +ROM 7:8!11 +ROM 7:8!12 +ROM 7:8!13 +ROM 7:8!15 +ROM 7:8!14 +ROM 7:8!16 +ROM 7:8!17 +ROM 7:8!18 +ROM 7:9!2 +ROM 7:9!1 +ROM 7:9!3 +ROM 7:9!4 +ROM 7:9!5 +ROM 7:9!6 +ROM 7:9!8 +ROM 7:9!7 +ROM 7:9!9 +ROM 7:9!10 +ROM 7:9!11 +ROM 7:9!12 +ROM 7:9!13 +ROM 7:10!2 +ROM 7:10!1 +ROM 7:10!3 +ROM 7:10!4 +ROM 7:10!5 +ROM 7:10!6 +ROM 7:10!7 +ROM 7:10!8 +ROM 7:10!9 +ROM 7:10!10 +ROM 7:10!11 +ROM 7:10!12 +ROM 7:10!13 +ROM 7:10!14 +ROM 7:11!2 +ROM 7:11!1 +ROM 7:11!3 +ROM 7:11!4 +ROM 7:11!5 +ROM 7:11!6 +ROM 7:11!7 +ROM 7:11!8 +ROM 7:11!9 +ROM 7:11!10 +ROM 7:11!11 +ROM 7:11!12 +ROM 7:11!13 +ROM 7:11!14 +ROM 7:12!1 +ROM 7:12!3 +ROM 7:12!2 +ROM 7:12!4 +ROM 7:12!5 +ROM 7:12!6 +ROM 7:12!7 +ROM 7:12!8 +ROM 7:12!9 +ROM 7:12!10 +ROM 7:12!11 +ROM 7:12!12 +ROM 7:12!13 +ROM 7:13!2 +ROM 7:13!1 +ROM 7:13!3 +ROM 7:13!4 +ROM 7:13!5 +ROM 7:13!6 +ROM 7:13!7 +ROM 7:13!8 +ROM 7:13!9 +ROM 7:13!10 +ROM 7:13!11 +ROM 7:13!12 +ROM 7:13!13 +ROM 7:13!14 +ROM 7:13!15 +ROM 7:13!16 +ROM 7:13!17 +ROM 7:13!18 +ROM 7:13!19 +ROM 7:13!20 +ROM 7:13!21 +ROM 7:13!22 +ROM 7:13!23 +ROM 7:13!24 +ROM 7:13!25 +ROM 7:13!26 +ROM 7:13!27 +ROM 7:13!28 +ROM 7:13!29 +ROM 7:13!30 +ROM 7:14!2 +ROM 7:14!1 +ROM 7:14!3 +ROM 7:14!4 +ROM 7:14!5 +ROM 7:14!6 +ROM 7:14!7 +ROM 7:14!9 +ROM 7:14!8 +ROM 7:14!10 +ROM 7:14!11 +ROM 7:14!12 +ROM 7:14!13 +ROM 7:14!14 +ROM 7:14!15 +ROM 7:15!2 +ROM 7:15!1 +ROM 7:15!3 +ROM 7:15!4 +ROM 7:15!5 +ROM 7:15!7 +ROM 7:15!6 +ROM 7:15!8 +ROM 7:15!9 +ROM 7:15!10 +ROM 7:15!11 +ROM 7:15!12 +ROM 7:15!13 +ROM 7:15!14 +ROM 7:15!15 +ROM 7:15!16 +ROM 7:16!2 +ROM 7:16!1 +ROM 7:16!3 +ROM 7:16!4 +ROM 7:16!5 +ROM 7:16!6 +ROM 7:16!7 +ROM 7:16!8 +ROM 7:16!9 +ROM 7:16!10 +ROM 7:16!11 +ROM 7:16!12 +ROM 7:17!2 +ROM 7:17!1 +ROM 7:17!3 +ROM 7:17!4 +ROM 7:17!5 +ROM 7:17!6 +ROM 7:17!7 +ROM 7:17!8 +ROM 7:17!9 +ROM 7:17!10 +ROM 7:17!11 +ROM 7:17!12 +ROM 7:18!2 +ROM 7:18!1 +ROM 7:18!3 +ROM 7:18!4 +ROM 7:18!5 +ROM 7:18!6 +ROM 7:18!7 +ROM 7:18!8 +ROM 7:18!9 +ROM 7:18!10 +ROM 7:18!11 +ROM 7:18!12 +ROM 7:18!13 +ROM 7:18!14 +ROM 7:18!16 +ROM 7:18!15 +ROM 7:18!17 +ROM 7:18!18 +ROM 7:18!19 +ROM 7:18!21 +ROM 7:18!20 +ROM 7:18!22 +ROM 7:18!23 +ROM 7:18!24 +ROM 7:18!25 +ROM 7:19!2 +ROM 7:19!1 +ROM 7:19!3 +ROM 7:19!4 +ROM 7:19!6 +ROM 7:19!5 +ROM 7:19!7 +ROM 7:19!8 +ROM 7:19!9 +ROM 7:19!10 +ROM 7:19!11 +ROM 7:19!12 +ROM 7:19!13 +ROM 7:20!2 +ROM 7:20!1 +ROM 7:20!3 +ROM 7:20!4 +ROM 7:20!5 +ROM 7:20!7 +ROM 7:20!6 +ROM 7:20!8 +ROM 7:20!9 +ROM 7:20!10 +ROM 7:20!11 +ROM 7:20!12 +ROM 7:20!13 +ROM 7:20!14 +ROM 7:20!15 +ROM 7:20!16 +ROM 7:20!17 +ROM 7:20!18 +ROM 7:21!2 +ROM 7:21!1 +ROM 7:21!3 +ROM 7:21!4 +ROM 7:21!7 +ROM 7:21!5 +ROM 7:21!6 +ROM 7:21!8 +ROM 7:21!9 +ROM 7:21!10 +ROM 7:21!11 +ROM 7:21!12 +ROM 7:21!13 +ROM 7:21!14 +ROM 7:21!15 +ROM 7:22!2 +ROM 7:22!1 +ROM 7:22!3 +ROM 7:22!4 +ROM 7:22!5 +ROM 7:22!6 +ROM 7:22!7 +ROM 7:22!8 +ROM 7:22!9 +ROM 7:22!10 +ROM 7:23!2 +ROM 7:23!1 +ROM 7:23!3 +ROM 7:23!4 +ROM 7:23!5 +ROM 7:23!6 +ROM 7:23!7 +ROM 7:23!8 +ROM 7:23!9 +ROM 7:23!10 +ROM 7:23!11 +ROM 7:23!12 +ROM 7:23!13 +ROM 7:23!14 +ROM 7:23!15 +ROM 7:23!16 +ROM 7:23!17 +ROM 7:23!18 +ROM 7:23!19 +ROM 7:23!20 +ROM 7:23!21 +ROM 7:23!22 +ROM 7:23!23 +ROM 7:23!24 +ROM 7:23!25 +ROM 7:23!26 +ROM 7:23!27 +ROM 7:23!28 +ROM 7:24!1 +ROM 7:24!3 +ROM 7:24!2 +ROM 7:24!4 +ROM 7:24!5 +ROM 7:24!6 +ROM 7:24!7 +ROM 7:24!8 +ROM 7:24!9 +ROM 7:24!10 +ROM 7:24!11 +ROM 7:24!12 +ROM 7:25!1 +ROM 7:25!2 +ROM 7:25!3 +ROM 7:25!4 +ROM 7:25!5 +ROM 7:25!6 +ROM 7:25!7 +ROM 7:25!8 +ROM 7:25!9 +ROM 7:25!10 +ROM 7:25!11 +ROM 7:25!15 +ROM 7:25!12 +ROM 7:25!13 +ROM 7:25!14 +ROM 7:25!16 +ROM 7:25!17 +ROM 7:25!18 +ROM 7:25!19 +ROM 7:25!21 +ROM 7:25!20 +ROM 7:25!22 +ROM 7:25!23 +ROM 7:25!24 +ROM 8:1!2 +ROM 8:1!1 +ROM 8:1!4 +ROM 8:1!3 +ROM 8:1!5 +ROM 8:1!6 +ROM 8:1!7 +ROM 8:1!8 +ROM 8:2!2 +ROM 8:2!1 +ROM 8:2!3 +ROM 8:2!4 +ROM 8:2!5 +ROM 8:2!6 +ROM 8:2!7 +ROM 8:2!8 +ROM 8:2!9 +ROM 8:2!10 +ROM 8:2!11 +ROM 8:2!12 +ROM 8:2!13 +ROM 8:2!14 +ROM 8:2!15 +ROM 8:2!16 +ROM 8:2!17 +ROM 8:2!18 +ROM 8:2!19 +ROM 8:2!20 +ROM 8:3!2 +ROM 8:3!1 +ROM 8:3!3 +ROM 8:3!4 +ROM 8:3!5 +ROM 8:3!6 +ROM 8:3!7 +ROM 8:3!8 +ROM 8:3!9 +ROM 8:3!10 +ROM 8:3!11 +ROM 8:3!12 +ROM 8:3!13 +ROM 8:3!14 +ROM 8:3!15 +ROM 8:3!16 +ROM 8:3!17 +ROM 8:3!18 +ROM 8:3!19 +ROM 8:3!20 +ROM 8:3!21 +ROM 8:3!22 +ROM 8:3!23 +ROM 8:3!24 +ROM 8:3!25 +ROM 8:3!26 +ROM 8:3!27 +ROM 8:3!28 +ROM 8:3!29 +ROM 8:3!30 +ROM 8:4!1 +ROM 8:4!2 +ROM 8:4!3 +ROM 8:4!4 +ROM 8:4!5 +ROM 8:4!6 +ROM 8:4!7 +ROM 8:4!8 +ROM 8:4!9 +ROM 8:4!13 +ROM 8:4!10 +ROM 8:4!11 +ROM 8:4!12 +ROM 8:4!14 +ROM 8:4!15 +ROM 8:4!16 +ROM 8:5!2 +ROM 8:5!1 +ROM 8:5!3 +ROM 8:5!4 +ROM 8:5!5 +ROM 8:5!6 +ROM 8:5!7 +ROM 8:5!8 +ROM 8:5!9 +ROM 8:5!11 +ROM 8:5!10 +ROM 8:5!12 +ROM 8:5!13 +ROM 8:5!14 +ROM 8:5!15 +ROM 8:5!16 +ROM 8:6!2 +ROM 8:6!1 +ROM 8:6!3 +ROM 8:6!4 +ROM 8:6!5 +ROM 8:6!6 +ROM 8:6!8 +ROM 8:6!7 +ROM 8:6!9 +ROM 8:6!10 +ROM 8:6!11 +ROM 8:6!12 +ROM 8:6!13 +ROM 8:6!14 +ROM 8:7!1 +ROM 8:7!2 +ROM 8:7!3 +ROM 8:7!4 +ROM 8:7!5 +ROM 8:7!6 +ROM 8:7!7 +ROM 8:7!8 +ROM 8:7!10 +ROM 8:7!9 +ROM 8:7!11 +ROM 8:7!12 +ROM 8:7!13 +ROM 8:7!14 +ROM 8:7!15 +ROM 8:7!17 +ROM 8:7!16 +ROM 8:7!18 +ROM 8:8!2 +ROM 8:8!1 +ROM 8:8!3 +ROM 8:8!4 +ROM 8:8!5 +ROM 8:8!6 +ROM 8:8!7 +ROM 8:8!8 +ROM 8:8!9 +ROM 8:9!2 +ROM 8:9!1 +ROM 8:9!4 +ROM 8:9!3 +ROM 8:9!5 +ROM 8:9!6 +ROM 8:9!7 +ROM 8:9!8 +ROM 8:9!9 +ROM 8:9!10 +ROM 8:9!11 +ROM 8:9!12 +ROM 8:9!13 +ROM 8:9!14 +ROM 8:9!15 +ROM 8:9!17 +ROM 8:9!16 +ROM 8:9!18 +ROM 8:9!19 +ROM 8:9!20 +ROM 8:9!21 +ROM 8:9!22 +ROM 8:9!23 +ROM 8:9!24 +ROM 8:9!25 +ROM 8:9!26 +ROM 8:10!2 +ROM 8:10!1 +ROM 8:10!3 +ROM 8:10!4 +ROM 8:10!5 +ROM 8:10!7 +ROM 8:10!6 +ROM 8:10!8 +ROM 8:10!9 +ROM 8:10!10 +ROM 8:10!11 +ROM 8:10!13 +ROM 8:10!12 +ROM 8:10!14 +ROM 8:10!15 +ROM 8:10!16 +ROM 8:10!17 +ROM 8:11!2 +ROM 8:11!1 +ROM 8:11!3 +ROM 8:11!4 +ROM 8:11!5 +ROM 8:11!6 +ROM 8:11!7 +ROM 8:11!8 +ROM 8:11!9 +ROM 8:11!10 +ROM 8:11!11 +ROM 8:11!12 +ROM 8:11!13 +ROM 8:11!14 +ROM 8:11!15 +ROM 8:11!16 +ROM 8:11!17 +ROM 8:11!18 +ROM 8:11!19 +ROM 8:11!20 +ROM 8:11!21 +ROM 8:11!22 +ROM 8:11!23 +ROM 8:11!24 +ROM 8:11!25 +ROM 8:11!26 +ROM 8:11!27 +ROM 8:11!28 +ROM 8:11!31 +ROM 8:11!32 +ROM 8:11!29 +ROM 8:11!30 +ROM 8:12!1 +ROM 8:12!2 +ROM 8:12!3 +ROM 8:12!4 +ROM 8:12!5 +ROM 8:12!6 +ROM 8:12!7 +ROM 8:12!8 +ROM 8:12!9 +ROM 8:12!10 +ROM 8:12!11 +ROM 8:12!12 +ROM 8:13!2 +ROM 8:13!1 +ROM 8:13!3 +ROM 8:13!4 +ROM 8:13!5 +ROM 8:13!6 +ROM 8:13!7 +ROM 8:13!9 +ROM 8:13!8 +ROM 8:13!10 +ROM 8:13!11 +ROM 8:13!12 +ROM 8:13!13 +ROM 8:13!14 +ROM 8:13!15 +ROM 8:13!16 +ROM 8:14!2 +ROM 8:14!1 +ROM 8:14!3 +ROM 8:14!4 +ROM 8:14!5 +ROM 8:14!6 +ROM 8:14!7 +ROM 8:14!9 +ROM 8:14!8 +ROM 8:15!2 +ROM 8:15!1 +ROM 8:15!3 +ROM 8:15!4 +ROM 8:15!5 +ROM 8:15!6 +ROM 8:15!7 +ROM 8:15!8 +ROM 8:15!9 +ROM 8:15!10 +ROM 8:15!11 +ROM 8:15!12 +ROM 8:15!13 +ROM 8:15!14 +ROM 8:15!15 +ROM 8:15!16 +ROM 8:15!17 +ROM 8:15!18 +ROM 8:16!1 +ROM 8:16!2 +ROM 8:16!3 +ROM 8:16!4 +ROM 8:16!5 +ROM 8:16!6 +ROM 8:16!7 +ROM 8:16!8 +ROM 8:16!9 +ROM 8:16!10 +ROM 8:16!11 +ROM 8:17!2 +ROM 8:17!1 +ROM 8:17!3 +ROM 8:17!4 +ROM 8:17!5 +ROM 8:17!7 +ROM 8:17!6 +ROM 8:17!8 +ROM 8:17!10 +ROM 8:17!9 +ROM 8:17!11 +ROM 8:17!12 +ROM 8:17!13 +ROM 8:17!14 +ROM 8:17!15 +ROM 8:17!16 +ROM 8:18!2 +ROM 8:18!1 +ROM 8:18!3 +ROM 8:18!4 +ROM 8:18!5 +ROM 8:18!6 +ROM 8:18!7 +ROM 8:18!8 +ROM 8:18!9 +ROM 8:18!10 +ROM 8:18!11 +ROM 8:18!12 +ROM 8:18!13 +ROM 8:18!15 +ROM 8:18!16 +ROM 8:18!17 +ROM 8:18!14 +ROM 8:19!2 +ROM 8:19!1 +ROM 8:19!3 +ROM 8:19!4 +ROM 8:19!5 +ROM 8:19!6 +ROM 8:19!7 +ROM 8:19!8 +ROM 8:19!9 +ROM 8:19!10 +ROM 8:19!11 +ROM 8:19!12 +ROM 8:20!2 +ROM 8:20!1 +ROM 8:20!3 +ROM 8:20!4 +ROM 8:20!5 +ROM 8:20!6 +ROM 8:20!7 +ROM 8:20!8 +ROM 8:20!9 +ROM 8:20!10 +ROM 8:20!11 +ROM 8:20!12 +ROM 8:20!13 +ROM 8:20!14 +ROM 8:21!1 +ROM 8:21!2 +ROM 8:21!3 +ROM 8:21!4 +ROM 8:21!5 +ROM 8:21!6 +ROM 8:21!7 +ROM 8:21!8 +ROM 8:21!9 +ROM 8:21!10 +ROM 8:21!11 +ROM 8:21!12 +ROM 8:21!13 +ROM 8:21!14 +ROM 8:21!15 +ROM 8:21!16 +ROM 8:21!17 +ROM 8:21!18 +ROM 8:21!19 +ROM 8:21!20 +ROM 8:22!2 +ROM 8:22!1 +ROM 8:22!3 +ROM 8:22!4 +ROM 8:22!5 +ROM 8:22!6 +ROM 8:22!7 +ROM 8:22!8 +ROM 8:22!9 +ROM 8:22!10 +ROM 8:22!11 +ROM 8:22!12 +ROM 8:23!3 +ROM 8:23!1 +ROM 8:23!2 +ROM 8:23!4 +ROM 8:23!5 +ROM 8:23!6 +ROM 8:23!7 +ROM 8:23!8 +ROM 8:23!9 +ROM 8:23!10 +ROM 8:23!11 +ROM 8:23!12 +ROM 8:23!13 +ROM 8:23!14 +ROM 8:23!15 +ROM 8:23!16 +ROM 8:23!17 +ROM 8:23!19 +ROM 8:23!18 +ROM 8:23!20 +ROM 8:23!21 +ROM 8:23!22 +ROM 8:23!23 +ROM 8:23!24 +ROM 8:24!2 +ROM 8:24!1 +ROM 8:24!3 +ROM 8:24!4 +ROM 8:24!6 +ROM 8:24!5 +ROM 8:24!7 +ROM 8:24!8 +ROM 8:24!9 +ROM 8:24!10 +ROM 8:24!12 +ROM 8:24!11 +ROM 8:24!13 +ROM 8:24!14 +ROM 8:24!15 +ROM 8:24!16 +ROM 8:25!2 +ROM 8:25!1 +ROM 8:25!3 +ROM 8:25!4 +ROM 8:25!5 +ROM 8:25!6 +ROM 8:25!7 +ROM 8:25!8 +ROM 8:25!9 +ROM 8:26!2 +ROM 8:26!1 +ROM 8:26!3 +ROM 8:26!4 +ROM 8:26!5 +ROM 8:26!6 +ROM 8:26!7 +ROM 8:26!8 +ROM 8:26!9 +ROM 8:26!11 +ROM 8:26!10 +ROM 8:26!12 +ROM 8:26!13 +ROM 8:26!14 +ROM 8:26!15 +ROM 8:26!16 +ROM 8:26!17 +ROM 8:26!18 +ROM 8:26!19 +ROM 8:26!20 +ROM 8:26!21 +ROM 8:26!22 +ROM 8:26!23 +ROM 8:26!24 +ROM 8:27!2 +ROM 8:27!1 +ROM 8:27!3 +ROM 8:27!4 +ROM 8:27!5 +ROM 8:27!6 +ROM 8:27!7 +ROM 8:27!8 +ROM 8:27!9 +ROM 8:27!10 +ROM 8:27!11 +ROM 8:27!12 +ROM 8:27!13 +ROM 8:27!14 +ROM 8:27!15 +ROM 8:27!16 +ROM 8:27!17 +ROM 8:28!2 +ROM 8:28!1 +ROM 8:28!3 +ROM 8:28!4 +ROM 8:28!5 +ROM 8:28!6 +ROM 8:28!7 +ROM 8:28!8 +ROM 8:28!9 +ROM 8:28!10 +ROM 8:28!11 +ROM 8:28!12 +ROM 8:28!13 +ROM 8:28!14 +ROM 8:28!15 +ROM 8:28!16 +ROM 8:29!1 +ROM 8:29!2 +ROM 8:29!3 +ROM 8:29!4 +ROM 8:29!5 +ROM 8:29!6 +ROM 8:29!7 +ROM 8:29!8 +ROM 8:29!9 +ROM 8:29!10 +ROM 8:29!11 +ROM 8:29!12 +ROM 8:29!13 +ROM 8:29!14 +ROM 8:29!15 +ROM 8:29!16 +ROM 8:29!17 +ROM 8:29!18 +ROM 8:29!19 +ROM 8:30!2 +ROM 8:30!1 +ROM 8:30!3 +ROM 8:30!4 +ROM 8:30!5 +ROM 8:30!6 +ROM 8:30!7 +ROM 8:30!8 +ROM 8:30!9 +ROM 8:30!10 +ROM 8:30!11 +ROM 8:30!12 +ROM 8:30!14 +ROM 8:30!13 +ROM 8:30!15 +ROM 8:30!16 +ROM 8:30!17 +ROM 8:30!18 +ROM 8:31!2 +ROM 8:31!1 +ROM 8:31!3 +ROM 8:31!4 +ROM 8:31!5 +ROM 8:31!6 +ROM 8:31!7 +ROM 8:31!8 +ROM 8:31!9 +ROM 8:31!10 +ROM 8:31!11 +ROM 8:31!12 +ROM 8:31!13 +ROM 8:32!2 +ROM 8:32!1 +ROM 8:32!3 +ROM 8:32!4 +ROM 8:32!5 +ROM 8:32!6 +ROM 8:32!7 +ROM 8:32!8 +ROM 8:32!9 +ROM 8:32!10 +ROM 8:32!11 +ROM 8:32!12 +ROM 8:32!13 +ROM 8:32!14 +ROM 8:32!15 +ROM 8:32!16 +ROM 8:32!17 +ROM 8:32!18 +ROM 8:32!19 +ROM 8:32!20 +ROM 8:32!21 +ROM 8:32!22 +ROM 8:33!1 +ROM 8:33!2 +ROM 8:33!3 +ROM 8:33!4 +ROM 8:33!5 +ROM 8:33!6 +ROM 8:33!7 +ROM 8:33!8 +ROM 8:34!1 +ROM 8:34!2 +ROM 8:34!3 +ROM 8:34!4 +ROM 8:34!5 +ROM 8:34!6 +ROM 8:34!7 +ROM 8:34!9 +ROM 8:34!8 +ROM 8:34!10 +ROM 8:34!11 +ROM 8:34!12 +ROM 8:34!13 +ROM 8:34!14 +ROM 8:34!15 +ROM 8:34!16 +ROM 8:34!17 +ROM 8:34!18 +ROM 8:34!19 +ROM 8:34!20 +ROM 8:34!21 +ROM 8:35!1 +ROM 8:35!2 +ROM 8:35!3 +ROM 8:35!4 +ROM 8:35!5 +ROM 8:35!6 +ROM 8:35!7 +ROM 8:35!8 +ROM 8:35!9 +ROM 8:35!10 +ROM 8:35!11 +ROM 8:35!12 +ROM 8:35!13 +ROM 8:35!14 +ROM 8:35!15 +ROM 8:35!16 +ROM 8:35!17 +ROM 8:35!18 +ROM 8:35!19 +ROM 8:35!20 +ROM 8:35!21 +ROM 8:36!1 +ROM 8:36!2 +ROM 8:36!3 +ROM 8:36!4 +ROM 8:36!5 +ROM 8:36!6 +ROM 8:36!7 +ROM 8:36!8 +ROM 8:36!9 +ROM 8:36!10 +ROM 8:36!11 +ROM 8:36!12 +ROM 8:36!13 +ROM 8:37!1 +ROM 8:37!2 +ROM 8:37!3 +ROM 8:37!4 +ROM 8:37!5 +ROM 8:37!6 +ROM 8:37!7 +ROM 8:37!8 +ROM 8:37!9 +ROM 8:38!2 +ROM 8:38!1 +ROM 8:38!3 +ROM 8:38!4 +ROM 8:38!5 +ROM 8:38!6 +ROM 8:38!7 +ROM 8:38!8 +ROM 8:38!9 +ROM 8:38!10 +ROM 8:38!11 +ROM 8:38!12 +ROM 8:38!13 +ROM 8:38!14 +ROM 8:38!15 +ROM 8:38!16 +ROM 8:38!17 +ROM 8:39!1 +ROM 8:39!2 +ROM 8:39!3 +ROM 8:39!4 +ROM 8:39!5 +ROM 8:39!6 +ROM 8:39!7 +ROM 8:39!8 +ROM 8:39!9 +ROM 8:39!10 +ROM 8:39!11 +ROM 8:39!12 +ROM 8:39!13 +ROM 8:39!14 +ROM 8:39!15 +ROM 8:39!16 +ROM 8:39!17 +ROM 8:39!18 +ROM 8:39!19 +ROM 8:39!20 +ROM 8:39!21 +ROM 8:39!22 +ROM 8:39!23 +ROM 9:1!1 +ROM 9:1!2 +ROM 9:1!3 +ROM 9:1!4 +ROM 9:1!5 +ROM 9:1!6 +ROM 9:1!7 +ROM 9:1!8 +ROM 9:1!9 +ROM 9:1!10 +ROM 9:1!11 +ROM 9:1!12 +ROM 9:1!13 +ROM 9:1!14 +ROM 9:2!1 +ROM 9:2!2 +ROM 9:2!3 +ROM 9:2!4 +ROM 9:2!5 +ROM 9:2!6 +ROM 9:2!7 +ROM 9:2!8 +ROM 9:2!9 +ROM 9:2!10 +ROM 9:2!11 +ROM 9:3!2 +ROM 9:3!1 +ROM 9:3!5 +ROM 9:3!6 +ROM 9:3!3 +ROM 9:3!4 +ROM 9:3!7 +ROM 9:3!8 +ROM 9:3!9 +ROM 9:3!10 +ROM 9:3!11 +ROM 9:3!12 +ROM 9:3!13 +ROM 9:3!14 +ROM 9:3!15 +ROM 9:3!16 +ROM 9:3!17 +ROM 9:3!18 +ROM 9:4!1 +ROM 9:4!2 +ROM 9:4!3 +ROM 9:4!4 +ROM 9:4!5 +ROM 9:4!6 +ROM 9:4!7 +ROM 9:4!8 +ROM 9:4!9 +ROM 9:4!10 +ROM 9:4!11 +ROM 9:4!12 +ROM 9:4!13 +ROM 9:4!14 +ROM 9:4!15 +ROM 9:4!16 +ROM 9:4!17 +ROM 9:4!18 +ROM 9:4!19 +ROM 9:4!20 +ROM 9:4!21 +ROM 9:5!1 +ROM 9:5!2 +ROM 9:5!3 +ROM 9:5!4 +ROM 9:5!5 +ROM 9:5!6 +ROM 9:5!7 +ROM 9:5!8 +ROM 9:5!9 +ROM 9:5!10 +ROM 9:5!11 +ROM 9:5!12 +ROM 9:5!13 +ROM 9:5!14 +ROM 9:5!15 +ROM 9:5!16 +ROM 9:5!17 +ROM 9:5!18 +ROM 9:5!19 +ROM 9:5!20 +ROM 9:5!21 +ROM 9:6!3 +ROM 9:6!1 +ROM 9:6!2 +ROM 9:6!4 +ROM 9:6!5 +ROM 9:6!6 +ROM 9:6!7 +ROM 9:6!8 +ROM 9:6!9 +ROM 9:6!11 +ROM 9:6!10 +ROM 9:6!12 +ROM 9:6!13 +ROM 9:6!14 +ROM 9:6!15 +ROM 9:6!16 +ROM 9:6!17 +ROM 9:7!1 +ROM 9:7!2 +ROM 9:7!3 +ROM 9:7!4 +ROM 9:7!5 +ROM 9:7!6 +ROM 9:7!7 +ROM 9:7!8 +ROM 9:7!9 +ROM 9:7!10 +ROM 9:7!11 +ROM 9:7!12 +ROM 9:7!13 +ROM 9:8!1 +ROM 9:8!2 +ROM 9:8!3 +ROM 9:8!4 +ROM 9:8!5 +ROM 9:8!6 +ROM 9:8!7 +ROM 9:8!8 +ROM 9:8!9 +ROM 9:8!10 +ROM 9:8!11 +ROM 9:8!12 +ROM 9:8!13 +ROM 9:8!14 +ROM 9:8!15 +ROM 9:8!16 +ROM 9:8!17 +ROM 9:8!18 +ROM 9:8!19 +ROM 9:9!2 +ROM 9:9!1 +ROM 9:9!3 +ROM 9:9!4 +ROM 9:9!5 +ROM 9:9!6 +ROM 9:9!7 +ROM 9:9!8 +ROM 9:9!9 +ROM 9:9!10 +ROM 9:9!11 +ROM 9:9!12 +ROM 9:9!13 +ROM 9:9!14 +ROM 9:9!15 +ROM 9:10!3 +ROM 9:10!1 +ROM 9:10!2 +ROM 9:10!4 +ROM 9:10!5 +ROM 9:10!6 +ROM 9:10!9 +ROM 9:10!10 +ROM 9:10!7 +ROM 9:10!8 +ROM 9:10!11 +ROM 9:10!12 +ROM 9:10!13 +ROM 9:10!14 +ROM 9:11!2 +ROM 9:11!1 +ROM 9:11!3 +ROM 9:11!4 +ROM 9:11!5 +ROM 9:11!6 +ROM 9:11!7 +ROM 9:11!8 +ROM 9:11!9 +ROM 9:11!10 +ROM 9:11!11 +ROM 9:11!12 +ROM 9:11!13 +ROM 9:11!14 +ROM 9:11!15 +ROM 9:11!16 +ROM 9:11!17 +ROM 9:12!1 +ROM 9:12!2 +ROM 9:12!3 +ROM 9:12!4 +ROM 9:12!5 +ROM 9:12!6 +ROM 9:12!7 +ROM 9:12!8 +ROM 9:12!9 +ROM 9:12!10 +ROM 9:12!11 +ROM 9:12!12 +ROM 9:12!13 +ROM 9:12!14 +ROM 9:12!15 +ROM 9:13!1 +ROM 9:13!2 +ROM 9:13!3 +ROM 9:13!4 +ROM 9:13!5 +ROM 9:13!7 +ROM 9:13!6 +ROM 9:13!8 +ROM 9:13!9 +ROM 9:14!2 +ROM 9:14!1 +ROM 9:14!3 +ROM 9:14!4 +ROM 9:14!5 +ROM 9:14!6 +ROM 9:14!7 +ROM 9:14!8 +ROM 9:14!9 +ROM 9:14!10 +ROM 9:15!3 +ROM 9:15!1 +ROM 9:15!2 +ROM 9:15!4 +ROM 9:15!5 +ROM 9:15!7 +ROM 9:15!6 +ROM 9:15!8 +ROM 9:15!9 +ROM 9:15!10 +ROM 9:15!12 +ROM 9:15!11 +ROM 9:15!13 +ROM 9:16!1 +ROM 9:16!2 +ROM 9:16!3 +ROM 9:16!4 +ROM 9:16!5 +ROM 9:16!6 +ROM 9:16!7 +ROM 9:16!8 +ROM 9:16!9 +ROM 9:16!10 +ROM 9:16!11 +ROM 9:16!12 +ROM 9:17!2 +ROM 9:17!1 +ROM 9:17!3 +ROM 9:17!4 +ROM 9:17!5 +ROM 9:17!6 +ROM 9:17!7 +ROM 9:17!8 +ROM 9:17!9 +ROM 9:17!10 +ROM 9:17!11 +ROM 9:17!12 +ROM 9:17!13 +ROM 9:17!14 +ROM 9:17!15 +ROM 9:17!16 +ROM 9:17!17 +ROM 9:17!18 +ROM 9:17!19 +ROM 9:17!20 +ROM 9:17!21 +ROM 9:17!22 +ROM 9:17!23 +ROM 9:17!24 +ROM 9:17!25 +ROM 9:17!26 +ROM 9:17!27 +ROM 9:17!28 +ROM 9:17!29 +ROM 9:18!1 +ROM 9:18!2 +ROM 9:18!3 +ROM 9:18!4 +ROM 9:18!5 +ROM 9:18!7 +ROM 9:18!6 +ROM 9:18!8 +ROM 9:18!9 +ROM 9:19!3 +ROM 9:19!1 +ROM 9:19!2 +ROM 9:19!4 +ROM 9:19!5 +ROM 9:19!6 +ROM 9:19!8 +ROM 9:19!7 +ROM 9:19!9 +ROM 9:19!10 +ROM 9:19!11 +ROM 9:19!12 +ROM 9:20!1 +ROM 9:20!2 +ROM 9:20!3 +ROM 9:20!5 +ROM 9:20!6 +ROM 9:20!4 +ROM 9:20!7 +ROM 9:20!8 +ROM 9:20!9 +ROM 9:20!10 +ROM 9:20!11 +ROM 9:20!12 +ROM 9:20!13 +ROM 9:20!14 +ROM 9:20!15 +ROM 9:20!16 +ROM 9:20!17 +ROM 9:20!18 +ROM 9:20!19 +ROM 9:20!20 +ROM 9:21!1 +ROM 9:21!2 +ROM 9:21!3 +ROM 9:21!5 +ROM 9:21!6 +ROM 9:21!4 +ROM 9:21!7 +ROM 9:21!8 +ROM 9:21!9 +ROM 9:21!10 +ROM 9:21!11 +ROM 9:21!12 +ROM 9:21!13 +ROM 9:21!18 +ROM 9:21!15 +ROM 9:21!14 +ROM 9:21!16 +ROM 9:21!17 +ROM 9:21!20 +ROM 9:21!19 +ROM 9:21!21 +ROM 9:21!22 +ROM 9:22!2 +ROM 9:22!1 +ROM 9:22!4 +ROM 9:22!5 +ROM 9:22!3 +ROM 9:22!6 +ROM 9:22!7 +ROM 9:22!8 +ROM 9:22!9 +ROM 9:22!10 +ROM 9:22!11 +ROM 9:22!12 +ROM 9:22!13 +ROM 9:22!14 +ROM 9:22!15 +ROM 9:22!16 +ROM 9:22!17 +ROM 9:22!18 +ROM 9:22!19 +ROM 9:22!20 +ROM 9:22!21 +ROM 9:22!22 +ROM 9:23!1 +ROM 9:23!2 +ROM 9:23!3 +ROM 9:23!4 +ROM 9:23!5 +ROM 9:23!6 +ROM 9:23!7 +ROM 9:23!8 +ROM 9:23!9 +ROM 9:23!10 +ROM 9:23!11 +ROM 9:23!12 +ROM 9:23!13 +ROM 9:23!14 +ROM 9:23!15 +ROM 9:24!1 +ROM 9:24!2 +ROM 9:24!3 +ROM 9:24!4 +ROM 9:24!5 +ROM 9:24!6 +ROM 9:24!7 +ROM 9:24!8 +ROM 9:24!9 +ROM 9:24!10 +ROM 9:24!11 +ROM 9:24!12 +ROM 9:25!1 +ROM 9:25!2 +ROM 9:25!3 +ROM 9:25!4 +ROM 9:25!5 +ROM 9:25!6 +ROM 9:25!7 +ROM 9:25!8 +ROM 9:25!9 +ROM 9:25!10 +ROM 9:25!11 +ROM 9:25!12 +ROM 9:25!13 +ROM 9:25!14 +ROM 9:25!15 +ROM 9:25!16 +ROM 9:25!17 +ROM 9:25!18 +ROM 9:26!1 +ROM 9:26!2 +ROM 9:26!3 +ROM 9:26!4 +ROM 9:26!5 +ROM 9:26!6 +ROM 9:26!7 +ROM 9:26!8 +ROM 9:26!9 +ROM 9:26!10 +ROM 9:26!11 +ROM 9:26!12 +ROM 9:26!13 +ROM 9:26!14 +ROM 9:26!15 +ROM 9:26!16 +ROM 9:26!17 +ROM 9:27!2 +ROM 9:27!1 +ROM 9:27!3 +ROM 9:27!4 +ROM 9:27!5 +ROM 9:27!6 +ROM 9:27!7 +ROM 9:27!8 +ROM 9:27!9 +ROM 9:27!10 +ROM 9:27!11 +ROM 9:27!12 +ROM 9:27!13 +ROM 9:27!14 +ROM 9:27!15 +ROM 9:27!16 +ROM 9:27!17 +ROM 9:27!18 +ROM 9:27!19 +ROM 9:27!20 +ROM 9:27!21 +ROM 9:28!2 +ROM 9:28!1 +ROM 9:28!3 +ROM 9:28!4 +ROM 9:28!5 +ROM 9:28!6 +ROM 9:28!7 +ROM 9:28!8 +ROM 9:28!9 +ROM 9:28!10 +ROM 9:29!1 +ROM 9:29!2 +ROM 9:29!3 +ROM 9:29!4 +ROM 9:29!5 +ROM 9:29!6 +ROM 9:29!7 +ROM 9:29!8 +ROM 9:29!9 +ROM 9:29!10 +ROM 9:29!11 +ROM 9:29!14 +ROM 9:29!12 +ROM 9:29!13 +ROM 9:29!15 +ROM 9:29!16 +ROM 9:29!19 +ROM 9:29!17 +ROM 9:29!18 +ROM 9:29!20 +ROM 9:30!2 +ROM 9:30!1 +ROM 9:30!3 +ROM 9:30!4 +ROM 9:30!5 +ROM 9:30!6 +ROM 9:30!7 +ROM 9:30!8 +ROM 9:30!9 +ROM 9:30!10 +ROM 9:30!11 +ROM 9:30!13 +ROM 9:30!12 +ROM 9:30!14 +ROM 9:30!15 +ROM 9:30!16 +ROM 9:31!2 +ROM 9:31!1 +ROM 9:31!3 +ROM 9:31!4 +ROM 9:31!5 +ROM 9:31!6 +ROM 9:31!7 +ROM 9:31!8 +ROM 9:31!9 +ROM 9:32!1 +ROM 9:32!2 +ROM 9:32!3 +ROM 9:32!4 +ROM 9:32!5 +ROM 9:32!6 +ROM 9:32!7 +ROM 9:32!8 +ROM 9:32!9 +ROM 9:32!10 +ROM 9:32!11 +ROM 9:32!12 +ROM 9:32!13 +ROM 9:32!14 +ROM 9:32!15 +ROM 9:33!1 +ROM 9:33!2 +ROM 9:33!3 +ROM 9:33!4 +ROM 9:33!5 +ROM 9:33!6 +ROM 9:33!7 +ROM 9:33!8 +ROM 9:33!9 +ROM 9:33!10 +ROM 9:33!11 +ROM 9:33!12 +ROM 9:33!13 +ROM 9:33!14 +ROM 9:33!15 +ROM 9:33!16 +ROM 9:33!17 +ROM 9:33!18 +ROM 10:1!1 +ROM 10:1!3 +ROM 10:1!2 +ROM 10:1!4 +ROM 10:1!5 +ROM 10:1!6 +ROM 10:1!7 +ROM 10:1!8 +ROM 10:1!9 +ROM 10:1!10 +ROM 10:1!11 +ROM 10:1!12 +ROM 10:1!13 +ROM 10:1!14 +ROM 10:1!15 +ROM 10:1!16 +ROM 10:1!17 +ROM 10:2!2 +ROM 10:2!1 +ROM 10:2!3 +ROM 10:2!4 +ROM 10:2!5 +ROM 10:2!6 +ROM 10:2!7 +ROM 10:2!8 +ROM 10:2!9 +ROM 10:2!10 +ROM 10:2!11 +ROM 10:3!2 +ROM 10:3!1 +ROM 10:3!3 +ROM 10:3!4 +ROM 10:3!5 +ROM 10:3!6 +ROM 10:3!7 +ROM 10:3!8 +ROM 10:3!9 +ROM 10:3!11 +ROM 10:3!10 +ROM 10:3!12 +ROM 10:3!13 +ROM 10:3!14 +ROM 10:3!15 +ROM 10:3!16 +ROM 10:3!17 +ROM 10:4!2 +ROM 10:4!1 +ROM 10:4!3 +ROM 10:4!4 +ROM 10:4!5 +ROM 10:4!6 +ROM 10:4!7 +ROM 10:4!8 +ROM 10:4!9 +ROM 10:5!2 +ROM 10:5!1 +ROM 10:5!3 +ROM 10:5!4 +ROM 10:5!5 +ROM 10:5!6 +ROM 10:5!7 +ROM 10:5!8 +ROM 10:5!9 +ROM 10:5!10 +ROM 10:5!11 +ROM 10:5!12 +ROM 10:5!13 +ROM 10:5!14 +ROM 10:5!15 +ROM 10:6!2 +ROM 10:6!1 +ROM 10:6!3 +ROM 10:6!4 +ROM 10:6!5 +ROM 10:6!6 +ROM 10:6!7 +ROM 10:6!8 +ROM 10:6!9 +ROM 10:6!10 +ROM 10:6!11 +ROM 10:6!12 +ROM 10:6!13 +ROM 10:6!14 +ROM 10:6!15 +ROM 10:6!16 +ROM 10:6!17 +ROM 10:6!18 +ROM 10:6!19 +ROM 10:6!20 +ROM 10:6!21 +ROM 10:6!22 +ROM 10:7!1 +ROM 10:7!2 +ROM 10:7!3 +ROM 10:7!4 +ROM 10:7!5 +ROM 10:7!6 +ROM 10:7!7 +ROM 10:7!8 +ROM 10:7!9 +ROM 10:7!10 +ROM 10:7!11 +ROM 10:7!12 +ROM 10:8!1 +ROM 10:8!2 +ROM 10:8!3 +ROM 10:8!4 +ROM 10:8!5 +ROM 10:8!6 +ROM 10:8!7 +ROM 10:8!8 +ROM 10:8!9 +ROM 10:8!10 +ROM 10:8!11 +ROM 10:8!12 +ROM 10:8!13 +ROM 10:8!14 +ROM 10:8!15 +ROM 10:8!16 +ROM 10:8!17 +ROM 10:8!18 +ROM 10:8!19 +ROM 10:8!20 +ROM 10:8!21 +ROM 10:8!22 +ROM 10:8!23 +ROM 10:8!24 +ROM 10:8!25 +ROM 10:9!1 +ROM 10:9!2 +ROM 10:9!3 +ROM 10:9!4 +ROM 10:9!5 +ROM 10:9!6 +ROM 10:9!7 +ROM 10:9!8 +ROM 10:9!9 +ROM 10:9!10 +ROM 10:9!11 +ROM 10:9!12 +ROM 10:9!13 +ROM 10:9!14 +ROM 10:9!15 +ROM 10:9!16 +ROM 10:9!17 +ROM 10:9!18 +ROM 10:9!19 +ROM 10:9!20 +ROM 10:9!21 +ROM 10:9!22 +ROM 10:9!23 +ROM 10:10!2 +ROM 10:10!1 +ROM 10:10!3 +ROM 10:10!4 +ROM 10:10!5 +ROM 10:10!7 +ROM 10:10!6 +ROM 10:10!8 +ROM 10:10!9 +ROM 10:10!10 +ROM 10:11!2 +ROM 10:11!1 +ROM 10:11!3 +ROM 10:11!4 +ROM 10:11!5 +ROM 10:11!6 +ROM 10:11!7 +ROM 10:11!8 +ROM 10:11!9 +ROM 10:11!10 +ROM 10:11!11 +ROM 10:12!2 +ROM 10:12!1 +ROM 10:12!3 +ROM 10:12!4 +ROM 10:12!6 +ROM 10:12!5 +ROM 10:12!7 +ROM 10:12!8 +ROM 10:12!10 +ROM 10:12!9 +ROM 10:12!11 +ROM 10:12!12 +ROM 10:12!13 +ROM 10:12!14 +ROM 10:12!15 +ROM 10:12!16 +ROM 10:12!17 +ROM 10:12!18 +ROM 10:12!19 +ROM 10:13!2 +ROM 10:13!1 +ROM 10:13!4 +ROM 10:13!3 +ROM 10:13!5 +ROM 10:13!6 +ROM 10:13!7 +ROM 10:13!8 +ROM 10:13!9 +ROM 10:14!2 +ROM 10:14!1 +ROM 10:14!3 +ROM 10:14!4 +ROM 10:14!5 +ROM 10:14!6 +ROM 10:14!7 +ROM 10:14!9 +ROM 10:14!8 +ROM 10:14!10 +ROM 10:14!11 +ROM 10:14!12 +ROM 10:14!13 +ROM 10:14!15 +ROM 10:14!14 +ROM 10:14!16 +ROM 10:14!17 +ROM 10:14!18 +ROM 10:15!2 +ROM 10:15!1 +ROM 10:15!3 +ROM 10:15!4 +ROM 10:15!5 +ROM 10:15!6 +ROM 10:15!7 +ROM 10:15!8 +ROM 10:15!9 +ROM 10:15!10 +ROM 10:15!11 +ROM 10:15!12 +ROM 10:15!13 +ROM 10:15!14 +ROM 10:15!15 +ROM 10:16!1 +ROM 10:16!2 +ROM 10:16!3 +ROM 10:16!4 +ROM 10:16!5 +ROM 10:16!6 +ROM 10:16!8 +ROM 10:16!7 +ROM 10:16!9 +ROM 10:16!10 +ROM 10:16!11 +ROM 10:16!12 +ROM 10:16!13 +ROM 10:16!14 +ROM 10:16!15 +ROM 10:17!1 +ROM 10:17!2 +ROM 10:17!3 +ROM 10:17!4 +ROM 10:17!5 +ROM 10:17!7 +ROM 10:17!6 +ROM 10:17!8 +ROM 10:17!9 +ROM 10:17!10 +ROM 10:17!11 +ROM 10:18!1 +ROM 10:18!2 +ROM 10:18!3 +ROM 10:18!4 +ROM 10:18!5 +ROM 10:18!6 +ROM 10:18!7 +ROM 10:18!8 +ROM 10:18!9 +ROM 10:18!10 +ROM 10:18!11 +ROM 10:18!12 +ROM 10:18!13 +ROM 10:18!14 +ROM 10:18!15 +ROM 10:18!16 +ROM 10:18!17 +ROM 10:18!18 +ROM 10:18!19 +ROM 10:18!20 +ROM 10:18!21 +ROM 10:18!22 +ROM 10:18!23 +ROM 10:19!1 +ROM 10:19!2 +ROM 10:19!3 +ROM 10:19!4 +ROM 10:19!5 +ROM 10:19!6 +ROM 10:19!7 +ROM 10:19!8 +ROM 10:19!9 +ROM 10:19!10 +ROM 10:19!11 +ROM 10:19!12 +ROM 10:19!13 +ROM 10:19!14 +ROM 10:19!15 +ROM 10:19!16 +ROM 10:19!17 +ROM 10:19!18 +ROM 10:19!19 +ROM 10:19!20 +ROM 10:20!2 +ROM 10:20!1 +ROM 10:20!3 +ROM 10:20!4 +ROM 10:20!5 +ROM 10:20!6 +ROM 10:20!7 +ROM 10:20!8 +ROM 10:20!9 +ROM 10:20!10 +ROM 10:20!11 +ROM 10:20!12 +ROM 10:20!13 +ROM 10:20!14 +ROM 10:20!15 +ROM 10:20!16 +ROM 10:21!2 +ROM 10:21!1 +ROM 10:21!3 +ROM 10:21!4 +ROM 10:21!5 +ROM 10:21!6 +ROM 10:21!7 +ROM 10:21!8 +ROM 10:21!9 +ROM 10:21!10 +ROM 10:21!11 +ROM 10:21!12 +ROM 10:21!13 +ROM 10:21!14 +ROM 10:21!15 +ROM 10:21!16 +ROM 10:21!17 +ROM 11:1!2 +ROM 11:1!1 +ROM 11:1!3 +ROM 11:1!4 +ROM 11:1!5 +ROM 11:1!6 +ROM 11:1!7 +ROM 11:1!8 +ROM 11:1!9 +ROM 11:1!10 +ROM 11:1!11 +ROM 11:1!13 +ROM 11:1!12 +ROM 11:1!14 +ROM 11:1!15 +ROM 11:1!16 +ROM 11:1!17 +ROM 11:1!18 +ROM 11:1!19 +ROM 11:1!20 +ROM 11:1!21 +ROM 11:2!1 +ROM 11:2!2 +ROM 11:2!3 +ROM 11:2!4 +ROM 11:2!5 +ROM 11:2!6 +ROM 11:2!7 +ROM 11:2!8 +ROM 11:2!9 +ROM 11:2!10 +ROM 11:2!11 +ROM 11:2!12 +ROM 11:2!13 +ROM 11:2!14 +ROM 11:2!15 +ROM 11:2!16 +ROM 11:2!17 +ROM 11:2!18 +ROM 11:2!19 +ROM 11:2!20 +ROM 11:2!21 +ROM 11:2!22 +ROM 11:2!23 +ROM 11:2!24 +ROM 11:2!25 +ROM 11:3!1 +ROM 11:3!2 +ROM 11:3!3 +ROM 11:3!4 +ROM 11:3!5 +ROM 11:3!6 +ROM 11:3!7 +ROM 11:3!8 +ROM 11:3!9 +ROM 11:3!10 +ROM 11:3!11 +ROM 11:3!12 +ROM 11:3!13 +ROM 11:3!14 +ROM 11:3!15 +ROM 11:3!16 +ROM 11:3!17 +ROM 11:4!1 +ROM 11:4!2 +ROM 11:4!3 +ROM 11:4!4 +ROM 11:4!5 +ROM 11:4!6 +ROM 11:4!7 +ROM 11:4!8 +ROM 11:4!9 +ROM 11:4!10 +ROM 11:4!11 +ROM 11:4!12 +ROM 11:4!13 +ROM 11:4!14 +ROM 11:4!15 +ROM 11:4!16 +ROM 11:5!2 +ROM 11:5!1 +ROM 11:5!3 +ROM 11:5!4 +ROM 11:5!5 +ROM 11:5!6 +ROM 11:5!7 +ROM 11:5!8 +ROM 11:5!9 +ROM 11:5!10 +ROM 11:5!11 +ROM 11:5!12 +ROM 11:6!2 +ROM 11:6!1 +ROM 11:6!3 +ROM 11:6!4 +ROM 11:6!5 +ROM 11:6!6 +ROM 11:6!7 +ROM 11:6!8 +ROM 11:6!9 +ROM 11:6!10 +ROM 11:6!11 +ROM 11:6!12 +ROM 11:7!2 +ROM 11:7!1 +ROM 11:7!3 +ROM 11:7!4 +ROM 11:7!5 +ROM 11:7!6 +ROM 11:7!7 +ROM 11:7!8 +ROM 11:7!10 +ROM 11:7!9 +ROM 11:7!11 +ROM 11:7!12 +ROM 11:7!14 +ROM 11:7!13 +ROM 11:7!15 +ROM 11:7!16 +ROM 11:8!1 +ROM 11:8!2 +ROM 11:8!3 +ROM 11:8!4 +ROM 11:8!5 +ROM 11:8!6 +ROM 11:8!7 +ROM 11:8!8 +ROM 11:8!9 +ROM 11:8!10 +ROM 11:8!11 +ROM 11:8!12 +ROM 11:8!13 +ROM 11:8!14 +ROM 11:8!15 +ROM 11:8!16 +ROM 11:8!17 +ROM 11:8!18 +ROM 11:8!19 +ROM 11:8!20 +ROM 11:8!21 +ROM 11:9!1 +ROM 11:9!2 +ROM 11:9!3 +ROM 11:9!4 +ROM 11:9!5 +ROM 11:9!6 +ROM 11:9!7 +ROM 11:9!8 +ROM 11:9!9 +ROM 11:9!10 +ROM 11:9!11 +ROM 11:9!12 +ROM 11:9!13 +ROM 11:9!14 +ROM 11:9!15 +ROM 11:9!16 +ROM 11:9!17 +ROM 11:9!18 +ROM 11:9!19 +ROM 11:10!1 +ROM 11:10!2 +ROM 11:10!3 +ROM 11:10!4 +ROM 11:10!5 +ROM 11:10!6 +ROM 11:10!7 +ROM 11:10!8 +ROM 11:10!9 +ROM 11:10!10 +ROM 11:10!11 +ROM 11:10!12 +ROM 11:10!13 +ROM 11:10!14 +ROM 11:11!2 +ROM 11:11!1 +ROM 11:11!3 +ROM 11:11!4 +ROM 11:11!5 +ROM 11:11!6 +ROM 11:11!7 +ROM 11:11!8 +ROM 11:11!9 +ROM 11:11!10 +ROM 11:11!11 +ROM 11:11!12 +ROM 11:11!13 +ROM 11:11!14 +ROM 11:11!15 +ROM 11:11!16 +ROM 11:11!17 +ROM 11:11!18 +ROM 11:11!19 +ROM 11:11!20 +ROM 11:12!2 +ROM 11:12!1 +ROM 11:12!3 +ROM 11:12!4 +ROM 11:12!5 +ROM 11:12!6 +ROM 11:12!7 +ROM 11:12!8 +ROM 11:12!9 +ROM 11:12!10 +ROM 11:12!11 +ROM 11:12!12 +ROM 11:12!13 +ROM 11:12!14 +ROM 11:12!15 +ROM 11:12!16 +ROM 11:12!17 +ROM 11:12!18 +ROM 11:13!2 +ROM 11:13!3 +ROM 11:13!1 +ROM 11:13!4 +ROM 11:13!5 +ROM 11:13!8 +ROM 11:13!9 +ROM 11:13!6 +ROM 11:13!7 +ROM 11:13!10 +ROM 11:13!11 +ROM 11:13!12 +ROM 11:13!13 +ROM 11:13!14 +ROM 11:13!15 +ROM 11:13!16 +ROM 11:13!17 +ROM 11:14!1 +ROM 11:14!2 +ROM 11:14!3 +ROM 11:14!4 +ROM 11:14!5 +ROM 11:14!6 +ROM 11:14!7 +ROM 11:14!8 +ROM 11:14!9 +ROM 11:14!10 +ROM 11:14!11 +ROM 11:15!2 +ROM 11:15!1 +ROM 11:15!3 +ROM 11:15!4 +ROM 11:15!5 +ROM 11:15!6 +ROM 11:15!7 +ROM 11:15!8 +ROM 11:15!9 +ROM 11:15!10 +ROM 11:15!11 +ROM 11:15!12 +ROM 11:15!13 +ROM 11:15!14 +ROM 11:15!15 +ROM 11:16!2 +ROM 11:16!1 +ROM 11:16!3 +ROM 11:16!4 +ROM 11:16!5 +ROM 11:16!6 +ROM 11:16!7 +ROM 11:16!8 +ROM 11:16!9 +ROM 11:16!10 +ROM 11:16!11 +ROM 11:16!12 +ROM 11:16!13 +ROM 11:16!14 +ROM 11:16!15 +ROM 11:16!16 +ROM 11:17!2 +ROM 11:17!1 +ROM 11:17!3 +ROM 11:17!4 +ROM 11:17!5 +ROM 11:17!6 +ROM 11:17!8 +ROM 11:17!7 +ROM 11:17!9 +ROM 11:17!10 +ROM 11:17!11 +ROM 11:17!12 +ROM 11:17!13 +ROM 11:17!14 +ROM 11:17!15 +ROM 11:17!16 +ROM 11:17!17 +ROM 11:17!18 +ROM 11:17!19 +ROM 11:17!20 +ROM 11:17!21 +ROM 11:17!22 +ROM 11:18!1 +ROM 11:18!2 +ROM 11:18!3 +ROM 11:18!4 +ROM 11:18!6 +ROM 11:18!5 +ROM 11:18!7 +ROM 11:18!8 +ROM 11:18!9 +ROM 11:18!10 +ROM 11:18!11 +ROM 11:18!12 +ROM 11:18!13 +ROM 11:18!14 +ROM 11:18!15 +ROM 11:18!16 +ROM 11:19!2 +ROM 11:19!1 +ROM 11:19!3 +ROM 11:19!4 +ROM 11:19!5 +ROM 11:19!6 +ROM 11:19!7 +ROM 11:20!1 +ROM 11:20!2 +ROM 11:20!3 +ROM 11:20!4 +ROM 11:20!6 +ROM 11:20!5 +ROM 11:20!7 +ROM 11:20!8 +ROM 11:20!9 +ROM 11:20!10 +ROM 11:20!11 +ROM 11:20!12 +ROM 11:20!13 +ROM 11:20!14 +ROM 11:21!2 +ROM 11:21!1 +ROM 11:21!3 +ROM 11:21!4 +ROM 11:21!5 +ROM 11:21!6 +ROM 11:21!7 +ROM 11:21!8 +ROM 11:21!9 +ROM 11:21!10 +ROM 11:21!11 +ROM 11:21!12 +ROM 11:21!13 +ROM 11:22!2 +ROM 11:22!1 +ROM 11:22!3 +ROM 11:22!4 +ROM 11:22!5 +ROM 11:22!6 +ROM 11:22!8 +ROM 11:22!7 +ROM 11:22!9 +ROM 11:22!10 +ROM 11:22!11 +ROM 11:22!13 +ROM 11:22!12 +ROM 11:22!14 +ROM 11:22!15 +ROM 11:22!16 +ROM 11:22!17 +ROM 11:22!18 +ROM 11:22!19 +ROM 11:22!20 +ROM 11:22!21 +ROM 11:22!22 +ROM 11:22!23 +ROM 11:22!24 +ROM 11:23!2 +ROM 11:23!1 +ROM 11:23!3 +ROM 11:23!4 +ROM 11:23!5 +ROM 11:23!6 +ROM 11:23!7 +ROM 11:23!8 +ROM 11:23!10 +ROM 11:23!9 +ROM 11:23!11 +ROM 11:23!12 +ROM 11:23!13 +ROM 11:23!14 +ROM 11:23!15 +ROM 11:23!16 +ROM 11:24!2 +ROM 11:24!1 +ROM 11:24!3 +ROM 11:24!4 +ROM 11:24!5 +ROM 11:24!6 +ROM 11:24!7 +ROM 11:24!9 +ROM 11:24!8 +ROM 11:24!10 +ROM 11:24!11 +ROM 11:24!12 +ROM 11:24!13 +ROM 11:24!14 +ROM 11:24!15 +ROM 11:24!16 +ROM 11:24!17 +ROM 11:24!18 +ROM 11:24!19 +ROM 11:24!20 +ROM 11:24!21 +ROM 11:24!22 +ROM 11:24!23 +ROM 11:24!24 +ROM 11:24!25 +ROM 11:25!2 +ROM 11:25!6 +ROM 11:25!1 +ROM 11:25!3 +ROM 11:25!4 +ROM 11:25!5 +ROM 11:25!7 +ROM 11:25!8 +ROM 11:25!9 +ROM 11:25!10 +ROM 11:25!11 +ROM 11:25!12 +ROM 11:25!13 +ROM 11:25!14 +ROM 11:25!15 +ROM 11:25!16 +ROM 11:25!17 +ROM 11:25!18 +ROM 11:25!19 +ROM 11:25!20 +ROM 11:25!21 +ROM 11:25!22 +ROM 11:25!23 +ROM 11:25!24 +ROM 11:25!25 +ROM 11:25!26 +ROM 11:25!27 +ROM 11:25!28 +ROM 11:25!29 +ROM 11:26!1 +ROM 11:26!2 +ROM 11:26!3 +ROM 11:26!4 +ROM 11:26!5 +ROM 11:26!6 +ROM 11:26!7 +ROM 11:26!8 +ROM 11:26!9 +ROM 11:26!10 +ROM 11:26!11 +ROM 11:26!12 +ROM 11:26!13 +ROM 11:26!14 +ROM 11:26!15 +ROM 11:26!16 +ROM 11:27!1 +ROM 11:27!2 +ROM 11:27!3 +ROM 11:27!4 +ROM 11:27!5 +ROM 11:27!6 +ROM 11:27!7 +ROM 11:27!8 +ROM 11:27!9 +ROM 11:27!10 +ROM 11:27!11 +ROM 11:27!12 +ROM 11:28!2 +ROM 11:28!1 +ROM 11:28!3 +ROM 11:28!4 +ROM 11:28!5 +ROM 11:28!6 +ROM 11:28!7 +ROM 11:28!9 +ROM 11:28!8 +ROM 11:28!10 +ROM 11:28!11 +ROM 11:28!12 +ROM 11:28!13 +ROM 11:28!14 +ROM 11:28!15 +ROM 11:29!2 +ROM 11:29!1 +ROM 11:29!3 +ROM 11:29!4 +ROM 11:29!5 +ROM 11:29!6 +ROM 11:29!7 +ROM 11:29!8 +ROM 11:29!9 +ROM 11:30!2 +ROM 11:30!1 +ROM 11:30!3 +ROM 11:30!4 +ROM 11:30!5 +ROM 11:30!6 +ROM 11:30!7 +ROM 11:30!9 +ROM 11:30!8 +ROM 11:30!10 +ROM 11:30!11 +ROM 11:30!12 +ROM 11:30!13 +ROM 11:31!1 +ROM 11:31!2 +ROM 11:31!3 +ROM 11:31!4 +ROM 11:31!5 +ROM 11:31!6 +ROM 11:31!7 +ROM 11:31!8 +ROM 11:31!9 +ROM 11:31!10 +ROM 11:31!11 +ROM 11:31!12 +ROM 11:31!13 +ROM 11:32!2 +ROM 11:32!1 +ROM 11:32!3 +ROM 11:32!4 +ROM 11:32!5 +ROM 11:32!6 +ROM 11:32!7 +ROM 11:32!8 +ROM 11:32!9 +ROM 11:32!10 +ROM 11:32!11 +ROM 11:32!12 +ROM 11:33!1 +ROM 11:33!2 +ROM 11:33!3 +ROM 11:33!4 +ROM 11:33!5 +ROM 11:33!6 +ROM 11:33!7 +ROM 11:33!8 +ROM 11:33!9 +ROM 11:33!10 +ROM 11:33!11 +ROM 11:33!12 +ROM 11:33!13 +ROM 11:33!14 +ROM 11:33!15 +ROM 11:33!16 +ROM 11:33!17 +ROM 11:33!18 +ROM 11:34!2 +ROM 11:34!1 +ROM 11:34!3 +ROM 11:34!4 +ROM 11:34!5 +ROM 11:34!6 +ROM 11:34!7 +ROM 11:34!8 +ROM 11:34!9 +ROM 11:34!10 +ROM 11:35!1 +ROM 11:35!2 +ROM 11:35!3 +ROM 11:35!4 +ROM 11:35!5 +ROM 11:35!6 +ROM 11:35!7 +ROM 11:36!1 +ROM 11:36!2 +ROM 11:36!3 +ROM 11:36!4 +ROM 11:36!5 +ROM 11:36!6 +ROM 11:36!7 +ROM 11:36!8 +ROM 11:36!9 +ROM 11:36!10 +ROM 11:36!11 +ROM 11:36!12 +ROM 11:36!13 +ROM 11:36!14 +ROM 11:36!15 +ROM 11:36!16 +ROM 11:36!17 +ROM 11:36!18 +ROM 12:1!2 +ROM 12:1!4 +ROM 12:1!1 +ROM 12:1!5 +ROM 12:1!6 +ROM 12:1!7 +ROM 12:1!8 +ROM 12:1!9 +ROM 12:1!3 +ROM 12:1!10 +ROM 12:1!11 +ROM 12:1!12 +ROM 12:1!13 +ROM 12:1!14 +ROM 12:1!15 +ROM 12:1!16 +ROM 12:1!17 +ROM 12:1!18 +ROM 12:1!19 +ROM 12:1!20 +ROM 12:1!21 +ROM 12:1!22 +ROM 12:1!23 +ROM 12:2!1 +ROM 12:2!2 +ROM 12:2!3 +ROM 12:2!4 +ROM 12:2!5 +ROM 12:2!6 +ROM 12:2!7 +ROM 12:2!8 +ROM 12:2!9 +ROM 12:2!10 +ROM 12:2!11 +ROM 12:2!12 +ROM 12:2!13 +ROM 12:2!14 +ROM 12:2!15 +ROM 12:2!16 +ROM 12:2!17 +ROM 12:2!18 +ROM 12:2!19 +ROM 12:2!20 +ROM 12:2!21 +ROM 12:2!22 +ROM 12:2!23 +ROM 12:2!24 +ROM 12:2!25 +ROM 12:2!26 +ROM 12:2!27 +ROM 12:3!2 +ROM 12:3!1 +ROM 12:3!3 +ROM 12:3!4 +ROM 12:3!5 +ROM 12:3!6 +ROM 12:3!7 +ROM 12:3!8 +ROM 12:3!9 +ROM 12:3!10 +ROM 12:3!11 +ROM 12:3!12 +ROM 12:3!13 +ROM 12:3!14 +ROM 12:3!15 +ROM 12:3!16 +ROM 12:3!17 +ROM 12:3!19 +ROM 12:3!18 +ROM 12:3!20 +ROM 12:3!21 +ROM 12:3!22 +ROM 12:3!23 +ROM 12:3!24 +ROM 12:3!26 +ROM 12:3!25 +ROM 12:3!27 +ROM 12:3!28 +ROM 12:3!29 +ROM 12:3!30 +ROM 12:3!31 +ROM 12:4!2 +ROM 12:4!1 +ROM 12:4!3 +ROM 12:4!4 +ROM 12:4!5 +ROM 12:4!6 +ROM 12:4!7 +ROM 12:4!8 +ROM 12:4!10 +ROM 12:4!9 +ROM 12:4!11 +ROM 12:4!12 +ROM 12:4!13 +ROM 12:4!14 +ROM 12:4!15 +ROM 12:4!17 +ROM 12:4!16 +ROM 12:5!1 +ROM 12:5!2 +ROM 12:5!3 +ROM 12:5!4 +ROM 12:5!5 +ROM 12:5!6 +ROM 12:5!7 +ROM 12:5!8 +ROM 12:5!10 +ROM 12:5!9 +ROM 12:5!11 +ROM 12:5!12 +ROM 12:5!13 +ROM 12:5!14 +ROM 12:6!2 +ROM 12:6!1 +ROM 12:6!3 +ROM 12:6!10 +ROM 12:6!4 +ROM 12:6!5 +ROM 12:6!6 +ROM 12:6!7 +ROM 12:6!8 +ROM 12:6!9 +ROM 12:6!11 +ROM 12:6!12 +ROM 12:6!13 +ROM 12:6!14 +ROM 12:6!15 +ROM 12:6!16 +ROM 12:6!17 +ROM 12:7!1 +ROM 12:7!2 +ROM 12:7!3 +ROM 12:7!4 +ROM 12:7!5 +ROM 12:7!6 +ROM 12:7!7 +ROM 12:7!8 +ROM 12:7!9 +ROM 12:7!10 +ROM 12:7!11 +ROM 12:8!1 +ROM 12:8!2 +ROM 12:8!3 +ROM 12:8!4 +ROM 12:8!5 +ROM 12:8!6 +ROM 12:8!7 +ROM 12:8!8 +ROM 12:8!9 +ROM 12:8!10 +ROM 12:8!11 +ROM 12:8!12 +ROM 12:8!13 +ROM 12:8!14 +ROM 12:8!15 +ROM 12:8!16 +ROM 12:8!17 +ROM 12:8!18 +ROM 12:9!1 +ROM 12:9!2 +ROM 12:9!3 +ROM 12:9!4 +ROM 12:9!5 +ROM 12:9!6 +ROM 12:9!7 +ROM 12:9!8 +ROM 12:9!9 +ROM 12:10!1 +ROM 12:10!2 +ROM 12:10!3 +ROM 12:10!4 +ROM 12:10!5 +ROM 12:10!6 +ROM 12:10!7 +ROM 12:10!8 +ROM 12:10!9 +ROM 12:11!1 +ROM 12:11!2 +ROM 12:11!3 +ROM 12:11!4 +ROM 12:11!5 +ROM 12:11!6 +ROM 12:11!7 +ROM 12:11!8 +ROM 12:11!9 +ROM 12:11!10 +ROM 12:12!1 +ROM 12:12!2 +ROM 12:12!3 +ROM 12:12!4 +ROM 12:12!5 +ROM 12:12!6 +ROM 12:12!7 +ROM 12:12!8 +ROM 12:12!9 +ROM 12:13!1 +ROM 12:13!2 +ROM 12:13!3 +ROM 12:13!4 +ROM 12:13!5 +ROM 12:13!6 +ROM 12:13!7 +ROM 12:13!8 +ROM 12:14!1 +ROM 12:14!2 +ROM 12:14!3 +ROM 12:14!4 +ROM 12:14!5 +ROM 12:14!6 +ROM 12:14!7 +ROM 12:15!1 +ROM 12:15!2 +ROM 12:15!3 +ROM 12:15!4 +ROM 12:15!5 +ROM 12:15!6 +ROM 12:16!1 +ROM 12:16!2 +ROM 12:16!3 +ROM 12:16!4 +ROM 12:16!5 +ROM 12:16!6 +ROM 12:16!7 +ROM 12:16!8 +ROM 12:16!9 +ROM 12:16!10 +ROM 12:16!11 +ROM 12:16!12 +ROM 12:16!13 +ROM 12:16!14 +ROM 12:16!15 +ROM 12:16!16 +ROM 12:16!17 +ROM 12:16!18 +ROM 12:17!1 +ROM 12:17!2 +ROM 12:17!3 +ROM 12:17!4 +ROM 12:17!5 +ROM 12:17!6 +ROM 12:17!7 +ROM 12:17!8 +ROM 12:17!9 +ROM 12:17!10 +ROM 12:18!1 +ROM 12:18!2 +ROM 12:18!3 +ROM 12:18!4 +ROM 12:18!5 +ROM 12:18!6 +ROM 12:18!7 +ROM 12:18!8 +ROM 12:18!9 +ROM 12:19!4 +ROM 12:19!1 +ROM 12:19!2 +ROM 12:19!3 +ROM 12:19!5 +ROM 12:19!6 +ROM 12:19!7 +ROM 12:19!8 +ROM 12:19!9 +ROM 12:19!11 +ROM 12:19!10 +ROM 12:19!12 +ROM 12:19!13 +ROM 12:19!14 +ROM 12:19!15 +ROM 12:19!16 +ROM 12:19!17 +ROM 12:20!1 +ROM 12:20!2 +ROM 12:20!3 +ROM 12:20!4 +ROM 12:20!5 +ROM 12:20!6 +ROM 12:20!7 +ROM 12:20!8 +ROM 12:20!9 +ROM 12:20!10 +ROM 12:20!11 +ROM 12:20!12 +ROM 12:20!14 +ROM 12:20!13 +ROM 12:20!15 +ROM 12:20!16 +ROM 12:20!17 +ROM 12:20!18 +ROM 12:20!19 +ROM 12:20!20 +ROM 12:20!21 +ROM 12:20!22 +ROM 12:21!1 +ROM 12:21!2 +ROM 12:21!3 +ROM 12:21!4 +ROM 12:21!5 +ROM 12:21!6 +ROM 12:21!7 +ROM 12:21!8 +ROM 12:21!9 +ROM 12:21!10 +ROM 12:21!11 +ROM 12:21!12 +ROM 13:1!1 +ROM 13:1!2 +ROM 13:1!3 +ROM 13:1!4 +ROM 13:1!5 +ROM 13:1!7 +ROM 13:1!6 +ROM 13:1!8 +ROM 13:1!9 +ROM 13:1!10 +ROM 13:1!11 +ROM 13:1!12 +ROM 13:1!13 +ROM 13:1!15 +ROM 13:1!14 +ROM 13:1!16 +ROM 13:1!17 +ROM 13:1!18 +ROM 13:1!19 +ROM 13:1!20 +ROM 13:2!1 +ROM 13:2!2 +ROM 13:2!3 +ROM 13:2!4 +ROM 13:2!5 +ROM 13:2!6 +ROM 13:2!7 +ROM 13:2!8 +ROM 13:2!9 +ROM 13:2!10 +ROM 13:2!12 +ROM 13:2!11 +ROM 13:2!13 +ROM 13:2!14 +ROM 13:2!15 +ROM 13:2!16 +ROM 13:3!2 +ROM 13:3!1 +ROM 13:3!3 +ROM 13:3!5 +ROM 13:3!6 +ROM 13:3!4 +ROM 13:3!7 +ROM 13:3!8 +ROM 13:3!9 +ROM 13:3!10 +ROM 13:3!11 +ROM 13:3!12 +ROM 13:3!14 +ROM 13:3!13 +ROM 13:3!15 +ROM 13:3!16 +ROM 13:3!17 +ROM 13:3!18 +ROM 13:3!19 +ROM 13:3!20 +ROM 13:3!21 +ROM 13:3!22 +ROM 13:3!23 +ROM 13:3!24 +ROM 13:3!25 +ROM 13:3!26 +ROM 13:4!2 +ROM 13:4!1 +ROM 13:4!3 +ROM 13:4!4 +ROM 13:4!5 +ROM 13:4!6 +ROM 13:4!7 +ROM 13:4!8 +ROM 13:4!10 +ROM 13:4!9 +ROM 13:4!11 +ROM 13:4!12 +ROM 13:4!13 +ROM 13:4!14 +ROM 13:4!16 +ROM 13:4!15 +ROM 13:4!17 +ROM 13:4!18 +ROM 13:4!19 +ROM 13:4!20 +ROM 13:4!22 +ROM 13:4!21 +ROM 13:4!23 +ROM 13:4!24 +ROM 13:4!25 +ROM 13:4!26 +ROM 13:4!27 +ROM 13:4!28 +ROM 13:4!29 +ROM 13:4!30 +ROM 13:4!31 +ROM 13:5!1 +ROM 13:5!2 +ROM 13:5!3 +ROM 13:5!4 +ROM 13:5!5 +ROM 13:5!6 +ROM 13:5!7 +ROM 13:5!8 +ROM 13:5!9 +ROM 13:5!10 +ROM 13:5!11 +ROM 13:5!12 +ROM 13:5!13 +ROM 13:6!3 +ROM 13:6!1 +ROM 13:6!2 +ROM 13:6!4 +ROM 13:6!5 +ROM 13:6!6 +ROM 13:6!8 +ROM 13:6!7 +ROM 13:6!9 +ROM 13:6!10 +ROM 13:6!11 +ROM 13:6!12 +ROM 13:6!13 +ROM 13:6!14 +ROM 13:7!1 +ROM 13:7!2 +ROM 13:7!3 +ROM 13:7!4 +ROM 13:7!5 +ROM 13:7!6 +ROM 13:7!7 +ROM 13:7!8 +ROM 13:7!9 +ROM 13:7!10 +ROM 13:7!11 +ROM 13:7!12 +ROM 13:7!13 +ROM 13:7!14 +ROM 13:7!15 +ROM 13:7!16 +ROM 13:7!17 +ROM 13:7!18 +ROM 13:7!19 +ROM 13:7!20 +ROM 13:7!21 +ROM 13:7!22 +ROM 13:7!23 +ROM 13:7!24 +ROM 13:8!1 +ROM 13:8!2 +ROM 13:8!3 +ROM 13:8!4 +ROM 13:8!5 +ROM 13:8!6 +ROM 13:8!7 +ROM 13:8!8 +ROM 13:8!10 +ROM 13:8!9 +ROM 13:8!11 +ROM 13:8!12 +ROM 13:8!13 +ROM 13:8!14 +ROM 13:8!15 +ROM 13:9!2 +ROM 13:9!1 +ROM 13:9!3 +ROM 13:9!4 +ROM 13:9!5 +ROM 13:9!6 +ROM 13:9!7 +ROM 13:9!8 +ROM 13:9!9 +ROM 13:9!10 +ROM 13:9!11 +ROM 13:9!12 +ROM 13:9!13 +ROM 13:9!14 +ROM 13:9!15 +ROM 13:9!16 +ROM 13:9!17 +ROM 13:9!18 +ROM 13:9!19 +ROM 13:9!20 +ROM 13:9!21 +ROM 13:9!22 +ROM 13:9!23 +ROM 13:9!24 +ROM 13:9!25 +ROM 13:9!26 +ROM 13:9!27 +ROM 13:9!28 +ROM 13:10!1 +ROM 13:10!2 +ROM 13:10!3 +ROM 13:10!4 +ROM 13:10!5 +ROM 13:10!6 +ROM 13:10!7 +ROM 13:10!9 +ROM 13:10!8 +ROM 13:10!10 +ROM 13:10!11 +ROM 13:10!12 +ROM 13:11!1 +ROM 13:11!3 +ROM 13:11!2 +ROM 13:11!4 +ROM 13:11!5 +ROM 13:11!6 +ROM 13:11!7 +ROM 13:11!8 +ROM 13:11!9 +ROM 13:11!10 +ROM 13:11!11 +ROM 13:11!12 +ROM 13:11!14 +ROM 13:11!13 +ROM 13:11!15 +ROM 13:11!16 +ROM 13:11!17 +ROM 13:11!18 +ROM 13:11!19 +ROM 13:11!20 +ROM 13:11!21 +ROM 13:12!1 +ROM 13:12!2 +ROM 13:12!3 +ROM 13:12!5 +ROM 13:12!4 +ROM 13:12!6 +ROM 13:12!7 +ROM 13:12!9 +ROM 13:12!8 +ROM 13:12!10 +ROM 13:12!11 +ROM 13:12!12 +ROM 13:12!13 +ROM 13:12!15 +ROM 13:12!14 +ROM 13:12!16 +ROM 13:12!17 +ROM 13:12!18 +ROM 13:12!19 +ROM 13:13!1 +ROM 13:13!2 +ROM 13:13!3 +ROM 13:13!4 +ROM 13:13!5 +ROM 13:13!6 +ROM 13:13!7 +ROM 13:13!8 +ROM 13:13!9 +ROM 13:13!10 +ROM 13:13!11 +ROM 13:13!12 +ROM 13:13!13 +ROM 13:13!14 +ROM 13:13!15 +ROM 13:13!16 +ROM 13:13!17 +ROM 13:14!1 +ROM 13:14!2 +ROM 13:14!3 +ROM 13:14!4 +ROM 13:14!5 +ROM 13:14!6 +ROM 13:14!7 +ROM 13:14!8 +ROM 13:14!9 +ROM 13:14!10 +ROM 13:14!11 +ROM 13:14!12 +ROM 13:14!13 +ROM 13:14!14 +ROM 14:1!2 +ROM 14:1!1 +ROM 14:1!3 +ROM 14:1!4 +ROM 14:1!5 +ROM 14:1!6 +ROM 14:1!7 +ROM 14:1!8 +ROM 14:1!9 +ROM 14:1!10 +ROM 14:2!2 +ROM 14:2!1 +ROM 14:2!3 +ROM 14:2!4 +ROM 14:2!5 +ROM 14:2!7 +ROM 14:2!6 +ROM 14:2!8 +ROM 14:2!9 +ROM 14:2!10 +ROM 14:3!1 +ROM 14:3!2 +ROM 14:3!3 +ROM 14:3!4 +ROM 14:3!5 +ROM 14:3!6 +ROM 14:3!7 +ROM 14:3!9 +ROM 14:3!8 +ROM 14:3!10 +ROM 14:3!11 +ROM 14:3!12 +ROM 14:3!13 +ROM 14:3!14 +ROM 14:3!15 +ROM 14:3!18 +ROM 14:3!16 +ROM 14:3!17 +ROM 14:3!19 +ROM 14:3!20 +ROM 14:4!1 +ROM 14:4!2 +ROM 14:4!3 +ROM 14:4!4 +ROM 14:4!5 +ROM 14:4!6 +ROM 14:4!7 +ROM 14:4!8 +ROM 14:4!9 +ROM 14:4!10 +ROM 14:4!11 +ROM 14:4!12 +ROM 14:4!13 +ROM 14:4!15 +ROM 14:4!14 +ROM 14:4!17 +ROM 14:4!16 +ROM 14:4!18 +ROM 14:4!19 +ROM 14:4!20 +ROM 14:4!21 +ROM 14:5!3 +ROM 14:5!2 +ROM 14:5!1 +ROM 14:5!4 +ROM 14:5!5 +ROM 14:5!6 +ROM 14:5!7 +ROM 14:5!9 +ROM 14:5!8 +ROM 14:5!10 +ROM 14:5!11 +ROM 14:5!12 +ROM 14:5!13 +ROM 14:5!14 +ROM 14:5!15 +ROM 14:5!16 +ROM 14:5!17 +ROM 14:5!18 +ROM 14:6!1 +ROM 14:6!2 +ROM 14:6!3 +ROM 14:6!4 +ROM 14:6!5 +ROM 14:6!6 +ROM 14:6!7 +ROM 14:6!8 +ROM 14:6!9 +ROM 14:6!10 +ROM 14:6!11 +ROM 14:6!13 +ROM 14:6!12 +ROM 14:6!14 +ROM 14:6!15 +ROM 14:6!16 +ROM 14:6!17 +ROM 14:6!18 +ROM 14:6!19 +ROM 14:6!20 +ROM 14:6!21 +ROM 14:6!22 +ROM 14:6!23 +ROM 14:6!24 +ROM 14:6!25 +ROM 14:6!26 +ROM 14:7!2 +ROM 14:7!1 +ROM 14:7!3 +ROM 14:7!4 +ROM 14:7!5 +ROM 14:7!6 +ROM 14:7!7 +ROM 14:7!8 +ROM 14:7!9 +ROM 14:8!3 +ROM 14:8!2 +ROM 14:8!1 +ROM 14:8!4 +ROM 14:8!5 +ROM 14:8!6 +ROM 14:8!7 +ROM 14:8!9 +ROM 14:8!8 +ROM 14:8!10 +ROM 14:8!11 +ROM 14:8!12 +ROM 14:8!13 +ROM 14:8!16 +ROM 14:8!15 +ROM 14:8!14 +ROM 14:8!17 +ROM 14:8!19 +ROM 14:8!18 +ROM 14:8!20 +ROM 14:8!21 +ROM 14:8!22 +ROM 14:8!23 +ROM 14:9!3 +ROM 14:9!1 +ROM 14:9!2 +ROM 14:9!4 +ROM 14:9!5 +ROM 14:9!6 +ROM 14:9!7 +ROM 14:9!8 +ROM 14:9!9 +ROM 14:9!10 +ROM 14:9!11 +ROM 14:9!12 +ROM 14:9!13 +ROM 14:10!2 +ROM 14:10!1 +ROM 14:10!3 +ROM 14:10!4 +ROM 14:10!5 +ROM 14:10!6 +ROM 14:10!7 +ROM 14:10!8 +ROM 14:10!9 +ROM 14:10!10 +ROM 14:10!11 +ROM 14:10!12 +ROM 14:10!13 +ROM 14:10!14 +ROM 14:10!15 +ROM 14:10!17 +ROM 14:10!16 +ROM 14:10!18 +ROM 14:10!19 +ROM 14:10!20 +ROM 14:10!21 +ROM 14:10!22 +ROM 14:11!2 +ROM 14:11!1 +ROM 14:11!3 +ROM 14:11!4 +ROM 14:11!5 +ROM 14:11!6 +ROM 14:11!7 +ROM 14:11!8 +ROM 14:11!9 +ROM 14:11!10 +ROM 14:11!11 +ROM 14:11!12 +ROM 14:11!13 +ROM 14:11!14 +ROM 14:11!15 +ROM 14:11!16 +ROM 14:11!17 +ROM 14:12!1 +ROM 14:12!2 +ROM 14:12!3 +ROM 14:12!4 +ROM 14:12!5 +ROM 14:12!6 +ROM 14:12!7 +ROM 14:12!8 +ROM 14:12!9 +ROM 14:12!10 +ROM 14:13!2 +ROM 14:13!1 +ROM 14:13!3 +ROM 14:13!4 +ROM 14:13!5 +ROM 14:13!6 +ROM 14:13!7 +ROM 14:13!8 +ROM 14:13!9 +ROM 14:13!10 +ROM 14:13!11 +ROM 14:13!13 +ROM 14:13!14 +ROM 14:13!12 +ROM 14:13!15 +ROM 14:13!16 +ROM 14:14!1 +ROM 14:14!2 +ROM 14:14!3 +ROM 14:14!4 +ROM 14:14!5 +ROM 14:14!6 +ROM 14:14!7 +ROM 14:14!8 +ROM 14:14!9 +ROM 14:14!10 +ROM 14:14!11 +ROM 14:14!12 +ROM 14:14!13 +ROM 14:14!14 +ROM 14:14!15 +ROM 14:14!16 +ROM 14:14!17 +ROM 14:14!18 +ROM 14:14!19 +ROM 14:14!20 +ROM 14:15!2 +ROM 14:15!1 +ROM 14:15!3 +ROM 14:15!4 +ROM 14:15!5 +ROM 14:15!6 +ROM 14:15!7 +ROM 14:15!8 +ROM 14:15!9 +ROM 14:15!10 +ROM 14:15!11 +ROM 14:15!12 +ROM 14:15!13 +ROM 14:15!14 +ROM 14:15!15 +ROM 14:15!16 +ROM 14:15!17 +ROM 14:15!18 +ROM 14:15!19 +ROM 14:15!20 +ROM 14:15!21 +ROM 14:15!22 +ROM 14:16!3 +ROM 14:16!1 +ROM 14:16!2 +ROM 14:16!4 +ROM 14:16!5 +ROM 14:16!6 +ROM 14:17!2 +ROM 14:17!1 +ROM 14:17!3 +ROM 14:17!4 +ROM 14:17!5 +ROM 14:17!6 +ROM 14:17!7 +ROM 14:17!8 +ROM 14:17!9 +ROM 14:17!10 +ROM 14:17!11 +ROM 14:17!12 +ROM 14:17!13 +ROM 14:17!14 +ROM 14:17!15 +ROM 14:17!16 +ROM 14:17!17 +ROM 14:17!18 +ROM 14:17!19 +ROM 14:18!2 +ROM 14:18!1 +ROM 14:18!3 +ROM 14:18!4 +ROM 14:18!5 +ROM 14:18!6 +ROM 14:18!7 +ROM 14:18!8 +ROM 14:18!9 +ROM 14:18!10 +ROM 14:18!11 +ROM 14:18!12 +ROM 14:18!13 +ROM 14:18!14 +ROM 14:19!1 +ROM 14:19!2 +ROM 14:19!6 +ROM 14:19!3 +ROM 14:19!4 +ROM 14:19!5 +ROM 14:19!7 +ROM 14:19!8 +ROM 14:19!9 +ROM 14:19!10 +ROM 14:19!11 +ROM 14:19!12 +ROM 14:19!13 +ROM 14:20!1 +ROM 14:20!2 +ROM 14:20!3 +ROM 14:20!4 +ROM 14:20!5 +ROM 14:20!6 +ROM 14:20!7 +ROM 14:20!8 +ROM 14:20!10 +ROM 14:20!9 +ROM 14:20!11 +ROM 14:20!12 +ROM 14:20!13 +ROM 14:20!14 +ROM 14:20!15 +ROM 14:20!16 +ROM 14:20!17 +ROM 14:20!18 +ROM 14:20!19 +ROM 14:21!1 +ROM 14:21!2 +ROM 14:21!3 +ROM 14:21!4 +ROM 14:21!5 +ROM 14:21!6 +ROM 14:21!7 +ROM 14:21!8 +ROM 14:21!9 +ROM 14:21!10 +ROM 14:21!11 +ROM 14:21!12 +ROM 14:21!13 +ROM 14:21!14 +ROM 14:21!15 +ROM 14:22!1 +ROM 14:22!2 +ROM 14:22!3 +ROM 14:22!4 +ROM 14:22!5 +ROM 14:22!6 +ROM 14:22!7 +ROM 14:22!8 +ROM 14:22!9 +ROM 14:22!10 +ROM 14:22!11 +ROM 14:22!12 +ROM 14:22!13 +ROM 14:22!14 +ROM 14:22!15 +ROM 14:22!16 +ROM 14:22!17 +ROM 14:22!18 +ROM 14:23!2 +ROM 14:23!4 +ROM 14:23!1 +ROM 14:23!3 +ROM 14:23!5 +ROM 14:23!6 +ROM 14:23!7 +ROM 14:23!8 +ROM 14:23!9 +ROM 14:23!10 +ROM 14:23!12 +ROM 14:23!11 +ROM 14:23!13 +ROM 14:23!14 +ROM 14:23!15 +ROM 14:23!16 +ROM 14:23!17 +ROM 14:23!18 +ROM 15:1!2 +ROM 15:1!1 +ROM 15:1!3 +ROM 15:1!4 +ROM 15:1!5 +ROM 15:1!6 +ROM 15:1!7 +ROM 15:1!8 +ROM 15:1!9 +ROM 15:1!10 +ROM 15:1!11 +ROM 15:1!12 +ROM 15:1!13 +ROM 15:1!14 +ROM 15:2!1 +ROM 15:2!2 +ROM 15:2!3 +ROM 15:2!4 +ROM 15:2!5 +ROM 15:2!6 +ROM 15:2!7 +ROM 15:2!8 +ROM 15:2!9 +ROM 15:2!10 +ROM 15:3!2 +ROM 15:3!1 +ROM 15:3!3 +ROM 15:3!4 +ROM 15:3!5 +ROM 15:3!6 +ROM 15:3!7 +ROM 15:3!8 +ROM 15:3!9 +ROM 15:3!10 +ROM 15:3!11 +ROM 15:3!12 +ROM 15:3!13 +ROM 15:3!14 +ROM 15:3!15 +ROM 15:3!16 +ROM 15:3!17 +ROM 15:3!18 +ROM 15:4!2 +ROM 15:4!1 +ROM 15:4!3 +ROM 15:4!4 +ROM 15:4!5 +ROM 15:4!6 +ROM 15:4!7 +ROM 15:4!8 +ROM 15:4!9 +ROM 15:4!10 +ROM 15:4!11 +ROM 15:4!12 +ROM 15:4!13 +ROM 15:4!14 +ROM 15:4!15 +ROM 15:4!16 +ROM 15:4!17 +ROM 15:4!18 +ROM 15:4!19 +ROM 15:4!20 +ROM 15:4!21 +ROM 15:5!2 +ROM 15:5!1 +ROM 15:5!3 +ROM 15:5!4 +ROM 15:5!5 +ROM 15:5!6 +ROM 15:5!7 +ROM 15:5!8 +ROM 15:5!9 +ROM 15:5!10 +ROM 15:5!11 +ROM 15:5!12 +ROM 15:5!13 +ROM 15:5!14 +ROM 15:5!15 +ROM 15:5!16 +ROM 15:5!17 +ROM 15:5!18 +ROM 15:6!1 +ROM 15:6!2 +ROM 15:6!3 +ROM 15:6!4 +ROM 15:6!5 +ROM 15:6!6 +ROM 15:6!7 +ROM 15:6!8 +ROM 15:6!9 +ROM 15:6!10 +ROM 15:6!11 +ROM 15:6!12 +ROM 15:6!13 +ROM 15:6!14 +ROM 15:6!15 +ROM 15:7!1 +ROM 15:7!2 +ROM 15:7!3 +ROM 15:7!4 +ROM 15:7!5 +ROM 15:7!6 +ROM 15:7!7 +ROM 15:7!8 +ROM 15:7!9 +ROM 15:7!10 +ROM 15:7!11 +ROM 15:7!12 +ROM 15:7!13 +ROM 15:8!2 +ROM 15:8!1 +ROM 15:8!3 +ROM 15:8!4 +ROM 15:8!6 +ROM 15:8!5 +ROM 15:8!7 +ROM 15:8!8 +ROM 15:8!9 +ROM 15:8!10 +ROM 15:8!11 +ROM 15:8!12 +ROM 15:8!13 +ROM 15:8!14 +ROM 15:8!15 +ROM 15:8!16 +ROM 15:9!2 +ROM 15:9!1 +ROM 15:9!3 +ROM 15:9!4 +ROM 15:9!5 +ROM 15:9!6 +ROM 15:9!7 +ROM 15:9!8 +ROM 15:9!9 +ROM 15:9!10 +ROM 15:9!11 +ROM 15:9!12 +ROM 15:9!13 +ROM 15:9!14 +ROM 15:9!15 +ROM 15:9!16 +ROM 15:9!17 +ROM 15:9!18 +ROM 15:9!19 +ROM 15:9!20 +ROM 15:9!21 +ROM 15:10!1 +ROM 15:10!2 +ROM 15:10!3 +ROM 15:10!5 +ROM 15:10!4 +ROM 15:10!6 +ROM 15:10!7 +ROM 15:10!8 +ROM 15:10!9 +ROM 15:11!1 +ROM 15:11!2 +ROM 15:11!4 +ROM 15:11!5 +ROM 15:11!6 +ROM 15:11!3 +ROM 15:11!7 +ROM 15:11!8 +ROM 15:11!9 +ROM 15:11!10 +ROM 15:11!11 +ROM 15:11!12 +ROM 15:11!13 +ROM 15:11!14 +ROM 15:12!1 +ROM 15:12!2 +ROM 15:12!3 +ROM 15:12!4 +ROM 15:12!5 +ROM 15:12!6 +ROM 15:12!7 +ROM 15:12!8 +ROM 15:12!9 +ROM 15:12!10 +ROM 15:12!11 +ROM 15:12!12 +ROM 15:12!13 +ROM 15:12!14 +ROM 15:12!15 +ROM 15:12!16 +ROM 15:12!17 +ROM 15:12!18 +ROM 15:13!2 +ROM 15:13!1 +ROM 15:13!3 +ROM 15:13!4 +ROM 15:13!5 +ROM 15:13!6 +ROM 15:13!7 +ROM 15:13!8 +ROM 15:13!9 +ROM 15:13!10 +ROM 15:13!11 +ROM 15:13!12 +ROM 15:13!13 +ROM 15:13!14 +ROM 15:13!15 +ROM 15:13!16 +ROM 15:13!17 +ROM 15:13!18 +ROM 15:13!19 +ROM 15:13!20 +ROM 15:13!21 +ROM 15:13!22 +ROM 15:13!23 +ROM 15:13!24 +ROM 15:13!25 +ROM 15:14!2 +ROM 15:14!3 +ROM 15:14!4 +ROM 15:14!1 +ROM 15:14!5 +ROM 15:14!6 +ROM 15:14!7 +ROM 15:14!8 +ROM 15:14!9 +ROM 15:14!10 +ROM 15:14!11 +ROM 15:14!12 +ROM 15:14!13 +ROM 15:14!14 +ROM 15:14!15 +ROM 15:14!16 +ROM 15:14!17 +ROM 15:14!18 +ROM 15:14!19 +ROM 15:14!20 +ROM 15:14!21 +ROM 15:14!22 +ROM 15:14!23 +ROM 15:15!2 +ROM 15:15!1 +ROM 15:15!3 +ROM 15:15!4 +ROM 15:15!5 +ROM 15:15!6 +ROM 15:15!7 +ROM 15:15!8 +ROM 15:15!9 +ROM 15:15!10 +ROM 15:15!11 +ROM 15:15!12 +ROM 15:15!13 +ROM 15:15!14 +ROM 15:15!15 +ROM 15:15!16 +ROM 15:15!17 +ROM 15:15!18 +ROM 15:16!1 +ROM 15:16!2 +ROM 15:16!3 +ROM 15:16!4 +ROM 15:16!5 +ROM 15:16!6 +ROM 15:16!7 +ROM 15:16!8 +ROM 15:16!9 +ROM 15:16!10 +ROM 15:16!11 +ROM 15:16!12 +ROM 15:16!13 +ROM 15:16!14 +ROM 15:16!15 +ROM 15:16!16 +ROM 15:16!17 +ROM 15:16!18 +ROM 15:16!19 +ROM 15:16!20 +ROM 15:16!21 +ROM 15:16!22 +ROM 15:16!23 +ROM 15:16!24 +ROM 15:16!25 +ROM 15:16!26 +ROM 15:17!2 +ROM 15:17!1 +ROM 15:17!3 +ROM 15:17!4 +ROM 15:17!5 +ROM 15:17!6 +ROM 15:17!7 +ROM 15:17!8 +ROM 15:17!9 +ROM 15:17!10 +ROM 15:17!11 +ROM 15:18!2 +ROM 15:18!1 +ROM 15:18!3 +ROM 15:18!5 +ROM 15:18!4 +ROM 15:18!6 +ROM 15:18!7 +ROM 15:18!8 +ROM 15:18!9 +ROM 15:18!10 +ROM 15:18!11 +ROM 15:18!12 +ROM 15:18!13 +ROM 15:18!14 +ROM 15:18!15 +ROM 15:18!16 +ROM 15:18!17 +ROM 15:19!1 +ROM 15:19!2 +ROM 15:19!3 +ROM 15:19!4 +ROM 15:19!5 +ROM 15:19!6 +ROM 15:19!7 +ROM 15:19!8 +ROM 15:19!9 +ROM 15:19!10 +ROM 15:19!11 +ROM 15:19!12 +ROM 15:19!13 +ROM 15:19!14 +ROM 15:19!15 +ROM 15:19!16 +ROM 15:19!17 +ROM 15:19!18 +ROM 15:19!19 +ROM 15:19!20 +ROM 15:19!21 +ROM 15:19!22 +ROM 15:19!23 +ROM 15:20!2 +ROM 15:20!1 +ROM 15:20!3 +ROM 15:20!4 +ROM 15:20!5 +ROM 15:20!6 +ROM 15:20!7 +ROM 15:20!8 +ROM 15:20!9 +ROM 15:20!10 +ROM 15:20!11 +ROM 15:20!12 +ROM 15:20!13 +ROM 15:20!14 +ROM 15:21!1 +ROM 15:21!2 +ROM 15:21!3 +ROM 15:21!4 +ROM 15:21!5 +ROM 15:21!6 +ROM 15:21!7 +ROM 15:21!8 +ROM 15:21!9 +ROM 15:21!10 +ROM 15:21!11 +ROM 15:21!12 +ROM 15:21!13 +ROM 15:21!14 +ROM 15:22!1 +ROM 15:22!2 +ROM 15:22!3 +ROM 15:22!4 +ROM 15:22!5 +ROM 15:22!6 +ROM 15:22!7 +ROM 15:22!8 +ROM 15:22!9 +ROM 15:23!2 +ROM 15:23!1 +ROM 15:23!3 +ROM 15:23!4 +ROM 15:23!5 +ROM 15:23!6 +ROM 15:23!7 +ROM 15:23!8 +ROM 15:23!9 +ROM 15:23!11 +ROM 15:23!10 +ROM 15:23!12 +ROM 15:23!13 +ROM 15:23!14 +ROM 15:23!15 +ROM 15:23!16 +ROM 15:23!17 +ROM 15:23!18 +ROM 15:23!19 +ROM 15:24!1 +ROM 15:24!2 +ROM 15:24!3 +ROM 15:24!4 +ROM 15:24!5 +ROM 15:24!6 +ROM 15:24!8 +ROM 15:24!7 +ROM 15:24!9 +ROM 15:24!10 +ROM 15:24!11 +ROM 15:24!12 +ROM 15:24!13 +ROM 15:24!14 +ROM 15:24!15 +ROM 15:24!16 +ROM 15:24!17 +ROM 15:24!18 +ROM 15:24!19 +ROM 15:24!20 +ROM 15:24!21 +ROM 15:24!22 +ROM 15:25!2 +ROM 15:25!1 +ROM 15:25!3 +ROM 15:25!4 +ROM 15:25!5 +ROM 15:25!6 +ROM 15:25!7 +ROM 15:25!8 +ROM 15:26!2 +ROM 15:26!1 +ROM 15:26!3 +ROM 15:26!4 +ROM 15:26!5 +ROM 15:26!6 +ROM 15:26!7 +ROM 15:26!8 +ROM 15:26!9 +ROM 15:26!10 +ROM 15:26!11 +ROM 15:26!12 +ROM 15:26!13 +ROM 15:26!14 +ROM 15:26!15 +ROM 15:26!16 +ROM 15:27!2 +ROM 15:27!1 +ROM 15:27!3 +ROM 15:27!4 +ROM 15:27!5 +ROM 15:27!6 +ROM 15:27!8 +ROM 15:27!7 +ROM 15:27!9 +ROM 15:27!10 +ROM 15:27!11 +ROM 15:27!12 +ROM 15:27!13 +ROM 15:27!14 +ROM 15:27!15 +ROM 15:27!16 +ROM 15:27!17 +ROM 15:27!18 +ROM 15:27!19 +ROM 15:27!20 +ROM 15:27!21 +ROM 15:28!2 +ROM 15:28!1 +ROM 15:28!3 +ROM 15:28!4 +ROM 15:28!5 +ROM 15:28!6 +ROM 15:28!7 +ROM 15:28!8 +ROM 15:28!9 +ROM 15:28!10 +ROM 15:28!11 +ROM 15:28!12 +ROM 15:28!13 +ROM 15:28!14 +ROM 15:29!2 +ROM 15:29!1 +ROM 15:29!3 +ROM 15:29!4 +ROM 15:29!5 +ROM 15:29!6 +ROM 15:29!7 +ROM 15:29!8 +ROM 15:29!9 +ROM 15:29!10 +ROM 15:29!11 +ROM 15:30!2 +ROM 15:30!4 +ROM 15:30!1 +ROM 15:30!5 +ROM 15:30!6 +ROM 15:30!7 +ROM 15:30!8 +ROM 15:30!9 +ROM 15:30!10 +ROM 15:30!11 +ROM 15:30!12 +ROM 15:30!13 +ROM 15:30!14 +ROM 15:30!15 +ROM 15:30!16 +ROM 15:30!3 +ROM 15:30!17 +ROM 15:30!18 +ROM 15:30!19 +ROM 15:30!20 +ROM 15:30!21 +ROM 15:30!22 +ROM 15:30!23 +ROM 15:30!24 +ROM 15:30!25 +ROM 15:30!26 +ROM 15:31!1 +ROM 15:31!2 +ROM 15:31!3 +ROM 15:31!4 +ROM 15:31!5 +ROM 15:31!6 +ROM 15:31!7 +ROM 15:31!8 +ROM 15:31!9 +ROM 15:31!10 +ROM 15:31!11 +ROM 15:31!12 +ROM 15:31!13 +ROM 15:31!14 +ROM 15:31!15 +ROM 15:31!16 +ROM 15:31!17 +ROM 15:31!18 +ROM 15:31!19 +ROM 15:32!1 +ROM 15:32!2 +ROM 15:32!3 +ROM 15:32!4 +ROM 15:32!5 +ROM 15:32!6 +ROM 15:32!7 +ROM 15:32!8 +ROM 15:32!9 +ROM 15:32!10 +ROM 15:32!11 +ROM 15:33!2 +ROM 15:33!1 +ROM 15:33!3 +ROM 15:33!4 +ROM 15:33!5 +ROM 15:33!6 +ROM 15:33!7 +ROM 15:33!8 +ROM 15:33!9 +ROM 16:1!2 +ROM 16:1!1 +ROM 16:1!3 +ROM 16:1!4 +ROM 16:1!5 +ROM 16:1!6 +ROM 16:1!7 +ROM 16:1!8 +ROM 16:1!9 +ROM 16:1!10 +ROM 16:1!11 +ROM 16:1!12 +ROM 16:1!13 +ROM 16:1!14 +ROM 16:2!1 +ROM 16:2!2 +ROM 16:2!3 +ROM 16:2!4 +ROM 16:2!5 +ROM 16:2!6 +ROM 16:2!7 +ROM 16:2!8 +ROM 16:2!9 +ROM 16:2!10 +ROM 16:2!11 +ROM 16:2!12 +ROM 16:2!14 +ROM 16:2!13 +ROM 16:2!15 +ROM 16:2!16 +ROM 16:2!17 +ROM 16:2!19 +ROM 16:2!18 +ROM 16:2!20 +ROM 16:2!23 +ROM 16:2!21 +ROM 16:2!22 +ROM 16:2!24 +ROM 16:2!25 +ROM 16:2!26 +ROM 16:3!1 +ROM 16:3!2 +ROM 16:3!3 +ROM 16:3!4 +ROM 16:3!5 +ROM 16:3!6 +ROM 16:3!7 +ROM 16:3!8 +ROM 16:3!9 +ROM 16:3!10 +ROM 16:4!1 +ROM 16:4!2 +ROM 16:4!3 +ROM 16:4!4 +ROM 16:4!5 +ROM 16:4!6 +ROM 16:4!7 +ROM 16:4!8 +ROM 16:4!9 +ROM 16:4!10 +ROM 16:4!14 +ROM 16:4!11 +ROM 16:4!12 +ROM 16:4!13 +ROM 16:4!15 +ROM 16:4!16 +ROM 16:4!17 +ROM 16:4!18 +ROM 16:4!19 +ROM 16:4!20 +ROM 16:4!21 +ROM 16:5!1 +ROM 16:5!2 +ROM 16:5!3 +ROM 16:5!4 +ROM 16:5!5 +ROM 16:5!6 +ROM 16:5!7 +ROM 16:5!8 +ROM 16:5!9 +ROM 16:5!10 +ROM 16:5!11 +ROM 16:5!12 +ROM 16:5!13 +ROM 16:5!14 +ROM 16:5!15 +ROM 16:5!16 +ROM 16:5!17 +ROM 16:5!18 +ROM 16:6!1 +ROM 16:6!2 +ROM 16:6!3 +ROM 16:6!4 +ROM 16:6!5 +ROM 16:6!6 +ROM 16:6!7 +ROM 16:7!1 +ROM 16:7!2 +ROM 16:7!3 +ROM 16:7!4 +ROM 16:7!5 +ROM 16:7!6 +ROM 16:7!7 +ROM 16:7!8 +ROM 16:7!9 +ROM 16:7!10 +ROM 16:7!11 +ROM 16:7!12 +ROM 16:7!13 +ROM 16:7!14 +ROM 16:7!15 +ROM 16:7!16 +ROM 16:7!17 +ROM 16:7!18 +ROM 16:7!19 +ROM 16:7!20 +ROM 16:7!21 +ROM 16:7!22 +ROM 16:7!23 +ROM 16:8!1 +ROM 16:8!2 +ROM 16:8!3 +ROM 16:8!4 +ROM 16:8!5 +ROM 16:8!6 +ROM 16:8!7 +ROM 16:9!1 +ROM 16:9!2 +ROM 16:9!3 +ROM 16:9!4 +ROM 16:9!5 +ROM 16:9!6 +ROM 16:9!7 +ROM 16:9!8 +ROM 16:9!9 +ROM 16:9!10 +ROM 16:9!11 +ROM 16:9!12 +ROM 16:10!1 +ROM 16:10!2 +ROM 16:10!3 +ROM 16:10!4 +ROM 16:10!5 +ROM 16:10!6 +ROM 16:10!7 +ROM 16:10!8 +ROM 16:10!9 +ROM 16:10!10 +ROM 16:10!11 +ROM 16:11!1 +ROM 16:11!2 +ROM 16:11!3 +ROM 16:11!4 +ROM 16:11!5 +ROM 16:11!6 +ROM 16:11!7 +ROM 16:11!8 +ROM 16:11!9 +ROM 16:11!10 +ROM 16:11!11 +ROM 16:11!12 +ROM 16:11!13 +ROM 16:11!14 +ROM 16:12!1 +ROM 16:12!2 +ROM 16:12!3 +ROM 16:12!4 +ROM 16:12!5 +ROM 16:12!6 +ROM 16:12!7 +ROM 16:12!8 +ROM 16:12!9 +ROM 16:12!10 +ROM 16:12!11 +ROM 16:12!12 +ROM 16:12!13 +ROM 16:12!14 +ROM 16:12!15 +ROM 16:12!16 +ROM 16:12!17 +ROM 16:13!1 +ROM 16:13!2 +ROM 16:13!3 +ROM 16:13!4 +ROM 16:13!5 +ROM 16:13!6 +ROM 16:13!7 +ROM 16:13!8 +ROM 16:13!9 +ROM 16:13!10 +ROM 16:13!11 +ROM 16:13!12 +ROM 16:14!1 +ROM 16:14!2 +ROM 16:14!3 +ROM 16:14!4 +ROM 16:14!5 +ROM 16:14!6 +ROM 16:14!7 +ROM 16:14!8 +ROM 16:14!9 +ROM 16:14!10 +ROM 16:14!11 +ROM 16:15!1 +ROM 16:15!2 +ROM 16:15!3 +ROM 16:15!4 +ROM 16:15!5 +ROM 16:15!6 +ROM 16:15!7 +ROM 16:15!8 +ROM 16:15!9 +ROM 16:15!10 +ROM 16:15!11 +ROM 16:15!12 +ROM 16:15!13 +ROM 16:15!14 +ROM 16:15!15 +ROM 16:15!16 +ROM 16:15!17 +ROM 16:16!1 +ROM 16:16!2 +ROM 16:16!3 +ROM 16:16!4 +ROM 16:16!5 +ROM 16:16!6 +ROM 16:16!7 +ROM 16:16!8 +ROM 16:16!9 +ROM 16:16!10 +ROM 16:16!11 +ROM 16:16!12 +ROM 16:17!2 +ROM 16:17!4 +ROM 16:17!1 +ROM 16:17!3 +ROM 16:17!5 +ROM 16:17!6 +ROM 16:17!7 +ROM 16:17!8 +ROM 16:17!9 +ROM 16:17!10 +ROM 16:17!11 +ROM 16:17!12 +ROM 16:17!13 +ROM 16:17!14 +ROM 16:17!15 +ROM 16:17!16 +ROM 16:17!17 +ROM 16:17!18 +ROM 16:17!19 +ROM 16:17!20 +ROM 16:17!21 +ROM 16:17!22 +ROM 16:18!2 +ROM 16:18!1 +ROM 16:18!3 +ROM 16:18!4 +ROM 16:18!5 +ROM 16:18!6 +ROM 16:18!7 +ROM 16:18!8 +ROM 16:18!9 +ROM 16:18!10 +ROM 16:18!11 +ROM 16:18!12 +ROM 16:18!13 +ROM 16:18!14 +ROM 16:18!15 +ROM 16:18!16 +ROM 16:18!17 +ROM 16:18!18 +ROM 16:18!19 +ROM 16:18!20 +ROM 16:18!21 +ROM 16:18!22 +ROM 16:18!23 +ROM 16:18!24 +ROM 16:19!2 +ROM 16:19!1 +ROM 16:19!3 +ROM 16:19!4 +ROM 16:19!5 +ROM 16:19!6 +ROM 16:19!7 +ROM 16:19!10 +ROM 16:19!8 +ROM 16:19!9 +ROM 16:19!11 +ROM 16:19!13 +ROM 16:19!12 +ROM 16:19!14 +ROM 16:19!15 +ROM 16:19!16 +ROM 16:19!17 +ROM 16:19!18 +ROM 16:19!19 +ROM 16:19!21 +ROM 16:19!20 +ROM 16:19!22 +ROM 16:19!23 +ROM 16:19!24 +ROM 16:20!2 +ROM 16:20!1 +ROM 16:20!3 +ROM 16:20!4 +ROM 16:20!5 +ROM 16:20!6 +ROM 16:20!7 +ROM 16:20!8 +ROM 16:20!9 +ROM 16:20!10 +ROM 16:20!11 +ROM 16:20!12 +ROM 16:20!13 +ROM 16:20!14 +ROM 16:20!15 +ROM 16:20!16 +ROM 16:20!17 +ROM 16:20!18 +ROM 16:20!19 +ROM 16:20!20 +ROM 16:20!21 +ROM 16:20!22 +ROM 16:21!1 +ROM 16:21!2 +ROM 16:21!3 +ROM 16:21!4 +ROM 16:21!5 +ROM 16:21!6 +ROM 16:21!7 +ROM 16:21!8 +ROM 16:21!9 +ROM 16:21!10 +ROM 16:21!11 +ROM 16:21!12 +ROM 16:21!13 +ROM 16:21!14 +ROM 16:21!15 +ROM 16:22!1 +ROM 16:22!2 +ROM 16:22!3 +ROM 16:22!4 +ROM 16:22!5 +ROM 16:22!6 +ROM 16:22!7 +ROM 16:22!8 +ROM 16:22!9 +ROM 16:22!10 +ROM 16:23!1 +ROM 16:23!2 +ROM 16:23!3 +ROM 16:23!4 +ROM 16:23!5 +ROM 16:23!6 +ROM 16:23!7 +ROM 16:23!8 +ROM 16:23!9 +ROM 16:23!10 +ROM 16:23!11 +ROM 16:23!12 +ROM 16:23!13 +ROM 16:23!14 +ROM 16:23!15 +ROM 16:23!16 +ROM 16:23!17 +ROM 16:23!18 +ROM 16:23!19 +ROM 16:23!20 +ROM 16:23!21 +ROM 16:25!2 +ROM 16:25!1 +ROM 16:25!3 +ROM 16:25!4 +ROM 16:25!5 +ROM 16:25!6 +ROM 16:25!7 +ROM 16:25!8 +ROM 16:25!9 +ROM 16:25!10 +ROM 16:25!11 +ROM 16:25!12 +ROM 16:25!13 +ROM 16:25!14 +ROM 16:25!15 +ROM 16:25!16 +ROM 16:25!17 +ROM 16:25!18 +ROM 16:25!19 +ROM 16:25!20 +ROM 16:26!2 +ROM 16:26!1 +ROM 16:26!3 +ROM 16:26!5 +ROM 16:26!4 +ROM 16:26!6 +ROM 16:26!7 +ROM 16:26!8 +ROM 16:26!9 +ROM 16:26!10 +ROM 16:26!11 +ROM 16:26!12 +ROM 16:26!13 +ROM 16:26!14 +ROM 16:26!15 +ROM 16:26!16 +ROM 16:26!17 +ROM 16:26!18 +ROM 16:26!19 +ROM 16:26!20 +ROM 16:27!1 +ROM 16:27!2 +ROM 16:27!3 +ROM 16:27!4 +ROM 16:27!5 +ROM 16:27!6 +ROM 16:27!7 +ROM 16:27!8 +ROM 16:27!9 +ROM 16:27!10 +ROM 16:27!11 +ROM 16:27!12 +ROM 16:27!13 +ROM 16:27!14 +ROM 16:27!15 +1CO 1:1!1 +1CO 1:1!2 +1CO 1:1!3 +1CO 1:1!4 +1CO 1:1!5 +1CO 1:1!6 +1CO 1:1!7 +1CO 1:1!8 +1CO 1:1!9 +1CO 1:1!10 +1CO 1:1!11 +1CO 1:1!12 +1CO 1:2!1 +1CO 1:2!2 +1CO 1:2!3 +1CO 1:2!4 +1CO 1:2!5 +1CO 1:2!6 +1CO 1:2!7 +1CO 1:2!8 +1CO 1:2!9 +1CO 1:2!10 +1CO 1:2!11 +1CO 1:2!12 +1CO 1:2!13 +1CO 1:2!14 +1CO 1:2!15 +1CO 1:2!16 +1CO 1:2!17 +1CO 1:2!18 +1CO 1:2!19 +1CO 1:2!20 +1CO 1:2!21 +1CO 1:2!22 +1CO 1:2!23 +1CO 1:2!24 +1CO 1:2!25 +1CO 1:2!26 +1CO 1:2!27 +1CO 1:2!28 +1CO 1:2!29 +1CO 1:2!30 +1CO 1:2!31 +1CO 1:3!2 +1CO 1:3!1 +1CO 1:3!3 +1CO 1:3!4 +1CO 1:3!5 +1CO 1:3!6 +1CO 1:3!7 +1CO 1:3!8 +1CO 1:3!9 +1CO 1:3!10 +1CO 1:3!11 +1CO 1:3!12 +1CO 1:4!1 +1CO 1:4!2 +1CO 1:4!3 +1CO 1:4!4 +1CO 1:4!5 +1CO 1:4!6 +1CO 1:4!7 +1CO 1:4!8 +1CO 1:4!9 +1CO 1:4!10 +1CO 1:4!11 +1CO 1:4!12 +1CO 1:4!13 +1CO 1:4!14 +1CO 1:4!15 +1CO 1:4!16 +1CO 1:4!17 +1CO 1:5!1 +1CO 1:5!2 +1CO 1:5!3 +1CO 1:5!4 +1CO 1:5!5 +1CO 1:5!6 +1CO 1:5!7 +1CO 1:5!8 +1CO 1:5!9 +1CO 1:5!10 +1CO 1:5!11 +1CO 1:5!12 +1CO 1:6!1 +1CO 1:6!2 +1CO 1:6!3 +1CO 1:6!4 +1CO 1:6!5 +1CO 1:6!6 +1CO 1:6!7 +1CO 1:6!8 +1CO 1:7!1 +1CO 1:7!2 +1CO 1:7!3 +1CO 1:7!4 +1CO 1:7!5 +1CO 1:7!6 +1CO 1:7!7 +1CO 1:7!8 +1CO 1:7!9 +1CO 1:7!10 +1CO 1:7!11 +1CO 1:7!12 +1CO 1:7!13 +1CO 1:7!14 +1CO 1:7!15 +1CO 1:8!1 +1CO 1:8!2 +1CO 1:8!3 +1CO 1:8!4 +1CO 1:8!5 +1CO 1:8!6 +1CO 1:8!7 +1CO 1:8!8 +1CO 1:8!9 +1CO 1:8!10 +1CO 1:8!11 +1CO 1:8!12 +1CO 1:8!13 +1CO 1:8!14 +1CO 1:8!15 +1CO 1:9!1 +1CO 1:9!2 +1CO 1:9!3 +1CO 1:9!4 +1CO 1:9!5 +1CO 1:9!6 +1CO 1:9!7 +1CO 1:9!8 +1CO 1:9!9 +1CO 1:9!10 +1CO 1:9!11 +1CO 1:9!12 +1CO 1:9!13 +1CO 1:9!14 +1CO 1:9!15 +1CO 1:9!16 +1CO 1:10!2 +1CO 1:10!4 +1CO 1:10!1 +1CO 1:10!3 +1CO 1:10!5 +1CO 1:10!6 +1CO 1:10!7 +1CO 1:10!8 +1CO 1:10!9 +1CO 1:10!10 +1CO 1:10!11 +1CO 1:10!12 +1CO 1:10!13 +1CO 1:10!14 +1CO 1:10!15 +1CO 1:10!16 +1CO 1:10!17 +1CO 1:10!18 +1CO 1:10!19 +1CO 1:10!20 +1CO 1:10!21 +1CO 1:10!22 +1CO 1:10!23 +1CO 1:10!25 +1CO 1:10!24 +1CO 1:10!26 +1CO 1:10!27 +1CO 1:10!28 +1CO 1:10!29 +1CO 1:10!30 +1CO 1:10!31 +1CO 1:10!32 +1CO 1:10!33 +1CO 1:10!34 +1CO 1:10!35 +1CO 1:11!2 +1CO 1:11!6 +1CO 1:11!7 +1CO 1:11!1 +1CO 1:11!3 +1CO 1:11!4 +1CO 1:11!5 +1CO 1:11!8 +1CO 1:11!9 +1CO 1:11!10 +1CO 1:11!11 +1CO 1:11!12 +1CO 1:11!13 +1CO 1:11!14 +1CO 1:11!15 +1CO 1:12!2 +1CO 1:12!1 +1CO 1:12!3 +1CO 1:12!4 +1CO 1:12!5 +1CO 1:12!6 +1CO 1:12!7 +1CO 1:12!9 +1CO 1:12!8 +1CO 1:12!10 +1CO 1:12!11 +1CO 1:12!13 +1CO 1:12!12 +1CO 1:12!14 +1CO 1:12!16 +1CO 1:12!15 +1CO 1:12!17 +1CO 1:12!19 +1CO 1:12!18 +1CO 1:12!20 +1CO 1:13!1 +1CO 1:13!2 +1CO 1:13!3 +1CO 1:13!4 +1CO 1:13!5 +1CO 1:13!6 +1CO 1:13!7 +1CO 1:13!8 +1CO 1:13!9 +1CO 1:13!10 +1CO 1:13!11 +1CO 1:13!12 +1CO 1:13!13 +1CO 1:13!14 +1CO 1:14!1 +1CO 1:14!2 +1CO 1:14!3 +1CO 1:14!4 +1CO 1:14!5 +1CO 1:14!6 +1CO 1:14!7 +1CO 1:14!8 +1CO 1:14!9 +1CO 1:14!10 +1CO 1:15!1 +1CO 1:15!2 +1CO 1:15!3 +1CO 1:15!4 +1CO 1:15!5 +1CO 1:15!6 +1CO 1:15!7 +1CO 1:15!8 +1CO 1:15!9 +1CO 1:15!10 +1CO 1:16!2 +1CO 1:16!1 +1CO 1:16!3 +1CO 1:16!4 +1CO 1:16!5 +1CO 1:16!6 +1CO 1:16!7 +1CO 1:16!8 +1CO 1:16!9 +1CO 1:16!10 +1CO 1:16!11 +1CO 1:16!12 +1CO 1:16!13 +1CO 1:17!2 +1CO 1:17!3 +1CO 1:17!4 +1CO 1:17!5 +1CO 1:17!1 +1CO 1:17!6 +1CO 1:17!7 +1CO 1:17!8 +1CO 1:17!9 +1CO 1:17!10 +1CO 1:17!11 +1CO 1:17!12 +1CO 1:17!13 +1CO 1:17!14 +1CO 1:17!15 +1CO 1:17!16 +1CO 1:17!17 +1CO 1:17!18 +1CO 1:17!19 +1CO 1:18!3 +1CO 1:18!8 +1CO 1:18!1 +1CO 1:18!2 +1CO 1:18!4 +1CO 1:18!5 +1CO 1:18!6 +1CO 1:18!7 +1CO 1:18!9 +1CO 1:18!10 +1CO 1:18!11 +1CO 1:18!13 +1CO 1:18!12 +1CO 1:18!14 +1CO 1:18!15 +1CO 1:18!16 +1CO 1:18!17 +1CO 1:18!18 +1CO 1:19!2 +1CO 1:19!1 +1CO 1:19!3 +1CO 1:19!4 +1CO 1:19!5 +1CO 1:19!6 +1CO 1:19!7 +1CO 1:19!8 +1CO 1:19!9 +1CO 1:19!10 +1CO 1:19!11 +1CO 1:19!12 +1CO 1:19!13 +1CO 1:20!1 +1CO 1:20!2 +1CO 1:20!3 +1CO 1:20!4 +1CO 1:20!5 +1CO 1:20!6 +1CO 1:20!7 +1CO 1:20!8 +1CO 1:20!9 +1CO 1:20!10 +1CO 1:20!11 +1CO 1:20!12 +1CO 1:20!13 +1CO 1:20!14 +1CO 1:20!15 +1CO 1:20!16 +1CO 1:20!17 +1CO 1:21!2 +1CO 1:21!1 +1CO 1:21!3 +1CO 1:21!4 +1CO 1:21!5 +1CO 1:21!6 +1CO 1:21!7 +1CO 1:21!8 +1CO 1:21!9 +1CO 1:21!10 +1CO 1:21!11 +1CO 1:21!12 +1CO 1:21!13 +1CO 1:21!14 +1CO 1:21!15 +1CO 1:21!16 +1CO 1:21!17 +1CO 1:21!18 +1CO 1:21!19 +1CO 1:21!20 +1CO 1:21!21 +1CO 1:21!22 +1CO 1:21!23 +1CO 1:21!24 +1CO 1:21!25 +1CO 1:21!26 +1CO 1:21!27 +1CO 1:22!1 +1CO 1:22!2 +1CO 1:22!3 +1CO 1:22!4 +1CO 1:22!5 +1CO 1:22!6 +1CO 1:22!7 +1CO 1:22!8 +1CO 1:22!9 +1CO 1:23!2 +1CO 1:23!1 +1CO 1:23!3 +1CO 1:23!4 +1CO 1:23!5 +1CO 1:23!7 +1CO 1:23!6 +1CO 1:23!8 +1CO 1:23!10 +1CO 1:23!9 +1CO 1:23!11 +1CO 1:24!2 +1CO 1:24!1 +1CO 1:24!3 +1CO 1:24!4 +1CO 1:24!6 +1CO 1:24!5 +1CO 1:24!7 +1CO 1:24!8 +1CO 1:24!9 +1CO 1:24!10 +1CO 1:24!11 +1CO 1:24!12 +1CO 1:24!13 +1CO 1:24!14 +1CO 1:25!1 +1CO 1:25!2 +1CO 1:25!3 +1CO 1:25!4 +1CO 1:25!5 +1CO 1:25!6 +1CO 1:25!7 +1CO 1:25!8 +1CO 1:25!9 +1CO 1:25!10 +1CO 1:25!11 +1CO 1:25!12 +1CO 1:25!13 +1CO 1:25!14 +1CO 1:25!15 +1CO 1:25!16 +1CO 1:25!17 +1CO 1:26!2 +1CO 1:26!6 +1CO 1:26!1 +1CO 1:26!3 +1CO 1:26!4 +1CO 1:26!5 +1CO 1:26!7 +1CO 1:26!8 +1CO 1:26!9 +1CO 1:26!10 +1CO 1:26!11 +1CO 1:26!12 +1CO 1:26!13 +1CO 1:26!14 +1CO 1:26!15 +1CO 1:26!16 +1CO 1:26!17 +1CO 1:26!18 +1CO 1:27!1 +1CO 1:27!2 +1CO 1:27!3 +1CO 1:27!4 +1CO 1:27!5 +1CO 1:27!6 +1CO 1:27!7 +1CO 1:27!8 +1CO 1:27!9 +1CO 1:27!10 +1CO 1:27!11 +1CO 1:27!12 +1CO 1:27!13 +1CO 1:27!14 +1CO 1:27!15 +1CO 1:27!16 +1CO 1:27!17 +1CO 1:27!18 +1CO 1:27!19 +1CO 1:27!20 +1CO 1:27!21 +1CO 1:27!22 +1CO 1:27!23 +1CO 1:27!24 +1CO 1:28!1 +1CO 1:28!2 +1CO 1:28!3 +1CO 1:28!4 +1CO 1:28!5 +1CO 1:28!6 +1CO 1:28!7 +1CO 1:28!8 +1CO 1:28!12 +1CO 1:28!13 +1CO 1:28!14 +1CO 1:28!9 +1CO 1:28!10 +1CO 1:28!11 +1CO 1:28!15 +1CO 1:28!16 +1CO 1:28!17 +1CO 1:28!18 +1CO 1:29!1 +1CO 1:29!2 +1CO 1:29!3 +1CO 1:29!4 +1CO 1:29!5 +1CO 1:29!6 +1CO 1:29!7 +1CO 1:29!8 +1CO 1:30!3 +1CO 1:30!1 +1CO 1:30!2 +1CO 1:30!4 +1CO 1:30!5 +1CO 1:30!6 +1CO 1:30!7 +1CO 1:30!8 +1CO 1:30!9 +1CO 1:30!10 +1CO 1:30!12 +1CO 1:30!13 +1CO 1:30!14 +1CO 1:30!11 +1CO 1:30!16 +1CO 1:30!15 +1CO 1:30!17 +1CO 1:30!18 +1CO 1:30!19 +1CO 1:30!20 +1CO 1:31!1 +1CO 1:31!2 +1CO 1:31!3 +1CO 1:31!4 +1CO 1:31!5 +1CO 1:31!6 +1CO 1:31!7 +1CO 1:31!8 +1CO 2:1!5 +1CO 2:1!1 +1CO 2:1!2 +1CO 2:1!3 +1CO 2:1!4 +1CO 2:1!6 +1CO 2:1!7 +1CO 2:1!8 +1CO 2:1!9 +1CO 2:1!10 +1CO 2:1!11 +1CO 2:1!12 +1CO 2:1!13 +1CO 2:1!14 +1CO 2:1!15 +1CO 2:1!16 +1CO 2:1!17 +1CO 2:1!18 +1CO 2:2!2 +1CO 2:2!1 +1CO 2:2!3 +1CO 2:2!4 +1CO 2:2!5 +1CO 2:2!6 +1CO 2:2!7 +1CO 2:2!8 +1CO 2:2!9 +1CO 2:2!10 +1CO 2:2!11 +1CO 2:2!12 +1CO 2:2!13 +1CO 2:2!14 +1CO 2:3!1 +1CO 2:3!2 +1CO 2:3!3 +1CO 2:3!4 +1CO 2:3!5 +1CO 2:3!6 +1CO 2:3!7 +1CO 2:3!8 +1CO 2:3!9 +1CO 2:3!10 +1CO 2:3!11 +1CO 2:3!12 +1CO 2:3!13 +1CO 2:4!1 +1CO 2:4!2 +1CO 2:4!3 +1CO 2:4!4 +1CO 2:4!5 +1CO 2:4!6 +1CO 2:4!7 +1CO 2:4!8 +1CO 2:4!9 +1CO 2:4!10 +1CO 2:4!11 +1CO 2:4!12 +1CO 2:4!13 +1CO 2:4!14 +1CO 2:4!15 +1CO 2:4!16 +1CO 2:4!17 +1CO 2:4!18 +1CO 2:4!19 +1CO 2:5!1 +1CO 2:5!2 +1CO 2:5!3 +1CO 2:5!4 +1CO 2:5!6 +1CO 2:5!5 +1CO 2:5!7 +1CO 2:5!8 +1CO 2:5!9 +1CO 2:5!10 +1CO 2:5!11 +1CO 2:5!12 +1CO 2:5!13 +1CO 2:6!2 +1CO 2:6!1 +1CO 2:6!3 +1CO 2:6!4 +1CO 2:6!5 +1CO 2:6!6 +1CO 2:6!8 +1CO 2:6!9 +1CO 2:6!7 +1CO 2:6!10 +1CO 2:6!11 +1CO 2:6!12 +1CO 2:6!13 +1CO 2:6!14 +1CO 2:6!15 +1CO 2:6!16 +1CO 2:6!17 +1CO 2:6!18 +1CO 2:6!19 +1CO 2:6!20 +1CO 2:7!1 +1CO 2:7!2 +1CO 2:7!3 +1CO 2:7!4 +1CO 2:7!5 +1CO 2:7!6 +1CO 2:7!7 +1CO 2:7!8 +1CO 2:7!9 +1CO 2:7!10 +1CO 2:7!11 +1CO 2:7!12 +1CO 2:7!13 +1CO 2:7!14 +1CO 2:7!15 +1CO 2:7!16 +1CO 2:7!17 +1CO 2:7!18 +1CO 2:8!1 +1CO 2:8!2 +1CO 2:8!3 +1CO 2:8!4 +1CO 2:8!5 +1CO 2:8!6 +1CO 2:8!7 +1CO 2:8!8 +1CO 2:8!10 +1CO 2:8!9 +1CO 2:8!11 +1CO 2:8!13 +1CO 2:8!12 +1CO 2:8!14 +1CO 2:8!15 +1CO 2:8!16 +1CO 2:8!17 +1CO 2:8!18 +1CO 2:9!1 +1CO 2:9!2 +1CO 2:9!3 +1CO 2:9!4 +1CO 2:9!5 +1CO 2:9!6 +1CO 2:9!7 +1CO 2:9!8 +1CO 2:9!9 +1CO 2:9!10 +1CO 2:9!11 +1CO 2:9!12 +1CO 2:9!13 +1CO 2:9!14 +1CO 2:9!15 +1CO 2:9!16 +1CO 2:9!17 +1CO 2:9!18 +1CO 2:9!19 +1CO 2:9!20 +1CO 2:9!21 +1CO 2:9!22 +1CO 2:9!23 +1CO 2:9!24 +1CO 2:10!2 +1CO 2:10!1 +1CO 2:10!3 +1CO 2:10!4 +1CO 2:10!5 +1CO 2:10!6 +1CO 2:10!7 +1CO 2:10!8 +1CO 2:10!10 +1CO 2:10!9 +1CO 2:10!11 +1CO 2:10!12 +1CO 2:10!13 +1CO 2:10!14 +1CO 2:10!15 +1CO 2:10!16 +1CO 2:10!17 +1CO 2:10!18 +1CO 2:11!2 +1CO 2:11!1 +1CO 2:11!4 +1CO 2:11!3 +1CO 2:11!5 +1CO 2:11!6 +1CO 2:11!7 +1CO 2:11!8 +1CO 2:11!9 +1CO 2:11!10 +1CO 2:11!11 +1CO 2:11!12 +1CO 2:11!13 +1CO 2:11!14 +1CO 2:11!15 +1CO 2:11!16 +1CO 2:11!17 +1CO 2:11!18 +1CO 2:11!19 +1CO 2:11!20 +1CO 2:11!21 +1CO 2:11!22 +1CO 2:11!23 +1CO 2:11!24 +1CO 2:11!25 +1CO 2:11!26 +1CO 2:11!27 +1CO 2:11!28 +1CO 2:11!29 +1CO 2:12!2 +1CO 2:12!3 +1CO 2:12!1 +1CO 2:12!4 +1CO 2:12!5 +1CO 2:12!6 +1CO 2:12!7 +1CO 2:12!8 +1CO 2:12!9 +1CO 2:12!10 +1CO 2:12!11 +1CO 2:12!12 +1CO 2:12!13 +1CO 2:12!14 +1CO 2:12!15 +1CO 2:12!16 +1CO 2:12!17 +1CO 2:12!18 +1CO 2:12!19 +1CO 2:12!20 +1CO 2:12!21 +1CO 2:12!22 +1CO 2:12!23 +1CO 2:13!1 +1CO 2:13!2 +1CO 2:13!3 +1CO 2:13!4 +1CO 2:13!5 +1CO 2:13!6 +1CO 2:13!7 +1CO 2:13!8 +1CO 2:13!9 +1CO 2:13!10 +1CO 2:13!11 +1CO 2:13!12 +1CO 2:13!13 +1CO 2:13!14 +1CO 2:13!15 +1CO 2:13!16 +1CO 2:14!2 +1CO 2:14!1 +1CO 2:14!3 +1CO 2:14!4 +1CO 2:14!5 +1CO 2:14!6 +1CO 2:14!7 +1CO 2:14!8 +1CO 2:14!9 +1CO 2:14!10 +1CO 2:14!12 +1CO 2:14!11 +1CO 2:14!13 +1CO 2:14!14 +1CO 2:14!15 +1CO 2:14!16 +1CO 2:14!17 +1CO 2:14!18 +1CO 2:14!19 +1CO 2:14!20 +1CO 2:14!21 +1CO 2:15!2 +1CO 2:15!1 +1CO 2:15!3 +1CO 2:15!4 +1CO 2:15!5 +1CO 2:15!6 +1CO 2:15!8 +1CO 2:15!7 +1CO 2:15!9 +1CO 2:15!10 +1CO 2:15!11 +1CO 2:16!2 +1CO 2:16!1 +1CO 2:16!3 +1CO 2:16!4 +1CO 2:16!5 +1CO 2:16!6 +1CO 2:16!7 +1CO 2:16!8 +1CO 2:16!10 +1CO 2:16!9 +1CO 2:16!11 +1CO 2:16!12 +1CO 2:16!13 +1CO 3:1!2 +1CO 3:1!1 +1CO 3:1!4 +1CO 3:1!3 +1CO 3:1!5 +1CO 3:1!6 +1CO 3:1!7 +1CO 3:1!8 +1CO 3:1!9 +1CO 3:1!10 +1CO 3:1!11 +1CO 3:1!12 +1CO 3:1!13 +1CO 3:1!14 +1CO 3:1!15 +1CO 3:2!1 +1CO 3:2!2 +1CO 3:2!3 +1CO 3:2!4 +1CO 3:2!5 +1CO 3:2!7 +1CO 3:2!6 +1CO 3:2!8 +1CO 3:2!9 +1CO 3:2!10 +1CO 3:2!11 +1CO 3:2!12 +1CO 3:2!13 +1CO 3:3!2 +1CO 3:3!1 +1CO 3:3!3 +1CO 3:3!4 +1CO 3:3!6 +1CO 3:3!5 +1CO 3:3!7 +1CO 3:3!8 +1CO 3:3!9 +1CO 3:3!10 +1CO 3:3!11 +1CO 3:3!12 +1CO 3:3!13 +1CO 3:3!14 +1CO 3:3!15 +1CO 3:3!16 +1CO 3:3!17 +1CO 3:3!18 +1CO 3:4!2 +1CO 3:4!1 +1CO 3:4!6 +1CO 3:4!3 +1CO 3:4!4 +1CO 3:4!5 +1CO 3:4!7 +1CO 3:4!8 +1CO 3:4!10 +1CO 3:4!9 +1CO 3:4!11 +1CO 3:4!12 +1CO 3:4!13 +1CO 3:4!14 +1CO 3:4!15 +1CO 3:5!2 +1CO 3:5!1 +1CO 3:5!3 +1CO 3:5!4 +1CO 3:5!6 +1CO 3:5!5 +1CO 3:5!7 +1CO 3:5!8 +1CO 3:5!9 +1CO 3:5!10 +1CO 3:5!11 +1CO 3:5!12 +1CO 3:5!15 +1CO 3:5!13 +1CO 3:5!14 +1CO 3:5!16 +1CO 3:5!17 +1CO 3:5!18 +1CO 3:6!1 +1CO 3:6!2 +1CO 3:6!3 +1CO 3:6!4 +1CO 3:6!5 +1CO 3:6!6 +1CO 3:6!7 +1CO 3:6!8 +1CO 3:7!1 +1CO 3:7!2 +1CO 3:7!3 +1CO 3:7!4 +1CO 3:7!5 +1CO 3:7!6 +1CO 3:7!7 +1CO 3:7!8 +1CO 3:7!9 +1CO 3:7!10 +1CO 3:7!11 +1CO 3:7!12 +1CO 3:7!13 +1CO 3:8!3 +1CO 3:8!1 +1CO 3:8!2 +1CO 3:8!4 +1CO 3:8!5 +1CO 3:8!6 +1CO 3:8!7 +1CO 3:8!8 +1CO 3:8!10 +1CO 3:8!9 +1CO 3:8!11 +1CO 3:8!12 +1CO 3:8!13 +1CO 3:8!14 +1CO 3:8!15 +1CO 3:8!16 +1CO 3:8!17 +1CO 3:8!18 +1CO 3:9!2 +1CO 3:9!3 +1CO 3:9!1 +1CO 3:9!4 +1CO 3:9!5 +1CO 3:9!6 +1CO 3:9!7 +1CO 3:9!8 +1CO 3:9!9 +1CO 3:10!1 +1CO 3:10!2 +1CO 3:10!3 +1CO 3:10!4 +1CO 3:10!5 +1CO 3:10!6 +1CO 3:10!7 +1CO 3:10!8 +1CO 3:10!9 +1CO 3:10!10 +1CO 3:10!11 +1CO 3:10!12 +1CO 3:10!13 +1CO 3:10!15 +1CO 3:10!14 +1CO 3:10!16 +1CO 3:10!18 +1CO 3:10!17 +1CO 3:10!19 +1CO 3:10!20 +1CO 3:10!21 +1CO 3:11!2 +1CO 3:11!4 +1CO 3:11!5 +1CO 3:11!1 +1CO 3:11!3 +1CO 3:11!6 +1CO 3:11!7 +1CO 3:11!8 +1CO 3:11!9 +1CO 3:11!10 +1CO 3:11!11 +1CO 3:11!12 +1CO 3:11!13 +1CO 3:12!2 +1CO 3:12!1 +1CO 3:12!3 +1CO 3:12!4 +1CO 3:12!5 +1CO 3:12!6 +1CO 3:12!7 +1CO 3:12!8 +1CO 3:12!9 +1CO 3:12!10 +1CO 3:12!11 +1CO 3:12!12 +1CO 3:12!13 +1CO 3:12!14 +1CO 3:13!1 +1CO 3:13!2 +1CO 3:13!3 +1CO 3:13!4 +1CO 3:13!5 +1CO 3:13!7 +1CO 3:13!6 +1CO 3:13!8 +1CO 3:13!9 +1CO 3:13!10 +1CO 3:13!11 +1CO 3:13!12 +1CO 3:13!13 +1CO 3:13!14 +1CO 3:13!15 +1CO 3:13!16 +1CO 3:13!17 +1CO 3:13!18 +1CO 3:13!19 +1CO 3:13!20 +1CO 3:13!21 +1CO 3:13!22 +1CO 3:13!23 +1CO 3:14!1 +1CO 3:14!5 +1CO 3:14!2 +1CO 3:14!3 +1CO 3:14!4 +1CO 3:14!6 +1CO 3:14!7 +1CO 3:14!8 +1CO 3:14!9 +1CO 3:15!1 +1CO 3:15!2 +1CO 3:15!3 +1CO 3:15!4 +1CO 3:15!5 +1CO 3:15!6 +1CO 3:15!8 +1CO 3:15!7 +1CO 3:15!9 +1CO 3:15!11 +1CO 3:15!12 +1CO 3:15!10 +1CO 3:15!13 +1CO 3:15!14 +1CO 3:16!1 +1CO 3:16!2 +1CO 3:16!3 +1CO 3:16!4 +1CO 3:16!5 +1CO 3:16!6 +1CO 3:16!7 +1CO 3:16!8 +1CO 3:16!9 +1CO 3:16!10 +1CO 3:16!11 +1CO 3:16!12 +1CO 3:16!13 +1CO 3:16!14 +1CO 3:17!1 +1CO 3:17!2 +1CO 3:17!3 +1CO 3:17!4 +1CO 3:17!5 +1CO 3:17!6 +1CO 3:17!7 +1CO 3:17!8 +1CO 3:17!9 +1CO 3:17!10 +1CO 3:17!11 +1CO 3:17!13 +1CO 3:17!12 +1CO 3:17!14 +1CO 3:17!15 +1CO 3:17!16 +1CO 3:17!17 +1CO 3:17!18 +1CO 3:17!19 +1CO 3:17!20 +1CO 3:17!21 +1CO 3:18!1 +1CO 3:18!2 +1CO 3:18!3 +1CO 3:18!4 +1CO 3:18!5 +1CO 3:18!6 +1CO 3:18!7 +1CO 3:18!8 +1CO 3:18!9 +1CO 3:18!10 +1CO 3:18!11 +1CO 3:18!12 +1CO 3:18!13 +1CO 3:18!14 +1CO 3:18!15 +1CO 3:18!16 +1CO 3:18!17 +1CO 3:18!18 +1CO 3:18!19 +1CO 3:19!2 +1CO 3:19!1 +1CO 3:19!3 +1CO 3:19!4 +1CO 3:19!5 +1CO 3:19!6 +1CO 3:19!7 +1CO 3:19!8 +1CO 3:19!9 +1CO 3:19!10 +1CO 3:19!11 +1CO 3:19!13 +1CO 3:19!12 +1CO 3:19!14 +1CO 3:19!15 +1CO 3:19!16 +1CO 3:19!17 +1CO 3:19!18 +1CO 3:19!19 +1CO 3:19!20 +1CO 3:19!21 +1CO 3:20!1 +1CO 3:20!2 +1CO 3:20!3 +1CO 3:20!4 +1CO 3:20!5 +1CO 3:20!6 +1CO 3:20!7 +1CO 3:20!8 +1CO 3:20!9 +1CO 3:20!10 +1CO 3:20!11 +1CO 3:21!1 +1CO 3:21!2 +1CO 3:21!3 +1CO 3:21!4 +1CO 3:21!5 +1CO 3:21!7 +1CO 3:21!6 +1CO 3:21!8 +1CO 3:21!9 +1CO 3:22!1 +1CO 3:22!2 +1CO 3:22!3 +1CO 3:22!4 +1CO 3:22!5 +1CO 3:22!6 +1CO 3:22!7 +1CO 3:22!8 +1CO 3:22!9 +1CO 3:22!10 +1CO 3:22!11 +1CO 3:22!12 +1CO 3:22!13 +1CO 3:22!14 +1CO 3:22!15 +1CO 3:22!16 +1CO 3:22!17 +1CO 3:22!18 +1CO 3:23!2 +1CO 3:23!1 +1CO 3:23!3 +1CO 3:23!5 +1CO 3:23!4 +1CO 3:23!6 +1CO 4:1!1 +1CO 4:1!2 +1CO 4:1!3 +1CO 4:1!4 +1CO 4:1!5 +1CO 4:1!6 +1CO 4:1!7 +1CO 4:1!8 +1CO 4:1!9 +1CO 4:1!10 +1CO 4:1!11 +1CO 4:2!1 +1CO 4:2!2 +1CO 4:2!3 +1CO 4:2!4 +1CO 4:2!5 +1CO 4:2!6 +1CO 4:2!7 +1CO 4:2!8 +1CO 4:2!9 +1CO 4:2!10 +1CO 4:3!2 +1CO 4:3!1 +1CO 4:3!3 +1CO 4:3!4 +1CO 4:3!5 +1CO 4:3!6 +1CO 4:3!9 +1CO 4:3!7 +1CO 4:3!8 +1CO 4:3!10 +1CO 4:3!11 +1CO 4:3!12 +1CO 4:3!13 +1CO 4:3!14 +1CO 4:3!15 +1CO 4:3!16 +1CO 4:3!17 +1CO 4:4!2 +1CO 4:4!1 +1CO 4:4!3 +1CO 4:4!4 +1CO 4:4!5 +1CO 4:4!6 +1CO 4:4!7 +1CO 4:4!8 +1CO 4:4!9 +1CO 4:4!11 +1CO 4:4!10 +1CO 4:4!12 +1CO 4:4!13 +1CO 4:4!14 +1CO 4:4!15 +1CO 4:5!1 +1CO 4:5!2 +1CO 4:5!3 +1CO 4:5!4 +1CO 4:5!5 +1CO 4:5!6 +1CO 4:5!7 +1CO 4:5!8 +1CO 4:5!9 +1CO 4:5!10 +1CO 4:5!11 +1CO 4:5!12 +1CO 4:5!13 +1CO 4:5!14 +1CO 4:5!15 +1CO 4:5!16 +1CO 4:5!17 +1CO 4:5!18 +1CO 4:5!19 +1CO 4:5!20 +1CO 4:5!21 +1CO 4:5!22 +1CO 4:5!23 +1CO 4:5!24 +1CO 4:5!25 +1CO 4:5!26 +1CO 4:5!27 +1CO 4:5!28 +1CO 4:5!29 +1CO 4:5!30 +1CO 4:5!31 +1CO 4:5!32 +1CO 4:5!33 +1CO 4:6!2 +1CO 4:6!3 +1CO 4:6!1 +1CO 4:6!4 +1CO 4:6!5 +1CO 4:6!6 +1CO 4:6!7 +1CO 4:6!8 +1CO 4:6!9 +1CO 4:6!10 +1CO 4:6!11 +1CO 4:6!12 +1CO 4:6!13 +1CO 4:6!14 +1CO 4:6!15 +1CO 4:6!16 +1CO 4:6!17 +1CO 4:6!18 +1CO 4:6!19 +1CO 4:6!20 +1CO 4:6!21 +1CO 4:6!22 +1CO 4:6!23 +1CO 4:6!24 +1CO 4:6!25 +1CO 4:6!26 +1CO 4:6!27 +1CO 4:6!28 +1CO 4:6!29 +1CO 4:7!2 +1CO 4:7!1 +1CO 4:7!3 +1CO 4:7!4 +1CO 4:7!6 +1CO 4:7!7 +1CO 4:7!5 +1CO 4:7!8 +1CO 4:7!9 +1CO 4:7!10 +1CO 4:7!12 +1CO 4:7!11 +1CO 4:7!13 +1CO 4:7!14 +1CO 4:7!15 +1CO 4:7!16 +1CO 4:7!17 +1CO 4:7!18 +1CO 4:7!19 +1CO 4:8!1 +1CO 4:8!2 +1CO 4:8!3 +1CO 4:8!4 +1CO 4:8!5 +1CO 4:8!6 +1CO 4:8!7 +1CO 4:8!8 +1CO 4:8!9 +1CO 4:8!10 +1CO 4:8!11 +1CO 4:8!12 +1CO 4:8!13 +1CO 4:8!14 +1CO 4:8!15 +1CO 4:8!16 +1CO 4:8!17 +1CO 4:9!2 +1CO 4:9!1 +1CO 4:9!3 +1CO 4:9!4 +1CO 4:9!5 +1CO 4:9!6 +1CO 4:9!7 +1CO 4:9!8 +1CO 4:9!9 +1CO 4:9!10 +1CO 4:9!11 +1CO 4:9!12 +1CO 4:9!13 +1CO 4:9!14 +1CO 4:9!15 +1CO 4:9!16 +1CO 4:9!17 +1CO 4:9!18 +1CO 4:9!19 +1CO 4:9!20 +1CO 4:10!1 +1CO 4:10!2 +1CO 4:10!3 +1CO 4:10!4 +1CO 4:10!6 +1CO 4:10!5 +1CO 4:10!7 +1CO 4:10!8 +1CO 4:10!9 +1CO 4:10!10 +1CO 4:10!11 +1CO 4:10!13 +1CO 4:10!12 +1CO 4:10!14 +1CO 4:10!15 +1CO 4:10!16 +1CO 4:10!18 +1CO 4:10!17 +1CO 4:10!19 +1CO 4:11!1 +1CO 4:11!2 +1CO 4:11!3 +1CO 4:11!4 +1CO 4:11!5 +1CO 4:11!6 +1CO 4:11!7 +1CO 4:11!8 +1CO 4:11!9 +1CO 4:11!10 +1CO 4:11!11 +1CO 4:11!12 +1CO 4:11!13 +1CO 4:11!14 +1CO 4:12!1 +1CO 4:12!2 +1CO 4:12!3 +1CO 4:12!4 +1CO 4:12!5 +1CO 4:12!6 +1CO 4:12!7 +1CO 4:12!8 +1CO 4:12!9 +1CO 4:12!10 +1CO 4:13!1 +1CO 4:13!2 +1CO 4:13!3 +1CO 4:13!4 +1CO 4:13!5 +1CO 4:13!6 +1CO 4:13!8 +1CO 4:13!9 +1CO 4:13!7 +1CO 4:13!10 +1CO 4:13!11 +1CO 4:14!1 +1CO 4:14!2 +1CO 4:14!3 +1CO 4:14!4 +1CO 4:14!5 +1CO 4:14!6 +1CO 4:14!7 +1CO 4:14!8 +1CO 4:14!9 +1CO 4:14!10 +1CO 4:14!11 +1CO 4:15!2 +1CO 4:15!1 +1CO 4:15!3 +1CO 4:15!4 +1CO 4:15!5 +1CO 4:15!6 +1CO 4:15!7 +1CO 4:15!8 +1CO 4:15!9 +1CO 4:15!10 +1CO 4:15!11 +1CO 4:15!13 +1CO 4:15!12 +1CO 4:15!14 +1CO 4:15!15 +1CO 4:15!16 +1CO 4:15!17 +1CO 4:15!18 +1CO 4:15!19 +1CO 4:15!20 +1CO 4:15!21 +1CO 4:16!2 +1CO 4:16!1 +1CO 4:16!3 +1CO 4:16!4 +1CO 4:16!5 +1CO 4:16!6 +1CO 4:17!1 +1CO 4:17!2 +1CO 4:17!3 +1CO 4:17!4 +1CO 4:17!5 +1CO 4:17!6 +1CO 4:17!7 +1CO 4:17!8 +1CO 4:17!9 +1CO 4:17!10 +1CO 4:17!11 +1CO 4:17!12 +1CO 4:17!13 +1CO 4:17!14 +1CO 4:17!15 +1CO 4:17!16 +1CO 4:17!17 +1CO 4:17!18 +1CO 4:17!19 +1CO 4:17!20 +1CO 4:17!21 +1CO 4:17!22 +1CO 4:17!23 +1CO 4:17!24 +1CO 4:17!25 +1CO 4:17!26 +1CO 4:17!27 +1CO 4:17!28 +1CO 4:17!29 +1CO 4:17!30 +1CO 4:17!31 +1CO 4:18!4 +1CO 4:18!1 +1CO 4:18!2 +1CO 4:18!3 +1CO 4:18!5 +1CO 4:18!6 +1CO 4:18!7 +1CO 4:18!8 +1CO 4:18!9 +1CO 4:19!2 +1CO 4:19!1 +1CO 4:19!3 +1CO 4:19!4 +1CO 4:19!5 +1CO 4:19!6 +1CO 4:19!7 +1CO 4:19!8 +1CO 4:19!9 +1CO 4:19!10 +1CO 4:19!11 +1CO 4:19!12 +1CO 4:19!13 +1CO 4:19!14 +1CO 4:19!15 +1CO 4:19!16 +1CO 4:19!17 +1CO 4:19!18 +1CO 4:19!19 +1CO 4:20!2 +1CO 4:20!1 +1CO 4:20!3 +1CO 4:20!4 +1CO 4:20!5 +1CO 4:20!6 +1CO 4:20!7 +1CO 4:20!8 +1CO 4:20!9 +1CO 4:20!10 +1CO 4:20!11 +1CO 4:21!1 +1CO 4:21!2 +1CO 4:21!3 +1CO 4:21!4 +1CO 4:21!5 +1CO 4:21!6 +1CO 4:21!7 +1CO 4:21!8 +1CO 4:21!9 +1CO 4:21!10 +1CO 4:21!12 +1CO 4:21!11 +1CO 4:21!13 +1CO 5:1!1 +1CO 5:1!2 +1CO 5:1!3 +1CO 5:1!4 +1CO 5:1!5 +1CO 5:1!6 +1CO 5:1!7 +1CO 5:1!8 +1CO 5:1!9 +1CO 5:1!10 +1CO 5:1!11 +1CO 5:1!12 +1CO 5:1!13 +1CO 5:1!14 +1CO 5:1!16 +1CO 5:1!15 +1CO 5:1!17 +1CO 5:1!18 +1CO 5:1!19 +1CO 5:2!1 +1CO 5:2!2 +1CO 5:2!3 +1CO 5:2!4 +1CO 5:2!5 +1CO 5:2!6 +1CO 5:2!7 +1CO 5:2!8 +1CO 5:2!9 +1CO 5:2!10 +1CO 5:2!11 +1CO 5:2!12 +1CO 5:2!13 +1CO 5:2!14 +1CO 5:2!15 +1CO 5:2!16 +1CO 5:2!17 +1CO 5:2!18 +1CO 5:3!3 +1CO 5:3!1 +1CO 5:3!2 +1CO 5:3!4 +1CO 5:3!5 +1CO 5:3!6 +1CO 5:3!8 +1CO 5:3!7 +1CO 5:3!9 +1CO 5:3!10 +1CO 5:3!11 +1CO 5:3!12 +1CO 5:3!13 +1CO 5:3!14 +1CO 5:3!15 +1CO 5:3!16 +1CO 5:3!17 +1CO 5:3!18 +1CO 5:4!1 +1CO 5:4!2 +1CO 5:4!3 +1CO 5:4!4 +1CO 5:4!5 +1CO 5:4!6 +1CO 5:4!7 +1CO 5:4!8 +1CO 5:4!9 +1CO 5:4!10 +1CO 5:4!11 +1CO 5:4!12 +1CO 5:4!13 +1CO 5:4!14 +1CO 5:4!15 +1CO 5:4!16 +1CO 5:4!17 +1CO 5:4!18 +1CO 5:4!19 +1CO 5:5!1 +1CO 5:5!2 +1CO 5:5!3 +1CO 5:5!4 +1CO 5:5!5 +1CO 5:5!6 +1CO 5:5!7 +1CO 5:5!8 +1CO 5:5!9 +1CO 5:5!10 +1CO 5:5!11 +1CO 5:5!12 +1CO 5:5!13 +1CO 5:5!14 +1CO 5:5!15 +1CO 5:5!16 +1CO 5:5!17 +1CO 5:5!18 +1CO 5:6!1 +1CO 5:6!2 +1CO 5:6!3 +1CO 5:6!4 +1CO 5:6!5 +1CO 5:6!6 +1CO 5:6!7 +1CO 5:6!8 +1CO 5:6!9 +1CO 5:6!10 +1CO 5:6!11 +1CO 5:6!12 +1CO 5:6!13 +1CO 5:6!14 +1CO 5:7!1 +1CO 5:7!2 +1CO 5:7!3 +1CO 5:7!4 +1CO 5:7!5 +1CO 5:7!6 +1CO 5:7!7 +1CO 5:7!8 +1CO 5:7!9 +1CO 5:7!10 +1CO 5:7!11 +1CO 5:7!13 +1CO 5:7!12 +1CO 5:7!14 +1CO 5:7!15 +1CO 5:7!16 +1CO 5:7!18 +1CO 5:7!17 +1CO 5:8!1 +1CO 5:8!2 +1CO 5:8!3 +1CO 5:8!4 +1CO 5:8!5 +1CO 5:8!6 +1CO 5:8!7 +1CO 5:8!8 +1CO 5:8!9 +1CO 5:8!10 +1CO 5:8!11 +1CO 5:8!12 +1CO 5:8!13 +1CO 5:8!14 +1CO 5:8!15 +1CO 5:8!16 +1CO 5:8!17 +1CO 5:8!18 +1CO 5:9!1 +1CO 5:9!2 +1CO 5:9!3 +1CO 5:9!4 +1CO 5:9!5 +1CO 5:9!6 +1CO 5:9!7 +1CO 5:9!8 +1CO 5:10!1 +1CO 5:10!2 +1CO 5:10!3 +1CO 5:10!4 +1CO 5:10!5 +1CO 5:10!6 +1CO 5:10!7 +1CO 5:10!8 +1CO 5:10!9 +1CO 5:10!10 +1CO 5:10!11 +1CO 5:10!12 +1CO 5:10!13 +1CO 5:10!14 +1CO 5:10!15 +1CO 5:10!17 +1CO 5:10!16 +1CO 5:10!18 +1CO 5:10!19 +1CO 5:10!20 +1CO 5:10!21 +1CO 5:11!2 +1CO 5:11!1 +1CO 5:11!3 +1CO 5:11!4 +1CO 5:11!5 +1CO 5:11!6 +1CO 5:11!7 +1CO 5:11!8 +1CO 5:11!9 +1CO 5:11!10 +1CO 5:11!11 +1CO 5:11!12 +1CO 5:11!13 +1CO 5:11!14 +1CO 5:11!15 +1CO 5:11!16 +1CO 5:11!17 +1CO 5:11!18 +1CO 5:11!19 +1CO 5:11!20 +1CO 5:11!21 +1CO 5:11!22 +1CO 5:11!23 +1CO 5:11!24 +1CO 5:11!25 +1CO 5:11!26 +1CO 5:12!2 +1CO 5:12!1 +1CO 5:12!3 +1CO 5:12!4 +1CO 5:12!5 +1CO 5:12!6 +1CO 5:12!7 +1CO 5:12!8 +1CO 5:12!9 +1CO 5:12!10 +1CO 5:12!11 +1CO 5:13!2 +1CO 5:13!1 +1CO 5:13!3 +1CO 5:13!4 +1CO 5:13!5 +1CO 5:13!6 +1CO 5:13!7 +1CO 5:13!8 +1CO 5:13!9 +1CO 5:13!10 +1CO 5:13!11 +1CO 5:13!12 +1CO 6:1!1 +1CO 6:1!2 +1CO 6:1!3 +1CO 6:1!4 +1CO 6:1!5 +1CO 6:1!6 +1CO 6:1!7 +1CO 6:1!8 +1CO 6:1!9 +1CO 6:1!10 +1CO 6:1!11 +1CO 6:1!12 +1CO 6:1!13 +1CO 6:1!14 +1CO 6:1!15 +1CO 6:1!16 +1CO 6:1!17 +1CO 6:2!1 +1CO 6:2!2 +1CO 6:2!3 +1CO 6:2!4 +1CO 6:2!5 +1CO 6:2!6 +1CO 6:2!7 +1CO 6:2!8 +1CO 6:2!9 +1CO 6:2!10 +1CO 6:2!11 +1CO 6:2!12 +1CO 6:2!13 +1CO 6:2!14 +1CO 6:2!15 +1CO 6:2!16 +1CO 6:2!17 +1CO 6:2!18 +1CO 6:2!19 +1CO 6:2!20 +1CO 6:3!1 +1CO 6:3!2 +1CO 6:3!3 +1CO 6:3!4 +1CO 6:3!5 +1CO 6:3!6 +1CO 6:3!7 +1CO 6:4!2 +1CO 6:4!3 +1CO 6:4!5 +1CO 6:4!1 +1CO 6:4!4 +1CO 6:4!6 +1CO 6:4!7 +1CO 6:4!8 +1CO 6:4!9 +1CO 6:4!10 +1CO 6:4!11 +1CO 6:4!12 +1CO 6:4!13 +1CO 6:5!1 +1CO 6:5!2 +1CO 6:5!3 +1CO 6:5!4 +1CO 6:5!6 +1CO 6:5!5 +1CO 6:5!7 +1CO 6:5!8 +1CO 6:5!9 +1CO 6:5!10 +1CO 6:5!11 +1CO 6:5!12 +1CO 6:5!13 +1CO 6:5!14 +1CO 6:5!15 +1CO 6:5!16 +1CO 6:5!17 +1CO 6:5!18 +1CO 6:5!19 +1CO 6:6!1 +1CO 6:6!2 +1CO 6:6!3 +1CO 6:6!4 +1CO 6:6!5 +1CO 6:6!6 +1CO 6:6!7 +1CO 6:6!8 +1CO 6:6!9 +1CO 6:7!2 +1CO 6:7!3 +1CO 6:7!1 +1CO 6:7!4 +1CO 6:7!5 +1CO 6:7!6 +1CO 6:7!7 +1CO 6:7!8 +1CO 6:7!9 +1CO 6:7!10 +1CO 6:7!11 +1CO 6:7!12 +1CO 6:7!13 +1CO 6:7!14 +1CO 6:7!15 +1CO 6:7!16 +1CO 6:7!17 +1CO 6:7!18 +1CO 6:7!19 +1CO 6:7!20 +1CO 6:7!21 +1CO 6:7!22 +1CO 6:8!1 +1CO 6:8!2 +1CO 6:8!3 +1CO 6:8!4 +1CO 6:8!5 +1CO 6:8!6 +1CO 6:8!7 +1CO 6:8!8 +1CO 6:9!1 +1CO 6:9!2 +1CO 6:9!3 +1CO 6:9!4 +1CO 6:9!5 +1CO 6:9!6 +1CO 6:9!7 +1CO 6:9!8 +1CO 6:9!9 +1CO 6:9!10 +1CO 6:9!11 +1CO 6:9!12 +1CO 6:9!13 +1CO 6:9!14 +1CO 6:9!15 +1CO 6:9!16 +1CO 6:9!17 +1CO 6:9!18 +1CO 6:9!19 +1CO 6:9!20 +1CO 6:9!21 +1CO 6:10!1 +1CO 6:10!2 +1CO 6:10!3 +1CO 6:10!4 +1CO 6:10!5 +1CO 6:10!6 +1CO 6:10!7 +1CO 6:10!8 +1CO 6:10!9 +1CO 6:10!10 +1CO 6:10!11 +1CO 6:10!12 +1CO 6:10!13 +1CO 6:11!1 +1CO 6:11!2 +1CO 6:11!3 +1CO 6:11!4 +1CO 6:11!5 +1CO 6:11!6 +1CO 6:11!7 +1CO 6:11!8 +1CO 6:11!9 +1CO 6:11!10 +1CO 6:11!11 +1CO 6:11!12 +1CO 6:11!13 +1CO 6:11!14 +1CO 6:11!15 +1CO 6:11!16 +1CO 6:11!17 +1CO 6:11!18 +1CO 6:11!19 +1CO 6:11!20 +1CO 6:11!21 +1CO 6:11!22 +1CO 6:11!23 +1CO 6:11!24 +1CO 6:12!1 +1CO 6:12!2 +1CO 6:12!3 +1CO 6:12!4 +1CO 6:12!5 +1CO 6:12!6 +1CO 6:12!7 +1CO 6:12!8 +1CO 6:12!9 +1CO 6:12!10 +1CO 6:12!11 +1CO 6:12!12 +1CO 6:12!13 +1CO 6:12!14 +1CO 6:12!15 +1CO 6:12!16 +1CO 6:13!1 +1CO 6:13!2 +1CO 6:13!3 +1CO 6:13!4 +1CO 6:13!5 +1CO 6:13!6 +1CO 6:13!7 +1CO 6:13!8 +1CO 6:13!9 +1CO 6:13!11 +1CO 6:13!10 +1CO 6:13!12 +1CO 6:13!13 +1CO 6:13!14 +1CO 6:13!15 +1CO 6:13!16 +1CO 6:13!17 +1CO 6:13!19 +1CO 6:13!18 +1CO 6:13!20 +1CO 6:13!21 +1CO 6:13!22 +1CO 6:13!23 +1CO 6:13!24 +1CO 6:13!25 +1CO 6:13!26 +1CO 6:13!27 +1CO 6:13!28 +1CO 6:13!29 +1CO 6:13!30 +1CO 6:13!31 +1CO 6:14!2 +1CO 6:14!1 +1CO 6:14!3 +1CO 6:14!4 +1CO 6:14!5 +1CO 6:14!6 +1CO 6:14!7 +1CO 6:14!8 +1CO 6:14!9 +1CO 6:14!10 +1CO 6:14!11 +1CO 6:14!12 +1CO 6:14!13 +1CO 6:14!14 +1CO 6:15!1 +1CO 6:15!2 +1CO 6:15!3 +1CO 6:15!4 +1CO 6:15!5 +1CO 6:15!6 +1CO 6:15!7 +1CO 6:15!8 +1CO 6:15!9 +1CO 6:15!11 +1CO 6:15!10 +1CO 6:15!12 +1CO 6:15!13 +1CO 6:15!14 +1CO 6:15!15 +1CO 6:15!16 +1CO 6:15!17 +1CO 6:15!18 +1CO 6:15!19 +1CO 6:15!20 +1CO 6:16!1 +1CO 6:16!2 +1CO 6:16!3 +1CO 6:16!4 +1CO 6:16!5 +1CO 6:16!6 +1CO 6:16!7 +1CO 6:16!8 +1CO 6:16!9 +1CO 6:16!10 +1CO 6:16!11 +1CO 6:16!13 +1CO 6:16!14 +1CO 6:16!12 +1CO 6:16!15 +1CO 6:16!16 +1CO 6:16!17 +1CO 6:16!18 +1CO 6:16!19 +1CO 6:17!2 +1CO 6:17!1 +1CO 6:17!3 +1CO 6:17!4 +1CO 6:17!5 +1CO 6:17!6 +1CO 6:17!7 +1CO 6:17!8 +1CO 6:18!1 +1CO 6:18!2 +1CO 6:18!3 +1CO 6:18!4 +1CO 6:18!5 +1CO 6:18!7 +1CO 6:18!6 +1CO 6:18!8 +1CO 6:18!9 +1CO 6:18!10 +1CO 6:18!11 +1CO 6:18!12 +1CO 6:18!13 +1CO 6:18!15 +1CO 6:18!14 +1CO 6:18!16 +1CO 6:18!17 +1CO 6:18!18 +1CO 6:18!19 +1CO 6:18!20 +1CO 6:18!21 +1CO 6:19!1 +1CO 6:19!2 +1CO 6:19!3 +1CO 6:19!4 +1CO 6:19!5 +1CO 6:19!6 +1CO 6:19!7 +1CO 6:19!8 +1CO 6:19!9 +1CO 6:19!10 +1CO 6:19!11 +1CO 6:19!12 +1CO 6:19!13 +1CO 6:19!14 +1CO 6:19!15 +1CO 6:19!16 +1CO 6:19!17 +1CO 6:19!18 +1CO 6:19!19 +1CO 6:19!20 +1CO 6:19!21 +1CO 6:19!22 +1CO 6:20!2 +1CO 6:20!1 +1CO 6:20!3 +1CO 6:20!5 +1CO 6:20!4 +1CO 6:20!6 +1CO 6:20!7 +1CO 6:20!8 +1CO 6:20!9 +1CO 6:20!10 +1CO 6:20!11 +1CO 7:1!2 +1CO 7:1!1 +1CO 7:1!3 +1CO 7:1!4 +1CO 7:1!5 +1CO 7:1!6 +1CO 7:1!7 +1CO 7:1!8 +1CO 7:1!9 +1CO 7:2!2 +1CO 7:2!1 +1CO 7:2!3 +1CO 7:2!4 +1CO 7:2!5 +1CO 7:2!6 +1CO 7:2!7 +1CO 7:2!8 +1CO 7:2!9 +1CO 7:2!10 +1CO 7:2!11 +1CO 7:2!12 +1CO 7:2!13 +1CO 7:2!14 +1CO 7:2!15 +1CO 7:3!1 +1CO 7:3!2 +1CO 7:3!3 +1CO 7:3!4 +1CO 7:3!5 +1CO 7:3!6 +1CO 7:3!7 +1CO 7:3!9 +1CO 7:3!8 +1CO 7:3!10 +1CO 7:3!11 +1CO 7:3!12 +1CO 7:3!13 +1CO 7:3!14 +1CO 7:4!1 +1CO 7:4!2 +1CO 7:4!3 +1CO 7:4!4 +1CO 7:4!5 +1CO 7:4!6 +1CO 7:4!7 +1CO 7:4!8 +1CO 7:4!9 +1CO 7:4!10 +1CO 7:4!12 +1CO 7:4!11 +1CO 7:4!13 +1CO 7:4!14 +1CO 7:4!15 +1CO 7:4!16 +1CO 7:4!17 +1CO 7:4!18 +1CO 7:4!19 +1CO 7:4!20 +1CO 7:4!21 +1CO 7:4!22 +1CO 7:4!23 +1CO 7:5!1 +1CO 7:5!2 +1CO 7:5!3 +1CO 7:5!4 +1CO 7:5!5 +1CO 7:5!6 +1CO 7:5!7 +1CO 7:5!8 +1CO 7:5!9 +1CO 7:5!10 +1CO 7:5!11 +1CO 7:5!12 +1CO 7:5!13 +1CO 7:5!14 +1CO 7:5!15 +1CO 7:5!16 +1CO 7:5!17 +1CO 7:5!18 +1CO 7:5!19 +1CO 7:5!20 +1CO 7:5!21 +1CO 7:5!22 +1CO 7:5!23 +1CO 7:5!24 +1CO 7:5!25 +1CO 7:5!26 +1CO 7:5!27 +1CO 7:5!28 +1CO 7:5!29 +1CO 7:5!30 +1CO 7:6!2 +1CO 7:6!1 +1CO 7:6!3 +1CO 7:6!4 +1CO 7:6!5 +1CO 7:6!6 +1CO 7:6!7 +1CO 7:6!8 +1CO 7:7!2 +1CO 7:7!1 +1CO 7:7!3 +1CO 7:7!4 +1CO 7:7!5 +1CO 7:7!6 +1CO 7:7!7 +1CO 7:7!8 +1CO 7:7!9 +1CO 7:7!10 +1CO 7:7!12 +1CO 7:7!11 +1CO 7:7!13 +1CO 7:7!14 +1CO 7:7!15 +1CO 7:7!17 +1CO 7:7!16 +1CO 7:7!18 +1CO 7:7!20 +1CO 7:7!19 +1CO 7:7!21 +1CO 7:8!2 +1CO 7:8!1 +1CO 7:8!3 +1CO 7:8!4 +1CO 7:8!5 +1CO 7:8!6 +1CO 7:8!7 +1CO 7:8!8 +1CO 7:8!9 +1CO 7:8!10 +1CO 7:8!11 +1CO 7:8!12 +1CO 7:8!13 +1CO 7:9!2 +1CO 7:9!1 +1CO 7:9!3 +1CO 7:9!4 +1CO 7:9!5 +1CO 7:9!7 +1CO 7:9!6 +1CO 7:9!8 +1CO 7:9!9 +1CO 7:9!10 +1CO 7:9!11 +1CO 7:10!2 +1CO 7:10!1 +1CO 7:10!3 +1CO 7:10!4 +1CO 7:10!5 +1CO 7:10!6 +1CO 7:10!7 +1CO 7:10!8 +1CO 7:10!9 +1CO 7:10!10 +1CO 7:10!11 +1CO 7:10!12 +1CO 7:10!13 +1CO 7:10!14 +1CO 7:11!2 +1CO 7:11!1 +1CO 7:11!3 +1CO 7:11!4 +1CO 7:11!5 +1CO 7:11!6 +1CO 7:11!7 +1CO 7:11!8 +1CO 7:11!9 +1CO 7:11!10 +1CO 7:11!11 +1CO 7:11!12 +1CO 7:11!13 +1CO 7:11!14 +1CO 7:11!15 +1CO 7:12!2 +1CO 7:12!1 +1CO 7:12!3 +1CO 7:12!4 +1CO 7:12!5 +1CO 7:12!6 +1CO 7:12!7 +1CO 7:12!8 +1CO 7:12!9 +1CO 7:12!10 +1CO 7:12!11 +1CO 7:12!13 +1CO 7:12!12 +1CO 7:12!14 +1CO 7:12!15 +1CO 7:12!16 +1CO 7:12!17 +1CO 7:12!18 +1CO 7:12!19 +1CO 7:12!20 +1CO 7:12!21 +1CO 7:12!22 +1CO 7:12!23 +1CO 7:13!1 +1CO 7:13!2 +1CO 7:13!3 +1CO 7:13!4 +1CO 7:13!5 +1CO 7:13!6 +1CO 7:13!7 +1CO 7:13!8 +1CO 7:13!9 +1CO 7:13!10 +1CO 7:13!11 +1CO 7:13!12 +1CO 7:13!13 +1CO 7:13!14 +1CO 7:13!15 +1CO 7:13!16 +1CO 7:14!2 +1CO 7:14!1 +1CO 7:14!3 +1CO 7:14!4 +1CO 7:14!5 +1CO 7:14!6 +1CO 7:14!7 +1CO 7:14!8 +1CO 7:14!9 +1CO 7:14!10 +1CO 7:14!11 +1CO 7:14!12 +1CO 7:14!13 +1CO 7:14!14 +1CO 7:14!15 +1CO 7:14!16 +1CO 7:14!17 +1CO 7:14!18 +1CO 7:14!20 +1CO 7:14!19 +1CO 7:14!21 +1CO 7:14!22 +1CO 7:14!23 +1CO 7:14!24 +1CO 7:14!25 +1CO 7:14!27 +1CO 7:14!26 +1CO 7:14!28 +1CO 7:14!29 +1CO 7:15!2 +1CO 7:15!1 +1CO 7:15!3 +1CO 7:15!4 +1CO 7:15!5 +1CO 7:15!6 +1CO 7:15!7 +1CO 7:15!8 +1CO 7:15!9 +1CO 7:15!10 +1CO 7:15!11 +1CO 7:15!12 +1CO 7:15!13 +1CO 7:15!14 +1CO 7:15!15 +1CO 7:15!16 +1CO 7:15!18 +1CO 7:15!17 +1CO 7:15!19 +1CO 7:15!20 +1CO 7:15!21 +1CO 7:15!22 +1CO 7:15!23 +1CO 7:16!2 +1CO 7:16!4 +1CO 7:16!1 +1CO 7:16!3 +1CO 7:16!5 +1CO 7:16!6 +1CO 7:16!7 +1CO 7:16!8 +1CO 7:16!9 +1CO 7:16!12 +1CO 7:16!10 +1CO 7:16!11 +1CO 7:16!13 +1CO 7:16!14 +1CO 7:16!15 +1CO 7:16!16 +1CO 7:17!1 +1CO 7:17!2 +1CO 7:17!4 +1CO 7:17!3 +1CO 7:17!5 +1CO 7:17!6 +1CO 7:17!7 +1CO 7:17!9 +1CO 7:17!8 +1CO 7:17!10 +1CO 7:17!11 +1CO 7:17!12 +1CO 7:17!13 +1CO 7:17!14 +1CO 7:17!15 +1CO 7:17!16 +1CO 7:17!17 +1CO 7:17!18 +1CO 7:17!19 +1CO 7:17!20 +1CO 7:17!21 +1CO 7:18!1 +1CO 7:18!2 +1CO 7:18!3 +1CO 7:18!4 +1CO 7:18!5 +1CO 7:18!6 +1CO 7:18!7 +1CO 7:18!8 +1CO 7:18!9 +1CO 7:18!10 +1CO 7:18!11 +1CO 7:19!1 +1CO 7:19!2 +1CO 7:19!3 +1CO 7:19!4 +1CO 7:19!5 +1CO 7:19!6 +1CO 7:19!7 +1CO 7:19!8 +1CO 7:19!9 +1CO 7:19!10 +1CO 7:19!11 +1CO 7:19!12 +1CO 7:19!13 +1CO 7:20!1 +1CO 7:20!2 +1CO 7:20!3 +1CO 7:20!4 +1CO 7:20!5 +1CO 7:20!6 +1CO 7:20!7 +1CO 7:20!8 +1CO 7:20!9 +1CO 7:21!1 +1CO 7:21!2 +1CO 7:21!3 +1CO 7:21!4 +1CO 7:21!5 +1CO 7:21!6 +1CO 7:21!7 +1CO 7:21!8 +1CO 7:21!9 +1CO 7:21!10 +1CO 7:21!11 +1CO 7:21!12 +1CO 7:21!13 +1CO 7:22!2 +1CO 7:22!1 +1CO 7:22!3 +1CO 7:22!4 +1CO 7:22!5 +1CO 7:22!6 +1CO 7:22!7 +1CO 7:22!8 +1CO 7:22!9 +1CO 7:22!10 +1CO 7:22!11 +1CO 7:22!12 +1CO 7:22!13 +1CO 7:22!15 +1CO 7:22!14 +1CO 7:22!16 +1CO 7:23!1 +1CO 7:23!2 +1CO 7:23!3 +1CO 7:23!4 +1CO 7:23!5 +1CO 7:23!6 +1CO 7:24!5 +1CO 7:24!1 +1CO 7:24!2 +1CO 7:24!3 +1CO 7:24!4 +1CO 7:24!6 +1CO 7:24!7 +1CO 7:24!8 +1CO 7:24!9 +1CO 7:24!10 +1CO 7:25!2 +1CO 7:25!1 +1CO 7:25!3 +1CO 7:25!4 +1CO 7:25!5 +1CO 7:25!6 +1CO 7:25!7 +1CO 7:25!8 +1CO 7:25!10 +1CO 7:25!9 +1CO 7:25!11 +1CO 7:25!12 +1CO 7:25!13 +1CO 7:25!14 +1CO 7:25!15 +1CO 7:25!16 +1CO 7:25!17 +1CO 7:26!2 +1CO 7:26!1 +1CO 7:26!3 +1CO 7:26!4 +1CO 7:26!5 +1CO 7:26!6 +1CO 7:26!7 +1CO 7:26!8 +1CO 7:26!9 +1CO 7:26!10 +1CO 7:26!11 +1CO 7:26!12 +1CO 7:26!13 +1CO 7:26!14 +1CO 7:26!15 +1CO 7:27!1 +1CO 7:27!2 +1CO 7:27!3 +1CO 7:27!4 +1CO 7:27!5 +1CO 7:27!6 +1CO 7:27!7 +1CO 7:27!8 +1CO 7:27!9 +1CO 7:27!10 +1CO 7:27!11 +1CO 7:28!2 +1CO 7:28!1 +1CO 7:28!3 +1CO 7:28!4 +1CO 7:28!5 +1CO 7:28!6 +1CO 7:28!7 +1CO 7:28!8 +1CO 7:28!9 +1CO 7:28!10 +1CO 7:28!11 +1CO 7:28!12 +1CO 7:28!13 +1CO 7:28!15 +1CO 7:28!14 +1CO 7:28!16 +1CO 7:28!17 +1CO 7:28!18 +1CO 7:28!19 +1CO 7:28!20 +1CO 7:28!22 +1CO 7:28!21 +1CO 7:28!23 +1CO 7:28!24 +1CO 7:29!2 +1CO 7:29!4 +1CO 7:29!1 +1CO 7:29!3 +1CO 7:29!5 +1CO 7:29!6 +1CO 7:29!7 +1CO 7:29!8 +1CO 7:29!9 +1CO 7:29!10 +1CO 7:29!11 +1CO 7:29!12 +1CO 7:29!13 +1CO 7:29!14 +1CO 7:29!15 +1CO 7:29!16 +1CO 7:29!17 +1CO 7:29!18 +1CO 7:29!19 +1CO 7:30!1 +1CO 7:30!2 +1CO 7:30!3 +1CO 7:30!4 +1CO 7:30!5 +1CO 7:30!6 +1CO 7:30!7 +1CO 7:30!8 +1CO 7:30!9 +1CO 7:30!10 +1CO 7:30!11 +1CO 7:30!12 +1CO 7:30!13 +1CO 7:30!14 +1CO 7:30!15 +1CO 7:30!16 +1CO 7:30!17 +1CO 7:30!18 +1CO 7:31!1 +1CO 7:31!2 +1CO 7:31!3 +1CO 7:31!4 +1CO 7:31!5 +1CO 7:31!6 +1CO 7:31!7 +1CO 7:31!8 +1CO 7:31!10 +1CO 7:31!9 +1CO 7:31!11 +1CO 7:31!12 +1CO 7:31!13 +1CO 7:31!14 +1CO 7:31!15 +1CO 7:32!2 +1CO 7:32!1 +1CO 7:32!3 +1CO 7:32!4 +1CO 7:32!5 +1CO 7:32!6 +1CO 7:32!7 +1CO 7:32!8 +1CO 7:32!9 +1CO 7:32!10 +1CO 7:32!11 +1CO 7:32!12 +1CO 7:32!13 +1CO 7:32!14 +1CO 7:32!15 +1CO 7:33!2 +1CO 7:33!1 +1CO 7:33!3 +1CO 7:33!4 +1CO 7:33!5 +1CO 7:33!6 +1CO 7:33!7 +1CO 7:33!8 +1CO 7:33!9 +1CO 7:33!10 +1CO 7:33!11 +1CO 7:34!1 +1CO 7:34!2 +1CO 7:34!3 +1CO 7:34!4 +1CO 7:34!5 +1CO 7:34!6 +1CO 7:34!7 +1CO 7:34!8 +1CO 7:34!9 +1CO 7:34!10 +1CO 7:34!11 +1CO 7:34!12 +1CO 7:34!13 +1CO 7:34!14 +1CO 7:34!15 +1CO 7:34!16 +1CO 7:34!17 +1CO 7:34!18 +1CO 7:34!19 +1CO 7:34!20 +1CO 7:34!21 +1CO 7:34!22 +1CO 7:34!23 +1CO 7:34!25 +1CO 7:34!24 +1CO 7:34!26 +1CO 7:34!27 +1CO 7:34!28 +1CO 7:34!29 +1CO 7:34!30 +1CO 7:34!31 +1CO 7:34!32 +1CO 7:34!33 +1CO 7:34!34 +1CO 7:35!2 +1CO 7:35!1 +1CO 7:35!3 +1CO 7:35!4 +1CO 7:35!5 +1CO 7:35!6 +1CO 7:35!7 +1CO 7:35!8 +1CO 7:35!9 +1CO 7:35!10 +1CO 7:35!11 +1CO 7:35!12 +1CO 7:35!13 +1CO 7:35!14 +1CO 7:35!15 +1CO 7:35!16 +1CO 7:35!17 +1CO 7:35!18 +1CO 7:35!19 +1CO 7:35!20 +1CO 7:35!21 +1CO 7:35!22 +1CO 7:36!2 +1CO 7:36!1 +1CO 7:36!3 +1CO 7:36!4 +1CO 7:36!5 +1CO 7:36!6 +1CO 7:36!7 +1CO 7:36!8 +1CO 7:36!9 +1CO 7:36!10 +1CO 7:36!11 +1CO 7:36!12 +1CO 7:36!13 +1CO 7:36!14 +1CO 7:36!15 +1CO 7:36!16 +1CO 7:36!17 +1CO 7:36!18 +1CO 7:36!19 +1CO 7:36!20 +1CO 7:36!21 +1CO 7:36!22 +1CO 7:37!2 +1CO 7:37!1 +1CO 7:37!3 +1CO 7:37!4 +1CO 7:37!5 +1CO 7:37!6 +1CO 7:37!7 +1CO 7:37!8 +1CO 7:37!9 +1CO 7:37!10 +1CO 7:37!11 +1CO 7:37!13 +1CO 7:37!12 +1CO 7:37!14 +1CO 7:37!15 +1CO 7:37!16 +1CO 7:37!17 +1CO 7:37!18 +1CO 7:37!19 +1CO 7:37!20 +1CO 7:37!21 +1CO 7:37!22 +1CO 7:37!23 +1CO 7:37!24 +1CO 7:37!25 +1CO 7:37!26 +1CO 7:37!27 +1CO 7:37!28 +1CO 7:37!29 +1CO 7:37!30 +1CO 7:37!31 +1CO 7:38!1 +1CO 7:38!2 +1CO 7:38!3 +1CO 7:38!4 +1CO 7:38!5 +1CO 7:38!6 +1CO 7:38!7 +1CO 7:38!8 +1CO 7:38!9 +1CO 7:38!10 +1CO 7:38!11 +1CO 7:38!12 +1CO 7:38!13 +1CO 7:38!14 +1CO 7:38!15 +1CO 7:39!1 +1CO 7:39!2 +1CO 7:39!3 +1CO 7:39!4 +1CO 7:39!5 +1CO 7:39!6 +1CO 7:39!7 +1CO 7:39!8 +1CO 7:39!9 +1CO 7:39!11 +1CO 7:39!10 +1CO 7:39!12 +1CO 7:39!13 +1CO 7:39!14 +1CO 7:39!15 +1CO 7:39!16 +1CO 7:39!17 +1CO 7:39!18 +1CO 7:39!19 +1CO 7:39!20 +1CO 7:39!21 +1CO 7:39!22 +1CO 7:40!2 +1CO 7:40!1 +1CO 7:40!3 +1CO 7:40!4 +1CO 7:40!5 +1CO 7:40!6 +1CO 7:40!7 +1CO 7:40!8 +1CO 7:40!9 +1CO 7:40!10 +1CO 7:40!12 +1CO 7:40!11 +1CO 7:40!13 +1CO 7:40!14 +1CO 7:40!15 +1CO 7:40!16 +1CO 8:1!2 +1CO 8:1!1 +1CO 8:1!3 +1CO 8:1!4 +1CO 8:1!5 +1CO 8:1!6 +1CO 8:1!7 +1CO 8:1!8 +1CO 8:1!9 +1CO 8:1!10 +1CO 8:1!11 +1CO 8:1!12 +1CO 8:1!14 +1CO 8:1!13 +1CO 8:1!15 +1CO 8:1!16 +1CO 8:2!1 +1CO 8:2!2 +1CO 8:2!3 +1CO 8:2!4 +1CO 8:2!5 +1CO 8:2!6 +1CO 8:2!7 +1CO 8:2!8 +1CO 8:2!9 +1CO 8:2!10 +1CO 8:3!2 +1CO 8:3!1 +1CO 8:3!3 +1CO 8:3!4 +1CO 8:3!5 +1CO 8:3!6 +1CO 8:3!7 +1CO 8:3!8 +1CO 8:3!9 +1CO 8:3!10 +1CO 8:4!4 +1CO 8:4!1 +1CO 8:4!2 +1CO 8:4!3 +1CO 8:4!5 +1CO 8:4!6 +1CO 8:4!7 +1CO 8:4!8 +1CO 8:4!9 +1CO 8:4!10 +1CO 8:4!11 +1CO 8:4!12 +1CO 8:4!13 +1CO 8:4!14 +1CO 8:4!15 +1CO 8:4!16 +1CO 8:4!17 +1CO 8:4!18 +1CO 8:4!19 +1CO 8:5!2 +1CO 8:5!3 +1CO 8:5!1 +1CO 8:5!4 +1CO 8:5!5 +1CO 8:5!6 +1CO 8:5!7 +1CO 8:5!8 +1CO 8:5!9 +1CO 8:5!10 +1CO 8:5!11 +1CO 8:5!12 +1CO 8:5!13 +1CO 8:5!14 +1CO 8:5!15 +1CO 8:5!16 +1CO 8:5!17 +1CO 8:5!18 +1CO 8:5!19 +1CO 8:6!1 +1CO 8:6!2 +1CO 8:6!3 +1CO 8:6!4 +1CO 8:6!5 +1CO 8:6!6 +1CO 8:6!7 +1CO 8:6!8 +1CO 8:6!9 +1CO 8:6!10 +1CO 8:6!11 +1CO 8:6!12 +1CO 8:6!13 +1CO 8:6!14 +1CO 8:6!15 +1CO 8:6!16 +1CO 8:6!17 +1CO 8:6!18 +1CO 8:6!19 +1CO 8:6!20 +1CO 8:6!21 +1CO 8:6!22 +1CO 8:6!23 +1CO 8:6!24 +1CO 8:6!25 +1CO 8:6!26 +1CO 8:6!27 +1CO 8:7!1 +1CO 8:7!2 +1CO 8:7!3 +1CO 8:7!4 +1CO 8:7!5 +1CO 8:7!6 +1CO 8:7!8 +1CO 8:7!7 +1CO 8:7!9 +1CO 8:7!10 +1CO 8:7!11 +1CO 8:7!12 +1CO 8:7!13 +1CO 8:7!14 +1CO 8:7!15 +1CO 8:7!16 +1CO 8:7!17 +1CO 8:7!18 +1CO 8:7!19 +1CO 8:7!20 +1CO 8:7!21 +1CO 8:7!22 +1CO 8:7!23 +1CO 8:7!24 +1CO 8:8!2 +1CO 8:8!1 +1CO 8:8!3 +1CO 8:8!4 +1CO 8:8!5 +1CO 8:8!6 +1CO 8:8!7 +1CO 8:8!8 +1CO 8:8!9 +1CO 8:8!10 +1CO 8:8!11 +1CO 8:8!12 +1CO 8:8!13 +1CO 8:8!14 +1CO 8:8!15 +1CO 8:8!16 +1CO 8:9!2 +1CO 8:9!1 +1CO 8:9!3 +1CO 8:9!4 +1CO 8:9!5 +1CO 8:9!6 +1CO 8:9!7 +1CO 8:9!8 +1CO 8:9!9 +1CO 8:9!10 +1CO 8:9!11 +1CO 8:9!12 +1CO 8:10!2 +1CO 8:10!1 +1CO 8:10!3 +1CO 8:10!4 +1CO 8:10!5 +1CO 8:10!6 +1CO 8:10!7 +1CO 8:10!8 +1CO 8:10!9 +1CO 8:10!10 +1CO 8:10!11 +1CO 8:10!12 +1CO 8:10!13 +1CO 8:10!14 +1CO 8:10!15 +1CO 8:10!16 +1CO 8:10!17 +1CO 8:10!18 +1CO 8:10!19 +1CO 8:10!20 +1CO 8:10!21 +1CO 8:10!22 +1CO 8:10!23 +1CO 8:11!2 +1CO 8:11!1 +1CO 8:11!5 +1CO 8:11!6 +1CO 8:11!7 +1CO 8:11!8 +1CO 8:11!3 +1CO 8:11!4 +1CO 8:11!9 +1CO 8:11!10 +1CO 8:11!11 +1CO 8:11!12 +1CO 8:11!13 +1CO 8:11!14 +1CO 8:12!2 +1CO 8:12!1 +1CO 8:12!3 +1CO 8:12!4 +1CO 8:12!5 +1CO 8:12!6 +1CO 8:12!7 +1CO 8:12!8 +1CO 8:12!9 +1CO 8:12!10 +1CO 8:12!11 +1CO 8:12!12 +1CO 8:12!13 +1CO 8:12!14 +1CO 8:12!15 +1CO 8:13!1 +1CO 8:13!2 +1CO 8:13!3 +1CO 8:13!4 +1CO 8:13!5 +1CO 8:13!6 +1CO 8:13!7 +1CO 8:13!8 +1CO 8:13!9 +1CO 8:13!10 +1CO 8:13!11 +1CO 8:13!12 +1CO 8:13!13 +1CO 8:13!14 +1CO 8:13!15 +1CO 8:13!16 +1CO 8:13!17 +1CO 8:13!18 +1CO 8:13!19 +1CO 8:13!20 +1CO 9:1!1 +1CO 9:1!2 +1CO 9:1!3 +1CO 9:1!4 +1CO 9:1!5 +1CO 9:1!6 +1CO 9:1!7 +1CO 9:1!8 +1CO 9:1!9 +1CO 9:1!10 +1CO 9:1!11 +1CO 9:1!12 +1CO 9:1!13 +1CO 9:1!14 +1CO 9:1!15 +1CO 9:1!16 +1CO 9:1!17 +1CO 9:1!18 +1CO 9:1!19 +1CO 9:1!20 +1CO 9:2!1 +1CO 9:2!2 +1CO 9:2!3 +1CO 9:2!4 +1CO 9:2!5 +1CO 9:2!6 +1CO 9:2!7 +1CO 9:2!8 +1CO 9:2!9 +1CO 9:2!11 +1CO 9:2!10 +1CO 9:2!12 +1CO 9:2!13 +1CO 9:2!14 +1CO 9:2!15 +1CO 9:2!16 +1CO 9:2!17 +1CO 9:2!18 +1CO 9:2!19 +1CO 9:3!1 +1CO 9:3!2 +1CO 9:3!3 +1CO 9:3!4 +1CO 9:3!5 +1CO 9:3!6 +1CO 9:3!7 +1CO 9:3!8 +1CO 9:4!1 +1CO 9:4!2 +1CO 9:4!3 +1CO 9:4!4 +1CO 9:4!5 +1CO 9:4!6 +1CO 9:4!7 +1CO 9:5!1 +1CO 9:5!2 +1CO 9:5!3 +1CO 9:5!4 +1CO 9:5!5 +1CO 9:5!6 +1CO 9:5!7 +1CO 9:5!8 +1CO 9:5!9 +1CO 9:5!10 +1CO 9:5!11 +1CO 9:5!12 +1CO 9:5!13 +1CO 9:5!14 +1CO 9:5!15 +1CO 9:5!16 +1CO 9:5!17 +1CO 9:5!18 +1CO 9:5!19 +1CO 9:6!1 +1CO 9:6!2 +1CO 9:6!3 +1CO 9:6!4 +1CO 9:6!5 +1CO 9:6!6 +1CO 9:6!7 +1CO 9:6!8 +1CO 9:6!9 +1CO 9:6!10 +1CO 9:7!1 +1CO 9:7!2 +1CO 9:7!3 +1CO 9:7!4 +1CO 9:7!5 +1CO 9:7!6 +1CO 9:7!7 +1CO 9:7!8 +1CO 9:7!9 +1CO 9:7!10 +1CO 9:7!11 +1CO 9:7!12 +1CO 9:7!13 +1CO 9:7!14 +1CO 9:7!15 +1CO 9:7!16 +1CO 9:7!17 +1CO 9:7!18 +1CO 9:7!19 +1CO 9:7!20 +1CO 9:7!21 +1CO 9:7!22 +1CO 9:7!23 +1CO 9:7!24 +1CO 9:7!25 +1CO 9:7!26 +1CO 9:8!1 +1CO 9:8!2 +1CO 9:8!3 +1CO 9:8!4 +1CO 9:8!5 +1CO 9:8!6 +1CO 9:8!7 +1CO 9:8!8 +1CO 9:8!9 +1CO 9:8!10 +1CO 9:8!11 +1CO 9:8!12 +1CO 9:9!2 +1CO 9:9!1 +1CO 9:9!3 +1CO 9:9!4 +1CO 9:9!5 +1CO 9:9!6 +1CO 9:9!7 +1CO 9:9!8 +1CO 9:9!9 +1CO 9:9!10 +1CO 9:9!11 +1CO 9:9!12 +1CO 9:9!13 +1CO 9:9!14 +1CO 9:9!15 +1CO 9:9!16 +1CO 9:10!1 +1CO 9:10!2 +1CO 9:10!3 +1CO 9:10!4 +1CO 9:10!5 +1CO 9:10!8 +1CO 9:10!6 +1CO 9:10!7 +1CO 9:10!9 +1CO 9:10!10 +1CO 9:10!11 +1CO 9:10!12 +1CO 9:10!13 +1CO 9:10!16 +1CO 9:10!14 +1CO 9:10!15 +1CO 9:10!17 +1CO 9:10!18 +1CO 9:10!19 +1CO 9:10!20 +1CO 9:10!21 +1CO 9:10!22 +1CO 9:10!23 +1CO 9:11!1 +1CO 9:11!2 +1CO 9:11!3 +1CO 9:11!4 +1CO 9:11!5 +1CO 9:11!6 +1CO 9:11!7 +1CO 9:11!8 +1CO 9:11!9 +1CO 9:11!10 +1CO 9:11!11 +1CO 9:11!12 +1CO 9:11!13 +1CO 9:12!1 +1CO 9:12!2 +1CO 9:12!3 +1CO 9:12!4 +1CO 9:12!5 +1CO 9:12!6 +1CO 9:12!7 +1CO 9:12!8 +1CO 9:12!9 +1CO 9:12!10 +1CO 9:12!11 +1CO 9:12!12 +1CO 9:12!13 +1CO 9:12!14 +1CO 9:12!15 +1CO 9:12!16 +1CO 9:12!17 +1CO 9:12!18 +1CO 9:12!19 +1CO 9:12!20 +1CO 9:12!21 +1CO 9:12!22 +1CO 9:12!23 +1CO 9:12!24 +1CO 9:12!25 +1CO 9:12!26 +1CO 9:12!27 +1CO 9:13!1 +1CO 9:13!2 +1CO 9:13!3 +1CO 9:13!4 +1CO 9:13!5 +1CO 9:13!6 +1CO 9:13!7 +1CO 9:13!8 +1CO 9:13!9 +1CO 9:13!10 +1CO 9:13!11 +1CO 9:13!12 +1CO 9:13!13 +1CO 9:13!14 +1CO 9:13!15 +1CO 9:13!16 +1CO 9:13!17 +1CO 9:13!18 +1CO 9:13!19 +1CO 9:14!1 +1CO 9:14!2 +1CO 9:14!3 +1CO 9:14!4 +1CO 9:14!5 +1CO 9:14!6 +1CO 9:14!7 +1CO 9:14!8 +1CO 9:14!9 +1CO 9:14!10 +1CO 9:14!11 +1CO 9:14!12 +1CO 9:14!13 +1CO 9:15!2 +1CO 9:15!1 +1CO 9:15!3 +1CO 9:15!4 +1CO 9:15!5 +1CO 9:15!6 +1CO 9:15!9 +1CO 9:15!7 +1CO 9:15!8 +1CO 9:15!10 +1CO 9:15!11 +1CO 9:15!12 +1CO 9:15!13 +1CO 9:15!14 +1CO 9:15!15 +1CO 9:15!17 +1CO 9:15!16 +1CO 9:15!18 +1CO 9:15!19 +1CO 9:15!20 +1CO 9:15!21 +1CO 9:15!22 +1CO 9:15!23 +1CO 9:15!24 +1CO 9:15!25 +1CO 9:15!26 +1CO 9:16!2 +1CO 9:16!1 +1CO 9:16!3 +1CO 9:16!4 +1CO 9:16!5 +1CO 9:16!6 +1CO 9:16!7 +1CO 9:16!9 +1CO 9:16!8 +1CO 9:16!10 +1CO 9:16!11 +1CO 9:16!13 +1CO 9:16!12 +1CO 9:16!14 +1CO 9:16!15 +1CO 9:16!16 +1CO 9:16!17 +1CO 9:16!18 +1CO 9:17!2 +1CO 9:17!1 +1CO 9:17!3 +1CO 9:17!4 +1CO 9:17!5 +1CO 9:17!6 +1CO 9:17!7 +1CO 9:17!9 +1CO 9:17!8 +1CO 9:17!10 +1CO 9:17!11 +1CO 9:17!12 +1CO 9:18!2 +1CO 9:18!1 +1CO 9:18!4 +1CO 9:18!3 +1CO 9:18!5 +1CO 9:18!6 +1CO 9:18!7 +1CO 9:18!8 +1CO 9:18!9 +1CO 9:18!10 +1CO 9:18!11 +1CO 9:18!12 +1CO 9:18!13 +1CO 9:18!14 +1CO 9:18!15 +1CO 9:18!16 +1CO 9:18!17 +1CO 9:18!18 +1CO 9:18!19 +1CO 9:18!20 +1CO 9:18!21 +1CO 9:18!22 +1CO 9:19!2 +1CO 9:19!1 +1CO 9:19!3 +1CO 9:19!4 +1CO 9:19!5 +1CO 9:19!6 +1CO 9:19!7 +1CO 9:19!8 +1CO 9:19!9 +1CO 9:19!10 +1CO 9:19!11 +1CO 9:19!12 +1CO 9:20!1 +1CO 9:20!2 +1CO 9:20!3 +1CO 9:20!4 +1CO 9:20!5 +1CO 9:20!6 +1CO 9:20!7 +1CO 9:20!8 +1CO 9:20!9 +1CO 9:20!10 +1CO 9:20!11 +1CO 9:20!12 +1CO 9:20!13 +1CO 9:20!14 +1CO 9:20!15 +1CO 9:20!16 +1CO 9:20!17 +1CO 9:20!18 +1CO 9:20!19 +1CO 9:20!20 +1CO 9:20!21 +1CO 9:20!22 +1CO 9:20!23 +1CO 9:20!24 +1CO 9:20!25 +1CO 9:21!1 +1CO 9:21!2 +1CO 9:21!3 +1CO 9:21!4 +1CO 9:21!5 +1CO 9:21!6 +1CO 9:21!7 +1CO 9:21!8 +1CO 9:21!9 +1CO 9:21!10 +1CO 9:21!11 +1CO 9:21!12 +1CO 9:21!13 +1CO 9:21!14 +1CO 9:21!15 +1CO 9:22!1 +1CO 9:22!2 +1CO 9:22!3 +1CO 9:22!4 +1CO 9:22!5 +1CO 9:22!6 +1CO 9:22!7 +1CO 9:22!8 +1CO 9:22!9 +1CO 9:22!10 +1CO 9:22!11 +1CO 9:22!12 +1CO 9:22!13 +1CO 9:22!14 +1CO 9:22!15 +1CO 9:22!16 +1CO 9:23!2 +1CO 9:23!1 +1CO 9:23!3 +1CO 9:23!4 +1CO 9:23!5 +1CO 9:23!6 +1CO 9:23!7 +1CO 9:23!8 +1CO 9:23!9 +1CO 9:23!10 +1CO 9:24!1 +1CO 9:24!2 +1CO 9:24!3 +1CO 9:24!4 +1CO 9:24!5 +1CO 9:24!6 +1CO 9:24!7 +1CO 9:24!9 +1CO 9:24!8 +1CO 9:24!10 +1CO 9:24!12 +1CO 9:24!11 +1CO 9:24!13 +1CO 9:24!14 +1CO 9:24!15 +1CO 9:24!16 +1CO 9:24!17 +1CO 9:24!18 +1CO 9:24!19 +1CO 9:25!2 +1CO 9:25!1 +1CO 9:25!3 +1CO 9:25!4 +1CO 9:25!5 +1CO 9:25!6 +1CO 9:25!9 +1CO 9:25!8 +1CO 9:25!7 +1CO 9:25!10 +1CO 9:25!11 +1CO 9:25!12 +1CO 9:25!13 +1CO 9:25!15 +1CO 9:25!14 +1CO 9:25!16 +1CO 9:26!2 +1CO 9:26!1 +1CO 9:26!3 +1CO 9:26!4 +1CO 9:26!5 +1CO 9:26!6 +1CO 9:26!7 +1CO 9:26!8 +1CO 9:26!9 +1CO 9:26!10 +1CO 9:26!11 +1CO 9:26!12 +1CO 9:26!13 +1CO 9:27!1 +1CO 9:27!2 +1CO 9:27!3 +1CO 9:27!4 +1CO 9:27!5 +1CO 9:27!6 +1CO 9:27!7 +1CO 9:27!8 +1CO 9:27!9 +1CO 9:27!10 +1CO 9:27!11 +1CO 9:27!12 +1CO 9:27!13 +1CO 9:27!14 +1CO 10:1!3 +1CO 10:1!6 +1CO 10:1!1 +1CO 10:1!2 +1CO 10:1!4 +1CO 10:1!5 +1CO 10:1!7 +1CO 10:1!8 +1CO 10:1!9 +1CO 10:1!10 +1CO 10:1!11 +1CO 10:1!12 +1CO 10:1!13 +1CO 10:1!14 +1CO 10:1!15 +1CO 10:1!16 +1CO 10:1!17 +1CO 10:1!18 +1CO 10:1!19 +1CO 10:1!20 +1CO 10:1!21 +1CO 10:2!1 +1CO 10:2!2 +1CO 10:2!3 +1CO 10:2!4 +1CO 10:2!5 +1CO 10:2!6 +1CO 10:2!7 +1CO 10:2!8 +1CO 10:2!9 +1CO 10:2!10 +1CO 10:2!11 +1CO 10:2!12 +1CO 10:2!13 +1CO 10:3!1 +1CO 10:3!2 +1CO 10:3!3 +1CO 10:3!4 +1CO 10:3!5 +1CO 10:3!6 +1CO 10:3!7 +1CO 10:4!1 +1CO 10:4!2 +1CO 10:4!3 +1CO 10:4!4 +1CO 10:4!5 +1CO 10:4!7 +1CO 10:4!6 +1CO 10:4!9 +1CO 10:4!8 +1CO 10:4!10 +1CO 10:4!11 +1CO 10:4!12 +1CO 10:4!13 +1CO 10:4!16 +1CO 10:4!14 +1CO 10:4!15 +1CO 10:4!17 +1CO 10:4!18 +1CO 10:4!19 +1CO 10:5!1 +1CO 10:5!2 +1CO 10:5!3 +1CO 10:5!4 +1CO 10:5!5 +1CO 10:5!6 +1CO 10:5!7 +1CO 10:5!8 +1CO 10:5!9 +1CO 10:5!11 +1CO 10:5!10 +1CO 10:5!12 +1CO 10:5!13 +1CO 10:5!14 +1CO 10:6!2 +1CO 10:6!1 +1CO 10:6!3 +1CO 10:6!4 +1CO 10:6!5 +1CO 10:6!6 +1CO 10:6!7 +1CO 10:6!8 +1CO 10:6!9 +1CO 10:6!10 +1CO 10:6!11 +1CO 10:6!12 +1CO 10:6!13 +1CO 10:6!14 +1CO 10:6!15 +1CO 10:7!1 +1CO 10:7!2 +1CO 10:7!3 +1CO 10:7!4 +1CO 10:7!5 +1CO 10:7!6 +1CO 10:7!7 +1CO 10:7!8 +1CO 10:7!9 +1CO 10:7!10 +1CO 10:7!11 +1CO 10:7!12 +1CO 10:7!13 +1CO 10:7!14 +1CO 10:7!15 +1CO 10:7!16 +1CO 10:7!17 +1CO 10:8!1 +1CO 10:8!2 +1CO 10:8!3 +1CO 10:8!4 +1CO 10:8!5 +1CO 10:8!6 +1CO 10:8!7 +1CO 10:8!8 +1CO 10:8!9 +1CO 10:8!10 +1CO 10:8!11 +1CO 10:8!12 +1CO 10:9!1 +1CO 10:9!2 +1CO 10:9!3 +1CO 10:9!4 +1CO 10:9!5 +1CO 10:9!6 +1CO 10:9!7 +1CO 10:9!8 +1CO 10:9!9 +1CO 10:9!10 +1CO 10:9!11 +1CO 10:9!12 +1CO 10:9!13 +1CO 10:10!1 +1CO 10:10!2 +1CO 10:10!3 +1CO 10:10!4 +1CO 10:10!5 +1CO 10:10!6 +1CO 10:10!7 +1CO 10:10!8 +1CO 10:10!9 +1CO 10:10!10 +1CO 10:10!11 +1CO 10:11!2 +1CO 10:11!1 +1CO 10:11!3 +1CO 10:11!4 +1CO 10:11!5 +1CO 10:11!7 +1CO 10:11!6 +1CO 10:11!8 +1CO 10:11!9 +1CO 10:11!10 +1CO 10:11!11 +1CO 10:11!12 +1CO 10:11!13 +1CO 10:11!14 +1CO 10:11!15 +1CO 10:11!16 +1CO 10:11!17 +1CO 10:12!1 +1CO 10:12!2 +1CO 10:12!3 +1CO 10:12!4 +1CO 10:12!5 +1CO 10:12!6 +1CO 10:12!7 +1CO 10:13!1 +1CO 10:13!2 +1CO 10:13!3 +1CO 10:13!4 +1CO 10:13!5 +1CO 10:13!6 +1CO 10:13!7 +1CO 10:13!9 +1CO 10:13!8 +1CO 10:13!10 +1CO 10:13!11 +1CO 10:13!12 +1CO 10:13!13 +1CO 10:13!14 +1CO 10:13!15 +1CO 10:13!16 +1CO 10:13!17 +1CO 10:13!18 +1CO 10:13!19 +1CO 10:13!20 +1CO 10:13!21 +1CO 10:13!22 +1CO 10:13!23 +1CO 10:13!24 +1CO 10:13!25 +1CO 10:13!26 +1CO 10:13!27 +1CO 10:13!28 +1CO 10:13!29 +1CO 10:13!30 +1CO 10:14!1 +1CO 10:14!2 +1CO 10:14!3 +1CO 10:14!4 +1CO 10:14!5 +1CO 10:14!6 +1CO 10:14!7 +1CO 10:15!1 +1CO 10:15!2 +1CO 10:15!3 +1CO 10:15!4 +1CO 10:15!5 +1CO 10:15!6 +1CO 10:15!7 +1CO 10:16!1 +1CO 10:16!2 +1CO 10:16!3 +1CO 10:16!4 +1CO 10:16!5 +1CO 10:16!6 +1CO 10:16!7 +1CO 10:16!9 +1CO 10:16!8 +1CO 10:16!10 +1CO 10:16!11 +1CO 10:16!12 +1CO 10:16!13 +1CO 10:16!14 +1CO 10:16!15 +1CO 10:16!16 +1CO 10:16!17 +1CO 10:16!18 +1CO 10:16!19 +1CO 10:16!20 +1CO 10:16!21 +1CO 10:16!22 +1CO 10:16!23 +1CO 10:16!24 +1CO 10:17!1 +1CO 10:17!2 +1CO 10:17!3 +1CO 10:17!4 +1CO 10:17!5 +1CO 10:17!6 +1CO 10:17!7 +1CO 10:17!8 +1CO 10:17!10 +1CO 10:17!9 +1CO 10:17!11 +1CO 10:17!12 +1CO 10:17!13 +1CO 10:17!14 +1CO 10:17!15 +1CO 10:17!16 +1CO 10:18!1 +1CO 10:18!2 +1CO 10:18!3 +1CO 10:18!4 +1CO 10:18!5 +1CO 10:18!6 +1CO 10:18!7 +1CO 10:18!8 +1CO 10:18!9 +1CO 10:18!10 +1CO 10:18!11 +1CO 10:18!12 +1CO 10:18!13 +1CO 10:18!14 +1CO 10:19!2 +1CO 10:19!1 +1CO 10:19!3 +1CO 10:19!4 +1CO 10:19!5 +1CO 10:19!6 +1CO 10:19!7 +1CO 10:19!8 +1CO 10:19!9 +1CO 10:19!10 +1CO 10:19!11 +1CO 10:19!12 +1CO 10:20!1 +1CO 10:20!2 +1CO 10:20!3 +1CO 10:20!4 +1CO 10:20!5 +1CO 10:20!6 +1CO 10:20!7 +1CO 10:20!8 +1CO 10:20!9 +1CO 10:20!12 +1CO 10:20!10 +1CO 10:20!11 +1CO 10:20!13 +1CO 10:20!14 +1CO 10:20!15 +1CO 10:20!16 +1CO 10:20!17 +1CO 10:21!1 +1CO 10:21!2 +1CO 10:21!3 +1CO 10:21!4 +1CO 10:21!5 +1CO 10:21!6 +1CO 10:21!7 +1CO 10:21!8 +1CO 10:21!9 +1CO 10:21!10 +1CO 10:21!11 +1CO 10:21!12 +1CO 10:21!13 +1CO 10:21!14 +1CO 10:21!15 +1CO 10:21!16 +1CO 10:22!1 +1CO 10:22!2 +1CO 10:22!3 +1CO 10:22!4 +1CO 10:22!5 +1CO 10:22!6 +1CO 10:22!7 +1CO 10:22!8 +1CO 10:23!1 +1CO 10:23!2 +1CO 10:23!3 +1CO 10:23!4 +1CO 10:23!5 +1CO 10:23!6 +1CO 10:23!7 +1CO 10:23!8 +1CO 10:23!9 +1CO 10:23!10 +1CO 10:23!11 +1CO 10:23!12 +1CO 10:24!1 +1CO 10:24!2 +1CO 10:24!3 +1CO 10:24!4 +1CO 10:24!5 +1CO 10:24!6 +1CO 10:24!7 +1CO 10:24!8 +1CO 10:25!1 +1CO 10:25!2 +1CO 10:25!3 +1CO 10:25!4 +1CO 10:25!5 +1CO 10:25!6 +1CO 10:25!7 +1CO 10:25!8 +1CO 10:25!9 +1CO 10:25!10 +1CO 10:25!11 +1CO 10:26!3 +1CO 10:26!1 +1CO 10:26!2 +1CO 10:26!4 +1CO 10:26!5 +1CO 10:26!6 +1CO 10:26!7 +1CO 10:26!8 +1CO 10:26!9 +1CO 10:27!1 +1CO 10:27!2 +1CO 10:27!5 +1CO 10:27!6 +1CO 10:27!3 +1CO 10:27!4 +1CO 10:27!7 +1CO 10:27!8 +1CO 10:27!9 +1CO 10:27!10 +1CO 10:27!11 +1CO 10:27!12 +1CO 10:27!13 +1CO 10:27!14 +1CO 10:27!15 +1CO 10:27!16 +1CO 10:27!17 +1CO 10:27!18 +1CO 10:27!19 +1CO 10:28!2 +1CO 10:28!1 +1CO 10:28!3 +1CO 10:28!4 +1CO 10:28!5 +1CO 10:28!6 +1CO 10:28!7 +1CO 10:28!8 +1CO 10:28!9 +1CO 10:28!10 +1CO 10:28!11 +1CO 10:28!12 +1CO 10:28!13 +1CO 10:28!14 +1CO 10:28!15 +1CO 10:28!16 +1CO 10:28!17 +1CO 10:29!2 +1CO 10:29!3 +1CO 10:29!1 +1CO 10:29!4 +1CO 10:29!5 +1CO 10:29!6 +1CO 10:29!7 +1CO 10:29!8 +1CO 10:29!9 +1CO 10:29!10 +1CO 10:29!13 +1CO 10:29!11 +1CO 10:29!12 +1CO 10:29!14 +1CO 10:29!15 +1CO 10:29!16 +1CO 10:29!17 +1CO 10:29!18 +1CO 10:29!19 +1CO 10:29!20 +1CO 10:30!1 +1CO 10:30!2 +1CO 10:30!3 +1CO 10:30!4 +1CO 10:30!5 +1CO 10:30!6 +1CO 10:30!7 +1CO 10:30!8 +1CO 10:30!9 +1CO 10:30!10 +1CO 10:31!2 +1CO 10:31!1 +1CO 10:31!3 +1CO 10:31!4 +1CO 10:31!5 +1CO 10:31!6 +1CO 10:31!7 +1CO 10:31!8 +1CO 10:31!9 +1CO 10:31!10 +1CO 10:31!11 +1CO 10:31!12 +1CO 10:31!13 +1CO 10:32!1 +1CO 10:32!4 +1CO 10:32!2 +1CO 10:32!3 +1CO 10:32!5 +1CO 10:32!6 +1CO 10:32!7 +1CO 10:32!8 +1CO 10:32!9 +1CO 10:32!10 +1CO 10:32!11 +1CO 10:33!1 +1CO 10:33!2 +1CO 10:33!3 +1CO 10:33!4 +1CO 10:33!5 +1CO 10:33!7 +1CO 10:33!6 +1CO 10:33!8 +1CO 10:33!9 +1CO 10:33!10 +1CO 10:33!11 +1CO 10:33!12 +1CO 10:33!13 +1CO 10:33!14 +1CO 10:33!15 +1CO 10:33!16 +1CO 11:1!1 +1CO 11:1!2 +1CO 11:1!3 +1CO 11:1!4 +1CO 11:1!5 +1CO 11:1!6 +1CO 11:2!2 +1CO 11:2!1 +1CO 11:2!3 +1CO 11:2!4 +1CO 11:2!5 +1CO 11:2!6 +1CO 11:2!7 +1CO 11:2!8 +1CO 11:2!9 +1CO 11:2!10 +1CO 11:2!11 +1CO 11:2!12 +1CO 11:2!13 +1CO 11:2!14 +1CO 11:3!2 +1CO 11:3!1 +1CO 11:3!3 +1CO 11:3!4 +1CO 11:3!5 +1CO 11:3!6 +1CO 11:3!7 +1CO 11:3!8 +1CO 11:3!9 +1CO 11:3!10 +1CO 11:3!11 +1CO 11:3!12 +1CO 11:3!14 +1CO 11:3!13 +1CO 11:3!15 +1CO 11:3!16 +1CO 11:3!17 +1CO 11:3!19 +1CO 11:3!18 +1CO 11:3!20 +1CO 11:3!21 +1CO 11:3!22 +1CO 11:3!23 +1CO 11:4!1 +1CO 11:4!2 +1CO 11:4!3 +1CO 11:4!4 +1CO 11:4!5 +1CO 11:4!6 +1CO 11:4!7 +1CO 11:4!8 +1CO 11:4!9 +1CO 11:4!10 +1CO 11:4!11 +1CO 11:4!12 +1CO 11:5!2 +1CO 11:5!1 +1CO 11:5!3 +1CO 11:5!4 +1CO 11:5!5 +1CO 11:5!6 +1CO 11:5!7 +1CO 11:5!8 +1CO 11:5!9 +1CO 11:5!10 +1CO 11:5!11 +1CO 11:5!12 +1CO 11:5!13 +1CO 11:5!15 +1CO 11:5!16 +1CO 11:5!14 +1CO 11:5!17 +1CO 11:5!18 +1CO 11:5!19 +1CO 11:5!20 +1CO 11:5!21 +1CO 11:6!2 +1CO 11:6!1 +1CO 11:6!3 +1CO 11:6!4 +1CO 11:6!5 +1CO 11:6!6 +1CO 11:6!7 +1CO 11:6!9 +1CO 11:6!8 +1CO 11:6!10 +1CO 11:6!11 +1CO 11:6!12 +1CO 11:6!13 +1CO 11:6!14 +1CO 11:6!15 +1CO 11:6!16 +1CO 11:7!3 +1CO 11:7!2 +1CO 11:7!1 +1CO 11:7!4 +1CO 11:7!5 +1CO 11:7!6 +1CO 11:7!7 +1CO 11:7!8 +1CO 11:7!9 +1CO 11:7!10 +1CO 11:7!11 +1CO 11:7!12 +1CO 11:7!13 +1CO 11:7!16 +1CO 11:7!14 +1CO 11:7!15 +1CO 11:7!17 +1CO 11:7!18 +1CO 11:7!19 +1CO 11:8!2 +1CO 11:8!1 +1CO 11:8!3 +1CO 11:8!4 +1CO 11:8!5 +1CO 11:8!6 +1CO 11:8!7 +1CO 11:8!8 +1CO 11:8!9 +1CO 11:8!10 +1CO 11:9!2 +1CO 11:9!1 +1CO 11:9!3 +1CO 11:9!4 +1CO 11:9!5 +1CO 11:9!6 +1CO 11:9!7 +1CO 11:9!8 +1CO 11:9!9 +1CO 11:9!10 +1CO 11:9!11 +1CO 11:9!12 +1CO 11:9!13 +1CO 11:10!1 +1CO 11:10!2 +1CO 11:10!3 +1CO 11:10!4 +1CO 11:10!5 +1CO 11:10!6 +1CO 11:10!7 +1CO 11:10!8 +1CO 11:10!9 +1CO 11:10!10 +1CO 11:10!11 +1CO 11:10!12 +1CO 11:10!13 +1CO 11:11!1 +1CO 11:11!2 +1CO 11:11!3 +1CO 11:11!4 +1CO 11:11!5 +1CO 11:11!6 +1CO 11:11!7 +1CO 11:11!8 +1CO 11:11!9 +1CO 11:11!10 +1CO 11:11!11 +1CO 11:12!2 +1CO 11:12!1 +1CO 11:12!3 +1CO 11:12!4 +1CO 11:12!5 +1CO 11:12!6 +1CO 11:12!7 +1CO 11:12!8 +1CO 11:12!9 +1CO 11:12!10 +1CO 11:12!11 +1CO 11:12!12 +1CO 11:12!13 +1CO 11:12!14 +1CO 11:12!16 +1CO 11:12!15 +1CO 11:12!17 +1CO 11:12!18 +1CO 11:12!19 +1CO 11:12!20 +1CO 11:13!1 +1CO 11:13!2 +1CO 11:13!3 +1CO 11:13!4 +1CO 11:13!5 +1CO 11:13!6 +1CO 11:13!7 +1CO 11:13!8 +1CO 11:13!9 +1CO 11:13!10 +1CO 11:13!11 +1CO 11:14!1 +1CO 11:14!2 +1CO 11:14!3 +1CO 11:14!4 +1CO 11:14!5 +1CO 11:14!6 +1CO 11:14!7 +1CO 11:14!9 +1CO 11:14!10 +1CO 11:14!8 +1CO 11:14!11 +1CO 11:14!12 +1CO 11:14!13 +1CO 11:14!14 +1CO 11:15!2 +1CO 11:15!3 +1CO 11:15!1 +1CO 11:15!4 +1CO 11:15!5 +1CO 11:15!6 +1CO 11:15!7 +1CO 11:15!8 +1CO 11:15!9 +1CO 11:15!10 +1CO 11:15!11 +1CO 11:15!12 +1CO 11:15!13 +1CO 11:15!14 +1CO 11:16!2 +1CO 11:16!1 +1CO 11:16!3 +1CO 11:16!4 +1CO 11:16!5 +1CO 11:16!6 +1CO 11:16!7 +1CO 11:16!8 +1CO 11:16!9 +1CO 11:16!10 +1CO 11:16!11 +1CO 11:16!12 +1CO 11:16!13 +1CO 11:16!14 +1CO 11:16!15 +1CO 11:16!16 +1CO 11:17!2 +1CO 11:17!1 +1CO 11:17!3 +1CO 11:17!4 +1CO 11:17!5 +1CO 11:17!6 +1CO 11:17!7 +1CO 11:17!8 +1CO 11:17!9 +1CO 11:17!10 +1CO 11:17!11 +1CO 11:17!12 +1CO 11:17!13 +1CO 11:17!14 +1CO 11:17!15 +1CO 11:18!3 +1CO 11:18!2 +1CO 11:18!1 +1CO 11:18!4 +1CO 11:18!5 +1CO 11:18!6 +1CO 11:18!7 +1CO 11:18!8 +1CO 11:18!9 +1CO 11:18!10 +1CO 11:18!11 +1CO 11:18!12 +1CO 11:18!13 +1CO 11:18!14 +1CO 11:18!15 +1CO 11:18!16 +1CO 11:19!2 +1CO 11:19!1 +1CO 11:19!3 +1CO 11:19!4 +1CO 11:19!5 +1CO 11:19!6 +1CO 11:19!7 +1CO 11:19!8 +1CO 11:19!9 +1CO 11:19!10 +1CO 11:19!11 +1CO 11:19!12 +1CO 11:19!13 +1CO 11:19!14 +1CO 11:19!15 +1CO 11:20!2 +1CO 11:20!1 +1CO 11:20!3 +1CO 11:20!4 +1CO 11:20!5 +1CO 11:20!6 +1CO 11:20!7 +1CO 11:20!8 +1CO 11:20!9 +1CO 11:20!10 +1CO 11:20!11 +1CO 11:21!2 +1CO 11:21!1 +1CO 11:21!3 +1CO 11:21!4 +1CO 11:21!5 +1CO 11:21!6 +1CO 11:21!7 +1CO 11:21!8 +1CO 11:21!9 +1CO 11:21!10 +1CO 11:21!12 +1CO 11:21!11 +1CO 11:21!13 +1CO 11:21!15 +1CO 11:21!14 +1CO 11:21!16 +1CO 11:22!2 +1CO 11:22!1 +1CO 11:22!3 +1CO 11:22!4 +1CO 11:22!5 +1CO 11:22!6 +1CO 11:22!7 +1CO 11:22!8 +1CO 11:22!9 +1CO 11:22!10 +1CO 11:22!11 +1CO 11:22!12 +1CO 11:22!13 +1CO 11:22!14 +1CO 11:22!15 +1CO 11:22!16 +1CO 11:22!17 +1CO 11:22!18 +1CO 11:22!19 +1CO 11:22!20 +1CO 11:22!21 +1CO 11:22!22 +1CO 11:22!23 +1CO 11:22!24 +1CO 11:22!25 +1CO 11:22!26 +1CO 11:22!27 +1CO 11:22!28 +1CO 11:22!29 +1CO 11:22!30 +1CO 11:23!2 +1CO 11:23!1 +1CO 11:23!3 +1CO 11:23!4 +1CO 11:23!5 +1CO 11:23!6 +1CO 11:23!7 +1CO 11:23!8 +1CO 11:23!9 +1CO 11:23!10 +1CO 11:23!11 +1CO 11:23!12 +1CO 11:23!13 +1CO 11:23!14 +1CO 11:23!15 +1CO 11:23!16 +1CO 11:23!17 +1CO 11:23!18 +1CO 11:23!19 +1CO 11:23!20 +1CO 11:23!21 +1CO 11:24!1 +1CO 11:24!2 +1CO 11:24!3 +1CO 11:24!4 +1CO 11:24!5 +1CO 11:24!6 +1CO 11:24!8 +1CO 11:24!7 +1CO 11:24!9 +1CO 11:24!10 +1CO 11:24!11 +1CO 11:24!12 +1CO 11:24!13 +1CO 11:24!14 +1CO 11:24!15 +1CO 11:24!16 +1CO 11:24!17 +1CO 11:24!18 +1CO 11:24!19 +1CO 11:25!1 +1CO 11:25!2 +1CO 11:25!3 +1CO 11:25!4 +1CO 11:25!5 +1CO 11:25!6 +1CO 11:25!7 +1CO 11:25!8 +1CO 11:25!9 +1CO 11:25!10 +1CO 11:25!11 +1CO 11:25!12 +1CO 11:25!13 +1CO 11:25!14 +1CO 11:25!15 +1CO 11:25!16 +1CO 11:25!17 +1CO 11:25!18 +1CO 11:25!19 +1CO 11:25!20 +1CO 11:25!21 +1CO 11:25!22 +1CO 11:25!23 +1CO 11:25!24 +1CO 11:25!25 +1CO 11:25!26 +1CO 11:25!27 +1CO 11:25!28 +1CO 11:26!2 +1CO 11:26!1 +1CO 11:26!3 +1CO 11:26!4 +1CO 11:26!5 +1CO 11:26!6 +1CO 11:26!7 +1CO 11:26!8 +1CO 11:26!9 +1CO 11:26!10 +1CO 11:26!11 +1CO 11:26!12 +1CO 11:26!13 +1CO 11:26!14 +1CO 11:26!15 +1CO 11:26!16 +1CO 11:26!17 +1CO 11:26!18 +1CO 11:26!19 +1CO 11:27!1 +1CO 11:27!3 +1CO 11:27!2 +1CO 11:27!4 +1CO 11:27!5 +1CO 11:27!6 +1CO 11:27!7 +1CO 11:27!8 +1CO 11:27!9 +1CO 11:27!10 +1CO 11:27!11 +1CO 11:27!12 +1CO 11:27!13 +1CO 11:27!14 +1CO 11:27!15 +1CO 11:27!16 +1CO 11:27!17 +1CO 11:27!18 +1CO 11:27!19 +1CO 11:27!20 +1CO 11:27!21 +1CO 11:27!22 +1CO 11:28!2 +1CO 11:28!1 +1CO 11:28!3 +1CO 11:28!4 +1CO 11:28!5 +1CO 11:28!6 +1CO 11:28!7 +1CO 11:28!8 +1CO 11:28!9 +1CO 11:28!10 +1CO 11:28!11 +1CO 11:28!12 +1CO 11:28!13 +1CO 11:28!14 +1CO 11:28!15 +1CO 11:29!2 +1CO 11:29!1 +1CO 11:29!3 +1CO 11:29!4 +1CO 11:29!5 +1CO 11:29!6 +1CO 11:29!7 +1CO 11:29!8 +1CO 11:29!9 +1CO 11:29!10 +1CO 11:29!11 +1CO 11:29!12 +1CO 11:29!13 +1CO 11:29!14 +1CO 11:30!1 +1CO 11:30!2 +1CO 11:30!3 +1CO 11:30!4 +1CO 11:30!5 +1CO 11:30!6 +1CO 11:30!7 +1CO 11:30!8 +1CO 11:30!9 +1CO 11:30!10 +1CO 11:30!11 +1CO 11:31!2 +1CO 11:31!1 +1CO 11:31!3 +1CO 11:31!4 +1CO 11:31!6 +1CO 11:31!5 +1CO 11:31!7 +1CO 11:32!2 +1CO 11:32!1 +1CO 11:32!3 +1CO 11:32!4 +1CO 11:32!5 +1CO 11:32!6 +1CO 11:32!7 +1CO 11:32!8 +1CO 11:32!9 +1CO 11:32!10 +1CO 11:32!11 +1CO 11:32!12 +1CO 11:33!1 +1CO 11:33!2 +1CO 11:33!3 +1CO 11:33!4 +1CO 11:33!5 +1CO 11:33!6 +1CO 11:33!7 +1CO 11:33!8 +1CO 11:33!9 +1CO 11:34!1 +1CO 11:34!2 +1CO 11:34!3 +1CO 11:34!4 +1CO 11:34!5 +1CO 11:34!6 +1CO 11:34!7 +1CO 11:34!8 +1CO 11:34!9 +1CO 11:34!10 +1CO 11:34!11 +1CO 11:34!13 +1CO 11:34!12 +1CO 11:34!14 +1CO 11:34!15 +1CO 11:34!16 +1CO 11:34!17 +1CO 11:34!18 +1CO 12:1!2 +1CO 12:1!5 +1CO 12:1!1 +1CO 12:1!3 +1CO 12:1!4 +1CO 12:1!6 +1CO 12:1!7 +1CO 12:1!8 +1CO 12:1!9 +1CO 12:2!1 +1CO 12:2!2 +1CO 12:2!3 +1CO 12:2!4 +1CO 12:2!5 +1CO 12:2!6 +1CO 12:2!7 +1CO 12:2!8 +1CO 12:2!9 +1CO 12:2!10 +1CO 12:2!11 +1CO 12:2!12 +1CO 12:2!13 +1CO 12:2!14 +1CO 12:3!1 +1CO 12:3!2 +1CO 12:3!3 +1CO 12:3!4 +1CO 12:3!5 +1CO 12:3!6 +1CO 12:3!7 +1CO 12:3!8 +1CO 12:3!9 +1CO 12:3!10 +1CO 12:3!11 +1CO 12:3!12 +1CO 12:3!13 +1CO 12:3!14 +1CO 12:3!15 +1CO 12:3!16 +1CO 12:3!17 +1CO 12:3!18 +1CO 12:3!19 +1CO 12:3!20 +1CO 12:3!21 +1CO 12:3!22 +1CO 12:3!23 +1CO 12:4!2 +1CO 12:4!1 +1CO 12:4!3 +1CO 12:4!4 +1CO 12:4!6 +1CO 12:4!5 +1CO 12:4!7 +1CO 12:4!8 +1CO 12:5!1 +1CO 12:5!2 +1CO 12:5!3 +1CO 12:5!4 +1CO 12:5!5 +1CO 12:5!6 +1CO 12:5!7 +1CO 12:5!8 +1CO 12:6!1 +1CO 12:6!2 +1CO 12:6!3 +1CO 12:6!4 +1CO 12:6!6 +1CO 12:6!5 +1CO 12:6!7 +1CO 12:6!8 +1CO 12:6!9 +1CO 12:6!10 +1CO 12:6!11 +1CO 12:6!12 +1CO 12:6!13 +1CO 12:6!14 +1CO 12:7!2 +1CO 12:7!1 +1CO 12:7!3 +1CO 12:7!4 +1CO 12:7!5 +1CO 12:7!6 +1CO 12:7!7 +1CO 12:7!8 +1CO 12:7!9 +1CO 12:7!10 +1CO 12:8!3 +1CO 12:8!2 +1CO 12:8!1 +1CO 12:8!4 +1CO 12:8!5 +1CO 12:8!6 +1CO 12:8!7 +1CO 12:8!8 +1CO 12:8!9 +1CO 12:8!11 +1CO 12:8!10 +1CO 12:8!12 +1CO 12:8!13 +1CO 12:8!14 +1CO 12:8!15 +1CO 12:8!16 +1CO 12:8!17 +1CO 12:9!1 +1CO 12:9!2 +1CO 12:9!3 +1CO 12:9!4 +1CO 12:9!5 +1CO 12:9!6 +1CO 12:9!8 +1CO 12:9!7 +1CO 12:9!9 +1CO 12:9!10 +1CO 12:9!11 +1CO 12:9!12 +1CO 12:9!13 +1CO 12:9!14 +1CO 12:10!2 +1CO 12:10!1 +1CO 12:10!3 +1CO 12:10!4 +1CO 12:10!6 +1CO 12:10!5 +1CO 12:10!7 +1CO 12:10!9 +1CO 12:10!8 +1CO 12:10!10 +1CO 12:10!11 +1CO 12:10!12 +1CO 12:10!13 +1CO 12:10!14 +1CO 12:10!16 +1CO 12:10!15 +1CO 12:10!17 +1CO 12:10!18 +1CO 12:11!2 +1CO 12:11!1 +1CO 12:11!3 +1CO 12:11!4 +1CO 12:11!5 +1CO 12:11!6 +1CO 12:11!7 +1CO 12:11!8 +1CO 12:11!9 +1CO 12:11!10 +1CO 12:11!11 +1CO 12:11!12 +1CO 12:11!13 +1CO 12:11!14 +1CO 12:11!15 +1CO 12:12!2 +1CO 12:12!1 +1CO 12:12!3 +1CO 12:12!4 +1CO 12:12!5 +1CO 12:12!6 +1CO 12:12!7 +1CO 12:12!8 +1CO 12:12!9 +1CO 12:12!10 +1CO 12:12!12 +1CO 12:12!11 +1CO 12:12!13 +1CO 12:12!14 +1CO 12:12!15 +1CO 12:12!16 +1CO 12:12!17 +1CO 12:12!18 +1CO 12:12!19 +1CO 12:12!21 +1CO 12:12!20 +1CO 12:12!22 +1CO 12:12!23 +1CO 12:12!24 +1CO 12:12!25 +1CO 12:13!2 +1CO 12:13!1 +1CO 12:13!3 +1CO 12:13!4 +1CO 12:13!5 +1CO 12:13!6 +1CO 12:13!7 +1CO 12:13!8 +1CO 12:13!9 +1CO 12:13!10 +1CO 12:13!11 +1CO 12:13!12 +1CO 12:13!13 +1CO 12:13!14 +1CO 12:13!15 +1CO 12:13!16 +1CO 12:13!17 +1CO 12:13!18 +1CO 12:13!19 +1CO 12:13!20 +1CO 12:13!21 +1CO 12:13!22 +1CO 12:13!23 +1CO 12:13!24 +1CO 12:14!2 +1CO 12:14!1 +1CO 12:14!3 +1CO 12:14!4 +1CO 12:14!6 +1CO 12:14!5 +1CO 12:14!7 +1CO 12:14!8 +1CO 12:14!9 +1CO 12:14!10 +1CO 12:15!1 +1CO 12:15!2 +1CO 12:15!3 +1CO 12:15!4 +1CO 12:15!5 +1CO 12:15!6 +1CO 12:15!7 +1CO 12:15!8 +1CO 12:15!9 +1CO 12:15!10 +1CO 12:15!11 +1CO 12:15!12 +1CO 12:15!13 +1CO 12:15!14 +1CO 12:15!15 +1CO 12:15!16 +1CO 12:15!17 +1CO 12:15!18 +1CO 12:15!19 +1CO 12:15!20 +1CO 12:15!21 +1CO 12:16!1 +1CO 12:16!2 +1CO 12:16!3 +1CO 12:16!4 +1CO 12:16!5 +1CO 12:16!6 +1CO 12:16!7 +1CO 12:16!8 +1CO 12:16!9 +1CO 12:16!10 +1CO 12:16!11 +1CO 12:16!12 +1CO 12:16!13 +1CO 12:16!14 +1CO 12:16!15 +1CO 12:16!16 +1CO 12:16!17 +1CO 12:16!18 +1CO 12:16!19 +1CO 12:16!20 +1CO 12:16!21 +1CO 12:16!22 +1CO 12:17!1 +1CO 12:17!2 +1CO 12:17!3 +1CO 12:17!4 +1CO 12:17!5 +1CO 12:17!6 +1CO 12:17!7 +1CO 12:17!8 +1CO 12:17!9 +1CO 12:17!10 +1CO 12:17!11 +1CO 12:17!12 +1CO 12:17!13 +1CO 12:17!14 +1CO 12:18!2 +1CO 12:18!1 +1CO 12:18!3 +1CO 12:18!4 +1CO 12:18!5 +1CO 12:18!6 +1CO 12:18!7 +1CO 12:18!8 +1CO 12:18!9 +1CO 12:18!10 +1CO 12:18!11 +1CO 12:18!12 +1CO 12:18!13 +1CO 12:18!14 +1CO 12:18!15 +1CO 12:19!2 +1CO 12:19!1 +1CO 12:19!3 +1CO 12:19!4 +1CO 12:19!5 +1CO 12:19!6 +1CO 12:19!7 +1CO 12:19!8 +1CO 12:19!9 +1CO 12:19!10 +1CO 12:20!2 +1CO 12:20!4 +1CO 12:20!1 +1CO 12:20!3 +1CO 12:20!5 +1CO 12:20!7 +1CO 12:20!6 +1CO 12:20!8 +1CO 12:21!3 +1CO 12:21!1 +1CO 12:21!2 +1CO 12:21!4 +1CO 12:21!5 +1CO 12:21!6 +1CO 12:21!7 +1CO 12:21!8 +1CO 12:21!9 +1CO 12:21!10 +1CO 12:21!11 +1CO 12:21!12 +1CO 12:21!13 +1CO 12:21!14 +1CO 12:21!15 +1CO 12:21!16 +1CO 12:21!17 +1CO 12:21!18 +1CO 12:21!19 +1CO 12:21!20 +1CO 12:21!21 +1CO 12:21!22 +1CO 12:22!1 +1CO 12:22!2 +1CO 12:22!3 +1CO 12:22!4 +1CO 12:22!5 +1CO 12:22!9 +1CO 12:22!10 +1CO 12:22!6 +1CO 12:22!7 +1CO 12:22!8 +1CO 12:22!11 +1CO 12:22!12 +1CO 12:23!1 +1CO 12:23!2 +1CO 12:23!5 +1CO 12:23!4 +1CO 12:23!6 +1CO 12:23!7 +1CO 12:23!3 +1CO 12:23!8 +1CO 12:23!9 +1CO 12:23!10 +1CO 12:23!11 +1CO 12:23!12 +1CO 12:23!13 +1CO 12:23!14 +1CO 12:23!15 +1CO 12:23!16 +1CO 12:23!17 +1CO 12:23!18 +1CO 12:24!2 +1CO 12:24!1 +1CO 12:24!3 +1CO 12:24!4 +1CO 12:24!5 +1CO 12:24!6 +1CO 12:24!7 +1CO 12:24!8 +1CO 12:24!9 +1CO 12:24!10 +1CO 12:24!11 +1CO 12:24!12 +1CO 12:24!13 +1CO 12:24!14 +1CO 12:24!15 +1CO 12:24!17 +1CO 12:24!16 +1CO 12:24!18 +1CO 12:25!1 +1CO 12:25!2 +1CO 12:25!3 +1CO 12:25!4 +1CO 12:25!5 +1CO 12:25!6 +1CO 12:25!7 +1CO 12:25!8 +1CO 12:25!9 +1CO 12:25!10 +1CO 12:25!11 +1CO 12:25!12 +1CO 12:25!13 +1CO 12:25!14 +1CO 12:25!15 +1CO 12:26!1 +1CO 12:26!2 +1CO 12:26!3 +1CO 12:26!4 +1CO 12:26!5 +1CO 12:26!6 +1CO 12:26!7 +1CO 12:26!8 +1CO 12:26!9 +1CO 12:26!10 +1CO 12:26!11 +1CO 12:26!12 +1CO 12:26!13 +1CO 12:26!14 +1CO 12:26!15 +1CO 12:26!16 +1CO 12:27!2 +1CO 12:27!1 +1CO 12:27!3 +1CO 12:27!4 +1CO 12:27!5 +1CO 12:27!6 +1CO 12:27!7 +1CO 12:27!8 +1CO 12:27!9 +1CO 12:28!1 +1CO 12:28!3 +1CO 12:28!2 +1CO 12:28!4 +1CO 12:28!5 +1CO 12:28!6 +1CO 12:28!7 +1CO 12:28!8 +1CO 12:28!9 +1CO 12:28!10 +1CO 12:28!11 +1CO 12:28!12 +1CO 12:28!13 +1CO 12:28!14 +1CO 12:28!15 +1CO 12:28!16 +1CO 12:28!17 +1CO 12:28!18 +1CO 12:28!19 +1CO 12:28!20 +1CO 12:28!21 +1CO 12:28!22 +1CO 12:28!23 +1CO 12:28!24 +1CO 12:29!1 +1CO 12:29!2 +1CO 12:29!3 +1CO 12:29!4 +1CO 12:29!5 +1CO 12:29!6 +1CO 12:29!7 +1CO 12:29!8 +1CO 12:29!9 +1CO 12:29!10 +1CO 12:29!11 +1CO 12:29!12 +1CO 12:30!1 +1CO 12:30!2 +1CO 12:30!4 +1CO 12:30!3 +1CO 12:30!5 +1CO 12:30!6 +1CO 12:30!7 +1CO 12:30!8 +1CO 12:30!9 +1CO 12:30!10 +1CO 12:30!11 +1CO 12:30!12 +1CO 12:31!2 +1CO 12:31!1 +1CO 12:31!3 +1CO 12:31!4 +1CO 12:31!5 +1CO 12:31!6 +1CO 12:31!7 +1CO 12:31!8 +1CO 12:31!9 +1CO 12:31!10 +1CO 12:31!11 +1CO 12:31!12 +1CO 12:31!13 +1CO 13:1!1 +1CO 13:1!2 +1CO 13:1!3 +1CO 13:1!4 +1CO 13:1!5 +1CO 13:1!7 +1CO 13:1!8 +1CO 13:1!9 +1CO 13:1!6 +1CO 13:1!11 +1CO 13:1!10 +1CO 13:1!12 +1CO 13:1!13 +1CO 13:1!14 +1CO 13:1!15 +1CO 13:1!16 +1CO 13:1!17 +1CO 13:1!18 +1CO 13:1!19 +1CO 13:2!1 +1CO 13:2!2 +1CO 13:2!3 +1CO 13:2!4 +1CO 13:2!5 +1CO 13:2!6 +1CO 13:2!7 +1CO 13:2!8 +1CO 13:2!9 +1CO 13:2!10 +1CO 13:2!11 +1CO 13:2!12 +1CO 13:2!13 +1CO 13:2!14 +1CO 13:2!15 +1CO 13:2!16 +1CO 13:2!17 +1CO 13:2!18 +1CO 13:2!19 +1CO 13:2!20 +1CO 13:2!21 +1CO 13:2!22 +1CO 13:2!24 +1CO 13:2!23 +1CO 13:2!25 +1CO 13:2!26 +1CO 13:2!27 +1CO 13:2!28 +1CO 13:3!1 +1CO 13:3!2 +1CO 13:3!3 +1CO 13:3!4 +1CO 13:3!5 +1CO 13:3!6 +1CO 13:3!7 +1CO 13:3!8 +1CO 13:3!9 +1CO 13:3!10 +1CO 13:3!11 +1CO 13:3!12 +1CO 13:3!13 +1CO 13:3!14 +1CO 13:3!15 +1CO 13:3!17 +1CO 13:3!16 +1CO 13:3!18 +1CO 13:3!19 +1CO 13:3!20 +1CO 13:3!21 +1CO 13:4!1 +1CO 13:4!2 +1CO 13:4!3 +1CO 13:4!4 +1CO 13:4!5 +1CO 13:4!6 +1CO 13:4!7 +1CO 13:4!8 +1CO 13:4!9 +1CO 13:4!10 +1CO 13:4!11 +1CO 13:4!12 +1CO 13:4!13 +1CO 13:4!14 +1CO 13:5!1 +1CO 13:5!2 +1CO 13:5!3 +1CO 13:5!4 +1CO 13:5!5 +1CO 13:5!6 +1CO 13:5!7 +1CO 13:5!8 +1CO 13:5!9 +1CO 13:5!10 +1CO 13:5!11 +1CO 13:5!12 +1CO 13:6!1 +1CO 13:6!2 +1CO 13:6!3 +1CO 13:6!4 +1CO 13:6!5 +1CO 13:6!7 +1CO 13:6!6 +1CO 13:6!8 +1CO 13:6!9 +1CO 13:7!1 +1CO 13:7!2 +1CO 13:7!3 +1CO 13:7!4 +1CO 13:7!5 +1CO 13:7!6 +1CO 13:7!7 +1CO 13:7!8 +1CO 13:8!1 +1CO 13:8!2 +1CO 13:8!3 +1CO 13:8!4 +1CO 13:8!6 +1CO 13:8!5 +1CO 13:8!7 +1CO 13:8!8 +1CO 13:8!9 +1CO 13:8!10 +1CO 13:8!11 +1CO 13:8!12 +1CO 13:8!13 +1CO 13:8!14 +1CO 13:9!3 +1CO 13:9!1 +1CO 13:9!2 +1CO 13:9!4 +1CO 13:9!5 +1CO 13:9!6 +1CO 13:9!7 +1CO 13:9!8 +1CO 13:10!2 +1CO 13:10!1 +1CO 13:10!3 +1CO 13:10!4 +1CO 13:10!5 +1CO 13:10!6 +1CO 13:10!7 +1CO 13:10!8 +1CO 13:10!9 +1CO 13:11!1 +1CO 13:11!2 +1CO 13:11!3 +1CO 13:11!4 +1CO 13:11!5 +1CO 13:11!6 +1CO 13:11!7 +1CO 13:11!8 +1CO 13:11!9 +1CO 13:11!10 +1CO 13:11!11 +1CO 13:11!12 +1CO 13:11!13 +1CO 13:11!14 +1CO 13:11!15 +1CO 13:11!16 +1CO 13:11!17 +1CO 13:11!18 +1CO 13:11!19 +1CO 13:12!2 +1CO 13:12!1 +1CO 13:12!3 +1CO 13:12!4 +1CO 13:12!5 +1CO 13:12!6 +1CO 13:12!7 +1CO 13:12!9 +1CO 13:12!8 +1CO 13:12!10 +1CO 13:12!11 +1CO 13:12!12 +1CO 13:12!13 +1CO 13:12!14 +1CO 13:12!15 +1CO 13:12!16 +1CO 13:12!18 +1CO 13:12!17 +1CO 13:12!19 +1CO 13:12!20 +1CO 13:12!21 +1CO 13:12!22 +1CO 13:13!2 +1CO 13:13!1 +1CO 13:13!3 +1CO 13:13!4 +1CO 13:13!5 +1CO 13:13!6 +1CO 13:13!7 +1CO 13:13!8 +1CO 13:13!9 +1CO 13:13!11 +1CO 13:13!10 +1CO 13:13!12 +1CO 13:13!13 +1CO 13:13!14 +1CO 14:1!1 +1CO 14:1!2 +1CO 14:1!3 +1CO 14:1!5 +1CO 14:1!4 +1CO 14:1!6 +1CO 14:1!7 +1CO 14:1!9 +1CO 14:1!10 +1CO 14:1!8 +1CO 14:1!11 +1CO 14:2!2 +1CO 14:2!1 +1CO 14:2!3 +1CO 14:2!4 +1CO 14:2!5 +1CO 14:2!6 +1CO 14:2!7 +1CO 14:2!8 +1CO 14:2!9 +1CO 14:2!11 +1CO 14:2!10 +1CO 14:2!12 +1CO 14:2!14 +1CO 14:2!13 +1CO 14:2!15 +1CO 14:2!16 +1CO 14:3!2 +1CO 14:3!1 +1CO 14:3!3 +1CO 14:3!4 +1CO 14:3!5 +1CO 14:3!6 +1CO 14:3!7 +1CO 14:3!8 +1CO 14:3!9 +1CO 14:3!10 +1CO 14:4!1 +1CO 14:4!2 +1CO 14:4!3 +1CO 14:4!4 +1CO 14:4!5 +1CO 14:4!7 +1CO 14:4!6 +1CO 14:4!8 +1CO 14:4!9 +1CO 14:4!10 +1CO 14:5!2 +1CO 14:5!1 +1CO 14:5!3 +1CO 14:5!4 +1CO 14:5!5 +1CO 14:5!6 +1CO 14:5!8 +1CO 14:5!9 +1CO 14:5!7 +1CO 14:5!10 +1CO 14:5!12 +1CO 14:5!11 +1CO 14:5!13 +1CO 14:5!14 +1CO 14:5!15 +1CO 14:5!16 +1CO 14:5!17 +1CO 14:5!18 +1CO 14:5!20 +1CO 14:5!19 +1CO 14:5!21 +1CO 14:5!22 +1CO 14:5!23 +1CO 14:5!24 +1CO 14:5!25 +1CO 14:5!26 +1CO 14:5!27 +1CO 14:6!2 +1CO 14:6!3 +1CO 14:6!4 +1CO 14:6!1 +1CO 14:6!5 +1CO 14:6!6 +1CO 14:6!7 +1CO 14:6!8 +1CO 14:6!9 +1CO 14:6!10 +1CO 14:6!11 +1CO 14:6!12 +1CO 14:6!13 +1CO 14:6!14 +1CO 14:6!15 +1CO 14:6!16 +1CO 14:6!17 +1CO 14:6!18 +1CO 14:6!19 +1CO 14:6!20 +1CO 14:6!21 +1CO 14:6!22 +1CO 14:6!23 +1CO 14:6!24 +1CO 14:6!25 +1CO 14:6!26 +1CO 14:6!27 +1CO 14:7!1 +1CO 14:7!2 +1CO 14:7!3 +1CO 14:7!4 +1CO 14:7!5 +1CO 14:7!6 +1CO 14:7!7 +1CO 14:7!8 +1CO 14:7!9 +1CO 14:7!10 +1CO 14:7!11 +1CO 14:7!12 +1CO 14:7!13 +1CO 14:7!14 +1CO 14:7!15 +1CO 14:7!16 +1CO 14:7!17 +1CO 14:7!18 +1CO 14:7!19 +1CO 14:7!20 +1CO 14:7!21 +1CO 14:7!22 +1CO 14:8!2 +1CO 14:8!3 +1CO 14:8!1 +1CO 14:8!5 +1CO 14:8!4 +1CO 14:8!6 +1CO 14:8!7 +1CO 14:8!8 +1CO 14:8!9 +1CO 14:8!10 +1CO 14:8!11 +1CO 14:9!1 +1CO 14:9!7 +1CO 14:9!2 +1CO 14:9!3 +1CO 14:9!4 +1CO 14:9!5 +1CO 14:9!6 +1CO 14:9!8 +1CO 14:9!9 +1CO 14:9!10 +1CO 14:9!11 +1CO 14:9!12 +1CO 14:9!13 +1CO 14:9!14 +1CO 14:9!15 +1CO 14:9!17 +1CO 14:9!18 +1CO 14:9!19 +1CO 14:9!16 +1CO 14:9!20 +1CO 14:10!2 +1CO 14:10!3 +1CO 14:10!1 +1CO 14:10!4 +1CO 14:10!5 +1CO 14:10!6 +1CO 14:10!7 +1CO 14:10!8 +1CO 14:10!9 +1CO 14:10!10 +1CO 14:10!11 +1CO 14:11!2 +1CO 14:11!1 +1CO 14:11!3 +1CO 14:11!4 +1CO 14:11!5 +1CO 14:11!6 +1CO 14:11!7 +1CO 14:11!8 +1CO 14:11!9 +1CO 14:11!10 +1CO 14:11!11 +1CO 14:11!12 +1CO 14:11!13 +1CO 14:11!14 +1CO 14:11!15 +1CO 14:11!16 +1CO 14:11!17 +1CO 14:11!18 +1CO 14:12!1 +1CO 14:12!2 +1CO 14:12!3 +1CO 14:12!4 +1CO 14:12!5 +1CO 14:12!7 +1CO 14:12!6 +1CO 14:12!8 +1CO 14:12!9 +1CO 14:12!10 +1CO 14:12!11 +1CO 14:12!12 +1CO 14:12!13 +1CO 14:12!14 +1CO 14:12!15 +1CO 14:13!1 +1CO 14:13!2 +1CO 14:13!3 +1CO 14:13!4 +1CO 14:13!5 +1CO 14:13!6 +1CO 14:13!7 +1CO 14:14!2 +1CO 14:14!1 +1CO 14:14!3 +1CO 14:14!4 +1CO 14:14!5 +1CO 14:14!6 +1CO 14:14!7 +1CO 14:14!8 +1CO 14:14!10 +1CO 14:14!9 +1CO 14:14!11 +1CO 14:14!12 +1CO 14:14!13 +1CO 14:14!14 +1CO 14:15!2 +1CO 14:15!1 +1CO 14:15!3 +1CO 14:15!4 +1CO 14:15!5 +1CO 14:15!6 +1CO 14:15!8 +1CO 14:15!7 +1CO 14:15!9 +1CO 14:15!10 +1CO 14:15!11 +1CO 14:15!12 +1CO 14:15!13 +1CO 14:15!14 +1CO 14:15!16 +1CO 14:15!15 +1CO 14:15!17 +1CO 14:15!18 +1CO 14:15!19 +1CO 14:16!1 +1CO 14:16!2 +1CO 14:16!3 +1CO 14:16!4 +1CO 14:16!5 +1CO 14:16!6 +1CO 14:16!7 +1CO 14:16!8 +1CO 14:16!9 +1CO 14:16!10 +1CO 14:16!11 +1CO 14:16!12 +1CO 14:16!13 +1CO 14:16!14 +1CO 14:16!15 +1CO 14:16!16 +1CO 14:16!17 +1CO 14:16!18 +1CO 14:16!19 +1CO 14:16!20 +1CO 14:16!21 +1CO 14:16!22 +1CO 14:16!23 +1CO 14:17!3 +1CO 14:17!2 +1CO 14:17!1 +1CO 14:17!4 +1CO 14:17!5 +1CO 14:17!6 +1CO 14:17!7 +1CO 14:17!8 +1CO 14:17!9 +1CO 14:17!10 +1CO 14:18!1 +1CO 14:18!2 +1CO 14:18!3 +1CO 14:18!4 +1CO 14:18!5 +1CO 14:18!6 +1CO 14:18!7 +1CO 14:18!8 +1CO 14:19!1 +1CO 14:19!2 +1CO 14:19!3 +1CO 14:19!4 +1CO 14:19!5 +1CO 14:19!6 +1CO 14:19!7 +1CO 14:19!8 +1CO 14:19!9 +1CO 14:19!10 +1CO 14:19!11 +1CO 14:19!12 +1CO 14:19!13 +1CO 14:19!14 +1CO 14:19!15 +1CO 14:19!16 +1CO 14:19!17 +1CO 14:19!18 +1CO 14:19!19 +1CO 14:20!1 +1CO 14:20!2 +1CO 14:20!3 +1CO 14:20!4 +1CO 14:20!5 +1CO 14:20!6 +1CO 14:20!7 +1CO 14:20!8 +1CO 14:20!9 +1CO 14:20!10 +1CO 14:20!12 +1CO 14:20!11 +1CO 14:20!13 +1CO 14:20!14 +1CO 14:20!15 +1CO 14:21!1 +1CO 14:21!2 +1CO 14:21!3 +1CO 14:21!4 +1CO 14:21!5 +1CO 14:21!6 +1CO 14:21!7 +1CO 14:21!8 +1CO 14:21!9 +1CO 14:21!10 +1CO 14:21!11 +1CO 14:21!12 +1CO 14:21!13 +1CO 14:21!14 +1CO 14:21!15 +1CO 14:21!16 +1CO 14:21!17 +1CO 14:21!18 +1CO 14:21!19 +1CO 14:21!20 +1CO 14:21!21 +1CO 14:21!22 +1CO 14:22!1 +1CO 14:22!2 +1CO 14:22!3 +1CO 14:22!4 +1CO 14:22!5 +1CO 14:22!6 +1CO 14:22!7 +1CO 14:22!8 +1CO 14:22!9 +1CO 14:22!10 +1CO 14:22!11 +1CO 14:22!12 +1CO 14:22!14 +1CO 14:22!13 +1CO 14:22!15 +1CO 14:22!16 +1CO 14:22!17 +1CO 14:22!18 +1CO 14:22!19 +1CO 14:22!20 +1CO 14:22!21 +1CO 14:23!2 +1CO 14:23!1 +1CO 14:23!3 +1CO 14:23!4 +1CO 14:23!5 +1CO 14:23!6 +1CO 14:23!7 +1CO 14:23!8 +1CO 14:23!9 +1CO 14:23!10 +1CO 14:23!11 +1CO 14:23!12 +1CO 14:23!13 +1CO 14:23!15 +1CO 14:23!14 +1CO 14:23!16 +1CO 14:23!17 +1CO 14:23!18 +1CO 14:23!19 +1CO 14:23!20 +1CO 14:23!21 +1CO 14:23!22 +1CO 14:24!2 +1CO 14:24!1 +1CO 14:24!3 +1CO 14:24!4 +1CO 14:24!6 +1CO 14:24!5 +1CO 14:24!7 +1CO 14:24!8 +1CO 14:24!9 +1CO 14:24!10 +1CO 14:24!11 +1CO 14:24!12 +1CO 14:24!13 +1CO 14:24!14 +1CO 14:24!15 +1CO 14:24!16 +1CO 14:25!1 +1CO 14:25!2 +1CO 14:25!3 +1CO 14:25!4 +1CO 14:25!5 +1CO 14:25!6 +1CO 14:25!7 +1CO 14:25!8 +1CO 14:25!9 +1CO 14:25!10 +1CO 14:25!11 +1CO 14:25!12 +1CO 14:25!13 +1CO 14:25!14 +1CO 14:25!15 +1CO 14:25!16 +1CO 14:25!17 +1CO 14:25!18 +1CO 14:25!19 +1CO 14:25!20 +1CO 14:25!21 +1CO 14:25!22 +1CO 14:25!23 +1CO 14:26!2 +1CO 14:26!1 +1CO 14:26!3 +1CO 14:26!4 +1CO 14:26!5 +1CO 14:26!6 +1CO 14:26!7 +1CO 14:26!8 +1CO 14:26!9 +1CO 14:26!10 +1CO 14:26!11 +1CO 14:26!12 +1CO 14:26!13 +1CO 14:26!14 +1CO 14:26!15 +1CO 14:26!16 +1CO 14:26!17 +1CO 14:26!18 +1CO 14:26!19 +1CO 14:26!20 +1CO 14:26!21 +1CO 14:27!1 +1CO 14:27!2 +1CO 14:27!3 +1CO 14:27!4 +1CO 14:27!5 +1CO 14:27!6 +1CO 14:27!7 +1CO 14:27!8 +1CO 14:27!9 +1CO 14:27!10 +1CO 14:27!11 +1CO 14:27!12 +1CO 14:27!13 +1CO 14:27!14 +1CO 14:27!15 +1CO 14:27!16 +1CO 14:28!2 +1CO 14:28!1 +1CO 14:28!3 +1CO 14:28!4 +1CO 14:28!5 +1CO 14:28!6 +1CO 14:28!7 +1CO 14:28!8 +1CO 14:28!10 +1CO 14:28!11 +1CO 14:28!9 +1CO 14:28!12 +1CO 14:28!13 +1CO 14:28!14 +1CO 14:29!2 +1CO 14:29!1 +1CO 14:29!3 +1CO 14:29!4 +1CO 14:29!5 +1CO 14:29!6 +1CO 14:29!7 +1CO 14:29!8 +1CO 14:29!9 +1CO 14:29!10 +1CO 14:30!2 +1CO 14:30!1 +1CO 14:30!3 +1CO 14:30!5 +1CO 14:30!4 +1CO 14:30!6 +1CO 14:30!7 +1CO 14:30!8 +1CO 14:31!2 +1CO 14:31!1 +1CO 14:31!3 +1CO 14:31!4 +1CO 14:31!5 +1CO 14:31!6 +1CO 14:31!7 +1CO 14:31!8 +1CO 14:31!9 +1CO 14:31!10 +1CO 14:31!11 +1CO 14:31!12 +1CO 14:32!1 +1CO 14:32!2 +1CO 14:32!3 +1CO 14:32!4 +1CO 14:32!5 +1CO 14:33!2 +1CO 14:33!1 +1CO 14:33!3 +1CO 14:33!4 +1CO 14:33!5 +1CO 14:33!6 +1CO 14:33!7 +1CO 14:33!8 +1CO 14:33!9 +1CO 14:33!10 +1CO 14:33!11 +1CO 14:33!12 +1CO 14:33!13 +1CO 14:33!14 +1CO 14:33!15 +1CO 14:34!1 +1CO 14:34!2 +1CO 14:34!3 +1CO 14:34!4 +1CO 14:34!5 +1CO 14:34!6 +1CO 14:34!8 +1CO 14:34!7 +1CO 14:34!9 +1CO 14:34!10 +1CO 14:34!11 +1CO 14:34!12 +1CO 14:34!13 +1CO 14:34!14 +1CO 14:34!15 +1CO 14:34!16 +1CO 14:34!17 +1CO 14:34!18 +1CO 14:35!2 +1CO 14:35!1 +1CO 14:35!3 +1CO 14:35!4 +1CO 14:35!5 +1CO 14:35!6 +1CO 14:35!7 +1CO 14:35!8 +1CO 14:35!9 +1CO 14:35!10 +1CO 14:35!11 +1CO 14:35!13 +1CO 14:35!12 +1CO 14:35!14 +1CO 14:35!15 +1CO 14:35!16 +1CO 14:35!17 +1CO 14:35!18 +1CO 14:36!1 +1CO 14:36!2 +1CO 14:36!3 +1CO 14:36!4 +1CO 14:36!5 +1CO 14:36!6 +1CO 14:36!7 +1CO 14:36!8 +1CO 14:36!9 +1CO 14:36!10 +1CO 14:36!11 +1CO 14:36!12 +1CO 14:36!13 +1CO 14:37!1 +1CO 14:37!2 +1CO 14:37!3 +1CO 14:37!5 +1CO 14:37!4 +1CO 14:37!6 +1CO 14:37!7 +1CO 14:37!8 +1CO 14:37!9 +1CO 14:37!10 +1CO 14:37!11 +1CO 14:37!12 +1CO 14:37!13 +1CO 14:37!15 +1CO 14:37!14 +1CO 14:38!2 +1CO 14:38!1 +1CO 14:38!3 +1CO 14:38!4 +1CO 14:38!5 +1CO 14:39!1 +1CO 14:39!2 +1CO 14:39!3 +1CO 14:39!4 +1CO 14:39!5 +1CO 14:39!6 +1CO 14:39!7 +1CO 14:39!8 +1CO 14:39!9 +1CO 14:39!12 +1CO 14:39!10 +1CO 14:39!11 +1CO 14:40!2 +1CO 14:40!1 +1CO 14:40!3 +1CO 14:40!4 +1CO 14:40!5 +1CO 14:40!6 +1CO 14:40!7 +1CO 15:1!2 +1CO 15:1!4 +1CO 15:1!1 +1CO 15:1!3 +1CO 15:1!5 +1CO 15:1!6 +1CO 15:1!7 +1CO 15:1!8 +1CO 15:1!9 +1CO 15:1!10 +1CO 15:1!11 +1CO 15:1!12 +1CO 15:1!13 +1CO 15:1!14 +1CO 15:1!15 +1CO 15:1!16 +1CO 15:2!1 +1CO 15:2!2 +1CO 15:2!3 +1CO 15:2!4 +1CO 15:2!5 +1CO 15:2!6 +1CO 15:2!7 +1CO 15:2!8 +1CO 15:2!9 +1CO 15:2!10 +1CO 15:2!11 +1CO 15:2!12 +1CO 15:2!13 +1CO 15:2!14 +1CO 15:2!15 +1CO 15:3!2 +1CO 15:3!1 +1CO 15:3!3 +1CO 15:3!4 +1CO 15:3!5 +1CO 15:3!6 +1CO 15:3!7 +1CO 15:3!8 +1CO 15:3!9 +1CO 15:3!10 +1CO 15:3!11 +1CO 15:3!12 +1CO 15:3!13 +1CO 15:3!14 +1CO 15:3!15 +1CO 15:3!16 +1CO 15:3!17 +1CO 15:3!18 +1CO 15:4!1 +1CO 15:4!2 +1CO 15:4!3 +1CO 15:4!4 +1CO 15:4!5 +1CO 15:4!6 +1CO 15:4!7 +1CO 15:4!8 +1CO 15:4!9 +1CO 15:4!10 +1CO 15:4!11 +1CO 15:4!12 +1CO 15:4!13 +1CO 15:5!1 +1CO 15:5!2 +1CO 15:5!3 +1CO 15:5!4 +1CO 15:5!5 +1CO 15:5!6 +1CO 15:5!7 +1CO 15:6!1 +1CO 15:6!2 +1CO 15:6!3 +1CO 15:6!4 +1CO 15:6!5 +1CO 15:6!6 +1CO 15:6!7 +1CO 15:6!8 +1CO 15:6!9 +1CO 15:6!10 +1CO 15:6!11 +1CO 15:6!12 +1CO 15:6!13 +1CO 15:6!15 +1CO 15:6!14 +1CO 15:6!16 +1CO 15:7!1 +1CO 15:7!2 +1CO 15:7!3 +1CO 15:7!4 +1CO 15:7!5 +1CO 15:7!6 +1CO 15:7!7 +1CO 15:8!2 +1CO 15:8!1 +1CO 15:8!3 +1CO 15:8!7 +1CO 15:8!8 +1CO 15:8!4 +1CO 15:8!5 +1CO 15:8!6 +1CO 15:9!2 +1CO 15:9!1 +1CO 15:9!3 +1CO 15:9!4 +1CO 15:9!5 +1CO 15:9!6 +1CO 15:9!7 +1CO 15:9!8 +1CO 15:9!9 +1CO 15:9!10 +1CO 15:9!11 +1CO 15:9!12 +1CO 15:9!13 +1CO 15:9!14 +1CO 15:9!15 +1CO 15:9!16 +1CO 15:9!17 +1CO 15:9!18 +1CO 15:9!19 +1CO 15:10!2 +1CO 15:10!1 +1CO 15:10!3 +1CO 15:10!4 +1CO 15:10!5 +1CO 15:10!6 +1CO 15:10!7 +1CO 15:10!8 +1CO 15:10!9 +1CO 15:10!10 +1CO 15:10!11 +1CO 15:10!12 +1CO 15:10!13 +1CO 15:10!14 +1CO 15:10!15 +1CO 15:10!16 +1CO 15:10!17 +1CO 15:10!18 +1CO 15:10!19 +1CO 15:10!20 +1CO 15:10!21 +1CO 15:10!24 +1CO 15:10!22 +1CO 15:10!23 +1CO 15:10!25 +1CO 15:10!26 +1CO 15:10!27 +1CO 15:10!28 +1CO 15:10!29 +1CO 15:10!30 +1CO 15:10!31 +1CO 15:11!2 +1CO 15:11!1 +1CO 15:11!3 +1CO 15:11!4 +1CO 15:11!5 +1CO 15:11!6 +1CO 15:11!7 +1CO 15:11!8 +1CO 15:11!9 +1CO 15:11!10 +1CO 15:12!2 +1CO 15:12!1 +1CO 15:12!3 +1CO 15:12!4 +1CO 15:12!5 +1CO 15:12!6 +1CO 15:12!7 +1CO 15:12!8 +1CO 15:12!9 +1CO 15:12!10 +1CO 15:12!11 +1CO 15:12!12 +1CO 15:12!13 +1CO 15:12!14 +1CO 15:12!15 +1CO 15:12!16 +1CO 15:12!17 +1CO 15:12!18 +1CO 15:13!2 +1CO 15:13!1 +1CO 15:13!3 +1CO 15:13!4 +1CO 15:13!5 +1CO 15:13!6 +1CO 15:13!7 +1CO 15:13!8 +1CO 15:13!9 +1CO 15:14!2 +1CO 15:14!1 +1CO 15:14!3 +1CO 15:14!4 +1CO 15:14!5 +1CO 15:14!7 +1CO 15:14!6 +1CO 15:14!8 +1CO 15:14!9 +1CO 15:14!10 +1CO 15:14!11 +1CO 15:14!12 +1CO 15:14!13 +1CO 15:14!14 +1CO 15:14!15 +1CO 15:15!2 +1CO 15:15!1 +1CO 15:15!3 +1CO 15:15!4 +1CO 15:15!5 +1CO 15:15!6 +1CO 15:15!7 +1CO 15:15!8 +1CO 15:15!9 +1CO 15:15!10 +1CO 15:15!11 +1CO 15:15!12 +1CO 15:15!13 +1CO 15:15!14 +1CO 15:15!15 +1CO 15:15!16 +1CO 15:15!17 +1CO 15:15!18 +1CO 15:15!19 +1CO 15:15!20 +1CO 15:15!21 +1CO 15:15!22 +1CO 15:15!23 +1CO 15:16!2 +1CO 15:16!1 +1CO 15:16!3 +1CO 15:16!4 +1CO 15:16!5 +1CO 15:16!6 +1CO 15:16!7 +1CO 15:16!8 +1CO 15:17!2 +1CO 15:17!1 +1CO 15:17!3 +1CO 15:17!4 +1CO 15:17!5 +1CO 15:17!6 +1CO 15:17!7 +1CO 15:17!8 +1CO 15:17!9 +1CO 15:17!10 +1CO 15:17!11 +1CO 15:17!12 +1CO 15:17!13 +1CO 15:17!14 +1CO 15:17!15 +1CO 15:18!1 +1CO 15:18!2 +1CO 15:18!3 +1CO 15:18!4 +1CO 15:18!5 +1CO 15:18!6 +1CO 15:18!7 +1CO 15:19!1 +1CO 15:19!2 +1CO 15:19!3 +1CO 15:19!4 +1CO 15:19!5 +1CO 15:19!6 +1CO 15:19!7 +1CO 15:19!8 +1CO 15:19!9 +1CO 15:19!10 +1CO 15:19!11 +1CO 15:19!12 +1CO 15:19!13 +1CO 15:19!14 +1CO 15:20!2 +1CO 15:20!1 +1CO 15:20!4 +1CO 15:20!5 +1CO 15:20!6 +1CO 15:20!3 +1CO 15:20!7 +1CO 15:20!8 +1CO 15:20!9 +1CO 15:21!2 +1CO 15:21!1 +1CO 15:21!3 +1CO 15:21!4 +1CO 15:21!5 +1CO 15:21!6 +1CO 15:21!7 +1CO 15:21!8 +1CO 15:21!9 +1CO 15:21!10 +1CO 15:22!2 +1CO 15:22!1 +1CO 15:22!3 +1CO 15:22!4 +1CO 15:22!5 +1CO 15:22!6 +1CO 15:22!7 +1CO 15:22!8 +1CO 15:22!9 +1CO 15:22!10 +1CO 15:22!11 +1CO 15:22!12 +1CO 15:22!13 +1CO 15:22!14 +1CO 15:23!2 +1CO 15:23!1 +1CO 15:23!3 +1CO 15:23!4 +1CO 15:23!5 +1CO 15:23!6 +1CO 15:23!7 +1CO 15:23!8 +1CO 15:23!9 +1CO 15:23!10 +1CO 15:23!11 +1CO 15:23!12 +1CO 15:23!13 +1CO 15:23!14 +1CO 15:23!15 +1CO 15:23!16 +1CO 15:24!1 +1CO 15:24!2 +1CO 15:24!3 +1CO 15:24!4 +1CO 15:24!5 +1CO 15:24!6 +1CO 15:24!7 +1CO 15:24!8 +1CO 15:24!9 +1CO 15:24!10 +1CO 15:24!11 +1CO 15:24!12 +1CO 15:24!13 +1CO 15:24!14 +1CO 15:24!15 +1CO 15:24!16 +1CO 15:24!17 +1CO 15:24!18 +1CO 15:24!19 +1CO 15:24!20 +1CO 15:25!2 +1CO 15:25!1 +1CO 15:25!3 +1CO 15:25!4 +1CO 15:25!5 +1CO 15:25!6 +1CO 15:25!7 +1CO 15:25!8 +1CO 15:25!9 +1CO 15:25!10 +1CO 15:25!11 +1CO 15:25!12 +1CO 15:25!13 +1CO 15:25!14 +1CO 15:26!1 +1CO 15:26!2 +1CO 15:26!4 +1CO 15:26!5 +1CO 15:26!3 +1CO 15:27!2 +1CO 15:27!1 +1CO 15:27!3 +1CO 15:27!4 +1CO 15:27!5 +1CO 15:27!6 +1CO 15:27!7 +1CO 15:27!9 +1CO 15:27!8 +1CO 15:27!10 +1CO 15:27!11 +1CO 15:27!12 +1CO 15:27!13 +1CO 15:27!14 +1CO 15:27!15 +1CO 15:27!16 +1CO 15:27!17 +1CO 15:27!18 +1CO 15:27!19 +1CO 15:27!20 +1CO 15:27!21 +1CO 15:28!2 +1CO 15:28!1 +1CO 15:28!3 +1CO 15:28!4 +1CO 15:28!5 +1CO 15:28!6 +1CO 15:28!7 +1CO 15:28!8 +1CO 15:28!9 +1CO 15:28!10 +1CO 15:28!11 +1CO 15:28!12 +1CO 15:28!13 +1CO 15:28!14 +1CO 15:28!15 +1CO 15:28!16 +1CO 15:28!17 +1CO 15:28!18 +1CO 15:28!19 +1CO 15:28!20 +1CO 15:28!21 +1CO 15:28!22 +1CO 15:28!23 +1CO 15:28!24 +1CO 15:29!1 +1CO 15:29!2 +1CO 15:29!3 +1CO 15:29!4 +1CO 15:29!5 +1CO 15:29!6 +1CO 15:29!7 +1CO 15:29!8 +1CO 15:29!9 +1CO 15:29!10 +1CO 15:29!11 +1CO 15:29!12 +1CO 15:29!13 +1CO 15:29!14 +1CO 15:29!15 +1CO 15:29!16 +1CO 15:29!17 +1CO 15:29!18 +1CO 15:30!1 +1CO 15:30!2 +1CO 15:30!3 +1CO 15:30!4 +1CO 15:30!5 +1CO 15:30!6 +1CO 15:31!8 +1CO 15:31!1 +1CO 15:31!2 +1CO 15:31!3 +1CO 15:31!4 +1CO 15:31!5 +1CO 15:31!6 +1CO 15:31!7 +1CO 15:31!9 +1CO 15:31!10 +1CO 15:31!11 +1CO 15:31!12 +1CO 15:31!13 +1CO 15:31!14 +1CO 15:31!15 +1CO 15:31!16 +1CO 15:32!1 +1CO 15:32!2 +1CO 15:32!3 +1CO 15:32!4 +1CO 15:32!5 +1CO 15:32!6 +1CO 15:32!7 +1CO 15:32!8 +1CO 15:32!9 +1CO 15:32!10 +1CO 15:32!11 +1CO 15:32!12 +1CO 15:32!13 +1CO 15:32!14 +1CO 15:32!15 +1CO 15:32!16 +1CO 15:32!17 +1CO 15:32!19 +1CO 15:32!18 +1CO 15:32!20 +1CO 15:33!1 +1CO 15:33!2 +1CO 15:33!3 +1CO 15:33!4 +1CO 15:33!5 +1CO 15:33!6 +1CO 15:33!7 +1CO 15:34!1 +1CO 15:34!2 +1CO 15:34!3 +1CO 15:34!4 +1CO 15:34!5 +1CO 15:34!7 +1CO 15:34!6 +1CO 15:34!8 +1CO 15:34!9 +1CO 15:34!10 +1CO 15:34!11 +1CO 15:34!12 +1CO 15:34!13 +1CO 15:34!14 +1CO 15:35!1 +1CO 15:35!2 +1CO 15:35!3 +1CO 15:35!4 +1CO 15:35!5 +1CO 15:35!6 +1CO 15:35!7 +1CO 15:35!9 +1CO 15:35!8 +1CO 15:35!10 +1CO 15:35!11 +1CO 15:36!1 +1CO 15:36!3 +1CO 15:36!2 +1CO 15:36!4 +1CO 15:36!5 +1CO 15:36!6 +1CO 15:36!7 +1CO 15:36!8 +1CO 15:36!9 +1CO 15:37!1 +1CO 15:37!2 +1CO 15:37!3 +1CO 15:37!4 +1CO 15:37!5 +1CO 15:37!6 +1CO 15:37!7 +1CO 15:37!8 +1CO 15:37!9 +1CO 15:37!10 +1CO 15:37!11 +1CO 15:37!12 +1CO 15:37!13 +1CO 15:37!14 +1CO 15:37!15 +1CO 15:37!16 +1CO 15:37!17 +1CO 15:37!18 +1CO 15:37!19 +1CO 15:38!2 +1CO 15:38!1 +1CO 15:38!3 +1CO 15:38!4 +1CO 15:38!5 +1CO 15:38!6 +1CO 15:38!7 +1CO 15:38!8 +1CO 15:38!9 +1CO 15:38!10 +1CO 15:38!11 +1CO 15:38!12 +1CO 15:38!13 +1CO 15:38!14 +1CO 15:39!1 +1CO 15:39!2 +1CO 15:39!3 +1CO 15:39!4 +1CO 15:39!5 +1CO 15:39!6 +1CO 15:39!7 +1CO 15:39!9 +1CO 15:39!8 +1CO 15:39!10 +1CO 15:39!12 +1CO 15:39!11 +1CO 15:39!13 +1CO 15:39!14 +1CO 15:39!16 +1CO 15:39!15 +1CO 15:39!17 +1CO 15:39!18 +1CO 15:39!20 +1CO 15:39!19 +1CO 15:39!21 +1CO 15:40!1 +1CO 15:40!2 +1CO 15:40!3 +1CO 15:40!4 +1CO 15:40!5 +1CO 15:40!6 +1CO 15:40!7 +1CO 15:40!9 +1CO 15:40!8 +1CO 15:40!10 +1CO 15:40!11 +1CO 15:40!12 +1CO 15:40!13 +1CO 15:40!15 +1CO 15:40!14 +1CO 15:40!16 +1CO 15:40!17 +1CO 15:40!18 +1CO 15:41!1 +1CO 15:41!2 +1CO 15:41!3 +1CO 15:41!4 +1CO 15:41!5 +1CO 15:41!6 +1CO 15:41!7 +1CO 15:41!8 +1CO 15:41!9 +1CO 15:41!10 +1CO 15:41!11 +1CO 15:41!13 +1CO 15:41!12 +1CO 15:41!14 +1CO 15:41!15 +1CO 15:41!16 +1CO 15:41!17 +1CO 15:42!1 +1CO 15:42!2 +1CO 15:42!3 +1CO 15:42!4 +1CO 15:42!5 +1CO 15:42!6 +1CO 15:42!7 +1CO 15:42!8 +1CO 15:42!9 +1CO 15:42!10 +1CO 15:42!11 +1CO 15:42!12 +1CO 15:43!1 +1CO 15:43!2 +1CO 15:43!3 +1CO 15:43!4 +1CO 15:43!5 +1CO 15:43!6 +1CO 15:43!7 +1CO 15:43!8 +1CO 15:43!9 +1CO 15:43!10 +1CO 15:43!11 +1CO 15:43!12 +1CO 15:44!1 +1CO 15:44!2 +1CO 15:44!3 +1CO 15:44!4 +1CO 15:44!5 +1CO 15:44!6 +1CO 15:44!7 +1CO 15:44!8 +1CO 15:44!9 +1CO 15:44!10 +1CO 15:44!11 +1CO 15:44!12 +1CO 15:44!13 +1CO 15:45!1 +1CO 15:45!2 +1CO 15:45!3 +1CO 15:45!4 +1CO 15:45!5 +1CO 15:45!6 +1CO 15:45!7 +1CO 15:45!8 +1CO 15:45!9 +1CO 15:45!10 +1CO 15:45!11 +1CO 15:45!12 +1CO 15:45!13 +1CO 15:45!14 +1CO 15:45!15 +1CO 15:45!16 +1CO 15:45!17 +1CO 15:46!1 +1CO 15:46!2 +1CO 15:46!3 +1CO 15:46!4 +1CO 15:46!5 +1CO 15:46!6 +1CO 15:46!7 +1CO 15:46!8 +1CO 15:46!9 +1CO 15:46!10 +1CO 15:46!11 +1CO 15:47!1 +1CO 15:47!2 +1CO 15:47!3 +1CO 15:47!4 +1CO 15:47!5 +1CO 15:47!6 +1CO 15:47!7 +1CO 15:47!8 +1CO 15:47!9 +1CO 15:47!10 +1CO 15:47!11 +1CO 15:48!1 +1CO 15:48!2 +1CO 15:48!3 +1CO 15:48!4 +1CO 15:48!5 +1CO 15:48!6 +1CO 15:48!7 +1CO 15:48!8 +1CO 15:48!9 +1CO 15:48!10 +1CO 15:48!11 +1CO 15:48!12 +1CO 15:48!13 +1CO 15:48!14 +1CO 15:48!15 +1CO 15:49!1 +1CO 15:49!2 +1CO 15:49!3 +1CO 15:49!4 +1CO 15:49!5 +1CO 15:49!6 +1CO 15:49!7 +1CO 15:49!8 +1CO 15:49!9 +1CO 15:49!10 +1CO 15:49!11 +1CO 15:49!12 +1CO 15:49!13 +1CO 15:50!2 +1CO 15:50!1 +1CO 15:50!3 +1CO 15:50!4 +1CO 15:50!5 +1CO 15:50!6 +1CO 15:50!7 +1CO 15:50!8 +1CO 15:50!9 +1CO 15:50!10 +1CO 15:50!11 +1CO 15:50!12 +1CO 15:50!13 +1CO 15:50!14 +1CO 15:50!15 +1CO 15:50!16 +1CO 15:50!17 +1CO 15:50!18 +1CO 15:50!19 +1CO 15:51!1 +1CO 15:51!2 +1CO 15:51!3 +1CO 15:51!4 +1CO 15:51!5 +1CO 15:51!6 +1CO 15:51!7 +1CO 15:51!9 +1CO 15:51!8 +1CO 15:51!10 +1CO 15:52!1 +1CO 15:52!2 +1CO 15:52!3 +1CO 15:52!4 +1CO 15:52!5 +1CO 15:52!6 +1CO 15:52!7 +1CO 15:52!8 +1CO 15:52!9 +1CO 15:52!11 +1CO 15:52!10 +1CO 15:52!12 +1CO 15:52!13 +1CO 15:52!14 +1CO 15:52!15 +1CO 15:52!16 +1CO 15:52!17 +1CO 15:52!18 +1CO 15:52!19 +1CO 15:53!2 +1CO 15:53!1 +1CO 15:53!3 +1CO 15:53!4 +1CO 15:53!5 +1CO 15:53!6 +1CO 15:53!7 +1CO 15:53!8 +1CO 15:53!9 +1CO 15:53!10 +1CO 15:53!11 +1CO 15:53!12 +1CO 15:53!13 +1CO 15:54!2 +1CO 15:54!1 +1CO 15:54!3 +1CO 15:54!4 +1CO 15:54!5 +1CO 15:54!6 +1CO 15:54!7 +1CO 15:54!8 +1CO 15:54!9 +1CO 15:54!10 +1CO 15:54!11 +1CO 15:54!12 +1CO 15:54!13 +1CO 15:54!14 +1CO 15:54!15 +1CO 15:54!16 +1CO 15:54!17 +1CO 15:54!18 +1CO 15:54!19 +1CO 15:54!20 +1CO 15:54!21 +1CO 15:54!22 +1CO 15:54!23 +1CO 15:54!24 +1CO 15:55!3 +1CO 15:55!1 +1CO 15:55!2 +1CO 15:55!4 +1CO 15:55!5 +1CO 15:55!8 +1CO 15:55!6 +1CO 15:55!7 +1CO 15:55!9 +1CO 15:55!10 +1CO 15:56!2 +1CO 15:56!1 +1CO 15:56!3 +1CO 15:56!4 +1CO 15:56!5 +1CO 15:56!6 +1CO 15:56!7 +1CO 15:56!9 +1CO 15:56!8 +1CO 15:56!10 +1CO 15:56!11 +1CO 15:56!12 +1CO 15:56!13 +1CO 15:56!14 +1CO 15:57!2 +1CO 15:57!4 +1CO 15:57!1 +1CO 15:57!3 +1CO 15:57!5 +1CO 15:57!6 +1CO 15:57!7 +1CO 15:57!8 +1CO 15:57!9 +1CO 15:57!10 +1CO 15:57!11 +1CO 15:57!12 +1CO 15:57!13 +1CO 15:57!14 +1CO 15:57!15 +1CO 15:58!1 +1CO 15:58!2 +1CO 15:58!3 +1CO 15:58!4 +1CO 15:58!6 +1CO 15:58!5 +1CO 15:58!7 +1CO 15:58!8 +1CO 15:58!9 +1CO 15:58!10 +1CO 15:58!11 +1CO 15:58!12 +1CO 15:58!13 +1CO 15:58!14 +1CO 15:58!15 +1CO 15:58!16 +1CO 15:58!17 +1CO 15:58!18 +1CO 15:58!19 +1CO 15:58!20 +1CO 15:58!21 +1CO 15:58!22 +1CO 15:58!23 +1CO 15:58!24 +1CO 16:1!2 +1CO 16:1!1 +1CO 16:1!3 +1CO 16:1!4 +1CO 16:1!5 +1CO 16:1!6 +1CO 16:1!7 +1CO 16:1!8 +1CO 16:1!9 +1CO 16:1!10 +1CO 16:1!11 +1CO 16:1!12 +1CO 16:1!13 +1CO 16:1!14 +1CO 16:1!15 +1CO 16:1!16 +1CO 16:1!17 +1CO 16:1!18 +1CO 16:2!1 +1CO 16:2!2 +1CO 16:2!3 +1CO 16:2!4 +1CO 16:2!5 +1CO 16:2!6 +1CO 16:2!7 +1CO 16:2!8 +1CO 16:2!9 +1CO 16:2!11 +1CO 16:2!12 +1CO 16:2!10 +1CO 16:2!13 +1CO 16:2!14 +1CO 16:2!15 +1CO 16:2!16 +1CO 16:2!17 +1CO 16:2!18 +1CO 16:2!19 +1CO 16:2!20 +1CO 16:3!2 +1CO 16:3!1 +1CO 16:3!3 +1CO 16:3!5 +1CO 16:3!4 +1CO 16:3!6 +1CO 16:3!7 +1CO 16:3!8 +1CO 16:3!9 +1CO 16:3!10 +1CO 16:3!11 +1CO 16:3!12 +1CO 16:3!13 +1CO 16:3!14 +1CO 16:3!15 +1CO 16:3!16 +1CO 16:4!2 +1CO 16:4!1 +1CO 16:4!3 +1CO 16:4!4 +1CO 16:4!5 +1CO 16:4!6 +1CO 16:4!7 +1CO 16:4!8 +1CO 16:4!9 +1CO 16:4!10 +1CO 16:5!2 +1CO 16:5!1 +1CO 16:5!3 +1CO 16:5!4 +1CO 16:5!5 +1CO 16:5!6 +1CO 16:5!7 +1CO 16:5!9 +1CO 16:5!8 +1CO 16:5!10 +1CO 16:6!3 +1CO 16:6!1 +1CO 16:6!2 +1CO 16:6!4 +1CO 16:6!5 +1CO 16:6!6 +1CO 16:6!7 +1CO 16:6!8 +1CO 16:6!9 +1CO 16:6!10 +1CO 16:6!11 +1CO 16:6!12 +1CO 16:6!14 +1CO 16:6!13 +1CO 16:6!15 +1CO 16:7!3 +1CO 16:7!1 +1CO 16:7!2 +1CO 16:7!4 +1CO 16:7!5 +1CO 16:7!6 +1CO 16:7!7 +1CO 16:7!8 +1CO 16:7!10 +1CO 16:7!9 +1CO 16:7!11 +1CO 16:7!12 +1CO 16:7!13 +1CO 16:7!14 +1CO 16:7!15 +1CO 16:7!16 +1CO 16:7!17 +1CO 16:7!18 +1CO 16:7!19 +1CO 16:8!2 +1CO 16:8!1 +1CO 16:8!3 +1CO 16:8!4 +1CO 16:8!5 +1CO 16:8!6 +1CO 16:8!7 +1CO 16:9!2 +1CO 16:9!3 +1CO 16:9!4 +1CO 16:9!1 +1CO 16:9!5 +1CO 16:9!6 +1CO 16:9!7 +1CO 16:9!8 +1CO 16:9!9 +1CO 16:9!10 +1CO 16:10!2 +1CO 16:10!1 +1CO 16:10!3 +1CO 16:10!4 +1CO 16:10!5 +1CO 16:10!6 +1CO 16:10!7 +1CO 16:10!8 +1CO 16:10!9 +1CO 16:10!10 +1CO 16:10!12 +1CO 16:10!11 +1CO 16:10!13 +1CO 16:10!14 +1CO 16:10!15 +1CO 16:10!16 +1CO 16:10!17 +1CO 16:11!3 +1CO 16:11!1 +1CO 16:11!2 +1CO 16:11!4 +1CO 16:11!5 +1CO 16:11!7 +1CO 16:11!6 +1CO 16:11!8 +1CO 16:11!9 +1CO 16:11!10 +1CO 16:11!11 +1CO 16:11!12 +1CO 16:11!13 +1CO 16:11!14 +1CO 16:11!16 +1CO 16:11!15 +1CO 16:11!17 +1CO 16:11!18 +1CO 16:11!19 +1CO 16:11!20 +1CO 16:12!2 +1CO 16:12!1 +1CO 16:12!3 +1CO 16:12!4 +1CO 16:12!5 +1CO 16:12!6 +1CO 16:12!7 +1CO 16:12!8 +1CO 16:12!9 +1CO 16:12!10 +1CO 16:12!11 +1CO 16:12!12 +1CO 16:12!13 +1CO 16:12!14 +1CO 16:12!15 +1CO 16:12!16 +1CO 16:12!17 +1CO 16:12!18 +1CO 16:12!19 +1CO 16:12!20 +1CO 16:12!21 +1CO 16:12!22 +1CO 16:12!23 +1CO 16:12!25 +1CO 16:12!24 +1CO 16:12!26 +1CO 16:12!27 +1CO 16:13!1 +1CO 16:13!2 +1CO 16:13!3 +1CO 16:13!4 +1CO 16:13!5 +1CO 16:13!6 +1CO 16:13!7 +1CO 16:14!1 +1CO 16:14!2 +1CO 16:14!3 +1CO 16:14!4 +1CO 16:14!5 +1CO 16:15!2 +1CO 16:15!1 +1CO 16:15!3 +1CO 16:15!4 +1CO 16:15!5 +1CO 16:15!6 +1CO 16:15!7 +1CO 16:15!8 +1CO 16:15!9 +1CO 16:15!10 +1CO 16:15!11 +1CO 16:15!12 +1CO 16:15!13 +1CO 16:15!14 +1CO 16:15!15 +1CO 16:15!16 +1CO 16:15!17 +1CO 16:15!18 +1CO 16:15!19 +1CO 16:15!20 +1CO 16:16!1 +1CO 16:16!2 +1CO 16:16!3 +1CO 16:16!4 +1CO 16:16!5 +1CO 16:16!6 +1CO 16:16!7 +1CO 16:16!8 +1CO 16:16!9 +1CO 16:16!10 +1CO 16:16!11 +1CO 16:16!12 +1CO 16:17!2 +1CO 16:17!1 +1CO 16:17!3 +1CO 16:17!4 +1CO 16:17!5 +1CO 16:17!6 +1CO 16:17!7 +1CO 16:17!8 +1CO 16:17!9 +1CO 16:17!10 +1CO 16:17!11 +1CO 16:17!12 +1CO 16:17!13 +1CO 16:17!14 +1CO 16:17!15 +1CO 16:17!16 +1CO 16:18!2 +1CO 16:18!1 +1CO 16:18!3 +1CO 16:18!4 +1CO 16:18!5 +1CO 16:18!6 +1CO 16:18!7 +1CO 16:18!8 +1CO 16:18!10 +1CO 16:18!9 +1CO 16:18!11 +1CO 16:18!12 +1CO 16:19!1 +1CO 16:19!2 +1CO 16:19!3 +1CO 16:19!4 +1CO 16:19!5 +1CO 16:19!6 +1CO 16:19!7 +1CO 16:19!8 +1CO 16:19!9 +1CO 16:19!10 +1CO 16:19!11 +1CO 16:19!12 +1CO 16:19!13 +1CO 16:19!14 +1CO 16:19!15 +1CO 16:19!16 +1CO 16:19!17 +1CO 16:19!18 +1CO 16:19!19 +1CO 16:19!20 +1CO 16:20!1 +1CO 16:20!2 +1CO 16:20!3 +1CO 16:20!4 +1CO 16:20!5 +1CO 16:20!6 +1CO 16:20!7 +1CO 16:20!8 +1CO 16:20!9 +1CO 16:20!10 +1CO 16:21!1 +1CO 16:21!2 +1CO 16:21!3 +1CO 16:21!4 +1CO 16:21!5 +1CO 16:21!6 +1CO 16:22!1 +1CO 16:22!2 +1CO 16:22!3 +1CO 16:22!4 +1CO 16:22!5 +1CO 16:22!6 +1CO 16:22!7 +1CO 16:22!8 +1CO 16:22!9 +1CO 16:22!10 +1CO 16:23!1 +1CO 16:23!2 +1CO 16:23!3 +1CO 16:23!4 +1CO 16:23!5 +1CO 16:23!6 +1CO 16:23!7 +1CO 16:24!1 +1CO 16:24!2 +1CO 16:24!3 +1CO 16:24!4 +1CO 16:24!5 +1CO 16:24!6 +1CO 16:24!7 +1CO 16:24!8 +1CO 16:24!9 +2CO 1:1!1 +2CO 1:1!2 +2CO 1:1!3 +2CO 1:1!4 +2CO 1:1!5 +2CO 1:1!6 +2CO 1:1!7 +2CO 1:1!8 +2CO 1:1!9 +2CO 1:1!10 +2CO 1:1!11 +2CO 1:1!12 +2CO 1:1!13 +2CO 1:1!14 +2CO 1:1!15 +2CO 1:1!16 +2CO 1:1!17 +2CO 1:1!18 +2CO 1:1!19 +2CO 1:1!20 +2CO 1:1!21 +2CO 1:1!22 +2CO 1:1!23 +2CO 1:1!24 +2CO 1:1!25 +2CO 1:1!26 +2CO 1:1!27 +2CO 1:1!28 +2CO 1:1!29 +2CO 1:2!2 +2CO 1:2!1 +2CO 1:2!3 +2CO 1:2!4 +2CO 1:2!5 +2CO 1:2!6 +2CO 1:2!7 +2CO 1:2!8 +2CO 1:2!9 +2CO 1:2!10 +2CO 1:2!11 +2CO 1:2!12 +2CO 1:3!1 +2CO 1:3!2 +2CO 1:3!3 +2CO 1:3!4 +2CO 1:3!5 +2CO 1:3!6 +2CO 1:3!7 +2CO 1:3!8 +2CO 1:3!9 +2CO 1:3!10 +2CO 1:3!11 +2CO 1:3!12 +2CO 1:3!13 +2CO 1:3!14 +2CO 1:3!15 +2CO 1:3!16 +2CO 1:3!17 +2CO 1:3!18 +2CO 1:4!1 +2CO 1:4!2 +2CO 1:4!3 +2CO 1:4!4 +2CO 1:4!5 +2CO 1:4!6 +2CO 1:4!7 +2CO 1:4!8 +2CO 1:4!9 +2CO 1:4!10 +2CO 1:4!11 +2CO 1:4!12 +2CO 1:4!13 +2CO 1:4!14 +2CO 1:4!15 +2CO 1:4!16 +2CO 1:4!17 +2CO 1:4!18 +2CO 1:4!19 +2CO 1:4!20 +2CO 1:4!21 +2CO 1:4!22 +2CO 1:4!23 +2CO 1:4!24 +2CO 1:4!25 +2CO 1:4!26 +2CO 1:5!1 +2CO 1:5!2 +2CO 1:5!3 +2CO 1:5!4 +2CO 1:5!5 +2CO 1:5!6 +2CO 1:5!7 +2CO 1:5!8 +2CO 1:5!9 +2CO 1:5!10 +2CO 1:5!11 +2CO 1:5!12 +2CO 1:5!13 +2CO 1:5!14 +2CO 1:5!15 +2CO 1:5!16 +2CO 1:5!17 +2CO 1:5!18 +2CO 1:6!2 +2CO 1:6!1 +2CO 1:6!3 +2CO 1:6!4 +2CO 1:6!5 +2CO 1:6!6 +2CO 1:6!7 +2CO 1:6!8 +2CO 1:6!9 +2CO 1:6!10 +2CO 1:6!11 +2CO 1:6!12 +2CO 1:6!13 +2CO 1:6!14 +2CO 1:6!15 +2CO 1:6!16 +2CO 1:6!17 +2CO 1:6!18 +2CO 1:6!19 +2CO 1:6!20 +2CO 1:6!21 +2CO 1:6!22 +2CO 1:6!23 +2CO 1:6!24 +2CO 1:6!25 +2CO 1:6!26 +2CO 1:7!1 +2CO 1:7!2 +2CO 1:7!3 +2CO 1:7!4 +2CO 1:7!5 +2CO 1:7!6 +2CO 1:7!7 +2CO 1:7!8 +2CO 1:7!9 +2CO 1:7!10 +2CO 1:7!12 +2CO 1:7!11 +2CO 1:7!13 +2CO 1:7!14 +2CO 1:7!15 +2CO 1:7!16 +2CO 1:7!17 +2CO 1:7!18 +2CO 1:8!2 +2CO 1:8!6 +2CO 1:8!1 +2CO 1:8!3 +2CO 1:8!4 +2CO 1:8!5 +2CO 1:8!7 +2CO 1:8!8 +2CO 1:8!9 +2CO 1:8!10 +2CO 1:8!11 +2CO 1:8!12 +2CO 1:8!13 +2CO 1:8!14 +2CO 1:8!15 +2CO 1:8!16 +2CO 1:8!17 +2CO 1:8!18 +2CO 1:8!19 +2CO 1:8!20 +2CO 1:8!21 +2CO 1:8!22 +2CO 1:8!23 +2CO 1:8!24 +2CO 1:8!25 +2CO 1:8!26 +2CO 1:8!27 +2CO 1:9!1 +2CO 1:9!2 +2CO 1:9!3 +2CO 1:9!4 +2CO 1:9!5 +2CO 1:9!6 +2CO 1:9!7 +2CO 1:9!8 +2CO 1:9!9 +2CO 1:9!10 +2CO 1:9!11 +2CO 1:9!12 +2CO 1:9!13 +2CO 1:9!14 +2CO 1:9!15 +2CO 1:9!16 +2CO 1:9!17 +2CO 1:9!18 +2CO 1:9!19 +2CO 1:9!20 +2CO 1:9!21 +2CO 1:9!22 +2CO 1:9!23 +2CO 1:10!1 +2CO 1:10!2 +2CO 1:10!3 +2CO 1:10!4 +2CO 1:10!5 +2CO 1:10!6 +2CO 1:10!7 +2CO 1:10!8 +2CO 1:10!9 +2CO 1:10!10 +2CO 1:10!11 +2CO 1:10!12 +2CO 1:10!13 +2CO 1:10!14 +2CO 1:10!15 +2CO 1:11!1 +2CO 1:11!2 +2CO 1:11!3 +2CO 1:11!4 +2CO 1:11!5 +2CO 1:11!6 +2CO 1:11!7 +2CO 1:11!8 +2CO 1:11!9 +2CO 1:11!10 +2CO 1:11!11 +2CO 1:11!12 +2CO 1:11!13 +2CO 1:11!14 +2CO 1:11!15 +2CO 1:11!16 +2CO 1:11!17 +2CO 1:11!18 +2CO 1:11!19 +2CO 1:11!20 +2CO 1:12!2 +2CO 1:12!1 +2CO 1:12!3 +2CO 1:12!4 +2CO 1:12!5 +2CO 1:12!6 +2CO 1:12!7 +2CO 1:12!8 +2CO 1:12!9 +2CO 1:12!10 +2CO 1:12!11 +2CO 1:12!12 +2CO 1:12!13 +2CO 1:12!14 +2CO 1:12!15 +2CO 1:12!16 +2CO 1:12!17 +2CO 1:12!18 +2CO 1:12!19 +2CO 1:12!20 +2CO 1:12!21 +2CO 1:12!22 +2CO 1:12!23 +2CO 1:12!24 +2CO 1:12!25 +2CO 1:12!26 +2CO 1:12!27 +2CO 1:12!28 +2CO 1:12!29 +2CO 1:12!30 +2CO 1:12!32 +2CO 1:12!31 +2CO 1:12!33 +2CO 1:12!34 +2CO 1:13!2 +2CO 1:13!4 +2CO 1:13!5 +2CO 1:13!1 +2CO 1:13!3 +2CO 1:13!6 +2CO 1:13!7 +2CO 1:13!8 +2CO 1:13!9 +2CO 1:13!10 +2CO 1:13!11 +2CO 1:13!12 +2CO 1:13!14 +2CO 1:13!13 +2CO 1:13!15 +2CO 1:13!16 +2CO 1:13!17 +2CO 1:13!18 +2CO 1:14!1 +2CO 1:14!2 +2CO 1:14!3 +2CO 1:14!4 +2CO 1:14!5 +2CO 1:14!6 +2CO 1:14!7 +2CO 1:14!8 +2CO 1:14!9 +2CO 1:14!10 +2CO 1:14!11 +2CO 1:14!12 +2CO 1:14!13 +2CO 1:14!14 +2CO 1:14!15 +2CO 1:14!16 +2CO 1:14!17 +2CO 1:14!18 +2CO 1:14!19 +2CO 1:14!20 +2CO 1:14!21 +2CO 1:15!1 +2CO 1:15!2 +2CO 1:15!3 +2CO 1:15!4 +2CO 1:15!5 +2CO 1:15!6 +2CO 1:15!7 +2CO 1:15!8 +2CO 1:15!9 +2CO 1:15!10 +2CO 1:15!11 +2CO 1:15!12 +2CO 1:15!13 +2CO 1:16!1 +2CO 1:16!2 +2CO 1:16!3 +2CO 1:16!4 +2CO 1:16!5 +2CO 1:16!6 +2CO 1:16!7 +2CO 1:16!8 +2CO 1:16!9 +2CO 1:16!10 +2CO 1:16!11 +2CO 1:16!12 +2CO 1:16!13 +2CO 1:16!14 +2CO 1:16!15 +2CO 1:16!16 +2CO 1:16!17 +2CO 1:16!18 +2CO 1:16!19 +2CO 1:16!20 +2CO 1:17!2 +2CO 1:17!1 +2CO 1:17!3 +2CO 1:17!5 +2CO 1:17!4 +2CO 1:17!6 +2CO 1:17!7 +2CO 1:17!8 +2CO 1:17!9 +2CO 1:17!10 +2CO 1:17!11 +2CO 1:17!12 +2CO 1:17!13 +2CO 1:17!14 +2CO 1:17!15 +2CO 1:17!16 +2CO 1:17!17 +2CO 1:17!18 +2CO 1:17!19 +2CO 1:17!20 +2CO 1:17!21 +2CO 1:17!22 +2CO 1:17!23 +2CO 1:17!24 +2CO 1:17!25 +2CO 1:18!2 +2CO 1:18!1 +2CO 1:18!3 +2CO 1:18!4 +2CO 1:18!5 +2CO 1:18!6 +2CO 1:18!7 +2CO 1:18!8 +2CO 1:18!9 +2CO 1:18!10 +2CO 1:18!11 +2CO 1:18!12 +2CO 1:18!13 +2CO 1:18!14 +2CO 1:18!15 +2CO 1:18!16 +2CO 1:19!4 +2CO 1:19!1 +2CO 1:19!2 +2CO 1:19!3 +2CO 1:19!5 +2CO 1:19!6 +2CO 1:19!7 +2CO 1:19!8 +2CO 1:19!9 +2CO 1:19!10 +2CO 1:19!11 +2CO 1:19!12 +2CO 1:19!13 +2CO 1:19!14 +2CO 1:19!15 +2CO 1:19!16 +2CO 1:19!17 +2CO 1:19!18 +2CO 1:19!19 +2CO 1:19!20 +2CO 1:19!21 +2CO 1:19!22 +2CO 1:19!23 +2CO 1:19!24 +2CO 1:19!25 +2CO 1:19!26 +2CO 1:19!27 +2CO 1:19!28 +2CO 1:19!29 +2CO 1:20!2 +2CO 1:20!1 +2CO 1:20!3 +2CO 1:20!4 +2CO 1:20!5 +2CO 1:20!6 +2CO 1:20!7 +2CO 1:20!8 +2CO 1:20!9 +2CO 1:20!10 +2CO 1:20!11 +2CO 1:20!12 +2CO 1:20!13 +2CO 1:20!14 +2CO 1:20!15 +2CO 1:20!16 +2CO 1:20!17 +2CO 1:20!18 +2CO 1:20!19 +2CO 1:20!20 +2CO 1:21!2 +2CO 1:21!1 +2CO 1:21!3 +2CO 1:21!4 +2CO 1:21!5 +2CO 1:21!6 +2CO 1:21!7 +2CO 1:21!8 +2CO 1:21!9 +2CO 1:21!10 +2CO 1:21!11 +2CO 1:21!12 +2CO 1:22!1 +2CO 1:22!2 +2CO 1:22!3 +2CO 1:22!4 +2CO 1:22!5 +2CO 1:22!6 +2CO 1:22!7 +2CO 1:22!8 +2CO 1:22!9 +2CO 1:22!10 +2CO 1:22!11 +2CO 1:22!12 +2CO 1:22!13 +2CO 1:22!14 +2CO 1:23!2 +2CO 1:23!1 +2CO 1:23!3 +2CO 1:23!4 +2CO 1:23!5 +2CO 1:23!6 +2CO 1:23!7 +2CO 1:23!8 +2CO 1:23!9 +2CO 1:23!10 +2CO 1:23!11 +2CO 1:23!12 +2CO 1:23!13 +2CO 1:23!14 +2CO 1:23!15 +2CO 1:23!16 +2CO 1:23!17 +2CO 1:24!2 +2CO 1:24!1 +2CO 1:24!3 +2CO 1:24!4 +2CO 1:24!5 +2CO 1:24!6 +2CO 1:24!7 +2CO 1:24!8 +2CO 1:24!9 +2CO 1:24!10 +2CO 1:24!11 +2CO 1:24!12 +2CO 1:24!14 +2CO 1:24!13 +2CO 1:24!15 +2CO 1:24!16 +2CO 2:1!2 +2CO 2:1!1 +2CO 2:1!3 +2CO 2:1!4 +2CO 2:1!5 +2CO 2:1!6 +2CO 2:1!7 +2CO 2:1!8 +2CO 2:1!9 +2CO 2:1!10 +2CO 2:1!11 +2CO 2:1!12 +2CO 2:2!2 +2CO 2:2!1 +2CO 2:2!3 +2CO 2:2!4 +2CO 2:2!5 +2CO 2:2!6 +2CO 2:2!7 +2CO 2:2!8 +2CO 2:2!9 +2CO 2:2!10 +2CO 2:2!11 +2CO 2:2!12 +2CO 2:2!13 +2CO 2:2!14 +2CO 2:2!15 +2CO 2:2!16 +2CO 2:3!1 +2CO 2:3!2 +2CO 2:3!3 +2CO 2:3!4 +2CO 2:3!5 +2CO 2:3!6 +2CO 2:3!7 +2CO 2:3!8 +2CO 2:3!9 +2CO 2:3!10 +2CO 2:3!11 +2CO 2:3!13 +2CO 2:3!14 +2CO 2:3!12 +2CO 2:3!15 +2CO 2:3!16 +2CO 2:3!17 +2CO 2:3!18 +2CO 2:3!19 +2CO 2:3!20 +2CO 2:3!21 +2CO 2:3!22 +2CO 2:3!23 +2CO 2:3!24 +2CO 2:3!25 +2CO 2:4!2 +2CO 2:4!1 +2CO 2:4!3 +2CO 2:4!4 +2CO 2:4!5 +2CO 2:4!6 +2CO 2:4!7 +2CO 2:4!8 +2CO 2:4!9 +2CO 2:4!10 +2CO 2:4!11 +2CO 2:4!12 +2CO 2:4!13 +2CO 2:4!14 +2CO 2:4!15 +2CO 2:4!16 +2CO 2:4!19 +2CO 2:4!20 +2CO 2:4!17 +2CO 2:4!18 +2CO 2:4!21 +2CO 2:4!22 +2CO 2:4!23 +2CO 2:4!24 +2CO 2:4!25 +2CO 2:5!2 +2CO 2:5!1 +2CO 2:5!3 +2CO 2:5!4 +2CO 2:5!5 +2CO 2:5!6 +2CO 2:5!7 +2CO 2:5!8 +2CO 2:5!9 +2CO 2:5!10 +2CO 2:5!14 +2CO 2:5!15 +2CO 2:5!11 +2CO 2:5!12 +2CO 2:5!13 +2CO 2:6!1 +2CO 2:6!2 +2CO 2:6!3 +2CO 2:6!4 +2CO 2:6!5 +2CO 2:6!6 +2CO 2:6!7 +2CO 2:6!8 +2CO 2:6!9 +2CO 2:6!10 +2CO 2:7!1 +2CO 2:7!2 +2CO 2:7!3 +2CO 2:7!4 +2CO 2:7!5 +2CO 2:7!6 +2CO 2:7!7 +2CO 2:7!8 +2CO 2:7!9 +2CO 2:7!10 +2CO 2:7!11 +2CO 2:7!12 +2CO 2:7!13 +2CO 2:7!14 +2CO 2:7!15 +2CO 2:8!1 +2CO 2:8!2 +2CO 2:8!3 +2CO 2:8!4 +2CO 2:8!5 +2CO 2:8!6 +2CO 2:8!7 +2CO 2:9!3 +2CO 2:9!1 +2CO 2:9!2 +2CO 2:9!4 +2CO 2:9!5 +2CO 2:9!6 +2CO 2:9!7 +2CO 2:9!8 +2CO 2:9!9 +2CO 2:9!10 +2CO 2:9!11 +2CO 2:9!12 +2CO 2:9!13 +2CO 2:9!14 +2CO 2:9!15 +2CO 2:10!2 +2CO 2:10!1 +2CO 2:10!3 +2CO 2:10!4 +2CO 2:10!5 +2CO 2:10!7 +2CO 2:10!6 +2CO 2:10!8 +2CO 2:10!9 +2CO 2:10!10 +2CO 2:10!11 +2CO 2:10!12 +2CO 2:10!13 +2CO 2:10!14 +2CO 2:10!15 +2CO 2:10!16 +2CO 2:10!17 +2CO 2:10!18 +2CO 2:11!1 +2CO 2:11!2 +2CO 2:11!3 +2CO 2:11!4 +2CO 2:11!5 +2CO 2:11!6 +2CO 2:11!8 +2CO 2:11!7 +2CO 2:11!9 +2CO 2:11!10 +2CO 2:11!11 +2CO 2:11!12 +2CO 2:12!2 +2CO 2:12!1 +2CO 2:12!3 +2CO 2:12!4 +2CO 2:12!5 +2CO 2:12!6 +2CO 2:12!7 +2CO 2:12!8 +2CO 2:12!9 +2CO 2:12!10 +2CO 2:12!11 +2CO 2:12!12 +2CO 2:12!13 +2CO 2:12!14 +2CO 2:12!15 +2CO 2:12!16 +2CO 2:13!1 +2CO 2:13!2 +2CO 2:13!3 +2CO 2:13!4 +2CO 2:13!5 +2CO 2:13!6 +2CO 2:13!7 +2CO 2:13!8 +2CO 2:13!9 +2CO 2:13!10 +2CO 2:13!11 +2CO 2:13!12 +2CO 2:13!13 +2CO 2:13!14 +2CO 2:13!15 +2CO 2:13!16 +2CO 2:13!17 +2CO 2:13!18 +2CO 2:13!19 +2CO 2:13!20 +2CO 2:14!2 +2CO 2:14!4 +2CO 2:14!1 +2CO 2:14!3 +2CO 2:14!5 +2CO 2:14!6 +2CO 2:14!7 +2CO 2:14!8 +2CO 2:14!9 +2CO 2:14!10 +2CO 2:14!11 +2CO 2:14!12 +2CO 2:14!13 +2CO 2:14!14 +2CO 2:14!15 +2CO 2:14!16 +2CO 2:14!17 +2CO 2:14!18 +2CO 2:14!19 +2CO 2:14!20 +2CO 2:14!21 +2CO 2:14!22 +2CO 2:14!23 +2CO 2:15!1 +2CO 2:15!2 +2CO 2:15!3 +2CO 2:15!4 +2CO 2:15!5 +2CO 2:15!6 +2CO 2:15!7 +2CO 2:15!8 +2CO 2:15!9 +2CO 2:15!10 +2CO 2:15!11 +2CO 2:15!12 +2CO 2:15!13 +2CO 2:16!2 +2CO 2:16!1 +2CO 2:16!3 +2CO 2:16!4 +2CO 2:16!5 +2CO 2:16!6 +2CO 2:16!7 +2CO 2:16!9 +2CO 2:16!8 +2CO 2:16!10 +2CO 2:16!11 +2CO 2:16!12 +2CO 2:16!13 +2CO 2:16!14 +2CO 2:16!15 +2CO 2:16!16 +2CO 2:16!17 +2CO 2:16!18 +2CO 2:16!19 +2CO 2:17!2 +2CO 2:17!1 +2CO 2:17!3 +2CO 2:17!7 +2CO 2:17!8 +2CO 2:17!9 +2CO 2:17!10 +2CO 2:17!11 +2CO 2:17!4 +2CO 2:17!5 +2CO 2:17!6 +2CO 2:17!12 +2CO 2:17!13 +2CO 2:17!14 +2CO 2:17!15 +2CO 2:17!16 +2CO 2:17!17 +2CO 2:17!18 +2CO 2:17!19 +2CO 2:17!20 +2CO 2:17!21 +2CO 2:17!22 +2CO 2:17!23 +2CO 2:17!24 +2CO 3:1!1 +2CO 3:1!2 +2CO 3:1!3 +2CO 3:1!4 +2CO 3:1!5 +2CO 3:1!6 +2CO 3:1!7 +2CO 3:1!8 +2CO 3:1!9 +2CO 3:1!10 +2CO 3:1!11 +2CO 3:1!12 +2CO 3:1!13 +2CO 3:1!14 +2CO 3:1!15 +2CO 3:1!16 +2CO 3:2!1 +2CO 3:2!2 +2CO 3:2!3 +2CO 3:2!4 +2CO 3:2!5 +2CO 3:2!6 +2CO 3:2!7 +2CO 3:2!8 +2CO 3:2!9 +2CO 3:2!10 +2CO 3:2!11 +2CO 3:2!12 +2CO 3:2!13 +2CO 3:2!14 +2CO 3:2!15 +2CO 3:2!16 +2CO 3:3!1 +2CO 3:3!2 +2CO 3:3!3 +2CO 3:3!4 +2CO 3:3!5 +2CO 3:3!6 +2CO 3:3!7 +2CO 3:3!8 +2CO 3:3!9 +2CO 3:3!10 +2CO 3:3!11 +2CO 3:3!12 +2CO 3:3!13 +2CO 3:3!14 +2CO 3:3!15 +2CO 3:3!16 +2CO 3:3!17 +2CO 3:3!18 +2CO 3:3!19 +2CO 3:3!20 +2CO 3:3!21 +2CO 3:3!22 +2CO 3:3!23 +2CO 3:3!24 +2CO 3:4!2 +2CO 3:4!1 +2CO 3:4!3 +2CO 3:4!4 +2CO 3:4!5 +2CO 3:4!6 +2CO 3:4!7 +2CO 3:4!8 +2CO 3:4!9 +2CO 3:4!10 +2CO 3:5!1 +2CO 3:5!2 +2CO 3:5!3 +2CO 3:5!4 +2CO 3:5!5 +2CO 3:5!6 +2CO 3:5!7 +2CO 3:5!8 +2CO 3:5!9 +2CO 3:5!10 +2CO 3:5!11 +2CO 3:5!12 +2CO 3:5!13 +2CO 3:5!14 +2CO 3:5!15 +2CO 3:5!16 +2CO 3:5!17 +2CO 3:5!18 +2CO 3:6!1 +2CO 3:6!2 +2CO 3:6!3 +2CO 3:6!4 +2CO 3:6!5 +2CO 3:6!6 +2CO 3:6!7 +2CO 3:6!8 +2CO 3:6!9 +2CO 3:6!10 +2CO 3:6!11 +2CO 3:6!13 +2CO 3:6!12 +2CO 3:6!14 +2CO 3:6!15 +2CO 3:6!17 +2CO 3:6!16 +2CO 3:6!18 +2CO 3:6!19 +2CO 3:7!2 +2CO 3:7!1 +2CO 3:7!3 +2CO 3:7!4 +2CO 3:7!5 +2CO 3:7!6 +2CO 3:7!7 +2CO 3:7!8 +2CO 3:7!9 +2CO 3:7!10 +2CO 3:7!11 +2CO 3:7!12 +2CO 3:7!13 +2CO 3:7!14 +2CO 3:7!15 +2CO 3:7!16 +2CO 3:7!18 +2CO 3:7!19 +2CO 3:7!20 +2CO 3:7!17 +2CO 3:7!21 +2CO 3:7!22 +2CO 3:7!23 +2CO 3:7!24 +2CO 3:7!25 +2CO 3:7!26 +2CO 3:7!27 +2CO 3:7!28 +2CO 3:7!29 +2CO 3:7!30 +2CO 3:7!31 +2CO 3:7!32 +2CO 3:8!1 +2CO 3:8!2 +2CO 3:8!3 +2CO 3:8!4 +2CO 3:8!5 +2CO 3:8!6 +2CO 3:8!7 +2CO 3:8!8 +2CO 3:8!9 +2CO 3:8!10 +2CO 3:9!2 +2CO 3:9!1 +2CO 3:9!3 +2CO 3:9!4 +2CO 3:9!5 +2CO 3:9!6 +2CO 3:9!7 +2CO 3:9!8 +2CO 3:9!9 +2CO 3:9!10 +2CO 3:9!11 +2CO 3:9!12 +2CO 3:9!13 +2CO 3:9!14 +2CO 3:9!15 +2CO 3:10!2 +2CO 3:10!1 +2CO 3:10!3 +2CO 3:10!4 +2CO 3:10!5 +2CO 3:10!6 +2CO 3:10!7 +2CO 3:10!8 +2CO 3:10!9 +2CO 3:10!10 +2CO 3:10!11 +2CO 3:10!12 +2CO 3:10!13 +2CO 3:10!14 +2CO 3:11!2 +2CO 3:11!1 +2CO 3:11!3 +2CO 3:11!4 +2CO 3:11!5 +2CO 3:11!6 +2CO 3:11!7 +2CO 3:11!8 +2CO 3:11!9 +2CO 3:11!10 +2CO 3:11!11 +2CO 3:11!12 +2CO 3:12!2 +2CO 3:12!1 +2CO 3:12!3 +2CO 3:12!4 +2CO 3:12!5 +2CO 3:12!6 +2CO 3:12!7 +2CO 3:13!1 +2CO 3:13!2 +2CO 3:13!3 +2CO 3:13!4 +2CO 3:13!5 +2CO 3:13!6 +2CO 3:13!7 +2CO 3:13!8 +2CO 3:13!9 +2CO 3:13!10 +2CO 3:13!11 +2CO 3:13!12 +2CO 3:13!13 +2CO 3:13!14 +2CO 3:13!15 +2CO 3:13!16 +2CO 3:13!17 +2CO 3:13!18 +2CO 3:13!19 +2CO 3:13!20 +2CO 3:13!21 +2CO 3:13!22 +2CO 3:14!1 +2CO 3:14!2 +2CO 3:14!3 +2CO 3:14!4 +2CO 3:14!5 +2CO 3:14!7 +2CO 3:14!6 +2CO 3:14!8 +2CO 3:14!9 +2CO 3:14!10 +2CO 3:14!11 +2CO 3:14!12 +2CO 3:14!13 +2CO 3:14!14 +2CO 3:14!15 +2CO 3:14!16 +2CO 3:14!17 +2CO 3:14!18 +2CO 3:14!19 +2CO 3:14!20 +2CO 3:14!21 +2CO 3:14!22 +2CO 3:14!23 +2CO 3:14!24 +2CO 3:14!25 +2CO 3:14!26 +2CO 3:15!1 +2CO 3:15!2 +2CO 3:15!3 +2CO 3:15!5 +2CO 3:15!4 +2CO 3:15!6 +2CO 3:15!7 +2CO 3:15!8 +2CO 3:15!9 +2CO 3:15!10 +2CO 3:15!11 +2CO 3:15!12 +2CO 3:15!13 +2CO 3:16!2 +2CO 3:16!1 +2CO 3:16!3 +2CO 3:16!4 +2CO 3:16!5 +2CO 3:16!6 +2CO 3:16!7 +2CO 3:16!8 +2CO 3:16!9 +2CO 3:17!2 +2CO 3:17!1 +2CO 3:17!3 +2CO 3:17!4 +2CO 3:17!5 +2CO 3:17!6 +2CO 3:17!8 +2CO 3:17!7 +2CO 3:17!9 +2CO 3:17!10 +2CO 3:17!11 +2CO 3:17!12 +2CO 3:18!2 +2CO 3:18!1 +2CO 3:18!3 +2CO 3:18!4 +2CO 3:18!5 +2CO 3:18!6 +2CO 3:18!7 +2CO 3:18!8 +2CO 3:18!9 +2CO 3:18!10 +2CO 3:18!11 +2CO 3:18!12 +2CO 3:18!13 +2CO 3:18!14 +2CO 3:18!15 +2CO 3:18!16 +2CO 3:18!17 +2CO 3:18!18 +2CO 3:18!19 +2CO 3:18!20 +2CO 3:18!21 +2CO 4:1!1 +2CO 4:1!2 +2CO 4:1!3 +2CO 4:1!4 +2CO 4:1!5 +2CO 4:1!6 +2CO 4:1!7 +2CO 4:1!8 +2CO 4:1!9 +2CO 4:1!10 +2CO 4:2!1 +2CO 4:2!2 +2CO 4:2!3 +2CO 4:2!4 +2CO 4:2!5 +2CO 4:2!6 +2CO 4:2!7 +2CO 4:2!8 +2CO 4:2!9 +2CO 4:2!10 +2CO 4:2!11 +2CO 4:2!12 +2CO 4:2!13 +2CO 4:2!14 +2CO 4:2!15 +2CO 4:2!16 +2CO 4:2!17 +2CO 4:2!18 +2CO 4:2!19 +2CO 4:2!20 +2CO 4:2!21 +2CO 4:2!22 +2CO 4:2!23 +2CO 4:2!24 +2CO 4:2!25 +2CO 4:2!26 +2CO 4:2!27 +2CO 4:2!28 +2CO 4:2!29 +2CO 4:2!30 +2CO 4:3!2 +2CO 4:3!1 +2CO 4:3!3 +2CO 4:3!4 +2CO 4:3!5 +2CO 4:3!6 +2CO 4:3!7 +2CO 4:3!8 +2CO 4:3!9 +2CO 4:3!10 +2CO 4:3!11 +2CO 4:3!12 +2CO 4:3!13 +2CO 4:4!1 +2CO 4:4!2 +2CO 4:4!3 +2CO 4:4!4 +2CO 4:4!5 +2CO 4:4!6 +2CO 4:4!7 +2CO 4:4!8 +2CO 4:4!9 +2CO 4:4!10 +2CO 4:4!11 +2CO 4:4!12 +2CO 4:4!13 +2CO 4:4!14 +2CO 4:4!15 +2CO 4:4!16 +2CO 4:4!17 +2CO 4:4!18 +2CO 4:4!19 +2CO 4:4!20 +2CO 4:4!21 +2CO 4:4!22 +2CO 4:4!23 +2CO 4:4!24 +2CO 4:4!25 +2CO 4:4!26 +2CO 4:4!27 +2CO 4:4!28 +2CO 4:4!29 +2CO 4:5!2 +2CO 4:5!1 +2CO 4:5!3 +2CO 4:5!4 +2CO 4:5!5 +2CO 4:5!6 +2CO 4:5!7 +2CO 4:5!8 +2CO 4:5!10 +2CO 4:5!9 +2CO 4:5!11 +2CO 4:5!12 +2CO 4:5!13 +2CO 4:5!14 +2CO 4:6!1 +2CO 4:6!2 +2CO 4:6!3 +2CO 4:6!4 +2CO 4:6!5 +2CO 4:6!6 +2CO 4:6!7 +2CO 4:6!8 +2CO 4:6!9 +2CO 4:6!10 +2CO 4:6!11 +2CO 4:6!12 +2CO 4:6!13 +2CO 4:6!14 +2CO 4:6!15 +2CO 4:6!16 +2CO 4:6!17 +2CO 4:6!18 +2CO 4:6!19 +2CO 4:6!20 +2CO 4:6!21 +2CO 4:6!22 +2CO 4:6!23 +2CO 4:6!24 +2CO 4:6!25 +2CO 4:6!26 +2CO 4:7!2 +2CO 4:7!1 +2CO 4:7!3 +2CO 4:7!4 +2CO 4:7!5 +2CO 4:7!6 +2CO 4:7!7 +2CO 4:7!8 +2CO 4:7!9 +2CO 4:7!10 +2CO 4:7!11 +2CO 4:7!12 +2CO 4:7!13 +2CO 4:7!14 +2CO 4:7!15 +2CO 4:7!16 +2CO 4:7!17 +2CO 4:7!18 +2CO 4:7!19 +2CO 4:7!20 +2CO 4:8!1 +2CO 4:8!2 +2CO 4:8!3 +2CO 4:8!4 +2CO 4:8!5 +2CO 4:8!6 +2CO 4:8!7 +2CO 4:8!8 +2CO 4:8!9 +2CO 4:8!10 +2CO 4:9!1 +2CO 4:9!2 +2CO 4:9!3 +2CO 4:9!4 +2CO 4:9!5 +2CO 4:9!6 +2CO 4:9!7 +2CO 4:9!8 +2CO 4:10!1 +2CO 4:10!2 +2CO 4:10!3 +2CO 4:10!4 +2CO 4:10!5 +2CO 4:10!6 +2CO 4:10!7 +2CO 4:10!8 +2CO 4:10!9 +2CO 4:10!10 +2CO 4:10!11 +2CO 4:10!12 +2CO 4:10!13 +2CO 4:10!14 +2CO 4:10!15 +2CO 4:10!16 +2CO 4:10!17 +2CO 4:10!18 +2CO 4:10!19 +2CO 4:10!20 +2CO 4:11!2 +2CO 4:11!1 +2CO 4:11!3 +2CO 4:11!4 +2CO 4:11!5 +2CO 4:11!6 +2CO 4:11!7 +2CO 4:11!8 +2CO 4:11!9 +2CO 4:11!10 +2CO 4:11!11 +2CO 4:11!12 +2CO 4:11!13 +2CO 4:11!14 +2CO 4:11!15 +2CO 4:11!16 +2CO 4:11!17 +2CO 4:11!18 +2CO 4:11!19 +2CO 4:11!20 +2CO 4:11!21 +2CO 4:11!22 +2CO 4:12!1 +2CO 4:12!2 +2CO 4:12!3 +2CO 4:12!4 +2CO 4:12!5 +2CO 4:12!6 +2CO 4:12!8 +2CO 4:12!7 +2CO 4:12!9 +2CO 4:12!10 +2CO 4:12!11 +2CO 4:13!2 +2CO 4:13!1 +2CO 4:13!3 +2CO 4:13!4 +2CO 4:13!5 +2CO 4:13!6 +2CO 4:13!7 +2CO 4:13!8 +2CO 4:13!9 +2CO 4:13!10 +2CO 4:13!11 +2CO 4:13!12 +2CO 4:13!13 +2CO 4:13!14 +2CO 4:13!15 +2CO 4:13!16 +2CO 4:13!17 +2CO 4:13!18 +2CO 4:13!19 +2CO 4:14!1 +2CO 4:14!2 +2CO 4:14!3 +2CO 4:14!4 +2CO 4:14!5 +2CO 4:14!6 +2CO 4:14!7 +2CO 4:14!8 +2CO 4:14!9 +2CO 4:14!10 +2CO 4:14!11 +2CO 4:14!12 +2CO 4:14!13 +2CO 4:14!14 +2CO 4:14!15 +2CO 4:14!16 +2CO 4:15!2 +2CO 4:15!1 +2CO 4:15!3 +2CO 4:15!4 +2CO 4:15!5 +2CO 4:15!6 +2CO 4:15!7 +2CO 4:15!8 +2CO 4:15!9 +2CO 4:15!10 +2CO 4:15!11 +2CO 4:15!12 +2CO 4:15!13 +2CO 4:15!14 +2CO 4:15!15 +2CO 4:15!16 +2CO 4:15!17 +2CO 4:15!18 +2CO 4:15!19 +2CO 4:15!20 +2CO 4:16!1 +2CO 4:16!2 +2CO 4:16!3 +2CO 4:16!4 +2CO 4:16!5 +2CO 4:16!6 +2CO 4:16!7 +2CO 4:16!8 +2CO 4:16!9 +2CO 4:16!10 +2CO 4:16!11 +2CO 4:16!12 +2CO 4:16!13 +2CO 4:16!14 +2CO 4:16!15 +2CO 4:16!16 +2CO 4:16!17 +2CO 4:16!18 +2CO 4:16!19 +2CO 4:17!2 +2CO 4:17!1 +2CO 4:17!3 +2CO 4:17!4 +2CO 4:17!5 +2CO 4:17!6 +2CO 4:17!7 +2CO 4:17!8 +2CO 4:17!9 +2CO 4:17!10 +2CO 4:17!11 +2CO 4:17!12 +2CO 4:17!13 +2CO 4:17!14 +2CO 4:17!15 +2CO 4:18!1 +2CO 4:18!2 +2CO 4:18!3 +2CO 4:18!4 +2CO 4:18!5 +2CO 4:18!6 +2CO 4:18!7 +2CO 4:18!8 +2CO 4:18!9 +2CO 4:18!11 +2CO 4:18!10 +2CO 4:18!12 +2CO 4:18!13 +2CO 4:18!15 +2CO 4:18!14 +2CO 4:18!16 +2CO 4:18!17 +2CO 4:18!18 +2CO 5:1!2 +2CO 5:1!1 +2CO 5:1!3 +2CO 5:1!4 +2CO 5:1!5 +2CO 5:1!6 +2CO 5:1!7 +2CO 5:1!8 +2CO 5:1!9 +2CO 5:1!10 +2CO 5:1!11 +2CO 5:1!13 +2CO 5:1!14 +2CO 5:1!15 +2CO 5:1!12 +2CO 5:1!16 +2CO 5:1!17 +2CO 5:1!18 +2CO 5:1!19 +2CO 5:1!20 +2CO 5:1!21 +2CO 5:2!2 +2CO 5:2!1 +2CO 5:2!3 +2CO 5:2!4 +2CO 5:2!5 +2CO 5:2!6 +2CO 5:2!7 +2CO 5:2!8 +2CO 5:2!9 +2CO 5:2!10 +2CO 5:2!11 +2CO 5:2!12 +2CO 5:2!13 +2CO 5:3!1 +2CO 5:3!2 +2CO 5:3!3 +2CO 5:3!4 +2CO 5:3!5 +2CO 5:3!6 +2CO 5:3!7 +2CO 5:4!2 +2CO 5:4!1 +2CO 5:4!3 +2CO 5:4!4 +2CO 5:4!5 +2CO 5:4!6 +2CO 5:4!7 +2CO 5:4!8 +2CO 5:4!9 +2CO 5:4!10 +2CO 5:4!11 +2CO 5:4!13 +2CO 5:4!12 +2CO 5:4!14 +2CO 5:4!15 +2CO 5:4!16 +2CO 5:4!17 +2CO 5:4!18 +2CO 5:4!19 +2CO 5:4!20 +2CO 5:4!21 +2CO 5:4!22 +2CO 5:4!23 +2CO 5:5!2 +2CO 5:5!1 +2CO 5:5!3 +2CO 5:5!4 +2CO 5:5!5 +2CO 5:5!6 +2CO 5:5!7 +2CO 5:5!8 +2CO 5:5!9 +2CO 5:5!10 +2CO 5:5!11 +2CO 5:5!12 +2CO 5:5!13 +2CO 5:5!14 +2CO 5:5!15 +2CO 5:6!2 +2CO 5:6!1 +2CO 5:6!3 +2CO 5:6!4 +2CO 5:6!5 +2CO 5:6!6 +2CO 5:6!7 +2CO 5:6!8 +2CO 5:6!9 +2CO 5:6!10 +2CO 5:6!11 +2CO 5:6!12 +2CO 5:6!13 +2CO 5:6!14 +2CO 5:7!3 +2CO 5:7!1 +2CO 5:7!2 +2CO 5:7!4 +2CO 5:7!5 +2CO 5:7!6 +2CO 5:7!7 +2CO 5:8!2 +2CO 5:8!1 +2CO 5:8!3 +2CO 5:8!4 +2CO 5:8!5 +2CO 5:8!6 +2CO 5:8!7 +2CO 5:8!8 +2CO 5:8!9 +2CO 5:8!10 +2CO 5:8!11 +2CO 5:8!12 +2CO 5:8!13 +2CO 5:8!14 +2CO 5:9!1 +2CO 5:9!2 +2CO 5:9!3 +2CO 5:9!4 +2CO 5:9!5 +2CO 5:9!6 +2CO 5:9!7 +2CO 5:9!8 +2CO 5:9!9 +2CO 5:9!10 +2CO 5:10!2 +2CO 5:10!1 +2CO 5:10!3 +2CO 5:10!4 +2CO 5:10!5 +2CO 5:10!7 +2CO 5:10!8 +2CO 5:10!9 +2CO 5:10!10 +2CO 5:10!11 +2CO 5:10!6 +2CO 5:10!12 +2CO 5:10!13 +2CO 5:10!14 +2CO 5:10!15 +2CO 5:10!16 +2CO 5:10!17 +2CO 5:10!18 +2CO 5:10!19 +2CO 5:10!20 +2CO 5:10!21 +2CO 5:10!22 +2CO 5:10!23 +2CO 5:10!24 +2CO 5:10!25 +2CO 5:11!2 +2CO 5:11!1 +2CO 5:11!3 +2CO 5:11!4 +2CO 5:11!5 +2CO 5:11!6 +2CO 5:11!7 +2CO 5:11!8 +2CO 5:11!10 +2CO 5:11!9 +2CO 5:11!11 +2CO 5:11!13 +2CO 5:11!12 +2CO 5:11!14 +2CO 5:11!15 +2CO 5:11!16 +2CO 5:11!17 +2CO 5:11!18 +2CO 5:11!19 +2CO 5:12!1 +2CO 5:12!2 +2CO 5:12!3 +2CO 5:12!4 +2CO 5:12!5 +2CO 5:12!6 +2CO 5:12!7 +2CO 5:12!10 +2CO 5:12!8 +2CO 5:12!9 +2CO 5:12!11 +2CO 5:12!12 +2CO 5:12!13 +2CO 5:12!14 +2CO 5:12!15 +2CO 5:12!16 +2CO 5:12!17 +2CO 5:12!18 +2CO 5:12!19 +2CO 5:12!20 +2CO 5:12!21 +2CO 5:12!22 +2CO 5:12!23 +2CO 5:13!2 +2CO 5:13!1 +2CO 5:13!3 +2CO 5:13!4 +2CO 5:13!5 +2CO 5:13!6 +2CO 5:13!7 +2CO 5:14!2 +2CO 5:14!1 +2CO 5:14!3 +2CO 5:14!4 +2CO 5:14!5 +2CO 5:14!6 +2CO 5:14!7 +2CO 5:14!8 +2CO 5:14!9 +2CO 5:14!10 +2CO 5:14!11 +2CO 5:14!12 +2CO 5:14!13 +2CO 5:14!14 +2CO 5:14!15 +2CO 5:14!16 +2CO 5:14!17 +2CO 5:14!18 +2CO 5:15!1 +2CO 5:15!2 +2CO 5:15!3 +2CO 5:15!4 +2CO 5:15!5 +2CO 5:15!6 +2CO 5:15!7 +2CO 5:15!10 +2CO 5:15!8 +2CO 5:15!9 +2CO 5:15!11 +2CO 5:15!12 +2CO 5:15!13 +2CO 5:15!14 +2CO 5:15!15 +2CO 5:15!16 +2CO 5:15!17 +2CO 5:16!1 +2CO 5:16!2 +2CO 5:16!3 +2CO 5:16!4 +2CO 5:16!5 +2CO 5:16!6 +2CO 5:16!7 +2CO 5:16!8 +2CO 5:16!9 +2CO 5:16!10 +2CO 5:16!11 +2CO 5:16!12 +2CO 5:16!13 +2CO 5:16!14 +2CO 5:16!15 +2CO 5:16!16 +2CO 5:16!17 +2CO 5:16!18 +2CO 5:16!19 +2CO 5:17!1 +2CO 5:17!2 +2CO 5:17!3 +2CO 5:17!4 +2CO 5:17!5 +2CO 5:17!6 +2CO 5:17!7 +2CO 5:17!8 +2CO 5:17!9 +2CO 5:17!10 +2CO 5:17!11 +2CO 5:17!12 +2CO 5:17!13 +2CO 5:18!2 +2CO 5:18!1 +2CO 5:18!3 +2CO 5:18!4 +2CO 5:18!5 +2CO 5:18!6 +2CO 5:18!7 +2CO 5:18!8 +2CO 5:18!9 +2CO 5:18!10 +2CO 5:18!11 +2CO 5:18!12 +2CO 5:18!13 +2CO 5:18!14 +2CO 5:18!15 +2CO 5:18!16 +2CO 5:18!17 +2CO 5:18!18 +2CO 5:18!19 +2CO 5:19!1 +2CO 5:19!2 +2CO 5:19!3 +2CO 5:19!4 +2CO 5:19!8 +2CO 5:19!5 +2CO 5:19!6 +2CO 5:19!7 +2CO 5:19!9 +2CO 5:19!10 +2CO 5:19!11 +2CO 5:19!12 +2CO 5:19!13 +2CO 5:19!14 +2CO 5:19!15 +2CO 5:19!16 +2CO 5:19!17 +2CO 5:19!18 +2CO 5:19!19 +2CO 5:19!20 +2CO 5:19!21 +2CO 5:19!22 +2CO 5:19!23 +2CO 5:20!3 +2CO 5:20!1 +2CO 5:20!2 +2CO 5:20!4 +2CO 5:20!5 +2CO 5:20!6 +2CO 5:20!7 +2CO 5:20!8 +2CO 5:20!9 +2CO 5:20!10 +2CO 5:20!11 +2CO 5:20!12 +2CO 5:20!13 +2CO 5:20!14 +2CO 5:20!15 +2CO 5:20!16 +2CO 5:21!1 +2CO 5:21!2 +2CO 5:21!3 +2CO 5:21!4 +2CO 5:21!5 +2CO 5:21!6 +2CO 5:21!7 +2CO 5:21!8 +2CO 5:21!9 +2CO 5:21!10 +2CO 5:21!11 +2CO 5:21!12 +2CO 5:21!13 +2CO 5:21!14 +2CO 5:21!15 +2CO 6:1!2 +2CO 6:1!1 +2CO 6:1!3 +2CO 6:1!4 +2CO 6:1!5 +2CO 6:1!6 +2CO 6:1!7 +2CO 6:1!8 +2CO 6:1!9 +2CO 6:1!10 +2CO 6:1!11 +2CO 6:1!12 +2CO 6:1!13 +2CO 6:2!2 +2CO 6:2!1 +2CO 6:2!3 +2CO 6:2!4 +2CO 6:2!5 +2CO 6:2!6 +2CO 6:2!7 +2CO 6:2!8 +2CO 6:2!9 +2CO 6:2!10 +2CO 6:2!11 +2CO 6:2!12 +2CO 6:2!13 +2CO 6:2!14 +2CO 6:2!15 +2CO 6:2!16 +2CO 6:2!17 +2CO 6:2!18 +2CO 6:2!19 +2CO 6:2!20 +2CO 6:3!1 +2CO 6:3!5 +2CO 6:3!2 +2CO 6:3!3 +2CO 6:3!4 +2CO 6:3!6 +2CO 6:3!7 +2CO 6:3!8 +2CO 6:3!9 +2CO 6:3!10 +2CO 6:4!1 +2CO 6:4!2 +2CO 6:4!3 +2CO 6:4!4 +2CO 6:4!5 +2CO 6:4!6 +2CO 6:4!7 +2CO 6:4!8 +2CO 6:4!9 +2CO 6:4!10 +2CO 6:4!11 +2CO 6:4!12 +2CO 6:4!13 +2CO 6:4!14 +2CO 6:4!15 +2CO 6:4!16 +2CO 6:4!17 +2CO 6:5!1 +2CO 6:5!2 +2CO 6:5!3 +2CO 6:5!4 +2CO 6:5!5 +2CO 6:5!6 +2CO 6:5!7 +2CO 6:5!8 +2CO 6:5!9 +2CO 6:5!10 +2CO 6:5!11 +2CO 6:5!12 +2CO 6:6!1 +2CO 6:6!2 +2CO 6:6!3 +2CO 6:6!4 +2CO 6:6!5 +2CO 6:6!6 +2CO 6:6!7 +2CO 6:6!8 +2CO 6:6!9 +2CO 6:6!10 +2CO 6:6!11 +2CO 6:6!12 +2CO 6:6!13 +2CO 6:6!14 +2CO 6:7!1 +2CO 6:7!2 +2CO 6:7!3 +2CO 6:7!4 +2CO 6:7!5 +2CO 6:7!6 +2CO 6:7!7 +2CO 6:7!8 +2CO 6:7!9 +2CO 6:7!10 +2CO 6:7!11 +2CO 6:7!12 +2CO 6:7!13 +2CO 6:7!14 +2CO 6:7!15 +2CO 6:8!1 +2CO 6:8!2 +2CO 6:8!3 +2CO 6:8!4 +2CO 6:8!5 +2CO 6:8!6 +2CO 6:8!7 +2CO 6:8!8 +2CO 6:8!9 +2CO 6:8!10 +2CO 6:8!11 +2CO 6:8!12 +2CO 6:9!1 +2CO 6:9!2 +2CO 6:9!3 +2CO 6:9!4 +2CO 6:9!5 +2CO 6:9!6 +2CO 6:9!7 +2CO 6:9!8 +2CO 6:9!9 +2CO 6:9!10 +2CO 6:9!11 +2CO 6:9!12 +2CO 6:9!13 +2CO 6:9!14 +2CO 6:10!1 +2CO 6:10!2 +2CO 6:10!4 +2CO 6:10!3 +2CO 6:10!5 +2CO 6:10!6 +2CO 6:10!7 +2CO 6:10!9 +2CO 6:10!8 +2CO 6:10!10 +2CO 6:10!11 +2CO 6:10!12 +2CO 6:10!13 +2CO 6:10!14 +2CO 6:10!15 +2CO 6:10!16 +2CO 6:11!7 +2CO 6:11!1 +2CO 6:11!2 +2CO 6:11!3 +2CO 6:11!4 +2CO 6:11!5 +2CO 6:11!6 +2CO 6:11!8 +2CO 6:11!9 +2CO 6:11!10 +2CO 6:11!11 +2CO 6:12!1 +2CO 6:12!2 +2CO 6:12!3 +2CO 6:12!4 +2CO 6:12!6 +2CO 6:12!5 +2CO 6:12!7 +2CO 6:12!8 +2CO 6:12!9 +2CO 6:12!10 +2CO 6:13!2 +2CO 6:13!1 +2CO 6:13!3 +2CO 6:13!4 +2CO 6:13!5 +2CO 6:13!6 +2CO 6:13!7 +2CO 6:13!8 +2CO 6:13!9 +2CO 6:13!10 +2CO 6:14!1 +2CO 6:14!2 +2CO 6:14!3 +2CO 6:14!4 +2CO 6:14!6 +2CO 6:14!5 +2CO 6:14!7 +2CO 6:14!8 +2CO 6:14!9 +2CO 6:14!10 +2CO 6:14!11 +2CO 6:14!12 +2CO 6:14!13 +2CO 6:14!14 +2CO 6:14!15 +2CO 6:14!16 +2CO 6:15!2 +2CO 6:15!1 +2CO 6:15!3 +2CO 6:15!4 +2CO 6:15!5 +2CO 6:15!6 +2CO 6:15!7 +2CO 6:15!8 +2CO 6:15!9 +2CO 6:15!10 +2CO 6:15!11 +2CO 6:15!12 +2CO 6:16!2 +2CO 6:16!1 +2CO 6:16!3 +2CO 6:16!4 +2CO 6:16!5 +2CO 6:16!6 +2CO 6:16!7 +2CO 6:16!9 +2CO 6:16!8 +2CO 6:16!10 +2CO 6:16!11 +2CO 6:16!13 +2CO 6:16!12 +2CO 6:16!14 +2CO 6:16!15 +2CO 6:16!16 +2CO 6:16!17 +2CO 6:16!18 +2CO 6:16!19 +2CO 6:16!20 +2CO 6:16!21 +2CO 6:16!22 +2CO 6:16!23 +2CO 6:16!24 +2CO 6:16!25 +2CO 6:16!26 +2CO 6:16!27 +2CO 6:16!28 +2CO 6:16!29 +2CO 6:16!30 +2CO 6:16!31 +2CO 6:16!32 +2CO 6:17!1 +2CO 6:17!2 +2CO 6:17!3 +2CO 6:17!4 +2CO 6:17!5 +2CO 6:17!6 +2CO 6:17!7 +2CO 6:17!10 +2CO 6:17!11 +2CO 6:17!12 +2CO 6:17!13 +2CO 6:17!8 +2CO 6:17!9 +2CO 6:17!14 +2CO 6:17!15 +2CO 6:17!16 +2CO 6:18!1 +2CO 6:18!2 +2CO 6:18!3 +2CO 6:18!4 +2CO 6:18!5 +2CO 6:18!6 +2CO 6:18!7 +2CO 6:18!8 +2CO 6:18!9 +2CO 6:18!10 +2CO 6:18!11 +2CO 6:18!12 +2CO 6:18!13 +2CO 6:18!14 +2CO 6:18!15 +2CO 6:18!16 +2CO 7:1!2 +2CO 7:1!6 +2CO 7:1!3 +2CO 7:1!1 +2CO 7:1!4 +2CO 7:1!5 +2CO 7:1!7 +2CO 7:1!8 +2CO 7:1!9 +2CO 7:1!10 +2CO 7:1!11 +2CO 7:1!12 +2CO 7:1!13 +2CO 7:1!14 +2CO 7:1!15 +2CO 7:1!16 +2CO 7:1!17 +2CO 7:1!18 +2CO 7:1!19 +2CO 7:2!1 +2CO 7:2!2 +2CO 7:2!3 +2CO 7:2!4 +2CO 7:2!5 +2CO 7:2!6 +2CO 7:2!7 +2CO 7:2!8 +2CO 7:3!1 +2CO 7:3!2 +2CO 7:3!3 +2CO 7:3!4 +2CO 7:3!6 +2CO 7:3!5 +2CO 7:3!7 +2CO 7:3!8 +2CO 7:3!9 +2CO 7:3!10 +2CO 7:3!11 +2CO 7:3!12 +2CO 7:3!13 +2CO 7:3!14 +2CO 7:3!15 +2CO 7:3!16 +2CO 7:3!17 +2CO 7:4!1 +2CO 7:4!2 +2CO 7:4!3 +2CO 7:4!4 +2CO 7:4!5 +2CO 7:4!6 +2CO 7:4!7 +2CO 7:4!8 +2CO 7:4!9 +2CO 7:4!10 +2CO 7:4!11 +2CO 7:4!12 +2CO 7:4!13 +2CO 7:4!14 +2CO 7:4!15 +2CO 7:4!16 +2CO 7:4!17 +2CO 7:4!18 +2CO 7:4!19 +2CO 7:4!20 +2CO 7:4!21 +2CO 7:5!2 +2CO 7:5!1 +2CO 7:5!3 +2CO 7:5!4 +2CO 7:5!5 +2CO 7:5!6 +2CO 7:5!7 +2CO 7:5!8 +2CO 7:5!9 +2CO 7:5!10 +2CO 7:5!11 +2CO 7:5!12 +2CO 7:5!13 +2CO 7:5!14 +2CO 7:5!15 +2CO 7:5!16 +2CO 7:5!17 +2CO 7:5!18 +2CO 7:5!19 +2CO 7:5!20 +2CO 7:6!1 +2CO 7:6!2 +2CO 7:6!3 +2CO 7:6!4 +2CO 7:6!5 +2CO 7:6!8 +2CO 7:6!9 +2CO 7:6!6 +2CO 7:6!7 +2CO 7:6!10 +2CO 7:6!11 +2CO 7:6!12 +2CO 7:6!13 +2CO 7:7!3 +2CO 7:7!1 +2CO 7:7!2 +2CO 7:7!4 +2CO 7:7!5 +2CO 7:7!6 +2CO 7:7!7 +2CO 7:7!8 +2CO 7:7!9 +2CO 7:7!10 +2CO 7:7!11 +2CO 7:7!12 +2CO 7:7!13 +2CO 7:7!14 +2CO 7:7!15 +2CO 7:7!16 +2CO 7:7!17 +2CO 7:7!18 +2CO 7:7!19 +2CO 7:7!20 +2CO 7:7!21 +2CO 7:7!22 +2CO 7:7!23 +2CO 7:7!24 +2CO 7:7!25 +2CO 7:7!26 +2CO 7:7!27 +2CO 7:7!28 +2CO 7:7!29 +2CO 7:7!30 +2CO 7:7!31 +2CO 7:7!32 +2CO 7:7!33 +2CO 7:8!1 +2CO 7:8!2 +2CO 7:8!3 +2CO 7:8!4 +2CO 7:8!5 +2CO 7:8!6 +2CO 7:8!7 +2CO 7:8!8 +2CO 7:8!9 +2CO 7:8!10 +2CO 7:8!11 +2CO 7:8!12 +2CO 7:8!13 +2CO 7:8!14 +2CO 7:8!15 +2CO 7:8!16 +2CO 7:8!17 +2CO 7:8!18 +2CO 7:8!19 +2CO 7:8!20 +2CO 7:8!21 +2CO 7:8!22 +2CO 7:8!23 +2CO 7:8!24 +2CO 7:9!1 +2CO 7:9!2 +2CO 7:9!3 +2CO 7:9!4 +2CO 7:9!5 +2CO 7:9!6 +2CO 7:9!7 +2CO 7:9!8 +2CO 7:9!9 +2CO 7:9!10 +2CO 7:9!12 +2CO 7:9!11 +2CO 7:9!13 +2CO 7:9!14 +2CO 7:9!15 +2CO 7:9!16 +2CO 7:9!17 +2CO 7:9!18 +2CO 7:9!19 +2CO 7:9!20 +2CO 7:10!2 +2CO 7:10!1 +2CO 7:10!3 +2CO 7:10!4 +2CO 7:10!5 +2CO 7:10!6 +2CO 7:10!7 +2CO 7:10!8 +2CO 7:10!9 +2CO 7:10!10 +2CO 7:10!12 +2CO 7:10!11 +2CO 7:10!13 +2CO 7:10!14 +2CO 7:10!15 +2CO 7:10!16 +2CO 7:10!17 +2CO 7:11!2 +2CO 7:11!1 +2CO 7:11!3 +2CO 7:11!4 +2CO 7:11!5 +2CO 7:11!6 +2CO 7:11!7 +2CO 7:11!8 +2CO 7:11!10 +2CO 7:11!11 +2CO 7:11!9 +2CO 7:11!12 +2CO 7:11!13 +2CO 7:11!14 +2CO 7:11!15 +2CO 7:11!16 +2CO 7:11!17 +2CO 7:11!18 +2CO 7:11!19 +2CO 7:11!20 +2CO 7:11!21 +2CO 7:11!22 +2CO 7:11!23 +2CO 7:11!24 +2CO 7:11!25 +2CO 7:11!26 +2CO 7:11!27 +2CO 7:11!28 +2CO 7:11!29 +2CO 7:11!30 +2CO 7:11!31 +2CO 7:11!32 +2CO 7:12!1 +2CO 7:12!2 +2CO 7:12!3 +2CO 7:12!4 +2CO 7:12!5 +2CO 7:12!6 +2CO 7:12!7 +2CO 7:12!8 +2CO 7:12!9 +2CO 7:12!10 +2CO 7:12!11 +2CO 7:12!12 +2CO 7:12!13 +2CO 7:12!14 +2CO 7:12!15 +2CO 7:12!16 +2CO 7:12!17 +2CO 7:12!18 +2CO 7:12!19 +2CO 7:12!20 +2CO 7:12!21 +2CO 7:12!22 +2CO 7:12!23 +2CO 7:12!24 +2CO 7:12!25 +2CO 7:12!26 +2CO 7:12!27 +2CO 7:12!28 +2CO 7:13!1 +2CO 7:13!2 +2CO 7:13!3 +2CO 7:13!5 +2CO 7:13!4 +2CO 7:13!6 +2CO 7:13!7 +2CO 7:13!8 +2CO 7:13!9 +2CO 7:13!10 +2CO 7:13!11 +2CO 7:13!12 +2CO 7:13!13 +2CO 7:13!14 +2CO 7:13!15 +2CO 7:13!16 +2CO 7:13!17 +2CO 7:13!18 +2CO 7:13!19 +2CO 7:13!20 +2CO 7:13!21 +2CO 7:13!22 +2CO 7:13!23 +2CO 7:14!1 +2CO 7:14!2 +2CO 7:14!3 +2CO 7:14!4 +2CO 7:14!5 +2CO 7:14!6 +2CO 7:14!7 +2CO 7:14!8 +2CO 7:14!9 +2CO 7:14!10 +2CO 7:14!11 +2CO 7:14!12 +2CO 7:14!13 +2CO 7:14!14 +2CO 7:14!15 +2CO 7:14!16 +2CO 7:14!17 +2CO 7:14!18 +2CO 7:14!19 +2CO 7:14!20 +2CO 7:14!21 +2CO 7:14!22 +2CO 7:14!23 +2CO 7:14!24 +2CO 7:14!25 +2CO 7:15!1 +2CO 7:15!2 +2CO 7:15!3 +2CO 7:15!4 +2CO 7:15!5 +2CO 7:15!6 +2CO 7:15!7 +2CO 7:15!8 +2CO 7:15!9 +2CO 7:15!10 +2CO 7:15!11 +2CO 7:15!12 +2CO 7:15!13 +2CO 7:15!14 +2CO 7:15!15 +2CO 7:15!16 +2CO 7:15!17 +2CO 7:15!18 +2CO 7:15!19 +2CO 7:15!20 +2CO 7:16!1 +2CO 7:16!2 +2CO 7:16!3 +2CO 7:16!4 +2CO 7:16!5 +2CO 7:16!6 +2CO 7:16!7 +2CO 8:1!2 +2CO 8:1!4 +2CO 8:1!1 +2CO 8:1!3 +2CO 8:1!5 +2CO 8:1!6 +2CO 8:1!7 +2CO 8:1!8 +2CO 8:1!9 +2CO 8:1!10 +2CO 8:1!11 +2CO 8:1!12 +2CO 8:1!13 +2CO 8:1!14 +2CO 8:1!15 +2CO 8:2!1 +2CO 8:2!2 +2CO 8:2!3 +2CO 8:2!4 +2CO 8:2!5 +2CO 8:2!6 +2CO 8:2!7 +2CO 8:2!8 +2CO 8:2!9 +2CO 8:2!10 +2CO 8:2!11 +2CO 8:2!12 +2CO 8:2!13 +2CO 8:2!14 +2CO 8:2!15 +2CO 8:2!16 +2CO 8:2!17 +2CO 8:2!18 +2CO 8:2!19 +2CO 8:2!20 +2CO 8:2!21 +2CO 8:2!22 +2CO 8:2!23 +2CO 8:3!4 +2CO 8:3!1 +2CO 8:3!2 +2CO 8:3!3 +2CO 8:3!5 +2CO 8:3!6 +2CO 8:3!7 +2CO 8:3!8 +2CO 8:4!1 +2CO 8:4!2 +2CO 8:4!3 +2CO 8:4!4 +2CO 8:4!5 +2CO 8:4!6 +2CO 8:4!7 +2CO 8:4!8 +2CO 8:4!9 +2CO 8:4!10 +2CO 8:4!11 +2CO 8:4!12 +2CO 8:4!13 +2CO 8:4!14 +2CO 8:4!15 +2CO 8:4!16 +2CO 8:5!1 +2CO 8:5!2 +2CO 8:5!3 +2CO 8:5!4 +2CO 8:5!5 +2CO 8:5!6 +2CO 8:5!7 +2CO 8:5!8 +2CO 8:5!9 +2CO 8:5!10 +2CO 8:5!11 +2CO 8:5!12 +2CO 8:5!13 +2CO 8:5!14 +2CO 8:5!15 +2CO 8:6!1 +2CO 8:6!2 +2CO 8:6!3 +2CO 8:6!4 +2CO 8:6!5 +2CO 8:6!6 +2CO 8:6!7 +2CO 8:6!8 +2CO 8:6!9 +2CO 8:6!10 +2CO 8:6!11 +2CO 8:6!12 +2CO 8:6!13 +2CO 8:6!14 +2CO 8:6!15 +2CO 8:6!16 +2CO 8:6!17 +2CO 8:7!1 +2CO 8:7!2 +2CO 8:7!3 +2CO 8:7!4 +2CO 8:7!5 +2CO 8:7!6 +2CO 8:7!7 +2CO 8:7!8 +2CO 8:7!9 +2CO 8:7!10 +2CO 8:7!11 +2CO 8:7!12 +2CO 8:7!13 +2CO 8:7!14 +2CO 8:7!15 +2CO 8:7!16 +2CO 8:7!17 +2CO 8:7!18 +2CO 8:7!19 +2CO 8:7!20 +2CO 8:7!21 +2CO 8:7!22 +2CO 8:7!23 +2CO 8:7!24 +2CO 8:7!25 +2CO 8:7!26 +2CO 8:7!27 +2CO 8:8!1 +2CO 8:8!2 +2CO 8:8!3 +2CO 8:8!4 +2CO 8:8!5 +2CO 8:8!6 +2CO 8:8!7 +2CO 8:8!8 +2CO 8:8!9 +2CO 8:8!10 +2CO 8:8!11 +2CO 8:8!12 +2CO 8:8!13 +2CO 8:8!14 +2CO 8:8!15 +2CO 8:8!16 +2CO 8:9!2 +2CO 8:9!1 +2CO 8:9!3 +2CO 8:9!4 +2CO 8:9!5 +2CO 8:9!6 +2CO 8:9!7 +2CO 8:9!8 +2CO 8:9!9 +2CO 8:9!10 +2CO 8:9!11 +2CO 8:9!12 +2CO 8:9!13 +2CO 8:9!14 +2CO 8:9!15 +2CO 8:9!16 +2CO 8:9!17 +2CO 8:9!18 +2CO 8:9!19 +2CO 8:9!20 +2CO 8:9!21 +2CO 8:10!1 +2CO 8:10!2 +2CO 8:10!3 +2CO 8:10!4 +2CO 8:10!5 +2CO 8:10!7 +2CO 8:10!6 +2CO 8:10!8 +2CO 8:10!9 +2CO 8:10!10 +2CO 8:10!11 +2CO 8:10!12 +2CO 8:10!13 +2CO 8:10!14 +2CO 8:10!15 +2CO 8:10!16 +2CO 8:10!17 +2CO 8:10!18 +2CO 8:10!19 +2CO 8:10!20 +2CO 8:10!21 +2CO 8:11!2 +2CO 8:11!1 +2CO 8:11!3 +2CO 8:11!4 +2CO 8:11!5 +2CO 8:11!6 +2CO 8:11!7 +2CO 8:11!8 +2CO 8:11!9 +2CO 8:11!10 +2CO 8:11!11 +2CO 8:11!12 +2CO 8:11!13 +2CO 8:11!14 +2CO 8:11!15 +2CO 8:11!16 +2CO 8:11!17 +2CO 8:11!18 +2CO 8:11!19 +2CO 8:12!2 +2CO 8:12!1 +2CO 8:12!3 +2CO 8:12!4 +2CO 8:12!5 +2CO 8:12!6 +2CO 8:12!7 +2CO 8:12!8 +2CO 8:12!9 +2CO 8:12!10 +2CO 8:12!11 +2CO 8:12!12 +2CO 8:12!13 +2CO 8:13!2 +2CO 8:13!1 +2CO 8:13!3 +2CO 8:13!4 +2CO 8:13!5 +2CO 8:13!6 +2CO 8:13!7 +2CO 8:13!8 +2CO 8:13!9 +2CO 8:13!10 +2CO 8:14!1 +2CO 8:14!2 +2CO 8:14!3 +2CO 8:14!4 +2CO 8:14!5 +2CO 8:14!6 +2CO 8:14!7 +2CO 8:14!8 +2CO 8:14!9 +2CO 8:14!10 +2CO 8:14!11 +2CO 8:14!12 +2CO 8:14!13 +2CO 8:14!14 +2CO 8:14!15 +2CO 8:14!16 +2CO 8:14!17 +2CO 8:14!18 +2CO 8:14!19 +2CO 8:14!20 +2CO 8:14!21 +2CO 8:14!22 +2CO 8:14!23 +2CO 8:14!24 +2CO 8:15!1 +2CO 8:15!2 +2CO 8:15!3 +2CO 8:15!4 +2CO 8:15!5 +2CO 8:15!6 +2CO 8:15!7 +2CO 8:15!8 +2CO 8:15!9 +2CO 8:15!10 +2CO 8:15!11 +2CO 8:15!12 +2CO 8:15!13 +2CO 8:16!2 +2CO 8:16!1 +2CO 8:16!3 +2CO 8:16!4 +2CO 8:16!5 +2CO 8:16!6 +2CO 8:16!7 +2CO 8:16!8 +2CO 8:16!9 +2CO 8:16!10 +2CO 8:16!11 +2CO 8:16!12 +2CO 8:16!13 +2CO 8:16!14 +2CO 8:16!15 +2CO 8:17!1 +2CO 8:17!3 +2CO 8:17!2 +2CO 8:17!4 +2CO 8:17!5 +2CO 8:17!7 +2CO 8:17!6 +2CO 8:17!8 +2CO 8:17!9 +2CO 8:17!10 +2CO 8:17!11 +2CO 8:17!12 +2CO 8:18!2 +2CO 8:18!1 +2CO 8:18!3 +2CO 8:18!4 +2CO 8:18!5 +2CO 8:18!6 +2CO 8:18!7 +2CO 8:18!8 +2CO 8:18!9 +2CO 8:18!10 +2CO 8:18!11 +2CO 8:18!12 +2CO 8:18!13 +2CO 8:18!14 +2CO 8:18!15 +2CO 8:18!16 +2CO 8:19!3 +2CO 8:19!1 +2CO 8:19!2 +2CO 8:19!4 +2CO 8:19!5 +2CO 8:19!6 +2CO 8:19!7 +2CO 8:19!8 +2CO 8:19!9 +2CO 8:19!10 +2CO 8:19!11 +2CO 8:19!12 +2CO 8:19!13 +2CO 8:19!14 +2CO 8:19!15 +2CO 8:19!16 +2CO 8:19!17 +2CO 8:19!18 +2CO 8:19!19 +2CO 8:19!20 +2CO 8:19!21 +2CO 8:19!22 +2CO 8:19!23 +2CO 8:19!24 +2CO 8:19!25 +2CO 8:19!26 +2CO 8:19!27 +2CO 8:19!28 +2CO 8:20!1 +2CO 8:20!2 +2CO 8:20!3 +2CO 8:20!4 +2CO 8:20!5 +2CO 8:20!6 +2CO 8:20!7 +2CO 8:20!8 +2CO 8:20!9 +2CO 8:20!10 +2CO 8:20!11 +2CO 8:20!12 +2CO 8:20!13 +2CO 8:20!14 +2CO 8:21!2 +2CO 8:21!1 +2CO 8:21!3 +2CO 8:21!4 +2CO 8:21!5 +2CO 8:21!6 +2CO 8:21!7 +2CO 8:21!8 +2CO 8:21!9 +2CO 8:21!10 +2CO 8:21!11 +2CO 8:22!2 +2CO 8:22!1 +2CO 8:22!3 +2CO 8:22!4 +2CO 8:22!5 +2CO 8:22!6 +2CO 8:22!7 +2CO 8:22!8 +2CO 8:22!9 +2CO 8:22!10 +2CO 8:22!11 +2CO 8:22!12 +2CO 8:22!13 +2CO 8:22!15 +2CO 8:22!14 +2CO 8:22!16 +2CO 8:22!17 +2CO 8:22!18 +2CO 8:22!19 +2CO 8:22!20 +2CO 8:22!21 +2CO 8:22!22 +2CO 8:23!1 +2CO 8:23!2 +2CO 8:23!3 +2CO 8:23!4 +2CO 8:23!5 +2CO 8:23!6 +2CO 8:23!7 +2CO 8:23!8 +2CO 8:23!9 +2CO 8:23!10 +2CO 8:23!11 +2CO 8:23!12 +2CO 8:23!13 +2CO 8:23!14 +2CO 8:23!15 +2CO 8:23!16 +2CO 8:24!2 +2CO 8:24!1 +2CO 8:24!3 +2CO 8:24!4 +2CO 8:24!5 +2CO 8:24!6 +2CO 8:24!7 +2CO 8:24!8 +2CO 8:24!9 +2CO 8:24!10 +2CO 8:24!11 +2CO 8:24!12 +2CO 8:24!13 +2CO 8:24!14 +2CO 8:24!15 +2CO 8:24!16 +2CO 8:24!17 +2CO 8:24!18 +2CO 9:1!3 +2CO 9:1!2 +2CO 9:1!1 +2CO 9:1!4 +2CO 9:1!5 +2CO 9:1!6 +2CO 9:1!7 +2CO 9:1!8 +2CO 9:1!9 +2CO 9:1!10 +2CO 9:1!11 +2CO 9:1!12 +2CO 9:1!13 +2CO 9:1!14 +2CO 9:1!15 +2CO 9:2!2 +2CO 9:2!1 +2CO 9:2!3 +2CO 9:2!4 +2CO 9:2!5 +2CO 9:2!6 +2CO 9:2!7 +2CO 9:2!8 +2CO 9:2!9 +2CO 9:2!10 +2CO 9:2!11 +2CO 9:2!12 +2CO 9:2!13 +2CO 9:2!14 +2CO 9:2!15 +2CO 9:2!16 +2CO 9:2!17 +2CO 9:2!18 +2CO 9:2!19 +2CO 9:2!20 +2CO 9:2!21 +2CO 9:2!22 +2CO 9:3!2 +2CO 9:3!1 +2CO 9:3!3 +2CO 9:3!4 +2CO 9:3!5 +2CO 9:3!6 +2CO 9:3!7 +2CO 9:3!8 +2CO 9:3!9 +2CO 9:3!10 +2CO 9:3!11 +2CO 9:3!12 +2CO 9:3!13 +2CO 9:3!14 +2CO 9:3!15 +2CO 9:3!16 +2CO 9:3!17 +2CO 9:3!18 +2CO 9:3!19 +2CO 9:3!20 +2CO 9:3!21 +2CO 9:3!22 +2CO 9:4!1 +2CO 9:4!2 +2CO 9:4!3 +2CO 9:4!4 +2CO 9:4!5 +2CO 9:4!6 +2CO 9:4!7 +2CO 9:4!8 +2CO 9:4!9 +2CO 9:4!10 +2CO 9:4!11 +2CO 9:4!12 +2CO 9:4!13 +2CO 9:4!14 +2CO 9:4!15 +2CO 9:4!16 +2CO 9:4!17 +2CO 9:4!18 +2CO 9:4!19 +2CO 9:4!20 +2CO 9:4!21 +2CO 9:5!2 +2CO 9:5!1 +2CO 9:5!3 +2CO 9:5!4 +2CO 9:5!5 +2CO 9:5!6 +2CO 9:5!7 +2CO 9:5!8 +2CO 9:5!9 +2CO 9:5!10 +2CO 9:5!11 +2CO 9:5!12 +2CO 9:5!13 +2CO 9:5!14 +2CO 9:5!15 +2CO 9:5!16 +2CO 9:5!17 +2CO 9:5!18 +2CO 9:5!19 +2CO 9:5!20 +2CO 9:5!21 +2CO 9:5!22 +2CO 9:5!23 +2CO 9:5!24 +2CO 9:5!25 +2CO 9:5!26 +2CO 9:6!2 +2CO 9:6!1 +2CO 9:6!3 +2CO 9:6!4 +2CO 9:6!5 +2CO 9:6!6 +2CO 9:6!7 +2CO 9:6!8 +2CO 9:6!9 +2CO 9:6!10 +2CO 9:6!11 +2CO 9:6!12 +2CO 9:6!13 +2CO 9:6!14 +2CO 9:6!15 +2CO 9:6!16 +2CO 9:6!17 +2CO 9:7!1 +2CO 9:7!2 +2CO 9:7!3 +2CO 9:7!4 +2CO 9:7!5 +2CO 9:7!6 +2CO 9:7!7 +2CO 9:7!8 +2CO 9:7!9 +2CO 9:7!10 +2CO 9:7!11 +2CO 9:7!13 +2CO 9:7!12 +2CO 9:7!14 +2CO 9:7!15 +2CO 9:7!16 +2CO 9:7!17 +2CO 9:8!2 +2CO 9:8!1 +2CO 9:8!3 +2CO 9:8!4 +2CO 9:8!5 +2CO 9:8!6 +2CO 9:8!7 +2CO 9:8!8 +2CO 9:8!9 +2CO 9:8!10 +2CO 9:8!11 +2CO 9:8!12 +2CO 9:8!13 +2CO 9:8!14 +2CO 9:8!15 +2CO 9:8!16 +2CO 9:8!17 +2CO 9:8!18 +2CO 9:8!19 +2CO 9:8!20 +2CO 9:8!21 +2CO 9:9!1 +2CO 9:9!2 +2CO 9:9!3 +2CO 9:9!4 +2CO 9:9!5 +2CO 9:9!6 +2CO 9:9!7 +2CO 9:9!8 +2CO 9:9!9 +2CO 9:9!10 +2CO 9:9!11 +2CO 9:9!12 +2CO 9:9!13 +2CO 9:10!2 +2CO 9:10!1 +2CO 9:10!3 +2CO 9:10!4 +2CO 9:10!5 +2CO 9:10!6 +2CO 9:10!7 +2CO 9:10!8 +2CO 9:10!9 +2CO 9:10!10 +2CO 9:10!11 +2CO 9:10!12 +2CO 9:10!13 +2CO 9:10!14 +2CO 9:10!15 +2CO 9:10!16 +2CO 9:10!17 +2CO 9:10!18 +2CO 9:10!19 +2CO 9:10!20 +2CO 9:10!21 +2CO 9:10!22 +2CO 9:10!23 +2CO 9:11!1 +2CO 9:11!2 +2CO 9:11!3 +2CO 9:11!4 +2CO 9:11!5 +2CO 9:11!6 +2CO 9:11!7 +2CO 9:11!8 +2CO 9:11!9 +2CO 9:11!10 +2CO 9:11!11 +2CO 9:11!12 +2CO 9:11!13 +2CO 9:12!1 +2CO 9:12!2 +2CO 9:12!3 +2CO 9:12!4 +2CO 9:12!5 +2CO 9:12!6 +2CO 9:12!7 +2CO 9:12!8 +2CO 9:12!9 +2CO 9:12!10 +2CO 9:12!11 +2CO 9:12!12 +2CO 9:12!13 +2CO 9:12!14 +2CO 9:12!15 +2CO 9:12!16 +2CO 9:12!17 +2CO 9:12!18 +2CO 9:12!19 +2CO 9:12!20 +2CO 9:12!21 +2CO 9:12!22 +2CO 9:13!1 +2CO 9:13!2 +2CO 9:13!3 +2CO 9:13!4 +2CO 9:13!5 +2CO 9:13!6 +2CO 9:13!7 +2CO 9:13!8 +2CO 9:13!9 +2CO 9:13!10 +2CO 9:13!11 +2CO 9:13!12 +2CO 9:13!13 +2CO 9:13!14 +2CO 9:13!15 +2CO 9:13!16 +2CO 9:13!17 +2CO 9:13!18 +2CO 9:13!19 +2CO 9:13!20 +2CO 9:13!21 +2CO 9:13!22 +2CO 9:13!23 +2CO 9:13!24 +2CO 9:13!25 +2CO 9:13!26 +2CO 9:13!27 +2CO 9:13!28 +2CO 9:13!29 +2CO 9:14!1 +2CO 9:14!2 +2CO 9:14!3 +2CO 9:14!4 +2CO 9:14!5 +2CO 9:14!6 +2CO 9:14!7 +2CO 9:14!8 +2CO 9:14!9 +2CO 9:14!10 +2CO 9:14!11 +2CO 9:14!12 +2CO 9:14!13 +2CO 9:14!14 +2CO 9:14!15 +2CO 9:15!1 +2CO 9:15!2 +2CO 9:15!3 +2CO 9:15!4 +2CO 9:15!5 +2CO 9:15!6 +2CO 9:15!7 +2CO 9:15!8 +2CO 10:1!2 +2CO 10:1!1 +2CO 10:1!3 +2CO 10:1!4 +2CO 10:1!5 +2CO 10:1!6 +2CO 10:1!7 +2CO 10:1!8 +2CO 10:1!9 +2CO 10:1!10 +2CO 10:1!11 +2CO 10:1!12 +2CO 10:1!13 +2CO 10:1!14 +2CO 10:1!17 +2CO 10:1!15 +2CO 10:1!16 +2CO 10:1!18 +2CO 10:1!19 +2CO 10:1!20 +2CO 10:1!22 +2CO 10:1!21 +2CO 10:1!23 +2CO 10:1!24 +2CO 10:1!25 +2CO 10:2!2 +2CO 10:2!1 +2CO 10:2!3 +2CO 10:2!4 +2CO 10:2!5 +2CO 10:2!6 +2CO 10:2!7 +2CO 10:2!8 +2CO 10:2!9 +2CO 10:2!10 +2CO 10:2!11 +2CO 10:2!12 +2CO 10:2!13 +2CO 10:2!14 +2CO 10:2!15 +2CO 10:2!16 +2CO 10:2!17 +2CO 10:2!18 +2CO 10:2!19 +2CO 10:2!20 +2CO 10:3!3 +2CO 10:3!1 +2CO 10:3!2 +2CO 10:3!4 +2CO 10:3!5 +2CO 10:3!6 +2CO 10:3!7 +2CO 10:3!8 +2CO 10:4!2 +2CO 10:4!1 +2CO 10:4!3 +2CO 10:4!4 +2CO 10:4!5 +2CO 10:4!6 +2CO 10:4!7 +2CO 10:4!8 +2CO 10:4!9 +2CO 10:4!10 +2CO 10:4!11 +2CO 10:4!12 +2CO 10:4!13 +2CO 10:4!14 +2CO 10:4!15 +2CO 10:4!17 +2CO 10:4!16 +2CO 10:5!1 +2CO 10:5!2 +2CO 10:5!3 +2CO 10:5!4 +2CO 10:5!5 +2CO 10:5!6 +2CO 10:5!7 +2CO 10:5!8 +2CO 10:5!9 +2CO 10:5!10 +2CO 10:5!11 +2CO 10:5!12 +2CO 10:5!13 +2CO 10:5!14 +2CO 10:5!15 +2CO 10:5!16 +2CO 10:5!17 +2CO 10:5!18 +2CO 10:6!1 +2CO 10:6!2 +2CO 10:6!3 +2CO 10:6!4 +2CO 10:6!5 +2CO 10:6!6 +2CO 10:6!7 +2CO 10:6!8 +2CO 10:6!9 +2CO 10:6!10 +2CO 10:6!11 +2CO 10:6!12 +2CO 10:7!1 +2CO 10:7!2 +2CO 10:7!3 +2CO 10:7!4 +2CO 10:7!5 +2CO 10:7!6 +2CO 10:7!7 +2CO 10:7!8 +2CO 10:7!9 +2CO 10:7!10 +2CO 10:7!11 +2CO 10:7!12 +2CO 10:7!13 +2CO 10:7!14 +2CO 10:7!15 +2CO 10:7!16 +2CO 10:7!17 +2CO 10:7!18 +2CO 10:7!19 +2CO 10:7!20 +2CO 10:7!21 +2CO 10:7!22 +2CO 10:8!3 +2CO 10:8!1 +2CO 10:8!2 +2CO 10:8!4 +2CO 10:8!5 +2CO 10:8!6 +2CO 10:8!7 +2CO 10:8!8 +2CO 10:8!9 +2CO 10:8!10 +2CO 10:8!11 +2CO 10:8!12 +2CO 10:8!13 +2CO 10:8!14 +2CO 10:8!15 +2CO 10:8!16 +2CO 10:8!17 +2CO 10:8!18 +2CO 10:8!19 +2CO 10:8!20 +2CO 10:8!21 +2CO 10:8!22 +2CO 10:8!23 +2CO 10:9!1 +2CO 10:9!2 +2CO 10:9!3 +2CO 10:9!4 +2CO 10:9!5 +2CO 10:9!6 +2CO 10:9!7 +2CO 10:9!8 +2CO 10:9!9 +2CO 10:9!10 +2CO 10:10!1 +2CO 10:10!5 +2CO 10:10!4 +2CO 10:10!2 +2CO 10:10!3 +2CO 10:10!6 +2CO 10:10!7 +2CO 10:10!8 +2CO 10:10!10 +2CO 10:10!9 +2CO 10:10!11 +2CO 10:10!12 +2CO 10:10!13 +2CO 10:10!14 +2CO 10:10!15 +2CO 10:10!16 +2CO 10:10!17 +2CO 10:10!18 +2CO 10:11!1 +2CO 10:11!2 +2CO 10:11!3 +2CO 10:11!4 +2CO 10:11!5 +2CO 10:11!6 +2CO 10:11!7 +2CO 10:11!8 +2CO 10:11!9 +2CO 10:11!10 +2CO 10:11!11 +2CO 10:11!12 +2CO 10:11!13 +2CO 10:11!14 +2CO 10:11!15 +2CO 10:11!16 +2CO 10:11!17 +2CO 10:12!2 +2CO 10:12!1 +2CO 10:12!3 +2CO 10:12!4 +2CO 10:12!5 +2CO 10:12!6 +2CO 10:12!7 +2CO 10:12!8 +2CO 10:12!9 +2CO 10:12!10 +2CO 10:12!11 +2CO 10:12!12 +2CO 10:12!13 +2CO 10:12!14 +2CO 10:12!15 +2CO 10:12!16 +2CO 10:12!17 +2CO 10:12!18 +2CO 10:12!19 +2CO 10:12!20 +2CO 10:12!21 +2CO 10:12!22 +2CO 10:12!23 +2CO 10:13!2 +2CO 10:13!1 +2CO 10:13!3 +2CO 10:13!4 +2CO 10:13!5 +2CO 10:13!6 +2CO 10:13!7 +2CO 10:13!8 +2CO 10:13!9 +2CO 10:13!10 +2CO 10:13!11 +2CO 10:13!12 +2CO 10:13!13 +2CO 10:13!14 +2CO 10:13!15 +2CO 10:13!16 +2CO 10:13!17 +2CO 10:13!18 +2CO 10:13!19 +2CO 10:13!20 +2CO 10:13!21 +2CO 10:13!22 +2CO 10:13!23 +2CO 10:14!2 +2CO 10:14!1 +2CO 10:14!3 +2CO 10:14!4 +2CO 10:14!5 +2CO 10:14!6 +2CO 10:14!7 +2CO 10:14!8 +2CO 10:14!9 +2CO 10:14!11 +2CO 10:14!10 +2CO 10:14!12 +2CO 10:14!13 +2CO 10:14!14 +2CO 10:14!15 +2CO 10:14!16 +2CO 10:14!17 +2CO 10:14!18 +2CO 10:14!19 +2CO 10:15!1 +2CO 10:15!2 +2CO 10:15!3 +2CO 10:15!4 +2CO 10:15!5 +2CO 10:15!6 +2CO 10:15!7 +2CO 10:15!8 +2CO 10:15!10 +2CO 10:15!9 +2CO 10:15!11 +2CO 10:15!12 +2CO 10:15!13 +2CO 10:15!14 +2CO 10:15!15 +2CO 10:15!16 +2CO 10:15!17 +2CO 10:15!18 +2CO 10:15!19 +2CO 10:15!20 +2CO 10:15!21 +2CO 10:15!22 +2CO 10:15!23 +2CO 10:15!24 +2CO 10:16!1 +2CO 10:16!2 +2CO 10:16!3 +2CO 10:16!4 +2CO 10:16!5 +2CO 10:16!6 +2CO 10:16!7 +2CO 10:16!8 +2CO 10:16!9 +2CO 10:16!10 +2CO 10:16!11 +2CO 10:16!12 +2CO 10:16!13 +2CO 10:17!2 +2CO 10:17!1 +2CO 10:17!3 +2CO 10:17!4 +2CO 10:17!5 +2CO 10:17!6 +2CO 10:18!2 +2CO 10:18!1 +2CO 10:18!3 +2CO 10:18!4 +2CO 10:18!5 +2CO 10:18!6 +2CO 10:18!7 +2CO 10:18!8 +2CO 10:18!9 +2CO 10:18!10 +2CO 10:18!11 +2CO 10:18!12 +2CO 10:18!13 +2CO 11:1!1 +2CO 11:1!2 +2CO 11:1!3 +2CO 11:1!4 +2CO 11:1!5 +2CO 11:1!6 +2CO 11:1!7 +2CO 11:1!8 +2CO 11:1!9 +2CO 11:1!10 +2CO 11:2!2 +2CO 11:2!1 +2CO 11:2!3 +2CO 11:2!4 +2CO 11:2!5 +2CO 11:2!7 +2CO 11:2!6 +2CO 11:2!8 +2CO 11:2!9 +2CO 11:2!10 +2CO 11:2!11 +2CO 11:2!12 +2CO 11:2!13 +2CO 11:2!14 +2CO 11:2!15 +2CO 11:3!2 +2CO 11:3!1 +2CO 11:3!3 +2CO 11:3!4 +2CO 11:3!5 +2CO 11:3!6 +2CO 11:3!7 +2CO 11:3!8 +2CO 11:3!9 +2CO 11:3!10 +2CO 11:3!11 +2CO 11:3!12 +2CO 11:3!13 +2CO 11:3!14 +2CO 11:3!15 +2CO 11:3!16 +2CO 11:3!17 +2CO 11:3!18 +2CO 11:3!19 +2CO 11:3!20 +2CO 11:3!21 +2CO 11:3!22 +2CO 11:3!23 +2CO 11:3!24 +2CO 11:3!25 +2CO 11:3!26 +2CO 11:4!3 +2CO 11:4!2 +2CO 11:4!1 +2CO 11:4!4 +2CO 11:4!5 +2CO 11:4!8 +2CO 11:4!6 +2CO 11:4!7 +2CO 11:4!9 +2CO 11:4!10 +2CO 11:4!11 +2CO 11:4!12 +2CO 11:4!15 +2CO 11:4!13 +2CO 11:4!14 +2CO 11:4!16 +2CO 11:4!17 +2CO 11:4!18 +2CO 11:4!19 +2CO 11:4!20 +2CO 11:4!21 +2CO 11:4!22 +2CO 11:4!23 +2CO 11:4!24 +2CO 11:4!25 +2CO 11:4!26 +2CO 11:5!2 +2CO 11:5!1 +2CO 11:5!3 +2CO 11:5!4 +2CO 11:5!5 +2CO 11:5!6 +2CO 11:5!7 +2CO 11:6!2 +2CO 11:6!1 +2CO 11:6!3 +2CO 11:6!4 +2CO 11:6!5 +2CO 11:6!6 +2CO 11:6!7 +2CO 11:6!8 +2CO 11:6!9 +2CO 11:6!10 +2CO 11:6!11 +2CO 11:6!12 +2CO 11:6!13 +2CO 11:6!14 +2CO 11:6!15 +2CO 11:6!16 +2CO 11:6!17 +2CO 11:6!18 +2CO 11:7!1 +2CO 11:7!2 +2CO 11:7!3 +2CO 11:7!4 +2CO 11:7!5 +2CO 11:7!6 +2CO 11:7!7 +2CO 11:7!8 +2CO 11:7!9 +2CO 11:7!10 +2CO 11:7!11 +2CO 11:7!12 +2CO 11:7!13 +2CO 11:7!14 +2CO 11:7!15 +2CO 11:7!16 +2CO 11:8!1 +2CO 11:8!2 +2CO 11:8!3 +2CO 11:8!4 +2CO 11:8!5 +2CO 11:8!6 +2CO 11:8!7 +2CO 11:8!8 +2CO 11:8!9 +2CO 11:9!1 +2CO 11:9!2 +2CO 11:9!3 +2CO 11:9!4 +2CO 11:9!5 +2CO 11:9!6 +2CO 11:9!7 +2CO 11:9!8 +2CO 11:9!9 +2CO 11:9!11 +2CO 11:9!10 +2CO 11:9!12 +2CO 11:9!13 +2CO 11:9!14 +2CO 11:9!15 +2CO 11:9!16 +2CO 11:9!17 +2CO 11:9!18 +2CO 11:9!19 +2CO 11:9!20 +2CO 11:9!21 +2CO 11:9!22 +2CO 11:9!23 +2CO 11:9!24 +2CO 11:9!25 +2CO 11:9!26 +2CO 11:9!27 +2CO 11:9!28 +2CO 11:10!1 +2CO 11:10!2 +2CO 11:10!3 +2CO 11:10!4 +2CO 11:10!5 +2CO 11:10!6 +2CO 11:10!7 +2CO 11:10!8 +2CO 11:10!9 +2CO 11:10!10 +2CO 11:10!11 +2CO 11:10!12 +2CO 11:10!13 +2CO 11:10!14 +2CO 11:10!15 +2CO 11:10!16 +2CO 11:10!17 +2CO 11:10!18 +2CO 11:11!1 +2CO 11:11!2 +2CO 11:11!3 +2CO 11:11!4 +2CO 11:11!5 +2CO 11:11!6 +2CO 11:11!7 +2CO 11:11!8 +2CO 11:11!9 +2CO 11:12!2 +2CO 11:12!1 +2CO 11:12!3 +2CO 11:12!4 +2CO 11:12!5 +2CO 11:12!6 +2CO 11:12!7 +2CO 11:12!8 +2CO 11:12!9 +2CO 11:12!10 +2CO 11:12!11 +2CO 11:12!12 +2CO 11:12!13 +2CO 11:12!14 +2CO 11:12!15 +2CO 11:12!16 +2CO 11:12!17 +2CO 11:12!18 +2CO 11:12!19 +2CO 11:12!20 +2CO 11:13!2 +2CO 11:13!1 +2CO 11:13!3 +2CO 11:13!4 +2CO 11:13!5 +2CO 11:13!6 +2CO 11:13!7 +2CO 11:13!8 +2CO 11:13!9 +2CO 11:13!10 +2CO 11:14!1 +2CO 11:14!2 +2CO 11:14!3 +2CO 11:14!5 +2CO 11:14!4 +2CO 11:14!6 +2CO 11:14!7 +2CO 11:14!8 +2CO 11:14!9 +2CO 11:14!10 +2CO 11:14!11 +2CO 11:15!3 +2CO 11:15!1 +2CO 11:15!2 +2CO 11:15!4 +2CO 11:15!5 +2CO 11:15!6 +2CO 11:15!7 +2CO 11:15!8 +2CO 11:15!9 +2CO 11:15!10 +2CO 11:15!11 +2CO 11:15!12 +2CO 11:15!13 +2CO 11:15!14 +2CO 11:15!15 +2CO 11:15!16 +2CO 11:15!17 +2CO 11:15!18 +2CO 11:15!19 +2CO 11:15!20 +2CO 11:16!1 +2CO 11:16!2 +2CO 11:16!3 +2CO 11:16!4 +2CO 11:16!6 +2CO 11:16!5 +2CO 11:16!7 +2CO 11:16!8 +2CO 11:16!10 +2CO 11:16!9 +2CO 11:16!11 +2CO 11:16!12 +2CO 11:16!13 +2CO 11:16!14 +2CO 11:16!15 +2CO 11:16!16 +2CO 11:16!17 +2CO 11:16!18 +2CO 11:16!19 +2CO 11:16!20 +2CO 11:16!21 +2CO 11:17!1 +2CO 11:17!2 +2CO 11:17!3 +2CO 11:17!4 +2CO 11:17!5 +2CO 11:17!6 +2CO 11:17!7 +2CO 11:17!8 +2CO 11:17!9 +2CO 11:17!10 +2CO 11:17!11 +2CO 11:17!12 +2CO 11:17!13 +2CO 11:17!14 +2CO 11:17!15 +2CO 11:17!16 +2CO 11:18!1 +2CO 11:18!2 +2CO 11:18!3 +2CO 11:18!4 +2CO 11:18!5 +2CO 11:18!6 +2CO 11:18!7 +2CO 11:18!8 +2CO 11:19!2 +2CO 11:19!1 +2CO 11:19!3 +2CO 11:19!4 +2CO 11:19!5 +2CO 11:19!6 +2CO 11:19!7 +2CO 11:20!2 +2CO 11:20!1 +2CO 11:20!3 +2CO 11:20!4 +2CO 11:20!5 +2CO 11:20!6 +2CO 11:20!7 +2CO 11:20!8 +2CO 11:20!9 +2CO 11:20!10 +2CO 11:20!11 +2CO 11:20!12 +2CO 11:20!13 +2CO 11:20!14 +2CO 11:20!15 +2CO 11:20!16 +2CO 11:20!17 +2CO 11:20!18 +2CO 11:20!19 +2CO 11:20!20 +2CO 11:20!21 +2CO 11:21!1 +2CO 11:21!2 +2CO 11:21!3 +2CO 11:21!4 +2CO 11:21!5 +2CO 11:21!6 +2CO 11:21!7 +2CO 11:21!10 +2CO 11:21!11 +2CO 11:21!8 +2CO 11:21!9 +2CO 11:21!12 +2CO 11:21!13 +2CO 11:21!14 +2CO 11:21!15 +2CO 11:21!16 +2CO 11:21!17 +2CO 11:21!18 +2CO 11:22!1 +2CO 11:22!2 +2CO 11:22!3 +2CO 11:22!4 +2CO 11:22!5 +2CO 11:22!6 +2CO 11:22!7 +2CO 11:22!8 +2CO 11:22!9 +2CO 11:22!10 +2CO 11:23!1 +2CO 11:23!2 +2CO 11:23!3 +2CO 11:23!4 +2CO 11:23!5 +2CO 11:23!6 +2CO 11:23!7 +2CO 11:23!8 +2CO 11:23!9 +2CO 11:23!10 +2CO 11:23!11 +2CO 11:23!12 +2CO 11:23!13 +2CO 11:23!14 +2CO 11:23!15 +2CO 11:23!16 +2CO 11:23!17 +2CO 11:23!18 +2CO 11:23!19 +2CO 11:24!1 +2CO 11:24!2 +2CO 11:24!3 +2CO 11:24!4 +2CO 11:24!5 +2CO 11:24!6 +2CO 11:24!7 +2CO 11:25!1 +2CO 11:25!2 +2CO 11:25!3 +2CO 11:25!4 +2CO 11:25!5 +2CO 11:25!6 +2CO 11:25!7 +2CO 11:25!8 +2CO 11:25!9 +2CO 11:25!10 +2CO 11:25!11 +2CO 11:26!1 +2CO 11:26!2 +2CO 11:26!3 +2CO 11:26!4 +2CO 11:26!5 +2CO 11:26!6 +2CO 11:26!7 +2CO 11:26!8 +2CO 11:26!9 +2CO 11:26!10 +2CO 11:26!11 +2CO 11:26!12 +2CO 11:26!13 +2CO 11:26!14 +2CO 11:26!15 +2CO 11:26!16 +2CO 11:26!17 +2CO 11:26!18 +2CO 11:26!19 +2CO 11:26!20 +2CO 11:26!21 +2CO 11:26!22 +2CO 11:26!23 +2CO 11:26!24 +2CO 11:27!1 +2CO 11:27!2 +2CO 11:27!3 +2CO 11:27!4 +2CO 11:27!5 +2CO 11:27!6 +2CO 11:27!7 +2CO 11:27!8 +2CO 11:27!9 +2CO 11:27!10 +2CO 11:27!11 +2CO 11:27!12 +2CO 11:27!13 +2CO 11:27!14 +2CO 11:27!15 +2CO 11:27!16 +2CO 11:27!17 +2CO 11:28!1 +2CO 11:28!2 +2CO 11:28!3 +2CO 11:28!4 +2CO 11:28!5 +2CO 11:28!6 +2CO 11:28!7 +2CO 11:28!8 +2CO 11:28!9 +2CO 11:28!10 +2CO 11:28!11 +2CO 11:28!12 +2CO 11:28!13 +2CO 11:28!14 +2CO 11:29!1 +2CO 11:29!2 +2CO 11:29!3 +2CO 11:29!4 +2CO 11:29!5 +2CO 11:29!6 +2CO 11:29!7 +2CO 11:29!8 +2CO 11:29!9 +2CO 11:29!10 +2CO 11:29!11 +2CO 11:30!1 +2CO 11:30!2 +2CO 11:30!3 +2CO 11:30!4 +2CO 11:30!5 +2CO 11:30!6 +2CO 11:30!7 +2CO 11:30!8 +2CO 11:31!1 +2CO 11:31!2 +2CO 11:31!3 +2CO 11:31!4 +2CO 11:31!5 +2CO 11:31!6 +2CO 11:31!7 +2CO 11:31!9 +2CO 11:31!10 +2CO 11:31!11 +2CO 11:31!12 +2CO 11:31!13 +2CO 11:31!14 +2CO 11:31!8 +2CO 11:31!15 +2CO 11:31!16 +2CO 11:31!17 +2CO 11:32!1 +2CO 11:32!2 +2CO 11:32!3 +2CO 11:32!4 +2CO 11:32!5 +2CO 11:32!6 +2CO 11:32!7 +2CO 11:32!8 +2CO 11:32!9 +2CO 11:32!10 +2CO 11:32!11 +2CO 11:32!12 +2CO 11:32!13 +2CO 11:33!1 +2CO 11:33!2 +2CO 11:33!3 +2CO 11:33!4 +2CO 11:33!5 +2CO 11:33!6 +2CO 11:33!7 +2CO 11:33!8 +2CO 11:33!9 +2CO 11:33!10 +2CO 11:33!11 +2CO 11:33!12 +2CO 11:33!13 +2CO 11:33!14 +2CO 12:1!1 +2CO 12:1!2 +2CO 12:1!5 +2CO 12:1!3 +2CO 12:1!4 +2CO 12:1!7 +2CO 12:1!6 +2CO 12:1!8 +2CO 12:1!9 +2CO 12:1!10 +2CO 12:1!11 +2CO 12:1!12 +2CO 12:2!1 +2CO 12:2!2 +2CO 12:2!3 +2CO 12:2!4 +2CO 12:2!8 +2CO 12:2!9 +2CO 12:2!10 +2CO 12:2!11 +2CO 12:2!12 +2CO 12:2!13 +2CO 12:2!14 +2CO 12:2!15 +2CO 12:2!16 +2CO 12:2!17 +2CO 12:2!18 +2CO 12:2!19 +2CO 12:2!20 +2CO 12:2!21 +2CO 12:2!5 +2CO 12:2!6 +2CO 12:2!7 +2CO 12:2!22 +2CO 12:2!23 +2CO 12:2!24 +2CO 12:2!25 +2CO 12:2!26 +2CO 12:2!27 +2CO 12:3!1 +2CO 12:3!2 +2CO 12:3!3 +2CO 12:3!4 +2CO 12:3!5 +2CO 12:3!6 +2CO 12:3!7 +2CO 12:3!8 +2CO 12:3!9 +2CO 12:3!10 +2CO 12:3!11 +2CO 12:3!12 +2CO 12:3!13 +2CO 12:3!14 +2CO 12:3!15 +2CO 12:3!16 +2CO 12:3!17 +2CO 12:4!1 +2CO 12:4!2 +2CO 12:4!3 +2CO 12:4!4 +2CO 12:4!5 +2CO 12:4!6 +2CO 12:4!7 +2CO 12:4!8 +2CO 12:4!9 +2CO 12:4!10 +2CO 12:4!14 +2CO 12:4!11 +2CO 12:4!12 +2CO 12:4!13 +2CO 12:5!1 +2CO 12:5!2 +2CO 12:5!3 +2CO 12:5!4 +2CO 12:5!6 +2CO 12:5!5 +2CO 12:5!7 +2CO 12:5!8 +2CO 12:5!9 +2CO 12:5!10 +2CO 12:5!11 +2CO 12:5!12 +2CO 12:5!13 +2CO 12:5!14 +2CO 12:6!2 +2CO 12:6!1 +2CO 12:6!3 +2CO 12:6!4 +2CO 12:6!5 +2CO 12:6!6 +2CO 12:6!7 +2CO 12:6!9 +2CO 12:6!8 +2CO 12:6!10 +2CO 12:6!12 +2CO 12:6!11 +2CO 12:6!13 +2CO 12:6!14 +2CO 12:6!15 +2CO 12:6!16 +2CO 12:6!17 +2CO 12:6!18 +2CO 12:6!19 +2CO 12:6!20 +2CO 12:6!21 +2CO 12:6!22 +2CO 12:6!23 +2CO 12:6!24 +2CO 12:6!25 +2CO 12:7!1 +2CO 12:7!2 +2CO 12:7!3 +2CO 12:7!4 +2CO 12:7!5 +2CO 12:7!6 +2CO 12:7!7 +2CO 12:7!8 +2CO 12:7!9 +2CO 12:7!10 +2CO 12:7!11 +2CO 12:7!12 +2CO 12:7!13 +2CO 12:7!14 +2CO 12:7!15 +2CO 12:7!16 +2CO 12:7!17 +2CO 12:7!18 +2CO 12:7!19 +2CO 12:7!20 +2CO 12:7!21 +2CO 12:7!22 +2CO 12:8!1 +2CO 12:8!2 +2CO 12:8!3 +2CO 12:8!4 +2CO 12:8!5 +2CO 12:8!6 +2CO 12:8!7 +2CO 12:8!8 +2CO 12:8!9 +2CO 12:8!10 +2CO 12:9!1 +2CO 12:9!2 +2CO 12:9!3 +2CO 12:9!4 +2CO 12:9!5 +2CO 12:9!6 +2CO 12:9!7 +2CO 12:9!8 +2CO 12:9!10 +2CO 12:9!9 +2CO 12:9!11 +2CO 12:9!12 +2CO 12:9!13 +2CO 12:9!14 +2CO 12:9!16 +2CO 12:9!15 +2CO 12:9!17 +2CO 12:9!18 +2CO 12:9!19 +2CO 12:9!20 +2CO 12:9!21 +2CO 12:9!22 +2CO 12:9!23 +2CO 12:9!24 +2CO 12:9!25 +2CO 12:9!26 +2CO 12:9!27 +2CO 12:9!28 +2CO 12:9!29 +2CO 12:10!1 +2CO 12:10!2 +2CO 12:10!3 +2CO 12:10!4 +2CO 12:10!5 +2CO 12:10!6 +2CO 12:10!7 +2CO 12:10!8 +2CO 12:10!9 +2CO 12:10!10 +2CO 12:10!11 +2CO 12:10!12 +2CO 12:10!13 +2CO 12:10!14 +2CO 12:10!16 +2CO 12:10!15 +2CO 12:10!17 +2CO 12:10!18 +2CO 12:10!19 +2CO 12:10!20 +2CO 12:11!1 +2CO 12:11!2 +2CO 12:11!3 +2CO 12:11!4 +2CO 12:11!5 +2CO 12:11!7 +2CO 12:11!6 +2CO 12:11!8 +2CO 12:11!9 +2CO 12:11!10 +2CO 12:11!11 +2CO 12:11!13 +2CO 12:11!12 +2CO 12:11!14 +2CO 12:11!15 +2CO 12:11!16 +2CO 12:11!17 +2CO 12:11!18 +2CO 12:11!19 +2CO 12:11!20 +2CO 12:11!21 +2CO 12:12!2 +2CO 12:12!1 +2CO 12:12!3 +2CO 12:12!4 +2CO 12:12!5 +2CO 12:12!6 +2CO 12:12!7 +2CO 12:12!8 +2CO 12:12!9 +2CO 12:12!10 +2CO 12:12!11 +2CO 12:12!13 +2CO 12:12!12 +2CO 12:12!14 +2CO 12:12!15 +2CO 12:12!16 +2CO 12:12!17 +2CO 12:13!2 +2CO 12:13!1 +2CO 12:13!3 +2CO 12:13!4 +2CO 12:13!5 +2CO 12:13!6 +2CO 12:13!7 +2CO 12:13!8 +2CO 12:13!9 +2CO 12:13!10 +2CO 12:13!11 +2CO 12:13!12 +2CO 12:13!13 +2CO 12:13!14 +2CO 12:13!15 +2CO 12:13!16 +2CO 12:13!17 +2CO 12:13!18 +2CO 12:13!19 +2CO 12:13!20 +2CO 12:13!21 +2CO 12:13!22 +2CO 12:14!1 +2CO 12:14!2 +2CO 12:14!3 +2CO 12:14!4 +2CO 12:14!5 +2CO 12:14!6 +2CO 12:14!7 +2CO 12:14!8 +2CO 12:14!9 +2CO 12:14!10 +2CO 12:14!11 +2CO 12:14!13 +2CO 12:14!12 +2CO 12:14!14 +2CO 12:14!15 +2CO 12:14!16 +2CO 12:14!17 +2CO 12:14!18 +2CO 12:14!20 +2CO 12:14!19 +2CO 12:14!21 +2CO 12:14!22 +2CO 12:14!23 +2CO 12:14!24 +2CO 12:14!25 +2CO 12:14!26 +2CO 12:14!27 +2CO 12:14!28 +2CO 12:14!29 +2CO 12:14!30 +2CO 12:14!31 +2CO 12:15!2 +2CO 12:15!1 +2CO 12:15!3 +2CO 12:15!4 +2CO 12:15!5 +2CO 12:15!6 +2CO 12:15!7 +2CO 12:15!8 +2CO 12:15!9 +2CO 12:15!10 +2CO 12:15!11 +2CO 12:15!12 +2CO 12:15!13 +2CO 12:15!14 +2CO 12:15!15 +2CO 12:15!16 +2CO 12:16!2 +2CO 12:16!1 +2CO 12:16!3 +2CO 12:16!4 +2CO 12:16!5 +2CO 12:16!6 +2CO 12:16!7 +2CO 12:16!8 +2CO 12:16!9 +2CO 12:16!10 +2CO 12:16!11 +2CO 12:16!12 +2CO 12:17!1 +2CO 12:17!2 +2CO 12:17!3 +2CO 12:17!4 +2CO 12:17!5 +2CO 12:17!6 +2CO 12:17!7 +2CO 12:17!8 +2CO 12:17!9 +2CO 12:17!10 +2CO 12:18!1 +2CO 12:18!2 +2CO 12:18!3 +2CO 12:18!4 +2CO 12:18!5 +2CO 12:18!6 +2CO 12:18!7 +2CO 12:18!8 +2CO 12:18!9 +2CO 12:18!10 +2CO 12:18!11 +2CO 12:18!12 +2CO 12:18!13 +2CO 12:18!14 +2CO 12:18!15 +2CO 12:18!16 +2CO 12:18!17 +2CO 12:18!18 +2CO 12:18!19 +2CO 12:19!1 +2CO 12:19!2 +2CO 12:19!3 +2CO 12:19!4 +2CO 12:19!5 +2CO 12:19!6 +2CO 12:19!7 +2CO 12:19!8 +2CO 12:19!9 +2CO 12:19!10 +2CO 12:19!12 +2CO 12:19!14 +2CO 12:19!11 +2CO 12:19!13 +2CO 12:19!15 +2CO 12:19!16 +2CO 12:19!17 +2CO 12:19!18 +2CO 12:20!2 +2CO 12:20!1 +2CO 12:20!3 +2CO 12:20!4 +2CO 12:20!5 +2CO 12:20!6 +2CO 12:20!7 +2CO 12:20!8 +2CO 12:20!9 +2CO 12:20!10 +2CO 12:20!11 +2CO 12:20!12 +2CO 12:20!13 +2CO 12:20!14 +2CO 12:20!15 +2CO 12:20!16 +2CO 12:20!17 +2CO 12:20!18 +2CO 12:20!19 +2CO 12:20!20 +2CO 12:20!21 +2CO 12:20!22 +2CO 12:20!23 +2CO 12:20!24 +2CO 12:20!25 +2CO 12:20!26 +2CO 12:21!1 +2CO 12:21!2 +2CO 12:21!3 +2CO 12:21!4 +2CO 12:21!5 +2CO 12:21!6 +2CO 12:21!7 +2CO 12:21!8 +2CO 12:21!9 +2CO 12:21!10 +2CO 12:21!11 +2CO 12:21!12 +2CO 12:21!13 +2CO 12:21!14 +2CO 12:21!15 +2CO 12:21!16 +2CO 12:21!17 +2CO 12:21!18 +2CO 12:21!19 +2CO 12:21!20 +2CO 12:21!21 +2CO 12:21!22 +2CO 12:21!23 +2CO 12:21!24 +2CO 12:21!25 +2CO 12:21!26 +2CO 12:21!27 +2CO 12:21!28 +2CO 13:1!1 +2CO 13:1!2 +2CO 13:1!3 +2CO 13:1!4 +2CO 13:1!5 +2CO 13:1!6 +2CO 13:1!7 +2CO 13:1!8 +2CO 13:1!9 +2CO 13:1!10 +2CO 13:1!11 +2CO 13:1!12 +2CO 13:1!13 +2CO 13:1!14 +2CO 13:2!1 +2CO 13:2!2 +2CO 13:2!3 +2CO 13:2!4 +2CO 13:2!5 +2CO 13:2!6 +2CO 13:2!7 +2CO 13:2!8 +2CO 13:2!9 +2CO 13:2!10 +2CO 13:2!11 +2CO 13:2!12 +2CO 13:2!13 +2CO 13:2!14 +2CO 13:2!15 +2CO 13:2!16 +2CO 13:2!17 +2CO 13:2!18 +2CO 13:2!19 +2CO 13:2!20 +2CO 13:2!21 +2CO 13:2!22 +2CO 13:2!23 +2CO 13:2!24 +2CO 13:3!1 +2CO 13:3!3 +2CO 13:3!2 +2CO 13:3!4 +2CO 13:3!5 +2CO 13:3!6 +2CO 13:3!7 +2CO 13:3!8 +2CO 13:3!9 +2CO 13:3!10 +2CO 13:3!11 +2CO 13:3!12 +2CO 13:3!13 +2CO 13:3!14 +2CO 13:3!15 +2CO 13:3!16 +2CO 13:3!17 +2CO 13:4!2 +2CO 13:4!1 +2CO 13:4!3 +2CO 13:4!4 +2CO 13:4!5 +2CO 13:4!6 +2CO 13:4!7 +2CO 13:4!8 +2CO 13:4!9 +2CO 13:4!10 +2CO 13:4!12 +2CO 13:4!11 +2CO 13:4!13 +2CO 13:4!14 +2CO 13:4!15 +2CO 13:4!16 +2CO 13:4!17 +2CO 13:4!18 +2CO 13:4!19 +2CO 13:4!20 +2CO 13:4!21 +2CO 13:4!22 +2CO 13:4!23 +2CO 13:4!24 +2CO 13:4!25 +2CO 13:5!1 +2CO 13:5!2 +2CO 13:5!3 +2CO 13:5!4 +2CO 13:5!5 +2CO 13:5!6 +2CO 13:5!7 +2CO 13:5!8 +2CO 13:5!9 +2CO 13:5!10 +2CO 13:5!11 +2CO 13:5!12 +2CO 13:5!13 +2CO 13:5!14 +2CO 13:5!15 +2CO 13:5!16 +2CO 13:5!17 +2CO 13:5!18 +2CO 13:5!19 +2CO 13:5!20 +2CO 13:5!21 +2CO 13:5!22 +2CO 13:6!2 +2CO 13:6!1 +2CO 13:6!3 +2CO 13:6!4 +2CO 13:6!5 +2CO 13:6!6 +2CO 13:6!7 +2CO 13:6!8 +2CO 13:6!9 +2CO 13:7!2 +2CO 13:7!1 +2CO 13:7!3 +2CO 13:7!4 +2CO 13:7!5 +2CO 13:7!6 +2CO 13:7!7 +2CO 13:7!8 +2CO 13:7!9 +2CO 13:7!10 +2CO 13:7!11 +2CO 13:7!12 +2CO 13:7!13 +2CO 13:7!14 +2CO 13:7!15 +2CO 13:7!16 +2CO 13:7!17 +2CO 13:7!18 +2CO 13:7!19 +2CO 13:7!20 +2CO 13:7!21 +2CO 13:7!23 +2CO 13:7!22 +2CO 13:7!24 +2CO 13:7!25 +2CO 13:7!26 +2CO 13:8!2 +2CO 13:8!1 +2CO 13:8!3 +2CO 13:8!4 +2CO 13:8!5 +2CO 13:8!6 +2CO 13:8!7 +2CO 13:8!8 +2CO 13:8!9 +2CO 13:8!10 +2CO 13:8!11 +2CO 13:9!2 +2CO 13:9!1 +2CO 13:9!3 +2CO 13:9!4 +2CO 13:9!5 +2CO 13:9!7 +2CO 13:9!6 +2CO 13:9!8 +2CO 13:9!9 +2CO 13:9!11 +2CO 13:9!12 +2CO 13:9!10 +2CO 13:9!13 +2CO 13:9!14 +2CO 13:9!15 +2CO 13:10!1 +2CO 13:10!2 +2CO 13:10!3 +2CO 13:10!4 +2CO 13:10!5 +2CO 13:10!6 +2CO 13:10!7 +2CO 13:10!8 +2CO 13:10!9 +2CO 13:10!10 +2CO 13:10!11 +2CO 13:10!12 +2CO 13:10!13 +2CO 13:10!14 +2CO 13:10!15 +2CO 13:10!16 +2CO 13:10!17 +2CO 13:10!18 +2CO 13:10!19 +2CO 13:10!20 +2CO 13:10!21 +2CO 13:10!22 +2CO 13:10!23 +2CO 13:10!24 +2CO 13:11!2 +2CO 13:11!1 +2CO 13:11!3 +2CO 13:11!4 +2CO 13:11!5 +2CO 13:11!6 +2CO 13:11!7 +2CO 13:11!8 +2CO 13:11!9 +2CO 13:11!10 +2CO 13:11!11 +2CO 13:11!12 +2CO 13:11!13 +2CO 13:11!14 +2CO 13:11!15 +2CO 13:11!16 +2CO 13:11!17 +2CO 13:11!18 +2CO 13:11!19 +2CO 13:12!1 +2CO 13:12!2 +2CO 13:12!3 +2CO 13:12!4 +2CO 13:12!5 +2CO 13:12!6 +2CO 13:12!7 +2CO 13:12!8 +2CO 13:12!9 +2CO 13:12!10 +2CO 13:13!1 +2CO 13:13!2 +2CO 13:13!3 +2CO 13:13!4 +2CO 13:13!5 +2CO 13:13!6 +2CO 13:13!7 +2CO 13:13!8 +2CO 13:13!9 +2CO 13:13!10 +2CO 13:13!11 +2CO 13:13!12 +2CO 13:13!13 +2CO 13:13!14 +2CO 13:13!15 +2CO 13:13!16 +2CO 13:13!17 +2CO 13:13!18 +2CO 13:13!19 +2CO 13:13!20 +GAL 1:1!1 +GAL 1:1!2 +GAL 1:1!3 +GAL 1:1!4 +GAL 1:1!5 +GAL 1:1!6 +GAL 1:1!7 +GAL 1:1!8 +GAL 1:1!9 +GAL 1:1!10 +GAL 1:1!11 +GAL 1:1!12 +GAL 1:1!13 +GAL 1:1!14 +GAL 1:1!15 +GAL 1:1!16 +GAL 1:1!17 +GAL 1:1!18 +GAL 1:1!19 +GAL 1:1!20 +GAL 1:2!1 +GAL 1:2!2 +GAL 1:2!3 +GAL 1:2!4 +GAL 1:2!5 +GAL 1:2!6 +GAL 1:2!7 +GAL 1:2!8 +GAL 1:2!9 +GAL 1:2!10 +GAL 1:3!2 +GAL 1:3!1 +GAL 1:3!3 +GAL 1:3!4 +GAL 1:3!5 +GAL 1:3!6 +GAL 1:3!7 +GAL 1:3!8 +GAL 1:3!9 +GAL 1:3!10 +GAL 1:3!11 +GAL 1:3!12 +GAL 1:4!1 +GAL 1:4!2 +GAL 1:4!3 +GAL 1:4!4 +GAL 1:4!5 +GAL 1:4!6 +GAL 1:4!7 +GAL 1:4!8 +GAL 1:4!9 +GAL 1:4!10 +GAL 1:4!11 +GAL 1:4!12 +GAL 1:4!13 +GAL 1:4!14 +GAL 1:4!15 +GAL 1:4!16 +GAL 1:4!17 +GAL 1:4!18 +GAL 1:4!19 +GAL 1:4!20 +GAL 1:4!21 +GAL 1:4!22 +GAL 1:4!23 +GAL 1:4!24 +GAL 1:5!1 +GAL 1:5!2 +GAL 1:5!3 +GAL 1:5!4 +GAL 1:5!5 +GAL 1:5!6 +GAL 1:5!7 +GAL 1:5!8 +GAL 1:5!9 +GAL 1:6!1 +GAL 1:6!2 +GAL 1:6!3 +GAL 1:6!4 +GAL 1:6!5 +GAL 1:6!6 +GAL 1:6!7 +GAL 1:6!8 +GAL 1:6!9 +GAL 1:6!10 +GAL 1:6!11 +GAL 1:6!12 +GAL 1:6!13 +GAL 1:6!14 +GAL 1:6!15 +GAL 1:7!1 +GAL 1:7!2 +GAL 1:7!3 +GAL 1:7!4 +GAL 1:7!5 +GAL 1:7!6 +GAL 1:7!7 +GAL 1:7!8 +GAL 1:7!9 +GAL 1:7!10 +GAL 1:7!11 +GAL 1:7!12 +GAL 1:7!13 +GAL 1:7!14 +GAL 1:7!15 +GAL 1:7!16 +GAL 1:7!17 +GAL 1:7!18 +GAL 1:8!1 +GAL 1:8!2 +GAL 1:8!3 +GAL 1:8!4 +GAL 1:8!5 +GAL 1:8!6 +GAL 1:8!7 +GAL 1:8!8 +GAL 1:8!9 +GAL 1:8!10 +GAL 1:8!11 +GAL 1:8!12 +GAL 1:8!13 +GAL 1:8!14 +GAL 1:8!15 +GAL 1:8!16 +GAL 1:9!1 +GAL 1:9!2 +GAL 1:9!3 +GAL 1:9!4 +GAL 1:9!5 +GAL 1:9!6 +GAL 1:9!7 +GAL 1:9!8 +GAL 1:9!9 +GAL 1:9!10 +GAL 1:9!11 +GAL 1:9!12 +GAL 1:9!13 +GAL 1:9!14 +GAL 1:9!15 +GAL 1:10!2 +GAL 1:10!1 +GAL 1:10!4 +GAL 1:10!3 +GAL 1:10!5 +GAL 1:10!6 +GAL 1:10!7 +GAL 1:10!8 +GAL 1:10!9 +GAL 1:10!10 +GAL 1:10!11 +GAL 1:10!12 +GAL 1:10!13 +GAL 1:10!14 +GAL 1:10!15 +GAL 1:10!19 +GAL 1:10!16 +GAL 1:10!17 +GAL 1:10!18 +GAL 1:10!20 +GAL 1:11!2 +GAL 1:11!4 +GAL 1:11!1 +GAL 1:11!3 +GAL 1:11!5 +GAL 1:11!6 +GAL 1:11!7 +GAL 1:11!8 +GAL 1:11!9 +GAL 1:11!10 +GAL 1:11!11 +GAL 1:11!12 +GAL 1:11!13 +GAL 1:11!14 +GAL 1:11!15 +GAL 1:12!2 +GAL 1:12!1 +GAL 1:12!3 +GAL 1:12!4 +GAL 1:12!5 +GAL 1:12!6 +GAL 1:12!7 +GAL 1:12!8 +GAL 1:12!9 +GAL 1:12!10 +GAL 1:12!11 +GAL 1:12!12 +GAL 1:12!13 +GAL 1:12!14 +GAL 1:13!2 +GAL 1:13!1 +GAL 1:13!3 +GAL 1:13!4 +GAL 1:13!5 +GAL 1:13!6 +GAL 1:13!7 +GAL 1:13!8 +GAL 1:13!9 +GAL 1:13!10 +GAL 1:13!11 +GAL 1:13!12 +GAL 1:13!13 +GAL 1:13!14 +GAL 1:13!15 +GAL 1:13!16 +GAL 1:13!17 +GAL 1:13!18 +GAL 1:13!19 +GAL 1:13!20 +GAL 1:14!1 +GAL 1:14!2 +GAL 1:14!3 +GAL 1:14!4 +GAL 1:14!5 +GAL 1:14!6 +GAL 1:14!7 +GAL 1:14!8 +GAL 1:14!9 +GAL 1:14!10 +GAL 1:14!11 +GAL 1:14!12 +GAL 1:14!13 +GAL 1:14!15 +GAL 1:14!14 +GAL 1:14!16 +GAL 1:14!17 +GAL 1:14!18 +GAL 1:14!19 +GAL 1:15!2 +GAL 1:15!1 +GAL 1:15!3 +GAL 1:15!4 +GAL 1:15!5 +GAL 1:15!6 +GAL 1:15!7 +GAL 1:15!8 +GAL 1:15!9 +GAL 1:15!10 +GAL 1:15!11 +GAL 1:15!12 +GAL 1:15!13 +GAL 1:15!14 +GAL 1:15!15 +GAL 1:15!16 +GAL 1:16!1 +GAL 1:16!2 +GAL 1:16!3 +GAL 1:16!4 +GAL 1:16!5 +GAL 1:16!6 +GAL 1:16!7 +GAL 1:16!8 +GAL 1:16!9 +GAL 1:16!10 +GAL 1:16!11 +GAL 1:16!12 +GAL 1:16!13 +GAL 1:16!14 +GAL 1:16!15 +GAL 1:16!16 +GAL 1:16!17 +GAL 1:16!18 +GAL 1:17!1 +GAL 1:17!2 +GAL 1:17!3 +GAL 1:17!4 +GAL 1:17!5 +GAL 1:17!6 +GAL 1:17!7 +GAL 1:17!8 +GAL 1:17!9 +GAL 1:17!10 +GAL 1:17!11 +GAL 1:17!12 +GAL 1:17!13 +GAL 1:17!14 +GAL 1:17!15 +GAL 1:17!16 +GAL 1:17!17 +GAL 1:17!18 +GAL 1:18!1 +GAL 1:18!2 +GAL 1:18!3 +GAL 1:18!4 +GAL 1:18!5 +GAL 1:18!6 +GAL 1:18!7 +GAL 1:18!8 +GAL 1:18!9 +GAL 1:18!10 +GAL 1:18!11 +GAL 1:18!12 +GAL 1:18!13 +GAL 1:18!14 +GAL 1:18!15 +GAL 1:19!2 +GAL 1:19!1 +GAL 1:19!3 +GAL 1:19!4 +GAL 1:19!5 +GAL 1:19!6 +GAL 1:19!7 +GAL 1:19!8 +GAL 1:19!9 +GAL 1:19!10 +GAL 1:19!11 +GAL 1:19!12 +GAL 1:19!13 +GAL 1:20!2 +GAL 1:20!1 +GAL 1:20!3 +GAL 1:20!4 +GAL 1:20!5 +GAL 1:20!6 +GAL 1:20!7 +GAL 1:20!8 +GAL 1:20!9 +GAL 1:20!10 +GAL 1:20!11 +GAL 1:21!1 +GAL 1:21!2 +GAL 1:21!3 +GAL 1:21!4 +GAL 1:21!5 +GAL 1:21!6 +GAL 1:21!7 +GAL 1:21!8 +GAL 1:21!9 +GAL 1:21!10 +GAL 1:22!2 +GAL 1:22!1 +GAL 1:22!3 +GAL 1:22!4 +GAL 1:22!5 +GAL 1:22!6 +GAL 1:22!7 +GAL 1:22!8 +GAL 1:22!9 +GAL 1:22!10 +GAL 1:22!11 +GAL 1:22!12 +GAL 1:23!2 +GAL 1:23!1 +GAL 1:23!3 +GAL 1:23!4 +GAL 1:23!5 +GAL 1:23!6 +GAL 1:23!7 +GAL 1:23!8 +GAL 1:23!9 +GAL 1:23!10 +GAL 1:23!11 +GAL 1:23!12 +GAL 1:23!13 +GAL 1:23!14 +GAL 1:23!15 +GAL 1:23!16 +GAL 1:24!1 +GAL 1:24!2 +GAL 1:24!3 +GAL 1:24!4 +GAL 1:24!5 +GAL 1:24!6 +GAL 2:1!1 +GAL 2:1!2 +GAL 2:1!3 +GAL 2:1!4 +GAL 2:1!5 +GAL 2:1!6 +GAL 2:1!7 +GAL 2:1!8 +GAL 2:1!9 +GAL 2:1!10 +GAL 2:1!11 +GAL 2:1!12 +GAL 2:1!13 +GAL 2:2!2 +GAL 2:2!1 +GAL 2:2!3 +GAL 2:2!4 +GAL 2:2!5 +GAL 2:2!6 +GAL 2:2!7 +GAL 2:2!8 +GAL 2:2!9 +GAL 2:2!10 +GAL 2:2!11 +GAL 2:2!12 +GAL 2:2!13 +GAL 2:2!14 +GAL 2:2!17 +GAL 2:2!15 +GAL 2:2!16 +GAL 2:2!18 +GAL 2:2!19 +GAL 2:2!20 +GAL 2:2!21 +GAL 2:2!22 +GAL 2:2!23 +GAL 2:2!24 +GAL 2:2!25 +GAL 2:2!26 +GAL 2:3!1 +GAL 2:3!2 +GAL 2:3!3 +GAL 2:3!4 +GAL 2:3!5 +GAL 2:3!6 +GAL 2:3!7 +GAL 2:3!8 +GAL 2:3!9 +GAL 2:3!10 +GAL 2:4!2 +GAL 2:4!1 +GAL 2:4!3 +GAL 2:4!4 +GAL 2:4!5 +GAL 2:4!6 +GAL 2:4!7 +GAL 2:4!8 +GAL 2:4!9 +GAL 2:4!10 +GAL 2:4!11 +GAL 2:4!12 +GAL 2:4!13 +GAL 2:4!14 +GAL 2:4!15 +GAL 2:4!16 +GAL 2:4!17 +GAL 2:4!18 +GAL 2:4!19 +GAL 2:5!1 +GAL 2:5!2 +GAL 2:5!3 +GAL 2:5!4 +GAL 2:5!5 +GAL 2:5!6 +GAL 2:5!7 +GAL 2:5!8 +GAL 2:5!9 +GAL 2:5!10 +GAL 2:5!11 +GAL 2:5!12 +GAL 2:5!13 +GAL 2:5!14 +GAL 2:5!15 +GAL 2:6!2 +GAL 2:6!1 +GAL 2:6!3 +GAL 2:6!4 +GAL 2:6!5 +GAL 2:6!6 +GAL 2:6!7 +GAL 2:6!8 +GAL 2:6!9 +GAL 2:6!10 +GAL 2:6!11 +GAL 2:6!12 +GAL 2:6!13 +GAL 2:6!16 +GAL 2:6!14 +GAL 2:6!15 +GAL 2:6!17 +GAL 2:6!18 +GAL 2:6!20 +GAL 2:6!19 +GAL 2:6!21 +GAL 2:6!22 +GAL 2:6!23 +GAL 2:6!24 +GAL 2:7!1 +GAL 2:7!2 +GAL 2:7!3 +GAL 2:7!4 +GAL 2:7!5 +GAL 2:7!6 +GAL 2:7!7 +GAL 2:7!8 +GAL 2:7!9 +GAL 2:7!10 +GAL 2:7!11 +GAL 2:7!12 +GAL 2:7!13 +GAL 2:8!2 +GAL 2:8!1 +GAL 2:8!3 +GAL 2:8!4 +GAL 2:8!5 +GAL 2:8!6 +GAL 2:8!7 +GAL 2:8!8 +GAL 2:8!9 +GAL 2:8!10 +GAL 2:8!11 +GAL 2:8!12 +GAL 2:8!13 +GAL 2:8!14 +GAL 2:9!1 +GAL 2:9!2 +GAL 2:9!3 +GAL 2:9!4 +GAL 2:9!5 +GAL 2:9!6 +GAL 2:9!7 +GAL 2:9!8 +GAL 2:9!9 +GAL 2:9!10 +GAL 2:9!11 +GAL 2:9!12 +GAL 2:9!13 +GAL 2:9!14 +GAL 2:9!15 +GAL 2:9!16 +GAL 2:9!17 +GAL 2:9!22 +GAL 2:9!18 +GAL 2:9!19 +GAL 2:9!20 +GAL 2:9!21 +GAL 2:9!23 +GAL 2:9!24 +GAL 2:9!25 +GAL 2:9!26 +GAL 2:9!27 +GAL 2:9!29 +GAL 2:9!28 +GAL 2:9!30 +GAL 2:9!31 +GAL 2:9!32 +GAL 2:10!1 +GAL 2:10!4 +GAL 2:10!2 +GAL 2:10!3 +GAL 2:10!5 +GAL 2:10!6 +GAL 2:10!7 +GAL 2:10!8 +GAL 2:10!9 +GAL 2:10!10 +GAL 2:10!11 +GAL 2:11!2 +GAL 2:11!1 +GAL 2:11!3 +GAL 2:11!4 +GAL 2:11!5 +GAL 2:11!6 +GAL 2:11!7 +GAL 2:11!8 +GAL 2:11!9 +GAL 2:11!10 +GAL 2:11!11 +GAL 2:11!12 +GAL 2:11!13 +GAL 2:12!3 +GAL 2:12!1 +GAL 2:12!2 +GAL 2:12!4 +GAL 2:12!5 +GAL 2:12!6 +GAL 2:12!7 +GAL 2:12!8 +GAL 2:12!9 +GAL 2:12!10 +GAL 2:12!11 +GAL 2:12!13 +GAL 2:12!12 +GAL 2:12!14 +GAL 2:12!15 +GAL 2:12!16 +GAL 2:12!17 +GAL 2:12!18 +GAL 2:12!19 +GAL 2:12!20 +GAL 2:12!21 +GAL 2:12!22 +GAL 2:13!1 +GAL 2:13!2 +GAL 2:13!3 +GAL 2:13!4 +GAL 2:13!5 +GAL 2:13!6 +GAL 2:13!7 +GAL 2:13!8 +GAL 2:13!9 +GAL 2:13!10 +GAL 2:13!11 +GAL 2:13!12 +GAL 2:13!13 +GAL 2:13!14 +GAL 2:14!1 +GAL 2:14!2 +GAL 2:14!3 +GAL 2:14!4 +GAL 2:14!5 +GAL 2:14!6 +GAL 2:14!7 +GAL 2:14!8 +GAL 2:14!9 +GAL 2:14!10 +GAL 2:14!11 +GAL 2:14!12 +GAL 2:14!13 +GAL 2:14!14 +GAL 2:14!15 +GAL 2:14!16 +GAL 2:14!17 +GAL 2:14!18 +GAL 2:14!19 +GAL 2:14!20 +GAL 2:14!21 +GAL 2:14!22 +GAL 2:14!23 +GAL 2:14!24 +GAL 2:14!25 +GAL 2:14!26 +GAL 2:14!29 +GAL 2:14!27 +GAL 2:14!28 +GAL 2:14!30 +GAL 2:15!1 +GAL 2:15!2 +GAL 2:15!3 +GAL 2:15!4 +GAL 2:15!5 +GAL 2:15!6 +GAL 2:15!7 +GAL 2:15!8 +GAL 2:16!2 +GAL 2:16!1 +GAL 2:16!3 +GAL 2:16!4 +GAL 2:16!5 +GAL 2:16!6 +GAL 2:16!7 +GAL 2:16!8 +GAL 2:16!9 +GAL 2:16!10 +GAL 2:16!11 +GAL 2:16!12 +GAL 2:16!13 +GAL 2:16!14 +GAL 2:16!15 +GAL 2:16!16 +GAL 2:16!17 +GAL 2:16!18 +GAL 2:16!19 +GAL 2:16!20 +GAL 2:16!21 +GAL 2:16!22 +GAL 2:16!23 +GAL 2:16!24 +GAL 2:16!25 +GAL 2:16!26 +GAL 2:16!27 +GAL 2:16!28 +GAL 2:16!29 +GAL 2:16!30 +GAL 2:16!31 +GAL 2:16!32 +GAL 2:16!33 +GAL 2:16!34 +GAL 2:16!35 +GAL 2:16!36 +GAL 2:16!37 +GAL 2:16!38 +GAL 2:16!39 +GAL 2:17!2 +GAL 2:17!1 +GAL 2:17!3 +GAL 2:17!4 +GAL 2:17!5 +GAL 2:17!6 +GAL 2:17!7 +GAL 2:17!8 +GAL 2:17!9 +GAL 2:17!10 +GAL 2:17!11 +GAL 2:17!12 +GAL 2:17!13 +GAL 2:17!14 +GAL 2:17!15 +GAL 2:17!16 +GAL 2:18!2 +GAL 2:18!1 +GAL 2:18!3 +GAL 2:18!4 +GAL 2:18!5 +GAL 2:18!6 +GAL 2:18!7 +GAL 2:18!8 +GAL 2:18!9 +GAL 2:18!10 +GAL 2:19!2 +GAL 2:19!1 +GAL 2:19!3 +GAL 2:19!4 +GAL 2:19!5 +GAL 2:19!6 +GAL 2:19!7 +GAL 2:19!8 +GAL 2:19!9 +GAL 2:19!10 +GAL 2:19!11 +GAL 2:20!2 +GAL 2:20!1 +GAL 2:20!3 +GAL 2:20!4 +GAL 2:20!6 +GAL 2:20!5 +GAL 2:20!7 +GAL 2:20!8 +GAL 2:20!9 +GAL 2:20!11 +GAL 2:20!10 +GAL 2:20!12 +GAL 2:20!13 +GAL 2:20!14 +GAL 2:20!15 +GAL 2:20!18 +GAL 2:20!16 +GAL 2:20!17 +GAL 2:20!19 +GAL 2:20!20 +GAL 2:20!21 +GAL 2:20!22 +GAL 2:20!23 +GAL 2:20!24 +GAL 2:20!25 +GAL 2:20!26 +GAL 2:20!27 +GAL 2:20!28 +GAL 2:20!29 +GAL 2:20!30 +GAL 2:20!31 +GAL 2:21!1 +GAL 2:21!2 +GAL 2:21!3 +GAL 2:21!4 +GAL 2:21!5 +GAL 2:21!6 +GAL 2:21!8 +GAL 2:21!7 +GAL 2:21!9 +GAL 2:21!10 +GAL 2:21!11 +GAL 2:21!12 +GAL 2:21!13 +GAL 2:21!14 +GAL 2:21!15 +GAL 3:1!1 +GAL 3:1!2 +GAL 3:1!3 +GAL 3:1!4 +GAL 3:1!5 +GAL 3:1!6 +GAL 3:1!7 +GAL 3:1!8 +GAL 3:1!9 +GAL 3:1!10 +GAL 3:1!11 +GAL 3:1!12 +GAL 3:1!13 +GAL 3:2!3 +GAL 3:2!1 +GAL 3:2!2 +GAL 3:2!4 +GAL 3:2!5 +GAL 3:2!6 +GAL 3:2!10 +GAL 3:2!11 +GAL 3:2!12 +GAL 3:2!7 +GAL 3:2!8 +GAL 3:2!9 +GAL 3:2!13 +GAL 3:2!14 +GAL 3:2!15 +GAL 3:2!16 +GAL 3:3!1 +GAL 3:3!2 +GAL 3:3!3 +GAL 3:3!4 +GAL 3:3!5 +GAL 3:3!6 +GAL 3:3!7 +GAL 3:3!8 +GAL 3:4!1 +GAL 3:4!2 +GAL 3:4!3 +GAL 3:4!4 +GAL 3:4!5 +GAL 3:4!6 +GAL 3:4!7 +GAL 3:5!2 +GAL 3:5!1 +GAL 3:5!3 +GAL 3:5!4 +GAL 3:5!5 +GAL 3:5!6 +GAL 3:5!7 +GAL 3:5!8 +GAL 3:5!9 +GAL 3:5!10 +GAL 3:5!11 +GAL 3:5!12 +GAL 3:5!13 +GAL 3:5!14 +GAL 3:5!15 +GAL 3:5!16 +GAL 3:5!17 +GAL 3:5!18 +GAL 3:6!1 +GAL 3:6!2 +GAL 3:6!3 +GAL 3:6!4 +GAL 3:6!5 +GAL 3:6!6 +GAL 3:6!7 +GAL 3:6!8 +GAL 3:6!9 +GAL 3:6!10 +GAL 3:7!2 +GAL 3:7!1 +GAL 3:7!3 +GAL 3:7!4 +GAL 3:7!5 +GAL 3:7!6 +GAL 3:7!7 +GAL 3:7!8 +GAL 3:7!10 +GAL 3:7!9 +GAL 3:8!2 +GAL 3:8!3 +GAL 3:8!4 +GAL 3:8!1 +GAL 3:8!5 +GAL 3:8!6 +GAL 3:8!7 +GAL 3:8!8 +GAL 3:8!9 +GAL 3:8!10 +GAL 3:8!11 +GAL 3:8!12 +GAL 3:8!13 +GAL 3:8!14 +GAL 3:8!15 +GAL 3:8!16 +GAL 3:8!17 +GAL 3:8!18 +GAL 3:8!19 +GAL 3:8!20 +GAL 3:8!21 +GAL 3:8!22 +GAL 3:9!1 +GAL 3:9!2 +GAL 3:9!3 +GAL 3:9!4 +GAL 3:9!5 +GAL 3:9!6 +GAL 3:9!7 +GAL 3:9!8 +GAL 3:9!9 +GAL 3:10!2 +GAL 3:10!1 +GAL 3:10!3 +GAL 3:10!4 +GAL 3:10!5 +GAL 3:10!6 +GAL 3:10!7 +GAL 3:10!8 +GAL 3:10!9 +GAL 3:10!11 +GAL 3:10!10 +GAL 3:10!12 +GAL 3:10!13 +GAL 3:10!14 +GAL 3:10!15 +GAL 3:10!16 +GAL 3:10!17 +GAL 3:10!18 +GAL 3:10!19 +GAL 3:10!20 +GAL 3:10!21 +GAL 3:10!22 +GAL 3:10!23 +GAL 3:10!24 +GAL 3:10!25 +GAL 3:10!26 +GAL 3:10!27 +GAL 3:10!28 +GAL 3:11!2 +GAL 3:11!1 +GAL 3:11!3 +GAL 3:11!4 +GAL 3:11!5 +GAL 3:11!6 +GAL 3:11!7 +GAL 3:11!8 +GAL 3:11!9 +GAL 3:11!10 +GAL 3:11!11 +GAL 3:11!12 +GAL 3:11!13 +GAL 3:11!14 +GAL 3:11!15 +GAL 3:11!16 +GAL 3:12!2 +GAL 3:12!1 +GAL 3:12!3 +GAL 3:12!4 +GAL 3:12!5 +GAL 3:12!6 +GAL 3:12!7 +GAL 3:12!8 +GAL 3:12!9 +GAL 3:12!10 +GAL 3:12!11 +GAL 3:12!12 +GAL 3:12!13 +GAL 3:12!14 +GAL 3:13!1 +GAL 3:13!2 +GAL 3:13!3 +GAL 3:13!4 +GAL 3:13!5 +GAL 3:13!6 +GAL 3:13!7 +GAL 3:13!8 +GAL 3:13!9 +GAL 3:13!10 +GAL 3:13!11 +GAL 3:13!12 +GAL 3:13!13 +GAL 3:13!14 +GAL 3:13!15 +GAL 3:13!16 +GAL 3:13!17 +GAL 3:13!18 +GAL 3:13!19 +GAL 3:13!20 +GAL 3:14!1 +GAL 3:14!2 +GAL 3:14!3 +GAL 3:14!4 +GAL 3:14!5 +GAL 3:14!6 +GAL 3:14!7 +GAL 3:14!8 +GAL 3:14!9 +GAL 3:14!10 +GAL 3:14!11 +GAL 3:14!12 +GAL 3:14!13 +GAL 3:14!14 +GAL 3:14!15 +GAL 3:14!16 +GAL 3:14!17 +GAL 3:14!18 +GAL 3:14!19 +GAL 3:14!20 +GAL 3:14!21 +GAL 3:15!1 +GAL 3:15!2 +GAL 3:15!3 +GAL 3:15!4 +GAL 3:15!5 +GAL 3:15!6 +GAL 3:15!7 +GAL 3:15!8 +GAL 3:15!9 +GAL 3:15!10 +GAL 3:15!11 +GAL 3:15!12 +GAL 3:16!2 +GAL 3:16!4 +GAL 3:16!5 +GAL 3:16!6 +GAL 3:16!1 +GAL 3:16!3 +GAL 3:16!7 +GAL 3:16!8 +GAL 3:16!9 +GAL 3:16!10 +GAL 3:16!11 +GAL 3:16!12 +GAL 3:16!13 +GAL 3:16!14 +GAL 3:16!15 +GAL 3:16!16 +GAL 3:16!17 +GAL 3:16!18 +GAL 3:16!19 +GAL 3:16!20 +GAL 3:16!21 +GAL 3:16!22 +GAL 3:16!23 +GAL 3:16!24 +GAL 3:16!25 +GAL 3:16!26 +GAL 3:16!27 +GAL 3:16!28 +GAL 3:16!29 +GAL 3:17!2 +GAL 3:17!1 +GAL 3:17!3 +GAL 3:17!4 +GAL 3:17!5 +GAL 3:17!6 +GAL 3:17!7 +GAL 3:17!8 +GAL 3:17!9 +GAL 3:17!10 +GAL 3:17!11 +GAL 3:17!12 +GAL 3:17!13 +GAL 3:17!14 +GAL 3:17!15 +GAL 3:17!16 +GAL 3:17!17 +GAL 3:17!18 +GAL 3:17!19 +GAL 3:17!20 +GAL 3:17!21 +GAL 3:17!22 +GAL 3:17!23 +GAL 3:18!2 +GAL 3:18!1 +GAL 3:18!3 +GAL 3:18!4 +GAL 3:18!5 +GAL 3:18!6 +GAL 3:18!7 +GAL 3:18!8 +GAL 3:18!9 +GAL 3:18!11 +GAL 3:18!10 +GAL 3:18!12 +GAL 3:18!13 +GAL 3:18!14 +GAL 3:18!15 +GAL 3:18!16 +GAL 3:18!17 +GAL 3:19!2 +GAL 3:19!1 +GAL 3:19!3 +GAL 3:19!4 +GAL 3:19!5 +GAL 3:19!6 +GAL 3:19!7 +GAL 3:19!8 +GAL 3:19!9 +GAL 3:19!10 +GAL 3:19!11 +GAL 3:19!12 +GAL 3:19!13 +GAL 3:19!14 +GAL 3:19!15 +GAL 3:19!16 +GAL 3:19!17 +GAL 3:19!18 +GAL 3:19!19 +GAL 3:19!20 +GAL 3:19!21 +GAL 3:20!2 +GAL 3:20!1 +GAL 3:20!3 +GAL 3:20!4 +GAL 3:20!5 +GAL 3:20!6 +GAL 3:20!8 +GAL 3:20!7 +GAL 3:20!9 +GAL 3:20!10 +GAL 3:20!11 +GAL 3:21!2 +GAL 3:21!1 +GAL 3:21!3 +GAL 3:21!4 +GAL 3:21!5 +GAL 3:21!6 +GAL 3:21!7 +GAL 3:21!8 +GAL 3:21!9 +GAL 3:21!10 +GAL 3:21!12 +GAL 3:21!11 +GAL 3:21!13 +GAL 3:21!14 +GAL 3:21!15 +GAL 3:21!16 +GAL 3:21!17 +GAL 3:21!21 +GAL 3:21!18 +GAL 3:21!19 +GAL 3:21!20 +GAL 3:21!22 +GAL 3:21!23 +GAL 3:21!24 +GAL 3:22!1 +GAL 3:22!2 +GAL 3:22!3 +GAL 3:22!4 +GAL 3:22!5 +GAL 3:22!6 +GAL 3:22!7 +GAL 3:22!8 +GAL 3:22!9 +GAL 3:22!10 +GAL 3:22!11 +GAL 3:22!12 +GAL 3:22!13 +GAL 3:22!14 +GAL 3:22!15 +GAL 3:22!16 +GAL 3:22!17 +GAL 3:22!18 +GAL 3:23!3 +GAL 3:23!1 +GAL 3:23!2 +GAL 3:23!4 +GAL 3:23!5 +GAL 3:23!6 +GAL 3:23!7 +GAL 3:23!8 +GAL 3:23!9 +GAL 3:23!10 +GAL 3:23!11 +GAL 3:23!12 +GAL 3:23!13 +GAL 3:23!15 +GAL 3:23!14 +GAL 3:24!1 +GAL 3:24!2 +GAL 3:24!3 +GAL 3:24!4 +GAL 3:24!5 +GAL 3:24!6 +GAL 3:24!7 +GAL 3:24!8 +GAL 3:24!9 +GAL 3:24!10 +GAL 3:24!11 +GAL 3:24!12 +GAL 3:25!2 +GAL 3:25!1 +GAL 3:25!3 +GAL 3:25!4 +GAL 3:25!5 +GAL 3:25!6 +GAL 3:25!7 +GAL 3:25!8 +GAL 3:26!2 +GAL 3:26!1 +GAL 3:26!3 +GAL 3:26!4 +GAL 3:26!5 +GAL 3:26!6 +GAL 3:26!7 +GAL 3:26!8 +GAL 3:26!9 +GAL 3:26!10 +GAL 3:26!11 +GAL 3:27!2 +GAL 3:27!1 +GAL 3:27!3 +GAL 3:27!4 +GAL 3:27!5 +GAL 3:27!6 +GAL 3:27!7 +GAL 3:28!1 +GAL 3:28!2 +GAL 3:28!3 +GAL 3:28!4 +GAL 3:28!5 +GAL 3:28!6 +GAL 3:28!7 +GAL 3:28!8 +GAL 3:28!9 +GAL 3:28!10 +GAL 3:28!11 +GAL 3:28!12 +GAL 3:28!13 +GAL 3:28!14 +GAL 3:28!15 +GAL 3:28!17 +GAL 3:28!16 +GAL 3:28!18 +GAL 3:28!19 +GAL 3:28!20 +GAL 3:28!21 +GAL 3:28!22 +GAL 3:28!23 +GAL 3:29!2 +GAL 3:29!1 +GAL 3:29!3 +GAL 3:29!4 +GAL 3:29!5 +GAL 3:29!6 +GAL 3:29!7 +GAL 3:29!8 +GAL 3:29!9 +GAL 3:29!10 +GAL 3:29!11 +GAL 3:29!12 +GAL 4:1!2 +GAL 4:1!1 +GAL 4:1!3 +GAL 4:1!4 +GAL 4:1!5 +GAL 4:1!6 +GAL 4:1!7 +GAL 4:1!8 +GAL 4:1!9 +GAL 4:1!10 +GAL 4:1!11 +GAL 4:1!12 +GAL 4:1!13 +GAL 4:1!14 +GAL 4:1!15 +GAL 4:2!1 +GAL 4:2!2 +GAL 4:2!3 +GAL 4:2!5 +GAL 4:2!6 +GAL 4:2!4 +GAL 4:2!7 +GAL 4:2!8 +GAL 4:2!9 +GAL 4:2!10 +GAL 4:2!11 +GAL 4:3!1 +GAL 4:3!2 +GAL 4:3!3 +GAL 4:3!4 +GAL 4:3!5 +GAL 4:3!6 +GAL 4:3!7 +GAL 4:3!8 +GAL 4:3!9 +GAL 4:3!10 +GAL 4:3!11 +GAL 4:3!12 +GAL 4:3!13 +GAL 4:4!2 +GAL 4:4!1 +GAL 4:4!3 +GAL 4:4!4 +GAL 4:4!5 +GAL 4:4!6 +GAL 4:4!7 +GAL 4:4!8 +GAL 4:4!9 +GAL 4:4!10 +GAL 4:4!11 +GAL 4:4!12 +GAL 4:4!13 +GAL 4:4!14 +GAL 4:4!15 +GAL 4:4!16 +GAL 4:4!17 +GAL 4:4!18 +GAL 4:4!19 +GAL 4:5!1 +GAL 4:5!2 +GAL 4:5!3 +GAL 4:5!4 +GAL 4:5!5 +GAL 4:5!6 +GAL 4:5!7 +GAL 4:5!8 +GAL 4:5!9 +GAL 4:6!2 +GAL 4:6!1 +GAL 4:6!3 +GAL 4:6!4 +GAL 4:6!5 +GAL 4:6!6 +GAL 4:6!7 +GAL 4:6!8 +GAL 4:6!9 +GAL 4:6!10 +GAL 4:6!11 +GAL 4:6!12 +GAL 4:6!13 +GAL 4:6!14 +GAL 4:6!15 +GAL 4:6!16 +GAL 4:6!17 +GAL 4:6!18 +GAL 4:6!19 +GAL 4:6!20 +GAL 4:7!1 +GAL 4:7!3 +GAL 4:7!2 +GAL 4:7!4 +GAL 4:7!5 +GAL 4:7!6 +GAL 4:7!8 +GAL 4:7!7 +GAL 4:7!9 +GAL 4:7!10 +GAL 4:7!11 +GAL 4:7!12 +GAL 4:7!13 +GAL 4:8!1 +GAL 4:8!3 +GAL 4:8!2 +GAL 4:8!4 +GAL 4:8!5 +GAL 4:8!6 +GAL 4:8!7 +GAL 4:8!8 +GAL 4:8!9 +GAL 4:8!10 +GAL 4:8!11 +GAL 4:8!12 +GAL 4:9!2 +GAL 4:9!1 +GAL 4:9!3 +GAL 4:9!4 +GAL 4:9!6 +GAL 4:9!5 +GAL 4:9!7 +GAL 4:9!8 +GAL 4:9!9 +GAL 4:9!10 +GAL 4:9!11 +GAL 4:9!12 +GAL 4:9!13 +GAL 4:9!14 +GAL 4:9!15 +GAL 4:9!16 +GAL 4:9!17 +GAL 4:9!18 +GAL 4:9!19 +GAL 4:9!20 +GAL 4:9!21 +GAL 4:9!22 +GAL 4:9!23 +GAL 4:10!2 +GAL 4:10!1 +GAL 4:10!3 +GAL 4:10!4 +GAL 4:10!5 +GAL 4:10!6 +GAL 4:10!7 +GAL 4:10!8 +GAL 4:11!1 +GAL 4:11!2 +GAL 4:11!3 +GAL 4:11!4 +GAL 4:11!5 +GAL 4:11!6 +GAL 4:11!7 +GAL 4:11!8 +GAL 4:12!1 +GAL 4:12!2 +GAL 4:12!3 +GAL 4:12!4 +GAL 4:12!5 +GAL 4:12!6 +GAL 4:12!7 +GAL 4:12!8 +GAL 4:12!9 +GAL 4:12!10 +GAL 4:12!11 +GAL 4:12!12 +GAL 4:12!13 +GAL 4:13!2 +GAL 4:13!1 +GAL 4:13!3 +GAL 4:13!4 +GAL 4:13!5 +GAL 4:13!6 +GAL 4:13!7 +GAL 4:13!8 +GAL 4:13!9 +GAL 4:13!10 +GAL 4:13!11 +GAL 4:14!1 +GAL 4:14!9 +GAL 4:14!2 +GAL 4:14!3 +GAL 4:14!4 +GAL 4:14!5 +GAL 4:14!6 +GAL 4:14!7 +GAL 4:14!8 +GAL 4:14!10 +GAL 4:14!11 +GAL 4:14!12 +GAL 4:14!13 +GAL 4:14!14 +GAL 4:14!15 +GAL 4:14!16 +GAL 4:14!17 +GAL 4:14!18 +GAL 4:14!19 +GAL 4:14!20 +GAL 4:14!21 +GAL 4:15!2 +GAL 4:15!1 +GAL 4:15!3 +GAL 4:15!4 +GAL 4:15!5 +GAL 4:15!7 +GAL 4:15!6 +GAL 4:15!8 +GAL 4:15!9 +GAL 4:15!10 +GAL 4:15!11 +GAL 4:15!12 +GAL 4:15!13 +GAL 4:15!14 +GAL 4:15!15 +GAL 4:15!16 +GAL 4:15!17 +GAL 4:16!1 +GAL 4:16!2 +GAL 4:16!3 +GAL 4:16!4 +GAL 4:16!5 +GAL 4:16!6 +GAL 4:17!1 +GAL 4:17!2 +GAL 4:17!3 +GAL 4:17!4 +GAL 4:17!5 +GAL 4:17!6 +GAL 4:17!7 +GAL 4:17!8 +GAL 4:17!9 +GAL 4:17!10 +GAL 4:17!11 +GAL 4:18!2 +GAL 4:18!1 +GAL 4:18!3 +GAL 4:18!4 +GAL 4:18!5 +GAL 4:18!6 +GAL 4:18!7 +GAL 4:18!8 +GAL 4:18!9 +GAL 4:18!10 +GAL 4:18!11 +GAL 4:18!12 +GAL 4:18!13 +GAL 4:18!14 +GAL 4:18!15 +GAL 4:19!1 +GAL 4:19!2 +GAL 4:19!3 +GAL 4:19!4 +GAL 4:19!5 +GAL 4:19!6 +GAL 4:19!7 +GAL 4:19!8 +GAL 4:19!9 +GAL 4:19!10 +GAL 4:19!11 +GAL 4:20!2 +GAL 4:20!1 +GAL 4:20!3 +GAL 4:20!4 +GAL 4:20!5 +GAL 4:20!6 +GAL 4:20!7 +GAL 4:20!8 +GAL 4:20!9 +GAL 4:20!10 +GAL 4:20!11 +GAL 4:20!12 +GAL 4:20!13 +GAL 4:20!14 +GAL 4:20!15 +GAL 4:21!1 +GAL 4:21!2 +GAL 4:21!3 +GAL 4:21!4 +GAL 4:21!5 +GAL 4:21!7 +GAL 4:21!6 +GAL 4:21!8 +GAL 4:21!9 +GAL 4:21!10 +GAL 4:21!11 +GAL 4:22!2 +GAL 4:22!1 +GAL 4:22!3 +GAL 4:22!4 +GAL 4:22!7 +GAL 4:22!5 +GAL 4:22!6 +GAL 4:22!8 +GAL 4:22!9 +GAL 4:22!10 +GAL 4:22!11 +GAL 4:22!12 +GAL 4:22!13 +GAL 4:22!14 +GAL 4:22!15 +GAL 4:22!16 +GAL 4:23!1 +GAL 4:23!3 +GAL 4:23!2 +GAL 4:23!4 +GAL 4:23!5 +GAL 4:23!6 +GAL 4:23!7 +GAL 4:23!8 +GAL 4:23!9 +GAL 4:23!11 +GAL 4:23!10 +GAL 4:23!12 +GAL 4:23!13 +GAL 4:23!14 +GAL 4:23!15 +GAL 4:23!16 +GAL 4:23!17 +GAL 4:24!1 +GAL 4:24!2 +GAL 4:24!3 +GAL 4:24!5 +GAL 4:24!4 +GAL 4:24!6 +GAL 4:24!7 +GAL 4:24!8 +GAL 4:24!10 +GAL 4:24!9 +GAL 4:24!11 +GAL 4:24!12 +GAL 4:24!13 +GAL 4:24!14 +GAL 4:24!15 +GAL 4:24!16 +GAL 4:24!17 +GAL 4:24!18 +GAL 4:24!19 +GAL 4:25!2 +GAL 4:25!1 +GAL 4:25!3 +GAL 4:25!4 +GAL 4:25!5 +GAL 4:25!6 +GAL 4:25!7 +GAL 4:25!8 +GAL 4:25!9 +GAL 4:25!11 +GAL 4:25!10 +GAL 4:25!12 +GAL 4:25!13 +GAL 4:25!14 +GAL 4:25!16 +GAL 4:25!15 +GAL 4:25!17 +GAL 4:25!18 +GAL 4:25!19 +GAL 4:25!20 +GAL 4:26!2 +GAL 4:26!1 +GAL 4:26!3 +GAL 4:26!4 +GAL 4:26!5 +GAL 4:26!6 +GAL 4:26!7 +GAL 4:26!8 +GAL 4:26!9 +GAL 4:26!10 +GAL 4:27!2 +GAL 4:27!1 +GAL 4:27!3 +GAL 4:27!4 +GAL 4:27!5 +GAL 4:27!6 +GAL 4:27!7 +GAL 4:27!8 +GAL 4:27!9 +GAL 4:27!10 +GAL 4:27!11 +GAL 4:27!12 +GAL 4:27!13 +GAL 4:27!14 +GAL 4:27!15 +GAL 4:27!16 +GAL 4:27!17 +GAL 4:27!18 +GAL 4:27!19 +GAL 4:27!20 +GAL 4:27!21 +GAL 4:27!22 +GAL 4:27!23 +GAL 4:27!24 +GAL 4:27!25 +GAL 4:28!2 +GAL 4:28!3 +GAL 4:28!1 +GAL 4:28!4 +GAL 4:28!5 +GAL 4:28!6 +GAL 4:28!7 +GAL 4:28!8 +GAL 4:29!1 +GAL 4:29!2 +GAL 4:29!3 +GAL 4:29!4 +GAL 4:29!5 +GAL 4:29!6 +GAL 4:29!7 +GAL 4:29!8 +GAL 4:29!9 +GAL 4:29!10 +GAL 4:29!11 +GAL 4:29!12 +GAL 4:29!13 +GAL 4:29!14 +GAL 4:30!1 +GAL 4:30!2 +GAL 4:30!3 +GAL 4:30!4 +GAL 4:30!5 +GAL 4:30!6 +GAL 4:30!7 +GAL 4:30!8 +GAL 4:30!9 +GAL 4:30!10 +GAL 4:30!11 +GAL 4:30!12 +GAL 4:30!14 +GAL 4:30!13 +GAL 4:30!15 +GAL 4:30!16 +GAL 4:30!17 +GAL 4:30!18 +GAL 4:30!19 +GAL 4:30!20 +GAL 4:30!21 +GAL 4:30!22 +GAL 4:30!23 +GAL 4:30!24 +GAL 4:30!25 +GAL 4:31!1 +GAL 4:31!2 +GAL 4:31!4 +GAL 4:31!3 +GAL 4:31!5 +GAL 4:31!6 +GAL 4:31!7 +GAL 4:31!8 +GAL 4:31!9 +GAL 5:1!1 +GAL 5:1!2 +GAL 5:1!3 +GAL 5:1!4 +GAL 5:1!5 +GAL 5:1!7 +GAL 5:1!6 +GAL 5:1!8 +GAL 5:1!9 +GAL 5:1!10 +GAL 5:1!11 +GAL 5:1!12 +GAL 5:1!13 +GAL 5:2!1 +GAL 5:2!2 +GAL 5:2!3 +GAL 5:2!4 +GAL 5:2!5 +GAL 5:2!6 +GAL 5:2!7 +GAL 5:2!8 +GAL 5:2!9 +GAL 5:2!10 +GAL 5:2!11 +GAL 5:2!12 +GAL 5:3!2 +GAL 5:3!1 +GAL 5:3!3 +GAL 5:3!4 +GAL 5:3!5 +GAL 5:3!6 +GAL 5:3!7 +GAL 5:3!8 +GAL 5:3!9 +GAL 5:3!10 +GAL 5:3!11 +GAL 5:3!12 +GAL 5:3!13 +GAL 5:4!1 +GAL 5:4!2 +GAL 5:4!3 +GAL 5:4!4 +GAL 5:4!5 +GAL 5:4!6 +GAL 5:4!7 +GAL 5:4!8 +GAL 5:4!9 +GAL 5:4!10 +GAL 5:5!2 +GAL 5:5!1 +GAL 5:5!3 +GAL 5:5!4 +GAL 5:5!5 +GAL 5:5!6 +GAL 5:5!7 +GAL 5:5!8 +GAL 5:6!2 +GAL 5:6!1 +GAL 5:6!3 +GAL 5:6!4 +GAL 5:6!5 +GAL 5:6!6 +GAL 5:6!9 +GAL 5:6!10 +GAL 5:6!7 +GAL 5:6!8 +GAL 5:6!11 +GAL 5:6!12 +GAL 5:6!13 +GAL 5:6!14 +GAL 5:6!15 +GAL 5:7!1 +GAL 5:7!2 +GAL 5:7!3 +GAL 5:7!5 +GAL 5:7!4 +GAL 5:7!6 +GAL 5:7!7 +GAL 5:7!8 +GAL 5:8!1 +GAL 5:8!2 +GAL 5:8!3 +GAL 5:8!4 +GAL 5:8!5 +GAL 5:8!6 +GAL 5:8!7 +GAL 5:9!1 +GAL 5:9!2 +GAL 5:9!3 +GAL 5:9!4 +GAL 5:9!5 +GAL 5:9!6 +GAL 5:10!1 +GAL 5:10!2 +GAL 5:10!3 +GAL 5:10!4 +GAL 5:10!5 +GAL 5:10!6 +GAL 5:10!7 +GAL 5:10!8 +GAL 5:10!9 +GAL 5:10!10 +GAL 5:10!12 +GAL 5:10!11 +GAL 5:10!13 +GAL 5:10!14 +GAL 5:10!15 +GAL 5:10!16 +GAL 5:10!17 +GAL 5:10!19 +GAL 5:10!18 +GAL 5:10!20 +GAL 5:11!2 +GAL 5:11!3 +GAL 5:11!4 +GAL 5:11!1 +GAL 5:11!5 +GAL 5:11!6 +GAL 5:11!7 +GAL 5:11!8 +GAL 5:11!9 +GAL 5:11!10 +GAL 5:11!11 +GAL 5:11!12 +GAL 5:11!13 +GAL 5:11!14 +GAL 5:11!15 +GAL 5:11!16 +GAL 5:12!1 +GAL 5:12!2 +GAL 5:12!3 +GAL 5:12!4 +GAL 5:12!5 +GAL 5:12!6 +GAL 5:13!2 +GAL 5:13!1 +GAL 5:13!3 +GAL 5:13!4 +GAL 5:13!5 +GAL 5:13!6 +GAL 5:13!7 +GAL 5:13!8 +GAL 5:13!9 +GAL 5:13!10 +GAL 5:13!11 +GAL 5:13!12 +GAL 5:13!13 +GAL 5:13!14 +GAL 5:13!15 +GAL 5:13!16 +GAL 5:13!17 +GAL 5:13!18 +GAL 5:13!19 +GAL 5:13!20 +GAL 5:14!2 +GAL 5:14!1 +GAL 5:14!3 +GAL 5:14!4 +GAL 5:14!8 +GAL 5:14!5 +GAL 5:14!6 +GAL 5:14!7 +GAL 5:14!9 +GAL 5:14!10 +GAL 5:14!11 +GAL 5:14!12 +GAL 5:14!13 +GAL 5:14!14 +GAL 5:14!15 +GAL 5:14!16 +GAL 5:15!2 +GAL 5:15!1 +GAL 5:15!3 +GAL 5:15!4 +GAL 5:15!5 +GAL 5:15!6 +GAL 5:15!7 +GAL 5:15!8 +GAL 5:15!9 +GAL 5:15!10 +GAL 5:15!11 +GAL 5:16!2 +GAL 5:16!1 +GAL 5:16!3 +GAL 5:16!4 +GAL 5:16!5 +GAL 5:16!6 +GAL 5:16!7 +GAL 5:16!8 +GAL 5:16!9 +GAL 5:16!10 +GAL 5:17!2 +GAL 5:17!1 +GAL 5:17!3 +GAL 5:17!4 +GAL 5:17!5 +GAL 5:17!6 +GAL 5:17!7 +GAL 5:17!9 +GAL 5:17!8 +GAL 5:17!10 +GAL 5:17!11 +GAL 5:17!12 +GAL 5:17!13 +GAL 5:17!15 +GAL 5:17!14 +GAL 5:17!16 +GAL 5:17!17 +GAL 5:17!18 +GAL 5:17!19 +GAL 5:17!21 +GAL 5:17!20 +GAL 5:17!22 +GAL 5:17!23 +GAL 5:17!24 +GAL 5:18!2 +GAL 5:18!1 +GAL 5:18!3 +GAL 5:18!4 +GAL 5:18!5 +GAL 5:18!6 +GAL 5:18!7 +GAL 5:18!8 +GAL 5:19!2 +GAL 5:19!1 +GAL 5:19!3 +GAL 5:19!4 +GAL 5:19!5 +GAL 5:19!6 +GAL 5:19!7 +GAL 5:19!8 +GAL 5:19!9 +GAL 5:19!10 +GAL 5:19!11 +GAL 5:19!12 +GAL 5:20!1 +GAL 5:20!2 +GAL 5:20!3 +GAL 5:20!4 +GAL 5:20!5 +GAL 5:20!6 +GAL 5:20!7 +GAL 5:20!8 +GAL 5:20!9 +GAL 5:21!1 +GAL 5:21!2 +GAL 5:21!3 +GAL 5:21!4 +GAL 5:21!5 +GAL 5:21!6 +GAL 5:21!7 +GAL 5:21!8 +GAL 5:21!9 +GAL 5:21!10 +GAL 5:21!11 +GAL 5:21!12 +GAL 5:21!13 +GAL 5:21!14 +GAL 5:21!15 +GAL 5:21!16 +GAL 5:21!17 +GAL 5:21!18 +GAL 5:21!19 +GAL 5:21!20 +GAL 5:21!21 +GAL 5:22!2 +GAL 5:22!1 +GAL 5:22!3 +GAL 5:22!4 +GAL 5:22!5 +GAL 5:22!6 +GAL 5:22!7 +GAL 5:22!8 +GAL 5:22!9 +GAL 5:22!10 +GAL 5:22!11 +GAL 5:22!12 +GAL 5:22!13 +GAL 5:23!1 +GAL 5:23!2 +GAL 5:23!3 +GAL 5:23!4 +GAL 5:23!5 +GAL 5:23!6 +GAL 5:23!7 +GAL 5:23!8 +GAL 5:24!2 +GAL 5:24!1 +GAL 5:24!3 +GAL 5:24!4 +GAL 5:24!5 +GAL 5:24!6 +GAL 5:24!7 +GAL 5:24!8 +GAL 5:24!9 +GAL 5:24!10 +GAL 5:24!11 +GAL 5:24!12 +GAL 5:24!13 +GAL 5:24!14 +GAL 5:25!1 +GAL 5:25!2 +GAL 5:25!3 +GAL 5:25!4 +GAL 5:25!5 +GAL 5:25!6 +GAL 5:26!1 +GAL 5:26!2 +GAL 5:26!3 +GAL 5:26!4 +GAL 5:26!5 +GAL 5:26!6 +GAL 5:26!7 +GAL 6:1!1 +GAL 6:1!2 +GAL 6:1!3 +GAL 6:1!4 +GAL 6:1!5 +GAL 6:1!6 +GAL 6:1!7 +GAL 6:1!8 +GAL 6:1!9 +GAL 6:1!10 +GAL 6:1!11 +GAL 6:1!12 +GAL 6:1!13 +GAL 6:1!14 +GAL 6:1!15 +GAL 6:1!16 +GAL 6:1!17 +GAL 6:1!18 +GAL 6:1!19 +GAL 6:1!20 +GAL 6:1!21 +GAL 6:1!22 +GAL 6:1!23 +GAL 6:2!1 +GAL 6:2!2 +GAL 6:2!3 +GAL 6:2!4 +GAL 6:2!5 +GAL 6:2!6 +GAL 6:2!7 +GAL 6:2!8 +GAL 6:2!9 +GAL 6:2!10 +GAL 6:2!11 +GAL 6:3!2 +GAL 6:3!1 +GAL 6:3!3 +GAL 6:3!4 +GAL 6:3!5 +GAL 6:3!6 +GAL 6:3!7 +GAL 6:3!8 +GAL 6:3!9 +GAL 6:3!10 +GAL 6:4!2 +GAL 6:4!1 +GAL 6:4!3 +GAL 6:4!4 +GAL 6:4!5 +GAL 6:4!6 +GAL 6:4!7 +GAL 6:4!8 +GAL 6:4!9 +GAL 6:4!10 +GAL 6:4!11 +GAL 6:4!12 +GAL 6:4!13 +GAL 6:4!14 +GAL 6:4!15 +GAL 6:4!16 +GAL 6:4!17 +GAL 6:4!18 +GAL 6:4!19 +GAL 6:5!2 +GAL 6:5!1 +GAL 6:5!3 +GAL 6:5!4 +GAL 6:5!5 +GAL 6:5!6 +GAL 6:6!2 +GAL 6:6!1 +GAL 6:6!3 +GAL 6:6!4 +GAL 6:6!5 +GAL 6:6!6 +GAL 6:6!7 +GAL 6:6!8 +GAL 6:6!9 +GAL 6:6!10 +GAL 6:6!11 +GAL 6:7!1 +GAL 6:7!2 +GAL 6:7!3 +GAL 6:7!4 +GAL 6:7!5 +GAL 6:7!7 +GAL 6:7!8 +GAL 6:7!6 +GAL 6:7!9 +GAL 6:7!10 +GAL 6:7!11 +GAL 6:7!12 +GAL 6:7!13 +GAL 6:8!1 +GAL 6:8!2 +GAL 6:8!3 +GAL 6:8!4 +GAL 6:8!5 +GAL 6:8!6 +GAL 6:8!7 +GAL 6:8!8 +GAL 6:8!9 +GAL 6:8!10 +GAL 6:8!11 +GAL 6:8!12 +GAL 6:8!14 +GAL 6:8!13 +GAL 6:8!15 +GAL 6:8!16 +GAL 6:8!17 +GAL 6:8!18 +GAL 6:8!19 +GAL 6:8!20 +GAL 6:8!21 +GAL 6:8!22 +GAL 6:8!23 +GAL 6:8!24 +GAL 6:9!2 +GAL 6:9!1 +GAL 6:9!3 +GAL 6:9!4 +GAL 6:9!5 +GAL 6:9!6 +GAL 6:9!8 +GAL 6:9!7 +GAL 6:9!9 +GAL 6:9!10 +GAL 6:9!11 +GAL 6:9!12 +GAL 6:10!1 +GAL 6:10!2 +GAL 6:10!3 +GAL 6:10!4 +GAL 6:10!5 +GAL 6:10!6 +GAL 6:10!7 +GAL 6:10!8 +GAL 6:10!9 +GAL 6:10!10 +GAL 6:10!12 +GAL 6:10!11 +GAL 6:10!13 +GAL 6:10!14 +GAL 6:10!15 +GAL 6:10!16 +GAL 6:10!17 +GAL 6:11!1 +GAL 6:11!2 +GAL 6:11!4 +GAL 6:11!3 +GAL 6:11!5 +GAL 6:11!6 +GAL 6:11!7 +GAL 6:11!8 +GAL 6:12!1 +GAL 6:12!2 +GAL 6:12!3 +GAL 6:12!4 +GAL 6:12!5 +GAL 6:12!6 +GAL 6:12!7 +GAL 6:12!8 +GAL 6:12!9 +GAL 6:12!11 +GAL 6:12!10 +GAL 6:12!12 +GAL 6:12!13 +GAL 6:12!14 +GAL 6:12!15 +GAL 6:12!16 +GAL 6:12!17 +GAL 6:13!2 +GAL 6:13!1 +GAL 6:13!3 +GAL 6:13!4 +GAL 6:13!5 +GAL 6:13!6 +GAL 6:13!7 +GAL 6:13!8 +GAL 6:13!9 +GAL 6:13!10 +GAL 6:13!11 +GAL 6:13!12 +GAL 6:13!13 +GAL 6:13!14 +GAL 6:13!15 +GAL 6:13!16 +GAL 6:13!17 +GAL 6:14!2 +GAL 6:14!1 +GAL 6:14!3 +GAL 6:14!4 +GAL 6:14!5 +GAL 6:14!6 +GAL 6:14!7 +GAL 6:14!8 +GAL 6:14!9 +GAL 6:14!10 +GAL 6:14!11 +GAL 6:14!12 +GAL 6:14!13 +GAL 6:14!14 +GAL 6:14!15 +GAL 6:14!16 +GAL 6:14!17 +GAL 6:14!18 +GAL 6:14!19 +GAL 6:14!20 +GAL 6:14!21 +GAL 6:14!22 +GAL 6:15!2 +GAL 6:15!4 +GAL 6:15!5 +GAL 6:15!1 +GAL 6:15!3 +GAL 6:15!6 +GAL 6:15!7 +GAL 6:15!8 +GAL 6:15!9 +GAL 6:15!10 +GAL 6:16!1 +GAL 6:16!2 +GAL 6:16!3 +GAL 6:16!4 +GAL 6:16!5 +GAL 6:16!6 +GAL 6:16!7 +GAL 6:16!10 +GAL 6:16!11 +GAL 6:16!8 +GAL 6:16!9 +GAL 6:16!12 +GAL 6:16!13 +GAL 6:16!14 +GAL 6:16!15 +GAL 6:16!16 +GAL 6:16!17 +GAL 6:17!1 +GAL 6:17!2 +GAL 6:17!3 +GAL 6:17!4 +GAL 6:17!5 +GAL 6:17!6 +GAL 6:17!8 +GAL 6:17!7 +GAL 6:17!9 +GAL 6:17!10 +GAL 6:17!11 +GAL 6:17!12 +GAL 6:17!13 +GAL 6:17!14 +GAL 6:17!15 +GAL 6:17!16 +GAL 6:17!17 +GAL 6:18!1 +GAL 6:18!2 +GAL 6:18!3 +GAL 6:18!4 +GAL 6:18!5 +GAL 6:18!6 +GAL 6:18!7 +GAL 6:18!8 +GAL 6:18!9 +GAL 6:18!10 +GAL 6:18!11 +GAL 6:18!12 +GAL 6:18!13 +EPH 1:1!1 +EPH 1:1!2 +EPH 1:1!3 +EPH 1:1!4 +EPH 1:1!5 +EPH 1:1!6 +EPH 1:1!7 +EPH 1:1!8 +EPH 1:1!9 +EPH 1:1!10 +EPH 1:1!11 +EPH 1:1!12 +EPH 1:1!13 +EPH 1:1!14 +EPH 1:1!15 +EPH 1:1!16 +EPH 1:1!17 +EPH 1:1!18 +EPH 1:2!2 +EPH 1:2!1 +EPH 1:2!3 +EPH 1:2!4 +EPH 1:2!5 +EPH 1:2!6 +EPH 1:2!7 +EPH 1:2!8 +EPH 1:2!9 +EPH 1:2!10 +EPH 1:2!11 +EPH 1:2!12 +EPH 1:3!1 +EPH 1:3!2 +EPH 1:3!3 +EPH 1:3!4 +EPH 1:3!5 +EPH 1:3!6 +EPH 1:3!7 +EPH 1:3!8 +EPH 1:3!9 +EPH 1:3!10 +EPH 1:3!11 +EPH 1:3!12 +EPH 1:3!13 +EPH 1:3!14 +EPH 1:3!15 +EPH 1:3!16 +EPH 1:3!17 +EPH 1:3!18 +EPH 1:3!19 +EPH 1:3!20 +EPH 1:3!21 +EPH 1:3!22 +EPH 1:4!1 +EPH 1:4!2 +EPH 1:4!3 +EPH 1:4!4 +EPH 1:4!5 +EPH 1:4!6 +EPH 1:4!7 +EPH 1:4!8 +EPH 1:4!9 +EPH 1:4!10 +EPH 1:4!11 +EPH 1:4!12 +EPH 1:4!13 +EPH 1:4!14 +EPH 1:4!15 +EPH 1:4!16 +EPH 1:4!17 +EPH 1:5!1 +EPH 1:5!2 +EPH 1:5!3 +EPH 1:5!4 +EPH 1:5!5 +EPH 1:5!6 +EPH 1:5!7 +EPH 1:5!8 +EPH 1:5!9 +EPH 1:5!10 +EPH 1:5!11 +EPH 1:5!12 +EPH 1:5!13 +EPH 1:5!14 +EPH 1:5!15 +EPH 1:6!1 +EPH 1:6!2 +EPH 1:6!3 +EPH 1:6!4 +EPH 1:6!5 +EPH 1:6!6 +EPH 1:6!7 +EPH 1:6!8 +EPH 1:6!9 +EPH 1:6!10 +EPH 1:6!11 +EPH 1:6!12 +EPH 1:7!1 +EPH 1:7!2 +EPH 1:7!3 +EPH 1:7!4 +EPH 1:7!5 +EPH 1:7!6 +EPH 1:7!7 +EPH 1:7!8 +EPH 1:7!9 +EPH 1:7!10 +EPH 1:7!11 +EPH 1:7!12 +EPH 1:7!13 +EPH 1:7!14 +EPH 1:7!15 +EPH 1:7!16 +EPH 1:7!17 +EPH 1:7!18 +EPH 1:7!19 +EPH 1:8!1 +EPH 1:8!2 +EPH 1:8!3 +EPH 1:8!4 +EPH 1:8!5 +EPH 1:8!6 +EPH 1:8!7 +EPH 1:8!8 +EPH 1:8!9 +EPH 1:9!1 +EPH 1:9!2 +EPH 1:9!3 +EPH 1:9!4 +EPH 1:9!5 +EPH 1:9!6 +EPH 1:9!7 +EPH 1:9!8 +EPH 1:9!9 +EPH 1:9!10 +EPH 1:9!11 +EPH 1:9!12 +EPH 1:9!13 +EPH 1:9!14 +EPH 1:9!15 +EPH 1:10!1 +EPH 1:10!2 +EPH 1:10!3 +EPH 1:10!4 +EPH 1:10!5 +EPH 1:10!6 +EPH 1:10!7 +EPH 1:10!8 +EPH 1:10!9 +EPH 1:10!10 +EPH 1:10!11 +EPH 1:10!12 +EPH 1:10!13 +EPH 1:10!14 +EPH 1:10!15 +EPH 1:10!16 +EPH 1:10!17 +EPH 1:10!18 +EPH 1:10!19 +EPH 1:10!20 +EPH 1:10!21 +EPH 1:10!22 +EPH 1:10!23 +EPH 1:11!1 +EPH 1:11!2 +EPH 1:11!3 +EPH 1:11!4 +EPH 1:11!5 +EPH 1:11!6 +EPH 1:11!7 +EPH 1:11!8 +EPH 1:11!9 +EPH 1:11!10 +EPH 1:11!11 +EPH 1:11!12 +EPH 1:11!13 +EPH 1:11!14 +EPH 1:11!15 +EPH 1:11!16 +EPH 1:11!17 +EPH 1:12!1 +EPH 1:12!2 +EPH 1:12!3 +EPH 1:12!5 +EPH 1:12!6 +EPH 1:12!7 +EPH 1:12!8 +EPH 1:12!4 +EPH 1:12!9 +EPH 1:12!10 +EPH 1:12!11 +EPH 1:12!12 +EPH 1:12!13 +EPH 1:13!1 +EPH 1:13!2 +EPH 1:13!3 +EPH 1:13!4 +EPH 1:13!5 +EPH 1:13!6 +EPH 1:13!7 +EPH 1:13!8 +EPH 1:13!9 +EPH 1:13!10 +EPH 1:13!11 +EPH 1:13!12 +EPH 1:13!13 +EPH 1:13!14 +EPH 1:13!15 +EPH 1:13!16 +EPH 1:13!17 +EPH 1:13!18 +EPH 1:13!19 +EPH 1:13!20 +EPH 1:13!21 +EPH 1:13!22 +EPH 1:13!23 +EPH 1:13!24 +EPH 1:13!25 +EPH 1:14!1 +EPH 1:14!2 +EPH 1:14!3 +EPH 1:14!4 +EPH 1:14!5 +EPH 1:14!6 +EPH 1:14!7 +EPH 1:14!8 +EPH 1:14!9 +EPH 1:14!10 +EPH 1:14!11 +EPH 1:14!12 +EPH 1:14!13 +EPH 1:14!14 +EPH 1:14!15 +EPH 1:15!1 +EPH 1:15!2 +EPH 1:15!3 +EPH 1:15!4 +EPH 1:15!5 +EPH 1:15!6 +EPH 1:15!7 +EPH 1:15!8 +EPH 1:15!9 +EPH 1:15!10 +EPH 1:15!11 +EPH 1:15!12 +EPH 1:15!13 +EPH 1:15!14 +EPH 1:15!15 +EPH 1:15!16 +EPH 1:15!17 +EPH 1:15!18 +EPH 1:15!19 +EPH 1:15!20 +EPH 1:16!1 +EPH 1:16!2 +EPH 1:16!3 +EPH 1:16!4 +EPH 1:16!5 +EPH 1:16!6 +EPH 1:16!7 +EPH 1:16!8 +EPH 1:16!9 +EPH 1:16!10 +EPH 1:16!11 +EPH 1:17!1 +EPH 1:17!2 +EPH 1:17!3 +EPH 1:17!4 +EPH 1:17!5 +EPH 1:17!6 +EPH 1:17!7 +EPH 1:17!8 +EPH 1:17!9 +EPH 1:17!10 +EPH 1:17!11 +EPH 1:17!12 +EPH 1:17!13 +EPH 1:17!14 +EPH 1:17!15 +EPH 1:17!16 +EPH 1:17!17 +EPH 1:17!18 +EPH 1:17!19 +EPH 1:17!20 +EPH 1:17!21 +EPH 1:18!1 +EPH 1:18!2 +EPH 1:18!3 +EPH 1:18!4 +EPH 1:18!5 +EPH 1:18!6 +EPH 1:18!7 +EPH 1:18!8 +EPH 1:18!9 +EPH 1:18!10 +EPH 1:18!11 +EPH 1:18!12 +EPH 1:18!13 +EPH 1:18!14 +EPH 1:18!15 +EPH 1:18!16 +EPH 1:18!17 +EPH 1:18!18 +EPH 1:18!19 +EPH 1:18!20 +EPH 1:18!21 +EPH 1:18!22 +EPH 1:18!23 +EPH 1:18!24 +EPH 1:18!25 +EPH 1:18!26 +EPH 1:18!27 +EPH 1:18!28 +EPH 1:19!1 +EPH 1:19!2 +EPH 1:19!3 +EPH 1:19!4 +EPH 1:19!5 +EPH 1:19!6 +EPH 1:19!7 +EPH 1:19!8 +EPH 1:19!9 +EPH 1:19!10 +EPH 1:19!11 +EPH 1:19!12 +EPH 1:19!13 +EPH 1:19!14 +EPH 1:19!15 +EPH 1:19!16 +EPH 1:19!17 +EPH 1:19!18 +EPH 1:19!19 +EPH 1:19!20 +EPH 1:20!1 +EPH 1:20!2 +EPH 1:20!3 +EPH 1:20!4 +EPH 1:20!5 +EPH 1:20!6 +EPH 1:20!7 +EPH 1:20!8 +EPH 1:20!9 +EPH 1:20!10 +EPH 1:20!11 +EPH 1:20!12 +EPH 1:20!13 +EPH 1:20!14 +EPH 1:20!15 +EPH 1:20!16 +EPH 1:20!17 +EPH 1:21!1 +EPH 1:21!2 +EPH 1:21!3 +EPH 1:21!4 +EPH 1:21!5 +EPH 1:21!6 +EPH 1:21!7 +EPH 1:21!8 +EPH 1:21!9 +EPH 1:21!10 +EPH 1:21!11 +EPH 1:21!12 +EPH 1:21!13 +EPH 1:21!14 +EPH 1:21!15 +EPH 1:21!16 +EPH 1:21!17 +EPH 1:21!18 +EPH 1:21!19 +EPH 1:21!20 +EPH 1:21!21 +EPH 1:21!22 +EPH 1:21!23 +EPH 1:21!24 +EPH 1:22!1 +EPH 1:22!2 +EPH 1:22!3 +EPH 1:22!4 +EPH 1:22!5 +EPH 1:22!6 +EPH 1:22!7 +EPH 1:22!8 +EPH 1:22!9 +EPH 1:22!10 +EPH 1:22!11 +EPH 1:22!12 +EPH 1:22!13 +EPH 1:22!14 +EPH 1:22!15 +EPH 1:23!1 +EPH 1:23!2 +EPH 1:23!3 +EPH 1:23!4 +EPH 1:23!5 +EPH 1:23!6 +EPH 1:23!7 +EPH 1:23!8 +EPH 1:23!9 +EPH 1:23!10 +EPH 1:23!11 +EPH 1:23!12 +EPH 1:23!13 +EPH 2:1!1 +EPH 2:1!2 +EPH 2:1!3 +EPH 2:1!4 +EPH 2:1!5 +EPH 2:1!6 +EPH 2:1!7 +EPH 2:1!8 +EPH 2:1!9 +EPH 2:1!10 +EPH 2:2!1 +EPH 2:2!2 +EPH 2:2!3 +EPH 2:2!4 +EPH 2:2!5 +EPH 2:2!6 +EPH 2:2!7 +EPH 2:2!8 +EPH 2:2!9 +EPH 2:2!10 +EPH 2:2!11 +EPH 2:2!12 +EPH 2:2!13 +EPH 2:2!14 +EPH 2:2!15 +EPH 2:2!16 +EPH 2:2!17 +EPH 2:2!18 +EPH 2:2!19 +EPH 2:2!20 +EPH 2:2!21 +EPH 2:2!22 +EPH 2:2!23 +EPH 2:2!24 +EPH 2:2!25 +EPH 2:2!26 +EPH 2:2!27 +EPH 2:3!1 +EPH 2:3!2 +EPH 2:3!3 +EPH 2:3!4 +EPH 2:3!5 +EPH 2:3!6 +EPH 2:3!7 +EPH 2:3!8 +EPH 2:3!9 +EPH 2:3!10 +EPH 2:3!11 +EPH 2:3!12 +EPH 2:3!13 +EPH 2:3!14 +EPH 2:3!15 +EPH 2:3!16 +EPH 2:3!17 +EPH 2:3!18 +EPH 2:3!19 +EPH 2:3!20 +EPH 2:3!21 +EPH 2:3!22 +EPH 2:3!23 +EPH 2:3!24 +EPH 2:3!26 +EPH 2:3!25 +EPH 2:3!27 +EPH 2:3!28 +EPH 2:3!29 +EPH 2:3!30 +EPH 2:4!2 +EPH 2:4!1 +EPH 2:4!3 +EPH 2:4!4 +EPH 2:4!5 +EPH 2:4!6 +EPH 2:4!7 +EPH 2:4!8 +EPH 2:4!9 +EPH 2:4!10 +EPH 2:4!11 +EPH 2:4!12 +EPH 2:4!13 +EPH 2:4!14 +EPH 2:4!15 +EPH 2:5!1 +EPH 2:5!2 +EPH 2:5!3 +EPH 2:5!4 +EPH 2:5!5 +EPH 2:5!6 +EPH 2:5!7 +EPH 2:5!8 +EPH 2:5!9 +EPH 2:5!10 +EPH 2:5!11 +EPH 2:5!12 +EPH 2:6!1 +EPH 2:6!2 +EPH 2:6!3 +EPH 2:6!4 +EPH 2:6!5 +EPH 2:6!6 +EPH 2:6!7 +EPH 2:6!8 +EPH 2:6!9 +EPH 2:6!10 +EPH 2:7!1 +EPH 2:7!2 +EPH 2:7!3 +EPH 2:7!4 +EPH 2:7!5 +EPH 2:7!6 +EPH 2:7!7 +EPH 2:7!8 +EPH 2:7!9 +EPH 2:7!10 +EPH 2:7!11 +EPH 2:7!12 +EPH 2:7!13 +EPH 2:7!14 +EPH 2:7!15 +EPH 2:7!16 +EPH 2:7!17 +EPH 2:7!18 +EPH 2:7!19 +EPH 2:7!20 +EPH 2:8!2 +EPH 2:8!1 +EPH 2:8!3 +EPH 2:8!4 +EPH 2:8!5 +EPH 2:8!6 +EPH 2:8!7 +EPH 2:8!8 +EPH 2:8!9 +EPH 2:8!10 +EPH 2:8!11 +EPH 2:8!12 +EPH 2:8!13 +EPH 2:8!14 +EPH 2:8!15 +EPH 2:9!1 +EPH 2:9!2 +EPH 2:9!3 +EPH 2:9!4 +EPH 2:9!5 +EPH 2:9!6 +EPH 2:9!7 +EPH 2:10!2 +EPH 2:10!3 +EPH 2:10!1 +EPH 2:10!4 +EPH 2:10!5 +EPH 2:10!6 +EPH 2:10!7 +EPH 2:10!8 +EPH 2:10!9 +EPH 2:10!10 +EPH 2:10!11 +EPH 2:10!12 +EPH 2:10!13 +EPH 2:10!14 +EPH 2:10!15 +EPH 2:10!16 +EPH 2:10!17 +EPH 2:10!18 +EPH 2:10!19 +EPH 2:11!1 +EPH 2:11!2 +EPH 2:11!3 +EPH 2:11!4 +EPH 2:11!5 +EPH 2:11!6 +EPH 2:11!7 +EPH 2:11!8 +EPH 2:11!9 +EPH 2:11!10 +EPH 2:11!11 +EPH 2:11!12 +EPH 2:11!13 +EPH 2:11!14 +EPH 2:11!15 +EPH 2:11!16 +EPH 2:11!17 +EPH 2:11!18 +EPH 2:11!19 +EPH 2:12!1 +EPH 2:12!2 +EPH 2:12!3 +EPH 2:12!4 +EPH 2:12!5 +EPH 2:12!6 +EPH 2:12!7 +EPH 2:12!8 +EPH 2:12!9 +EPH 2:12!10 +EPH 2:12!11 +EPH 2:12!12 +EPH 2:12!13 +EPH 2:12!14 +EPH 2:12!15 +EPH 2:12!16 +EPH 2:12!17 +EPH 2:12!18 +EPH 2:12!19 +EPH 2:12!20 +EPH 2:12!21 +EPH 2:12!22 +EPH 2:12!23 +EPH 2:12!24 +EPH 2:12!25 +EPH 2:12!26 +EPH 2:13!2 +EPH 2:13!1 +EPH 2:13!3 +EPH 2:13!4 +EPH 2:13!5 +EPH 2:13!6 +EPH 2:13!7 +EPH 2:13!8 +EPH 2:13!9 +EPH 2:13!10 +EPH 2:13!11 +EPH 2:13!12 +EPH 2:13!13 +EPH 2:13!14 +EPH 2:13!15 +EPH 2:13!16 +EPH 2:13!17 +EPH 2:14!2 +EPH 2:14!1 +EPH 2:14!3 +EPH 2:14!4 +EPH 2:14!5 +EPH 2:14!6 +EPH 2:14!7 +EPH 2:14!8 +EPH 2:14!9 +EPH 2:14!10 +EPH 2:14!11 +EPH 2:14!12 +EPH 2:14!13 +EPH 2:14!14 +EPH 2:14!15 +EPH 2:14!16 +EPH 2:14!18 +EPH 2:14!19 +EPH 2:14!17 +EPH 2:14!20 +EPH 2:14!21 +EPH 2:14!22 +EPH 2:14!23 +EPH 2:15!1 +EPH 2:15!2 +EPH 2:15!3 +EPH 2:15!4 +EPH 2:15!5 +EPH 2:15!6 +EPH 2:15!7 +EPH 2:15!8 +EPH 2:15!9 +EPH 2:15!10 +EPH 2:15!11 +EPH 2:15!12 +EPH 2:15!13 +EPH 2:15!14 +EPH 2:15!15 +EPH 2:15!16 +EPH 2:15!17 +EPH 2:15!18 +EPH 2:15!19 +EPH 2:16!1 +EPH 2:16!2 +EPH 2:16!3 +EPH 2:16!4 +EPH 2:16!5 +EPH 2:16!6 +EPH 2:16!7 +EPH 2:16!8 +EPH 2:16!9 +EPH 2:16!10 +EPH 2:16!11 +EPH 2:16!12 +EPH 2:16!13 +EPH 2:16!14 +EPH 2:16!15 +EPH 2:16!16 +EPH 2:16!17 +EPH 2:17!1 +EPH 2:17!2 +EPH 2:17!3 +EPH 2:17!4 +EPH 2:17!5 +EPH 2:17!6 +EPH 2:17!7 +EPH 2:17!8 +EPH 2:17!9 +EPH 2:17!10 +EPH 2:17!11 +EPH 2:18!1 +EPH 2:18!2 +EPH 2:18!3 +EPH 2:18!4 +EPH 2:18!5 +EPH 2:18!6 +EPH 2:18!7 +EPH 2:18!8 +EPH 2:18!9 +EPH 2:18!10 +EPH 2:18!11 +EPH 2:18!12 +EPH 2:18!13 +EPH 2:18!14 +EPH 2:19!1 +EPH 2:19!2 +EPH 2:19!3 +EPH 2:19!4 +EPH 2:19!5 +EPH 2:19!6 +EPH 2:19!7 +EPH 2:19!8 +EPH 2:19!9 +EPH 2:19!10 +EPH 2:19!11 +EPH 2:19!12 +EPH 2:19!13 +EPH 2:19!14 +EPH 2:19!15 +EPH 2:19!16 +EPH 2:20!1 +EPH 2:20!2 +EPH 2:20!3 +EPH 2:20!4 +EPH 2:20!5 +EPH 2:20!6 +EPH 2:20!7 +EPH 2:20!8 +EPH 2:20!9 +EPH 2:20!10 +EPH 2:20!11 +EPH 2:20!12 +EPH 2:20!13 +EPH 2:21!1 +EPH 2:21!2 +EPH 2:21!3 +EPH 2:21!4 +EPH 2:21!5 +EPH 2:21!6 +EPH 2:21!7 +EPH 2:21!8 +EPH 2:21!9 +EPH 2:21!10 +EPH 2:21!11 +EPH 2:22!1 +EPH 2:22!2 +EPH 2:22!3 +EPH 2:22!4 +EPH 2:22!5 +EPH 2:22!6 +EPH 2:22!7 +EPH 2:22!8 +EPH 2:22!9 +EPH 2:22!10 +EPH 2:22!11 +EPH 3:1!1 +EPH 3:1!2 +EPH 3:1!3 +EPH 3:1!4 +EPH 3:1!5 +EPH 3:1!6 +EPH 3:1!7 +EPH 3:1!8 +EPH 3:1!9 +EPH 3:1!10 +EPH 3:1!11 +EPH 3:1!12 +EPH 3:1!13 +EPH 3:2!1 +EPH 3:2!2 +EPH 3:2!3 +EPH 3:2!4 +EPH 3:2!5 +EPH 3:2!6 +EPH 3:2!7 +EPH 3:2!8 +EPH 3:2!9 +EPH 3:2!10 +EPH 3:2!11 +EPH 3:2!12 +EPH 3:2!13 +EPH 3:2!14 +EPH 3:3!1 +EPH 3:3!2 +EPH 3:3!3 +EPH 3:3!4 +EPH 3:3!5 +EPH 3:3!6 +EPH 3:3!7 +EPH 3:3!8 +EPH 3:3!9 +EPH 3:3!10 +EPH 3:3!11 +EPH 3:4!1 +EPH 3:4!2 +EPH 3:4!3 +EPH 3:4!4 +EPH 3:4!5 +EPH 3:4!6 +EPH 3:4!7 +EPH 3:4!8 +EPH 3:4!9 +EPH 3:4!10 +EPH 3:4!11 +EPH 3:4!12 +EPH 3:4!13 +EPH 3:5!1 +EPH 3:5!2 +EPH 3:5!3 +EPH 3:5!4 +EPH 3:5!5 +EPH 3:5!6 +EPH 3:5!7 +EPH 3:5!8 +EPH 3:5!9 +EPH 3:5!10 +EPH 3:5!11 +EPH 3:5!12 +EPH 3:5!13 +EPH 3:5!14 +EPH 3:5!15 +EPH 3:5!16 +EPH 3:5!17 +EPH 3:5!18 +EPH 3:5!19 +EPH 3:5!20 +EPH 3:6!1 +EPH 3:6!2 +EPH 3:6!3 +EPH 3:6!4 +EPH 3:6!5 +EPH 3:6!6 +EPH 3:6!7 +EPH 3:6!8 +EPH 3:6!9 +EPH 3:6!10 +EPH 3:6!11 +EPH 3:6!12 +EPH 3:6!13 +EPH 3:6!14 +EPH 3:6!15 +EPH 3:6!16 +EPH 3:7!1 +EPH 3:7!3 +EPH 3:7!2 +EPH 3:7!4 +EPH 3:7!5 +EPH 3:7!6 +EPH 3:7!7 +EPH 3:7!8 +EPH 3:7!9 +EPH 3:7!10 +EPH 3:7!11 +EPH 3:7!12 +EPH 3:7!13 +EPH 3:7!14 +EPH 3:7!15 +EPH 3:7!16 +EPH 3:7!17 +EPH 3:7!18 +EPH 3:7!19 +EPH 3:8!1 +EPH 3:8!2 +EPH 3:8!3 +EPH 3:8!4 +EPH 3:8!5 +EPH 3:8!6 +EPH 3:8!7 +EPH 3:8!8 +EPH 3:8!9 +EPH 3:8!10 +EPH 3:8!11 +EPH 3:8!12 +EPH 3:8!13 +EPH 3:8!14 +EPH 3:8!15 +EPH 3:8!16 +EPH 3:8!17 +EPH 3:9!1 +EPH 3:9!2 +EPH 3:9!3 +EPH 3:9!4 +EPH 3:9!5 +EPH 3:9!6 +EPH 3:9!7 +EPH 3:9!8 +EPH 3:9!9 +EPH 3:9!10 +EPH 3:9!11 +EPH 3:9!12 +EPH 3:9!13 +EPH 3:9!14 +EPH 3:9!15 +EPH 3:9!16 +EPH 3:9!17 +EPH 3:9!18 +EPH 3:9!19 +EPH 3:10!1 +EPH 3:10!2 +EPH 3:10!3 +EPH 3:10!4 +EPH 3:10!5 +EPH 3:10!6 +EPH 3:10!7 +EPH 3:10!8 +EPH 3:10!9 +EPH 3:10!10 +EPH 3:10!11 +EPH 3:10!12 +EPH 3:10!13 +EPH 3:10!14 +EPH 3:10!15 +EPH 3:10!16 +EPH 3:10!17 +EPH 3:10!18 +EPH 3:10!19 +EPH 3:11!1 +EPH 3:11!2 +EPH 3:11!3 +EPH 3:11!4 +EPH 3:11!5 +EPH 3:11!6 +EPH 3:11!7 +EPH 3:11!8 +EPH 3:11!9 +EPH 3:11!10 +EPH 3:11!11 +EPH 3:11!12 +EPH 3:11!13 +EPH 3:12!1 +EPH 3:12!2 +EPH 3:12!3 +EPH 3:12!4 +EPH 3:12!5 +EPH 3:12!6 +EPH 3:12!7 +EPH 3:12!8 +EPH 3:12!9 +EPH 3:12!10 +EPH 3:12!11 +EPH 3:12!12 +EPH 3:12!13 +EPH 3:13!1 +EPH 3:13!2 +EPH 3:13!3 +EPH 3:13!4 +EPH 3:13!5 +EPH 3:13!6 +EPH 3:13!7 +EPH 3:13!8 +EPH 3:13!9 +EPH 3:13!10 +EPH 3:13!11 +EPH 3:13!12 +EPH 3:13!13 +EPH 3:13!14 +EPH 3:14!1 +EPH 3:14!2 +EPH 3:14!3 +EPH 3:14!4 +EPH 3:14!5 +EPH 3:14!6 +EPH 3:14!7 +EPH 3:14!8 +EPH 3:14!9 +EPH 3:15!1 +EPH 3:15!2 +EPH 3:15!3 +EPH 3:15!4 +EPH 3:15!5 +EPH 3:15!6 +EPH 3:15!7 +EPH 3:15!8 +EPH 3:15!9 +EPH 3:15!10 +EPH 3:16!1 +EPH 3:16!2 +EPH 3:16!3 +EPH 3:16!4 +EPH 3:16!5 +EPH 3:16!6 +EPH 3:16!7 +EPH 3:16!8 +EPH 3:16!9 +EPH 3:16!10 +EPH 3:16!11 +EPH 3:16!12 +EPH 3:16!13 +EPH 3:16!14 +EPH 3:16!15 +EPH 3:16!16 +EPH 3:16!17 +EPH 3:16!18 +EPH 3:16!19 +EPH 3:17!1 +EPH 3:17!2 +EPH 3:17!3 +EPH 3:17!4 +EPH 3:17!5 +EPH 3:17!6 +EPH 3:17!7 +EPH 3:17!8 +EPH 3:17!9 +EPH 3:17!10 +EPH 3:17!11 +EPH 3:17!12 +EPH 3:17!13 +EPH 3:17!14 +EPH 3:17!15 +EPH 3:18!1 +EPH 3:18!2 +EPH 3:18!3 +EPH 3:18!4 +EPH 3:18!5 +EPH 3:18!6 +EPH 3:18!7 +EPH 3:18!8 +EPH 3:18!9 +EPH 3:18!10 +EPH 3:18!11 +EPH 3:18!12 +EPH 3:18!13 +EPH 3:18!14 +EPH 3:18!15 +EPH 3:18!16 +EPH 3:19!2 +EPH 3:19!1 +EPH 3:19!3 +EPH 3:19!4 +EPH 3:19!5 +EPH 3:19!6 +EPH 3:19!7 +EPH 3:19!8 +EPH 3:19!9 +EPH 3:19!10 +EPH 3:19!11 +EPH 3:19!12 +EPH 3:19!13 +EPH 3:19!14 +EPH 3:19!15 +EPH 3:19!16 +EPH 3:19!17 +EPH 3:20!2 +EPH 3:20!1 +EPH 3:20!3 +EPH 3:20!6 +EPH 3:20!7 +EPH 3:20!4 +EPH 3:20!5 +EPH 3:20!8 +EPH 3:20!9 +EPH 3:20!10 +EPH 3:20!11 +EPH 3:20!12 +EPH 3:20!13 +EPH 3:20!14 +EPH 3:20!15 +EPH 3:20!16 +EPH 3:20!17 +EPH 3:20!18 +EPH 3:21!1 +EPH 3:21!2 +EPH 3:21!3 +EPH 3:21!4 +EPH 3:21!5 +EPH 3:21!6 +EPH 3:21!7 +EPH 3:21!8 +EPH 3:21!9 +EPH 3:21!10 +EPH 3:21!11 +EPH 3:21!12 +EPH 3:21!13 +EPH 3:21!14 +EPH 3:21!15 +EPH 3:21!16 +EPH 3:21!17 +EPH 3:21!18 +EPH 3:21!19 +EPH 4:1!2 +EPH 4:1!1 +EPH 4:1!3 +EPH 4:1!4 +EPH 4:1!5 +EPH 4:1!6 +EPH 4:1!7 +EPH 4:1!8 +EPH 4:1!9 +EPH 4:1!10 +EPH 4:1!11 +EPH 4:1!12 +EPH 4:1!13 +EPH 4:1!14 +EPH 4:2!1 +EPH 4:2!2 +EPH 4:2!3 +EPH 4:2!4 +EPH 4:2!5 +EPH 4:2!6 +EPH 4:2!7 +EPH 4:2!8 +EPH 4:2!9 +EPH 4:2!10 +EPH 4:2!11 +EPH 4:3!1 +EPH 4:3!2 +EPH 4:3!3 +EPH 4:3!4 +EPH 4:3!5 +EPH 4:3!6 +EPH 4:3!7 +EPH 4:3!8 +EPH 4:3!9 +EPH 4:3!10 +EPH 4:3!11 +EPH 4:4!1 +EPH 4:4!2 +EPH 4:4!3 +EPH 4:4!4 +EPH 4:4!5 +EPH 4:4!6 +EPH 4:4!7 +EPH 4:4!8 +EPH 4:4!9 +EPH 4:4!10 +EPH 4:4!11 +EPH 4:4!12 +EPH 4:4!13 +EPH 4:4!14 +EPH 4:5!1 +EPH 4:5!2 +EPH 4:5!3 +EPH 4:5!4 +EPH 4:5!5 +EPH 4:5!6 +EPH 4:6!1 +EPH 4:6!2 +EPH 4:6!3 +EPH 4:6!4 +EPH 4:6!5 +EPH 4:6!6 +EPH 4:6!7 +EPH 4:6!8 +EPH 4:6!9 +EPH 4:6!10 +EPH 4:6!11 +EPH 4:6!12 +EPH 4:6!13 +EPH 4:6!14 +EPH 4:7!2 +EPH 4:7!1 +EPH 4:7!3 +EPH 4:7!4 +EPH 4:7!5 +EPH 4:7!6 +EPH 4:7!7 +EPH 4:7!8 +EPH 4:7!9 +EPH 4:7!10 +EPH 4:7!11 +EPH 4:7!12 +EPH 4:7!13 +EPH 4:7!14 +EPH 4:8!1 +EPH 4:8!2 +EPH 4:8!3 +EPH 4:8!4 +EPH 4:8!5 +EPH 4:8!6 +EPH 4:8!7 +EPH 4:8!8 +EPH 4:8!9 +EPH 4:8!10 +EPH 4:8!11 +EPH 4:9!2 +EPH 4:9!1 +EPH 4:9!3 +EPH 4:9!4 +EPH 4:9!5 +EPH 4:9!6 +EPH 4:9!7 +EPH 4:9!8 +EPH 4:9!9 +EPH 4:9!10 +EPH 4:9!11 +EPH 4:9!12 +EPH 4:9!13 +EPH 4:9!14 +EPH 4:9!15 +EPH 4:9!16 +EPH 4:10!1 +EPH 4:10!2 +EPH 4:10!3 +EPH 4:10!4 +EPH 4:10!5 +EPH 4:10!6 +EPH 4:10!7 +EPH 4:10!8 +EPH 4:10!9 +EPH 4:10!10 +EPH 4:10!11 +EPH 4:10!12 +EPH 4:10!13 +EPH 4:10!14 +EPH 4:10!15 +EPH 4:11!1 +EPH 4:11!2 +EPH 4:11!3 +EPH 4:11!5 +EPH 4:11!4 +EPH 4:11!6 +EPH 4:11!8 +EPH 4:11!7 +EPH 4:11!9 +EPH 4:11!11 +EPH 4:11!10 +EPH 4:11!12 +EPH 4:11!14 +EPH 4:11!13 +EPH 4:11!15 +EPH 4:11!16 +EPH 4:11!17 +EPH 4:12!1 +EPH 4:12!2 +EPH 4:12!3 +EPH 4:12!4 +EPH 4:12!5 +EPH 4:12!6 +EPH 4:12!7 +EPH 4:12!8 +EPH 4:12!9 +EPH 4:12!10 +EPH 4:12!11 +EPH 4:12!12 +EPH 4:12!13 +EPH 4:12!14 +EPH 4:13!1 +EPH 4:13!2 +EPH 4:13!3 +EPH 4:13!4 +EPH 4:13!5 +EPH 4:13!6 +EPH 4:13!7 +EPH 4:13!8 +EPH 4:13!9 +EPH 4:13!10 +EPH 4:13!11 +EPH 4:13!12 +EPH 4:13!13 +EPH 4:13!14 +EPH 4:13!15 +EPH 4:13!16 +EPH 4:13!17 +EPH 4:13!18 +EPH 4:13!19 +EPH 4:13!20 +EPH 4:13!21 +EPH 4:13!22 +EPH 4:13!23 +EPH 4:13!24 +EPH 4:13!25 +EPH 4:13!26 +EPH 4:14!1 +EPH 4:14!2 +EPH 4:14!3 +EPH 4:14!4 +EPH 4:14!5 +EPH 4:14!6 +EPH 4:14!7 +EPH 4:14!8 +EPH 4:14!9 +EPH 4:14!10 +EPH 4:14!11 +EPH 4:14!12 +EPH 4:14!13 +EPH 4:14!14 +EPH 4:14!15 +EPH 4:14!16 +EPH 4:14!17 +EPH 4:14!18 +EPH 4:14!19 +EPH 4:14!20 +EPH 4:14!21 +EPH 4:14!22 +EPH 4:14!23 +EPH 4:15!2 +EPH 4:15!1 +EPH 4:15!3 +EPH 4:15!4 +EPH 4:15!5 +EPH 4:15!8 +EPH 4:15!9 +EPH 4:15!6 +EPH 4:15!7 +EPH 4:15!10 +EPH 4:15!11 +EPH 4:15!12 +EPH 4:15!13 +EPH 4:15!14 +EPH 4:16!1 +EPH 4:16!2 +EPH 4:16!3 +EPH 4:16!4 +EPH 4:16!5 +EPH 4:16!6 +EPH 4:16!7 +EPH 4:16!8 +EPH 4:16!9 +EPH 4:16!10 +EPH 4:16!11 +EPH 4:16!12 +EPH 4:16!13 +EPH 4:16!14 +EPH 4:16!15 +EPH 4:16!16 +EPH 4:16!17 +EPH 4:16!18 +EPH 4:16!19 +EPH 4:16!20 +EPH 4:16!21 +EPH 4:16!22 +EPH 4:16!23 +EPH 4:16!24 +EPH 4:16!25 +EPH 4:16!26 +EPH 4:16!27 +EPH 4:16!28 +EPH 4:16!29 +EPH 4:16!30 +EPH 4:17!2 +EPH 4:17!1 +EPH 4:17!3 +EPH 4:17!4 +EPH 4:17!5 +EPH 4:17!6 +EPH 4:17!7 +EPH 4:17!8 +EPH 4:17!9 +EPH 4:17!10 +EPH 4:17!11 +EPH 4:17!12 +EPH 4:17!13 +EPH 4:17!14 +EPH 4:17!15 +EPH 4:17!16 +EPH 4:17!17 +EPH 4:17!18 +EPH 4:17!19 +EPH 4:17!20 +EPH 4:18!1 +EPH 4:18!4 +EPH 4:18!2 +EPH 4:18!3 +EPH 4:18!5 +EPH 4:18!6 +EPH 4:18!7 +EPH 4:18!8 +EPH 4:18!9 +EPH 4:18!10 +EPH 4:18!11 +EPH 4:18!12 +EPH 4:18!13 +EPH 4:18!14 +EPH 4:18!15 +EPH 4:18!16 +EPH 4:18!17 +EPH 4:18!18 +EPH 4:18!19 +EPH 4:18!20 +EPH 4:18!21 +EPH 4:18!22 +EPH 4:19!1 +EPH 4:19!2 +EPH 4:19!3 +EPH 4:19!4 +EPH 4:19!5 +EPH 4:19!6 +EPH 4:19!7 +EPH 4:19!8 +EPH 4:19!9 +EPH 4:19!10 +EPH 4:19!11 +EPH 4:19!12 +EPH 4:20!2 +EPH 4:20!1 +EPH 4:20!3 +EPH 4:20!4 +EPH 4:20!5 +EPH 4:20!6 +EPH 4:20!7 +EPH 4:21!1 +EPH 4:21!2 +EPH 4:21!3 +EPH 4:21!4 +EPH 4:21!5 +EPH 4:21!6 +EPH 4:21!7 +EPH 4:21!8 +EPH 4:21!9 +EPH 4:21!10 +EPH 4:21!11 +EPH 4:21!12 +EPH 4:21!13 +EPH 4:21!14 +EPH 4:22!1 +EPH 4:22!2 +EPH 4:22!3 +EPH 4:22!4 +EPH 4:22!5 +EPH 4:22!6 +EPH 4:22!7 +EPH 4:22!8 +EPH 4:22!9 +EPH 4:22!10 +EPH 4:22!11 +EPH 4:22!12 +EPH 4:22!13 +EPH 4:22!14 +EPH 4:22!15 +EPH 4:22!16 +EPH 4:23!2 +EPH 4:23!1 +EPH 4:23!3 +EPH 4:23!4 +EPH 4:23!5 +EPH 4:23!6 +EPH 4:23!7 +EPH 4:24!1 +EPH 4:24!2 +EPH 4:24!3 +EPH 4:24!4 +EPH 4:24!5 +EPH 4:24!6 +EPH 4:24!7 +EPH 4:24!8 +EPH 4:24!9 +EPH 4:24!10 +EPH 4:24!11 +EPH 4:24!12 +EPH 4:24!13 +EPH 4:24!14 +EPH 4:24!15 +EPH 4:25!1 +EPH 4:25!2 +EPH 4:25!3 +EPH 4:25!4 +EPH 4:25!5 +EPH 4:25!6 +EPH 4:25!7 +EPH 4:25!8 +EPH 4:25!9 +EPH 4:25!10 +EPH 4:25!11 +EPH 4:25!12 +EPH 4:25!13 +EPH 4:25!14 +EPH 4:25!15 +EPH 4:26!1 +EPH 4:26!2 +EPH 4:26!3 +EPH 4:26!4 +EPH 4:26!5 +EPH 4:26!6 +EPH 4:26!7 +EPH 4:26!8 +EPH 4:26!9 +EPH 4:26!10 +EPH 4:26!11 +EPH 4:27!1 +EPH 4:27!2 +EPH 4:27!3 +EPH 4:27!4 +EPH 4:27!5 +EPH 4:28!1 +EPH 4:28!2 +EPH 4:28!3 +EPH 4:28!4 +EPH 4:28!6 +EPH 4:28!5 +EPH 4:28!7 +EPH 4:28!8 +EPH 4:28!9 +EPH 4:28!10 +EPH 4:28!11 +EPH 4:28!12 +EPH 4:28!13 +EPH 4:28!14 +EPH 4:28!15 +EPH 4:28!16 +EPH 4:28!17 +EPH 4:28!18 +EPH 4:28!19 +EPH 4:29!1 +EPH 4:29!2 +EPH 4:29!3 +EPH 4:29!4 +EPH 4:29!5 +EPH 4:29!6 +EPH 4:29!7 +EPH 4:29!8 +EPH 4:29!9 +EPH 4:29!10 +EPH 4:29!11 +EPH 4:29!12 +EPH 4:29!13 +EPH 4:29!14 +EPH 4:29!15 +EPH 4:29!16 +EPH 4:29!17 +EPH 4:29!18 +EPH 4:29!19 +EPH 4:29!20 +EPH 4:29!21 +EPH 4:29!22 +EPH 4:30!1 +EPH 4:30!2 +EPH 4:30!3 +EPH 4:30!4 +EPH 4:30!5 +EPH 4:30!6 +EPH 4:30!7 +EPH 4:30!8 +EPH 4:30!9 +EPH 4:30!10 +EPH 4:30!11 +EPH 4:30!12 +EPH 4:30!13 +EPH 4:30!14 +EPH 4:30!15 +EPH 4:31!1 +EPH 4:31!2 +EPH 4:31!3 +EPH 4:31!4 +EPH 4:31!5 +EPH 4:31!6 +EPH 4:31!7 +EPH 4:31!8 +EPH 4:31!9 +EPH 4:31!10 +EPH 4:31!11 +EPH 4:31!12 +EPH 4:31!13 +EPH 4:31!14 +EPH 4:31!15 +EPH 4:31!16 +EPH 4:32!2 +EPH 4:32!1 +EPH 4:32!3 +EPH 4:32!4 +EPH 4:32!5 +EPH 4:32!6 +EPH 4:32!7 +EPH 4:32!8 +EPH 4:32!9 +EPH 4:32!10 +EPH 4:32!11 +EPH 4:32!12 +EPH 4:32!13 +EPH 4:32!14 +EPH 4:32!15 +EPH 4:32!16 +EPH 5:1!2 +EPH 5:1!1 +EPH 5:1!3 +EPH 5:1!4 +EPH 5:1!5 +EPH 5:1!6 +EPH 5:1!7 +EPH 5:1!8 +EPH 5:2!1 +EPH 5:2!2 +EPH 5:2!3 +EPH 5:2!4 +EPH 5:2!5 +EPH 5:2!6 +EPH 5:2!7 +EPH 5:2!8 +EPH 5:2!9 +EPH 5:2!10 +EPH 5:2!11 +EPH 5:2!12 +EPH 5:2!13 +EPH 5:2!14 +EPH 5:2!15 +EPH 5:2!16 +EPH 5:2!17 +EPH 5:2!18 +EPH 5:2!19 +EPH 5:2!20 +EPH 5:2!21 +EPH 5:2!22 +EPH 5:2!23 +EPH 5:3!2 +EPH 5:3!1 +EPH 5:3!3 +EPH 5:3!4 +EPH 5:3!5 +EPH 5:3!6 +EPH 5:3!7 +EPH 5:3!8 +EPH 5:3!9 +EPH 5:3!10 +EPH 5:3!11 +EPH 5:3!12 +EPH 5:3!13 +EPH 5:3!14 +EPH 5:4!1 +EPH 5:4!2 +EPH 5:4!3 +EPH 5:4!4 +EPH 5:4!5 +EPH 5:4!6 +EPH 5:4!7 +EPH 5:4!8 +EPH 5:4!9 +EPH 5:4!10 +EPH 5:4!11 +EPH 5:4!12 +EPH 5:5!2 +EPH 5:5!1 +EPH 5:5!3 +EPH 5:5!4 +EPH 5:5!5 +EPH 5:5!6 +EPH 5:5!7 +EPH 5:5!8 +EPH 5:5!9 +EPH 5:5!10 +EPH 5:5!11 +EPH 5:5!12 +EPH 5:5!13 +EPH 5:5!14 +EPH 5:5!15 +EPH 5:5!16 +EPH 5:5!17 +EPH 5:5!18 +EPH 5:5!19 +EPH 5:5!20 +EPH 5:5!21 +EPH 5:5!22 +EPH 5:5!23 +EPH 5:5!24 +EPH 5:6!1 +EPH 5:6!2 +EPH 5:6!3 +EPH 5:6!4 +EPH 5:6!5 +EPH 5:6!8 +EPH 5:6!6 +EPH 5:6!7 +EPH 5:6!9 +EPH 5:6!10 +EPH 5:6!11 +EPH 5:6!12 +EPH 5:6!13 +EPH 5:6!14 +EPH 5:6!15 +EPH 5:6!16 +EPH 5:6!17 +EPH 5:6!18 +EPH 5:7!2 +EPH 5:7!1 +EPH 5:7!3 +EPH 5:7!4 +EPH 5:7!5 +EPH 5:8!2 +EPH 5:8!1 +EPH 5:8!3 +EPH 5:8!4 +EPH 5:8!6 +EPH 5:8!5 +EPH 5:8!7 +EPH 5:8!8 +EPH 5:8!9 +EPH 5:8!10 +EPH 5:8!11 +EPH 5:8!12 +EPH 5:8!13 +EPH 5:9!2 +EPH 5:9!1 +EPH 5:9!3 +EPH 5:9!4 +EPH 5:9!5 +EPH 5:9!6 +EPH 5:9!7 +EPH 5:9!8 +EPH 5:9!9 +EPH 5:9!10 +EPH 5:9!11 +EPH 5:9!12 +EPH 5:10!1 +EPH 5:10!2 +EPH 5:10!3 +EPH 5:10!4 +EPH 5:10!5 +EPH 5:10!6 +EPH 5:11!1 +EPH 5:11!2 +EPH 5:11!3 +EPH 5:11!4 +EPH 5:11!5 +EPH 5:11!6 +EPH 5:11!7 +EPH 5:11!8 +EPH 5:11!9 +EPH 5:11!11 +EPH 5:11!10 +EPH 5:11!12 +EPH 5:11!13 +EPH 5:12!2 +EPH 5:12!1 +EPH 5:12!3 +EPH 5:12!4 +EPH 5:12!5 +EPH 5:12!6 +EPH 5:12!7 +EPH 5:12!8 +EPH 5:12!9 +EPH 5:12!10 +EPH 5:13!2 +EPH 5:13!1 +EPH 5:13!3 +EPH 5:13!4 +EPH 5:13!5 +EPH 5:13!6 +EPH 5:13!7 +EPH 5:13!8 +EPH 5:13!10 +EPH 5:13!9 +EPH 5:13!11 +EPH 5:13!12 +EPH 5:13!13 +EPH 5:13!14 +EPH 5:14!1 +EPH 5:14!2 +EPH 5:14!3 +EPH 5:14!4 +EPH 5:14!5 +EPH 5:14!6 +EPH 5:14!7 +EPH 5:14!8 +EPH 5:14!9 +EPH 5:14!10 +EPH 5:14!11 +EPH 5:14!12 +EPH 5:14!13 +EPH 5:14!14 +EPH 5:14!15 +EPH 5:15!2 +EPH 5:15!1 +EPH 5:15!3 +EPH 5:15!4 +EPH 5:15!5 +EPH 5:15!6 +EPH 5:15!7 +EPH 5:15!8 +EPH 5:15!9 +EPH 5:15!10 +EPH 5:15!11 +EPH 5:16!1 +EPH 5:16!2 +EPH 5:16!3 +EPH 5:16!4 +EPH 5:16!5 +EPH 5:16!6 +EPH 5:16!7 +EPH 5:16!8 +EPH 5:17!1 +EPH 5:17!2 +EPH 5:17!3 +EPH 5:17!4 +EPH 5:17!5 +EPH 5:17!6 +EPH 5:17!7 +EPH 5:17!8 +EPH 5:17!9 +EPH 5:17!10 +EPH 5:17!11 +EPH 5:17!12 +EPH 5:18!1 +EPH 5:18!2 +EPH 5:18!3 +EPH 5:18!4 +EPH 5:18!5 +EPH 5:18!6 +EPH 5:18!7 +EPH 5:18!8 +EPH 5:18!9 +EPH 5:18!10 +EPH 5:18!11 +EPH 5:18!12 +EPH 5:19!1 +EPH 5:19!2 +EPH 5:19!3 +EPH 5:19!4 +EPH 5:19!5 +EPH 5:19!6 +EPH 5:19!7 +EPH 5:19!8 +EPH 5:19!9 +EPH 5:19!10 +EPH 5:19!11 +EPH 5:19!12 +EPH 5:19!13 +EPH 5:19!14 +EPH 5:19!15 +EPH 5:19!16 +EPH 5:20!1 +EPH 5:20!2 +EPH 5:20!3 +EPH 5:20!4 +EPH 5:20!5 +EPH 5:20!6 +EPH 5:20!7 +EPH 5:20!8 +EPH 5:20!9 +EPH 5:20!10 +EPH 5:20!11 +EPH 5:20!12 +EPH 5:20!13 +EPH 5:20!14 +EPH 5:20!15 +EPH 5:21!1 +EPH 5:21!2 +EPH 5:21!3 +EPH 5:21!4 +EPH 5:21!5 +EPH 5:22!1 +EPH 5:22!2 +EPH 5:22!3 +EPH 5:22!4 +EPH 5:22!5 +EPH 5:22!6 +EPH 5:22!7 +EPH 5:22!8 +EPH 5:23!1 +EPH 5:23!2 +EPH 5:23!3 +EPH 5:23!4 +EPH 5:23!5 +EPH 5:23!6 +EPH 5:23!7 +EPH 5:23!8 +EPH 5:23!9 +EPH 5:23!10 +EPH 5:23!11 +EPH 5:23!12 +EPH 5:23!13 +EPH 5:23!14 +EPH 5:23!15 +EPH 5:23!16 +EPH 5:23!17 +EPH 5:24!1 +EPH 5:24!2 +EPH 5:24!3 +EPH 5:24!4 +EPH 5:24!5 +EPH 5:24!6 +EPH 5:24!7 +EPH 5:24!8 +EPH 5:24!9 +EPH 5:24!10 +EPH 5:24!11 +EPH 5:24!12 +EPH 5:24!13 +EPH 5:24!14 +EPH 5:24!15 +EPH 5:25!1 +EPH 5:25!2 +EPH 5:25!3 +EPH 5:25!4 +EPH 5:25!5 +EPH 5:25!6 +EPH 5:25!7 +EPH 5:25!8 +EPH 5:25!9 +EPH 5:25!10 +EPH 5:25!11 +EPH 5:25!12 +EPH 5:25!13 +EPH 5:25!14 +EPH 5:25!15 +EPH 5:25!16 +EPH 5:25!17 +EPH 5:26!1 +EPH 5:26!2 +EPH 5:26!3 +EPH 5:26!4 +EPH 5:26!5 +EPH 5:26!6 +EPH 5:26!7 +EPH 5:26!8 +EPH 5:26!9 +EPH 5:26!10 +EPH 5:27!1 +EPH 5:27!2 +EPH 5:27!3 +EPH 5:27!4 +EPH 5:27!6 +EPH 5:27!7 +EPH 5:27!5 +EPH 5:27!8 +EPH 5:27!9 +EPH 5:27!10 +EPH 5:27!11 +EPH 5:27!12 +EPH 5:27!13 +EPH 5:27!14 +EPH 5:27!15 +EPH 5:27!16 +EPH 5:27!17 +EPH 5:27!18 +EPH 5:27!19 +EPH 5:27!20 +EPH 5:27!21 +EPH 5:27!22 +EPH 5:28!1 +EPH 5:28!2 +EPH 5:28!3 +EPH 5:28!4 +EPH 5:28!5 +EPH 5:28!6 +EPH 5:28!7 +EPH 5:28!8 +EPH 5:28!9 +EPH 5:28!10 +EPH 5:28!11 +EPH 5:28!12 +EPH 5:28!13 +EPH 5:28!14 +EPH 5:28!15 +EPH 5:28!16 +EPH 5:28!17 +EPH 5:28!18 +EPH 5:28!19 +EPH 5:28!20 +EPH 5:29!2 +EPH 5:29!1 +EPH 5:29!3 +EPH 5:29!4 +EPH 5:29!5 +EPH 5:29!6 +EPH 5:29!7 +EPH 5:29!8 +EPH 5:29!9 +EPH 5:29!10 +EPH 5:29!11 +EPH 5:29!12 +EPH 5:29!13 +EPH 5:29!14 +EPH 5:29!15 +EPH 5:29!16 +EPH 5:29!17 +EPH 5:29!18 +EPH 5:30!1 +EPH 5:30!3 +EPH 5:30!2 +EPH 5:30!4 +EPH 5:30!5 +EPH 5:30!6 +EPH 5:31!1 +EPH 5:31!2 +EPH 5:31!3 +EPH 5:31!4 +EPH 5:31!5 +EPH 5:31!6 +EPH 5:31!7 +EPH 5:31!8 +EPH 5:31!9 +EPH 5:31!10 +EPH 5:31!11 +EPH 5:31!12 +EPH 5:31!13 +EPH 5:31!14 +EPH 5:31!15 +EPH 5:31!16 +EPH 5:31!17 +EPH 5:31!18 +EPH 5:31!19 +EPH 5:31!20 +EPH 5:31!21 +EPH 5:31!22 +EPH 5:32!1 +EPH 5:32!2 +EPH 5:32!3 +EPH 5:32!4 +EPH 5:32!5 +EPH 5:32!7 +EPH 5:32!6 +EPH 5:32!8 +EPH 5:32!9 +EPH 5:32!10 +EPH 5:32!11 +EPH 5:32!12 +EPH 5:32!13 +EPH 5:32!14 +EPH 5:33!1 +EPH 5:33!2 +EPH 5:33!3 +EPH 5:33!4 +EPH 5:33!5 +EPH 5:33!6 +EPH 5:33!7 +EPH 5:33!8 +EPH 5:33!9 +EPH 5:33!10 +EPH 5:33!11 +EPH 5:33!12 +EPH 5:33!13 +EPH 5:33!14 +EPH 5:33!16 +EPH 5:33!15 +EPH 5:33!17 +EPH 5:33!18 +EPH 5:33!19 +EPH 5:33!20 +EPH 5:33!21 +EPH 6:1!1 +EPH 6:1!2 +EPH 6:1!3 +EPH 6:1!4 +EPH 6:1!5 +EPH 6:1!6 +EPH 6:1!7 +EPH 6:1!8 +EPH 6:1!10 +EPH 6:1!9 +EPH 6:1!11 +EPH 6:1!12 +EPH 6:2!1 +EPH 6:2!2 +EPH 6:2!3 +EPH 6:2!4 +EPH 6:2!5 +EPH 6:2!6 +EPH 6:2!7 +EPH 6:2!8 +EPH 6:2!9 +EPH 6:2!10 +EPH 6:2!11 +EPH 6:2!12 +EPH 6:2!13 +EPH 6:3!1 +EPH 6:3!2 +EPH 6:3!3 +EPH 6:3!4 +EPH 6:3!5 +EPH 6:3!6 +EPH 6:3!7 +EPH 6:3!8 +EPH 6:3!9 +EPH 6:3!10 +EPH 6:4!1 +EPH 6:4!2 +EPH 6:4!3 +EPH 6:4!4 +EPH 6:4!5 +EPH 6:4!6 +EPH 6:4!7 +EPH 6:4!8 +EPH 6:4!9 +EPH 6:4!10 +EPH 6:4!11 +EPH 6:4!12 +EPH 6:4!13 +EPH 6:4!14 +EPH 6:4!15 +EPH 6:4!16 +EPH 6:5!1 +EPH 6:5!2 +EPH 6:5!3 +EPH 6:5!4 +EPH 6:5!5 +EPH 6:5!6 +EPH 6:5!7 +EPH 6:5!8 +EPH 6:5!9 +EPH 6:5!10 +EPH 6:5!11 +EPH 6:5!12 +EPH 6:5!13 +EPH 6:5!14 +EPH 6:5!15 +EPH 6:5!16 +EPH 6:5!17 +EPH 6:5!18 +EPH 6:5!19 +EPH 6:6!1 +EPH 6:6!2 +EPH 6:6!3 +EPH 6:6!4 +EPH 6:6!5 +EPH 6:6!6 +EPH 6:6!7 +EPH 6:6!8 +EPH 6:6!9 +EPH 6:6!10 +EPH 6:6!11 +EPH 6:6!12 +EPH 6:6!13 +EPH 6:6!14 +EPH 6:6!15 +EPH 6:6!16 +EPH 6:7!1 +EPH 6:7!2 +EPH 6:7!3 +EPH 6:7!4 +EPH 6:7!5 +EPH 6:7!6 +EPH 6:7!7 +EPH 6:7!8 +EPH 6:7!9 +EPH 6:8!1 +EPH 6:8!2 +EPH 6:8!4 +EPH 6:8!3 +EPH 6:8!5 +EPH 6:8!7 +EPH 6:8!6 +EPH 6:8!8 +EPH 6:8!9 +EPH 6:8!10 +EPH 6:8!11 +EPH 6:8!12 +EPH 6:8!13 +EPH 6:8!14 +EPH 6:8!15 +EPH 6:9!1 +EPH 6:9!2 +EPH 6:9!3 +EPH 6:9!4 +EPH 6:9!5 +EPH 6:9!6 +EPH 6:9!7 +EPH 6:9!8 +EPH 6:9!9 +EPH 6:9!10 +EPH 6:9!11 +EPH 6:9!12 +EPH 6:9!13 +EPH 6:9!14 +EPH 6:9!15 +EPH 6:9!16 +EPH 6:9!17 +EPH 6:9!18 +EPH 6:9!19 +EPH 6:9!20 +EPH 6:9!21 +EPH 6:9!22 +EPH 6:9!23 +EPH 6:9!24 +EPH 6:9!25 +EPH 6:9!26 +EPH 6:9!27 +EPH 6:9!28 +EPH 6:10!1 +EPH 6:10!2 +EPH 6:10!3 +EPH 6:10!4 +EPH 6:10!5 +EPH 6:10!6 +EPH 6:10!7 +EPH 6:10!8 +EPH 6:10!9 +EPH 6:10!10 +EPH 6:10!11 +EPH 6:10!12 +EPH 6:11!1 +EPH 6:11!2 +EPH 6:11!3 +EPH 6:11!4 +EPH 6:11!5 +EPH 6:11!6 +EPH 6:11!7 +EPH 6:11!8 +EPH 6:11!9 +EPH 6:11!10 +EPH 6:11!11 +EPH 6:11!12 +EPH 6:11!13 +EPH 6:11!14 +EPH 6:11!15 +EPH 6:12!1 +EPH 6:12!3 +EPH 6:12!4 +EPH 6:12!5 +EPH 6:12!6 +EPH 6:12!2 +EPH 6:12!7 +EPH 6:12!8 +EPH 6:12!9 +EPH 6:12!10 +EPH 6:12!11 +EPH 6:12!12 +EPH 6:12!13 +EPH 6:12!14 +EPH 6:12!15 +EPH 6:12!16 +EPH 6:12!17 +EPH 6:12!18 +EPH 6:12!19 +EPH 6:12!20 +EPH 6:12!21 +EPH 6:12!22 +EPH 6:12!23 +EPH 6:12!24 +EPH 6:12!25 +EPH 6:12!26 +EPH 6:12!27 +EPH 6:12!28 +EPH 6:12!29 +EPH 6:12!30 +EPH 6:12!31 +EPH 6:13!1 +EPH 6:13!2 +EPH 6:13!3 +EPH 6:13!4 +EPH 6:13!5 +EPH 6:13!6 +EPH 6:13!7 +EPH 6:13!8 +EPH 6:13!9 +EPH 6:13!10 +EPH 6:13!11 +EPH 6:13!12 +EPH 6:13!13 +EPH 6:13!14 +EPH 6:13!15 +EPH 6:13!16 +EPH 6:13!17 +EPH 6:13!18 +EPH 6:13!19 +EPH 6:14!2 +EPH 6:14!1 +EPH 6:14!3 +EPH 6:14!4 +EPH 6:14!5 +EPH 6:14!6 +EPH 6:14!7 +EPH 6:14!8 +EPH 6:14!9 +EPH 6:14!10 +EPH 6:14!11 +EPH 6:14!12 +EPH 6:14!13 +EPH 6:14!14 +EPH 6:15!1 +EPH 6:15!2 +EPH 6:15!3 +EPH 6:15!4 +EPH 6:15!5 +EPH 6:15!6 +EPH 6:15!7 +EPH 6:15!8 +EPH 6:15!9 +EPH 6:15!10 +EPH 6:16!1 +EPH 6:16!2 +EPH 6:16!3 +EPH 6:16!4 +EPH 6:16!5 +EPH 6:16!6 +EPH 6:16!7 +EPH 6:16!8 +EPH 6:16!9 +EPH 6:16!10 +EPH 6:16!11 +EPH 6:16!12 +EPH 6:16!13 +EPH 6:16!14 +EPH 6:16!15 +EPH 6:16!16 +EPH 6:16!17 +EPH 6:16!18 +EPH 6:17!1 +EPH 6:17!6 +EPH 6:17!2 +EPH 6:17!3 +EPH 6:17!4 +EPH 6:17!5 +EPH 6:17!7 +EPH 6:17!8 +EPH 6:17!9 +EPH 6:17!10 +EPH 6:17!11 +EPH 6:17!12 +EPH 6:17!13 +EPH 6:17!14 +EPH 6:17!15 +EPH 6:18!1 +EPH 6:18!2 +EPH 6:18!3 +EPH 6:18!4 +EPH 6:18!5 +EPH 6:18!6 +EPH 6:18!7 +EPH 6:18!8 +EPH 6:18!9 +EPH 6:18!10 +EPH 6:18!11 +EPH 6:18!12 +EPH 6:18!13 +EPH 6:18!14 +EPH 6:18!15 +EPH 6:18!16 +EPH 6:18!17 +EPH 6:18!18 +EPH 6:18!19 +EPH 6:18!20 +EPH 6:18!21 +EPH 6:18!22 +EPH 6:18!23 +EPH 6:18!24 +EPH 6:19!1 +EPH 6:19!2 +EPH 6:19!3 +EPH 6:19!4 +EPH 6:19!5 +EPH 6:19!6 +EPH 6:19!7 +EPH 6:19!8 +EPH 6:19!9 +EPH 6:19!10 +EPH 6:19!11 +EPH 6:19!12 +EPH 6:19!13 +EPH 6:19!14 +EPH 6:19!15 +EPH 6:19!16 +EPH 6:19!17 +EPH 6:19!18 +EPH 6:19!19 +EPH 6:20!1 +EPH 6:20!2 +EPH 6:20!3 +EPH 6:20!4 +EPH 6:20!5 +EPH 6:20!6 +EPH 6:20!7 +EPH 6:20!8 +EPH 6:20!9 +EPH 6:20!10 +EPH 6:20!11 +EPH 6:20!12 +EPH 6:20!13 +EPH 6:21!2 +EPH 6:21!1 +EPH 6:21!3 +EPH 6:21!4 +EPH 6:21!5 +EPH 6:21!6 +EPH 6:21!7 +EPH 6:21!8 +EPH 6:21!9 +EPH 6:21!10 +EPH 6:21!11 +EPH 6:21!12 +EPH 6:21!13 +EPH 6:21!14 +EPH 6:21!15 +EPH 6:21!16 +EPH 6:21!17 +EPH 6:21!18 +EPH 6:21!19 +EPH 6:21!20 +EPH 6:21!21 +EPH 6:21!22 +EPH 6:22!1 +EPH 6:22!2 +EPH 6:22!3 +EPH 6:22!4 +EPH 6:22!5 +EPH 6:22!6 +EPH 6:22!7 +EPH 6:22!8 +EPH 6:22!9 +EPH 6:22!10 +EPH 6:22!11 +EPH 6:22!12 +EPH 6:22!13 +EPH 6:22!14 +EPH 6:22!15 +EPH 6:22!16 +EPH 6:22!17 +EPH 6:23!2 +EPH 6:23!3 +EPH 6:23!1 +EPH 6:23!4 +EPH 6:23!5 +EPH 6:23!6 +EPH 6:23!7 +EPH 6:23!8 +EPH 6:23!9 +EPH 6:23!10 +EPH 6:23!11 +EPH 6:23!12 +EPH 6:23!13 +EPH 6:23!14 +EPH 6:24!1 +EPH 6:24!2 +EPH 6:24!3 +EPH 6:24!4 +EPH 6:24!5 +EPH 6:24!6 +EPH 6:24!7 +EPH 6:24!8 +EPH 6:24!9 +EPH 6:24!10 +EPH 6:24!11 +EPH 6:24!12 +EPH 6:24!13 +PHP 1:1!1 +PHP 1:1!2 +PHP 1:1!3 +PHP 1:1!4 +PHP 1:1!5 +PHP 1:1!6 +PHP 1:1!7 +PHP 1:1!8 +PHP 1:1!9 +PHP 1:1!10 +PHP 1:1!11 +PHP 1:1!12 +PHP 1:1!13 +PHP 1:1!14 +PHP 1:1!15 +PHP 1:1!16 +PHP 1:1!17 +PHP 1:1!18 +PHP 1:1!19 +PHP 1:1!20 +PHP 1:2!2 +PHP 1:2!1 +PHP 1:2!3 +PHP 1:2!4 +PHP 1:2!5 +PHP 1:2!6 +PHP 1:2!7 +PHP 1:2!8 +PHP 1:2!9 +PHP 1:2!10 +PHP 1:2!11 +PHP 1:2!12 +PHP 1:3!1 +PHP 1:3!2 +PHP 1:3!3 +PHP 1:3!4 +PHP 1:3!5 +PHP 1:3!6 +PHP 1:3!7 +PHP 1:3!8 +PHP 1:3!9 +PHP 1:4!1 +PHP 1:4!2 +PHP 1:4!3 +PHP 1:4!4 +PHP 1:4!5 +PHP 1:4!6 +PHP 1:4!7 +PHP 1:4!8 +PHP 1:4!9 +PHP 1:4!10 +PHP 1:4!11 +PHP 1:4!12 +PHP 1:4!13 +PHP 1:5!1 +PHP 1:5!2 +PHP 1:5!3 +PHP 1:5!4 +PHP 1:5!5 +PHP 1:5!6 +PHP 1:5!7 +PHP 1:5!8 +PHP 1:5!9 +PHP 1:5!10 +PHP 1:5!11 +PHP 1:5!12 +PHP 1:5!13 +PHP 1:5!14 +PHP 1:6!1 +PHP 1:6!2 +PHP 1:6!3 +PHP 1:6!4 +PHP 1:6!5 +PHP 1:6!6 +PHP 1:6!7 +PHP 1:6!8 +PHP 1:6!9 +PHP 1:6!10 +PHP 1:6!11 +PHP 1:6!12 +PHP 1:6!13 +PHP 1:6!14 +PHP 1:6!15 +PHP 1:7!1 +PHP 1:7!2 +PHP 1:7!3 +PHP 1:7!4 +PHP 1:7!5 +PHP 1:7!6 +PHP 1:7!7 +PHP 1:7!8 +PHP 1:7!9 +PHP 1:7!10 +PHP 1:7!11 +PHP 1:7!12 +PHP 1:7!13 +PHP 1:7!14 +PHP 1:7!15 +PHP 1:7!16 +PHP 1:7!17 +PHP 1:7!19 +PHP 1:7!18 +PHP 1:7!20 +PHP 1:7!21 +PHP 1:7!22 +PHP 1:7!23 +PHP 1:7!24 +PHP 1:7!25 +PHP 1:7!26 +PHP 1:7!27 +PHP 1:7!28 +PHP 1:7!29 +PHP 1:7!30 +PHP 1:7!31 +PHP 1:7!32 +PHP 1:7!33 +PHP 1:7!34 +PHP 1:7!35 +PHP 1:7!36 +PHP 1:7!37 +PHP 1:8!2 +PHP 1:8!1 +PHP 1:8!3 +PHP 1:8!4 +PHP 1:8!5 +PHP 1:8!6 +PHP 1:8!7 +PHP 1:8!8 +PHP 1:8!9 +PHP 1:8!10 +PHP 1:8!11 +PHP 1:8!12 +PHP 1:8!13 +PHP 1:9!1 +PHP 1:9!2 +PHP 1:9!3 +PHP 1:9!4 +PHP 1:9!5 +PHP 1:9!6 +PHP 1:9!7 +PHP 1:9!8 +PHP 1:9!9 +PHP 1:9!10 +PHP 1:9!11 +PHP 1:9!12 +PHP 1:9!13 +PHP 1:9!14 +PHP 1:9!15 +PHP 1:9!16 +PHP 1:9!17 +PHP 1:10!1 +PHP 1:10!2 +PHP 1:10!3 +PHP 1:10!4 +PHP 1:10!5 +PHP 1:10!6 +PHP 1:10!7 +PHP 1:10!8 +PHP 1:10!9 +PHP 1:10!10 +PHP 1:10!11 +PHP 1:10!12 +PHP 1:10!13 +PHP 1:10!14 +PHP 1:11!1 +PHP 1:11!2 +PHP 1:11!3 +PHP 1:11!4 +PHP 1:11!5 +PHP 1:11!6 +PHP 1:11!7 +PHP 1:11!8 +PHP 1:11!9 +PHP 1:11!10 +PHP 1:11!11 +PHP 1:11!12 +PHP 1:12!2 +PHP 1:12!5 +PHP 1:12!4 +PHP 1:12!1 +PHP 1:12!3 +PHP 1:12!6 +PHP 1:12!7 +PHP 1:12!8 +PHP 1:12!9 +PHP 1:12!10 +PHP 1:12!11 +PHP 1:12!12 +PHP 1:12!13 +PHP 1:12!14 +PHP 1:12!15 +PHP 1:13!1 +PHP 1:13!2 +PHP 1:13!3 +PHP 1:13!4 +PHP 1:13!5 +PHP 1:13!6 +PHP 1:13!7 +PHP 1:13!8 +PHP 1:13!9 +PHP 1:13!10 +PHP 1:13!11 +PHP 1:13!12 +PHP 1:13!13 +PHP 1:13!14 +PHP 1:13!15 +PHP 1:13!16 +PHP 1:14!1 +PHP 1:14!2 +PHP 1:14!3 +PHP 1:14!4 +PHP 1:14!5 +PHP 1:14!6 +PHP 1:14!7 +PHP 1:14!8 +PHP 1:14!9 +PHP 1:14!10 +PHP 1:14!11 +PHP 1:14!12 +PHP 1:14!13 +PHP 1:14!14 +PHP 1:14!15 +PHP 1:14!16 +PHP 1:14!17 +PHP 1:14!18 +PHP 1:14!19 +PHP 1:15!2 +PHP 1:15!1 +PHP 1:15!3 +PHP 1:15!4 +PHP 1:15!5 +PHP 1:15!6 +PHP 1:15!7 +PHP 1:15!9 +PHP 1:15!8 +PHP 1:15!10 +PHP 1:15!11 +PHP 1:15!12 +PHP 1:15!13 +PHP 1:15!14 +PHP 1:15!15 +PHP 1:16!2 +PHP 1:16!1 +PHP 1:16!3 +PHP 1:16!4 +PHP 1:16!5 +PHP 1:16!6 +PHP 1:16!7 +PHP 1:16!8 +PHP 1:16!9 +PHP 1:16!10 +PHP 1:16!11 +PHP 1:17!2 +PHP 1:17!1 +PHP 1:17!3 +PHP 1:17!4 +PHP 1:17!5 +PHP 1:17!6 +PHP 1:17!7 +PHP 1:17!8 +PHP 1:17!9 +PHP 1:17!10 +PHP 1:17!11 +PHP 1:17!12 +PHP 1:17!13 +PHP 1:17!14 +PHP 1:17!15 +PHP 1:18!2 +PHP 1:18!1 +PHP 1:18!3 +PHP 1:18!4 +PHP 1:18!5 +PHP 1:18!6 +PHP 1:18!7 +PHP 1:18!8 +PHP 1:18!9 +PHP 1:18!10 +PHP 1:18!11 +PHP 1:18!12 +PHP 1:18!13 +PHP 1:18!14 +PHP 1:18!15 +PHP 1:18!16 +PHP 1:18!17 +PHP 1:18!18 +PHP 1:18!19 +PHP 1:19!2 +PHP 1:19!1 +PHP 1:19!3 +PHP 1:19!4 +PHP 1:19!5 +PHP 1:19!6 +PHP 1:19!7 +PHP 1:19!8 +PHP 1:19!9 +PHP 1:19!10 +PHP 1:19!11 +PHP 1:19!12 +PHP 1:19!13 +PHP 1:19!14 +PHP 1:19!15 +PHP 1:19!16 +PHP 1:19!17 +PHP 1:19!18 +PHP 1:20!1 +PHP 1:20!2 +PHP 1:20!3 +PHP 1:20!4 +PHP 1:20!5 +PHP 1:20!6 +PHP 1:20!7 +PHP 1:20!8 +PHP 1:20!9 +PHP 1:20!10 +PHP 1:20!11 +PHP 1:20!12 +PHP 1:20!13 +PHP 1:20!14 +PHP 1:20!15 +PHP 1:20!16 +PHP 1:20!17 +PHP 1:20!18 +PHP 1:20!19 +PHP 1:20!20 +PHP 1:20!21 +PHP 1:20!22 +PHP 1:20!23 +PHP 1:20!24 +PHP 1:20!25 +PHP 1:20!26 +PHP 1:20!27 +PHP 1:20!28 +PHP 1:20!29 +PHP 1:20!30 +PHP 1:21!2 +PHP 1:21!1 +PHP 1:21!3 +PHP 1:21!4 +PHP 1:21!5 +PHP 1:21!6 +PHP 1:21!7 +PHP 1:21!8 +PHP 1:21!9 +PHP 1:22!2 +PHP 1:22!1 +PHP 1:22!3 +PHP 1:22!4 +PHP 1:22!5 +PHP 1:22!6 +PHP 1:22!7 +PHP 1:22!8 +PHP 1:22!9 +PHP 1:22!10 +PHP 1:22!11 +PHP 1:22!12 +PHP 1:22!13 +PHP 1:22!14 +PHP 1:22!15 +PHP 1:23!2 +PHP 1:23!1 +PHP 1:23!3 +PHP 1:23!4 +PHP 1:23!5 +PHP 1:23!6 +PHP 1:23!7 +PHP 1:23!8 +PHP 1:23!9 +PHP 1:23!10 +PHP 1:23!11 +PHP 1:23!12 +PHP 1:23!13 +PHP 1:23!14 +PHP 1:23!15 +PHP 1:23!17 +PHP 1:23!16 +PHP 1:23!18 +PHP 1:23!19 +PHP 1:24!2 +PHP 1:24!1 +PHP 1:24!3 +PHP 1:24!4 +PHP 1:24!5 +PHP 1:24!6 +PHP 1:24!7 +PHP 1:24!8 +PHP 1:25!1 +PHP 1:25!2 +PHP 1:25!3 +PHP 1:25!4 +PHP 1:25!5 +PHP 1:25!6 +PHP 1:25!7 +PHP 1:25!8 +PHP 1:25!9 +PHP 1:25!10 +PHP 1:25!11 +PHP 1:25!12 +PHP 1:25!13 +PHP 1:25!14 +PHP 1:25!15 +PHP 1:25!16 +PHP 1:25!17 +PHP 1:25!18 +PHP 1:26!1 +PHP 1:26!2 +PHP 1:26!3 +PHP 1:26!4 +PHP 1:26!5 +PHP 1:26!6 +PHP 1:26!7 +PHP 1:26!8 +PHP 1:26!9 +PHP 1:26!10 +PHP 1:26!11 +PHP 1:26!12 +PHP 1:26!13 +PHP 1:26!14 +PHP 1:26!15 +PHP 1:26!16 +PHP 1:26!17 +PHP 1:27!1 +PHP 1:27!2 +PHP 1:27!3 +PHP 1:27!4 +PHP 1:27!5 +PHP 1:27!6 +PHP 1:27!7 +PHP 1:27!8 +PHP 1:27!9 +PHP 1:27!10 +PHP 1:27!11 +PHP 1:27!12 +PHP 1:27!13 +PHP 1:27!14 +PHP 1:27!15 +PHP 1:27!16 +PHP 1:27!17 +PHP 1:27!18 +PHP 1:27!19 +PHP 1:27!20 +PHP 1:27!21 +PHP 1:27!22 +PHP 1:27!23 +PHP 1:27!24 +PHP 1:27!25 +PHP 1:27!26 +PHP 1:27!27 +PHP 1:27!28 +PHP 1:27!29 +PHP 1:27!30 +PHP 1:27!31 +PHP 1:28!1 +PHP 1:28!2 +PHP 1:28!3 +PHP 1:28!4 +PHP 1:28!5 +PHP 1:28!6 +PHP 1:28!7 +PHP 1:28!8 +PHP 1:28!9 +PHP 1:28!10 +PHP 1:28!11 +PHP 1:28!12 +PHP 1:28!13 +PHP 1:28!15 +PHP 1:28!14 +PHP 1:28!16 +PHP 1:28!17 +PHP 1:28!18 +PHP 1:28!19 +PHP 1:28!20 +PHP 1:29!1 +PHP 1:29!2 +PHP 1:29!3 +PHP 1:29!4 +PHP 1:29!5 +PHP 1:29!6 +PHP 1:29!7 +PHP 1:29!8 +PHP 1:29!9 +PHP 1:29!10 +PHP 1:29!11 +PHP 1:29!12 +PHP 1:29!13 +PHP 1:29!14 +PHP 1:29!15 +PHP 1:29!16 +PHP 1:29!17 +PHP 1:29!18 +PHP 1:30!4 +PHP 1:30!1 +PHP 1:30!2 +PHP 1:30!3 +PHP 1:30!5 +PHP 1:30!6 +PHP 1:30!7 +PHP 1:30!8 +PHP 1:30!9 +PHP 1:30!10 +PHP 1:30!11 +PHP 1:30!12 +PHP 1:30!13 +PHP 2:1!3 +PHP 2:1!1 +PHP 2:1!2 +PHP 2:1!4 +PHP 2:1!5 +PHP 2:1!6 +PHP 2:1!7 +PHP 2:1!8 +PHP 2:1!9 +PHP 2:1!10 +PHP 2:1!11 +PHP 2:1!12 +PHP 2:1!13 +PHP 2:1!14 +PHP 2:1!15 +PHP 2:1!16 +PHP 2:1!17 +PHP 2:1!18 +PHP 2:1!19 +PHP 2:2!1 +PHP 2:2!2 +PHP 2:2!3 +PHP 2:2!4 +PHP 2:2!5 +PHP 2:2!6 +PHP 2:2!7 +PHP 2:2!8 +PHP 2:2!9 +PHP 2:2!10 +PHP 2:2!11 +PHP 2:2!12 +PHP 2:2!13 +PHP 2:2!14 +PHP 2:2!15 +PHP 2:2!16 +PHP 2:3!1 +PHP 2:3!2 +PHP 2:3!3 +PHP 2:3!4 +PHP 2:3!5 +PHP 2:3!6 +PHP 2:3!7 +PHP 2:3!8 +PHP 2:3!9 +PHP 2:3!10 +PHP 2:3!11 +PHP 2:3!12 +PHP 2:3!13 +PHP 2:4!1 +PHP 2:4!2 +PHP 2:4!3 +PHP 2:4!4 +PHP 2:4!5 +PHP 2:4!6 +PHP 2:4!7 +PHP 2:4!8 +PHP 2:4!9 +PHP 2:4!10 +PHP 2:5!1 +PHP 2:5!2 +PHP 2:5!3 +PHP 2:5!4 +PHP 2:5!5 +PHP 2:5!6 +PHP 2:5!7 +PHP 2:5!8 +PHP 2:5!9 +PHP 2:6!1 +PHP 2:6!2 +PHP 2:6!3 +PHP 2:6!4 +PHP 2:6!5 +PHP 2:6!6 +PHP 2:6!7 +PHP 2:6!8 +PHP 2:6!9 +PHP 2:6!10 +PHP 2:6!11 +PHP 2:6!12 +PHP 2:7!1 +PHP 2:7!2 +PHP 2:7!3 +PHP 2:7!4 +PHP 2:7!5 +PHP 2:7!6 +PHP 2:7!7 +PHP 2:7!8 +PHP 2:7!9 +PHP 2:7!10 +PHP 2:7!11 +PHP 2:7!12 +PHP 2:7!13 +PHP 2:7!14 +PHP 2:7!15 +PHP 2:8!1 +PHP 2:8!2 +PHP 2:8!3 +PHP 2:8!4 +PHP 2:8!5 +PHP 2:8!6 +PHP 2:8!8 +PHP 2:8!7 +PHP 2:8!9 +PHP 2:9!1 +PHP 2:9!2 +PHP 2:9!3 +PHP 2:9!4 +PHP 2:9!5 +PHP 2:9!6 +PHP 2:9!7 +PHP 2:9!8 +PHP 2:9!9 +PHP 2:9!10 +PHP 2:9!11 +PHP 2:9!12 +PHP 2:9!13 +PHP 2:9!14 +PHP 2:9!15 +PHP 2:10!1 +PHP 2:10!2 +PHP 2:10!3 +PHP 2:10!4 +PHP 2:10!5 +PHP 2:10!8 +PHP 2:10!6 +PHP 2:10!7 +PHP 2:10!9 +PHP 2:10!10 +PHP 2:10!11 +PHP 2:10!12 +PHP 2:10!13 +PHP 2:11!1 +PHP 2:11!2 +PHP 2:11!3 +PHP 2:11!4 +PHP 2:11!5 +PHP 2:11!6 +PHP 2:11!7 +PHP 2:11!8 +PHP 2:11!9 +PHP 2:11!10 +PHP 2:11!11 +PHP 2:11!12 +PHP 2:12!1 +PHP 2:12!2 +PHP 2:12!3 +PHP 2:12!4 +PHP 2:12!5 +PHP 2:12!6 +PHP 2:12!8 +PHP 2:12!7 +PHP 2:12!9 +PHP 2:12!10 +PHP 2:12!11 +PHP 2:12!12 +PHP 2:12!13 +PHP 2:12!14 +PHP 2:12!15 +PHP 2:12!16 +PHP 2:12!17 +PHP 2:12!18 +PHP 2:12!19 +PHP 2:12!20 +PHP 2:12!21 +PHP 2:12!22 +PHP 2:12!23 +PHP 2:12!24 +PHP 2:12!25 +PHP 2:12!26 +PHP 2:12!27 +PHP 2:12!28 +PHP 2:12!29 +PHP 2:13!2 +PHP 2:13!1 +PHP 2:13!3 +PHP 2:13!4 +PHP 2:13!5 +PHP 2:13!6 +PHP 2:13!7 +PHP 2:13!8 +PHP 2:13!9 +PHP 2:13!10 +PHP 2:13!11 +PHP 2:13!12 +PHP 2:13!13 +PHP 2:13!14 +PHP 2:13!15 +PHP 2:13!16 +PHP 2:14!1 +PHP 2:14!2 +PHP 2:14!3 +PHP 2:14!4 +PHP 2:14!5 +PHP 2:14!6 +PHP 2:15!1 +PHP 2:15!2 +PHP 2:15!3 +PHP 2:15!4 +PHP 2:15!5 +PHP 2:15!6 +PHP 2:15!7 +PHP 2:15!8 +PHP 2:15!9 +PHP 2:15!10 +PHP 2:15!11 +PHP 2:15!12 +PHP 2:15!13 +PHP 2:15!14 +PHP 2:15!15 +PHP 2:15!16 +PHP 2:15!17 +PHP 2:15!18 +PHP 2:15!19 +PHP 2:15!20 +PHP 2:16!1 +PHP 2:16!2 +PHP 2:16!3 +PHP 2:16!4 +PHP 2:16!5 +PHP 2:16!6 +PHP 2:16!7 +PHP 2:16!8 +PHP 2:16!9 +PHP 2:16!10 +PHP 2:16!11 +PHP 2:16!12 +PHP 2:16!13 +PHP 2:16!14 +PHP 2:16!15 +PHP 2:16!16 +PHP 2:16!17 +PHP 2:16!18 +PHP 2:17!1 +PHP 2:17!2 +PHP 2:17!3 +PHP 2:17!4 +PHP 2:17!5 +PHP 2:17!6 +PHP 2:17!7 +PHP 2:17!8 +PHP 2:17!9 +PHP 2:17!10 +PHP 2:17!11 +PHP 2:17!12 +PHP 2:17!13 +PHP 2:17!14 +PHP 2:17!15 +PHP 2:17!16 +PHP 2:17!17 +PHP 2:18!2 +PHP 2:18!1 +PHP 2:18!3 +PHP 2:18!4 +PHP 2:18!5 +PHP 2:18!6 +PHP 2:18!7 +PHP 2:18!8 +PHP 2:18!9 +PHP 2:19!2 +PHP 2:19!1 +PHP 2:19!3 +PHP 2:19!4 +PHP 2:19!5 +PHP 2:19!6 +PHP 2:19!7 +PHP 2:19!8 +PHP 2:19!9 +PHP 2:19!10 +PHP 2:19!11 +PHP 2:19!12 +PHP 2:19!13 +PHP 2:19!14 +PHP 2:19!15 +PHP 2:19!16 +PHP 2:20!2 +PHP 2:20!1 +PHP 2:20!4 +PHP 2:20!3 +PHP 2:20!5 +PHP 2:20!6 +PHP 2:20!7 +PHP 2:20!8 +PHP 2:20!9 +PHP 2:20!10 +PHP 2:21!3 +PHP 2:21!1 +PHP 2:21!2 +PHP 2:21!4 +PHP 2:21!5 +PHP 2:21!6 +PHP 2:21!7 +PHP 2:21!8 +PHP 2:21!9 +PHP 2:21!10 +PHP 2:22!2 +PHP 2:22!1 +PHP 2:22!3 +PHP 2:22!4 +PHP 2:22!5 +PHP 2:22!6 +PHP 2:22!7 +PHP 2:22!8 +PHP 2:22!9 +PHP 2:22!10 +PHP 2:22!11 +PHP 2:22!12 +PHP 2:22!13 +PHP 2:22!14 +PHP 2:22!15 +PHP 2:23!3 +PHP 2:23!2 +PHP 2:23!4 +PHP 2:23!1 +PHP 2:23!5 +PHP 2:23!6 +PHP 2:23!7 +PHP 2:23!8 +PHP 2:23!9 +PHP 2:23!10 +PHP 2:23!11 +PHP 2:23!12 +PHP 2:24!2 +PHP 2:24!1 +PHP 2:24!3 +PHP 2:24!4 +PHP 2:24!5 +PHP 2:24!6 +PHP 2:24!7 +PHP 2:24!8 +PHP 2:24!9 +PHP 2:25!2 +PHP 2:25!3 +PHP 2:25!1 +PHP 2:25!4 +PHP 2:25!5 +PHP 2:25!6 +PHP 2:25!7 +PHP 2:25!8 +PHP 2:25!9 +PHP 2:25!10 +PHP 2:25!11 +PHP 2:25!13 +PHP 2:25!12 +PHP 2:25!14 +PHP 2:25!15 +PHP 2:25!16 +PHP 2:25!17 +PHP 2:25!18 +PHP 2:25!19 +PHP 2:25!20 +PHP 2:25!21 +PHP 2:25!22 +PHP 2:26!1 +PHP 2:26!2 +PHP 2:26!3 +PHP 2:26!4 +PHP 2:26!5 +PHP 2:26!6 +PHP 2:26!7 +PHP 2:26!8 +PHP 2:26!9 +PHP 2:26!10 +PHP 2:26!11 +PHP 2:27!2 +PHP 2:27!1 +PHP 2:27!3 +PHP 2:27!4 +PHP 2:27!5 +PHP 2:27!6 +PHP 2:27!7 +PHP 2:27!8 +PHP 2:27!9 +PHP 2:27!10 +PHP 2:27!13 +PHP 2:27!11 +PHP 2:27!12 +PHP 2:27!14 +PHP 2:27!15 +PHP 2:27!16 +PHP 2:27!17 +PHP 2:27!18 +PHP 2:27!19 +PHP 2:27!20 +PHP 2:27!21 +PHP 2:27!22 +PHP 2:27!23 +PHP 2:28!2 +PHP 2:28!1 +PHP 2:28!3 +PHP 2:28!4 +PHP 2:28!5 +PHP 2:28!6 +PHP 2:28!7 +PHP 2:28!8 +PHP 2:28!9 +PHP 2:28!10 +PHP 2:28!11 +PHP 2:28!12 +PHP 2:29!2 +PHP 2:29!1 +PHP 2:29!3 +PHP 2:29!4 +PHP 2:29!5 +PHP 2:29!6 +PHP 2:29!7 +PHP 2:29!8 +PHP 2:29!9 +PHP 2:29!10 +PHP 2:29!11 +PHP 2:29!12 +PHP 2:29!13 +PHP 2:30!1 +PHP 2:30!2 +PHP 2:30!3 +PHP 2:30!4 +PHP 2:30!5 +PHP 2:30!6 +PHP 2:30!7 +PHP 2:30!8 +PHP 2:30!9 +PHP 2:30!10 +PHP 2:30!11 +PHP 2:30!12 +PHP 2:30!13 +PHP 2:30!14 +PHP 2:30!15 +PHP 2:30!16 +PHP 2:30!17 +PHP 2:30!18 +PHP 2:30!19 +PHP 2:30!20 +PHP 3:1!3 +PHP 3:1!4 +PHP 3:1!1 +PHP 3:1!2 +PHP 3:1!5 +PHP 3:1!6 +PHP 3:1!7 +PHP 3:1!8 +PHP 3:1!9 +PHP 3:1!10 +PHP 3:1!11 +PHP 3:1!13 +PHP 3:1!12 +PHP 3:1!14 +PHP 3:1!15 +PHP 3:1!17 +PHP 3:1!16 +PHP 3:1!18 +PHP 3:2!1 +PHP 3:2!2 +PHP 3:2!3 +PHP 3:2!4 +PHP 3:2!5 +PHP 3:2!6 +PHP 3:2!7 +PHP 3:2!8 +PHP 3:2!9 +PHP 3:2!10 +PHP 3:3!2 +PHP 3:3!3 +PHP 3:3!4 +PHP 3:3!5 +PHP 3:3!1 +PHP 3:3!6 +PHP 3:3!7 +PHP 3:3!8 +PHP 3:3!9 +PHP 3:3!10 +PHP 3:3!11 +PHP 3:3!12 +PHP 3:3!13 +PHP 3:3!14 +PHP 3:3!15 +PHP 3:3!16 +PHP 3:3!17 +PHP 3:3!18 +PHP 3:3!19 +PHP 3:4!1 +PHP 3:4!2 +PHP 3:4!3 +PHP 3:4!4 +PHP 3:4!5 +PHP 3:4!6 +PHP 3:4!7 +PHP 3:4!8 +PHP 3:4!9 +PHP 3:4!11 +PHP 3:4!10 +PHP 3:4!12 +PHP 3:4!13 +PHP 3:4!14 +PHP 3:4!15 +PHP 3:4!16 +PHP 3:5!1 +PHP 3:5!2 +PHP 3:5!3 +PHP 3:5!4 +PHP 3:5!5 +PHP 3:5!6 +PHP 3:5!7 +PHP 3:5!8 +PHP 3:5!9 +PHP 3:5!10 +PHP 3:5!11 +PHP 3:5!12 +PHP 3:5!13 +PHP 3:6!1 +PHP 3:6!2 +PHP 3:6!3 +PHP 3:6!4 +PHP 3:6!5 +PHP 3:6!6 +PHP 3:6!7 +PHP 3:6!8 +PHP 3:6!9 +PHP 3:6!10 +PHP 3:6!11 +PHP 3:6!12 +PHP 3:7!1 +PHP 3:7!2 +PHP 3:7!3 +PHP 3:7!4 +PHP 3:7!5 +PHP 3:7!6 +PHP 3:7!7 +PHP 3:7!8 +PHP 3:7!9 +PHP 3:7!10 +PHP 3:7!11 +PHP 3:8!1 +PHP 3:8!2 +PHP 3:8!3 +PHP 3:8!4 +PHP 3:8!5 +PHP 3:8!6 +PHP 3:8!7 +PHP 3:8!8 +PHP 3:8!9 +PHP 3:8!10 +PHP 3:8!11 +PHP 3:8!12 +PHP 3:8!13 +PHP 3:8!14 +PHP 3:8!15 +PHP 3:8!16 +PHP 3:8!17 +PHP 3:8!18 +PHP 3:8!19 +PHP 3:8!20 +PHP 3:8!21 +PHP 3:8!22 +PHP 3:8!23 +PHP 3:8!24 +PHP 3:8!25 +PHP 3:8!26 +PHP 3:8!27 +PHP 3:8!28 +PHP 3:8!29 +PHP 3:8!30 +PHP 3:9!1 +PHP 3:9!2 +PHP 3:9!3 +PHP 3:9!4 +PHP 3:9!6 +PHP 3:9!5 +PHP 3:9!7 +PHP 3:9!8 +PHP 3:9!9 +PHP 3:9!10 +PHP 3:9!11 +PHP 3:9!12 +PHP 3:9!13 +PHP 3:9!14 +PHP 3:9!15 +PHP 3:9!16 +PHP 3:9!17 +PHP 3:9!18 +PHP 3:9!19 +PHP 3:9!20 +PHP 3:9!21 +PHP 3:9!22 +PHP 3:9!23 +PHP 3:10!1 +PHP 3:10!2 +PHP 3:10!3 +PHP 3:10!4 +PHP 3:10!5 +PHP 3:10!6 +PHP 3:10!7 +PHP 3:10!8 +PHP 3:10!9 +PHP 3:10!10 +PHP 3:10!11 +PHP 3:10!12 +PHP 3:10!13 +PHP 3:10!14 +PHP 3:10!15 +PHP 3:10!16 +PHP 3:10!17 +PHP 3:11!1 +PHP 3:11!2 +PHP 3:11!3 +PHP 3:11!4 +PHP 3:11!5 +PHP 3:11!6 +PHP 3:11!7 +PHP 3:11!8 +PHP 3:11!9 +PHP 3:12!1 +PHP 3:12!2 +PHP 3:12!3 +PHP 3:12!4 +PHP 3:12!5 +PHP 3:12!6 +PHP 3:12!7 +PHP 3:12!9 +PHP 3:12!8 +PHP 3:12!10 +PHP 3:12!11 +PHP 3:12!12 +PHP 3:12!13 +PHP 3:12!14 +PHP 3:12!15 +PHP 3:12!16 +PHP 3:12!17 +PHP 3:12!18 +PHP 3:12!19 +PHP 3:13!1 +PHP 3:13!2 +PHP 3:13!4 +PHP 3:13!5 +PHP 3:13!3 +PHP 3:13!6 +PHP 3:13!8 +PHP 3:13!7 +PHP 3:13!10 +PHP 3:13!9 +PHP 3:13!11 +PHP 3:13!12 +PHP 3:13!14 +PHP 3:13!13 +PHP 3:13!15 +PHP 3:13!16 +PHP 3:14!1 +PHP 3:14!2 +PHP 3:14!3 +PHP 3:14!4 +PHP 3:14!5 +PHP 3:14!6 +PHP 3:14!7 +PHP 3:14!8 +PHP 3:14!9 +PHP 3:14!10 +PHP 3:14!11 +PHP 3:14!12 +PHP 3:14!13 +PHP 3:14!14 +PHP 3:15!2 +PHP 3:15!1 +PHP 3:15!3 +PHP 3:15!4 +PHP 3:15!5 +PHP 3:15!6 +PHP 3:15!7 +PHP 3:15!8 +PHP 3:15!9 +PHP 3:15!10 +PHP 3:15!11 +PHP 3:15!12 +PHP 3:15!13 +PHP 3:15!14 +PHP 3:15!15 +PHP 3:15!16 +PHP 3:16!1 +PHP 3:16!2 +PHP 3:16!3 +PHP 3:16!4 +PHP 3:16!5 +PHP 3:16!6 +PHP 3:16!7 +PHP 3:17!4 +PHP 3:17!1 +PHP 3:17!2 +PHP 3:17!3 +PHP 3:17!5 +PHP 3:17!6 +PHP 3:17!7 +PHP 3:17!8 +PHP 3:17!9 +PHP 3:17!10 +PHP 3:17!11 +PHP 3:17!12 +PHP 3:17!13 +PHP 3:18!2 +PHP 3:18!1 +PHP 3:18!3 +PHP 3:18!4 +PHP 3:18!5 +PHP 3:18!6 +PHP 3:18!7 +PHP 3:18!9 +PHP 3:18!8 +PHP 3:18!10 +PHP 3:18!11 +PHP 3:18!12 +PHP 3:18!13 +PHP 3:18!14 +PHP 3:18!15 +PHP 3:18!16 +PHP 3:18!17 +PHP 3:18!18 +PHP 3:19!1 +PHP 3:19!2 +PHP 3:19!3 +PHP 3:19!4 +PHP 3:19!5 +PHP 3:19!6 +PHP 3:19!7 +PHP 3:19!8 +PHP 3:19!9 +PHP 3:19!10 +PHP 3:19!11 +PHP 3:19!12 +PHP 3:19!13 +PHP 3:19!14 +PHP 3:19!15 +PHP 3:19!16 +PHP 3:19!17 +PHP 3:19!18 +PHP 3:19!19 +PHP 3:19!20 +PHP 3:20!2 +PHP 3:20!1 +PHP 3:20!3 +PHP 3:20!4 +PHP 3:20!5 +PHP 3:20!6 +PHP 3:20!7 +PHP 3:20!8 +PHP 3:20!9 +PHP 3:20!10 +PHP 3:20!12 +PHP 3:20!11 +PHP 3:20!13 +PHP 3:20!14 +PHP 3:20!15 +PHP 3:21!1 +PHP 3:21!2 +PHP 3:21!3 +PHP 3:21!4 +PHP 3:21!5 +PHP 3:21!6 +PHP 3:21!7 +PHP 3:21!8 +PHP 3:21!9 +PHP 3:21!10 +PHP 3:21!11 +PHP 3:21!12 +PHP 3:21!13 +PHP 3:21!14 +PHP 3:21!15 +PHP 3:21!16 +PHP 3:21!17 +PHP 3:21!18 +PHP 3:21!19 +PHP 3:21!20 +PHP 3:21!21 +PHP 3:21!22 +PHP 3:21!23 +PHP 3:21!24 +PHP 4:1!1 +PHP 4:1!2 +PHP 4:1!3 +PHP 4:1!4 +PHP 4:1!5 +PHP 4:1!6 +PHP 4:1!7 +PHP 4:1!8 +PHP 4:1!9 +PHP 4:1!10 +PHP 4:1!11 +PHP 4:1!12 +PHP 4:1!13 +PHP 4:1!14 +PHP 4:1!15 +PHP 4:2!1 +PHP 4:2!2 +PHP 4:2!3 +PHP 4:2!4 +PHP 4:2!5 +PHP 4:2!6 +PHP 4:2!7 +PHP 4:2!8 +PHP 4:2!9 +PHP 4:2!10 +PHP 4:3!1 +PHP 4:3!2 +PHP 4:3!3 +PHP 4:3!4 +PHP 4:3!5 +PHP 4:3!6 +PHP 4:3!7 +PHP 4:3!8 +PHP 4:3!9 +PHP 4:3!10 +PHP 4:3!11 +PHP 4:3!12 +PHP 4:3!13 +PHP 4:3!14 +PHP 4:3!15 +PHP 4:3!16 +PHP 4:3!17 +PHP 4:3!18 +PHP 4:3!19 +PHP 4:3!20 +PHP 4:3!21 +PHP 4:3!22 +PHP 4:3!23 +PHP 4:3!24 +PHP 4:3!25 +PHP 4:3!26 +PHP 4:3!27 +PHP 4:3!28 +PHP 4:4!1 +PHP 4:4!2 +PHP 4:4!3 +PHP 4:4!4 +PHP 4:4!5 +PHP 4:4!6 +PHP 4:4!7 +PHP 4:5!1 +PHP 4:5!2 +PHP 4:5!3 +PHP 4:5!4 +PHP 4:5!5 +PHP 4:5!6 +PHP 4:5!7 +PHP 4:5!8 +PHP 4:5!9 +PHP 4:6!1 +PHP 4:6!2 +PHP 4:6!3 +PHP 4:6!4 +PHP 4:6!5 +PHP 4:6!6 +PHP 4:6!7 +PHP 4:6!8 +PHP 4:6!9 +PHP 4:6!10 +PHP 4:6!11 +PHP 4:6!12 +PHP 4:6!13 +PHP 4:6!14 +PHP 4:6!15 +PHP 4:6!16 +PHP 4:6!17 +PHP 4:6!18 +PHP 4:6!19 +PHP 4:7!1 +PHP 4:7!2 +PHP 4:7!3 +PHP 4:7!4 +PHP 4:7!5 +PHP 4:7!6 +PHP 4:7!7 +PHP 4:7!8 +PHP 4:7!9 +PHP 4:7!10 +PHP 4:7!11 +PHP 4:7!12 +PHP 4:7!13 +PHP 4:7!14 +PHP 4:7!15 +PHP 4:7!16 +PHP 4:7!17 +PHP 4:7!18 +PHP 4:7!19 +PHP 4:7!20 +PHP 4:8!3 +PHP 4:8!1 +PHP 4:8!2 +PHP 4:8!4 +PHP 4:8!5 +PHP 4:8!6 +PHP 4:8!7 +PHP 4:8!8 +PHP 4:8!9 +PHP 4:8!10 +PHP 4:8!11 +PHP 4:8!12 +PHP 4:8!13 +PHP 4:8!14 +PHP 4:8!15 +PHP 4:8!16 +PHP 4:8!17 +PHP 4:8!18 +PHP 4:8!19 +PHP 4:8!20 +PHP 4:8!21 +PHP 4:8!22 +PHP 4:8!23 +PHP 4:8!24 +PHP 4:8!25 +PHP 4:9!1 +PHP 4:9!2 +PHP 4:9!3 +PHP 4:9!4 +PHP 4:9!5 +PHP 4:9!6 +PHP 4:9!7 +PHP 4:9!8 +PHP 4:9!9 +PHP 4:9!10 +PHP 4:9!11 +PHP 4:9!12 +PHP 4:9!13 +PHP 4:9!14 +PHP 4:9!15 +PHP 4:9!16 +PHP 4:9!17 +PHP 4:9!18 +PHP 4:9!19 +PHP 4:9!20 +PHP 4:9!21 +PHP 4:10!2 +PHP 4:10!1 +PHP 4:10!3 +PHP 4:10!4 +PHP 4:10!5 +PHP 4:10!6 +PHP 4:10!7 +PHP 4:10!8 +PHP 4:10!9 +PHP 4:10!10 +PHP 4:10!11 +PHP 4:10!12 +PHP 4:10!13 +PHP 4:10!14 +PHP 4:10!15 +PHP 4:10!16 +PHP 4:10!17 +PHP 4:10!19 +PHP 4:10!18 +PHP 4:11!1 +PHP 4:11!2 +PHP 4:11!3 +PHP 4:11!4 +PHP 4:11!5 +PHP 4:11!7 +PHP 4:11!6 +PHP 4:11!8 +PHP 4:11!9 +PHP 4:11!10 +PHP 4:11!11 +PHP 4:11!12 +PHP 4:11!13 +PHP 4:12!1 +PHP 4:12!2 +PHP 4:12!3 +PHP 4:12!4 +PHP 4:12!5 +PHP 4:12!6 +PHP 4:12!7 +PHP 4:12!8 +PHP 4:12!9 +PHP 4:12!10 +PHP 4:12!11 +PHP 4:12!12 +PHP 4:12!13 +PHP 4:12!14 +PHP 4:12!15 +PHP 4:12!16 +PHP 4:12!17 +PHP 4:12!18 +PHP 4:12!19 +PHP 4:12!20 +PHP 4:13!1 +PHP 4:13!2 +PHP 4:13!3 +PHP 4:13!4 +PHP 4:13!5 +PHP 4:13!6 +PHP 4:14!1 +PHP 4:14!2 +PHP 4:14!3 +PHP 4:14!4 +PHP 4:14!5 +PHP 4:14!6 +PHP 4:14!7 +PHP 4:15!2 +PHP 4:15!5 +PHP 4:15!1 +PHP 4:15!3 +PHP 4:15!4 +PHP 4:15!6 +PHP 4:15!11 +PHP 4:15!12 +PHP 4:15!13 +PHP 4:15!14 +PHP 4:15!7 +PHP 4:15!8 +PHP 4:15!9 +PHP 4:15!10 +PHP 4:15!15 +PHP 4:15!17 +PHP 4:15!16 +PHP 4:15!18 +PHP 4:15!19 +PHP 4:15!20 +PHP 4:15!21 +PHP 4:15!22 +PHP 4:15!23 +PHP 4:15!24 +PHP 4:15!25 +PHP 4:15!26 +PHP 4:15!27 +PHP 4:16!1 +PHP 4:16!2 +PHP 4:16!3 +PHP 4:16!4 +PHP 4:16!5 +PHP 4:16!6 +PHP 4:16!7 +PHP 4:16!8 +PHP 4:16!9 +PHP 4:16!10 +PHP 4:16!11 +PHP 4:16!12 +PHP 4:16!13 +PHP 4:17!1 +PHP 4:17!2 +PHP 4:17!3 +PHP 4:17!4 +PHP 4:17!5 +PHP 4:17!6 +PHP 4:17!7 +PHP 4:17!8 +PHP 4:17!9 +PHP 4:17!10 +PHP 4:17!11 +PHP 4:17!12 +PHP 4:17!13 +PHP 4:17!14 +PHP 4:18!2 +PHP 4:18!1 +PHP 4:18!3 +PHP 4:18!4 +PHP 4:18!5 +PHP 4:18!6 +PHP 4:18!7 +PHP 4:18!8 +PHP 4:18!9 +PHP 4:18!10 +PHP 4:18!11 +PHP 4:18!12 +PHP 4:18!13 +PHP 4:18!14 +PHP 4:18!15 +PHP 4:18!16 +PHP 4:18!17 +PHP 4:18!18 +PHP 4:18!19 +PHP 4:19!2 +PHP 4:19!1 +PHP 4:19!3 +PHP 4:19!4 +PHP 4:19!5 +PHP 4:19!6 +PHP 4:19!7 +PHP 4:19!8 +PHP 4:19!9 +PHP 4:19!10 +PHP 4:19!11 +PHP 4:19!12 +PHP 4:19!13 +PHP 4:19!14 +PHP 4:19!15 +PHP 4:19!16 +PHP 4:19!17 +PHP 4:20!2 +PHP 4:20!1 +PHP 4:20!3 +PHP 4:20!4 +PHP 4:20!5 +PHP 4:20!6 +PHP 4:20!7 +PHP 4:20!8 +PHP 4:20!9 +PHP 4:20!10 +PHP 4:20!11 +PHP 4:20!12 +PHP 4:20!13 +PHP 4:20!14 +PHP 4:21!1 +PHP 4:21!2 +PHP 4:21!3 +PHP 4:21!4 +PHP 4:21!5 +PHP 4:21!6 +PHP 4:21!7 +PHP 4:21!8 +PHP 4:21!9 +PHP 4:21!10 +PHP 4:21!11 +PHP 4:21!12 +PHP 4:22!1 +PHP 4:22!2 +PHP 4:22!3 +PHP 4:22!4 +PHP 4:22!5 +PHP 4:22!7 +PHP 4:22!6 +PHP 4:22!8 +PHP 4:22!9 +PHP 4:22!10 +PHP 4:22!11 +PHP 4:22!12 +PHP 4:23!1 +PHP 4:23!2 +PHP 4:23!3 +PHP 4:23!4 +PHP 4:23!5 +PHP 4:23!6 +PHP 4:23!7 +PHP 4:23!8 +PHP 4:23!9 +PHP 4:23!10 +COL 1:1!1 +COL 1:1!2 +COL 1:1!3 +COL 1:1!4 +COL 1:1!5 +COL 1:1!6 +COL 1:1!7 +COL 1:1!8 +COL 1:1!9 +COL 1:1!10 +COL 1:1!11 +COL 1:2!1 +COL 1:2!2 +COL 1:2!3 +COL 1:2!4 +COL 1:2!5 +COL 1:2!6 +COL 1:2!7 +COL 1:2!8 +COL 1:2!9 +COL 1:2!11 +COL 1:2!10 +COL 1:2!12 +COL 1:2!13 +COL 1:2!14 +COL 1:2!15 +COL 1:2!16 +COL 1:2!17 +COL 1:3!1 +COL 1:3!2 +COL 1:3!3 +COL 1:3!4 +COL 1:3!5 +COL 1:3!6 +COL 1:3!7 +COL 1:3!8 +COL 1:3!9 +COL 1:3!10 +COL 1:3!11 +COL 1:3!12 +COL 1:3!13 +COL 1:4!1 +COL 1:4!2 +COL 1:4!3 +COL 1:4!4 +COL 1:4!5 +COL 1:4!6 +COL 1:4!7 +COL 1:4!8 +COL 1:4!9 +COL 1:4!10 +COL 1:4!11 +COL 1:4!12 +COL 1:4!13 +COL 1:4!14 +COL 1:4!15 +COL 1:4!16 +COL 1:5!1 +COL 1:5!2 +COL 1:5!3 +COL 1:5!4 +COL 1:5!5 +COL 1:5!6 +COL 1:5!7 +COL 1:5!8 +COL 1:5!9 +COL 1:5!10 +COL 1:5!11 +COL 1:5!12 +COL 1:5!13 +COL 1:5!14 +COL 1:5!15 +COL 1:5!16 +COL 1:5!17 +COL 1:5!18 +COL 1:6!1 +COL 1:6!2 +COL 1:6!3 +COL 1:6!4 +COL 1:6!5 +COL 1:6!6 +COL 1:6!7 +COL 1:6!8 +COL 1:6!9 +COL 1:6!10 +COL 1:6!11 +COL 1:6!12 +COL 1:6!13 +COL 1:6!14 +COL 1:6!15 +COL 1:6!16 +COL 1:6!17 +COL 1:6!18 +COL 1:6!19 +COL 1:6!20 +COL 1:6!21 +COL 1:6!22 +COL 1:6!23 +COL 1:6!24 +COL 1:6!25 +COL 1:6!26 +COL 1:6!27 +COL 1:6!28 +COL 1:6!29 +COL 1:6!30 +COL 1:7!1 +COL 1:7!2 +COL 1:7!3 +COL 1:7!4 +COL 1:7!5 +COL 1:7!6 +COL 1:7!7 +COL 1:7!8 +COL 1:7!9 +COL 1:7!10 +COL 1:7!11 +COL 1:7!12 +COL 1:7!13 +COL 1:7!14 +COL 1:7!15 +COL 1:7!16 +COL 1:8!1 +COL 1:8!2 +COL 1:8!3 +COL 1:8!4 +COL 1:8!5 +COL 1:8!6 +COL 1:8!7 +COL 1:8!8 +COL 1:8!9 +COL 1:9!1 +COL 1:9!2 +COL 1:9!3 +COL 1:9!4 +COL 1:9!5 +COL 1:9!6 +COL 1:9!7 +COL 1:9!8 +COL 1:9!9 +COL 1:9!10 +COL 1:9!11 +COL 1:9!12 +COL 1:9!13 +COL 1:9!14 +COL 1:9!15 +COL 1:9!16 +COL 1:9!17 +COL 1:9!18 +COL 1:9!19 +COL 1:9!20 +COL 1:9!21 +COL 1:9!22 +COL 1:9!23 +COL 1:9!24 +COL 1:9!25 +COL 1:9!26 +COL 1:9!27 +COL 1:9!28 +COL 1:10!1 +COL 1:10!2 +COL 1:10!3 +COL 1:10!4 +COL 1:10!5 +COL 1:10!6 +COL 1:10!7 +COL 1:10!8 +COL 1:10!9 +COL 1:10!10 +COL 1:10!11 +COL 1:10!12 +COL 1:10!13 +COL 1:10!14 +COL 1:10!15 +COL 1:10!16 +COL 1:10!17 +COL 1:10!18 +COL 1:11!1 +COL 1:11!2 +COL 1:11!3 +COL 1:11!4 +COL 1:11!5 +COL 1:11!6 +COL 1:11!7 +COL 1:11!8 +COL 1:11!9 +COL 1:11!10 +COL 1:11!11 +COL 1:11!12 +COL 1:11!13 +COL 1:11!14 +COL 1:11!15 +COL 1:11!16 +COL 1:11!17 +COL 1:12!1 +COL 1:12!2 +COL 1:12!3 +COL 1:12!4 +COL 1:12!5 +COL 1:12!6 +COL 1:12!7 +COL 1:12!8 +COL 1:12!9 +COL 1:12!10 +COL 1:12!11 +COL 1:12!12 +COL 1:12!13 +COL 1:12!14 +COL 1:12!15 +COL 1:12!16 +COL 1:13!1 +COL 1:13!2 +COL 1:13!3 +COL 1:13!4 +COL 1:13!5 +COL 1:13!6 +COL 1:13!7 +COL 1:13!8 +COL 1:13!9 +COL 1:13!10 +COL 1:13!11 +COL 1:13!12 +COL 1:13!13 +COL 1:13!14 +COL 1:13!15 +COL 1:13!16 +COL 1:13!17 +COL 1:13!18 +COL 1:14!1 +COL 1:14!2 +COL 1:14!3 +COL 1:14!4 +COL 1:14!5 +COL 1:14!6 +COL 1:14!7 +COL 1:14!8 +COL 1:14!9 +COL 1:15!1 +COL 1:15!2 +COL 1:15!3 +COL 1:15!4 +COL 1:15!5 +COL 1:15!6 +COL 1:15!7 +COL 1:15!8 +COL 1:15!9 +COL 1:15!10 +COL 1:16!1 +COL 1:16!2 +COL 1:16!3 +COL 1:16!4 +COL 1:16!5 +COL 1:16!6 +COL 1:16!7 +COL 1:16!8 +COL 1:16!9 +COL 1:16!10 +COL 1:16!11 +COL 1:16!12 +COL 1:16!13 +COL 1:16!14 +COL 1:16!15 +COL 1:16!16 +COL 1:16!17 +COL 1:16!18 +COL 1:16!19 +COL 1:16!20 +COL 1:16!21 +COL 1:16!22 +COL 1:16!23 +COL 1:16!24 +COL 1:16!25 +COL 1:16!26 +COL 1:16!27 +COL 1:16!28 +COL 1:16!29 +COL 1:16!30 +COL 1:16!31 +COL 1:16!32 +COL 1:16!33 +COL 1:16!34 +COL 1:17!1 +COL 1:17!2 +COL 1:17!3 +COL 1:17!4 +COL 1:17!5 +COL 1:17!6 +COL 1:17!7 +COL 1:17!8 +COL 1:17!9 +COL 1:17!10 +COL 1:17!11 +COL 1:18!1 +COL 1:18!2 +COL 1:18!3 +COL 1:18!4 +COL 1:18!5 +COL 1:18!6 +COL 1:18!7 +COL 1:18!8 +COL 1:18!9 +COL 1:18!10 +COL 1:18!11 +COL 1:18!12 +COL 1:18!13 +COL 1:18!14 +COL 1:18!15 +COL 1:18!16 +COL 1:18!17 +COL 1:18!18 +COL 1:18!21 +COL 1:18!19 +COL 1:18!20 +COL 1:18!22 +COL 1:19!1 +COL 1:19!4 +COL 1:19!2 +COL 1:19!3 +COL 1:19!5 +COL 1:19!6 +COL 1:19!7 +COL 1:19!8 +COL 1:20!1 +COL 1:20!2 +COL 1:20!3 +COL 1:20!4 +COL 1:20!5 +COL 1:20!6 +COL 1:20!7 +COL 1:20!8 +COL 1:20!9 +COL 1:20!10 +COL 1:20!11 +COL 1:20!12 +COL 1:20!13 +COL 1:20!14 +COL 1:20!15 +COL 1:20!16 +COL 1:20!17 +COL 1:20!18 +COL 1:20!19 +COL 1:20!20 +COL 1:20!21 +COL 1:20!22 +COL 1:20!23 +COL 1:20!24 +COL 1:20!25 +COL 1:20!26 +COL 1:20!27 +COL 1:21!1 +COL 1:21!2 +COL 1:21!3 +COL 1:21!4 +COL 1:21!5 +COL 1:21!6 +COL 1:21!7 +COL 1:21!8 +COL 1:21!9 +COL 1:21!10 +COL 1:21!11 +COL 1:21!12 +COL 1:21!13 +COL 1:21!14 +COL 1:22!2 +COL 1:22!1 +COL 1:22!3 +COL 1:22!4 +COL 1:22!5 +COL 1:22!6 +COL 1:22!7 +COL 1:22!8 +COL 1:22!9 +COL 1:22!10 +COL 1:22!11 +COL 1:22!12 +COL 1:22!13 +COL 1:22!14 +COL 1:22!15 +COL 1:22!16 +COL 1:22!17 +COL 1:22!18 +COL 1:22!19 +COL 1:22!20 +COL 1:22!21 +COL 1:23!1 +COL 1:23!2 +COL 1:23!3 +COL 1:23!4 +COL 1:23!5 +COL 1:23!6 +COL 1:23!7 +COL 1:23!8 +COL 1:23!9 +COL 1:23!10 +COL 1:23!11 +COL 1:23!12 +COL 1:23!13 +COL 1:23!14 +COL 1:23!15 +COL 1:23!16 +COL 1:23!17 +COL 1:23!18 +COL 1:23!19 +COL 1:23!20 +COL 1:23!21 +COL 1:23!22 +COL 1:23!23 +COL 1:23!24 +COL 1:23!25 +COL 1:23!26 +COL 1:23!27 +COL 1:23!28 +COL 1:23!32 +COL 1:23!29 +COL 1:23!30 +COL 1:23!31 +COL 1:24!1 +COL 1:24!2 +COL 1:24!3 +COL 1:24!4 +COL 1:24!5 +COL 1:24!6 +COL 1:24!7 +COL 1:24!8 +COL 1:24!9 +COL 1:24!10 +COL 1:24!11 +COL 1:24!12 +COL 1:24!13 +COL 1:24!14 +COL 1:24!15 +COL 1:24!16 +COL 1:24!17 +COL 1:24!18 +COL 1:24!19 +COL 1:24!20 +COL 1:24!21 +COL 1:24!22 +COL 1:24!23 +COL 1:24!24 +COL 1:24!25 +COL 1:24!26 +COL 1:24!27 +COL 1:25!1 +COL 1:25!4 +COL 1:25!2 +COL 1:25!3 +COL 1:25!5 +COL 1:25!6 +COL 1:25!7 +COL 1:25!8 +COL 1:25!9 +COL 1:25!10 +COL 1:25!11 +COL 1:25!12 +COL 1:25!13 +COL 1:25!14 +COL 1:25!15 +COL 1:25!16 +COL 1:25!17 +COL 1:25!18 +COL 1:25!19 +COL 1:26!1 +COL 1:26!2 +COL 1:26!3 +COL 1:26!4 +COL 1:26!5 +COL 1:26!6 +COL 1:26!7 +COL 1:26!8 +COL 1:26!9 +COL 1:26!10 +COL 1:26!11 +COL 1:26!13 +COL 1:26!12 +COL 1:26!14 +COL 1:26!15 +COL 1:26!16 +COL 1:26!17 +COL 1:27!1 +COL 1:27!2 +COL 1:27!3 +COL 1:27!4 +COL 1:27!5 +COL 1:27!6 +COL 1:27!7 +COL 1:27!8 +COL 1:27!9 +COL 1:27!10 +COL 1:27!11 +COL 1:27!12 +COL 1:27!13 +COL 1:27!14 +COL 1:27!15 +COL 1:27!16 +COL 1:27!17 +COL 1:27!18 +COL 1:27!19 +COL 1:27!20 +COL 1:27!21 +COL 1:27!22 +COL 1:27!23 +COL 1:27!24 +COL 1:27!25 +COL 1:28!1 +COL 1:28!2 +COL 1:28!3 +COL 1:28!4 +COL 1:28!5 +COL 1:28!6 +COL 1:28!7 +COL 1:28!8 +COL 1:28!9 +COL 1:28!10 +COL 1:28!11 +COL 1:28!12 +COL 1:28!13 +COL 1:28!14 +COL 1:28!15 +COL 1:28!16 +COL 1:28!17 +COL 1:28!18 +COL 1:28!19 +COL 1:28!20 +COL 1:29!1 +COL 1:29!2 +COL 1:29!3 +COL 1:29!4 +COL 1:29!5 +COL 1:29!6 +COL 1:29!7 +COL 1:29!8 +COL 1:29!9 +COL 1:29!10 +COL 1:29!11 +COL 1:29!12 +COL 1:29!13 +COL 1:29!14 +COL 1:29!15 +COL 2:1!2 +COL 2:1!1 +COL 2:1!3 +COL 2:1!4 +COL 2:1!5 +COL 2:1!6 +COL 2:1!7 +COL 2:1!8 +COL 2:1!9 +COL 2:1!10 +COL 2:1!11 +COL 2:1!12 +COL 2:1!13 +COL 2:1!14 +COL 2:1!15 +COL 2:1!16 +COL 2:1!17 +COL 2:1!18 +COL 2:1!19 +COL 2:1!20 +COL 2:1!21 +COL 2:1!22 +COL 2:2!1 +COL 2:2!2 +COL 2:2!3 +COL 2:2!4 +COL 2:2!5 +COL 2:2!6 +COL 2:2!7 +COL 2:2!8 +COL 2:2!9 +COL 2:2!10 +COL 2:2!11 +COL 2:2!12 +COL 2:2!13 +COL 2:2!14 +COL 2:2!15 +COL 2:2!16 +COL 2:2!17 +COL 2:2!18 +COL 2:2!19 +COL 2:2!20 +COL 2:2!21 +COL 2:2!22 +COL 2:2!23 +COL 2:3!1 +COL 2:3!2 +COL 2:3!3 +COL 2:3!4 +COL 2:3!5 +COL 2:3!6 +COL 2:3!7 +COL 2:3!8 +COL 2:3!9 +COL 2:3!10 +COL 2:3!11 +COL 2:4!1 +COL 2:4!2 +COL 2:4!3 +COL 2:4!4 +COL 2:4!5 +COL 2:4!6 +COL 2:4!7 +COL 2:4!8 +COL 2:5!2 +COL 2:5!1 +COL 2:5!3 +COL 2:5!4 +COL 2:5!5 +COL 2:5!6 +COL 2:5!7 +COL 2:5!8 +COL 2:5!9 +COL 2:5!10 +COL 2:5!11 +COL 2:5!12 +COL 2:5!13 +COL 2:5!14 +COL 2:5!15 +COL 2:5!16 +COL 2:5!17 +COL 2:5!18 +COL 2:5!19 +COL 2:5!20 +COL 2:5!21 +COL 2:5!22 +COL 2:5!23 +COL 2:5!24 +COL 2:5!25 +COL 2:5!26 +COL 2:6!2 +COL 2:6!1 +COL 2:6!3 +COL 2:6!4 +COL 2:6!5 +COL 2:6!6 +COL 2:6!7 +COL 2:6!8 +COL 2:6!9 +COL 2:6!10 +COL 2:6!11 +COL 2:7!1 +COL 2:7!2 +COL 2:7!3 +COL 2:7!4 +COL 2:7!5 +COL 2:7!6 +COL 2:7!7 +COL 2:7!8 +COL 2:7!9 +COL 2:7!10 +COL 2:7!11 +COL 2:7!12 +COL 2:7!13 +COL 2:7!14 +COL 2:8!1 +COL 2:8!2 +COL 2:8!3 +COL 2:8!5 +COL 2:8!6 +COL 2:8!7 +COL 2:8!4 +COL 2:8!8 +COL 2:8!9 +COL 2:8!10 +COL 2:8!11 +COL 2:8!12 +COL 2:8!13 +COL 2:8!14 +COL 2:8!15 +COL 2:8!16 +COL 2:8!17 +COL 2:8!18 +COL 2:8!19 +COL 2:8!20 +COL 2:8!21 +COL 2:8!22 +COL 2:8!23 +COL 2:8!24 +COL 2:8!25 +COL 2:8!26 +COL 2:8!27 +COL 2:9!1 +COL 2:9!2 +COL 2:9!3 +COL 2:9!4 +COL 2:9!5 +COL 2:9!6 +COL 2:9!7 +COL 2:9!8 +COL 2:9!9 +COL 2:9!10 +COL 2:10!1 +COL 2:10!2 +COL 2:10!5 +COL 2:10!3 +COL 2:10!4 +COL 2:10!6 +COL 2:10!7 +COL 2:10!8 +COL 2:10!9 +COL 2:10!10 +COL 2:10!11 +COL 2:10!12 +COL 2:10!13 +COL 2:11!1 +COL 2:11!2 +COL 2:11!3 +COL 2:11!4 +COL 2:11!5 +COL 2:11!6 +COL 2:11!7 +COL 2:11!8 +COL 2:11!9 +COL 2:11!10 +COL 2:11!11 +COL 2:11!12 +COL 2:11!13 +COL 2:11!14 +COL 2:11!15 +COL 2:11!16 +COL 2:11!17 +COL 2:11!18 +COL 2:12!1 +COL 2:12!2 +COL 2:12!3 +COL 2:12!4 +COL 2:12!5 +COL 2:12!6 +COL 2:12!7 +COL 2:12!8 +COL 2:12!9 +COL 2:12!10 +COL 2:12!11 +COL 2:12!12 +COL 2:12!13 +COL 2:12!14 +COL 2:12!15 +COL 2:12!16 +COL 2:12!17 +COL 2:12!18 +COL 2:12!19 +COL 2:12!20 +COL 2:12!21 +COL 2:13!1 +COL 2:13!2 +COL 2:13!3 +COL 2:13!4 +COL 2:13!5 +COL 2:13!6 +COL 2:13!7 +COL 2:13!8 +COL 2:13!9 +COL 2:13!10 +COL 2:13!11 +COL 2:13!12 +COL 2:13!13 +COL 2:13!14 +COL 2:13!15 +COL 2:13!16 +COL 2:13!17 +COL 2:13!18 +COL 2:13!19 +COL 2:13!20 +COL 2:13!21 +COL 2:14!1 +COL 2:14!2 +COL 2:14!3 +COL 2:14!4 +COL 2:14!5 +COL 2:14!6 +COL 2:14!7 +COL 2:14!8 +COL 2:14!9 +COL 2:14!10 +COL 2:14!11 +COL 2:14!12 +COL 2:14!13 +COL 2:14!14 +COL 2:14!15 +COL 2:14!16 +COL 2:14!17 +COL 2:14!18 +COL 2:14!19 +COL 2:14!20 +COL 2:14!21 +COL 2:15!1 +COL 2:15!2 +COL 2:15!3 +COL 2:15!4 +COL 2:15!5 +COL 2:15!6 +COL 2:15!7 +COL 2:15!8 +COL 2:15!9 +COL 2:15!10 +COL 2:15!11 +COL 2:15!12 +COL 2:15!13 +COL 2:16!2 +COL 2:16!1 +COL 2:16!3 +COL 2:16!4 +COL 2:16!5 +COL 2:16!6 +COL 2:16!7 +COL 2:16!8 +COL 2:16!9 +COL 2:16!10 +COL 2:16!11 +COL 2:16!12 +COL 2:16!13 +COL 2:16!14 +COL 2:16!15 +COL 2:16!16 +COL 2:16!17 +COL 2:16!18 +COL 2:17!1 +COL 2:17!2 +COL 2:17!3 +COL 2:17!4 +COL 2:17!5 +COL 2:17!7 +COL 2:17!6 +COL 2:17!8 +COL 2:17!9 +COL 2:17!10 +COL 2:18!1 +COL 2:18!2 +COL 2:18!3 +COL 2:18!4 +COL 2:18!5 +COL 2:18!6 +COL 2:18!7 +COL 2:18!8 +COL 2:18!9 +COL 2:18!10 +COL 2:18!11 +COL 2:18!12 +COL 2:18!13 +COL 2:18!14 +COL 2:18!15 +COL 2:18!16 +COL 2:18!17 +COL 2:18!18 +COL 2:18!19 +COL 2:18!20 +COL 2:18!21 +COL 2:19!1 +COL 2:19!2 +COL 2:19!3 +COL 2:19!4 +COL 2:19!5 +COL 2:19!6 +COL 2:19!7 +COL 2:19!8 +COL 2:19!9 +COL 2:19!10 +COL 2:19!11 +COL 2:19!12 +COL 2:19!13 +COL 2:19!14 +COL 2:19!15 +COL 2:19!16 +COL 2:19!17 +COL 2:19!18 +COL 2:19!19 +COL 2:19!20 +COL 2:19!21 +COL 2:19!22 +COL 2:19!23 +COL 2:20!1 +COL 2:20!2 +COL 2:20!3 +COL 2:20!4 +COL 2:20!5 +COL 2:20!6 +COL 2:20!7 +COL 2:20!8 +COL 2:20!9 +COL 2:20!10 +COL 2:20!11 +COL 2:20!12 +COL 2:20!13 +COL 2:20!14 +COL 2:20!15 +COL 2:21!1 +COL 2:21!2 +COL 2:21!3 +COL 2:21!4 +COL 2:21!5 +COL 2:21!6 +COL 2:22!1 +COL 2:22!2 +COL 2:22!3 +COL 2:22!4 +COL 2:22!5 +COL 2:22!6 +COL 2:22!7 +COL 2:22!8 +COL 2:22!9 +COL 2:22!10 +COL 2:22!11 +COL 2:22!12 +COL 2:22!13 +COL 2:22!14 +COL 2:23!1 +COL 2:23!2 +COL 2:23!4 +COL 2:23!5 +COL 2:23!3 +COL 2:23!6 +COL 2:23!7 +COL 2:23!8 +COL 2:23!9 +COL 2:23!10 +COL 2:23!11 +COL 2:23!12 +COL 2:23!13 +COL 2:23!14 +COL 2:23!15 +COL 2:23!16 +COL 2:23!17 +COL 2:23!18 +COL 2:23!19 +COL 2:23!20 +COL 2:23!21 +COL 3:1!2 +COL 3:1!1 +COL 3:1!3 +COL 3:1!4 +COL 3:1!5 +COL 3:1!6 +COL 3:1!7 +COL 3:1!8 +COL 3:1!9 +COL 3:1!10 +COL 3:1!11 +COL 3:1!12 +COL 3:1!17 +COL 3:1!13 +COL 3:1!14 +COL 3:1!15 +COL 3:1!16 +COL 3:2!1 +COL 3:2!2 +COL 3:2!3 +COL 3:2!4 +COL 3:2!5 +COL 3:2!6 +COL 3:2!7 +COL 3:2!8 +COL 3:3!2 +COL 3:3!1 +COL 3:3!3 +COL 3:3!4 +COL 3:3!5 +COL 3:3!6 +COL 3:3!7 +COL 3:3!8 +COL 3:3!9 +COL 3:3!10 +COL 3:3!11 +COL 3:3!12 +COL 3:3!13 +COL 3:4!1 +COL 3:4!4 +COL 3:4!2 +COL 3:4!3 +COL 3:4!5 +COL 3:4!6 +COL 3:4!7 +COL 3:4!8 +COL 3:4!9 +COL 3:4!10 +COL 3:4!11 +COL 3:4!12 +COL 3:4!13 +COL 3:4!14 +COL 3:4!15 +COL 3:5!2 +COL 3:5!1 +COL 3:5!3 +COL 3:5!4 +COL 3:5!5 +COL 3:5!6 +COL 3:5!7 +COL 3:5!8 +COL 3:5!9 +COL 3:5!10 +COL 3:5!11 +COL 3:5!12 +COL 3:5!13 +COL 3:5!14 +COL 3:5!15 +COL 3:5!16 +COL 3:5!17 +COL 3:5!18 +COL 3:5!19 +COL 3:6!1 +COL 3:6!2 +COL 3:6!3 +COL 3:6!4 +COL 3:6!5 +COL 3:6!6 +COL 3:6!7 +COL 3:7!1 +COL 3:7!2 +COL 3:7!3 +COL 3:7!4 +COL 3:7!5 +COL 3:7!6 +COL 3:7!7 +COL 3:7!8 +COL 3:7!9 +COL 3:7!10 +COL 3:8!2 +COL 3:8!1 +COL 3:8!3 +COL 3:8!4 +COL 3:8!5 +COL 3:8!6 +COL 3:8!7 +COL 3:8!8 +COL 3:8!9 +COL 3:8!10 +COL 3:8!11 +COL 3:8!12 +COL 3:8!13 +COL 3:8!14 +COL 3:8!15 +COL 3:8!16 +COL 3:9!1 +COL 3:9!2 +COL 3:9!3 +COL 3:9!4 +COL 3:9!5 +COL 3:9!6 +COL 3:9!7 +COL 3:9!8 +COL 3:9!9 +COL 3:9!10 +COL 3:9!11 +COL 3:9!12 +COL 3:10!1 +COL 3:10!2 +COL 3:10!3 +COL 3:10!4 +COL 3:10!5 +COL 3:10!6 +COL 3:10!7 +COL 3:10!8 +COL 3:10!9 +COL 3:10!10 +COL 3:10!11 +COL 3:10!12 +COL 3:10!13 +COL 3:11!1 +COL 3:11!2 +COL 3:11!3 +COL 3:11!4 +COL 3:11!5 +COL 3:11!6 +COL 3:11!7 +COL 3:11!8 +COL 3:11!9 +COL 3:11!10 +COL 3:11!11 +COL 3:11!12 +COL 3:11!13 +COL 3:11!14 +COL 3:11!15 +COL 3:11!16 +COL 3:11!17 +COL 3:11!18 +COL 3:11!19 +COL 3:12!2 +COL 3:12!1 +COL 3:12!3 +COL 3:12!4 +COL 3:12!5 +COL 3:12!6 +COL 3:12!7 +COL 3:12!8 +COL 3:12!9 +COL 3:12!10 +COL 3:12!11 +COL 3:12!12 +COL 3:12!13 +COL 3:12!14 +COL 3:12!15 +COL 3:13!1 +COL 3:13!2 +COL 3:13!3 +COL 3:13!4 +COL 3:13!5 +COL 3:13!6 +COL 3:13!7 +COL 3:13!8 +COL 3:13!9 +COL 3:13!10 +COL 3:13!11 +COL 3:13!12 +COL 3:13!13 +COL 3:13!14 +COL 3:13!15 +COL 3:13!16 +COL 3:13!17 +COL 3:13!18 +COL 3:13!19 +COL 3:13!20 +COL 3:14!3 +COL 3:14!1 +COL 3:14!2 +COL 3:14!4 +COL 3:14!5 +COL 3:14!6 +COL 3:14!7 +COL 3:14!8 +COL 3:14!9 +COL 3:14!10 +COL 3:14!11 +COL 3:15!1 +COL 3:15!2 +COL 3:15!3 +COL 3:15!4 +COL 3:15!5 +COL 3:15!6 +COL 3:15!7 +COL 3:15!8 +COL 3:15!9 +COL 3:15!10 +COL 3:15!11 +COL 3:15!12 +COL 3:15!13 +COL 3:15!14 +COL 3:15!15 +COL 3:15!16 +COL 3:15!17 +COL 3:15!18 +COL 3:15!19 +COL 3:15!20 +COL 3:16!1 +COL 3:16!2 +COL 3:16!3 +COL 3:16!4 +COL 3:16!5 +COL 3:16!6 +COL 3:16!7 +COL 3:16!8 +COL 3:16!9 +COL 3:16!10 +COL 3:16!11 +COL 3:16!12 +COL 3:16!13 +COL 3:16!14 +COL 3:16!15 +COL 3:16!16 +COL 3:16!17 +COL 3:16!18 +COL 3:16!19 +COL 3:16!20 +COL 3:16!21 +COL 3:16!22 +COL 3:16!23 +COL 3:16!24 +COL 3:16!25 +COL 3:16!26 +COL 3:16!27 +COL 3:16!28 +COL 3:16!29 +COL 3:17!1 +COL 3:17!2 +COL 3:17!4 +COL 3:17!5 +COL 3:17!3 +COL 3:17!6 +COL 3:17!7 +COL 3:17!8 +COL 3:17!9 +COL 3:17!10 +COL 3:17!11 +COL 3:17!12 +COL 3:17!13 +COL 3:17!14 +COL 3:17!15 +COL 3:17!16 +COL 3:17!17 +COL 3:17!18 +COL 3:17!19 +COL 3:17!20 +COL 3:17!21 +COL 3:17!22 +COL 3:18!1 +COL 3:18!2 +COL 3:18!3 +COL 3:18!4 +COL 3:18!5 +COL 3:18!6 +COL 3:18!7 +COL 3:18!8 +COL 3:18!9 +COL 3:19!1 +COL 3:19!2 +COL 3:19!3 +COL 3:19!4 +COL 3:19!5 +COL 3:19!6 +COL 3:19!7 +COL 3:19!8 +COL 3:19!9 +COL 3:19!10 +COL 3:20!1 +COL 3:20!2 +COL 3:20!3 +COL 3:20!4 +COL 3:20!5 +COL 3:20!6 +COL 3:20!7 +COL 3:20!9 +COL 3:20!8 +COL 3:20!10 +COL 3:20!11 +COL 3:20!12 +COL 3:20!13 +COL 3:21!1 +COL 3:21!2 +COL 3:21!3 +COL 3:21!4 +COL 3:21!5 +COL 3:21!6 +COL 3:21!7 +COL 3:21!8 +COL 3:21!9 +COL 3:21!10 +COL 3:22!1 +COL 3:22!2 +COL 3:22!3 +COL 3:22!4 +COL 3:22!5 +COL 3:22!6 +COL 3:22!7 +COL 3:22!8 +COL 3:22!9 +COL 3:22!10 +COL 3:22!11 +COL 3:22!12 +COL 3:22!13 +COL 3:22!14 +COL 3:22!15 +COL 3:22!16 +COL 3:22!17 +COL 3:22!18 +COL 3:22!19 +COL 3:22!20 +COL 3:22!21 +COL 3:23!2 +COL 3:23!1 +COL 3:23!3 +COL 3:23!4 +COL 3:23!5 +COL 3:23!6 +COL 3:23!7 +COL 3:23!8 +COL 3:23!9 +COL 3:23!10 +COL 3:23!11 +COL 3:23!12 +COL 3:24!1 +COL 3:24!2 +COL 3:24!3 +COL 3:24!4 +COL 3:24!5 +COL 3:24!6 +COL 3:24!7 +COL 3:24!8 +COL 3:24!9 +COL 3:24!10 +COL 3:24!11 +COL 3:24!12 +COL 3:24!13 +COL 3:25!2 +COL 3:25!1 +COL 3:25!3 +COL 3:25!4 +COL 3:25!5 +COL 3:25!6 +COL 3:25!7 +COL 3:25!8 +COL 3:25!9 +COL 3:25!10 +COL 4:1!1 +COL 4:1!2 +COL 4:1!3 +COL 4:1!4 +COL 4:1!5 +COL 4:1!6 +COL 4:1!7 +COL 4:1!8 +COL 4:1!9 +COL 4:1!10 +COL 4:1!11 +COL 4:1!12 +COL 4:1!13 +COL 4:1!14 +COL 4:1!15 +COL 4:1!16 +COL 4:1!17 +COL 4:1!18 +COL 4:2!1 +COL 4:2!2 +COL 4:2!3 +COL 4:2!4 +COL 4:2!5 +COL 4:2!6 +COL 4:2!7 +COL 4:2!8 +COL 4:3!1 +COL 4:3!2 +COL 4:3!3 +COL 4:3!4 +COL 4:3!5 +COL 4:3!6 +COL 4:3!7 +COL 4:3!8 +COL 4:3!9 +COL 4:3!10 +COL 4:3!11 +COL 4:3!12 +COL 4:3!13 +COL 4:3!14 +COL 4:3!15 +COL 4:3!16 +COL 4:3!17 +COL 4:3!18 +COL 4:3!19 +COL 4:3!20 +COL 4:3!21 +COL 4:3!22 +COL 4:4!1 +COL 4:4!2 +COL 4:4!3 +COL 4:4!4 +COL 4:4!5 +COL 4:4!6 +COL 4:4!7 +COL 4:5!1 +COL 4:5!2 +COL 4:5!3 +COL 4:5!4 +COL 4:5!5 +COL 4:5!6 +COL 4:5!7 +COL 4:5!8 +COL 4:5!9 +COL 4:6!1 +COL 4:6!2 +COL 4:6!3 +COL 4:6!4 +COL 4:6!5 +COL 4:6!6 +COL 4:6!7 +COL 4:6!8 +COL 4:6!9 +COL 4:6!10 +COL 4:6!11 +COL 4:6!12 +COL 4:6!13 +COL 4:6!14 +COL 4:6!15 +COL 4:7!1 +COL 4:7!2 +COL 4:7!3 +COL 4:7!4 +COL 4:7!5 +COL 4:7!6 +COL 4:7!7 +COL 4:7!8 +COL 4:7!9 +COL 4:7!10 +COL 4:7!11 +COL 4:7!12 +COL 4:7!13 +COL 4:7!14 +COL 4:7!15 +COL 4:7!16 +COL 4:7!17 +COL 4:8!1 +COL 4:8!2 +COL 4:8!3 +COL 4:8!4 +COL 4:8!5 +COL 4:8!6 +COL 4:8!7 +COL 4:8!8 +COL 4:8!9 +COL 4:8!10 +COL 4:8!11 +COL 4:8!12 +COL 4:8!13 +COL 4:8!14 +COL 4:8!15 +COL 4:8!16 +COL 4:8!17 +COL 4:9!1 +COL 4:9!2 +COL 4:9!3 +COL 4:9!4 +COL 4:9!5 +COL 4:9!6 +COL 4:9!7 +COL 4:9!8 +COL 4:9!9 +COL 4:9!10 +COL 4:9!11 +COL 4:9!13 +COL 4:9!14 +COL 4:9!12 +COL 4:9!15 +COL 4:9!16 +COL 4:10!1 +COL 4:10!2 +COL 4:10!3 +COL 4:10!4 +COL 4:10!5 +COL 4:10!6 +COL 4:10!7 +COL 4:10!8 +COL 4:10!9 +COL 4:10!10 +COL 4:10!11 +COL 4:10!12 +COL 4:10!13 +COL 4:10!14 +COL 4:10!15 +COL 4:10!16 +COL 4:10!17 +COL 4:10!18 +COL 4:10!19 +COL 4:10!20 +COL 4:10!21 +COL 4:11!1 +COL 4:11!2 +COL 4:11!3 +COL 4:11!4 +COL 4:11!5 +COL 4:11!6 +COL 4:11!7 +COL 4:11!8 +COL 4:11!9 +COL 4:11!10 +COL 4:11!11 +COL 4:11!12 +COL 4:11!13 +COL 4:11!14 +COL 4:11!15 +COL 4:11!16 +COL 4:11!17 +COL 4:11!18 +COL 4:11!19 +COL 4:11!20 +COL 4:11!21 +COL 4:12!1 +COL 4:12!2 +COL 4:12!3 +COL 4:12!4 +COL 4:12!5 +COL 4:12!6 +COL 4:12!7 +COL 4:12!8 +COL 4:12!9 +COL 4:12!10 +COL 4:12!11 +COL 4:12!12 +COL 4:12!13 +COL 4:12!14 +COL 4:12!15 +COL 4:12!16 +COL 4:12!17 +COL 4:12!18 +COL 4:12!19 +COL 4:12!20 +COL 4:12!21 +COL 4:12!22 +COL 4:12!23 +COL 4:12!24 +COL 4:12!25 +COL 4:12!26 +COL 4:13!2 +COL 4:13!1 +COL 4:13!3 +COL 4:13!4 +COL 4:13!5 +COL 4:13!6 +COL 4:13!7 +COL 4:13!8 +COL 4:13!9 +COL 4:13!10 +COL 4:13!11 +COL 4:13!12 +COL 4:13!13 +COL 4:13!14 +COL 4:13!15 +COL 4:13!16 +COL 4:13!17 +COL 4:14!1 +COL 4:14!2 +COL 4:14!3 +COL 4:14!4 +COL 4:14!5 +COL 4:14!6 +COL 4:14!7 +COL 4:14!8 +COL 4:14!9 +COL 4:15!1 +COL 4:15!2 +COL 4:15!3 +COL 4:15!4 +COL 4:15!5 +COL 4:15!6 +COL 4:15!7 +COL 4:15!8 +COL 4:15!9 +COL 4:15!10 +COL 4:15!11 +COL 4:15!12 +COL 4:15!13 +COL 4:16!1 +COL 4:16!2 +COL 4:16!3 +COL 4:16!4 +COL 4:16!5 +COL 4:16!6 +COL 4:16!7 +COL 4:16!8 +COL 4:16!9 +COL 4:16!10 +COL 4:16!11 +COL 4:16!12 +COL 4:16!13 +COL 4:16!14 +COL 4:16!15 +COL 4:16!16 +COL 4:16!20 +COL 4:16!17 +COL 4:16!18 +COL 4:16!19 +COL 4:16!21 +COL 4:16!22 +COL 4:16!23 +COL 4:17!1 +COL 4:17!2 +COL 4:17!3 +COL 4:17!4 +COL 4:17!5 +COL 4:17!6 +COL 4:17!7 +COL 4:17!8 +COL 4:17!9 +COL 4:17!10 +COL 4:17!11 +COL 4:17!12 +COL 4:17!13 +COL 4:18!1 +COL 4:18!2 +COL 4:18!3 +COL 4:18!4 +COL 4:18!5 +COL 4:18!6 +COL 4:18!7 +COL 4:18!8 +COL 4:18!9 +COL 4:18!10 +COL 4:18!11 +COL 4:18!12 +COL 4:18!13 +COL 4:18!14 +1TH 1:1!1 +1TH 1:1!2 +1TH 1:1!3 +1TH 1:1!4 +1TH 1:1!5 +1TH 1:1!6 +1TH 1:1!7 +1TH 1:1!8 +1TH 1:1!9 +1TH 1:1!10 +1TH 1:1!11 +1TH 1:1!12 +1TH 1:1!13 +1TH 1:1!14 +1TH 1:1!15 +1TH 1:1!17 +1TH 1:1!16 +1TH 1:1!18 +1TH 1:1!19 +1TH 1:2!1 +1TH 1:2!2 +1TH 1:2!3 +1TH 1:2!4 +1TH 1:2!5 +1TH 1:2!6 +1TH 1:2!7 +1TH 1:2!8 +1TH 1:2!9 +1TH 1:2!10 +1TH 1:2!11 +1TH 1:2!12 +1TH 1:2!13 +1TH 1:2!14 +1TH 1:3!1 +1TH 1:3!2 +1TH 1:3!3 +1TH 1:3!4 +1TH 1:3!5 +1TH 1:3!6 +1TH 1:3!7 +1TH 1:3!8 +1TH 1:3!9 +1TH 1:3!10 +1TH 1:3!11 +1TH 1:3!12 +1TH 1:3!13 +1TH 1:3!14 +1TH 1:3!15 +1TH 1:3!16 +1TH 1:3!17 +1TH 1:3!18 +1TH 1:3!19 +1TH 1:3!20 +1TH 1:3!21 +1TH 1:3!22 +1TH 1:3!23 +1TH 1:3!24 +1TH 1:3!25 +1TH 1:3!26 +1TH 1:3!27 +1TH 1:4!1 +1TH 1:4!7 +1TH 1:4!8 +1TH 1:4!9 +1TH 1:4!2 +1TH 1:4!3 +1TH 1:4!4 +1TH 1:4!5 +1TH 1:4!6 +1TH 1:5!1 +1TH 1:5!2 +1TH 1:5!3 +1TH 1:5!4 +1TH 1:5!6 +1TH 1:5!7 +1TH 1:5!8 +1TH 1:5!5 +1TH 1:5!9 +1TH 1:5!10 +1TH 1:5!11 +1TH 1:5!12 +1TH 1:5!13 +1TH 1:5!14 +1TH 1:5!15 +1TH 1:5!16 +1TH 1:5!17 +1TH 1:5!18 +1TH 1:5!19 +1TH 1:5!20 +1TH 1:5!21 +1TH 1:5!22 +1TH 1:5!23 +1TH 1:5!24 +1TH 1:5!25 +1TH 1:5!26 +1TH 1:5!27 +1TH 1:5!28 +1TH 1:5!29 +1TH 1:5!30 +1TH 1:6!1 +1TH 1:6!2 +1TH 1:6!5 +1TH 1:6!3 +1TH 1:6!4 +1TH 1:6!6 +1TH 1:6!7 +1TH 1:6!8 +1TH 1:6!9 +1TH 1:6!10 +1TH 1:6!11 +1TH 1:6!12 +1TH 1:6!13 +1TH 1:6!14 +1TH 1:6!15 +1TH 1:6!16 +1TH 1:6!17 +1TH 1:6!18 +1TH 1:7!1 +1TH 1:7!2 +1TH 1:7!3 +1TH 1:7!4 +1TH 1:7!5 +1TH 1:7!6 +1TH 1:7!7 +1TH 1:7!8 +1TH 1:7!9 +1TH 1:7!10 +1TH 1:7!11 +1TH 1:7!12 +1TH 1:7!13 +1TH 1:7!14 +1TH 1:8!3 +1TH 1:8!1 +1TH 1:8!2 +1TH 1:8!4 +1TH 1:8!5 +1TH 1:8!6 +1TH 1:8!7 +1TH 1:8!8 +1TH 1:8!9 +1TH 1:8!10 +1TH 1:8!11 +1TH 1:8!12 +1TH 1:8!13 +1TH 1:8!14 +1TH 1:8!15 +1TH 1:8!16 +1TH 1:8!17 +1TH 1:8!18 +1TH 1:8!19 +1TH 1:8!20 +1TH 1:8!21 +1TH 1:8!22 +1TH 1:8!23 +1TH 1:8!24 +1TH 1:8!25 +1TH 1:8!26 +1TH 1:8!27 +1TH 1:8!28 +1TH 1:8!29 +1TH 1:8!30 +1TH 1:8!31 +1TH 1:8!32 +1TH 1:8!33 +1TH 1:8!34 +1TH 1:9!2 +1TH 1:9!1 +1TH 1:9!3 +1TH 1:9!4 +1TH 1:9!5 +1TH 1:9!6 +1TH 1:9!7 +1TH 1:9!8 +1TH 1:9!9 +1TH 1:9!10 +1TH 1:9!11 +1TH 1:9!12 +1TH 1:9!13 +1TH 1:9!14 +1TH 1:9!15 +1TH 1:9!16 +1TH 1:9!17 +1TH 1:9!18 +1TH 1:9!19 +1TH 1:9!20 +1TH 1:9!21 +1TH 1:9!22 +1TH 1:9!23 +1TH 1:9!24 +1TH 1:10!1 +1TH 1:10!2 +1TH 1:10!6 +1TH 1:10!7 +1TH 1:10!8 +1TH 1:10!3 +1TH 1:10!4 +1TH 1:10!5 +1TH 1:10!9 +1TH 1:10!10 +1TH 1:10!11 +1TH 1:10!12 +1TH 1:10!13 +1TH 1:10!14 +1TH 1:10!15 +1TH 1:10!16 +1TH 1:10!17 +1TH 1:10!18 +1TH 1:10!19 +1TH 1:10!20 +1TH 1:10!21 +1TH 1:10!22 +1TH 2:1!2 +1TH 2:1!4 +1TH 2:1!1 +1TH 2:1!3 +1TH 2:1!5 +1TH 2:1!6 +1TH 2:1!7 +1TH 2:1!8 +1TH 2:1!9 +1TH 2:1!10 +1TH 2:1!11 +1TH 2:1!12 +1TH 2:1!13 +1TH 2:1!14 +1TH 2:2!1 +1TH 2:2!2 +1TH 2:2!3 +1TH 2:2!4 +1TH 2:2!7 +1TH 2:2!8 +1TH 2:2!5 +1TH 2:2!6 +1TH 2:2!9 +1TH 2:2!10 +1TH 2:2!11 +1TH 2:2!12 +1TH 2:2!13 +1TH 2:2!14 +1TH 2:2!15 +1TH 2:2!16 +1TH 2:2!17 +1TH 2:2!18 +1TH 2:2!19 +1TH 2:2!20 +1TH 2:2!21 +1TH 2:2!22 +1TH 2:2!23 +1TH 2:3!2 +1TH 2:3!1 +1TH 2:3!3 +1TH 2:3!4 +1TH 2:3!5 +1TH 2:3!6 +1TH 2:3!7 +1TH 2:3!8 +1TH 2:3!9 +1TH 2:3!10 +1TH 2:3!11 +1TH 2:3!12 +1TH 2:3!13 +1TH 2:4!1 +1TH 2:4!2 +1TH 2:4!3 +1TH 2:4!4 +1TH 2:4!5 +1TH 2:4!6 +1TH 2:4!7 +1TH 2:4!8 +1TH 2:4!9 +1TH 2:4!10 +1TH 2:4!11 +1TH 2:4!13 +1TH 2:4!15 +1TH 2:4!12 +1TH 2:4!14 +1TH 2:4!16 +1TH 2:4!17 +1TH 2:4!18 +1TH 2:4!19 +1TH 2:4!20 +1TH 2:4!21 +1TH 2:4!22 +1TH 2:5!2 +1TH 2:5!1 +1TH 2:5!3 +1TH 2:5!4 +1TH 2:5!5 +1TH 2:5!6 +1TH 2:5!7 +1TH 2:5!8 +1TH 2:5!9 +1TH 2:5!10 +1TH 2:5!11 +1TH 2:5!12 +1TH 2:5!13 +1TH 2:5!14 +1TH 2:5!15 +1TH 2:6!1 +1TH 2:6!2 +1TH 2:6!3 +1TH 2:6!4 +1TH 2:6!5 +1TH 2:6!6 +1TH 2:6!7 +1TH 2:6!8 +1TH 2:6!9 +1TH 2:6!10 +1TH 2:6!11 +1TH 2:7!1 +1TH 2:7!2 +1TH 2:7!3 +1TH 2:7!4 +1TH 2:7!5 +1TH 2:7!6 +1TH 2:7!7 +1TH 2:7!8 +1TH 2:7!9 +1TH 2:7!10 +1TH 2:7!11 +1TH 2:7!12 +1TH 2:7!13 +1TH 2:7!14 +1TH 2:7!15 +1TH 2:7!16 +1TH 2:7!17 +1TH 2:7!18 +1TH 2:7!19 +1TH 2:7!20 +1TH 2:8!1 +1TH 2:8!2 +1TH 2:8!3 +1TH 2:8!4 +1TH 2:8!5 +1TH 2:8!6 +1TH 2:8!7 +1TH 2:8!8 +1TH 2:8!9 +1TH 2:8!10 +1TH 2:8!11 +1TH 2:8!12 +1TH 2:8!13 +1TH 2:8!14 +1TH 2:8!15 +1TH 2:8!16 +1TH 2:8!17 +1TH 2:8!18 +1TH 2:8!19 +1TH 2:8!20 +1TH 2:8!21 +1TH 2:9!2 +1TH 2:9!3 +1TH 2:9!1 +1TH 2:9!4 +1TH 2:9!5 +1TH 2:9!6 +1TH 2:9!7 +1TH 2:9!8 +1TH 2:9!9 +1TH 2:9!10 +1TH 2:9!11 +1TH 2:9!12 +1TH 2:9!13 +1TH 2:9!14 +1TH 2:9!15 +1TH 2:9!16 +1TH 2:9!17 +1TH 2:9!18 +1TH 2:9!19 +1TH 2:9!20 +1TH 2:9!21 +1TH 2:9!22 +1TH 2:9!23 +1TH 2:9!24 +1TH 2:9!25 +1TH 2:9!26 +1TH 2:10!2 +1TH 2:10!1 +1TH 2:10!3 +1TH 2:10!4 +1TH 2:10!5 +1TH 2:10!6 +1TH 2:10!7 +1TH 2:10!8 +1TH 2:10!9 +1TH 2:10!10 +1TH 2:10!11 +1TH 2:10!12 +1TH 2:10!13 +1TH 2:10!14 +1TH 2:10!15 +1TH 2:11!1 +1TH 2:11!2 +1TH 2:11!3 +1TH 2:11!4 +1TH 2:11!5 +1TH 2:11!6 +1TH 2:11!7 +1TH 2:11!8 +1TH 2:11!9 +1TH 2:11!10 +1TH 2:12!1 +1TH 2:12!3 +1TH 2:12!4 +1TH 2:12!5 +1TH 2:12!6 +1TH 2:12!2 +1TH 2:12!7 +1TH 2:12!8 +1TH 2:12!9 +1TH 2:12!10 +1TH 2:12!11 +1TH 2:12!12 +1TH 2:12!13 +1TH 2:12!14 +1TH 2:12!15 +1TH 2:12!16 +1TH 2:12!17 +1TH 2:12!18 +1TH 2:12!19 +1TH 2:12!20 +1TH 2:12!21 +1TH 2:12!22 +1TH 2:13!1 +1TH 2:13!2 +1TH 2:13!3 +1TH 2:13!4 +1TH 2:13!5 +1TH 2:13!6 +1TH 2:13!7 +1TH 2:13!8 +1TH 2:13!9 +1TH 2:13!10 +1TH 2:13!11 +1TH 2:13!12 +1TH 2:13!13 +1TH 2:13!14 +1TH 2:13!15 +1TH 2:13!16 +1TH 2:13!17 +1TH 2:13!18 +1TH 2:13!19 +1TH 2:13!20 +1TH 2:13!21 +1TH 2:13!22 +1TH 2:13!23 +1TH 2:13!24 +1TH 2:13!25 +1TH 2:13!26 +1TH 2:13!27 +1TH 2:13!28 +1TH 2:13!29 +1TH 2:13!30 +1TH 2:13!31 +1TH 2:13!32 +1TH 2:13!33 +1TH 2:13!34 +1TH 2:14!2 +1TH 2:14!5 +1TH 2:14!1 +1TH 2:14!4 +1TH 2:14!3 +1TH 2:14!6 +1TH 2:14!7 +1TH 2:14!8 +1TH 2:14!9 +1TH 2:14!10 +1TH 2:14!11 +1TH 2:14!12 +1TH 2:14!13 +1TH 2:14!14 +1TH 2:14!15 +1TH 2:14!16 +1TH 2:14!17 +1TH 2:14!18 +1TH 2:14!19 +1TH 2:14!20 +1TH 2:14!21 +1TH 2:14!22 +1TH 2:14!23 +1TH 2:14!24 +1TH 2:14!25 +1TH 2:14!26 +1TH 2:14!27 +1TH 2:14!28 +1TH 2:14!29 +1TH 2:14!30 +1TH 2:14!31 +1TH 2:14!32 +1TH 2:14!33 +1TH 2:15!1 +1TH 2:15!5 +1TH 2:15!2 +1TH 2:15!3 +1TH 2:15!4 +1TH 2:15!6 +1TH 2:15!7 +1TH 2:15!8 +1TH 2:15!9 +1TH 2:15!10 +1TH 2:15!11 +1TH 2:15!12 +1TH 2:15!13 +1TH 2:15!14 +1TH 2:15!15 +1TH 2:15!16 +1TH 2:15!17 +1TH 2:15!18 +1TH 2:15!19 +1TH 2:15!20 +1TH 2:16!1 +1TH 2:16!2 +1TH 2:16!3 +1TH 2:16!4 +1TH 2:16!5 +1TH 2:16!6 +1TH 2:16!7 +1TH 2:16!8 +1TH 2:16!9 +1TH 2:16!10 +1TH 2:16!11 +1TH 2:16!12 +1TH 2:16!13 +1TH 2:16!14 +1TH 2:16!16 +1TH 2:16!15 +1TH 2:16!17 +1TH 2:16!18 +1TH 2:16!19 +1TH 2:16!20 +1TH 2:16!21 +1TH 2:16!22 +1TH 2:17!2 +1TH 2:17!3 +1TH 2:17!1 +1TH 2:17!4 +1TH 2:17!5 +1TH 2:17!6 +1TH 2:17!7 +1TH 2:17!8 +1TH 2:17!9 +1TH 2:17!10 +1TH 2:17!11 +1TH 2:17!12 +1TH 2:17!13 +1TH 2:17!14 +1TH 2:17!15 +1TH 2:17!16 +1TH 2:17!17 +1TH 2:17!18 +1TH 2:17!19 +1TH 2:17!20 +1TH 2:17!21 +1TH 2:18!1 +1TH 2:18!2 +1TH 2:18!3 +1TH 2:18!4 +1TH 2:18!5 +1TH 2:18!7 +1TH 2:18!6 +1TH 2:18!8 +1TH 2:18!9 +1TH 2:18!10 +1TH 2:18!11 +1TH 2:18!12 +1TH 2:18!13 +1TH 2:18!14 +1TH 2:18!15 +1TH 2:18!16 +1TH 2:18!17 +1TH 2:19!2 +1TH 2:19!1 +1TH 2:19!3 +1TH 2:19!4 +1TH 2:19!5 +1TH 2:19!6 +1TH 2:19!7 +1TH 2:19!8 +1TH 2:19!9 +1TH 2:19!10 +1TH 2:19!11 +1TH 2:19!12 +1TH 2:19!13 +1TH 2:19!14 +1TH 2:19!15 +1TH 2:19!16 +1TH 2:19!17 +1TH 2:19!18 +1TH 2:19!19 +1TH 2:19!20 +1TH 2:19!21 +1TH 2:19!22 +1TH 2:20!2 +1TH 2:20!1 +1TH 2:20!3 +1TH 2:20!4 +1TH 2:20!5 +1TH 2:20!6 +1TH 2:20!7 +1TH 2:20!8 +1TH 2:20!9 +1TH 3:1!1 +1TH 3:1!2 +1TH 3:1!3 +1TH 3:1!4 +1TH 3:1!5 +1TH 3:1!6 +1TH 3:1!7 +1TH 3:1!8 +1TH 3:2!1 +1TH 3:2!2 +1TH 3:2!3 +1TH 3:2!4 +1TH 3:2!5 +1TH 3:2!6 +1TH 3:2!7 +1TH 3:2!8 +1TH 3:2!9 +1TH 3:2!10 +1TH 3:2!11 +1TH 3:2!12 +1TH 3:2!13 +1TH 3:2!14 +1TH 3:2!15 +1TH 3:2!16 +1TH 3:2!17 +1TH 3:2!18 +1TH 3:2!20 +1TH 3:2!21 +1TH 3:2!19 +1TH 3:2!22 +1TH 3:2!23 +1TH 3:2!24 +1TH 3:2!25 +1TH 3:3!1 +1TH 3:3!2 +1TH 3:3!3 +1TH 3:3!4 +1TH 3:3!5 +1TH 3:3!6 +1TH 3:3!7 +1TH 3:3!9 +1TH 3:3!8 +1TH 3:3!10 +1TH 3:3!11 +1TH 3:3!12 +1TH 3:3!13 +1TH 3:3!14 +1TH 3:4!2 +1TH 3:4!1 +1TH 3:4!3 +1TH 3:4!4 +1TH 3:4!5 +1TH 3:4!6 +1TH 3:4!7 +1TH 3:4!8 +1TH 3:4!9 +1TH 3:4!10 +1TH 3:4!11 +1TH 3:4!12 +1TH 3:4!13 +1TH 3:4!14 +1TH 3:4!15 +1TH 3:4!16 +1TH 3:5!1 +1TH 3:5!2 +1TH 3:5!3 +1TH 3:5!4 +1TH 3:5!5 +1TH 3:5!6 +1TH 3:5!7 +1TH 3:5!8 +1TH 3:5!9 +1TH 3:5!10 +1TH 3:5!11 +1TH 3:5!12 +1TH 3:5!13 +1TH 3:5!14 +1TH 3:5!15 +1TH 3:5!16 +1TH 3:5!17 +1TH 3:5!18 +1TH 3:5!19 +1TH 3:5!20 +1TH 3:5!21 +1TH 3:5!22 +1TH 3:5!23 +1TH 3:5!24 +1TH 3:5!25 +1TH 3:6!2 +1TH 3:6!1 +1TH 3:6!3 +1TH 3:6!4 +1TH 3:6!5 +1TH 3:6!6 +1TH 3:6!7 +1TH 3:6!8 +1TH 3:6!9 +1TH 3:6!10 +1TH 3:6!11 +1TH 3:6!12 +1TH 3:6!13 +1TH 3:6!14 +1TH 3:6!15 +1TH 3:6!16 +1TH 3:6!17 +1TH 3:6!18 +1TH 3:6!19 +1TH 3:6!20 +1TH 3:6!21 +1TH 3:6!22 +1TH 3:6!23 +1TH 3:6!24 +1TH 3:6!25 +1TH 3:6!26 +1TH 3:6!27 +1TH 3:6!28 +1TH 3:6!29 +1TH 3:6!30 +1TH 3:6!31 +1TH 3:7!4 +1TH 3:7!1 +1TH 3:7!2 +1TH 3:7!3 +1TH 3:7!5 +1TH 3:7!6 +1TH 3:7!7 +1TH 3:7!8 +1TH 3:7!9 +1TH 3:7!10 +1TH 3:7!11 +1TH 3:7!12 +1TH 3:7!13 +1TH 3:7!14 +1TH 3:7!15 +1TH 3:7!16 +1TH 3:7!17 +1TH 3:8!1 +1TH 3:8!2 +1TH 3:8!3 +1TH 3:8!4 +1TH 3:8!5 +1TH 3:8!6 +1TH 3:8!7 +1TH 3:8!8 +1TH 3:9!2 +1TH 3:9!4 +1TH 3:9!1 +1TH 3:9!3 +1TH 3:9!5 +1TH 3:9!6 +1TH 3:9!7 +1TH 3:9!8 +1TH 3:9!9 +1TH 3:9!10 +1TH 3:9!11 +1TH 3:9!12 +1TH 3:9!13 +1TH 3:9!14 +1TH 3:9!15 +1TH 3:9!16 +1TH 3:9!17 +1TH 3:9!18 +1TH 3:9!19 +1TH 3:9!20 +1TH 3:9!21 +1TH 3:10!1 +1TH 3:10!2 +1TH 3:10!3 +1TH 3:10!4 +1TH 3:10!5 +1TH 3:10!6 +1TH 3:10!7 +1TH 3:10!8 +1TH 3:10!9 +1TH 3:10!10 +1TH 3:10!11 +1TH 3:10!12 +1TH 3:10!13 +1TH 3:10!14 +1TH 3:10!15 +1TH 3:10!16 +1TH 3:10!17 +1TH 3:10!18 +1TH 3:11!2 +1TH 3:11!1 +1TH 3:11!3 +1TH 3:11!4 +1TH 3:11!5 +1TH 3:11!6 +1TH 3:11!7 +1TH 3:11!8 +1TH 3:11!9 +1TH 3:11!10 +1TH 3:11!11 +1TH 3:11!12 +1TH 3:11!13 +1TH 3:11!14 +1TH 3:11!15 +1TH 3:11!16 +1TH 3:11!17 +1TH 3:11!18 +1TH 3:12!2 +1TH 3:12!1 +1TH 3:12!3 +1TH 3:12!4 +1TH 3:12!5 +1TH 3:12!6 +1TH 3:12!7 +1TH 3:12!8 +1TH 3:12!9 +1TH 3:12!10 +1TH 3:12!11 +1TH 3:12!12 +1TH 3:12!13 +1TH 3:12!14 +1TH 3:12!15 +1TH 3:12!16 +1TH 3:12!17 +1TH 3:12!18 +1TH 3:12!19 +1TH 3:13!1 +1TH 3:13!2 +1TH 3:13!3 +1TH 3:13!4 +1TH 3:13!5 +1TH 3:13!6 +1TH 3:13!7 +1TH 3:13!8 +1TH 3:13!9 +1TH 3:13!10 +1TH 3:13!11 +1TH 3:13!12 +1TH 3:13!13 +1TH 3:13!14 +1TH 3:13!15 +1TH 3:13!16 +1TH 3:13!17 +1TH 3:13!18 +1TH 3:13!19 +1TH 3:13!20 +1TH 3:13!21 +1TH 3:13!22 +1TH 3:13!23 +1TH 3:13!24 +1TH 3:13!25 +1TH 3:13!26 +1TH 3:13!27 +1TH 4:1!2 +1TH 4:1!3 +1TH 4:1!1 +1TH 4:1!4 +1TH 4:1!6 +1TH 4:1!7 +1TH 4:1!5 +1TH 4:1!8 +1TH 4:1!9 +1TH 4:1!10 +1TH 4:1!11 +1TH 4:1!12 +1TH 4:1!13 +1TH 4:1!14 +1TH 4:1!15 +1TH 4:1!16 +1TH 4:1!17 +1TH 4:1!18 +1TH 4:1!19 +1TH 4:1!20 +1TH 4:1!21 +1TH 4:1!22 +1TH 4:1!23 +1TH 4:1!24 +1TH 4:1!25 +1TH 4:1!26 +1TH 4:1!27 +1TH 4:1!28 +1TH 4:1!29 +1TH 4:2!2 +1TH 4:2!1 +1TH 4:2!3 +1TH 4:2!4 +1TH 4:2!5 +1TH 4:2!6 +1TH 4:2!7 +1TH 4:2!8 +1TH 4:2!9 +1TH 4:2!10 +1TH 4:3!2 +1TH 4:3!1 +1TH 4:3!3 +1TH 4:3!4 +1TH 4:3!5 +1TH 4:3!6 +1TH 4:3!7 +1TH 4:3!8 +1TH 4:3!9 +1TH 4:3!10 +1TH 4:3!11 +1TH 4:3!12 +1TH 4:3!13 +1TH 4:3!14 +1TH 4:4!1 +1TH 4:4!2 +1TH 4:4!3 +1TH 4:4!4 +1TH 4:4!5 +1TH 4:4!6 +1TH 4:4!7 +1TH 4:4!8 +1TH 4:4!9 +1TH 4:4!10 +1TH 4:4!11 +1TH 4:5!1 +1TH 4:5!2 +1TH 4:5!3 +1TH 4:5!4 +1TH 4:5!5 +1TH 4:5!6 +1TH 4:5!7 +1TH 4:5!8 +1TH 4:5!9 +1TH 4:5!10 +1TH 4:5!11 +1TH 4:5!12 +1TH 4:5!13 +1TH 4:6!1 +1TH 4:6!2 +1TH 4:6!3 +1TH 4:6!4 +1TH 4:6!5 +1TH 4:6!6 +1TH 4:6!7 +1TH 4:6!8 +1TH 4:6!9 +1TH 4:6!10 +1TH 4:6!11 +1TH 4:6!12 +1TH 4:6!13 +1TH 4:6!14 +1TH 4:6!15 +1TH 4:6!16 +1TH 4:6!17 +1TH 4:6!18 +1TH 4:6!19 +1TH 4:6!20 +1TH 4:6!21 +1TH 4:6!22 +1TH 4:6!23 +1TH 4:7!2 +1TH 4:7!1 +1TH 4:7!3 +1TH 4:7!4 +1TH 4:7!5 +1TH 4:7!6 +1TH 4:7!7 +1TH 4:7!8 +1TH 4:7!9 +1TH 4:7!10 +1TH 4:7!11 +1TH 4:8!1 +1TH 4:8!2 +1TH 4:8!3 +1TH 4:8!6 +1TH 4:8!4 +1TH 4:8!5 +1TH 4:8!7 +1TH 4:8!8 +1TH 4:8!9 +1TH 4:8!10 +1TH 4:8!11 +1TH 4:8!12 +1TH 4:8!13 +1TH 4:8!14 +1TH 4:8!15 +1TH 4:8!16 +1TH 4:8!17 +1TH 4:8!18 +1TH 4:8!19 +1TH 4:9!2 +1TH 4:9!1 +1TH 4:9!3 +1TH 4:9!4 +1TH 4:9!5 +1TH 4:9!6 +1TH 4:9!7 +1TH 4:9!8 +1TH 4:9!9 +1TH 4:9!11 +1TH 4:9!10 +1TH 4:9!12 +1TH 4:9!13 +1TH 4:9!14 +1TH 4:9!15 +1TH 4:9!16 +1TH 4:9!17 +1TH 4:9!18 +1TH 4:10!2 +1TH 4:10!1 +1TH 4:10!3 +1TH 4:10!4 +1TH 4:10!5 +1TH 4:10!6 +1TH 4:10!7 +1TH 4:10!8 +1TH 4:10!9 +1TH 4:10!10 +1TH 4:10!11 +1TH 4:10!12 +1TH 4:10!14 +1TH 4:10!16 +1TH 4:10!13 +1TH 4:10!15 +1TH 4:10!17 +1TH 4:10!18 +1TH 4:11!1 +1TH 4:11!2 +1TH 4:11!3 +1TH 4:11!4 +1TH 4:11!5 +1TH 4:11!6 +1TH 4:11!7 +1TH 4:11!8 +1TH 4:11!9 +1TH 4:11!10 +1TH 4:11!11 +1TH 4:11!12 +1TH 4:11!13 +1TH 4:11!14 +1TH 4:11!15 +1TH 4:12!1 +1TH 4:12!2 +1TH 4:12!3 +1TH 4:12!4 +1TH 4:12!5 +1TH 4:12!6 +1TH 4:12!7 +1TH 4:12!8 +1TH 4:12!9 +1TH 4:12!10 +1TH 4:13!3 +1TH 4:13!6 +1TH 4:13!1 +1TH 4:13!2 +1TH 4:13!4 +1TH 4:13!5 +1TH 4:13!7 +1TH 4:13!8 +1TH 4:13!9 +1TH 4:13!10 +1TH 4:13!11 +1TH 4:13!12 +1TH 4:13!13 +1TH 4:13!14 +1TH 4:13!15 +1TH 4:13!16 +1TH 4:13!17 +1TH 4:13!18 +1TH 4:13!19 +1TH 4:13!20 +1TH 4:14!2 +1TH 4:14!1 +1TH 4:14!3 +1TH 4:14!4 +1TH 4:14!5 +1TH 4:14!6 +1TH 4:14!7 +1TH 4:14!8 +1TH 4:14!9 +1TH 4:14!10 +1TH 4:14!11 +1TH 4:14!12 +1TH 4:14!13 +1TH 4:14!14 +1TH 4:14!15 +1TH 4:14!16 +1TH 4:14!17 +1TH 4:14!18 +1TH 4:14!19 +1TH 4:14!20 +1TH 4:15!2 +1TH 4:15!1 +1TH 4:15!3 +1TH 4:15!4 +1TH 4:15!5 +1TH 4:15!6 +1TH 4:15!7 +1TH 4:15!8 +1TH 4:15!9 +1TH 4:15!10 +1TH 4:15!11 +1TH 4:15!12 +1TH 4:15!13 +1TH 4:15!14 +1TH 4:15!15 +1TH 4:15!16 +1TH 4:15!17 +1TH 4:15!18 +1TH 4:15!19 +1TH 4:15!20 +1TH 4:15!21 +1TH 4:15!22 +1TH 4:15!23 +1TH 4:16!1 +1TH 4:16!2 +1TH 4:16!3 +1TH 4:16!4 +1TH 4:16!5 +1TH 4:16!6 +1TH 4:16!7 +1TH 4:16!8 +1TH 4:16!9 +1TH 4:16!10 +1TH 4:16!11 +1TH 4:16!12 +1TH 4:16!13 +1TH 4:16!14 +1TH 4:16!15 +1TH 4:16!16 +1TH 4:16!17 +1TH 4:16!18 +1TH 4:16!19 +1TH 4:16!20 +1TH 4:16!21 +1TH 4:16!22 +1TH 4:16!23 +1TH 4:17!1 +1TH 4:17!2 +1TH 4:17!3 +1TH 4:17!4 +1TH 4:17!5 +1TH 4:17!6 +1TH 4:17!7 +1TH 4:17!8 +1TH 4:17!9 +1TH 4:17!10 +1TH 4:17!11 +1TH 4:17!12 +1TH 4:17!13 +1TH 4:17!14 +1TH 4:17!15 +1TH 4:17!16 +1TH 4:17!17 +1TH 4:17!18 +1TH 4:17!19 +1TH 4:17!20 +1TH 4:17!21 +1TH 4:17!22 +1TH 4:17!23 +1TH 4:17!24 +1TH 4:18!1 +1TH 4:18!2 +1TH 4:18!3 +1TH 4:18!4 +1TH 4:18!5 +1TH 4:18!6 +1TH 4:18!7 +1TH 5:1!2 +1TH 5:1!8 +1TH 5:1!1 +1TH 5:1!3 +1TH 5:1!4 +1TH 5:1!5 +1TH 5:1!6 +1TH 5:1!7 +1TH 5:1!9 +1TH 5:1!10 +1TH 5:1!11 +1TH 5:1!12 +1TH 5:1!13 +1TH 5:2!2 +1TH 5:2!1 +1TH 5:2!3 +1TH 5:2!4 +1TH 5:2!5 +1TH 5:2!8 +1TH 5:2!9 +1TH 5:2!10 +1TH 5:2!11 +1TH 5:2!6 +1TH 5:2!7 +1TH 5:2!12 +1TH 5:2!13 +1TH 5:3!1 +1TH 5:3!2 +1TH 5:3!3 +1TH 5:3!4 +1TH 5:3!5 +1TH 5:3!6 +1TH 5:3!7 +1TH 5:3!10 +1TH 5:3!8 +1TH 5:3!9 +1TH 5:3!11 +1TH 5:3!12 +1TH 5:3!13 +1TH 5:3!14 +1TH 5:3!15 +1TH 5:3!16 +1TH 5:3!17 +1TH 5:3!18 +1TH 5:3!19 +1TH 5:3!20 +1TH 5:3!21 +1TH 5:4!2 +1TH 5:4!3 +1TH 5:4!1 +1TH 5:4!4 +1TH 5:4!5 +1TH 5:4!6 +1TH 5:4!7 +1TH 5:4!8 +1TH 5:4!9 +1TH 5:4!10 +1TH 5:4!11 +1TH 5:4!14 +1TH 5:4!12 +1TH 5:4!13 +1TH 5:5!2 +1TH 5:5!1 +1TH 5:5!3 +1TH 5:5!6 +1TH 5:5!4 +1TH 5:5!5 +1TH 5:5!7 +1TH 5:5!8 +1TH 5:5!9 +1TH 5:5!10 +1TH 5:5!11 +1TH 5:5!12 +1TH 5:5!13 +1TH 5:5!14 +1TH 5:6!1 +1TH 5:6!2 +1TH 5:6!3 +1TH 5:6!4 +1TH 5:6!5 +1TH 5:6!6 +1TH 5:6!7 +1TH 5:6!8 +1TH 5:6!9 +1TH 5:6!10 +1TH 5:6!11 +1TH 5:7!2 +1TH 5:7!1 +1TH 5:7!3 +1TH 5:7!4 +1TH 5:7!5 +1TH 5:7!6 +1TH 5:7!7 +1TH 5:7!8 +1TH 5:7!9 +1TH 5:7!10 +1TH 5:8!2 +1TH 5:8!1 +1TH 5:8!3 +1TH 5:8!4 +1TH 5:8!5 +1TH 5:8!6 +1TH 5:8!7 +1TH 5:8!8 +1TH 5:8!9 +1TH 5:8!10 +1TH 5:8!11 +1TH 5:8!12 +1TH 5:8!13 +1TH 5:8!14 +1TH 5:9!1 +1TH 5:9!2 +1TH 5:9!3 +1TH 5:9!4 +1TH 5:9!5 +1TH 5:9!6 +1TH 5:9!7 +1TH 5:9!8 +1TH 5:9!9 +1TH 5:9!10 +1TH 5:9!11 +1TH 5:9!12 +1TH 5:9!13 +1TH 5:9!14 +1TH 5:9!15 +1TH 5:9!16 +1TH 5:9!17 +1TH 5:9!18 +1TH 5:10!1 +1TH 5:10!2 +1TH 5:10!3 +1TH 5:10!4 +1TH 5:10!5 +1TH 5:10!6 +1TH 5:10!7 +1TH 5:10!8 +1TH 5:10!9 +1TH 5:10!10 +1TH 5:10!11 +1TH 5:10!12 +1TH 5:10!13 +1TH 5:11!1 +1TH 5:11!2 +1TH 5:11!3 +1TH 5:11!4 +1TH 5:11!5 +1TH 5:11!6 +1TH 5:11!7 +1TH 5:11!8 +1TH 5:11!9 +1TH 5:11!10 +1TH 5:11!11 +1TH 5:12!2 +1TH 5:12!4 +1TH 5:12!1 +1TH 5:12!3 +1TH 5:12!5 +1TH 5:12!6 +1TH 5:12!7 +1TH 5:12!8 +1TH 5:12!9 +1TH 5:12!10 +1TH 5:12!11 +1TH 5:12!12 +1TH 5:12!13 +1TH 5:12!14 +1TH 5:12!15 +1TH 5:12!16 +1TH 5:12!17 +1TH 5:13!1 +1TH 5:13!2 +1TH 5:13!3 +1TH 5:13!4 +1TH 5:13!5 +1TH 5:13!6 +1TH 5:13!7 +1TH 5:13!8 +1TH 5:13!9 +1TH 5:13!10 +1TH 5:13!11 +1TH 5:13!12 +1TH 5:13!13 +1TH 5:14!2 +1TH 5:14!4 +1TH 5:14!1 +1TH 5:14!3 +1TH 5:14!5 +1TH 5:14!6 +1TH 5:14!7 +1TH 5:14!8 +1TH 5:14!9 +1TH 5:14!10 +1TH 5:14!11 +1TH 5:14!12 +1TH 5:14!13 +1TH 5:14!14 +1TH 5:14!15 +1TH 5:14!16 +1TH 5:15!1 +1TH 5:15!2 +1TH 5:15!3 +1TH 5:15!4 +1TH 5:15!5 +1TH 5:15!6 +1TH 5:15!7 +1TH 5:15!8 +1TH 5:15!9 +1TH 5:15!10 +1TH 5:15!11 +1TH 5:15!12 +1TH 5:15!13 +1TH 5:15!14 +1TH 5:15!15 +1TH 5:15!16 +1TH 5:15!17 +1TH 5:15!18 +1TH 5:16!1 +1TH 5:16!2 +1TH 5:17!1 +1TH 5:17!2 +1TH 5:18!1 +1TH 5:18!2 +1TH 5:18!3 +1TH 5:18!5 +1TH 5:18!4 +1TH 5:18!6 +1TH 5:18!7 +1TH 5:18!8 +1TH 5:18!9 +1TH 5:18!10 +1TH 5:18!11 +1TH 5:18!12 +1TH 5:19!1 +1TH 5:19!2 +1TH 5:19!3 +1TH 5:19!4 +1TH 5:20!1 +1TH 5:20!2 +1TH 5:20!3 +1TH 5:21!2 +1TH 5:21!1 +1TH 5:21!3 +1TH 5:21!4 +1TH 5:21!5 +1TH 5:21!6 +1TH 5:22!1 +1TH 5:22!2 +1TH 5:22!3 +1TH 5:22!4 +1TH 5:22!5 +1TH 5:23!2 +1TH 5:23!1 +1TH 5:23!3 +1TH 5:23!4 +1TH 5:23!5 +1TH 5:23!6 +1TH 5:23!7 +1TH 5:23!8 +1TH 5:23!9 +1TH 5:23!10 +1TH 5:23!11 +1TH 5:23!12 +1TH 5:23!13 +1TH 5:23!14 +1TH 5:23!15 +1TH 5:23!16 +1TH 5:23!17 +1TH 5:23!18 +1TH 5:23!19 +1TH 5:23!20 +1TH 5:23!21 +1TH 5:23!22 +1TH 5:23!23 +1TH 5:23!24 +1TH 5:23!25 +1TH 5:23!26 +1TH 5:23!27 +1TH 5:23!28 +1TH 5:23!29 +1TH 5:23!30 +1TH 5:24!1 +1TH 5:24!2 +1TH 5:24!3 +1TH 5:24!4 +1TH 5:24!5 +1TH 5:24!6 +1TH 5:24!7 +1TH 5:25!1 +1TH 5:25!2 +1TH 5:25!3 +1TH 5:25!4 +1TH 5:26!1 +1TH 5:26!2 +1TH 5:26!3 +1TH 5:26!4 +1TH 5:26!5 +1TH 5:26!6 +1TH 5:26!7 +1TH 5:27!1 +1TH 5:27!2 +1TH 5:27!3 +1TH 5:27!4 +1TH 5:27!5 +1TH 5:27!6 +1TH 5:27!7 +1TH 5:27!8 +1TH 5:27!9 +1TH 5:27!10 +1TH 5:28!1 +1TH 5:28!2 +1TH 5:28!3 +1TH 5:28!4 +1TH 5:28!5 +1TH 5:28!6 +1TH 5:28!7 +1TH 5:28!8 +1TH 5:28!9 +2TH 1:1!1 +2TH 1:1!2 +2TH 1:1!3 +2TH 1:1!4 +2TH 1:1!5 +2TH 1:1!6 +2TH 1:1!7 +2TH 1:1!8 +2TH 1:1!9 +2TH 1:1!10 +2TH 1:1!11 +2TH 1:1!12 +2TH 1:1!13 +2TH 1:1!14 +2TH 1:1!15 +2TH 1:1!16 +2TH 1:2!2 +2TH 1:2!1 +2TH 1:2!3 +2TH 1:2!4 +2TH 1:2!5 +2TH 1:2!6 +2TH 1:2!7 +2TH 1:2!8 +2TH 1:2!9 +2TH 1:2!10 +2TH 1:2!11 +2TH 1:3!8 +2TH 1:3!2 +2TH 1:3!1 +2TH 1:3!3 +2TH 1:3!4 +2TH 1:3!5 +2TH 1:3!6 +2TH 1:3!7 +2TH 1:3!9 +2TH 1:3!10 +2TH 1:3!11 +2TH 1:3!12 +2TH 1:3!13 +2TH 1:3!14 +2TH 1:3!15 +2TH 1:3!16 +2TH 1:3!17 +2TH 1:3!18 +2TH 1:3!19 +2TH 1:3!20 +2TH 1:3!21 +2TH 1:3!22 +2TH 1:3!23 +2TH 1:3!24 +2TH 1:3!25 +2TH 1:3!26 +2TH 1:4!1 +2TH 1:4!2 +2TH 1:4!3 +2TH 1:4!4 +2TH 1:4!5 +2TH 1:4!6 +2TH 1:4!7 +2TH 1:4!8 +2TH 1:4!9 +2TH 1:4!10 +2TH 1:4!11 +2TH 1:4!12 +2TH 1:4!13 +2TH 1:4!14 +2TH 1:4!15 +2TH 1:4!16 +2TH 1:4!17 +2TH 1:4!18 +2TH 1:4!19 +2TH 1:4!20 +2TH 1:4!21 +2TH 1:4!22 +2TH 1:4!23 +2TH 1:4!24 +2TH 1:4!25 +2TH 1:4!26 +2TH 1:4!27 +2TH 1:5!1 +2TH 1:5!2 +2TH 1:5!3 +2TH 1:5!4 +2TH 1:5!5 +2TH 1:5!6 +2TH 1:5!7 +2TH 1:5!8 +2TH 1:5!9 +2TH 1:5!10 +2TH 1:5!11 +2TH 1:5!12 +2TH 1:5!13 +2TH 1:5!14 +2TH 1:5!15 +2TH 1:5!16 +2TH 1:5!17 +2TH 1:5!18 +2TH 1:6!1 +2TH 1:6!2 +2TH 1:6!3 +2TH 1:6!4 +2TH 1:6!5 +2TH 1:6!6 +2TH 1:6!7 +2TH 1:6!8 +2TH 1:6!9 +2TH 1:7!1 +2TH 1:7!2 +2TH 1:7!3 +2TH 1:7!4 +2TH 1:7!5 +2TH 1:7!6 +2TH 1:7!7 +2TH 1:7!8 +2TH 1:7!9 +2TH 1:7!10 +2TH 1:7!11 +2TH 1:7!12 +2TH 1:7!13 +2TH 1:7!14 +2TH 1:7!15 +2TH 1:7!16 +2TH 1:7!17 +2TH 1:7!18 +2TH 1:7!19 +2TH 1:8!1 +2TH 1:8!2 +2TH 1:8!3 +2TH 1:8!4 +2TH 1:8!5 +2TH 1:8!6 +2TH 1:8!7 +2TH 1:8!8 +2TH 1:8!9 +2TH 1:8!10 +2TH 1:8!11 +2TH 1:8!12 +2TH 1:8!13 +2TH 1:8!14 +2TH 1:8!15 +2TH 1:8!16 +2TH 1:8!17 +2TH 1:8!18 +2TH 1:8!19 +2TH 1:9!1 +2TH 1:9!3 +2TH 1:9!2 +2TH 1:9!4 +2TH 1:9!5 +2TH 1:9!6 +2TH 1:9!7 +2TH 1:9!8 +2TH 1:9!9 +2TH 1:9!10 +2TH 1:9!11 +2TH 1:9!12 +2TH 1:9!13 +2TH 1:9!14 +2TH 1:9!15 +2TH 1:9!16 +2TH 1:10!1 +2TH 1:10!2 +2TH 1:10!3 +2TH 1:10!4 +2TH 1:10!5 +2TH 1:10!6 +2TH 1:10!7 +2TH 1:10!8 +2TH 1:10!9 +2TH 1:10!10 +2TH 1:10!11 +2TH 1:10!12 +2TH 1:10!13 +2TH 1:10!21 +2TH 1:10!22 +2TH 1:10!23 +2TH 1:10!24 +2TH 1:10!14 +2TH 1:10!15 +2TH 1:10!16 +2TH 1:10!17 +2TH 1:10!18 +2TH 1:10!19 +2TH 1:10!20 +2TH 1:11!1 +2TH 1:11!2 +2TH 1:11!3 +2TH 1:11!4 +2TH 1:11!5 +2TH 1:11!6 +2TH 1:11!7 +2TH 1:11!8 +2TH 1:11!9 +2TH 1:11!10 +2TH 1:11!11 +2TH 1:11!12 +2TH 1:11!13 +2TH 1:11!14 +2TH 1:11!15 +2TH 1:11!16 +2TH 1:11!17 +2TH 1:11!18 +2TH 1:11!19 +2TH 1:11!20 +2TH 1:11!21 +2TH 1:11!22 +2TH 1:11!23 +2TH 1:11!24 +2TH 1:11!25 +2TH 1:12!1 +2TH 1:12!2 +2TH 1:12!3 +2TH 1:12!4 +2TH 1:12!5 +2TH 1:12!6 +2TH 1:12!7 +2TH 1:12!8 +2TH 1:12!9 +2TH 1:12!10 +2TH 1:12!11 +2TH 1:12!12 +2TH 1:12!13 +2TH 1:12!14 +2TH 1:12!15 +2TH 1:12!16 +2TH 1:12!17 +2TH 1:12!18 +2TH 1:12!19 +2TH 1:12!20 +2TH 1:12!21 +2TH 1:12!22 +2TH 1:12!23 +2TH 1:12!24 +2TH 2:1!2 +2TH 2:1!4 +2TH 2:1!1 +2TH 2:1!3 +2TH 2:1!5 +2TH 2:1!6 +2TH 2:1!7 +2TH 2:1!8 +2TH 2:1!9 +2TH 2:1!10 +2TH 2:1!11 +2TH 2:1!12 +2TH 2:1!13 +2TH 2:1!14 +2TH 2:1!15 +2TH 2:1!16 +2TH 2:1!17 +2TH 2:2!1 +2TH 2:2!2 +2TH 2:2!3 +2TH 2:2!4 +2TH 2:2!5 +2TH 2:2!6 +2TH 2:2!7 +2TH 2:2!8 +2TH 2:2!9 +2TH 2:2!10 +2TH 2:2!11 +2TH 2:2!12 +2TH 2:2!13 +2TH 2:2!14 +2TH 2:2!15 +2TH 2:2!16 +2TH 2:2!17 +2TH 2:2!18 +2TH 2:2!19 +2TH 2:2!20 +2TH 2:2!21 +2TH 2:2!22 +2TH 2:2!23 +2TH 2:2!24 +2TH 2:2!25 +2TH 2:2!26 +2TH 2:2!27 +2TH 2:2!28 +2TH 2:2!29 +2TH 2:2!30 +2TH 2:3!1 +2TH 2:3!2 +2TH 2:3!3 +2TH 2:3!4 +2TH 2:3!5 +2TH 2:3!6 +2TH 2:3!7 +2TH 2:3!8 +2TH 2:3!9 +2TH 2:3!10 +2TH 2:3!11 +2TH 2:3!12 +2TH 2:3!13 +2TH 2:3!14 +2TH 2:3!15 +2TH 2:3!16 +2TH 2:3!17 +2TH 2:3!18 +2TH 2:3!19 +2TH 2:3!20 +2TH 2:3!21 +2TH 2:3!22 +2TH 2:3!23 +2TH 2:3!24 +2TH 2:4!1 +2TH 2:4!2 +2TH 2:4!3 +2TH 2:4!4 +2TH 2:4!5 +2TH 2:4!6 +2TH 2:4!7 +2TH 2:4!8 +2TH 2:4!9 +2TH 2:4!10 +2TH 2:4!11 +2TH 2:4!12 +2TH 2:4!13 +2TH 2:4!14 +2TH 2:4!15 +2TH 2:4!16 +2TH 2:4!17 +2TH 2:4!18 +2TH 2:4!19 +2TH 2:4!20 +2TH 2:4!21 +2TH 2:4!22 +2TH 2:4!23 +2TH 2:5!1 +2TH 2:5!2 +2TH 2:5!3 +2TH 2:5!4 +2TH 2:5!5 +2TH 2:5!6 +2TH 2:5!7 +2TH 2:5!8 +2TH 2:5!9 +2TH 2:5!10 +2TH 2:6!1 +2TH 2:6!2 +2TH 2:6!3 +2TH 2:6!4 +2TH 2:6!5 +2TH 2:6!6 +2TH 2:6!7 +2TH 2:6!8 +2TH 2:6!9 +2TH 2:6!10 +2TH 2:6!11 +2TH 2:6!12 +2TH 2:6!13 +2TH 2:7!2 +2TH 2:7!1 +2TH 2:7!3 +2TH 2:7!6 +2TH 2:7!7 +2TH 2:7!4 +2TH 2:7!5 +2TH 2:7!8 +2TH 2:7!9 +2TH 2:7!10 +2TH 2:7!11 +2TH 2:7!12 +2TH 2:7!13 +2TH 2:7!14 +2TH 2:7!15 +2TH 2:8!1 +2TH 2:8!2 +2TH 2:8!3 +2TH 2:8!4 +2TH 2:8!5 +2TH 2:8!6 +2TH 2:8!7 +2TH 2:8!8 +2TH 2:8!9 +2TH 2:8!10 +2TH 2:8!11 +2TH 2:8!12 +2TH 2:8!13 +2TH 2:8!14 +2TH 2:8!15 +2TH 2:8!16 +2TH 2:8!17 +2TH 2:8!18 +2TH 2:8!19 +2TH 2:8!20 +2TH 2:8!21 +2TH 2:8!22 +2TH 2:9!1 +2TH 2:9!3 +2TH 2:9!4 +2TH 2:9!2 +2TH 2:9!5 +2TH 2:9!6 +2TH 2:9!7 +2TH 2:9!8 +2TH 2:9!9 +2TH 2:9!10 +2TH 2:9!11 +2TH 2:9!12 +2TH 2:9!13 +2TH 2:9!14 +2TH 2:9!15 +2TH 2:9!16 +2TH 2:10!1 +2TH 2:10!2 +2TH 2:10!3 +2TH 2:10!4 +2TH 2:10!5 +2TH 2:10!6 +2TH 2:10!7 +2TH 2:10!8 +2TH 2:10!9 +2TH 2:10!10 +2TH 2:10!11 +2TH 2:10!12 +2TH 2:10!13 +2TH 2:10!14 +2TH 2:10!15 +2TH 2:10!16 +2TH 2:10!17 +2TH 2:10!18 +2TH 2:10!19 +2TH 2:11!1 +2TH 2:11!2 +2TH 2:11!3 +2TH 2:11!4 +2TH 2:11!5 +2TH 2:11!6 +2TH 2:11!7 +2TH 2:11!8 +2TH 2:11!9 +2TH 2:11!10 +2TH 2:11!11 +2TH 2:11!12 +2TH 2:11!13 +2TH 2:11!14 +2TH 2:11!15 +2TH 2:12!1 +2TH 2:12!2 +2TH 2:12!3 +2TH 2:12!4 +2TH 2:12!5 +2TH 2:12!6 +2TH 2:12!7 +2TH 2:12!8 +2TH 2:12!9 +2TH 2:12!10 +2TH 2:12!11 +2TH 2:12!12 +2TH 2:13!2 +2TH 2:13!1 +2TH 2:13!3 +2TH 2:13!4 +2TH 2:13!5 +2TH 2:13!6 +2TH 2:13!7 +2TH 2:13!8 +2TH 2:13!9 +2TH 2:13!10 +2TH 2:13!11 +2TH 2:13!12 +2TH 2:13!13 +2TH 2:13!14 +2TH 2:13!15 +2TH 2:13!16 +2TH 2:13!17 +2TH 2:13!18 +2TH 2:13!19 +2TH 2:13!20 +2TH 2:13!21 +2TH 2:13!22 +2TH 2:13!23 +2TH 2:13!24 +2TH 2:13!25 +2TH 2:13!26 +2TH 2:13!27 +2TH 2:13!28 +2TH 2:14!1 +2TH 2:14!2 +2TH 2:14!3 +2TH 2:14!4 +2TH 2:14!5 +2TH 2:14!6 +2TH 2:14!7 +2TH 2:14!8 +2TH 2:14!9 +2TH 2:14!10 +2TH 2:14!11 +2TH 2:14!12 +2TH 2:14!13 +2TH 2:14!14 +2TH 2:14!15 +2TH 2:14!16 +2TH 2:14!17 +2TH 2:15!1 +2TH 2:15!2 +2TH 2:15!3 +2TH 2:15!4 +2TH 2:15!5 +2TH 2:15!6 +2TH 2:15!7 +2TH 2:15!8 +2TH 2:15!9 +2TH 2:15!10 +2TH 2:15!11 +2TH 2:15!12 +2TH 2:15!13 +2TH 2:15!14 +2TH 2:15!15 +2TH 2:15!16 +2TH 2:15!17 +2TH 2:16!2 +2TH 2:16!1 +2TH 2:16!3 +2TH 2:16!4 +2TH 2:16!5 +2TH 2:16!6 +2TH 2:16!7 +2TH 2:16!8 +2TH 2:16!9 +2TH 2:16!10 +2TH 2:16!11 +2TH 2:16!12 +2TH 2:16!13 +2TH 2:16!14 +2TH 2:16!15 +2TH 2:16!16 +2TH 2:16!17 +2TH 2:16!18 +2TH 2:16!19 +2TH 2:16!20 +2TH 2:16!21 +2TH 2:16!22 +2TH 2:16!23 +2TH 2:16!24 +2TH 2:16!25 +2TH 2:17!1 +2TH 2:17!2 +2TH 2:17!3 +2TH 2:17!4 +2TH 2:17!5 +2TH 2:17!6 +2TH 2:17!7 +2TH 2:17!8 +2TH 2:17!9 +2TH 2:17!10 +2TH 2:17!11 +2TH 2:17!12 +2TH 3:1!4 +2TH 3:1!1 +2TH 3:1!2 +2TH 3:1!3 +2TH 3:1!5 +2TH 3:1!6 +2TH 3:1!7 +2TH 3:1!8 +2TH 3:1!9 +2TH 3:1!10 +2TH 3:1!11 +2TH 3:1!12 +2TH 3:1!13 +2TH 3:1!14 +2TH 3:1!15 +2TH 3:1!16 +2TH 3:1!17 +2TH 3:1!18 +2TH 3:2!1 +2TH 3:2!2 +2TH 3:2!3 +2TH 3:2!4 +2TH 3:2!5 +2TH 3:2!6 +2TH 3:2!7 +2TH 3:2!8 +2TH 3:2!9 +2TH 3:2!11 +2TH 3:2!10 +2TH 3:2!12 +2TH 3:2!13 +2TH 3:2!14 +2TH 3:3!2 +2TH 3:3!1 +2TH 3:3!3 +2TH 3:3!4 +2TH 3:3!5 +2TH 3:3!6 +2TH 3:3!7 +2TH 3:3!8 +2TH 3:3!9 +2TH 3:3!10 +2TH 3:3!11 +2TH 3:3!12 +2TH 3:3!13 +2TH 3:4!2 +2TH 3:4!1 +2TH 3:4!3 +2TH 3:4!4 +2TH 3:4!5 +2TH 3:4!6 +2TH 3:4!7 +2TH 3:4!8 +2TH 3:4!9 +2TH 3:4!10 +2TH 3:4!11 +2TH 3:4!12 +2TH 3:4!13 +2TH 3:5!2 +2TH 3:5!1 +2TH 3:5!3 +2TH 3:5!4 +2TH 3:5!5 +2TH 3:5!6 +2TH 3:5!7 +2TH 3:5!8 +2TH 3:5!9 +2TH 3:5!10 +2TH 3:5!11 +2TH 3:5!12 +2TH 3:5!13 +2TH 3:5!14 +2TH 3:5!15 +2TH 3:5!16 +2TH 3:5!17 +2TH 3:5!18 +2TH 3:6!2 +2TH 3:6!4 +2TH 3:6!1 +2TH 3:6!3 +2TH 3:6!5 +2TH 3:6!6 +2TH 3:6!7 +2TH 3:6!8 +2TH 3:6!9 +2TH 3:6!10 +2TH 3:6!11 +2TH 3:6!12 +2TH 3:6!13 +2TH 3:6!14 +2TH 3:6!15 +2TH 3:6!16 +2TH 3:6!17 +2TH 3:6!18 +2TH 3:6!19 +2TH 3:6!20 +2TH 3:6!21 +2TH 3:6!22 +2TH 3:6!23 +2TH 3:6!24 +2TH 3:6!25 +2TH 3:6!26 +2TH 3:7!2 +2TH 3:7!1 +2TH 3:7!3 +2TH 3:7!4 +2TH 3:7!5 +2TH 3:7!6 +2TH 3:7!7 +2TH 3:7!8 +2TH 3:7!9 +2TH 3:7!10 +2TH 3:7!11 +2TH 3:7!12 +2TH 3:8!1 +2TH 3:8!2 +2TH 3:8!3 +2TH 3:8!4 +2TH 3:8!5 +2TH 3:8!6 +2TH 3:8!7 +2TH 3:8!8 +2TH 3:8!9 +2TH 3:8!10 +2TH 3:8!11 +2TH 3:8!12 +2TH 3:8!13 +2TH 3:8!14 +2TH 3:8!15 +2TH 3:8!16 +2TH 3:8!17 +2TH 3:8!18 +2TH 3:8!19 +2TH 3:8!20 +2TH 3:8!21 +2TH 3:9!1 +2TH 3:9!2 +2TH 3:9!3 +2TH 3:9!4 +2TH 3:9!5 +2TH 3:9!6 +2TH 3:9!7 +2TH 3:9!8 +2TH 3:9!9 +2TH 3:9!10 +2TH 3:9!11 +2TH 3:9!12 +2TH 3:9!13 +2TH 3:9!14 +2TH 3:9!15 +2TH 3:10!2 +2TH 3:10!1 +2TH 3:10!3 +2TH 3:10!4 +2TH 3:10!5 +2TH 3:10!6 +2TH 3:10!7 +2TH 3:10!8 +2TH 3:10!9 +2TH 3:10!10 +2TH 3:10!11 +2TH 3:10!12 +2TH 3:10!13 +2TH 3:10!14 +2TH 3:10!15 +2TH 3:10!16 +2TH 3:10!17 +2TH 3:11!2 +2TH 3:11!1 +2TH 3:11!3 +2TH 3:11!4 +2TH 3:11!5 +2TH 3:11!6 +2TH 3:11!7 +2TH 3:11!8 +2TH 3:11!9 +2TH 3:11!10 +2TH 3:11!11 +2TH 3:12!2 +2TH 3:12!1 +2TH 3:12!3 +2TH 3:12!4 +2TH 3:12!5 +2TH 3:12!6 +2TH 3:12!7 +2TH 3:12!8 +2TH 3:12!9 +2TH 3:12!10 +2TH 3:12!11 +2TH 3:12!12 +2TH 3:12!13 +2TH 3:12!14 +2TH 3:12!15 +2TH 3:12!16 +2TH 3:12!17 +2TH 3:12!18 +2TH 3:13!2 +2TH 3:13!3 +2TH 3:13!1 +2TH 3:13!4 +2TH 3:13!5 +2TH 3:13!6 +2TH 3:14!2 +2TH 3:14!1 +2TH 3:14!3 +2TH 3:14!4 +2TH 3:14!5 +2TH 3:14!6 +2TH 3:14!7 +2TH 3:14!8 +2TH 3:14!9 +2TH 3:14!10 +2TH 3:14!11 +2TH 3:14!12 +2TH 3:14!13 +2TH 3:14!14 +2TH 3:14!15 +2TH 3:14!16 +2TH 3:14!17 +2TH 3:14!18 +2TH 3:15!1 +2TH 3:15!2 +2TH 3:15!3 +2TH 3:15!4 +2TH 3:15!5 +2TH 3:15!6 +2TH 3:15!7 +2TH 3:15!8 +2TH 3:15!9 +2TH 3:16!2 +2TH 3:16!1 +2TH 3:16!3 +2TH 3:16!4 +2TH 3:16!5 +2TH 3:16!6 +2TH 3:16!7 +2TH 3:16!8 +2TH 3:16!9 +2TH 3:16!10 +2TH 3:16!11 +2TH 3:16!12 +2TH 3:16!13 +2TH 3:16!14 +2TH 3:16!15 +2TH 3:16!16 +2TH 3:16!17 +2TH 3:16!18 +2TH 3:16!19 +2TH 3:16!20 +2TH 3:17!1 +2TH 3:17!2 +2TH 3:17!3 +2TH 3:17!4 +2TH 3:17!5 +2TH 3:17!6 +2TH 3:17!7 +2TH 3:17!8 +2TH 3:17!9 +2TH 3:17!10 +2TH 3:17!11 +2TH 3:17!12 +2TH 3:17!13 +2TH 3:17!14 +2TH 3:18!1 +2TH 3:18!2 +2TH 3:18!3 +2TH 3:18!4 +2TH 3:18!5 +2TH 3:18!6 +2TH 3:18!7 +2TH 3:18!8 +2TH 3:18!9 +2TH 3:18!10 +1TI 1:1!1 +1TI 1:1!2 +1TI 1:1!3 +1TI 1:1!4 +1TI 1:1!5 +1TI 1:1!6 +1TI 1:1!7 +1TI 1:1!8 +1TI 1:1!9 +1TI 1:1!10 +1TI 1:1!11 +1TI 1:1!12 +1TI 1:1!13 +1TI 1:1!14 +1TI 1:1!15 +1TI 1:2!1 +1TI 1:2!2 +1TI 1:2!3 +1TI 1:2!4 +1TI 1:2!5 +1TI 1:2!6 +1TI 1:2!7 +1TI 1:2!8 +1TI 1:2!9 +1TI 1:2!10 +1TI 1:2!11 +1TI 1:2!12 +1TI 1:2!13 +1TI 1:2!14 +1TI 1:2!15 +1TI 1:2!16 +1TI 1:2!17 +1TI 1:3!1 +1TI 1:3!2 +1TI 1:3!3 +1TI 1:3!4 +1TI 1:3!5 +1TI 1:3!6 +1TI 1:3!7 +1TI 1:3!8 +1TI 1:3!9 +1TI 1:3!10 +1TI 1:3!11 +1TI 1:3!12 +1TI 1:3!13 +1TI 1:3!14 +1TI 1:4!1 +1TI 1:4!2 +1TI 1:4!3 +1TI 1:4!4 +1TI 1:4!5 +1TI 1:4!6 +1TI 1:4!7 +1TI 1:4!8 +1TI 1:4!9 +1TI 1:4!10 +1TI 1:4!11 +1TI 1:4!12 +1TI 1:4!13 +1TI 1:4!14 +1TI 1:4!15 +1TI 1:4!16 +1TI 1:5!2 +1TI 1:5!1 +1TI 1:5!3 +1TI 1:5!4 +1TI 1:5!5 +1TI 1:5!6 +1TI 1:5!7 +1TI 1:5!8 +1TI 1:5!9 +1TI 1:5!10 +1TI 1:5!11 +1TI 1:5!12 +1TI 1:5!13 +1TI 1:5!14 +1TI 1:5!15 +1TI 1:5!16 +1TI 1:6!1 +1TI 1:6!3 +1TI 1:6!2 +1TI 1:6!4 +1TI 1:6!5 +1TI 1:6!6 +1TI 1:7!1 +1TI 1:7!2 +1TI 1:7!3 +1TI 1:7!4 +1TI 1:7!5 +1TI 1:7!6 +1TI 1:7!7 +1TI 1:7!8 +1TI 1:7!9 +1TI 1:7!10 +1TI 1:7!11 +1TI 1:7!12 +1TI 1:8!2 +1TI 1:8!1 +1TI 1:8!3 +1TI 1:8!4 +1TI 1:8!5 +1TI 1:8!6 +1TI 1:8!7 +1TI 1:8!8 +1TI 1:8!9 +1TI 1:8!10 +1TI 1:8!11 +1TI 1:9!1 +1TI 1:9!2 +1TI 1:9!3 +1TI 1:9!6 +1TI 1:9!4 +1TI 1:9!5 +1TI 1:9!7 +1TI 1:9!9 +1TI 1:9!8 +1TI 1:9!10 +1TI 1:9!11 +1TI 1:9!12 +1TI 1:9!13 +1TI 1:9!14 +1TI 1:9!15 +1TI 1:9!16 +1TI 1:9!17 +1TI 1:9!18 +1TI 1:9!19 +1TI 1:9!20 +1TI 1:9!21 +1TI 1:10!1 +1TI 1:10!2 +1TI 1:10!3 +1TI 1:10!4 +1TI 1:10!5 +1TI 1:10!6 +1TI 1:10!7 +1TI 1:10!8 +1TI 1:10!9 +1TI 1:10!13 +1TI 1:10!10 +1TI 1:10!11 +1TI 1:10!12 +1TI 1:11!1 +1TI 1:11!2 +1TI 1:11!3 +1TI 1:11!4 +1TI 1:11!5 +1TI 1:11!6 +1TI 1:11!7 +1TI 1:11!8 +1TI 1:11!9 +1TI 1:11!10 +1TI 1:11!11 +1TI 1:12!1 +1TI 1:12!2 +1TI 1:12!3 +1TI 1:12!4 +1TI 1:12!5 +1TI 1:12!6 +1TI 1:12!7 +1TI 1:12!8 +1TI 1:12!9 +1TI 1:12!10 +1TI 1:12!11 +1TI 1:12!12 +1TI 1:12!13 +1TI 1:12!14 +1TI 1:12!15 +1TI 1:12!16 +1TI 1:12!17 +1TI 1:13!1 +1TI 1:13!2 +1TI 1:13!3 +1TI 1:13!4 +1TI 1:13!5 +1TI 1:13!6 +1TI 1:13!7 +1TI 1:13!8 +1TI 1:13!9 +1TI 1:13!10 +1TI 1:13!11 +1TI 1:13!12 +1TI 1:13!13 +1TI 1:13!14 +1TI 1:13!15 +1TI 1:14!2 +1TI 1:14!1 +1TI 1:14!3 +1TI 1:14!4 +1TI 1:14!5 +1TI 1:14!6 +1TI 1:14!7 +1TI 1:14!8 +1TI 1:14!9 +1TI 1:14!10 +1TI 1:14!11 +1TI 1:14!12 +1TI 1:14!13 +1TI 1:14!14 +1TI 1:14!15 +1TI 1:15!2 +1TI 1:15!3 +1TI 1:15!1 +1TI 1:15!4 +1TI 1:15!5 +1TI 1:15!6 +1TI 1:15!7 +1TI 1:15!8 +1TI 1:15!9 +1TI 1:15!10 +1TI 1:15!11 +1TI 1:15!12 +1TI 1:15!13 +1TI 1:15!14 +1TI 1:15!15 +1TI 1:15!16 +1TI 1:15!17 +1TI 1:15!18 +1TI 1:15!19 +1TI 1:15!20 +1TI 1:16!1 +1TI 1:16!2 +1TI 1:16!3 +1TI 1:16!4 +1TI 1:16!5 +1TI 1:16!6 +1TI 1:16!7 +1TI 1:16!8 +1TI 1:16!9 +1TI 1:16!10 +1TI 1:16!11 +1TI 1:16!12 +1TI 1:16!13 +1TI 1:16!14 +1TI 1:16!15 +1TI 1:16!16 +1TI 1:16!17 +1TI 1:16!18 +1TI 1:16!19 +1TI 1:16!20 +1TI 1:16!21 +1TI 1:16!22 +1TI 1:16!23 +1TI 1:16!24 +1TI 1:17!2 +1TI 1:17!1 +1TI 1:17!3 +1TI 1:17!4 +1TI 1:17!5 +1TI 1:17!6 +1TI 1:17!7 +1TI 1:17!8 +1TI 1:17!9 +1TI 1:17!10 +1TI 1:17!11 +1TI 1:17!12 +1TI 1:17!13 +1TI 1:17!14 +1TI 1:17!15 +1TI 1:17!16 +1TI 1:17!17 +1TI 1:17!18 +1TI 1:18!6 +1TI 1:18!7 +1TI 1:18!1 +1TI 1:18!2 +1TI 1:18!3 +1TI 1:18!4 +1TI 1:18!5 +1TI 1:18!8 +1TI 1:18!9 +1TI 1:18!10 +1TI 1:18!11 +1TI 1:18!12 +1TI 1:18!13 +1TI 1:18!14 +1TI 1:18!15 +1TI 1:18!16 +1TI 1:18!17 +1TI 1:18!18 +1TI 1:18!19 +1TI 1:18!20 +1TI 1:19!1 +1TI 1:19!2 +1TI 1:19!3 +1TI 1:19!4 +1TI 1:19!5 +1TI 1:19!6 +1TI 1:19!8 +1TI 1:19!7 +1TI 1:19!9 +1TI 1:19!10 +1TI 1:19!11 +1TI 1:19!12 +1TI 1:20!1 +1TI 1:20!2 +1TI 1:20!3 +1TI 1:20!4 +1TI 1:20!5 +1TI 1:20!6 +1TI 1:20!7 +1TI 1:20!8 +1TI 1:20!9 +1TI 1:20!10 +1TI 1:20!11 +1TI 1:20!12 +1TI 1:20!13 +1TI 2:1!2 +1TI 2:1!1 +1TI 2:1!3 +1TI 2:1!4 +1TI 2:1!5 +1TI 2:1!6 +1TI 2:1!7 +1TI 2:1!8 +1TI 2:1!9 +1TI 2:1!10 +1TI 2:1!11 +1TI 2:1!12 +1TI 2:2!1 +1TI 2:2!2 +1TI 2:2!3 +1TI 2:2!4 +1TI 2:2!5 +1TI 2:2!6 +1TI 2:2!7 +1TI 2:2!8 +1TI 2:2!9 +1TI 2:2!10 +1TI 2:2!11 +1TI 2:2!12 +1TI 2:2!13 +1TI 2:2!14 +1TI 2:2!15 +1TI 2:2!16 +1TI 2:2!17 +1TI 2:2!18 +1TI 2:2!19 +1TI 2:3!1 +1TI 2:3!2 +1TI 2:3!3 +1TI 2:3!4 +1TI 2:3!5 +1TI 2:3!6 +1TI 2:3!7 +1TI 2:3!8 +1TI 2:3!9 +1TI 2:4!1 +1TI 2:4!4 +1TI 2:4!2 +1TI 2:4!3 +1TI 2:4!5 +1TI 2:4!6 +1TI 2:4!7 +1TI 2:4!8 +1TI 2:4!9 +1TI 2:4!10 +1TI 2:5!2 +1TI 2:5!1 +1TI 2:5!3 +1TI 2:5!4 +1TI 2:5!5 +1TI 2:5!6 +1TI 2:5!7 +1TI 2:5!8 +1TI 2:5!9 +1TI 2:5!10 +1TI 2:5!11 +1TI 2:5!12 +1TI 2:6!1 +1TI 2:6!2 +1TI 2:6!3 +1TI 2:6!4 +1TI 2:6!5 +1TI 2:6!6 +1TI 2:6!7 +1TI 2:6!8 +1TI 2:6!9 +1TI 2:6!10 +1TI 2:7!1 +1TI 2:7!2 +1TI 2:7!3 +1TI 2:7!4 +1TI 2:7!5 +1TI 2:7!6 +1TI 2:7!7 +1TI 2:7!12 +1TI 2:7!13 +1TI 2:7!14 +1TI 2:7!15 +1TI 2:7!16 +1TI 2:7!17 +1TI 2:7!8 +1TI 2:7!9 +1TI 2:7!10 +1TI 2:7!11 +1TI 2:8!2 +1TI 2:8!1 +1TI 2:8!3 +1TI 2:8!4 +1TI 2:8!5 +1TI 2:8!6 +1TI 2:8!7 +1TI 2:8!8 +1TI 2:8!9 +1TI 2:8!10 +1TI 2:8!11 +1TI 2:8!12 +1TI 2:8!13 +1TI 2:8!14 +1TI 2:8!15 +1TI 2:9!1 +1TI 2:9!2 +1TI 2:9!3 +1TI 2:9!4 +1TI 2:9!5 +1TI 2:9!6 +1TI 2:9!7 +1TI 2:9!8 +1TI 2:9!9 +1TI 2:9!10 +1TI 2:9!11 +1TI 2:9!12 +1TI 2:9!13 +1TI 2:9!14 +1TI 2:9!15 +1TI 2:9!16 +1TI 2:9!17 +1TI 2:9!18 +1TI 2:9!19 +1TI 2:9!20 +1TI 2:9!21 +1TI 2:10!1 +1TI 2:10!7 +1TI 2:10!2 +1TI 2:10!3 +1TI 2:10!4 +1TI 2:10!5 +1TI 2:10!6 +1TI 2:10!8 +1TI 2:10!9 +1TI 2:11!1 +1TI 2:11!2 +1TI 2:11!3 +1TI 2:11!4 +1TI 2:11!5 +1TI 2:11!6 +1TI 2:11!7 +1TI 2:12!2 +1TI 2:12!5 +1TI 2:12!4 +1TI 2:12!1 +1TI 2:12!3 +1TI 2:12!6 +1TI 2:12!7 +1TI 2:12!8 +1TI 2:12!9 +1TI 2:12!10 +1TI 2:12!11 +1TI 2:12!12 +1TI 2:13!2 +1TI 2:13!1 +1TI 2:13!3 +1TI 2:13!4 +1TI 2:13!5 +1TI 2:13!6 +1TI 2:14!1 +1TI 2:14!2 +1TI 2:14!3 +1TI 2:14!4 +1TI 2:14!6 +1TI 2:14!5 +1TI 2:14!7 +1TI 2:14!8 +1TI 2:14!9 +1TI 2:14!10 +1TI 2:14!11 +1TI 2:15!2 +1TI 2:15!1 +1TI 2:15!3 +1TI 2:15!4 +1TI 2:15!5 +1TI 2:15!6 +1TI 2:15!7 +1TI 2:15!8 +1TI 2:15!9 +1TI 2:15!10 +1TI 2:15!11 +1TI 2:15!12 +1TI 2:15!13 +1TI 2:15!14 +1TI 2:15!15 +1TI 3:1!1 +1TI 3:1!2 +1TI 3:1!3 +1TI 3:1!4 +1TI 3:1!5 +1TI 3:1!6 +1TI 3:1!7 +1TI 3:1!8 +1TI 3:1!9 +1TI 3:1!10 +1TI 3:2!2 +1TI 3:2!1 +1TI 3:2!3 +1TI 3:2!4 +1TI 3:2!6 +1TI 3:2!5 +1TI 3:2!7 +1TI 3:2!8 +1TI 3:2!9 +1TI 3:2!10 +1TI 3:2!11 +1TI 3:2!12 +1TI 3:2!13 +1TI 3:2!14 +1TI 3:3!1 +1TI 3:3!2 +1TI 3:3!3 +1TI 3:3!4 +1TI 3:3!5 +1TI 3:3!6 +1TI 3:3!7 +1TI 3:3!8 +1TI 3:4!1 +1TI 3:4!2 +1TI 3:4!3 +1TI 3:4!4 +1TI 3:4!5 +1TI 3:4!6 +1TI 3:4!7 +1TI 3:4!8 +1TI 3:4!9 +1TI 3:4!10 +1TI 3:4!11 +1TI 3:4!12 +1TI 3:5!2 +1TI 3:5!1 +1TI 3:5!3 +1TI 3:5!4 +1TI 3:5!5 +1TI 3:5!6 +1TI 3:5!7 +1TI 3:5!8 +1TI 3:5!9 +1TI 3:5!10 +1TI 3:5!11 +1TI 3:5!12 +1TI 3:5!13 +1TI 3:6!1 +1TI 3:6!2 +1TI 3:6!3 +1TI 3:6!4 +1TI 3:6!5 +1TI 3:6!6 +1TI 3:6!7 +1TI 3:6!9 +1TI 3:6!10 +1TI 3:6!8 +1TI 3:7!2 +1TI 3:7!1 +1TI 3:7!3 +1TI 3:7!4 +1TI 3:7!5 +1TI 3:7!6 +1TI 3:7!7 +1TI 3:7!8 +1TI 3:7!9 +1TI 3:7!10 +1TI 3:7!11 +1TI 3:7!14 +1TI 3:7!12 +1TI 3:7!13 +1TI 3:7!15 +1TI 3:7!16 +1TI 3:7!17 +1TI 3:7!18 +1TI 3:8!2 +1TI 3:8!1 +1TI 3:8!3 +1TI 3:8!4 +1TI 3:8!5 +1TI 3:8!6 +1TI 3:8!7 +1TI 3:8!8 +1TI 3:8!9 +1TI 3:8!10 +1TI 3:8!11 +1TI 3:9!1 +1TI 3:9!2 +1TI 3:9!3 +1TI 3:9!4 +1TI 3:9!5 +1TI 3:9!6 +1TI 3:9!7 +1TI 3:9!8 +1TI 3:10!3 +1TI 3:10!1 +1TI 3:10!2 +1TI 3:10!4 +1TI 3:10!5 +1TI 3:10!6 +1TI 3:10!7 +1TI 3:10!8 +1TI 3:10!9 +1TI 3:11!2 +1TI 3:11!1 +1TI 3:11!3 +1TI 3:11!4 +1TI 3:11!5 +1TI 3:11!6 +1TI 3:11!7 +1TI 3:11!8 +1TI 3:11!9 +1TI 3:12!1 +1TI 3:12!2 +1TI 3:12!3 +1TI 3:12!4 +1TI 3:12!5 +1TI 3:12!7 +1TI 3:12!8 +1TI 3:12!6 +1TI 3:12!9 +1TI 3:12!10 +1TI 3:12!11 +1TI 3:12!12 +1TI 3:13!2 +1TI 3:13!1 +1TI 3:13!3 +1TI 3:13!4 +1TI 3:13!5 +1TI 3:13!7 +1TI 3:13!6 +1TI 3:13!8 +1TI 3:13!9 +1TI 3:13!10 +1TI 3:13!11 +1TI 3:13!12 +1TI 3:13!13 +1TI 3:13!14 +1TI 3:13!15 +1TI 3:13!16 +1TI 3:13!17 +1TI 3:14!1 +1TI 3:14!2 +1TI 3:14!3 +1TI 3:14!4 +1TI 3:14!5 +1TI 3:14!6 +1TI 3:14!7 +1TI 3:14!8 +1TI 3:15!2 +1TI 3:15!1 +1TI 3:15!3 +1TI 3:15!4 +1TI 3:15!5 +1TI 3:15!6 +1TI 3:15!7 +1TI 3:15!11 +1TI 3:15!8 +1TI 3:15!9 +1TI 3:15!10 +1TI 3:15!12 +1TI 3:15!13 +1TI 3:15!14 +1TI 3:15!15 +1TI 3:15!16 +1TI 3:15!17 +1TI 3:15!18 +1TI 3:15!19 +1TI 3:15!20 +1TI 3:15!21 +1TI 3:16!1 +1TI 3:16!2 +1TI 3:16!3 +1TI 3:16!4 +1TI 3:16!5 +1TI 3:16!6 +1TI 3:16!7 +1TI 3:16!8 +1TI 3:16!9 +1TI 3:16!10 +1TI 3:16!11 +1TI 3:16!12 +1TI 3:16!13 +1TI 3:16!14 +1TI 3:16!15 +1TI 3:16!16 +1TI 3:16!17 +1TI 3:16!18 +1TI 3:16!19 +1TI 3:16!20 +1TI 3:16!21 +1TI 3:16!22 +1TI 3:16!23 +1TI 3:16!24 +1TI 3:16!25 +1TI 3:16!26 +1TI 4:1!2 +1TI 4:1!1 +1TI 4:1!3 +1TI 4:1!4 +1TI 4:1!5 +1TI 4:1!6 +1TI 4:1!7 +1TI 4:1!8 +1TI 4:1!9 +1TI 4:1!10 +1TI 4:1!11 +1TI 4:1!12 +1TI 4:1!13 +1TI 4:1!14 +1TI 4:1!15 +1TI 4:1!16 +1TI 4:1!17 +1TI 4:1!18 +1TI 4:1!19 +1TI 4:2!1 +1TI 4:2!2 +1TI 4:2!3 +1TI 4:2!4 +1TI 4:2!5 +1TI 4:2!6 +1TI 4:2!7 +1TI 4:3!1 +1TI 4:3!2 +1TI 4:3!3 +1TI 4:3!4 +1TI 4:3!5 +1TI 4:3!6 +1TI 4:3!7 +1TI 4:3!8 +1TI 4:3!9 +1TI 4:3!10 +1TI 4:3!11 +1TI 4:3!12 +1TI 4:3!13 +1TI 4:3!14 +1TI 4:3!15 +1TI 4:3!16 +1TI 4:3!17 +1TI 4:3!18 +1TI 4:4!1 +1TI 4:4!2 +1TI 4:4!3 +1TI 4:4!4 +1TI 4:4!5 +1TI 4:4!6 +1TI 4:4!7 +1TI 4:4!8 +1TI 4:4!9 +1TI 4:4!10 +1TI 4:4!11 +1TI 4:5!2 +1TI 4:5!1 +1TI 4:5!3 +1TI 4:5!4 +1TI 4:5!5 +1TI 4:5!6 +1TI 4:5!7 +1TI 4:6!1 +1TI 4:6!2 +1TI 4:6!3 +1TI 4:6!4 +1TI 4:6!6 +1TI 4:6!5 +1TI 4:6!7 +1TI 4:6!8 +1TI 4:6!9 +1TI 4:6!10 +1TI 4:6!11 +1TI 4:6!12 +1TI 4:6!13 +1TI 4:6!14 +1TI 4:6!15 +1TI 4:6!16 +1TI 4:6!17 +1TI 4:6!18 +1TI 4:6!19 +1TI 4:6!20 +1TI 4:7!2 +1TI 4:7!1 +1TI 4:7!3 +1TI 4:7!4 +1TI 4:7!5 +1TI 4:7!6 +1TI 4:7!7 +1TI 4:7!9 +1TI 4:7!8 +1TI 4:7!10 +1TI 4:7!11 +1TI 4:7!12 +1TI 4:8!2 +1TI 4:8!1 +1TI 4:8!3 +1TI 4:8!4 +1TI 4:8!5 +1TI 4:8!6 +1TI 4:8!7 +1TI 4:8!8 +1TI 4:8!10 +1TI 4:8!9 +1TI 4:8!11 +1TI 4:8!12 +1TI 4:8!13 +1TI 4:8!14 +1TI 4:8!15 +1TI 4:8!17 +1TI 4:8!16 +1TI 4:8!18 +1TI 4:8!19 +1TI 4:8!20 +1TI 4:8!21 +1TI 4:8!22 +1TI 4:8!23 +1TI 4:9!2 +1TI 4:9!3 +1TI 4:9!1 +1TI 4:9!4 +1TI 4:9!5 +1TI 4:9!6 +1TI 4:9!7 +1TI 4:10!3 +1TI 4:10!1 +1TI 4:10!2 +1TI 4:10!4 +1TI 4:10!5 +1TI 4:10!6 +1TI 4:10!7 +1TI 4:10!8 +1TI 4:10!9 +1TI 4:10!10 +1TI 4:10!11 +1TI 4:10!12 +1TI 4:10!13 +1TI 4:10!14 +1TI 4:10!15 +1TI 4:10!16 +1TI 4:10!17 +1TI 4:10!18 +1TI 4:11!2 +1TI 4:11!1 +1TI 4:11!3 +1TI 4:11!4 +1TI 4:12!1 +1TI 4:12!2 +1TI 4:12!3 +1TI 4:12!4 +1TI 4:12!5 +1TI 4:12!6 +1TI 4:12!8 +1TI 4:12!7 +1TI 4:12!9 +1TI 4:12!10 +1TI 4:12!11 +1TI 4:12!12 +1TI 4:12!13 +1TI 4:12!14 +1TI 4:12!15 +1TI 4:12!16 +1TI 4:12!17 +1TI 4:12!18 +1TI 4:12!19 +1TI 4:12!20 +1TI 4:13!1 +1TI 4:13!2 +1TI 4:13!3 +1TI 4:13!4 +1TI 4:13!5 +1TI 4:13!6 +1TI 4:13!7 +1TI 4:13!8 +1TI 4:13!9 +1TI 4:14!1 +1TI 4:14!2 +1TI 4:14!3 +1TI 4:14!4 +1TI 4:14!5 +1TI 4:14!6 +1TI 4:14!7 +1TI 4:14!8 +1TI 4:14!9 +1TI 4:14!10 +1TI 4:14!11 +1TI 4:14!12 +1TI 4:14!13 +1TI 4:14!14 +1TI 4:14!15 +1TI 4:14!16 +1TI 4:14!17 +1TI 4:15!1 +1TI 4:15!2 +1TI 4:15!3 +1TI 4:15!4 +1TI 4:15!5 +1TI 4:15!6 +1TI 4:15!7 +1TI 4:15!8 +1TI 4:15!9 +1TI 4:15!10 +1TI 4:15!11 +1TI 4:15!12 +1TI 4:16!1 +1TI 4:16!2 +1TI 4:16!3 +1TI 4:16!4 +1TI 4:16!5 +1TI 4:16!6 +1TI 4:16!7 +1TI 4:16!9 +1TI 4:16!8 +1TI 4:16!10 +1TI 4:16!13 +1TI 4:16!11 +1TI 4:16!12 +1TI 4:16!14 +1TI 4:16!15 +1TI 4:16!16 +1TI 4:16!17 +1TI 5:1!1 +1TI 5:1!2 +1TI 5:1!3 +1TI 5:1!4 +1TI 5:1!5 +1TI 5:1!6 +1TI 5:1!7 +1TI 5:1!8 +1TI 5:1!9 +1TI 5:1!10 +1TI 5:2!1 +1TI 5:2!2 +1TI 5:2!3 +1TI 5:2!4 +1TI 5:2!5 +1TI 5:2!6 +1TI 5:2!7 +1TI 5:2!8 +1TI 5:2!9 +1TI 5:3!2 +1TI 5:3!1 +1TI 5:3!3 +1TI 5:3!4 +1TI 5:3!5 +1TI 5:4!2 +1TI 5:4!1 +1TI 5:4!3 +1TI 5:4!4 +1TI 5:4!5 +1TI 5:4!6 +1TI 5:4!7 +1TI 5:4!8 +1TI 5:4!9 +1TI 5:4!10 +1TI 5:4!11 +1TI 5:4!12 +1TI 5:4!13 +1TI 5:4!14 +1TI 5:4!15 +1TI 5:4!16 +1TI 5:4!17 +1TI 5:4!18 +1TI 5:4!19 +1TI 5:4!21 +1TI 5:4!20 +1TI 5:4!22 +1TI 5:4!23 +1TI 5:4!24 +1TI 5:4!25 +1TI 5:4!26 +1TI 5:5!2 +1TI 5:5!1 +1TI 5:5!3 +1TI 5:5!4 +1TI 5:5!5 +1TI 5:5!6 +1TI 5:5!7 +1TI 5:5!8 +1TI 5:5!9 +1TI 5:5!10 +1TI 5:5!11 +1TI 5:5!12 +1TI 5:5!13 +1TI 5:5!14 +1TI 5:5!15 +1TI 5:5!16 +1TI 5:5!17 +1TI 5:5!18 +1TI 5:5!19 +1TI 5:6!2 +1TI 5:6!1 +1TI 5:6!3 +1TI 5:6!4 +1TI 5:6!5 +1TI 5:7!1 +1TI 5:7!2 +1TI 5:7!3 +1TI 5:7!4 +1TI 5:7!5 +1TI 5:7!6 +1TI 5:8!2 +1TI 5:8!1 +1TI 5:8!3 +1TI 5:8!4 +1TI 5:8!5 +1TI 5:8!6 +1TI 5:8!7 +1TI 5:8!8 +1TI 5:8!9 +1TI 5:8!10 +1TI 5:8!11 +1TI 5:8!12 +1TI 5:8!13 +1TI 5:8!14 +1TI 5:8!15 +1TI 5:8!16 +1TI 5:8!17 +1TI 5:9!1 +1TI 5:9!2 +1TI 5:9!3 +1TI 5:9!4 +1TI 5:9!5 +1TI 5:9!6 +1TI 5:9!7 +1TI 5:9!8 +1TI 5:9!9 +1TI 5:9!10 +1TI 5:10!1 +1TI 5:10!2 +1TI 5:10!3 +1TI 5:10!4 +1TI 5:10!5 +1TI 5:10!6 +1TI 5:10!7 +1TI 5:10!8 +1TI 5:10!9 +1TI 5:10!10 +1TI 5:10!11 +1TI 5:10!12 +1TI 5:10!13 +1TI 5:10!14 +1TI 5:10!15 +1TI 5:10!16 +1TI 5:10!17 +1TI 5:10!18 +1TI 5:10!19 +1TI 5:10!20 +1TI 5:11!2 +1TI 5:11!1 +1TI 5:11!3 +1TI 5:11!4 +1TI 5:11!6 +1TI 5:11!5 +1TI 5:11!7 +1TI 5:11!8 +1TI 5:11!9 +1TI 5:11!10 +1TI 5:11!11 +1TI 5:12!1 +1TI 5:12!2 +1TI 5:12!3 +1TI 5:12!4 +1TI 5:12!5 +1TI 5:12!6 +1TI 5:12!7 +1TI 5:13!2 +1TI 5:13!1 +1TI 5:13!3 +1TI 5:13!4 +1TI 5:13!5 +1TI 5:13!6 +1TI 5:13!7 +1TI 5:13!8 +1TI 5:13!11 +1TI 5:13!9 +1TI 5:13!10 +1TI 5:13!12 +1TI 5:13!13 +1TI 5:13!14 +1TI 5:13!15 +1TI 5:13!16 +1TI 5:13!17 +1TI 5:13!18 +1TI 5:13!19 +1TI 5:13!20 +1TI 5:13!21 +1TI 5:14!2 +1TI 5:14!1 +1TI 5:14!3 +1TI 5:14!4 +1TI 5:14!5 +1TI 5:14!6 +1TI 5:14!7 +1TI 5:14!8 +1TI 5:14!9 +1TI 5:14!10 +1TI 5:14!11 +1TI 5:14!12 +1TI 5:14!13 +1TI 5:15!2 +1TI 5:15!1 +1TI 5:15!3 +1TI 5:15!4 +1TI 5:15!5 +1TI 5:15!6 +1TI 5:15!7 +1TI 5:16!1 +1TI 5:16!2 +1TI 5:16!3 +1TI 5:16!4 +1TI 5:16!5 +1TI 5:16!6 +1TI 5:16!7 +1TI 5:16!8 +1TI 5:16!9 +1TI 5:16!10 +1TI 5:16!11 +1TI 5:16!12 +1TI 5:16!13 +1TI 5:16!14 +1TI 5:16!15 +1TI 5:16!16 +1TI 5:16!17 +1TI 5:17!1 +1TI 5:17!2 +1TI 5:17!3 +1TI 5:17!4 +1TI 5:17!5 +1TI 5:17!6 +1TI 5:17!7 +1TI 5:17!8 +1TI 5:17!9 +1TI 5:17!10 +1TI 5:17!11 +1TI 5:17!12 +1TI 5:17!13 +1TI 5:17!14 +1TI 5:18!2 +1TI 5:18!1 +1TI 5:18!3 +1TI 5:18!4 +1TI 5:18!5 +1TI 5:18!6 +1TI 5:18!7 +1TI 5:18!8 +1TI 5:18!9 +1TI 5:18!10 +1TI 5:18!11 +1TI 5:18!12 +1TI 5:18!13 +1TI 5:18!14 +1TI 5:18!15 +1TI 5:19!1 +1TI 5:19!2 +1TI 5:19!3 +1TI 5:19!4 +1TI 5:19!5 +1TI 5:19!6 +1TI 5:19!7 +1TI 5:19!8 +1TI 5:19!9 +1TI 5:19!10 +1TI 5:19!11 +1TI 5:19!12 +1TI 5:19!13 +1TI 5:20!1 +1TI 5:20!2 +1TI 5:20!3 +1TI 5:20!4 +1TI 5:20!5 +1TI 5:20!6 +1TI 5:20!7 +1TI 5:20!8 +1TI 5:20!9 +1TI 5:20!10 +1TI 5:20!11 +1TI 5:21!1 +1TI 5:21!2 +1TI 5:21!3 +1TI 5:21!4 +1TI 5:21!5 +1TI 5:21!6 +1TI 5:21!7 +1TI 5:21!8 +1TI 5:21!9 +1TI 5:21!10 +1TI 5:21!11 +1TI 5:21!12 +1TI 5:21!13 +1TI 5:21!14 +1TI 5:21!15 +1TI 5:21!16 +1TI 5:21!17 +1TI 5:21!18 +1TI 5:21!19 +1TI 5:21!20 +1TI 5:22!1 +1TI 5:22!2 +1TI 5:22!3 +1TI 5:22!4 +1TI 5:22!5 +1TI 5:22!6 +1TI 5:22!7 +1TI 5:22!8 +1TI 5:22!9 +1TI 5:22!10 +1TI 5:22!11 +1TI 5:23!1 +1TI 5:23!2 +1TI 5:23!3 +1TI 5:23!4 +1TI 5:23!5 +1TI 5:23!6 +1TI 5:23!7 +1TI 5:23!8 +1TI 5:23!9 +1TI 5:23!10 +1TI 5:23!11 +1TI 5:23!12 +1TI 5:23!13 +1TI 5:23!14 +1TI 5:24!1 +1TI 5:24!2 +1TI 5:24!3 +1TI 5:24!4 +1TI 5:24!5 +1TI 5:24!6 +1TI 5:24!7 +1TI 5:24!8 +1TI 5:24!9 +1TI 5:24!11 +1TI 5:24!10 +1TI 5:24!12 +1TI 5:24!13 +1TI 5:25!1 +1TI 5:25!2 +1TI 5:25!3 +1TI 5:25!4 +1TI 5:25!5 +1TI 5:25!6 +1TI 5:25!7 +1TI 5:25!8 +1TI 5:25!9 +1TI 5:25!10 +1TI 5:25!11 +1TI 5:25!12 +1TI 5:25!13 +1TI 5:25!14 +1TI 6:1!1 +1TI 6:1!2 +1TI 6:1!3 +1TI 6:1!4 +1TI 6:1!5 +1TI 6:1!6 +1TI 6:1!7 +1TI 6:1!8 +1TI 6:1!9 +1TI 6:1!10 +1TI 6:1!11 +1TI 6:1!12 +1TI 6:1!13 +1TI 6:1!14 +1TI 6:1!15 +1TI 6:1!16 +1TI 6:1!17 +1TI 6:1!18 +1TI 6:1!19 +1TI 6:1!20 +1TI 6:1!21 +1TI 6:1!22 +1TI 6:2!2 +1TI 6:2!1 +1TI 6:2!4 +1TI 6:2!3 +1TI 6:2!5 +1TI 6:2!6 +1TI 6:2!7 +1TI 6:2!8 +1TI 6:2!9 +1TI 6:2!10 +1TI 6:2!11 +1TI 6:2!12 +1TI 6:2!13 +1TI 6:2!14 +1TI 6:2!16 +1TI 6:2!15 +1TI 6:2!17 +1TI 6:2!18 +1TI 6:2!19 +1TI 6:2!20 +1TI 6:2!21 +1TI 6:2!22 +1TI 6:2!23 +1TI 6:2!24 +1TI 6:2!25 +1TI 6:2!26 +1TI 6:3!1 +1TI 6:3!2 +1TI 6:3!3 +1TI 6:3!4 +1TI 6:3!5 +1TI 6:3!6 +1TI 6:3!7 +1TI 6:3!8 +1TI 6:3!9 +1TI 6:3!10 +1TI 6:3!11 +1TI 6:3!12 +1TI 6:3!13 +1TI 6:3!14 +1TI 6:3!15 +1TI 6:3!16 +1TI 6:3!17 +1TI 6:3!18 +1TI 6:3!19 +1TI 6:4!1 +1TI 6:4!2 +1TI 6:4!3 +1TI 6:4!4 +1TI 6:4!5 +1TI 6:4!6 +1TI 6:4!7 +1TI 6:4!8 +1TI 6:4!9 +1TI 6:4!10 +1TI 6:4!11 +1TI 6:4!12 +1TI 6:4!13 +1TI 6:4!14 +1TI 6:4!15 +1TI 6:4!16 +1TI 6:4!17 +1TI 6:5!1 +1TI 6:5!3 +1TI 6:5!2 +1TI 6:5!4 +1TI 6:5!5 +1TI 6:5!6 +1TI 6:5!7 +1TI 6:5!8 +1TI 6:5!9 +1TI 6:5!10 +1TI 6:5!11 +1TI 6:5!12 +1TI 6:5!13 +1TI 6:5!14 +1TI 6:6!2 +1TI 6:6!1 +1TI 6:6!3 +1TI 6:6!4 +1TI 6:6!5 +1TI 6:6!6 +1TI 6:6!7 +1TI 6:6!8 +1TI 6:7!2 +1TI 6:7!1 +1TI 6:7!3 +1TI 6:7!4 +1TI 6:7!5 +1TI 6:7!6 +1TI 6:7!7 +1TI 6:7!8 +1TI 6:7!9 +1TI 6:7!10 +1TI 6:7!11 +1TI 6:8!2 +1TI 6:8!1 +1TI 6:8!3 +1TI 6:8!4 +1TI 6:8!5 +1TI 6:8!6 +1TI 6:8!7 +1TI 6:9!2 +1TI 6:9!1 +1TI 6:9!3 +1TI 6:9!4 +1TI 6:9!5 +1TI 6:9!6 +1TI 6:9!7 +1TI 6:9!8 +1TI 6:9!9 +1TI 6:9!10 +1TI 6:9!11 +1TI 6:9!12 +1TI 6:9!13 +1TI 6:9!14 +1TI 6:9!15 +1TI 6:9!16 +1TI 6:9!17 +1TI 6:9!18 +1TI 6:9!19 +1TI 6:9!20 +1TI 6:9!21 +1TI 6:9!22 +1TI 6:9!23 +1TI 6:10!2 +1TI 6:10!1 +1TI 6:10!3 +1TI 6:10!4 +1TI 6:10!5 +1TI 6:10!6 +1TI 6:10!7 +1TI 6:10!8 +1TI 6:10!9 +1TI 6:10!11 +1TI 6:10!10 +1TI 6:10!12 +1TI 6:10!13 +1TI 6:10!14 +1TI 6:10!15 +1TI 6:10!16 +1TI 6:10!17 +1TI 6:10!18 +1TI 6:10!19 +1TI 6:10!20 +1TI 6:11!2 +1TI 6:11!3 +1TI 6:11!4 +1TI 6:11!5 +1TI 6:11!1 +1TI 6:11!6 +1TI 6:11!7 +1TI 6:11!9 +1TI 6:11!8 +1TI 6:11!10 +1TI 6:11!11 +1TI 6:11!12 +1TI 6:11!13 +1TI 6:11!14 +1TI 6:11!15 +1TI 6:12!1 +1TI 6:12!2 +1TI 6:12!3 +1TI 6:12!4 +1TI 6:12!5 +1TI 6:12!6 +1TI 6:12!7 +1TI 6:12!8 +1TI 6:12!9 +1TI 6:12!10 +1TI 6:12!11 +1TI 6:12!12 +1TI 6:12!13 +1TI 6:12!14 +1TI 6:12!15 +1TI 6:12!16 +1TI 6:12!17 +1TI 6:12!18 +1TI 6:12!19 +1TI 6:12!20 +1TI 6:12!21 +1TI 6:13!1 +1TI 6:13!2 +1TI 6:13!3 +1TI 6:13!4 +1TI 6:13!5 +1TI 6:13!6 +1TI 6:13!7 +1TI 6:13!8 +1TI 6:13!9 +1TI 6:13!10 +1TI 6:13!11 +1TI 6:13!12 +1TI 6:13!13 +1TI 6:13!14 +1TI 6:13!15 +1TI 6:13!16 +1TI 6:13!17 +1TI 6:13!18 +1TI 6:13!19 +1TI 6:14!1 +1TI 6:14!2 +1TI 6:14!3 +1TI 6:14!4 +1TI 6:14!5 +1TI 6:14!6 +1TI 6:14!7 +1TI 6:14!8 +1TI 6:14!9 +1TI 6:14!10 +1TI 6:14!11 +1TI 6:14!12 +1TI 6:14!13 +1TI 6:14!14 +1TI 6:15!1 +1TI 6:15!2 +1TI 6:15!3 +1TI 6:15!4 +1TI 6:15!5 +1TI 6:15!6 +1TI 6:15!7 +1TI 6:15!8 +1TI 6:15!9 +1TI 6:15!10 +1TI 6:15!11 +1TI 6:15!12 +1TI 6:15!13 +1TI 6:15!14 +1TI 6:15!15 +1TI 6:15!16 +1TI 6:15!17 +1TI 6:16!1 +1TI 6:16!2 +1TI 6:16!3 +1TI 6:16!4 +1TI 6:16!5 +1TI 6:16!7 +1TI 6:16!6 +1TI 6:16!8 +1TI 6:16!9 +1TI 6:16!10 +1TI 6:16!11 +1TI 6:16!12 +1TI 6:16!13 +1TI 6:16!14 +1TI 6:16!15 +1TI 6:16!16 +1TI 6:16!17 +1TI 6:16!18 +1TI 6:16!19 +1TI 6:16!20 +1TI 6:17!1 +1TI 6:17!2 +1TI 6:17!3 +1TI 6:17!4 +1TI 6:17!5 +1TI 6:17!6 +1TI 6:17!7 +1TI 6:17!8 +1TI 6:17!9 +1TI 6:17!10 +1TI 6:17!11 +1TI 6:17!12 +1TI 6:17!13 +1TI 6:17!14 +1TI 6:17!15 +1TI 6:17!16 +1TI 6:17!17 +1TI 6:17!18 +1TI 6:17!19 +1TI 6:17!20 +1TI 6:17!21 +1TI 6:17!22 +1TI 6:17!23 +1TI 6:17!24 +1TI 6:18!1 +1TI 6:18!2 +1TI 6:18!3 +1TI 6:18!4 +1TI 6:18!5 +1TI 6:18!6 +1TI 6:18!7 +1TI 6:18!8 +1TI 6:19!1 +1TI 6:19!2 +1TI 6:19!3 +1TI 6:19!4 +1TI 6:19!5 +1TI 6:19!6 +1TI 6:19!7 +1TI 6:19!8 +1TI 6:19!9 +1TI 6:19!10 +1TI 6:19!11 +1TI 6:19!12 +1TI 6:20!1 +1TI 6:20!2 +1TI 6:20!3 +1TI 6:20!4 +1TI 6:20!5 +1TI 6:20!6 +1TI 6:20!7 +1TI 6:20!8 +1TI 6:20!9 +1TI 6:20!10 +1TI 6:20!11 +1TI 6:20!12 +1TI 6:20!13 +1TI 6:20!14 +1TI 6:21!1 +1TI 6:21!3 +1TI 6:21!2 +1TI 6:21!4 +1TI 6:21!5 +1TI 6:21!6 +1TI 6:21!7 +1TI 6:21!8 +1TI 6:21!9 +1TI 6:21!10 +1TI 6:21!11 +2TI 1:1!1 +2TI 1:1!2 +2TI 1:1!3 +2TI 1:1!4 +2TI 1:1!5 +2TI 1:1!6 +2TI 1:1!7 +2TI 1:1!8 +2TI 1:1!9 +2TI 1:1!10 +2TI 1:1!11 +2TI 1:1!12 +2TI 1:1!13 +2TI 1:1!14 +2TI 1:2!1 +2TI 1:2!2 +2TI 1:2!3 +2TI 1:2!4 +2TI 1:2!5 +2TI 1:2!6 +2TI 1:2!7 +2TI 1:2!8 +2TI 1:2!9 +2TI 1:2!10 +2TI 1:2!11 +2TI 1:2!12 +2TI 1:2!13 +2TI 1:2!14 +2TI 1:2!15 +2TI 1:3!1 +2TI 1:3!2 +2TI 1:3!3 +2TI 1:3!4 +2TI 1:3!5 +2TI 1:3!6 +2TI 1:3!7 +2TI 1:3!8 +2TI 1:3!9 +2TI 1:3!10 +2TI 1:3!11 +2TI 1:3!12 +2TI 1:3!13 +2TI 1:3!14 +2TI 1:3!15 +2TI 1:3!16 +2TI 1:3!17 +2TI 1:3!18 +2TI 1:3!19 +2TI 1:3!20 +2TI 1:3!21 +2TI 1:3!22 +2TI 1:3!23 +2TI 1:3!24 +2TI 1:3!25 +2TI 1:4!1 +2TI 1:4!2 +2TI 1:4!3 +2TI 1:4!4 +2TI 1:4!5 +2TI 1:4!6 +2TI 1:4!7 +2TI 1:4!8 +2TI 1:4!9 +2TI 1:4!10 +2TI 1:5!2 +2TI 1:5!1 +2TI 1:5!3 +2TI 1:5!4 +2TI 1:5!5 +2TI 1:5!6 +2TI 1:5!7 +2TI 1:5!8 +2TI 1:5!9 +2TI 1:5!10 +2TI 1:5!11 +2TI 1:5!12 +2TI 1:5!13 +2TI 1:5!14 +2TI 1:5!15 +2TI 1:5!16 +2TI 1:5!17 +2TI 1:5!18 +2TI 1:5!19 +2TI 1:5!20 +2TI 1:5!22 +2TI 1:5!21 +2TI 1:5!23 +2TI 1:5!24 +2TI 1:5!25 +2TI 1:5!26 +2TI 1:6!1 +2TI 1:6!2 +2TI 1:6!3 +2TI 1:6!4 +2TI 1:6!5 +2TI 1:6!6 +2TI 1:6!7 +2TI 1:6!8 +2TI 1:6!9 +2TI 1:6!10 +2TI 1:6!11 +2TI 1:6!12 +2TI 1:6!13 +2TI 1:6!14 +2TI 1:6!15 +2TI 1:6!16 +2TI 1:6!17 +2TI 1:6!18 +2TI 1:6!19 +2TI 1:6!20 +2TI 1:7!2 +2TI 1:7!1 +2TI 1:7!3 +2TI 1:7!4 +2TI 1:7!5 +2TI 1:7!6 +2TI 1:7!7 +2TI 1:7!8 +2TI 1:7!9 +2TI 1:7!10 +2TI 1:7!11 +2TI 1:7!12 +2TI 1:7!13 +2TI 1:7!14 +2TI 1:8!2 +2TI 1:8!1 +2TI 1:8!3 +2TI 1:8!4 +2TI 1:8!5 +2TI 1:8!6 +2TI 1:8!7 +2TI 1:8!8 +2TI 1:8!9 +2TI 1:8!10 +2TI 1:8!11 +2TI 1:8!12 +2TI 1:8!13 +2TI 1:8!14 +2TI 1:8!15 +2TI 1:8!16 +2TI 1:8!17 +2TI 1:8!18 +2TI 1:8!19 +2TI 1:8!20 +2TI 1:9!1 +2TI 1:9!2 +2TI 1:9!3 +2TI 1:9!4 +2TI 1:9!5 +2TI 1:9!6 +2TI 1:9!7 +2TI 1:9!8 +2TI 1:9!9 +2TI 1:9!10 +2TI 1:9!11 +2TI 1:9!12 +2TI 1:9!13 +2TI 1:9!14 +2TI 1:9!15 +2TI 1:9!16 +2TI 1:9!17 +2TI 1:9!18 +2TI 1:9!19 +2TI 1:9!20 +2TI 1:9!21 +2TI 1:9!22 +2TI 1:9!23 +2TI 1:9!24 +2TI 1:9!25 +2TI 1:9!26 +2TI 1:9!27 +2TI 1:10!2 +2TI 1:10!1 +2TI 1:10!3 +2TI 1:10!4 +2TI 1:10!5 +2TI 1:10!6 +2TI 1:10!7 +2TI 1:10!8 +2TI 1:10!9 +2TI 1:10!10 +2TI 1:10!11 +2TI 1:10!13 +2TI 1:10!12 +2TI 1:10!14 +2TI 1:10!15 +2TI 1:10!17 +2TI 1:10!16 +2TI 1:10!18 +2TI 1:10!19 +2TI 1:10!20 +2TI 1:10!21 +2TI 1:10!22 +2TI 1:10!23 +2TI 1:11!1 +2TI 1:11!2 +2TI 1:11!3 +2TI 1:11!4 +2TI 1:11!5 +2TI 1:11!6 +2TI 1:11!7 +2TI 1:11!8 +2TI 1:11!9 +2TI 1:12!1 +2TI 1:12!2 +2TI 1:12!3 +2TI 1:12!4 +2TI 1:12!5 +2TI 1:12!6 +2TI 1:12!7 +2TI 1:12!8 +2TI 1:12!9 +2TI 1:12!11 +2TI 1:12!10 +2TI 1:12!12 +2TI 1:12!13 +2TI 1:12!14 +2TI 1:12!15 +2TI 1:12!16 +2TI 1:12!18 +2TI 1:12!17 +2TI 1:12!19 +2TI 1:12!20 +2TI 1:12!21 +2TI 1:12!22 +2TI 1:12!23 +2TI 1:12!24 +2TI 1:12!25 +2TI 1:12!26 +2TI 1:13!2 +2TI 1:13!1 +2TI 1:13!3 +2TI 1:13!4 +2TI 1:13!5 +2TI 1:13!6 +2TI 1:13!7 +2TI 1:13!8 +2TI 1:13!9 +2TI 1:13!10 +2TI 1:13!11 +2TI 1:13!12 +2TI 1:13!13 +2TI 1:13!14 +2TI 1:13!15 +2TI 1:13!16 +2TI 1:14!1 +2TI 1:14!2 +2TI 1:14!3 +2TI 1:14!4 +2TI 1:14!5 +2TI 1:14!6 +2TI 1:14!7 +2TI 1:14!8 +2TI 1:14!9 +2TI 1:14!10 +2TI 1:14!11 +2TI 1:15!1 +2TI 1:15!2 +2TI 1:15!3 +2TI 1:15!4 +2TI 1:15!5 +2TI 1:15!6 +2TI 1:15!7 +2TI 1:15!8 +2TI 1:15!9 +2TI 1:15!10 +2TI 1:15!11 +2TI 1:15!12 +2TI 1:15!13 +2TI 1:15!14 +2TI 1:15!15 +2TI 1:16!1 +2TI 1:16!2 +2TI 1:16!3 +2TI 1:16!4 +2TI 1:16!5 +2TI 1:16!6 +2TI 1:16!7 +2TI 1:16!8 +2TI 1:16!9 +2TI 1:16!10 +2TI 1:16!11 +2TI 1:16!12 +2TI 1:16!16 +2TI 1:16!13 +2TI 1:16!14 +2TI 1:16!15 +2TI 1:16!17 +2TI 1:17!1 +2TI 1:17!2 +2TI 1:17!3 +2TI 1:17!4 +2TI 1:17!5 +2TI 1:17!6 +2TI 1:17!7 +2TI 1:17!8 +2TI 1:17!9 +2TI 1:18!1 +2TI 1:18!2 +2TI 1:18!3 +2TI 1:18!4 +2TI 1:18!5 +2TI 1:18!6 +2TI 1:18!7 +2TI 1:18!8 +2TI 1:18!9 +2TI 1:18!10 +2TI 1:18!11 +2TI 1:18!12 +2TI 1:18!13 +2TI 1:18!14 +2TI 1:18!15 +2TI 1:18!16 +2TI 1:18!17 +2TI 1:18!18 +2TI 1:18!19 +2TI 1:18!20 +2TI 2:1!2 +2TI 2:1!3 +2TI 2:1!4 +2TI 2:1!1 +2TI 2:1!5 +2TI 2:1!6 +2TI 2:1!7 +2TI 2:1!8 +2TI 2:1!9 +2TI 2:1!10 +2TI 2:1!11 +2TI 2:1!12 +2TI 2:2!1 +2TI 2:2!2 +2TI 2:2!3 +2TI 2:2!4 +2TI 2:2!5 +2TI 2:2!6 +2TI 2:2!7 +2TI 2:2!8 +2TI 2:2!9 +2TI 2:2!10 +2TI 2:2!11 +2TI 2:2!12 +2TI 2:2!13 +2TI 2:2!14 +2TI 2:2!15 +2TI 2:2!16 +2TI 2:2!17 +2TI 2:2!18 +2TI 2:3!1 +2TI 2:3!2 +2TI 2:3!3 +2TI 2:3!4 +2TI 2:3!5 +2TI 2:3!6 +2TI 2:4!1 +2TI 2:4!2 +2TI 2:4!3 +2TI 2:4!4 +2TI 2:4!5 +2TI 2:4!6 +2TI 2:4!7 +2TI 2:4!8 +2TI 2:4!9 +2TI 2:4!10 +2TI 2:4!11 +2TI 2:5!2 +2TI 2:5!1 +2TI 2:5!3 +2TI 2:5!4 +2TI 2:5!5 +2TI 2:5!6 +2TI 2:5!7 +2TI 2:5!8 +2TI 2:5!9 +2TI 2:5!10 +2TI 2:5!11 +2TI 2:6!4 +2TI 2:6!1 +2TI 2:6!2 +2TI 2:6!3 +2TI 2:6!5 +2TI 2:6!6 +2TI 2:6!7 +2TI 2:6!8 +2TI 2:7!1 +2TI 2:7!2 +2TI 2:7!3 +2TI 2:7!5 +2TI 2:7!4 +2TI 2:7!6 +2TI 2:7!7 +2TI 2:7!8 +2TI 2:7!9 +2TI 2:7!10 +2TI 2:7!11 +2TI 2:8!1 +2TI 2:8!2 +2TI 2:8!3 +2TI 2:8!4 +2TI 2:8!5 +2TI 2:8!6 +2TI 2:8!7 +2TI 2:8!8 +2TI 2:8!9 +2TI 2:8!10 +2TI 2:8!11 +2TI 2:8!12 +2TI 2:8!13 +2TI 2:9!1 +2TI 2:9!2 +2TI 2:9!3 +2TI 2:9!4 +2TI 2:9!5 +2TI 2:9!6 +2TI 2:9!7 +2TI 2:9!8 +2TI 2:9!9 +2TI 2:9!10 +2TI 2:9!11 +2TI 2:9!12 +2TI 2:9!13 +2TI 2:9!14 +2TI 2:10!1 +2TI 2:10!2 +2TI 2:10!3 +2TI 2:10!4 +2TI 2:10!5 +2TI 2:10!6 +2TI 2:10!7 +2TI 2:10!8 +2TI 2:10!9 +2TI 2:10!10 +2TI 2:10!12 +2TI 2:10!11 +2TI 2:10!13 +2TI 2:10!14 +2TI 2:10!15 +2TI 2:10!16 +2TI 2:10!17 +2TI 2:10!18 +2TI 2:10!19 +2TI 2:11!1 +2TI 2:11!2 +2TI 2:11!3 +2TI 2:11!5 +2TI 2:11!4 +2TI 2:11!6 +2TI 2:11!7 +2TI 2:11!8 +2TI 2:12!1 +2TI 2:12!2 +2TI 2:12!3 +2TI 2:12!4 +2TI 2:12!5 +2TI 2:12!6 +2TI 2:12!7 +2TI 2:12!8 +2TI 2:12!9 +2TI 2:13!1 +2TI 2:13!2 +2TI 2:13!3 +2TI 2:13!4 +2TI 2:13!5 +2TI 2:13!7 +2TI 2:13!6 +2TI 2:13!8 +2TI 2:13!9 +2TI 2:13!10 +2TI 2:14!1 +2TI 2:14!2 +2TI 2:14!3 +2TI 2:14!4 +2TI 2:14!5 +2TI 2:14!6 +2TI 2:14!7 +2TI 2:14!8 +2TI 2:14!9 +2TI 2:14!10 +2TI 2:14!11 +2TI 2:14!12 +2TI 2:14!13 +2TI 2:14!14 +2TI 2:14!15 +2TI 2:15!1 +2TI 2:15!4 +2TI 2:15!2 +2TI 2:15!3 +2TI 2:15!5 +2TI 2:15!6 +2TI 2:15!7 +2TI 2:15!8 +2TI 2:15!9 +2TI 2:15!10 +2TI 2:15!11 +2TI 2:15!12 +2TI 2:15!13 +2TI 2:16!2 +2TI 2:16!1 +2TI 2:16!3 +2TI 2:16!4 +2TI 2:16!5 +2TI 2:16!8 +2TI 2:16!6 +2TI 2:16!7 +2TI 2:16!10 +2TI 2:16!9 +2TI 2:17!1 +2TI 2:17!2 +2TI 2:17!3 +2TI 2:17!4 +2TI 2:17!5 +2TI 2:17!6 +2TI 2:17!7 +2TI 2:17!8 +2TI 2:17!9 +2TI 2:17!10 +2TI 2:17!11 +2TI 2:17!12 +2TI 2:17!13 +2TI 2:18!1 +2TI 2:18!2 +2TI 2:18!3 +2TI 2:18!4 +2TI 2:18!5 +2TI 2:18!6 +2TI 2:18!7 +2TI 2:18!8 +2TI 2:18!9 +2TI 2:18!10 +2TI 2:18!11 +2TI 2:18!12 +2TI 2:18!13 +2TI 2:18!14 +2TI 2:19!2 +2TI 2:19!1 +2TI 2:19!3 +2TI 2:19!4 +2TI 2:19!5 +2TI 2:19!6 +2TI 2:19!7 +2TI 2:19!8 +2TI 2:19!9 +2TI 2:19!10 +2TI 2:19!11 +2TI 2:19!12 +2TI 2:19!13 +2TI 2:19!14 +2TI 2:19!15 +2TI 2:19!16 +2TI 2:19!17 +2TI 2:19!18 +2TI 2:19!19 +2TI 2:19!20 +2TI 2:19!21 +2TI 2:19!22 +2TI 2:19!23 +2TI 2:19!24 +2TI 2:19!25 +2TI 2:19!26 +2TI 2:20!3 +2TI 2:20!1 +2TI 2:20!2 +2TI 2:20!4 +2TI 2:20!6 +2TI 2:20!5 +2TI 2:20!7 +2TI 2:20!8 +2TI 2:20!9 +2TI 2:20!10 +2TI 2:20!11 +2TI 2:20!12 +2TI 2:20!13 +2TI 2:20!14 +2TI 2:20!15 +2TI 2:20!16 +2TI 2:20!17 +2TI 2:20!19 +2TI 2:20!18 +2TI 2:20!20 +2TI 2:20!21 +2TI 2:20!23 +2TI 2:20!22 +2TI 2:20!24 +2TI 2:20!25 +2TI 2:21!2 +2TI 2:21!1 +2TI 2:21!3 +2TI 2:21!4 +2TI 2:21!5 +2TI 2:21!6 +2TI 2:21!7 +2TI 2:21!8 +2TI 2:21!9 +2TI 2:21!10 +2TI 2:21!11 +2TI 2:21!12 +2TI 2:21!13 +2TI 2:21!14 +2TI 2:21!15 +2TI 2:21!16 +2TI 2:21!17 +2TI 2:21!18 +2TI 2:21!19 +2TI 2:21!20 +2TI 2:22!2 +2TI 2:22!1 +2TI 2:22!3 +2TI 2:22!4 +2TI 2:22!5 +2TI 2:22!7 +2TI 2:22!6 +2TI 2:22!8 +2TI 2:22!9 +2TI 2:22!10 +2TI 2:22!11 +2TI 2:22!12 +2TI 2:22!13 +2TI 2:22!14 +2TI 2:22!15 +2TI 2:22!16 +2TI 2:22!17 +2TI 2:22!18 +2TI 2:22!19 +2TI 2:23!2 +2TI 2:23!1 +2TI 2:23!3 +2TI 2:23!4 +2TI 2:23!5 +2TI 2:23!6 +2TI 2:23!7 +2TI 2:23!8 +2TI 2:23!9 +2TI 2:23!10 +2TI 2:23!11 +2TI 2:24!2 +2TI 2:24!5 +2TI 2:24!1 +2TI 2:24!3 +2TI 2:24!4 +2TI 2:24!6 +2TI 2:24!7 +2TI 2:24!9 +2TI 2:24!8 +2TI 2:24!10 +2TI 2:24!11 +2TI 2:24!12 +2TI 2:24!13 +2TI 2:25!1 +2TI 2:25!2 +2TI 2:25!3 +2TI 2:25!4 +2TI 2:25!5 +2TI 2:25!6 +2TI 2:25!7 +2TI 2:25!8 +2TI 2:25!9 +2TI 2:25!10 +2TI 2:25!11 +2TI 2:25!12 +2TI 2:25!13 +2TI 2:25!14 +2TI 2:25!15 +2TI 2:26!1 +2TI 2:26!2 +2TI 2:26!3 +2TI 2:26!4 +2TI 2:26!5 +2TI 2:26!6 +2TI 2:26!7 +2TI 2:26!8 +2TI 2:26!9 +2TI 2:26!10 +2TI 2:26!11 +2TI 2:26!12 +2TI 2:26!13 +2TI 2:26!14 +2TI 3:1!2 +2TI 3:1!1 +2TI 3:1!3 +2TI 3:1!4 +2TI 3:1!5 +2TI 3:1!6 +2TI 3:1!7 +2TI 3:1!8 +2TI 3:1!9 +2TI 3:1!10 +2TI 3:2!2 +2TI 3:2!1 +2TI 3:2!3 +2TI 3:2!4 +2TI 3:2!5 +2TI 3:2!6 +2TI 3:2!7 +2TI 3:2!8 +2TI 3:2!9 +2TI 3:2!10 +2TI 3:2!11 +2TI 3:2!12 +2TI 3:2!13 +2TI 3:3!1 +2TI 3:3!2 +2TI 3:3!3 +2TI 3:3!4 +2TI 3:3!5 +2TI 3:3!6 +2TI 3:4!1 +2TI 3:4!2 +2TI 3:4!3 +2TI 3:4!4 +2TI 3:4!5 +2TI 3:4!6 +2TI 3:4!7 +2TI 3:5!1 +2TI 3:5!2 +2TI 3:5!3 +2TI 3:5!5 +2TI 3:5!4 +2TI 3:5!6 +2TI 3:5!7 +2TI 3:5!8 +2TI 3:5!9 +2TI 3:5!10 +2TI 3:5!11 +2TI 3:6!3 +2TI 3:6!1 +2TI 3:6!2 +2TI 3:6!4 +2TI 3:6!5 +2TI 3:6!6 +2TI 3:6!7 +2TI 3:6!8 +2TI 3:6!9 +2TI 3:6!10 +2TI 3:6!11 +2TI 3:6!12 +2TI 3:6!13 +2TI 3:6!14 +2TI 3:6!15 +2TI 3:6!16 +2TI 3:6!17 +2TI 3:7!1 +2TI 3:7!2 +2TI 3:7!3 +2TI 3:7!4 +2TI 3:7!5 +2TI 3:7!6 +2TI 3:7!7 +2TI 3:7!8 +2TI 3:7!9 +2TI 3:8!3 +2TI 3:8!1 +2TI 3:8!2 +2TI 3:8!4 +2TI 3:8!5 +2TI 3:8!6 +2TI 3:8!7 +2TI 3:8!8 +2TI 3:8!9 +2TI 3:8!10 +2TI 3:8!11 +2TI 3:8!12 +2TI 3:8!13 +2TI 3:8!14 +2TI 3:8!15 +2TI 3:8!16 +2TI 3:8!17 +2TI 3:8!18 +2TI 3:8!19 +2TI 3:8!20 +2TI 3:8!21 +2TI 3:8!22 +2TI 3:9!1 +2TI 3:9!2 +2TI 3:9!3 +2TI 3:9!4 +2TI 3:9!5 +2TI 3:9!7 +2TI 3:9!6 +2TI 3:9!8 +2TI 3:9!9 +2TI 3:9!10 +2TI 3:9!11 +2TI 3:9!12 +2TI 3:9!13 +2TI 3:9!14 +2TI 3:9!15 +2TI 3:9!16 +2TI 3:9!17 +2TI 3:10!2 +2TI 3:10!1 +2TI 3:10!3 +2TI 3:10!4 +2TI 3:10!5 +2TI 3:10!6 +2TI 3:10!7 +2TI 3:10!8 +2TI 3:10!9 +2TI 3:10!10 +2TI 3:10!11 +2TI 3:10!12 +2TI 3:10!13 +2TI 3:10!14 +2TI 3:10!15 +2TI 3:10!16 +2TI 3:10!17 +2TI 3:10!18 +2TI 3:11!1 +2TI 3:11!2 +2TI 3:11!3 +2TI 3:11!4 +2TI 3:11!5 +2TI 3:11!6 +2TI 3:11!7 +2TI 3:11!8 +2TI 3:11!9 +2TI 3:11!10 +2TI 3:11!11 +2TI 3:11!12 +2TI 3:11!13 +2TI 3:11!14 +2TI 3:11!15 +2TI 3:11!16 +2TI 3:11!17 +2TI 3:11!18 +2TI 3:11!19 +2TI 3:11!20 +2TI 3:11!21 +2TI 3:11!22 +2TI 3:11!23 +2TI 3:12!3 +2TI 3:12!1 +2TI 3:12!2 +2TI 3:12!4 +2TI 3:12!5 +2TI 3:12!6 +2TI 3:12!7 +2TI 3:12!8 +2TI 3:12!9 +2TI 3:12!10 +2TI 3:12!11 +2TI 3:13!2 +2TI 3:13!1 +2TI 3:13!3 +2TI 3:13!4 +2TI 3:13!5 +2TI 3:13!6 +2TI 3:13!7 +2TI 3:13!8 +2TI 3:13!9 +2TI 3:13!10 +2TI 3:13!11 +2TI 3:13!12 +2TI 3:14!2 +2TI 3:14!1 +2TI 3:14!3 +2TI 3:14!4 +2TI 3:14!5 +2TI 3:14!6 +2TI 3:14!7 +2TI 3:14!8 +2TI 3:14!9 +2TI 3:14!10 +2TI 3:14!11 +2TI 3:14!12 +2TI 3:15!1 +2TI 3:15!2 +2TI 3:15!3 +2TI 3:15!4 +2TI 3:15!7 +2TI 3:15!5 +2TI 3:15!6 +2TI 3:15!8 +2TI 3:15!9 +2TI 3:15!10 +2TI 3:15!11 +2TI 3:15!12 +2TI 3:15!13 +2TI 3:15!14 +2TI 3:15!15 +2TI 3:15!16 +2TI 3:15!17 +2TI 3:15!18 +2TI 3:15!19 +2TI 3:16!1 +2TI 3:16!2 +2TI 3:16!3 +2TI 3:16!4 +2TI 3:16!5 +2TI 3:16!6 +2TI 3:16!7 +2TI 3:16!8 +2TI 3:16!9 +2TI 3:16!10 +2TI 3:16!11 +2TI 3:16!12 +2TI 3:16!13 +2TI 3:16!14 +2TI 3:16!15 +2TI 3:16!16 +2TI 3:17!1 +2TI 3:17!2 +2TI 3:17!3 +2TI 3:17!4 +2TI 3:17!5 +2TI 3:17!6 +2TI 3:17!7 +2TI 3:17!8 +2TI 3:17!9 +2TI 3:17!10 +2TI 3:17!11 +2TI 3:17!12 +2TI 4:1!1 +2TI 4:1!2 +2TI 4:1!3 +2TI 4:1!4 +2TI 4:1!5 +2TI 4:1!6 +2TI 4:1!7 +2TI 4:1!8 +2TI 4:1!9 +2TI 4:1!10 +2TI 4:1!11 +2TI 4:1!12 +2TI 4:1!13 +2TI 4:1!14 +2TI 4:1!15 +2TI 4:1!16 +2TI 4:1!17 +2TI 4:1!18 +2TI 4:1!19 +2TI 4:1!20 +2TI 4:1!21 +2TI 4:2!1 +2TI 4:2!2 +2TI 4:2!3 +2TI 4:2!4 +2TI 4:2!5 +2TI 4:2!6 +2TI 4:2!7 +2TI 4:2!8 +2TI 4:2!9 +2TI 4:2!10 +2TI 4:2!11 +2TI 4:2!12 +2TI 4:2!13 +2TI 4:2!14 +2TI 4:3!2 +2TI 4:3!1 +2TI 4:3!3 +2TI 4:3!4 +2TI 4:3!8 +2TI 4:3!5 +2TI 4:3!6 +2TI 4:3!7 +2TI 4:3!9 +2TI 4:3!10 +2TI 4:3!11 +2TI 4:3!12 +2TI 4:3!13 +2TI 4:3!14 +2TI 4:3!15 +2TI 4:3!16 +2TI 4:3!17 +2TI 4:3!18 +2TI 4:3!19 +2TI 4:3!20 +2TI 4:4!1 +2TI 4:4!3 +2TI 4:4!2 +2TI 4:4!4 +2TI 4:4!5 +2TI 4:4!6 +2TI 4:4!7 +2TI 4:4!8 +2TI 4:4!10 +2TI 4:4!9 +2TI 4:4!11 +2TI 4:4!12 +2TI 4:4!13 +2TI 4:5!2 +2TI 4:5!1 +2TI 4:5!3 +2TI 4:5!4 +2TI 4:5!5 +2TI 4:5!6 +2TI 4:5!8 +2TI 4:5!7 +2TI 4:5!9 +2TI 4:5!10 +2TI 4:5!11 +2TI 4:5!12 +2TI 4:5!13 +2TI 4:6!2 +2TI 4:6!1 +2TI 4:6!3 +2TI 4:6!4 +2TI 4:6!5 +2TI 4:6!6 +2TI 4:6!7 +2TI 4:6!8 +2TI 4:6!9 +2TI 4:6!10 +2TI 4:6!11 +2TI 4:7!1 +2TI 4:7!2 +2TI 4:7!3 +2TI 4:7!4 +2TI 4:7!5 +2TI 4:7!6 +2TI 4:7!7 +2TI 4:7!8 +2TI 4:7!9 +2TI 4:7!10 +2TI 4:8!1 +2TI 4:8!2 +2TI 4:8!3 +2TI 4:8!4 +2TI 4:8!5 +2TI 4:8!6 +2TI 4:8!7 +2TI 4:8!8 +2TI 4:8!9 +2TI 4:8!10 +2TI 4:8!11 +2TI 4:8!12 +2TI 4:8!17 +2TI 4:8!18 +2TI 4:8!19 +2TI 4:8!13 +2TI 4:8!14 +2TI 4:8!15 +2TI 4:8!16 +2TI 4:8!22 +2TI 4:8!20 +2TI 4:8!21 +2TI 4:8!23 +2TI 4:8!24 +2TI 4:8!25 +2TI 4:8!26 +2TI 4:8!27 +2TI 4:8!28 +2TI 4:8!29 +2TI 4:8!30 +2TI 4:8!31 +2TI 4:9!1 +2TI 4:9!2 +2TI 4:9!3 +2TI 4:9!4 +2TI 4:9!5 +2TI 4:10!2 +2TI 4:10!1 +2TI 4:10!3 +2TI 4:10!4 +2TI 4:10!5 +2TI 4:10!6 +2TI 4:10!7 +2TI 4:10!8 +2TI 4:10!9 +2TI 4:10!10 +2TI 4:10!11 +2TI 4:10!12 +2TI 4:10!13 +2TI 4:10!14 +2TI 4:10!15 +2TI 4:10!16 +2TI 4:10!17 +2TI 4:10!18 +2TI 4:11!1 +2TI 4:11!2 +2TI 4:11!3 +2TI 4:11!4 +2TI 4:11!5 +2TI 4:11!6 +2TI 4:11!7 +2TI 4:11!8 +2TI 4:11!9 +2TI 4:11!10 +2TI 4:11!12 +2TI 4:11!11 +2TI 4:11!13 +2TI 4:11!14 +2TI 4:11!15 +2TI 4:11!16 +2TI 4:12!2 +2TI 4:12!1 +2TI 4:12!3 +2TI 4:12!4 +2TI 4:12!5 +2TI 4:13!1 +2TI 4:13!2 +2TI 4:13!3 +2TI 4:13!4 +2TI 4:13!5 +2TI 4:13!6 +2TI 4:13!7 +2TI 4:13!8 +2TI 4:13!9 +2TI 4:13!10 +2TI 4:13!11 +2TI 4:13!12 +2TI 4:13!13 +2TI 4:13!14 +2TI 4:13!15 +2TI 4:13!16 +2TI 4:14!1 +2TI 4:14!2 +2TI 4:14!3 +2TI 4:14!4 +2TI 4:14!6 +2TI 4:14!5 +2TI 4:14!7 +2TI 4:14!8 +2TI 4:14!9 +2TI 4:14!10 +2TI 4:14!11 +2TI 4:14!12 +2TI 4:14!13 +2TI 4:14!14 +2TI 4:14!15 +2TI 4:15!1 +2TI 4:15!2 +2TI 4:15!3 +2TI 4:15!4 +2TI 4:15!6 +2TI 4:15!5 +2TI 4:15!7 +2TI 4:15!8 +2TI 4:15!9 +2TI 4:15!10 +2TI 4:16!1 +2TI 4:16!2 +2TI 4:16!3 +2TI 4:16!4 +2TI 4:16!5 +2TI 4:16!6 +2TI 4:16!7 +2TI 4:16!8 +2TI 4:16!9 +2TI 4:16!10 +2TI 4:16!11 +2TI 4:16!12 +2TI 4:16!13 +2TI 4:16!14 +2TI 4:16!15 +2TI 4:17!2 +2TI 4:17!1 +2TI 4:17!3 +2TI 4:17!4 +2TI 4:17!5 +2TI 4:17!6 +2TI 4:17!7 +2TI 4:17!8 +2TI 4:17!9 +2TI 4:17!10 +2TI 4:17!11 +2TI 4:17!12 +2TI 4:17!13 +2TI 4:17!14 +2TI 4:17!15 +2TI 4:17!16 +2TI 4:17!17 +2TI 4:17!18 +2TI 4:17!19 +2TI 4:17!20 +2TI 4:17!21 +2TI 4:17!22 +2TI 4:17!23 +2TI 4:17!24 +2TI 4:18!1 +2TI 4:18!2 +2TI 4:18!3 +2TI 4:18!4 +2TI 4:18!5 +2TI 4:18!6 +2TI 4:18!7 +2TI 4:18!8 +2TI 4:18!9 +2TI 4:18!10 +2TI 4:18!11 +2TI 4:18!12 +2TI 4:18!13 +2TI 4:18!14 +2TI 4:18!15 +2TI 4:18!16 +2TI 4:18!17 +2TI 4:18!18 +2TI 4:18!19 +2TI 4:18!20 +2TI 4:18!21 +2TI 4:18!22 +2TI 4:18!23 +2TI 4:18!24 +2TI 4:18!25 +2TI 4:19!1 +2TI 4:19!2 +2TI 4:19!3 +2TI 4:19!4 +2TI 4:19!5 +2TI 4:19!6 +2TI 4:19!7 +2TI 4:19!8 +2TI 4:20!1 +2TI 4:20!2 +2TI 4:20!3 +2TI 4:20!4 +2TI 4:20!6 +2TI 4:20!5 +2TI 4:20!7 +2TI 4:20!8 +2TI 4:20!9 +2TI 4:20!10 +2TI 4:21!1 +2TI 4:21!2 +2TI 4:21!3 +2TI 4:21!4 +2TI 4:21!5 +2TI 4:21!6 +2TI 4:21!7 +2TI 4:21!8 +2TI 4:21!9 +2TI 4:21!10 +2TI 4:21!11 +2TI 4:21!12 +2TI 4:21!13 +2TI 4:21!14 +2TI 4:21!15 +2TI 4:21!16 +2TI 4:21!17 +2TI 4:22!1 +2TI 4:22!2 +2TI 4:22!3 +2TI 4:22!4 +2TI 4:22!5 +2TI 4:22!6 +2TI 4:22!7 +2TI 4:22!8 +2TI 4:22!9 +2TI 4:22!10 +TIT 1:1!1 +TIT 1:1!2 +TIT 1:1!3 +TIT 1:1!5 +TIT 1:1!4 +TIT 1:1!6 +TIT 1:1!7 +TIT 1:1!8 +TIT 1:1!9 +TIT 1:1!10 +TIT 1:1!11 +TIT 1:1!12 +TIT 1:1!13 +TIT 1:1!14 +TIT 1:1!15 +TIT 1:1!16 +TIT 1:1!17 +TIT 1:2!1 +TIT 1:2!2 +TIT 1:2!3 +TIT 1:2!4 +TIT 1:2!5 +TIT 1:2!6 +TIT 1:2!7 +TIT 1:2!8 +TIT 1:2!9 +TIT 1:2!10 +TIT 1:2!11 +TIT 1:2!12 +TIT 1:3!2 +TIT 1:3!1 +TIT 1:3!3 +TIT 1:3!4 +TIT 1:3!5 +TIT 1:3!6 +TIT 1:3!7 +TIT 1:3!8 +TIT 1:3!9 +TIT 1:3!10 +TIT 1:3!11 +TIT 1:3!12 +TIT 1:3!13 +TIT 1:3!14 +TIT 1:3!15 +TIT 1:3!16 +TIT 1:3!17 +TIT 1:3!18 +TIT 1:4!1 +TIT 1:4!2 +TIT 1:4!3 +TIT 1:4!4 +TIT 1:4!5 +TIT 1:4!6 +TIT 1:4!7 +TIT 1:4!8 +TIT 1:4!9 +TIT 1:4!10 +TIT 1:4!11 +TIT 1:4!12 +TIT 1:4!13 +TIT 1:4!14 +TIT 1:4!15 +TIT 1:4!16 +TIT 1:4!17 +TIT 1:4!18 +TIT 1:5!1 +TIT 1:5!2 +TIT 1:5!3 +TIT 1:5!4 +TIT 1:5!5 +TIT 1:5!6 +TIT 1:5!7 +TIT 1:5!8 +TIT 1:5!9 +TIT 1:5!10 +TIT 1:5!11 +TIT 1:5!12 +TIT 1:5!13 +TIT 1:5!14 +TIT 1:5!15 +TIT 1:5!16 +TIT 1:5!17 +TIT 1:5!18 +TIT 1:5!19 +TIT 1:6!1 +TIT 1:6!2 +TIT 1:6!3 +TIT 1:6!4 +TIT 1:6!5 +TIT 1:6!6 +TIT 1:6!7 +TIT 1:6!9 +TIT 1:6!8 +TIT 1:6!10 +TIT 1:6!11 +TIT 1:6!12 +TIT 1:6!13 +TIT 1:6!14 +TIT 1:6!15 +TIT 1:6!16 +TIT 1:7!2 +TIT 1:7!1 +TIT 1:7!3 +TIT 1:7!4 +TIT 1:7!6 +TIT 1:7!7 +TIT 1:7!8 +TIT 1:7!9 +TIT 1:7!5 +TIT 1:7!10 +TIT 1:7!11 +TIT 1:7!12 +TIT 1:7!13 +TIT 1:7!14 +TIT 1:7!15 +TIT 1:7!16 +TIT 1:7!17 +TIT 1:7!18 +TIT 1:7!19 +TIT 1:8!1 +TIT 1:8!2 +TIT 1:8!3 +TIT 1:8!4 +TIT 1:8!5 +TIT 1:8!6 +TIT 1:8!7 +TIT 1:9!1 +TIT 1:9!2 +TIT 1:9!3 +TIT 1:9!4 +TIT 1:9!5 +TIT 1:9!6 +TIT 1:9!7 +TIT 1:9!8 +TIT 1:9!10 +TIT 1:9!9 +TIT 1:9!11 +TIT 1:9!12 +TIT 1:9!13 +TIT 1:9!14 +TIT 1:9!15 +TIT 1:9!16 +TIT 1:9!17 +TIT 1:9!18 +TIT 1:9!19 +TIT 1:9!20 +TIT 1:9!21 +TIT 1:10!2 +TIT 1:10!1 +TIT 1:10!3 +TIT 1:10!4 +TIT 1:10!5 +TIT 1:10!6 +TIT 1:10!7 +TIT 1:10!8 +TIT 1:10!9 +TIT 1:10!10 +TIT 1:10!11 +TIT 1:10!12 +TIT 1:11!1 +TIT 1:11!3 +TIT 1:11!2 +TIT 1:11!4 +TIT 1:11!5 +TIT 1:11!6 +TIT 1:11!7 +TIT 1:11!8 +TIT 1:11!9 +TIT 1:11!10 +TIT 1:11!11 +TIT 1:11!12 +TIT 1:11!13 +TIT 1:11!14 +TIT 1:12!1 +TIT 1:12!2 +TIT 1:12!3 +TIT 1:12!4 +TIT 1:12!5 +TIT 1:12!6 +TIT 1:12!7 +TIT 1:12!8 +TIT 1:12!9 +TIT 1:12!10 +TIT 1:12!11 +TIT 1:12!12 +TIT 1:12!13 +TIT 1:12!14 +TIT 1:13!1 +TIT 1:13!2 +TIT 1:13!3 +TIT 1:13!4 +TIT 1:13!5 +TIT 1:13!6 +TIT 1:13!7 +TIT 1:13!8 +TIT 1:13!9 +TIT 1:13!10 +TIT 1:13!11 +TIT 1:13!12 +TIT 1:13!13 +TIT 1:13!14 +TIT 1:13!15 +TIT 1:13!16 +TIT 1:14!1 +TIT 1:14!2 +TIT 1:14!3 +TIT 1:14!4 +TIT 1:14!5 +TIT 1:14!6 +TIT 1:14!7 +TIT 1:14!8 +TIT 1:14!9 +TIT 1:14!10 +TIT 1:15!1 +TIT 1:15!2 +TIT 1:15!3 +TIT 1:15!4 +TIT 1:15!6 +TIT 1:15!5 +TIT 1:15!7 +TIT 1:15!8 +TIT 1:15!9 +TIT 1:15!10 +TIT 1:15!11 +TIT 1:15!12 +TIT 1:15!13 +TIT 1:15!14 +TIT 1:15!15 +TIT 1:15!16 +TIT 1:15!17 +TIT 1:15!18 +TIT 1:15!19 +TIT 1:15!20 +TIT 1:16!1 +TIT 1:16!3 +TIT 1:16!2 +TIT 1:16!5 +TIT 1:16!4 +TIT 1:16!6 +TIT 1:16!7 +TIT 1:16!9 +TIT 1:16!8 +TIT 1:16!10 +TIT 1:16!11 +TIT 1:16!12 +TIT 1:16!13 +TIT 1:16!14 +TIT 1:16!15 +TIT 1:16!16 +TIT 1:16!17 +TIT 2:1!2 +TIT 2:1!1 +TIT 2:1!3 +TIT 2:1!4 +TIT 2:1!5 +TIT 2:1!6 +TIT 2:1!7 +TIT 2:1!8 +TIT 2:2!1 +TIT 2:2!3 +TIT 2:2!2 +TIT 2:2!4 +TIT 2:2!5 +TIT 2:2!6 +TIT 2:2!7 +TIT 2:2!8 +TIT 2:2!9 +TIT 2:2!10 +TIT 2:2!11 +TIT 2:2!12 +TIT 2:3!1 +TIT 2:3!2 +TIT 2:3!3 +TIT 2:3!4 +TIT 2:3!5 +TIT 2:3!6 +TIT 2:3!7 +TIT 2:3!8 +TIT 2:3!9 +TIT 2:3!10 +TIT 2:3!11 +TIT 2:3!12 +TIT 2:4!1 +TIT 2:4!2 +TIT 2:4!3 +TIT 2:4!4 +TIT 2:4!6 +TIT 2:4!5 +TIT 2:4!7 +TIT 2:5!1 +TIT 2:5!2 +TIT 2:5!3 +TIT 2:5!4 +TIT 2:5!5 +TIT 2:5!6 +TIT 2:5!7 +TIT 2:5!8 +TIT 2:5!9 +TIT 2:5!10 +TIT 2:5!11 +TIT 2:5!12 +TIT 2:5!13 +TIT 2:5!14 +TIT 2:5!15 +TIT 2:6!1 +TIT 2:6!2 +TIT 2:6!3 +TIT 2:6!4 +TIT 2:6!5 +TIT 2:7!1 +TIT 2:7!2 +TIT 2:7!3 +TIT 2:7!4 +TIT 2:7!5 +TIT 2:7!6 +TIT 2:7!7 +TIT 2:7!8 +TIT 2:7!9 +TIT 2:7!10 +TIT 2:7!11 +TIT 2:7!12 +TIT 2:8!1 +TIT 2:8!2 +TIT 2:8!3 +TIT 2:8!4 +TIT 2:8!5 +TIT 2:8!6 +TIT 2:8!7 +TIT 2:8!8 +TIT 2:8!10 +TIT 2:8!11 +TIT 2:8!12 +TIT 2:8!13 +TIT 2:8!9 +TIT 2:8!14 +TIT 2:9!1 +TIT 2:9!2 +TIT 2:9!3 +TIT 2:9!4 +TIT 2:9!5 +TIT 2:9!6 +TIT 2:9!7 +TIT 2:9!8 +TIT 2:9!9 +TIT 2:9!10 +TIT 2:10!1 +TIT 2:10!2 +TIT 2:10!3 +TIT 2:10!4 +TIT 2:10!5 +TIT 2:10!7 +TIT 2:10!6 +TIT 2:10!8 +TIT 2:10!9 +TIT 2:10!10 +TIT 2:10!11 +TIT 2:10!12 +TIT 2:10!13 +TIT 2:10!14 +TIT 2:10!15 +TIT 2:10!16 +TIT 2:10!17 +TIT 2:10!18 +TIT 2:11!2 +TIT 2:11!1 +TIT 2:11!3 +TIT 2:11!4 +TIT 2:11!5 +TIT 2:11!6 +TIT 2:11!7 +TIT 2:11!8 +TIT 2:11!9 +TIT 2:12!1 +TIT 2:12!2 +TIT 2:12!3 +TIT 2:12!4 +TIT 2:12!5 +TIT 2:12!6 +TIT 2:12!7 +TIT 2:12!8 +TIT 2:12!9 +TIT 2:12!10 +TIT 2:12!11 +TIT 2:12!12 +TIT 2:12!13 +TIT 2:12!14 +TIT 2:12!15 +TIT 2:12!16 +TIT 2:12!17 +TIT 2:12!18 +TIT 2:12!19 +TIT 2:12!20 +TIT 2:13!1 +TIT 2:13!2 +TIT 2:13!3 +TIT 2:13!4 +TIT 2:13!5 +TIT 2:13!6 +TIT 2:13!7 +TIT 2:13!8 +TIT 2:13!9 +TIT 2:13!10 +TIT 2:13!11 +TIT 2:13!12 +TIT 2:13!13 +TIT 2:13!14 +TIT 2:13!15 +TIT 2:13!16 +TIT 2:14!1 +TIT 2:14!2 +TIT 2:14!3 +TIT 2:14!4 +TIT 2:14!5 +TIT 2:14!6 +TIT 2:14!7 +TIT 2:14!8 +TIT 2:14!9 +TIT 2:14!10 +TIT 2:14!11 +TIT 2:14!12 +TIT 2:14!13 +TIT 2:14!14 +TIT 2:14!15 +TIT 2:14!16 +TIT 2:14!17 +TIT 2:14!18 +TIT 2:14!19 +TIT 2:15!1 +TIT 2:15!2 +TIT 2:15!3 +TIT 2:15!4 +TIT 2:15!5 +TIT 2:15!6 +TIT 2:15!7 +TIT 2:15!8 +TIT 2:15!9 +TIT 2:15!10 +TIT 2:15!11 +TIT 2:15!12 +TIT 3:1!1 +TIT 3:1!2 +TIT 3:1!3 +TIT 3:1!4 +TIT 3:1!5 +TIT 3:1!6 +TIT 3:1!7 +TIT 3:1!8 +TIT 3:1!9 +TIT 3:1!10 +TIT 3:1!11 +TIT 3:1!12 +TIT 3:2!1 +TIT 3:2!2 +TIT 3:2!3 +TIT 3:2!4 +TIT 3:2!5 +TIT 3:2!6 +TIT 3:2!8 +TIT 3:2!7 +TIT 3:2!9 +TIT 3:2!10 +TIT 3:2!11 +TIT 3:3!2 +TIT 3:3!1 +TIT 3:3!3 +TIT 3:3!4 +TIT 3:3!5 +TIT 3:3!6 +TIT 3:3!7 +TIT 3:3!8 +TIT 3:3!9 +TIT 3:3!10 +TIT 3:3!11 +TIT 3:3!12 +TIT 3:3!13 +TIT 3:3!14 +TIT 3:3!15 +TIT 3:3!16 +TIT 3:3!17 +TIT 3:3!18 +TIT 3:3!19 +TIT 3:3!20 +TIT 3:3!21 +TIT 3:4!2 +TIT 3:4!1 +TIT 3:4!3 +TIT 3:4!4 +TIT 3:4!5 +TIT 3:4!6 +TIT 3:4!7 +TIT 3:4!9 +TIT 3:4!10 +TIT 3:4!11 +TIT 3:4!12 +TIT 3:4!8 +TIT 3:5!1 +TIT 3:5!2 +TIT 3:5!3 +TIT 3:5!4 +TIT 3:5!5 +TIT 3:5!6 +TIT 3:5!7 +TIT 3:5!8 +TIT 3:5!9 +TIT 3:5!10 +TIT 3:5!11 +TIT 3:5!12 +TIT 3:5!13 +TIT 3:5!14 +TIT 3:5!15 +TIT 3:5!16 +TIT 3:5!17 +TIT 3:5!18 +TIT 3:5!19 +TIT 3:5!20 +TIT 3:5!21 +TIT 3:5!22 +TIT 3:5!23 +TIT 3:6!1 +TIT 3:6!2 +TIT 3:6!3 +TIT 3:6!4 +TIT 3:6!5 +TIT 3:6!6 +TIT 3:6!7 +TIT 3:6!8 +TIT 3:6!9 +TIT 3:6!10 +TIT 3:6!11 +TIT 3:7!1 +TIT 3:7!2 +TIT 3:7!3 +TIT 3:7!4 +TIT 3:7!5 +TIT 3:7!6 +TIT 3:7!7 +TIT 3:7!8 +TIT 3:7!9 +TIT 3:7!10 +TIT 3:7!11 +TIT 3:8!1 +TIT 3:8!2 +TIT 3:8!3 +TIT 3:8!4 +TIT 3:8!5 +TIT 3:8!6 +TIT 3:8!7 +TIT 3:8!8 +TIT 3:8!9 +TIT 3:8!10 +TIT 3:8!11 +TIT 3:8!12 +TIT 3:8!13 +TIT 3:8!14 +TIT 3:8!15 +TIT 3:8!16 +TIT 3:8!17 +TIT 3:8!18 +TIT 3:8!19 +TIT 3:8!20 +TIT 3:8!21 +TIT 3:8!22 +TIT 3:8!23 +TIT 3:8!24 +TIT 3:9!2 +TIT 3:9!1 +TIT 3:9!3 +TIT 3:9!4 +TIT 3:9!5 +TIT 3:9!6 +TIT 3:9!7 +TIT 3:9!8 +TIT 3:9!9 +TIT 3:9!10 +TIT 3:9!11 +TIT 3:9!13 +TIT 3:9!12 +TIT 3:9!14 +TIT 3:9!15 +TIT 3:9!16 +TIT 3:10!1 +TIT 3:10!2 +TIT 3:10!3 +TIT 3:10!4 +TIT 3:10!5 +TIT 3:10!6 +TIT 3:10!7 +TIT 3:10!8 +TIT 3:11!1 +TIT 3:11!2 +TIT 3:11!4 +TIT 3:11!5 +TIT 3:11!3 +TIT 3:11!6 +TIT 3:11!7 +TIT 3:11!8 +TIT 3:11!9 +TIT 3:12!1 +TIT 3:12!2 +TIT 3:12!4 +TIT 3:12!5 +TIT 3:12!3 +TIT 3:12!6 +TIT 3:12!7 +TIT 3:12!8 +TIT 3:12!9 +TIT 3:12!10 +TIT 3:12!11 +TIT 3:12!12 +TIT 3:12!13 +TIT 3:12!15 +TIT 3:12!14 +TIT 3:12!17 +TIT 3:12!16 +TIT 3:13!1 +TIT 3:13!2 +TIT 3:13!3 +TIT 3:13!4 +TIT 3:13!5 +TIT 3:13!6 +TIT 3:13!7 +TIT 3:13!8 +TIT 3:13!9 +TIT 3:13!10 +TIT 3:13!11 +TIT 3:14!2 +TIT 3:14!1 +TIT 3:14!3 +TIT 3:14!4 +TIT 3:14!5 +TIT 3:14!6 +TIT 3:14!7 +TIT 3:14!8 +TIT 3:14!9 +TIT 3:14!10 +TIT 3:14!11 +TIT 3:14!12 +TIT 3:14!13 +TIT 3:14!14 +TIT 3:14!15 +TIT 3:14!16 +TIT 3:15!1 +TIT 3:15!2 +TIT 3:15!3 +TIT 3:15!4 +TIT 3:15!5 +TIT 3:15!6 +TIT 3:15!7 +TIT 3:15!8 +TIT 3:15!9 +TIT 3:15!10 +TIT 3:15!11 +TIT 3:15!12 +TIT 3:15!13 +TIT 3:15!14 +TIT 3:15!15 +TIT 3:15!16 +TIT 3:15!17 +PHM 1:1!1 +PHM 1:1!2 +PHM 1:1!3 +PHM 1:1!4 +PHM 1:1!5 +PHM 1:1!6 +PHM 1:1!7 +PHM 1:1!8 +PHM 1:1!9 +PHM 1:1!10 +PHM 1:1!11 +PHM 1:1!12 +PHM 1:1!13 +PHM 1:1!14 +PHM 1:2!1 +PHM 1:2!2 +PHM 1:2!3 +PHM 1:2!4 +PHM 1:2!5 +PHM 1:2!6 +PHM 1:2!7 +PHM 1:2!8 +PHM 1:2!9 +PHM 1:2!10 +PHM 1:2!11 +PHM 1:2!12 +PHM 1:2!13 +PHM 1:2!14 +PHM 1:2!15 +PHM 1:3!2 +PHM 1:3!1 +PHM 1:3!3 +PHM 1:3!4 +PHM 1:3!5 +PHM 1:3!6 +PHM 1:3!7 +PHM 1:3!8 +PHM 1:3!9 +PHM 1:3!10 +PHM 1:3!11 +PHM 1:3!12 +PHM 1:4!1 +PHM 1:4!2 +PHM 1:4!3 +PHM 1:4!4 +PHM 1:4!5 +PHM 1:4!6 +PHM 1:4!7 +PHM 1:4!8 +PHM 1:4!9 +PHM 1:4!10 +PHM 1:4!11 +PHM 1:4!12 +PHM 1:5!1 +PHM 1:5!2 +PHM 1:5!3 +PHM 1:5!4 +PHM 1:5!5 +PHM 1:5!6 +PHM 1:5!7 +PHM 1:5!8 +PHM 1:5!9 +PHM 1:5!10 +PHM 1:5!11 +PHM 1:5!12 +PHM 1:5!13 +PHM 1:5!14 +PHM 1:5!15 +PHM 1:5!16 +PHM 1:5!17 +PHM 1:5!18 +PHM 1:6!1 +PHM 1:6!2 +PHM 1:6!3 +PHM 1:6!4 +PHM 1:6!5 +PHM 1:6!6 +PHM 1:6!7 +PHM 1:6!8 +PHM 1:6!9 +PHM 1:6!10 +PHM 1:6!11 +PHM 1:6!12 +PHM 1:6!13 +PHM 1:6!14 +PHM 1:6!15 +PHM 1:6!16 +PHM 1:6!17 +PHM 1:7!2 +PHM 1:7!1 +PHM 1:7!3 +PHM 1:7!5 +PHM 1:7!6 +PHM 1:7!4 +PHM 1:7!7 +PHM 1:7!8 +PHM 1:7!9 +PHM 1:7!10 +PHM 1:7!11 +PHM 1:7!12 +PHM 1:7!13 +PHM 1:7!14 +PHM 1:7!15 +PHM 1:7!16 +PHM 1:7!17 +PHM 1:7!18 +PHM 1:7!19 +PHM 1:8!1 +PHM 1:8!2 +PHM 1:8!3 +PHM 1:8!4 +PHM 1:8!5 +PHM 1:8!6 +PHM 1:8!7 +PHM 1:8!8 +PHM 1:8!9 +PHM 1:8!10 +PHM 1:9!1 +PHM 1:9!2 +PHM 1:9!3 +PHM 1:9!4 +PHM 1:9!5 +PHM 1:9!6 +PHM 1:9!7 +PHM 1:9!8 +PHM 1:9!9 +PHM 1:9!10 +PHM 1:9!12 +PHM 1:9!11 +PHM 1:9!13 +PHM 1:9!14 +PHM 1:9!15 +PHM 1:9!16 +PHM 1:10!1 +PHM 1:10!2 +PHM 1:10!3 +PHM 1:10!4 +PHM 1:10!5 +PHM 1:10!6 +PHM 1:10!8 +PHM 1:10!9 +PHM 1:10!10 +PHM 1:10!11 +PHM 1:10!7 +PHM 1:10!12 +PHM 1:11!1 +PHM 1:11!2 +PHM 1:11!3 +PHM 1:11!4 +PHM 1:11!6 +PHM 1:11!5 +PHM 1:11!7 +PHM 1:11!8 +PHM 1:11!9 +PHM 1:11!10 +PHM 1:11!11 +PHM 1:12!2 +PHM 1:12!3 +PHM 1:12!1 +PHM 1:12!4 +PHM 1:12!5 +PHM 1:12!6 +PHM 1:12!7 +PHM 1:12!8 +PHM 1:12!9 +PHM 1:13!2 +PHM 1:13!3 +PHM 1:13!1 +PHM 1:13!4 +PHM 1:13!5 +PHM 1:13!6 +PHM 1:13!7 +PHM 1:13!8 +PHM 1:13!9 +PHM 1:13!10 +PHM 1:13!11 +PHM 1:13!12 +PHM 1:13!13 +PHM 1:13!14 +PHM 1:13!15 +PHM 1:13!16 +PHM 1:14!2 +PHM 1:14!1 +PHM 1:14!3 +PHM 1:14!4 +PHM 1:14!5 +PHM 1:14!6 +PHM 1:14!8 +PHM 1:14!7 +PHM 1:14!9 +PHM 1:14!10 +PHM 1:14!11 +PHM 1:14!12 +PHM 1:14!13 +PHM 1:14!14 +PHM 1:14!15 +PHM 1:14!16 +PHM 1:14!17 +PHM 1:14!18 +PHM 1:14!19 +PHM 1:14!20 +PHM 1:15!2 +PHM 1:15!1 +PHM 1:15!3 +PHM 1:15!4 +PHM 1:15!5 +PHM 1:15!6 +PHM 1:15!7 +PHM 1:15!8 +PHM 1:15!9 +PHM 1:15!10 +PHM 1:15!11 +PHM 1:16!1 +PHM 1:16!2 +PHM 1:16!3 +PHM 1:16!4 +PHM 1:16!5 +PHM 1:16!6 +PHM 1:16!7 +PHM 1:16!8 +PHM 1:16!9 +PHM 1:16!10 +PHM 1:16!12 +PHM 1:16!11 +PHM 1:16!13 +PHM 1:16!14 +PHM 1:16!15 +PHM 1:16!16 +PHM 1:16!17 +PHM 1:16!18 +PHM 1:16!19 +PHM 1:16!20 +PHM 1:17!2 +PHM 1:17!1 +PHM 1:17!3 +PHM 1:17!4 +PHM 1:17!5 +PHM 1:17!6 +PHM 1:17!7 +PHM 1:17!8 +PHM 1:17!9 +PHM 1:18!2 +PHM 1:18!1 +PHM 1:18!3 +PHM 1:18!5 +PHM 1:18!4 +PHM 1:18!6 +PHM 1:18!7 +PHM 1:18!8 +PHM 1:18!9 +PHM 1:18!10 +PHM 1:19!1 +PHM 1:19!2 +PHM 1:19!3 +PHM 1:19!4 +PHM 1:19!5 +PHM 1:19!6 +PHM 1:19!7 +PHM 1:19!8 +PHM 1:19!9 +PHM 1:19!10 +PHM 1:19!11 +PHM 1:19!12 +PHM 1:19!13 +PHM 1:19!14 +PHM 1:19!15 +PHM 1:19!16 +PHM 1:19!17 +PHM 1:20!1 +PHM 1:20!2 +PHM 1:20!3 +PHM 1:20!4 +PHM 1:20!5 +PHM 1:20!6 +PHM 1:20!7 +PHM 1:20!8 +PHM 1:20!9 +PHM 1:20!10 +PHM 1:20!11 +PHM 1:20!12 +PHM 1:20!13 +PHM 1:21!1 +PHM 1:21!2 +PHM 1:21!3 +PHM 1:21!4 +PHM 1:21!5 +PHM 1:21!6 +PHM 1:21!7 +PHM 1:21!8 +PHM 1:21!9 +PHM 1:21!10 +PHM 1:21!11 +PHM 1:21!12 +PHM 1:21!13 +PHM 1:22!2 +PHM 1:22!1 +PHM 1:22!3 +PHM 1:22!4 +PHM 1:22!5 +PHM 1:22!6 +PHM 1:22!8 +PHM 1:22!7 +PHM 1:22!9 +PHM 1:22!10 +PHM 1:22!11 +PHM 1:22!12 +PHM 1:22!13 +PHM 1:22!14 +PHM 1:22!15 +PHM 1:23!1 +PHM 1:23!2 +PHM 1:23!3 +PHM 1:23!4 +PHM 1:23!5 +PHM 1:23!6 +PHM 1:23!7 +PHM 1:23!8 +PHM 1:23!9 +PHM 1:24!1 +PHM 1:24!2 +PHM 1:24!3 +PHM 1:24!4 +PHM 1:24!5 +PHM 1:24!6 +PHM 1:24!7 +PHM 1:25!1 +PHM 1:25!2 +PHM 1:25!3 +PHM 1:25!4 +PHM 1:25!5 +PHM 1:25!6 +PHM 1:25!7 +PHM 1:25!8 +PHM 1:25!9 +PHM 1:25!10 +HEB 1:1!1 +HEB 1:1!2 +HEB 1:1!3 +HEB 1:1!4 +HEB 1:1!7 +HEB 1:1!8 +HEB 1:1!9 +HEB 1:1!10 +HEB 1:1!11 +HEB 1:1!12 +HEB 1:1!5 +HEB 1:1!6 +HEB 1:2!1 +HEB 1:2!2 +HEB 1:2!3 +HEB 1:2!4 +HEB 1:2!5 +HEB 1:2!6 +HEB 1:2!7 +HEB 1:2!8 +HEB 1:2!9 +HEB 1:2!10 +HEB 1:2!11 +HEB 1:2!12 +HEB 1:2!13 +HEB 1:2!14 +HEB 1:2!15 +HEB 1:2!16 +HEB 1:2!17 +HEB 1:2!18 +HEB 1:2!19 +HEB 1:3!1 +HEB 1:3!2 +HEB 1:3!3 +HEB 1:3!4 +HEB 1:3!5 +HEB 1:3!6 +HEB 1:3!7 +HEB 1:3!8 +HEB 1:3!9 +HEB 1:3!10 +HEB 1:3!12 +HEB 1:3!11 +HEB 1:3!13 +HEB 1:3!14 +HEB 1:3!15 +HEB 1:3!16 +HEB 1:3!17 +HEB 1:3!18 +HEB 1:3!19 +HEB 1:3!20 +HEB 1:3!21 +HEB 1:3!22 +HEB 1:3!23 +HEB 1:3!24 +HEB 1:3!25 +HEB 1:3!26 +HEB 1:3!27 +HEB 1:3!28 +HEB 1:3!29 +HEB 1:3!30 +HEB 1:4!1 +HEB 1:4!2 +HEB 1:4!3 +HEB 1:4!4 +HEB 1:4!5 +HEB 1:4!6 +HEB 1:4!7 +HEB 1:4!11 +HEB 1:4!8 +HEB 1:4!9 +HEB 1:4!10 +HEB 1:5!2 +HEB 1:5!1 +HEB 1:5!5 +HEB 1:5!6 +HEB 1:5!3 +HEB 1:5!4 +HEB 1:5!7 +HEB 1:5!8 +HEB 1:5!9 +HEB 1:5!10 +HEB 1:5!11 +HEB 1:5!12 +HEB 1:5!13 +HEB 1:5!14 +HEB 1:5!15 +HEB 1:5!16 +HEB 1:5!17 +HEB 1:5!18 +HEB 1:5!19 +HEB 1:5!20 +HEB 1:5!21 +HEB 1:5!22 +HEB 1:5!23 +HEB 1:5!24 +HEB 1:5!25 +HEB 1:5!26 +HEB 1:5!27 +HEB 1:6!2 +HEB 1:6!1 +HEB 1:6!3 +HEB 1:6!4 +HEB 1:6!5 +HEB 1:6!6 +HEB 1:6!7 +HEB 1:6!8 +HEB 1:6!9 +HEB 1:6!10 +HEB 1:6!11 +HEB 1:6!12 +HEB 1:6!13 +HEB 1:6!14 +HEB 1:6!15 +HEB 1:6!16 +HEB 1:7!1 +HEB 1:7!3 +HEB 1:7!2 +HEB 1:7!4 +HEB 1:7!5 +HEB 1:7!6 +HEB 1:7!7 +HEB 1:7!8 +HEB 1:7!9 +HEB 1:7!10 +HEB 1:7!11 +HEB 1:7!12 +HEB 1:7!13 +HEB 1:7!14 +HEB 1:7!15 +HEB 1:7!16 +HEB 1:7!17 +HEB 1:7!18 +HEB 1:8!2 +HEB 1:8!1 +HEB 1:8!3 +HEB 1:8!4 +HEB 1:8!8 +HEB 1:8!9 +HEB 1:8!5 +HEB 1:8!6 +HEB 1:8!7 +HEB 1:8!10 +HEB 1:8!11 +HEB 1:8!12 +HEB 1:8!13 +HEB 1:8!14 +HEB 1:8!15 +HEB 1:8!16 +HEB 1:8!17 +HEB 1:8!18 +HEB 1:8!19 +HEB 1:8!20 +HEB 1:8!21 +HEB 1:8!22 +HEB 1:8!23 +HEB 1:9!1 +HEB 1:9!2 +HEB 1:9!3 +HEB 1:9!4 +HEB 1:9!5 +HEB 1:9!6 +HEB 1:9!7 +HEB 1:9!8 +HEB 1:9!9 +HEB 1:9!10 +HEB 1:9!11 +HEB 1:9!12 +HEB 1:9!13 +HEB 1:9!14 +HEB 1:9!15 +HEB 1:9!16 +HEB 1:9!17 +HEB 1:9!18 +HEB 1:9!19 +HEB 1:9!20 +HEB 1:10!1 +HEB 1:10!5 +HEB 1:10!2 +HEB 1:10!3 +HEB 1:10!4 +HEB 1:10!6 +HEB 1:10!7 +HEB 1:10!8 +HEB 1:10!9 +HEB 1:10!10 +HEB 1:10!11 +HEB 1:10!12 +HEB 1:10!13 +HEB 1:10!14 +HEB 1:10!15 +HEB 1:10!16 +HEB 1:11!1 +HEB 1:11!2 +HEB 1:11!4 +HEB 1:11!3 +HEB 1:11!5 +HEB 1:11!6 +HEB 1:11!7 +HEB 1:11!10 +HEB 1:11!8 +HEB 1:11!9 +HEB 1:12!1 +HEB 1:12!2 +HEB 1:12!3 +HEB 1:12!4 +HEB 1:12!5 +HEB 1:12!6 +HEB 1:12!7 +HEB 1:12!8 +HEB 1:12!9 +HEB 1:12!11 +HEB 1:12!10 +HEB 1:12!12 +HEB 1:12!13 +HEB 1:12!14 +HEB 1:12!15 +HEB 1:12!16 +HEB 1:12!17 +HEB 1:12!18 +HEB 1:12!19 +HEB 1:12!20 +HEB 1:13!3 +HEB 1:13!1 +HEB 1:13!2 +HEB 1:13!4 +HEB 1:13!5 +HEB 1:13!6 +HEB 1:13!7 +HEB 1:13!8 +HEB 1:13!9 +HEB 1:13!10 +HEB 1:13!11 +HEB 1:13!12 +HEB 1:13!13 +HEB 1:13!14 +HEB 1:13!15 +HEB 1:13!16 +HEB 1:13!17 +HEB 1:13!18 +HEB 1:13!19 +HEB 1:13!20 +HEB 1:13!21 +HEB 1:14!1 +HEB 1:14!2 +HEB 1:14!3 +HEB 1:14!4 +HEB 1:14!5 +HEB 1:14!6 +HEB 1:14!7 +HEB 1:14!8 +HEB 1:14!9 +HEB 1:14!10 +HEB 1:14!11 +HEB 1:14!12 +HEB 1:14!13 +HEB 2:1!1 +HEB 2:1!2 +HEB 2:1!3 +HEB 2:1!4 +HEB 2:1!5 +HEB 2:1!6 +HEB 2:1!7 +HEB 2:1!8 +HEB 2:1!9 +HEB 2:1!10 +HEB 2:1!11 +HEB 2:2!2 +HEB 2:2!1 +HEB 2:2!3 +HEB 2:2!4 +HEB 2:2!5 +HEB 2:2!6 +HEB 2:2!7 +HEB 2:2!8 +HEB 2:2!9 +HEB 2:2!10 +HEB 2:2!11 +HEB 2:2!12 +HEB 2:2!13 +HEB 2:2!14 +HEB 2:2!15 +HEB 2:2!16 +HEB 2:2!17 +HEB 2:3!1 +HEB 2:3!2 +HEB 2:3!3 +HEB 2:3!5 +HEB 2:3!4 +HEB 2:3!6 +HEB 2:3!7 +HEB 2:3!8 +HEB 2:3!9 +HEB 2:3!10 +HEB 2:3!11 +HEB 2:3!12 +HEB 2:3!13 +HEB 2:3!14 +HEB 2:3!15 +HEB 2:3!16 +HEB 2:3!17 +HEB 2:3!18 +HEB 2:3!19 +HEB 2:4!1 +HEB 2:4!2 +HEB 2:4!3 +HEB 2:4!5 +HEB 2:4!4 +HEB 2:4!6 +HEB 2:4!7 +HEB 2:4!8 +HEB 2:4!9 +HEB 2:4!10 +HEB 2:4!11 +HEB 2:4!12 +HEB 2:4!13 +HEB 2:4!14 +HEB 2:4!15 +HEB 2:4!16 +HEB 2:4!17 +HEB 2:4!18 +HEB 2:5!2 +HEB 2:5!1 +HEB 2:5!3 +HEB 2:5!4 +HEB 2:5!5 +HEB 2:5!6 +HEB 2:5!7 +HEB 2:5!8 +HEB 2:5!9 +HEB 2:5!10 +HEB 2:5!11 +HEB 2:6!2 +HEB 2:6!1 +HEB 2:6!3 +HEB 2:6!4 +HEB 2:6!5 +HEB 2:6!6 +HEB 2:6!7 +HEB 2:6!8 +HEB 2:6!9 +HEB 2:6!10 +HEB 2:6!11 +HEB 2:6!12 +HEB 2:6!13 +HEB 2:6!14 +HEB 2:6!15 +HEB 2:6!16 +HEB 2:6!17 +HEB 2:7!1 +HEB 2:7!2 +HEB 2:7!3 +HEB 2:7!4 +HEB 2:7!5 +HEB 2:7!6 +HEB 2:7!7 +HEB 2:7!8 +HEB 2:7!9 +HEB 2:7!10 +HEB 2:7!11 +HEB 2:8!1 +HEB 2:8!2 +HEB 2:8!3 +HEB 2:8!4 +HEB 2:8!5 +HEB 2:8!6 +HEB 2:8!9 +HEB 2:8!7 +HEB 2:8!8 +HEB 2:8!10 +HEB 2:8!11 +HEB 2:8!12 +HEB 2:8!13 +HEB 2:8!14 +HEB 2:8!15 +HEB 2:8!16 +HEB 2:8!17 +HEB 2:8!19 +HEB 2:8!18 +HEB 2:8!20 +HEB 2:8!21 +HEB 2:8!22 +HEB 2:8!23 +HEB 2:8!24 +HEB 2:8!25 +HEB 2:9!2 +HEB 2:9!8 +HEB 2:9!1 +HEB 2:9!3 +HEB 2:9!4 +HEB 2:9!5 +HEB 2:9!6 +HEB 2:9!7 +HEB 2:9!9 +HEB 2:9!10 +HEB 2:9!11 +HEB 2:9!12 +HEB 2:9!13 +HEB 2:9!14 +HEB 2:9!15 +HEB 2:9!16 +HEB 2:9!17 +HEB 2:9!18 +HEB 2:9!19 +HEB 2:9!20 +HEB 2:9!21 +HEB 2:9!22 +HEB 2:9!23 +HEB 2:9!24 +HEB 2:9!25 +HEB 2:10!2 +HEB 2:10!1 +HEB 2:10!3 +HEB 2:10!4 +HEB 2:10!5 +HEB 2:10!6 +HEB 2:10!7 +HEB 2:10!8 +HEB 2:10!9 +HEB 2:10!10 +HEB 2:10!11 +HEB 2:10!12 +HEB 2:10!13 +HEB 2:10!14 +HEB 2:10!15 +HEB 2:10!16 +HEB 2:10!17 +HEB 2:10!18 +HEB 2:10!19 +HEB 2:10!20 +HEB 2:10!21 +HEB 2:10!22 +HEB 2:10!23 +HEB 2:10!24 +HEB 2:10!25 +HEB 2:11!3 +HEB 2:11!2 +HEB 2:11!1 +HEB 2:11!4 +HEB 2:11!5 +HEB 2:11!6 +HEB 2:11!7 +HEB 2:11!8 +HEB 2:11!9 +HEB 2:11!10 +HEB 2:11!11 +HEB 2:11!12 +HEB 2:11!13 +HEB 2:11!14 +HEB 2:11!15 +HEB 2:11!16 +HEB 2:11!17 +HEB 2:11!18 +HEB 2:12!1 +HEB 2:12!2 +HEB 2:12!3 +HEB 2:12!4 +HEB 2:12!5 +HEB 2:12!6 +HEB 2:12!7 +HEB 2:12!8 +HEB 2:12!9 +HEB 2:12!10 +HEB 2:12!11 +HEB 2:12!12 +HEB 2:12!13 +HEB 2:13!1 +HEB 2:13!2 +HEB 2:13!3 +HEB 2:13!4 +HEB 2:13!5 +HEB 2:13!6 +HEB 2:13!7 +HEB 2:13!8 +HEB 2:13!9 +HEB 2:13!10 +HEB 2:13!11 +HEB 2:13!12 +HEB 2:13!13 +HEB 2:13!14 +HEB 2:13!15 +HEB 2:13!16 +HEB 2:13!17 +HEB 2:13!18 +HEB 2:13!19 +HEB 2:14!2 +HEB 2:14!1 +HEB 2:14!3 +HEB 2:14!4 +HEB 2:14!5 +HEB 2:14!6 +HEB 2:14!7 +HEB 2:14!8 +HEB 2:14!9 +HEB 2:14!10 +HEB 2:14!11 +HEB 2:14!12 +HEB 2:14!13 +HEB 2:14!14 +HEB 2:14!15 +HEB 2:14!16 +HEB 2:14!17 +HEB 2:14!18 +HEB 2:14!19 +HEB 2:14!20 +HEB 2:14!21 +HEB 2:14!22 +HEB 2:14!24 +HEB 2:14!25 +HEB 2:14!23 +HEB 2:14!26 +HEB 2:14!27 +HEB 2:14!28 +HEB 2:14!29 +HEB 2:15!1 +HEB 2:15!2 +HEB 2:15!3 +HEB 2:15!4 +HEB 2:15!5 +HEB 2:15!6 +HEB 2:15!7 +HEB 2:15!8 +HEB 2:15!9 +HEB 2:15!10 +HEB 2:15!11 +HEB 2:15!13 +HEB 2:15!12 +HEB 2:16!2 +HEB 2:16!1 +HEB 2:16!3 +HEB 2:16!4 +HEB 2:16!5 +HEB 2:16!6 +HEB 2:16!7 +HEB 2:16!8 +HEB 2:16!9 +HEB 2:17!1 +HEB 2:17!2 +HEB 2:17!3 +HEB 2:17!4 +HEB 2:17!5 +HEB 2:17!6 +HEB 2:17!7 +HEB 2:17!8 +HEB 2:17!10 +HEB 2:17!9 +HEB 2:17!11 +HEB 2:17!12 +HEB 2:17!13 +HEB 2:17!14 +HEB 2:17!15 +HEB 2:17!16 +HEB 2:17!17 +HEB 2:17!18 +HEB 2:17!19 +HEB 2:17!20 +HEB 2:17!21 +HEB 2:17!22 +HEB 2:17!23 +HEB 2:17!24 +HEB 2:18!3 +HEB 2:18!1 +HEB 2:18!2 +HEB 2:18!4 +HEB 2:18!5 +HEB 2:18!6 +HEB 2:18!7 +HEB 2:18!8 +HEB 2:18!9 +HEB 2:18!10 +HEB 3:1!1 +HEB 3:1!2 +HEB 3:1!3 +HEB 3:1!4 +HEB 3:1!5 +HEB 3:1!6 +HEB 3:1!7 +HEB 3:1!8 +HEB 3:1!9 +HEB 3:1!10 +HEB 3:1!11 +HEB 3:1!12 +HEB 3:1!13 +HEB 3:1!14 +HEB 3:1!15 +HEB 3:2!1 +HEB 3:2!2 +HEB 3:2!3 +HEB 3:2!4 +HEB 3:2!5 +HEB 3:2!6 +HEB 3:2!7 +HEB 3:2!8 +HEB 3:2!9 +HEB 3:2!10 +HEB 3:2!11 +HEB 3:2!12 +HEB 3:2!13 +HEB 3:3!2 +HEB 3:3!1 +HEB 3:3!4 +HEB 3:3!3 +HEB 3:3!5 +HEB 3:3!6 +HEB 3:3!7 +HEB 3:3!8 +HEB 3:3!9 +HEB 3:3!10 +HEB 3:3!11 +HEB 3:3!12 +HEB 3:3!13 +HEB 3:3!14 +HEB 3:3!15 +HEB 3:3!16 +HEB 3:3!17 +HEB 3:4!2 +HEB 3:4!1 +HEB 3:4!3 +HEB 3:4!4 +HEB 3:4!5 +HEB 3:4!6 +HEB 3:4!8 +HEB 3:4!7 +HEB 3:4!9 +HEB 3:4!10 +HEB 3:4!11 +HEB 3:5!1 +HEB 3:5!3 +HEB 3:5!2 +HEB 3:5!4 +HEB 3:5!5 +HEB 3:5!6 +HEB 3:5!7 +HEB 3:5!8 +HEB 3:5!9 +HEB 3:5!10 +HEB 3:5!11 +HEB 3:5!12 +HEB 3:5!13 +HEB 3:5!14 +HEB 3:5!15 +HEB 3:6!2 +HEB 3:6!1 +HEB 3:6!3 +HEB 3:6!4 +HEB 3:6!5 +HEB 3:6!6 +HEB 3:6!7 +HEB 3:6!8 +HEB 3:6!9 +HEB 3:6!10 +HEB 3:6!11 +HEB 3:6!12 +HEB 3:6!13 +HEB 3:6!14 +HEB 3:6!15 +HEB 3:6!16 +HEB 3:6!17 +HEB 3:6!18 +HEB 3:6!19 +HEB 3:6!20 +HEB 3:6!21 +HEB 3:6!22 +HEB 3:6!23 +HEB 3:6!24 +HEB 3:7!1 +HEB 3:7!2 +HEB 3:7!3 +HEB 3:7!4 +HEB 3:7!5 +HEB 3:7!6 +HEB 3:7!7 +HEB 3:7!9 +HEB 3:7!8 +HEB 3:7!10 +HEB 3:7!11 +HEB 3:7!12 +HEB 3:7!13 +HEB 3:8!1 +HEB 3:8!2 +HEB 3:8!3 +HEB 3:8!4 +HEB 3:8!5 +HEB 3:8!6 +HEB 3:8!7 +HEB 3:8!8 +HEB 3:8!9 +HEB 3:8!10 +HEB 3:8!11 +HEB 3:8!12 +HEB 3:8!13 +HEB 3:8!14 +HEB 3:8!15 +HEB 3:8!16 +HEB 3:8!17 +HEB 3:9!1 +HEB 3:9!2 +HEB 3:9!3 +HEB 3:9!4 +HEB 3:9!5 +HEB 3:9!6 +HEB 3:9!7 +HEB 3:9!8 +HEB 3:9!9 +HEB 3:9!10 +HEB 3:9!11 +HEB 3:9!12 +HEB 3:10!1 +HEB 3:10!2 +HEB 3:10!3 +HEB 3:10!4 +HEB 3:10!5 +HEB 3:10!6 +HEB 3:10!7 +HEB 3:10!8 +HEB 3:10!9 +HEB 3:10!10 +HEB 3:10!11 +HEB 3:10!12 +HEB 3:10!13 +HEB 3:10!15 +HEB 3:10!14 +HEB 3:10!16 +HEB 3:10!17 +HEB 3:10!18 +HEB 3:10!19 +HEB 3:10!20 +HEB 3:11!1 +HEB 3:11!2 +HEB 3:11!3 +HEB 3:11!4 +HEB 3:11!5 +HEB 3:11!6 +HEB 3:11!7 +HEB 3:11!8 +HEB 3:11!9 +HEB 3:11!10 +HEB 3:11!11 +HEB 3:11!12 +HEB 3:12!1 +HEB 3:12!2 +HEB 3:12!3 +HEB 3:12!4 +HEB 3:12!5 +HEB 3:12!6 +HEB 3:12!7 +HEB 3:12!8 +HEB 3:12!9 +HEB 3:12!10 +HEB 3:12!11 +HEB 3:12!12 +HEB 3:12!13 +HEB 3:12!14 +HEB 3:12!15 +HEB 3:12!16 +HEB 3:12!17 +HEB 3:13!1 +HEB 3:13!2 +HEB 3:13!3 +HEB 3:13!4 +HEB 3:13!5 +HEB 3:13!6 +HEB 3:13!7 +HEB 3:13!8 +HEB 3:13!9 +HEB 3:13!10 +HEB 3:13!11 +HEB 3:13!12 +HEB 3:13!13 +HEB 3:13!14 +HEB 3:13!15 +HEB 3:13!16 +HEB 3:13!17 +HEB 3:13!18 +HEB 3:13!19 +HEB 3:13!20 +HEB 3:14!2 +HEB 3:14!1 +HEB 3:14!3 +HEB 3:14!4 +HEB 3:14!5 +HEB 3:14!6 +HEB 3:14!7 +HEB 3:14!8 +HEB 3:14!9 +HEB 3:14!10 +HEB 3:14!11 +HEB 3:14!12 +HEB 3:14!13 +HEB 3:14!14 +HEB 3:15!1 +HEB 3:15!2 +HEB 3:15!3 +HEB 3:15!5 +HEB 3:15!4 +HEB 3:15!6 +HEB 3:15!7 +HEB 3:15!8 +HEB 3:15!9 +HEB 3:15!10 +HEB 3:15!11 +HEB 3:15!12 +HEB 3:15!13 +HEB 3:15!14 +HEB 3:15!15 +HEB 3:15!16 +HEB 3:15!17 +HEB 3:15!18 +HEB 3:16!2 +HEB 3:16!1 +HEB 3:16!3 +HEB 3:16!4 +HEB 3:16!5 +HEB 3:16!6 +HEB 3:16!7 +HEB 3:16!8 +HEB 3:16!9 +HEB 3:16!10 +HEB 3:16!11 +HEB 3:16!12 +HEB 3:16!13 +HEB 3:17!2 +HEB 3:17!1 +HEB 3:17!3 +HEB 3:17!4 +HEB 3:17!5 +HEB 3:17!6 +HEB 3:17!7 +HEB 3:17!8 +HEB 3:17!9 +HEB 3:17!10 +HEB 3:17!11 +HEB 3:17!12 +HEB 3:17!13 +HEB 3:17!14 +HEB 3:17!15 +HEB 3:18!2 +HEB 3:18!1 +HEB 3:18!3 +HEB 3:18!4 +HEB 3:18!5 +HEB 3:18!6 +HEB 3:18!7 +HEB 3:18!8 +HEB 3:18!9 +HEB 3:18!10 +HEB 3:18!11 +HEB 3:18!12 +HEB 3:18!13 +HEB 3:19!1 +HEB 3:19!2 +HEB 3:19!3 +HEB 3:19!4 +HEB 3:19!5 +HEB 3:19!6 +HEB 3:19!7 +HEB 3:19!8 +HEB 4:1!2 +HEB 4:1!1 +HEB 4:1!3 +HEB 4:1!4 +HEB 4:1!5 +HEB 4:1!6 +HEB 4:1!7 +HEB 4:1!8 +HEB 4:1!9 +HEB 4:1!10 +HEB 4:1!11 +HEB 4:1!12 +HEB 4:1!13 +HEB 4:1!14 +HEB 4:1!15 +HEB 4:1!16 +HEB 4:2!2 +HEB 4:2!1 +HEB 4:2!3 +HEB 4:2!4 +HEB 4:2!5 +HEB 4:2!6 +HEB 4:2!7 +HEB 4:2!8 +HEB 4:2!9 +HEB 4:2!10 +HEB 4:2!11 +HEB 4:2!12 +HEB 4:2!13 +HEB 4:2!14 +HEB 4:2!15 +HEB 4:2!16 +HEB 4:2!17 +HEB 4:2!18 +HEB 4:2!19 +HEB 4:2!20 +HEB 4:3!2 +HEB 4:3!1 +HEB 4:3!3 +HEB 4:3!4 +HEB 4:3!5 +HEB 4:3!6 +HEB 4:3!7 +HEB 4:3!8 +HEB 4:3!9 +HEB 4:3!10 +HEB 4:3!11 +HEB 4:3!12 +HEB 4:3!13 +HEB 4:3!14 +HEB 4:3!15 +HEB 4:3!16 +HEB 4:3!17 +HEB 4:3!18 +HEB 4:3!19 +HEB 4:3!20 +HEB 4:3!21 +HEB 4:3!22 +HEB 4:3!23 +HEB 4:3!24 +HEB 4:3!25 +HEB 4:3!26 +HEB 4:3!27 +HEB 4:3!28 +HEB 4:4!2 +HEB 4:4!1 +HEB 4:4!3 +HEB 4:4!4 +HEB 4:4!5 +HEB 4:4!6 +HEB 4:4!7 +HEB 4:4!8 +HEB 4:4!9 +HEB 4:4!10 +HEB 4:4!11 +HEB 4:4!12 +HEB 4:4!13 +HEB 4:4!14 +HEB 4:4!15 +HEB 4:4!16 +HEB 4:4!17 +HEB 4:4!18 +HEB 4:4!19 +HEB 4:4!20 +HEB 4:4!21 +HEB 4:5!1 +HEB 4:5!2 +HEB 4:5!3 +HEB 4:5!4 +HEB 4:5!5 +HEB 4:5!6 +HEB 4:5!7 +HEB 4:5!8 +HEB 4:5!9 +HEB 4:5!10 +HEB 4:6!2 +HEB 4:6!1 +HEB 4:6!3 +HEB 4:6!4 +HEB 4:6!5 +HEB 4:6!6 +HEB 4:6!7 +HEB 4:6!8 +HEB 4:6!9 +HEB 4:6!10 +HEB 4:6!11 +HEB 4:6!12 +HEB 4:6!13 +HEB 4:6!14 +HEB 4:6!15 +HEB 4:7!1 +HEB 4:7!3 +HEB 4:7!2 +HEB 4:7!4 +HEB 4:7!5 +HEB 4:7!6 +HEB 4:7!7 +HEB 4:7!8 +HEB 4:7!9 +HEB 4:7!10 +HEB 4:7!11 +HEB 4:7!12 +HEB 4:7!13 +HEB 4:7!15 +HEB 4:7!14 +HEB 4:7!16 +HEB 4:7!17 +HEB 4:7!18 +HEB 4:7!19 +HEB 4:7!20 +HEB 4:7!21 +HEB 4:7!22 +HEB 4:7!23 +HEB 4:7!24 +HEB 4:8!2 +HEB 4:8!1 +HEB 4:8!3 +HEB 4:8!4 +HEB 4:8!5 +HEB 4:8!7 +HEB 4:8!6 +HEB 4:8!8 +HEB 4:8!9 +HEB 4:8!13 +HEB 4:8!10 +HEB 4:8!11 +HEB 4:8!12 +HEB 4:9!1 +HEB 4:9!2 +HEB 4:9!3 +HEB 4:9!4 +HEB 4:9!5 +HEB 4:9!6 +HEB 4:9!7 +HEB 4:10!2 +HEB 4:10!1 +HEB 4:10!3 +HEB 4:10!4 +HEB 4:10!5 +HEB 4:10!6 +HEB 4:10!7 +HEB 4:10!8 +HEB 4:10!9 +HEB 4:10!10 +HEB 4:10!11 +HEB 4:10!12 +HEB 4:10!13 +HEB 4:10!14 +HEB 4:10!15 +HEB 4:10!16 +HEB 4:10!17 +HEB 4:10!18 +HEB 4:10!19 +HEB 4:10!20 +HEB 4:11!2 +HEB 4:11!1 +HEB 4:11!3 +HEB 4:11!4 +HEB 4:11!5 +HEB 4:11!6 +HEB 4:11!7 +HEB 4:11!8 +HEB 4:11!9 +HEB 4:11!10 +HEB 4:11!11 +HEB 4:11!12 +HEB 4:11!14 +HEB 4:11!16 +HEB 4:11!17 +HEB 4:11!13 +HEB 4:11!15 +HEB 4:12!2 +HEB 4:12!3 +HEB 4:12!4 +HEB 4:12!5 +HEB 4:12!6 +HEB 4:12!1 +HEB 4:12!7 +HEB 4:12!8 +HEB 4:12!9 +HEB 4:12!10 +HEB 4:12!11 +HEB 4:12!12 +HEB 4:12!13 +HEB 4:12!14 +HEB 4:12!15 +HEB 4:12!16 +HEB 4:12!17 +HEB 4:12!18 +HEB 4:12!19 +HEB 4:12!20 +HEB 4:12!21 +HEB 4:12!23 +HEB 4:12!22 +HEB 4:12!24 +HEB 4:12!25 +HEB 4:12!26 +HEB 4:12!27 +HEB 4:12!28 +HEB 4:12!29 +HEB 4:12!30 +HEB 4:12!31 +HEB 4:13!1 +HEB 4:13!2 +HEB 4:13!3 +HEB 4:13!4 +HEB 4:13!5 +HEB 4:13!6 +HEB 4:13!7 +HEB 4:13!9 +HEB 4:13!8 +HEB 4:13!10 +HEB 4:13!11 +HEB 4:13!12 +HEB 4:13!13 +HEB 4:13!14 +HEB 4:13!15 +HEB 4:13!16 +HEB 4:13!17 +HEB 4:13!18 +HEB 4:13!19 +HEB 4:13!20 +HEB 4:14!2 +HEB 4:14!1 +HEB 4:14!3 +HEB 4:14!4 +HEB 4:14!5 +HEB 4:14!6 +HEB 4:14!7 +HEB 4:14!8 +HEB 4:14!9 +HEB 4:14!10 +HEB 4:14!11 +HEB 4:14!12 +HEB 4:14!13 +HEB 4:14!14 +HEB 4:14!15 +HEB 4:15!2 +HEB 4:15!3 +HEB 4:15!4 +HEB 4:15!1 +HEB 4:15!5 +HEB 4:15!6 +HEB 4:15!7 +HEB 4:15!8 +HEB 4:15!9 +HEB 4:15!10 +HEB 4:15!12 +HEB 4:15!11 +HEB 4:15!13 +HEB 4:15!14 +HEB 4:15!15 +HEB 4:15!16 +HEB 4:15!17 +HEB 4:15!18 +HEB 4:16!2 +HEB 4:16!1 +HEB 4:16!3 +HEB 4:16!4 +HEB 4:16!5 +HEB 4:16!6 +HEB 4:16!7 +HEB 4:16!8 +HEB 4:16!9 +HEB 4:16!10 +HEB 4:16!11 +HEB 4:16!12 +HEB 4:16!13 +HEB 4:16!14 +HEB 4:16!15 +HEB 4:16!16 +HEB 4:16!17 +HEB 5:1!2 +HEB 5:1!1 +HEB 5:1!3 +HEB 5:1!4 +HEB 5:1!5 +HEB 5:1!6 +HEB 5:1!7 +HEB 5:1!8 +HEB 5:1!9 +HEB 5:1!10 +HEB 5:1!11 +HEB 5:1!12 +HEB 5:1!13 +HEB 5:1!14 +HEB 5:1!15 +HEB 5:1!17 +HEB 5:1!16 +HEB 5:1!18 +HEB 5:1!19 +HEB 5:1!20 +HEB 5:1!21 +HEB 5:2!2 +HEB 5:2!1 +HEB 5:2!3 +HEB 5:2!4 +HEB 5:2!5 +HEB 5:2!6 +HEB 5:2!7 +HEB 5:2!8 +HEB 5:2!9 +HEB 5:2!10 +HEB 5:2!11 +HEB 5:3!1 +HEB 5:3!2 +HEB 5:3!3 +HEB 5:3!4 +HEB 5:3!5 +HEB 5:3!6 +HEB 5:3!7 +HEB 5:3!8 +HEB 5:3!9 +HEB 5:3!10 +HEB 5:3!11 +HEB 5:3!12 +HEB 5:3!13 +HEB 5:3!14 +HEB 5:3!15 +HEB 5:4!1 +HEB 5:4!2 +HEB 5:4!3 +HEB 5:4!4 +HEB 5:4!5 +HEB 5:4!6 +HEB 5:4!7 +HEB 5:4!8 +HEB 5:4!9 +HEB 5:4!10 +HEB 5:4!11 +HEB 5:4!12 +HEB 5:4!13 +HEB 5:4!14 +HEB 5:4!15 +HEB 5:5!1 +HEB 5:5!2 +HEB 5:5!3 +HEB 5:5!4 +HEB 5:5!5 +HEB 5:5!6 +HEB 5:5!7 +HEB 5:5!8 +HEB 5:5!9 +HEB 5:5!10 +HEB 5:5!11 +HEB 5:5!12 +HEB 5:5!13 +HEB 5:5!14 +HEB 5:5!15 +HEB 5:5!16 +HEB 5:5!17 +HEB 5:5!18 +HEB 5:5!19 +HEB 5:5!20 +HEB 5:5!21 +HEB 5:5!22 +HEB 5:6!1 +HEB 5:6!2 +HEB 5:6!3 +HEB 5:6!4 +HEB 5:6!5 +HEB 5:6!6 +HEB 5:6!7 +HEB 5:6!8 +HEB 5:6!9 +HEB 5:6!10 +HEB 5:6!11 +HEB 5:6!12 +HEB 5:6!13 +HEB 5:6!14 +HEB 5:7!1 +HEB 5:7!2 +HEB 5:7!3 +HEB 5:7!4 +HEB 5:7!5 +HEB 5:7!6 +HEB 5:7!7 +HEB 5:7!9 +HEB 5:7!8 +HEB 5:7!10 +HEB 5:7!11 +HEB 5:7!12 +HEB 5:7!13 +HEB 5:7!14 +HEB 5:7!15 +HEB 5:7!16 +HEB 5:7!17 +HEB 5:7!18 +HEB 5:7!19 +HEB 5:7!20 +HEB 5:7!21 +HEB 5:7!22 +HEB 5:7!23 +HEB 5:7!24 +HEB 5:7!25 +HEB 5:7!26 +HEB 5:7!27 +HEB 5:7!28 +HEB 5:7!29 +HEB 5:8!1 +HEB 5:8!2 +HEB 5:8!3 +HEB 5:8!4 +HEB 5:8!5 +HEB 5:8!6 +HEB 5:8!7 +HEB 5:8!8 +HEB 5:8!9 +HEB 5:9!1 +HEB 5:9!2 +HEB 5:9!3 +HEB 5:9!4 +HEB 5:9!5 +HEB 5:9!6 +HEB 5:9!7 +HEB 5:9!8 +HEB 5:9!9 +HEB 5:9!10 +HEB 5:10!1 +HEB 5:10!2 +HEB 5:10!3 +HEB 5:10!4 +HEB 5:10!5 +HEB 5:10!6 +HEB 5:10!7 +HEB 5:10!8 +HEB 5:10!9 +HEB 5:11!1 +HEB 5:11!2 +HEB 5:11!3 +HEB 5:11!4 +HEB 5:11!5 +HEB 5:11!6 +HEB 5:11!7 +HEB 5:11!8 +HEB 5:11!9 +HEB 5:11!10 +HEB 5:11!11 +HEB 5:11!12 +HEB 5:11!13 +HEB 5:11!14 +HEB 5:12!2 +HEB 5:12!1 +HEB 5:12!3 +HEB 5:12!4 +HEB 5:12!5 +HEB 5:12!6 +HEB 5:12!7 +HEB 5:12!8 +HEB 5:12!9 +HEB 5:12!11 +HEB 5:12!10 +HEB 5:12!12 +HEB 5:12!13 +HEB 5:12!14 +HEB 5:12!15 +HEB 5:12!16 +HEB 5:12!17 +HEB 5:12!18 +HEB 5:12!19 +HEB 5:12!20 +HEB 5:12!21 +HEB 5:12!22 +HEB 5:12!23 +HEB 5:12!24 +HEB 5:12!25 +HEB 5:12!27 +HEB 5:12!26 +HEB 5:12!28 +HEB 5:12!29 +HEB 5:12!30 +HEB 5:12!31 +HEB 5:13!2 +HEB 5:13!1 +HEB 5:13!3 +HEB 5:13!4 +HEB 5:13!5 +HEB 5:13!6 +HEB 5:13!7 +HEB 5:13!8 +HEB 5:13!10 +HEB 5:13!9 +HEB 5:13!11 +HEB 5:14!2 +HEB 5:14!3 +HEB 5:14!4 +HEB 5:14!5 +HEB 5:14!6 +HEB 5:14!1 +HEB 5:14!7 +HEB 5:14!8 +HEB 5:14!9 +HEB 5:14!10 +HEB 5:14!11 +HEB 5:14!12 +HEB 5:14!13 +HEB 5:14!14 +HEB 5:14!15 +HEB 5:14!16 +HEB 5:14!18 +HEB 5:14!17 +HEB 5:14!19 +HEB 5:14!20 +HEB 6:1!1 +HEB 6:1!2 +HEB 6:1!3 +HEB 6:1!4 +HEB 6:1!5 +HEB 6:1!6 +HEB 6:1!7 +HEB 6:1!8 +HEB 6:1!9 +HEB 6:1!10 +HEB 6:1!11 +HEB 6:1!12 +HEB 6:1!13 +HEB 6:1!14 +HEB 6:1!16 +HEB 6:1!15 +HEB 6:1!17 +HEB 6:1!18 +HEB 6:1!19 +HEB 6:1!20 +HEB 6:1!21 +HEB 6:1!22 +HEB 6:1!23 +HEB 6:1!24 +HEB 6:2!2 +HEB 6:2!1 +HEB 6:2!4 +HEB 6:2!3 +HEB 6:2!5 +HEB 6:2!6 +HEB 6:2!7 +HEB 6:2!8 +HEB 6:2!9 +HEB 6:2!10 +HEB 6:3!1 +HEB 6:3!2 +HEB 6:3!3 +HEB 6:3!4 +HEB 6:3!5 +HEB 6:3!6 +HEB 6:3!7 +HEB 6:4!2 +HEB 6:4!1 +HEB 6:4!3 +HEB 6:4!4 +HEB 6:4!5 +HEB 6:4!7 +HEB 6:4!6 +HEB 6:4!8 +HEB 6:4!9 +HEB 6:4!10 +HEB 6:4!11 +HEB 6:4!12 +HEB 6:4!13 +HEB 6:4!15 +HEB 6:4!16 +HEB 6:4!14 +HEB 6:5!1 +HEB 6:5!3 +HEB 6:5!2 +HEB 6:5!4 +HEB 6:5!5 +HEB 6:5!7 +HEB 6:5!6 +HEB 6:5!8 +HEB 6:5!9 +HEB 6:6!1 +HEB 6:6!2 +HEB 6:6!3 +HEB 6:6!4 +HEB 6:6!5 +HEB 6:6!6 +HEB 6:6!7 +HEB 6:6!8 +HEB 6:6!9 +HEB 6:6!10 +HEB 6:6!11 +HEB 6:6!12 +HEB 6:6!13 +HEB 6:6!14 +HEB 6:7!2 +HEB 6:7!1 +HEB 6:7!3 +HEB 6:7!4 +HEB 6:7!5 +HEB 6:7!6 +HEB 6:7!7 +HEB 6:7!8 +HEB 6:7!9 +HEB 6:7!10 +HEB 6:7!11 +HEB 6:7!12 +HEB 6:7!13 +HEB 6:7!14 +HEB 6:7!15 +HEB 6:7!16 +HEB 6:7!17 +HEB 6:7!18 +HEB 6:7!19 +HEB 6:7!20 +HEB 6:7!21 +HEB 6:7!22 +HEB 6:7!23 +HEB 6:7!24 +HEB 6:8!2 +HEB 6:8!1 +HEB 6:8!3 +HEB 6:8!4 +HEB 6:8!5 +HEB 6:8!6 +HEB 6:8!7 +HEB 6:8!8 +HEB 6:8!9 +HEB 6:8!10 +HEB 6:8!11 +HEB 6:8!12 +HEB 6:8!13 +HEB 6:8!14 +HEB 6:9!2 +HEB 6:9!5 +HEB 6:9!1 +HEB 6:9!3 +HEB 6:9!4 +HEB 6:9!6 +HEB 6:9!7 +HEB 6:9!8 +HEB 6:9!9 +HEB 6:9!10 +HEB 6:9!11 +HEB 6:9!12 +HEB 6:9!13 +HEB 6:9!14 +HEB 6:10!2 +HEB 6:10!1 +HEB 6:10!3 +HEB 6:10!4 +HEB 6:10!5 +HEB 6:10!6 +HEB 6:10!7 +HEB 6:10!8 +HEB 6:10!9 +HEB 6:10!10 +HEB 6:10!11 +HEB 6:10!12 +HEB 6:10!13 +HEB 6:10!14 +HEB 6:10!15 +HEB 6:10!16 +HEB 6:10!17 +HEB 6:10!18 +HEB 6:10!19 +HEB 6:10!22 +HEB 6:10!23 +HEB 6:10!20 +HEB 6:10!21 +HEB 6:11!2 +HEB 6:11!1 +HEB 6:11!3 +HEB 6:11!4 +HEB 6:11!5 +HEB 6:11!6 +HEB 6:11!8 +HEB 6:11!7 +HEB 6:11!9 +HEB 6:11!10 +HEB 6:11!11 +HEB 6:11!12 +HEB 6:11!13 +HEB 6:11!14 +HEB 6:11!15 +HEB 6:12!1 +HEB 6:12!2 +HEB 6:12!3 +HEB 6:12!4 +HEB 6:12!6 +HEB 6:12!5 +HEB 6:12!7 +HEB 6:12!8 +HEB 6:12!9 +HEB 6:12!10 +HEB 6:12!11 +HEB 6:12!12 +HEB 6:12!13 +HEB 6:12!14 +HEB 6:13!2 +HEB 6:13!1 +HEB 6:13!3 +HEB 6:13!4 +HEB 6:13!5 +HEB 6:13!6 +HEB 6:13!7 +HEB 6:13!8 +HEB 6:13!9 +HEB 6:13!11 +HEB 6:13!12 +HEB 6:13!10 +HEB 6:13!13 +HEB 6:13!14 +HEB 6:13!15 +HEB 6:14!1 +HEB 6:14!2 +HEB 6:14!3 +HEB 6:14!4 +HEB 6:14!5 +HEB 6:14!6 +HEB 6:14!7 +HEB 6:14!8 +HEB 6:14!9 +HEB 6:14!10 +HEB 6:15!1 +HEB 6:15!2 +HEB 6:15!3 +HEB 6:15!4 +HEB 6:15!5 +HEB 6:15!6 +HEB 6:16!2 +HEB 6:16!1 +HEB 6:16!3 +HEB 6:16!4 +HEB 6:16!5 +HEB 6:16!6 +HEB 6:16!7 +HEB 6:16!9 +HEB 6:16!8 +HEB 6:16!10 +HEB 6:16!11 +HEB 6:16!12 +HEB 6:16!13 +HEB 6:16!14 +HEB 6:16!15 +HEB 6:17!1 +HEB 6:17!2 +HEB 6:17!3 +HEB 6:17!4 +HEB 6:17!7 +HEB 6:17!8 +HEB 6:17!9 +HEB 6:17!10 +HEB 6:17!11 +HEB 6:17!12 +HEB 6:17!13 +HEB 6:17!14 +HEB 6:17!15 +HEB 6:17!16 +HEB 6:17!5 +HEB 6:17!6 +HEB 6:17!17 +HEB 6:17!18 +HEB 6:18!1 +HEB 6:18!2 +HEB 6:18!3 +HEB 6:18!4 +HEB 6:18!5 +HEB 6:18!6 +HEB 6:18!7 +HEB 6:18!8 +HEB 6:18!9 +HEB 6:18!10 +HEB 6:18!11 +HEB 6:18!12 +HEB 6:18!13 +HEB 6:18!14 +HEB 6:18!15 +HEB 6:18!16 +HEB 6:18!17 +HEB 6:18!18 +HEB 6:18!19 +HEB 6:19!1 +HEB 6:19!4 +HEB 6:19!2 +HEB 6:19!3 +HEB 6:19!5 +HEB 6:19!6 +HEB 6:19!8 +HEB 6:19!7 +HEB 6:19!9 +HEB 6:19!10 +HEB 6:19!11 +HEB 6:19!12 +HEB 6:19!13 +HEB 6:19!14 +HEB 6:19!15 +HEB 6:19!16 +HEB 6:19!17 +HEB 6:20!1 +HEB 6:20!2 +HEB 6:20!6 +HEB 6:20!3 +HEB 6:20!4 +HEB 6:20!5 +HEB 6:20!7 +HEB 6:20!8 +HEB 6:20!9 +HEB 6:20!10 +HEB 6:20!11 +HEB 6:20!12 +HEB 6:20!13 +HEB 6:20!14 +HEB 6:20!15 +HEB 7:1!2 +HEB 7:1!1 +HEB 7:1!3 +HEB 7:1!4 +HEB 7:1!5 +HEB 7:1!6 +HEB 7:1!7 +HEB 7:1!8 +HEB 7:1!9 +HEB 7:1!10 +HEB 7:1!11 +HEB 7:1!12 +HEB 7:1!13 +HEB 7:1!14 +HEB 7:1!15 +HEB 7:1!16 +HEB 7:1!17 +HEB 7:1!18 +HEB 7:1!19 +HEB 7:1!20 +HEB 7:1!21 +HEB 7:1!22 +HEB 7:1!23 +HEB 7:2!1 +HEB 7:2!2 +HEB 7:2!3 +HEB 7:2!4 +HEB 7:2!5 +HEB 7:2!6 +HEB 7:2!7 +HEB 7:2!9 +HEB 7:2!8 +HEB 7:2!10 +HEB 7:2!11 +HEB 7:2!12 +HEB 7:2!14 +HEB 7:2!13 +HEB 7:2!15 +HEB 7:2!16 +HEB 7:2!17 +HEB 7:2!18 +HEB 7:2!19 +HEB 7:2!20 +HEB 7:2!21 +HEB 7:3!1 +HEB 7:3!2 +HEB 7:3!3 +HEB 7:3!4 +HEB 7:3!5 +HEB 7:3!6 +HEB 7:3!7 +HEB 7:3!8 +HEB 7:3!9 +HEB 7:3!10 +HEB 7:3!12 +HEB 7:3!11 +HEB 7:3!13 +HEB 7:3!14 +HEB 7:3!15 +HEB 7:3!16 +HEB 7:3!17 +HEB 7:3!18 +HEB 7:3!19 +HEB 7:3!20 +HEB 7:3!21 +HEB 7:4!2 +HEB 7:4!1 +HEB 7:4!3 +HEB 7:4!4 +HEB 7:4!5 +HEB 7:4!6 +HEB 7:4!7 +HEB 7:4!12 +HEB 7:4!13 +HEB 7:4!8 +HEB 7:4!9 +HEB 7:4!10 +HEB 7:4!11 +HEB 7:5!1 +HEB 7:5!3 +HEB 7:5!2 +HEB 7:5!4 +HEB 7:5!5 +HEB 7:5!6 +HEB 7:5!7 +HEB 7:5!8 +HEB 7:5!9 +HEB 7:5!10 +HEB 7:5!11 +HEB 7:5!12 +HEB 7:5!13 +HEB 7:5!16 +HEB 7:5!17 +HEB 7:5!18 +HEB 7:5!14 +HEB 7:5!15 +HEB 7:5!19 +HEB 7:5!20 +HEB 7:5!21 +HEB 7:5!22 +HEB 7:5!23 +HEB 7:5!24 +HEB 7:5!25 +HEB 7:5!26 +HEB 7:5!27 +HEB 7:5!28 +HEB 7:5!29 +HEB 7:6!2 +HEB 7:6!1 +HEB 7:6!3 +HEB 7:6!4 +HEB 7:6!5 +HEB 7:6!6 +HEB 7:6!7 +HEB 7:6!8 +HEB 7:6!9 +HEB 7:6!10 +HEB 7:6!11 +HEB 7:6!12 +HEB 7:6!13 +HEB 7:6!14 +HEB 7:7!2 +HEB 7:7!1 +HEB 7:7!3 +HEB 7:7!4 +HEB 7:7!5 +HEB 7:7!6 +HEB 7:7!7 +HEB 7:7!8 +HEB 7:7!9 +HEB 7:7!10 +HEB 7:8!1 +HEB 7:8!3 +HEB 7:8!2 +HEB 7:8!4 +HEB 7:8!5 +HEB 7:8!6 +HEB 7:8!7 +HEB 7:8!9 +HEB 7:8!8 +HEB 7:8!10 +HEB 7:8!11 +HEB 7:8!12 +HEB 7:9!1 +HEB 7:9!2 +HEB 7:9!3 +HEB 7:9!4 +HEB 7:9!5 +HEB 7:9!6 +HEB 7:9!7 +HEB 7:9!8 +HEB 7:9!9 +HEB 7:9!10 +HEB 7:9!11 +HEB 7:9!12 +HEB 7:10!2 +HEB 7:10!1 +HEB 7:10!3 +HEB 7:10!4 +HEB 7:10!5 +HEB 7:10!6 +HEB 7:10!7 +HEB 7:10!8 +HEB 7:10!9 +HEB 7:10!10 +HEB 7:10!11 +HEB 7:10!12 +HEB 7:11!2 +HEB 7:11!3 +HEB 7:11!1 +HEB 7:11!4 +HEB 7:11!5 +HEB 7:11!6 +HEB 7:11!7 +HEB 7:11!8 +HEB 7:11!9 +HEB 7:11!12 +HEB 7:11!10 +HEB 7:11!11 +HEB 7:11!13 +HEB 7:11!14 +HEB 7:11!15 +HEB 7:11!16 +HEB 7:11!17 +HEB 7:11!18 +HEB 7:11!19 +HEB 7:11!20 +HEB 7:11!21 +HEB 7:11!22 +HEB 7:11!24 +HEB 7:11!23 +HEB 7:11!25 +HEB 7:11!26 +HEB 7:11!27 +HEB 7:11!28 +HEB 7:11!29 +HEB 7:11!30 +HEB 7:11!31 +HEB 7:11!32 +HEB 7:12!2 +HEB 7:12!1 +HEB 7:12!3 +HEB 7:12!4 +HEB 7:12!5 +HEB 7:12!6 +HEB 7:12!7 +HEB 7:12!8 +HEB 7:12!9 +HEB 7:12!10 +HEB 7:13!3 +HEB 7:13!1 +HEB 7:13!2 +HEB 7:13!4 +HEB 7:13!5 +HEB 7:13!6 +HEB 7:13!7 +HEB 7:13!8 +HEB 7:13!9 +HEB 7:13!10 +HEB 7:13!11 +HEB 7:13!12 +HEB 7:13!13 +HEB 7:13!14 +HEB 7:14!2 +HEB 7:14!1 +HEB 7:14!3 +HEB 7:14!4 +HEB 7:14!5 +HEB 7:14!6 +HEB 7:14!7 +HEB 7:14!8 +HEB 7:14!9 +HEB 7:14!10 +HEB 7:14!11 +HEB 7:14!12 +HEB 7:14!13 +HEB 7:14!14 +HEB 7:14!15 +HEB 7:14!16 +HEB 7:14!17 +HEB 7:15!1 +HEB 7:15!2 +HEB 7:15!3 +HEB 7:15!4 +HEB 7:15!5 +HEB 7:15!6 +HEB 7:15!7 +HEB 7:15!8 +HEB 7:15!9 +HEB 7:15!10 +HEB 7:15!11 +HEB 7:15!12 +HEB 7:15!13 +HEB 7:16!1 +HEB 7:16!7 +HEB 7:16!2 +HEB 7:16!3 +HEB 7:16!4 +HEB 7:16!5 +HEB 7:16!6 +HEB 7:16!8 +HEB 7:16!9 +HEB 7:16!10 +HEB 7:16!11 +HEB 7:16!12 +HEB 7:17!2 +HEB 7:17!1 +HEB 7:17!3 +HEB 7:17!4 +HEB 7:17!5 +HEB 7:17!6 +HEB 7:17!7 +HEB 7:17!8 +HEB 7:17!9 +HEB 7:17!10 +HEB 7:17!11 +HEB 7:17!12 +HEB 7:18!3 +HEB 7:18!2 +HEB 7:18!1 +HEB 7:18!5 +HEB 7:18!6 +HEB 7:18!4 +HEB 7:18!7 +HEB 7:18!8 +HEB 7:18!9 +HEB 7:18!10 +HEB 7:18!11 +HEB 7:18!12 +HEB 7:19!2 +HEB 7:19!1 +HEB 7:19!3 +HEB 7:19!4 +HEB 7:19!5 +HEB 7:19!7 +HEB 7:19!6 +HEB 7:19!8 +HEB 7:19!9 +HEB 7:19!10 +HEB 7:19!11 +HEB 7:19!12 +HEB 7:19!13 +HEB 7:19!14 +HEB 7:20!1 +HEB 7:20!2 +HEB 7:20!3 +HEB 7:20!4 +HEB 7:20!5 +HEB 7:20!6 +HEB 7:20!9 +HEB 7:20!8 +HEB 7:20!7 +HEB 7:20!10 +HEB 7:20!11 +HEB 7:20!12 +HEB 7:20!14 +HEB 7:20!13 +HEB 7:21!2 +HEB 7:21!1 +HEB 7:21!3 +HEB 7:21!4 +HEB 7:21!5 +HEB 7:21!6 +HEB 7:21!7 +HEB 7:21!8 +HEB 7:21!9 +HEB 7:21!10 +HEB 7:21!11 +HEB 7:21!12 +HEB 7:21!13 +HEB 7:21!14 +HEB 7:21!15 +HEB 7:21!16 +HEB 7:21!17 +HEB 7:21!18 +HEB 7:21!19 +HEB 7:22!1 +HEB 7:22!2 +HEB 7:22!3 +HEB 7:22!4 +HEB 7:22!5 +HEB 7:22!7 +HEB 7:22!6 +HEB 7:22!8 +HEB 7:23!1 +HEB 7:23!3 +HEB 7:23!2 +HEB 7:23!4 +HEB 7:23!5 +HEB 7:23!6 +HEB 7:23!7 +HEB 7:23!8 +HEB 7:23!9 +HEB 7:23!10 +HEB 7:23!11 +HEB 7:23!12 +HEB 7:24!2 +HEB 7:24!1 +HEB 7:24!3 +HEB 7:24!4 +HEB 7:24!5 +HEB 7:24!6 +HEB 7:24!7 +HEB 7:24!8 +HEB 7:24!9 +HEB 7:24!10 +HEB 7:24!11 +HEB 7:24!12 +HEB 7:24!13 +HEB 7:25!1 +HEB 7:25!2 +HEB 7:25!7 +HEB 7:25!3 +HEB 7:25!4 +HEB 7:25!5 +HEB 7:25!6 +HEB 7:25!8 +HEB 7:25!9 +HEB 7:25!10 +HEB 7:25!11 +HEB 7:25!12 +HEB 7:25!13 +HEB 7:25!14 +HEB 7:25!15 +HEB 7:25!16 +HEB 7:25!17 +HEB 7:25!18 +HEB 7:25!19 +HEB 7:25!20 +HEB 7:26!2 +HEB 7:26!3 +HEB 7:26!4 +HEB 7:26!5 +HEB 7:26!1 +HEB 7:26!6 +HEB 7:26!7 +HEB 7:26!8 +HEB 7:26!9 +HEB 7:26!10 +HEB 7:26!11 +HEB 7:26!12 +HEB 7:26!13 +HEB 7:26!14 +HEB 7:26!15 +HEB 7:26!16 +HEB 7:26!17 +HEB 7:26!18 +HEB 7:27!1 +HEB 7:27!2 +HEB 7:27!3 +HEB 7:27!4 +HEB 7:27!5 +HEB 7:27!6 +HEB 7:27!7 +HEB 7:27!8 +HEB 7:27!9 +HEB 7:27!10 +HEB 7:27!11 +HEB 7:27!12 +HEB 7:27!13 +HEB 7:27!14 +HEB 7:27!15 +HEB 7:27!16 +HEB 7:27!17 +HEB 7:27!18 +HEB 7:27!19 +HEB 7:27!20 +HEB 7:27!22 +HEB 7:27!21 +HEB 7:27!23 +HEB 7:27!24 +HEB 7:27!25 +HEB 7:27!26 +HEB 7:28!3 +HEB 7:28!1 +HEB 7:28!2 +HEB 7:28!4 +HEB 7:28!5 +HEB 7:28!6 +HEB 7:28!7 +HEB 7:28!8 +HEB 7:28!11 +HEB 7:28!9 +HEB 7:28!10 +HEB 7:28!12 +HEB 7:28!13 +HEB 7:28!14 +HEB 7:28!15 +HEB 7:28!16 +HEB 7:28!17 +HEB 7:28!18 +HEB 7:28!19 +HEB 7:28!20 +HEB 7:28!21 +HEB 7:28!22 +HEB 8:1!2 +HEB 8:1!1 +HEB 8:1!3 +HEB 8:1!4 +HEB 8:1!5 +HEB 8:1!7 +HEB 8:1!6 +HEB 8:1!8 +HEB 8:1!9 +HEB 8:1!10 +HEB 8:1!11 +HEB 8:1!12 +HEB 8:1!13 +HEB 8:1!14 +HEB 8:1!15 +HEB 8:1!16 +HEB 8:1!17 +HEB 8:1!18 +HEB 8:1!19 +HEB 8:2!3 +HEB 8:2!1 +HEB 8:2!2 +HEB 8:2!4 +HEB 8:2!5 +HEB 8:2!6 +HEB 8:2!7 +HEB 8:2!8 +HEB 8:2!9 +HEB 8:2!10 +HEB 8:2!11 +HEB 8:2!12 +HEB 8:2!13 +HEB 8:2!14 +HEB 8:3!2 +HEB 8:3!1 +HEB 8:3!3 +HEB 8:3!4 +HEB 8:3!5 +HEB 8:3!6 +HEB 8:3!8 +HEB 8:3!7 +HEB 8:3!9 +HEB 8:3!10 +HEB 8:3!11 +HEB 8:3!12 +HEB 8:3!13 +HEB 8:3!14 +HEB 8:3!16 +HEB 8:3!17 +HEB 8:3!15 +HEB 8:3!18 +HEB 8:3!19 +HEB 8:4!3 +HEB 8:4!2 +HEB 8:4!1 +HEB 8:4!4 +HEB 8:4!5 +HEB 8:4!6 +HEB 8:4!8 +HEB 8:4!7 +HEB 8:4!9 +HEB 8:4!10 +HEB 8:4!11 +HEB 8:4!12 +HEB 8:4!13 +HEB 8:4!14 +HEB 8:4!15 +HEB 8:4!16 +HEB 8:4!17 +HEB 8:5!1 +HEB 8:5!2 +HEB 8:5!3 +HEB 8:5!4 +HEB 8:5!6 +HEB 8:5!7 +HEB 8:5!5 +HEB 8:5!8 +HEB 8:5!9 +HEB 8:5!10 +HEB 8:5!11 +HEB 8:5!12 +HEB 8:5!13 +HEB 8:5!14 +HEB 8:5!16 +HEB 8:5!17 +HEB 8:5!15 +HEB 8:5!18 +HEB 8:5!19 +HEB 8:5!20 +HEB 8:5!21 +HEB 8:5!22 +HEB 8:5!23 +HEB 8:5!24 +HEB 8:5!25 +HEB 8:5!26 +HEB 8:5!27 +HEB 8:5!28 +HEB 8:6!2 +HEB 8:6!1 +HEB 8:6!3 +HEB 8:6!5 +HEB 8:6!4 +HEB 8:6!6 +HEB 8:6!7 +HEB 8:6!9 +HEB 8:6!11 +HEB 8:6!8 +HEB 8:6!10 +HEB 8:6!12 +HEB 8:6!13 +HEB 8:6!14 +HEB 8:6!15 +HEB 8:6!16 +HEB 8:7!2 +HEB 8:7!1 +HEB 8:7!3 +HEB 8:7!4 +HEB 8:7!5 +HEB 8:7!6 +HEB 8:7!7 +HEB 8:7!9 +HEB 8:7!8 +HEB 8:7!10 +HEB 8:7!12 +HEB 8:7!11 +HEB 8:8!2 +HEB 8:8!1 +HEB 8:8!3 +HEB 8:8!4 +HEB 8:8!5 +HEB 8:8!6 +HEB 8:8!7 +HEB 8:8!8 +HEB 8:8!9 +HEB 8:8!10 +HEB 8:8!11 +HEB 8:8!12 +HEB 8:8!13 +HEB 8:8!14 +HEB 8:8!15 +HEB 8:8!16 +HEB 8:8!17 +HEB 8:8!18 +HEB 8:8!19 +HEB 8:8!20 +HEB 8:8!21 +HEB 8:8!22 +HEB 8:9!1 +HEB 8:9!2 +HEB 8:9!3 +HEB 8:9!4 +HEB 8:9!5 +HEB 8:9!6 +HEB 8:9!7 +HEB 8:9!8 +HEB 8:9!9 +HEB 8:9!10 +HEB 8:9!11 +HEB 8:9!12 +HEB 8:9!13 +HEB 8:9!14 +HEB 8:9!15 +HEB 8:9!16 +HEB 8:9!17 +HEB 8:9!18 +HEB 8:9!19 +HEB 8:9!20 +HEB 8:9!21 +HEB 8:9!22 +HEB 8:9!23 +HEB 8:9!24 +HEB 8:9!25 +HEB 8:9!26 +HEB 8:9!27 +HEB 8:9!28 +HEB 8:9!29 +HEB 8:9!30 +HEB 8:9!31 +HEB 8:9!32 +HEB 8:9!33 +HEB 8:9!34 +HEB 8:10!1 +HEB 8:10!2 +HEB 8:10!3 +HEB 8:10!4 +HEB 8:10!5 +HEB 8:10!6 +HEB 8:10!7 +HEB 8:10!8 +HEB 8:10!9 +HEB 8:10!10 +HEB 8:10!11 +HEB 8:10!12 +HEB 8:10!13 +HEB 8:10!14 +HEB 8:10!15 +HEB 8:10!16 +HEB 8:10!17 +HEB 8:10!18 +HEB 8:10!19 +HEB 8:10!20 +HEB 8:10!21 +HEB 8:10!22 +HEB 8:10!23 +HEB 8:10!24 +HEB 8:10!25 +HEB 8:10!26 +HEB 8:10!27 +HEB 8:10!28 +HEB 8:10!29 +HEB 8:10!30 +HEB 8:10!31 +HEB 8:10!32 +HEB 8:10!33 +HEB 8:10!34 +HEB 8:10!35 +HEB 8:10!36 +HEB 8:10!37 +HEB 8:10!38 +HEB 8:10!39 +HEB 8:11!1 +HEB 8:11!2 +HEB 8:11!3 +HEB 8:11!4 +HEB 8:11!5 +HEB 8:11!6 +HEB 8:11!7 +HEB 8:11!8 +HEB 8:11!9 +HEB 8:11!10 +HEB 8:11!11 +HEB 8:11!12 +HEB 8:11!13 +HEB 8:11!14 +HEB 8:11!15 +HEB 8:11!16 +HEB 8:11!17 +HEB 8:11!18 +HEB 8:11!19 +HEB 8:11!20 +HEB 8:11!21 +HEB 8:11!22 +HEB 8:11!23 +HEB 8:11!24 +HEB 8:11!25 +HEB 8:11!26 +HEB 8:12!1 +HEB 8:12!2 +HEB 8:12!3 +HEB 8:12!4 +HEB 8:12!5 +HEB 8:12!6 +HEB 8:12!7 +HEB 8:12!8 +HEB 8:12!9 +HEB 8:12!10 +HEB 8:12!11 +HEB 8:12!12 +HEB 8:12!13 +HEB 8:12!14 +HEB 8:13!1 +HEB 8:13!2 +HEB 8:13!3 +HEB 8:13!4 +HEB 8:13!5 +HEB 8:13!6 +HEB 8:13!7 +HEB 8:13!9 +HEB 8:13!8 +HEB 8:13!10 +HEB 8:13!11 +HEB 8:13!12 +HEB 8:13!13 +HEB 8:13!14 +HEB 9:1!2 +HEB 9:1!3 +HEB 9:1!1 +HEB 9:1!4 +HEB 9:1!5 +HEB 9:1!6 +HEB 9:1!7 +HEB 9:1!8 +HEB 9:1!10 +HEB 9:1!9 +HEB 9:1!11 +HEB 9:1!12 +HEB 9:2!2 +HEB 9:2!3 +HEB 9:2!1 +HEB 9:2!4 +HEB 9:2!5 +HEB 9:2!6 +HEB 9:2!7 +HEB 9:2!9 +HEB 9:2!8 +HEB 9:2!10 +HEB 9:2!11 +HEB 9:2!12 +HEB 9:2!13 +HEB 9:2!14 +HEB 9:2!15 +HEB 9:2!16 +HEB 9:2!17 +HEB 9:2!18 +HEB 9:2!19 +HEB 9:2!20 +HEB 9:2!21 +HEB 9:3!2 +HEB 9:3!1 +HEB 9:3!3 +HEB 9:3!4 +HEB 9:3!5 +HEB 9:3!6 +HEB 9:3!7 +HEB 9:3!8 +HEB 9:3!9 +HEB 9:3!10 +HEB 9:4!2 +HEB 9:4!1 +HEB 9:4!3 +HEB 9:4!4 +HEB 9:4!5 +HEB 9:4!6 +HEB 9:4!7 +HEB 9:4!8 +HEB 9:4!9 +HEB 9:4!10 +HEB 9:4!11 +HEB 9:4!12 +HEB 9:4!13 +HEB 9:4!14 +HEB 9:4!15 +HEB 9:4!16 +HEB 9:4!17 +HEB 9:4!18 +HEB 9:4!19 +HEB 9:4!20 +HEB 9:4!21 +HEB 9:4!22 +HEB 9:4!23 +HEB 9:4!24 +HEB 9:4!25 +HEB 9:4!26 +HEB 9:4!27 +HEB 9:4!28 +HEB 9:4!29 +HEB 9:5!2 +HEB 9:5!1 +HEB 9:5!3 +HEB 9:5!4 +HEB 9:5!5 +HEB 9:5!6 +HEB 9:5!7 +HEB 9:5!8 +HEB 9:5!9 +HEB 9:5!10 +HEB 9:5!11 +HEB 9:5!12 +HEB 9:5!13 +HEB 9:5!14 +HEB 9:5!15 +HEB 9:5!16 +HEB 9:6!2 +HEB 9:6!1 +HEB 9:6!3 +HEB 9:6!4 +HEB 9:6!6 +HEB 9:6!5 +HEB 9:6!7 +HEB 9:6!8 +HEB 9:6!9 +HEB 9:6!10 +HEB 9:6!11 +HEB 9:6!12 +HEB 9:6!13 +HEB 9:6!14 +HEB 9:6!15 +HEB 9:6!16 +HEB 9:6!17 +HEB 9:7!2 +HEB 9:7!1 +HEB 9:7!3 +HEB 9:7!4 +HEB 9:7!5 +HEB 9:7!6 +HEB 9:7!7 +HEB 9:7!8 +HEB 9:7!9 +HEB 9:7!10 +HEB 9:7!11 +HEB 9:7!12 +HEB 9:7!13 +HEB 9:7!14 +HEB 9:7!15 +HEB 9:7!16 +HEB 9:7!17 +HEB 9:7!18 +HEB 9:7!19 +HEB 9:7!20 +HEB 9:7!21 +HEB 9:7!22 +HEB 9:8!1 +HEB 9:8!2 +HEB 9:8!3 +HEB 9:8!4 +HEB 9:8!5 +HEB 9:8!6 +HEB 9:8!7 +HEB 9:8!8 +HEB 9:8!9 +HEB 9:8!10 +HEB 9:8!11 +HEB 9:8!12 +HEB 9:8!13 +HEB 9:8!14 +HEB 9:8!15 +HEB 9:8!16 +HEB 9:8!17 +HEB 9:8!18 +HEB 9:9!1 +HEB 9:9!2 +HEB 9:9!3 +HEB 9:9!4 +HEB 9:9!5 +HEB 9:9!6 +HEB 9:9!7 +HEB 9:9!8 +HEB 9:9!9 +HEB 9:9!11 +HEB 9:9!10 +HEB 9:9!12 +HEB 9:9!13 +HEB 9:9!14 +HEB 9:9!15 +HEB 9:9!16 +HEB 9:9!17 +HEB 9:9!18 +HEB 9:9!19 +HEB 9:9!20 +HEB 9:9!21 +HEB 9:10!1 +HEB 9:10!2 +HEB 9:10!3 +HEB 9:10!4 +HEB 9:10!5 +HEB 9:10!6 +HEB 9:10!7 +HEB 9:10!8 +HEB 9:10!9 +HEB 9:10!10 +HEB 9:10!11 +HEB 9:10!12 +HEB 9:10!13 +HEB 9:10!14 +HEB 9:11!2 +HEB 9:11!3 +HEB 9:11!1 +HEB 9:11!4 +HEB 9:11!5 +HEB 9:11!6 +HEB 9:11!7 +HEB 9:11!8 +HEB 9:11!9 +HEB 9:11!10 +HEB 9:11!11 +HEB 9:11!12 +HEB 9:11!13 +HEB 9:11!14 +HEB 9:11!15 +HEB 9:11!16 +HEB 9:11!17 +HEB 9:11!18 +HEB 9:11!19 +HEB 9:11!20 +HEB 9:11!21 +HEB 9:12!1 +HEB 9:12!2 +HEB 9:12!3 +HEB 9:12!4 +HEB 9:12!5 +HEB 9:12!6 +HEB 9:12!8 +HEB 9:12!7 +HEB 9:12!9 +HEB 9:12!10 +HEB 9:12!11 +HEB 9:12!12 +HEB 9:12!13 +HEB 9:12!14 +HEB 9:12!15 +HEB 9:12!16 +HEB 9:12!17 +HEB 9:12!18 +HEB 9:12!19 +HEB 9:13!2 +HEB 9:13!1 +HEB 9:13!3 +HEB 9:13!4 +HEB 9:13!5 +HEB 9:13!6 +HEB 9:13!7 +HEB 9:13!8 +HEB 9:13!9 +HEB 9:13!10 +HEB 9:13!11 +HEB 9:13!12 +HEB 9:13!13 +HEB 9:13!14 +HEB 9:13!15 +HEB 9:13!16 +HEB 9:13!17 +HEB 9:13!18 +HEB 9:13!19 +HEB 9:14!1 +HEB 9:14!2 +HEB 9:14!3 +HEB 9:14!4 +HEB 9:14!5 +HEB 9:14!6 +HEB 9:14!7 +HEB 9:14!8 +HEB 9:14!9 +HEB 9:14!10 +HEB 9:14!11 +HEB 9:14!12 +HEB 9:14!13 +HEB 9:14!14 +HEB 9:14!15 +HEB 9:14!16 +HEB 9:14!17 +HEB 9:14!18 +HEB 9:14!19 +HEB 9:14!20 +HEB 9:14!21 +HEB 9:14!22 +HEB 9:14!23 +HEB 9:14!24 +HEB 9:14!25 +HEB 9:14!26 +HEB 9:14!27 +HEB 9:15!1 +HEB 9:15!2 +HEB 9:15!3 +HEB 9:15!4 +HEB 9:15!5 +HEB 9:15!6 +HEB 9:15!7 +HEB 9:15!8 +HEB 9:15!9 +HEB 9:15!10 +HEB 9:15!11 +HEB 9:15!12 +HEB 9:15!13 +HEB 9:15!14 +HEB 9:15!15 +HEB 9:15!16 +HEB 9:15!17 +HEB 9:15!18 +HEB 9:15!21 +HEB 9:15!22 +HEB 9:15!23 +HEB 9:15!19 +HEB 9:15!20 +HEB 9:15!24 +HEB 9:15!25 +HEB 9:15!26 +HEB 9:16!2 +HEB 9:16!1 +HEB 9:16!3 +HEB 9:16!5 +HEB 9:16!6 +HEB 9:16!4 +HEB 9:16!7 +HEB 9:16!8 +HEB 9:17!2 +HEB 9:17!1 +HEB 9:17!3 +HEB 9:17!4 +HEB 9:17!5 +HEB 9:17!6 +HEB 9:17!7 +HEB 9:17!8 +HEB 9:17!9 +HEB 9:17!10 +HEB 9:17!11 +HEB 9:17!12 +HEB 9:17!13 +HEB 9:18!1 +HEB 9:18!2 +HEB 9:18!3 +HEB 9:18!4 +HEB 9:18!5 +HEB 9:18!6 +HEB 9:18!7 +HEB 9:19!2 +HEB 9:19!1 +HEB 9:19!3 +HEB 9:19!4 +HEB 9:19!5 +HEB 9:19!6 +HEB 9:19!7 +HEB 9:19!8 +HEB 9:19!9 +HEB 9:19!10 +HEB 9:19!11 +HEB 9:19!12 +HEB 9:19!13 +HEB 9:19!14 +HEB 9:19!15 +HEB 9:19!16 +HEB 9:19!17 +HEB 9:19!18 +HEB 9:19!19 +HEB 9:19!20 +HEB 9:19!21 +HEB 9:19!22 +HEB 9:19!23 +HEB 9:19!24 +HEB 9:19!25 +HEB 9:19!26 +HEB 9:19!27 +HEB 9:19!29 +HEB 9:19!28 +HEB 9:19!30 +HEB 9:19!31 +HEB 9:19!32 +HEB 9:19!33 +HEB 9:19!34 +HEB 9:19!35 +HEB 9:19!36 +HEB 9:20!1 +HEB 9:20!2 +HEB 9:20!3 +HEB 9:20!4 +HEB 9:20!5 +HEB 9:20!6 +HEB 9:20!7 +HEB 9:20!8 +HEB 9:20!9 +HEB 9:20!10 +HEB 9:20!11 +HEB 9:20!12 +HEB 9:21!4 +HEB 9:21!1 +HEB 9:21!2 +HEB 9:21!3 +HEB 9:21!5 +HEB 9:21!6 +HEB 9:21!7 +HEB 9:21!8 +HEB 9:21!9 +HEB 9:21!10 +HEB 9:21!11 +HEB 9:21!12 +HEB 9:21!13 +HEB 9:21!14 +HEB 9:22!1 +HEB 9:22!2 +HEB 9:22!3 +HEB 9:22!4 +HEB 9:22!5 +HEB 9:22!6 +HEB 9:22!7 +HEB 9:22!8 +HEB 9:22!9 +HEB 9:22!10 +HEB 9:22!11 +HEB 9:22!12 +HEB 9:22!13 +HEB 9:22!14 +HEB 9:22!15 +HEB 9:23!2 +HEB 9:23!1 +HEB 9:23!4 +HEB 9:23!3 +HEB 9:23!5 +HEB 9:23!6 +HEB 9:23!7 +HEB 9:23!8 +HEB 9:23!9 +HEB 9:23!10 +HEB 9:23!11 +HEB 9:23!13 +HEB 9:23!12 +HEB 9:23!14 +HEB 9:23!15 +HEB 9:23!17 +HEB 9:23!16 +HEB 9:23!18 +HEB 9:23!19 +HEB 9:24!2 +HEB 9:24!5 +HEB 9:24!7 +HEB 9:24!1 +HEB 9:24!3 +HEB 9:24!4 +HEB 9:24!6 +HEB 9:24!8 +HEB 9:24!9 +HEB 9:24!10 +HEB 9:24!11 +HEB 9:24!12 +HEB 9:24!13 +HEB 9:24!14 +HEB 9:24!15 +HEB 9:24!16 +HEB 9:24!17 +HEB 9:24!18 +HEB 9:24!19 +HEB 9:24!20 +HEB 9:24!21 +HEB 9:24!22 +HEB 9:24!23 +HEB 9:25!1 +HEB 9:25!2 +HEB 9:25!3 +HEB 9:25!4 +HEB 9:25!5 +HEB 9:25!6 +HEB 9:25!7 +HEB 9:25!8 +HEB 9:25!9 +HEB 9:25!10 +HEB 9:25!11 +HEB 9:25!12 +HEB 9:25!13 +HEB 9:25!14 +HEB 9:25!15 +HEB 9:25!16 +HEB 9:25!17 +HEB 9:26!1 +HEB 9:26!2 +HEB 9:26!3 +HEB 9:26!4 +HEB 9:26!5 +HEB 9:26!6 +HEB 9:26!7 +HEB 9:26!8 +HEB 9:26!10 +HEB 9:26!9 +HEB 9:26!11 +HEB 9:26!12 +HEB 9:26!13 +HEB 9:26!14 +HEB 9:26!15 +HEB 9:26!16 +HEB 9:26!17 +HEB 9:26!18 +HEB 9:26!19 +HEB 9:26!20 +HEB 9:26!21 +HEB 9:26!22 +HEB 9:26!23 +HEB 9:26!24 +HEB 9:27!1 +HEB 9:27!2 +HEB 9:27!3 +HEB 9:27!4 +HEB 9:27!5 +HEB 9:27!6 +HEB 9:27!7 +HEB 9:27!8 +HEB 9:27!10 +HEB 9:27!9 +HEB 9:27!11 +HEB 9:27!12 +HEB 9:28!1 +HEB 9:28!2 +HEB 9:28!3 +HEB 9:28!4 +HEB 9:28!5 +HEB 9:28!6 +HEB 9:28!7 +HEB 9:28!8 +HEB 9:28!9 +HEB 9:28!11 +HEB 9:28!10 +HEB 9:28!12 +HEB 9:28!13 +HEB 9:28!14 +HEB 9:28!15 +HEB 9:28!16 +HEB 9:28!17 +HEB 9:28!18 +HEB 9:28!19 +HEB 9:28!20 +HEB 9:28!21 +HEB 10:1!2 +HEB 10:1!4 +HEB 10:1!5 +HEB 10:1!3 +HEB 10:1!1 +HEB 10:1!6 +HEB 10:1!7 +HEB 10:1!8 +HEB 10:1!9 +HEB 10:1!10 +HEB 10:1!11 +HEB 10:1!12 +HEB 10:1!13 +HEB 10:1!14 +HEB 10:1!15 +HEB 10:1!16 +HEB 10:1!17 +HEB 10:1!18 +HEB 10:1!19 +HEB 10:1!20 +HEB 10:1!21 +HEB 10:1!22 +HEB 10:1!23 +HEB 10:1!24 +HEB 10:1!25 +HEB 10:1!26 +HEB 10:1!27 +HEB 10:1!28 +HEB 10:1!29 +HEB 10:2!1 +HEB 10:2!2 +HEB 10:2!3 +HEB 10:2!4 +HEB 10:2!5 +HEB 10:2!6 +HEB 10:2!7 +HEB 10:2!8 +HEB 10:2!9 +HEB 10:2!10 +HEB 10:2!11 +HEB 10:2!12 +HEB 10:2!13 +HEB 10:2!14 +HEB 10:2!15 +HEB 10:2!16 +HEB 10:3!1 +HEB 10:3!2 +HEB 10:3!3 +HEB 10:3!4 +HEB 10:3!5 +HEB 10:3!6 +HEB 10:3!7 +HEB 10:4!2 +HEB 10:4!1 +HEB 10:4!3 +HEB 10:4!4 +HEB 10:4!5 +HEB 10:4!6 +HEB 10:4!7 +HEB 10:4!8 +HEB 10:5!1 +HEB 10:5!2 +HEB 10:5!3 +HEB 10:5!4 +HEB 10:5!5 +HEB 10:5!6 +HEB 10:5!7 +HEB 10:5!8 +HEB 10:5!9 +HEB 10:5!10 +HEB 10:5!11 +HEB 10:5!13 +HEB 10:5!12 +HEB 10:5!14 +HEB 10:5!15 +HEB 10:6!1 +HEB 10:6!2 +HEB 10:6!3 +HEB 10:6!4 +HEB 10:6!5 +HEB 10:6!6 +HEB 10:7!1 +HEB 10:7!2 +HEB 10:7!13 +HEB 10:7!14 +HEB 10:7!3 +HEB 10:7!5 +HEB 10:7!6 +HEB 10:7!7 +HEB 10:7!8 +HEB 10:7!9 +HEB 10:7!10 +HEB 10:7!4 +HEB 10:7!11 +HEB 10:7!12 +HEB 10:7!15 +HEB 10:7!16 +HEB 10:7!17 +HEB 10:8!1 +HEB 10:8!2 +HEB 10:8!3 +HEB 10:8!4 +HEB 10:8!5 +HEB 10:8!6 +HEB 10:8!7 +HEB 10:8!8 +HEB 10:8!9 +HEB 10:8!10 +HEB 10:8!11 +HEB 10:8!12 +HEB 10:8!13 +HEB 10:8!14 +HEB 10:8!15 +HEB 10:8!16 +HEB 10:8!17 +HEB 10:8!18 +HEB 10:8!19 +HEB 10:9!1 +HEB 10:9!2 +HEB 10:9!3 +HEB 10:9!4 +HEB 10:9!5 +HEB 10:9!6 +HEB 10:9!7 +HEB 10:9!8 +HEB 10:9!9 +HEB 10:9!10 +HEB 10:9!11 +HEB 10:9!12 +HEB 10:9!13 +HEB 10:9!14 +HEB 10:9!15 +HEB 10:9!16 +HEB 10:10!1 +HEB 10:10!2 +HEB 10:10!3 +HEB 10:10!4 +HEB 10:10!5 +HEB 10:10!6 +HEB 10:10!7 +HEB 10:10!8 +HEB 10:10!9 +HEB 10:10!10 +HEB 10:10!11 +HEB 10:10!12 +HEB 10:10!13 +HEB 10:11!1 +HEB 10:11!3 +HEB 10:11!2 +HEB 10:11!4 +HEB 10:11!5 +HEB 10:11!6 +HEB 10:11!7 +HEB 10:11!8 +HEB 10:11!9 +HEB 10:11!12 +HEB 10:11!13 +HEB 10:11!10 +HEB 10:11!11 +HEB 10:11!14 +HEB 10:11!15 +HEB 10:11!16 +HEB 10:11!17 +HEB 10:11!18 +HEB 10:11!19 +HEB 10:12!2 +HEB 10:12!1 +HEB 10:12!3 +HEB 10:12!7 +HEB 10:12!4 +HEB 10:12!5 +HEB 10:12!6 +HEB 10:12!8 +HEB 10:12!9 +HEB 10:12!10 +HEB 10:12!11 +HEB 10:12!12 +HEB 10:12!13 +HEB 10:12!14 +HEB 10:12!15 +HEB 10:13!1 +HEB 10:13!2 +HEB 10:13!3 +HEB 10:13!4 +HEB 10:13!5 +HEB 10:13!6 +HEB 10:13!7 +HEB 10:13!8 +HEB 10:13!9 +HEB 10:13!10 +HEB 10:13!11 +HEB 10:13!12 +HEB 10:14!2 +HEB 10:14!1 +HEB 10:14!3 +HEB 10:14!4 +HEB 10:14!5 +HEB 10:14!6 +HEB 10:14!7 +HEB 10:14!8 +HEB 10:14!9 +HEB 10:15!2 +HEB 10:15!1 +HEB 10:15!3 +HEB 10:15!4 +HEB 10:15!5 +HEB 10:15!6 +HEB 10:15!7 +HEB 10:15!8 +HEB 10:15!10 +HEB 10:15!9 +HEB 10:15!11 +HEB 10:15!12 +HEB 10:16!1 +HEB 10:16!2 +HEB 10:16!3 +HEB 10:16!4 +HEB 10:16!5 +HEB 10:16!6 +HEB 10:16!7 +HEB 10:16!8 +HEB 10:16!9 +HEB 10:16!10 +HEB 10:16!11 +HEB 10:16!12 +HEB 10:16!13 +HEB 10:16!14 +HEB 10:16!15 +HEB 10:16!16 +HEB 10:16!17 +HEB 10:16!18 +HEB 10:16!19 +HEB 10:16!20 +HEB 10:16!21 +HEB 10:16!22 +HEB 10:16!23 +HEB 10:16!24 +HEB 10:16!25 +HEB 10:16!26 +HEB 10:17!1 +HEB 10:17!2 +HEB 10:17!3 +HEB 10:17!4 +HEB 10:17!5 +HEB 10:17!6 +HEB 10:17!7 +HEB 10:17!8 +HEB 10:17!9 +HEB 10:17!10 +HEB 10:17!11 +HEB 10:17!12 +HEB 10:18!2 +HEB 10:18!1 +HEB 10:18!3 +HEB 10:18!4 +HEB 10:18!5 +HEB 10:18!6 +HEB 10:18!7 +HEB 10:18!8 +HEB 10:19!2 +HEB 10:19!3 +HEB 10:19!1 +HEB 10:19!4 +HEB 10:19!5 +HEB 10:19!6 +HEB 10:19!7 +HEB 10:19!8 +HEB 10:19!9 +HEB 10:19!10 +HEB 10:19!11 +HEB 10:19!12 +HEB 10:19!13 +HEB 10:20!1 +HEB 10:20!2 +HEB 10:20!3 +HEB 10:20!4 +HEB 10:20!5 +HEB 10:20!6 +HEB 10:20!7 +HEB 10:20!8 +HEB 10:20!9 +HEB 10:20!10 +HEB 10:20!11 +HEB 10:20!12 +HEB 10:20!13 +HEB 10:20!14 +HEB 10:20!15 +HEB 10:21!1 +HEB 10:21!2 +HEB 10:21!3 +HEB 10:21!4 +HEB 10:21!5 +HEB 10:21!6 +HEB 10:21!7 +HEB 10:21!8 +HEB 10:22!1 +HEB 10:22!2 +HEB 10:22!3 +HEB 10:22!4 +HEB 10:22!5 +HEB 10:22!6 +HEB 10:22!7 +HEB 10:22!8 +HEB 10:22!9 +HEB 10:22!10 +HEB 10:22!11 +HEB 10:22!12 +HEB 10:22!13 +HEB 10:22!14 +HEB 10:22!15 +HEB 10:22!16 +HEB 10:22!17 +HEB 10:22!18 +HEB 10:22!19 +HEB 10:23!1 +HEB 10:23!2 +HEB 10:23!3 +HEB 10:23!4 +HEB 10:23!5 +HEB 10:23!6 +HEB 10:23!8 +HEB 10:23!7 +HEB 10:23!9 +HEB 10:23!10 +HEB 10:24!1 +HEB 10:24!2 +HEB 10:24!3 +HEB 10:24!4 +HEB 10:24!5 +HEB 10:24!6 +HEB 10:24!7 +HEB 10:24!8 +HEB 10:24!9 +HEB 10:25!1 +HEB 10:25!2 +HEB 10:25!3 +HEB 10:25!4 +HEB 10:25!5 +HEB 10:25!6 +HEB 10:25!7 +HEB 10:25!8 +HEB 10:25!9 +HEB 10:25!10 +HEB 10:25!13 +HEB 10:25!11 +HEB 10:25!12 +HEB 10:25!14 +HEB 10:25!15 +HEB 10:25!16 +HEB 10:25!17 +HEB 10:25!18 +HEB 10:26!2 +HEB 10:26!1 +HEB 10:26!3 +HEB 10:26!4 +HEB 10:26!5 +HEB 10:26!6 +HEB 10:26!7 +HEB 10:26!8 +HEB 10:26!9 +HEB 10:26!10 +HEB 10:26!11 +HEB 10:26!12 +HEB 10:26!13 +HEB 10:26!14 +HEB 10:26!15 +HEB 10:26!16 +HEB 10:27!2 +HEB 10:27!1 +HEB 10:27!3 +HEB 10:27!4 +HEB 10:27!5 +HEB 10:27!6 +HEB 10:27!8 +HEB 10:27!7 +HEB 10:27!10 +HEB 10:27!9 +HEB 10:27!11 +HEB 10:27!12 +HEB 10:28!2 +HEB 10:28!1 +HEB 10:28!3 +HEB 10:28!4 +HEB 10:28!5 +HEB 10:28!6 +HEB 10:28!7 +HEB 10:28!8 +HEB 10:28!9 +HEB 10:28!10 +HEB 10:28!11 +HEB 10:28!12 +HEB 10:29!1 +HEB 10:29!2 +HEB 10:29!3 +HEB 10:29!5 +HEB 10:29!4 +HEB 10:29!6 +HEB 10:29!7 +HEB 10:29!8 +HEB 10:29!9 +HEB 10:29!10 +HEB 10:29!11 +HEB 10:29!12 +HEB 10:29!17 +HEB 10:29!18 +HEB 10:29!13 +HEB 10:29!14 +HEB 10:29!15 +HEB 10:29!16 +HEB 10:29!19 +HEB 10:29!20 +HEB 10:29!21 +HEB 10:29!22 +HEB 10:29!23 +HEB 10:29!24 +HEB 10:29!25 +HEB 10:29!26 +HEB 10:29!27 +HEB 10:30!2 +HEB 10:30!1 +HEB 10:30!3 +HEB 10:30!4 +HEB 10:30!5 +HEB 10:30!6 +HEB 10:30!7 +HEB 10:30!8 +HEB 10:30!9 +HEB 10:30!10 +HEB 10:30!11 +HEB 10:30!12 +HEB 10:30!13 +HEB 10:30!14 +HEB 10:30!15 +HEB 10:31!1 +HEB 10:31!2 +HEB 10:31!3 +HEB 10:31!4 +HEB 10:31!5 +HEB 10:31!6 +HEB 10:31!7 +HEB 10:32!2 +HEB 10:32!1 +HEB 10:32!3 +HEB 10:32!4 +HEB 10:32!5 +HEB 10:32!6 +HEB 10:32!7 +HEB 10:32!8 +HEB 10:32!11 +HEB 10:32!9 +HEB 10:32!10 +HEB 10:32!12 +HEB 10:33!2 +HEB 10:33!1 +HEB 10:33!4 +HEB 10:33!3 +HEB 10:33!5 +HEB 10:33!6 +HEB 10:33!7 +HEB 10:33!9 +HEB 10:33!8 +HEB 10:33!10 +HEB 10:33!11 +HEB 10:33!12 +HEB 10:33!13 +HEB 10:33!14 +HEB 10:34!2 +HEB 10:34!1 +HEB 10:34!3 +HEB 10:34!4 +HEB 10:34!5 +HEB 10:34!6 +HEB 10:34!7 +HEB 10:34!8 +HEB 10:34!9 +HEB 10:34!10 +HEB 10:34!11 +HEB 10:34!12 +HEB 10:34!13 +HEB 10:34!14 +HEB 10:34!15 +HEB 10:34!16 +HEB 10:34!17 +HEB 10:34!19 +HEB 10:34!18 +HEB 10:34!20 +HEB 10:34!21 +HEB 10:35!3 +HEB 10:35!1 +HEB 10:35!2 +HEB 10:35!4 +HEB 10:35!5 +HEB 10:35!6 +HEB 10:35!7 +HEB 10:35!8 +HEB 10:35!9 +HEB 10:35!10 +HEB 10:36!2 +HEB 10:36!1 +HEB 10:36!4 +HEB 10:36!3 +HEB 10:36!5 +HEB 10:36!6 +HEB 10:36!7 +HEB 10:36!8 +HEB 10:36!9 +HEB 10:36!10 +HEB 10:36!11 +HEB 10:36!12 +HEB 10:36!13 +HEB 10:37!2 +HEB 10:37!1 +HEB 10:37!3 +HEB 10:37!4 +HEB 10:37!5 +HEB 10:37!6 +HEB 10:37!7 +HEB 10:37!8 +HEB 10:37!9 +HEB 10:37!10 +HEB 10:37!11 +HEB 10:38!2 +HEB 10:38!1 +HEB 10:38!3 +HEB 10:38!4 +HEB 10:38!5 +HEB 10:38!6 +HEB 10:38!7 +HEB 10:38!8 +HEB 10:38!9 +HEB 10:38!10 +HEB 10:38!11 +HEB 10:38!12 +HEB 10:38!13 +HEB 10:38!14 +HEB 10:38!15 +HEB 10:38!16 +HEB 10:38!17 +HEB 10:39!2 +HEB 10:39!1 +HEB 10:39!4 +HEB 10:39!3 +HEB 10:39!5 +HEB 10:39!6 +HEB 10:39!7 +HEB 10:39!8 +HEB 10:39!9 +HEB 10:39!10 +HEB 10:39!11 +HEB 10:39!12 +HEB 11:1!2 +HEB 11:1!1 +HEB 11:1!3 +HEB 11:1!4 +HEB 11:1!5 +HEB 11:1!7 +HEB 11:1!6 +HEB 11:1!8 +HEB 11:1!9 +HEB 11:2!3 +HEB 11:2!1 +HEB 11:2!2 +HEB 11:2!4 +HEB 11:2!5 +HEB 11:2!6 +HEB 11:3!1 +HEB 11:3!2 +HEB 11:3!3 +HEB 11:3!4 +HEB 11:3!5 +HEB 11:3!6 +HEB 11:3!7 +HEB 11:3!8 +HEB 11:3!9 +HEB 11:3!10 +HEB 11:3!11 +HEB 11:3!12 +HEB 11:3!13 +HEB 11:3!14 +HEB 11:3!15 +HEB 11:4!1 +HEB 11:4!4 +HEB 11:4!2 +HEB 11:4!3 +HEB 11:4!5 +HEB 11:4!6 +HEB 11:4!7 +HEB 11:4!8 +HEB 11:4!9 +HEB 11:4!10 +HEB 11:4!11 +HEB 11:4!12 +HEB 11:4!13 +HEB 11:4!14 +HEB 11:4!15 +HEB 11:4!16 +HEB 11:4!17 +HEB 11:4!18 +HEB 11:4!19 +HEB 11:4!20 +HEB 11:4!21 +HEB 11:4!22 +HEB 11:4!23 +HEB 11:4!24 +HEB 11:4!25 +HEB 11:4!26 +HEB 11:4!27 +HEB 11:5!1 +HEB 11:5!2 +HEB 11:5!3 +HEB 11:5!4 +HEB 11:5!5 +HEB 11:5!6 +HEB 11:5!7 +HEB 11:5!8 +HEB 11:5!9 +HEB 11:5!10 +HEB 11:5!11 +HEB 11:5!12 +HEB 11:5!13 +HEB 11:5!14 +HEB 11:5!15 +HEB 11:5!17 +HEB 11:5!16 +HEB 11:5!18 +HEB 11:5!19 +HEB 11:5!20 +HEB 11:5!21 +HEB 11:5!22 +HEB 11:5!23 +HEB 11:6!2 +HEB 11:6!1 +HEB 11:6!3 +HEB 11:6!4 +HEB 11:6!5 +HEB 11:6!7 +HEB 11:6!8 +HEB 11:6!6 +HEB 11:6!9 +HEB 11:6!10 +HEB 11:6!11 +HEB 11:6!12 +HEB 11:6!13 +HEB 11:6!14 +HEB 11:6!15 +HEB 11:6!16 +HEB 11:6!17 +HEB 11:6!18 +HEB 11:6!19 +HEB 11:6!20 +HEB 11:7!1 +HEB 11:7!3 +HEB 11:7!2 +HEB 11:7!4 +HEB 11:7!5 +HEB 11:7!6 +HEB 11:7!7 +HEB 11:7!8 +HEB 11:7!9 +HEB 11:7!10 +HEB 11:7!11 +HEB 11:7!12 +HEB 11:7!13 +HEB 11:7!14 +HEB 11:7!15 +HEB 11:7!16 +HEB 11:7!17 +HEB 11:7!18 +HEB 11:7!19 +HEB 11:7!20 +HEB 11:7!21 +HEB 11:7!22 +HEB 11:7!23 +HEB 11:7!24 +HEB 11:7!25 +HEB 11:7!27 +HEB 11:7!26 +HEB 11:8!1 +HEB 11:8!2 +HEB 11:8!3 +HEB 11:8!4 +HEB 11:8!5 +HEB 11:8!6 +HEB 11:8!7 +HEB 11:8!9 +HEB 11:8!8 +HEB 11:8!10 +HEB 11:8!11 +HEB 11:8!12 +HEB 11:8!13 +HEB 11:8!14 +HEB 11:8!15 +HEB 11:8!16 +HEB 11:8!17 +HEB 11:8!18 +HEB 11:9!1 +HEB 11:9!2 +HEB 11:9!3 +HEB 11:9!4 +HEB 11:9!5 +HEB 11:9!6 +HEB 11:9!7 +HEB 11:9!8 +HEB 11:9!9 +HEB 11:9!10 +HEB 11:9!11 +HEB 11:9!12 +HEB 11:9!13 +HEB 11:9!14 +HEB 11:9!15 +HEB 11:9!16 +HEB 11:9!17 +HEB 11:9!18 +HEB 11:9!19 +HEB 11:9!20 +HEB 11:9!21 +HEB 11:10!2 +HEB 11:10!1 +HEB 11:10!3 +HEB 11:10!4 +HEB 11:10!5 +HEB 11:10!6 +HEB 11:10!7 +HEB 11:10!8 +HEB 11:10!9 +HEB 11:10!10 +HEB 11:10!11 +HEB 11:10!12 +HEB 11:10!13 +HEB 11:11!1 +HEB 11:11!2 +HEB 11:11!3 +HEB 11:11!4 +HEB 11:11!5 +HEB 11:11!6 +HEB 11:11!7 +HEB 11:11!8 +HEB 11:11!9 +HEB 11:11!10 +HEB 11:11!11 +HEB 11:11!12 +HEB 11:11!13 +HEB 11:11!14 +HEB 11:11!15 +HEB 11:11!16 +HEB 11:11!17 +HEB 11:11!18 +HEB 11:12!1 +HEB 11:12!2 +HEB 11:12!3 +HEB 11:12!4 +HEB 11:12!8 +HEB 11:12!5 +HEB 11:12!6 +HEB 11:12!7 +HEB 11:12!9 +HEB 11:12!10 +HEB 11:12!11 +HEB 11:12!12 +HEB 11:12!13 +HEB 11:12!14 +HEB 11:12!15 +HEB 11:12!16 +HEB 11:12!17 +HEB 11:12!18 +HEB 11:12!19 +HEB 11:12!20 +HEB 11:12!21 +HEB 11:12!22 +HEB 11:12!23 +HEB 11:12!24 +HEB 11:12!25 +HEB 11:12!26 +HEB 11:12!27 +HEB 11:13!1 +HEB 11:13!2 +HEB 11:13!3 +HEB 11:13!4 +HEB 11:13!5 +HEB 11:13!6 +HEB 11:13!7 +HEB 11:13!8 +HEB 11:13!9 +HEB 11:13!10 +HEB 11:13!11 +HEB 11:13!12 +HEB 11:13!13 +HEB 11:13!14 +HEB 11:13!15 +HEB 11:13!16 +HEB 11:13!17 +HEB 11:13!18 +HEB 11:13!19 +HEB 11:13!20 +HEB 11:13!21 +HEB 11:13!22 +HEB 11:13!23 +HEB 11:13!24 +HEB 11:13!25 +HEB 11:14!2 +HEB 11:14!1 +HEB 11:14!3 +HEB 11:14!4 +HEB 11:14!5 +HEB 11:14!6 +HEB 11:14!7 +HEB 11:14!8 +HEB 11:15!1 +HEB 11:15!3 +HEB 11:15!2 +HEB 11:15!5 +HEB 11:15!4 +HEB 11:15!6 +HEB 11:15!7 +HEB 11:15!8 +HEB 11:15!10 +HEB 11:15!9 +HEB 11:15!11 +HEB 11:15!12 +HEB 11:16!2 +HEB 11:16!1 +HEB 11:16!4 +HEB 11:16!3 +HEB 11:16!5 +HEB 11:16!6 +HEB 11:16!7 +HEB 11:16!8 +HEB 11:16!9 +HEB 11:16!10 +HEB 11:16!11 +HEB 11:16!12 +HEB 11:16!13 +HEB 11:16!14 +HEB 11:16!16 +HEB 11:16!15 +HEB 11:16!18 +HEB 11:16!17 +HEB 11:16!19 +HEB 11:16!20 +HEB 11:17!1 +HEB 11:17!2 +HEB 11:17!3 +HEB 11:17!4 +HEB 11:17!5 +HEB 11:17!6 +HEB 11:17!7 +HEB 11:17!8 +HEB 11:17!9 +HEB 11:17!10 +HEB 11:17!11 +HEB 11:17!12 +HEB 11:17!13 +HEB 11:17!14 +HEB 11:18!1 +HEB 11:18!2 +HEB 11:18!3 +HEB 11:18!4 +HEB 11:18!5 +HEB 11:18!6 +HEB 11:18!7 +HEB 11:18!8 +HEB 11:18!9 +HEB 11:19!1 +HEB 11:19!2 +HEB 11:19!3 +HEB 11:19!4 +HEB 11:19!5 +HEB 11:19!6 +HEB 11:19!7 +HEB 11:19!8 +HEB 11:19!9 +HEB 11:19!10 +HEB 11:19!11 +HEB 11:19!12 +HEB 11:19!13 +HEB 11:19!14 +HEB 11:19!15 +HEB 11:20!1 +HEB 11:20!2 +HEB 11:20!3 +HEB 11:20!4 +HEB 11:20!5 +HEB 11:20!6 +HEB 11:20!7 +HEB 11:20!8 +HEB 11:20!9 +HEB 11:20!10 +HEB 11:20!11 +HEB 11:21!1 +HEB 11:21!2 +HEB 11:21!3 +HEB 11:21!4 +HEB 11:21!5 +HEB 11:21!6 +HEB 11:21!7 +HEB 11:21!8 +HEB 11:21!9 +HEB 11:21!10 +HEB 11:21!11 +HEB 11:21!12 +HEB 11:21!13 +HEB 11:21!14 +HEB 11:21!15 +HEB 11:21!16 +HEB 11:22!1 +HEB 11:22!2 +HEB 11:22!3 +HEB 11:22!4 +HEB 11:22!5 +HEB 11:22!6 +HEB 11:22!7 +HEB 11:22!8 +HEB 11:22!9 +HEB 11:22!10 +HEB 11:22!11 +HEB 11:22!12 +HEB 11:22!13 +HEB 11:22!14 +HEB 11:22!15 +HEB 11:22!16 +HEB 11:23!1 +HEB 11:23!2 +HEB 11:23!3 +HEB 11:23!4 +HEB 11:23!5 +HEB 11:23!6 +HEB 11:23!7 +HEB 11:23!8 +HEB 11:23!9 +HEB 11:23!10 +HEB 11:23!11 +HEB 11:23!12 +HEB 11:23!13 +HEB 11:23!14 +HEB 11:23!15 +HEB 11:23!16 +HEB 11:23!17 +HEB 11:23!18 +HEB 11:23!19 +HEB 11:23!20 +HEB 11:23!21 +HEB 11:24!1 +HEB 11:24!2 +HEB 11:24!3 +HEB 11:24!4 +HEB 11:24!5 +HEB 11:24!6 +HEB 11:24!7 +HEB 11:24!8 +HEB 11:24!9 +HEB 11:25!2 +HEB 11:25!1 +HEB 11:25!3 +HEB 11:25!4 +HEB 11:25!5 +HEB 11:25!6 +HEB 11:25!7 +HEB 11:25!8 +HEB 11:25!9 +HEB 11:25!10 +HEB 11:25!11 +HEB 11:25!12 +HEB 11:26!1 +HEB 11:26!2 +HEB 11:26!3 +HEB 11:26!4 +HEB 11:26!5 +HEB 11:26!6 +HEB 11:26!7 +HEB 11:26!8 +HEB 11:26!9 +HEB 11:26!10 +HEB 11:26!12 +HEB 11:26!11 +HEB 11:26!13 +HEB 11:26!14 +HEB 11:26!15 +HEB 11:27!1 +HEB 11:27!2 +HEB 11:27!3 +HEB 11:27!4 +HEB 11:27!5 +HEB 11:27!6 +HEB 11:27!7 +HEB 11:27!8 +HEB 11:27!9 +HEB 11:27!11 +HEB 11:27!10 +HEB 11:27!12 +HEB 11:27!13 +HEB 11:27!14 +HEB 11:27!15 +HEB 11:28!1 +HEB 11:28!2 +HEB 11:28!3 +HEB 11:28!4 +HEB 11:28!5 +HEB 11:28!6 +HEB 11:28!7 +HEB 11:28!8 +HEB 11:28!9 +HEB 11:28!10 +HEB 11:28!11 +HEB 11:28!12 +HEB 11:28!13 +HEB 11:28!14 +HEB 11:28!15 +HEB 11:28!16 +HEB 11:28!17 +HEB 11:29!1 +HEB 11:29!2 +HEB 11:29!3 +HEB 11:29!4 +HEB 11:29!5 +HEB 11:29!6 +HEB 11:29!7 +HEB 11:29!8 +HEB 11:29!9 +HEB 11:29!10 +HEB 11:29!11 +HEB 11:29!12 +HEB 11:29!13 +HEB 11:29!14 +HEB 11:29!15 +HEB 11:30!1 +HEB 11:30!2 +HEB 11:30!3 +HEB 11:30!4 +HEB 11:30!5 +HEB 11:30!6 +HEB 11:30!7 +HEB 11:30!8 +HEB 11:30!9 +HEB 11:31!1 +HEB 11:31!2 +HEB 11:31!3 +HEB 11:31!4 +HEB 11:31!5 +HEB 11:31!6 +HEB 11:31!7 +HEB 11:31!8 +HEB 11:31!9 +HEB 11:31!10 +HEB 11:31!11 +HEB 11:31!12 +HEB 11:31!13 +HEB 11:32!1 +HEB 11:32!2 +HEB 11:32!3 +HEB 11:32!4 +HEB 11:32!7 +HEB 11:32!5 +HEB 11:32!9 +HEB 11:32!10 +HEB 11:32!6 +HEB 11:32!8 +HEB 11:32!11 +HEB 11:32!12 +HEB 11:32!13 +HEB 11:32!14 +HEB 11:32!15 +HEB 11:32!17 +HEB 11:32!16 +HEB 11:32!18 +HEB 11:32!19 +HEB 11:32!20 +HEB 11:32!21 +HEB 11:32!22 +HEB 11:33!1 +HEB 11:33!2 +HEB 11:33!3 +HEB 11:33!4 +HEB 11:33!5 +HEB 11:33!6 +HEB 11:33!7 +HEB 11:33!8 +HEB 11:33!9 +HEB 11:33!10 +HEB 11:33!11 +HEB 11:33!12 +HEB 11:34!1 +HEB 11:34!2 +HEB 11:34!3 +HEB 11:34!4 +HEB 11:34!5 +HEB 11:34!6 +HEB 11:34!7 +HEB 11:34!8 +HEB 11:34!9 +HEB 11:34!10 +HEB 11:34!11 +HEB 11:34!12 +HEB 11:34!13 +HEB 11:34!14 +HEB 11:34!16 +HEB 11:34!15 +HEB 11:35!1 +HEB 11:35!2 +HEB 11:35!3 +HEB 11:35!4 +HEB 11:35!5 +HEB 11:35!6 +HEB 11:35!7 +HEB 11:35!9 +HEB 11:35!8 +HEB 11:35!10 +HEB 11:35!11 +HEB 11:35!12 +HEB 11:35!13 +HEB 11:35!14 +HEB 11:35!15 +HEB 11:35!16 +HEB 11:35!17 +HEB 11:35!18 +HEB 11:36!2 +HEB 11:36!1 +HEB 11:36!3 +HEB 11:36!4 +HEB 11:36!5 +HEB 11:36!6 +HEB 11:36!7 +HEB 11:36!9 +HEB 11:36!8 +HEB 11:36!10 +HEB 11:36!11 +HEB 11:36!12 +HEB 11:37!1 +HEB 11:37!2 +HEB 11:37!3 +HEB 11:37!4 +HEB 11:37!5 +HEB 11:37!6 +HEB 11:37!7 +HEB 11:37!8 +HEB 11:37!9 +HEB 11:37!10 +HEB 11:37!11 +HEB 11:37!12 +HEB 11:37!13 +HEB 11:37!14 +HEB 11:37!15 +HEB 11:37!16 +HEB 11:38!9 +HEB 11:38!7 +HEB 11:38!8 +HEB 11:38!10 +HEB 11:38!11 +HEB 11:38!12 +HEB 11:38!13 +HEB 11:38!14 +HEB 11:38!15 +HEB 11:38!16 +HEB 11:38!17 +HEB 11:38!18 +HEB 11:38!1 +HEB 11:38!2 +HEB 11:38!3 +HEB 11:38!4 +HEB 11:38!5 +HEB 11:38!6 +HEB 11:39!1 +HEB 11:39!2 +HEB 11:39!3 +HEB 11:39!4 +HEB 11:39!5 +HEB 11:39!6 +HEB 11:39!7 +HEB 11:39!8 +HEB 11:39!9 +HEB 11:39!10 +HEB 11:39!11 +HEB 11:40!1 +HEB 11:40!2 +HEB 11:40!3 +HEB 11:40!4 +HEB 11:40!5 +HEB 11:40!6 +HEB 11:40!7 +HEB 11:40!8 +HEB 11:40!9 +HEB 11:40!10 +HEB 11:40!11 +HEB 11:40!12 +HEB 12:1!1 +HEB 12:1!2 +HEB 12:1!3 +HEB 12:1!5 +HEB 12:1!4 +HEB 12:1!6 +HEB 12:1!7 +HEB 12:1!8 +HEB 12:1!9 +HEB 12:1!11 +HEB 12:1!10 +HEB 12:1!12 +HEB 12:1!13 +HEB 12:1!14 +HEB 12:1!15 +HEB 12:1!16 +HEB 12:1!17 +HEB 12:1!18 +HEB 12:1!19 +HEB 12:1!20 +HEB 12:1!21 +HEB 12:1!22 +HEB 12:1!23 +HEB 12:2!1 +HEB 12:2!2 +HEB 12:2!3 +HEB 12:2!4 +HEB 12:2!5 +HEB 12:2!6 +HEB 12:2!7 +HEB 12:2!8 +HEB 12:2!9 +HEB 12:2!10 +HEB 12:2!11 +HEB 12:2!12 +HEB 12:2!13 +HEB 12:2!14 +HEB 12:2!15 +HEB 12:2!16 +HEB 12:2!17 +HEB 12:2!18 +HEB 12:2!19 +HEB 12:2!22 +HEB 12:2!20 +HEB 12:2!21 +HEB 12:2!23 +HEB 12:2!24 +HEB 12:2!25 +HEB 12:2!26 +HEB 12:2!27 +HEB 12:3!2 +HEB 12:3!1 +HEB 12:3!3 +HEB 12:3!5 +HEB 12:3!4 +HEB 12:3!6 +HEB 12:3!7 +HEB 12:3!8 +HEB 12:3!9 +HEB 12:3!10 +HEB 12:3!11 +HEB 12:3!12 +HEB 12:3!13 +HEB 12:3!14 +HEB 12:3!15 +HEB 12:3!16 +HEB 12:3!17 +HEB 12:3!18 +HEB 12:4!1 +HEB 12:4!2 +HEB 12:4!3 +HEB 12:4!4 +HEB 12:4!5 +HEB 12:4!6 +HEB 12:4!7 +HEB 12:4!8 +HEB 12:5!1 +HEB 12:5!2 +HEB 12:5!3 +HEB 12:5!4 +HEB 12:5!5 +HEB 12:5!6 +HEB 12:5!7 +HEB 12:5!8 +HEB 12:5!9 +HEB 12:5!10 +HEB 12:5!11 +HEB 12:5!12 +HEB 12:5!13 +HEB 12:5!14 +HEB 12:5!15 +HEB 12:5!16 +HEB 12:5!17 +HEB 12:5!18 +HEB 12:5!19 +HEB 12:5!20 +HEB 12:6!2 +HEB 12:6!1 +HEB 12:6!3 +HEB 12:6!4 +HEB 12:6!5 +HEB 12:6!7 +HEB 12:6!6 +HEB 12:6!8 +HEB 12:6!9 +HEB 12:6!10 +HEB 12:6!11 +HEB 12:7!1 +HEB 12:7!2 +HEB 12:7!3 +HEB 12:7!4 +HEB 12:7!5 +HEB 12:7!6 +HEB 12:7!7 +HEB 12:7!8 +HEB 12:7!9 +HEB 12:7!11 +HEB 12:7!10 +HEB 12:7!12 +HEB 12:7!13 +HEB 12:7!14 +HEB 12:7!15 +HEB 12:7!16 +HEB 12:8!2 +HEB 12:8!1 +HEB 12:8!4 +HEB 12:8!3 +HEB 12:8!5 +HEB 12:8!6 +HEB 12:8!7 +HEB 12:8!8 +HEB 12:8!9 +HEB 12:8!10 +HEB 12:8!11 +HEB 12:8!12 +HEB 12:8!13 +HEB 12:8!14 +HEB 12:8!15 +HEB 12:9!3 +HEB 12:9!1 +HEB 12:9!2 +HEB 12:9!4 +HEB 12:9!5 +HEB 12:9!6 +HEB 12:9!7 +HEB 12:9!8 +HEB 12:9!9 +HEB 12:9!10 +HEB 12:9!11 +HEB 12:9!12 +HEB 12:9!13 +HEB 12:9!14 +HEB 12:9!15 +HEB 12:9!16 +HEB 12:9!17 +HEB 12:9!18 +HEB 12:9!19 +HEB 12:9!20 +HEB 12:9!21 +HEB 12:10!3 +HEB 12:10!2 +HEB 12:10!1 +HEB 12:10!4 +HEB 12:10!5 +HEB 12:10!6 +HEB 12:10!7 +HEB 12:10!8 +HEB 12:10!9 +HEB 12:10!10 +HEB 12:10!11 +HEB 12:10!13 +HEB 12:10!12 +HEB 12:10!14 +HEB 12:10!15 +HEB 12:10!16 +HEB 12:10!17 +HEB 12:10!18 +HEB 12:10!19 +HEB 12:10!20 +HEB 12:10!21 +HEB 12:10!22 +HEB 12:11!2 +HEB 12:11!1 +HEB 12:11!3 +HEB 12:11!5 +HEB 12:11!4 +HEB 12:11!6 +HEB 12:11!7 +HEB 12:11!9 +HEB 12:11!8 +HEB 12:11!10 +HEB 12:11!11 +HEB 12:11!12 +HEB 12:11!13 +HEB 12:11!15 +HEB 12:11!14 +HEB 12:11!16 +HEB 12:11!17 +HEB 12:11!23 +HEB 12:11!18 +HEB 12:11!19 +HEB 12:11!20 +HEB 12:11!21 +HEB 12:11!22 +HEB 12:12!1 +HEB 12:12!2 +HEB 12:12!3 +HEB 12:12!4 +HEB 12:12!5 +HEB 12:12!6 +HEB 12:12!7 +HEB 12:12!8 +HEB 12:12!9 +HEB 12:13!1 +HEB 12:13!2 +HEB 12:13!3 +HEB 12:13!4 +HEB 12:13!5 +HEB 12:13!6 +HEB 12:13!7 +HEB 12:13!8 +HEB 12:13!9 +HEB 12:13!10 +HEB 12:13!11 +HEB 12:13!12 +HEB 12:13!14 +HEB 12:13!13 +HEB 12:13!15 +HEB 12:14!2 +HEB 12:14!3 +HEB 12:14!4 +HEB 12:14!1 +HEB 12:14!5 +HEB 12:14!6 +HEB 12:14!7 +HEB 12:14!8 +HEB 12:14!9 +HEB 12:14!10 +HEB 12:14!11 +HEB 12:14!12 +HEB 12:14!13 +HEB 12:15!1 +HEB 12:15!2 +HEB 12:15!3 +HEB 12:15!4 +HEB 12:15!5 +HEB 12:15!6 +HEB 12:15!7 +HEB 12:15!8 +HEB 12:15!9 +HEB 12:15!10 +HEB 12:15!11 +HEB 12:15!12 +HEB 12:15!13 +HEB 12:15!14 +HEB 12:15!15 +HEB 12:15!16 +HEB 12:15!17 +HEB 12:15!18 +HEB 12:15!19 +HEB 12:15!20 +HEB 12:15!21 +HEB 12:15!22 +HEB 12:16!1 +HEB 12:16!2 +HEB 12:16!3 +HEB 12:16!4 +HEB 12:16!5 +HEB 12:16!6 +HEB 12:16!7 +HEB 12:16!8 +HEB 12:16!9 +HEB 12:16!10 +HEB 12:16!11 +HEB 12:16!12 +HEB 12:16!13 +HEB 12:16!14 +HEB 12:16!15 +HEB 12:17!2 +HEB 12:17!1 +HEB 12:17!3 +HEB 12:17!4 +HEB 12:17!5 +HEB 12:17!6 +HEB 12:17!7 +HEB 12:17!8 +HEB 12:17!9 +HEB 12:17!10 +HEB 12:17!12 +HEB 12:17!11 +HEB 12:17!13 +HEB 12:17!14 +HEB 12:17!15 +HEB 12:17!16 +HEB 12:17!17 +HEB 12:17!18 +HEB 12:17!19 +HEB 12:17!20 +HEB 12:18!2 +HEB 12:18!1 +HEB 12:18!3 +HEB 12:18!4 +HEB 12:18!5 +HEB 12:18!6 +HEB 12:18!7 +HEB 12:18!8 +HEB 12:18!9 +HEB 12:18!10 +HEB 12:18!11 +HEB 12:18!12 +HEB 12:18!13 +HEB 12:19!1 +HEB 12:19!2 +HEB 12:19!3 +HEB 12:19!4 +HEB 12:19!5 +HEB 12:19!6 +HEB 12:19!7 +HEB 12:19!8 +HEB 12:19!9 +HEB 12:19!10 +HEB 12:19!11 +HEB 12:19!12 +HEB 12:19!13 +HEB 12:19!14 +HEB 12:20!3 +HEB 12:20!1 +HEB 12:20!2 +HEB 12:20!4 +HEB 12:20!5 +HEB 12:20!6 +HEB 12:20!7 +HEB 12:20!8 +HEB 12:20!9 +HEB 12:20!10 +HEB 12:20!11 +HEB 12:21!1 +HEB 12:21!2 +HEB 12:21!3 +HEB 12:21!4 +HEB 12:21!5 +HEB 12:21!6 +HEB 12:21!7 +HEB 12:21!8 +HEB 12:21!10 +HEB 12:21!9 +HEB 12:21!11 +HEB 12:21!12 +HEB 12:22!1 +HEB 12:22!2 +HEB 12:22!3 +HEB 12:22!4 +HEB 12:22!5 +HEB 12:22!6 +HEB 12:22!7 +HEB 12:22!8 +HEB 12:22!9 +HEB 12:22!10 +HEB 12:22!11 +HEB 12:22!12 +HEB 12:22!13 +HEB 12:22!14 +HEB 12:23!1 +HEB 12:23!2 +HEB 12:23!3 +HEB 12:23!4 +HEB 12:23!5 +HEB 12:23!6 +HEB 12:23!7 +HEB 12:23!8 +HEB 12:23!10 +HEB 12:23!9 +HEB 12:23!11 +HEB 12:23!12 +HEB 12:23!13 +HEB 12:23!14 +HEB 12:24!1 +HEB 12:24!2 +HEB 12:24!3 +HEB 12:24!4 +HEB 12:24!5 +HEB 12:24!6 +HEB 12:24!7 +HEB 12:24!8 +HEB 12:24!9 +HEB 12:24!10 +HEB 12:24!11 +HEB 12:24!12 +HEB 12:24!13 +HEB 12:25!1 +HEB 12:25!2 +HEB 12:25!3 +HEB 12:25!4 +HEB 12:25!5 +HEB 12:25!7 +HEB 12:25!6 +HEB 12:25!9 +HEB 12:25!10 +HEB 12:25!8 +HEB 12:25!13 +HEB 12:25!14 +HEB 12:25!11 +HEB 12:25!12 +HEB 12:25!15 +HEB 12:25!16 +HEB 12:25!17 +HEB 12:25!18 +HEB 12:25!19 +HEB 12:25!20 +HEB 12:25!21 +HEB 12:25!22 +HEB 12:25!23 +HEB 12:26!1 +HEB 12:26!2 +HEB 12:26!3 +HEB 12:26!4 +HEB 12:26!5 +HEB 12:26!6 +HEB 12:26!7 +HEB 12:26!9 +HEB 12:26!8 +HEB 12:26!10 +HEB 12:26!11 +HEB 12:26!12 +HEB 12:26!13 +HEB 12:26!14 +HEB 12:26!15 +HEB 12:26!16 +HEB 12:26!17 +HEB 12:26!18 +HEB 12:26!19 +HEB 12:26!20 +HEB 12:26!21 +HEB 12:26!22 +HEB 12:26!23 +HEB 12:27!2 +HEB 12:27!1 +HEB 12:27!3 +HEB 12:27!4 +HEB 12:27!5 +HEB 12:27!6 +HEB 12:27!7 +HEB 12:27!8 +HEB 12:27!9 +HEB 12:27!10 +HEB 12:27!11 +HEB 12:27!12 +HEB 12:27!13 +HEB 12:27!14 +HEB 12:27!15 +HEB 12:27!16 +HEB 12:28!1 +HEB 12:28!2 +HEB 12:28!3 +HEB 12:28!4 +HEB 12:28!5 +HEB 12:28!6 +HEB 12:28!7 +HEB 12:28!8 +HEB 12:28!9 +HEB 12:28!10 +HEB 12:28!11 +HEB 12:28!12 +HEB 12:28!13 +HEB 12:28!14 +HEB 12:28!15 +HEB 12:28!16 +HEB 12:29!2 +HEB 12:29!1 +HEB 12:29!3 +HEB 12:29!4 +HEB 12:29!5 +HEB 12:29!6 +HEB 12:29!7 +HEB 13:1!1 +HEB 13:1!2 +HEB 13:1!3 +HEB 13:2!1 +HEB 13:2!2 +HEB 13:2!3 +HEB 13:2!4 +HEB 13:2!7 +HEB 13:2!5 +HEB 13:2!6 +HEB 13:2!8 +HEB 13:2!9 +HEB 13:2!10 +HEB 13:2!11 +HEB 13:3!1 +HEB 13:3!2 +HEB 13:3!3 +HEB 13:3!4 +HEB 13:3!5 +HEB 13:3!6 +HEB 13:3!7 +HEB 13:3!8 +HEB 13:3!9 +HEB 13:3!10 +HEB 13:3!11 +HEB 13:3!12 +HEB 13:3!13 +HEB 13:4!1 +HEB 13:4!2 +HEB 13:4!3 +HEB 13:4!4 +HEB 13:4!5 +HEB 13:4!6 +HEB 13:4!7 +HEB 13:4!8 +HEB 13:4!9 +HEB 13:4!11 +HEB 13:4!10 +HEB 13:4!12 +HEB 13:4!13 +HEB 13:4!14 +HEB 13:4!15 +HEB 13:4!16 +HEB 13:5!1 +HEB 13:5!2 +HEB 13:5!3 +HEB 13:5!4 +HEB 13:5!5 +HEB 13:5!6 +HEB 13:5!8 +HEB 13:5!7 +HEB 13:5!9 +HEB 13:5!10 +HEB 13:5!11 +HEB 13:5!12 +HEB 13:5!13 +HEB 13:5!14 +HEB 13:5!15 +HEB 13:5!16 +HEB 13:5!17 +HEB 13:5!18 +HEB 13:6!1 +HEB 13:6!2 +HEB 13:6!3 +HEB 13:6!4 +HEB 13:6!5 +HEB 13:6!6 +HEB 13:6!7 +HEB 13:6!8 +HEB 13:6!9 +HEB 13:6!10 +HEB 13:6!11 +HEB 13:6!12 +HEB 13:6!13 +HEB 13:7!1 +HEB 13:7!2 +HEB 13:7!3 +HEB 13:7!4 +HEB 13:7!5 +HEB 13:7!6 +HEB 13:7!7 +HEB 13:7!8 +HEB 13:7!9 +HEB 13:7!10 +HEB 13:7!11 +HEB 13:7!12 +HEB 13:7!14 +HEB 13:7!15 +HEB 13:7!16 +HEB 13:7!17 +HEB 13:7!13 +HEB 13:7!18 +HEB 13:7!19 +HEB 13:7!20 +HEB 13:8!1 +HEB 13:8!2 +HEB 13:8!3 +HEB 13:8!4 +HEB 13:8!5 +HEB 13:8!6 +HEB 13:8!7 +HEB 13:8!8 +HEB 13:8!9 +HEB 13:8!10 +HEB 13:8!11 +HEB 13:9!1 +HEB 13:9!2 +HEB 13:9!3 +HEB 13:9!4 +HEB 13:9!5 +HEB 13:9!6 +HEB 13:9!8 +HEB 13:9!7 +HEB 13:9!9 +HEB 13:9!10 +HEB 13:9!11 +HEB 13:9!12 +HEB 13:9!13 +HEB 13:9!14 +HEB 13:9!15 +HEB 13:9!16 +HEB 13:9!17 +HEB 13:9!18 +HEB 13:9!19 +HEB 13:9!20 +HEB 13:10!1 +HEB 13:10!2 +HEB 13:10!3 +HEB 13:10!4 +HEB 13:10!5 +HEB 13:10!6 +HEB 13:10!7 +HEB 13:10!8 +HEB 13:10!9 +HEB 13:10!10 +HEB 13:10!11 +HEB 13:10!12 +HEB 13:11!2 +HEB 13:11!3 +HEB 13:11!1 +HEB 13:11!4 +HEB 13:11!5 +HEB 13:11!6 +HEB 13:11!7 +HEB 13:11!8 +HEB 13:11!9 +HEB 13:11!10 +HEB 13:11!11 +HEB 13:11!12 +HEB 13:11!13 +HEB 13:11!14 +HEB 13:11!15 +HEB 13:11!16 +HEB 13:11!17 +HEB 13:11!18 +HEB 13:11!19 +HEB 13:11!20 +HEB 13:11!21 +HEB 13:12!1 +HEB 13:12!2 +HEB 13:12!3 +HEB 13:12!4 +HEB 13:12!5 +HEB 13:12!6 +HEB 13:12!7 +HEB 13:12!8 +HEB 13:12!9 +HEB 13:12!10 +HEB 13:12!11 +HEB 13:12!12 +HEB 13:12!13 +HEB 13:12!14 +HEB 13:12!15 +HEB 13:13!1 +HEB 13:13!2 +HEB 13:13!3 +HEB 13:13!4 +HEB 13:13!5 +HEB 13:13!6 +HEB 13:13!7 +HEB 13:13!8 +HEB 13:13!9 +HEB 13:13!10 +HEB 13:13!11 +HEB 13:14!2 +HEB 13:14!1 +HEB 13:14!3 +HEB 13:14!4 +HEB 13:14!5 +HEB 13:14!6 +HEB 13:14!7 +HEB 13:14!8 +HEB 13:14!9 +HEB 13:14!10 +HEB 13:15!3 +HEB 13:15!1 +HEB 13:15!2 +HEB 13:15!4 +HEB 13:15!7 +HEB 13:15!8 +HEB 13:15!9 +HEB 13:15!10 +HEB 13:15!5 +HEB 13:15!6 +HEB 13:15!11 +HEB 13:15!12 +HEB 13:15!13 +HEB 13:15!14 +HEB 13:15!15 +HEB 13:15!16 +HEB 13:15!17 +HEB 13:15!18 +HEB 13:16!2 +HEB 13:16!1 +HEB 13:16!3 +HEB 13:16!4 +HEB 13:16!5 +HEB 13:16!6 +HEB 13:16!7 +HEB 13:16!9 +HEB 13:16!8 +HEB 13:16!10 +HEB 13:16!11 +HEB 13:16!12 +HEB 13:16!13 +HEB 13:17!1 +HEB 13:17!2 +HEB 13:17!3 +HEB 13:17!4 +HEB 13:17!5 +HEB 13:17!6 +HEB 13:17!8 +HEB 13:17!7 +HEB 13:17!9 +HEB 13:17!10 +HEB 13:17!11 +HEB 13:17!12 +HEB 13:17!13 +HEB 13:17!14 +HEB 13:17!15 +HEB 13:17!16 +HEB 13:17!17 +HEB 13:17!18 +HEB 13:17!19 +HEB 13:17!20 +HEB 13:17!21 +HEB 13:17!22 +HEB 13:17!23 +HEB 13:17!24 +HEB 13:17!26 +HEB 13:17!25 +HEB 13:17!27 +HEB 13:17!28 +HEB 13:18!1 +HEB 13:18!2 +HEB 13:18!3 +HEB 13:18!5 +HEB 13:18!4 +HEB 13:18!6 +HEB 13:18!7 +HEB 13:18!8 +HEB 13:18!9 +HEB 13:18!10 +HEB 13:18!11 +HEB 13:18!12 +HEB 13:18!14 +HEB 13:18!13 +HEB 13:19!2 +HEB 13:19!1 +HEB 13:19!3 +HEB 13:19!4 +HEB 13:19!5 +HEB 13:19!6 +HEB 13:19!7 +HEB 13:19!8 +HEB 13:19!9 +HEB 13:20!2 +HEB 13:20!1 +HEB 13:20!3 +HEB 13:20!4 +HEB 13:20!5 +HEB 13:20!6 +HEB 13:20!7 +HEB 13:20!8 +HEB 13:20!9 +HEB 13:20!16 +HEB 13:20!17 +HEB 13:20!18 +HEB 13:20!19 +HEB 13:20!10 +HEB 13:20!11 +HEB 13:20!12 +HEB 13:20!13 +HEB 13:20!14 +HEB 13:20!15 +HEB 13:20!20 +HEB 13:20!21 +HEB 13:20!22 +HEB 13:20!23 +HEB 13:21!1 +HEB 13:21!2 +HEB 13:21!3 +HEB 13:21!4 +HEB 13:21!5 +HEB 13:21!6 +HEB 13:21!7 +HEB 13:21!8 +HEB 13:21!9 +HEB 13:21!10 +HEB 13:21!11 +HEB 13:21!12 +HEB 13:21!13 +HEB 13:21!14 +HEB 13:21!15 +HEB 13:21!16 +HEB 13:21!17 +HEB 13:21!18 +HEB 13:21!19 +HEB 13:21!20 +HEB 13:21!21 +HEB 13:21!22 +HEB 13:21!23 +HEB 13:21!24 +HEB 13:21!25 +HEB 13:21!26 +HEB 13:21!27 +HEB 13:21!28 +HEB 13:21!29 +HEB 13:21!30 +HEB 13:22!2 +HEB 13:22!1 +HEB 13:22!3 +HEB 13:22!4 +HEB 13:22!5 +HEB 13:22!6 +HEB 13:22!7 +HEB 13:22!8 +HEB 13:22!9 +HEB 13:22!11 +HEB 13:22!10 +HEB 13:22!12 +HEB 13:22!13 +HEB 13:22!14 +HEB 13:22!15 +HEB 13:23!1 +HEB 13:23!2 +HEB 13:23!3 +HEB 13:23!4 +HEB 13:23!5 +HEB 13:23!6 +HEB 13:23!7 +HEB 13:23!8 +HEB 13:23!9 +HEB 13:23!10 +HEB 13:23!11 +HEB 13:23!12 +HEB 13:23!13 +HEB 13:24!1 +HEB 13:24!2 +HEB 13:24!3 +HEB 13:24!4 +HEB 13:24!5 +HEB 13:24!6 +HEB 13:24!7 +HEB 13:24!8 +HEB 13:24!9 +HEB 13:24!10 +HEB 13:24!11 +HEB 13:24!12 +HEB 13:24!13 +HEB 13:24!14 +HEB 13:24!15 +HEB 13:25!1 +HEB 13:25!2 +HEB 13:25!3 +HEB 13:25!4 +HEB 13:25!5 +JAS 1:1!1 +JAS 1:1!2 +JAS 1:1!3 +JAS 1:1!4 +JAS 1:1!5 +JAS 1:1!6 +JAS 1:1!7 +JAS 1:1!8 +JAS 1:1!9 +JAS 1:1!10 +JAS 1:1!11 +JAS 1:1!12 +JAS 1:1!13 +JAS 1:1!14 +JAS 1:1!15 +JAS 1:2!4 +JAS 1:2!5 +JAS 1:2!1 +JAS 1:2!2 +JAS 1:2!3 +JAS 1:2!6 +JAS 1:2!7 +JAS 1:2!9 +JAS 1:2!8 +JAS 1:3!1 +JAS 1:3!2 +JAS 1:3!3 +JAS 1:3!4 +JAS 1:3!5 +JAS 1:3!6 +JAS 1:3!7 +JAS 1:3!8 +JAS 1:3!9 +JAS 1:4!2 +JAS 1:4!1 +JAS 1:4!3 +JAS 1:4!4 +JAS 1:4!5 +JAS 1:4!6 +JAS 1:4!7 +JAS 1:4!8 +JAS 1:4!9 +JAS 1:4!10 +JAS 1:4!11 +JAS 1:4!12 +JAS 1:4!13 +JAS 1:4!14 +JAS 1:5!2 +JAS 1:5!1 +JAS 1:5!3 +JAS 1:5!4 +JAS 1:5!5 +JAS 1:5!6 +JAS 1:5!7 +JAS 1:5!8 +JAS 1:5!9 +JAS 1:5!10 +JAS 1:5!12 +JAS 1:5!13 +JAS 1:5!14 +JAS 1:5!15 +JAS 1:5!16 +JAS 1:5!11 +JAS 1:5!17 +JAS 1:5!18 +JAS 1:5!19 +JAS 1:6!2 +JAS 1:6!1 +JAS 1:6!3 +JAS 1:6!4 +JAS 1:6!5 +JAS 1:6!6 +JAS 1:6!8 +JAS 1:6!7 +JAS 1:6!9 +JAS 1:6!10 +JAS 1:6!11 +JAS 1:6!12 +JAS 1:6!13 +JAS 1:6!14 +JAS 1:6!15 +JAS 1:7!2 +JAS 1:7!1 +JAS 1:7!3 +JAS 1:7!4 +JAS 1:7!5 +JAS 1:7!6 +JAS 1:7!7 +JAS 1:7!8 +JAS 1:7!9 +JAS 1:7!10 +JAS 1:7!11 +JAS 1:7!12 +JAS 1:8!1 +JAS 1:8!2 +JAS 1:8!3 +JAS 1:8!4 +JAS 1:8!5 +JAS 1:8!6 +JAS 1:8!7 +JAS 1:8!8 +JAS 1:9!2 +JAS 1:9!1 +JAS 1:9!3 +JAS 1:9!4 +JAS 1:9!5 +JAS 1:9!6 +JAS 1:9!7 +JAS 1:9!8 +JAS 1:9!9 +JAS 1:9!10 +JAS 1:10!2 +JAS 1:10!1 +JAS 1:10!3 +JAS 1:10!4 +JAS 1:10!5 +JAS 1:10!6 +JAS 1:10!7 +JAS 1:10!8 +JAS 1:10!9 +JAS 1:10!10 +JAS 1:10!11 +JAS 1:10!12 +JAS 1:11!2 +JAS 1:11!1 +JAS 1:11!3 +JAS 1:11!4 +JAS 1:11!5 +JAS 1:11!6 +JAS 1:11!7 +JAS 1:11!8 +JAS 1:11!9 +JAS 1:11!10 +JAS 1:11!11 +JAS 1:11!12 +JAS 1:11!13 +JAS 1:11!14 +JAS 1:11!15 +JAS 1:11!16 +JAS 1:11!17 +JAS 1:11!18 +JAS 1:11!19 +JAS 1:11!20 +JAS 1:11!21 +JAS 1:11!22 +JAS 1:11!23 +JAS 1:11!24 +JAS 1:11!25 +JAS 1:11!26 +JAS 1:11!27 +JAS 1:11!28 +JAS 1:11!29 +JAS 1:11!30 +JAS 1:11!31 +JAS 1:11!32 +JAS 1:12!1 +JAS 1:12!2 +JAS 1:12!3 +JAS 1:12!4 +JAS 1:12!5 +JAS 1:12!6 +JAS 1:12!7 +JAS 1:12!8 +JAS 1:12!9 +JAS 1:12!10 +JAS 1:12!11 +JAS 1:12!12 +JAS 1:12!13 +JAS 1:12!14 +JAS 1:12!15 +JAS 1:12!16 +JAS 1:12!17 +JAS 1:12!18 +JAS 1:13!1 +JAS 1:13!2 +JAS 1:13!3 +JAS 1:13!4 +JAS 1:13!5 +JAS 1:13!6 +JAS 1:13!7 +JAS 1:13!9 +JAS 1:13!8 +JAS 1:13!10 +JAS 1:13!11 +JAS 1:13!12 +JAS 1:13!13 +JAS 1:13!15 +JAS 1:13!14 +JAS 1:13!16 +JAS 1:13!17 +JAS 1:14!2 +JAS 1:14!1 +JAS 1:14!3 +JAS 1:14!4 +JAS 1:14!5 +JAS 1:14!6 +JAS 1:14!7 +JAS 1:14!8 +JAS 1:14!9 +JAS 1:14!10 +JAS 1:15!1 +JAS 1:15!2 +JAS 1:15!3 +JAS 1:15!4 +JAS 1:15!5 +JAS 1:15!6 +JAS 1:15!8 +JAS 1:15!7 +JAS 1:15!9 +JAS 1:15!10 +JAS 1:15!11 +JAS 1:15!12 +JAS 1:16!1 +JAS 1:16!2 +JAS 1:16!3 +JAS 1:16!4 +JAS 1:16!5 +JAS 1:17!1 +JAS 1:17!2 +JAS 1:17!3 +JAS 1:17!4 +JAS 1:17!5 +JAS 1:17!6 +JAS 1:17!7 +JAS 1:17!8 +JAS 1:17!9 +JAS 1:17!10 +JAS 1:17!11 +JAS 1:17!12 +JAS 1:17!13 +JAS 1:17!14 +JAS 1:17!15 +JAS 1:17!16 +JAS 1:17!17 +JAS 1:17!18 +JAS 1:17!19 +JAS 1:17!20 +JAS 1:17!21 +JAS 1:17!22 +JAS 1:17!23 +JAS 1:18!1 +JAS 1:18!2 +JAS 1:18!3 +JAS 1:18!4 +JAS 1:18!5 +JAS 1:18!6 +JAS 1:18!7 +JAS 1:18!8 +JAS 1:18!9 +JAS 1:18!10 +JAS 1:18!11 +JAS 1:18!12 +JAS 1:18!13 +JAS 1:18!14 +JAS 1:19!1 +JAS 1:19!2 +JAS 1:19!3 +JAS 1:19!4 +JAS 1:19!6 +JAS 1:19!5 +JAS 1:19!7 +JAS 1:19!8 +JAS 1:19!9 +JAS 1:19!10 +JAS 1:19!11 +JAS 1:19!12 +JAS 1:19!13 +JAS 1:19!14 +JAS 1:19!15 +JAS 1:19!16 +JAS 1:19!17 +JAS 1:19!18 +JAS 1:19!19 +JAS 1:20!2 +JAS 1:20!1 +JAS 1:20!3 +JAS 1:20!4 +JAS 1:20!5 +JAS 1:20!6 +JAS 1:20!7 +JAS 1:21!1 +JAS 1:21!2 +JAS 1:21!3 +JAS 1:21!4 +JAS 1:21!5 +JAS 1:21!6 +JAS 1:21!7 +JAS 1:21!8 +JAS 1:21!9 +JAS 1:21!10 +JAS 1:21!11 +JAS 1:21!12 +JAS 1:21!13 +JAS 1:21!14 +JAS 1:21!15 +JAS 1:21!16 +JAS 1:21!17 +JAS 1:21!18 +JAS 1:21!19 +JAS 1:22!2 +JAS 1:22!1 +JAS 1:22!3 +JAS 1:22!4 +JAS 1:22!5 +JAS 1:22!6 +JAS 1:22!7 +JAS 1:22!8 +JAS 1:22!9 +JAS 1:22!10 +JAS 1:23!1 +JAS 1:23!2 +JAS 1:23!3 +JAS 1:23!4 +JAS 1:23!5 +JAS 1:23!6 +JAS 1:23!7 +JAS 1:23!8 +JAS 1:23!9 +JAS 1:23!10 +JAS 1:23!11 +JAS 1:23!12 +JAS 1:23!13 +JAS 1:23!14 +JAS 1:23!15 +JAS 1:23!16 +JAS 1:23!17 +JAS 1:23!18 +JAS 1:23!19 +JAS 1:23!20 +JAS 1:24!2 +JAS 1:24!1 +JAS 1:24!3 +JAS 1:24!4 +JAS 1:24!5 +JAS 1:24!6 +JAS 1:24!7 +JAS 1:24!8 +JAS 1:24!9 +JAS 1:24!10 +JAS 1:25!2 +JAS 1:25!1 +JAS 1:25!3 +JAS 1:25!4 +JAS 1:25!5 +JAS 1:25!6 +JAS 1:25!7 +JAS 1:25!8 +JAS 1:25!9 +JAS 1:25!10 +JAS 1:25!11 +JAS 1:25!15 +JAS 1:25!12 +JAS 1:25!13 +JAS 1:25!14 +JAS 1:25!16 +JAS 1:25!17 +JAS 1:25!18 +JAS 1:25!19 +JAS 1:25!20 +JAS 1:25!21 +JAS 1:25!22 +JAS 1:25!23 +JAS 1:25!24 +JAS 1:25!25 +JAS 1:26!1 +JAS 1:26!2 +JAS 1:26!3 +JAS 1:26!4 +JAS 1:26!5 +JAS 1:26!6 +JAS 1:26!7 +JAS 1:26!8 +JAS 1:26!9 +JAS 1:26!10 +JAS 1:26!11 +JAS 1:26!12 +JAS 1:26!13 +JAS 1:26!14 +JAS 1:26!16 +JAS 1:26!17 +JAS 1:26!15 +JAS 1:27!1 +JAS 1:27!2 +JAS 1:27!3 +JAS 1:27!4 +JAS 1:27!5 +JAS 1:27!6 +JAS 1:27!7 +JAS 1:27!8 +JAS 1:27!9 +JAS 1:27!11 +JAS 1:27!10 +JAS 1:27!12 +JAS 1:27!13 +JAS 1:27!14 +JAS 1:27!15 +JAS 1:27!16 +JAS 1:27!17 +JAS 1:27!18 +JAS 1:27!19 +JAS 1:27!20 +JAS 1:27!21 +JAS 1:27!22 +JAS 1:27!23 +JAS 1:27!24 +JAS 1:27!25 +JAS 2:1!1 +JAS 2:1!2 +JAS 2:1!3 +JAS 2:1!4 +JAS 2:1!5 +JAS 2:1!6 +JAS 2:1!7 +JAS 2:1!8 +JAS 2:1!9 +JAS 2:1!10 +JAS 2:1!11 +JAS 2:1!12 +JAS 2:1!13 +JAS 2:1!14 +JAS 2:1!15 +JAS 2:2!2 +JAS 2:2!1 +JAS 2:2!3 +JAS 2:2!4 +JAS 2:2!5 +JAS 2:2!6 +JAS 2:2!7 +JAS 2:2!8 +JAS 2:2!9 +JAS 2:2!10 +JAS 2:2!11 +JAS 2:2!13 +JAS 2:2!12 +JAS 2:2!14 +JAS 2:2!15 +JAS 2:2!16 +JAS 2:2!17 +JAS 2:2!18 +JAS 2:3!2 +JAS 2:3!1 +JAS 2:3!3 +JAS 2:3!4 +JAS 2:3!5 +JAS 2:3!6 +JAS 2:3!7 +JAS 2:3!8 +JAS 2:3!9 +JAS 2:3!10 +JAS 2:3!11 +JAS 2:3!12 +JAS 2:3!13 +JAS 2:3!14 +JAS 2:3!15 +JAS 2:3!16 +JAS 2:3!17 +JAS 2:3!18 +JAS 2:3!19 +JAS 2:3!20 +JAS 2:3!21 +JAS 2:3!22 +JAS 2:3!23 +JAS 2:3!24 +JAS 2:3!25 +JAS 2:3!26 +JAS 2:3!27 +JAS 2:3!28 +JAS 2:4!1 +JAS 2:4!2 +JAS 2:4!3 +JAS 2:4!4 +JAS 2:4!5 +JAS 2:4!6 +JAS 2:4!7 +JAS 2:4!8 +JAS 2:4!9 +JAS 2:5!1 +JAS 2:5!2 +JAS 2:5!3 +JAS 2:5!4 +JAS 2:5!5 +JAS 2:5!6 +JAS 2:5!7 +JAS 2:5!8 +JAS 2:5!9 +JAS 2:5!10 +JAS 2:5!11 +JAS 2:5!12 +JAS 2:5!13 +JAS 2:5!14 +JAS 2:5!15 +JAS 2:5!16 +JAS 2:5!17 +JAS 2:5!18 +JAS 2:5!19 +JAS 2:5!20 +JAS 2:5!21 +JAS 2:5!22 +JAS 2:5!23 +JAS 2:5!24 +JAS 2:6!2 +JAS 2:6!1 +JAS 2:6!3 +JAS 2:6!4 +JAS 2:6!5 +JAS 2:6!6 +JAS 2:6!7 +JAS 2:6!8 +JAS 2:6!9 +JAS 2:6!10 +JAS 2:6!11 +JAS 2:6!12 +JAS 2:6!13 +JAS 2:6!14 +JAS 2:6!15 +JAS 2:6!16 +JAS 2:7!1 +JAS 2:7!2 +JAS 2:7!3 +JAS 2:7!4 +JAS 2:7!5 +JAS 2:7!6 +JAS 2:7!7 +JAS 2:7!8 +JAS 2:7!9 +JAS 2:7!10 +JAS 2:8!1 +JAS 2:8!2 +JAS 2:8!3 +JAS 2:8!5 +JAS 2:8!4 +JAS 2:8!6 +JAS 2:8!7 +JAS 2:8!8 +JAS 2:8!9 +JAS 2:8!10 +JAS 2:8!11 +JAS 2:8!12 +JAS 2:8!13 +JAS 2:8!14 +JAS 2:8!15 +JAS 2:8!16 +JAS 2:9!2 +JAS 2:9!1 +JAS 2:9!3 +JAS 2:9!4 +JAS 2:9!5 +JAS 2:9!6 +JAS 2:9!7 +JAS 2:9!8 +JAS 2:9!9 +JAS 2:9!10 +JAS 2:9!11 +JAS 2:10!2 +JAS 2:10!1 +JAS 2:10!3 +JAS 2:10!4 +JAS 2:10!5 +JAS 2:10!6 +JAS 2:10!8 +JAS 2:10!7 +JAS 2:10!9 +JAS 2:10!10 +JAS 2:10!11 +JAS 2:10!12 +JAS 2:10!13 +JAS 2:11!2 +JAS 2:11!1 +JAS 2:11!3 +JAS 2:11!4 +JAS 2:11!5 +JAS 2:11!6 +JAS 2:11!7 +JAS 2:11!8 +JAS 2:11!9 +JAS 2:11!11 +JAS 2:11!10 +JAS 2:11!12 +JAS 2:11!13 +JAS 2:11!15 +JAS 2:11!14 +JAS 2:11!16 +JAS 2:11!17 +JAS 2:11!18 +JAS 2:12!1 +JAS 2:12!2 +JAS 2:12!3 +JAS 2:12!4 +JAS 2:12!5 +JAS 2:12!6 +JAS 2:12!7 +JAS 2:12!8 +JAS 2:12!9 +JAS 2:12!11 +JAS 2:12!10 +JAS 2:13!2 +JAS 2:13!1 +JAS 2:13!3 +JAS 2:13!4 +JAS 2:13!5 +JAS 2:13!6 +JAS 2:13!7 +JAS 2:13!8 +JAS 2:13!9 +JAS 2:13!10 +JAS 2:13!11 +JAS 2:14!4 +JAS 2:14!5 +JAS 2:14!1 +JAS 2:14!2 +JAS 2:14!3 +JAS 2:14!6 +JAS 2:14!7 +JAS 2:14!10 +JAS 2:14!8 +JAS 2:14!9 +JAS 2:14!12 +JAS 2:14!11 +JAS 2:14!13 +JAS 2:14!14 +JAS 2:14!15 +JAS 2:14!16 +JAS 2:14!17 +JAS 2:14!18 +JAS 2:14!19 +JAS 2:14!20 +JAS 2:15!1 +JAS 2:15!2 +JAS 2:15!3 +JAS 2:15!4 +JAS 2:15!5 +JAS 2:15!6 +JAS 2:15!7 +JAS 2:15!8 +JAS 2:15!9 +JAS 2:15!10 +JAS 2:15!11 +JAS 2:16!2 +JAS 2:16!1 +JAS 2:16!4 +JAS 2:16!3 +JAS 2:16!5 +JAS 2:16!6 +JAS 2:16!7 +JAS 2:16!8 +JAS 2:16!9 +JAS 2:16!10 +JAS 2:16!11 +JAS 2:16!12 +JAS 2:16!15 +JAS 2:16!13 +JAS 2:16!14 +JAS 2:16!16 +JAS 2:16!17 +JAS 2:16!18 +JAS 2:16!19 +JAS 2:16!20 +JAS 2:16!21 +JAS 2:16!22 +JAS 2:16!23 +JAS 2:17!1 +JAS 2:17!2 +JAS 2:17!3 +JAS 2:17!4 +JAS 2:17!5 +JAS 2:17!6 +JAS 2:17!7 +JAS 2:17!8 +JAS 2:17!9 +JAS 2:17!10 +JAS 2:17!11 +JAS 2:17!12 +JAS 2:18!1 +JAS 2:18!2 +JAS 2:18!3 +JAS 2:18!4 +JAS 2:18!5 +JAS 2:18!6 +JAS 2:18!7 +JAS 2:18!8 +JAS 2:18!9 +JAS 2:18!10 +JAS 2:18!11 +JAS 2:18!12 +JAS 2:18!13 +JAS 2:18!14 +JAS 2:18!15 +JAS 2:18!16 +JAS 2:18!17 +JAS 2:18!18 +JAS 2:18!19 +JAS 2:18!20 +JAS 2:18!21 +JAS 2:18!22 +JAS 2:18!23 +JAS 2:18!24 +JAS 2:18!25 +JAS 2:18!26 +JAS 2:19!1 +JAS 2:19!2 +JAS 2:19!3 +JAS 2:19!4 +JAS 2:19!5 +JAS 2:19!6 +JAS 2:19!7 +JAS 2:19!8 +JAS 2:19!9 +JAS 2:19!10 +JAS 2:19!11 +JAS 2:19!12 +JAS 2:19!13 +JAS 2:19!14 +JAS 2:19!15 +JAS 2:20!2 +JAS 2:20!4 +JAS 2:20!5 +JAS 2:20!6 +JAS 2:20!1 +JAS 2:20!3 +JAS 2:20!7 +JAS 2:20!8 +JAS 2:20!9 +JAS 2:20!10 +JAS 2:20!11 +JAS 2:20!12 +JAS 2:20!13 +JAS 2:20!14 +JAS 2:21!1 +JAS 2:21!2 +JAS 2:21!3 +JAS 2:21!4 +JAS 2:21!5 +JAS 2:21!6 +JAS 2:21!7 +JAS 2:21!8 +JAS 2:21!9 +JAS 2:21!10 +JAS 2:21!11 +JAS 2:21!12 +JAS 2:21!13 +JAS 2:21!14 +JAS 2:21!15 +JAS 2:21!16 +JAS 2:22!1 +JAS 2:22!2 +JAS 2:22!3 +JAS 2:22!4 +JAS 2:22!5 +JAS 2:22!6 +JAS 2:22!7 +JAS 2:22!8 +JAS 2:22!9 +JAS 2:22!10 +JAS 2:22!11 +JAS 2:22!12 +JAS 2:22!13 +JAS 2:22!14 +JAS 2:22!15 +JAS 2:23!1 +JAS 2:23!2 +JAS 2:23!3 +JAS 2:23!4 +JAS 2:23!5 +JAS 2:23!6 +JAS 2:23!8 +JAS 2:23!7 +JAS 2:23!9 +JAS 2:23!10 +JAS 2:23!11 +JAS 2:23!12 +JAS 2:23!13 +JAS 2:23!14 +JAS 2:23!15 +JAS 2:23!16 +JAS 2:23!17 +JAS 2:23!18 +JAS 2:23!19 +JAS 2:23!20 +JAS 2:24!1 +JAS 2:24!2 +JAS 2:24!3 +JAS 2:24!4 +JAS 2:24!5 +JAS 2:24!6 +JAS 2:24!7 +JAS 2:24!8 +JAS 2:24!9 +JAS 2:24!10 +JAS 2:24!11 +JAS 2:25!2 +JAS 2:25!1 +JAS 2:25!3 +JAS 2:25!4 +JAS 2:25!5 +JAS 2:25!6 +JAS 2:25!7 +JAS 2:25!8 +JAS 2:25!9 +JAS 2:25!10 +JAS 2:25!11 +JAS 2:25!12 +JAS 2:25!13 +JAS 2:25!14 +JAS 2:25!15 +JAS 2:25!16 +JAS 2:25!17 +JAS 2:26!2 +JAS 2:26!1 +JAS 2:26!3 +JAS 2:26!4 +JAS 2:26!5 +JAS 2:26!6 +JAS 2:26!7 +JAS 2:26!8 +JAS 2:26!9 +JAS 2:26!10 +JAS 2:26!11 +JAS 2:26!12 +JAS 2:26!13 +JAS 2:26!14 +JAS 2:26!15 +JAS 2:26!16 +JAS 3:1!5 +JAS 3:1!6 +JAS 3:1!1 +JAS 3:1!2 +JAS 3:1!3 +JAS 3:1!4 +JAS 3:1!7 +JAS 3:1!8 +JAS 3:1!9 +JAS 3:1!10 +JAS 3:1!11 +JAS 3:2!2 +JAS 3:2!1 +JAS 3:2!3 +JAS 3:2!4 +JAS 3:2!5 +JAS 3:2!6 +JAS 3:2!7 +JAS 3:2!8 +JAS 3:2!9 +JAS 3:2!10 +JAS 3:2!11 +JAS 3:2!12 +JAS 3:2!13 +JAS 3:2!14 +JAS 3:2!15 +JAS 3:2!16 +JAS 3:2!17 +JAS 3:2!18 +JAS 3:2!19 +JAS 3:3!2 +JAS 3:3!1 +JAS 3:3!3 +JAS 3:3!4 +JAS 3:3!5 +JAS 3:3!6 +JAS 3:3!7 +JAS 3:3!8 +JAS 3:3!9 +JAS 3:3!10 +JAS 3:3!11 +JAS 3:3!12 +JAS 3:3!13 +JAS 3:3!14 +JAS 3:3!15 +JAS 3:3!16 +JAS 3:3!17 +JAS 3:3!18 +JAS 3:3!19 +JAS 3:3!20 +JAS 3:3!21 +JAS 3:4!1 +JAS 3:4!2 +JAS 3:4!3 +JAS 3:4!4 +JAS 3:4!5 +JAS 3:4!6 +JAS 3:4!7 +JAS 3:4!8 +JAS 3:4!9 +JAS 3:4!10 +JAS 3:4!11 +JAS 3:4!12 +JAS 3:4!13 +JAS 3:4!14 +JAS 3:4!15 +JAS 3:4!16 +JAS 3:4!17 +JAS 3:4!18 +JAS 3:4!19 +JAS 3:4!20 +JAS 3:4!21 +JAS 3:5!1 +JAS 3:5!2 +JAS 3:5!3 +JAS 3:5!4 +JAS 3:5!5 +JAS 3:5!6 +JAS 3:5!7 +JAS 3:5!8 +JAS 3:5!9 +JAS 3:5!10 +JAS 3:5!11 +JAS 3:5!12 +JAS 3:5!13 +JAS 3:5!14 +JAS 3:5!15 +JAS 3:5!16 +JAS 3:6!1 +JAS 3:6!2 +JAS 3:6!3 +JAS 3:6!4 +JAS 3:6!5 +JAS 3:6!6 +JAS 3:6!7 +JAS 3:6!8 +JAS 3:6!9 +JAS 3:6!10 +JAS 3:6!11 +JAS 3:6!12 +JAS 3:6!13 +JAS 3:6!14 +JAS 3:6!15 +JAS 3:6!16 +JAS 3:6!17 +JAS 3:6!18 +JAS 3:6!19 +JAS 3:6!20 +JAS 3:6!21 +JAS 3:6!22 +JAS 3:6!23 +JAS 3:6!24 +JAS 3:6!25 +JAS 3:6!26 +JAS 3:6!27 +JAS 3:6!28 +JAS 3:6!29 +JAS 3:6!30 +JAS 3:6!31 +JAS 3:7!2 +JAS 3:7!1 +JAS 3:7!3 +JAS 3:7!5 +JAS 3:7!4 +JAS 3:7!6 +JAS 3:7!7 +JAS 3:7!9 +JAS 3:7!8 +JAS 3:7!10 +JAS 3:7!11 +JAS 3:7!12 +JAS 3:7!13 +JAS 3:7!14 +JAS 3:7!15 +JAS 3:7!16 +JAS 3:7!17 +JAS 3:7!18 +JAS 3:8!2 +JAS 3:8!1 +JAS 3:8!3 +JAS 3:8!5 +JAS 3:8!6 +JAS 3:8!4 +JAS 3:8!7 +JAS 3:8!8 +JAS 3:8!9 +JAS 3:8!10 +JAS 3:8!11 +JAS 3:8!12 +JAS 3:9!1 +JAS 3:9!2 +JAS 3:9!3 +JAS 3:9!4 +JAS 3:9!5 +JAS 3:9!6 +JAS 3:9!7 +JAS 3:9!8 +JAS 3:9!9 +JAS 3:9!10 +JAS 3:9!11 +JAS 3:9!12 +JAS 3:9!13 +JAS 3:9!14 +JAS 3:9!15 +JAS 3:9!16 +JAS 3:9!17 +JAS 3:9!18 +JAS 3:10!1 +JAS 3:10!2 +JAS 3:10!3 +JAS 3:10!4 +JAS 3:10!5 +JAS 3:10!6 +JAS 3:10!7 +JAS 3:10!8 +JAS 3:10!11 +JAS 3:10!12 +JAS 3:10!9 +JAS 3:10!10 +JAS 3:10!13 +JAS 3:10!14 +JAS 3:10!15 +JAS 3:11!1 +JAS 3:11!2 +JAS 3:11!3 +JAS 3:11!4 +JAS 3:11!5 +JAS 3:11!6 +JAS 3:11!7 +JAS 3:11!8 +JAS 3:11!9 +JAS 3:11!10 +JAS 3:11!11 +JAS 3:11!12 +JAS 3:11!13 +JAS 3:12!3 +JAS 3:12!4 +JAS 3:12!1 +JAS 3:12!2 +JAS 3:12!5 +JAS 3:12!6 +JAS 3:12!7 +JAS 3:12!8 +JAS 3:12!9 +JAS 3:12!10 +JAS 3:12!11 +JAS 3:12!12 +JAS 3:12!14 +JAS 3:12!13 +JAS 3:12!15 +JAS 3:13!1 +JAS 3:13!2 +JAS 3:13!3 +JAS 3:13!4 +JAS 3:13!5 +JAS 3:13!6 +JAS 3:13!7 +JAS 3:13!8 +JAS 3:13!9 +JAS 3:13!10 +JAS 3:13!11 +JAS 3:13!12 +JAS 3:13!13 +JAS 3:13!14 +JAS 3:13!15 +JAS 3:13!16 +JAS 3:13!17 +JAS 3:14!2 +JAS 3:14!1 +JAS 3:14!5 +JAS 3:14!3 +JAS 3:14!4 +JAS 3:14!6 +JAS 3:14!7 +JAS 3:14!8 +JAS 3:14!9 +JAS 3:14!10 +JAS 3:14!11 +JAS 3:14!12 +JAS 3:14!13 +JAS 3:14!14 +JAS 3:14!15 +JAS 3:14!16 +JAS 3:14!17 +JAS 3:14!18 +JAS 3:15!1 +JAS 3:15!2 +JAS 3:15!3 +JAS 3:15!4 +JAS 3:15!5 +JAS 3:15!6 +JAS 3:15!7 +JAS 3:15!8 +JAS 3:15!9 +JAS 3:15!10 +JAS 3:15!11 +JAS 3:16!2 +JAS 3:16!1 +JAS 3:16!3 +JAS 3:16!4 +JAS 3:16!5 +JAS 3:16!6 +JAS 3:16!7 +JAS 3:16!8 +JAS 3:16!9 +JAS 3:16!10 +JAS 3:16!11 +JAS 3:17!2 +JAS 3:17!1 +JAS 3:17!3 +JAS 3:17!4 +JAS 3:17!5 +JAS 3:17!6 +JAS 3:17!7 +JAS 3:17!8 +JAS 3:17!9 +JAS 3:17!10 +JAS 3:17!11 +JAS 3:17!12 +JAS 3:17!13 +JAS 3:17!14 +JAS 3:17!15 +JAS 3:17!16 +JAS 3:17!17 +JAS 3:17!18 +JAS 3:17!19 +JAS 3:18!2 +JAS 3:18!1 +JAS 3:18!3 +JAS 3:18!4 +JAS 3:18!5 +JAS 3:18!6 +JAS 3:18!7 +JAS 3:18!8 +JAS 3:18!9 +JAS 4:1!1 +JAS 4:1!2 +JAS 4:1!3 +JAS 4:1!4 +JAS 4:1!5 +JAS 4:1!6 +JAS 4:1!7 +JAS 4:1!8 +JAS 4:1!9 +JAS 4:1!10 +JAS 4:1!11 +JAS 4:1!12 +JAS 4:1!13 +JAS 4:1!14 +JAS 4:1!15 +JAS 4:1!16 +JAS 4:1!17 +JAS 4:1!18 +JAS 4:1!19 +JAS 4:2!1 +JAS 4:2!2 +JAS 4:2!3 +JAS 4:2!4 +JAS 4:2!5 +JAS 4:2!6 +JAS 4:2!7 +JAS 4:2!8 +JAS 4:2!9 +JAS 4:2!10 +JAS 4:2!11 +JAS 4:2!12 +JAS 4:2!13 +JAS 4:2!14 +JAS 4:2!15 +JAS 4:2!16 +JAS 4:2!17 +JAS 4:2!18 +JAS 4:2!19 +JAS 4:2!20 +JAS 4:2!21 +JAS 4:3!1 +JAS 4:3!2 +JAS 4:3!3 +JAS 4:3!4 +JAS 4:3!5 +JAS 4:3!6 +JAS 4:3!7 +JAS 4:3!8 +JAS 4:3!9 +JAS 4:3!10 +JAS 4:3!11 +JAS 4:3!12 +JAS 4:3!13 +JAS 4:4!1 +JAS 4:4!2 +JAS 4:4!3 +JAS 4:4!4 +JAS 4:4!5 +JAS 4:4!6 +JAS 4:4!7 +JAS 4:4!8 +JAS 4:4!9 +JAS 4:4!10 +JAS 4:4!11 +JAS 4:4!12 +JAS 4:4!15 +JAS 4:4!14 +JAS 4:4!13 +JAS 4:4!16 +JAS 4:4!18 +JAS 4:4!17 +JAS 4:4!19 +JAS 4:4!20 +JAS 4:4!21 +JAS 4:4!22 +JAS 4:4!23 +JAS 4:4!24 +JAS 4:5!1 +JAS 4:5!2 +JAS 4:5!3 +JAS 4:5!4 +JAS 4:5!5 +JAS 4:5!6 +JAS 4:5!7 +JAS 4:5!8 +JAS 4:5!9 +JAS 4:5!10 +JAS 4:5!11 +JAS 4:5!12 +JAS 4:5!13 +JAS 4:5!14 +JAS 4:5!15 +JAS 4:5!16 +JAS 4:6!2 +JAS 4:6!1 +JAS 4:6!4 +JAS 4:6!3 +JAS 4:6!5 +JAS 4:6!6 +JAS 4:6!7 +JAS 4:6!8 +JAS 4:6!9 +JAS 4:6!10 +JAS 4:6!12 +JAS 4:6!11 +JAS 4:6!13 +JAS 4:6!14 +JAS 4:7!2 +JAS 4:7!1 +JAS 4:7!3 +JAS 4:7!4 +JAS 4:7!6 +JAS 4:7!5 +JAS 4:7!7 +JAS 4:7!8 +JAS 4:7!9 +JAS 4:7!10 +JAS 4:7!11 +JAS 4:7!12 +JAS 4:8!1 +JAS 4:8!2 +JAS 4:8!3 +JAS 4:8!4 +JAS 4:8!5 +JAS 4:8!6 +JAS 4:8!7 +JAS 4:8!8 +JAS 4:8!9 +JAS 4:8!10 +JAS 4:8!11 +JAS 4:8!12 +JAS 4:8!13 +JAS 4:8!14 +JAS 4:8!15 +JAS 4:8!16 +JAS 4:8!17 +JAS 4:8!18 +JAS 4:9!1 +JAS 4:9!2 +JAS 4:9!3 +JAS 4:9!4 +JAS 4:9!5 +JAS 4:9!6 +JAS 4:9!7 +JAS 4:9!8 +JAS 4:9!9 +JAS 4:9!10 +JAS 4:9!11 +JAS 4:10!1 +JAS 4:10!2 +JAS 4:10!3 +JAS 4:10!4 +JAS 4:10!5 +JAS 4:10!6 +JAS 4:11!1 +JAS 4:11!2 +JAS 4:11!3 +JAS 4:11!4 +JAS 4:11!5 +JAS 4:11!6 +JAS 4:11!7 +JAS 4:11!8 +JAS 4:11!9 +JAS 4:11!10 +JAS 4:11!11 +JAS 4:11!12 +JAS 4:11!13 +JAS 4:11!14 +JAS 4:11!15 +JAS 4:11!16 +JAS 4:11!17 +JAS 4:11!19 +JAS 4:11!18 +JAS 4:11!20 +JAS 4:11!21 +JAS 4:11!23 +JAS 4:11!22 +JAS 4:11!24 +JAS 4:11!25 +JAS 4:11!26 +JAS 4:11!27 +JAS 4:12!1 +JAS 4:12!2 +JAS 4:12!3 +JAS 4:12!4 +JAS 4:12!5 +JAS 4:12!6 +JAS 4:12!7 +JAS 4:12!8 +JAS 4:12!9 +JAS 4:12!10 +JAS 4:12!12 +JAS 4:12!11 +JAS 4:12!13 +JAS 4:12!14 +JAS 4:12!15 +JAS 4:12!16 +JAS 4:12!17 +JAS 4:12!18 +JAS 4:13!1 +JAS 4:13!2 +JAS 4:13!3 +JAS 4:13!4 +JAS 4:13!5 +JAS 4:13!6 +JAS 4:13!7 +JAS 4:13!8 +JAS 4:13!9 +JAS 4:13!10 +JAS 4:13!11 +JAS 4:13!12 +JAS 4:13!13 +JAS 4:13!14 +JAS 4:13!15 +JAS 4:13!16 +JAS 4:13!17 +JAS 4:13!18 +JAS 4:13!19 +JAS 4:13!20 +JAS 4:14!1 +JAS 4:14!2 +JAS 4:14!3 +JAS 4:14!4 +JAS 4:14!5 +JAS 4:14!6 +JAS 4:14!7 +JAS 4:14!8 +JAS 4:14!9 +JAS 4:14!11 +JAS 4:14!12 +JAS 4:14!10 +JAS 4:14!13 +JAS 4:14!14 +JAS 4:14!15 +JAS 4:14!16 +JAS 4:14!17 +JAS 4:14!18 +JAS 4:14!19 +JAS 4:15!1 +JAS 4:15!2 +JAS 4:15!3 +JAS 4:15!4 +JAS 4:15!5 +JAS 4:15!6 +JAS 4:15!7 +JAS 4:15!8 +JAS 4:15!9 +JAS 4:15!10 +JAS 4:15!11 +JAS 4:15!12 +JAS 4:15!13 +JAS 4:15!14 +JAS 4:15!15 +JAS 4:16!2 +JAS 4:16!1 +JAS 4:16!3 +JAS 4:16!4 +JAS 4:16!5 +JAS 4:16!6 +JAS 4:16!7 +JAS 4:16!8 +JAS 4:16!9 +JAS 4:16!10 +JAS 4:16!11 +JAS 4:16!12 +JAS 4:17!2 +JAS 4:17!1 +JAS 4:17!3 +JAS 4:17!4 +JAS 4:17!5 +JAS 4:17!6 +JAS 4:17!7 +JAS 4:17!8 +JAS 4:17!9 +JAS 4:17!10 +JAS 5:1!1 +JAS 5:1!2 +JAS 5:1!3 +JAS 5:1!4 +JAS 5:1!5 +JAS 5:1!6 +JAS 5:1!7 +JAS 5:1!8 +JAS 5:1!9 +JAS 5:1!10 +JAS 5:1!11 +JAS 5:1!12 +JAS 5:2!1 +JAS 5:2!2 +JAS 5:2!3 +JAS 5:2!4 +JAS 5:2!5 +JAS 5:2!6 +JAS 5:2!7 +JAS 5:2!8 +JAS 5:2!9 +JAS 5:2!10 +JAS 5:3!1 +JAS 5:3!2 +JAS 5:3!3 +JAS 5:3!4 +JAS 5:3!5 +JAS 5:3!6 +JAS 5:3!7 +JAS 5:3!8 +JAS 5:3!9 +JAS 5:3!10 +JAS 5:3!11 +JAS 5:3!12 +JAS 5:3!13 +JAS 5:3!14 +JAS 5:3!15 +JAS 5:3!16 +JAS 5:3!17 +JAS 5:3!18 +JAS 5:3!19 +JAS 5:3!20 +JAS 5:3!21 +JAS 5:3!22 +JAS 5:3!23 +JAS 5:3!24 +JAS 5:3!25 +JAS 5:3!26 +JAS 5:4!1 +JAS 5:4!2 +JAS 5:4!3 +JAS 5:4!4 +JAS 5:4!5 +JAS 5:4!6 +JAS 5:4!7 +JAS 5:4!8 +JAS 5:4!9 +JAS 5:4!10 +JAS 5:4!11 +JAS 5:4!12 +JAS 5:4!13 +JAS 5:4!14 +JAS 5:4!15 +JAS 5:4!16 +JAS 5:4!17 +JAS 5:4!18 +JAS 5:4!19 +JAS 5:4!20 +JAS 5:4!21 +JAS 5:4!22 +JAS 5:4!23 +JAS 5:4!24 +JAS 5:4!25 +JAS 5:4!26 +JAS 5:5!1 +JAS 5:5!2 +JAS 5:5!3 +JAS 5:5!4 +JAS 5:5!5 +JAS 5:5!6 +JAS 5:5!7 +JAS 5:5!8 +JAS 5:5!9 +JAS 5:5!10 +JAS 5:5!11 +JAS 5:5!12 +JAS 5:5!13 +JAS 5:6!1 +JAS 5:6!2 +JAS 5:6!3 +JAS 5:6!4 +JAS 5:6!5 +JAS 5:6!6 +JAS 5:6!7 +JAS 5:7!2 +JAS 5:7!3 +JAS 5:7!1 +JAS 5:7!4 +JAS 5:7!5 +JAS 5:7!6 +JAS 5:7!7 +JAS 5:7!8 +JAS 5:7!9 +JAS 5:7!10 +JAS 5:7!11 +JAS 5:7!12 +JAS 5:7!13 +JAS 5:7!14 +JAS 5:7!15 +JAS 5:7!16 +JAS 5:7!17 +JAS 5:7!18 +JAS 5:7!19 +JAS 5:7!20 +JAS 5:7!21 +JAS 5:7!22 +JAS 5:7!23 +JAS 5:7!24 +JAS 5:7!25 +JAS 5:8!1 +JAS 5:8!2 +JAS 5:8!3 +JAS 5:8!4 +JAS 5:8!5 +JAS 5:8!6 +JAS 5:8!7 +JAS 5:8!8 +JAS 5:8!9 +JAS 5:8!10 +JAS 5:8!11 +JAS 5:8!12 +JAS 5:8!13 +JAS 5:9!3 +JAS 5:9!1 +JAS 5:9!2 +JAS 5:9!4 +JAS 5:9!5 +JAS 5:9!6 +JAS 5:9!7 +JAS 5:9!8 +JAS 5:9!9 +JAS 5:9!10 +JAS 5:9!11 +JAS 5:9!12 +JAS 5:9!13 +JAS 5:9!14 +JAS 5:9!15 +JAS 5:10!3 +JAS 5:10!2 +JAS 5:10!1 +JAS 5:10!4 +JAS 5:10!5 +JAS 5:10!6 +JAS 5:10!7 +JAS 5:10!8 +JAS 5:10!9 +JAS 5:10!10 +JAS 5:10!11 +JAS 5:10!12 +JAS 5:10!13 +JAS 5:10!14 +JAS 5:10!15 +JAS 5:10!16 +JAS 5:11!1 +JAS 5:11!2 +JAS 5:11!3 +JAS 5:11!4 +JAS 5:11!5 +JAS 5:11!6 +JAS 5:11!7 +JAS 5:11!8 +JAS 5:11!9 +JAS 5:11!10 +JAS 5:11!11 +JAS 5:11!12 +JAS 5:11!13 +JAS 5:11!14 +JAS 5:11!16 +JAS 5:11!17 +JAS 5:11!18 +JAS 5:11!15 +JAS 5:11!19 +JAS 5:11!20 +JAS 5:12!3 +JAS 5:12!4 +JAS 5:12!5 +JAS 5:12!1 +JAS 5:12!2 +JAS 5:12!6 +JAS 5:12!7 +JAS 5:12!8 +JAS 5:12!9 +JAS 5:12!10 +JAS 5:12!11 +JAS 5:12!12 +JAS 5:12!13 +JAS 5:12!14 +JAS 5:12!15 +JAS 5:12!16 +JAS 5:12!17 +JAS 5:12!19 +JAS 5:12!18 +JAS 5:12!20 +JAS 5:12!21 +JAS 5:12!22 +JAS 5:12!23 +JAS 5:12!24 +JAS 5:12!25 +JAS 5:12!26 +JAS 5:12!27 +JAS 5:12!28 +JAS 5:12!29 +JAS 5:12!30 +JAS 5:12!31 +JAS 5:12!32 +JAS 5:13!1 +JAS 5:13!2 +JAS 5:13!3 +JAS 5:13!4 +JAS 5:13!5 +JAS 5:13!6 +JAS 5:13!7 +JAS 5:13!8 +JAS 5:14!1 +JAS 5:14!2 +JAS 5:14!3 +JAS 5:14!4 +JAS 5:14!5 +JAS 5:14!6 +JAS 5:14!7 +JAS 5:14!8 +JAS 5:14!9 +JAS 5:14!10 +JAS 5:14!11 +JAS 5:14!12 +JAS 5:14!13 +JAS 5:14!14 +JAS 5:14!15 +JAS 5:14!16 +JAS 5:14!17 +JAS 5:14!18 +JAS 5:14!19 +JAS 5:14!20 +JAS 5:15!1 +JAS 5:15!2 +JAS 5:15!3 +JAS 5:15!4 +JAS 5:15!5 +JAS 5:15!6 +JAS 5:15!7 +JAS 5:15!8 +JAS 5:15!9 +JAS 5:15!10 +JAS 5:15!11 +JAS 5:15!12 +JAS 5:15!13 +JAS 5:15!14 +JAS 5:15!15 +JAS 5:15!16 +JAS 5:15!17 +JAS 5:15!18 +JAS 5:15!19 +JAS 5:16!2 +JAS 5:16!1 +JAS 5:16!3 +JAS 5:16!4 +JAS 5:16!5 +JAS 5:16!6 +JAS 5:16!7 +JAS 5:16!8 +JAS 5:16!9 +JAS 5:16!10 +JAS 5:16!11 +JAS 5:16!12 +JAS 5:16!13 +JAS 5:16!14 +JAS 5:16!15 +JAS 5:16!16 +JAS 5:17!1 +JAS 5:17!3 +JAS 5:17!2 +JAS 5:17!4 +JAS 5:17!5 +JAS 5:17!6 +JAS 5:17!7 +JAS 5:17!8 +JAS 5:17!9 +JAS 5:17!10 +JAS 5:17!11 +JAS 5:17!12 +JAS 5:17!13 +JAS 5:17!14 +JAS 5:17!15 +JAS 5:17!16 +JAS 5:17!17 +JAS 5:17!18 +JAS 5:17!19 +JAS 5:17!20 +JAS 5:17!21 +JAS 5:17!22 +JAS 5:18!1 +JAS 5:18!2 +JAS 5:18!3 +JAS 5:18!4 +JAS 5:18!5 +JAS 5:18!6 +JAS 5:18!7 +JAS 5:18!8 +JAS 5:18!9 +JAS 5:18!10 +JAS 5:18!11 +JAS 5:18!12 +JAS 5:18!13 +JAS 5:18!14 +JAS 5:18!15 +JAS 5:19!1 +JAS 5:19!2 +JAS 5:19!3 +JAS 5:19!4 +JAS 5:19!5 +JAS 5:19!6 +JAS 5:19!7 +JAS 5:19!8 +JAS 5:19!9 +JAS 5:19!10 +JAS 5:19!11 +JAS 5:19!12 +JAS 5:19!13 +JAS 5:19!14 +JAS 5:20!1 +JAS 5:20!2 +JAS 5:20!3 +JAS 5:20!4 +JAS 5:20!5 +JAS 5:20!6 +JAS 5:20!7 +JAS 5:20!8 +JAS 5:20!9 +JAS 5:20!10 +JAS 5:20!11 +JAS 5:20!12 +JAS 5:20!13 +JAS 5:20!14 +JAS 5:20!15 +JAS 5:20!16 +JAS 5:20!17 +JAS 5:20!18 +1PE 1:1!1 +1PE 1:1!2 +1PE 1:1!3 +1PE 1:1!4 +1PE 1:1!5 +1PE 1:1!6 +1PE 1:1!7 +1PE 1:1!8 +1PE 1:1!9 +1PE 1:1!10 +1PE 1:1!11 +1PE 1:1!12 +1PE 1:1!13 +1PE 1:2!1 +1PE 1:2!2 +1PE 1:2!3 +1PE 1:2!4 +1PE 1:2!5 +1PE 1:2!6 +1PE 1:2!7 +1PE 1:2!8 +1PE 1:2!9 +1PE 1:2!10 +1PE 1:2!11 +1PE 1:2!12 +1PE 1:2!13 +1PE 1:2!14 +1PE 1:2!15 +1PE 1:2!17 +1PE 1:2!18 +1PE 1:2!16 +1PE 1:2!19 +1PE 1:3!1 +1PE 1:3!2 +1PE 1:3!3 +1PE 1:3!4 +1PE 1:3!5 +1PE 1:3!6 +1PE 1:3!7 +1PE 1:3!8 +1PE 1:3!9 +1PE 1:3!10 +1PE 1:3!11 +1PE 1:3!12 +1PE 1:3!13 +1PE 1:3!14 +1PE 1:3!15 +1PE 1:3!16 +1PE 1:3!17 +1PE 1:3!18 +1PE 1:3!19 +1PE 1:3!20 +1PE 1:3!21 +1PE 1:3!22 +1PE 1:3!23 +1PE 1:3!24 +1PE 1:3!25 +1PE 1:3!26 +1PE 1:3!27 +1PE 1:4!1 +1PE 1:4!2 +1PE 1:4!3 +1PE 1:4!4 +1PE 1:4!5 +1PE 1:4!6 +1PE 1:4!7 +1PE 1:4!8 +1PE 1:4!9 +1PE 1:4!10 +1PE 1:4!11 +1PE 1:4!12 +1PE 1:5!1 +1PE 1:5!2 +1PE 1:5!3 +1PE 1:5!4 +1PE 1:5!5 +1PE 1:5!6 +1PE 1:5!7 +1PE 1:5!8 +1PE 1:5!9 +1PE 1:5!10 +1PE 1:5!11 +1PE 1:5!12 +1PE 1:5!13 +1PE 1:5!14 +1PE 1:6!1 +1PE 1:6!2 +1PE 1:6!3 +1PE 1:6!6 +1PE 1:6!4 +1PE 1:6!5 +1PE 1:6!7 +1PE 1:6!8 +1PE 1:6!9 +1PE 1:6!10 +1PE 1:6!11 +1PE 1:7!1 +1PE 1:7!2 +1PE 1:7!3 +1PE 1:7!4 +1PE 1:7!5 +1PE 1:7!6 +1PE 1:7!7 +1PE 1:7!8 +1PE 1:7!9 +1PE 1:7!10 +1PE 1:7!13 +1PE 1:7!11 +1PE 1:7!12 +1PE 1:7!14 +1PE 1:7!15 +1PE 1:7!16 +1PE 1:7!17 +1PE 1:7!18 +1PE 1:7!19 +1PE 1:7!20 +1PE 1:7!21 +1PE 1:7!22 +1PE 1:7!23 +1PE 1:7!24 +1PE 1:7!25 +1PE 1:8!1 +1PE 1:8!2 +1PE 1:8!3 +1PE 1:8!4 +1PE 1:8!11 +1PE 1:8!5 +1PE 1:8!6 +1PE 1:8!7 +1PE 1:8!8 +1PE 1:8!9 +1PE 1:8!10 +1PE 1:8!12 +1PE 1:8!13 +1PE 1:8!14 +1PE 1:8!15 +1PE 1:8!16 +1PE 1:9!1 +1PE 1:9!2 +1PE 1:9!3 +1PE 1:9!4 +1PE 1:9!5 +1PE 1:9!6 +1PE 1:9!7 +1PE 1:10!1 +1PE 1:10!2 +1PE 1:10!3 +1PE 1:10!4 +1PE 1:10!5 +1PE 1:10!6 +1PE 1:10!7 +1PE 1:10!8 +1PE 1:10!9 +1PE 1:10!10 +1PE 1:10!11 +1PE 1:10!12 +1PE 1:10!13 +1PE 1:10!14 +1PE 1:11!1 +1PE 1:11!2 +1PE 1:11!3 +1PE 1:11!4 +1PE 1:11!5 +1PE 1:11!6 +1PE 1:11!7 +1PE 1:11!8 +1PE 1:11!9 +1PE 1:11!10 +1PE 1:11!11 +1PE 1:11!12 +1PE 1:11!13 +1PE 1:11!14 +1PE 1:11!15 +1PE 1:11!16 +1PE 1:11!17 +1PE 1:11!18 +1PE 1:11!19 +1PE 1:11!20 +1PE 1:11!21 +1PE 1:11!22 +1PE 1:12!1 +1PE 1:12!2 +1PE 1:12!3 +1PE 1:12!4 +1PE 1:12!5 +1PE 1:12!7 +1PE 1:12!6 +1PE 1:12!8 +1PE 1:12!9 +1PE 1:12!10 +1PE 1:12!11 +1PE 1:12!12 +1PE 1:12!13 +1PE 1:12!14 +1PE 1:12!15 +1PE 1:12!16 +1PE 1:12!17 +1PE 1:12!18 +1PE 1:12!19 +1PE 1:12!20 +1PE 1:12!21 +1PE 1:12!22 +1PE 1:12!23 +1PE 1:12!24 +1PE 1:12!25 +1PE 1:12!28 +1PE 1:12!26 +1PE 1:12!27 +1PE 1:13!1 +1PE 1:13!2 +1PE 1:13!3 +1PE 1:13!4 +1PE 1:13!5 +1PE 1:13!6 +1PE 1:13!7 +1PE 1:13!8 +1PE 1:13!9 +1PE 1:13!10 +1PE 1:13!11 +1PE 1:13!12 +1PE 1:13!13 +1PE 1:13!14 +1PE 1:13!15 +1PE 1:13!16 +1PE 1:13!17 +1PE 1:13!18 +1PE 1:13!19 +1PE 1:14!1 +1PE 1:14!2 +1PE 1:14!3 +1PE 1:14!4 +1PE 1:14!5 +1PE 1:14!6 +1PE 1:14!7 +1PE 1:14!8 +1PE 1:14!9 +1PE 1:14!10 +1PE 1:14!11 +1PE 1:14!12 +1PE 1:15!1 +1PE 1:15!2 +1PE 1:15!3 +1PE 1:15!4 +1PE 1:15!5 +1PE 1:15!6 +1PE 1:15!7 +1PE 1:15!8 +1PE 1:15!9 +1PE 1:15!10 +1PE 1:15!11 +1PE 1:15!12 +1PE 1:15!13 +1PE 1:16!1 +1PE 1:16!2 +1PE 1:16!3 +1PE 1:16!4 +1PE 1:16!5 +1PE 1:16!6 +1PE 1:16!7 +1PE 1:17!1 +1PE 1:17!2 +1PE 1:17!3 +1PE 1:17!4 +1PE 1:17!5 +1PE 1:17!6 +1PE 1:17!7 +1PE 1:17!8 +1PE 1:17!9 +1PE 1:17!10 +1PE 1:17!11 +1PE 1:17!12 +1PE 1:17!13 +1PE 1:17!14 +1PE 1:17!15 +1PE 1:17!16 +1PE 1:17!17 +1PE 1:17!18 +1PE 1:17!19 +1PE 1:18!1 +1PE 1:18!2 +1PE 1:18!3 +1PE 1:18!4 +1PE 1:18!5 +1PE 1:18!6 +1PE 1:18!7 +1PE 1:18!8 +1PE 1:18!9 +1PE 1:18!10 +1PE 1:18!11 +1PE 1:18!12 +1PE 1:18!13 +1PE 1:18!14 +1PE 1:19!1 +1PE 1:19!2 +1PE 1:19!3 +1PE 1:19!4 +1PE 1:19!5 +1PE 1:19!6 +1PE 1:19!7 +1PE 1:19!8 +1PE 1:19!9 +1PE 1:20!2 +1PE 1:20!1 +1PE 1:20!3 +1PE 1:20!4 +1PE 1:20!5 +1PE 1:20!7 +1PE 1:20!6 +1PE 1:20!8 +1PE 1:20!9 +1PE 1:20!10 +1PE 1:20!11 +1PE 1:20!12 +1PE 1:20!13 +1PE 1:21!1 +1PE 1:21!2 +1PE 1:21!3 +1PE 1:21!4 +1PE 1:21!5 +1PE 1:21!6 +1PE 1:21!7 +1PE 1:21!8 +1PE 1:21!9 +1PE 1:21!10 +1PE 1:21!11 +1PE 1:21!12 +1PE 1:21!13 +1PE 1:21!14 +1PE 1:21!15 +1PE 1:21!16 +1PE 1:21!17 +1PE 1:21!18 +1PE 1:21!19 +1PE 1:21!20 +1PE 1:21!21 +1PE 1:21!22 +1PE 1:21!23 +1PE 1:21!24 +1PE 1:22!1 +1PE 1:22!2 +1PE 1:22!3 +1PE 1:22!4 +1PE 1:22!5 +1PE 1:22!6 +1PE 1:22!7 +1PE 1:22!8 +1PE 1:22!9 +1PE 1:22!10 +1PE 1:22!11 +1PE 1:22!12 +1PE 1:22!13 +1PE 1:22!14 +1PE 1:22!15 +1PE 1:22!16 +1PE 1:22!17 +1PE 1:23!1 +1PE 1:23!2 +1PE 1:23!3 +1PE 1:23!4 +1PE 1:23!5 +1PE 1:23!6 +1PE 1:23!7 +1PE 1:23!8 +1PE 1:23!9 +1PE 1:23!11 +1PE 1:23!10 +1PE 1:23!12 +1PE 1:23!13 +1PE 1:24!1 +1PE 1:24!2 +1PE 1:24!3 +1PE 1:24!4 +1PE 1:24!5 +1PE 1:24!6 +1PE 1:24!7 +1PE 1:24!8 +1PE 1:24!9 +1PE 1:24!10 +1PE 1:24!11 +1PE 1:24!12 +1PE 1:24!13 +1PE 1:24!14 +1PE 1:24!15 +1PE 1:24!16 +1PE 1:24!17 +1PE 1:24!18 +1PE 1:24!19 +1PE 1:25!2 +1PE 1:25!1 +1PE 1:25!3 +1PE 1:25!4 +1PE 1:25!5 +1PE 1:25!6 +1PE 1:25!7 +1PE 1:25!8 +1PE 1:25!10 +1PE 1:25!9 +1PE 1:25!11 +1PE 1:25!12 +1PE 1:25!13 +1PE 1:25!14 +1PE 1:25!15 +1PE 1:25!16 +1PE 1:25!17 +1PE 2:1!2 +1PE 2:1!1 +1PE 2:1!3 +1PE 2:1!4 +1PE 2:1!5 +1PE 2:1!6 +1PE 2:1!7 +1PE 2:1!8 +1PE 2:1!9 +1PE 2:1!10 +1PE 2:1!11 +1PE 2:1!12 +1PE 2:1!13 +1PE 2:1!14 +1PE 2:2!1 +1PE 2:2!2 +1PE 2:2!3 +1PE 2:2!4 +1PE 2:2!5 +1PE 2:2!6 +1PE 2:2!7 +1PE 2:2!8 +1PE 2:2!9 +1PE 2:2!10 +1PE 2:2!11 +1PE 2:2!12 +1PE 2:2!13 +1PE 2:2!14 +1PE 2:3!1 +1PE 2:3!2 +1PE 2:3!3 +1PE 2:3!4 +1PE 2:3!5 +1PE 2:3!6 +1PE 2:4!3 +1PE 2:4!1 +1PE 2:4!2 +1PE 2:4!4 +1PE 2:4!5 +1PE 2:4!8 +1PE 2:4!6 +1PE 2:4!7 +1PE 2:4!9 +1PE 2:4!11 +1PE 2:4!10 +1PE 2:4!12 +1PE 2:4!13 +1PE 2:4!14 +1PE 2:5!1 +1PE 2:5!2 +1PE 2:5!3 +1PE 2:5!4 +1PE 2:5!5 +1PE 2:5!6 +1PE 2:5!7 +1PE 2:5!8 +1PE 2:5!9 +1PE 2:5!10 +1PE 2:5!11 +1PE 2:5!12 +1PE 2:5!13 +1PE 2:5!14 +1PE 2:5!15 +1PE 2:5!16 +1PE 2:5!17 +1PE 2:5!18 +1PE 2:5!19 +1PE 2:6!1 +1PE 2:6!2 +1PE 2:6!3 +1PE 2:6!4 +1PE 2:6!5 +1PE 2:6!6 +1PE 2:6!7 +1PE 2:6!8 +1PE 2:6!9 +1PE 2:6!10 +1PE 2:6!11 +1PE 2:6!12 +1PE 2:6!13 +1PE 2:6!14 +1PE 2:6!15 +1PE 2:6!16 +1PE 2:6!17 +1PE 2:6!18 +1PE 2:6!19 +1PE 2:6!20 +1PE 2:7!2 +1PE 2:7!3 +1PE 2:7!4 +1PE 2:7!1 +1PE 2:7!5 +1PE 2:7!6 +1PE 2:7!8 +1PE 2:7!7 +1PE 2:7!9 +1PE 2:7!10 +1PE 2:7!11 +1PE 2:7!12 +1PE 2:7!13 +1PE 2:7!14 +1PE 2:7!15 +1PE 2:7!16 +1PE 2:7!17 +1PE 2:7!18 +1PE 2:8!1 +1PE 2:8!2 +1PE 2:8!3 +1PE 2:8!4 +1PE 2:8!5 +1PE 2:8!6 +1PE 2:8!7 +1PE 2:8!8 +1PE 2:8!9 +1PE 2:8!10 +1PE 2:8!11 +1PE 2:8!12 +1PE 2:8!13 +1PE 2:8!14 +1PE 2:8!15 +1PE 2:9!2 +1PE 2:9!1 +1PE 2:9!3 +1PE 2:9!4 +1PE 2:9!5 +1PE 2:9!6 +1PE 2:9!7 +1PE 2:9!8 +1PE 2:9!9 +1PE 2:9!10 +1PE 2:9!11 +1PE 2:9!12 +1PE 2:9!15 +1PE 2:9!13 +1PE 2:9!14 +1PE 2:9!16 +1PE 2:9!17 +1PE 2:9!18 +1PE 2:9!19 +1PE 2:9!20 +1PE 2:9!21 +1PE 2:9!22 +1PE 2:9!23 +1PE 2:9!24 +1PE 2:9!25 +1PE 2:10!1 +1PE 2:10!2 +1PE 2:10!3 +1PE 2:10!4 +1PE 2:10!6 +1PE 2:10!5 +1PE 2:10!7 +1PE 2:10!8 +1PE 2:10!9 +1PE 2:10!10 +1PE 2:10!11 +1PE 2:10!13 +1PE 2:10!12 +1PE 2:10!14 +1PE 2:11!1 +1PE 2:11!2 +1PE 2:11!3 +1PE 2:11!4 +1PE 2:11!5 +1PE 2:11!6 +1PE 2:11!7 +1PE 2:11!8 +1PE 2:11!9 +1PE 2:11!10 +1PE 2:11!11 +1PE 2:11!12 +1PE 2:11!13 +1PE 2:11!14 +1PE 2:11!15 +1PE 2:12!1 +1PE 2:12!2 +1PE 2:12!3 +1PE 2:12!4 +1PE 2:12!5 +1PE 2:12!6 +1PE 2:12!7 +1PE 2:12!8 +1PE 2:12!9 +1PE 2:12!10 +1PE 2:12!11 +1PE 2:12!12 +1PE 2:12!13 +1PE 2:12!14 +1PE 2:12!15 +1PE 2:12!16 +1PE 2:12!17 +1PE 2:12!18 +1PE 2:12!19 +1PE 2:12!20 +1PE 2:12!21 +1PE 2:12!22 +1PE 2:12!23 +1PE 2:12!24 +1PE 2:12!25 +1PE 2:12!26 +1PE 2:13!1 +1PE 2:13!5 +1PE 2:13!6 +1PE 2:13!7 +1PE 2:13!2 +1PE 2:13!3 +1PE 2:13!4 +1PE 2:13!8 +1PE 2:13!9 +1PE 2:13!10 +1PE 2:13!11 +1PE 2:14!1 +1PE 2:14!2 +1PE 2:14!3 +1PE 2:14!4 +1PE 2:14!5 +1PE 2:14!6 +1PE 2:14!7 +1PE 2:14!8 +1PE 2:14!9 +1PE 2:14!11 +1PE 2:14!10 +1PE 2:14!12 +1PE 2:15!1 +1PE 2:15!2 +1PE 2:15!3 +1PE 2:15!4 +1PE 2:15!5 +1PE 2:15!6 +1PE 2:15!7 +1PE 2:15!8 +1PE 2:15!9 +1PE 2:15!10 +1PE 2:15!11 +1PE 2:15!12 +1PE 2:15!13 +1PE 2:15!14 +1PE 2:16!1 +1PE 2:16!2 +1PE 2:16!3 +1PE 2:16!4 +1PE 2:16!5 +1PE 2:16!7 +1PE 2:16!6 +1PE 2:16!8 +1PE 2:16!9 +1PE 2:16!10 +1PE 2:16!11 +1PE 2:16!12 +1PE 2:16!13 +1PE 2:16!14 +1PE 2:16!15 +1PE 2:17!1 +1PE 2:17!2 +1PE 2:17!3 +1PE 2:17!4 +1PE 2:17!5 +1PE 2:17!6 +1PE 2:17!7 +1PE 2:17!8 +1PE 2:17!9 +1PE 2:17!10 +1PE 2:17!11 +1PE 2:18!1 +1PE 2:18!2 +1PE 2:18!3 +1PE 2:18!4 +1PE 2:18!5 +1PE 2:18!6 +1PE 2:18!7 +1PE 2:18!8 +1PE 2:18!9 +1PE 2:18!10 +1PE 2:18!11 +1PE 2:18!12 +1PE 2:18!13 +1PE 2:18!14 +1PE 2:18!15 +1PE 2:18!16 +1PE 2:18!17 +1PE 2:18!18 +1PE 2:19!2 +1PE 2:19!1 +1PE 2:19!3 +1PE 2:19!4 +1PE 2:19!5 +1PE 2:19!6 +1PE 2:19!7 +1PE 2:19!8 +1PE 2:19!9 +1PE 2:19!10 +1PE 2:19!11 +1PE 2:19!12 +1PE 2:20!2 +1PE 2:20!1 +1PE 2:20!3 +1PE 2:20!4 +1PE 2:20!5 +1PE 2:20!6 +1PE 2:20!7 +1PE 2:20!8 +1PE 2:20!9 +1PE 2:20!10 +1PE 2:20!11 +1PE 2:20!12 +1PE 2:20!13 +1PE 2:20!14 +1PE 2:20!15 +1PE 2:20!16 +1PE 2:20!17 +1PE 2:20!18 +1PE 2:21!3 +1PE 2:21!1 +1PE 2:21!2 +1PE 2:21!4 +1PE 2:21!5 +1PE 2:21!6 +1PE 2:21!7 +1PE 2:21!8 +1PE 2:21!9 +1PE 2:21!10 +1PE 2:21!11 +1PE 2:21!12 +1PE 2:21!13 +1PE 2:21!14 +1PE 2:21!15 +1PE 2:21!16 +1PE 2:21!17 +1PE 2:21!18 +1PE 2:22!1 +1PE 2:22!2 +1PE 2:22!3 +1PE 2:22!4 +1PE 2:22!5 +1PE 2:22!6 +1PE 2:22!7 +1PE 2:22!8 +1PE 2:22!9 +1PE 2:22!10 +1PE 2:22!11 +1PE 2:23!1 +1PE 2:23!2 +1PE 2:23!3 +1PE 2:23!4 +1PE 2:23!5 +1PE 2:23!6 +1PE 2:23!7 +1PE 2:23!9 +1PE 2:23!8 +1PE 2:23!10 +1PE 2:23!11 +1PE 2:23!12 +1PE 2:24!1 +1PE 2:24!5 +1PE 2:24!2 +1PE 2:24!3 +1PE 2:24!4 +1PE 2:24!6 +1PE 2:24!7 +1PE 2:24!8 +1PE 2:24!9 +1PE 2:24!10 +1PE 2:24!11 +1PE 2:24!12 +1PE 2:24!13 +1PE 2:24!14 +1PE 2:24!15 +1PE 2:24!16 +1PE 2:24!17 +1PE 2:24!18 +1PE 2:24!19 +1PE 2:24!20 +1PE 2:24!21 +1PE 2:24!22 +1PE 2:24!23 +1PE 2:24!24 +1PE 2:25!2 +1PE 2:25!1 +1PE 2:25!3 +1PE 2:25!4 +1PE 2:25!5 +1PE 2:25!6 +1PE 2:25!7 +1PE 2:25!8 +1PE 2:25!9 +1PE 2:25!10 +1PE 2:25!11 +1PE 2:25!12 +1PE 2:25!13 +1PE 2:25!14 +1PE 2:25!15 +1PE 2:25!16 +1PE 3:1!2 +1PE 3:1!1 +1PE 3:1!3 +1PE 3:1!4 +1PE 3:1!5 +1PE 3:1!6 +1PE 3:1!7 +1PE 3:1!9 +1PE 3:1!8 +1PE 3:1!10 +1PE 3:1!11 +1PE 3:1!12 +1PE 3:1!13 +1PE 3:1!14 +1PE 3:1!15 +1PE 3:1!16 +1PE 3:1!17 +1PE 3:1!18 +1PE 3:1!19 +1PE 3:1!20 +1PE 3:1!21 +1PE 3:2!1 +1PE 3:2!2 +1PE 3:2!3 +1PE 3:2!4 +1PE 3:2!5 +1PE 3:2!6 +1PE 3:2!7 +1PE 3:3!1 +1PE 3:3!2 +1PE 3:3!3 +1PE 3:3!4 +1PE 3:3!5 +1PE 3:3!6 +1PE 3:3!7 +1PE 3:3!8 +1PE 3:3!9 +1PE 3:3!10 +1PE 3:3!11 +1PE 3:3!12 +1PE 3:3!13 +1PE 3:3!14 +1PE 3:4!1 +1PE 3:4!2 +1PE 3:4!3 +1PE 3:4!4 +1PE 3:4!5 +1PE 3:4!6 +1PE 3:4!7 +1PE 3:4!8 +1PE 3:4!9 +1PE 3:4!10 +1PE 3:4!11 +1PE 3:4!12 +1PE 3:4!13 +1PE 3:4!14 +1PE 3:4!15 +1PE 3:4!16 +1PE 3:4!17 +1PE 3:4!18 +1PE 3:4!19 +1PE 3:4!20 +1PE 3:5!2 +1PE 3:5!1 +1PE 3:5!3 +1PE 3:5!4 +1PE 3:5!5 +1PE 3:5!6 +1PE 3:5!7 +1PE 3:5!8 +1PE 3:5!9 +1PE 3:5!10 +1PE 3:5!11 +1PE 3:5!12 +1PE 3:5!13 +1PE 3:5!14 +1PE 3:5!15 +1PE 3:5!16 +1PE 3:5!17 +1PE 3:6!1 +1PE 3:6!2 +1PE 3:6!3 +1PE 3:6!4 +1PE 3:6!5 +1PE 3:6!6 +1PE 3:6!7 +1PE 3:6!8 +1PE 3:6!9 +1PE 3:6!11 +1PE 3:6!10 +1PE 3:6!12 +1PE 3:6!13 +1PE 3:6!14 +1PE 3:6!15 +1PE 3:6!16 +1PE 3:6!17 +1PE 3:7!1 +1PE 3:7!2 +1PE 3:7!3 +1PE 3:7!4 +1PE 3:7!5 +1PE 3:7!6 +1PE 3:7!7 +1PE 3:7!8 +1PE 3:7!9 +1PE 3:7!10 +1PE 3:7!11 +1PE 3:7!12 +1PE 3:7!13 +1PE 3:7!14 +1PE 3:7!15 +1PE 3:7!16 +1PE 3:7!17 +1PE 3:7!18 +1PE 3:7!19 +1PE 3:7!20 +1PE 3:7!21 +1PE 3:7!22 +1PE 3:7!23 +1PE 3:7!24 +1PE 3:7!25 +1PE 3:8!2 +1PE 3:8!1 +1PE 3:8!3 +1PE 3:8!4 +1PE 3:8!5 +1PE 3:8!6 +1PE 3:8!7 +1PE 3:8!8 +1PE 3:8!9 +1PE 3:9!1 +1PE 3:9!2 +1PE 3:9!3 +1PE 3:9!4 +1PE 3:9!5 +1PE 3:9!6 +1PE 3:9!7 +1PE 3:9!8 +1PE 3:9!9 +1PE 3:9!11 +1PE 3:9!10 +1PE 3:9!12 +1PE 3:9!13 +1PE 3:9!14 +1PE 3:9!15 +1PE 3:9!16 +1PE 3:9!17 +1PE 3:9!18 +1PE 3:9!19 +1PE 3:10!2 +1PE 3:10!1 +1PE 3:10!3 +1PE 3:10!4 +1PE 3:10!5 +1PE 3:10!6 +1PE 3:10!7 +1PE 3:10!8 +1PE 3:10!9 +1PE 3:10!10 +1PE 3:10!11 +1PE 3:10!12 +1PE 3:10!13 +1PE 3:10!14 +1PE 3:10!15 +1PE 3:10!16 +1PE 3:10!17 +1PE 3:10!18 +1PE 3:10!19 +1PE 3:10!20 +1PE 3:11!2 +1PE 3:11!1 +1PE 3:11!3 +1PE 3:11!4 +1PE 3:11!5 +1PE 3:11!6 +1PE 3:11!7 +1PE 3:11!8 +1PE 3:11!9 +1PE 3:11!10 +1PE 3:11!11 +1PE 3:11!12 +1PE 3:12!1 +1PE 3:12!2 +1PE 3:12!3 +1PE 3:12!4 +1PE 3:12!5 +1PE 3:12!6 +1PE 3:12!7 +1PE 3:12!8 +1PE 3:12!9 +1PE 3:12!10 +1PE 3:12!11 +1PE 3:12!13 +1PE 3:12!12 +1PE 3:12!14 +1PE 3:12!15 +1PE 3:12!16 +1PE 3:12!17 +1PE 3:13!1 +1PE 3:13!2 +1PE 3:13!3 +1PE 3:13!4 +1PE 3:13!5 +1PE 3:13!6 +1PE 3:13!7 +1PE 3:13!8 +1PE 3:13!9 +1PE 3:13!10 +1PE 3:14!1 +1PE 3:14!2 +1PE 3:14!3 +1PE 3:14!4 +1PE 3:14!5 +1PE 3:14!6 +1PE 3:14!7 +1PE 3:14!9 +1PE 3:14!8 +1PE 3:14!10 +1PE 3:14!11 +1PE 3:14!12 +1PE 3:14!13 +1PE 3:14!14 +1PE 3:14!15 +1PE 3:15!2 +1PE 3:15!1 +1PE 3:15!3 +1PE 3:15!4 +1PE 3:15!5 +1PE 3:15!6 +1PE 3:15!7 +1PE 3:15!8 +1PE 3:15!9 +1PE 3:15!10 +1PE 3:15!11 +1PE 3:15!12 +1PE 3:15!13 +1PE 3:15!14 +1PE 3:15!15 +1PE 3:15!16 +1PE 3:15!17 +1PE 3:15!18 +1PE 3:15!19 +1PE 3:15!20 +1PE 3:15!21 +1PE 3:15!22 +1PE 3:15!23 +1PE 3:16!1 +1PE 3:16!2 +1PE 3:16!3 +1PE 3:16!4 +1PE 3:16!5 +1PE 3:16!6 +1PE 3:16!8 +1PE 3:16!7 +1PE 3:16!9 +1PE 3:16!10 +1PE 3:16!11 +1PE 3:16!12 +1PE 3:16!13 +1PE 3:16!14 +1PE 3:16!15 +1PE 3:16!16 +1PE 3:16!17 +1PE 3:16!18 +1PE 3:16!19 +1PE 3:16!20 +1PE 3:16!21 +1PE 3:17!2 +1PE 3:17!1 +1PE 3:17!3 +1PE 3:17!4 +1PE 3:17!5 +1PE 3:17!6 +1PE 3:17!7 +1PE 3:17!8 +1PE 3:17!9 +1PE 3:17!10 +1PE 3:17!11 +1PE 3:17!12 +1PE 3:18!1 +1PE 3:18!2 +1PE 3:18!3 +1PE 3:18!4 +1PE 3:18!5 +1PE 3:18!6 +1PE 3:18!7 +1PE 3:18!8 +1PE 3:18!9 +1PE 3:18!10 +1PE 3:18!11 +1PE 3:18!12 +1PE 3:18!13 +1PE 3:18!14 +1PE 3:18!15 +1PE 3:18!17 +1PE 3:18!16 +1PE 3:18!18 +1PE 3:18!20 +1PE 3:18!19 +1PE 3:18!21 +1PE 3:19!1 +1PE 3:19!2 +1PE 3:19!8 +1PE 3:19!9 +1PE 3:19!3 +1PE 3:19!4 +1PE 3:19!5 +1PE 3:19!6 +1PE 3:19!7 +1PE 3:20!1 +1PE 3:20!2 +1PE 3:20!3 +1PE 3:20!4 +1PE 3:20!5 +1PE 3:20!6 +1PE 3:20!7 +1PE 3:20!8 +1PE 3:20!9 +1PE 3:20!10 +1PE 3:20!11 +1PE 3:20!12 +1PE 3:20!13 +1PE 3:20!14 +1PE 3:20!15 +1PE 3:20!16 +1PE 3:20!17 +1PE 3:20!18 +1PE 3:20!19 +1PE 3:20!20 +1PE 3:20!21 +1PE 3:20!22 +1PE 3:20!23 +1PE 3:21!1 +1PE 3:21!2 +1PE 3:21!3 +1PE 3:21!5 +1PE 3:21!6 +1PE 3:21!4 +1PE 3:21!7 +1PE 3:21!8 +1PE 3:21!9 +1PE 3:21!10 +1PE 3:21!11 +1PE 3:21!12 +1PE 3:21!13 +1PE 3:21!14 +1PE 3:21!15 +1PE 3:21!16 +1PE 3:21!17 +1PE 3:21!18 +1PE 3:21!19 +1PE 3:21!20 +1PE 3:21!21 +1PE 3:22!1 +1PE 3:22!2 +1PE 3:22!3 +1PE 3:22!4 +1PE 3:22!5 +1PE 3:22!6 +1PE 3:22!7 +1PE 3:22!8 +1PE 3:22!9 +1PE 3:22!10 +1PE 3:22!11 +1PE 3:22!12 +1PE 3:22!13 +1PE 3:22!14 +1PE 3:22!15 +1PE 4:1!2 +1PE 4:1!1 +1PE 4:1!3 +1PE 4:1!4 +1PE 4:1!5 +1PE 4:1!6 +1PE 4:1!7 +1PE 4:1!8 +1PE 4:1!9 +1PE 4:1!10 +1PE 4:2!1 +1PE 4:2!2 +1PE 4:2!3 +1PE 4:2!4 +1PE 4:2!5 +1PE 4:2!6 +1PE 4:2!7 +1PE 4:2!8 +1PE 4:2!9 +1PE 4:2!10 +1PE 4:2!11 +1PE 4:2!12 +1PE 4:2!14 +1PE 4:2!13 +1PE 4:1!11 +1PE 4:1!12 +1PE 4:1!13 +1PE 4:1!14 +1PE 4:1!15 +1PE 4:1!16 +1PE 4:3!2 +1PE 4:3!1 +1PE 4:3!3 +1PE 4:3!4 +1PE 4:3!5 +1PE 4:3!6 +1PE 4:3!7 +1PE 4:3!8 +1PE 4:3!9 +1PE 4:3!10 +1PE 4:3!11 +1PE 4:3!12 +1PE 4:3!13 +1PE 4:3!14 +1PE 4:3!15 +1PE 4:3!16 +1PE 4:3!17 +1PE 4:3!18 +1PE 4:3!19 +1PE 4:3!20 +1PE 4:4!1 +1PE 4:4!2 +1PE 4:4!3 +1PE 4:4!4 +1PE 4:4!5 +1PE 4:4!6 +1PE 4:4!7 +1PE 4:4!8 +1PE 4:4!9 +1PE 4:4!10 +1PE 4:4!11 +1PE 4:4!12 +1PE 4:4!13 +1PE 4:5!1 +1PE 4:5!2 +1PE 4:5!3 +1PE 4:5!4 +1PE 4:5!5 +1PE 4:5!6 +1PE 4:5!7 +1PE 4:5!8 +1PE 4:5!9 +1PE 4:5!10 +1PE 4:6!3 +1PE 4:6!1 +1PE 4:6!2 +1PE 4:6!4 +1PE 4:6!5 +1PE 4:6!6 +1PE 4:6!7 +1PE 4:6!9 +1PE 4:6!8 +1PE 4:6!10 +1PE 4:6!11 +1PE 4:6!12 +1PE 4:6!14 +1PE 4:6!13 +1PE 4:6!15 +1PE 4:6!16 +1PE 4:6!17 +1PE 4:7!2 +1PE 4:7!1 +1PE 4:7!3 +1PE 4:7!4 +1PE 4:7!5 +1PE 4:7!7 +1PE 4:7!6 +1PE 4:7!8 +1PE 4:7!9 +1PE 4:7!10 +1PE 4:7!11 +1PE 4:8!1 +1PE 4:8!2 +1PE 4:8!3 +1PE 4:8!4 +1PE 4:8!5 +1PE 4:8!6 +1PE 4:8!7 +1PE 4:8!8 +1PE 4:8!9 +1PE 4:8!10 +1PE 4:8!11 +1PE 4:8!12 +1PE 4:8!13 +1PE 4:9!1 +1PE 4:9!2 +1PE 4:9!3 +1PE 4:9!4 +1PE 4:9!5 +1PE 4:10!1 +1PE 4:10!2 +1PE 4:10!3 +1PE 4:10!4 +1PE 4:10!5 +1PE 4:10!6 +1PE 4:10!7 +1PE 4:10!8 +1PE 4:10!9 +1PE 4:10!10 +1PE 4:10!11 +1PE 4:10!12 +1PE 4:10!13 +1PE 4:10!14 +1PE 4:11!1 +1PE 4:11!2 +1PE 4:11!3 +1PE 4:11!4 +1PE 4:11!5 +1PE 4:11!6 +1PE 4:11!7 +1PE 4:11!8 +1PE 4:11!9 +1PE 4:11!10 +1PE 4:11!11 +1PE 4:11!12 +1PE 4:11!13 +1PE 4:11!14 +1PE 4:11!15 +1PE 4:11!16 +1PE 4:11!17 +1PE 4:11!18 +1PE 4:11!19 +1PE 4:11!20 +1PE 4:11!21 +1PE 4:11!22 +1PE 4:11!23 +1PE 4:11!24 +1PE 4:11!25 +1PE 4:11!26 +1PE 4:11!27 +1PE 4:11!28 +1PE 4:11!29 +1PE 4:11!30 +1PE 4:11!31 +1PE 4:11!32 +1PE 4:11!33 +1PE 4:11!34 +1PE 4:11!35 +1PE 4:11!36 +1PE 4:11!37 +1PE 4:11!38 +1PE 4:12!1 +1PE 4:12!2 +1PE 4:12!3 +1PE 4:12!4 +1PE 4:12!5 +1PE 4:12!6 +1PE 4:12!7 +1PE 4:12!8 +1PE 4:12!9 +1PE 4:12!10 +1PE 4:12!11 +1PE 4:12!12 +1PE 4:12!13 +1PE 4:12!14 +1PE 4:12!15 +1PE 4:13!1 +1PE 4:13!2 +1PE 4:13!3 +1PE 4:13!4 +1PE 4:13!5 +1PE 4:13!6 +1PE 4:13!7 +1PE 4:13!8 +1PE 4:13!9 +1PE 4:13!10 +1PE 4:13!11 +1PE 4:13!12 +1PE 4:13!13 +1PE 4:13!14 +1PE 4:13!15 +1PE 4:13!16 +1PE 4:13!17 +1PE 4:13!18 +1PE 4:14!1 +1PE 4:14!2 +1PE 4:14!3 +1PE 4:14!4 +1PE 4:14!5 +1PE 4:14!6 +1PE 4:14!7 +1PE 4:14!8 +1PE 4:14!9 +1PE 4:14!10 +1PE 4:14!11 +1PE 4:14!12 +1PE 4:14!13 +1PE 4:14!14 +1PE 4:14!15 +1PE 4:14!16 +1PE 4:14!17 +1PE 4:14!18 +1PE 4:15!2 +1PE 4:15!1 +1PE 4:15!3 +1PE 4:15!4 +1PE 4:15!5 +1PE 4:15!6 +1PE 4:15!7 +1PE 4:15!8 +1PE 4:15!9 +1PE 4:15!10 +1PE 4:15!11 +1PE 4:15!12 +1PE 4:15!13 +1PE 4:15!14 +1PE 4:16!2 +1PE 4:16!1 +1PE 4:16!3 +1PE 4:16!4 +1PE 4:16!5 +1PE 4:16!6 +1PE 4:16!8 +1PE 4:16!7 +1PE 4:16!9 +1PE 4:16!10 +1PE 4:16!11 +1PE 4:16!12 +1PE 4:16!13 +1PE 4:16!14 +1PE 4:17!1 +1PE 4:17!2 +1PE 4:17!3 +1PE 4:17!4 +1PE 4:17!5 +1PE 4:17!6 +1PE 4:17!7 +1PE 4:17!8 +1PE 4:17!9 +1PE 4:17!10 +1PE 4:17!11 +1PE 4:17!12 +1PE 4:17!14 +1PE 4:17!13 +1PE 4:17!15 +1PE 4:17!16 +1PE 4:17!17 +1PE 4:17!18 +1PE 4:17!19 +1PE 4:17!20 +1PE 4:17!21 +1PE 4:17!22 +1PE 4:17!23 +1PE 4:17!24 +1PE 4:17!25 +1PE 4:17!26 +1PE 4:18!1 +1PE 4:18!2 +1PE 4:18!3 +1PE 4:18!4 +1PE 4:18!5 +1PE 4:18!6 +1PE 4:18!7 +1PE 4:18!8 +1PE 4:18!9 +1PE 4:18!10 +1PE 4:18!11 +1PE 4:18!12 +1PE 4:19!1 +1PE 4:19!2 +1PE 4:19!3 +1PE 4:19!4 +1PE 4:19!5 +1PE 4:19!6 +1PE 4:19!7 +1PE 4:19!8 +1PE 4:19!9 +1PE 4:19!10 +1PE 4:19!11 +1PE 4:19!12 +1PE 4:19!13 +1PE 4:19!14 +1PE 4:19!15 +1PE 4:19!16 +1PE 4:19!17 +1PE 5:1!2 +1PE 5:1!1 +1PE 5:1!3 +1PE 5:1!4 +1PE 5:1!5 +1PE 5:1!6 +1PE 5:1!7 +1PE 5:1!8 +1PE 5:1!9 +1PE 5:1!10 +1PE 5:1!11 +1PE 5:1!12 +1PE 5:1!13 +1PE 5:1!15 +1PE 5:1!14 +1PE 5:1!16 +1PE 5:1!17 +1PE 5:1!18 +1PE 5:1!19 +1PE 5:1!20 +1PE 5:2!1 +1PE 5:2!2 +1PE 5:2!3 +1PE 5:2!4 +1PE 5:2!5 +1PE 5:2!6 +1PE 5:2!7 +1PE 5:2!8 +1PE 5:2!9 +1PE 5:2!10 +1PE 5:2!11 +1PE 5:2!12 +1PE 5:2!13 +1PE 5:2!14 +1PE 5:2!15 +1PE 5:2!16 +1PE 5:2!17 +1PE 5:3!1 +1PE 5:3!2 +1PE 5:3!3 +1PE 5:3!4 +1PE 5:3!5 +1PE 5:3!6 +1PE 5:3!8 +1PE 5:3!7 +1PE 5:3!9 +1PE 5:3!10 +1PE 5:4!1 +1PE 5:4!2 +1PE 5:4!3 +1PE 5:4!4 +1PE 5:4!5 +1PE 5:4!6 +1PE 5:4!7 +1PE 5:4!8 +1PE 5:4!9 +1PE 5:4!10 +1PE 5:5!2 +1PE 5:5!1 +1PE 5:5!3 +1PE 5:5!4 +1PE 5:5!6 +1PE 5:5!5 +1PE 5:5!7 +1PE 5:5!8 +1PE 5:5!9 +1PE 5:5!10 +1PE 5:5!11 +1PE 5:5!12 +1PE 5:5!13 +1PE 5:5!14 +1PE 5:5!15 +1PE 5:5!17 +1PE 5:5!16 +1PE 5:5!18 +1PE 5:5!19 +1PE 5:6!2 +1PE 5:6!1 +1PE 5:6!3 +1PE 5:6!4 +1PE 5:6!5 +1PE 5:6!6 +1PE 5:6!7 +1PE 5:6!8 +1PE 5:6!9 +1PE 5:6!10 +1PE 5:6!11 +1PE 5:6!12 +1PE 5:6!13 +1PE 5:7!1 +1PE 5:7!2 +1PE 5:7!3 +1PE 5:7!4 +1PE 5:7!5 +1PE 5:7!6 +1PE 5:7!7 +1PE 5:7!8 +1PE 5:7!9 +1PE 5:7!10 +1PE 5:7!11 +1PE 5:7!12 +1PE 5:8!1 +1PE 5:8!2 +1PE 5:8!3 +1PE 5:8!4 +1PE 5:8!5 +1PE 5:8!6 +1PE 5:8!7 +1PE 5:8!8 +1PE 5:8!9 +1PE 5:8!10 +1PE 5:8!11 +1PE 5:8!12 +1PE 5:8!13 +1PE 5:9!1 +1PE 5:9!2 +1PE 5:9!3 +1PE 5:9!4 +1PE 5:9!5 +1PE 5:9!6 +1PE 5:9!7 +1PE 5:9!8 +1PE 5:9!9 +1PE 5:9!10 +1PE 5:9!11 +1PE 5:9!12 +1PE 5:9!13 +1PE 5:9!14 +1PE 5:9!15 +1PE 5:9!16 +1PE 5:9!17 +1PE 5:10!2 +1PE 5:10!1 +1PE 5:10!3 +1PE 5:10!4 +1PE 5:10!5 +1PE 5:10!6 +1PE 5:10!7 +1PE 5:10!8 +1PE 5:10!9 +1PE 5:10!10 +1PE 5:10!11 +1PE 5:10!12 +1PE 5:10!13 +1PE 5:10!14 +1PE 5:10!15 +1PE 5:10!16 +1PE 5:10!17 +1PE 5:10!18 +1PE 5:10!19 +1PE 5:10!20 +1PE 5:10!21 +1PE 5:10!22 +1PE 5:11!1 +1PE 5:11!2 +1PE 5:11!3 +1PE 5:11!4 +1PE 5:11!5 +1PE 5:11!6 +1PE 5:11!7 +1PE 5:11!8 +1PE 5:11!9 +1PE 5:12!3 +1PE 5:12!1 +1PE 5:12!2 +1PE 5:12!4 +1PE 5:12!5 +1PE 5:12!6 +1PE 5:12!7 +1PE 5:12!8 +1PE 5:12!9 +1PE 5:12!10 +1PE 5:12!11 +1PE 5:12!12 +1PE 5:12!13 +1PE 5:12!14 +1PE 5:12!15 +1PE 5:12!16 +1PE 5:12!17 +1PE 5:12!18 +1PE 5:12!19 +1PE 5:12!20 +1PE 5:12!21 +1PE 5:12!22 +1PE 5:12!23 +1PE 5:13!1 +1PE 5:13!2 +1PE 5:13!3 +1PE 5:13!4 +1PE 5:13!5 +1PE 5:13!6 +1PE 5:13!7 +1PE 5:13!8 +1PE 5:13!9 +1PE 5:13!10 +1PE 5:13!11 +1PE 5:14!1 +1PE 5:14!2 +1PE 5:14!3 +1PE 5:14!4 +1PE 5:14!5 +1PE 5:14!6 +1PE 5:14!7 +1PE 5:14!8 +1PE 5:14!9 +1PE 5:14!10 +1PE 5:14!11 +2PE 1:1!1 +2PE 1:1!2 +2PE 1:1!3 +2PE 1:1!4 +2PE 1:1!5 +2PE 1:1!6 +2PE 1:1!7 +2PE 1:1!8 +2PE 1:1!10 +2PE 1:1!11 +2PE 1:1!9 +2PE 1:1!12 +2PE 1:1!13 +2PE 1:1!14 +2PE 1:1!15 +2PE 1:1!16 +2PE 1:1!17 +2PE 1:1!18 +2PE 1:1!19 +2PE 1:1!20 +2PE 1:1!21 +2PE 1:2!1 +2PE 1:2!3 +2PE 1:2!4 +2PE 1:2!2 +2PE 1:2!5 +2PE 1:2!6 +2PE 1:2!7 +2PE 1:2!8 +2PE 1:2!9 +2PE 1:2!10 +2PE 1:2!11 +2PE 1:2!12 +2PE 1:2!13 +2PE 1:2!14 +2PE 1:3!1 +2PE 1:3!4 +2PE 1:3!5 +2PE 1:3!6 +2PE 1:3!7 +2PE 1:3!8 +2PE 1:3!2 +2PE 1:3!3 +2PE 1:3!9 +2PE 1:3!10 +2PE 1:3!11 +2PE 1:3!12 +2PE 1:3!13 +2PE 1:3!14 +2PE 1:3!15 +2PE 1:3!16 +2PE 1:3!17 +2PE 1:3!18 +2PE 1:3!19 +2PE 1:3!20 +2PE 1:3!21 +2PE 1:3!22 +2PE 1:3!23 +2PE 1:3!24 +2PE 1:4!1 +2PE 1:4!2 +2PE 1:4!3 +2PE 1:4!4 +2PE 1:4!5 +2PE 1:4!6 +2PE 1:4!8 +2PE 1:4!7 +2PE 1:4!9 +2PE 1:4!10 +2PE 1:4!11 +2PE 1:4!12 +2PE 1:4!13 +2PE 1:4!15 +2PE 1:4!14 +2PE 1:4!16 +2PE 1:4!17 +2PE 1:4!18 +2PE 1:4!19 +2PE 1:4!20 +2PE 1:4!21 +2PE 1:4!22 +2PE 1:4!23 +2PE 1:4!24 +2PE 1:5!4 +2PE 1:5!1 +2PE 1:5!2 +2PE 1:5!3 +2PE 1:5!5 +2PE 1:5!6 +2PE 1:5!7 +2PE 1:5!8 +2PE 1:5!9 +2PE 1:5!10 +2PE 1:5!11 +2PE 1:5!12 +2PE 1:5!13 +2PE 1:5!14 +2PE 1:5!16 +2PE 1:5!15 +2PE 1:5!17 +2PE 1:5!18 +2PE 1:5!19 +2PE 1:5!20 +2PE 1:6!2 +2PE 1:6!1 +2PE 1:6!3 +2PE 1:6!4 +2PE 1:6!5 +2PE 1:6!6 +2PE 1:6!8 +2PE 1:6!7 +2PE 1:6!9 +2PE 1:6!10 +2PE 1:6!11 +2PE 1:6!12 +2PE 1:6!14 +2PE 1:6!13 +2PE 1:6!15 +2PE 1:6!16 +2PE 1:6!17 +2PE 1:6!18 +2PE 1:7!2 +2PE 1:7!1 +2PE 1:7!3 +2PE 1:7!4 +2PE 1:7!5 +2PE 1:7!6 +2PE 1:7!8 +2PE 1:7!7 +2PE 1:7!9 +2PE 1:7!10 +2PE 1:7!11 +2PE 1:7!12 +2PE 1:8!2 +2PE 1:8!1 +2PE 1:8!3 +2PE 1:8!4 +2PE 1:8!5 +2PE 1:8!6 +2PE 1:8!7 +2PE 1:8!8 +2PE 1:8!9 +2PE 1:8!10 +2PE 1:8!11 +2PE 1:8!12 +2PE 1:8!13 +2PE 1:8!14 +2PE 1:8!15 +2PE 1:8!16 +2PE 1:8!17 +2PE 1:8!18 +2PE 1:8!19 +2PE 1:9!2 +2PE 1:9!1 +2PE 1:9!3 +2PE 1:9!4 +2PE 1:9!5 +2PE 1:9!6 +2PE 1:9!7 +2PE 1:9!8 +2PE 1:9!10 +2PE 1:9!9 +2PE 1:9!11 +2PE 1:9!12 +2PE 1:9!13 +2PE 1:9!14 +2PE 1:9!15 +2PE 1:9!16 +2PE 1:10!1 +2PE 1:10!3 +2PE 1:10!2 +2PE 1:10!4 +2PE 1:10!5 +2PE 1:10!6 +2PE 1:10!7 +2PE 1:10!8 +2PE 1:10!9 +2PE 1:10!10 +2PE 1:10!11 +2PE 1:10!13 +2PE 1:10!12 +2PE 1:10!14 +2PE 1:10!15 +2PE 1:10!16 +2PE 1:10!17 +2PE 1:10!18 +2PE 1:11!2 +2PE 1:11!1 +2PE 1:11!3 +2PE 1:11!4 +2PE 1:11!5 +2PE 1:11!6 +2PE 1:11!7 +2PE 1:11!8 +2PE 1:11!9 +2PE 1:11!10 +2PE 1:11!11 +2PE 1:11!12 +2PE 1:11!13 +2PE 1:11!14 +2PE 1:11!15 +2PE 1:11!16 +2PE 1:11!17 +2PE 1:11!18 +2PE 1:12!1 +2PE 1:12!2 +2PE 1:12!3 +2PE 1:12!4 +2PE 1:12!5 +2PE 1:12!6 +2PE 1:12!7 +2PE 1:12!8 +2PE 1:12!9 +2PE 1:12!10 +2PE 1:12!11 +2PE 1:12!12 +2PE 1:12!13 +2PE 1:12!14 +2PE 1:12!15 +2PE 1:13!2 +2PE 1:13!1 +2PE 1:13!3 +2PE 1:13!4 +2PE 1:13!5 +2PE 1:13!6 +2PE 1:13!7 +2PE 1:13!8 +2PE 1:13!9 +2PE 1:13!10 +2PE 1:13!11 +2PE 1:13!12 +2PE 1:13!13 +2PE 1:13!14 +2PE 1:14!1 +2PE 1:14!2 +2PE 1:14!3 +2PE 1:14!4 +2PE 1:14!5 +2PE 1:14!6 +2PE 1:14!7 +2PE 1:14!8 +2PE 1:14!9 +2PE 1:14!10 +2PE 1:14!11 +2PE 1:14!12 +2PE 1:14!13 +2PE 1:14!14 +2PE 1:14!15 +2PE 1:14!16 +2PE 1:14!17 +2PE 1:14!18 +2PE 1:15!2 +2PE 1:15!1 +2PE 1:15!3 +2PE 1:15!4 +2PE 1:15!5 +2PE 1:15!6 +2PE 1:15!7 +2PE 1:15!8 +2PE 1:15!9 +2PE 1:15!10 +2PE 1:15!11 +2PE 1:15!12 +2PE 1:15!13 +2PE 1:15!14 +2PE 1:16!2 +2PE 1:16!1 +2PE 1:16!3 +2PE 1:16!4 +2PE 1:16!5 +2PE 1:16!6 +2PE 1:16!7 +2PE 1:16!8 +2PE 1:16!9 +2PE 1:16!10 +2PE 1:16!11 +2PE 1:16!12 +2PE 1:16!13 +2PE 1:16!14 +2PE 1:16!15 +2PE 1:16!16 +2PE 1:16!17 +2PE 1:16!19 +2PE 1:16!18 +2PE 1:16!20 +2PE 1:16!21 +2PE 1:16!22 +2PE 1:17!2 +2PE 1:17!1 +2PE 1:17!3 +2PE 1:17!4 +2PE 1:17!5 +2PE 1:17!6 +2PE 1:17!7 +2PE 1:17!8 +2PE 1:17!9 +2PE 1:17!12 +2PE 1:17!10 +2PE 1:17!11 +2PE 1:17!13 +2PE 1:17!14 +2PE 1:17!15 +2PE 1:17!16 +2PE 1:17!17 +2PE 1:17!18 +2PE 1:17!19 +2PE 1:17!20 +2PE 1:17!21 +2PE 1:17!22 +2PE 1:17!23 +2PE 1:17!24 +2PE 1:17!25 +2PE 1:17!26 +2PE 1:17!27 +2PE 1:17!28 +2PE 1:18!1 +2PE 1:18!2 +2PE 1:18!3 +2PE 1:18!4 +2PE 1:18!5 +2PE 1:18!6 +2PE 1:18!7 +2PE 1:18!8 +2PE 1:18!9 +2PE 1:18!10 +2PE 1:18!11 +2PE 1:18!12 +2PE 1:18!13 +2PE 1:18!14 +2PE 1:18!15 +2PE 1:18!16 +2PE 1:19!1 +2PE 1:19!2 +2PE 1:19!3 +2PE 1:19!4 +2PE 1:19!5 +2PE 1:19!6 +2PE 1:19!8 +2PE 1:19!9 +2PE 1:19!7 +2PE 1:19!10 +2PE 1:19!11 +2PE 1:19!12 +2PE 1:19!13 +2PE 1:19!14 +2PE 1:19!15 +2PE 1:19!16 +2PE 1:19!17 +2PE 1:19!18 +2PE 1:19!19 +2PE 1:19!20 +2PE 1:19!21 +2PE 1:19!22 +2PE 1:19!23 +2PE 1:19!24 +2PE 1:19!25 +2PE 1:19!26 +2PE 1:19!27 +2PE 1:20!1 +2PE 1:20!2 +2PE 1:20!3 +2PE 1:20!4 +2PE 1:20!5 +2PE 1:20!6 +2PE 1:20!7 +2PE 1:20!8 +2PE 1:20!9 +2PE 1:20!10 +2PE 1:20!11 +2PE 1:21!2 +2PE 1:21!1 +2PE 1:21!3 +2PE 1:21!4 +2PE 1:21!5 +2PE 1:21!6 +2PE 1:21!7 +2PE 1:21!8 +2PE 1:21!9 +2PE 1:21!10 +2PE 1:21!11 +2PE 1:21!12 +2PE 1:21!13 +2PE 1:21!14 +2PE 1:21!15 +2PE 1:21!16 +2PE 2:1!2 +2PE 2:1!1 +2PE 2:1!3 +2PE 2:1!4 +2PE 2:1!5 +2PE 2:1!6 +2PE 2:1!7 +2PE 2:1!8 +2PE 2:1!9 +2PE 2:1!10 +2PE 2:1!11 +2PE 2:1!12 +2PE 2:1!13 +2PE 2:1!14 +2PE 2:1!15 +2PE 2:1!16 +2PE 2:1!17 +2PE 2:1!18 +2PE 2:1!19 +2PE 2:1!20 +2PE 2:1!21 +2PE 2:1!22 +2PE 2:1!23 +2PE 2:1!24 +2PE 2:1!25 +2PE 2:1!26 +2PE 2:1!27 +2PE 2:2!1 +2PE 2:2!2 +2PE 2:2!3 +2PE 2:2!4 +2PE 2:2!5 +2PE 2:2!6 +2PE 2:2!7 +2PE 2:2!8 +2PE 2:2!9 +2PE 2:2!10 +2PE 2:2!11 +2PE 2:2!12 +2PE 2:2!13 +2PE 2:3!1 +2PE 2:3!2 +2PE 2:3!3 +2PE 2:3!4 +2PE 2:3!5 +2PE 2:3!6 +2PE 2:3!7 +2PE 2:3!8 +2PE 2:3!9 +2PE 2:3!10 +2PE 2:3!11 +2PE 2:3!12 +2PE 2:3!13 +2PE 2:3!14 +2PE 2:3!15 +2PE 2:3!16 +2PE 2:3!17 +2PE 2:3!18 +2PE 2:3!19 +2PE 2:4!2 +2PE 2:4!1 +2PE 2:4!3 +2PE 2:4!4 +2PE 2:4!5 +2PE 2:4!6 +2PE 2:4!7 +2PE 2:4!8 +2PE 2:4!9 +2PE 2:4!10 +2PE 2:4!11 +2PE 2:4!12 +2PE 2:4!13 +2PE 2:4!14 +2PE 2:4!15 +2PE 2:4!16 +2PE 2:5!1 +2PE 2:5!2 +2PE 2:5!3 +2PE 2:5!4 +2PE 2:5!5 +2PE 2:5!6 +2PE 2:5!7 +2PE 2:5!8 +2PE 2:5!9 +2PE 2:5!10 +2PE 2:5!11 +2PE 2:5!12 +2PE 2:5!13 +2PE 2:5!14 +2PE 2:5!15 +2PE 2:6!1 +2PE 2:6!2 +2PE 2:6!3 +2PE 2:6!4 +2PE 2:6!5 +2PE 2:6!6 +2PE 2:6!7 +2PE 2:6!8 +2PE 2:6!9 +2PE 2:6!10 +2PE 2:6!11 +2PE 2:6!12 +2PE 2:7!1 +2PE 2:7!2 +2PE 2:7!3 +2PE 2:7!4 +2PE 2:7!5 +2PE 2:7!6 +2PE 2:7!7 +2PE 2:7!8 +2PE 2:7!9 +2PE 2:7!10 +2PE 2:7!11 +2PE 2:7!12 +2PE 2:8!2 +2PE 2:8!1 +2PE 2:8!3 +2PE 2:8!4 +2PE 2:8!5 +2PE 2:8!6 +2PE 2:8!7 +2PE 2:8!8 +2PE 2:8!9 +2PE 2:8!10 +2PE 2:8!11 +2PE 2:8!12 +2PE 2:8!13 +2PE 2:8!14 +2PE 2:8!15 +2PE 2:8!16 +2PE 2:8!17 +2PE 2:9!1 +2PE 2:9!2 +2PE 2:9!3 +2PE 2:9!4 +2PE 2:9!5 +2PE 2:9!6 +2PE 2:9!8 +2PE 2:9!7 +2PE 2:9!9 +2PE 2:9!10 +2PE 2:9!11 +2PE 2:9!12 +2PE 2:9!13 +2PE 2:10!2 +2PE 2:10!1 +2PE 2:10!3 +2PE 2:10!4 +2PE 2:10!5 +2PE 2:10!6 +2PE 2:10!7 +2PE 2:10!8 +2PE 2:10!9 +2PE 2:10!10 +2PE 2:10!11 +2PE 2:10!12 +2PE 2:10!13 +2PE 2:10!14 +2PE 2:10!15 +2PE 2:10!18 +2PE 2:10!16 +2PE 2:10!17 +2PE 2:11!1 +2PE 2:11!2 +2PE 2:11!3 +2PE 2:11!4 +2PE 2:11!5 +2PE 2:11!6 +2PE 2:11!7 +2PE 2:11!8 +2PE 2:11!9 +2PE 2:11!10 +2PE 2:11!11 +2PE 2:11!12 +2PE 2:11!13 +2PE 2:11!14 +2PE 2:11!15 +2PE 2:12!2 +2PE 2:12!1 +2PE 2:12!3 +2PE 2:12!4 +2PE 2:12!5 +2PE 2:12!6 +2PE 2:12!7 +2PE 2:12!8 +2PE 2:12!9 +2PE 2:12!10 +2PE 2:12!11 +2PE 2:12!12 +2PE 2:12!13 +2PE 2:12!14 +2PE 2:12!15 +2PE 2:12!16 +2PE 2:12!17 +2PE 2:12!18 +2PE 2:12!19 +2PE 2:12!20 +2PE 2:12!21 +2PE 2:13!1 +2PE 2:13!2 +2PE 2:13!3 +2PE 2:13!4 +2PE 2:13!5 +2PE 2:13!6 +2PE 2:13!7 +2PE 2:13!8 +2PE 2:13!9 +2PE 2:13!10 +2PE 2:13!11 +2PE 2:13!12 +2PE 2:13!13 +2PE 2:13!14 +2PE 2:13!15 +2PE 2:13!16 +2PE 2:13!17 +2PE 2:13!18 +2PE 2:13!19 +2PE 2:14!2 +2PE 2:14!1 +2PE 2:14!3 +2PE 2:14!4 +2PE 2:14!5 +2PE 2:14!6 +2PE 2:14!7 +2PE 2:14!8 +2PE 2:14!9 +2PE 2:14!10 +2PE 2:14!11 +2PE 2:14!12 +2PE 2:14!13 +2PE 2:14!14 +2PE 2:14!15 +2PE 2:14!16 +2PE 2:15!1 +2PE 2:15!2 +2PE 2:15!3 +2PE 2:15!4 +2PE 2:15!5 +2PE 2:15!6 +2PE 2:15!7 +2PE 2:15!8 +2PE 2:15!9 +2PE 2:15!10 +2PE 2:15!11 +2PE 2:15!12 +2PE 2:15!13 +2PE 2:15!14 +2PE 2:15!15 +2PE 2:16!2 +2PE 2:16!1 +2PE 2:16!4 +2PE 2:16!5 +2PE 2:16!3 +2PE 2:16!6 +2PE 2:16!7 +2PE 2:16!8 +2PE 2:16!9 +2PE 2:16!10 +2PE 2:16!11 +2PE 2:16!12 +2PE 2:16!13 +2PE 2:16!14 +2PE 2:16!15 +2PE 2:16!16 +2PE 2:17!1 +2PE 2:17!2 +2PE 2:17!3 +2PE 2:17!4 +2PE 2:17!5 +2PE 2:17!6 +2PE 2:17!7 +2PE 2:17!8 +2PE 2:17!9 +2PE 2:17!10 +2PE 2:17!11 +2PE 2:17!12 +2PE 2:17!13 +2PE 2:17!14 +2PE 2:17!15 +2PE 2:18!2 +2PE 2:18!1 +2PE 2:18!3 +2PE 2:18!4 +2PE 2:18!5 +2PE 2:18!6 +2PE 2:18!7 +2PE 2:18!8 +2PE 2:18!9 +2PE 2:18!10 +2PE 2:18!11 +2PE 2:18!12 +2PE 2:18!13 +2PE 2:18!14 +2PE 2:18!15 +2PE 2:18!16 +2PE 2:19!1 +2PE 2:19!2 +2PE 2:19!3 +2PE 2:19!4 +2PE 2:19!6 +2PE 2:19!5 +2PE 2:19!7 +2PE 2:19!8 +2PE 2:19!10 +2PE 2:19!9 +2PE 2:19!11 +2PE 2:19!12 +2PE 2:19!13 +2PE 2:19!14 +2PE 2:20!2 +2PE 2:20!1 +2PE 2:20!3 +2PE 2:20!4 +2PE 2:20!5 +2PE 2:20!6 +2PE 2:20!7 +2PE 2:20!8 +2PE 2:20!9 +2PE 2:20!10 +2PE 2:20!11 +2PE 2:20!12 +2PE 2:20!13 +2PE 2:20!14 +2PE 2:20!15 +2PE 2:20!17 +2PE 2:20!16 +2PE 2:20!18 +2PE 2:20!19 +2PE 2:20!20 +2PE 2:20!21 +2PE 2:20!22 +2PE 2:20!23 +2PE 2:20!24 +2PE 2:20!25 +2PE 2:20!26 +2PE 2:20!27 +2PE 2:21!2 +2PE 2:21!1 +2PE 2:21!3 +2PE 2:21!4 +2PE 2:21!5 +2PE 2:21!6 +2PE 2:21!7 +2PE 2:21!8 +2PE 2:21!9 +2PE 2:21!10 +2PE 2:21!11 +2PE 2:21!12 +2PE 2:21!13 +2PE 2:21!14 +2PE 2:21!15 +2PE 2:21!16 +2PE 2:21!17 +2PE 2:21!18 +2PE 2:21!19 +2PE 2:22!1 +2PE 2:22!2 +2PE 2:22!3 +2PE 2:22!4 +2PE 2:22!5 +2PE 2:22!6 +2PE 2:22!7 +2PE 2:22!8 +2PE 2:22!9 +2PE 2:22!10 +2PE 2:22!11 +2PE 2:22!12 +2PE 2:22!13 +2PE 2:22!14 +2PE 2:22!15 +2PE 2:22!16 +2PE 2:22!17 +2PE 2:22!18 +2PE 3:1!3 +2PE 3:1!2 +2PE 3:1!1 +2PE 3:1!4 +2PE 3:1!7 +2PE 3:1!5 +2PE 3:1!6 +2PE 3:1!8 +2PE 3:1!9 +2PE 3:1!10 +2PE 3:1!12 +2PE 3:1!13 +2PE 3:1!11 +2PE 3:1!14 +2PE 3:1!15 +2PE 3:1!16 +2PE 3:2!1 +2PE 3:2!2 +2PE 3:2!3 +2PE 3:2!5 +2PE 3:2!6 +2PE 3:2!7 +2PE 3:2!8 +2PE 3:2!4 +2PE 3:2!9 +2PE 3:2!10 +2PE 3:2!11 +2PE 3:2!12 +2PE 3:2!13 +2PE 3:2!14 +2PE 3:2!15 +2PE 3:2!16 +2PE 3:2!17 +2PE 3:2!18 +2PE 3:3!1 +2PE 3:3!2 +2PE 3:3!3 +2PE 3:3!4 +2PE 3:3!5 +2PE 3:3!6 +2PE 3:3!7 +2PE 3:3!8 +2PE 3:3!9 +2PE 3:3!10 +2PE 3:3!11 +2PE 3:3!12 +2PE 3:3!13 +2PE 3:3!14 +2PE 3:3!15 +2PE 3:3!16 +2PE 3:3!17 +2PE 3:3!18 +2PE 3:4!1 +2PE 3:4!2 +2PE 3:4!3 +2PE 3:4!4 +2PE 3:4!5 +2PE 3:4!6 +2PE 3:4!7 +2PE 3:4!8 +2PE 3:4!9 +2PE 3:4!12 +2PE 3:4!10 +2PE 3:4!11 +2PE 3:4!13 +2PE 3:4!14 +2PE 3:4!15 +2PE 3:4!16 +2PE 3:4!17 +2PE 3:4!18 +2PE 3:4!19 +2PE 3:4!20 +2PE 3:4!21 +2PE 3:5!2 +2PE 3:5!1 +2PE 3:5!3 +2PE 3:5!4 +2PE 3:5!5 +2PE 3:5!6 +2PE 3:5!7 +2PE 3:5!8 +2PE 3:5!9 +2PE 3:5!10 +2PE 3:5!11 +2PE 3:5!12 +2PE 3:5!13 +2PE 3:5!14 +2PE 3:5!15 +2PE 3:5!16 +2PE 3:5!17 +2PE 3:5!18 +2PE 3:5!19 +2PE 3:5!20 +2PE 3:5!21 +2PE 3:6!1 +2PE 3:6!2 +2PE 3:6!3 +2PE 3:6!4 +2PE 3:6!5 +2PE 3:6!6 +2PE 3:6!7 +2PE 3:6!8 +2PE 3:7!2 +2PE 3:7!1 +2PE 3:7!3 +2PE 3:7!4 +2PE 3:7!5 +2PE 3:7!6 +2PE 3:7!7 +2PE 3:7!8 +2PE 3:7!9 +2PE 3:7!10 +2PE 3:7!11 +2PE 3:7!12 +2PE 3:7!13 +2PE 3:7!14 +2PE 3:7!15 +2PE 3:7!16 +2PE 3:7!17 +2PE 3:7!18 +2PE 3:7!19 +2PE 3:7!20 +2PE 3:7!21 +2PE 3:7!22 +2PE 3:8!2 +2PE 3:8!7 +2PE 3:8!1 +2PE 3:8!3 +2PE 3:8!4 +2PE 3:8!5 +2PE 3:8!6 +2PE 3:8!8 +2PE 3:8!9 +2PE 3:8!10 +2PE 3:8!11 +2PE 3:8!12 +2PE 3:8!13 +2PE 3:8!14 +2PE 3:8!15 +2PE 3:8!16 +2PE 3:8!17 +2PE 3:8!18 +2PE 3:8!19 +2PE 3:8!20 +2PE 3:8!21 +2PE 3:9!1 +2PE 3:9!2 +2PE 3:9!3 +2PE 3:9!4 +2PE 3:9!5 +2PE 3:9!6 +2PE 3:9!7 +2PE 3:9!8 +2PE 3:9!9 +2PE 3:9!10 +2PE 3:9!11 +2PE 3:9!12 +2PE 3:9!13 +2PE 3:9!15 +2PE 3:9!14 +2PE 3:9!16 +2PE 3:9!17 +2PE 3:9!18 +2PE 3:9!19 +2PE 3:9!20 +2PE 3:9!21 +2PE 3:9!22 +2PE 3:10!2 +2PE 3:10!1 +2PE 3:10!3 +2PE 3:10!4 +2PE 3:10!5 +2PE 3:10!6 +2PE 3:10!7 +2PE 3:10!8 +2PE 3:10!9 +2PE 3:10!10 +2PE 3:10!11 +2PE 3:10!12 +2PE 3:10!14 +2PE 3:10!13 +2PE 3:10!15 +2PE 3:10!16 +2PE 3:10!17 +2PE 3:10!18 +2PE 3:10!19 +2PE 3:10!20 +2PE 3:10!21 +2PE 3:10!22 +2PE 3:10!23 +2PE 3:10!24 +2PE 3:11!2 +2PE 3:11!1 +2PE 3:11!3 +2PE 3:11!4 +2PE 3:11!6 +2PE 3:11!5 +2PE 3:11!7 +2PE 3:11!8 +2PE 3:11!9 +2PE 3:11!10 +2PE 3:11!11 +2PE 3:11!12 +2PE 3:11!13 +2PE 3:12!1 +2PE 3:12!2 +2PE 3:12!3 +2PE 3:12!4 +2PE 3:12!5 +2PE 3:12!6 +2PE 3:12!7 +2PE 3:12!8 +2PE 3:12!9 +2PE 3:12!10 +2PE 3:12!11 +2PE 3:12!12 +2PE 3:12!13 +2PE 3:12!14 +2PE 3:12!15 +2PE 3:12!16 +2PE 3:12!17 +2PE 3:12!18 +2PE 3:13!2 +2PE 3:13!1 +2PE 3:13!3 +2PE 3:13!4 +2PE 3:13!5 +2PE 3:13!6 +2PE 3:13!7 +2PE 3:13!8 +2PE 3:13!9 +2PE 3:13!10 +2PE 3:13!11 +2PE 3:13!12 +2PE 3:13!13 +2PE 3:13!14 +2PE 3:13!15 +2PE 3:14!1 +2PE 3:14!2 +2PE 3:14!3 +2PE 3:14!4 +2PE 3:14!5 +2PE 3:14!6 +2PE 3:14!7 +2PE 3:14!8 +2PE 3:14!9 +2PE 3:14!10 +2PE 3:14!11 +2PE 3:14!12 +2PE 3:15!1 +2PE 3:15!2 +2PE 3:15!3 +2PE 3:15!4 +2PE 3:15!5 +2PE 3:15!6 +2PE 3:15!7 +2PE 3:15!8 +2PE 3:15!9 +2PE 3:15!10 +2PE 3:15!11 +2PE 3:15!12 +2PE 3:15!13 +2PE 3:15!14 +2PE 3:15!15 +2PE 3:15!16 +2PE 3:15!17 +2PE 3:15!18 +2PE 3:15!19 +2PE 3:15!20 +2PE 3:15!21 +2PE 3:15!22 +2PE 3:16!1 +2PE 3:16!2 +2PE 3:16!3 +2PE 3:16!4 +2PE 3:16!5 +2PE 3:16!6 +2PE 3:16!7 +2PE 3:16!8 +2PE 3:16!9 +2PE 3:16!10 +2PE 3:16!11 +2PE 3:16!12 +2PE 3:16!13 +2PE 3:16!14 +2PE 3:16!15 +2PE 3:16!16 +2PE 3:16!17 +2PE 3:16!18 +2PE 3:16!19 +2PE 3:16!20 +2PE 3:16!21 +2PE 3:16!22 +2PE 3:16!23 +2PE 3:16!24 +2PE 3:16!25 +2PE 3:16!26 +2PE 3:16!27 +2PE 3:16!28 +2PE 3:16!29 +2PE 3:16!30 +2PE 3:16!31 +2PE 3:17!2 +2PE 3:17!3 +2PE 3:17!1 +2PE 3:17!4 +2PE 3:17!5 +2PE 3:17!6 +2PE 3:17!7 +2PE 3:17!8 +2PE 3:17!9 +2PE 3:17!10 +2PE 3:17!11 +2PE 3:17!12 +2PE 3:17!13 +2PE 3:17!14 +2PE 3:17!15 +2PE 3:17!16 +2PE 3:18!2 +2PE 3:18!1 +2PE 3:18!3 +2PE 3:18!4 +2PE 3:18!5 +2PE 3:18!6 +2PE 3:18!7 +2PE 3:18!8 +2PE 3:18!9 +2PE 3:18!10 +2PE 3:18!11 +2PE 3:18!12 +2PE 3:18!13 +2PE 3:18!14 +2PE 3:18!15 +2PE 3:18!16 +2PE 3:18!17 +2PE 3:18!18 +2PE 3:18!19 +2PE 3:18!20 +2PE 3:18!21 +2PE 3:18!22 +1JN 1:1!1 +1JN 1:1!2 +1JN 1:1!3 +1JN 1:1!4 +1JN 1:1!5 +1JN 1:1!6 +1JN 1:1!7 +1JN 1:1!8 +1JN 1:1!9 +1JN 1:1!10 +1JN 1:1!11 +1JN 1:1!12 +1JN 1:1!13 +1JN 1:1!14 +1JN 1:1!15 +1JN 1:1!16 +1JN 1:1!17 +1JN 1:1!18 +1JN 1:1!19 +1JN 1:1!20 +1JN 1:1!21 +1JN 1:1!22 +1JN 1:1!23 +1JN 1:2!1 +1JN 1:2!2 +1JN 1:2!3 +1JN 1:2!4 +1JN 1:2!5 +1JN 1:2!6 +1JN 1:2!7 +1JN 1:2!8 +1JN 1:2!9 +1JN 1:2!10 +1JN 1:2!11 +1JN 1:2!12 +1JN 1:2!13 +1JN 1:2!14 +1JN 1:2!15 +1JN 1:2!16 +1JN 1:2!17 +1JN 1:2!18 +1JN 1:2!19 +1JN 1:2!20 +1JN 1:2!21 +1JN 1:2!22 +1JN 1:2!23 +1JN 1:3!1 +1JN 1:3!2 +1JN 1:3!3 +1JN 1:3!4 +1JN 1:3!5 +1JN 1:3!6 +1JN 1:3!7 +1JN 1:3!8 +1JN 1:3!9 +1JN 1:3!10 +1JN 1:3!11 +1JN 1:3!12 +1JN 1:3!13 +1JN 1:3!14 +1JN 1:3!18 +1JN 1:3!15 +1JN 1:3!16 +1JN 1:3!17 +1JN 1:3!19 +1JN 1:3!20 +1JN 1:3!21 +1JN 1:3!22 +1JN 1:3!23 +1JN 1:3!24 +1JN 1:3!25 +1JN 1:3!26 +1JN 1:3!27 +1JN 1:3!28 +1JN 1:3!29 +1JN 1:3!30 +1JN 1:4!1 +1JN 1:4!2 +1JN 1:4!3 +1JN 1:4!4 +1JN 1:4!5 +1JN 1:4!6 +1JN 1:4!7 +1JN 1:4!8 +1JN 1:4!9 +1JN 1:4!10 +1JN 1:5!1 +1JN 1:5!2 +1JN 1:5!3 +1JN 1:5!4 +1JN 1:5!5 +1JN 1:5!6 +1JN 1:5!7 +1JN 1:5!8 +1JN 1:5!9 +1JN 1:5!10 +1JN 1:5!11 +1JN 1:5!12 +1JN 1:5!13 +1JN 1:5!14 +1JN 1:5!15 +1JN 1:5!16 +1JN 1:5!17 +1JN 1:5!18 +1JN 1:5!20 +1JN 1:5!21 +1JN 1:5!22 +1JN 1:5!23 +1JN 1:5!19 +1JN 1:5!24 +1JN 1:6!1 +1JN 1:6!2 +1JN 1:6!3 +1JN 1:6!4 +1JN 1:6!5 +1JN 1:6!6 +1JN 1:6!7 +1JN 1:6!8 +1JN 1:6!9 +1JN 1:6!10 +1JN 1:6!11 +1JN 1:6!12 +1JN 1:6!13 +1JN 1:6!14 +1JN 1:6!15 +1JN 1:6!16 +1JN 1:6!17 +1JN 1:6!18 +1JN 1:7!2 +1JN 1:7!1 +1JN 1:7!3 +1JN 1:7!4 +1JN 1:7!5 +1JN 1:7!6 +1JN 1:7!7 +1JN 1:7!8 +1JN 1:7!9 +1JN 1:7!10 +1JN 1:7!11 +1JN 1:7!12 +1JN 1:7!13 +1JN 1:7!14 +1JN 1:7!15 +1JN 1:7!16 +1JN 1:7!17 +1JN 1:7!18 +1JN 1:7!19 +1JN 1:7!20 +1JN 1:7!21 +1JN 1:7!22 +1JN 1:7!23 +1JN 1:7!24 +1JN 1:7!25 +1JN 1:7!26 +1JN 1:7!27 +1JN 1:7!28 +1JN 1:8!1 +1JN 1:8!2 +1JN 1:8!3 +1JN 1:8!4 +1JN 1:8!5 +1JN 1:8!6 +1JN 1:8!7 +1JN 1:8!8 +1JN 1:8!9 +1JN 1:8!10 +1JN 1:8!11 +1JN 1:8!12 +1JN 1:8!13 +1JN 1:8!14 +1JN 1:8!15 +1JN 1:9!1 +1JN 1:9!2 +1JN 1:9!3 +1JN 1:9!4 +1JN 1:9!5 +1JN 1:9!7 +1JN 1:9!6 +1JN 1:9!8 +1JN 1:9!9 +1JN 1:9!10 +1JN 1:9!11 +1JN 1:9!12 +1JN 1:9!13 +1JN 1:9!14 +1JN 1:9!15 +1JN 1:9!16 +1JN 1:9!17 +1JN 1:9!18 +1JN 1:9!19 +1JN 1:9!20 +1JN 1:10!1 +1JN 1:10!2 +1JN 1:10!3 +1JN 1:10!4 +1JN 1:10!5 +1JN 1:10!6 +1JN 1:10!7 +1JN 1:10!8 +1JN 1:10!9 +1JN 1:10!10 +1JN 1:10!11 +1JN 1:10!12 +1JN 1:10!13 +1JN 1:10!14 +1JN 1:10!15 +1JN 1:10!16 +1JN 2:1!1 +1JN 2:1!2 +1JN 2:1!3 +1JN 2:1!4 +1JN 2:1!5 +1JN 2:1!6 +1JN 2:1!7 +1JN 2:1!8 +1JN 2:1!9 +1JN 2:1!10 +1JN 2:1!11 +1JN 2:1!12 +1JN 2:1!14 +1JN 2:1!15 +1JN 2:1!16 +1JN 2:1!17 +1JN 2:1!13 +1JN 2:1!18 +1JN 2:1!19 +1JN 2:1!20 +1JN 2:2!1 +1JN 2:2!2 +1JN 2:2!3 +1JN 2:2!4 +1JN 2:2!5 +1JN 2:2!6 +1JN 2:2!7 +1JN 2:2!8 +1JN 2:2!13 +1JN 2:2!9 +1JN 2:2!10 +1JN 2:2!11 +1JN 2:2!12 +1JN 2:2!14 +1JN 2:2!15 +1JN 2:2!16 +1JN 2:2!17 +1JN 2:2!18 +1JN 2:2!19 +1JN 2:2!20 +1JN 2:3!1 +1JN 2:3!2 +1JN 2:3!3 +1JN 2:3!4 +1JN 2:3!5 +1JN 2:3!6 +1JN 2:3!7 +1JN 2:3!8 +1JN 2:3!9 +1JN 2:3!10 +1JN 2:3!11 +1JN 2:3!12 +1JN 2:4!1 +1JN 2:4!2 +1JN 2:4!3 +1JN 2:4!4 +1JN 2:4!5 +1JN 2:4!6 +1JN 2:4!7 +1JN 2:4!8 +1JN 2:4!9 +1JN 2:4!10 +1JN 2:4!11 +1JN 2:4!12 +1JN 2:4!13 +1JN 2:4!14 +1JN 2:4!15 +1JN 2:4!16 +1JN 2:4!17 +1JN 2:4!18 +1JN 2:4!19 +1JN 2:4!20 +1JN 2:5!2 +1JN 2:5!3 +1JN 2:5!1 +1JN 2:5!4 +1JN 2:5!5 +1JN 2:5!6 +1JN 2:5!7 +1JN 2:5!8 +1JN 2:5!9 +1JN 2:5!10 +1JN 2:5!11 +1JN 2:5!12 +1JN 2:5!13 +1JN 2:5!14 +1JN 2:5!15 +1JN 2:5!16 +1JN 2:5!17 +1JN 2:5!18 +1JN 2:5!19 +1JN 2:5!20 +1JN 2:5!21 +1JN 2:5!22 +1JN 2:6!1 +1JN 2:6!2 +1JN 2:6!3 +1JN 2:6!4 +1JN 2:6!5 +1JN 2:6!7 +1JN 2:6!8 +1JN 2:6!9 +1JN 2:6!6 +1JN 2:6!10 +1JN 2:6!11 +1JN 2:6!12 +1JN 2:6!13 +1JN 2:7!1 +1JN 2:7!5 +1JN 2:7!6 +1JN 2:7!2 +1JN 2:7!3 +1JN 2:7!4 +1JN 2:7!7 +1JN 2:7!8 +1JN 2:7!9 +1JN 2:7!10 +1JN 2:7!11 +1JN 2:7!12 +1JN 2:7!13 +1JN 2:7!14 +1JN 2:7!15 +1JN 2:7!16 +1JN 2:7!17 +1JN 2:7!18 +1JN 2:7!19 +1JN 2:7!20 +1JN 2:7!21 +1JN 2:7!22 +1JN 2:8!1 +1JN 2:8!2 +1JN 2:8!3 +1JN 2:8!4 +1JN 2:8!5 +1JN 2:8!6 +1JN 2:8!7 +1JN 2:8!8 +1JN 2:8!9 +1JN 2:8!10 +1JN 2:8!11 +1JN 2:8!12 +1JN 2:8!13 +1JN 2:8!14 +1JN 2:8!15 +1JN 2:8!16 +1JN 2:8!17 +1JN 2:8!18 +1JN 2:8!19 +1JN 2:8!20 +1JN 2:8!21 +1JN 2:8!22 +1JN 2:8!23 +1JN 2:8!24 +1JN 2:9!1 +1JN 2:9!2 +1JN 2:9!3 +1JN 2:9!4 +1JN 2:9!5 +1JN 2:9!6 +1JN 2:9!7 +1JN 2:9!8 +1JN 2:9!9 +1JN 2:9!10 +1JN 2:9!11 +1JN 2:9!12 +1JN 2:9!13 +1JN 2:9!14 +1JN 2:9!15 +1JN 2:9!16 +1JN 2:9!17 +1JN 2:10!1 +1JN 2:10!2 +1JN 2:10!3 +1JN 2:10!4 +1JN 2:10!5 +1JN 2:10!6 +1JN 2:10!7 +1JN 2:10!8 +1JN 2:10!9 +1JN 2:10!10 +1JN 2:10!11 +1JN 2:10!12 +1JN 2:10!13 +1JN 2:10!14 +1JN 2:10!15 +1JN 2:11!2 +1JN 2:11!1 +1JN 2:11!3 +1JN 2:11!4 +1JN 2:11!5 +1JN 2:11!6 +1JN 2:11!7 +1JN 2:11!8 +1JN 2:11!9 +1JN 2:11!10 +1JN 2:11!11 +1JN 2:11!12 +1JN 2:11!13 +1JN 2:11!14 +1JN 2:11!15 +1JN 2:11!16 +1JN 2:11!17 +1JN 2:11!18 +1JN 2:11!19 +1JN 2:11!20 +1JN 2:11!21 +1JN 2:11!22 +1JN 2:11!23 +1JN 2:11!24 +1JN 2:11!25 +1JN 2:11!26 +1JN 2:11!27 +1JN 2:12!3 +1JN 2:12!1 +1JN 2:12!2 +1JN 2:12!4 +1JN 2:12!5 +1JN 2:12!6 +1JN 2:12!7 +1JN 2:12!8 +1JN 2:12!9 +1JN 2:12!10 +1JN 2:12!11 +1JN 2:12!12 +1JN 2:13!3 +1JN 2:13!1 +1JN 2:13!2 +1JN 2:13!4 +1JN 2:13!5 +1JN 2:13!6 +1JN 2:13!7 +1JN 2:13!8 +1JN 2:13!11 +1JN 2:13!9 +1JN 2:13!10 +1JN 2:13!12 +1JN 2:13!13 +1JN 2:13!14 +1JN 2:13!15 +1JN 2:14!3 +1JN 2:14!1 +1JN 2:14!2 +1JN 2:14!4 +1JN 2:14!5 +1JN 2:14!6 +1JN 2:14!7 +1JN 2:14!10 +1JN 2:14!8 +1JN 2:14!9 +1JN 2:14!11 +1JN 2:14!12 +1JN 2:14!13 +1JN 2:14!14 +1JN 2:14!15 +1JN 2:14!18 +1JN 2:14!16 +1JN 2:14!17 +1JN 2:14!19 +1JN 2:14!20 +1JN 2:14!21 +1JN 2:14!22 +1JN 2:14!23 +1JN 2:14!24 +1JN 2:14!25 +1JN 2:14!26 +1JN 2:14!27 +1JN 2:14!28 +1JN 2:14!29 +1JN 2:14!30 +1JN 2:14!31 +1JN 2:14!32 +1JN 2:14!33 +1JN 2:15!1 +1JN 2:15!2 +1JN 2:15!3 +1JN 2:15!4 +1JN 2:15!5 +1JN 2:15!6 +1JN 2:15!7 +1JN 2:15!8 +1JN 2:15!9 +1JN 2:15!10 +1JN 2:15!11 +1JN 2:15!12 +1JN 2:15!13 +1JN 2:15!14 +1JN 2:15!15 +1JN 2:15!16 +1JN 2:15!17 +1JN 2:15!18 +1JN 2:15!19 +1JN 2:15!20 +1JN 2:15!21 +1JN 2:15!22 +1JN 2:16!1 +1JN 2:16!21 +1JN 2:16!2 +1JN 2:16!3 +1JN 2:16!4 +1JN 2:16!5 +1JN 2:16!6 +1JN 2:16!7 +1JN 2:16!8 +1JN 2:16!9 +1JN 2:16!10 +1JN 2:16!11 +1JN 2:16!12 +1JN 2:16!13 +1JN 2:16!14 +1JN 2:16!15 +1JN 2:16!16 +1JN 2:16!17 +1JN 2:16!18 +1JN 2:16!19 +1JN 2:16!20 +1JN 2:16!22 +1JN 2:16!23 +1JN 2:16!24 +1JN 2:16!25 +1JN 2:16!26 +1JN 2:16!27 +1JN 2:16!28 +1JN 2:16!29 +1JN 2:16!30 +1JN 2:17!1 +1JN 2:17!4 +1JN 2:17!2 +1JN 2:17!3 +1JN 2:17!5 +1JN 2:17!6 +1JN 2:17!7 +1JN 2:17!8 +1JN 2:17!10 +1JN 2:17!9 +1JN 2:17!11 +1JN 2:17!12 +1JN 2:17!13 +1JN 2:17!14 +1JN 2:17!15 +1JN 2:17!16 +1JN 2:17!17 +1JN 2:17!18 +1JN 2:17!19 +1JN 2:18!1 +1JN 2:18!2 +1JN 2:18!3 +1JN 2:18!4 +1JN 2:18!5 +1JN 2:18!6 +1JN 2:18!7 +1JN 2:18!8 +1JN 2:18!9 +1JN 2:18!10 +1JN 2:18!11 +1JN 2:18!12 +1JN 2:18!13 +1JN 2:18!14 +1JN 2:18!15 +1JN 2:18!16 +1JN 2:18!17 +1JN 2:18!18 +1JN 2:18!19 +1JN 2:18!20 +1JN 2:18!21 +1JN 2:19!1 +1JN 2:19!2 +1JN 2:19!3 +1JN 2:19!4 +1JN 2:19!5 +1JN 2:19!6 +1JN 2:19!7 +1JN 2:19!8 +1JN 2:19!10 +1JN 2:19!9 +1JN 2:19!11 +1JN 2:19!12 +1JN 2:19!13 +1JN 2:19!15 +1JN 2:19!14 +1JN 2:19!16 +1JN 2:19!17 +1JN 2:19!18 +1JN 2:19!19 +1JN 2:19!20 +1JN 2:19!21 +1JN 2:19!22 +1JN 2:19!23 +1JN 2:19!24 +1JN 2:19!25 +1JN 2:19!26 +1JN 2:20!1 +1JN 2:20!2 +1JN 2:20!3 +1JN 2:20!4 +1JN 2:20!5 +1JN 2:20!6 +1JN 2:20!7 +1JN 2:20!8 +1JN 2:20!9 +1JN 2:20!10 +1JN 2:21!2 +1JN 2:21!3 +1JN 2:21!1 +1JN 2:21!4 +1JN 2:21!5 +1JN 2:21!6 +1JN 2:21!7 +1JN 2:21!8 +1JN 2:21!9 +1JN 2:21!10 +1JN 2:21!11 +1JN 2:21!12 +1JN 2:21!13 +1JN 2:21!14 +1JN 2:21!15 +1JN 2:21!16 +1JN 2:21!17 +1JN 2:21!18 +1JN 2:21!19 +1JN 2:21!20 +1JN 2:21!21 +1JN 2:22!1 +1JN 2:22!2 +1JN 2:22!3 +1JN 2:22!4 +1JN 2:22!5 +1JN 2:22!6 +1JN 2:22!7 +1JN 2:22!8 +1JN 2:22!9 +1JN 2:22!10 +1JN 2:22!11 +1JN 2:22!12 +1JN 2:22!13 +1JN 2:22!14 +1JN 2:22!15 +1JN 2:22!16 +1JN 2:22!17 +1JN 2:22!18 +1JN 2:22!19 +1JN 2:22!20 +1JN 2:22!21 +1JN 2:22!22 +1JN 2:22!23 +1JN 2:22!24 +1JN 2:22!25 +1JN 2:23!1 +1JN 2:23!2 +1JN 2:23!3 +1JN 2:23!4 +1JN 2:23!5 +1JN 2:23!6 +1JN 2:23!7 +1JN 2:23!8 +1JN 2:23!9 +1JN 2:23!10 +1JN 2:23!11 +1JN 2:23!12 +1JN 2:23!13 +1JN 2:23!14 +1JN 2:23!15 +1JN 2:23!16 +1JN 2:23!17 +1JN 2:24!1 +1JN 2:24!2 +1JN 2:24!3 +1JN 2:24!4 +1JN 2:24!5 +1JN 2:24!6 +1JN 2:24!7 +1JN 2:24!8 +1JN 2:24!9 +1JN 2:24!10 +1JN 2:24!11 +1JN 2:24!12 +1JN 2:24!13 +1JN 2:24!14 +1JN 2:24!15 +1JN 2:24!16 +1JN 2:24!17 +1JN 2:24!18 +1JN 2:24!19 +1JN 2:24!20 +1JN 2:24!21 +1JN 2:24!22 +1JN 2:24!23 +1JN 2:24!24 +1JN 2:24!25 +1JN 2:24!26 +1JN 2:25!1 +1JN 2:25!2 +1JN 2:25!3 +1JN 2:25!4 +1JN 2:25!5 +1JN 2:25!6 +1JN 2:25!7 +1JN 2:25!8 +1JN 2:25!9 +1JN 2:25!10 +1JN 2:25!11 +1JN 2:25!12 +1JN 2:25!13 +1JN 2:26!1 +1JN 2:26!2 +1JN 2:26!3 +1JN 2:26!4 +1JN 2:26!5 +1JN 2:26!6 +1JN 2:26!7 +1JN 2:27!1 +1JN 2:27!2 +1JN 2:27!3 +1JN 2:27!4 +1JN 2:27!5 +1JN 2:27!6 +1JN 2:27!7 +1JN 2:27!8 +1JN 2:27!9 +1JN 2:27!10 +1JN 2:27!11 +1JN 2:27!12 +1JN 2:27!13 +1JN 2:27!14 +1JN 2:27!15 +1JN 2:27!16 +1JN 2:27!17 +1JN 2:27!18 +1JN 2:27!19 +1JN 2:27!20 +1JN 2:27!21 +1JN 2:27!22 +1JN 2:27!23 +1JN 2:27!24 +1JN 2:27!25 +1JN 2:27!26 +1JN 2:27!27 +1JN 2:27!28 +1JN 2:27!29 +1JN 2:27!30 +1JN 2:27!31 +1JN 2:27!32 +1JN 2:27!33 +1JN 2:27!34 +1JN 2:27!35 +1JN 2:27!36 +1JN 2:27!37 +1JN 2:27!38 +1JN 2:27!39 +1JN 2:27!40 +1JN 2:27!41 +1JN 2:27!42 +1JN 2:28!1 +1JN 2:28!3 +1JN 2:28!2 +1JN 2:28!4 +1JN 2:28!5 +1JN 2:28!6 +1JN 2:28!7 +1JN 2:28!8 +1JN 2:28!9 +1JN 2:28!10 +1JN 2:28!11 +1JN 2:28!12 +1JN 2:28!13 +1JN 2:28!14 +1JN 2:28!15 +1JN 2:28!16 +1JN 2:28!17 +1JN 2:28!18 +1JN 2:28!19 +1JN 2:28!20 +1JN 2:29!1 +1JN 2:29!2 +1JN 2:29!3 +1JN 2:29!4 +1JN 2:29!5 +1JN 2:29!6 +1JN 2:29!7 +1JN 2:29!8 +1JN 2:29!9 +1JN 2:29!10 +1JN 2:29!11 +1JN 2:29!12 +1JN 2:29!13 +1JN 2:29!14 +1JN 2:29!15 +1JN 2:29!16 +1JN 3:1!1 +1JN 3:1!2 +1JN 3:1!3 +1JN 3:1!4 +1JN 3:1!5 +1JN 3:1!6 +1JN 3:1!7 +1JN 3:1!8 +1JN 3:1!9 +1JN 3:1!10 +1JN 3:1!11 +1JN 3:1!12 +1JN 3:1!13 +1JN 3:1!14 +1JN 3:1!15 +1JN 3:1!16 +1JN 3:1!17 +1JN 3:1!18 +1JN 3:1!19 +1JN 3:1!20 +1JN 3:1!21 +1JN 3:1!22 +1JN 3:1!23 +1JN 3:1!24 +1JN 3:2!1 +1JN 3:2!2 +1JN 3:2!3 +1JN 3:2!4 +1JN 3:2!5 +1JN 3:2!6 +1JN 3:2!7 +1JN 3:2!8 +1JN 3:2!9 +1JN 3:2!10 +1JN 3:2!11 +1JN 3:2!12 +1JN 3:2!13 +1JN 3:2!14 +1JN 3:2!15 +1JN 3:2!16 +1JN 3:2!17 +1JN 3:2!18 +1JN 3:2!19 +1JN 3:2!20 +1JN 3:2!21 +1JN 3:2!22 +1JN 3:3!1 +1JN 3:3!2 +1JN 3:3!3 +1JN 3:3!4 +1JN 3:3!5 +1JN 3:3!6 +1JN 3:3!7 +1JN 3:3!8 +1JN 3:3!9 +1JN 3:3!10 +1JN 3:3!11 +1JN 3:3!12 +1JN 3:3!13 +1JN 3:3!14 +1JN 3:3!15 +1JN 3:4!1 +1JN 3:4!2 +1JN 3:4!3 +1JN 3:4!4 +1JN 3:4!5 +1JN 3:4!6 +1JN 3:4!7 +1JN 3:4!8 +1JN 3:4!9 +1JN 3:4!10 +1JN 3:4!11 +1JN 3:4!12 +1JN 3:4!13 +1JN 3:4!14 +1JN 3:4!15 +1JN 3:5!1 +1JN 3:5!2 +1JN 3:5!3 +1JN 3:5!4 +1JN 3:5!5 +1JN 3:5!6 +1JN 3:5!7 +1JN 3:5!8 +1JN 3:5!9 +1JN 3:5!10 +1JN 3:5!11 +1JN 3:5!12 +1JN 3:5!13 +1JN 3:5!14 +1JN 3:5!15 +1JN 3:6!1 +1JN 3:6!2 +1JN 3:6!3 +1JN 3:6!4 +1JN 3:6!5 +1JN 3:6!6 +1JN 3:6!7 +1JN 3:6!8 +1JN 3:6!9 +1JN 3:6!10 +1JN 3:6!11 +1JN 3:6!12 +1JN 3:6!13 +1JN 3:6!14 +1JN 3:6!15 +1JN 3:6!16 +1JN 3:7!1 +1JN 3:7!2 +1JN 3:7!3 +1JN 3:7!4 +1JN 3:7!5 +1JN 3:7!6 +1JN 3:7!7 +1JN 3:7!8 +1JN 3:7!9 +1JN 3:7!10 +1JN 3:7!11 +1JN 3:7!12 +1JN 3:7!13 +1JN 3:7!14 +1JN 3:8!1 +1JN 3:8!2 +1JN 3:8!3 +1JN 3:8!4 +1JN 3:8!5 +1JN 3:8!6 +1JN 3:8!7 +1JN 3:8!8 +1JN 3:8!9 +1JN 3:8!10 +1JN 3:8!11 +1JN 3:8!12 +1JN 3:8!13 +1JN 3:8!14 +1JN 3:8!15 +1JN 3:8!16 +1JN 3:8!17 +1JN 3:8!18 +1JN 3:8!19 +1JN 3:8!20 +1JN 3:8!21 +1JN 3:8!22 +1JN 3:8!23 +1JN 3:8!24 +1JN 3:8!25 +1JN 3:8!26 +1JN 3:8!27 +1JN 3:9!1 +1JN 3:9!2 +1JN 3:9!3 +1JN 3:9!4 +1JN 3:9!5 +1JN 3:9!6 +1JN 3:9!7 +1JN 3:9!8 +1JN 3:9!9 +1JN 3:9!10 +1JN 3:9!11 +1JN 3:9!12 +1JN 3:9!13 +1JN 3:9!14 +1JN 3:9!15 +1JN 3:9!16 +1JN 3:9!17 +1JN 3:9!18 +1JN 3:9!19 +1JN 3:9!20 +1JN 3:9!21 +1JN 3:9!22 +1JN 3:9!23 +1JN 3:9!24 +1JN 3:10!1 +1JN 3:10!2 +1JN 3:10!3 +1JN 3:10!4 +1JN 3:10!5 +1JN 3:10!6 +1JN 3:10!7 +1JN 3:10!8 +1JN 3:10!9 +1JN 3:10!10 +1JN 3:10!11 +1JN 3:10!12 +1JN 3:10!13 +1JN 3:10!14 +1JN 3:10!15 +1JN 3:10!16 +1JN 3:10!17 +1JN 3:10!18 +1JN 3:10!19 +1JN 3:10!20 +1JN 3:10!21 +1JN 3:10!22 +1JN 3:10!23 +1JN 3:10!24 +1JN 3:10!25 +1JN 3:10!26 +1JN 3:10!27 +1JN 3:10!28 +1JN 3:10!29 +1JN 3:10!30 +1JN 3:11!1 +1JN 3:11!2 +1JN 3:11!3 +1JN 3:11!4 +1JN 3:11!5 +1JN 3:11!6 +1JN 3:11!7 +1JN 3:11!8 +1JN 3:11!9 +1JN 3:11!10 +1JN 3:11!11 +1JN 3:11!12 +1JN 3:12!1 +1JN 3:12!2 +1JN 3:12!3 +1JN 3:12!4 +1JN 3:12!5 +1JN 3:12!6 +1JN 3:12!7 +1JN 3:12!8 +1JN 3:12!9 +1JN 3:12!10 +1JN 3:12!11 +1JN 3:12!12 +1JN 3:12!13 +1JN 3:12!14 +1JN 3:12!15 +1JN 3:12!16 +1JN 3:12!17 +1JN 3:12!18 +1JN 3:12!19 +1JN 3:12!20 +1JN 3:12!21 +1JN 3:12!22 +1JN 3:12!23 +1JN 3:12!25 +1JN 3:12!24 +1JN 3:12!26 +1JN 3:12!27 +1JN 3:12!28 +1JN 3:12!29 +1JN 3:13!3 +1JN 3:13!1 +1JN 3:13!2 +1JN 3:13!4 +1JN 3:13!5 +1JN 3:13!6 +1JN 3:13!7 +1JN 3:13!8 +1JN 3:14!1 +1JN 3:14!2 +1JN 3:14!3 +1JN 3:14!4 +1JN 3:14!5 +1JN 3:14!6 +1JN 3:14!7 +1JN 3:14!8 +1JN 3:14!9 +1JN 3:14!10 +1JN 3:14!11 +1JN 3:14!12 +1JN 3:14!13 +1JN 3:14!14 +1JN 3:14!15 +1JN 3:14!16 +1JN 3:14!17 +1JN 3:14!18 +1JN 3:14!19 +1JN 3:14!20 +1JN 3:14!21 +1JN 3:15!1 +1JN 3:15!2 +1JN 3:15!3 +1JN 3:15!4 +1JN 3:15!5 +1JN 3:15!6 +1JN 3:15!7 +1JN 3:15!8 +1JN 3:15!9 +1JN 3:15!10 +1JN 3:15!11 +1JN 3:15!12 +1JN 3:15!13 +1JN 3:15!14 +1JN 3:15!15 +1JN 3:15!16 +1JN 3:15!17 +1JN 3:15!18 +1JN 3:15!19 +1JN 3:15!20 +1JN 3:16!1 +1JN 3:16!2 +1JN 3:16!3 +1JN 3:16!4 +1JN 3:16!5 +1JN 3:16!6 +1JN 3:16!7 +1JN 3:16!8 +1JN 3:16!9 +1JN 3:16!10 +1JN 3:16!11 +1JN 3:16!12 +1JN 3:16!13 +1JN 3:16!14 +1JN 3:16!15 +1JN 3:16!16 +1JN 3:16!17 +1JN 3:16!18 +1JN 3:16!19 +1JN 3:16!20 +1JN 3:16!21 +1JN 3:16!22 +1JN 3:17!2 +1JN 3:17!3 +1JN 3:17!1 +1JN 3:17!4 +1JN 3:17!5 +1JN 3:17!6 +1JN 3:17!7 +1JN 3:17!8 +1JN 3:17!9 +1JN 3:17!10 +1JN 3:17!11 +1JN 3:17!12 +1JN 3:17!13 +1JN 3:17!14 +1JN 3:17!15 +1JN 3:17!16 +1JN 3:17!17 +1JN 3:17!18 +1JN 3:17!19 +1JN 3:17!20 +1JN 3:17!21 +1JN 3:17!22 +1JN 3:17!23 +1JN 3:17!24 +1JN 3:17!25 +1JN 3:17!26 +1JN 3:17!27 +1JN 3:17!28 +1JN 3:17!29 +1JN 3:17!30 +1JN 3:18!1 +1JN 3:18!3 +1JN 3:18!2 +1JN 3:18!4 +1JN 3:18!5 +1JN 3:18!6 +1JN 3:18!7 +1JN 3:18!8 +1JN 3:18!9 +1JN 3:18!10 +1JN 3:18!11 +1JN 3:18!12 +1JN 3:19!1 +1JN 3:19!2 +1JN 3:19!3 +1JN 3:19!4 +1JN 3:19!5 +1JN 3:19!6 +1JN 3:19!7 +1JN 3:19!8 +1JN 3:19!9 +1JN 3:19!10 +1JN 3:19!11 +1JN 3:19!12 +1JN 3:19!13 +1JN 3:19!14 +1JN 3:19!15 +1JN 3:20!1 +1JN 3:20!2 +1JN 3:20!3 +1JN 3:20!4 +1JN 3:20!5 +1JN 3:20!6 +1JN 3:20!7 +1JN 3:20!8 +1JN 3:20!9 +1JN 3:20!10 +1JN 3:20!11 +1JN 3:20!12 +1JN 3:20!13 +1JN 3:20!14 +1JN 3:20!15 +1JN 3:20!16 +1JN 3:20!17 +1JN 3:21!1 +1JN 3:21!2 +1JN 3:21!3 +1JN 3:21!4 +1JN 3:21!5 +1JN 3:21!6 +1JN 3:21!7 +1JN 3:21!8 +1JN 3:21!9 +1JN 3:21!10 +1JN 3:21!11 +1JN 3:22!1 +1JN 3:22!3 +1JN 3:22!2 +1JN 3:22!4 +1JN 3:22!5 +1JN 3:22!6 +1JN 3:22!7 +1JN 3:22!8 +1JN 3:22!9 +1JN 3:22!10 +1JN 3:22!11 +1JN 3:22!12 +1JN 3:22!13 +1JN 3:22!14 +1JN 3:22!15 +1JN 3:22!16 +1JN 3:22!17 +1JN 3:22!18 +1JN 3:23!1 +1JN 3:23!2 +1JN 3:23!3 +1JN 3:23!4 +1JN 3:23!5 +1JN 3:23!6 +1JN 3:23!7 +1JN 3:23!8 +1JN 3:23!9 +1JN 3:23!10 +1JN 3:23!11 +1JN 3:23!12 +1JN 3:23!13 +1JN 3:23!14 +1JN 3:23!15 +1JN 3:23!16 +1JN 3:23!17 +1JN 3:23!18 +1JN 3:23!19 +1JN 3:23!20 +1JN 3:23!21 +1JN 3:23!22 +1JN 3:24!1 +1JN 3:24!2 +1JN 3:24!3 +1JN 3:24!4 +1JN 3:24!5 +1JN 3:24!6 +1JN 3:24!7 +1JN 3:24!8 +1JN 3:24!9 +1JN 3:24!10 +1JN 3:24!11 +1JN 3:24!12 +1JN 3:24!13 +1JN 3:24!14 +1JN 3:24!15 +1JN 3:24!16 +1JN 3:24!17 +1JN 3:24!18 +1JN 3:24!19 +1JN 3:24!20 +1JN 3:24!21 +1JN 3:24!22 +1JN 3:24!23 +1JN 3:24!24 +1JN 3:24!25 +1JN 3:24!26 +1JN 3:24!27 +1JN 4:1!1 +1JN 4:1!2 +1JN 4:1!3 +1JN 4:1!4 +1JN 4:1!5 +1JN 4:1!6 +1JN 4:1!7 +1JN 4:1!8 +1JN 4:1!9 +1JN 4:1!10 +1JN 4:1!11 +1JN 4:1!12 +1JN 4:1!13 +1JN 4:1!14 +1JN 4:1!15 +1JN 4:1!16 +1JN 4:1!17 +1JN 4:1!18 +1JN 4:1!19 +1JN 4:1!20 +1JN 4:1!21 +1JN 4:2!1 +1JN 4:2!2 +1JN 4:2!3 +1JN 4:2!4 +1JN 4:2!5 +1JN 4:2!6 +1JN 4:2!7 +1JN 4:2!8 +1JN 4:2!9 +1JN 4:2!10 +1JN 4:2!11 +1JN 4:2!12 +1JN 4:2!13 +1JN 4:2!14 +1JN 4:2!15 +1JN 4:2!16 +1JN 4:2!17 +1JN 4:2!18 +1JN 4:2!19 +1JN 4:2!20 +1JN 4:3!1 +1JN 4:3!2 +1JN 4:3!3 +1JN 4:3!4 +1JN 4:3!5 +1JN 4:3!6 +1JN 4:3!7 +1JN 4:3!8 +1JN 4:3!9 +1JN 4:3!10 +1JN 4:3!11 +1JN 4:3!12 +1JN 4:3!13 +1JN 4:3!14 +1JN 4:3!15 +1JN 4:3!16 +1JN 4:3!17 +1JN 4:3!18 +1JN 4:3!19 +1JN 4:3!20 +1JN 4:3!21 +1JN 4:3!22 +1JN 4:3!23 +1JN 4:3!24 +1JN 4:3!25 +1JN 4:3!26 +1JN 4:3!27 +1JN 4:3!28 +1JN 4:3!29 +1JN 4:3!30 +1JN 4:4!6 +1JN 4:4!1 +1JN 4:4!2 +1JN 4:4!3 +1JN 4:4!4 +1JN 4:4!5 +1JN 4:4!7 +1JN 4:4!8 +1JN 4:4!9 +1JN 4:4!10 +1JN 4:4!11 +1JN 4:4!12 +1JN 4:4!13 +1JN 4:4!14 +1JN 4:4!15 +1JN 4:4!16 +1JN 4:4!17 +1JN 4:4!18 +1JN 4:4!19 +1JN 4:4!20 +1JN 4:5!1 +1JN 4:5!2 +1JN 4:5!3 +1JN 4:5!4 +1JN 4:5!5 +1JN 4:5!6 +1JN 4:5!7 +1JN 4:5!8 +1JN 4:5!9 +1JN 4:5!10 +1JN 4:5!11 +1JN 4:5!12 +1JN 4:5!13 +1JN 4:5!14 +1JN 4:5!15 +1JN 4:5!16 +1JN 4:6!1 +1JN 4:6!2 +1JN 4:6!3 +1JN 4:6!4 +1JN 4:6!5 +1JN 4:6!6 +1JN 4:6!7 +1JN 4:6!8 +1JN 4:6!9 +1JN 4:6!10 +1JN 4:6!11 +1JN 4:6!12 +1JN 4:6!13 +1JN 4:6!14 +1JN 4:6!15 +1JN 4:6!16 +1JN 4:6!17 +1JN 4:6!18 +1JN 4:6!19 +1JN 4:6!20 +1JN 4:6!21 +1JN 4:6!22 +1JN 4:6!23 +1JN 4:6!24 +1JN 4:6!25 +1JN 4:6!26 +1JN 4:6!27 +1JN 4:6!28 +1JN 4:6!29 +1JN 4:6!30 +1JN 4:6!31 +1JN 4:6!32 +1JN 4:7!1 +1JN 4:7!2 +1JN 4:7!3 +1JN 4:7!4 +1JN 4:7!5 +1JN 4:7!6 +1JN 4:7!7 +1JN 4:7!8 +1JN 4:7!9 +1JN 4:7!10 +1JN 4:7!11 +1JN 4:7!12 +1JN 4:7!13 +1JN 4:7!14 +1JN 4:7!15 +1JN 4:7!16 +1JN 4:7!17 +1JN 4:7!18 +1JN 4:7!19 +1JN 4:7!20 +1JN 4:7!21 +1JN 4:7!22 +1JN 4:8!1 +1JN 4:8!2 +1JN 4:8!3 +1JN 4:8!4 +1JN 4:8!5 +1JN 4:8!6 +1JN 4:8!7 +1JN 4:8!8 +1JN 4:8!9 +1JN 4:8!10 +1JN 4:8!11 +1JN 4:8!12 +1JN 4:9!1 +1JN 4:9!2 +1JN 4:9!3 +1JN 4:9!4 +1JN 4:9!5 +1JN 4:9!6 +1JN 4:9!7 +1JN 4:9!8 +1JN 4:9!9 +1JN 4:9!10 +1JN 4:9!11 +1JN 4:9!12 +1JN 4:9!13 +1JN 4:9!14 +1JN 4:9!15 +1JN 4:9!16 +1JN 4:9!17 +1JN 4:9!18 +1JN 4:9!19 +1JN 4:9!20 +1JN 4:9!21 +1JN 4:9!22 +1JN 4:9!23 +1JN 4:9!24 +1JN 4:9!25 +1JN 4:10!1 +1JN 4:10!2 +1JN 4:10!3 +1JN 4:10!4 +1JN 4:10!5 +1JN 4:10!6 +1JN 4:10!7 +1JN 4:10!8 +1JN 4:10!9 +1JN 4:10!10 +1JN 4:10!11 +1JN 4:10!12 +1JN 4:10!13 +1JN 4:10!14 +1JN 4:10!15 +1JN 4:10!16 +1JN 4:10!17 +1JN 4:10!18 +1JN 4:10!19 +1JN 4:10!20 +1JN 4:10!21 +1JN 4:10!22 +1JN 4:10!23 +1JN 4:10!24 +1JN 4:10!25 +1JN 4:10!26 +1JN 4:11!1 +1JN 4:11!2 +1JN 4:11!3 +1JN 4:11!4 +1JN 4:11!5 +1JN 4:11!6 +1JN 4:11!7 +1JN 4:11!8 +1JN 4:11!9 +1JN 4:11!10 +1JN 4:11!11 +1JN 4:11!12 +1JN 4:12!1 +1JN 4:12!2 +1JN 4:12!3 +1JN 4:12!4 +1JN 4:12!5 +1JN 4:12!6 +1JN 4:12!7 +1JN 4:12!8 +1JN 4:12!9 +1JN 4:12!10 +1JN 4:12!11 +1JN 4:12!12 +1JN 4:12!13 +1JN 4:12!14 +1JN 4:12!15 +1JN 4:12!16 +1JN 4:12!18 +1JN 4:12!19 +1JN 4:12!17 +1JN 4:12!20 +1JN 4:13!1 +1JN 4:13!2 +1JN 4:13!3 +1JN 4:13!4 +1JN 4:13!5 +1JN 4:13!6 +1JN 4:13!7 +1JN 4:13!8 +1JN 4:13!9 +1JN 4:13!10 +1JN 4:13!11 +1JN 4:13!12 +1JN 4:13!13 +1JN 4:13!14 +1JN 4:13!15 +1JN 4:13!16 +1JN 4:13!17 +1JN 4:13!18 +1JN 4:14!1 +1JN 4:14!2 +1JN 4:14!3 +1JN 4:14!4 +1JN 4:14!5 +1JN 4:14!6 +1JN 4:14!7 +1JN 4:14!8 +1JN 4:14!9 +1JN 4:14!10 +1JN 4:14!11 +1JN 4:14!12 +1JN 4:14!13 +1JN 4:14!14 +1JN 4:15!2 +1JN 4:15!1 +1JN 4:15!3 +1JN 4:15!4 +1JN 4:15!5 +1JN 4:15!6 +1JN 4:15!7 +1JN 4:15!8 +1JN 4:15!9 +1JN 4:15!10 +1JN 4:15!11 +1JN 4:15!12 +1JN 4:15!13 +1JN 4:15!14 +1JN 4:15!15 +1JN 4:15!16 +1JN 4:15!17 +1JN 4:15!18 +1JN 4:15!19 +1JN 4:15!20 +1JN 4:16!1 +1JN 4:16!2 +1JN 4:16!3 +1JN 4:16!4 +1JN 4:16!5 +1JN 4:16!6 +1JN 4:16!7 +1JN 4:16!8 +1JN 4:16!9 +1JN 4:16!10 +1JN 4:16!11 +1JN 4:16!12 +1JN 4:16!13 +1JN 4:16!14 +1JN 4:16!15 +1JN 4:16!16 +1JN 4:16!17 +1JN 4:16!18 +1JN 4:16!19 +1JN 4:16!20 +1JN 4:16!21 +1JN 4:16!22 +1JN 4:16!23 +1JN 4:16!24 +1JN 4:16!25 +1JN 4:16!26 +1JN 4:16!27 +1JN 4:16!28 +1JN 4:16!29 +1JN 4:16!30 +1JN 4:16!31 +1JN 4:16!32 +1JN 4:16!33 +1JN 4:17!1 +1JN 4:17!2 +1JN 4:17!3 +1JN 4:17!4 +1JN 4:17!5 +1JN 4:17!6 +1JN 4:17!7 +1JN 4:17!8 +1JN 4:17!9 +1JN 4:17!10 +1JN 4:17!11 +1JN 4:17!12 +1JN 4:17!13 +1JN 4:17!14 +1JN 4:17!15 +1JN 4:17!16 +1JN 4:17!17 +1JN 4:17!18 +1JN 4:17!19 +1JN 4:17!20 +1JN 4:17!21 +1JN 4:17!22 +1JN 4:17!23 +1JN 4:17!24 +1JN 4:17!25 +1JN 4:17!26 +1JN 4:18!1 +1JN 4:18!2 +1JN 4:18!3 +1JN 4:18!4 +1JN 4:18!5 +1JN 4:18!6 +1JN 4:18!7 +1JN 4:18!8 +1JN 4:18!9 +1JN 4:18!10 +1JN 4:18!11 +1JN 4:18!12 +1JN 4:18!13 +1JN 4:18!14 +1JN 4:18!15 +1JN 4:18!16 +1JN 4:18!17 +1JN 4:18!18 +1JN 4:18!19 +1JN 4:18!21 +1JN 4:18!20 +1JN 4:18!22 +1JN 4:18!23 +1JN 4:18!24 +1JN 4:18!25 +1JN 4:18!26 +1JN 4:18!27 +1JN 4:19!1 +1JN 4:19!2 +1JN 4:19!3 +1JN 4:19!4 +1JN 4:19!5 +1JN 4:19!6 +1JN 4:19!7 +1JN 4:20!1 +1JN 4:20!2 +1JN 4:20!3 +1JN 4:20!4 +1JN 4:20!5 +1JN 4:20!6 +1JN 4:20!7 +1JN 4:20!8 +1JN 4:20!9 +1JN 4:20!10 +1JN 4:20!11 +1JN 4:20!12 +1JN 4:20!13 +1JN 4:20!14 +1JN 4:20!16 +1JN 4:20!15 +1JN 4:20!17 +1JN 4:20!18 +1JN 4:20!19 +1JN 4:20!20 +1JN 4:20!21 +1JN 4:20!22 +1JN 4:20!23 +1JN 4:20!29 +1JN 4:20!30 +1JN 4:20!24 +1JN 4:20!25 +1JN 4:20!26 +1JN 4:20!27 +1JN 4:20!28 +1JN 4:20!31 +1JN 4:21!1 +1JN 4:21!2 +1JN 4:21!3 +1JN 4:21!4 +1JN 4:21!5 +1JN 4:21!6 +1JN 4:21!7 +1JN 4:21!8 +1JN 4:21!9 +1JN 4:21!10 +1JN 4:21!11 +1JN 4:21!12 +1JN 4:21!13 +1JN 4:21!14 +1JN 4:21!15 +1JN 4:21!16 +1JN 4:21!17 +1JN 5:1!1 +1JN 5:1!2 +1JN 5:1!3 +1JN 5:1!4 +1JN 5:1!5 +1JN 5:1!6 +1JN 5:1!7 +1JN 5:1!8 +1JN 5:1!9 +1JN 5:1!10 +1JN 5:1!11 +1JN 5:1!12 +1JN 5:1!13 +1JN 5:1!14 +1JN 5:1!15 +1JN 5:1!16 +1JN 5:1!17 +1JN 5:1!18 +1JN 5:1!19 +1JN 5:1!20 +1JN 5:1!21 +1JN 5:1!22 +1JN 5:1!23 +1JN 5:2!1 +1JN 5:2!2 +1JN 5:2!3 +1JN 5:2!4 +1JN 5:2!5 +1JN 5:2!6 +1JN 5:2!7 +1JN 5:2!8 +1JN 5:2!9 +1JN 5:2!10 +1JN 5:2!11 +1JN 5:2!12 +1JN 5:2!13 +1JN 5:2!14 +1JN 5:2!15 +1JN 5:2!16 +1JN 5:2!17 +1JN 5:2!18 +1JN 5:3!2 +1JN 5:3!1 +1JN 5:3!3 +1JN 5:3!4 +1JN 5:3!5 +1JN 5:3!6 +1JN 5:3!7 +1JN 5:3!8 +1JN 5:3!9 +1JN 5:3!10 +1JN 5:3!11 +1JN 5:3!12 +1JN 5:3!13 +1JN 5:3!14 +1JN 5:3!15 +1JN 5:3!16 +1JN 5:3!17 +1JN 5:3!18 +1JN 5:3!19 +1JN 5:4!1 +1JN 5:4!2 +1JN 5:4!3 +1JN 5:4!4 +1JN 5:4!5 +1JN 5:4!6 +1JN 5:4!7 +1JN 5:4!8 +1JN 5:4!9 +1JN 5:4!10 +1JN 5:4!11 +1JN 5:4!12 +1JN 5:4!13 +1JN 5:4!14 +1JN 5:4!15 +1JN 5:4!16 +1JN 5:4!17 +1JN 5:4!18 +1JN 5:4!19 +1JN 5:4!20 +1JN 5:4!21 +1JN 5:4!22 +1JN 5:5!1 +1JN 5:5!2 +1JN 5:5!3 +1JN 5:5!4 +1JN 5:5!5 +1JN 5:5!6 +1JN 5:5!7 +1JN 5:5!8 +1JN 5:5!9 +1JN 5:5!10 +1JN 5:5!11 +1JN 5:5!12 +1JN 5:5!13 +1JN 5:5!14 +1JN 5:5!15 +1JN 5:5!16 +1JN 5:5!17 +1JN 5:6!1 +1JN 5:6!2 +1JN 5:6!3 +1JN 5:6!4 +1JN 5:6!5 +1JN 5:6!6 +1JN 5:6!7 +1JN 5:6!8 +1JN 5:6!9 +1JN 5:6!10 +1JN 5:6!11 +1JN 5:6!12 +1JN 5:6!13 +1JN 5:6!14 +1JN 5:6!15 +1JN 5:6!16 +1JN 5:6!17 +1JN 5:6!18 +1JN 5:6!19 +1JN 5:6!20 +1JN 5:6!21 +1JN 5:6!22 +1JN 5:6!23 +1JN 5:6!24 +1JN 5:6!25 +1JN 5:6!26 +1JN 5:6!27 +1JN 5:6!28 +1JN 5:6!29 +1JN 5:6!30 +1JN 5:6!31 +1JN 5:6!32 +1JN 5:6!33 +1JN 5:6!34 +1JN 5:6!35 +1JN 5:7!1 +1JN 5:7!2 +1JN 5:7!3 +1JN 5:7!4 +1JN 5:7!5 +1JN 5:8!1 +1JN 5:8!2 +1JN 5:8!3 +1JN 5:8!4 +1JN 5:8!5 +1JN 5:8!6 +1JN 5:8!7 +1JN 5:8!8 +1JN 5:8!9 +1JN 5:8!10 +1JN 5:8!11 +1JN 5:8!12 +1JN 5:8!13 +1JN 5:8!14 +1JN 5:8!15 +1JN 5:9!1 +1JN 5:9!2 +1JN 5:9!3 +1JN 5:9!4 +1JN 5:9!5 +1JN 5:9!6 +1JN 5:9!7 +1JN 5:9!8 +1JN 5:9!9 +1JN 5:9!10 +1JN 5:9!11 +1JN 5:9!12 +1JN 5:9!13 +1JN 5:9!14 +1JN 5:9!15 +1JN 5:9!16 +1JN 5:9!17 +1JN 5:9!18 +1JN 5:9!19 +1JN 5:9!20 +1JN 5:9!21 +1JN 5:9!22 +1JN 5:9!23 +1JN 5:9!24 +1JN 5:9!25 +1JN 5:10!1 +1JN 5:10!2 +1JN 5:10!3 +1JN 5:10!4 +1JN 5:10!5 +1JN 5:10!6 +1JN 5:10!7 +1JN 5:10!8 +1JN 5:10!9 +1JN 5:10!10 +1JN 5:10!11 +1JN 5:10!12 +1JN 5:10!13 +1JN 5:10!14 +1JN 5:10!15 +1JN 5:10!16 +1JN 5:10!17 +1JN 5:10!18 +1JN 5:10!19 +1JN 5:10!20 +1JN 5:10!21 +1JN 5:10!22 +1JN 5:10!23 +1JN 5:10!24 +1JN 5:10!25 +1JN 5:10!26 +1JN 5:10!27 +1JN 5:10!28 +1JN 5:10!29 +1JN 5:10!30 +1JN 5:10!31 +1JN 5:10!32 +1JN 5:10!33 +1JN 5:10!34 +1JN 5:11!1 +1JN 5:11!2 +1JN 5:11!3 +1JN 5:11!4 +1JN 5:11!5 +1JN 5:11!6 +1JN 5:11!7 +1JN 5:11!8 +1JN 5:11!9 +1JN 5:11!10 +1JN 5:11!11 +1JN 5:11!12 +1JN 5:11!13 +1JN 5:11!14 +1JN 5:11!15 +1JN 5:11!16 +1JN 5:11!17 +1JN 5:11!18 +1JN 5:11!19 +1JN 5:11!20 +1JN 5:11!21 +1JN 5:12!1 +1JN 5:12!2 +1JN 5:12!3 +1JN 5:12!4 +1JN 5:12!5 +1JN 5:12!6 +1JN 5:12!7 +1JN 5:12!8 +1JN 5:12!9 +1JN 5:12!10 +1JN 5:12!11 +1JN 5:12!12 +1JN 5:12!13 +1JN 5:12!14 +1JN 5:12!15 +1JN 5:12!16 +1JN 5:12!17 +1JN 5:12!18 +1JN 5:13!1 +1JN 5:13!2 +1JN 5:13!3 +1JN 5:13!10 +1JN 5:13!11 +1JN 5:13!12 +1JN 5:13!13 +1JN 5:13!14 +1JN 5:13!15 +1JN 5:13!16 +1JN 5:13!17 +1JN 5:13!18 +1JN 5:13!4 +1JN 5:13!5 +1JN 5:13!6 +1JN 5:13!7 +1JN 5:13!9 +1JN 5:13!8 +1JN 5:14!1 +1JN 5:14!2 +1JN 5:14!3 +1JN 5:14!4 +1JN 5:14!5 +1JN 5:14!6 +1JN 5:14!7 +1JN 5:14!8 +1JN 5:14!9 +1JN 5:14!10 +1JN 5:14!11 +1JN 5:14!12 +1JN 5:14!13 +1JN 5:14!14 +1JN 5:14!15 +1JN 5:14!16 +1JN 5:14!17 +1JN 5:14!18 +1JN 5:14!19 +1JN 5:15!1 +1JN 5:15!2 +1JN 5:15!3 +1JN 5:15!4 +1JN 5:15!5 +1JN 5:15!6 +1JN 5:15!8 +1JN 5:15!7 +1JN 5:15!9 +1JN 5:15!10 +1JN 5:15!11 +1JN 5:15!12 +1JN 5:15!13 +1JN 5:15!14 +1JN 5:15!15 +1JN 5:15!16 +1JN 5:15!17 +1JN 5:15!18 +1JN 5:16!1 +1JN 5:16!2 +1JN 5:16!3 +1JN 5:16!4 +1JN 5:16!5 +1JN 5:16!6 +1JN 5:16!7 +1JN 5:16!8 +1JN 5:16!9 +1JN 5:16!10 +1JN 5:16!11 +1JN 5:16!12 +1JN 5:16!13 +1JN 5:16!14 +1JN 5:16!16 +1JN 5:16!15 +1JN 5:16!17 +1JN 5:16!18 +1JN 5:16!19 +1JN 5:16!20 +1JN 5:16!21 +1JN 5:16!22 +1JN 5:16!23 +1JN 5:16!24 +1JN 5:16!25 +1JN 5:16!26 +1JN 5:16!27 +1JN 5:16!28 +1JN 5:16!29 +1JN 5:16!30 +1JN 5:16!31 +1JN 5:17!1 +1JN 5:17!2 +1JN 5:17!3 +1JN 5:17!4 +1JN 5:17!5 +1JN 5:17!6 +1JN 5:17!7 +1JN 5:17!8 +1JN 5:17!9 +1JN 5:17!10 +1JN 5:18!1 +1JN 5:18!2 +1JN 5:18!3 +1JN 5:18!4 +1JN 5:18!5 +1JN 5:18!6 +1JN 5:18!7 +1JN 5:18!8 +1JN 5:18!9 +1JN 5:18!10 +1JN 5:18!11 +1JN 5:18!12 +1JN 5:18!13 +1JN 5:18!14 +1JN 5:18!15 +1JN 5:18!16 +1JN 5:18!17 +1JN 5:18!18 +1JN 5:18!19 +1JN 5:18!20 +1JN 5:18!21 +1JN 5:18!22 +1JN 5:18!23 +1JN 5:18!24 +1JN 5:19!1 +1JN 5:19!2 +1JN 5:19!3 +1JN 5:19!4 +1JN 5:19!5 +1JN 5:19!6 +1JN 5:19!7 +1JN 5:19!8 +1JN 5:19!9 +1JN 5:19!10 +1JN 5:19!11 +1JN 5:19!12 +1JN 5:19!13 +1JN 5:19!14 +1JN 5:20!2 +1JN 5:20!1 +1JN 5:20!3 +1JN 5:20!4 +1JN 5:20!5 +1JN 5:20!6 +1JN 5:20!7 +1JN 5:20!8 +1JN 5:20!9 +1JN 5:20!10 +1JN 5:20!11 +1JN 5:20!12 +1JN 5:20!13 +1JN 5:20!14 +1JN 5:20!15 +1JN 5:20!16 +1JN 5:20!17 +1JN 5:20!18 +1JN 5:20!19 +1JN 5:20!20 +1JN 5:20!21 +1JN 5:20!22 +1JN 5:20!23 +1JN 5:20!24 +1JN 5:20!25 +1JN 5:20!26 +1JN 5:20!27 +1JN 5:20!28 +1JN 5:20!29 +1JN 5:20!30 +1JN 5:20!31 +1JN 5:20!32 +1JN 5:20!33 +1JN 5:20!34 +1JN 5:20!35 +1JN 5:21!1 +1JN 5:21!2 +1JN 5:21!3 +1JN 5:21!4 +1JN 5:21!5 +1JN 5:21!6 +2JN 1:1!1 +2JN 1:1!2 +2JN 1:1!3 +2JN 1:1!4 +2JN 1:1!5 +2JN 1:1!6 +2JN 1:1!7 +2JN 1:1!8 +2JN 1:1!9 +2JN 1:1!11 +2JN 1:1!12 +2JN 1:1!13 +2JN 1:1!10 +2JN 1:1!14 +2JN 1:1!15 +2JN 1:1!16 +2JN 1:1!17 +2JN 1:1!18 +2JN 1:1!19 +2JN 1:1!20 +2JN 1:1!21 +2JN 1:1!22 +2JN 1:1!23 +2JN 1:1!24 +2JN 1:2!1 +2JN 1:2!2 +2JN 1:2!3 +2JN 1:2!4 +2JN 1:2!5 +2JN 1:2!6 +2JN 1:2!7 +2JN 1:2!8 +2JN 1:2!9 +2JN 1:2!10 +2JN 1:2!11 +2JN 1:2!12 +2JN 1:2!13 +2JN 1:2!14 +2JN 1:3!1 +2JN 1:3!2 +2JN 1:3!3 +2JN 1:3!4 +2JN 1:3!5 +2JN 1:3!6 +2JN 1:3!7 +2JN 1:3!8 +2JN 1:3!9 +2JN 1:3!10 +2JN 1:3!11 +2JN 1:3!12 +2JN 1:3!13 +2JN 1:3!14 +2JN 1:3!15 +2JN 1:3!16 +2JN 1:3!17 +2JN 1:3!18 +2JN 1:3!19 +2JN 1:3!20 +2JN 1:3!21 +2JN 1:4!1 +2JN 1:4!2 +2JN 1:4!3 +2JN 1:4!4 +2JN 1:4!5 +2JN 1:4!6 +2JN 1:4!7 +2JN 1:4!8 +2JN 1:4!9 +2JN 1:4!10 +2JN 1:4!11 +2JN 1:4!12 +2JN 1:4!13 +2JN 1:4!14 +2JN 1:4!15 +2JN 1:4!16 +2JN 1:4!17 +2JN 1:5!1 +2JN 1:5!5 +2JN 1:5!2 +2JN 1:5!3 +2JN 1:5!4 +2JN 1:5!9 +2JN 1:5!10 +2JN 1:5!6 +2JN 1:5!7 +2JN 1:5!8 +2JN 1:5!11 +2JN 1:5!12 +2JN 1:5!13 +2JN 1:5!14 +2JN 1:5!15 +2JN 1:5!16 +2JN 1:5!17 +2JN 1:5!18 +2JN 1:5!19 +2JN 1:6!1 +2JN 1:6!2 +2JN 1:6!3 +2JN 1:6!4 +2JN 1:6!5 +2JN 1:6!6 +2JN 1:6!7 +2JN 1:6!8 +2JN 1:6!9 +2JN 1:6!10 +2JN 1:6!11 +2JN 1:6!12 +2JN 1:6!13 +2JN 1:6!14 +2JN 1:6!15 +2JN 1:6!16 +2JN 1:6!17 +2JN 1:6!18 +2JN 1:6!19 +2JN 1:6!20 +2JN 1:6!21 +2JN 1:6!22 +2JN 1:6!23 +2JN 1:7!1 +2JN 1:7!4 +2JN 1:7!5 +2JN 1:7!6 +2JN 1:7!7 +2JN 1:7!2 +2JN 1:7!3 +2JN 1:7!8 +2JN 1:7!9 +2JN 1:7!10 +2JN 1:7!11 +2JN 1:7!12 +2JN 1:7!13 +2JN 1:7!14 +2JN 1:7!15 +2JN 1:7!16 +2JN 1:7!17 +2JN 1:7!18 +2JN 1:7!19 +2JN 1:7!20 +2JN 1:7!21 +2JN 1:7!22 +2JN 1:8!1 +2JN 1:8!2 +2JN 1:8!3 +2JN 1:8!4 +2JN 1:8!5 +2JN 1:8!6 +2JN 1:8!7 +2JN 1:8!8 +2JN 1:8!9 +2JN 1:8!10 +2JN 1:8!11 +2JN 1:9!1 +2JN 1:9!2 +2JN 1:9!3 +2JN 1:9!4 +2JN 1:9!5 +2JN 1:9!6 +2JN 1:9!7 +2JN 1:9!8 +2JN 1:9!9 +2JN 1:9!10 +2JN 1:9!11 +2JN 1:9!12 +2JN 1:9!13 +2JN 1:9!14 +2JN 1:9!15 +2JN 1:9!16 +2JN 1:9!17 +2JN 1:9!18 +2JN 1:9!19 +2JN 1:9!20 +2JN 1:9!21 +2JN 1:9!22 +2JN 1:9!23 +2JN 1:9!24 +2JN 1:9!25 +2JN 1:9!26 +2JN 1:9!27 +2JN 1:10!1 +2JN 1:10!2 +2JN 1:10!3 +2JN 1:10!4 +2JN 1:10!5 +2JN 1:10!6 +2JN 1:10!7 +2JN 1:10!8 +2JN 1:10!9 +2JN 1:10!10 +2JN 1:10!11 +2JN 1:10!12 +2JN 1:10!13 +2JN 1:10!14 +2JN 1:10!15 +2JN 1:10!16 +2JN 1:10!17 +2JN 1:10!18 +2JN 1:10!19 +2JN 1:10!20 +2JN 1:10!21 +2JN 1:11!3 +2JN 1:11!1 +2JN 1:11!2 +2JN 1:11!4 +2JN 1:11!5 +2JN 1:11!6 +2JN 1:11!7 +2JN 1:11!8 +2JN 1:11!9 +2JN 1:11!10 +2JN 1:11!11 +2JN 1:12!2 +2JN 1:12!1 +2JN 1:12!3 +2JN 1:12!4 +2JN 1:12!5 +2JN 1:12!6 +2JN 1:12!7 +2JN 1:12!8 +2JN 1:12!9 +2JN 1:12!10 +2JN 1:12!11 +2JN 1:12!12 +2JN 1:12!13 +2JN 1:12!14 +2JN 1:12!15 +2JN 1:12!16 +2JN 1:12!17 +2JN 1:12!18 +2JN 1:12!19 +2JN 1:12!20 +2JN 1:12!21 +2JN 1:12!22 +2JN 1:12!23 +2JN 1:12!24 +2JN 1:12!25 +2JN 1:12!26 +2JN 1:13!1 +2JN 1:13!2 +2JN 1:13!3 +2JN 1:13!4 +2JN 1:13!5 +2JN 1:13!6 +2JN 1:13!7 +2JN 1:13!8 +2JN 1:13!9 +3JN 1:1!1 +3JN 1:1!2 +3JN 1:1!3 +3JN 1:1!4 +3JN 1:1!5 +3JN 1:1!6 +3JN 1:1!7 +3JN 1:1!8 +3JN 1:1!9 +3JN 1:1!10 +3JN 1:2!1 +3JN 1:2!2 +3JN 1:2!3 +3JN 1:2!4 +3JN 1:2!5 +3JN 1:2!6 +3JN 1:2!7 +3JN 1:2!8 +3JN 1:2!9 +3JN 1:2!10 +3JN 1:2!11 +3JN 1:2!12 +3JN 1:2!13 +3JN 1:3!2 +3JN 1:3!1 +3JN 1:3!3 +3JN 1:3!4 +3JN 1:3!5 +3JN 1:3!6 +3JN 1:3!7 +3JN 1:3!8 +3JN 1:3!9 +3JN 1:3!10 +3JN 1:3!11 +3JN 1:3!12 +3JN 1:3!13 +3JN 1:3!14 +3JN 1:3!15 +3JN 1:4!1 +3JN 1:4!5 +3JN 1:4!2 +3JN 1:4!3 +3JN 1:4!4 +3JN 1:4!6 +3JN 1:4!7 +3JN 1:4!8 +3JN 1:4!9 +3JN 1:4!10 +3JN 1:4!11 +3JN 1:4!12 +3JN 1:4!13 +3JN 1:4!14 +3JN 1:5!1 +3JN 1:5!2 +3JN 1:5!3 +3JN 1:5!5 +3JN 1:5!4 +3JN 1:5!6 +3JN 1:5!7 +3JN 1:5!8 +3JN 1:5!9 +3JN 1:5!10 +3JN 1:5!11 +3JN 1:5!12 +3JN 1:6!1 +3JN 1:6!2 +3JN 1:6!3 +3JN 1:6!4 +3JN 1:6!5 +3JN 1:6!6 +3JN 1:6!7 +3JN 1:6!8 +3JN 1:6!9 +3JN 1:6!10 +3JN 1:6!11 +3JN 1:6!12 +3JN 1:6!13 +3JN 1:6!14 +3JN 1:7!2 +3JN 1:7!1 +3JN 1:7!3 +3JN 1:7!4 +3JN 1:7!5 +3JN 1:7!6 +3JN 1:7!7 +3JN 1:7!8 +3JN 1:7!9 +3JN 1:7!10 +3JN 1:8!2 +3JN 1:8!1 +3JN 1:8!3 +3JN 1:8!4 +3JN 1:8!5 +3JN 1:8!6 +3JN 1:8!7 +3JN 1:8!8 +3JN 1:8!9 +3JN 1:8!10 +3JN 1:8!11 +3JN 1:9!1 +3JN 1:9!2 +3JN 1:9!3 +3JN 1:9!4 +3JN 1:9!5 +3JN 1:9!6 +3JN 1:9!7 +3JN 1:9!8 +3JN 1:9!9 +3JN 1:9!10 +3JN 1:9!11 +3JN 1:9!12 +3JN 1:10!1 +3JN 1:10!2 +3JN 1:10!3 +3JN 1:10!4 +3JN 1:10!5 +3JN 1:10!6 +3JN 1:10!7 +3JN 1:10!8 +3JN 1:10!9 +3JN 1:10!10 +3JN 1:10!11 +3JN 1:10!12 +3JN 1:10!13 +3JN 1:10!14 +3JN 1:10!15 +3JN 1:10!16 +3JN 1:10!17 +3JN 1:10!18 +3JN 1:10!19 +3JN 1:10!20 +3JN 1:10!21 +3JN 1:10!22 +3JN 1:10!23 +3JN 1:10!24 +3JN 1:10!25 +3JN 1:10!26 +3JN 1:10!27 +3JN 1:10!28 +3JN 1:10!29 +3JN 1:10!30 +3JN 1:10!31 +3JN 1:10!32 +3JN 1:10!33 +3JN 1:11!1 +3JN 1:11!2 +3JN 1:11!3 +3JN 1:11!4 +3JN 1:11!5 +3JN 1:11!6 +3JN 1:11!7 +3JN 1:11!8 +3JN 1:11!9 +3JN 1:11!10 +3JN 1:11!11 +3JN 1:11!12 +3JN 1:11!13 +3JN 1:11!14 +3JN 1:11!15 +3JN 1:11!16 +3JN 1:11!17 +3JN 1:11!18 +3JN 1:11!19 +3JN 1:11!20 +3JN 1:12!1 +3JN 1:12!2 +3JN 1:12!3 +3JN 1:12!4 +3JN 1:12!5 +3JN 1:12!6 +3JN 1:12!7 +3JN 1:12!8 +3JN 1:12!9 +3JN 1:12!12 +3JN 1:12!10 +3JN 1:12!11 +3JN 1:12!13 +3JN 1:12!14 +3JN 1:12!15 +3JN 1:12!16 +3JN 1:12!17 +3JN 1:12!18 +3JN 1:12!19 +3JN 1:12!20 +3JN 1:12!21 +3JN 1:13!2 +3JN 1:13!1 +3JN 1:13!3 +3JN 1:13!4 +3JN 1:13!5 +3JN 1:13!6 +3JN 1:13!7 +3JN 1:13!8 +3JN 1:13!9 +3JN 1:13!10 +3JN 1:13!11 +3JN 1:13!12 +3JN 1:13!13 +3JN 1:14!2 +3JN 1:14!1 +3JN 1:14!3 +3JN 1:14!4 +3JN 1:14!5 +3JN 1:14!6 +3JN 1:14!7 +3JN 1:14!8 +3JN 1:14!9 +3JN 1:14!10 +3JN 1:15!1 +3JN 1:15!2 +3JN 1:15!3 +3JN 1:15!4 +3JN 1:15!5 +3JN 1:15!6 +3JN 1:15!7 +3JN 1:15!8 +3JN 1:15!9 +3JN 1:15!10 +3JN 1:15!11 +JUD 1:1!1 +JUD 1:1!2 +JUD 1:1!3 +JUD 1:1!4 +JUD 1:1!6 +JUD 1:1!5 +JUD 1:1!7 +JUD 1:1!8 +JUD 1:1!9 +JUD 1:1!10 +JUD 1:1!11 +JUD 1:1!12 +JUD 1:1!13 +JUD 1:1!14 +JUD 1:1!15 +JUD 1:1!16 +JUD 1:1!17 +JUD 1:2!2 +JUD 1:2!1 +JUD 1:2!3 +JUD 1:2!4 +JUD 1:2!5 +JUD 1:2!6 +JUD 1:2!7 +JUD 1:3!1 +JUD 1:3!2 +JUD 1:3!3 +JUD 1:3!4 +JUD 1:3!5 +JUD 1:3!6 +JUD 1:3!7 +JUD 1:3!8 +JUD 1:3!9 +JUD 1:3!10 +JUD 1:3!11 +JUD 1:3!12 +JUD 1:3!13 +JUD 1:3!14 +JUD 1:3!15 +JUD 1:3!16 +JUD 1:3!17 +JUD 1:3!18 +JUD 1:3!19 +JUD 1:3!20 +JUD 1:3!21 +JUD 1:3!22 +JUD 1:3!23 +JUD 1:4!2 +JUD 1:4!1 +JUD 1:4!3 +JUD 1:4!4 +JUD 1:4!5 +JUD 1:4!6 +JUD 1:4!7 +JUD 1:4!8 +JUD 1:4!9 +JUD 1:4!10 +JUD 1:4!11 +JUD 1:4!12 +JUD 1:4!13 +JUD 1:4!14 +JUD 1:4!15 +JUD 1:4!16 +JUD 1:4!17 +JUD 1:4!18 +JUD 1:4!19 +JUD 1:4!20 +JUD 1:4!21 +JUD 1:4!22 +JUD 1:4!23 +JUD 1:4!24 +JUD 1:4!25 +JUD 1:4!26 +JUD 1:4!27 +JUD 1:4!28 +JUD 1:4!29 +JUD 1:4!30 +JUD 1:5!2 +JUD 1:5!4 +JUD 1:5!5 +JUD 1:5!6 +JUD 1:5!7 +JUD 1:5!1 +JUD 1:5!3 +JUD 1:5!8 +JUD 1:5!9 +JUD 1:5!10 +JUD 1:5!11 +JUD 1:5!12 +JUD 1:5!13 +JUD 1:5!14 +JUD 1:5!15 +JUD 1:5!16 +JUD 1:5!17 +JUD 1:5!18 +JUD 1:5!19 +JUD 1:5!20 +JUD 1:6!2 +JUD 1:6!1 +JUD 1:6!3 +JUD 1:6!4 +JUD 1:6!5 +JUD 1:6!6 +JUD 1:6!7 +JUD 1:6!8 +JUD 1:6!9 +JUD 1:6!10 +JUD 1:6!11 +JUD 1:6!12 +JUD 1:6!13 +JUD 1:6!14 +JUD 1:6!15 +JUD 1:6!16 +JUD 1:6!17 +JUD 1:6!18 +JUD 1:6!19 +JUD 1:6!20 +JUD 1:6!21 +JUD 1:6!22 +JUD 1:7!1 +JUD 1:7!2 +JUD 1:7!3 +JUD 1:7!4 +JUD 1:7!5 +JUD 1:7!6 +JUD 1:7!7 +JUD 1:7!8 +JUD 1:7!9 +JUD 1:7!10 +JUD 1:7!11 +JUD 1:7!12 +JUD 1:7!13 +JUD 1:7!14 +JUD 1:7!15 +JUD 1:7!16 +JUD 1:7!17 +JUD 1:7!18 +JUD 1:7!19 +JUD 1:7!20 +JUD 1:7!21 +JUD 1:7!22 +JUD 1:7!23 +JUD 1:7!24 +JUD 1:7!25 +JUD 1:8!2 +JUD 1:8!1 +JUD 1:8!3 +JUD 1:8!4 +JUD 1:8!5 +JUD 1:8!7 +JUD 1:8!6 +JUD 1:8!8 +JUD 1:8!10 +JUD 1:8!9 +JUD 1:8!11 +JUD 1:8!13 +JUD 1:8!12 +JUD 1:8!14 +JUD 1:9!2 +JUD 1:9!6 +JUD 1:9!7 +JUD 1:9!8 +JUD 1:9!9 +JUD 1:9!10 +JUD 1:9!11 +JUD 1:9!12 +JUD 1:9!13 +JUD 1:9!14 +JUD 1:9!15 +JUD 1:9!1 +JUD 1:9!3 +JUD 1:9!4 +JUD 1:9!5 +JUD 1:9!16 +JUD 1:9!17 +JUD 1:9!19 +JUD 1:9!18 +JUD 1:9!20 +JUD 1:9!21 +JUD 1:9!22 +JUD 1:9!23 +JUD 1:9!24 +JUD 1:10!2 +JUD 1:10!4 +JUD 1:10!1 +JUD 1:10!3 +JUD 1:10!5 +JUD 1:10!6 +JUD 1:10!7 +JUD 1:10!9 +JUD 1:10!8 +JUD 1:10!10 +JUD 1:10!11 +JUD 1:10!12 +JUD 1:10!13 +JUD 1:10!14 +JUD 1:10!15 +JUD 1:10!16 +JUD 1:10!17 +JUD 1:10!18 +JUD 1:11!1 +JUD 1:11!2 +JUD 1:11!3 +JUD 1:11!4 +JUD 1:11!5 +JUD 1:11!6 +JUD 1:11!7 +JUD 1:11!8 +JUD 1:11!9 +JUD 1:11!10 +JUD 1:11!11 +JUD 1:11!12 +JUD 1:11!13 +JUD 1:11!14 +JUD 1:11!15 +JUD 1:11!16 +JUD 1:11!17 +JUD 1:11!18 +JUD 1:11!19 +JUD 1:11!20 +JUD 1:11!21 +JUD 1:12!1 +JUD 1:12!2 +JUD 1:12!3 +JUD 1:12!4 +JUD 1:12!5 +JUD 1:12!6 +JUD 1:12!7 +JUD 1:12!8 +JUD 1:12!9 +JUD 1:12!10 +JUD 1:12!11 +JUD 1:12!12 +JUD 1:12!13 +JUD 1:12!14 +JUD 1:12!15 +JUD 1:12!16 +JUD 1:12!17 +JUD 1:12!18 +JUD 1:12!19 +JUD 1:12!20 +JUD 1:12!21 +JUD 1:12!22 +JUD 1:12!23 +JUD 1:13!1 +JUD 1:13!2 +JUD 1:13!3 +JUD 1:13!4 +JUD 1:13!5 +JUD 1:13!6 +JUD 1:13!7 +JUD 1:13!8 +JUD 1:13!9 +JUD 1:13!10 +JUD 1:13!11 +JUD 1:13!12 +JUD 1:13!13 +JUD 1:13!14 +JUD 1:13!15 +JUD 1:13!16 +JUD 1:13!17 +JUD 1:14!2 +JUD 1:14!1 +JUD 1:14!3 +JUD 1:14!4 +JUD 1:14!5 +JUD 1:14!6 +JUD 1:14!7 +JUD 1:14!8 +JUD 1:14!9 +JUD 1:14!10 +JUD 1:14!11 +JUD 1:14!12 +JUD 1:14!13 +JUD 1:14!14 +JUD 1:14!15 +JUD 1:14!16 +JUD 1:15!1 +JUD 1:15!2 +JUD 1:15!3 +JUD 1:15!4 +JUD 1:15!5 +JUD 1:15!6 +JUD 1:15!7 +JUD 1:15!8 +JUD 1:15!9 +JUD 1:15!10 +JUD 1:15!11 +JUD 1:15!12 +JUD 1:15!13 +JUD 1:15!14 +JUD 1:15!15 +JUD 1:15!16 +JUD 1:15!17 +JUD 1:15!18 +JUD 1:15!19 +JUD 1:15!20 +JUD 1:15!21 +JUD 1:15!22 +JUD 1:15!23 +JUD 1:15!24 +JUD 1:15!25 +JUD 1:15!26 +JUD 1:15!27 +JUD 1:15!28 +JUD 1:16!1 +JUD 1:16!2 +JUD 1:16!3 +JUD 1:16!4 +JUD 1:16!5 +JUD 1:16!6 +JUD 1:16!7 +JUD 1:16!8 +JUD 1:16!9 +JUD 1:16!10 +JUD 1:16!11 +JUD 1:16!12 +JUD 1:16!13 +JUD 1:16!14 +JUD 1:16!15 +JUD 1:16!16 +JUD 1:16!17 +JUD 1:16!18 +JUD 1:16!19 +JUD 1:17!2 +JUD 1:17!3 +JUD 1:17!1 +JUD 1:17!4 +JUD 1:17!5 +JUD 1:17!6 +JUD 1:17!7 +JUD 1:17!8 +JUD 1:17!9 +JUD 1:17!10 +JUD 1:17!11 +JUD 1:17!12 +JUD 1:17!13 +JUD 1:17!14 +JUD 1:17!15 +JUD 1:17!16 +JUD 1:18!1 +JUD 1:18!2 +JUD 1:18!3 +JUD 1:18!4 +JUD 1:18!5 +JUD 1:18!6 +JUD 1:18!7 +JUD 1:18!8 +JUD 1:18!9 +JUD 1:18!14 +JUD 1:18!10 +JUD 1:18!11 +JUD 1:18!12 +JUD 1:18!13 +JUD 1:18!15 +JUD 1:18!16 +JUD 1:19!1 +JUD 1:19!2 +JUD 1:19!3 +JUD 1:19!4 +JUD 1:19!5 +JUD 1:19!6 +JUD 1:19!7 +JUD 1:19!8 +JUD 1:20!2 +JUD 1:20!3 +JUD 1:20!1 +JUD 1:20!4 +JUD 1:20!5 +JUD 1:20!6 +JUD 1:20!7 +JUD 1:20!8 +JUD 1:20!9 +JUD 1:20!10 +JUD 1:20!11 +JUD 1:20!12 +JUD 1:20!13 +JUD 1:21!1 +JUD 1:21!2 +JUD 1:21!3 +JUD 1:21!4 +JUD 1:21!5 +JUD 1:21!6 +JUD 1:21!7 +JUD 1:21!8 +JUD 1:21!9 +JUD 1:21!10 +JUD 1:21!11 +JUD 1:21!12 +JUD 1:21!13 +JUD 1:21!14 +JUD 1:21!15 +JUD 1:21!16 +JUD 1:22!1 +JUD 1:22!3 +JUD 1:22!2 +JUD 1:22!5 +JUD 1:22!4 +JUD 1:23!1 +JUD 1:23!2 +JUD 1:23!3 +JUD 1:23!4 +JUD 1:23!6 +JUD 1:23!5 +JUD 1:23!7 +JUD 1:23!8 +JUD 1:23!9 +JUD 1:23!10 +JUD 1:23!11 +JUD 1:23!12 +JUD 1:23!13 +JUD 1:23!14 +JUD 1:23!15 +JUD 1:23!16 +JUD 1:23!17 +JUD 1:24!2 +JUD 1:24!1 +JUD 1:24!3 +JUD 1:24!4 +JUD 1:24!5 +JUD 1:24!6 +JUD 1:24!7 +JUD 1:24!8 +JUD 1:24!9 +JUD 1:24!10 +JUD 1:24!11 +JUD 1:24!12 +JUD 1:24!13 +JUD 1:24!14 +JUD 1:24!15 +JUD 1:25!1 +JUD 1:25!2 +JUD 1:25!3 +JUD 1:25!4 +JUD 1:25!5 +JUD 1:25!6 +JUD 1:25!7 +JUD 1:25!8 +JUD 1:25!9 +JUD 1:25!10 +JUD 1:25!11 +JUD 1:25!12 +JUD 1:25!13 +JUD 1:25!14 +JUD 1:25!15 +JUD 1:25!16 +JUD 1:25!17 +JUD 1:25!18 +JUD 1:25!19 +JUD 1:25!20 +JUD 1:25!21 +JUD 1:25!22 +JUD 1:25!23 +JUD 1:25!24 +JUD 1:25!25 +JUD 1:25!26 +JUD 1:25!27 +REV 1:1!1 +REV 1:1!2 +REV 1:1!3 +REV 1:1!4 +REV 1:1!5 +REV 1:1!6 +REV 1:1!7 +REV 1:1!8 +REV 1:1!9 +REV 1:1!10 +REV 1:1!11 +REV 1:1!12 +REV 1:1!13 +REV 1:1!15 +REV 1:1!16 +REV 1:1!17 +REV 1:1!14 +REV 1:1!18 +REV 1:1!19 +REV 1:1!20 +REV 1:1!21 +REV 1:1!22 +REV 1:1!23 +REV 1:1!24 +REV 1:1!25 +REV 1:1!26 +REV 1:1!27 +REV 1:1!28 +REV 1:2!1 +REV 1:2!2 +REV 1:2!3 +REV 1:2!4 +REV 1:2!5 +REV 1:2!6 +REV 1:2!7 +REV 1:2!8 +REV 1:2!9 +REV 1:2!10 +REV 1:2!11 +REV 1:2!12 +REV 1:2!13 +REV 1:3!1 +REV 1:3!2 +REV 1:3!3 +REV 1:3!4 +REV 1:3!5 +REV 1:3!6 +REV 1:3!7 +REV 1:3!8 +REV 1:3!9 +REV 1:3!10 +REV 1:3!11 +REV 1:3!12 +REV 1:3!13 +REV 1:3!14 +REV 1:3!15 +REV 1:3!16 +REV 1:3!18 +REV 1:3!17 +REV 1:3!19 +REV 1:3!20 +REV 1:4!1 +REV 1:4!2 +REV 1:4!3 +REV 1:4!4 +REV 1:4!5 +REV 1:4!6 +REV 1:4!7 +REV 1:4!8 +REV 1:4!9 +REV 1:4!11 +REV 1:4!12 +REV 1:4!10 +REV 1:4!13 +REV 1:4!14 +REV 1:4!15 +REV 1:4!16 +REV 1:4!17 +REV 1:4!18 +REV 1:4!19 +REV 1:4!20 +REV 1:4!21 +REV 1:4!22 +REV 1:4!23 +REV 1:4!24 +REV 1:4!25 +REV 1:4!26 +REV 1:4!27 +REV 1:4!28 +REV 1:4!29 +REV 1:4!30 +REV 1:4!31 +REV 1:5!1 +REV 1:5!2 +REV 1:5!3 +REV 1:5!4 +REV 1:5!5 +REV 1:5!6 +REV 1:5!7 +REV 1:5!8 +REV 1:5!9 +REV 1:5!10 +REV 1:5!11 +REV 1:5!12 +REV 1:5!13 +REV 1:5!14 +REV 1:5!15 +REV 1:5!16 +REV 1:5!17 +REV 1:5!18 +REV 1:5!19 +REV 1:5!20 +REV 1:5!21 +REV 1:5!22 +REV 1:5!23 +REV 1:5!24 +REV 1:5!25 +REV 1:5!26 +REV 1:5!27 +REV 1:5!28 +REV 1:5!29 +REV 1:5!30 +REV 1:5!31 +REV 1:5!32 +REV 1:5!33 +REV 1:6!1 +REV 1:6!2 +REV 1:6!3 +REV 1:6!4 +REV 1:6!5 +REV 1:6!6 +REV 1:6!7 +REV 1:6!8 +REV 1:6!9 +REV 1:6!10 +REV 1:6!11 +REV 1:6!12 +REV 1:6!13 +REV 1:6!14 +REV 1:6!15 +REV 1:6!16 +REV 1:6!17 +REV 1:6!18 +REV 1:6!19 +REV 1:6!20 +REV 1:6!21 +REV 1:6!22 +REV 1:7!1 +REV 1:7!2 +REV 1:7!3 +REV 1:7!4 +REV 1:7!5 +REV 1:7!6 +REV 1:7!7 +REV 1:7!8 +REV 1:7!9 +REV 1:7!10 +REV 1:7!11 +REV 1:7!12 +REV 1:7!13 +REV 1:7!14 +REV 1:7!15 +REV 1:7!16 +REV 1:7!17 +REV 1:7!18 +REV 1:7!19 +REV 1:7!20 +REV 1:7!21 +REV 1:7!22 +REV 1:7!23 +REV 1:7!24 +REV 1:7!25 +REV 1:8!1 +REV 1:8!2 +REV 1:8!3 +REV 1:8!4 +REV 1:8!5 +REV 1:8!6 +REV 1:8!7 +REV 1:8!8 +REV 1:8!9 +REV 1:8!10 +REV 1:8!11 +REV 1:8!12 +REV 1:8!13 +REV 1:8!14 +REV 1:8!15 +REV 1:8!16 +REV 1:8!17 +REV 1:8!18 +REV 1:8!19 +REV 1:8!20 +REV 1:8!21 +REV 1:9!1 +REV 1:9!2 +REV 1:9!3 +REV 1:9!4 +REV 1:9!5 +REV 1:9!6 +REV 1:9!7 +REV 1:9!8 +REV 1:9!9 +REV 1:9!10 +REV 1:9!11 +REV 1:9!12 +REV 1:9!13 +REV 1:9!14 +REV 1:9!15 +REV 1:9!16 +REV 1:9!17 +REV 1:9!18 +REV 1:9!19 +REV 1:9!20 +REV 1:9!21 +REV 1:9!22 +REV 1:9!23 +REV 1:9!24 +REV 1:9!25 +REV 1:9!26 +REV 1:9!27 +REV 1:9!28 +REV 1:9!29 +REV 1:9!30 +REV 1:9!31 +REV 1:9!32 +REV 1:10!1 +REV 1:10!2 +REV 1:10!3 +REV 1:10!4 +REV 1:10!5 +REV 1:10!6 +REV 1:10!7 +REV 1:10!8 +REV 1:10!9 +REV 1:10!10 +REV 1:10!11 +REV 1:10!12 +REV 1:10!13 +REV 1:10!14 +REV 1:10!15 +REV 1:11!1 +REV 1:11!2 +REV 1:11!3 +REV 1:11!4 +REV 1:11!5 +REV 1:11!6 +REV 1:11!7 +REV 1:11!8 +REV 1:11!9 +REV 1:11!10 +REV 1:11!11 +REV 1:11!12 +REV 1:11!13 +REV 1:11!14 +REV 1:11!15 +REV 1:11!16 +REV 1:11!17 +REV 1:11!18 +REV 1:11!19 +REV 1:11!20 +REV 1:11!21 +REV 1:11!22 +REV 1:11!23 +REV 1:11!24 +REV 1:11!25 +REV 1:11!26 +REV 1:11!27 +REV 1:11!28 +REV 1:11!29 +REV 1:11!30 +REV 1:11!31 +REV 1:12!1 +REV 1:12!2 +REV 1:12!3 +REV 1:12!4 +REV 1:12!5 +REV 1:12!6 +REV 1:12!7 +REV 1:12!8 +REV 1:12!9 +REV 1:12!10 +REV 1:12!11 +REV 1:12!12 +REV 1:12!13 +REV 1:12!14 +REV 1:12!15 +REV 1:13!1 +REV 1:13!2 +REV 1:13!3 +REV 1:13!4 +REV 1:13!5 +REV 1:13!6 +REV 1:13!7 +REV 1:13!8 +REV 1:13!9 +REV 1:13!10 +REV 1:13!11 +REV 1:13!12 +REV 1:13!13 +REV 1:13!14 +REV 1:13!15 +REV 1:13!16 +REV 1:13!17 +REV 1:14!2 +REV 1:14!1 +REV 1:14!3 +REV 1:14!4 +REV 1:14!5 +REV 1:14!6 +REV 1:14!7 +REV 1:14!8 +REV 1:14!9 +REV 1:14!10 +REV 1:14!11 +REV 1:14!12 +REV 1:14!13 +REV 1:14!14 +REV 1:14!15 +REV 1:14!16 +REV 1:14!17 +REV 1:14!18 +REV 1:14!19 +REV 1:14!20 +REV 1:15!1 +REV 1:15!2 +REV 1:15!3 +REV 1:15!4 +REV 1:15!5 +REV 1:15!6 +REV 1:15!7 +REV 1:15!8 +REV 1:15!9 +REV 1:15!10 +REV 1:15!11 +REV 1:15!12 +REV 1:15!13 +REV 1:15!14 +REV 1:15!15 +REV 1:15!16 +REV 1:15!17 +REV 1:15!18 +REV 1:16!1 +REV 1:16!2 +REV 1:16!3 +REV 1:16!4 +REV 1:16!5 +REV 1:16!6 +REV 1:16!7 +REV 1:16!8 +REV 1:16!9 +REV 1:16!10 +REV 1:16!11 +REV 1:16!12 +REV 1:16!13 +REV 1:16!14 +REV 1:16!15 +REV 1:16!16 +REV 1:16!17 +REV 1:16!18 +REV 1:16!19 +REV 1:16!20 +REV 1:16!21 +REV 1:16!22 +REV 1:16!23 +REV 1:16!24 +REV 1:16!25 +REV 1:16!26 +REV 1:16!27 +REV 1:16!28 +REV 1:16!29 +REV 1:16!30 +REV 1:17!1 +REV 1:17!2 +REV 1:17!3 +REV 1:17!4 +REV 1:17!5 +REV 1:17!6 +REV 1:17!7 +REV 1:17!8 +REV 1:17!9 +REV 1:17!10 +REV 1:17!11 +REV 1:17!12 +REV 1:17!13 +REV 1:17!14 +REV 1:17!15 +REV 1:17!16 +REV 1:17!17 +REV 1:17!18 +REV 1:17!19 +REV 1:17!20 +REV 1:17!21 +REV 1:17!22 +REV 1:17!23 +REV 1:17!24 +REV 1:17!25 +REV 1:17!26 +REV 1:17!27 +REV 1:17!28 +REV 1:18!1 +REV 1:18!2 +REV 1:18!3 +REV 1:18!4 +REV 1:18!5 +REV 1:18!6 +REV 1:18!7 +REV 1:18!8 +REV 1:18!9 +REV 1:18!10 +REV 1:18!11 +REV 1:18!12 +REV 1:18!13 +REV 1:18!14 +REV 1:18!15 +REV 1:18!16 +REV 1:18!17 +REV 1:18!18 +REV 1:18!19 +REV 1:18!20 +REV 1:18!21 +REV 1:18!22 +REV 1:18!23 +REV 1:18!24 +REV 1:19!2 +REV 1:19!1 +REV 1:19!3 +REV 1:19!4 +REV 1:19!5 +REV 1:19!6 +REV 1:19!7 +REV 1:19!8 +REV 1:19!9 +REV 1:19!10 +REV 1:19!11 +REV 1:19!12 +REV 1:19!13 +REV 1:20!1 +REV 1:20!2 +REV 1:20!3 +REV 1:20!4 +REV 1:20!5 +REV 1:20!6 +REV 1:20!7 +REV 1:20!8 +REV 1:20!9 +REV 1:20!10 +REV 1:20!11 +REV 1:20!12 +REV 1:20!13 +REV 1:20!14 +REV 1:20!15 +REV 1:20!16 +REV 1:20!17 +REV 1:20!18 +REV 1:20!19 +REV 1:20!20 +REV 1:20!21 +REV 1:20!22 +REV 1:20!23 +REV 1:20!24 +REV 1:20!25 +REV 1:20!26 +REV 1:20!27 +REV 1:20!28 +REV 1:20!29 +REV 1:20!30 +REV 1:20!31 +REV 1:20!32 +REV 1:20!33 +REV 2:1!1 +REV 2:1!2 +REV 2:1!3 +REV 2:1!4 +REV 2:1!5 +REV 2:1!6 +REV 2:1!7 +REV 2:1!8 +REV 2:1!9 +REV 2:1!10 +REV 2:1!11 +REV 2:1!12 +REV 2:1!13 +REV 2:1!14 +REV 2:1!15 +REV 2:1!16 +REV 2:1!17 +REV 2:1!18 +REV 2:1!19 +REV 2:1!20 +REV 2:1!21 +REV 2:1!22 +REV 2:1!23 +REV 2:1!24 +REV 2:1!25 +REV 2:1!26 +REV 2:1!27 +REV 2:2!1 +REV 2:2!2 +REV 2:2!3 +REV 2:2!4 +REV 2:2!5 +REV 2:2!6 +REV 2:2!7 +REV 2:2!8 +REV 2:2!9 +REV 2:2!10 +REV 2:2!11 +REV 2:2!12 +REV 2:2!13 +REV 2:2!14 +REV 2:2!15 +REV 2:2!16 +REV 2:2!17 +REV 2:2!18 +REV 2:2!19 +REV 2:2!20 +REV 2:2!21 +REV 2:2!22 +REV 2:2!23 +REV 2:2!24 +REV 2:2!25 +REV 2:2!26 +REV 2:2!27 +REV 2:2!28 +REV 2:2!29 +REV 2:2!30 +REV 2:3!1 +REV 2:3!2 +REV 2:3!3 +REV 2:3!4 +REV 2:3!5 +REV 2:3!6 +REV 2:3!7 +REV 2:3!8 +REV 2:3!9 +REV 2:3!10 +REV 2:3!11 +REV 2:3!12 +REV 2:4!1 +REV 2:4!2 +REV 2:4!3 +REV 2:4!4 +REV 2:4!5 +REV 2:4!6 +REV 2:4!7 +REV 2:4!8 +REV 2:4!9 +REV 2:4!10 +REV 2:4!11 +REV 2:5!2 +REV 2:5!1 +REV 2:5!3 +REV 2:5!4 +REV 2:5!5 +REV 2:5!6 +REV 2:5!7 +REV 2:5!8 +REV 2:5!9 +REV 2:5!10 +REV 2:5!11 +REV 2:5!13 +REV 2:5!12 +REV 2:5!14 +REV 2:5!15 +REV 2:5!16 +REV 2:5!17 +REV 2:5!18 +REV 2:5!19 +REV 2:5!20 +REV 2:5!21 +REV 2:5!22 +REV 2:5!23 +REV 2:5!24 +REV 2:5!25 +REV 2:5!26 +REV 2:5!27 +REV 2:5!28 +REV 2:6!1 +REV 2:6!2 +REV 2:6!3 +REV 2:6!4 +REV 2:6!5 +REV 2:6!6 +REV 2:6!7 +REV 2:6!8 +REV 2:6!9 +REV 2:6!10 +REV 2:6!11 +REV 2:6!12 +REV 2:7!1 +REV 2:7!2 +REV 2:7!3 +REV 2:7!4 +REV 2:7!5 +REV 2:7!6 +REV 2:7!7 +REV 2:7!8 +REV 2:7!9 +REV 2:7!10 +REV 2:7!11 +REV 2:7!12 +REV 2:7!13 +REV 2:7!14 +REV 2:7!15 +REV 2:7!16 +REV 2:7!17 +REV 2:7!18 +REV 2:7!19 +REV 2:7!20 +REV 2:7!21 +REV 2:7!22 +REV 2:7!23 +REV 2:7!24 +REV 2:7!25 +REV 2:7!26 +REV 2:7!27 +REV 2:8!1 +REV 2:8!2 +REV 2:8!3 +REV 2:8!4 +REV 2:8!5 +REV 2:8!6 +REV 2:8!7 +REV 2:8!8 +REV 2:8!9 +REV 2:8!10 +REV 2:8!11 +REV 2:8!12 +REV 2:8!13 +REV 2:8!14 +REV 2:8!15 +REV 2:8!16 +REV 2:8!17 +REV 2:8!18 +REV 2:8!19 +REV 2:8!20 +REV 2:9!1 +REV 2:9!2 +REV 2:9!3 +REV 2:9!4 +REV 2:9!5 +REV 2:9!6 +REV 2:9!7 +REV 2:9!8 +REV 2:9!9 +REV 2:9!10 +REV 2:9!11 +REV 2:9!12 +REV 2:9!13 +REV 2:9!14 +REV 2:9!15 +REV 2:9!16 +REV 2:9!17 +REV 2:9!18 +REV 2:9!19 +REV 2:9!20 +REV 2:9!21 +REV 2:9!22 +REV 2:9!23 +REV 2:9!24 +REV 2:9!25 +REV 2:9!26 +REV 2:10!1 +REV 2:10!2 +REV 2:10!3 +REV 2:10!5 +REV 2:10!4 +REV 2:10!6 +REV 2:10!7 +REV 2:10!9 +REV 2:10!10 +REV 2:10!8 +REV 2:10!11 +REV 2:10!12 +REV 2:10!13 +REV 2:10!14 +REV 2:10!15 +REV 2:10!16 +REV 2:10!17 +REV 2:10!18 +REV 2:10!19 +REV 2:10!20 +REV 2:10!21 +REV 2:10!22 +REV 2:10!23 +REV 2:10!24 +REV 2:10!25 +REV 2:10!26 +REV 2:10!27 +REV 2:10!28 +REV 2:10!29 +REV 2:10!30 +REV 2:10!31 +REV 2:10!32 +REV 2:11!1 +REV 2:11!2 +REV 2:11!3 +REV 2:11!4 +REV 2:11!5 +REV 2:11!6 +REV 2:11!7 +REV 2:11!8 +REV 2:11!9 +REV 2:11!10 +REV 2:11!11 +REV 2:11!12 +REV 2:11!13 +REV 2:11!14 +REV 2:11!15 +REV 2:11!16 +REV 2:11!17 +REV 2:11!18 +REV 2:11!19 +REV 2:11!20 +REV 2:12!1 +REV 2:12!2 +REV 2:12!3 +REV 2:12!4 +REV 2:12!5 +REV 2:12!6 +REV 2:12!7 +REV 2:12!8 +REV 2:12!9 +REV 2:12!10 +REV 2:12!11 +REV 2:12!12 +REV 2:12!13 +REV 2:12!14 +REV 2:12!15 +REV 2:12!16 +REV 2:12!17 +REV 2:12!18 +REV 2:13!1 +REV 2:13!2 +REV 2:13!3 +REV 2:13!4 +REV 2:13!5 +REV 2:13!6 +REV 2:13!7 +REV 2:13!8 +REV 2:13!9 +REV 2:13!10 +REV 2:13!11 +REV 2:13!12 +REV 2:13!13 +REV 2:13!14 +REV 2:13!15 +REV 2:13!16 +REV 2:13!17 +REV 2:13!18 +REV 2:13!19 +REV 2:13!20 +REV 2:13!21 +REV 2:13!22 +REV 2:13!23 +REV 2:13!24 +REV 2:13!25 +REV 2:13!26 +REV 2:13!27 +REV 2:13!28 +REV 2:13!29 +REV 2:13!30 +REV 2:13!31 +REV 2:13!32 +REV 2:13!33 +REV 2:13!34 +REV 2:13!35 +REV 2:13!36 +REV 2:13!37 +REV 2:13!38 +REV 2:14!1 +REV 2:14!2 +REV 2:14!3 +REV 2:14!4 +REV 2:14!5 +REV 2:14!6 +REV 2:14!7 +REV 2:14!8 +REV 2:14!9 +REV 2:14!10 +REV 2:14!11 +REV 2:14!12 +REV 2:14!13 +REV 2:14!14 +REV 2:14!15 +REV 2:14!16 +REV 2:14!17 +REV 2:14!18 +REV 2:14!19 +REV 2:14!20 +REV 2:14!21 +REV 2:14!22 +REV 2:14!23 +REV 2:14!24 +REV 2:14!25 +REV 2:14!26 +REV 2:15!1 +REV 2:15!2 +REV 2:15!3 +REV 2:15!4 +REV 2:15!5 +REV 2:15!6 +REV 2:15!7 +REV 2:15!8 +REV 2:15!9 +REV 2:15!10 +REV 2:16!2 +REV 2:16!1 +REV 2:16!4 +REV 2:16!3 +REV 2:16!5 +REV 2:16!6 +REV 2:16!7 +REV 2:16!8 +REV 2:16!9 +REV 2:16!10 +REV 2:16!11 +REV 2:16!12 +REV 2:16!13 +REV 2:16!14 +REV 2:16!15 +REV 2:16!16 +REV 2:16!17 +REV 2:16!18 +REV 2:17!1 +REV 2:17!2 +REV 2:17!3 +REV 2:17!4 +REV 2:17!5 +REV 2:17!6 +REV 2:17!7 +REV 2:17!8 +REV 2:17!9 +REV 2:17!10 +REV 2:17!11 +REV 2:17!12 +REV 2:17!13 +REV 2:17!14 +REV 2:17!15 +REV 2:17!16 +REV 2:17!17 +REV 2:17!18 +REV 2:17!19 +REV 2:17!20 +REV 2:17!21 +REV 2:17!22 +REV 2:17!23 +REV 2:17!24 +REV 2:17!25 +REV 2:17!26 +REV 2:17!27 +REV 2:17!30 +REV 2:17!28 +REV 2:17!29 +REV 2:17!31 +REV 2:17!32 +REV 2:17!33 +REV 2:17!34 +REV 2:17!35 +REV 2:17!36 +REV 2:17!37 +REV 2:18!1 +REV 2:18!2 +REV 2:18!3 +REV 2:18!4 +REV 2:18!5 +REV 2:18!6 +REV 2:18!7 +REV 2:18!8 +REV 2:18!9 +REV 2:18!10 +REV 2:18!11 +REV 2:18!12 +REV 2:18!13 +REV 2:18!14 +REV 2:18!15 +REV 2:18!16 +REV 2:18!17 +REV 2:18!18 +REV 2:18!19 +REV 2:18!20 +REV 2:18!21 +REV 2:18!22 +REV 2:18!23 +REV 2:18!24 +REV 2:18!25 +REV 2:18!26 +REV 2:18!27 +REV 2:18!28 +REV 2:19!1 +REV 2:19!2 +REV 2:19!3 +REV 2:19!4 +REV 2:19!5 +REV 2:19!6 +REV 2:19!7 +REV 2:19!8 +REV 2:19!9 +REV 2:19!10 +REV 2:19!11 +REV 2:19!12 +REV 2:19!13 +REV 2:19!14 +REV 2:19!15 +REV 2:19!16 +REV 2:19!17 +REV 2:19!18 +REV 2:19!19 +REV 2:19!20 +REV 2:19!21 +REV 2:19!22 +REV 2:19!23 +REV 2:19!24 +REV 2:19!25 +REV 2:19!26 +REV 2:20!1 +REV 2:20!2 +REV 2:20!3 +REV 2:20!4 +REV 2:20!5 +REV 2:20!6 +REV 2:20!7 +REV 2:20!8 +REV 2:20!9 +REV 2:20!10 +REV 2:20!11 +REV 2:20!12 +REV 2:20!13 +REV 2:20!14 +REV 2:20!15 +REV 2:20!16 +REV 2:20!17 +REV 2:20!18 +REV 2:20!19 +REV 2:20!20 +REV 2:20!21 +REV 2:20!22 +REV 2:20!23 +REV 2:20!24 +REV 2:21!1 +REV 2:21!2 +REV 2:21!3 +REV 2:21!4 +REV 2:21!5 +REV 2:21!6 +REV 2:21!7 +REV 2:21!8 +REV 2:21!9 +REV 2:21!10 +REV 2:21!11 +REV 2:21!12 +REV 2:21!13 +REV 2:21!14 +REV 2:22!1 +REV 2:22!2 +REV 2:22!3 +REV 2:22!4 +REV 2:22!5 +REV 2:22!6 +REV 2:22!7 +REV 2:22!8 +REV 2:22!9 +REV 2:22!10 +REV 2:22!11 +REV 2:22!12 +REV 2:22!13 +REV 2:22!14 +REV 2:22!15 +REV 2:22!16 +REV 2:22!17 +REV 2:22!18 +REV 2:22!19 +REV 2:22!20 +REV 2:23!1 +REV 2:23!2 +REV 2:23!3 +REV 2:23!4 +REV 2:23!5 +REV 2:23!6 +REV 2:23!7 +REV 2:23!8 +REV 2:23!9 +REV 2:23!10 +REV 2:23!11 +REV 2:23!12 +REV 2:23!13 +REV 2:23!14 +REV 2:23!15 +REV 2:23!16 +REV 2:23!17 +REV 2:23!18 +REV 2:23!19 +REV 2:23!20 +REV 2:23!21 +REV 2:23!22 +REV 2:23!23 +REV 2:23!24 +REV 2:23!25 +REV 2:23!26 +REV 2:23!27 +REV 2:23!28 +REV 2:24!2 +REV 2:24!3 +REV 2:24!1 +REV 2:24!4 +REV 2:24!5 +REV 2:24!6 +REV 2:24!7 +REV 2:24!8 +REV 2:24!9 +REV 2:24!10 +REV 2:24!11 +REV 2:24!12 +REV 2:24!13 +REV 2:24!14 +REV 2:24!15 +REV 2:24!16 +REV 2:24!17 +REV 2:24!18 +REV 2:24!19 +REV 2:24!20 +REV 2:24!21 +REV 2:24!22 +REV 2:24!23 +REV 2:24!24 +REV 2:24!25 +REV 2:24!26 +REV 2:24!27 +REV 2:24!28 +REV 2:24!29 +REV 2:25!1 +REV 2:25!2 +REV 2:25!3 +REV 2:25!4 +REV 2:25!5 +REV 2:25!7 +REV 2:25!6 +REV 2:25!8 +REV 2:26!1 +REV 2:26!2 +REV 2:26!3 +REV 2:26!4 +REV 2:26!5 +REV 2:26!6 +REV 2:26!7 +REV 2:26!8 +REV 2:26!9 +REV 2:26!10 +REV 2:26!11 +REV 2:26!12 +REV 2:26!13 +REV 2:26!14 +REV 2:26!15 +REV 2:26!16 +REV 2:26!17 +REV 2:27!1 +REV 2:27!2 +REV 2:27!3 +REV 2:27!4 +REV 2:27!5 +REV 2:27!6 +REV 2:27!7 +REV 2:27!8 +REV 2:27!9 +REV 2:27!10 +REV 2:27!11 +REV 2:27!12 +REV 2:28!1 +REV 2:28!2 +REV 2:28!3 +REV 2:28!4 +REV 2:28!5 +REV 2:28!6 +REV 2:28!7 +REV 2:28!8 +REV 2:28!9 +REV 2:28!10 +REV 2:28!11 +REV 2:28!12 +REV 2:28!13 +REV 2:28!14 +REV 2:29!1 +REV 2:29!2 +REV 2:29!3 +REV 2:29!4 +REV 2:29!5 +REV 2:29!6 +REV 2:29!7 +REV 2:29!8 +REV 2:29!9 +REV 2:29!10 +REV 3:1!1 +REV 3:1!2 +REV 3:1!3 +REV 3:1!4 +REV 3:1!5 +REV 3:1!6 +REV 3:1!7 +REV 3:1!8 +REV 3:1!9 +REV 3:1!10 +REV 3:1!11 +REV 3:1!12 +REV 3:1!13 +REV 3:1!14 +REV 3:1!15 +REV 3:1!16 +REV 3:1!17 +REV 3:1!18 +REV 3:1!19 +REV 3:1!20 +REV 3:1!21 +REV 3:1!22 +REV 3:1!23 +REV 3:1!24 +REV 3:1!25 +REV 3:1!26 +REV 3:1!27 +REV 3:1!28 +REV 3:1!29 +REV 3:1!30 +REV 3:1!31 +REV 3:1!32 +REV 3:1!33 +REV 3:2!1 +REV 3:2!2 +REV 3:2!3 +REV 3:2!4 +REV 3:2!5 +REV 3:2!6 +REV 3:2!7 +REV 3:2!8 +REV 3:2!9 +REV 3:2!11 +REV 3:2!10 +REV 3:2!12 +REV 3:2!13 +REV 3:2!14 +REV 3:2!15 +REV 3:2!16 +REV 3:2!17 +REV 3:2!18 +REV 3:2!19 +REV 3:3!2 +REV 3:3!1 +REV 3:3!3 +REV 3:3!4 +REV 3:3!5 +REV 3:3!6 +REV 3:3!7 +REV 3:3!8 +REV 3:3!9 +REV 3:3!10 +REV 3:3!12 +REV 3:3!11 +REV 3:3!13 +REV 3:3!14 +REV 3:3!15 +REV 3:3!16 +REV 3:3!17 +REV 3:3!18 +REV 3:3!19 +REV 3:3!20 +REV 3:3!21 +REV 3:3!22 +REV 3:3!23 +REV 3:3!24 +REV 3:3!25 +REV 3:3!26 +REV 3:4!1 +REV 3:4!2 +REV 3:4!3 +REV 3:4!4 +REV 3:4!5 +REV 3:4!6 +REV 3:4!7 +REV 3:4!8 +REV 3:4!9 +REV 3:4!10 +REV 3:4!11 +REV 3:4!12 +REV 3:4!13 +REV 3:4!14 +REV 3:4!15 +REV 3:4!16 +REV 3:4!17 +REV 3:4!18 +REV 3:4!19 +REV 3:4!20 +REV 3:4!21 +REV 3:5!1 +REV 3:5!2 +REV 3:5!3 +REV 3:5!4 +REV 3:5!5 +REV 3:5!6 +REV 3:5!7 +REV 3:5!8 +REV 3:5!9 +REV 3:5!10 +REV 3:5!11 +REV 3:5!12 +REV 3:5!13 +REV 3:5!14 +REV 3:5!15 +REV 3:5!16 +REV 3:5!17 +REV 3:5!18 +REV 3:5!19 +REV 3:5!20 +REV 3:5!21 +REV 3:5!22 +REV 3:5!23 +REV 3:5!24 +REV 3:5!25 +REV 3:5!26 +REV 3:5!27 +REV 3:5!28 +REV 3:5!29 +REV 3:5!30 +REV 3:5!31 +REV 3:5!32 +REV 3:5!33 +REV 3:6!1 +REV 3:6!2 +REV 3:6!3 +REV 3:6!4 +REV 3:6!5 +REV 3:6!6 +REV 3:6!7 +REV 3:6!8 +REV 3:6!9 +REV 3:6!10 +REV 3:7!1 +REV 3:7!2 +REV 3:7!3 +REV 3:7!4 +REV 3:7!5 +REV 3:7!6 +REV 3:7!7 +REV 3:7!8 +REV 3:7!9 +REV 3:7!10 +REV 3:7!11 +REV 3:7!12 +REV 3:7!13 +REV 3:7!14 +REV 3:7!15 +REV 3:7!16 +REV 3:7!17 +REV 3:7!18 +REV 3:7!19 +REV 3:7!20 +REV 3:7!21 +REV 3:7!22 +REV 3:7!23 +REV 3:7!24 +REV 3:7!25 +REV 3:7!26 +REV 3:7!27 +REV 3:7!28 +REV 3:7!29 +REV 3:8!1 +REV 3:8!2 +REV 3:8!3 +REV 3:8!4 +REV 3:8!5 +REV 3:8!6 +REV 3:8!7 +REV 3:8!8 +REV 3:8!9 +REV 3:8!10 +REV 3:8!11 +REV 3:8!15 +REV 3:8!14 +REV 3:8!12 +REV 3:8!13 +REV 3:8!16 +REV 3:8!17 +REV 3:8!19 +REV 3:8!18 +REV 3:8!20 +REV 3:8!21 +REV 3:8!22 +REV 3:8!23 +REV 3:8!24 +REV 3:8!25 +REV 3:8!26 +REV 3:8!27 +REV 3:8!28 +REV 3:8!29 +REV 3:8!30 +REV 3:9!1 +REV 3:9!2 +REV 3:9!3 +REV 3:9!4 +REV 3:9!5 +REV 3:9!6 +REV 3:9!7 +REV 3:9!8 +REV 3:9!9 +REV 3:9!10 +REV 3:9!11 +REV 3:9!12 +REV 3:9!13 +REV 3:9!14 +REV 3:9!15 +REV 3:9!16 +REV 3:9!17 +REV 3:9!18 +REV 3:9!19 +REV 3:9!20 +REV 3:9!21 +REV 3:9!22 +REV 3:9!23 +REV 3:9!24 +REV 3:9!25 +REV 3:9!26 +REV 3:9!27 +REV 3:9!28 +REV 3:9!29 +REV 3:9!30 +REV 3:9!31 +REV 3:9!32 +REV 3:9!33 +REV 3:9!34 +REV 3:10!1 +REV 3:10!2 +REV 3:10!3 +REV 3:10!4 +REV 3:10!5 +REV 3:10!6 +REV 3:10!7 +REV 3:10!8 +REV 3:10!9 +REV 3:10!10 +REV 3:10!11 +REV 3:10!12 +REV 3:10!13 +REV 3:10!14 +REV 3:10!15 +REV 3:10!16 +REV 3:10!17 +REV 3:10!18 +REV 3:10!19 +REV 3:10!20 +REV 3:10!21 +REV 3:10!22 +REV 3:10!23 +REV 3:10!24 +REV 3:10!25 +REV 3:10!26 +REV 3:10!27 +REV 3:10!28 +REV 3:11!1 +REV 3:11!2 +REV 3:11!3 +REV 3:11!4 +REV 3:11!5 +REV 3:11!6 +REV 3:11!7 +REV 3:11!8 +REV 3:11!9 +REV 3:11!10 +REV 3:11!11 +REV 3:12!1 +REV 3:12!2 +REV 3:12!3 +REV 3:12!4 +REV 3:12!5 +REV 3:12!6 +REV 3:12!7 +REV 3:12!8 +REV 3:12!9 +REV 3:12!10 +REV 3:12!11 +REV 3:12!12 +REV 3:12!13 +REV 3:12!14 +REV 3:12!15 +REV 3:12!16 +REV 3:12!17 +REV 3:12!18 +REV 3:12!19 +REV 3:12!20 +REV 3:12!21 +REV 3:12!22 +REV 3:12!23 +REV 3:12!24 +REV 3:12!25 +REV 3:12!26 +REV 3:12!27 +REV 3:12!28 +REV 3:12!29 +REV 3:12!30 +REV 3:12!31 +REV 3:12!32 +REV 3:12!33 +REV 3:12!34 +REV 3:12!35 +REV 3:12!36 +REV 3:12!37 +REV 3:12!38 +REV 3:12!39 +REV 3:12!40 +REV 3:12!41 +REV 3:12!42 +REV 3:12!43 +REV 3:12!44 +REV 3:12!45 +REV 3:12!46 +REV 3:12!47 +REV 3:12!48 +REV 3:12!49 +REV 3:12!50 +REV 3:12!51 +REV 3:12!52 +REV 3:13!1 +REV 3:13!2 +REV 3:13!3 +REV 3:13!4 +REV 3:13!5 +REV 3:13!6 +REV 3:13!7 +REV 3:13!8 +REV 3:13!9 +REV 3:13!10 +REV 3:14!1 +REV 3:14!2 +REV 3:14!3 +REV 3:14!4 +REV 3:14!5 +REV 3:14!6 +REV 3:14!7 +REV 3:14!8 +REV 3:14!9 +REV 3:14!10 +REV 3:14!11 +REV 3:14!12 +REV 3:14!13 +REV 3:14!14 +REV 3:14!15 +REV 3:14!16 +REV 3:14!17 +REV 3:14!18 +REV 3:14!19 +REV 3:14!20 +REV 3:14!21 +REV 3:14!22 +REV 3:14!23 +REV 3:14!24 +REV 3:15!1 +REV 3:15!2 +REV 3:15!3 +REV 3:15!4 +REV 3:15!5 +REV 3:15!8 +REV 3:15!6 +REV 3:15!7 +REV 3:15!9 +REV 3:15!10 +REV 3:15!11 +REV 3:15!13 +REV 3:15!12 +REV 3:15!14 +REV 3:15!15 +REV 3:16!1 +REV 3:16!2 +REV 3:16!3 +REV 3:16!4 +REV 3:16!5 +REV 3:16!6 +REV 3:16!7 +REV 3:16!8 +REV 3:16!9 +REV 3:16!10 +REV 3:16!11 +REV 3:16!12 +REV 3:16!13 +REV 3:16!14 +REV 3:16!15 +REV 3:16!16 +REV 3:17!1 +REV 3:17!2 +REV 3:17!3 +REV 3:17!4 +REV 3:17!5 +REV 3:17!6 +REV 3:17!7 +REV 3:17!8 +REV 3:17!9 +REV 3:17!10 +REV 3:17!11 +REV 3:17!12 +REV 3:17!13 +REV 3:17!14 +REV 3:17!15 +REV 3:17!16 +REV 3:17!17 +REV 3:17!18 +REV 3:17!19 +REV 3:17!20 +REV 3:17!21 +REV 3:17!22 +REV 3:17!23 +REV 3:17!24 +REV 3:17!25 +REV 3:17!26 +REV 3:17!27 +REV 3:18!1 +REV 3:18!2 +REV 3:18!3 +REV 3:18!4 +REV 3:18!5 +REV 3:18!6 +REV 3:18!7 +REV 3:18!8 +REV 3:18!9 +REV 3:18!10 +REV 3:18!11 +REV 3:18!12 +REV 3:18!13 +REV 3:18!14 +REV 3:18!15 +REV 3:18!16 +REV 3:18!17 +REV 3:18!18 +REV 3:18!19 +REV 3:18!20 +REV 3:18!21 +REV 3:18!22 +REV 3:18!23 +REV 3:18!24 +REV 3:18!25 +REV 3:18!26 +REV 3:18!27 +REV 3:18!28 +REV 3:18!29 +REV 3:18!30 +REV 3:18!31 +REV 3:18!32 +REV 3:19!1 +REV 3:19!3 +REV 3:19!2 +REV 3:19!4 +REV 3:19!5 +REV 3:19!6 +REV 3:19!7 +REV 3:19!9 +REV 3:19!8 +REV 3:19!10 +REV 3:19!11 +REV 3:20!1 +REV 3:20!2 +REV 3:20!3 +REV 3:20!4 +REV 3:20!5 +REV 3:20!6 +REV 3:20!7 +REV 3:20!8 +REV 3:20!9 +REV 3:20!10 +REV 3:20!11 +REV 3:20!12 +REV 3:20!13 +REV 3:20!14 +REV 3:20!15 +REV 3:20!16 +REV 3:20!17 +REV 3:20!18 +REV 3:20!19 +REV 3:20!20 +REV 3:20!21 +REV 3:20!22 +REV 3:20!23 +REV 3:20!24 +REV 3:20!25 +REV 3:20!26 +REV 3:20!27 +REV 3:20!28 +REV 3:21!1 +REV 3:21!2 +REV 3:21!3 +REV 3:21!4 +REV 3:21!5 +REV 3:21!6 +REV 3:21!7 +REV 3:21!8 +REV 3:21!9 +REV 3:21!10 +REV 3:21!11 +REV 3:21!12 +REV 3:21!13 +REV 3:21!14 +REV 3:21!15 +REV 3:21!16 +REV 3:21!17 +REV 3:21!18 +REV 3:21!19 +REV 3:21!20 +REV 3:21!21 +REV 3:21!22 +REV 3:21!23 +REV 3:21!24 +REV 3:22!1 +REV 3:22!2 +REV 3:22!3 +REV 3:22!4 +REV 3:22!5 +REV 3:22!6 +REV 3:22!7 +REV 3:22!8 +REV 3:22!9 +REV 3:22!10 +REV 4:1!1 +REV 4:1!2 +REV 4:1!3 +REV 4:1!4 +REV 4:1!5 +REV 4:1!6 +REV 4:1!7 +REV 4:1!8 +REV 4:1!9 +REV 4:1!10 +REV 4:1!11 +REV 4:1!12 +REV 4:1!13 +REV 4:1!14 +REV 4:1!15 +REV 4:1!16 +REV 4:1!17 +REV 4:1!18 +REV 4:1!19 +REV 4:1!20 +REV 4:1!21 +REV 4:1!22 +REV 4:1!23 +REV 4:1!24 +REV 4:1!25 +REV 4:1!26 +REV 4:1!27 +REV 4:1!28 +REV 4:1!29 +REV 4:1!31 +REV 4:1!32 +REV 4:1!33 +REV 4:1!30 +REV 4:2!1 +REV 4:2!2 +REV 4:2!3 +REV 4:2!4 +REV 4:2!5 +REV 4:2!6 +REV 4:2!7 +REV 4:2!8 +REV 4:2!9 +REV 4:2!10 +REV 4:2!11 +REV 4:2!12 +REV 4:2!13 +REV 4:2!14 +REV 4:2!15 +REV 4:2!16 +REV 4:3!1 +REV 4:3!2 +REV 4:3!3 +REV 4:3!4 +REV 4:3!5 +REV 4:3!6 +REV 4:3!7 +REV 4:3!8 +REV 4:3!9 +REV 4:3!10 +REV 4:3!11 +REV 4:3!12 +REV 4:3!13 +REV 4:3!14 +REV 4:3!15 +REV 4:3!16 +REV 4:3!17 +REV 4:4!1 +REV 4:4!2 +REV 4:4!3 +REV 4:4!4 +REV 4:4!5 +REV 4:4!6 +REV 4:4!7 +REV 4:4!8 +REV 4:4!9 +REV 4:4!10 +REV 4:4!11 +REV 4:4!12 +REV 4:4!13 +REV 4:4!14 +REV 4:4!15 +REV 4:4!16 +REV 4:4!17 +REV 4:4!18 +REV 4:4!19 +REV 4:4!20 +REV 4:4!21 +REV 4:4!22 +REV 4:4!23 +REV 4:4!24 +REV 4:4!25 +REV 4:4!26 +REV 4:5!1 +REV 4:5!2 +REV 4:5!3 +REV 4:5!4 +REV 4:5!5 +REV 4:5!6 +REV 4:5!7 +REV 4:5!8 +REV 4:5!9 +REV 4:5!10 +REV 4:5!11 +REV 4:5!12 +REV 4:5!13 +REV 4:5!14 +REV 4:5!15 +REV 4:5!16 +REV 4:5!17 +REV 4:5!18 +REV 4:5!19 +REV 4:5!20 +REV 4:5!21 +REV 4:5!22 +REV 4:5!23 +REV 4:5!24 +REV 4:5!25 +REV 4:6!1 +REV 4:6!2 +REV 4:6!3 +REV 4:6!4 +REV 4:6!5 +REV 4:6!6 +REV 4:6!7 +REV 4:6!8 +REV 4:6!9 +REV 4:6!10 +REV 4:6!11 +REV 4:6!12 +REV 4:6!13 +REV 4:6!14 +REV 4:6!15 +REV 4:6!16 +REV 4:6!17 +REV 4:6!18 +REV 4:6!19 +REV 4:6!20 +REV 4:6!21 +REV 4:6!22 +REV 4:6!23 +REV 4:6!24 +REV 4:6!25 +REV 4:7!1 +REV 4:7!2 +REV 4:7!3 +REV 4:7!4 +REV 4:7!5 +REV 4:7!6 +REV 4:7!7 +REV 4:7!8 +REV 4:7!9 +REV 4:7!10 +REV 4:7!11 +REV 4:7!12 +REV 4:7!13 +REV 4:7!14 +REV 4:7!15 +REV 4:7!16 +REV 4:7!17 +REV 4:7!18 +REV 4:7!19 +REV 4:7!20 +REV 4:7!21 +REV 4:7!22 +REV 4:7!23 +REV 4:7!24 +REV 4:7!25 +REV 4:7!26 +REV 4:7!27 +REV 4:7!28 +REV 4:7!29 +REV 4:8!1 +REV 4:8!2 +REV 4:8!3 +REV 4:8!4 +REV 4:8!5 +REV 4:8!6 +REV 4:8!7 +REV 4:8!8 +REV 4:8!9 +REV 4:8!10 +REV 4:8!11 +REV 4:8!12 +REV 4:8!13 +REV 4:8!14 +REV 4:8!15 +REV 4:8!16 +REV 4:8!17 +REV 4:8!18 +REV 4:8!19 +REV 4:8!20 +REV 4:8!21 +REV 4:8!22 +REV 4:8!23 +REV 4:8!24 +REV 4:8!25 +REV 4:8!26 +REV 4:8!27 +REV 4:8!28 +REV 4:8!29 +REV 4:8!30 +REV 4:8!31 +REV 4:8!32 +REV 4:8!33 +REV 4:8!34 +REV 4:8!35 +REV 4:8!36 +REV 4:8!37 +REV 4:8!38 +REV 4:8!39 +REV 4:8!40 +REV 4:8!41 +REV 4:9!1 +REV 4:9!2 +REV 4:9!3 +REV 4:9!4 +REV 4:9!5 +REV 4:9!6 +REV 4:9!7 +REV 4:9!8 +REV 4:9!9 +REV 4:9!10 +REV 4:9!11 +REV 4:9!12 +REV 4:9!13 +REV 4:9!14 +REV 4:9!15 +REV 4:9!16 +REV 4:9!17 +REV 4:9!18 +REV 4:9!19 +REV 4:9!20 +REV 4:9!21 +REV 4:9!22 +REV 4:10!1 +REV 4:10!2 +REV 4:10!3 +REV 4:10!4 +REV 4:10!5 +REV 4:10!6 +REV 4:10!7 +REV 4:10!8 +REV 4:10!9 +REV 4:10!10 +REV 4:10!11 +REV 4:10!12 +REV 4:10!13 +REV 4:10!14 +REV 4:10!15 +REV 4:10!16 +REV 4:10!17 +REV 4:10!18 +REV 4:10!19 +REV 4:10!20 +REV 4:10!21 +REV 4:10!22 +REV 4:10!23 +REV 4:10!24 +REV 4:10!25 +REV 4:10!26 +REV 4:10!27 +REV 4:10!28 +REV 4:10!29 +REV 4:11!3 +REV 4:11!4 +REV 4:11!5 +REV 4:11!6 +REV 4:11!7 +REV 4:11!8 +REV 4:11!1 +REV 4:11!2 +REV 4:11!9 +REV 4:11!10 +REV 4:11!11 +REV 4:11!12 +REV 4:11!13 +REV 4:11!14 +REV 4:11!15 +REV 4:11!16 +REV 4:11!17 +REV 4:11!18 +REV 4:11!19 +REV 4:11!20 +REV 4:11!21 +REV 4:11!22 +REV 4:11!23 +REV 4:11!24 +REV 4:11!25 +REV 4:11!26 +REV 4:11!27 +REV 4:11!28 +REV 4:11!29 +REV 4:11!30 +REV 5:1!1 +REV 5:1!2 +REV 5:1!3 +REV 5:1!4 +REV 5:1!5 +REV 5:1!6 +REV 5:1!7 +REV 5:1!8 +REV 5:1!9 +REV 5:1!10 +REV 5:1!11 +REV 5:1!12 +REV 5:1!13 +REV 5:1!14 +REV 5:1!15 +REV 5:1!16 +REV 5:1!17 +REV 5:1!18 +REV 5:2!1 +REV 5:2!2 +REV 5:2!3 +REV 5:2!4 +REV 5:2!5 +REV 5:2!6 +REV 5:2!7 +REV 5:2!8 +REV 5:2!9 +REV 5:2!10 +REV 5:2!11 +REV 5:2!12 +REV 5:2!13 +REV 5:2!14 +REV 5:2!15 +REV 5:2!16 +REV 5:2!17 +REV 5:2!18 +REV 5:3!1 +REV 5:3!3 +REV 5:3!2 +REV 5:3!4 +REV 5:3!5 +REV 5:3!6 +REV 5:3!7 +REV 5:3!8 +REV 5:3!9 +REV 5:3!10 +REV 5:3!11 +REV 5:3!12 +REV 5:3!13 +REV 5:3!14 +REV 5:3!15 +REV 5:3!16 +REV 5:3!17 +REV 5:3!18 +REV 5:3!19 +REV 5:3!20 +REV 5:4!1 +REV 5:4!2 +REV 5:4!3 +REV 5:4!4 +REV 5:4!5 +REV 5:4!6 +REV 5:4!7 +REV 5:4!8 +REV 5:4!9 +REV 5:4!10 +REV 5:4!11 +REV 5:4!12 +REV 5:4!13 +REV 5:5!1 +REV 5:5!2 +REV 5:5!3 +REV 5:5!4 +REV 5:5!5 +REV 5:5!6 +REV 5:5!7 +REV 5:5!8 +REV 5:5!9 +REV 5:5!10 +REV 5:5!11 +REV 5:5!12 +REV 5:5!13 +REV 5:5!14 +REV 5:5!15 +REV 5:5!16 +REV 5:5!17 +REV 5:5!18 +REV 5:5!19 +REV 5:5!20 +REV 5:5!21 +REV 5:5!22 +REV 5:5!23 +REV 5:5!24 +REV 5:5!25 +REV 5:5!26 +REV 5:5!27 +REV 5:5!28 +REV 5:5!29 +REV 5:6!1 +REV 5:6!2 +REV 5:6!3 +REV 5:6!4 +REV 5:6!5 +REV 5:6!6 +REV 5:6!7 +REV 5:6!8 +REV 5:6!9 +REV 5:6!10 +REV 5:6!11 +REV 5:6!12 +REV 5:6!13 +REV 5:6!14 +REV 5:6!15 +REV 5:6!16 +REV 5:6!17 +REV 5:6!18 +REV 5:6!19 +REV 5:6!20 +REV 5:6!21 +REV 5:6!22 +REV 5:6!23 +REV 5:6!24 +REV 5:6!25 +REV 5:6!26 +REV 5:6!27 +REV 5:6!28 +REV 5:6!29 +REV 5:6!30 +REV 5:6!31 +REV 5:6!32 +REV 5:6!33 +REV 5:6!34 +REV 5:6!35 +REV 5:6!36 +REV 5:6!37 +REV 5:7!1 +REV 5:7!2 +REV 5:7!3 +REV 5:7!4 +REV 5:7!5 +REV 5:7!6 +REV 5:7!7 +REV 5:7!8 +REV 5:7!9 +REV 5:7!10 +REV 5:7!11 +REV 5:7!12 +REV 5:8!1 +REV 5:8!2 +REV 5:8!3 +REV 5:8!4 +REV 5:8!5 +REV 5:8!6 +REV 5:8!7 +REV 5:8!8 +REV 5:8!9 +REV 5:8!10 +REV 5:8!11 +REV 5:8!12 +REV 5:8!13 +REV 5:8!14 +REV 5:8!15 +REV 5:8!16 +REV 5:8!17 +REV 5:8!18 +REV 5:8!19 +REV 5:8!20 +REV 5:8!21 +REV 5:8!22 +REV 5:8!23 +REV 5:8!24 +REV 5:8!25 +REV 5:8!26 +REV 5:8!27 +REV 5:8!28 +REV 5:8!29 +REV 5:8!30 +REV 5:8!31 +REV 5:9!1 +REV 5:9!2 +REV 5:9!3 +REV 5:9!4 +REV 5:9!5 +REV 5:9!6 +REV 5:9!7 +REV 5:9!8 +REV 5:9!9 +REV 5:9!10 +REV 5:9!11 +REV 5:9!12 +REV 5:9!13 +REV 5:9!14 +REV 5:9!15 +REV 5:9!16 +REV 5:9!17 +REV 5:9!18 +REV 5:9!19 +REV 5:9!20 +REV 5:9!21 +REV 5:9!22 +REV 5:9!23 +REV 5:9!24 +REV 5:9!25 +REV 5:9!26 +REV 5:9!27 +REV 5:9!28 +REV 5:9!29 +REV 5:9!30 +REV 5:9!31 +REV 5:9!32 +REV 5:9!33 +REV 5:9!34 +REV 5:10!1 +REV 5:10!2 +REV 5:10!3 +REV 5:10!4 +REV 5:10!5 +REV 5:10!6 +REV 5:10!7 +REV 5:10!8 +REV 5:10!9 +REV 5:10!10 +REV 5:10!11 +REV 5:10!12 +REV 5:10!13 +REV 5:10!14 +REV 5:11!1 +REV 5:11!2 +REV 5:11!3 +REV 5:11!4 +REV 5:11!5 +REV 5:11!6 +REV 5:11!7 +REV 5:11!8 +REV 5:11!9 +REV 5:11!10 +REV 5:11!11 +REV 5:11!12 +REV 5:11!13 +REV 5:11!14 +REV 5:11!15 +REV 5:11!16 +REV 5:11!17 +REV 5:11!18 +REV 5:11!19 +REV 5:11!20 +REV 5:11!21 +REV 5:11!22 +REV 5:11!23 +REV 5:11!24 +REV 5:11!25 +REV 5:11!26 +REV 5:12!1 +REV 5:12!2 +REV 5:12!3 +REV 5:12!4 +REV 5:12!5 +REV 5:12!6 +REV 5:12!7 +REV 5:12!8 +REV 5:12!9 +REV 5:12!10 +REV 5:12!11 +REV 5:12!12 +REV 5:12!13 +REV 5:12!14 +REV 5:12!15 +REV 5:12!16 +REV 5:12!17 +REV 5:12!18 +REV 5:12!19 +REV 5:12!20 +REV 5:12!21 +REV 5:12!22 +REV 5:12!23 +REV 5:12!24 +REV 5:13!1 +REV 5:13!2 +REV 5:13!3 +REV 5:13!4 +REV 5:13!5 +REV 5:13!6 +REV 5:13!7 +REV 5:13!8 +REV 5:13!9 +REV 5:13!10 +REV 5:13!11 +REV 5:13!12 +REV 5:13!13 +REV 5:13!14 +REV 5:13!15 +REV 5:13!16 +REV 5:13!17 +REV 5:13!18 +REV 5:13!19 +REV 5:13!20 +REV 5:13!21 +REV 5:13!22 +REV 5:13!23 +REV 5:13!24 +REV 5:13!25 +REV 5:13!27 +REV 5:13!26 +REV 5:13!28 +REV 5:13!29 +REV 5:13!30 +REV 5:13!31 +REV 5:13!32 +REV 5:13!33 +REV 5:13!34 +REV 5:13!35 +REV 5:13!36 +REV 5:13!37 +REV 5:13!38 +REV 5:13!39 +REV 5:13!40 +REV 5:13!41 +REV 5:13!42 +REV 5:13!43 +REV 5:13!44 +REV 5:13!45 +REV 5:13!46 +REV 5:13!47 +REV 5:13!48 +REV 5:13!49 +REV 5:13!50 +REV 5:13!51 +REV 5:14!1 +REV 5:14!2 +REV 5:14!3 +REV 5:14!4 +REV 5:14!5 +REV 5:14!6 +REV 5:14!7 +REV 5:14!8 +REV 5:14!9 +REV 5:14!10 +REV 5:14!11 +REV 5:14!12 +REV 6:1!1 +REV 6:1!2 +REV 6:1!3 +REV 6:1!4 +REV 6:1!5 +REV 6:1!6 +REV 6:1!7 +REV 6:1!8 +REV 6:1!9 +REV 6:1!10 +REV 6:1!11 +REV 6:1!12 +REV 6:1!13 +REV 6:1!14 +REV 6:1!15 +REV 6:1!16 +REV 6:1!17 +REV 6:1!18 +REV 6:1!19 +REV 6:1!20 +REV 6:1!21 +REV 6:1!22 +REV 6:1!23 +REV 6:2!1 +REV 6:2!2 +REV 6:2!3 +REV 6:2!4 +REV 6:2!5 +REV 6:2!6 +REV 6:2!7 +REV 6:2!8 +REV 6:2!9 +REV 6:2!10 +REV 6:2!11 +REV 6:2!12 +REV 6:2!13 +REV 6:2!14 +REV 6:2!15 +REV 6:2!16 +REV 6:2!17 +REV 6:2!18 +REV 6:2!19 +REV 6:2!20 +REV 6:2!21 +REV 6:2!22 +REV 6:2!23 +REV 6:3!1 +REV 6:3!2 +REV 6:3!3 +REV 6:3!4 +REV 6:3!5 +REV 6:3!6 +REV 6:3!7 +REV 6:3!8 +REV 6:3!9 +REV 6:3!10 +REV 6:3!11 +REV 6:3!12 +REV 6:3!13 +REV 6:4!1 +REV 6:4!2 +REV 6:4!3 +REV 6:4!4 +REV 6:4!5 +REV 6:4!6 +REV 6:4!7 +REV 6:4!8 +REV 6:4!9 +REV 6:4!10 +REV 6:4!11 +REV 6:4!12 +REV 6:4!13 +REV 6:4!14 +REV 6:4!15 +REV 6:4!16 +REV 6:4!17 +REV 6:4!18 +REV 6:4!19 +REV 6:4!20 +REV 6:4!21 +REV 6:4!22 +REV 6:4!23 +REV 6:4!24 +REV 6:4!25 +REV 6:4!26 +REV 6:4!27 +REV 6:5!1 +REV 6:5!2 +REV 6:5!3 +REV 6:5!4 +REV 6:5!5 +REV 6:5!6 +REV 6:5!7 +REV 6:5!8 +REV 6:5!9 +REV 6:5!10 +REV 6:5!11 +REV 6:5!12 +REV 6:5!13 +REV 6:5!14 +REV 6:5!15 +REV 6:5!16 +REV 6:5!17 +REV 6:5!18 +REV 6:5!19 +REV 6:5!20 +REV 6:5!21 +REV 6:5!22 +REV 6:5!23 +REV 6:5!24 +REV 6:5!25 +REV 6:5!26 +REV 6:5!27 +REV 6:5!28 +REV 6:5!29 +REV 6:5!30 +REV 6:6!1 +REV 6:6!2 +REV 6:6!3 +REV 6:6!4 +REV 6:6!5 +REV 6:6!6 +REV 6:6!7 +REV 6:6!8 +REV 6:6!9 +REV 6:6!10 +REV 6:6!11 +REV 6:6!12 +REV 6:6!13 +REV 6:6!14 +REV 6:6!15 +REV 6:6!16 +REV 6:6!17 +REV 6:6!18 +REV 6:6!19 +REV 6:6!20 +REV 6:6!21 +REV 6:6!22 +REV 6:6!23 +REV 6:6!24 +REV 6:6!25 +REV 6:6!26 +REV 6:7!1 +REV 6:7!2 +REV 6:7!3 +REV 6:7!4 +REV 6:7!5 +REV 6:7!6 +REV 6:7!7 +REV 6:7!8 +REV 6:7!9 +REV 6:7!10 +REV 6:7!11 +REV 6:7!12 +REV 6:7!13 +REV 6:7!14 +REV 6:8!1 +REV 6:8!2 +REV 6:8!3 +REV 6:8!4 +REV 6:8!5 +REV 6:8!6 +REV 6:8!7 +REV 6:8!8 +REV 6:8!9 +REV 6:8!10 +REV 6:8!11 +REV 6:8!12 +REV 6:8!13 +REV 6:8!14 +REV 6:8!15 +REV 6:8!16 +REV 6:8!17 +REV 6:8!18 +REV 6:8!19 +REV 6:8!20 +REV 6:8!21 +REV 6:8!22 +REV 6:8!23 +REV 6:8!24 +REV 6:8!25 +REV 6:8!26 +REV 6:8!27 +REV 6:8!28 +REV 6:8!29 +REV 6:8!30 +REV 6:8!31 +REV 6:8!32 +REV 6:8!33 +REV 6:8!34 +REV 6:8!35 +REV 6:8!36 +REV 6:8!37 +REV 6:8!38 +REV 6:8!39 +REV 6:8!40 +REV 6:8!41 +REV 6:8!42 +REV 6:8!43 +REV 6:8!44 +REV 6:8!45 +REV 6:9!1 +REV 6:9!2 +REV 6:9!3 +REV 6:9!4 +REV 6:9!5 +REV 6:9!6 +REV 6:9!7 +REV 6:9!8 +REV 6:9!9 +REV 6:9!10 +REV 6:9!11 +REV 6:9!12 +REV 6:9!13 +REV 6:9!14 +REV 6:9!15 +REV 6:9!16 +REV 6:9!17 +REV 6:9!18 +REV 6:9!19 +REV 6:9!20 +REV 6:9!21 +REV 6:9!22 +REV 6:9!23 +REV 6:9!24 +REV 6:9!25 +REV 6:10!1 +REV 6:10!2 +REV 6:10!3 +REV 6:10!4 +REV 6:10!5 +REV 6:10!8 +REV 6:10!9 +REV 6:10!10 +REV 6:10!11 +REV 6:10!12 +REV 6:10!13 +REV 6:10!6 +REV 6:10!7 +REV 6:10!14 +REV 6:10!15 +REV 6:10!16 +REV 6:10!17 +REV 6:10!18 +REV 6:10!19 +REV 6:10!20 +REV 6:10!21 +REV 6:10!22 +REV 6:10!23 +REV 6:10!24 +REV 6:10!25 +REV 6:10!26 +REV 6:11!1 +REV 6:11!2 +REV 6:11!3 +REV 6:11!4 +REV 6:11!5 +REV 6:11!6 +REV 6:11!7 +REV 6:11!8 +REV 6:11!9 +REV 6:11!10 +REV 6:11!11 +REV 6:11!12 +REV 6:11!13 +REV 6:11!14 +REV 6:11!15 +REV 6:11!16 +REV 6:11!17 +REV 6:11!18 +REV 6:11!19 +REV 6:11!20 +REV 6:11!21 +REV 6:11!22 +REV 6:11!23 +REV 6:11!24 +REV 6:11!25 +REV 6:11!26 +REV 6:11!27 +REV 6:11!28 +REV 6:11!29 +REV 6:11!30 +REV 6:12!1 +REV 6:12!2 +REV 6:12!3 +REV 6:12!4 +REV 6:12!5 +REV 6:12!6 +REV 6:12!7 +REV 6:12!8 +REV 6:12!9 +REV 6:12!10 +REV 6:12!11 +REV 6:12!12 +REV 6:12!13 +REV 6:12!14 +REV 6:12!15 +REV 6:12!16 +REV 6:12!17 +REV 6:12!18 +REV 6:12!19 +REV 6:12!20 +REV 6:12!21 +REV 6:12!22 +REV 6:12!23 +REV 6:12!24 +REV 6:12!25 +REV 6:12!26 +REV 6:12!27 +REV 6:13!1 +REV 6:13!2 +REV 6:13!3 +REV 6:13!4 +REV 6:13!5 +REV 6:13!6 +REV 6:13!7 +REV 6:13!8 +REV 6:13!9 +REV 6:13!10 +REV 6:13!11 +REV 6:13!12 +REV 6:13!13 +REV 6:13!14 +REV 6:13!15 +REV 6:13!16 +REV 6:13!17 +REV 6:13!18 +REV 6:13!19 +REV 6:14!1 +REV 6:14!2 +REV 6:14!3 +REV 6:14!4 +REV 6:14!5 +REV 6:14!6 +REV 6:14!7 +REV 6:14!8 +REV 6:14!9 +REV 6:14!10 +REV 6:14!11 +REV 6:14!12 +REV 6:14!13 +REV 6:14!14 +REV 6:14!15 +REV 6:14!16 +REV 6:14!17 +REV 6:15!1 +REV 6:15!2 +REV 6:15!3 +REV 6:15!4 +REV 6:15!5 +REV 6:15!6 +REV 6:15!7 +REV 6:15!8 +REV 6:15!9 +REV 6:15!10 +REV 6:15!11 +REV 6:15!12 +REV 6:15!13 +REV 6:15!14 +REV 6:15!15 +REV 6:15!16 +REV 6:15!17 +REV 6:15!18 +REV 6:15!19 +REV 6:15!20 +REV 6:15!21 +REV 6:15!22 +REV 6:15!23 +REV 6:15!24 +REV 6:15!25 +REV 6:15!26 +REV 6:15!27 +REV 6:15!28 +REV 6:15!29 +REV 6:15!30 +REV 6:15!31 +REV 6:15!32 +REV 6:15!33 +REV 6:16!1 +REV 6:16!2 +REV 6:16!3 +REV 6:16!4 +REV 6:16!5 +REV 6:16!6 +REV 6:16!7 +REV 6:16!8 +REV 6:16!9 +REV 6:16!10 +REV 6:16!11 +REV 6:16!12 +REV 6:16!13 +REV 6:16!14 +REV 6:16!15 +REV 6:16!16 +REV 6:16!17 +REV 6:16!18 +REV 6:16!19 +REV 6:16!20 +REV 6:16!21 +REV 6:16!22 +REV 6:16!23 +REV 6:16!24 +REV 6:16!25 +REV 6:16!26 +REV 6:17!1 +REV 6:17!2 +REV 6:17!3 +REV 6:17!4 +REV 6:17!5 +REV 6:17!6 +REV 6:17!7 +REV 6:17!8 +REV 6:17!9 +REV 6:17!10 +REV 6:17!11 +REV 6:17!12 +REV 6:17!13 +REV 7:1!1 +REV 7:1!2 +REV 7:1!3 +REV 7:1!4 +REV 7:1!5 +REV 7:1!6 +REV 7:1!7 +REV 7:1!8 +REV 7:1!9 +REV 7:1!10 +REV 7:1!11 +REV 7:1!12 +REV 7:1!13 +REV 7:1!14 +REV 7:1!15 +REV 7:1!16 +REV 7:1!17 +REV 7:1!18 +REV 7:1!19 +REV 7:1!20 +REV 7:1!21 +REV 7:1!22 +REV 7:1!23 +REV 7:1!24 +REV 7:1!25 +REV 7:1!26 +REV 7:1!27 +REV 7:1!28 +REV 7:1!29 +REV 7:1!30 +REV 7:1!31 +REV 7:1!32 +REV 7:1!33 +REV 7:2!1 +REV 7:2!2 +REV 7:2!3 +REV 7:2!4 +REV 7:2!5 +REV 7:2!6 +REV 7:2!7 +REV 7:2!8 +REV 7:2!9 +REV 7:2!10 +REV 7:2!11 +REV 7:2!12 +REV 7:2!13 +REV 7:2!14 +REV 7:2!15 +REV 7:2!16 +REV 7:2!17 +REV 7:2!18 +REV 7:2!19 +REV 7:2!20 +REV 7:2!22 +REV 7:2!21 +REV 7:2!23 +REV 7:2!24 +REV 7:2!25 +REV 7:2!26 +REV 7:2!27 +REV 7:2!28 +REV 7:3!1 +REV 7:3!2 +REV 7:3!3 +REV 7:3!4 +REV 7:3!5 +REV 7:3!6 +REV 7:3!7 +REV 7:3!8 +REV 7:3!9 +REV 7:3!10 +REV 7:3!11 +REV 7:3!12 +REV 7:3!13 +REV 7:3!14 +REV 7:3!15 +REV 7:3!16 +REV 7:3!17 +REV 7:3!18 +REV 7:3!19 +REV 7:3!20 +REV 7:3!21 +REV 7:3!22 +REV 7:4!1 +REV 7:4!2 +REV 7:4!3 +REV 7:4!4 +REV 7:4!5 +REV 7:4!6 +REV 7:4!7 +REV 7:4!8 +REV 7:4!9 +REV 7:4!10 +REV 7:4!11 +REV 7:4!12 +REV 7:4!13 +REV 7:4!14 +REV 7:4!15 +REV 7:4!16 +REV 7:5!1 +REV 7:5!2 +REV 7:5!3 +REV 7:5!4 +REV 7:5!5 +REV 7:5!6 +REV 7:5!7 +REV 7:5!8 +REV 7:5!9 +REV 7:5!10 +REV 7:5!11 +REV 7:5!12 +REV 7:5!13 +REV 7:5!14 +REV 7:5!15 +REV 7:5!16 +REV 7:6!1 +REV 7:6!2 +REV 7:6!3 +REV 7:6!4 +REV 7:6!5 +REV 7:6!6 +REV 7:6!7 +REV 7:6!8 +REV 7:6!9 +REV 7:6!10 +REV 7:6!11 +REV 7:6!12 +REV 7:6!13 +REV 7:6!14 +REV 7:6!15 +REV 7:7!1 +REV 7:7!2 +REV 7:7!3 +REV 7:7!4 +REV 7:7!5 +REV 7:7!6 +REV 7:7!7 +REV 7:7!8 +REV 7:7!9 +REV 7:7!10 +REV 7:7!11 +REV 7:7!12 +REV 7:7!13 +REV 7:7!14 +REV 7:7!15 +REV 7:8!1 +REV 7:8!2 +REV 7:8!3 +REV 7:8!4 +REV 7:8!5 +REV 7:8!6 +REV 7:8!7 +REV 7:8!8 +REV 7:8!9 +REV 7:8!10 +REV 7:8!11 +REV 7:8!12 +REV 7:8!13 +REV 7:8!14 +REV 7:8!15 +REV 7:8!16 +REV 7:9!1 +REV 7:9!2 +REV 7:9!3 +REV 7:9!4 +REV 7:9!5 +REV 7:9!6 +REV 7:9!7 +REV 7:9!8 +REV 7:9!10 +REV 7:9!9 +REV 7:9!11 +REV 7:9!12 +REV 7:9!13 +REV 7:9!14 +REV 7:9!15 +REV 7:9!16 +REV 7:9!17 +REV 7:9!18 +REV 7:9!19 +REV 7:9!20 +REV 7:9!21 +REV 7:9!22 +REV 7:9!23 +REV 7:9!24 +REV 7:9!25 +REV 7:9!26 +REV 7:9!27 +REV 7:9!28 +REV 7:9!29 +REV 7:9!30 +REV 7:9!31 +REV 7:9!32 +REV 7:9!33 +REV 7:9!34 +REV 7:9!35 +REV 7:9!36 +REV 7:9!37 +REV 7:9!38 +REV 7:10!1 +REV 7:10!2 +REV 7:10!3 +REV 7:10!4 +REV 7:10!5 +REV 7:10!6 +REV 7:10!7 +REV 7:10!8 +REV 7:10!9 +REV 7:10!10 +REV 7:10!11 +REV 7:10!12 +REV 7:10!13 +REV 7:10!14 +REV 7:10!15 +REV 7:10!16 +REV 7:10!17 +REV 7:10!18 +REV 7:11!1 +REV 7:11!2 +REV 7:11!3 +REV 7:11!4 +REV 7:11!5 +REV 7:11!6 +REV 7:11!7 +REV 7:11!8 +REV 7:11!9 +REV 7:11!10 +REV 7:11!11 +REV 7:11!12 +REV 7:11!13 +REV 7:11!14 +REV 7:11!15 +REV 7:11!16 +REV 7:11!17 +REV 7:11!18 +REV 7:11!19 +REV 7:11!20 +REV 7:11!21 +REV 7:11!22 +REV 7:11!23 +REV 7:11!24 +REV 7:11!25 +REV 7:11!26 +REV 7:11!27 +REV 7:11!28 +REV 7:12!1 +REV 7:12!2 +REV 7:12!3 +REV 7:12!4 +REV 7:12!5 +REV 7:12!6 +REV 7:12!7 +REV 7:12!8 +REV 7:12!9 +REV 7:12!10 +REV 7:12!11 +REV 7:12!12 +REV 7:12!13 +REV 7:12!14 +REV 7:12!15 +REV 7:12!16 +REV 7:12!17 +REV 7:12!18 +REV 7:12!19 +REV 7:12!20 +REV 7:12!21 +REV 7:12!22 +REV 7:12!23 +REV 7:12!24 +REV 7:12!25 +REV 7:12!26 +REV 7:12!27 +REV 7:12!28 +REV 7:12!29 +REV 7:12!30 +REV 7:12!31 +REV 7:13!1 +REV 7:13!2 +REV 7:13!3 +REV 7:13!4 +REV 7:13!5 +REV 7:13!6 +REV 7:13!7 +REV 7:13!8 +REV 7:13!9 +REV 7:13!10 +REV 7:13!11 +REV 7:13!12 +REV 7:13!13 +REV 7:13!14 +REV 7:13!15 +REV 7:13!16 +REV 7:13!17 +REV 7:13!18 +REV 7:13!19 +REV 7:13!20 +REV 7:14!1 +REV 7:14!2 +REV 7:14!3 +REV 7:14!4 +REV 7:14!5 +REV 7:14!6 +REV 7:14!7 +REV 7:14!8 +REV 7:14!9 +REV 7:14!10 +REV 7:14!11 +REV 7:14!12 +REV 7:14!13 +REV 7:14!14 +REV 7:14!15 +REV 7:14!16 +REV 7:14!17 +REV 7:14!18 +REV 7:14!19 +REV 7:14!20 +REV 7:14!21 +REV 7:14!22 +REV 7:14!23 +REV 7:14!24 +REV 7:14!25 +REV 7:14!26 +REV 7:14!27 +REV 7:14!28 +REV 7:14!29 +REV 7:14!30 +REV 7:14!31 +REV 7:14!32 +REV 7:15!1 +REV 7:15!2 +REV 7:15!3 +REV 7:15!4 +REV 7:15!5 +REV 7:15!6 +REV 7:15!7 +REV 7:15!8 +REV 7:15!9 +REV 7:15!10 +REV 7:15!11 +REV 7:15!12 +REV 7:15!13 +REV 7:15!14 +REV 7:15!15 +REV 7:15!16 +REV 7:15!17 +REV 7:15!18 +REV 7:15!19 +REV 7:15!20 +REV 7:15!21 +REV 7:15!22 +REV 7:15!23 +REV 7:15!24 +REV 7:15!25 +REV 7:15!26 +REV 7:15!27 +REV 7:16!1 +REV 7:16!2 +REV 7:16!3 +REV 7:16!4 +REV 7:16!5 +REV 7:16!6 +REV 7:16!7 +REV 7:16!8 +REV 7:16!9 +REV 7:16!10 +REV 7:16!11 +REV 7:16!12 +REV 7:16!13 +REV 7:16!14 +REV 7:16!15 +REV 7:16!16 +REV 7:17!1 +REV 7:17!2 +REV 7:17!3 +REV 7:17!4 +REV 7:17!5 +REV 7:17!6 +REV 7:17!7 +REV 7:17!8 +REV 7:17!9 +REV 7:17!10 +REV 7:17!11 +REV 7:17!12 +REV 7:17!13 +REV 7:17!14 +REV 7:17!15 +REV 7:17!16 +REV 7:17!17 +REV 7:17!18 +REV 7:17!19 +REV 7:17!20 +REV 7:17!21 +REV 7:17!22 +REV 7:17!23 +REV 7:17!24 +REV 7:17!25 +REV 7:17!26 +REV 7:17!27 +REV 8:1!1 +REV 8:1!2 +REV 8:1!3 +REV 8:1!4 +REV 8:1!5 +REV 8:1!6 +REV 8:1!7 +REV 8:1!8 +REV 8:1!9 +REV 8:1!10 +REV 8:1!11 +REV 8:1!12 +REV 8:1!13 +REV 8:1!14 +REV 8:2!1 +REV 8:2!2 +REV 8:2!3 +REV 8:2!4 +REV 8:2!5 +REV 8:2!6 +REV 8:2!7 +REV 8:2!8 +REV 8:2!9 +REV 8:2!10 +REV 8:2!11 +REV 8:2!12 +REV 8:2!13 +REV 8:2!14 +REV 8:2!15 +REV 8:3!1 +REV 8:3!2 +REV 8:3!3 +REV 8:3!4 +REV 8:3!5 +REV 8:3!6 +REV 8:3!7 +REV 8:3!8 +REV 8:3!9 +REV 8:3!10 +REV 8:3!11 +REV 8:3!12 +REV 8:3!13 +REV 8:3!14 +REV 8:3!15 +REV 8:3!16 +REV 8:3!17 +REV 8:3!18 +REV 8:3!19 +REV 8:3!20 +REV 8:3!21 +REV 8:3!22 +REV 8:3!23 +REV 8:3!24 +REV 8:3!25 +REV 8:3!26 +REV 8:3!27 +REV 8:3!28 +REV 8:3!29 +REV 8:3!30 +REV 8:3!31 +REV 8:3!32 +REV 8:3!33 +REV 8:4!1 +REV 8:4!2 +REV 8:4!3 +REV 8:4!4 +REV 8:4!5 +REV 8:4!6 +REV 8:4!7 +REV 8:4!8 +REV 8:4!9 +REV 8:4!10 +REV 8:4!11 +REV 8:4!12 +REV 8:4!13 +REV 8:4!14 +REV 8:4!15 +REV 8:4!16 +REV 8:4!17 +REV 8:5!1 +REV 8:5!2 +REV 8:5!3 +REV 8:5!4 +REV 8:5!5 +REV 8:5!6 +REV 8:5!7 +REV 8:5!8 +REV 8:5!9 +REV 8:5!10 +REV 8:5!11 +REV 8:5!12 +REV 8:5!13 +REV 8:5!14 +REV 8:5!15 +REV 8:5!16 +REV 8:5!17 +REV 8:5!18 +REV 8:5!19 +REV 8:5!20 +REV 8:5!21 +REV 8:5!22 +REV 8:5!23 +REV 8:5!24 +REV 8:5!25 +REV 8:5!26 +REV 8:5!27 +REV 8:5!28 +REV 8:6!1 +REV 8:6!2 +REV 8:6!3 +REV 8:6!4 +REV 8:6!5 +REV 8:6!6 +REV 8:6!7 +REV 8:6!8 +REV 8:6!9 +REV 8:6!10 +REV 8:6!11 +REV 8:6!12 +REV 8:6!13 +REV 8:7!1 +REV 8:7!2 +REV 8:7!3 +REV 8:7!4 +REV 8:7!5 +REV 8:7!6 +REV 8:7!7 +REV 8:7!8 +REV 8:7!9 +REV 8:7!10 +REV 8:7!11 +REV 8:7!12 +REV 8:7!13 +REV 8:7!14 +REV 8:7!15 +REV 8:7!16 +REV 8:7!17 +REV 8:7!18 +REV 8:7!19 +REV 8:7!20 +REV 8:7!21 +REV 8:7!22 +REV 8:7!23 +REV 8:7!24 +REV 8:7!25 +REV 8:7!26 +REV 8:7!27 +REV 8:7!28 +REV 8:7!29 +REV 8:7!30 +REV 8:7!31 +REV 8:7!32 +REV 8:7!33 +REV 8:7!34 +REV 8:8!1 +REV 8:8!2 +REV 8:8!3 +REV 8:8!4 +REV 8:8!5 +REV 8:8!6 +REV 8:8!7 +REV 8:8!8 +REV 8:8!9 +REV 8:8!10 +REV 8:8!11 +REV 8:8!12 +REV 8:8!13 +REV 8:8!14 +REV 8:8!15 +REV 8:8!16 +REV 8:8!17 +REV 8:8!18 +REV 8:8!19 +REV 8:8!20 +REV 8:8!21 +REV 8:8!22 +REV 8:9!1 +REV 8:9!2 +REV 8:9!3 +REV 8:9!4 +REV 8:9!5 +REV 8:9!6 +REV 8:9!7 +REV 8:9!8 +REV 8:9!9 +REV 8:9!10 +REV 8:9!11 +REV 8:9!12 +REV 8:9!13 +REV 8:9!14 +REV 8:9!15 +REV 8:9!16 +REV 8:9!17 +REV 8:9!18 +REV 8:9!19 +REV 8:10!1 +REV 8:10!2 +REV 8:10!3 +REV 8:10!4 +REV 8:10!5 +REV 8:10!6 +REV 8:10!7 +REV 8:10!8 +REV 8:10!9 +REV 8:10!10 +REV 8:10!11 +REV 8:10!12 +REV 8:10!13 +REV 8:10!14 +REV 8:10!15 +REV 8:10!16 +REV 8:10!17 +REV 8:10!18 +REV 8:10!19 +REV 8:10!20 +REV 8:10!21 +REV 8:10!22 +REV 8:10!23 +REV 8:10!24 +REV 8:10!25 +REV 8:10!26 +REV 8:10!27 +REV 8:10!28 +REV 8:11!1 +REV 8:11!2 +REV 8:11!3 +REV 8:11!4 +REV 8:11!5 +REV 8:11!6 +REV 8:11!7 +REV 8:11!8 +REV 8:11!9 +REV 8:11!10 +REV 8:11!11 +REV 8:11!12 +REV 8:11!13 +REV 8:11!14 +REV 8:11!15 +REV 8:11!16 +REV 8:11!17 +REV 8:11!18 +REV 8:11!19 +REV 8:11!20 +REV 8:11!21 +REV 8:11!22 +REV 8:11!23 +REV 8:11!24 +REV 8:11!25 +REV 8:11!26 +REV 8:12!1 +REV 8:12!2 +REV 8:12!3 +REV 8:12!4 +REV 8:12!5 +REV 8:12!6 +REV 8:12!7 +REV 8:12!8 +REV 8:12!9 +REV 8:12!10 +REV 8:12!11 +REV 8:12!12 +REV 8:12!13 +REV 8:12!14 +REV 8:12!15 +REV 8:12!16 +REV 8:12!17 +REV 8:12!18 +REV 8:12!19 +REV 8:12!20 +REV 8:12!21 +REV 8:12!22 +REV 8:12!23 +REV 8:12!24 +REV 8:12!25 +REV 8:12!26 +REV 8:12!27 +REV 8:12!28 +REV 8:12!29 +REV 8:12!30 +REV 8:12!31 +REV 8:12!32 +REV 8:12!33 +REV 8:12!34 +REV 8:12!35 +REV 8:12!36 +REV 8:12!37 +REV 8:12!38 +REV 8:13!1 +REV 8:13!2 +REV 8:13!3 +REV 8:13!4 +REV 8:13!5 +REV 8:13!6 +REV 8:13!7 +REV 8:13!8 +REV 8:13!9 +REV 8:13!10 +REV 8:13!11 +REV 8:13!12 +REV 8:13!13 +REV 8:13!14 +REV 8:13!15 +REV 8:13!16 +REV 8:13!17 +REV 8:13!18 +REV 8:13!19 +REV 8:13!20 +REV 8:13!21 +REV 8:13!22 +REV 8:13!23 +REV 8:13!24 +REV 8:13!25 +REV 8:13!26 +REV 8:13!27 +REV 8:13!28 +REV 8:13!29 +REV 8:13!30 +REV 8:13!31 +REV 8:13!32 +REV 9:1!1 +REV 9:1!2 +REV 9:1!3 +REV 9:1!4 +REV 9:1!5 +REV 9:1!6 +REV 9:1!7 +REV 9:1!8 +REV 9:1!9 +REV 9:1!10 +REV 9:1!11 +REV 9:1!12 +REV 9:1!13 +REV 9:1!14 +REV 9:1!15 +REV 9:1!16 +REV 9:1!17 +REV 9:1!18 +REV 9:1!19 +REV 9:1!20 +REV 9:1!21 +REV 9:1!22 +REV 9:1!23 +REV 9:1!24 +REV 9:2!1 +REV 9:2!2 +REV 9:2!3 +REV 9:2!4 +REV 9:2!5 +REV 9:2!6 +REV 9:2!7 +REV 9:2!8 +REV 9:2!9 +REV 9:2!10 +REV 9:2!11 +REV 9:2!12 +REV 9:2!13 +REV 9:2!14 +REV 9:2!15 +REV 9:2!16 +REV 9:2!17 +REV 9:2!18 +REV 9:2!19 +REV 9:2!20 +REV 9:2!21 +REV 9:2!22 +REV 9:2!23 +REV 9:2!24 +REV 9:2!25 +REV 9:2!26 +REV 9:2!27 +REV 9:2!28 +REV 9:3!1 +REV 9:3!2 +REV 9:3!3 +REV 9:3!4 +REV 9:3!5 +REV 9:3!6 +REV 9:3!7 +REV 9:3!8 +REV 9:3!9 +REV 9:3!10 +REV 9:3!11 +REV 9:3!12 +REV 9:3!13 +REV 9:3!14 +REV 9:3!15 +REV 9:3!16 +REV 9:3!17 +REV 9:3!18 +REV 9:3!19 +REV 9:3!20 +REV 9:4!1 +REV 9:4!2 +REV 9:4!3 +REV 9:4!4 +REV 9:4!5 +REV 9:4!6 +REV 9:4!7 +REV 9:4!8 +REV 9:4!9 +REV 9:4!10 +REV 9:4!11 +REV 9:4!12 +REV 9:4!13 +REV 9:4!14 +REV 9:4!15 +REV 9:4!16 +REV 9:4!17 +REV 9:4!18 +REV 9:4!19 +REV 9:4!20 +REV 9:4!21 +REV 9:4!22 +REV 9:4!23 +REV 9:4!24 +REV 9:4!25 +REV 9:4!26 +REV 9:4!27 +REV 9:4!28 +REV 9:4!29 +REV 9:4!30 +REV 9:5!1 +REV 9:5!2 +REV 9:5!3 +REV 9:5!4 +REV 9:5!5 +REV 9:5!6 +REV 9:5!7 +REV 9:5!8 +REV 9:5!9 +REV 9:5!10 +REV 9:5!11 +REV 9:5!12 +REV 9:5!13 +REV 9:5!14 +REV 9:5!15 +REV 9:5!16 +REV 9:5!17 +REV 9:5!18 +REV 9:5!19 +REV 9:5!20 +REV 9:5!21 +REV 9:5!22 +REV 9:6!1 +REV 9:6!2 +REV 9:6!3 +REV 9:6!4 +REV 9:6!5 +REV 9:6!6 +REV 9:6!7 +REV 9:6!8 +REV 9:6!9 +REV 9:6!10 +REV 9:6!11 +REV 9:6!12 +REV 9:6!13 +REV 9:6!14 +REV 9:6!15 +REV 9:6!16 +REV 9:6!17 +REV 9:6!18 +REV 9:6!19 +REV 9:6!20 +REV 9:6!21 +REV 9:6!22 +REV 9:6!23 +REV 9:6!24 +REV 9:7!1 +REV 9:7!2 +REV 9:7!3 +REV 9:7!4 +REV 9:7!5 +REV 9:7!6 +REV 9:7!7 +REV 9:7!8 +REV 9:7!9 +REV 9:7!10 +REV 9:7!11 +REV 9:7!12 +REV 9:7!13 +REV 9:7!14 +REV 9:7!15 +REV 9:7!16 +REV 9:7!17 +REV 9:7!18 +REV 9:7!19 +REV 9:7!20 +REV 9:7!21 +REV 9:7!22 +REV 9:7!23 +REV 9:7!24 +REV 9:7!25 +REV 9:7!26 +REV 9:8!1 +REV 9:8!2 +REV 9:8!3 +REV 9:8!4 +REV 9:8!5 +REV 9:8!6 +REV 9:8!7 +REV 9:8!8 +REV 9:8!9 +REV 9:8!10 +REV 9:8!11 +REV 9:8!12 +REV 9:8!13 +REV 9:9!1 +REV 9:9!2 +REV 9:9!3 +REV 9:9!4 +REV 9:9!5 +REV 9:9!6 +REV 9:9!7 +REV 9:9!8 +REV 9:9!9 +REV 9:9!10 +REV 9:9!11 +REV 9:9!12 +REV 9:9!13 +REV 9:9!14 +REV 9:9!15 +REV 9:9!16 +REV 9:9!17 +REV 9:9!18 +REV 9:9!19 +REV 9:9!20 +REV 9:10!1 +REV 9:10!2 +REV 9:10!3 +REV 9:10!4 +REV 9:10!5 +REV 9:10!6 +REV 9:10!7 +REV 9:10!8 +REV 9:10!9 +REV 9:10!10 +REV 9:10!11 +REV 9:10!12 +REV 9:10!13 +REV 9:10!14 +REV 9:10!15 +REV 9:10!16 +REV 9:10!17 +REV 9:10!18 +REV 9:10!19 +REV 9:10!20 +REV 9:11!1 +REV 9:11!2 +REV 9:11!3 +REV 9:11!4 +REV 9:11!5 +REV 9:11!6 +REV 9:11!7 +REV 9:11!8 +REV 9:11!9 +REV 9:11!10 +REV 9:11!11 +REV 9:11!12 +REV 9:11!13 +REV 9:11!14 +REV 9:11!15 +REV 9:11!16 +REV 9:11!17 +REV 9:11!18 +REV 9:11!19 +REV 9:12!1 +REV 9:12!2 +REV 9:12!3 +REV 9:12!4 +REV 9:12!5 +REV 9:12!6 +REV 9:12!7 +REV 9:12!8 +REV 9:12!9 +REV 9:12!10 +REV 9:12!11 +REV 9:12!12 +REV 9:13!1 +REV 9:13!2 +REV 9:13!3 +REV 9:13!4 +REV 9:13!5 +REV 9:13!6 +REV 9:13!7 +REV 9:13!8 +REV 9:13!9 +REV 9:13!10 +REV 9:13!11 +REV 9:13!12 +REV 9:13!13 +REV 9:13!14 +REV 9:13!15 +REV 9:13!16 +REV 9:13!17 +REV 9:13!18 +REV 9:13!19 +REV 9:13!20 +REV 9:13!21 +REV 9:14!1 +REV 9:14!2 +REV 9:14!3 +REV 9:14!4 +REV 9:14!5 +REV 9:14!6 +REV 9:14!7 +REV 9:14!8 +REV 9:14!9 +REV 9:14!10 +REV 9:14!11 +REV 9:14!12 +REV 9:14!13 +REV 9:14!14 +REV 9:14!15 +REV 9:14!16 +REV 9:14!17 +REV 9:14!18 +REV 9:14!19 +REV 9:14!20 +REV 9:15!1 +REV 9:15!2 +REV 9:15!3 +REV 9:15!4 +REV 9:15!5 +REV 9:15!6 +REV 9:15!7 +REV 9:15!8 +REV 9:15!9 +REV 9:15!10 +REV 9:15!11 +REV 9:15!12 +REV 9:15!13 +REV 9:15!14 +REV 9:15!15 +REV 9:15!16 +REV 9:15!17 +REV 9:15!18 +REV 9:15!19 +REV 9:15!20 +REV 9:15!21 +REV 9:15!22 +REV 9:16!1 +REV 9:16!2 +REV 9:16!3 +REV 9:16!4 +REV 9:16!5 +REV 9:16!6 +REV 9:16!7 +REV 9:16!8 +REV 9:16!9 +REV 9:16!10 +REV 9:16!11 +REV 9:16!12 +REV 9:16!13 +REV 9:17!1 +REV 9:17!2 +REV 9:17!3 +REV 9:17!4 +REV 9:17!5 +REV 9:17!6 +REV 9:17!7 +REV 9:17!8 +REV 9:17!9 +REV 9:17!10 +REV 9:17!11 +REV 9:17!12 +REV 9:17!13 +REV 9:17!14 +REV 9:17!15 +REV 9:17!16 +REV 9:17!17 +REV 9:17!18 +REV 9:17!19 +REV 9:17!20 +REV 9:17!21 +REV 9:17!22 +REV 9:17!23 +REV 9:17!24 +REV 9:17!25 +REV 9:17!26 +REV 9:17!27 +REV 9:17!28 +REV 9:17!29 +REV 9:17!30 +REV 9:17!31 +REV 9:17!32 +REV 9:17!33 +REV 9:17!34 +REV 9:17!35 +REV 9:17!36 +REV 9:17!37 +REV 9:17!38 +REV 9:17!39 +REV 9:18!6 +REV 9:18!7 +REV 9:18!8 +REV 9:18!9 +REV 9:18!10 +REV 9:18!1 +REV 9:18!2 +REV 9:18!3 +REV 9:18!4 +REV 9:18!5 +REV 9:18!11 +REV 9:18!12 +REV 9:18!13 +REV 9:18!14 +REV 9:18!15 +REV 9:18!16 +REV 9:18!17 +REV 9:18!18 +REV 9:18!19 +REV 9:18!20 +REV 9:18!21 +REV 9:18!22 +REV 9:18!23 +REV 9:18!24 +REV 9:18!25 +REV 9:19!2 +REV 9:19!1 +REV 9:19!3 +REV 9:19!4 +REV 9:19!5 +REV 9:19!10 +REV 9:19!6 +REV 9:19!7 +REV 9:19!8 +REV 9:19!9 +REV 9:19!11 +REV 9:19!12 +REV 9:19!13 +REV 9:19!14 +REV 9:19!15 +REV 9:19!17 +REV 9:19!16 +REV 9:19!18 +REV 9:19!19 +REV 9:19!20 +REV 9:19!21 +REV 9:19!22 +REV 9:19!23 +REV 9:19!24 +REV 9:19!25 +REV 9:19!26 +REV 9:19!27 +REV 9:20!1 +REV 9:20!2 +REV 9:20!3 +REV 9:20!4 +REV 9:20!5 +REV 9:20!6 +REV 9:20!7 +REV 9:20!8 +REV 9:20!9 +REV 9:20!10 +REV 9:20!11 +REV 9:20!12 +REV 9:20!13 +REV 9:20!14 +REV 9:20!15 +REV 9:20!16 +REV 9:20!17 +REV 9:20!18 +REV 9:20!19 +REV 9:20!20 +REV 9:20!21 +REV 9:20!22 +REV 9:20!23 +REV 9:20!24 +REV 9:20!25 +REV 9:20!26 +REV 9:20!27 +REV 9:20!28 +REV 9:20!29 +REV 9:20!30 +REV 9:20!31 +REV 9:20!32 +REV 9:20!33 +REV 9:20!34 +REV 9:20!35 +REV 9:20!36 +REV 9:20!37 +REV 9:20!38 +REV 9:20!39 +REV 9:20!40 +REV 9:20!41 +REV 9:20!42 +REV 9:20!43 +REV 9:20!46 +REV 9:20!44 +REV 9:20!45 +REV 9:20!47 +REV 9:20!48 +REV 9:20!49 +REV 9:20!50 +REV 9:21!1 +REV 9:21!2 +REV 9:21!3 +REV 9:21!4 +REV 9:21!5 +REV 9:21!6 +REV 9:21!7 +REV 9:21!8 +REV 9:21!9 +REV 9:21!10 +REV 9:21!11 +REV 9:21!12 +REV 9:21!13 +REV 9:21!14 +REV 9:21!15 +REV 9:21!16 +REV 9:21!17 +REV 9:21!18 +REV 9:21!19 +REV 9:21!20 +REV 9:21!21 +REV 9:21!22 +REV 10:1!1 +REV 10:1!2 +REV 10:1!3 +REV 10:1!4 +REV 10:1!5 +REV 10:1!6 +REV 10:1!7 +REV 10:1!8 +REV 10:1!9 +REV 10:1!10 +REV 10:1!11 +REV 10:1!12 +REV 10:1!13 +REV 10:1!14 +REV 10:1!15 +REV 10:1!16 +REV 10:1!17 +REV 10:1!18 +REV 10:1!19 +REV 10:1!20 +REV 10:1!21 +REV 10:1!22 +REV 10:1!23 +REV 10:1!24 +REV 10:1!25 +REV 10:1!26 +REV 10:1!27 +REV 10:1!28 +REV 10:1!29 +REV 10:1!30 +REV 10:1!31 +REV 10:1!32 +REV 10:2!1 +REV 10:2!2 +REV 10:2!3 +REV 10:2!4 +REV 10:2!5 +REV 10:2!6 +REV 10:2!7 +REV 10:2!8 +REV 10:2!9 +REV 10:2!10 +REV 10:2!11 +REV 10:2!12 +REV 10:2!13 +REV 10:2!14 +REV 10:2!15 +REV 10:2!16 +REV 10:2!17 +REV 10:2!18 +REV 10:2!20 +REV 10:2!19 +REV 10:2!21 +REV 10:2!22 +REV 10:2!23 +REV 10:2!24 +REV 10:3!1 +REV 10:3!2 +REV 10:3!3 +REV 10:3!4 +REV 10:3!5 +REV 10:3!6 +REV 10:3!7 +REV 10:3!8 +REV 10:3!9 +REV 10:3!10 +REV 10:3!11 +REV 10:3!12 +REV 10:3!13 +REV 10:3!14 +REV 10:3!15 +REV 10:3!16 +REV 10:3!17 +REV 10:4!1 +REV 10:4!2 +REV 10:4!3 +REV 10:4!4 +REV 10:4!5 +REV 10:4!6 +REV 10:4!7 +REV 10:4!8 +REV 10:4!9 +REV 10:4!10 +REV 10:4!11 +REV 10:4!12 +REV 10:4!13 +REV 10:4!14 +REV 10:4!15 +REV 10:4!16 +REV 10:4!17 +REV 10:4!18 +REV 10:4!19 +REV 10:4!20 +REV 10:4!21 +REV 10:4!22 +REV 10:4!23 +REV 10:4!24 +REV 10:4!25 +REV 10:5!1 +REV 10:5!2 +REV 10:5!3 +REV 10:5!4 +REV 10:5!6 +REV 10:5!7 +REV 10:5!8 +REV 10:5!9 +REV 10:5!10 +REV 10:5!11 +REV 10:5!12 +REV 10:5!13 +REV 10:5!5 +REV 10:5!14 +REV 10:5!15 +REV 10:5!16 +REV 10:5!17 +REV 10:5!18 +REV 10:5!19 +REV 10:5!20 +REV 10:5!21 +REV 10:5!22 +REV 10:6!1 +REV 10:6!2 +REV 10:6!3 +REV 10:6!4 +REV 10:6!5 +REV 10:6!6 +REV 10:6!7 +REV 10:6!8 +REV 10:6!9 +REV 10:6!10 +REV 10:6!11 +REV 10:6!12 +REV 10:6!13 +REV 10:6!14 +REV 10:6!15 +REV 10:6!16 +REV 10:6!17 +REV 10:6!18 +REV 10:6!19 +REV 10:6!20 +REV 10:6!21 +REV 10:6!22 +REV 10:6!23 +REV 10:6!24 +REV 10:6!25 +REV 10:6!26 +REV 10:6!27 +REV 10:6!28 +REV 10:6!29 +REV 10:6!30 +REV 10:6!31 +REV 10:6!32 +REV 10:6!33 +REV 10:6!34 +REV 10:6!35 +REV 10:6!36 +REV 10:7!1 +REV 10:7!2 +REV 10:7!3 +REV 10:7!4 +REV 10:7!5 +REV 10:7!6 +REV 10:7!7 +REV 10:7!8 +REV 10:7!9 +REV 10:7!10 +REV 10:7!11 +REV 10:7!12 +REV 10:7!13 +REV 10:7!14 +REV 10:7!15 +REV 10:7!16 +REV 10:7!17 +REV 10:7!18 +REV 10:7!19 +REV 10:7!20 +REV 10:7!21 +REV 10:7!22 +REV 10:7!23 +REV 10:7!24 +REV 10:7!25 +REV 10:8!1 +REV 10:8!2 +REV 10:8!3 +REV 10:8!4 +REV 10:8!5 +REV 10:8!6 +REV 10:8!7 +REV 10:8!8 +REV 10:8!9 +REV 10:8!10 +REV 10:8!11 +REV 10:8!12 +REV 10:8!13 +REV 10:8!14 +REV 10:8!15 +REV 10:8!16 +REV 10:8!17 +REV 10:8!18 +REV 10:8!19 +REV 10:8!20 +REV 10:8!21 +REV 10:8!22 +REV 10:8!23 +REV 10:8!24 +REV 10:8!25 +REV 10:8!26 +REV 10:8!27 +REV 10:8!28 +REV 10:8!29 +REV 10:8!30 +REV 10:8!31 +REV 10:8!32 +REV 10:8!33 +REV 10:8!34 +REV 10:9!1 +REV 10:9!2 +REV 10:9!3 +REV 10:9!4 +REV 10:9!5 +REV 10:9!6 +REV 10:9!7 +REV 10:9!8 +REV 10:9!9 +REV 10:9!10 +REV 10:9!11 +REV 10:9!12 +REV 10:9!13 +REV 10:9!14 +REV 10:9!15 +REV 10:9!16 +REV 10:9!17 +REV 10:9!18 +REV 10:9!19 +REV 10:9!20 +REV 10:9!21 +REV 10:9!22 +REV 10:9!23 +REV 10:9!24 +REV 10:9!25 +REV 10:9!26 +REV 10:9!27 +REV 10:9!28 +REV 10:9!29 +REV 10:9!30 +REV 10:9!31 +REV 10:9!32 +REV 10:10!1 +REV 10:10!2 +REV 10:10!3 +REV 10:10!4 +REV 10:10!5 +REV 10:10!6 +REV 10:10!7 +REV 10:10!8 +REV 10:10!9 +REV 10:10!10 +REV 10:10!11 +REV 10:10!12 +REV 10:10!13 +REV 10:10!14 +REV 10:10!15 +REV 10:10!16 +REV 10:10!17 +REV 10:10!18 +REV 10:10!19 +REV 10:10!20 +REV 10:10!21 +REV 10:10!22 +REV 10:10!23 +REV 10:10!24 +REV 10:10!25 +REV 10:10!26 +REV 10:10!27 +REV 10:10!28 +REV 10:10!29 +REV 10:11!1 +REV 10:11!2 +REV 10:11!3 +REV 10:11!4 +REV 10:11!5 +REV 10:11!6 +REV 10:11!7 +REV 10:11!8 +REV 10:11!9 +REV 10:11!10 +REV 10:11!11 +REV 10:11!12 +REV 10:11!13 +REV 10:11!14 +REV 10:11!15 +REV 10:11!16 +REV 11:1!1 +REV 11:1!2 +REV 11:1!3 +REV 11:1!4 +REV 11:1!5 +REV 11:1!6 +REV 11:1!7 +REV 11:1!8 +REV 11:1!9 +REV 11:1!10 +REV 11:1!11 +REV 11:1!12 +REV 11:1!13 +REV 11:1!14 +REV 11:1!15 +REV 11:1!16 +REV 11:1!17 +REV 11:1!18 +REV 11:1!19 +REV 11:1!20 +REV 11:1!21 +REV 11:1!22 +REV 11:2!1 +REV 11:2!2 +REV 11:2!3 +REV 11:2!4 +REV 11:2!5 +REV 11:2!6 +REV 11:2!7 +REV 11:2!8 +REV 11:2!9 +REV 11:2!10 +REV 11:2!11 +REV 11:2!12 +REV 11:2!13 +REV 11:2!14 +REV 11:2!15 +REV 11:2!16 +REV 11:2!17 +REV 11:2!18 +REV 11:2!19 +REV 11:2!20 +REV 11:2!21 +REV 11:2!22 +REV 11:2!23 +REV 11:2!24 +REV 11:2!25 +REV 11:2!26 +REV 11:3!1 +REV 11:3!2 +REV 11:3!3 +REV 11:3!4 +REV 11:3!5 +REV 11:3!6 +REV 11:3!7 +REV 11:3!8 +REV 11:3!9 +REV 11:3!10 +REV 11:3!11 +REV 11:3!12 +REV 11:3!13 +REV 11:3!14 +REV 11:4!1 +REV 11:4!2 +REV 11:4!3 +REV 11:4!4 +REV 11:4!5 +REV 11:4!6 +REV 11:4!7 +REV 11:4!8 +REV 11:4!9 +REV 11:4!10 +REV 11:4!11 +REV 11:4!12 +REV 11:4!13 +REV 11:4!14 +REV 11:4!15 +REV 11:4!16 +REV 11:5!1 +REV 11:5!2 +REV 11:5!3 +REV 11:5!5 +REV 11:5!4 +REV 11:5!6 +REV 11:5!7 +REV 11:5!8 +REV 11:5!9 +REV 11:5!10 +REV 11:5!11 +REV 11:5!12 +REV 11:5!13 +REV 11:5!14 +REV 11:5!15 +REV 11:5!16 +REV 11:5!17 +REV 11:5!18 +REV 11:5!19 +REV 11:5!20 +REV 11:5!21 +REV 11:5!22 +REV 11:5!23 +REV 11:5!24 +REV 11:5!25 +REV 11:5!26 +REV 11:5!27 +REV 11:6!1 +REV 11:6!2 +REV 11:6!3 +REV 11:6!4 +REV 11:6!5 +REV 11:6!6 +REV 11:6!7 +REV 11:6!8 +REV 11:6!9 +REV 11:6!10 +REV 11:6!11 +REV 11:6!12 +REV 11:6!13 +REV 11:6!14 +REV 11:6!15 +REV 11:6!16 +REV 11:6!17 +REV 11:6!18 +REV 11:6!19 +REV 11:6!20 +REV 11:6!21 +REV 11:6!22 +REV 11:6!23 +REV 11:6!24 +REV 11:6!25 +REV 11:6!26 +REV 11:6!27 +REV 11:6!28 +REV 11:6!29 +REV 11:6!30 +REV 11:6!31 +REV 11:6!32 +REV 11:6!33 +REV 11:6!34 +REV 11:6!35 +REV 11:6!36 +REV 11:7!1 +REV 11:7!2 +REV 11:7!3 +REV 11:7!4 +REV 11:7!5 +REV 11:7!6 +REV 11:7!7 +REV 11:7!8 +REV 11:7!9 +REV 11:7!10 +REV 11:7!11 +REV 11:7!12 +REV 11:7!13 +REV 11:7!14 +REV 11:7!15 +REV 11:7!16 +REV 11:7!17 +REV 11:7!18 +REV 11:7!19 +REV 11:7!20 +REV 11:7!21 +REV 11:7!22 +REV 11:7!23 +REV 11:8!1 +REV 11:8!2 +REV 11:8!3 +REV 11:8!4 +REV 11:8!5 +REV 11:8!6 +REV 11:8!7 +REV 11:8!8 +REV 11:8!9 +REV 11:8!10 +REV 11:8!11 +REV 11:8!12 +REV 11:8!13 +REV 11:8!14 +REV 11:8!15 +REV 11:8!16 +REV 11:8!17 +REV 11:8!18 +REV 11:8!19 +REV 11:8!20 +REV 11:8!21 +REV 11:8!22 +REV 11:8!23 +REV 11:9!1 +REV 11:9!2 +REV 11:9!3 +REV 11:9!4 +REV 11:9!5 +REV 11:9!6 +REV 11:9!7 +REV 11:9!8 +REV 11:9!9 +REV 11:9!10 +REV 11:9!11 +REV 11:9!12 +REV 11:9!13 +REV 11:9!14 +REV 11:9!15 +REV 11:9!16 +REV 11:9!17 +REV 11:9!18 +REV 11:9!19 +REV 11:9!23 +REV 11:9!24 +REV 11:9!20 +REV 11:9!21 +REV 11:9!22 +REV 11:9!25 +REV 11:9!26 +REV 11:9!27 +REV 11:10!1 +REV 11:10!2 +REV 11:10!3 +REV 11:10!4 +REV 11:10!5 +REV 11:10!6 +REV 11:10!7 +REV 11:10!8 +REV 11:10!9 +REV 11:10!10 +REV 11:10!11 +REV 11:10!12 +REV 11:10!13 +REV 11:10!14 +REV 11:10!15 +REV 11:10!16 +REV 11:10!17 +REV 11:10!18 +REV 11:10!19 +REV 11:10!20 +REV 11:10!21 +REV 11:10!22 +REV 11:10!23 +REV 11:10!24 +REV 11:10!25 +REV 11:10!26 +REV 11:11!1 +REV 11:11!2 +REV 11:11!3 +REV 11:11!4 +REV 11:11!6 +REV 11:11!7 +REV 11:11!5 +REV 11:11!8 +REV 11:11!9 +REV 11:11!10 +REV 11:11!11 +REV 11:11!12 +REV 11:11!13 +REV 11:11!14 +REV 11:11!15 +REV 11:11!16 +REV 11:11!17 +REV 11:11!18 +REV 11:11!19 +REV 11:11!20 +REV 11:11!21 +REV 11:11!22 +REV 11:11!23 +REV 11:11!24 +REV 11:11!25 +REV 11:11!26 +REV 11:11!27 +REV 11:11!28 +REV 11:11!29 +REV 11:12!1 +REV 11:12!2 +REV 11:12!3 +REV 11:12!4 +REV 11:12!5 +REV 11:12!6 +REV 11:12!7 +REV 11:12!8 +REV 11:12!9 +REV 11:12!10 +REV 11:12!11 +REV 11:12!12 +REV 11:12!13 +REV 11:12!14 +REV 11:12!15 +REV 11:12!16 +REV 11:12!17 +REV 11:12!18 +REV 11:12!19 +REV 11:12!20 +REV 11:12!21 +REV 11:12!22 +REV 11:12!23 +REV 11:12!24 +REV 11:12!25 +REV 11:13!1 +REV 11:13!2 +REV 11:13!3 +REV 11:13!4 +REV 11:13!5 +REV 11:13!6 +REV 11:13!7 +REV 11:13!8 +REV 11:13!9 +REV 11:13!10 +REV 11:13!11 +REV 11:13!12 +REV 11:13!13 +REV 11:13!14 +REV 11:13!15 +REV 11:13!16 +REV 11:13!17 +REV 11:13!18 +REV 11:13!19 +REV 11:13!20 +REV 11:13!21 +REV 11:13!22 +REV 11:13!23 +REV 11:13!24 +REV 11:13!25 +REV 11:13!26 +REV 11:13!27 +REV 11:13!28 +REV 11:13!29 +REV 11:13!30 +REV 11:13!31 +REV 11:13!32 +REV 11:13!33 +REV 11:13!34 +REV 11:13!35 +REV 11:14!1 +REV 11:14!2 +REV 11:14!3 +REV 11:14!4 +REV 11:14!5 +REV 11:14!6 +REV 11:14!7 +REV 11:14!8 +REV 11:14!9 +REV 11:14!10 +REV 11:14!11 +REV 11:14!12 +REV 11:15!1 +REV 11:15!2 +REV 11:15!3 +REV 11:15!4 +REV 11:15!5 +REV 11:15!6 +REV 11:15!7 +REV 11:15!8 +REV 11:15!9 +REV 11:15!10 +REV 11:15!11 +REV 11:15!12 +REV 11:15!13 +REV 11:15!14 +REV 11:15!15 +REV 11:15!16 +REV 11:15!17 +REV 11:15!18 +REV 11:15!19 +REV 11:15!20 +REV 11:15!21 +REV 11:15!22 +REV 11:15!23 +REV 11:15!24 +REV 11:15!25 +REV 11:15!26 +REV 11:15!27 +REV 11:15!28 +REV 11:15!29 +REV 11:15!30 +REV 11:15!31 +REV 11:15!32 +REV 11:16!1 +REV 11:16!2 +REV 11:16!3 +REV 11:16!4 +REV 11:16!5 +REV 11:16!6 +REV 11:16!7 +REV 11:16!8 +REV 11:16!9 +REV 11:16!10 +REV 11:16!11 +REV 11:16!12 +REV 11:16!13 +REV 11:16!14 +REV 11:16!15 +REV 11:16!16 +REV 11:16!17 +REV 11:16!18 +REV 11:16!19 +REV 11:16!20 +REV 11:16!21 +REV 11:16!22 +REV 11:16!23 +REV 11:17!1 +REV 11:17!2 +REV 11:17!3 +REV 11:17!4 +REV 11:17!5 +REV 11:17!6 +REV 11:17!7 +REV 11:17!8 +REV 11:17!9 +REV 11:17!10 +REV 11:17!11 +REV 11:17!12 +REV 11:17!13 +REV 11:17!14 +REV 11:17!15 +REV 11:17!16 +REV 11:17!17 +REV 11:17!18 +REV 11:17!19 +REV 11:17!20 +REV 11:17!21 +REV 11:17!22 +REV 11:18!1 +REV 11:18!2 +REV 11:18!3 +REV 11:18!4 +REV 11:18!5 +REV 11:18!6 +REV 11:18!7 +REV 11:18!8 +REV 11:18!9 +REV 11:18!10 +REV 11:18!11 +REV 11:18!12 +REV 11:18!13 +REV 11:18!14 +REV 11:18!15 +REV 11:18!16 +REV 11:18!17 +REV 11:18!18 +REV 11:18!19 +REV 11:18!20 +REV 11:18!21 +REV 11:18!22 +REV 11:18!23 +REV 11:18!24 +REV 11:18!25 +REV 11:18!26 +REV 11:18!27 +REV 11:18!28 +REV 11:18!29 +REV 11:18!30 +REV 11:18!31 +REV 11:18!32 +REV 11:18!33 +REV 11:18!34 +REV 11:18!35 +REV 11:18!36 +REV 11:18!37 +REV 11:18!38 +REV 11:18!39 +REV 11:18!40 +REV 11:18!41 +REV 11:18!42 +REV 11:18!43 +REV 11:18!44 +REV 11:19!1 +REV 11:19!2 +REV 11:19!3 +REV 11:19!4 +REV 11:19!5 +REV 11:19!6 +REV 11:19!7 +REV 11:19!8 +REV 11:19!9 +REV 11:19!10 +REV 11:19!11 +REV 11:19!12 +REV 11:19!13 +REV 11:19!14 +REV 11:19!15 +REV 11:19!16 +REV 11:19!17 +REV 11:19!18 +REV 11:19!19 +REV 11:19!20 +REV 11:19!21 +REV 11:19!22 +REV 11:19!23 +REV 11:19!24 +REV 11:19!25 +REV 11:19!26 +REV 11:19!27 +REV 11:19!28 +REV 11:19!29 +REV 11:19!30 +REV 11:19!31 +REV 11:19!32 +REV 11:19!33 +REV 12:1!1 +REV 12:1!2 +REV 12:1!3 +REV 12:1!4 +REV 12:1!5 +REV 12:1!6 +REV 12:1!7 +REV 12:1!8 +REV 12:1!9 +REV 12:1!10 +REV 12:1!11 +REV 12:1!12 +REV 12:1!13 +REV 12:1!14 +REV 12:1!15 +REV 12:1!16 +REV 12:1!17 +REV 12:1!18 +REV 12:1!19 +REV 12:1!20 +REV 12:1!21 +REV 12:1!22 +REV 12:1!23 +REV 12:1!24 +REV 12:1!25 +REV 12:1!26 +REV 12:2!1 +REV 12:2!2 +REV 12:2!3 +REV 12:2!4 +REV 12:2!5 +REV 12:2!6 +REV 12:2!7 +REV 12:2!8 +REV 12:2!9 +REV 12:2!10 +REV 12:3!1 +REV 12:3!2 +REV 12:3!3 +REV 12:3!4 +REV 12:3!5 +REV 12:3!6 +REV 12:3!7 +REV 12:3!8 +REV 12:3!9 +REV 12:3!10 +REV 12:3!11 +REV 12:3!12 +REV 12:3!13 +REV 12:3!14 +REV 12:3!15 +REV 12:3!16 +REV 12:3!17 +REV 12:3!18 +REV 12:3!19 +REV 12:3!20 +REV 12:3!21 +REV 12:3!22 +REV 12:3!23 +REV 12:3!24 +REV 12:3!25 +REV 12:4!1 +REV 12:4!2 +REV 12:4!3 +REV 12:4!4 +REV 12:4!5 +REV 12:4!6 +REV 12:4!7 +REV 12:4!8 +REV 12:4!9 +REV 12:4!10 +REV 12:4!11 +REV 12:4!12 +REV 12:4!13 +REV 12:4!14 +REV 12:4!15 +REV 12:4!16 +REV 12:4!17 +REV 12:4!18 +REV 12:4!19 +REV 12:4!20 +REV 12:4!21 +REV 12:4!22 +REV 12:4!23 +REV 12:4!24 +REV 12:4!25 +REV 12:4!26 +REV 12:4!27 +REV 12:4!28 +REV 12:4!29 +REV 12:4!30 +REV 12:4!31 +REV 12:4!32 +REV 12:4!33 +REV 12:4!34 +REV 12:5!1 +REV 12:5!2 +REV 12:5!3 +REV 12:5!4 +REV 12:5!5 +REV 12:5!6 +REV 12:5!7 +REV 12:5!8 +REV 12:5!9 +REV 12:5!10 +REV 12:5!11 +REV 12:5!12 +REV 12:5!13 +REV 12:5!14 +REV 12:5!15 +REV 12:5!16 +REV 12:5!17 +REV 12:5!18 +REV 12:5!19 +REV 12:5!20 +REV 12:5!21 +REV 12:5!22 +REV 12:5!23 +REV 12:5!24 +REV 12:5!25 +REV 12:5!26 +REV 12:6!1 +REV 12:6!2 +REV 12:6!3 +REV 12:6!4 +REV 12:6!5 +REV 12:6!6 +REV 12:6!7 +REV 12:6!8 +REV 12:6!9 +REV 12:6!10 +REV 12:6!11 +REV 12:6!12 +REV 12:6!13 +REV 12:6!14 +REV 12:6!15 +REV 12:6!16 +REV 12:6!17 +REV 12:6!18 +REV 12:6!19 +REV 12:6!20 +REV 12:6!21 +REV 12:6!22 +REV 12:6!23 +REV 12:7!1 +REV 12:7!2 +REV 12:7!3 +REV 12:7!4 +REV 12:7!5 +REV 12:7!6 +REV 12:7!7 +REV 12:7!8 +REV 12:7!9 +REV 12:7!10 +REV 12:7!11 +REV 12:7!12 +REV 12:7!13 +REV 12:7!14 +REV 12:7!15 +REV 12:7!16 +REV 12:7!17 +REV 12:7!18 +REV 12:7!21 +REV 12:7!19 +REV 12:7!20 +REV 12:7!22 +REV 12:7!23 +REV 12:7!24 +REV 12:7!25 +REV 12:8!1 +REV 12:8!2 +REV 12:8!3 +REV 12:8!4 +REV 12:8!5 +REV 12:8!7 +REV 12:8!6 +REV 12:8!8 +REV 12:8!9 +REV 12:8!10 +REV 12:8!11 +REV 12:9!1 +REV 12:9!2 +REV 12:9!3 +REV 12:9!4 +REV 12:9!5 +REV 12:9!6 +REV 12:9!7 +REV 12:9!8 +REV 12:9!9 +REV 12:9!10 +REV 12:9!11 +REV 12:9!12 +REV 12:9!13 +REV 12:9!14 +REV 12:9!15 +REV 12:9!16 +REV 12:9!17 +REV 12:9!18 +REV 12:9!19 +REV 12:9!20 +REV 12:9!21 +REV 12:9!22 +REV 12:9!23 +REV 12:9!24 +REV 12:9!25 +REV 12:9!26 +REV 12:9!27 +REV 12:9!28 +REV 12:9!29 +REV 12:9!30 +REV 12:9!31 +REV 12:9!32 +REV 12:10!1 +REV 12:10!2 +REV 12:10!3 +REV 12:10!4 +REV 12:10!5 +REV 12:10!6 +REV 12:10!7 +REV 12:10!8 +REV 12:10!9 +REV 12:10!10 +REV 12:10!11 +REV 12:10!12 +REV 12:10!13 +REV 12:10!14 +REV 12:10!15 +REV 12:10!16 +REV 12:10!17 +REV 12:10!18 +REV 12:10!19 +REV 12:10!20 +REV 12:10!21 +REV 12:10!22 +REV 12:10!23 +REV 12:10!24 +REV 12:10!25 +REV 12:10!26 +REV 12:10!27 +REV 12:10!28 +REV 12:10!29 +REV 12:10!30 +REV 12:10!31 +REV 12:10!32 +REV 12:10!33 +REV 12:10!34 +REV 12:10!35 +REV 12:10!36 +REV 12:10!37 +REV 12:10!38 +REV 12:10!39 +REV 12:10!40 +REV 12:10!41 +REV 12:10!42 +REV 12:10!43 +REV 12:10!44 +REV 12:11!1 +REV 12:11!2 +REV 12:11!3 +REV 12:11!4 +REV 12:11!5 +REV 12:11!6 +REV 12:11!7 +REV 12:11!8 +REV 12:11!9 +REV 12:11!10 +REV 12:11!11 +REV 12:11!12 +REV 12:11!13 +REV 12:11!14 +REV 12:11!15 +REV 12:11!16 +REV 12:11!17 +REV 12:11!18 +REV 12:11!19 +REV 12:11!20 +REV 12:11!21 +REV 12:11!22 +REV 12:11!23 +REV 12:11!24 +REV 12:12!1 +REV 12:12!2 +REV 12:12!3 +REV 12:12!4 +REV 12:12!5 +REV 12:12!6 +REV 12:12!7 +REV 12:12!8 +REV 12:12!9 +REV 12:12!10 +REV 12:12!11 +REV 12:12!12 +REV 12:12!13 +REV 12:12!14 +REV 12:12!15 +REV 12:12!16 +REV 12:12!17 +REV 12:12!18 +REV 12:12!19 +REV 12:12!20 +REV 12:12!21 +REV 12:12!22 +REV 12:12!23 +REV 12:12!24 +REV 12:12!25 +REV 12:12!26 +REV 12:12!27 +REV 12:12!28 +REV 12:12!29 +REV 12:13!1 +REV 12:13!2 +REV 12:13!3 +REV 12:13!4 +REV 12:13!5 +REV 12:13!6 +REV 12:13!7 +REV 12:13!8 +REV 12:13!9 +REV 12:13!10 +REV 12:13!11 +REV 12:13!12 +REV 12:13!13 +REV 12:13!14 +REV 12:13!15 +REV 12:13!16 +REV 12:13!17 +REV 12:14!1 +REV 12:14!2 +REV 12:14!3 +REV 12:14!4 +REV 12:14!5 +REV 12:14!6 +REV 12:14!7 +REV 12:14!8 +REV 12:14!9 +REV 12:14!10 +REV 12:14!11 +REV 12:14!12 +REV 12:14!13 +REV 12:14!14 +REV 12:14!15 +REV 12:14!16 +REV 12:14!17 +REV 12:14!18 +REV 12:14!19 +REV 12:14!20 +REV 12:14!21 +REV 12:14!22 +REV 12:14!23 +REV 12:14!24 +REV 12:14!25 +REV 12:14!26 +REV 12:14!27 +REV 12:14!28 +REV 12:14!29 +REV 12:14!30 +REV 12:14!31 +REV 12:14!32 +REV 12:14!33 +REV 12:15!1 +REV 12:15!2 +REV 12:15!3 +REV 12:15!4 +REV 12:15!5 +REV 12:15!6 +REV 12:15!7 +REV 12:15!8 +REV 12:15!9 +REV 12:15!10 +REV 12:15!11 +REV 12:15!12 +REV 12:15!13 +REV 12:15!14 +REV 12:15!15 +REV 12:15!16 +REV 12:15!17 +REV 12:15!18 +REV 12:16!1 +REV 12:16!2 +REV 12:16!3 +REV 12:16!4 +REV 12:16!5 +REV 12:16!6 +REV 12:16!7 +REV 12:16!8 +REV 12:16!9 +REV 12:16!10 +REV 12:16!11 +REV 12:16!12 +REV 12:16!13 +REV 12:16!14 +REV 12:16!15 +REV 12:16!16 +REV 12:16!17 +REV 12:16!18 +REV 12:16!19 +REV 12:16!20 +REV 12:16!21 +REV 12:16!22 +REV 12:16!23 +REV 12:16!24 +REV 12:16!25 +REV 12:17!1 +REV 12:17!2 +REV 12:17!3 +REV 12:17!4 +REV 12:17!5 +REV 12:17!6 +REV 12:17!7 +REV 12:17!8 +REV 12:17!9 +REV 12:17!10 +REV 12:17!11 +REV 12:17!12 +REV 12:17!13 +REV 12:17!14 +REV 12:17!15 +REV 12:17!16 +REV 12:17!17 +REV 12:17!18 +REV 12:17!19 +REV 12:17!20 +REV 12:17!21 +REV 12:17!22 +REV 12:17!23 +REV 12:17!24 +REV 12:17!25 +REV 12:17!26 +REV 12:17!27 +REV 12:17!28 +REV 12:18!1 +REV 12:18!2 +REV 12:18!3 +REV 12:18!4 +REV 12:18!5 +REV 12:18!6 +REV 12:18!7 +REV 13:1!1 +REV 13:1!2 +REV 13:1!3 +REV 13:1!4 +REV 13:1!5 +REV 13:1!6 +REV 13:1!7 +REV 13:1!8 +REV 13:1!9 +REV 13:1!10 +REV 13:1!11 +REV 13:1!12 +REV 13:1!13 +REV 13:1!14 +REV 13:1!15 +REV 13:1!16 +REV 13:1!17 +REV 13:1!18 +REV 13:1!19 +REV 13:1!20 +REV 13:1!21 +REV 13:1!22 +REV 13:1!23 +REV 13:1!24 +REV 13:1!25 +REV 13:1!26 +REV 13:1!27 +REV 13:2!1 +REV 13:2!2 +REV 13:2!3 +REV 13:2!4 +REV 13:2!5 +REV 13:2!6 +REV 13:2!7 +REV 13:2!8 +REV 13:2!9 +REV 13:2!10 +REV 13:2!11 +REV 13:2!12 +REV 13:2!13 +REV 13:2!14 +REV 13:2!15 +REV 13:2!16 +REV 13:2!17 +REV 13:2!18 +REV 13:2!19 +REV 13:2!20 +REV 13:2!21 +REV 13:2!22 +REV 13:2!23 +REV 13:2!24 +REV 13:2!25 +REV 13:2!26 +REV 13:2!27 +REV 13:2!28 +REV 13:2!29 +REV 13:2!30 +REV 13:2!31 +REV 13:2!32 +REV 13:2!33 +REV 13:2!34 +REV 13:2!35 +REV 13:2!36 +REV 13:3!1 +REV 13:3!2 +REV 13:3!3 +REV 13:3!4 +REV 13:3!5 +REV 13:3!6 +REV 13:3!7 +REV 13:3!8 +REV 13:3!9 +REV 13:3!10 +REV 13:3!11 +REV 13:3!12 +REV 13:3!13 +REV 13:3!14 +REV 13:3!15 +REV 13:3!16 +REV 13:3!17 +REV 13:3!18 +REV 13:3!19 +REV 13:3!20 +REV 13:3!21 +REV 13:3!22 +REV 13:3!23 +REV 13:3!24 +REV 13:3!25 +REV 13:4!1 +REV 13:4!2 +REV 13:4!3 +REV 13:4!4 +REV 13:4!5 +REV 13:4!6 +REV 13:4!7 +REV 13:4!8 +REV 13:4!9 +REV 13:4!10 +REV 13:4!11 +REV 13:4!12 +REV 13:4!13 +REV 13:4!14 +REV 13:4!15 +REV 13:4!16 +REV 13:4!17 +REV 13:4!18 +REV 13:4!19 +REV 13:4!20 +REV 13:4!21 +REV 13:4!22 +REV 13:4!23 +REV 13:4!24 +REV 13:4!25 +REV 13:5!1 +REV 13:5!2 +REV 13:5!3 +REV 13:5!4 +REV 13:5!5 +REV 13:5!6 +REV 13:5!7 +REV 13:5!8 +REV 13:5!9 +REV 13:5!10 +REV 13:5!11 +REV 13:5!12 +REV 13:5!13 +REV 13:5!14 +REV 13:5!15 +REV 13:5!16 +REV 13:6!1 +REV 13:6!2 +REV 13:6!3 +REV 13:6!4 +REV 13:6!5 +REV 13:6!6 +REV 13:6!7 +REV 13:6!8 +REV 13:6!9 +REV 13:6!10 +REV 13:6!11 +REV 13:6!12 +REV 13:6!13 +REV 13:6!14 +REV 13:6!15 +REV 13:6!16 +REV 13:6!17 +REV 13:6!18 +REV 13:6!19 +REV 13:6!20 +REV 13:6!21 +REV 13:6!22 +REV 13:6!23 +REV 13:7!1 +REV 13:7!2 +REV 13:7!3 +REV 13:7!4 +REV 13:7!5 +REV 13:7!6 +REV 13:7!7 +REV 13:7!8 +REV 13:7!9 +REV 13:7!10 +REV 13:7!11 +REV 13:7!12 +REV 13:7!13 +REV 13:7!14 +REV 13:7!15 +REV 13:7!16 +REV 13:7!17 +REV 13:7!18 +REV 13:7!19 +REV 13:7!20 +REV 13:7!21 +REV 13:7!22 +REV 13:7!23 +REV 13:7!24 +REV 13:8!1 +REV 13:8!2 +REV 13:8!3 +REV 13:8!4 +REV 13:8!5 +REV 13:8!6 +REV 13:8!7 +REV 13:8!8 +REV 13:8!9 +REV 13:8!11 +REV 13:8!12 +REV 13:8!10 +REV 13:8!13 +REV 13:8!14 +REV 13:8!15 +REV 13:8!16 +REV 13:8!17 +REV 13:8!18 +REV 13:8!19 +REV 13:8!20 +REV 13:8!21 +REV 13:8!22 +REV 13:8!23 +REV 13:8!24 +REV 13:8!25 +REV 13:8!26 +REV 13:8!27 +REV 13:9!1 +REV 13:9!2 +REV 13:9!3 +REV 13:9!4 +REV 13:9!5 +REV 13:10!1 +REV 13:10!2 +REV 13:10!3 +REV 13:10!4 +REV 13:10!5 +REV 13:10!6 +REV 13:10!7 +REV 13:10!8 +REV 13:10!9 +REV 13:10!10 +REV 13:10!11 +REV 13:10!12 +REV 13:10!13 +REV 13:10!14 +REV 13:10!15 +REV 13:10!16 +REV 13:10!17 +REV 13:10!18 +REV 13:10!19 +REV 13:10!20 +REV 13:10!21 +REV 13:10!22 +REV 13:10!23 +REV 13:10!24 +REV 13:10!25 +REV 13:10!26 +REV 13:11!1 +REV 13:11!2 +REV 13:11!3 +REV 13:11!4 +REV 13:11!5 +REV 13:11!6 +REV 13:11!7 +REV 13:11!8 +REV 13:11!9 +REV 13:11!10 +REV 13:11!11 +REV 13:11!12 +REV 13:11!13 +REV 13:11!14 +REV 13:11!15 +REV 13:11!16 +REV 13:11!17 +REV 13:11!18 +REV 13:12!1 +REV 13:12!2 +REV 13:12!3 +REV 13:12!4 +REV 13:12!5 +REV 13:12!6 +REV 13:12!7 +REV 13:12!8 +REV 13:12!9 +REV 13:12!10 +REV 13:12!11 +REV 13:12!12 +REV 13:12!13 +REV 13:12!14 +REV 13:12!15 +REV 13:12!16 +REV 13:12!17 +REV 13:12!18 +REV 13:12!19 +REV 13:12!20 +REV 13:12!21 +REV 13:12!22 +REV 13:12!23 +REV 13:12!24 +REV 13:12!25 +REV 13:12!26 +REV 13:12!27 +REV 13:12!28 +REV 13:12!29 +REV 13:12!30 +REV 13:12!31 +REV 13:12!32 +REV 13:13!1 +REV 13:13!2 +REV 13:13!3 +REV 13:13!4 +REV 13:13!5 +REV 13:13!6 +REV 13:13!8 +REV 13:13!7 +REV 13:13!9 +REV 13:13!10 +REV 13:13!11 +REV 13:13!12 +REV 13:13!13 +REV 13:13!14 +REV 13:13!15 +REV 13:13!16 +REV 13:13!17 +REV 13:13!18 +REV 13:14!1 +REV 13:14!2 +REV 13:14!3 +REV 13:14!4 +REV 13:14!5 +REV 13:14!6 +REV 13:14!7 +REV 13:14!8 +REV 13:14!9 +REV 13:14!10 +REV 13:14!11 +REV 13:14!12 +REV 13:14!13 +REV 13:14!14 +REV 13:14!15 +REV 13:14!16 +REV 13:14!17 +REV 13:14!18 +REV 13:14!19 +REV 13:14!20 +REV 13:14!21 +REV 13:14!22 +REV 13:14!23 +REV 13:14!24 +REV 13:14!25 +REV 13:14!26 +REV 13:14!27 +REV 13:14!28 +REV 13:14!29 +REV 13:14!30 +REV 13:14!31 +REV 13:14!32 +REV 13:14!33 +REV 13:14!34 +REV 13:14!35 +REV 13:15!1 +REV 13:15!2 +REV 13:15!3 +REV 13:15!4 +REV 13:15!5 +REV 13:15!6 +REV 13:15!7 +REV 13:15!8 +REV 13:15!9 +REV 13:15!10 +REV 13:15!11 +REV 13:15!12 +REV 13:15!13 +REV 13:15!14 +REV 13:15!15 +REV 13:15!16 +REV 13:15!17 +REV 13:15!18 +REV 13:15!19 +REV 13:15!21 +REV 13:15!20 +REV 13:15!22 +REV 13:15!23 +REV 13:15!24 +REV 13:15!25 +REV 13:15!26 +REV 13:15!27 +REV 13:15!28 +REV 13:16!1 +REV 13:16!2 +REV 13:16!3 +REV 13:16!4 +REV 13:16!5 +REV 13:16!6 +REV 13:16!7 +REV 13:16!8 +REV 13:16!9 +REV 13:16!10 +REV 13:16!11 +REV 13:16!12 +REV 13:16!13 +REV 13:16!14 +REV 13:16!15 +REV 13:16!16 +REV 13:16!17 +REV 13:16!18 +REV 13:16!19 +REV 13:16!20 +REV 13:16!21 +REV 13:16!22 +REV 13:16!23 +REV 13:16!24 +REV 13:16!25 +REV 13:16!26 +REV 13:16!27 +REV 13:16!28 +REV 13:16!29 +REV 13:16!30 +REV 13:16!31 +REV 13:16!32 +REV 13:16!33 +REV 13:16!34 +REV 13:16!35 +REV 13:17!1 +REV 13:17!2 +REV 13:17!3 +REV 13:17!4 +REV 13:17!5 +REV 13:17!6 +REV 13:17!7 +REV 13:17!8 +REV 13:17!9 +REV 13:17!10 +REV 13:17!11 +REV 13:17!12 +REV 13:17!13 +REV 13:17!14 +REV 13:17!15 +REV 13:17!16 +REV 13:17!17 +REV 13:17!18 +REV 13:17!19 +REV 13:17!20 +REV 13:17!21 +REV 13:17!22 +REV 13:17!23 +REV 13:17!24 +REV 13:18!1 +REV 13:18!2 +REV 13:18!3 +REV 13:18!4 +REV 13:18!5 +REV 13:18!6 +REV 13:18!7 +REV 13:18!8 +REV 13:18!9 +REV 13:18!10 +REV 13:18!11 +REV 13:18!12 +REV 13:18!14 +REV 13:18!13 +REV 13:18!15 +REV 13:18!16 +REV 13:18!17 +REV 13:18!18 +REV 13:18!19 +REV 13:18!20 +REV 13:18!21 +REV 13:18!22 +REV 13:18!23 +REV 14:1!1 +REV 14:1!2 +REV 14:1!3 +REV 14:1!4 +REV 14:1!5 +REV 14:1!6 +REV 14:1!7 +REV 14:1!8 +REV 14:1!9 +REV 14:1!10 +REV 14:1!11 +REV 14:1!12 +REV 14:1!13 +REV 14:1!14 +REV 14:1!15 +REV 14:1!16 +REV 14:1!17 +REV 14:1!18 +REV 14:1!19 +REV 14:1!20 +REV 14:1!21 +REV 14:1!22 +REV 14:1!23 +REV 14:1!24 +REV 14:1!25 +REV 14:1!26 +REV 14:1!27 +REV 14:1!28 +REV 14:1!29 +REV 14:1!30 +REV 14:1!31 +REV 14:1!32 +REV 14:1!33 +REV 14:2!1 +REV 14:2!2 +REV 14:2!3 +REV 14:2!4 +REV 14:2!5 +REV 14:2!6 +REV 14:2!7 +REV 14:2!8 +REV 14:2!9 +REV 14:2!10 +REV 14:2!11 +REV 14:2!12 +REV 14:2!13 +REV 14:2!14 +REV 14:2!15 +REV 14:2!16 +REV 14:2!17 +REV 14:2!18 +REV 14:2!19 +REV 14:2!20 +REV 14:2!21 +REV 14:2!22 +REV 14:2!23 +REV 14:2!24 +REV 14:2!25 +REV 14:2!26 +REV 14:2!27 +REV 14:3!1 +REV 14:3!2 +REV 14:3!3 +REV 14:3!4 +REV 14:3!5 +REV 14:3!6 +REV 14:3!7 +REV 14:3!8 +REV 14:3!9 +REV 14:3!10 +REV 14:3!11 +REV 14:3!12 +REV 14:3!13 +REV 14:3!14 +REV 14:3!15 +REV 14:3!16 +REV 14:3!17 +REV 14:3!18 +REV 14:3!19 +REV 14:3!20 +REV 14:3!21 +REV 14:3!22 +REV 14:3!23 +REV 14:3!24 +REV 14:3!25 +REV 14:3!26 +REV 14:3!27 +REV 14:3!28 +REV 14:3!29 +REV 14:3!30 +REV 14:3!31 +REV 14:3!32 +REV 14:3!33 +REV 14:4!1 +REV 14:4!2 +REV 14:4!3 +REV 14:4!4 +REV 14:4!5 +REV 14:4!6 +REV 14:4!7 +REV 14:4!9 +REV 14:4!8 +REV 14:4!10 +REV 14:4!11 +REV 14:4!12 +REV 14:4!13 +REV 14:4!14 +REV 14:4!15 +REV 14:4!17 +REV 14:4!16 +REV 14:4!18 +REV 14:4!19 +REV 14:4!20 +REV 14:4!21 +REV 14:4!22 +REV 14:4!23 +REV 14:4!24 +REV 14:4!25 +REV 14:4!26 +REV 14:4!27 +REV 14:4!28 +REV 14:4!29 +REV 14:5!1 +REV 14:5!2 +REV 14:5!3 +REV 14:5!4 +REV 14:5!5 +REV 14:5!6 +REV 14:5!7 +REV 14:5!8 +REV 14:5!9 +REV 14:5!10 +REV 14:6!1 +REV 14:6!2 +REV 14:6!3 +REV 14:6!4 +REV 14:6!5 +REV 14:6!6 +REV 14:6!7 +REV 14:6!8 +REV 14:6!9 +REV 14:6!10 +REV 14:6!11 +REV 14:6!12 +REV 14:6!13 +REV 14:6!14 +REV 14:6!15 +REV 14:6!16 +REV 14:6!17 +REV 14:6!18 +REV 14:6!19 +REV 14:6!20 +REV 14:6!21 +REV 14:6!22 +REV 14:6!23 +REV 14:6!24 +REV 14:6!25 +REV 14:6!26 +REV 14:6!27 +REV 14:7!1 +REV 14:7!2 +REV 14:7!3 +REV 14:7!4 +REV 14:7!5 +REV 14:7!6 +REV 14:7!7 +REV 14:7!8 +REV 14:7!9 +REV 14:7!10 +REV 14:7!11 +REV 14:7!12 +REV 14:7!13 +REV 14:7!14 +REV 14:7!15 +REV 14:7!16 +REV 14:7!17 +REV 14:7!18 +REV 14:7!19 +REV 14:7!20 +REV 14:7!21 +REV 14:7!22 +REV 14:7!23 +REV 14:7!24 +REV 14:7!25 +REV 14:7!26 +REV 14:7!27 +REV 14:7!28 +REV 14:7!29 +REV 14:7!30 +REV 14:7!31 +REV 14:7!32 +REV 14:8!1 +REV 14:8!2 +REV 14:8!3 +REV 14:8!4 +REV 14:8!5 +REV 14:8!6 +REV 14:8!7 +REV 14:8!8 +REV 14:8!9 +REV 14:8!10 +REV 14:8!11 +REV 14:8!12 +REV 14:8!13 +REV 14:8!14 +REV 14:8!15 +REV 14:8!16 +REV 14:8!17 +REV 14:8!18 +REV 14:8!19 +REV 14:8!20 +REV 14:8!21 +REV 14:8!22 +REV 14:8!23 +REV 14:8!24 +REV 14:9!1 +REV 14:9!2 +REV 14:9!3 +REV 14:9!4 +REV 14:9!5 +REV 14:9!6 +REV 14:9!7 +REV 14:9!8 +REV 14:9!9 +REV 14:9!10 +REV 14:9!11 +REV 14:9!12 +REV 14:9!13 +REV 14:9!14 +REV 14:9!15 +REV 14:9!16 +REV 14:9!17 +REV 14:9!18 +REV 14:9!19 +REV 14:9!20 +REV 14:9!21 +REV 14:9!22 +REV 14:9!23 +REV 14:9!24 +REV 14:9!25 +REV 14:9!26 +REV 14:9!27 +REV 14:9!28 +REV 14:9!29 +REV 14:9!30 +REV 14:9!31 +REV 14:10!1 +REV 14:10!2 +REV 14:10!3 +REV 14:10!4 +REV 14:10!5 +REV 14:10!6 +REV 14:10!7 +REV 14:10!8 +REV 14:10!9 +REV 14:10!10 +REV 14:10!11 +REV 14:10!12 +REV 14:10!13 +REV 14:10!14 +REV 14:10!15 +REV 14:10!16 +REV 14:10!17 +REV 14:10!18 +REV 14:10!19 +REV 14:10!20 +REV 14:10!21 +REV 14:10!22 +REV 14:10!23 +REV 14:10!24 +REV 14:10!25 +REV 14:10!26 +REV 14:10!27 +REV 14:10!28 +REV 14:10!29 +REV 14:10!30 +REV 14:10!31 +REV 14:10!32 +REV 14:11!1 +REV 14:11!2 +REV 14:11!3 +REV 14:11!4 +REV 14:11!5 +REV 14:11!6 +REV 14:11!7 +REV 14:11!8 +REV 14:11!9 +REV 14:11!10 +REV 14:11!11 +REV 14:11!12 +REV 14:11!13 +REV 14:11!14 +REV 14:11!15 +REV 14:11!16 +REV 14:11!17 +REV 14:11!18 +REV 14:11!19 +REV 14:11!20 +REV 14:11!21 +REV 14:11!22 +REV 14:11!23 +REV 14:11!24 +REV 14:11!25 +REV 14:11!26 +REV 14:11!27 +REV 14:11!28 +REV 14:11!29 +REV 14:11!30 +REV 14:11!31 +REV 14:11!32 +REV 14:11!33 +REV 14:11!34 +REV 14:12!1 +REV 14:12!6 +REV 14:12!2 +REV 14:12!3 +REV 14:12!4 +REV 14:12!5 +REV 14:12!7 +REV 14:12!8 +REV 14:12!9 +REV 14:12!10 +REV 14:12!11 +REV 14:12!12 +REV 14:12!13 +REV 14:12!14 +REV 14:12!15 +REV 14:12!16 +REV 14:13!1 +REV 14:13!2 +REV 14:13!3 +REV 14:13!4 +REV 14:13!5 +REV 14:13!6 +REV 14:13!7 +REV 14:13!8 +REV 14:13!9 +REV 14:13!10 +REV 14:13!11 +REV 14:13!12 +REV 14:13!13 +REV 14:13!14 +REV 14:13!15 +REV 14:13!16 +REV 14:13!17 +REV 14:13!18 +REV 14:13!19 +REV 14:13!20 +REV 14:13!21 +REV 14:13!22 +REV 14:13!23 +REV 14:13!24 +REV 14:13!25 +REV 14:13!26 +REV 14:13!28 +REV 14:13!27 +REV 14:13!29 +REV 14:13!30 +REV 14:13!31 +REV 14:13!32 +REV 14:13!33 +REV 14:14!1 +REV 14:14!2 +REV 14:14!3 +REV 14:14!4 +REV 14:14!5 +REV 14:14!6 +REV 14:14!7 +REV 14:14!8 +REV 14:14!9 +REV 14:14!10 +REV 14:14!11 +REV 14:14!12 +REV 14:14!13 +REV 14:14!14 +REV 14:14!15 +REV 14:14!16 +REV 14:14!17 +REV 14:14!18 +REV 14:14!19 +REV 14:14!20 +REV 14:14!21 +REV 14:14!22 +REV 14:14!23 +REV 14:14!24 +REV 14:14!25 +REV 14:14!26 +REV 14:14!27 +REV 14:14!28 +REV 14:15!1 +REV 14:15!2 +REV 14:15!3 +REV 14:15!4 +REV 14:15!5 +REV 14:15!6 +REV 14:15!7 +REV 14:15!8 +REV 14:15!9 +REV 14:15!10 +REV 14:15!11 +REV 14:15!12 +REV 14:15!13 +REV 14:15!14 +REV 14:15!15 +REV 14:15!16 +REV 14:15!17 +REV 14:15!18 +REV 14:15!19 +REV 14:15!20 +REV 14:15!21 +REV 14:15!22 +REV 14:15!23 +REV 14:15!24 +REV 14:15!25 +REV 14:15!26 +REV 14:15!27 +REV 14:15!28 +REV 14:15!29 +REV 14:15!30 +REV 14:15!31 +REV 14:15!32 +REV 14:15!33 +REV 14:16!1 +REV 14:16!2 +REV 14:16!3 +REV 14:16!4 +REV 14:16!5 +REV 14:16!6 +REV 14:16!7 +REV 14:16!8 +REV 14:16!9 +REV 14:16!10 +REV 14:16!11 +REV 14:16!12 +REV 14:16!13 +REV 14:16!14 +REV 14:16!15 +REV 14:16!16 +REV 14:16!17 +REV 14:17!1 +REV 14:17!2 +REV 14:17!3 +REV 14:17!4 +REV 14:17!5 +REV 14:17!6 +REV 14:17!7 +REV 14:17!8 +REV 14:17!9 +REV 14:17!10 +REV 14:17!11 +REV 14:17!12 +REV 14:17!13 +REV 14:17!14 +REV 14:17!15 +REV 14:17!16 +REV 14:18!1 +REV 14:18!2 +REV 14:18!3 +REV 14:18!8 +REV 14:18!9 +REV 14:18!10 +REV 14:18!11 +REV 14:18!12 +REV 14:18!13 +REV 14:18!4 +REV 14:18!5 +REV 14:18!6 +REV 14:18!7 +REV 14:18!14 +REV 14:18!15 +REV 14:18!16 +REV 14:18!17 +REV 14:18!18 +REV 14:18!19 +REV 14:18!20 +REV 14:18!21 +REV 14:18!22 +REV 14:18!23 +REV 14:18!24 +REV 14:18!25 +REV 14:18!26 +REV 14:18!27 +REV 14:18!28 +REV 14:18!29 +REV 14:18!30 +REV 14:18!31 +REV 14:18!32 +REV 14:18!33 +REV 14:18!34 +REV 14:18!35 +REV 14:18!36 +REV 14:18!37 +REV 14:18!38 +REV 14:18!39 +REV 14:18!40 +REV 14:18!41 +REV 14:18!42 +REV 14:18!43 +REV 14:19!1 +REV 14:19!2 +REV 14:19!3 +REV 14:19!4 +REV 14:19!5 +REV 14:19!6 +REV 14:19!7 +REV 14:19!8 +REV 14:19!9 +REV 14:19!10 +REV 14:19!11 +REV 14:19!12 +REV 14:19!13 +REV 14:19!14 +REV 14:19!15 +REV 14:19!16 +REV 14:19!17 +REV 14:19!18 +REV 14:19!19 +REV 14:19!20 +REV 14:19!21 +REV 14:19!22 +REV 14:19!23 +REV 14:19!24 +REV 14:19!25 +REV 14:19!26 +REV 14:19!27 +REV 14:20!1 +REV 14:20!2 +REV 14:20!3 +REV 14:20!4 +REV 14:20!5 +REV 14:20!6 +REV 14:20!7 +REV 14:20!8 +REV 14:20!9 +REV 14:20!10 +REV 14:20!11 +REV 14:20!12 +REV 14:20!13 +REV 14:20!14 +REV 14:20!15 +REV 14:20!16 +REV 14:20!17 +REV 14:20!18 +REV 14:20!19 +REV 14:20!20 +REV 14:20!21 +REV 14:20!22 +REV 15:1!1 +REV 15:1!2 +REV 15:1!3 +REV 15:1!4 +REV 15:1!5 +REV 15:1!6 +REV 15:1!7 +REV 15:1!8 +REV 15:1!9 +REV 15:1!10 +REV 15:1!11 +REV 15:1!12 +REV 15:1!13 +REV 15:1!14 +REV 15:1!15 +REV 15:1!16 +REV 15:1!17 +REV 15:1!18 +REV 15:1!19 +REV 15:1!20 +REV 15:1!21 +REV 15:1!22 +REV 15:1!23 +REV 15:1!24 +REV 15:1!25 +REV 15:2!1 +REV 15:2!2 +REV 15:2!3 +REV 15:2!4 +REV 15:2!5 +REV 15:2!6 +REV 15:2!7 +REV 15:2!8 +REV 15:2!9 +REV 15:2!10 +REV 15:2!11 +REV 15:2!12 +REV 15:2!13 +REV 15:2!14 +REV 15:2!15 +REV 15:2!16 +REV 15:2!17 +REV 15:2!18 +REV 15:2!19 +REV 15:2!20 +REV 15:2!21 +REV 15:2!22 +REV 15:2!23 +REV 15:2!24 +REV 15:2!25 +REV 15:2!26 +REV 15:2!27 +REV 15:2!28 +REV 15:2!29 +REV 15:2!30 +REV 15:2!31 +REV 15:2!32 +REV 15:2!33 +REV 15:2!34 +REV 15:2!35 +REV 15:3!1 +REV 15:3!2 +REV 15:3!3 +REV 15:3!4 +REV 15:3!5 +REV 15:3!6 +REV 15:3!7 +REV 15:3!8 +REV 15:3!9 +REV 15:3!10 +REV 15:3!11 +REV 15:3!12 +REV 15:3!13 +REV 15:3!14 +REV 15:3!15 +REV 15:3!16 +REV 15:3!17 +REV 15:3!18 +REV 15:3!19 +REV 15:3!20 +REV 15:3!21 +REV 15:3!22 +REV 15:3!23 +REV 15:3!24 +REV 15:3!25 +REV 15:3!26 +REV 15:3!27 +REV 15:3!28 +REV 15:3!29 +REV 15:3!30 +REV 15:3!31 +REV 15:3!32 +REV 15:3!33 +REV 15:3!34 +REV 15:3!35 +REV 15:3!36 +REV 15:4!1 +REV 15:4!2 +REV 15:4!3 +REV 15:4!4 +REV 15:4!5 +REV 15:4!6 +REV 15:4!7 +REV 15:4!8 +REV 15:4!9 +REV 15:4!10 +REV 15:4!11 +REV 15:4!12 +REV 15:4!13 +REV 15:4!14 +REV 15:4!15 +REV 15:4!16 +REV 15:4!17 +REV 15:4!18 +REV 15:4!19 +REV 15:4!20 +REV 15:4!21 +REV 15:4!22 +REV 15:4!23 +REV 15:4!24 +REV 15:4!25 +REV 15:4!26 +REV 15:4!27 +REV 15:5!1 +REV 15:5!2 +REV 15:5!3 +REV 15:5!4 +REV 15:5!5 +REV 15:5!6 +REV 15:5!7 +REV 15:5!8 +REV 15:5!9 +REV 15:5!10 +REV 15:5!11 +REV 15:5!12 +REV 15:5!13 +REV 15:5!14 +REV 15:5!15 +REV 15:6!1 +REV 15:6!2 +REV 15:6!3 +REV 15:6!4 +REV 15:6!5 +REV 15:6!6 +REV 15:6!7 +REV 15:6!8 +REV 15:6!9 +REV 15:6!10 +REV 15:6!11 +REV 15:6!12 +REV 15:6!13 +REV 15:6!14 +REV 15:6!15 +REV 15:6!16 +REV 15:6!17 +REV 15:6!18 +REV 15:6!19 +REV 15:6!20 +REV 15:6!21 +REV 15:6!22 +REV 15:6!23 +REV 15:6!24 +REV 15:7!1 +REV 15:7!2 +REV 15:7!3 +REV 15:7!4 +REV 15:7!5 +REV 15:7!6 +REV 15:7!7 +REV 15:7!8 +REV 15:7!9 +REV 15:7!10 +REV 15:7!11 +REV 15:7!12 +REV 15:7!13 +REV 15:7!14 +REV 15:7!15 +REV 15:7!16 +REV 15:7!17 +REV 15:7!18 +REV 15:7!19 +REV 15:7!20 +REV 15:7!21 +REV 15:7!22 +REV 15:7!23 +REV 15:7!24 +REV 15:7!25 +REV 15:8!1 +REV 15:8!2 +REV 15:8!3 +REV 15:8!4 +REV 15:8!5 +REV 15:8!6 +REV 15:8!7 +REV 15:8!8 +REV 15:8!9 +REV 15:8!10 +REV 15:8!11 +REV 15:8!12 +REV 15:8!13 +REV 15:8!14 +REV 15:8!15 +REV 15:8!16 +REV 15:8!17 +REV 15:8!18 +REV 15:8!19 +REV 15:8!20 +REV 15:8!21 +REV 15:8!22 +REV 15:8!23 +REV 15:8!24 +REV 15:8!25 +REV 15:8!26 +REV 15:8!27 +REV 15:8!28 +REV 15:8!29 +REV 15:8!30 +REV 16:1!1 +REV 16:1!2 +REV 16:1!3 +REV 16:1!4 +REV 16:1!5 +REV 16:1!6 +REV 16:1!7 +REV 16:1!8 +REV 16:1!9 +REV 16:1!10 +REV 16:1!11 +REV 16:1!12 +REV 16:1!13 +REV 16:1!14 +REV 16:1!15 +REV 16:1!16 +REV 16:1!17 +REV 16:1!18 +REV 16:1!19 +REV 16:1!20 +REV 16:1!21 +REV 16:1!22 +REV 16:1!23 +REV 16:1!24 +REV 16:2!1 +REV 16:2!2 +REV 16:2!3 +REV 16:2!4 +REV 16:2!5 +REV 16:2!6 +REV 16:2!7 +REV 16:2!8 +REV 16:2!9 +REV 16:2!10 +REV 16:2!11 +REV 16:2!12 +REV 16:2!13 +REV 16:2!14 +REV 16:2!15 +REV 16:2!16 +REV 16:2!17 +REV 16:2!18 +REV 16:2!19 +REV 16:2!20 +REV 16:2!21 +REV 16:2!22 +REV 16:2!23 +REV 16:2!24 +REV 16:2!25 +REV 16:2!26 +REV 16:2!27 +REV 16:2!28 +REV 16:2!29 +REV 16:2!30 +REV 16:2!31 +REV 16:2!32 +REV 16:2!33 +REV 16:3!1 +REV 16:3!2 +REV 16:3!3 +REV 16:3!4 +REV 16:3!5 +REV 16:3!6 +REV 16:3!7 +REV 16:3!8 +REV 16:3!9 +REV 16:3!10 +REV 16:3!11 +REV 16:3!12 +REV 16:3!13 +REV 16:3!14 +REV 16:3!15 +REV 16:3!16 +REV 16:3!17 +REV 16:3!18 +REV 16:3!19 +REV 16:3!21 +REV 16:3!22 +REV 16:3!23 +REV 16:3!24 +REV 16:3!20 +REV 16:4!1 +REV 16:4!2 +REV 16:4!3 +REV 16:4!4 +REV 16:4!5 +REV 16:4!6 +REV 16:4!7 +REV 16:4!8 +REV 16:4!9 +REV 16:4!10 +REV 16:4!11 +REV 16:4!12 +REV 16:4!13 +REV 16:4!14 +REV 16:4!15 +REV 16:4!16 +REV 16:4!17 +REV 16:4!18 +REV 16:5!1 +REV 16:5!2 +REV 16:5!3 +REV 16:5!4 +REV 16:5!5 +REV 16:5!6 +REV 16:5!7 +REV 16:5!8 +REV 16:5!9 +REV 16:5!10 +REV 16:5!11 +REV 16:5!12 +REV 16:5!13 +REV 16:5!14 +REV 16:5!15 +REV 16:5!16 +REV 16:5!17 +REV 16:5!18 +REV 16:5!19 +REV 16:6!1 +REV 16:6!2 +REV 16:6!3 +REV 16:6!4 +REV 16:6!5 +REV 16:6!6 +REV 16:6!7 +REV 16:6!8 +REV 16:6!9 +REV 16:6!10 +REV 16:6!11 +REV 16:6!12 +REV 16:6!13 +REV 16:7!1 +REV 16:7!2 +REV 16:7!3 +REV 16:7!4 +REV 16:7!5 +REV 16:7!6 +REV 16:7!7 +REV 16:7!8 +REV 16:7!9 +REV 16:7!10 +REV 16:7!11 +REV 16:7!12 +REV 16:7!13 +REV 16:7!14 +REV 16:7!15 +REV 16:7!16 +REV 16:7!17 +REV 16:8!1 +REV 16:8!2 +REV 16:8!3 +REV 16:8!4 +REV 16:8!5 +REV 16:8!6 +REV 16:8!7 +REV 16:8!8 +REV 16:8!9 +REV 16:8!10 +REV 16:8!11 +REV 16:8!12 +REV 16:8!13 +REV 16:8!14 +REV 16:8!15 +REV 16:8!16 +REV 16:8!17 +REV 16:8!18 +REV 16:9!1 +REV 16:9!2 +REV 16:9!3 +REV 16:9!4 +REV 16:9!5 +REV 16:9!6 +REV 16:9!7 +REV 16:9!8 +REV 16:9!9 +REV 16:9!10 +REV 16:9!11 +REV 16:9!12 +REV 16:9!13 +REV 16:9!14 +REV 16:9!15 +REV 16:9!16 +REV 16:9!17 +REV 16:9!18 +REV 16:9!19 +REV 16:9!20 +REV 16:9!21 +REV 16:9!22 +REV 16:9!23 +REV 16:9!24 +REV 16:9!25 +REV 16:9!26 +REV 16:10!1 +REV 16:10!2 +REV 16:10!3 +REV 16:10!4 +REV 16:10!5 +REV 16:10!6 +REV 16:10!7 +REV 16:10!8 +REV 16:10!9 +REV 16:10!10 +REV 16:10!11 +REV 16:10!12 +REV 16:10!13 +REV 16:10!14 +REV 16:10!15 +REV 16:10!16 +REV 16:10!17 +REV 16:10!18 +REV 16:10!19 +REV 16:10!20 +REV 16:10!21 +REV 16:10!22 +REV 16:10!23 +REV 16:10!24 +REV 16:10!25 +REV 16:10!26 +REV 16:11!1 +REV 16:11!2 +REV 16:11!3 +REV 16:11!4 +REV 16:11!5 +REV 16:11!6 +REV 16:11!7 +REV 16:11!8 +REV 16:11!9 +REV 16:11!10 +REV 16:11!11 +REV 16:11!12 +REV 16:11!13 +REV 16:11!14 +REV 16:11!15 +REV 16:11!16 +REV 16:11!17 +REV 16:11!18 +REV 16:11!19 +REV 16:11!20 +REV 16:11!21 +REV 16:11!22 +REV 16:12!1 +REV 16:12!2 +REV 16:12!3 +REV 16:12!4 +REV 16:12!5 +REV 16:12!6 +REV 16:12!7 +REV 16:12!8 +REV 16:12!9 +REV 16:12!10 +REV 16:12!11 +REV 16:12!12 +REV 16:12!13 +REV 16:12!14 +REV 16:12!15 +REV 16:12!16 +REV 16:12!17 +REV 16:12!18 +REV 16:12!19 +REV 16:12!20 +REV 16:12!21 +REV 16:12!22 +REV 16:12!23 +REV 16:12!24 +REV 16:12!25 +REV 16:12!26 +REV 16:12!27 +REV 16:12!28 +REV 16:13!1 +REV 16:13!2 +REV 16:13!3 +REV 16:13!4 +REV 16:13!5 +REV 16:13!6 +REV 16:13!7 +REV 16:13!8 +REV 16:13!9 +REV 16:13!10 +REV 16:13!11 +REV 16:13!12 +REV 16:13!13 +REV 16:13!14 +REV 16:13!15 +REV 16:13!16 +REV 16:13!17 +REV 16:13!18 +REV 16:13!19 +REV 16:13!20 +REV 16:13!21 +REV 16:13!22 +REV 16:13!23 +REV 16:13!24 +REV 16:14!2 +REV 16:14!1 +REV 16:14!3 +REV 16:14!4 +REV 16:14!5 +REV 16:14!6 +REV 16:14!7 +REV 16:14!8 +REV 16:14!9 +REV 16:14!10 +REV 16:14!11 +REV 16:14!12 +REV 16:14!13 +REV 16:14!14 +REV 16:14!15 +REV 16:14!16 +REV 16:14!17 +REV 16:14!18 +REV 16:14!19 +REV 16:14!20 +REV 16:14!21 +REV 16:14!22 +REV 16:14!23 +REV 16:14!24 +REV 16:14!25 +REV 16:14!26 +REV 16:14!27 +REV 16:15!1 +REV 16:15!2 +REV 16:15!3 +REV 16:15!4 +REV 16:15!5 +REV 16:15!6 +REV 16:15!7 +REV 16:15!8 +REV 16:15!9 +REV 16:15!10 +REV 16:15!11 +REV 16:15!12 +REV 16:15!13 +REV 16:15!14 +REV 16:15!15 +REV 16:15!16 +REV 16:15!17 +REV 16:15!18 +REV 16:15!19 +REV 16:15!20 +REV 16:15!21 +REV 16:16!1 +REV 16:16!2 +REV 16:16!3 +REV 16:16!4 +REV 16:16!5 +REV 16:16!6 +REV 16:16!7 +REV 16:16!8 +REV 16:16!9 +REV 16:16!10 +REV 16:17!1 +REV 16:17!2 +REV 16:17!3 +REV 16:17!4 +REV 16:17!5 +REV 16:17!6 +REV 16:17!7 +REV 16:17!8 +REV 16:17!9 +REV 16:17!10 +REV 16:17!11 +REV 16:17!12 +REV 16:17!13 +REV 16:17!14 +REV 16:17!15 +REV 16:17!16 +REV 16:17!17 +REV 16:17!18 +REV 16:17!19 +REV 16:17!20 +REV 16:17!21 +REV 16:17!22 +REV 16:18!1 +REV 16:18!2 +REV 16:18!3 +REV 16:18!4 +REV 16:18!5 +REV 16:18!6 +REV 16:18!7 +REV 16:18!8 +REV 16:18!9 +REV 16:18!11 +REV 16:18!10 +REV 16:18!12 +REV 16:18!13 +REV 16:18!14 +REV 16:18!15 +REV 16:18!16 +REV 16:18!17 +REV 16:18!18 +REV 16:18!19 +REV 16:18!20 +REV 16:18!21 +REV 16:18!22 +REV 16:18!23 +REV 16:18!24 +REV 16:18!25 +REV 16:19!1 +REV 16:19!2 +REV 16:19!3 +REV 16:19!4 +REV 16:19!5 +REV 16:19!6 +REV 16:19!7 +REV 16:19!8 +REV 16:19!9 +REV 16:19!10 +REV 16:19!11 +REV 16:19!12 +REV 16:19!13 +REV 16:19!14 +REV 16:19!15 +REV 16:19!16 +REV 16:19!17 +REV 16:19!18 +REV 16:19!19 +REV 16:19!20 +REV 16:19!21 +REV 16:19!22 +REV 16:19!23 +REV 16:19!24 +REV 16:19!25 +REV 16:19!26 +REV 16:19!27 +REV 16:19!28 +REV 16:19!29 +REV 16:19!30 +REV 16:19!31 +REV 16:19!32 +REV 16:19!33 +REV 16:19!34 +REV 16:20!1 +REV 16:20!2 +REV 16:20!3 +REV 16:20!4 +REV 16:20!5 +REV 16:20!6 +REV 16:20!7 +REV 16:20!8 +REV 16:21!1 +REV 16:21!2 +REV 16:21!3 +REV 16:21!4 +REV 16:21!5 +REV 16:21!6 +REV 16:21!7 +REV 16:21!8 +REV 16:21!9 +REV 16:21!10 +REV 16:21!11 +REV 16:21!12 +REV 16:21!13 +REV 16:21!14 +REV 16:21!15 +REV 16:21!16 +REV 16:21!17 +REV 16:21!18 +REV 16:21!19 +REV 16:21!20 +REV 16:21!21 +REV 16:21!22 +REV 16:21!23 +REV 16:21!24 +REV 16:21!25 +REV 16:21!26 +REV 16:21!27 +REV 16:21!28 +REV 16:21!29 +REV 16:21!30 +REV 17:1!1 +REV 17:1!2 +REV 17:1!3 +REV 17:1!4 +REV 17:1!5 +REV 17:1!6 +REV 17:1!7 +REV 17:1!8 +REV 17:1!9 +REV 17:1!10 +REV 17:1!11 +REV 17:1!12 +REV 17:1!13 +REV 17:1!14 +REV 17:1!15 +REV 17:1!16 +REV 17:1!17 +REV 17:1!18 +REV 17:1!19 +REV 17:1!20 +REV 17:1!21 +REV 17:1!22 +REV 17:1!23 +REV 17:1!24 +REV 17:1!25 +REV 17:1!26 +REV 17:1!27 +REV 17:1!28 +REV 17:1!29 +REV 17:1!30 +REV 17:1!31 +REV 17:2!1 +REV 17:2!2 +REV 17:2!3 +REV 17:2!4 +REV 17:2!5 +REV 17:2!6 +REV 17:2!7 +REV 17:2!8 +REV 17:2!9 +REV 17:2!10 +REV 17:2!11 +REV 17:2!12 +REV 17:2!13 +REV 17:2!14 +REV 17:2!15 +REV 17:2!16 +REV 17:2!17 +REV 17:2!18 +REV 17:2!19 +REV 17:3!1 +REV 17:3!2 +REV 17:3!3 +REV 17:3!4 +REV 17:3!5 +REV 17:3!6 +REV 17:3!7 +REV 17:3!8 +REV 17:3!9 +REV 17:3!10 +REV 17:3!11 +REV 17:3!12 +REV 17:3!13 +REV 17:3!14 +REV 17:3!15 +REV 17:3!16 +REV 17:3!17 +REV 17:3!18 +REV 17:3!19 +REV 17:3!20 +REV 17:3!21 +REV 17:3!22 +REV 17:3!23 +REV 17:4!1 +REV 17:4!2 +REV 17:4!3 +REV 17:4!4 +REV 17:4!5 +REV 17:4!6 +REV 17:4!7 +REV 17:4!8 +REV 17:4!9 +REV 17:4!10 +REV 17:4!11 +REV 17:4!12 +REV 17:4!13 +REV 17:4!14 +REV 17:4!15 +REV 17:4!16 +REV 17:4!17 +REV 17:4!20 +REV 17:4!21 +REV 17:4!22 +REV 17:4!23 +REV 17:4!18 +REV 17:4!19 +REV 17:4!24 +REV 17:4!25 +REV 17:4!26 +REV 17:4!27 +REV 17:4!28 +REV 17:4!29 +REV 17:4!30 +REV 17:4!31 +REV 17:5!1 +REV 17:5!2 +REV 17:5!3 +REV 17:5!4 +REV 17:5!5 +REV 17:5!7 +REV 17:5!6 +REV 17:5!8 +REV 17:5!9 +REV 17:5!10 +REV 17:5!11 +REV 17:5!12 +REV 17:5!13 +REV 17:5!14 +REV 17:5!15 +REV 17:5!16 +REV 17:5!17 +REV 17:5!18 +REV 17:5!19 +REV 17:5!20 +REV 17:6!1 +REV 17:6!2 +REV 17:6!3 +REV 17:6!4 +REV 17:6!5 +REV 17:6!6 +REV 17:6!7 +REV 17:6!8 +REV 17:6!9 +REV 17:6!10 +REV 17:6!11 +REV 17:6!12 +REV 17:6!13 +REV 17:6!14 +REV 17:6!15 +REV 17:6!16 +REV 17:6!17 +REV 17:6!18 +REV 17:6!19 +REV 17:6!20 +REV 17:6!21 +REV 17:6!22 +REV 17:6!23 +REV 17:7!1 +REV 17:7!2 +REV 17:7!3 +REV 17:7!4 +REV 17:7!5 +REV 17:7!6 +REV 17:7!7 +REV 17:7!8 +REV 17:7!9 +REV 17:7!10 +REV 17:7!11 +REV 17:7!12 +REV 17:7!13 +REV 17:7!14 +REV 17:7!15 +REV 17:7!16 +REV 17:7!17 +REV 17:7!18 +REV 17:7!19 +REV 17:7!20 +REV 17:7!21 +REV 17:7!22 +REV 17:7!23 +REV 17:7!24 +REV 17:7!25 +REV 17:7!26 +REV 17:7!27 +REV 17:7!28 +REV 17:7!29 +REV 17:7!30 +REV 17:8!1 +REV 17:8!2 +REV 17:8!3 +REV 17:8!4 +REV 17:8!5 +REV 17:8!6 +REV 17:8!7 +REV 17:8!8 +REV 17:8!9 +REV 17:8!10 +REV 17:8!11 +REV 17:8!12 +REV 17:8!13 +REV 17:8!14 +REV 17:8!15 +REV 17:8!16 +REV 17:8!17 +REV 17:8!18 +REV 17:8!19 +REV 17:8!20 +REV 17:8!21 +REV 17:8!22 +REV 17:8!23 +REV 17:8!24 +REV 17:8!25 +REV 17:8!26 +REV 17:8!29 +REV 17:8!30 +REV 17:8!27 +REV 17:8!28 +REV 17:8!31 +REV 17:8!32 +REV 17:8!33 +REV 17:8!34 +REV 17:8!35 +REV 17:8!36 +REV 17:8!37 +REV 17:8!38 +REV 17:8!39 +REV 17:8!40 +REV 17:8!41 +REV 17:8!42 +REV 17:8!43 +REV 17:8!44 +REV 17:8!45 +REV 17:8!46 +REV 17:8!47 +REV 17:8!48 +REV 17:9!1 +REV 17:9!2 +REV 17:9!3 +REV 17:9!4 +REV 17:9!5 +REV 17:9!6 +REV 17:9!7 +REV 17:9!8 +REV 17:9!9 +REV 17:9!10 +REV 17:9!11 +REV 17:9!12 +REV 17:9!13 +REV 17:9!14 +REV 17:9!15 +REV 17:9!16 +REV 17:9!17 +REV 17:9!18 +REV 17:9!19 +REV 17:9!20 +REV 17:9!21 +REV 17:9!22 +REV 17:10!1 +REV 17:10!2 +REV 17:10!3 +REV 17:10!4 +REV 17:10!5 +REV 17:10!6 +REV 17:10!7 +REV 17:10!8 +REV 17:10!9 +REV 17:10!10 +REV 17:10!11 +REV 17:10!12 +REV 17:10!13 +REV 17:10!14 +REV 17:10!15 +REV 17:10!17 +REV 17:10!16 +REV 17:11!1 +REV 17:11!2 +REV 17:11!3 +REV 17:11!4 +REV 17:11!5 +REV 17:11!6 +REV 17:11!7 +REV 17:11!8 +REV 17:11!9 +REV 17:11!10 +REV 17:11!11 +REV 17:11!12 +REV 17:11!13 +REV 17:11!14 +REV 17:11!15 +REV 17:11!16 +REV 17:11!17 +REV 17:11!18 +REV 17:11!19 +REV 17:11!20 +REV 17:11!21 +REV 17:12!1 +REV 17:12!2 +REV 17:12!3 +REV 17:12!4 +REV 17:12!5 +REV 17:12!6 +REV 17:12!9 +REV 17:12!7 +REV 17:12!8 +REV 17:12!10 +REV 17:12!11 +REV 17:12!12 +REV 17:12!13 +REV 17:12!14 +REV 17:12!15 +REV 17:12!16 +REV 17:12!17 +REV 17:12!18 +REV 17:12!19 +REV 17:12!20 +REV 17:12!21 +REV 17:12!22 +REV 17:12!23 +REV 17:13!1 +REV 17:13!2 +REV 17:13!3 +REV 17:13!4 +REV 17:13!5 +REV 17:13!6 +REV 17:13!7 +REV 17:13!8 +REV 17:13!9 +REV 17:13!10 +REV 17:13!11 +REV 17:13!12 +REV 17:13!13 +REV 17:14!1 +REV 17:14!2 +REV 17:14!3 +REV 17:14!4 +REV 17:14!5 +REV 17:14!6 +REV 17:14!7 +REV 17:14!8 +REV 17:14!9 +REV 17:14!10 +REV 17:14!11 +REV 17:14!14 +REV 17:14!12 +REV 17:14!13 +REV 17:14!15 +REV 17:14!16 +REV 17:14!17 +REV 17:14!18 +REV 17:14!19 +REV 17:14!20 +REV 17:14!21 +REV 17:14!22 +REV 17:14!23 +REV 17:14!24 +REV 17:14!25 +REV 17:14!26 +REV 17:15!1 +REV 17:15!2 +REV 17:15!3 +REV 17:15!4 +REV 17:15!5 +REV 17:15!6 +REV 17:15!7 +REV 17:15!8 +REV 17:15!9 +REV 17:15!10 +REV 17:15!11 +REV 17:15!15 +REV 17:15!12 +REV 17:15!13 +REV 17:15!14 +REV 17:15!16 +REV 17:15!17 +REV 17:15!18 +REV 17:15!19 +REV 17:16!1 +REV 17:16!2 +REV 17:16!3 +REV 17:16!4 +REV 17:16!5 +REV 17:16!6 +REV 17:16!7 +REV 17:16!8 +REV 17:16!9 +REV 17:16!10 +REV 17:16!11 +REV 17:16!12 +REV 17:16!13 +REV 17:16!14 +REV 17:16!16 +REV 17:16!17 +REV 17:16!15 +REV 17:16!18 +REV 17:16!19 +REV 17:16!20 +REV 17:16!21 +REV 17:16!22 +REV 17:16!23 +REV 17:16!24 +REV 17:16!25 +REV 17:16!26 +REV 17:16!27 +REV 17:16!28 +REV 17:16!29 +REV 17:17!2 +REV 17:17!1 +REV 17:17!3 +REV 17:17!4 +REV 17:17!5 +REV 17:17!6 +REV 17:17!7 +REV 17:17!8 +REV 17:17!9 +REV 17:17!10 +REV 17:17!11 +REV 17:17!12 +REV 17:17!13 +REV 17:17!14 +REV 17:17!15 +REV 17:17!16 +REV 17:17!17 +REV 17:17!18 +REV 17:17!19 +REV 17:17!20 +REV 17:17!21 +REV 17:17!22 +REV 17:17!23 +REV 17:17!24 +REV 17:17!25 +REV 17:17!26 +REV 17:17!27 +REV 17:17!28 +REV 17:17!29 +REV 17:18!1 +REV 17:18!2 +REV 17:18!3 +REV 17:18!4 +REV 17:18!5 +REV 17:18!6 +REV 17:18!7 +REV 17:18!8 +REV 17:18!9 +REV 17:18!10 +REV 17:18!11 +REV 17:18!12 +REV 17:18!13 +REV 17:18!14 +REV 17:18!15 +REV 17:18!16 +REV 17:18!17 +REV 17:18!18 +REV 18:1!1 +REV 18:1!2 +REV 18:1!3 +REV 18:1!4 +REV 18:1!5 +REV 18:1!6 +REV 18:1!7 +REV 18:1!8 +REV 18:1!9 +REV 18:1!10 +REV 18:1!11 +REV 18:1!12 +REV 18:1!13 +REV 18:1!14 +REV 18:1!15 +REV 18:1!16 +REV 18:1!17 +REV 18:1!18 +REV 18:1!19 +REV 18:1!20 +REV 18:2!1 +REV 18:2!2 +REV 18:2!3 +REV 18:2!4 +REV 18:2!5 +REV 18:2!6 +REV 18:2!7 +REV 18:2!8 +REV 18:2!9 +REV 18:2!10 +REV 18:2!11 +REV 18:2!12 +REV 18:2!13 +REV 18:2!14 +REV 18:2!15 +REV 18:2!16 +REV 18:2!17 +REV 18:2!18 +REV 18:2!19 +REV 18:2!20 +REV 18:2!21 +REV 18:2!22 +REV 18:2!23 +REV 18:2!24 +REV 18:2!25 +REV 18:2!26 +REV 18:2!27 +REV 18:3!1 +REV 18:3!2 +REV 18:3!3 +REV 18:3!4 +REV 18:3!5 +REV 18:3!6 +REV 18:3!7 +REV 18:3!8 +REV 18:3!9 +REV 18:3!10 +REV 18:3!11 +REV 18:3!12 +REV 18:3!13 +REV 18:3!14 +REV 18:3!15 +REV 18:3!16 +REV 18:3!17 +REV 18:3!18 +REV 18:3!19 +REV 18:3!20 +REV 18:3!21 +REV 18:3!22 +REV 18:3!23 +REV 18:3!24 +REV 18:3!25 +REV 18:3!26 +REV 18:3!27 +REV 18:3!28 +REV 18:3!29 +REV 18:3!30 +REV 18:3!31 +REV 18:3!32 +REV 18:3!33 +REV 18:4!1 +REV 18:4!2 +REV 18:4!3 +REV 18:4!4 +REV 18:4!5 +REV 18:4!6 +REV 18:4!7 +REV 18:4!8 +REV 18:4!10 +REV 18:4!11 +REV 18:4!12 +REV 18:4!9 +REV 18:4!13 +REV 18:4!14 +REV 18:4!15 +REV 18:4!16 +REV 18:4!17 +REV 18:4!18 +REV 18:4!19 +REV 18:4!20 +REV 18:4!21 +REV 18:4!26 +REV 18:4!22 +REV 18:4!23 +REV 18:4!24 +REV 18:4!25 +REV 18:4!27 +REV 18:4!28 +REV 18:5!1 +REV 18:5!2 +REV 18:5!3 +REV 18:5!4 +REV 18:5!5 +REV 18:5!6 +REV 18:5!7 +REV 18:5!8 +REV 18:5!9 +REV 18:5!10 +REV 18:5!11 +REV 18:5!12 +REV 18:5!13 +REV 18:5!14 +REV 18:5!15 +REV 18:6!1 +REV 18:6!2 +REV 18:6!3 +REV 18:6!4 +REV 18:6!5 +REV 18:6!6 +REV 18:6!7 +REV 18:6!8 +REV 18:6!9 +REV 18:6!10 +REV 18:6!11 +REV 18:6!12 +REV 18:6!13 +REV 18:6!14 +REV 18:6!15 +REV 18:6!16 +REV 18:6!17 +REV 18:6!18 +REV 18:6!19 +REV 18:6!20 +REV 18:6!21 +REV 18:6!22 +REV 18:7!1 +REV 18:7!2 +REV 18:7!3 +REV 18:7!4 +REV 18:7!5 +REV 18:7!6 +REV 18:7!9 +REV 18:7!10 +REV 18:7!11 +REV 18:7!7 +REV 18:7!8 +REV 18:7!12 +REV 18:7!13 +REV 18:7!14 +REV 18:7!15 +REV 18:7!16 +REV 18:7!17 +REV 18:7!18 +REV 18:7!19 +REV 18:7!20 +REV 18:7!21 +REV 18:7!22 +REV 18:7!23 +REV 18:7!24 +REV 18:7!25 +REV 18:7!26 +REV 18:7!27 +REV 18:7!28 +REV 18:7!29 +REV 18:8!1 +REV 18:8!2 +REV 18:8!3 +REV 18:8!4 +REV 18:8!5 +REV 18:8!6 +REV 18:8!7 +REV 18:8!8 +REV 18:8!9 +REV 18:8!10 +REV 18:8!11 +REV 18:8!12 +REV 18:8!13 +REV 18:8!14 +REV 18:8!15 +REV 18:8!16 +REV 18:8!17 +REV 18:8!18 +REV 18:8!19 +REV 18:8!20 +REV 18:8!21 +REV 18:8!22 +REV 18:8!23 +REV 18:8!24 +REV 18:8!25 +REV 18:8!26 +REV 18:9!1 +REV 18:9!2 +REV 18:9!3 +REV 18:9!4 +REV 18:9!5 +REV 18:9!6 +REV 18:9!7 +REV 18:9!8 +REV 18:9!9 +REV 18:9!10 +REV 18:9!11 +REV 18:9!12 +REV 18:9!13 +REV 18:9!14 +REV 18:9!15 +REV 18:9!16 +REV 18:9!17 +REV 18:9!18 +REV 18:9!19 +REV 18:9!20 +REV 18:9!21 +REV 18:9!22 +REV 18:9!23 +REV 18:10!1 +REV 18:10!2 +REV 18:10!3 +REV 18:10!4 +REV 18:10!5 +REV 18:10!6 +REV 18:10!7 +REV 18:10!8 +REV 18:10!9 +REV 18:10!10 +REV 18:10!11 +REV 18:10!12 +REV 18:10!13 +REV 18:10!14 +REV 18:10!15 +REV 18:10!16 +REV 18:10!17 +REV 18:10!18 +REV 18:10!19 +REV 18:10!20 +REV 18:10!21 +REV 18:10!22 +REV 18:10!23 +REV 18:10!24 +REV 18:10!25 +REV 18:10!26 +REV 18:10!27 +REV 18:10!28 +REV 18:11!1 +REV 18:11!2 +REV 18:11!3 +REV 18:11!4 +REV 18:11!5 +REV 18:11!6 +REV 18:11!7 +REV 18:11!8 +REV 18:11!9 +REV 18:11!10 +REV 18:11!11 +REV 18:11!15 +REV 18:11!16 +REV 18:11!17 +REV 18:11!12 +REV 18:11!13 +REV 18:11!14 +REV 18:12!1 +REV 18:12!2 +REV 18:12!3 +REV 18:12!4 +REV 18:12!5 +REV 18:12!6 +REV 18:12!7 +REV 18:12!8 +REV 18:12!9 +REV 18:12!10 +REV 18:12!11 +REV 18:12!12 +REV 18:12!13 +REV 18:12!14 +REV 18:12!15 +REV 18:12!16 +REV 18:12!17 +REV 18:12!18 +REV 18:12!19 +REV 18:12!20 +REV 18:12!21 +REV 18:12!22 +REV 18:12!23 +REV 18:12!24 +REV 18:12!25 +REV 18:12!26 +REV 18:12!27 +REV 18:12!28 +REV 18:12!29 +REV 18:12!30 +REV 18:12!31 +REV 18:12!32 +REV 18:12!33 +REV 18:12!34 +REV 18:12!35 +REV 18:12!36 +REV 18:12!37 +REV 18:13!1 +REV 18:13!2 +REV 18:13!3 +REV 18:13!4 +REV 18:13!5 +REV 18:13!6 +REV 18:13!7 +REV 18:13!8 +REV 18:13!9 +REV 18:13!10 +REV 18:13!11 +REV 18:13!12 +REV 18:13!13 +REV 18:13!14 +REV 18:13!15 +REV 18:13!16 +REV 18:13!17 +REV 18:13!18 +REV 18:13!19 +REV 18:13!20 +REV 18:13!21 +REV 18:13!22 +REV 18:13!23 +REV 18:13!24 +REV 18:13!25 +REV 18:13!26 +REV 18:13!27 +REV 18:13!28 +REV 18:13!29 +REV 18:13!30 +REV 18:13!31 +REV 18:14!1 +REV 18:14!2 +REV 18:14!3 +REV 18:14!4 +REV 18:14!5 +REV 18:14!6 +REV 18:14!7 +REV 18:14!8 +REV 18:14!9 +REV 18:14!10 +REV 18:14!11 +REV 18:14!12 +REV 18:14!13 +REV 18:14!14 +REV 18:14!15 +REV 18:14!16 +REV 18:14!17 +REV 18:14!18 +REV 18:14!19 +REV 18:14!20 +REV 18:14!21 +REV 18:14!22 +REV 18:14!23 +REV 18:14!24 +REV 18:14!25 +REV 18:14!26 +REV 18:14!27 +REV 18:15!1 +REV 18:15!2 +REV 18:15!3 +REV 18:15!4 +REV 18:15!5 +REV 18:15!6 +REV 18:15!7 +REV 18:15!8 +REV 18:15!9 +REV 18:15!10 +REV 18:15!11 +REV 18:15!12 +REV 18:15!13 +REV 18:15!14 +REV 18:15!15 +REV 18:15!16 +REV 18:15!17 +REV 18:15!18 +REV 18:15!19 +REV 18:16!1 +REV 18:16!2 +REV 18:16!3 +REV 18:16!4 +REV 18:16!5 +REV 18:16!6 +REV 18:16!7 +REV 18:16!8 +REV 18:16!9 +REV 18:16!10 +REV 18:16!11 +REV 18:16!12 +REV 18:16!13 +REV 18:16!14 +REV 18:16!15 +REV 18:16!16 +REV 18:16!17 +REV 18:16!18 +REV 18:16!19 +REV 18:16!20 +REV 18:16!21 +REV 18:16!22 +REV 18:16!23 +REV 18:17!1 +REV 18:17!2 +REV 18:17!3 +REV 18:17!4 +REV 18:17!5 +REV 18:17!6 +REV 18:17!7 +REV 18:17!8 +REV 18:17!9 +REV 18:17!10 +REV 18:17!11 +REV 18:17!12 +REV 18:17!13 +REV 18:17!14 +REV 18:17!15 +REV 18:17!16 +REV 18:17!17 +REV 18:17!18 +REV 18:17!19 +REV 18:17!20 +REV 18:17!21 +REV 18:17!22 +REV 18:17!23 +REV 18:17!24 +REV 18:17!25 +REV 18:17!26 +REV 18:18!1 +REV 18:18!2 +REV 18:18!3 +REV 18:18!4 +REV 18:18!5 +REV 18:18!6 +REV 18:18!7 +REV 18:18!8 +REV 18:18!9 +REV 18:18!10 +REV 18:18!11 +REV 18:18!12 +REV 18:18!13 +REV 18:18!14 +REV 18:18!15 +REV 18:19!1 +REV 18:19!2 +REV 18:19!3 +REV 18:19!4 +REV 18:19!5 +REV 18:19!6 +REV 18:19!7 +REV 18:19!8 +REV 18:19!9 +REV 18:19!10 +REV 18:19!11 +REV 18:19!12 +REV 18:19!13 +REV 18:19!14 +REV 18:19!15 +REV 18:19!16 +REV 18:19!17 +REV 18:19!18 +REV 18:19!19 +REV 18:19!20 +REV 18:19!21 +REV 18:19!22 +REV 18:19!23 +REV 18:19!24 +REV 18:19!25 +REV 18:19!26 +REV 18:19!27 +REV 18:19!28 +REV 18:19!29 +REV 18:19!30 +REV 18:19!31 +REV 18:19!32 +REV 18:19!33 +REV 18:19!34 +REV 18:19!35 +REV 18:19!36 +REV 18:19!37 +REV 18:19!38 +REV 18:20!1 +REV 18:20!2 +REV 18:20!3 +REV 18:20!4 +REV 18:20!5 +REV 18:20!6 +REV 18:20!7 +REV 18:20!8 +REV 18:20!9 +REV 18:20!10 +REV 18:20!11 +REV 18:20!12 +REV 18:20!13 +REV 18:20!14 +REV 18:20!15 +REV 18:20!16 +REV 18:20!17 +REV 18:20!18 +REV 18:20!19 +REV 18:20!20 +REV 18:20!21 +REV 18:20!22 +REV 18:21!1 +REV 18:21!2 +REV 18:21!3 +REV 18:21!4 +REV 18:21!5 +REV 18:21!6 +REV 18:21!7 +REV 18:21!8 +REV 18:21!9 +REV 18:21!10 +REV 18:21!11 +REV 18:21!12 +REV 18:21!13 +REV 18:21!14 +REV 18:21!15 +REV 18:21!16 +REV 18:21!17 +REV 18:21!18 +REV 18:21!19 +REV 18:21!20 +REV 18:21!21 +REV 18:21!22 +REV 18:21!23 +REV 18:21!24 +REV 18:21!25 +REV 18:21!26 +REV 18:21!27 +REV 18:22!1 +REV 18:22!2 +REV 18:22!3 +REV 18:22!4 +REV 18:22!5 +REV 18:22!6 +REV 18:22!7 +REV 18:22!8 +REV 18:22!9 +REV 18:22!10 +REV 18:22!11 +REV 18:22!12 +REV 18:22!13 +REV 18:22!14 +REV 18:22!15 +REV 18:22!16 +REV 18:22!17 +REV 18:22!18 +REV 18:22!19 +REV 18:22!20 +REV 18:22!21 +REV 18:22!22 +REV 18:22!23 +REV 18:22!24 +REV 18:22!25 +REV 18:22!26 +REV 18:22!27 +REV 18:22!28 +REV 18:22!29 +REV 18:22!30 +REV 18:22!31 +REV 18:22!32 +REV 18:22!33 +REV 18:22!34 +REV 18:22!35 +REV 18:23!1 +REV 18:23!2 +REV 18:23!3 +REV 18:23!4 +REV 18:23!5 +REV 18:23!6 +REV 18:23!7 +REV 18:23!8 +REV 18:23!9 +REV 18:23!10 +REV 18:23!11 +REV 18:23!12 +REV 18:23!13 +REV 18:23!14 +REV 18:23!15 +REV 18:23!16 +REV 18:23!17 +REV 18:23!18 +REV 18:23!19 +REV 18:23!20 +REV 18:23!21 +REV 18:23!22 +REV 18:23!23 +REV 18:23!24 +REV 18:23!25 +REV 18:23!26 +REV 18:23!27 +REV 18:23!28 +REV 18:23!29 +REV 18:23!30 +REV 18:23!31 +REV 18:23!32 +REV 18:23!33 +REV 18:23!34 +REV 18:23!35 +REV 18:23!36 +REV 18:23!37 +REV 18:23!38 +REV 18:24!1 +REV 18:24!2 +REV 18:24!3 +REV 18:24!8 +REV 18:24!4 +REV 18:24!5 +REV 18:24!6 +REV 18:24!7 +REV 18:24!9 +REV 18:24!10 +REV 18:24!11 +REV 18:24!12 +REV 18:24!13 +REV 18:24!14 +REV 18:24!15 +REV 19:1!1 +REV 19:1!2 +REV 19:1!3 +REV 19:1!4 +REV 19:1!5 +REV 19:1!6 +REV 19:1!7 +REV 19:1!8 +REV 19:1!9 +REV 19:1!10 +REV 19:1!11 +REV 19:1!12 +REV 19:1!13 +REV 19:1!14 +REV 19:1!15 +REV 19:1!16 +REV 19:1!17 +REV 19:1!18 +REV 19:1!19 +REV 19:1!20 +REV 19:1!21 +REV 19:1!22 +REV 19:1!23 +REV 19:1!24 +REV 19:2!1 +REV 19:2!2 +REV 19:2!3 +REV 19:2!4 +REV 19:2!5 +REV 19:2!6 +REV 19:2!7 +REV 19:2!8 +REV 19:2!9 +REV 19:2!10 +REV 19:2!11 +REV 19:2!12 +REV 19:2!13 +REV 19:2!14 +REV 19:2!15 +REV 19:2!16 +REV 19:2!17 +REV 19:2!18 +REV 19:2!19 +REV 19:2!20 +REV 19:2!21 +REV 19:2!22 +REV 19:2!23 +REV 19:2!24 +REV 19:2!25 +REV 19:2!26 +REV 19:2!27 +REV 19:2!28 +REV 19:2!29 +REV 19:2!30 +REV 19:2!31 +REV 19:3!1 +REV 19:3!2 +REV 19:3!3 +REV 19:3!4 +REV 19:3!5 +REV 19:3!6 +REV 19:3!7 +REV 19:3!8 +REV 19:3!9 +REV 19:3!10 +REV 19:3!11 +REV 19:3!12 +REV 19:3!13 +REV 19:3!14 +REV 19:4!1 +REV 19:4!2 +REV 19:4!3 +REV 19:4!4 +REV 19:4!5 +REV 19:4!6 +REV 19:4!7 +REV 19:4!8 +REV 19:4!9 +REV 19:4!10 +REV 19:4!11 +REV 19:4!12 +REV 19:4!13 +REV 19:4!14 +REV 19:4!15 +REV 19:4!16 +REV 19:4!17 +REV 19:4!18 +REV 19:4!19 +REV 19:4!20 +REV 19:4!21 +REV 19:4!22 +REV 19:4!23 +REV 19:5!1 +REV 19:5!2 +REV 19:5!3 +REV 19:5!4 +REV 19:5!5 +REV 19:5!6 +REV 19:5!7 +REV 19:5!8 +REV 19:5!9 +REV 19:5!10 +REV 19:5!11 +REV 19:5!12 +REV 19:5!13 +REV 19:5!14 +REV 19:5!15 +REV 19:5!16 +REV 19:5!17 +REV 19:5!18 +REV 19:5!19 +REV 19:5!20 +REV 19:5!21 +REV 19:5!22 +REV 19:5!23 +REV 19:6!1 +REV 19:6!2 +REV 19:6!3 +REV 19:6!4 +REV 19:6!5 +REV 19:6!6 +REV 19:6!7 +REV 19:6!8 +REV 19:6!9 +REV 19:6!10 +REV 19:6!11 +REV 19:6!12 +REV 19:6!13 +REV 19:6!14 +REV 19:6!15 +REV 19:6!16 +REV 19:6!17 +REV 19:6!18 +REV 19:6!19 +REV 19:6!20 +REV 19:6!21 +REV 19:6!22 +REV 19:6!23 +REV 19:6!24 +REV 19:6!25 +REV 19:6!26 +REV 19:7!1 +REV 19:7!2 +REV 19:7!3 +REV 19:7!4 +REV 19:7!5 +REV 19:7!6 +REV 19:7!7 +REV 19:7!8 +REV 19:7!9 +REV 19:7!10 +REV 19:7!11 +REV 19:7!12 +REV 19:7!13 +REV 19:7!14 +REV 19:7!15 +REV 19:7!16 +REV 19:7!17 +REV 19:7!18 +REV 19:7!19 +REV 19:7!20 +REV 19:8!1 +REV 19:8!2 +REV 19:8!3 +REV 19:8!4 +REV 19:8!5 +REV 19:8!6 +REV 19:8!7 +REV 19:8!8 +REV 19:8!10 +REV 19:8!9 +REV 19:8!11 +REV 19:8!12 +REV 19:8!13 +REV 19:8!14 +REV 19:8!15 +REV 19:8!16 +REV 19:9!1 +REV 19:9!2 +REV 19:9!3 +REV 19:9!4 +REV 19:9!5 +REV 19:9!6 +REV 19:9!7 +REV 19:9!8 +REV 19:9!9 +REV 19:9!10 +REV 19:9!11 +REV 19:9!12 +REV 19:9!13 +REV 19:9!14 +REV 19:9!15 +REV 19:9!16 +REV 19:9!17 +REV 19:9!18 +REV 19:9!19 +REV 19:9!20 +REV 19:9!21 +REV 19:9!22 +REV 19:9!23 +REV 19:9!24 +REV 19:10!1 +REV 19:10!2 +REV 19:10!3 +REV 19:10!4 +REV 19:10!5 +REV 19:10!6 +REV 19:10!7 +REV 19:10!8 +REV 19:10!9 +REV 19:10!10 +REV 19:10!11 +REV 19:10!12 +REV 19:10!13 +REV 19:10!16 +REV 19:10!14 +REV 19:10!15 +REV 19:10!17 +REV 19:10!18 +REV 19:10!19 +REV 19:10!20 +REV 19:10!21 +REV 19:10!22 +REV 19:10!23 +REV 19:10!24 +REV 19:10!25 +REV 19:10!26 +REV 19:10!27 +REV 19:10!28 +REV 19:10!30 +REV 19:10!29 +REV 19:10!31 +REV 19:10!32 +REV 19:10!33 +REV 19:10!34 +REV 19:10!35 +REV 19:10!36 +REV 19:10!37 +REV 19:11!1 +REV 19:11!2 +REV 19:11!3 +REV 19:11!4 +REV 19:11!5 +REV 19:11!6 +REV 19:11!7 +REV 19:11!8 +REV 19:11!9 +REV 19:11!10 +REV 19:11!11 +REV 19:11!12 +REV 19:11!13 +REV 19:11!14 +REV 19:11!15 +REV 19:11!16 +REV 19:11!17 +REV 19:11!18 +REV 19:11!19 +REV 19:11!20 +REV 19:11!21 +REV 19:11!22 +REV 19:11!23 +REV 19:11!24 +REV 19:12!2 +REV 19:12!1 +REV 19:12!3 +REV 19:12!4 +REV 19:12!5 +REV 19:12!6 +REV 19:12!7 +REV 19:12!8 +REV 19:12!9 +REV 19:12!10 +REV 19:12!11 +REV 19:12!12 +REV 19:12!13 +REV 19:12!14 +REV 19:12!15 +REV 19:12!16 +REV 19:12!17 +REV 19:12!18 +REV 19:12!19 +REV 19:12!20 +REV 19:12!21 +REV 19:12!22 +REV 19:13!1 +REV 19:13!2 +REV 19:13!3 +REV 19:13!4 +REV 19:13!5 +REV 19:13!6 +REV 19:13!7 +REV 19:13!8 +REV 19:13!9 +REV 19:13!10 +REV 19:13!11 +REV 19:13!12 +REV 19:13!13 +REV 19:13!14 +REV 19:14!1 +REV 19:14!2 +REV 19:14!3 +REV 19:14!4 +REV 19:14!5 +REV 19:14!6 +REV 19:14!7 +REV 19:14!8 +REV 19:14!9 +REV 19:14!10 +REV 19:14!11 +REV 19:14!12 +REV 19:14!13 +REV 19:14!14 +REV 19:14!15 +REV 19:14!16 +REV 19:15!1 +REV 19:15!2 +REV 19:15!3 +REV 19:15!4 +REV 19:15!5 +REV 19:15!6 +REV 19:15!7 +REV 19:15!8 +REV 19:15!9 +REV 19:15!10 +REV 19:15!11 +REV 19:15!12 +REV 19:15!13 +REV 19:15!14 +REV 19:15!15 +REV 19:15!16 +REV 19:15!17 +REV 19:15!18 +REV 19:15!19 +REV 19:15!20 +REV 19:15!21 +REV 19:15!22 +REV 19:15!23 +REV 19:15!24 +REV 19:15!25 +REV 19:15!26 +REV 19:15!27 +REV 19:15!28 +REV 19:15!29 +REV 19:15!30 +REV 19:15!31 +REV 19:15!32 +REV 19:15!33 +REV 19:15!34 +REV 19:15!35 +REV 19:15!36 +REV 19:16!1 +REV 19:16!2 +REV 19:16!3 +REV 19:16!4 +REV 19:16!5 +REV 19:16!6 +REV 19:16!7 +REV 19:16!8 +REV 19:16!9 +REV 19:16!10 +REV 19:16!11 +REV 19:16!12 +REV 19:16!13 +REV 19:16!14 +REV 19:16!15 +REV 19:16!16 +REV 19:16!17 +REV 19:17!1 +REV 19:17!2 +REV 19:17!3 +REV 19:17!4 +REV 19:17!5 +REV 19:17!6 +REV 19:17!7 +REV 19:17!8 +REV 19:17!9 +REV 19:17!10 +REV 19:17!11 +REV 19:17!12 +REV 19:17!13 +REV 19:17!14 +REV 19:17!15 +REV 19:17!16 +REV 19:17!17 +REV 19:17!18 +REV 19:17!19 +REV 19:17!20 +REV 19:17!21 +REV 19:17!22 +REV 19:17!23 +REV 19:17!24 +REV 19:17!25 +REV 19:17!26 +REV 19:17!27 +REV 19:17!28 +REV 19:17!29 +REV 19:17!30 +REV 19:18!1 +REV 19:18!2 +REV 19:18!3 +REV 19:18!4 +REV 19:18!5 +REV 19:18!6 +REV 19:18!7 +REV 19:18!8 +REV 19:18!9 +REV 19:18!10 +REV 19:18!11 +REV 19:18!12 +REV 19:18!13 +REV 19:18!14 +REV 19:18!15 +REV 19:18!16 +REV 19:18!17 +REV 19:18!18 +REV 19:18!19 +REV 19:18!20 +REV 19:18!21 +REV 19:18!23 +REV 19:18!22 +REV 19:18!24 +REV 19:18!25 +REV 19:18!26 +REV 19:18!27 +REV 19:18!28 +REV 19:18!29 +REV 19:19!1 +REV 19:19!2 +REV 19:19!3 +REV 19:19!4 +REV 19:19!5 +REV 19:19!6 +REV 19:19!7 +REV 19:19!8 +REV 19:19!9 +REV 19:19!10 +REV 19:19!11 +REV 19:19!12 +REV 19:19!13 +REV 19:19!14 +REV 19:19!15 +REV 19:19!16 +REV 19:19!17 +REV 19:19!18 +REV 19:19!19 +REV 19:19!20 +REV 19:19!21 +REV 19:19!22 +REV 19:19!23 +REV 19:19!24 +REV 19:19!25 +REV 19:19!26 +REV 19:19!27 +REV 19:19!28 +REV 19:20!1 +REV 19:20!2 +REV 19:20!3 +REV 19:20!4 +REV 19:20!5 +REV 19:20!6 +REV 19:20!7 +REV 19:20!8 +REV 19:20!9 +REV 19:20!10 +REV 19:20!11 +REV 19:20!12 +REV 19:20!13 +REV 19:20!14 +REV 19:20!15 +REV 19:20!16 +REV 19:20!17 +REV 19:20!18 +REV 19:20!19 +REV 19:20!20 +REV 19:20!21 +REV 19:20!22 +REV 19:20!23 +REV 19:20!24 +REV 19:20!25 +REV 19:20!26 +REV 19:20!27 +REV 19:20!28 +REV 19:20!29 +REV 19:20!30 +REV 19:20!31 +REV 19:20!32 +REV 19:20!33 +REV 19:20!34 +REV 19:20!35 +REV 19:20!36 +REV 19:20!37 +REV 19:20!38 +REV 19:20!39 +REV 19:20!40 +REV 19:20!41 +REV 19:20!42 +REV 19:20!43 +REV 19:21!1 +REV 19:21!2 +REV 19:21!3 +REV 19:21!4 +REV 19:21!5 +REV 19:21!6 +REV 19:21!7 +REV 19:21!8 +REV 19:21!9 +REV 19:21!10 +REV 19:21!11 +REV 19:21!12 +REV 19:21!13 +REV 19:21!14 +REV 19:21!15 +REV 19:21!16 +REV 19:21!17 +REV 19:21!18 +REV 19:21!19 +REV 19:21!20 +REV 19:21!21 +REV 19:21!22 +REV 19:21!23 +REV 19:21!24 +REV 19:21!25 +REV 19:21!26 +REV 19:21!27 +REV 20:1!1 +REV 20:1!2 +REV 20:1!3 +REV 20:1!4 +REV 20:1!5 +REV 20:1!6 +REV 20:1!7 +REV 20:1!8 +REV 20:1!9 +REV 20:1!10 +REV 20:1!11 +REV 20:1!12 +REV 20:1!13 +REV 20:1!14 +REV 20:1!15 +REV 20:1!16 +REV 20:1!17 +REV 20:1!18 +REV 20:1!19 +REV 20:2!1 +REV 20:2!2 +REV 20:2!3 +REV 20:2!4 +REV 20:2!5 +REV 20:2!6 +REV 20:2!7 +REV 20:2!8 +REV 20:2!9 +REV 20:2!10 +REV 20:2!11 +REV 20:2!12 +REV 20:2!13 +REV 20:2!14 +REV 20:2!15 +REV 20:2!16 +REV 20:2!17 +REV 20:2!18 +REV 20:2!19 +REV 20:3!1 +REV 20:3!2 +REV 20:3!3 +REV 20:3!4 +REV 20:3!5 +REV 20:3!6 +REV 20:3!7 +REV 20:3!8 +REV 20:3!9 +REV 20:3!10 +REV 20:3!11 +REV 20:3!12 +REV 20:3!13 +REV 20:3!14 +REV 20:3!15 +REV 20:3!16 +REV 20:3!17 +REV 20:3!18 +REV 20:3!19 +REV 20:3!20 +REV 20:3!21 +REV 20:3!22 +REV 20:3!23 +REV 20:3!24 +REV 20:3!25 +REV 20:3!26 +REV 20:3!27 +REV 20:3!28 +REV 20:3!29 +REV 20:3!30 +REV 20:4!1 +REV 20:4!2 +REV 20:4!3 +REV 20:4!4 +REV 20:4!5 +REV 20:4!6 +REV 20:4!7 +REV 20:4!8 +REV 20:4!9 +REV 20:4!10 +REV 20:4!11 +REV 20:4!12 +REV 20:4!13 +REV 20:4!14 +REV 20:4!15 +REV 20:4!16 +REV 20:4!17 +REV 20:4!18 +REV 20:4!19 +REV 20:4!20 +REV 20:4!21 +REV 20:4!22 +REV 20:4!23 +REV 20:4!24 +REV 20:4!25 +REV 20:4!26 +REV 20:4!27 +REV 20:4!28 +REV 20:4!29 +REV 20:4!30 +REV 20:4!31 +REV 20:4!32 +REV 20:4!33 +REV 20:4!34 +REV 20:4!35 +REV 20:4!36 +REV 20:4!37 +REV 20:4!38 +REV 20:4!39 +REV 20:4!40 +REV 20:4!41 +REV 20:4!42 +REV 20:4!43 +REV 20:4!44 +REV 20:4!45 +REV 20:4!46 +REV 20:4!47 +REV 20:4!48 +REV 20:4!49 +REV 20:4!50 +REV 20:4!51 +REV 20:4!52 +REV 20:4!53 +REV 20:4!54 +REV 20:4!55 +REV 20:4!56 +REV 20:4!57 +REV 20:4!58 +REV 20:5!1 +REV 20:5!2 +REV 20:5!3 +REV 20:5!4 +REV 20:5!5 +REV 20:5!6 +REV 20:5!7 +REV 20:5!8 +REV 20:5!9 +REV 20:5!10 +REV 20:5!11 +REV 20:5!12 +REV 20:5!13 +REV 20:5!14 +REV 20:5!15 +REV 20:5!16 +REV 20:6!1 +REV 20:6!2 +REV 20:6!3 +REV 20:6!4 +REV 20:6!5 +REV 20:6!6 +REV 20:6!7 +REV 20:6!8 +REV 20:6!9 +REV 20:6!10 +REV 20:6!11 +REV 20:6!12 +REV 20:6!13 +REV 20:6!14 +REV 20:6!15 +REV 20:6!16 +REV 20:6!17 +REV 20:6!18 +REV 20:6!19 +REV 20:6!20 +REV 20:6!21 +REV 20:6!22 +REV 20:6!23 +REV 20:6!24 +REV 20:6!25 +REV 20:6!26 +REV 20:6!27 +REV 20:6!28 +REV 20:6!29 +REV 20:6!30 +REV 20:6!31 +REV 20:6!32 +REV 20:6!33 +REV 20:6!34 +REV 20:7!1 +REV 20:7!2 +REV 20:7!3 +REV 20:7!4 +REV 20:7!5 +REV 20:7!6 +REV 20:7!7 +REV 20:7!8 +REV 20:7!9 +REV 20:7!10 +REV 20:7!11 +REV 20:7!12 +REV 20:7!13 +REV 20:8!1 +REV 20:8!2 +REV 20:8!3 +REV 20:8!4 +REV 20:8!5 +REV 20:8!6 +REV 20:8!7 +REV 20:8!8 +REV 20:8!9 +REV 20:8!10 +REV 20:8!11 +REV 20:8!12 +REV 20:8!13 +REV 20:8!14 +REV 20:8!15 +REV 20:8!16 +REV 20:8!17 +REV 20:8!18 +REV 20:8!19 +REV 20:8!20 +REV 20:8!21 +REV 20:8!22 +REV 20:8!23 +REV 20:8!24 +REV 20:8!25 +REV 20:8!26 +REV 20:8!27 +REV 20:8!28 +REV 20:8!29 +REV 20:8!30 +REV 20:9!1 +REV 20:9!2 +REV 20:9!3 +REV 20:9!4 +REV 20:9!5 +REV 20:9!6 +REV 20:9!7 +REV 20:9!8 +REV 20:9!9 +REV 20:9!10 +REV 20:9!11 +REV 20:9!12 +REV 20:9!13 +REV 20:9!14 +REV 20:9!15 +REV 20:9!16 +REV 20:9!17 +REV 20:9!18 +REV 20:9!19 +REV 20:9!20 +REV 20:9!21 +REV 20:9!22 +REV 20:9!23 +REV 20:9!24 +REV 20:9!25 +REV 20:9!26 +REV 20:9!27 +REV 20:10!1 +REV 20:10!2 +REV 20:10!3 +REV 20:10!4 +REV 20:10!5 +REV 20:10!6 +REV 20:10!7 +REV 20:10!8 +REV 20:10!9 +REV 20:10!10 +REV 20:10!11 +REV 20:10!12 +REV 20:10!13 +REV 20:10!14 +REV 20:10!15 +REV 20:10!16 +REV 20:10!17 +REV 20:10!18 +REV 20:10!19 +REV 20:10!20 +REV 20:10!21 +REV 20:10!22 +REV 20:10!23 +REV 20:10!24 +REV 20:10!25 +REV 20:10!26 +REV 20:10!27 +REV 20:10!28 +REV 20:10!29 +REV 20:10!30 +REV 20:10!31 +REV 20:11!1 +REV 20:11!2 +REV 20:11!3 +REV 20:11!4 +REV 20:11!5 +REV 20:11!6 +REV 20:11!7 +REV 20:11!8 +REV 20:11!9 +REV 20:11!10 +REV 20:11!12 +REV 20:11!11 +REV 20:11!13 +REV 20:11!14 +REV 20:11!15 +REV 20:11!16 +REV 20:11!17 +REV 20:11!18 +REV 20:11!19 +REV 20:11!20 +REV 20:11!21 +REV 20:11!22 +REV 20:11!23 +REV 20:11!24 +REV 20:11!25 +REV 20:12!1 +REV 20:12!2 +REV 20:12!3 +REV 20:12!4 +REV 20:12!5 +REV 20:12!6 +REV 20:12!7 +REV 20:12!8 +REV 20:12!9 +REV 20:12!10 +REV 20:12!11 +REV 20:12!12 +REV 20:12!13 +REV 20:12!14 +REV 20:12!15 +REV 20:12!16 +REV 20:12!17 +REV 20:12!18 +REV 20:12!19 +REV 20:12!20 +REV 20:12!21 +REV 20:12!22 +REV 20:12!23 +REV 20:12!24 +REV 20:12!25 +REV 20:12!26 +REV 20:12!27 +REV 20:12!28 +REV 20:12!29 +REV 20:12!30 +REV 20:12!31 +REV 20:12!32 +REV 20:12!33 +REV 20:12!34 +REV 20:12!35 +REV 20:12!36 +REV 20:12!37 +REV 20:12!38 +REV 20:13!1 +REV 20:13!2 +REV 20:13!3 +REV 20:13!4 +REV 20:13!5 +REV 20:13!6 +REV 20:13!7 +REV 20:13!8 +REV 20:13!9 +REV 20:13!10 +REV 20:13!11 +REV 20:13!12 +REV 20:13!13 +REV 20:13!14 +REV 20:13!15 +REV 20:13!16 +REV 20:13!17 +REV 20:13!18 +REV 20:13!19 +REV 20:13!20 +REV 20:13!21 +REV 20:13!22 +REV 20:13!23 +REV 20:13!24 +REV 20:13!25 +REV 20:13!26 +REV 20:13!27 +REV 20:13!28 +REV 20:14!1 +REV 20:14!2 +REV 20:14!3 +REV 20:14!4 +REV 20:14!5 +REV 20:14!6 +REV 20:14!7 +REV 20:14!8 +REV 20:14!9 +REV 20:14!10 +REV 20:14!11 +REV 20:14!12 +REV 20:14!13 +REV 20:14!14 +REV 20:14!15 +REV 20:14!16 +REV 20:14!17 +REV 20:14!19 +REV 20:14!20 +REV 20:14!21 +REV 20:14!22 +REV 20:14!18 +REV 20:15!1 +REV 20:15!2 +REV 20:15!3 +REV 20:15!4 +REV 20:15!5 +REV 20:15!6 +REV 20:15!7 +REV 20:15!8 +REV 20:15!9 +REV 20:15!10 +REV 20:15!11 +REV 20:15!12 +REV 20:15!13 +REV 20:15!14 +REV 20:15!15 +REV 20:15!16 +REV 20:15!17 +REV 21:1!1 +REV 21:1!2 +REV 21:1!3 +REV 21:1!4 +REV 21:1!5 +REV 21:1!6 +REV 21:1!7 +REV 21:1!9 +REV 21:1!8 +REV 21:1!10 +REV 21:1!11 +REV 21:1!12 +REV 21:1!13 +REV 21:1!14 +REV 21:1!15 +REV 21:1!16 +REV 21:1!17 +REV 21:1!18 +REV 21:1!19 +REV 21:1!20 +REV 21:1!21 +REV 21:1!22 +REV 21:2!1 +REV 21:2!8 +REV 21:2!2 +REV 21:2!3 +REV 21:2!4 +REV 21:2!5 +REV 21:2!6 +REV 21:2!7 +REV 21:2!9 +REV 21:2!10 +REV 21:2!11 +REV 21:2!12 +REV 21:2!13 +REV 21:2!14 +REV 21:2!15 +REV 21:2!16 +REV 21:2!17 +REV 21:2!18 +REV 21:2!19 +REV 21:2!20 +REV 21:2!21 +REV 21:2!22 +REV 21:3!1 +REV 21:3!2 +REV 21:3!3 +REV 21:3!4 +REV 21:3!5 +REV 21:3!6 +REV 21:3!7 +REV 21:3!8 +REV 21:3!9 +REV 21:3!10 +REV 21:3!11 +REV 21:3!12 +REV 21:3!13 +REV 21:3!14 +REV 21:3!15 +REV 21:3!16 +REV 21:3!17 +REV 21:3!18 +REV 21:3!19 +REV 21:3!20 +REV 21:3!21 +REV 21:3!22 +REV 21:3!23 +REV 21:3!24 +REV 21:3!25 +REV 21:3!26 +REV 21:3!27 +REV 21:3!28 +REV 21:3!29 +REV 21:3!30 +REV 21:3!31 +REV 21:3!32 +REV 21:4!1 +REV 21:4!2 +REV 21:4!3 +REV 21:4!4 +REV 21:4!5 +REV 21:4!6 +REV 21:4!7 +REV 21:4!8 +REV 21:4!9 +REV 21:4!10 +REV 21:4!11 +REV 21:4!12 +REV 21:4!13 +REV 21:4!14 +REV 21:4!15 +REV 21:4!16 +REV 21:4!17 +REV 21:4!18 +REV 21:4!19 +REV 21:4!20 +REV 21:4!21 +REV 21:4!22 +REV 21:4!23 +REV 21:4!24 +REV 21:4!25 +REV 21:4!26 +REV 21:4!27 +REV 21:5!1 +REV 21:5!2 +REV 21:5!3 +REV 21:5!4 +REV 21:5!5 +REV 21:5!6 +REV 21:5!7 +REV 21:5!8 +REV 21:5!9 +REV 21:5!10 +REV 21:5!11 +REV 21:5!12 +REV 21:5!13 +REV 21:5!14 +REV 21:5!15 +REV 21:5!16 +REV 21:5!17 +REV 21:5!18 +REV 21:5!19 +REV 21:5!20 +REV 21:5!21 +REV 21:5!22 +REV 21:6!1 +REV 21:6!2 +REV 21:6!3 +REV 21:6!4 +REV 21:6!5 +REV 21:6!6 +REV 21:6!7 +REV 21:6!8 +REV 21:6!9 +REV 21:6!10 +REV 21:6!11 +REV 21:6!12 +REV 21:6!13 +REV 21:6!14 +REV 21:6!15 +REV 21:6!16 +REV 21:6!17 +REV 21:6!18 +REV 21:6!19 +REV 21:6!20 +REV 21:6!21 +REV 21:6!22 +REV 21:6!23 +REV 21:6!24 +REV 21:6!25 +REV 21:6!26 +REV 21:6!27 +REV 21:7!1 +REV 21:7!2 +REV 21:7!3 +REV 21:7!4 +REV 21:7!5 +REV 21:7!6 +REV 21:7!7 +REV 21:7!8 +REV 21:7!9 +REV 21:7!10 +REV 21:7!11 +REV 21:7!12 +REV 21:7!13 +REV 21:8!2 +REV 21:8!1 +REV 21:8!3 +REV 21:8!4 +REV 21:8!5 +REV 21:8!6 +REV 21:8!7 +REV 21:8!8 +REV 21:8!9 +REV 21:8!10 +REV 21:8!11 +REV 21:8!12 +REV 21:8!13 +REV 21:8!14 +REV 21:8!15 +REV 21:8!16 +REV 21:8!17 +REV 21:8!18 +REV 21:8!19 +REV 21:8!20 +REV 21:8!21 +REV 21:8!22 +REV 21:8!23 +REV 21:8!24 +REV 21:8!25 +REV 21:8!26 +REV 21:8!27 +REV 21:8!28 +REV 21:8!29 +REV 21:8!30 +REV 21:8!31 +REV 21:8!32 +REV 21:8!33 +REV 21:8!34 +REV 21:8!35 +REV 21:8!36 +REV 21:9!1 +REV 21:9!2 +REV 21:9!3 +REV 21:9!4 +REV 21:9!5 +REV 21:9!6 +REV 21:9!7 +REV 21:9!8 +REV 21:9!9 +REV 21:9!10 +REV 21:9!11 +REV 21:9!12 +REV 21:9!13 +REV 21:9!14 +REV 21:9!15 +REV 21:9!16 +REV 21:9!17 +REV 21:9!18 +REV 21:9!19 +REV 21:9!20 +REV 21:9!21 +REV 21:9!22 +REV 21:9!23 +REV 21:9!24 +REV 21:9!25 +REV 21:9!26 +REV 21:9!27 +REV 21:9!28 +REV 21:9!29 +REV 21:9!30 +REV 21:9!31 +REV 21:9!32 +REV 21:9!33 +REV 21:10!1 +REV 21:10!2 +REV 21:10!3 +REV 21:10!4 +REV 21:10!5 +REV 21:10!6 +REV 21:10!7 +REV 21:10!8 +REV 21:10!9 +REV 21:10!10 +REV 21:10!11 +REV 21:10!12 +REV 21:10!13 +REV 21:10!14 +REV 21:10!15 +REV 21:10!16 +REV 21:10!17 +REV 21:10!18 +REV 21:10!19 +REV 21:10!20 +REV 21:10!21 +REV 21:10!22 +REV 21:10!23 +REV 21:10!24 +REV 21:10!25 +REV 21:11!1 +REV 21:11!2 +REV 21:11!3 +REV 21:11!4 +REV 21:11!5 +REV 21:11!6 +REV 21:11!7 +REV 21:11!8 +REV 21:11!9 +REV 21:11!10 +REV 21:11!11 +REV 21:11!12 +REV 21:11!13 +REV 21:11!14 +REV 21:11!15 +REV 21:12!1 +REV 21:12!2 +REV 21:12!3 +REV 21:12!4 +REV 21:12!5 +REV 21:12!6 +REV 21:12!7 +REV 21:12!8 +REV 21:12!9 +REV 21:12!10 +REV 21:12!11 +REV 21:12!12 +REV 21:12!13 +REV 21:12!14 +REV 21:12!15 +REV 21:12!17 +REV 21:12!16 +REV 21:12!18 +REV 21:12!19 +REV 21:12!20 +REV 21:12!21 +REV 21:12!22 +REV 21:12!23 +REV 21:12!24 +REV 21:13!1 +REV 21:13!2 +REV 21:13!3 +REV 21:13!4 +REV 21:13!5 +REV 21:13!6 +REV 21:13!7 +REV 21:13!8 +REV 21:13!9 +REV 21:13!10 +REV 21:13!11 +REV 21:13!12 +REV 21:13!13 +REV 21:13!14 +REV 21:13!15 +REV 21:13!16 +REV 21:13!17 +REV 21:13!18 +REV 21:13!19 +REV 21:14!1 +REV 21:14!2 +REV 21:14!3 +REV 21:14!4 +REV 21:14!5 +REV 21:14!6 +REV 21:14!7 +REV 21:14!8 +REV 21:14!9 +REV 21:14!10 +REV 21:14!11 +REV 21:14!12 +REV 21:14!13 +REV 21:14!14 +REV 21:14!15 +REV 21:14!16 +REV 21:14!17 +REV 21:14!18 +REV 21:15!1 +REV 21:15!2 +REV 21:15!3 +REV 21:15!4 +REV 21:15!5 +REV 21:15!6 +REV 21:15!7 +REV 21:15!8 +REV 21:15!9 +REV 21:15!10 +REV 21:15!11 +REV 21:15!12 +REV 21:15!13 +REV 21:15!14 +REV 21:15!15 +REV 21:15!16 +REV 21:15!17 +REV 21:15!18 +REV 21:15!19 +REV 21:15!20 +REV 21:15!21 +REV 21:16!1 +REV 21:16!2 +REV 21:16!3 +REV 21:16!4 +REV 21:16!5 +REV 21:16!6 +REV 21:16!7 +REV 21:16!8 +REV 21:16!9 +REV 21:16!10 +REV 21:16!11 +REV 21:16!12 +REV 21:16!13 +REV 21:16!14 +REV 21:16!15 +REV 21:16!16 +REV 21:16!17 +REV 21:16!18 +REV 21:16!19 +REV 21:16!20 +REV 21:16!21 +REV 21:16!22 +REV 21:16!23 +REV 21:16!24 +REV 21:16!25 +REV 21:16!26 +REV 21:16!27 +REV 21:16!28 +REV 21:16!29 +REV 21:16!30 +REV 21:16!31 +REV 21:16!32 +REV 21:16!33 +REV 21:17!1 +REV 21:17!2 +REV 21:17!3 +REV 21:17!4 +REV 21:17!5 +REV 21:17!6 +REV 21:17!7 +REV 21:17!8 +REV 21:17!9 +REV 21:17!10 +REV 21:17!11 +REV 21:17!12 +REV 21:17!13 +REV 21:17!14 +REV 21:18!1 +REV 21:18!2 +REV 21:18!3 +REV 21:18!4 +REV 21:18!5 +REV 21:18!6 +REV 21:18!7 +REV 21:18!8 +REV 21:18!9 +REV 21:18!10 +REV 21:18!11 +REV 21:18!12 +REV 21:18!13 +REV 21:18!14 +REV 21:18!15 +REV 21:19!1 +REV 21:19!2 +REV 21:19!3 +REV 21:19!4 +REV 21:19!5 +REV 21:19!6 +REV 21:19!7 +REV 21:19!8 +REV 21:19!9 +REV 21:19!10 +REV 21:19!11 +REV 21:19!12 +REV 21:19!13 +REV 21:19!14 +REV 21:19!15 +REV 21:19!16 +REV 21:19!17 +REV 21:19!18 +REV 21:19!19 +REV 21:19!20 +REV 21:19!21 +REV 21:19!22 +REV 21:19!23 +REV 21:19!24 +REV 21:20!1 +REV 21:20!2 +REV 21:20!3 +REV 21:20!4 +REV 21:20!5 +REV 21:20!6 +REV 21:20!7 +REV 21:20!8 +REV 21:20!9 +REV 21:20!10 +REV 21:20!11 +REV 21:20!12 +REV 21:20!13 +REV 21:20!14 +REV 21:20!15 +REV 21:20!16 +REV 21:20!17 +REV 21:20!18 +REV 21:20!19 +REV 21:20!20 +REV 21:20!21 +REV 21:20!22 +REV 21:20!23 +REV 21:20!24 +REV 21:21!1 +REV 21:21!2 +REV 21:21!3 +REV 21:21!4 +REV 21:21!5 +REV 21:21!6 +REV 21:21!7 +REV 21:21!8 +REV 21:21!9 +REV 21:21!10 +REV 21:21!11 +REV 21:21!12 +REV 21:21!13 +REV 21:21!14 +REV 21:21!15 +REV 21:21!16 +REV 21:21!17 +REV 21:21!18 +REV 21:21!19 +REV 21:21!20 +REV 21:21!21 +REV 21:21!22 +REV 21:21!23 +REV 21:21!24 +REV 21:21!25 +REV 21:22!1 +REV 21:22!2 +REV 21:22!3 +REV 21:22!4 +REV 21:22!5 +REV 21:22!6 +REV 21:22!8 +REV 21:22!7 +REV 21:22!9 +REV 21:22!10 +REV 21:22!11 +REV 21:22!12 +REV 21:22!13 +REV 21:22!17 +REV 21:22!18 +REV 21:22!19 +REV 21:22!14 +REV 21:22!15 +REV 21:22!16 +REV 21:23!1 +REV 21:23!2 +REV 21:23!3 +REV 21:23!4 +REV 21:23!6 +REV 21:23!5 +REV 21:23!7 +REV 21:23!8 +REV 21:23!9 +REV 21:23!10 +REV 21:23!11 +REV 21:23!12 +REV 21:23!13 +REV 21:23!14 +REV 21:23!16 +REV 21:23!15 +REV 21:23!17 +REV 21:23!18 +REV 21:23!19 +REV 21:23!20 +REV 21:23!21 +REV 21:23!22 +REV 21:23!23 +REV 21:23!24 +REV 21:23!25 +REV 21:23!26 +REV 21:23!27 +REV 21:24!1 +REV 21:24!2 +REV 21:24!3 +REV 21:24!4 +REV 21:24!5 +REV 21:24!6 +REV 21:24!7 +REV 21:24!8 +REV 21:24!9 +REV 21:24!10 +REV 21:24!11 +REV 21:24!12 +REV 21:24!13 +REV 21:24!14 +REV 21:24!15 +REV 21:24!16 +REV 21:24!17 +REV 21:24!18 +REV 21:24!19 +REV 21:25!1 +REV 21:25!2 +REV 21:25!3 +REV 21:25!4 +REV 21:25!5 +REV 21:25!6 +REV 21:25!7 +REV 21:25!8 +REV 21:25!10 +REV 21:25!9 +REV 21:25!11 +REV 21:25!12 +REV 21:25!13 +REV 21:26!1 +REV 21:26!2 +REV 21:26!3 +REV 21:26!4 +REV 21:26!5 +REV 21:26!6 +REV 21:26!7 +REV 21:26!8 +REV 21:26!9 +REV 21:26!10 +REV 21:26!11 +REV 21:27!1 +REV 21:27!2 +REV 21:27!3 +REV 21:27!4 +REV 21:27!5 +REV 21:27!6 +REV 21:27!7 +REV 21:27!8 +REV 21:27!9 +REV 21:27!10 +REV 21:27!11 +REV 21:27!12 +REV 21:27!13 +REV 21:27!14 +REV 21:27!15 +REV 21:27!16 +REV 21:27!17 +REV 21:27!18 +REV 21:27!19 +REV 21:27!20 +REV 21:27!21 +REV 21:27!22 +REV 21:27!23 +REV 21:27!24 +REV 21:27!25 +REV 22:1!1 +REV 22:1!2 +REV 22:1!3 +REV 22:1!4 +REV 22:1!5 +REV 22:1!6 +REV 22:1!7 +REV 22:1!8 +REV 22:1!9 +REV 22:1!10 +REV 22:1!11 +REV 22:1!12 +REV 22:1!13 +REV 22:1!14 +REV 22:1!15 +REV 22:1!16 +REV 22:1!17 +REV 22:1!18 +REV 22:2!1 +REV 22:2!2 +REV 22:2!3 +REV 22:2!4 +REV 22:2!5 +REV 22:2!6 +REV 22:2!7 +REV 22:2!8 +REV 22:2!9 +REV 22:2!10 +REV 22:2!11 +REV 22:2!12 +REV 22:2!13 +REV 22:2!14 +REV 22:2!15 +REV 22:2!16 +REV 22:2!17 +REV 22:2!18 +REV 22:2!19 +REV 22:2!20 +REV 22:2!21 +REV 22:2!22 +REV 22:2!23 +REV 22:2!24 +REV 22:2!25 +REV 22:2!26 +REV 22:2!27 +REV 22:2!28 +REV 22:2!29 +REV 22:2!30 +REV 22:2!31 +REV 22:2!32 +REV 22:3!1 +REV 22:3!2 +REV 22:3!3 +REV 22:3!4 +REV 22:3!5 +REV 22:3!6 +REV 22:3!7 +REV 22:3!8 +REV 22:3!9 +REV 22:3!10 +REV 22:3!11 +REV 22:3!12 +REV 22:3!13 +REV 22:3!14 +REV 22:3!15 +REV 22:3!16 +REV 22:3!17 +REV 22:3!18 +REV 22:3!19 +REV 22:3!20 +REV 22:3!21 +REV 22:3!22 +REV 22:3!23 +REV 22:4!1 +REV 22:4!2 +REV 22:4!3 +REV 22:4!4 +REV 22:4!5 +REV 22:4!6 +REV 22:4!7 +REV 22:4!8 +REV 22:4!9 +REV 22:4!10 +REV 22:4!11 +REV 22:4!12 +REV 22:4!13 +REV 22:5!1 +REV 22:5!2 +REV 22:5!3 +REV 22:5!4 +REV 22:5!5 +REV 22:5!6 +REV 22:5!7 +REV 22:5!8 +REV 22:5!9 +REV 22:5!10 +REV 22:5!11 +REV 22:5!12 +REV 22:5!13 +REV 22:5!14 +REV 22:5!15 +REV 22:5!16 +REV 22:5!17 +REV 22:5!18 +REV 22:5!19 +REV 22:5!20 +REV 22:5!21 +REV 22:5!22 +REV 22:5!23 +REV 22:5!24 +REV 22:5!25 +REV 22:5!26 +REV 22:5!27 +REV 22:5!28 +REV 22:6!1 +REV 22:6!2 +REV 22:6!3 +REV 22:6!4 +REV 22:6!5 +REV 22:6!6 +REV 22:6!7 +REV 22:6!8 +REV 22:6!9 +REV 22:6!10 +REV 22:6!11 +REV 22:6!12 +REV 22:6!13 +REV 22:6!14 +REV 22:6!15 +REV 22:6!16 +REV 22:6!17 +REV 22:6!18 +REV 22:6!19 +REV 22:6!20 +REV 22:6!21 +REV 22:6!22 +REV 22:6!23 +REV 22:6!24 +REV 22:6!25 +REV 22:6!26 +REV 22:6!27 +REV 22:6!29 +REV 22:6!30 +REV 22:6!31 +REV 22:6!28 +REV 22:7!1 +REV 22:7!2 +REV 22:7!3 +REV 22:7!4 +REV 22:7!5 +REV 22:7!6 +REV 22:7!7 +REV 22:7!8 +REV 22:7!9 +REV 22:7!10 +REV 22:7!11 +REV 22:7!12 +REV 22:7!13 +REV 22:7!14 +REV 22:8!1 +REV 22:8!2 +REV 22:8!3 +REV 22:8!4 +REV 22:8!5 +REV 22:8!6 +REV 22:8!7 +REV 22:8!8 +REV 22:8!9 +REV 22:8!10 +REV 22:8!11 +REV 22:8!12 +REV 22:8!13 +REV 22:8!14 +REV 22:8!15 +REV 22:8!16 +REV 22:8!17 +REV 22:8!18 +REV 22:8!19 +REV 22:8!20 +REV 22:8!21 +REV 22:8!22 +REV 22:8!23 +REV 22:9!1 +REV 22:9!2 +REV 22:9!3 +REV 22:9!4 +REV 22:9!5 +REV 22:9!8 +REV 22:9!6 +REV 22:9!7 +REV 22:9!9 +REV 22:9!10 +REV 22:9!11 +REV 22:9!12 +REV 22:9!13 +REV 22:9!14 +REV 22:9!15 +REV 22:9!16 +REV 22:9!17 +REV 22:9!18 +REV 22:9!19 +REV 22:9!20 +REV 22:9!21 +REV 22:9!22 +REV 22:9!23 +REV 22:9!24 +REV 22:9!25 +REV 22:10!1 +REV 22:10!2 +REV 22:10!3 +REV 22:10!4 +REV 22:10!5 +REV 22:10!6 +REV 22:10!7 +REV 22:10!8 +REV 22:10!9 +REV 22:10!10 +REV 22:10!11 +REV 22:10!12 +REV 22:10!15 +REV 22:10!13 +REV 22:10!14 +REV 22:10!16 +REV 22:10!17 +REV 22:11!1 +REV 22:11!2 +REV 22:11!3 +REV 22:11!4 +REV 22:11!5 +REV 22:11!6 +REV 22:11!7 +REV 22:11!8 +REV 22:11!9 +REV 22:11!10 +REV 22:11!11 +REV 22:11!12 +REV 22:11!13 +REV 22:11!14 +REV 22:11!15 +REV 22:11!16 +REV 22:11!17 +REV 22:11!18 +REV 22:11!19 +REV 22:11!20 +REV 22:12!1 +REV 22:12!2 +REV 22:12!3 +REV 22:12!4 +REV 22:12!5 +REV 22:12!6 +REV 22:12!7 +REV 22:12!8 +REV 22:12!9 +REV 22:12!10 +REV 22:12!11 +REV 22:12!12 +REV 22:12!13 +REV 22:12!14 +REV 22:12!16 +REV 22:12!15 +REV 22:13!1 +REV 22:13!2 +REV 22:13!3 +REV 22:13!4 +REV 22:13!5 +REV 22:13!6 +REV 22:13!7 +REV 22:13!8 +REV 22:13!9 +REV 22:13!10 +REV 22:13!11 +REV 22:13!12 +REV 22:13!13 +REV 22:13!14 +REV 22:13!15 +REV 22:13!16 +REV 22:14!1 +REV 22:14!2 +REV 22:14!3 +REV 22:14!4 +REV 22:14!5 +REV 22:14!6 +REV 22:14!7 +REV 22:14!8 +REV 22:14!9 +REV 22:14!10 +REV 22:14!11 +REV 22:14!12 +REV 22:14!13 +REV 22:14!14 +REV 22:14!15 +REV 22:14!16 +REV 22:14!17 +REV 22:14!18 +REV 22:14!19 +REV 22:14!20 +REV 22:14!21 +REV 22:14!22 +REV 22:14!23 +REV 22:15!1 +REV 22:15!2 +REV 22:15!3 +REV 22:15!4 +REV 22:15!5 +REV 22:15!6 +REV 22:15!7 +REV 22:15!8 +REV 22:15!9 +REV 22:15!10 +REV 22:15!11 +REV 22:15!12 +REV 22:15!13 +REV 22:15!14 +REV 22:15!15 +REV 22:15!16 +REV 22:15!17 +REV 22:15!18 +REV 22:15!19 +REV 22:15!20 +REV 22:15!21 +REV 22:16!1 +REV 22:16!2 +REV 22:16!3 +REV 22:16!4 +REV 22:16!5 +REV 22:16!6 +REV 22:16!7 +REV 22:16!8 +REV 22:16!9 +REV 22:16!10 +REV 22:16!11 +REV 22:16!12 +REV 22:16!13 +REV 22:16!14 +REV 22:16!15 +REV 22:16!16 +REV 22:16!17 +REV 22:16!18 +REV 22:16!19 +REV 22:16!20 +REV 22:16!21 +REV 22:16!22 +REV 22:16!23 +REV 22:16!24 +REV 22:16!25 +REV 22:16!26 +REV 22:17!1 +REV 22:17!2 +REV 22:17!3 +REV 22:17!4 +REV 22:17!5 +REV 22:17!6 +REV 22:17!7 +REV 22:17!8 +REV 22:17!9 +REV 22:17!10 +REV 22:17!11 +REV 22:17!12 +REV 22:17!13 +REV 22:17!14 +REV 22:17!15 +REV 22:17!16 +REV 22:17!17 +REV 22:17!18 +REV 22:17!19 +REV 22:17!20 +REV 22:17!21 +REV 22:17!22 +REV 22:17!23 +REV 22:18!1 +REV 22:18!2 +REV 22:18!3 +REV 22:18!4 +REV 22:18!5 +REV 22:18!6 +REV 22:18!7 +REV 22:18!8 +REV 22:18!9 +REV 22:18!10 +REV 22:18!11 +REV 22:18!12 +REV 22:18!13 +REV 22:18!14 +REV 22:18!15 +REV 22:18!16 +REV 22:18!17 +REV 22:18!18 +REV 22:18!19 +REV 22:18!20 +REV 22:18!21 +REV 22:18!22 +REV 22:18!23 +REV 22:18!24 +REV 22:18!25 +REV 22:18!26 +REV 22:18!27 +REV 22:18!28 +REV 22:18!29 +REV 22:18!30 +REV 22:19!1 +REV 22:19!2 +REV 22:19!3 +REV 22:19!4 +REV 22:19!5 +REV 22:19!6 +REV 22:19!7 +REV 22:19!8 +REV 22:19!9 +REV 22:19!10 +REV 22:19!11 +REV 22:19!12 +REV 22:19!13 +REV 22:19!14 +REV 22:19!15 +REV 22:19!16 +REV 22:19!17 +REV 22:19!18 +REV 22:19!19 +REV 22:19!20 +REV 22:19!21 +REV 22:19!22 +REV 22:19!23 +REV 22:19!24 +REV 22:19!25 +REV 22:19!26 +REV 22:19!27 +REV 22:19!28 +REV 22:19!29 +REV 22:19!30 +REV 22:19!31 +REV 22:19!32 +REV 22:19!33 +REV 22:19!34 +REV 22:19!35 +REV 22:20!1 +REV 22:20!2 +REV 22:20!3 +REV 22:20!4 +REV 22:20!5 +REV 22:20!6 +REV 22:20!7 +REV 22:20!8 +REV 22:20!9 +REV 22:20!10 +REV 22:20!11 +REV 22:21!1 +REV 22:21!2 +REV 22:21!3 +REV 22:21!4 +REV 22:21!5 +REV 22:21!6 +REV 22:21!7 diff --git a/tf/0.1.1/referent.tf b/tf/0.1.1/referent.tf new file mode 100644 index 0000000..20c7cc3 --- /dev/null +++ b/tf/0.1.1/referent.tf @@ -0,0 +1,14485 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=number of referent +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +26 n40001002014 +168 n40001011005 +241 n40001016008 +287 n40001018003 +294 n40001018011 n40001018015 +306 n40001018011 +312 n40001018011 +317 n40001018011 +320 n40001019001 +328 n40001019001 +339 n40001020013 +343 n40001020019 +356 n40001021003 +359 n40001021003 +363 n40001021003 +367 n40001021014 +395 n40001023009 +397 n40001023015 +414 n40001024004 +422 n40001024004 +426 n40001024018 +435 n40001025008 +467 n40002002006 +476 n40002002006 +487 n40002003004 +499 n40002004005 n40002004007 +505 n40002004005 n40002004007 +507 n40002003004 +522 n40002006003 +532 n40002006003 +535 n40002006017 +539 n40001024014 +550 n40002007006 +558 n40002007006 +572 n40002007002 +574 n40002007002 +577 n40002008012 +579 n40002007006 +588 n40002009010 +594 n40002007006 +623 n40002011008 +627 n40002011008 +632 n40002007006 +634 n40002011008 +656 n40002007006 +659 n40002007006 +676 n40002013016 +683 n40002013024 +687 n40002013011 +696 n40002013037 +698 n40002013011 +706 n40002014006 +714 n40002014015 +734 n40002015013 +759 n40002016019 +767 n40002016032 +793 n40002018009 +823 n40002020005 +838 n40002019012 +846 n40002021006 +862 n40002022004 +865 n40002022007 +918 n40003001007 +940 n40003003019 +942 n40003004004 +948 n40003004004 +958 n40003004004 +962 n40003004004 +971 n40003004004 +990 n40003004004 +994 n40003005005 n40003005009 n40003005013 +1007 n40003007003 +1012 n40003007014 +1029 n40003007014 +1036 n40003007014 +1072 n40003004004 +n40003007014 +1082 n40003004004 +1085 n40003004004 +1087 n40003011013 +1094 n40003011013 +n40003007014 +1102 n40003011013 +1108 n40003011013 +1113 n40003011013 +1118 n40003011013 +1144 n40003013013 +1146 n40003013013 +1148 n40003013004 +1150 n40003013013 +1154 n40003013004 +1157 n40003013004 +1160 n40003013013 +1166 n40003013013 +1173 n40003013013 n40003015004 +1179 n40003015004 +1203 n40003016004 +1211 n40003016004 +1215 n40003017003 +1219 n40003016004 +1249 n40004001003 +1263 n40004001003 +1284 n40004001003 +1293 n40004001003 +1301 n40004001003 +1308 n40004001003 +1315 n40004006008 +1318 n40004001003 +1323 n40004001003 +1333 n40004005005 +1346 n40004007004 +1355 n40004007004 +1364 n40004008015 +1367 n40004007004 +n40004008015 n40004008020 +1370 n40004007004 +1375 n40004008005 +1378 n40004008005 +1391 n40004010010 +1396 n40004010005 +1405 n40004010005 +1471 n40004016012 +1505 n40004018011 +1516 n40004018010 +1519 n40004017005 +1522 n40004018010 +1526 n40004018010 +1532 n40004017005 +1535 n40004018005 +1548 n40004021008 +1556 n40004021007 +1560 n40004021007 +1563 n40004021007 +1565 n40004018010 +1573 n40004018010 +1575 n40004017005 +1586 n40004023006 +1607 n40004017005 +1614 n40004017005 +1631 n40004024016 +1634 n40004017005 +1660 n40004017005 +1662 n40004017005 +1665 n40004017005 +1670 n40004017005 +1672 n40005001015 +1680 n40005003003 +1690 n40005004003 +1696 n40005005003 +1708 n40005006003 +1714 n40005007003 +1722 n40005008003 +1730 n40005009003 +1740 n40005010003 +1750 n40005001015 +1758 n40005001015 +1761 n40004017005 +1768 n40005001015 +1780 n40005001015 +n40005001015 +1807 n40005001015 +1825 n40005015003 +1844 n40005001015 +1850 n40005001015 +1858 n40005001015 +1881 n40005001015 +1933 n40005019026 +1943 n40005001015 +1948 n40005001015 +1980 n40004017005 +1982 n40005001015 +1989 n40005022008 +2000 n40005022016 +2023 n40005001015 +2032 n40005001015 +2036 n40005001015 +2041 n40005001015 +2051 n40005001015 +2058 n40005001015 +2063 n40005001015 +2069 n40005025004 +2075 n40005001015 +2092 n40005001015 +2096 n40005025029 +2109 n40004017005 +2111 n40005001015 +2120 n40005028009 +2123 n40005028009 +2127 n40005028008 +2132 n40005001015 +2136 n40005001015 +2138 n40005029004 +2142 n40005001015 +2145 n40005001015 +2151 n40005001015 +2157 n40005001015 +2165 n40005001015 +2168 n40005001015 +2170 n40005030006 +2174 n40005001015 +2177 n40005001015 +2183 n40005001015 +2189 n40005001015 +2200 n40005031003 +2202 n40005031007 +2205 n40004017005 +2207 n40005001015 +2214 n40005032008 +2219 n40005032010 +2241 n40005033006 +2243 n40004017005 +2245 n40005001015 +2267 n40005034016 +2281 n40005001015 +2296 n40005001015 +2304 n40005037007 n40005037009 +2320 n40004017005 +2322 n40005001015 +2329 n40005001015 +2335 n40005001015 +2337 n40005039012 +2340 n40005039016 +2344 n40005001015 +2349 n40005001015 +2352 n40005040003 +2358 n40005001015 +2364 n40005041004 +2368 n40005001015 +2374 n40005001015 +2391 n40004017005 +2393 n40005001015 +2397 n40005001015 +2403 n40005001015 +2409 n40005001015 +2416 n40005045005 +2433 n40005001015 +2442 n40005046003 +2449 n40005001015 +2459 n40005047003 +2463 n40005001015 +2468 n40005001015 +2477 n40005001015 +2486 n40006001010 +2496 n40005001015 +2508 n40005001015 +2527 n40005001015 +2531 n40006002011 +2533 n40005001015 +2540 n40005001015 +2545 n40005001015 +2548 n40005001015 +2557 n40005001015 +2564 n40005001015 +2592 n40005001015 +2596 n40006005008 +2599 n40005001015 +2605 n40005001015 +2610 n40005001015 +2614 n40005001015 +2622 n40005001015 +2629 n40005001015 +2643 n40006007007 +2648 n40006007007 +2653 n40005001015 +2659 n40005001015 +2661 n40006008008 +2665 n40005001015 +2667 n40005001015 +2675 n40006009005 +2679 n40006009005 +2683 n40006009005 +2692 n40005001015 +2696 n40005001015 +2700 n40005001015 +2703 n40005001015 +2706 n40005001015 +2710 n40005001015 +2714 n40005001015 +2719 n40005001015 +2730 n40006014005 +2733 n40005001015 +2736 n40005001015 +2748 n40005001015 +2752 n40005001015 +2766 n40006016008 +2774 n40005001015 +2778 n40006016008 +2780 n40005001015 +2783 n40005001015 +2789 n40005001015 +2800 n40005001015 +2808 n40005001015 +2815 n40005001015 +2818 n40005001015 +2836 n40005001015 +2858 n40005001015 +n40006021001 +2864 n40005001015 +2877 n40005001015 +2882 n40005001015 +2889 n40005001015 +2895 n40005001015 +2904 n40005001015 +2940 n40005001015 +2945 n40005001015 +2954 n40005001015 +2987 n40005001015 +2991 n40006026004 +2993 n40005001015 +2996 n40006026004 +3000 n40005001015 +3007 n40006027001 +3028 n40005001015 +3036 n40006029006 +3040 n40006028008 +3061 n40006030022 +3077 n40006031006 n40006031009 n40006031012 +3085 n40006030022 +3090 n40006031006 n40006031009 n40006031012 +3100 n40006032010 +3102 n40006031006 n40006031009 n40006031012 +3105 n40006030022 +3116 n40006034009 +3122 n40006034014 +3140 n40006030022 +3152 n40006030022 +3157 n40006030022 +3167 n40006030022 +3175 n40007004005 +3183 n40006030022 +3190 n40007005001 +3204 n40007005001 +3215 n40006030022 +3222 n40007006004 n40007006010 +3226 n40007006006 n40007006014 +3234 n40006030022 +3241 n40006030022 +3258 n40006030022 +3261 n40007009006 +3265 n40007009006 +3270 n40007009010 +3278 n40007009010 +3281 n40006030022 +3290 n40006030022 +3295 n40006030022 +3304 n40007011016 +3312 n40006030022 +3317 n40006030022 +3319 n40007012010 +3321 n40007012014 +3352 n40007013009 +3371 n40007014008 +3376 n40007015004 +3379 n40006030022 +3391 n40007015004 +3393 n40007015004 +3445 n40007015004 +3447 n40007015004 +3452 n40004017005 +3468 n40004017005 +3475 n40004017005 +3484 n40007022009 +3489 n40007022009 +3495 n40007022009 +3503 n40007022001 +3507 n40007022001 +3510 n40004017005 +3519 n40004017005 +3525 n40007024007 +3529 n40007024013 +3531 n40007024013 +3553 n40007024019 +3566 n40004017005 +3573 n40007026007 +3577 n40007026014 +3579 n40007026014 +3601 n40007026020 +3608 n40007027016 +3625 n40007028006 +3629 n40007028012 +3638 n40007028012 +3641 n40007028006 +3646 n40007028006 +3654 n40007028006 +3660 n40008002003 +3667 n40008002003 +3674 n40008002003 +3679 n40008002003 +3687 n40008002003 +3695 n40008004018 +3700 n40008001009 +3703 n40008004005 +3707 n40008004005 +3710 n40008004005 +3716 n40008005008 +3725 n40008005008 +n40008004005 +3729 n40008006005 +3741 n40008008004 +3753 n40008008004 +3756 n40008008004 +3763 n40008008004 +3779 n40008008004 +3795 n40008010009 +3806 n40008010009 +3838 n40008012009 +3857 n40008013006 +3877 n40008014008 +3885 n40008014011 +3888 n40008014011 +3895 n40008014004 +3900 n40008014004 +3923 n40008014004 +3938 n40008018004 +3949 n40008018004 +3952 n40008019007 +3958 n40008019004 +3987 n40008020005 +3990 n40008021001 +3997 n40008021001 +4002 n40008021001 +4004 n40008022003 +4011 n40008022011 +4015 n40008022003 +4020 n40008022003 +4023 n40008022003 +4040 n40008022003 +4045 n40008022003 +4052 n40008023010 +4076 n40008022003 +4084 n40008022003 +4088 n40008022003 +4098 n40008022003 +4121 n40008028015 +4123 n40008029009 +4132 n40008028015 +4137 n40008022003 n40008028015 +4146 n40008022003 +4150 n40008031003 +4152 n40008031003 +4160 n40008031003 +4163 n40008031003 +4213 n40008034010 +4220 n40008034005 +4230 n40008034010 +4235 n40008034010 +4253 n40009002020 +4263 n40009003003 +n40009002012 +4272 n40009003003 +4288 n40009002018 +4317 n40009006019 +4325 n40009006019 +4332 n40009006019 +4345 n40009006014 +4350 n40009001011 +4363 n40009009007 +4365 n40009009004 +4369 n40009009004 +4372 n40009009004 +4390 n40009010017 +4398 n40009010017 +4409 n40009011007 +4411 n40009010017 +4443 n40009010017 +4450 n40009014005 +4458 n40009010017 +4463 n40009014005 +4476 n40009015009 +4486 n40009015009 +4505 n40009016004 +4542 n40009017024 n40009017028 +4545 n40009015005 +4547 n40009014005 +4553 n40009015005 +4558 n40009018006 +4566 n40009015005 +4568 n40009018014 +4576 n40009018006 +4580 n40009019004 +4594 n40009019004 +4598 n40009020003 +4604 n40009019004 +4612 n40009020003 +4618 n40009022010 +4620 n40009022010 +4657 n40009023004 +4667 n40009024007 +4684 n40009023007 +4694 n40009027008 +4703 n40009027005 +4708 n40009028009 +4714 n40009027013 +4717 n40009028014 +4724 n40009028009 +4729 n40009028009 +4731 n40009028009 +4734 n40009028009 +4739 n40009028009 +4747 n40009028009 +4750 n40009030010 +4757 n40009028009 +4761 n40009030010 +4808 n40009035006 n40009035010 +4828 n40009036004 +4843 n40009035004 +4864 n40009038004 +4870 n40009035004 +4872 n40010001005 +4878 n40010001010 +4893 n40010002010 n40010002015 n40010002020 n40010002025 n40010003001 n40010003003 n40010003004 n40010003006 n40010003009 n40010003014 n40010004001 n40010004005 +4903 n40010002010 +4913 n40010002020 +4938 n40009035004 +n40010002010 n40010002015 n40010002020 n40010002025 n40010003001 n40010003003 n40010003004 n40010003006 n40010003009 n40010003014 n40010004001 n40010004005 +4946 n40010005003 +5001 n40010005003 +5019 n40010010015 +5031 n40010011005 n40010011007 +5045 n40010012005 +5056 n40010005003 +5058 n40010013006 +5066 n40010005003 +5068 n40010005003 +5075 n40010005003 +5080 n40010005003 +5094 n40010005003 +5097 n40010005003 +5112 n40010005006 +5114 n40010005003 +5138 n40010005003 +5145 n40010017005 +5147 n40010005003 +5156 n40010005006 +5159 n40010018003 n40010018006 +5166 n40010005003 +5175 n40010005003 +5184 n40010005003 +5193 n40010005003 +5197 n40010005003 +5214 n40010021014 +5223 n40010005006 +5229 n40010022012 +5234 n40010005003 +5242 n40010023007 +5246 n40010005003 +5271 n40010024008 +5280 n40010025003 +5287 n40010025012 +5297 n40010025019 +5306 n40010026008 +5311 n40010026013 +5316 n40010005003 +5368 n40010029003 +5377 n40010005003 +5380 n40010005003 +5394 n40010005003 +5400 n40010005006 +5405 n40010005006 +5407 n40010032004 +5411 n40010005006 +5420 n40010005006 +5425 n40010005006 +n40010033004 +5430 n40010005006 +5457 n40010035004 +5463 n40010035010 +5469 n40010035016 +5476 n40010036004 +5483 n40010005006 +5486 n40010005006 +5495 n40010005006 +5498 n40010005006 +5506 n40010038002 +5510 n40010005006 +5513 n40010005006 +5519 n40010039002 +5521 n40010039004 +5527 n40010039010 +5529 n40010005006 +5531 n40010039012 +5534 n40010005003 +n40010005006 +5539 n40010005006 +5544 n40010005006 +5580 n40010005003 +5586 n40010042004 +5597 n40011001006 +5607 n40011001010 +5623 n40011002003 +5625 n40011001006 +n40011001006 +5638 n40011002015 +5670 n40011004004 +5672 n40011002015 +5717 n40011007009 +5721 n40011007011 +5727 n40010040012 +5731 n40010040012 +5734 n40011007006 +n40011010010 +5739 n40011007006 +5741 n40011007006 +5744 n40011007009 +5763 n40011011010 +5782 n40011012011 +5797 n40011013009 +5820 n40011016009 +5823 n40011016009 +5826 n40011016017 +5871 n40011019023 +5878 n40011020005 +5883 n40011007006 +5888 n40011021003 +5891 n40011021006 +5905 n40011021003 n40011021006 +5915 n40011021003 n40011021006 +5925 n40011021003 n40011021006 +5929 n40011023003 +5946 n40011023003 +5954 n40011023003 +5964 n40011023003 +5974 n40011025011 +5991 n40011025020 +6001 n40011026003 +6003 n40011025007 +6008 n40011025007 +6036 n40011025007 +6042 n40011025007 +6044 n40011028006 n40011028008 +6048 n40011025007 +6050 n40011028006 n40011028008 +6054 n40011025007 +6067 n40011028006 n40011028008 +6071 n40011025007 +6076 n40011025007 +6094 n40012001007 +6107 n40012001007 +6111 n40012001007 +6120 n40012001007 +6122 n40012002003 +6133 n40012003009 +6147 n40012004010 +6152 n40012003009 +6156 n40012003009 +6184 n40012002003 +6217 n40012001012 +6222 n40012002003 +6231 n40012001007 +6240 n40012001007 +6242 n40012001007 +6244 n40012002003 +6248 n40012002003 +6250 n40012011009 +6257 n40012011012 +6264 n40012011012 +6283 n40012013004 +6293 n40012013008 +6301 n40012001007 +6303 n40012001007 +6310 n40012009007 +6313 n40012015003 +6317 n40012015010 +6321 n40012015010 +6325 n40012015003 +6339 n40011027019 +n40012018003 +6344 n40011027019 +n40012018008 +6349 n40011027019 +6353 n40011027019 +6355 n40012018003 +6373 n40012018003 +6393 n40012018003 +6398 n40012015003 +6405 n40012022004 +6420 n40012015003 +6430 n40012015003 +6447 n40012024003 +6449 n40012024003 +6454 n40012025009 +6463 n40012025016 n40012025018 +6474 n40012026004 +6481 n40012026004 +6484 n40012015003 +6492 n40012024003 +6497 n40012027014 +n40012027010 +6500 n40012024003 +6507 n40012015003 +6514 n40012024003 +6532 n40012029010 +6544 n40012029021 +6550 n40012015003 +6552 n40012015003 +6559 n40012015003 +6564 n40012024003 +6590 n40012032004 +6602 n40012032016 +6620 n40012033004 +6630 n40012033014 +6677 n40012034001 +6682 n40012036006 +6688 n40012036006 +6697 n40012034001 +6703 n40012034001 +6707 n40012015003 +6717 n40012038010 +6721 n40012015003 +6724 n40012038004 +6735 n40012039006 +6785 n40012041009 +6809 n40012042009 +6849 n40012043005 +6851 n40012044005 +6866 n40012043005 +6871 n40012043005 +6875 n40012044005 +6882 n40012043009 +6895 n40012015003 +6905 n40012015003 +6909 n40012015003 +6914 n40012015003 +6918 n40012015003 +6922 n40012015003 +6926 n40012015003 +6929 n40012015003 +6934 n40012015003 +6939 n40012015003 +6945 n40012015003 +6950 n40012015003 +6954 n40012015003 +6959 n40012015003 +6963 n40012015003 +6972 n40012015003 +6976 n40012050004 +n40012015003 +7000 n40013001007 +7004 n40013001007 +7019 n40013002016 +7034 n40013003011 +7046 n40013004006 +7090 n40013007001 +7120 n40013001007 +7126 n40013002016 +7128 n40013001007 +7132 n40013010004 +7142 n40013002016 +7149 n40013012003 +7161 n40013012011 +7163 n40013013010 n40013013014 +7166 n40013002016 +7180 n40013002016 +7214 n40013015006 +7236 n40013010004 +7244 n40013010004 +7250 n40013010004 +7271 n40013010004 +7296 n40013019002 +n40013019002 +7310 n40013020006 +7321 n40013020011 +7327 n40013020006 +7347 n40013022006 +7376 n40013023007 +7385 n40013023013 +7401 n40013002016 +7415 n40013024011 +7423 n40013024011 +7455 n40013027006 +7463 n40013027009 +7470 n40013027006 +7472 n40013027004 +7475 n40013027020 +7480 n40013027006 +7486 n40013027021 +7488 n40013027006 +7498 n40013029008 +7503 n40013029009 n40013029014 +7521 n40013030018 +7527 n40013030018 +7535 n40013027006 +7539 n40013002016 +7549 n40013031012 +7556 n40013031016 +7558 n40013031012 +7585 n40013032017 +7589 n40013002016 +7597 n40013033011 +7608 n40013033017 +7623 n40013034009 +7652 n40013034005 +7655 n40013034005 +7658 n40013036013 +7666 n40013034005 +7689 n40013038010 +7708 n40013038019 +7745 n40013041003 +7751 n40013041003 +7762 n40013041017 n40013041020 +7768 n40013042006 +7786 n40013043003 +7805 n40013044007 +7813 n40013044014 +7823 n40013044011 +7847 n40013046005 +7865 n40013047008 +7904 n40013049014 +7910 n40013050006 +7923 n40013034005 +7926 n40013034005 +7928 n40013036013 +7942 n40013052016 +7947 n40013052016 +7967 n40013053006 +7969 n40013054005 +7973 n40013054005 +7976 n40013054005 +7980 n40013053006 +7988 n40013053006 +7997 n40013053006 +8003 n40013053006 +8014 n40013053006 +8016 n40013056003 +8018 n40013054005 +8022 n40013053006 +8028 n40013053006 +8033 n40013054005 +8047 n40013057012 +8051 n40013054005 +8057 n40013054005 +8073 n40014001006 +n40014001011 +8079 n40014002008 +8086 n40014002012 +8091 n40014002008 +8110 n40014003003 +8115 n40014003003 +8118 n40014003003 +8120 n40014003014 +8123 n40014004004 +8131 n40014004004 +8154 n40014006008 +8160 n40014006008 +8165 n40014006008 +8168 n40014006008 +8200 n40014010004 +8211 n40014011011 +8216 n40014010004 +8222 n40014010004 +8240 n40014013004 +8246 n40014013004 +8259 n40014014005 +8264 n40014014005 +8269 n40014013004 +8292 n40014015021 +8298 n40014015007 +8304 n40014015021 +n40014015007 +8308 n40014015007 +8310 n40014016003 +8322 n40014016003 +8325 n40014016003 +8327 n40014017011 n40014017014 +8363 n40014019033 +8397 n40014016003 +8415 n40014016003 +8422 n40014023008 +8449 n40014022005 +8458 n40014016003 +8478 n40014026003 +8481 n40014027005 +8487 n40014027005 +8493 n40014028007 +8496 n40014028005 +8499 n40014028007 +8504 n40014027005 +8534 n40014029010 +8543 n40014029010 +8546 n40014029010 +8553 n40014031004 n40014029010 +8566 n40014031004 +8582 n40014031004 +8587 n40014034008 +8593 n40014034008 +8596 n40014031004 +8603 n40014031004 +8611 n40014031004 +8630 n40015001004 +8645 n40015001004 +8648 n40015001007 n40015001009 +8652 n40015001007 n40015001009 +8661 n40015001007 n40015001009 +8681 n40015001007 n40015001009 +8695 n40015005004 +8702 n40015005006 +8706 n40015005006 +8721 n40015007001 +8729 n40015006012 +8734 n40015008002 +8738 n40015006012 +8742 n40015006012 +8752 n40015010004 +8771 n40015011012 +8780 n40015001004 +8790 n40015001004 +8795 n40015013006 +8800 n40015001004 +8805 n40015012010 +8815 n40015014007 n40015014009 +8824 n40015001004 +8826 n40015012004 +8830 n40015001004 +8834 n40015012004 +8864 n40015018003 +8881 n40015019006 n40015019008 n40015019009 n40015019010 n40015019011 n40015019012 n40015019013 +8898 n40014034008 +8915 n40015021009 +8920 n40015022003 +8926 n40015022003 +8930 n40015021005 +8933 n40015022003 +8939 n40015021005 +8941 n40015021005 +8944 n40015022003 +8948 n40015021005 n40015023010 +8950 n40015021005 +8965 n40015022003 +8968 n40015021005 +8972 n40015022003 +8974 n40015021005 +8990 n40015022003 +9009 n40015027009 +9015 n40015022003 +9019 n40015028008 +9023 n40015028008 +9030 n40015022003 +9037 n40015022007 +9052 n40015029016 +9055 n40015029005 +9060 n40015030004 +9070 n40015030009 n40015030010 n40015030012 n40015030011 n40015030014 +9074 n40015029005 +9077 n40015030009 n40015030010 n40015030011 n40015030012 n40015030014 +9104 n40015032003 +9115 n40015032003 +9123 n40015032012 +9135 n40015032003 +9139 n40015032003 n40015033005 +9150 n40015033005 +9157 n40015033005 +9192 n40015036019 +9236 n40015034005 +9242 n40016001004 n40016001006 +9244 n40015034005 +9247 n40016001004 n40016001006 +9289 n40016004001 +9297 n40016001004 n40016001006 +9313 n40016005004 +9325 n40016005004 +9328 n40016005004 +9342 n40016008010 +9379 n40016008010 +9421 n40016013004 +9433 n40016013013 +9436 n40016013019 +9441 n40016013019 +9444 n40016013019 +9451 n40016013013 +9453 n40016013013 +9455 n40016013004 +9463 n40016013004 +9478 n40016016003 +9489 n40016017009 +9493 n40016017004 +9499 n40016017004 +n40016017009 +9503 n40016017009 +9512 n40016017004 +9520 n40016018017 +9522 n40016017009 +9561 n40016017004 +9573 n40016021004 +9576 n40016021004 +9599 n40016021004 +9604 n40016021004 +9607 n40016022012 +9612 n40016022012 +n40016021015 n40016021018 n40016021027 n40016021032 +9615 n40016021004 +9622 n40016021004 +9625 n40016021004 +9643 n40016024003 +9648 n40016024003 +9651 n40016024009 +9656 n40016024009 +9659 n40016024003 +9666 n40016025001 +9669 n40016025006 +9676 n40016025011 +9678 n40016024003 +9680 n40016025016 +9693 n40016026004 +9702 n40016026018 +9715 n40016027004 +9719 n40016027004 +9727 n40016027021 +9730 n40016024006 +9737 n40016028006 +9753 n40016028019 +9769 n40017001011 +9772 n40017001009 n40017001011 n40017001013 +9777 n40017001007 n40017001009 n40017001011 n40017001013 +9781 n40017001009 n40017001011 n40017001013 +9786 n40017001007 +9793 n40017001007 +9802 n40017001009 n40017001011 n40017001013 +9808 n40017001007 +9819 n40017004004 n40017001011 n40017001013 n40017004008 n40017003005 n40017003007 +n40017001021 +9825 n40017001021 +9828 n40017004008 +9837 n40017004004 +9843 n40017004004 n40017001011 n40017001013 n40017004008 n40017003005 n40017003007 +9851 n40017004007 +9855 n40017005011 +9859 n40017004007 +9862 n40017004007 +9870 n40017006004 +9880 n40017006004 +9890 n40017006004 +9895 n40017008011 +9900 n40017006004 n40017008011 +9905 n40017006004 +9924 n40017009010 +9939 n40017009010 +9950 n40017010005 +9958 n40017012005 +9962 n40017012005 +9985 n40017013004 +9992 n40017009010 +9995 n40017009010 +10000 n40017014008 +10021 n40017015007 +10024 n40017015003 +10028 n40017015007 +10043 n40017017007 +10048 n40017017007 +10050 n40017017004 +n40017015007 +10055 n40017018011 +10061 n40017015007 +10079 n40017019004 n40017019006 +10083 n40017019004 +10087 n40017018011 +10089 n40017019006 +10091 n40017019004 +10095 n40017019004 +10099 n40017019004 +10118 n40017019004 +10121 n40017019004 n40017019006 +10126 n40017019004 +10140 n40017022013 +10151 n40017019004 n40017022010 +10166 n40017019004 +10177 n40017024012 +10182 n40017025016 +10198 n40017025018 +10209 n40017024012 +10221 n40017024010 +10237 n40017027015 +10240 n40017027023 +10243 n40017024010 +10245 n40017026009 +10247 n40017024012 +10271 n40018002003 +10274 n40018001007 +10279 n40018001007 +10299 n40018004001 +10304 n40018004003 +10323 n40018001009 +n40018001009 +10337 n40018001009 +10339 n40018006004 +10347 n40018006004 +10371 n40018007015 +10379 n40018001007 +10383 n40018001007 +10385 n40018001007 +10387 n40018008004 n40018008008 +10391 n40018001007 +10393 n40018001007 +10419 n40018001007 +10421 n40018001007 +10423 n40018009004 +10427 n40018001007 +10429 n40018001007 +10455 n40018001007 +10459 n40018010006 +10469 n40018001009 +10474 n40018001007 +10486 n40018012009 +10504 n40018012027 +10507 n40018001007 +10511 n40018012027 +10528 n40018001007 +10543 n40018001007 +10546 n40018015005 +10548 n40018001007 +10550 n40018015005 +10553 n40018001007 +10558 n40018001007 +10565 n40018001007 +10583 n40018016016 +10594 n40018001007 +10603 n40018001007 +10628 n40018001007 +10633 n40018001007 +10645 n40018019007 +10649 n40018001009 +10662 n40018001009 +10664 n40018020001 +10668 n40018020004 n40018020006 +10674 n40018001009 +10679 n40018021004 +10682 n40018021004 +10685 n40018021013 +10689 n40018021004 +10694 n40018021004 +10710 n40018023009 +10717 n40018023009 +10720 n40018023008 +10723 n40018023008 +10731 n40018024008 +10737 n40018024008 +10755 n40018025009 +10759 n40018026004 +10763 n40018025009 +10772 n40018027006 +10777 n40018027006 +10787 n40018028004 +n40018028007 +10790 n40018028004 +10795 n40018028007 +10806 n40018028004 +10808 n40018028004 +10812 n40018029004 +10815 n40018028004 +10817 n40018028004 +10823 n40018029004 +10833 n40018028004 +10844 n40018031004 +10850 n40018028004 +10853 n40018028004 +10855 n40018028004 +10861 n40018024010 +10863 n40018032009 +10866 n40018032005 +10870 n40018032009 +10874 n40018032009 +10876 n40018032005 +n40018032009 +10883 n40018028004 +10885 n40018028004 +10899 n40018022004 +10903 n40018001007 +10907 n40018001007 +10910 n40018035013 +10914 n40018001007 +10940 n40019001006 +10945 n40019002004 +n40019001018 +10949 n40019001006 +10952 n40019001006 +10965 n40019001006 +10983 n40019004015 +10995 n40019005006 +11019 n40019001006 +11030 n40019003004 +11036 n40019003004 +11038 n40019003004 +11042 n40019003004 +11051 n40019003004 +11058 n40019009005 +11067 n40019001006 +11084 n40019001006 +11086 n40019010004 +11092 n40019010017 +11099 n40019012003 +11108 n40019012012 +11116 n40019012020 +11118 n40019012020 +11130 n40019001006 +11136 n40019013004 +11154 n40019014007 +11157 n40019014003 +11160 n40019014007 +11170 n40019014007 +11177 n40019014003 +11188 n40019014003 +11190 n40019016003 +11192 n40019014003 +11197 n40019006011 +11212 n40019014003 +n40019017024 +11241 n40019018006 +11244 n40019018010 n40019018012 n40019018014 n40019018016 n40019019001 n40019019008 +11251 n40019020004 +11260 n40019020004 +11274 n40019021004 +11294 n40019023003 +11297 n40019023006 +11310 n40019023006 +11341 n40019025004 +11344 n40019025011 +11357 n40019026004 +11359 n40019025004 +11364 n40019026004 +11368 n40019025004 +11373 n40019025004 +11376 n40019025004 +11378 n40019025004 +11381 n40019028003 +11394 n40019028020 +11397 n40019028012 +11426 n40019028003 +11451 n40020001008 +11460 n40020001008 +11471 n40020002005 +11475 n40020001008 +11482 n40020002005 +11489 n40020003007 +11493 n40020003007 +11503 n40020003007 +11505 n40020003007 +11523 n40020002005 +11527 n40020006007 +11529 n40020003011 +11536 n40020001008 +11539 n40020006007 +11542 n40020006007 +11545 n40020006007 +11559 n40020008006 +11598 n40020010004 +11606 n40020009003 +11614 n40020012004 +11616 n40020010004 +11627 n40020011006 +11630 n40020010004 +11635 n40020013007 +11639 n40020011006 +11642 n40020013007 +11653 n40020013007 +11656 n40020011006 +11662 n40020011006 +11666 n40020013007 +11670 n40020011006 +11692 n40020017009 n40020017004 +11698 n40020017009 +11715 n40020018007 +11720 n40020018007 +11737 n40020017004 +11746 n40020020005 +11752 n40020017004 +11754 n40020017004 +11756 n40020020005 +11760 n40020017004 +11768 n40020020005 +n40020021015 +11773 n40020021015 +11776 n40020017004 +11780 n40020017004 +11794 n40020022013 +11796 n40020022004 +11799 n40020022004 +11802 n40020021015 +11806 n40020022004 +11813 n40020022004 +11819 n40020022004 +n40020023010 +11828 n40020022004 +11842 n40020017009 +11851 n40020025012 +11856 n40020025012 +11861 n40020017009 +11867 n40020017009 +11871 n40020017009 +11878 n40020017009 +11882 n40020017009 +11898 n40020028003 +11904 n40020025003 n40020017009 +11908 n40020025003 +11926 n40020030004 +11934 n40020030004 +11938 n40020030004 +11943 n40020030004 +11952 n40020030004 +11958 n40020030004 +11960 n40020032004 +11966 n40020030004 +11974 n40020030004 +11980 n40020034004 +12001 n40021001019 +12008 n40021001019 +12017 n40021002013 +12020 n40021001016 +12024 n40021001019 +12031 n40021002013 n40021002016 +12037 n40021002013 n40021002016 +12056 n40021005003 +12058 n40021005003 +12077 n40021006004 +12089 n40021007003 n40021007006 +12095 n40021007003 n40021007006 +12101 n40021008004 +12124 n40021006011 +12146 n40021006011 +12156 n40021006011 +12161 n40021006011 +12202 n40021012021 n40021012027 +12206 n40021009021 +12212 n40021013006 +12218 n40021012003 +12227 n40021014004 n40021014006 +12237 n40021015009 +12256 n40021012003 +12259 n40021015014 +12265 n40021015004 n40021015007 +12279 n40021015004 n40021015007 +12288 n40021017009 +12305 n40021019003 +12310 n40021019003 +12317 n40021019003 +12321 n40021019003 +12348 n40021020004 +12351 n40021020004 +12389 n40021021004 +12394 n40021021004 +12411 n40021021004 +12421 n40021023011 n40021023014 +12423 n40021023011 n40021023014 +n40021024004 +12428 n40021024010 +12430 n40021024004 +n40021024004 +n40021023011 n40021023014 +12451 n40021023011 n40021023014 +12454 n40021023011 n40021023014 +12461 n40021023011 n40021023014 +12467 n40021025004 +12477 n40021026008 +12491 n40021023011 n40021023014 +12493 n40021027004 +12495 n40021027004 +12497 n40021023011 n40021023014 +12505 n40021023011 n40021023014 +12523 n40021028011 +12526 n40021028011 +12538 n40021030004 +12559 n40021023011 n40021023014 +12564 n40021023011 n40021023014 +12572 n40021023011 n40021023014 +12582 n40021023011 n40021023014 +12589 n40021032003 +12597 n40021032003 +12599 n40021023011 n40021023014 +12606 n40021032003 +12613 n40021033004 +12618 n40021033009 +12623 n40021033009 +12630 n40021033009 +12644 n40021033004 +12651 n40021033009 +12658 n40021033004 +12677 n40021036004 +12683 n40021035004 +12686 n40021033004 +12691 n40021033004 +12700 n40021038003 +n40021038006 +12707 n40021038006 +12712 n40021038006 +12715 n40021038006 +12733 n40021038003 +12735 n40021031016 +12739 n40021041003 +12746 n40021041012 +12748 n40021040005 +12754 n40021041017 +12756 n40021023011 n40021023014 +12765 n40021042010 +12769 n40021042010 +12777 n40021042016 +12787 n40021023011 n40021023014 +12791 n40021023011 n40021023014 +12802 n40021043010 +12809 n40021042010 +12817 n40021044013 +12827 n40021042004 +12831 n40021045004 n40021045007 +12835 n40021042004 +12843 n40021042004 +12853 n40021045004 n40021045007 +12862 n40022002007 +12867 n40022002007 +12872 n40022002006 +12894 n40022002006 +12898 n40022002006 +12911 n40022004008 +12918 n40022005005 +12925 n40022005011 +12932 n40022002006 +12944 n40022007003 +12948 n40022006003 +12952 n40022007012 +12958 n40022007003 +12988 n40022008004 +13022 n40022011010 +13032 n40022011010 +13041 n40022011010 +13046 n40022011010 +13052 n40022013016 +13075 n40022001004 +13081 n40022001004 +13084 n40022015004 +13105 n40022016011 +13116 n40022015004 n40022016005 n40022016009 +13118 n40022016011 +13132 n40022015004 n40022016005 n40022016009 +13135 n40022018004 +13139 n40022018004 +13145 n40022015004 n40022016005 n40022016009 +13147 n40022018004 +13151 n40022015004 n40022016005 n40022016009 +13163 n40022015004 n40022016005 n40022016009 +13180 n40022018004 +13187 n40022018004 +13195 n40022018004 +13209 n40022024006 +13212 n40022024006 +13218 n40022024013 +13222 n40022023007 +13237 n40022025009 +13240 n40022025009 +13267 n40022028007 +13269 n40022027006 +13275 n40022023007 +13311 n40022023007 +13316 n40022031014 +13344 n40022029004 +13361 n40022034003 +13364 n40022029004 +13373 n40022029004 +13375 n40022035003 +13398 n40022037005 +13407 n40022037005 +13415 n40022037005 n40022039005 +13431 n40022041004 +13436 n40022041004 +13445 n40022041008 +13449 n40022041004 +13456 n40022042007 +13463 n40022043005 +13467 n40022044002 +13473 n40022044004 +13477 n40022044004 +13482 n40022042007 +13486 n40022045003 +13492 n40022041008 +13502 n40022041008 +13513 n40023001003 +13530 n40023001006 n40023001009 +13538 n40023002008 n40023002011 +13558 n40023002008 n40023002011 +13561 n40023002008 n40023002011 +13565 n40023004003 +13570 n40023002008 n40023002011 +13581 n40023002008 n40023002011 +13612 n40023001006 n40023001009 +13619 n40023001006 n40023001009 +13624 n40023001006 n40023001009 +13629 n40023001006 n40023001009 +13638 n40023001006 n40023001009 +13648 n40023001006 n40023001009 +13656 n40023001006 n40023001009 +13658 n40023001006 n40023001009 +13663 n40023012001 +13668 n40023012007 +13672 n40023013004 n40023013006 +13687 n40023013004 n40023013006 +13696 n40023015003 n40023015005 +13715 n40023015015 +13719 n40023015003 n40023015005 +13721 n40023016003 +13778 n40023018007 +13801 n40023020006 +13807 n40023020006 +13816 n40023021006 +13821 n40023021006 +13839 n40023022010 +13841 n40023023003 n40023023005 +13872 n40023023020 +13874 n40023023008 +13888 n40023025003 n40023025005 +13922 n40023026008 +13925 n40023027003 n40023027005 +13935 n40023027009 +13949 n40023027003 n40023027005 +13964 n40023029003 n40023029005 +13990 n40023029003 n40023029005 +13994 n40023030009 +14003 n40023029003 n40023029005 +14012 n40023029003 n40023029005 +14018 n40023029003 n40023029005 +14031 n40023033005 +n40023001003 +14035 n40023033001 +14042 n40023034008 n40023034010 n40023034012 +14048 n40023034008 n40023034010 n40023034012 +14053 n40023033001 +14063 n40023033001 +14083 n40023035021 +14093 n40023033001 +14112 n40023037001 +14118 n40023037001 +14125 n40023037021 +14134 n40023037001 +14137 n40023037001 +14140 n40023037001 +14143 n40023001003 +14168 n40024001004 +14170 n40024001004 +14176 n40024001004 +14179 n40024001012 +14182 n40024001017 +14186 n40024001012 +14190 n40024001017 +14194 n40024002017 +14199 n40024001004 +14206 n40024001004 +14210 n40024001004 n40024003012 +14213 n40024003012 +14215 n40024002015 +14222 n40024001004 +14233 n40024003012 +14237 n40024003012 +14245 n40024004004 +14247 n40024005001 +14290 n40024007001 n40024007007 n40024007016 +14295 n40024003012 +14300 n40024003012 +14311 n40024004004 +14317 n40024010004 +14321 n40024010004 +14345 n40024013003 +14408 n40024017001 +14420 n40024018002 +14441 n40024003012 +14450 n40024021004 +14486 n40024003012 +14516 n40024003012 +14520 n40024003012 +14558 n40024028001 +14580 n40024029014 +14634 n40024030023 +14642 n40024030023 +14652 n40024031020 +14664 n40024032004 +14678 n40024003012 +14691 n40024003012 +14713 n40024004004 +14758 n40024037004 +14827 n40024003012 +14830 n40024043014 +14851 n40024043008 +14855 n40024003012 +14859 n40024044011 +14876 n40024045006 +14883 n40024045012 +14886 n40024045015 +14894 n40024045006 +n40024046003 +14901 n40024046003 +14905 n40024003012 +14911 n40024046008 +14913 n40024046003 +14920 n40024045006 +14924 n40024048006 +14926 n40024048006 +14934 n40024048006 +14947 n40024048006 +14950 n40024050008 +14956 n40024050014 +14961 n40024050005 +14965 n40024050005 +14987 n40025001008 +14991 n40025001008 +15000 n40025001008 +15015 n40025003003 +15028 n40025004003 +15034 n40025001008 +15053 n40025001008 +15058 n40025007005 +15066 n40025008003 +15070 n40025008005 +15074 n40025008003 +15086 n40025009004 +15088 n40025008003 +15099 n40025008003 +15109 n40025010007 +15128 n40025011007 +15130 n40025010007 +15135 n40025011007 +15138 n40025011007 +15155 n40025014003 +15159 n40025014008 +15162 n40025014003 +15175 n40025014008 +15178 n40025015013 +15191 n40025016005 +15217 n40025018005 +15227 n40025016006 n40025017004 n40025018005 +15232 n40025019009 +15248 n40025020007 +15256 n40025020007 +15259 n40025020007 +15271 n40025021007 +15279 n40025021007 +15290 n40025022006 +15298 n40025022006 +15301 n40025022006 +15313 n40025023007 +15321 n40025023007 +15333 n40025024010 +15353 n40025024010 +15360 n40025024010 +15365 n40025024008 +15367 n40025024008 +15385 n40025026009 +15389 n40025026004 +15395 n40025026004 +15398 n40025026004 +15404 n40025024008 +15430 n40025029011 +15441 n40025030008 +15460 n40025031005 +15466 n40025031005 +15472 n40025031005 +15476 n40025031005 +15482 n40025032007 +15484 n40025032007 +15501 n40025032015 +15514 n40025034004 +15520 n40025034004 +15524 n40025034011 +15533 n40025034004 +15538 n40025034004 +15543 n40025034004 +15547 n40025034004 +15551 n40025034004 +15558 n40025034004 +15561 n40025034004 +15568 n40025037007 +15579 n40025037007 +15590 n40025037007 +15598 n40025037007 +15604 n40025037005 +15607 n40025037005 +15615 n40025040004 +15618 n40025040004 +15629 n40025040004 +15642 n40025041019 +15648 n40025040004 +15654 n40025040004 +15660 n40025040004 +15665 n40025040004 +15673 n40025040004 +15677 n40025041004 +15682 n40025044006 +15698 n40025044006 +15701 n40025041004 +15705 n40025041004 +15715 n40025040004 +15719 n40025041004 +15742 n40026001006 +15811 n40026006003 +15822 n40026006003 +15837 n40026007006 +15848 n40026008004 +15859 n40026010004 +15866 n40026008004 +15868 n40026010004 +15873 n40026010011 +15877 n40026007006 +15881 n40026010004 +15885 n40026010004 +15889 n40026008004 +15904 n40026010011 +15907 n40026010011 +15923 n40026014003 +15925 n40026014003 +n40026014012 +15928 n40026010004 +15930 n40026014012 +15932 n40026014003 +15941 n40026010004 +15957 n40026017010 +15962 n40026017010 +15973 n40026018010 +15979 n40026018015 +15983 n40026018010 +15990 n40026018015 +15997 n40026019004 +16014 n40026020008 n40026019009 +16018 n40026020008 +16022 n40026020008 +16024 n40026019009 +16030 n40026019009 +16032 n40026020008 +16034 n40026022007 +16038 n40026019009 +16044 n40026019009 +16050 n40026023006 +n40026019009 +16062 n40026024003 +16067 n40026023006 +16069 n40026024014 +16077 n40026024014 +16083 n40026024014 +16089 n40026019009 +16092 n40026025003 +16096 n40026025003 +n40026025003 +16101 n40026019009 n40026020008 +16116 n40026026007 +16120 n40026026006 +16127 n40026026014 +16131 n40026027003 +n40026026014 +16134 n40026027003 +16138 n40026026006 +16150 n40026026014 +16157 n40026027003 +16167 n40026029012 +16170 n40026026014 +16177 n40026026006 +16188 n40026026014 +16192 n40026026014 +16195 n40026031005 +16215 n40026031005 +16217 n40026026014 +16226 n40026031005 +16231 n40026031005 +n40026033004 +16236 n40026033004 +16241 n40026033004 +16252 n40026034004 +16254 n40026034004 +16259 n40026035004 +16261 n40026034004 +16265 n40026034004 +16276 n40026035019 +16309 n40026037004 n40026037008 +16314 n40026036006 +16322 n40026036006 +16329 n40026036006 +16334 n40026036006 +16340 n40026036006 +16347 n40026036006 +16351 n40026039011 +16359 n40026040005 +16372 n40026036006 +16396 n40026036006 +16400 n40026039020 +16404 n40026039020 +16409 n40026042007 +16414 n40026040005 +16419 n40026040005 +16424 n40026040005 +16431 n40026044011 +16442 n40026045005 +16466 n40026036006 +16469 n40026036006 +16479 n40026047006 +16496 n40026036006 +16498 n40026047014 +16504 n40026036006 +16507 n40026048011 +16518 n40026049005 +16523 n40026048003 +16538 n40026050017 +16551 n40026051003 +16559 n40026051017 +16564 n40026051003 +16570 n40026051003 +16574 n40026052008 +16591 n40026052005 +16594 n40026052005 +16627 n40026055007 +16638 n40026055007 +16654 n40026055007 +16677 n40026057005 +16708 n40026059012 +16721 n40026059012 +16739 n40026059012 +16743 n40026060010 +n40026059012 +16754 n40026063003 +16756 n40026063003 +16763 n40026063007 n40026059003 n40026059006 +16766 n40026063003 +16775 n40026063007 +16778 n40026063007 +16782 n40026063007 n40026059003 n40026059006 +16808 n40026065003 +16822 n40026059003 n40026059006 +16825 n40026059003 n40026059006 +16836 n40026064004 +16839 n40026064004 +16845 n40026059003 n40026059006 n40026067010 n40026065003 +16851 n40026068004 +16862 n40026069003 +16867 n40026069003 +16874 n40026069003 +16889 n40026069003 +16895 n40026069003 +16922 n40026073009 +16924 n40026071016 n40026056013 +16930 n40026073009 +16932 n40026073009 +16962 n40026075007 +16986 n40027001016 +16989 n40027001016 +17000 n40027001016 +17019 n40027003015 n40027003017 +17023 n40027003015 n40027003017 +n40027003003 +17047 n40027006006 +17060 n40027006006 +17073 n40027007008 +17097 n40027009018 +17104 n40027009014 +17112 n40027009006 +17123 n40027011003 +17127 n40027011003 +17137 n40027011012 +17143 n40027011022 +17153 n40027011022 +17159 n40027011022 +17164 n40027013005 +17185 n40027015011 +17196 n40027015010 +17198 n40027015010 +17204 n40027015010 +17217 n40027017014 +17220 n40027017007 +17226 n40027017007 +17229 n40027017007 +17232 n40027017007 +17236 n40027017014 +17244 n40027019018 +17267 n40027020009 +17274 n40027020009 +17276 n40027020009 +17281 n40027020009 +17292 n40027020009 +17295 n40027022004 +17302 n40027020009 +17332 n40027022008 +n40027024019 +17343 n40027022008 +17345 n40027025005 +17350 n40027025005 +17353 n40027025005 +17376 n40027027008 +17382 n40027027008 +17386 n40027027008 +17396 n40027027008 +17402 n40027027008 +17406 n40027027008 +17408 n40027027008 +17417 n40027027008 +17426 n40027027008 +17430 n40027027008 +17432 n40027027008 +17437 n40027027008 +17440 n40027027008 +17443 n40027027008 +17454 n40027032004 +17460 n40027027008 +17467 n40027033006 +17473 n40027027008 +17486 n40027027008 +17490 n40027027008 +17496 n40027027008 +n40027033004 +17503 n40027027008 +17506 n40027027008 +17508 n40027027008 +17518 n40027027008 +17532 n40027027008 +17536 n40027039003 +17549 n40027040004 +17572 n40027027008 +17587 n40027027008 +17596 n40027027008 +17612 n40027027008 +17614 n40027027008 +17643 n40027046015 +17646 n40027046008 +17648 n40027046008 +17651 n40027046008 +17663 n40027046008 +17668 n40027047001 +17680 n40027046008 +17691 n40027046008 +17742 n40027050003 +17757 n40027054003 +17774 n40027054010 +17783 n40027055004 +17791 n40027055012 +17793 n40027055004 +17822 n40027057005 +17824 n40027057005 +17828 n40027057005 +17849 n40027059004 +17855 n40027059004 +17859 n40027059006 +17861 n40027060008 +17876 n40027060019 +17882 n40027056008 +17892 n40027062003 +17909 n40027058009 +17934 n40027063007 +17952 n40027062011 n40027062014 +17962 n40027062011 n40027062014 +17987 n40027056008 +18011 n40028002016 +18016 n40028002006 +18022 n40028002006 +18030 n40028002006 +18047 n40028005007 +18057 n40028001019 +18074 n40028005014 +18083 n40028007006 +18087 n40028007019 +n40028005014 +18092 n40028005007 +18108 n40028005014 +18113 n40028005007 +18117 n40028005007 +18120 n40028009003 +18125 n40028009003 +18128 n40028005007 +18137 n40028010005 +18144 n40028010005 +18148 n40028005007 +18181 n40028010005 +18185 n40028010005 +n40028012013 +18191 n40028011017 +18195 n40028011014 n40028012005 +18198 n40028012013 +18202 n40028012013 +18212 n40028013009 +18230 n40028016011 +18232 n40028016004 +18237 n40028016016 +18247 n40028016004 +18250 n40028018004 +18266 n40028019006 +18280 n40028019006 +18283 n40028020004 +18285 n40028016004 +18288 n40028018004 +18290 n40028016004 +18321 n41001001004 +n41001002011 +18326 n41001001004 +18340 n41001003009 +18357 n41001004002 +18369 n41001004002 +18377 n41001005008 n41001005011 +18391 n41001006004 +18404 n41001006004 +18406 n41001006004 +n41001007006 +18417 n41001007006 +n41001006004 +18420 n41001005008 n41001005011 +18423 n41001007006 +18425 n41001005008 n41001005011 +18464 n41001009008 +18471 n41001009008 +18475 n41001011002 +18479 n41001009008 +18485 n41001009008 +18510 n41001009008 +18569 n41001016009 n41001016011 +18574 n41001017005 +18577 n41001016009 n41001016011 +18587 n41001017005 +18600 n41001019005 +18602 n41001019005 n41001019010 +18612 n41001019005 n41001019010 +18617 n41001019005 n41001019010 +18627 n41001017005 +18646 n41001017005 +18676 n41001024006 +18683 n41001024006 +18692 n41001023010 +18699 n41001023008 +18706 n41001023008 +18713 n41001023008 +18719 n41001027003 +18736 n41001025005 +18741 n41001025005 +18776 n41001025005 +18778 n41001030003 +18782 n41001030003 +18788 n41001030003 +18793 n41001025005 n41001030004 n41001029013 n41001029015 n41001029017 +18803 n41001025005 +18839 n41001025005 +18855 n41001025005 +18860 n41001036004 +18863 n41001025005 +18866 n41001025005 +18870 n41001025005 +18873 n41001036004 n41001036006 +18882 n41001038009 +18886 n41001038013 +18894 n41001039011 +18906 n41001025005 +18909 n41001025005 +18913 n41001025005 +18918 n41001040005 +18925 n41001025005 +18929 n41001040005 +18936 n41001040005 +18943 n41001040005 +18946 n41001040005 +18949 n41001040005 +18956 n41001040005 +18965 n41001040005 +18973 n41001040005 +18984 n41001025005 +18999 n41001025005 +19026 n41002002003 +19033 n41001025005 +19042 n41001025005 +19049 n41002004011 +19056 n41002004018 +19072 n41002005011 +19087 n41002006003 +19089 n41002005004 +19109 n41002008005 +19114 n41002006003 +19116 n41002006003 +19118 n41002007004 n41002007005 n41002007007 n41002007012 +19123 n41002006003 +19131 n41002009006 +19141 n41002009006 +19162 n41002010018 +19168 n41002010018 +19174 n41002010018 +19209 n41002008005 +19212 n41002013010 +19226 n41002014004 +19228 n41002008005 +19232 n41002008005 +19236 n41002008005 +19240 n41002014004 +19252 n41002015016 +19258 n41002015016 +19275 n41002015016 +19288 n41002016003 +19318 n41002017004 +19332 n41002017004 +19352 n41002019009 +19361 n41002019009 +19371 n41002019009 +19398 n41002021020 +19436 n41002017004 +19447 n41002017004 +19458 n41002017004 +19469 n41002024003 +19480 n41002025008 +19484 n41002025008 +19501 n41002026013 +19514 n41002025008 +19518 n41002024003 +19549 n41003001006 +19557 n41002017004 +19562 n41003001010 +19565 n41002017004 +19581 n41002024003 +19594 n41002024003 +19598 n41002024003 +19607 n41002024003 +19620 n41003005015 +19632 n41002017004 +19634 n41002017004 +19642 n41003007003 +19681 n41003007003 +19686 n41003007003 +19690 n41003007003 +19697 n41003007003 +19703 n41003007003 +19705 n41003007003 +19716 n41003007003 +19719 n41003007003 +19724 n41003007003 +19733 n41003011003 +19736 n41003007003 +19748 n41003007003 +19752 n41003007003 +19759 n41003007003 +19763 n41003014003 +19794 n41003017002 n41003017007 +19797 n41003017016 +19825 n41003019002 +19828 n41003007003 +19841 n41003007003 n41003016004 +19849 n41003007003 +19852 n41003007003 +19880 n41003022003 +19884 n41003022003 +19894 n41003024003 +19901 n41003024003 +19906 n41003025003 +19912 n41003025003 +19920 n41003026004 +19941 n41003027009 +19953 n41003027019 +19957 n41003022003 +20002 n41003007003 +20006 n41003007003 +20012 n41003007003 +20014 n41003007003 +20018 n41003007003 +20022 n41003007003 +20026 n41003007003 +20030 n41003007003 +20033 n41003007003 +20037 n41003007003 +20046 n41003007003 +20054 n41003007003 +20061 n41003007003 +20065 n41003007003 +20073 n41003035003 +20075 n41003007003 +20091 n41003007003 +20095 n41003007003 +20116 n41004001026 +20122 n41004001026 +20126 n41003007003 +20150 n41004004006 +20157 n41004005006 +20196 n41004007002 +20236 n41003007003 +20238 n41003007003 +20241 n41003007003 +20249 n41004010008 n41004010013 +n41004010008 n41004010013 +20287 n41004010008 n41004010013 +20311 n41004015007 +20329 n41004015001 +20339 n41004016002 +20354 n41004016002 +20376 n41004018008 +20415 n41004020002 +20433 n41004010008 n41004010013 +20479 n41004010008 n41004010013 +20488 n41004010008 n41004010013 +20491 n41004010008 n41004010013 +20496 n41004025003 +20506 n41004025009 +20539 n41004026010 +20579 n41004030006 +20584 n41004031002 +20618 n41004032013 +20629 n41004001026 +20640 n41004001026 +20643 n41003007003 n41004034012 +20645 n41003007003 +20651 n41004034012 +20667 n41003007003 +20678 n41003007003 +20697 n41003007003 +20708 n41003007003 +20711 n41003007003 +20715 n41004038017 +20739 n41004034012 +20755 n41004034012 +20758 n41003007003 +20768 n41003007003 +20783 n41003007003 +20789 n41003007003 +20797 n41005002013 +20810 n41005002013 +20814 n41005002013 +20823 n41005002013 +20833 n41005002013 +20852 n41005002013 +20863 n41005006004 +20870 n41005002015 +20872 n41005007010 +20880 n41005007010 +20884 n41005002015 +20888 n41005002015 +20899 n41005002015 +20902 n41005002015 +20905 n41005006004 +20908 n41005002015 +20914 n41005006004 +20918 n41005013007 +20935 n41005006004 +20938 n41005013007 +20944 n41005012009 +20948 n41005013007 +20979 n41005013017 +21032 n41005015005 +21040 n41005015005 +21045 n41005015005 +21050 n41005015005 +21055 n41005018010 +21058 n41005018010 +21063 n41005018010 +21066 n41005018010 +21069 n41005019015 +21073 n41005018010 +21077 n41005018010 +21088 n41005018010 +21109 n41005021004 +21124 n41005021004 +21129 n41005021004 +21132 n41005021004 +21138 n41005022003 +21146 n41005023008 +21154 n41005022003 +21157 n41005021004 +21162 n41005021004 +21181 n41005025002 +21214 n41005027005 +21223 n41005025002 +21239 n41005030004 +21242 n41005030004 +21252 n41005030004 +21257 n41005030004 +21260 n41005030004 +21265 n41005030004 +21269 n41005030004 +21275 n41005031016 +21286 n41005033003 +21290 n41005030004 +21293 n41005030004 +21298 n41005030004 +21300 n41005033003 +21304 n41005034005 +21306 n41005034005 +21316 n41005034005 +21318 n41005030004 +21328 n41005035007 +21354 n41005036003 +21398 n41005036003 +21400 n41005036003 +21414 n41005036003 +21428 n41005041006 +21431 n41005041010 +21436 n41005041015 +21457 n41005040010 n41005040015 n41005040017 n41005042005 +21466 n41005042005 +21476 n41005036003 +21479 n41005036003 +21482 n41005036003 +21498 n41005036003 +21506 n41005036003 +21514 n41005036003 +21517 n41005036003 +21539 n41005036003 +n41006001008 +21542 n41006002011 +21546 n41005036003 +21549 n41006002011 +21562 n41006004009 +21567 n41006004009 +21572 n41006004009 +21576 n41006001008 +21593 n41006002011 +21606 n41006007004 +21612 n41006007004 +21620 n41006007004 +21649 n41006007004 +21655 n41006010008 +21660 n41006010004 +21667 n41006007004 +21670 n41006007004 +21672 n41006011004 +21680 n41006007004 +21683 n41006011004 +21710 n41006004005 +21722 n41006014018 +21727 n41006014015 +21748 n41006016009 +n41006016004 +21752 n41006016009 +21755 n41006017004 +21764 n41006017008 +21774 n41006017004 +21776 n41006017015 +21787 n41006018006 +21793 n41006018006 +21798 n41006018004 +21801 n41006018004 +21813 n41006020006 +21820 n41006020006 +21823 n41006020006 +21828 n41006020006 +21838 n41006021006 +21843 n41006021006 +21856 n41006022007 +21874 n41006022018 +21883 n41006022021 +21886 n41006022018 +21889 n41006022021 +21894 n41006022018 +21900 n41006022021 +21904 n41006024005 +21925 n41006022021 +21947 n41006022021 +21958 n41006025020 +21962 n41006025020 +21970 n41006025020 +21975 n41006028011 +21990 n41006025020 +21996 n41006025020 +21999 n41006029010 +22011 n41006030007 +22020 n41006030004 +22022 n41006030004 +n41006030004 +22025 n41006030004 n41006030007 +22053 n41006030007 n41006030004 +22056 n41006030007 n41006030004 +22068 n41006032008 +22071 n41006030007 n41006030004 +22080 n41006034005 +22091 n41006034005 +22099 n41006030007 +22102 n41006030007 +22114 n41006034005 +22124 n41006034005 +22128 n41006030007 +22131 n41006035009 +22133 n41006034005 +n41006035009 +22138 n41006030007 +22146 n41006034005 +22149 n41006030007 +22151 n41006035009 +22166 n41006035009 +22168 n41006034005 +22208 n41006034005 +22214 n41006034005 +22217 n41006034005 +22243 n41006030007 +22256 n41006030007 +22262 n41006045005 n41006045022 +22279 n41006030007 +22286 n41006045005 +22296 n41006045005 +22304 n41006045005 +22312 n41006045005 +22314 n41006045005 +22316 n41006030007 +22328 n41006045005 +n41006030007 +22334 n41006030007 +22338 n41006045005 +22341 n41006045005 +22343 n41006030007 +22350 n41006045005 +22363 n41006045005 +22374 n41006045005 +22389 n41006030007 n41006045005 +22395 n41006030007 +22400 n41006053008 +22434 n41006030007 +22441 n41006030007 +22447 n41006030007 +22452 n41006030007 +22467 n41006030007 +22471 n41007002009 +22509 n41007004010 +22520 n41006030007 +22532 n41006030007 +22545 n41006030007 +22547 n41007005005 n41007005008 +22552 n41007005005 n41007005008 +22563 n41005007019 +22568 n41007006017 +22572 n41005007019 +22576 n41005007019 +22593 n41007005005 n41007005008 +22603 n41007005005 n41007005008 +22625 n41007005005 n41007005008 +22636 n41007011012 +22642 n41007011006 +22646 n41007011006 +22661 n41007005005 n41007005008 +n41007013007 +22675 n41007014005 +22677 n41006030007 +n41007014005 +22688 n41007015005 +n41007015005 +22692 n41007015005 +22713 n41006030007 +22716 n41006030007 +22721 n41007017012 +22724 n41007017012 +22739 n41007018018 +22745 n41007018018 +22769 n41007020008 +22799 n41007021013 n41007021014 n41007021015 n41007022001 n41007022002 n41007022003 n41007022004 n41007022005 n41007022006 n41007022008 n41007022009 n41007022010 +22809 n41006053008 +22831 n41006030007 +22833 n41007025004 +22836 n41007025004 +22845 n41006030007 +22856 n41006030007 +22864 n41007026003 +22867 n41007026003 +22887 n41007026003 +22891 n41006030007 +22908 n41007026003 +22910 n41007028014 +22918 n41007026003 +22926 n41007026003 +22960 n41006030007 +22966 n41006030007 +22969 n41007032004 +22974 n41007032004 +22979 n41006030007 n41007032004 +22983 n41006030007 +22987 n41007032004 +22993 n41007032004 +23002 n41007032004 +23004 n41007034010 +23009 n41007032004 +23019 n41007032004 +23069 n41008001016 +23079 n41006030007 +23088 n41008002004 +23092 n41008002004 +23099 n41008002004 +23105 n41006030007 +23108 n41006030007 +23113 n41008002004 +n41008004016 +23121 n41008004005 +23126 n41008004005 +23148 n41006030007 +23161 n41008007003 +23164 n41008007003 +23182 n41008006026 +23192 n41006030007 +23205 n41006030007 +23208 n41006030007 +23214 n41006030007 +23219 n41006030007 +23229 n41008011004 +23238 n41008011004 +23257 n41008010009 +23263 n41008010009 +23279 n41008010009 +23287 n41008010009 +23302 n41008010009 +23329 n41006030007 +23347 n41008010009 +23356 n41006030007 +23360 n41006030007 +23362 n41008022008 +23371 n41008023006 +23380 n41008023006 +23384 n41008023006 +23386 n41008023006 +23409 n41008023006 +23420 n41008023006 +23423 n41008023006 +23437 n41008027004 +23451 n41008027004 +23453 n41008027021 +23455 n41008027004 +23461 n41008027021 +23463 n41008027004 +23479 n41008027004 +23481 n41008027021 +23483 n41008027021 +23485 n41008027004 +23492 n41008027004 +n41008027004 +23499 n41008027021 +23504 n41008027004 +23508 n41008027021 +23544 n41008027004 +23547 n41008027004 +23549 n41008027004 +23555 n41008027004 +23562 n41008027004 +23581 n41008027004 +23583 n41008034007 n41008034004 +23588 n41008027004 +23591 n41008034012 +23596 n41008034012 +23599 n41008027004 +23606 n41008035001 +23609 n41008035006 +23616 n41008035011 +23618 n41008027004 +23623 n41008035016 +23636 n41008036004 +23644 n41008037004 +23649 n41008027004 +23652 n41008027004 +23668 n41008038004 +23676 n41008038020 +23684 n41008034007 n41008034004 +23687 n41008034007 n41008034004 +23694 n41009001009 +23725 n41009002009 n41009002012 n41009002014 +23730 n41009002007 n41009002009 n41009002012 n41009002014 +23735 n41009002009 n41009002012 n41009002014 +23739 n41009002007 +23744 n41009003007 +23755 n41009002007 n41009002009 n41009002012 n41009002014 +23774 n41009005008 n41009005004 n41009002012 n41009002014 n41009004004 n41009004006 +23781 n41009005008 +23801 n41009005007 n41009005004 n41009002012 n41009002014 n41009004004 n41009004006 +23808 n41009005007 +23812 n41009007008 +23816 n41009005007 +23828 n41009005004 n41009002012 n41009002014 +23831 n41009008009 n41009005004 n41009002012 n41009002014 +23836 n41009005004 n41009002012 n41009002014 +23857 n41009005004 n41009002012 n41009002014 +23867 n41009008009 +23879 n41009008009 +23881 n41009005004 n41009002012 n41009002014 +23903 n41009005004 n41009002012 n41009002014 +23910 n41009013006 +23916 n41009013006 +23926 n41009014005 +23931 n41009014005 +23938 n41009008009 +23943 n41009008009 +23946 n41009014005 +23950 n41009014012 +23953 n41009008009 +23962 n41009017004 +23964 n41009017008 +23971 n41009017011 +23974 n41009017011 +23987 n41009008009 +23989 n41009017016 +23995 n41009008009 +23997 n41009017007 +24005 n41009019007 +24010 n41009019007 +24012 n41009017011 +24014 n41009008009 +24017 n41009017011 +24019 n41009008009 +24022 n41009008009 +24027 n41009017011 +24039 n41009017011 +24046 n41009017011 +24048 n41009021004 +24057 n41009017011 +24064 n41009017011 +24070 n41009017011 n41009021004 +24073 n41009017011 n41009021004 +24078 n41009021004 +24095 n41009024004 +24111 n41009025010 +24117 n41009025004 +24119 n41009025019 +24122 n41009024006 +24127 n41009024006 +24150 n41009024006 +24152 n41009024006 +24157 n41009027003 +24162 n41009027003 +24164 n41009027003 n41009028007 +24166 n41009027003 +24168 n41009028007 +24172 n41009025010 +24175 n41009028007 +n41009025010 +24203 n41009027003 +24206 n41009031004 +24218 n41009031011 +24226 n41009031004 +24232 n41009027003 +24244 n41009031004 +24251 n41009031004 +24255 n41009031004 +24269 n41009035005 +24285 n41009036003 +24288 n41009035005 +24291 n41009036003 +24293 n41009035005 +24304 n41009027003 +n41009027003 +24310 n41009027003 +24313 n41009027003 +24318 n41009027003 +24320 n41009027003 +24329 n41009038005 +24332 n41009038007 +24335 n41009035005 n41009038005 +24338 n41009038007 +24349 n41009038007 +24359 n41009039003 +24364 n41009039003 +24370 n41009039003 n41009035005 +24372 n41009039003 n41009035005 +24378 n41009035005 +24388 n41009035005 +24395 n41009041011 +24408 n41009042004 +24417 n41009042004 +24426 n41009035005 +24429 n41009035005 +24431 n41009043006 +24434 n41009035005 +24458 n41009035005 +24460 n41009035005 +24462 n41009045004 +24465 n41009035005 +24484 n41009035005 +24486 n41009035005 +24488 n41009047004 +24491 n41009047004 +24507 n41009047027 +24533 n41009050007 +24537 n41009035005 +24542 n41009035005 +24544 n41009033004 +24561 n41009039003 +24567 n41010001017 +24572 n41009039003 +24579 n41009039003 +24581 n41009039003 +24584 n41010002003 +24586 n41010002003 +24590 n41010002003 +24603 n41010002003 +24607 n41010002003 +24609 n41010002003 +24612 n41010004008 +24623 n41010006008 +24628 n41010007004 +24662 n41010002007 +24664 n41010005003 +24667 n41010010007 +24673 n41010011004 +24679 n41010011008 +24682 n41010011008 +24686 n41010011008 +24692 n41010005003 +24695 n41010013004 +24709 n41010013010 +24715 n41010014004 +24718 n41010014011 +24721 n41010014011 +24729 n41010013010 +24744 n41010015009 +24747 n41010014011 +24753 n41010014011 +24756 n41010014004 +24763 n41010014004 +24765 n41010014004 +24778 n41010017007 +24780 n41010018003 +24811 n41010017007 +24813 n41010018003 +24815 n41010019005 n41010019007 n41010019009 n41010019011 n41010019013 n41010019014 +24820 n41010017007 +24825 n41010017007 +24827 n41010017007 +24830 n41010017007 +24832 n41010017007 +24850 n41010021003 +24852 n41010017007 +24871 n41010023004 +24891 n41010023004 +24898 n41010024003 +24927 n41010024003 +24932 n41010024003 +24938 n41010024003 +24959 n41010027004 +24961 n41010024003 +24966 n41010027004 +24972 n41010024003 +24991 n41010029003 +25046 n41010024003 +25061 n41010032025 +25065 n41010032014 +25085 n41010033008 +25089 n41010033008 +25094 n41010033008 +25097 n41010033008 +25100 n41010033008 +25110 n41010032014 +25118 n41010032014 +25125 n41010035012 +25127 n41010035004 n41010035006 +25129 n41010032014 +25131 n41010035004 n41010035006 +25134 n41010032014 +25136 n41010035004 n41010035006 +25138 n41010035004 n41010035006 +25140 n41010032014 +25142 n41010035004 n41010035006 +25146 n41010032014 +25156 n41010032014 +25161 n41010035004 n41010035006 +25170 n41010038013 +n41010038003 +25176 n41010038019 +n41010038003 +25181 n41010035004 n41010035006 +25183 n41010038003 +25189 n41010035004 n41010035006 +25192 n41010039012 +n41010039008 +25199 n41010039019 +n41010039008 +25208 n41010039008 +25214 n41010039008 +25231 n41010032025 +25235 n41010032025 +25244 n41010042014 +25248 n41010042014 +25250 n41010042014 +25256 n41010032025 +25264 n41010032025 +25266 n41010032025 +25273 n41010032025 +25277 n41010032025 +25294 n41010045004 +25304 n41010042005 +25310 n41010042005 +25339 n41010046018 +25342 n41010046018 +25347 n41010046018 +25354 n41010046018 +25361 n41010046018 +25367 n41010049011 +25371 n41010049011 +25373 n41010049011 +25377 n41010049011 +25385 n41010049011 +25390 n41010049011 +25397 n41010051005 +25405 n41010051013 +25409 n41010051013 +25411 n41010051013 +25417 n41010052003 +25439 n41010052003 +25442 n41011001016 +25449 n41011001016 +25454 n41011002007 +25459 n41011002017 +25465 n41011002017 +25471 n41011001016 +25475 n41011002025 n41011002028 +25478 n41011002017 +n41011002017 +25484 n41011002017 +25502 n41011004005 +25506 n41011004012 +25509 n41011001016 +25516 n41011001016 +25518 n41011005002 +25525 n41011001016 +25535 n41011007004 +25538 n41011001016 +25542 n41011007004 +25547 n41011008002 +25579 n41011009003 n41011009006 +25610 n41011007007 n41011011021 +25627 n41011013003 +25631 n41011013003 +25646 n41011013003 +25652 n41011013003 +25660 n41011007007 +25707 n41011015024 n41011015029 +25713 n41011009014 +25723 n41011017010 +25736 n41011007007 +25740 n41011007007 +25749 n41011007007 +25772 n41011007007 +25777 n41011021010 +25785 n41011014017 +25791 n41011014017 +25811 n41011023005 +25819 n41011023007 +25823 n41011014017 +25834 n41011014017 +25849 n41011014017 +25855 n41011014017 +25858 n41011014017 +25869 n41011022004 +25872 n41011022004 +25883 n41011022004 +25891 n41011022004 +25903 n41011027016 n41011027019 n41011027022 +25905 n41011027016 n41011027019 n41011027022 +25910 n41011029003 +25913 n41011027016 n41011027019 n41011027022 +25930 n41011029003 +25934 n41011027016 n41011027019 n41011027022 +25946 n41011030004 +25955 n41011032007 +25974 n41011027016 n41011027019 n41011027022 +25976 n41011033010 +25978 n41011027016 n41011027019 n41011027022 +25986 n41011027016 n41011027019 n41011027022 +26004 n41012001007 +26028 n41012002008 +26037 n41012002012 +26040 n41012004007 +26047 n41012005002 +26064 n41012006004 +26067 n41012002012 +26073 n41012001008 +26075 n41012002012 +26079 n41012007004 +26082 n41012006004 +26088 n41012006004 +26090 n41012007004 +26097 n41012006004 +26100 n41012006004 +26123 n41012010014 n41012011002 n41012011007 +26126 n41012010006 +26130 n41012010006 +26138 n41012010012 +26147 n41011033010 +26157 n41011027016 n41011027019 n41011027022 +26163 n41011033010 +26168 n41011033010 +26176 n41011033010 +26182 n41011033010 +26191 n41012014005 +26219 n41011033010 +26221 n41012013005 +26225 n41012013005 +26227 n41011033010 +26230 n41011033010 +26235 n41012013005 +26239 n41012013005 +26248 n41012013005 +26250 n41011033010 +26256 n41012013005 +26270 n41012017003 +26274 n41012017003 +26276 n41012018003 +26283 n41012017003 +26288 n41012018003 +26305 n41012019008 +26313 n41012019020 +26331 n41012020008 +26359 n41012023012 +26366 n41012022011 +26369 n41012018003 +26374 n41012024010 n41012024015 +26418 n41012026012 +26422 n41012026020 +26446 n41012024004 n41012018003 +26452 n41012018003 +26454 n41012024004 +26464 n41012028018 +26471 n41012026012 n41012029008 +26480 n41012029008 +26485 n41012029008 +26491 n41012029008 +26497 n41012029008 +26503 n41012029008 +26513 n41012030002 n41012031003 +26520 n41012029003 +26536 n41012030003 +26540 n41012030003 +26573 n41012032005 +26578 n41012032005 +26591 n41012034003 +26612 n41012036002 +26624 n41012036002 +26628 n41012036010 +26634 n41012036012 +26638 n41012036012 +n41012037002 +26642 n41012035016 +26646 n41012037002 +26654 n41012035004 +26660 n41012035004 +26696 n41012040002 +26727 n41012042007 +26734 n41012035004 +26736 n41012043004 +26739 n41012043004 +26743 n41012042004 +26755 n41012043021 +26759 n41012044001 +26762 n41012043013 +26766 n41012043013 +26774 n41012043013 +26777 n41012035004 +26782 n41012035004 +26786 n41012035004 +26798 n41013001009 +26800 n41013001019 +26810 n41013002014 +26816 n41013002003 +26826 n41013002003 +26828 n41013002003 n41013003016 n41013003018 n41013003020 n41013003022 +26837 n41013003016 n41013003018 n41013003020 n41013003022 +26839 n41013002013 +26847 n41013002013 +26855 n41013003016 n41013003018 n41013003020 n41013003022 +26859 n41013003016 n41013003018 n41013003020 n41013003022 +26866 n41013005003 +26869 n41013006001 +26906 n41013008001 n41013008007 n41013008013 n41013008015 +26909 n41013003016 n41013003018 n41013003020 n41013003022 +n41013003016 n41013003018 n41013003020 n41013003022 +26912 n41013003016 n41013003018 n41013003020 n41013003022 +26926 n41013005003 +26943 n41013003016 n41013003018 n41013003020 n41013003022 +26953 n41013003016 n41013003018 n41013003020 n41013003022 +26958 n41013011013 +26963 n41013003016 n41013003018 n41013003020 n41013003022 +26987 n41013012014 +26996 n41013005003 +27002 n41013013012 +27040 n41013015001 +27054 n41013016002 +27080 n41013019006 +27083 n41013019007 +27087 n41013019013 +27114 n41013020016 +27123 n41013003016 n41013003018 n41013003020 n41013003022 +27151 n41013003016 n41013003018 n41013003020 n41013003022 +27154 n41013003016 n41013003018 n41013003020 n41013003022 +27164 n41013019006 +27175 n41013024015 +27216 n41013026005 +27238 n41013028004 +27253 n41013003016 n41013003018 n41013003020 n41013003022 +27266 n41013003016 n41013003018 n41013003020 n41013003022 +27288 n41013005003 +27328 n41013034002 +27333 n41013034002 +27336 n41013034011 +27339 n41013034015 +27369 n41013003016 n41013003018 n41013003020 n41013003022 +27373 n41013003016 n41013003018 n41013003020 n41013003022 +27396 n41013005003 +27415 n41013005003 +27425 n41013005003 +27438 n41013005003 +27446 n41014004003 +27457 n41014004013 +27470 n41014003015 +27476 n41014003015 +27478 n41014003015 +27485 n41014006003 +27492 n41014004003 +27497 n41014007004 +27501 n41014006003 +27512 n41014006003 +27519 n41014004003 +27532 n41014003015 +27536 n41014003015 +27549 n41014006003 +27551 n41014010011 +27553 n41014010011 +27558 n41014010002 +27564 n41014006003 +27578 n41014006003 +27581 n41014006003 +27595 n41014006003 +27598 n41014013003 +27605 n41014013003 +27611 n41014013017 +27627 n41014014010 +n41014014015 +27634 n41014014010 +27637 n41014014007 +n41014013003 +27645 n41014015005 +27647 n41014006003 n41014013005 +27661 n41014016004 +27674 n41014006003 n41014017007 +27683 n41014017007 +27686 n41014018007 +27689 n41014017007 +27693 n41014018007 +27698 n41014018007 +27703 n41014017007 +27705 n41014018007 +27707 n41014017007 +27714 n41014018007 +27728 n41014021004 +27733 n41014020005 +27735 n41014021015 +27742 n41014021030 +27748 n41014021015 +27751 n41014018007 n41014020007 +27758 n41014020007 +27762 n41014022005 +27766 n41014018007 +27772 n41014020007 +27776 n41014023003 +n41014020007 +27780 n41014020007 +n41014023003 +27785 n41014018007 +27794 n41014020007 +27810 n41014025011 +27828 n41014020007 +27832 n41014020007 +27847 n41014027005 +27849 n41014020007 +27857 n41014027005 +27864 n41014029003 +27867 n41014029003 +27872 n41014029003 +27874 n41014029003 +27885 n41014030005 +27888 n41014029003 +27893 n41014029003 +27895 n41014030005 +27898 n41014030005 +27903 n41014020007 +27909 n41014032004 +27917 n41014030005 +27933 n41014030005 +27941 n41014033004 n41014033007 n41014033010 +27946 n41014030005 +27968 n41014030005 +27978 n41014036003 +27984 n41014030005 +27988 n41014030005 +27992 n41014036003 +27997 n41014033004 n41014033007 n41014033010 +28031 n41014039007 +28038 n41014037010 n41014033007 n41014033010 +28043 n41014037010 n41014033007 n41014033010 +28051 n41014030005 +28058 n41014037010 n41014033007 n41014033010 +28084 n41014030005 +28089 n41014030005 +28099 n41014043008 +28118 n41014030005 +28120 n41014043014 +28125 n41014030005 +28128 n41014044011 +28136 n41014030005 +28141 n41014030005 +28143 n41014043014 +28147 n41014030005 +28150 n41014030005 +28166 n41014047011 +28174 n41014043014 +28184 n41014048004 +28189 n41014043014 +28197 n41014048004 +28205 n41014048004 +28207 n41014032012 +28212 n41014048004 +28219 n41014051002 +28221 n41014051002 +28251 n41014053004 +28285 n41014055011 +28293 n41014055011 +28305 n41014055011 +28308 n41014057002 +28310 n41014055011 +28313 n41014055011 +28334 n41014057002 +28349 n41014057002 +n41014060009 +28353 n41014060009 +28363 n41014060009 +28366 n41014060009 +n41014060009 +28379 n41014062003 +28405 n41014063003 +28416 n41014055003 n41014055007 +28420 n41014055003 n41014055007 +28422 n41014062003 +28430 n41014062003 +28433 n41014062003 +28438 n41014062003 +28441 n41014062003 +28447 n41014062003 +28469 n41014067004 +28472 n41014067004 +28480 n41014067004 +28487 n41014066010 +28500 n41014067004 +28507 n41014067004 +28509 n41014067013 n41014032012 +28512 n41014067004 +28526 n41014067013 n41014032012 +28533 n41014070013 +28543 n41014067013 +n41014071011 +28560 n41014072010 +28569 n41014072017 +28599 n41015001019 +28602 n41015001019 +28609 n41015001019 +28611 n41015002005 +28613 n41015002005 +28617 n41015001019 +28626 n41015001019 +28633 n41015001019 +28652 n41015006007 +28663 n41015007008 +28677 n41015008004 +28682 n41015008004 +28686 n41015008004 +28697 n41015005003 +28711 n41015011006 +28718 n41015011006 +28722 n41015005003 +28729 n41015011006 +28733 n41015012013 +28738 n41015011006 +28744 n41015011006 +28748 n41015012013 +28759 n41015015006 +28773 n41015015017 +28777 n41015016008 +28787 n41015015017 +28791 n41015015017 +28798 n41015015017 +28805 n41015015017 +28811 n41015015017 +28817 n41015015017 +28821 n41015015017 +28823 n41015015017 +28828 n41015015017 +28831 n41015015017 +28834 n41015015017 +28837 n41015015017 +28856 n41015015017 +28859 n41015015017 +28864 n41015022006 +28871 n41015015017 +28875 n41015015017 +28880 n41015015017 +28885 n41015015017 +28889 n41015024007 +28899 n41015015017 +28907 n41015015017 +28914 n41015015017 +28925 n41015015017 +28930 n41015015017 +28934 n41015029003 +28948 n41015029014 +28959 n41015031004 +28966 n41015015017 +28988 n41015015017 +28990 n41015015017 +29017 n41015034013 +29022 n41015034007 +29025 n41015034007 +29029 n41015034007 +29049 n41015034007 +29057 n41015034007 +29084 n41015037003 +29091 n41015037003 +29105 n41015040004 +29121 n41015040011 n41015040015 n41015040024 +29128 n41015037003 +29131 n41015037003 +29137 n41015037003 +29147 n41015042007 +29157 n41015043002 +29159 n41015043002 +29189 n41015044011 +29207 n41015043027 +29213 n41015043027 +29216 n41015046013 +29260 n41015043027 +29278 n41016001005 n41016001009 n41016001014 +29281 n41016001005 n41016001009 n41016001014 +29317 n41016005007 +29319 n41016001005 n41016001009 n41016001014 +29331 n41016005005 +29335 n41016006019 +29337 n41016006007 +29343 n41015043027 +29349 n41016007005 n41016007009 +29353 n41016007015 +n41015043027 +29358 n41016007005 n41016007009 +29367 n41016001005 n41016001009 n41016001014 +29388 n41016009008 +29392 n41016009008 +29397 n41015043027 +29402 n41016010006 +29409 n41016009008 +29416 n41016007005 +29425 n41016012004 +29429 n41016007005 +29431 n41016012004 +29436 n41016014006 +29444 n41016014006 +29450 n41015043027 +29456 n41016014006 +29479 n41016017012 n41016017014 n41016018006 n41016018014 n41016018018 +29486 n41015043027 +29500 n41016017004 +29517 n41016014006 +29529 n41016014006 +29607 n42001003011 +29614 n42001004006 +29636 n42001005009 +29644 n42001005017 +29649 n42001005009 n42001005017 +29666 n42001005009 n42001005017 +29674 n42001005009 n42001007009 +29680 n42001005009 n42001007009 +29686 n42001005009 +29692 n42001005009 +29725 n42001005009 +29743 n42001012003 +29747 n42001012003 +29757 n42001013009 +29761 n42001013009 +29765 n42001013009 +29770 n42001013021 +29774 n42001013009 +29783 n42001013021 +29805 n42001013021 +29816 n42001016002 +29818 n42001013021 +29821 n42001016008 +29852 n42001018003 +29858 n42001018003 +29863 n42001018017 +29869 n42001018003 +n42001019004 +29882 n42001018003 +29885 n42001018003 +29906 n42001019004 +n42001020019 +29912 n42001020019 +29928 n42001021007 +29934 n42001021004 +29944 n42001021007 +29947 n42001021004 +29959 n42001021007 +29964 n42001021007 +29967 n42001023006 +29974 n42001021007 +29977 n42001024007 +29983 n42001024007 +29988 n42001025007 +29992 n42001024007 +30012 n42001026015 +30019 n42001027004 +30034 n42001027015 +30041 n42001028007 +30043 n42001027015 +30054 n42001028006 +30059 n42001027015 +30081 n42001031008 +30083 n42001031008 +30092 n42001031008 +30101 n42001031008 +30114 n42001031008 +30126 n42001031003 n42001031007 +30136 n42001034003 +30141 n42001034003 +30146 n42001034003 +30160 n42001034003 +30162 n42001036003 +30167 n42001036003 +30169 n42001036010 +30173 n42001036003 +30193 n42001038003 +30197 n42001034006 +30201 n42001038003 +30246 n42001041010 +30260 n42001041008 +30269 n42001041008 +30272 n42001041023 +n42001043006 +30280 n42001041023 +30282 n42001041023 +30291 n42001041008 +30295 n42001041023 +30304 n42001041023 +30314 n42001041008 +30323 n42001046003 +30330 n42001046003 +30336 n42001046003 +30344 n42001047008 +30351 n42001046003 +30357 n42001046003 +30365 n42001049006 +30369 n42001049006 +30376 n42001049006 +30381 n42001049006 +30386 n42001051007 +30404 n42001049006 +30412 n42001055008 +30421 n42001046003 n42001041023 n42001040006 n42001054002 +30426 n42001041023 +30435 n42001056003 +30444 n42001057003 +30455 n42001057003 +30461 n42001058011 +30463 n42001057003 +30466 n42001057003 +30480 n42001059011 +30486 n42001059011 +30492 n42001059011 +30501 n42001060004 +30507 n42001060004 +30509 n42001061006 +30513 n42001060010 +30518 n42001059011 +30524 n42001059011 +30533 n42001059011 +30536 n42001058004 n42001058007 +30541 n42001062004 +30546 n42001062004 +30559 n42001062004 n42001060004 n42001059011 +30580 n42001066005 +30586 n42001059011 +30594 n42001066014 +30599 n42001059011 +30619 n42001068002 +30624 n42001067002 n42001060004 n42001059011 n42001068013 +30629 n42001068002 +30639 n42001068002 +30643 n42001067002 n42001060004 n42001059011 n42001068013 +30650 n42001067002 n42001060004 n42001059011 n42001068013 +30656 n42001067002 n42001060004 n42001059011 n42001068013 +30661 n42001068002 +30663 n42001073001 +30669 n42001067002 n42001060004 n42001059011 n42001068013 +30672 n42001067002 n42001060004 n42001059011 n42001068013 +30679 n42001068002 +30685 n42001068002 +30689 n42001067002 n42001060004 n42001059011 n42001068013 +30693 n42001076004 +30703 n42001076011 +30710 n42001076011 +30714 n42001077006 +30719 n42001067002 n42001060004 n42001076004 n42001077006 +30721 n42001078002 +30723 n42001067002 n42001060004 n42001076004 n42001077006 +30739 n42001067002 n42001060004 n42001076004 n42001077006 +30758 n42001080003 +30777 n42002001012 +30789 n42002003003 +30792 n42002003005 +30810 n42002004015 +30816 n42002004004 +30827 n42002004004 +30835 n42002004004 n42002005003 +n42002004015 +30842 n42002005003 +30847 n42002005003 +30852 n42002007004 +30855 n42002007004 +30861 n42002004004 n42002005003 n42002007004 +30873 n42002008006 +30883 n42002008002 +30888 n42002008002 +30893 n42002008002 +30900 n42002008002 +30908 n42002008002 +30911 n42002010012 +30918 n42002008002 +30921 n42002011005 +30929 n42002012006 +n42002008002 +30969 n42002008002 +30979 n42002015013 +30991 n42002015024 +30995 n42002015013 +31022 n42002015013 +31026 n42002016014 +31039 n42002018004 +31047 n42002019007 +31052 n42002019003 +31071 n42002020004 +31079 n42002017012 +31084 n42002017012 +31094 n42002017012 +31105 n42002016011 n42002019003 +31111 n42002017012 +31154 n42002025003 +31160 n42002025003 +31173 n42002025012 +31177 n42002025012 +31212 n42002027014 +31219 n42002027016 +31221 n42002025012 +31223 n42002027016 +31238 n42002029006 +31242 n42002029006 +31249 n42002029004 +31252 n42002029006 +n42002030007 +31267 n42002029006 +31274 n42002027016 +31282 n42002027016 +31285 n42002033004 n42002033008 +31293 n42002027016 +31295 n42002027016 +31311 n42002034008 +n42002034008 +31333 n42002036003 +31346 n42002036003 +31348 n42002036003 +31354 n42002036003 +31377 n42002027016 +31398 n42002033004 n42002034008 +31413 n42002040003 +31418 n42002040003 +31433 n42002041004 n42002040003 +31446 n42002041004 +31458 n42002043010 +31461 n42002043010 +31471 n42002043010 +31485 n42002043010 +31492 n42002043010 +31503 n42002046015 +31506 n42002046015 +31512 n42002043010 +31519 n42002043010 +31522 n42002043010 +31527 n42002043010 +31530 n42002043010 +31534 n42002033004 n42002048010 +31539 n42002048012 +n42002048010 +31543 n42002048012 +31547 n42002048019 n42002048010 +31551 n42002043010 +31559 n42002043010 +31561 n42002043010 +31564 n42002048019 n42002048010 +31569 n42002050006 +31571 n42002048019 n42002048010 +31575 n42002048019 n42002048010 +31583 n42002048019 n42002048010 +31587 n42002043010 +31595 n42002051015 +31632 n42003001018 +31695 n42003004017 +31731 n42003002010 +31737 n42003007009 +31754 n42003007009 +31761 n42003007009 +31799 n42003002010 +31809 n42003010005 +31832 n42003002010 +31837 n42003002010 +31840 n42003012004 +31846 n42003012004 +31850 n42003002010 +31857 n42003014005 +31860 n42003014005 +31869 n42003014005 +31876 n42003015004 +31880 n42003015007 +31886 n42003015014 +31892 n42003015004 +31896 n42003016005 +31899 n42003016003 +31904 n42003016005 +n42003016014 +31914 n42003016014 +n42003016014 +n42003016003 +31923 n42003016014 +31929 n42003016014 +31933 n42003016014 +31941 n42003016014 +31964 n42003016005 +31971 n42003019003 +31982 n42003020007 +31984 n42003019021 +32017 n42003021010 +32023 n42003021010 +32027 n42003022014 +32031 n42003021010 +32034 n42003023004 +32228 n42004002001 +32231 n42004002013 +32235 n42004001001 +32253 n42004003005 +32267 n42004004006 +32269 n42004004006 +32280 n42004004006 +32283 n42004004006 +32292 n42004005008 +32294 n42004006005 +32301 n42004006009 n42004006014 +32304 n42004004006 +32307 n42004006005 +32309 n42004004006 +n42004006009 n42004006014 +32316 n42004006005 +32324 n42004008009 +32329 n42004008004 +32341 n42004008004 +32348 n42004008004 +n42004009010 +32356 n42004009020 +32380 n42004006005 +32399 n42004012006 +32422 n42004014004 +32424 n42004014004 +32429 n42004014012 +32437 n42004016004 +32445 n42004014004 +32459 n42004014004 +32471 n42004017014 +32517 n42004014004 +32522 n42004020010 +32528 n42004018004 n42004018007 n42004018011 +32532 n42004020010 +32536 n42004014004 +32549 n42004014004 +32556 n42004014004 +32560 n42004022002 +32563 n42004014004 +32566 n42004023012 n42004023020 +32569 n42004023011 +32578 n42004016004 +32582 n42004023011 +32587 n42004022002 +32596 n42004024008 +32601 n42004022002 +32633 n42004025007 +32658 n42004027003 +32677 n42004014004 +32683 n42004014004 +32689 n42004029014 +32692 n42004028003 +32696 n42004014004 +32698 n42004014004 +32702 n42004028003 +32723 n42004014004 +32730 n42004014004 +32747 n42004036023 +32749 n42004034006 +32754 n42004036023 +32756 n42004034006 +32765 n42004033009 +32773 n42004033006 +32778 n42004033006 +32784 n42004033006 +32787 n42004033006 +32796 n42004036005 +32801 n42004035007 n42004035009 +32817 n42004035005 +32843 n42004035005 +32845 n42004038011 +32849 n42004038011 +32855 n42004038011 +32872 n42004040008 +32874 n42004035005 +32876 n42004035005 +32879 n42004040008 +32884 n42004040008 +32895 n42004035005 +32905 n42004041004 +32911 n42004035005 +32925 n42004035005 +32929 n42004035005 +32932 n42004035005 +32937 n42004042011 +32939 n42004035005 +32942 n42004042011 +32949 n42004035005 +32957 n42004043011 +32974 n42004035005 +32982 n42004035005 +33001 n42005002004 +33012 n42005003004 +33016 n42005003009 +33046 n42005004008 +33064 n42005005005 +33069 n42005004009 n42005004014 +33079 n42005005003 +33091 n42005005003 +33101 n42005007019 +33113 n42005008003 +33122 n42005008003 +33127 n42005008003 +33133 n42005009012 +33143 n42005010004 n42005010006 +33173 n42005010020 +33179 n42005010020 +33197 n42005012019 +33203 n42005012013 +33210 n42005012013 +33220 n42005012013 +33222 n42005012019 +33224 n42005012013 +33230 n42005012013 +33238 n42005012013 +33251 n42005012019 +33262 n42005015010 +33264 n42005012019 +33279 n42005012019 +33288 n42005017014 n42005017016 +33307 n42005012019 +33315 n42005018007 +33320 n42005018007 +33325 n42005012019 +33331 n42005018007 +33343 n42005018007 +33357 n42005018003 n42005018007 +33361 n42005020007 +33364 n42005020007 +33376 n42005019027 +n42005019027 +33395 n42005021005 n42005021008 +33399 n42005021005 n42005021008 +33405 n42005021005 n42005021008 +33411 n42005018007 +33414 n42005018007 +33438 n42005024018 +33445 n42005024018 +33450 n42005024018 +33455 n42005019009 +33464 n42005024018 +33471 n42005019009 +33499 n42005027007 +33501 n42005022004 +33507 n42005022004 +33513 n42005022004 +33517 n42005029005 +33525 n42005029015 n42005029017 +33529 n42005022004 n42005029005 n42005010018 n42005010004 n42005010006 +33537 n42005030004 +33541 n42005022004 +33559 n42005030004 n42005030007 +33579 n42005030004 n42005030007 +33582 n42005031004 +33598 n42005031004 +33603 n42005031004 +33607 n42005030004 n42005030007 +33619 n42005034010 +33630 n42005034010 +33644 n42005030004 n42005030007 +33693 n42005037014 +33723 n42005031004 +33732 n42005031004 +33753 n42006002001 +33759 n42006004002 +n42006004002 +33765 n42006003013 +33769 n42006003013 +33789 n42006003013 +n42006004010 +33801 n42006002001 +33816 n42006003007 +33825 n42006006010 +33829 n42006006015 +33836 n42006003007 +33850 n42006003007 +33852 n42006003007 +33856 n42006007005 n42006007008 +33880 n42006007005 n42006007008 +33882 n42006007005 n42006007008 +33897 n42006007005 n42006007008 +33899 n42006008010 +33903 n42006008010 +33905 n42006008010 +33911 n42006008010 +33913 n42006007005 n42006007008 +33919 n42006007005 n42006007008 +33932 n42006011013 +33952 n42006011013 +33956 n42006013007 +33958 n42006013013 +33963 n42006014001 +33971 n42006014001 +33998 n42006016005 +34004 n42006013013 +34013 n42006011013 +34031 n42006017015 +34034 n42006011013 +34040 n42006017015 +34054 n42006011013 +34058 n42006011013 +34062 n42006019004 +34064 n42006011013 +34068 n42006011013 +34072 n42006011013 +34076 n42006020009 +34078 n42006020014 +34100 n42006020009 +34106 n42006020009 +34113 n42006020009 +34132 n42006020009 +34140 n42006022004 n42006022010 n42006022013 n42006022015 +34146 n42006022007 +34149 n42006024005 +34156 n42006024005 +34158 n42006025004 +34175 n42006020009 +34183 n42006026005 +34189 n42006026008 +34192 n42006020009 +34198 n42006027005 +34203 n42006027005 +34207 n42006027005 +34212 n42006027005 +34215 n42006027005 +34222 n42006029006 +34227 n42006027005 +34237 n42006027005 +34244 n42006027005 +34252 n42006027005 +34256 n42006031008 +34263 n42006027005 +34266 n42006027005 +34274 n42006032014 +34282 n42006027005 +34285 n42006027005 +34291 n42006033004 +34302 n42006027005 +34316 n42006027005 +34327 n42006027005 +34334 n42006035021 +34347 n42006027005 +34370 n42006027005 +34380 n42006027005 +34386 n42006027005 +34391 n42006020009 +34398 n42006039008 n42006039009 +34415 n42006040007 +34427 n42006020009 +34434 n42006020009 +34443 n42006020009 +34453 n42006042007 +n42006020009 +34459 n42006020009 +34471 n42006042026 +34483 n42006042026 +34505 n42006044003 +34550 n42006011013 +34563 n42006011013 +34566 n42006011013 +34571 n42006047010 +34573 n42006042026 +34582 n42006048003 +34600 n42006048005 +34605 n42006048023 +34610 n42006048023 +34627 n42006049011 +34640 n42006049011 +34647 n42006011013 +34664 n42007002004 +34666 n42007002001 +34675 n42007003005 +34680 n42007003005 +34686 n42007002001 +34688 n42007003009 +34694 n42007004006 +34700 n42007002001 +34702 n42007003016 +34707 n42007003009 n42007004006 +34711 n42007002001 +34713 n42007003009 +34719 n42007003009 +34722 n42007006003 +34734 n42007006003 +34746 n42007006019 +34750 n42007006019 +34753 n42007006022 +34762 n42007006019 +34765 n42007006019 +34773 n42007006019 +34789 n42007006019 +34800 n42007006019 +34805 n42007009005 +34809 n42007009013 +34840 n42007009005 +34843 n42007009005 +34862 n42007012013 +34864 n42007012015 +34874 n42007012015 +34877 n42007012015 +34882 n42007012015 +34885 n42007012015 +34900 n42007014012 +34912 n42007015004 +34915 n42007015004 +34930 n42007016004 +34938 n42007016020 +34945 n42007013005 +34959 n42007018003 +34969 n42007018018 +34977 n42007019004 +34987 n42007019004 +34995 n42007020006 +34997 n42007019004 +34999 n42007019004 +35027 n42007020006 +35056 n42007019004 +35107 n42007024010 +35111 n42007024012 +35120 n42007016020 +35123 n42007019004 +n42007027009 +35128 n42007019004 +35130 n42007019004 +35132 n42007024010 +35149 n42007028007 +35178 n42007030003 n42007030006 +35182 n42007029015 +35204 n42007032003 +n42007032003 +35208 n42007032003 +35258 n42007035004 +35264 n42007019004 +35268 n42007036003 +35280 n42007037003 +35304 n42007019004 +35312 n42007019004 +35318 n42007037003 +35324 n42007019004 +35335 n42007019004 +35338 n42007039004 +35341 n42007019004 +35351 n42007039022 +35353 n42007019004 +35363 n42007039004 +35366 n42007040008 +35370 n42007039004 +35390 n42007041002 +35392 n42007041002 +35396 n42007041002 +35399 n42007041004 +35405 n42007041007 +35410 n42007040004 +35412 n42007043002 +35424 n42007044005 +35429 n42007044007 +35433 n42007040004 +35439 n42007044012 +35443 n42007040004 +35449 n42007044012 +35452 n42007040004 +35456 n42007044012 +35463 n42007040004 +35469 n42007040004 +35473 n42007044012 +35478 n42007040004 +35482 n42007044007 +35486 n42007044012 +35500 n42007044005 +35502 n42007044005 +35511 n42007049004 +35513 n42007040004 +35515 n42007040004 +35526 n42007050005 +35528 n42007050005 +35538 n42007040004 +35553 n42007040004 +35559 n42008002002 +35572 n42008002012 +35587 n42008003010 +35589 n42007040004 n42008001022 +35593 n42008003010 +35604 n42007040004 +35615 n42008005003 +35620 n42008005003 +35635 n42008005014 +35662 n42008007002 +35686 n42007040004 +35689 n42007040004 +35692 n42008004014 +35696 n42007040004 +35698 n42008009005 +35751 n42008012001 +35770 n42008013001 +35774 n42008013001 +35789 n42008014006 +35813 n42008015001 +35834 n42008016003 +35854 n42008017004 +35860 n42008017010 +35877 n42008018008 +35889 n42008018015 +35893 n42007040004 +35899 n42007040004 +35904 n42007040004 +35910 n42007040004 +35913 n42007040004 +35917 n42007040004 +35921 n42007040004 +35924 n42007040004 +35930 n42007040004 +35933 n42007040004 +n42008021007 n42008021010 +35951 n42007040004 +35958 n42007040004 +35962 n42008022014 +35973 n42008022014 n42007040004 +35989 n42007040004 +35995 n42007040004 +36012 n42008022014 +36016 n42008022014 +36022 n42008022014 +36025 n42007040004 +36037 n42007040004 +36045 n42008026005 +36051 n42007040004 +36085 n42008028004 +36091 n42008029004 +36093 n42008028016 +36101 n42008028016 +36103 n42008029004 +36119 n42008029010 +36139 n42008029029 +36143 n42008029029 +36147 n42008029029 +36155 n42008029010 +36158 n42008030005 +36162 n42008030016 +36179 n42008030005 +36182 n42008030016 +36184 n42008032004 +36188 n42008030016 +36244 n42008035015 +36276 n42008035028 +36279 n42008037006 +36285 n42008035028 +36292 n42008035028 +36296 n42008038005 +36302 n42008035028 +36305 n42008038005 +36311 n42008038005 +36315 n42008038005 +36328 n42008038005 +36338 n42008040006 +36342 n42008040010 +36345 n42008040006 +36350 n42008041004 +36354 n42008041004 +36366 n42008041019 +36371 n42008041004 +36379 n42008041004 +36381 n42008042002 +36387 n42008041019 +36391 n42008041019 +36401 n42008043002 +36414 n42008041019 +36422 n42008043002 +36430 n42008045004 +36433 n42008042018 +36441 n42008045015 +36449 n42008046003 +36452 n42008046003 +36457 n42008046003 +36469 n42008046003 +36474 n42008046003 +36485 n42008046003 +36487 n42008047004 +36491 n42008048005 +36493 n42008048005 +36498 n42008046003 +36510 n42008049008 +36520 n42008049008 +36537 n42008050003 +36558 n42008051023 +36560 n42008050003 +36570 n42008050003 +36575 n42008050003 +36579 n42008051023 +36589 n42008051023 +36595 n42008051023 +36602 n42008051023 +36604 n42008050003 +36606 n42008051014 n42008051016 n42008051018 n42008056004 n42008051023 +36616 n42009001004 +36629 n42009001004 +36640 n42009001004 +36665 n42009004005 +36668 n42009004005 +36675 n42009001004 +36686 n42009001004 +36691 n42009005005 +36740 n42009009003 +36745 n42008050003 +36747 n42008050003 +36753 n42008050003 +36759 n42008050003 +36764 n42009010004 +36767 n42008050003 n42009010004 +36777 n42008050003 +36780 n42009011003 +36782 n42009011003 +36804 n42008050003 +36829 n42009012009 +36831 n42009012014 +36833 n42009012009 +36835 n42009012009 +36839 n42009012009 +36850 n42009012009 +36856 n42009012014 +36868 n42008050003 +36870 n42009011003 +36880 n42009011003 +36895 n42009016005 n42009016009 +36909 n42009016024 +36914 n42009017005 +36924 n42008050003 +36926 n42008050003 +36928 n42008050003 +36933 n42009018013 +36936 n42008050003 +36942 n42009018013 +36961 n42009018013 +36963 n42009018013 +36965 n42008050003 +36977 n42008050003 +36979 n42009018013 +36983 n42009020015 +37012 n42009018013 +37017 n42008050003 +37020 n42009023006 +37025 n42009023006 +37030 n42008050003 +37037 n42009024001 +37040 n42009024006 +37047 n42009024011 +37049 n42008050003 +n42009024014 +37052 n42009024016 +37062 n42009025004 +37070 n42008050003 +37073 n42008050003 +37075 n42009026004 +37086 n42009026012 +37096 n42009018013 +37103 n42009027006 +37141 n42008050003 +37146 n42008050003 +37151 n42008050003 +37159 n42008050003 +n42009030003 +37165 n42009030003 +37172 n42008050003 +n42009031007 +37184 n42009032003 +37193 n42008050003 +37200 n42008050003 +37206 n42009032020 +37208 n42008050003 +37218 n42009033011 n42009032005 n42009032020 n42009033015 +37226 n42009033015 +37238 n42009033016 n42009033022 +n42009033011 +37245 n42009033014 n42009033011 n42009032005 n42009032020 +37251 n42009033011 n42009032005 +37262 n42009033014 +37266 n42009035002 +37269 n42009033014 +37281 n42009033011 n42009032005 +37299 n42009036008 n42009033011 n42009032005 +37304 n42009036008 +37317 n42009038009 +37322 n42009038003 +37325 n42009038003 +37331 n42009038015 +37337 n42009038015 +37344 n42009038015 +37346 n42009038015 +37351 n42009036008 +37354 n42009039003 +37372 n42009041007 +37375 n42009041007 +37380 n42009038003 +37384 n42009041022 +37386 n42009041022 +37405 n42009042022 +37408 n42009042022 +37411 n42009038006 +37418 n42009038006 +37428 n42009042014 +37430 n42009043019 +37434 n42009043019 +37437 n42009044015 +37449 n42009043019 +37453 n42009044008 +37458 n42009043019 +37462 n42009045005 +37466 n42009042014 +37470 n42009045005 +37474 n42009043019 +37479 n42009043019 +37490 n42009043019 +37494 n42009047011 +37496 n42009047003 +37499 n42009043019 +37503 n42009047011 +37509 n42009047003 +n42009047003 +37515 n42009047003 +37520 n42009047003 +37526 n42009043019 +37528 n42009048027 +37542 n42009049006 +37547 n42009049008 +37556 n42009049004 +37565 n42009043019 +37567 n42009043019 +37578 n42009050005 +37580 n42009050005 +37593 n42009050005 +37602 n42009050005 +37606 n42009050005 +37610 n42009050005 +37633 n42009052011 +37637 n42009054004 +37645 n42009043019 n42009050005 +37652 n42009050005 +37654 n42009050005 +37660 n42009057008 +37689 n42009058005 +37691 n42009059004 +37694 n42009059004 +37700 n42009059004 +37703 n42009059004 +37709 n42009060006 +37712 n42009059004 +37724 n42009061007 +37729 n42009061004 +37735 n42009061004 +37739 n42009061004 +37769 n42010001007 +37774 n42010001006 +37780 n42010001021 +37782 n42010001006 +37787 n42010001007 +37808 n42010002016 +37812 n42010001007 +37842 n42010005006 +37845 n42010005011 +37851 n42010006005 +37854 n42010001007 +37859 n42010001007 +37863 n42010007005 +37872 n42010005011 +37879 n42010007016 +37894 n42010001007 +37898 n42010001007 +37903 n42010008005 +37907 n42010009006 +37910 n42010009006 +37924 n42010001007 +37929 n42010010005 +37936 n42010001007 +37947 n42010011020 +37956 n42010001007 +37968 n42010010005 +37970 n42010013003 +37973 n42010013006 +37987 n42010013003 n42010013006 +38006 n42010013003 n42010013006 +38010 n42010015003 +38020 n42010001007 +n42010001006 +38026 n42010001007 +n42010001006 +38031 n42010001006 +38036 n42010001006 +38049 n42010017004 +38053 n42010017008 +38056 n42010017004 +38068 n42010017004 +38086 n42010017004 +38092 n42010020010 +38098 n42010017004 +38105 n42010017004 +38111 n42010021004 +38122 n42010021014 +38139 n42010021023 +38149 n42010021035 +38151 n42010001006 +38156 n42010001006 +38190 n42010001006 n42010023005 +38201 n42010023005 +38210 n42010023005 +38228 n42010001006 +38237 n42010001006 +38240 n42010025003 +38249 n42010025003 +38288 n42010025003 +38291 n42010027005 n42010027035 +38296 n42010025003 +38299 n42010025003 +38307 n42010025003 +38323 n42010030013 +38326 n42010030005 +38342 n42010030009 +38345 n42010030005 +38364 n42010030005 +38373 n42010030005 +38380 n42010030005 +38383 n42010033001 +38386 n42010030005 +38391 n42010030005 +38405 n42010030005 +38409 n42010035017 +38411 n42010033001 +38415 n42010033001 +38417 n42010035010 +38419 n42010025003 +38421 n42010031004 n42010032004 n42010033001 +38432 n42010025003 +38439 n42010036010 +38442 n42010025003 +38447 n42010025003 +38454 n42010037014 n42010023005 +n42010037014 +38466 n42010037014 +38471 n42010038011 +38476 n42010039004 +38487 n42010039014 +38501 n42010040011 +38505 n42010040003 +38507 n42010040003 +38512 n42010040017 +38514 n42010040003 +38519 n42010040003 +38541 n42010042011 +38551 n42010041006 +38561 n42010041006 +38563 n42010041006 +38566 n42011001016 +38574 n42011001026 +38577 n42011001016 +38585 n42011002007 +38589 n42011002007 +38592 n42011001016 +38596 n42011001016 +38602 n42011001016 +38605 n42011001016 +38608 n42011001016 +38612 n42011001016 +38616 n42011001016 +38622 n42011001016 +38625 n42011001016 +38631 n42011005009 +38635 n42011005009 +38638 n42011005005 +38643 n42011005005 +38648 n42011005005 +38654 n42011006002 +n42011005009 +38660 n42011005009 +38670 n42011005009 +38672 n42011005009 +38681 n42011005005 +38683 n42011001016 +38688 n42011005005 +38694 n42011005009 +38699 n42011005005 +38702 n42011005005 +38705 n42010041006 +n42011001016 +38711 n42011001016 +38718 n42011001016 +38735 n42011001016 +38746 n42011011009 +38753 n42011011009 +38757 n42011001016 +38766 n42011001016 +38779 n42011013016 +38785 n42011014004 +38803 n42011014020 +38822 n42010041006 +38824 n42010041006 +38826 n42011015001 n42011016001 +38830 n42011015001 n42011016001 +38834 n42011017010 +38848 n42011018005 +38854 n42011018005 +38860 n42010041006 +38865 n42010041006 +38873 n42011015001 n42011016001 +38878 n42011019014 +n42011019010 +n42011015001 n42011016001 +38888 n42010041006 +38895 n42011015001 n42011016001 +38906 n42011021003 +38913 n42011021003 +38917 n42011021003 +38920 n42011021003 +38923 n42011021003 +38926 n42011022009 +38931 n42011021003 +38937 n42010041006 +38939 n42010041006 +38946 n42010041006 +38970 n42011024004 +n42011024022 +38986 n42011024004 +38991 n42011024023 +38998 n42011024008 +39007 n42010041006 +39017 n42010041006 +39023 n42010041006 +39026 n42011027024 +39029 n42010041006 +39059 n42011029008 +39081 n42011029008 +39093 n42011030016 +39096 n42011031009 +39122 n42011031011 +39125 n42011032009 +39164 n42011029003 +39168 n42011029003 +39175 n42011029003 +39185 n42011029003 +39194 n42011029003 +39201 n42011029003 +39219 n42011029003 +39225 n42010041006 +39230 n42011037007 +39251 n42011038003 +39253 n42011038003 +39267 n42011039010 +39291 n42011040001 +39295 n42011040001 +39319 n42011042019 n42011042022 +39321 n42011042007 +39325 n42011042005 +39342 n42011043004 +39364 n42011039004 +39369 n42011045005 +39372 n42011039004 +39375 n42011045005 +39386 n42011046007 +39390 n42011046007 +39396 n42011046007 +39406 n42011046007 +39408 n42011047008 +39418 n42011046007 +39421 n42011048009 +39423 n42011047008 +39425 n42011046007 +39437 n42011048009 +39443 n42011049012 n42011049014 +39479 n42011046007 +39484 n42011050015 +39486 n42011046007 +39495 n42011052004 +39504 n42011039004 +39515 n42011039004 +39519 n42011039004 +39525 n42011039004 +39535 n42012001005 +39541 n42011039004 +39544 n42012001015 +39548 n42012001022 +39557 n42012002003 +39562 n42012002009 +39591 n42012001015 +39594 n42011039004 +39604 n42012004011 +39612 n42012004005 +39628 n42012004005 +n42012005011 +39640 n42012006003 +39653 n42012004005 +39663 n42012004005 +39669 n42011039004 +39680 n42012008007 +39689 n42011039004 +39710 n42012010004 +39723 n42012004005 +39747 n42012004005 +39749 n42012012010 +39761 n42011039004 +39766 n42012013003 +39769 n42012013003 +39773 n42011039004 +39775 n42012013003 +39778 n42011039004 +39784 n42012014005 n42012013011 +39788 n42012013006 +39803 n42012015016 +39808 n42012015016 +39813 n42012013006 +39824 n42012016007 +39835 n42012016007 +39838 n42012018005 n42012018011 n42012018013 n42012019002 +39841 n42012016007 +39845 n42012018008 +39849 n42012018010 +39856 n42012016007 +39861 n42012016007 +39876 n42012016007 +39885 n42012020006 +39888 n42012020006 +39897 n42012021003 +39908 n42011039004 +39912 n42012022005 +39944 n42012024003 +39954 n42012024003 +39957 n42012022005 +39964 n42012022005 +39970 n42012025001 +39993 n42012022005 +40000 n42012027013 +40004 n42012027003 +40024 n42012028021 +40027 n42012028021 +40039 n42012029006 n42012029009 +40047 n42012028021 +40053 n42012029006 n42012029009 +40058 n42012030012 +40060 n42012029006 n42012029009 +40062 n42012028021 +40072 n42012032005 +40074 n42012032005 +40080 n42012032005 +40085 n42012032005 +40094 n42012033017 +40106 n42012032005 +n42012034001 +40111 n42012032005 +40114 n42012032005 +40123 n42012032005 +40129 n42012036004 +40141 n42012036007 +40146 n42012037003 +40154 n42012032005 +40159 n42012037003 +40163 n42012037003 +40179 n42012037003 +40181 n42012039016 +40199 n42012039008 +40201 n42012032005 +40220 n42012022005 +40228 n42012013006 +40241 n42012042010 +40248 n42012042016 +40258 n42012042010 +n42012043003 +40265 n42012043003 +40269 n42012022005 +40275 n42012043008 +40277 n42012043003 +40283 n42012042010 +40287 n42012045005 +40291 n42012045005 +40312 n42012045005 +40315 n42012046008 +40321 n42012046014 +40326 n42012046005 +40330 n42012046005 +40336 n42012046005 +40345 n42012047004 +40354 n42012047010 +40375 n42012048014 +40382 n42012048022 +40414 n42012022005 +40456 n42012053017 +40512 n42012056001 +40523 n42012056001 +40533 n42012058006 +40537 n42012056001 +40544 n42012056001 +40551 n42012056001 +40556 n42012056001 +40560 n42012058037 +40571 n42013001007 +40575 n42012042004 +40579 n42013001012 +40587 n42013001012 +40591 n42013001003 +40596 n42013001012 +40604 n42013001017 +40608 n42013001003 +40613 n42013001003 +40622 n42013004004 +40631 n42013004004 +40634 n42013004004 +40646 n42013001003 +40651 n42013001003 +40666 n42013006008 +40672 n42013006006 +40692 n42013006006 +40697 n42013007016 +40705 n42013007005 +40708 n42013006008 +40711 n42013007016 +40720 n42013007016 +40735 n42013007016 +40767 n42013011003 +40773 n42013011003 +40778 n42013012010 +40781 n42013011003 +40810 n42013014017 +40815 n42013014017 +40826 n42013014004 +40834 n42013015008 +40840 n42013015009 +40852 n42013011003 +40856 n42013011003 +40868 n42013016007 +40878 n42013015005 +40883 n42013015005 +40896 n42013015005 +40909 n42013018007 +40914 n42013019003 +40920 n42013019007 +40936 n42013019017 +40949 n42013021003 +40960 n42013021009 +40976 n42013015005 +40983 n42013015005 +40995 n42013023014 +41023 n42013023014 +41027 n42013023014 +41030 n42013023014 +41038 n42013025006 +41045 n42013023014 +41050 n42013023014 +41057 n42013025006 +41061 n42013028029 +41087 n42013023014 +41122 n42013031004 +41129 n42013015005 +41137 n42013015005 +41141 n42013031007 +41146 n42013031015 +41162 n42013015005 +41188 n42013034001 +41194 n42013034001 +41199 n42013034021 +41209 n42013034001 +41212 n42013034001 +41215 n42013034001 +41219 n42013015005 +41235 n42013015005 +41247 n42014001013 +41250 n42013015005 +41258 n42013015005 +41277 n42014003008 n42014003010 +41282 n42014002003 +41287 n42014003008 n42014003010 +41290 n42014003008 n42014003010 +41301 n42014005007 n42014005009 +41311 n42014005012 n42014005016 +41325 n42014007005 +41340 n42014007005 +41348 n42014007005 +41350 n42014008014 +41353 n42014007005 +41355 n42014008014 +41380 n42014007005 +41382 n42014007005 +41388 n42014007005 +41394 n42014007005 +41399 n42014011004 +41404 n42014011009 +41411 n42014003004 +41421 n42014012005 +41425 n42014012005 +41429 n42014012005 +41436 n42014012015 n42014012019 n42014012023 n42014012026 +41438 n42014012005 +41459 n42014012005 +41462 n42014012005 +41475 n42014003004 +41486 n42014003004 +41488 n42014015003 +41501 n42014016005 +41518 n42014017012 +41523 n42014017004 +41531 n42014018011 +41533 n42014017004 +41535 n42014018008 +41547 n42014019004 +41549 n42014017004 +41551 n42014019002 +41560 n42014020005 +41571 n42014021004 +41580 n42014021013 +41631 n42014023004 +41636 n42014023007 +41641 n42014017012 +41645 n42014023004 +41650 n42014003004 +41657 n42014025004 +41662 n42014003004 +41668 n42014026002 +41689 n42014026002 +41693 n42014003004 +41700 n42014027001 +41704 n42014003004 +41708 n42014003004 +41714 n42014025004 +41731 n42014028001 +41741 n42014028001 +41745 n42014028001 +41780 n42014031003 +41785 n42014031025 +41798 n42014025004 +n42014033003 +41804 n42014033003 +41809 n42014003004 +41834 n42014034009 +41843 n42014003004 +41851 n42014003004 +41862 n42014003004 +41867 n42015002012 +41871 n42015002005 n42015002008 +41879 n42015002005 n42015002008 +41886 n42015004007 +41903 n42015004025 +41910 n42015004002 +41924 n42015006008 n42015006011 +41926 n42015004002 +41931 n42015004002 +41935 n42015002005 n42015002008 +41952 n42015007018 +41989 n42015008003 +41994 n42015009014 +41998 n42015002005 n42015002008 +42021 n42015011007 +42026 n42015012004 +42033 n42015012007 +42035 n42015011007 +42053 n42015013013 +42057 n42015013010 +42062 n42015013010 +42070 n42015013013 +42072 n42015013010 +42083 n42015014010 +42086 n42015013010 +42090 n42015015004 +42098 n42015013010 +42102 n42015016009 +42112 n42015013010 +42119 n42015013010 +42123 n42015013010 +42125 n42015015008 +42132 n42015013010 +42135 n42015018005 +42143 n42015018010 +42149 n42015018010 +42151 n42015013010 +42156 n42015018010 +42163 n42015013010 +42166 n42015013010 +42170 n42015013010 +42173 n42015013010 +42182 n42015013010 +42185 n42015013010 +42190 n42015020016 +42198 n42015021006 +42204 n42015021006 +42212 n42015022004 +42220 n42015021004 +42227 n42015021004 +42244 n42015021004 +42247 n42015022004 +42263 n42015022004 +42287 n42015025017 n42015025019 +42289 n42015026003 +42291 n42015025004 +42295 n42015025004 +42301 n42015025004 +42308 n42015027007 +42319 n42015025004 +42322 n42015025004 +42324 n42015025004 +42333 n42015029006 +42337 n42015029006 +42340 n42015025004 +42348 n42015025004 +42354 n42015029006 +n42015021004 +42358 n42015029006 +42365 n42015030004 +42370 n42015029006 +42372 n42015025004 +42374 n42015031005 +42377 n42015029006 +42382 n42015029006 +n42015031005 +42393 n42015031005 +n42015030004 +42413 n42016001007 +42417 n42016001013 +42419 n42016001007 +42424 n42016001007 +42427 n42016001013 +42429 n42016001013 +42431 n42016001019 +42434 n42016001013 +42440 n42016001013 +42449 n42016003006 +42457 n42016003006 +42462 n42016003006 +42478 n42016003006 +42491 n42016003006 +42499 n42016003006 +42501 n42016005012 +42507 n42016003006 +42509 n42016005012 +42511 n42016005012 +42523 n42016007002 +42527 n42016007002 +42533 n42016007002 +42535 n42016007002 +42568 n42016008014 +42571 n42014003004 +n42016001006 +42574 n42016001006 +42586 n42016001006 +42622 n42016001006 +42633 n42014003004 n42016001006 +42636 n42016001006 +42675 n42014003004 +42678 n42016014006 +n42016014006 +42683 n42016015007 +42693 n42016014006 +42720 n42016016011 +42742 n42016018003 +42777 n42016019001 +42798 n42016020001 +42806 n42016022005 +42828 n42016022020 +42841 n42016023013 +42843 n42016022020 +42849 n42016022020 +42859 n42016024011 +42865 n42016022020 +42881 n42016025004 +42885 n42016025004 +42893 n42016023020 +42896 n42016025004 +42901 n42016025007 n42016025016 n42016025023 n42016025026 +42903 n42016025003 n42016025016 +42905 n42016025004 +42915 n42016025004 +42919 n42016023004 +42921 n42016025003 n42016025016 +42927 n42016027006 +42931 n42016025016 +42937 n42016022020 +42944 n42016028004 +42948 n42016028004 +42953 n42016023004 +42965 n42016029005 n42016029008 +42967 n42016022020 +42979 n42016028004 +42983 n42016022020 +43003 n42014003004 +43017 n42017001018 +43025 n42017001018 +43039 n42017001005 +43044 n42017001005 +43046 n42017003006 +43051 n42017003006 +43059 n42017001005 +43064 n42017001005 +43068 n42017003006 +43076 n42017005004 +43102 n42017005004 +43106 n42017005004 +43112 n42017007005 +43118 n42017007005 +43125 n42017007005 +43132 n42017007001 +43139 n42017008013 n42017008015 +43143 n42017007005 +43155 n42017005004 +43161 n42017005004 +43179 n42017006004 +43188 n42017006004 +43196 n42017012010 +43200 n42017012010 +43207 n42017012010 +43211 n42017012010 +43214 n42017012010 +43222 n42017012010 +43227 n42017012010 +43245 n42017006004 +43247 n42017006004 +43249 n42017015001 +43276 n42017015001 +43279 n42017015001 +43284 n42017015001 +43286 n42017015001 +43299 n42017020005 +43323 n42017020005 +43347 n42017022005 +43380 n42017024019 +43384 n42017024019 +43460 n42017029008 n42017029015 +43470 n42017030011 +43481 n42017031005 +43488 n42017031012 +43508 n42017033001 +43511 n42017033005 +43517 n42017033005 +43519 n42017022005 +n42017031004 +43551 n42017017004 +43555 n42017017004 +43557 n42017022005 +43561 n42017037011 +43569 n42017022005 +43575 n42017022005 +43600 n42018002007 +43604 n42018002002 +43607 n42018003001 +43611 n42018003001 +43622 n42018002002 +43636 n42018002002 +43640 n42018003001 +43642 n42018005008 +43649 n42018002002 +43671 n42018007003 +43674 n42018007003 +43681 n42018007010 +43683 n42017022005 +43688 n42018007010 +43712 n42018009007 +43740 n42018011010 n42018012001 n42018012005 +43742 n42018011002 +43747 n42018011009 +43762 n42018010014 +43791 n42018013003 +43796 n42018013003 +43800 n42018009007 +43802 n42018013003 +43807 n42018013003 +43809 n42018011002 +43814 n42018014015 +43819 n42018014020 +43823 n42018006004 +43828 n42018015006 +43840 n42018015006 +43847 n42018016003 +43851 n42018016009 +43854 n42018016009 +43862 n42018015013 +43877 n42018017009 +43882 n42018016003 +43893 n42018018005 +43897 n42018019005 +43926 n42018018005 +43928 n42018020005 n42018020007 n42018020009 n42018020011 n42018020012 +43938 n42018018005 +43941 n42018018005 +43959 n42018022004 +43961 n42018018005 +43963 n42018022010 n42018022014 n42018022016 n42018022019 n42018022026 +43972 n42018018005 +44013 n42018024005 +44029 n42018015013 +44032 n42018015013 +44034 n42018024005 +44036 n42018024005 +44038 n42018015013 +44041 n42018015013 +44061 n42018029012 +44084 n42018031004 +44114 n42018031021 +44122 n42018031004 +44124 n42018031016 +44130 n42018031009 n42018031013 +44133 n42018031004 +44144 n42018024005 +44161 n42018036004 +44164 n42018035009 +44177 n42018035009 +44182 n42018035009 +44186 n42018035009 +44193 n42018035009 +44199 n42018035009 +44202 n42018040004 +44205 n42018035009 +44207 n42018035009 +44209 n42018035009 +44213 n42018035009 +44222 n42018035009 +44226 n42018035009 +44228 n42018035009 +44234 n42018042003 +44259 n42019002003 +44263 n42019002003 +44293 n42019003005 +44309 n42019002003 +44318 n42019005013 +n42019005009 +44327 n42019005009 +44351 n42019008003 +44367 n42019008003 +44375 n42019005020 +44379 n42019008003 +44396 n42019007003 +44406 n42019009006 +44409 n42019007003 +44428 n42019012003 +44436 n42019012003 +44438 n42019013004 +44444 n42019013004 +44452 n42019012003 +44454 n42019012003 +44459 n42019012003 +44463 n42019012003 +44466 n42019014003 +44472 n42019012003 +44479 n42019012003 +44482 n42019013004 +n42019015015 +44500 n42019016006 +44506 n42019016004 +44529 n42019018009 +44536 n42019018004 +44538 n42019018004 +44552 n42019020006 +n42019020009 +44560 n42019020006 +44575 n42019020003 +44579 n42019022010 +44581 n42019022010 +44586 n42019012003 +44604 n42019012003 +44610 n42019012003 +44614 n42019023008 +44622 n42019020003 +44634 n42019012003 +44640 n42019024003 +44658 n42019012003 +n42019014003 +44663 n42019012003 +44666 n42019027003 +44671 n42019027003 +44673 n42019012003 +44707 n42019030006 +44713 n42019030011 +44720 n42019030011 +44725 n42019029016 +44735 n42019030011 +44745 n42019032004 +44748 n42019032004 +44754 n42019033005 +44756 n42019032004 +44762 n42019032004 +44767 n42019033005 +44772 n42019033005 +44778 n42019032004 +44789 n42019035017 +44799 n42019035017 +44822 n42019037028 +44850 n42019035017 +44855 n42019039011 +44860 n42019039002 +44862 n42019037015 +44875 n42019041006 +44885 n42019041006 +44894 n42019041006 +44899 n42019041006 +44904 n42019041006 +44906 n42019041006 +44909 n42019041006 +44912 n42019041006 +44916 n42019041006 +44920 n42019041006 +44922 n42019041006 +44930 n42019041006 +44939 n42019041006 +44950 n42019045009 +44956 n42019038009 +44961 n42019046007 +44981 n42019035017 +44999 n42019035017 +45008 n42019035017 +45029 n42019035017 +45031 n42020001018 n42020001021 n42020001024 +45042 n42019035017 +45050 n42020001018 n42020001021 n42020001024 +45052 n42020001018 n42020001021 n42020001024 +n42019035017 +45057 n42019035017 +45068 n42020001018 n42020001021 n42020001024 +45071 n42020001018 n42020001021 n42020001024 +45083 n42020004003 +45093 n42020001018 n42020001021 n42020001024 +45109 n42020001018 n42020001021 n42020001024 +45111 n42020008003 +45113 n42020001018 n42020001021 n42020001024 +45133 n42020009012 +45153 n42020010007 +45158 n42020010007 +45167 n42020010018 +n42020011005 +45179 n42020010018 +45181 n42020012003 +45195 n42020013004 +45199 n42020013011 +45203 n42020013011 +45208 n42020014005 +45210 n42020013011 +45215 n42020013011 +45217 n42020014005 +45223 n42020013011 +45231 n42020014005 +45241 n42020014005 +45253 n42020008003 +45255 n42020009005 +45262 n42020017020 n42020018008 n42020018014 +45264 n42020017012 +45268 n42020017012 +45277 n42020017012 +45287 n42020018013 +45297 n42020008003 +45301 n42020019016 +45312 n42020019004 n42020019007 +45316 n42020009008 +45322 n42020020004 +45327 n42020008003 +45331 n42020008003 +45341 n42020008003 +45363 n42020020004 +45371 n42020020004 +45376 n42020020004 +45378 n42020008003 +45390 n42020008003 +45393 n42020020004 +45409 n42020008003 +45419 n42020008003 +45432 n42020008003 +45437 n42020027003 +45445 n42020028008 +45452 n42020028008 +45460 n42020028019 +45479 n42020029009 +45502 n42020033013 +45509 n42020033002 +45513 n42020027003 +45589 n42020038001 +45604 n42020034005 +45609 n42020039003 +45618 n42020042003 +45628 n42020042003 +45632 n42020042009 +45638 n42020042011 +45642 n42020042011 +45646 n42020041008 +45650 n42020044001 +45686 n42020046004 +45696 n42020046004 +45710 n42021001012 +45718 n42021001008 +45725 n42020045008 +45729 n42021002004 +45737 n42021003013 +45741 n42021003013 +45747 n42021003008 +45751 n42021003008 +45755 n42021004020 +45771 n42021005006 n42021005008 n42021005011 +n42021006001 +45777 n42021006005 +45783 n42021006010 +45788 n42020034005 +45793 n42021006009 +45801 n42021006009 +45804 n42020034005 +45815 n42020034005 +45817 n42021008007 +45826 n42021008007 +45837 n42021009004 n42021009006 +45847 n42021005002 +45876 n42021010004 n42021010009 n42021011010 n42021011018 +45880 n42021005002 +45900 n42020034005 +45902 n42021005002 +45910 n42021005002 +45915 n42020034005 +45917 n42021005002 +45921 n42021015005 n42021015007 +45930 n42021005002 +45945 n42021005002 +45954 n42020034005 +45956 n42021005002 +45960 n42021005002 +45967 n42021005002 +45971 n42021005002 +45985 n42021020007 +45999 n42021020007 +46009 n42021020007 +46029 n42021022002 +46119 n42021025005 n42021025013 n42021026001 +46126 n42021005002 +46131 n42021005002 +46135 n42021005002 +46148 n42021005002 +46158 n42021005002 +46173 n42021005002 +46194 n42020034005 +46200 n42021005002 +46204 n42021005002 +46217 n42021005002 +46281 n42020034005 +46286 n42020034005 +46306 n42020034005 +46334 n42022004005 n42022004007 +46336 n42020034005 +46341 n42022003005 +46351 n42020034005 +46354 n42022004005 n42022004007 +46361 n42022007004 +46374 n42020034005 n42022003014 +46380 n42022008003 n42022008005 +46382 n42020034005 +46387 n42020034005 +46389 n42022008003 n42022008005 +46392 n42022008003 n42022008005 +46397 n42022008003 n42022008005 +46403 n42022010013 +46408 n42022010021 +46417 n42022011004 +46424 n42022011014 +46430 n42022011010 +46432 n42022011004 +n42022008003 n42022008005 +46438 n42022012004 +46445 n42022008003 n42022008005 +46460 n42020034005 +46464 n42022014009 +46467 n42022013010 +46472 n42022014009 +46475 n42020034005 +46479 n42022014009 +46485 n42022015009 +46500 n42022017003 +46504 n42022014009 +46507 n42022014009 +46533 n42022014009 +46535 n42022019003 +46539 n42020034005 +46542 n42022014009 +46548 n42020034005 +46564 n42020034005 +n42022020003 +46570 n42022014009 +46578 n42020034005 +46580 n42020034005 +46598 n42022021006 +46600 n42022022014 +46603 n42022014009 +46607 n42022014009 +46613 n42022014009 +46621 n42022014009 +46626 n42022014009 +46631 n42020034005 +46633 n42022014009 +46639 n42022025008 +46643 n42022025008 +46647 n42022014009 +46654 n42022014009 +46677 n42020034005 +46680 n42022014009 +46686 n42022014009 +46691 n42020034005 +46695 n42020034005 +n42020034005 +46698 n42022014009 +46701 n42020034005 +46704 n42020034005 +46713 n42020034005 +46717 n42020034005 +46734 n42022014009 n42022031001 +46741 n42020034005 +46744 n42022031001 +46750 n42022031001 +46752 n42022031001 +46758 n42022031001 +46760 n42022008003 +46762 n42020034005 +46765 n42022033005 +46776 n42020034005 +46779 n42022034006 +46787 n42020034005 +46793 n42022014009 +46796 n42022014009 +46807 n42022014009 +46812 n42022014009 +46829 n42022036016 +46835 n42022014009 +46838 n42022037016 +46848 n42020034005 +46853 n42020034005 +46857 n42022014009 +46865 n42020034005 +46867 n42022014009 +46883 n42020034005 +46893 n42022039017 +46900 n42020034005 +46903 n42022039017 +46921 n42020034005 +46926 n42020034005 +46929 n42022042002 +46933 n42020034005 +46938 n42020034005 +46949 n42020034005 +46968 n42022045009 +46974 n42022045009 +46985 n42020034005 +46997 n42022047005 +47003 n42022047018 +47007 n42022047009 +47018 n42022048001 +47033 n42022049003 +47042 n42022050010 +47058 n42022050010 +47066 n42022052003 +47085 n42022052003 +47087 n42022052009 n42022052011 n42022052015 +47096 n42022052003 +47100 n42022052009 n42022052011 n42022052015 +47110 n42022052003 +47137 n42022052009 n42022052011 n42022052015 +47142 n42022055012 +47149 n42022055012 +47152 n42022055012 +47154 n42022052003 +47157 n42022055012 +47162 n42022052003 +47169 n42022055012 +47172 n42022055012 +47174 n42022052003 n42022045009 +47195 n42022058015 +47197 n42022052003 +47216 n42022060004 +47236 n42022061011 +47243 n42022061015 +47255 n42022061015 +47257 n42022061015 +47261 n42022061015 +47269 n42022061015 +47276 n42022061015 +47292 n42022061015 +47296 n42022066007 n42022066010 n42022066013 +47299 n42022061015 +47304 n42022066007 n42022066010 n42022066013 +47307 n42022066007 n42022066010 n42022066013 +47309 n42022066007 n42022066010 n42022066013 +47338 n42022066007 n42022066010 n42022066013 +47340 n42022061015 +47347 n42022061015 +47349 n42022066007 n42022066010 n42022066013 +47351 n42022066007 n42022066010 n42022066013 +47354 n42022061015 +47357 n42022066007 n42022066010 n42022066013 +47365 n42022066007 n42022066010 n42022066013 +47370 n42022061015 +47376 n42022066007 n42022066010 n42022066013 +47378 n42022061015 +47385 n42022061015 +47388 n42022061015 +47392 n42023001005 +47400 n42022061015 +47408 n42022061015 +47410 n42022061015 +47417 n42022061015 +47419 n42023003003 +47421 n42023003003 +47439 n42022061015 +47441 n42023004007 n42023004010 +47478 n42022061015 +47483 n42023007012 +47505 n42023008006 +47510 n42023008006 +47517 n42023008006 +47521 n42023008006 +47526 n42023008006 +47529 n42023008003 +47539 n42023008006 +47544 n42023008006 +47548 n42023011005 +47555 n42023008006 +47568 n42023012013 +47572 n42023012006 n42023012009 +47579 n42023012006 n42023012009 +47593 n42023013005 n42023013008 n42023013011 +47595 n42023013001 +47598 n42023008006 +47605 n42023013001 +47607 n42023013005 n42023013008 n42023013011 +47614 n42023014007 +47619 n42023014023 +47625 n42023014023 +47627 n42023013001 n42023013005 n42023013008 n42023013011 +47635 n42023014023 +47638 n42023014023 +47645 n42023008006 +47648 n42023013005 n42023013008 n42023013011 +47651 n42023018011 +47671 n42023013005 n42023013008 n42023013011 +47677 n42023013005 n42023013008 n42023013011 +47682 n42023020010 +47684 n42023020004 +47688 n42023013005 n42023013008 n42023013011 +47693 n42023020010 +47699 n42023020010 +47702 n42023020010 +47705 n42023013005 n42023013008 n42023013011 +47710 n42023020010 +47716 n42023013005 n42023013008 n42023013011 +47723 n42023013005 n42023013008 n42023013011 +47734 n42023025008 +47742 n42023013005 n42023013008 n42023013011 +47746 n42023025015 +47755 n42023026006 +47764 n42023026019 +47771 n42023027009 +47775 n42023026019 +47779 n42023027009 +47787 n42023028005 +47790 n42023028007 +47796 n42023028007 +47802 n42023029004 +47810 n42023029013 +47815 n42023029018 +47850 n42023028005 +47861 n42023033006 +47863 n42023028005 +47881 n42023013005 n42023013008 n42023013011 +47891 n42023034003 +47908 n42023034003 +47910 n42023034003 +47920 n42023034003 +47927 n42023034003 +47931 n42023034003 +47938 n42023034003 +47944 n42023034003 +47949 n42023034003 +47956 n42023034003 +47958 n42023034003 +47963 n42023034003 +47965 n42023039005 +47971 n42023039001 +47975 n42023039001 +47981 n42023040017 +47986 n42023039005 +47994 n42023034003 +48002 n42023040004 +48008 n42023042003 +48011 n42023040004 +48013 n42023040004 +48017 n42023034003 +48058 n42023046008 +48062 n42023046006 +48064 n42023046012 +48080 n42023046006 +48106 n42023046006 +48111 n42023046006 +48128 n42023050003 +48137 n42023013005 n42023035004 n42023035010 +48143 n42023050003 +48149 n42023050003 +48161 n42023052007 +48165 n42023052009 +48169 n42023053010 +48186 n42023055004 +48192 n42023052009 +48201 n42023052009 +48228 n42024001015 +48253 n42023055004 +48255 n42024003004 +48261 n42023055004 +48268 n42023055004 +48278 n42023055004 +48288 n42024002008 +48294 n42023055004 +48323 n42020034005 +48353 n42024010004 n42024010007 n42024010009 +48362 n42024010020 +48370 n42024010004 n42024010007 n42024010009 n42024010014 +48388 n42024012003 +48396 n42024009014 +48398 n42024013009 +48410 n42024013013 +48414 n42024013003 +48417 n42024013003 +48422 n42024012021 +48428 n42024013003 +48432 n42024015011 +48436 n42024013003 +48440 n42024013003 +48445 n42024015011 +48449 n42024013003 +48454 n42024017007 +48457 n42024013003 +48469 n42024015011 +n42024015011 +48480 n42024018012 +48487 n42024013003 +48490 n42024013003 +48492 n42024015011 +48498 n42024019011 +48517 n42024019011 +48523 n42024010020 n42024009014 n42024013003 +48529 n42024019011 +48531 n42024010020 n42024009014 n42024013003 +48534 n42024019011 +48560 n42024010020 n42024009014 n42024013003 +48562 n42024010020 n42024009014 n42024013003 +48573 n42024019011 +48580 n42024023011 +48582 n42024019011 +48589 n42024010020 n42024009014 n42024013003 +48602 n42024019011 +48606 n42024015011 +48609 n42024013003 +48635 n42024026006 +48646 n42024013003 +48653 n42024015011 +48659 n42024028005 +48662 n42024015011 +48668 n42024015011 +48672 n42024013003 +48687 n42024013003 +48693 n42024015011 +48695 n42024013003 +48703 n42024013003 +48705 n42024013003 +48711 n42024015011 +48713 n42024015011 +48717 n42024013003 +48721 n42024013003 +48725 n42024013003 +48729 n42024013003 +48732 n42024013003 +48738 n42024013003 +48743 n42024033005 +48757 n42024033013 +48768 n42024013003 +48777 n42024013003 +48784 n42024035004 n42024035010 +n42024013003 +48787 n42024015011 +48791 n42024033013 n42024033015 n42024013003 +48794 n42024033013 n42024033015 n42024013003 +48796 n42024033013 n42024033015 n42024013003 +48807 n42024033013 n42024033015 n42024013003 +48819 n42024033013 n42024033015 n42024013003 +48823 n42024015011 +48827 n42024015011 +48829 n42024015011 +48831 n42024015011 +48833 n42024015011 +48844 n42024015011 +48848 n42024038005 n42024038011 n42024039001 n42024039013 +48851 n42024033013 n42024033015 n42024013003 +48860 n42024033013 n42024033015 n42024013003 +48867 n42024033013 n42024033015 n42024013003 +48873 n42024033013 n42024033015 n42024013003 +48875 n42024015011 +48882 n42024033013 n42024033015 n42024013003 +48887 n42024033013 n42024033015 n42024013003 +n42024044018 +48891 n42024015011 +n42024044007 +48895 n42024033013 n42024033015 n42024013003 +48899 n42024033013 n42024033015 n42024013003 +48916 n42024015011 +48919 n42024033013 n42024033015 n42024013003 +48947 n42024046009 +48959 n42024033013 n42024033015 n42024013003 +48961 n42024046007 n42024046011 n42024047002 +48964 n42024015011 +48970 n42024015011 +48972 n42024033013 n42024033015 n42024013003 +48974 n42024033013 n42024033015 n42024013003 +48987 n42024033013 n42024033015 n42024013003 +48995 n42024015011 +48997 n42024033013 n42024033015 n42024013003 +49003 n42024015011 +n42024033013 n42024033015 n42024013003 +49007 n42024033013 n42024033015 n42024013003 +49014 n42024033013 n42024033015 n42024013003 +49016 n42024015011 +49050 n43001001017 +49059 n43001001017 +49063 n43001001017 +49067 n43001003010 +49070 n43001001017 +49091 n43001005003 +49100 n43001006002 +49102 n43001006002 +49115 n43001006002 +49118 n43001006002 +49131 n43001009003 +49148 n43001009003 +49153 n43001009003 +49158 n43001009003 +49162 n43001009003 +n43001009003 +49169 n43001009003 +49175 n43001012003 +49181 n43001009003 +n43001012003 +49211 n43001014003 +49224 n43001014003 +49228 n43001014003 +49234 n43001015001 +49237 n43001015001 +49241 n43001015001 +49247 n43001014003 +49283 n43001018006 +49286 n43001020013 +49295 n43001019007 +49305 n43001019007 +n43001019007 +49317 n43001019007 +49324 n43001019007 +49327 n43001019007 +49337 n43001019007 +49343 n43001019007 +49351 n43001019016 n43001019018 +49355 n43001019007 +49357 n43001019007 +49380 n43001019007 +49383 n43001019007 +49388 n43001019007 +49399 n43001024002 +49403 n43001026004 +49408 n43001024002 +49411 n43001024002 +49416 n43001026004 +49418 n43001027004 +49421 n43001026004 +49425 n43001027004 +49437 n43001028007 +49449 n43001028011 +49463 n43001029005 +49467 n43001028011 +49470 n43001028011 +49473 n43001030010 +49475 n43001028011 +49479 n43001028011 +49481 n43001028011 +49484 n43001029005 +49491 n43001031007 +49493 n43001028011 +49513 n43001029005 +n43001032003 +49517 n43001029005 +49521 n43001032003 +49525 n43001033007 +n43001032003 +49538 n43001033016 +n43001033016 +49546 n43001032003 +49551 n43001029005 +49567 n43001035006 +49585 n43001035006 +49597 n43001037005 +49600 n43001037005 +49604 n43001037005 +49606 n43001038004 +49608 n43001038017 +49615 n43001037005 +49627 n43001038004 +49631 n43001035002 +49652 n43001038004 +49654 n43001040002 +49659 n43001040002 +49663 n43001041005 +49667 n43001041014 +49672 n43001041005 +49677 n43001041005 +49681 n43001041005 +49687 n43001041005 +49690 n43001042019 +49705 n43001043010 +49709 n43001043015 +49728 n43001045004 +49748 n43001045002 +49757 n43001046004 +49769 n43001047002 +49773 n43001047004 +49778 n43001047014 +49783 n43001047002 +49786 n43001048003 +49792 n43001048003 +49795 n43001048003 +49802 n43001048003 +49805 n43001048008 +49808 n43001049004 +49814 n43001049004 +49823 n43001049003 +49826 n43001049003 +49829 n43001049003 +49839 n43001049003 +49843 n43001044010 n43001044012 n43001046014 n43001049003 +49878 n43002001009 +49887 n43002002005 +49900 n43002003008 +49906 n43002003006 +49910 n43002004005 +49912 n43002004010 +49918 n43002004005 +49922 n43002004005 +49927 n43002005008 +49929 n43002005006 +49950 n43002005006 +49959 n43002007007 +49964 n43002005006 +49972 n43002005006 +50003 n43002009025 +50016 n43002009025 +50038 n43002011007 +50042 n43002011007 +50045 n43002011007 +50051 n43002011007 +50055 n43002011007 +50062 n43002011007 +50064 n43002012005 +50103 n43002014007 n43002014015 +50132 n43002014005 +50139 n43002013013 +50145 n43002013013 +50153 n43002016015 +50162 n43002013013 +50166 n43002018004 +50174 n43002018004 +50184 n43002019008 +50198 n43002019002 +50203 n43002020011 +50205 n43002019002 +50212 n43002019002 +50221 n43002019002 +50223 n43002019014 +50232 n43002022019 +50253 n43002022023 +50255 n43002022023 +50258 n43002023022 +50261 n43002024003 +50265 n43002024003 +n43002023013 +50269 n43002024003 +50284 n43002024003 +50302 n43003001003 +n43003001003 +50306 n43002024003 +50310 n43002024003 +50324 n43003002021 +n43003002009 +50334 n43003002016 +50339 n43003001003 +50343 n43003001003 +50358 n43003003002 +50374 n43003004008 +50384 n43003004005 +50420 n43003004005 +50422 n43003001012 n43003004005 +50433 n43003008002 +50455 n43003005002 +50464 n43003009002 +n43003009002 +50478 n43003009002 +50490 n43003010002 n43002012016 +50497 n43003010011 n43003009002 +50504 n43003010011 n43003009002 +50546 n43003014014 +50568 n43003016010 +50595 n43003017007 +50599 n43003017007 +50619 n43003019009 n43003019014 +50643 n43003019016 +50665 n43003020005 +50677 n43003021003 +50693 n43003022005 +50699 n43003022013 +50702 n43003022008 +50719 n43003023008 +50750 n43003026005 +50752 n43003022005 +50755 n43003026009 +50759 n43003022005 +n43003026009 +50763 n43003022005 +50769 n43003022005 +50783 n43003027007 +50787 n43003025006 +n43003025006 +n43003027002 +50795 n43003027002 +50803 n43003028011 +50819 n43003029011 +50832 n43003027002 +50835 n43003022005 +50838 n43003027002 +50872 n43003032002 +50877 n43003031025 +50882 n43003031025 +50892 n43003031025 +50919 n43003035005 +50943 n43003036011 +50964 n43004002002 +50970 n43004002002 +50982 n43004002002 +50998 n43004005011 +51004 n43004005014 +51007 n43004005011 +51035 n43004007002 +51039 n43004007011 +51044 n43004007011 +51054 n43004007011 +51060 n43004007011 +51064 n43004009005 +51079 n43004009005 +51091 n43004009005 +51093 n43004010002 +51096 n43004009005 +51098 n43004010016 +51102 n43004009005 +51106 n43004010002 +51124 n43004011003 +51129 n43004009005 n43004009023 +51131 n43004012006 +51133 n43004009005 n43004009023 +51137 n43004012006 +51139 n43004012013 +51144 n43004012006 +51148 n43004012006 +51153 n43004009005 +51170 n43004014007 +n43004013002 +51173 n43004014001 +51183 n43004014020 +51185 n43004014004 +51188 n43004014004 +51197 n43004013002 +51202 n43004015005 +n43004014020 +51211 n43004006018 +51214 n43004015005 +51219 n43004015005 +51222 n43004006018 +51232 n43004017003 +51251 n43004017003 +51253 n43004017019 +51257 n43004017012 +51265 n43004019005 +51268 n43004019004 n43004009023 +51275 n43004019005 n43004009022 +51287 n43004019004 +51291 n43004021004 +51301 n43004020006 +51308 n43004009023 n43004021007 +51313 n43004021004 n43004009022 +51345 n43004023010 +51349 n43004023021 +51363 n43004021004 +51375 n43004025007 +51377 n43004025004 n43004009023 +51380 n43004025004 +51383 n43004026004 +51386 n43004025004 +51394 n43004026004 +51410 n43004027012 +51415 n43004028007 +51430 n43004029003 +51432 n43004028007 +51437 n43004029003 +51448 n43004026004 +51453 n43004026004 +51460 n43004026004 +51462 n43004031007 +n43004026004 +51467 n43004032006 +n43004031007 +51476 n43004033004 +51480 n43004026004 +51483 n43004033004 +51486 n43004034004 +51495 n43004034004 +51498 n43004034013 +51502 n43004033004 +51514 n43004033004 +51518 n43004033004 +51549 n43004037012 n43004037016 +51563 n43004034004 +51565 n43004033004 +51569 n43004033004 +51574 n43004033004 +51578 n43004038009 +51584 n43004030004 +51590 n43004034004 +51599 n43004039016 +51607 n43004034004 +51611 n43004034004 +51614 n43004040007 +51617 n43004039004 +51627 n43004034004 +51636 n43004042003 +51640 n43004041003 +51645 n43004034004 +51658 n43004039004 +51663 n43004044003 +51670 n43004044006 +51682 n43004044003 +51696 n43004045010 +51709 n43004046006 +51718 n43004046017 +51724 n43004046017 +51737 n43004047004 +51744 n43004046017 +51755 n43004046017 +51767 n43004048004 +51776 n43004049005 +51778 n43004049005 +51784 n43004049005 +51791 n43004050014 +51793 n43004050012 +51800 n43004050012 +51805 n43004050012 +51810 n43004050012 +51817 n43004051006 +51819 n43004052004 +51824 n43004050012 +51830 n43004051012 +51842 n43004053008 +51844 n43004053004 +51849 n43004053004 +51853 n43004053004 +51857 n43004053004 +51902 n43005002015 +51946 n43005002015 +51955 n43005005004 +51958 n43005005004 +51969 n43005005004 +51974 n43005006004 +51987 n43005007004 +51995 n43005007004 +51998 n43005007004 +52001 n43005007004 +52008 n43005007004 +52021 n43005009006 +52042 n43005010006 +52047 n43005010006 +52049 n43005010004 +52052 n43005010006 +52054 n43005011006 +n43005010006 +52060 n43005010006 +52064 n43005010006 +52071 n43005010006 +52094 n43005013003 +52102 n43005013003 +52112 n43005013003 +52126 n43005015003 +52130 n43005016011 +52142 n43005016008 +52144 n43005016006 +52147 n43005016008 +52151 n43005016008 +52155 n43005018013 n43005018020 +52158 n43005016008 +52171 n43005016008 +52176 n43005016008 +52186 n43005018008 +52190 n43005018008 +52197 n43005019015 +52209 n43005019025 +52211 n43005019031 +52225 n43005020006 +52228 n43005020003 +52232 n43005020013 +52235 n43005020006 +52237 n43005018008 +52288 n43005023014 +52292 n43005018008 +52297 n43005019004 +52303 n43005019004 +52323 n43005018008 +52351 n43005026004 +52360 n43005026012 +52364 n43005026012 +52373 n43005027003 +52378 n43005028006 +52387 n43005026012 +52406 n43005019004 +52409 n43005019004 +52418 n43005019004 +52427 n43005019004 +52433 n43005019004 +52435 n43005019004 +52438 n43005019004 +52441 n43005019004 +52450 n43005019004 +52458 n43005032013 +52461 n43005019004 +n43005018008 +52471 n43005019004 +52482 n43005018008 +52484 n43005033004 +52493 n43005018008 +52501 n43005033004 +52503 n43005019004 +52513 n43005036011 +52515 n43005019004 +52520 n43005036011 +n43005036011 +52524 n43005036022 +52528 n43005019004 +52532 n43005019004 +52537 n43005019004 +52539 n43005037005 +52542 n43005019004 +52545 n43005037005 +52550 n43005037005 +52557 n43005037005 +52559 n43005018008 +52562 n43005019004 +52564 n43005037005 +n43005038012 +n43005018008 +52573 n43005018008 +52576 n43005039003 +52581 n43005039003 +52586 n43005019004 +52592 n43005019004 +52603 n43005018008 +52612 n43005018008 +n43005019004 +52620 n43005019004 +52624 n43005019004 +52632 n43005043014 +n43005043014 +52637 n43005018008 +52641 n43005018008 +52656 n43005019004 +52658 n43005018008 +52665 n43005018008 +52668 n43005045014 +n43005018008 +52677 n43005019004 +52680 n43005019004 +n43005046004 +52686 n43005046004 +52692 n43005019004 +52709 n43006001005 +52716 n43006002009 +52728 n43006003005 +52733 n43006003006 +52756 n43006005006 +52765 n43006005011 +52767 n43006005019 +52770 n43006005017 +52772 n43006005006 +52778 n43006005006 +52786 n43006005011 +52788 n43006005011 +52793 n43006005006 +52798 n43006005006 +52806 n43006003005 +n43006009002 +52816 n43006009007 n43006009011 +52867 n43006011006 +52889 n43006013007 +52897 n43006014007 +52902 n43006011006 +52919 n43006015001 +52929 n43006015001 +52938 n43006015001 +52960 n43006016007 +52993 n43006019011 +52995 n43006016007 +n43006019011 +53003 n43006019011 +53016 n43006021015 +53043 n43006022028 +53053 n43006022028 +53063 n43006023008 +53079 n43006023008 +53083 n43006024007 +53085 n43006024005 +53098 n43006024026 +53103 n43006024026 +53106 n43006025006 +53109 n43006024005 +53117 n43006024005 +53119 n43006026004 +53146 n43006027009 +53151 n43006024005 +53154 n43006027017 +53163 n43006026004 +53176 n43006024005 +n43006029013 +53186 n43006027017 +53188 n43006029012 +53191 n43006029002 +53196 n43006029002 +53201 n43006029002 +53206 n43006024005 +53225 n43006024005 +53231 n43006024005 +53235 n43006024005 +53244 n43006032005 +53246 n43006024005 +53273 n43006032005 +53277 n43006024005 +53280 n43006033003 +53282 n43006024005 +53285 n43006035004 +53294 n43006035004 +53302 n43006035004 +53309 n43006024005 +53313 n43006035004 +53320 n43006035004 +53324 n43006035004 +53330 n43006035004 +53346 n43006035004 +53352 n43006035004 +53354 n43006039015 n43006039019 +53360 n43006035004 +53365 n43006035004 +53369 n43006039012 +53372 n43006039012 +53378 n43006040019 n43006040023 +53384 n43006035004 +53394 n43006040014 +53400 n43006040012 +n43006035004 +53411 n43006035004 +53414 n43006035004 +53426 n43006035004 +53432 n43006042006 +n43006041004 +53452 n43006041004 +53456 n43006041004 +53461 n43006043002 +53468 n43006043002 +53470 n43006044001 +n43006043002 +53473 n43006044001 +53498 n43006043002 +53512 n43006046013 +53519 n43006041004 +53525 n43006043002 +53533 n43006041004 +53542 n43006048004 +53554 n43006050004 +53559 n43006043002 +53574 n43006051004 +53585 n43006051025 +n43006043002 +53590 n43006043002 +53600 n43006052006 +53606 n43006043002 +n43006052006 +53614 n43006052006 +53620 n43006052006 +53632 n43006053016 +53639 n43006052006 +53642 n43006053005 +53647 n43006053005 +53653 n43006053005 +53655 n43006054002 +53662 n43006053005 +53669 n43006053005 +53675 n43006053005 +53680 n43006053005 +53684 n43006053005 +53686 n43006053005 +53688 n43006056002 +53691 n43006053005 +53695 n43006053005 +53703 n43006053005 +n43006057014 +53707 n43006053005 +n43006053005 +53725 n43006058004 +53744 n43006053005 +53754 n43006060012 +53761 n43006061004 +53765 n43006060012 +53768 n43006061004 +53770 n43006061012 +n43006060012 +n43006061012 +53798 n43006063012 +n43006061004 +53801 n43006061012 +53810 n43006061012 +53812 n43006064005 +53831 n43006064014 +53835 n43006064002 +53837 n43006061012 +53843 n43006064014 +53848 n43006065008 +53857 n43006064014 +53865 n43006064014 +53875 n43006067006 +53879 n43006067004 +53891 n43006067006 +53896 n43006068005 +53903 n43006067006 +53907 n43006070004 +n43006067006 +53914 n43006070009 +53925 n43006071004 +53928 n43006070004 +53951 n43007001006 +53967 n43007001006 +53970 n43007001006 +53972 n43007001009 +53982 n43007001006 +53986 n43007001006 +n43007003022 +53997 n43007004001 +54005 n43007001006 +54012 n43007001006 +54015 n43007001006 +54018 n43007005004 +54024 n43007006005 +54031 n43007005004 +54040 n43007005004 +54042 n43007006005 +54045 n43007006005 +54048 n43007007004 +54052 n43007007004 +54055 n43007005004 +54060 n43007006005 +54066 n43007008005 +54069 n43007006005 +54076 n43007005004 +54086 n43007006005 +54092 n43007006005 +54104 n43007006005 +54112 n43007006005 +54116 n43007006005 +54141 n43007006005 +54165 n43007014007 +54172 n43007015004 +54177 n43007016004 +54181 n43007016004 +54185 n43007016004 +54191 n43007016016 +54203 n43007016004 +54205 n43007016004 +54209 n43007018004 +54214 n43007018004 +54223 n43007018012 +n43007018012 +54230 n43007018012 +54236 n43007015004 +54242 n43007015004 +54247 n43007016004 +54256 n43007016004 +54263 n43007020003 +54268 n43007020003 +54274 n43007020003 +54304 n43007021002 +54329 n43007021002 +54340 n43007021002 +54349 n43007021002 +54354 n43007021002 +54377 n43007028008 +54385 n43007028008 +54393 n43007028008 +n43007028026 +n43007025003 n43007020003 +54398 n43007028008 +54400 n43007028026 +54403 n43007028026 +54405 n43007028026 +n43007028008 +54410 n43007028008 +54416 n43007028008 +54424 n43007028008 +54432 n43007028008 +54444 n43007028008 +54453 n43007028008 +54465 n43007028008 +54474 n43007032005 +54481 n43007033004 +54483 n43007033004 +54490 n43007033004 +54492 n43007032005 +54500 n43007035004 +54503 n43007033004 +54506 n43007035004 +54509 n43007033004 +54527 n43007036004 +54530 n43007033004 +54537 n43007033004 +54539 n43007035004 +54562 n43007037012 +54568 n43007037012 +54579 n43007038002 +54582 n43007038014 +54587 n43007039006 +54593 n43007037012 +54611 n43007039019 +54618 n43007039019 +54647 n43007042014 +54660 n43007039019 +54664 n43007043006 +54667 n43007039019 +54672 n43007039019 +54686 n43007045004 +n43007045007 n43007045009 +54692 n43007039019 +54707 n43007046003 +54712 n43007046003 +54721 n43007039019 +54729 n43007043006 +54739 n43007047005 +54744 n43007039019 +54749 n43007047005 +54753 n43007047005 +54762 n43007051007 +54770 n43007050002 +54773 n43007050002 +54790 n43007047005 +54794 n43007053003 +54816 n43008001001 +54820 n43008002011 +54829 n43008001001 +54836 n43008003010 +54840 n43008001001 +54842 n43008003010 +54853 n43008003004 n43008003007 +54856 n43008004006 +54859 n43008004003 +54863 n43008005014 +54866 n43008001001 +54870 n43008001001 +54886 n43008006012 +54890 n43008003004 n43008003007 +54893 n43008003004 n43008003007 +54898 n43008003010 +54909 n43008003004 n43008003007 +54948 n43008009026 +54961 n43008009026 +54967 n43008009026 +54971 n43008011010 +n43008009026 +54980 n43007047005 +54985 n43008012006 +54993 n43008012006 +55008 n43008012006 +55011 n43008012006 +55013 n43008012006 +55017 n43008012006 +55025 n43008013005 +55027 n43008014002 +55030 n43008014002 +55035 n43008014002 +55044 n43008013005 +55052 n43008013005 +55057 n43008014002 +55065 n43008014002 +55069 n43008014002 +55077 n43008014002 +55081 n43008014002 +55088 n43008013005 +55097 n43008014002 +55102 n43008014002 +55106 n43008014002 +55109 n43008014002 +55113 n43008014002 +55118 n43008014002 +55122 n43008019010 +55127 n43008019010 +55129 n43008019010 +55135 n43008019010 +55151 n43008019010 +55157 n43008019010 +55161 n43008013005 +n43008019010 +55166 n43008019010 +55171 n43008013005 +55174 n43008019010 +55177 n43008013005 +55186 n43008019010 +55190 n43008019010 +55193 n43008022004 +55198 n43008022004 +n43008022004 +55204 n43008019010 +55209 n43008022004 +55215 n43008019010 +55221 n43008023018 +55224 n43008022004 +55230 n43008022004 +55236 n43008019010 +55242 n43008022004 +55245 n43008019010 +n43008019010 +55250 n43008022004 +55254 n43008025014 +55259 n43008022004 +55263 n43008022004 +55270 n43008025010 +55274 n43008025010 +55277 n43008026010 +n43008026016 +55288 n43008022004 +55303 n43008028005 +55307 n43008028005 +55313 n43008028005 +55321 n43008028005 +55323 n43008028005 +55327 n43008028005 +55330 n43008028005 +55333 n43008029003 +55337 n43008028005 +55342 n43008028005 +55350 n43008031004 +55353 n43008031009 +55359 n43008031004 +55362 n43008031004 +55372 n43008031009 +55375 n43008031004 +55384 n43008031004 +55390 n43008031009 +55396 n43008031009 +55428 n43008031009 +55440 n43008034004 +55446 n43008034004 +55450 n43008031009 +55452 n43008034004 +55460 n43008031009 +55470 n43008034004 +55473 n43008031009 +55477 n43008031009 +55494 n43008039013 +55496 n43008040006 +55499 n43008031009 +55501 n43008040009 +55506 n43008040003 +55510 n43008031009 +55516 n43008031009 +55518 n43008039013 +n43008031009 +55530 n43008031009 +55537 n43008031009 +55541 n43008042004 +55543 n43008042004 +55553 n43008042004 +55556 n43008042018 +n43008042004 +55564 n43008042004 +55574 n43008042004 +n43008031009 +55587 n43008031009 +55590 n43008044012 +55606 n43008044012 +55613 n43008044012 +55621 n43008044042 +55623 n43008042004 +55630 n43008042004 +55633 n43008031009 +55635 n43008042004 +55643 n43008031009 +55646 n43008042004 +55658 n43008047019 +n43008031009 +55673 n43008042004 +55677 n43008048003 +55681 n43008042004 +55687 n43008049002 +55695 n43008049002 +55697 n43008048003 +55699 n43008049002 +55701 n43008049002 +55706 n43008049002 +55715 n43008048003 +55719 n43008049002 +55730 n43008049002 +55744 n43008049002 +55750 n43008049002 +55760 n43008049002 +55765 n43008052004 +55767 n43008053006 +55774 n43008049002 +55779 n43008054002 +55781 n43008054002 +55784 n43008054002 +55790 n43008054002 +55793 n43008054002 +n43008054014 +n43008052004 +55799 n43008052004 +55804 n43008054017 +55806 n43008054002 +55808 n43008054017 +55814 n43008054017 +55817 n43008052004 +55821 n43008054017 +55825 n43008054017 +55830 n43008052004 +55837 n43008054002 +55847 n43008054002 +55856 n43008057004 +55861 n43008057004 +55865 n43008058003 +55873 n43008058003 +55891 n43008059008 +55894 n43008059008 +55899 n43009001004 +55903 n43009001004 +55910 n43009001004 +55915 n43009001004 +55924 n43009001004 +55926 n43009003002 n43009002005 +55932 n43009003002 +55963 n43009003002 +55971 n43009001004 +55979 n43009007010 +55995 n43009001004 +56003 n43009001004 +56012 n43009008018 +56019 n43009008018 +56021 n43009001004 +56024 n43009001004 +56028 n43009001004 +56032 n43009001004 +56036 n43009001004 +56046 n43009001004 +56051 n43009001004 +56066 n43009001004 +56069 n43009011004 +56074 n43009001004 +56094 n43009013008 +56100 n43009013008 +56107 n43009013008 +56109 n43009015007 +56113 n43009013008 +56130 n43009014011 +56151 n43009016005 +56158 n43009017004 +56161 n43009014011 +56164 n43009017004 +56168 n43009017004 +56179 n43009017004 +56190 n43009017004 +56195 n43009018017 +56197 n43009018020 +56201 n43009018017 +n43009019008 +n43009018017 +56216 n43009018020 +56221 n43009018020 +56225 n43009020004 +56239 n43009018020 +56242 n43009020004 +56245 n43009018020 +56249 n43009018020 +56251 n43009018020 +56257 n43009018020 +56270 n43009014011 +56276 n43009022007 +56279 n43009018020 +56284 n43009018020 +56292 n43009024004 +56297 n43009024004 +56302 n43009022014 +56305 n43009014011 +56312 n43009024004 +56327 n43009024004 +56330 n43009024004 +56333 n43009024004 +56337 n43009022014 +56339 n43009022014 +56350 n43009022014 +56352 n43009014011 +56357 n43009024004 +56360 n43009024004 +56362 n43009014011 +56365 n43009022014 +56370 n43009022014 +56378 n43009014011 +56388 n43009022014 +56391 n43009030016 n43009030020 +56396 n43009022014 +56403 n43009030003 +56421 n43009031004 +56423 n43009031010 +56439 n43009014011 +56449 n43009030003 +56452 n43009030003 +56456 n43009030003 +56458 n43009022014 +56461 n43009030003 +56467 n43009030003 +56471 n43009030003 +56473 n43009030003 +56481 n43009030003 +56491 n43009035015 +56493 n43009030003 +56498 n43009035015 +56503 n43009030003 +n43009035015 +56507 n43009030003 +56513 n43009035002 +56520 n43009039004 +56543 n43009039004 +56547 n43009039004 +56550 n43009040004 +56554 n43009040004 +56571 n43009040004 +56576 n43009040004 +56591 n43010001017 +56615 n43010002003 +56619 n43010002003 +56626 n43010003015 +56629 n43010003015 +56633 n43010004003 +56638 n43010002003 +56644 n43010002003 +56653 n43010005001 +56665 n43009040004 +56669 n43009040004 +56676 n43009040004 +56685 n43009040004 +56687 n43010007005 +56697 n43010007005 +56705 n43010008003 +56708 n43010007005 +56714 n43010007005 +56737 n43010007005 +56745 n43010007005 +56757 n43010011008 +56768 n43010012002 +56773 n43010012002 +56788 n43010012020 +56797 n43010012002 +56801 n43010007005 +56810 n43010007005 +56813 n43010007005 +56815 n43010007005 +56818 n43010007005 +56821 n43010007005 +56828 n43010007005 +56837 n43010016003 +56844 n43010016003 +n43010007005 +56851 n43010007005 +56860 n43010017009 +n43010007005 +56866 n43010007005 +56870 n43010007005 +56874 n43010017011 +56877 n43010017011 +56879 n43010007005 +56881 n43010007005 +56883 n43010017011 +56885 n43010007005 +56889 n43010017011 +56895 n43010017011 +n43010018014 n43010018020 +56903 n43010007005 +56918 n43010019006 +56924 n43010007005 +56928 n43010019009 +56963 n43010023004 +56968 n43010023004 +56973 n43010024005 +56976 n43010023004 +56981 n43010024005 +56984 n43010024005 +56988 n43010024005 +56994 n43010025011 +n43010025004 +57002 n43010025004 +n43010025011 +57006 n43010025004 +57008 n43010024005 +57018 n43010025004 +57022 n43010025004 +57025 n43010025004 +57027 n43010025004 +57029 n43010027002 +57032 n43010025004 +n43010025004 +57035 n43010027002 +57049 n43010027002 +57053 n43010025004 +57056 n43010025004 +57059 n43010025004 +57072 n43010025004 +57085 n43010025004 +57087 n43010031005 +57094 n43010031005 +57100 n43010032006 +57102 n43010032004 +57105 n43010032004 +57113 n43010032004 +57119 n43010032004 +57123 n43010032004 +57126 n43010033004 +57135 n43010033004 +57137 n43010033021 +57146 n43010035002 +57158 n43010034004 +57167 n43010033004 +57184 n43010034004 +57187 n43010034004 +57192 n43010034004 +57204 n43010034004 +57207 n43010034004 +57213 n43010034004 +57221 n43010033004 +57231 n43010040009 +57239 n43010040009 +57244 n43010034004 +57259 n43010034004 +57266 n43010034004 +n43010040009 +57283 n43011001011 +57296 n43011002007 +57299 n43011002005 +n43011002003 +57310 n43010034004 +57314 n43011002019 +57322 n43011003012 +57342 n43011004008 +57352 n43011005006 +57365 n43011006012 +57372 n43011006008 +57382 n43011005004 +57388 n43011008005 +57395 n43011007010 +57433 n43011010003 +57438 n43011011002 +57440 n43011008004 +57444 n43011009002 n43011008004 +57450 n43011011008 +57455 n43011009002 +57467 n43011005013 +57469 n43011012004 +57481 n43011012004 +57490 n43011012004 +57500 n43011014008 +57511 n43011016003 n43011016008 +57515 n43011014006 +57521 n43011005013 +57552 n43011019009 n43011019011 +57565 n43011020007 +57587 n43011021004 +57598 n43011021007 +57602 n43011021004 +57608 n43011021004 +57610 n43011023004 +57624 n43011024004 +57627 n43011025004 +57637 n43011025004 +57648 n43011025004 +57656 n43011025018 n43011026011 +57658 n43011025004 +57661 n43011024004 +57664 n43011027004 +57678 n43011027006 +57686 n43011024004 +57694 n43011028007 +57696 n43011028007 +57704 n43011025004 +57719 n43011030014 +57721 n43011030005 +57730 n43011028007 +57736 n43011028007 +57746 n43011031016 +57755 n43011031029 +57765 n43011032008 +57768 n43011032008 +57772 n43011032008 +57780 n43011032003 +57787 n43011032003 +57792 n43011032003 +57800 n43011033001 +57805 n43011032027 +57807 n43011033001 +57822 n43011019017 +57826 n43011036004 +57830 n43011035003 +57840 n43011019017 +57848 n43011038001 +57860 n43011038013 +57868 n43011039003 +57881 n43011039010 +57886 n43011039010 +57910 n43011041014 +57913 n43011041007 +57915 n43011041007 +57919 n43011041007 +57931 n43011041014 +n43011041007 +57956 n43011044003 +57960 n43011036004 n43011039010 n43011032003 +57964 n43011044003 +57967 n43011044003 +57985 n43011044020 +57989 n43011045005 +57996 n43011046008 +58013 n43011046014 +58021 n43011047016 +58026 n43011047016 +58033 n43011047004 n43011047007 +58044 n43011047004 n43011047007 +58052 n43011047004 n43011047007 +n43011047004 n43011047007 +58061 n43011047004 n43011047007 +58076 n43011050004 +58078 n43011049001 +58086 n43011049010 +58121 n43011051016 +58133 n43011007010 +58169 n43011055010 +58177 n43011055010 +58184 n43011055010 +58209 n43011056004 +58221 n43012001011 +58224 n43012001014 +58231 n43012001019 +58233 n43012001011 +58247 n43012001019 +58266 n43012003003 +58269 n43012003014 +58287 n43012003014 +58290 n43012003014 +58294 n43012003031 +58306 n43012005007 n43012005011 +58313 n43012004003 +58330 n43012003003 +58337 n43012007004 +58339 n43012005005 +58346 n43012004003 n43012004009 +58348 n43012007004 +58361 n43012001011 +58376 n43012009023 +58394 n43012010008 +58426 n43012012014 +58448 n43012014005 +58459 n43012015003 +58468 n43012014004 +58484 n43012016012 +58488 n43012016012 +58496 n43012016012 +58506 n43012017011 +58510 n43012018009 +58513 n43012016012 +58518 n43012018012 +n43012016012 +58528 n43012019003 +58538 n43012016012 +58553 n43012020003 +58563 n43012021004 +58589 n43012020003 +58603 n43012020003 +58615 n43012024008 +58628 n43012025002 +58630 n43012025004 +58636 n43012025010 +58645 n43012025012 +58647 n43012023003 +58650 n43012023003 +58655 n43012023003 +n43012026008 +58661 n43012023003 +58665 n43012023003 +58668 n43012026019 +58674 n43012023003 +58681 n43012023003 +58693 n43012027014 +58696 n43012028001 +58723 n43012023003 +58731 n43012030002 +58734 n43012028008 +58738 n43012029003 n43012029011 +58750 n43012031005 +58754 n43012030002 +58762 n43012030002 +58764 n43012032008 +58773 n43012030002 +58776 n43012034005 +58791 n43012030002 +58801 n43012034026 +58808 n43012034005 +58817 n43012034005 +58827 n43012034005 +58858 n43012034005 +58860 n43012036015 +58865 n43012034005 +58869 n43012036015 +58877 n43012038003 +58892 n43012039008 +58930 n43012036015 +58934 n43012036015 +58944 n43012036015 +58975 n43012044001 +58979 n43012044001 +58984 n43012044001 +58988 n43012044001 +58992 n43012044001 +n43012044001 +59004 n43012044001 +59014 n43012044001 +59020 n43012044001 +59023 n43012047003 +59038 n43012044001 +59044 n43012044001 +59048 n43012048002 +59051 n43012048015 +59053 n43012048015 +59055 n43012048002 +59061 n43012044001 +59063 n43012044001 +59069 n43012044001 +59071 n43012049011 +n43012044001 +59085 n43012049011 +59091 n43012044001 +59095 n43012044001 +59111 n43013001009 +59125 n43013001009 +59133 n43013001026 +59146 n43013001009 +59154 n43013001009 +59182 n43013001009 +59200 n43013005017 +59209 n43013001009 +59211 n43013006008 +59213 n43013006004 +59220 n43013006004 +59222 n43013007002 +59224 n43013006004 +59233 n43013007002 +59238 n43013008003 +59246 n43013008003 +59250 n43013008003 +59255 n43013008014 +59257 n43013008014 +59264 n43013009003 +59274 n43013009003 +59291 n43013009003 n43013005013 +59296 n43013005013 n43013009003 +59301 n43013010003 +59303 n43013011001 +59307 n43013009003 n43013005013 +59315 n43013005013 +59320 n43013010003 +59325 n43013005013 +59329 n43013005013 +n43013005013 +59332 n43013010003 +59345 n43013010003 +59352 n43013005013 +59356 n43013005013 +59359 n43013005013 +59365 n43013005013 +59368 n43013014009 +59370 n43013005013 +59372 n43013005013 +59377 n43013005013 +59384 n43013016007 +59390 n43013016013 +59398 n43013017002 +59402 n43013005013 +59404 n43013014009 +59423 n43013018016 +59427 n43013005013 +59436 n43013014009 +59441 n43013005013 +59447 n43013014009 +59451 n43013014009 +59456 n43013014009 +59470 n43013005013 +59474 n43013005013 +59476 n43013021003 +59479 n43013022005 +59492 n43013023012 +59498 n43013023003 +59504 n43013023003 +59509 n43013023003 +59516 n43013023003 +59525 n43013025008 +59535 n43013026005 +n43013026004 +59542 n43013026005 +59560 n43013026022 +59565 n43013026022 +59576 n43013027018 +59580 n43013026022 +59591 n43013029008 +59610 n43013029008 +59632 n43013031009 +59638 n43013031009 +59643 n43013031009 +59645 n43013032003 +59649 n43013031009 +59654 n43013033001 +59657 n43013031005 +59665 n43013031005 +59668 n43013033013 +59672 n43013033001 +59678 n43013033001 +59681 n43013033001 +59684 n43013033001 +59687 n43013033001 +59689 n43013033001 +59691 n43013035011 +59695 n43013031005 +59702 n43013033001 +59704 n43013031005 +59714 n43013036009 +59723 n43013036009 +59730 n43013037004 +59735 n43013037003 +59737 n43013037004 +59743 n43013037003 +59745 n43013038002 +59750 n43013037003 +59758 n43013038002 +59762 n43013023006 n43013037003 +59771 n43013038002 +59778 n43013038002 +59787 n43013023006 n43013037003 +59792 n43013023006 n43013037003 +59799 n43013023006 n43013037003 +59804 n43013023006 n43013037003 +59806 n43013038002 +59810 n43013038002 +59812 n43013023006 n43013037003 +59816 n43013038002 +59822 n43013038002 +59834 n43014005003 +59836 n43014006003 +59854 n43014006003 +59857 n43014006003 +59862 n43014006003 +59867 n43014007006 +59871 n43014006003 +59875 n43013023006 n43014008003 n43014005003 n43013037003 +59880 n43013023006 n43014008003 n43014005003 n43013037003 +59882 n43014008003 +59888 n43014009014 n43013023006 n43014005003 n43013037003 +59893 n43014009004 +59897 n43014009004 +59902 n43014009014 +59905 n43014009014 n43013023006 n43014005003 n43013037003 +59911 n43014009004 +59919 n43014009004 +59923 n43014010015 +n43014009004 +59926 n43014009014 n43013023006 n43014005003 n43013037003 +59928 n43014009004 +59935 n43014009004 +59940 n43014010026 +59959 n43014011018 +59964 n43013023006 n43014009014 n43014005003 n43013037003 +59968 n43014009004 +59971 n43014012010 +n43014009004 +59974 n43014012006 +59978 n43014012010 +59981 n43014009004 +59989 n43014013003 +59994 n43014009004 +n43014013003 +60007 n43014009004 +60011 n43014009004 +n43014009004 +60016 n43014009004 +60020 n43014009004 +60022 n43014009004 +60030 n43013023006 n43014009014 n43014005003 n43013037003 +60034 n43013023006 n43014009014 n43014005003 n43013037003 +60042 n43014017002 +60051 n43014017002 +60054 n43013023006 n43014009014 n43014005003 n43013037003 +60056 n43014017002 +60059 n43013023006 n43014009014 n43014005003 n43013037003 +60063 n43013023006 n43014009014 n43014005003 n43013037003 +60067 n43013023006 n43014009014 n43014005003 n43013037003 +60071 n43013023006 n43014009014 n43014005003 n43013037003 +60077 n43014009004 +60081 n43013023006 n43014009014 n43014005003 n43013037003 +60083 n43014009004 +60085 n43014009004 +60088 n43013023006 n43014009014 n43014005003 n43013037003 +60095 n43013023006 n43014009014 n43014005003 n43013037003 +60097 n43014009004 +60101 n43014009004 +60103 n43013023006 n43014009014 n43014005003 n43013037003 +60105 n43014009004 +n43014009004 +60108 n43013023006 n43014009014 n43014005003 n43013037003 +60113 n43014009004 +60116 n43014021004 +n43014021002 +60121 n43014009004 +60125 n43014009004 +60130 n43014009004 +n43014009004 +60133 n43014021016 +60136 n43014021016 +n43014009004 +60139 n43014009004 +60150 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60152 n43014022007 +60161 n43014022003 +60165 n43014023002 +60168 n43014023002 +60173 n43014023002 +60175 n43014023007 +60178 n43014023007 +60183 n43014023007 +60188 n43014023002 +60191 n43014023002 +60197 n43014024012 +60201 n43014023002 +60205 n43014023002 +60209 n43013023006 n43014022003 n43013037003 n43014005003 n43014008003 +60211 n43013023006 n43014022003 n43013037003 n43014005003 n43014008003 +60220 n43014026005 +60227 n43014023002 +n43014026003 +n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60234 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60238 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +n43014023002 +60242 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60245 n43014023002 +60247 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60253 n43014023002 +60255 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60258 n43013023006 n43014022003 n43014005003 n43014008003 n43013037003 +60265 n43014023002 +60267 n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60272 n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60275 n43014023002 +60287 n43014023002 +60292 n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60303 n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60312 n43014023002 +60328 n43014023002 +60336 n43014023002 +60345 n43014023002 +60352 n43014023002 +60357 n43015002002 +60364 n43015002014 +60370 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60376 n43015003007 +60378 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60381 n43014023002 +n43014023002 +60384 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60393 n43015004009 +60402 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60406 n43014023002 +60408 n43014023002 +60412 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60418 n43014023002 +n43014023002 +60421 n43015005009 +n43015005009 +60428 n43014023002 +60438 n43014023002 +60448 n43015006011 +60459 n43014023002 +60463 n43014023002 +60465 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60473 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60475 n43015008010 n43015008014 +60479 n43014023002 +60486 n43014023002 +60490 n43014023002 +60493 n43014023002 +n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60501 n43014023002 +60505 n43014023002 +60511 n43014023002 +60513 n43014023002 +60516 n43014023002 +60518 n43014023002 +60523 n43015010014 +60528 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60533 n43014023002 +60535 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60540 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60542 n43015012008 +60547 n43014023002 +60550 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60553 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60555 n43015013011 +60563 n43015013007 +60568 n43015013007 +n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60571 n43014023002 +60576 n43014023002 +60578 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60581 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60590 n43015015007 +60594 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60604 n43014023002 +60606 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60608 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +n43014023002 +60612 n43014023002 +60614 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60617 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60619 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60627 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60632 n43015016025 +60639 n43014023002 +60641 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60644 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60647 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60651 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60655 n43014023002 +60657 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60668 n43015019007 +60678 n43014023002 +60680 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60685 n43015019016 n43015019021 +60687 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60693 n43015020003 +n43014023002 +60696 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60703 n43015020010 +60705 n43014023002 +60708 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60713 n43014023002 +60717 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60724 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60728 n43014023002 +60734 n43014023002 +60740 n43015019031 +60752 n43015019031 +60754 n43014023002 +60759 n43014023002 +60767 n43015023003 +n43015024003 +60782 n43014023002 +60786 n43014023002 +60796 n43015023003 +60800 n43014023002 +60806 n43015026004 +n43014023002 +60809 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60817 n43015026013 +60822 n43015026004 +60825 n43014023002 +60828 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60834 n43014023002 +60838 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60844 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60852 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60859 n43016002002 n43016002012 +60867 n43014023002 +60871 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60877 n43016004002 +60879 n43016004002 +60881 n43014023002 +60883 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60886 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60893 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60901 n43014023002 +60905 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60907 n43014023002 +60914 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60918 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60922 n43014023002 +60926 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60928 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60930 n43014023002 +60942 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60947 n43016007017 +60952 n43016007017 +60971 n43014023002 +60983 n43014023002 +60992 n43016008006 +60997 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61007 n43016007017 +61013 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61022 n43016013006 +61031 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +n43016013006 +n43014023002 +61038 n43014023002 +61042 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61048 n43014023002 +61051 n43016015006 +61056 n43014023002 +61060 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61065 n43014023002 +61071 n43014023002 +61077 n43014023002 +61079 n43016017005 +61082 n43016017015 n43016017022 n43016017028 +n43016017015 n43016017022 n43016017028 +61085 n43016017005 +61090 n43014023002 +61096 n43014023002 +61108 n43016018009 +61120 n43016019002 +61124 n43016017005 +61126 n43016019017 +61129 n43016017005 +61136 n43016019002 +61142 n43016019002 +61146 n43016017005 +61151 n43016017005 +61156 n43016017005 +61161 n43016017005 +61175 n43016021002 +61197 n43016017005 +61204 n43016017005 +61207 n43016017005 +61213 n43016017005 +61217 n43016017005 +61223 n43016019002 +61230 n43016017005 +61239 n43016019002 +61241 n43016017005 +61250 n43016017005 +61257 n43016017005 +61264 n43016017005 +61272 n43016017005 +61279 n43016017005 +61281 n43016025007 +61287 n43016019002 +61292 n43016017005 +61294 n43016019002 +61299 n43016017005 +61301 n43016027004 +61305 n43016017005 +61307 n43016017005 +n43016019002 +61313 n43016019002 +61339 n43016019002 +61360 n43016019002 +61363 n43016030004 n43016030009 +61370 n43016029003 +61381 n43016029003 +61384 n43016029003 +n43016031003 +61396 n43016031003 +61400 n43016029003 +61403 n43016031003 +61413 n43016031003 +61424 n43017001003 +61434 n43017001013 +61441 n43017001013 +61444 n43017001023 +61452 n43017001023 +61454 n43017002010 +61458 n43017003008 +61465 n43017001013 +61471 n43017003017 +61475 n43017001003 +n43017003013 +61484 n43017004008 +61486 n43017001003 +61493 n43017001003 +n43017005006 +61496 n43017005006 +61499 n43017005010 +61507 n43017005006 +61509 n43017005006 +61514 n43017006006 +61516 n43017001003 +61520 n43017005006 +61522 n43017001003 +n43017006006 +61528 n43017005006 +61536 n43017001003 +61538 n43017005006 +61543 n43017008003 +61545 n43017001003 +61547 n43017006006 +61549 n43017006006 +61556 n43017005006 +61561 n43017005006 +n43017001003 +61564 n43017001003 +61566 n43017006006 +61577 n43017001003 +61579 n43017005006 +61583 n43017001003 +61585 n43017005006 +61589 n43017005006 +n43017001003 +61594 n43017009013 +61602 n43017009013 +61607 n43017001003 +61609 n43017005006 +61614 n43017009013 +61618 n43017011017 +n43017011023 +61621 n43017001003 +61626 n43017011017 n43017001003 +61630 n43017009013 +n43017001003 +61633 n43017009013 +61637 n43017011017 +n43017012010 +61640 n43017001003 +61646 n43017009013 +61661 n43017011017 +61674 n43017001003 +61677 n43017009013 +n43017001003 +61680 n43017009013 +61683 n43017011017 +61688 n43017009013 +61696 n43017001003 +61706 n43017009013 +61713 n43017009013 +61723 n43017001003 +61730 n43017009013 +61737 n43017011017 +61741 n43017001003 +61746 n43017001003 +61748 n43017009013 +61754 n43017009013 +n43017001003 +61757 n43017001003 +61762 n43017009013 +61768 n43017009013 +61779 n43017009013 +61781 n43017001003 +61783 n43017009013 n43017020011 +61788 n43017021007 +61790 n43017001003 +n43017001003 +61793 n43017021007 +61796 n43017009013 n43017020011 +61798 n43017001003 n43017021007 +61805 n43017021007 +n43017001003 +61808 n43017001003 +61811 n43017022003 +61813 n43017001003 +61815 n43017009013 n43017020011 +61820 n43017021007 n43017001003 +61822 n43017001003 +61824 n43017009013 n43017020011 +61826 n43017021007 +61828 n43017001003 +61839 n43017021007 +n43017001003 +61844 n43017009013 n43017020011 +61846 n43017001003 +61851 n43017001003 +61856 n43017001003 +n43017024003 +61860 n43017001003 +61866 n43017001003 +n43017024017 +61869 n43017001003 +61872 n43017001003 +61881 n43017025001 +61885 n43017001003 +n43017025001 +61889 n43017024003 +61892 n43017025001 +n43017001003 +61897 n43017024003 +61900 n43017025001 +61906 n43017026011 +61908 n43017001003 +61910 n43017024003 +61912 n43017026014 +61914 n43017024003 +61922 n43018001003 +61928 n43018001013 +61932 n43018001016 +61934 n43018001003 +61938 n43018001003 +61945 n43018001003 +61952 n43018002009 +61956 n43018002013 +61973 n43018002009 +61987 n43018004001 +61991 n43018003006 n43018003015 +61995 n43018004001 +62000 n43018003006 n43018003015 +n43018004001 +62009 n43018004001 +62011 n43018003006 n43018003015 +62015 n43018003006 n43018003015 +n43018004001 +62028 n43018003006 n43018003015 +62032 n43018003006 n43018003015 +62040 n43018003006 n43018003015 +62042 n43018008002 +62046 n43018008002 +62049 n43018002017 +62055 n43018009004 +62060 n43018008002 +62064 n43018009009 +62072 n43018010005 +62081 n43018010013 +62106 n43018011014 +62108 n43018011004 +62114 n43018011014 +62131 n43018012014 +62142 n43018013010 +62175 n43018015009 +62225 n43018017004 +62231 n43018015021 +62234 n43018017004 +62256 n43018018004 n43018018007 +62270 n43018019006 +62275 n43018019006 +62277 n43018019003 +62279 n43018020003 +62284 n43018020003 +62293 n43018020017 +62304 n43018020003 +62311 n43018021006 +62313 n43018021006 +62317 n43018020003 +62320 n43018020003 +62336 n43018022005 +62349 n43018023003 +62353 n43018023003 +62370 n43018025003 +62373 n43018025003 +62377 n43018023003 +62380 n43018025003 +62394 n43018010025 +62400 n43018026002 +62402 n43018026012 +62407 n43018023003 +62430 n43018031019 +62449 n43018031019 +62456 n43018028004 +62461 n43018029004 +62466 n43018029015 +62470 n43018029004 +62472 n43018029015 +62475 n43018031019 +62479 n43018029015 +n43018031019 +62485 n43018031019 +62487 n43018029015 +62489 n43018031005 +62492 n43018031019 +62503 n43018032003 +62524 n43018033012 +n43018033012 +62534 n43018033008 +n43018033008 +n43018033019 +62541 n43018033008 +62543 n43018034002 +62548 n43018035003 +62554 n43018034002 +62559 n43018034002 +n43018035003 +62568 n43018036002 +62579 n43018036011 +62584 n43018036002 +62589 n43018036002 +62601 n43018036002 +62604 n43018036016 +62607 n43018036002 +62613 n43018036002 +62617 n43018037005 +62622 n43018037012 +62624 n43018037030 +62628 n43018037030 +62644 n43018037012 +62648 n43018037012 +62655 n43018038005 +62664 n43018038015 +n43018038004 +62669 n43018037012 +62674 n43018038015 +62678 n43018038015 +62685 n43018038015 +62695 n43018037012 +62721 n43019001007 +62728 n43019001007 +62732 n43019001007 +62742 n43019001007 +62752 n43018038015 +62755 n43018038015 +n43019001007 +62765 n43019001007 +62781 n43018038015 +62788 n43019005004 +62799 n43019006006 n43019006009 +62803 n43019005004 +n43019006006 n43019006009 +62808 n43019006017 +62812 n43019005004 +62815 n43019006017 +62818 n43019007004 +62830 n43019005004 +62837 n43019007007 n43019007012 +62854 n43019009010 +62861 n43019008005 +62864 n43019009016 +62868 n43019010005 +62876 n43019009016 +62881 n43019009016 +62889 n43019011002 +62894 n43019010005 +62897 n43019011004 +62900 n43019011002 +n43019010005 +62911 n43019011002 +62918 n43019011002 +62928 n43019012025 +62939 n43019012018 n43019012026 +62971 n43019014013 +62974 n43019014013 +62978 n43019013011 +62980 n43019014013 +62985 n43019014013 +62999 n43019013011 +n43019014013 n43019015018 +63009 n43019016011 +63018 n43019017011 +63022 n43019017011 +n43019016011 +63027 n43019016011 +63059 n43019019004 +63073 n43019020013 +63099 n43019020019 +63121 n43019023007 +63146 n43019023003 +63149 n43019023025 +63153 n43019023025 +63163 n43019023007 +63169 n43019023007 +63176 n43019024020 n43019024030 +63187 n43019025007 +63193 n43019025007 +63211 n43019026008 +63220 n43019026015 +63228 n43019027004 +63237 n43019026014 +63240 n43019027016 +63268 n43019028005 +63317 n43019030007 n43019018008 +63338 n43019030007 +63347 n43019033004 +63351 n43019033004 +63359 n43019033004 +63376 n43019035003 +63380 n43019035003 +63445 n43019038026 +63453 n43019038026 +63473 n43019040004 +63489 n43019041005 +63499 n43019041013 +63505 n43019041013 +63555 n43020002012 +63561 n43020002006 n43020002012 +63573 n43020002022 +63621 n43020004009 +63635 n43020007003 +63640 n43020002016 +63676 n43020002016 +63684 n43020010007 +63726 n43020011001 +n43020012004 +63732 n43020012004 +63737 n43020011001 +63743 n43020013013 +n43020013011 n43020013017 +63762 n43020011001 +63769 n43020011001 +63776 n43020015003 +63779 n43020015017 +63781 n43020015003 +63783 n43020011001 +63786 n43020015003 +n43020011001 +n43020015003 +63791 n43020011001 +63795 n43020011001 +63797 n43020016003 +63800 n43020016010 +63804 n43020011001 +63807 n43020017003 +63820 n43020017003 +63823 n43020017017 +63828 n43020017003 +63831 n43020017017 n43020011001 +63834 n43020017003 +63837 n43020017017 n43020011001 +63852 n43020018002 +63885 n43020019017 +63887 n43020019017 +63889 n43020019034 +63898 n43020019017 +63908 n43020020015 +63913 n43020020015 +63916 n43020021005 +63919 n43020021005 +63921 n43020020015 +63923 n43020021007 n43020021015 +63928 n43020020015 +63938 n43020023003 +63955 n43020020015 +63961 n43020024001 +63969 n43020024001 +63971 n43020025006 +63978 n43020025009 +63987 n43020024001 +63995 n43020024001 +64001 n43020025009 +64014 n43020024016 +64018 n43020026009 +64033 n43020026009 n43020026012 +64041 n43020027004 +n43020025032 +64047 n43020026017 +64052 n43020027004 +64058 n43020026017 +64069 n43020026017 +64072 n43020028002 +64076 n43020028002 +64078 n43020028002 +64083 n43020029004 +64103 n43020030006 +64133 n43020031007 +64137 n43021001006 +64175 n43021001006 +64178 n43021002006 n43021002011 n43021002018 n43021002027 +64184 n43021003003 +64187 n43021002006 n43021002011 n43021002018 n43021002027 +64189 n43021003003 +64222 n43021004014 +64230 n43021005004 +64233 n43021005004 +64235 n43021004014 +64251 n43021006013 +64264 n43021007004 +64289 n43021007015 +64332 n43021007015 n43021008004 +64339 n43021010008 +64366 n43021011002 n43021008004 +64376 n43021012004 +n43021012004 +64393 n43021012011 +64420 n43021015009 +64422 n43021014007 +64424 n43021015009 +64427 n43021015019 +64431 n43021015019 +64433 n43021015006 +64437 n43021015009 +64439 n43021015006 +64445 n43021015009 +64447 n43021015009 +64450 n43021016012 +64454 n43021016012 +64456 n43021015006 +64460 n43021015009 +64462 n43021015006 +64468 n43021015009 +64474 n43021017011 +64478 n43021015009 +64481 n43021015009 +64484 n43021017022 +64486 n43021017022 +64490 n43021017022 +64492 n43021017011 +64497 n43021017033 +64501 n43021017011 +64506 n43021017011 +64517 n43021017011 +64521 n43021017011 +64528 n43021018008 n43021018017 +64537 n43021018008 n43021018017 +64540 n43021017011 +64542 n43021017033 +64549 n43021020006 +64554 n43021020006 +64563 n43021020010 +64571 n43021020024 +64573 n43021020006 +64582 n43021020006 +64585 n43021021005 +64589 n43021020006 +64596 n43021021005 +n43021021005 +n43021022004 +64602 n43021023014 +64611 n43021020006 +64617 n43021023011 +64625 n43021023011 +64632 n43021021005 +n43021023011 +64649 n43021023011 +64658 n43021025004 +64663 n43021025004 +64669 n43021025019 +64699 n44001002006 +64705 n44001002006 +64708 n44001001013 +64713 n44001001013 +64721 n44001002006 +64733 n44001002006 +64744 n44001004012 +64746 n44001001013 +64753 n44001002006 +64765 n44001002006 +64768 n44001001013 +64783 n44001002006 +64785 n44001002006 +64791 n44001007008 n44001007010 +64797 n44001007013 +64807 n44001002006 +64810 n44001001013 +64831 n44001002006 +64836 n44001001013 +64840 n44001002006 +64849 n44001001013 +64855 n44001002006 +64859 n44001010012 +64870 n44001001013 +64876 n44001011004 +64885 n44001011014 +64899 n44001012006 +64913 n44001013006 +64940 n44001013013 n44001013015 n44001013017 n44001013019 n44001013020 n44001013022 n44001013023 n44001013025 n44001013026 n44001013029 n44001013033 +64988 n44001016006 +65009 n44001015007 n44001013015 n44001013017 n44001013019 n44001013020 n44001013022 n44001013023 n44001013025 n44001013026 n44001013029 n44001013033 +65019 n44001016017 +65036 n44001016017 +65048 n44001018005 +65050 n44001019006 +65052 n44001019006 +65054 n44001019017 +65074 n44001020008 +65086 n44001015007 n44001013015 n44001013017 n44001013019 n44001013020 n44001013022 n44001013023 n44001013025 n44001013026 n44001013029 n44001013033 +65090 n44001021009 +65095 n44001015007 n44001013015 n44001013017 n44001013019 n44001013020 n44001013022 n44001013023 n44001013025 n44001013026 n44001013029 n44001013033 +65107 n44001022008 +65110 n44001015007 n44001013015 n44001013017 n44001013019 n44001013020 n44001013022 n44001013023 n44001013025 n44001013026 n44001013029 n44001013033 +65114 n44001021017 +65116 n44001015007 n44001013015 n44001013017 n44001013019 n44001013020 n44001013022 n44001013023 n44001013025 n44001013026 n44001013029 n44001013033 +65119 n44001021006 +65127 n44001023004 +65138 n44001024005 +65140 n44001024015 +65143 n44001023003 +65156 n44001025005 n44001025008 +65164 n44001025012 +65168 n44001023003 +65190 n44001026016 n44001026010 n44001015015 +65211 n44002002016 +65216 n44002001010 +65226 n44002001010 +65229 n44001026016 n44001026010 n44001015015 +65242 n44002004003 +65270 n44002006008 +65273 n44002006013 +65276 n44002004003 +65285 n44002004003 +65292 n44002006008 +65294 n44002006008 +65296 n44002008005 +65298 n44002006008 +65300 n44002008008 +65346 n44002007012 +65348 n44002009001 n44002009003 n44002009005 n44002009008 n44002010017 n44002011005 n44002011007 +65356 n44002006008 +65364 n44002011009 +65385 n44002014004 +65388 n44002012003 +65396 n44002011009 +n44002014015 n44002014019 +65404 n44002014004 +65408 n44002014015 n44002014019 +65410 n44002004003 +65419 n44002011009 +65440 n44002017009 +65448 n44002017017 +65452 n44002017017 +65456 n44002017017 +65462 n44002017017 +65469 n44002017009 +65474 n44002017009 +65478 n44002017006 +65483 n44002017009 +65548 n44002022001 +65554 n44002022017 n44002022019 n44002022021 +65557 n44002022010 +65562 n44002022001 +65564 n44002022001 +65566 n44002022007 +65580 n44002022007 +65594 n44002022007 +65596 n44002024009 +65601 n44002022007 +65606 n44002022007 +65612 n44002022007 +65618 n44002025006 +65620 n44002022007 +65627 n44002022007 +65633 n44002022007 +65642 n44002022007 +65649 n44002025008 +65653 n44002022007 +65657 n44002022007 +65662 n44002025008 +65670 n44002029001 +65683 n44002029011 +65686 n44002014004 n44002014007 n44002029001 +65699 n44002029011 +65706 n44002029011 +65711 n44002029011 +65727 n44002031007 +65730 n44002022007 +65736 n44002032003 +65738 n44002014004 n44002014007 +65759 n44002033011 +n44002033011 +n44002029001 +65775 n44002034003 +65780 n44002034003 +65784 n44002034013 +65790 n44002034014 +65794 n44002034014 +65809 n44002034014 +n44002032003 +65813 n44002036018 +n44002036005 +65837 n44002012003 +65842 n44002012003 +65852 n44002012003 +65861 n44002012003 +65868 n44002012003 +65875 n44002039012 +65880 n44002012003 n44002038001 n44002037014 +65888 n44002012003 +65903 n44002038001 +65910 n44002001006 +65964 n44002045003 n44002045006 +66034 n44003002003 +66037 n44003002003 +66058 n44003002003 +66075 n44003002003 +66082 n44003004003 n44003004008 +66084 n44003002003 +66086 n44003004003 n44003004008 +66090 n44003004003 n44003004008 +66100 n44003006003 +66104 n44003006012 +n44003002003 +66117 n44003002003 +66122 n44003002003 +66128 n44003002003 +66140 n44003006003 n44003004008 +66156 n44003002003 +66164 n44003002003 +66166 n44003002003 +66187 n44003002003 +66190 n44003002003 +66201 n44003011005 n44003011008 n44003002003 +66224 n44003012004 n44003011008 +66228 n44003012004 n44003011008 +66235 n44003002003 +66247 n44003012004 n44003011008 n44003002003 n44003012009 +66251 n44003013002 +66254 n44003013015 +n44003012009 +66263 n44003013026 +66266 n44003012009 +66277 n44003012009 +66284 n44003015003 +66290 n44003015010 +n44003012004 n44003011008 +66300 n44003015003 +n44003002003 +n44003002003 +66309 n44003015003 +66315 n44003015003 +66317 n44003002003 +66323 n44003012009 +66336 n44003017003 +66350 n44003018003 +66360 n44003017003 +66376 n44003017003 +66381 n44003020015 +66388 n44003021007 +66398 n44003021013 +66405 n44003017003 +66413 n44003017003 +66415 n44003022001 +n44003022005 +66424 n44003017003 +66430 n44003023004 +66435 n44003022005 +66450 n44003024005 +66457 n44003017003 +66466 n44003025009 +66473 n44003017003 +66481 n44003025020 +66488 n44003017003 +66495 n44003026005 +66497 n44003026007 +66499 n44003017003 +66503 n44003017003 +66507 n44003017003 +66510 n44003012004 n44003011008 +66515 n44003012004 n44003011008 +66530 n44003012004 n44003011008 +66545 n44003012004 n44003011008 +66580 n44004004004 +66609 n44003012004 n44003011008 +66623 n44003012004 n44003011008 +66631 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66638 n44004008002 n44003011008 +66647 n44004009007 +66652 n44004008009 n44004008013 +66666 n44004010014 +n44004008009 n44004008013 n44004010008 +66669 n44004010014 +66676 n44004010013 +n44004009007 +66680 n44004008009 n44004008013 n44004010008 +66682 n44004010014 +66689 n44004008009 n44004008013 n44004010008 +66718 n44004012011 +66721 n44004008009 n44004008013 n44004010008 n44004008002 n44003011008 n44004012020 +66741 n44004013005 n44004013008 +66754 n44004013005 n44004013008 +66761 n44004013005 n44004013008 +66768 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66774 n44004013005 n44004013008 +66782 n44004016005 +66802 n44004016005 +66808 n44004010013 +66813 n44004013005 n44004013008 +66833 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66840 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66850 n44004019003 n44004019005 +66858 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66861 n44004019003 n44004019005 +66867 n44004019003 n44004019005 +66872 n44004021014 +66887 n44004022007 +66891 n44004016011 +66899 n44004019003 n44004019005 +66904 n44004019003 n44004019005 +66912 n44004023006 +66923 n44004024012 +66938 n44004024017 n44004024020 n44004024023 +66942 n44004023006 n44004019003 n44004019005 +66949 n44004025012 +66978 n44004026015 +66986 n44004016018 +66991 n44004024012 +66993 n44004027012 +67010 n44004024012 +67023 n44004027017 n44004027020 n44004027023 n44004027025 +67028 n44004029004 +67035 n44004029004 +67041 n44004029004 +67055 n44004029004 +67059 n44004023006 +67064 n44004031006 +67069 n44004023006 +67097 n44004032013 +n44004032013 +67103 n44004032003 +67125 n44004032003 +67132 n44004032003 +67155 n44004032003 +67169 n44004036005 +67179 n44004036001 +67201 n44005001001 +67235 n44005003005 +67237 n44005003005 +67251 n44005003005 +67257 n44005003005 +67266 n44005003005 +67269 n44005003021 +67298 n44005005004 +67311 n44005005004 +67320 n44005007009 +67323 n44005008005 +67330 n44005007009 +67338 n44005007009 +67342 n44005007009 n44005005004 +67354 n44005007009 +67360 n44005007009 +67367 n44005009003 +67375 n44005007009 +67383 n44005007009 +67415 n44004032003 +67426 n44005012006 +67429 n44005012006 +67465 n44005015008 +67482 n44005016011 n44005016013 +67493 n44005017004 +67510 n44005018007 +67526 n44005018007 +67561 n44005021015 +67578 n44005018007 +67585 n44005018007 +67629 n44005024005 +67638 n44005024009 n44005024014 +67643 n44005025009 +67665 n44005018007 +67677 n44005018007 +67684 n44005018007 +67690 n44005018007 +67696 n44004030019 +67704 n44005018007 +67709 n44005027012 n44005021017 n44005027007 n44005021026 +67714 n44004030019 +67732 n44005029003 n44005029006 n44005021028 +67735 n44005030007 +n44005027012 n44005021017 n44005027007 n44005021026 +67741 n44005030007 +67750 n44005031003 +67760 n44005029003 n44005029006 +67765 n44005030006 n44005031007 +67771 n44005032010 +67777 n44005032016 +67779 n44005027012 n44005021017 n44005027007 n44005021026 +67785 n44005029003 n44005029006 +67809 n44005027012 n44005021017 n44005027007 n44005021026 +67813 n44005035005 +67817 n44005034019 +67831 n44005036007 +n44005036007 +67838 n44005036007 +67844 n44005036007 +67851 n44005036007 +67865 n44005037004 +n44005037004 +67872 n44005037004 +67878 n44005035005 +67883 n44005035011 +67886 n44005038009 +67908 n44005038009 +67934 n44005040004 +67988 n44006001012 +68001 n44006002004 +68014 n44006003003 +68021 n44006003004 +68026 n44006002019 +68028 n44006002004 +68068 n44006005011 n44006005019 n44006005021 n44006005023 n44006005025 n44006005027 n44006005029 +68076 n44006005011 n44006005019 n44006005021 n44006005023 n44006005025 n44006005027 n44006005029 +68148 n44006010009 +68156 n44006009023 +68178 n44006009023 +68191 n44006009023 +68206 n44006013007 +68216 n44006013015 +68221 n44006014017 +68223 n44006013003 n44006012004 n44006012007 n44006012010 n44006013007 n44006014006 +68228 n44006009023 +68238 n44006009023 +68247 n44006013010 n44006014004 +68251 n44006009023 +68265 n44007002004 n44006009023 +68274 n44007002015 +68280 n44007002015 +68285 n44007002015 +68289 n44007002015 +68296 n44007003018 +n44007002015 +68313 n44007002015 +68315 n44007002015 +68319 n44007003019 +68321 n44007004020 +n44007002004 +68328 n44007002015 +68331 n44007004020 +68338 n44007002015 +68341 n44007004020 +68345 n44007002015 +68347 n44007002015 +68350 n44007002015 +68361 n44007002015 +68370 n44007006009 +68377 n44007007003 +68380 n44007007010 +68386 n44007006011 n44007006016 +68390 n44007007010 +68394 n44007004020 +68397 n44007002015 +68407 n44007008010 +68435 n44007009006 +68438 n44007009006 +68443 n44007009006 +68446 n44007009006 +68456 n44007009006 +68464 n44007010016 +68483 n44007002004 n44006009023 +68494 n44006009023 n44007002004 +68504 n44007013006 +68520 n44007014003 +68536 n44007015003 +68540 n44006009023 n44007002004 +68550 n44007016009 +68568 n44007017007 +68588 n44007018004 +68593 n44007018004 +68597 n44006009023 n44007002004 +68605 n44007019008 +68612 n44007020003 +68621 n44007020005 +68632 n44007020005 +68634 n44007020005 +68640 n44007020005 +n44007021007 +68657 n44007022003 +68661 n44007022003 +68668 n44007022003 +68672 n44007022003 +68699 n44007022003 +68702 n44007025005 +68704 n44007025005 +68712 n44007025005 +68716 n44007025005 +68733 n44007022003 +68736 n44007022003 +68742 n44007027003 n44007027005 n44007025005 +68745 n44007027003 +n44007022003 +68760 n44007027011 n44007028005 +68767 n44007029012 +68776 n44007029003 +68797 n44007031003 +68802 n44007031014 +68807 n44007031003 +68824 n44007032017 +68832 n44007032017 +68837 n44007033014 +68848 n44007033005 +68855 n44007034006 +68860 n44007034006 +68865 n44007032017 +68868 n44007032017 +68871 n44007035003 +68875 n44007035003 +68880 n44007035003 +68893 n44007035003 +68897 n44007035003 +68899 n44007025005 +68917 n44007035003 +68927 n44007037008 +68934 n44007037008 +68936 n44007037006 +n44007037004 +68952 n44007037004 +68960 n44007002004 n44006009023 +n44007037004 +68966 n44007002004 +n44007037004 +68974 n44007002004 n44006009023 +68982 n44007039007 +68989 n44007039007 +68991 n44007040006 +68993 n44007039007 +68997 n44007037004 +n44007040012 +69000 n44007039007 +69008 n44007040012 +69027 n44007039007 +69034 n44007039007 +69051 n44007042004 +69073 n44007043015 +69076 n44007043014 +69079 n44007042030 +69089 n44007002004 n44006009023 +69100 n44007044002 +69104 n44007044022 +69106 n44007044002 +69112 n44007002004 n44006009023 +69120 n44007045014 +69128 n44006009023 n44007002004 +69133 n44007045027 +69149 n44007046006 +69164 n44007049017 +69172 n44007049017 +69176 n44007049017 +69184 n44007049017 +69188 n44007049017 +69190 n44007049002 n44007049007 +69199 n44007051001 +69209 n44007051001 +69211 n44007051001 +69219 n44007051001 +69229 n44007052017 +69231 n44007051001 +69236 n44007051001 +69252 n44006012004 n44006012007 n44006012010 +69258 n44006009023 +69302 n44006012004 n44006012007 n44006012010 +69307 n44006009023 +69320 n44007058009 +69339 n44007059004 +69350 n44006012004 n44006012007 n44006012010 +69355 n44007060010 +69364 n44007059004 +69380 n44008001018 +69403 n44008002004 +69438 n44008005006 +69454 n44008006004 +69459 n44008006018 +69484 n44008005006 +69505 n44008009001 +n44008009001 +69508 n44008009014 +69514 n44008009001 +69525 n44008009001 +69533 n44008010003 +69559 n44008013003 +69591 n44008014010 +69595 n44008014018 n44008014020 +69599 n44008014010 +69610 n44008014010 +69626 n44008014010 +69647 n44008018012 +69651 n44008018004 +69654 n44008018013 +69668 n44008018004 +69671 n44008018004 +69673 n44008018004 +69688 n44008018004 +69695 n44008020016 +69699 n44008018004 +69711 n44008018004 +69720 n44008018004 +69725 n44008018004 +69733 n44008018004 +69742 n44008020001 n44008014020 +69744 n44008024004 +69751 n44008024004 +69757 n44008020001 n44008014020 +69795 n44008026015 +69810 n44008027006 +69816 n44008027010 +n44008027006 +69830 n44008027006 +69847 n44008028008 +69853 n44008027006 +69866 n44008027006 +69876 n44008027006 +69884 n44008027006 +69890 n44008032003 +69893 n44008032014 n44008032025 n44008033008 n44008033013 n44008033015 +69905 n44008032017 +69912 n44008016016 +69918 n44008016016 +69922 n44008016016 +69932 n44008016016 +69941 n44008034006 +69947 n44008032014 n44008032025 n44008033008 n44008033013 n44008033015 +69949 n44008034013 +69960 n44008035004 +69966 n44008032005 +69968 n44008034004 +69989 n44008036014 +69998 n44008038014 n44008038017 +70010 n44008038017 +70025 n44008039011 +70033 n44008039018 +70049 n44008040001 +70070 n44009001016 +70097 n44009001003 +70103 n44009001003 +70117 n44009001003 +70121 n44009004007 +70129 n44009004007 +n44009004007 +70133 n44009005010 +n44009001003 +70145 n44009001003 +n44009006015 +70148 n44009001003 +70156 n44009001003 +70176 n44009008003 +70181 n44009008003 +70207 n44009010004 +70214 n44009010004 +70217 n44009010004 +70223 n44009010004 +70251 n44009011021 +70265 n44009011021 +70270 n44009013004 +70275 n44009010006 +70287 n44009013004 +70291 n44009013003 +70299 n44009015006 +n44009013010 +70305 n44009015006 +70315 n44009015006 +70317 n44009013010 +70319 n44009013010 +70323 n44009015006 +70337 n44009008003 +70348 n44009017016 +70352 n44009017028 +70355 n44009017003 +70366 n44009008003 +70398 n44009020008 +70412 n44009008003 +70422 n44009020008 +70424 n44009019010 +70426 n44009021028 +70430 n44009021016 +70448 n44009020008 +70461 n44009022001 +70468 n44009023008 +70479 n44009024004 +70485 n44009024004 +70491 n44009024004 +70504 n44009026008 +70506 n44009024004 +70515 n44009024004 +70522 n44009027008 +70533 n44009024004 +70549 n44009027008 n44009026008 +70566 n44009029007 +70569 n44009024004 +70575 n44009024004 +70580 n44009024004 +70627 n44009032014 +70638 n44009033004 +70643 n44009033004 +70648 n44009034006 +70654 n44009034006 +70660 n44009033004 +70668 n44009035006 +70681 n44009036008 +70685 n44009036006 +70692 n44009036016 n44009036019 +70701 n44009036006 +70721 n44009038004 +70726 n44009038011 +70732 n44009038008 +70737 n44009038017 +n44009039003 +70746 n44009039003 +70756 n44009039021 n44009039023 +70759 n44009039017 +70768 n44009039017 n44009038008 n44009038017 +70783 n44009039030 +70787 n44009039030 +70795 n44009039030 +70798 n44009039030 +70807 n44009039030 +70855 n44010001001 +70882 n44010001001 +70885 n44010001001 +70888 n44010001001 +70890 n44010003011 +70900 n44010001001 +70903 n44010001001 +70907 n44010001001 +70924 n44010005009 +70927 n44010005009 +70933 n44010006005 +70945 n44010001001 +70955 n44010001001 +70959 n44010007010 n44010007014 +70961 n44010007010 n44010007014 +70969 n44010007010 n44010007014 +70994 n44010009011 +71015 n44010011008 +71032 n44010009011 +71057 n44010014003 +71062 n44010014003 +71081 n44010017007 +71090 n44010017012 +71117 n44010017025 +71133 n44010019003 +71140 n44010019012 +71144 n44010019010 +71146 n44010019012 +71155 n44010021003 +71163 n44010021015 +71166 n44010021006 +71189 n44010021003 +71193 n44010022004 +71198 n44010021003 +71201 n44010021006 +71209 n44010021006 +71218 n44010021003 +71231 n44010021003 n44010021006 n44010023013 +71235 n44010024010 +71248 n44010025007 +71260 n44010025011 +71264 n44010026003 +n44010026003 +71270 n44010025011 +71279 n44010027008 n44010025011 +n44010027008 n44010025011 +71291 n44010026003 +71311 n44010026003 +71320 n44010003007 +71330 n44010030003 +71336 n44010030003 +71344 n44010031003 +71350 n44010031003 +71362 n44010032007 +71365 n44010032007 +71377 n44010026003 +71379 n44010026003 +71386 n44010027008 n44010030003 +71395 n44010026003 +71420 n44010034015 +71425 n44010034015 +71429 n44010036002 +71439 n44010036011 +71443 n44010030003 n44010027008 +71459 n44010037016 +71468 n44010038001 +71475 n44010038001 +71491 n44010038001 +71493 n44010034003 n44010023013 +71496 n44010039004 +71506 n44010038001 +71512 n44010038001 +71522 n44010038001 +71536 n44010041006 +n44010041006 +71541 n44010038001 +71545 n44010038001 +71550 n44010041006 +71557 n44010038001 +71568 n44010038001 +71579 n44010038001 +71584 n44010038001 +71609 n44010045006 +71626 n44010045015 +71645 n44010045015 +n44010045015 +71654 n44010045006 n44010046012 +71657 n44010045015 +71666 n44010046012 +71699 n44011002004 +71712 n44011003005 +71717 n44011002010 +71720 n44011004003 +71746 n44011004003 +71748 n44011005016 +71773 n44011004003 +71792 n44011004003 +71805 n44011004003 +71816 n44011005016 n44011006008 n44011006013 n44011006016 n44011006019 +71830 n44011011009 +71836 n44011004003 +71841 n44011004003 +71843 n44011011005 +71849 n44011004003 +71854 n44010023013 +71864 n44011004003 n44011012017 +71872 n44011012025 +71885 n44011013020 +71889 n44011012025 +71891 n44011014003 +71893 n44011012025 +71898 n44011012025 +71903 n44011004003 +71911 n44011012025 n44011014013 +71915 n44011004003 n44011012017 n44011002010 +71942 n44011012025 n44011014013 +71947 n44011004003 n44011012017 n44011002010 +71954 n44011004003 +72011 n44011019004 +72016 n44011020003 +72034 n44011020003 +72049 n44011020003 +72064 n44011022018 +72113 n44011025006 n44011022018 +72148 n44011027009 +72163 n44011028012 +72175 n44011029003 +72185 n44011029007 +72237 n44012003011 +72248 n44012003011 +72254 n44012003011 +72277 n44012005004 +72282 n44012005004 +72324 n44012007017 +72331 n44012007017 +72342 n44012007017 +72348 n44012007017 +72354 n44012007017 +72358 n44012007017 +72361 n44012008004 +72397 n44012010010 +72400 n44012009014 n44012007017 +72412 n44012007017 +72417 n44012011003 +72429 n44012011014 +72432 n44012011003 +72458 n44012012006 +72466 n44012011003 +72499 n44012012017 +72501 n44012013009 +72505 n44012013009 +72510 n44012012017 +72515 n44012014019 +72524 n44012016003 +72529 n44012012017 +72534 n44012012017 +72538 n44012016003 +72550 n44012017013 +72575 n44012018014 +72602 n44012019001 +72617 n44012020004 n44012020006 +72637 n44012020004 n44012020006 +72650 n44012021005 +72721 n44013001009 n44013001011 +72733 n44013002010 +72741 n44013002022 +72743 n44013002017 n44013002019 +72752 n44013002017 n44013002019 +72756 n44013002017 n44013002019 +72766 n44013004011 +72802 n44013006009 +72805 n44013006009 +72814 n44013007005 +72827 n44013007012 n44013007014 +72836 n44013008004 +72854 n44013008004 +72883 n44013010003 +72897 n44013008004 +72935 n44013013008 n44013013006 +72940 n44013013006 n44013013008 +72973 n44013013006 n44013013008 +72980 n44013015016 +73013 n44013016009 n44013016013 n44013016003 n44013013006 +73029 n44013017013 +73031 n44013017019 +73037 n44013017013 +73051 n44013019003 +73059 n44013017007 n44013017014 n44013017025 n44013018005 n44013019008 +73070 n44013017013 +73085 n44013021010 +73089 n44013017013 +73092 n44013022006 +73105 n44013021008 +n44013022015 +73111 n44013021008 +73115 n44013022006 +73131 n44013023012 +73146 n44013025004 +73151 n44013025004 +73156 n44013025004 +n44013023012 +73174 n44013026003 +73178 n44013026001 n44013016003 n44013013006 +73193 n44013027003 +n44013023012 +73216 n44013023012 +73223 n44013023012 +73236 n44013023012 +73239 n44013023012 +73246 n44013023012 +73252 n44013031007 +73256 n44013023012 +73261 n44013016003 n44013013006 +n44013026001 +73271 n44013032009 +73277 n44013016003 n44013013006 n44013026001 +73289 n44013033004 +73291 n44013033010 +n44013033004 +73295 n44013033010 +73299 n44013033010 +73326 n44013033004 +73332 n44013036001 +73345 n44013036001 +73350 n44013033010 +73360 n44013038005 +73365 n44013033010 +n44013038005 +73373 n44013038016 +73381 n44013033010 +73405 n44013037004 +73409 n44013041003 +73411 n44013041016 +73418 n44013041003 +73421 n44013016003 n44013013006 +73449 n44013043014 n44013043017 +73451 n44013043006 +73453 n44013043006 +73498 n44013045004 +73507 n44013046015 +73511 n44013045004 +73524 n44013046004 n44013046007 +73594 n44013050020 n44013050022 +73598 n44013050007 n44013050012 n44013050003 +73600 n44013050020 n44013050022 +73607 n44013050007 n44013050012 n44013050003 +73627 n44013050020 n44013050022 +73674 n44014003009 +73683 n44013050020 n44013050022 +73714 n44014005006 n44014005009 +73718 n44014004018 +73748 n44014008003 +n44014008003 +73752 n44014008003 +73757 n44014009004 +73759 n44014008003 +73774 n44014008003 +73790 n44014011003 +73799 n44014011003 +73810 n44014012008 +73848 n44014014004 +73858 n44014012001 n44014012008 n44014013021 +73861 n44014014004 +73863 n44014015003 +73867 n44014015003 +73876 n44014015021 +73890 n44014015026 n44014015029 n44014015032 +n44014015021 +73903 n44014016009 +73907 n44014015021 +73911 n44014015003 +73923 n44014015003 +73934 n44014014004 +73955 n44014019015 +73961 n44014019015 +73980 n44014020019 +74009 n44014022005 n44014020017 n44014019015 +74018 n44014022005 +74026 n44014022005 n44014023006 +74030 n44014023013 +74053 n44014026004 +74063 n44014026014 +74077 n44014020017 n44014019015 +74126 n44015001002 +74136 n44015001009 +74147 n44015001019 +74150 n44015002017 n44015002019 n44015002022 +74194 n44015002017 n44015002019 n44015002022 +74209 n44015003018 +74227 n44015005013 +74236 n44015006004 n44015006007 +74239 n44015007010 +74246 n44015007010 +74253 n44015007006 +74268 n44015007029 +74276 n44015007010 n44015007006 +74282 n44015007010 n44015007006 +74284 n44015007029 +74290 n44015007029 +74304 n44015010008 +74309 n44015007010 n44015007006 +74311 n44015007010 n44015007006 +74325 n44015010013 +74340 n44015012016 n44015012018 +74348 n44015012008 n44015012010 +74353 n44015012008 n44015012010 +74360 n44015013007 +74374 n44015014006 +74376 n44015014007 +74397 n44015016007 +74401 n44015016007 +74416 n44015017013 +74420 n44015014006 +74422 n44015017013 +74426 n44015016003 n44015016005 n44015016015 n44015016017 n44015017003 +74431 n44015013007 +74445 n44015019006 +74469 n44015021001 +74492 n44015022004 n44015022007 n44015022011 +74515 n44015022021 n44015022023 n44015022024 n44015022029 +74540 n44015023006 n44015023009 +74542 n44015023019 +74547 n44015023019 +n44015024004 +74552 n44015023006 n44015023009 +74559 n44015023019 +74563 n44015023006 n44015023009 +74571 n44015026001 +74577 n44015025012 n44015023006 n44015023009 n44015023019 +74586 n44015027003 n44015027005 +74599 n44015023006 n44015023009 +74604 n44015023019 +74606 n44015029001 +74618 n44015028017 +74620 n44015023019 +74626 n44015022021 n44015022023 n44015022024 n44015022029 +74649 n44015032001 n44015032004 +74672 n44015032001 n44015032004 +74708 n44015036015 +74732 n44015038001 n44015037001 +74738 n44015038001 n44015037001 +74744 n44015038005 +74750 n44015038001 n44015037001 +74752 n44015038001 n44015037001 +74795 n44016001008 +74807 n44016001011 +74819 n44016001011 +74821 n44016003004 +74826 n44016001011 +74835 n44016002006 n44016002008 +74838 n44016003014 +74843 n44016001011 +74851 n44016004005 +74909 n44016003004 n44015040004 n44016001011 +74934 n44016009006 +74941 n44016009008 n44016009021 +74957 n44016009006 n44015040004 n44016001011 +74959 n44016010010 +74976 n44016012003 +74988 n44016012003 +75004 n44016013011 +75026 n44016014003 +75043 n44016014003 +75048 n44016014003 +75057 n44016014003 +75061 n44016014023 n44015040004 n44016001011 +75065 n44016014023 n44015040004 n44016001011 +75075 n44016014023 n44015040004 n44016001011 +n44016016008 +75082 n44016016008 +75084 n44016016008 +75089 n44015040004 n44016001011 +75092 n44016017004 n44015040004 n44016001011 +75101 n44016017011 +75107 n44016017007 +75121 n44016018013 +75128 n44016016008 +75131 n44016018028 +75137 n44016016008 +75145 n44016019004 +75161 n44016019015 n44016019018 +75165 n44016019015 n44016019018 +75169 n44016019004 n44016020005 +75177 n44016021003 +75183 n44016019004 n44016020005 +75191 n44016019015 n44016019018 +75196 n44016019015 n44016019018 +75203 n44016019015 n44016019018 +75214 n44016019015 n44016019018 +n44016023011 +75217 n44016023013 +75220 n44016019015 n44016019018 +75228 n44016019015 n44016019018 +75246 n44016025005 n44016025007 +75267 n44016025005 n44016025007 n44016025016 +75287 n44016027005 +75302 n44016027005 +75304 n44016027022 n44016028003 n44016025007 +75306 n44016027012 +75321 n44016029010 n44016029012 +75326 n44016027005 +75332 n44016029010 n44016029012 +75341 n44016027005 +75345 n44016027005 +75348 n44016027005 +75359 n44016027005 +75362 n44016029010 n44016029012 +75375 n44016027005 +75378 n44016027005 +75383 n44016029010 n44016029012 +75407 n44016029010 n44016029012 +75414 n44016036012 n44016036016 n44016036020 +75435 n44016035008 n44016036004 +75437 n44016037003 n44016029012 +75449 n44016037003 n44016029012 +75455 n44016035006 +n44016037003 n44016029012 +75466 n44016037014 n44016037021 n44016037022 n44016037028 +75476 n44016037003 n44016029012 +75510 n44017001010 +75523 n44017001015 +75529 n44017001015 +75547 n44017003006 +75553 n44017003018 +n44017002006 +75556 n44017001015 +75560 n44017001015 +75603 n44017004009 n44017004012 +75611 n44017004009 n44017004012 +75626 n44017006018 +75628 n44017001010 +75630 n44017006018 +75634 n44017006018 +75654 n44017006022 n44017007002 n44017007011 +75666 n44017009007 n44017009010 +75682 n44017010010 n44017010013 +75691 n44017010022 +75697 n44017010022 +75718 n44017010022 +75752 n44017013013 +75779 n44017013013 +75802 n44017015005 +75809 n44017015014 n44017015017 +75815 n44017016008 +75817 n44017016008 +75853 n44017016008 +75861 n44017016008 +75880 n44017016008 +75895 n44017016008 +75905 n44017018001 +75912 n44017020003 +75946 n44017022011 +75954 n44017022011 +75959 n44017023010 +75967 n44017023019 +n44017022003 +75970 n44017022011 +75981 n44017024006 +n44017024002 +76000 n44017024002 +76030 n44017026006 +76038 n44017027003 +76048 n44017022003 n44017022011 +76052 n44017027003 +76063 n44017022011 +76067 n44017027003 +76107 n44017030014 +76114 n44017031003 +76123 n44017031013 +76129 n44017031013 +76143 n44017022003 +76159 n44017033003 +76162 n44017034003 +76174 n44017034010 n44017034014 +76201 n44018002004 +76214 n44018002004 n44018002016 +76222 n44018002004 n44018002016 +76269 n44018005020 +76277 n44018005020 +76280 n44018005020 +76284 n44018005020 +76286 n44018005017 +76296 n44018004005 +76307 n44018007007 +76325 n44018008001 +76352 n44018009004 +76355 n44018009010 +76359 n44018009010 +76362 n44018009010 +76367 n44018009004 +76371 n44018001009 +76380 n44018008016 +76399 n44018012012 +76409 n44018012012 +76442 n44018014023 +76455 n44018014023 +76457 n44018014023 +76460 n44018014010 +76462 n44018015003 +76466 n44018014013 +76471 n44018014013 +76482 n44018017007 +76502 n44018018003 +76520 n44018019004 +76522 n44018018003 +76532 n44018019016 +76546 n44018019016 +76600 n44018024001 +76625 n44018024001 +76633 n44018024001 +76638 n44018024001 +76641 n44018024001 +76649 n44018024001 +76661 n44018024001 +n44018024001 +76709 n44019001021 +76716 n44019001021 +76718 n44019001010 +76733 n44019001021 +76755 n44019004004 +n44019004017 +76772 n44019001021 +76782 n44019001021 +76826 n44019009003 +76838 n44019009021 +76879 n44019011012 +76886 n44019012005 +76918 n44019013014 +76921 n44019013026 +76931 n44019013001 +76941 n44019014008 +76950 n44019014008 +76956 n44019014008 +76960 n44019016004 +76967 n44019014008 +76970 n44019016015 +76998 n44019017006 n44019017009 +77016 n44019018001 +77033 n44019019009 +77072 n44019021007 +n44019021018 +77075 n44019021007 +77087 n44019021007 +77091 n44019021007 +77124 n44019024012 +77129 n44019024006 +77137 n44019024006 +77142 n44019025010 n44019024003 +77159 n44019021007 +77176 n44019026018 +77178 n44019025010 n44019024003 +77201 n44019027017 +n44019027017 +77250 n44019030001 +77259 n44019030001 +77263 n44019030001 +77267 n44019030001 +77297 n44019033006 +77319 n44019033020 +77359 n44019035020 +77362 n44019035008 +77373 n44019029014 n44019029016 +77380 n44019035008 n44019035004 +77388 n44019038004 +77400 n44019038004 n44019038009 n44019037004 +77423 n44019040010 +77476 n44020001009 +77493 n44020001009 +77513 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77516 n44020001009 +77520 n44020001009 +77532 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77539 n44020006017 +77550 n44020001009 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77574 n44020008007 +77611 n44020009004 +77620 n44020009004 +77622 n44020009004 +77650 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77659 n44020013010 +77669 n44020013015 +77674 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77679 n44020013015 +77712 n44020016004 +77722 n44020016004 +77746 n44020016004 +77748 n44020017010 +n44020017010 +77755 n44020018012 +77762 n44020017010 +77779 n44020016004 +77793 n44020017010 +77796 n44020017010 +77815 n44020016004 n44020017010 n44020021002 n44020021005 +77823 n44020016004 +77829 n44020022010 +77831 n44020016004 +77843 n44020016004 +77849 n44020016004 +77858 n44020016004 +77863 n44020016004 +77867 n44020024016 +77883 n44020016004 +77890 n44020016004 +n44020017010 +77894 n44020017010 +77901 n44020017010 +77924 n44020017010 +77926 n44020017010 +77932 n44020028006 +n44020017010 +77945 n44020028018 +77951 n44020028020 +n44020016004 +77959 n44020016004 +77963 n44020017010 +77970 n44020017010 +n44020017010 +77981 n44020030006 +77996 n44020017010 +78001 n44020017010 +78009 n44020032007 +78028 n44020017010 +78033 n44020016004 +78038 n44020016004 +78045 n44020017010 +78061 n44020035016 +78075 n44020016004 +78078 n44020017010 +78084 n44020017010 +78093 n44020037012 +78099 n44020038005 +78106 n44020037012 +78110 n44020037012 +78118 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78121 n44020037005 +78150 n44021003004 +78160 n44021003015 +78172 n44021003015 +78175 n44021004004 +78190 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78196 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44021004004 +78215 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021005012 +78222 n44021005012 +78226 n44021005012 +78228 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78245 n44021007014 +78267 n44021008013 +78269 n44021008013 +78290 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78298 n44021010006 +78305 n44021011033 n44021011039 +78313 n44021011026 +78317 n44021011008 +78332 n44021011033 n44021011039 +78335 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78342 n44021011010 +78354 n44021013004 +78358 n44021013004 +78378 n44021013004 +78403 n44021013004 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78406 n44021016014 +78415 n44021013004 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 +78420 n44021013004 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 +78430 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 +78440 n44021018015 n44021018010 +78455 n44021018006 +78457 n44021018015 n44021018010 +78464 n44021018006 +78476 n44021020013 +78484 n44021020011 +78499 n44021021015 +78516 n44021023001 +n44021020011 +78520 n44021018015 n44021018010 +78526 n44021023009 +n44021023009 +78531 n44021023009 +78535 n44021023009 +78547 n44021020011 +78553 n44021020011 +78562 n44021018015 n44021018010 +78566 n44021025005 +78586 n44021026006 +78605 n44021026006 +78621 n44021026003 +78632 n44021026003 +78639 n44021026003 +78653 n44021027017 +78670 n44021028030 +78681 n44021026003 +78684 n44021029004 +78706 n44021030014 +78717 n44021030014 +78729 n44021031008 +78737 n44021030010 +78739 n44021030010 +78755 n44021032021 +78780 n44021033004 +78789 n44021032021 +78801 n44021032021 +78818 n44021032021 +78832 n44021037008 +78836 n44021037011 +78838 n44021037011 +78844 n44021037008 +78869 n44021039004 +78882 n44021037011 +78884 n44021039004 +78891 n44021037011 +78917 n44021040005 +78920 n44022001001 +78930 n44021040014 +78936 n44021040005 +78950 n44021031014 +78967 n44022001001 +78970 n44021040005 +78991 n44021040005 +78997 n44022005004 n44022005010 +79010 n44022005020 +79019 n44021040005 +79035 n44021040005 +79045 n44021040005 +79049 n44022007008 +79052 n44021040005 +79060 n44021040005 +n44022007008 +79066 n44022008013 +n44021040005 +79073 n44021040005 +79085 n44021040005 +79096 n44021040005 +79102 n44021040005 +79109 n44021040005 +79119 n44022009008 +79124 n44021040005 +79144 n44021040005 +79148 n44021040005 +79152 n44021040005 +n44022013014 +79158 n44022012001 +79160 n44022012001 +79166 n44022012001 n44022012014 n44021040005 +79168 n44021040005 +79172 n44022014005 +79183 n44022014018 +79186 n44022014018 +79205 n44021040005 +79209 n44022014018 +79212 n44021040005 +79218 n44021040005 +79223 n44021040005 +79228 n44022010008 +79230 n44021040005 +79241 n44021040005 +79244 n44022010008 +n44021040005 +79248 n44022018012 +79251 n44021040005 +79262 n44022019003 +79271 n44022019003 +79273 n44021040005 +79284 n44022020006 +79288 n44021040005 +79291 n44022010008 +79296 n44021040005 +79299 n44021040005 +79301 n44022021011 +79308 n44021040014 +79315 n44021040005 +79319 n44021040005 +79323 n44021040014 +79338 n44021040005 +79345 n44021040005 +79353 n44021040005 +79357 n44021040005 +79374 n44021035012 n44022025011 +79390 n44022025013 +79398 n44022025013 +79400 n44022027004 +n44022025013 +79405 n44022025013 +79412 n44022028004 +79424 n44022028014 +79431 n44022028014 +79434 n44022028014 +79447 n44022028014 +79464 n44022028014 +79480 n44022030020 n44022030024 +79490 n44023001004 +79508 n44023001004 +79510 n44023001004 +79517 n44023002003 +79520 n44023003012 +79527 n44023003012 +79530 n44023003003 +79537 n44023003003 +79588 n44023006004 +79600 n44023006032 +n44023006004 +79627 n44023008006 n44023008008 n44023008010 +79649 n44023006004 +79654 n44023009021 +79669 n44023009013 n44023008001 +79675 n44023010011 +79678 n44023009013 n44023008001 +79689 n44023010011 +79699 n44023011008 +79704 n44023010011 +79717 n44023012007 +79733 n44023012005 +79737 n44023013009 +79747 n44023013009 +79757 n44023014004 n44023014007 +79766 n44023014018 +79768 n44023014004 n44023014007 n44023015009 +79775 n44023014018 +79777 n44023013009 +79781 n44023014018 +79786 n44023014018 +79815 n44023016004 +79824 n44023017015 +79827 n44023017005 +79829 n44023016004 +79840 n44023017005 +79842 n44023016004 +79847 n44023018009 +79851 n44023018009 +79858 n44023016004 +79862 n44023016004 n44023019007 +79868 n44023019007 +79878 n44023019007 +79893 n44023020013 +79895 n44023019007 +79898 n44023020005 +79901 n44023020013 +79903 n44023020005 +79907 n44023021011 +79909 n44023021011 +79917 n44023020013 +79925 n44023019007 +79941 n44023022004 +79994 n44023017004 +80003 n44023027007 +80019 n44023028005 +80021 n44023027002 +80026 n44023027007 +80028 n44023027002 +80034 n44023027007 +80045 n44023026001 +80054 n44023026005 +80061 n44023030007 +80063 n44023026005 +80071 n44023031004 +80089 n44023031011 +80094 n44023032006 +80109 n44023033011 +80125 n44023033015 +80130 n44023033015 +80139 n44023033015 +80155 n44024001007 n44024001010 n44024001013 +80164 n44024001022 +80174 n44024003007 +80183 n44024003007 +80200 n44024003007 +80204 n44024003007 +n44024001010 n44024002007 n44024001007 +80208 n44024003007 +80214 n44024001022 +80232 n44024005004 +80238 n44024005004 +80242 n44024005004 +80244 n44024003007 +80250 n44024008008 +n44024001010 n44024002007 n44024001007 +80253 n44024005004 +80268 n44024010004 +80276 n44024010008 +80285 n44024010004 +80288 n44024010008 +80294 n44024010004 +80305 n44024010004 +80328 n44024010008 +80333 n44024010004 +80336 n44024014013 +n44024010008 +80342 n44024014008 +80367 n44024015001 +80369 n44024001007 n44024001010 n44024002007 n44024009005 +n44024001007 n44024001010 n44024002007 n44024009005 +80380 n44024014013 +80382 n44024010004 +80404 n44024010004 +80409 n44024017013 +80411 n44024010004 +80428 n44024019006 +80430 n44024010008 +80439 n44024010004 +80441 n44024001007 n44024001010 n44024002007 n44024009005 +n44024001007 n44024001010 n44024002007 n44024009005 +80448 n44024010004 +80457 n44024021005 +80460 n44024001007 n44024001010 n44024002007 n44024009005 +80466 n44024010004 +80470 n44024001007 n44024001010 n44024002007 n44024009005 +80473 n44024001007 n44024001010 n44024002007 n44024009005 n44024010004 +80491 n44024001007 n44024001010 n44024002007 n44024009005 n44024010004 +80496 n44024010004 +80505 n44024010004 +80507 n44024010004 +80518 n44024024007 +80527 n44024024017 +80536 n44024024017 +80559 n44024024017 +80566 n44024025016 +80573 n44024026010 +80576 n44024026010 +80613 n44025001001 +80626 n44025001001 +80630 n44025002013 +80633 n44025002013 +80639 n44025002013 +80654 n44025004004 +80663 n44025002005 n44025002008 +80667 n44025005013 +80678 n44025002005 n44025002008 +80700 n44025006022 +80702 n44025006022 +80713 n44025007014 +80752 n44025009015 +80757 n44025009002 +80768 n44025010007 +n44025010004 +80777 n44025009002 +80798 n44025010015 +80800 n44025010004 +80803 n44025010004 +n44025010015 +80841 n44025013012 +80860 n44025014017 +80862 n44025014008 +80875 n44025014017 +80878 n44025015009 n44025015012 +80906 n44025013012 +80921 n44025017016 +80928 n44025018012 +n44025014008 +80937 n44025018005 +80941 n44025017016 +80947 n44025019014 +80953 n44025014008 +80957 n44025019007 n44025019014 +80968 n44025019007 n44025019014 +80974 n44025021003 +80982 n44025021003 +80986 n44025021003 +80996 n44025022001 +81003 n44025022010 +81048 n44025024004 n44025024005 n44025023009 +81051 n44025023034 +81053 n44025023034 +81060 n44025024004 +81065 n44025023027 +81069 n44025023034 +81073 n44025024004 +81078 n44025023034 +81081 n44025023034 +n44025023034 +81089 n44025023034 +81099 n44025023034 +81101 n44025024005 n44025024012 +81105 n44025026019 +81117 n44025024004 +81125 n44025027006 +81135 n44026001005 +81137 n44026001005 +81155 n44026001014 +81158 n44026002007 +81164 n44026002007 +81178 n44026001014 +81183 n44026001014 +81193 n44026001014 +81201 n44026001014 +81212 n44026004021 n44026001014 +81224 n44026004021 n44026001014 +81233 n44026006010 +81237 n44026004021 n44026001014 +81246 n44026007016 +81256 n44026007020 n44025023009 n44025023020 n44025023022 n44025024004 +81264 n44026001014 +81266 n44026001014 +81277 n44026009015 +81287 n44026001014 +81299 n44026010007 +81309 n44026010007 +81315 n44026010007 +81324 n44026010014 n44026010024 n44026011009 n44026011015 +81350 n44026001014 +81354 n44026001014 +81359 n44026013021 n44026001014 +81368 n44026001014 +81375 n44026014009 +81378 n44026014016 +81383 n44026001014 +81392 n44026015009 +81395 n44026015013 +n44026001014 +81405 n44026001014 +81408 n44026016014 +81410 n44026001014 +81412 n44026001014 +81419 n44026015009 +81423 n44026001014 +81425 n44026001014 +81434 n44026017005 n44026017009 +n44026015009 +81437 n44026001014 +81440 n44026017005 n44026017009 +81457 n44026017005 n44026017009 +81468 n44026015009 +81508 n44026020018 +81510 n44026001014 +81566 n44026001014 +81579 n44026024012 +81600 n44026025013 +81604 n44026026006 +81610 n44026026006 +n44026025013 +81621 n44026026015 +81638 n44026028003 +81657 n44026028003 +81663 n44026029003 +81667 n44026029025 +81669 n44026029003 +81674 n44021033010 +81688 n44026030004 n44026030007 n44026030010 +81693 n44026030004 n44026030007 n44026030010 n44026030013 +81704 n44026029003 +81714 n44026029003 +81724 n44027001013 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 +81756 n44027001013 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027001018 +81817 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027002017 +81819 n44027006005 +81833 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027006004 n44027002017 +81844 n44027007019 +81852 n44027008007 +81878 n44027010003 +81898 n44027010003 n44027009020 +81930 n44027012004 +81965 n44027013012 +81995 n44027016012 +82017 n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027027017 +82025 n44027027017 +82051 n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027027017 +82062 n44027027017 n44027001017 n44027011003 +82069 n44027021008 +82087 n44027021016 +82095 n44027021016 +82101 n44027021008 +82107 n44027023008 +82109 n44027023008 +82118 n44027024004 +82124 n44027024004 +82131 n44027024004 +82146 n44027021008 +82152 n44027021008 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027025003 +82160 n44027021008 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027027017 +82174 n44027027017 +82237 n44027030003 +82242 n44027031005 n44027031008 +82256 n44027032008 +82267 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027031005 n44027002017 n44027032004 n44027030003 +82281 n44027033010 +82285 n44027034004 +82288 n44027033010 +82293 n44027033010 +82309 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027031005 n44027002017 n44027032004 n44027030003 +82317 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027031005 n44027002017 n44027032004 n44027030003 +82319 n44027036004 +82360 n44027039009 +82434 n44027042003 +82466 n44027043007 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82488 n44027043007 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82494 n44027043007 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82524 n44028003004 +82536 n44028003004 +82538 n44028004005 +82545 n44028003004 +n44028004020 +82558 n44028003004 +82569 n44028004005 +82571 n44028003004 +82581 n44028004005 +82588 n44028003004 +82592 n44028003004 +82610 n44028007011 +82612 n44028003004 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82629 n44028008004 +82638 n44028008004 +82640 n44028008004 +82642 n44028008001 n44028008023 +82656 n44028009006 +82661 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82705 n44028013015 +82710 n44028014003 +82726 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82730 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82737 n44028015003 +82756 n44028016008 +82760 n44028016008 +82768 n44028016008 +82776 n44028017012 +82779 n44028017012 +82782 n44028016008 +82802 n44028017040 +82804 n44028016008 +82814 n44028016008 +82826 n44028016008 +82832 n44028019005 +82836 n44028017020 +82851 n44028017012 +82853 n44028016008 +82856 n44028017012 +82859 n44028016008 +82874 n44028016008 +82879 n44028016008 +82890 n44028017012 +82897 n44028016008 +82901 n44028016008 +82906 n44028023011 +82915 n44028023011 +82944 n44028024002 n44028024007 +82965 n44028024002 n44028024007 +82993 n44028026005 +83002 n44028027006 +83025 n44028024002 n44028024007 +83035 n44028028007 +83043 n44028025009 +83051 n44028025009 +83079 n45001001009 +83084 n45001001010 +83091 n45001001010 +83115 n45001001001 n45001007005 +83117 n45001003003 +83132 n45001003003 +83134 n45001005013 +83137 n45001007005 +83150 n45001007005 +83157 n45001001001 n45001007005 +83167 n45001001001 +83173 n45001007005 +83177 n45001007005 +83185 n45001001001 +83189 n45001009006 +83194 n45001001001 +83200 n45001009006 +83204 n45001007005 +83210 n45001001001 +83224 n45001007005 +83228 n45001007005 +83234 n45001007005 +83238 n45001007005 +83244 n45001007005 +83248 n45001001001 n45001007005 +83251 n45001007005 +83253 n45001001001 +83258 n45001013006 +83265 n45001013006 +83277 n45001007005 +83297 n45001001001 +83300 n45001013006 +83328 n45001016005 +83368 n45001018012 +83372 n45001018012 +83377 n45001019011 +83381 n45001019011 +83395 n45001018012 +83412 n45001018012 +83417 n45001018012 +83443 n45001018012 +83451 n45001018012 +83458 n45001018012 +83460 n45001018012 +n45001018012 +83479 n45001025018 +83489 n45001018012 +83499 n45001018012 +83523 n45001027005 +83525 n45001027005 +83535 n45001027027 +83539 n45001027019 +83541 n45001027019 +83553 n45001018012 +83589 n45001018012 +83598 n45001029003 n45001029004 n45001029005 n45001029006 n45001029008 n45001029009 n45001029010 n45001029011 n45001029012 n45001029013 n45001030001 n45001030002 n45001030003 n45001030004 n45001030005 n45001030006 n45001030009 n45001031001 n45001031002 n45001031003 n45001031004 +83605 n45001029003 n45001029004 n45001029005 n45001029006 n45001029008 n45001029009 n45001029010 n45001029011 n45001029012 n45001029013 n45001030001 n45001030002 n45001030003 n45001030004 n45001030005 n45001030006 n45001030009 n45001031001 n45001031002 n45001031003 n45001031004 +83626 n45002001005 +83630 n45001029003 n45001029004 n45001029005 n45001029006 n45001029008 n45001029009 n45001029010 n45001029011 n45001029012 n45001029013 n45001030001 n45001030002 n45001030003 n45001030004 n45001030005 n45001030006 n45001030009 n45001031001 n45001031002 n45001031003 n45001031004 +83647 n45001029003 n45001029004 n45001029005 n45001029006 n45001029008 n45001029009 n45001029010 n45001029011 n45001029012 n45001029013 n45001030001 n45001030002 n45001030003 n45001030004 n45001030005 n45001030006 n45001030009 n45001031001 n45001031002 n45001031003 n45001031004 +83651 n45002003017 n45002004013 +83658 n45001029003 n45001029004 n45001029005 n45001029006 n45001029008 n45001029009 n45001029010 n45001029011 n45001029012 n45001029013 n45001030001 n45001030002 n45001030003 n45001030004 n45001030005 n45001030006 n45001030009 n45001031001 n45001031002 n45001031003 n45001031004 +83662 n45001029003 n45001029004 n45001029005 n45001029006 n45001029008 n45001029009 n45001029010 n45001029011 n45001029012 n45001029013 n45001030001 n45001030002 n45001030003 n45001030004 n45001030005 n45001030006 n45001030009 n45001031001 n45001031002 n45001031003 n45001031004 +83664 n45002003005 +83675 n45002003021 +83691 n45002003005 +83697 n45002003005 +83702 n45002003005 +83712 n45002005019 +83718 n45002006003 +83828 n45002014003 +83832 n45002014003 +83835 n45002014003 +83845 n45002014003 +83847 n45002014003 +83852 n45002015020 +83861 n45002016003 +83872 n45001001001 +83878 n45002003005 +83902 n45002003005 +83929 n45002021003 +83947 n45002003005 +83965 n45002003005 +83986 n45002003005 +84001 n45002026004 +84014 n45002003005 +84051 n45002029002 +84094 n45003003005 +84119 n45003004006 +84125 n45003004006 +84130 n45001001001 n45003001006 n45001015008 +84164 n45001001001 n45003001006 n45001015008 +84170 n45003007006 +84173 n45001001001 n45003001006 n45001015008 +84185 n45001001001 n45003001006 n45001015008 +84195 n45003008008 +84222 n45003010006 +84245 n45003012008 +84250 n45003012001 +84253 n45003012001 +84260 n45003012001 +n45003012001 +84271 n45003012001 +84280 n45003012001 +84293 n45003012001 +84327 n45003019024 +84374 n45003023009 +84383 n45003024011 +84392 n45003024011 +84398 n45003025004 +84415 n45003026005 +84423 n45003026005 +84469 n45003030004 +84497 n45001001001 n45001015008 n45003001006 +84524 n45004003008 +84553 n45004005005 +84564 n45004006008 +84583 n45004008002 +84641 n45004009017 +84651 n45004011021 +84674 n45001001001 n45001015008 n45004011021 n45004012007 +84685 n45004013008 +84692 n45004013008 +84750 n45004016028 +84754 n45001001001 n45001015008 n45004016018 n45004016025 +84756 n45004017012 +84777 n45004016028 +n45004016028 +84787 n45004016028 +84798 n45004016028 +84806 n45004016028 +84848 n45004016028 +84855 n45004016028 +84863 n45001001001 n45001015008 n45004016018 n45004016025 +n45001001001 n45001015008 n45004016018 n45004016025 +84877 n45001001001 n45001015008 n45004024009 +n45004024013 +84883 n45001001001 n45001015008 n45004024009 +84889 n45001001001 n45001015008 n45004024009 +84902 n45001001001 n45001015008 n45004024009 +84906 n45005001012 +84918 n45005002011 +84965 n45001001001 n45001015008 n45004024009 +84971 n45001001001 n45001015008 n45004024009 +84976 n45001001001 n45001015008 n45004024009 +85002 n45005008009 +85005 n45001001001 n45001015008 n45004024009 +85012 n45001001001 n45001015008 n45004024009 +85015 n45001001001 n45001015008 n45004024009 +85025 n45005008015 +85028 n45005008015 +85044 n45005010007 +85052 n45005010012 +85065 n45001001001 n45001015008 n45004024009 +85069 n45005011012 +85137 n45005014019 +85155 n45005014019 +85185 n45005014019 +85209 n45005014019 +85216 n45005014019 +85242 n45005014019 +85252 n45005017032 +85278 n45005017032 +85321 n45001001001 n45001015008 n45004024009 +85334 n45001001001 n45001015008 n45004024009 +85342 n45006002006 +85346 n45001001001 n45001015008 n45006002004 +85354 n45006003007 +85358 n45006003007 +85378 n45001001001 n45001015008 n45006003005 +85391 n45006004013 +85397 n45006006008 +85402 n45001001001 n45001015008 n45006003005 +85414 n45001001001 n45001015008 n45006003005 +85433 n45006008005 +85443 n45006009003 +85461 n45001015008 +85463 n45001015008 +85484 n45001015008 +85491 n45006012010 +85496 n45001015008 +85503 n45001015008 +85513 n45001015008 +85520 n45001015008 +85549 n45001015008 +85555 n45006016005 +85579 n45006017017 +85598 n45001015008 +85604 n45001015008 +85619 n45001015008 +85647 n45006021009 +85662 n45001015008 +85688 n45001001001 n45001015008 n45006003005 +85750 n45007002004 +85757 n45001001001 +85759 n45007004002 +85771 n45007004002 +n45007004013 +85799 n45001001001 n45007004002 n45006003005 +85817 n45001001001 n45007004002 n45006003005 +85865 n45001001001 +85874 n45001001001 +85887 n45001001001 +85891 n45001001001 +85909 n45001001001 +85912 n45007011008 +85930 n45001001001 +85944 n45001001001 +85965 n45001001001 +85981 n45007015009 +85986 n45007015014 +85993 n45007016005 +86003 n45001001001 +86005 n45007016005 +86010 n45001001001 +86018 n45001001001 +86024 n45001001001 +86030 n45001001001 +86048 n45007019010 +86055 n45007020005 +n45001001001 +86059 n45001001001 +86061 n45007020005 +86066 n45001001001 +86072 n45001001001 +86079 n45001001001 +86100 n45001001001 +86106 n45001001001 +86109 n45001001001 +86120 n45001001001 +86123 n45001001001 +86125 n45001001001 +86141 n45001001001 n45007004002 n45006003005 +86145 n45001001001 +n45001001001 +86176 n45007004002 +86191 n45008003003 +86199 n45008003013 +86222 n45001001001 n45007004002 n45008001005 +86289 n45007004002 +86302 n45007004002 +86310 n45008009018 +86313 n45008009020 +86318 n45007004002 +86343 n45007004002 +86355 n45007004002 +86361 n45008011018 +86396 n45008014005 +86413 n45008015011 +86418 n45008016003 +86424 n45001001001 n45008012003 n45008004013 +86460 n45001001001 n45008012003 n45008004013 +86490 n45008021005 +86525 n45001001001 n45008012003 n45008004013 +86531 n45001001001 n45008012003 n45008004013 +86533 n45001001001 n45008012003 n45008004013 +86535 n45001001001 n45008012003 n45008004013 +86543 n45001001001 n45008012003 n45008004013 +86577 n45001001001 n45008012003 n45008004013 +86587 n45008026021 +86636 n45008028007 +86640 n45008029010 +86648 n45008030003 +86654 n45008030009 +86660 n45008030015 +86672 n45001001001 n45008012003 n45008004013 +86675 n45001001001 n45008012003 n45008004013 +86677 n45008031008 +86679 n45008031008 +86685 n45001001001 n45008012003 n45008004013 +86688 n45008032005 +86693 n45008032005 +86696 n45001001001 n45008012003 n45008004013 +86716 n45008034004 +86722 n45008034004 +86726 n45001001001 n45008012003 n45008004013 +86728 n45001001001 n45008012003 n45008004013 +86752 n45008034017 +86769 n45001001001 n45008012003 n45008004013 +86796 n45001001001 n45008012003 n45008004013 +86809 n45001001001 n45008012003 n45008004013 +86817 n45001001001 +86820 n45001001001 +86826 n45001001001 +86834 n45001001001 +86837 n45001001001 +n45001001001 +86847 n45001001001 +86850 n45001001001 +86853 n45009003012 +86856 n45009004003 +86874 n45009004003 +86879 n45009004003 +86897 n45009006005 +86910 n45009006013 +86917 n45009006013 +86923 n45009007005 +86932 n45009008005 +86948 n45009009010 n45009009015 +86968 n45009010011 +86972 n45001001001 n45008012003 n45008004013 +86998 n45009010006 +87058 n45009017014 n45009017022 +87060 n45009017006 +87064 n45009017006 +87067 n45009016012 +87073 n45009016012 +87089 n45001001001 +87096 n45009016012 +87104 n45009020002 +87116 n45009020014 +87129 n45009021012 +87134 n45009021018 +87138 n45009021018 +87153 n45009022005 +87170 n45009022005 +87174 n45009023010 +87178 n45009023010 +87181 n45001001001 n45008012003 n45008004013 +87200 n45009022005 +87202 n45009022005 +87213 n45009026005 +87215 n45009025010 +87218 n45009022005 +n45009025010 +n45009026005 +87265 n45009027013 +87331 n45009005008 +87339 n45001001001 +87348 n45009031001 +87353 n45009031001 +87370 n45009031001 +87402 n45010005006 +87415 n45009031001 +87421 n45010006015 +87431 n45010007003 +87441 n45009031001 +87448 n45009031001 +87453 n45009031001 +n45010008005 n45010008011 +87460 n45010008021 +87468 n45010001001 +87476 n45010001001 +87480 n45010009008 +87503 n45010009008 +87516 n45010012012 +87524 n45010012012 +87581 n45010016007 n45010015014 +87606 n45010015014 +87615 n45010015014 +87625 n45010009018 +87627 n45010019004 +87635 n45010019004 +87643 n45010009018 +87649 n45010009018 +87663 n45010009018 +87677 n45011001006 +87682 n45001001001 +87696 n45011002004 +n45011002006 +87718 n45011003001 +87722 n45011003001 +87724 n45011002014 +87731 n45011002014 +87735 n45011002014 +87739 n45011003001 +87742 n45011004010 +87777 n45011007004 +87791 n45011007015 +87815 n45011007015 +87827 n45011007015 +87831 n45011007015 +87838 n45011007015 +87852 n45011007015 +87861 n45011007015 +87866 n45011007015 +87872 n45011007015 +87879 n45011007015 +87882 n45010001001 +87890 n45001001001 +87895 n45001001001 +87900 n45001001001 +87907 n45011014006 +87912 n45011014006 +87946 n45011013005 +87951 n45011017005 +87969 n45011013005 +87976 n45011013005 +87982 n45011013005 +87989 n45011013005 +88009 n45011013005 +88024 n45011013005 +88033 n45011013005 +88036 n45011021008 +88050 n45011021008 +88053 n45011013005 +88074 n45011024019 +88080 n45011025006 +88089 n45011025006 +88122 n45011026008 n45011026013 +n45011026016 +88126 n45011023013 +88132 n45011026016 +88139 n45011025006 +88159 n45011025006 +88168 n45011026016 +88172 n45011026016 +88176 n45011025006 +88180 n45011026016 +88207 n45011033008 +88212 n45011033008 +88221 n45011034005 +88226 n45011034005 +88229 n45011035002 +88232 n45011034005 +88235 n45011034005 +88238 n45011034005 +88241 n45011034005 +88256 n45012001004 +88260 n45012001004 +88270 n45012001004 +88286 n45012001004 +88305 n45001001001 +88310 n45012001004 +88323 n45012001004 +88343 n45012004017 +88348 n45001001001 n45012001004 n45010004009 +88357 n45001001001 n45012001004 n45012005003 +n45001001001 n45012001004 n45012005003 +88369 n45001001001 n45012001004 n45012005003 +88418 n45012001004 +88422 n45012001004 +88467 n45012001004 +88481 n45012001004 +88496 n45012001004 +88503 n45012019004 +88512 n45012019017 +88514 n45012019017 +88525 n45012020005 +88529 n45012020005 +88531 n45012020007 n45012020011 +88539 n45012020005 +88585 n45013002013 +88613 n45013003018 +88618 n45012019004 +88660 n45013005002 +88702 n45012019004 +88759 n45012019004 +88766 n45001001001 n45012019004 n45012005003 +88860 n45014003013 +88862 n45014004005 +88870 n45014004007 +88882 n45014004007 +88898 n45014005013 +88929 n45001001001 n45012019004 n45012005003 +n45014007001 +88934 n45014007007 +88961 n45014009013 +88973 n45014004005 +88978 n45014004005 +88981 n45014004005 +88986 n45014004005 +88988 n45001001001 n45012019004 n45012005003 +88997 n45014011006 +89001 n45014011006 +89013 n45001001001 n45012019004 n45014010016 +n45001001001 n45012019004 n45012005003 +89016 n45014012003 +89023 n45001001001 n45012019004 n45012005003 +89026 n45014013011 +89047 n45014014008 +89055 n45014014015 +89063 n45012019004 +89072 n45012019004 +n45014015006 +89076 n45014015006 +89082 n45012019004 +89130 n45001001001 n45012019004 n45012005003 +89163 n45012019004 +89165 n45012019004 +89167 n45014022002 +89170 n45012019004 +89179 n45014022014 +89203 n45001001001 n45012019004 n45012005003 +89213 n45001001001 n45012019004 n45015001005 +89216 n45001001001 n45012019004 n45015001005 n45015001009 +89230 n45015003004 +89239 n45014022010 +89248 n45001001001 n45012019004 n45015001005 n45015001009 +89273 n45012019004 +89278 n45012019004 +89294 n45001001001 n45012019004 n45015001005 n45015001009 +89299 n45012019004 +89305 n45001001001 n45012019004 +89339 n45015009008 +89345 n45015009008 +89355 n45015009008 +89366 n45015011008 +89385 n45015012007 +89394 n45012019004 +89405 n45012019004 +89415 n45001001001 +89418 n45001001001 +n45001001001 +89421 n45015014003 +89424 n45015014003 +89434 n45015014003 +89439 n45015014003 +89444 n45015014003 +89450 n45001001001 +89457 n45001001001 +89501 n45001001001 +89518 n45001001001 +89553 n45015020008 +89567 n45015014003 +89583 n45015014003 +89597 n45015014003 +89600 n45015014003 +89602 n45015024006 +89604 n45015014003 +89638 n45015026013 +89643 n45015026013 +89653 n45015026013 +89655 n45015025003 +89659 n45015026013 +89665 n45015014003 +89673 n45015014003 +89685 n45001001001 n45015030004 n45015026013 +89694 n45015030004 +89696 n45001001001 +89701 n45001001001 +89716 n45001001001 +89729 n45015030004 +89734 n45015030004 +89742 n45015030004 +89746 n45015030004 +89750 n45001001001 n45015030004 n45015026013 +89759 n45016001004 +89768 n45016001004 +89772 n45015030004 +89777 n45016001004 +89782 n45001001001 +n45001001001 +89790 n45001001001 +89794 n45016003002 n45016003004 +89798 n45001001001 +89800 n45016003002 n45016003004 +89803 n45016003002 n45016003004 +89806 n45001001001 +89819 n45016003002 n45016003004 +89825 n45001001001 +n45016005008 +89835 n45016006002 +89839 n45015030004 +89846 n45001001001 +89849 n45001001001 +n45016007002 n45016007004 +89856 n45016007002 n45016007004 +89859 n45001001001 +89867 n45001001001 +89874 n45001001001 n45016001004 n45016003002 n45016003004 n45016005008 n45016006002 n45016007002 n45016007004 n45016008002 +89881 n45001001001 +89897 n45001001001 +89919 n45016012010 +89933 n45016013002 +89935 n45001001001 +89945 n45016014002 n45016014003 n45016014004 n45016014005 n45016014006 +89955 n45016015005 +89961 n45016015002 n45016015004 n45016015005 n45016015008 n45016015011 +89965 n45015030004 +89970 n45015030004 +89979 n45016017004 +89990 n45016017014 +n45016017004 +89997 n45016017018 +90000 n45016017018 +90003 n45001001001 n45016017004 n45016016009 n45016003006 +90009 n45016017018 +90024 n45016017004 +90031 n45016017004 +90035 n45016017004 +90057 n45016017004 +90064 n45001001001 n45016017004 n45016016009 n45016003006 +90067 n45016017004 +90069 n45016017004 +90073 n45001001001 +90082 n45001001001 +90084 n45016017004 +n45016022004 +90094 n45016017004 +90098 n45001001001 +90104 n45016017004 +90117 n45016017004 +90122 n45001001001 +90160 n45016025003 +90203 n46001001001 n46001001010 n46001002002 +90209 n46001002018 +90211 n46001001001 n46001001010 n46001002002 +n46001002002 +90219 n46001001001 n46001001010 n46001002002 n46001002018 +90229 n46001002002 +90237 n46001002002 +90246 n46001004017 +90260 n46001002002 +90262 n46001002002 +90273 n46001001001 n46001001010 n46001002002 n46001002018 +90276 n46001007012 +90279 n46001002002 +90288 n46001001001 n46001001010 n46001002002 n46001002018 +90295 n46001009003 +90301 n46001009003 +90306 n46001001001 n46001001010 n46001002002 n46001002018 +90310 n46001010004 +90316 n46001001001 n46001001010 n46001010004 n46001002018 +90323 n46001010004 +90328 n46001010004 +90335 n46001010030 +90340 n46001010035 +90344 n46001001001 +90346 n46001001001 +90348 n46001011006 +90355 n46001011006 +90359 n46001012007 +90361 n46001011006 +n46001011006 +90365 n46001012005 +90369 n46001012005 +90372 n46001012005 +90375 n46001012005 +90384 n46001011006 +90393 n46001011006 +n46001011006 +90408 n46001013013 +90426 n46001013013 +90457 n46001013013 n46001001010 n46001011006 n46001002018 +90528 n46001013013 n46001001010 +90539 n46001024004 +90574 n46001026006 +90639 n46001029008 +n46001026006 +90645 n46001030007 +90647 n46001013013 n46001001010 n46001026006 n46001002018 +90666 n46001013013 +90669 n46002001005 +90678 n46002001005 +90689 n46002001005 +90695 n46002002010 +90697 n46001013013 +90709 n46002001005 +90713 n46001013013 +90717 n46001013013 +90732 n46002001005 +90770 n46002007004 +90779 n46001013013 n46001001010 n46001026006 n46001002018 +n46002007004 +90821 n46002009021 +90823 n46002009023 +90855 n46002011013 +90871 n46002009023 +90891 n46002009023 +n46002012022 +90920 n46002014003 +90936 n46002015003 +90947 n46002016005 +90949 n46002009023 +90954 n46001013013 +90958 n46003001002 +90969 n46003001002 +90988 n46003001002 +91004 n46003004004 +91009 n46003004009 +91024 n46003005009 +91028 n46003005009 +91032 n46003005008 +91064 n46003008009 +91069 n46003008009 +91087 n46003008002 +91110 n46003011009 +91149 n46003013017 +91156 n46003014004 +91167 n46003015002 +91186 n46003001002 +91196 n46003017002 +91206 n46003017014 +91208 n46003001002 +91210 n46003018001 +91218 n46003001002 +91248 n46003019017 +91267 n46003001002 +91286 n46003001002 +91288 n46003001002 +91294 n46003022002 n46003022004 +91312 n46004002006 +91315 n46003022002 +91322 n46003001002 +91329 n46003022002 +91333 n46003022002 +91338 n46004004004 +91343 n46003022002 +91357 n46004005011 +91375 n46003001002 n46003022002 n46003022004 +91384 n46003022002 +91388 n46004006003 +91391 n46003022002 n46004006008 +91400 n46004006003 +91410 n46004006003 +91415 n46004007005 +91433 n46003022002 n46004006008 +91441 n46003022002 n46004006008 +n46004006003 +91448 n46003022002 n46004006008 +91464 n46004009007 +91469 n46004006003 +91473 n46004009007 +91476 n46004006003 +91478 n46004006003 +91481 n46004009007 +91501 n46004009007 +91520 n46004006003 +91526 n46003022002 +91547 n46003022002 +n46004006003 +91552 n46004006003 +91554 n46003022002 +91557 n46004016001 +91560 n46004006003 +91562 n46004017006 +91564 n46003022002 +91571 n46004017006 +n46004006003 +91576 n46003022002 +91591 n46003022002 +91593 n46004006003 +91600 n46004006003 +91632 n46004006003 +91642 n46004006003 +91647 n46005001008 +91659 n46004006003 +91670 n46004006003 +91674 n46005001019 +91677 n46003022002 +91692 n46005001019 +91701 n46004006003 +91704 n46003022002 +91711 n46002009023 +91715 n46005003018 +91735 n46004006003 +91760 n46002009023 +91782 n46004006003 +91813 n46004006003 +91833 n46005011008 +91838 n46003022002 +91845 n46004006003 +91857 n46004006003 +n46004006003 +91861 n46004006003 +91888 n46004006003 +91914 n46006004008 +91918 n46004006003 +91924 n46004006003 +91927 n46006005011 +91934 n46006005011 +91941 n46006006005 +91949 n46004006003 +91955 n46004006003 +91967 n46004006003 +91972 n46006008003 n46006008005 +92009 n46006009013 n46006009015 n46006009017 n46006009019 n46006009021 n46006010002 n46006010004 n46006010006 n46006010008 n46006010010 +n46004006003 +92031 n46006002006 +92061 n46006013007 +92063 n46006013009 +92087 n46006002006 +92092 n46006014003 +92098 n46004006003 +92146 n46006018005 +92158 n46006018016 +92167 n46004006003 +92171 n46004006003 +92175 n46006019013 +92182 n46004006003 +92193 n46004006003 +92209 n46007002005 +92215 n46007002011 +92235 n46007004002 +92248 n46007004015 +92257 n46007004015 n46007004023 +92278 n46007004015 n46007004023 +92284 n46007004015 n46007004023 +92286 n46007005010 +92300 n46003022002 +92304 n46007007010 +92322 n46007008004 n46007008007 +92326 n46003022002 +92343 n46003022002 +92371 n46003022002 +92382 n46007012012 +92386 n46007012011 +92389 n46007012012 +92392 n46007013002 +92397 n46007013005 +92401 n46007013002 +92428 n46007014004 n46007014009 n46007014013 n46007014018 +92450 n46007015005 +92455 n46007008004 n46007008007 n46007010003 n46007015010 n46007015013 +92523 n46007020004 +92526 n46007020004 +92531 n46004006003 +92564 n46007024005 +92569 n46007024003 +92592 n46007026014 +92635 n46007010003 +92637 n46003022002 +n46007024005 +92642 n46007029007 +92694 n46007029004 +92756 n46007029004 +n46007029004 +92763 n46007029004 +92781 n46007036003 +92802 n46007037001 +92812 n46007037001 +92815 n46007037026 +92819 n46007037001 +92823 n46007037001 +92832 n46007038004 +92850 n46007039001 +92872 n46003022002 +92876 n46003022002 +92886 n46006002006 +92912 n46008003003 +92915 n46008003006 +92934 n46008004016 +92955 n46006002006 +92961 n46008006004 +92965 n46006002006 +92967 n46008006004 +92974 n46008006017 +92978 n46006002006 +92980 n46008006017 +93001 n46008007007 +93007 n46006002006 +93027 n46007029004 +n46008008016 n46008008012 +93037 n46007029004 +93047 n46008010003 +93060 n46008010007 +93067 n46008011010 +93078 n46008012006 +93091 n46003022002 +93103 n46003022002 +93115 n46006002006 +93120 n46003022002 +n46007029004 +93132 n46007029004 +93137 n46003022002 +93140 n46007029004 +93145 n46003022002 +93148 n46003022002 +93151 n46009002009 n46009002012 +93180 n46003022002 +93190 n46009007001 +93199 n46009007008 +93244 n46003022002 n46009006005 n46009005012 n46009005015 n46009005019 +93249 n46003022002 n46009006005 n46009005012 n46009005015 n46009005019 +93266 n46003022002 n46009006005 n46009005012 n46009005015 n46009005019 +n46007029004 +93273 n46003022002 n46009006005 n46009005012 n46009005015 n46009005019 +n46007029004 +93281 n46007029004 +93286 n46003022002 n46009006005 +93292 n46009011013 +93338 n46003022002 +93342 n46009014013 +93351 n46003022002 +93354 n46003022002 +93360 n46003022002 +93368 n46003022002 +93372 n46003022002 +93376 n46003022002 +93384 n46009016018 +93396 n46003022002 +93411 n46003022002 +93421 n46003022002 +93444 n46003022002 +93488 n46009023006 +93491 n46009023006 +93501 n46009024007 +93520 n46009025004 +93526 n46006002006 +93529 n46003022002 +93543 n46003022002 +93552 n46003022002 +93559 n46010001006 +93564 n46006002006 +93571 n46010001009 +93577 n46010001009 +93590 n46010001009 +93592 n46010003006 +93597 n46010001009 +93599 n46010004007 +93620 n46010001009 +93632 n46006002006 +93638 n46006002006 +93642 n46010001009 +93649 n46010001009 +93665 n46010001009 +93679 n46010001009 +93690 n46010001009 +93701 n46010001009 +93706 n46006002006 +93708 n46006002006 +93722 n46010001006 +93732 n46010013011 +93735 n46010001006 +93753 n46003022002 +93762 n46010014002 +93769 n46010016002 +93780 n46010016015 +93795 n46006002006 +93799 n46006002006 +93843 n46010014002 +93870 n46010022004 +93886 n46010024001 +93911 n46010026005 +93917 n46010014002 +93924 n46010014002 +93934 n46010014002 +93936 n46010027012 +93942 n46010028003 +93953 n46010014002 +93957 n46010028003 +93963 n46003022002 +93969 n46003022002 +93976 n46003022002 +94003 n46003022002 +94010 n46003022002 +94019 n46003022002 +94022 n46003022002 +94026 n46010014002 +94029 n46003022002 +94034 n46010014002 +94040 n46010014002 +94072 n46011004002 +94085 n46011005003 +94153 n46011008010 n46011009010 +94197 n46010014002 +n46010014002 +94210 n46011014003 +94212 n46010014002 +94219 n46011014008 +94226 n46011015001 +94234 n46003022002 +94241 n46009014009 +94270 n46010014002 +94276 n46010014002 +94287 n46010014002 +94296 n46010014002 +94299 n46010014002 +94309 n46010014002 +94311 n46011021001 +94347 n46010014002 +94349 n46010014002 +94351 n46011021006 +94355 n46003022002 +94363 n46010014002 +94371 n46011023017 +94380 n46011023021 +94382 n46011023013 +94388 n46011026004 +94392 n46011023013 +94411 n46011023013 +94413 n46011026011 +94420 n46011023013 +94466 n46011028003 +94484 n46011029003 +94493 n46011029008 +94495 n46010014002 +94505 n46006002006 +94524 n46003022002 +94529 n46011033002 +94556 n46012001005 +94574 n46012001005 +94601 n46012004008 +94609 n46012005008 +94617 n46012006008 +94650 n46012008017 +94656 n46012009006 +94686 n46012008008 n46012008012 n46012009002 n46012009009 n46012010003 n46012010007 n46012010010 n46012010013 n46012010017 +94692 n46012011010 +94695 n46012011013 +94729 n46006002006 +94744 n46006002006 +94773 n46012015008 +94795 n46012016009 +94810 n46012017004 +94824 n46012018007 +94834 n46012018007 +94857 n46012021008 +94867 n46012021018 +94889 n46012023004 +94896 n46006002006 +94903 n46006002006 +94929 n46012025015 +94950 n46012001005 +94983 n46012028004 +94986 n46012028004 +94989 n46012028004 +94992 n46012028004 +94995 n46012028004 +95000 n46012028004 +95004 n46012028004 +95017 n46012001005 +95072 n46003022002 +95078 n46003022002 +95106 n46013004010 +95210 n46013013004 n46013013005 n46013013006 +95213 n46013013004 n46013013005 n46013013006 +95256 n46014004002 +95266 n46012001005 +95296 n46014006003 +95300 n46014006003 +95304 n46014006003 +95353 n46014006003 +95397 n46003022002 +95401 n46014006003 +95427 n46003022002 +95432 n46003022002 +95470 n46014006003 +95479 n46014006003 +95491 n46014006003 +95503 n46003022002 +95548 n46014021022 +95582 n46014023005 +95596 n46014023005 +95606 n46014023005 +95609 n46014023005 +95614 n46014024008 n46014024010 +95631 n46014023005 +95639 n46014026004 +95650 n46014026008 n46014026010 n46014026012 n46014026014 n46014026016 +95680 n46014027003 +95706 n46014026004 +95709 n46014026004 +95712 n46014026004 +95743 n46014034002 +95760 n46014034002 +95772 n46014026004 +95780 n46014026004 +95793 n46014026004 +95805 n46003022002 +95825 n46015001004 +95828 n46015001006 +95830 n46015001004 +n46015001006 +95835 n46015001006 +95839 n46015001006 +95845 n46015001004 +95855 n46015001004 +95858 n46015003011 n46015004003 n46015004006 n46015005003 +95867 n46014033015 +95898 n46015006005 +95918 n46003022002 +95923 n46003022002 +95929 n46015009005 +95950 n46015010003 +95953 n46003022002 +95959 n46015009007 +95964 n46003022002 +95971 n46003022002 +95974 n46003022002 +95976 n46015009007 +95993 n46015001004 +96018 n46003022002 n46015009007 +96023 n46015001004 +96039 n46015015015 +96063 n46015001004 +96069 n46015001004 +96128 n46015023001 +96139 n46015023012 +96162 n46015023012 +96173 n46015023012 +96185 n46015023012 +96197 n46015023012 +96203 n46015023012 +96208 n46015028011 +96214 n46015028011 +96241 n46015029011 +96244 n46003022002 n46015009007 +96254 n46015031008 +96256 n46015031007 +96263 n46014033015 +96271 n46003022002 +96303 n46015031008 +96318 n46015036001 +96348 n46015037012 +96356 n46015038010 +96362 n46015039006 +96493 n46015048001 +96501 n46015048009 +96519 n46015050013 n46015050019 +96539 n46015050004 +96541 n46014033015 +96545 n46014033015 +96564 n46014033015 +96605 n46015055003 +96610 n46015055008 +96633 n46014033015 +96639 n46014033015 +96644 n46003022002 +96660 n46015058002 +96682 n46015058002 +96688 n46015058002 +96690 n46016002004 +96695 n46016002011 +96712 n46016003006 +96717 n46015058002 +96725 n46003022002 +96728 n46003022002 +96733 n46015058002 +96742 n46015058002 +96749 n46015058002 +n46003022002 +96758 n46015058002 +96769 n46015058002 +96782 n46003022002 +96800 n46015058002 +96807 n46003022002 +96811 n46016010004 +96815 n46016010004 +96821 n46003022002 +96824 n46016010004 +96835 n46016012003 +96839 n46015058002 +96863 n46015058002 +96869 n46016015004 +96886 n46016015007 +96889 n46016015004 +96892 n46016015007 +96911 n46016015004 +96913 n46016017006 n46016017008 n46016017010 +96918 n46003022002 +96922 n46016015004 +96926 n46016017006 n46016017008 n46016017010 +96928 n46016015004 +96934 n46016015004 +96945 n46016019012 n46016019014 +96948 n46016015004 +96953 n46016015004 +96960 n46003022002 +96979 n46016015004 +96982 n46016021006 +96985 n46016015004 +97018 n47001001013 n47001001022 +97025 n47001001001 n47001001009 n47001001013 n47001001022 +97037 n47001001001 n47001001009 n47001001013 n47001001022 +97050 n47001001001 n47001001009 n47001001013 n47001001022 +97055 n47001001001 n47001001009 n47001001013 n47001001022 +97059 n47001001001 n47001001009 n47001001013 n47001001022 +97068 n47001004020 +97070 n47001001001 n47001001009 n47001001013 n47001001022 +97082 n47001001001 n47001001009 n47001001013 n47001001022 +97091 n47001001001 n47001001009 n47001001013 n47001001022 +97097 n47001001013 n47001001022 +97105 n47001001013 n47001001022 +97112 n47001006022 +97114 n47001006022 +97116 n47001001001 n47001001009 +97121 n47001001001 n47001001009 +97124 n47001001013 n47001001022 +97140 n47001008006 +97145 n47001001001 n47001001009 +97159 n47001001001 n47001001009 +97164 n47001001001 n47001001009 +97166 n47001001001 n47001001009 +97177 n47001001001 n47001001009 +97186 n47001009019 +97191 n47001001001 n47001001009 +97195 n47001009019 +97203 n47001008006 +97205 n47001001001 n47001001009 +97214 n47001001001 n47001001009 +97220 n47001001001 n47001001009 +97224 n47001001001 n47001001009 +n47001012028 +97231 n47001001001 n47001001009 +97254 n47001008006 +97257 n47001008006 +97276 n47001001001 n47001001009 +97281 n47001008006 +97285 n47001008006 +n47001001001 n47001001009 +97292 n47001001001 n47001001009 n47001008006 +97301 n47001008006 +97309 n47001008006 +97319 n47001008006 +97322 n47001008006 +97328 n47001015009 +97344 n47001001001 +97359 n47001001001 n47001001009 +97362 n47001008006 +97377 n47001008006 +97379 n47001001001 n47001001009 n47001019017 +97382 n47001001001 +97395 n47001019005 +97402 n47001019005 +97408 n47001019005 +97416 n47001001001 n47001019017 n47001019019 +97420 n47001001001 n47001019017 n47001019019 +97422 n47001008006 +97427 n47001001001 n47001019017 n47001019019 n47001008006 +97432 n47001001001 n47001019017 n47001019019 n47001008006 +97442 n47001001001 n47001019017 n47001019019 n47001008006 +97444 n47001001001 +97451 n47001001001 +97455 n47001008006 +97463 n47001008006 +97471 n47001008006 +97478 n47001001001 +n47002001012 +97486 n47001008006 +97490 n47001001001 +97492 n47001008006 +97497 n47001001001 +97503 n47001001001 +97515 n47001001001 +97521 n47001008006 +97524 n47001001001 +97527 n47001008006 +97537 n47001008006 +97549 n47002004018 +97553 n47001008006 +97559 n47001001001 +97565 n47001008006 +97571 n47002005003 +97582 n47001008006 +97593 n47002005003 +97596 n47001008006 +97599 n47002005003 +97603 n47002009007 +97610 n47001008006 +97620 n47001001001 +97623 n47001001001 +97630 n47001008006 +97642 n47002011006 +97658 n47001001001 +97667 n47001001001 +97671 n47001001001 +97675 n47001001001 +97678 n47002012005 +97689 n47001001001 n47001019017 n47001019019 n47002013011 +97698 n47002014011 +97701 n47001001001 n47001019017 n47001019019 n47002013011 +97719 n47002015013 +97726 n47002015009 +97763 n47001001001 n47001019017 n47001019019 n47002013011 +97773 n47001008006 +97776 n47001008006 +97779 n47001001001 n47001019017 n47001019019 n47002013011 +n47001008006 +97786 n47001001001 n47001019017 n47001019019 n47002013011 +97800 n47001001001 n47001019017 n47001019019 n47002013011 +97819 n47003002002 n47003003001 +97830 n47001001001 n47001019017 n47001019019 n47002013011 +97837 n47001001001 n47001019017 n47001019019 n47002013011 +97841 n47001001001 n47001019017 n47001019019 n47002013011 +97845 n47003005018 +97848 n47001001001 n47001019017 n47001019019 n47002013011 +97893 n47003007024 +97928 n47003008005 n47003009010 +97949 n47003011012 +97963 n47003013004 +97980 n47003013016 +97987 n47003014013 +98013 n47003013016 +98037 n47001001001 n47001019017 n47001019019 n47002013011 n47001008006 +98046 n47003018012 +98062 n47003009012 +98089 n47001001001 n47001019017 n47001019019 n47002013011 +98104 n47001001001 n47001019017 n47001019019 n47002013011 +98111 n47004003011 +98134 n47004004024 +98141 n47001001001 n47001019017 n47001019019 n47002013011 +98148 n47001001001 n47001019017 n47001019019 n47002013011 +98150 n47001008006 +98162 n47004006005 +98167 n47001001001 n47001019017 n47001019019 n47002013011 +98183 n47004001005 +98198 n47001001001 n47001019017 n47001019019 n47002013011 +98235 n47001001001 n47001019017 n47001019019 n47002013011 +98239 n47001001001 n47001019017 n47001019019 n47002013011 +98258 n47004011005 +98263 n47004011005 +98269 n47001008006 +98273 n47004013005 +98284 n47004011005 +98297 n47004011005 +98304 n47001008006 +98309 n47001008006 +98333 n47004011005 +98339 n47004011005 +98358 n47004011005 +98361 n47004011005 +98383 n47004011005 +98401 n47005001010 +98405 n47004011005 +98416 n47001001001 n47001019017 n47001019019 +98444 n47005004007 +98447 n47005004018 +98451 n47005004007 +98498 n47001001001 n47001019017 n47001019019 +n47005008014 +98504 n47005004007 n47001008006 +98514 n47005004007 n47001008006 +98523 n47005010020 +98525 n47005010020 +98543 n47001008006 +98547 n47005004007 +98549 n47001008006 +98554 n47001008006 +98556 n47005004007 +98574 n47001008006 +98581 n47005004007 +98583 n47005014014 n47005014018 +98585 n47005014005 +98602 n47005015007 +98606 n47005015007 +98611 n47005004007 +98634 n47005017003 +98650 n47005004007 +n47005018006 +98656 n47005004007 +98669 n47005019003 +98672 n47005019007 +98675 n47005019007 +98679 n47005004007 +98693 n47005004007 +98705 n47005004007 n47001008006 +98709 n47005004007 n47001008006 +98714 n47005021003 +98727 n47001008006 +98762 n47005004007 +98825 n47001001001 n47001019017 n47001019019 +98827 n47001001001 n47001019017 n47001019019 +98848 n47001001001 n47001019017 n47001019019 +98861 n47005004007 +98864 n47006011007 +98867 n47005004007 +98872 n47005004007 +98878 n47006011007 +98888 n47006011007 +n47006011007 +98925 n47005004007 n47006011007 +98947 n47006016017 +98953 n47006014004 +98962 n47006017009 +98973 n47006017009 +98984 n47006016019 n47006016023 n47006016027 n47006016032 n47006017015 n47006018005 n47006018011 +98988 n47005004007 n47007001006 +99001 n47005004007 +99018 n47005004007 +99026 n47001001001 +99029 n47007001006 +99031 n47001001001 +99034 n47007001006 +99045 n47005004007 +99049 n47001001001 n47001019017 n47001019019 +99057 n47001001001 n47001019017 n47001019019 +99074 n47001001001 n47001019017 n47001019019 +99085 n47007006013 +99091 n47007007012 +99094 n47007001006 +99096 n47001001001 n47001019017 n47001019019 +99098 n47007001006 +99101 n47007001006 +99104 n47007001006 +99107 n47001001001 +99109 n47001001001 +99116 n47007001006 +99129 n47007008008 +99135 n47007001006 +99155 n47005004007 +99176 n47007011008 +99182 n47007001006 +99200 n47007001006 +99209 n47007001006 +99224 n47007001006 +99227 n47005004007 +99229 n47007001006 +99234 n47007012017 +99240 n47001001001 n47001019017 n47001019019 +99252 n47007013015 +99255 n47007001006 +99259 n47007013015 +99261 n47007001006 +99271 n47007001006 +99276 n47001001001 n47001019017 n47001019019 +99284 n47007014024 +99287 n47007001006 +99292 n47007001006 +99300 n47007014024 +99307 n47007001006 +99311 n47008001004 +99332 n47008001013 +99338 n47008001013 +99345 n47008001013 +99353 n47008001013 +99358 n47005004007 +99375 n47008001013 +99381 n47005004007 +99388 n47001001001 n47001019017 n47001019019 +99397 n47008001004 +99418 n47001001001 n47001019017 n47001019019 +99420 n47008001004 +99441 n47008001004 +99451 n47008001004 n47005004007 +99456 n47008001004 +99458 n47008009006 +99461 n47008001004 +99463 n47008009006 +99469 n47008007027 +99472 n47008007027 +n47008001004 +99475 n47008001004 +99524 n47008001004 +99534 n47008001004 +99538 n47008013004 +99543 n47008013004 +99548 n47008001004 +99573 n47008016009 +99576 n47008001004 +99587 n47008001004 +99592 n47008001004 +99596 n47008016015 +99599 n47008018006 +99619 n47001001001 n47001019019 n47001019017 +99627 n47001001001 n47001019019 n47001019017 +99630 n47008019024 +99636 n47001001001 n47001019019 n47001019017 +99638 n47008020006 +99640 n47001001001 n47001019017 n47001019019 +n47001001001 n47001019017 n47001019019 +99650 n47001001001 n47001019017 n47001019019 +99664 n47008016015 n47008018006 +99667 n47001001001 n47001019017 n47001019019 +n47008022005 +99683 n47008001004 +99688 n47001001001 +99691 n47008001004 +99695 n47001001001 n47001019017 n47001019019 +99705 n47008001004 +99707 n47001001001 n47001019017 n47001019019 +99710 n47008001004 +99712 n47008023003 n47008023011 +99728 n47001001001 +99732 n47008001004 +99737 n47008001004 +n47009002004 +99740 n47008001004 +99750 n47008001004 +99763 n47001001001 n47001019017 n47001019019 +99766 n47008001004 +99782 n47001001001 +99786 n47008001004 +99789 n47001001001 n47001019017 n47001019019 +99793 n47008001004 +99807 n47008001004 +99813 n47008001004 +n47009005015 +99825 n47009006008 n47009006017 +99866 n47008001004 +99907 n47008001004 +99914 n47008001004 +99921 n47009011006 +99924 n47005004007 n47009005006 +99964 n47008001004 +99975 n47009012014 +99980 n47009012014 n47009013029 +99983 n47008001004 +99985 n47008001004 +99993 n47008001004 +100000 n47009015003 +100003 n47001001001 +n47001001001 +100007 n47008001004 +100015 n47010001004 +100021 n47008001004 +100026 n47008001004 +100035 n47010002008 +100042 n47005004007 n47009005006 +100060 n47005004007 n47009005006 +100099 n47008001004 +100109 n47010007006 +100112 n47010007022 +100116 n47010007006 +100119 n47010007006 +100123 n47005004007 n47009005006 +100133 n47005004007 n47009005006 +n47010008009 +100144 n47008001004 +100153 n47008001004 +100175 n47010011013 +100178 n47010007006 +100187 n47010011006 +100198 n47005004007 n47009005006 +100201 n47010012011 +100204 n47010012008 +100206 n47010012008 +n47010012008 +100211 n47010012008 +n47010012008 +100216 n47005004007 n47009005006 +100228 n47010013013 +100230 n47005004007 n47009005006 +100237 n47008001004 +100244 n47008001004 +100246 n47005004007 n47009005006 +100250 n47008001004 +100271 n47008001004 +100273 n47008001004 +100278 n47005004007 n47009005006 +100284 n47008001004 +100303 n47010018005 +100305 n47010018005 +100315 n47010001004 +100322 n47010001004 +100325 n47008001004 +100330 n47008001004 +100350 n47011003007 +100354 n47008001004 +100372 n47011004007 +100379 n47011004013 +100385 n47011004020 +100414 n47008001004 +100418 n47010001004 +100421 n47008001004 +100430 n47008001004 +100438 n47008001004 +100443 n47008001004 +100452 n47010001004 +100463 n47010001004 +n47008001004 +100472 n47010001004 +100476 n47011009026 +100480 n47010001004 +100491 n47008001004 +100514 n47005004007 n47009005006 +100517 n47011012011 +100529 n47011014007 +100543 n47011014007 +100548 n47011015007 +100555 n47011015007 +100561 n47010001004 +100571 n47010001004 +100573 n47010001004 +100599 n47010001004 +100612 n47008001004 +100627 n47008001004 +100634 n47005004007 n47009005006 +100646 n47010001004 +100649 n47010001004 +100652 n47010001004 +100656 n47010001004 +100663 n47010001004 +100740 n47010001004 +100758 n47010001004 +100766 n47010001004 +100797 n47010001004 +100811 n47011032004 +100847 n47012002002 +100854 n47012002002 +100877 n47012004009 +100884 n47012003005 +100888 n47010001004 +100911 n47010001004 +100916 n47010001004 +100920 n47010001004 +100931 n47010001004 +100938 n47010001004 +100944 n47012007012 +100952 n47010001004 +100955 n47010001004 +100957 n47010001004 +100960 n47012008005 +100977 n47010001004 +101004 n47008001004 +n47010001004 +101008 n47010001004 +101011 n47008001004 +101030 n47008001004 +101052 n47010001004 +n47010001004 +101056 n47008001004 +101058 n47010001004 +101061 n47012013016 +101069 n47008001004 +101077 n47008001004 +101079 n47008001004 +101094 n47010001004 +101102 n47008001004 +101105 n47008001004 +101111 n47010001004 +101114 n47008001004 +101119 n47008001004 +101123 n47012017002 +101126 n47008001004 +101128 n47012017002 +101130 n47008001004 +101139 n47008001004 +101143 n47012018014 +101148 n47012018019 +101153 n47008001004 +101166 n47012019014 +101177 n47012019014 +n47010001004 +101180 n47012019014 +101197 n47010001004 +101199 n47010001004 +101202 n47010001004 +101204 n47012019014 +101220 n47012021022 n47012021024 n47012021026 +101226 n47012019014 +101265 n47010001004 +101268 n47013003008 +101270 n47012019014 +101276 n47012019014 +101289 n47005004007 n47009005006 +101292 n47013003008 +101296 n47013003008 +101301 n47012019014 +n47012019014 +101309 n47012019014 +101314 n47012019014 +101319 n47012019014 +101329 n47005004007 n47009005006 +101340 n47012019014 +101345 n47005004007 n47009005006 +101350 n47012019014 +101355 n47005004007 n47009005006 +101373 n47005004007 n47009005006 +101376 n47012019014 +101381 n47013009015 +101383 n47012019014 +101386 n47013009012 +101398 n47013010013 +101402 n47010001004 +101427 n47013011002 +101429 n47013011002 +101434 n47013011002 +101457 n47013011002 +101475 n48001001011 +101481 n48001001001 +101488 n48001002008 +101495 n48001001001 n48001002008 n48001002006 +101502 n48001003010 +101506 n48001001001 n48001002008 n48001002006 +101509 n48001001001 n48001002008 n48001002006 +101523 n48001001001 n48001002008 n48001002006 +n48001004021 +101541 n48001002008 +101548 n48001006015 +101558 n48001002008 +101569 n48001001001 n48001002006 +101575 n48001002008 +101579 n48001002008 +101590 n48001002008 +101620 n48001011004 +101626 n48001001001 +101634 n48001001001 +101638 n48001011006 +101649 n48001001001 +101665 n48001013015 +101677 n48001001001 +101683 n48001001001 +101690 n48001001001 +101694 n48001001001 +101700 n48001013017 +101704 n48001015005 +101706 n48001001001 +101709 n48001015005 +101726 n48001001001 +101749 n48001018009 +101768 n48001011004 +101805 n48001022007 +101811 n48001023013 +101817 n48001001001 +101839 n48002001008 +101842 n48002002009 +101849 n48001001001 +101864 n48001001001 +101874 n48002004005 +101879 n48001001001 n48002001010 n48002003003 n48001002006 n48001011004 +n48002004010 +101886 n48001001001 n48002001010 n48002003003 n48001002006 n48001011004 +101888 n48002004005 +101902 n48001011004 +101913 n48001001001 +101922 n48001001001 +101950 n48001001001 +101960 n48001001001 +101973 n48001001001 +101977 n48001001001 n48002009021 +101982 n48002009008 n48002009010 n48002009012 +101991 n48002010005 +101995 n48002010005 +102005 n48002011004 +102027 n48002011004 +102034 n48002011004 +102043 n48002013007 n48002011004 +102061 n48002012010 n48002013007 n48002013010 n48002012005 +102063 n48002014014 +102076 n48001001001 n48002013007 n48002013010 n48002014014 +102100 n48001001001 n48002013007 n48002013010 n48002014014 +102131 n48001001001 n48002013007 n48002013010 n48002014014 +102143 n48002018004 +102147 n48001001001 +102150 n48001001001 +102163 n48001001001 +102167 n48001001001 +102185 n48001001001 +102188 n48002020021 +102190 n48001001001 +102210 n48003001003 +102212 n48003001003 +102220 n48003002012 +102224 n48003001003 +102253 n48003001003 +102260 n48003001003 +102275 n48003006002 +102284 n48003007004 +102306 n48003008015 +102346 n48003010020 +102373 n48003010020 +102376 n48003010020 +102378 n48001001001 n48001002006 n48003001003 n48002013007 n48002013010 n48002014014 +102387 n48001001001 n48001002006 n48003001003 n48002013007 n48002013010 n48002014014 +102439 n48003016003 +102455 n48003016003 +n48003016025 +102460 n48003017018 +102512 n48003019013 +102592 n48001001001 n48001002006 n48003015001 n48003022018 n48002013007 n48002013010 n48002014014 +102609 n48003015001 +102620 n48003015001 +102643 n48003027005 +102651 n48003027005 +102689 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48003027005 +102712 n48004004010 +102739 n48004006007 +102743 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48003027005 +102791 n48004009018 +102805 n48003027005 +102811 n48003027005 +102814 n48001001001 +102816 n48001001001 +102818 n48003027005 +102821 n48004012008 +102823 n48001001001 +102833 n48004012008 +102840 n48004012008 +102844 n48001001001 +102853 n48001001001 +102861 n48004012008 +102864 n48004012008 +102870 n48004012008 +102873 n48001001001 +102876 n48004012008 +102879 n48004012008 +102881 n48004012008 +102886 n48004012008 +102889 n48002004005 +102903 n48001001001 +102905 n48004012008 +102907 n48001001001 +n48004019001 +102916 n48004019001 +102921 n48004019001 +102927 n48001001001 +102931 n48004019001 +102933 n48001001001 +102976 n48004022007 n48004023009 n48004023010 +102980 n48004023006 n48004023014 +102985 n48004023006 +102992 n48004024009 +103014 n48004025014 +103021 n48004026004 +103024 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48004021006 +103052 n48004028003 +103083 n48004030008 +103108 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48004031002 +103120 n48001001001 +103123 n48004031002 +103128 n48004031002 +103147 n48004031002 +103155 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005004007 +103181 n48005004007 +103191 n48005004007 +103198 n48005002003 +103201 n48005004007 +103211 n48005004007 +103221 n48005002003 +103239 n48005011003 +103241 n48005011003 +103259 n48005013006 +103278 n48005013006 +103285 n48005013006 +103311 n48005017010 n48005017013 +n48005017010 n48005017013 +103319 n48005017022 +103336 n48005019005 +103356 n48005019010 n48005019011 n48005019012 n48005020001 n48005020002 n48005020003 n48005020004 n48005020005 n48005020006 n48005020007 n48005020008 n48005020009 n48005021001 n48005021002 n48005021003 +n48005019010 n48005019011 n48005019012 n48005020001 n48005020002 n48005020003 n48005020004 n48005020005 n48005020006 n48005020007 n48005020008 n48005020009 n48005021001 n48005021002 n48005021003 n48005021006 +103359 n48005013006 +103365 n48005019010 n48005019011 n48005019012 n48005020001 n48005020002 n48005020003 n48005020004 n48005020005 n48005020006 n48005020007 n48005020008 n48005020009 n48005021001 n48005021002 n48005021003 n48005021006 +103388 n48005022007 n48005022008 n48005022009 n48005022010 n48005022011 n48005022012 n48005022013 n48005023001 n48005023002 +103415 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103417 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103427 n48006001001 +103432 n48006001005 +103437 n48006001011 +103440 n48006001011 +103442 n48006001011 +103462 n48006003004 +103466 n48006004006 +103472 n48006004006 +103485 n48006005001 +103509 n48006007009 +103518 n48006008003 +103544 n48006009007 +103568 n48006001011 +103571 n48005002003 +103578 n48006012002 +103580 n48006001011 +103594 n48006013004 +103599 n48006001011 +103604 n48006001011 +103608 n48005002003 +103619 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +103623 n48006014010 +n48005002003 +103627 n48005002003 +103649 n48006016006 +103659 n48005002003 +103663 n48005002003 +103671 n48005002003 +103677 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 n48006016006 n48006016015 +103683 n48006001011 +103704 n49001001009 +103711 n49001001001 n49001001009 +103723 n49001001001 n49001001009 +103728 n49001001001 n49001001009 +103740 n49001001001 n49001001009 +103742 n49001003022 +103747 n49001001001 n49001001009 +103752 n49001003003 +103756 n49001001001 n49001001009 +103763 n49001003003 +103769 n49001003003 +103775 n49001003003 +n49001006005 +103778 n49001001001 n49001001009 +103783 n49001006012 +103790 n49001006012 +103800 n49001003003 +n49001007018 +103804 n49001001001 n49001001009 +103811 n49001001001 n49001001009 +103816 n49001003003 +103820 n49001003003 +n49001009010 +103824 n49001006012 +103847 n49001010012 +103849 n49001010012 +103864 n49001011011 +103871 n49001011011 +n49001001001 n49001001009 +103879 n49001012013 +103881 n49001001009 +103891 n49001001009 +103893 n49001012013 +103903 n49001013021 +103908 n49001001001 n49001001009 +103917 n49001011011 +103920 n49001001001 +103924 n49001001009 +103942 n49001001009 +103948 n49001001001 +103954 n49001001001 n49001001009 n49001015020 +103962 n49001001009 +103969 n49001017003 +103975 n49001001009 +103979 n49001001009 +103986 n49001017003 +103994 n49001017003 +104005 n49001017003 +104007 n49001001001 n49001001009 n49001018028 +104017 n49001017003 +n49001019007 +104024 n49001020005 +104031 n49001017003 +104065 n49001020005 +104067 n49001020005 +104074 n49001022015 +104078 n49001020005 +104088 n49001001009 +104096 n49001001009 +104098 n49002001006 n49002001009 +104125 n49002002025 +104127 n49001001001 n49001001009 n49001018028 +104136 n49001001001 n49001001009 n49001018028 +104165 n49002004003 +n49002004011 +104168 n49001001001 n49001001009 n49001018028 +104171 n49001001001 n49001001009 n49001018028 +104203 n49002004003 +104207 n49001001001 n49001001009 n49001018028 +104219 n49002008005 +104222 n49001001009 +104235 n49002008013 +104244 n49002010010 +104250 n49002010010 +104256 n49001001009 +104302 n49001001009 +104315 n49002013017 +104319 n49001001001 n49001001009 n49002012012 +104323 n49002013010 n49002013012 +104336 n49002013017 +104349 n49002013017 +104359 n49002013010 n49002013012 +104372 n49002016012 +104377 n49001001009 +104386 n49002013017 +104391 n49002017007 n49002017011 +104424 n49002020012 +104428 n49002020012 +104439 n49002021011 +104441 n49001001009 +104451 n49001001001 +104459 n49001001009 +104473 n49003001004 +104475 n49003001013 +104480 n49003001004 +104488 n49003003009 +104494 n49003001004 +104500 n49003004011 +104515 n49003002009 +104536 n49003006016 +104548 n49003001004 +104554 n49003007010 +n49003001004 +104614 n49003011002 +104622 n49003008003 n49003001013 n49003008005 +104624 n49003011009 +104635 n49003011009 +104643 n49003008003 +104645 n49003001013 +n49003013007 +104649 n49003001013 +104655 n49003008003 +104660 n49003014009 +104671 n49003001013 +104677 n49003014009 +104683 n49003014009 +104697 n49003001013 +104753 n49003008003 n49003001013 n49003018007 +n49003020003 +104775 n49003001013 +n49003008003 +104785 n49004001012 +104795 n49003001013 +104822 n49003001013 +104845 n49004001006 n49003001013 n49003018007 +n49004001006 n49003001013 n49003018007 +104886 n49004010002 +104900 n49004010002 +104933 n49004001006 n49003001013 n49004012005 +104987 n49004013026 +n49004013026 +104994 n49004015014 +105020 n49004016024 +105024 n49004017010 +105031 n49003001013 +105042 n49004017014 +105058 n49004017014 +105064 n49004017014 +n49004017014 +105067 n49004017014 +105078 n49003001013 +105086 n49004020007 +105090 n49004020007 +105099 n49003001013 +105120 n49003001013 +105142 n49003001013 +105146 n49004025007 +105149 n49004001006 n49003001013 n49004012005 +105161 n49003001013 +105176 n49004028002 +105192 n49003001013 +105218 n49004030005 +105235 n49003001013 +105242 n49003001013 +105246 n49003001013 +105254 n49003001013 +105272 n49003001013 n49004012005 +105275 n49005002008 +105277 n49004001006 n49003001013 n49004012005 +105296 n49003001013 +105306 n49005004002 n49005004004 n49005004006 +105313 n49005005016 +105323 n49005005007 n49005005009 n49005005011 +105337 n49003001013 +105343 n49005003001 n49005003004 n49005003007 n49005004002 n49005004004 n49005004006 +105358 n49005006016 +105408 n49005006016 +105439 n49005014011 +105478 n49005018004 +105486 n49003001013 +105498 n49003001013 +105509 n49004001006 n49003001013 n49005003014 +105517 n49003001013 +105524 n49005022002 +105542 n49005023010 +105574 n49005025009 +105577 n49005025012 +105579 n49005025012 +105590 n49005025009 +n49005025009 +105603 n49005027010 n49005027012 +105617 n49005028005 +105621 n49005028005 +105626 n49005028015 +105628 n49005028015 +105634 n49005029001 +105641 n49005029006 +105653 n49005029016 +105668 n49005031004 +105682 n49004001006 +105692 n49003001013 +105696 n49003001013 +105698 n49005033007 +105703 n49005033007 +105716 n49006001002 +105720 n49006001003 +105730 n49006002001 n49006003002 +105753 n49006004003 +105756 n49006004007 +105777 n49006005002 +105813 n49006008007 +105828 n49006005002 +105835 n49006005002 +105837 n49006009003 +105848 n49006009019 +105860 n49006010005 +105869 n49003001013 +105878 n49004001006 n49003001013 n49005003014 +105908 n49006012014 +105931 n49003001013 +105958 n49006016005 +105979 n49006017003 n49006017009 +105996 n49006018006 +106009 n49004001006 +106011 n49004001006 +106018 n49004001006 +106027 n49006019019 +106033 n49006019007 +106037 n49004001006 +106043 n49003001013 +106046 n49004001006 +106051 n49003001013 +106061 n49006021014 +106064 n49003001013 +106067 n49006021003 n49006022009 +106072 n49004001006 n49006021014 +106077 n49003001013 +106100 n49004001006 n49006021014 n49006023003 n49006018024 +106125 n50001001009 +106132 n50001001001 n50001001003 n50001001009 +106140 n50001001001 +106145 n50001001009 +106150 n50001001001 +106153 n50001001009 +106162 n50001001009 +106175 n50001006011 +106180 n50001001009 +106191 n50001001001 +n50001006011 +106196 n50001001009 +106200 n50001001001 +106204 n50001001009 +106209 n50001001001 +106219 n50001001001 +106223 n50001001009 +106227 n50001001001 +106233 n50001001009 +106239 n50001009012 +106244 n50001001009 +106258 n50001001009 +106285 n50001012005 +106289 n50001001001 +106299 n50001001001 +106322 n50001001001 +106347 n50001015008 +106358 n50001015001 +106371 n50001001001 +106386 n50001018012 +106395 n50001001001 +106401 n50001012005 +106414 n50001001001 +106432 n50001001001 +106440 n50001001001 +106454 n50001022004 +n50001001001 +106459 n50001021008 n50001022004 +106489 n50001012005 +106491 n50001024007 +106499 n50001012005 +106502 n50001012005 +106511 n50001012005 +106517 n50001001001 +106520 n50001001001 +106524 n50001012005 +106537 n50001012005 +106543 n50001012005 +106564 n50001027029 +106566 n50001028008 +106570 n50001012005 +106573 n50001028012 n50001028016 +106577 n50001012005 +106586 n50001029006 +106592 n50001029006 +106596 n50001030003 +106598 n50001030003 +106601 n50001001001 +106606 n50001001001 +106627 n50001001001 +106635 n50002002011 +106651 n50001012005 +106654 n50001012005 +106657 n50001012005 +106665 n50002003011 n50002004005 n50002004008 +106668 n50001012005 +n50002003011 n50002004005 n50002004008 +106674 n50002005008 +106687 n50002005008 +106702 n50002005008 +106714 n50002005008 +106718 n50002005008 +106752 n50001001001 +106761 n50001001001 +106770 n50001001001 +106776 n50002012002 +106785 n50002012002 +106815 n50002015010 +106826 n50001001001 +106850 n50002012002 +106855 n50002012002 +106860 n50002012002 +106864 n50001001001 +106873 n50002012002 +106875 n50001001001 +106880 n50002012002 +106885 n50002020001 +106889 n50002012002 +106895 n50002021002 +106904 n50002019006 +106911 n50001001001 +106919 n50002019006 +106926 n50001001001 +106934 n50001001001 +106947 n50001001001 +106949 n50002012002 +106955 n50001001001 +106958 n50002012002 +106963 n50002012002 +106979 n50002025004 +106982 n50002025004 +106986 n50001001001 +106996 n50002025004 +106999 n50002025004 +107002 n50001001001 +107007 n50002025004 +107015 n50002019006 n50002025004 +107032 n50002012002 +107036 n50001001001 +107039 n50001001001 +107048 n50003001003 +107050 n50001001001 +107054 n50003001003 +107070 n50001001001 n50002019006 n50002025004 n50003001003 +107086 n50001001001 +107099 n50001001001 +107129 n50001001001 +107131 n50003007002 +107155 n50001001001 +107157 n50003008015 +107170 n50003008029 +107173 n50001001001 +107192 n50003009016 +107198 n50003009016 +107202 n50003009016 +107206 n50003009016 +107236 n50001001001 +107239 n50001001001 +107268 n50003014003 +107276 n50003015010 +107279 n50003013001 +107286 n50003016004 +107290 n50001001001 +107300 n50001001001 n50002019006 n50002025004 +107304 n50003018001 +107307 n50003017004 +107319 n50003018001 +107323 n50003018001 +107334 n50003018001 +107340 n50001001001 n50002019006 n50002025004 n50003013001 +107347 n50003020006 +107354 n50003020011 +107360 n50001001001 n50002019006 n50002025004 n50003013001 +107366 n50003020011 +107372 n50003020011 +107375 n50003020011 +107380 n50001001001 +107387 n50001001001 +107406 n50004003006 +107410 n50004002001 n50004002004 +n50004002001 n50004002004 +107416 n50001001001 +107424 n50001001001 +n50004003021 +107440 n50004001015 +107461 n50004001015 +107478 n50004001015 +107482 n50004001015 +107509 n50004008006 n50004008008 n50004008010 n50004008012 n50004008014 n50004008016 n50004008019 n50004008023 +107521 n50001001001 +n50004009003 n50004009005 n50004009007 n50004009009 +107531 n50004008003 +107543 n50001001001 +107546 n50004010010 +107557 n50001001001 +107589 n50001001001 +107594 n50001001001 +107601 n50004015005 +107613 n50001001001 +107622 n50004015005 +107635 n50001001001 +107650 n50004015005 +107662 n50004015005 +107673 n50001001001 +107677 n50004015005 +107681 n50004019003 +107692 n50001001001 n50002019006 n50004018009 n50004015005 +107708 n50004015005 +107711 n50001001001 +107714 n50004015005 +107734 n50004015005 +107755 n51001002007 +107762 n51001001001 n51001001009 n51001002007 +107769 n51001001001 n51001001009 n51001002007 +107774 n51001002007 +107779 n51001002007 +107786 n51001004010 +107797 n51001002007 +107801 n51001005003 +107813 n51001002007 +107827 n51001002007 +107847 n51001001001 n51001001009 +n51001007004 +107852 n51001002007 +107856 n51001007004 +107859 n51001001001 n51001001009 +107861 n51001002007 +107868 n51001001001 n51001001009 +107876 n51001002007 +107886 n51001006028 +107920 n51001010018 +107933 n51001002007 +107944 n51001012003 +107946 n51001001001 n51001001009 n51001002007 n51001007004 +107961 n51001012003 +107963 n51001013015 +107971 n51001013015 +107983 n51001013015 +108010 n51001013015 +108013 n51001013015 +108016 n51001013015 +108024 n51001013015 +108027 n51001013015 +108035 n51001013015 +108044 n51001013015 +108051 n51001013015 +108058 n51001013015 +108063 n51001015005 +108070 n51001013015 +108072 n51001013015 +108084 n51001002007 +108105 n51001013015 +108110 n51001002007 +108117 n51001015005 +108134 n51001023016 +108145 n51001023016 +108148 n51001001001 +108156 n51001002007 +108168 n51001023031 +108172 n51001024015 +n51001024022 +108177 n51001024027 +108180 n51001023031 +108188 n51001023031 +108190 n51001002007 +108212 n51001025019 +n51001026016 +108229 n51001027008 +108233 n51001002007 +108238 n51001027019 +n51001023031 n51001001009 n51001007004 +108259 n51001028015 +108266 n51001028020 +108270 n51001023031 +108275 n51001002007 +108281 n51001002007 +108292 n51001023031 +108299 n51001002007 n51002001011 n51002001017 +108319 n51002002023 +108333 n51001002007 +108347 n51001002007 +108352 n51001002007 +108362 n51001002007 +108372 n51002006005 +108378 n51002006005 +108394 n51001002007 +108417 n51002008027 +108429 n51002008027 +n51002008027 +108439 n51002008027 +108457 n51002011018 +108462 n51002012005 +108474 n51002011018 +108478 n51001002007 +108488 n51001002007 +108490 n51001002007 +108492 n51002011018 +108494 n51001001009 n51001023031 n51001002007 n51001007004 +108501 n51001001009 n51001023031 n51001002007 n51001007004 +108505 n51002014005 +108508 n51001001009 n51001023031 n51001002007 n51001007004 +108510 n51002014005 +108516 n51002014005 +108529 n51002015003 n51002015006 +108531 n51002014021 +108535 n51001002007 +108550 n51002016014 n51002016016 n51002016018 +108561 n51001002007 +108580 n51002018001 +108587 n51002019005 +108625 n51002021002 n51002021004 n51002021006 +108639 n51002021002 n51002021004 n51002021006 +108668 n51003001007 +108690 n51001002007 +108704 n51001023031 n51001002007 +108707 n51001002007 +108709 n51003004003 +108729 n51003005016 +108733 n51003005009 n51003005010 n51003005011 n51003005012 n51003005016 +108742 n51001002007 +108748 n51003005009 n51003005010 n51003005011 n51003005012 n51003005016 +108753 n51001002007 +108764 n51001002007 +108768 n51001002007 +108776 n51003009008 +108789 n51003010004 +108825 n51001002007 +108828 n51001002007 +108840 n51001002007 +108843 n51001002007 +108850 n51003014006 +108864 n51001002007 +108866 n51003015003 +108881 n51001002007 +108889 n51001002007 +108901 n51001002007 +108908 n51003017004 +108925 n51003017015 +108944 n51003019005 +108953 n51003020003 +108964 n51003021002 +109037 n51004001002 +109047 n51004002002 +109054 n51001001009 n51001023031 n51001007004 +109059 n51001001009 n51001023031 n51001007004 +109069 n51004003016 +109074 n51004003016 +109077 n51001023031 +109090 n51001002007 +109099 n51001002007 +109105 n51001023031 +109108 n51001002007 +109120 n51004007007 +109123 n51001002007 +109126 n51004007005 +109131 n51001001009 n51001023031 n51001007004 +109136 n51001002007 +109144 n51004009002 +109147 n51001002007 +n51001002007 +109154 n51001002007 +109158 n51001023031 +109165 n51004010008 +109171 n51001002007 +109173 n51004010008 +109183 n51004010003 n51004010008 n51004011002 +109191 n51004010003 n51004010008 n51004011002 +109193 n51001023031 +109196 n51001002007 +109200 n51001002007 +109207 n51001002007 +109223 n51004012003 +109229 n51001002007 +109239 n51001002007 +109258 n51004015007 +109264 n51001002007 +109281 n51001002007 +109289 n51004017006 +109294 n51004017006 +109299 n51001023031 +109303 n51004018006 +109309 n51001002007 n51004015005 n51004015007 n51004015013 n51004017003 +109325 n52001001007 +109335 n52001001007 +109341 n52001001001 n52001001003 n52001001005 +109344 n52001001007 +109361 n52001001001 n52001001003 n52001001005 n52001001007 +109369 n52001001001 n52001001003 n52001001005 n52001001007 +109373 n52001001007 +109382 n52001001001 n52001001003 n52001001005 +109385 n52001004002 +109406 n52001004002 +109408 n52001004002 +109410 n52001004002 +109413 n52001001001 n52001001003 n52001001005 +109429 n52001004002 +109443 n52001004002 +109462 n52001004002 +109472 n52001001001 n52001001003 n52001001005 +109476 n52001008013 n52001008017 n52001008021 +109478 n52001001001 n52001001003 n52001001005 +109484 n52001004002 +109498 n52001009021 +109506 n52001009021 +n52001010004 +109515 n52001001001 n52001001003 n52001001005 n52001004002 n52001008013 n52001008017 +109523 n52002001004 +109527 n52001001001 n52001001003 n52001001005 +109530 n52002001004 +109547 n52001001001 n52001001003 n52001001005 +109550 n52002001004 +109561 n52001001001 n52001001003 n52001001005 +109592 n52001001001 n52001001003 n52001001005 +109615 n52002001004 +109628 n52001001001 n52001001003 n52001001005 +109631 n52002001004 +109637 n52002007016 +109641 n52002001004 +109644 n52002001004 +109654 n52001001001 n52001001003 n52001001005 +109657 n52002001004 +n52001001001 n52001001003 n52001001005 +109665 n52001001001 n52001001003 n52001001005 +109678 n52002009003 +109681 n52002009003 +109687 n52002009003 +109697 n52002009003 +109706 n52002009003 +109710 n52002011008 +109716 n52002009003 +109720 n52002009003 +109726 n52002009003 +109729 n52002012013 +109735 n52002013018 +109737 n52001001001 n52001001003 n52001001005 +109747 n52001001001 n52001001003 n52001001005 +109760 n52002013026 +109764 n52002009003 +109769 n52002014005 +109789 n52002014005 +109792 n52002014005 +109796 n52002014007 +109810 n52001001001 n52001001003 n52001001005 +109819 n52002014033 +109821 n52001001001 n52001001003 n52001001005 +109830 n52002014033 +109837 n52002014033 +109844 n52001001001 n52001001003 n52001001005 +109847 n52002017003 +109858 n52002017003 +109867 n52002017003 +109869 n52001001001 +109877 n52001001003 n52001001005 n52002018008 +109882 n52001001003 n52001001005 n52002018008 +109892 n52002017003 +109896 n52001001003 n52001001005 n52002018008 n52002017003 +109900 n52002019016 +109903 n52002017003 +109907 n52001001003 n52001001005 n52002018008 +109924 n52001001003 n52002018008 +109939 n52002017003 +109943 n52002017003 +109952 n52002017003 +109956 n52003003006 +109962 n52002017003 +109965 n52002017003 +109976 n52002018008 +109985 n52002017003 +109989 n52002017003 +109998 n52001001003 n52003002003 n52002018008 +110004 n52001001003 n52002018008 +110006 n52002017003 +110009 n52001001003 n52002018008 +110015 n52002017003 +110020 n52001001003 n52002018008 +110024 n52001001003 n52002018008 +110028 n52001001003 n52002018008 +n52002017003 +110035 n52003007004 +110042 n52001001003 n52002018008 +110045 n52003007004 +110051 n52003007004 +110063 n52003007004 +110068 n52003009013 +110071 n52003007004 +110075 n52001001003 n52003006004 n52002018008 n52003007004 +110084 n52003007004 +110093 n52003007004 +110095 n52003011004 +110100 n52001001003 n52003006004 n52002018008 n52003007004 +110104 n52001001003 n52003006004 n52002018008 n52003007004 +110109 n52001001003 n52003006004 n52002018008 +110111 n52003007004 +110113 n52003007004 +110122 n52003007004 +110128 n52001001003 n52003006004 n52002018008 +110130 n52003007004 +110134 n52003007004 +110145 n52001001003 n52003006004 n52002018008 n52003007004 +110151 n52001001003 n52003006004 n52002018008 n52003007004 +110157 n52003013020 +110164 n52004001003 +110172 n52001001003 n52003006004 n52002018008 +110176 n52004001003 +110192 n52004001003 +110198 n52004003008 +110205 n52004001003 +110207 n52004001003 +110213 n52004001003 +110215 n52004004002 +110245 n52004004002 +110255 n52004001003 +110261 n52001001003 n52003006004 n52002018008 n52004001003 +110283 n52004008009 +110287 n52004001003 +110296 n52004001003 +110298 n52004001003 +n52004001003 +110305 n52004001003 +110309 n52004009017 +110321 n52004010016 +110330 n52004010016 +110335 n52004010016 +110337 n52004010016 +110353 n52004013006 +110388 n52004014017 +110390 n52004015021 +n52004013006 +110397 n52001001003 n52003006004 n52002018008 n52004013006 +110413 n52004016004 +110436 n52001001003 n52003006004 n52002018008 n52004013006 +110443 n52004016019 +110461 n52004013006 +110477 n52005001008 +110480 n52005001008 +110515 n52005004003 +110523 n52005004003 +110529 n52005004003 +110563 n52001001003 n52003006004 n52002018008 n52005004003 +110579 n52001001003 n52003006004 n52002018008 n52005004003 +110591 n52001001003 n52003006004 n52002018008 n52005004003 +110597 n52001001003 n52003006004 n52002018008 n52005004003 +110605 n52005009015 +110609 n52005004003 +110621 n52005012004 +110626 n52005012004 +110629 n52005012004 +110634 n52005012004 +110637 n52005012007 +110644 n52005012007 +110647 n52005012004 +110651 n52005014004 +110678 n52005014004 +110690 n52005016002 n52005017002 n52005018003 +110697 n52005014004 +110717 n52005023004 +110723 n52005014004 +110727 n52005014004 +110742 n52001001003 n52003006004 n52002018008 n52005014004 +110749 n52005014004 +n52005024003 +110756 n52001001003 n52003006004 n52002018008 +110765 n52005025001 +110778 n52005025001 n52001001003 n52003006004 n52002018008 +110782 n52005025001 +n53001001001 +110794 n53001001001 n53001001003 n53001001005 n53001001007 +110799 n53001001007 +110817 n53001003008 +110825 n53001003008 +110833 n53001003008 +110835 n53001003008 +110837 n53001001001 n53001001003 n53001001005 +n53001001001 n53001001003 n53001001005 +110840 n53001003008 +110850 n53001003008 +110857 n53001003008 +110861 n53001004021 n53001004025 +110872 n53001003008 +110878 n53001005012 +110888 n53001003008 +110891 n53001003008 +110896 n53001001001 n53001001003 n53001001005 +110908 n53001007012 +110926 n53001001001 n53001001003 n53001001005 n53001003008 +110928 n53001008008 n53001008013 +110943 n53001009009 +110950 n53001009009 +110965 n53001001001 n53001001003 n53001001005 +110967 n53001003008 +110974 n53001003008 +110976 n53001003008 +110982 n53001001001 n53001001003 n53001001005 n53001003008 +110999 n53001001001 n53001001003 n53001001005 n53001003008 +111002 n53001003008 +111004 n53001003008 +111006 n53001012006 +111012 n53001001001 n53001001003 n53001001005 n53001003008 +111020 n53002001004 +111026 n53001001001 n53001001003 n53001001005 n53002001004 +111030 n53001001001 n53001001003 n53001001005 n53002001004 +111033 n53002001009 +111039 n53002001004 +111056 n53001001001 n53001001003 n53001001005 +111066 n53002001004 +111099 n53002003018 +111107 n53002003018 +111117 n53002001004 +111120 n53002001004 +111129 n53002003018 +111132 n53002003018 +111154 n53002008005 +111163 n53002008008 +111170 n53002008008 +n53002008005 +111205 n53002008005 +111210 n53002008005 +111218 n53002008005 +111234 n53001001001 n53001001003 n53001001005 +111241 n53002001004 +111248 n53002013010 +111265 n53002013010 +111269 n53001001001 n53001001003 n53001001005 +111275 n53001001001 n53001001003 n53001001005 n53002013010 +111286 n53002015008 +111294 n53001001001 n53001001003 n53001001005 +111296 n53002016004 +111299 n53001001001 n53001001003 n53001001005 n53002015003 +111307 n53001001001 n53001001003 n53001001005 n53002015003 +111310 n53001001001 n53001001003 n53001001005 n53002015003 +111321 n53002015003 +111337 n53001001001 n53001001003 n53001001005 +111349 n53003001004 +111369 n53003003005 +111371 n53003001004 +111382 n53003001004 +111394 n53003001004 +111411 n53003006004 +111419 n53003006004 +111430 n53003006023 +111433 n53001001001 n53001001003 n53001001005 +111435 n53003006004 +111440 n53001001001 n53001001003 n53001001005 +111445 n53003006004 +111465 n53003006004 +n53003006004 +111474 n53001001001 n53001001003 n53001001005 +111477 n53003006004 +111481 n53001001001 n53001001003 n53001001005 +111487 n53003006004 +n53003010017 +111490 n53003006004 +111504 n53003006004 +111512 n53003011003 +111525 n53003011003 +111530 n53003013003 +111541 n53001001001 n53001001003 n53001001005 +111545 n53003014003 +111549 n53003014003 +111562 n53003016004 +111568 n53003013003 +111580 n53003013003 +111584 n53003017006 +111587 n53003017002 +111599 n53001001003 n53001001005 n53003017006 n53003013003 +111604 n53003013003 +111613 n54001001001 n54001002001 +111619 n54001001001 n54001002001 +111636 n54001001001 n54001002001 +111639 n54001002001 +111657 n54001004003 n54001004005 +111683 n54001005010 n54001005012 n54001005015 +111709 n54001008006 +111713 n54001009008 +111754 n54001011003 +111756 n54001001001 +111761 n54001001001 +111766 n54001001001 n54001002001 +111769 n54001001001 +111795 n54001001001 n54001002001 +111820 n54001015015 +111823 n54001001001 +111826 n54001016009 +111830 n54001001001 +111844 n54001016010 +111872 n54001018006 +111877 n54001018006 +111882 n54001018013 +111891 n54001019005 +111898 n54001019007 +111903 n54001020003 n54001020005 +111942 n54002001005 +111949 n54001001001 n54001018006 n54001016018 +111951 n54002003007 +111975 n54002005010 +111982 n54002006009 +111984 n54002006008 +111986 n54001001001 +112025 n54002009002 +112038 n54002010008 +112129 n54003002004 +112144 n54003005003 +112202 n54003008001 +112228 n54003012001 +112236 n54003013004 +112248 n54001018006 +112253 n54001018006 +112266 n54003015009 +112326 n54004002003 +112332 n54004003004 +112382 n54004006018 +112393 n54001018006 +112428 n54004010008 +112437 n54004010010 +112449 n54001018006 +112481 n54001018006 +112483 n54004014006 +112485 n54001018006 +112494 n54004012005 n54004012007 n54004013003 n54004014002 +112497 n54004012005 n54004012007 n54004013003 n54004014002 +112500 n54001018006 +112507 n54001018006 +112512 n54004012005 n54004012007 n54004013003 n54004014002 +112514 n54004016001 n54004016006 +112518 n54001018006 +112522 n54001018006 +112558 n54005004005 n54005004007 +112567 n54005004014 n54005004017 +112607 n54005008003 +112715 n54005016005 +112754 n54005018012 +112807 n54001018006 +112822 n54001018006 +112857 n54006001005 +112895 n54006001012 n54006002007 n54006002013 +112910 n54001001001 n54001018006 n54004006004 +112928 n54006004007 n54006004009 +112973 n54006008003 n54006008005 +112990 n54006009007 n54006009009 n54006009011 +113006 n54006010008 +113014 n54006010010 +113022 n54006011004 +113044 n54006012010 +113074 n54006011004 +113084 n54001001001 n54006011004 n54004006004 +113087 n54006014009 +113089 n54006015002 +113111 n54006015009 +113118 n54006015009 +113143 n54001001001 n54006011004 n54004006004 +113157 n54006017002 +113182 n54006020014 +113192 n54006020002 n54004006004 +113221 n55001001001 n55001002001 +113226 n55001003004 +113238 n55001002001 +113243 n55001001001 +113248 n55001002001 +113251 n55001002001 +113261 n55001002001 +113264 n55001005007 +113270 n55001002001 +113275 n55001002001 +113282 n55001002001 +113287 n55001002001 +113293 n55001006008 +113296 n55001002001 +113302 n55001001001 +113306 n55001001001 n55001002001 +113324 n55001001001 n55001002001 +113326 n55001001001 +113329 n55001008007 +113339 n55001001001 n55001002001 +113348 n55001001001 n55001002001 +113351 n55001008020 +113357 n55001001001 n55001002001 +113372 n55001001001 n55001002001 +113388 n55001010023 +113390 n55001001001 +113416 n55001001001 +113426 n55001013004 +113428 n55001001001 +113448 n55001001001 n55001002001 +113450 n55001015004 +113453 n55001001001 +113459 n55001015007 +113473 n55001001001 +113479 n55001001001 +113487 n55001001001 +113491 n55001016006 +113508 n55001002001 +113512 n55001001001 +n55002001003 +113526 n55001001001 +113530 n55002002002 +113534 n55002002012 +113581 n55002001003 +113599 n55001001001 +113601 n55002008012 +113623 n55002010007 +113647 n55002010015 +113649 n55001001001 n55002001003 n55002010007 +113652 n55002010015 +113657 n55002010015 +113660 n55002011008 n55002012004 n55002012008 n55002013004 +113677 n55002001003 +113701 n55002016004 +113706 n55002016004 +113711 n55002017011 n55002017013 +113735 n55002019012 n55002019018 +113740 n55002019013 +113780 n55002021003 +113847 n55002025005 +113863 n55002026006 +113866 n55002026006 +113869 n55003001008 +113910 n55003005003 +113913 n55003002004 +113917 n55003002004 +113951 n55003002004 +113971 n55003008015 +113978 n55003008004 n55003008006 +113981 n55002001003 +113983 n55001001001 +114002 n55003011002 n55003011004 +n55001001001 +114017 n55001001001 +114045 n55002001003 +114065 n55002001003 +114119 n55004001006 +114123 n55004001006 +114172 n55002001003 +114182 n55002001003 +114185 n55001001001 +114193 n55001001001 +114207 n55001001001 +114212 n55004008007 +114214 n55001001001 +114227 n55001001001 +114235 n55004008012 +114239 n55001001001 +114243 n55001001001 +114263 n55001001001 +114268 n55002001003 +114271 n55001001001 +114282 n55004013002 +114301 n55001001001 +114304 n55004014001 +114310 n55004014001 +n55004014001 +114313 n55002001003 +114319 n55001001001 n55002001003 n55004011001 +114324 n55001001001 +114327 n55001001001 +114331 n55001001001 +114334 n55004016010 +114339 n55001001001 +114343 n55001001001 +114346 n55001001001 +114361 n55001001001 +114373 n55004018004 +114376 n55004018004 +114408 n55002001003 +114425 n55002001003 +114429 n55002001003 n55004011006 n55004019002 n55004019004 n55004019008 +114451 n56001002003 +114462 n56001003003 +114465 n56001002009 +114468 n56001003009 +114470 n56001001001 +114475 n56001001001 n56001004001 +114494 n56001001001 n56001004001 +n56001005010 +114498 n56001004001 +114511 n56001001001 +n56001004001 +114589 n56001010004 +114592 n56001010004 +114606 n56001012008 +n56001012008 +n56001012008 +114610 n56001012008 +114619 n56001012010 +114626 n56001012008 +114656 n56001015007 +114681 n56001004001 +114725 n56002004004 +114741 n56001004001 +114762 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 +114766 n56002009001 +114788 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114803 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114835 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114838 n56002013011 +114840 n56002013011 +114842 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114845 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114851 n56002013011 +114867 n56001004001 +114870 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114896 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114912 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114922 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114931 n56003005003 +114933 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114937 n56003004010 +114940 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114948 n56003005022 +114951 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114958 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114962 n56003004010 +114977 n56001004001 +115021 n56003010002 +115030 n56001004001 +115037 n56001001001 +115041 n56003012013 +115053 n56003013001 n56003013005 +115059 n56001001001 n56001004001 +115072 n56001004001 +115075 n56001001001 +115080 n56001001001 n56001004001 +115087 n56001004001 n56003015009 +115101 n57001001001 n57001001006 +115110 n57001001001 n57001001006 +115115 n57001001009 +115117 n57001001009 n57001002002 n57001002006 n57001002015 +115124 n57001001001 n57001001006 n57001001009 n57001002002 n57001002006 n57001002015 +115132 n57001001001 +115135 n57001001009 +115140 n57001001001 +115142 n57001001009 +115148 n57001005004 n57001005007 +115164 n57001001009 +115173 n57001001001 n57001001006 n57001001009 n57001002002 n57001002006 n57001002015 +115185 n57001001009 +115193 n57001001009 +115202 n57001007019 +115210 n57001009009 +115222 n57001007019 +115225 n57001009009 +115231 n57001010012 +115235 n57001007019 +115240 n57001007019 +115242 n57001009009 +115245 n57001007019 +n57001010012 +n57001010012 +n57001010012 +115251 n57001009009 +115253 n57001009009 +115255 n57001010012 +115257 n57001009009 +115261 n57001007019 +n57001009009 +115272 n57001007019 +115284 n57001007019 +115298 n57001010012 +115309 n57001009009 +115313 n57001007019 +115322 n57001009009 +115326 n57001010012 +115328 n57001009009 +115332 n57001007019 +115336 n57001018004 +n57001009009 +115339 n57001009009 +115343 n57001019002 +115345 n57001019002 +115350 n57001007019 +115353 n57001007019 +n57001019002 +115358 n57001019002 +n57001020002 +115364 n57001019002 +115372 n57001020002 +115374 n57001020002 +115386 n57001019002 +115394 n57001020002 n57001002002 n57001002006 n57001002015 +115396 n57001020002 n57001002002 n57001002006 n57001002015 +115398 n57001020002 +115402 n57001019002 +115412 n57001019002 +115422 n57001020002 n57001002002 n57001002006 n57001002015 +115444 n58001002009 +115449 n58001002009 +115454 n58001002009 +115463 n58001001006 +115472 n58001002009 +115493 n58001004005 +115502 n58001003028 +115504 n58001005001 +n58001003028 +115508 n58001005001 +115511 n58001003028 +115513 n58001005001 +115517 n58001005001 +115519 n58001003028 +115534 n58001006006 +115548 n58001006016 +115553 n58001006016 +115564 n58001008009 +115578 n58001008009 +115585 n58001009001 n58001009004 +115587 n58001008009 +115592 n58001008009 +115598 n58001008009 +115601 n58001010005 +115611 n58001010005 +115615 n58001010007 n58001010016 +115618 n58001010005 +115621 n58001010007 n58001010016 +115629 n58001010007 n58001010016 +115635 n58001010005 +115642 n58001010005 +115655 n58001009011 +115661 n58001013002 +115665 n58001013002 +115667 n58001013005 +115684 n58001002007 +115708 n58001002007 +115713 n58002003006 +115724 n58001002007 +115742 n58002004003 +115753 n58002005006 +115765 n58002006008 +115771 n58002006013 +115773 n58002006013 +115782 n58002006013 +115788 n58002006013 +115793 n58002006013 +115798 n58002006013 +115804 n58002006013 +115835 n58002009021 +115837 n58002009021 +115842 n58002009021 +115854 n58002010014 +115866 n58002009021 +n58002011004 n58002011007 +115869 n58002011010 +115874 n58002011007 +115880 n58002009021 +115883 n58002011004 +115888 n58002009021 +115891 n58002011004 +115895 n58002009021 +115899 n58002011004 +115903 n58002013014 +n58002011004 +115917 n58002011004 +115921 n58002014006 n58002014008 +115933 n58002014023 +115939 n58002014004 +n58002014004 +115987 n58002011004 +116006 n58001002007 +116012 n58003001015 +116020 n58003002004 +116024 n58003001009 +116037 n58003003014 +116057 n58003004011 +116071 n58003004011 +n58003004011 +116075 n58001002007 +116099 n58003004011 +116118 n58003008017 +116129 n58003007005 +116136 n58003009004 +116144 n58003010006 +116149 n58003007005 +116155 n58003007005 +116161 n58003007005 +116169 n58003012002 +116181 n58003012002 +116195 n58003012002 +116220 n58003012016 +116252 n58003017008 +116267 n58003012016 +116290 n58003012016 +116294 n58003012002 +116301 n58003018013 +116309 n58003018013 +116330 n58003012016 +116336 n58003012016 +116364 n58004004011 +116367 n58004004003 +116374 n58004004011 +116381 n58004005009 +116407 n58004004011 +116416 n58004006011 +116426 n58004008005 +116440 n58004009007 +116442 n58004010003 +116447 n58004010003 +116451 n58004010020 +116465 n58004011014 +116508 n58004012006 +116516 n58004012006 +116518 n58004012006 +n58004003007 +116546 n58004003007 +116601 n58005001003 +116606 n58005002011 +116615 n58005001003 +116621 n58005004004 +116639 n58005005004 +116647 n58005005004 +116649 n58005005012 +116651 n58005005004 +n58005005012 +116655 n58005005004 +116661 n58005005004 +116670 n58005005004 +116676 n58005005004 +116685 n58005005004 +116714 n58005005004 +116728 n58005010009 +116754 n58003012002 +116838 n58006001012 +116876 n58006004005 +116889 n58006007001 +116899 n58006007015 +116916 n58006008001 +116925 n58006009005 +116943 n58006009005 +116947 n58006010012 +116952 n58006010005 +116961 n58006009005 +116963 n58006011008 +117001 n58006013006 +117007 n58006013003 +117011 n58006013003 +117025 n58006016001 +117034 n58006016015 +117046 n58006017006 +117057 n58006018004 +117070 n58006018019 +117091 n58006018015 +117124 n58007001014 +n58007001004 +117142 n58007002016 +117170 n58007001004 +n58007001004 +117198 n58007005015 +117202 n58007005010 +117214 n58007005010 +117267 n58007009006 +117282 n58007011008 +117313 n58007011025 +117320 n58007013006 +117333 n58006018015 +117335 n58007014005 +117355 n58007015012 +117370 n58007014008 +117387 n58007018006 +117401 n58007019009 +117413 n58007008006 +117420 n58007014008 +117427 n58007014008 +117433 n58007014008 +117459 n58007022008 +117463 n58007022008 +117481 n58007022008 +117490 n58007025009 +117492 n58006018015 +117509 n58007026006 +117521 n58007026006 +117530 n58007027016 n58007027018 +117533 n58007026006 +117565 n58008001008 +117584 n58008002006 +117605 n58008001008 +117607 n58008003015 +117626 n58008004013 +117650 n58008005010 +117665 n58008006010 +117684 n58007027020 +117708 n58008009004 +117712 n58008008014 n58008008019 +117716 n58008008009 +117719 n58008009008 +117721 n58008009008 +117726 n58008008014 n58008008019 +117732 n58008008009 +n58008008009 +117735 n58008008014 n58008008019 +117739 n58008010027 +117742 n58008010004 +117755 n58008010015 +117759 n58008010008 +117763 n58008010008 +117765 n58008010017 +117768 n58008010008 +117772 n58008010008 +117774 n58008010015 +117781 n58008010008 +117784 n58008010008 +117786 n58008010008 +117789 n58008010008 +117795 n58008010008 +117797 n58008011017 +117802 n58008010008 +117808 n58008010008 +117812 n58008010008 +117849 n58009002001 +117861 n58009002001 +117886 n58009004006 +117905 n58009004006 +117912 n58009002010 n58009002013 n58009002016 n58009004003 n58009004006 n58009004014 n58009004021 n58009004027 n58009005004 +117920 n58009002010 n58009002013 n58009002016 n58009004003 n58009004006 n58009004014 n58009004021 n58009004027 n58009005004 +117949 n58009007013 +117952 n58009007010 +117958 n58009008008 +117976 n58009008016 +117984 n58009008016 +118026 n58009011013 +118041 n58009011001 +118076 n58009014006 +118080 n58009014006 +118088 n58006018015 +118099 n58009014016 +118179 n58009019031 +118188 n58009019015 +118193 n58009020006 +118196 n58009019035 +118237 n58009021012 n58009019022 n58009019024 n58009019027 +118240 n58009023015 +118246 n58009022004 +118259 n58009024015 +118269 n58006018015 +118274 n58009024007 +118289 n58009024007 +118309 n58009024007 +118321 n58009027008 +118340 n58009028004 +118353 n58010001012 +118361 n58010001019 +118363 n58010001019 +118391 n58010001019 +118418 n58009028004 +118435 n58009028004 +118441 n58010007014 +118457 n58010008004 n58010008006 n58010008008 n58010008011 +118469 n58010007014 +118478 n58010010003 +118502 n58010011014 +118504 n58010011014 +118510 n58010010011 +118531 n58010010011 +118535 n58010010011 +118547 n58006018015 +118557 n58010016025 n58010017011 +118560 n58010016003 +118563 n58008010008 +118572 n58010016013 +118575 n58008010008 +118580 n58008010008 +118582 n58010016015 +118586 n58008010008 +118590 n58008010008 +118598 n58010017003 n58010017007 +118616 n58010019007 +118618 n58006018015 +118626 n58010020010 +118630 n58010019013 +118670 n58006018015 +118681 n58006018015 +118690 n58010025012 +118698 n58006018015 +118754 n58010029014 +118766 n58010029010 +118768 n58010029010 +118776 n58010030012 +118790 n58010032005 +118820 n58010019003 +118826 n58010019003 +118836 n58010019003 +n58010035005 +118868 n58010037007 +118879 n58010037007 +118881 n58010038003 +118883 n58006018015 +118905 n58011001003 +118934 n58011004001 +118942 n58011004004 +118947 n58011004001 +118963 n58011005002 +118991 n58011006012 +119008 n58011007003 +119010 n58011007001 +119029 n58011008007 +119059 n58011009019 +119067 n58011010007 +119075 n58011011004 +119094 n58011008003 +119098 n58008010008 +119121 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119129 n58011013009 +119145 n58011013019 +119155 n58011014007 +119157 n58011014007 +119167 n58011016003 +119173 n58011014004 +119177 n58011014004 +119181 n58011014004 +119198 n58011017014 +119204 n58011017014 +119216 n58011018006 +119247 n58011021002 +119262 n58011022002 +119272 n58011023002 +119352 n58011022008 +119362 n58011029005 +119412 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119446 n58011035002 +119498 n58011036001 +119505 n58011014004 n58011020006 n58011021002 n58011022002 n58011023002 n58011023008 n58011022008 n58011031002 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 n58011035002 n58011035008 n58011036001 +119518 n58006018015 +119525 n58006018015 +119529 n58006018015 +119533 n58006018015 +119548 n58006018015 +119559 n58012002006 +119563 n58012002006 +119586 n58012003005 +119593 n58010019003 +119607 n58012005004 +n58010019003 +119613 n58012002026 +119621 n58012005015 +119632 n58012006009 +119639 n58010019003 +119646 n58012007012 +119655 n58012008005 +119670 n58006018015 +119688 n58012009007 +119695 n58012009007 +119698 n58012009017 +119707 n58012009017 +119728 n58012011003 +119746 n58010019003 +119762 n58012014007 +119786 n58012015012 +119797 n58012016007 +119804 n58012016007 +119824 n58012017009 +119844 n58012019005 +119850 n58012019009 +119925 n58012019009 +119933 n58006018015 +119939 n58012025020 +119952 n58012025020 +119985 n58012028006 +119998 n58012025023 +120010 n58013002002 +120024 n58010019003 +120051 n58013004016 +120064 n58012025023 +120067 n58012025023 +120073 n58012025023 +120078 n58010019003 +n58013007003 +120081 n58010019003 +120086 n58013007003 +120121 n58013009014 +120129 n58013010002 +120140 n58013011004 +120152 n58013011004 +120166 n58013012003 +120177 n58013012003 +120183 n58013012003 +120197 n58013012003 +120205 n58013015005 +120212 n58013015010 +120221 n58013016003 n58013016005 +120229 n58010019003 +120233 n58013017003 +120238 n58010019003 +120245 n58013017009 +120252 n58010019003 +n58013017024 +120256 n58005011004 +120271 n58013018001 +120276 n58010019003 +120298 n58012025023 +120301 n58010019003 +120310 n58013020003 +120313 n58012025023 +120317 n58013020003 +120321 n58013020003 +120332 n58013022004 +120344 n58013022004 +120348 n58005011004 +120352 n58013023003 +120357 n58013022004 +120362 n58013022004 +120368 n58013022004 n58013024004 n58013024009 +120377 n58013022004 n58013024004 n58013024009 +120394 n59001001001 +120406 n59001002004 +120428 n59001002004 +120443 n59001005003 +120464 n59001006009 +120478 n59001008001 +120488 n59001009004 +120495 n59001010003 +120515 n59001011011 +120522 n59001011014 +120531 n59001011027 +120535 n59001012002 +120546 n59001012011 +120550 n59001007012 +120566 n59001013010 +120573 n59001014001 +120593 n59001001001 +120611 n59001017013 +120620 n59001001001 n59001016003 +120626 n59001001001 n59001016003 +120630 n59001017013 +120634 n59001001001 +120676 n59001019002 +120686 n59001019002 +120696 n59001023003 +120704 n59001023012 +120709 n59001023003 +120735 n59001025003 +120740 n59001025003 +120750 n59001026002 +120754 n59001026002 +n59001026002 +120769 n59001027012 n59001027022 +120777 n59001027013 n59001027015 +120785 n59001001001 +120794 n59001001001 n59002001001 +120804 n59002001001 +120828 n59002003005 +120836 n59002003018 +120844 n59002001001 +120848 n59002001001 +120856 n59001001001 +120873 n59002005019 +120877 n59002005007 +120879 n59002005002 +120887 n59002005002 +120889 n59002006008 +120891 n59002005002 +120895 n59002006008 +120903 n59002005002 +120985 n59001001001 +121003 n59002014009 +121017 n59002015002 n59002015004 +121020 n59002014004 +121030 n59002015002 n59002015004 +121049 n59002017004 +121056 n59002018003 +121060 n59001001001 +121063 n59002014004 +121067 n59001001001 +n59002014004 +121073 n59001001001 +121076 n59002014004 +121108 n59001001001 n59002020005 +121117 n59002021001 +121128 n59002021001 +121149 n59002023009 +121201 n59001001001 +121203 n59003001005 +121214 n59001001001 n59003001005 n59003001003 +121221 n59003002006 +121243 n59003003004 +n59001001001 n59003001005 n59003001003 +121249 n59003003004 +121302 n59001001001 n59003001005 n59003001003 +121350 n59003008003 +121358 n59003008003 +121369 n59003010004 +121376 n59001001001 +121379 n59003009003 n59003009011 n59003010005 +121387 n59003011007 +121396 n59001001001 +121415 n59003012003 +121423 n59003013001 +121437 n59003012003 +121447 n59003014005 +121461 n59003016001 +121501 n59003012003 +121507 n59003012003 +121513 n59003012003 +121534 n59003012003 +121546 n59003012003 +121570 n59004004023 +121584 n59004005012 +121587 n59001001001 n59004004001 n59003001003 +121613 n59003012003 +121619 n59003012003 +121634 n59004008013 +121648 n59004008013 +121651 n59004011004 +121660 n59004011006 +121687 n59004012016 +121708 n59004013012 +121714 n59004013004 +121722 n59004013004 +121736 n59004013004 +121754 n59004013004 +121757 n59004016003 +121768 n59004017001 +121779 n59005001004 +121784 n59005001004 +121789 n59005001004 +121794 n59005001004 +121802 n59005003002 n59005003006 +121805 n59005001004 +121811 n59005001004 +121827 n59005001004 +121831 n59005001004 +121853 n59005001004 +121863 n59005001004 +121883 n59005007015 +121891 n59005007003 +121895 n59005007003 +121906 n59005009003 +121927 n59005010010 +121955 n59001001001 +121972 n59005012004 +121988 n59005012004 +121996 n59005012004 +122005 n59005014002 +122023 n59005015008 +122031 n59005015008 +122034 n59005012004 +122040 n59005012004 +122052 n59001001001 n59005012004 n59003001003 +122084 n59005018011 +122086 n59001001001 +122090 n59005019001 +122098 n59005019004 +122107 n59005020005 +122110 n59005020005 +122147 n60001001006 +122156 n60001001001 n60001001006 +122163 n60001003003 +122166 n60001001001 n60001001006 +122187 n60001001006 +122216 n60001001006 +122238 n60001007024 +122244 n60001007024 +122272 n60001001006 +122284 n60001010007 +122295 n60001011017 +122297 n60001010007 +122301 n60001010007 +122303 n60001001006 +122305 n60001011017 n60001011022 +n60001011017 n60001011022 +122309 n60001001006 +122313 n60001001006 +122321 n60001011017 n60001011022 +122331 n60001001006 +122338 n60001001006 +122354 n60001001006 +122360 n60001001006 +122363 n60001001006 +122374 n60001015006 +122392 n60001001006 +122406 n60001001006 +122430 n60001001006 +122433 n60001019009 +122439 n60001019009 +122444 n60001019009 +122449 n60001021004 +122457 n60001021004 +122469 n60001021004 +122493 n60001024003 +122513 n60001025003 +122520 n60001021004 +122545 n60002002007 +122557 n60002003006 +122570 n60001021004 +122604 n60002006009 +122611 n60001021004 +122617 n60002007009 +122621 n60002007009 +122632 n60002007007 +122638 n60002008008 +122642 n60002007006 +122659 n60002007006 +122664 n60002009020 +122666 n60002007006 +122674 n60002007006 +122690 n60002011010 +122697 n60002011001 +122707 n60002011001 +122736 n60002013009 +122803 n60002019008 +122828 n60002020014 +122834 n60002020014 +122841 n60002018002 +n60002018002 +122849 n60002021007 +n60002021007 +122860 n60002021007 +n60002021007 +122873 n60002021007 +n60002021007 +122877 n60001001001 n60002011001 n60002018002 +122882 n60002021007 +122893 n60002021007 +122912 n60002018002 +122917 n60003001002 +122940 n60003001002 +n60003001002 +122969 n60003004014 +122987 n60003005007 +122990 n60003005007 +122998 n60003006005 +123000 n60003006002 +123033 n60003007002 +123037 n60002011001 +123057 n60003009002 n60003009007 n60003009012 +123093 n60003011009 +123101 n60003012003 +123104 n60003012005 +123115 n60002011001 +123144 n60002011001 +123152 n60002011001 +123157 n60002011001 +123174 n60002011001 +123203 n60002011001 +123214 n60003018021 +123236 n60003020013 +123238 n60003020016 +123245 n60003020023 +123247 n60002011001 +123266 n60003021020 +123275 n60003021020 +123286 n60002011001 +123288 n60004001009 +123332 n60004003013 n60004003014 n60004003015 n60004003016 n60004003017 n60004003020 +123336 n60002011001 +123339 n60004004012 +123344 n60004003009 +123356 n60004005002 +123386 n60002011001 +123397 n60002011001 +123400 n60002011001 +123405 n60004010001 +n60004010004 +123426 n60004011012 +123439 n60004011024 +123457 n60004012001 +123461 n60004012001 +123465 n60004012001 +123482 n60004013006 +123501 n60004012001 +123506 n60004012001 +123530 n60004016004 +123547 n60001001001 n60004012001 n60002018002 n60003001002 n60003007002 +123583 n60004019004 +123589 n60004012001 +123609 n60004012001 +123648 n60004012001 +n60004012001 +123671 n60004012001 +123678 n60004012001 +123681 n60005006008 +123683 n60005006008 +123686 n60004012001 +123691 n60004012001 +123700 n60005008004 +123714 n60004012001 +123724 n60004012001 +123728 n60005010003 +123734 n60005010003 +123739 n60005010003 +123748 n60004012001 +123769 n60005012018 +123772 n60004012001 +123781 n60005001007 +123783 n60004012001 +123788 n60004012001 +123809 n61001001001 n61001001011 n61001001010 +123817 n61001001011 +123827 n61001001001 n61001001011 n61001001010 +123829 n61001001001 n61001001011 n61001001010 +123833 n61001002009 +123847 n61001001001 n61001001011 n61001001010 +n61001002011 +123853 n61001003022 n61001003024 +123859 n61001001001 n61001001011 n61001001010 +123863 n61001004008 +123879 n61001004015 +123887 n61001001011 +123927 n61001005014 n61001005020 n61001006006 n61001006012 n61001006018 n61001007006 n61001007012 +n61001001011 +123941 n61001001001 n61001001011 n61001001010 +123949 n61001005014 n61001005020 n61001006006 n61001006012 n61001006018 n61001007006 n61001007012 +123959 n61001009004 +123966 n61001010003 +123973 n61001005014 n61001005020 n61001006006 n61001006012 n61001006018 n61001007006 n61001007012 +123983 n61001010003 +123992 n61001001001 n61001010003 n61001001010 +124000 n61001010003 +124023 n61001010003 +124034 n61001001001 +124039 n61001001001 n61001010003 n61001001010 +124043 n61001001001 +124049 n61001010003 +124052 n61001001001 +124064 n61001010003 +124068 n61001001001 n61001010003 n61001001010 +124078 n61001016010 +124091 n61001016010 +124098 n61001017004 +124101 n61001017004 +n61001016010 +124105 n61001016010 +n61001017004 +124112 n61001001001 n61001001010 +124118 n61001016010 +124132 n61001019006 +124150 n61001010003 +n61001020011 +124188 n61001010003 +124191 n61002001013 +124198 n61002001013 +124202 n61002001013 +124208 n61002001013 +124212 n61002001013 +124223 n61001010003 +124225 n61002001013 +124234 n61002001013 +124300 n61002007008 +124350 n61002010015 +124356 n61002010013 +124373 n61002010013 +124392 n61002010013 +124394 n61001010003 +124422 n61002015009 +124428 n61002015009 +124442 n61002010013 +124451 n61002010013 +124474 n61002018012 +124476 n61002010013 +124485 n61002019009 +124503 n61002020005 +124508 n61002018012 +124517 n61002018012 +124530 n61002018012 +124534 n61002018012 +124543 n61002022007 +124556 n61003001003 +124559 n61003001007 +124563 n61003001003 +124579 n61003001003 +124585 n61003003005 +124599 n61003003012 +124601 n61003003012 +124611 n61003002016 +124626 n61003003012 +n61003004018 +124646 n61003005016 n61003005021 +124661 n61003007010 +124678 n61003008015 n61003008020 +124681 n61003008007 +124708 n61003008007 +124725 n61003010003 +124739 n61003010018 +124743 n61003010010 n61003010013 n61003010018 n61003010023 +124749 n61003008007 +124765 n61003012009 +124782 n61003010004 +124785 n61003013003 n61003013005 +124796 n61003010004 +124804 n61001001001 n61003014002 n61001001010 +124812 n61001001001 n61001001010 n61003014002 +124818 n61003015014 +124821 n61003014002 +124829 n61003016005 +124833 n61003016005 +124837 n61003016015 +124850 n61003016018 n61003016020 +n61003016018 n61003016020 +124855 n61003017003 +124867 n61003017003 +124877 n61001001001 n61001001010 n61003017003 n61003015014 +124882 n61003018008 +124907 n62002001002 n62001001011 +124924 n62002001001 +124929 n62001002013 +124936 n62002001002 n62001001011 +124943 n62002001001 +124946 n62002001001 +124950 n62002001002 n62001001011 +124956 n62002001002 n62001001011 +124964 n62001003023 +124970 n62002001002 n62001001011 +124974 n62002001001 n62002001002 n62001001011 +124979 n62001005016 n62001005021 +124982 n62001005005 +124985 n62001003027 +124988 n62002001001 +124996 n62001005015 +125007 n62001005015 +125026 n62001005015 +125034 n62002001001 n62002001002 n62001001011 +125041 n62001005015 +125043 n62002001001 n62002001002 n62001001011 +125053 n62002001001 n62002001002 n62001001011 +125061 n62002001001 n62002001002 n62001001011 +125066 n62002001001 n62002001002 n62001001011 +125073 n62002001001 n62002001002 n62001001011 +125078 n62002001001 n62002001002 n62001001011 +125089 n62001005015 +125093 n62001005015 +125097 n62002001001 n62002001002 n62001001011 +125102 n62002001001 +125119 n62002001013 +125125 n62002001001 n62002001002 n62001001011 +125130 n62002001001 n62002001002 n62001001011 +125140 n62002003012 +125144 n62002001017 +125148 n62002001017 +125154 n62002001017 +125158 n62002001017 +125165 n62002004002 +125174 n62002001017 +125179 n62002005004 +125186 n62002005015 +125190 n62002001017 +125195 n62002001017 +125198 n62002001013 +125202 n62002006002 +125207 n62002007001 +125214 n62002007008 +125225 n62002007020 +125231 n62002007001 +n62002008002 +125236 n62002001013 +125239 n62002007001 +125260 n62002009002 +125272 n62002010002 +125280 n62002010002 +125288 n62002011003 +125309 n62002011003 +125312 n62002012003 +125315 n62002012003 +125321 n62002001013 +125324 n62002013003 +125332 n62002013011 +125339 n62002014003 +125346 n62002014010 +125354 n62002014018 +125364 n62002014018 +125391 n62002015011 +125429 n62002017003 +125463 n62002001002 n62002018001 n62001001011 +125469 n62002001002 n62002018001 n62001001011 +125473 n62002001002 n62002018001 n62001001011 +125478 n62002001002 n62002018001 n62001001011 +125485 n62002018013 +125487 n62002001002 n62002018001 n62001001011 +125489 n62002018001 +125497 n62002018001 +125499 n62002018001 +125509 n62002021008 +125533 n62002022008 +125561 n62002018001 +125567 n62002018001 +125571 n62002018001 +125578 n62002018001 +125588 n62002025011 +125592 n62002025005 +n62002024021 +125595 n62002001002 n62002018001 n62001001011 +125602 n62002018001 +125606 n62002018001 +125608 n62002018001 +125611 n62002027004 +125614 n62002024021 +125617 n62002018001 +125625 n62002018001 +125629 n62002024021 +125632 n62002018001 +125645 n62002018001 +125648 n62002024021 +125654 n62002024021 +125664 n62002024021 +125668 n62002024021 +125683 n62002024021 +125689 n62002001002 n62002028003 n62001001011 +125699 n62003001023 +125704 n62002001002 n62002028003 n62001001011 +125708 n62003001010 +125724 n62002024021 +125728 n62002024021 +125739 n62002024021 +125741 n62003003004 +125743 n62002024021 +125764 n62002024021 +125773 n62002024021 +125779 n62002024021 +125788 n62002024021 +125791 n62002024021 +125795 n62003007001 +125803 n62002024021 +125821 n62003008023 +125844 n62003009006 +125846 n62003009003 +125858 n62003010023 n62003010027 +125886 n62003010027 +125888 n62003011011 +125892 n62003011005 +125898 n62002001002 n62003007001 n62001001011 +125910 n62003012003 +125915 n62003012011 +125919 n62003012003 +125926 n62003012003 +125933 n62003013003 +125936 n62002001002 n62003013003 n62001001011 +125962 n62003015003 +125975 n62003015013 +125978 n62003016013 +125983 n62003008019 +125985 n62002001002 n62003013003 n62001001011 +125988 n62003008019 +125991 n62002001002 n62003013003 n62001001011 +126011 n62003017001 +126018 n62003017001 +126020 n62003017012 +126028 n62003017004 +126042 n62003018003 +126051 n62003017027 +126055 n62002001002 n62003018001 n62001001011 +126059 n62002001002 n62003018001 n62001001011 +126069 n62002001002 n62003018001 n62001001011 +126090 n62003021011 +126094 n62003021011 +126100 n62003021011 +126103 n62003023008 n62003023017 +126107 n62003021011 +126114 n62003021011 +126119 n62002001002 n62003021001 n62001001011 +126123 n62002001002 n62003021001 n62001001011 +126129 n62003021011 +126131 n62003021011 +126134 n62003021011 +126136 n62003024003 +126139 n62003024024 +126144 n62002001002 n62003021001 n62001001011 +126148 n62003024024 +n62002001002 n62003021001 n62001001011 +126173 n62004002019 n62004003011 +126181 n62004002009 +126195 n62004003003 +126206 n62004003003 +126211 n62004003017 +126223 n62004004006 +126230 n62004001017 +126236 n62004004006 +126242 n62004001017 +126256 n62004001017 +126258 n62002001002 n62004004006 n62001001011 +126268 n62002001002 n62004004006 n62001001011 +126277 n62002001002 n62004004006 n62001001011 +126279 n62004006010 n62004006019 +126292 n62002001002 n62004007001 n62001001011 +126325 n62004009016 +126332 n62002001002 n62004007001 n62001001011 +126336 n62004009007 +126348 n62004009012 +126350 n62004010009 n62004010015 n62004010018 +126356 n62002001002 n62004007001 n62001001011 +126362 n62004010011 +126364 n62002001002 n62004007001 n62001001011 +126369 n62004010011 +126374 n62002001002 n62004007001 n62001001011 +126381 n62002001002 n62004011001 n62001001011 +126383 n62002001002 n62004011001 n62001001011 +126385 n62002001002 n62004011001 n62001001011 +126393 n62002001002 n62004011001 n62001001011 +126397 n62002001002 n62004011001 n62001001011 +126402 n62004012009 +126404 n62002001002 n62004011001 n62001001011 +126408 n62004013017 +126412 n62004012009 +126415 n62004012009 +126417 n62002001002 n62004011001 n62001001011 +126422 n62004012009 +126424 n62002001002 n62004011001 n62001001011 +126426 n62002001002 n62004011001 n62001001011 +126452 n62004015003 +126455 n62004015003 +126460 n62002001002 n62004011001 n62001001011 +126466 n62004016007 +126471 n62002001002 n62004011001 n62001001011 +126490 n62004016020 +126493 n62004017025 +126498 n62002001002 n62004011001 n62001001011 +126509 n62004015005 +126512 n62002001002 n62004011001 n62001001011 +126545 n62002001002 n62004011001 n62001001011 +126548 n62004016030 +126551 n62002001002 n62004011001 n62001001011 +126562 n62004020002 +126572 n62004020018 +n62004020020 +126579 n62004020025 +126584 n62004021013 +126589 n62004020025 +126599 n62004021010 +126622 n62005001018 +126624 n62005002013 n62005002018 +126639 n62005002012 +126642 n62005003012 +126651 n62005003007 +126656 n62005003007 +126671 n62005004021 +126681 n62002001002 n62004011001 n62001001011 +126699 n62005006009 +126749 n62005008002 n62005008005 n62005008008 +126767 n62005009021 +126778 n62005009019 +126790 n62005010002 +126798 n62005010017 +126805 n62005010026 +126812 n62005010030 +126814 n62005011009 n62005011016 +126824 n62002001002 n62004011001 n62001001011 +126826 n62005011007 +126832 n62005011012 +126854 n62004011001 +126871 n62005014018 +126875 n62005014005 +126878 n62005013018 +126886 n62005013018 +126888 n62002001002 n62004011001 n62001001011 +126894 n62002001002 n62004011001 n62001001011 +126903 n62005015014 +126906 n62005013018 +126912 n62005016002 +126922 n62005016005 +126934 n62005016023 +126965 n62005018005 +126971 n62005018005 +126996 n62002001002 n62004011001 n62001001011 +127010 n62005020016 +127013 n62005020021 +127023 n62005021001 +127034 n63001001004 +n63001001004 n63001001007 +127039 n63001001002 +127042 n63001001002 +127057 n63001001002 n63001001004 n63001001007 n63001001022 +127060 n63001001002 n63001001004 n63001001007 n63001001022 +127067 n63001001002 n63001001004 n63001001007 n63001001022 +127093 n63001001004 +127107 n63001005005 +127109 n63001005005 +127121 n63001001002 n63001005005 n63001001007 n63001001022 +127123 n63001006007 +127132 n63001004017 +n63001006023 +127143 n63001006005 +127160 n63001007003 +127168 n63001005005 n63001001007 +127197 n63001009016 +127209 n63001005005 n63001001007 +127218 n63001010002 +127223 n63001010002 +127229 n63001010002 +127234 n63001010002 +127239 n63001005005 n63001001007 +127251 n63001005005 n63001001007 +127260 n63001001002 n63001005005 n63001001007 n63001001022 +127264 n63001005005 +127269 n63001005005 +127277 n64001001003 +n64001001002 +127286 n64001002001 +127292 n64001002001 +127302 n64001002001 +127306 n64001002001 +127312 n64001004007 +127318 n64001001002 +127334 n64001005002 +127336 n64001005012 +127338 n64001005001 +127343 n64001005012 +127361 n64001001002 n64001005001 +127365 n64001005012 +127378 n64001009004 +127382 n64001001002 n64001005001 +127388 n64001009007 +127391 n64001010008 +127396 n64001001002 n64001005001 +127401 n64001010008 +127403 n64001009007 +127442 n64001012009 +127447 n64001001002 n64001010024 +127454 n64001001002 n64001010024 +127460 n64001011001 +127468 n64001011001 +127473 n64001011001 +127481 n64001011001 +127483 n64001011001 +127508 n65001001017 +127520 n65001003001 +127524 n65001001001 n65001001007 n65001003001 +127529 n65001003001 +127553 n65001001001 n65001001007 n65001003001 n65001003022 +127564 n65001001001 n65001001007 n65001003001 n65001003022 +127574 n65001003001 +127594 n65001006001 +127599 n65001006001 +127617 n65001007002 n65001007004 +127622 n65001006001 +127638 n65001004004 +127671 n65001009008 +127675 n65001008005 +127689 n65001010015 +127692 n65001008005 +127712 n65001008005 +127718 n65001003001 +127722 n65001008005 +127740 n65001013001 +127744 n65001013008 +127755 n65001008005 +127767 n65001014012 +127782 n65001015009 +n65001015013 +127790 n65001015022 +127793 n65001014012 +127796 n65001008005 +127803 n65001008005 +127808 n65001008005 +127817 n65001017003 +127828 n65001001001 n65001001007 n65001017003 n65001003022 n65001014005 +127833 n65001017003 +127843 n65001018009 +127847 n65001018009 +127857 n65001020003 +127859 n65001020003 +127862 n65001020003 +127868 n65001020003 +127878 n65001001001 n65001001007 n65001020003 n65001003022 n65001014005 +127910 n65001020003 +127917 n65001025002 +127924 n65001001001 n65001001007 n65001020003 n65001003022 n65001014005 +127930 n65001001001 n65001001007 n65001020003 n65001003022 n65001014005 +127951 n66001001001 +127953 n66001001002 +127959 n66001001002 +127971 n66001001002 +127974 n66001001002 +127976 n66001001026 +127987 n66001002004 n66001002009 +128003 n66001003010 +128020 n66001004004 +128035 n66001004026 +128039 n66001002006 +128061 n66001004004 n66001004001 +128064 n66001004004 n66001004001 +128068 n66001004004 n66001004001 +128072 n66001005003 +128075 n66001004001 n66001004004 +128082 n66001005021 +n66001005021 +128102 n66001005021 +128107 n66001005021 +128112 n66001005021 +128120 n66001008009 +128141 n66001004001 +128145 n66001004004 +128183 n66001009002 +128224 n66001012005 +128227 n66001009002 +128254 n66001013007 +128267 n66001013007 +128274 n66001013007 +128284 n66001013007 +128295 n66001013007 +128302 n66001013007 +128310 n66001013007 +128318 n66001016025 +128322 n66001013007 +128327 n66001013007 +128334 n66001013007 +128336 n66001009002 +128340 n66001013007 +128383 n66001019007 n66001019004 +128389 n66001020005 +128394 n66001013007 +128434 n66001013007 +128447 n66002001006 +128454 n66002001006 +128465 n66002002021 +128472 n66002002021 +128482 n66002001011 +128489 n66002001006 +128493 n66002001006 +128512 n66002001006 +128517 n66002001006 +128521 n66002005020 +128526 n66002006005 +128534 n66002006007 +n66002001011 +128550 n66002007012 +128557 n66002007018 +128579 n66002008012 +128585 n66002008007 +128602 n66002009016 +128621 n66002008007 +128637 n66002008007 +128683 n66002013002 +128692 n66002012012 +128698 n66002012012 +128706 n66002012012 +128709 n66002012012 +n66002013024 +128713 n66002012007 +128721 n66002012007 +128725 n66002012007 +128730 n66002014012 +128747 n66002012007 +128760 n66002012007 +128765 n66002015005 n66002014009 +128771 n66002012012 +128785 n66002017012 +128792 n66002017012 +128802 n66002017028 +128827 n66002018012 +128834 n66002018012 +128838 n66002018007 +128853 n66002018007 +128857 n66002018007 +128866 n66002018007 +128874 n66002020008 +128881 n66002018012 +128889 n66002020008 +128900 n66002020008 +128903 n66002020008 +128910 n66002020008 +128920 n66002020008 +128924 n66002020008 +128934 n66002018012 +128943 n66002018007 +128948 n66002018007 +128951 n66002024005 +128957 n66002024005 +128963 n66002024005 +128975 n66002024005 +128996 n66002018012 +128998 n66002026003 +129005 n66002026017 +129016 n66002018012 +129021 n66002018012 +129024 n66002026003 +129061 n66003001007 +129078 n66003002006 +129084 n66003001007 +129090 n66003001012 +129116 n66003001007 +129123 n66003004004 +129128 n66003004004 +129132 n66003001012 +129151 n66003005002 +129161 n66003005002 +129165 n66003001012 +129170 n66003005027 +129211 n66003007007 +129217 n66003007007 +129220 n66003008009 +n66003008009 +129231 n66003007012 +129239 n66003007012 +129249 n66003009005 +129259 n66003009005 +129267 n66003007007 +129271 n66003007012 +129273 n66003007007 +129280 n66003007012 +n66003007012 +n66003007007 +129312 n66003007007 +129316 n66003012002 +129323 n66003007012 +129333 n66003012002 +129338 n66003007012 +129346 n66003007012 +129358 n66003007012 +129362 n66003007012 +129400 n66003014007 +129424 n66003014007 +129429 n66003014012 +129445 n66003014007 +129458 n66003014007 +129461 n66003014012 +129480 n66003014007 +129486 n66003014007 +129489 n66003014012 +129512 n66003014012 +129519 n66003020009 +129523 n66003020009 +129525 n66003020009 +129527 n66003014012 +129531 n66003021002 +129534 n66003014012 +129538 n66003014012 +129540 n66003014012 +129547 n66003014012 +129551 n66003021019 +129577 n66004001013 +129583 n66001009002 +129586 n66004001010 +129589 n66001009002 +129651 n66004004014 +129672 n66004005013 +129740 n66004008004 +129820 n66004010005 +129830 n66004010005 n66004009005 +129843 n66004011004 +129851 n66004011004 +129890 n66005002013 +129910 n66005003017 +129923 n66005004010 +129930 n66001009002 +129952 n66005005024 +129978 n66005006024 +130020 n66005008008 n66005008013 +130027 n66005008025 +130047 n66005009010 +130057 n66005008017 +130072 n66005008017 n66005008008 n66005008013 +130101 n66005011006 +130134 n66005013003 +130154 n66005013007 n66005013015 n66005013019 +130227 n66006002005 +130232 n66006002009 +130262 n66006004004 +130264 n66006004008 +130277 n66006004008 +130303 n66006005018 +130309 n66006005022 +130360 n66006008005 +130362 n66006008009 +130370 n66006008009 +130373 n66006008009 n66006008005 +130418 n66006009023 +130439 n66006009014 +130448 n66006009014 +n66006009014 +130454 n66006009014 +130465 n66006009014 +130469 n66006009014 +130475 n66006009014 +130517 n66006013011 +130537 n66006014010 n66006014012 +130562 n66006015003 n66006015008 n66006015011 n66006015014 n66006015017 n66006015020 n66006015022 +130581 n66006015003 n66006015008 n66006015011 n66006015014 n66006015017 n66006015020 n66006015022 +130584 n66006015003 n66006015008 n66006015011 n66006015014 n66006015017 n66006015020 n66006015022 +130606 n66006016026 n66006016017 +130663 n66007002019 +n66007002019 +130689 n66007002019 n66007002004 +130693 n66007003015 +130779 n66007009006 +n66007009006 +130809 n66007009006 +130819 n66007009006 +130851 n66007011004 +130880 n66007011004 n66007011011 n66007011015 +130894 n66001009002 +n66007009006 +130909 n66007013003 +130911 n66001009002 +n66007014004 +130916 n66001009002 +n66007013011 +130930 n66007013011 +130933 n66007014023 +130940 n66007014021 n66007014026 +130949 n66007015008 +130956 n66007015008 +130965 n66007013011 +130976 n66007013011 +130991 n66007013011 +130994 n66007013011 +131008 n66007013011 +131028 n66008002005 +131035 n66008002005 +131052 n66008003003 +131096 n66008005006 +131126 n66008006004 +131283 n66008012011 n66008012016 n66008012021 +131291 n66008012029 +131345 n66009001008 +131391 n66009003006 +131402 n66009003006 +131420 n66009004020 +131432 n66009003006 +131436 n66009004020 +131445 n66009004020 +131456 n66009005011 +131466 n66009006010 +131475 n66009006008 +131490 n66009007005 +131498 n66009007005 +131511 n66009007005 +131526 n66009007005 +131546 n66009007005 +131549 n66009007005 +131557 n66009007005 +131564 n66009011004 +131661 n66009016005 +131674 n66009017005 +131694 n66009017025 +131710 n66009017035 n66009017037 n66009017039 +131725 n66009017025 +131735 n66009019005 +131740 n66009019005 +131744 n66009019005 +131751 n66009019023 +131758 n66009020003 +131764 n66009018013 n66009018016 n66009018019 +131772 n66009020003 +131795 n66009020028 +131809 n66009020003 +131814 n66009020003 +131819 n66009020003 +131824 n66009020003 +131842 n66010001004 +131846 n66010001004 +131853 n66010001004 +131862 n66010001004 +131869 n66010001004 +131896 n66010003014 +131921 n66010004018 +131926 n66010005003 +131939 n66010005003 +131955 n66010006005 +131962 n66010006014 +131969 n66010006021 +131976 n66010006028 +132002 n66010007018 +132009 n66010008003 +132017 n66001009002 +132046 n66010009005 +132048 n66001009002 +132053 n66001009002 +132057 n66010009011 +132060 n66001009002 +132067 n66001009002 +132083 n66010010004 +132089 n66001009002 +132096 n66010010004 +132100 n66001009002 +132103 n66001009002 +132105 n66001009002 +132119 n66001009002 +132138 n66011001012 +132150 n66011002003 +132170 n66010008003 +132179 n66011003005 +132199 n66011003005 +132206 n66011003005 +132211 n66011003005 +132216 n66011003005 +132220 n66011005020 +132222 n66011003005 +132237 n66011003005 +132245 n66011006022 +132263 n66011003005 +132273 n66011003005 +132277 n66011003005 +132280 n66011003005 +132284 n66011003005 +132292 n66011008009 +132298 n66011008009 +132302 n66011003005 +132317 n66011003005 +132327 n66011003005 +132339 n66011003005 +132345 n66011010003 +132347 n66011003005 +132371 n66011010020 +132377 n66011010020 +132385 n66011010020 +132394 n66011010020 +132396 n66011012007 +132407 n66011010020 +132410 n66011010020 +132478 n66011015008 +132482 n66011015020 +132503 n66011016005 +132508 n66011016005 +132515 n66011017004 +132530 n66011017004 +132543 n66011017004 +132556 n66011017004 +132567 n66011017004 +132595 n66011019006 +132599 n66011019006 +132629 n66012001008 +132634 n66012001008 +132670 n66012003010 +132676 n66012003010 +132686 n66012004007 +132705 n66012004024 +132711 n66012005003 +132724 n66012004024 +132732 n66012005021 +132740 n66012006007 +132742 n66012006007 +132749 n66012006011 +132751 n66012006003 +132767 n66012007008 +132780 n66012007020 +132786 n66012007020 n66012007024 +132820 n66012009004 +132822 n66012009004 +132844 n66012010003 n66012007008 n66012007011 +132850 n66012010020 +132857 n66012010003 n66012007008 n66012007011 +132860 n66012010033 +132864 n66012010003 n66012007008 n66012007011 n66012010033 +132869 n66012010033 +132871 n66012010031 +132883 n66012010033 +132889 n66012010033 +132899 n66012012004 +132912 n66012012012 n66012012015 +132934 n66012013013 +132957 n66012014004 +n66012014019 +132960 n66012014019 +132978 n66012015004 +132986 n66012015011 +133001 n66012016010 +133006 n66012016017 +133013 n66012016021 +133030 n66012017007 +133066 n66013001006 +133073 n66013001006 +133079 n66013002003 +133087 n66013002003 +133093 n66013002003 +133099 n66013002003 +133104 n66013002026 +133108 n66013002026 +133117 n66013002003 +133127 n66013002003 +133161 n66013004019 +133164 n66013004014 +133172 n66013004014 +133182 n66013004014 +133191 n66013006010 +133195 n66013006010 +133203 n66013004014 +133211 n66013007008 +133214 n66013004014 +133227 n66013004014 +133236 n66013008006 +133239 n66013008006 +133270 n66013010009 +133274 n66013010007 n66013010016 +133310 n66013012006 +133318 n66013012014 +133326 n66013012023 +133332 n66013012023 +133361 n66013014010 +133363 n66013011004 +133378 n66013014027 +133388 n66013011004 +133436 n66013016003 +133441 n66013016003 +133448 n66013016003 +133472 n66013017018 +n66013018008 n66013018021 +133492 n66013018012 +133509 n66014001006 +133517 n66014001006 +133523 n66014001006 +133528 n66014001018 +133547 n66014002018 +133555 n66014002022 +133589 n66014003028 +133599 n66014003028 +133607 n66014003028 +133622 n66014003028 +133664 n66014007007 +133672 n66014007007 +133698 n66014008009 +133706 n66014008009 +133716 n66014006004 n66014008003 +133729 n66014009015 +133736 n66014009012 +133741 n66014009012 +133743 n66014009012 +133760 n66014010010 +133779 n66014011019 n66014011029 +133798 n66014011021 +133807 n66014011021 +n66014012008 +133849 n66014013011 +133853 n66014013011 +133856 n66014013011 +133875 n66014014013 +133882 n66014014013 +133904 n66014015013 +133927 n66014016004 +133948 n66014017003 +133976 n66014018019 +133993 n66014018036 +134000 n66014019004 +134062 n66015001014 +134085 n66015002013 +134092 n66015002013 +134123 n66015003022 +134134 n66015003034 +134148 n66015004005 +134160 n66015004005 +134164 n66015004005 +134244 n66015008010 +134292 n66016002004 +134316 n66016002027 +134323 n66016003003 +134347 n66016004003 +134386 n66016002021 +134407 n66016007007 +134414 n66016008003 +134420 n66016008010 +134445 n66015008027 +134450 n66016009012 +134458 n66016010003 +134468 n66016010012 +134474 n66016009004 +134487 n66016009004 +134492 n66016009004 +134499 n66016009004 +134506 n66016012003 +134517 n66016012010 +134558 n66016014003 +134567 n66016014011 +134590 n66016015007 +134599 n66016015007 +134602 n66016014011 +134616 n66016017003 +134643 n66016018009 +134681 n66016019017 +134690 n66016019023 +134727 n66016021023 +134744 n66001009002 +134748 n66001009002 +134761 n66017001024 +134778 n66017001024 +134781 n66001009002 +134822 n66017004003 +134832 n66017004003 +134837 n66017004003 +134873 n66017006004 +134878 n66001009002 +134884 n66017007005 +134886 n66001009002 +134896 n66017007015 +134908 n66017008002 +134931 n66017008022 +134954 n66017009011 n66017009020 +134966 n66017009011 +134971 n66017009011 +134990 n66017010008 +134996 n66017011003 +135002 n66017011003 +135018 n66017012004 +135023 n66017012008 +135037 n66017012008 +135046 n66017012008 +135050 n66017012008 +135059 n66017012008 +135070 n66017014008 +135078 n66001009002 +135081 n66017015005 +135083 n66017015005 +135099 n66017016004 +135104 n66017016004 n66017016009 +135110 n66017016013 +135117 n66017016013 +135120 n66017016013 +135131 n66017012008 +135135 n66017017003 +135144 n66017012008 +135156 n66017018003 +135190 n66018001005 +135226 n66018002009 +135237 n66018002009 +135249 n66018002009 +135261 n66018004004 +135264 n66018002009 +135270 n66018002009 +135276 n66018002009 +135281 n66018002009 +135293 n66018002009 +135295 n66018002009 +135298 n66018002009 +135307 n66018002009 +135311 n66018006017 +135314 n66018002009 +135318 n66018002009 +135326 n66018002009 +135331 n66018002009 +135353 n66018002009 +135370 n66018002009 +135376 n66018002009 +135383 n66018002009 +135393 n66018002009 +135402 n66018002009 +135421 n66018010014 +135431 n66018002009 +135438 n66018011003 +135510 n66018002009 +135517 n66018002009 +135527 n66018002009 +135532 n66018014015 n66018014018 +135536 n66018011013 +135540 n66018002009 +135549 n66018002009 +135609 n66018002009 +135623 n66018017010 n66018017016 n66018017018 n66018017023 +135637 n66018019017 +135650 n66018019017 +135657 n66018019017 +135674 n66018020004 n66018020007 n66018020010 n66018020013 +135676 n66018019017 +135717 n66018021019 +135728 n66018021019 +135737 n66018021019 +135746 n66018021019 +135757 n66018021019 +135762 n66018021019 +135772 n66018021019 +135779 n66018021019 +135815 n66019001007 +135822 n66019001023 +135829 n66019002011 +135836 n66019002011 +135843 n66019001023 +135846 n66019002011 +135854 n66019002011 +135894 n66019005002 n66019005014 n66019005017 +135898 n66019005010 +135901 n66019005010 +135940 n66019006021 +135950 n66019007014 +135952 n66019007017 +135955 n66019007017 +135971 n66001009002 +135985 n66001009002 +n66019009005 +135998 n66019005002 +136000 n66019005002 +136003 n66001009002 +136008 n66001009002 +136012 n66001009002 +136043 n66019011008 +136057 n66019011012 +136064 n66019011012 +136070 n66019012015 +136075 n66019011012 +136085 n66019011012 +136098 n66019011012 +136110 n66019011012 +136116 n66019015007 +136121 n66019011012 +136123 n66019015014 +136128 n66019011012 +136151 n66019011012 +136206 n66019018013 +136230 n66019019007 +136245 n66019019020 +136252 n66019020004 +136260 n66019020004 +136262 n66019020013 +136275 n66019020024 +136306 n66019021009 +136315 n66019021003 +136334 n66020001003 +136343 n66020002004 +136351 n66020002004 +136356 n66020002004 +136365 n66020002004 +136381 n66020002004 +136390 n66020004003 +136394 n66020004016 +136411 n66020004016 +136419 n66020004032 +136432 n66020004016 +136453 n66020004051 n66020004053 +136470 n66020006005 +136488 n66020006027 +136504 n66020007009 +136522 n66020008005 +136526 n66020008005 +136529 n66020008005 +136561 n66020008005 +136567 n66020008005 +136576 n66020010010 +136602 n66020011003 +136604 n66020011008 +136617 n66020011017 n66020011020 +136638 n66020012019 +136655 n66020012028 +136664 n66020013004 +136676 n66020013012 n66020013015 +136679 n66020013006 n66020013018 +136683 n66020013006 n66020013018 +136696 n66020014007 +136766 n66021002018 +136786 n66021003016 +136788 n66021003016 +136790 n66021003013 +136793 n66021003029 +136797 n66021003016 +136806 n66021003016 +136850 n66001009002 +136852 n66021005004 +136863 n66021005004 +136881 n66021007002 +136884 n66021007002 +136886 n66021005004 +136909 n66021008003 n66021008005 n66021008007 n66021008009 n66021008011 n66021008013 n66021008015 n66021008019 +136918 n66021008021 +136946 n66001009002 +136950 n66001009002 +136959 n66001009002 +136969 n66001009002 +136989 n66021010015 +137014 n66021012016 +137050 n66021014007 +137062 n66001009002 +137074 n66021015013 +137078 n66021015013 +137087 n66021016003 +137109 n66021016016 +137116 n66021016016 +137123 n66021017010 +137131 n66021016016 +137219 n66021021020 +137231 n66021021020 +137246 n66021023003 +137253 n66021023003 +137257 n66021023003 +137267 n66021023003 +137276 n66021024011 +137278 n66021023003 +137282 n66021023003 +137291 n66021023003 +137302 n66021023003 +137308 n66021023003 +137330 n66001009002 +137350 n66021023003 +137368 n66022002012 +137393 n66021023003 +137398 n66022003011 +137400 n66022003011 +137405 n66022003011 +137409 n66022003011 +137413 n66022003020 +137434 n66022003020 +137444 n66001009002 +137463 n66022006012 +137467 n66022006012 +137487 n66001009002 +137508 n66022008002 +137512 n66022008002 +137517 n66022008002 +137521 n66022008002 +137531 n66022007013 +137537 n66022008002 +137546 n66022009021 +137578 n66022003014 +137580 n66022003014 +137586 n66022012011 +137588 n66022003014 +137609 n66022014003 +137614 n66022014003 +137648 n66022003014 +137653 n66022016002 +137660 n66022016002 +137698 n66022016002 +137708 n66022010011 +137713 n66022018007 +137718 n66022018014 +137726 n66022010011 +137738 n66022018009 +137744 n66022019003 +137761 n66022019009 diff --git a/tf/0.1.1/role.tf b/tf/0.1.1/role.tf new file mode 100644 index 0000000..13c7639 --- /dev/null +++ b/tf/0.1.1/role.tf @@ -0,0 +1,84232 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute role +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +9 s +v +14 s +v +19 s +v +28 s +v +39 s +v +44 s +v +49 s +v +54 s +v +59 s +v +64 s +v +72 s +v +80 s +v +85 s +v +92 s +v +101 s +v +106 s +v +111 s +v +116 s +v +121 s +v +126 s +v +131 s +v +136 s +v +141 s +v +146 s +v +151 s +v +156 s +v +161 s +v +178 s +v +183 s +v +188 s +v +193 s +v +198 s +v +203 s +v +208 s +v +213 s +v +218 s +v +223 s +v +228 s +v +233 s +v +242 v +245 vc +p +282 p +vc +v +293 v +s +v +298 v +307 p +vc +310 adv +v +o +v +v +adv +v +o +319 o +s +v +aux +327 v +io +v +333 adv +v +v +o +344 v +348 vc +350 v +o +353 v +357 o2 +359 s +v +371 v +373 v +375 v +381 v +aux +387 v +389 v +o +392 v +397 s +407 v +411 v +413 v +o +419 v +424 adv +v +o +428 adv +v +o +432 v +436 o2 +440 v +450 aux +s +454 v +457 v +p +vc +461 v +466 v +474 v +v +o +478 v +482 v +489 v +497 v +500 adv +503 v +505 s +v +io +513 adv +v +522 s +adv +p +vc +533 v +v +s +v +542 adv +s +adv +v +548 v +554 v +557 v +o +561 v +v +v +adv +570 v +v +io +574 s +v +v +o +579 s +v +583 v +585 aux +588 o +v +593 v +o +596 v +v +599 p +vc +604 v +607 v +610 adv +612 v +616 v +625 v +v +o +629 v +633 v +io +642 v +645 adv +v +652 v +658 v +s +aux +663 v +668 v +v +v +678 v +682 v +adv +686 v +io +689 v +s +v +695 v +o +698 s +v +v +707 adv +709 v +713 vc +p +720 v +722 v +728 v +731 v +735 adv +s +v +739 v +743 v +adv +746 v +v +767 o +v +772 adv +v +775 v +780 v +783 v +789 s +v +795 adv +v +v +799 adv +v +802 v +805 aux +808 v +815 v +v +v +825 v +830 v +832 v +838 s +v +v +848 v +853 v +855 s +v +864 v +adv +v +868 v +871 v +878 v +v +882 vc +p +885 v +887 v +892 p +vc +899 v +903 v +909 v +v +912 v +918 s +vc +921 v +926 v +928 v +932 v +936 o2 +v +945 v +963 vc +968 adv +v +984 v +991 v +996 v +1002 v +1006 v +io +1010 s +v +io +v +1016 v +1019 v +1025 adv +v +v +1030 o2 +v +1035 v +io +1038 v +1045 v +o +1050 adv +1058 v +1062 adv +v +1066 v +1070 v +1072 s +o +v +1083 v +p +adv +vc +adv +adv +vc +p +1093 v +s +o +v +1110 v +1115 v +1125 v +1128 adv +v +1142 v +1146 s +v +o +v +s +o +v +1155 v +1157 s +v +1162 v +1165 v +io +v +adv +1170 adv +v +vc +adv +v +1177 adv +v +o +1181 v +1184 adv +v +1190 aux +v +1195 v +1198 v +1201 v +1205 aux +s +1210 v +s +vc +1220 v +adv +1224 v +1231 v +1236 v +1242 adv +v +1245 v +1247 v +v +io +1251 vc +1255 v +1260 p +vc +1263 s +v +v +v +1271 v +1278 v +1282 adv +v +o +1292 v +o +1300 v +io +1303 vc +1307 v +o +adv +1311 v +1316 v +1322 v +o +adv +adv +v +1332 v +io +1336 adv +v +adv +v +1344 adv +v +o +1354 v +io +1366 v +io +1370 io +v +1373 v +v +o +adv +v +io +1381 v +aux +1384 v +1389 v +1393 v +adv +v +o +1400 aux +s +v +1404 v +o +1407 v +1409 s +v +v +1416 v +1419 v +v +1431 v +1433 v +1438 v +1455 v +1460 v +1463 v +1469 s +v +adv +1474 v +1477 v +1479 v +v +1482 v +1488 v +1494 v +1499 vc +p +1506 v +o +1512 vc +p +1515 v +io +v +1521 v +o +1526 s +adv +v +1531 v +o +1534 v +adv +v +1557 v +1562 v +o +1565 s +adv +v +1574 v +o +1577 v +1582 v +1588 v +1594 v +1604 v +1613 v +io +1617 adv +v +1623 v +v +1626 v +1630 v +o +1633 v +o +1651 v +1654 v +1659 v +s +v +adv +1667 v +1671 v +o +v +p +1680 p +vc +1686 p +1688 v +1690 s +v +p +1696 s +v +1700 p +1708 s +v +p +1714 s +v +p +1722 s +1725 v +p +1730 s +1733 vc +p +1736 v +1740 p +vc +1746 p +vc +1749 v +o +1752 v +1754 v +1759 v +1762 v +1764 v +1769 p +1774 adv +v +1781 s +vc +1791 v +1794 v +1797 v +adv +1800 adv +v +adv +v +1807 s +vc +1813 adv +v +s +v +1819 v +1821 v +o +1824 v +o +1834 v +1840 adv +v +1849 v +1855 v +1863 adv +v +1866 v +v +1874 v +v +1877 v +1880 v +io +1884 v +1897 v +1903 s +v +1907 s +v +1916 v +adv +1920 p +vc +1929 s +v +1932 v +s +p +vc +1942 v +io +1946 adv +v +1951 adv +1958 v +1964 v +1966 v +1969 adv +v +1973 s +v +p +vc +1980 s +v +io +1986 v +1990 p +vc +1996 s +v +2001 aux +p +vc +2008 s +v +aux +p +vc +2020 v +2027 adv +v +2033 v +o +2037 v +adv +2046 v +adv +v +2053 adv +v +v +2064 adv +2066 adv +vc +2073 adv +adv +o +v +2089 v +2091 v +io +2095 v +adv +2099 v +2103 v +2105 v +adv +v +2109 s +v +io +2115 v +o +2119 v +o +adv +v +o +2135 v +o +v +o +2140 v +2144 v +adv +2147 v +2153 adv +2158 v +2167 v +o +v +o +2172 v +2176 v +adv +2179 v +2185 adv +2192 v +2194 v +2196 s +v +2201 v +io +o +2205 s +v +io +2211 v +2218 v +s +v +2223 s +v +v +v +adv +v +2230 v +2233 adv +v +2236 v +2243 s +v +io +adv +v +adv +2254 vc +2263 vc +2272 vc +2282 v +2284 adv +v +2288 v +2293 vc +2297 s +p +s +p +2308 vc +v +2311 v +o +2316 o +2320 s +v +io +adv +v +2328 s +o +v +2336 v +io +2343 v +adv +v +2350 v +v +io +2357 s +o +v +2362 v +2365 adv +2367 v +o +v +2372 v +2375 v +adv +v +v +2380 v +v +2386 v +2391 s +v +io +v +2399 v +2402 v +o +2405 vc +2417 v +2423 v +2430 v +2432 v +o +2436 v +2443 v +2446 v +2450 adv +2453 v +2460 v +2462 vc +s +p +2471 p +vc +2474 v +2478 adv +v +2485 v +adv +2489 adv +o +adv +v +2503 v +o +adv +v +2512 v +2521 v +2526 v +io +v +2533 s +v +o +adv +v +2541 o +v +2547 vc +2559 v +2563 v +io +2567 v +adv +vc +2574 v +2584 v +v +2587 v +2591 v +io +v +2599 s +v +v +2607 v +2611 v +2624 v +2628 v +io +2631 v +adv +v +2638 v +2644 v +2646 adv +v +adv +2650 v +2656 v +2659 s +v +o +2663 adv +v +s +2672 v +2676 v +2680 v +2695 v +io +adv +2699 v +io +2707 v +2713 v +o +2718 v +o +2725 v +2731 v +2741 adv +v +2745 adv +2749 v +2755 v +adv +vc +2761 p +2763 v +2768 v +2771 v +2773 v +io +v +2780 s +v +v +2790 v +2793 v +2796 v +2810 v +2814 v +io +adv +v +io +o +2823 adv +2827 v +2829 adv +s +2835 v +io +o +2840 adv +2845 v +2847 adv +s +adv +2854 p +vc +2859 p +vc +2869 vc +2874 vc +2878 p +2883 p +vc +2890 p +vc +2896 p +vc +2905 p +vc +2909 p +s +v +2914 v +2919 v +2923 v +2925 o +v +2930 v +adv +v +o +v +2936 o +2939 v +io +adv +v +2946 o +v +2949 o +v +2955 o +v +2960 p +vc +2969 v +2976 adv +v +2979 v +2981 v +2990 v +o +2993 s +adv +v +adv +3001 v +v +v +3013 adv +v +v +3020 adv +v +adv +v +3025 v +3027 v +io +3030 adv +s +3037 v +3047 adv +v +3050 adv +3053 v +3056 adv +v +3061 o +aux +3064 adv +v +v +o +v +3070 o +v +3073 o +v +3080 v +3082 v +3089 v +3093 v +adv +3104 v +io +3107 adv +v +3115 v +o +p +3123 adv +v +3127 v +3132 v +v +3138 v +v +io +3142 adv +v +3160 adv +v +3163 adv +v +3168 v +v +3177 aux +3184 aux +v +adv +3194 adv +v +v +3205 adv +v +3212 v +3219 adv +adv +v +o +3228 v +v +o +v +3233 v +io +v +3237 v +v +3240 v +io +3245 v +v +3249 v +v +3253 v +v +3256 vc +3261 o +v +3266 o2 +3268 o +v +io +3274 v +3276 o +v +io +3281 s +p +vc +v +3287 v +3300 v +o +3303 v +o +3308 adv +v +3311 v +io +3315 adv +3318 v +io +3321 s +vc +3328 v +3334 p +3338 p +3342 v +3347 p +vc +3350 v +3354 p +3358 p +3362 v +3367 p +vc +3370 v +o +v +3376 s +v +3384 adv +vc +3392 v +o +3395 v +3398 o +3402 o +adv +3409 v +3416 v +adv +v +3423 v +3429 v +3432 adv +v +3436 v +3440 v +3446 v +o +3451 v +io +aux +aux +v +3463 v +3473 s +v +io +3480 aux +aux +3486 v +3491 o +v +3499 v +3501 adv +v +io +3505 adv +v +o +v +3512 v +3517 s +v +3524 v +o +v +3529 s +v +3538 v +3542 v +3546 v +3550 v +3555 adv +v +3558 v +3565 v +3571 adv +v +o +v +3577 s +v +3586 v +3590 v +3594 v +3598 v +3603 v +3605 vc +3609 p +3611 v +3613 v +3619 v +3629 o +3631 o +v +3640 v +s +3645 v +o +3650 aux +s +v +v +o +v +aux +3658 v +v +o +v +3663 v +3666 v +o +v +v +v +3672 adv +v +3678 v +io +3682 v +io +v +3686 v +o +v +3692 v +3695 o +v +s +3702 v +s +3706 v +adv +s +v +o +3712 v +aux +3717 v +3721 adv +adv +v +v +io +s +v +v +o +3731 v +3734 v +aux +adv +vc +p +3744 v +3746 adv +v +adv +3750 v +3757 vc +3761 v +3764 o +3766 v +io +v +3770 v +3772 io +v +3775 v +3780 v +o +3783 v +3785 v +3788 v +3790 v +3792 v +3794 v +io +3803 v +3805 v +io +3808 s +3813 v +3815 v +3832 v +3838 p +vc +3848 v +3853 v +3855 v +v +adv +3859 v +3869 v +3874 v +3882 v +3887 v +o +3892 v +3894 v +o +3897 s +v +v +io +v +3904 v +3907 adv +3911 adv +v +v +3915 v +3917 v +3922 v +s +3927 v +3931 v +3935 v +o +3939 v +v +3945 v +3948 v +io +aux +v +o +3954 adv +v +3957 v +io +3963 o +v +3970 o +3976 adv +v +adv +3981 v +3986 v +io +aux +v +io +adv +v +3994 v +4001 v +io +v +o +4006 v +4009 v +4014 v +s +4019 v +o +4025 aux +4028 v +4035 v +4040 s +v +4043 v +v +o +v +aux +v +v +4051 v +io +adv +p +vc +aux +adv +v +v +4066 v +4072 v +v +p +vc +s +4084 o +v +4087 v +s +4097 v +o +4100 v +4104 v +4108 adv +v +s +v +4117 aux +v +v +s +4127 v +adv +4131 v +o +4134 vc +p +4141 v +4145 v +o +v +4149 v +o +v +o +4159 v +io +v +4163 s +v +v +4170 aux +v +4182 v +4188 v +v +4191 v +4195 v +4200 v +4202 aux +4206 v +4212 v +o +v +4216 v +4222 v +4225 v +4227 v +4233 aux +v +io +4239 v +4243 v +4247 v +4250 v +aux +v +4257 aux +4261 v +4264 s +v +4269 v +4273 v +4276 v +o +4283 s +vc +p +v +v +4292 v +v +4295 v +4298 v +4300 o +v +4309 v +o +adv +v +4315 v +v +4321 v +4327 v +v +4334 v +4337 v +4339 v +4343 v +4349 v +adv +4353 v +4355 v +4359 p +vc +4362 v +io +v +o +4367 v +v +o +4371 v +s +v +4378 aux +4383 v +v +4392 v +4395 v +4406 v +4411 s +v +v +4417 v +4419 v +4422 adv +v +4425 v +v +p +vc +o +v +4432 adv +o +4436 v +v +o +4440 o +adv +v +adv +4447 v +4454 v +4459 adv +v +4462 v +io +4467 v +4472 v +4474 adv +4477 vc +4481 v +s +4484 v +4490 adv +v +4493 s +v +4502 v +4512 v +4514 v +4522 adv +v +4529 v +4533 v +4535 v +4542 s +v +o +s +v +io +aux +4551 v +v +o +v +4559 adv +v +4562 v +v +4570 v +4572 v +4575 v +o +4582 aux +4584 v +4587 v +adv +v +4596 v +4600 adv +v +4605 v +4609 v +4611 v +o +v +v +aux +4619 v +o +4622 v +4632 v +4639 v +4645 v +v +v +4650 v +4654 v +4656 v +o +4660 v +4663 v +v +4669 v +4673 v +4683 v +adv +4687 v +4690 v +4692 v +v +o +4698 v +4702 v +adv +4707 v +io +4711 v +4713 v +o +v +v +io +aux +aux +adv +v +4725 v +4730 v +io +4733 v +4738 v +io +4742 v +v +s +v +4747 s +v +v +o +4757 s +v +aux +v +io +4763 v +4765 v +4768 v +4772 v +4775 v +adv +v +adv +4785 v +4791 v +4795 v +4804 v +4810 v +4816 v +4823 v +4826 v +4836 adv +v +o +adv +v +4847 p +4851 p +4853 v +4859 v +o +4866 v +4871 v +io +4877 v +o +4880 v +4892 vc +p +p +4897 vc +p +4936 adv +v +o +4942 v +4945 v +o +v +4951 adv +v +4957 adv +v +4960 v +adv +4966 v +4970 v +v +v +4974 v +4979 v +v +o +v +o +v +o +v +adv +v +adv +v +adv +v +5002 adv +5014 p +5027 v +v +s +5032 p +vc +adv +v +5038 v +5040 v +5044 v +o +5049 vc +5052 p +v +5061 adv +vc +p +5069 v +5072 s +adv +v +o +5077 v +5081 v +5089 v +5096 v +io +p +vc +5111 aux +s +v +o +5116 o +5121 vc +p +5127 p +5132 v +5137 v +o +5146 v +o +5154 v +5165 v +o +adv +v +adv +5171 o +v +5174 v +io +5180 o +v +5184 s +vc +5187 v +5195 v +5199 v +s +o +5205 s +o +5208 v +s +5213 v +o +5226 v +5229 s +v +5233 v +o +5239 v +5245 v +io +5249 v +5255 v +5260 adv +vc +s +5267 s +5272 p +5276 vc +5291 o2 +v +5299 adv +v +o +5303 p +vc +v +s +adv +v +5311 s +adv +v +o +v +io +5320 v +5325 o +5329 v +v +5335 adv +v +5339 v +5343 adv +v +5347 v +5349 v +adv +5352 v +5357 v +5363 adv +v +5369 adv +v +5389 adv +v +5393 v +s +5398 v +5404 v +s +5418 s +v +o +5424 v +s +o +5435 adv +v +5438 v +v +o +5445 v +v +o +5449 o +5451 v +v +o +5459 o +5465 o +5478 v +5484 adv +vc +adv +p +5490 v +5496 adv +vc +adv +p +5501 s +adv +v +5508 v +5511 adv +vc +adv +p +5516 v +5520 v +o +5524 v +5530 v +o +5533 v +o +o +v +5539 o +v +v +5543 v +o +5546 v +o +5553 v +5556 v +o +5563 v +5566 s +v +5574 adv +5579 v +io +5583 v +5588 v +5590 v +5593 v +5598 v +adv +5611 v +5619 v +5624 v +io +s +vc +5629 v +5631 o +v +5634 v +5637 v +io +v +v +io +o +5646 s +v +5649 s +v +s +v +5654 s +v +5657 s +v +5660 s +v +5663 p +vc +5666 s +adv +v +5672 s +v +v +5677 v +5682 o +v +v +5691 v +5693 o +v +v +5699 v +aux +5704 v +5711 adv +v +o +v +aux +v +io +5721 s +vc +5725 v +aux +s +v +5735 s +v +5743 v +io +adv +v +5762 p +adv +vc +5778 v +5780 s +v +o +5792 v +5795 v +v +s +vc +5801 v +v +5804 v +o +v +5808 adv +v +5813 p +vc +5816 v +5820 s +v +5824 v +v +io +5828 adv +v +v +5832 adv +v +5835 v +s +5842 v +o +v +v +5850 v +5852 v +5854 v +v +5865 v +5872 adv +v +v +5879 v +5885 adv +v +s +io +aux +s +io +aux +5899 v +5903 v +5907 adv +5912 v +5914 v +io +5919 p +vc +5925 adv +5927 aux +5929 s +5932 v +5935 v +5940 v +5944 v +5948 v +5953 v +io +5958 p +vc +5964 adv +5969 v +5972 v +v +o +5983 v +o +5990 v +o +io +aux +5997 adv +s +vc +6002 s +io +v +6010 s +v +6015 adv +6021 s +v +6024 adv +6029 io +v +v +6034 v +6039 v +6041 v +s +v +o +v +6052 v +6056 vc +6063 v +o +6072 p +6077 p +vc +6083 v +6095 v +6097 v +v +o +6101 v +6105 v +v +io +aux +6112 v +o +v +adv +v +6120 s +v +io +6124 v +o +v +s +6129 v +6135 v +6146 v +o +v +adv +6152 adv +6158 adv +6161 adv +6164 v +6178 v +6180 p +vc +6183 v +io +6189 vc +p +6193 v +p +vc +o +v +6199 adv +o +6202 adv +v +6207 vc +6216 v +adv +v +6224 v +6226 o +v +o2 +6230 v +o +v +6234 v +6237 v +6239 v +o +6242 s +v +io +s +vc +6250 s +v +6256 v +s +6263 v +o +6266 v +6268 adv +v +s +adv +6273 v +6276 adv +v +adv +v +6282 v +6287 v +6289 v +adv +6295 v +6298 o +v +6303 o +v +6308 v +v +adv +6312 v +o +s +6316 v +6320 v +io +6323 adv +o2 +o +v +6328 v +6330 v +6335 v +v +6340 o +v +6345 o +v +6350 v +6357 o +6360 v +adv +v +6364 v +6366 v +s +6375 v +adv +v +6380 v +adv +v +6385 v +6394 s +v +adv +v +io +v +6404 v +o +6413 v +6418 v +6420 s +vc +6428 v +v +s +adv +v +6436 adv +6444 v +6448 v +io +6452 v +6455 v +6461 v +6464 adv +v +6472 v +6475 v +6477 adv +v +6484 s +6487 v +6495 v +6498 s +6501 vc +6507 s +v +6512 v +6520 adv +v +s +v +6533 v +6535 adv +adv +v +6541 adv +6545 v +6547 adv +vc +6553 vc +6556 adv +v +6560 v +6563 v +io +6569 v +6577 adv +v +6581 s +v +o +6589 v +io +6593 s +v +6600 adv +v +io +6611 v +6613 v +6616 o2 +6621 o2 +6623 v +6626 o2 +6631 o2 +6638 v +6641 adv +v +o +v +p +vc +6655 v +6663 v +o +6673 v +o +6676 v +io +6682 o +v +6686 v +6689 o +6698 v +6704 v +adv +v +io +6713 v +aux +v +6718 o +v +6721 s +v +v +io +6729 o +v +6732 s +adv +v +io +6737 adv +6745 vc +s +6757 adv +vc +6775 v +6784 v +o +6787 v +6793 aux +6796 p +6799 v +6808 v +o +6811 v +6817 v +6822 aux +6825 p +6831 v +6835 v +6839 v +o +6842 adv +v +adv +v +6850 v +adv +v +6854 v +v +v +6858 v +6860 v +adv +v +6864 v +6873 v +v +adv +6877 vc +6883 p +6886 p +vc +6894 adv +s +v +6899 aux +6906 v +adv +v +io +v +6912 v +s +io +aux +6923 adv +v +v +io +v +6929 s +v +v +6933 v +io +s +vc +6941 s +vc +6947 v +6955 v +v +6966 s +v +6976 s +6983 vc +6990 v +6993 v +6998 v +7004 s +7007 v +v +7016 v +7018 v +io +o +7023 v +aux +v +7027 v +7029 v +7033 v +s +7036 s +v +7042 v +7045 v +o +7048 s +v +7053 adv +adv +v +7059 adv +v +7063 adv +v +7068 s +v +v +7074 adv +v +o +v +7079 s +v +7085 v +7089 v +o +7092 s +v +7100 v +o +7103 s +o +7106 s +o +7109 s +o +7112 v +o +v +7116 v +7119 v +io +7125 v +io +7128 s +v +v +7132 io +v +v +7142 io +adv +v +7146 s +v +v +io +7151 v +7153 s +adv +v +7157 o +v +v +7166 io +v +7169 v +adv +v +7173 v +adv +7179 v +io +7185 v +adv +v +7191 v +7193 v +v +7198 v +7200 v +7209 adv +v +7215 v +adv +adv +v +7224 v +7228 v +7230 v +7232 v +o +7235 p +7240 v +7246 v +7249 v +io +7256 v +v +o +v +7261 adv +v +7264 v +o +v +7268 adv +v +7271 s +v +7276 v +s +v +7284 adv +v +v +7290 v +7292 v +7297 s +vc +7303 v +7309 v +s +vc +7315 v +7317 adv +7320 v +o +7323 adv +v +o +7329 p +vc +7332 v +7339 adv +v +7346 v +s +vc +7352 v +7363 v +7367 p +vc +7375 v +s +vc +7381 v +7383 v +7385 s +v +7389 v +s +o +7393 s +o +7396 s +o +7400 v +io +v +v +7409 v +7419 v +7422 v +7427 v +o +7434 v +7437 v +7441 o +v +adv +v +7449 v +7454 v +io +aux +7460 v +7466 adv +v +o +7470 s +v +io +7475 o +v +7480 io +v +7483 v +v +v +o +7488 s +v +adv +adv +adv +v +7496 v +7501 v +v +s +7512 v +7515 v +adv +7520 v +o +7526 v +o +7531 v +7538 v +io +v +p +vc +7549 o +v +s +v +7558 s +p +vc +7566 v +p +7570 vc +7572 vc +p +7575 v +7581 v +7588 v +io +p +vc +7597 o +v +s +v +7606 adv +v +s +7611 v +7621 o +v +io +7625 v +7627 v +7631 v +v +7638 v +v +7642 adv +v +7646 v +7651 v +adv +7656 v +v +io +7666 s +v +v +7670 v +7674 vc +7682 vc +7689 s +vc +7698 vc +7707 v +o +vc +7717 vc +7721 p +vc +7725 v +7729 adv +v +p +vc +7738 v +7747 v +7757 v +7761 v +o +7768 p +vc +7777 adv +7780 v +7791 v +o +v +p +vc +7801 v +7805 o +v +s +v +7814 v +7816 v +o +v +7820 v +7824 adv +p +vc +7832 v +7836 v +7840 v +v +7843 o +v +7846 v +o +adv +p +vc +7856 v +7864 v +o +7867 v +v +7873 v +v +7882 adv +v +p +vc +7891 v +7895 v +7903 v +o +7910 p +vc +7919 v +7922 v +io +aux +7926 s +v +io +7933 v +7938 p +vc +7942 s +v +7952 v +7954 v +7960 v +adv +7963 v +7968 v +o +7975 v +s +7978 v +adv +io +7988 s +vc +7998 vc +p +8016 s +8019 vc +8021 adv +io +8026 v +8032 v +io +adv +vc +s +p +8039 adv +8049 adv +v +adv +8062 v +8070 v +8074 s +vc +8079 s +v +8089 v +8095 v +8098 v +8102 v +8112 v +8115 io +adv +v +adv +v +o +8122 v +o +v +v +8131 o +v +8137 v +v +8147 v +8153 v +io +v +8157 o +v +8160 s +v +8166 v +v +io +adv +8178 v +8186 v +v +v +8190 v +v +o +8197 v +8204 v +8208 v +8213 v +8217 v +8221 v +o +8224 v +v +8229 v +8232 v +adv +8242 v +8245 v +o +adv +8252 v +v +8257 v +8261 v +8266 s +v +v +adv +8272 v +p +vc +8280 adv +v +8283 v +8287 v +8291 v +io +o +8297 v +io +adv +o +v +v +v +io +s +v +8308 s +v +io +adv +v +adv +8315 adv +8322 s +v +v +io +adv +o +8329 v +8332 v +8336 v +8344 v +8348 v +8350 v +v +8362 v +s +8365 v +8367 v +8369 v +8377 v +vc +8387 adv +v +8391 v +8396 v +o +8402 adv +v +8407 v +8410 v +8416 v +8418 s +v +p +vc +adv +8426 adv +8432 v +v +8438 vc +p +8447 v +8450 v +8457 v +s +8462 v +v +v +8466 p +vc +8472 v +8474 adv +v +8478 io +v +v +s +vc +adv +v +8486 v +io +8490 v +aux +8493 s +vc +v +s +v +8504 s +v +v +8508 v +8512 s +v +8518 v +8523 v +8526 v +8528 v +v +v +v +aux +v +o +8536 adv +8539 v +8542 v +o +8545 v +io +aux +8550 v +8552 v +s +8557 v +8565 v +o +v +adv +8571 vc +8573 v +v +8581 v +o +8588 v +8595 v +io +8599 adv +v +8602 v +o +8605 adv +v +8613 s +v +v +adv +v +8625 v +8631 v +8637 adv +v +8642 o +v +8645 s +v +v +io +8653 v +8665 v +v +8674 v +8678 adv +v +8681 s +v +8684 s +v +8691 p +8693 o +8696 v +8699 v +8708 v +8717 aux +adv +v +8722 s +v +8729 o +v +8735 adv +v +8740 adv +v +o +v +o2 +8748 v +8751 v +io +v +8755 v +8758 v +8762 v +8767 v +8771 s +v +8775 adv +v +8779 v +io +v +8785 v +8788 v +8790 s +v +v +8795 o +adv +v +8803 v +v +o +vc +8812 s +o +v +s +8818 v +8820 v +8823 v +io +v +io +8830 s +v +adv +8835 p +vc +8838 v +8842 v +8849 v +8853 v +8856 v +8863 v +s +v +8872 v +8881 s +vc +8884 v +8891 v +adv +v +8897 v +adv +8901 v +8909 aux +8916 v +v +v +v +o +8927 adv +v +8930 s +adv +v +io +o +8936 v +8940 v +o +v +v +o +8946 v +8950 s +v +v +adv +v +8956 adv +8961 v +8965 s +v +v +o +v +aux +v +o +8974 s +v +v +adv +vc +p +v +8986 v +8990 s +v +aux +aux +8998 v +9003 v +9010 adv +v +9014 v +io +9018 p +9022 v +io +9025 v +9027 v +9036 v +adv +9040 v +9047 v +9051 v +adv +9054 v +adv +9058 v +9069 v +o +9076 v +o +9081 v +v +s +v +s +p +9088 s +v +9091 s +v +9094 v +9101 v +9105 v +v +9111 adv +9114 v +adv +9117 adv +v +o +v +9122 v +9125 adv +v +adv +adv +v +9134 v +io +9138 adv +io +9145 v +9149 v +io +9155 v +9157 s +v +9164 v +9167 v +9171 v +9179 v +v +9182 v +9191 v +s +9194 v +9197 v +9203 v +9206 v +vc +9215 v +9218 v +9223 v +9229 v +9234 v +v +s +9241 v +io +9244 s +v +v +io +s +v +v +p +9253 v +9257 adv +adv +p +9261 v +v +9270 v +v +9277 adv +v +9283 o +v +9286 s +adv +v +io +9291 adv +9296 v +o +v +9302 v +9306 v +o +v +9312 v +io +9325 s +v +9329 v +9331 o +adv +v +9335 v +9338 v +adv +v +9343 aux +9345 o +adv +v +adv +v +9351 v +9360 v +9370 v +adv +adv +v +9375 adv +9378 v +io +9381 v +9389 adv +v +9393 v +v +9411 v +9418 v +9422 v +v +9426 p +vc +9433 s +v +9436 s +9441 s +o +9444 s +9450 v +io +9453 s +p +s +vc +v +9459 v +9462 v +s +vc +9472 v +9474 v +9477 v +io +p +vc +9487 adv +v +io +9499 s +io +v +9503 s +vc +p +9511 v +9518 adv +v +o +v +io +9531 o +v +9543 o +v +9553 adv +v +9558 io +v +9561 s +vc +9567 v +9570 v +9575 v +s +9579 v +9581 o +v +9591 v +9596 v +9598 v +o +9602 v +v +o +v +p +adv +aux +9611 vc +p +s +9615 s +v +v +9620 v +9623 aux +9626 vc +9629 v +9637 adv +9640 v +9645 s +v +9649 v +v +o +9653 v +9658 v +o +9662 s +v +9667 v +v +o +9672 s +v +9679 v +o +9682 o +v +s +9689 v +9694 v +9696 o +v +s +9704 v +9709 v +9721 adv +v +io +9729 v +io +9732 v +9735 adv +v +s +9740 v +o +9744 v +9749 v +9758 v +9771 v +o +9779 v +9783 v +9794 vc +p +9800 aux +v +io +9806 v +9810 v +9813 v +9816 aux +p +vc +s +p +vc +9823 v +v +adv +9828 io +o +9831 io +o +9834 io +o +adv +s +v +aux +9842 v +o +9845 aux +s +9850 v +s +vc +9860 v +v +o +9864 v +9867 v +9872 v +adv +9875 v +9879 v +o +v +v +9884 adv +v +9887 v +9891 o +v +9894 adv +9899 v +s +9904 v +io +9908 v +io +v +9914 adv +9921 v +9923 v +o +9927 v +9929 adv +9932 v +9934 v +s +v +adv +9939 s +v +v +9943 s +v +9946 v +o +9949 v +io +9952 s +adv +v +9957 v +o +9960 v +9963 o +v +adv +adv +9971 v +v +9975 adv +v +9984 v +io +9987 v +9991 v +adv +s +v +o +9997 v +aux +v +10004 v +10006 adv +v +10009 adv +v +10015 adv +10020 v +o +10026 adv +v +o +v +10031 v +10034 v +10039 v +10044 vc +10047 v +o +v +io +o +adv +10054 v +io +10059 v +10065 v +10072 adv +10075 v +10080 v +10083 s +adv +v +v +o +10089 s +v +io +10098 v +io +10101 v +10106 v +10110 v +adv +adv +10114 v +10116 s +v +adv +10120 v +s +10125 v +io +10129 v +10134 v +10139 v +o +10145 v +10147 v +adv +10150 v +s +10154 v +10158 v +10162 v +10167 v +o +v +aux +10172 v +10176 v +o +10180 v +s +adv +v +aux +10191 v +10204 v +10208 v +io +10213 p +vc +10219 adv +v +o +v +10225 v +o +10229 v +10232 v +10234 v +10238 v +o +o +v +v +io +10252 v +10257 v +10259 s +p +vc +10268 v +o +v +o +10276 v +10278 v +io +10281 adv +v +10284 vc +10290 v +10297 s +v +o +10304 s +vc +10315 s +v +10324 o +v +10328 s +v +10335 v +10338 v +adv +10341 v +10349 v +10355 s +10362 p +v +10367 s +10374 v +10384 v +o +v +o +10389 v +10392 p +adv +vc +v +10408 v +v +10420 v +o +v +o +10425 v +10428 p +adv +vc +adv +10435 v +10439 v +v +10446 v +10448 v +10454 v +io +10464 v +10473 s +adv +v +10477 vc +10483 v +10488 v +10496 v +v +10499 v +10502 v +v +o +10506 v +io +10509 v +10512 adv +10519 adv +v +adv +adv +vc +p +10533 v +10540 v +10544 v +v +o +10553 o +v +v +10561 adv +v +v +10577 v +10582 v +o +v +10592 v +vc +adv +10602 v +io +10605 o +v +10616 o +v +10626 adv +v +io +10634 v +10642 o +v +v +adv +10654 adv +10664 adv +vc +10669 adv +v +10673 v +io +aux +adv +v +10684 v +io +10688 v +io +10693 v +io +10703 v +10710 s +v +v +o +10719 v +s +v +v +io +10729 adv +v +s +v +v +10736 v +10746 o +v +10749 v +10751 v +10754 v +o +v +v +10761 o +v +io +10765 v +10771 v +o +10776 v +io +10779 v +10783 v +10788 s +v +io +10794 v +o +v +v +v +10800 o +v +10803 v +10807 v +o +v +v +10814 v +io +10817 s +adv +v +10821 v +v +o +10827 v +10829 v +10834 v +10836 v +v +adv +10840 v +v +10847 v +adv +v +o +10854 v +io +10862 v +io +10865 v +o +10868 v +10871 v +10876 s +o +v +10880 v +10884 v +o +10889 adv +v +10893 v +io +adv +10902 v +io +10905 adv +v +s +10916 v +10918 v +10924 v +10929 v +10939 v +o +10944 v +o +adv +10948 v +adv +s +v +o +10954 v +10956 v +v +10965 s +v +v +10969 v +10972 v +10978 v +o +10981 v +10984 v +s +10992 v +10997 vc +11005 vc +p +11011 o +11014 v +s +adv +v +v +io +11021 adv +s +v +v +11028 v +v +io +11032 s +11037 v +io +v +11046 adv +v +adv +11050 v +io +11054 s +v +11063 v +o +v +v +io +11071 p +vc +11080 adv +v +v +11084 s +v +io +11088 s +v +11094 io +v +11097 v +11099 s +11103 v +adv +11106 v +11108 s +v +11114 v +11116 s +v +o +11125 v +v +v +adv +v +io +s +11135 v +io +11138 v +11142 v +o +11147 v +v +11152 adv +v +s +v +11161 vc +11167 v +11170 io +v +adv +11174 aux +s +v +io +v +aux +11182 v +11184 v +11188 s +v +io +adv +o +v +11197 p +vc +11203 v +11207 v +v +11211 v +io +o +11217 v +11219 adv +v +adv +v +adv +v +adv +v +v +11234 v +11239 o +v +io +11246 v +o +adv +v +v +io +11255 v +p +vc +v +v +11262 v +11264 v +io +11267 v +o +11272 v +v +o +11278 v +11281 v +v +11291 v +11296 v +io +11299 s +adv +v +11308 adv +v +io +p +vc +s +11317 v +11319 s +11326 v +11329 v +adv +v +11333 s +v +v +11337 v +11340 v +io +11344 s +p +vc +11350 s +p +adv +v +11356 v +io +aux +s +v +o +11363 v +o +11366 s +vc +p +11372 v +io +11375 v +io +11380 v +o +11386 v +11395 v +11401 v +11409 s +v +11428 o +v +11433 v +11437 vc +p +11440 s +p +11443 p +vc +11451 s +v +11455 v +o +11462 v +11470 v +o +11477 v +11481 v +11483 v +11487 adv +11489 io +v +v +11499 s +vc +p +v +io +11505 s +v +11508 adv +v +11515 v +adv +11521 v +v +s +v +11526 v +io +adv +adv +v +11534 adv +v +io +11538 s +o +v +v +io +v +11550 s +v +v +11560 v +11564 v +11567 v +11575 v +11581 v +adv +o +11585 v +11588 v +11590 o +v +11593 v +11600 v +v +11605 v +11611 v +11613 o2 +o +v +11618 v +11627 s +v +11631 v +aux +adv +v +o +11637 adv +v +adv +v +11644 v +11646 v +11650 v +11655 v +adv +o +v +v +11667 p +vc +11670 s +p +vc +adv +vc +11677 p +11681 p +11683 s +v +v +11688 v +11697 v +io +aux +v +11708 v +11714 v +o +11719 v +o +11725 v +11727 v +11729 v +11734 v +adv +v +adv +11747 v +11749 v +o +11754 s +v +io +o +v +v +io +v +11763 v +11769 s +11773 s +11782 v +11785 v +adv +v +o +v +v +v +11794 o +v +s +v +v +io +v +v +io +11807 v +11810 v +11817 adv +vc +s +o +v +11823 io +v +11830 v +11833 v +11841 v +o +v +v +11850 v +o +11855 v +adv +11858 p +vc +11864 s +v +11868 p +vc +vc +11875 s +v +11879 vc +p +vc +11889 adv +v +v +11893 v +11895 v +11903 v +s +11907 v +o +11912 aux +11915 v +11919 v +11921 s +v +v +v +v +o +11933 v +o +11936 v +11938 s +adv +v +v +v +o +11948 v +11951 v +o +11954 v +v +o +v +io +v +io +aux +11963 v +11968 v +11971 v +11976 adv +v +11979 v +o +11983 v +11987 v +11995 adv +s +v +12000 v +io +v +12010 adv +v +s +v +12015 s +12018 v +v +io +12023 s +io +v +o +v +12033 v +12035 adv +v +o +12039 s +v +12042 v +12044 v +12048 v +v +12053 aux +12057 v +adv +12061 v +12072 v +12074 v +12076 v +io +12080 v +12087 v +12093 v +12100 v +12108 s +v +o +12115 v +12123 v +adv +12127 v +v +v +s +12134 v +12136 v +12140 s +12145 v +s +12149 v +12153 v +p +vc +s +12160 v +s +vc +12172 v +s +12178 v +12188 v +12197 v +12201 v +io +v +12209 vc +12211 s +o +v +12217 v +adv +12226 v +o +12234 v +12237 o +v +12243 v +12248 v +s +12253 v +12255 v +io +v +o +s +v +12264 v +io +aux +adv +v +12274 v +v +o +12278 v +o +v +12287 v +adv +12290 adv +v +12295 v +12297 v +12303 v +12307 o +v +12312 adv +o +adv +12316 v +io +adv +adv +12322 s +v +12328 v +adv +12333 v +12336 v +v +adv +adv +v +12344 v +12347 v +io +12350 v +io +12353 v +o +12356 adv +v +12359 adv +12363 v +12369 v +v +12372 v +12376 v +12380 o +v +12385 v +v +12388 v +s +12393 v +adv +v +12403 v +12407 o +v +12410 s +io +v +12417 v +12420 v +io +v +o +s +12428 o +v +io +s +io +v +12437 o +v +12443 p +vc +12451 s +v +12455 v +12457 v +12460 v +io +12465 adv +v +o +12470 v +12473 v +12477 s +12480 v +12484 v +12487 v +adv +v +v +io +12494 adv +s +v +io +12501 o +v +12504 s +adv +v +s +v +12511 v +12514 v +aux +v +adv +v +12523 s +v +v +s +aux +12529 adv +v +12532 v +12535 v +adv +12538 s +v +v +adv +v +adv +v +v +12550 v +12555 v +12558 v +io +12563 v +io +12571 v +adv +12579 v +s +12587 adv +v +o +12596 v +o +12599 s +v +adv +v +adv +12605 v +o +12609 v +s +vc +p +s +v +o +12617 o +io +v +12621 v +12624 o +12626 v +o +12629 v +o +io +12633 v +12636 v +12641 v +12648 v +12653 v +12660 o +v +12663 o +v +12666 o +v +adv +v +12676 v +io +adv +12680 adv +v +12687 v +v +12695 v +12698 v +12701 s +vc +12705 v +v +o +12709 v +12714 v +o +v +12721 v +12724 v +12729 o +v +12734 v +io +aux +adv +v +o +12743 v +12746 s +v +io +12755 v +io +12759 adv +v +12765 o +v +12768 v +s +v +12776 v +s +12779 vc +p +12786 v +io +12789 v +12797 v +12799 v +12805 v +12810 v +12814 o +v +v +o +12824 v +12828 v +12832 v +12834 v +o +v +v +12843 o +v +12846 v +12849 adv +v +12853 io +v +v +12862 s +v +o +12869 v +12873 v +12875 v +12880 adv +v +v +adv +v +12887 v +v +12890 v +aux +12895 v +12902 v +12904 s +p +v +12911 s +v +v +12915 s +12921 s +12929 v +12939 v +12941 v +12945 v +12953 v +adv +v +12962 p +vc +12966 v +adv +vc +p +12971 v +12979 o +v +v +12989 v +12993 v +12995 o +v +13002 v +13005 v +13009 v +v +13012 v +v +adv +13016 adv +v +13021 v +io +aux +adv +v +adv +adv +v +13032 s +v +adv +13037 v +13040 v +13045 v +o +13052 p +vc +13062 p +vc +s +13066 p +s +adv +v +13072 o +v +13075 o +v +13080 v +io +13088 v +aux +v +13092 p +vc +13101 v +13103 adv +v +adv +13109 adv +v +13115 v +io +s +adv +v +v +v +o +io +13125 adv +13129 v +13133 v +adv +o +v +aux +v +io +13145 s +v +io +o +13150 v +io +p +13159 v +p +adv +v +io +13165 v +13168 io +13176 v +v +13179 v +o +v +13186 v +adv +13189 v +adv +v +s +13194 v +o +v +aux +s +v +13201 s +v +adv +v +o +v +13214 v +o +13220 vc +13228 v +v +13231 adv +v +o +v +13241 adv +13254 v +13265 vc +13267 s +v +o +13271 v +13274 v +io +v +adv +v +13300 vc +13308 v +13310 v +io +13315 v +s +vc +13330 vc +13335 p +13337 v +13340 v +13348 v +13350 v +13353 v +13358 v +13363 v +o +aux +p +13373 s +v +io +v +13398 s +vc +13405 s +p +adv +v +13413 o +13422 v +13427 v +13430 v +o +13434 v +s +adv +v +13443 vc +v +io +13448 v +io +13451 adv +s +13455 v +o +o2 +v +v +s +13464 v +13470 v +13480 s +v +o +o2 +adv +13487 vc +13489 s +v +v +io +o +13495 v +s +13501 v +o +adv +adv +13507 v +13514 v +13519 v +13528 o +v +io +13539 adv +v +13542 v +13544 adv +v +13547 v +13551 v +13558 s +13562 adv +v +v +o +13571 v +13574 v +13578 v +13583 v +13587 v +13606 vc +13610 p +13612 s +adv +vc +p +13617 p +vc +13625 p +vc +13630 adv +v +13636 p +vc +13643 adv +vc +p +13649 vc +13657 vc +13661 s +v +o +v +13666 s +v +o +v +13671 s +io +13678 v +13687 s +adv +v +13692 v +v +v +s +io +13702 v +13708 v +o +o2 +13713 v +v +o +13720 s +io +13725 v +13727 s +v +13732 p +vc +13736 s +v +13743 v +13748 s +p +vc +13757 v +13762 s +v +13767 p +vc +13771 s +v +13779 v +aux +13782 s +p +13790 v +13795 v +13799 v +13810 v +13814 v +13820 v +adv +13824 v +13828 v +13837 v +13840 s +io +13847 v +13857 v +13871 v +o +v +o +adv +v +13880 v +13886 v +s +io +13894 v +13903 adv +v +13911 v +adv +13918 vc +13923 p +s +io +13931 v +13933 v +13935 s +adv +vc +p +13940 adv +v +13947 adv +13951 adv +vc +13955 p +13957 adv +vc +p +13963 s +io +13970 v +13976 v +13982 v +13984 vc +13992 adv +vc +14002 v +io +14005 vc +14008 v +14012 s +v +14022 adv +v +14029 aux +14032 s +v +14049 v +14055 v +14061 v +14067 v +14083 o +v +14092 v +io +v +14101 aux +aux +14104 v +14108 v +14110 v +14113 adv +v +v +14121 s +v +14130 adv +v +aux +v +io +14139 v +io +14143 o +v +14149 v +v +14152 v +14159 v +14163 v +14165 v +14169 v +io +14176 s +v +v +io +14181 v +14185 v +io +14189 v +adv +14194 s +adv +v +14198 v +s +14205 v +adv +14211 v +v +io +adv +s +v +14218 p +14229 v +14232 v +io +v +14236 s +o +v +14240 s +v +14246 v +s +vc +14252 o +v +14255 v +v +14261 v +14263 v +14265 v +v +14268 adv +v +14273 v +s +14278 s +14282 v +14293 adv +v +o +14299 v +o +14313 adv +v +s +14317 o +v +14320 v +o +14325 v +14327 v +o +14332 v +14335 v +14342 v +14345 s +v +14348 v +14364 adv +v +14370 v +14376 v +14381 v +14386 v +v +adv +14393 v +14401 adv +v +v +14414 adv +v +adv +v +14422 s +14426 v +14429 v +14435 v +14437 adv +v +14446 v +adv +14450 s +adv +v +14462 v +14465 adv +v +14471 adv +v +14479 v +14484 adv +s +io +v +aux +p +14493 p +adv +v +14497 v +14502 v +14508 v +14510 p +14514 aux +v +io +14519 v +io +aux +14525 vc +adv +v +v +14532 adv +v +14538 v +14542 v +14545 p +vc +14554 p +vc +14558 adv +v +14563 adv +14572 v +14576 adv +v +14584 v +14593 v +14595 adv +v +14606 adv +v +14614 v +14619 v +14631 v +14639 v +14657 v +14661 adv +14665 vc +p +14670 v +v +14673 p +14676 adv +adv +s +14680 v +14683 v +14685 p +vc +14690 v +io +14695 v +14703 v +14709 v +14716 v +14724 s +v +adv +14735 adv +14738 adv +14745 p +vc +14773 v +s +14779 adv +v +14782 v +14786 v +o +p +vc +14797 adv +vc +s +14803 s +v +14806 s +v +s +v +14813 s +v +14816 s +v +14819 v +14821 adv +v +14828 v +14830 o +v +14834 v +14841 v +14843 v +14846 adv +v +v +14856 vc +p +14859 adv +adv +v +apposition +14867 v +14869 p +vc +14876 o +v +14885 v +io +14891 p +14895 s +adv +v +v +14902 v +14904 v +io +14910 v +14912 v +o +14916 v +14925 v +14930 v +v +14941 v +v +14950 adv +adv +v +14956 adv +adv +v +14960 v +o +14969 v +p +vc +14979 adv +v +14987 s +v +14992 v +15001 vc +p +15004 s +p +15009 v +15012 adv +v +15016 o +15020 v +o +15030 v +15033 v +s +15036 v +15040 s +v +v +15045 v +15048 adv +v +15055 v +15064 v +v +io +15075 v +15077 v +15080 v +adv +adv +15085 v +15089 v +adv +15093 v +15095 v +io +15098 v +s +v +v +15107 v +15114 v +15118 adv +v +15124 v +aux +aux +v +io +15130 s +v +v +15134 v +io +adv +v +o +15140 v +15142 adv +v +15151 s +v +v +15158 v +io +15161 v +15165 io +v +15170 io +o +15173 io +o +io +15181 v +adv +v +15188 v +v +15193 v +15196 adv +15200 v +15207 v +v +v +o +15212 v +15222 v +15229 v +o +15234 v +15239 v +v +15244 v +aux +15248 io +v +aux +15254 v +v +io +15260 adv +15267 vc +p +15271 o +v +v +15280 v +15286 v +aux +15290 io +v +aux +15296 v +v +io +15302 adv +15309 vc +p +15313 o +v +v +15323 v +15329 v +v +aux +v +o +15335 vc +15338 v +adv +adv +v +15343 v +adv +adv +v +15348 v +v +v +15357 aux +v +15362 v +15366 v +io +15372 v +15374 v +adv +adv +v +15379 v +adv +adv +v +15384 v +s +v +15394 v +s +v +15402 v +15408 v +15410 v +15416 v +15418 v +15420 v +15423 adv +v +15426 o +v +v +15435 v +15441 p +vc +15452 v +15467 adv +v +15474 v +15481 v +o +15488 v +15496 v +15507 adv +v +15515 v +15517 v +15521 v +15523 v +io +15530 v +15532 v +io +v +v +15537 v +o +p +vc +15542 v +o +p +15546 v +o +v +15550 v +o +15554 vc +15556 v +15559 adv +v +io +15564 v +aux +15567 v +s +v +15571 v +15573 v +15575 v +15578 v +s +p +15582 v +15584 p +15586 v +15589 v +s +v +15596 v +15600 v +15603 v +io +15606 v +io +15609 adv +v +15618 io +v +adv +v +15626 v +v +15636 v +15644 v +15646 adv +v +io +v +v +15652 adv +v +o +p +vc +15658 adv +v +o +p +15663 adv +v +o +15671 adv +v +o +adv +v +15678 v +aux +15681 v +s +v +15685 v +15696 adv +v +o +adv +v +io +v +15704 v +io +15707 adv +adv +v +15714 adv +io +v +15718 v +s +15730 v +15732 v +15739 v +15743 v +15750 vc +15756 v +15759 v +adv +v +15775 vc +p +15778 v +15782 adv +v +15785 v +15787 v +adv +15793 adv +s +v +15802 vc +15810 v +adv +s +v +15818 v +15822 s +v +15825 v +15828 v +v +15836 v +s +v +adv +15841 v +io +15844 v +15847 v +io +adv +o +v +15857 v +15861 adv +15864 v +15868 o +adv +adv +v +15873 s +v +15884 v +o +v +15888 v +io +15891 adv +v +15900 v +15902 o +v +s +15908 adv +15913 vc +15916 v +15920 v +v +o +io +v +s +io +v +o +15930 s +v +io +15938 v +o +15941 o +v +15948 v +15953 v +v +adv +v +io +v +15962 s +v +v +15972 v +io +15976 v +15980 p +vc +15984 v +15992 v +15996 v +io +16001 v +16005 s +v +v +16013 v +s +v +16017 v +io +16023 v +o +16026 v +adv +v +v +io +16034 s +vc +aux +16038 s +v +v +16042 v +16050 s +o +v +16058 v +16060 v +16064 s +16074 v +p +vc +adv +16079 adv +v +16085 v +16088 v +o +v +16092 s +vc +aux +v +io +s +v +16100 v +s +16104 v +o +16107 v +v +16110 v +16113 v +v +v +s +vc +16122 v +o +16125 v +v +io +v +v +16132 s +16134 s +vc +16144 v +16149 v +io +16153 v +16167 o +v +16171 adv +16179 v +v +16186 adv +v +io +16193 v +16201 v +v +16206 v +16214 v +s +v +adv +16222 v +16225 v +io +16228 s +v +16232 s +adv +v +v +io +16240 v +io +16248 s +v +adv +v +o +v +io +16258 v +s +16262 v +16265 o +v +adv +16272 v +adv +v +16281 vc +p +16284 v +16287 v +adv +16290 adv +v +adv +v +16295 v +16303 v +v +16306 v +adv +v +io +p +vc +16317 v +adv +16320 v +16324 v +adv +v +16336 p +vc +v +16347 s +v +16351 s +16353 v +16358 v +s +v +16362 v +16365 adv +adv +v +16370 v +16373 v +16375 v +16377 adv +v +16384 p +16388 p +adv +16392 v +v +v +16398 adv +v +s +v +16403 adv +o +v +v +16411 v +adv +v +s +v +16423 v +o +adv +v +v +16433 v +adv +adv +v +16441 v +io +v +adv +16446 v +aux +v +16456 v +16460 v +v +aux +v +16465 v +o +16468 adv +s +v +aux +16476 v +16495 v +o +v +io +o +v +16502 o +v +s +vc +v +o +16509 adv +v +16513 v +v +aux +16517 v +o +16522 v +io +aux +16527 v +adv +v +v +16537 v +o +16540 aux +16545 v +16548 v +16553 v +16558 v +16562 adv +v +io +16567 v +16578 v +o +16582 v +16584 v +16586 adv +v +v +16593 v +io +adv +16601 adv +v +16606 adv +v +v +16613 v +16621 v +16626 v +o +16633 v +v +16636 adv +v +o +16642 v +16644 v +16649 adv +16653 v +o +v +16658 v +16661 v +16666 adv +16672 v +16676 v +o +16686 v +adv +v +16692 v +16702 v +o +16708 o +v +16711 adv +v +16715 v +16717 adv +v +s +v +s +v +v +v +16733 v +16735 v +16738 v +io +o +v +o +s +adv +v +16749 v +16753 v +io +v +o +16761 v +16763 io +v +16766 s +vc +16774 v +io +16778 s +v +16781 v +io +16785 v +16790 v +16796 v +16802 adv +16805 v +16809 v +v +adv +adv +16815 v +aux +adv +v +16821 s +adv +v +16825 s +v +v +p +adv +vc +adv +v +16838 v +o +16841 s +v +v +v +io +aux +p +vc +16850 v +o +16855 v +adv +16861 v +adv +16865 v +16868 vc +16874 s +v +16878 v +adv +v +o +v +16884 v +16888 v +o +s +16892 v +16895 s +vc +16902 adv +v +16907 adv +v +16914 v +16916 v +v +16920 adv +16925 vc +16931 o2 +o +v +adv +v +v +16938 v +16940 adv +v +16945 adv +s +v +16949 v +16955 v +16958 s +v +adv +v +o +16964 v +adv +v +adv +16969 s +v +o +v +16985 v +o +16988 v +o +v +16992 v +16996 adv +16999 v +o +v +17003 v +v +v +17013 v +v +v +17019 s +v +p +17024 s +v +17027 v +17033 v +17035 v +v +17040 v +17043 v +adv +v +v +o +17054 vc +17056 o +v +v +17070 vc +17079 adv +v +17082 v +17087 v +17089 v +17096 v +o +v +17103 v +o +17111 v +io +s +17117 v +17122 v +o +17126 v +s +vc +17136 v +s +v +17142 v +s +17149 o +v +adv +v +io +17156 adv +v +o2 +o +v +17162 adv +v +io +17170 v +17173 adv +17177 v +17180 v +17185 o +v +17188 v +adv +17192 vc +p +17195 v +s +v +io +17201 v +o +v +io +17209 vc +p +17212 v +17216 v +o +17219 v +s +17224 v +17230 v +p +17238 o +v +adv +17251 v +17255 v +17261 v +17263 v +17266 v +io +v +17273 v +io +17276 s +v +17280 v +io +17285 o +v +17289 vc +p +v +s +v +17295 s +v +17300 v +17302 s +adv +v +v +v +17310 v +17312 o +v +17315 adv +s +v +v +o +v +17326 v +p +vc +17333 s +v +17336 v +17340 v +17351 adv +v +io +17359 v +v +17362 v +adv +17368 v +17374 v +17381 v +o +17385 v +io +17388 v +o +17392 v +17398 o +17404 v +17407 v +o +v +v +17415 v +17418 v +17422 v +17429 v +o +v +o +17436 v +o +17442 v +o +17446 v +17448 v +v +17452 adv +p +o +v +17457 v +17462 v +17465 vc +17467 s +17472 v +io +v +17478 v +17480 v +adv +v +v +17485 v +o +v +17491 v +o +17494 v +v +o +adv +17499 v +17507 v +s +vc +17515 adv +v +17521 s +17525 s +17530 v +v +o +v +17538 v +17540 v +17547 v +v +o +17551 vc +17556 v +17560 adv +17563 v +17569 v +o +v +o +v +adv +v +17578 vc +v +adv +17585 v +17588 v +17592 v +adv +17595 v +o +17598 v +17602 vc +17610 v +17613 v +o +17619 s +v +17633 v +17638 v +aux +aux +adv +v +s +vc +17651 o +v +17656 adv +v +v +v +17661 o +v +s +17665 adv +17669 v +17671 v +o +17674 v +adv +17677 v +io +v +o +17684 v +v +v +17688 v +s +v +o +17695 adv +v +17699 v +17703 aux +17708 v +17718 v +17722 v +17726 v +17731 v +17733 v +17735 v +17743 v +17749 v +io +17758 v +17761 v +17766 v +v +adv +v +adv +17773 vc +s +17776 vc +p +17782 v +s +v +17790 v +o +17794 vc +17813 s +v +v +17820 s +p +17825 v +17828 s +v +17832 v +17837 adv +17840 v +v +17843 v +17848 v +o +17854 v +o +17861 o +v +17867 v +17874 v +17876 adv +17892 s +vc +17897 v +17905 v +aux +v +17912 v +adv +v +17918 v +17920 v +v +17928 adv +adv +v +17933 v +o +17936 v +17939 v +17944 vc +17948 p +17951 v +io +17955 v +o +v +v +17960 v +17962 s +v +v +17967 v +17977 v +17981 v +17989 v +17993 aux +17996 v +18000 v +18004 v +v +18009 v +18013 vc +18023 p +18031 v +18033 v +18035 vc +18039 v +18042 v +18045 adv +v +s +18049 v +18053 v +v +adv +vc +p +18059 v +18061 v +v +v +18066 adv +v +18069 adv +v +v +18076 v +18081 aux +v +adv +18087 adv +o +v +aux +v +io +18094 v +adv +18104 v +v +18110 aux +s +v +o +v +v +18117 s +v +v +18124 v +o +adv +v +io +18131 adv +v +v +v +18139 v +18143 adv +o +v +18147 v +s +aux +18153 v +18157 v +18162 v +18164 v +18169 o +v +18173 v +18176 v +v +18182 adv +v +v +o +s +v +18190 v +s +18195 s +v +18198 o +o2 +v +18202 s +v +o +v +18207 v +18209 v +18223 v +18230 adv +v +io +18236 v +o +v +18240 s +v +18243 v +18246 v +io +v +v +io +18260 v +v +18265 v +o +18279 v +s +v +18283 o +v +io +18287 aux +s +18291 vc +18308 v +18314 aux +v +18322 s +v +18328 v +18332 v +18336 o2 +v +18341 v +18344 v +18348 v +18355 v +18367 v +18374 v +18379 vc +18382 v +18393 v +18399 v +v +v +18407 adv +adv +vc +p +v +v +18418 s +v +o +adv +18423 s +v +o +18429 v +18434 v +s +18441 v +18448 adv +v +18453 v +v +18462 v +18466 s +v +18471 s +vc +18480 v +18482 adv +18485 o +v +18491 vc +18497 v +18502 vc +18509 v +o +18514 v +18517 v +18523 v +18529 v +18531 v +18535 v +18540 v +18542 v +18547 v +18553 v +18560 v +18565 vc +p +18568 v +io +18572 v +18576 v +s +vc +18582 adv +v +18586 v +o +18589 v +adv +v +18602 s +18606 v +18610 adv +v +o +18614 v +18625 v +18629 v +18633 adv +18636 v +18640 v +18642 v +18650 o +18652 o +v +18660 adv +vc +18671 v +v +s +18679 v +v +o +v +o +p +vc +18691 v +o +18695 v +18697 v +18705 v +o +18708 v +18711 v +18715 v +s +18718 v +s +v +p +vc +s +18733 v +18735 v +o +18738 v +18742 adv +adv +18751 adv +18755 v +v +18771 v +v +18774 adv +v +io +18780 v +v +o +v +18787 v +o +18792 v +o +18795 s +v +adv +v +18801 v +18806 adv +v +18810 v +18821 v +18823 adv +v +18830 v +18832 adv +v +v +18838 v +o +18841 adv +18844 v +v +18847 v +18851 adv +v +18854 v +o +18862 v +o +18865 v +io +18868 s +v +o +18872 v +io +v +adv +18878 v +18883 v +18887 v +18889 v +v +18902 v +18904 v +18907 s +v +o +18911 v +v +io +18916 v +v +o +v +18921 v +v +18926 v +18928 v +io +v +v +18933 adv +v +18940 v +18942 v +o +adv +v +o +18948 v +io +v +io +o +v +18955 v +o +v +18961 v +18966 o +v +s +18973 s +v +v +v +o +18979 v +18983 adv +s +v +adv +18989 v +18991 adv +18995 vc +18997 v +19000 adv +19002 v +adv +19008 v +19012 vc +19014 v +s +19017 adv +v +19025 v +io +19030 v +v +19035 v +19039 adv +v +v +io +19046 v +19049 p +vc +19052 v +v +19056 adv +19059 v +19063 v +19067 v +19070 aux +v +19076 vc +19080 adv +v +19083 v +19088 adv +s +adv +v +v +s +v +v +o +19098 adv +19103 adv +19106 v +19111 adv +v +19115 v +io +adv +o +v +19124 s +vc +p +v +19130 v +19135 v +v +19138 v +19143 v +19146 v +19148 o +v +19154 v +o +19159 v +19162 io +v +v +v +19170 v +19176 v +19178 adv +v +19182 v +19186 v +s +19189 v +19192 v +19194 adv +adv +v +19198 v +adv +19207 v +19211 v +o +19214 v +v +19220 v +19225 v +io +v +o +19230 v +v +o +19234 v +v +s +19246 v +19254 vc +p +19257 v +o +19264 v +19266 v +19272 v +19282 v +19284 v +19287 v +io +19292 v +19294 v +19297 adv +v +19300 v +v +o +19304 o +19315 v +19317 v +io +19329 v +19334 adv +v +19337 v +io +19342 v +19348 adv +19353 vc +v +19357 v +19362 adv +v +v +19366 v +s +19369 v +19375 adv +v +19381 s +19385 v +19391 adv +v +19404 v +19406 s +v +19415 adv +v +19424 v +19435 v +s +19440 v +19448 v +o +v +v +19457 v +io +aux +adv +v +19464 s +adv +v +19468 v +io +adv +v +o +v +s +19476 o +v +19479 v +19486 v +19500 v +o +v +adv +v +19506 adv +19510 v +19515 vc +19517 v +io +19524 v +19526 adv +19533 vc +19543 v +adv +19548 vc +p +19551 v +v +19556 v +o +19561 v +o +19564 v +o +19567 v +19574 v +v +19580 v +io +v +19585 o +v +19588 v +o +v +19592 v +19594 s +v +19597 v +o +19601 v +19608 v +19611 v +19615 v +19617 v +19622 v +19625 adv +19629 o +v +19634 o +v +19643 v +19653 v +19676 v +o +v +v +19683 v +19688 s +v +o +19695 adv +v +o +19699 o +v +19702 v +adv +19705 o +v +s +v +o +19716 o +v +v +adv +19721 v +v +19724 s +vc +19731 adv +v +o +19735 adv +o +o2 +v +19740 v +19745 v +o +v +s +19750 v +19754 v +o +19757 vc +19762 v +o +v +19766 v +o +v +19772 v +19776 v +o +19780 o2 +19793 v +io +o +19797 s +vc +19825 s +adv +v +o +19830 v +19834 v +adv +19839 adv +v +s +adv +o +v +19846 v +19850 v +v +o +19854 v +19856 v +19863 v +v +19866 o +v +19875 v +19879 v +o +19883 v +io +adv +v +s +o +v +19892 s +19895 v +adv +v +v +19904 s +19907 v +adv +v +19913 v +19918 v +19922 v +19924 v +v +19927 o +v +19930 adv +v +s +19938 v +19942 v +19944 adv +adv +19948 v +19950 adv +19954 v +19956 v +io +19959 v +19971 o +v +19975 s +v +19982 adv +v +o +19989 p +vc +19994 v +19997 v +19999 v +20008 adv +v +v +20013 v +o +20016 v +20019 s +20021 v +io +aux +20035 adv +v +o +20039 v +io +v +p +vc +20051 v +20055 adv +v +v +v +20067 s +v +20073 s +20080 vc +20082 adv +v +v +20089 v +20095 s +20098 v +v +20113 vc +20115 v +o +20119 o2 +20121 v +io +20127 v +aux +v +20131 v +v +20134 v +20137 v +20139 s +v +20145 v +20149 v +o +20152 s +v +20157 adv +adv +v +20163 adv +v +20167 adv +v +20173 v +20176 v +20180 adv +v +o +v +20185 s +v +20191 v +20195 v +o +20198 o +adv +v +20202 s +v +20210 v +o +20216 v +20226 v +s +v +o +v +v +20234 v +20237 v +o +20248 v +io +io +v +20266 v +20268 v +v +20271 adv +v +20274 v +v +20277 adv +v +adv +adv +v +20283 v +io +20286 v +io +adv +v +20294 adv +20298 v +20300 v +20303 v +20305 p +vc +20311 adv +v +20317 v +adv +v +20323 v +20327 v +20331 vc +adv +20337 v +20339 s +20341 v +20344 adv +20347 v +o +20350 adv +v +o +20356 p +vc +adv +v +20366 adv +v +20369 p +vc +20375 v +s +vc +20381 v +20398 v +v +20403 p +vc +20406 vc +20413 v +20415 s +v +20420 v +20422 v +20432 v +io +20436 v +20443 v +20453 v +20455 adv +v +20460 adv +20462 v +20464 v +s +20468 v +20472 s +v +o +v +v +20478 v +io +v +o +v +20486 v +v +io +20490 v +io +20493 s +v +v +io +20498 s +adv +v +20502 o +v +v +20508 v +p +vc +20516 s +v +20537 adv +v +s +adv +20543 v +adv +o +adv +o +adv +p +s +20556 v +20559 adv +v +20564 v +20568 v +adv +v +20579 o +v +20584 s +20586 v +20590 p +vc +20601 v +v +20604 vc +p +20610 v +20614 v +20619 v +20628 v +io +20633 v +v +20638 adv +v +io +20647 v +o +20650 v +io +20656 s +v +v +20663 v +20666 v +o +20669 vc +20676 vc +20680 v +20687 v +20692 adv +v +20697 s +vc +20705 v +20707 v +o +20710 v +io +aux +20714 v +adv +20717 v +20719 v +v +20724 v +20727 v +v +20730 v +20734 v +20738 v +io +adv +p +vc +adv +adv +adv +v +o +20749 v +20753 v +20757 p +s +vc +20767 v +o +20770 v +20782 v +s +20787 adv +v +o +20797 s +20800 v +20807 adv +s +v +o +v +20814 s +adv +20819 v +20821 v +20829 v +20831 s +v +o +v +20851 v +o +adv +20855 v +20860 v +20862 v +o +20865 v +20868 v +s +20879 v +o +20883 adv +o +v +20887 v +io +20893 v +20898 v +o +p +20904 v +io +p +20910 p +vc +20913 v +o +adv +20917 adv +o +v +20924 vc +adv +20932 v +20934 v +o +v +v +o +20945 v +20947 v +io +20950 v +20955 v +20960 v +20972 v +20978 v +o +v +20982 v +20991 v +v +p +vc +20996 v +20998 v +21003 v +21005 v +21007 v +21010 v +v +21013 v +21015 v +21017 v +io +21020 v +adv +v +21024 v +21030 v +v +s +v +21039 v +s +21044 v +o +21047 v +21051 vc +21054 v +o +21057 v +io +v +21068 v +io +o +21073 io +v +21076 v +o +21079 v +21081 v +v +21086 o +v +io +21092 s +v +21095 v +21101 adv +21105 v +21111 vc +21116 v +21120 adv +p +21123 v +o +v +21131 v +o +adv +v +21139 p +vc +21142 v +v +21146 io +21148 v +21150 v +21152 v +21156 v +o +21161 v +o +21165 vc +21172 o +v +21178 v +21184 o +v +21187 adv +21191 v +v +21197 v +21201 adv +v +21207 v +21210 v +21215 v +21217 adv +v +21225 v +21229 v +21234 adv +21237 v +21244 v +v +21249 v +s +v +21256 v +io +21261 v +21264 v +o +21267 v +s +o +v +21272 v +v +21275 o +v +21283 v +s +v +adv +v +21289 v +adv +21292 v +io +21298 s +v +io +aux +21305 v +o +v +21311 vc +p +21317 adv +s +v +v +21324 v +21329 v +adv +adv +v +21338 v +21341 v +v +21345 adv +v +adv +v +21350 adv +v +s +21355 v +21357 adv +21368 v +21375 v +21381 adv +21383 v +v +io +adv +21392 adv +v +21395 v +21397 v +o +21400 s +v +o +v +21416 v +p +vc +21422 v +21427 v +io +aux +v +s +21436 io +v +v +21440 adv +v +21445 v +21447 vc +21451 v +adv +21456 v +io +adv +21460 s +v +o +21464 v +v +io +v +21469 v +adv +21472 v +21478 v +o +21484 v +s +v +v +21494 v +v +v +adv +io +s +21501 p +21505 v +io +21515 v +21517 s +vc +21536 vc +21540 adv +21544 v +21548 v +io +21553 adv +vc +s +p +21558 adv +21574 adv +v +adv +v +21581 adv +21584 v +21587 v +21589 v +21595 v +21598 adv +v +21601 v +21605 v +o +v +21611 v +io +21619 v +io +21622 o +v +21627 adv +o +adv +adv +o +adv +o +adv +21638 o +21640 v +o +21643 adv +v +21648 v +io +21651 adv +v +21655 adv +v +21659 v +adv +21665 adv +v +o +21669 v +o +v +adv +v +21685 v +v +21688 v +21692 v +21694 v +adv +21699 v +21701 v +21706 p +vc +21712 v +21716 v +v +21723 v +21729 s +v +21732 p +vc +21735 s +v +21738 p +21744 v +21747 v +o +s +v +apposition +s +v +21758 v +v +21763 v +o +21776 o +v +21779 v +21785 adv +v +adv +v +21797 v +o +21800 v +o +v +21804 adv +v +21809 v +21812 v +o +21819 v +o +21822 v +o +adv +v +21827 adv +o +v +21831 v +21835 s +21839 o +v +21853 v +21860 v +v +21866 v +21870 v +21873 v +o +21876 o +v +21879 v +io +21882 v +io +21886 o +v +v +io +21896 v +v +21901 o +v +21904 s +v +21910 v +21912 v +adv +21919 v +v +v +21923 adv +v +io +21934 p +vc +21943 v +adv +v +v +o +21949 adv +v +o +21954 v +v +21960 v +v +o +21967 v +21974 v +o +21981 v +o +21987 v +21991 v +21993 v +21998 v +o +22003 v +22010 v +io +22013 o +v +22016 o +v +22019 v +io +v +22030 v +adv +22033 vc +22035 v +22038 v +p +22041 adv +v +v +22045 v +22055 v +s +v +22059 v +s +22062 adv +22067 v +adv +22070 v +adv +22073 v +v +22078 v +22082 vc +22085 adv +v +o +22089 v +v +o +o2 +22094 adv +s +p +vc +v +io +22103 v +22105 p +vc +22110 adv +s +p +v +o +22116 v +22123 v +io +o +v +22128 s +v +v +io +v +io +s +v +22137 v +io +v +v +22145 v +io +v +22149 s +v +io +22154 v +v +v +22158 v +v +22165 v +io +v +o +22176 v +22185 v +22193 v +22197 v +22199 v +22203 v +22207 v +io +22213 v +io +22216 v +s +22219 v +22221 v +22231 vc +22233 v +22239 adv +v +22244 v +22249 v +22256 s +v +22261 v +o +v +22267 v +22269 s +v +vc +22279 s +p +22285 v +s +v +22290 v +22292 vc +22295 p +adv +22302 v +22305 v +22310 v +v +adv +22314 s +v +s +22320 v +v +22323 p +vc +22326 v +22328 s +o +v +22332 v +22334 s +adv +v +22340 v +io +v +s +vc +adv +v +22348 v +22355 v +22359 adv +22364 v +22367 v +22378 v +22382 v +22386 v +22388 v +s +22393 adv +v +o +v +22402 v +22407 adv +v +v +22411 v +22413 v +22417 v +22429 v +22431 v +22433 v +o +22436 adv +22442 v +22445 s +v +o +v +22450 v +22459 v +22463 v +22471 s +vc +p +v +22485 adv +adv +v +22490 adv +v +v +22501 adv +v +adv +v +22506 s +p +vc +o +v +v +22519 v +o +22528 adv +v +22541 v +22545 s +v +io +adv +v +s +22556 v +22563 o +v +22569 adv +v +22574 adv +v +o +v +o2 +22581 v +22586 v +22592 v +io +adv +v +22604 v +22606 s +v +v +22618 v +22622 adv +v +22625 s +v +22628 v +s +22636 s +vc +p +22640 o +22643 v +adv +v +s +o +v +22654 v +22662 o +v +22668 v +22670 v +adv +22674 v +io +v +o +s +22680 v +p +vc +22686 v +22689 s +v +v +o +22698 v +vc +22701 v +22706 v +22712 v +o +22720 v +io +adv +22725 p +vc +adv +v +22732 adv +v +22737 adv +v +o +v +22743 v +22756 v +v +22762 v +22768 v +s +v +22784 v +22802 adv +v +22805 v +22809 adv +v +v +22817 v +22820 s +v +v +22824 adv +v +v +22828 adv +v +22837 v +22840 v +v +22849 vc +p +p +22855 v +o +22860 v +22866 v +io +v +adv +v +22874 adv +vc +p +v +22885 v +22887 s +v +22890 v +io +aux +aux +22900 v +22907 v +io +22913 v +v +22922 v +22927 v +22930 v +22937 v +22939 adv +v +22945 v +22959 v +io +22965 v +o +22968 v +io +22973 v +o +22980 v +22989 v +v +22995 v +22999 v +23001 v +io +v +s +vc +v +23008 v +23013 adv +v +23021 v +adv +23024 v +io +23027 io +v +23030 o +io +v +s +23036 v +23038 adv +v +v +adv +o +v +adv +v +23048 v +23050 s +v +23056 adv +23059 v +23061 adv +v +o +v +v +23068 v +io +v +23075 adv +23078 v +adv +23081 adv +v +o +v +23087 v +23093 v +23102 vc +23104 v +io +23110 adv +v +s +o +adv +v +adv +23120 v +o +23124 v +23126 s +v +o +23130 v +23133 v +23138 v +23142 v +v +23145 v +23150 v +23152 v +23156 v +23160 v +o +v +23165 v +23167 v +23169 v +23171 v +23177 vc +23181 v +o +23184 adv +v +23193 v +23199 v +23203 v +v +adv +v +23209 o +23213 v +o +23216 v +23220 v +adv +23225 v +o +23228 v +io +23231 v +23235 s +23237 v +o +adv +v +v +23246 v +v +o +23251 adv +23254 adv +v +23262 v +io +v +v +v +23277 v +23281 o +adv +v +23285 v +v +io +adv +v +23291 o +adv +v +adv +23298 v +v +23303 o +v +adv +v +23308 o +v +adv +v +23313 adv +v +23319 v +23327 v +v +io +o +23341 v +23343 v +o +23346 v +io +adv +v +23351 v +23355 v +io +o +23359 v +o +23362 o +v +23365 v +23370 v +o +23376 v +23381 v +23384 io +v +o +23388 o +v +23391 v +v +v +23399 v +v +adv +adv +v +23411 v +23413 v +23415 v +adv +o +23419 v +o +23424 v +adv +23429 v +23431 v +23448 v +23452 v +io +p +s +vc +v +23461 s +v +io +v +23470 s +o +23473 s +23479 s +v +o +23483 s +p +s +vc +v +v +23491 v +io +s +vc +23498 v +io +23501 io +v +23506 v +v +o +23510 v +23515 o +v +23518 v +23529 v +23534 v +23536 adv +23539 v +23543 v +o +v +v +o +23549 s +v +23552 v +23556 v +o +23559 v +v +23563 aux +23566 v +23575 v +23582 v +io +23585 s +v +23589 v +v +o +23593 v +23598 v +o +23602 s +v +23607 v +v +o +23612 s +v +23622 v +o +23625 adv +v +o +v +23633 v +23638 o +v +s +23647 s +v +23667 v +o +23670 v +23683 v +io +23686 v +io +23689 v +23692 adv +v +s +23697 v +o +23701 v +23706 v +23713 v +23724 v +o +23731 adv +23733 v +23740 vc +v +23744 adv +23749 adv +v +adv +v +23754 v +io +s +23765 v +23768 v +23771 aux +p +vc +s +p +vc +23778 v +23781 io +o +23784 io +o +23787 io +o +23790 adv +v +o +v +23795 p +vc +23798 v +s +v +o +23803 v +s +23808 s +vc +23815 v +o +23818 adv +v +adv +o +v +23826 adv +23830 v +s +23835 v +io +23838 io +o +v +v +23851 v +23855 v +23858 v +p +vc +23864 v +23866 v +o +v +adv +v +23874 v +s +v +adv +23879 s +v +io +23883 s +v +adv +v +o +23889 adv +v +23897 o +v +23900 v +23902 v +io +23907 v +23909 v +io +o +v +23914 v +23918 v +23922 v +23928 s +v +23933 adv +23937 v +o +v +23941 v +v +o +23945 v +o +o +v +23952 v +io +23958 aux +v +23965 v +23970 adv +o +v +v +o +23976 v +23978 v +23982 v +23984 v +23989 o +v +23992 adv +v +23995 s +v +io +v +24006 vc +24009 v +o +v +o +24016 v +o +24021 v +o +24025 adv +v +o +24029 v +24033 v +v +24036 v +24042 v +24044 s +v +adv +24048 s +v +24053 adv +24057 o +v +24063 v +o +24067 o +v +v +o +v +24077 v +io +24081 v +s +p +24085 v +adv +v +24092 v +v +v +24101 v +24103 v +s +v +24110 v +io +24117 s +v +io +v +24124 adv +v +24129 v +24131 adv +v +v +24135 vc +24141 v +24143 v +24147 v +24151 v +o +24154 v +24156 v +s +24165 v +o +adv +s +adv +v +v +o +24174 v +io +24181 v +v +24184 adv +24187 adv +v +v +24194 adv +v +24197 s +v +24200 v +24205 v +io +24212 v +24217 v +o +24220 v +24224 v +24226 s +v +24231 v +o +v +24235 v +24242 vc +v +o +o +24249 v +24251 s +v +24256 v +24260 s +p +24263 v +v +24268 v +io +24271 s +v +p +vc +vc +24282 v +o +v +o +24290 v +o +v +io +24295 s +24300 v +24305 o +v +24309 s +o +v +adv +o +v +24317 v +o +v +io +24323 aux +v +s +24330 v +o +s +adv +v +o +24337 v +o +24340 adv +v +o +24346 v +adv +v +o +24351 p +vc +s +v +o +24361 v +adv +v +o +24366 s +adv +vc +24373 vc +24376 s +v +o +24384 p +vc +24387 v +io +24392 v +24398 s +v +24405 v +p +vc +adv +adv +24411 v +24419 v +24425 v +o +24430 v +o +p +vc +s +adv +v +24444 v +v +24459 v +o +v +o +p +vc +s +v +24470 adv +24475 v +v +24485 v +o +v +o +p +vc +s +adv +v +24502 v +v +24507 adv +24511 adv +v +24516 adv +v +24519 s +adv +v +p +24529 p +vc +24533 o +v +v +24538 o +24540 v +24544 adv +v +v +24557 v +adv +s +24564 v +adv +v +o +24569 v +s +v +o +24574 v +adv +o +v +v +o +24581 s +v +v +io +o +io +v +s +24590 s +v +v +s +24596 v +24598 v +24602 v +io +24608 v +io +24620 v +o +24624 v +s +24633 vc +24641 vc +p +24647 o +24650 v +s +adv +v +24658 adv +24663 v +o +24666 v +io +24669 s +v +24675 v +o +v +24682 s +v +24687 v +o +v +24691 v +io +o +24695 o +v +24700 v +o +24703 v +24706 v +24708 v +io +v +24713 v +24716 adv +v +o +24722 vc +24728 v +io +24731 s +adv +v +24739 s +24742 v +24746 v +o +v +v +24755 v +s +24759 s +v +24762 v +o +v +o +24768 o +v +24773 v +24777 v +io +adv +o +v +o2 +s +p +24786 adv +24792 v +adv +v +adv +v +adv +v +adv +v +adv +v +v +24811 s +v +io +aux +24817 v +24824 v +o +v +o +24829 v +io +s +o +v +v +o +v +v +24839 v +24843 v +o +24848 v +v +o +24852 s +v +24857 v +v +24865 v +24868 v +24877 v +24883 v +24887 v +24895 adv +v +v +io +aux +24902 vc +24908 v +p +vc +s +24917 v +24919 s +24925 v +24927 s +adv +v +v +24934 s +v +v +v +o +24941 v +24944 p +24946 adv +24950 s +p +24955 v +24958 v +io +aux +s +v +o +24965 v +o +v +24971 v +io +p +vc +s +v +24997 adv +v +adv +25023 v +25029 vc +p +25034 p +25036 vc +25040 v +25046 o +25050 v +25053 v +v +25056 v +adv +25060 v +io +v +25064 v +adv +v +25068 aux +v +25077 v +25084 v +o +adv +25088 v +o +25093 v +o +25096 v +o +25099 v +o +25102 v +25107 v +25109 v +adv +25117 v +io +aux +v +25123 o2 +v +o +v +io +25129 s +v +io +v +o +s +v +io +25138 s +v +io +v +io +25144 s +25149 s +25152 v +25160 v +io +adv +v +o +v +v +v +25170 o +s +v +25176 adv +s +v +v +25181 s +v +io +v +25188 v +io +25192 o +s +v +v +25199 adv +s +v +v +25205 v +25212 adv +vc +s +v +25217 io +v +25220 v +25223 v +v +25230 v +o +25234 v +io +v +25239 v +v +25243 v +adv +25249 v +adv +25253 p +vc +25259 s +v +p +vc +25265 vc +25270 s +v +25274 vc +p +vc +25285 adv +v +v +25289 v +25291 v +25299 v +25303 v +s +25320 v +25325 v +25330 vc +v +v +25334 v +25338 v +o +25341 v +io +s +25345 v +25347 s +25350 v +25353 v +o +25356 v +25359 v +v +o +25363 v +25366 v +io +v +v +v +o +25373 s +v +25378 v +v +25384 v +io +25388 v +o +io +v +v +25396 v +io +aux +25400 v +25404 v +io +v +25410 v +o +25413 adv +v +25416 v +o +25423 v +25435 v +25441 v +io +v +25451 adv +v +25455 v +v +25462 adv +v +v +o +25467 v +25470 s +io +v +adv +v +o +v +25481 v +25483 adv +o +v +adv +adv +25489 v +25491 v +s +v +25496 adv +25501 v +o +25506 adv +v +v +io +o +v +v +25516 s +v +io +25520 v +25524 v +o +25527 v +25534 v +io +25540 v +25544 s +25548 v +25553 s +o +v +25561 v +25564 v +v +aux +v +25569 v +25573 v +25575 v +25581 s +25586 v +25593 p +adv +vc +25598 v +o +v +25609 v +s +25613 v +25615 v +25618 s +v +o +v +25624 o +v +25629 v +25632 o +v +25635 adv +o +25640 adv +vc +p +25644 v +v +io +adv +25653 s +o +v +25657 v +25662 v +25666 v +25670 v +v +25673 v +25676 v +25689 v +25692 v +25694 adv +v +25697 s +v +o +25704 v +25706 v +io +25709 v +25716 vc +25721 s +v +o +25727 v +25734 v +adv +o +v +25739 v +o +25745 v +25752 adv +v +v +25759 v +adv +v +25764 v +25768 v +25771 v +io +aux +aux +25777 o +v +v +25781 v +25784 v +io +v +25790 v +io +25794 s +v +25799 v +25801 v +25807 v +25813 v +25815 o +v +v +v +adv +25822 v +io +25825 o +25829 v +25831 v +25833 v +adv +25837 v +v +v +25841 o +v +25854 v +io +25860 v +adv +25868 v +s +v +25882 v +io +25887 o +v +25890 s +io +v +25897 o +v +25902 v +io +v +o +25909 v +io +25912 v +io +25917 o +v +25925 vc +25929 v +io +25932 v +25935 v +25937 v +25940 v +25944 adv +v +o +25948 v +25951 v +25955 s +v +25960 adv +p +vc +25964 v +25967 v +adv +v +25973 v +io +adv +s +v +io +25982 o +v +25985 v +io +25989 v +o +s +v +25994 v +o +25997 v +o +26000 v +o +26003 v +o +io +26007 v +26009 v +26015 o +26020 v +26027 v +o +v +26031 v +adv +26034 adv +v +26040 o +v +26043 v +26045 o +v +o +v +26053 o +v +26056 o +v +adv +v +26063 v +o +adv +26068 v +26070 v +26080 v +26082 s +vc +26086 v +v +o +26090 p +vc +26095 v +v +o +26099 v +o +26104 o +v +26110 v +26112 v +26116 v +26119 io +adv +26124 v +26126 o +v +26129 v +s +v +26137 v +s +26140 vc +p +26146 v +o +v +26150 v +26154 v +26160 v +26162 v +o +v +26166 v +26176 o +v +adv +26180 v +v +io +aux +v +26186 p +vc +26189 adv +v +adv +26196 v +26207 v +v +v +o +io +26213 adv +v +26216 adv +v +26219 s +v +26224 v +io +adv +o +v +v +io +o +26233 v +26235 s +v +26238 v +io +p +26248 s +v +io +p +26255 v +io +26259 v +io +26268 v +26272 v +26276 s +v +s +adv +v +26282 v +o +v +aux +s +v +io +26293 v +26295 v +o +26298 adv +v +o +26302 v +26309 v +o +26316 v +26320 v +o +26323 v +adv +v +o +26330 v +o +26333 v +adv +v +o +26340 p +26344 adv +v +o +26352 v +26357 v +26361 vc +26365 v +o +o2 +v +io +26375 v +adv +v +26389 v +26391 v +26393 v +26395 vc +26406 v +adv +v +26417 v +io +26421 v +s +26433 vc +26437 p +adv +v +26441 v +26445 v +s +v +v +26450 adv +v +io +v +o +p +vc +26460 v +26464 s +vc +v +aux +26474 vc +26476 v +26504 s +p +v +26511 o +p +adv +26516 adv +vc +26519 v +io +26523 adv +aux +26527 v +26529 p +vc +26532 p +vc +s +26539 v +o +26557 v +26561 o +p +vc +26572 v +o +26575 adv +v +v +io +adv +p +vc +26588 s +adv +v +o +v +26594 v +26597 v +v +26602 adv +v +26611 vc +26614 v +26620 v +s +26625 v +26631 v +26641 v +o +o2 +26645 adv +26648 vc +26653 v +o +adv +26661 v +v +26667 v +26670 v +26687 v +26693 adv +o +v +s +v +26701 v +26705 v +adv +26709 v +o +26717 v +o +26720 v +26724 v +26727 s +vc +p +26731 v +26735 v +io +26738 v +io +26746 o +v +26750 v +26755 s +26758 v +adv +v +26762 s +26767 v +26769 o +v +26776 v +s +26781 v +io +26787 aux +v +26797 v +io +v +26806 v +26810 s +26813 v +26815 v +s +26825 v +o +26836 v +io +adv +s +v +26842 p +26846 v +26849 v +26853 v +v +io +v +26858 s +o +v +s +v +26867 v +26869 s +vc +26872 o +v +26876 v +26881 adv +v +v +v +26886 adv +26890 v +s +26895 s +26898 v +s +26902 v +s +26906 s +26908 v +s +o +v +o +26918 v +26924 v +26935 adv +v +26939 v +26942 v +o +v +26946 v +o +v +26951 s +v +io +26958 o +v +26962 vc +s +26965 v +26972 v +s +o +26978 s +o +26981 v +s +26986 v +o +26999 v +27002 s +v +27006 v +27011 v +adv +adv +v +27016 v +v +adv +27023 v +27031 adv +v +27034 v +o +v +27046 adv +v +27051 v +27056 s +27060 v +27063 v +27069 v +27071 adv +v +adv +27075 vc +27080 s +adv +vc +p +27087 o +v +27097 v +27100 adv +v +s +27106 adv +v +27114 o +v +v +27121 adv +s +io +v +aux +p +27129 v +p +adv +v +27134 v +27139 v +27145 v +27147 p +27151 s +v +v +io +o +27167 v +27171 adv +v +27191 v +27193 adv +v +27199 v +27208 adv +v +27213 v +27231 v +27235 adv +27239 p +vc +27242 v +27245 v +27247 p +27250 vc +adv +27255 v +s +v +v +27260 p +vc +27265 v +io +27270 v +27275 adv +27278 v +27284 v +27289 adv +v +27299 s +v +adv +27310 adv +27313 v +v +27316 adv +v +p +27321 vc +27325 v +27330 v +27336 io +27343 v +27345 v +27347 v +27349 adv +v +adv +27356 v +27366 v +adv +v +s +v +27372 o +io +v +io +v +v +27379 vc +27389 v +27395 adv +o +27399 v +v +27402 v +adv +27407 adv +adv +v +27414 vc +s +27424 v +s +v +s +v +27434 v +27437 v +27442 s +27454 v +27456 v +27460 v +27465 v +27469 v +o +27474 v +v +o +adv +io +o +v +27483 v +27487 adv +27490 v +27495 v +v +io +adv +v +27501 o +adv +adv +v +o +v +v +v +v +27518 v +io +27521 adv +v +27530 o +v +s +v +27544 v +27549 o +v +io +27553 s +v +v +27557 v +io +o +v +27562 v +adv +o +adv +v +27576 v +v +io +27582 v +adv +v +v +27587 v +27591 v +27597 v +io +v +27604 v +o +27609 v +v +o +27614 adv +v +v +27622 v +p +vc +27628 adv +27635 v +27637 s +io +v +27642 v +27645 adv +v +io +27649 v +27653 v +27658 v +27660 v +io +27663 v +27667 s +v +v +27674 s +27680 v +27682 v +io +27685 v +o +27691 v +27694 v +v +27697 v +io +27703 s +27705 s +v +io +27712 v +27724 v +27726 v +27730 s +27740 v +p +adv +27744 adv +v +27750 v +s +v +o +v +v +27757 v +io +27760 v +v +s +vc +27768 v +o +v +v +io +27774 v +27777 s +27779 v +io +s +vc +27789 v +27793 v +io +27796 adv +27799 v +27810 o +v +adv +27819 v +v +27827 v +io +27832 s +v +27835 v +v +27842 v +27846 v +s +v +adv +27856 v +io +27861 v +27863 adv +s +27866 v +io +27871 v +io +27874 s +adv +27881 adv +s +v +adv +o +v +27888 s +adv +v +27892 v +s +v +adv +27898 o +v +27901 adv +27904 v +27906 v +27912 p +27914 v +27918 v +adv +27921 v +27923 v +27935 v +v +27938 v +27940 v +io +p +vc +27949 v +adv +27952 v +27954 v +adv +v +27961 v +27964 p +vc +v +27972 v +27976 s +p +adv +v +27987 o +s +v +27991 o +s +27994 v +27996 v +s +v +28000 v +28003 aux +v +adv +v +28009 v +v +28012 v +28014 adv +v +28021 p +28025 p +28027 adv +v +v +28033 v +28035 adv +v +v +s +v +28047 adv +v +o +v +io +28053 v +28057 v +io +v +28063 v +v +v +28068 aux +v +28079 v +v +aux +28083 v +o +v +28087 adv +adv +s +v +v +28115 v +28117 v +o +o +io +v +28123 o +v +p +vc +v +o +28130 v +adv +28133 v +adv +v +adv +v +aux +28140 v +o +28143 s +v +28147 io +28149 v +o +28155 v +v +28159 v +28165 v +28170 v +28173 v +io +28178 v +28183 v +o +28187 vc +28193 v +28195 adv +v +o +28200 v +28204 v +o +v +s +28211 v +o +v +o +28218 v +o +28221 s +v +28225 adv +v +28228 v +28235 v +28250 v +o +28266 v +28277 v +28281 o +28284 v +o +28287 adv +v +28290 s +v +28295 p +28298 adv +vc +28301 s +v +v +28306 v +28308 s +v +s +v +28313 s +v +28326 v +28328 adv +adv +p +vc +28336 v +28341 v +28344 v +adv +v +o +o +s +adv +v +28353 s +v +28356 adv +v +o +adv +28362 v +o +28365 v +io +s +vc +28378 v +s +vc +28382 v +28391 v +28393 v +28402 v +28406 v +adv +adv +28411 v +v +28415 s +io +v +28421 v +s +p +vc +adv +28427 v +s +v +o +28432 v +28437 v +o +28440 v +io +v +28446 adv +o +v +28450 vc +28453 adv +28457 v +28464 v +28467 v +v +o +v +28478 vc +28480 s +v +v +28484 v +28486 v +s +o +v +28491 v +adv +28499 v +o +v +adv +v +28505 v +28507 s +28510 vc +28512 s +adv +v +28518 adv +28520 v +v +28524 adv +28527 vc +28531 vc +28533 s +v +v +28537 v +28539 adv +v +28544 o +v +28547 adv +28550 s +v +28553 v +28559 v +io +28564 adv +s +adv +v +adv +o +v +28572 v +v +28575 adv +adv +28579 o +v +28590 v +28593 v +28595 v +io +28598 v +o +28602 s +vc +28609 s +v +io +v +s +v +28616 v +o +28620 o2 +28624 adv +v +o +v +adv +v +o +aux +o2 +o +v +28638 adv +o +v +28642 v +28648 v +io +28652 o +v +28658 vc +p +28663 s +28667 o +v +28670 v +28673 v +v +28676 v +io +28681 v +io +v +v +v +io +28692 v +28696 v +o +28703 v +28707 adv +28710 v +io +28715 adv +v +v +io +28720 o +v +o +v +28729 s +adv +v +v +o +28737 v +io +28740 v +28744 s +adv +v +v +o +28752 v +28757 v +v +io +28763 v +28766 v +28768 v +28772 v +o +28777 s +vc +p +28781 v +28786 v +o +o2 +28790 v +io +v +28796 v +v +o +v +28804 v +28808 adv +28810 v +o +28813 v +28816 v +o +28820 v +o +v +o +28827 v +o +28833 v +o +28836 v +o +28839 v +v +28844 v +28853 v +28858 v +o +28864 s +28870 v +io +v +28875 s +adv +v +28879 v +o +28882 v +28886 v +o +28890 s +o +v +28894 vc +28898 v +o +28915 v +28918 o +28922 o +28928 v +v +o +v +28936 v +aux +28939 v +28943 v +28947 v +o +v +28953 adv +28957 v +28963 v +o +v +o +v +adv +v +28975 v +adv +28981 v +28983 v +28986 v +28989 v +o +28992 v +28995 s +v +29008 v +29013 aux +aux +adv +v +s +29028 v +o +29033 v +v +v +aux +o +v +29040 s +v +29043 v +o +adv +v +adv +v +o +v +v +v +29054 v +s +v +o +29061 v +29064 v +29070 v +29081 v +29085 v +29087 adv +v +v +adv +29096 vc +29098 v +29103 v +29121 s +29123 vc +29127 v +o +29130 v +o +29136 v +adv +29141 adv +s +v +29145 vc +29147 s +vc +p +v +29166 v +v +29172 v +29180 v +29182 adv +v +29185 v +29188 v +o +29191 adv +v +29194 v +29198 v +29204 v +o +v +o +v +29212 v +o +29216 s +29222 v +o +29238 v +adv +v +29242 v +29255 v +o +29258 v +v +o +29268 v +29272 v +29276 v +29279 s +v +io +29290 v +v +29293 v +29297 vc +29301 v +29305 v +s +v +29311 v +29315 v +29317 s +v +io +adv +v +v +29327 v +v +adv +vc +p +v +29335 adv +v +o +29339 v +v +29348 v +adv +29353 adv +o +v +29357 v +io +29360 v +v +29366 v +o +29372 io +o +v +29376 v +29378 v +adv +29382 v +adv +29389 v +29392 s +v +v +29398 vc +v +29401 v +s +v +29405 v +29407 v +29410 v +29417 v +v +29422 v +29425 s +v +v +29430 adv +o +v +29434 adv +v +29439 v +29441 v +29449 v +s +v +adv +v +29455 v +io +v +29462 v +29469 v +29471 v +v +29475 v +v +29481 v +v +29487 o +v +29491 v +o +v +29497 v +29500 o +v +29504 o +v +29507 p +vc +29516 v +io +v +29523 v +29529 s +v +v +adv +29535 v +29539 v +29542 v +29547 v +29552 adv +v +29566 v +29578 s +v +v +o +29584 v +29589 v +io +29597 vc +29600 v +adv +v +adv +o +adv +adv +io +v +29612 v +29615 v +apposition +29619 v +29629 adv +p +29635 s +adv +29645 p +29647 vc +p +s +29653 v +29662 adv +29664 adv +vc +p +s +29669 vc +29672 p +29674 s +29682 v +29685 v +s +29701 v +29703 v +v +29718 adv +29724 v +io +29728 v +29736 v +s +v +29740 s +v +29745 v +29750 adv +v +aux +29754 v +29763 v +o +io +29767 v +29771 o2 +29773 vc +p +29779 s +29784 v +29786 vc +p +29796 v +29800 v +29811 v +29818 s +v +29827 v +29833 o +29837 v +io +29840 v +29842 v +s +29849 v +o +29852 s +vc +p +29859 v +29865 v +29868 v +io +s +vc +29874 v +29879 v +v +29884 v +io +o +29888 aux +vc +v +29892 adv +v +v +29898 v +s +29901 adv +adv +v +29907 s +v +29921 v +29924 v +29928 s +29930 v +adv +v +v +io +29936 v +29938 o +v +29944 s +29947 io +29949 vc +p +29952 v +29954 v +29960 v +29970 v +29976 v +o +29980 v +29982 adv +io +v +s +29988 adv +v +v +30001 v +30012 adv +s +p +30017 v +30019 adv +s +p +30030 p +30032 v +30035 v +v +v +30043 s +30047 v +30049 v +p +vc +30056 v +30059 io +adv +v +aux +30064 v +o +30070 aux +v +30075 v +o +30078 v +30082 o2 +s +vc +p +30089 vc +30091 v +io +30103 v +30115 p +vc +s +30119 v +s +30124 adv +v +s +30128 o +adv +v +30132 v +30135 v +io +30139 v +30145 v +o +30150 v +30152 vc +30156 aux +30163 v +o +30169 s +30172 vc +30175 vc +p +30178 adv +v +30186 v +s +v +30192 v +adv +30199 v +30205 s +v +30211 v +30221 v +30227 v +30231 v +30233 v +30240 v +30248 v +30254 v +30258 v +v +s +30264 v +30271 p +adv +s +30275 v +30284 aux +30286 v +30296 v +30306 p +30308 v +30310 v +s +30313 v +io +30318 v +s +v +30327 v +30338 v +30346 aux +30350 v +o +30356 v +io +o +30362 p +30375 v +o +v +o +30382 v +o +30387 v +o +30392 v +o +v +v +adv +30398 v +v +o2 +v +30405 v +o +30417 v +30423 v +s +30431 v +30439 v +30443 v +s +30446 v +o +30449 v +30457 v +s +30465 v +adv +30468 v +30474 v +v +30479 v +o +30487 o2 +30489 v +30493 v +adv +30496 vc +p +30499 v +30503 vc +30509 s +v +30515 v +30521 v +p +vc +s +30526 v +o +v +v +p +vc +30535 v +s +30538 v +30542 adv +30548 v +v +30553 v +s +30558 v +o +30567 v +30573 v +30576 v +30581 v +30583 p +30587 vc +30592 vc +30600 v +30604 v +v +p +30613 v +30615 v +o +30621 v +30624 io +30631 v +30640 o +30649 v +o +v +o +30658 v +30663 o +v +30671 v +io +30676 v +adv +v +o +30691 aux +30696 vc +30698 v +30701 v +30705 v +30722 v +o +s +30727 v +30734 v +30736 v +30746 v +30748 v +adv +30751 vc +30763 v +30768 v +s +30773 v +30777 s +30780 vc +v +30784 s +30786 v +s +v +s +30795 v +30810 s +vc +p +30815 vc +s +30822 v +30826 v +io +vc +p +30831 v +30834 vc +s +p +v +30841 v +s +30844 v +30851 v +o +30854 v +o +30859 adv +vc +p +s +30867 s +vc +30874 v +30876 v +30887 v +io +30892 v +o +30895 v +30899 v +io +30903 adv +v +30906 aux +v +io +30911 s +vc +30917 v +io +adv +30921 s +vc +30929 s +adv +p +v +s +v +30936 v +30940 adv +v +30948 v +30952 v +s +30956 p +30960 s +30965 v +30967 v +30977 v +30981 v +30985 v +30990 v +o +30994 v +io +30997 v +v +31000 v +31010 v +31015 v +v +31021 v +io +31030 v +v +31034 v +31043 v +31047 o +v +31054 v +31064 o +31069 v +31074 v +31078 v +o +31081 vc +31085 p +31087 v +31093 v +s +31100 v +31110 v +o +31114 v +31118 v +31125 v +o +p +31130 vc +31133 v +o +31137 v +31149 aux +s +vc +31154 adv +s +p +31164 v +31171 vc +31177 io +31183 adv +v +o +31189 v +31194 v +31204 v +31211 v +s +31215 v +31222 v +o +31228 v +31232 v +aux +adv +v +31246 v +31253 o +v +31280 v +31284 v +o +s +31288 v +31294 aux +s +v +31308 v +31315 v +s +31319 v +31323 s +31325 v +31333 s +v +31338 v +31348 s +p +31354 s +adv +v +31362 v +31370 v +v +31375 v +31380 v +31385 v +31392 v +31403 v +31405 v +v +adv +31411 vc +31415 v +31429 vc +31432 v +s +31440 v +31445 v +s +v +31454 adv +v +31460 v +s +vc +31466 v +31470 v +o +31479 adv +v +v +31484 v +o +31487 v +31491 v +s +31496 v +31502 v +o +31505 v +o +31508 v +31511 v +o +31521 v +o +v +31525 v +31531 aux +adv +v +io +adv +aux +31541 v +v +o +31545 v +31548 p +31550 v +o +adv +v +31560 vc +s +v +31564 s +adv +v +31569 o +v +io +31573 v +31577 v +31583 io +31588 v +31597 s +v +31618 v +31624 v +31627 s +31633 v +31640 s +31643 v +31649 v +31661 v +31668 v +31675 v +31683 v +31687 v +31691 o2 +v +31698 v +31704 v +31706 v +31718 v +31726 v +31728 v +v +31735 s +v +io +v +31741 v +31744 v +31750 adv +v +v +31755 o2 +v +31760 v +io +31763 v +31770 v +o +31775 adv +31784 v +31788 adv +v +31792 v +31796 v +31798 v +o +31802 v +31804 o +v +31807 v +v +io +31811 v +31814 v +31816 adv +v +31820 v +o +adv +v +31825 v +31828 v +31830 v +31833 aux +o +v +31837 s +v +31845 v +io +v +31849 v +o +31852 v +v +o +v +31859 v +io +o +v +31864 v +31866 v +31871 v +31875 v +s +31884 adv +adv +s +vc +31890 v +v +io +31896 s +adv +v +o +31901 v +31905 adv +adv +vc +p +v +31915 s +o +v +31930 v +31935 v +31945 v +31953 v +v +31962 v +31977 v +31980 v +31985 v +31991 v +31994 v +32000 v +32002 v +v +32007 v +32019 s +32022 v +s +vc +32032 v +32042 v +vc +32199 s +32203 v +32208 v +32217 v +32222 adv +v +o +32230 v +s +v +32234 v +io +32239 vc +32243 v +32248 vc +p +32251 v +32256 v +32258 adv +32262 v +32266 v +o +v +io +32279 v +io +32283 io +v +32294 io +v +32298 o +v +v +o +32304 s +v +32308 vc +p +s +32312 v +32315 v +io +v +v +32326 v +32328 v +o +32333 v +32340 v +io +32343 vc +32347 v +o +adv +adv +32352 v +32357 v +32361 v +o +32367 v +o +adv +adv +v +32378 v +v +io +32384 v +adv +v +32392 v +32397 v +32403 v +32415 s +v +32424 s +v +32430 v +32434 v +32437 adv +32441 v +32444 v +adv +32455 v +v +32458 v +io +32465 v +32468 v +32471 adv +32480 v +o +v +io +v +o +v +io +o +32490 io +o +v +v +32496 v +32501 v +32504 v +32507 v +32517 o +32519 v +v +32524 adv +v +32534 s +v +io +32538 v +32545 v +32551 v +32555 vc +s +32558 v +32561 adv +v +io +32567 aux +v +o +v +s +v +32576 v +32584 v +32586 v +io +32591 p +vc +32600 v +io +32604 vc +32612 adv +v +32622 adv +vc +32634 v +s +32637 adv +32648 vc +32659 v +32661 adv +32666 v +adv +32672 v +o +32675 v +v +o +32682 v +o +32693 v +32695 v +o +32698 s +v +32703 v +32705 v +32714 o +32719 v +32727 vc +32735 vc +32737 v +32742 v +32745 aux +s +32752 v +v +o +v +o +p +vc +32764 v +o +32768 v +v +32771 v +32777 v +o +32782 v +32785 adv +v +o +32789 v +s +32794 v +32797 v +p +32807 v +32812 v +32814 v +32824 v +32828 v +32842 v +o +32847 v +32850 v +32854 v +o +32857 adv +v +v +o +32862 v +32866 s +v +v +32871 v +o +32876 s +32882 v +v +o +32886 v +32891 v +32893 v +32895 s +vc +32902 v +adv +v +s +v +32908 v +32911 s +vc +32914 v +s +v +v +32924 v +o +32927 v +32931 v +o +32934 adv +v +32939 s +v +32948 v +s +32954 v +32958 v +32968 v +32973 v +o +32976 v +32982 s +32990 v +32993 v +33002 v +v +33007 v +33012 s +vc +p +v +s +33020 v +adv +33023 v +33027 v +33032 v +v +v +33038 v +33043 v +33050 v +s +v +aux +33057 v +o +v +33065 v +33069 o +v +v +33076 v +33081 v +33089 v +v +o +33093 v +33095 v +33100 v +s +33103 v +33106 v +33110 v +v +33117 vc +aux +33120 s +v +33133 o +v +33136 adv +33143 s +vc +p +33149 v +33155 adv +v +33160 o +33164 v +33170 v +o +v +o +33175 v +33178 vc +s +33185 v +33190 v +33193 v +33196 v +o +v +aux +33201 v +v +o +v +33206 v +33209 v +o +v +v +v +33215 adv +33218 v +33222 s +v +io +io +v +33228 v +v +o +33234 v +33240 v +s +33246 v +adv +33253 v +33256 v +33258 v +33264 s +33271 v +33273 v +33279 s +33288 s +33303 v +33306 v +s +33309 aux +s +v +33315 s +33319 v +o +v +33323 v +33327 adv +v +adv +v +o +33335 v +33342 v +o +33354 v +33358 v +aux +v +io +33366 v +v +33373 v +p +vc +33377 s +v +o +s +v +o +v +33385 adv +33392 v +33396 v +v +33400 adv +v +33406 s +vc +p +v +v +io +33416 v +v +33419 v +33422 v +33428 o +v +33433 v +o +v +33437 v +io +v +v +33442 v +33446 v +33452 adv +v +33456 v +33459 v +v +33465 v +33469 s +v +o +33473 v +33477 v +adv +v +33481 v +o +adv +33487 v +33489 v +33491 adv +p +v +33498 v +io +v +o +33503 v +o +v +v +o +33509 v +33512 s +io +33519 v +33525 s +33531 v +33542 v +33554 v +33557 v +33563 v +33565 v +33568 adv +v +33571 v +v +o +33575 o +33579 s +v +33586 v +adv +33589 o +v +adv +33605 v +33609 v +33615 adv +33620 vc +v +v +33624 v +s +33628 v +33633 adv +v +33640 v +33646 s +o +33651 v +v +33658 adv +33662 v +33666 adv +v +33675 s +v +33684 adv +v +33693 s +v +33698 v +33705 p +33707 s +v +o +v +o +33713 v +33716 p +vc +33719 v +33722 v +s +33735 v +33742 v +adv +v +s +adv +v +33751 v +33754 v +33757 adv +v +33760 o +v +s +33764 v +33770 vc +33772 v +33783 v +v +33786 v +33790 o +v +adv +v +33795 adv +33800 v +io +vc +33811 v +33815 v +s +33821 v +33823 vc +s +p +33832 vc +p +33835 v +o +33846 v +33848 v +v +o +33852 s +v +33858 v +33862 o2 +v +33866 v +33868 v +33873 v +v +33876 v +33881 v +o +33884 v +33887 v +33889 v +o +v +33893 v +33895 v +33898 v +io +v +33905 s +v +33908 v +33913 s +v +adv +33917 v +33921 o +v +33926 v +33931 v +s +33936 v +33947 v +s +v +33954 v +33958 o +33961 v +33963 o +adv +v +o2 +33990 vc +p +33998 s +vc +p +34002 v +34005 v +34031 s +v +v +o +34036 v +34043 v +34047 v +34052 v +v +o +34056 s +34059 v +34061 v +o +34064 s +v +34073 v +p +34078 p +vc +34084 p +34086 v +adv +34089 v +p +34092 v +adv +34095 v +p +vc +34099 v +o +34105 v +o +34108 v +34110 v +34115 o +34121 v +34127 v +34129 aux +34133 p +34141 v +34148 s +34153 v +34157 s +io +34160 v +adv +34163 v +aux +34166 v +adv +34169 v +34171 v +aux +34174 adv +o +v +34184 v +34191 v +34194 v +v +34199 adv +v +34202 v +o +v +34206 v +o +v +34211 v +o +34214 v +o +34219 v +34226 v +34233 adv +v +34236 v +o +v +34242 v +34245 adv +v +34249 v +34251 v +io +34255 v +io +adv +34260 v +34262 v +o +34266 p +vc +34273 v +o +v +34278 adv +v +34281 v +o +34285 p +vc +34292 v +34295 v +34297 adv +v +v +34302 p +vc +34306 io +v +34309 v +34313 v +34318 v +34320 v +o +v +34324 vc +34328 p +34330 vc +34334 s +p +vc +34342 vc +p +34348 p +vc +34351 adv +v +34356 v +34358 adv +v +34363 v +v +34366 v +v +34369 v +io +34373 v +v +v +v +34384 v +v +io +34388 v +34391 io +34393 v +s +o +v +34398 s +34401 v +adv +vc +s +34409 v +34411 vc +34417 adv +v +34436 adv +v +adv +v +v +34444 aux +v +v +34454 s +34461 adv +v +aux +v +adv +34473 adv +v +34484 v +34486 adv +34494 adv +34497 v +34507 v +34509 adv +34512 v +o +34517 o +v +34528 v +34537 v +34544 v +34549 adv +o +v +aux +aux +34555 adv +v +o +v +34561 v +34565 v +34570 v +o +v +io +adv +vc +p +p +vc +34580 v +o +s +v +34585 v +34587 v +o +34593 s +v +v +34602 adv +v +v +o +34608 adv +v +s +34613 v +34615 adv +v +p +vc +34620 v +o +34627 o +v +34632 adv +v +34635 vc +34641 p +34643 v +34653 v +34660 adv +v +v +v +s +vc +adv +p +34669 v +34673 v +34679 v +o +34682 v +v +34688 s +v +34693 v +o +adv +v +34698 p +vc +io +v +o +34704 v +34711 s +v +io +34717 v +34721 adv +s +34725 v +34729 v +o +34733 v +io +aux +adv +v +34739 adv +vc +p +34747 v +34749 adv +o +v +34754 v +34756 v +adv +34759 v +34766 vc +34770 v +v +34774 o +34776 v +io +v +34780 v +34782 io +v +34785 v +34790 v +o +34793 v +34795 v +o +34799 v +o +34802 v +34804 v +o +34807 v +v +io +adv +34816 v +34818 v +34823 v +v +34827 v +34829 v +34833 v +34836 vc +p +34839 v +adv +34849 v +34855 aux +v +v +34864 s +vc +p +34872 vc +34876 v +o +34880 v +34884 v +io +adv +v +34889 v +v +34895 v +v +34898 v +aux +io +v +v +34904 v +34908 v +v +34911 v +o +34917 v +s +o +34921 v +34924 v +34928 v +34933 v +34940 v +34955 v +io +34964 v +34972 v +34976 v +s +vc +34980 v +34982 o +v +34985 v +34990 v +34994 v +o +34998 v +s +vc +35002 v +35004 o +v +35010 v +o +35022 v +v +35025 v +v +io +v +v +io +o +35035 s +v +s +v +s +v +35042 s +v +s +v +s +v +35049 p +vc +35052 s +adv +v +35058 v +35062 v +v +35069 o +v +v +35078 v +35080 o +v +v +35087 v +aux +35094 adv +v +35099 vc +35101 o +v +v +o +aux +v +io +35111 s +vc +35115 v +aux +v +35124 s +v +35131 v +io +p +35137 adv +s +vc +35148 p +adv +vc +35158 v +v +35162 v +35176 v +35179 adv +v +35184 adv +v +35192 adv +vc +p +p +vc +35201 v +35203 v +io +s +v +v +io +35210 adv +v +v +35214 adv +v +35217 v +35221 adv +v +o +35225 v +o +35228 v +o +v +v +35236 v +35238 v +35240 v +v +35251 v +35260 v +35264 o +35266 v +35270 v +35276 v +35278 v +35280 s +vc +35285 p +35287 v +35289 v +35295 v +35299 v +adv +35305 v +v +35309 v +35319 v +35321 v +35326 v +35330 v +35334 v +o +v +35339 v +35341 s +vc +p +35345 v +35351 s +v +o +35355 p +vc +35358 v +35361 v +35364 aux +v +io +o +v +35370 s +aux +v +v +35376 vc +35381 v +35387 o +adv +v +s +v +io +v +35397 adv +v +o +v +s +v +v +35405 io +35408 v +35410 s +v +io +adv +v +35416 v +35422 v +v +35427 v +35432 o +io +35436 adv +v +35439 s +35442 v +35450 v +o +io +adv +v +35456 s +35458 adv +v +adv +v +v +35466 adv +35470 adv +v +35473 s +adv +v +35481 v +io +v +35490 v +adv +35493 io +s +v +adv +v +35499 v +io +v +35506 v +35508 v +v +35512 p +s +vc +s +35518 v +35520 v +35527 v +o +v +35533 v +35538 s +v +35559 s +35569 vc +p +35575 v +35587 s +v +o +35592 v +adv +35595 v +35602 v +35605 v +35608 v +35610 v +35612 v +35619 v +s +s +adv +v +35628 v +35634 v +o +35637 s +v +35643 v +v +35647 adv +v +o +35651 s +v +35658 v +35661 v +o +35664 s +v +35672 v +v +35676 o +v +v +35680 v +o +v +v +35685 v +o +35690 p +vc +35696 s +v +io +v +v +35713 v +adv +v +35717 v +adv +v +35721 vc +p +35727 vc +35737 vc +35739 v +adv +v +35745 v +35753 adv +v +v +35761 s +35763 v +35766 v +35770 s +o +adv +v +s +35777 v +35782 v +35788 v +s +vc +35792 v +35802 v +v +35805 adv +v +35813 s +vc +s +35821 v +35824 v +35826 v +35830 s +o +v +v +o +adv +35839 v +35843 v +35846 v +v +35851 p +vc +35854 s +adv +p +vc +35860 s +35863 v +35867 v +35869 v +adv +v +35874 s +v +v +io +35880 s +adv +v +35884 o +v +v +v +35891 v +35901 adv +v +v +o +35909 v +io +35918 v +adv +v +o +v +35924 s +v +v +35934 s +vc +35945 v +35951 s +v +35960 v +35963 v +35970 v +35972 v +s +v +35976 v +35983 v +35985 v +35987 v +v +o +v +aux +aux +v +35995 s +v +v +36006 v +36008 v +s +36011 v +io +p +36018 v +v +v +36024 p +s +vc +36034 v +36036 v +o +36039 v +36045 s +vc +36051 o +v +36056 v +36062 v +o +36067 adv +v +o +36073 adv +v +36080 v +36083 v +v +adv +36089 v +s +36100 v +o +adv +o +v +36106 v +36111 v +36118 v +o +36121 v +36125 v +36127 v +36130 v +36138 v +o +36142 p +adv +s +vc +36147 s +v +p +36151 v +36157 v +o +36160 adv +v +io +36166 v +36168 vc +p +36173 v +36178 v +o +36181 v +io +36185 v +36187 v +io +36192 v +36196 v +36201 v +36211 v +36214 v +v +36217 v +v +36220 v +36229 v +v +36232 v +36234 v +36239 v +v +36247 v +v +36250 v +36257 v +36259 v +io +36262 v +adv +v +36266 v +36268 v +36276 s +v +36283 v +36285 s +v +36289 v +36291 v +o +36297 v +36300 vc +36304 v +o +v +v +36313 v +o +io +v +36320 v +36325 v +o +v +io +36334 v +36337 v +o +36342 s +36345 o +36347 aux +v +36350 adv +s +p +36354 s +36358 vc +36360 v +36365 v +s +v +36378 vc +p +36381 s +v +36386 v +s +36390 v +o +36394 vc +36401 s +adv +v +36406 v +v +adv +v +36416 adv +v +36424 v +36427 p +36429 v +o +36432 v +s +v +36437 aux +36440 v +o +36443 v +36447 v +v +o +s +36452 s +v +s +v +36461 v +36463 adv +v +v +v +36468 v +adv +36473 v +o +v +36481 adv +v +adv +36485 s +v +io +aux +36492 v +o +v +36497 adv +s +v +v +s +36505 v +36507 v +36511 adv +v +36518 v +v +io +adv +v +adv +v +36526 v +36528 v +36532 adv +v +v +s +36539 adv +36554 s +36558 o +36560 s +v +adv +v +36565 v +36567 v +36569 v +o +v +36573 v +36575 s +v +36580 v +v +36584 v +36586 v +36591 v +adv +36594 v +io +v +v +36599 v +36604 s +v +io +io +v +36610 v +36612 v +36615 v +io +36625 o +v +36628 v +o +v +36636 v +36638 v +36641 o +v +36647 o +36649 o +36651 o +36653 o +36658 v +36664 v +adv +v +36668 adv +v +36672 s +adv +v +o +v +36687 v +36693 v +v +36701 adv +36703 v +36708 v +36711 v +36714 v +36718 s +v +36726 s +v +36729 adv +36735 v +36737 v +s +o +s +v +36743 p +vc +36748 v +o +36751 v +v +o +36755 v +36758 v +io +o +v +36763 v +o +v +36770 vc +p +36775 v +v +o +36779 v +o +v +io +36792 v +v +36797 v +v +36800 v +36803 v +io +v +36809 v +36816 v +36818 v +o +36821 adv +36825 vc +36827 v +36830 v +io +v +s +36835 s +v +adv +vc +p +s +36849 v +s +v +36857 o +36859 vc +36862 s +36864 v +36869 v +o +36876 v +adv +36879 v +o +36882 v +36890 v +36894 v +o +36897 v +36899 v +36902 v +36906 v +36908 v +s +36911 v +36913 v +adv +36919 v +36924 s +36927 v +adv +36932 v +o +v +p +s +vc +36940 v +36942 s +v +v +36949 s +o +36952 s +36958 v +36960 v +io +36963 s +p +s +vc +v +36969 s +v +v +36977 s +v +o +v +io +v +o +v +36986 v +36991 o +v +36994 v +37003 v +37008 v +37010 v +37014 s +v +37018 v +v +o +37022 v +37029 v +o +37033 s +v +37038 v +v +o +37043 s +v +37050 s +v +o +37054 o +v +s +v +37062 o +37068 s +v +37075 o +37080 v +37082 v +37095 v +io +adv +v +37101 adv +v +s +37106 v +o +37110 v +37116 v +37125 v +37131 v +37135 v +37137 v +37140 v +s +37147 p +37152 p +v +37155 aux +37158 v +adv +s +vc +37165 s +v +37169 v +37173 o +v +37177 v +37187 adv +37189 v +v +37199 v +adv +37202 v +37205 v +s +37209 v +37215 aux +p +vc +s +p +vc +37222 v +37225 o +io +37228 o +io +37231 o +io +adv +v +o +v +37238 o +s +v +v +s +37244 v +o +37247 v +37250 v +s +37256 s +v +37261 v +s +vc +37268 v +o +v +37274 v +37277 v +s +o +37281 s +v +37284 io +v +37291 o +v +37294 v +37298 v +s +37303 v +o +37308 aux +37313 v +v +aux +v +o +v +37324 p +adv +vc +37328 aux +s +v +o +37333 adv +v +37336 v +o +37341 adv +v +37345 v +o +37348 v +37353 v +o +37356 adv +v +37359 v +37362 v +37367 v +37370 vc +37374 v +o +v +adv +37382 adv +v +s +v +o +37390 v +37392 v +37400 v +37404 v +o +37410 v +s +37418 s +v +37422 o +v +v +37429 v +s +37443 v +v +37449 s +v +37460 adv +v +o +37464 v +v +o +37472 v +37480 vc +p +37485 v +37491 v +o +v +o +37498 v +io +37501 s +v +37510 o +v +37514 s +o +v +v +37519 v +o +37523 p +37527 vc +s +vc +p +37532 v +37535 v +aux +v +s +37543 v +o +37546 v +o +37549 adv +v +37554 v +37557 s +adv +v +37561 s +adv +vc +37568 vc +37570 v +37573 v +37580 s +37583 v +37585 v +37589 v +o +37595 v +v +37601 v +io +37604 adv +v +o +37616 v +37622 v +aux +v +v +s +v +37632 v +o +37635 v +v +o +37639 v +37644 v +s +37649 v +s +37653 v +o +37656 adv +v +37659 v +io +37665 o +v +37672 o +37678 adv +v +adv +37683 v +37685 v +37688 v +o +37691 s +v +v +io +adv +v +v +37702 v +io +v +37707 v +37712 s +v +v +37720 v +37723 v +o +aux +37727 adv +v +io +v +37737 v +37742 s +v +37749 v +37753 p +vc +37762 v +37768 v +o +37780 adv +v +s +v +37785 v +37791 p +37795 p +37797 v +37803 o +v +37809 v +aux +v +o +37814 o +37818 adv +v +o +adv +o +adv +o +37826 o +37830 v +37836 v +adv +v +s +37845 p +vc +37849 v +37857 adv +37860 v +37866 v +37874 p +37880 adv +v +37891 v +37893 v +o +v +37897 v +io +37900 v +37906 v +io +v +37920 v +37922 adv +v +o +v +37930 v +37935 v +io +37944 v +io +37947 o +v +37950 v +37955 v +io +37958 adv +37963 p +vc +37969 s +io +aux +s +io +aux +37981 v +37985 v +37989 adv +37994 v +v +38000 p +vc +38006 adv +38008 aux +38010 s +38013 v +38017 v +38019 v +o +o +v +38025 v +o +o +v +38031 o +v +v +38035 v +o +38038 v +38043 v +aux +38048 v +io +38055 v +io +v +38061 s +38065 v +aux +v +io +38072 v +38085 s +o +38089 v +38093 adv +v +38098 adv +v +38101 v +38106 v +38114 v +38120 v +v +o +38131 v +o +38138 v +o +io +aux +38145 adv +s +v +38150 s +io +v +38158 s +v +p +vc +38165 adv +38169 p +vc +38174 adv +38179 io +v +v +38185 v +38191 v +p +38196 v +o +v +38200 v +io +38207 v +v +o +s +v +38213 adv +v +38216 v +o +v +38220 adv +v +38223 aux +38226 v +v +o +v +aux +o +v +38235 v +38237 s +v +38244 s +v +adv +v +38249 s +v +v +v +38285 o +38287 v +io +adv +v +o +v +38294 v +38296 s +v +v +o +v +38305 s +vc +38309 v +38312 v +38315 v +38321 adv +v +s +adv +v +o +38328 o +v +v +v +o +38338 v +38344 v +o +v +38348 adv +38354 v +38356 v +v +38361 v +v +38366 v +v +38369 v +v +38374 v +38379 v +o +38385 v +o +38390 v +o +38396 v +38399 v +38403 v +v +o +38409 o +v +s +38414 v +s +v +io +v +adv +38424 vc +38427 v +38432 s +v +38435 v +38441 v +io +38445 v +38447 s +v +adv +38453 v +s +s +v +38463 adv +p +v +o +38471 p +vc +38474 vc +p +s +adv +v +38484 v +38491 v +38496 v +v +aux +adv +v +adv +38508 v +v +38511 v +io +38514 o +v +38517 v +v +io +38522 aux +aux +38532 v +38534 s +38536 s +38540 v +s +adv +v +adv +38546 v +38551 s +38556 v +v +38564 aux +v +s +v +38571 v +38576 v +io +38579 v +v +aux +v +38586 v +38595 v +io +38601 v +io +38609 v +38611 v +io +38614 adv +v +o +38620 v +38626 v +o +38629 v +38632 adv +38634 v +io +aux +v +io +38644 v +38650 adv +v +o +v +io +s +adv +v +v +adv +io +o +v +adv +38666 v +38676 vc +adv +v +v +v +io +v +io +38685 adv +adv +v +io +v +38692 vc +38700 v +v +io +o +v +s +io +v +v +38710 v +io +v +38714 v +v +38717 v +io +38722 v +v +38726 v +v +38730 v +v +38738 v +38741 o2 +38745 o +io +v +38749 adv +v +o +v +io +o +38757 s +p +vc +v +38763 v +38774 v +38778 v +o +38783 o +38785 s +vc +p +38789 v +38792 v +v +38797 v +38804 v +38811 v +38815 s +v +38820 v +38824 s +v +38829 v +io +38835 v +v +38838 s +38841 v +38849 v +adv +v +38856 v +38859 v +s +38865 s +38868 v +38876 v +38879 s +38882 vc +38888 s +v +38893 v +38903 v +v +38910 vc +38912 v +38918 v +v +o +38924 v +38927 v +38932 v +38934 adv +vc +38940 vc +38943 adv +v +38947 v +38952 v +38956 v +38960 v +o +38963 adv +v +v +v +38971 adv +v +38974 v +v +v +38978 v +adv +v +38982 v +38989 v +v +adv +38993 vc +38999 p +39003 v +39006 v +s +o +v +o +39016 v +io +p +39022 v +o +39026 o +v +39029 s +v +39032 p +39034 v +39040 v +39044 v +v +v +39052 vc +o +v +39056 s +adv +v +io +39061 adv +39067 vc +s +39071 p +p +vc +39084 v +39095 v +o +39098 v +39104 v +39109 aux +39112 p +39115 v +39124 v +o +39127 v +39133 aux +39136 p +s +o +v +39142 v +39153 v +39156 v +39161 vc +39169 p +vc +39176 p +vc +39180 p +vc +39186 p +39188 v +39195 p +vc +39203 p +adv +v +39209 vc +39218 v +o +39223 v +v +o +s +39228 v +39232 v +v +39237 v +v +39240 adv +adv +v +39247 v +39252 adv +39263 v +39268 v +39272 aux +39275 v +39281 v +39284 v +v +o2 +39288 aux +s +p +adv +vc +39294 s +39299 v +39309 v +39318 v +o +v +o +adv +v +s +39329 v +39341 s +io +39344 vc +39354 v +adv +adv +v +39359 v +39363 v +io +aux +o +v +39370 v +39372 s +v +39378 s +39380 v +39386 s +39391 adv +v +39395 s +io +39398 v +39407 v +o +39410 p +vc +39413 v +39421 s +v +o +39425 s +v +39434 v +v +39448 v +39455 v +39470 v +39477 aux +v +io +v +39485 s +39490 v +39495 s +adv +v +39500 v +v +adv +v +s +v +39511 adv +v +39514 v +o +39518 v +o +v +o +39528 v +39534 v +o +v +v +39542 adv +v +o +39548 s +vc +p +39554 p +vc +v +s +adv +v +39562 s +adv +v +39566 adv +o +39571 v +39575 v +39577 o +39581 v +39585 v +39590 v +39595 adv +v +39599 v +39605 adv +v +39609 v +39611 v +io +o +v +v +39619 v +v +o +v +39626 aux +v +io +o +v +39634 v +39641 adv +39655 v +adv +v +39660 v +39662 v +io +39666 s +v +39678 v +39688 v +o +39693 v +39701 s +v +o +39709 v +io +39717 v +adv +v +39722 v +o +39733 adv +v +adv +39737 o +v +39740 o +v +39746 v +o +39752 o +v +v +39756 v +39761 io +aux +v +39767 v +39773 s +v +io +aux +s +o +v +39786 v +39789 v +39791 v +39796 adv +39799 v +adv +39804 vc +39807 v +adv +39810 v +o +39814 v +39820 v +39822 v +39825 v +o +v +39829 adv +v +adv +v +39837 v +o +v +v +39845 o +v +39848 v +adv +39858 v +39862 aux +v +39866 v +39870 v +v +v +v +39875 v +io +39879 aux +39886 v +39890 o +v +p +vc +p +39896 v +io +39899 adv +39902 v +39904 v +39911 v +io +adv +v +39917 o +v +39922 o +v +39927 p +vc +39936 v +39941 v +39943 v +p +adv +vc +39953 v +o +39957 s +v +39965 v +v +39971 v +o +39975 adv +o +v +adv +39982 v +v +39986 adv +39992 v +io +adv +s +40001 v +40011 v +adv +40014 adv +40017 v +40020 adv +v +40024 o +aux +40028 adv +v +o +v +40033 o +v +40036 adv +v +40045 v +40050 v +40052 v +o +40055 v +40060 s +v +io +adv +v +40069 v +40073 v +io +40077 v +40079 v +40082 v +o +v +io +40087 adv +v +40094 adv +s +adv +v +40099 s +v +40102 p +vc +40107 p +40112 vc +vc +40117 v +40121 v +40123 s +p +40126 v +40130 adv +v +40136 v +40138 v +adv +v +io +p +40146 s +v +v +40151 v +40153 v +io +40156 v +40158 v +o +40161 v +v +o +40173 v +40175 v +adv +p +vc +s +40181 o +v +40185 v +40192 v +40194 adv +v +v +40202 vc +p +40207 adv +v +40213 v +40215 v +40218 aux +40224 v +40226 adv +40230 v +40234 p +vc +40241 o +v +40250 v +40255 p +40259 s +v +adv +v +40266 v +adv +v +io +40274 v +40276 v +o +40280 v +40288 v +40292 v +40294 v +v +40307 v +40315 adv +adv +v +40321 adv +adv +v +40325 v +o +40334 v +40340 v +40347 adv +40355 v +adv +40359 adv +v +40362 v +40365 v +adv +40369 io +v +s +s +v +40377 io +v +o +o2 +v +o +v +o +v +40390 o +v +40393 adv +v +40396 o +v +v +40400 adv +v +40403 adv +v +v +40407 v +o +v +40413 v +io +adv +40418 o +40429 s +40433 s +40436 v +s +40441 s +40444 s +40448 s +40452 s +40458 s +40463 v +40468 v +s +v +40473 adv +v +40476 s +v +40479 v +adv +40483 s +v +v +40487 p +vc +40490 v +aux +40499 v +v +40505 adv +adv +v +40509 adv +40513 adv +v +40519 v +40529 v +o +v +40534 adv +adv +v +o +40544 o +v +40551 o +v +40555 v +io +40559 v +adv +40566 v +40568 v +s +40574 v +io +40582 s +v +40589 v +v +io +v +40597 p +40602 vc +40604 o +v +adv +v +io +40611 adv +v +s +adv +v +40623 v +40630 v +o +v +40634 s +p +vc +40642 v +adv +aux +v +io +40649 adv +v +s +adv +v +40655 v +40659 o +v +s +v +40668 v +v +o +40674 adv +v +40677 v +40681 v +40685 adv +v +v +o +40694 adv +v +v +o +40703 v +40705 s +v +v +io +aux +v +o +40717 adv +v +40722 v +o +40726 v +o +40730 v +40733 adv +v +o +40747 aux +40751 v +40756 vc +v +40759 adv +v +v +40766 v +o +40770 v +40772 v +io +aux +v +40780 v +io +40785 adv +v +40788 v +40792 v +40795 v +40799 v +40802 v +40808 v +40811 v +v +40816 v +v +40819 adv +40825 v +io +40830 v +aux +40837 v +40848 v +v +40851 v +40855 vc +o +v +40864 v +40873 adv +v +40876 o +v +s +v +40882 v +o +40888 v +40894 v +40898 v +adv +p +vc +40907 adv +v +o +p +vc +40914 o +v +s +v +40922 v +40924 v +40932 v +40938 adv +v +adv +v +40946 p +vc +40949 o +v +s +v +40958 adv +v +s +40962 v +40967 v +40969 o +v +40974 v +s +io +aux +40979 p +40981 v +40983 s +v +40987 v +v +40994 v +io +s +v +v +41000 adv +v +41004 adv +v +41009 v +41013 v +adv +v +41017 v +41020 v +aux +v +io +41025 v +v +io +adv +v +o +p +vc +adv +v +v +v +41040 v +41046 v +41048 v +v +io +adv +v +p +vc +v +41061 p +vc +41071 v +41087 s +v +adv +41091 v +41102 v +41109 aux +v +41112 s +vc +p +41116 v +41118 s +vc +p +41125 v +41128 v +io +41133 adv +41135 s +v +o +v +41140 v +io +v +v +41147 aux +v +o +41151 o +v +41159 v +41161 v +s +41168 v +v +41171 adv +v +s +v +41177 aux +aux +41180 v +41184 v +41186 v +41189 adv +v +v +41197 s +41205 adv +v +aux +v +io +41214 v +io +41218 v +o +41221 v +41223 v +v +41226 v +41231 v +41234 v +s +41243 adv +v +o +41247 s +41250 o +41252 aux +41256 vc +41260 v +41263 v +41269 v +v +41273 v +41275 adv +41277 s +v +41280 v +v +o +41284 v +41288 v +41296 v +41299 adv +v +o +41307 adv +v +v +41313 v +41316 v +o +v +adv +41322 v +v +41327 v +41332 adv +v +41337 adv +adv +41346 v +41351 v +v +io +v +io +o +41358 adv +v +41365 v +41368 v +v +v +41377 v +41379 v +o +v +io +aux +v +adv +adv +vc +p +s +41393 v +adv +41398 v +o +v +41403 v +o +v +41407 v +41410 v +o +41413 v +41417 adv +v +41433 adv +adv +41437 v +o +41440 vc +s +p +41445 o +v +v +41453 p +vc +41456 adv +v +v +io +41461 v +io +41471 v +v +o +v +io +p +s +v +o +41486 s +v +io +41491 v +41495 v +o +41498 v +41506 v +41508 v +v +41511 adv +p +vc +41515 v +41518 s +v +41522 v +io +o +v +41527 v +o +v +v +o +v +o +v +s +v +41538 s +v +41543 v +41545 v +v +o +v +o +v +s +v +41554 s +v +o +v +41561 adv +v +v +41565 v +41568 v +41572 o +adv +v +41577 v +41581 v +adv +41599 v +adv +41602 v +41605 aux +v +o +v +41610 p +s +vc +41614 v +41620 v +41627 v +v +41630 v +41635 v +io +41643 v +v +41649 v +adv +41654 v +v +41659 s +v +41664 adv +v +41690 adv +v +vc +41695 s +adv +v +41702 v +41705 adv +v +vc +41715 v +o +v +adv +v +v +41724 v +41728 adv +adv +v +s +o +41734 adv +v +v +41739 v +v +o +v +v +41748 v +v +41751 adv +v +v +41758 v +41761 v +41764 v +adv +v +41768 p +vc +41773 v +41778 v +41783 adv +adv +s +p +vc +o +v +v +41795 adv +41799 s +adv +v +41806 adv +v +vc +41812 p +41820 v +41823 v +41830 p +vc +adv +v +o +41836 v +o +v +v +41843 adv +41850 v +o +41853 v +41860 v +41862 s +o +v +41866 v +adv +41869 v +41875 v +41880 v +41884 v +41889 v +41897 v +41900 v +41902 v +o +41905 v +v +41911 v +41913 v +41917 v +41923 v +io +v +adv +41928 v +41933 v +v +io +41937 adv +s +41942 vc +41946 v +41952 s +adv +41956 v +41962 v +41964 v +41968 v +o +41971 v +41975 v +adv +41978 adv +v +41981 v +v +41987 v +v +adv +41991 v +41994 o +v +adv +v +io +v +s +42009 v +42011 v +42014 v +42018 v +42024 aux +v +io +42028 v +42033 s +v +io +42043 v +o +42048 v +42053 adv +v +42058 v +adv +42061 v +s +o +v +42072 s +v +v +42076 v +v +42085 v +o +42091 v +o +42094 v +v +42102 o +v +42107 s +v +io +42113 v +v +42120 v +adv +42123 s +adv +adv +v +v +v +42134 v +io +aux +v +42144 adv +vc +p +vc +42150 v +o +42158 v +v +42165 adv +s +adv +v +v +o +42175 v +42177 v +v +42184 v +o +42187 v +42190 io +aux +v +42199 adv +vc +p +vc +42206 v +42213 adv +v +42219 v +o +42222 v +o +42229 o +42234 v +42239 v +42241 v +v +42248 p +vc +42251 v +42255 v +42257 v +v +42260 vc +42270 v +v +42274 v +42279 v +42283 v +42285 p +vc +s +42289 s +v +io +42296 v +42298 v +42307 v +o +v +42311 v +42313 adv +v +v +42320 v +v +o +42324 s +v +v +42329 aux +42332 v +o +42335 adv +42338 v +42340 io +adv +v +o +42349 v +42357 v +42363 v +v +io +42370 s +v +io +aux +s +adv +42378 vc +42383 p +vc +42386 v +42388 v +v +42395 p +vc +42398 v +42400 v +42402 v +42404 v +42411 vc +p +s +v +o +42417 s +v +io +42421 v +42423 v +42426 v +o +v +io +adv +o +v +42435 v +42442 adv +v +adv +v +42447 v +42452 o +v +42458 v +42463 v +adv +v +v +v +v +o +v +42473 v +42477 v +o +42484 v +42492 v +42495 o +v +42501 s +v +42507 s +v +io +v +42515 v +adv +v +o +adv +io +v +42523 s +o +v +42527 s +v +42532 v +io +v +42539 v +o +42542 v +42550 adv +v +42558 p +42569 vc +42571 s +io +v +io +v +o +42584 v +v +o +42598 p +vc +42608 p +vc +42616 p +adv +vc +42621 s +io +v +42629 p +adv +vc +42634 s +v +io +42639 v +42642 v +42647 v +42651 v +42653 o +v +42658 v +adv +v +o +v +42664 o +42666 v +42671 p +vc +42674 v +o +42677 v +io +s +vc +42682 v +o +42690 v +42699 p +42716 v +42718 s +42721 v +42723 p +vc +42730 v +42736 v +42739 v +42744 v +o +v +42749 v +42752 v +v +42757 vc +p +42760 v +42764 v +42767 adv +42771 adv +p +v +42778 v +42780 v +v +42784 v +42794 v +v +42800 v +v +42805 v +s +42815 v +42820 v +42825 v +42829 v +42832 v +o +42843 s +v +v +42848 v +o +42851 v +o +42854 v +42860 adv +42862 v +42867 v +42873 v +s +aux +v +42878 v +42887 s +adv +42892 adv +adv +v +42896 s +v +42908 v +42911 v +v +adv +42916 adv +v +42919 adv +42922 v +42924 v +42926 v +o +aux +42930 v +o +42939 v +42943 v +io +42946 adv +42949 v +42957 v +s +v +42964 v +o +42967 s +v +aux +42974 s +42977 v +42980 v +42982 v +io +42989 adv +v +adv +42993 s +42996 v +v +42999 v +43004 p +vc +43009 adv +v +43012 s +43015 v +v +adv +43021 v +43027 v +43033 v +43038 v +o +43041 v +43045 v +o +43049 v +v +io +43054 adv +43057 v +43061 adv +v +43065 v +v +v +io +43070 v +43075 v +io +o +43079 v +43083 v +43089 v +43093 v +43095 v +43101 v +o +43107 v +43109 v +43111 v +s +v +43117 v +io +adv +v +v +43124 v +io +v +o +v +43130 v +v +o +43134 v +43136 v +43143 s +43145 v +o +43150 v +43152 v +adv +43157 v +43160 v +io +v +43166 vc +o +v +v +v +43172 v +43175 v +43179 s +v +43187 v +s +43192 v +43196 s +v +adv +43200 s +v +o +v +aux +aux +v +o +43209 v +v +io +v +v +o +43218 v +43221 v +s +v +43228 v +43230 v +v +43235 v +43239 v +43246 v +o +43249 s +vc +p +43253 v +43256 v +43260 v +43264 p +adv +v +v +v +o +43273 adv +43278 v +io +v +v +43285 v +o +43288 v +43292 adv +v +43298 v +io +43301 v +adv +v +43311 v +aux +adv +43315 adv +43317 aux +43324 vc +43326 v +43330 v +s +adv +v +43341 v +43343 adv +v +43346 v +io +v +adv +v +adv +adv +v +43355 v +43360 v +43370 v +p +vc +43382 v +adv +s +o +v +43388 v +43395 v +43400 p +vc +43410 v +v +v +v +43417 v +s +43423 v +43427 v +o +43430 p +vc +43436 v +v +v +v +v +v +43445 v +s +43449 v +43456 v +o +43461 vc +43468 v +43473 s +vc +43485 adv +v +v +o +43493 adv +adv +v +43499 v +43504 s +v +43509 v +v +o +43514 s +v +v +o +v +io +43523 vc +s +43530 v +43534 v +43537 s +43543 v +43547 v +43549 v +v +io +adv +aux +43555 s +v +io +p +43561 adv +43565 v +43567 v +o +io +43572 v +adv +v +s +43577 adv +v +v +43582 vc +43588 adv +v +43591 o +adv +v +43595 s +vc +43602 v +43605 v +v +o +43613 adv +v +43620 v +43627 adv +v +43630 o +v +43635 v +io +o +43641 v +o +43644 adv +43647 v +v +o +43651 v +43654 v +o +43660 v +43666 v +43673 v +io +43679 v +43682 v +io +43685 v +43696 v +43698 v +43705 v +43710 v +43714 vc +p +43717 v +43725 v +43729 v +43732 p +43736 p +43739 v +o +43743 v +43746 v +io +43749 adv +vc +43765 v +adv +43769 v +43771 o +v +43776 adv +v +adv +v +adv +43783 v +43788 v +43792 v +43795 v +43799 v +io +v +s +v +43813 v +o +v +43818 v +o +v +43822 v +io +43828 o +v +43831 v +43834 v +o +43839 v +o +v +v +43845 v +43849 adv +v +o +43855 vc +43861 v +io +43864 s +adv +v +43872 s +43875 v +43879 v +43882 o +v +43886 o +v +43890 v +43892 v +io +43896 adv +o +v +o2 +s +p +43903 adv +43909 v +adv +v +adv +v +adv +v +adv +v +v +43926 s +v +43930 v +43934 v +43937 v +io +adv +s +adv +v +43944 o +v +v +43948 v +io +43951 v +o +43957 v +v +o +43961 s +v +o +p +vc +43967 vc +p +adv +43971 v +o +43975 v +43981 v +43987 v +43989 p +vc +s +43995 v +43997 s +44003 v +44005 v +44007 v +44009 s +v +v +44013 s +v +44019 p +44023 vc +44025 v +44028 aux +s +v +44033 v +o +44036 s +v +io +44040 v +io +44043 p +vc +s +v +44061 s +adv +adv +v +o +44075 v +44079 v +44082 v +44085 aux +v +44090 v +44093 v +44102 v +44106 v +44108 v +44110 v +44112 v +v +o +44120 v +44122 s +44125 v +44127 vc +44131 p +44135 adv +v +44138 v +44140 v +44143 v +s +44149 v +44153 v +44155 v +s +v +v +p +vc +s +44163 v +io +44169 v +44171 v +v +44176 v +o +44180 v +v +io +44184 v +44186 s +44189 v +44192 v +o +44195 v +44198 v +s +v +44204 v +s +v +o +o +io +v +v +44213 s +v +aux +44217 v +44221 v +io +v +44227 v +o +44230 adv +v +44233 v +o +v +44242 v +v +o +44248 v +v +44253 aux +44255 adv +vc +p +44259 s +vc +p +44263 s +p +44266 v +v +44270 p +vc +44273 adv +v +44281 p +vc +44284 v +44288 v +44292 v +o +44295 adv +v +v +44300 v +44304 v +44307 v +44310 aux +v +v +44314 adv +44319 s +v +v +44323 v +v +44326 v +o +v +44330 v +s +v +v +44338 v +v +44341 v +s +v +44347 aux +aux +44353 v +44356 v +44359 adv +o +v +v +o +44365 v +44371 adv +s +44376 vc +44382 vc +44384 v +44393 v +44395 v +s +o +v +v +o +44403 vc +44406 s +44408 v +s +44411 adv +v +44417 v +44419 v +44423 v +44427 v +io +o +44431 v +44433 v +44437 v +io +44442 v +44445 v +44447 adv +v +44453 v +o +44456 v +o +44460 v +adv +v +s +v +44468 v +44471 v +s +v +44477 v +v +io +44483 io +v +44488 v +s +o +v +44493 v +44496 v +aux +44503 v +44505 v +io +adv +44513 p +vc +vc +o +v +44522 v +44525 v +aux +44530 v +44534 v +44542 vc +44546 v +v +aux +v +44553 o +v +v +44559 v +o +44564 vc +v +o +adv +v +44570 v +o +adv +v +v +io +44580 v +o +44584 v +44586 s +vc +44590 v +o +adv +v +44595 v +o +adv +v +44602 adv +v +44610 s +v +44614 o +v +44618 v +v +v +44626 v +44631 v +44633 v +io +aux +v +44639 v +io +44644 v +v +44649 adv +v +44652 o +v +v +44661 adv +v +s +v +44667 v +adv +44670 v +o +44675 v +o +v +adv +v +44683 v +44685 v +44694 vc +p +v +44700 v +v +44708 v +v +v +44716 adv +v +44719 v +o +v +44724 s +o +v +44729 v +adv +v +44737 v +44739 v +44741 v +v +44744 v +io +44747 v +s +44751 v +44757 adv +v +44762 s +v +44769 v +44771 v +o +44777 v +44784 v +44788 v +s +v +44798 v +s +adv +44808 v +44814 v +v +44822 o +v +apposition +v +v +44828 v +44836 s +44838 s +44848 v +44851 aux +v +44857 v +v +v +io +44862 s +v +44866 v +44869 v +v +44873 v +44876 v +44879 v +44890 adv +v +44896 v +s +44901 v +44905 o +io +44908 v +o +44911 v +o +adv +44915 v +44924 adv +v +o +44932 adv +adv +v +44941 v +44945 v +v +44948 v +v +io +v +44953 vc +44960 s +o +v +44980 v +o +v +44989 adv +v +44992 o +v +44998 v +o +v +45002 v +45007 v +s +45015 v +v +45026 v +v +45030 v +io +45035 o +v +45038 p +vc +45041 v +io +45047 v +v +45051 v +o +s +o2 +45056 v +io +45063 vc +45068 s +v +45072 v +45075 v +45078 v +45081 adv +v +o +45086 v +45092 v +o +45097 s +p +vc +45101 v +adv +v +p +45108 v +io +adv +s +v +io +45117 o +v +45120 v +45124 v +45128 s +v +o +45132 v +o +io +45136 v +45140 adv +v +45145 o +45152 v +io +45157 v +o +v +o2 +45162 v +45165 v +45167 s +o +45172 v +adv +45175 v +o +v +45179 s +45182 v +v +45185 v +45190 o +v +v +45198 adv +o +v +45202 v +o +45206 v +45209 v +s +vc +45214 v +o +45217 p +vc +45222 v +o +45227 v +45229 o +v +io +45236 v +45238 v +45243 v +45246 io +45248 v +v +adv +v +45253 s +v +o +v +45258 p +vc +45261 v +45264 o +v +45267 v +s +vc +45275 v +45280 v +45285 v +v +o +45289 v +45295 v +45305 v +45309 v +45313 v +45318 v +v +45321 v +s +p +vc +45326 v +45330 v +o +45340 v +o +v +aux +v +45346 adv +45352 v +o +45361 v +v +s +io +o +v +45368 adv +45370 v +45374 v +45377 v +io +o +v +45386 s +v +o +45390 s +v +45395 v +45398 io +45406 adv +v +v +45415 v +45420 v +45422 v +45427 v +s +p +vc +v +o +v +aux +s +v +io +45441 v +v +o +45445 s +p +vc +45449 v +45456 v +o +45464 v +45468 v +o +v +adv +45478 v +o +45481 adv +45485 adv +v +o +45489 v +adv +45494 v +45504 vc +45508 v +o +o2 +45512 v +io +45526 v +45530 v +45542 adv +v +adv +v +45547 p +vc +45552 vc +45556 vc +45559 v +45564 v +45569 v +o +45581 s +adv +vc +p +45586 p +45588 s +adv +v +45592 v +45596 v +aux +adv +v +45601 adv +v +v +o +o2 +45607 v +45610 adv +v +45614 vc +45620 v +45624 v +s +45629 v +45635 v +45644 s +o +o2 +v +45649 adv +45652 vc +45654 v +45658 v +45661 v +45666 v +v +45671 v +45686 s +v +45693 adv +o +v +s +v +45701 v +v +45704 v +45713 v +45717 v +adv +45722 v +adv +v +io +45734 v +45740 v +adv +v +45747 s +45755 o +v +v +45759 s +v +45769 v +v +45772 o +v +v +s +45778 adv +v +45783 s +adv +v +45787 v +o +v +aux +45792 p +s +vc +45796 p +45800 v +s +v +45804 s +v +v +adv +v +45810 s +v +45816 v +s +vc +45822 v +adv +v +45829 v +45833 adv +v +45836 v +s +v +adv +45841 adv +adv +45845 adv +v +io +v +s +45853 s +45865 v +45873 v +45878 v +45885 v +v +45892 v +45901 v +adv +45906 v +45911 adv +v +v +45915 s +v +io +45921 adv +adv +v +v +45926 v +45929 v +o +45932 v +45943 v +45956 s +45963 v +45968 v +45974 v +v +45978 s +adv +v +45982 v +45986 adv +45991 v +46000 v +46006 adv +v +46013 s +vc +46016 v +46019 v +s +46024 v +46027 v +46033 vc +46040 s +46045 v +46049 v +46055 s +46061 adv +v +46066 vc +s +46086 v +s +46093 v +46101 v +46103 adv +v +46109 v +46118 v +s +v +v +46123 v +46128 v +46133 v +o +io +v +46144 v +adv +v +46149 v +46151 adv +p +46155 vc +adv +46160 v +s +v +v +46165 p +vc +46172 v +io +46177 v +46183 s +v +46190 v +46197 v +46199 v +o +adv +adv +v +46215 v +46218 adv +46223 s +46225 v +46229 v +46236 v +46240 v +46242 v +v +46247 v +v +46250 v +46267 v +v +46273 vc +p +46279 v +46285 v +o +46288 v +46294 vc +p +46297 v +46304 adv +v +o +46308 v +46312 v +s +46317 vc +p +vc +46326 v +v +46333 adv +io +v +o +46338 v +46340 v +io +o +v +46345 v +46347 v +o +46350 v +o +46354 io +46356 v +46361 adv +v +v +46367 v +46371 v +v +v +io +46378 v +46380 s +v +io +v +adv +v +46387 s +v +io +aux +v +s +46396 v +o +46401 v +v +o +46409 v +46411 v +46416 v +io +46420 p +vc +46424 adv +46431 v +s +io +v +46437 v +adv +v +46441 v +v +46444 v +io +46447 v +46452 v +46455 v +46462 v +46465 adv +v +46470 v +46475 s +v +46478 v +io +46481 adv +46484 v +o +46487 adv +v +46495 v +o +v +v +v +o +46502 v +46506 v +io +46510 v +46520 adv +46525 v +46527 v +o +v +v +46532 v +io +v +s +vc +46543 v +o +v +46553 adv +46556 v +v +46571 v +46573 aux +46577 v +o +46592 v +v +46595 s +46601 v +46603 s +v +v +46610 p +vc +46615 o +v +v +46619 v +46627 v +vc +p +46631 s +v +io +46638 v +adv +46642 v +o +p +vc +46647 s +adv +p +46655 vc +46661 v +46664 v +46666 s +p +46669 v +46672 v +46675 v +46677 s +46681 vc +46684 v +46686 s +vc +46689 v +46696 s +v +io +46700 v +io +46705 o +46719 v +46727 v +aux +aux +aux +46733 v +o +46736 v +46741 s +v +46746 adv +v +46752 s +adv +v +v +46760 s +v +io +aux +46766 p +vc +46774 v +46776 s +v +v +io +aux +adv +v +adv +s +46786 adv +o +adv +v +v +46792 v +io +46795 v +o +46804 adv +v +46807 s +v +adv +46811 v +io +46814 adv +46816 v +o +v +adv +46824 adv +v +v +46831 v +o +46834 v +io +46837 v +46840 v +46845 v +v +46854 o +v +46857 s +v +aux +aux +s +adv +p +46865 s +v +io +p +vc +46871 v +v +46882 v +o +46888 v +46892 v +io +v +adv +v +46900 s +v +46908 v +46911 v +v +aux +46915 v +v +46930 v +46932 v +io +s +46937 v +o +46940 vc +46943 adv +v +46946 vc +46953 v +46958 v +46962 v +46966 v +v +s +46973 v +io +adv +v +v +v +46980 adv +v +46984 adv +s +v +v +s +46991 vc +p +46996 v +adv +46999 v +47002 v +o +47005 s +v +io +aux +adv +47014 v +47019 v +47021 v +v +aux +47025 v +47029 v +47039 v +47046 v +47049 v +v +47054 v +47057 v +o +47060 v +s +47064 v +47077 v +47084 vc +s +47091 adv +v +47098 s +vc +47109 v +o +v +47113 v +47122 v +adv +47125 v +o +47132 v +v +47141 v +s +v +47148 v +o +v +47155 vc +47157 s +v +v +adv +v +o +aux +47167 s +v +o +v +47175 vc +47179 v +aux +adv +vc +47184 v +47190 v +v +47198 vc +47202 vc +47204 v +47207 aux +adv +v +o +v +47213 adv +adv +v +s +v +s +47220 v +47223 v +47227 v +47235 v +io +47239 s +v +adv +v +o +adv +47246 v +adv +v +adv +47254 v +o +v +o +v +47260 v +o +v +v +v +p +vc +47268 v +o +47273 v +v +47279 v +s +v +47291 v +o +47297 v +47299 s +vc +47303 v +io +47306 v +io +47309 io +v +47313 v +47316 v +47319 v +47337 v +s +47340 s +vc +47347 s +47350 v +s +v +47354 s +vc +47357 s +v +adv +adv +v +47365 s +v +47372 v +47377 v +o +47383 v +v +o +v +v +s +v +47394 v +o +io +v +47399 v +s +47403 vc +47407 v +o +v +s +vc +47417 s +v +io +v +s +v +47426 v +47433 adv +v +o +47441 s +v +v +47445 v +47448 v +47453 adv +v +47461 s +v +v +47467 p +vc +47470 v +47476 vc +v +o +47481 vc +47493 v +47496 v +adv +47504 v +o +47508 v +47512 v +v +47518 v +47520 v +o +47526 s +o +v +io +47531 v +47537 adv +v +o +47543 v +o +47550 v +v +47554 v +o +47559 vc +p +47574 vc +47577 vc +47581 s +v +47591 v +47594 v +io +47600 v +47604 aux +s +47608 v +adv +v +47616 o +v +47621 adv +s +47624 v +o +47629 aux +47635 adv +47637 v +o +v +47641 v +adv +v +v +o +47647 v +io +47651 s +47657 v +47667 adv +47670 v +o +v +v +47677 s +v +v +v +v +o +47684 s +adv +v +47692 v +s +47697 v +47701 v +o +v +47705 s +v +47709 v +s +v +47713 v +47718 s +v +v +47725 v +47731 v +47734 o +v +47739 v +47745 v +o +v +47751 v +47754 v +io +47758 v +47763 v +o +47771 s +47775 o +47777 v +47780 s +v +47784 adv +v +47791 v +47798 aux +v +47803 v +p +47810 s +adv +v +47815 s +adv +v +adv +v +v +47823 v +47829 v +o +47836 o +v +47841 s +v +47844 v +47851 v +47854 v +47859 vc +p +adv +v +47868 o +47872 o +47878 v +aux +v +io +47883 adv +v +o +v +47888 v +47892 v +o +47895 v +47898 v +47900 v +47904 v +o +v +v +o +47910 s +vc +47919 v +o +47924 v +o +v +io +47929 v +47931 s +vc +47937 v +o +47940 vc +47949 s +47953 v +47955 v +o +47958 s +vc +47962 v +47967 v +47970 v +o +v +adv +v +s +47983 vc +47986 s +adv +47990 o +v +v +47994 s +47997 v +47999 v +aux +v +o +48004 v +48010 v +io +48013 io +v +adv +48018 vc +48023 vc +adv +48029 s +v +48040 v +48042 v +48047 adv +48049 v +48054 v +aux +48059 v +48064 o +v +v +48070 v +48072 v +v +48076 v +adv +48081 p +vc +48086 v +48092 v +48094 v +v +48098 v +48100 v +48110 v +o +48115 v +o +48118 aux +48120 adv +p +vc +48128 s +adv +48143 s +v +48149 s +v +48153 v +48159 v +v +o +adv +48164 v +o +48169 adv +adv +48173 s +adv +48178 vc +48180 s +v +48183 v +48186 s +48192 adv +v +48198 v +48203 v +v +48212 v +48226 v +v +o +v +apposition +48232 v +48235 v +48240 v +adv +v +48249 v +48252 v +s +48257 aux +48260 v +adv +48264 v +48266 p +vc +s +48270 v +48276 v +48279 adv +v +48282 v +48287 vc +p +48290 v +v +48293 v +io +adv +vc +48300 v +48302 v +48307 v +48313 v +48318 v +48320 v +48325 v +48329 v +48339 vc +48354 v +48358 o +48360 v +48369 v +o +48374 v +v +48380 v +v +48384 p +48386 v +48389 v +48391 v +48393 aux +48405 v +48410 adv +s +p +48414 s +v +48421 v +48424 v +48427 v +s +48430 v +48434 v +v +adv +48441 v +48443 adv +v +o +48447 v +48450 p +48454 o +v +48458 v +48460 v +adv +48463 v +48465 adv +p +v +48470 s +adv +v +o +48475 adv +v +48478 v +48486 v +io +o +48490 s +v +io +48498 s +vc +48515 adv +v +o +48528 v +o +48531 s +v +48534 s +vc +48537 v +v +48550 v +48552 adv +s +v +48561 v +o +v +adv +48569 adv +v +48574 v +v +48579 v +s +v +s +v +48585 v +48594 v +adv +48600 v +48602 o +adv +v +48606 s +v +48617 v +48620 adv +v +48625 v +o +v +48631 v +48637 v +48645 v +io +48655 v +48659 adv +v +48662 s +v +adv +v +48667 v +o +v +v +48676 vc +48678 v +adv +48683 v +48685 v +48689 v +48692 v +s +48696 v +48699 v +48701 v +v +io +48708 v +48710 v +o +48713 s +p +vc +48719 v +48731 v +io +48737 v +io +48742 v +48746 v +48750 v +v +48758 v +48760 adv +v +48765 v +io +48768 s +v +48776 v +adv +48784 o +s +v +s +v +48793 v +io +s +io +48798 v +48800 p +vc +v +o +v +48806 v +io +adv +48814 s +v +48820 v +48829 s +vc +p +v +o +48835 v +48837 s +48841 adv +v +48844 s +v +v +48848 o +v +v +io +48858 adv +v +s +48865 v +v +io +v +48871 adv +48873 s +v +io +48880 v +48883 v +48885 v +48888 p +48892 o +v +48896 adv +vc +48901 v +v +48905 v +48917 adv +v +48923 v +48927 v +io +48930 adv +v +v +48936 v +48943 v +48956 v +48959 s +48963 aux +s +v +48974 s +v +48980 adv +v +48984 o +48986 v +o +48992 v +48996 v +o +48999 v +49002 v +s +o +v +49009 v +49014 s +v +o +v +49035 vc +49041 vc +49046 p +vc +49050 s +vc +49057 s +49060 v +49064 v +adv +49067 s +v +49071 s +vc +49076 vc +49087 v +49091 o +adv +v +v +49096 v +49099 s +adv +p +s +v +49107 v +49112 s +v +49117 vc +s +49123 v +49131 s +v +49143 vc +49149 v +49153 o +adv +v +49159 v +49163 o +adv +v +49167 s +v +o +v +o +49174 vc +49177 v +49182 s +49197 v +49201 p +vc +49204 v +49208 v +49221 s +v +49226 v +v +s +vc +adv +v +49235 v +49238 vc +49240 p +adv +vc +49250 v +49260 v +49269 v +o +s +v +adv +49277 vc +49283 s +v +49286 p +vc +49293 v +49304 v +o +s +p +vc +49310 v +49312 adv +v +49315 v +49317 s +adv +vc +49323 v +o +49326 p +s +p +vc +49331 v +adv +vc +49336 vc +s +49339 v +adv +49342 v +io +p +vc +49347 o +v +49350 v +o +o +v +49356 v +s +49359 v +49363 v +49368 v +49373 v +vc +49379 v +o +49382 v +io +49385 adv +v +49388 s +adv +vc +49398 v +io +49402 v +s +v +49409 v +o +s +adv +v +49417 v +adv +adv +vc +s +p +49424 v +49430 s +49433 v +49437 adv +49444 v +49447 v +49451 v +v +49458 v +49463 s +vc +49467 s +v +49471 v +49473 s +49476 vc +49478 p +adv +vc +s +adv +v +o +49487 v +49492 v +s +49496 v +49498 v +s +v +49502 v +49505 v +49511 v +49514 s +adv +v +o +49520 v +o +v +49525 s +io +v +49531 v +49539 s +vc +49542 v +49546 s +v +49549 v +49551 s +vc +49559 adv +v +49570 v +49573 v +v +v +49581 v +49585 s +v +49588 v +49594 v +49596 v +s +v +v +io +o +v +49604 s +v +io +49608 s +vc +v +aux +adv +v +v +io +v +49618 v +49620 v +49622 v +adv +v +49628 v +49632 s +vc +49636 vc +49647 v +49651 v +o +v +s +adv +49662 v +io +v +49667 s +49670 p +v +o +49676 v +o +49680 v +s +vc +49687 s +vc +49690 s +vc +p +49695 v +v +49701 v +o +49704 v +io +49708 v +o +49711 vc +49722 v +s +49727 v +io +o +v +s +49738 v +49747 v +io +s +49752 vc +v +49756 v +io +49760 v +49762 v +v +s +49767 v +49771 v +49774 aux +adv +49779 s +adv +vc +v +io +s +adv +o +v +v +s +49791 v +io +49795 o +s +v +vc +49802 s +v +v +io +s +aux +s +vc +49814 s +49818 vc +v +s +49822 v +io +49825 v +io +49828 v +o +49833 v +49836 v +49838 v +io +49842 v +io +v +49847 v +49866 s +v +49873 vc +49878 p +49880 v +49892 v +s +v +49901 o +adv +v +49905 v +io +49909 s +49913 aux +adv +v +49919 v +49927 o +v +io +v +49934 adv +49943 v +49949 v +io +49953 v +49956 adv +49958 v +o +49963 v +io +v +adv +49968 v +49972 s +v +49976 v +49981 p +vc +49984 adv +v +p +vc +49989 v +49993 v +49996 v +50002 v +io +50006 adv +50010 v +50013 v +50016 s +v +50027 v +50035 v +50040 v +50048 v +50064 adv +v +50070 p +vc +50077 v +50083 v +50088 v +50097 v +50099 v +o +50103 o +v +50119 v +50123 v +50128 v +v +v +o +adv +adv +v +50142 v +50154 v +o +50157 v +50161 v +io +50165 v +io +50168 o +v +v +s +50173 v +io +v +50183 v +o +50186 v +50193 v +50198 s +50202 v +o +50205 s +v +50215 v +50218 v +50223 o +v +50226 v +50232 o +v +50238 vc +50248 s +v +50254 v +50258 o +v +50263 adv +v +o +io +50269 s +v +o +50274 adv +o +v +50278 s +v +50284 s +v +s +vc +50292 v +50300 p +s +adv +s +v +50307 adv +50309 v +io +aux +v +50316 v +adv +50319 s +v +50324 o +s +v +v +50329 adv +vc +50335 v +s +50338 v +io +50342 v +io +50345 adv +s +v +adv +adv +v +v +50356 v +50361 adv +v +s +v +p +vc +50368 v +50375 adv +v +50378 v +v +s +50383 v +io +50386 adv +s +v +50393 adv +v +v +50402 v +50406 p +vc +50410 v +50414 p +vc +adv +v +50419 v +io +v +s +v +adv +50427 adv +v +v +50434 v +50436 adv +v +adv +v +50441 adv +v +p +vc +50447 v +50451 v +s +50454 v +io +adv +v +s +v +v +s +50463 v +io +s +vc +50472 o +adv +v +50477 v +io +50480 o +v +v +50484 o +v +v +50491 adv +v +50496 v +io +50499 adv +v +adv +50503 v +io +50507 v +50509 s +v +50515 adv +50520 v +50527 s +v +50534 adv +v +v +50544 v +50547 v +50551 adv +v +50562 v +50566 v +50569 adv +v +50572 v +50577 v +50586 v +50591 v +50597 v +50600 adv +v +50603 adv +v +adv +v +50608 adv +v +50619 p +vc +50626 v +50631 v +50634 adv +50641 vc +p +50649 o +v +v +50655 adv +v +50661 adv +v +50668 v +50671 v +50676 v +50687 v +50699 adv +v +50704 v +50716 s +p +vc +adv +50721 v +50723 v +50725 adv +50731 s +50733 v +s +50744 v +50749 v +io +aux +s +vc +50759 io +s +v +aux +s +v +50766 s +v +50770 v +s +50773 v +adv +v +s +v +o +50780 adv +50783 io +50789 io +v +50792 v +adv +vc +s +50805 v +50808 p +vc +50816 v +50818 v +o +adv +v +50833 v +v +s +v +50838 s +v +50841 adv +v +50845 vc +50847 vc +50854 vc +50859 v +50864 v +50867 vc +o +50872 o +v +50878 s +v +50881 v +50885 v +50889 p +vc +50892 o +v +50900 v +50902 adv +50905 v +50910 v +50914 o +v +50921 v +50925 v +50930 v +50933 adv +v +o +50941 v +50946 v +50950 v +50954 s +50961 s +50965 adv +v +50971 v +50975 v +adv +50981 v +s +v +50988 v +50993 vc +p +50998 o +v +s +51006 vc +p +51014 v +51018 v +adv +51023 s +vc +51027 v +51032 v +o +v +io +51038 v +io +v +51045 v +51050 o +v +51053 v +io +51059 adv +51061 p +vc +51066 p +vc +v +v +51071 adv +v +s +adv +v +s +51078 v +io +51081 v +51087 p +vc +51090 v +io +v +io +v +51096 s +v +o +51101 v +io +51104 v +v +io +aux +adv +o +v +51114 vc +p +51117 adv +v +51122 v +51124 s +p +vc +51131 s +v +io +51137 s +51140 v +51149 v +s +51152 v +io +51156 v +51161 v +adv +51165 s +v +51170 o +s +v +io +51176 v +51183 o +v +io +vc +51191 v +51195 v +51200 aux +v +io +51207 adv +v +51210 v +adv +v +v +io +v +v +51221 v +adv +v +51227 v +adv +v +o +v +io +51235 adv +v +51238 o +adv +v +51244 v +51246 o +adv +v +adv +vc +51253 o +o2 +v +v +io +51260 aux +v +51263 p +vc +s +51273 v +51275 s +v +51280 vc +51283 adv +v +v +v +io +51290 v +o +aux +51294 v +s +51305 v +51308 s +v +o +adv +v +s +v +o +v +51323 vc +51325 v +s +51328 p +vc +51334 v +51342 adv +51345 o +v +51348 v +adv +p +51355 v +51360 v +v +v +io +51366 v +51370 vc +p +v +51374 v +s +v +io +o +v +io +51385 v +io +vc +51391 v +51396 v +51400 v +51402 s +v +o +v +51407 adv +v +51412 v +51419 v +51424 v +51427 v +v +51430 s +v +io +51434 o +v +51437 s +vc +51441 v +51446 v +51452 v +o +51456 v +aux +v +51460 s +v +io +s +o +v +v +o +s +adv +v +51472 v +51478 s +v +io +v +v +io +51488 vc +51490 v +51494 v +o +51497 v +51502 s +v +51505 p +s +vc +51511 v +aux +v +io +v +51520 v +51524 p +vc +51528 adv +51530 v +o +v +51534 v +o +51540 adv +v +51543 v +51546 v +51552 vc +p +51555 s +vc +51558 v +51560 s +51562 v +s +v +o +v +o +adv +s +v +s +v +51574 s +51579 v +51588 v +51596 v +51598 v +io +51601 o +v +51605 v +51610 v +s +v +51616 v +adv +51623 v +51631 v +51633 adv +51638 v +51640 s +v +51643 v +51645 s +vc +adv +51657 v +adv +51665 v +51667 s +51672 o +adv +v +51677 v +51681 v +o +51685 v +51687 o +v +51697 v +51702 v +adv +51709 adv +v +51713 o2 +51715 v +51721 v +51724 s +v +51727 s +v +51735 v +51739 v +51741 v +51743 v +51748 v +v +51751 v +51757 adv +51761 v +51764 v +v +51770 aux +v +51773 v +51777 v +io +51781 v +51785 v +v +51791 o +v +io +51797 v +51799 adv +s +v +51804 v +o +v +51811 v +51813 v +51820 p +vc +51823 v +io +51826 adv +51829 v +o +51834 v +51843 v +io +51850 v +51852 v +51860 adv +51864 v +51867 v +51876 v +51881 v +s +51886 vc +51895 vc +adv +p +51900 v +51903 v +51906 v +51910 v +51916 s +51919 v +51924 v +51930 v +51936 p +vc +s +adv +v +adv +51943 vc +51946 p +51951 v +51958 s +v +v +51962 v +51966 adv +v +v +io +v +p +vc +v +io +51976 v +aux +o +adv +v +51983 v +51986 v +o +51993 adv +v +s +s +51999 v +v +io +52004 v +v +52010 v +52012 adv +vc +p +52018 v +52023 v +52025 vc +p +52032 v +52036 v +p +vc +52040 adv +v +adv +v +52047 s +v +io +52051 v +o +o2 +s +io +v +v +52062 v +v +o +p +vc +52070 v +io +v +52074 v +52077 v +adv +v +p +vc +52085 v +s +vc +52093 v +o +52101 v +io +aux +p +vc +adv +v +52109 adv +52112 adv +v +v +52118 v +52122 p +vc +52125 v +o +o2 +52131 v +52137 o +v +52142 s +v +io +52150 v +s +v +52156 adv +v +o +v +52164 adv +v +52172 v +52175 o2 +o +v +52181 v +52185 v +io +52189 v +io +adv +v +52195 v +52198 o +52200 adv +v +o +52205 v +52208 o +s +v +o +52215 adv +v +52220 v +52224 v +io +52227 o +s +v +52234 v +io +52237 s +v +52243 v +52247 v +adv +52252 o +v +v +52259 v +o +52265 v +52269 s +v +52274 v +52278 adv +v +52282 adv +v +52287 v +o +52291 v +io +52298 v +52300 v +52302 v +o +v +52310 adv +v +52313 v +52322 v +io +52325 v +s +52328 p +vc +52333 v +52342 v +v +52348 v +o +52352 adv +52356 v +o +v +52362 o +v +io +o +v +52370 vc +adv +v +o +52375 v +52384 v +52389 v +52393 v +52400 v +52404 adv +v +s +v +52410 o +52412 v +v +52419 p +vc +52423 v +52432 v +o +52435 s +v +52442 adv +vc +p +p +vc +52448 v +52452 v +52454 p +vc +52458 o +v +52462 s +v +52467 v +52471 s +adv +52477 v +52479 o +v +52482 s +v +s +vc +52489 v +52491 v +52493 s +v +v +52503 s +v +52513 o +v +io +52519 v +o +52524 o +v +v +52532 o +v +52536 v +o +52539 s +v +52546 adv +v +52551 v +52553 adv +v +52560 v +52562 o +v +s +o +s +adv +v +v +52573 s +v +52579 v +52581 s +vc +52584 v +52588 adv +v +v +52594 o +v +o +52599 adv +v +52602 v +o +52609 adv +v +52613 s +v +52622 adv +v +o +52626 s +v +52633 o +v +adv +v +s +v +o +52642 v +52651 adv +v +adv +v +52656 s +v +o +52662 vc +52664 v +o +52669 s +v +52673 v +o +52676 v +o +52681 s +v +52688 adv +v +adv +52694 v +52697 v +52708 v +o +52713 v +52716 o +v +52720 v +52722 v +52726 s +52728 adv +v +52735 vc +p +52746 v +52750 v +52754 v +52757 v +52760 adv +v +o +52764 v +s +52767 o +v +v +o +52772 s +v +o +v +v +v +io +52784 adv +v +adv +52788 s +52791 v +v +io +52804 vc +s +p +s +v +52816 s +p +vc +52821 v +52824 v +52827 v +52829 vc +52836 v +52844 v +52850 v +v +52853 v +adv +52859 o +v +52863 v +v +52868 v +52870 v +52873 adv +s +v +52877 v +52879 v +52882 adv +52889 s +v +52892 v +52896 v +o +v +apposition +v +52902 s +vc +adv +52908 v +52913 v +52915 v +v +52918 v +o +52921 v +o +v +adv +52933 s +v +v +52943 v +52946 v +52953 s +adv +v +52957 adv +v +52968 v +v +52971 v +52978 v +52981 v +52989 v +52991 v +52993 s +v +io +s +vc +adv +v +53001 v +v +o +53008 adv +vc +53017 v +53023 v +53027 v +53031 adv +vc +p +53035 adv +s +53040 v +53050 adv +53054 v +53056 s +v +53063 adv +v +53067 v +53072 v +53076 s +adv +vc +p +53084 v +s +53090 v +53093 v +53097 v +o +53102 v +io +aux +adv +adv +v +v +io +53113 v +53116 v +io +v +o +53122 v +o +53126 v +53131 v +v +53137 v +53142 v +53146 o +53151 io +v +53154 o +53159 v +53161 v +53164 o +v +53167 v +53172 v +s +53175 v +io +p +vc +53184 v +53186 o +v +s +53190 v +io +53195 v +s +53198 v +53200 v +o +o +v +53209 v +53220 v +io +v +53224 v +io +53230 v +io +53233 s +v +io +53245 v +io +53259 vc +53261 v +53266 o +v +53271 v +53274 aux +adv +v +io +53281 v +io +53285 s +vc +53292 v +53297 v +53300 v +53305 v +adv +53308 v +io +53312 v +o +53315 adv +v +53318 o +v +io +53325 v +53328 v +53333 v +adv +53336 v +53342 v +53351 v +o +53354 p +vc +53359 v +o +53363 o +v +io +adv +v +53371 v +o +53378 p +vc +53388 v +53392 v +53395 v +53399 v +o +s +53407 v +53413 v +s +vc +53419 v +53424 v +53426 s +vc +53432 adv +s +v +53440 adv +adv +v +53447 v +v +s +53451 v +io +adv +v +53457 s +v +v +53463 adv +53467 v +o +v +o +s +v +o +53484 vc +s +53490 v +53495 v +v +53503 v +s +53508 vc +53512 s +v +53518 v +io +53521 v +v +53525 s +vc +53534 v +53541 v +s +vc +53550 v +53552 s +53555 v +53557 adv +v +s +vc +53564 v +53569 v +53571 s +v +53577 v +53585 o +s +v +53591 vc +53598 v +53603 v +adv +v +s +io +v +53611 v +53613 v +io +53619 v +io +53623 v +53631 v +53635 adv +v +o +53641 v +53646 v +53650 v +53653 s +v +o +53665 vc +53672 vc +53674 v +53679 v +53685 v +s +53690 v +o +53693 v +53695 s +v +53702 v +o +s +v +53708 s +vc +53715 v +53718 v +53722 v +53724 v +53728 v +53732 o +v +53736 v +53745 v +v +p +vc +53752 s +v +o +v +53759 v +53763 v +53769 v +io +s +o +v +53776 v +53781 v +p +vc +53788 vc +53790 v +53793 adv +v +o +53798 o +s +v +io +p +vc +53805 p +vc +53808 v +53812 s +adv +v +53816 v +53821 p +vc +53824 adv +v +53827 p +vc +53830 v +o +53833 v +53836 v +io +53839 s +v +v +53845 adv +53848 io +53858 v +53863 adv +53866 v +53868 v +53876 v +v +v +io +53882 aux +53885 v +53889 v +53891 s +v +53894 v +53896 s +vc +53902 v +io +53907 s +53911 v +53916 p +vc +53919 v +53925 s +v +v +o +53936 v +53943 adv +v +53948 v +53950 v +o +v +53956 vc +p +53965 v +53971 v +adv +53974 v +53983 v +53987 o +v +53990 s +o +53994 v +53996 v +s +54000 vc +54002 o +v +v +o +54009 adv +54013 v +54017 v +io +54025 adv +v +54032 adv +vc +p +adv +v +54039 v +o +54042 o +v +54045 s +v +54053 p +vc +s +v +54060 s +adv +v +54071 adv +v +54074 o +v +io +v +54083 v +54090 adv +54093 v +54103 v +o +54109 v +p +vc +s +54117 vc +p +54123 s +v +54126 p +vc +54129 s +v +adv +54133 v +54137 s +adv +v +54148 adv +54151 v +v +s +54158 v +54160 v +54163 v +adv +s +o +v +adv +v +54171 v +io +s +54175 v +54179 adv +vc +p +54184 v +o +54187 s +v +54192 v +v +54197 adv +54201 vc +54203 s +54206 v +54210 v +54215 v +54218 v +54222 v +o +s +p +vc +54228 s +54231 adv +vc +54234 s +v +io +54243 v +54246 adv +o +v +v +v +54253 o +v +s +o +v +v +v +s +54262 v +io +54266 v +54268 s +v +54272 s +v +io +54282 vc +54290 v +o +54293 o +v +s +54299 adv +v +54304 o +v +54309 o2 +v +54314 v +54321 v +54323 v +54329 s +vc +o +v +v +54335 aux +adv +v +54339 o +io +v +adv +adv +adv +v +54349 s +vc +54354 o +v +p +vc +54362 v +s +v +p +vc +54368 v +54372 v +54376 v +o +v +54380 v +p +vc +54386 adv +v +54389 vc +p +54392 v +o +o +s +adv +v +s +v +o +54404 vc +s +o +v +54409 v +o +v +54413 s +v +54420 adv +v +54429 s +v +54434 v +54438 v +54442 v +o +s +v +v +54451 v +54454 o +54456 v +54462 o +54464 v +o +54467 v +54470 adv +54475 vc +54477 v +54480 v +o +v +o +54485 adv +v +54488 p +vc +s +v +s +adv +v +54496 v +54501 adv +v +s +v +54506 s +adv +v +o +54511 v +54517 v +54519 v +54522 p +vc +54527 o +v +v +o +54532 adv +v +54535 p +vc +s +v +s +adv +v +54551 v +54555 v +v +54558 s +v +v +54564 v +54566 v +54570 v +54575 v +54580 v +54582 o +v +54587 o +v +v +54591 v +54595 adv +v +s +54599 s +adv +v +54606 v +54610 v +s +vc +adv +54616 s +v +s +vc +54623 s +v +54632 v +54636 v +54647 p +vc +s +v +54654 s +v +54665 v +v +o +54669 s +v +54676 v +54685 v +io +s +54690 adv +v +o +v +54696 adv +v +adv +s +54704 v +54706 v +io +54713 v +54719 v +54731 adv +v +54735 p +vc +v +54742 v +54745 adv +vc +54754 v +54758 adv +v +adv +54764 v +o +v +v +54769 v +io +54777 vc +v +54780 v +54785 s +adv +v +54789 v +s +54796 s +v +54804 adv +adv +v +54814 v +54818 v +v +o +54822 v +54833 v +54835 v +o +54839 v +io +aux +54845 v +adv +v +54852 s +io +v +54857 v +54859 s +o +v +54863 o +v +v +o +54868 v +v +o +54874 adv +v +54878 v +54884 v +v +o +v +v +54894 adv +54899 v +54901 adv +adv +v +v +54909 s +v +54915 v +v +54919 v +54927 v +adv +54936 v +54940 v +54942 o +v +54947 v +io +54951 p +vc +54957 s +o +v +54961 s +v +s +aux +54966 v +io +54970 adv +s +o +v +v +54976 adv +v +54979 adv +io +v +54984 v +s +vc +54992 v +o +54996 v +55001 v +55007 v +io +55011 s +55014 v +55018 adv +vc +p +v +s +55024 v +io +55027 s +v +55031 p +vc +55037 v +adv +v +55041 adv +v +55044 s +adv +v +adv +v +55050 adv +v +s +55056 v +s +adv +v +o +55063 adv +v +s +55070 p +vc +55073 p +adv +vc +55080 v +o +55089 v +55095 p +vc +s +vc +55100 v +55104 v +55108 v +o +55112 v +io +p +vc +55119 v +s +55122 o +v +55129 o +v +55136 v +55140 v +55144 v +55149 s +v +o +55153 adv +v +55159 v +adv +io +s +v +55165 v +o +55172 v +adv +s +v +v +s +adv +v +55181 v +55185 v +o +55188 v +adv +s +v +v +s +adv +v +55197 v +io +s +55203 vc +s +55208 vc +s +55214 vc +s +adv +vc +55223 v +io +55226 v +55233 adv +v +55236 s +vc +v +55244 v +io +s +p +vc +v +io +55254 o +55257 adv +v +io +v +o +55269 v +o +p +vc +o +s +v +55278 o +v +55283 adv +v +55288 io +v +55291 v +55295 v +55300 adv +v +55303 s +vc +55308 v +o +55312 v +o +55316 o +v +55320 v +o +55324 vc +adv +v +o +o2 +55330 s +55334 v +adv +o +s +v +s +v +55344 v +55349 v +o +55353 s +v +55360 adv +55363 vc +55365 v +55371 v +o +v +55378 vc +55380 o +v +adv +adv +s +v +55387 p +vc +v +io +55395 v +io +55400 v +55403 vc +55410 adv +v +55420 v +55428 o +v +adv +p +vc +v +55437 vc +55439 v +o +v +55447 adv +v +55451 o +s +v +55457 v +55461 o +v +55466 v +v +55469 v +io +55474 p +vc +v +io +55484 vc +55489 v +55491 adv +v +v +55496 s +55499 io +v +o +v +55506 o +s +adv +v +s +v +55517 v +io +s +55522 adv +v +55528 v +v +io +55538 vc +55540 v +o +55543 s +55547 v +55549 v +55554 v +55556 s +o +v +55565 adv +v +55568 adv +v +v +55575 s +55581 vc +55588 v +v +s +p +vc +55599 adv +v +55602 adv +vc +s +55608 v +55614 v +55616 p +vc +55623 aux +55627 v +adv +v +o +55634 v +o +55639 o +v +55643 s +adv +v +o +55648 vc +55656 v +55659 s +adv +v +55666 adv +vc +v +55672 v +io +55675 adv +v +s +55679 p +vc +s +55683 o +v +v +s +s +o +adv +v +55692 v +55697 s +v +o +55701 s +adv +v +55707 v +55709 v +55711 v +55714 v +io +55717 s +55721 v +o +55725 v +55729 v +io +55733 adv +v +55736 o +v +s +v +55744 s +v +55747 s +55751 v +55754 v +o +55760 s +p +vc +55767 s +v +55772 v +o2 +o +v +v +s +55779 s +v +o +55785 p +vc +vc +55792 v +o +adv +s +v +55800 vc +55802 adv +v +o +55806 s +v +o +55810 v +55812 adv +v +o +vc +55820 v +o +55826 v +55831 v +55833 v +55839 v +55841 v +55843 v +55850 adv +v +55853 o +v +v +io +s +55860 v +io +55863 s +v +s +v +55868 v +o +55871 v +55875 s +v +55878 v +55883 v +v +55890 v +o +55895 v +aux +s +v +55905 adv +v +v +s +55910 s +v +55918 v +55925 v +s +v +55931 v +o +55934 s +v +v +s +55939 s +v +v +55946 vc +vc +55951 o +v +v +adv +55956 v +o +55962 v +55970 v +io +v +v +55979 s +vc +v +55983 v +55985 v +55987 v +v +55994 v +o +55999 p +vc +v +56003 s +vc +56006 v +56008 v +s +v +56012 p +vc +s +v +adv +56018 p +adv +vc +s +v +56024 s +vc +56027 v +io +56030 adv +v +56035 v +s +56040 vc +p +o +v +56045 v +56050 v +io +56053 v +56058 v +56060 v +56062 v +v +56065 v +io +p +vc +s +v +adv +v +v +56082 vc +p +56089 v +56093 v +56098 adv +v +o +56104 adv +v +56107 s +v +io +o +v +56117 v +56119 v +56121 v +56126 adv +vc +56136 adv +v +s +v +adv +v +56146 v +56148 s +vc +56153 v +56156 adv +o +s +v +56163 v +56168 s +v +56171 p +vc +56174 adv +v +56181 vc +p +56184 v +56186 adv +v +56192 v +56194 v +o +v +s +vc +56202 adv +s +v +56206 adv +v +56209 adv +v +adv +56213 v +56218 v +v +56221 s +vc +56228 adv +v +56231 adv +adv +v +adv +v +56237 s +v +56242 s +adv +v +o +v +o +v +s +56252 v +o +v +56259 v +56263 adv +v +56269 s +o +v +o2 +p +vc +56280 v +56282 p +vc +o +v +56287 v +56292 s +vc +p +56296 v +io +v +o +56302 s +v +56308 p +vc +56311 v +s +56314 p +vc +adv +v +o +v +56321 p +vc +adv +v +56326 v +io +o +v +io +adv +v +56336 v +io +v +io +adv +56342 adv +v +adv +adv +v +v +56351 v +56354 vc +56356 v +o +56359 v +s +56363 vc +56365 s +56369 vc +s +v +56373 io +v +56378 o +adv +v +p +vc +v +56387 v +io +56394 vc +56396 s +adv +v +p +vc +56402 v +56406 v +56410 o +adv +v +56415 s +p +vc +56422 v +o +v +56428 adv +v +56431 v +s +56435 v +56437 adv +vc +s +56442 adv +v +v +o +v +56448 v +io +56452 s +v +adv +56456 s +v +o +56460 v +o +adv +v +s +56466 v +o +adv +56470 v +o +v +s +v +56480 v +s +56483 v +56485 p +vc +aux +56489 v +56492 v +io +56497 v +o +56501 v +56504 s +vc +56507 s +v +v +aux +56512 v +o +56515 v +56520 s +56525 v +56528 adv +v +v +56533 v +p +vc +v +o +56544 vc +56546 v +io +56551 p +vc +v +io +56558 p +vc +56561 adv +v +o +56565 adv +v +56568 v +56572 v +56575 v +io +56579 v +56589 v +adv +s +p +vc +56595 p +56598 v +56602 vc +56606 io +56609 v +56616 v +56621 v +56625 v +o +56631 v +56634 v +56638 o +v +56641 v +56646 o +56649 v +56651 v +56655 adv +v +56664 v +io +56669 s +adv +v +p +vc +o +v +io +56678 v +adv +56684 v +io +56687 s +vc +56694 s +v +56698 p +vc +56701 p +56703 adv +v +o +56708 s +vc +56715 s +v +v +56719 v +56721 v +56723 o +v +56727 adv +v +56732 v +56734 v +56736 v +s +v +56740 o +v +56743 adv +v +s +vc +56758 v +56765 adv +vc +p +adv +adv +vc +56773 p +v +56777 v +56779 v +56783 v +56787 v +o +56790 v +56792 p +vc +56795 adv +v +adv +56801 s +vc +56808 v +56812 v +o +56817 v +o +56821 s +v +56829 v +56836 v +s +adv +vc +56844 o +s +v +v +56852 v +56854 vc +56861 o +56864 v +56866 s +v +56872 adv +v +o +s +v +o +56881 s +v +o +56886 o +v +v +o +56891 o +v +adv +v +o +56899 v +56904 s +adv +v +56915 v +56919 o +v +56922 v +adv +o +v +s +v +56931 adv +vc +v +56935 s +v +56939 v +v +adv +56947 p +vc +56950 v +56962 v +o +56967 v +io +56974 v +56976 s +vc +56980 v +io +adv +v +io +56987 v +io +56990 adv +v +56994 o +s +v +57003 s +v +57008 s +adv +v +57012 adv +vc +57026 v +s +v +o +57031 v +o +s +v +io +57041 v +57046 adv +v +s +o +57057 o +v +io +adv +p +vc +57064 s +v +v +57076 p +vc +v +adv +o +57084 v +o +v +io +57093 v +io +57102 o +v +v +io +57111 adv +v +o +57119 s +p +vc +v +o +o2 +v +io +57137 s +v +p +vc +57142 o +v +o2 +57151 v +57153 adv +v +v +57158 o +57161 v +57163 v +57167 s +v +57170 v +57172 v +57176 vc +57178 adv +v +57185 adv +v +o +57190 v +57192 o +adv +v +57197 v +57199 v +57201 v +57207 s +57212 v +o +v +adv +57217 v +57223 v +adv +57231 adv +57234 s +57238 v +adv +57241 s +v +57246 v +57249 s +57252 v +57255 o +v +s +57260 p +vc +57263 s +v +57267 adv +57269 v +57271 v +57285 vc +s +57288 v +57291 adv +57293 v +57304 v +57306 v +57311 v +aux +aux +o +v +v +57318 v +57321 v +57325 adv +vc +57336 v +57344 v +57358 v +57360 v +57362 adv +v +57365 adv +v +apposition +57370 adv +57373 v +57376 v +57380 adv +v +io +57385 aux +adv +v +o +v +57393 adv +v +adv +v +s +57401 vc +57405 s +v +57410 adv +v +57418 v +57421 s +v +57426 v +57430 adv +vc +57434 o +v +57439 v +io +57445 v +57447 v +57449 v +o +57452 v +57455 io +aux +57458 v +v +57461 v +57469 s +v +57477 v +57479 adv +v +io +57484 adv +s +v +57488 v +57492 v +57494 adv +vc +p +57498 v +57502 v +57505 vc +p +57509 v +57513 v +57517 v +57520 v +s +57524 adv +v +57530 vc +s +57544 v +57551 v +o +57558 v +57560 s +v +57564 v +o +57567 s +57571 v +57573 v +57578 aux +57580 vc +p +57583 adv +v +57588 adv +adv +v +57593 o2 +v +57597 v +io +57601 v +io +57605 v +57609 v +io +57613 v +57615 v +57623 v +io +57627 s +vc +57635 v +57639 v +v +57644 v +57646 v +57651 v +57655 v +o +v +io +aux +aux +s +v +57664 s +vc +57676 v +57678 o +v +v +57682 v +57687 adv +v +57691 v +57693 v +o +57696 s +57698 v +v +adv +57702 v +57707 v +57714 vc +adv +57719 adv +v +o +57728 vc +57735 v +o +v +57741 adv +v +57744 v +v +o +v +57749 v +57754 v +adv +57760 v +p +vc +s +v +o +v +57771 v +io +aux +57775 vc +p +57778 adv +v +57784 aux +57786 v +s +v +57791 v +o +57794 v +v +57799 v +o +57802 v +adv +v +o +v +io +aux +v +57811 v +v +57816 v +57819 aux +adv +v +o +57827 v +57829 v +57832 v +57837 v +57841 adv +v +57844 s +adv +v +57849 v +57854 vc +p +57857 s +v +57861 v +57864 v +57867 v +io +57872 v +57874 aux +adv +v +57878 p +vc +v +io +57885 v +io +57889 v +v +57896 v +57902 v +57905 adv +57907 v +aux +v +o +57912 v +o +57915 s +v +57918 adv +o +v +57926 v +v +57929 v +57931 s +o +v +57935 o +v +57939 v +aux +v +adv +v +57945 v +v +57952 adv +57957 adv +v +v +io +57963 v +o +57966 v +s +v +57975 v +57980 v +o +v +v +57990 v +57995 v +io +o +v +s +58001 v +58007 o +58009 v +o +v +58018 v +58020 v +o +adv +s +v +58028 v +58032 v +58046 p +vc +58051 v +io +s +adv +v +o +58058 v +58060 v +adv +58065 v +58070 adv +58074 v +58076 o +58079 adv +v +58082 p +vc +58087 v +58089 v +s +v +58100 adv +58109 v +v +58118 v +58120 v +o +58125 adv +adv +v +58132 v +adv +58141 p +vc +58144 adv +v +58150 vc +p +58157 v +s +58168 v +o +58171 v +58175 v +58181 v +s +v +adv +58188 v +58193 v +58199 o +58202 s +v +p +vc +v +58208 v +o +58218 v +58221 p +vc +58224 o +v +58228 s +58230 v +io +o +adv +58237 v +58241 vc +58245 v +58251 v +58257 v +58263 v +58273 v +58280 v +58289 v +o +v +58297 adv +v +58302 v +io +58305 v +o +58312 v +adv +58316 p +vc +58321 v +58323 v +v +58326 v +58329 v +o +58338 v +o +58343 adv +v +58348 o +adv +adv +v +58353 v +58361 p +vc +58364 v +adv +58369 adv +58372 adv +v +58376 o +v +58381 v +58388 v +58395 v +58397 v +58407 v +58411 v +58413 v +s +58417 v +58423 v +58428 v +aux +v +58432 v +58442 v +o +58446 v +58452 adv +v +58456 aux +58460 v +v +58465 o +adv +v +58475 v +s +adv +v +58480 s +58486 o +v +io +58490 v +58494 vc +58500 v +58505 v +o +58511 adv +v +o +58517 v +58519 s +v +58526 v +58529 v +58531 adv +v +o +aux +58539 v +58541 vc +58546 v +58548 v +58553 s +v +58562 v +o +v +aux +v +58569 v +v +58574 v +58577 v +58582 v +58588 v +io +v +v +58595 v +58602 v +io +58605 adv +58610 v +58614 v +s +p +vc +58620 v +58623 v +58625 v +58629 v +o +58633 v +58644 v +o +58647 o +s +v +o +v +58653 p +vc +s +p +58662 vc +58664 s +o +v +v +o +58671 adv +58675 v +58677 o +v +aux +v +o +58689 v +58694 aux +v +58700 v +s +58706 v +58708 adv +v +58714 v +58716 v +v +s +v +s +v +s +io +v +v +s +58728 v +58735 v +58739 p +vc +58745 adv +58751 v +adv +58754 s +v +58759 o +v +58764 o +v +v +58769 v +v +58772 v +io +58776 s +v +58784 v +58789 adv +v +s +58793 v +v +58799 p +vc +58807 v +io +58811 adv +58818 vc +v +58823 v +58825 adv +s +o +v +58831 v +58835 adv +v +adv +v +58842 v +v +58850 vc +o +v +s +58855 v +v +58860 s +58863 v +58866 adv +v +58876 v +o +v +aux +s +v +58889 io +v +58893 adv +v +v +58897 adv +v +s +v +58905 v +58911 v +58915 v +58919 v +58921 v +o +o +v +s +58927 v +58932 v +58936 adv +58942 v +58949 adv +v +58952 adv +p +vc +58956 v +58961 adv +58968 s +v +58971 v +58973 v +58976 adv +v +58983 v +o +58987 v +o +v +58991 v +o +s +adv +58998 v +59002 v +59008 adv +v +59012 s +v +59018 adv +v +s +adv +v +o +59026 v +59028 v +59033 v +59037 v +o +59040 adv +v +59045 v +59047 v +o +59051 o +v +s +v +o +59061 s +59064 adv +v +59068 v +o +59071 s +io +o +v +o +v +59078 o +v +59081 v +59088 vc +59090 o +s +v +59094 v +io +59098 adv +v +59108 v +59110 v +59115 v +59123 v +59132 v +o +59135 s +v +59139 adv +v +59145 v +o +59150 v +59152 o +v +io +59164 v +59169 v +v +59175 v +59179 v +o +v +o +adv +v +o +59190 v +v +59197 v +59200 adv +59204 v +59208 v +io +aux +s +v +59216 v +s +59219 v +io +o +s +v +s +adv +v +adv +59229 v +59232 v +io +s +59237 v +59244 v +s +io +59248 adv +v +o +adv +v +o +59256 v +io +59260 aux +59265 adv +59273 v +io +s +59277 v +adv +v +o +59282 adv +59285 v +59287 vc +p +adv +59291 s +p +vc +59295 adv +s +59298 v +59300 v +o +59304 v +59306 adv +s +p +vc +59312 v +59317 v +59322 v +adv +v +io +v +o +v +io +s +v +o +59339 adv +v +59342 vc +59351 v +59357 v +v +59363 o +v +io +59368 s +v +io +59373 v +59376 v +io +adv +vc +s +p +59386 s +p +59389 v +o +59392 o +v +p +vc +59397 v +o +adv +59403 v +s +v +o +v +59412 v +59414 v +59418 v +59426 v +io +59430 v +59432 v +59434 v +59436 s +vc +59440 v +io +59443 v +59445 o +v +o +v +59451 o +v +v +59455 v +o +o +v +s +v +59464 v +59466 v +59469 v +io +59475 v +o +v +59482 v +59485 v +59498 o +v +59503 v +io +59508 v +io +v +p +vc +59515 v +s +v +adv +59524 v +io +aux +p +vc +59530 v +59533 vc +59535 io +s +v +59541 v +io +59544 v +59547 v +59549 v +59557 adv +v +59564 v +io +s +o +v +v +adv +59572 v +59575 v +o +59579 v +io +59582 s +v +59587 v +s +59590 v +io +s +v +59596 v +59604 o +v +59607 v +59610 s +v +adv +59614 vc +p +59618 v +v +s +adv +v +59630 v +59636 v +59642 v +o +59647 adv +v +o +aux +adv +adv +59655 vc +v +o +59660 v +59664 adv +s +v +v +s +adv +v +59673 v +adv +59677 v +io +59680 v +o +59683 v +o +59688 v +o +59692 v +s +59697 vc +59699 o +v +59703 v +io +59707 aux +adv +v +v +s +adv +v +o +adv +v +adv +v +59720 v +adv +v +io +s +aux +59728 adv +v +o +v +adv +59738 v +v +s +59746 v +59749 v +io +59753 s +v +59756 adv +v +o +adv +adv +v +59765 v +59772 v +59781 vc +59784 adv +59786 v +io +59789 v +v +o +io +59795 v +59797 v +o +io +adv +v +59803 v +o +59808 p +vc +s +59813 vc +59815 adv +s +v +v +59821 v +io +s +aux +adv +v +adv +v +adv +v +59833 v +io +s +s +vc +59846 s +v +59852 adv +59856 v +o +59863 v +59866 v +o +59869 v +v +io +s +aux +v +io +59879 v +adv +v +io +59889 vc +59891 adv +v +o +aux +59896 v +o +v +59901 adv +s +v +v +io +59908 adv +v +59911 s +59920 vc +59923 o +s +v +io +59929 adv +v +59936 v +v +59941 v +io +59944 s +59955 adv +59960 v +59963 v +io +59966 v +59971 o +s +v +s +v +59979 v +59981 s +59985 v +59989 o +v +59995 o +v +59998 v +60005 o2 +v +o +60012 s +v +60015 v +o +60021 v +s +v +60029 v +io +60032 vc +60042 o +v +60046 adv +v +60049 adv +v +o +60053 v +s +v +o +60060 v +60064 vc +adv +v +o +o2 +v +60077 o +adv +v +60081 s +v +o +60085 s +v +60089 v +60094 v +s +60097 s +60103 s +60106 s +60110 v +60115 v +o +s +vc +60120 v +o +60124 v +o +v +60131 s +v +o +60135 v +io +o +v +io +60141 adv +60144 aux +60146 s +v +60149 v +io +v +o +60154 adv +60157 v +s +60160 v +io +60163 s +v +o +60169 v +60174 v +o +60179 v +60181 o +60184 v +60186 adv +v +o +60192 adv +v +60197 o +v +adv +vc +p +60204 v +o +60207 o +v +io +60212 v +60220 o +v +60228 s +o +v +o2 +60233 v +o +60236 o +v +io +s +o +v +io +60246 v +io +60252 v +s +v +io +adv +v +60262 v +v +60265 s +v +io +v +60270 v +60274 v +o +60277 v +60279 v +60286 p +adv +vc +60290 adv +v +io +60294 v +60297 v +v +adv +o +v +60305 v +60313 adv +v +o +60318 v +60322 v +60327 v +io +60331 adv +v +v +v +adv +s +vc +60348 vc +60353 adv +v +o +v +o +60361 o +v +v +o +60368 v +adv +s +p +vc +60376 o +v +io +v +60382 s +60388 adv +v +o +v +60395 adv +v +60400 adv +adv +s +60404 adv +60407 v +s +vc +60412 s +60416 v +60419 s +60422 s +v +60429 adv +v +v +o +60434 adv +s +v +60439 v +adv +60445 v +60447 v +o +60453 v +60455 v +60457 v +60466 v +60468 o +v +v +60472 v +adv +60476 v +60483 v +60485 vc +60489 v +o +60493 s +o +v +v +60506 v +v +60513 s +60519 v +60521 v +60526 o +v +io +60536 vc +60541 v +p +vc +60549 v +o +60552 v +o +60557 s +v +60560 s +60564 v +60569 s +60572 vc +60574 v +o +s +v +io +adv +v +o +o2 +60586 adv +v +o +v +60594 o +v +o2 +60599 o +v +60605 v +io +60608 s +o +v +60612 s +v +o +60616 v +o +60619 s +v +60622 o +v +60628 v +60632 o2 +v +60640 v +io +o +v +io +60646 v +o +60651 o +v +v +60655 o +60658 v +60663 vc +60669 v +60675 adv +vc +60678 s +v +o +60686 v +o +60690 v +60693 o +s +v +io +adv +vc +s +p +60705 o +v +60709 v +60714 v +60718 v +60722 v +60730 adv +v +60733 v +o +60736 adv +v +60739 v +io +o +adv +v +60745 adv +o +adv +v +60754 o +v +60760 v +60764 adv +v +60768 o +60771 v +o +adv +v +60776 adv +60789 v +60797 v +60799 v +o +adv +60803 v +60806 o +s +v +io +60817 s +60821 v +s +v +60829 v +60835 vc +o +v +io +60840 adv +v +o2 +v +o +60846 v +s +60851 v +o +v +o +v +60859 o +v +60862 adv +v +60867 o +60869 o +v +io +60874 v +60878 v +o +60881 s +v +io +60885 o +io +60889 adv +v +60894 vc +60896 adv +v +60900 v +o +60906 v +o +adv +v +60912 o +v +io +60917 v +60922 s +60925 v +io +v +adv +60930 s +v +60934 adv +v +60940 v +60945 v +v +o +60951 v +s +v +60968 adv +v +60979 v +60981 adv +v +o +60993 v +adv +v +o +io +v +61000 adv +v +v +adv +61006 v +61012 v +o +61020 v +61024 o +v +v +61029 v +v +io +s +o +v +61039 v +61041 v +io +61044 o +v +61048 p +vc +61052 v +61057 v +61059 v +io +adv +61063 adv +v +o +61067 adv +adv +61070 v +o +61073 v +61080 p +vc +61083 o +v +io +adv +61088 adv +v +o +61092 adv +adv +61095 v +o +61099 v +61104 v +p +vc +61108 o +v +61112 adv +v +o +v +v +s +61119 v +o +v +61123 v +io +61127 v +61131 v +adv +61134 adv +v +o +61138 adv +adv +61141 v +o +61145 v +io +61148 v +61150 v +s +61155 v +s +v +61164 vc +61168 v +o +v +61172 v +61178 v +61181 adv +v +61189 v +s +61198 adv +o +v +61202 adv +v +o +61206 v +61214 s +v +61223 o +adv +v +o2 +61229 v +io +61232 o2 +v +61236 v +io +61244 adv +v +o +61251 v +61253 v +61260 o +61263 v +io +v +s +61271 v +io +61274 adv +61278 v +io +61288 v +61290 adv +v +io +61294 s +v +61304 v +o +61307 s +o +v +61311 v +61313 s +61317 v +v +61323 v +61327 adv +v +61332 v +61336 v +61340 aux +adv +61344 v +61346 o +adv +v +adv +v +61352 v +o +61355 adv +o +v +61359 s +o +v +61364 v +61368 v +v +io +s +adv +v +aux +v +s +61378 v +61380 v +s +61385 o +o2 +v +61389 adv +vc +p +61397 vc +o +v +io +61404 o +v +61409 o +v +61412 v +s +v +61417 o +v +s +61421 v +61428 v +aux +v +61433 v +61440 v +o +61443 v +io +o +61450 o +v +io +v +io +61458 p +vc +61464 v +61471 o +v +61475 s +o +v +61481 v +61484 o +v +io +61488 v +61490 aux +adv +v +o +s +61499 o +v +61505 v +61508 v +61514 o +v +io +61520 p +vc +io +o +v +61529 v +adv +v +61534 o +v +io +61539 vc +61543 o +v +io +v +io +61549 s +v +61552 v +adv +61557 v +61559 v +61561 s +o +v +s +61567 v +61572 v +61575 o +v +io +61579 p +vc +61585 p +vc +61590 p +61592 v +61596 adv +vc +61602 s +61606 vc +s +61610 v +61613 v +o +61619 o +v +io +61623 vc +p +61626 s +61628 vc +61631 s +v +o +61638 o +v +io +61642 v +61647 v +61649 adv +61657 v +61659 adv +61662 v +61664 o +v +61670 v +61675 v +61678 s +v +io +61687 v +o +61690 adv +vc +61696 s +adv +vc +61703 v +61705 v +o +61712 v +o +61720 adv +vc +61723 s +adv +vc +61729 v +o +61738 p +vc +61741 o +v +61746 s +v +o +61755 s +v +o +61769 v +adv +61772 adv +61775 v +61783 s +p +vc +61787 aux +s +61791 s +61799 vc +61803 v +61805 s +o +v +s +61811 o +v +io +v +io +61817 vc +p +61820 s +p +s +61826 s +61835 v +61839 s +o +v +61843 v +o +61846 o +v +aux +o +v +io +v +61854 p +vc +s +s +vc +61862 v +61867 o +v +io +61871 v +o +61881 o +adv +v +61885 s +o +v +61889 s +v +61892 s +o +v +61896 v +io +61902 v +61906 adv +v +o +61911 vc +s +61915 o +v +s +v +61928 p +vc +61933 v +61940 v +61944 v +o +61949 adv +v +s +adv +61960 v +61972 v +adv +61981 s +v +61985 v +61988 v +61990 v +io +o +v +v +io +61999 v +io +s +vc +62004 v +62008 v +o +62014 v +io +s +vc +v +62023 v +adv +62026 adv +v +o +o +v +62032 s +v +62037 v +s +v +io +62042 s +vc +62046 o +v +v +s +v +62052 v +62055 o +v +62058 o +v +io +adv +v +62069 v +o +v +o +62074 v +62080 v +62087 vc +p +62091 s +62093 v +62098 v +62106 o +v +io +62113 v +o +62126 v +62130 v +o +62133 v +62136 adv +62138 vc +62142 s +vc +62149 vc +s +62152 v +62156 v +62159 v +62164 v +62176 vc +p +62181 v +62192 v +62196 adv +62198 v +62208 v +62212 v +62216 v +62232 vc +v +s +adv +vc +62238 v +62244 o +v +62247 p +vc +62250 v +62264 v +62276 v +io +s +s +adv +v +62284 s +adv +v +62293 adv +62297 v +62301 v +o +adv +o +v +v +62308 v +o +v +io +aux +s +v +o +v +s +62319 o +s +v +62323 v +62326 v +o +62330 v +adv +v +62335 v +io +s +62339 adv +v +v +62347 adv +adv +o +v +62352 v +o +62356 v +62369 v +io +62378 vc +v +s +62382 v +adv +vc +v +62392 vc +62394 adv +v +s +62400 s +v +s +62409 adv +v +s +62413 adv +s +v +62417 v +62427 vc +p +62430 s +adv +v +62437 adv +v +62440 v +62444 v +62447 adv +62451 v +62457 v +v +62460 v +io +62463 adv +62466 s +o +62469 adv +io +v +o +62474 v +io +62478 v +o +s +62486 v +o +v +io +62492 adv +adv +v +v +o +62502 v +o +v +v +62508 v +v +62511 v +adv +62519 v +62523 v +io +s +vc +62531 v +s +62535 s +o +v +62539 s +v +io +62544 v +62548 s +p +vc +62558 v +o +io +o +v +v +s +62569 adv +vc +62580 vc +62590 v +62592 adv +v +62597 adv +62602 adv +vc +p +62606 v +io +62611 p +vc +s +v +62617 s +v +62620 p +vc +s +62625 v +62629 v +62634 v +62639 vc +62643 v +62647 v +io +62651 p +vc +s +62655 o +v +adv +v +62663 v +io +s +adv +v +62670 o +62672 vc +p +adv +62676 o +v +io +62683 v +v +io +62691 v +adv +v +62695 o +62700 vc +62703 p +62705 adv +v +62712 v +62716 v +o +62720 v +62727 v +o +62730 v +62734 v +v +62741 v +io +o +62745 v +adv +adv +62751 v +io +aux +v +io +o +adv +62759 v +62763 v +62767 v +62770 adv +v +62780 v +io +v +62787 v +o +62794 v +v +v +v +v +io +62802 v +o +s +62806 v +62808 s +adv +v +62813 o +v +io +62818 s +o +v +62825 v +v +62830 o +v +62834 v +62840 adv +v +62843 v +62847 adv +62849 v +62852 p +vc +s +62858 o +adv +v +io +62863 v +io +62868 io +v +62871 v +62873 o +v +v +o +62878 o +v +v +o +v +s +adv +v +62891 adv +62894 io +adv +62899 v +o +io +62904 v +62909 v +v +o +62915 v +v +62918 o +v +adv +vc +62927 o2 +o +v +v +62936 v +62940 v +adv +62945 v +62950 vc +p +62953 adv +p +62956 vc +62960 s +vc +62965 v +62968 v +62973 v +s +v +v +v +o +v +io +62986 v +v +62990 adv +v +o +62994 adv +o +62997 adv +v +o +io +63002 v +63004 v +63008 v +io +63012 v +63015 vc +63018 s +vc +adv +p +adv +o +v +63034 adv +63038 v +63044 v +63062 v +63070 vc +63073 adv +v +63084 v +63092 v +63099 s +v +63104 vc +v +63108 o +v +v +63115 v +63118 v +63123 v +63128 o +63133 vc +63136 p +63140 p +63144 v +63148 v +o +63151 v +63154 p +vc +63159 v +v +63164 io +63170 v +o +63176 o +v +63179 v +63203 s +v +63210 v +o +v +v +63216 aux +v +63221 adv +v +63225 v +63234 v +63237 o +63245 v +63247 adv +s +v +63251 v +63254 v +v +63259 v +63265 adv +v +v +63273 v +63278 v +v +63281 v +63284 v +63291 p +vc +63294 adv +v +63305 vc +p +63312 v +63316 v +63321 v +63323 v +63328 v +63337 v +adv +63343 v +63345 v +adv +s +v +63350 v +63358 adv +63362 v +63364 v +adv +63371 v +v +63374 p +vc +63380 s +v +63383 adv +v +63388 v +63390 v +s +63395 v +63398 adv +v +63401 adv +63404 v +v +63407 o +v +63412 v +63418 vc +63423 v +63430 v +63436 v +63440 v +63442 v +63447 v +63451 v +63454 adv +63457 v +63466 v +63472 v +o +adv +63479 p +vc +63483 v +63485 vc +63489 adv +v +s +63500 adv +s +63505 adv +63512 p +vc +63516 v +63527 v +adv +63532 p +adv +vc +63536 v +63539 v +63544 v +63546 v +63555 o +v +63560 v +io +v +63569 adv +v +adv +v +o +63575 v +63583 v +63588 v +63591 adv +63596 v +adv +63601 v +adv +63607 v +v +v +63613 adv +v +63616 v +63620 v +o +63623 v +63628 v +63631 v +63635 s +vc +63645 v +63647 adv +v +63653 adv +v +63660 v +adv +63666 v +63668 v +63670 adv +v +63675 v +s +63679 v +63681 v +adv +63688 s +v +63693 adv +v +63697 v +v +63703 v +63708 v +adv +v +63715 s +63720 s +63725 v +io +s +aux +adv +v +v +io +63734 v +63739 adv +v +adv +v +o +o +v +v +63751 v +63754 v +63756 adv +v +63759 p +vc +v +io +s +aux +adv +v +o +v +s +v +63774 vc +v +io +aux +63779 s +v +o +v +io +adv +v +o +s +o +v +v +io +s +aux +v +s +v +io +adv +63800 s +vc +aux +v +io +s +adv +o +v +63810 adv +v +63816 v +63822 v +io +v +63838 v +63842 v +63846 v +63850 o +v +io +63854 v +s +63865 v +p +vc +63875 v +63879 v +63884 v +io +s +io +63889 o +v +v +63898 io +63900 v +63903 v +63907 v +io +63911 adv +s +io +63915 v +o +63919 s +v +o +63923 o +v +v +63927 v +io +v +63933 v +63937 v +io +63940 o +v +v +63950 vc +p +adv +vc +63957 v +s +63960 v +io +63965 v +63969 s +v +io +63973 adv +v +63984 v +63994 v +64004 v +64009 adv +vc +p +64016 s +64019 v +64024 v +64026 v +64031 v +s +io +adv +v +64038 v +64042 adv +64044 v +64049 v +64054 v +64061 vc +p +64064 p +v +s +64068 v +io +64077 v +io +64082 v +o +v +p +64087 adv +v +64090 v +64097 v +64103 s +adv +64112 s +v +64115 v +64117 s +vc +64127 v +o +v +64136 v +o +adv +s +64148 v +adv +vc +p +64157 vc +p +64177 v +io +64181 v +v +v +io +v +64190 v +64192 v +64201 v +o +64204 s +adv +v +v +s +64213 adv +v +64218 p +vc +64221 v +io +s +aux +64228 v +v +io +adv +64233 s +v +io +v +64246 v +64248 v +64250 adv +o +v +v +64260 v +64264 o +v +64272 vc +64276 v +64280 vc +64283 v +64285 vc +p +64288 v +o +64299 v +64302 vc +p +64312 v +64319 v +64323 v +s +v +64327 s +v +64330 s +v +io +64335 v +64339 o +v +adv +v +64346 v +64359 p +vc +adv +v +64365 v +io +64369 v +v +64374 v +v +o +s +p +vc +v +64384 vc +v +s +64388 v +64392 v +io +64397 adv +s +adv +64401 v +s +64405 v +64410 v +v +64419 v +o +64423 v +io +aux +aux +s +v +64430 v +o +v +io +v +64438 v +io +adv +adv +64444 v +o +v +io +aux +aux +s +v +64453 v +o +v +io +v +64461 v +io +64467 v +o +v +64473 v +io +64477 v +o +64480 v +io +aux +o +s +v +s +v +64489 v +o +v +io +s +v +64500 v +io +64503 vc +p +v +o +64508 v +adv +v +64513 v +v +64519 s +v +o +64523 v +adv +adv +v +64528 o +v +v +64533 v +64537 o +v +v +io +v +o +v +64546 v +64549 o +v +64553 v +s +adv +v +64565 v +aux +p +vc +64570 v +o +64573 o +v +64577 v +64580 aux +64582 s +p +v +io +64589 s +v +v +64593 v +s +64597 s +o +v +64601 v +64612 adv +v +64616 v +io +64621 adv +v +64625 s +v +v +64629 v +s +64633 s +vc +64638 v +64643 v +o +64646 v +64648 p +64652 vc +64654 v +64658 o +v +64663 s +v +64667 v +adv +64672 v +64674 v +64682 v +64685 o +64690 v +64696 v +64699 o +v +64704 v +io +adv +v +o +v +64712 v +s +64720 v +io +64723 v +64731 v +v +io +64736 adv +v +64739 v +64744 o +v +adv +64749 s +v +adv +64753 s +64757 v +64765 s +v +v +o +v +aux +64776 v +64781 v +64784 adv +p +vc +v +64791 o +64794 v +64800 v +o +v +64809 vc +64828 o +v +v +s +v +64834 s +v +o +64848 v +s +64851 aux +64854 v +adv +64859 s +adv +v +aux +aux +adv +v +v +64874 v +64880 adv +v +64884 v +s +v +64890 adv +v +64897 vc +p +s +vc +64905 v +64908 v +64912 v +adv +64944 adv +64965 v +64970 s +v +64973 vc +64982 aux +aux +v +v +64988 o +v +65000 vc +p +65003 v +o +65011 v +65019 s +v +o +65027 p +vc +v +adv +65032 v +65038 p +vc +65042 v +adv +65045 vc +65054 s +vc +65059 v +65063 vc +65067 p +65069 adv +v +65072 v +65079 v +s +65082 v +65085 v +adv +65090 adv +65099 v +65107 adv +v +65117 vc +65121 v +65125 vc +p +s +vc +p +65133 v +v +65138 s +v +o +v +65146 apposition +v +65157 v +s +v +65166 v +o +io +65170 v +65176 v +65184 v +65189 vc +s +adv +65196 v +adv +65201 s +65203 v +65207 v +65211 adv +65215 v +io +v +s +65220 s +65222 v +65228 v +s +65233 v +v +65240 v +v +io +65259 v +65263 v +65267 v +65269 v +65275 v +s +65278 v +65280 v +v +aux +65287 v +vc +p +65291 adv +s +v +adv +65301 v +65309 v +65335 v +65344 v +v +s +65355 v +s +65358 v +65362 v +v +s +p +vc +65368 s +v +v +65372 adv +65376 v +65382 v +65387 v +io +65393 v +adv +65396 s +adv +p +vc +65401 v +65408 s +v +s +v +65413 vc +65419 s +vc +65422 v +65428 vc +65433 v +65436 v +65445 v +65457 o +v +65463 adv +v +65479 v +65485 v +65487 v +o +65492 adv +65494 o +65498 adv +65507 v +65516 v +65524 v +65527 s +v +65532 v +aux +aux +v +65543 v +65554 o +v +65564 s +v +65568 v +65578 v +v +o +65583 v +v +65590 adv +vc +p +v +s +65598 s +v +65602 v +65613 vc +65615 adv +v +65619 v +65624 v +65629 adv +65634 v +65638 adv +v +65646 v +65650 v +o +v +io +65656 v +o +adv +65663 aux +aux +v +v +65684 vc +65692 p +vc +65695 v +65697 adv +v +io +65707 v +65712 v +v +65721 v +65728 v +o +65733 v +65736 adv +65739 vc +p +65746 v +65754 v +65758 v +65760 o +s +65767 adv +s +v +65774 v +s +v +s +65781 v +65787 v +65796 adv +v +65806 v +65813 o +s +v +65817 v +v +65822 v +65830 o +v +aux +aux +65835 s +65838 v +65840 v +65854 v +65861 p +vc +65875 o +v +65885 v +65887 v +o +v +v +65900 v +65904 v +65906 v +65932 v +65935 s +65944 v +65948 v +65952 v +o +o2 +65961 v +65963 v +o +io +65968 s +o +v +65974 v +adv +65980 v +65983 o +v +o +65991 v +65995 v +o +66004 v +66006 v +66016 v +66030 p +66035 vc +v +o +v +66047 vc +p +66050 v +o +66054 v +66058 s +v +66063 v +v +66068 v +o +v +66072 s +v +66079 v +v +66084 s +v +o +v +o +66091 v +66093 v +s +66098 adv +v +adv +66102 o +v +o +io +v +66114 v +66116 v +o +66121 v +o +66124 adv +v +66133 v +v +66136 v +66138 v +66144 v +66146 v +66148 v +66152 v +66156 s +v +66159 v +66163 v +o +66166 s +vc +66172 v +66180 v +66186 v +adv +66189 v +s +66196 v +66206 vc +p +adv +66210 v +66213 v +66217 aux +aux +adv +v +66224 o +adv +v +66232 v +66234 v +s +66248 v +66254 o +s +v +66258 v +66262 v +s +v +66266 s +66271 v +66273 v +66276 v +io +66283 v +o +66287 v +66290 adv +s +p +vc +66302 o +66306 v +66316 v +io +66325 aux +adv +v +66331 v +66340 o +v +66347 v +66351 v +adv +66359 v +66365 v +66373 v +66375 v +io +66379 v +66381 o +s +v +66388 o +v +66401 s +v +66404 o +io +v +66415 o +o +v +66421 o +v +66426 v +66430 s +adv +v +66436 v +66450 s +v +adv +v +66457 s +vc +66466 o +66469 v +66474 v +66482 v +66488 io +adv +66492 v +66496 v +o +v +o +66502 v +o +66509 v +s +66514 v +o +66526 v +66529 v +s +66534 v +66544 v +io +66549 v +66556 vc +p +adv +66562 v +66565 v +66567 vc +66575 v +66579 v +66602 s +vc +66608 v +o +66613 v +66621 v +o +s +adv +s +v +66629 v +66638 s +adv +v +66647 s +v +p +vc +66666 o +s +v +o +66672 v +66677 s +v +66681 adv +s +vc +66687 v +66693 vc +66698 adv +vc +66706 adv +vc +66714 v +66719 v +v +s +66723 v +66731 v +66735 vc +66737 p +v +66740 v +o +66746 vc +66748 v +66752 v +66755 v +o +v +v +66760 v +s +66765 v +v +66769 v +o +v +66780 v +66785 v +adv +p +66789 adv +v +v +66794 adv +66797 v +66801 v +io +adv +v +66812 v +o +v +adv +adv +66830 v +v +66835 p +vc +66840 o +v +adv +66846 v +66848 adv +v +s +o +66855 adv +v +66858 s +v +v +o +adv +v +66865 adv +v +o +66872 s +v +66878 v +66883 vc +66888 v +66895 v +v +66901 v +o +66910 v +66912 s +v +adv +v +o +66921 v +aux +s +66925 v +66950 v +66953 v +s +66956 s +v +o +v +66967 v +66980 v +66993 o +v +67005 v +s +v +67014 v +67016 aux +67019 v +67025 v +67032 v +67040 v +s +67048 v +67058 v +s +v +67068 v +s +67074 v +67085 v +67089 vc +p +67093 s +67096 v +adv +p +vc +v +67102 vc +adv +s +p +67109 v +67122 vc +67127 adv +67130 vc +67134 s +67139 vc +v +v +67145 v +67147 v +67154 v +io +67158 s +o +v +67164 vc +p +67169 s +67178 vc +p +s +v +v +67186 v +67195 p +adv +67202 v +o +67205 v +67209 v +67214 v +67222 v +67224 v +67227 aux +67230 v +67236 v +s +67243 v +67250 v +adv +v +67254 v +67259 vc +p +67262 v +67271 v +io +67279 v +67283 v +v +67286 v +67292 v +67294 v +67297 v +o +67300 v +v +67303 v +67312 adv +v +67315 v +v +67318 v +67321 s +v +io +67325 adv +67328 v +67330 s +v +aux +adv +67339 p +67341 v +adv +v +67347 aux +67351 v +67359 v +o +67362 v +adv +67369 v +67371 v +67374 v +s +p +67378 v +v +67385 v +67396 v +o +67404 v +67413 vc +adv +s +67424 v +v +adv +67428 v +o +67433 adv +v +v +67448 v +67452 v +67458 v +s +67463 v +67467 v +67475 v +67478 v +67484 v +67486 v +67495 vc +67499 v +adv +67502 v +67509 v +o +67519 v +67525 v +o +v +v +67530 v +v +67544 v +v +67553 v +67555 v +67562 v +67573 v +67577 v +s +67581 v +67583 adv +v +o +67590 v +v +v +67594 v +67597 v +67604 v +67609 v +adv +o +v +67615 v +67627 v +67631 p +vc +s +67635 v +s +v +io +67640 aux +67643 o +v +67654 v +67657 adv +v +67664 v +o +adv +67670 v +67674 v +67676 v +o +v +67683 v +o +67687 v +adv +v +io +adv +v +67698 aux +v +67706 v +v +67716 v +67721 v +v +v +o +adv +67727 o +67733 v +67735 o +s +v +v +67741 o +67747 v +67752 v +o +67760 s +vc +67771 o +v +67776 v +o +67779 s +v +v +67783 v +v +o +67787 v +67793 adv +p +67800 v +adv +adv +67805 v +67807 v +67810 aux +aux +v +o +67818 o +v +v +67826 v +s +v +vc +p +s +adv +v +67838 s +v +67842 s +v +o +v +67847 v +67852 v +67862 v +o +67866 s +v +67870 s +v +o +v +67877 v +io +v +67885 v +o +67889 vc +67899 v +67904 vc +adv +v +v +o +adv +adv +67913 vc +67915 v +adv +67918 v +67921 v +v +adv +v +67931 v +67934 s +v +v +67942 v +67946 v +67956 adv +v +v +67960 v +67963 p +67969 v +67972 v +67980 v +67992 v +67997 v +adv +p +vc +s +v +68007 v +o +68010 aux +v +68015 v +68021 o +v +68028 s +68036 v +68038 v +68046 v +68068 o +v +68074 v +v +io +68084 v +68086 v +68093 adv +68099 v +68103 s +68108 v +68117 v +68124 vc +p +68136 v +68140 adv +v +v +68148 adv +v +adv +v +68153 v +68155 v +s +v +68166 v +68176 v +v +o +68180 v +68185 v +68188 v +68192 adv +v +v +o +68205 v +s +v +68213 v +68218 v +68221 o +v +io +s +68226 v +68231 v +68235 v +68243 v +68247 s +adv +v +68251 s +v +aux +68257 v +68262 v +68267 vc +68273 v +s +68278 v +68281 v +68291 v +68296 o +io +v +adv +v +68304 v +68307 adv +68310 v +68314 v +o +68322 s +adv +v +68326 adv +v +io +o +68336 v +v +io +68341 o +68348 adv +vc +p +s +68353 v +adv +68358 vc +68362 p +68370 o +68377 o +v +v +s +68383 v +68387 v +68389 v +o +68396 v +io +68401 adv +v +68406 v +o +68413 s +68417 s +68424 v +68427 v +68431 vc +68437 v +o +68445 v +io +68455 v +o +v +68466 v +s +68478 adv +v +o +68485 s +v +vc +s +68491 v +68495 adv +68500 v +s +68506 p +vc +68514 v +s +v +68530 v +s +68535 v +68542 v +68546 v +68550 o +v +s +68563 v +68568 o +v +68582 adv +v +68588 s +adv +v +68593 s +v +68598 v +68602 v +68606 o2 +68609 adv +v +68614 v +s +68617 vc +p +68621 s +v +68631 v +s +v +o +68639 v +o +io +68645 v +s +68651 vc +p +68660 v +adv +68664 v +68669 v +68677 v +s +v +v +68682 v +o +68685 v +v +68690 v +v +68700 v +o +io +68704 s +adv +v +68709 v +68711 v +io +v +68715 v +o +68719 v +aux +p +vc +68725 v +o +68729 v +68732 v +o +v +s +o +v +68744 v +o +s +v +68750 v +adv +68755 v +s +68762 vc +p +68767 adv +v +68772 v +68775 v +io +68783 s +68791 v +v +68796 v +s +v +v +68802 s +68816 p +vc +s +adv +v +v +68823 v +io +68827 v +68838 v +68841 vc +v +v +68856 v +68858 v +v +o +68862 adv +v +v +o +68871 o +v +v +s +o +v +68880 o +68887 v +68892 v +io +68897 s +v +o +v +68917 s +vc +68922 v +68926 o +io +v +68936 o +s +vc +68940 vc +68951 v +io +68961 s +v +68964 v +v +io +adv +adv +v +p +vc +68976 v +68978 v +68985 v +68988 v +io +68991 s +v +adv +68998 s +v +o +69004 adv +v +s +v +adv +69010 v +69016 v +o +69021 v +69029 v +69033 v +o +v +69041 v +69050 v +io +69060 v +69073 o +v +v +o +69078 v +o +69086 vc +69094 v +69096 v +69099 v +o +69104 o +v +o +adv +v +v +69120 o +v +69133 s +v +o +69140 v +v +o +69147 s +v +io +o +69152 adv +69157 v +69161 v +69164 adv +p +69175 v +io +v +s +69180 p +69189 v +69199 s +adv +69205 v +69215 adv +v +69221 v +69223 v +69229 adv +adv +s +69235 vc +s +v +69244 adv +v +69247 v +o +v +69254 v +69260 vc +p +69264 v +69268 v +69272 s +v +69279 v +aux +v +69284 v +69294 v +69296 v +69299 v +69304 v +adv +69309 v +69313 v +69317 v +69325 vc +p +69328 v +69331 v +69333 v +69336 v +69341 v +69344 v +69347 aux +adv +v +io +69355 o +v +v +69359 s +69366 v +69380 s +v +69393 v +69399 v +69405 s +v +69412 v +v +69418 v +69424 v +v +v +69430 s +v +69437 v +io +69442 v +69446 v +69450 adv +69453 v +s +69456 v +69459 o +v +69464 v +69467 v +69470 v +69473 v +69476 v +69478 v +69488 adv +p +v +69494 v +69496 v +69501 v +vc +69505 s +o +v +69513 v +s +vc +69521 vc +p +69524 v +o +69532 v +o +69536 v +69539 v +69550 v +69560 v +69562 v +69567 v +69573 v +v +69580 v +69582 v +69589 v +69595 s +v +v +69601 v +69605 adv +69612 adv +69621 adv +v +69628 v +69634 v +69643 v +69646 v +io +o +v +v +io +69657 io +v +69661 v +69665 s +v +69674 vc +69678 v +69685 v +adv +vc +p +69700 adv +vc +p +69707 v +69714 v +69719 v +adv +69733 s +vc +v +69737 v +69740 v +v +s +69749 v +69753 o +v +69757 s +69765 v +69773 v +69777 v +69780 v +v +69783 v +69790 v +69795 s +vc +p +69799 v +v +69802 aux +69810 s +vc +69817 s +v +v +69826 v +69832 v +69837 v +69842 v +69844 v +69849 v +69852 v +s +v +69859 v +69862 v +o +v +69866 s +v +69870 adv +v +69873 adv +s +v +o +69878 v +69881 v +v +69890 o +v +vc +p +69895 s +69898 v +69901 s +69904 v +o +p +adv +adv +v +69919 v +69923 s +v +69926 v +69934 v +69939 v +v +o +69946 v +o +69957 v +69962 v +69967 v +io +69973 v +69977 v +69982 v +69985 v +s +s +v +s +v +69992 v +v +69997 v +adv +70009 v +o +70013 v +70019 v +70023 adv +v +o +adv +70030 v +70034 v +70036 s +v +70041 v +v +70048 v +s +70055 adv +v +70065 v +70068 v +70079 v +70083 vc +70088 v +v +70095 v +v +s +v +70102 adv +o +v +s +70110 v +70114 v +s +v +io +aux +aux +adv +o +v +70124 v +p +vc +aux +70129 s +s +vc +70133 o +s +v +70137 v +70139 v +70144 v +io +70147 o +s +v +v +70155 v +adv +v +adv +70160 v +70164 o +v +70167 v +s +70173 v +70177 o +v +70180 v +o +v +70190 adv +70192 adv +70197 vc +70200 adv +p +70205 v +70212 aux +70214 s +v +v +s +aux +70224 v +v +70230 vc +p +70233 v +70237 p +adv +70241 aux +v +70244 v +70246 p +adv +v +70250 v +io +o +70254 v +70256 v +s +aux +v +70271 v +70275 adv +v +70281 v +70284 v +70289 v +70294 v +70298 vc +adv +s +70302 v +70315 s +v +io +o +s +70324 v +v +70327 v +s +70330 v +70335 v +70340 v +70347 v +io +70352 adv +v +v +o +70357 v +70359 v +70363 adv +v +70370 s +70372 v +70374 v +v +70377 v +o +v +70381 vc +70390 adv +70394 v +70398 s +vc +70405 v +70408 v +70410 v +70412 s +vc +70415 v +70419 v +70424 adv +70427 v +70429 v +o +v +70436 s +adv +v +70440 v +70443 v +70446 v +70448 s +vc +70454 v +70457 v +70460 v +o +70463 v +70470 v +70479 o +v +70482 v +70486 adv +70490 v +o +v +70496 v +70499 v +v +70504 s +v +o +adv +v +70510 vc +p +70513 s +v +o +v +70521 v +io +adv +70527 v +70532 v +io +70535 adv +70538 v +70552 v +70566 s +v +v +o +70571 v +70574 v +o +70579 v +o +70595 v +o +v +70599 v +70610 v +70612 v +s +v +70617 v +70623 v +adv +70626 v +adv +70630 adv +p +70635 v +70638 s +vc +v +70642 v +io +70646 aux +v +o +70651 v +70653 v +io +70656 adv +v +70659 v +o +70663 v +70668 s +v +70676 vc +70679 adv +70681 s +v +vc +p +s +vc +p +70692 o +v +70695 v +70700 v +s +v +70704 v +v +70709 vc +s +70716 v +70718 s +vc +70722 v +70727 v +adv +v +v +70734 v +s +v +adv +o +v +v +70745 v +adv +70750 v +70752 v +70756 o +v +70760 vc +70766 v +adv +o +70770 v +70773 v +70775 v +70779 v +aux +v +70783 s +v +70789 v +70792 v +70794 v +io +o +v +o +70800 v +70806 v +o +v +70810 p +vc +70817 v +s +70823 v +70826 v +70838 adv +p +70844 vc +p +70848 v +70856 v +70862 v +70867 v +70870 adv +70880 v +70884 v +io +aux +70888 s +v +o +70892 p +vc +v +p +vc +aux +70899 v +io +70908 v +70915 adv +v +o +70921 v +70924 s +vc +p +s +v +70933 p +vc +s +70940 v +70944 v +io +v +70954 v +o +70957 v +o +io +v +o +70968 v +s +70973 v +v +s +70979 v +70984 vc +p +70987 v +v +70990 v +s +v +70995 s +70997 v +71000 v +71002 v +71010 v +71016 vc +71029 v +s +71033 aux +v +71041 v +adv +aux +71045 adv +v +71052 s +adv +71058 o +71061 v +s +adv +v +71066 s +v +71071 adv +v +71082 v +71086 p +vc +71090 o +v +aux +71096 v +71100 v +71105 v +71110 v +v +71115 vc +p +adv +v +71122 v +71126 v +71129 aux +71132 v +o +71135 v +v +71138 v +71141 o +v +71144 s +v +o +71148 v +s +71153 v +aux +s +vc +o +v +p +71164 v +71166 s +v +71173 v +71177 v +71184 v +71188 v +o +71195 v +o +71200 v +o +v +71206 v +v +71217 v +adv +71222 v +71231 o +v +71242 v +71244 v +71247 v +o +71251 v +71255 v +71259 v +o +v +v +71266 p +vc +71269 v +adv +v +71273 v +v +s +71277 v +71280 s +v +adv +p +vc +71290 adv +io +71294 v +71300 v +71302 adv +adv +v +v +71307 v +71310 v +o +71315 v +71332 aux +s +v +71341 v +aux +v +71351 v +71356 v +71360 v +71362 s +vc +p +s +v +71374 adv +v +71379 s +adv +v +v +71384 adv +71390 v +v +71394 v +io +71400 s +v +71404 v +71407 v +71410 vc +p +71419 v +o +71422 v +o +p +adv +vc +71429 o +v +71434 v +o +71439 s +vc +71443 s +v +71447 v +71452 v +71459 o +v +s +71467 v +o +71475 s +v +v +71479 v +71482 v +71489 vc +71493 s +71496 o +v +71506 o +adv +v +v +71512 o +71515 v +71521 v +s +p +vc +71532 v +71537 s +71541 adv +71544 v +s +71549 v +io +v +71555 v +71557 s +vc +71560 v +71565 v +71568 io +71572 v +71575 v +71582 v +71585 adv +v +71592 v +71600 v +71604 v +71609 s +v +71623 v +71625 v +s +v +adv +71630 v +71633 adv +v +s +71639 v +v +s +71643 adv +v +71646 s +71651 v +71656 v +s +71663 v +adv +v +s +v +71671 v +71678 vc +71686 v +71693 v +s +71697 v +71703 v +71705 v +71708 o +v +71711 v +adv +71714 v +s +v +io +adv +v +s +71727 v +71731 v +71739 v +71744 v +71749 v +v +71752 v +71769 v +adv +s +v +io +aux +v +71780 v +adv +aux +71787 adv +v +71794 v +71797 s +71801 o +71804 v +s +adv +v +71809 s +v +71814 v +adv +s +71821 aux +adv +71825 v +71831 vc +v +71838 v +71841 io +v +adv +o +v +71847 v +71856 v +71863 v +io +71866 v +71873 v +71875 v +v +71880 v +71883 vc +p +s +v +o +71892 v +71902 v +s +v +v +71919 v +71925 v +71927 s +v +adv +71931 s +v +71941 v +io +71948 v +71954 s +p +vc +71958 v +71962 v +o +v +71966 v +71969 v +71980 v +71984 v +71989 v +71992 v +71999 io +v +72004 adv +adv +io +72008 vc +72016 s +v +72020 v +72025 v +72030 vc +72039 v +v +72045 v +72056 vc +72060 v +o +72064 s +v +72067 v +72073 v +72075 v +s +72081 v +72085 vc +72095 v +72101 v +72104 v +o +72107 v +v +72112 v +adv +72117 v +72122 v +72126 vc +adv +72132 p +72138 v +72141 s +72145 v +72149 adv +p +v +72157 v +vc +72163 s +v +72171 v +s +v +72178 v +72180 v +72185 o +adv +v +v +72202 v +72208 v +72215 v +72220 adv +72222 v +72224 p +vc +72228 v +v +72233 vc +72237 o +adv +v +v +72243 v +72247 v +o +v +72253 v +o +72261 v +72266 s +72269 adv +72280 v +v +o +72295 v +72299 s +72303 v +72307 aux +72310 v +72312 s +v +72318 v +72323 v +o +v +v +72330 v +72338 v +72343 v +72345 v +72350 v +adv +72353 v +io +v +72360 v +o +72363 v +v +72367 v +72369 p +vc +72372 v +72377 v +o +v +72381 v +72386 v +72393 v +72397 s +adv +v +io +72402 v +v +72407 adv +v +72418 v +v +adv +v +adv +72424 v +72431 v +o +72445 v +v +72456 vc +p +adv +s +72465 v +s +72471 v +v +72474 adv +p +72477 v +72485 adv +v +72490 v +v +v +72499 s +72502 v +v +72505 s +v +p +vc +72510 s +v +72514 vc +adv +72519 v +v +72522 v +v +o +72526 v +72528 v +io +72532 v +v +io +adv +72538 o +v +72544 v +v +72550 o +72552 v +v +72558 v +s +vc +72568 p +72571 vc +72573 s +v +o +72577 adv +v +v +72582 v +v +72585 v +72591 v +72599 adv +v +72604 v +72612 v +o +72616 v +72628 v +72631 v +72635 v +72641 v +72645 adv +p +72648 adv +v +o +72654 adv +adv +v +72662 vc +p +v +72677 v +72680 v +72683 v +72686 vc +p +72689 vc +72694 v +72705 vc +p +72720 v +s +72725 v +v +72732 v +io +72741 adv +v +o +adv +v +72747 v +72749 v +72752 io +v +72756 s +v +72762 v +72766 adv +v +72771 vc +72774 v +72785 v +72788 o2 +72790 v +72796 v +72802 adv +s +p +s +vc +72814 s +v +72819 v +v +72826 v +o +72832 adv +v +72837 v +v +72849 v +72852 v +72855 v +aux +72868 adv +v +v +72878 adv +aux +72885 vc +p +adv +v +72894 adv +v +72902 v +v +o +adv +72908 v +72910 v +v +v +72919 v +72926 v +72932 s +v +72936 v +72940 s +v +72945 v +72951 v +72959 v +72969 v +72974 v +aux +aux +72978 vc +72987 v +72989 s +v +72992 v +72995 v +aux +aux +73000 v +73003 v +73010 v +73017 v +73028 v +o +73036 v +o +73042 v +73048 v +73060 v +o +73065 adv +v +o +73069 v +io +73084 v +o +v +73089 io +73092 io +adv +v +v +v +73106 s +v +73120 v +73125 v +s +73140 v +s +73144 v +p +s +vc +v +73150 vc +s +73153 aux +v +73157 adv +adv +vc +p +73165 v +aux +aux +73175 v +73178 io +73184 v +73187 v +73194 o +v +73205 v +v +v +73212 v +v +o +v +s +73219 v +73224 v +v +73229 v +73235 v +o +73239 s +v +73245 v +adv +73252 s +adv +vc +73261 s +o +v +73268 v +73271 o +73274 v +73278 v +o +73287 v +73290 vc +s +s +adv +v +o +73298 v +o +73302 adv +v +v +73307 adv +v +73310 v +io +73321 v +adv +v +73327 v +o +73331 s +73334 v +73339 v +73341 v +73347 v +o +73350 o +73353 v +adv +v +o +73358 p +vc +adv +aux +aux +73366 io +73369 v +73373 adv +adv +v +73379 v +73384 v +v +73387 v +73389 v +73391 v +73395 v +73399 v +73401 v +73403 o +v +s +73411 o +73414 v +73416 s +v +io +73420 v +s +v +73427 v +io +73433 v +73436 v +73442 v +73449 s +v +io +v +s +v +73461 v +73467 v +v +73476 v +73479 v +adv +73482 v +73486 v +v +73489 v +73495 v +vc +p +io +adv +v +73506 v +o +73509 adv +v +o +73516 aux +v +73522 adv +v +io +73527 v +o +73533 vc +s +73542 v +73545 v +73547 v +73553 v +s +73561 v +73573 v +73575 v +73585 v +o +73593 v +o +73600 s +v +73608 v +73614 v +73620 v +73626 v +s +73634 v +adv +73637 v +73646 v +73662 v +v +73668 v +73675 v +73679 v +73685 v +73692 s +vc +73698 s +73704 v +73718 o +v +v +73732 adv +73738 p +73743 v +p +73749 s +adv +v +s +v +73756 v +s +v +o +73761 v +73763 v +o +73766 v +v +73770 v +73775 adv +73777 v +73779 v +73783 v +o +v +s +v +73791 adv +v +73795 v +adv +v +73801 v +73804 o2 +73808 o2 +73810 s +vc +73813 v +73822 vc +73832 v +73836 v +v +73839 v +73845 v +73849 v +73853 v +73855 v +aux +adv +o +v +73865 vc +v +o +73872 v +73875 v +s +v +73891 s +73894 v +73896 v +73900 v +73905 adv +o2 +o +v +v +adv +io +o +v +73917 v +73925 o +v +adv +v +73932 adv +v +io +73936 v +73941 s +73943 v +73947 v +73950 v +73954 v +s +v +73958 v +73961 o +v +v +73970 v +73977 v +73982 v +o +v +73994 v +73999 v +v +74005 v +74009 s +v +74017 v +io +74021 o +v +74025 v +o +74031 v +74033 v +74036 v +74041 v +74046 v +74049 adv +v +74053 adv +74063 o +v +74066 v +74068 v +74071 v +o +v +74080 v +74086 v +74094 s +v +74099 v +74104 adv +v +74110 adv +v +v +74114 v +74127 v +v +74150 s +v +74155 v +74161 v +74167 v +74174 v +74177 v +74188 v +o +74192 v +74196 v +74204 v +v +74207 v +v +o +74211 v +v +74217 v +74223 v +74231 v +v +s +v +74237 aux +aux +s +v +74247 v +74254 v +74262 v +74267 v +io +v +74278 o +v +74287 v +74292 adv +adv +v +74297 v +o +74304 o +v +74312 v +74314 v +74321 v +74325 s +74327 v +74332 v +74336 v +74340 o +v +74352 v +s +v +s +v +aux +aux +v +o +s +v +74364 adv +74367 v +v +74371 o +74376 adv +v +74383 v +74386 v +74388 v +74393 v +74396 v +74398 v +74400 v +o +74404 v +74417 v +74423 v +74425 v +74427 p +74431 s +v +74434 v +74439 v +74444 v +io +74447 v +74461 s +74468 v +o +v +74477 v +adv +v +74489 v +o +74493 v +74503 vc +p +74508 v +74512 v +74534 v +74536 v +74541 v +o +adv +v +74548 io +adv +v +v +adv +v +adv +v +o +v +74568 v +74581 v +74589 v +74593 v +74603 v +io +74609 v +74619 v +o +adv +v +v +74626 s +v +v +74632 v +74635 v +74639 v +v +74650 p +vc +74655 v +74659 v +74661 v +adv +v +74671 v +o +74677 v +74695 v +74698 s +74700 v +v +74709 v +74714 p +vc +74717 s +v +v +74724 vc +p +74727 s +v +74730 v +74736 adv +v +adv +74742 adv +v +o +74746 v +s +74749 v +s +74756 v +74759 v +74763 s +v +o +v +v +74776 v +74781 v +74785 v +74793 aux +vc +p +74798 adv +p +74807 s +v +74816 v +74819 s +74822 v +74824 v +v +o +74831 vc +74837 v +s +74840 p +74844 vc +74847 v +74850 v +io +v +74856 v +74869 v +74873 v +74879 v +74885 v +74890 v +74897 v +74901 v +74905 v +74907 adv +v +o +74914 v +74917 v +74921 s +74926 v +74933 v +o +74936 v +v +74940 v +o +74946 v +adv +v +v +74952 v +74954 v +74957 s +v +o +74961 v +74964 v +74969 v +74973 adv +74976 s +vc +74998 v +75004 p +s +vc +v +75009 v +v +75012 v +75017 adv +p +75022 v +75025 v +75031 v +v +75034 v +75039 v +75044 v +v +75047 v +s +p +75052 vc +v +75058 v +75060 v +o +75063 v +v +s +75071 v +75074 v +o +s +75079 v +75083 v +s +v +75090 v +v +75100 vc +s +v +io +75107 o +v +75113 s +v +75116 v +75119 v +v +io +75126 v +75130 v +75138 v +75140 v +75146 v +75152 v +75160 v +o +75164 v +75168 v +75172 p +vc +75175 v +75177 o +75181 adv +v +adv +p +vc +75187 v +75195 v +75199 v +v +75202 v +io +75206 v +75209 v +75212 adv +v +o +s +75218 v +v +o +75229 v +75240 v +v +75245 v +o +75250 adv +75253 v +75255 v +75261 v +adv +75270 v +75274 p +vc +75277 v +v +75283 v +75286 v +o +v +v +v +75294 v +s +75298 v +75301 v +io +75304 s +vc +p +75308 v +o +v +75312 p +vc +v +75320 v +o +adv +v +aux +o +s +v +v +75330 v +75332 s +v +v +75340 v +75347 v +io +75361 v +o +75369 v +75374 v +75380 adv +75382 v +o +75387 v +o +75390 v +adv +v +75396 s +v +v +75403 v +v +75409 v +75419 v +75423 v +75425 adv +v +v +75433 v +75436 v +o +adv +adv +75442 vc +v +75447 adv +adv +o +v +75452 adv +75454 v +s +o +v +75459 v +75468 v +v +75471 p +vc +75474 v +v +o +75478 v +v +v +75485 v +75489 v +75494 v +v +75499 v +75501 v +75507 v +75510 p +vc +75518 v +75521 v +75528 v +adv +75537 v +75540 v +75542 v +75547 s +vc +75553 o +s +v +io +75561 v +75563 v +75571 v +75584 v +75586 v +75593 v +v +75598 v +75602 v +o +v +75609 adv +v +o +v +75620 v +75625 v +s +adv +adv +v +o +v +s +75640 v +75643 vc +s +v +75647 v +75653 v +o +75656 v +75665 v +o +75670 adv +75673 v +75682 s +v +75689 v +75691 s +vc +p +75697 s +v +75707 v +75711 vc +s +p +75719 v +75732 v +75743 v +75751 v +adv +75759 adv +adv +75763 v +75766 v +75772 v +75779 adv +75782 v +75785 v +75789 v +75800 v +75803 v +75808 v +o +75812 v +75818 v +p +vc +75825 v +75833 v +75843 v +75852 v +adv +75855 s +v +75858 v +75862 o +v +75865 s +v +75870 vc +75877 v +75879 v +o +75885 v +v +v +v +p +75896 v +75899 v +75901 v +75907 v +v +p +vc +v +s +75918 v +75923 v +75925 v +o +75928 v +75932 v +s +75939 v +75946 s +v +75949 v +75951 v +75955 v +75960 v +75964 o +v +v +o +s +v +io +75974 v +75982 s +75987 vc +adv +75992 v +75997 v +v +o +s +v +io +76010 v +76016 v +76022 v +v +76031 v +76037 v +o +76040 v +76042 adv +76049 vc +76065 v +76070 vc +76072 vc +76076 adv +v +v +76091 vc +p +76099 v +76104 v +76109 v +76111 v +76115 v +v +76123 o +v +o +v +io +v +o +76133 v +76137 s +v +76140 s +v +v +o +76148 adv +76151 v +76158 v +io +v +76169 adv +p +76177 v +76181 v +76185 v +76188 adv +p +p +76193 adv +v +76204 v +s +v +76213 v +adv +76218 p +vc +v +76224 v +76226 vc +p +76231 v +76238 v +76245 v +76255 v +76260 v +76263 vc +76266 p +76268 v +s +76271 v +v +76275 v +76285 p +s +76293 v +76295 v +adv +v +76301 adv +76304 v +76318 v +76330 v +v +76333 v +76335 v +76345 v +76347 v +76349 adv +v +76352 s +vc +76357 s +v +o +76361 v +o +76366 vc +p +76373 v +76378 v +76386 s +vc +76391 v +adv +76398 v +o +76403 v +76408 v +s +76412 v +76416 v +76419 v +76422 v +76430 vc +76441 v +o +76445 vc +76456 v +s +adv +v +s +76463 vc +76465 v +o +76471 s +v +76476 v +76485 v +76489 adv +v +76495 v +v +76506 v +76512 v +o +76515 v +76518 o +v +adv +76522 s +v +76527 v +76531 v +s +76536 v +76538 v +76540 v +76542 v +adv +v +76549 v +v +76555 v +76558 v +76560 v +76563 v +76567 v +76570 v +v +adv +76578 v +76585 p +adv +p +76592 p +vc +76597 v +76600 s +76608 v +76614 adv +76619 v +adv +76625 s +v +v +76632 v +o +76637 v +o +76640 adv +io +v +76648 v +s +v +76654 v +76657 v +76660 v +76662 s +v +v +adv +76667 v +76672 adv +76675 v +adv +v +76681 vc +76684 p +76686 v +76691 vc +76694 s +v +76699 v +76703 v +76707 v +76713 v +v +76716 s +76720 adv +v +76725 v +76727 v +76731 v +76733 s +v +76740 v +s +s +v +76748 v +76750 v +76753 v +76756 s +vc +76762 v +v +76771 v +io +76775 o +v +76784 v +adv +76787 v +76789 vc +76796 v +76800 v +76814 s +76818 v +76824 v +76827 v +76832 v +76838 s +v +76846 v +76849 v +76862 v +76865 v +76874 v +v +76884 v +76894 v +76896 v +76900 v +76903 v +76906 v +76916 v +v +o +76921 o +s +v +76931 o +76935 v +76940 v +io +76944 v +76948 v +76950 s +p +vc +76954 v +76961 vc +76966 v +adv +v +76974 v +v +76981 s +vc +p +76990 v +76994 v +s +77000 v +77009 v +v +77022 v +v +77026 v +77030 v +77035 v +77039 adv +77051 v +s +v +77059 v +77064 v +77067 v +77071 vc +s +p +v +s +77078 v +77080 v +77086 v +o +77091 s +v +adv +77098 v +77111 p +adv +77114 v +77118 v +77131 v +v +aux +v +77143 vc +77160 v +v +77164 v +77166 adv +vc +p +77172 v +77175 adv +s +v +adv +77183 v +77194 v +77196 v +adv +v +77202 o +77209 v +77211 v +77213 vc +p +adv +v +v +p +77223 v +77229 v +adv +77234 v +77242 s +v +v +77248 adv +v +o +77258 vc +adv +p +v +77264 v +adv +v +o +77273 s +77276 v +77285 adv +v +77289 v +77294 v +o +v +o +77303 v +77306 v +v +77311 v +77313 p +vc +77317 v +77324 v +p +77332 v +77335 v +77341 vc +s +adv +v +77348 vc +77357 p +vc +s +77362 s +v +vc +77368 v +77370 v +77377 v +77390 v +77393 o +s +v +77397 s +v +v +o +77403 o +adv +v +77410 v +77412 adv +v +v +adv +77421 v +77424 adv +v +v +o +77433 o +v +v +77441 v +77446 v +77450 v +v +v +v +77457 v +77462 v +o +77466 v +77471 v +77474 v +s +adv +77480 v +v +77485 vc +77488 v +77492 v +adv +77513 s +v +v +o +77520 s +v +77530 v +77539 adv +v +77549 v +s +v +o +77555 v +adv +v +v +77562 v +77568 vc +77574 adv +77580 adv +p +v +77586 v +77589 v +77594 v +77598 v +77602 adv +77604 v +adv +77607 v +77610 v +adv +77613 v +v +adv +v +77623 vc +77625 v +77627 v +77631 v +77635 v +77638 adv +v +77641 v +77644 v +77646 v +77650 s +v +77655 v +77659 adv +v +v +77665 adv +77668 v +s +v +77673 v +adv +77678 v +o +v +77683 adv +v +77686 v +v +77693 v +77698 v +v +77703 v +77706 v +77710 adv +v +adv +v +77718 v +77720 p +vc +adv +77727 vc +77734 v +77737 v +77744 v +77747 v +io +s +v +77756 v +77760 adv +77766 vc +v +77778 v +adv +77786 v +77789 v +77792 v +io +77795 v +o +77801 v +77818 adv +aux +v +77823 s +v +77830 v +o +adv +v +77842 v +io +v +77849 o +v +77854 v +77860 v +77867 o +v +77873 v +77881 adv +aux +s +v +77886 adv +v +77895 v +v +77900 v +io +77907 p +vc +77914 adv +v +77917 adv +v +77924 io +v +77933 o +77938 v +o2 +v +77945 o +v +77952 s +v +77955 v +77964 adv +v +77972 v +s +v +v +77977 v +77983 v +v +77986 adv +77990 adv +v +77994 v +78000 v +o +78011 v +v +78014 v +78019 v +78027 v +s +v +78036 vc +78039 v +78043 o +v +io +78047 adv +v +v +v +78052 v +78054 v +78061 s +v +p +vc +adv +v +78068 v +78070 o +v +v +78079 v +78081 p +vc +78086 v +78092 v +o +v +adv +78099 adv +v +78102 adv +v +78107 v +78109 v +o +78116 v +v +s +v +78122 v +v +78133 adv +78137 v +78139 v +78142 v +v +78145 v +78149 v +o +adv +v +78156 v +78160 adv +78168 v +78171 v +adv +78175 s +78178 v +78182 adv +v +78188 v +v +s +78193 v +v +v +o +s +78207 v +78213 v +v +o +78217 v +78222 s +v +78228 s +78231 v +78234 v +78238 v +78241 v +78249 v +v +78254 v +78261 vc +78265 v +78269 p +vc +78274 v +78276 v +78279 v +78285 adv +p +78288 v +78292 v +78297 v +78304 v +o +v +78313 p +vc +78318 adv +v +78325 v +78331 v +o +v +78340 adv +v +s +78345 adv +v +78349 o +v +v +78353 v +78358 s +78360 adv +v +78363 adv +v +78367 adv +v +78376 adv +v +s +v +v +78385 v +78391 v +v +78396 v +78404 v +78407 v +78414 v +s +78418 adv +v +o +78425 v +v +78434 v +78439 v +o +v +78445 o +v +78457 s +v +v +78463 v +io +v +aux +78470 v +vc +78476 s +78480 vc +78482 v +78486 v +78496 v +adv +v +s +78505 v +78507 p +vc +adv +v +78512 v +78514 o +v +o +io +v +vc +p +78523 o +v +78527 o +v +v +78533 v +78537 v +78541 v +s +78544 o +v +78548 p +vc +78551 v +78554 v +78560 v +78562 s +v +v +v +s +78576 adv +78579 v +78583 v +78587 v +v +78592 v +78601 v +78610 v +78614 v +78620 v +o +78625 v +78630 v +78635 v +aux +aux +v +s +vc +78654 o +adv +v +78658 adv +78661 v +78666 v +78682 v +78684 o +78688 v +78692 v +78697 v +78702 v +78705 v +o +78711 adv +v +78716 v +o +v +v +s +78728 v +s +adv +v +78735 v +78739 s +v +78746 v +v +78750 adv +v +78754 v +o +78757 v +v +78762 v +p +vc +78766 o +78770 s +78773 v +78778 adv +v +s +v +78787 v +v +s +78795 v +78799 v +v +s +78811 v +78816 v +v +o +78820 v +v +78827 v +78831 v +adv +v +o +78838 s +v +adv +v +78843 adv +s +vc +78853 v +78855 v +78865 v +78869 s +vc +78881 v +o +v +io +v +78890 v +s +78894 v +78898 v +78906 v +v +78911 v +aux +78916 v +78924 v +78929 v +o +adv +v +o +78935 v +s +vc +78940 v +78946 v +78955 v +78961 vc +78968 vc +adv +s +78974 v +78990 v +io +79000 v +79006 v +v +79010 p +vc +v +79016 v +79018 v +adv +v +79022 v +79027 adv +79031 v +79037 v +79042 v +s +v +io +aux +aux +adv +o +v +79052 s +v +p +vc +aux +79058 v +79061 s +vc +79066 o +s +v +79074 vc +79077 v +79079 adv +v +79084 v +io +79087 v +o +v +aux +79094 v +79097 v +v +79101 adv +io +v +79106 o +v +v +io +79112 adv +v +79120 v +79123 v +adv +v +79136 v +79140 v +79142 v +79146 v +v +io +aux +aux +v +s +79156 v +79160 s +v +79167 v +o +v +79174 v +79178 v +79185 vc +adv +79191 o +79196 adv +o +v +v +v +79202 v +79206 v +79211 v +adv +v +79217 v +s +79222 vc +s +79227 v +s +v +io +v +79233 v +79239 adv +v +79245 s +v +aux +s +v +79251 s +79260 v +79265 v +79275 v +79277 v +79279 v +79283 v +o +79286 v +79289 v +79291 s +79294 adv +v +o +79298 v +o +79305 v +79309 v +v +79317 adv +v +s +v +79322 v +s +79325 v +79329 o +v +79334 v +79337 v +s +79342 v +adv +v +s +79347 v +79351 adv +v +io +79356 v +o +79360 v +79363 v +79372 v +v +adv +79376 v +79379 v +79382 v +v +v +o +v +79391 p +vc +79394 v +79397 v +io +v +io +s +p +vc +79405 s +v +aux +79409 v +79412 s +79418 v +79422 v +79424 s +adv +v +79428 adv +v +79433 v +o +v +79440 v +v +79443 p +vc +79447 o +79453 v +v +79458 adv +v +79463 v +o +79466 v +v +79475 v +79478 v +79484 v +79487 v +aux +aux +s +79494 v +79505 v +79507 v +adv +v +79513 adv +79518 v +v +o +v +79525 v +79528 v +v +o +79535 v +v +s +v +79541 v +v +79547 v +79549 v +79552 adv +v +aux +79556 vc +p +79559 v +79565 adv +v +adv +79571 v +79576 vc +p +79581 p +v +79586 aux +aux +s +p +vc +79598 v +79600 o +s +v +v +79610 v +79614 s +v +adv +v +79624 s +v +79629 v +79633 v +79641 v +v +79645 v +79652 s +v +io +79656 s +79660 v +79663 v +79665 v +79670 v +79673 v +v +o +79680 v +79686 v +79688 v +adv +79692 v +v +79696 v +79702 adv +v +s +79708 v +79710 v +s +v +o +79716 v +o +v +79724 adv +v +79729 vc +79736 v +s +v +79744 v +adv +v +s +o +v +79751 adv +v +79756 adv +s +v +79765 v +o +79770 v +v +adv +79777 s +79780 v +s +p +vc +79785 v +o +79793 v +79796 v +79798 v +79802 v +79808 v +79812 v +79816 v +79821 v +v +o +io +79827 s +v +o +v +79835 v +79839 v +o +v +79845 v +79848 v +o +v +io +79855 v +79860 v +79863 v +p +vc +o +v +io +v +79871 v +79875 v +79877 v +o +79880 adv +79883 v +79888 v +o +adv +v +79895 s +adv +v +adv +79900 v +o +79907 s +v +s +79915 adv +v +o +79919 adv +vc +p +v +79931 v +79934 v +io +v +79938 o +v +79943 v +79948 v +v +79959 v +79968 o +v +79971 v +79974 v +79979 v +79981 v +79991 v +79995 v +80000 v +v +80004 v +80008 v +v +80011 p +vc +80014 v +v +80020 v +o +v +80027 v +s +v +80042 v +80044 v +io +s +80050 v +adv +v +80055 v +80059 v +80070 v +io +v +80075 v +80084 v +80087 v +80090 v +80094 s +v +80100 v +80105 v +80109 io +80111 v +80113 v +80117 vc +80119 v +80123 v +v +o +80131 v +v +80138 v +s +80144 v +80155 s +v +80163 v +s +v +v +80169 v +80172 v +80176 s +v +80189 v +80197 adv +80200 o +v +v +v +s +o +adv +80211 v +80217 v +o +80232 s +adv +80236 v +v +o +adv +v +80243 v +s +v +80249 v +o2 +s +v +o +80255 v +80259 v +s +p +vc +80264 v +80267 v +io +80271 v +80275 vc +s +p +80281 v +adv +80286 v +v +s +v +80291 adv +p +vc +adv +80298 adv +v +v +80304 v +s +80308 v +80312 v +80326 v +v +io +80330 o2 +adv +v +o +80335 v +o +io +80342 o +v +o2 +adv +v +80350 v +80361 v +v +80367 o +80371 v +v +v +80383 v +80386 v +80399 o +v +80405 v +80407 o +80410 v +s +v +80428 s +80434 v +80436 o +v +80443 v +80446 v +v +s +80457 o +v +80461 v +80466 s +v +adv +80472 v +o +80476 adv +v +80482 v +80487 v +v +80492 v +80495 v +s +80498 v +o +80501 v +80506 v +o +80514 v +80520 vc +p +v +80526 v +o +80535 v +s +80545 v +p +vc +80550 v +80552 adv +v +v +80556 o +v +v +o +adv +adv +v +80564 s +v +io +80571 adv +adv +o +v +v +adv +80578 s +v +v +80587 v +o +v +80594 v +80597 v +80599 s +v +80606 v +80612 v +io +80625 v +o +v +o +80632 v +o +80636 o +v +v +o +80647 v +v +80654 s +v +80658 v +80660 v +80665 v +v +o +80671 vc +80676 v +80685 v +80690 v +80694 v +80697 v +80699 v +s +v +adv +80706 v +80712 v +o +v +adv +v +80719 v +80734 o +v +80739 v +80742 o +v +v +80747 v +v +80751 v +adv +80755 v +80759 v +80768 adv +s +v +v +o +adv +v +80778 adv +v +80783 v +80788 v +adv +v +80792 v +80795 p +vc +o2 +s +v +o +s +v +o +io +v +o +v +adv +80811 v +80815 v +o +v +80820 v +80824 v +80830 v +80833 v +80840 v +adv +80846 v +80851 v +80854 vc +v +80861 vc +s +80865 v +80873 v +80876 o +80879 v +80881 adv +vc +p +adv +v +80891 v +80894 v +80900 v +80905 v +adv +80909 v +80912 v +80916 v +v +80922 v +80925 v +80928 o +s +v +apposition +80939 v +80946 v +s +v +v +80953 s +v +80959 v +80961 v +v +80966 v +80972 v +v +s +80980 v +v +s +80984 adv +v +o +80990 s +80994 v +80999 v +v +adv +v +o +81007 v +81017 v +81032 v +81035 v +81039 v +81047 v +adv +81050 v +81059 v +o +81066 v +adv +v +s +v +adv +81073 s +v +81078 s +v +81083 v +81086 v +v +81092 v +81095 adv +v +81098 v +o +81111 v +v +o +v +81116 p +adv +vc +v +o +adv +81127 v +81129 s +81133 v +v +io +81138 v +adv +81142 v +81145 v +81150 o +v +81154 v +o +o2 +81159 adv +v +v +adv +vc +s +81175 v +adv +v +o +81189 vc +81197 v +81200 v +o +adv +81204 v +v +81214 v +adv +81217 adv +81225 v +81230 v +v +81234 v +81243 v +v +81248 v +81251 aux +adv +p +vc +81260 o +v +81264 s +v +adv +v +81276 v +o +adv +v +81287 s +81290 v +81296 v +81298 v +s +v +o +81307 adv +v +o +v +v +81313 adv +v +adv +v +81325 v +81341 v +adv +81348 v +s +81355 v +aux +81360 v +81364 v +s +v +81372 aux +aux +adv +o +v +p +adv +81381 v +81383 s +v +p +vc +aux +81391 v +s +vc +81395 o +s +v +81399 v +81401 v +81409 v +io +v +o +81417 adv +v +o +81421 adv +v +io +v +o +81435 s +v +o +v +81442 v +81456 v +s +81464 v +81473 vc +p +81495 v +v +81498 v +81506 v +81509 s +o +v +81515 v +v +81518 v +81528 v +v +81534 o +v +81537 s +v +v +81545 v +81547 p +81551 p +81555 v +o +v +81565 o +s +v +81573 v +v +aux +81579 o +81582 v +81586 v +81590 v +81596 v +81598 v +81605 adv +v +v +81609 v +o +adv +adv +v +adv +81616 adv +81621 s +81624 v +81627 v +81629 v +81638 o +v +o +v +81646 v +81662 v +o +adv +vc +81667 p +81670 vc +81675 v +81687 v +adv +81690 v +v +81694 v +81701 v +81706 s +81709 v +v +v +81716 adv +v +o +81721 v +81723 v +s +81728 v +81737 adv +p +81742 v +81745 v +v +81753 v +vc +81763 v +81769 adv +81772 v +v +81777 v +o +v +adv +v +v +81789 vc +p +81800 v +v +81808 adv +v +81812 v +81816 v +o +81824 v +81826 adv +v +81831 adv +v +o +81836 v +81842 adv +v +adv +v +81849 vc +81856 vc +81860 v +81862 vc +adv +p +81872 adv +v +v +81877 v +io +aux +v +81899 vc +v +81911 adv +v +81917 v +81919 p +81922 vc +81927 v +o +v +adv +81933 v +v +81940 v +81946 v +81948 v +s +v +81953 v +v +adv +v +81963 v +81969 vc +p +81972 v +81976 adv +v +v +81981 v +v +81984 v +81987 vc +p +v +adv +p +vc +81995 o +v +o +v +v +82003 v +82008 v +v +82012 adv +v +82015 adv +v +s +82020 o +v +82025 adv +82030 v +82036 v +82044 v +adv +v +82050 v +s +82055 v +adv +v +82063 v +82067 v +v +o +adv +v +82076 v +82086 v +s +v +82092 p +vc +82100 v +adv +82107 p +vc +o +adv +v +82113 v +adv +v +aux +adv +s +v +v +82122 aux +v +io +82129 v +82133 v +aux +82136 v +82140 p +vc +82145 v +io +82148 v +82152 s +v +82158 v +v +s +82168 v +82171 v +82174 adv +82176 v +v +82181 adv +v +82184 adv +v +v +82190 v +82192 adv +82196 v +82199 v +82202 v +s +v +82208 v +v +82214 v +82220 adv +82224 o +v +v +v +82236 adv +s +v +82242 s +v +adv +v +adv +v +82255 v +s +v +82260 adv +s +v +v +v +82267 s +v +o +v +82273 adv +v +adv +v +o +v +82280 v +s +v +o +82285 s +82290 vc +82298 v +82300 v +o +82303 v +o +v +82311 v +v +v +82315 p +vc +s +82320 v +o +82323 vc +82334 v +o +v +82339 v +82347 s +v +82351 adv +v +82354 v +82357 v +o +82361 v +82364 v +82366 v +82370 v +v +82375 adv +v +82382 v +82386 v +v +82392 v +82396 v +82403 v +v +adv +82409 v +82417 vc +82421 v +82423 s +v +v +82429 v +v +82433 v +o +82438 v +82440 v +v +v +adv +82447 v +82452 s +82456 s +82464 adv +v +s +v +82472 v +adv +v +82476 p +82479 vc +82483 v +82485 adv +v +82488 io +82490 v +o +v +82499 v +82505 v +82512 v +82516 s +82520 v +v +82527 v +82530 v +82539 v +adv +p +vc +82546 s +v +82551 v +82554 adv +v +82558 s +v +82565 v +82569 s +v +s +v +v +82575 v +adv +adv +82581 s +v +82584 v +82589 v +v +v +s +vc +p +82602 v +s +82608 adv +p +s +v +o +82615 adv +v +82618 v +82626 v +v +82630 v +82632 v +82635 v +82638 io +v +o +82642 s +v +82651 v +o +v +82655 v +s +adv +82660 v +o +82663 v +v +82673 v +82676 v +82681 p +s +82684 v +82687 v +82690 adv +v +v +82699 v +s +adv +v +82705 adv +v +o +v +82711 v +82715 adv +82719 v +adv +82723 v +82727 v +82737 o +v +82741 v +82744 v +o +82748 v +82751 v +82754 v +82759 v +o +82763 v +82767 v +s +82770 vc +82775 v +s +v +82780 aux +aux +s +82785 v +82793 adv +82796 v +82802 s +v +o +v +v +82812 vc +82816 v +82819 v +v +o +82827 o2 +v +v +82835 v +o +v +82839 v +82849 v +82851 s +82854 v +82856 s +82860 v +82865 v +82877 v +82880 v +o +v +82889 p +adv +vc +82893 adv +v +82896 v +io +o +v +82905 s +io +v +v +82914 v +o +82933 s +v +82936 v +82938 s +v +82941 p +vc +82945 v +v +82952 adv +82957 v +82966 v +v +82973 v +adv +v +82979 v +82981 v +v +82986 v +82988 v +82997 adv +v +83003 v +adv +adv +v +83012 v +83016 v +83018 v +83020 v +o +83023 p +vc +adv +83029 v +83035 s +adv +v +83039 v +83046 v +83049 v +83052 v +83058 v +83068 adv +83075 v +83079 o +v +83093 vc +83100 v +83118 v +83135 vc +83143 vc +83150 io +83163 adv +v +83178 v +83186 vc +83189 o +v +83202 adv +83205 v +adv +83211 v +83213 adv +83216 v +83222 v +83226 v +v +o +83230 v +83234 io +83237 v +s +83240 s +vc +v +83255 aux +adv +v +s +v +83261 adv +v +v +83267 v +83274 v +83292 p +vc +adv +83304 v +83306 adv +v +83313 vc +83318 v +83329 v +83335 v +83341 v +83343 v +83359 v +83365 p +vc +83372 io +v +83390 v +v +83394 vc +s +p +83398 v +83401 adv +83408 v +83414 v +83419 v +vc +p +v +83424 v +83442 v +o +83455 v +83461 s +v +83478 v +s +vc +p +83485 aux +83488 v +o +83500 v +83509 adv +83513 v +83519 v +83526 s +83531 v +83535 s +v +83542 v +83545 adv +v +83549 v +83552 v +o +83559 v +83561 adv +v +v +83569 p +83589 s +83594 v +83599 v +p +adv +vc +adv +adv +o +v +83608 adv +v +83611 v +83613 p +vc +83619 v +83622 adv +v +83626 o +v +83631 v +83633 v +83635 v +83641 vc +83648 v +83650 v +o +83655 v +83659 v +83661 v +o +83664 s +v +83682 v +v +83691 o +v +83701 v +io +o +83712 s +v +io +83730 v +83738 v +83742 v +83756 v +83772 v +83781 adv +vc +s +83788 s +adv +v +adv +adv +v +83795 s +83798 v +83801 v +83807 p +83815 v +83820 adv +o +v +adv +83827 v +83829 o +adv +v +adv +vc +p +s +v +83846 v +83855 v +83857 adv +v +83862 v +83878 s +p +vc +83882 v +adv +83885 v +83889 v +83893 v +83895 v +v +83901 v +s +vc +83914 v +83927 v +o +o +adv +v +83933 v +adv +v +v +83938 v +adv +v +v +83943 v +83946 v +s +83950 v +83958 v +83966 v +83971 v +83974 s +v +83977 o +v +83983 vc +83987 p +vc +83997 v +84004 v +84006 v +84013 v +84028 p +vc +84037 p +84043 p +84045 s +p +84062 p +84068 p +84073 p +84079 p +84081 v +84087 adv +84089 v +s +84099 v +adv +v +84103 vc +84106 p +84110 p +84112 v +84115 v +84121 v +84124 v +s +84133 v +o +v +84137 p +84141 v +84146 v +adv +v +84150 adv +v +84166 v +84171 adv +adv +s +84176 v +84180 v +84183 v +s +s +v +84188 v +84192 v +84198 p +vc +84201 o +v +adv +adv +84206 v +84214 vc +84216 v +84218 adv +v +s +adv +s +adv +v +84226 v +adv +v +84230 v +84233 s +v +adv +v +adv +v +84240 v +o +adv +v +84247 v +84254 v +84267 v +p +84272 v +o +84284 adv +v +adv +vc +84295 v +84297 o +84300 v +84305 v +84309 v +84311 p +vc +84322 adv +v +84334 adv +84339 v +v +84357 v +84359 adv +v +s +84363 s +v +84366 v +84371 v +adv +84383 o +v +84387 o2 +84403 v +84422 vc +s +84426 v +84432 p +84435 v +84441 adv +84447 v +v +adv +s +84455 p +84458 adv +84466 p +84469 s +v +o +84475 o +84480 o +v +84485 adv +v +84488 o +v +84491 v +o +v +84502 s +84505 v +v +o +84509 adv +84513 o +84516 v +84518 v +s +84523 v +io +84529 v +84532 v +84542 v +84544 v +84547 v +84550 v +84559 v +84564 io +84567 v +o +84571 p +84575 v +84580 v +p +84583 adv +84586 v +s +o +84602 v +v +84611 adv +v +vc +84626 v +84640 vc +s +84645 v +84650 v +io +84658 adv +84661 adv +84665 v +84685 s +vc +84702 p +v +84707 v +84713 o +v +84716 adv +adv +v +s +adv +s +84731 vc +p +84750 s +vc +84756 o +v +84760 v +84764 v +84766 adv +v +84769 v +84771 v +84776 v +o +s +84783 v +84786 vc +s +84793 v +p +vc +84800 adv +v +84804 v +84808 v +p +adv +vc +84824 adv +v +84829 v +84832 v +o +84837 v +84839 vc +84841 o +v +adv +v +84846 adv +v +io +84853 v +84856 adv +84858 v +io +84864 io +v +v +84868 v +84871 v +84878 s +v +84885 v +84891 v +84894 o +v +84910 v +84919 v +84921 v +84930 adv +84932 adv +v +84937 v +84941 o +v +84946 o +84950 o +84954 adv +v +84961 v +84970 v +io +84974 s +vc +s +p +adv +84983 v +84985 adv +84988 s +v +84994 adv +s +adv +v +v +85000 v +85009 adv +p +vc +s +s +85016 v +85020 v +adv +85026 v +85034 p +vc +v +85047 v +v +85055 adv +85057 adv +v +85070 adv +85073 v +85085 v +85099 v +85101 adv +s +v +85107 s +vc +85112 s +adv +v +adv +v +s +85119 v +85129 adv +v +85137 s +vc +85141 v +85147 adv +85159 v +85180 v +85182 adv +85186 v +85213 v +85229 v +85232 v +85249 adv +85268 p +vc +85272 adv +85279 p +vc +85284 s +v +85287 v +85291 adv +v +85295 v +85300 v +85306 adv +85310 v +85323 o +v +v +85331 v +adv +v +s +v +85338 adv +adv +v +85344 v +85346 s +v +85355 v +85357 v +adv +85367 v +s +85376 adv +85382 v +85385 p +vc +85396 vc +o +v +85404 v +85406 v +85412 adv +v +s +85419 v +v +85426 v +85429 v +85431 adv +v +adv +v +85436 s +v +85440 adv +v +s +adv +adv +v +85447 adv +v +85451 v +adv +85454 adv +v +v +85459 adv +85462 v +s +vc +85466 p +85470 v +85477 adv +v +85488 v +85493 v +85502 v +o +85509 v +85519 s +adv +adv +v +85525 vc +85532 o +v +85536 vc +85542 adv +v +adv +v +85547 io +v +o +o2 +85553 p +vc +o +v +85558 p +85562 p +85566 s +85570 vc +85575 v +85580 v +85584 v +85588 v +85591 o +v +85601 v +85605 o2 +85614 adv +adv +v +85620 o2 +85630 vc +p +vc +85638 v +adv +85641 o +adv +v +85648 p +85650 adv +v +85656 v +85659 v +85675 p +85690 aux +v +85693 v +o +v +85699 v +85705 v +85711 v +85713 v +adv +85717 v +85720 v +85728 v +85731 p +vc +85734 vc +85739 v +85742 p +vc +85748 adv +vc +s +p +vc +85760 v +85770 vc +s +85776 v +85778 v +85783 vc +85795 v +85802 v +85806 adv +v +85811 v +85813 adv +v +85816 v +s +85826 o +v +85830 p +adv +v +85836 adv +v +85839 adv +85846 adv +v +85849 adv +85852 v +adv +v +85856 o +v +85863 v +85871 s +p +85874 s +v +85878 adv +85880 v +85885 v +85887 s +v +85890 v +adv +85903 o +v +85908 v +o +85913 v +85918 p +85930 adv +vc +p +adv +v +85939 vc +p +85944 io +v +o +85948 vc +85951 p +85958 v +85962 p +vc +85965 s +p +vc +v +85973 o +v +adv +v +85979 o +v +o +v +85984 o +v +o +v +85990 o +adv +v +o +v +v +85999 p +86003 s +v +o +86008 v +86013 v +86015 adv +v +86019 s +vc +86025 s +86028 v +v +adv +86033 v +86036 adv +86039 o +v +86042 v +86044 o +adv +v +86048 o +v +86052 o +adv +v +o +s +v +86059 s +v +o +86064 v +86069 v +86074 v +v +86079 adv +86082 v +86084 v +86094 v +86101 v +86108 v +o +86116 vc +86123 s +s +o +v +86133 s +86149 v +86160 adv +86175 v +o +86192 v +86201 v +86209 v +86220 v +86224 v +86235 vc +86239 v +86252 p +86266 p +86274 adv +v +86277 adv +v +86283 vc +o +v +adv +v +86289 s +vc +86300 v +86305 s +86308 adv +v +s +adv +vc +p +86316 s +86322 p +86328 p +86336 v +86341 v +86345 v +86350 v +86358 v +86365 aux +p +vc +adv +86374 v +86379 v +v +v +86384 adv +86389 v +v +86392 s +86395 v +s +86399 vc +86402 v +86405 adv +86409 v +86414 v +86421 v +86426 vc +86431 p +86441 v +86443 adv +v +86446 v +86448 adv +p +86457 v +v +86473 v +86479 v +86485 v +86493 v +86509 v +86522 adv +86530 v +86536 v +v +86547 v +86550 v +adv +vc +p +86555 o +v +s +adv +v +86562 o +adv +v +v +86568 v +86570 adv +86574 v +86580 o +v +86583 v +adv +v +86590 v +86595 v +86598 v +p +86607 v +86611 v +86614 v +86617 s +v +86624 p +vc +86627 o +v +adv +v +86639 vc +s +p +86646 o +v +o +adv +v +86652 o +v +o +adv +v +86658 o +v +o +adv +v +86664 o +v +86673 s +86677 s +86681 adv +v +86687 v +o +adv +adv +86696 io +v +s +v +86703 s +86705 v +s +86708 v +86712 v +86714 adv +v +s +vc +86722 s +adv +v +86727 s +o +v +86749 v +86753 v +86757 v +86765 v +86768 v +o +86771 v +86782 v +86784 v +86795 v +o +v +86810 o +v +86814 adv +v +v +adv +86825 s +adv +vc +p +86836 v +86839 p +vc +86853 s +vc +86856 p +86874 p +86886 vc +86890 p +86894 aux +86896 adv +s +86899 v +86910 s +p +86914 vc +86917 s +p +86922 v +io +s +s +vc +86932 s +86941 v +86948 p +86953 v +86955 vc +86958 s +86961 adv +86965 o +v +86974 adv +v +86977 v +86989 v +86996 v +v +io +87002 v +87006 v +87009 v +87013 v +87015 o +v +87018 s +87022 adv +v +87027 v +v +87030 o +v +87033 v +87035 o +v +87041 v +87044 v +87047 v +87050 v +87059 v +o +87062 v +87070 v +87080 o +v +v +87084 o +v +v +87088 v +io +adv +adv +v +87097 s +v +87102 p +vc +87106 v +87110 v +87114 v +adv +o +v +adv +87121 v +87131 v +87134 o +87138 o +87145 v +v +87150 v +87154 v +87160 v +87165 v +87174 o +v +87178 o +adv +v +87195 v +v +87205 adv +v +v +87209 vc +87213 adv +v +io +adv +87219 s +adv +vc +87224 v +87226 s +v +87232 vc +87245 v +87247 o +87251 v +s +87258 v +s +87261 adv +87264 v +io +o +87270 vc +87275 v +87277 o +v +87282 adv +v +o +v +87293 s +v +87299 adv +v +87311 v +87317 v +aux +v +87329 v +87332 adv +v +aux +87352 v +io +87357 v +87359 adv +87363 v +87371 v +v +87377 adv +v +87382 s +87387 v +87389 s +v +87398 v +87400 v +87408 adv +v +adv +v +87416 s +v +87421 s +vc +o +v +87426 s +v +87431 s +vc +o +87436 v +87438 o +v +87444 vc +87454 s +vc +87460 o +v +87464 v +87472 v +87480 o +v +87484 v +87486 adv +v +87491 adv +v +87496 v +87501 v +87504 adv +v +87507 adv +v +87518 p +v +87523 v +o +87528 s +v +87533 v +87535 adv +v +87538 o +adv +v +87542 adv +v +o +adv +v +87548 adv +v +87551 v +87553 adv +v +87556 adv +v +87559 v +adv +p +87565 v +o +87568 adv +s +v +87574 s +v +aux +s +v +87594 v +87596 adv +v +87603 v +87617 v +87619 s +adv +v +adv +s +v +s +v +o +87634 v +o +87637 s +v +87640 v +v +87643 o +adv +v +p +vc +87649 o +adv +v +87656 v +87660 v +87666 v +87668 v +87670 v +87672 v +87678 adv +v +87683 p +vc +87690 adv +v +87697 o +v +87700 adv +v +87704 o +v +87709 v +87715 aux +87719 v +87723 v +s +v +adv +87728 v +87733 o +v +io +87738 v +io +87742 s +adv +v +o +87749 adv +87755 s +87759 v +87762 adv +adv +87769 adv +vc +p +87773 o +o +v +s +o +adv +v +87783 v +87787 v +87789 v +v +io +87798 adv +v +87803 adv +v +87810 s +v +vc +87828 v +87833 adv +v +87841 v +87843 v +87845 v +87847 v +adv +v +87860 v +o +87881 v +87888 adv +vc +s +87896 v +87899 v +87904 v +87915 p +87919 adv +s +87927 p +87935 p +87944 v +87946 s +p +vc +v +87960 vc +adv +v +87967 v +87969 s +87972 v +87976 o +87978 v +v +s +87982 s +v +adv +87987 v +87989 s +87992 v +87994 o +v +87997 v +88006 adv +v +adv +o +v +88012 v +88020 v +s +88028 v +88034 v +88036 s +88038 adv +v +88042 v +88044 p +vc +88048 adv +v +o +88053 s +88059 v +88063 v +88072 v +88077 aux +adv +v +s +v +88086 adv +vc +88090 p +88092 s +88097 v +88099 adv +88104 v +88106 adv +88109 v +88111 v +v +88116 v +v +o +88122 s +adv +88129 v +88137 p +88144 p +88149 p +88159 s +adv +v +88165 adv +v +88170 adv +88173 adv +v +88181 adv +v +88184 v +88194 v +88204 p +88209 p +88214 s +v +88219 s +88222 vc +88224 s +v +io +88228 v +io +88241 io +88247 aux +88249 aux +v +88256 s +v +88262 v +88273 v +88278 v +88285 v +s +p +88299 v +88304 v +io +88308 vc +88312 v +88314 o +v +v +88318 v +88321 v +88323 io +88326 v +88336 v +88341 adv +88345 v +adv +88351 vc +88361 v +88368 v +io +88371 o +88378 o +88384 v +88390 v +88395 v +88399 v +88403 v +88408 p +v +88412 v +88419 p +88422 o +v +88426 adv +p +88430 v +88433 v +88436 v +88439 v +88442 v +88447 v +88450 v +v +88453 v +v +88456 adv +v +v +88460 v +v +88463 v +88468 v +88472 v +88476 v +adv +vc +p +88482 io +o +88486 v +v +o +88493 p +88500 v +aux +88503 o +v +88506 v +o +88511 v +p +s +s +v +v +s +88520 v +88524 v +o +88527 v +v +o +88531 o +v +88535 v +88540 adv +v +88546 v +88555 v +v +88558 adv +v +s +88562 adv +88567 v +88574 v +88581 v +88584 v +io +o +v +88591 vc +p +88601 v +adv +v +88608 v +88610 v +o +88617 vc +adv +88626 v +v +88633 v +88637 vc +p +88644 v +88646 p +v +88663 v +88667 vc +88671 v +v +io +88696 io +o +v +88700 adv +88702 o +v +88706 v +88709 o +v +88713 adv +v +adv +v +adv +v +adv +v +88730 v +88733 v +88738 o +88743 o +adv +v +88752 v +88757 p +adv +s +88762 v +88764 adv +p +88771 v +88774 v +88778 v +88780 v +88786 v +88794 adv +v +adv +88800 adv +88804 adv +88809 v +88818 adv +v +88824 v +88827 v +adv +88833 s +v +v +o +88839 v +o +v +88843 v +88845 adv +v +adv +v +88851 adv +v +88854 v +adv +v +88860 o +v +s +p +vc +88866 v +88876 v +88878 v +88881 v +o +88885 s +v +o +88891 s +v +88895 s +88900 v +88902 v +88905 adv +v +88909 v +adv +v +88913 v +88918 adv +v +adv +adv +v +88924 v +88930 adv +v +88933 s +adv +v +88939 v +88942 v +88945 v +88948 v +88952 v +88955 v +88958 vc +88962 s +88970 v +v +88973 s +adv +v +88982 adv +v +88988 s +v +88995 v +v +s +v +s +89001 adv +v +89008 v +89017 o +v +89022 adv +o +v +89026 o +v +adv +89030 adv +v +89044 s +p +89051 v +s +p +vc +adv +p +89064 v +adv +89068 v +adv +89073 o +v +89077 s +v +89080 adv +v +89087 vc +89108 v +89111 p +89115 p +89120 v +89131 adv +89134 v +89140 s +p +89143 p +89149 v +p +89152 adv +v +o +89156 v +o +89164 v +s +89167 o +v +89171 v +89175 p +89177 adv +v +o +89181 o +v +89186 v +v +v +89190 adv +89195 s +adv +89199 p +vc +89202 v +89210 v +89212 adv +o +v +89219 v +89229 adv +o +v +89234 v +89238 v +o +v +89244 s +v +89250 v +89263 v +89272 v +io +89276 v +89283 adv +89287 v +89298 v +o +89304 v +o +89311 v +s +89315 vc +89321 v +89331 v +89335 v +89338 v +o +89346 v +89348 adv +v +aux +v +89357 adv +89361 v +89365 v +o +89371 adv +s +v +v +89381 v +v +adv +89386 s +v +89393 v +o +89401 v +89404 v +s +89416 v +89425 p +vc +adv +v +89432 v +89435 v +89437 adv +v +io +89443 v +o +89449 v +io +89456 vc +s +89464 v +89470 vc +89475 p +v +89481 v +89493 v +v +89496 o +adv +v +s +89518 s +89526 v +89532 adv +v +v +89536 adv +v +s +89544 v +89547 v +v +io +adv +v +89555 s +adv +v +v +89560 adv +v +89565 v +89569 adv +adv +o +v +89578 o +v +89581 v +89589 v +89594 v +v +v +o +89601 v +adv +89604 adv +adv +89608 v +89610 adv +v +89614 v +89618 v +89624 v +89634 v +89636 p +vc +adv +89644 v +89647 v +adv +89652 v +o +89655 o +v +89658 v +io +89663 v +89669 v +89671 v +89678 v +89680 aux +v +89694 s +v +adv +89706 v +89709 v +89720 p +89723 vc +89727 v +89733 v +adv +89743 aux +89745 v +io +89751 vc +89759 o +v +89767 v +adv +89771 adv +o +v +apposition +89778 vc +89784 v +89794 s +89802 v +o +v +89821 v +89826 s +vc +89833 v +89835 s +o +v +89840 v +89850 s +vc +p +89856 s +89860 vc +89863 v +89870 v +89882 v +89888 v +89893 v +89898 v +89904 vc +89907 v +89912 v +89915 v +89919 s +o +v +89924 v +89936 v +89947 v +89964 v +o +89969 v +o +89977 aux +v +s +v +89990 o +s +v +v +89995 v +90005 adv +v +90017 v +90028 v +90032 v +90034 v +s +p +vc +90042 p +90051 v +90068 v +o +90083 v +o +90088 v +90093 v +o +90103 v +o +90116 v +o +v +90133 v +90135 v +adv +90153 v +90160 io +90168 aux +90186 vc +90189 v +90198 v +90212 io +90224 v +90227 adv +90236 v +io +90244 v +90258 v +90262 s +adv +v +90268 v +90276 s +adv +v +o +90282 o2 +90291 p +90296 v +90308 aux +v +o +90322 v +s +90325 adv +vc +90329 s +90345 v +io +90353 s +90356 vc +90358 v +o +90363 v +90365 s +vc +p +90369 s +p +90372 s +p +90375 s +p +v +90381 s +v +90390 v +v +90395 v +90397 adv +90402 adv +s +v +90410 v +90412 v +90417 adv +adv +v +90423 v +90425 v +o +s +90429 v +90431 v +adv +90437 adv +v +90451 v +p +vc +90456 v +90460 vc +90462 v +v +90473 v +p +s +p +s +p +90484 v +90498 adv +v +90507 v +90515 v +90517 v +90520 s +o +v +90524 s +o +v +90528 s +v +90531 v +90533 io +o +90536 io +o +90557 p +90560 vc +90566 p +90570 aux +v +90576 adv +p +s +90581 adv +p +s +adv +p +s +90592 v +90596 v +90604 v +90608 v +90618 v +90620 adv +v +v +90627 v +v +90630 adv +v +90640 s +vc +90645 s +vc +adv +90659 v +90661 v +90664 v +aux +s +v +90670 v +adv +90677 v +io +90684 adv +v +o +v +90691 adv +90696 v +s +90707 vc +90733 vc +90743 o +v +90749 adv +90761 v +90763 v +90769 v +o +v +90780 o +90787 v +90790 v +90792 adv +90797 v +90800 v +o +s +adv +v +90806 s +adv +v +90813 adv +v +o +v +90820 v +o +90823 io +v +90833 o +v +90843 v +90848 adv +90856 adv +90861 s +v +90864 adv +90871 s +90876 v +90885 v +90890 v +io +o +adv +v +90905 adv +o +v +90911 adv +v +90919 p +adv +vc +90923 adv +v +v +90927 adv +v +90932 v +adv +o +90936 s +90939 v +90941 s +v +90945 s +v +o +90949 s +90952 v +aux +s +v +90957 v +io +90968 o2 +o +v +adv +o +90974 adv +v +90977 adv +adv +adv +v +90982 adv +p +vc +90993 p +vc +90998 v +91002 v +s +s +vc +p +91008 s +s +p +91012 p +vc +91015 p +vc +s +91019 p +vc +s +91025 v +91031 v +s +v +s +v +91039 v +91043 v +vc +p +91048 v +91051 v +91055 v +91058 v +p +vc +91062 s +91066 v +91072 vc +91079 vc +91086 v +io +91091 o +v +91094 s +v +91097 s +v +adv +v +91102 s +v +91106 v +91109 v +s +vc +91116 s +v +91131 p +vc +91136 v +91140 v +91145 p +vc +91149 o +v +91152 v +91156 o +v +o +v +91164 v +v +91167 s +v +91171 adv +91174 adv +v +91179 vc +91187 v +91189 s +91194 v +v +o +91204 p +vc +p +vc +s +s +o +v +91213 s +v +p +vc +91223 p +vc +91226 vc +p +91234 p +91238 vc +91240 v +91242 v +91250 adv +s +v +91258 vc +p +91261 s +v +91266 s +p +vc +91282 v +91284 v +91286 p +91288 s +p +91291 s +p +adv +o +v +s +91304 adv +adv +v +91311 o +s +v +91315 adv +91318 vc +91320 v +91328 adv +o +v +91332 o +adv +v +91336 adv +91339 v +91342 v +o +p +vc +91347 adv +91350 o +v +91354 v +91357 s +91359 v +91365 v +91371 adv +91374 v +adv +91380 aux +o +v +91392 v +91394 adv +91396 s +v +91399 adv +s +91404 v +91409 s +o +v +91413 v +91415 o +adv +v +91420 adv +v +adv +v +91425 adv +v +adv +91430 adv +v +91434 v +91436 v +91438 v +91442 adv +v +91445 v +91451 adv +v +91456 p +vc +91464 s +p +91469 s +p +91473 s +p +91476 s +p +s +p +91481 s +p +91498 v +v +91503 v +v +v +v +v +v +91515 vc +91518 adv +v +o +v +o +91528 v +91533 v +91537 adv +91547 s +o +v +91551 v +o +91555 vc +91559 v +io +91562 s +vc +91571 s +o +v +91582 adv +91586 v +91589 adv +v +s +91594 v +s +91597 v +adv +91604 v +91606 v +91611 v +91626 o +v +91630 v +91639 adv +v +91647 s +adv +91653 s +91657 v +91659 s +91663 adv +adv +v +91667 v +91675 v +91677 s +91679 v +91683 v +91686 adv +v +91689 v +91691 adv +o +v +91700 v +91713 v +91725 v +91731 adv +p +91736 adv +v +91744 v +v +91750 vc +91754 vc +p +91762 v +91764 v +91781 v +io +91786 adv +v +adv +91805 v +91809 v +91811 adv +v +io +adv +v +91818 p +vc +vc +91834 adv +v +91837 p +adv +91841 v +91845 s +v +91852 v +v +91859 v +91862 o +v +91867 v +91872 adv +91877 adv +v +91884 v +91889 v +91892 p +vc +91896 adv +v +91899 o +v +91902 o +91908 v +91910 v +91914 o +v +91918 io +v +91921 adv +vc +91927 s +v +v +91936 s +91939 v +91941 adv +91946 adv +adv +p +adv +vc +91952 o +v +91958 adv +adv +v +91963 adv +adv +v +91967 s +91972 adv +o +91975 adv +v +91978 s +91981 adv +v +adv +v +92007 v +92009 p +s +vc +92013 v +92015 v +92017 v +92032 s +adv +v +92036 adv +s +v +s +adv +v +92043 adv +s +v +92064 v +92085 v +92087 o +v +92093 adv +v +92101 vc +92103 v +92108 v +92111 adv +v +92114 adv +v +92118 v +92123 vc +92125 v +vc +92134 v +92139 vc +v +92146 o +v +s +92152 vc +92155 v +92160 v +92162 adv +v +92174 vc +adv +v +92180 adv +vc +p +92184 v +adv +92187 v +92196 o +v +p +adv +o +adv +v +92207 s +92211 v +92213 s +92217 v +92224 v +92226 adv +92237 adv +v +92250 adv +v +92255 adv +v +o +92266 v +92270 adv +92274 vc +92276 adv +v +o +92286 o +v +92290 adv +92294 v +92297 vc +92302 s +v +92309 s +adv +92312 s +adv +92315 v +92321 p +adv +92324 v +92329 adv +v +v +92333 p +vc +v +92337 v +92340 v +v +92347 s +92350 adv +v +92354 adv +v +vc +p +92361 v +92363 s +o +adv +v +92370 v +92378 v +92382 s +v +v +92387 adv +v +o +92392 s +v +92397 s +v +v +92402 adv +v +92407 v +92416 v +92429 p +vc +92432 adv +p +vc +92439 v +v +adv +v +92454 v +o +92459 aux +o +v +92465 v +92467 aux +o +v +92473 v +92477 io +v +92482 o +v +92486 adv +v +92489 adv +92494 v +v +s +v +adv +v +92502 v +s +adv +v +92508 p +vc +92513 p +vc +92519 s +92523 adv +v +92527 v +p +v +adv +adv +v +92535 adv +v +p +vc +adv +v +92545 v +92549 vc +92553 v +vc +92557 adv +v +adv +vc +92563 aux +s +92567 v +92570 v +92579 adv +v +92582 o +v +92585 v +92588 p +vc +92591 v +s +p +vc +92597 v +92600 p +adv +92603 p +vc +v +adv +adv +v +o +v +92613 adv +v +o +92618 adv +v +adv +v +92624 v +92627 adv +v +92630 o +92633 v +92637 s +o +v +92641 aux +o +v +92653 v +o +92656 adv +v +vc +92661 v +92663 adv +v +92667 v +92669 adv +v +92673 v +92675 adv +v +92679 v +92683 adv +v +92686 v +92693 v +s +p +vc +92699 v +92703 adv +v +92709 v +v +92714 adv +v +92719 v +92728 v +92733 vc +p +92743 v +v +92748 adv +v +92753 o +92759 v +92762 o +io +v +92773 adv +92776 s +v +92782 v +92784 vc +p +92787 adv +v +v +o +v +v +adv +v +v +92797 s +v +92803 adv +adv +v +o +92808 o +v +92815 o +v +92821 v +92825 adv +v +92830 v +92834 adv +v +92838 adv +v +o +v +s +v +92847 v +92853 v +92856 p +vc +o +v +v +adv +92865 p +vc +92868 adv +v +92875 v +s +92879 v +92884 v +92886 s +o +v +92891 v +92895 v +92897 s +v +v +o +adv +v +92904 v +v +92908 s +v +92912 s +v +92922 v +92924 p +s +92930 p +s +92933 adv +p +92937 adv +vc +v +92948 vc +s +p +92952 s +p +92955 adv +p +92965 s +92969 p +92978 s +92982 adv +92988 s +92996 o +v +93002 p +vc +v +93006 s +o +adv +v +93014 adv +v +v +93019 v +v +93022 v +93029 p +vc +93035 s +v +93039 v +o +93043 v +93048 p +vc +v +93055 v +93057 v +93063 v +93068 s +v +93071 adv +v +93077 v +93081 v +93084 v +93087 s +v +93094 v +o +93100 adv +93104 v +93106 vc +p +93109 vc +p +93116 v +93121 s +vc +93126 adv +adv +vc +p +93132 adv +vc +93140 s +vc +93148 o +v +vc +p +93153 adv +v +o +93160 adv +v +o +93165 v +93179 adv +93183 adv +v +o +adv +v +s +v +93192 adv +s +v +o +93200 adv +v +93203 s +v +o +93212 adv +v +93217 o +v +93223 o +adv +v +93231 v +adv +v +93235 v +93239 v +93245 adv +v +93250 v +93252 v +93255 v +93257 v +93260 v +93264 v +93266 s +io +93270 v +p +93273 s +93277 v +93279 s +93283 v +93285 adv +s +93288 adv +v +93294 o +v +93297 adv +93300 v +93305 adv +v +93311 v +93316 v +93320 v +93323 v +adv +93328 v +93332 v +93336 v +93338 s +adv +v +93344 adv +v +o +93348 adv +v +93353 p +adv +adv +v +93361 s +v +93365 v +adv +vc +p +s +93371 s +adv +v +93375 s +p +vc +93379 adv +v +93383 adv +o +v +o +v +93390 adv +o +v +93394 p +vc +93400 v +adv +v +93407 adv +v +93416 p +vc +93420 io +o +v +93426 v +93428 vc +93434 o +v +93442 adv +vc +s +93451 v +93457 vc +93464 v +93467 vc +93470 p +93474 v +93477 vc +p +93480 adv +o +v +93484 o +v +93492 vc +adv +v +93499 v +93501 s +v +93504 s +v +93508 adv +v +93511 v +93515 v +adv +v +93520 s +93524 v +93526 s +o +93529 s +adv +v +93533 adv +adv +adv +v +93538 adv +o +v +93542 v +93547 v +93550 io +v +s +p +vc +93556 aux +adv +v +s +v +93569 vc +93571 s +93575 v +93577 s +93581 v +93590 s +93595 v +93597 s +93602 v +93604 v +93607 v +93612 vc +93616 adv +93621 v +93625 v +93630 s +93633 vc +93636 adv +vc +s +93642 s +v +93645 p +vc +93651 v +v +93659 v +v +93662 v +93666 v +93668 v +93674 v +93680 v +93685 v +93687 v +93691 v +93693 v +93698 s +adv +v +adv +93703 v +93713 v +93716 v +v +v +93720 v +s +o +adv +v +93726 adv +s +93729 p +93732 s +93734 v +s +v +93738 o +v +93741 v +93749 v +v +93754 v +93759 io +v +v +s +o +v +93769 o +v +adv +vc +93780 o +v +adv +93788 vc +93790 p +s +93796 vc +93804 v +v +93812 v +93818 vc +93820 o +v +93823 s +p +vc +93828 s +p +vc +93833 o +v +93839 v +93841 adv +v +s +93847 vc +adv +v +93852 v +93856 adv +v +93860 v +93865 v +93869 p +adv +vc +s +v +93875 adv +s +v +s +v +93881 adv +s +v +s +93887 v +93896 v +v +o +v +93916 v +o +93919 v +v +93923 v +io +v +o +v +93933 s +io +v +s +p +vc +adv +v +93944 v +93949 v +93964 v +93969 s +adv +v +adv +v +93975 adv +s +v +93980 v +93982 v +93984 o +v +o +93990 v +p +vc +94003 s +adv +o +v +v +94017 v +94020 vc +94022 s +p +94025 v +o +94028 adv +o +v +94033 v +io +94037 v +94039 v +s +v +94049 vc +94068 v +v +94082 v +94087 vc +94093 v +94096 adv +v +s +adv +v +94103 p +adv +94109 v +94112 s +adv +v +v +94122 vc +94128 vc +94131 vc +s +94136 s +94142 v +s +94148 s +94154 v +94157 o +v +94167 s +94171 s +94183 adv +94199 v +v +vc +94206 v +adv +94211 v +o +94216 s +v +p +adv +vc +94223 s +v +p +adv +vc +94233 v +io +94237 s +v +p +vc +s +94244 adv +v +94252 o +v +adv +v +94265 v +94269 v +s +94273 v +s +94277 v +94281 v +94283 v +94288 vc +94293 p +vc +94298 v +s +94303 adv +v +94307 v +94309 s +94313 v +94316 v +94319 s +v +94322 s +v +94326 o +adv +v +94339 v +94341 v +94343 adv +v +o +v +io +v +o +94352 adv +v +94355 s +v +94360 o +adv +v +io +94371 adv +v +v +o +94376 v +v +94379 v +s +vc +94388 o +v +94400 v +v +94408 vc +94413 o +v +94417 v +94425 v +94432 v +94437 v +94439 adv +v +94443 s +v +94448 v +94453 adv +p +vc +94464 v +s +o +94468 adv +94472 v +94477 v +94483 o +io +94488 adv +v +94496 s +94501 v +s +94505 o +v +94508 adv +v +94511 v +94515 v +94517 adv +94521 v +94525 v +94528 v +o +v +94532 s +v +94536 v +94538 adv +94541 v +94547 v +v +94550 aux +94554 adv +v +s +v +v +94561 p +vc +94570 v +v +94573 v +io +94580 v +v +p +s +94585 s +v +v +p +s +94591 adv +94598 v +94606 v +94614 v +94620 v +94626 io +v +94634 v +94637 io +94641 v +94645 io +94652 io +s +94659 io +94667 io +94671 io +s +94674 io +94677 io +94681 io +94687 v +94694 v +94698 v +94703 p +vc +94708 v +94715 p +vc +94719 vc +adv +94734 v +94744 s +94747 v +94752 vc +94759 v +94763 adv +vc +p +adv +vc +94774 adv +vc +94781 v +94785 adv +vc +p +adv +vc +94796 adv +vc +94805 p +p +94810 s +p +p +94816 adv +94819 v +94829 v +94832 vc +94837 p +94842 adv +p +s +94846 p +s +94849 adv +v +94853 v +94858 adv +v +94861 adv +94868 adv +v +94874 v +p +vc +94880 p +vc +94883 s +vc +94888 v +io +94892 v +94899 v +94904 adv +o +v +94910 v +94914 v +v +94919 adv +vc +s +94930 v +94935 v +94938 v +94943 v +s +v +94950 s +vc +94960 o +v +94967 adv +o +adv +o +adv +o +adv +o +adv +94983 s +p +94986 s +p +94989 s +p +94992 s +p +94995 s +v +95000 s +adv +v +95004 s +v +95007 v +95016 o +io +v +95027 v +95029 o +adv +v +vc +95034 v +95037 v +95040 v +o +95043 v +95053 v +95058 o +v +95061 o +adv +v +p +vc +95068 v +95071 v +95075 v +95080 v +95082 o +adv +v +o +v +95089 v +v +95093 adv +v +95097 adv +v +adv +v +adv +v +adv +v +95107 adv +v +adv +v +95114 v +95119 v +95122 o +v +o +v +o +v +o +v +95132 adv +v +95136 s +v +95139 s +v +95142 s +v +95147 v +95151 v +95154 v +95160 v +95162 vc +p +v +95167 v +95170 v +95174 vc +p +v +95181 v +adv +95188 adv +o +95192 adv +v +95197 adv +v +95200 adv +v +95203 adv +v +95212 p +adv +95216 v +95220 v +95225 adv +v +95229 v +adv +adv +io +v +95235 io +95237 s +v +95240 io +v +o +95245 v +io +v +95254 v +adv +o +v +95260 v +o +v +95264 v +95267 v +adv +95271 adv +v +95274 p +95276 v +95279 v +adv +95282 adv +adv +v +95288 o +v +95291 aux +95293 adv +v +95297 adv +v +o2 +o +v +95303 adv +io +v +95320 o +v +95327 o +95330 adv +v +adv +v +95335 v +95338 v +95345 v +s +v +95357 adv +95360 v +adv +v +95364 v +95371 v +95375 vc +95379 s +p +95383 adv +v +95389 vc +95391 v +p +95395 v +95398 p +95405 vc +95411 v +95413 v +95416 v +adv +v +95420 v +95423 v +adv +95428 v +95433 p +vc +95436 p +vc +v +95442 v +95446 v +95450 v +95456 v +adv +95459 v +95464 adv +v +95473 o +v +adv +v +95479 s +adv +v +95485 adv +v +v +95492 adv +adv +v +95498 v +95504 v +95508 v +95514 aux +95516 p +vc +95523 v +95527 p +vc +95532 v +95540 v +95545 adv +adv +v +o +v +s +95556 vc +95559 v +95571 v +95574 v +95582 s +v +adv +95586 v +95591 v +95593 v +95596 s +v +95599 v +95604 v +95607 v +95615 p +vc +95618 adv +v +95622 v +95625 v +95627 adv +95632 vc +95634 p +vc +aux +95638 v +s +o +v +o +v +o +v +o +v +o +v +s +95653 vc +95655 adv +s +v +95668 s +v +95672 adv +v +s +v +95679 v +95689 v +95693 v +95697 v +v +95701 v +95703 v +95706 s +v +95709 s +v +95712 s +v +95717 io +v +95721 vc +p +95726 p +95739 v +95741 adv +v +io +v +95746 v +95751 v +95754 o +v +v +95762 v +95764 p +vc +adv +v +95777 v +95781 adv +v +95784 s +v +vc +95790 v +o +v +io +95797 vc +95800 s +v +v +95806 v +95808 v +95811 v +adv +adv +v +95816 s +95821 v +95823 aux +v +io +95828 o +v +io +o +adv +v +95836 adv +v +95840 adv +v +95844 v +io +95847 v +95850 adv +adv +v +95854 v +io +95858 o +adv +v +95862 s +v +95873 v +95876 v +95886 v +io +adv +95891 adv +v +95896 adv +95901 v +95905 s +v +adv +v +io +adv +95917 v +io +95923 s +vc +95929 s +adv +vc +p +vc +p +95936 v +95944 vc +p +vc +95954 adv +p +vc +95958 adv +95961 v +95977 adv +v +95980 adv +v +95984 s +v +95989 v +adv +v +95998 adv +v +96004 adv +v +adv +s +v +96011 s +adv +v +96015 p +96019 p +96025 vc +96031 v +96036 v +96039 o +adv +v +96044 s +adv +v +96049 s +adv +v +adv +s +v +96057 s +adv +v +p +96064 adv +vc +96073 v +96076 v +96086 adv +p +96090 vc +96092 adv +v +96099 v +96104 s +96115 s +v +adv +96122 s +v +96125 s +96130 p +s +adv +96140 adv +96144 v +96152 v +96161 v +s +v +96165 adv +v +96178 v +96180 o +v +96188 v +96190 s +v +p +96196 v +io +96202 v +io +96206 adv +96211 v +96213 v +io +96218 vc +96221 p +96225 o +v +96228 v +96233 adv +s +adv +v +adv +adv +v +96242 adv +96245 v +96248 aux +96251 v +96256 o +v +96267 v +96270 p +adv +96275 s +adv +v +v +96280 v +96282 adv +v +adv +v +v +96291 v +adv +96294 adv +v +96299 s +v +96303 io +v +96306 v +s +adv +v +96315 v +aux +o +s +v +adv +v +96323 adv +v +96326 o +v +96332 v +v +96338 v +96347 v +io +o +96351 v +96366 p +s +96369 p +96373 p +96377 p +s +96387 p +96393 p +96397 p +96401 p +96405 p +96409 s +adv +v +96414 adv +96420 v +96423 v +96426 v +96429 v +96432 v +96435 v +96438 v +96441 v +96445 v +96448 v +96451 adv +adv +v +v +96461 v +96467 v +96470 adv +96476 adv +96484 p +96490 p +96493 p +96498 p +96501 p +96507 v +96512 v +96519 o +v +aux +96528 v +adv +v +96536 v +v +o +io +v +s +adv +v +96545 s +v +96557 v +96561 v +adv +96564 s +v +96567 v +96571 v +o +96577 v +o +96584 v +o +96590 v +o +adv +v +96597 v +v +96603 aux +p +96608 aux +p +96628 s +96632 v +io +96646 vc +96649 v +96655 adv +v +96661 adv +vc +p +96675 v +96680 adv +96683 v +96691 v +v +96695 o +v +96698 adv +96700 v +adv +s +v +96706 v +96708 o +v +96712 o +v +v +96722 p +vc +96725 s +v +96729 v +96731 v +96735 adv +v +96738 adv +v +96743 v +v +96746 adv +v +96749 s +o +v +96753 adv +v +96756 adv +v +o +adv +96762 v +96764 v +96767 v +96773 v +96775 v +96782 adv +v +96789 v +p +96793 v +s +v +96797 p +vc +96805 v +96809 adv +s +o +v +96814 v +o +96819 v +96823 v +o +96833 adv +v +o +96837 v +96844 adv +adv +v +s +96849 adv +v +96852 v +96854 v +v +v +96860 v +v +96866 vc +96868 v +o +aux +v +96876 vc +96885 v +o +96890 v +96896 v +96898 v +96900 v +96913 s +v +96916 v +96924 v +96927 v +o +96933 v +o +96937 adv +96947 v +o +96952 v +o +96964 s +adv +v +96969 vc +p +aux +v +97005 vc +97013 vc +97018 io +97030 p +97049 v +o +97058 v +s +v +97068 adv +v +s +97076 v +97083 adv +97087 v +97094 v +97102 v +97108 v +97114 o +97117 v +97122 p +97125 v +97128 vc +97132 adv +97137 aux +adv +v +s +v +97147 vc +97156 v +97158 v +s +97162 v +97164 s +97171 v +97183 v +97186 s +97190 v +o +97193 v +97196 v +97200 v +v +97218 v +97226 vc +97247 v +97252 adv +97256 v +io +97262 o +v +97265 adv +v +97268 v +97272 v +97274 adv +v +o +97282 vc +97286 p +97298 v +adv +97302 v +97306 v +97310 v +97314 adv +97317 v +97323 v +97328 o +v +97334 v +97336 o +v +97340 v +97342 vc +97353 p +97363 adv +vc +97380 v +97387 adv +vc +97393 p +97396 vc +97419 v +o +97426 v +o +97431 v +o +97434 v +97444 s +o2 +97448 v +97454 v +o +adv +v +97462 v +97467 p +vc +97475 v +97477 v +adv +97487 v +97490 s +v +o +97496 v +o +97499 adv +97501 v +97505 v +97509 adv +v +o +v +97514 adv +s +v +v +v +97528 vc +97536 v +io +97543 v +97546 v +97549 o +v +adv +97556 s +v +97559 o +v +97567 adv +v +p +97582 s +97591 v +97595 v +s +v +97600 o +97604 adv +v +97607 v +97614 p +vc +97617 io +o +v +s +97624 o +v +97627 o +v +97635 adv +v +97641 adv +97645 v +97647 v +97657 s +io +v +97662 adv +v +o +97669 adv +v +s +97677 v +o +v +97683 s +97687 adv +v +o +97699 v +97708 vc +97713 v +97717 v +97719 adv +97726 adv +97735 s +p +97760 v +v +adv +o +v +97767 v +97780 s +vc +v +97793 v +97795 vc +97798 v +97801 v +97807 v +97820 v +97831 p +vc +v +o +97845 s +adv +v +o +97859 v +97863 v +97872 v +adv +v +97878 adv +v +97883 v +97895 v +adv +97903 v +97912 p +97915 v +97920 adv +97922 adv +adv +v +97926 v +97933 v +97938 v +97944 v +97948 v +97953 v +97957 s +v +o +97966 adv +v +97975 v +97977 v +97995 v +adv +v +98001 v +98007 v +s +s +98014 v +98018 v +98021 v +98029 vc +98031 adv +98035 s +98039 v +98044 v +98048 v +98059 v +98064 v +98066 v +98068 v +98074 v +98078 v +98088 v +o +98099 adv +98107 v +98117 v +98124 adv +v +98134 s +vc +98141 o +v +98146 o2 +98148 o +98157 v +98160 s +v +s +v +98180 v +98192 vc +98196 adv +98201 v +98203 adv +v +v +98207 adv +v +v +98211 adv +v +v +98215 adv +v +adv +98225 v +98236 v +98238 adv +98241 v +98244 v +98253 v +98264 v +98271 v +98279 v +v +98282 v +98285 v +98287 adv +v +v +98292 v +98300 v +98302 v +98313 v +98319 v +98326 adv +v +98335 v +98340 v +98357 v +io +98360 v +s +98363 v +98366 adv +v +98370 v +p +98374 adv +v +p +98378 v +98387 v +98390 v +98402 v +98409 v +v +98413 adv +v +adv +p +vc +98421 vc +98425 v +v +98428 adv +v +98435 v +98443 v +o +98450 v +io +98457 v +adv +98460 v +98462 v +98466 v +98473 v +98478 v +98480 v +adv +v +98487 v +98492 adv +v +98498 p +adv +vc +98505 v +98511 v +98513 v +s +98520 o +v +98523 o +98525 o +98527 v +98532 o +v +98535 adv +v +98538 v +98544 v +98546 adv +o +v +io +98553 v +io +98558 v +98563 v +98565 adv +98570 v +io +98573 v +io +98580 v +o +v +o +98585 s +98588 v +98592 v +98596 v +98599 v +v +98611 s +98615 o +v +98620 adv +v +98624 o +98626 adv +adv +v +98631 s +98638 v +aux +v +s +98649 v +o +io +98655 v +io +98663 s +98668 o +io +adv +v +io +98677 v +98687 v +98691 v +98694 v +98697 v +98701 adv +v +o +98706 o2 +v +98709 s +vc +98716 v +adv +v +adv +98726 v +s +98729 v +98732 v +o +98738 v +o +aux +p +98744 aux +p +98752 v +98754 adv +v +98761 v +o +98825 p +98827 p +98829 v +98831 v +98833 v +98835 v +v +98838 v +98840 adv +v +98843 v +98845 adv +v +98848 p +98850 o +v +98853 o +v +98856 o +v +aux +98862 v +98868 v +adv +v +98874 v +98884 io +v +v +98889 adv +98892 adv +98894 s +p +98900 s +p +adv +98906 s +98912 s +p +adv +98918 s +p +98925 s +98928 v +vc +98931 v +98935 v +98939 v +98941 vc +98945 s +vc +98950 v +98955 v +98957 o +adv +v +v +s +s +v +o +98966 vc +adv +98971 s +vc +adv +98978 v +98982 aux +v +98987 v +o +98995 v +o +99000 v +o +o +v +o +v +o +v +99010 adv +v +99013 v +99019 vc +99025 p +adv +s +99030 p +adv +s +99035 v +99038 v +99047 adv +v +s +99053 v +o +99061 v +p +s +p +s +99068 v +99073 v +o +99091 adv +v +99095 v +io +99109 s +adv +v +99114 adv +v +o +99120 adv +v +99123 adv +v +v +99131 adv +99134 v +o +adv +v +99140 v +99143 v +99147 v +99153 v +99165 v +99171 o +v +99174 aux +99180 v +v +io +99199 v +o +p +vc +99207 adv +v +io +99213 v +99217 v +99221 v +99235 v +99243 v +99249 v +99258 o +io +99262 v +99264 v +99267 o +99270 v +io +adv +99279 p +vc +99285 p +99288 vc +v +99299 v +o +v +99305 v +99309 aux +v +io +99317 v +99339 v +99346 v +99353 adv +99357 v +o +99371 adv +99373 v +99375 o +v +99387 v +s +o +99392 v +adv +adv +v +99406 v +99428 v +99432 v +99444 v +99446 v +99457 v +p +vc +99461 s +99465 v +99467 o +99470 v +99472 s +adv +v +s +99479 v +99483 v +v +99488 adv +99491 v +v +99498 v +adv +99502 v +99505 v +99510 v +99513 v +p +adv +99517 adv +v +99522 adv +s +adv +s +99545 v +99551 v +s +99554 v +99558 adv +v +99564 adv +v +99567 s +99571 v +99585 v +99587 p +vc +adv +v +99594 v +99611 adv +99613 adv +v +99625 v +99637 v +o +99640 s +o +v +99648 v +99652 v +o +99663 v +adv +99668 o +v +99672 adv +p +vc +99676 adv +adv +p +99713 v +99727 p +adv +vc +99731 v +io +99734 v +99738 o +99741 v +io +99744 s +v +99752 v +99756 v +99760 adv +99767 v +99774 v +99780 v +99783 s +99785 v +s +p +v +s +99791 adv +v +s +99799 o2 +v +v +99805 v +99809 v +99811 v +99814 s +p +vc +adv +99825 o +99827 v +adv +adv +adv +v +99834 v +99839 adv +v +s +99843 v +99846 adv +99855 v +99859 v +99864 v +99870 adv +99873 v +v +99880 v +v +v +99888 v +99894 v +o +99897 v +99899 o +99909 v +99917 v +99921 s +v +99925 o +99934 adv +adv +99943 adv +v +99956 v +99980 s +99984 v +o +99988 v +99994 s +100006 v +o +100015 s +100019 p +100023 v +v +100028 v +100030 adv +v +v +100035 adv +v +v +100041 v +o +100046 v +100050 v +adv +100054 v +100061 adv +p +100064 p +100070 v +100075 v +100082 v +100093 v +v +100098 v +100105 v +100107 s +v +adv +p +vc +o +v +adv +100119 s +p +adv +100129 v +100134 o +v +100145 adv +v +100148 adv +v +100152 v +o +100158 v +100170 p +100174 v +o +v +100180 p +vc +100186 v +p +adv +v +100193 adv +v +100198 o +100201 o +v +100204 s +100207 o +v +100210 v +o +adv +adv +v +100216 s +adv +100221 v +100228 o +v +io +100233 o2 +v +100239 adv +100241 adv +v +100245 v +o +100251 v +100257 adv +100261 v +100266 o +v +v +100274 v +100285 v +adv +100293 v +100296 v +100299 v +100303 o +v +s +vc +p +100309 o +100312 v +v +v +o +100320 adv +v +o +100324 v +o +100329 v +o +100335 v +100339 v +100345 v +o +100351 v +100368 v +v +100372 o +adv +v +100376 v +100379 o +adv +v +100385 o +adv +v +adv +v +100391 v +o +v +100404 adv +100410 v +100416 o +v +o +v +100421 s +v +100424 adv +100429 v +io +100433 v +v +o +100441 v +100445 v +adv +v +adv +100453 v +100456 v +100462 o2 +o +io +100468 vc +100477 adv +v +100489 adv +v +o +100494 v +100496 o +v +adv +v +100501 v +100505 v +o +100509 o +v +v +100521 v +100526 adv +p +100532 v +100537 adv +p +100544 v +100551 vc +100556 adv +v +adv +s +v +s +p +vc +100566 adv +100569 o +v +o +100573 s +100576 v +o +v +adv +100582 v +100594 s +v +100599 s +v +100602 adv +v +100606 p +vc +100609 v +100611 s +o +v +100615 s +v +100618 s +v +100621 s +v +100624 s +100627 o +v +100631 v +100634 s +v +100640 s +v +100644 v +v +s +p +vc +s +p +vc +s +100655 vc +s +100659 vc +v +v +adv +s +100666 adv +100669 adv +100672 adv +100675 adv +100678 adv +100682 v +adv +v +adv +v +adv +v +adv +100693 v +p +adv +100700 p +100703 p +100706 p +100709 p +100712 p +100715 p +100723 adv +100730 adv +100740 adv +100749 s +v +100752 adv +v +s +v +100757 adv +s +v +100761 v +v +100767 v +100776 vc +p +100781 v +100783 adv +v +100792 v +100796 v +o +100803 v +100808 v +100812 v +v +100815 adv +v +100818 v +100824 v +100831 adv +v +100837 adv +v +100841 v +100845 v +100852 v +100863 adv +v +100867 v +100869 v +100874 v +100877 o +v +adv +v +adv +100885 v +100889 adv +v +100892 adv +100898 v +v +adv +vc +p +100904 o +v +100907 v +100909 s +100912 v +100914 o +v +adv +100918 v +100928 adv +v +v +io +s +100938 o +v +100941 adv +v +100945 adv +100948 v +100950 v +100954 v +io +v +adv +100966 v +100968 adv +adv +v +100975 v +100983 v +100998 v +adv +p +vc +vc +p +s +o +v +101008 s +v +101012 v +101014 o +v +101022 vc +101028 v +101041 p +vc +adv +v +101054 adv +v +adv +v +io +101062 aux +101065 adv +v +v +101071 adv +v +101075 v +101079 o +101082 v +101087 v +101094 s +adv +101104 adv +o +v +adv +v +101110 v +s +adv +v +o +101116 vc +p +adv +o +v +101123 o +v +101129 v +o +v +o +101134 v +101138 v +o +s +101145 v +101150 adv +v +101153 io +v +101159 v +101161 aux +101169 v +101172 v +adv +o +v +v +o +s +v +adv +o +adv +v +101195 adv +v +s +v +o +101206 v +101209 v +101211 adv +v +101220 o +v +101224 v +101233 v +101240 v +101244 v +adv +101247 v +101254 v +101258 adv +v +101261 v +101266 v +101268 s +101271 adv +v +101274 v +101278 adv +v +101283 v +101290 v +101294 v +101302 o +v +101305 vc +101309 o +v +101312 adv +v +o +101322 p +vc +101325 v +101327 v +101329 s +adv +vc +p +101334 v +101338 adv +v +s +101345 s +p +vc +101350 s +101353 v +101355 s +101358 vc +101361 v +o +101371 v +101373 s +v +101376 s +p +vc +adv +v +101387 o +v +v +101391 v +adv +adv +v +101398 o +101401 v +io +101409 aux +adv +v +v +v +101416 v +v +101425 vc +101428 v +o +101433 v +o +101474 v +o +101488 io +101501 v +o +101508 v +o +101514 v +101524 io +101532 aux +v +101535 adv +adv +v +101540 v +o +101548 s +adv +vc +p +101553 adv +s +vc +101557 v +o +101560 v +v +101574 v +io +101577 o +v +io +p +vc +101583 v +101585 adv +adv +v +101589 s +o +v +101593 o +v +p +vc +101598 adv +v +101605 v +o +v +101609 adv +o +v +101615 adv +vc +101618 aux +v +io +101624 v +101628 adv +vc +101634 s +101637 v +o +101640 v +101647 v +101658 v +101664 v +o +101667 v +101678 adv +vc +101687 v +101689 v +o +101696 v +101701 v +101708 v +o +101713 adv +101715 v +101719 adv +v +101729 v +101733 adv +v +101737 adv +101741 v +101744 v +o +101747 v +101756 adv +v +101759 adv +101766 o +v +io +v +101774 adv +v +adv +v +101799 adv +101804 v +o +adv +adv +v +101811 o +adv +v +101815 v +101820 adv +101824 adv +v +101830 v +101834 v +101838 v +io +101842 o +v +101851 v +101860 adv +101865 p +vc +v +v +101874 s +v +v +101880 o +v +101886 o +v +adv +adv +101892 v +101900 v +101906 v +vc +p +p +adv +vc +adv +adv +v +101919 adv +v +101922 io +101924 v +o +v +101928 adv +v +101931 v +101937 s +101942 v +adv +101948 v +101955 v +101959 v +io +101967 v +p +vc +101972 v +101977 s +101982 s +101986 adv +101990 v +adv +adv +v +101996 v +101999 v +s +102005 o +v +102013 v +s +102020 v +102023 v +102026 v +o +v +102033 v +adv +102042 v +102048 v +102050 adv +v +102057 v +102063 s +p +vc +102070 v +adv +v +102075 v +s +adv +p +102080 adv +102083 p +102085 v +102087 adv +v +s +102094 adv +102104 v +102106 v +102111 adv +102119 adv +v +102125 v +v +102129 v +102132 o +102134 s +102137 adv +v +102141 o +v +o +adv +v +o2 +o +v +102150 s +102153 adv +v +102156 adv +v +adv +v +102161 v +adv +s +102165 v +102168 s +102170 o +adv +v +102175 v +102184 v +o +102187 v +o +102191 adv +v +102201 s +adv +s +adv +v +102209 s +o +v +io +102217 v +v +v +102222 v +102227 v +102235 adv +p +vc +v +adv +adv +adv +v +o +v +adv +102247 adv +adv +p +102252 v +io +102257 v +o +102269 s +v +102274 v +io +102279 v +102284 s +102287 vc +102291 v +102295 v +102300 v +102304 v +102314 v +102320 s +102324 vc +102327 vc +102329 v +102331 p +102333 s +adv +v +102338 v +102345 v +o +102351 s +v +102356 p +102362 v +102366 adv +vc +102372 v +o +v +102377 s +o +v +102385 vc +102388 p +102390 v +p +102394 v +102405 v +102414 v +102418 aux +102421 v +adv +102424 v +102426 s +102431 v +102441 v +102456 s +vc +p +102460 o +v +102463 v +102473 v +102475 adv +v +102479 v +102488 adv +102496 v +102500 adv +102506 v +102509 v +102512 io +v +v +102523 p +adv +vc +102529 p +vc +102539 adv +v +102543 v +102546 v +v +102549 adv +102552 vc +102556 v +102570 v +102572 v +102576 v +102581 v +v +102585 v +v +102593 vc +102599 v +102601 v +102604 adv +102607 vc +102609 s +102612 vc +102620 s +102623 v +o +v +p +vc +102631 p +vc +102636 p +vc +102644 p +vc +102651 s +p +102657 vc +102660 p +102662 v +102668 p +vc +o +v +adv +102675 vc +102681 vc +102687 adv +102691 vc +p +102702 v +102707 v +102713 v +102716 v +102723 v +102727 v +102730 vc +p +v +102744 v +102749 vc +102756 p +102763 adv +adv +v +o +v +102769 adv +adv +vc +p +102774 adv +v +o +102778 adv +v +102782 adv +v +adv +102791 o +102794 v +v +v +102804 v +adv +102808 adv +v +102812 v +102814 s +102816 s +102818 s +aux +v +o +adv +o +v +102826 v +102832 v +io +102852 v +o +102858 p +102863 v +io +102867 p +102871 v +v +io +102877 vc +v +io +v +o +adv +adv +102885 v +o +v +102889 o +v +102892 p +v +102898 adv +adv +102902 v +s +102908 o +adv +v +102912 adv +v +s +102918 v +v +102922 adv +102924 v +102929 v +102932 v +io +102937 vc +v +102941 adv +v +102944 v +102946 s +v +102967 v +102976 s +vc +v +102980 s +vc +102985 s +102991 v +s +vc +p +103000 vc +103005 v +103010 v +103019 p +vc +s +vc +103026 v +v +103030 adv +v +v +103034 v +103036 adv +v +103039 p +103044 adv +103047 v +103051 aux +s +103057 vc +103060 adv +103064 v +v +103069 adv +adv +adv +103073 o +v +103077 v +103087 v +103098 aux +vc +103108 o +s +v +103112 v +103114 adv +adv +103118 v +aux +103122 v +io +103126 v +s +o +adv +v +103132 v +adv +103136 v +103138 p +vc +103143 v +v +103147 s +103150 v +103153 v +103155 s +adv +103161 v +103170 o +v +103176 v +v +adv +s +v +s +adv +adv +v +103187 adv +103190 v +o +103197 v +s +v +103207 v +103210 v +o +v +103216 p +vc +103219 aux +103221 s +o +adv +v +adv +adv +v +103229 v +103234 v +adv +v +103238 v +o +103241 s +103244 v +aux +103258 v +o +103264 v +103270 v +103275 o +103278 o +103282 v +103286 v +103288 v +adv +v +103296 v +103300 v +103311 s +o +v +103317 o +v +o +v +103323 adv +v +adv +vc +103330 p +vc +103336 s +vc +103357 o +v +io +103361 v +103366 v +103369 adv +v +103376 vc +103389 adv +vc +s +103399 v +103407 v +adv +adv +adv +v +adv +vc +p +o +v +o +v +aux +103421 adv +v +s +103430 v +103436 v +o +103441 v +103445 v +103447 adv +v +103455 v +s +vc +p +p +vc +v +o +103467 v +s +103470 adv +103473 adv +103476 v +103478 adv +103483 s +103487 v +103489 v +103491 v +103495 v +103499 adv +v +s +adv +v +103506 o +v +s +o +adv +v +103514 v +103522 v +o +103526 v +103533 v +103539 v +adv +v +103545 v +adv +v +103551 o +v +v +103559 adv +103565 v +103568 io +v +103573 s +v +v +103578 s +v +s +v +103583 adv +103588 adv +v +103593 v +103595 o +v +103598 v +s +v +103606 v +103608 adv +adv +v +v +103613 adv +103624 io +s +v +s +io +103630 p +vc +103640 s +103644 v +103658 o +io +s +v +103663 s +103672 v +103684 aux +aux +103696 vc +103704 io +103716 p +103727 v +o +103739 v +o +103746 vc +s +103755 v +o +103776 o2 +v +o +103781 v +103784 v +103801 o +v +103810 v +io +103821 o +v +103831 v +103850 adv +v +v +103858 v +103867 v +103874 v +103882 v +103894 adv +v +v +103903 s +vc +103920 s +v +103938 adv +v +v +103943 o +v +103961 v +io +103970 v +103978 v +s +p +vc +103987 p +103999 p +104001 v +104009 v +104018 o +v +104023 v +o +104028 v +104047 v +104058 v +104060 o +v +104067 o +v +104074 s +vc +104086 v +104088 s +vc +p +104099 adv +v +104117 adv +v +104129 v +adv +104137 v +104146 vc +104149 adv +104157 p +vc +104166 adv +v +o +adv +vc +s +p +104175 v +104178 adv +104182 v +104184 v +104192 v +104197 v +104199 v +104219 s +adv +104226 adv +104230 adv +s +v +104234 vc +104237 v +104244 o +v +104251 v +104253 v +104255 adv +104262 vc +p +104266 vc +104272 vc +104278 v +104289 o +adv +v +104298 adv +104304 adv +vc +p +vc +p +104315 s +vc +104321 v +104324 o2 +104332 v +104343 v +104347 v +104354 v +o +104357 v +104368 v +104374 v +v +o +104381 o +104387 v +104401 vc +104406 vc +104414 v +104422 vc +p +104431 v +v +104442 v +104464 v +104472 v +io +104479 v +io +104484 v +104489 v +v +v +104500 s +104503 adv +v +104510 adv +v +104520 vc +104538 vc +104547 v +io +104560 v +104566 v +104573 v +p +104580 v +104590 v +104592 v +adv +104614 o +v +104625 v +104637 v +adv +v +104646 s +vc +104652 v +104668 v +104670 v +io +104678 adv +v +104688 v +104704 v +v +104710 p +104720 v +104722 v +104729 v +104738 v +v +adv +104743 o +104751 v +104754 io +104772 aux +104774 v +o +104781 adv +v +104785 adv +v +104794 v +o +104798 v +v +104815 adv +v +104847 v +104858 v +v +104862 v +o +v +o +104870 v +p +vc +104876 adv +v +104885 v +104887 vc +104890 v +104896 v +104900 s +v +104931 v +104957 adv +vc +104980 v +104983 v +104988 s +vc +105017 v +105024 o +v +105027 v +105030 adv +s +v +105034 adv +105037 v +105047 v +105056 vc +105065 s +v +o +v +105078 s +adv +adv +v +105086 o +v +105091 v +105093 vc +s +105098 v +s +105108 v +105115 v +105122 v +105129 v +105137 v +105140 v +o +adv +105148 vc +105151 v +105153 adv +v +105157 adv +v +105162 adv +v +o +105168 v +adv +v +105172 adv +v +v +105181 v +v +105184 o +v +105193 adv +v +105197 s +p +105204 v +o +105207 v +105209 adv +v +105219 v +105233 v +105240 vc +105245 v +o +105253 v +o +105256 vc +105264 v +105271 v +o +105274 v +o +105293 adv +v +105298 v +adv +105306 s +adv +v +105310 adv +s +105313 o +v +v +105323 s +vc +p +adv +v +o +105336 s +o +v +105344 v +105355 adv +vc +105360 vc +adv +p +105364 adv +p +105371 v +105384 v +s +vc +p +105391 adv +v +105400 adv +adv +v +105405 adv +v +105409 p +vc +adv +v +105416 v +105420 v +105424 v +p +vc +105428 v +v +105431 v +105433 v +105438 v +adv +105443 v +adv +adv +v +105449 s +105452 s +v +105459 p +vc +105463 adv +vc +p +105467 v +p +105475 v +105479 vc +s +105482 v +105485 v +io +105501 v +adv +105516 v +io +105530 s +vc +105542 s +105550 v +105553 adv +105563 v +105570 v +105574 o +v +105579 o +v +v +105589 v +s +io +105596 v +105606 vc +105610 adv +v +105615 v +105624 v +105628 o +v +105631 s +adv +105636 v +105641 o +105649 vc +105656 v +s +105664 v +105670 vc +105679 p +vc +105682 s +v +105696 adv +105700 adv +v +105703 o +105708 v +105713 v +105720 s +vc +p +v +105730 s +vc +105737 p +adv +vc +105741 vc +p +105750 v +105755 v +o +105764 v +105785 s +105790 v +105799 v +105804 adv +o +v +105809 s +105812 v +o +v +105818 p +105820 p +105826 v +105829 v +105832 v +105840 vc +105844 s +adv +vc +105851 v +105861 v +105868 v +s +v +105877 vc +105909 v +105915 v +v +105923 o +v +v +105927 v +v +105935 v +105941 v +105952 v +105959 v +105966 v +v +105969 v +105979 s +vc +105988 v +105997 v +106011 io +v +s +106021 v +106028 v +106034 v +106036 v +s +v +106041 v +106047 o +v +o +v +io +106061 o +v +106069 v +106074 v +106097 v +106118 vc +106125 io +106137 v +106146 adv +106158 v +106173 v +106178 v +106183 v +106189 vc +p +adv +o +v +106199 v +s +106204 o +106224 vc +106231 v +106239 o +v +106245 adv +106249 v +106257 v +s +106260 v +106262 vc +106269 v +106282 aux +v +v +s +106290 adv +106295 v +106300 p +106303 vc +106319 v +106323 adv +v +adv +106330 v +106332 s +106339 s +106345 v +106347 s +106350 v +106356 v +106358 s +106363 v +adv +adv +v +o +v +106373 s +106382 s +v +106387 v +106389 adv +v +106392 v +106394 s +adv +v +106418 v +106425 adv +adv +v +s +106440 adv +106442 v +p +106446 v +p +106451 v +106454 s +adv +106459 o +v +adv +v +106464 v +106470 v +106473 v +106477 vc +106479 adv +adv +p +106484 v +106487 p +106491 o +v +v +106512 v +106525 adv +adv +106531 v +106534 v +106536 v +o +106539 v +v +106545 v +106551 v +106557 adv +v +106563 v +s +vc +adv +106573 s +106577 io +v +106587 v +106593 v +v +106598 o +v +106603 adv +v +106626 v +106633 v +106637 v +adv +106641 v +o +106651 o +v +v +adv +106658 adv +v +106664 adv +o +v +106669 s +adv +106674 s +106678 v +adv +o2 +v +106683 vc +p +adv +106687 o +v +106691 v +106695 vc +106697 adv +v +106700 s +v +o +vc +p +106714 o +v +106717 v +io +106730 v +106741 v +106743 p +106754 adv +v +106762 adv +106764 adv +106778 v +106780 s +vc +106783 v +106788 v +106791 v +106795 o +v +106802 vc +106813 v +106816 v +106818 s +106823 v +106834 v +106838 v +106841 adv +v +106851 v +106853 v +106861 v +106863 v +adv +106866 v +106870 o +adv +v +io +106875 s +v +v +106884 v +s +adv +106890 v +106896 v +adv +106905 v +106908 adv +s +106912 v +106918 v +o +v +106923 v +106927 adv +106929 v +106935 adv +v +106938 v +o2 +106956 v +106965 v +106967 v +106969 v +106971 adv +v +106978 v +106988 adv +o +106992 v +106994 adv +v +o +106998 v +o +adv +v +s +p +vc +107006 v +o +107016 o2 +v +107025 v +v +107030 v +107042 v +107047 v +io +107050 adv +adv +p +107054 adv +p +v +107059 v +107063 v +107067 vc +107074 v +107076 v +107081 adv +107084 v +107086 s +v +o +107095 v +v +107099 s +adv +adv +p +107113 p +107116 v +107124 vc +p +107127 s +vc +adv +p +o +v +107136 o2 +107141 adv +v +s +p +vc +107148 v +107160 v +107162 v +o2 +107165 o +v +107168 v +107171 v +107191 v +107203 v +107209 v +107218 adv +v +107221 adv +v +107224 v +107226 adv +v +107230 adv +v +107235 aux +s +adv +v +s +v +107242 o +107246 v +107250 v +107253 v +107266 s +p +o +v +107272 o +adv +v +107279 io +v +107283 o +v +107287 v +aux +107291 vc +107293 v +107295 adv +v +107298 v +o2 +o +107302 s +v +o +adv +v +io +107309 adv +adv +v +v +107322 p +107338 v +107345 v +107348 adv +v +107354 s +v +107371 v +s +adv +v +io +107388 adv +v +107392 aux +o +v +107396 o +v +107400 v +107403 aux +v +107409 v +107411 s +107415 v +adv +107431 v +107434 adv +adv +v +v +107441 v +107446 p +o +v +107462 v +107472 v +107475 v +107486 aux +107489 s +vc +p +s +p +s +p +s +p +s +p +s +p +107503 s +p +107507 s +p +o +v +o +107522 o +v +107529 vc +107533 v +107536 adv +107538 adv +adv +v +107544 v +107547 adv +v +107550 v +p +107555 v +107557 s +v +107561 vc +p +vc +v +adv +v +v +adv +v +107575 v +107577 v +107579 v +107581 v +107583 v +o +v +107588 v +o +107591 adv +v +v +107598 aux +v +107604 v +107613 adv +v +107621 adv +107636 v +107639 v +107643 v +107647 v +107652 v +o +107655 v +v +v +107674 v +107700 aux +v +107707 v +o +107713 v +o +107719 adv +107755 io +107763 v +107772 adv +107775 v +v +107786 o +v +107796 v +adv +107801 o +v +107811 v +107833 v +107841 v +107848 s +vc +107857 adv +v +io +107872 v +adv +v +107881 v +107893 v +adv +107904 v +107906 v +107914 v +107928 v +107932 v +o +107944 s +v +o +107953 v +107964 v +107971 s +vc +107984 v +108014 v +108016 s +vc +108025 v +108027 s +vc +108035 s +vc +108043 vc +s +108047 v +108049 v +108055 v +108059 v +108064 v +108084 s +adv +vc +v +108098 adv +v +108109 v +o +108120 v +108123 v +108125 p +108127 adv +v +108134 o +v +108137 v +108147 vc +108150 adv +v +108158 v +108173 s +vc +108179 vc +s +108187 v +io +108191 v +108199 v +108208 adv +v +108213 adv +v +108217 v +p +108229 s +vc +108238 o +s +v +v +108245 v +108252 v +108255 o2 +108260 adv +v +v +108268 v +108274 v +s +v +108279 v +108287 s +adv +v +108296 v +108300 v +108320 vc +108328 p +o +v +108332 s +o +v +108342 v +108348 vc +v +108351 v +108365 v +108373 v +108380 v +108384 v +v +108388 v +108390 s +vc +108393 v +o +108418 v +108424 adv +108430 s +vc +108440 adv +v +108456 v +adv +108463 adv +v +108473 v +o +108478 s +p +vc +108489 v +o +108493 v +io +108498 v +108505 s +vc +108510 o +v +108515 v +o +108519 v +108525 v +108528 v +o +108533 adv +s +o +v +108550 s +vc +108554 v +108560 s +o +v +v +108570 o +v +v +adv +v +108582 adv +v +108599 v +108605 v +108613 adv +108615 v +108618 v +adv +108625 s +vc +108639 s +vc +108642 v +108652 adv +108662 v +108667 v +adv +108679 v +adv +108686 v +108691 v +108699 v +108705 adv +108710 v +108714 v +108729 s +vc +p +108734 v +108740 adv +108743 v +adv +108746 v +108750 adv +v +108765 adv +v +108769 v +108778 v +108782 v +108788 v +o +108791 p +vc +108804 p +108808 s +108810 v +108817 v +108824 v +o +108827 v +o +108830 s +108833 v +o +108839 v +o +adv +108850 s +vc +108860 v +108867 adv +v +108873 p +vc +108879 v +108882 adv +108889 o +108897 v +108908 o +v +108915 o +108920 v +108928 v +108932 v +108937 v +108941 adv +v +108947 v +108953 s +p +vc +108960 adv +v +108966 adv +v +108970 v +108981 s +108986 v +108990 o +v +108994 v +109001 v +109005 v +109013 v +109016 v +v +o +v +109021 p +vc +s +109033 v +v +109038 v +o +109044 v +v +109050 v +adv +109058 v +adv +109063 v +109070 adv +v +109073 v +o +109076 v +s +v +109081 v +109087 v +109091 adv +109094 adv +v +v +adv +v +s +109102 v +109107 v +io +109120 o +v +109128 v +109133 v +109144 s +vc +109148 io +v +109153 v +o +109166 v +o +109169 v +109172 v +o +109177 vc +p +109180 vc +109183 s +109191 s +vc +adv +p +v +o +109204 adv +v +109212 v +adv +109215 v +109222 v +io +109225 v +109238 v +o +109247 v +109262 v +109267 v +109274 v +109282 v +109284 v +io +v +109289 o +v +109294 o +v +109302 v +109325 io +109329 v +109332 adv +109336 o +v +109342 adv +v +109370 v +109375 v +109383 v +109402 v +p +vc +109410 s +vc +109417 v +109428 vc +s +p +109433 v +109444 v +109449 adv +adv +109467 v +109469 adv +o +v +s +v +o +109476 s +109479 v +109482 v +109486 adv +v +109494 v +109496 v +109500 v +109507 o +v +109514 v +o +109520 v +109522 aux +s +v +109533 p +vc +109542 v +v +109548 v +109562 adv +109573 v +109577 v +109580 adv +v +109583 v +109589 v +109595 adv +109599 vc +109601 v +109606 s +p +109609 v +109612 o +109619 v +109622 vc +109627 vc +p +109634 s +v +109639 adv +v +o +v +v +io +109657 p +adv +vc +109661 aux +v +109672 v +109675 adv +v +109679 v +109686 p +109699 v +vc +109702 v +109708 s +109716 o +109719 v +s +adv +109725 v +o +109738 v +109741 adv +109743 v +109750 v +109756 p +vc +109760 s +adv +v +109766 v +109768 aux +s +vc +109777 vc +109787 v +109801 v +109810 o +v +109813 o +adv +v +109819 p +v +s +109824 v +109826 v +109829 v +109833 adv +109835 v +109843 aux +s +v +109854 adv +v +109859 v +109864 v +v +109876 v +o +109881 s +109903 s +vc +109912 adv +v +v +v +109918 adv +109920 v +109939 o +109945 s +v +109952 s +v +109957 v +109963 vc +v +io +109967 v +v +109971 v +109973 v +109976 s +adv +v +v +109982 v +109988 v +o +109991 v +109995 v +110000 adv +v +s +110008 v +io +110018 v +110022 adv +v +o +v +110029 o +aux +110033 v +110048 adv +v +110051 s +v +110056 v +110061 v +110068 adv +v +110079 adv +v +110083 v +110088 v +110106 v +110113 o +110133 v +110137 o2 +110159 aux +adv +110164 o +110170 v +110174 adv +v +s +v +110179 v +o +110182 adv +v +110185 v +adv +110188 v +110191 v +io +110198 p +vc +110206 v +s +110211 v +110217 v +110222 adv +110231 adv +v +110236 adv +110247 p +s +110253 adv +v +io +110257 v +110260 v +o +110271 v +v +110279 adv +v +110292 adv +o +v +v +io +110300 p +vc +110304 v +o +110307 adv +v +o +110319 aux +v +s +v +adv +110325 v +v +110328 v +110332 v +110337 io +v +110340 v +adv +110348 v +110350 aux +adv +v +s +v +110357 v +110359 adv +v +110366 adv +v +o +110371 v +110373 s +110377 adv +adv +110382 v +110386 v +110390 o +io +v +110399 v +110401 v +110409 v +110411 v +110425 v +110433 v +adv +adv +110438 v +110440 v +adv +110444 v +110454 adv +adv +110458 vc +110460 v +o +110467 aux +110474 adv +o +v +io +v +110480 s +adv +v +110485 s +110490 adv +v +110493 v +110497 adv +110500 adv +v +110508 v +110512 v +110514 aux +s +adv +vc +110523 o +v +110526 s +110530 vc +110536 adv +vc +110544 v +110549 v +110551 v +110554 v +adv +v +110559 v +adv +v +110563 s +p +vc +v +v +110578 v +o +110595 v +110600 v +110602 v +adv +110606 v +110608 v +o +110611 v +adv +110616 adv +v +110619 aux +v +s +v +110624 v +110628 v +o +110633 v +o +110636 v +o +adv +110645 v +110649 aux +v +o +v +110655 v +110658 v +110661 v +110664 v +110666 s +o +110670 io +v +110673 adv +110676 v +110682 adv +v +adv +v +110688 v +110690 s +110700 adv +v +o +adv +v +110706 o +v +110710 v +110715 v +110722 v +o +adv +110736 adv +110745 v +p +110748 v +o +s +adv +v +aux +v +110757 v +110764 v +o +110768 v +110799 io +110810 aux +v +v +110815 adv +110819 p +vc +110822 v +110827 v +110841 v +110861 adv +v +110871 v +s +110879 adv +v +110882 p +110885 v +110887 v +o +o +110893 v +o +110912 v +o +110915 adv +v +o +110920 adv +v +110928 s +v +110945 v +v +110952 v +110956 v +110962 v +110970 adv +v +adv +110976 o +v +110984 v +110994 v +111004 s +111018 aux +v +o +111036 adv +adv +v +s +111059 v +111064 adv +s +o +v +111074 v +111077 adv +111079 v +111094 v +111099 s +111105 v +v +o +111109 vc +p +adv +v +111114 adv +vc +111118 o +v +io +111122 adv +111124 v +v +111128 v +s +111139 adv +v +adv +111143 v +adv +111148 v +111150 adv +v +111154 o +111158 v +111165 v +111174 vc +111193 v +111195 adv +111200 adv +v +111204 v +s +111209 v +io +111217 v +s +111222 v +111226 v +111230 v +111234 s +v +v +111239 adv +111243 v +111247 v +o +111263 adv +v +o +111280 aux +v +111283 v +111286 o +v +111309 v +o +111312 v +111320 v +111325 v +111332 aux +111335 v +111343 v +111345 v +111352 v +111360 adv +p +111365 p +vc +111369 s +v +o +111373 v +111378 v +111384 o +v +111393 v +111409 aux +v +io +111418 v +s +111423 adv +v +111426 adv +111430 o +v +111435 s +v +adv +v +v +o +111443 v +111447 adv +o +v +111460 v +111463 adv +v +111469 adv +v +o +111474 o +o2 +v +io +111480 v +o +111485 vc +111488 o +v +io +111493 s +adv +v +v +adv +v +111500 v +s +v +111505 adv +111507 v +111509 v +111523 v +111527 v +111529 aux +s +adv +v +v +111536 s +adv +v +111545 o +v +adv +v +adv +111551 v +111555 o +v +111558 v +111560 o +111567 v +io +111587 s +vc +p +111593 adv +v +111638 v +s +v +111643 v +111647 v +io +adv +v +111652 v +111657 s +o +v +adv +111672 vc +111683 adv +v +s +v +111689 v +vc +p +adv +v +111695 o +v +111700 v +111702 v +111704 p +111708 s +o +adv +v +v +o +111716 adv +s +v +111742 v +111744 v +111754 o +v +s +o +v +111760 v +o +111768 o2 +o +v +v +111776 vc +111783 v +111785 v +v +111790 v +111814 v +111818 o +v +111822 vc +s +111827 v +111832 v +111841 v +v +111865 aux +111871 v +io +111875 v +111880 v +111886 v +111891 o +v +s +111897 v +p +vc +111903 o +v +111908 v +adv +v +111912 v +111915 v +111930 vc +111936 v +111942 s +111951 s +v +111955 v +111960 v +111962 p +s +p +111974 v +o +o2 +111985 vc +s +111996 o +v +adv +v +112001 v +v +112008 v +112016 s +112024 v +o +112038 s +v +112041 v +o +112045 s +112048 v +112053 v +112055 v +s +112058 v +o +112061 vc +112065 s +adv +v +adv +s +112071 s +adv +v +112077 v +112080 v +112082 v +112087 v +112096 p +112100 s +o +v +112105 v +112107 v +112110 vc +112131 adv +v +o +v +112142 s +112146 v +adv +v +adv +112152 v +adv +p +112156 adv +v +112162 v +112164 v +adv +112168 v +112173 adv +v +112181 adv +s +112186 adv +112189 v +112192 v +112203 v +adv +adv +v +p +vc +adv +s +112218 s +vc +112223 adv +v +112232 adv +v +112236 io +v +112247 o +io +v +v +v +112254 adv +112257 v +112259 v +adv +v +v +112266 s +vc +112270 v +112277 adv +p +vc +112284 s +v +112288 v +112291 v +io +v +112296 v +112299 v +112305 adv +v +112311 v +s +112315 v +112324 v +112328 v +v +v +112332 o +112335 v +112343 v +112350 p +112352 s +p +112356 v +112358 v +112364 o +v +112368 vc +112373 v +112382 adv +v +112390 v +112392 v +o +112402 vc +p +112409 p +vc +v +112418 v +112433 v +112436 v +s +vc +112444 o +112448 s +112452 v +112454 vc +112469 v +v +112477 adv +v +112483 s +v +io +112494 o +v +112498 vc +112503 p +vc +adv +v +112511 v +adv +112514 o +v +v +112521 v +o +o +adv +v +112527 v +112530 o +112533 o +112536 o +112542 v +112554 v +v +adv +112560 v +112562 o +v +112567 s +vc +p +112578 v +v +112583 v +112594 v +v +v +112599 v +112601 p +vc +112605 s +112611 adv +v +112615 v +112617 vc +adv +p +s +v +112626 vc +112633 v +112635 v +112637 v +112641 v +112643 v +v +112649 v +112653 v +112656 v +112659 v +v +v +o +112667 v +112669 adv +112672 v +v +112678 adv +p +112685 v +112687 adv +v +112690 v +s +v +v +v +112697 v +112699 v +112703 adv +s +v +112712 v +o +v +o +112717 adv +v +112725 v +112727 adv +v +112732 v +adv +112735 v +112741 v +112745 v +adv +v +112749 p +112757 o +adv +v +112762 adv +112769 v +112772 v +112777 o +v +v +112791 o +v +112795 o +v +112799 o +adv +io +v +112804 v +112807 o +o2 +v +112811 v +112815 v +112828 p +vc +v +112834 adv +adv +v +112843 p +112846 adv +v +v +adv +v +s +vc +112855 p +112862 v +112864 adv +112872 v +112875 v +112878 adv +v +112881 p +vc +112884 adv +v +112887 vc +112894 v +o +112900 s +v +112903 adv +v +v +112918 v +o +v +112922 v +112929 v +112937 v +112941 v +112944 v +p +vc +112950 vc +112958 o +v +112964 adv +v +o +v +112969 v +112973 adv +v +112977 v +v +v +112990 s +v +113003 vc +113006 o +v +s +v +113014 o +v +113022 s +o +v +113026 v +113033 v +113039 v +113045 v +113047 v +113054 v +113059 v +113066 v +113073 v +s +113087 o +113090 v +113099 v +113103 v +113106 v +o +113110 v +o +v +113116 v +v +io +113123 aux +113130 v +113132 v +113134 v +113142 v +io +o +adv +113148 v +v +113153 p +vc +p +v +io +113162 v +113164 v +113172 v +v +113182 o +v +s +113188 v +113222 o +v +113226 o +v +113234 adv +v +113247 v +o +v +v +113255 adv +v +v +113264 s +v +adv +113278 v +113286 v +s +v +113293 s +vc +113305 v +io +113319 v +113331 v +113338 v +o +113341 v +113356 v +io +113365 v +adv +113376 v +113380 v +113389 vc +s +113401 v +113403 adv +v +113406 v +o +v +113410 v +113412 vc +113417 v +113422 v +113424 v +113426 o +113429 v +113441 v +113446 v +113449 v +o +113452 v +o +113459 p +vc +113464 v +o +113472 adv +o +v +113480 v +113482 vc +113485 adv +v +o +113489 v +v +io +113494 v +o +113503 o +113506 v +adv +s +v +113513 s +v +113523 o +v +113530 o +v +113534 s +p +vc +113539 v +v +113546 s +v +v +113555 v +v +113559 adv +v +s +adv +v +113565 adv +adv +v +v +113570 v +113572 adv +113575 v +v +o +v +113580 v +io +113584 o +113587 v +113590 v +113602 v +113606 s +113612 adv +v +113616 o +v +113624 v +113633 p +113638 v +adv +v +113642 v +adv +v +113646 v +s +v +o +113651 v +s +p +vc +113656 v +o +adv +v +o +v +v +113667 v +113674 v +v +v +o +113683 v +113692 v +113697 v +113704 o +v +p +vc +113711 s +113715 v +v +s +adv +v +113721 v +113731 v +v +113736 v +s +113739 vc +p +113742 v +113747 v +113755 vc +113769 s +113773 s +113778 s +v +o +113783 vc +113787 v +113795 v +113800 v +113802 v +113809 v +113821 v +v +113824 v +o +113827 v +113830 adv +v +113833 vc +113841 v +113843 v +adv +adv +v +io +113850 o +113855 v +113861 v +113869 o +v +113875 v +113879 vc +113899 v +p +adv +113903 p +v +113911 v +113914 v +113918 vc +113920 v +113925 v +113927 v +adv +v +113932 adv +v +113935 adv +113939 v +v +113947 v +o +adv +adv +s +v +113956 v +113964 adv +v +113972 p +vc +adv +113979 v +113981 s +v +114002 s +adv +vc +114013 v +114017 o +v +114025 v +v +adv +114031 v +114037 v +114045 s +v +114048 o +114052 v +114055 v +114060 v +114064 v +o +v +114092 p +vc +114102 v +v +114111 v +v +v +114124 v +114127 v +114130 v +v +v +114139 v +s +114144 v +114146 v +114152 io +v +o +v +114165 v +114170 v +114172 s +v +114176 v +v +114183 v +114185 s +adv +v +114194 v +114198 v +114201 v +114204 v +adv +v +adv +114212 o +v +io +114232 v +114236 v +v +114240 adv +114242 s +o +v +v +114250 v +114253 s +114256 s +114259 s +vc +adv +114264 o +v +v +114270 vc +adv +p +114276 o +v +114282 o +v +114288 v +v +114301 io +v +v +io +114311 o +114314 v +114316 adv +v +114326 s +adv +v +114330 s +o +v +adv +io +v +114339 adv +v +114342 v +o +114349 v +114351 v +114356 v +114360 v +o +114369 v +114376 io +114384 aux +v +114393 s +v +114398 o +v +114402 v +v +114406 v +v +o +114451 o +v +114460 v +114468 o +v +s +114497 v +o +114503 v +v +114506 v +114509 o +114511 s +io +v +114515 s +vc +114521 v +114531 v +114534 vc +114545 adv +p +114556 v +114564 vc +114567 v +114572 v +114575 v +v +114578 vc +p +114589 o +v +v +s +114595 v +v +s +adv +v +114603 v +114610 s +adv +114620 vc +p +114625 v +o +adv +114629 v +114633 adv +v +114640 v +114643 s +p +114649 v +114652 s +p +114655 v +114663 o +v +v +114669 v +vc +114681 s +v +s +v +114686 v +114688 s +vc +114693 v +114700 s +adv +114707 adv +114710 v +114713 v +114716 vc +114723 v +114728 adv +114733 v +114736 adv +v +v +114741 o +v +114758 v +v +v +114765 s +114768 v +114771 p +vc +adv +v +adv +v +114781 v +114790 v +114794 v +114802 v +o +114805 v +114817 v +114822 v +114838 s +v +o +114844 v +o +114850 v +io +114857 o +v +114866 s +o +v +v +o +114873 v +v +114879 p +vc +o +v +p +vc +p +114888 v +114893 vc +adv +114899 v +v +114909 v +114911 v +o +114924 v +114931 o +v +s +114939 v +o +114948 o +v +114952 adv +114960 v +114964 p +vc +114970 p +114976 v +s +v +114980 v +114983 v +114985 v +o +s +vc +115004 v +115006 vc +115017 v +v +115025 vc +p +115028 v +115034 v +v +115041 adv +v +v +115049 adv +v +115052 s +adv +v +115056 v +115062 v +115068 adv +vc +p +v +o +115077 v +115079 v +o +115117 io +115129 v +115133 adv +115136 v +115141 v +115148 o +v +115165 p +vc +115181 v +115191 v +115194 aux +115200 v +v +io +115204 v +115208 adv +v +p +vc +115216 adv +115221 v +o +115227 v +115244 v +io +115248 s +vc +115253 s +v +o +115258 v +115262 o +v +115274 o +v +v +115285 vc +115290 adv +115293 v +115297 adv +o +v +115308 adv +io +115313 io +115322 o +v +o2 +v +o +115328 o +115331 adv +o +v +115335 v +o +io +v +115341 v +115345 s +v +115348 adv +v +io +115354 io +v +aux +aux +s +adv +v +115363 v +115369 v +115373 v +io +v +115379 o +v +v +115385 v +io +o +115389 v +115395 v +io +v +o +115426 adv +v +115440 v +io +115444 o +v +115450 adv +v +115454 s +vc +115465 v +115476 v +v +115484 adv +p +vc +115489 adv +115494 v +115499 v +adv +115503 vc +s +s +adv +v +o +115510 adv +s +vc +adv +115517 s +vc +adv +115524 adv +v +115531 v +115533 v +o +115543 v +115545 v +115549 o2 +115579 v +o +115582 v +o +115586 v +o +115600 aux +s +115606 v +115612 vc +115615 s +v +115618 s +v +115621 s +v +115624 s +115627 o +v +o +115631 s +adv +v +115635 s +115638 vc +115643 adv +v +115650 v +adv +v +115658 v +115667 s +vc +115673 v +115676 v +v +o +115681 v +adv +v +s +115686 v +adv +adv +v +115695 v +115697 vc +p +115704 v +115707 adv +s +v +v +115713 s +adv +v +v +115722 v +115725 v +v +115745 adv +io +v +115751 v +115754 v +115756 v +adv +s +v +p +vc +s +115764 v +o +115770 v +o +v +o +115781 v +o +o +v +115792 v +io +115796 o +v +115801 adv +adv +v +io +115807 v +115809 v +115815 v +115825 v +115831 v +o +115834 v +115849 v +115857 v +115861 v +115864 v +115871 adv +v +o2 +o +v +v +v +115887 v +o +115890 adv +s +115897 adv +v +115903 o +io +v +115912 v +115918 adv +v +115926 v +115932 v +s +vc +115938 v +115940 s +115946 v +115949 vc +115953 o +v +115958 v +115960 v +115965 v +115967 vc +115978 v +115985 o +v +s +v +v +115991 v +v +115999 v +116008 p +vc +116011 v +o +116024 s +116027 v +116032 v +116036 v +o +116041 v +116046 o +v +p +116051 s +p +116063 v +116065 s +116074 vc +s +116086 adv +v +116090 v +116096 adv +116100 v +adv +v +116118 adv +v +116126 v +116133 v +116138 v +adv +v +116144 s +adv +v +116151 v +116157 v +116162 v +aux +adv +adv +vc +116175 v +116178 v +116180 v +o +116186 adv +116189 vc +116191 adv +v +116203 vc +116211 adv +v +116215 v +116217 adv +116221 v +adv +v +116232 s +v +v +116239 v +116245 o +v +116251 v +116255 v +116260 io +v +adv +v +116269 adv +116271 v +116273 v +116275 adv +v +v +116281 v +adv +adv +v +s +v +116291 v +116295 v +116297 adv +116301 s +116303 adv +v +116309 o +adv +v +116315 v +116317 v +116322 v +116324 v +116326 v +116332 v +116343 v +116345 v +adv +116350 adv +116352 v +116368 adv +116370 v +116377 v +s +v +116384 adv +v +adv +v +116390 adv +v +116397 v +116402 v +116404 adv +116408 v +adv +v +116416 o +s +v +116420 adv +116424 v +116428 v +s +116436 v +116443 v +116455 v +v +116462 adv +116469 s +v +116476 v +116486 v +116503 adv +vc +s +p +116510 s +116513 v +116519 adv +116523 v +116526 v +116534 v +116538 v +116541 adv +v +v +116548 v +116556 v +116564 v +o +116567 o +v +116577 v +116580 v +116586 v +116593 v +v +116602 v +o +116607 v +116612 adv +116616 v +116621 adv +s +v +116627 v +116634 adv +116638 adv +o +v +vc +p +116645 v +116650 vc +s +s +adv +v +o +116660 v +s +p +116670 s +116683 v +v +o +116693 v +116695 v +116700 vc +p +v +116704 o +v +116709 v +vc +116713 v +o +116718 v +116729 p +adv +116734 p +v +116737 p +vc +116742 adv +v +vc +p +116749 adv +v +116753 v +o +s +116765 vc +v +116775 v +o +116781 p +vc +116784 vc +116795 v +v +116804 v +116814 v +adv +adv +v +116838 o +v +116841 v +116845 p +116847 adv +v +116850 v +116859 v +116861 v +116867 v +116870 v +adv +v +116875 v +adv +116882 v +116886 v +116890 v +adv +116894 v +116900 adv +v +v +o +116908 v +116912 p +116922 aux +v +116929 v +adv +116932 adv +adv +v +116936 adv +p +116940 v +116947 o +v +116959 v +116965 v +116974 adv +p +vc +116984 v +116990 v +116997 v +v +v +117002 v +117005 v +v +o +117009 v +v +o +117013 adv +v +v +117019 s +117023 v +117025 adv +117035 adv +v +v +117049 v +adv +117058 p +v +s +117063 v +117065 v +v +117068 v +117070 o +v +117081 v +117087 adv +117092 v +117097 p +vc +117114 v +o +v +117123 v +o +io +117130 v +s +117133 adv +vc +117138 adv +117142 s +vc +117155 v +117157 v +117162 vc +p +117168 v +p +117171 io +o +117176 v +117189 v +o +v +v +117198 s +vc +117204 v +117211 adv +v +117215 v +o +117219 v +117222 v +117232 v +117235 adv +o +v +117239 v +117241 adv +v +117244 v +117247 o +v +117254 o +v +v +117258 adv +117264 vc +117266 v +o +s +117272 s +117277 v +117283 v +p +adv +s +117291 v +117295 adv +117300 v +117302 v +117310 v +117314 v +s +117318 v +117321 s +v +117326 p +117330 v +117339 o +s +v +117343 adv +117346 vc +117352 v +117355 s +v +117368 v +117370 s +p +117382 v +117384 v +117392 o +v +117402 v +117408 adv +117413 s +117418 p +117420 s +117425 v +117428 v +s +117431 adv +v +s +p +117444 vc +s +117452 p +117455 adv +v +v +117459 s +117462 v +s +117467 adv +v +117472 adv +v +v +117479 v +117484 adv +v +117488 v +117492 adv +adv +v +117500 v +117505 p +117508 vc +s +adv +v +117514 o +117518 adv +117523 o +v +adv +117530 o +v +adv +o +v +117538 o +v +o2 +v +o +117552 o +117556 v +117561 v +v +117565 s +v +117584 o +v +117595 v +117600 v +117602 p +v +117607 o +v +117612 vc +117616 adv +vc +p +v +117621 v +117626 s +117632 v +117634 v +s +v +v +117641 v +v +v +o +117649 v +io +117655 adv +117658 v +adv +adv +vc +117665 s +117669 v +117675 vc +p +117678 adv +117681 v +117683 v +o +v +v +s +v +v +s +117692 v +117704 adv +117708 o +v +117715 v +s +117720 v +o +117726 s +adv +v +117733 s +v +o +v +s +117739 p +117742 o +v +117751 v +s +v +117764 v +o +117767 vc +adv +117772 s +vc +adv +117780 v +adv +117786 adv +117790 v +v +117795 s +v +o +117804 p +vc +117815 v +adv +117819 v +o +v +117826 v +117828 v +117833 v +117844 v +117861 s +vc +p +117871 vc +117874 v +117882 v +adv +adv +117889 v +117897 v +117908 v +117913 adv +vc +p +v +117920 s +adv +v +117930 v +117935 v +117943 adv +117949 o +v +117958 o +v +117964 adv +v +117970 adv +117974 v +o +s +p +117982 v +117989 v +adv +v +117994 v +117996 v +adv +118010 v +118012 v +118016 v +118026 s +vc +adv +118043 v +adv +118050 v +118061 v +118063 v +v +118076 s +118080 o +v +o2 +118085 v +118094 v +118096 v +118103 vc +118105 s +v +118115 v +118117 v +118124 p +s +p +v +118130 v +118132 s +118135 p +118137 adv +adv +v +118141 v +118143 v +118145 adv +118150 v +118152 v +118163 v +118186 v +v +s +118193 o +v +118211 adv +v +118214 adv +118217 s +v +118225 adv +v +s +118229 p +118237 adv +v +118248 v +s +118262 adv +v +118270 adv +118272 adv +v +o +118278 v +118288 v +s +adv +v +118296 adv +adv +118310 v +118314 v +118317 adv +v +118322 s +adv +118327 adv +v +118333 v +118338 v +118340 o +v +118347 v +118350 v +118363 o +v +118368 adv +v +118371 v +v +118376 v +v +118380 adv +v +adv +118386 v +adv +v +118397 p +118402 v +o +118405 v +118409 v +118413 adv +v +118416 o +v +io +118423 adv +v +adv +v +118429 aux +118433 v +118436 v +118438 v +118442 adv +v +118457 s +118460 v +adv +v +aux +v +118466 v +118470 v +118476 v +118489 adv +118494 v +118497 v +118499 adv +v +118504 s +adv +v +v +o +118510 s +118515 v +118519 v +118526 v +118528 v +118539 v +118544 v +118546 v +io +118556 v +p +118560 o +v +118568 v +s +v +118581 v +o +118593 v +adv +118596 p +118599 adv +118604 aux +v +118616 o +v +adv +118622 v +118626 s +vc +118639 v +118646 v +118653 v +118658 v +118663 adv +118665 p +118667 v +118669 v +o +118678 v +118683 p +adv +118686 v +adv +118690 adv +v +v +118696 adv +v +s +118701 v +118706 adv +118709 v +s +118719 v +v +118723 s +v +118734 v +adv +v +118739 v +118745 v +118747 o2 +v +118755 v +118761 v +118763 v +118765 v +adv +s +s +v +118771 adv +v +s +118777 p +118779 v +118783 v +118785 v +118791 v +v +118797 adv +118802 v +118804 adv +118807 adv +v +vc +118814 v +118819 v +118823 v +v +v +s +118830 v +118832 adv +v +118837 s +v +118844 v +118850 v +v +118855 adv +118860 v +v +118863 adv +v +118871 v +118874 v +adv +v +118883 s +vc +118895 vc +s +v +118901 adv +v +118906 v +118909 adv +v +v +118918 adv +118920 v +118922 v +v +adv +s +118930 v +118935 v +vc +p +v +118948 v +adv +v +adv +s +v +118955 adv +v +o +118959 adv +v +118962 v +o +118970 v +v +118977 p +v +118980 v +v +118983 v +118987 v +118990 v +o +p +vc +adv +s +v +118999 adv +v +v +v +o +119011 v +119020 vc +adv +v +s +v +v +119028 v +o +v +119034 v +adv +v +adv +v +adv +v +119049 v +119061 v +119065 v +119073 adv +119077 o +119081 v +119087 o2 +v +119090 v +119095 v +v +119120 v +119124 v +119128 adv +o +119134 v +119139 vc +119145 o +v +v +119149 o +v +119154 v +119158 v +119160 v +o +v +119164 adv +v +119167 s +vc +p +119171 adv +v +o +119178 vc +119180 v +io +o +adv +v +s +119188 v +119192 v +119196 v +119199 v +119203 v +io +s +v +119211 v +p +119216 o +119220 v +adv +119224 v +v +s +119232 adv +s +v +119239 v +119241 v +119248 adv +s +v +119257 v +119263 v +adv +s +v +v +adv +119274 v +p +119279 adv +v +119285 adv +s +p +vc +v +vc +119294 v +adv +v +119302 adv +v +119308 v +119317 v +119321 adv +v +o +adv +v +119334 v +v +adv +v +119346 adv +119348 v +119351 v +o +adv +v +119364 v +119367 v +adv +119372 v +v +119377 adv +119381 adv +v +119384 v +v +119391 o +adv +v +119395 v +119398 s +v +119412 s +119415 v +o +v +o +v +o +v +119424 v +119427 v +119430 v +119433 vc +p +119439 v +v +s +119448 s +v +adv +v +119457 v +119459 s +119464 v +119470 v +v +v +119476 v +v +119483 v +v +v +v +119498 adv +adv +vc +p +119507 v +119511 adv +v +119521 v +119523 adv +119526 v +119530 v +119532 v +adv +119536 v +119545 v +119547 v +adv +119550 v +119559 s +119562 v +adv +119565 v +o +o +v +119576 v +119578 v +119580 v +119589 adv +v +119594 v +adv +119598 v +119602 v +119604 v +119607 s +io +119610 io +v +119614 adv +v +119619 v +119622 v +119624 o +v +s +v +119629 v +119632 o +v +119636 v +119638 io +io +v +119644 p +119646 o +adv +v +s +119652 vc +119657 vc +s +119664 vc +119666 adv +119672 v +o2 +119675 v +adv +119679 v +119685 v +119688 s +119694 v +adv +v +119698 s +119701 v +119704 v +119714 v +v +119717 p +vc +119720 p +119722 adv +119729 v +v +119733 v +119737 v +119739 v +119743 v +119748 adv +119751 v +119753 v +adv +v +119764 s +v +119768 v +119770 s +v +119781 adv +v +v +119787 v +119791 s +119797 s +119801 v +119806 v +119808 adv +adv +v +v +119814 v +119818 adv +v +119823 v +o +119826 adv +v +v +119830 v +119844 adv +119846 v +v +adv +v +io +s +119853 adv +v +119856 v +119858 s +v +119862 v +119864 adv +p +vc +119868 v +s +v +vc +119876 v +119882 v +119892 v +119902 v +119911 o +v +119916 v +119918 v +119920 v +119923 adv +v +119926 v +119930 v +119938 v +119944 v +adv +119947 adv +v +v +119952 s +v +119966 v +119969 v +119972 v +119974 v +119976 adv +v +119981 v +v +119986 v +adv +120000 v +120003 v +120006 adv +v +120011 v +s +v +o +v +120019 v +120021 v +120025 vc +120028 p +120036 p +120041 v +120044 p +120047 v +120049 v +120051 s +v +120055 o +v +120060 o +v +120063 v +s +v +s +adv +p +adv +v +o +v +io +s +v +120077 v +120079 s +v +io +120091 v +v +120110 adv +v +120113 p +adv +v +120122 adv +v +120125 v +v +120130 v +adv +v +o +120137 v +120139 v +120155 v +120163 v +120173 v +120175 v +120184 v +120187 v +adv +v +120193 v +v +120198 v +120205 s +vc +120209 v +120218 adv +v +120223 v +120226 v +120228 v +120231 v +120233 s +v +120240 o +v +120245 o +v +120248 adv +v +120251 p +adv +s +v +120258 v +120262 v +120265 adv +v +v +120269 adv +v +o +v +120274 adv +v +io +120283 v +120300 v +o +120307 v +120311 v +120321 io +120329 aux +120331 v +o +aux +v +120343 v +io +v +120350 v +120354 adv +v +v +o +v +120361 v +120367 v +o +120392 v +120397 v +120401 v +v +120409 v +o +120416 v +120418 vc +120424 v +120429 v +o +v +120434 v +io +adv +120438 adv +v +120442 v +io +120445 v +120448 o +v +120452 v +v +120456 v +120458 v +120460 adv +v +120466 v +o +120473 p +120480 v +120500 v +120502 v +120509 v +120516 v +120523 v +adv +120532 v +p +120535 s +v +o +120539 p +vc +v +120546 o +v +120549 v +o +s +v +v +120557 v +120561 p +vc +adv +120565 v +s +o +120569 s +v +120578 adv +120581 v +v +o +120587 v +v +o +adv +v +120602 p +vc +v +120612 adv +vc +120618 v +v +o +120625 vc +s +120632 v +120637 vc +120640 p +120643 v +p +120647 v +p +120656 adv +v +120659 v +120667 v +120672 v +v +120678 vc +120682 adv +p +adv +v +o +120689 s +120692 vc +120694 adv +p +s +v +120699 v +120708 v +o +120711 v +120713 adv +v +p +vc +120719 v +120727 v +vc +120735 s +p +120741 vc +120743 s +v +p +vc +120748 v +120752 v +120758 p +120768 vc +120770 v +120778 o2 +o +v +120786 adv +120789 v +120801 v +120811 v +120818 v +120821 v +120827 v +s +v +adv +adv +120835 v +s +v +adv +120840 v +120846 v +120850 vc +120854 v +120861 v +120873 o +v +120876 v +o +120879 s +v +120886 v +o +120889 s +v +o +120895 s +v +120901 v +120908 v +120912 v +120917 o +adv +v +120922 v +o +v +v +120930 s +120932 s +120936 v +120938 v +120941 vc +120946 v +adv +v +v +adv +adv +v +120955 adv +v +120958 v +vc +120962 adv +v +120965 adv +v +120971 v +v +120976 p +120978 adv +v +o +v +s +o +120986 p +120990 o +v +v +s +120995 o +adv +v +120999 v +121002 v +o +121008 p +vc +121011 v +121016 v +io +121021 v +121024 v +121026 v +121028 adv +v +io +121035 p +121038 adv +121043 adv +v +o +p +vc +121051 v +s +s +o +v +s +o +v +v +io +121067 s +io +v +121076 s +v +121079 p +vc +121083 adv +v +121088 v +121090 v +121095 v +v +121103 p +vc +121112 v +v +121121 v +121125 v +121135 v +121137 v +121141 v +121143 v +s +121148 v +io +121155 vc +v +121160 v +s +121163 adv +121166 adv +121168 adv +121176 v +v +121183 v +121190 p +vc +adv +adv +121198 p +vc +121202 adv +s +p +vc +v +121210 v +121212 adv +v +s +121216 s +121219 adv +v +s +121225 v +121239 v +121242 v +s +o +121250 v +aux +121255 p +vc +121261 v +v +121266 adv +121270 v +v +adv +121278 vc +121280 o +v +aux +121287 v +121291 p +121298 v +121304 v +121309 v +121315 v +121340 v +v +121351 v +121359 v +121366 v +121371 v +121377 adv +v +s +p +vc +121389 v +121398 v +s +o +v +121403 s +o +121406 s +v +121410 s +121416 v +121429 v +121439 v +121441 v +121446 vc +121450 adv +v +121457 p +121461 p +121471 adv +adv +p +vc +adv +121491 v +121493 v +o +p +s +121498 p +s +121509 v +121514 v +121516 adv +v +v +121520 v +121522 adv +v +v +v +121527 v +adv +v +121532 adv +v +s +v +121537 adv +v +121540 adv +v +121547 v +aux +121550 v +121559 vc +121562 s +v +vc +121571 v +121573 v +121575 adv +121578 v +121581 v +121584 o +v +121591 v +121593 v +121596 o +v +121599 io +v +o +121603 v +121607 v +121611 v +121614 v +121618 v +adv +v +o +aux +121624 v +o +aux +v +121629 v +121631 v +121637 v +121643 v +121647 v +o +adv +v +o +aux +121654 v +o +121657 v +121661 v +o +121664 v +o +121668 o +v +vc +121676 p +vc +121682 v +121687 s +p +vc +121691 v +121694 v +adv +121697 v +121701 v +121707 v +adv +adv +121711 v +121713 v +s +adv +v +121719 p +121724 vc +121729 v +121732 v +121735 v +s +121740 v +121742 v +121744 v +121749 adv +v +121758 p +vc +121761 v +o +v +121765 adv +v +s +adv +v +v +adv +121774 v +v +121781 v +121785 v +121790 p +vc +121798 v +121805 adv +vc +121808 v +121814 v +121818 aux +121824 v +121829 v +121832 v +121837 v +121843 v +v +121849 v +v +121861 adv +v +o +121865 aux +v +121872 aux +121875 v +121881 v +121885 v +121889 v +121892 v +121901 v +aux +adv +v +121908 adv +v +aux +121916 v +aux +v +121927 s +v +121933 aux +v +121936 v +121940 v +121945 v +121947 vc +121958 adv +v +121969 o +121971 vc +121975 p +121979 p +121981 adv +121984 v +v +121989 v +v +s +v +v +121997 v +122003 v +122006 v +adv +122018 v +122020 v +122022 v +o +122027 o +122030 v +io +122033 v +io +122038 v +122042 v +adv +v +122047 v +s +vc +122054 adv +v +122057 adv +v +122060 adv +v +122071 adv +v +122076 o +v +122081 v +122091 v +122096 v +s +o +v +122102 v +o +122108 v +122114 v +122147 io +v +p +122165 v +o +122169 v +122183 v +122192 v +122198 v +122204 v +122206 adv +adv +v +v +122222 v +122226 v +v +122238 o +adv +v +v +122245 adv +adv +v +v +v +122253 v +v +122274 v +v +122281 v +122287 v +122297 io +v +122304 v +122306 s +adv +v +io +122312 v +o +122317 v +122322 v +v +s +122326 v +122332 v +adv +v +122337 v +io +122348 v +122359 v +o +122364 p +122368 vc +122370 v +p +vc +122374 s +p +122378 o2 +v +122381 adv +v +122394 v +v +122402 v +122419 v +122424 v +122438 v +o +122443 o +io +v +122452 vc +122458 v +122469 o +v +adv +v +122482 v +122484 v +122497 v +122503 v +122508 v +122513 s +vc +122518 v +122522 v +122542 v +122546 v +122550 v +122552 p +122555 v +122559 v +122563 v +122573 v +v +122580 v +122584 io +122589 v +122592 aux +v +122602 v +122607 v +122613 v +122615 v +122617 o +v +122620 v +s +v +122632 s +v +122636 v +122639 adv +v +122642 s +122653 v +122659 o +v +122666 s +adv +adv +p +122671 adv +122674 s +adv +v +122678 adv +v +aux +v +122686 v +122690 s +v +122701 v +o2 +122705 adv +v +o +122709 o +122714 v +v +122721 v +122731 v +122737 v +122745 adv +vc +122751 v +v +122759 p +122763 v +122773 o +v +122777 v +122780 v +122783 v +122786 v +122803 s +p +122809 v +s +o +v +adv +122815 p +s +122821 v +122827 v +s +p +122835 v +122839 v +122842 io +v +o +122846 v +122850 s +o +adv +v +122855 v +s +122861 s +v +adv +v +v +adv +v +122869 v +122871 v +adv +122878 v +122889 v +122892 v +122896 v +122898 vc +122901 v +122903 v +adv +122913 aux +adv +v +122923 v +122933 v +v +122941 adv +vc +122969 s +vc +122974 p +122976 adv +adv +122983 v +122986 v +o +v +122993 s +v +122997 o2 +o +v +123002 vc +v +123005 adv +v +123011 adv +v +123020 v +o +123029 adv +v +123037 s +123044 v +o +123049 o +123053 adv +v +123058 v +123060 o +v +123064 v +o +v +123068 v +123071 v +123077 o +123079 adv +v +o +123083 v +123087 v +o +v +o +123092 v +o +123109 v +o +123112 p +123114 v +o +123120 vc +123123 adv +v +123127 p +123132 adv +v +123135 v +123140 v +123145 p +adv +123151 v +o +123166 v +123169 adv +v +v +123173 v +123181 p +v +123184 v +123189 v +123191 v +123195 adv +123198 v +s +123203 o +v +123208 v +adv +123211 v +adv +123215 v +v +123222 v +adv +123225 v +123233 v +123238 s +vc +123242 v +123245 adv +123248 adv +v +123266 s +vc +123271 v +123274 v +io +123282 s +v +adv +123290 v +123304 v +123307 v +adv +v +adv +123312 p +123314 v +123320 v +v +123333 v +adv +v +s +123343 v +s +v +o +123348 adv +v +v +v +123359 v +123362 v +123365 adv +123367 v +123370 adv +123375 v +123389 v +123391 s +v +123395 p +123400 s +123402 v +o +123406 o +v +123415 s +v +123421 s +v +123426 o +v +123433 v +123439 adv +vc +123451 aux +aux +123454 v +123461 adv +v +123464 s +adv +v +123469 v +123474 v +123483 v +v +123486 v +123490 p +123502 v +123504 adv +123507 v +123522 v +123524 v +123535 v +123545 adv +123548 p +123552 v +123561 adv +v +123567 adv +v +123572 v +123580 v +123590 v +123602 v +v +123606 v +123625 v +123629 vc +123634 v +123637 v +123643 aux +adv +v +io +123648 s +io +123652 v +123656 o +v +123659 io +v +o +123663 v +123671 o +v +123679 v +123683 adv +v +123687 v +v +123695 v +v +v +o +v +o +v +123705 v +123716 v +123723 v +o +123732 adv +v +s +v +v +v +v +io +123747 aux +io +123755 v +123758 v +v +123761 v +s +vc +123770 v +v +o +123782 v +o +123787 s +123801 adv +v +123817 io +v +123829 io +123841 v +123846 v +o +123859 io +v +123864 vc +123868 v +123882 v +v +123927 s +adv +123936 v +123946 adv +adv +v +s +p +vc +v +v +123962 aux +adv +v +o2 +123971 v +123973 o +v +123977 v +adv +123980 adv +adv +v +io +123998 v +adv +o +v +124010 v +124013 o2 +v +124016 adv +vc +124022 v +o +124026 v +124028 p +vc +124042 v +io +124045 v +124048 v +s +124057 v +124060 v +124062 v +v +io +124075 vc +124081 v +124090 v +io +124102 s +vc +124106 s +v +124112 s +v +124116 v +124119 vc +124125 v +o2 +124130 adv +v +o +v +124136 v +124141 adv +s +v +124145 s +v +124151 o +adv +v +124160 adv +v +124166 v +s +adv +124173 v +v +124177 s +124179 vc +124189 vc +124191 s +v +124197 v +o +124200 v +v +io +124206 s +v +124217 v +124223 o +v +adv +124228 adv +adv +v +124235 adv +v +124242 v +adv +v +124248 v +v +124252 v +124256 adv +v +124263 v +o +124267 v +124273 v +adv +v +124277 v +v +v +124283 v +124291 v +124298 v +124308 v +v +s +o +124314 v +124316 o +124320 v +v +124323 adv +124330 v +124332 o +v +124336 o +v +adv +v +adv +s +124345 p +vc +adv +v +124356 s +124360 v +adv +124367 o +v +v +124374 adv +v +v +124379 o2 +v +124388 v +124393 v +adv +v +124402 v +124406 v +adv +v +124411 v +124414 v +v +124422 s +124425 v +124430 v +124436 v +v +124442 s +vc +124450 v +io +124456 v +124460 v +v +124467 adv +v +124472 v +o +io +v +s +vc +124482 adv +s +v +io +v +124489 v +124503 adv +adv +v +v +vc +adv +124511 p +124515 p +vc +adv +adv +v +124525 v +v +124529 v +io +124533 v +adv +124539 s +v +124546 s +v +124551 aux +adv +124556 io +v +124560 v +124567 v +124569 v +124585 o +adv +v +124589 v +124596 s +124602 v +124604 v +p +vc +124614 adv +124617 v +s +adv +v +124625 v +o +o +v +124630 s +vc +p +124634 s +124640 v +124650 adv +v +v +124665 adv +v +124676 aux +124679 adv +v +o +124697 v +s +124702 s +o +v +124706 v +124709 v +124711 s +v +124714 s +124717 v +124719 v +124728 adv +v +124731 s +v +v +124741 v +adv +124745 v +v +p +vc +s +124766 s +v +v +124770 s +v +v +124783 v +124786 s +v +124789 aux +o +v +v +124796 adv +vc +124806 o2 +v +124817 v +io +124820 v +io +124827 v +124834 vc +p +124837 o +124842 v +124854 aux +s +v +v +124859 adv +124864 v +v +124870 v +124882 io +124891 s +vc +124895 o +v +o +v +124902 o +v +124908 v +124917 v +124919 v +124921 v +124923 v +io +124929 s +vc +124935 v +io +o +124941 v +124947 o +v +124968 o +v +s +124978 vc +p +124982 o +v +124987 v +io +124992 p +vc +124997 adv +vc +125002 v +125004 o +v +125012 v +v +125015 adv +v +125024 v +125026 s +vc +125031 o +v +125042 v +o +125048 v +125050 o +adv +v +o +v +125058 adv +vc +125063 v +125067 vc +125072 v +io +125077 v +o +125083 v +125085 adv +v +o2 +v +o +125094 adv +vc +125100 o +v +io +125104 adv +v +125108 s +v +v +125119 s +p +vc +125141 v +125143 v +o +125149 v +125151 v +125153 v +o +125159 adv +v +p +vc +125168 adv +vc +125172 s +v +125177 adv +125184 v +125187 v +125191 vc +125193 v +125196 v +125198 s +v +v +125203 adv +v +aux +v +io +125214 o +v +125222 vc +125225 o +v +adv +125230 v +io +s +vc +p +125243 v +125249 adv +v +125252 v +125256 vc +125261 v +125265 vc +125269 v +125276 v +125278 s +125281 adv +vc +125285 v +125292 vc +125297 v +125299 adv +v +adv +v +125306 v +125310 aux +v +io +125314 v +io +125322 aux +v +io +125326 v +125330 aux +v +io +125334 v +125337 aux +v +io +125341 v +125344 aux +v +io +125348 v +125352 aux +v +io +125356 p +vc +125365 v +125367 v +125370 adv +v +125380 s +v +125384 adv +vc +125413 vc +125421 vc +125423 v +125432 v +125437 v +125441 aux +125444 vc +125447 v +125449 s +v +125455 v +125457 v +125461 vc +125464 v +125466 adv +vc +125474 vc +125476 v +125481 v +125483 adv +vc +s +125489 s +o +v +125496 v +s +v +io +125502 adv +v +125508 v +o +125517 adv +vc +p +vc +125524 adv +125526 v +125528 s +adv +vc +125533 s +vc +125538 v +125546 v +125549 adv +125552 v +125554 v +125560 v +aux +o +v +125568 v +125572 v +o +125576 v +125586 v +125588 p +vc +125592 o +s +v +io +125600 o +v +io +125605 v +o +125608 aux +125611 o +v +125615 v +125619 adv +o +v +125623 s +v +o +125631 v +o +125636 p +vc +125639 adv +vc +p +125644 v +o +v +125650 aux +adv +v +125657 v +v +o +125661 adv +v +125670 v +125672 p +vc +v +125679 v +125684 v +v +125688 v +io +125695 vc +125697 vc +125702 adv +v +o +125706 adv +v +o +aux +adv +125713 vc +125715 adv +v +p +vc +v +125722 v +p +adv +vc +125727 v +o +125730 v +125734 v +125740 v +o +125743 s +p +vc +125748 v +125754 v +125758 vc +125762 v +125764 s +v +125769 v +125771 s +125774 adv +vc +125780 v +adv +v +125785 v +adv +v +o +125790 v +o +aux +s +v +o +125797 v +125800 p +vc +125803 s +p +vc +125807 v +125813 vc +125819 v +125822 v +125828 v +125835 v +125839 o +adv +v +125847 v +125849 adv +v +v +125856 v +125859 p +vc +125872 adv +v +o +adv +vc +125882 adv +v +125888 p +vc +125892 o +v +125897 v +o +125901 s +125905 vc +125907 v +125914 v +o +125920 p +vc +125927 p +aux +adv +v +125932 v +o +125936 s +v +125939 v +125947 v +125951 adv +v +v +125959 v +125963 p +vc +125966 v +125970 adv +v +125976 v +125979 v +125983 s +125989 v +125991 s +v +125998 v +126001 s +v +126008 v +126012 o +v +126015 v +126021 adv +126026 v +126029 aux +v +126043 v +126048 vc +126052 v +126058 v +126063 p +vc +126071 v +o +aux +126077 adv +v +o +v +126086 o +v +v +126095 v +126101 v +126103 p +vc +126109 v +126118 v +o +126121 v +o +io +126126 v +126132 v +126134 s +126140 v +126142 v +126148 o +io +v +aux +126155 v +126157 v +126164 vc +126168 v +126174 v +126181 s +v +126187 v +126191 vc +126195 s +adv +v +126203 adv +vc +126206 s +vc +126211 adv +v +126214 v +126216 adv +126220 vc +adv +aux +s +126227 vc +126229 v +o +126232 p +vc +126242 s +126246 vc +126252 v +126256 o +v +s +126262 vc +126264 v +126267 v +o +s +adv +vc +126275 adv +v +o +126280 v +126290 aux +v +o +126299 vc +126303 v +126307 v +126309 v +126313 adv +v +adv +v +126322 p +vc +126326 v +126339 v +126346 v +126351 vc +126356 s +v +126362 s +v +o +126366 v +126375 aux +126377 adv +126380 v +o +126384 v +o +v +o +s +adv +v +126392 v +o +126398 v +126409 v +126413 v +126415 s +126423 v +io +126426 s +126433 v +126440 s +v +126443 s +vc +126453 v +126455 s +126460 s +126466 o +v +126474 p +vc +126478 v +126485 v +126491 v +126494 v +126500 o +v +126509 s +vc +126513 vc +126518 s +adv +vc +126528 adv +v +126535 o +v +126539 v +adv +v +126545 s +v +126548 s +adv +v +o +126553 s +v +126556 v +126563 v +p +vc +126568 adv +v +126573 o +v +adv +v +126579 o +adv +v +v +126587 v +126592 v +126595 v +126602 v +126604 s +vc +126611 v +126615 v +126617 v +v +126620 v +126625 v +126627 v +126635 v +126640 v +126642 p +vc +126652 v +126657 p +adv +vc +126663 v +126667 v +126671 p +vc +126676 v +126682 p +vc +126685 v +126689 adv +126691 v +126693 s +vc +126699 p +vc +126702 v +126713 adv +126725 vc +126727 v +126731 vc +126735 p +vc +126738 v +126753 vc +126759 v +126764 p +vc +126767 p +vc +126774 v +126780 v +126786 v +126792 adv +v +126796 o2 +v +o +126800 adv +v +126805 o +v +126814 p +vc +126821 v +126824 io +126833 vc +126835 v +126838 v +126842 adv +v +126850 adv +v +o +v +126856 v +126865 v +126869 v +126871 p +vc +126875 o +v +126881 o +v +126887 v +o +126891 v +126893 v +o +126896 o +v +v +126900 v +126903 o +v +126908 s +v +126913 v +126918 v +126920 v +o +126924 v +126928 v +126932 adv +126935 v +126937 v +126940 p +vc +126943 v +126948 v +126952 v +126956 adv +v +126960 v +126964 v +o +126969 adv +v +o +v +126977 vc +126985 v +126987 v +126993 v +126995 v +io +o +126999 v +127003 vc +127013 s +vc +127021 aux +v +o +127035 o +v +127048 v +127055 v +127061 vc +127065 vc +127086 v +adv +127089 v +127094 v +127098 o +v +127104 aux +adv +v +o +v +io +127115 o +v +127120 v +o +127123 p +vc +127128 v +127133 p +127136 vc +127138 v +127144 v +127146 v +127153 adv +v +127157 v +127160 s +vc +127167 v +o +127171 v +o +v +127177 v +127180 v +127182 adv +v +127189 o +adv +v +127193 v +127197 s +127204 v +127206 s +v +127214 adv +v +adv +v +o +127222 v +io +adv +v +127228 v +io +v +v +127237 v +o +io +v +adv +v +127248 v +vc +127256 v +127263 v +o +127277 o +s +v +127282 aux +127285 v +s +127291 v +127296 v +adv +v +s +127301 v +127306 s +127309 v +127312 adv +adv +v +127316 v +127323 v +aux +o +v +127328 o +v +127334 o +127336 s +v +127343 adv +adv +v +v +adv +127354 v +o +v +127361 s +v +v +127367 p +vc +127371 v +o +127377 v +adv +127380 adv +v +o +127386 v +v +127391 o +v +127395 v +o +127398 adv +v +127403 s +v +127409 v +v +127415 v +aux +127418 v +127425 v +127429 vc +127431 v +adv +v +127436 adv +v +127448 v +127450 v +127455 p +vc +v +o +v +io +127462 adv +v +127468 io +v +127471 v +adv +o +v +127479 v +s +io +v +o +127486 v +127502 v +127506 v +127508 io +127514 v +aux +127518 v +v +io +127526 o +v +v +io +v +v +127533 adv +v +127539 v +127543 adv +v +127555 v +127567 v +127569 v +v +adv +o +v +o +127576 s +o +127581 v +127585 adv +v +v +127591 adv +v +127597 v +127609 v +127622 adv +v +127625 v +127629 v +o +127634 v +127636 adv +127639 v +127641 o +v +127644 o +v +127647 o +v +127653 v +v +127664 v +127667 v +127669 v +v +o +s +127675 s +o +adv +v +v +127681 o +adv +127687 v +127690 v +s +io +127698 v +127705 v +127711 v +s +vc +127720 v +adv +o +v +127728 v +127732 adv +v +v +127738 v +127744 io +127751 v +127753 v +127760 v +aux +v +s +127768 v +o +127773 v +127783 adv +v +127790 o +v +127796 s +vc +127804 v +127809 v +o +v +o +127816 aux +s +v +127822 v +127832 v +io +127838 vc +127840 v +127847 s +vc +127850 v +127852 o +adv +v +127856 aux +s +v +o +127867 v +o +127872 v +v +127887 v +v +v +127892 v +127894 o +v +127898 v +127904 v +127908 v +v +o +o2 +127913 v +127918 o2 +127947 aux +127951 o +v +io +127956 v +127960 s +v +127964 v +127966 v +v +127976 s +v +127987 o +v +p +127991 v +127994 v +128000 v +128004 v +128008 p +s +128020 io +128023 v +128026 v +128029 v +128035 s +128060 v +o +128063 v +o +128074 v +o +128083 io +128094 aux +aux +v +128101 v +o +128106 s +o +v +128110 v +128118 aux +aux +s +vc +128127 v +128132 v +128135 v +128138 v +128157 v +128162 vc +p +128173 v +128181 v +128188 v +o +v +v +128195 v +128220 v +v +128224 s +v +128229 v +v +128242 v +o +128245 v +128258 p +128260 s +p +128263 s +128275 p +128280 v +128290 v +128306 v +128314 v +128321 v +o +v +128331 v +128337 v +adv +v +s +vc +128349 v +128351 vc +p +128354 aux +128363 v +128372 v +o +v +128376 s +v +128379 s +v +v +128389 o +v +128408 vc +128416 vc +128423 v +o +v +128427 v +128436 v +128444 v +128457 adv +v +v +o +128462 v +128464 v +o +o2 +128468 adv +vc +128471 v +s +p +128475 o +v +128478 v +128484 adv +v +128487 v +128496 v +128498 v +adv +v +128502 v +128507 v +128510 adv +v +adv +128514 v +128523 adv +v +128526 o +v +128529 v +128534 o +s +v +128538 v +o +v +o +128544 v +128548 v +v +io +v +128557 s +vc +128571 v +o +v +128579 s +vc +p +128583 v +v +128592 p +vc +128599 v +p +vc +s +128605 v +128610 adv +v +o +v +v +aux +v +128619 v +128625 v +128627 v +128631 vc +p +128636 v +io +128643 v +o +v +o +128649 v +128653 v +128656 v +128669 v +o +v +128673 v +128680 v +adv +v +p +128689 v +128694 adv +v +128710 s +v +128714 adv +128717 v +128719 v +128722 o +128724 v +adv +v +128730 s +v +128734 v +o +128740 v +o +128743 v +adv +v +128748 v +128753 adv +128755 v +128758 adv +v +adv +adv +128763 v +128773 v +o +v +o +128779 v +128783 v +v +io +128789 v +128791 v +io +128799 v +128802 o +s +v +128806 adv +128808 v +128816 v +o +v +128824 v +128835 p +adv +v +128860 p +128864 v +128868 v +128873 v +o +o2 +128883 v +128885 v +o +128888 v +io +o +128892 v +128894 adv +v +v +128901 aux +v +o +128908 v +128915 adv +v +128925 v +128929 v +128934 s +vc +128937 v +128942 v +128950 v +128957 s +adv +v +128963 s +adv +v +128971 v +adv +v +128979 o +v +v +128984 adv +v +128988 v +128991 v +128997 v +io +129004 v +o +129014 v +129016 s +v +129023 v +io +129030 v +o +v +o +129036 v +129046 v +o +v +129050 v +129060 v +129065 o +v +129068 v +129070 p +vc +129075 v +129078 s +v +v +129082 adv +v +129086 v +129092 v +adv +129098 v +129100 v +129103 adv +v +v +129111 v +129114 v +129118 v +129123 s +adv +v +129130 v +129136 p +vc +129139 v +adv +v +129148 v +129158 v +129172 v +o +v +o +129178 v +129188 v +o +v +129196 v +129201 v +129203 s +v +129206 v +129208 s +v +v +129214 aux +v +129219 v +129222 v +s +v +129228 v +129230 v +129235 adv +v +129240 aux +v +129248 v +s +p +vc +129254 v +129256 v +v +v +o +129261 v +129263 v +129269 v +129271 s +v +o +129275 v +129281 s +o +v +129290 v +v +129296 v +129298 v +129302 v +adv +v +o +v +129308 s +v +129314 v +v +o +o2 +129325 adv +129328 v +adv +129331 v +129351 v +129366 v +o +v +o +129372 v +129382 v +o +v +129399 v +129404 vc +129409 v +vc +129414 adv +129416 p +vc +129423 v +o +v +129431 v +129433 p +vc +129436 v +129440 v +129442 adv +v +129445 s +vc +129457 v +io +v +129463 v +129467 v +129472 v +129474 adv +v +129482 o +v +129488 v +s +129491 o +v +129497 v +129499 v +aux +v +129506 v +129508 s +v +129514 v +129517 v +129521 v +129525 s +129529 v +v +io +v +129540 s +v +129543 v +129553 v +o +v +o +129559 v +129564 v +129566 aux +s +v +129577 o +v +129581 v +129584 v +v +adv +129588 v +io +s +v +129594 v +adv +v +129600 aux +s +v +129610 v +129613 v +p +adv +129625 p +adv +adv +129642 v +v +129658 v +129668 v +129672 s +vc +129686 p +adv +129699 v +o +129709 p +adv +129715 p +adv +129721 v +129730 p +129732 v +129741 v +adv +129748 v +o +129751 o +adv +v +129757 v +129767 v +129770 v +129773 v +129776 v +129785 v +129790 v +129796 v +129803 v +129808 v +129810 v +129817 v +129824 v +129831 p +vc +v +129843 s +v +129856 v +129861 v +129866 v +129870 v +129874 v +129877 v +129881 s +p +v +129887 v +129892 v +129905 v +129909 v +o +129912 v +adv +129917 v +v +129922 v +o +129929 v +io +adv +v +aux +v +129945 v +129954 v +129968 s +v +129971 v +v +129978 s +vc +129985 v +129991 v +129993 v +129998 v +130004 v +130015 v +130019 v +adv +130025 v +130027 s +vc +130034 v +130037 v +p +vc +v +130044 v +130049 v +130051 v +130068 v +o +130077 v +130082 v +130084 v +130098 vc +130107 v +130110 p +vc +130115 v +v +130134 s +130150 vc +130156 v +v +130159 v +130186 v +aux +130191 v +130193 v +130195 v +130197 v +130206 v +130212 v +130216 v +130218 v +130220 v +130225 v +130228 v +o +130231 v +io +s +130235 v +v +130239 v +130242 v +130247 v +130251 v +v +130254 v +130260 v +130263 v +io +v +130273 o +v +130276 v +io +130282 v +130287 v +130291 v +v +130294 v +130296 v +130301 v +130304 v +o +130311 v +130313 s +130319 v +130322 p +130327 p +130334 adv +v +130338 v +130343 v +130348 v +v +130351 v +130353 v +130358 v +130361 p +adv +130368 v +130372 v +io +s +130380 v +130397 v +130401 v +130408 v +130418 o +v +130421 v +130424 v +130433 adv +v +130436 v +130442 v +130447 v +130453 v +io +130456 v +adv +130461 v +130471 v +v +130477 v +130479 v +130487 v +130491 vc +p +130500 v +130508 v +130513 s +v +130521 v +130525 v +130527 s +v +130538 v +130561 v +o +130573 v +130579 v +130583 v +o +130588 v +130599 v +130608 s +v +v +130613 v +130616 v +130623 v +130630 adv +v +s +130645 v +130648 v +130652 v +130655 v +130657 v +130665 v +v +130672 v +adv +v +130684 v +130695 v +130699 v +130704 v +130715 v +130771 v +130774 v +130776 aux +130781 v +s +v +130793 v +130801 v +130805 s +130811 v +130814 v +130821 v +130832 v +130844 v +130853 v +130856 v +aux +130886 aux +130888 v +130893 v +io +130897 v +130902 p +vc +130905 adv +v +130908 v +io +130912 s +v +130915 v +io +s +vc +130920 v +130927 v +130932 v +o +130941 vc +130948 v +o +130959 v +130963 v +130966 adv +v +adv +130970 v +adv +130973 adv +v +130990 v +o +130993 v +o +131000 v +131011 v +131016 v +s +131024 v +131028 s +131032 v +131034 v +io +131041 v +131043 v +131047 v +131051 v +io +131056 v +131072 v +131089 v +131095 v +o +131103 v +131108 v +131121 v +131125 v +o +131128 v +131132 v +131134 v +131138 v +131142 v +131151 v +131157 v +131162 v +131167 v +131172 adv +v +v +131179 vc +131184 p +131186 v +131196 v +o +131203 v +131208 v +131210 v +131216 v +131218 s +131220 v +131237 vc +131241 vc +131252 v +131257 v +131262 v +131264 v +131280 v +131287 adv +v +131295 adv +131297 v +131299 v +131302 v +131305 v +131312 v +131326 v +v +131332 v +131334 v +s +131339 v +131344 v +io +131353 v +131359 v +s +131369 v +131384 v +s +131390 v +io +s +131394 v +o +131401 v +io +131404 adv +v +131417 adv +131420 s +adv +v +131431 v +io +131435 v +o +131439 v +131450 v +o +131457 v +131465 v +o +131468 v +v +131471 v +131481 p +131483 v +131493 p +adv +131503 v +131514 vc +131516 v +131532 v +131536 v +131538 p +adv +131550 v +131555 v +131565 adv +p +131571 o +v +o2 +131578 v +aux +v +adv +131590 v +131592 v +131607 v +131612 v +131615 v +131620 v +131628 v +131633 v +131644 v +131658 v +131663 adv +v +131672 v +131675 v +131695 v +131701 v +131721 v +131731 vc +131745 p +adv +v +o +131752 v +131758 s +adv +v +131765 adv +v +131774 adv +v +131795 s +v +131804 adv +v +131826 v +131830 v +131834 v +o +131858 v +131864 v +131866 v +131882 v +131886 s +v +131890 v +v +131900 v +131904 v +v +131907 v +s +131912 v +v +o +v +131920 adv +o +v +131926 s +v +131935 v +v +131946 v +131949 v +131955 s +v +131978 s +adv +v +131991 v +v +adv +v +132000 v +132009 o +v +132014 adv +v +132019 v +v +v +132025 v +132032 v +132041 v +132045 v +io +v +io +132052 v +io +v +132056 v +o +132059 v +132068 vc +p +132071 s +132073 v +132082 v +o +132085 vc +132092 p +132095 v +o +v +132102 v +io +v +s +adv +v +132118 v +io +132121 p +adv +v +v +132126 v +132136 v +132146 v +adv +132149 adv +o +v +132153 v +132161 v +132166 v +132172 v +132177 v +o +s +vc +132194 v +132197 s +v +o +v +s +v +132208 v +132214 s +v +o +v +adv +v +s +v +s +v +132226 v +132230 adv +s +v +132239 o +v +132244 v +o +132249 v +132257 v +132260 v +132267 v +132271 v +132274 o +132276 v +o +132279 v +o +132292 s +vc +adv +132298 adv +132303 v +132305 v +132323 adv +v +132328 v +132333 v +132337 v +132341 v +132343 o +v +io +132351 v +132353 v +132369 v +132373 v +132381 v +132384 v +o +132387 v +132393 v +io +v +adv +132398 v +132406 v +o +132416 v +132424 v +132426 v +132437 p +vc +132440 v +o +132450 v +aux +132456 v +adv +132462 v +132464 v +132470 v +vc +132484 v +132499 v +132504 v +132510 v +132513 v +v +o +132522 v +132525 v +132527 v +132534 v +132538 v +132540 v +132549 v +132551 v +132564 v +132574 v +132576 v +132580 v +132590 v +132601 v +132615 v +132619 s +v +132641 v +132643 v +v +132646 v +v +132649 v +132656 aux +132660 v +132677 v +132685 v +o +132693 v +132698 v +v +132702 v +132706 v +132708 v +132711 s +v +v +132721 v +132736 v +132740 adv +v +adv +132744 v +132749 adv +v +o +132757 v +s +132769 v +132774 v +132782 adv +v +adv +132787 v +adv +132793 v +132803 vc +132809 v +132813 v +132823 v +132825 v +132831 v +adv +v +132852 v +132859 v +o +132869 s +v +o +132885 adv +v +132894 v +132900 v +s +132908 v +132913 v +132916 v +132920 v +132923 v +132927 v +132931 v +132934 s +v +132939 v +132950 v +132958 adv +v +adv +132972 v +132982 o +132984 o +132986 o +o2 +v +132990 v +132996 v +133003 v +133006 o +v +133015 v +133022 v +v +o +133032 v +133038 v +133043 v +133050 v +133054 s +v +v +133079 o +v +vc +p +adv +133098 v +io +133119 v +133128 v +133130 v +133138 v +133142 v +133148 v +133151 v +s +p +133157 s +v +v +133163 v +io +133166 v +133171 v +io +s +v +133179 v +133188 v +133200 v +133202 v +io +v +o +133210 v +o +133213 v +io +s +133226 v +o +133230 v +133234 adv +v +133248 v +133253 s +v +o +v +133258 s +133263 v +133265 s +133268 v +v +s +133273 v +p +vc +133284 v +133287 v +133292 v +133298 v +133300 s +133308 v +133312 v +133319 v +133321 v +133326 adv +v +133334 v +133338 adv +v +s +133344 v +133352 v +133354 v +133361 s +v +io +v +133368 v +133370 v +133374 v +o +133378 s +v +133385 v +133387 v +io +v +o +133396 adv +v +133403 v +133406 s +adv +v +133413 v +133415 v +133435 v +io +o +133451 adv +s +v +v +133456 v +133458 adv +133460 v +133473 p +133476 vc +133478 v +o +v +133488 vc +133497 v +133499 aux +133502 v +133514 v +133524 v +133530 v +o +133547 o +v +133550 s +v +133557 v +133572 s +v +v +133578 adv +133585 v +133589 s +vc +s +133594 adv +v +133597 p +vc +s +133601 v +133605 adv +v +s +v +133623 adv +v +s +p +vc +133629 v +133632 v +133635 v +133638 v +133641 v +133655 v +133659 v +133663 v +io +o +133667 v +133674 v +133676 v +133691 v +v +v +v +133698 s +133707 v +133715 v +o +v +133722 s +v +133731 v +o +133744 v +133753 v +adv +133762 v +133783 v +133785 adv +v +o +133792 v +133801 s +v +133808 p +vc +133815 v +133825 v +s +133830 v +v +p +133838 v +adv +aux +v +133845 v +133854 v +133858 v +133860 aux +133867 v +133871 v +133888 v +133892 v +133897 v +133901 v +133906 v +133908 v +133911 v +133913 v +133919 v +133921 v +133932 v +133938 v +133946 v +133955 v +o +133960 v +133965 v +133969 v +133974 v +v +133982 v +133990 v +133995 v +134005 v +134011 v +134022 v +134029 v +s +134044 v +134055 v +134063 v +134069 v +134073 v +adv +134077 v +134093 v +134099 v +134104 v +134117 v +134139 s +134142 v +aux +134145 v +134150 adv +p +134156 v +134158 v +134165 v +134169 v +134171 v +134182 v +134187 v +134194 v +134199 v +134211 v +134218 v +134224 v +134231 v +134234 adv +134246 s +v +v +134253 v +134261 v +134267 v +134271 v +134273 v +134285 v +134289 v +134297 v +134306 v +134313 v +134320 v +134328 vc +134340 v +134344 v +134357 vc +p +134360 v +134365 v +p +vc +134369 v +134372 v +134376 o +v +134383 v +134385 o +io +v +v +p +vc +134392 v +134395 v +aux +134411 v +134419 v +io +v +134427 v +134433 v +134439 v +134447 adv +v +v +io +o +134455 v +134465 vc +134469 v +134471 v +134479 v +134494 adv +v +134503 v +134514 v +134519 v +134529 v +134553 vc +134556 v +o +s +v +134566 v +o +134579 aux +v +134582 s +p +134585 v +134587 v +134592 adv +adv +v +134596 v +134601 v +o +134607 vc +adv +p +134613 v +134621 v +134630 v +v +134633 v +134642 v +s +adv +v +134647 adv +s +v +134655 adv +p +134658 v +134671 v +134676 v +134680 v +io +134694 v +134696 s +adv +v +134704 v +134712 v +134723 p +vc +134728 adv +134730 v +134737 v +134742 v +134745 v +v +v +io +134756 v +134762 v +134768 v +134770 v +134780 v +o +134787 v +s +v +134793 v +134796 v +134805 vc +v +134811 v +134818 v +134825 v +134838 v +134854 v +134857 v +134871 v +v +o +134877 v +io +134883 v +s +v +io +134895 v +o +134898 v +134908 o +v +v +134912 adv +v +134915 v +v +134923 v +134925 v +134927 v +134934 adv +v +134944 v +134948 v +134950 adv +v +134953 v +p +134958 v +o +134965 vc +adv +134969 v +134975 vc +134978 v +134981 v +134984 adv +v +134988 v +adv +s +v +v +134996 s +v +134999 adv +v +135003 p +vc +135009 vc +135013 v +135018 o +v +vc +135023 s +o +adv +v +135028 o +135033 v +135037 s +135040 v +135049 v +s +135054 v +135058 v +o +135061 vc +135077 v +io +135081 o +v +adv +135086 v +vc +135099 o +v +135104 s +v +135109 v +o +v +135118 v +135120 o +v +135127 v +135132 v +135137 v +135141 v +135148 v +135156 o +v +vc +135164 v +o +135173 v +135176 v +135180 v +135186 v +135192 v +135196 v +v +v +135203 vc +135217 v +135227 v +135238 v +135250 v +135252 v +135258 v +135262 v +135266 adv +v +135277 adv +v +135280 v +135288 v +135294 v +io +135299 v +135301 v +135311 adv +v +v +io +o +adv +v +o +135320 v +135325 v +io +135332 v +135334 v +adv +135337 p +adv +vc +135341 o +135344 v +135350 v +135362 v +135364 p +135369 v +o +135388 v +135396 v +135403 v +aux +aux +135418 v +135433 s +v +adv +135515 v +135525 v +135529 adv +135532 o +v +135538 v +135543 v +135550 v +135552 v +v +aux +aux +135561 v +135568 v +135579 v +135591 v +135595 s +135598 v +135601 v +135603 v +v +135610 v +s +p +135618 v +o +135625 v +v +135628 v +v +aux +aux +135638 v +135641 v +135654 v +v +135669 v +135678 v +135687 v +135691 v +adv +adv +v +135702 v +adv +135715 v +135718 adv +135726 v +135729 adv +135735 v +135738 adv +135744 v +135747 adv +135755 v +135758 adv +135763 vc +135773 v +135780 v +135788 v +135794 v +135803 v +aux +135824 v +135829 s +v +135838 v +135848 adv +v +aux +135855 v +135862 v +135873 v +135877 v +135881 v +aux +aux +135885 s +135889 v +v +v +135900 v +o +135908 v +135923 v +aux +135926 v +135933 v +135935 v +135937 v +135940 io +135942 v +135951 v +o +135954 v +io +135957 v +135968 vc +135970 v +io +v +p +135982 v +135984 v +io +s +135992 vc +135994 v +135999 v +o +136002 v +io +v +adv +vc +136014 v +136020 v +136025 vc +136031 v +136034 v +136036 v +136041 v +136044 vc +136067 v +136069 v +o +s +v +136074 adv +s +136077 v +136079 v +adv +136082 vc +136097 v +o +136102 v +136111 v +136117 v +136121 s +v +o +136128 s +v +136143 v +136153 v +136160 v +136163 v +136168 v +136172 v +136177 v +136180 v +v +136190 v +136204 v +136219 v +136231 v +v +136237 v +136247 v +136256 v +136263 v +136265 v +136272 v +136276 v +v +136286 v +136292 v +136297 v +136302 v +136311 v +136317 v +s +v +136323 v +136336 v +136343 s +vc +136350 v +o +136355 v +o +136361 v +136363 v +136367 adv +v +adv +136373 v +136379 v +v +s +136385 v +o +136388 v +136392 s +v +io +136399 v +136411 s +adv +v +136421 adv +v +136434 v +136436 v +136446 adv +v +136449 v +136453 s +136462 v +o +136474 adv +v +o +136478 vc +136486 v +136494 v +136498 v +136506 v +v +136521 v +o +136536 v +136543 v +136552 v +136554 v +s +136560 v +o +136566 v +o +v +136576 p +136584 v +136594 v +136600 v +136607 v +136614 s +adv +v +io +136619 v +136627 v +136632 s +v +136637 v +s +vc +136643 v +136648 v +136657 v +136671 v +136678 v +s +136690 v +136696 s +136705 vc +136708 s +adv +v +136716 v +v +136724 v +136738 v +136742 adv +v +adv +136746 v +136753 v +136760 v +136763 v +136768 v +136774 v +aux +136784 v +136788 s +136791 vc +136798 vc +136800 v +136810 adv +v +adv +136819 adv +v +adv +136825 v +136827 v +136829 v +136833 aux +o2 +v +o +136838 v +v +136847 vc +136849 v +io +v +s +136863 s +136865 v +v +136874 adv +136876 v +v +o +136880 vc +adv +p +136884 s +vc +adv +p +136894 v +136914 v +136918 s +vc +136925 v +136932 v +136937 v +136944 v +136947 v +v +v +io +136958 v +o +136968 v +io +136975 v +136982 v +136990 p +136996 v +v +137002 v +137012 v +137014 s +vc +137045 v +137060 v +137063 v +137068 v +137082 p +vc +137088 p +137092 v +137110 p +vc +137113 v +137123 s +vc +p +137132 p +137138 p +137150 v +137155 p +137158 p +137161 p +137164 p +137167 p +137170 p +137173 p +137176 p +137179 p +137182 p +137185 p +137188 p +137195 adv +137200 vc +137215 o +adv +v +137232 vc +137236 adv +v +137245 v +adv +137252 v +o +137261 v +137273 v +137285 v +adv +137288 s +adv +vc +p +137293 v +137306 v +137313 v +137318 adv +137320 v +137329 v +io +137337 v +137359 v +137365 v +137381 adv +v +adv +137394 vc +137399 v +o +137402 v +137415 s +adv +v +adv +137420 adv +v +137432 v +137436 v +137443 v +io +137460 v +137464 v +137468 s +v +137472 v +137474 aux +v +adv +p +137479 v +137493 o +137496 v +137498 v +v +v +137507 v +io +o +137511 v +io +v +adv +vc +137526 v +137534 v +137536 v +io +adv +v +137550 p +vc +137553 v +v +adv +137559 v +adv +137564 o +v +adv +137570 v +adv +aux +v +adv +137581 v +io +137587 v +s +137604 p +137606 v +137611 vc +137623 v +137627 p +137647 o +137650 v +137654 v +io +o +137660 s +vc +137680 v +v +137684 v +v +v +137689 v +v +137692 v +v +137696 adv +v +s +137701 v +137710 s +v +137714 v +137722 v +137729 s +v +137739 v +137757 v +137762 v +137764 v +o +aux +v +adv +aux +v +138067 err_clause-complex-met-no-conditionsClCl2 +154025 p +154030 apposition +apposition +154035 o +154038 o +154041 o +154048 o +154052 adv +154056 o +154059 o +154062 o +154065 o +154068 o +154071 o +adv +154076 o +adv +154081 o +154084 o +154086 apposition +154091 o +adv +154097 o +154100 o +154103 o +154106 o +154109 o +154112 o +154115 o +154118 o +154121 o +154124 o +154127 o +154130 o +154133 o +154138 adv +154145 adv +154148 o +154151 o +154154 o +154157 o +154160 o +154163 o +154166 o +154169 o +154172 o +154175 o +154178 o +154181 o +154183 apposition +154186 apposition +adv +s +apposition +154195 s +154201 p +154204 s +154209 p +154212 s +154218 p +154222 s +154229 s +154232 io +154234 adv +154237 o +adv +adv +154244 s +apposition +154247 adv +154251 o +o +154256 topic +s +adv +adv +o +154264 aux +apposition +o +o2 +154271 s +154273 adv +p +154281 o +154283 adv +154285 o +154287 adv +154294 s +154297 s +154299 adv +adv +154302 adv +o +154305 s +adv +154311 o +154313 o2 +apposition +vc +p +p +s +154325 s +adv +adv +154331 s +154336 o +154340 adv +154344 o +154350 s +adv +154354 adv +154357 apposition +154359 adv +adv +adv +o +154364 s +154372 o +154374 adv +154378 adv +154384 adv +s +154389 s +adv +154393 adv +o +154400 adv +o +s +154406 o +154408 adv +154413 adv +154415 adv +154419 aux +apposition +adv +154426 adv +s +154429 apposition +o +154433 apposition +154437 adv +o +adv +o +154447 adv +adv +o +154451 adv +adv +154462 adv +154467 adv +o +154471 adv +s +154474 apposition +adv +154478 adv +adv +154481 s +154485 adv +o +adv +154492 adv +adv +154495 o +154499 apposition +154503 adv +154506 adv +o +154509 o +apposition +154516 adv +adv +o +adv +adv +154522 adv +154530 s +adv +io +adv +o +154537 adv +o +154545 adv +154554 o +o +adv +154563 adv +o +154571 adv +154574 adv +154579 s +154581 adv +adv +154584 adv +o +adv +o +154592 adv +adv +154595 adv +154599 adv +o +154603 apposition +154615 adv +154618 apposition +adv +154623 s +154625 adv +154627 apposition +adv +o +adv +s +apposition +154635 o +154637 adv +154641 o +adv +154648 s +154650 s +adv +io +adv +adv +o +154658 adv +o +154666 adv +154670 s +154672 o +154679 adv +o +154687 adv +154692 adv +o +154695 adv +adv +154700 o +154705 adv +adv +adv +154713 adv +adv +154717 adv +154719 s +154721 adv +154723 s +154728 adv +154731 s +apposition +adv +adv +154738 adv +o +154743 s +154749 p +154751 adv +154753 apposition +adv +154756 s +154758 adv +154760 o +154762 o +154765 o +154772 s +154774 o +154776 adv +154780 o +adv +154786 s +154788 p +154794 adv +s +154806 adv +154809 adv +adv +o +154816 adv +o +154823 adv +154825 o +154827 aux +o +adv +154836 o +154842 o +adv +o +o +adv +154848 o +154850 s +o +adv +154855 io +154859 s +adv +154868 s +154871 o +154874 adv +154879 adv +adv +154883 s +154885 adv +adv +adv +o +154891 adv +154898 s +154900 p +154905 o +154910 o +154912 adv +154916 o +adv +154920 s +adv +154923 adv +154925 adv +154927 adv +154929 adv +154933 adv +o +154936 adv +adv +154940 adv +154944 adv +s +o +154950 p +s +o +154958 adv +s +adv +154966 s +154969 o +s +adv +adv +adv +154977 adv +154979 adv +o +p +154984 apposition +adv +adv +154989 s +adv +154992 adv +154994 adv +adv +155000 adv +adv +155008 adv +s +155011 o +155014 p +155017 o +155019 s +155024 adv +o +o +155028 adv +155030 s +155032 adv +155036 adv +155041 s +adv +155048 adv +155054 o +155057 p +155063 adv +155066 io +155068 adv +155070 o2 +155072 adv +155074 adv +o +155079 s +o +o +o +apposition +155088 s +adv +155095 o +155105 o +155107 o +155110 adv +155113 s +o +155119 o +155121 o +apposition +155126 o +155130 s +155139 adv +o +155142 adv +155148 adv +o +adv +adv +155153 apposition +155161 s +155163 adv +155165 apposition +adv +o +155169 aux +155179 apposition +155182 s +155184 apposition +155186 adv +o +155191 aux +155193 adv +155199 adv +s +o +155205 o +155209 s +155215 adv +adv +155220 o +s +155223 apposition +155225 apposition +155229 apposition +155231 adv +155239 o +155241 adv +155244 o2 +155248 adv +o +155253 adv +o +s +155258 apposition +155260 apposition +155264 apposition +155266 adv +155268 adv +155270 apposition +155272 o +155280 adv +o +155289 adv +155292 adv +155294 adv +155299 o +155304 o +155308 adv +155313 s +155315 adv +155322 o +155326 apposition +155328 adv +155340 s +155355 adv +o +adv +155364 s +155369 adv +o +155372 adv +155375 s +155378 adv +155380 s +155385 s +155387 adv +155391 s +adv +155394 o +155397 s +155399 v +155401 o +adv +155406 s +adv +155411 s +155414 adv +155416 o +155420 s +155423 p +155426 s +155428 adv +adv +155431 s +155444 o +adv +adv +adv +155455 s +155457 adv +155462 o +155464 apposition +155468 p +155474 adv +155476 s +adv +155480 adv +adv +155483 adv +adv +155488 p +155493 o +adv +adv +155502 adv +155506 adv +155510 adv +155516 s +155518 adv +155520 adv +155523 o +155528 o +155531 apposition +155536 adv +155538 adv +o +155546 adv +155553 o +155557 s +155562 s +155566 adv +adv +155569 adv +155575 s +155578 o +155585 o +adv +155599 adv +155606 adv +155608 adv +155610 s +155612 adv +155615 adv +adv +155622 adv +155624 io +o +155629 s +155631 adv +155635 adv +155638 s +155641 o +155643 adv +155646 s +155648 io +155651 adv +155654 s +155657 adv +155664 adv +155667 o +155669 adv +155672 o +155674 s +155676 adv +155678 o +155680 adv +155686 adv +155690 adv +o +155695 v +adv +155698 adv +155700 p +adv +155703 o +155705 s +io +155709 s +io +155713 adv +155718 o +155720 adv +155724 o +155728 o +155730 o +155734 o +155736 s +155739 adv +155742 adv +155750 s +155757 adv +155761 s +155764 s +155769 s +155772 adv +155778 s +155784 adv +155788 s +155791 s +155796 s +155799 adv +155803 adv +s +155806 o +155811 adv +155814 s +155817 o +155819 adv +155821 o +155824 s +155826 o +155829 adv +155831 io +o +155836 io +o +155842 o +155848 adv +155852 p +155857 adv +155861 p +155867 adv +155870 p +155875 adv +155878 adv +155880 o +o +o2 +155887 s +155889 p +155895 s +155897 p +155901 adv +155903 o +155905 adv +155908 adv +155912 o +o +155917 adv +adv +155922 o +155928 io +155930 o +155934 o +155937 o +155942 adv +adv +adv +155948 io +155952 o +155954 o +adv +155958 adv +155960 o +155962 o +155966 o +155971 o +155975 o +155979 adv +155984 p +155988 apposition +155993 o +155995 adv +156000 adv +156006 adv +156008 o +156010 o +156014 s +156016 o +156020 adv +156022 o +156024 o +156028 s +156030 o +156034 adv +156036 s +156043 o +o +156046 adv +156048 adv +156054 adv +156056 adv +156060 apposition +156070 adv +156074 s +adv +156083 adv +156090 o +156098 s +156100 o +s +156105 s +156107 p +156112 s +156115 apposition +156117 adv +156126 p +156130 o +adv +adv +156140 adv +156142 adv +156148 o +156157 adv +156162 adv +o +156165 io +156168 apposition +156174 s +156177 apposition +156179 adv +156185 adv +adv +156188 s +156191 o +156193 adv +156202 s +156204 o +o +adv +156215 aux +156217 apposition +156221 s +156224 s +156227 s +156229 adv +156231 adv +156235 o +156242 o +156244 adv +156246 s +io +156253 adv +156255 adv +156260 adv +156262 io +o +156265 io +s +156273 adv +156275 io +s +156278 o +156287 adv +156289 s +156293 o +156297 io +o +156304 o +156311 adv +o +156316 o +156321 io +o +156324 io +156327 apposition +156333 s +156336 apposition +156338 adv +156342 adv +156344 apposition +156346 s +156350 v +156355 adv +apposition +156358 s +156363 v +156369 s +156372 s +156377 s +156380 p +156384 adv +156386 s +156388 s +156394 adv +156396 s +156398 s +156404 adv +156406 s +156408 apposition +156410 s +156414 o +o +156421 o +156424 o +156430 o +156433 o +156439 adv +o +156442 adv +156444 o +156450 adv +156452 o +156457 s +adv +156461 s +adv +156465 adv +156469 adv +156477 adv +156480 s +156490 s +156492 adv +o +adv +156497 o +156501 adv +156504 o +156507 o +156516 adv +156518 adv +156522 adv +156524 s +156530 o +156533 adv +156537 adv +s +156541 adv +156546 adv +o +156556 o +s +156561 s +156565 o +156567 o +156572 o +156579 s +156584 adv +156588 s +156591 adv +s +156596 adv +156603 adv +adv +156608 s +adv +156615 o +156617 apposition +156625 o +156634 io +156636 o +156639 o +adv +156645 s +p +156653 adv +156656 o +156659 adv +o +adv +156670 o +io +156674 o +156676 adv +156680 adv +156685 adv +156704 s +156709 s +156713 io +156718 p +s +156721 apposition +apposition +adv +s +156728 o +o +156736 adv +o +o +io +156742 adv +s +156746 apposition +156749 io +156755 aux +156758 adv +156760 s +s +156765 p +156771 adv +156774 adv +156778 s +156781 s +156783 apposition +156785 adv +156789 s +156791 adv +adv +156796 s +156799 s +156801 apposition +156803 adv +156807 s +156811 adv +156814 apposition +156816 adv +adv +156821 p +156824 adv +156831 adv +156834 adv +156838 s +156840 o +156843 s +156845 o +156849 s +o +o +156854 s +o +o +156860 s +156863 o +156866 adv +156870 adv +156876 s +156882 adv +156887 s +156889 o +156894 apposition +156899 adv +156902 o2 +156909 adv +156913 adv +156917 adv +156919 o +156923 o +156925 o +adv +156928 aux +156930 o +156934 s +156937 o +156942 adv +156944 apposition +o +156947 adv +156954 s +156957 s +156960 s +156963 o +156969 adv +156974 s +156978 o +156983 adv +156985 apposition +o +156988 adv +156994 s +156997 s +157000 s +157003 o +157009 s +157018 s +o +157022 s +adv +157029 v +adv +157037 s +157043 adv +157046 s +157050 adv +adv +o +157057 o +157061 adv +o +adv +o +157070 s +157075 s +o +157078 o +157080 o +157084 io +157087 o +157089 apposition +adv +157096 adv +157098 adv +157102 o +157104 s +157106 adv +157108 adv +157111 o +adv +157116 adv +s +o +157121 o +157123 adv +157131 s +157137 s +p +157142 adv +157147 o +157161 io +157170 adv +s +157174 io +157176 o +157180 adv +o +adv +157187 adv +157190 adv +157195 adv +157199 adv +157206 s +157209 adv +157215 s +157224 s +io +o +157235 s +adv +157242 s +adv +adv +157247 o +s +157250 v +157256 o +157260 s +157272 o +157278 o +157281 o +157287 s +157289 adv +157291 apposition +adv +o +157295 o +157299 o +157303 s +adv +adv +o +adv +157312 adv +s +o +157316 adv +157321 s +o +157325 s +157328 s +157333 s +157336 o +o +157341 s +157343 o +157345 o +157349 o +157354 s +o +157359 o +s +o +157367 adv +157370 s +157375 s +adv +157378 adv +157380 s +adv +157389 adv +adv +o +157398 o +157403 adv +o +157410 s +157414 s +adv +o +157420 s +157429 adv +157431 adv +157436 s +157441 adv +157447 o +adv +157454 adv +o +157457 p +157460 aux +157463 adv +adv +157468 adv +s +157476 s +adv +o +157482 adv +157489 o +157493 adv +adv +157500 s +157502 adv +157504 adv +157508 adv +157514 s +157518 adv +adv +157521 o +157530 s +157532 adv +157537 adv +adv +157540 adv +157547 adv +adv +157551 adv +157557 o +157559 adv +157563 s +adv +o +157567 io +o +157572 s +157577 s +157579 adv +o +157584 s +adv +o +157588 o +157590 adv +adv +157594 adv +157599 o +s +157604 o +157611 o +157613 s +157616 adv +157618 adv +157621 io +o +157626 o +157630 adv +157636 adv +adv +157644 adv +s +157648 o +157650 apposition +157652 o +io +157658 adv +s +o +157663 adv +157668 o +157672 adv +157679 adv +157683 s +157686 adv +adv +157695 adv +s +io +157699 o +adv +adv +157705 s +157710 adv +o +157713 o +s +157717 s +157723 adv +157725 s +157733 adv +157737 s +157739 adv +o +157742 adv +s +157748 s +157753 s +o +157756 s +157759 o +adv +157762 p +s +157768 adv +157770 adv +s +157777 o +157779 adv +157785 s +157787 adv +157791 s +157795 o +adv +157801 adv +157804 s +157807 s +157810 s +157815 o +adv +157822 topic +s +adv +adv +adv +157829 s +157834 adv +o +157837 adv +157844 adv +s +157848 s +157853 s +157855 adv +adv +o +157864 adv +o +157868 o +157874 s +adv +157879 o +157883 s +157888 s +adv +157895 s +adv +157898 adv +157904 o +157906 s +157909 s +o +157915 s +157925 s +157927 adv +o +157932 s +157936 s +157938 adv +157946 s +157948 s +adv +157953 o +157955 aux +157960 adv +157964 s +157967 s +o +o +157971 o +157979 o +157981 adv +o +adv +157989 s +157994 s +adv +o +o +158001 adv +adv +158011 o +158017 s +158019 s +158023 s +adv +o +adv +158031 s +o +adv +158037 o +158041 s +o +158047 adv +158049 adv +158054 o +158059 o +158066 adv +o +adv +adv +158072 v +158077 s +158081 io +158083 o +158086 s +158089 s +158093 o +158096 adv +158098 adv +158104 adv +o +158108 o +158110 adv +158115 o +158122 s +158129 s +apposition +158134 s +158136 apposition +158142 apposition +158146 apposition +158153 apposition +158156 apposition +158161 apposition +158165 apposition +apposition +158170 o +158172 s +adv +adv +o +158177 adv +158181 adv +158186 adv +158190 apposition +158196 adv +adv +o +158200 s +158206 o +158217 o +158220 adv +158224 o +158234 s +adv +158240 adv +158242 adv +158248 adv +158258 adv +adv +158266 adv +158268 s +s +158271 adv +158274 adv +158276 s +158278 adv +158287 o +158290 adv +adv +158297 o +158307 adv +158310 adv +158314 adv +158318 adv +158320 adv +158326 adv +158328 s +158330 o +158334 s +158338 adv +158344 adv +158347 adv +158353 adv +158357 adv +adv +158377 adv +158380 s +158385 p +158388 s +158392 p +158394 adv +158400 adv +158406 adv +158412 v +adv +adv +158421 aux +158423 adv +158427 adv +158429 adv +158432 adv +158439 o +158441 adv +o +158447 s +158453 p +158457 p +158463 adv +s +158466 p +158471 s +p +158479 o +158481 adv +o +158490 s +158493 apposition +158496 apposition +158499 o +adv +158502 adv +158507 o +adv +158510 adv +158515 adv +158519 o +158522 o +o +158527 o +158529 o +o +158533 adv +158537 s +158541 s +158543 adv +158545 adv +158551 s +158557 v +158563 adv +158567 adv +s +adv +adv +158572 adv +adv +158577 apposition +158585 adv +158588 adv +158592 apposition +158597 o +158599 adv +adv +158605 adv +158611 adv +158613 adv +158618 adv +158623 adv +158628 s +158630 p +158634 s +158636 o +158638 adv +158642 s +158644 o +158646 adv +158650 s +158652 o +158656 adv +158660 s +158662 o +158666 s +158668 o +158670 adv +158674 s +158678 s +158680 o +158685 s +158687 adv +158689 o +158692 s +158694 adv +158696 o +158702 o +158705 o2 +adv +158708 o +158712 adv +o +158722 s +o +io +158728 adv +158730 v +158732 adv +158738 s +adv +adv +158742 o +158745 adv +adv +158749 o +158751 p +158758 adv +s +o +adv +o +v +158780 s +158782 adv +158788 s +o +io +adv +o2 +158794 adv +adv +158798 o +158800 adv +158804 adv +o +o +158808 adv +158811 s +158813 o +p +158827 adv +158829 o +158831 p +adv +adv +o +158836 adv +158838 adv +o +158841 adv +158848 adv +158850 s +158855 s +158865 adv +158870 apposition +158872 s +158880 s +158885 adv +158891 o +158893 p +apposition +158896 o +158899 s +158904 o +158908 adv +158911 adv +158913 apposition +topic +adv +o +158929 adv +v +158935 o +158939 s +158942 adv +158948 o +158951 p +158953 apposition +158961 s +adv +158967 o +o +158970 apposition +adv +s +158975 adv +158983 adv +158985 adv +158987 adv +158990 s +158992 apposition +158994 adv +158996 adv +159002 o +159004 adv +159006 adv +159015 adv +159018 adv +159022 adv +159024 adv +s +159027 apposition +159029 adv +159031 adv +159036 adv +159039 adv +adv +159046 adv +159049 adv +s +o +159054 aux +apposition +159063 adv +159073 aux +159076 p +159080 adv +159086 o +adv +159089 s +159092 o +adv +159095 s +159100 o +s +159105 adv +159107 aux +159117 o +159119 adv +159122 adv +159126 p +159128 adv +159131 io +159137 s +159141 s +159145 adv +159148 s +adv +adv +159156 s +159160 o +159167 s +adv +o +s +159172 o +s +adv +159178 adv +159180 o +159187 s +159189 o +159192 adv +159198 o +159201 apposition +apposition +159204 s +v +159208 adv +159211 adv +159216 adv +159218 adv +159221 adv +s +adv +159225 o +159231 o +159233 s +159240 o +s +159247 o +159251 p +159253 s +159259 adv +adv +159266 aux +s +159272 adv +o +159275 s +adv +adv +159282 o +adv +p +apposition +159287 o +159290 adv +159292 adv +adv +159304 s +adv +159308 io +o +o +159318 adv +159320 s +159324 adv +s +adv +adv +159332 s +adv +159341 o +159344 o +159349 s +159351 adv +159353 apposition +adv +o +aux +s +159361 apposition +apposition +159365 apposition +s +159371 o +159373 adv +159376 io +159384 adv +159386 o +159391 o +159395 o +159400 adv +o +159405 o +159409 s +159416 adv +159418 s +v +159425 s +159429 o +159431 p +159436 s +adv +o +159440 o +159443 adv +159446 apposition +159451 adv +o +159454 o +159456 s +159459 adv +159462 s +159467 adv +159471 adv +159473 s +o +adv +159479 s +159484 adv +159486 adv +o +s +159490 adv +159493 adv +p +159498 adv +159500 adv +159502 o +159504 adv +s +159512 o +159514 adv +159520 o +159524 o +159528 o +159533 s +159535 p +p +159539 s +159541 adv +159544 adv +o +159547 s +159550 io +159553 s +159561 adv +159571 adv +159576 adv +159590 o +159593 o +159598 o +159601 o +159606 adv +159608 s +159612 aux +o +adv +159618 adv +159622 s +159626 s +159628 adv +159633 s +159635 adv +159641 adv +159644 aux +159647 apposition +s +adv +adv +159656 adv +159661 adv +159666 s +159670 adv +o +159673 o +adv +159678 adv +o +159681 s +159686 adv +159688 s +159691 apposition +159695 adv +159697 p +159701 adv +159705 s +159708 p +159712 adv +159721 s +adv +159724 adv +159731 adv +159736 s +159742 s +adv +159745 adv +159752 adv +159756 adv +o +159761 s +159767 s +159769 adv +159772 adv +159774 adv +159779 o +159781 adv +159788 adv +o +159801 adv +o +159808 adv +159811 s +159815 adv +159818 adv +159825 topic +io +s +159832 adv +o +159838 o +s +159845 adv +o +159849 adv +io +159852 o +159854 p +159858 p +159863 adv +o +159866 adv +159869 o +159872 p +159881 adv +159883 o +159888 apposition +159890 p +159896 adv +159899 s +adv +adv +adv +159908 adv +s +adv +159912 adv +adv +159916 s +159918 adv +159923 adv +adv +o +s +159928 adv +159933 adv +adv +159940 adv +159944 adv +s +159950 adv +159953 o +159957 adv +159960 o +159968 adv +159974 adv +159979 s +159985 adv +160001 s +160006 adv +s +o +adv +adv +160014 adv +adv +160018 s +o +160030 adv +160038 s +160040 adv +160043 adv +adv +adv +160048 adv +160051 adv +v +160057 s +160060 apposition +160062 o +160067 adv +160071 adv +160074 adv +160080 s +160086 adv +160089 o +160094 adv +160097 adv +160100 adv +160110 s +160117 s +160125 adv +160129 s +160132 o +o +160139 o +160145 o +160153 o +160160 s +160163 o +160165 adv +160170 p +160172 adv +160178 aux +160180 adv +160182 p +160185 o +160188 adv +160194 adv +160199 adv +s +160202 adv +160208 aux +160210 adv +160213 p +160215 o +160218 s +160226 o +160233 aux +160235 adv +160238 p +160242 o +160245 apposition +160258 o +adv +o +s +160264 adv +160266 o +adv +160274 adv +160277 s +s +160282 adv +160290 adv +160293 s +160296 s +160301 adv +s +160305 o +160308 o +adv +160318 o +s +160323 s +adv +160328 adv +160332 o +160335 adv +o +adv +o +160341 o +adv +160347 adv +160350 io +o +160354 o +160357 adv +adv +160363 o +adv +160369 o +adv +o +s +160375 adv +160377 apposition +adv +adv +160386 adv +160390 adv +160393 adv +160399 s +160404 adv +160409 o +160412 s +160415 adv +apposition +adv +adv +160421 adv +160426 o +s +adv +io +160432 adv +adv +160435 s +160437 adv +160439 adv +o +adv +o +160444 o +o +adv +160449 adv +o +adv +160456 s +160458 adv +o +o +160468 adv +o +s +160472 o +160474 p +160480 s +p +160486 aux +160488 p +160495 s +p +160501 s +160503 apposition +160505 p +160510 s +p +160514 s +160518 adv +160521 s +160524 adv +160531 s +160534 o +160539 adv +160542 o +160548 o +160551 adv +160557 s +160565 s +adv +160571 adv +160573 s +160576 s +160580 s +160583 adv +160586 adv +160588 apposition +160590 adv +160593 adv +160598 o +160601 o +160605 s +160608 adv +160610 o +160615 adv +o +160618 adv +o +160625 s +160628 adv +160632 adv +160636 adv +160638 apposition +160640 adv +160642 adv +160644 adv +160648 o +adv +160652 o +160655 adv +160662 s +160666 o +adv +160672 adv +160678 s +160686 o +160693 o +adv +s +160698 adv +160701 adv +160703 apposition +adv +160707 o +160716 s +o +160723 adv +adv +160727 adv +160730 adv +160736 s +160744 p +160751 s +160755 s +160757 p +160765 aux +160768 p +160772 s +160776 adv +160780 s +o +160785 adv +160795 o +adv +160802 adv +160805 s +apposition +o +160811 io +160813 o +160815 p +apposition +160819 adv +160823 adv +s +adv +160830 s +adv +o +160835 adv +adv +160838 apposition +160841 apposition +160846 s +o +s +160853 adv +o +o +160858 adv +160865 s +160868 s +160871 adv +160875 o +160878 adv +o +o +160885 adv +adv +160889 o +adv +o +160894 apposition +160899 adv +s +adv +160907 o +160910 adv +adv +160917 s +160919 adv +160922 io +160925 io +160931 adv +s +160934 o +160939 adv +io +160944 adv +s +adv +adv +160949 adv +160953 adv +s +adv +160961 adv +o +160966 adv +160969 o +160976 s +adv +o +160981 s +160984 s +160987 o +adv +160990 adv +adv +160996 s +o +160999 adv +161001 o +161005 o +161009 o +161016 o +161021 adv +o +s +adv +161026 adv +o +161033 adv +adv +161039 adv +io +o +161044 s +io +161055 o +161060 apposition +161065 s +161067 p +161069 adv +161075 o +161077 s +adv +161082 adv +161084 adv +161086 o +161090 adv +o +adv +161094 adv +adv +161105 s +adv +adv +161109 adv +adv +161114 s +161118 adv +161121 adv +adv +adv +161129 s +adv +o +adv +161134 adv +o +161139 adv +161144 s +adv +o +161154 adv +s +o +161161 o +adv +adv +161168 o +161173 adv +adv +161176 adv +161180 adv +161186 adv +o +161190 adv +o +adv +o +161199 s +adv +o +161204 o +161206 adv +161211 adv +161214 s +161218 s +161221 adv +o +p +161227 adv +adv +161230 adv +161236 adv +s +161241 adv +161247 o +161252 o +161254 o +161261 s +161264 adv +adv +s +161268 adv +o +adv +s +161273 o +161279 o +adv +161285 adv +o +adv +s +o +161292 adv +161298 s +o +161301 o +161307 s +161309 o +161314 adv +s +161317 adv +io +161322 s +161324 adv +adv +o +161335 o +161338 adv +161344 adv +adv +o +161348 s +161350 adv +161353 s +161355 adv +161359 adv +o +161364 adv +o +o +161373 s +161375 adv +161377 o +161380 aux +161382 adv +161384 o +161387 adv +s +o +o +161392 s +adv +o +161398 adv +adv +s +161402 apposition +s +161411 p +161416 adv +161418 adv +161422 adv +s +o +o +161429 o +s +161434 adv +161437 s +161440 adv +161442 adv +161446 adv +161451 s +161453 adv +161455 adv +161458 o +161462 adv +161464 s +161469 p +161471 o +161474 s +161476 adv +o +161481 adv +s +adv +161491 s +adv +adv +161496 adv +o +161500 aux +apposition +161503 s +161511 adv +s +161514 adv +o +161519 adv +161523 adv +o +161528 adv +161532 apposition +161538 adv +adv +o +161545 adv +o +s +161549 o +161554 io +161558 o +161563 s +161565 adv +161568 apposition +161570 adv +161577 adv +s +o +161582 aux +s +161585 o +161592 s +161594 adv +161601 adv +s +adv +161609 adv +adv +161617 s +adv +adv +o +161625 adv +161630 adv +161632 s +adv +o +161644 o +161649 s +adv +o +161653 o +161656 adv +161661 adv +161664 o +161667 o +o +o +adv +161675 s +161677 adv +s +adv +161681 o +161685 s +o +o +161692 o +161699 adv +io +o +adv +161704 o +161711 adv +161715 io +161718 s +io +161729 o +161734 apposition +161739 s +161741 p +adv +161749 adv +o +adv +161755 adv +161761 adv +s +161765 adv +o +o +161773 adv +o +161777 o +161781 s +161785 o +161789 adv +s +161795 o +o +161801 o +161807 s +161812 adv +161814 s +161819 adv +161823 s +adv +adv +161827 o +161831 s +o +v +161835 adv +161844 adv +adv +o +161851 adv +s +o +adv +161856 o +161860 o +161864 o +161870 o +161874 o +161880 o +161883 adv +161886 adv +161889 adv +161897 adv +161900 o +adv +161906 adv +161915 s +adv +adv +161922 o +161924 adv +o +s +o +s +161934 o +161937 o +apposition +161943 o +161949 adv +161951 o +161955 adv +s +o +p +161960 apposition +161964 apposition +161969 adv +s +o +161974 aux +161978 s +161982 s +161985 apposition +161991 adv +161996 adv +161999 o +162003 s +162007 o +162015 s +162017 adv +162019 v +adv +162024 s +162026 adv +162028 v +adv +162034 io +162037 o +162039 p +162042 adv +s +o +io +162047 adv +162049 s +162051 adv +162054 adv +162063 adv +162068 adv +s +o +adv +o +162076 adv +162080 adv +io +o +162085 adv +162088 p +162092 o +162095 o +162099 s +io +162102 o +162105 o +adv +162111 o +162119 s +162121 o +o +162126 s +162128 o +162130 adv +162135 adv +162138 o +162142 o +162146 o2 +162153 s +162156 o +adv +162162 adv +162167 adv +162173 adv +162175 s +162179 apposition +adv +adv +162184 o +s +162188 adv +162195 adv +162197 s +o +162203 apposition +162207 adv +162209 adv +162214 adv +162218 s +162220 adv +162224 s +162226 adv +162231 s +162233 o +adv +162238 adv +s +io +o +162244 s +162246 adv +162249 o +162258 topic +162260 s +162263 adv +162265 adv +o +162268 p +162271 apposition +adv +adv +162279 adv +s +adv +162289 s +162292 adv +o +162300 adv +o +162303 adv +162305 o +162311 adv +162314 s +adv +o +o +adv +162320 s +162323 adv +162327 s +adv +adv +162331 s +o +162334 s +162338 adv +o +162347 adv +162355 adv +o +162358 s +162361 o +adv +162365 s +o +162368 adv +162370 apposition +162375 adv +162378 adv +162382 o +162385 o +162396 adv +162400 adv +162406 io +162410 o +162414 adv +s +o +162418 aux +162425 adv +p +162428 adv +162434 s +162437 adv +s +162442 s +adv +162448 s +adv +adv +adv +o +adv +o +162458 o +162460 adv +162471 o +162476 io +162478 o +162487 adv +162490 s +o +162493 s +162496 o +adv +162503 adv +162512 adv +162515 s +162517 o +adv +162521 o +162523 s +162532 adv +162535 s +adv +o +162540 o +162542 s +162545 adv +o +162549 adv +162561 adv +162564 s +adv +162567 s +162571 adv +162575 adv +adv +162579 o +162585 adv +o +162589 adv +adv +162595 adv +162598 s +adv +adv +adv +162603 adv +162611 adv +adv +162616 o +162619 o +162625 p +162628 adv +adv +162636 adv +adv +162640 p +adv +162648 s +162650 o +162652 adv +162660 o +162664 apposition +162666 adv +162668 s +162671 s +adv +162677 adv +162683 io +adv +162690 s +s +162694 io +162696 apposition +adv +s +162704 s +162713 adv +162717 s +adv +162720 adv +162724 adv +o +162729 adv +162738 s +162743 adv +162747 s +adv +162752 adv +o +adv +162760 o +162762 o +162768 o +162770 s +162772 adv +adv +o +162779 apposition +162785 adv +162788 p +s +162792 s +162796 o +162798 adv +162802 adv +o +162810 s +162813 adv +162816 adv +162819 adv +162823 apposition +162827 adv +162831 apposition +162833 s +162835 s +162843 s +162848 adv +162857 o +162866 adv +o +162872 adv +162876 s +162883 io +162887 adv +162889 o +162891 p +162899 apposition +162901 s +162903 adv +162905 v +adv +162909 s +162911 adv +162913 v +adv +162918 adv +162922 s +162924 adv +162926 adv +162929 apposition +162932 adv +162936 apposition +162941 adv +v +s +162945 adv +162948 p +162952 adv +s +o +162957 adv +s +162962 adv +adv +162966 s +o +162970 adv +162972 adv +162976 adv +s +162980 adv +apposition +apposition +o +adv +162991 o +162993 s +apposition +163000 o +163002 s +o +163005 s +163018 adv +s +adv +o +163023 adv +163030 adv +s +163037 o +163042 adv +s +163045 o +163049 apposition +o +163053 adv +adv +o +163062 adv +s +163065 adv +o +163068 adv +163076 o +163078 adv +adv +163082 o +163088 s +163090 adv +o +163095 adv +io +163098 o +163103 adv +s +163106 o +163108 aux +163110 o +163118 s +s +o +163122 adv +163127 adv +s +163130 io +adv +163133 o +163138 s +163143 adv +163145 io +163147 adv +163157 s +o +163162 adv +163166 adv +163177 s +163183 adv +163187 o +163189 s +o +163192 adv +163197 adv +adv +163200 adv +163202 s +163204 adv +o2 +163210 o +163213 adv +o +163220 io +163224 s +p +163232 p +163236 o +s +163240 adv +163242 o +163244 o +163249 adv +163252 adv +163255 o +o +163260 adv +163264 adv +163266 s +163269 o +163271 adv +163277 s +o2 +163281 s +163288 s +163292 o +163294 o +163301 s +apposition +adv +163307 s +apposition +adv +163313 s +apposition +adv +163321 s +163323 o +163330 o +163336 s +163340 s +o +163344 o +163347 o +adv +163351 p +s +163358 adv +o +163363 adv +o +163367 o +163370 o +163374 o +163376 adv +163378 o +s +163381 o +163384 o +adv +163388 o +163396 s +163398 o +apposition +163406 o +163412 o +163414 adv +163418 s +o2 +163421 o +163425 s +o2 +163429 o +163436 o +163443 adv +163451 s +adv +o +adv +adv +163457 v +o +163462 s +io +163465 o +163467 o +163469 adv +163476 o +163478 s +adv +163483 adv +163490 adv +s +adv +adv +163495 o +163499 adv +s +o +163503 adv +163506 adv +163509 adv +s +o +163521 s +o +163524 adv +163527 aux +apposition +163530 adv +163532 adv +163534 s +163537 adv +163540 s +adv +163543 adv +o +163552 s +163554 o +163561 adv +163566 o +163571 s +163577 s +163580 adv +163582 apposition +adv +adv +adv +163591 adv +adv +163594 adv +adv +adv +163602 adv +adv +163605 o +163607 adv +163612 o +163614 s +adv +163619 o +163627 adv +adv +163636 adv +adv +163639 o +163642 o +adv +163647 adv +163651 o +s +adv +163660 s +163663 io +163665 o +163667 o +163670 o +adv +adv +163674 adv +163679 adv +s +163687 adv +s +o +163694 o +163696 s +163700 adv +adv +163703 adv +o +163706 s +163708 adv +163711 adv +apposition +163714 o +163723 adv +io +o2 +163733 o +163739 o +io +163742 adv +163744 io +163748 s +o +adv +163755 s +163757 adv +163762 s +163765 s +163770 adv +o +adv +o +adv +163777 adv +163779 o +163781 adv +163786 s +163789 io +163795 adv +163798 io +adv +163809 adv +163813 s +163817 adv +163820 adv +163824 adv +163828 o +163831 o +adv +163834 s +163838 adv +163840 adv +163843 adv +163845 adv +163851 adv +s +o +o +o +o +o +163859 apposition +o +163863 o +163866 o +163869 o +163874 s +163876 adv +163881 p +163884 adv +163890 adv +s +adv +163898 s +adv +o +adv +163904 s +163909 s +163913 adv +163915 apposition +163917 s +163919 o +adv +p +163924 s +163926 o +adv +p +163930 s +163933 adv +163940 o +163942 o2 +163948 adv +163950 s +163954 s +163957 adv +163959 adv +o +163962 adv +o +163965 aux +apposition +163970 s +adv +163976 adv +o +163979 aux +apposition +163985 adv +s +163989 o +o +163993 o +163996 s +164002 adv +s +o +164017 adv +164020 adv +adv +164026 o +adv +o +164031 adv +164034 apposition +164038 o +164042 adv +164044 adv +164051 o +164053 s +o +164064 s +164066 adv +164068 adv +o +io +164072 o +s +164075 adv +164078 adv +164083 apposition +164088 s +adv +164096 s +o +164103 adv +o +164107 adv +164112 s +164114 o +164116 adv +164121 adv +164125 adv +164130 s +164132 apposition +164138 adv +o +164141 p +164143 o +p +s +164147 adv +164150 p +164156 adv +164158 s +164160 adv +o +164165 s +o +p +164169 apposition +apposition +164178 adv +164182 o +164185 v +164187 adv +164191 o +164200 o +164203 o +164205 o +s +164208 p +164211 o2 +164216 s +164218 adv +164226 s +164230 adv +o +164234 apposition +164238 apposition +164241 adv +164245 o +p +164250 o +164256 s +o +164259 adv +164261 adv +164270 adv +adv +164273 adv +164279 adv +adv +164287 adv +o +164292 adv +164295 adv +adv +164300 o +adv +adv +164307 s +164311 adv +s +adv +o +s +164319 adv +s +o +164324 o +164332 o +164337 io +164339 o +164343 adv +164349 o +164352 adv +164354 adv +164359 adv +164362 adv +s +164369 adv +o +164372 adv +164376 o +164381 adv +s +o +o2 +o2 +164389 o +adv +164394 s +164396 apposition +apposition +164399 p +164402 p +164406 adv +adv +o +164412 o +p +164415 adv +164417 adv +164419 o +164423 o +p +164426 o +164429 adv +o +164434 adv +io +o +164439 s +o +o +adv +164449 o +164452 adv +adv +o +164458 adv +164464 adv +o +164472 adv +adv +164478 adv +o +164481 adv +164484 s +164487 o +164493 s +164496 s +o2 +164500 adv +164502 s +164506 adv +164515 adv +adv +164522 s +164528 adv +adv +164533 o +164536 apposition +164542 adv +164552 adv +164554 s +164557 o +164559 adv +164561 adv +o +164568 s +o +164581 o +164590 adv +o +164593 adv +o +o +164600 s +adv +o +adv +o +164606 p +164613 o +164619 adv +adv +164627 adv +164629 s +164632 io +164636 o +164641 o +io +164644 apposition +o +adv +164651 s +o +adv +164655 apposition +apposition +164658 aux +apposition +s +164662 adv +164665 adv +164668 adv +164672 adv +adv +164676 adv +s +164682 io +164684 o +164690 s +164692 adv +164698 aux +164704 s +164708 adv +o +164711 o +164713 adv +164718 adv +o +o +164723 adv +164727 adv +s +adv +adv +o +s +164735 adv +apposition +apposition +io +164744 o +164746 adv +o +164749 adv +164753 o +164756 o +adv +o +io +164761 o +164764 o +164767 s +164775 adv +164780 adv +o +164784 adv +164789 adv +164795 s +adv +o +164799 v +164805 s +164808 adv +o +164811 o +164815 o +164819 io +164821 o +164824 s +164827 s +164833 adv +164839 o +164841 adv +164846 s +164848 adv +adv +164851 o +164854 apposition +164860 s +o +164865 s +adv +adv +o +164870 o +164872 o +164876 o +164878 adv +o +164885 s +io +o +adv +o +164892 adv +164898 s +164912 adv +s +adv +164916 adv +164920 o +164922 adv +164924 adv +o +164928 adv +164933 o +164936 adv +164939 adv +adv +164942 adv +164946 o +o +164949 s +164955 s +adv +o +164959 o +164963 o +164972 o +s +164980 o +164983 adv +164986 o +164989 o +164991 io +164996 adv +164999 adv +165003 adv +165006 s +165008 o +165011 adv +o +165014 o +165017 adv +165020 s +165022 o +165026 io +165031 p +s +165037 s +adv +165041 adv +o +165044 io +165048 s +165053 adv +165058 adv +s +165064 adv +165066 p +165074 adv +s +o +adv +165079 o +165082 o +165089 adv +165091 v +165096 p +165104 adv +165110 o +165112 adv +165114 adv +o +p +165128 p +165134 adv +s +adv +165142 s +adv +adv +165146 o +adv +165152 s +165155 adv +o +165158 s +165165 o +o +apposition +165169 adv +165186 p +165192 apposition +o +165195 adv +165200 adv +165204 s +165208 s +165213 s +165215 s +adv +o +adv +165220 o +p +165224 o +p +165228 adv +165230 adv +adv +o +io +165235 o +165237 adv +165242 o +165244 adv +165253 p +165258 o +165261 adv +165264 o +165267 s +io +165273 adv +o +adv +165278 s +165286 o +165289 v +165293 adv +165307 o +165310 adv +165316 adv +165318 o +165322 o +165325 adv +165328 adv +165334 o +165338 o +165341 o +165358 adv +165363 adv +165366 s +165370 s +165374 o2 +adv +165377 adv +165379 s +165382 apposition +165385 adv +165387 s +p +apposition +165393 s +165395 p +165400 s +165403 s +165409 aux +165412 adv +165414 o +165417 adv +165424 o +s +165430 aux +165433 adv +165436 o +165440 adv +165443 adv +165445 o2 +165451 aux +165453 apposition +165455 apposition +165457 s +165459 adv +165463 s +165465 adv +165472 aux +165475 apposition +165477 s +165480 s +165482 apposition +165484 o +165489 s +165491 adv +165495 s +165497 adv +165500 apposition +165506 apposition +165508 s +165511 s +165513 apposition +165515 o +165519 s +165521 adv +165523 adv +165533 s +165535 adv +165537 adv +165546 s +165548 adv +165550 adv +165559 adv +165564 aux +165570 o +165578 o +165582 apposition +165591 s +165596 aux +165598 apposition +165601 o +165604 o +165608 aux +165611 adv +165614 o +165622 adv +165628 aux +165630 o +165635 s +165642 aux +165647 adv +165650 apposition +165655 o +165661 s +p +165665 adv +165668 adv +165674 aux +165681 o +165686 o +165691 o +165694 p +165701 p +adv +165709 o +165711 p +165714 o +165718 o +165725 aux +apposition +adv +165734 adv +adv +o +165739 o +165741 adv +v +165747 adv +adv +165753 adv +165758 adv +s +165762 apposition +adv +165765 adv +165770 apposition +165776 apposition +apposition +adv +165788 s +adv +165798 aux +165801 o +165804 o +165806 adv +165809 o +o +165812 adv +adv +o +165816 adv +165822 s +165827 o +165829 adv +adv +165834 o +p +s +165838 adv +165844 s +adv +adv +165850 s +165852 adv +o +165859 adv +o +165863 o +165868 adv +adv +s +apposition +165876 adv +165881 s +adv +adv +o +o +165889 s +165900 adv +s +o +165910 adv +165913 adv +o +p +165921 o +o +165927 o +165933 s +165936 s +165942 adv +165945 adv +165948 s +165950 adv +165954 s +p +165960 adv +165965 v +adv +165969 adv +165984 s +165990 adv +165993 s +s +166001 aux +166003 adv +166008 s +166012 adv +166015 adv +io +166020 s +166027 o +s +166032 apposition +166034 adv +166036 apposition +adv +166040 s +166044 s +166047 adv +166050 s +166053 adv +o +166060 s +166063 adv +o +166069 io +166072 adv +166076 adv +166082 adv +166084 s +166086 adv +166091 s +166093 apposition +166095 adv +166102 adv +166106 adv +166108 s +166111 s +166115 adv +166117 s +166123 o +166125 s +166133 s +166137 o +166140 adv +166142 adv +166144 o +166155 o +p +166160 o +166163 p +166168 adv +166171 s +adv +166175 adv +s +166182 adv +166184 s +s +166190 adv +166195 s +166198 s +o +166203 s +adv +166208 s +166215 s +166220 adv +166223 s +166229 o +s +166233 adv +166237 adv +166245 o +166247 adv +166251 o +166253 adv +166256 adv +166264 adv +166266 o +166272 s +166276 o +166278 o +166280 s +166283 adv +166285 o +o +166288 adv +166292 adv +166294 adv +s +166297 adv +166300 s +166304 s +166310 s +166312 adv +166317 adv +166323 s +166331 s +166335 adv +166337 s +166340 s +166351 adv +166355 apposition +166358 v +166364 adv +166366 adv +adv +166371 adv +166374 s +166378 s +166386 p +166388 apposition +166394 adv +166396 apposition +166406 o +adv +s +166413 adv +166417 s +o +adv +s +166427 o +s +166433 adv +s +166437 adv +166439 s +166445 s +166450 apposition +s +adv +166455 adv +166457 o +adv +166461 s +166464 apposition +o +adv +s +166472 o +166474 adv +166485 s +166488 adv +166491 o +s +166497 o +o +166502 v +166504 adv +166509 s +166513 adv +166516 apposition +166520 apposition +166526 o +166528 adv +166532 s +166540 s +166543 adv +166545 apposition +adv +o +166549 adv +166556 s +166563 s +adv +o +adv +166570 s +adv +166573 adv +166580 s +166588 adv +o +166591 aux +s +166594 adv +166598 s +166603 o +166608 s +io +o2 +166612 adv +166617 s +166622 s +adv +o +166626 adv +adv +166630 adv +166639 adv +166641 s +166645 s +adv +adv +166651 s +166655 s +166658 adv +o +166666 adv +o +166677 o +166688 adv +o +166693 o +166697 o +166701 o +166707 adv +166715 adv +s +166718 o +166720 adv +166723 o +166726 s +166728 o +o +166734 s +166736 o +adv +166740 o +166748 adv +166750 s +166756 adv +166760 adv +s +166763 o +166765 o +166767 adv +o +166771 o +166773 o +166777 s +166779 o2 +166782 aux +166785 o +166787 adv +o +adv +166791 adv +166798 adv +s +166802 o +166804 o +166807 o +166809 o +166813 s +166815 o2 +166818 aux +166821 o +166823 adv +o +adv +166827 adv +166835 adv +s +166839 o +166841 o +166845 adv +166847 p +166851 adv +166854 adv +166857 adv +adv +o +166861 adv +166864 o +166868 adv +s +166871 o +166874 aux +166877 adv +166880 adv +166883 adv +166887 s +o +166890 io +166894 adv +o +adv +166901 adv +o +166905 io +166907 o +166914 io +166922 aux +166924 s +166926 adv +166930 o +166932 adv +166938 s +166947 adv +166950 s +166953 adv +166958 s +166960 adv +adv +166968 adv +s +166973 adv +adv +166977 s +o +adv +166985 o +adv +166990 o +adv +166994 s +io +166998 o +167001 aux +167007 o +167010 adv +167019 o +167038 p +167041 adv +167044 s +adv +o +167052 o +167065 o +167077 o +p +167084 adv +167088 adv +s +o +167092 adv +adv +167095 io +167103 io +167106 o +adv +adv +adv +167114 apposition +167116 io +167128 o +167149 s +adv +o +167155 o +p +167169 adv +o +167172 adv +adv +167175 io +167182 adv +167186 s +adv +167196 s +o +167201 io +167203 o +adv +167207 p +167209 s +167212 s +167215 adv +167221 s +167227 adv +167232 apposition +167236 adv +167239 o +167245 o +167247 adv +167251 adv +167257 s +p +167263 apposition +167266 adv +o +167272 adv +167278 adv +s +adv +o +p +s +167288 o +167295 adv +s +o +167299 io +167302 o +adv +167308 o +adv +167315 adv +o +167318 adv +167321 adv +167329 adv +167331 s +167333 adv +167336 s +167338 adv +167342 s +167345 apposition +167347 p +adv +adv +167351 o +o +o +167357 o +167361 adv +adv +167367 adv +167370 s +adv +adv +o +167376 adv +o +167381 o +167383 adv +167385 adv +167389 o +s +o +167393 s +167396 adv +o +adv +167406 s +167409 s +167412 o +167418 adv +167426 o +167428 o +167430 s +167435 adv +o +s +o +167444 adv +o +167447 aux +167449 adv +o +adv +167458 s +167463 adv +167466 io +167469 apposition +adv +s +167476 adv +167478 s +167483 adv +s +apposition +167487 o +167492 o +167499 s +adv +167506 adv +io +o +167513 p +167518 adv +167522 adv +o +167525 adv +167528 p +167533 apposition +167535 adv +adv +167541 o +adv +adv +adv +167549 adv +167553 apposition +167555 adv +adv +167564 adv +adv +167571 s +o +167574 s +adv +adv +167579 adv +167581 o +167583 o +167586 s +167591 adv +167594 adv +167599 adv +s +o +167604 adv +167608 s +o +167611 o +167613 adv +167616 adv +167620 s +o2 +167624 s +adv +167627 adv +167630 s +167636 adv +s +adv +167643 io +o +adv +167647 adv +167651 adv +o +167658 o +167664 o +167666 s +167668 adv +167673 adv +167677 adv +adv +167680 adv +v +167683 o +167685 aux +167687 adv +167689 adv +s +167703 adv +167707 o +167710 io +o +o +adv +adv +167723 adv +167728 s +167731 s +167734 adv +adv +adv +o +167739 aux +167742 o +adv +167746 s +167752 adv +o +167756 v +s +167762 adv +adv +adv +adv +o +167771 adv +167775 o +167783 s +167786 s +167789 adv +167796 s +167801 topic +167803 s +apposition +167808 adv +s +167824 s +167826 adv +apposition +adv +p +167835 adv +adv +o +167844 s +o +167847 adv +167851 adv +o +adv +167861 s +167864 adv +o +o +167870 adv +o +167874 o +167878 s +o2 +167881 o +167883 adv +167888 s +167891 adv +167895 adv +167898 o +o +167903 o +167909 s +o +167912 s +167915 adv +167918 s +io +o +167925 adv +167927 adv +167930 adv +167933 adv +adv +167936 adv +167940 o +167942 s +167945 s +167950 s +167952 adv +167957 s +167959 o +adv +167962 apposition +167964 s +167972 s +adv +adv +167980 adv +adv +167983 adv +o +167989 s +167994 adv +167996 adv +167999 o +168002 s +168006 adv +o +o +o +168011 o +168016 adv +168021 adv +s +o +o +168028 s +168032 s +o +adv +168037 apposition +168039 o +168041 adv +168043 p +168045 apposition +168050 s +o +168055 o +adv +o +168059 s +168062 adv +168067 adv +168073 s +o +168076 adv +o +168079 o +o +168082 o +o +168087 adv +o +168093 adv +168100 adv +o +168105 s +168110 s +adv +168116 s +adv +o +s +p +168122 apposition +168126 adv +adv +o +o +168134 adv +168140 io +o +p +168144 apposition +168148 adv +o +168151 o +168155 adv +adv +s +168159 io +o +168162 s +p +168166 s +168171 o +168175 o +168177 o +168184 s +o +168189 o +168191 adv +168196 adv +168202 s +168209 adv +168211 adv +168217 adv +168220 io +apposition +168224 s +apposition +168227 adv +o +168230 adv +o +168233 io +168236 adv +o +adv +o +168243 o +168245 adv +168251 adv +o +adv +168257 adv +168261 s +adv +o +o +168266 s +adv +168271 p +168275 adv +adv +o +168280 adv +168286 s +168288 p +adv +168293 s +168295 adv +168297 apposition +adv +adv +168302 o +168305 apposition +168310 apposition +adv +168316 adv +168325 s +adv +168331 s +adv +o +p +168340 s +o +168345 adv +168348 adv +168354 s +o +o +168360 adv +168363 o +168365 s +168369 adv +s +o +io +o +168375 apposition +168379 o +168388 s +o +o +168393 o +168396 apposition +168400 o +168402 adv +168407 adv +168410 adv +s +168413 adv +o +168416 adv +168422 adv +adv +168427 s +168431 o +adv +168435 o +168438 o +168442 adv +s +o +o +o +168453 o +168456 s +adv +168459 adv +apposition +168464 o +168468 adv +168470 o +168474 adv +o +168479 s +adv +o +168486 adv +o +adv +168490 adv +o +168493 adv +168500 adv +s +168503 o +s +168506 p +168515 o +168518 adv +o +adv +168524 s +168527 adv +o +adv +168531 adv +o +168538 adv +o +168542 adv +adv +adv +168549 adv +168554 adv +adv +adv +o +168559 aux +168563 adv +adv +o +168568 adv +168579 o2 +168582 o2 +168586 adv +168592 adv +o +168598 adv +168600 o +168605 adv +adv +168609 p +apposition +vc +p +o +o +168616 adv +168620 adv +o +168626 adv +o +168629 adv +168632 adv +168636 adv +168639 o +168643 o +p +apposition +168650 adv +s +apposition +168654 adv +168657 adv +168661 s +168663 adv +168665 o +168669 o +168671 aux +168674 o +168677 adv +168683 p +168687 adv +168691 s +adv +adv +168697 o +168700 o +168705 p +168707 adv +168711 adv +168714 adv +168716 o +168723 o +168725 p +168729 adv +s +168733 apposition +168735 adv +168739 adv +168741 adv +168744 adv +168749 adv +168752 s +adv +adv +o +168762 p +168765 aux +168767 aux +168769 adv +168773 s +168776 adv +o +168782 s +168784 adv +168795 s +o +168802 adv +168806 s +adv +adv +o +168814 s +168817 adv +168820 adv +168823 s +168826 s +168829 s +168833 s +168840 adv +adv +168843 adv +168846 adv +168854 s +168859 adv +o +adv +o +168867 adv +o +p +168873 s +168878 adv +apposition +o +adv +168883 adv +apposition +p +s +168888 apposition +168891 apposition +168906 s +168911 apposition +apposition +s +apposition +io +168918 adv +io +o +168925 s +o +168931 adv +o +s +adv +168938 adv +168943 apposition +adv +168948 adv +o +adv +168956 s +168958 apposition +168962 v +adv +168968 adv +168970 apposition +p +168973 s +168977 adv +adv +o +168981 o +168983 s +168985 adv +o +adv +168992 o +s +adv +168997 o +169000 adv +s +169004 io +o +adv +169010 s +169012 adv +169015 s +o2 +169027 adv +o +adv +o +adv +169036 adv +adv +169039 adv +169041 s +169043 apposition +169047 adv +o +169052 s +169057 s +adv +169060 adv +169063 o +169066 adv +169071 s +169073 p +169076 s +169078 adv +169083 adv +169086 s +169090 p +169094 adv +s +io +o +169101 o +169103 o +apposition +169118 o +169120 apposition +169124 adv +io +169127 aux +169130 adv +169135 adv +169143 adv +adv +169146 adv +169150 adv +io +169156 adv +o +169162 adv +o +169169 s +o2 +169176 io +169178 o +169180 adv +169188 s +169190 adv +adv +169193 io +o +169200 adv +169202 adv +169206 o +io +adv +o +o +169213 s +169215 adv +169222 adv +169232 adv +169238 s +169240 adv +adv +169249 s +169251 adv +169253 adv +169256 apposition +s +169260 adv +169266 adv +s +adv +o +s +169280 adv +o +169283 adv +adv +169294 adv +o +o +apposition +169301 p +adv +169304 adv +169310 p +169315 apposition +169320 adv +169323 apposition +o +169326 o +169328 adv +169330 adv +o +169334 p +169336 adv +169338 o +169340 o +169343 o +169346 s +apposition +169349 adv +169351 adv +o +169360 adv +s +169370 adv +adv +169374 adv +o +169380 s +p +169384 o +169387 o +adv +169393 o +169399 adv +o +s +169403 adv +adv +adv +adv +o +169416 adv +169421 adv +169426 adv +169431 adv +169433 adv +169437 adv +adv +169440 o +169442 s +169445 s +adv +adv +169451 adv +169453 o +169455 p +169458 apposition +169460 adv +169464 s +adv +169471 p +169473 adv +adv +adv +169480 p +169484 s +169488 adv +169491 s +s +adv +169495 adv +169497 o +169502 adv +169506 s +169509 s +169516 adv +169521 adv +adv +169526 o +s +169530 apposition +169532 adv +169540 s +o +169543 adv +169546 o +p +169551 adv +o +169557 adv +o +169561 apposition +169565 apposition +169569 adv +169571 o +169577 adv +o +169581 adv +169583 adv +169585 adv +169589 adv +169593 adv +adv +adv +169600 adv +169603 adv +169605 v +o +169613 s +169618 p +169621 s +169626 adv +o +169630 p +169633 aux +169635 adv +169637 o2 +169640 p +169646 s +o +169651 adv +169655 s +169658 adv +169662 adv +adv +169667 adv +169669 adv +o +169674 p +169679 io +169688 s +169690 adv +169698 adv +adv +169701 adv +169706 adv +169713 s +169715 adv +169718 adv +169722 adv +adv +o +169729 s +169738 s +169740 adv +o +169751 v +s +169754 adv +169760 o +169762 adv +169766 o +169769 o +s +adv +169777 adv +adv +169782 adv +169789 s +169798 o +169803 o +169806 adv +169812 adv +169815 adv +169819 adv +169821 adv +169824 adv +169829 o +169833 adv +adv +169838 adv +adv +169841 adv +169843 o +169848 adv +adv +o +169854 o +169861 adv +s +169869 adv +169872 o +169874 o +169876 o +169880 io +169883 adv +169886 o +adv +169893 adv +o +169898 o +adv +169901 o +adv +169905 p +169910 adv +169915 adv +adv +169918 o +169920 p +169925 adv +169927 s +169933 o +169937 adv +adv +o +169941 adv +169946 adv +o +adv +169950 o +169952 apposition +169955 adv +o +169958 apposition +s +169963 s +adv +o +169967 io +o +169970 s +169975 s +169977 p +169981 adv +169984 o +169986 o +o +169989 o +169992 s +apposition +169997 s +adv +adv +170001 o +170003 adv +o +170006 adv +170009 o2 +170014 io +170016 s +170020 o +170025 o +170032 o +170034 s +170037 adv +adv +170042 io +o +o2 +170048 o +170052 adv +170061 adv +o +adv +adv +170069 o +adv +o +170076 adv +170082 s +170084 adv +170091 adv +o +s +apposition +170096 adv +170100 o +170104 adv +170109 s +adv +170116 s +170119 adv +170132 s +170135 adv +o +170138 adv +170142 io +170144 adv +170146 adv +170153 adv +s +o +170157 o +s +170161 s +170166 adv +170171 v +s +170183 o +170185 adv +s +170195 s +170200 s +o +170203 s +170206 adv +170208 s +p +o +170213 adv +adv +o +adv +o +170222 adv +170224 adv +s +170228 adv +170233 o +170235 adv +170243 s +170246 adv +170248 apposition +170251 s +170257 o +adv +170265 s +o +170270 s +170273 s +170276 o +adv +170283 s +adv +170286 adv +170290 s +170292 o +adv +o +170298 s +o +adv +o +170305 o +o +170313 s +170321 adv +170325 adv +170330 o +170333 apposition +adv +s +170337 s +170340 io +170343 p +170347 o +170349 s +adv +170354 s +adv +170360 s +170363 p +170369 adv +170373 s +170375 o2 +o +170384 adv +170390 io +170392 apposition +170394 o +170396 o +adv +170402 o +adv +s +170419 adv +adv +adv +adv +170427 io +o +o +170436 s +170441 adv +s +adv +170445 adv +adv +170451 s +adv +170455 adv +170460 s +170467 adv +170482 s +adv +o +adv +170490 io +170492 o +170494 adv +170501 adv +170503 adv +170505 s +170510 s +170513 adv +170517 adv +o +170520 p +170526 adv +170533 adv +170537 o +170540 adv +170548 p +170552 adv +170556 adv +o +170562 o +170566 io +170570 aux +170572 apposition +170576 apposition +170581 o2 +apposition +p +170587 o +170594 apposition +170599 apposition +170603 apposition +170607 adv +170611 s +adv +170614 o +170618 adv +s +170621 adv +adv +170624 o +170629 s +170631 apposition +170633 adv +o +170640 adv +170644 o +170648 adv +adv +o +o +170655 adv +170657 adv +o +s +170664 adv +170666 adv +s +170669 o +170676 s +adv +170681 o +170687 o +adv +adv +170693 o +170695 adv +170697 o +170700 o +170705 adv +170707 io +170710 s +170716 apposition +170721 apposition +170723 s +170725 adv +170729 adv +170733 adv +170735 o +o +170741 s +170749 adv +adv +adv +170756 adv +170759 o +s +170772 adv +o +s +170782 adv +o +170785 adv +o +170789 p +170799 o +170803 p +170810 o +adv +170817 adv +s +adv +170821 adv +adv +adv +170827 s +170829 p +170838 adv +170841 adv +170844 o +170847 s +170849 adv +170853 adv +170856 apposition +170860 adv +170865 s +170873 adv +170876 o +170879 adv +170882 o +170886 adv +170888 s +170891 adv +170897 adv +170903 s +170911 adv +170918 adv +v +170923 adv +170932 adv +s +adv +170940 adv +170942 s +170944 adv +170946 o2 +170950 o +170952 s +170958 o2 +170960 adv +170962 adv +s +adv +170968 adv +170974 adv +170984 o +170986 o +170990 o +170994 s +170996 o +171001 s +171005 apposition +s +171008 o +171013 s +171016 o +171018 apposition +171020 adv +171024 s +171026 adv +171028 p +apposition +171031 adv +171033 o +adv +171038 adv +171043 adv +s +171046 adv +171051 s +171053 adv +171058 p +171060 o +171064 s +171077 adv +o +171084 s +171086 adv +171090 p +apposition +171093 o +171098 adv +171107 adv +171110 s +adv +171114 adv +171118 adv +171124 adv +171130 s +adv +171140 adv +171145 adv +171150 o +171156 s +adv +171165 adv +171170 s +171172 adv +171176 o +171178 s +171184 o +adv +171190 v +171192 adv +171197 s +v +171204 s +apposition +171209 adv +171214 adv +171216 s +o +adv +171220 s +171224 o +171226 o +171231 adv +171233 adv +p +171237 apposition +171239 adv +171241 adv +171243 adv +171246 apposition +171251 adv +171256 adv +171260 o +adv +171263 o +adv +171267 s +171273 adv +171275 o +adv +171278 o +171283 adv +171286 adv +io +171293 adv +171296 adv +171298 adv +171304 adv +o +adv +171308 p +171312 s +p +171318 s +171322 s +adv +171325 adv +171327 s +171331 p +171333 adv +adv +171342 o +171345 s +171351 adv +o +171355 io +o +171363 s +171366 s +171370 o +171377 o +171380 adv +adv +171383 adv +171385 s +171393 adv +171397 adv +171405 adv +171408 adv +171410 s +171414 apposition +o +adv +171422 adv +o +adv +171428 adv +171433 adv +s +171437 s +171440 o +171445 adv +adv +171448 adv +171454 v +171462 adv +o +adv +171470 adv +adv +o +171474 p +171477 aux +apposition +171481 apposition +171483 adv +o +171487 o +171489 aux +171492 adv +171497 o +s +171502 o +s +adv +171509 adv +171511 adv +171516 p +171518 s +171525 adv +o +171528 adv +171532 adv +171540 adv +s +171544 adv +171549 s +adv +171552 adv +171554 adv +171557 adv +171563 s +171567 adv +171576 adv +171579 s +171585 adv +171590 o +s +171594 apposition +171596 o +adv +171607 s +171609 o +adv +171614 adv +171619 o +o +adv +171628 adv +171631 s +171633 adv +171635 p +171641 o +171643 adv +171646 adv +171650 o +171652 s +171662 o +adv +171665 o +s +171674 s +adv +171677 adv +171680 s +adv +171684 p +171690 s +171697 adv +adv +171703 adv +adv +171706 s +171708 adv +171710 adv +o +adv +171720 adv +171725 s +171731 s +171734 p +171736 adv +171739 adv +171743 o +171751 adv +171753 adv +o +171757 adv +adv +171760 o +171765 adv +171767 adv +171769 o +171776 s +171782 adv +o +171785 adv +171790 s +adv +adv +o +s +171797 adv +adv +171800 o +o +171806 s +171808 o +171810 o +s +171814 o +171818 adv +o +171825 s +adv +v +171829 adv +o +171835 o +171840 o +171842 s +171847 adv +171850 adv +171855 adv +adv +171858 adv +o +171862 s +171865 o +171869 s +adv +o +s +io +o +171880 o +adv +adv +171884 o +171889 apposition +171895 adv +171902 o +171905 v +171909 adv +o +171912 v +171916 s +171926 adv +o +171938 adv +s +171943 adv +o +171947 o +o +171950 vc +p +171953 aux +o +171960 s +171965 p +171969 adv +171974 o +171978 o +s +171987 adv +171992 s +171999 o +adv +172005 s +adv +adv +o +172012 s +172014 apposition +172018 s +172020 adv +172026 p +172028 apposition +172042 s +172044 p +172048 adv +172052 s +adv +172055 adv +172057 adv +172072 o +o +adv +172076 adv +io +o +172082 adv +172088 o +adv +172094 o +172097 o +adv +172101 o +172108 adv +172111 adv +adv +172119 adv +172126 o +172130 o +172134 adv +172136 adv +172144 s +172148 adv +o +172151 apposition +172155 adv +172161 adv +adv +172166 o +172170 o +172177 s +172179 adv +172181 s +172185 adv +172188 s +apposition +172191 adv +172194 adv +s +adv +172200 o +172205 o +172207 adv +172209 p +172214 adv +s +apposition +172218 aux +172224 s +172226 adv +o +172230 adv +adv +172233 apposition +172236 apposition +172238 adv +172243 s +io +o +172247 s +o +172257 s +172260 o +172268 s +o +adv +o2 +172279 adv +172285 apposition +172287 s +adv +172290 adv +172292 io +172304 s +172310 o +172318 s +io +o +172322 o2 +172329 adv +172334 adv +172341 adv +io +172344 o +172349 o +172352 apposition +172357 adv +adv +adv +172361 adv +o +o +172365 adv +o +172369 apposition +172373 adv +s +adv +172381 o +172385 adv +s +o +o +172394 adv +adv +172401 o +172403 adv +172406 io +172409 s +io +172416 adv +s +172421 o +172425 adv +172430 s +adv +172435 o +172444 o +172446 s +adv +adv +172455 s +172463 o +172467 adv +172469 adv +172471 adv +172477 o +172483 adv +172492 adv +o +172497 adv +172500 p +172505 o +172511 adv +s +172514 adv +172517 s +172522 adv +172524 adv +adv +172530 o +172534 adv +o +o +172540 o +172542 adv +o +172547 o +172551 o +172553 o +172559 adv +172561 o +172567 o +adv +adv +172575 adv +adv +172585 adv +o +172592 adv +adv +172597 o +172599 o2 +172601 io +172606 o +172618 o +apposition +172623 adv +172628 s +172630 o +p +172635 o +172637 s +172639 adv +172643 adv +172645 adv +adv +172648 o +172652 adv +adv +172655 adv +172662 s +p +172668 adv +172673 adv +172675 o +adv +172681 s +adv +172686 adv +adv +adv +172693 o +172699 adv +o +adv +172703 o +172716 adv +172719 o +172728 adv +adv +172733 s +172738 adv +adv +172743 adv +172746 v +s +172753 adv +adv +172756 adv +172763 adv +172767 adv +adv +172773 o +adv +172776 o +172778 adv +172787 adv +172790 adv +172796 adv +172798 o +172802 adv +172804 o +172811 s +172816 adv +s +172822 adv +172824 adv +172827 o +172830 o2 +172832 adv +172834 apposition +o +172840 s +172845 adv +172847 o +adv +o +172854 adv +adv +172859 adv +adv +o +172868 s +172872 o +172874 adv +s +172877 adv +172883 adv +o +172888 o +adv +172891 apposition +adv +172894 adv +172898 s +172900 adv +172903 s +172905 adv +172908 adv +o +172912 adv +o +172916 o +172922 o +o +172926 adv +172928 o +172933 o +172935 o +172943 s +172945 o +172950 o +172953 io +172957 adv +p +apposition +s +172962 adv +172964 o +io +172969 adv +o +172973 adv +172976 apposition +172980 o +172985 adv +o +o +172991 o +172993 s +172998 adv +apposition +o +173003 s +173005 adv +173007 p +173009 o +173015 adv +adv +173019 s +173021 o2 +173026 o +173028 s +173030 adv +173033 s +173036 adv +173038 o +173042 adv +173047 adv +173051 adv +173054 o +173059 o +173062 aux +173064 adv +173066 o +173070 adv +173075 s +173081 aux +173084 s +173089 o +173093 adv +adv +173101 adv +adv +o +173106 o +173110 adv +adv +s +apposition +s +173117 o +adv +adv +173126 s +173128 adv +173132 o +173134 o +adv +173141 o +173143 o +s +173147 s +173149 o +173154 io +173161 o +173165 s +173167 adv +173169 adv +173176 o +adv +173180 o +adv +173184 s +173188 adv +adv +173192 o +173194 s +adv +173199 s +173203 adv +adv +173207 adv +adv +173212 adv +173220 o +173224 o +173226 o +173231 adv +adv +173234 adv +o +173237 adv +173242 adv +o +173248 adv +adv +173253 o +adv +p +173260 s +173265 s +173274 o +173279 adv +adv +173284 adv +o +173288 o +173290 s +173297 adv +173300 s +173303 o +173305 adv +o +o +173309 adv +173314 adv +173317 o +173321 adv +173323 o +adv +173326 adv +173331 s +p +173336 s +173338 o +173340 o +adv +173345 o +o +173354 io +o +adv +173363 adv +o +173366 adv +173368 o +173370 io +173376 io +173380 o +173384 adv +o +o +173396 o +173398 apposition +173402 p +173409 adv +adv +173412 adv +173415 adv +173422 s +173425 o +adv +adv +adv +173430 adv +173434 adv +adv +173437 o +s +173446 io +173451 adv +adv +adv +173459 o +173462 adv +173464 o +adv +adv +173471 adv +o +o +adv +173485 adv +o +173491 adv +o +o +173497 v +173501 o2 +o +173507 adv +173510 adv +173514 o +adv +173517 o +173519 adv +173521 o +173529 adv +173531 o +adv +173534 o +173544 o +173548 adv +173555 o +173561 adv +o +173565 adv +173569 adv +adv +173573 adv +o +o +173580 adv +o +173583 o +173586 o +s +173591 o +adv +173605 adv +173607 adv +o +adv +173614 s +173619 adv +173627 adv +173629 o +173631 adv +o +o +s +173638 adv +adv +173642 o +apposition +173649 o +173651 p +173656 adv +173658 o +173661 adv +s +o +p +173668 o +173670 adv +173674 o +adv +173677 s +173679 s +173685 adv +173696 adv +173701 o +173705 s +adv +o +173712 adv +173716 o +173720 o +173722 adv +173727 o +173730 o +173735 adv +o +adv +173740 o +173743 o +adv +173749 o +173756 s +173758 o +o +173764 s +173766 o +173768 adv +173775 s +173777 o +173781 o +173786 o2 +173794 o +173798 adv +173802 apposition +173805 o +173807 s +173813 adv +173818 adv +173825 o +173827 adv +173829 s +173833 apposition +adv +adv +173838 o +s +173842 adv +173847 adv +173849 s +o +173857 adv +173859 adv +173864 adv +173867 s +173869 p +173872 adv +s +173876 o +173881 adv +173884 v +adv +173889 adv +s +io +o +173895 s +173899 o +173909 o +adv +173916 adv +173919 adv +173921 o +173923 p +173926 apposition +173932 adv +173935 o +adv +173941 adv +173944 o +173946 o +adv +173951 s +173954 adv +173958 o +adv +adv +o +s +173964 adv +173968 adv +o +s +o +173973 s +173977 o +173980 adv +173983 adv +173987 adv +173995 adv +173998 s +174002 o +174005 adv +174009 adv +adv +174012 o +174014 s +p +174018 adv +174023 s +174025 adv +174028 adv +174032 o +adv +174037 s +174040 o +174042 o +174044 adv +adv +o +174051 adv +174057 o +174064 io +174066 o +174073 adv +o +174076 aux +174080 adv +p +174083 adv +174085 adv +174089 adv +174094 adv +s +174098 adv +adv +174101 adv +174105 o +174107 o2 +174109 s +174115 o +174117 adv +174122 adv +174126 adv +174131 adv +174133 adv +adv +174138 s +o +174141 aux +174144 adv +174148 adv +s +174152 o +174155 o +174160 s +adv +o +174164 o +174167 adv +o +174170 aux +174174 o +174176 adv +174179 adv +174183 adv +174190 p +adv +174193 s +o +174200 s +adv +o +174210 adv +174212 s +174214 adv +o +o +174220 o +174222 s +174224 adv +o +174228 adv +174232 adv +adv +174237 o +174243 o +174247 adv +174250 s +174253 adv +174259 adv +adv +174266 o +174269 o +174273 adv +174277 adv +p +174280 o +adv +174286 adv +174288 adv +adv +174291 o +174296 adv +o +174300 o +174303 o +174305 p +174313 adv +adv +174318 adv +apposition +174321 s +174323 o +174326 adv +174332 s +174336 o +174340 s +o +174344 o +adv +174348 adv +174350 o2 +174357 s +o +174362 s +174364 adv +174369 o +174373 s +p +p +174381 adv +o2 +adv +174387 o +174389 adv +o +174397 o +174401 apposition +174403 o +174408 s +adv +174414 adv +174419 adv +174421 s +174426 s +adv +174431 adv +o +174434 adv +174444 adv +174446 s +174451 s +adv +174456 adv +o +174459 adv +174464 adv +174466 s +174471 s +adv +174478 adv +o +adv +174483 apposition +174485 s +174489 s +174495 s +174499 adv +174501 s +adv +174506 adv +174509 adv +174514 adv +adv +174526 adv +174536 adv +o +174539 s +174544 adv +o +174549 o +o +174552 o +174558 s +o +adv +174563 o +174568 adv +174570 o2 +174575 adv +o +174583 s +p +174591 p +174595 o +s +174600 adv +174602 s +adv +174607 apposition +174609 s +174612 o +174616 adv +174619 adv +174621 adv +o +174627 adv +174632 s +174637 adv +s +174641 o +174644 o +s +adv +174650 p +s +174657 adv +s +174660 adv +o +174665 adv +adv +174670 adv +adv +o +adv +174678 adv +174680 adv +174684 o +174686 aux +174690 o +174694 s +o +174697 o2 +174701 s +apposition +174704 o +o +174712 o +174720 o +174722 o +adv +174729 s +adv +174733 o +174738 apposition +174740 o +174743 io +174746 adv +174754 adv +adv +174757 adv +adv +174760 v +o +174765 adv +s +io +174769 o +adv +s +174773 o +adv +174781 s +adv +174788 s +adv +o +174793 p +s +adv +174801 s +adv +174808 adv +174815 adv +adv +adv +174819 o +174822 adv +s +o +174827 adv +174830 adv +174833 adv +174837 s +o +o +174845 s +o +174850 s +o +174858 adv +174863 adv +174866 adv +174869 o +apposition +174876 adv +174879 adv +174882 apposition +174884 o +174889 s +174892 s +174898 p +174900 adv +adv +174904 v +s +174911 s +174916 adv +o +o +o +174921 o +aux +174925 adv +174928 s +174931 io +174940 io +174952 adv +174957 s +174960 apposition +174962 adv +o +174965 o +174967 o +174972 o +o +174977 o +o +174980 adv +174982 adv +174986 adv +adv +174993 s +o +o +174998 o +175000 o +175002 apposition +175005 adv +175007 apposition +175011 o +175015 s +apposition +175019 o +175021 apposition +175024 adv +175026 apposition +175030 s +175032 adv +175037 p +175043 adv +s +o +adv +175052 adv +s +o +adv +175058 s +175060 o +adv +175064 s +175071 adv +175074 s +175076 o +adv +p +175081 s +175083 o +adv +p +175089 s +175093 adv +175099 o +175101 o2 +175106 adv +175112 adv +175115 s +175121 s +175125 apposition +adv +175131 adv +o +175134 p +apposition +o +175140 o +175142 aux +175147 o +175152 adv +o +175155 aux +175159 adv +s +o +175165 o +adv +o +175174 adv +o +175177 adv +adv +175183 adv +s +o +o +175190 s +o +175197 s +o +175201 s +175209 adv +175216 adv +adv +175220 adv +175226 o +175231 o +175234 adv +175237 apposition +175241 adv +adv +o +s +apposition +adv +s +175257 o +175259 o +175261 s +o +175272 o +adv +adv +175281 s +175284 o +adv +o +175290 adv +175292 s +175300 o +adv +175306 o +175310 adv +175315 o +175317 adv +175321 adv +adv +175327 s +175333 o +175336 p +s +175339 adv +175342 p +s +175351 p +175356 adv +adv +175363 s +175365 adv +adv +adv +175373 adv +adv +175380 adv +adv +o +adv +175386 adv +175390 adv +adv +adv +175396 s +175400 adv +o +adv +175404 adv +175408 s +175413 adv +175418 adv +adv +175421 o +o +175433 o +175442 o +175445 o +175447 adv +175455 o +175458 o +175460 s +175462 p +adv +175467 o2 +175472 s +175477 o +175479 o +175485 s +175487 adv +175493 adv +175495 adv +175500 adv +o +s +adv +175507 adv +s +o +175511 s +175513 apposition +175517 adv +s +o +o +o +175523 adv +175528 adv +io +175534 adv +175539 adv +175543 o +175545 s +175549 adv +apposition +175552 aux +175554 v +175557 o +175567 adv +o +175572 adv +175575 s +175579 apposition +175582 o +175587 adv +175592 adv +175596 adv +s +175605 o +175607 adv +175611 o +175613 adv +175618 s +o +175622 o2 +175627 o +adv +175634 s +175636 apposition +p +175640 p +175645 adv +adv +o +175651 o +p +175654 adv +175656 adv +175658 o +175660 o +p +o +175664 o +175667 o +o2 +175673 adv +io +o +175679 s +o +o +adv +175687 o +adv +o +175704 adv +175706 adv +adv +175709 adv +175711 adv +175719 adv +175725 adv +o +175740 o +175742 apposition +175749 o +175753 adv +adv +o +175757 o +175762 s +175764 adv +adv +175767 p +apposition +175774 s +175779 adv +175782 adv +175786 s +175795 o +175798 o +175801 o +175803 apposition +apposition +175806 aux +apposition +s +175810 adv +175813 adv +175816 adv +175823 o +175826 o +175829 o +175831 adv +o +175836 adv +175841 adv +o +175852 adv +o +175856 adv +175861 adv +adv +175865 adv +175868 adv +o +175872 o +175875 s +175885 adv +o +175888 o +175891 adv +175899 o +s +175908 o +175912 s +o +175915 o +175918 o +175920 io +175924 adv +175929 adv +s +apposition +o +175935 adv +o +175938 adv +175940 adv +175943 s +175950 s +175952 o +175955 io +175959 s +175964 s +175967 adv +175972 s +175975 adv +175979 s +175983 s +175986 adv +s +175992 adv +175994 adv +175996 p +176000 s +176003 s +adv +176006 adv +adv +176009 o +176012 o +176020 adv +176028 p +176035 adv +176038 apposition +176040 adv +176043 adv +176045 adv +176047 s +adv +o +p +176060 p +176067 adv +s +176070 adv +o +o +adv +176075 o +s +176080 s +adv +176083 p +176088 s +apposition +176091 p +176094 o +apposition +176097 adv +176119 apposition +o +176122 adv +176126 s +176130 s +o2 +176135 adv +adv +176142 adv +176145 s +176148 adv +176163 o +adv +176166 adv +176173 s +adv +adv +176177 o +adv +176185 o +176189 adv +s +adv +adv +176194 o +s +o +176198 s +p +176202 s +adv +176207 o +io +176210 o +176212 adv +176217 o +176219 adv +176225 s +176228 p +176232 s +176237 adv +176240 o +adv +176244 apposition +176247 o +adv +176251 o +176263 o +176265 aux +176268 o +176273 o +176278 adv +adv +176282 s +adv +176288 s +176292 adv +s +176295 o +176297 apposition +176301 adv +o +176304 o +176306 o +176308 s +176311 apposition +adv +176315 adv +176321 adv +176326 adv +176329 o +176332 apposition +176339 adv +176342 s +176345 o +176349 p +176356 s +o +o +176363 adv +adv +s +apposition +adv +176372 adv +176376 adv +176379 adv +s +176384 o +o +176389 s +o +176392 s +o +176397 s +o +o +176406 adv +176409 adv +o +176419 o +176426 s +176429 s +176435 adv +176438 adv +176441 adv +176445 p +176452 adv +176455 adv +176458 adv +176461 adv +adv +176467 s +adv +176471 s +176477 adv +176481 o +o2 +176485 adv +176492 p +176495 s +176503 adv +176509 adv +176515 v +adv +adv +176524 aux +176526 adv +176533 o +s +176537 adv +176539 s +176541 o +176543 s +176546 adv +176551 s +176556 adv +adv +176562 s +176565 adv +176567 adv +o +176573 io +176576 adv +176580 adv +176586 o +176591 s +176593 p +apposition +176596 adv +176600 apposition +s +176606 adv +176610 adv +176612 o +176614 s +176618 adv +176621 apposition +o +176628 o2 +176630 s +176639 s +176643 o +176645 adv +176648 adv +176650 o +176660 adv +176663 adv +176666 s +176669 s +o +176674 s +v +adv +176680 s +176682 apposition +176688 o +s +176692 adv +adv +176701 o +176704 o +176706 adv +176709 adv +176717 adv +176719 o +176725 s +176729 o +176731 o +176733 s +176736 s +adv +176739 o +o +176742 adv +176746 o +176748 adv +s +176751 adv +176753 s +176757 s +176763 s +176769 adv +176776 s +176784 s +176792 o +s +176798 s +adv +176801 o +176805 io +176807 o +o +176812 io +o +176822 o +s +176826 adv +176833 adv +o +176838 adv +o +176843 s +176847 p +176853 s +176858 adv +adv +176863 o +176865 adv +176868 s +176874 p +176877 adv +176881 apposition +176883 adv +o +176890 adv +o +adv +176898 v +adv +176901 adv +s +176909 s +176911 o +176913 adv +176917 io +176924 s +o +176930 o +adv +176937 o +adv +176941 adv +176943 o +176948 o +176951 o +o +176954 adv +176962 adv +176964 s +adv +176968 s +176970 adv +176975 s +176977 apposition +176980 adv +176982 adv +176988 adv +176991 o +176995 o +176999 adv +177003 adv +177005 o +s +177008 o2 +177011 adv +adv +177014 o +177019 o +177024 o +177026 adv +177030 s +177032 o +177038 adv +177040 io +o +177043 s +o +s +177048 apposition +o +adv +177056 o +177068 s +177071 adv +177080 o +177086 adv +177092 v +177095 s +o +177098 o +177100 s +177103 apposition +177105 adv +177108 o +177112 adv +177114 o +177119 o +177121 p +177124 apposition +177126 adv +adv +177134 s +177139 adv +177142 io +177145 apposition +adv +s +177152 adv +177154 s +177162 adv +adv +177168 o +177171 p +177177 adv +adv +177181 adv +177185 o +p +177191 apposition +177193 adv +177197 o +177199 adv +adv +177204 adv +177208 apposition +177210 adv +177217 adv +adv +177225 s +adv +177229 adv +177231 o +177233 o +177236 s +177239 adv +177242 adv +177247 s +o +177251 s +177257 s +o +177260 adv +177262 adv +177264 adv +177270 o +177273 s +177275 adv +177279 s +177284 adv +177286 apposition +s +177291 io +177293 o +177301 o +177307 adv +177310 o +177316 o +177318 s +177320 adv +177329 adv +adv +177335 o +177337 adv +177339 adv +s +177343 o +177345 aux +apposition +177349 o +177351 adv +177364 o +177367 io +o +177372 o +adv +177382 adv +177387 s +177390 s +177394 adv +adv +o +177403 adv +o +177407 v +s +177412 o +177417 adv +177420 o +177423 adv +177430 s +177432 s +177435 adv +177445 s +177451 adv +s +177454 apposition +177458 adv +s +177463 adv +177473 s +177475 adv +o +adv +s +177487 adv +adv +177496 o +177503 s +apposition +177507 adv +o +o +177514 o +177519 adv +s +o +177524 adv +177526 adv +177529 adv +177533 adv +p +adv +adv +177544 s +177548 adv +177553 s +adv +adv +177561 adv +o +177567 o +adv +177572 s +177583 s +adv +adv +177594 v +adv +177599 adv +177605 s +177610 adv +177612 adv +177621 adv +177624 s +177628 adv +adv +adv +adv +177633 o +adv +177637 o +177640 apposition +177643 adv +177645 o +177649 s +177654 adv +adv +s +o +adv +o +o +177670 s +177673 o +p +177676 apposition +177682 s +o +177687 o +177689 s +177692 adv +177697 adv +177704 s +adv +o +177708 o +177710 o +o +o +177717 s +o +177723 o +177727 o +177733 o +177736 s +177741 s +p +177746 s +177752 adv +o +s +adv +o +s +p +177761 apposition +177765 adv +o +177776 adv +177781 s +adv +o +io +177786 o +177788 p +177795 adv +s +177798 io +o +177801 p +177804 p +177808 o +177812 o +177814 o +177817 apposition +177821 adv +177825 s +o +adv +177829 s +o +177832 adv +177836 adv +177841 s +adv +adv +177850 adv +o +177858 s +177860 p +177866 adv +o +177871 s +177875 s +adv +o +o +177882 s +adv +177885 s +177889 adv +o +177892 apposition +177896 v +s +177899 adv +177902 apposition +adv +177908 adv +s +o +adv +177916 s +adv +o +o +o +177926 o +177928 adv +s +177933 s +o +adv +177937 o +177941 s +adv +adv +177945 adv +o2 +177952 o +177956 s +adv +177959 o +177963 o +177968 s +adv +o +io +o +o +177976 o +adv +adv +177984 s +adv +177988 apposition +177991 o +177999 adv +o +178004 o +o +178007 aux +178013 o +178019 adv +o +178029 o2 +178032 o2 +178035 o +178042 o +178047 apposition +178049 adv +apposition +178054 adv +178056 o +178061 adv +178064 apposition +apposition +vc +p +178072 o +178083 o +178085 adv +adv +178092 p +178098 v +s +178104 aux +178110 adv +o +apposition +178114 adv +178117 adv +178122 s +178124 adv +178126 o +178130 o +178133 aux +178136 o +178139 adv +178141 adv +adv +178146 s +178148 adv +adv +adv +178152 o +178155 o +178159 s +178161 apposition +178163 adv +178173 s +178175 adv +178180 s +178182 adv +178185 adv +178190 adv +178192 s +adv +o +178200 apposition +vc +p +178205 aux +178208 aux +178211 adv +178215 s +178218 adv +o +178223 adv +178227 adv +adv +o +178235 adv +178239 s +adv +o +178245 s +178248 adv +adv +178255 s +178257 apposition +178259 adv +178261 adv +o +178264 o +s +178267 p +178271 s +178275 adv +apposition +p +s +178283 apposition +178286 apposition +178293 apposition +178295 adv +178297 p +178304 apposition +178306 adv +178314 p +apposition +178318 adv +s +178322 apposition +178324 apposition +apposition +s +apposition +v +o +178332 adv +adv +178337 o +178345 s +178350 adv +o +o +178357 adv +adv +178360 o +io +178366 adv +adv +adv +178371 adv +178373 apposition +v +adv +178378 adv +178385 s +178388 apposition +178391 apposition +o +178396 topic +s +s +178400 apposition +178403 apposition +178406 adv +178408 adv +178413 adv +adv +178417 adv +178420 s +178424 adv +o +o +adv +178435 adv +o +178438 s +178441 p +178446 adv +adv +178449 o +adv +178452 adv +o +178459 o +178462 o +178464 apposition +apposition +178475 p +178477 apposition +178483 io +178488 o +178492 adv +178501 adv +adv +178506 s +178511 adv +178516 adv +adv +io +178520 apposition +apposition +adv +o +178526 adv +io +178529 p +adv +178536 adv +adv +178542 adv +178546 adv +adv +s +178550 adv +178552 adv +adv +178556 adv +io +o +178563 adv +io +178568 o +178572 adv +178574 o +178576 o +178580 o +adv +adv +178585 o +io +178591 s +178598 s +178603 s +o +178609 adv +178613 adv +178615 o2 +178618 o +178620 adv +178623 adv +178632 s +178634 adv +178637 adv +178641 adv +178646 adv +o +178649 s +178652 o +adv +178660 o +178663 io +178669 adv +s +178673 adv +178677 adv +o +178690 o +adv +178695 adv +adv +178698 s +178700 adv +p +178703 adv +178705 adv +s +178708 aux +178711 o +178714 adv +178719 adv +178723 apposition +178725 s +178729 apposition +p +178735 p +178740 s +178745 adv +178747 adv +adv +178758 adv +178761 s +178764 v +adv +178772 adv +178775 adv +178780 adv +178783 adv +178787 adv +178789 adv +adv +178797 s +178801 v +adv +178808 s +adv +adv +178819 adv +178822 adv +178826 adv +s +o +178834 s +178838 s +178843 o +178848 s +178853 adv +178860 adv +178863 o +178865 adv +178868 adv +adv +178875 o +178878 adv +178880 apposition +178885 adv +adv +178890 adv +178893 o +adv +178897 adv +178900 o +178905 adv +178907 o +adv +178915 s +178917 adv +178923 adv +s +o +178927 p +apposition +178930 adv +178934 adv +178936 adv +178942 p +178946 o +adv +178949 adv +adv +178952 o +178955 apposition +adv +178963 v +s +o +178968 adv +178971 adv +178977 adv +o +178981 o +178983 adv +178989 v +178999 s +179004 adv +179010 adv +179013 s +apposition +179019 adv +adv +o +179023 adv +179025 apposition +adv +o +adv +179033 adv +179037 s +179039 adv +179041 adv +179045 apposition +adv +179049 io +179051 apposition +179056 s +179062 adv +adv +o +179066 adv +179068 s +p +179074 adv +179078 o +s +179084 s +o +179090 adv +179097 adv +179102 o +179109 p +179112 s +apposition +o +179117 apposition +179121 adv +179124 adv +179128 adv +179133 adv +179135 o +179142 adv +s +o +179146 s +adv +179150 s +179154 s +179158 p +179165 aux +apposition +179168 s +adv +179173 p +adv +apposition +179179 adv +179181 s +179185 o +179189 p +179192 adv +179198 adv +s +179204 adv +adv +179208 adv +179210 adv +adv +179215 adv +179220 o +179228 o +179231 s +179234 s +adv +179240 adv +s +179244 adv +179247 o +179249 p +adv +179253 p +s +179261 o +179263 s +179267 adv +179273 s +179277 adv +179281 adv +s +adv +179289 s +179291 o +179293 adv +179295 adv +179299 o +179302 s +179304 o +179307 s +179309 adv +179312 apposition +179316 adv +179324 adv +179326 s +179332 s +179335 s +179339 s +179341 adv +179344 p +179349 adv +179352 adv +179358 adv +179363 o +179366 o +179370 o +apposition +adv +io +179378 adv +179382 adv +179389 adv +adv +179394 adv +179401 io +s +179412 s +179417 o +179419 o +179421 adv +179428 adv +179434 adv +o +179438 adv +179446 adv +s +179449 o +179456 adv +o +179459 p +179462 s +apposition +adv +179469 io +179471 o +179474 o +179478 adv +adv +o +s +179490 s +179494 s +179498 adv +o +179504 adv +179510 adv +179515 s +179520 s +179523 adv +179526 adv +adv +179529 s +179531 adv +179533 s +179535 p +179540 s +apposition +179543 adv +179546 adv +o +s +apposition +179552 adv +179559 io +179563 o +adv +179567 apposition +179570 adv +179578 adv +179587 adv +179589 adv +179594 o +179597 apposition +apposition +adv +179601 apposition +179603 adv +179605 adv +adv +179608 o +adv +179612 adv +adv +179620 s +p +adv +179624 adv +adv +o +adv +179629 o +io +179632 adv +179635 adv +179640 apposition +adv +adv +adv +io +179646 adv +179650 adv +179652 o +179654 adv +179661 s +179666 p +179668 adv +179678 adv +179682 adv +179684 adv +s +179689 p +adv +adv +179695 adv +179697 adv +179703 s +adv +179716 apposition +adv +179720 p +179724 adv +adv +179728 apposition +179735 adv +179740 s +179746 o +179756 adv +179759 adv +179764 p +179767 apposition +adv +179772 o +179774 adv +179782 s +179785 s +179788 o +179792 s +o2 +179797 o +179799 apposition +p +179802 o +179804 s +apposition +p +adv +179812 o +o +179817 adv +179821 adv +179823 s +179825 adv +179827 o +179830 o +179832 adv +179835 adv +p +179845 adv +adv +179848 s +179850 s +adv +adv +179855 adv +179858 o +179862 apposition +179864 apposition +s +179870 adv +179873 o +179881 s +adv +179887 adv +adv +179891 apposition +179893 adv +179899 s +179902 adv +179905 adv +179907 adv +179911 s +o +179914 adv +adv +179921 s +adv +v +179925 o +adv +179929 adv +v +179933 adv +179939 s +adv +179944 s +179946 o +p +179949 adv +179951 adv +179954 adv +179961 s +179965 adv +179969 adv +adv +179973 io +179976 adv +179978 o +179980 s +179983 adv +179986 aux +179988 adv +179991 adv +179995 o +180004 o +p +180009 s +180011 p +180013 adv +o +180018 s +p +180023 v +adv +180028 s +adv +180033 o +180038 adv +180040 adv +180046 adv +180049 s +o +180052 adv +180054 adv +180059 adv +s +adv +180066 o +180069 o +180071 o +180073 adv +180076 adv +adv +180079 s +180081 o +180085 apposition +adv +180090 apposition +180101 v +s +180107 adv +180110 adv +180117 adv +180119 apposition +180121 o +180124 adv +180138 adv +180145 adv +180150 o +180152 s +180155 apposition +180160 p +adv +180163 adv +adv +adv +adv +180171 adv +180174 o +adv +adv +180178 adv +180184 adv +180186 adv +o +180190 adv +io +180194 o +180200 o +180206 adv +180216 s +180219 adv +180222 s +p +180227 s +180229 adv +adv +adv +180239 p +180243 adv +180249 o +180252 adv +180255 s +apposition +adv +180260 s +180266 adv +o +p +180270 o +180273 adv +180280 adv +adv +adv +180287 adv +180290 o +180292 adv +180294 adv +180304 s +180307 adv +180317 adv +180320 adv +s +180323 o +180327 s +180330 adv +180334 adv +o +180337 s +180340 o +180342 s +p +180350 o +180352 apposition +180357 adv +180360 adv +180363 v +180367 s +180369 o +180371 adv +180377 adv +180389 adv +180395 adv +180397 s +adv +180401 adv +180404 s +apposition +180407 adv +180413 adv +adv +180416 apposition +180418 s +adv +180421 apposition +180423 adv +180428 adv +180433 adv +o +180438 adv +180440 adv +180444 apposition +180446 s +180448 adv +180450 o +180452 o +180455 o +180461 s +180464 s +180470 s +adv +180474 s +adv +180480 s +o +180487 io +180490 adv +adv +o +180494 aux +o +adv +180503 o +180509 o +adv +o +o +adv +180515 o +180517 s +o +adv +180522 io +180526 s +180528 adv +180536 s +180539 o +180542 adv +180546 s +adv +adv +180553 adv +o +180556 s +180558 o +io +180563 s +180569 s +adv +180573 adv +o +180579 adv +o +o +adv +180588 s +180590 adv +o +s +180596 o +180603 adv +180610 s +180613 adv +180616 adv +180618 o +p +180621 adv +s +o +180628 s +180631 apposition +adv +o +180637 apposition +adv +180642 apposition +180644 s +180646 p +180649 adv +180651 o +180655 o +adv +180661 o +adv +180667 adv +o +180670 o +180674 s +180676 apposition +adv +adv +adv +180682 apposition +180689 apposition +o +s +o +adv +o +o +adv +180700 adv +180704 s +180708 s +180711 s +180713 s +180716 s +180719 adv +adv +adv +180724 adv +o +180727 p +180730 apposition +180732 adv +180736 s +v +adv +180740 adv +180744 p +180746 apposition +180748 apposition +180750 apposition +180752 apposition +180754 apposition +180756 apposition +180758 apposition +180760 apposition +180762 apposition +180764 apposition +180766 apposition +180768 apposition +180770 apposition +180772 apposition +180774 apposition +180776 apposition +180778 apposition +180780 apposition +180782 apposition +180784 apposition +180786 apposition +180788 apposition +180790 apposition +180792 apposition +180794 apposition +180796 apposition +180798 apposition +180800 apposition +180802 apposition +180804 apposition +180806 apposition +180808 apposition +180810 apposition +180812 apposition +180814 apposition +180816 apposition +180818 apposition +180820 apposition +180822 apposition +180824 apposition +180826 apposition +180828 apposition +180830 apposition +180832 apposition +180834 apposition +180836 apposition +180838 apposition +180840 apposition +180842 apposition +180844 apposition +180846 apposition +180848 apposition +180850 apposition +180852 apposition +180854 apposition +180856 apposition +180858 apposition +180860 apposition +180862 apposition +180864 apposition +180866 apposition +180868 apposition +180870 apposition +180872 apposition +180874 apposition +180876 apposition +180878 apposition +180880 apposition +180882 apposition +180884 apposition +180886 apposition +180888 apposition +180890 apposition +180892 apposition +180894 apposition +180896 apposition +180901 adv +180903 adv +180907 adv +180909 adv +180911 adv +adv +adv +180919 adv +180929 s +o2 +180933 p +180936 io +180938 o +180943 adv +s +o +o +180948 adv +180950 s +180954 adv +o +180959 adv +180964 s +o2 +180967 o +180979 io +180984 adv +180986 adv +180990 adv +s +o +o +180995 o +apposition +181000 o +181006 adv +181009 adv +181015 o +181018 p +181024 o +181027 io +181029 adv +adv +181036 adv +181038 adv +o +181044 adv +s +o +181048 o +o +apposition +181055 adv +o +s +adv +adv +181063 s +adv +181068 adv +181073 adv +181076 adv +181080 adv +181083 adv +adv +181089 adv +181091 apposition +v +181096 adv +181099 adv +181103 adv +181107 adv +181112 s +181117 adv +o +o +181121 apposition +v +o +o +s +p +adv +adv +adv +adv +181136 o +adv +181139 o +181144 adv +o +adv +io +181151 s +181156 v +181160 o +adv +o +181164 s +181166 adv +181176 adv +181181 apposition +181183 adv +181188 o +181190 p +181194 adv +o +o +181198 o +o +181201 o +o +adv +181205 adv +adv +181212 o +181214 o +181216 s +adv +181223 adv +o +181227 s +p +181231 adv +181235 s +adv +181242 s +p +181248 adv +181250 adv +181252 adv +181255 adv +181261 s +adv +181264 p +181266 apposition +181269 s +adv +181272 s +apposition +181278 s +181281 adv +181285 adv +adv +181290 adv +181294 apposition +adv +s +181298 adv +181303 adv +adv +181309 adv +181311 apposition +181316 v +adv +181322 adv +181325 adv +181327 p +s +181334 p +181336 s +181338 o +181342 adv +o +181347 p +181350 aux +181352 adv +181354 o2 +181357 p +181363 s +adv +o +181369 adv +181373 s +adv +adv +181377 adv +adv +181383 adv +181386 adv +adv +o +s +181391 adv +181394 adv +181397 io +181404 s +181406 adv +181413 adv +adv +181416 adv +181423 s +181425 v +adv +181429 adv +181434 adv +adv +o +181442 adv +181446 adv +s +s +181450 o +adv +adv +181456 adv +io +181459 o +181463 s +adv +adv +181469 o +181471 p +181477 adv +o +adv +181481 o +p +181488 adv +adv +181496 s +181499 adv +181502 adv +181504 adv +181508 adv +adv +181511 s +io +181515 o +181518 adv +181520 adv +181524 v +adv +181533 adv +181537 s +181540 o +181546 v +adv +181552 o +s +adv +181559 s +adv +adv +o +181567 adv +adv +181572 apposition +o +adv +181578 adv +adv +181581 o +181587 o +181589 adv +181591 o +181593 adv +181597 o +181599 adv +181603 adv +o +181607 adv +adv +181612 adv +181615 o +181620 adv +o +181625 s +181630 io +181635 adv +181637 adv +181644 o +181646 adv +181651 adv +s +adv +181655 adv +o +adv +adv +181660 p +181666 o +181671 adv +181676 apposition +181679 o +181684 apposition +apposition +adv +181690 adv +181692 s +o +181696 adv +181698 v +181702 adv +o +adv +181706 adv +181712 adv +181715 p +181720 aux +s +181725 adv +o +adv +adv +adv +o +181735 o +181739 adv +o +adv +o +o +181747 s +adv +181753 o +181757 adv +io +181761 adv +181764 adv +181766 adv +181772 s +181777 s +adv +181782 adv +181789 v +adv +181798 adv +181804 v +181807 v +s +181811 apposition +v +adv +181823 s +adv +181831 adv +o +apposition +v +181837 o +181841 adv +181845 adv +o +adv +181849 adv +adv +181852 adv +181854 adv +181856 adv +181858 adv +181863 adv +o +181866 o +181868 s +181873 o +s +181878 adv +o +s +apposition +o +181884 o +181887 s +181892 s +adv +o +181896 adv +adv +o +181900 adv +181903 o +181907 o +s +181912 o +181919 o +181921 s +181924 adv +181926 adv +181929 io +181931 o +o +181936 adv +o +181939 adv +181945 adv +adv +adv +o +adv +adv +181953 adv +o +181962 o +181965 adv +o +181972 adv +181976 o +s +181979 adv +181983 o +181987 adv +adv +181992 o +adv +181999 s +182004 apposition +v +adv +182010 s +182015 adv +182018 adv +o +adv +adv +182025 v +182030 adv +s +adv +o +182035 o +s +182039 s +182044 adv +182046 adv +182050 adv +o +182055 s +182060 s +182065 s +v +182071 s +adv +o +182075 o +o +s +182080 adv +182082 s +p +182090 adv +182092 adv +s +adv +182100 o +adv +o +182104 adv +adv +182107 adv +182112 adv +182116 o +182119 adv +s +182122 apposition +182128 o +adv +182137 s +182140 o +182146 s +182150 s +adv +182157 adv +182160 o +s +182166 s +adv +adv +182171 v +182173 s +182175 o +adv +adv +182181 s +182183 o +o +adv +182189 adv +adv +s +o +o +apposition +adv +182197 s +182201 p +adv +182205 adv +182211 adv +o +182217 io +182219 apposition +adv +s +182223 s +182228 o +p +182231 s +182238 s +182240 adv +182242 adv +182251 s +182260 s +182266 adv +182270 o +182275 o +182279 io +182281 apposition +182283 o +o +182288 adv +182293 adv +182297 s +adv +o +adv +182302 adv +s +182315 adv +o +o +o +182326 s +182334 adv +adv +182337 io +182342 s +adv +182346 adv +182348 adv +182351 v +adv +182363 o +182367 adv +o +182370 apposition +o2 +apposition +182374 apposition +182377 apposition +182389 apposition +182396 apposition +182401 adv +adv +adv +182407 s +182427 apposition +adv +182432 adv +182438 s +182440 adv +182446 s +182448 o +182452 adv +182458 adv +o +182461 adv +182464 o +182466 s +182469 s +182474 s +182476 adv +182480 s +182482 adv +182490 s +182499 o +182501 adv +182503 adv +182511 adv +182518 s +182520 adv +182525 adv +182527 io +s +182533 io +apposition +adv +182537 o +182542 aux +182544 adv +182550 aux +182562 s +182566 adv +182568 io +s +182574 io +apposition +182577 o +182579 o +182582 io +182585 o +182588 adv +182594 io +182596 adv +182598 o +182602 adv +182605 o +182607 o +182612 io +182616 adv +182619 o +182623 adv +182625 o +182627 s +182632 adv +182634 o +182636 s +182639 s +182641 o +182647 adv +182649 o +182651 s +182653 s +182655 o +182662 adv +182664 o +182666 s +o +182669 s +182672 o +182678 o +182684 adv +182689 s +182693 p +182696 adv +182702 adv +182704 s +182712 adv +182719 adv +182732 o +182738 adv +182744 s +adv +182749 o +182753 o +182757 adv +182761 p +182765 s +182767 p +182774 o +182776 apposition +182784 o +182786 apposition +182792 o +io +182795 o +182797 o +o +182800 apposition +182804 adv +o +182814 o +adv +182820 adv +o +182823 apposition +182833 v +s +o +182838 s +o +182843 s +adv +182851 adv +182854 adv +182859 s +182861 adv +182866 o +182869 s +adv +182872 o +182875 adv +182877 s +182883 o2 +182888 o +182892 aux +182896 adv +182899 o +182903 o +182906 adv +182909 apposition +182915 adv +182923 s +o +182928 o +adv +182935 s +182940 adv +182942 adv +182944 adv +apposition +182947 s +182952 s +182960 o +182963 adv +182968 adv +182972 s +182974 adv +o +adv +182980 adv +adv +182983 adv +o +182986 adv +adv +182989 adv +o +182995 adv +adv +182998 adv +adv +183002 s +183006 o +183010 o +183014 s +adv +183020 adv +adv +183024 s +adv +o +183031 o +183033 adv +183039 adv +adv +183047 s +183053 s +p +183057 adv +183059 adv +183064 o +183078 io +183087 adv +s +183091 adv +io +183095 o +o +adv +183099 o +183103 adv +adv +183106 s +183108 o +s +183114 adv +183118 adv +183123 s +183133 adv +183140 s +183150 s +183153 p +183158 adv +s +adv +183163 o +183169 adv +o +183173 s +183177 o +183179 o +183185 s +183188 o +183191 io +183199 o +adv +o +183204 s +adv +183209 s +o +183215 s +183219 adv +183229 s +183231 adv +183236 adv +o +183241 s +adv +183244 adv +o +183247 p +183254 adv +adv +s +o +s +apposition +adv +adv +o +183264 p +183271 adv +183274 adv +183281 io +o +183286 adv +o +adv +o +v +183306 s +183308 adv +183312 adv +s +183315 o +adv +183318 adv +o +183321 adv +adv +183325 o +183327 adv +183331 adv +o +o +183335 adv +183339 s +183345 p +183350 adv +o +183355 o +183358 o +183360 p +adv +adv +o +183365 adv +183367 adv +o +183370 adv +183373 o +adv +183379 s +183388 s +183393 adv +o +adv +adv +183401 s +183405 o +183408 adv +adv +adv +183415 o +183423 adv +183425 apposition +183428 adv +183431 apposition +adv +183445 s +apposition +adv +183453 o +183457 s +183460 adv +183466 o +183469 p +183471 apposition +183479 s +adv +183487 s +183489 o +183491 adv +183495 adv +adv +183504 aux +s +apposition +adv +183512 adv +o +183515 adv +183519 adv +183521 o +183524 adv +183527 adv +o +adv +o +183534 adv +183540 o +183544 adv +183548 adv +s +183551 apposition +183553 adv +adv +o +183561 o +p +183564 s +183566 apposition +183572 adv +s +adv +o +183577 o +183586 o +183589 s +p +apposition +183593 s +o +183597 s +183600 o +183604 s +183607 adv +o +o +183611 o +183615 o +183619 adv +adv +183622 io +o +o +183629 adv +183634 adv +183638 adv +o +183643 adv +183650 adv +183652 o +o +183658 o +183662 o +183666 adv +adv +183669 s +183678 s +183682 o +s +183688 s +183690 o +adv +o +adv +o +183698 adv +183700 o +s +183703 o +adv +183709 adv +183714 adv +183717 adv +v +183720 o +183725 p +s +183732 apposition +v +adv +183738 apposition +183741 apposition +183743 apposition +adv +s +183748 apposition +183750 apposition +183755 apposition +adv +183764 s +183767 s +183769 adv +183771 adv +o +s +183775 adv +183777 o +183783 adv +183786 adv +183792 s +183799 adv +183803 adv +adv +183811 adv +183816 adv +s +183822 adv +183828 adv +o +183832 adv +o +s +183836 adv +183840 s +183842 o +s +183848 o +183850 s +o +183858 io +adv +adv +183863 adv +183866 adv +183870 s +183873 s +p +183881 s +183884 p +183889 s +183892 o +adv +183898 adv +183903 s +183906 p +adv +183909 adv +o +183913 o +183915 adv +183918 adv +183925 aux +183927 adv +183929 p +183933 adv +183939 adv +183946 aux +183950 p +183952 adv +adv +183957 o +183960 adv +183966 adv +183969 adv +183972 adv +adv +183975 s +183977 o +183982 s +apposition +183986 s +apposition +183989 adv +183992 adv +183996 o +184006 adv +184008 s +184010 o +adv +184016 adv +s +184024 o +adv +184030 o +s +184037 adv +o +184042 adv +adv +o +184046 aux +184050 p +184052 o +184055 v +184061 adv +184068 adv +184071 s +184075 adv +o +adv +184093 s +adv +184104 adv +adv +o +184114 adv +o +184130 o +s +184136 adv +adv +adv +adv +184145 io +184155 adv +184160 apposition +p +184166 adv +adv +184169 s +184179 adv +184183 adv +184186 adv +184192 adv +o +adv +184197 adv +o +184200 p +184203 aux +apposition +184207 apposition +184209 o +184213 io +184216 o +adv +184223 adv +184226 adv +184228 adv +184231 adv +o +adv +184235 adv +184240 s +o +184246 o +184249 s +adv +184254 o +184256 o +adv +184262 s +184266 adv +184271 o +184273 o +adv +184282 s +adv +adv +184286 adv +184291 s +adv +184294 adv +184302 s +184304 adv +o +184309 adv +184320 adv +o +184325 adv +184329 o +s +184332 apposition +adv +s +adv +184339 adv +184348 s +184350 o +s +184356 s +184362 o +adv +adv +184366 adv +184370 adv +adv +184375 s +184377 apposition +adv +s +o2 +p +184385 adv +o +184388 adv +184393 o +s +184398 adv +adv +184402 o +s +184408 adv +184411 s +s +184415 v +184420 s +apposition +184424 p +184428 adv +adv +184432 o +adv +184436 adv +184439 s +184448 adv +184451 s +184456 s +184459 p +184461 adv +184463 apposition +o +adv +adv +o +184473 s +184480 s +o +s +184487 topic +s +o +184492 s +184498 s +o +184503 o +adv +184509 s +adv +adv +184513 adv +184517 adv +o +adv +184521 adv +184529 o +184531 s +184533 o +adv +184537 adv +adv +184540 adv +o +184544 s +184547 o +184551 s +adv +o +184562 adv +adv +184565 o +adv +adv +184569 o +184581 v +184586 o +184594 adv +o +184600 adv +o +184603 adv +o +184606 aux +184612 s +184618 o +s +184623 s +184628 o +o +184635 adv +o +o +184639 adv +184647 adv +184649 o +184657 adv +o +184661 adv +184663 apposition +184674 adv +184681 adv +184692 adv +adv +184696 o +adv +184700 adv +184706 adv +adv +184709 adv +v +184716 s +apposition +o +184723 adv +184727 adv +o +184730 adv +184733 adv +o +184738 o +184740 s +apposition +184746 o +184750 s +apposition +adv +184756 o +184760 adv +s +o +184766 adv +adv +adv +184774 s +adv +184780 adv +adv +184787 o +184789 o +184793 s +o +184798 adv +s +o +184802 o +adv +184806 adv +adv +184816 p +184821 adv +o +o +184827 o +184832 s +184839 adv +adv +184847 p +184851 adv +184854 o +adv +184868 adv +o +184875 adv +adv +184882 io +adv +io +184894 s +184897 apposition +184902 o +adv +184906 v +adv +184909 s +184912 adv +o +o +s +184919 adv +o +184922 o +apposition +184928 o +184930 s +184936 adv +184938 o +184942 adv +o +p +184950 adv +o +adv +adv +184955 s +184957 s +184962 adv +184971 adv +184976 adv +o +184980 o +adv +184986 o +184988 adv +184994 s +184996 o +o +185002 adv +185004 o +185006 adv +185010 adv +185012 o +185016 v +185023 o +185027 o +185029 s +185034 adv +185046 o +s +185051 apposition +adv +adv +185056 o +185063 adv +185066 adv +185070 adv +o +185074 adv +185076 adv +185080 adv +adv +185085 s +185091 s +185093 adv +185097 s +adv +p +185101 adv +adv +adv +o +185107 apposition +o +adv +185113 s +185118 v +185122 adv +o +185130 apposition +185136 adv +185139 adv +185141 s +adv +185144 o +185147 s +185151 o +185158 adv +o +185163 topic +185170 adv +185173 adv +185178 adv +185180 adv +o +p +185185 apposition +185187 o +185191 adv +185194 s +185201 adv +185204 o +185210 adv +185214 adv +185217 s +185221 s +185224 adv +o +185228 o2 +adv +185232 adv +185241 adv +185244 adv +adv +185250 o +185252 o +185259 adv +s +o +185264 aux +185270 adv +p +185275 o +185283 s +185290 s +o +185296 o +185299 io +185304 adv +185312 adv +185316 adv +185319 o +adv +185323 o +185325 adv +185327 s +185330 o +adv +185338 o +185342 v +adv +adv +185348 o +adv +185355 adv +s +apposition +185360 s +185365 s +adv +o +185371 adv +adv +185375 apposition +apposition +185378 s +185380 o +185382 adv +185387 s +185389 o +185393 aux +185395 adv +185400 adv +s +o +185406 o +adv +185414 adv +185418 adv +o +185423 s +p +p +185430 adv +185433 s +185440 o +adv +185443 adv +185446 adv +185451 adv +adv +185454 adv +185459 adv +185461 s +185463 v +adv +185468 adv +s +185471 apposition +185473 o +185477 o +185479 adv +185486 adv +185490 adv +185496 adv +185499 adv +o +adv +185506 s +o +185510 s +185513 s +185518 s +185521 o +o +185526 adv +o +185531 o +o +adv +o +185539 o +185541 o +s +o +185547 adv +o +185554 s +o +185560 o +o +185568 adv +s +o +adv +185573 o +adv +185577 adv +185579 adv +185586 adv +s +o +185591 adv +adv +185594 adv +185599 apposition +o +185604 adv +o +185608 s +185611 s +185615 o +185618 adv +185620 adv +185627 adv +185629 adv +185639 adv +185646 adv +185650 io +185655 adv +185657 s +adv +s +185665 adv +185670 adv +185673 adv +v +185676 o +185680 s +adv +185685 adv +185694 adv +185700 o +185704 o +185709 o +adv +s +185720 adv +185725 adv +adv +185729 o +185731 o +185734 apposition +185736 adv +185739 adv +185743 o +185745 s +185750 adv +185753 adv +185758 adv +185766 adv +185768 adv +185770 adv +185773 s +185775 apposition +185777 adv +185779 adv +adv +185787 adv +185789 adv +185798 adv +185801 adv +185806 s +185810 s +185815 s +185817 o +185822 s +adv +adv +o +185827 s +185829 adv +185835 o +o +s +adv +185840 adv +185845 o +adv +185848 adv +185860 adv +185866 adv +185869 s +185875 s +185877 adv +185882 adv +185885 adv +185890 o +185895 aux +apposition +185904 adv +185909 o +185912 aux +185915 adv +185918 adv +185923 o +185926 s +185929 s +185933 s +185936 s +185941 o +s +185946 adv +adv +185949 adv +o +185952 s +185954 apposition +185956 o +185959 adv +185963 s +185966 o +o +185973 o +185979 s +adv +adv +o +185984 adv +o +185989 adv +o +adv +185993 o +185997 adv +o +186000 o +apposition +186003 adv +186025 o +186027 adv +186032 o +o +186040 adv +o +adv +186044 adv +186046 p +186049 adv +s +o +186053 s +adv +186059 adv +adv +186064 adv +186069 adv +s +adv +186076 adv +186080 s +adv +186083 adv +186091 s +adv +adv +186096 adv +186100 adv +o +186103 adv +o +186109 adv +adv +186113 adv +186120 adv +186122 adv +o +io +186127 o +186131 o +apposition +186134 adv +186139 s +s +186143 p +186146 adv +186152 s +186154 o +adv +186159 s +o +186167 adv +186170 adv +186175 s +186178 adv +186183 s +186186 apposition +adv +adv +186192 o +186197 s +adv +186203 adv +o +186207 o +186209 s +186211 o +s +186215 o +186220 adv +s +o2 +186229 v +186231 adv +186235 s +186240 o +186242 adv +186246 o +adv +186250 v +adv +186256 s +186259 adv +o +186262 o +adv +186265 s +o +186271 o +186275 o +186278 s +186281 s +186285 o +186289 adv +186295 o +186299 s +io +186305 adv +186309 adv +o +186312 s +186316 adv +186319 o +186321 o +adv +186325 s +adv +adv +186330 o +186333 adv +o +186338 s +186341 s +186343 adv +p +186347 o +adv +186351 o +186354 adv +adv +186358 p +186361 adv +186364 adv +o +186368 o2 +186385 s +186390 s +186394 io +186400 o +186403 apposition +s +o +186407 adv +186410 o +186416 adv +o +o +io +186422 adv +s +186425 apposition +186427 o +io +186434 v +186443 s +186445 s +186449 s +186453 s +186455 o +adv +186458 apposition +186461 o +186465 adv +o +186468 adv +186472 adv +o +186475 o +186477 s +186480 adv +186483 adv +186490 s +186492 adv +186494 s +186498 o +adv +o +186504 adv +186506 adv +o +s +186510 adv +186513 adv +p +186518 adv +186520 adv +186522 o +186524 adv +s +186530 adv +186532 s +adv +o +186536 p +s +186545 s +adv +186549 o +o +186552 adv +186555 o +186560 s +186562 p +p +186566 s +186568 adv +186573 s +186575 adv +186579 adv +186581 adv +186584 adv +o +adv +186590 apposition +186594 adv +o +186605 o +186611 adv +186614 s +186618 adv +186622 o +adv +186626 adv +s +186631 o +s +186635 apposition +186639 apposition +186643 adv +186645 s +186648 o +186657 s +186659 o +o +186663 s +186665 p +186670 adv +186672 s +186678 adv +186680 s +186684 adv +186691 s +adv +186694 adv +186703 adv +186707 adv +o +186712 s +186718 s +adv +186721 adv +186728 adv +186733 s +186738 adv +adv +186742 adv +186745 o +186747 adv +186751 s +186753 o +186756 s +186759 p +186763 adv +186765 s +186767 s +186774 adv +186776 s +186785 s +186787 apposition +186792 adv +186794 s +186797 adv +o +186800 p +adv +186804 s +adv +186809 adv +186812 adv +186814 adv +186818 adv +186822 s +adv +adv +186826 adv +186831 s +adv +o +186835 s +apposition +o +186845 s +186847 o +186853 s +186855 o +o +186862 o +186869 io +apposition +adv +186874 o +186882 adv +186891 s +186897 io +apposition +186901 o +186917 p +186923 s +186925 apposition +186930 adv +s +186933 o +186935 adv +o +186940 o +io +186943 apposition +adv +186947 o +o2 +186951 adv +186954 o +186957 adv +186960 o +186965 s +186974 adv +186986 adv +s +186991 o +186993 adv +o +186997 o2 +186999 adv +v +187004 s +187009 apposition +187011 adv +187013 adv +187016 adv +187022 apposition +187024 adv +187032 o +adv +187038 io +apposition +adv +187042 o +187045 o +187049 o +187055 s +187059 o +187063 adv +adv +adv +adv +187071 adv +adv +s +187076 adv +187078 o +adv +187082 o +adv +187087 apposition +187092 s +187095 apposition +187098 apposition +187100 adv +187103 s +adv +187106 adv +187110 s +adv +187113 adv +187115 adv +187120 io +apposition +187123 o +adv +187128 o +187131 adv +o +o +187137 o +187140 o +187142 adv +187145 adv +adv +187151 o +187155 s +adv +187160 s +187162 v +adv +187168 s +187178 adv +187182 apposition +187184 aux +187187 adv +adv +187190 s +187194 adv +adv +187202 s +187204 adv +187206 adv +187214 aux +187216 adv +187223 io +187225 adv +187233 adv +187241 o +187250 s +187252 adv +187255 o2 +s +187260 s +187263 o +187265 io +187267 o +adv +o +187273 o +187275 o2 +187282 adv +o +187288 adv +187292 adv +187295 s +187297 p +187303 adv +adv +o +s +187313 adv +adv +o +187319 o +o +187325 o +187331 o +187337 o +187345 io +187347 o +187349 o +187352 adv +187354 apposition +187362 s +o +187366 adv +187368 o +187370 adv +187373 s +187376 s +187381 adv +187385 adv +187388 o +adv +o +187392 adv +o +187396 adv +o +187402 s +adv +187406 s +adv +187411 o +adv +187418 adv +s +187423 s +187426 adv +adv +187431 s +187433 adv +o +adv +187441 adv +187443 adv +187447 o +o +v +187455 o +187457 adv +187463 s +187469 o +187472 adv +187476 adv +s +187479 adv +187484 s +o +187494 o +s +187501 s +187503 o +187509 o +187516 aux +187518 adv +187520 s +187522 o +o +187527 o +187534 o +187542 apposition +187550 s +187553 s +187561 s +187563 p +187566 s +p +187570 adv +187572 o +187575 adv +187577 adv +187579 apposition +187585 s +187588 apposition +o +adv +s +187595 adv +187602 adv +187608 adv +187621 adv +187625 s +o +adv +s +187631 o +s +187637 s +187640 adv +adv +s +187648 s +o +187652 adv +o +187657 adv +187661 s +adv +187664 s +187669 apposition +s +adv +187674 adv +187676 adv +o +187680 s +187683 apposition +o +adv +s +187690 o +187692 adv +187703 s +187705 adv +187708 o +s +187711 o +187714 o +187716 o +187721 v +187727 s +187731 adv +187734 apposition +187738 apposition +187744 o +187746 adv +187751 s +187754 apposition +187757 o +187763 v +187765 adv +187771 s +187776 o +187782 aux +187784 adv +187787 adv +187791 adv +adv +187796 adv +187802 adv +187805 adv +187809 o +187811 adv +adv +187816 o +187825 v +adv +187828 s +187831 apposition +187833 adv +187836 adv +187840 adv +187843 adv +187846 adv +187849 adv +187853 adv +187858 adv +187863 io +187865 o +187869 o +adv +187872 o +187883 o +187891 o +o +187900 o +187905 adv +187907 o +187912 adv +187914 adv +187917 adv +adv +187920 adv +adv +187924 adv +187928 s +io +187932 s +adv +187936 o +187938 adv +187941 o +187947 adv +187950 adv +adv +187954 apposition +o +187957 adv +187963 adv +o +o +187967 s +187969 adv +187972 adv +187978 adv +187980 adv +187986 aux +187990 apposition +187992 adv +s +187999 o +188001 adv +188005 apposition +188010 adv +188012 adv +188017 o +188022 adv +adv +188029 adv +adv +188036 adv +188038 o +188042 adv +adv +188045 adv +adv +188055 adv +o +188061 adv +o +188064 adv +188067 adv +188070 adv +188078 adv +188083 adv +188088 v +adv +188092 adv +188098 aux +188100 o +adv +188106 p +188109 o +adv +188116 adv +s +188120 o +188122 adv +188128 o +188134 o +188138 adv +s +adv +o +188143 adv +s +io +adv +188149 s +adv +adv +s +188156 adv +adv +188160 adv +188167 s +188170 o +188174 s +adv +o +188181 adv +188185 adv +188189 o +s +s +188194 p +apposition +s +adv +188200 adv +188203 adv +188210 adv +s +188216 s +188218 adv +188222 apposition +188224 adv +188228 o +188230 s +188237 adv +188239 apposition +188241 adv +adv +188248 adv +188251 s +188254 adv +188260 o +o +188266 adv +apposition +adv +adv +188272 adv +188277 adv +188280 adv +188284 adv +188288 o +188291 s +188296 adv +o +188299 adv +adv +188305 o +188307 o +188313 adv +188318 s +188321 o +188324 o +188328 o +adv +o +188334 adv +o +o +188339 o +o +188343 adv +188348 adv +188354 adv +o +188357 o +188359 adv +188361 aux +188365 s +188371 adv +188373 o +188375 s +188381 adv +188391 adv +188401 adv +188409 s +apposition +188413 s +apposition +188417 adv +188420 s +adv +o +188424 v +188428 o +188432 o +adv +io +188436 o +188438 v +188442 adv +188446 adv +188450 s +adv +188456 adv +188458 s +adv +188466 aux +188469 o +188472 o +188474 adv +188477 o +o +188480 adv +adv +o +188484 adv +188490 s +188495 o +188497 adv +188503 o +p +s +188507 adv +188513 adv +188516 adv +188522 adv +188525 v +188529 s +188531 p +188535 adv +s +adv +188541 adv +o +188544 s +adv +188555 adv +188561 adv +o +188564 s +188568 adv +188572 adv +188578 o +adv +188583 adv +188586 adv +o +o +adv +adv +o +188595 adv +adv +188598 adv +188603 s +v +adv +188608 adv +s +188611 o +188613 o +188616 adv +o +o +188627 adv +adv +188636 s +188639 o +188642 adv +188650 s +188655 s +188660 io +188663 o +188667 o +188670 o +188683 s +188692 o +188697 adv +188699 o +188702 adv +188709 s +188712 adv +o +s +adv +188722 o +188725 s +o +188731 o +188733 adv +188736 adv +io +188739 o +188746 adv +o +188750 s +o +188756 adv +adv +188759 o +o +188764 o +188767 o +188771 adv +188773 o +o +188778 o +188782 adv +o +188787 adv +s +io +188793 adv +s +io +188797 o +188799 adv +188807 o +188815 s +o +188819 s +188825 s +adv +188828 o +188830 adv +188836 o +adv +188839 s +188844 o +188846 s +188850 apposition +188852 o +188858 s +188861 adv +adv +o +188867 adv +188870 o +188890 o +p +188894 s +188896 o +188900 adv +o +p +188908 s +188910 adv +o +adv +o +o +188916 adv +188923 o +188925 s +188928 o +adv +adv +188933 s +188935 o +188938 o +188943 s +adv +adv +adv +adv +adv +o +188951 adv +adv +188954 o +188956 adv +188958 adv +188967 adv +o +188973 s +188976 apposition +o +188980 o +p +188985 s +188989 adv +188991 s +188993 adv +188996 adv +189005 s +189007 adv +189011 v +s +189017 adv +189021 s +189026 adv +adv +189035 adv +o +189038 adv +o +189041 aux +189047 o +189050 o +189054 o +189056 adv +189060 adv +189063 adv +189069 adv +adv +189073 adv +189076 adv +adv +189079 o +189083 adv +o +189088 o +189091 apposition +189095 adv +189098 p +189100 adv +189106 adv +189110 apposition +o +189116 aux +189119 o +189122 o +189128 o +189131 adv +189136 adv +o +189140 adv +o +189145 o +189147 apposition +189152 o +adv +189157 adv +189164 o +s +o +189170 s +189172 io +o +189175 o +189183 o +189188 adv +189191 adv +s +189194 adv +189198 o +189200 adv +189207 s +adv +189213 o +189218 adv +io +189226 adv +189229 adv +189234 o +o +189237 adv +189240 apposition +s +189247 adv +adv +o +189251 s +189260 adv +adv +189266 o +189270 adv +189276 adv +p +o +189282 o +189288 adv +adv +189298 s +189304 adv +adv +189313 s +o +189317 adv +189323 adv +p +189328 s +adv +189332 o +189336 o +189343 adv +189348 adv +189354 o +189360 adv +189365 s +189372 v +189378 o +189382 s +189386 p +189393 adv +adv +189396 o +189400 adv +o +189403 o +189408 adv +189411 s +189415 s +189417 o +189420 adv +189422 o2 +189429 o +189433 s +189435 adv +189439 adv +io +o +189444 adv +189447 adv +189449 o +189453 adv +189459 adv +189461 s +189465 apposition +189467 o +189469 adv +o +189475 o +189478 p +189481 s +189486 s +189490 adv +189494 s +189507 adv +189510 o +o +s +189516 adv +189518 o +189524 adv +o +adv +o2 +189529 o +189535 o +189539 adv +s +o +189545 s +189547 o +adv +189552 o +189554 o +189557 o +adv +189560 adv +189562 adv +189564 adv +189570 adv +o +189577 io +o +io +189585 o +189590 o +189592 o +189596 adv +189599 adv +189605 o +189609 o +189611 o +189619 s +o +189623 o +189627 s +189631 adv +189635 adv +189638 apposition +189642 o2 +189644 adv +189650 adv +189652 adv +189658 s +189661 adv +189665 s +189668 adv +189675 adv +189679 o +189685 adv +189688 o +189692 s +o +o +189700 o +189703 o +189709 o +189712 o +189720 o +s +adv +189728 o +189731 p +189733 adv +189737 s +o +189742 s +189745 adv +189749 s +189753 p +189757 adv +s +189763 adv +189768 s +s +189775 s +189781 s +189785 o +189791 s +189793 o +adv +189799 s +189802 o +189804 adv +adv +189809 s +189812 adv +189815 adv +189819 o +adv +189823 adv +189830 s +189832 adv +o +189838 s +189840 s +189843 adv +189845 adv +189852 s +189860 adv +189862 adv +o +189865 adv +adv +adv +189870 o +189877 adv +o +189880 aux +189884 adv +189887 o +189893 o +189897 adv +189903 o +189905 o +189908 o +189910 adv +189915 o +189925 adv +189927 adv +189930 s +adv +189934 s +189936 o +adv +189940 adv +189944 adv +189952 adv +189959 o +189962 adv +189964 s +adv +189973 o +189975 o +189982 o +189985 aux +189987 adv +189989 adv +adv +189994 o +189997 o +190001 adv +190003 adv +190007 adv +190010 o +190012 s +190014 s +190017 io +adv +190022 adv +190025 s +adv +190031 adv +190036 o +190046 s +190050 o +190060 adv +adv +190064 adv +adv +o +190071 s +io +o +190077 s +o +190081 o +190087 io +190089 o +190093 adv +190102 s +190107 o +190112 apposition +adv +adv +adv +190117 adv +190121 o +190127 adv +adv +190135 adv +v +190141 io +adv +190144 o +190148 s +adv +190151 o +190154 o +190156 p +adv +o +o +190164 adv +190167 adv +190170 adv +190179 adv +190182 s +190185 apposition +190188 adv +o +190197 adv +o +adv +io +190205 adv +190213 s +190215 adv +o +190218 adv +adv +190221 o +190224 adv +adv +190228 adv +190235 adv +s +o +190241 s +190244 s +190246 s +adv +io +adv +190251 s +190256 o +190258 adv +190260 s +190266 adv +adv +190269 o +s +190275 o +190278 s +190281 adv +190284 o +190290 s +190293 p +190297 adv +190299 o +190303 o +o +190316 o +190318 aux +190320 aux +190328 adv +190330 s +adv +adv +190340 s +190343 adv +190349 s +190353 adv +190359 adv +190361 adv +190364 adv +190374 v +190379 adv +190381 adv +adv +190387 s +190393 adv +190407 adv +adv +adv +190411 o +190413 adv +190418 p +190420 s +adv +s +190428 adv +190431 s +190433 p +190437 s +190439 p +190441 adv +190444 s +190446 adv +190450 o +190455 s +190457 o +o +190462 s +190466 o +190468 adv +190470 p +190474 s +190477 s +190480 v +adv +190483 apposition +190485 s +190488 s +190492 adv +o +190498 o +190500 s +190502 s +190507 adv +190510 s +190514 adv +o +s +p +190519 adv +190521 o +190528 p +190533 adv +adv +o +adv +190543 adv +190546 adv +adv +o +190552 o +190558 adv +190561 s +190563 adv +190565 adv +adv +190570 s +o +o +s +190582 s +o +190588 apposition +190590 adv +190594 adv +190597 o +190599 o +190601 adv +190606 s +190611 o +adv +190617 adv +190623 adv +o +190628 o +o +190633 s +adv +190636 adv +o +190639 s +190642 s +190645 s +adv +adv +o +190650 aux +adv +190653 p +190656 s +190659 p +190663 s +190669 adv +190671 o +190677 s +adv +o +o +adv +190685 o +190687 adv +o +190690 aux +io +apposition +190695 o +190697 adv +adv +190701 adv +190705 s +190710 s +190715 o +190717 adv +190722 adv +s +190727 s +adv +o +190732 o +s +adv +190739 p +s +190746 adv +s +190749 adv +o +190754 adv +adv +190759 s +adv +o +190763 aux +adv +o +190769 s +o2 +190772 o2 +190776 s +apposition +190779 o +o +190786 o +190794 o +o +adv +190800 adv +s +o +apposition +190807 o +190813 adv +190823 adv +190829 adv +s +o +190833 adv +s +190836 o +adv +190844 s +adv +190849 adv +190856 s +190858 adv +190860 o +190864 o +s +190868 adv +190873 s +o +adv +o +190880 o +190882 adv +190884 s +190886 o +190891 adv +190895 apposition +190897 adv +190902 adv +190905 apposition +190907 o +190911 adv +o +adv +o +190916 adv +190919 s +190922 adv +190924 adv +190927 adv +190932 io +190941 adv +190944 adv +190951 o +190954 s +190956 adv +190959 o +190965 adv +190968 adv +190970 s +adv +190973 adv +190977 adv +o +o +190983 o +190985 s +apposition +190990 adv +o +190993 aux +apposition +190998 s +191000 o +191005 adv +o +191008 aux +191012 adv +s +o +adv +191021 o +o +191026 o +191032 s +o +191036 s +191044 adv +o +191049 s +191051 adv +io +191056 adv +adv +191062 s +191073 o +o +191078 adv +191080 adv +191082 adv +191086 adv +adv +191089 adv +adv +191092 adv +191094 o +191100 adv +191103 adv +s +adv +o +191109 adv +191112 s +adv +191120 adv +191123 adv +191127 adv +adv +o +191131 adv +191133 adv +191137 adv +adv +191140 o +191143 o +191148 io +191157 adv +s +adv +191161 p +191163 adv +191165 s +p +191170 s +191173 adv +v +191176 o +191183 adv +adv +191188 p +191191 o +191193 s +191196 o +191200 o +s +191203 adv +191205 adv +191213 adv +o +191216 o +191219 adv +o +adv +191227 s +191231 adv +adv +o +o +adv +191240 adv +191243 adv +o +191247 o +s +191251 apposition +o +adv +191255 o +191259 s +adv +o +191263 s +191265 o +191269 o +191273 aux +191276 adv +191278 p +adv +191284 s +adv +o +191288 s +191290 o +191294 io +o +s +p +191302 s +adv +o +191307 aux +s +191311 apposition +adv +adv +191316 adv +191318 p +apposition +191321 o +191324 o +191327 o +191329 adv +191333 aux +191336 adv +191338 p +191342 o +191345 o +191347 o +191349 adv +o +191352 adv +191355 adv +adv +191360 io +191362 o +191364 adv +o +191368 io +191370 o +191375 o +191377 o +191380 adv +191383 io +191388 adv +191391 s +191397 o +191401 apposition +191403 o +adv +191407 adv +191411 adv +adv +adv +191421 adv +191424 adv +191427 apposition +191430 o +191432 adv +o +adv +191437 apposition +191439 adv +adv +o +s +apposition +adv +s +191448 adv +191454 o +adv +191457 o +191459 s +o +191465 adv +s +191474 o +191476 s +191478 adv +o +o +191484 o +191486 s +o +191492 adv +191496 adv +o +191499 adv +191501 o +191507 o +191509 adv +191515 adv +191522 s +191526 adv +o +o +adv +adv +191534 adv +o +p +s +191540 adv +191542 apposition +o +191545 p +191548 p +191552 s +191557 adv +o +191560 o +191565 adv +o +o +191571 s +191578 adv +o +adv +adv +adv +191586 adv +191589 s +o +191594 adv +191596 adv +191598 o +191600 adv +191604 s +191612 o +191620 adv +adv +adv +191624 o +191631 adv +adv +191634 o +o +191637 adv +o +191640 adv +191642 s +191644 p +191647 o2 +191651 v +adv +191654 adv +191660 s +191664 o +191667 s +191674 o +191678 s +191680 adv +191685 adv +191691 o +adv +191698 s +191702 adv +191706 adv +adv +o +o +191711 adv +191715 s +191717 o +191722 adv +adv +o +191728 o +191730 s +191732 p +191735 p +191739 adv +adv +adv +191746 o +p +191749 o +adv +191752 o +191756 o +p +191759 s +191763 v +o +191768 o +o +191773 s +o +o +adv +191781 o +adv +191784 o +191793 adv +191797 adv +191799 adv +191801 adv +191808 s +adv +191813 o +o +191818 adv +v +191824 o +191828 adv +o +191833 s +191836 o +191840 o +191843 apposition +191848 adv +s +adv +adv +o +191854 p +191856 adv +191858 s +191862 adv +adv +191868 s +191877 o +191881 o +191885 adv +o +191890 adv +adv +191893 s +191896 apposition +apposition +191899 aux +apposition +s +191903 p +191906 s +191909 adv +191914 adv +191916 adv +191922 s +191926 o +adv +o +adv +191934 o +191937 o +191939 adv +o +191946 adv +o +191949 o +191952 o +adv +191955 io +191964 adv +o +191968 adv +191971 v +191977 adv +o +191983 s +191989 adv +o +191992 adv +o +o +o +192005 adv +adv +192009 o +192012 o +192014 io +192019 o +o +adv +192025 adv +adv +192032 adv +s +192036 apposition +192038 o +adv +o +192042 o +adv +192046 s +adv +192052 s +192054 o +192057 io +192062 s +192066 s +adv +192072 s +192079 s +192085 s +192091 s +adv +192094 p +192098 s +192102 s +o +192105 s +192109 v +192113 s +192115 o +192117 o +192121 o +192123 apposition +192125 v +192132 o +192138 p +adv +p +192145 o +192147 s +s +adv +192151 adv +192153 o2 +192172 adv +s +192175 o +192180 o +192184 adv +o +o +s +p +192192 s +adv +192195 o +io +192198 o +192200 adv +192205 o +192207 o2 +192216 p +192221 s +192224 io +o +adv +192230 apposition +192233 o +adv +192237 o +192249 apposition +192251 o +192256 o +o +192261 adv +o +192265 adv +192267 o +192273 o +s +192276 o +192279 o +o +192282 s +192285 apposition +o +192291 s +adv +192295 adv +192299 adv +192302 o +192305 apposition +192310 adv +192312 adv +192314 adv +192318 apposition +192320 aux +apposition +adv +adv +adv +s +apposition +192330 adv +o +192337 s +o +192340 o +192344 o +192350 adv +192353 adv +o +192358 s +192361 adv +192367 o +192374 s +192377 s +192380 o +192383 adv +192386 adv +192388 s +192397 s +192407 adv +192409 adv +o +192414 adv +adv +192419 adv +adv +192423 adv +192428 adv +192432 adv +192435 o +o +adv +192439 o +192442 apposition +o +192447 s +192454 adv +192462 adv +192465 v +adv +adv +192473 adv +192476 adv +192479 adv +192482 o +192489 o +adv +192492 o +192494 s +192500 s +192503 adv +192507 s +192512 s +192515 adv +192518 p +adv +192521 s +192526 io +192529 adv +192533 adv +192540 s +p +192545 p +192549 adv +192552 adv +192557 v +adv +adv +192561 s +192568 p +192574 p +192576 s +adv +192583 adv +192589 adv +192592 s +192598 o +s +192602 adv +adv +192611 o +192616 o +192618 adv +192620 s +192627 o +192637 adv +adv +o +192641 s +192644 s +adv +192647 o +o +192650 s +192656 adv +192658 adv +s +192661 adv +192667 s +192673 s +192675 adv +192679 apposition +192681 s +192683 adv +192690 adv +s +192693 adv +192698 adv +192702 adv +192709 adv +192711 adv +adv +192714 o +192716 o +192718 apposition +192720 o +192723 adv +192731 v +adv +adv +192737 adv +adv +adv +192742 apposition +192747 s +192749 adv +adv +adv +192756 s +192760 apposition +192766 s +192770 o +192774 o +192778 adv +192781 apposition +192784 p +192791 adv +io +192795 o +192803 o +192810 adv +192812 adv +192816 s +192820 apposition +s +s +192826 o +192828 adv +o +192831 adv +o +192838 o +192844 o +192846 adv +192849 s +192851 o +192854 adv +192857 apposition +adv +192862 io +192865 o +s +o2 +192869 s +192871 o +adv +192877 o +192887 adv +192892 o +192898 s +192902 s +adv +192907 adv +o +o +o +192912 adv +adv +192919 o +192921 adv +adv +192924 adv +192931 adv +adv +o +192937 adv +192941 o +adv +adv +192945 adv +192949 adv +192951 s +192958 adv +adv +192962 adv +o +192965 p +192968 apposition +192970 adv +192972 adv +192978 o +adv +192982 adv +o +192986 p +192992 s +192995 apposition +192997 adv +193000 s +193004 adv +p +193011 s +193014 adv +193019 io +193022 apposition +adv +193027 o +adv +o +193032 adv +s +193035 o +193039 adv +s +193042 apposition +193044 s +o +193049 o +193051 s +193056 s +193065 s +193068 p +193072 s +193074 p +193080 adv +s +193089 s +193094 adv +193096 p +193102 p +193104 adv +adv +193112 adv +193114 s +193118 v +193120 adv +193123 adv +193128 adv +adv +o +193140 s +adv +193146 o +193150 adv +o +193153 s +193158 adv +o +193164 o +193166 adv +adv +adv +193176 o +193179 o +193183 o +193187 o +193190 adv +193203 adv +193206 s +193209 o +193213 s +193215 o +193222 adv +193224 s +s +193229 apposition +apposition +193232 adv +adv +193237 s +193243 o +193248 o +193252 adv +adv +193255 adv +193262 s +193267 adv +adv +193270 o +adv +adv +193277 adv +adv +193282 adv +o +adv +o +193291 o +193293 adv +193297 s +193300 s +193304 adv +adv +193309 adv +p +193315 s +193317 p +193319 adv +adv +193325 adv +adv +193328 adv +adv +193331 o +adv +193336 o +193339 adv +adv +193342 adv +193345 topic +193347 aux +193351 s +193354 apposition +193358 adv +adv +193363 o +193365 o +193371 s +193373 adv +o +193376 o +193379 adv +193384 s +apposition +193387 o +193392 o +193399 adv +s +o +adv +193406 adv +o +193411 adv +193415 adv +193421 o +193424 adv +193426 adv +193432 adv +p +adv +193437 o +adv +193442 p +193453 adv +193456 adv +193463 s +193467 apposition +193469 adv +193474 s +adv +193479 s +adv +193482 o +adv +193487 o +s +p +193493 adv +o +193499 adv +adv +o +s +p +193507 s +o +193514 s +193517 s +adv +o +193521 adv +s +p +193526 p +193530 s +o +193533 o +193537 adv +193542 adv +s +o +193548 s +o +193554 o +193556 adv +193561 adv +193566 s +193568 apposition +193570 adv +193573 adv +adv +o +o +s +193582 o +adv +adv +193592 s +193600 adv +193603 adv +o +193607 p +193612 o +193616 adv +193623 adv +193627 adv +193629 v +s +193633 adv +193641 adv +193643 p +193649 adv +o +o +193656 o +o +adv +193660 adv +193666 adv +s +193670 adv +193675 o +adv +o +o +193680 o +193684 o +193687 o +p +193692 s +adv +o +p +193701 adv +o +193706 s +adv +193712 o +adv +193719 adv +adv +193722 o +adv +adv +193727 adv +adv +193735 adv +o +193738 s +193742 adv +o +193745 p +193748 adv +193751 s +p +adv +193760 s +adv +o +193766 v +adv +193769 o +adv +193773 adv +193776 o +o +s +adv +193783 adv +193791 s +193795 adv +193799 s +adv +193802 adv +193807 adv +o +io +193814 s +193819 adv +193822 adv +193825 p +p +adv +193831 adv +o +193838 adv +o +193841 o +193843 o2 +193845 o +193849 adv +adv +adv +193854 o +193856 adv +193858 o2 +193862 adv +193866 s +193868 v +193872 adv +193876 adv +o +193881 o +adv +v +adv +193889 adv +193892 adv +193897 s +adv +o +o +193904 adv +o +193911 adv +o +193916 o +193918 o +193920 adv +193923 adv +193928 adv +adv +o +193933 s +193938 o +s +193945 o +193948 adv +193951 adv +apposition +193955 o +adv +193961 adv +193963 adv +o +193968 adv +o +adv +adv +193976 s +193982 apposition +v +193988 adv +adv +o +193992 aux +adv +193999 adv +194002 adv +194007 s +apposition +adv +adv +s +194016 apposition +194019 apposition +194022 o +194024 io +o +adv +194028 o +194030 io +194035 adv +194037 adv +194039 adv +194044 s +194047 adv +adv +194054 adv +194057 apposition +194060 o +194064 apposition +194067 adv +194070 adv +194074 s +o +194080 o +194084 adv +o +194090 s +adv +194095 s +194097 adv +o +194104 p +194108 apposition +194112 s +194114 adv +adv +194119 o +194122 p +194129 s +p +o +p +194138 s +194142 o2 +194145 p +194147 o +194152 adv +s +adv +o +194157 o +adv +194160 p +194170 o +194174 o +194178 o +194180 adv +194182 adv +194188 o +194192 adv +p +194199 p +194205 adv +194208 adv +194211 s +194214 s +194220 adv +adv +s +o +194225 adv +194227 o +194232 adv +194236 s +adv +o +194240 o +adv +o +s +194248 s +194252 adv +194255 adv +o +194258 adv +o +194263 adv +s +194270 apposition +194272 adv +194274 adv +194279 aux +194286 p +194290 apposition +v +adv +194299 apposition +194301 apposition +o +194306 adv +io +o +194314 adv +194317 adv +194320 apposition +v +194326 p +194333 adv +s +194336 apposition +v +adv +194340 o +194345 s +194349 adv +o +194356 adv +adv +194362 adv +194365 adv +adv +194368 adv +o +194375 o +s +adv +194381 adv +o +194390 adv +194393 adv +194396 s +adv +194407 o +adv +194411 adv +o +o +194415 adv +194423 o +194425 adv +p +194428 adv +adv +194431 s +194433 s +194436 adv +194443 adv +194449 o +194453 adv +adv +194456 o +io +194465 p +194471 apposition +194478 adv +194484 adv +adv +s +194494 s +adv +adv +194500 adv +o +s +194506 adv +adv +o +194514 s +194516 adv +194519 v +adv +194524 adv +adv +apposition +194529 adv +adv +194539 adv +194548 s +adv +194552 s +194554 adv +194559 adv +o +s +194564 apposition +adv +adv +194573 adv +s +194576 adv +o +194581 o +194583 adv +adv +194594 o +194599 apposition +apposition +p +apposition +194607 adv +194616 s +194621 adv +194628 o +194630 p +194632 o +o +194638 adv +194641 o +194643 adv +194648 s +194654 adv +194656 adv +194660 o +194662 adv +o +o +194666 adv +o +194672 s +194675 adv +194683 s +194690 adv +apposition +194693 aux +194701 adv +194704 s +194706 s +194708 s +194711 adv +194717 adv +adv +194724 adv +194727 o +194733 adv +194736 apposition +194739 o +194743 adv +o +194746 adv +194750 p +194753 s +194757 adv +194759 adv +194764 adv +194767 adv +194770 adv +o +194774 adv +194779 s +194786 adv +194790 adv +o +194794 s +194796 v +adv +194801 adv +194805 o +194810 adv +adv +194813 adv +194816 o +s +194822 adv +adv +194826 s +194832 o +194839 adv +194846 topic +194848 adv +194856 adv +194860 o +194864 o +194866 v +194869 adv +adv +194875 o +194881 o2 +194890 o +194892 adv +194894 o +194898 adv +o +194908 adv +194913 o +o +194918 o +194923 adv +adv +194928 adv +o +s +194933 apposition +adv +adv +p +adv +194939 s +s +194943 adv +194951 adv +194954 o +194956 adv +194958 o +194962 adv +194964 s +194967 s +194970 adv +adv +194975 adv +194978 s +194981 adv +194986 adv +adv +p +194992 o +194996 adv +195000 adv +195002 adv +195004 adv +195009 adv +195013 adv +o +195019 adv +adv +195024 adv +195027 adv +195033 adv +adv +adv +195039 v +adv +adv +195043 o +195047 p +s +195051 s +p +195056 s +195059 adv +p +195065 adv +195068 adv +s +apposition +195074 p +195077 s +p +195085 s +adv +195090 s +195094 s +195096 adv +195101 adv +adv +195104 adv +195108 adv +195112 p +195115 adv +195119 s +195123 apposition +o +v +adv +195131 p +195135 s +adv +195139 s +195143 adv +195147 s +195151 adv +adv +p +io +195156 apposition +195158 adv +195161 apposition +adv +195177 s +195180 adv +195183 o +195187 apposition +195197 adv +195200 adv +o +p +adv +195205 s +195207 adv +p +195215 adv +195218 s +o +adv +195223 s +adv +o +s +195230 adv +195237 aux +195241 p +195248 s +195251 adv +195254 adv +s +adv +o +195261 o +195270 o +195272 p +195276 o2 +195283 o +195286 p +195294 o +195299 io +195302 adv +195305 o +p +195308 adv +195310 o +o +195313 adv +195315 s +apposition +195320 s +p +195329 adv +195331 adv +195333 p +195340 s +adv +o +195344 adv +195346 adv +s +195349 apposition +195352 adv +apposition +adv +195356 o +195362 adv +adv +195366 apposition +v +s +195372 adv +o +s +adv +195378 o +195383 p +195387 apposition +195389 o +195393 p +adv +adv +adv +s +apposition +adv +p +195405 o2 +195408 io +195410 adv +adv +adv +195416 adv +adv +195420 o +s +adv +adv +195426 adv +195433 aux +195435 adv +adv +o2 +195440 adv +o +s +v +195445 adv +195447 p +195449 adv +195456 o +195458 p +195464 adv +s +195474 adv +o +s +o +195480 p +195487 s +195489 o +195492 o +195496 s +adv +195501 o +o +195506 apposition +195508 aux +apposition +adv +195514 o +195525 o +195528 adv +adv +195533 p +195536 s +apposition +195540 p +195544 apposition +195547 adv +195553 o +195559 o +o +195562 apposition +vc +195566 adv +195570 adv +s +o +p +apposition +195578 p +apposition +195583 adv +o +adv +195592 s +o +195597 s +p +195608 o +195611 apposition +adv +o +195615 adv +195619 s +o +195622 apposition +195624 apposition +195629 o +o +p +s +195635 s +o +195643 o +s +adv +195648 adv +o +p +apposition +p +195655 o +195661 o +adv +195665 o +p +195670 o +195673 p +195677 p +195684 o +195687 o +195689 adv +195694 o +195698 adv +195701 o +o +195704 s +195707 s +195710 v +195712 adv +195720 adv +195723 adv +195728 s +195734 s +195740 adv +195747 s +195750 adv +o +195755 s +o2 +195758 p +195762 s +195766 s +195768 io +adv +o +apposition +195776 v +s +195786 adv +195791 s +o +o +195797 adv +195801 o +195805 io +195815 s +o +195822 o +195825 s +195827 apposition +195829 o +195832 o +s +195836 o +195839 s +o +195844 adv +195846 o +195848 o +195850 adv +195855 o +195858 s +adv +195864 o +195868 adv +s +195874 adv +adv +s +195887 adv +195893 s +195898 adv +s +195904 adv +195906 o +s +195910 o +195919 adv +adv +adv +195924 o +195932 o +195937 o +195940 io +195942 o +o2 +195946 o +195950 o2 +195953 o +s +195957 v +o +s +195967 s +195970 o +o +adv +195979 o +195981 o +195985 adv +195990 s +o +195993 adv +195996 s +196000 adv +196005 adv +196015 adv +196018 o +s +196024 o +196029 apposition +s +196036 p +196038 adv +196040 adv +196043 adv +196046 adv +o +196050 apposition +196055 s +adv +196063 o +196065 adv +196069 o +p +196076 s +196080 apposition +196086 adv +196089 o +196092 o +196094 adv +196097 o +o +196101 apposition +adv +196104 s +p +196111 adv +196114 o +196118 o +o +196124 adv +s +o +196128 o +adv +196132 o +196134 adv +196143 adv +196146 o +196149 adv +196153 o +adv +196161 s +196163 adv +196167 s +196169 adv +196176 o +s +196181 s +adv +196186 o +196190 o +196196 s +196199 adv +196206 o +s +196213 o +196215 p +196224 adv +196228 o +196231 o +196234 o +196241 o +196245 adv +196247 o +196251 adv +196253 adv +196255 s +196258 adv +196260 apposition +196268 o +adv +196273 s +s +196279 s +196282 adv +o +196288 s +o +196293 o +196299 s +196302 adv +196305 o +196310 s +o +adv +196314 adv +196316 o +196319 s +adv +196323 s +196325 adv +196328 s +196330 adv +196332 adv +196342 s +adv +196346 s +adv +196353 s +o +196357 o +196360 s +196367 s +196370 o +196373 adv +196377 s +196383 s +196385 o +adv +196390 s +196392 adv +196394 adv +v +196399 adv +s +196405 adv +196411 adv +196418 v +s +adv +adv +196423 adv +196433 v +adv +196439 adv +196442 adv +adv +196448 adv +196452 o +196454 apposition +196456 p +adv +196463 adv +196469 o +196471 o +196474 v +adv +196479 s +adv +196482 o +196484 p +196488 v +adv +196492 s +196494 o +196498 s +196502 apposition +196507 adv +196514 s +196520 s +196526 s +196528 p +196532 s +196534 p +196536 p +196540 adv +196544 s +196546 adv +196548 p +196552 adv +v +196557 o +196561 s +196563 o +196565 o +196567 s +196571 adv +s +s +o +196578 adv +o +196583 s +o +196587 adv +196592 s +196594 adv +196596 o +196601 s +196603 o +196606 s +196609 adv +196615 o +s +196618 s +adv +196622 o +v +196630 s +196633 s +196637 o +196640 adv +196645 s +adv +196651 adv +196660 apposition +io +apposition +196667 s +196672 s +adv +adv +196676 adv +196680 p +196683 s +196686 adv +196689 s +o +o +196695 s +196697 adv +196699 adv +196705 s +196707 apposition +o +s +196711 adv +196713 apposition +196715 o +196723 o +196726 o +196732 s +196734 o +o +196742 o +196746 o +196752 s +196755 o +196757 apposition +196762 adv +196766 apposition +196768 o +196772 adv +196775 s +196786 o +196788 s +196791 adv +196797 s +196799 adv +196802 apposition +adv +adv +196808 s +196810 apposition +adv +p +196815 adv +196819 adv +s +o +196823 o +196825 adv +196830 adv +196833 o +196837 o +196844 s +196847 o +196850 s +o2 +196854 o +196859 o +196862 s +p +196867 s +o +196871 o +196875 s +196877 adv +196882 o +196884 p +s +196887 apposition +s +196891 s +o +196894 o +196896 adv +196898 adv +196905 o +196908 o +196911 o +adv +196914 s +p +196926 s +196928 o +adv +196934 s +o2 +196940 s +196943 s +s +196946 adv +196951 s +o2 +196954 o +196956 s +apposition +196959 o +196965 s +o +s +apposition +196974 adv +s +196982 adv +196986 o +196990 adv +196996 o +196998 s +197001 adv +197005 io +o +197010 o +apposition +o +197016 p +197020 adv +197024 adv +197027 adv +197029 s +adv +o +197036 o +o +adv +197042 s +adv +o +197046 adv +197049 s +o +s +p +197055 o +197061 o +197066 adv +197071 s +197074 o +197076 o +197080 o +o2 +197083 adv +197087 s +197091 adv +197095 s +197104 adv +s +adv +197109 p +197113 p +197117 adv +o +197124 adv +197130 adv +197133 s +197135 adv +adv +197142 o +197144 o +197151 adv +s +197154 o +adv +197159 adv +197164 s +adv +197170 io +adv +197173 adv +197176 adv +197181 o +197183 p +197189 adv +197192 adv +197197 s +o +197200 adv +197207 adv +197209 adv +197211 s +adv +o +197215 adv +adv +197220 s +adv +197226 adv +197231 apposition +o +197236 s +197238 apposition +s +197241 adv +197245 adv +o +197248 adv +197253 adv +197255 o +197257 adv +197262 o +197266 o +197270 s +adv +o +197275 o +197278 adv +197281 adv +s +o +197285 adv +197287 s +197291 s +o2 +197295 s +197300 s +o +197303 apposition +s +197312 s +adv +o +197316 s +197321 o +adv +adv +adv +197328 o +197330 adv +s +197336 s +o +197339 adv +197342 apposition +adv +adv +s +s +197350 s +197358 o +197360 s +adv +adv +197370 adv +s +197375 adv +197379 p +197381 adv +197383 s +197385 apposition +197388 o +197393 adv +s +197398 apposition +197400 o +197407 adv +adv +197412 o +197416 s +adv +adv +197426 s +adv +adv +197431 adv +197436 s +adv +197439 o +197442 o +197444 adv +o +o +197449 s +197451 o +197454 adv +197456 adv +197458 s +adv +197463 adv +197465 adv +197468 s +o2 +197473 o +197481 s +197485 o +197492 adv +197498 s +io +197501 o +197505 s +o +197510 o +197512 aux +197514 o +197516 o +197522 o +s +197525 apposition +197527 o +197534 s +197536 o +adv +197540 s +197542 p +197547 adv +s +adv +197553 o +apposition +adv +197557 s +197561 s +197564 io +o +197567 s +197572 adv +s +o +adv +197577 adv +197581 o +197583 s +197585 adv +197591 adv +o +s +197597 o +197599 o2 +197601 o +adv +adv +197608 s +197611 adv +197614 o +197616 s +o +adv +197621 o +s +197626 adv +197628 s +197635 s +o +197639 o +197643 o +197645 adv +197653 s +o +197658 s +197660 o +197665 s +197667 o +197669 io +197672 o +adv +197675 o +197678 s +197680 o +o +197683 apposition +197689 adv +197692 s +197695 o +197699 o +197701 o +197705 adv +197708 adv +197710 adv +197716 adv +197725 s +o +197733 s +197738 adv +197740 s +adv +io +197744 o +adv +197749 adv +adv +197752 p +197758 s +apposition +197761 adv +s +197766 o +197770 o +197772 s +197774 o +adv +197778 s +197780 o +adv +197785 o +adv +apposition +197789 adv +197793 s +197796 adv +197799 o +197803 o +197811 adv +197813 s +197818 s +197820 adv +197823 o +197825 s +197827 apposition +adv +197832 adv +197835 io +197840 adv +o +197844 adv +197849 p +197851 apposition +197858 o +adv +adv +197866 o +197870 adv +197872 adv +s +197876 apposition +adv +s +197880 apposition +197883 apposition +adv +197886 s +197891 aux +197894 adv +197900 o +197903 o +197906 o +s +197909 adv +adv +197912 adv +197915 o +adv +197918 o +adv +o +197924 p +197926 adv +197930 o +adv +adv +197937 adv +197940 o +197942 o +197945 adv +197949 adv +197960 adv +197968 o +adv +adv +197973 o +197975 apposition +197981 o +197983 adv +197987 s +197989 p +apposition +adv +198002 adv +198008 o +198011 o +198015 adv +s +adv +198022 apposition +198027 s +198030 o +198032 apposition +adv +198040 adv +198044 adv +198050 s +198052 apposition +198058 s +adv +198061 o +198064 o +198066 s +adv +adv +o +198076 adv +adv +198079 o +o +198083 s +o2 +198086 s +198090 o +198093 s +198098 apposition +apposition +198102 o +198104 adv +o +198112 adv +198115 s +o +o +s +198122 s +p +198129 s +198131 adv +p +198138 o +s +198142 adv +io +198146 adv +198149 adv +198156 io +198158 o +198160 o +198171 o +adv +198176 apposition +adv +adv +198183 s +adv +o +198187 o +198189 p +198191 apposition +198193 adv +198198 adv +adv +198201 o +198205 adv +198207 adv +198209 s +198217 s +198219 adv +198223 adv +adv +adv +198227 adv +198235 adv +s +198239 s +adv +s +198246 adv +o +198252 o +198254 s +adv +198259 adv +198266 o +198273 o +adv +198278 s +p +198282 apposition +adv +198287 adv +s +198290 apposition +198292 adv +198297 s +adv +198304 adv +198306 s +adv +198310 s +198315 adv +adv +198319 apposition +198321 o +198323 s +198329 s +o +198335 s +198338 adv +198342 adv +adv +o +198348 adv +adv +198351 o +198356 s +198359 adv +198362 o +198370 adv +198377 o +198380 apposition +198385 apposition +198387 adv +198389 apposition +s +198395 s +198397 apposition +198401 adv +o +198406 o +198414 o +o +s +198420 adv +198425 o +198428 o +adv +198438 s +198440 o +adv +198445 v +o +o +198450 adv +198454 s +adv +198458 o +198460 o +198465 s +198467 o +198476 s +198479 p +198482 adv +198486 io +198490 adv +o +198493 o +198497 s +o +p +198505 s +198507 adv +adv +198511 s +198513 adv +adv +198518 adv +198526 apposition +198528 s +198530 s +adv +198534 o +198536 adv +adv +198540 adv +198545 o +198549 o +198556 s +198560 adv +198563 aux +198566 adv +198569 adv +198575 s +198579 adv +198582 s +198586 o +198589 adv +o +198593 adv +198600 s +adv +adv +198604 o +p +198607 apposition +198609 adv +198613 o +198616 p +198618 apposition +198620 apposition +o +198626 o +198628 adv +198635 o +adv +198640 o +adv +adv +198644 s +198646 apposition +198649 adv +198654 v +adv +198657 adv +198659 p +198662 s +198666 adv +198670 adv +198675 o +adv +198680 aux +198682 p +198684 o +198689 o +s +198692 o +198695 p +198701 s +198703 adv +198705 o +198710 p +198712 apposition +198714 adv +198716 adv +198719 adv +198724 p +198727 apposition +198729 apposition +198731 adv +198735 adv +198737 adv +198740 adv +198745 s +198748 apposition +p +198751 adv +198758 adv +s +adv +o +o +o +adv +198768 s +adv +198772 o +198777 o +198784 o +198787 adv +198791 s +198794 o +198798 o +198800 o +198802 adv +198808 s +198810 p +198813 s +198815 p +198819 s +198822 o +198826 o +198828 adv +198830 adv +198833 adv +198836 s +198840 adv +198843 aux +198846 adv +198849 p +198851 apposition +198853 adv +adv +198858 s +198863 s +198865 o +198867 adv +198871 adv +adv +adv +198877 s +198881 adv +o +s +198885 o +o +198890 s +adv +adv +o +198895 adv +s +198898 o +198903 o +s +198907 adv +adv +198912 s +p +198916 s +198920 s +198922 apposition +198928 s +198931 apposition +adv +198934 adv +s +o +198938 s +198942 s +198947 o +adv +adv +198951 o +adv +adv +198955 v +adv +198961 adv +s +198965 adv +198969 adv +198973 s +io +adv +198977 s +o +198981 s +o +198985 adv +198988 o +198995 o +198997 p +199002 s +o +199006 o +apposition +199010 s +199015 o +199018 adv +199021 o +199023 p +199030 adv +s +adv +199036 o +adv +199039 adv +199041 o +s +199046 s +199050 apposition +199054 adv +s +199057 o +199062 adv +199066 s +199069 o +199072 apposition +199077 adv +199080 o +p +199087 io +199091 s +199093 adv +199097 s +o +199100 s +199105 s +199112 s +o +199118 adv +o +199121 s +199125 adv +199129 adv +199132 adv +199134 s +199139 adv +adv +199147 s +199149 adv +199152 s +adv +199160 s +adv +199165 o +199169 s +199171 adv +199177 o +199181 o +199185 o +199189 adv +adv +199198 s +199201 adv +199208 s +adv +o +adv +199218 o +199220 s +199224 p +199230 o +o +199234 adv +199236 o +199238 p +199242 adv +199245 s +199247 adv +o +199255 aux +199257 o +199264 p +199268 o +199272 s +199274 o +199277 o +199280 s +o +199284 o +199290 o +199292 o +199298 adv +o +adv +199303 p +199306 p +199310 adv +199316 adv +199319 s +199321 o +199325 o +adv +199330 adv +199332 o +199337 s +199340 o +199342 p +o +199352 s +o +199355 p +199360 o +199364 aux +199368 o +199373 adv +adv +199376 s +199379 o +199383 o +199388 adv +199391 s +199394 apposition +199398 adv +199400 p +199406 o +199409 adv +o +adv +199413 s +199419 adv +199421 adv +199424 o +199426 aux +199431 o +adv +199437 s +199439 s +adv +199442 o +199444 s +199453 s +o +199456 adv +p +199460 adv +199471 o +adv +199476 s +adv +o +199480 o +199486 o +199488 adv +199494 o +199497 s +199500 apposition +adv +199508 o +adv +199514 adv +199518 apposition +199521 s +199524 adv +o +199530 adv +199536 aux +199538 adv +199541 s +199543 s +199546 adv +199552 adv +199555 apposition +o +s +199559 adv +adv +199562 adv +199567 s +199569 adv +o +199572 o +p +199576 o +p +199581 adv +199584 adv +199586 s +199590 s +adv +199593 adv +199600 apposition +199602 apposition +s +199607 adv +199609 adv +199614 s +199616 o +199619 adv +o +199625 s +adv +199632 o +adv +199636 s +o +adv +199640 s +199645 s +adv +199648 s +199653 s +199656 adv +199659 s +199664 s +199667 apposition +199669 o +199672 adv +s +apposition +199676 adv +adv +p +199680 adv +199682 s +199684 o +adv +199688 adv +199691 o +199697 adv +199699 s +p +199707 o +199709 adv +199714 adv +199720 adv +199728 adv +199732 s +199734 adv +199737 adv +199742 s +199746 adv +o +199749 adv +199752 adv +adv +o +199756 s +199758 adv +199762 adv +199764 o +o +199772 adv +adv +199775 o +199779 s +adv +adv +adv +199789 o +199791 adv +adv +o +s +199796 o +adv +199801 adv +adv +199808 adv +199812 adv +199814 adv +adv +adv +199818 adv +199823 s +199826 s +adv +199831 s +adv +199836 adv +199838 o +199840 aux +199842 s +199849 o +199854 s +o2 +199864 s +adv +o +199868 p +199873 s +199875 adv +adv +199880 o +199886 s +o +adv +o +s +199897 o +199901 adv +199903 s +199907 o +199914 o +199920 adv +199922 o +199930 s +199938 s +199945 adv +199950 o +199952 s +199958 p +199960 adv +199963 adv +s +199970 o +s +199975 o +199980 o +199988 o +199993 o +199995 adv +199997 adv +adv +200003 adv +200005 s +200010 o +200017 adv +200021 o +adv +200026 s +o +200032 o +o +adv +200038 o +200041 p +200044 p +200048 p +200052 p +200059 o +200061 adv +200068 o +200071 adv +200077 o +200080 s +adv +p +apposition +adv +200088 o +adv +v +200094 o +s +200097 adv +adv +adv +200103 o +200105 o +200109 s +o +200113 o +200117 adv +200123 adv +200128 s +200133 s +200135 p +apposition +adv +200139 o +200143 adv +adv +200148 s +adv +200153 o +200156 adv +200162 p +200166 o +200169 s +200172 adv +o +200176 p +200180 o +200184 s +o +200188 o +200190 s +200193 o +p +200200 s +adv +200203 adv +200206 s +adv +200212 adv +200214 s +200217 o +200219 p +200224 o +200227 s +200230 adv +200233 o +adv +200239 s +o +adv +200248 o +s +200253 s +o2 +200257 p +200260 o +200266 o +o +apposition +apposition +adv +o +adv +200274 o +200277 o +200283 o +200285 adv +200287 o +200289 apposition +200292 s +o2 +200295 adv +200297 s +p +200301 adv +200304 adv +200310 adv +200314 adv +o +200318 adv +200320 o +o +200327 p +200330 apposition +200333 o +o +200341 adv +200344 adv +200346 adv +200348 p +200354 o +200356 adv +200363 p +200371 o +200375 s +200377 adv +200383 adv +200386 s +200388 p +200390 o +200395 adv +adv +200398 p +200403 s +200406 adv +200408 adv +200415 o +200420 o +200427 o +200431 s +200440 o +200443 o +200446 adv +adv +200451 s +o +o +200461 s +200464 o +200467 o +200470 adv +adv +200476 adv +200480 apposition +200484 s +200489 o +200493 s +200497 o +p +200500 s +200502 adv +200504 p +200516 o +200519 p +200526 o +200531 s +apposition +200534 adv +200536 o +200547 s +adv +o +200551 o +200556 o +200559 o +adv +200565 adv +200567 adv +200574 adv +200579 adv +o +200586 s +200588 adv +o +200592 adv +s +200601 o +200607 s +200612 s +200615 adv +200618 s +o +200623 adv +200627 adv +200629 o +200632 adv +200634 p +200636 p +200641 adv +200644 adv +200648 o +200650 adv +200654 o +200657 adv +200662 apposition +p +200673 adv +200677 s +200682 adv +adv +200685 adv +200687 p +200694 o +200698 o +200704 o +200709 adv +200711 s +200715 o +200718 s +200720 apposition +200724 o +200728 adv +200731 adv +200737 adv +200744 o +200747 o +200750 o +200753 adv +200758 adv +200761 adv +o +s +200766 o +200771 s +200773 o +200777 o +200779 adv +200790 s +200793 o +200795 p +s +200800 o +200803 o +s +o +o +200810 p +200814 io +o +adv +adv +200819 o +200824 o +200829 s +adv +o +200836 adv +200839 o +200842 apposition +200846 adv +o +p +200851 apposition +adv +200854 adv +200860 s +200864 o +o +200868 p +200880 o +200882 o +200887 o2 +200890 adv +200894 s +200896 adv +200898 o +200901 s +adv +200909 adv +s +200912 o +200920 o +adv +adv +200925 o +io +o +o +200930 s +200935 o +200941 o +200943 adv +200947 o +200950 o +200954 o +200961 o +200964 s +o +p +200973 o +200975 p +200978 p +200983 o +200985 s +200988 o +200992 s +200995 adv +200997 o +p +s +201002 o +201005 o +201010 o +201012 s +201014 o +201020 o +201025 adv +201027 o +201029 o +201034 adv +201036 p +o +201043 o +201045 adv +201054 o +201058 adv +o +adv +201069 adv +201075 adv +201078 s +adv +201084 p +201086 adv +201090 o +201098 s +o +201101 adv +adv +201108 s +201112 s +201117 s +201120 apposition +201122 p +201125 adv +201127 s +201130 s +o2 +201140 o +201143 s +201149 o +201151 aux +201154 adv +201156 adv +201167 s +201169 adv +201171 p +201176 s +201180 s +o +201186 o +201188 adv +201196 o +201199 adv +201203 s +201206 o +201213 adv +201216 adv +201219 o +201224 o +201226 s +201230 o +s +201235 s +o +201239 o +201241 p +201248 s +201250 adv +201255 s +201258 p +201262 adv +201264 adv +201275 s +adv +201287 adv +201294 p +201299 s +201302 o +201304 adv +201308 apposition +201311 s +201316 apposition +s +o +s +201322 o +201328 s +201335 adv +201340 p +201346 o +201349 s +201353 s +201355 o +201359 o +201361 adv +201366 o +adv +p +201374 s +201378 o +201382 p +201387 adv +s +adv +201391 o +201393 adv +201398 adv +201401 adv +201405 adv +201408 adv +201411 o +201413 adv +201418 adv +201420 adv +201426 s +201428 o +201436 o +s +201439 p +o +201442 o +o +201446 s +adv +201454 s +adv +201457 adv +201465 s +201468 o +adv +o +201472 o2 +201475 p +201479 s +o +201488 aux +201490 apposition +adv +201496 adv +201499 adv +201501 p +201508 s +201511 o +201513 o +201515 o +201518 o +201521 adv +adv +201526 adv +201533 aux +201535 s +201538 o +adv +201545 s +201550 s +adv +201555 s +o +o +201559 adv +201561 o +adv +201567 s +o +201571 adv +201575 adv +201579 adv +201582 s +o +201585 v +adv +201589 o +201591 o +201594 adv +201597 adv +adv +s +201604 o +s +apposition +adv +adv +201610 s +201613 adv +201617 o +p +201624 o +201639 o +201645 apposition +201648 p +s +201651 p +201656 o +201660 adv +201667 adv +201669 adv +201672 apposition +v +adv +201681 adv +201684 adv +201688 o +201691 s +201693 adv +201697 adv +201701 s +201713 apposition +201718 p +201721 o +201724 o +201726 adv +201728 adv +s +201735 s +adv +adv +o +201740 s +201744 adv +s +o +201749 s +201751 p +201754 p +201760 s +201763 adv +201767 s +o +201780 o +201784 adv +201787 adv +201790 adv +io +o +adv +201797 s +o +201801 o +s +201807 o +201809 s +p +201813 adv +201815 adv +201817 adv +201819 o +201826 adv +201828 adv +201830 adv +201832 s +p +201839 adv +o +201842 s +apposition +201853 s +o +201856 adv +201861 s +adv +201868 o +201870 adv +201877 s +o +201884 adv +201887 o +201891 adv +201895 s +apposition +201898 io +o +201901 s +201904 adv +201908 adv +s +o +o +adv +201917 p +201919 adv +201925 s +201928 adv +201932 adv +201934 adv +201941 o +201944 s +201948 adv +201953 s +adv +o +201962 s +201965 adv +201967 o +201969 o +s +201973 s +o +s +201979 s +o +o +201983 adv +201985 adv +201990 s +o +p +201999 s +202001 adv +adv +202006 s +202012 adv +adv +adv +202020 o +202024 o +202026 p +202029 apposition +202032 apposition +202034 adv +202040 adv +202043 o +apposition +202046 adv +o +202049 s +202056 adv +202060 adv +202065 s +adv +202069 p +202072 apposition +s +202077 s +202079 apposition +202082 p +adv +202087 adv +o +o2 +202094 adv +o +202097 adv +202099 adv +202104 s +adv +202107 adv +adv +adv +202112 adv +o +202115 adv +202118 s +202126 o +202130 s +202136 adv +202141 o +202144 o +202151 s +202155 s +o +202160 s +202162 adv +202164 s +202167 o +202170 o +202174 s +202178 adv +adv +adv +202188 adv +202191 s +o +o +202196 s +202201 o +202208 s +adv +202211 adv +202216 o +202222 o +202227 s +o +202231 o +202235 adv +202239 o +202243 adv +202246 apposition +202248 adv +202250 o +202255 adv +adv +o +202262 s +202264 adv +adv +202271 s +202275 s +o +202280 o +202284 s +202288 apposition +202291 adv +202295 o +adv +202301 s +202303 adv +202307 o +202312 s +202318 o +202322 s +202324 o +202331 adv +202335 s +202338 o +202347 s +202351 adv +adv +202354 o +202358 adv +202360 s +202363 s +adv +202368 s +202374 adv +202377 adv +adv +202380 adv +202382 o +202384 adv +202389 adv +202393 o +202398 apposition +202400 adv +202404 adv +202407 o +202413 s +adv +202418 adv +202423 adv +202426 o +adv +202433 s +202438 adv +adv +202441 adv +202443 adv +202449 o +202452 adv +adv +adv +202456 o +o +202459 adv +adv +202465 s +202469 adv +202474 o +202481 s +adv +202486 adv +202488 apposition +s +apposition +adv +202499 s +202502 s +p +202507 adv +202512 s +adv +o +202518 o +202523 adv +202525 o +202530 s +adv +202538 s +202541 apposition +apposition +202545 apposition +202547 o +o +202550 adv +s +202553 adv +202560 o +202563 adv +202569 adv +o +o +202576 s +o +202579 adv +202581 adv +202589 o +adv +202597 s +202602 o +202607 adv +202612 o +202614 apposition +adv +202620 s +adv +202623 o +202628 s +202630 adv +202633 adv +202638 adv +s +202642 apposition +202644 adv +202646 adv +o +202649 adv +o +202655 adv +202659 o +202661 p +s +202665 adv +202675 adv +s +adv +202680 v +o +202684 aux +202686 s +202688 adv +adv +202694 s +202696 adv +202698 o2 +202702 o +202705 v +adv +202712 s +202714 apposition +202716 p +adv +202720 o +adv +202725 adv +202729 adv +s +202733 o +apposition +o +202739 s +adv +o +202743 o +202746 s +adv +202751 s +p +202758 adv +202764 adv +apposition +202771 adv +o +202774 o +o +202779 s +202782 io +202786 s +202790 io +202794 s +adv +o +202798 s +202801 s +202808 o +202810 adv +202812 s +202815 adv +adv +202820 adv +202822 o +202826 s +202828 o +202832 s +202834 o +202836 adv +202839 adv +202844 adv +202850 s +202856 adv +202858 s +202861 s +202869 adv +202875 adv +adv +202882 o +202887 adv +202889 o +202897 s +202899 apposition +202904 o +202907 o +202913 o +202915 adv +s +202919 adv +202923 s +202927 s +202933 adv +202935 adv +202937 adv +202941 adv +o +adv +o +202948 s +o2 +202952 adv +202954 o +202956 s +adv +202961 o +202963 s +s +202968 s +202975 s +o +adv +s +p +202985 o +adv +202991 s +202993 adv +202995 o +203001 o +203003 adv +203007 p +203013 adv +adv +203019 adv +o +adv +adv +203025 s +203028 apposition +apposition +adv +203033 o +203037 s +203041 adv +o +adv +203045 o +203048 o +203052 o +203059 adv +203062 adv +203069 adv +203072 o +203076 adv +203081 s +203085 adv +203087 o +203089 adv +203091 adv +203095 o +203098 o +203100 o +203109 o +203112 s +203114 adv +adv +203118 adv +203123 s +203125 o +203130 adv +203134 s +203137 adv +adv +203147 o +203158 o +203161 o +203164 s +203169 o +203171 o +203173 apposition +apposition +203176 aux +203178 apposition +adv +203184 adv +203188 aux +203191 o +203198 o +203200 s +203202 p +203206 adv +203209 s +203214 adv +203218 s +adv +o +203222 s +203224 adv +203226 adv +203229 adv +203231 adv +o +203234 apposition +203237 adv +203245 s +adv +203248 adv +203250 s +203253 adv +o +203257 s +adv +203264 adv +203267 adv +203269 adv +203273 o +203276 adv +203280 adv +203284 o +203286 o +203291 adv +203293 apposition +v +203298 adv +203302 o +203304 o +203311 apposition +203313 o +203316 adv +203319 o +adv +o +203323 adv +203327 o +203331 adv +203334 s +o +203338 o +203341 o +203349 o +203352 s +203354 adv +203356 o +203366 o +203368 o +adv +o +203378 o +203382 o +203387 o +o +203393 aux +203399 adv +203407 s +apposition +203412 o +203415 s +o +o +203421 adv +203423 adv +203425 s +203430 o +203432 adv +203436 adv +203442 o +203448 adv +203452 o +203457 s +o +s +203461 o +203463 adv +o +203468 adv +adv +203472 adv +203477 o +203483 o +203485 s +203487 o +203491 s +203493 o +203498 adv +adv +203505 o +203508 o +203510 s +203514 adv +s +adv +o +adv +203521 v +s +203526 adv +203530 adv +s +203536 s +203539 o +o +s +adv +203545 adv +adv +203550 o +203555 s +o +p +apposition +203560 o +203567 adv +o +203571 io +203576 adv +203578 adv +s +203583 adv +o +203588 s +203591 o +adv +203596 adv +203598 o +o +203601 o +203603 o +o +adv +203610 io +203614 adv +o +203625 o +203627 s +203632 s +adv +203638 s +adv +203641 s +203643 adv +203649 p +203657 io +o +203660 o +adv +203663 o +203667 o +o +203671 adv +203674 s +203678 adv +o +203681 p +203684 adv +203687 s +o +203692 o +203694 o +adv +203700 o +203702 adv +o +203706 o +203708 adv +203711 o +o +203714 adv +203719 o +adv +adv +203725 s +203730 adv +203733 adv +203737 p +203742 s +203750 o +203752 adv +203764 adv +adv +203767 p +s +203772 adv +o +203776 o +203778 o +o +o +203783 o +p +203792 adv +203794 adv +203796 adv +203799 adv +203802 o +203808 adv +203813 o +203816 o +203821 s +o +203824 adv +p +203831 s +203833 o +203836 o +o +203840 adv +203843 p +203847 s +p +203851 o +203853 apposition +adv +203858 s +adv +adv +o +203865 adv +203868 p +203872 s +p +203880 adv +203887 o +203890 aux +203892 adv +203894 o +203896 apposition +203899 o +203902 adv +203907 apposition +203909 aux +apposition +203912 adv +203916 s +adv +203923 adv +203932 o +203938 o +203941 o +203943 o +203946 p +adv +203949 o +203953 apposition +adv +o +s +203963 adv +203966 adv +203969 p +203974 adv +203979 adv +s +203987 s +203990 adv +203993 adv +203996 p +204001 p +204003 p +204007 aux +204010 o +204014 p +204020 s +204022 adv +204031 s +204033 p +o +204038 o +204040 o +204044 io +204050 o +204056 o +204060 s +204065 adv +204068 adv +204071 s +204073 o +204079 s +204081 apposition +204084 p +204089 adv +adv +204095 aux +204097 apposition +204101 apposition +s +adv +204109 o2 +204115 o +204119 adv +204122 s +204126 s +204132 o +204134 o +204138 adv +204141 adv +204144 adv +204146 adv +204148 adv +204150 s +204154 adv +204156 adv +204163 adv +adv +204166 s +204173 adv +204177 s +adv +204181 o +204186 s +204195 p +204200 s +204202 p +204207 aux +204216 aux +204221 o +204224 adv +204227 apposition +204231 adv +204233 adv +204236 adv +204238 s +o +adv +adv +204243 adv +204245 adv +204247 adv +204251 p +204253 p +204257 aux +204260 adv +204262 adv +o +adv +204266 adv +o +204270 adv +204272 adv +adv +204275 ellipsis +s +204283 adv +204292 adv +204295 s +204297 adv +204299 o +204305 adv +s +204308 o +204311 o +204314 p +204319 s +204323 adv +204332 o +204335 adv +204341 o +204347 adv +204352 adv +204355 s +204358 p +204361 s +204365 s +204368 o +204370 adv +204374 o +204376 o2 +204378 o +204380 adv +204386 p +204389 o +204392 adv +204394 s +o +s +204401 adv +204403 o +204405 adv +204414 o2 +204425 s +204429 o +apposition +204432 o +adv +204438 adv +204444 s +204446 o +204448 adv +204451 adv +204453 p +204456 s +o +204464 p +204468 adv +204471 adv +s +204475 o +204477 apposition +o +adv +204483 adv +204485 o +204490 o +204493 o +204498 o +adv +adv +204503 adv +204505 o +204518 adv +204523 s +204525 o +204530 adv +204532 o +adv +adv +s +204539 v +204542 o +204551 s +204553 apposition +204555 adv +204558 o +204564 s +204567 apposition +adv +204570 apposition +204574 apposition +adv +204578 adv +204582 s +adv +204585 adv +p +204589 adv +204596 o +204598 s +204601 o +io +204610 o +204616 adv +204620 s +204623 o +204628 adv +adv +204631 p +204636 adv +204641 s +204643 o +204650 s +o +204656 o +o2 +204659 s +204664 adv +204666 s +adv +adv +204671 adv +204673 adv +204677 adv +o +adv +204690 adv +204693 adv +204695 o +204697 adv +204701 adv +204706 o +204708 adv +204711 s +204718 o +204721 o +204728 s +apposition +204733 adv +204740 adv +204742 o +204745 o +204753 adv +204759 adv +s +204762 s +adv +adv +204767 adv +204785 s +204788 adv +o +s +apposition +o +204805 adv +204810 o +s +204813 apposition +apposition +o +o +204820 o +204822 o +204825 o +o +adv +adv +204830 o +204844 adv +204853 s +204858 s +204860 p +204863 adv +204865 s +adv +204868 s +204873 adv +204875 o +o +adv +204879 adv +204881 adv +204888 s +204895 s +204899 o +204901 adv +204905 adv +204912 o +o +204915 o +adv +204921 adv +adv +204933 s +204935 v +204938 adv +204945 adv +204947 adv +204952 adv +204955 adv +204960 o +204962 o +adv +204968 s +204975 o +204977 adv +204983 adv +204987 adv +204991 o +204994 adv +204998 s +205000 o +205002 adv +205007 adv +205012 o +205016 adv +o +205019 adv +205022 o +205028 apposition +205031 adv +205037 adv +205039 s +p +205043 adv +205045 adv +205050 adv +205055 o +205061 adv +o +205064 adv +205066 o +205068 s +205071 o +205073 adv +205075 s +adv +205078 adv +adv +205082 aux +205084 o +205088 s +205090 o +205092 o +205094 apposition +205100 apposition +205103 adv +205105 adv +o +205108 apposition +adv +205115 adv +adv +205118 apposition +adv +205122 s +adv +205126 o +205128 io +205130 apposition +adv +205140 o +205145 o +205147 s +205149 p +205153 o +205155 apposition +205161 o +205163 adv +205166 o +205170 adv +205175 adv +205178 adv +205185 s +205189 s +205192 adv +205198 p +205202 p +205205 adv +205209 aux +adv +205214 apposition +adv +205217 adv +205224 p +205227 adv +205231 apposition +205235 o +205238 s +205242 s +205247 s +205252 adv +205255 adv +205257 adv +205259 o +s +205263 adv +205267 o +205270 o2 +205272 s +205275 p +205277 adv +205279 p +205284 o +205286 adv +205290 adv +205294 p +205296 adv +205298 p +205302 adv +205306 s +205313 adv +205316 adv +205321 adv +adv +205324 v +s +adv +205333 adv +205335 adv +205338 adv +205341 adv +205344 adv +205348 p +205350 p +adv +205353 s +p +205357 s +o +205365 o +205367 apposition +205370 adv +205372 apposition +205374 p +205377 p +205380 v +adv +205384 s +adv +205390 adv +205395 apposition +apposition +adv +o +205400 p +adv +205403 o +205407 apposition +205409 adv +205414 aux +205417 s +205424 o +205427 o +205430 o +205436 adv +s +205439 apposition +p +p +205444 adv +adv +205448 adv +205453 apposition +s +apposition +adv +s +205464 s +205466 apposition +205468 o +adv +205471 adv +205477 s +adv +o +205489 adv +205497 adv +o +205501 adv +205504 o +205508 o +apposition +205512 o +205516 s +205518 apposition +205520 adv +205526 o +205529 adv +205536 o +205541 o +apposition +205546 o +205548 o +205552 adv +205554 o +205557 s +205559 apposition +adv +205562 adv +o +205569 s +adv +205574 o +205579 o +205586 adv +205590 s +io +o +o +adv +205596 apposition +205598 aux +205600 apposition +s +205608 s +205616 o +205622 adv +205625 p +205628 apposition +p +205635 p +205637 io +o +205640 s +s +adv +205647 o +s +205657 s +205659 adv +205662 adv +adv +205669 s +adv +205677 s +205681 apposition +205686 io +205689 o +205693 io +s +205696 apposition +adv +205699 s +p +205707 o +205712 s +205716 adv +adv +205724 s +205726 adv +v +205733 s +o +adv +205745 o +io +205750 adv +205756 apposition +s +205761 adv +205766 o +205768 o +205771 o +205775 adv +s +205780 io +adv +o +io +205786 o +205791 adv +205794 o +205801 s +o2 +adv +205805 apposition +205809 s +v +205816 adv +205818 s +p +205827 o +205830 s +205837 p +205839 o +o +205842 o +adv +205845 p +205855 o +adv +205858 adv +205866 adv +205868 adv +205873 o +205878 s +adv +205882 o +o +205892 o +205895 v +205901 s +o +205906 adv +205911 s +o +s +205917 s +205920 adv +adv +o +adv +o +205929 adv +205931 s +205935 o +205938 o +p +205944 o +205946 adv +205949 adv +205952 s +o +205958 s +205967 o +205969 s +205972 p +205977 adv +205979 p +205982 s +205986 s +205989 adv +205991 io +205994 s +206000 s +adv +206005 s +o +206008 o +206010 o +206014 adv +206017 adv +adv +206022 io +206024 s +206027 p +206029 o +206033 s +o +206039 adv +adv +206044 o +adv +206049 s +206051 adv +206053 adv +206055 o +o +206062 adv +o +206066 o +206070 s +206075 s +o +206084 s +adv +adv +adv +206091 adv +206095 adv +206098 o +206100 aux +206110 s +206113 o +206117 o +206119 o +adv +206124 s +adv +o +206135 o +206138 p +206144 s +206149 adv +o +206155 s +o2 +206163 adv +206166 s +o +206171 adv +206173 o +adv +206176 o2 +206182 s +o +206190 adv +206194 io +o +206199 s +206203 s +o2 +206209 adv +206212 adv +206215 adv +206218 o +206220 o +adv +adv +206224 v +206226 adv +s +206229 o +206232 adv +s +o +206238 s +adv +o +206245 p +206248 s +206251 io +206256 s +adv +o +206260 o +206263 adv +adv +206274 p +206277 p +206281 io +o +206285 p +206290 o +206297 s +o +o +206303 s +o +206311 adv +206316 o +206320 adv +o +adv +206325 p +206328 apposition +apposition +206334 adv +o +adv +206340 o +206345 o +s +206349 adv +206354 v +206356 aux +206358 apposition +apposition +206365 o +206367 s +206369 adv +206373 p +206375 s +206377 s +206380 v +adv +206385 io +s +206389 o +206392 aux +206397 o +p +206402 s +adv +o +206410 s +o +206414 o +206419 o +206421 io +206424 o +206429 s +206431 adv +206433 adv +206438 adv +o +206442 adv +o +206446 s +o +206449 o +206453 adv +206461 s +206464 adv +206468 s +206479 apposition +206483 apposition +206487 adv +o +s +206493 adv +io +o +206499 p +206503 io +o +206507 p +206512 adv +206515 s +adv +206520 adv +s +adv +adv +206525 adv +206527 s +o +206531 s +206536 adv +o +206540 io +206547 o +206549 s +o +206554 adv +o +o +206560 s +adv +206563 adv +206566 adv +206568 s +adv +206573 s +206577 o +adv +206581 s +206589 s +206594 o +206601 apposition +206605 topic +adv +206610 o +206612 o +206616 s +206618 o +206622 s +206629 s +206633 s +206637 o +206641 s +206648 s +o +s +206654 s +o +adv +206661 adv +o +s +206665 adv +206667 p +206671 adv +206675 o +206677 o +206683 s +206690 o +206695 s +206697 apposition +206699 adv +adv +adv +o +206705 adv +206711 o +206716 adv +206718 adv +206720 adv +s +206726 p +206729 apposition +206732 p +206734 s +206736 apposition +adv +v +206742 adv +206746 adv +206748 s +o +206755 adv +206758 s +apposition +adv +206765 o +s +adv +206776 adv +206784 apposition +s +206788 o +206790 o +adv +206795 o +206800 s +206807 adv +206812 s +206818 s +206820 adv +206823 adv +206828 adv +o +s +206837 s +206839 adv +206842 adv +206847 o +206849 s +206853 aux +206855 apposition +p +206860 adv +206863 adv +206869 s +206873 apposition +206875 adv +206885 o +o +206888 s +adv +206893 adv +s +206898 adv +206900 adv +206907 adv +206911 o +s +206915 adv +s +206919 apposition +206921 adv +206925 adv +206930 o +206934 adv +206937 o +206941 o +206945 adv +adv +206951 o +s +206955 o +206959 o +206965 adv +o +206968 p +o +206975 o +206982 adv +206984 aux +apposition +206989 o +206994 adv +206999 adv +207004 o +adv +207019 s +apposition +adv +io +adv +207026 o +207034 adv +207037 apposition +207041 s +adv +s +adv +207050 s +207054 adv +207062 adv +o +207071 s +adv +o +207077 s +o2 +207083 s +207089 adv +207092 o +o +207097 adv +207099 o +207102 adv +207107 s +207109 apposition +207112 apposition +207114 p +o +207121 s +207123 o +o +207127 o +207131 adv +207134 o +207139 o +207141 adv +207147 o +207149 adv +207153 adv +207158 adv +207160 s +207164 p +207169 s +207171 s +207175 adv +207182 io +o +207187 o +207191 o +207196 o +207200 adv +207213 aux +207221 s +o2 +207228 s +207238 o +207241 s +adv +207244 adv +v +adv +207251 o +207254 o +207256 p +207258 apposition +207264 adv +adv +207270 adv +io +adv +207281 s +207285 apposition +207289 apposition +207304 s +o +adv +207309 o +s +adv +207318 adv +207322 adv +207330 adv +207335 s +o +207341 o +207344 o +207351 o +207353 adv +207358 o +207367 o +adv +207375 s +207378 apposition +s +io +o +p +207387 s +adv +o +207391 p +o +adv +207397 adv +207403 s +207405 adv +207409 adv +207412 p +207415 tail +o +207422 adv +207424 adv +207426 o +207434 s +o +adv +207439 apposition +207443 s +207446 o +adv +207449 adv +207458 s +207461 s +o2 +207467 s +207469 o +o +adv +o +207474 p +207482 o +207487 o +207490 p +apposition +io +adv +adv +207501 io +207503 s +o +207506 aux +adv +207510 o +207513 o +207517 o +o +207522 o +207524 aux +207527 o +207530 o +207534 o +o +207539 adv +o +207542 aux +207546 s +207549 adv +o +207554 o +207556 o +o +207561 o +o +207568 o +207575 adv +207578 adv +207581 o +207587 adv +207591 adv +o +adv +o +207598 adv +o +207602 adv +s +o +207606 s +207608 apposition +s +207612 adv +207614 adv +207619 o +207621 s +207626 adv +s +io +o +207634 s +o2 +207637 adv +207639 o +adv +207642 p +207647 s +207649 adv +207651 o +207653 s +207659 s +o +207662 o +207665 o +adv +207669 p +207673 p +207675 apposition +207678 adv +207684 o +207686 s +207692 s +207695 apposition +s +207700 adv +207702 o +s +207705 o +207711 aux +207713 o +207715 adv +207718 o +v +207722 s +adv +207725 adv +adv +adv +io +207730 apposition +adv +207733 o2 +adv +207737 adv +207739 adv +207741 adv +207745 o +207753 adv +o +207756 adv +207759 o +207763 apposition +adv +207770 adv +207772 adv +207780 adv +adv +o +207785 adv +207788 o +io +207792 adv +o +s +o +207798 apposition +s +adv +207809 s +207811 adv +207814 p +adv +207833 adv +adv +207837 adv +207846 v +adv +207852 o +s +adv +207856 adv +207862 adv +adv +207866 s +207869 apposition +207871 adv +adv +207874 adv +adv +o +adv +207881 adv +adv +207885 apposition +207887 apposition +p +adv +o +207894 adv +207897 adv +207900 v +s +207916 apposition +207921 s +v +o +adv +207929 apposition +207941 adv +207944 adv +adv +207950 s +207954 p +207956 o +207961 s +s +207964 apposition +s +207968 adv +207970 adv +207972 apposition +207974 adv +207976 adv +207979 v +adv +207983 o +207992 adv +207998 adv +208001 s +208007 adv +208010 adv +208012 s +208014 adv +208017 p +apposition +p +208023 adv +208025 o +208028 s +208032 s +208034 adv +208037 o +208042 s +208044 aux +208047 adv +208050 apposition +v +208053 adv +s +208056 adv +adv +208060 adv +208063 apposition +adv +p +208068 adv +s +208073 o +apposition +208077 apposition +208079 apposition +208084 adv +o +208087 aux +apposition +o +208091 adv +208094 adv +o +208102 apposition +adv +adv +adv +208116 s +adv +208120 adv +208126 adv +208129 s +208132 p +208138 adv +208140 adv +208142 s +208145 o +208148 apposition +v +208155 adv +adv +208160 adv +208166 adv +208169 o +adv +adv +208173 s +o +208178 v +adv +s +apposition +208186 apposition +208194 s +208198 s +208203 s +o +adv +208213 adv +o +208216 s +208218 apposition +208223 adv +208227 apposition +adv +208231 s +208238 adv +208255 apposition +208268 o +adv +208271 o +208280 adv +adv +208283 o +o +208288 adv +o +208291 v +208296 adv +adv +208299 s +o +208304 o +208306 aux +208315 o +208327 p +208331 p +208333 adv +208336 o +208340 p +208344 s +208347 adv +208350 adv +208355 s +208363 s +208367 s +208372 adv +208381 adv +208384 adv +208394 adv +208398 adv +208401 o +208408 s +adv +208412 s +adv +208416 s +208424 o +s +208428 o +208436 o +208441 aux +208443 apposition +apposition +208446 adv +208448 adv +adv +208453 apposition +adv +adv +s +adv +208460 o +208469 adv +208471 adv +apposition +adv +s +adv +o +208480 s +adv +208485 adv +o +208488 o +adv +adv +208493 p +208495 adv +208502 adv +s +208507 s +208511 s +208514 adv +208518 o +208520 adv +208523 o +s +208528 o +o +adv +208539 p +s +adv +adv +adv +208546 adv +208549 v +208554 s +208556 p +adv +208563 adv +208567 o +208569 s +o +adv +208575 adv +208578 adv +adv +208583 adv +208587 adv +208590 s +208594 o +o +208597 s +s +208602 adv +208604 adv +208609 o +208614 adv +208616 o +apposition +v +208625 adv +208629 o +io +208632 o +208634 adv +208639 o +208641 o2 +208647 s +208649 adv +208651 o2 +208654 s +o +apposition +208659 apposition +208664 adv +adv +208668 adv +208674 o +208683 adv +208689 s +adv +208694 adv +208700 o +208708 s +208711 p +208719 apposition +208721 s +apposition +208728 adv +208732 adv +o +adv +208744 s +208746 o +208750 adv +208753 s +208758 v +o +208776 adv +208779 s +208782 adv +208788 s +208791 adv +208796 o +208802 adv +208808 adv +208810 adv +adv +208815 adv +adv +208820 adv +208822 o +208825 adv +208831 s +o +208834 adv +adv +208840 s +208842 adv +208844 adv +208849 apposition +208853 o +s +208857 adv +208860 adv +adv +208866 apposition +208868 adv +208870 adv +208873 adv +208875 adv +adv +o +s +208880 o +adv +208883 o +208887 adv +adv +adv +208891 o +adv +208896 adv +o +adv +208902 o +208905 s +208909 adv +208911 adv +208916 apposition +208920 adv +adv +208927 s +208936 adv +208941 adv +adv +208944 adv +208950 o +208956 s +208958 o +208962 o +208965 o2 +208967 p +208969 adv +208971 adv +208978 adv +208980 adv +208987 o +208992 s +208994 adv +adv +208998 apposition +209003 adv +s +adv +209007 o +209013 adv +209016 adv +209018 adv +209021 adv +209025 s +209031 apposition +209035 o +209039 apposition +209044 adv +209046 adv +o +209053 o +209058 o +s +209062 o +o +209066 adv +s +adv +209073 adv +209078 o +apposition +v +209082 s +209086 s +209088 apposition +209090 o +209092 adv +209098 adv +209100 adv +adv +209103 s +209109 s +o +209112 adv +209116 apposition +s +209122 v +209124 adv +209127 s +209129 adv +209133 s +adv +209139 o +209144 apposition +s +209147 adv +209151 apposition +s +adv +209163 o +209165 s +apposition +adv +209170 adv +209174 adv +209178 adv +209182 adv +s +209185 apposition +209187 o +209189 adv +209194 s +209203 apposition +o +209208 p +209215 apposition +s +adv +209220 adv +adv +adv +209224 adv +209227 s +209233 s +adv +o +209237 adv +adv +209241 adv +209248 adv +adv +209251 s +209259 adv +adv +209264 o +209267 adv +209269 o +209271 apposition +209276 o +209280 adv +adv +209289 s +209292 o +209295 s +209297 p +209304 adv +209306 s +s +209314 adv +209317 s +209319 apposition +209325 p +209329 adv +adv +209332 o +adv +209341 adv +adv +adv +o +209346 aux +209353 adv +209357 adv +209359 adv +209365 o +209367 apposition +adv +209375 apposition +apposition +apposition +s +adv +adv +adv +209384 p +209387 apposition +209389 adv +209391 apposition +apposition +209394 p +209400 p +209402 s +209405 p +209407 s +209410 apposition +209412 adv +apposition +adv +s +209420 adv +209422 o +209429 adv +209432 p +209437 o2 +209439 p +209444 adv +o +s +209448 apposition +209450 adv +o +209455 adv +o +adv +209459 adv +adv +o +io +209469 s +209471 s +adv +adv +209478 o +209484 adv +adv +209488 o +adv +209492 io +209496 adv +o +v +209500 adv +209507 s +209510 adv +adv +o +209516 adv +209518 s +209522 o +209526 o +o +v +209533 adv +adv +o +209537 adv +209539 adv +209541 o +adv +209548 p +209550 s +209552 apposition +adv +s +209562 adv +adv +209567 o +adv +s +209577 adv +adv +209582 o +209584 p +209587 o +209597 apposition +209599 adv +209601 adv +209603 adv +209605 apposition +o +209609 adv +209614 s +209619 s +adv +209622 adv +209632 adv +adv +209636 adv +209642 apposition +s +209647 adv +209651 adv +o +o +s +209664 adv +adv +209670 io +209672 o +adv +209675 o +209677 adv +209681 o +adv +209685 s +209687 adv +209697 topic +209699 s +209701 apposition +adv +v +209707 adv +209711 o +209714 adv +209719 s +209729 o +s +209738 adv +o +209745 s +209748 s +p +209754 s +p +209760 s +p +209764 adv +o +209771 adv +209778 adv +209785 aux +209788 apposition +209790 adv +209792 adv +vc +p +apposition +209800 adv +o +209804 adv +209813 s +209816 adv +209818 apposition +209821 o2 +209823 adv +209826 s +209830 adv +o +adv +209839 s +o +209842 adv +s +o +209846 adv +209848 o +209853 adv +209861 adv +209864 adv +p +209870 s +209872 adv +209875 o +209881 io +209885 s +adv +o +209889 adv +209893 s +adv +209902 adv +s +209906 adv +209911 s +209916 s +209918 adv +o +209924 adv +o +o +209928 o +209932 o +209938 s +adv +209942 s +209944 s +o +209949 s +209953 o +209955 p +209963 adv +209972 adv +s +o +209977 adv +adv +209984 s +adv +209997 adv +210001 s +210004 adv +210009 p +210016 s +210018 o +210021 s +210025 adv +o +s +210031 adv +210034 adv +210037 o +210040 adv +210048 s +o +210053 s +210059 adv +o +210064 adv +210066 apposition +s +210072 adv +s +210080 apposition +210082 p +210087 o +adv +210092 adv +210098 s +adv +o +210105 adv +o +210110 adv +adv +210113 io +o +210123 adv +adv +210126 adv +210134 adv +s +210140 o +210150 adv +210152 adv +210156 s +210159 adv +210164 adv +adv +adv +210169 o +210171 s +adv +210176 s +adv +210181 adv +210187 o +210189 s +210197 adv +adv +210203 adv +aux +210207 s +210209 apposition +adv +210212 v +adv +210217 o +210222 adv +s +adv +210227 adv +210230 o +o +210236 adv +adv +210242 s +adv +o +210246 o +adv +210253 o +adv +210258 o +adv +o +210267 adv +s +210271 o +210273 s +210278 s +210282 o +apposition +adv +adv +210288 s +o2 +210291 adv +210293 adv +210296 io +210299 o +210304 p +210309 s +210313 apposition +s +io +210321 adv +210324 o +210329 adv +s +210335 apposition +210337 apposition +210341 o +o +210345 adv +o +210351 o +o +adv +210359 adv +210362 adv +o +adv +s +210368 adv +210373 s +210377 adv +210382 adv +s +apposition +adv +210391 adv +210396 s +210402 adv +o +210405 adv +210415 p +s +210424 o +210426 adv +210428 p +o +210431 p +210439 adv +o +adv +o +adv +210454 adv +adv +210460 o +adv +210466 adv +adv +210472 o +210476 o +s +210483 adv +210486 s +210488 s +210490 adv +210494 adv +210498 s +210503 s +adv +o +210508 o +s +adv +o +210518 o +210528 apposition +adv +210535 o +210545 s +adv +210551 o +210554 apposition +210567 apposition +adv +210572 adv +o +210578 s +210584 s +210587 adv +210590 s +210593 o +210597 adv +210600 o +210603 adv +210609 s +210615 apposition +210624 adv +adv +210628 o +o +210634 apposition +210637 o +210639 adv +210641 o +o +adv +210651 o +210660 adv +210664 adv +210668 o +210671 o +s +210674 o +adv +210682 adv +210684 o +adv +210688 s +210690 apposition +o +210695 o +210697 apposition +210701 adv +adv +s +210706 adv +210708 o +210710 adv +210712 o +210716 s +o +210722 o +210726 aux +210732 s +210735 io +210738 adv +p +210741 adv +210744 adv +210747 adv +o +210750 adv +210759 adv +210762 apposition +210766 adv +adv +210769 adv +210773 adv +210776 s +210778 adv +210782 apposition +adv +210788 adv +210791 o +210794 o +210796 adv +210799 io +210803 adv +210807 s +adv +210811 s +210813 adv +210817 v +210819 adv +210824 adv +o +210827 apposition +210829 s +210833 adv +210836 adv +210842 o +210849 o +210852 adv +210857 o +210860 o +210865 s +adv +o +adv +210874 s +p +210878 adv +210885 o +210887 adv +210889 apposition +210892 o2 +adv +210904 adv +210911 s +210914 s +210919 adv +o +p +o +210928 adv +210930 io +210934 adv +s +210941 adv +o +210944 apposition +210949 adv +210954 adv +210960 s +210966 adv +210969 adv +210972 apposition +adv +adv +210977 adv +210983 s +210987 apposition +s +io +210991 s +v +210994 adv +adv +210997 adv +s +211000 apposition +o +211004 adv +o +211007 o +adv +211010 o +211012 adv +211019 adv +211023 adv +211025 adv +adv +211036 s +211040 adv +211045 adv +211049 adv +211058 s +211060 adv +211063 s +o +211067 apposition +211073 adv +o +211077 io +211079 adv +o +211085 o +s +o +211089 s +adv +211098 adv +211101 adv +211104 adv +adv +o +211110 adv +211114 s +211116 o +adv +o +211120 o2 +211126 o +adv +adv +o +211134 adv +211139 adv +211142 apposition +o +211148 s +211150 adv +211155 adv +211161 s +adv +o +211167 topic +adv +s +o +p +211176 apposition +211184 adv +o +211189 s +o2 +211192 o +211198 s +211200 apposition +adv +p +211207 adv +o +211213 apposition +211217 o +211221 adv +211227 adv +211231 aux +211234 apposition +adv +o +o2 +211239 s +o2 +211243 adv +211246 apposition +211248 adv +211252 adv +o +211255 adv +211264 adv +211267 p +211269 apposition +211271 io +211273 o +211275 s +adv +211283 p +211287 adv +211289 adv +211291 p +211295 apposition +211297 adv +211303 apposition +o +211306 adv +apposition +211309 o +s +211317 adv +211320 adv +adv +io +o +211325 o +apposition +211330 aux +211333 apposition +adv +211336 o +211342 adv +211347 io +211350 adv +211360 s +211363 adv +o +211369 adv +211372 o +211374 o +211376 adv +211381 aux +211385 o +211395 apposition +211397 apposition +adv +211402 adv +211405 s +211408 p +211410 adv +211412 adv +211414 s +211416 io +o +adv +211421 apposition +adv +adv +s +211426 adv +adv +211432 apposition +s +adv +211438 adv +211442 apposition +211444 adv +211448 o +io +211458 s +adv +211462 s +o +211465 s +211468 s +p +211476 o +211480 s +211486 s +211488 o +211492 aux +211498 o +211501 apposition +adv +211504 s +211506 s +211509 o +211511 s +211516 o +211518 adv +211523 apposition +211525 p +211529 o +adv +211538 adv +adv +211543 o +adv +211549 adv +adv +adv +adv +211554 o +211558 adv +211563 o +o +211566 s +211569 s +211572 adv +211580 adv +adv +o +211586 adv +211589 adv +adv +211595 s +o +211598 adv +211606 o +adv +211611 o +211613 aux +o +211619 adv +o +adv +o +211624 o +211629 adv +211633 v +adv +211639 adv +211642 s +adv +211646 apposition +211651 adv +211657 adv +211663 o +s +211667 o +adv +211673 o +adv +adv +211678 adv +o +211682 adv +211688 s +211690 adv +o +211694 adv +adv +211699 o +211703 s +o +211706 adv +211708 adv +211714 o +211716 apposition +211722 aux +211725 o +adv +adv +211730 s +211737 s +adv +211744 s +211747 adv +211749 adv +211753 o +211756 adv +o +p +adv +s +211764 adv +o +p +211770 apposition +211775 adv +211778 adv +adv +211785 o +adv +adv +211797 s +211806 aux +s +211810 adv +v +o +211814 adv +o +s +211823 s +211826 adv +o +211829 s +o +211833 adv +o +211837 apposition +adv +adv +adv +211842 o +211847 v +adv +211852 v +adv +211861 o +adv +211865 o +211869 s +adv +o +211873 adv +211879 s +adv +o +211883 o +211887 s +211889 o +o +211894 adv +o +211897 s +211899 adv +p +211903 o +o +211907 adv +211911 s +211913 adv +211918 s +211920 adv +211927 adv +211933 o +211937 s +211944 o +p +211953 adv +s +o +adv +adv +211959 adv +211961 adv +s +211969 adv +v +211972 o +211975 adv +211978 o +211984 s +adv +adv +o +211991 adv +adv +211995 apposition +211997 adv +212000 o +212004 adv +212009 s +212014 apposition +212016 apposition +apposition +p +212022 apposition +adv +adv +v +212030 adv +212035 o +212040 s +io +o +212046 io +212052 adv +s +o +o +apposition +212059 adv +212062 o +212066 adv +212069 adv +212074 o +s +adv +adv +212081 adv +s +212086 apposition +212092 adv +212097 adv +212101 o +212103 o +212105 adv +212107 s +212110 o +212112 adv +212114 adv +212116 s +212121 adv +s +io +o +o +adv +s +212129 adv +212137 s +adv +212140 o +212144 adv +212147 o +212153 adv +212157 adv +212161 s +o +212164 aux +212166 o +212171 o +s +212176 adv +212178 s +212189 adv +212191 adv +212193 s +o +212198 s +212201 adv +212203 adv +212208 adv +212211 adv +o +212214 adv +212217 adv +212221 s +adv +o +212225 adv +212229 adv +adv +adv +o +212237 adv +212239 adv +212241 o +212244 p +apposition +212248 adv +adv +212254 adv +212257 s +adv +212262 adv +212266 adv +adv +212269 o +o +212278 o +212283 o +p +apposition +212293 adv +212297 s +s +212303 s +212305 apposition +212307 adv +212310 o +212317 adv +212322 s +212328 adv +adv +212334 v +adv +212338 v +212344 s +212347 p +212350 adv +adv +s +212357 o +aux +212364 s +adv +212368 adv +adv +212372 apposition +212376 adv +212378 o +212386 o +212388 s +212391 o +212398 o +212400 adv +adv +212404 apposition +212406 o +io +212409 adv +212412 o +212415 adv +o +212419 o +212424 adv +s +o +212431 p +adv +212434 o +212436 adv +212445 o +s +adv +212457 adv +212461 adv +adv +o +o +212466 aux +adv +s +212470 apposition +apposition +212473 adv +212476 apposition +212481 adv +212488 adv +212491 adv +212497 adv +212500 adv +212505 p +212509 adv +212512 adv +212514 o +o +212517 p +212524 s +212529 adv +212532 p +212534 adv +o +212537 o +212540 o +212542 adv +212545 adv +adv +212554 o +apposition +212557 adv +adv +o +212561 p +212567 s +212569 s +o +212574 io +s +212580 o +212582 adv +212585 adv +212590 adv +s +212593 adv +212595 adv +adv +212600 adv +adv +o +io +212607 adv +o +212614 adv +adv +212619 o +212622 adv +212624 o +212630 adv +adv +212637 v +212640 adv +adv +adv +adv +212647 o +v +212651 adv +212656 o +212661 adv +s +adv +212666 adv +212672 s +adv +212679 adv +212682 adv +adv +212695 s +adv +adv +adv +212702 apposition +212707 o +212713 adv +212715 adv +apposition +p +212721 s +o +212725 s +212736 o +s +212740 adv +212743 adv +212748 p +s +212752 p +apposition +adv +212757 adv +212761 apposition +212765 adv +212768 s +adv +212773 adv +adv +212779 p +212782 s +adv +o +212786 p +o +adv +adv +o +o +adv +212796 adv +apposition +212799 adv +adv +212804 s +212806 adv +212810 o +212813 apposition +adv +p +s +212821 s +adv +212826 o +212829 adv +adv +212832 o +212838 o +212842 adv +o +212848 adv +212851 adv +o +212856 o2 +212861 adv +212866 adv +212871 s +adv +adv +adv +212880 s +212888 apposition +212891 apposition +212896 o +adv +212903 o +io +212907 o +adv +adv +adv +212915 o +212917 s +212919 adv +212926 adv +212930 o +212935 o +s +212942 adv +adv +212949 adv +212952 o +212954 apposition +212957 adv +212961 apposition +adv +212968 s +212970 apposition +212973 adv +212975 o +212985 adv +212990 adv +adv +212995 adv +adv +212998 adv +adv +213007 o +213014 adv +213017 o +213019 s +213022 s +adv +213025 s +adv +adv +adv +213030 adv +p +s +213045 adv +o +213048 adv +v +213054 s +o +213060 o +213066 adv +adv +adv +o +s +213075 adv +213078 s +adv +213086 adv +s +o +213090 s +213092 apposition +213095 s +213097 apposition +213099 adv +213101 adv +o +213105 adv +213109 adv +o +213112 s +apposition +213118 topic +s +adv +213122 s +o +213125 s +213130 adv +213133 adv +adv +213140 adv +adv +213143 o +213145 p +213147 s +213149 apposition +adv +213154 o +s +213157 apposition +213161 o +213164 adv +213169 adv +213171 adv +213173 adv +213178 adv +213182 adv +213187 adv +adv +adv +213192 s +213195 apposition +213200 adv +adv +213206 s +v +adv +o +213218 adv +213220 adv +213222 s +adv +s +adv +adv +213231 s +adv +o +213236 s +213243 adv +213246 o +213249 adv +o +o +adv +s +v +213258 s +o +o +o2 +213266 adv +213270 o +adv +213275 s +o +213278 adv +213284 v +adv +adv +213292 adv +adv +213297 o +213300 s +213304 s +213306 adv +213312 adv +213315 o +apposition +213319 adv +213322 adv +213327 adv +213330 adv +213334 s +adv +213337 adv +o +213341 adv +213346 adv +o +o +adv +adv +213353 s +213355 adv +213357 s +213364 adv +o +213367 apposition +io +213370 adv +adv +213374 apposition +p +o +213379 apposition +adv +213383 adv +adv +213386 adv +213389 apposition +213393 apposition +213395 apposition +213397 s +adv +213401 apposition +adv +adv +213407 o +213410 adv +213413 s +p +213418 p +213420 apposition +adv +213428 adv +adv +adv +213434 s +adv +213440 o +adv +213447 apposition +213449 adv +213451 apposition +v +213454 adv +213457 adv +213461 o +213463 io +213466 adv +213468 p +213471 adv +213479 s +213481 o +o +adv +213486 s +213489 adv +213492 adv +s +o +213496 s +213499 adv +213503 o +213507 s +213511 apposition +adv +adv +213515 adv +213518 s +213525 o +213529 o +213532 adv +213534 o +o +adv +213538 s +apposition +adv +o +213545 s +213549 o +adv +213556 o +adv +213561 s +213566 apposition +213568 p +213570 adv +213572 s +213574 o +213582 adv +213584 adv +s +213587 adv +adv +213591 adv +213599 adv +adv +o +213603 v +adv +213609 adv +o +213612 s +adv +213615 s +adv +adv +213621 adv +213625 adv +adv +213629 o +213644 o +o +213647 adv +v +213653 o +213658 s +213660 adv +213666 adv +adv +213669 adv +o +s +213676 adv +213679 adv +213684 s +adv +213688 apposition +p +adv +adv +adv +213696 s +o +adv +213703 adv +s +213710 adv +213717 adv +213719 o +213721 s +adv +213727 o +213729 adv +213732 o +213734 apposition +213736 apposition +adv +adv +adv +s +213748 adv +213751 o +s +213755 adv +adv +213758 adv +213760 adv +213764 o +213767 adv +213769 o +213774 adv +213782 o +213784 s +213787 io +adv +adv +213792 apposition +o +213796 p +213798 o +213803 adv +213806 o +adv +adv +213810 io +213812 s +o +213820 s +213822 adv +213825 apposition +213827 adv +adv +213832 adv +o +adv +213839 o +s +213842 p +apposition +213845 adv +adv +adv +213850 adv +o +213857 s +p +213861 s +213863 apposition +213865 adv +213871 s +213874 adv +213879 apposition +213881 p +213884 o +adv +apposition +213888 adv +213892 o +213894 apposition +213898 o +adv +213902 adv +213904 p +213914 s +io +213920 adv +adv +213924 adv +adv +213929 s +213932 adv +213934 adv +213938 o +213941 adv +s +213946 adv +213949 adv +adv +213954 adv +s +213959 adv +213961 o +s +o +p +213967 adv +adv +213973 aux +213977 s +o +adv +io +213983 adv +213985 adv +adv +adv +213989 adv +213996 adv +213999 s +apposition +o +adv +o +214010 o +apposition +214016 o +214018 adv +o +214021 adv +o +o +214026 p +214028 adv +adv +adv +io +214033 adv +adv +o +adv +214038 io +214044 s +adv +214049 vc +adv +214052 p +214054 adv +214060 o +s +214064 adv +214066 s +v +adv +214070 adv +adv +214074 adv +214076 o +214081 s +214084 adv +214089 adv +o +214093 adv +o +adv +214099 s +214101 adv +214106 s +adv +o +214112 o +214120 o +214122 o +214130 adv +214134 o +214136 s +214138 adv +214141 o +214147 adv +adv +214151 adv +214157 apposition +214159 adv +214161 apposition +214164 adv +adv +214168 s +adv +214173 s +adv +adv +o +adv +214180 s +o +214185 adv +214198 adv +adv +214205 apposition +214208 apposition +214210 apposition +v +214218 o +214222 adv +s +214229 adv +o +214233 adv +214235 o +214238 adv +o +s +adv +214246 adv +o +214251 o +214255 o +p +214260 s +o +214266 adv +214273 adv +adv +adv +o +s +adv +214282 o +io +214289 adv +adv +214295 topic +s +214298 p +214300 adv +214302 s +214307 adv +214311 adv +o +o +214316 adv +adv +214324 v +o +214331 adv +214334 adv +o +apposition +214341 adv +214344 s +214346 adv +214351 adv +s +adv +o +adv +adv +214358 adv +214362 s +o +214365 p +214372 s +adv +214375 o +io +214379 adv +214383 s +214386 v +214391 s +214393 adv +adv +o +adv +o +apposition +214403 p +adv +214408 s +214411 apposition +214417 apposition +214421 apposition +214425 apposition +214427 apposition +214434 o +214438 s +214441 adv +214443 o +214446 adv +214449 apposition +214452 adv +214458 o +214465 adv +adv +214469 adv +214472 adv +214475 adv +p +o +214480 adv +214487 o +214491 adv +adv +214494 adv +o +214500 apposition +apposition +apposition +p +214507 apposition +apposition +214511 adv +o +214514 o +o +214521 s +214523 apposition +apposition +214526 s +214528 adv +o +o +adv +214536 s +apposition +214539 adv +adv +adv +adv +o +214547 aux +214553 aux +214555 aux +214558 o +o +214563 apposition +214567 adv +214569 s +p +214573 adv +o +adv +214580 adv +s +214585 adv +214588 s +adv +o +214592 adv +adv +214600 adv +adv +214603 s +214605 adv +214611 adv +adv +adv +214618 adv +adv +214621 adv +214626 adv +adv +214629 adv +214635 adv +214642 s +adv +adv +o +214652 p +s +214662 adv +214666 adv +214675 aux +214677 o +214683 s +214688 o +214695 o +adv +214703 adv +214705 adv +214708 adv +214710 adv +214714 adv +o +214719 o +214722 adv +214728 adv +adv +214736 s +o +214740 apposition +apposition +214744 adv +214749 adv +o +adv +214753 adv +adv +o +214758 apposition +214760 apposition +214764 apposition +o +214770 s +adv +214774 adv +io +o +adv +adv +214782 o +io +214791 o +214793 o +o +o +214798 adv +s +adv +o +214810 aux +214818 o +214820 s +214828 s +214831 adv +214835 adv +214839 o +214843 apposition +214845 adv +214847 adv +214850 adv +o +214853 o2 +214859 o +214862 adv +214864 adv +adv +214867 adv +214871 o +s +adv +adv +214876 adv +214879 adv +214883 apposition +p +adv +214890 o2 +214893 adv +214895 adv +214898 s +io +214901 adv +214904 adv +214909 o +214911 p +214916 o +214918 adv +adv +o +adv +o +214924 o +214927 apposition +214931 adv +214933 o +o +s +214943 adv +adv +o +214950 adv +214957 s +s +214966 o +214969 adv +s +214973 adv +214975 apposition +o +adv +214979 adv +s +214989 s +214991 adv +214993 o +214997 aux +215004 o +adv +215008 o +apposition +adv +adv +215018 o +adv +215022 s +215028 s +215030 s +215037 o +215042 apposition +adv +o +adv +215051 adv +215054 s +215057 adv +o +215065 s +adv +o +215070 io +215072 adv +adv +215077 adv +s +215082 o +s +s +215094 o2 +215098 adv +215103 s +o +adv +215107 adv +215109 p +adv +215118 adv +s +215122 o +215127 s +v +adv +215134 s +215137 adv +215144 s +o +215158 adv +215164 adv +215171 adv +o +215175 adv +adv +215179 s +adv +215186 adv +s +215189 adv +215191 adv +215197 adv +215199 s +215207 s +215210 v +215212 o +215215 adv +215222 adv +adv +adv +215227 apposition +215229 adv +215234 adv +o +s +215238 adv +215244 s +215251 p +215255 p +215262 s +215271 adv +v +215274 o +215276 adv +adv +215283 apposition +215288 v +215292 s +215294 apposition +adv +adv +adv +adv +215301 adv +215304 o +s +apposition +adv +adv +215312 adv +215314 adv +215316 adv +adv +215329 s +adv +o +o +215334 adv +o +s +adv +adv +215344 o +215346 o2 +215348 o +215351 p +215357 s +215361 apposition +215363 p +215365 adv +o +215368 adv +215370 adv +215372 o +215376 adv +s +215379 apposition +215381 adv +o +215384 adv +215386 adv +215390 o +215394 s +p +215397 adv +adv +adv +215402 adv +215407 apposition +o +215418 apposition +adv +215423 o +s +215426 adv +215431 adv +215437 o +215439 adv +215441 o +215446 adv +o +adv +215454 adv +215459 adv +215461 o +215464 o +adv +215467 adv +o +215473 s +215475 adv +adv +215481 adv +adv +215484 adv +215488 adv +215490 o +215494 adv +215501 adv +215503 o +215507 o +215509 adv +215513 s +adv +215516 adv +215523 adv +adv +adv +adv +io +215529 apposition +adv +215535 adv +adv +adv +215541 adv +adv +o +adv +215547 adv +215549 apposition +v +io +215554 adv +215557 apposition +215561 adv +215565 o +o +215568 s +adv +215573 io +o +215578 adv +215580 adv +215585 adv +adv +215588 o +adv +215593 adv +215595 apposition +215597 o +215601 adv +s +215606 adv +215610 adv +o +s +215618 adv +215622 adv +adv +215631 adv +adv +215634 adv +215638 adv +o +215644 o +io +215651 adv +adv +adv +215662 o +s +adv +215668 s +215676 adv +adv +215679 s +215683 o +o +215689 s +215693 adv +adv +215700 topic +s +adv +adv +o +215709 adv +215711 adv +215713 adv +s +o +215717 adv +215720 s +o +215730 s +215732 adv +o +215736 adv +215738 io +215741 adv +215745 adv +adv +o +215752 o +adv +adv +215758 adv +o +s +215768 o +adv +215774 adv +215776 adv +215781 s +215785 o +s +215788 o +215791 apposition +s +adv +215795 adv +215799 adv +215802 adv +o +215810 adv +215812 s +adv +adv +adv +215820 s +215823 adv +215825 o +215829 adv +215834 o +215837 apposition +215841 o +215849 o +s +215853 o +s +215858 apposition +adv +s +215862 adv +215864 s +215866 o +215868 adv +215872 o +215874 o +215879 adv +215882 adv +215884 o +215896 adv +215898 adv +o +215901 adv +adv +215904 adv +215908 adv +215912 adv +215915 s +215917 adv +adv +adv +adv +215925 o +215928 apposition +215931 apposition +215933 adv +215936 adv +215938 o +215940 s +215945 io +215953 apposition +215960 o +215962 s +215964 adv +o +215967 adv +215969 adv +adv +s +adv +adv +215978 apposition +215980 apposition +215982 o +215984 adv +215990 apposition +215995 o +215998 o +216001 adv +o +216006 adv +216011 s +o +216014 adv +216018 apposition +o +216023 adv +adv +adv +216033 adv +adv +216037 adv +o +o +216043 adv +adv +216049 s +216052 adv +s +adv +216056 o +216062 adv +adv +adv +216066 adv +216072 s +216074 adv +adv +v +216078 adv +216081 o +216087 adv +216089 adv +adv +216092 adv +o +adv +216097 apposition +adv +o +216102 o +216106 o +o +216110 apposition +216115 o +216117 aux +216120 adv +adv +216124 adv +216129 adv +216132 adv +216135 s +adv +o +adv +216143 adv +adv +io +216148 adv +216152 adv +216155 adv +o +216160 adv +216168 s +216173 apposition +216179 apposition +adv +216189 s +o +adv +216194 adv +adv +216198 apposition +216200 p +216203 adv +216205 o +216207 s +216214 adv +216216 o +o +216219 apposition +216221 adv +216226 apposition +216233 s +adv +216237 adv +adv +216242 adv +216246 adv +adv +216250 o +o +adv +216258 adv +adv +216261 o +adv +216266 s +216271 adv +adv +adv +216277 adv +io +adv +s +apposition +v +216288 o +adv +adv +216296 o +216298 o +adv +adv +o +216303 s +o +216309 adv +adv +adv +216315 adv +216317 adv +216320 adv +216322 apposition +p +216331 v +adv +216335 adv +216340 adv +216343 adv +216345 adv +216347 apposition +o +216351 adv +io +216358 s +216363 apposition +216366 o +adv +o +216370 s +adv +o +216374 adv +216383 s +216386 adv +o +216390 o +adv +216393 adv +adv +216403 adv +adv +216406 s +s +216410 o +adv +o +io +216415 adv +216418 adv +o +216422 adv +o +o +s +216427 p +216430 apposition +o +216435 adv +216440 adv +216444 io +o +o +adv +216450 adv +216454 adv +216460 s +216462 adv +o +216465 s +216469 adv +o +216474 adv +216476 adv +216480 adv +io +o +216484 s +216486 o +216488 adv +216491 o +apposition +s +v +216496 adv +216501 s +adv +216506 s +adv +o +216510 o +216513 adv +o +adv +adv +io +o +apposition +216521 adv +o +adv +216528 o +216530 adv +216536 adv +216538 s +216540 adv +o +216544 s +216549 s +adv +216552 s +216558 s +216562 s +216567 s +adv +216572 o +s +216576 adv +o +o +adv +o +s +216585 adv +adv +o +216589 o +216597 adv +216600 adv +adv +216606 adv +o +216609 s +adv +216615 o +216617 adv +216622 s +216629 o +216632 adv +216642 adv +adv +216648 adv +216652 s +216658 adv +adv +216663 adv +o +216670 s +o +adv +o +o +216679 s +o +216682 adv +216684 adv +216687 s +adv +216692 adv +adv +216697 s +adv +o +216702 adv +adv +p +adv +216713 adv +216717 io +s +o +216726 adv +o +216731 adv +216734 adv +o +adv +216742 adv +adv +216745 adv +216750 adv +o +216757 adv +adv +216762 adv +216764 apposition +s +216771 adv +216774 adv +adv +216778 adv +216780 adv +216782 adv +v +216785 o +216788 s +216790 s +216793 adv +216797 p +216800 apposition +apposition +216807 s +216811 io +216816 s +216832 s +adv +216838 o +216844 o +216847 adv +adv +216850 o +adv +216856 adv +o +216860 adv +216862 adv +adv +216866 aux +216868 o +adv +216873 s +adv +216877 adv +o +p +216884 o +216888 adv +216891 adv +o +adv +216901 s +adv +o +216908 adv +adv +adv +adv +216918 o +adv +216921 o +adv +216924 adv +adv +216927 o +o +216935 s +216939 s +216952 o +s +216958 adv +216961 adv +216963 s +216967 adv +v +216970 o +216974 o +s +adv +adv +216983 s +216992 s +216994 o +adv +216998 adv +o +217005 o +217007 adv +adv +217013 adv +217015 s +217018 s +217020 adv +217022 o +s +217030 adv +217032 adv +217039 adv +217041 adv +217043 adv +217049 s +217056 o +217059 adv +217061 s +217063 o +217065 o +217068 o +p +217073 o +217079 adv +adv +217083 adv +o +217086 o +o +s +217091 apposition +217094 adv +adv +217097 o +217099 adv +217104 o +o +o +217111 s +217117 adv +217124 o +217128 adv +adv +217133 o +217135 aux +o +adv +p +217142 adv +217146 o +217148 o +217150 apposition +adv +s +io +217157 adv +adv +217162 aux +217164 apposition +217166 o +217173 adv +p +217177 adv +217181 adv +217183 adv +adv +o +217192 adv +o +217195 adv +adv +217200 adv +o +217209 adv +o +adv +217218 adv +217220 p +adv +217228 adv +v +217234 s +217239 adv +217241 p +217246 adv +p +217249 o +o +adv +217255 apposition +217259 s +217264 adv +o +217268 s +adv +io +o +s +adv +217275 o +apposition +adv +o +o +adv +adv +217283 apposition +adv +adv +adv +217290 topic +o +217296 o +adv +adv +217301 s +adv +217307 s +adv +adv +p +s +217314 apposition +217323 adv +adv +adv +217327 adv +217333 adv +o +217340 adv +217342 adv +217344 adv +217346 apposition +adv +217350 o +s +217353 adv +217357 adv +217360 adv +217365 adv +217369 adv +217371 adv +217373 o +o +217382 adv +217384 s +217390 adv +s +adv +io +o +s +217404 adv +o +adv +o +217409 s +217411 p +217416 adv +217418 adv +217423 adv +adv +217430 p +217432 o +apposition +s +217436 v +adv +217442 s +apposition +o +adv +217452 s +217454 adv +217460 s +adv +adv +io +o +217470 adv +217473 p +217476 adv +217478 adv +217480 s +adv +217487 adv +217490 adv +adv +o +217499 p +217503 s +o +217507 adv +217509 adv +o +217512 adv +217514 o +adv +o +217520 topic +s +o +o +s +adv +217527 o +217532 p +217538 aux +217540 adv +217546 p +217552 apposition +217556 o +p +217561 adv +217566 adv +o +apposition +adv +217574 s +adv +217581 s +adv +adv +adv +o +adv +217590 p +s +217595 adv +o +217603 adv +217608 adv +adv +217611 adv +217615 topic +o +adv +217621 adv +217625 o +217627 adv +217629 s +adv +217636 adv +adv +adv +217642 o +adv +217646 adv +o +adv +adv +217653 adv +o +217659 s +217666 adv +apposition +217669 adv +217671 adv +217675 v +o +217681 adv +adv +v +217685 o +217688 adv +o +217695 o +adv +217701 adv +s +217706 o +217714 o +adv +217718 adv +s +io +o +o +apposition +adv +adv +217727 adv +217731 o +adv +adv +217735 o +s +217741 adv +217744 s +p +s +217748 adv +adv +217751 adv +217754 o +217757 adv +o +217760 o +adv +217766 adv +217769 o +217771 s +217775 adv +217777 adv +217782 adv +217788 o +o +adv +io +o +217794 adv +217797 adv +o +p +adv +217805 adv +adv +217815 s +217818 s +217821 adv +217830 s +217832 p +217836 adv +adv +217839 adv +217841 adv +v +217844 adv +217853 v +217855 adv +o +adv +217860 adv +adv +o +adv +adv +adv +217871 adv +217873 adv +217875 s +217878 adv +o +217883 s +217889 o +apposition +217893 s +adv +217897 adv +217900 adv +217904 adv +217907 s +217912 adv +s +217916 s +217922 s +217928 o +adv +217932 o +217935 o +217939 adv +o +adv +217943 apposition +217947 s +217950 apposition +217952 v +217956 adv +s +217960 o +217963 o +217966 o +217972 adv +adv +s +217976 apposition +p +s +217981 adv +adv +adv +217985 adv +217988 adv +217995 adv +218000 apposition +218002 adv +218006 adv +218010 s +218017 s +218020 adv +v +218023 o +218028 s +218031 o +adv +o +adv +218039 o +218043 o +218047 adv +s +218051 v +218059 s +adv +218062 o +adv +adv +218067 adv +adv +adv +218071 adv +218074 s +o +218079 adv +adv +218082 o +218086 apposition +218088 adv +218093 adv +218096 s +218104 s +218107 adv +o +218110 io +o +218113 apposition +adv +adv +o +218124 o +218126 p +218129 s +218133 v +218135 adv +218137 adv +218142 s +218144 adv +o +adv +o +218149 s +218151 adv +218156 adv +s +adv +218161 s +218167 adv +218170 o +adv +218173 s +s +218182 adv +218186 adv +o +s +218194 s +adv +218198 adv +218200 adv +o +218205 apposition +218209 adv +o +adv +218213 s +218217 s +218222 adv +adv +o +adv +218231 o +adv +218235 s +v +218239 s +o +adv +218246 s +218249 s +218253 s +adv +o +o +io +218261 adv +o +218264 s +adv +adv +218269 adv +218272 s +218277 s +adv +o +o +218282 aux +218284 p +s +o +s +218289 p +218298 adv +v +s +218302 p +218305 o +218309 o +218312 apposition +218316 o +218325 s +218330 adv +218338 o +218342 adv +218348 o +adv +218351 adv +s +adv +adv +o +adv +218362 adv +o +218367 adv +218370 s +s +adv +218374 o +218377 adv +adv +adv +218384 adv +218386 adv +218390 adv +adv +218394 o +218396 adv +218399 adv +218401 adv +o +adv +218406 p +apposition +218409 adv +218413 s +218428 apposition +218433 adv +adv +218439 adv +218443 adv +218447 adv +adv +218450 adv +218453 adv +218458 adv +218462 adv +218465 s +adv +o +adv +218471 o +adv +218476 s +p +218480 apposition +v +218486 s +218489 adv +adv +218492 adv +218494 adv +218496 s +adv +adv +adv +218501 adv +218509 adv +s +218513 adv +o +218518 s +218520 p +218524 adv +218528 o +218533 adv +adv +218539 o +o2 +218543 adv +218548 adv +adv +218551 adv +218553 adv +o +o +218558 v +adv +o +218564 adv +218566 adv +218570 adv +adv +218573 adv +adv +218576 adv +218579 adv +adv +218583 adv +218585 adv +218590 s +o +adv +adv +218595 s +adv +218603 s +adv +218607 p +218611 adv +adv +218614 adv +o +218623 adv +218625 o +o +adv +218630 apposition +adv +adv +218634 p +adv +218637 adv +o +adv +218645 apposition +218647 adv +218654 o +218657 adv +218663 adv +218666 adv +io +218670 o +218685 adv +adv +adv +adv +o +218691 adv +adv +218695 s +218698 adv +adv +adv +218702 s +218707 adv +o +o2 +adv +218713 o +218719 apposition +adv +218724 o +218734 o +218736 o +218738 s +218740 apposition +adv +adv +o +218748 adv +218751 o +218753 adv +218758 adv +218760 o +218766 o +218771 apposition +adv +s +218776 adv +o +218781 apposition +adv +218788 adv +218791 adv +218794 s +adv +adv +o +218800 adv +218802 adv +o +adv +218806 o +adv +218811 adv +adv +218814 adv +218816 o +adv +o +218822 adv +io +218831 apposition +218833 o +218837 o +adv +218844 o +218850 adv +218852 o +218858 p +s +218863 adv +218865 adv +s +218868 o +218872 o +218876 adv +218878 o +218880 s +218886 adv +adv +o +218890 adv +218896 s +218899 adv +adv +218904 adv +adv +218908 apposition +adv +218911 o +o +218917 adv +218924 s +adv +adv +218928 adv +adv +218934 adv +adv +218938 adv +218942 adv +o +218945 adv +adv +218951 adv +218953 o +218956 adv +218960 adv +218963 s +v +o +218969 o +adv +o +adv +io +adv +218976 o +adv +218983 s +o +218988 adv +adv +adv +218993 adv +218998 adv +o +adv +219002 adv +219006 adv +219010 adv +219016 adv +o +adv +adv +219022 adv +o +adv +adv +219030 adv +adv +adv +219035 adv +adv +219041 apposition +219043 p +219045 adv +219049 s +219057 adv +219060 s +219064 apposition +219068 adv +219070 adv +219073 adv +o +219077 o +219082 o +s +219086 apposition +219088 o +219090 apposition +s +219093 adv +s +219097 adv +219105 s +219109 adv +219111 adv +219114 s +o +219117 adv +219121 o +219125 o +219128 adv +adv +219137 adv +adv +o +s +219146 adv +219149 adv +adv +219154 s +219158 adv +adv +io +219162 adv +apposition +219165 apposition +apposition +219171 adv +219173 s +219178 adv +219180 s +adv +adv +219185 s +219190 adv +adv +o +219194 s +adv +219197 adv +219204 adv +o +219208 o +219213 s +219217 p +219221 p +219226 adv +adv +219229 o2 +219231 o +219236 adv +o +219239 o +219242 adv +219248 o +219253 o +219256 s +219259 adv +219264 adv +adv +219268 adv +adv +219271 o +219274 adv +219277 s +adv +219281 s +adv +o +219287 adv +219291 adv +o +o +219301 s +adv +o +adv +219307 adv +adv +adv +219311 adv +o +219317 adv +adv +adv +219322 s +219328 s +219330 o +219333 s +219337 adv +adv +219340 o +219344 adv +o +adv +o +219355 p +219357 apposition +219359 adv +219370 o +adv +219375 o +219382 v +o +s +apposition +adv +219388 p +219390 o +219392 adv +219394 s +219400 s +219405 s +219409 adv +o +adv +219415 s +219420 o +219422 adv +219425 o +219427 s +adv +adv +o +219432 adv +219436 adv +o +219441 o +o +219446 adv +s +219450 o +adv +219454 o +219458 v +219462 o +adv +219468 adv +o +o +adv +219473 o +adv +219481 adv +219485 s +adv +219488 adv +219494 s +219497 adv +o +219502 adv +o +adv +219506 s +io +o +219510 s +adv +219515 o +adv +219518 p +219520 apposition +219523 adv +219528 adv +219530 o +219537 s +o +219542 p +219544 apposition +219547 p +219552 o +o +adv +219561 s +adv +adv +219565 adv +io +219570 adv +s +adv +219574 adv +219580 aux +219583 o +219591 adv +o +219594 adv +219599 o +p +adv +219603 adv +219608 adv +219611 adv +adv +219615 adv +219619 adv +p +219622 adv +219624 s +apposition +adv +o +219629 adv +adv +v +219633 adv +o +219639 s +219643 s +219645 adv +adv +adv +o +adv +219651 adv +adv +o +219656 o2 +adv +adv +219664 adv +219668 adv +adv +s +adv +219673 s +adv +219678 adv +219682 o +o +219691 o +219696 adv +o +p +219700 apposition +apposition +219707 s +219709 p +o +219713 o +219720 o +219725 s +adv +o +219729 adv +adv +219732 adv +219735 s +219739 adv +219741 adv +219746 adv +adv +219750 adv +219754 s +219756 apposition +219762 adv +219767 adv +219769 adv +219772 o +219779 adv +219781 adv +219785 o +s +219790 adv +219792 o +219796 o +219799 o +219803 adv +219805 adv +219807 p +219809 v +219817 adv +219820 o +219822 adv +o +219828 adv +219830 adv +219833 adv +219835 s +219837 p +219840 o +o +219846 adv +adv +219850 o +219855 o +219857 adv +219859 v +219862 adv +219864 o +219866 adv +219872 s +219875 apposition +219878 s +v +219886 o +219893 adv +o +219898 adv +219903 adv +219908 o +219910 adv +o +219913 adv +219915 o +219918 s +219927 o +219930 adv +219933 s +o +adv +219937 adv +o +adv +219941 o +adv +219949 adv +219951 adv +219955 s +adv +219958 s +o +219965 adv +s +adv +adv +adv +o +219972 o +219975 s +219980 adv +s +o +o +219991 s +o +adv +o +219999 s +adv +220005 adv +s +220008 o +220012 s +220014 adv +220022 v +220027 adv +adv +o +o +220032 apposition +220034 adv +220039 o +s +220047 adv +o +adv +220053 s +adv +o +o +220061 adv +220063 adv +adv +220070 s +220072 io +220074 o +o +220079 s +adv +o +220083 o +s +220086 aux +220090 s +adv +adv +220096 adv +o +220101 s +220103 o +o +220110 s +o +220114 o +220118 o +220120 o +220126 s +adv +adv +220131 s +220135 s +adv +220138 o +220146 p +220148 adv +220159 s +220165 s +220169 o +s +220175 o +220180 s +220183 adv +s +220190 adv +o +220193 o +adv +220206 adv +s +s +adv +220213 s +adv +o +220217 s +adv +adv +220223 adv +220228 adv +220231 adv +s +o +220239 o +220241 adv +220243 s +adv +220251 adv +s +adv +o +v +220258 adv +220260 o +220264 p +s +220268 o +220270 apposition +adv +adv +adv +220277 o +adv +220280 o +220285 io +adv +220288 adv +220290 adv +adv +220293 o +o +220298 adv +220301 adv +220306 s +220310 adv +o +adv +220316 adv +220318 io +220322 s +adv +o +220326 o +220328 o +220330 adv +220334 o +220340 adv +adv +220345 o +s +220348 adv +o +o +220352 adv +adv +o +220358 s +adv +220361 o +220365 adv +o +s +o +220372 o +220374 s +o +220377 adv +220379 o +adv +220382 adv +220384 o +adv +220389 adv +220392 s +220397 apposition +o +v +220402 adv +220406 adv +o +220414 s +o +adv +o +o +220420 adv +220425 adv +o +220429 o +220431 o +220437 adv +220439 adv +adv +220446 adv +220448 adv +o +adv +220452 apposition +220454 o +220456 o +220461 s +io +220468 o +220470 adv +220472 adv +220476 o +adv +adv +adv +220481 adv +o +220487 adv +o +o +220491 apposition +adv +adv +220498 o +220500 adv +220506 o +220514 adv +s +adv +220518 adv +adv +io +220522 o +adv +adv +220529 s +adv +220533 adv +o +adv +adv +220541 adv +adv +o +s +adv +adv +220548 adv +adv +220551 adv +220555 o +io +o +220563 adv +220567 o +p +220572 o +220574 p +o +220579 s +220583 o +adv +220591 adv +220593 s +220595 adv +220601 adv +io +adv +220608 adv +o +s +adv +o +220615 o +adv +220619 adv +220621 adv +220625 adv +220628 adv +220631 aux +220637 adv +220639 o +adv +220645 o +o +s +220649 p +220652 io +220655 apposition +220663 adv +o +o +adv +adv +adv +adv +220671 o +o +220676 s +220678 adv +o +220684 s +adv +s +o +220689 adv +o +adv +220693 adv +220695 o +220697 adv +o +o +220702 s +adv +220705 adv +adv +220710 o +220712 adv +220715 o +adv +220728 o +adv +220734 adv +220736 adv +220739 apposition +o +220742 adv +o +220751 adv +220753 adv +o +220759 apposition +s +220762 apposition +o +s +220770 adv +s +o +o +adv +220779 adv +220784 adv +220786 adv +adv +220792 adv +adv +o +adv +220797 adv +220804 aux +220808 adv +s +adv +v +220814 adv +220819 s +o +220822 o +220824 adv +220828 adv +220830 apposition +220832 apposition +adv +adv +adv +220837 adv +220839 adv +220843 s +adv +o +220848 adv +o +220852 s +apposition +220855 o +220857 adv +io +o +220866 o +s +220874 adv +220876 s +adv +adv +220881 apposition +220884 o +220887 adv +220895 adv +adv +220902 apposition +220904 adv +s +o +220908 adv +220912 adv +adv +o +220916 adv +220921 adv +220928 s +o +apposition +220933 adv +o +io +s +o +o2 +220943 adv +adv +adv +220947 adv +adv +220952 s +220958 adv +220962 adv +adv +adv +220966 adv +adv +adv +adv +220975 s +o +220978 s +adv +220982 o +adv +220987 o +s +220991 adv +adv +220994 s +p +221000 adv +adv +adv +221007 adv +adv +adv +adv +adv +221013 o +s +221021 s +221024 adv +adv +o +221029 adv +o +221032 s +o +221035 adv +221049 s +adv +o +io +adv +io +o +o +adv +adv +adv +adv +221064 s +o +221067 adv +221070 v +221072 s +221078 s +221089 o +221092 o +221098 s +221100 o +221105 s +adv +adv +221109 o +221112 adv +221117 s +221119 s +221121 apposition +221123 adv +adv +o +221131 adv +221133 s +io +o +221138 adv +o +o +s +p +221144 adv +adv +adv +adv +p +s +221155 adv +adv +adv +adv +221160 s +221162 o +221167 s +221169 adv +o +221173 o +adv +221181 adv +o +adv +adv +adv +221187 o +s +adv +221191 adv +adv +s +o +221201 o +adv +221205 adv +221208 adv +221213 apposition +o +s +221219 adv +o +221223 o +221225 o +221227 adv +221230 adv +221235 s +o +adv +221242 o +adv +221245 adv +221250 adv +221253 s +o +o +221258 o +221265 adv +s +221270 adv +221274 adv +221276 adv +221284 apposition +221287 s +221289 s +221293 s +o +221296 aux +221303 o +apposition +adv +s +221310 adv +221314 adv +o +s +221321 o +o +221327 s +o +221330 o +adv +adv +o +o +io +221340 adv +221346 aux +221350 s +221352 o +221356 s +adv +o +221365 adv +221367 o +s +adv +221372 s +adv +o +o +221378 aux +adv +adv +221383 adv +adv +o +adv +p +221397 o +221402 o +221407 apposition +221409 adv +p +221416 s +adv +adv +221420 o +o +221423 adv +221432 adv +221437 adv +221440 adv +221442 adv +adv +o +adv +s +221448 adv +adv +adv +221454 adv +221456 adv +221460 adv +adv +221463 s +221468 o +s +adv +221474 apposition +o +o +221479 adv +221484 o +221486 adv +adv +o +221499 adv +adv +221503 o +221506 adv +adv +221513 adv +adv +adv +221517 adv +221521 apposition +221523 adv +adv +221526 o +adv +221531 o +221535 adv +221541 s +adv +221545 o +adv +adv +221549 o +221556 s +adv +221561 o +221566 s +o +p +apposition +221576 adv +221582 adv +adv +o2 +221592 adv +adv +221599 adv +adv +adv +o +adv +221605 adv +221616 adv +221618 o +221625 adv +apposition +221632 aux +221634 adv +221637 io +221652 o +221656 adv +221658 adv +o +221664 adv +adv +adv +221668 o +221672 adv +o +221677 adv +221680 adv +io +221684 adv +adv +221687 o +o +s +221693 o2 +221696 s +221700 adv +221703 o +io +221712 topic +s +adv +221716 o +221720 s +221722 adv +221726 s +o +221730 aux +221733 o +221738 adv +s +221741 apposition +adv +adv +adv +221746 o +adv +221749 v +adv +221754 aux +o +221758 o +221764 s +adv +221768 adv +adv +221773 s +adv +221776 io +adv +221782 o +s +221789 p +apposition +s +adv +221798 s +221812 adv +adv +adv +adv +221817 o +221821 s +221826 io +o2 +221829 o +s +221839 s +221841 adv +221844 o +221850 io +221858 adv +adv +221862 o +adv +221869 p +s +apposition +221876 adv +adv +221880 s +adv +o +o +adv +adv +221890 adv +adv +adv +221895 s +221898 adv +adv +221901 apposition +221906 adv +221911 s +adv +o +221916 adv +221918 adv +221924 adv +221928 adv +221932 s +221935 adv +adv +221939 adv +adv +221945 p +apposition +p +s +221954 s +221957 s +adv +221961 s +221964 s +adv +o +221968 adv +221970 o +p +221985 s +221990 s +io +221997 io +221999 adv +222004 s +adv +222007 s +adv +adv +222012 o +adv +adv +222016 apposition +222020 adv +222029 adv +o +o +adv +adv +222037 adv +222039 adv +s +222042 apposition +222047 apposition +222049 s +222052 o +o +adv +222059 adv +adv +222063 o +adv +adv +adv +adv +o +222071 adv +222075 adv +222077 adv +o +222085 adv +222088 adv +o +222095 apposition +222097 s +222100 adv +222104 s +222106 s +222114 s +222116 adv +s +adv +222120 o +222122 aux +222124 s +222126 adv +adv +222131 o +222139 adv +o +adv +222143 s +adv +adv +222150 adv +222152 s +222156 apposition +apposition +adv +o +222164 s +222167 s +o +222171 adv +222179 o +o +222182 adv +222184 adv +222188 s +adv +222196 s +222199 adv +222202 adv +222205 s +o +s +222212 adv +o +222216 adv +222220 o +222224 adv +222228 adv +222230 adv +adv +o +o +222239 s +o +adv +222245 o +adv +222248 adv +222250 o +adv +222253 s +io +222258 o +222261 adv +222264 o +222268 s +o +222274 o +222278 adv +222280 o +s +o +adv +o +adv +o +adv +222292 o +adv +222295 p +222300 s +222302 adv +222308 adv +222312 o +adv +222316 adv +o +222321 adv +s +222326 s +222331 p +222335 adv +o +adv +o +adv +222348 o +222351 o +o +222355 adv +o +adv +o +222364 adv +o +adv +222368 adv +o +222374 adv +o +io +222378 adv +222384 adv +adv +222387 o +222392 s +adv +222396 s +adv +222402 s +222404 p +222406 o +o +222409 adv +222414 s +adv +o +o +adv +222421 o +222423 s +222425 o +adv +adv +222431 o +s +222435 adv +222438 adv +222446 s +adv +222452 o +adv +222455 s +222460 s +o +222466 adv +o +adv +222472 apposition +222480 apposition +222482 s +o +222487 adv +222489 adv +adv +222492 o +222499 s +o +s +adv +222506 adv +o +s +222511 apposition +o +adv +adv +222516 s +222521 adv +o +adv +222525 o +222529 o +222531 o +222539 adv +222542 o +s +adv +222546 adv +o +222551 adv +222556 adv +222562 apposition +adv +adv +222568 o +s +s +222573 adv +adv +222576 adv +222578 adv +222581 s +adv +o +222590 s +222593 apposition +222595 adv +222599 adv +222601 adv +222604 adv +o +222611 adv +222613 adv +222618 adv +222625 adv +adv +adv +222629 adv +adv +222636 adv +222639 adv +222641 adv +o +adv +adv +222648 adv +222652 s +adv +o +222656 adv +222658 adv +222663 adv +adv +s +adv +o +222671 adv +222673 adv +io +s +adv +adv +222684 adv +222686 s +o +222689 p +222696 adv +o +222702 o +adv +o +io +222711 adv +adv +222716 adv +o +adv +222721 s +222723 p +222727 adv +s +o +adv +222733 o +o +222739 adv +222742 adv +222746 adv +222748 adv +222752 o +222757 adv +o +222761 o +222763 adv +222767 adv +s +222770 v +222772 o +222778 o +adv +o +adv +222784 adv +222787 s +222792 adv +adv +adv +222796 adv +adv +222799 o +222804 adv +222806 adv +222813 adv +222821 adv +222828 adv +adv +o +s +o +adv +222835 s +222838 adv +222840 apposition +adv +222844 adv +o +222848 adv +222858 adv +222862 adv +222865 adv +222871 s +222877 adv +222880 o +222885 adv +222888 adv +222891 adv +222899 s +222902 io +s +222912 adv +adv +222917 o +222920 adv +adv +222923 o +222928 o +222932 apposition +adv +222937 s +222940 apposition +222942 apposition +222944 adv +222947 apposition +adv +222951 adv +222953 adv +222960 apposition +222962 p +222964 adv +222967 o +adv +adv +222971 adv +222973 apposition +222975 apposition +222977 apposition +adv +adv +o +222982 adv +222984 adv +222987 adv +222990 adv +s +p +222994 io +222998 p +apposition +223001 apposition +223004 s +223006 adv +223009 apposition +223012 apposition +223016 o +223018 adv +223020 adv +223022 adv +223024 s +223026 adv +223032 p +s +223035 apposition +adv +223039 adv +223044 adv +223046 o +adv +adv +223051 adv +223053 adv +adv +adv +223059 adv +223064 o +223067 o +223069 adv +223075 p +adv +adv +223089 o +adv +223094 o +adv +223098 adv +223102 o +adv +223105 adv +223107 adv +223113 adv +223122 s +223125 p +io +223128 apposition +223133 o +adv +223136 p +adv +adv +223142 apposition +223149 s +adv +adv +223154 adv +223156 adv +223158 s +adv +223163 s +adv +adv +223171 apposition +223173 o +adv +adv +223177 s +223180 adv +223184 s +223188 s +223191 apposition +223197 adv +223199 adv +adv +adv +223209 adv +o +adv +v +223216 adv +223221 s +223227 adv +o +223231 o +223235 adv +223246 s +adv +223252 adv +adv +223255 s +223257 adv +223259 apposition +223261 o +223264 adv +223268 v +223270 o +adv +223275 apposition +adv +223281 adv +s +adv +223290 s +223292 o +223294 adv +223299 s +223301 adv +o +223306 adv +223309 adv +adv +223312 adv +o +223316 o +223319 apposition +223322 adv +223328 o +o +adv +223332 s +adv +223335 adv +o +223338 adv +223340 adv +223343 adv +223345 p +223351 adv +o +223355 o +223357 s +223359 o +223362 adv +223368 aux +223370 apposition +223376 adv +adv +223379 o +223381 o +s +223387 o +223389 s +223392 p +adv +223396 o +223401 aux +aux +apposition +223406 o +223408 o +223411 o +223414 o +223419 o +223428 adv +o +223431 s +223434 adv +223438 adv +223444 adv +223452 apposition +adv +223460 io +223462 adv +223465 o +223468 o +223471 io +223474 adv +223478 o +223481 o +s +223487 s +223489 adv +223494 apposition +223496 o +apposition +223503 s +223506 io +223510 o +apposition +223518 p +223524 s +223527 s +adv +adv +223534 s +223536 adv +223539 s +223546 s +apposition +223549 o +223552 s +223556 o +223559 o2 +223563 adv +223565 s +223570 adv +s +223574 adv +apposition +adv +s +o +223581 adv +223584 adv +223596 adv +223599 o +223602 o +223604 adv +adv +223609 o +p +223617 adv +o +223624 adv +223629 aux +223634 aux +223636 o +223640 aux +223642 o +223646 aux +223648 o +223651 s +adv +adv +223657 o +223661 s +223664 adv +adv +223667 adv +223678 o +223681 p +223683 s +223690 s +o +223696 s +223698 adv +223702 s +223705 adv +o +o +apposition +223719 s +223724 s +223731 s +223736 adv +223739 adv +s +223742 p +223750 s +223755 s +223760 adv +223766 s +223768 o +223780 s +223782 o +223792 s +223795 s +223798 adv +223802 adv +223807 adv +223815 s +223817 o +223822 s +223824 apposition +223826 o +223829 adv +223835 s +o +223842 s +223845 adv +223848 adv +223852 adv +223862 o +o +223865 o +adv +223868 s +adv +s +223882 o +s +223887 p +adv +223890 adv +223896 s +223898 o +s +223901 o +223904 o +223908 s +223911 adv +223916 p +223918 s +223921 adv +223924 s +p +223928 adv +s +223931 o +223937 s +223939 adv +223941 s +223943 p +223948 o +223951 s +p +223958 adv +223960 adv +s +s +io +223968 s +223971 s +223973 adv +223977 adv +223979 s +adv +adv +223983 adv +p +223989 adv +s +adv +adv +223999 s +224004 adv +224017 o +224020 adv +adv +224023 adv +224026 apposition +224031 s +adv +224063 p +224066 o +224073 s +224078 adv +224081 adv +224087 adv +224092 o +adv +224098 s +224102 p +224107 p +224110 s +224112 apposition +224114 adv +224117 adv +224122 adv +224132 o +s +apposition +224136 adv +224140 adv +224142 adv +224146 adv +224150 s +224155 o +224158 adv +224162 io +224164 s +adv +224171 io +224175 adv +224178 o +s +224181 adv +adv +224184 s +o +224189 apposition +s +adv +o +s +224195 s +224199 s +224203 s +apposition +adv +224209 s +224211 p +224221 o +io +s +adv +224230 p +224237 p +224239 p +224243 o +224245 apposition +224250 apposition +224253 adv +224257 p +224261 adv +adv +224265 s +224268 p +adv +224272 p +224277 adv +224290 adv +s +224293 apposition +224295 p +io +224302 adv +224309 s +224313 s +224316 s +224320 s +224324 adv +224327 adv +adv +adv +224331 adv +adv +224335 s +adv +224339 apposition +224349 apposition +adv +p +224353 adv +224356 apposition +apposition +224360 o +224363 o +224365 adv +224368 o +224370 o2 +224374 adv +adv +adv +224379 p +224381 adv +224384 o +s +224392 adv +adv +o +224396 adv +adv +224400 o +224407 adv +224411 adv +224414 adv +adv +224417 io +224420 adv +224422 p +224424 o +224428 adv +224433 adv +o +224437 adv +224441 apposition +o +apposition +224445 adv +224448 adv +o +224451 apposition +224453 apposition +224455 adv +224460 adv +224466 adv +adv +adv +224470 adv +224475 apposition +apposition +224478 adv +o +224481 adv +adv +224486 apposition +adv +224490 adv +224500 adv +224502 adv +adv +224506 s +224509 s +224512 s +224516 s +adv +224519 s +224522 adv +224525 adv +224528 apposition +224534 adv +adv +adv +224540 adv +224544 adv +224546 o +224550 o +224552 adv +s +o +224558 adv +224562 adv +adv +adv +224567 adv +adv +224573 adv +224575 adv +io +adv +224582 adv +adv +adv +224592 adv +224594 adv +224599 apposition +apposition +adv +o +224606 adv +224612 adv +224614 s +adv +224619 adv +224621 s +224623 adv +adv +224626 s +adv +224632 adv +p +224636 adv +224640 s +adv +224644 adv +224648 adv +224654 apposition +p +224661 adv +224664 s +s +224670 adv +224672 adv +224675 s +adv +s +224686 apposition +224690 apposition +adv +224696 p +224700 s +224706 s +p +adv +224711 s +p +224714 adv +224718 adv +224720 adv +224723 s +adv +224726 adv +s +224729 o +224737 adv +adv +224741 apposition +224746 adv +224748 adv +224750 adv +224752 adv +adv +224756 adv +224758 adv +224763 adv +224765 adv +224770 s +adv +224776 s +224780 adv +224782 s +224786 adv +s +s +adv +224791 adv +224793 s +adv +224796 s +224798 adv +adv +224801 adv +224804 apposition +224811 adv +adv +224814 s +224819 s +adv +adv +224825 o +224827 s +adv +224830 adv +224836 adv +224838 adv +224840 adv +224842 adv +224844 adv +adv +224849 s +adv +224855 adv +224857 adv +224862 adv +224866 o +224868 s +224871 adv +224873 s +224876 adv +224878 o +224882 s +224884 adv +224891 adv +224893 adv +224897 o +224900 adv +adv +224907 adv +adv +224911 adv +adv +224915 s +o +p +224920 adv +224923 p +adv +adv +224932 s +adv +224937 adv +224940 o +224944 o +224946 o2 +io +224951 io +adv +224954 adv +224957 o +224959 o2 +io +224968 p +224970 p +224980 p +224982 p +224987 o +224989 apposition +adv +adv +adv +224995 adv +224998 adv +225002 io +adv +225006 p +225010 adv +o +225013 adv +apposition +225017 adv +adv +225020 io +225023 adv +225031 adv +225033 o +225035 io +225039 adv +225041 o +225043 io +adv +225048 adv +225050 p +225052 adv +225056 o +adv +225062 s +225068 adv +225070 adv +225074 io +o +225077 adv +225080 o +225082 apposition +225087 s +225092 s +225095 p +adv +225099 apposition +225105 adv +225107 io +o +225110 s +adv +adv +225114 adv +225118 s +225120 io +225128 s +225130 adv +225139 s +225141 adv +225143 p +225149 s +225151 adv +225153 adv +225155 adv +p +225161 aux +s +adv +adv +225168 adv +225171 p +apposition +225174 adv +adv +225177 io +225183 p +225186 s +225190 apposition +225193 adv +225196 adv +225199 io +225203 adv +225205 adv +adv +225208 adv +225210 adv +225221 s +225228 o +adv +225231 adv +225235 o +adv +225238 s +o +225243 adv +s +adv +225247 adv +o +225252 adv +225256 adv +225261 topic +s +225264 s +225269 s +225272 apposition +225274 adv +225279 s +adv +adv +225285 adv +225291 s +225294 s +p +225301 s +225309 s +225312 adv +adv +225317 adv +s +adv +225324 adv +225326 s +225330 adv +adv +225336 o +225341 adv +225343 adv +225349 adv +225351 adv +o +225360 s +225363 adv +225367 o +225369 adv +225371 apposition +p +225379 s +225383 s +225385 o +225390 o +225394 aux +225401 adv +225404 s +225407 adv +225411 o +adv +apposition +225415 o +o +o +225419 s +225424 adv +225427 adv +225432 o +225434 s +adv +225438 adv +225444 adv +225449 apposition +225451 p +225456 p +225459 adv +225466 io +adv +225470 apposition +225478 s +adv +o +225483 adv +o +225488 s +p +225495 s +225500 adv +225502 adv +225513 aux +225517 apposition +adv +adv +225522 s +adv +o +225526 adv +225532 o +adv +225537 s +225540 adv +225542 apposition +225544 adv +225551 s +225553 p +o +225558 s +225560 p +o +225567 s +225572 s +225575 p +225582 s +225585 adv +225588 io +225596 s +225598 p +o +225603 p +225606 adv +225608 s +adv +225613 adv +225615 o +225619 adv +225621 p +225624 s +adv +225628 s +adv +225633 adv +225635 s +225639 o +adv +adv +s +225644 adv +o +o +225650 adv +225654 adv +225663 adv +adv +225666 adv +225671 adv +225673 adv +o +225677 adv +225679 o +225685 adv +adv +p +225692 o +adv +225695 o +225697 apposition +adv +225700 aux +apposition +225704 s +225706 adv +225708 o +225710 p +225714 adv +225716 p +225721 p +225724 p +adv +225727 adv +225732 o +225734 s +225738 adv +225742 o +adv +225747 s +225750 o +225759 io +s +adv +225765 adv +225768 s +225771 adv +225775 adv +225786 adv +225788 s +225790 v +225792 adv +225799 s +225803 o +225807 apposition +adv +adv +o +apposition +225818 adv +225822 s +225827 o +225831 adv +225833 o +adv +225838 s +225840 adv +225846 o +225848 adv +225852 s +225854 adv +225858 s +225860 o +o +s +225865 adv +225867 adv +adv +225873 o +225876 io +225878 o +adv +225881 io +225883 adv +225887 o +o2 +225893 adv +225896 adv +225900 adv +225903 adv +225906 adv +225910 adv +225913 adv +225915 s +p +p +225921 s +225923 o +225927 adv +225929 adv +225931 o +225934 adv +225938 p +225942 p +225946 p +225950 apposition +225955 apposition +p +225959 apposition +adv +225964 adv +225970 s +225979 o +225982 adv +adv +225986 adv +225991 adv +225993 adv +225999 adv +226001 s +226020 o +adv +226026 apposition +226030 apposition +226035 adv +o +226038 s +226040 adv +226042 adv +226047 s +p +226053 s +o +adv +226057 adv +226062 apposition +226066 apposition +p +apposition +226070 s +226083 s +226086 p +s +226089 apposition +226093 s +226096 p +adv +226103 o +226105 s +226114 aux +226119 adv +226121 p +226123 adv +226130 aux +226133 p +226136 s +226139 adv +226143 s +226145 o +226147 adv +226152 p +226158 s +adv +226161 apposition +apposition +226172 o +226177 s +226182 adv +226188 o +226190 s +o +226195 o +226197 o +226200 o +226207 p +226214 io +o +226217 o +226221 o +226227 p +226240 s +io +adv +226245 adv +226250 adv +o +226256 s +226258 adv +226266 o +226269 o +226273 o +adv +226276 o +226281 aux +226283 s +apposition +226286 io +226290 s +io +226293 o +226298 s +o +226301 adv +adv +226305 o +apposition +226309 adv +226312 adv +226318 s +adv +o +226322 o +226325 o +226327 adv +226329 o +226332 adv +226336 o +226340 adv +226345 apposition +adv +apposition +adv +226356 adv +226359 o +226361 o +226364 o2 +226367 o +226369 o2 +226373 p +226376 apposition +226378 o +p +226381 p +226387 adv +226389 o +226392 s +226396 p +226401 s +226405 adv +v +226408 adv +226414 o +226417 s +226421 p +226425 adv +226432 s +apposition +226435 o +226438 apposition +226443 adv +o +adv +226449 adv +226453 adv +226456 adv +226460 adv +226465 o +226467 adv +o +226474 s +226476 adv +226481 s +226493 p +226497 adv +226500 o +226503 adv +226507 adv +226509 o +226514 o +o +io +226522 p +adv +adv +226530 o +226533 aux +226535 apposition +226537 s +226540 adv +226544 s +226547 o +adv +226551 o +226553 adv +226556 p +226561 adv +226564 p +adv +226569 o2 +226572 p +s +o +p +226584 p +226588 apposition +226594 adv +226597 o +226600 adv +226603 o +226605 s +adv +226612 adv +226615 adv +226619 s +o +s +226624 adv +226629 s +226635 s +226637 adv +adv +226645 s +226648 o +226653 adv +226658 o +226662 adv +226667 adv +226672 o +s +226680 o +226684 o +226686 o +226692 s +adv +226696 s +adv +226702 o +226708 adv +226711 s +226715 adv +226719 s +226724 o +226728 o +226730 adv +226733 adv +226741 o +226743 adv +226746 adv +226751 adv +226753 o +adv +226756 o +226758 adv +226767 o +226769 s +o +226777 s +adv +226784 s +o +226788 apposition +226792 o +adv +s +adv +226797 o +adv +226800 o +226803 o +226806 o +226812 o +226817 s +226820 o +226822 apposition +io +226827 adv +226831 adv +226836 adv +226838 adv +adv +226841 s +226845 o +226847 adv +226850 s +226855 s +226858 o +s +o +226870 adv +226876 o +226878 s +226880 p +226890 s +226892 adv +226896 o +226898 adv +226902 o +226912 adv +226914 s +p +adv +226922 adv +226925 s +226927 p +226930 s +226932 p +adv +s +226939 io +apposition +226945 adv +adv +226948 p +o +226954 o +226958 o +226963 adv +226965 s +226967 p +s +adv +226971 p +226975 adv +226977 s +s +226983 adv +226985 s +s +226994 s +226999 adv +adv +227003 p +227010 adv +227018 o +227020 s +227024 o +227033 adv +227036 adv +227044 adv +227046 s +o +227053 o +227060 p +227065 p +s +adv +227069 adv +adv +227072 s +227076 adv +227078 adv +227082 s +adv +227087 adv +227090 adv +227096 adv +adv +adv +s +227102 adv +227108 o +o +227111 adv +227113 adv +o +227117 adv +adv +adv +227121 s +227126 s +227130 o +227132 adv +s +227136 adv +227140 p +227143 adv +227145 o +227151 adv +227153 adv +227156 adv +227158 adv +227163 s +227172 adv +227175 o +227178 adv +227180 s +adv +227183 adv +227185 s +227189 s +o +adv +adv +227194 o +227199 aux +227207 s +227211 s +227216 o +227220 p +227230 p +227236 s +227239 s +adv +227247 adv +227251 o +o +227254 o2 +227260 o +o +227268 adv +227271 adv +227274 adv +227277 o +s +227289 adv +227292 apposition +227294 io +227297 p +o +227300 adv +227302 s +227304 adv +227307 adv +227309 s +o +227317 adv +227319 o +227322 s +227324 o +227327 s +p +adv +227332 s +227334 p +227339 o +adv +227343 apposition +227350 adv +227354 o +227358 adv +227362 s +227364 adv +227368 s +227370 adv +227373 s +227375 adv +227377 s +227379 adv +227381 s +227383 adv +227386 s +227390 o +227392 io +227396 adv +adv +227399 adv +227401 adv +227403 adv +227405 o +227407 adv +227409 adv +227411 o +227413 adv +227417 o +227420 o +227422 o +227429 adv +227432 adv +227436 o +adv +apposition +227440 o +227442 adv +227445 adv +227448 adv +227451 adv +227455 adv +227457 adv +227459 adv +227467 io +227470 o +227478 adv +227480 s +227484 adv +227489 adv +o +adv +227497 adv +227501 adv +227503 o +227506 s +io +227513 adv +227515 adv +227518 s +227520 adv +v +227526 s +227528 o +o +227534 s +227539 s +adv +227547 o +o +227552 o +227555 adv +227559 p +adv +227565 adv +227567 o +227571 adv +o +227577 p +227579 adv +adv +227582 o +227586 s +adv +227598 adv +o +227602 p +adv +adv +227609 o +227612 io +227614 o +227616 io +227618 o +227620 io +227622 o +227624 io +227626 o +227629 adv +227631 o +227636 s +227638 o +227644 aux +227653 s +227656 adv +227659 adv +227662 o +227664 adv +227668 s +io +227673 p +s +227679 o +227681 o +227683 s +adv +227687 s +227689 adv +227695 s +227698 s +227703 o +227708 o +227715 adv +227717 adv +227720 adv +227723 adv +227729 o +227731 apposition +227734 o +227736 adv +227740 o +227742 adv +227744 adv +227750 o +227753 s +227759 s +227761 o +227765 s +227767 o +227771 s +227775 aux +227777 o +227780 adv +227782 v +227790 s +o +227797 adv +227800 o +227803 adv +227808 s +227810 o +227815 s +227819 o +227824 s +227828 o +227833 s +227844 adv +227850 adv +227854 apposition +227861 p +227865 adv +v +227868 adv +227870 adv +227877 o +227882 s +o +227888 adv +227894 o +227897 o +227900 s +227903 s +o +227909 s +adv +io +227919 aux +227921 io +o +227926 v +227928 adv +227930 o +227933 adv +227938 aux +227940 o +227944 adv +227946 adv +s +227949 adv +227952 adv +227954 adv +adv +227959 s +227965 s +227968 p +227971 p +227981 s +227983 adv +o +adv +227988 adv +227993 o +228000 apposition +228004 adv +o +228014 adv +228016 apposition +228018 adv +228021 s +228028 adv +s +228033 o +apposition +adv +adv +228040 s +228042 adv +228050 s +228055 p +228059 s +228061 p +228065 s +apposition +o +228069 o +228076 s +o +adv +228080 adv +228084 s +228090 o +s +228095 adv +228099 adv +s +adv +228105 adv +228113 o +228118 s +228124 o +o +adv +adv +228131 adv +228133 o +228140 apposition +228147 s +228149 adv +228155 o +p +adv +228159 adv +228163 o +228168 s +adv +o +adv +228173 o +228175 adv +adv +228179 io +228184 o +228186 adv +228195 aux +228198 o +228201 s +228206 o +s +228211 apposition +228214 adv +228217 adv +228221 s +228224 adv +228227 adv +228230 adv +228233 adv +228235 adv +228242 aux +s +228245 adv +adv +228248 s +adv +adv +228252 adv +o +o +228258 adv +adv +228261 adv +228264 apposition +228266 adv +228268 adv +228271 p +228273 adv +228275 adv +o +228279 adv +228281 s +228284 adv +adv +228290 o +228295 apposition +228302 o +o +228305 adv +adv +228308 adv +228310 adv +228318 adv +228320 adv +228326 o +228330 o +adv +228333 adv +228336 adv +228340 o +228342 s +adv +228346 s +228350 adv +adv +228353 adv +228359 adv +228364 adv +228366 adv +adv +228369 adv +228372 adv +228376 adv +o +228381 adv +adv +228384 adv +228388 adv +adv +o +228394 s +228396 o +o +adv +228403 apposition +228414 adv +228416 adv +228418 s +o +adv +228425 adv +228429 o +228431 adv +adv +228436 o +228438 adv +adv +adv +228448 adv +228453 apposition +228459 o +adv +228462 adv +adv +228465 adv +228468 adv +228476 s +228479 apposition +228481 adv +228484 adv +adv +adv +adv +228492 s +228495 p +228502 o +apposition +228505 adv +p +228509 apposition +228511 adv +228514 adv +adv +228519 adv +228525 s +p +228532 o +228538 apposition +228543 apposition +adv +228547 o +228549 apposition +s +228564 o +228566 apposition +228568 apposition +p +228575 o +apposition +adv +228580 o +228585 apposition +228590 apposition +adv +228593 apposition +p +228596 adv +228599 o +apposition +228606 o +228608 apposition +228614 apposition +228618 o +apposition +228624 o +228629 o +apposition +228634 o +228638 apposition +228640 p +228643 o +228646 apposition +228648 adv +228651 o +228653 apposition +apposition +adv +228658 o +228660 apposition +228670 o +228678 o +228695 adv +228699 s +228708 o +o +228711 o +228715 adv +228718 apposition +228721 adv +228727 s +o +228733 o +228737 adv +228741 o +228747 s +228749 adv +228754 adv +228757 o +228759 adv +228763 adv +228768 s +228771 o +adv +228775 adv +228778 s +228783 p +228786 s +228788 apposition +228794 apposition +228798 s +apposition +apposition +228802 o +adv +228806 s +apposition +228815 s +228817 apposition +228822 apposition +228827 aux +228830 o +adv +228839 adv +228845 adv +228850 adv +228852 adv +228856 adv +228858 adv +228861 apposition +228863 adv +228865 s +adv +228873 s +228875 apposition +228883 apposition +io +228890 apposition +228892 p +228894 adv +228896 apposition +228902 o +228907 apposition +adv +228910 o +p +228915 s +228917 adv +228920 apposition +228923 apposition +228926 o +o +adv +adv +228934 apposition +228936 adv +228939 adv +adv +adv +228946 adv +228948 s +228951 adv +adv +228954 adv +228956 adv +o +228964 apposition +adv +adv +228972 apposition +228975 s +228977 apposition +adv +adv +228984 apposition +228986 apposition +228992 adv +228998 apposition +adv +229002 o +229006 p +229009 v +adv +229022 aux +adv +adv +229026 o +229028 p +229032 adv +229034 s +o +229046 s +229051 adv +229054 adv +229059 o +229063 o +229066 o +229070 o +229072 adv +229078 o +229083 o +229085 o +229089 adv +229092 o +adv +229095 adv +229097 s +229105 s +229107 apposition +229109 adv +229113 adv +229116 p +229120 o +229122 o +229127 o +229136 s +229142 s +o +229152 adv +229156 s +adv +229159 o +229161 s +adv +229166 o +o +229179 o +229181 o +229188 io +229190 apposition +apposition +229194 o +apposition +229202 s +229205 adv +229208 s +229211 adv +229216 o +229218 o +229221 adv +229229 o +229232 s +adv +229235 o +229238 o +229241 s +adv +229244 o +229247 o +229255 apposition +229257 s +adv +229260 o +229264 s +adv +229270 adv +p +229274 apposition +adv +p +229280 adv +229283 o +s +229286 adv +229290 adv +adv +adv +adv +229297 o +229303 o +adv +adv +229307 o +229315 p +229322 adv +229325 s +229331 p +229339 adv +229341 s +229343 p +229352 adv +229356 o +229366 apposition +229371 o +229377 apposition +229379 apposition +s +adv +229383 adv +229385 apposition +adv +s +229397 o +229404 adv +p +229411 adv +229413 s +s +io +229420 s +adv +229427 s +229429 o +229436 s +o +229439 adv +229441 s +229445 apposition +229449 o +229452 adv +229454 s +229462 o +229466 o +229468 apposition +229473 o +229476 adv +229478 apposition +adv +229486 adv +229491 s +o +229496 adv +229500 o +adv +229507 s +229510 adv +229514 o +adv +229519 o +229523 o +229525 adv +229527 adv +229550 p +s +229558 adv +229566 o +229568 o +229581 p +apposition +adv +adv +229586 io +s +229595 s +229602 s +229606 s +229610 s +229617 s +229625 o +229627 adv +229634 p +229636 p +229642 adv +229647 apposition +229649 adv +229661 o +o +adv +229667 apposition +p +229675 adv +229677 o +229680 s +229684 s +adv +229688 adv +229690 o +229692 s +229695 s +229698 adv +229700 s +229703 apposition +229707 adv +229709 s +229717 adv +229720 adv +229723 p +229726 s +229729 adv +229732 adv +229734 o +229737 s +229741 s +229744 adv +229752 o +adv +adv +229763 s +229767 adv +229772 o +p +229775 o +adv +229784 o +229787 o +229792 adv +229799 s +229818 adv +229820 o +229827 adv +229829 o +229834 o +p +229837 adv +229852 adv +229855 s +229860 adv +adv +229864 s +229866 apposition +v +229870 o +229875 o +229881 s +adv +229890 adv +229893 adv +229896 adv +o +229899 adv +229903 adv +229905 adv +229913 o +apposition +229921 adv +229925 v +229930 adv +229934 adv +229936 adv +229938 s +229942 o +s +o +apposition +adv +adv +229949 adv +229956 adv +229959 adv +229973 adv +229976 v +229984 adv +adv +229990 adv +229992 adv +229994 adv +229997 p +230001 apposition +adv +230007 adv +230010 adv +230018 o +adv +230022 o +230025 adv +230027 adv +230032 o +p +230036 adv +230038 o +230040 apposition +p +230047 apposition +adv +o2 +230052 apposition +230056 adv +230061 adv +230063 adv +230069 adv +230072 s +230075 o +230081 adv +230084 p +s +230089 p +230095 adv +adv +230099 adv +230105 adv +s +230111 apposition +p +230114 apposition +230116 o +230122 v +230125 adv +230127 adv +230129 s +230131 o +230136 adv +230139 adv +230142 adv +adv +230145 o +230147 adv +adv +adv +230154 s +230158 adv +230164 o +io +adv +230169 adv +230171 s +adv +230178 s +230182 o +230184 s +o +230189 o +230191 adv +230193 p +adv +230199 s +230206 adv +230221 adv +230223 o +230226 adv +adv +230236 adv +230239 o +adv +230245 o +230250 s +230252 p +230259 adv +230263 s +o +230268 o +230272 o +s +230276 o +adv +230281 s +adv +adv +230285 o +230287 adv +230291 adv +230296 o +230298 s +o +230303 adv +230305 adv +s +adv +230310 o +230312 adv +230318 adv +230320 o +230322 aux +230324 adv +230328 adv +230332 p +s +230335 apposition +o +adv +230345 adv +230348 adv +230353 s +230355 adv +230358 adv +230361 adv +230366 v +230373 o +230375 o +230380 s +230391 o +230403 adv +230409 apposition +230426 adv +230430 s +p +230434 s +p +230439 s +o +230447 s +p +230453 s +p +230458 s +v +230462 o +230465 adv +230470 o +230472 s +230474 p +230478 adv +o +230482 o +230488 o +230490 s +230492 io +p +230497 o +s +p +230504 s +230506 io +p +230510 o +230514 s +230516 apposition +230518 p +230522 s +230524 adv +230530 adv +230533 s +230535 p +230540 adv +adv +230550 o +adv +230557 apposition +adv +230560 s +230565 adv +230567 o +230571 o +230576 io +s +o +230581 s +230583 io +230587 s +adv +230592 s +230598 s +230600 adv +230604 s +230613 adv +adv +adv +230618 adv +230621 p +230625 s +adv +230632 adv +230634 adv +230638 o +s +p +230646 o +adv +230656 io +230660 o +230664 adv +230669 adv +230674 s +230680 io +230682 s +230684 o +230687 adv +230695 adv +230701 io +s +230710 s +o +230714 o +adv +230721 aux +apposition +230724 o +230727 o +adv +o +230734 s +230737 adv +230741 s +230744 adv +230751 s +230758 adv +230760 s +230763 s +230767 adv +230772 adv +s +230778 o +230780 o +230785 o +230787 o +230795 s +230798 s +230803 adv +230808 adv +230813 adv +230820 s +230823 s +230826 s +230830 adv +230833 apposition +adv +230837 adv +230845 o +230850 s +230853 adv +p +adv +230857 s +230860 p +230865 p +230869 adv +o +adv +adv +230877 adv +230879 o +230882 adv +230884 adv +adv +230889 o +adv +230894 o +230896 s +230904 adv +230910 adv +230915 adv +230917 s +230922 adv +s +230930 adv +s +v +230935 adv +o +230939 s +230942 p +230946 s +230948 p +230952 s +230954 p +230958 s +230960 p +230964 s +230966 o +p +230972 s +230979 o +230983 s +o +230987 o +230993 s +230995 o +230998 o +231003 s +231007 apposition +231010 o +231012 adv +231014 adv +231023 s +231025 o +231028 o +231032 adv +231036 o +231040 adv +231044 adv +231048 apposition +231052 o +adv +231060 o +o +231069 s +231071 adv +231074 adv +231078 adv +231083 adv +231086 o +o +231094 s +231096 o +231100 s +231104 adv +231106 adv +s +231112 adv +231114 s +adv +io +adv +adv +231126 adv +231131 o +o +231136 adv +231138 o +231143 s +231146 s +231151 o +231153 adv +231155 s +231161 o +231163 adv +231167 adv +231171 o +231174 adv +231178 adv +231185 s +231187 p +231192 adv +231200 s +231202 apposition +apposition +231205 p +s +231209 p +231212 s +231214 apposition +apposition +231217 p +s +231221 p +231225 p +s +231231 p +adv +adv +adv +231238 s +231240 adv +231244 io +231249 adv +231253 adv +231262 s +231265 adv +231271 o +s +apposition +231275 adv +231278 s +231280 adv +adv +231284 o +231288 adv +231291 s +231294 apposition +231296 apposition +adv +231301 adv +231303 adv +231307 o +231311 adv +231315 adv +231317 o +231319 adv +adv +231322 adv +231324 o +231335 o +apposition +231341 p +231343 adv +231346 adv +231353 p +231357 adv +231360 s +231362 adv +231367 adv +v +231373 adv +o +adv +231377 s +231389 s +231391 adv +231394 adv +231400 o +231408 adv +231416 adv +231419 s +231424 adv +231427 o +o +231433 adv +adv +231438 adv +231442 adv +adv +231446 o +adv +s +231452 s +231454 adv +adv +231459 adv +231461 o +adv +231464 o +231470 o +231479 o +231485 o +io +231491 o +231494 s +231496 o +o +231501 s +231503 adv +adv +231507 s +231509 io +231511 o +o +adv +231518 o +231523 adv +231525 adv +231529 s +231532 o +231552 adv +231557 adv +231562 s +231567 adv +o +adv +231572 o +231574 adv +231579 adv +adv +adv +231583 o +231589 adv +p +231594 adv +231596 p +231598 adv +p +adv +231602 o +231606 adv +p +adv +231610 p +231612 p +adv +231615 o +231618 adv +adv +231621 o +231624 adv +adv +231630 adv +231632 adv +231634 p +231637 adv +231640 aux +231642 adv +231647 o +231650 adv +231656 s +231663 adv +231665 o +231673 adv +231675 o +adv +231683 o +231690 adv +231695 o +adv +231699 s +231702 p +231706 adv +231710 adv +231712 adv +231721 o +231726 o +231732 adv +231739 s +p +231745 adv +231748 s +231751 adv +231756 p +adv +231760 p +adv +231770 s +231773 o +231775 s +adv +v +231781 adv +231785 adv +231788 s +231791 adv +s +231796 o +adv +231800 s +231803 adv +231808 adv +231811 s +231814 adv +231822 adv +231825 apposition +adv +s +231833 s +231835 o +o +231840 adv +231845 s +231847 apposition +v +231850 o +adv +231854 adv +231856 o +231858 adv +231860 o +231865 aux +adv +231873 o +231876 s +231880 apposition +p +231887 s +231889 apposition +p +231897 adv +231899 p +s +231903 s +adv +231909 o +231915 s +231917 o +p +231935 o +io +231941 o +p +231946 o +231948 o +231951 o +231954 o +231956 o +231959 o +231963 o +231980 o +231983 o +231988 o +231991 adv +adv +adv +231997 p +s +232008 s +232012 o +232014 o +232017 adv +adv +232025 o +232028 adv +232037 o +apposition +232042 adv +232044 adv +s +232047 adv +232054 adv +232067 adv +232071 adv +232078 adv +232081 adv +o +232091 p +adv +232097 adv +232105 o +232109 o +adv +232113 p +232116 s +232119 p +s +232123 p +232125 s +232128 s +adv +v +232132 adv +adv +o +232139 s +adv +v +232143 adv +232145 o +232150 p +232153 adv +232158 adv +232163 adv +232165 s +232167 v +232174 o +o +adv +p +232182 s +p +232188 p +232190 p +232196 adv +232199 adv +232203 adv +s +o +adv +232208 adv +232215 p +232218 p +adv +232224 adv +232226 s +p +232229 s +232231 p +232235 s +p +232240 adv +232244 p +s +s +io +232251 s +232253 adv +232257 adv +232261 adv +232265 s +adv +232272 o +232275 o +232278 s +232284 adv +adv +232287 adv +232298 adv +232301 o +adv +232305 o +232310 s +s +p +232315 s +232317 adv +232323 adv +232326 s +o +232331 o +232333 adv +232346 adv +232349 v +232355 o +232360 o +232368 adv +232372 adv +232374 o +adv +232378 s +232380 adv +232383 apposition +232386 adv +232389 o +232391 p +232394 apposition +232397 adv +232403 o +232405 adv +232408 adv +o +232411 s +232413 p +232415 adv +232419 adv +232422 adv +232432 o +232436 o +232438 o +232441 adv +232446 s +232448 v +232450 o +232453 o +232456 adv +232469 adv +232473 adv +232478 s +232480 v +232482 v +232484 adv +o +232489 adv +adv +p +232505 adv +adv +232508 adv +232510 adv +232516 aux +adv +adv +232523 adv +232525 adv +adv +232528 adv +232532 o +adv +232540 adv +232542 o +232545 adv +232550 adv +232554 adv +232560 adv +232563 s +232565 adv +232567 o +232570 o +o +adv +232574 adv +232580 s +232583 s +232589 s +232592 s +232598 s +232601 s +232604 apposition +232606 o +adv +232611 s +232614 adv +232622 adv +232624 s +232627 s +adv +232632 adv +232637 s +adv +232643 s +232648 s +232650 s +232653 s +232658 o +s +232664 adv +io +232671 adv +232675 s +232678 o +232681 s +232685 adv +p +s +232693 adv +232696 s +adv +232699 adv +s +232707 o +232711 s +232713 p +232719 s +o +232724 p +232728 adv +p +232736 s +o +232741 p +232745 adv +p +232750 adv +232752 s +232754 s +232757 adv +232759 s +232763 s +o +232766 apposition +232768 adv +232770 adv +232775 adv +232777 s +p +s +232791 s +o +io +o +o +232797 o2 +232799 s +io +232802 o +232808 adv +s +232812 o +232817 adv +o +p +232821 o +232824 s +232826 o +232829 s +232834 s +o +adv +io +232839 o +adv +232843 p +232847 o +adv +s +232856 s +232858 s +232864 s +232869 p +232878 s +s +adv +232882 p +232888 o +232906 o +232916 o +232922 adv +232929 adv +232938 p +232954 o +232963 o +232965 adv +232973 apposition +232977 o +232984 o +232986 adv +232993 s +232995 s +232998 s +233002 o +233005 o +233008 adv +233011 adv +233020 s +233028 o +233032 o +233040 adv +233043 adv +233047 adv +233049 s +s +233058 adv +233060 adv +233062 adv +233065 adv +233067 o +233073 adv +adv +233077 adv +233081 adv +233084 adv +233090 s +233092 apposition +233096 s +233101 o +233104 o +233113 s +233125 s +233127 o +233132 s +233137 s +233143 o +s +233153 s +233157 s +233161 adv +233163 s +233171 adv +adv +233176 adv +233189 aux +233192 adv +s +233199 adv +233201 s +233210 adv +233212 s +o +adv +233220 s +adv +233223 o +233225 s +233230 adv +v +233238 s +233240 p +233248 o +233253 adv +233257 s +233259 adv +233264 aux +233267 p +233269 adv +233273 o +233278 s +233280 adv +233289 s +233293 s +233303 adv +233306 adv +233310 adv +233313 adv +233321 s +233323 o +233326 o +adv +233332 o +233340 s +233343 o +o +adv +233350 adv +o +o +adv +233355 adv +233357 o +233360 o +adv +233367 adv +233369 adv +233372 adv +233375 adv +233377 adv +233381 adv +233386 io +233395 s +p +adv +233403 s +adv +233415 s +233417 adv +233423 s +233427 o +233437 s +233443 adv +233445 adv +233447 s +233453 adv +adv +o +adv +o +233459 s +p +233477 p +233484 adv +233501 adv +233504 io +233511 s +233515 s +233521 io +233524 s +233529 adv +o +adv +233538 s +233543 s +233550 adv +233556 s +adv +233561 s +233568 s +233576 o +233578 adv +o +233583 s +adv +233589 adv +s +233595 adv +233600 o +p +233604 adv +o +233607 p +233618 aux +233620 o +233624 o +233629 adv +233636 o +233638 apposition +233642 adv +233644 adv +o2 +233647 adv +adv +233656 adv +o +o +233661 adv +233664 adv +233672 adv +233675 adv +233682 io +233685 adv +233687 apposition +233689 adv +s +adv +233698 io +233703 adv +adv +233706 io +233710 p +233714 apposition +adv +adv +233718 o +233726 adv +p +233730 s +233733 apposition +233738 adv +233741 s +233751 s +233761 o +233763 adv +233765 s +233767 o +233769 s +233773 adv +233775 s +233784 s +233786 o +s +233792 p +233795 adv +233797 adv +233799 adv +233801 o +233803 apposition +adv +233810 adv +233818 s +233820 o +p +233827 s +233830 adv +233833 adv +233835 adv +233838 adv +v +adv +233844 adv +s +apposition +233852 adv +233854 p +p +233857 s +233861 adv +233863 adv +233865 adv +233871 adv +233878 s +233880 adv +233885 s +adv +233888 o +io +233892 adv +233894 o +233903 s +adv +233906 o +233908 adv +233913 s +233915 apposition +233919 adv +233927 o +233930 s +233932 adv +233935 o +233939 adv +233941 s +s +233945 io +233947 o +adv +233950 s +adv +233955 s +233957 adv +233961 adv +233963 adv +233966 s +adv +233971 adv +adv +233976 apposition +adv +233980 apposition +233984 adv +233986 adv +adv +s +234003 o +s +234013 o +234016 adv +234020 o +234022 s +234025 adv +234029 adv +s +234035 adv +234038 o +234040 apposition +234043 o +234045 adv +234047 o +234055 s +adv +234060 io +234062 o +234066 s +p +234074 s +234077 s +234083 s +234092 s +234097 s +234102 s +234105 s +234108 s +234112 adv +234115 s +234122 adv +234124 adv +234128 adv +234130 adv +234134 adv +234136 adv +234140 s +234142 s +234145 adv +234147 s +s +234151 o +234153 s +234156 adv +234160 s +234162 adv +234169 s +234172 s +234174 s +234178 s +234180 adv +234182 s +234184 p +234188 adv +s +s +234194 adv +s +s +234201 adv +234203 o +234206 o +234214 o +234217 s +234219 o +o +234223 s +o +234234 adv +234247 s +234253 s +234255 s +234259 s +234267 s +234271 s +234274 s +234276 apposition +234278 o +234280 s +adv +234285 s +234289 s +234295 s +234298 p +234301 s +234304 p +234308 io +234310 apposition +234312 o +adv +234317 apposition +234322 aux +234324 p +adv +adv +234330 adv +adv +234333 s +234335 adv +234340 adv +234343 apposition +234349 io +234353 s +234356 adv +234358 s +adv +adv +o +apposition +234364 adv +234366 adv +234377 adv +adv +o +234381 adv +234385 adv +234387 s +234389 adv +234394 adv +adv +234403 adv +adv +234409 adv +234415 o +adv +234419 o +o +adv +adv +234424 s +234428 adv +adv +234435 s +234440 s +234445 adv +234447 o +234449 adv +234452 o +234454 adv +234463 adv +234466 adv +234469 adv +234476 adv +234478 apposition +o +234481 adv +adv +234486 o +234489 o +234497 adv +234503 s +p +234511 o +234514 apposition +234517 p +234521 adv +io +o +234525 s +io +234539 adv +234545 adv +234547 o +234551 o +234559 o +234562 s +234567 adv +s +234570 adv +234577 s +234581 adv +234585 s +adv +234593 o +234600 s +234604 p +234607 s +234609 p +234611 adv +234615 s +234617 apposition +234624 apposition +io +234629 apposition +234631 p +adv +234636 apposition +234638 p +234643 s +234645 adv +234648 apposition +234651 apposition +234654 s +234659 apposition +234662 apposition +234671 apposition +234673 adv +234677 adv +234680 o +o +234684 adv +234687 apposition +adv +234690 adv +234692 adv +234694 s +234697 adv +adv +234700 s +234706 adv +234708 adv +234715 adv +234717 adv +234721 apposition +234723 adv +234728 apposition +s +234733 s +234735 adv +adv +adv +234739 adv +234741 p +234743 adv +234749 o +adv +234754 apposition +234756 p +234758 adv +234760 adv +adv +adv +234764 adv +234771 adv +o +234778 v +adv +234781 adv +234786 apposition +234788 o +apposition +234791 adv +234795 apposition +adv +adv +234801 adv +234803 s +adv +adv +234808 adv +234810 s +234813 adv +adv +234818 s +234821 p +234825 adv +234828 adv +234833 adv +234838 adv +234842 adv +234847 o +234855 o +234857 adv +adv +234860 adv +o +234863 p +adv +234866 s +adv +234876 adv +234878 o +234880 adv +adv +234883 o +234887 adv +adv +234891 adv +adv +234895 adv +adv +234901 adv +234904 adv +234908 adv +o +adv +234912 p +s +234922 s +adv +234925 s +234928 apposition +234930 p +234936 s +234941 apposition +apposition +234944 adv +adv +adv +234950 p +234954 adv +234958 s +234960 adv +p +234965 adv +234967 s +io +adv +adv +234974 s +234977 adv +adv +234981 p +apposition +234988 o +234991 adv +234997 o +adv +235001 o +235003 adv +adv +235010 adv +235013 adv +235017 adv +235021 o +apposition +235024 adv +adv +adv +235030 adv +235032 s +p +235035 adv +235037 p +235039 adv +235043 o +adv +235046 adv +adv +235049 s +adv +adv +235053 o +235055 s +235057 p +235061 adv +235066 adv +235068 o +235073 o +235075 apposition +adv +235084 adv +o +adv +235090 adv +s +235094 apposition +235097 adv +235099 adv +v +235102 o +235105 adv +235107 s +235111 o +adv +235116 adv +adv +235119 o +235121 adv +235123 adv +235127 adv +235133 s +adv +235136 adv +adv +235141 adv +235145 o +235152 adv +235154 adv +235160 adv +235163 adv +235165 adv +235167 o +apposition +235172 adv +adv +235177 io +235179 apposition +235182 adv +235186 o +235190 adv +adv +235193 adv +235196 p +adv +adv +235209 p +235215 p +235222 adv +235227 v +o +235231 adv +235233 s +o +235238 adv +235242 adv +235244 adv +adv +235248 o +235253 adv +o +adv +235261 p +235263 adv +adv +235267 adv +v +235270 adv +235274 adv +235276 p +adv +235279 adv +235281 adv +235285 adv +235290 apposition +235294 o +adv +235297 adv +235303 adv +adv +adv +235308 s +235310 p +235313 apposition +o2 +235322 s +235325 s +235331 s +235334 adv +adv +adv +adv +235339 s +235341 o +adv +235345 adv +235351 apposition +235354 adv +s +235358 adv +235362 adv +235364 s +235367 adv +s +235374 s +235376 adv +235379 adv +235386 adv +235388 s +235390 adv +adv +s +235394 adv +235399 adv +o +adv +235406 adv +235409 adv +235412 s +235414 adv +235422 s +235427 adv +235430 s +235432 adv +235437 adv +adv +235440 adv +235445 adv +235451 adv +235460 adv +235462 s +235466 s +p +235471 adv +s +235477 s +adv +235480 adv +o +235483 adv +235485 adv +adv +adv +235489 adv +235494 adv +235497 o +235505 o +235508 adv +235511 adv +235514 o +235518 adv +235521 adv +235524 adv +235531 v +s +235535 adv +235538 v +adv +adv +s +235545 o +235548 adv +235551 s +235559 apposition +p +235569 o +235572 o2 +adv +235576 p +s +235580 o +adv +apposition +adv +235586 adv +235593 adv +235598 o +235600 adv +235602 adv +235605 s +235608 p +235611 p +235617 adv +235632 o +235634 o +235637 adv +235641 s +235645 adv +235652 s +apposition +235655 adv +adv +235659 s +235663 adv +235671 s +adv +235675 s +adv +235680 adv +o +235685 adv +235688 o +adv +235691 s +adv +235694 adv +adv +235698 s +235700 o +235702 o +adv +235706 adv +235711 s +p +235715 s +adv +adv +235719 o +adv +235732 s +235738 s +235740 adv +235746 s +235750 adv +235753 o +235757 o +235760 o +235766 s +235770 s +235775 adv +235777 adv +235779 s +235784 adv +o +apposition +235788 adv +235793 adv +235795 adv +o +o +235800 apposition +235802 adv +235805 adv +235809 s +235812 p +235814 adv +adv +235817 o +v +adv +235821 s +adv +235827 s +235829 adv +235831 p +apposition +235834 o +235845 o +235847 adv +adv +235850 adv +235854 adv +adv +235862 o +235864 adv +235868 adv +235873 adv +v +235877 o +235881 s +s +235884 adv +235888 adv +235890 o +235893 adv +235895 ellipsis +235903 adv +o +235913 o +adv +235923 o +adv +235927 adv +235931 adv +235934 adv +235940 o +235943 o +235947 s +235950 adv +adv +235954 adv +adv +235957 s +235960 adv +adv +235963 s +235965 adv +235968 adv +v +235974 adv +235976 adv +235981 adv +235987 adv +235989 p +p +235994 s +236000 s +p +236004 apposition +236007 adv +236010 o +236016 v +adv +adv +236020 o +236024 adv +o +236032 adv +236035 s +adv +236039 adv +o +adv +236044 o +236046 adv +adv +236049 p +adv +236054 adv +o +adv +o +236060 adv +236062 o +236064 adv +236067 adv +236071 s +236074 s +236079 o +adv +236083 s +236086 adv +adv +236089 adv +236144 aux +236168 s +236170 adv +o +s +236177 adv +236180 adv +236187 o +236193 s +236196 v +236201 adv +236205 adv +236210 p +adv +236214 adv +236218 adv +adv +236224 p +236229 s +adv +236234 adv +236240 p +236243 p +236251 adv +236258 o +236263 p +236266 p +236270 s +236275 adv +o +236278 adv +236283 adv +adv +236295 adv +adv +236298 adv +236300 p +236303 adv +236306 v +236311 adv +236313 adv +236317 adv +236319 adv +adv +236328 adv +236331 s +236335 adv +236341 s +236344 o +apposition +adv +236352 adv +adv +236362 apposition +adv +adv +o +236374 adv +236380 adv +236383 o +236388 adv +236390 s +236392 adv +236394 adv +o +236402 adv +236406 adv +adv +236409 adv +adv +236414 s +236417 o +236423 s +236429 s +236431 apposition +236433 adv +o +236444 adv +adv +adv +236453 adv +236465 s +236468 apposition +236470 adv +adv +236475 adv +236479 o +236481 adv +236484 adv +adv +236490 s +236492 adv +236497 adv +236503 adv +236505 s +236513 s +236515 adv +adv +o +236520 o2 +236522 adv +236530 adv +adv +236536 o +236540 apposition +236542 adv +236546 adv +236548 adv +236551 s +236561 adv +236569 adv +236571 adv +236575 adv +adv +236578 o2 +236585 apposition +236596 io +236600 adv +236602 adv +236605 adv +236607 adv +236609 adv +o +236616 adv +236618 adv +adv +236631 adv +236638 adv +236640 adv +236643 o +236651 o +236656 apposition +o +236659 adv +adv +adv +236663 adv +236668 adv +236672 adv +o +236680 adv +236684 o +236687 adv +236689 adv +236691 s +236695 s +236698 adv +236704 adv +236706 s +236708 adv +236712 adv +236723 p +236725 adv +236728 s +236730 adv +236733 adv +236735 s +236738 adv +236741 adv +236746 o +236748 s +236750 o +236753 s +236755 o +236759 io +236761 apposition +236763 o +236765 adv +adv +236769 adv +236773 o +236776 adv +adv +236781 adv +o +236784 apposition +236786 s +236791 p +236796 adv +236799 adv +236801 p +adv +236806 apposition +236808 adv +adv +236817 adv +236821 adv +236825 apposition +236827 adv +236831 adv +236839 o +236842 apposition +adv +adv +236848 adv +236850 apposition +236857 adv +236859 p +236867 aux +236869 p +236875 o +236884 adv +adv +236892 adv +236895 apposition +236898 s +236900 adv +236903 o +236906 apposition +adv +adv +236910 adv +236913 s +236915 o +236922 o +236925 s +236928 apposition +236930 adv +236938 v +236945 adv +236948 o +236950 adv +236953 adv +236959 o +o +adv +236964 adv +236967 o +236971 adv +adv +236980 apposition +236982 s +236986 s +236988 adv +adv +236997 adv +236999 adv +237005 o +s +237012 s +o +o +adv +237018 adv +adv +o +adv +237026 o +237029 io +237031 s +237033 adv +237039 s +237042 io +237046 adv +v +237049 o +237053 o +237059 adv +adv +237063 apposition +adv +adv +io +237069 s +237073 v +o +237079 adv +237081 adv +237085 adv +237090 o +adv +237112 adv +237114 adv +237124 io +adv +237132 s +237134 adv +237140 adv +p +237144 adv +adv +237148 adv +adv +237153 o +237155 adv +adv +237158 apposition +o +adv +237164 adv +237166 adv +237172 adv +adv +adv +237178 s +237184 adv +adv +237189 o +237194 adv +237200 o +adv +237206 o2 +237208 adv +o +o +237213 s +237217 o +237223 o +237225 adv +adv +237228 adv +237230 s +237238 adv +adv +237243 apposition +s +adv +237254 adv +237257 adv +237262 o +237265 s +p +237271 s +237276 s +p +237280 s +adv +237283 adv +adv +237287 adv +adv +adv +237293 o +v +237296 adv +237302 adv +237304 adv +237311 adv +237315 adv +237320 apposition +s +adv +adv +237329 adv +237331 adv +237334 adv +237336 adv +237343 adv +237345 adv +237349 adv +s +237352 adv +237354 adv +adv +237358 adv +237360 adv +237364 adv +237366 adv +237371 s +237373 adv +237379 aux +237382 s +237387 o2 +237396 adv +237399 io +adv +o +io +237412 s +adv +237417 s +237419 adv +237425 apposition +237434 s +237436 o +237438 apposition +237441 o +237444 apposition +237448 apposition +237453 o +adv +237462 p +adv +237466 adv +237469 adv +adv +adv +237476 adv +adv +237481 o +237487 o +adv +adv +237494 adv +237496 adv +237502 o +237504 s +adv +adv +237510 adv +v +237516 s +p +237520 s +237522 adv +adv +237529 adv +adv +237534 s +237538 apposition +adv +o +237542 o +237547 adv +adv +237551 s +237555 s +p +237558 adv +adv +237567 s +237569 adv +237574 adv +237576 s +237579 adv +237581 adv +s +237584 p +237589 o +o +237604 o +237608 o +adv +237613 adv +adv +237623 adv +237629 o +adv +237646 adv +237649 adv +adv +237658 adv +237660 adv +o +237673 p +237677 p +237680 adv +237685 adv +237687 adv +237689 adv +237691 adv +237695 adv +o +237702 adv +237707 apposition +237709 p +237711 p +237713 adv +237715 adv +237717 adv +237719 adv +237721 adv +237723 adv +237726 p +237729 p +237731 p +237735 p +237737 p +237742 adv +237744 s +p +237748 apposition +237766 s +237768 o +237773 s +237780 apposition +237782 adv +237784 o +237789 adv +s +237793 apposition +o +237796 adv +237800 adv +adv +adv +237806 o +237810 s +237817 adv +237823 o +237825 aux +237832 adv +237834 o +237837 adv +237841 s +237843 adv +237845 s +adv +237851 o +237853 aux +237855 o +237860 adv +237863 adv +237867 s +237870 adv +237874 o +237876 apposition +s +237881 adv +237885 adv +adv +237888 adv +237896 o +237906 adv +adv +237912 adv +adv +237920 adv +237922 adv +apposition +s +adv +237927 adv +237931 adv +o +o +237935 adv +237939 o +237941 s +237945 s +adv +237950 adv +237952 adv +237954 adv +s +237961 adv +237968 adv +237972 adv +237981 o +adv +237986 adv +237988 adv +237990 p +237994 s +237997 adv +adv +238000 adv +238007 s +adv +238011 adv +238015 s +238018 o +238023 o +adv +adv +238033 o +238038 s +o +io +238042 s +io +238047 v +238049 adv +238054 adv +238064 adv +238069 aux +apposition +adv +adv +238078 o +238086 adv +238090 adv +238094 o +238098 adv +adv +238104 s +p +238117 adv +o2 +238120 o +238124 s +238131 s +238133 adv +238136 o +238142 adv +238148 apposition +238151 adv +adv +238155 adv +238160 s +238163 v +238165 adv +238168 adv +238171 io +238177 adv +238182 adv +238187 o +238192 adv +apposition +238195 adv +238198 adv +238203 adv +238206 adv +238212 s +adv +238216 adv +adv +238219 adv +238226 p +238232 o +238234 s +p +238243 o +238245 o +238251 adv +238253 o +o +o +238260 o +238263 p +238268 adv +238271 adv +238284 o +apposition +238289 adv +adv +adv +238293 adv +adv +238297 apposition +s +adv +238314 o +238318 s +238323 p +238326 adv +238330 s +238334 s +238339 apposition +238349 p +238353 s +238355 apposition +238367 apposition +238369 adv +238375 io +238380 s +238382 adv +238385 apposition +238389 apposition +apposition +238393 adv +238398 adv +238402 apposition +238404 adv +238412 apposition +s +adv +238424 adv +238427 adv +238429 adv +238432 apposition +adv +238435 p +238440 o +o +238451 s +238455 adv +238464 o +238467 adv +238474 o +238479 o +238482 adv +238485 p +238490 adv +238492 apposition +238494 adv +o +238497 p +238503 adv +238507 adv +238513 o +238519 adv +238522 adv +o +238530 adv +238532 adv +238538 adv +p +238548 s +238551 adv +238556 adv +238559 o +o +238562 adv +adv +238565 adv +238568 v +238570 io +238572 o +adv +adv +238580 adv +238583 adv +238587 adv +238589 adv +adv +238593 adv +adv +238598 o +238600 adv +238602 o +apposition +238613 adv +adv +238619 adv +238629 v +adv +adv +238635 apposition +238641 v +o +238644 s +238646 o +238648 apposition +238651 adv +o +238655 adv +238657 adv +adv +adv +o +238664 adv +238669 o +238671 apposition +adv +238676 adv +io +238679 adv +238682 adv +v +238688 s +apposition +238691 adv +o +238696 adv +238701 apposition +adv +o +238706 apposition +adv +238709 adv +238711 apposition +adv +adv +adv +238716 s +238719 adv +238724 adv +238727 o +238731 s +238733 o +s +238737 s +238742 adv +238745 adv +238747 o +238750 adv +238752 o +238755 s +238757 adv +238760 adv +adv +238765 o +238767 apposition +238769 s +238773 apposition +238775 o +o +io +238779 adv +238782 adv +238786 adv +238793 o +238795 o +o +238803 adv +238805 adv +238808 v +238813 adv +238816 adv +adv +238821 adv +238823 v +238826 adv +o +238833 s +238838 s +adv +238846 o +238848 adv +238853 io +adv +o2 +238858 adv +adv +238863 o +s +238871 adv +238875 adv +adv +238878 adv +238880 adv +238882 adv +238885 s +adv +238888 adv +238891 adv +238895 adv +238899 adv +238901 s +238905 adv +238907 adv +o +adv +s +238912 p +238920 adv +238925 adv +adv +238936 adv +238940 o +adv +adv +238944 apposition +238949 apposition +238954 adv +238957 o +238965 p +238970 aux +238972 o +adv +s +o +238979 o +o +adv +238983 o +adv +238994 adv +238997 adv +239002 s +239005 o +239008 adv +adv +239015 adv +239018 o +239021 adv +239025 o +239028 aux +239030 p +239034 s +adv +o +239038 adv +o +s +io +o +239044 adv +s +239050 s +239052 adv +239058 s +p +239061 p +239065 o +239067 s +239069 adv +239072 adv +239076 adv +239081 s +239083 adv +adv +239086 adv +239088 s +adv +239094 s +p +239098 s +239100 adv +239105 adv +239109 adv +adv +adv +239113 o +s +239117 adv +239120 adv +239122 s +239125 adv +239129 o +239132 adv +239137 adv +239140 o +239143 v +239148 s +io +239159 aux +239164 adv +239168 adv +239170 aux +239174 adv +239178 o +o +239181 adv +239183 s +239186 adv +239189 adv +239192 o +239198 p +s +239201 p +239205 io +adv +s +239211 s +239214 adv +239216 adv +239219 s +239221 apposition +adv +adv +adv +239230 s +239233 s +239237 s +p +239249 s +apposition +239252 o +239255 p +s +239260 s +o +adv +adv +239265 s +adv +239269 io +239274 adv +239277 s +adv +adv +adv +239284 o +239288 s +p +adv +adv +239293 adv +239297 adv +s +p +239303 p +adv +239312 s +adv +239317 s +239320 s +239323 s +239328 s +adv +239339 p +239342 adv +239346 apposition +239348 adv +adv +239351 s +adv +p +239356 p +239359 adv +239365 s +adv +239368 adv +239372 v +239378 s +239383 s +o +239386 adv +adv +adv +adv +adv +239392 o +239396 o +239403 s +o +239408 adv +239411 adv +239413 aux +apposition +239418 p +239422 adv +239424 p +adv +239431 adv +o +239436 adv +239440 adv +adv +239447 apposition +o +adv +239452 o +239458 o +239461 adv +239481 adv +239484 adv +239487 adv +239491 o +239497 v +239500 adv +239502 o +adv +239505 o +239509 s +239514 o +239516 adv +239518 adv +o +239524 p +adv +239531 o +adv +239537 s +adv +adv +239542 adv +239545 adv +239547 aux +239549 apposition +adv +239552 adv +239557 o +239559 adv +239562 o +239566 adv +239571 aux +239573 o +p +239576 o +239580 adv +239582 o +239584 apposition +239597 s +239600 adv +239603 s +239606 adv +239608 adv +p +239613 p +239619 p +239621 adv +adv +adv +239628 s +p +adv +239634 adv +239638 adv +239643 s +239645 adv +p +239650 o +239654 aux +apposition +239662 aux +239667 s +239672 s +239674 o +239679 adv +p +239684 adv +239686 s +239688 adv +o +239694 s +o2 +239697 o +239704 adv +s +239708 adv +239716 p +239721 adv +239728 adv +239731 s +adv +239734 adv +239739 io +239742 o +239744 adv +o +239749 adv +s +adv +o +adv +239757 adv +o +239762 adv +239764 v +239766 s +239769 s +239771 adv +239776 o +239779 s +p +239785 s +o +239790 adv +adv +o +239794 o +239798 s +239800 o +adv +239813 s +239820 s +239825 adv +239831 o +adv +239836 adv +239841 s +239843 adv +239848 apposition +o +239851 adv +239856 adv +239858 v +239863 adv +239867 o +239871 o +adv +239877 s +adv +239882 s +adv +239888 adv +239891 adv +239899 p +239903 s +239907 apposition +p +239913 apposition +adv +239916 o +239918 s +239920 o +o +239926 s +239929 p +239931 p +239936 s +239939 o +adv +239947 adv +239951 adv +adv +239958 adv +239961 s +apposition +o +adv +239966 adv +adv +239969 s +239973 o +239977 o +239985 o +adv +239992 o +239997 adv +o +240001 adv +240006 o +240011 s +240013 o +adv +240016 adv +240020 o +240024 adv +240026 adv +240029 s +240031 adv +240034 adv +240038 s +240040 adv +240042 adv +240044 o +240048 o +o +240053 adv +adv +240063 o +adv +240067 adv +240075 adv +adv +240080 apposition +adv +o +adv +o +240086 adv +240093 s +240096 o2 +240098 o +240101 adv +240107 s +adv +240110 adv +240116 apposition +apposition +adv +adv +240123 s +240130 adv +adv +240133 s +240135 p +240145 adv +240148 o +240151 adv +240156 s +240161 apposition +p +240169 s +apposition +240175 io +240178 apposition +240180 p +240187 s +240189 adv +240192 apposition +240195 apposition +240198 s +240206 apposition +apposition +240210 adv +240213 adv +240215 adv +240218 adv +adv +240221 adv +p +240224 adv +adv +adv +adv +adv +240230 adv +adv +240236 adv +240242 apposition +adv +240248 adv +o +240255 apposition +240258 adv +240264 apposition +adv +adv +240270 adv +o +240275 adv +240279 apposition +adv +adv +240286 adv +240288 o +adv +240292 o +240300 adv +240303 adv +adv +adv +240309 o +adv +240315 adv +240318 adv +240321 s +apposition +240324 adv +240328 adv +s +adv +o +240335 apposition +240339 adv +adv +adv +240347 apposition +p +240351 adv +240354 adv +240360 adv +adv +o +240373 apposition +240377 o +adv +adv +adv +240383 adv +240385 s +240391 apposition +apposition +240395 o +240398 adv +240400 adv +s +240405 adv +240408 o +240410 s +240415 s +240426 s +240435 apposition +240437 adv +240446 adv +240448 adv +240450 adv +240453 adv +240455 adv +240457 adv +240468 adv +240481 adv +240486 o2 +240488 io +240490 apposition +p +240494 apposition +240498 o +adv +240503 adv +adv +240509 adv +adv +240515 adv +240522 apposition +240524 apposition +240526 adv +240533 adv +s +240536 adv +240541 adv +o +240550 p +adv +240553 s +240560 s +adv +adv +adv +240568 apposition +adv +adv +adv +240573 v +240580 adv +240582 adv +240586 adv +240589 apposition +240591 o +240607 adv +v +adv +240614 p +240616 p +240621 p +240627 p +adv +adv +240631 adv +240634 apposition +adv +s +240638 adv +240644 o +240646 s +240648 apposition +240651 apposition +240653 adv +240656 p +240660 adv +240662 adv +p +240666 adv +240683 adv +240685 s +apposition +240688 adv +240695 p +240698 apposition +240701 o +240704 o +240708 apposition +adv +240712 adv +o +240718 adv +240721 o +adv +adv +240726 adv +240729 o +adv +240732 io +adv +240735 adv +o +adv +240743 adv +io +apposition +240748 io +240751 adv +o +s +adv +240756 adv +240762 v +240764 p +240767 p +240773 adv +adv +240780 adv +s +240784 apposition +adv +s +adv +adv +240790 adv +240792 apposition +adv +s +adv +240798 adv +240802 adv +s +p +240811 apposition +240816 o +240822 apposition +240824 adv +240827 adv +s +adv +240831 adv +adv +adv +adv +o +o +240844 apposition +adv +adv +io +240851 io +240856 adv +s +s +p +240864 adv +240866 adv +240868 adv +p +adv +240877 apposition +240879 adv +240886 io +apposition +240890 s +240892 adv +240894 io +o +240901 o +s +240906 apposition +240908 adv +240910 adv +240913 apposition +240915 o +adv +240918 io +240925 adv +240927 s +240931 adv +240935 apposition +adv +240941 apposition +240943 apposition +adv +o +240948 adv +adv +240955 o +adv +240962 apposition +p +240966 adv +o +240969 adv +240972 apposition +adv +s +240980 adv +240982 adv +240987 o +adv +240991 adv +240994 adv +s +adv +240998 adv +241001 adv +adv +v +241005 adv +241007 o +241009 adv +241012 o +s +241020 o +241023 adv +241026 adv +241028 adv +241037 aux +241039 o +adv +241043 v +241045 adv +241048 apposition +241050 adv +s +adv +241058 adv +241069 s +apposition +241073 o2 +adv +241076 apposition +adv +adv +241082 adv +adv +adv +o +o +241089 adv +241096 p +241102 adv +241109 p +241118 apposition +241128 io +241130 s +adv +241140 o +241142 adv +adv +241145 io +241149 s +241151 adv +241155 adv +241162 s +241165 p +241168 adv +241171 adv +241173 o +241177 o +241188 adv +241201 adv +241203 s +adv +241224 adv +241227 p +241229 v +241231 adv +241234 adv +241247 adv +adv +adv +adv +241254 apposition +p +apposition +adv +s +241260 adv +v +241263 adv +241266 apposition +adv +241273 o +241276 adv +241286 adv +o +241291 s +adv +241296 adv +v +adv +adv +adv +241303 adv +241306 apposition +241308 p +adv +241315 apposition +adv +adv +adv +241327 o +241334 adv +adv +241337 p +241339 o +241341 adv +241344 o +241347 apposition +241349 adv +241355 adv +241361 o +241364 apposition +241366 adv +adv +241375 adv +o +adv +241380 adv +241382 p +241391 s +adv +241395 io +241399 s +241404 adv +adv +241407 o +241410 o +io +241416 s +241418 adv +241422 o +241425 adv +241430 io +241435 o +241438 apposition +241441 apposition +adv +adv +241447 s +241453 adv +adv +241459 adv +p +adv +adv +241464 s +241466 adv +241471 p +241473 adv +241475 s +241478 adv +adv +241482 s +241486 adv +o2 +241499 s +241503 adv +adv +241508 s +241512 apposition +241518 adv +adv +241521 s +241526 apposition +adv +241535 adv +adv +241538 adv +s +241542 adv +241549 p +241556 adv +241560 adv +241562 s +241565 s +241568 p +241573 tail +o +adv +241581 adv +241583 apposition +241590 s +241592 adv +adv +241597 s +adv +adv +241601 adv +241603 s +241609 o +241612 aux +241616 adv +241620 s +241624 o +241631 adv +o +adv +241635 s +241639 adv +241642 o +s +241650 adv +apposition +p +241654 adv +adv +241657 adv +241662 v +241664 adv +241666 io +241668 adv +adv +241674 apposition +o +241679 adv +241684 aux +io +241687 adv +241689 io +adv +241692 p +241694 adv +241697 s +241699 p +241702 p +241707 adv +241709 s +io +s +241713 io +adv +241718 aux +241720 o +241724 s +241726 o +241730 adv +241733 adv +adv +241737 adv +adv +241740 o +o2 +241743 v +241745 o +241752 p +241756 s +241758 o +o +241761 adv +241763 o +241768 s +241770 o +241775 o +241779 v +241781 adv +241783 s +241785 o +adv +241788 p +241795 adv +o +241802 adv +241807 s +p +241813 s +241817 adv +241826 s +241828 apposition +241830 o +241832 adv +241836 s +o +241839 o +241844 aux +o +241847 adv +241853 o +o +241859 p +241867 adv +241873 aux +v +241876 o +241879 adv +241886 aux +241889 o +241892 adv +241895 adv +241901 o +241905 adv +241911 s +241913 adv +o +241917 adv +adv +adv +adv +241923 o +241926 adv +adv +241929 adv +241931 o +241933 adv +241943 aux +o +adv +adv +o +adv +adv +241952 s +241957 p +241960 p +241963 adv +adv +241974 o +241977 adv +241980 o +adv +241985 adv +241987 s +241989 p +242012 adv +o +242016 adv +242018 o +242020 adv +242026 adv +242030 adv +242032 o +242034 adv +242037 o +242042 o +adv +242048 adv +adv +o +242054 apposition +adv +o +o +242062 apposition +242067 o +242076 apposition +p +adv +242080 adv +242084 adv +242086 adv +242089 adv +adv +242094 adv +242100 adv +242102 adv +242106 adv +adv +o +242112 apposition +adv +adv +adv +242117 adv +adv +242120 s +242126 s +o +242130 apposition +242132 s +242134 apposition +242141 apposition +adv +adv +adv +242148 o +242152 o +242156 io +s +242159 adv +adv +242165 apposition +242168 s +p +242173 o +242176 apposition +adv +242180 s +242183 apposition +242185 io +242191 apposition +242193 p +adv +242199 s +242201 adv +242204 apposition +242207 apposition +242210 o +242212 adv +242216 adv +adv +242223 adv +o +adv +242238 adv +o +o +242242 s +242244 adv +o +adv +242249 adv +242251 s +adv +242254 adv +242257 adv +242259 adv +242271 adv +p +242275 s +242279 p +s +adv +242283 o +adv +242290 adv +242292 s +242294 adv +242296 adv +242300 adv +242303 o +242305 adv +242307 p +242309 adv +242311 adv +adv +242314 apposition +242317 adv +242325 o +adv +242328 s +242330 adv +242333 adv +242336 s +242338 adv +adv +242348 s +242351 adv +adv +adv +242355 o +o +242363 adv +242369 adv +242371 o +242376 adv +adv +o +242380 adv +242385 adv +o +242388 adv +o +adv +242400 adv +adv +242406 adv +242413 adv +242415 adv +adv +242425 adv +242434 adv +242437 adv +242439 adv +adv +242443 adv +242452 s +242456 s +242461 adv +242463 s +242465 adv +p +242470 o +242475 adv +242477 adv +o +adv +242485 p +242491 s +242493 adv +adv +242498 adv +adv +242501 v +242503 adv +adv +242511 adv +242513 s +242515 adv +242517 adv +adv +242527 adv +242530 adv +242532 adv +242540 o +242542 adv +242544 adv +242546 adv +242548 adv +adv +242554 adv +adv +242558 apposition +242561 p +242564 p +242567 p +242570 s +242573 apposition +242577 adv +242581 adv +adv +o +242586 apposition +242588 adv +242591 adv +242598 s +p +242602 s +242606 s +242610 s +242614 o +o +242619 o +adv +o +242623 adv +o +242627 adv +242633 adv +o2 +o +242637 o +242639 o +242643 o +adv +242646 p +242650 adv +adv +242653 o +242657 adv +o +adv +p +242665 adv +adv +242668 adv +adv +242678 s +242682 o +242684 apposition +242690 adv +242693 s +242700 s +o +242703 s +adv +242711 aux +adv +242714 adv +242717 p +242721 adv +p +242725 adv +242728 o +242733 p +242735 adv +o +242743 adv +242747 adv +242750 adv +242752 p +242755 apposition +242757 adv +242763 apposition +adv +adv +adv +242768 adv +adv +o +adv +242773 adv +242777 adv +242779 adv +242785 adv +242796 adv +242801 adv +s +242808 adv +242810 o +adv +242813 adv +o +242820 o +adv +o +242827 s +o +242830 o +242835 o +242837 adv +242842 adv +adv +242850 o +adv +242854 o +242858 adv +adv +242861 s +242865 o +o +apposition +242879 adv +adv +242883 v +o +242890 o +242895 adv +242899 s +o +242905 adv +242907 adv +242911 adv +242914 adv +242921 adv +adv +242926 o +242929 adv +242932 adv +adv +adv +adv +242937 o +242946 aux +adv +adv +242951 s +o +p +242961 o +242963 o +242966 o +242970 p +s +apposition +242975 adv +242978 adv +242982 adv +adv +242985 adv +242991 s +o +adv +242999 p +243002 p +243004 p +243007 adv +243009 adv +p +o +243013 adv +243015 apposition +243020 adv +adv +243030 o +adv +243040 apposition +243042 apposition +243044 adv +o +243048 adv +243053 adv +adv +o +243058 apposition +243064 apposition +243070 adv +243072 o +243081 adv +adv +243087 adv +243090 apposition +243100 adv +243102 o +adv +adv +243109 o +243115 adv +243118 o +243121 adv +adv +adv +243136 adv +243143 o +s +243148 apposition +adv +243151 adv +243156 p +243159 o +243168 o +243172 adv +o +p +243179 adv +s +243182 adv +243184 s +243186 p +243189 s +p +243194 p +243196 o +243200 s +243202 adv +adv +adv +o +243207 apposition +apposition +apposition +o +243214 o2 +243219 adv +243224 o +o +243230 aux +243235 apposition +243238 adv +243247 o +adv +243253 o +243255 aux +243257 adv +apposition +adv +243261 adv +243269 apposition +s +243272 p +243276 adv +243279 o +243282 s +243284 io +243287 s +243293 adv +adv +243298 adv +s +243301 adv +243306 s +243309 apposition +apposition +243312 adv +o +243319 adv +243327 aux +243343 adv +v +243349 adv +243353 s +243356 p +243360 adv +adv +243363 o +243365 adv +apposition +243368 adv +243373 s +243375 adv +adv +243378 o +adv +p +243383 o +o +o +243388 adv +243392 adv +243405 adv +243411 adv +adv +243419 s +adv +243424 adv +243426 adv +243429 s +adv +243434 adv +243436 s +243439 adv +243441 adv +243444 adv +243451 o +243453 o +243455 apposition +243457 adv +243467 adv +adv +o +243472 apposition +243480 s +243482 o +243484 adv +243495 io +243499 s +adv +243507 o +adv +243512 s +243518 s +243522 s +243528 s +243532 apposition +p +243538 s +243540 apposition +243547 apposition +io +243558 s +243560 adv +243562 apposition +243565 o +243567 apposition +243571 apposition +adv +adv +adv +o +243584 apposition +adv +243588 adv +243592 apposition +243594 adv +243596 apposition +adv +243602 apposition +243604 apposition +243606 adv +adv +243610 adv +243614 v +243619 adv +243621 adv +243624 apposition +v +243628 o +243631 adv +adv +243634 adv +243637 apposition +243640 apposition +p +243647 apposition +243649 o +243655 adv +s +adv +243659 adv +o +adv +v +243664 adv +243666 adv +243670 adv +243675 adv +adv +adv +243679 adv +243682 adv +243687 adv +243691 adv +243693 adv +243698 adv +243703 adv +o +243707 apposition +243709 adv +243715 adv +243717 apposition +243719 adv +243725 adv +243734 apposition +adv +o +243738 apposition +243741 apposition +adv +p +243748 apposition +243751 adv +s +243761 apposition +243766 apposition +243776 s +adv +243783 p +243786 s +adv +243791 o +p +243796 apposition +apposition +adv +p +apposition +243804 p +adv +243807 o +243809 adv +s +243815 adv +o +adv +adv +adv +243825 adv +o +243839 p +243842 adv +adv +243849 adv +243854 adv +243856 adv +o2 +243860 adv +adv +243864 adv +adv +243871 adv +243878 apposition +apposition +243881 adv +243884 apposition +243887 apposition +p +s +243893 adv +243895 adv +243898 o +243903 adv +243906 adv +243910 apposition +p +243913 apposition +p +adv +243920 apposition +243922 adv +adv +o +243928 apposition +243930 apposition +243932 adv +243941 io +243944 apposition +s +o +o +s +243954 adv +243956 adv +p +s +243960 p +243963 apposition +adv +adv +v +243968 o +243971 o +adv +243975 o +adv +adv +adv +adv +adv +243984 apposition +243986 adv +adv +243991 o +o +o +adv +244001 o +244003 adv +adv +244006 s +244008 adv +adv +244018 adv +244024 apposition +apposition +adv +s +244035 adv +244037 adv +244043 adv +244047 adv +p +adv +244053 o +244068 o +244070 o2 +244072 adv +adv +244075 v +244077 adv +244080 adv +adv +244083 adv +adv +244091 p +244093 adv +244098 adv +244113 adv +s +244120 v +adv +244124 apposition +p +244130 apposition +adv +adv +adv +244144 adv +adv +244148 apposition +adv +adv +244157 apposition +244159 adv +244164 adv +adv +244172 adv +adv +o +244176 adv +o +244183 apposition +p +244187 adv +244189 adv +io +244193 adv +o +244198 adv +adv +adv +244204 adv +244215 apposition +244217 p +244222 s +p +244226 adv +244228 adv +244234 o +244237 adv +244244 o +244246 apposition +adv +s +244250 adv +adv +244255 v +244257 adv +244265 adv +adv +244271 adv +244273 adv +244275 o +v +244279 p +244283 adv +244289 adv +adv +244292 o +adv +244298 p +244300 adv +244306 adv +244308 adv +244310 o +244312 s +v +adv +244319 o +244321 o +244330 s +244332 adv +244334 adv +244338 adv +244340 s +244342 apposition +244344 s +adv +adv +244350 o +244353 apposition +244356 apposition +244362 apposition +apposition +adv +s +244368 adv +244370 adv +s +244373 adv +244377 s +o +244380 apposition +adv +244386 adv +adv +244389 o +244391 adv +244396 o +244398 apposition +244400 adv +adv +244405 adv +244408 s +244420 p +244424 adv +244431 o +244433 adv +244437 adv +244439 adv +244442 adv +244444 s +244446 s +244450 adv +244452 o +244454 apposition +p +244460 o +s +244464 adv +244467 adv +adv +244475 s +244478 adv +adv +adv +244482 v +244484 adv +244486 adv +adv +244489 adv +244492 io +244497 aux +244499 apposition +244501 adv +244505 adv +244508 adv +o +244511 adv +244515 aux +io +adv +244519 adv +244523 aux +244525 o +244528 adv +244533 aux +o +adv +244538 adv +244542 aux +o +244545 adv +244550 aux +adv +o +244555 apposition +244557 adv +adv +244561 adv +244563 adv +o +244567 o +244569 adv +adv +244575 adv +o +244578 adv +o +244584 o +244590 s +244592 o +244598 aux +o +244603 io +adv +adv +244607 s +adv +244611 o +adv +adv +adv +adv +244617 adv +244619 adv +244621 s +o +244624 adv +o +244629 apposition +adv +244633 adv +244635 s +244638 adv +adv +244641 adv +o +244645 s +244647 p +adv +adv +o +s +io +244655 o +244658 s +244660 apposition +244668 apposition +adv +adv +244672 adv +244675 o +244679 o +244681 adv +244684 apposition +244688 apposition +p +244692 o +244696 s +244699 apposition +244704 apposition +244706 apposition +adv +adv +244711 adv +244715 apposition +244717 apposition +244719 p +244722 p +adv +244727 adv +244730 s +244732 apposition +244734 apposition +244736 adv +adv +adv +244740 adv +244745 adv +244752 adv +244754 o +adv +244765 s +244767 apposition +244773 o +244788 adv +s +o +244795 adv +244802 o +244804 s +244808 o +244810 o +244812 apposition +adv +244818 s +adv +244824 o +244828 s +p +244832 s +244835 io +244843 apposition +244846 s +244851 o +adv +244854 adv +adv +244858 adv +o +244876 apposition +adv +244882 adv +o +244886 aux +244888 adv +244892 s +244894 adv +adv +244907 adv +244909 o +adv +adv +244915 p +244919 adv +o +adv +244923 adv +244926 adv +244928 adv +244942 adv +s +244946 adv +244952 adv +244954 s +244957 apposition +244960 adv +244962 adv +244966 adv +o +244969 o +adv +244973 adv +244975 adv +244977 adv +244979 o +244985 adv +244987 o +244991 apposition +adv +244994 apposition +apposition +244997 adv +245000 apposition +245006 o +245009 apposition +245011 adv +245015 adv +v +245018 adv +adv +245021 adv +245024 adv +adv +o +245029 adv +245035 s +245037 p +245044 o +245047 adv +245049 adv +o +245052 adv +245054 o +245056 apposition +245058 o +245065 p +245067 adv +245070 o +245072 p +245077 adv +adv +245083 adv +o +p +adv +245088 s +245090 adv +245098 o +245101 adv +o +o +245117 o +245124 adv +adv +245127 adv +245130 o +adv +o +245138 s +245141 o +p +245146 adv +apposition +245151 adv +245153 o +245155 adv +245157 o +adv +v +245162 adv +245165 adv +245167 apposition +245169 adv +245177 o +adv +s +o +245182 adv +o +245188 o +245194 apposition +apposition +adv +245198 apposition +245205 p +245210 apposition +245212 p +245214 adv +245219 o +s +adv +245226 s +adv +245230 apposition +245233 o +245246 adv +245248 o +io +adv +245252 adv +245255 o +245260 adv +s +adv +245267 adv +adv +adv +245271 adv +245273 o +o +245276 adv +245281 o +adv +adv +245286 s +adv +245292 s +245297 p +245305 s +p +245310 adv +245316 p +245325 adv +o +adv +245330 o +apposition +245342 adv +245346 v +245348 adv +245353 adv +245359 o +245361 adv +245368 p +245371 o +245373 o +245382 adv +adv +adv +245387 o +245389 adv +245393 s +245397 adv +s +245406 adv +adv +245410 o +245418 o +245420 adv +o +adv +245424 s +245427 adv +adv +adv +245435 adv +245440 adv +245442 adv +245446 o +o +io +adv +adv +245454 apposition +adv +adv +245459 adv +adv +245462 adv +245466 o +245470 o +245477 s +245487 o +245489 adv +245493 s +v +245496 adv +245502 adv +245504 s +adv +adv +245509 o +245511 adv +adv +245517 adv +245532 v +245534 adv +245536 adv +245538 adv +245540 adv +o +245543 s +245547 adv +245553 o +o +adv +245562 s +245565 p +245568 apposition +245571 adv +245574 s +o +245577 o +245579 adv +245584 p +245588 s +245591 apposition +245593 o +adv +245596 v +245598 adv +245600 o +245605 adv +245616 s +adv +245619 adv +245623 s +245625 o +245628 apposition +245630 o +245634 adv +245638 adv +245640 adv +adv +245643 s +adv +245650 adv +245662 o +245666 o +245669 o +245672 adv +245674 adv +245679 adv +245683 o +245688 o +adv +245692 adv +245694 adv +245696 s +245699 apposition +245706 adv +245708 v +245711 s +o +245714 adv +245716 adv +245721 adv +245723 o +245725 s +apposition +245729 apposition +245731 adv +245735 adv +o +245741 s +245743 adv +245750 adv +245752 o +245754 s +245758 s +apposition +245762 apposition +245764 adv +adv +adv +245774 p +245778 adv +245785 adv +245790 adv +adv +245793 o +245795 adv +245797 adv +s +245803 o +245807 s +adv +245810 s +adv +245813 adv +245816 adv +245822 p +adv +245825 s +adv +245830 s +p +245837 p +245847 s +245856 s +245860 s +245865 adv +adv +o +245874 adv +245877 s +adv +245880 adv +245882 adv +245887 apposition +apposition +245890 adv +245899 adv +245906 o +245913 o +245915 o +245918 adv +245921 adv +245926 adv +adv +245932 adv +245937 o +245939 o +245941 o +245943 o +245945 adv +245948 apposition +245950 adv +245952 o +adv +245962 adv +245966 p +adv +245969 adv +245974 o +245980 o +245982 adv +245989 s +245995 s +246003 adv +246009 apposition +246012 s +246015 apposition +246019 adv +246022 o +246024 adv +246028 adv +adv +s +io +246035 s +246040 apposition +p +246044 s +246047 io +246053 apposition +246056 apposition +246059 s +246061 adv +246066 apposition +246071 o +o +adv +adv +246080 s +246084 s +246093 s +adv +adv +246099 adv +246113 apposition +246116 p +246121 adv +246124 adv +246128 apposition +adv +adv +246133 adv +s +246136 io +246140 io +apposition +246143 adv +adv +246158 adv +io +246166 o +246171 apposition +o +apposition +adv +246184 adv +246186 adv +246188 adv +246193 adv +246197 adv +246202 s +246204 adv +246207 apposition +adv +adv +adv +246213 adv +s +246218 o +246223 adv +246226 s +246231 adv +246234 adv +adv +246243 apposition +246248 adv +246255 apposition +246260 adv +246263 v +246265 adv +246268 adv +246278 adv +246281 s +246286 adv +246288 adv +246293 s +246296 s +246301 apposition +246304 apposition +246306 v +246308 adv +246311 o +246313 adv +246315 adv +246319 adv +o +246324 o +246326 adv +p +246331 o +246333 adv +246336 adv +246342 s +246345 o +246347 s +246351 adv +246355 s +246358 apposition +246360 s +246362 adv +246368 adv +246372 apposition +s +246375 p +246378 adv +246389 adv +246391 adv +246393 o +246396 adv +246402 adv +s +o +adv +246408 o +adv +246411 s +246415 o +246417 adv +246422 o +o +adv +246426 aux +246428 adv +246431 s +adv +adv +adv +246439 adv +adv +adv +246444 adv +246450 apposition +246459 o +246461 apposition +adv +246472 s +246477 apposition +246482 apposition +246484 apposition +246489 o +246493 adv +o +246498 adv +246506 adv +adv +o +246513 s +246520 adv +246525 adv +246533 s +246537 s +246539 apposition +246543 adv +246548 adv +adv +adv +246552 o +v +246559 s +o +246562 adv +246576 adv +246580 apposition +o +adv +246589 adv +246592 apposition +adv +246598 o +s +246604 adv +246607 adv +246609 adv +246612 adv +246614 adv +246617 o +246624 adv +246633 p +246635 adv +246637 adv +246639 o +246643 o +adv +adv +246651 io +v +246654 adv +246656 apposition +o +246659 adv +adv +o +246667 o +246674 o +246680 adv +246691 adv +246696 s +246700 o +adv +adv +246706 s +p +246711 s +adv +246715 adv +adv +246722 s +246727 apposition +p +246732 s +apposition +246740 apposition +246744 apposition +246746 io +apposition +246752 s +adv +246759 apposition +246765 o +adv +adv +adv +246771 o +246775 adv +246779 apposition +246783 o +246785 apposition +246790 s +246793 p +246802 apposition +adv +adv +adv +o +adv +o +246813 adv +246817 adv +246819 s +adv +246822 adv +adv +246828 adv +246840 s +o +246853 apposition +246856 io +246859 apposition +246861 apposition +246863 adv +246865 adv +adv +adv +adv +p +246879 adv +adv +246883 s +246887 adv +246891 apposition +246896 s +p +246901 o +246903 s +adv +246906 adv +adv +p +246912 o +adv +246915 adv +246917 s +o +246920 adv +246924 o +adv +adv +246931 io +246935 apposition +246937 s +246939 adv +246947 aux +o +246950 adv +246954 adv +adv +246957 adv +o +246960 adv +o +246965 apposition +adv +adv +adv +246970 s +246973 apposition +adv +io +246977 o +246981 o +adv +s +adv +246993 p +adv +246996 o +246999 adv +247005 p +247007 adv +247012 apposition +o +s +v +247019 adv +247026 s +247031 apposition +247033 apposition +apposition +247036 adv +247039 s +adv +apposition +adv +adv +p +247047 apposition +247052 o +247056 o +s +adv +247060 adv +o +adv +247065 adv +247067 adv +247069 adv +247072 adv +247082 adv +247084 apposition +247087 adv +adv +247093 o +247099 p +247111 s +adv +adv +247118 adv +247122 adv +247126 adv +247129 s +247132 adv +247134 o +247138 s +s +p +apposition +247147 adv +247149 o +247152 adv +adv +247160 o +o +247164 o +247167 adv +247169 adv +adv +247176 s +o +adv +247180 adv +247182 adv +247189 s +p +247193 adv +247196 o +247199 adv +247205 s +247207 adv +247210 s +p +247217 p +247219 adv +o +247228 s +247230 o +247233 o +adv +247236 apposition +247241 adv +o +adv +247251 o +s +adv +247256 apposition +p +247261 apposition +247268 s +247274 adv +247276 adv +247279 adv +247281 adv +247283 adv +247287 s +adv +247290 adv +247292 adv +adv +adv +247298 adv +247303 adv +247306 o +247308 o +apposition +adv +s +adv +247320 o +247324 s +247328 adv +adv +247332 adv +247338 adv +io +p +247343 adv +adv +247352 apposition +247356 o +247363 adv +247368 s +247370 adv +247373 s +adv +adv +o +247385 s +p +247393 o +adv +v +247398 adv +247402 apposition +p +247409 v +247414 o +247418 p +247420 adv +247431 adv +247437 o +247441 apposition +adv +adv +247451 o +p +247455 s +247460 adv +247463 o +247466 adv +o +247478 adv +247481 adv +247483 adv +247485 adv +adv +247490 o +apposition +247496 adv +247498 s +o +247501 o +247503 o +247507 io +247511 adv +247517 s +247522 adv +247525 adv +247529 adv +247534 s +247536 adv +247539 o +adv +247547 o +247553 o +247558 adv +247561 adv +p +247564 adv +adv +247567 o +247574 o +247577 o +247580 adv +247585 o +247591 adv +247593 o +adv +247598 o +247604 adv +adv +adv +247611 p +247614 adv +o +247620 o +v +247626 o +io +247629 adv +247633 adv +247639 s +247643 s +adv +247646 o +247651 s +247654 adv +247656 s +247658 adv +247664 s +o +247667 o +247671 s +adv +247676 adv +adv +247680 adv +247685 o +247687 adv +adv +247690 s +247694 adv +247702 o +247704 adv +adv +adv +247712 adv +247719 o +adv +247730 s +247733 adv +adv +247741 s +247747 s +247749 o +247752 adv +s +adv +o +247757 o2 +247760 s +247769 s +247771 o +adv +247780 p +247782 s +247784 o +247787 v +247796 adv +247800 apposition +247804 apposition +247810 adv +247814 adv +247818 apposition +adv +s +247826 adv +247829 adv +247831 o +s +247836 p +s +247843 adv +247845 adv +247847 o +247851 adv +o +247857 s +247859 o +adv +247869 apposition +o +adv +247877 p +247880 s +247882 apposition +247884 adv +adv +247889 adv +247894 aux +247900 o +247902 o +247907 o +247910 apposition +adv +v +247916 o +247918 adv +247922 adv +247926 apposition +247928 o +247932 apposition +247934 adv +247936 o +247938 o +o +adv +adv +247948 apposition +apposition +adv +s +247959 apposition +247968 apposition +247973 adv +apposition +247976 s +247979 o +apposition +s +247987 io +247992 o +247998 adv +248001 adv +248003 apposition +248005 adv +248008 adv +248013 o +adv +248017 adv +248019 o +248024 aux +o +adv +o +248035 apposition +adv +adv +248041 s +p +248045 s +apposition +248055 apposition +248058 io +apposition +248062 s +adv +248069 apposition +248073 io +248075 apposition +adv +adv +248079 adv +248081 o +248084 adv +248087 adv +248089 adv +248091 o +adv +o +248097 adv +o +248104 apposition +248106 adv +248117 adv +248119 adv +248123 adv +248125 o +o +248130 apposition +p +adv +248141 s +o +248144 o +248151 o +248158 apposition +248161 adv +adv +248165 apposition +248170 adv +adv +248180 apposition +248183 adv +248185 adv +248189 adv +248195 apposition +248200 o +248203 o +248205 adv +248208 apposition +adv +p +248215 apposition +248217 adv +248219 o +248224 o +248227 o +248229 p +248231 o +248233 adv +248238 o +248242 apposition +adv +adv +248248 apposition +248253 o +248255 adv +248258 apposition +248260 adv +248263 adv +248265 s +248270 apposition +s +248276 s +io +248285 o +248289 adv +p +248295 s +o +adv +adv +248304 o +adv +248310 aux +248312 adv +248315 apposition +248320 adv +adv +adv +248324 io +248326 apposition +adv +o +248331 adv +248337 adv +adv +248341 adv +248343 o +248348 adv +248350 adv +248354 s +s +248358 o +248361 o +248365 s +adv +248369 o +apposition +248374 adv +248381 apposition +248383 adv +adv +adv +248389 s +248394 adv +adv +248397 adv +248399 s +o +apposition +248404 adv +248408 s +248412 adv +248416 adv +248431 o +248434 adv +adv +248437 o +248439 adv +248441 adv +248447 o +o2 +248451 apposition +248454 o +248460 o +248466 adv +248470 s +248472 adv +adv +s +248477 apposition +248479 adv +248481 adv +o +248485 o +248490 s +248494 adv +o +248497 o +248499 o +248503 adv +s +248507 o +248513 p +248515 s +248527 p +248530 p +248534 adv +248536 adv +p +248546 adv +248553 o +248557 o +adv +248561 o +adv +248567 o +248571 adv +o +248577 s +248579 s +248582 p +248585 adv +adv +o +248589 o +248591 s +adv +248596 adv +248600 adv +adv +adv +248608 o +248610 adv +248612 s +248617 s +p +248620 o +248622 adv +248627 o +248630 o +248634 o +248638 p +s +248642 adv +248646 o +248651 adv +248656 o +adv +248662 apposition +adv +adv +s +248667 o +p +248671 adv +248678 adv +248682 s +248684 adv +248686 s +248692 adv +248707 apposition +p +248712 apposition +o +248716 adv +s +248721 s +248725 o +adv +248731 s +248734 adv +248736 adv +v +248742 adv +248744 v +248746 adv +o +248749 adv +248753 adv +o +248756 apposition +248758 o +adv +adv +248762 apposition +248767 s +p +248777 apposition +248779 adv +248781 s +248784 adv +adv +248790 adv +248797 apposition +248799 o +o +248813 o +248815 adv +248817 v +248821 adv +248833 o +248837 adv +248840 adv +o +248846 adv +248848 o +248851 adv +248857 adv +248860 o +248862 o +248870 s +248877 o +248880 o +248882 o +248885 s +248889 apposition +248891 s +248893 apposition +248895 adv +248900 io +248906 o +248910 o +adv +248918 adv +o +248923 adv +248925 adv +248927 adv +248929 p +248933 adv +adv +248937 adv +248941 adv +248945 o +248947 apposition +adv +adv +adv +248953 o +248959 s +apposition +o +248964 s +adv +248968 adv +s +248973 o +248978 adv +248992 s +248998 adv +s +249002 s +249006 adv +249010 adv +249012 s +adv +249018 adv +249023 s +adv +249031 o +249039 adv +249042 adv +adv +249046 o +adv +249050 s +249059 s +p +249065 s +p +249069 s +apposition +249075 adv +249082 apposition +249084 adv +249088 apposition +249090 s +249092 adv +249096 adv +o +249099 adv +249101 apposition +adv +249107 io +apposition +249114 s +249116 adv +249122 apposition +249127 adv +adv +249132 o +249138 adv +249143 p +249147 o +249157 s +s +adv +249161 p +249171 adv +o +249177 adv +249179 p +249183 adv +249186 apposition +249190 o +249195 s +249205 apposition +s +apposition +o +adv +o +adv +249215 s +249218 apposition +249220 o +p +249226 s +249230 adv +adv +249234 adv +249236 adv +adv +249243 o +249246 adv +249251 adv +249257 s +249266 o +249269 adv +adv +p +249281 o +adv +249287 p +249289 adv +249296 adv +p +249300 io +adv +249303 o +s +p +249307 io +249311 s +249316 o +o2 +249322 adv +o2 +249326 adv +249328 o +249333 s +249335 adv +o +adv +o +249343 io +adv +249346 adv +249348 adv +249351 o +249355 o +249357 apposition +249361 adv +249365 s +249368 adv +249370 adv +adv +249373 adv +o +249379 adv +249382 adv +249385 adv +o +249400 apposition +apposition +adv +adv +249406 adv +249410 o +249412 apposition +249419 v +249421 adv +249427 o2 +249429 io +249432 adv +249438 adv +o +adv +249445 s +p +249449 o +249453 adv +249460 adv +249462 s +249470 adv +adv +249475 apposition +249477 apposition +249481 adv +249488 apposition +adv +adv +249493 apposition +249496 adv +adv +249499 adv +249504 s +249508 adv +o +o +249512 o +o +s +249518 p +249520 adv +249524 o +249530 adv +249532 p +249536 o +adv +249541 adv +adv +249544 s +v +249547 adv +249553 adv +o +249557 o +adv +adv +249562 o +249565 o +249567 apposition +249569 adv +249574 s +249576 o +o +adv +249581 adv +249585 s +249590 o +249592 adv +249595 s +p +249600 s +249602 apposition +249606 apposition +io +249609 apposition +249615 apposition +249618 apposition +249627 s +249629 adv +249632 apposition +249635 apposition +249638 o +249640 adv +o +adv +249645 adv +o +249652 apposition +adv +249661 adv +249663 s +249667 adv +249671 apposition +249678 o +249681 adv +249684 adv +249686 s +249689 adv +249694 adv +o +249698 adv +o +249701 adv +249703 adv +249705 adv +249709 p +249714 adv +249718 apposition +adv +249721 o +249725 apposition +249735 apposition +o +249738 apposition +p +249741 apposition +249743 o +adv +249747 adv +adv +249755 adv +249758 o +adv +249762 p +249764 s +249767 p +249771 adv +adv +adv +249775 adv +249778 o2 +apposition +249783 adv +adv +249794 o +249801 adv +249808 s +adv +249811 o +249815 adv +249817 o +249822 adv +249825 o +249827 adv +249830 adv +adv +249833 adv +adv +249836 adv +249843 adv +249846 o +249848 adv +249853 s +249855 apposition +249862 apposition +249866 s +249870 apposition +p +249876 adv +adv +249879 io +adv +249882 s +adv +249887 adv +249891 apposition +o2 +apposition +adv +o +apposition +adv +adv +249900 p +249909 o +adv +249914 adv +o +249917 adv +249920 adv +adv +adv +o +adv +249928 io +249930 o2 +249932 p +249937 apposition +249939 p +249942 p +249948 o +adv +249952 adv +249954 s +249961 adv +249963 o +p +249967 o +249971 o +249973 o2 +249975 o +249977 adv +249981 aux +249983 s +249985 p +249991 p +249994 s +250004 adv +s +250007 apposition +250009 adv +adv +250018 adv +o +250022 p +250025 s +250035 adv +250040 adv +250043 adv +250049 p +250052 s +250057 adv +250060 o +250062 adv +250067 o +250069 o2 +250075 p +250078 adv +adv +250082 o +250085 adv +s +adv +250089 o +250096 s +250099 adv +250102 s +250105 o +250107 adv +o +250110 apposition +adv +adv +adv +adv +250116 adv +250119 adv +s +adv +250129 adv +250135 o +250138 apposition +250140 apposition +adv +250145 adv +o +250148 adv +250152 s +adv +250158 adv +adv +250161 adv +250164 adv +250170 adv +250173 o +o2 +250178 o +s +250183 o +s +250187 adv +adv +adv +250193 adv +250195 adv +250197 adv +adv +250202 adv +apposition +250205 adv +s +250209 adv +s +s +adv +o +adv +o +250219 adv +250223 s +250230 p +250234 adv +250236 adv +adv +o +o +250241 io +250243 o +adv +250251 v +adv +250256 apposition +aux +s +250262 apposition +s +250267 adv +250269 s +o +250272 s +o +adv +250277 adv +250279 o +250282 o +250285 apposition +p +250289 o +apposition +adv +adv +250296 p +250303 o +250308 o +adv +adv +250313 p +250316 adv +250319 adv +250322 o +250328 adv +250330 adv +o +o +250338 aux +250340 apposition +250342 o +250349 apposition +250351 adv +250353 adv +250355 s +adv +250363 o +adv +adv +adv +o +adv +s +250375 s +adv +250379 s +250386 adv +250390 adv +adv +250397 adv +adv +250402 apposition +adv +p +250406 o +250412 adv +250417 s +250420 o +250423 o +250425 o +250427 o +250431 adv +250433 adv +250437 adv +250440 apposition +250442 s +250444 adv +250447 o +250449 adv +250454 o +250459 o +250461 adv +250464 o +250468 adv +250471 adv +250473 adv +250482 p +250484 s +250486 adv +250489 adv +250494 adv +250496 adv +250498 p +adv +250501 s +250503 adv +250509 p +250513 o +250516 adv +adv +250520 o +250523 o +250525 o +250527 o +250531 adv +250536 adv +250541 s +250544 adv +adv +250549 adv +250553 o +250556 apposition +s +250559 adv +250564 o +adv +250568 adv +250570 io +250575 o +250577 o +adv +250584 adv +adv +adv +250589 s +250591 o +250596 v +adv +250601 s +250604 adv +adv +adv +250612 adv +250614 s +250616 adv +250618 adv +250620 adv +250623 adv +250625 adv +250630 s +adv +250636 adv +250638 adv +250640 s +adv +250645 adv +250652 adv +adv +250655 adv +250664 s +adv +250668 s +250670 adv +250672 o +250674 adv +adv +adv +250678 adv +250680 o +250683 o +250686 o +250695 adv +250697 adv +250701 io +250707 s +250710 adv +250713 apposition +adv +250717 adv +250719 adv +250721 s +250726 o +adv +250732 adv +250740 s +250743 p +250753 adv +250770 adv +250773 p +250776 adv +250779 apposition +p +s +250785 adv +o +250790 adv +apposition +apposition +250795 o +250799 o +250802 o +adv +250806 adv +adv +adv +250812 adv +adv +250816 adv +250821 adv +250826 s +250829 adv +adv +adv +250834 adv +250836 o +250839 adv +adv +o +adv +250844 v +250846 adv +250849 s +250852 adv +o +adv +250856 adv +250858 adv +250860 adv +250865 o +250867 adv +250869 adv +250871 s +250875 s +250877 adv +250881 s +250883 adv +o +250886 p +250890 adv +250892 o +adv +250895 adv +250898 adv +adv +250901 adv +250906 o +250909 adv +250912 o +adv +adv +250920 adv +250924 adv +250926 adv +250928 o +250932 adv +adv +250936 p +250938 adv +adv +250941 o +250948 adv +s +250952 s +adv +250955 adv +250960 adv +o +adv +250964 o +250967 o2 +250976 p +o +250985 s +250988 p +250990 adv +250994 s +250996 p +apposition +250999 adv +251001 o +o2 +adv +251011 adv +o +251017 adv +251019 adv +o +251029 apposition +251041 adv +251043 s +251047 s +o +251053 o +251058 o +251062 o +251071 adv +adv +251074 o +251083 s +apposition +251087 o +251090 adv +251093 o +io +apposition +adv +adv +251102 s +o +251107 p +adv +s +251111 p +251116 adv +o +251121 adv +251126 s +adv +o +251134 apposition +adv +251138 adv +v +251141 o +251145 o +s +o +251149 adv +251153 adv +adv +251159 p +251162 adv +251165 o +251169 adv +io +s +adv +251174 o +adv +251177 adv +adv +adv +251183 adv +251186 adv +251190 adv +o +251196 adv +251200 p +251202 adv +s +251206 adv +adv +adv +o +io +251213 o +251217 s +251219 adv +251223 apposition +adv +s +o +s +251229 adv +o +251234 apposition +adv +251245 adv +251250 apposition +s +adv +adv +adv +251257 adv +251262 s +251268 apposition +apposition +251272 apposition +apposition +251276 adv +adv +251283 apposition +o +adv +adv +251289 p +251292 p +251295 apposition +p +adv +251301 o +251308 adv +251311 adv +251316 o +s +apposition +s +apposition +adv +251328 s +251330 adv +251333 o +adv +adv +251337 o +251339 apposition +p +251342 adv +251344 adv +251350 s +251352 adv +251355 o +251357 o +251361 adv +251363 s +adv +251371 s +251375 o +251384 adv +s +251387 apposition +251391 p +251395 adv +251404 adv +251409 s +adv +251412 adv +251414 adv +251417 s +251420 adv +251427 s +251429 adv +s +251435 adv +s +adv +o +adv +adv +251444 s +251446 adv +s +251449 adv +adv +251452 adv +251456 p +adv +251459 adv +251462 s +251464 apposition +adv +251475 o +251477 adv +251479 adv +251487 s +251490 adv +251495 adv +251497 s +251500 s +251503 apposition +adv +adv +251509 apposition +adv +adv +adv +251516 adv +vc +251520 adv +adv +251524 adv +o +251531 adv +251533 adv +p +251542 s +vc +adv +251547 s +251550 adv +251553 adv +251555 o +251559 o +adv +251562 o +251564 adv +adv +adv +adv +251570 adv +251575 s +251581 adv +251585 adv +apposition +adv +adv +251590 adv +251592 adv +251596 adv +251600 adv +251605 s +adv +251609 s +251613 apposition +251616 adv +adv +251623 s +251628 o +251631 apposition +adv +251637 adv +251639 apposition +251647 apposition +s +251654 s +adv +251658 o +251664 s +s +o +apposition +251675 p +251680 s +251682 adv +o +apposition +adv +o +251691 adv +o +o +adv +251696 o +o +adv +251701 apposition +251703 adv +251707 o +o +p +251712 apposition +adv +251718 adv +251720 s +251723 s +251727 adv +o +251735 o +251737 adv +251745 o +o2 +251748 adv +251751 apposition +adv +adv +251755 adv +o +251758 adv +adv +251764 adv +251773 s +251775 apposition +adv +251778 adv +251782 o +251785 o +adv +251791 adv +251796 p +251799 p +251805 adv +o +251810 o +251812 adv +o +o +251817 adv +251825 adv +251829 o +251831 adv +251834 adv +251837 o +251841 s +251846 p +251851 s +251853 o +251861 s +251865 apposition +p +s +251876 apposition +251880 p +251883 s +251885 apposition +251887 p +251889 o +251898 apposition +251900 p +s +251905 o +251910 apposition +251918 p +s +251922 o +251925 adv +s +adv +251936 adv +251939 adv +s +adv +o +251945 adv +251947 adv +251949 s +adv +251953 apposition +adv +251961 s +251964 o +s +251968 o +adv +s +251972 adv +251975 apposition +251977 apposition +apposition +adv +adv +s +251984 adv +o +adv +o +251989 adv +251994 p +251997 adv +252002 adv +s +apposition +252008 adv +252018 apposition +p +252030 adv +252032 adv +o +252037 adv +252039 s +252046 adv +o +252049 adv +252053 adv +s +252058 apposition +adv +252061 io +o +252064 adv +252066 adv +252069 o +252074 adv +p +252077 adv +252080 adv +252088 s +252090 o +252097 adv +s +s +252105 adv +adv +252108 adv +252110 s +252115 s +adv +252120 adv +s +adv +252124 adv +io +252127 adv +o +252134 adv +252139 o +252146 adv +o +p +252152 apposition +adv +s +252158 o +252166 adv +252171 adv +adv +252176 adv +252180 s +252183 s +252190 s +252192 adv +252198 adv +252202 apposition +252207 adv +adv +252211 adv +252214 adv +252216 adv +252218 s +adv +252221 adv +adv +252224 adv +252226 s +adv +252232 adv +252235 adv +252238 adv +252244 apposition +252246 adv +adv +s +252251 adv +s +252254 adv +adv +252258 o +adv +adv +io +252263 adv +252267 s +adv +o +252279 adv +adv +252283 apposition +adv +252286 o +o +252289 adv +252293 o +adv +252297 o +s +252300 adv +252304 p +s +adv +252310 s +s +252317 adv +adv +252320 o +252323 o +252328 o +252332 o +252334 aux +252336 adv +252338 adv +252340 adv +252342 o +252346 adv +adv +adv +252350 o +o +252356 v +adv +adv +252360 o +252364 o +adv +252367 o +252370 adv +252372 v +adv +252383 s +adv +252386 adv +252389 o +252392 apposition +o +252397 adv +o +adv +adv +252402 adv +252405 adv +adv +adv +252409 s +252411 adv +252417 adv +adv +252420 o +252425 s +252433 adv +adv +252437 o +s +252440 apposition +adv +adv +252446 adv +o +adv +252450 adv +252456 o +252462 adv +252465 adv +s +s +252473 adv +252475 o +252480 adv +252483 adv +adv +252488 adv +252491 apposition +p +252496 o +adv +252501 adv +252503 adv +252505 adv +252507 adv +adv +252512 adv +adv +252516 o +252519 adv +252521 s +252526 adv +252531 adv +252533 o +252535 adv +252538 adv +252540 apposition +o +s +252546 topic +adv +252550 o +252554 adv +252557 s +252565 o +o +252569 adv +o +adv +adv +252578 o +adv +s +252583 o +252588 o +252592 apposition +adv +252596 o +252602 o +252605 o +252609 o +252612 o +252616 s +252618 adv +252625 o +252628 apposition +adv +adv +o +252633 adv +252636 adv +252641 p +252648 adv +252652 o +252657 adv +adv +o +o +252667 o +252670 apposition +o +252676 o +252679 adv +o +252683 o +252688 adv +252690 s +252698 s +252700 adv +252702 o +252706 s +252708 adv +252712 p +252721 p +252730 adv +s +252734 o +s +adv +adv +252740 adv +252742 s +252746 o +252749 io +apposition +252752 adv +adv +s +adv +252758 s +252761 adv +adv +252766 adv +252769 o +252773 s +252778 adv +252780 o +o +252784 adv +s +adv +252788 s +s +252791 adv +adv +252797 adv +252801 adv +adv +252805 adv +adv +252810 apposition +252812 adv +o +252816 p +252823 adv +adv +adv +252827 apposition +o +adv +252832 adv +o +252836 adv +252839 adv +adv +adv +adv +252846 apposition +252854 o +252858 o +apposition +p +252863 s +252866 adv +252868 adv +252870 adv +252873 adv +252875 o +252880 adv +252884 s +apposition +252888 s +252891 adv +252895 s +252897 apposition +252902 p +252905 adv +s +adv +252909 o +252912 v +252916 adv +252918 p +252920 adv +252925 s +252927 o +252934 adv +252936 o +apposition +adv +252940 adv +252943 o +apposition +252948 s +adv +p +252957 o +adv +252961 o +s +252965 o +apposition +adv +adv +252970 adv +adv +adv +252974 adv +adv +252977 s +252981 adv +252985 adv +252988 o +252995 adv +o +253001 adv +253009 adv +adv +253017 adv +253022 adv +adv +253026 adv +253029 o +s +253033 o +253038 adv +o +p +253042 adv +o +253045 adv +253050 o +adv +o2 +adv +253055 o +253058 adv +253060 adv +253064 adv +o +253068 adv +253070 o +adv +253075 o +253081 adv +253083 s +253085 o +253088 o +253090 adv +253093 adv +adv +o +s +253099 s +253101 adv +adv +253106 s +apposition +adv +253110 adv +o +adv +253119 s +o +adv +253130 apposition +253132 adv +253136 o +253138 o +253140 o +253142 adv +253144 adv +253146 o +253149 adv +o +253155 adv +o +adv +253159 o +253164 o +253169 o +253178 adv +253181 adv +253185 adv +253189 adv +adv +253198 adv +s +253204 s +adv +adv +253208 o +adv +s +adv +o +253215 adv +253219 s +adv +o +253225 adv +o +253231 adv +o +253235 adv +adv +253244 apposition +253246 adv +253250 adv +253253 adv +253261 o +253263 o +253269 adv +253271 adv +253273 adv +253276 adv +adv +adv +253283 o +253285 apposition +adv +adv +253290 aux +253292 o +253295 adv +adv +253301 o +253304 o +253306 apposition +253309 adv +253312 adv +253314 s +253318 s +apposition +253323 adv +253325 p +253327 apposition +p +253330 p +253338 o +253346 adv +io +253357 adv +253359 adv +253364 adv +253367 adv +253370 o +253375 s +p +253379 adv +253382 o +253387 o +253389 io +253391 adv +253396 o +253406 o +io +253412 s +253417 adv +o +253422 apposition +adv +o +adv +o +253429 adv +253436 s +253438 adv +253441 adv +s +253445 p +253450 apposition +adv +253453 o +253458 adv +253460 adv +o +o +adv +253465 o +adv +253468 adv +253472 adv +253485 apposition +s +253488 o +253492 o +253494 o +253497 o +253503 s +253506 o +p +253512 adv +253519 apposition +253527 adv +253543 adv +253550 o +253557 s +253559 o +253561 adv +253563 adv +s +apposition +253567 o +253572 s +253574 o +253577 adv +o +adv +o +253588 s +253590 o +253594 adv +253596 adv +253598 s +253603 adv +o +o +apposition +adv +o +adv +253615 s +253618 p +253622 s +253626 o +253629 adv +adv +253634 o +adv +253638 o +253640 adv +253642 s +p +253648 s +adv +253652 s +253655 o +253657 s +253660 s +253663 adv +253669 o +253671 adv +253674 adv +253677 adv +o +253684 o +253689 apposition +o +253693 apposition +adv +o +253699 o +253703 s +adv +253706 p +253709 adv +253713 adv +253719 s +s +adv +253723 apposition +adv +s +253729 o +apposition +adv +adv +s +253735 o +253740 s +253743 adv +adv +253746 adv +253749 s +253751 adv +253756 s +adv +253759 adv +253762 o +adv +253768 adv +adv +253771 adv +o +253778 o +253781 o +253786 adv +adv +io +o +253791 apposition +p +253795 io +253801 o +253806 adv +s +253812 o +253819 adv +253822 adv +253824 adv +253827 adv +253831 adv +253836 adv +adv +253839 o +253841 o +adv +o +adv +253848 o +adv +253854 s +253858 apposition +253860 adv +adv +253864 o +253870 apposition +253873 adv +253875 adv +253878 o +253880 adv +adv +o +adv +adv +253887 s +adv +253900 o +253905 adv +253909 o +s +253913 adv +adv +adv +253919 o +253929 s +253934 s +adv +253939 s +apposition +253944 apposition +io +253948 apposition +253951 o +253955 aux +o +adv +253959 adv +adv +o +253963 s +253970 s +o +adv +253974 p +253976 adv +adv +253983 s +253986 adv +253998 adv +adv +254003 s +254005 adv +254015 s +254017 o +254019 adv +254022 s +adv +254031 s +254034 adv +254038 o +254040 s +adv +254046 adv +254048 s +254054 s +adv +254059 o +254063 s +254067 s +254073 s +254075 adv +254081 s +apposition +254085 adv +o +254090 apposition +io +254095 adv +o +254098 adv +254103 s +254109 adv +adv +254113 v +254118 s +adv +254122 s +adv +254127 aux +254131 s +254137 adv +adv +254143 apposition +p +s +254150 adv +adv +adv +254155 p +254162 aux +254168 s +adv +254173 adv +254177 adv +254181 s +o +254186 adv +o +254191 adv +o +254195 apposition +254197 o +o +254205 p +254208 adv +254214 p +254218 adv +254220 o +254224 adv +adv +254232 o +254237 aux +254240 adv +254243 apposition +254247 adv +p +254251 adv +254258 o +adv +254261 o +254263 o +254265 s +254269 s +254277 p +apposition +254280 o +254282 adv +254286 adv +254291 aux +adv +o +254299 apposition +254308 adv +254310 s +254316 s +254324 adv +254327 o +254332 o +254335 io +o +254340 adv +254346 adv +254349 p +254354 aux +254359 s +o +254363 o2 +254370 apposition +io +254376 o +254381 s +254384 adv +254388 o +254391 apposition +254393 adv +254399 o +adv +254403 apposition +254405 o +254416 adv +adv +254419 adv +254424 s +254426 o +254430 adv +p +254435 s +254437 o +o +254448 p +254457 o +adv +254464 s +adv +254471 aux +254473 s +254477 o +254483 s +o +254491 s +254495 o +254500 s +254502 o2 +254504 adv +254511 o +254515 s +254518 s +254520 adv +254522 adv +254526 o +o +254530 o +254532 adv +254534 o +adv +254538 o +254541 o +254543 s +254549 s +254557 aux +254559 o +o +254562 s +adv +254568 aux +apposition +254572 adv +adv +o +apposition +254577 adv +254581 o +254585 s +adv +254590 adv +254592 s +254596 s +254598 apposition +254600 o +254603 o +254606 adv +254609 p +254612 adv +254615 adv +254618 adv +254622 s +254624 apposition +adv +254627 adv +254629 o +254632 adv +254638 s +adv +254641 s +adv +254646 aux +adv +o +254650 o +254658 adv +254660 p +254664 o +254672 o +254675 adv +254677 adv +254681 o +254687 s +254689 adv +254693 adv +254695 adv +254697 adv +s +254705 s +254707 p +254712 s +o +254719 s +254721 p +254726 s +adv +254731 p +254734 o +254738 o +254743 adv +254749 s +254756 v +254758 adv +254764 o +o +s +254768 p +254774 adv +o +254780 adv +o +254783 apposition +254785 adv +254789 adv +254792 s +254797 aux +s +254802 s +adv +254806 o +254813 aux +254816 o +254822 o +254825 p +254827 adv +254830 adv +254833 o +254835 adv +254842 o +254845 adv +254853 adv +254858 s +254860 p +254862 p +254867 s +254870 s +254877 s +254879 o +p +254888 s +adv +adv +254897 adv +254901 p +254906 apposition +254908 adv +254924 o +254932 adv +254943 adv +254945 adv +254952 o +254954 s +254957 p +254962 s +254964 o +p +254967 o +254972 o +254974 s +o +adv +o +254979 apposition +adv +254984 o +254988 o +254990 s +254997 o +255001 o +255004 adv +255008 adv +255028 s +255030 adv +255033 s +adv +255038 adv +255047 s +255052 o +255062 p +255066 s +255069 apposition +255071 o +v +255078 aux +255080 o +255085 aux +255088 o +255090 adv +255092 adv +255102 apposition +apposition +adv +o +s +255109 p +apposition +255113 adv +255115 adv +255117 adv +255120 o +255123 s +255129 o +255134 adv +255139 s +255146 o +255155 aux +255157 adv +adv +255162 apposition +255167 s +255171 s +255176 s +255184 s +255186 p +255189 o +255191 adv +255194 adv +255199 s +255204 apposition +255206 o +255208 apposition +255210 adv +255213 s +255217 adv +255224 adv +255230 o +255232 adv +255236 v +o +255244 adv +255250 s +o +255255 adv +adv +adv +255259 o +255264 s +255266 o +255268 adv +255270 s +255276 adv +adv +255281 s +adv +255287 o2 +255292 o +255294 apposition +adv +255300 o +255305 o +255309 o +255311 apposition +255313 s +p +255320 aux +adv +adv +255333 s +255337 s +255340 adv +255344 s +255354 s +255358 o +255363 adv +adv +adv +255373 s +255376 o +255380 s +255385 v +255392 o +255395 adv +255400 s +adv +255405 p +255410 adv +255414 adv +255416 adv +255427 s +255430 s +o +255436 aux +255440 s +255442 adv +255447 o +255450 s +255452 adv +255455 o +adv +255459 o +255462 s +apposition +255465 io +255485 s +255489 s +255497 apposition +apposition +255500 adv +255504 adv +255507 adv +255512 adv +255519 adv +adv +255522 apposition +255524 adv +255526 adv +adv +255529 adv +adv +255534 apposition +adv +adv +255538 s +adv +255542 s +255549 apposition +255554 adv +adv +255559 adv +255565 adv +255568 adv +adv +adv +adv +255575 adv +o +255580 apposition +255583 adv +255585 v +255587 s +apposition +255590 adv +255594 adv +adv +255600 apposition +s +255605 adv +o +255616 adv +255618 io +o +255621 apposition +adv +255625 adv +255629 adv +apposition +o +adv +255636 adv +255638 o +255643 adv +255647 adv +255655 p +255658 adv +255665 adv +255669 s +adv +255674 o +255683 o +255685 adv +255689 adv +adv +255694 adv +adv +255698 adv +255701 adv +255706 o +255708 adv +255711 adv +255715 apposition +255719 adv +255723 adv +255726 adv +255728 apposition +255734 apposition +255737 adv +255740 adv +255742 s +255746 p +255749 adv +o +255752 adv +255756 adv +255758 adv +adv +adv +255763 adv +255775 s +p +255779 s +255781 p +255786 s +255789 s +255792 s +255794 adv +255799 p +255801 apposition +255803 adv +255808 adv +o +255817 adv +255819 o +255822 adv +255824 adv +adv +255828 o +255830 s +255833 adv +adv +255836 apposition +255842 adv +255845 adv +p +s +adv +255851 adv +adv +255854 adv +o +255857 adv +255862 adv +o +255865 adv +o +255871 s +255873 adv +adv +255878 s +adv +apposition +255885 adv +p +255889 aux +apposition +s +255893 adv +255897 p +255901 apposition +adv +adv +o +adv +255910 p +255916 adv +255918 o +255922 adv +adv +255927 adv +255931 p +255934 p +255937 p +255941 o +adv +255945 o +255948 apposition +adv +255954 o +255956 adv +255960 adv +255962 adv +255964 adv +adv +255968 o +adv +255973 adv +255975 io +255978 apposition +255985 apposition +255987 adv +adv +255996 s +255999 p +adv +o +256013 o2 +256015 o +256018 p +256023 o +256025 o +256027 o +256031 aux +adv +256034 io +256036 apposition +256049 adv +256051 adv +256056 adv +256058 adv +v +256063 adv +256065 adv +v +256068 adv +256072 adv +adv +256075 s +adv +adv +adv +256080 adv +256087 adv +256093 adv +adv +adv +256098 io +256102 adv +s +o +256106 adv +256109 adv +256112 adv +adv +adv +256117 adv +256123 p +256128 adv +256139 io +256145 s +o +256148 adv +256152 adv +adv +o +256161 p +256184 apposition +adv +256191 s +256195 apposition +256197 adv +adv +io +256203 o +adv +adv +p +adv +256211 o +256215 aux +adv +o +256220 io +256222 io +adv +256225 io +256228 adv +256231 s +256236 adv +p +256241 adv +256244 adv +256246 adv +256248 adv +adv +256256 s +256258 o +256262 o +o +adv +256267 adv +256270 o +256273 adv +256285 s +p +256289 s +p +256294 s +p +256300 s +256302 adv +256304 p +256309 adv +256311 adv +256319 adv +256325 o +apposition +adv +256330 adv +adv +adv +256335 o2 +256342 adv +256345 o +256348 adv +256350 s +256352 o +256362 s +adv +adv +256366 s +256374 s +adv +256377 adv +adv +256380 io +adv +256388 adv +adv +io +256396 o +256399 s +256402 adv +256405 s +apposition +adv +s +apposition +p +adv +256414 o +s +apposition +apposition +256424 adv +256428 apposition +adv +p +256432 adv +adv +s +256443 s +o +256446 adv +256449 adv +256452 o +256458 s +256463 s +256466 adv +o +256470 adv +adv +adv +256477 adv +adv +adv +256484 adv +adv +io +256488 adv +o +256495 adv +io +adv +256501 adv +256504 adv +256508 s +256513 v +256515 adv +256518 adv +o +256523 adv +256525 o +256528 adv +adv +256535 adv +256537 adv +256540 s +256550 o +o +256556 adv +256558 apposition +s +256562 adv +s +adv +256567 apposition +s +256572 p +256584 adv +256588 adv +256591 o +256594 adv +256600 adv +256606 adv +256612 adv +256617 s +256624 adv +256630 s +adv +256642 adv +256646 o +adv +256652 s +adv +256655 s +adv +256665 p +256667 s +256671 o +256677 adv +256679 s +s +256686 s +256689 adv +256693 io +o +256696 adv +256700 o +256702 s +256716 o +256719 o +256724 adv +adv +adv +adv +256730 adv +256732 p +256738 s +256740 o +256750 o +adv +256754 s +256760 adv +256765 adv +256767 adv +adv +256770 o +256773 adv +256776 adv +256779 o +256782 o +s +256786 adv +256788 s +256790 adv +o +adv +256794 adv +o +s +256799 adv +256809 aux +256813 apposition +256815 adv +256819 adv +256821 adv +256826 s +adv +256834 adv +256836 apposition +256839 apposition +256841 adv +adv +256846 o +p +256850 adv +adv +256854 s +256860 apposition +256864 adv +256868 io +apposition +256874 s +256876 apposition +256880 io +256882 o +adv +256890 apposition +256893 s +256895 adv +256901 apposition +256906 s +256909 o +256911 apposition +256915 adv +256920 adv +256924 apposition +adv +adv +o +256932 adv +p +256935 adv +o +256946 adv +256948 adv +o +adv +256953 o +256956 adv +256958 o +256961 adv +256963 o +256966 adv +256968 o +256971 adv +256973 o +256976 adv +256978 o +256981 adv +256983 o +256987 adv +v +256990 o2 +adv +256997 apposition +257001 s +adv +adv +o +257014 o +o +257022 adv +adv +257027 s +257038 apposition +257043 o +adv +257047 v +257049 adv +257056 adv +257058 p +257061 o +adv +adv +adv +257067 s +257073 s +257077 apposition +257081 o +o +adv +adv +257087 o +257093 adv +o +257096 o +257101 apposition +257105 p +257113 adv +257115 o +257118 s +adv +257122 o +p +257126 apposition +257128 adv +adv +257132 o +257134 adv +adv +adv +adv +p +257144 o +257146 o +adv +adv +257150 o +257152 adv +257154 adv +257159 adv +257162 adv +o +257165 s +257167 adv +257172 adv +257174 adv +adv +257177 adv +257182 s +p +257187 p +257189 s +apposition +o +adv +o +257197 adv +o +257202 o +o +257205 adv +s +257212 adv +adv +257217 s +257220 s +257230 s +o +257235 adv +adv +adv +adv +257242 o +257245 o +apposition +apposition +adv +io +257253 adv +o +257257 adv +o2 +257260 o +257264 o +257267 adv +257275 adv +257277 s +adv +adv +adv +257282 o +adv +257285 o +257287 adv +257291 adv +adv +257296 o +257299 adv +adv +257306 s +adv +adv +adv +adv +257312 adv +adv +o +257318 p +257322 adv +257325 adv +adv +257328 o +adv +257332 adv +adv +257336 adv +257338 o +257342 p +257345 adv +257350 o +257356 o +257358 o +257361 p +257363 o +adv +o +257370 apposition +apposition +257373 o +257376 o +257380 s +adv +adv +257384 o +257389 p +257394 adv +adv +s +257402 adv +o +adv +257407 o +257409 o +257411 adv +adv +adv +p +257419 adv +257425 adv +257427 o +257430 adv +257436 apposition +257440 s +adv +257446 s +o +257452 adv +adv +257460 s +257463 o +257465 adv +257470 adv +adv +257476 o +257478 adv +adv +adv +o +257484 adv +o +257489 adv +257503 adv +257505 adv +257508 adv +adv +257511 adv +257517 o +s +257522 adv +257524 adv +257526 s +adv +257532 adv +adv +257538 adv +257542 adv +257545 adv +adv +s +257549 adv +257553 s +257558 adv +257560 v +adv +adv +257573 s +o2 +257577 s +adv +p +257583 s +p +257589 adv +adv +257593 adv +adv +o +257598 adv +257602 s +adv +apposition +257606 adv +s +257611 adv +257614 s +257622 s +257624 s +adv +257629 adv +v +257632 o +257638 apposition +257640 adv +adv +257644 adv +257648 o +257652 adv +257655 adv +adv +257662 adv +o +p +257666 adv +257669 o +257673 adv +257675 s +257680 adv +257684 adv +257686 adv +257689 adv +adv +adv +adv +s +apposition +s +257698 adv +257700 o +257703 adv +257711 adv +adv +257714 adv +adv +257718 adv +257723 adv +257732 apposition +257735 s +adv +257741 s +257743 p +257746 adv +257752 s +257754 p +257762 s +257769 o +257773 apposition +257775 p +257781 adv +o +v +257785 io +257787 s +adv +257792 s +257796 p +257804 apposition +257808 adv +257810 s +257812 v +257816 s +257818 apposition +257820 adv +257823 adv +257826 s +257829 p +s +257836 o +257838 adv +257841 adv +257847 o +257853 adv +257855 adv +257857 p +257860 adv +257863 s +257866 apposition +257868 adv +257874 o +257880 s +p +257886 o +257889 p +257891 adv +257894 o +257897 adv +257903 o +257909 s +257911 p +257915 aux +adv +257921 adv +257923 adv +257925 o +apposition +257932 adv +257937 adv +257948 adv +o +257951 adv +257953 o +257958 s +257961 o +257965 o +257969 p +s +257976 o +257979 adv +s +257985 adv +o +257988 p +257992 aux +257994 o +adv +257999 s +o +258004 o +258008 apposition +adv +258012 s +258015 p +258017 apposition +258020 o +apposition +adv +adv +258029 s +258032 s +258037 s +258040 o +p +258045 o +258047 p +258049 adv +258053 s +258055 o +258057 adv +258061 p +258067 s +258069 o +258071 p +258075 adv +258079 o +258082 s +o +258088 adv +258090 s +adv +258097 adv +258099 o +258104 adv +258106 o +258110 adv +258112 o +258116 adv +258118 o +258123 adv +258128 s +258131 adv +258134 o +258137 o +258145 adv +258147 o +s +258151 p +258156 s +258161 apposition +258173 p +258176 p +258182 s +258189 s +258191 o +258194 adv +258200 p +258206 o +258209 adv +s +258213 o +258215 p +258219 adv +258222 p +258226 adv +258228 p +258230 adv +258235 o +258237 p +258242 adv +258248 adv +258251 o +258258 s +p +258263 s +adv +258266 p +258268 o +258270 p +258273 p +258275 apposition +258277 o +258283 s +258286 o +o +258290 s +258292 o +o +258298 s +adv +adv +258303 adv +258305 adv +s +adv +s +adv +258318 s +258320 apposition +o +p +258327 adv +258335 s +258337 apposition +adv +adv +258342 o +258351 s +258353 adv +258363 adv +258368 adv +adv +258372 adv +258376 adv +adv +258384 o +258387 adv +258389 s +258393 o +adv +258399 o +o +s +258403 p +258409 adv +s +adv +258417 p +258420 s +258423 adv +258425 adv +258427 adv +258429 adv +258435 s +258438 o +258440 adv +258446 s +258449 o +o +258454 s +p +258459 adv +258462 adv +258464 o +258467 p +258470 s +258473 adv +258477 s +258487 s +258489 o +adv +258494 s +258496 o +p +258499 adv +258501 adv +s +258505 adv +s +258509 adv +258511 o +258517 s +258520 adv +258524 s +adv +258529 o +adv +258532 adv +258536 adv +s +258549 s +258552 p +258556 s +258558 o +258562 s +258564 apposition +adv +o +258573 p +258577 o +258582 adv +258587 s +258591 s +258597 adv +258599 s +258602 o +258604 adv +258606 adv +258608 adv +258610 o +258613 s +258615 adv +258620 s +258623 o +258627 o +258629 s +o +258633 adv +258636 adv +o +o +258640 adv +o +258646 adv +258648 o +o +258656 o +258661 o +s +258666 o +258668 adv +258670 s +258673 adv +258677 adv +258687 adv +o +258690 p +258693 o +258695 adv +o +258699 adv +258702 s +258706 s +adv +258717 s +258719 adv +258723 adv +o +258726 adv +258729 o +258733 o +adv +258738 s +258740 adv +258743 o +258748 apposition +258750 o2 +258758 s +258760 o +258762 adv +258765 adv +258769 adv +o +258772 adv +apposition +adv +258777 apposition +258783 o +o2 +258786 o +258789 p +258793 s +adv +258798 adv +o +258805 s +258807 apposition +o +s +adv +p +258815 s +258817 apposition +o +p +258824 p +258827 apposition +258829 adv +258833 p +258839 p +258846 s +258850 s +258855 p +258860 adv +adv +258865 s +258868 p +258872 s +258874 o +adv +s +p +258881 adv +o +258897 s +p +258903 s +258906 adv +258910 o +258913 s +258915 o +adv +258918 s +258921 adv +s +258925 adv +o +258928 o +258932 s +adv +258935 adv +258937 adv +258940 p +s +apposition +258945 o +258951 o +258953 o2 +258960 adv +258962 s +s +o +258972 s +adv +258976 s +258978 adv +v +258982 adv +adv +258986 adv +258989 adv +o +258992 o +258998 v +259000 o +259002 s +o +o2 +259010 adv +259012 p +259017 s +adv +259021 adv +259026 v +259028 o +259030 apposition +s +adv +259036 s +259040 s +259042 adv +259044 adv +259048 s +adv +259053 adv +s +adv +259058 adv +259062 o +259064 adv +259066 s +p +259073 p +259077 s +259079 o +259083 s +259086 s +259088 adv +259092 adv +259099 o +259101 o +259104 o +259110 s +259112 o +259115 apposition +o +o +259119 apposition +259123 o +259125 adv +adv +259128 s +259130 o +o +259137 s +259140 o +259142 p +adv +259147 s +259150 o +259152 o +259154 adv +259158 adv +o +259161 o +259167 o +259170 o +259175 o +s +259180 o +259185 s +259187 adv +259189 s +259192 adv +259194 o +259199 s +259201 apposition +259203 o +259205 p +259210 s +259212 o +259215 p +259217 o +259219 p +259225 s +259227 adv +259231 p +259235 adv +259238 adv +259247 p +s +259250 adv +259252 s +p +259258 s +259260 o +p +259269 s +p +259277 o +259281 s +259286 s +259289 o +259291 adv +259296 s +259298 adv +259302 o +adv +259306 s +259308 o +adv +259311 adv +259314 apposition +s +adv +259322 s +adv +259326 o +s +259330 s +259332 p +259337 s +259339 o +o +259343 s +259345 o +259348 o +259351 io +apposition +259354 adv +259360 adv +259362 o +259364 o +259368 o +s +259371 apposition +adv +259376 adv +259385 adv +259387 adv +259390 o +259392 o +259394 apposition +adv +259401 o +s +259404 o +259410 io +apposition +259413 o +259417 s +259421 adv +o +259427 s +259430 s +259435 adv +259438 s +259441 adv +259446 s +259448 adv +259452 s +259455 adv +259458 p +259462 s +259464 adv +259469 adv +259472 s +259477 adv +259479 o +259483 p +259490 apposition +259493 p +259501 adv +259506 s +io +259513 apposition +adv +s +259523 o +adv +259527 apposition +259529 adv +259532 p +adv +259537 p +s +259547 apposition +259550 adv +259558 o +259560 adv +259563 adv +259566 adv +259572 adv +adv +259576 o +259578 adv +adv +259584 o +s +259587 adv +259592 s +adv +259595 adv +o +259598 adv +259602 adv +259604 s +259606 apposition +259608 o +s +adv +259613 p +259619 adv +259622 o +259624 o +259627 s +259633 adv +259640 aux +259642 adv +259644 o +259654 adv +259657 o +259661 adv +259664 o +259668 s +259670 o +adv +259678 adv +o +adv +259685 o +259687 p +259690 adv +259692 adv +259694 s +259696 v +259699 s +259707 s +io +259711 apposition +adv +259716 adv +o +v +259720 adv +259722 s +259733 adv +259737 adv +259740 o +o +259743 o +s +259746 adv +259752 adv +259754 adv +259758 adv +259760 apposition +adv +259763 adv +apposition +adv +adv +259770 adv +259772 adv +adv +259778 o +o +adv +259782 adv +259785 io +259789 s +259794 adv +adv +259797 o +259800 apposition +adv +adv +259807 adv +259811 o +259814 o +259818 adv +259824 o +259826 o +259829 s +259831 p +259835 s +259837 o +259840 adv +259850 s +259853 o +259855 s +259860 o +259863 o +adv +259871 o +259874 adv +259880 s +259883 o +adv +259887 s +apposition +259893 io +259897 adv +259901 adv +259904 s +259910 adv +o +adv +adv +259917 adv +adv +o +adv +259923 io +259927 s +259930 apposition +259932 adv +259935 adv +259937 o +259941 adv +259944 o +259950 apposition +259954 adv +o +259960 adv +adv +259963 adv +o +259968 o +apposition +259972 o +259976 o +259978 adv +259981 adv +adv +adv +259985 s +259991 adv +259993 o +259997 adv +259999 adv +o +260005 s +260008 v +260020 adv +adv +adv +260027 s +260029 apposition +o +o +260033 o +260039 o +260042 adv +adv +260045 s +260047 adv +260054 adv +260059 adv +260065 adv +260070 p +260075 adv +260078 adv +p +260083 adv +260094 o +260098 apposition +s +260102 adv +260106 io +s +260110 adv +o +adv +260115 adv +260117 adv +260120 o +260122 adv +260129 apposition +260135 apposition +adv +s +260141 p +260144 adv +260149 s +260151 adv +adv +260157 o +260159 apposition +260161 adv +260167 apposition +260171 o +p +260175 s +260177 adv +260184 p +260192 adv +adv +260196 adv +adv +260199 adv +260201 adv +o +260207 apposition +adv +260215 adv +o +260218 adv +adv +260222 adv +adv +o +260228 adv +260233 io +260236 o +260240 adv +260243 adv +apposition +260246 apposition +adv +260250 apposition +260252 s +260254 adv +260266 p +260269 apposition +260271 s +adv +io +260275 o +s +adv +260280 adv +adv +260284 io +260288 apposition +o +260298 apposition +260301 s +260308 o +260313 o +260315 adv +adv +260318 s +260321 io +260324 apposition +260329 s +260331 adv +260347 apposition +p +260356 apposition +260359 apposition +260373 aux +260378 adv +260381 adv +260386 o2 +260393 s +260397 adv +260405 adv +260410 s +260416 adv +s +260428 p +260433 s +apposition +260436 p +260446 apposition +260449 s +260451 apposition +260463 adv +260466 apposition +260468 adv +260479 adv +adv +260485 adv +o +adv +adv +apposition +260491 o +adv +260495 io +260515 adv +o +260518 apposition +adv +260524 adv +o +260529 adv +260532 o +260539 adv +260541 o +260547 s +260552 adv +260558 s +260560 p +260564 s +260566 adv +260569 adv +260573 s +260577 s +260581 adv +260585 o +260588 adv +260591 s +260594 o2 +260596 s +260600 s +adv +260607 adv +260609 adv +260612 adv +260616 o +260618 adv +adv +o +260624 p +260637 v +adv +260644 o +260653 o +260659 o +adv +260664 aux +260670 apposition +adv +260680 s +260682 p +260687 s +260690 p +260693 io +260700 s +260703 o +260705 adv +260708 apposition +260710 adv +260719 o +260731 o +260735 o +260742 o +260750 adv +260758 adv +o +260761 o +260769 o +260774 o +260780 adv +260784 o +260786 adv +260789 adv +260794 o2 +260796 o +260800 apposition +260803 s +260805 o +s +io +260811 aux +260813 o +adv +260819 apposition +p +260827 io +260834 s +260839 apposition +260847 o +260857 o +260862 o +260867 p +260871 o +o +260876 s +o +o +adv +adv +260884 o +260889 adv +260892 o +260897 s +260899 o +s +io +260904 s +260906 adv +adv +260914 io +260921 s +260923 o +260931 o +260933 apposition +s +260939 o +260943 o +260945 adv +260951 apposition +260954 apposition +260956 apposition +adv +adv +s +260964 adv +260967 o +o +260971 apposition +io +o +adv +260977 apposition +260983 s +o +o +260999 adv +adv +261007 s +261009 o +s +io +261015 aux +261018 o +261020 apposition +261024 o +261030 adv +261033 apposition +adv +261036 s +261041 io +261048 s +261052 apposition +261055 o +261057 o2 +261061 s +261065 o +261081 s +261085 adv +261090 o +adv +261093 o +261096 apposition +261100 v +261102 o +s +261105 v +261113 adv +261117 o +adv +261124 adv +261127 o +261129 adv +adv +261132 adv +261134 adv +261140 o +261142 adv +261147 s +261149 adv +261151 p +261153 o +261157 io +adv +261164 io +261167 apposition +261169 apposition +261171 apposition +o +261174 apposition +adv +o +261180 o +adv +o +261186 o +adv +261194 aux +261200 adv +o +261205 o +261210 adv +261212 adv +261214 s +261219 adv +261224 o +261229 s +261231 o +s +io +261237 io +261244 s +261246 o +261256 o +261258 adv +261261 o +261269 v +261272 o +261274 apposition +o +261278 o +s +adv +261287 o +v +261302 adv +261305 adv +o +adv +adv +261313 o +adv +adv +o +261320 adv +adv +adv +261327 s +261329 adv +261333 adv +o +261336 adv +261342 o +261344 adv +261354 s +261356 o +s +io +261362 io +261369 s +261373 apposition +apposition +261376 o +261378 apposition +261391 o +261393 o +261395 adv +o +261399 apposition +o +o +261405 o +261408 o +261412 o +261417 o +261422 apposition +261424 o +261434 o2 +261439 adv +261444 o +261450 o +261455 adv +261460 apposition +261462 o +adv +261466 adv +o +261469 adv +261475 o +adv +261478 o +261483 aux +261486 adv +261493 adv +261496 adv +o +261511 apposition +261513 apposition +261515 adv +261517 adv +261527 s +261529 o +s +io +261535 io +261542 s +261545 apposition +261550 apposition +261557 o +261559 adv +261561 p +261568 p +261572 adv +adv +261578 p +261581 o +adv +261590 adv +261597 o +261600 adv +261602 p +261609 o +261611 adv +o +261614 adv +adv +261619 o +adv +261625 s +261631 adv +o +261634 adv +261638 o +261640 v +261651 adv +261660 o +261664 o +261667 adv +261671 adv +261674 adv +261678 aux +261680 o +adv +adv +261685 adv +261690 adv +261693 adv +261698 s +261700 o +s +io +261706 adv +261710 adv +261714 s +261718 apposition +adv +adv +adv +o +261726 o +s +adv +261731 adv +261736 adv +261741 adv +261746 s +261748 adv +apposition +261753 s +261760 p +261762 s +261766 adv +261768 s +261770 adv +adv +261775 p +261778 s +261782 adv +261784 s +261791 s +261793 adv +261795 adv +p +261802 p +261804 s +261811 p +261818 s +261821 adv +261827 s +261832 s +261836 s +261838 o +261843 s +261845 adv +261850 s +261852 adv +adv +261856 o +adv +261862 adv +261864 adv +o +p +s +261869 apposition +261871 apposition +apposition +261886 s +o +261890 io +261893 adv +261895 apposition +261897 adv +261903 s +261906 adv +261909 adv +261914 o +261916 adv +261922 o +261924 adv +261926 adv +o +261929 aux +261935 adv +o +261945 o +261948 adv +261951 v +261956 adv +261961 adv +261963 o +261966 adv +261969 adv +261973 o +s +adv +261977 o +adv +261980 o +261983 o +261988 s +261998 o +262000 o +262006 adv +262008 s +adv +262011 o +262017 s +262020 o +262023 s +262026 apposition +262030 apposition +262032 adv +o +262042 o +adv +262055 adv +262057 adv +o +262063 apposition +p +262070 adv +262079 adv +262084 adv +262091 o +262093 s +262100 adv +262102 adv +o +262108 o +apposition +p +262116 o +adv +o +262120 adv +262122 o +262125 o +262132 io +adv +262136 o +262144 io +262146 o2 +262150 adv +262160 o +262162 adv +262171 s +262173 p +262178 adv +o +s +262182 apposition +262184 adv +o +262196 adv +o +s +262201 apposition +p +262218 io +262221 adv +262225 s +262233 adv +262240 s +262247 s +262257 s +o +262264 o +s +262269 adv +262271 o +262280 aux +s +262284 s +262286 adv +262293 adv +262302 o +262306 o +s +262309 o +262314 s +262319 aux +262321 adv +262324 s +o +adv +262333 s +262339 o +262343 o +s +262346 o +262354 aux +s +262358 s +262360 adv +adv +262367 o +262369 adv +262373 o +262376 s +262379 s +262383 o +262392 o +262396 o +s +262400 o +262408 aux +s +262414 aux +262416 adv +s +262420 s +adv +262425 adv +262429 adv +adv +262446 o +262449 adv +262451 o +262455 adv +262464 apposition +262468 adv +adv +o +262472 aux +262478 adv +262481 o +262483 adv +262486 adv +262492 io +s +262496 s +262498 adv +adv +262501 s +262509 apposition +262511 o +262515 s +262523 o +262529 s +262532 s +adv +262537 s +262539 adv +262542 s +262545 adv +262547 adv +262549 o +262551 adv +adv +262556 s +adv +262561 s +262564 adv +262570 s +262586 adv +262597 io +262601 o +262604 adv +262607 adv +262612 adv +262622 s +262630 o +262633 adv +o +s +adv +262641 adv +o +262646 adv +262648 adv +262661 o +s +adv +262665 adv +o +262671 adv +io +262675 apposition +io +s +o +262682 adv +o +262685 o +262693 o +262697 adv +262703 o +262708 apposition +262712 adv +262719 adv +262721 s +262723 adv +262725 s +262727 adv +262729 s +262731 adv +262733 s +262735 adv +262737 s +262739 adv +262741 s +262743 adv +262745 s +262747 adv +262749 s +262751 adv +262753 s +262755 adv +262757 s +262759 adv +262761 s +262763 adv +262765 s +262769 adv +262773 s +262776 apposition +o +o +262785 adv +262791 adv +o +262795 p +262801 adv +adv +262804 s +io +262809 apposition +262811 adv +262819 s +262821 adv +262832 adv +262834 adv +262839 o +adv +o +262843 s +262857 io +262859 adv +262867 s +262870 adv +o +262873 s +apposition +262876 o +262884 o +262886 aux +262890 o +262892 p +262894 adv +262901 o +262905 adv +262913 adv +p +262920 adv +262922 adv +262927 s +262929 adv +262931 adv +262939 adv +s +262944 adv +262948 s +262950 apposition +262956 adv +262961 s +o +adv +262971 o +262975 adv +262977 adv +262982 o +262985 apposition +adv +262990 s +262995 s +262999 adv +263001 adv +o +263006 s +263009 adv +263013 adv +263018 apposition +263024 s +263027 adv +263030 adv +263033 adv +263039 s +o +263043 adv +263049 adv +263054 s +263061 s +263064 apposition +263066 o +263068 adv +263073 s +263078 s +263080 adv +adv +263084 adv +263090 s +263095 s +263100 s +263105 s +263110 s +263114 adv +263120 s +263125 s +263130 apposition +263133 apposition +263137 s +263143 s +263149 adv +263151 s +adv +263158 adv +263171 s +263174 p +263179 s +263182 p +263186 s +263188 adv +263195 s +263201 s +263213 adv +263215 s +263220 s +adv +263225 s +263232 o +s +adv +adv +adv +263238 s +adv +263241 adv +263243 adv +263252 apposition +263254 o +263258 s +263264 o +adv +263267 adv +263271 s +263281 o +263286 adv +263288 adv +263290 s +263294 s +263298 adv +263306 adv +263308 adv +263312 adv +263314 s +263320 s +263323 o +263333 o +263335 apposition +o +263339 adv +263344 s +263349 adv +263353 s +263355 p +263357 adv +263364 adv +263367 s +o +263371 adv +263375 o +263378 s +adv +263384 s +263387 adv +263389 adv +263392 p +263395 s +263397 apposition +263400 s +263402 p +263406 o +263411 s +263413 p +263416 o +263421 s +263425 p +263431 adv +263436 o +263438 apposition +263442 p +263445 s +263448 apposition +o +adv +263453 adv +o +apposition +263461 s +263464 adv +263468 s +263473 s +adv +263478 s +263483 o +adv +263492 apposition +263495 adv +io +263499 apposition +263501 o +o +o +263506 apposition +263508 adv +263516 s +263519 apposition +263521 adv +263527 adv +263529 o +263535 s +263540 p +263543 o +263549 o +adv +263554 s +263556 adv +o +263565 s +263568 p +263572 adv +263575 s +263580 s +263583 adv +263596 apposition +263598 adv +263604 s +263607 p +263619 s +263621 adv +263624 adv +263629 adv +s +263634 apposition +adv +263638 adv +263644 o +263660 apposition +o +v +263668 adv +263688 o +s +263691 adv +263693 adv +263698 s +p +263704 s +263706 p +263710 s +263712 p +263716 adv +263719 o +263726 o +263730 adv +263734 o +adv +263739 adv +adv +263748 s +263750 o +263757 s +263760 o +263764 o +adv +263767 o +263769 o +s +263778 s +263780 apposition +o +adv +263788 o +263792 adv +263796 adv +263800 adv +263804 apposition +o +263823 adv +263828 adv +263835 adv +263837 o +s +263841 adv +263843 o +263846 apposition +263851 s +263853 apposition +adv +263856 adv +263859 o +263862 o +263864 apposition +263866 adv +263871 apposition +263873 adv +263882 adv +263884 adv +o +o +263890 o +263898 o +263902 adv +263905 adv +263912 o +adv +263921 adv +263924 adv +263928 adv +263930 s +263935 o +s +adv +263946 s +apposition +adv +o +263953 o +263962 adv +263967 o +263969 apposition +263977 io +263980 o +263983 adv +263989 io +263994 adv +263996 adv +263999 p +264006 apposition +264008 adv +264017 o +264020 adv +264025 o +264032 o +264034 s +264039 o +adv +o +264044 adv +264050 adv +264052 adv +adv +264055 o2 +264057 o +adv +264068 o +264072 s +264074 apposition +264076 adv +264078 adv +264087 s +264089 p +264097 apposition +p +264100 apposition +s +264108 s +264114 o +264116 adv +264121 o +s +264124 adv +264130 s +264132 adv +264134 adv +264141 s +264144 o +264146 adv +264153 adv +264158 s +adv +264161 adv +264164 adv +264169 s +adv +264176 o +s +adv +264180 o +264185 adv +264187 adv +264191 s +264197 adv +264200 s +264204 s +264210 adv +264212 s +264214 apposition +264218 s +264221 io +264226 s +264231 s +264237 s +264242 s +adv +264245 adv +o +264248 s +264251 p +264259 adv +264267 s +264271 apposition +264273 adv +264275 adv +264278 adv +264283 o +adv +o +264288 aux +264290 apposition +264292 apposition +apposition +264302 o +264312 s +264316 s +264320 s +264324 apposition +264328 o +io +264332 apposition +264339 o +264341 adv +264347 o +264349 o +264354 s +264358 apposition +264363 s +264367 adv +264373 s +264382 s +adv +264385 o +264389 o +264392 s +p +264398 p +264401 s +264405 adv +264408 adv +264412 adv +264417 s +adv +264424 s +264426 o +264432 p +264435 s +264439 s +264441 o +264448 adv +264453 s +adv +264457 apposition +264459 o +adv +264462 adv +264464 o +264469 o +264471 apposition +o +o +264475 adv +264480 s +264482 adv +264492 s +adv +264496 apposition +o +264499 adv +264501 adv +264503 adv +264509 adv +264512 s +264517 adv +264519 adv +264525 s +264534 s +adv +264540 s +264546 apposition +264549 apposition +264551 p +264554 apposition +264556 o +264558 o +264560 adv +264564 s +264566 adv +264570 o +s +adv +264574 o +264576 s +264592 s +264597 apposition +264599 adv +264602 adv +264608 adv +264621 o +264623 adv +264626 adv +264628 aux +264632 adv +264636 adv +264642 s +adv +adv +o +adv +o +264649 o +264653 adv +264655 s +o +264658 adv +264660 o +264662 apposition +o +264667 io +s +264674 adv +264676 adv +264678 adv +264682 apposition +adv +264687 adv +264693 s +adv +264697 adv +264699 adv +264701 adv +264707 s +o +264712 s +o +264717 o +264719 apposition +s +adv +264728 s +adv +264733 adv +adv +264740 apposition +264743 o +264748 o +264753 adv +264761 o +adv +264764 adv +o +264772 p +264775 s +264778 p +264781 s +264786 s +264788 apposition +264792 s +264794 p +264797 s +264799 p +264804 s +o +264817 o +264821 o2 +264823 adv +264826 s +264835 s +264837 adv +264841 o +adv +264844 o +io +264848 o +adv +o +264852 adv +264855 o +adv +264861 s +264863 o +264867 adv +adv +264873 o +264875 adv +264879 adv +o +264887 apposition +264889 adv +264895 s +264897 adv +264903 adv +264912 s +264916 adv +264918 apposition +s +264922 adv +264929 apposition +264931 adv +264940 adv +264942 adv +adv +264946 adv +264948 adv +s +adv +264953 s +264963 o +s +adv +264970 o +o2 +264974 adv +264979 o +264984 adv +264988 o +264993 adv +adv +264996 o +265000 apposition +s +265008 o +adv +265011 o +adv +265014 adv +265016 adv +265021 o +265023 adv +265025 adv +265028 apposition +adv +adv +265032 adv +io +265035 adv +265037 o +io +265040 apposition +265042 o +265051 s +io +265058 s +265062 o +265066 s +265068 o +265075 o +apposition +265094 adv +265108 o +265114 s +265116 o +265118 apposition +265129 s +265132 s +265134 o +265137 adv +265139 p +265143 s +265145 p +265153 s +adv +265159 p +s +265164 o +s +265173 adv +265180 adv +265182 o +265185 o +265190 o +265194 s +265196 apposition +p +265199 adv +265205 o +adv +265219 o +o +adv +265223 s +265227 apposition +265229 adv +265234 p +adv +265240 p +265242 o +adv +265248 adv +265250 adv +265257 adv +265265 o +s +adv +adv +o +adv +adv +265275 adv +265284 adv +adv +265287 o +265291 o +265296 s +265302 o +265304 o +265314 s +265316 adv +o +265320 s +265323 apposition +adv +265331 o +265336 s +265338 adv +adv +265341 o +265345 o +265352 adv +265362 s +adv +265370 apposition +265372 adv +265379 adv +265382 adv +265392 s +265396 adv +265400 adv +265402 s +265405 o +265413 o +265419 s +265423 apposition +265425 o +265435 o +adv +265438 o +o +s +265442 apposition +265444 adv +265448 s +o +265452 adv +265457 s +265459 adv +265467 s +265470 adv +265472 s +265474 apposition +265476 adv +265479 o +265482 adv +265485 o +265489 s +adv +265492 adv +adv +265495 io +265497 adv +265499 o +265502 o +265508 s +adv +adv +265512 s +265519 s +265521 adv +265523 o +265525 adv +265529 s +265533 s +adv +265537 apposition +265540 adv +s +o +265547 s +265549 apposition +265551 adv +265553 adv +265557 adv +io +265560 o +265563 adv +o +265567 o +265573 o +265580 s +265586 s +o +265589 adv +265594 o +265599 adv +265611 s +adv +265616 adv +265618 adv +265622 adv +265628 o +265637 s +o +265641 adv +265643 adv +s +265653 s +265657 s +265659 adv +265672 adv +265676 adv +o +265682 o +265686 apposition +265693 adv +o +p +265697 s +265700 aux +apposition +265703 apposition +265706 p +265708 s +265711 aux +265718 adv +265722 o +265726 adv +265729 s +265733 adv +265736 s +265742 adv +265746 s +265756 s +265759 apposition +265761 o +265763 adv +265765 adv +265767 o +265771 adv +265773 o +265777 s +265781 io +265783 o +265787 o +265791 apposition +265793 adv +265801 s +adv +265813 o +adv +265816 adv +265818 s +265826 o +s +adv +265830 io +265832 o +265836 o +265842 adv +265848 s +265851 o +265853 adv +265858 s +265861 adv +265864 apposition +265867 o +265873 o +265878 s +o +265881 adv +265887 p +265891 s +265894 apposition +265900 s +o +265903 adv +265916 o +s +265920 o +265923 aux +265930 apposition +265933 adv +265936 o +265941 adv +265947 o +s +o +265952 aux +apposition +265955 apposition +p +265958 s +265963 s +o +265966 adv +265971 s +o +adv +265978 s +adv +265983 o +265987 apposition +265989 o +adv +265995 adv +265999 s +o +266002 adv +266010 s +266012 p +266017 o +266019 adv +266023 o +266026 adv +266036 adv +266042 s +o +266045 adv +266048 apposition +266053 s +266055 adv +266057 s +266061 apposition +266067 o +adv +266083 s +266090 p +266094 apposition +adv +266100 adv +adv +266110 apposition +266118 s +266123 o +266125 adv +266130 o +266135 adv +266138 apposition +266143 s +o +266146 adv +266151 s +adv +266154 adv +266156 adv +o +266162 s +266168 s +adv +adv +266172 adv +266175 s +266180 s +266183 adv +266187 s +266193 s +266195 adv +266197 adv +o +266210 s +266216 s +266219 adv +266221 adv +266226 s +o +adv +266232 adv +266234 s +266240 s +266245 apposition +266247 o +266251 adv +adv +o +266256 o +266262 apposition +266264 adv +266266 apposition +266268 adv +s +266274 s +266276 adv +adv +266285 adv +adv +266290 o +adv +266296 o +266298 o +266306 s +p +266309 o +266313 adv +266319 adv +266322 o +266325 o +266333 adv +266336 s +266338 apposition +266341 apposition +266352 o +s +adv +266368 adv +o +266373 s +o +adv +266378 o +266386 apposition +266388 apposition +266390 o +266400 s +266402 apposition +266408 o +adv +266413 adv +266417 s +266420 adv +266422 apposition +s +266425 adv +266429 adv +266431 adv +o +o2 +266442 s +266444 apposition +266449 s +266451 p +266453 s +adv +266458 p +266462 s +266464 s +266467 s +266470 adv +266472 s +266477 aux +266479 apposition +266485 s +266488 p +266492 adv +266496 s +266499 apposition +p +266502 apposition +266506 adv +adv +adv +266513 o +266516 o +266520 io +266524 adv +266529 s +266533 p +266539 s +266541 p +266547 adv +s +266551 apposition +apposition +s +p +266562 aux +266566 apposition +266570 o +266574 o2 +266580 o +266584 adv +266588 s +adv +266592 o +266594 o +266598 o +266601 o +266603 io +adv +266606 s +266612 s +266614 apposition +p +266619 apposition +266621 adv +266628 adv +o +s +adv +266633 adv +o +266637 s +adv +266644 adv +266646 adv +o +266651 s +266655 p +266668 adv +266671 adv +266678 s +266682 s +266685 adv +266688 s +266691 adv +266699 o +s +adv +266703 o +266705 aux +266707 adv +apposition +266711 adv +266716 adv +266719 adv +266722 s +266724 adv +266728 s +o +266734 adv +266736 s +266739 o +adv +266745 adv +266748 apposition +266751 apposition +apposition +266756 o +266760 adv +266763 adv +266771 adv +266775 adv +adv +266778 s +266781 apposition +266786 adv +266789 s +266791 apposition +apposition +266798 v +266800 adv +s +266805 apposition +266807 adv +v +266812 o +266816 adv +adv +adv +266823 adv +o +266828 aux +266832 apposition +apposition +266838 adv +s +266844 s +266847 v +266849 adv +adv +266852 o +266855 apposition +266906 s +266912 adv +266915 s +266920 adv +266923 adv +266926 s +266929 apposition +266931 adv +adv +adv +266938 adv +266942 adv +o +266947 aux +266951 apposition +266954 o +266959 adv +266966 adv +s +266973 s +266979 adv +266983 adv +adv +266987 adv +o +266992 adv +o +adv +267001 adv +267006 adv +267010 adv +o +267015 aux +267019 apposition +adv +s +267024 o +adv +267027 adv +267032 adv +267035 adv +267037 aux +267045 adv +267047 s +o +267050 adv +267055 s +267057 o +267062 adv +267064 adv +o +267067 s +apposition +267072 adv +267078 s +267083 adv +adv +267087 s +267090 adv +adv +267094 s +adv +adv +267099 s +adv +adv +267104 s +267107 adv +adv +267112 s +267114 p +267120 adv +267123 s +267127 adv +s +267135 adv +267139 adv +o +s +267145 adv +267147 o +o +267150 s +267156 p +267160 p +267162 s +267164 adv +267167 o +267171 apposition +o +adv +267178 o +267182 adv +267187 o +267191 s +267193 adv +267201 s +267211 o +267213 apposition +267215 adv +267217 adv +267223 adv +267225 adv +o +o +267230 aux +267235 apposition +267237 apposition +267244 o +s +267257 o +267260 s +267262 apposition +267264 apposition +267274 o +267278 s +267283 s +267289 s +267291 o +267295 s +p +267302 o +o +s +267306 adv +267315 o +p +267323 adv +267326 adv +267330 o +267334 o +267336 p +267342 apposition +267344 o +267347 o +267350 s +267352 p +267359 o +s +267364 aux +s +267369 s +267371 adv +p +267376 adv +v +267384 s +267386 p +267389 p +267392 s +adv +267395 o +267398 apposition +adv +267403 o +267407 s +267409 p +267415 s +267417 apposition +267420 adv +267422 adv +o +267429 adv +267432 s +adv +267435 adv +o +267439 adv +267444 o +267454 apposition +267458 adv +267465 o +267468 apposition +267475 o +267477 s +adv +267482 adv +267484 adv +io +267488 apposition +267490 adv +o +267495 adv +267503 o +267515 adv +267529 o +s +267539 adv +o +adv +267545 adv +267555 s +267558 adv +s +267561 apposition +267563 o +adv +adv +adv +o +267570 o +267576 o +267580 adv +s +adv +267587 apposition +267589 adv +267594 s +adv +267601 adv +267603 apposition +267605 adv +267610 s +267612 adv +267618 o +adv +267621 adv +o +267628 adv +267638 o +267641 apposition +267644 apposition +p +267650 adv +267654 adv +267661 adv +267664 o +267667 s +267671 adv +s +adv +267683 adv +267688 o +267692 adv +267704 o +267711 o +adv +267725 adv +267727 adv +267730 s +267733 adv +267735 s +267739 p +267744 p +267746 s +267748 adv +267755 adv +s +267761 p +267768 adv +adv +267776 s +267780 s +adv +267786 adv +o +267790 apposition +267796 apposition +267799 adv +adv +267802 adv +s +267806 p +267814 adv +267820 o +267827 apposition +267833 adv +267841 s +267843 apposition +267845 adv +267852 apposition +s +267858 adv +267860 adv +267867 o +267874 adv +apposition +267877 adv +267880 s +267890 o +s +267893 apposition +267897 adv +267904 s +adv +p +267910 s +adv +267914 adv +267916 adv +267924 s +o +267927 apposition +267931 s +267935 o +267937 apposition +267941 adv +267947 s +267951 adv +267957 p +267961 apposition +267969 o +adv +267975 adv +267983 o +267990 s +267998 s +268002 o +s +268007 apposition +adv +268010 adv +268012 adv +adv +268016 io +268021 o +s +adv +268025 o +268029 s +268032 p +268036 adv +268040 p +268043 s +268045 p +268049 o +adv +268056 s +268059 s +268065 s +268069 s +268071 adv +268073 o +268077 o +adv +268080 s +268082 p +268087 o +268090 p +268095 apposition +268101 io +268103 adv +268112 s +268123 aux +268135 s +268137 p +268140 apposition +268142 adv +268144 adv +p +268152 s +268157 apposition +268159 o +268162 apposition +268164 o +268170 adv +adv +o +268175 o +268177 apposition +268184 adv +adv +268191 o +s +268196 adv +268198 adv +268200 adv +o +268206 s +268208 adv +adv +268211 adv +268217 o +268222 o +268226 p +268228 s +268231 s +apposition +p +268240 p +s +268244 p +s +268248 p +s +268252 p +s +268258 s +268261 o +268264 p +s +268274 s +268276 adv +o +apposition +adv +268281 o +268293 s +268296 s +268298 adv +s +268303 o +adv +adv +268307 apposition +268310 s +268320 o +268322 adv +268324 adv +268326 apposition +268331 s +268338 s +p +268341 adv +268344 s +268349 adv +268354 s +268358 s +268360 s +268362 s +268364 s +268366 s +268368 s +268370 s +268372 s +268374 s +268376 s +268378 s +268383 s +268385 p +268387 s +268390 p +268395 s +268398 p +adv +268405 adv +268408 s +268411 apposition +268413 apposition +268416 p +268421 s +o +268427 adv +268432 s +268437 s +268439 p +268443 s +adv +268450 s +268453 o +268455 adv +268460 s +268462 adv +268468 o +268474 adv +268478 adv +adv +s +268485 o +268487 adv +268489 s +268491 adv +268500 o +s +268506 adv +268516 p +268523 adv +268525 s +268529 o +268531 adv +268533 o +268537 s +268540 p +268546 s +268551 s +268557 p +268562 s +268566 o +268570 s +268572 p +268582 o +268587 adv +268589 s +apposition +adv +268594 adv +268601 o +268603 s +268605 p +268609 s +268611 apposition +268616 o +268618 adv +io +268621 o +s +adv +268629 s +268631 o +268639 s +p +268642 v +268653 adv +adv +268659 apposition +268664 o +268667 o +268669 p +268675 apposition +268679 o +268684 o +268688 o +o +268695 adv +268697 s +268702 s +268706 s +268710 s +268713 s +268719 s +268721 p +adv +adv +268725 s +268729 p +268744 s +268747 o +268752 s +268754 p +268760 adv +adv +268765 s +268778 v +268782 s +o +268785 adv +adv +268790 p +268804 s +268808 o +268812 s +268814 o +268819 s +268822 s +268824 o +268827 io +268830 o +268840 adv +268842 s +adv +o +268846 apposition +268848 adv +268856 adv +268864 s +o +268867 adv +268878 apposition +268880 adv +268885 s +268887 o +268893 aux +268896 s +268900 p diff --git a/tf/0.1.1/sent_num.tf b/tf/0.1.1/sent_num.tf new file mode 100644 index 0000000..8034fde --- /dev/null +++ b/tf/0.1.1/sent_num.tf @@ -0,0 +1,8025 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute sent_num +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +138068 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +884 +885 +886 +887 +888 +889 +890 +891 +892 +893 +894 +895 +896 +897 +898 +899 +900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914 +915 +916 +917 +918 +919 +920 +921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934 +935 +936 +937 +938 +939 +940 +941 +942 +943 +944 +945 +946 +947 +948 +949 +950 +951 +952 +953 +954 +955 +956 +957 +958 +959 +960 +961 +962 +963 +964 +965 +966 +967 +968 +969 +970 +971 +972 +973 +974 +975 +976 +977 +978 +979 +980 +981 +982 +983 +984 +985 +986 +987 +988 +989 +990 +991 +992 +993 +994 +995 +996 +997 +998 +999 +1000 +1001 +1002 +1003 +1004 +1005 +1006 +1007 +1008 +1009 +1010 +1011 +1012 +1013 +1014 +1015 +1016 +1017 +1018 +1019 +1020 +1021 +1022 +1023 +1024 +1025 +1026 +1027 +1028 +1029 +1030 +1031 +1032 +1033 +1034 +1035 +1036 +1037 +1038 +1039 +1040 +1041 +1042 +1043 +1044 +1045 +1046 +1047 +1048 +1049 +1050 +1051 +1052 +1053 +1054 +1055 +1056 +1057 +1058 +1059 +1060 +1061 +1062 +1063 +1064 +1065 +1066 +1067 +1068 +1069 +1070 +1071 +1072 +1073 +1074 +1075 +1076 +1077 +1078 +1079 +1080 +1081 +1082 +1083 +1084 +1085 +1086 +1087 +1088 +1089 +1090 +1091 +1092 +1093 +1094 +1095 +1096 +1097 +1098 +1099 +1100 +1101 +1102 +1103 +1104 +1105 +1106 +1107 +1108 +1109 +1110 +1111 +1112 +1113 +1114 +1115 +1116 +1117 +1118 +1119 +1120 +1121 +1122 +1123 +1124 +1125 +1126 +1127 +1128 +1129 +1130 +1131 +1132 +1133 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +884 +885 +886 +887 +888 +889 +890 +891 +892 +893 +894 +895 +896 +897 +898 +899 +900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914 +915 +916 +917 +918 +919 +920 +921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934 +935 +936 +937 +938 +939 +940 +941 +942 +943 +944 +945 +946 +947 +948 +949 +950 +951 +952 +953 +954 +955 +956 +957 +958 +959 +960 +961 +962 +963 +964 +965 +966 +967 +968 +969 +970 +971 +972 +973 +974 +975 +976 +977 +978 +979 +980 +981 +982 +983 +984 +985 +986 +987 +988 +989 +990 +991 +992 +993 +994 +995 +996 +997 +998 +999 +1000 +1001 +1002 +1003 +1004 +1005 +1006 +1007 +1008 +1009 +1010 +1011 +1012 +1013 +1014 +1015 +1016 +1017 +1018 +1019 +1020 +1021 +1022 +1023 +1024 +1025 +1026 +1027 +1028 +1029 +1030 +1031 +1032 +1033 +1034 +1035 +1036 +1037 +1038 +1039 +1040 +1041 +1042 +1043 +1044 +1045 +1046 +1047 +1048 +1049 +1050 +1051 +1052 +1053 +1054 +1055 +1056 +1057 +1058 +1059 +1060 +1061 +1062 +1063 +1064 +1065 +1066 +1067 +1068 +1069 +1070 +1071 +1072 +1073 +1074 +1075 +1076 +1077 +1078 +1079 +1080 +1081 +1082 +1083 +1084 +1085 +1086 +1087 +1088 +1089 +1090 +1091 +1092 +1093 +1094 +1095 +1096 +1097 +1098 +1099 +1100 +1101 +1102 +1103 +1104 +1105 +1106 +1107 +1108 +1109 +1110 +1111 +1112 +1113 +1114 +1115 +1116 +1117 +1118 +1119 +1120 +1121 +1122 +1123 +1124 +1125 +1126 +1127 +1128 +1129 +1130 +1131 +1132 +1133 +1134 +1135 +1136 +1137 +1138 +1139 +1140 +1141 +1142 +1143 +1144 +1145 +1146 +1147 +1148 +1149 +1150 +1151 +1152 +1153 +1154 +1155 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +884 +885 +886 +887 +888 +889 +890 +891 +892 +893 +894 +895 +896 +897 +898 +899 +900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914 +915 +916 +917 +918 +919 +920 +921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934 +935 +936 +937 +938 +939 +940 +941 +942 +943 +944 +945 +946 +947 +948 +949 +950 +951 +952 +953 +954 +955 +956 +957 +958 +959 +960 +961 +962 +963 +964 +965 +966 +967 +968 +969 +970 +971 +972 +973 +974 +975 +976 +977 +978 +979 +980 +981 +982 +983 +984 +985 +986 +987 +988 +989 +990 +991 +992 +993 +994 +995 +996 +997 +998 +999 +1000 +1001 +1002 +1003 +1004 +1005 +1006 +1007 +1008 +1009 +1010 +1011 +1012 +1013 +1014 +1015 +1016 +1017 +1018 +1019 +1020 +1021 +1022 +1023 +1024 +1025 +1026 +1027 +1028 +1029 +1030 +1031 +1032 +1033 +1034 +1035 +1036 +1037 +1038 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101 +102 +103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +258 +259 +260 +261 +262 +263 +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 diff --git a/tf/0.1.1/strong.tf b/tf/0.1.1/strong.tf new file mode 100644 index 0000000..c491386 --- /dev/null +++ b/tf/0.1.1/strong.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=strong number +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=int +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +976 +1078 +2424 +5547 +5207 +1138 +5207 +11 +11 +1080 +3588 +2464 +1161 +2464 +1080 +3588 +2384 +1161 +2384 +1080 +3588 +2455 +2532 +3588 +80 +846 +1161 +2455 +1080 +3588 +5329 +2532 +3588 +2196 +1537 +3588 +2283 +1161 +5329 +1080 +3588 +2074 +1161 +2074 +1080 +3588 +689 +1161 +689 +1080 +3588 +284 +1161 +284 +1080 +3588 +3476 +1161 +3476 +1080 +3588 +4533 +1161 +4533 +1080 +3588 +1003 +1537 +3588 +4477 +1161 +1003 +1080 +3588 +5601 +1537 +3588 +4503 +1161 +5601 +1080 +3588 +2421 +1161 +2421 +1080 +3588 +1138 +3588 +935 +1161 +1138 +1080 +3588 +4672 +1537 +3588 +3588 +3774 +1161 +4672 +1080 +3588 +4497 +1161 +4497 +1080 +3588 +7 +1161 +7 +1080 +3588 +760 +1161 +760 +1080 +3588 +2498 +1161 +2498 +1080 +3588 +2496 +1161 +2496 +1080 +3588 +3604 +1161 +3604 +1080 +3588 +2488 +1161 +2488 +1080 +3588 +881 +1161 +881 +1080 +3588 +1478 +1161 +1478 +1080 +3588 +3128 +1161 +3128 +1080 +3588 +301 +1161 +301 +1080 +3588 +2502 +1161 +2502 +1080 +3588 +2423 +2532 +3588 +80 +846 +1909 +3588 +3350 +897 +1161 +3326 +3588 +3350 +897 +2423 +1080 +3588 +4528 +1161 +4528 +1080 +3588 +2216 +1161 +2216 +1080 +3588 +10 +1161 +10 +1080 +3588 +1662 +1161 +1662 +1080 +3588 +107 +1161 +107 +1080 +3588 +4524 +1161 +4524 +1080 +3588 +885 +1161 +885 +1080 +3588 +1664 +1161 +1664 +1080 +3588 +1648 +1161 +1648 +1080 +3588 +3157 +1161 +3157 +1080 +3588 +2384 +1161 +2384 +1080 +3588 +2501 +3588 +435 +3137 +1537 +3739 +1080 +2424 +3588 +3004 +5547 +3767 +3956 +3588 +1074 +575 +11 +2193 +1138 +1074 +1180 +2532 +575 +1138 +2193 +3588 +3350 +897 +1074 +1180 +2532 +575 +3588 +3350 +897 +2193 +3588 +5547 +1074 +1180 +1161 +3588 +2424 +5547 +3588 +1078 +3779 +1510 +3423 +3588 +3384 +846 +3137 +3588 +2501 +4250 +2228 +4905 +846 +2147 +1722 +1064 +2192 +1537 +4151 +40 +1161 +2501 +3588 +435 +846 +1342 +1510 +2532 +3361 +2309 +846 +1165 +1014 +2977 +630 +846 +1161 +3778 +846 +1760 +3708 +32 +2962 +2596 +3677 +5316 +846 +3004 +2501 +5207 +1138 +3361 +5399 +3880 +3137 +3588 +1135 +4771 +1063 +3588 +1722 +846 +1080 +1537 +4151 +40 +1510 +1161 +5088 +5207 +2532 +2564 +3588 +3686 +846 +2424 +1063 +846 +4982 +3588 +2992 +846 +575 +3588 +266 +846 +1161 +3778 +3650 +1096 +2443 +4137 +3588 +2046 +5259 +2962 +1223 +3588 +4396 +3004 +3708 +3588 +3933 +1722 +1064 +2192 +2532 +5088 +5207 +2532 +2564 +3588 +3686 +846 +1694 +3739 +1510 +3177 +3326 +1473 +3588 +2316 +1161 +3588 +2501 +1453 +575 +3588 +5258 +4160 +5613 +4367 +846 +3588 +32 +2962 +2532 +3880 +3588 +1135 +846 +2532 +3756 +1097 +846 +2193 +3739 +5088 +5207 +2532 +2564 +3588 +3686 +846 +2424 +1161 +3588 +2424 +1080 +1722 +965 +3588 +2449 +1722 +2250 +2264 +3588 +935 +3708 +3097 +575 +395 +3854 +1519 +2414 +3004 +4226 +1510 +3588 +5088 +935 +3588 +2453 +1063 +3708 +846 +3588 +792 +1722 +3588 +395 +2532 +2064 +4352 +846 +1161 +191 +3588 +935 +2264 +5015 +2532 +3956 +2414 +3326 +846 +2532 +4863 +3956 +3588 +749 +2532 +1122 +3588 +2992 +4441 +3844 +846 +4226 +3588 +5547 +1080 +1161 +3588 +3004 +846 +1722 +965 +3588 +2449 +1063 +3779 +1125 +1223 +3588 +4396 +2532 +965 +1093 +2448 +4771 +3760 +1646 +1510 +1722 +3588 +2232 +2448 +1063 +1537 +4771 +1831 +2233 +3748 +4165 +3588 +2992 +1473 +3588 +2474 +5119 +2264 +2977 +2564 +3588 +3097 +198 +3844 +846 +3588 +5550 +3588 +5316 +792 +2532 +3992 +846 +1519 +965 +3004 +4198 +1833 +199 +4012 +3588 +3813 +1161 +1875 +2147 +518 +1473 +3704 +2504 +2064 +4352 +846 +1161 +3588 +191 +3588 +935 +4198 +2532 +3708 +3588 +792 +3739 +3708 +1722 +3588 +395 +4254 +846 +2193 +2064 +2476 +1883 +3757 +1510 +3588 +3813 +1161 +3708 +3588 +792 +5463 +5479 +3173 +4970 +2532 +2064 +1519 +3588 +3614 +3708 +3588 +3813 +3326 +3137 +3588 +3384 +846 +2532 +4098 +4352 +846 +2532 +455 +3588 +2344 +846 +4374 +846 +1435 +5557 +2532 +3030 +2532 +4666 +2532 +5537 +2596 +3677 +3361 +344 +4314 +2264 +1223 +243 +3598 +402 +1519 +3588 +5561 +846 +1161 +402 +846 +3708 +32 +2962 +5316 +2596 +3677 +3588 +2501 +3004 +1453 +3880 +3588 +3813 +2532 +3588 +3384 +846 +2532 +5343 +1519 +125 +2532 +1510 +1563 +2193 +302 +3004 +4771 +1063 +3195 +2264 +2212 +3588 +3813 +3588 +622 +846 +1161 +3588 +1453 +3880 +3588 +3813 +2532 +3588 +3384 +846 +3571 +2532 +402 +1519 +125 +2532 +1510 +1563 +2193 +3588 +5054 +2264 +2443 +4137 +3588 +2046 +5259 +2962 +1223 +3588 +4396 +3004 +1537 +125 +2564 +3588 +5207 +1473 +5119 +2264 +3708 +3754 +1702 +5259 +3588 +3097 +2373 +3029 +2532 +649 +337 +3956 +3588 +3816 +3588 +1722 +965 +2532 +1722 +3956 +3588 +3725 +846 +575 +1332 +2532 +2736 +2596 +3588 +5550 +3739 +198 +3844 +3588 +3097 +5119 +4137 +3588 +2046 +1223 +2408 +3588 +4396 +3004 +1722 +4471 +191 +5456 +2805 +2532 +3602 +4183 +4478 +2799 +3588 +5043 +846 +2532 +3756 +2309 +3870 +3754 +3756 +1510 +1161 +5053 +3588 +2264 +3708 +32 +2962 +5316 +2596 +3677 +3588 +2501 +1722 +125 +3004 +1453 +3880 +3588 +3813 +2532 +3588 +3384 +846 +2532 +4198 +1519 +1093 +2474 +1063 +2348 +3588 +2212 +3588 +5590 +3588 +3813 +1161 +3588 +1453 +3880 +3588 +3813 +2532 +3588 +3384 +846 +2532 +1525 +1519 +1093 +2474 +1161 +191 +3754 +745 +936 +3588 +2449 +473 +3588 +3962 +846 +2264 +5399 +1563 +565 +1161 +5537 +2596 +3677 +402 +1519 +3588 +3313 +3588 +1056 +2532 +2064 +2730 +1519 +4172 +3004 +3478 +3704 +4137 +3588 +2046 +1223 +3588 +4396 +3754 +3480 +2564 +1161 +1722 +3588 +2250 +1565 +3854 +2491 +3588 +910 +2784 +1722 +3588 +2048 +3588 +2449 +3004 +3340 +1063 +1448 +3588 +932 +3588 +3772 +1063 +3778 +1510 +3588 +2046 +1223 +2268 +3588 +4396 +3004 +5456 +994 +1722 +3588 +2048 +2090 +3588 +3598 +2962 +2117 +4160 +3588 +5147 +846 +1161 +846 +3588 +2491 +2192 +3588 +1742 +846 +575 +2359 +2574 +2532 +2223 +1193 +4012 +3588 +3751 +846 +1161 +3588 +5160 +846 +1510 +200 +2532 +3192 +66 +5119 +1607 +4314 +846 +2414 +2532 +3956 +3588 +2449 +2532 +3956 +3588 +4066 +3588 +2446 +2532 +907 +1722 +3588 +2446 +4215 +5259 +846 +1843 +3588 +266 +846 +1161 +3708 +4183 +3588 +5330 +2532 +4523 +2064 +1909 +3588 +908 +3004 +846 +1081 +2191 +5101 +5263 +4771 +5343 +575 +3588 +3195 +3709 +3767 +4160 +2590 +514 +3588 +3341 +2532 +3361 +1380 +3004 +1722 +1438 +3962 +2192 +3588 +11 +1063 +3004 +4771 +3754 +1410 +3588 +2316 +1537 +3588 +3037 +3778 +1453 +5043 +3588 +11 +1161 +2235 +3588 +513 +4314 +3588 +4491 +3588 +1186 +2749 +3767 +3956 +1186 +3361 +4160 +2590 +2570 +1581 +2532 +1519 +4442 +906 +3303 +1473 +4771 +907 +1722 +5204 +1519 +3341 +1161 +3588 +3694 +1473 +2064 +2478 +1473 +1510 +3739 +3756 +1510 +2425 +3588 +5266 +941 +846 +4771 +907 +1722 +4151 +40 +2532 +4442 +3739 +3588 +4425 +1722 +3588 +5495 +846 +2532 +1245 +3588 +257 +846 +2532 +4863 +3588 +4621 +846 +1519 +3588 +596 +1161 +3588 +892 +2618 +4442 +762 +5119 +3854 +3588 +2424 +575 +3588 +1056 +1909 +3588 +2446 +4314 +3588 +2491 +3588 +907 +5259 +846 +1161 +3588 +1254 +846 +3004 +1473 +5532 +2192 +5259 +4771 +907 +2532 +4771 +2064 +4314 +1473 +1161 +611 +3588 +2424 +3004 +846 +863 +737 +1063 +3779 +4241 +1510 +1473 +4137 +3956 +1343 +5119 +863 +846 +1161 +907 +3588 +2424 +2117 +305 +575 +3588 +5204 +2532 +3708 +455 +3588 +3772 +2532 +3708 +4151 +2316 +2597 +5616 +4058 +2064 +1909 +846 +2532 +3708 +5456 +1537 +3588 +3772 +3004 +3778 +1510 +3588 +5207 +1473 +3588 +27 +1722 +3739 +2106 +5119 +3588 +2424 +321 +1519 +3588 +2048 +5259 +3588 +4151 +3985 +5259 +3588 +1228 +2532 +3522 +2250 +5062 +2532 +5062 +3571 +5305 +3983 +2532 +4334 +3588 +3985 +3004 +846 +1487 +1510 +5207 +3588 +2316 +3004 +2443 +3588 +3037 +3778 +740 +1096 +1161 +3588 +611 +3004 +1125 +3756 +1909 +740 +3441 +2198 +3588 +444 +235 +1909 +3956 +4487 +1607 +1223 +4750 +2316 +5119 +3880 +846 +3588 +1228 +1519 +3588 +40 +4172 +2532 +2476 +846 +1909 +3588 +4419 +3588 +2411 +2532 +3004 +846 +1487 +1510 +5207 +3588 +2316 +906 +4572 +2736 +1063 +1125 +3754 +3588 +32 +846 +1781 +4012 +4771 +2532 +1909 +5495 +142 +4771 +3361 +4218 +4350 +4314 +3037 +3588 +4228 +4771 +5346 +846 +3588 +2424 +3825 +1125 +3756 +1598 +2962 +3588 +2316 +4771 +3825 +3880 +846 +3588 +1228 +1519 +3735 +5308 +3029 +2532 +1166 +846 +3956 +3588 +932 +3588 +2889 +2532 +3588 +1391 +846 +2532 +3004 +846 +3778 +3956 +4771 +1325 +1437 +4098 +4352 +1473 +5119 +3004 +846 +3588 +2424 +5217 +4567 +1063 +1125 +2962 +3588 +2316 +4771 +4352 +2532 +846 +3441 +3000 +5119 +863 +846 +3588 +1228 +2532 +3708 +32 +4334 +2532 +1247 +846 +1161 +191 +3754 +2491 +3860 +402 +1519 +3588 +1056 +2532 +2641 +3588 +3478 +2064 +2730 +1519 +2584 +3588 +3864 +1722 +3725 +2194 +2532 +3508 +2443 +4137 +3588 +2046 +1223 +2268 +3588 +4396 +3004 +1093 +2194 +2532 +1093 +3508 +3598 +2281 +4008 +3588 +2446 +1056 +3588 +1484 +3588 +2992 +3588 +2521 +1722 +4653 +5457 +3173 +3708 +2532 +3588 +2521 +1722 +5561 +2532 +4639 +2288 +5457 +393 +846 +575 +5119 +756 +3588 +2424 +2784 +2532 +3004 +3340 +1063 +1448 +3588 +932 +3588 +3772 +1161 +4043 +3844 +3588 +2281 +3588 +1056 +3708 +1417 +80 +4613 +3588 +3004 +4074 +2532 +406 +3588 +80 +846 +906 +293 +1519 +3588 +2281 +1063 +1510 +231 +2532 +3004 +846 +1205 +3694 +1473 +2532 +4160 +4771 +231 +444 +1161 +3588 +2112 +863 +3588 +1350 +190 +846 +2532 +4260 +1564 +3708 +243 +1417 +80 +2385 +3588 +3588 +2199 +2532 +2491 +3588 +80 +846 +1722 +3588 +4143 +3326 +2199 +3588 +3962 +846 +2675 +3588 +1350 +846 +2532 +2564 +846 +1161 +3588 +2112 +863 +3588 +4143 +2532 +3588 +3962 +846 +190 +846 +2532 +4013 +1722 +3650 +3588 +1056 +1321 +1722 +3588 +4864 +846 +2532 +2784 +3588 +2098 +3588 +932 +2532 +2323 +3956 +3554 +2532 +3956 +3119 +1722 +3588 +2992 +2532 +565 +3588 +189 +846 +1519 +3650 +3588 +4947 +2532 +4374 +846 +3956 +3588 +2560 +2192 +4164 +3554 +2532 +931 +4912 +1139 +2532 +4583 +2532 +3885 +2532 +2323 +846 +2532 +190 +846 +3793 +4183 +575 +3588 +1056 +2532 +1179 +2532 +2414 +2532 +2449 +2532 +4008 +3588 +2446 +1161 +3708 +3588 +3793 +305 +1519 +3588 +3735 +2532 +2523 +846 +4334 +846 +3588 +3101 +846 +2532 +455 +3588 +4750 +846 +1321 +846 +3004 +3107 +3588 +4434 +3588 +4151 +3754 +846 +1510 +3588 +932 +3588 +3772 +3107 +3588 +3996 +3754 +846 +3870 +3107 +3588 +4239 +3754 +846 +2816 +3588 +1093 +3107 +3588 +3983 +2532 +1372 +3588 +1343 +3754 +846 +5526 +3107 +3588 +1655 +3754 +846 +1653 +3107 +3588 +2513 +3588 +2588 +3754 +846 +3588 +2316 +3708 +3107 +3588 +1518 +3754 +846 +5207 +2316 +2564 +3107 +3588 +1377 +1752 +1343 +3754 +846 +1510 +3588 +932 +3588 +3772 +3107 +1510 +3752 +3679 +4771 +2532 +1377 +2532 +3004 +3956 +4190 +2596 +4771 +5574 +1752 +1473 +5463 +2532 +21 +3754 +3588 +3408 +4771 +4183 +1722 +3588 +3772 +1063 +3779 +1377 +3588 +4396 +3588 +4253 +4771 +4771 +1510 +3588 +217 +3588 +1093 +1161 +1437 +3588 +217 +3471 +1722 +5101 +233 +1519 +3762 +2480 +2089 +1487 +3361 +906 +1854 +2662 +5259 +3588 +444 +4771 +1510 +3588 +5457 +3588 +2889 +3756 +1410 +4172 +2928 +1883 +3735 +2749 +3761 +2545 +3088 +2532 +5087 +846 +5259 +3588 +3426 +235 +1909 +3588 +3087 +2532 +2989 +3956 +3588 +1722 +3588 +3614 +3779 +2989 +3588 +5457 +4771 +1715 +3588 +444 +3704 +3708 +4771 +3588 +2570 +2041 +2532 +1392 +3588 +3962 +4771 +3588 +1722 +3588 +3772 +3361 +3543 +3754 +2064 +2647 +3588 +3551 +2228 +3588 +4396 +3756 +2064 +2647 +235 +4137 +1063 +281 +3004 +4771 +2193 +302 +3928 +3588 +3772 +2532 +3588 +1093 +2503 +1520 +2228 +1520 +2762 +3756 +3361 +3928 +575 +3588 +3551 +2193 +302 +3956 +1096 +3767 +1437 +3739 +3089 +1520 +3588 +1785 +3778 +3588 +1646 +2532 +1321 +3779 +3588 +444 +1646 +2564 +1722 +3588 +932 +3588 +3772 +1161 +302 +3739 +4160 +2532 +1321 +3778 +3173 +2564 +1722 +3588 +932 +3588 +3772 +1063 +3004 +4771 +3754 +1437 +3361 +4052 +4771 +3588 +1343 +4119 +3588 +1122 +2532 +5330 +3756 +3361 +1525 +1519 +3588 +932 +3588 +3772 +191 +3754 +2046 +3588 +744 +3756 +5407 +1161 +302 +3739 +5407 +1777 +1510 +3588 +2920 +1161 +1473 +3004 +4771 +3754 +3956 +3588 +3710 +3588 +80 +846 +1777 +1510 +3588 +2920 +1161 +302 +3739 +3004 +3588 +80 +846 +4469 +1777 +1510 +3588 +4892 +1161 +302 +3739 +3004 +3474 +1777 +1510 +1519 +3588 +1067 +3588 +4442 +3767 +1437 +4374 +3588 +1435 +4771 +1909 +3588 +2379 +2546 +3403 +3754 +3588 +80 +4771 +2192 +5100 +2596 +4771 +863 +1563 +3588 +1435 +4771 +1715 +3588 +2379 +2532 +5217 +4412 +1259 +3588 +80 +4771 +2532 +5119 +2064 +4374 +3588 +1435 +4771 +1510 +2132 +3588 +476 +4771 +5035 +2193 +3755 +1510 +3326 +846 +1722 +3588 +3598 +3361 +4218 +4771 +3860 +3588 +476 +3588 +2923 +2532 +3588 +2923 +3588 +5257 +2532 +1519 +5438 +906 +281 +3004 +4771 +3756 +3361 +1831 +1564 +2193 +302 +591 +3588 +2078 +2835 +191 +3754 +2046 +3756 +3431 +1161 +1473 +3004 +4771 +3754 +3956 +3588 +991 +1135 +4314 +3588 +1937 +846 +2235 +3431 +846 +1722 +3588 +2588 +846 +1161 +1487 +3588 +3788 +4771 +3588 +1188 +4624 +4771 +1807 +846 +2532 +906 +575 +4771 +1063 +4851 +4771 +2443 +622 +1520 +3588 +3196 +4771 +2532 +3361 +3650 +3588 +4983 +4771 +906 +1519 +1067 +2532 +1487 +3588 +1188 +4771 +5495 +4624 +4771 +1581 +846 +2532 +906 +575 +4771 +1063 +4851 +4771 +2443 +622 +1520 +3588 +3196 +4771 +2532 +3361 +3650 +3588 +4983 +4771 +1519 +1067 +565 +1161 +2046 +302 +3739 +630 +3588 +1135 +846 +1325 +846 +647 +1161 +1473 +3004 +4771 +3754 +3956 +3588 +630 +3588 +1135 +846 +3924 +3056 +4202 +4160 +846 +3431 +2532 +1437 +3739 +630 +1060 +3429 +3825 +191 +3754 +2046 +3588 +744 +3756 +1964 +1161 +591 +3588 +2962 +3588 +3727 +4771 +1161 +1473 +3004 +4771 +3361 +3660 +3654 +3383 +1722 +3588 +3772 +3754 +1510 +2362 +3588 +2316 +3383 +1722 +3588 +1093 +3754 +1510 +5286 +3588 +4228 +846 +3383 +1519 +2414 +3754 +1510 +4172 +3588 +3173 +935 +3383 +1722 +3588 +2776 +4771 +3660 +3754 +3756 +1410 +1520 +2359 +4160 +3022 +2228 +3189 +1161 +1510 +3588 +3056 +4771 +3483 +3483 +3756 +3756 +1161 +3588 +4053 +3778 +1537 +3588 +4190 +1510 +191 +3754 +2046 +3788 +473 +3788 +2532 +3599 +473 +3599 +1161 +1473 +3004 +4771 +3361 +436 +3588 +4190 +235 +3748 +4771 +4474 +1519 +3588 +1188 +4600 +4771 +4762 +846 +2532 +3588 +243 +2532 +3588 +2309 +4771 +2919 +2532 +3588 +5509 +4771 +2983 +863 +846 +2532 +3588 +2440 +2532 +3748 +4771 +29 +3400 +1520 +5217 +3326 +846 +1417 +3588 +154 +4771 +1325 +2532 +3588 +2309 +575 +4771 +1155 +3361 +654 +191 +3754 +2046 +25 +3588 +4139 +4771 +2532 +3404 +3588 +2190 +4771 +1161 +1473 +3004 +4771 +25 +3588 +2190 +4771 +2532 +4336 +5228 +3588 +1377 +4771 +3704 +1096 +5207 +3588 +3962 +4771 +3588 +1722 +3772 +3754 +3588 +2246 +846 +393 +1909 +4190 +2532 +18 +2532 +1026 +1909 +1342 +2532 +94 +1063 +1437 +25 +3588 +25 +4771 +5101 +3408 +2192 +3780 +2532 +3588 +5057 +3588 +846 +4160 +2532 +1437 +782 +3588 +80 +4771 +3440 +5101 +4053 +4160 +3780 +2532 +3588 +1482 +3588 +846 +4160 +3767 +1510 +4771 +5046 +5613 +3588 +3962 +4771 +3588 +3770 +5046 +1510 +1161 +4337 +3588 +1343 +4771 +3361 +4160 +1715 +3588 +444 +4314 +3588 +2300 +846 +1161 +1487 +1490 +3408 +3756 +2192 +3844 +3588 +3962 +4771 +3588 +1722 +3588 +3772 +3767 +3752 +4160 +1654 +3361 +4537 +1715 +4771 +5618 +3588 +5273 +4160 +1722 +3588 +4864 +2532 +1722 +3588 +4505 +3704 +1392 +5259 +3588 +444 +281 +3004 +4771 +568 +3588 +3408 +846 +1161 +4771 +4160 +1654 +3361 +1097 +3588 +710 +4771 +5101 +4160 +3588 +1188 +4771 +3704 +1510 +4771 +3588 +1654 +1722 +3588 +2927 +2532 +3588 +3962 +4771 +3588 +991 +1722 +3588 +2927 +591 +4771 +2532 +3752 +4336 +3756 +1510 +5613 +3588 +5273 +3754 +5368 +1722 +3588 +4864 +2532 +1722 +3588 +1137 +3588 +4113 +2476 +4336 +3704 +5316 +3588 +444 +281 +3004 +4771 +568 +3588 +3408 +846 +1161 +3752 +4771 +4336 +1525 +1519 +3588 +5009 +4771 +2532 +2808 +3588 +2374 +4771 +4336 +3588 +3962 +4771 +3588 +1722 +3588 +2927 +2532 +3588 +3962 +4771 +3588 +991 +1722 +3588 +2927 +591 +4771 +1161 +4336 +3361 +945 +5618 +3588 +1482 +1063 +1380 +3754 +1722 +3588 +4180 +846 +1522 +3767 +3361 +3666 +846 +1063 +1492 +3588 +3962 +4771 +3739 +5532 +2192 +4253 +3588 +4771 +154 +846 +3767 +3779 +4336 +4771 +3962 +1473 +3588 +1722 +3588 +3772 +37 +3588 +3686 +4771 +2064 +3588 +932 +4771 +1096 +3588 +2307 +4771 +5613 +1722 +3772 +2532 +1909 +1093 +3588 +740 +1473 +3588 +1967 +1325 +1473 +4594 +2532 +863 +1473 +3588 +3783 +1473 +5613 +2532 +1473 +863 +3588 +3781 +1473 +2532 +3361 +1533 +1473 +1519 +3986 +235 +4506 +1473 +575 +3588 +4190 +1063 +1437 +863 +3588 +444 +3588 +3900 +846 +863 +2532 +4771 +3588 +3962 +4771 +3588 +3770 +1161 +1437 +3361 +863 +3588 +444 +3761 +3588 +3962 +4771 +863 +3588 +3900 +4771 +1161 +3752 +3522 +3361 +1096 +5613 +3588 +5273 +4659 +1063 +853 +3588 +4383 +846 +3704 +5316 +3588 +444 +3522 +281 +3004 +4771 +568 +3588 +3408 +846 +1161 +4771 +3522 +218 +4771 +3588 +2776 +2532 +3588 +4383 +4771 +3538 +3704 +3361 +5316 +3588 +444 +3522 +235 +3588 +3962 +4771 +3588 +1722 +3588 +2927 +2532 +3588 +3962 +4771 +3588 +991 +1722 +3588 +2927 +591 +4771 +3361 +2343 +4771 +2344 +1909 +3588 +1093 +3699 +4597 +2532 +1035 +853 +2532 +3699 +2812 +1358 +2532 +2813 +1161 +2343 +4771 +2344 +1722 +3772 +3699 +3777 +4597 +3777 +1035 +853 +2532 +3699 +2812 +3756 +1358 +3761 +2813 +1063 +3699 +1510 +3588 +2344 +4771 +1563 +1510 +2532 +3588 +2588 +4771 +3588 +3088 +3588 +4983 +1510 +3588 +3788 +3767 +1437 +1510 +3588 +3788 +4771 +573 +3650 +3588 +4983 +4771 +5460 +1510 +1161 +1437 +3588 +3788 +4771 +4190 +1510 +3650 +3588 +4983 +4771 +4652 +1510 +3767 +1487 +3588 +5457 +3588 +1722 +4771 +4655 +1510 +3588 +4655 +4214 +3762 +1410 +1417 +2962 +1398 +1063 +2228 +3588 +1520 +3404 +2532 +3588 +2087 +25 +2228 +1520 +472 +2532 +3588 +2087 +2706 +3756 +1410 +2316 +1398 +2532 +3126 +1223 +3778 +3004 +4771 +3361 +3309 +3588 +5590 +4771 +5101 +5315 +2228 +5101 +4095 +3366 +3588 +4983 +4771 +5101 +1746 +3780 +3588 +5590 +4119 +1510 +3588 +5160 +2532 +3588 +4983 +3588 +1742 +1689 +1519 +3588 +4071 +3588 +3772 +3754 +3756 +4687 +3761 +2325 +3761 +4863 +1519 +596 +2532 +3588 +3962 +4771 +3588 +3770 +5142 +846 +3756 +4771 +3123 +1308 +846 +1161 +5101 +1537 +4771 +3309 +1410 +4369 +1909 +3588 +2244 +846 +4083 +1520 +2532 +4012 +1742 +5101 +3309 +2648 +3588 +2918 +3588 +68 +4459 +837 +3756 +2872 +3761 +3514 +1161 +3004 +4771 +3754 +3761 +4672 +1722 +3956 +3588 +1391 +846 +4016 +5613 +1520 +3778 +1161 +1487 +3588 +5528 +3588 +68 +4594 +1510 +2532 +839 +1519 +2823 +906 +3588 +2316 +3779 +294 +3756 +4183 +3123 +4771 +3640 +3767 +3361 +3309 +3004 +5101 +5315 +2228 +5101 +4095 +2228 +5101 +4016 +1063 +3956 +3778 +3588 +1484 +1934 +1063 +1492 +3588 +3962 +4771 +3588 +3770 +3754 +5535 +3778 +537 +1161 +2212 +4412 +3588 +932 +2532 +3588 +1343 +846 +2532 +3778 +3956 +4369 +4771 +3767 +3361 +3309 +1519 +3588 +839 +1063 +3588 +839 +3309 +1438 +713 +3588 +2250 +3588 +2549 +846 +3361 +2919 +2443 +3361 +2919 +1063 +1722 +3739 +2917 +2919 +2919 +2532 +1722 +3739 +3358 +3354 +3354 +4771 +1161 +5101 +991 +3588 +2595 +3588 +1722 +3588 +3788 +3588 +80 +4771 +1161 +3588 +1722 +3588 +4674 +3788 +1385 +3756 +2657 +2228 +4459 +2046 +3588 +80 +4771 +863 +1544 +3588 +2595 +1537 +3588 +3788 +4771 +2532 +3708 +3588 +1385 +1722 +3588 +3788 +4771 +5273 +1544 +4412 +1537 +3588 +3788 +4771 +3588 +1385 +2532 +5119 +1227 +1544 +3588 +2595 +1537 +3588 +3788 +3588 +80 +4771 +3361 +1325 +3588 +40 +3588 +2965 +3366 +906 +3588 +3135 +4771 +1715 +3588 +5519 +3361 +4218 +2662 +846 +1722 +3588 +4228 +846 +2532 +4762 +4486 +4771 +154 +2532 +1325 +4771 +2212 +2532 +2147 +2925 +2532 +455 +4771 +1063 +3956 +3588 +154 +2983 +2532 +3588 +2212 +2147 +2532 +3588 +2925 +455 +2228 +1510 +1537 +4771 +5101 +444 +3739 +154 +3588 +5207 +846 +740 +3361 +3037 +1929 +846 +2228 +2532 +2486 +154 +3361 +3789 +1929 +846 +3767 +1487 +4771 +4190 +1510 +1492 +1390 +18 +1325 +3588 +5043 +4771 +4214 +3123 +3588 +3962 +4771 +3588 +1722 +3588 +3772 +1325 +18 +3588 +154 +846 +3767 +3956 +1437 +3745 +2309 +2443 +4160 +4771 +3588 +444 +3779 +2532 +4771 +4160 +846 +1063 +3778 +1510 +3588 +3551 +2532 +3588 +4396 +1525 +1223 +3588 +4728 +4439 +3754 +4116 +3588 +4439 +2532 +2149 +3588 +3598 +3588 +520 +1519 +3588 +684 +2532 +4183 +1510 +3588 +1525 +1223 +846 +3754 +4728 +3588 +4439 +2532 +2346 +3588 +3598 +3588 +520 +1519 +3588 +2222 +2532 +3641 +1510 +3588 +2147 +846 +4337 +575 +3588 +5578 +3748 +2064 +4314 +4771 +1722 +1742 +4263 +1161 +2081 +1510 +3074 +727 +575 +3588 +2590 +846 +1921 +846 +3385 +4816 +575 +173 +4718 +2228 +575 +5146 +4810 +3779 +3956 +1186 +18 +2590 +2570 +4160 +1161 +3588 +4550 +1186 +2590 +4190 +4160 +3756 +1410 +1186 +18 +2590 +4190 +5342 +3761 +1186 +4550 +2590 +2570 +5342 +3956 +1186 +3361 +4160 +2590 +2570 +1581 +2532 +1519 +4442 +906 +686 +575 +3588 +2590 +846 +1921 +846 +3756 +3956 +3588 +3004 +1473 +2962 +2962 +1525 +1519 +3588 +932 +3588 +3772 +235 +3588 +4160 +3588 +2307 +3588 +3962 +1473 +3588 +1722 +3588 +3772 +4183 +2046 +1473 +1722 +1565 +3588 +2250 +2962 +2962 +3756 +3588 +4674 +3686 +4395 +2532 +3588 +4674 +3686 +1140 +1544 +2532 +3588 +4674 +3686 +1411 +4183 +4160 +2532 +5119 +3670 +846 +3754 +3763 +1097 +4771 +672 +575 +1473 +3588 +2038 +3588 +458 +3767 +3956 +3748 +191 +1473 +3588 +3056 +3778 +2532 +4160 +846 +3666 +435 +5429 +3748 +3618 +846 +3588 +3614 +1909 +3588 +4073 +2532 +2597 +3588 +1028 +2532 +2064 +3588 +4215 +2532 +4154 +3588 +417 +2532 +4363 +3588 +3614 +1565 +2532 +3756 +4098 +1063 +2311 +1909 +3588 +4073 +2532 +3956 +3588 +191 +1473 +3588 +3056 +3778 +2532 +3361 +4160 +846 +3666 +435 +3474 +3748 +3618 +846 +3588 +3614 +1909 +3588 +285 +2532 +2597 +3588 +1028 +2532 +2064 +3588 +4215 +2532 +4154 +3588 +417 +2532 +4350 +3588 +3614 +1565 +2532 +4098 +2532 +1510 +3588 +4431 +846 +3173 +2532 +1096 +3753 +5055 +3588 +2424 +3588 +3056 +3778 +1605 +3588 +3793 +1909 +3588 +1322 +846 +1063 +1510 +1321 +846 +5613 +1849 +2192 +2532 +3756 +5613 +3588 +1122 +846 +1161 +2597 +846 +575 +3588 +3735 +190 +846 +3793 +4183 +2532 +3708 +3015 +4334 +4352 +846 +3004 +2962 +1437 +2309 +1410 +1473 +2511 +2532 +1614 +3588 +5495 +680 +846 +3004 +2309 +2511 +2532 +2112 +2511 +846 +3588 +3014 +2532 +3004 +846 +3588 +2424 +3708 +3367 +3004 +235 +5217 +4572 +1166 +3588 +2409 +2532 +4374 +3588 +1435 +3739 +4367 +3475 +1519 +3142 +846 +1161 +1525 +846 +1519 +2584 +4334 +846 +1543 +3870 +846 +2532 +3004 +2962 +3588 +3816 +1473 +906 +1722 +3588 +3614 +3885 +1171 +928 +3004 +846 +1473 +2064 +2323 +846 +1161 +611 +3588 +1543 +5346 +2962 +3756 +1510 +2425 +2443 +5259 +1473 +3588 +4721 +1525 +235 +3440 +3004 +3056 +2532 +2390 +3588 +3816 +1473 +1063 +2532 +1473 +1510 +444 +5259 +1849 +2192 +5259 +1683 +4757 +2532 +3004 +3778 +4198 +2532 +4198 +2532 +243 +2064 +2532 +2064 +2532 +3588 +1401 +1473 +4160 +3778 +2532 +4160 +1161 +191 +3588 +2424 +2296 +2532 +3004 +3588 +190 +281 +3004 +4771 +3844 +3762 +5118 +4102 +1722 +3588 +2474 +2147 +1161 +3004 +4771 +3754 +4183 +575 +395 +2532 +1424 +2240 +2532 +347 +3326 +11 +2532 +2464 +2532 +2384 +1722 +3588 +932 +3588 +3772 +1161 +3588 +5207 +3588 +932 +1544 +1519 +3588 +4655 +3588 +1857 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +2532 +3004 +3588 +2424 +3588 +1543 +5217 +5613 +4100 +1096 +4771 +2532 +2390 +3588 +3816 +1722 +3588 +5610 +1565 +2532 +3588 +2424 +2064 +1519 +3588 +3614 +4074 +3708 +3588 +3994 +846 +906 +2532 +4445 +2532 +680 +3588 +5495 +846 +2532 +863 +846 +3588 +4446 +2532 +1453 +2532 +1247 +846 +1161 +3798 +1096 +4374 +846 +1139 +4183 +2532 +1544 +3588 +4151 +3056 +2532 +3956 +3588 +2560 +2192 +2323 +3704 +4137 +3588 +2046 +1223 +2268 +3588 +4396 +3004 +846 +3588 +769 +1473 +2983 +2532 +3588 +3554 +941 +1161 +3588 +2424 +3708 +3793 +4012 +846 +2753 +565 +1519 +3588 +4008 +2532 +4334 +1520 +1122 +3004 +846 +1320 +190 +4771 +1437 +3699 +565 +2532 +3004 +846 +3588 +2424 +3588 +258 +5454 +2192 +2532 +3588 +4071 +3588 +3772 +2682 +1161 +3588 +5207 +3588 +444 +3756 +2192 +4226 +3588 +2776 +2827 +1161 +2087 +3588 +3101 +3004 +846 +2962 +2010 +1473 +4412 +565 +2532 +2290 +3588 +3962 +1473 +1161 +3588 +2424 +3004 +846 +190 +1473 +2532 +863 +3588 +3498 +2290 +3588 +1438 +3498 +2532 +1684 +846 +1519 +3588 +4143 +190 +846 +3588 +3101 +846 +2532 +3708 +4578 +3173 +1096 +1722 +3588 +2281 +5620 +3588 +4143 +2572 +5259 +3588 +2949 +1161 +846 +2518 +2532 +4334 +1453 +846 +3004 +2962 +4982 +622 +2532 +3004 +846 +5101 +1169 +1510 +3640 +5119 +1453 +2008 +3588 +417 +2532 +3588 +2281 +2532 +1096 +1055 +3173 +1161 +3588 +444 +2296 +3004 +4217 +1510 +3778 +3754 +2532 +3588 +417 +2532 +3588 +2281 +846 +5219 +2532 +2064 +846 +1519 +3588 +4008 +1519 +3588 +5561 +3588 +1046 +5221 +846 +1417 +1139 +1537 +3588 +3419 +1831 +5467 +3029 +5620 +3361 +2480 +5100 +3928 +1223 +3588 +3598 +1565 +2532 +3708 +2896 +3004 +5101 +1473 +2532 +4771 +5207 +3588 +2316 +2064 +5602 +4253 +2540 +928 +1473 +1161 +1510 +3112 +575 +846 +34 +5519 +4183 +1006 +1161 +3588 +1142 +3870 +846 +3004 +1487 +1544 +1473 +649 +1473 +1519 +3588 +34 +3588 +5519 +2532 +3004 +846 +5217 +1161 +3588 +1831 +565 +1519 +3588 +5519 +2532 +3708 +3729 +3956 +3588 +34 +2596 +3588 +2911 +1519 +3588 +2281 +2532 +599 +1722 +3588 +5204 +1161 +3588 +1006 +5343 +2532 +565 +1519 +3588 +4172 +518 +3956 +2532 +3588 +3588 +1139 +2532 +3708 +3956 +3588 +4172 +1831 +1519 +5222 +3588 +2424 +2532 +3708 +846 +3870 +3704 +3327 +575 +3588 +3725 +846 +2532 +1684 +1519 +4143 +1276 +2532 +2064 +1519 +3588 +2398 +4172 +2532 +3708 +4374 +846 +3885 +1909 +2825 +906 +2532 +3588 +2424 +3708 +3588 +4102 +846 +3004 +3588 +3885 +2293 +5043 +863 +4771 +3588 +266 +2532 +3708 +5100 +3588 +1122 +3004 +1722 +1438 +3778 +987 +2532 +3588 +2424 +1492 +3588 +1761 +846 +3004 +2443 +5101 +1760 +4190 +1722 +3588 +2588 +4771 +1063 +5101 +1510 +2123 +3004 +863 +4771 +3588 +266 +2228 +3004 +1453 +2532 +4043 +1161 +2443 +1492 +3754 +1849 +2192 +3588 +5207 +3588 +444 +1909 +3588 +1093 +863 +266 +5119 +3004 +3588 +3885 +1453 +142 +4771 +3588 +2825 +2532 +5217 +1519 +3588 +3624 +4771 +2532 +1453 +565 +1519 +3588 +3624 +846 +1161 +3708 +3588 +3793 +5399 +2532 +1392 +3588 +2316 +3588 +1325 +1849 +5108 +3588 +444 +2532 +3855 +1564 +3588 +2424 +3708 +444 +2521 +1909 +3588 +5058 +3156 +3004 +2532 +3004 +846 +190 +1473 +2532 +450 +190 +846 +2532 +1096 +846 +345 +1722 +3588 +3614 +2532 +3708 +4183 +5057 +2532 +268 +2064 +4873 +3588 +2424 +2532 +3588 +3101 +846 +2532 +3708 +3588 +5330 +3004 +3588 +3101 +846 +1223 +5101 +3326 +3588 +5057 +2532 +268 +2068 +3588 +1320 +4771 +1161 +3588 +191 +3004 +3756 +5532 +2395 +2192 +3588 +2480 +235 +3588 +2560 +2192 +1161 +4198 +3129 +5101 +1510 +1656 +2309 +2532 +3756 +2378 +1063 +3756 +2064 +2564 +1342 +235 +268 +5119 +4334 +846 +3588 +3101 +2491 +3004 +1223 +5101 +1473 +2532 +3588 +5330 +3522 +1161 +3588 +3101 +4771 +3756 +3522 +2532 +3004 +846 +3588 +2424 +3361 +1410 +3588 +5207 +3588 +3567 +3996 +1909 +3745 +3326 +846 +1510 +3588 +3566 +1161 +2064 +2250 +3752 +522 +575 +846 +3588 +3566 +2532 +5119 +3522 +1161 +3762 +1911 +1915 +4470 +46 +1909 +2440 +3820 +1063 +142 +3588 +4138 +846 +575 +3588 +2440 +2532 +5501 +4978 +1096 +3761 +906 +3631 +3501 +1519 +779 +3820 +1161 +1487 +1490 +4486 +3588 +779 +2532 +3588 +3631 +1632 +2532 +3588 +779 +622 +235 +906 +3631 +3501 +1519 +779 +2537 +2532 +297 +4933 +3778 +846 +2980 +846 +3708 +758 +1520 +4334 +4352 +846 +3004 +3754 +3588 +2364 +1473 +737 +5053 +235 +2064 +2007 +3588 +5495 +4771 +1909 +846 +2532 +2198 +2532 +1453 +3588 +2424 +190 +846 +2532 +3588 +3101 +846 +2532 +3708 +1135 +131 +1427 +2094 +4334 +3693 +680 +3588 +2899 +3588 +2440 +846 +1063 +3004 +1722 +1438 +1437 +3440 +680 +3588 +2440 +846 +4982 +1161 +3588 +2424 +4762 +2532 +3708 +846 +3004 +2293 +2364 +3588 +4102 +4771 +4982 +4771 +2532 +4982 +3588 +1135 +575 +3588 +5610 +1565 +2532 +3588 +2424 +2064 +1519 +3588 +3614 +3588 +758 +2532 +3708 +3588 +834 +2532 +3588 +3793 +2350 +3004 +402 +1063 +3756 +599 +3588 +2877 +235 +2518 +2532 +2606 +846 +1161 +3753 +1544 +3588 +3793 +1525 +2902 +3588 +5495 +846 +2532 +1453 +3588 +2877 +2532 +1831 +3588 +5345 +3778 +1519 +3650 +3588 +1093 +1565 +2532 +3855 +1564 +3588 +2424 +190 +1417 +5185 +2896 +2532 +3004 +1653 +1473 +5207 +1138 +1161 +2064 +1519 +3588 +3614 +4334 +846 +3588 +5185 +2532 +3004 +846 +3588 +2424 +4100 +3754 +1410 +3778 +4160 +3004 +846 +3483 +2962 +5119 +680 +3588 +3788 +846 +3004 +2596 +3588 +4102 +4771 +1096 +4771 +2532 +455 +846 +3588 +3788 +2532 +1690 +846 +3588 +2424 +3004 +3708 +3367 +1097 +1161 +3588 +1831 +1310 +846 +1722 +3650 +3588 +1093 +1565 +1161 +846 +1831 +3708 +4374 +846 +2974 +1139 +2532 +1544 +3588 +1140 +2980 +3588 +2974 +2532 +2296 +3588 +3793 +3004 +3763 +5316 +3779 +1722 +3588 +2474 +1161 +3588 +5330 +3004 +1722 +3588 +758 +3588 +1140 +1544 +3588 +1140 +2532 +4013 +3588 +2424 +3588 +4172 +3956 +2532 +3588 +2968 +1321 +1722 +3588 +4864 +846 +2532 +2784 +3588 +2098 +3588 +932 +2532 +2323 +3956 +3554 +2532 +3956 +3119 +1161 +3708 +3588 +3793 +4697 +4012 +846 +3754 +1510 +4660 +2532 +4496 +5616 +4263 +3361 +2192 +4166 +5119 +3004 +3588 +3101 +846 +3303 +3588 +2326 +4183 +1161 +3588 +2040 +3641 +3767 +1189 +3588 +2962 +3588 +2326 +3704 +1544 +2040 +1519 +3588 +2326 +846 +2532 +4341 +3588 +1427 +3101 +846 +1325 +846 +1849 +4151 +169 +5620 +1544 +846 +2532 +2323 +3956 +3554 +2532 +3956 +3119 +1161 +3588 +1427 +652 +3588 +3686 +1510 +3778 +4413 +4613 +3588 +3004 +4074 +2532 +406 +3588 +80 +846 +2532 +2385 +3588 +3588 +2199 +2532 +2491 +3588 +80 +846 +5376 +2532 +918 +2381 +2532 +3156 +3588 +5057 +2385 +3588 +3588 +256 +2532 +2280 +4613 +3588 +2581 +2532 +2455 +3588 +2469 +3588 +2532 +3860 +846 +3778 +3588 +1427 +649 +3588 +2424 +3853 +846 +3004 +1519 +3598 +1484 +3361 +565 +2532 +1519 +4172 +4541 +3361 +1525 +1161 +4198 +3123 +4314 +3588 +4263 +3588 +622 +3624 +2474 +1161 +4198 +2784 +3004 +3754 +1448 +3588 +932 +3588 +3772 +770 +2323 +3498 +1453 +3015 +2511 +1140 +1544 +1432 +2983 +1432 +1325 +3361 +2932 +5557 +3366 +696 +3366 +5475 +1519 +3588 +2223 +4771 +3361 +4082 +1519 +3598 +3366 +1417 +5509 +3366 +5266 +3366 +4464 +1063 +514 +3588 +2040 +3588 +5160 +846 +1161 +302 +1519 +3739 +4172 +2228 +2968 +1525 +1833 +5101 +1722 +846 +514 +1510 +2546 +3306 +2193 +302 +1831 +1161 +1525 +1519 +3588 +3614 +782 +846 +2532 +3303 +1437 +1510 +3588 +3614 +514 +2064 +3588 +1515 +4771 +1909 +846 +1161 +1437 +3361 +1510 +514 +3588 +1515 +4771 +4314 +4771 +1994 +2532 +302 +3739 +3361 +1209 +4771 +3366 +191 +3588 +3056 +4771 +1831 +1854 +3588 +3614 +2228 +3588 +4172 +1565 +1621 +3588 +2868 +3588 +4228 +4771 +281 +3004 +4771 +414 +1510 +1093 +4670 +2532 +1116 +1722 +2250 +2920 +2228 +3588 +4172 +1565 +3708 +1473 +649 +4771 +5613 +4263 +1722 +3319 +3074 +3767 +1096 +5429 +5613 +3588 +3789 +2532 +185 +5613 +3588 +4058 +1161 +4337 +575 +3588 +444 +1063 +3860 +4771 +1519 +4892 +2532 +1722 +3588 +4864 +846 +3146 +4771 +1161 +2532 +1909 +2232 +2532 +935 +71 +1752 +1473 +1519 +3142 +846 +2532 +3588 +1484 +1161 +3752 +3860 +4771 +3361 +3309 +4459 +2228 +5101 +2980 +1063 +1325 +4771 +1722 +1565 +3588 +5610 +5101 +2980 +1063 +3756 +4771 +1510 +3588 +2980 +235 +3588 +4151 +3588 +3962 +4771 +3588 +2980 +1722 +4771 +1161 +3860 +80 +80 +1519 +2288 +2532 +3962 +5043 +2532 +1881 +5043 +1909 +1118 +2532 +2289 +846 +2532 +1510 +3404 +5259 +3956 +1223 +3588 +3686 +1473 +1161 +3588 +5278 +1519 +5056 +3778 +4982 +1161 +3752 +1377 +4771 +1722 +3588 +4172 +3778 +5343 +1519 +3588 +2087 +1063 +281 +3004 +4771 +3756 +3361 +5055 +3588 +4172 +3588 +2474 +2193 +2064 +3588 +5207 +3588 +444 +3756 +1510 +3101 +5228 +3588 +1320 +3761 +1401 +5228 +3588 +2962 +846 +713 +3588 +3101 +2443 +1096 +5613 +3588 +1320 +846 +2532 +3588 +1401 +5613 +3588 +2962 +846 +1487 +3588 +3617 +954 +1941 +4214 +3123 +3588 +3615 +846 +3767 +3361 +5399 +846 +1063 +3762 +1510 +2572 +3739 +3756 +601 +2532 +2927 +3739 +3756 +1097 +3739 +3004 +4771 +1722 +3588 +4653 +3004 +1722 +3588 +5457 +2532 +3739 +1519 +3588 +3775 +191 +2784 +1909 +3588 +1430 +2532 +3361 +5399 +575 +3588 +615 +3588 +4983 +1161 +3361 +1410 +3588 +5590 +615 +1161 +5399 +3123 +3588 +1410 +2532 +5590 +2532 +4983 +622 +1722 +1067 +3780 +1417 +4765 +787 +4453 +2532 +1520 +1537 +846 +3756 +4098 +1909 +3588 +1093 +427 +3588 +3962 +4771 +1161 +2532 +4771 +3588 +2359 +3588 +2776 +3956 +705 +1510 +3767 +3361 +5399 +4183 +4765 +1308 +4771 +3767 +3956 +3748 +3670 +1722 +1473 +1715 +3588 +444 +3670 +2504 +1722 +846 +1715 +3588 +3962 +1473 +3588 +1722 +3588 +3772 +1161 +302 +3748 +720 +1473 +1715 +3588 +444 +720 +2504 +846 +1715 +3588 +3962 +1473 +3588 +1722 +3588 +3772 +3361 +3543 +3754 +2064 +906 +1515 +1909 +3588 +1093 +3756 +2064 +906 +1515 +235 +3162 +1063 +2064 +1369 +444 +2596 +3588 +3962 +846 +2532 +2364 +2596 +3588 +3384 +846 +2532 +3565 +2596 +3588 +3994 +846 +2532 +2190 +3588 +444 +3588 +3615 +846 +3588 +5368 +3962 +2228 +3384 +5228 +1473 +3756 +1510 +1473 +514 +2532 +3588 +5368 +5207 +2228 +2364 +5228 +1473 +3756 +1510 +1473 +514 +2532 +3739 +3756 +2983 +3588 +4716 +846 +2532 +190 +3694 +1473 +3756 +1510 +1473 +514 +3588 +2147 +3588 +5590 +846 +622 +846 +2532 +3588 +622 +3588 +5590 +846 +1752 +1473 +2147 +846 +3588 +1209 +4771 +1473 +1209 +2532 +3588 +1473 +1209 +1209 +3588 +649 +1473 +3588 +1209 +4396 +1519 +3686 +4396 +3408 +4396 +2983 +2532 +3588 +1209 +1342 +1519 +3686 +1342 +3408 +1342 +2983 +2532 +1437 +3739 +4222 +1520 +3588 +3398 +3778 +4221 +5593 +3440 +1519 +3686 +3101 +281 +3004 +4771 +3756 +3361 +622 +3588 +3408 +846 +2532 +1096 +3753 +5055 +3588 +2424 +1299 +3588 +1427 +3101 +846 +3327 +1564 +3588 +1321 +2532 +2784 +1722 +3588 +4172 +846 +1161 +3588 +2491 +191 +1722 +3588 +1201 +3588 +2041 +3588 +5547 +3992 +1223 +3588 +3101 +846 +3004 +846 +4771 +1510 +3588 +2064 +2228 +2087 +4328 +2532 +611 +3588 +2424 +3004 +846 +4198 +518 +2491 +3739 +191 +2532 +991 +5185 +308 +2532 +5560 +4043 +3015 +2511 +2532 +2974 +191 +2532 +3498 +1453 +2532 +4434 +2097 +2532 +3107 +1510 +1437 +3739 +3361 +4624 +1722 +1473 +1161 +3778 +4198 +756 +3588 +2424 +3004 +3588 +3793 +4012 +2491 +5101 +2300 +1831 +1519 +3588 +2048 +2563 +5259 +417 +4531 +235 +5101 +3708 +1831 +444 +1722 +3120 +294 +3708 +3588 +3588 +3120 +5409 +1722 +3588 +3624 +3588 +935 +235 +5101 +1831 +4396 +3708 +3483 +3004 +4771 +2532 +4053 +4396 +3778 +1510 +4012 +3739 +1125 +3708 +1473 +649 +3588 +32 +1473 +4253 +4383 +4771 +3739 +2680 +3588 +3598 +4771 +1715 +4771 +281 +3004 +4771 +3756 +1453 +1722 +1084 +1135 +3173 +2491 +3588 +910 +1161 +3588 +3398 +1722 +3588 +932 +3588 +3772 +3173 +846 +1510 +1161 +575 +3588 +2250 +2491 +3588 +910 +2193 +737 +3588 +932 +3588 +3772 +971 +2532 +973 +726 +846 +1063 +3956 +3588 +4396 +2532 +3588 +3551 +2193 +2491 +4395 +2532 +1487 +2309 +1209 +846 +1510 +2243 +3588 +3195 +2064 +3588 +2192 +3775 +191 +1161 +5101 +3666 +3588 +1074 +3778 +3664 +1510 +3813 +2521 +1722 +3588 +58 +3739 +4377 +3588 +2087 +3004 +832 +4771 +2532 +3756 +3738 +2354 +2532 +3756 +2875 +1063 +2064 +2491 +3383 +2068 +3383 +4095 +2532 +3004 +1140 +2192 +2064 +3588 +5207 +3588 +444 +2068 +2532 +4095 +2532 +3004 +3708 +444 +5314 +2532 +3630 +5384 +5057 +2532 +268 +2532 +1344 +3588 +4678 +575 +3588 +2041 +846 +5119 +756 +3679 +3588 +4172 +1722 +3739 +1096 +3588 +4118 +1411 +846 +3754 +3756 +3340 +3759 +4771 +5523 +3759 +4771 +966 +3754 +1487 +1722 +5184 +2532 +4605 +1096 +3588 +1411 +3588 +1096 +1722 +4771 +302 +3819 +1722 +4526 +2532 +4700 +3340 +4133 +3004 +4771 +5184 +2532 +4605 +414 +1510 +1722 +2250 +2920 +2228 +4771 +2532 +2584 +3361 +4771 +2193 +3772 +5312 +2193 +86 +2597 +3754 +1487 +1722 +4670 +1096 +3588 +1411 +3588 +1096 +1722 +4771 +302 +3306 +3360 +3588 +4594 +4133 +3004 +4771 +3754 +1093 +4670 +414 +1510 +1722 +2250 +2920 +2228 +4771 +1722 +1565 +3588 +2540 +611 +3588 +2424 +3004 +1843 +4771 +3962 +2962 +3588 +3772 +2532 +3588 +1093 +3754 +2928 +3778 +575 +4680 +2532 +4908 +2532 +601 +846 +3516 +3483 +3588 +3962 +3754 +3779 +2107 +1096 +1715 +4771 +3956 +1473 +3860 +5259 +3588 +3962 +1473 +2532 +3762 +1921 +3588 +5207 +1487 +3361 +3588 +3962 +3761 +3588 +3962 +5100 +1921 +1487 +3361 +3588 +5207 +2532 +1437 +3739 +601 +1014 +3588 +5207 +1205 +4314 +1473 +3956 +3588 +2872 +2532 +5412 +2504 +373 +4771 +142 +3588 +2218 +1473 +1909 +4771 +2532 +3129 +575 +1473 +3754 +1510 +4239 +2532 +5011 +3588 +2588 +2532 +2147 +372 +3588 +5590 +4771 +1063 +3588 +2218 +1473 +5543 +2532 +3588 +5413 +1473 +1645 +1510 +1722 +1565 +3588 +2540 +4198 +3588 +2424 +3588 +4521 +1223 +3588 +4702 +1161 +3588 +3101 +846 +3983 +2532 +756 +5089 +4719 +2532 +2068 +1161 +3588 +5330 +3708 +3004 +846 +3708 +3588 +3101 +4771 +4160 +3739 +4160 +3756 +1832 +1722 +4521 +1161 +3588 +3004 +846 +3756 +314 +5101 +4160 +1138 +3753 +3983 +2532 +3588 +3326 +846 +4459 +1525 +1519 +3588 +3624 +3588 +2316 +2532 +3588 +740 +3588 +4286 +5315 +3739 +5315 +3756 +1832 +1510 +846 +3761 +3588 +3326 +846 +1487 +3361 +3588 +2409 +3441 +2228 +3756 +314 +1722 +3588 +3551 +3754 +3588 +4521 +3588 +2409 +1722 +3588 +2411 +3588 +4521 +953 +2532 +338 +1510 +1161 +3004 +4771 +3754 +3588 +2411 +3173 +1510 +5602 +1161 +1487 +1097 +5101 +1510 +1656 +2309 +2532 +3756 +2378 +302 +3756 +2613 +3588 +338 +1063 +1510 +2962 +3588 +4521 +3588 +5207 +3588 +444 +2532 +3327 +1564 +2064 +1519 +3588 +4864 +846 +2532 +3708 +444 +5495 +2192 +3584 +2532 +1905 +846 +3004 +1487 +1832 +3588 +4521 +2323 +2443 +2723 +846 +1161 +3588 +3004 +846 +5101 +1510 +1537 +4771 +444 +3739 +2192 +4263 +1520 +2532 +1437 +1706 +3778 +3588 +4521 +1519 +999 +3780 +2902 +846 +2532 +1453 +3767 +4214 +1308 +444 +4263 +5620 +1832 +3588 +4521 +2573 +4160 +5119 +3004 +3588 +444 +1614 +4771 +3588 +5495 +2532 +1614 +2532 +600 +5199 +5613 +3588 +243 +1161 +1831 +3588 +5330 +4824 +2983 +2596 +846 +3704 +846 +622 +1161 +3588 +2424 +1097 +402 +1564 +2532 +190 +846 +4183 +2532 +2323 +846 +3956 +2532 +2008 +846 +2443 +3361 +5318 +846 +4160 +2443 +4137 +3588 +2046 +1223 +2268 +3588 +4396 +3004 +3708 +3588 +3816 +1473 +3739 +140 +3588 +27 +1473 +3739 +2106 +3588 +5590 +1473 +5087 +3588 +4151 +1473 +1909 +846 +2532 +2920 +3588 +1484 +518 +3756 +2051 +3761 +2905 +3761 +191 +5100 +1722 +3588 +4113 +3588 +5456 +846 +2563 +4937 +3756 +2608 +2532 +3043 +5188 +3756 +4570 +2193 +302 +1544 +1519 +3534 +3588 +2920 +2532 +3588 +3686 +846 +1484 +1679 +5119 +4374 +846 +1139 +5185 +2532 +2974 +2532 +2323 +846 +5620 +3588 +2974 +2980 +2532 +991 +2532 +1839 +3956 +3588 +3793 +2532 +3004 +3385 +3778 +1510 +3588 +5207 +1138 +1161 +3588 +5330 +191 +3004 +3778 +3756 +1544 +3588 +1140 +1487 +3361 +1722 +3588 +954 +758 +3588 +1140 +1161 +1492 +3588 +1761 +846 +3004 +846 +3956 +932 +3307 +2596 +1438 +2049 +2532 +3956 +4172 +2228 +3614 +3307 +2596 +1438 +3756 +2476 +2532 +1487 +3588 +4567 +3588 +4567 +1544 +1909 +1438 +3307 +3767 +4459 +2476 +3588 +932 +846 +2532 +1487 +1473 +1722 +954 +1544 +3588 +1140 +3588 +5207 +4771 +1722 +5101 +1544 +1223 +3778 +846 +2923 +4771 +1510 +1161 +1487 +1722 +4151 +2316 +1473 +1544 +3588 +1140 +686 +5348 +1909 +4771 +3588 +932 +3588 +2316 +2228 +4459 +1410 +5100 +1525 +1519 +3588 +3614 +3588 +2478 +2532 +3588 +4632 +846 +726 +1437 +3361 +4412 +1210 +3588 +2478 +2532 +5119 +3588 +3614 +846 +1283 +3588 +3361 +1510 +3326 +1473 +2596 +1473 +1510 +2532 +3588 +3361 +4863 +3326 +1473 +4650 +1223 +3778 +3004 +4771 +3956 +266 +2532 +988 +863 +3588 +444 +1161 +3588 +3588 +4151 +988 +3756 +863 +2532 +1437 +3739 +3004 +3056 +2596 +3588 +5207 +3588 +444 +863 +846 +1161 +302 +3739 +3004 +2596 +3588 +4151 +3588 +40 +3756 +863 +846 +3777 +1722 +3778 +3588 +165 +3777 +1722 +3588 +3195 +2228 +4160 +3588 +1186 +2570 +2532 +3588 +2590 +846 +2570 +2228 +4160 +3588 +1186 +4550 +2532 +3588 +2590 +846 +4550 +1063 +1537 +3588 +2590 +3588 +1186 +1097 +1081 +2191 +4459 +1410 +18 +2980 +4190 +1510 +1063 +1537 +3588 +4051 +3588 +2588 +3588 +4750 +2980 +3588 +18 +444 +1537 +3588 +18 +2344 +1544 +18 +2532 +3588 +4190 +444 +1537 +3588 +4190 +2344 +1544 +4190 +1161 +3004 +4771 +3754 +3956 +4487 +692 +3739 +2980 +3588 +444 +591 +4012 +846 +3056 +1722 +2250 +2920 +1063 +1537 +3588 +3056 +4771 +1344 +2532 +1537 +3588 +3056 +4771 +2613 +5119 +611 +846 +5100 +3588 +1122 +2532 +5330 +3004 +1320 +2309 +575 +4771 +4592 +3708 +1161 +3588 +611 +3004 +846 +1074 +4190 +2532 +3428 +4592 +1934 +2532 +4592 +3756 +1325 +846 +1487 +3361 +3588 +4592 +2495 +3588 +4396 +1063 +5618 +1510 +2495 +1722 +3588 +2836 +3588 +2785 +5140 +2250 +2532 +5140 +3571 +3779 +1510 +3588 +5207 +3588 +444 +1722 +3588 +2588 +3588 +1093 +5140 +2250 +2532 +5140 +3571 +435 +3536 +450 +1722 +3588 +2920 +3326 +3588 +1074 +3778 +2532 +2632 +846 +3754 +3340 +1519 +3588 +2782 +2495 +2532 +3708 +4119 +2495 +5602 +938 +3558 +1453 +1722 +3588 +2920 +3326 +3588 +1074 +3778 +2532 +2632 +846 +3754 +2064 +1537 +3588 +4009 +3588 +1093 +191 +3588 +4678 +4672 +2532 +3708 +4119 +4672 +5602 +1161 +3752 +3588 +169 +4151 +1831 +575 +3588 +444 +1330 +1223 +504 +5117 +2212 +372 +2532 +3756 +2147 +5119 +3004 +1519 +3588 +3624 +1473 +1994 +3606 +1831 +2532 +2064 +2147 +4980 +2532 +4563 +2532 +2885 +5119 +4198 +2532 +3880 +3326 +1438 +2033 +2087 +4151 +4190 +1438 +2532 +1525 +2730 +1563 +2532 +1096 +3588 +2078 +3588 +444 +1565 +5501 +3588 +4413 +3779 +1510 +2532 +3588 +1074 +3778 +3588 +4190 +2089 +846 +2980 +3588 +3793 +3708 +3588 +3384 +2532 +3588 +80 +846 +2476 +1854 +2212 +846 +2980 +1161 +3004 +5100 +846 +3708 +3588 +3384 +4771 +2532 +3588 +80 +4771 +1854 +2476 +2212 +4771 +2980 +1161 +3588 +611 +3004 +3588 +3004 +846 +5101 +1510 +3588 +3384 +1473 +2532 +5101 +1510 +3588 +80 +1473 +2532 +1614 +3588 +5495 +846 +1909 +3588 +3101 +846 +3004 +3708 +3588 +3384 +1473 +2532 +3588 +80 +1473 +1063 +302 +3748 +4160 +3588 +2307 +3588 +3962 +1473 +3588 +1722 +3772 +846 +1473 +80 +2532 +79 +2532 +3384 +1510 +1722 +3588 +2250 +1565 +3588 +2424 +1831 +3588 +3614 +2521 +3844 +3588 +2281 +2532 +4863 +4314 +846 +3793 +4183 +5620 +846 +1519 +4143 +1684 +2521 +2532 +3956 +3588 +3793 +1909 +3588 +123 +2476 +2532 +2980 +846 +4183 +1722 +3850 +3004 +3708 +1831 +3588 +4687 +3588 +4687 +2532 +1722 +3588 +4687 +846 +3303 +3739 +4098 +3844 +3588 +3598 +2532 +2064 +3588 +4071 +2719 +846 +1161 +243 +4098 +1909 +3588 +4075 +3699 +3756 +2192 +1093 +4183 +2532 +2112 +1816 +1223 +3588 +3361 +2192 +899 +1093 +1161 +2246 +393 +2739 +2532 +1223 +3588 +3361 +2192 +4491 +3583 +1161 +243 +4098 +1909 +3588 +173 +2532 +305 +3588 +173 +2532 +638 +846 +1161 +243 +4098 +1909 +3588 +1093 +3588 +2570 +2532 +1325 +2590 +3303 +3739 +1540 +1161 +3739 +1835 +1161 +3739 +5144 +3588 +2192 +3775 +191 +2532 +4334 +3588 +3101 +3004 +846 +1223 +5101 +1722 +3850 +2980 +846 +1161 +3588 +611 +3004 +3754 +4771 +1325 +1097 +3588 +3466 +3588 +932 +3588 +3772 +1161 +1565 +3756 +1325 +1063 +3748 +2192 +1325 +846 +2532 +4052 +1161 +3748 +3756 +2192 +2532 +3739 +2192 +142 +575 +846 +1223 +3778 +1722 +3850 +846 +2980 +3754 +991 +3756 +991 +2532 +191 +3756 +191 +3761 +4920 +2532 +378 +846 +3588 +4394 +2268 +3588 +3004 +189 +191 +2532 +3756 +3361 +4920 +2532 +991 +991 +2532 +3756 +3361 +3708 +1063 +3975 +3588 +2588 +3588 +2992 +3778 +2532 +3588 +3775 +917 +191 +2532 +3588 +3788 +846 +2576 +3361 +4218 +3708 +3588 +3788 +2532 +3588 +3775 +191 +2532 +3588 +2588 +4920 +2532 +1994 +2532 +2390 +846 +1161 +3107 +4771 +3588 +3788 +3754 +991 +2532 +3588 +3775 +4771 +3754 +191 +1063 +281 +3004 +4771 +3754 +4183 +4396 +2532 +1342 +1937 +3708 +3739 +991 +2532 +3756 +3708 +2532 +191 +3739 +191 +2532 +3756 +191 +3767 +4771 +191 +3588 +3850 +3588 +4687 +3956 +191 +3588 +3056 +3588 +932 +2532 +3361 +4920 +2064 +3588 +4190 +2532 +726 +3588 +4687 +1722 +3588 +2588 +846 +3778 +1510 +3588 +3844 +3588 +3598 +4687 +1161 +3588 +1909 +3588 +4075 +4687 +3778 +1510 +3588 +3588 +3056 +191 +2532 +2117 +3326 +5479 +2983 +846 +1161 +3756 +2192 +4491 +1722 +1438 +235 +4340 +1510 +1161 +1096 +2347 +2228 +1375 +1223 +3588 +3056 +2117 +4624 +1161 +3588 +1519 +3588 +173 +4687 +3778 +1510 +3588 +3588 +3056 +191 +2532 +3588 +3308 +3588 +165 +2532 +3588 +539 +3588 +4149 +4846 +3588 +3056 +2532 +175 +1096 +1161 +3588 +1909 +3588 +2570 +1093 +4687 +3778 +1510 +3588 +3588 +3056 +191 +2532 +4920 +1211 +3739 +2592 +2532 +3303 +4160 +3739 +1540 +1161 +3739 +1835 +1161 +3739 +5144 +243 +3850 +3908 +846 +3004 +3666 +3588 +932 +3588 +3772 +444 +4687 +2570 +4690 +1722 +3588 +68 +846 +1161 +1722 +3588 +2518 +3588 +444 +2064 +846 +3588 +2190 +2532 +4687 +2215 +303 +3319 +3588 +4621 +2532 +565 +1161 +3753 +985 +3588 +5528 +2532 +2590 +4160 +5119 +5316 +2532 +3588 +2215 +1161 +4334 +3588 +1401 +3588 +3617 +3004 +846 +2962 +3780 +2570 +4690 +4687 +1722 +3588 +4674 +68 +3767 +4159 +2192 +2215 +1161 +3588 +5346 +846 +2190 +444 +3778 +4160 +1161 +3588 +1401 +846 +3004 +3767 +2309 +565 +4816 +846 +1161 +3588 +5346 +3756 +3361 +4218 +4816 +3588 +2215 +1610 +260 +846 +3588 +4621 +863 +4885 +297 +2193 +3588 +2326 +2532 +1722 +2540 +3588 +2326 +2046 +3588 +2327 +4816 +4412 +3588 +2215 +2532 +1210 +846 +1519 +1197 +4314 +3588 +2618 +846 +1161 +3588 +4621 +4863 +1519 +3588 +596 +1473 +243 +3850 +3908 +846 +3004 +3664 +1510 +3588 +932 +3588 +3772 +2848 +4615 +3739 +2983 +444 +4687 +1722 +3588 +68 +846 +3303 +3739 +3398 +1510 +3956 +3588 +4690 +1161 +3752 +837 +3173 +3588 +3001 +1510 +2532 +1096 +1186 +5620 +2064 +3588 +4071 +3588 +3772 +2532 +2681 +1722 +3588 +2798 +846 +243 +3850 +2980 +846 +3664 +1510 +3588 +932 +3588 +3772 +2219 +3739 +2983 +1135 +1470 +1519 +224 +4568 +5140 +2193 +3739 +2220 +3650 +3778 +3956 +2980 +3588 +2424 +1722 +3850 +3588 +3793 +2532 +5565 +3850 +3762 +2980 +846 +3704 +4137 +3588 +2046 +1223 +3588 +4396 +3004 +455 +1722 +3850 +3588 +4750 +1473 +2044 +2928 +575 +2602 +5119 +863 +3588 +3793 +2064 +1519 +3588 +3614 +2532 +4334 +846 +3588 +3101 +846 +3004 +1285 +1473 +3588 +3850 +3588 +2215 +3588 +68 +1161 +3588 +611 +3004 +3588 +4687 +3588 +2570 +4690 +1510 +3588 +5207 +3588 +444 +1161 +3588 +68 +1510 +3588 +2889 +1161 +3588 +2570 +4690 +3778 +1510 +3588 +5207 +3588 +932 +1161 +3588 +2215 +1510 +3588 +5207 +3588 +4190 +1161 +3588 +2190 +3588 +4687 +846 +1510 +3588 +1228 +1161 +3588 +2326 +4930 +165 +1510 +1161 +3588 +2327 +32 +1510 +3767 +5618 +4816 +3588 +2215 +2532 +4442 +2618 +3779 +1510 +1722 +3588 +4930 +3588 +165 +649 +3588 +5207 +3588 +444 +3588 +32 +846 +2532 +4816 +1537 +3588 +932 +846 +3956 +3588 +4625 +2532 +3588 +4160 +3588 +458 +2532 +906 +846 +1519 +3588 +2575 +3588 +4442 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +5119 +3588 +1342 +1584 +1722 +3588 +932 +3588 +3962 +846 +5613 +3588 +2246 +3588 +2192 +3775 +191 +3664 +1510 +3588 +932 +3588 +3772 +2344 +2928 +1722 +3588 +68 +3739 +2147 +444 +2928 +2532 +575 +3588 +5479 +846 +5217 +2532 +4453 +3745 +2192 +2532 +59 +3588 +68 +1565 +3825 +3664 +1510 +3588 +932 +3588 +3772 +1713 +2212 +2570 +3135 +1161 +2147 +1520 +4186 +3135 +565 +4097 +3956 +3745 +2192 +2532 +59 +846 +3825 +3664 +1510 +3588 +932 +3588 +3772 +4522 +906 +1519 +3588 +2281 +2532 +1537 +3956 +1085 +4863 +3739 +3753 +4137 +307 +1909 +3588 +123 +2532 +2523 +4816 +3588 +2570 +1519 +30 +1161 +3588 +4550 +1854 +906 +3779 +1510 +1722 +3588 +4930 +3588 +165 +1831 +3588 +32 +2532 +873 +3588 +4190 +1537 +3319 +3588 +1342 +2532 +906 +846 +1519 +3588 +2575 +3588 +4442 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +4920 +3778 +3956 +3004 +846 +3483 +1161 +3588 +3004 +846 +1223 +3778 +3956 +1122 +3100 +3588 +932 +3588 +3772 +3664 +1510 +444 +3617 +3748 +1544 +1537 +3588 +2344 +846 +2537 +2532 +3820 +2532 +1096 +3753 +5055 +3588 +2424 +3588 +3850 +3778 +3332 +1564 +2532 +2064 +1519 +3588 +3968 +846 +1321 +846 +1722 +3588 +4864 +846 +5620 +1605 +846 +2532 +3004 +4159 +3778 +3588 +4678 +3778 +2532 +3588 +1411 +3756 +3778 +1510 +3588 +3588 +5045 +5207 +3756 +3588 +3384 +846 +3004 +3137 +2532 +3588 +80 +846 +2385 +2532 +2501 +2532 +4613 +2532 +2455 +2532 +3588 +79 +846 +3780 +3956 +4314 +1473 +1510 +3767 +4159 +3778 +3778 +3956 +2532 +4624 +1722 +846 +1161 +3588 +2424 +3004 +846 +3756 +1510 +4396 +820 +1487 +3361 +1722 +3588 +3968 +2532 +1722 +3588 +3614 +846 +2532 +3756 +4160 +1563 +1411 +4183 +1223 +3588 +570 +846 +1722 +1565 +3588 +2540 +191 +2264 +3588 +5076 +3588 +189 +2424 +2532 +3004 +3588 +3816 +846 +3778 +1510 +2491 +3588 +910 +846 +1453 +575 +3588 +3498 +2532 +1223 +3778 +3588 +1411 +1754 +1722 +846 +1063 +3588 +2264 +2902 +3588 +2491 +1210 +2532 +1722 +5438 +659 +1223 +2266 +3588 +1135 +5376 +3588 +80 +846 +1063 +3004 +3588 +2491 +846 +3756 +1832 +4771 +2192 +846 +2532 +2309 +846 +615 +5399 +3588 +3793 +3754 +5613 +4396 +846 +2192 +1161 +1077 +3588 +2264 +1096 +3738 +3588 +2364 +3588 +2266 +1722 +3588 +3319 +2532 +700 +3588 +2264 +3606 +3326 +3727 +3670 +846 +1325 +1437 +3739 +154 +1161 +3588 +4264 +5259 +3588 +3384 +846 +5346 +1325 +1473 +5602 +1909 +4094 +3588 +2776 +2491 +3588 +910 +2532 +3076 +3588 +935 +1223 +3588 +3727 +2532 +3588 +4873 +2753 +1325 +2532 +3992 +607 +2491 +1722 +3588 +5438 +2532 +5342 +3588 +2776 +846 +1909 +4094 +2532 +1325 +3588 +2877 +2532 +5342 +3588 +3384 +846 +2532 +4334 +3588 +3101 +846 +142 +3588 +4430 +2532 +2290 +846 +2532 +2064 +518 +3588 +2424 +1161 +191 +3588 +2424 +402 +1564 +1722 +4143 +1519 +2048 +5117 +2596 +2398 +2532 +191 +3588 +3793 +190 +846 +3979 +575 +3588 +4172 +2532 +1831 +3708 +4183 +3793 +2532 +4697 +1909 +846 +2532 +2323 +3588 +732 +846 +1161 +3798 +1096 +4334 +846 +3588 +3101 +3004 +2048 +1510 +3588 +5117 +2532 +3588 +5610 +2235 +3928 +3767 +630 +3588 +3793 +2443 +565 +1519 +3588 +2968 +59 +1438 +1033 +1161 +3588 +2424 +3004 +846 +3756 +5532 +2192 +565 +1325 +846 +4771 +5315 +1161 +3588 +3004 +846 +3756 +2192 +5602 +1487 +3361 +4002 +740 +2532 +1417 +2486 +1161 +3588 +3004 +5342 +1473 +5602 +846 +2532 +2753 +3588 +3793 +347 +1909 +3588 +5528 +2983 +3588 +4002 +740 +2532 +3588 +1417 +2486 +308 +1519 +3588 +3772 +2127 +2532 +2806 +1325 +3588 +3101 +3588 +740 +1161 +3588 +3101 +3588 +3793 +2532 +5315 +3956 +2532 +5526 +2532 +142 +3588 +4052 +3588 +2801 +1427 +2894 +4134 +1161 +3588 +2068 +1510 +435 +5616 +4000 +5565 +1135 +2532 +3813 +2532 +2112 +315 +3588 +3101 +1684 +1519 +3588 +4143 +2532 +4254 +846 +1519 +3588 +4008 +2193 +3739 +630 +3588 +3793 +2532 +630 +3588 +3793 +305 +1519 +3588 +3735 +2596 +2398 +4336 +1161 +3798 +1096 +3441 +1510 +1563 +1161 +3588 +4143 +2235 +4712 +4183 +575 +3588 +1093 +568 +928 +5259 +3588 +2949 +1063 +1510 +1727 +3588 +417 +1161 +5067 +5438 +3588 +3571 +2064 +4314 +846 +4043 +1909 +3588 +2281 +1161 +3588 +3101 +3708 +846 +1909 +3588 +2281 +4043 +5015 +3004 +3754 +5326 +1510 +2532 +575 +3588 +5401 +2896 +1161 +2117 +2980 +3588 +2424 +846 +3004 +2293 +1473 +1510 +3361 +5399 +1161 +611 +846 +3588 +4074 +3004 +2962 +1487 +4771 +1510 +2753 +1473 +2064 +4314 +4771 +1909 +3588 +5204 +1161 +3588 +3004 +2064 +2532 +2597 +575 +3588 +4143 +4074 +4043 +1909 +3588 +5204 +2532 +2064 +4314 +3588 +2424 +1161 +991 +3588 +417 +5399 +2532 +756 +2670 +2896 +3004 +2962 +4982 +1473 +1161 +2112 +3588 +2424 +1614 +3588 +5495 +1949 +846 +2532 +3004 +846 +3640 +1519 +5101 +1365 +2532 +305 +846 +1519 +3588 +4143 +2869 +3588 +417 +1161 +3588 +1722 +3588 +4143 +4352 +846 +3004 +230 +2316 +5207 +1510 +2532 +1276 +2064 +1909 +3588 +1093 +1519 +1082 +2532 +1921 +846 +3588 +435 +3588 +5117 +1565 +649 +1519 +3650 +3588 +4066 +1565 +2532 +4374 +846 +3956 +3588 +2560 +2192 +2532 +3870 +846 +2443 +3440 +680 +3588 +2899 +3588 +2440 +846 +2532 +3745 +680 +1295 +5119 +4334 +3588 +2424 +575 +2414 +5330 +2532 +1122 +3004 +1223 +5101 +3588 +3101 +4771 +3845 +3588 +3862 +3588 +4245 +1063 +3756 +3538 +3588 +5495 +3752 +740 +2068 +1161 +3588 +611 +3004 +846 +1223 +5101 +2532 +4771 +3845 +3588 +1785 +3588 +2316 +1223 +3588 +3862 +4771 +1063 +3588 +2316 +3004 +5091 +3588 +3962 +2532 +3588 +3384 +2532 +3588 +2551 +3962 +2228 +3384 +2288 +5053 +1161 +4771 +3004 +302 +3739 +3004 +3588 +3962 +2228 +3588 +3384 +1435 +1437 +3739 +1537 +1473 +5623 +3756 +3361 +5091 +3588 +3962 +846 +2228 +3588 +3384 +846 +2532 +208 +3588 +3056 +3588 +2316 +1223 +3588 +3862 +4771 +5273 +2573 +4395 +4012 +4771 +2268 +3004 +3588 +2992 +3778 +3588 +5491 +1473 +5091 +1161 +3588 +2588 +846 +4206 +568 +575 +1473 +1161 +3155 +4576 +1473 +1321 +1319 +1778 +444 +2532 +4341 +3588 +3793 +3004 +846 +191 +2532 +4920 +3756 +3588 +1525 +1519 +3588 +4750 +2840 +3588 +444 +235 +3588 +1607 +1537 +3588 +4750 +3778 +2840 +3588 +444 +5119 +4334 +3588 +3101 +3004 +846 +1492 +3754 +3588 +5330 +191 +3588 +3056 +4624 +1161 +3588 +611 +3004 +3956 +5451 +3739 +3756 +5452 +3588 +3962 +1473 +3588 +3770 +1610 +863 +846 +1510 +5185 +3595 +5185 +1161 +1437 +5185 +5185 +3594 +297 +1519 +999 +4098 +1161 +611 +3588 +4074 +3004 +846 +5419 +1473 +3588 +3850 +1161 +3588 +3004 +188 +2532 +4771 +801 +1510 +3756 +3539 +3754 +3956 +3588 +1531 +1519 +3588 +4750 +1519 +3588 +2836 +5562 +2532 +1519 +856 +1544 +1161 +3588 +1607 +1537 +3588 +4750 +1537 +3588 +2588 +1831 +2548 +2840 +3588 +444 +1063 +1537 +3588 +2588 +1831 +1261 +4190 +5408 +3430 +4202 +2829 +5577 +988 +3778 +1510 +3588 +2840 +3588 +444 +1161 +3588 +449 +5495 +5315 +3756 +2840 +3588 +444 +2532 +1831 +1564 +3588 +2424 +402 +1519 +3588 +3313 +5184 +2532 +4605 +2532 +3708 +1135 +5478 +575 +3588 +3725 +1565 +1831 +2896 +3004 +1653 +1473 +2962 +5207 +1138 +3588 +2364 +1473 +2560 +1139 +1161 +3588 +3756 +611 +846 +3056 +2532 +4334 +3588 +3101 +846 +2065 +846 +3004 +630 +846 +3754 +2896 +3693 +1473 +1161 +3588 +611 +3004 +3756 +649 +1487 +3361 +1519 +3588 +4263 +3588 +622 +3624 +2474 +1161 +3588 +2064 +4352 +846 +3004 +2962 +997 +1473 +1161 +3588 +611 +3004 +3756 +1510 +2570 +2983 +3588 +740 +3588 +5043 +2532 +906 +3588 +2952 +1161 +3588 +3004 +3483 +2962 +1063 +2532 +3588 +2952 +2068 +575 +3588 +5589 +3588 +4098 +575 +3588 +5132 +3588 +2962 +846 +5119 +611 +3588 +2424 +3004 +846 +5599 +1135 +3173 +4771 +3588 +4102 +1096 +4771 +5613 +2309 +2532 +2390 +3588 +2364 +846 +575 +3588 +5610 +1565 +2532 +3327 +1564 +3588 +2424 +2064 +3844 +3588 +2281 +3588 +1056 +2532 +305 +1519 +3588 +3735 +2521 +1563 +2532 +4334 +846 +3793 +4183 +2192 +3326 +1438 +5560 +2948 +5185 +2974 +2532 +2087 +4183 +2532 +4496 +846 +3844 +3588 +4228 +846 +2532 +2323 +846 +5620 +3588 +3793 +2296 +991 +2974 +2980 +2948 +5199 +2532 +5560 +4043 +2532 +5185 +991 +2532 +1392 +3588 +2316 +2474 +1161 +3588 +2424 +4341 +3588 +3101 +846 +3004 +4697 +1909 +3588 +3793 +3754 +2235 +2250 +5140 +4357 +1473 +2532 +3756 +2192 +5101 +5315 +2532 +630 +846 +3523 +3756 +2309 +3361 +4218 +1590 +1722 +3588 +3598 +2532 +3004 +846 +3588 +3101 +4159 +1473 +1722 +2047 +740 +5118 +5620 +5526 +3793 +5118 +2532 +3004 +846 +3588 +2424 +4214 +740 +2192 +1161 +3588 +3004 +2033 +2532 +3641 +2485 +2532 +3853 +3588 +3793 +377 +1909 +3588 +1093 +2983 +3588 +2033 +740 +2532 +3588 +2486 +2532 +2168 +2806 +2532 +1325 +3588 +3101 +1161 +3588 +3101 +3588 +3793 +2532 +5315 +3956 +2532 +5526 +2532 +3588 +4052 +3588 +2801 +2033 +4711 +4134 +142 +1161 +3588 +2068 +1510 +5070 +435 +5565 +1135 +2532 +3813 +2532 +630 +3588 +3793 +1684 +1519 +3588 +4143 +2532 +2064 +1519 +3588 +3725 +3093 +2532 +4334 +3588 +5330 +2532 +4523 +3985 +1905 +846 +4592 +1537 +3588 +3772 +1925 +846 +1161 +3588 +611 +3004 +846 +3798 +1096 +3004 +2105 +1063 +4449 +3588 +3772 +2532 +4404 +4594 +5494 +1063 +4449 +4768 +3588 +3772 +3303 +3588 +4383 +3588 +3772 +1252 +1097 +1161 +3588 +4592 +3588 +2540 +3756 +1410 +1074 +4190 +2532 +3428 +4592 +1934 +2532 +4592 +3756 +1325 +846 +1487 +3361 +3588 +4592 +2495 +2532 +2641 +846 +565 +2532 +3588 +3101 +2064 +1519 +3588 +4008 +1950 +740 +2983 +1161 +3588 +2424 +3004 +846 +3708 +2532 +4337 +575 +3588 +2219 +3588 +5330 +2532 +4523 +1161 +3588 +1260 +1722 +1438 +3004 +3754 +740 +3756 +2983 +1161 +1097 +3588 +2424 +3004 +5101 +1260 +1722 +1438 +3640 +3754 +740 +3756 +2192 +3768 +3539 +3761 +3421 +3588 +4002 +740 +3588 +4000 +2532 +4214 +2894 +2983 +3761 +3588 +2033 +740 +3588 +5070 +2532 +4214 +4711 +2983 +4459 +3756 +3539 +3754 +3756 +4012 +740 +3004 +4771 +1161 +4337 +575 +3588 +2219 +3588 +5330 +2532 +4523 +5119 +4920 +3754 +3756 +3004 +4337 +575 +3588 +2219 +3588 +740 +235 +575 +3588 +1322 +3588 +5330 +2532 +4523 +1161 +3588 +2424 +2064 +1519 +3588 +3313 +2542 +3588 +5376 +2065 +3588 +3101 +846 +3004 +3004 +3588 +444 +5101 +1510 +3588 +5207 +3588 +444 +1161 +3588 +3004 +3303 +3588 +2491 +3588 +910 +1161 +243 +2243 +1161 +2087 +2408 +2228 +1520 +3588 +4396 +3004 +846 +1161 +4771 +5101 +1473 +1510 +3004 +1161 +611 +4613 +4074 +3004 +4771 +1510 +3588 +5547 +3588 +5207 +3588 +2316 +3588 +2198 +1161 +611 +3588 +2424 +3004 +846 +3107 +1510 +4613 +920 +3754 +4561 +2532 +129 +3756 +601 +4771 +235 +3588 +3962 +1473 +3588 +1722 +3588 +3772 +1161 +2504 +4771 +3004 +3754 +4771 +1510 +4074 +2532 +1909 +3778 +3588 +4073 +3618 +1473 +3588 +1577 +2532 +4439 +86 +3756 +2729 +846 +1325 +4771 +3588 +2807 +3588 +932 +3588 +3772 +2532 +1437 +3739 +1210 +1909 +3588 +1093 +1510 +1210 +1722 +3588 +3772 +2532 +1437 +3739 +3089 +1909 +3588 +1093 +1510 +3089 +1722 +3588 +3772 +5119 +2008 +3588 +3101 +2443 +3367 +3004 +3754 +846 +1510 +3588 +5547 +575 +5119 +756 +2424 +5547 +1166 +3588 +3101 +846 +3754 +1163 +846 +1519 +2414 +565 +2532 +4183 +3958 +575 +3588 +4245 +2532 +749 +2532 +1122 +2532 +615 +2532 +3588 +5154 +2250 +1453 +2532 +4355 +846 +3588 +4074 +756 +2008 +846 +3004 +2436 +4771 +2962 +3756 +3361 +1510 +4771 +3778 +1161 +3588 +4762 +3004 +3588 +4074 +5217 +3694 +1473 +4567 +4625 +1473 +1510 +3754 +3756 +5426 +3588 +3588 +2316 +235 +3588 +3588 +444 +5119 +3588 +2424 +3004 +3588 +3101 +846 +1487 +5100 +2309 +3694 +1473 +2064 +533 +1438 +2532 +142 +3588 +4716 +846 +2532 +190 +1473 +1063 +1437 +3739 +2309 +3588 +5590 +846 +4982 +622 +846 +1161 +302 +3739 +622 +3588 +5590 +846 +1752 +1473 +2147 +846 +1063 +5101 +5623 +444 +1437 +3588 +2889 +3650 +2770 +1161 +3588 +5590 +846 +2210 +2228 +5101 +1325 +444 +465 +3588 +5590 +846 +1063 +3195 +3588 +5207 +3588 +444 +2064 +1722 +3588 +1391 +3588 +3962 +846 +3326 +3588 +32 +846 +2532 +5119 +591 +1538 +2596 +3588 +4234 +846 +281 +3004 +4771 +3754 +1510 +5100 +3588 +5602 +2476 +3748 +3756 +3361 +1089 +2288 +2193 +302 +3708 +3588 +5207 +3588 +444 +2064 +1722 +3588 +932 +846 +2532 +3326 +2250 +1803 +3880 +3588 +2424 +3588 +4074 +2532 +2385 +2532 +2491 +3588 +80 +846 +2532 +399 +846 +1519 +3735 +5308 +2596 +2398 +2532 +3339 +1715 +846 +2532 +2989 +3588 +4383 +846 +5613 +3588 +2246 +1161 +3588 +2440 +846 +1096 +3022 +5613 +3588 +5457 +2532 +3708 +3708 +846 +3475 +2532 +2243 +4814 +3326 +846 +1161 +611 +3588 +4074 +3004 +3588 +2424 +2962 +2570 +1510 +1473 +5602 +1510 +1487 +2309 +4160 +5602 +5140 +4633 +4771 +1520 +2532 +3475 +1520 +2532 +2243 +1520 +2089 +846 +2980 +3708 +3507 +5460 +1982 +846 +2532 +3708 +5456 +1537 +3588 +3507 +3004 +3778 +1510 +3588 +5207 +1473 +3588 +27 +1722 +3739 +2106 +191 +846 +2532 +191 +3588 +3101 +4098 +1909 +4383 +846 +2532 +5399 +4970 +2532 +4334 +3588 +2424 +2532 +680 +846 +3004 +1453 +2532 +3361 +5399 +1161 +1869 +3588 +3788 +846 +3762 +3708 +1487 +3361 +846 +2424 +3440 +2532 +2597 +846 +1537 +3588 +3735 +1781 +846 +3588 +2424 +3004 +3367 +3004 +3588 +3705 +2193 +3739 +3588 +5207 +3588 +444 +1537 +3498 +1453 +2532 +1905 +846 +3588 +3101 +3004 +3767 +5101 +3588 +1122 +3004 +3754 +1163 +2243 +2064 +4412 +1161 +3588 +611 +3004 +3303 +2243 +2064 +2532 +600 +3956 +1161 +3004 +4771 +3754 +2243 +2235 +2064 +2532 +3756 +1921 +846 +235 +4160 +1722 +846 +3745 +2309 +3779 +2532 +3588 +5207 +3588 +444 +3195 +3958 +5259 +846 +5119 +4920 +3588 +3101 +3754 +4012 +2491 +3588 +910 +3004 +846 +2532 +2064 +4314 +3588 +3793 +4334 +846 +444 +1120 +846 +2532 +3004 +2962 +1653 +1473 +3588 +5207 +3754 +4583 +2532 +2560 +2192 +1063 +4178 +4098 +1519 +3588 +4442 +2532 +4178 +1519 +3588 +5204 +2532 +4374 +846 +3588 +3101 +4771 +2532 +3756 +1410 +846 +2323 +1161 +611 +3588 +2424 +3004 +5599 +1074 +571 +2532 +1294 +2193 +4219 +3326 +4771 +1510 +2193 +4219 +430 +4771 +5342 +1473 +846 +5602 +2532 +2008 +846 +3588 +2424 +2532 +1831 +575 +846 +3588 +1140 +2532 +2323 +3588 +3816 +575 +3588 +5610 +1565 +5119 +3588 +3101 +4334 +3588 +2424 +2596 +2398 +3004 +1223 +5101 +1473 +3756 +1410 +1544 +846 +1161 +3588 +3004 +846 +1223 +3588 +3640 +4771 +1063 +281 +3004 +4771 +1437 +2192 +4102 +5613 +2848 +4615 +2046 +3588 +3735 +3778 +3327 +1759 +1563 +2532 +3327 +2532 +3762 +101 +4771 +1161 +4962 +846 +1722 +3588 +1056 +3004 +846 +3588 +2424 +3195 +3588 +5207 +3588 +444 +3860 +1519 +5495 +444 +2532 +615 +846 +2532 +3588 +5154 +2250 +1453 +2532 +3076 +4970 +1161 +2064 +846 +1519 +2584 +4334 +3588 +3588 +1323 +2983 +3588 +4074 +2532 +3004 +3756 +3588 +1320 +4771 +5055 +1323 +3004 +3483 +2532 +2064 +1519 +3588 +3614 +4399 +846 +3588 +2424 +3004 +5101 +4771 +1380 +4613 +3588 +935 +3588 +1093 +575 +5101 +2983 +5056 +2228 +2778 +575 +3588 +5207 +846 +2228 +575 +3588 +245 +1161 +3004 +575 +3588 +245 +5346 +846 +3588 +2424 +686 +1658 +1510 +3588 +5207 +1161 +2443 +3361 +4624 +846 +4198 +1519 +2281 +906 +44 +2532 +3588 +305 +4412 +2486 +142 +2532 +455 +3588 +4750 +846 +2147 +4715 +1565 +2983 +1325 +846 +473 +1473 +2532 +4771 +1722 +1565 +3588 +5610 +4334 +3588 +3101 +3588 +2424 +3004 +686 +5101 +3173 +1510 +1722 +3588 +932 +3588 +3772 +2532 +4341 +3813 +2476 +846 +1722 +3319 +846 +2532 +3004 +281 +3004 +4771 +1437 +3361 +4762 +2532 +1096 +5613 +3588 +3813 +3756 +3361 +1525 +1519 +3588 +932 +3588 +3772 +3767 +3748 +5013 +1438 +5613 +3588 +3813 +3778 +3778 +1510 +3588 +3173 +1722 +3588 +932 +3588 +3772 +2532 +1437 +3739 +1209 +1520 +3813 +5108 +1909 +3588 +3686 +1473 +1473 +1209 +1161 +302 +3739 +4624 +1520 +3588 +3398 +3778 +3588 +4100 +1519 +1473 +4851 +846 +2443 +2910 +3458 +3684 +4012 +3588 +5137 +846 +2532 +2670 +1722 +3588 +3989 +3588 +2281 +3759 +3588 +2889 +575 +3588 +4625 +1063 +318 +2064 +3588 +4625 +4133 +3759 +3588 +444 +1223 +3739 +3588 +4625 +2064 +1161 +1487 +3588 +5495 +4771 +2228 +3588 +4228 +4771 +4624 +4771 +1581 +846 +2532 +906 +575 +4771 +2570 +4771 +1510 +1525 +1519 +3588 +2222 +2948 +2228 +5560 +2228 +1417 +5495 +2228 +1417 +4228 +2192 +906 +1519 +3588 +4442 +3588 +166 +2532 +1487 +3588 +3788 +4771 +4624 +4771 +1807 +846 +2532 +906 +575 +4771 +2570 +4771 +1510 +3442 +1519 +3588 +2222 +1525 +2228 +1417 +3788 +2192 +906 +1519 +3588 +1067 +3588 +4442 +3708 +3361 +2706 +1520 +3588 +3398 +3778 +1063 +3004 +4771 +3754 +3588 +32 +846 +1722 +3772 +1223 +3956 +991 +3588 +4383 +3588 +3962 +1473 +3588 +1722 +3772 +5101 +4771 +1380 +1437 +1096 +5100 +444 +1540 +4263 +2532 +4105 +1520 +1537 +846 +3780 +863 +3588 +1768 +1767 +1909 +3588 +3735 +2532 +4198 +2212 +3588 +4105 +2532 +1437 +1096 +2147 +846 +281 +3004 +4771 +3754 +5463 +1909 +846 +3123 +2228 +1909 +3588 +1768 +1767 +3588 +3361 +4105 +3779 +3756 +1510 +2307 +1715 +3588 +3962 +4771 +3588 +1722 +3772 +2443 +622 +1520 +3588 +3398 +3778 +1161 +1437 +264 +3588 +80 +4771 +5217 +1651 +846 +3342 +4771 +2532 +846 +3441 +1437 +4771 +191 +2770 +3588 +80 +4771 +1161 +1437 +3361 +191 +3880 +3326 +4771 +2089 +1520 +2228 +1417 +2443 +1909 +4750 +1417 +2228 +5140 +3144 +2476 +3956 +4487 +1161 +1437 +3878 +846 +3004 +3588 +1577 +1161 +1437 +2532 +3588 +1577 +3878 +1510 +4771 +5618 +3588 +1482 +2532 +3588 +5057 +281 +3004 +4771 +1437 +3745 +1210 +1909 +3588 +1093 +1510 +1210 +1722 +3772 +2532 +1437 +3745 +3089 +1909 +3588 +1093 +1510 +3089 +1722 +3772 +281 +3825 +3004 +4771 +3754 +1437 +1417 +1537 +4771 +4856 +1909 +3588 +1093 +4012 +3956 +4229 +1437 +3739 +154 +1096 +846 +3844 +3588 +3962 +1473 +3588 +1722 +3772 +1063 +3757 +1510 +4863 +1417 +2228 +5140 +1519 +3588 +1699 +3686 +1563 +1510 +1722 +3319 +846 +5119 +4334 +3588 +4074 +3004 +846 +2962 +4212 +264 +1519 +1473 +3588 +80 +1473 +2532 +863 +846 +2193 +2034 +3004 +846 +3588 +2424 +3756 +3004 +4771 +2193 +2034 +235 +2193 +1441 +2033 +1223 +3778 +3666 +3588 +932 +3588 +3772 +444 +935 +3739 +2309 +4868 +3056 +3326 +3588 +1401 +846 +1161 +756 +846 +4868 +4317 +846 +1520 +3781 +3463 +5007 +1161 +3361 +2192 +846 +591 +2753 +3588 +2962 +4097 +846 +2532 +3588 +1135 +2532 +3588 +5043 +2532 +3956 +3745 +2192 +2532 +591 +3767 +4098 +3588 +1401 +4352 +846 +3004 +3114 +1909 +1473 +2532 +3956 +591 +4771 +1161 +4697 +3588 +2962 +3588 +1401 +1565 +630 +846 +2532 +3588 +1156 +863 +846 +1161 +1831 +3588 +1401 +1565 +2147 +1520 +3588 +4889 +846 +3739 +3784 +846 +1540 +1220 +2532 +2902 +846 +4155 +3004 +591 +1487 +5100 +3784 +3767 +4098 +3588 +4889 +846 +3870 +846 +3004 +3114 +1909 +1473 +2532 +591 +4771 +1161 +3588 +3756 +2309 +235 +565 +906 +846 +1519 +5438 +2193 +591 +3588 +3784 +3767 +3588 +4889 +846 +3708 +3588 +1096 +3076 +4970 +2532 +2064 +1285 +3588 +2962 +1438 +3956 +3588 +1096 +5119 +4341 +846 +3588 +2962 +846 +3004 +846 +1401 +4190 +3956 +3588 +3782 +1565 +863 +4771 +1893 +3870 +1473 +3756 +1163 +2532 +4771 +1653 +3588 +4889 +4771 +5613 +2504 +4771 +1653 +2532 +3710 +3588 +2962 +846 +3860 +846 +3588 +930 +2193 +3739 +591 +3956 +3588 +3784 +846 +3779 +2532 +3588 +3962 +1473 +3588 +3770 +4160 +4771 +1437 +3361 +863 +1538 +3588 +80 +846 +575 +3588 +2588 +4771 +2532 +1096 +3753 +5055 +3588 +2424 +3588 +3056 +3778 +3332 +575 +3588 +1056 +2532 +2064 +1519 +3588 +3725 +3588 +2449 +4008 +3588 +2446 +2532 +190 +846 +3793 +4183 +2532 +2323 +846 +1563 +2532 +4334 +846 +5330 +3985 +846 +2532 +3004 +1487 +1832 +630 +3588 +1135 +846 +2596 +3956 +156 +1161 +3588 +611 +3004 +3756 +314 +3754 +3588 +2936 +575 +746 +730 +2532 +2338 +4160 +846 +2532 +3004 +1752 +3778 +2641 +444 +3588 +3962 +2532 +3588 +3384 +2532 +2853 +3588 +1135 +846 +2532 +1510 +3588 +1417 +1519 +4561 +1520 +5620 +3765 +1510 +1417 +235 +4561 +1520 +3767 +3739 +3588 +2316 +4801 +444 +3361 +5563 +3004 +846 +3767 +5101 +3475 +1781 +1325 +975 +647 +2532 +630 +3004 +846 +3754 +3475 +4314 +3588 +4641 +4771 +2010 +4771 +630 +3588 +1135 +4771 +1161 +575 +746 +3756 +1096 +3779 +1161 +3004 +4771 +3754 +302 +3739 +630 +3588 +1135 +846 +3361 +1909 +4202 +2532 +1060 +243 +3429 +3004 +846 +3588 +3101 +1487 +3779 +1510 +3588 +156 +3588 +444 +3326 +3588 +1135 +3756 +4851 +1060 +1161 +3588 +3004 +846 +3756 +3956 +5562 +3588 +3056 +3778 +235 +3739 +1325 +1063 +1510 +2135 +3748 +1537 +2836 +3384 +1080 +3779 +2532 +1510 +2135 +3748 +2134 +5259 +3588 +444 +2532 +1510 +2135 +3748 +2134 +1438 +1223 +3588 +932 +3588 +3772 +3588 +1410 +5562 +5562 +5119 +4374 +846 +3813 +2443 +3588 +5495 +2007 +846 +2532 +4336 +1161 +3588 +3101 +2008 +846 +1161 +3588 +2424 +3004 +863 +3588 +3813 +2532 +3361 +2967 +846 +2064 +4314 +1473 +1063 +3588 +5108 +1510 +3588 +932 +3588 +3772 +2532 +2007 +3588 +5495 +846 +4198 +1564 +2532 +3708 +1520 +4334 +846 +3004 +1320 +5101 +18 +4160 +2443 +2192 +2222 +166 +1161 +3588 +3004 +846 +5101 +1473 +2065 +4012 +3588 +18 +1520 +1510 +3588 +18 +1161 +1487 +2309 +1519 +3588 +2222 +1525 +5083 +3588 +1785 +3004 +846 +4169 +1161 +3588 +2424 +5346 +3588 +3756 +5407 +3756 +3431 +3756 +2813 +3756 +5576 +5091 +3588 +3962 +2532 +3588 +3384 +2532 +25 +3588 +4139 +4771 +5613 +4572 +3004 +846 +3588 +3495 +3778 +3956 +5442 +5101 +2089 +5302 +5346 +846 +3588 +2424 +1487 +2309 +5046 +1510 +5217 +4453 +4771 +3588 +5225 +2532 +1325 +4434 +2532 +2192 +2344 +1722 +3772 +2532 +1204 +190 +1473 +1161 +3588 +3495 +191 +3588 +3056 +565 +3076 +1063 +1510 +2192 +2933 +4183 +1161 +3588 +2424 +3004 +3588 +3101 +846 +281 +3004 +4771 +3754 +4145 +1423 +1525 +1519 +3588 +932 +3588 +3772 +1161 +3825 +3004 +4771 +2123 +1510 +2574 +1223 +5169 +4476 +1525 +2228 +4145 +1519 +3588 +932 +3588 +2316 +1161 +191 +3588 +3101 +1605 +4970 +3004 +686 +5101 +1410 +4982 +1161 +1689 +3588 +2424 +3004 +846 +3844 +444 +3778 +102 +1510 +1161 +3844 +2316 +3956 +1415 +5119 +611 +3588 +4074 +3004 +846 +3708 +1473 +863 +3956 +2532 +190 +4771 +686 +5101 +1510 +1473 +1161 +3588 +2424 +3004 +846 +281 +3004 +4771 +3754 +4771 +3588 +190 +1473 +1722 +3588 +3824 +3752 +2523 +3588 +5207 +3588 +444 +1909 +2362 +1391 +846 +2521 +2532 +846 +1909 +1427 +2362 +2919 +3588 +1427 +5443 +3588 +2474 +2532 +3956 +3748 +863 +3614 +2228 +80 +2228 +79 +2228 +3962 +2228 +3384 +2228 +5043 +2228 +68 +1752 +3588 +1699 +3686 +4179 +2983 +2532 +2222 +166 +2816 +1161 +4183 +4413 +1510 +2078 +2532 +2078 +4413 +1063 +3664 +1510 +3588 +932 +3588 +3772 +444 +3617 +3748 +1831 +260 +4404 +3409 +2040 +1519 +3588 +290 +846 +1161 +4856 +3326 +3588 +2040 +1537 +1220 +3588 +2250 +649 +846 +1519 +3588 +290 +846 +2532 +1831 +4012 +5154 +5610 +3708 +243 +2476 +1722 +3588 +58 +692 +2532 +1565 +3004 +5217 +2532 +4771 +1519 +3588 +290 +2532 +1437 +3739 +1510 +1342 +1325 +4771 +1161 +3588 +565 +1161 +3825 +1831 +4012 +1623 +2532 +1766 +5610 +4160 +5615 +1161 +4012 +3588 +1734 +1831 +2147 +243 +2476 +2532 +3004 +846 +5101 +5602 +2476 +3650 +3588 +2250 +692 +3004 +846 +3754 +3762 +1473 +3409 +3004 +846 +5217 +2532 +4771 +1519 +3588 +290 +1161 +3798 +1096 +3004 +3588 +2962 +3588 +290 +3588 +2012 +846 +2564 +3588 +2040 +2532 +591 +3588 +3408 +756 +575 +3588 +2078 +2193 +3588 +4413 +1161 +2064 +3588 +4012 +3588 +1734 +5610 +2983 +303 +1220 +2532 +2064 +3588 +4413 +3543 +3754 +4119 +2983 +2532 +2983 +3588 +303 +1220 +2532 +846 +1161 +2983 +1111 +2596 +3588 +3617 +3004 +3778 +3588 +2078 +1520 +5610 +4160 +2532 +2470 +846 +4160 +1473 +3588 +941 +3588 +922 +3588 +2250 +2532 +3588 +2742 +1161 +3588 +611 +1520 +846 +3004 +2083 +3756 +91 +4771 +3780 +1220 +4856 +1473 +142 +3588 +4674 +2532 +5217 +1161 +2309 +3778 +3588 +2078 +1325 +5613 +2532 +4771 +3756 +1832 +1473 +3739 +2309 +4160 +1722 +3588 +1699 +2228 +3588 +3788 +4771 +4190 +1510 +3754 +1473 +18 +1510 +3779 +1510 +3588 +2078 +4413 +2532 +3588 +4413 +2078 +1161 +2424 +3195 +305 +1519 +2414 +3880 +3588 +1427 +2596 +2398 +2532 +1722 +3588 +3598 +3004 +846 +3708 +305 +1519 +2414 +2532 +3588 +5207 +3588 +444 +3860 +3588 +749 +2532 +1122 +2532 +2632 +846 +1519 +2288 +2532 +3860 +846 +3588 +1484 +1519 +3588 +1702 +2532 +3146 +2532 +4717 +2532 +3588 +5154 +2250 +1453 +5119 +4334 +846 +3588 +3384 +3588 +5207 +2199 +3326 +3588 +5207 +846 +4352 +2532 +154 +5100 +575 +846 +1161 +3588 +3004 +846 +5101 +2309 +3004 +846 +3004 +2443 +2523 +3778 +3588 +1417 +5207 +1473 +1520 +1537 +1188 +2532 +1520 +1537 +2176 +4771 +1722 +3588 +932 +4771 +1161 +611 +3588 +2424 +3004 +3756 +1492 +5101 +154 +1410 +4095 +3588 +4221 +3739 +4095 +1473 +3195 +3004 +846 +1410 +3004 +846 +3303 +3588 +4221 +1473 +4095 +1161 +3588 +2523 +1537 +1188 +1473 +2532 +1537 +2176 +3756 +1510 +1699 +3778 +1325 +235 +3739 +2090 +5259 +3588 +3962 +1473 +2532 +191 +3588 +1176 +23 +4012 +3588 +1417 +80 +1161 +3588 +2424 +4341 +846 +3004 +1492 +3754 +3588 +758 +3588 +1484 +2634 +846 +2532 +3588 +3173 +2715 +846 +3756 +3779 +1510 +1722 +4771 +235 +1437 +3739 +2309 +1722 +4771 +3173 +1096 +1510 +4771 +1249 +2532 +302 +3739 +2309 +1722 +4771 +1510 +4413 +1510 +4771 +1401 +5618 +3588 +5207 +3588 +444 +3756 +2064 +1247 +235 +1247 +2532 +1325 +3588 +5590 +846 +3083 +473 +4183 +2532 +1607 +846 +575 +2410 +190 +846 +3793 +4183 +2532 +3708 +1417 +5185 +2521 +3844 +3588 +3598 +191 +3754 +2424 +3855 +2896 +3004 +1653 +1473 +2962 +5207 +1138 +1161 +3588 +3793 +2008 +846 +2443 +4623 +1161 +3588 +3173 +2896 +3004 +1653 +1473 +2962 +5207 +1138 +2532 +2476 +3588 +2424 +5455 +846 +2532 +3004 +2309 +5101 +4160 +4771 +3004 +846 +2962 +2443 +455 +3588 +3788 +1473 +1161 +4697 +3588 +2424 +680 +3588 +3659 +846 +2532 +2112 +308 +2532 +190 +846 +2532 +3753 +1448 +1519 +2414 +2532 +2064 +1519 +967 +1519 +3588 +3735 +3588 +1636 +5119 +2424 +649 +1417 +3101 +3004 +846 +4198 +1519 +3588 +2968 +3588 +2713 +4771 +2532 +2117 +2147 +3688 +1210 +2532 +4454 +3326 +846 +3089 +71 +1473 +2532 +1437 +5100 +4771 +3004 +5100 +2046 +3754 +3588 +2962 +846 +5532 +2192 +1161 +2117 +649 +846 +1161 +3778 +1096 +2443 +4137 +3588 +2046 +1223 +3588 +4396 +3004 +3004 +3588 +2364 +4622 +3708 +3588 +935 +4771 +2064 +4771 +4239 +2532 +1910 +1909 +3688 +2532 +1909 +4454 +5207 +5268 +1161 +3588 +3101 +4198 +2532 +4160 +2531 +4929 +846 +3588 +2424 +71 +3588 +3688 +2532 +3588 +4454 +2532 +2007 +1909 +846 +3588 +2440 +2532 +1940 +1883 +846 +1161 +3588 +4118 +3793 +4766 +1438 +3588 +2440 +1722 +3588 +3598 +1161 +243 +2875 +2798 +575 +3588 +1186 +2532 +4766 +1722 +3588 +3598 +1161 +3588 +3793 +3588 +4254 +846 +2532 +3588 +190 +2896 +3004 +5614 +3588 +5207 +1138 +2127 +3588 +2064 +1722 +3686 +2962 +5614 +1722 +3588 +5310 +2532 +1525 +846 +1519 +2414 +4579 +3956 +3588 +4172 +3004 +5101 +1510 +3778 +1161 +3588 +3793 +3004 +3778 +1510 +3588 +4396 +2424 +3588 +575 +3478 +3588 +1056 +2532 +1525 +2424 +1519 +3588 +2411 +2532 +1544 +3956 +3588 +4453 +2532 +59 +1722 +3588 +2411 +2532 +2690 +3588 +5132 +3588 +2855 +2532 +3588 +2515 +3588 +4453 +3588 +4058 +2532 +3004 +846 +1125 +3588 +3624 +1473 +3624 +4335 +2564 +1161 +4771 +846 +4160 +4693 +3027 +2532 +4334 +846 +5185 +2532 +5560 +1722 +3588 +2411 +2532 +2323 +846 +1161 +3588 +749 +2532 +3588 +1122 +3708 +3588 +2297 +3739 +4160 +2532 +3588 +3816 +3588 +2896 +1722 +3588 +2411 +2532 +3004 +5614 +3588 +5207 +1138 +23 +2532 +3004 +846 +191 +5101 +3778 +3004 +1161 +3588 +2424 +3004 +846 +3483 +3763 +314 +3754 +1537 +4750 +3516 +2532 +2337 +2675 +136 +2532 +2641 +846 +1831 +1854 +3588 +4172 +1519 +963 +2532 +835 +1563 +1161 +4404 +1877 +1519 +3588 +4172 +3983 +2532 +3708 +4808 +1520 +1909 +3588 +3598 +2064 +1909 +846 +2532 +3762 +2147 +1722 +846 +1487 +3361 +5444 +3440 +2532 +3004 +846 +3756 +3371 +1537 +4771 +2590 +1096 +1519 +3588 +165 +2532 +3583 +3916 +3588 +4808 +2532 +3708 +3588 +3101 +2296 +3004 +4459 +3916 +3583 +3588 +4808 +1161 +611 +3588 +2424 +3004 +846 +281 +3004 +4771 +1437 +2192 +4102 +2532 +3361 +1252 +3756 +3440 +3588 +3588 +4808 +4160 +235 +2579 +3588 +3735 +3778 +3004 +142 +2532 +906 +1519 +3588 +2281 +1096 +2532 +3956 +302 +3745 +154 +1722 +3588 +4335 +4100 +2983 +2532 +2064 +846 +1519 +3588 +2411 +4334 +846 +1321 +3588 +749 +2532 +3588 +4245 +3588 +2992 +3004 +1722 +4169 +1849 +3778 +4160 +2532 +5101 +4771 +1325 +3588 +1849 +3778 +1161 +611 +3588 +2424 +3004 +846 +2065 +4771 +2504 +3056 +1520 +1437 +3739 +3004 +1473 +2504 +4771 +2046 +1722 +4169 +1849 +3778 +4160 +3588 +908 +3588 +2491 +4159 +1510 +1537 +3772 +2228 +1537 +444 +1161 +3588 +1260 +1722 +1438 +3004 +1437 +3004 +1537 +3772 +2046 +1473 +3767 +1223 +5101 +3756 +4100 +846 +1161 +1437 +3004 +1537 +444 +5399 +3588 +3793 +1063 +3956 +5613 +4396 +2192 +3588 +2491 +2532 +611 +3588 +2424 +3004 +3756 +1492 +5346 +846 +2532 +846 +3761 +1473 +3004 +4771 +1722 +4169 +1849 +3778 +4160 +1161 +5101 +4771 +1380 +444 +2192 +5043 +1417 +4334 +3588 +4413 +3004 +5043 +5217 +4594 +2038 +1722 +3588 +290 +1161 +3588 +611 +3004 +1473 +2962 +2532 +3756 +565 +1161 +4334 +3588 +1208 +3004 +5615 +1161 +3588 +611 +3004 +3756 +2309 +5305 +3338 +565 +5101 +1537 +3588 +1417 +4160 +3588 +2307 +3588 +3962 +3004 +3588 +5306 +3004 +846 +3588 +2424 +281 +3004 +4771 +3754 +3588 +5057 +2532 +3588 +4204 +4254 +4771 +1519 +3588 +932 +3588 +2316 +1063 +2064 +2491 +4314 +4771 +1722 +3598 +1343 +2532 +3756 +4100 +846 +1161 +3588 +5057 +2532 +3588 +4204 +4100 +846 +1161 +4771 +3708 +3761 +3338 +5305 +3588 +4100 +846 +243 +3850 +191 +444 +1510 +3617 +3748 +5452 +290 +2532 +5418 +846 +4060 +2532 +3736 +1722 +846 +3025 +2532 +3618 +4444 +2532 +1554 +846 +1092 +2532 +589 +1161 +3753 +1448 +3588 +2540 +3588 +2590 +649 +3588 +1401 +846 +4314 +3588 +1092 +2983 +3588 +2590 +846 +2532 +2983 +3588 +1092 +3588 +1401 +846 +3303 +3739 +1194 +1161 +3739 +615 +1161 +3739 +3036 +3825 +649 +243 +1401 +4119 +3588 +4413 +2532 +4160 +846 +5615 +1161 +5305 +649 +4314 +846 +3588 +5207 +846 +3004 +1788 +3588 +5207 +1473 +1161 +3588 +1092 +3708 +3588 +5207 +3004 +1722 +1438 +3778 +1510 +3588 +2818 +1205 +615 +846 +2532 +2192 +3588 +2817 +846 +2532 +2983 +846 +1544 +1854 +3588 +290 +2532 +615 +3767 +3752 +2064 +3588 +2962 +3588 +290 +5101 +4160 +3588 +1092 +1565 +3004 +846 +2556 +2560 +622 +846 +2532 +3588 +290 +1554 +243 +1092 +3748 +591 +846 +3588 +2590 +1722 +3588 +2540 +846 +3004 +846 +3588 +2424 +3763 +314 +1722 +3588 +1124 +3037 +3739 +593 +3588 +3618 +3778 +1096 +1519 +2776 +1137 +3844 +2962 +1096 +3778 +2532 +1510 +2298 +1722 +3788 +1473 +1223 +3778 +3004 +4771 +3754 +142 +575 +4771 +3588 +932 +3588 +2316 +2532 +1325 +1484 +4160 +3588 +2590 +846 +2532 +3588 +4098 +1909 +3588 +3037 +3778 +4917 +1161 +1909 +302 +3739 +4098 +3039 +846 +2532 +3588 +749 +2532 +3588 +5330 +191 +3588 +3850 +846 +1097 +3754 +4012 +846 +3004 +2532 +2212 +846 +2902 +5399 +3588 +3793 +1893 +1519 +4396 +846 +2192 +2532 +611 +3588 +2424 +3825 +3004 +1722 +3850 +846 +3004 +3666 +3588 +932 +3588 +3772 +444 +935 +3748 +4160 +1062 +3588 +5207 +846 +2532 +649 +3588 +1401 +846 +2564 +3588 +2564 +1519 +3588 +1062 +2532 +3756 +2309 +2064 +3825 +649 +243 +1401 +3004 +3004 +3588 +2564 +3708 +3588 +712 +1473 +2090 +3588 +5022 +1473 +2532 +3588 +4619 +2380 +2532 +3956 +2092 +1205 +1519 +3588 +1062 +1161 +3588 +272 +565 +3303 +3739 +1519 +3588 +2398 +68 +1161 +3739 +1909 +3588 +1711 +846 +1161 +3588 +3062 +2902 +3588 +1401 +846 +5195 +2532 +615 +1161 +3588 +935 +3710 +2532 +3992 +3588 +4753 +846 +622 +3588 +5406 +1565 +2532 +3588 +4172 +846 +1714 +5119 +3004 +3588 +1401 +846 +3303 +3588 +1062 +2092 +1510 +1161 +3588 +2564 +3756 +1510 +514 +3767 +4198 +1909 +3588 +1327 +3588 +3598 +2532 +1437 +3745 +2147 +2564 +1519 +3588 +1062 +2532 +3588 +1401 +1565 +1831 +1519 +3588 +3598 +4863 +3956 +3739 +2147 +5037 +4190 +2532 +18 +2532 +4130 +3588 +3567 +345 +1161 +3588 +935 +1525 +2300 +3588 +345 +3708 +1563 +444 +3756 +1746 +1742 +1062 +2532 +3004 +846 +2083 +4459 +1525 +5602 +3361 +2192 +1742 +1062 +1161 +3588 +5392 +5119 +3588 +935 +3004 +3588 +1249 +1210 +846 +4228 +2532 +5495 +1544 +846 +1519 +3588 +4655 +3588 +1857 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +1063 +4183 +1510 +2822 +1161 +3641 +1588 +5119 +4198 +3588 +5330 +4824 +2983 +3704 +846 +3802 +1722 +3056 +2532 +649 +846 +3588 +3101 +846 +3326 +3588 +2265 +3004 +1320 +1492 +3754 +227 +1510 +2532 +3588 +3598 +3588 +2316 +1722 +225 +1321 +2532 +3756 +3199 +4771 +4012 +3762 +1063 +3756 +991 +1519 +4383 +444 +3767 +3004 +1473 +5101 +4771 +1380 +1832 +1325 +2778 +2541 +2228 +3756 +1161 +3588 +2424 +1097 +3588 +4189 +846 +3004 +5101 +1473 +3985 +5273 +1925 +1473 +3588 +3546 +3588 +2778 +1161 +3588 +4374 +846 +1220 +2532 +3004 +846 +5101 +3588 +1504 +3778 +2532 +3588 +1923 +3004 +2541 +5119 +3004 +846 +3767 +591 +3588 +2541 +2541 +2532 +3588 +3588 +2316 +3588 +2316 +2532 +191 +2296 +2532 +863 +846 +565 +1722 +1565 +3588 +2250 +4334 +846 +4523 +3004 +3361 +1510 +386 +2532 +1905 +846 +3004 +1320 +3475 +3004 +1437 +5100 +599 +3361 +2192 +5043 +1918 +3588 +80 +846 +3588 +1135 +846 +2532 +450 +4690 +3588 +80 +846 +1161 +1510 +3844 +1473 +2033 +80 +2532 +3588 +4413 +1060 +5053 +2532 +3361 +2192 +4690 +863 +3588 +1135 +846 +3588 +80 +846 +3668 +2532 +3588 +1208 +2532 +3588 +5154 +2193 +3588 +2033 +1161 +5305 +3956 +599 +3588 +1135 +3767 +1722 +3588 +386 +5101 +3588 +2033 +1135 +1510 +1063 +3956 +2192 +846 +1161 +611 +3588 +2424 +3004 +846 +4105 +3361 +1492 +3588 +1124 +3366 +3588 +1411 +3588 +2316 +1063 +1722 +3588 +386 +3777 +1060 +3777 +1061 +235 +5613 +32 +1722 +3588 +3772 +1510 +1161 +4012 +3588 +386 +3588 +3498 +3756 +314 +3588 +2046 +4771 +5259 +3588 +2316 +3004 +1473 +1510 +3588 +2316 +11 +2532 +3588 +2316 +2464 +2532 +3588 +2316 +2384 +3756 +1510 +3588 +2316 +3498 +235 +2198 +2532 +191 +3588 +3793 +1605 +1909 +3588 +1322 +846 +1161 +3588 +5330 +191 +3754 +5392 +3588 +4523 +4863 +1909 +3588 +846 +2532 +1905 +1520 +1537 +846 +3544 +3985 +846 +1320 +4169 +1785 +3173 +1722 +3588 +3551 +1161 +3588 +5346 +846 +25 +2962 +3588 +2316 +4771 +1722 +3650 +3588 +2588 +4771 +2532 +1722 +3650 +3588 +5590 +4771 +2532 +1722 +3650 +3588 +1271 +4771 +3778 +1510 +3588 +3173 +2532 +4413 +1785 +1208 +3664 +846 +25 +3588 +4139 +4771 +5613 +4572 +1722 +3778 +3588 +1417 +1785 +3650 +3588 +3551 +2910 +2532 +3588 +4396 +1161 +4863 +3588 +5330 +1905 +846 +3588 +2424 +3004 +5101 +4771 +1380 +4012 +3588 +5547 +5101 +5207 +1510 +3004 +846 +3588 +1138 +3004 +846 +3767 +4459 +1138 +1722 +4151 +2564 +846 +2962 +3004 +3004 +2962 +3588 +2962 +1473 +2521 +1537 +1188 +1473 +2193 +302 +5087 +3588 +2190 +4771 +5270 +3588 +4228 +4771 +3767 +1487 +1138 +2564 +846 +2962 +4459 +5207 +846 +1510 +2532 +3762 +1410 +611 +846 +3056 +3761 +5111 +5100 +575 +1565 +3588 +2250 +1905 +846 +3765 +5119 +3588 +2424 +2980 +3588 +3793 +2532 +3588 +3101 +846 +3004 +1909 +3588 +3475 +2515 +2523 +3588 +1122 +2532 +3588 +5330 +3767 +3956 +1437 +3745 +3004 +4771 +4160 +2532 +5083 +1161 +2596 +3588 +2041 +846 +3361 +4160 +1063 +3004 +2532 +3756 +4160 +1161 +1195 +5413 +926 +2532 +2007 +1909 +3588 +5606 +3588 +444 +1161 +846 +3588 +1147 +846 +3756 +2309 +2795 +846 +1161 +3956 +3588 +2041 +846 +4160 +4314 +3588 +2300 +3588 +444 +1063 +4115 +3588 +5440 +846 +2532 +3170 +3588 +2899 +1161 +5368 +3588 +4411 +1722 +3588 +1173 +2532 +3588 +4410 +1722 +3588 +4864 +2532 +3588 +783 +1722 +3588 +58 +2532 +2564 +5259 +3588 +444 +4461 +1161 +4771 +3361 +2564 +4461 +1063 +1520 +1510 +4771 +3588 +1320 +1161 +3956 +4771 +80 +1510 +2532 +3962 +4771 +3361 +2564 +1909 +3588 +1093 +1063 +1520 +1510 +4771 +3588 +3962 +3588 +3770 +3366 +2564 +2519 +3754 +2519 +4771 +1510 +1520 +3588 +5547 +1161 +3588 +3173 +4771 +1510 +4771 +1249 +1161 +3748 +5312 +1438 +5013 +2532 +3748 +5013 +1438 +5312 +1161 +3759 +4771 +1122 +2532 +5330 +5273 +3754 +2808 +3588 +932 +3588 +3772 +1715 +3588 +444 +1063 +4771 +3756 +1525 +3761 +3588 +1525 +1525 +863 +3759 +4771 +1122 +2532 +5330 +5273 +3754 +4013 +3588 +2281 +2532 +3588 +3584 +4160 +1520 +4339 +2532 +3752 +1096 +4160 +846 +5207 +1067 +1362 +4771 +3759 +4771 +3595 +5185 +3588 +3004 +302 +3739 +3660 +1722 +3588 +3485 +3762 +1510 +1161 +302 +3739 +3660 +1722 +3588 +5557 +3588 +3485 +3784 +3474 +2532 +5185 +1063 +5101 +3173 +1510 +3588 +5557 +2228 +3588 +3485 +3588 +37 +3588 +5557 +2532 +302 +3739 +3660 +1722 +3588 +2379 +3762 +1510 +1161 +302 +3739 +3660 +1722 +3588 +1435 +3588 +1883 +846 +3784 +5185 +1063 +5101 +3173 +3588 +1435 +2228 +3588 +2379 +3588 +37 +3588 +1435 +3767 +3588 +3660 +1722 +3588 +2379 +3660 +1722 +846 +2532 +1722 +3956 +3588 +1883 +846 +2532 +3588 +3660 +1722 +3588 +3485 +3660 +1722 +846 +2532 +1722 +3588 +2730 +846 +2532 +3588 +3660 +1722 +3588 +3772 +3660 +1722 +3588 +2362 +3588 +2316 +2532 +1722 +3588 +2521 +1883 +846 +3759 +4771 +1122 +2532 +5330 +5273 +3754 +586 +3588 +2238 +2532 +3588 +432 +2532 +3588 +2951 +2532 +863 +3588 +926 +3588 +3551 +3588 +2920 +2532 +3588 +1656 +2532 +3588 +4102 +1161 +1163 +3778 +4160 +2548 +3361 +863 +3595 +5185 +3588 +1368 +3588 +2971 +1161 +3588 +2574 +2666 +3759 +4771 +1122 +2532 +5330 +5273 +3754 +2511 +3588 +1855 +3588 +4221 +2532 +3588 +3953 +1161 +2081 +1073 +1537 +724 +2532 +192 +5330 +5185 +2511 +4412 +3588 +1787 +3588 +4221 +2443 +1096 +2532 +3588 +1622 +846 +2513 +3759 +4771 +1122 +2532 +5330 +5273 +3754 +3945 +5028 +2867 +3303 +3748 +1855 +5316 +5611 +1161 +2081 +1073 +3747 +3498 +2532 +3956 +167 +3779 +2532 +4771 +3303 +1855 +5316 +3588 +444 +1342 +1161 +2081 +1510 +3324 +5272 +2532 +458 +3759 +4771 +1122 +2532 +5330 +5273 +3754 +3618 +3588 +5028 +3588 +4396 +2532 +2885 +3588 +3419 +3588 +1342 +2532 +3004 +1487 +1510 +1722 +3588 +2250 +3588 +3962 +1473 +302 +3756 +1510 +846 +2844 +1722 +3588 +129 +3588 +4396 +5620 +3140 +1438 +3754 +1510 +5207 +3588 +5407 +3588 +4396 +2532 +4771 +4137 +3588 +3358 +3588 +3962 +4771 +3789 +1081 +2191 +4459 +5343 +575 +3588 +2920 +3588 +1067 +3708 +1223 +3778 +1473 +649 +4314 +4771 +4396 +2532 +4680 +2532 +1122 +1537 +846 +615 +2532 +4717 +2532 +1537 +846 +3146 +1722 +3588 +4864 +4771 +2532 +1377 +575 +4172 +1519 +4172 +3704 +2064 +1909 +4771 +3956 +129 +1342 +1632 +1909 +3588 +1093 +575 +3588 +129 +6 +3588 +1342 +2193 +3588 +129 +2197 +5207 +914 +3739 +5407 +3342 +3588 +3485 +2532 +3588 +2379 +281 +3004 +4771 +2240 +3778 +3956 +1909 +3588 +1074 +3778 +2419 +2419 +3588 +615 +3588 +4396 +2532 +3036 +3588 +649 +4314 +846 +4212 +2309 +1996 +3588 +5043 +4771 +3739 +5158 +3733 +1996 +3588 +3556 +846 +5259 +3588 +4420 +2532 +3756 +2309 +3708 +863 +4771 +3588 +3624 +4771 +1063 +3004 +4771 +3756 +3361 +1473 +3708 +575 +737 +2193 +302 +3004 +2127 +3588 +2064 +1722 +3686 +2962 +2532 +3588 +2424 +1831 +575 +3588 +2411 +4198 +2532 +4334 +3588 +3101 +846 +1925 +846 +3588 +3619 +3588 +2411 +1161 +3588 +611 +3004 +846 +3756 +991 +3778 +3956 +281 +3004 +4771 +3756 +3361 +863 +5602 +1909 +3037 +3037 +3739 +3756 +2647 +1161 +2521 +846 +1909 +3588 +3735 +3588 +1636 +4334 +846 +3588 +3101 +2596 +2398 +3004 +3004 +1473 +4219 +3778 +1510 +2532 +5101 +3588 +4592 +3588 +4674 +3952 +2532 +4930 +3588 +165 +2532 +611 +3588 +2424 +3004 +846 +991 +3361 +5100 +4771 +4105 +1063 +4183 +2064 +1909 +3588 +3686 +1473 +3004 +1473 +1510 +3588 +5547 +2532 +4183 +4105 +1161 +3195 +191 +4171 +2532 +189 +4171 +3708 +3361 +2360 +1063 +1163 +1096 +235 +3768 +1510 +3588 +5056 +1063 +1453 +1484 +1909 +1484 +2532 +932 +1909 +932 +2532 +1510 +3042 +2532 +4578 +2596 +5117 +1161 +3956 +3778 +746 +5604 +5119 +3860 +4771 +1519 +2347 +2532 +615 +4771 +2532 +1510 +3404 +5259 +3956 +3588 +1484 +1223 +3588 +3686 +1473 +2532 +5119 +4624 +4183 +2532 +240 +3860 +2532 +3404 +240 +2532 +4183 +5578 +1453 +2532 +4105 +4183 +2532 +1223 +3588 +4129 +3588 +458 +5594 +3588 +26 +3588 +4183 +1161 +3588 +5278 +1519 +5056 +3778 +4982 +2532 +2784 +3778 +3588 +2098 +3588 +932 +1722 +3650 +3588 +3625 +1519 +3142 +3956 +3588 +1484 +2532 +5119 +2240 +3588 +5056 +3767 +3752 +3708 +3588 +946 +3588 +2050 +3588 +2046 +1223 +1158 +3588 +4396 +2476 +1722 +5117 +40 +3588 +314 +3539 +5119 +3588 +1722 +3588 +2449 +5343 +1519 +3588 +3735 +3588 +1909 +3588 +1430 +3361 +2597 +142 +3588 +1537 +3588 +3614 +846 +2532 +3588 +1722 +3588 +68 +3361 +1994 +3694 +142 +3588 +2440 +846 +1161 +3759 +3588 +1722 +1064 +2192 +2532 +3588 +2337 +1722 +1565 +3588 +2250 +1161 +4336 +2443 +3361 +1096 +3588 +5437 +4771 +5494 +3366 +4521 +1063 +1510 +5119 +2347 +3173 +3634 +3756 +1096 +575 +746 +2889 +2193 +3588 +3568 +3761 +3756 +3361 +1096 +2532 +1487 +3361 +2856 +3588 +2250 +1565 +302 +3756 +4982 +3956 +4561 +1161 +1223 +3588 +1588 +2856 +3588 +2250 +1565 +1437 +5119 +5100 +4771 +3004 +3708 +5602 +3588 +5547 +2228 +5602 +3361 +4100 +1063 +1453 +5580 +2532 +5578 +2532 +1325 +4592 +3173 +2532 +5059 +5620 +4105 +1487 +1415 +2532 +3588 +1588 +3708 +4302 +4771 +3767 +1437 +3004 +4771 +3708 +1722 +3588 +2048 +1510 +3361 +1831 +3708 +1722 +3588 +5009 +3361 +4100 +1063 +5618 +3588 +796 +1831 +575 +395 +2532 +5316 +2193 +1424 +3779 +1510 +3588 +3952 +3588 +5207 +3588 +444 +1437 +3699 +1510 +3588 +4430 +1563 +4863 +3588 +105 +1161 +2112 +3326 +3588 +2347 +3588 +2250 +1565 +3588 +2246 +4654 +2532 +3588 +4582 +3756 +1325 +3588 +5338 +846 +2532 +3588 +792 +4098 +575 +3588 +3772 +2532 +3588 +1411 +3588 +3772 +4531 +2532 +5119 +5316 +3588 +4592 +3588 +5207 +3588 +444 +1722 +3772 +2532 +5119 +2875 +3956 +3588 +5443 +3588 +1093 +2532 +3708 +3588 +5207 +3588 +444 +2064 +1909 +3588 +3507 +3588 +3772 +3326 +1411 +2532 +1391 +4183 +2532 +649 +3588 +32 +846 +3326 +4536 +3173 +2532 +1996 +3588 +1588 +846 +1537 +3588 +5064 +417 +575 +206 +3772 +2193 +206 +846 +1161 +575 +3588 +4808 +3129 +3588 +3850 +3752 +2235 +3588 +2798 +846 +1096 +527 +2532 +3588 +5444 +1631 +1097 +3754 +1451 +3588 +2330 +3779 +2532 +4771 +3752 +3708 +3956 +3778 +1097 +3754 +1451 +1510 +1909 +2374 +281 +3004 +4771 +3754 +3756 +3361 +3928 +3588 +1074 +3778 +2193 +302 +3956 +3778 +1096 +3588 +3772 +2532 +3588 +1093 +3928 +1161 +3588 +3056 +1473 +3756 +3361 +3928 +1161 +4012 +3588 +2250 +2532 +5610 +1565 +3762 +1492 +3761 +3588 +32 +3588 +3772 +3761 +3588 +5207 +1487 +3361 +3588 +3962 +3441 +1063 +5618 +3588 +2250 +3588 +3575 +3779 +1510 +3588 +3952 +3588 +5207 +3588 +444 +1063 +5613 +1722 +3588 +2250 +1565 +3588 +4253 +3588 +2627 +1510 +5176 +2532 +4095 +1060 +2532 +1061 +891 +3739 +2250 +1525 +3575 +1519 +3588 +2787 +2532 +3756 +1097 +2193 +2064 +3588 +2627 +2532 +142 +537 +3779 +1510 +2532 +3588 +3952 +3588 +5207 +3588 +444 +5119 +1510 +1417 +1722 +3588 +68 +1520 +3880 +2532 +1520 +863 +1417 +229 +1722 +3588 +3458 +1520 +3880 +2532 +1520 +863 +3767 +1127 +3754 +3756 +1492 +4169 +2250 +3588 +2962 +4771 +2064 +1161 +1565 +1097 +3754 +1487 +1492 +3588 +3617 +4169 +5438 +3588 +2812 +2064 +302 +1127 +2532 +302 +3756 +1439 +1358 +3588 +3614 +846 +1223 +3778 +2532 +4771 +1096 +2092 +3754 +3739 +3756 +1380 +5610 +3588 +5207 +3588 +444 +2064 +686 +5101 +1510 +3588 +4103 +2532 +5429 +1401 +3739 +2525 +3588 +2962 +1909 +3588 +3610 +846 +3588 +1325 +846 +3588 +5160 +1722 +2540 +3107 +3588 +1401 +1565 +3739 +3779 +4160 +2064 +3588 +2962 +846 +2147 +281 +3004 +4771 +3754 +1909 +3956 +3588 +5225 +846 +2525 +846 +1161 +1437 +3004 +3588 +2556 +1401 +1565 +1722 +3588 +2588 +846 +5549 +1473 +3588 +2962 +2532 +756 +5180 +3588 +4889 +846 +1161 +2068 +2532 +4095 +3326 +3588 +3184 +2240 +3588 +2962 +3588 +1401 +1565 +1722 +2250 +3739 +3756 +4328 +2532 +1722 +5610 +3739 +3756 +1097 +2532 +1371 +846 +2532 +3588 +3313 +846 +3326 +3588 +5273 +5087 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +5119 +3666 +3588 +932 +3588 +3772 +1176 +3933 +3748 +2983 +3588 +2985 +1438 +1831 +1519 +5222 +3588 +3566 +1161 +4002 +1537 +846 +1510 +3474 +2532 +4002 +5429 +1063 +3588 +3474 +2983 +3588 +2985 +3756 +2983 +3326 +1438 +1637 +1161 +3588 +5429 +2983 +1637 +1722 +3588 +30 +3326 +3588 +2985 +1438 +1161 +5549 +3588 +3566 +3573 +3956 +2532 +2518 +1161 +3319 +3571 +2906 +1096 +3708 +3588 +3566 +1831 +1519 +529 +5119 +1453 +3956 +3588 +3933 +1565 +2532 +2885 +3588 +2985 +1438 +1161 +3588 +3474 +3588 +5429 +3004 +1325 +1473 +1537 +3588 +1637 +4771 +3754 +3588 +2985 +1473 +4570 +1161 +611 +3588 +5429 +3004 +3361 +4218 +3756 +3361 +714 +1473 +2532 +4771 +4198 +3123 +4314 +3588 +4453 +2532 +59 +1438 +1161 +565 +846 +59 +2064 +3588 +3566 +2532 +3588 +2092 +1525 +3326 +846 +1519 +3588 +1062 +2532 +2808 +3588 +2374 +1161 +5305 +2064 +2532 +3588 +3062 +3933 +3004 +2962 +2962 +455 +1473 +1161 +3588 +611 +3004 +281 +3004 +4771 +3756 +1492 +4771 +3767 +1127 +3754 +3756 +1492 +3588 +2250 +3761 +3588 +5610 +1063 +5618 +444 +589 +2564 +3588 +2398 +1401 +2532 +3860 +846 +3588 +5225 +846 +2532 +3303 +3739 +1325 +4002 +5007 +1161 +3739 +1417 +1161 +3739 +1520 +1538 +2596 +3588 +2398 +1411 +2532 +589 +2112 +4198 +3588 +3588 +4002 +5007 +2983 +2038 +1722 +846 +2532 +2770 +243 +4002 +5615 +3588 +3588 +1417 +2770 +243 +1417 +1161 +3588 +3588 +1520 +2983 +565 +3736 +1093 +2532 +2928 +3588 +694 +3588 +2962 +846 +1161 +3326 +4183 +5550 +2064 +3588 +2962 +3588 +1401 +1565 +2532 +4868 +3056 +3326 +846 +2532 +4334 +3588 +3588 +4002 +5007 +2983 +4374 +243 +4002 +5007 +3004 +2962 +4002 +5007 +1473 +3860 +3708 +243 +4002 +5007 +2770 +5346 +846 +3588 +2962 +846 +2095 +1401 +18 +2532 +4103 +1909 +3641 +1510 +4103 +1909 +4183 +4771 +2525 +1525 +1519 +3588 +5479 +3588 +2962 +4771 +4334 +2532 +3588 +3588 +1417 +5007 +3004 +2962 +1417 +5007 +1473 +3860 +3708 +243 +1417 +5007 +2770 +5346 +846 +3588 +2962 +846 +2095 +1401 +18 +2532 +4103 +1909 +3641 +1510 +4103 +1909 +4183 +4771 +2525 +1525 +1519 +3588 +5479 +3588 +2962 +4771 +1161 +4334 +2532 +3588 +3588 +1520 +5007 +2983 +3004 +2962 +1097 +4771 +3754 +1510 +4642 +444 +2325 +3699 +3756 +4687 +2532 +4863 +3606 +3756 +1287 +2532 +5399 +565 +2928 +3588 +5007 +4771 +1722 +3588 +1093 +3708 +2192 +3588 +4674 +1161 +611 +3588 +2962 +846 +3004 +846 +1401 +4190 +2532 +3636 +1492 +3754 +2325 +3699 +3756 +4687 +2532 +4863 +3606 +3756 +1287 +3767 +1163 +4771 +906 +3588 +694 +1473 +3588 +5133 +2532 +302 +2064 +1473 +2865 +3588 +1699 +4862 +5110 +3767 +142 +575 +846 +3588 +5007 +2532 +1325 +3588 +2192 +3588 +1176 +5007 +1063 +3588 +2192 +3956 +1325 +2532 +4052 +1161 +3588 +3361 +2192 +2532 +3739 +2192 +142 +575 +846 +2532 +3588 +888 +1401 +1544 +1519 +3588 +4655 +3588 +1857 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +1161 +3752 +2064 +3588 +5207 +3588 +444 +1722 +3588 +1391 +846 +2532 +3956 +3588 +32 +3326 +846 +5119 +2523 +1909 +2362 +1391 +846 +2532 +4863 +1715 +846 +3956 +3588 +1484 +2532 +873 +846 +575 +240 +5618 +3588 +4166 +873 +3588 +4263 +575 +3588 +2056 +2532 +3303 +2476 +3588 +4263 +1537 +1188 +846 +1161 +3588 +2055 +1537 +2176 +5119 +2046 +3588 +935 +3588 +1537 +1188 +846 +1205 +3588 +2127 +3588 +3962 +1473 +2816 +3588 +2090 +4771 +575 +2602 +2889 +932 +1063 +3983 +2532 +1325 +1473 +5315 +1372 +2532 +4222 +1473 +3581 +1510 +2532 +4863 +1473 +1131 +2532 +4016 +1473 +770 +2532 +1980 +1473 +1722 +5438 +1510 +2532 +2064 +4314 +1473 +5119 +611 +846 +3588 +1342 +3004 +2962 +4219 +3708 +4771 +3983 +2532 +5142 +2228 +1372 +2532 +4222 +1161 +4219 +3708 +4771 +3581 +2532 +4863 +2228 +1131 +2532 +4016 +1161 +4219 +3708 +4771 +770 +2228 +1722 +5438 +2532 +2064 +4314 +4771 +2532 +611 +3588 +935 +2046 +846 +281 +3004 +4771 +1909 +3745 +4160 +1520 +3778 +3588 +80 +1473 +3588 +1646 +1473 +4160 +5119 +2046 +2532 +3588 +1537 +2176 +2672 +4198 +575 +1473 +1519 +3588 +4442 +3588 +166 +3588 +2090 +3588 +1228 +2532 +3588 +32 +846 +1063 +3983 +2532 +3756 +1325 +1473 +5315 +1372 +2532 +3756 +4222 +1473 +3581 +1510 +2532 +3756 +4863 +1473 +1131 +2532 +3756 +4016 +1473 +772 +2532 +1722 +5438 +2532 +3756 +1980 +1473 +5119 +611 +2532 +846 +3004 +2962 +4219 +3708 +4771 +3983 +2228 +1372 +2228 +3581 +2228 +1131 +2228 +772 +2228 +1722 +5438 +2532 +3756 +1247 +4771 +5119 +611 +846 +3004 +281 +3004 +4771 +1909 +3745 +3756 +4160 +1520 +3778 +3588 +1646 +3761 +1473 +4160 +2532 +565 +3778 +1519 +2851 +166 +1161 +3588 +1342 +1519 +2222 +166 +2532 +1096 +3753 +5055 +3588 +2424 +3956 +3588 +3056 +3778 +3004 +3588 +3101 +846 +1492 +3754 +3326 +1417 +2250 +3588 +3957 +1096 +2532 +3588 +5207 +3588 +444 +3860 +1519 +3588 +4717 +5119 +4863 +3588 +749 +2532 +3588 +4245 +3588 +2992 +1519 +3588 +833 +3588 +749 +3588 +3004 +2533 +2532 +4823 +2443 +3588 +2424 +1388 +2902 +2532 +615 +1161 +3004 +3361 +1722 +3588 +1859 +2443 +3361 +2351 +1096 +1722 +3588 +2992 +1161 +3588 +2424 +1096 +1722 +963 +1722 +3614 +4613 +3588 +3015 +4334 +846 +1135 +2192 +211 +3464 +927 +2532 +2708 +1909 +3588 +2776 +846 +345 +1161 +3708 +3588 +3101 +23 +3004 +1519 +5101 +3588 +684 +3778 +1063 +1410 +3778 +4097 +4183 +2532 +1325 +4434 +1161 +1097 +3588 +2424 +3004 +846 +5101 +2873 +3930 +3588 +1135 +1063 +2041 +2570 +2038 +1519 +1473 +1063 +3842 +3588 +4434 +2192 +3326 +1438 +1161 +1473 +3756 +3842 +2192 +1063 +3778 +906 +3588 +3464 +3778 +1909 +3588 +4983 +1473 +4314 +3588 +1779 +1473 +4160 +281 +3004 +4771 +1437 +3699 +2784 +3588 +2098 +3778 +1722 +3650 +3588 +2889 +2980 +2532 +3739 +4160 +3778 +1519 +3422 +846 +5119 +1520 +3588 +1427 +3588 +3004 +2455 +2469 +4198 +4314 +3588 +749 +3004 +2309 +5101 +1473 +1325 +2504 +4771 +3860 +846 +1161 +3588 +2476 +846 +5144 +694 +2532 +575 +5119 +2212 +2120 +2443 +846 +3860 +1161 +3588 +4413 +3588 +106 +4334 +3588 +3101 +3588 +2424 +3004 +2309 +4226 +2090 +4771 +5315 +3588 +3957 +1161 +3588 +3004 +5217 +1519 +3588 +4172 +4314 +3588 +1170 +2532 +3004 +846 +3588 +1320 +3004 +3588 +2540 +1473 +1451 +1510 +4314 +4771 +4160 +3588 +3957 +3326 +3588 +3101 +1473 +2532 +4160 +3588 +3101 +5613 +4929 +846 +3588 +2424 +2532 +2090 +3588 +3957 +1161 +3798 +1096 +345 +3326 +3588 +1427 +3101 +2532 +2068 +846 +3004 +281 +3004 +4771 +3754 +1520 +1537 +4771 +3860 +1473 +2532 +3076 +4970 +756 +3004 +846 +1520 +1538 +3385 +1473 +1510 +2962 +1161 +3588 +611 +3004 +3588 +1686 +3326 +1473 +3588 +5495 +1722 +3588 +5165 +3778 +1473 +3860 +3303 +3588 +5207 +3588 +444 +5217 +2531 +1125 +4012 +846 +1161 +3759 +3588 +444 +1565 +1223 +3739 +3588 +5207 +3588 +444 +3860 +2570 +1510 +846 +1487 +3756 +1080 +3588 +444 +1565 +1161 +611 +2455 +3588 +3860 +846 +3004 +3385 +1473 +1510 +4461 +3004 +846 +4771 +3004 +1161 +2068 +846 +3588 +2424 +2983 +740 +2532 +2127 +2806 +2532 +1325 +3588 +3101 +3004 +2983 +5315 +3778 +1510 +3588 +4983 +1473 +2532 +2983 +4221 +2532 +2168 +1325 +846 +3004 +4095 +1537 +846 +3956 +1063 +3778 +1510 +3588 +129 +1473 +3588 +1242 +3588 +4012 +4183 +1632 +1519 +859 +266 +1161 +3004 +4771 +3756 +3361 +4095 +575 +737 +1537 +3778 +3588 +1081 +3588 +288 +2193 +3588 +2250 +1565 +3752 +846 +4095 +3326 +4771 +2537 +1722 +3588 +932 +3588 +3962 +1473 +2532 +5214 +1831 +1519 +3588 +3735 +3588 +1636 +5119 +3004 +846 +3588 +2424 +3956 +4771 +4624 +1722 +1473 +1722 +3588 +3571 +3778 +1063 +1125 +3960 +3588 +4166 +2532 +1287 +3588 +4263 +3588 +4167 +1161 +3326 +3588 +1453 +1473 +4254 +4771 +1519 +3588 +1056 +1161 +611 +3588 +4074 +3004 +846 +1487 +3956 +4624 +1722 +4771 +1473 +3763 +4624 +5346 +846 +3588 +2424 +281 +3004 +4771 +3754 +1722 +3778 +3588 +3571 +4250 +220 +5455 +5151 +533 +1473 +3004 +846 +3588 +4074 +2579 +1163 +1473 +4862 +4771 +599 +3756 +3361 +4771 +533 +3668 +2532 +3956 +3588 +3101 +3004 +5119 +2064 +3326 +846 +3588 +2424 +1519 +5564 +3004 +1068 +2532 +3004 +3588 +3101 +2523 +847 +2193 +3739 +565 +1563 +4336 +2532 +3880 +3588 +4074 +2532 +3588 +1417 +5207 +2199 +756 +3076 +2532 +85 +5119 +3004 +846 +4036 +1510 +3588 +5590 +1473 +2193 +2288 +3306 +5602 +2532 +1127 +3326 +1473 +2532 +4281 +3398 +4098 +1909 +4383 +846 +4336 +2532 +3004 +3962 +1473 +1487 +1415 +1510 +3928 +575 +1473 +3588 +4221 +3778 +4133 +3756 +5613 +1473 +2309 +235 +5613 +4771 +2532 +2064 +4314 +3588 +3101 +2532 +2147 +846 +2518 +2532 +3004 +3588 +4074 +3779 +3756 +2480 +1520 +5610 +1127 +3326 +1473 +1127 +2532 +4336 +2443 +3361 +1525 +1519 +3986 +3303 +3588 +4151 +4289 +1161 +3588 +4561 +772 +3825 +1537 +1208 +565 +4336 +3004 +3962 +1473 +1487 +3756 +1410 +3778 +3928 +1437 +3361 +846 +4095 +1096 +3588 +2307 +4771 +2532 +2064 +3825 +2147 +846 +2518 +1063 +1510 +916 +846 +3588 +3788 +2532 +863 +846 +3825 +565 +4336 +1537 +5154 +3588 +846 +3056 +3004 +3825 +5119 +2064 +4314 +3588 +3101 +2532 +3004 +846 +2518 +3063 +2532 +373 +3708 +1448 +3588 +5610 +2532 +3588 +5207 +3588 +444 +3860 +1519 +5495 +268 +1453 +71 +3708 +1448 +3588 +3860 +1473 +2532 +2089 +846 +2980 +3708 +2455 +1520 +3588 +1427 +2064 +2532 +3326 +846 +3793 +4183 +3326 +3162 +2532 +3586 +575 +3588 +749 +2532 +4245 +3588 +2992 +1161 +3588 +3860 +846 +1325 +846 +4592 +3004 +302 +3739 +5368 +846 +1510 +2902 +846 +2532 +2112 +4334 +3588 +2424 +3004 +5463 +4461 +2532 +2705 +846 +1161 +3588 +2424 +3004 +846 +2083 +1909 +3739 +3918 +5119 +4334 +1911 +3588 +5495 +1909 +3588 +2424 +2532 +2902 +846 +2532 +3708 +1520 +3588 +3326 +2424 +1614 +3588 +5495 +645 +3588 +3162 +846 +2532 +3960 +3588 +1401 +3588 +749 +851 +846 +3588 +5621 +5119 +3004 +846 +3588 +2424 +654 +3588 +3162 +4771 +1519 +3588 +5117 +846 +1063 +3956 +3588 +2983 +3162 +1722 +3162 +622 +2228 +1380 +3754 +3756 +1410 +3870 +3588 +3962 +1473 +2532 +3936 +1473 +737 +4119 +1427 +3003 +32 +3767 +4459 +4137 +3588 +1124 +3754 +3779 +1163 +1096 +1722 +1565 +3588 +5610 +3004 +3588 +2424 +3588 +3793 +5613 +1909 +3027 +1831 +3326 +3162 +2532 +3586 +4815 +1473 +2596 +2250 +1722 +3588 +2411 +2516 +1321 +2532 +3756 +2902 +1473 +1161 +3778 +3650 +1096 +2443 +4137 +3588 +1124 +3588 +4396 +5119 +3588 +3101 +3956 +863 +846 +5343 +1161 +3588 +2902 +3588 +2424 +520 +4314 +2533 +3588 +749 +3699 +3588 +1122 +2532 +3588 +4245 +4863 +1161 +3588 +4074 +190 +846 +575 +3113 +2193 +3588 +833 +3588 +749 +2532 +1525 +2080 +2521 +3326 +3588 +5257 +3708 +3588 +5056 +1161 +3588 +749 +2532 +3588 +4892 +3650 +2212 +5577 +2596 +3588 +2424 +3704 +846 +2289 +2532 +3756 +2147 +4183 +5575 +4334 +1161 +5305 +4334 +1417 +3004 +3778 +5346 +1410 +2647 +3588 +3485 +3588 +2316 +2532 +1223 +5140 +2250 +3618 +2532 +450 +3588 +749 +3004 +846 +3762 +611 +5101 +3778 +4771 +2649 +1161 +3588 +2424 +4623 +2532 +3588 +749 +3004 +846 +1844 +4771 +2596 +3588 +2316 +3588 +2198 +2443 +1473 +3004 +1487 +4771 +1510 +3588 +5547 +3588 +5207 +3588 +2316 +3004 +846 +3588 +2424 +4771 +3004 +4133 +3004 +4771 +575 +737 +3708 +3588 +5207 +3588 +444 +2521 +1537 +1188 +3588 +1411 +2532 +2064 +1909 +3588 +3507 +3588 +3772 +5119 +3588 +749 +1284 +3588 +2440 +846 +3004 +987 +5101 +2089 +5532 +3144 +2192 +3708 +3568 +191 +3588 +988 +5101 +4771 +1380 +1161 +3588 +611 +3004 +1777 +2288 +1510 +5119 +1716 +1519 +3588 +4383 +846 +2532 +2852 +846 +1161 +3588 +4474 +3004 +4395 +1473 +5547 +5101 +1510 +3588 +3817 +4771 +1161 +3588 +4074 +2521 +1854 +1722 +3588 +833 +2532 +4334 +846 +1520 +3814 +3004 +2532 +4771 +1510 +3326 +2424 +3588 +1057 +1161 +3588 +720 +1715 +3956 +3004 +3756 +1492 +5101 +3004 +1161 +1831 +1519 +3588 +4440 +3708 +846 +243 +2532 +3004 +3588 +1563 +3778 +1510 +3326 +2424 +3588 +3480 +2532 +3825 +720 +3326 +3727 +3754 +3756 +1492 +3588 +444 +1161 +3326 +3398 +4334 +3588 +2476 +3004 +3588 +4074 +230 +2532 +4771 +1537 +846 +1510 +1063 +2532 +3588 +2981 +4771 +1212 +4771 +4160 +5119 +756 +2653 +2532 +3660 +3754 +3756 +1492 +3588 +444 +2532 +2117 +220 +5455 +2532 +3403 +3588 +4074 +3588 +4487 +2424 +2046 +3754 +4250 +220 +5455 +5151 +533 +1473 +2532 +1831 +1854 +2799 +4090 +1161 +4405 +1096 +4824 +2983 +3956 +3588 +749 +2532 +3588 +4245 +3588 +2992 +2596 +3588 +2424 +5620 +2289 +846 +2532 +1210 +846 +520 +2532 +3860 +4091 +3588 +2232 +5119 +2455 +3588 +3860 +846 +3708 +3754 +2632 +3338 +4762 +3588 +5144 +694 +3588 +749 +2532 +4245 +3004 +264 +3860 +129 +121 +1161 +3588 +3004 +5101 +4314 +1473 +4771 +3708 +2532 +4496 +3588 +694 +1519 +3588 +3485 +402 +2532 +565 +519 +1161 +3588 +749 +2983 +3588 +694 +3004 +3756 +1832 +906 +846 +1519 +3588 +2878 +1893 +5092 +129 +1510 +1161 +4824 +2983 +59 +1537 +846 +3588 +68 +3588 +2763 +1519 +5027 +3588 +3581 +1352 +2564 +3588 +68 +1565 +68 +129 +2193 +3588 +4594 +5119 +4137 +3588 +2046 +1223 +2408 +3588 +4396 +3004 +2532 +2983 +3588 +5144 +694 +3588 +5092 +3588 +5091 +3739 +5091 +575 +5207 +2474 +2532 +1325 +846 +1519 +3588 +68 +3588 +2763 +2505 +4929 +1473 +2962 +1161 +3588 +2424 +2476 +1715 +3588 +2232 +2532 +1905 +846 +3588 +2232 +3004 +4771 +1510 +3588 +935 +3588 +2453 +1161 +3588 +2424 +5346 +4771 +3004 +2532 +1722 +3588 +2723 +846 +5259 +3588 +749 +2532 +4245 +3762 +611 +5119 +3004 +846 +3588 +4091 +3756 +191 +4214 +4771 +2649 +2532 +3756 +611 +846 +4314 +3761 +1520 +4487 +5620 +2296 +3588 +2232 +3029 +1161 +2596 +1859 +1486 +3588 +2232 +630 +3588 +3793 +1520 +1198 +3739 +2309 +1161 +2192 +5119 +1198 +1978 +3004 +912 +3767 +4863 +846 +3004 +846 +3588 +4091 +2309 +5101 +630 +4771 +912 +2228 +2424 +3588 +3004 +5547 +1063 +1492 +3754 +1223 +5355 +3860 +846 +1161 +2521 +846 +1909 +3588 +968 +649 +4314 +846 +3588 +1135 +846 +3004 +3367 +4771 +2532 +3588 +1342 +1565 +1063 +4183 +3958 +4594 +2596 +3677 +1223 +846 +1161 +3588 +749 +2532 +3588 +4245 +3982 +3588 +3793 +2443 +154 +3588 +912 +1161 +3588 +2424 +622 +1161 +611 +3588 +2232 +3004 +846 +2309 +5101 +575 +3588 +1417 +630 +4771 +1161 +3588 +3004 +3588 +912 +3004 +846 +3588 +4091 +3767 +5101 +4160 +2424 +3588 +3004 +5547 +3004 +3956 +4717 +1161 +3588 +5346 +1063 +5101 +2556 +4160 +1161 +3588 +4057 +2896 +3004 +4717 +1161 +3588 +4091 +3708 +3754 +3762 +5623 +235 +3123 +2351 +1096 +2983 +5204 +633 +3588 +5495 +2713 +3588 +3793 +3004 +121 +1510 +575 +3588 +129 +3778 +4771 +3708 +2532 +611 +3956 +3588 +2992 +3004 +3588 +129 +846 +1909 +1473 +2532 +1909 +3588 +5043 +1473 +5119 +630 +846 +3588 +912 +1161 +3588 +2424 +5417 +3860 +2443 +4717 +5119 +3588 +4757 +3588 +2232 +3880 +3588 +2424 +1519 +3588 +4232 +4863 +1909 +846 +3650 +3588 +4686 +2532 +1562 +846 +5511 +2847 +4060 +846 +2532 +4120 +4735 +1537 +173 +2007 +1909 +3588 +2776 +846 +2532 +2563 +1722 +3588 +1188 +846 +2532 +1120 +1715 +846 +1702 +846 +3004 +5463 +935 +3588 +2453 +2532 +1716 +1519 +846 +2983 +3588 +2563 +2532 +5180 +1519 +3588 +2776 +846 +2532 +3753 +1702 +846 +1562 +846 +3588 +5511 +2532 +1746 +846 +3588 +2440 +846 +2532 +520 +846 +1519 +3588 +4717 +1161 +1831 +2147 +444 +2956 +3686 +4613 +3778 +29 +2443 +142 +3588 +4716 +846 +2532 +2064 +1519 +5117 +3004 +1115 +3739 +1510 +3004 +2898 +5117 +1325 +846 +4095 +3631 +3326 +5521 +3396 +2532 +1089 +3756 +2309 +4095 +1161 +4717 +846 +1266 +3588 +2440 +846 +906 +2819 +2532 +2521 +5083 +846 +1563 +2532 +2007 +1883 +3588 +2776 +846 +3588 +156 +846 +1125 +3778 +1510 +2424 +3588 +935 +3588 +2453 +5119 +4717 +4862 +846 +1417 +3027 +1520 +1537 +1188 +2532 +1520 +1537 +2176 +1161 +3588 +3899 +987 +846 +2795 +3588 +2776 +846 +2532 +3004 +3588 +2647 +3588 +3485 +2532 +1722 +5140 +2250 +3618 +4982 +4572 +1487 +1510 +5207 +3588 +2316 +2532 +2597 +575 +3588 +4716 +3668 +3588 +749 +1702 +3326 +3588 +1122 +2532 +4245 +3004 +243 +4982 +1438 +4982 +3756 +1410 +935 +2474 +1510 +2597 +3568 +575 +3588 +4716 +2532 +4100 +1909 +846 +3982 +1909 +3588 +2316 +4506 +3568 +1487 +2309 +846 +1063 +3004 +3754 +2316 +5207 +1510 +1161 +3588 +846 +2532 +3588 +3027 +3588 +4957 +4862 +846 +3679 +846 +1161 +575 +1623 +5610 +4655 +1096 +1909 +3956 +3588 +1093 +2193 +5610 +1766 +1161 +4012 +3588 +1766 +5610 +310 +3588 +2424 +5456 +3173 +3004 +2241 +2241 +2982 +4518 +3778 +1510 +2316 +1473 +2316 +1473 +2443 +5101 +1473 +1459 +1161 +5100 +3588 +1563 +2476 +191 +3004 +3754 +2243 +5455 +3778 +2532 +2112 +1520 +1537 +846 +5143 +2532 +2983 +4699 +5037 +4130 +3690 +2532 +4060 +2563 +4222 +846 +1161 +3588 +3062 +3004 +863 +3708 +1487 +2064 +2243 +4982 +846 +1161 +3588 +2424 +3825 +2896 +5456 +3173 +863 +3588 +4151 +2532 +3708 +3588 +2665 +3588 +3485 +4977 +575 +509 +2193 +2736 +1519 +1417 +2532 +3588 +1093 +4579 +2532 +3588 +4073 +4977 +2532 +3588 +3419 +455 +2532 +4183 +4983 +3588 +2837 +40 +1453 +2532 +1831 +1537 +3588 +3419 +3326 +3588 +1454 +846 +1525 +1519 +3588 +40 +4172 +2532 +1718 +4183 +1161 +3588 +1543 +2532 +3588 +3326 +846 +5083 +3588 +2424 +3708 +3588 +4578 +2532 +3588 +1096 +5399 +4970 +3004 +230 +2316 +5207 +1510 +3778 +1161 +1510 +1563 +1135 +4183 +575 +3113 +2334 +3748 +190 +3588 +2424 +575 +3588 +1056 +1247 +846 +1722 +3739 +1510 +3137 +3588 +3094 +2532 +3137 +3588 +3588 +2385 +2532 +2501 +3384 +2532 +3588 +3384 +3588 +5207 +2199 +1161 +3798 +1096 +2064 +444 +4145 +575 +707 +5122 +2501 +3739 +2532 +846 +3100 +3588 +2424 +3778 +4334 +3588 +4091 +154 +3588 +4983 +3588 +2424 +5119 +3588 +4091 +2753 +591 +2532 +2983 +3588 +4983 +3588 +2501 +1794 +846 +1722 +4616 +2513 +2532 +5087 +846 +1722 +3588 +2537 +846 +3419 +3739 +2998 +1722 +3588 +4073 +2532 +4351 +3037 +3173 +3588 +2374 +3588 +3419 +565 +1161 +1563 +3137 +3588 +3094 +2532 +3588 +243 +3137 +1510 +2521 +561 +3588 +5028 +1161 +3588 +1887 +3748 +1510 +3326 +3588 +3904 +4863 +3588 +749 +2532 +3588 +5330 +4314 +4091 +3004 +2962 +3403 +3754 +1565 +3588 +4108 +3004 +2089 +2198 +3326 +5140 +2250 +1453 +3767 +2753 +805 +3588 +5028 +2193 +3588 +5154 +2250 +3361 +4218 +2064 +3588 +3101 +2813 +846 +2532 +3004 +3588 +2992 +1453 +575 +3588 +3498 +2532 +1510 +3588 +2078 +4106 +5501 +3588 +4413 +5346 +846 +3588 +4091 +2192 +2892 +5217 +805 +5613 +1492 +1161 +3588 +4198 +805 +3588 +5028 +4972 +3588 +3037 +3326 +3588 +2892 +1161 +3796 +4521 +3588 +2020 +1519 +1520 +4521 +2064 +3137 +3588 +3094 +2532 +3588 +243 +3137 +2334 +3588 +5028 +2532 +3708 +4578 +3173 +1096 +1063 +32 +2962 +2597 +1537 +3772 +2532 +4334 +617 +3588 +3037 +2532 +2521 +1883 +846 +1161 +1510 +3588 +2397 +846 +5613 +796 +2532 +3588 +1742 +846 +3022 +5613 +5510 +1161 +575 +3588 +5401 +846 +4579 +3588 +5083 +2532 +1096 +5613 +3498 +1161 +611 +3588 +32 +3004 +3588 +1135 +3361 +5399 +4771 +1063 +1492 +3754 +2424 +3588 +4717 +2212 +3756 +1510 +5602 +1063 +1453 +2531 +3004 +1205 +3708 +3588 +5117 +3699 +2749 +2532 +5035 +4198 +3004 +3588 +3101 +846 +3754 +1453 +575 +3588 +3498 +2532 +3708 +4254 +4771 +1519 +3588 +1056 +1563 +846 +3708 +3708 +3004 +4771 +2532 +565 +5035 +575 +3588 +3419 +3326 +5401 +2532 +5479 +3173 +5143 +518 +3588 +3101 +846 +2532 +3708 +2424 +5221 +846 +3004 +5463 +1161 +3588 +4334 +2902 +846 +3588 +4228 +2532 +4352 +846 +5119 +3004 +846 +3588 +2424 +3361 +5399 +5217 +518 +3588 +80 +1473 +2443 +565 +1519 +3588 +1056 +2546 +1473 +3708 +1161 +4198 +846 +3708 +5100 +3588 +2892 +2064 +1519 +3588 +4172 +518 +3588 +749 +537 +3588 +1096 +2532 +4863 +3326 +3588 +4245 +5037 +4824 +2983 +694 +2425 +1325 +3588 +4757 +3004 +3004 +3754 +3588 +3101 +846 +3571 +2064 +2813 +846 +1473 +2837 +2532 +1437 +191 +3778 +1909 +3588 +2232 +1473 +3982 +2532 +4771 +275 +4160 +1161 +3588 +2983 +694 +4160 +5613 +1321 +2532 +1310 +3588 +3056 +3778 +3844 +2453 +3360 +3588 +4594 +2250 +1161 +3588 +1733 +3101 +4198 +1519 +3588 +1056 +1519 +3588 +3735 +3757 +5021 +846 +3588 +2424 +2532 +3708 +846 +4352 +1161 +3588 +1365 +2532 +4334 +3588 +2424 +2980 +846 +3004 +1325 +1473 +3956 +1849 +1722 +3772 +2532 +1909 +3588 +1093 +3767 +4198 +3100 +3956 +3588 +1484 +907 +846 +1519 +3588 +3686 +3588 +3962 +2532 +3588 +5207 +2532 +3588 +40 +4151 +1321 +846 +5083 +3956 +3745 +1781 +4771 +2532 +3708 +1473 +3326 +4771 +1510 +3956 +3588 +2250 +2193 +3588 +4930 +3588 +165 +746 +3588 +2098 +2424 +5547 +5207 +2316 +2531 +1125 +1722 +3588 +2268 +3588 +4396 +3708 +649 +3588 +32 +1473 +4253 +4383 +4771 +3739 +2680 +3588 +3598 +4771 +5456 +994 +1722 +3588 +2048 +2090 +3588 +3598 +2962 +2117 +4160 +3588 +5147 +846 +1096 +2491 +3588 +907 +1722 +3588 +2048 +2784 +908 +3341 +1519 +859 +266 +2532 +1607 +4314 +846 +3956 +3588 +2449 +5561 +2532 +3588 +2415 +3956 +2532 +907 +5259 +846 +1722 +3588 +2446 +4215 +1843 +3588 +266 +846 +2532 +1510 +3588 +2491 +1746 +2359 +2574 +2532 +2223 +1193 +4012 +3588 +3751 +846 +2532 +2068 +200 +2532 +3192 +66 +2532 +2784 +3004 +2064 +3588 +2478 +1473 +3694 +1473 +3739 +3756 +1510 +2425 +2955 +3089 +3588 +2438 +3588 +5266 +846 +1473 +907 +4771 +5204 +1161 +846 +907 +4771 +4151 +40 +2532 +1096 +1722 +1565 +3588 +2250 +2064 +2424 +575 +3478 +3588 +1056 +2532 +907 +1519 +3588 +2446 +5259 +2491 +2532 +2117 +305 +1537 +3588 +5204 +3708 +4977 +3588 +3772 +2532 +3588 +4151 +5613 +4058 +2597 +1519 +846 +2532 +5456 +1096 +1537 +3588 +3772 +4771 +1510 +3588 +5207 +1473 +3588 +27 +1722 +4771 +2106 +2532 +2117 +3588 +4151 +846 +1544 +1519 +3588 +2048 +2532 +1510 +1722 +3588 +2048 +5062 +2250 +3985 +5259 +3588 +4567 +2532 +1510 +3326 +3588 +2342 +2532 +3588 +32 +1247 +846 +2532 +3326 +3588 +3860 +3588 +2491 +2064 +3588 +2424 +1519 +3588 +1056 +2784 +3588 +2098 +3588 +2316 +2532 +3004 +3754 +4137 +3588 +2540 +2532 +1448 +3588 +932 +3588 +2316 +3340 +2532 +4100 +1722 +3588 +2098 +2532 +3855 +3844 +3588 +2281 +3588 +1056 +3708 +4613 +2532 +406 +3588 +80 +4613 +906 +1722 +3588 +2281 +1063 +1510 +231 +2532 +3004 +846 +3588 +2424 +1205 +3694 +1473 +2532 +4160 +4771 +1096 +231 +444 +2532 +2117 +863 +3588 +1350 +190 +846 +2532 +4260 +3641 +3708 +2385 +3588 +3588 +2199 +2532 +2491 +3588 +80 +846 +2532 +846 +1722 +3588 +4143 +2675 +3588 +1350 +2532 +2117 +2564 +846 +2532 +863 +3588 +3962 +846 +2199 +1722 +3588 +4143 +3326 +3588 +3411 +565 +3694 +846 +2532 +1531 +1519 +2584 +2532 +2117 +3588 +4521 +1525 +1519 +3588 +4864 +1321 +2532 +1605 +1909 +3588 +1322 +846 +1063 +1510 +1321 +846 +5613 +1849 +2192 +2532 +3756 +5613 +3588 +1122 +2532 +2117 +1510 +1722 +3588 +4864 +846 +444 +1722 +4151 +169 +2532 +349 +3004 +5101 +1473 +2532 +4771 +2424 +3479 +2064 +622 +1473 +1492 +4771 +5101 +1510 +3588 +40 +3588 +2316 +2532 +2008 +846 +3588 +2424 +5392 +2532 +1831 +1537 +846 +2532 +3588 +4151 +3588 +169 +4682 +846 +2532 +5455 +5456 +3173 +1831 +1537 +846 +2532 +2284 +537 +5620 +4802 +846 +3004 +5101 +1510 +3778 +1322 +2537 +2596 +1849 +2532 +3588 +4151 +3588 +169 +2004 +2532 +5219 +846 +2532 +1831 +3588 +189 +846 +2117 +3837 +1519 +3650 +3588 +4066 +3588 +1056 +2532 +2117 +1537 +3588 +4864 +1831 +2064 +1519 +3588 +3614 +4613 +2532 +406 +3326 +2385 +2532 +2491 +1161 +3588 +3994 +4613 +2621 +4445 +2532 +2117 +3004 +846 +4012 +846 +2532 +4334 +1453 +846 +2902 +3588 +5495 +2532 +863 +846 +3588 +4446 +2532 +1247 +846 +1161 +3798 +1096 +3753 +1416 +3588 +2246 +5342 +4314 +846 +3956 +3588 +2560 +2192 +2532 +3588 +1139 +2532 +1510 +1996 +3650 +3588 +4172 +4314 +3588 +2374 +2532 +2323 +4183 +2560 +2192 +4164 +3554 +2532 +1140 +4183 +1544 +2532 +3756 +863 +2980 +3588 +1140 +3754 +1492 +846 +2532 +4404 +1773 +3029 +450 +1831 +2532 +565 +1519 +2048 +5117 +2546 +4336 +2532 +2614 +846 +4613 +2532 +3588 +3326 +846 +2532 +2147 +846 +2532 +3004 +846 +3754 +3956 +2212 +4771 +2532 +3004 +846 +71 +237 +1519 +3588 +2192 +2969 +2443 +2532 +1563 +2784 +1063 +1519 +3778 +1831 +2532 +2064 +2784 +1519 +3588 +4864 +846 +1519 +3650 +3588 +1056 +2532 +3588 +1140 +1544 +2532 +2064 +4314 +846 +3015 +3870 +846 +2532 +1120 +3004 +846 +3754 +1437 +2309 +1410 +1473 +2511 +2532 +4697 +1614 +3588 +5495 +846 +680 +2532 +3004 +846 +2309 +2511 +2532 +2117 +565 +575 +846 +3588 +3014 +2532 +2511 +2532 +1690 +846 +2117 +1544 +846 +2532 +3004 +846 +3708 +3367 +3367 +3004 +235 +5217 +4572 +1166 +3588 +2409 +2532 +4374 +4012 +3588 +2512 +4771 +3739 +4367 +3475 +1519 +3142 +846 +1161 +3588 +1831 +756 +2784 +4183 +2532 +1310 +3588 +3056 +5620 +3371 +846 +1410 +5320 +1519 +4172 +1525 +235 +1854 +1909 +2048 +5117 +1510 +2532 +2064 +4314 +846 +3840 +2532 +1525 +3825 +1519 +2584 +1223 +2250 +191 +3754 +1722 +3624 +1510 +2532 +4863 +4183 +5620 +3371 +5562 +3366 +3588 +4314 +3588 +2374 +2532 +2980 +846 +3588 +3056 +2532 +2064 +5342 +4314 +846 +3885 +142 +5259 +5064 +2532 +3361 +1410 +4374 +846 +1223 +3588 +3793 +648 +3588 +4721 +3699 +1510 +2532 +1846 +5465 +3588 +2895 +3699 +3588 +3885 +2621 +2532 +3588 +2424 +3708 +3588 +4102 +846 +3004 +3588 +3885 +5043 +863 +4771 +3588 +266 +1161 +1510 +5100 +3588 +1122 +1563 +2521 +2532 +1260 +1722 +3588 +2588 +846 +5101 +3778 +3779 +2980 +987 +5101 +1410 +863 +266 +1487 +3361 +1520 +3588 +2316 +2532 +2117 +3588 +2424 +1921 +3588 +4151 +846 +3754 +3779 +1260 +1722 +1438 +3004 +846 +5101 +3778 +1260 +1722 +3588 +2588 +4771 +5101 +1510 +2123 +3004 +3588 +3885 +863 +4771 +3588 +266 +2228 +3004 +1453 +2532 +142 +3588 +2895 +4771 +2532 +4043 +1161 +2443 +1492 +3754 +1849 +2192 +3588 +5207 +3588 +444 +863 +266 +1909 +3588 +1093 +3004 +3588 +3885 +4771 +3004 +1453 +142 +3588 +2895 +4771 +2532 +5217 +1519 +3588 +3624 +4771 +2532 +1453 +2532 +2117 +142 +3588 +2895 +1831 +1715 +3956 +5620 +1839 +3956 +2532 +1392 +3588 +2316 +3004 +3754 +3779 +3763 +3708 +2532 +1831 +3825 +3844 +3588 +2281 +2532 +3956 +3588 +3793 +2064 +4314 +846 +2532 +1321 +846 +2532 +3855 +3708 +3018 +3588 +3588 +256 +2521 +1909 +3588 +5058 +2532 +3004 +846 +190 +1473 +2532 +450 +190 +846 +2532 +1096 +2621 +846 +1722 +3588 +3614 +846 +2532 +4183 +5057 +2532 +268 +4873 +3588 +2424 +2532 +3588 +3101 +846 +1063 +1510 +4183 +2532 +190 +846 +2532 +3588 +1122 +3588 +5330 +3708 +3754 +2068 +3326 +3588 +268 +2532 +5057 +3004 +3588 +3101 +846 +3754 +3326 +3588 +5057 +2532 +268 +2068 +2532 +191 +3588 +2424 +3004 +846 +3756 +5532 +2395 +2192 +3588 +2480 +235 +3588 +2560 +2192 +3756 +2064 +2564 +1342 +235 +268 +2532 +1510 +3522 +3588 +3101 +2491 +2532 +3588 +5330 +2532 +2064 +2532 +3004 +846 +1223 +5101 +3588 +3101 +2491 +2532 +3588 +3101 +3588 +5330 +3522 +1161 +3588 +4674 +3101 +3756 +3522 +2532 +3004 +846 +3588 +2424 +3361 +1410 +3588 +5207 +3588 +3567 +1722 +3739 +3588 +3566 +3326 +846 +1510 +3522 +3745 +5550 +2192 +3588 +3566 +3326 +846 +3756 +1410 +3522 +1161 +2064 +2250 +3752 +522 +575 +846 +3588 +3566 +2532 +5119 +3522 +1722 +1565 +3588 +2250 +3762 +1915 +4470 +46 +1976 +1909 +2440 +3820 +1161 +1487 +3361 +142 +3588 +4138 +3588 +2537 +575 +846 +3588 +3820 +2532 +5501 +4978 +1096 +2532 +3762 +906 +3631 +3501 +1519 +779 +3820 +1161 +1487 +3361 +4486 +3588 +3631 +3588 +779 +2532 +3588 +3631 +622 +2532 +3588 +779 +235 +3631 +3501 +1519 +779 +2537 +2532 +1096 +846 +1722 +3588 +4521 +3899 +1223 +3588 +4702 +2532 +3588 +3101 +846 +756 +3598 +4160 +5089 +3588 +4719 +2532 +3588 +5330 +3004 +846 +3708 +5101 +4160 +3588 +4521 +3739 +3756 +1832 +2532 +3004 +846 +3763 +314 +5101 +4160 +1138 +3753 +5532 +2192 +2532 +3983 +846 +2532 +3588 +3326 +846 +4459 +1525 +1519 +3588 +3624 +3588 +2316 +1909 +8 +749 +2532 +3588 +740 +3588 +4286 +5315 +3739 +5315 +3756 +1832 +1487 +3361 +3588 +2409 +2532 +1325 +2532 +3588 +4862 +846 +1510 +2532 +3004 +846 +3588 +4521 +1223 +3588 +444 +1096 +2532 +3756 +3588 +444 +1223 +3588 +4521 +5620 +1510 +3588 +5207 +3588 +444 +2962 +2532 +3588 +4521 +2532 +1525 +3825 +1519 +4864 +2532 +1510 +1563 +444 +3583 +2192 +3588 +5495 +2532 +3906 +846 +1487 +3588 +4521 +2323 +846 +2443 +2723 +846 +2532 +3004 +3588 +444 +3588 +3588 +3584 +5495 +2192 +1453 +1519 +3588 +3319 +2532 +3004 +846 +1832 +3588 +4521 +18 +4160 +2228 +2554 +5590 +4982 +2228 +615 +1161 +3588 +4623 +2532 +4017 +846 +3326 +3709 +4818 +1909 +3588 +4457 +3588 +2588 +846 +3004 +3588 +444 +1614 +3588 +5495 +2532 +1614 +2532 +600 +3588 +5495 +846 +2532 +1831 +3588 +5330 +2117 +3326 +3588 +2265 +4824 +1325 +2596 +846 +3704 +846 +622 +2532 +3588 +2424 +3326 +3588 +3101 +846 +402 +4314 +3588 +2281 +2532 +4183 +4128 +575 +3588 +1056 +190 +2532 +575 +3588 +2449 +2532 +575 +2414 +2532 +575 +3588 +2401 +2532 +4008 +3588 +2446 +2532 +4012 +5184 +2532 +4605 +4128 +4183 +191 +3745 +4160 +2064 +4314 +846 +2532 +3004 +3588 +3101 +846 +2443 +4142 +4342 +846 +1223 +3588 +3793 +2443 +3361 +2346 +846 +1063 +4183 +2323 +5620 +1968 +846 +2443 +846 +680 +3745 +2192 +3148 +2532 +3588 +4151 +3588 +169 +3752 +846 +2334 +4363 +846 +2532 +2896 +3004 +3754 +4771 +1510 +3588 +5207 +3588 +2316 +2532 +4183 +2008 +846 +2443 +3361 +846 +5318 +4160 +2532 +305 +1519 +3588 +3735 +2532 +4341 +3739 +2309 +846 +2532 +565 +4314 +846 +2532 +4160 +1427 +2443 +1510 +3326 +846 +2532 +2443 +649 +846 +2784 +2532 +2192 +1849 +1544 +3588 +1140 +2532 +4160 +3588 +1427 +2532 +2007 +3686 +3588 +4613 +4074 +2532 +2385 +3588 +3588 +2199 +2532 +2491 +3588 +80 +3588 +2385 +2532 +2007 +846 +3686 +993 +3739 +1510 +5207 +1027 +2532 +406 +2532 +5376 +2532 +918 +2532 +3156 +2532 +2381 +2532 +2385 +3588 +3588 +256 +2532 +2280 +2532 +4613 +3588 +2581 +2532 +2455 +2469 +3739 +2532 +3860 +846 +2532 +2064 +1519 +3624 +2532 +4905 +3825 +3588 +3793 +5620 +3361 +1410 +846 +3366 +740 +5315 +2532 +191 +3588 +3844 +846 +1831 +2902 +846 +1063 +3004 +3754 +1839 +2532 +3588 +1122 +3588 +575 +2414 +2597 +3004 +3754 +954 +2192 +2532 +3754 +1722 +3588 +758 +3588 +1140 +1544 +3588 +1140 +2532 +4341 +846 +1722 +3850 +3004 +846 +4459 +1410 +4567 +4567 +1544 +2532 +1437 +932 +1909 +1438 +3307 +3756 +1410 +2476 +3588 +932 +1565 +2532 +1437 +3614 +1909 +1438 +3307 +3756 +1410 +3588 +3614 +1565 +2476 +2532 +1487 +3588 +4567 +450 +1909 +1438 +2532 +3307 +3756 +1410 +2476 +235 +5056 +2192 +235 +3756 +1410 +3762 +1519 +3588 +3614 +3588 +2478 +1525 +3588 +4632 +846 +1283 +1437 +3361 +4412 +3588 +2478 +1210 +2532 +5119 +3588 +3614 +846 +1283 +281 +3004 +4771 +3754 +863 +3588 +5207 +3588 +444 +3956 +3588 +265 +2532 +3588 +988 +1437 +3745 +987 +1161 +302 +3739 +987 +1519 +3588 +4151 +3588 +40 +3756 +2192 +859 +1519 +3588 +165 +235 +1777 +1510 +166 +265 +3754 +3004 +4151 +169 +2192 +2532 +2064 +3588 +3384 +846 +2532 +3588 +80 +846 +2532 +1854 +4739 +649 +4314 +846 +2564 +846 +2532 +2521 +4012 +846 +3793 +2532 +3004 +846 +3708 +3588 +3384 +4771 +2532 +3588 +80 +4771 +2532 +3588 +79 +4771 +1854 +2212 +4771 +2532 +611 +846 +3004 +5101 +1510 +3588 +3384 +1473 +2532 +3588 +80 +2532 +4017 +3588 +4012 +846 +2945 +2521 +3004 +3708 +3588 +3384 +1473 +2532 +3588 +80 +1473 +302 +3739 +4160 +3588 +2307 +3588 +2316 +3778 +80 +1473 +2532 +79 +2532 +3384 +1510 +2532 +3825 +756 +1321 +3844 +3588 +2281 +2532 +4863 +4314 +846 +3793 +4118 +5620 +846 +1519 +4143 +1684 +2521 +1722 +3588 +2281 +2532 +3956 +3588 +3793 +4314 +3588 +2281 +1909 +3588 +1093 +1510 +2532 +1321 +846 +1722 +3850 +4183 +2532 +3004 +846 +1722 +3588 +1322 +846 +191 +3708 +1831 +3588 +4687 +4687 +2532 +1096 +1722 +3588 +4687 +3303 +3739 +4098 +3844 +3588 +3598 +2532 +2064 +3588 +4071 +2532 +2719 +846 +2532 +243 +4098 +1909 +3588 +4075 +3699 +3756 +2192 +1093 +4183 +2532 +2117 +1816 +1223 +3588 +3361 +2192 +899 +1093 +2532 +3753 +393 +3588 +2246 +2739 +2532 +1223 +3588 +3361 +2192 +4491 +3583 +2532 +243 +4098 +1519 +3588 +173 +2532 +305 +3588 +173 +2532 +4846 +846 +2532 +2590 +3756 +1325 +2532 +243 +4098 +1519 +3588 +1093 +3588 +2570 +2532 +1325 +2590 +305 +2532 +837 +2532 +5342 +1519 +5144 +2532 +1722 +1835 +2532 +1722 +1540 +2532 +3004 +3739 +2192 +3775 +191 +191 +2532 +3753 +1096 +2596 +3441 +2065 +846 +3588 +4012 +846 +4862 +3588 +1427 +3588 +3850 +2532 +3004 +846 +4771 +1325 +3588 +3466 +3588 +932 +3588 +2316 +1161 +1565 +3588 +1854 +1722 +3850 +3588 +3956 +1096 +2443 +991 +991 +2532 +3361 +3708 +2532 +191 +191 +2532 +3361 +4920 +3361 +4218 +1994 +2532 +863 +846 +2532 +3004 +846 +3756 +1492 +3588 +3850 +3778 +2532 +4459 +3956 +3588 +3850 +1097 +3588 +4687 +3588 +3056 +4687 +1161 +3778 +1510 +3588 +3844 +3588 +3598 +3699 +4687 +3588 +3056 +2532 +3752 +191 +2117 +2064 +3588 +4567 +2532 +142 +3588 +3056 +3588 +4687 +1519 +846 +2532 +1510 +3668 +3588 +1909 +3588 +4075 +4687 +3778 +3739 +3752 +191 +3588 +3056 +2117 +3326 +5479 +2983 +846 +2532 +3756 +2192 +4491 +1722 +1438 +235 +4340 +1510 +1534 +1096 +2347 +2228 +1375 +1223 +3588 +3056 +2117 +4624 +2532 +243 +1510 +3588 +1519 +3588 +173 +4687 +3778 +1510 +3588 +3588 +3056 +191 +2532 +3588 +3308 +3588 +165 +2532 +3588 +539 +3588 +4149 +2532 +3588 +4012 +3588 +3062 +1939 +1531 +4846 +3588 +3056 +2532 +175 +1096 +2532 +1510 +3588 +1909 +3588 +1093 +3588 +2570 +4687 +1565 +3748 +191 +3588 +3056 +2532 +3858 +2532 +2592 +1722 +5144 +2532 +1722 +1835 +2532 +1722 +1540 +2532 +3004 +846 +3754 +3385 +2064 +3588 +3088 +2443 +5259 +3588 +3426 +5087 +2228 +5259 +3588 +2825 +3756 +2443 +1909 +3588 +3087 +5087 +1063 +3756 +1510 +5100 +2927 +1437 +3361 +2443 +5319 +3761 +1096 +614 +235 +2443 +2064 +1519 +5318 +1487 +5100 +2192 +3775 +191 +191 +2532 +3004 +846 +991 +5101 +191 +1722 +3739 +3358 +3354 +3354 +4771 +2532 +4369 +4771 +1063 +3739 +2192 +1325 +846 +2532 +3739 +3756 +2192 +2532 +3739 +2192 +142 +575 +846 +2532 +3004 +3779 +1510 +3588 +932 +3588 +2316 +5613 +444 +906 +3588 +4703 +1909 +3588 +1093 +2532 +2518 +2532 +1453 +3571 +2532 +2250 +2532 +3588 +4703 +985 +2532 +3373 +5613 +3756 +1492 +846 +844 +3588 +1093 +2592 +4412 +5528 +1534 +4719 +1534 +4134 +4621 +1722 +3588 +4719 +1161 +3752 +3860 +3588 +2590 +2117 +649 +3588 +1407 +3754 +3936 +3588 +2326 +2532 +3004 +4459 +3666 +3588 +932 +3588 +2316 +2228 +1722 +5101 +3850 +846 +5087 +5613 +2848 +4615 +3739 +3752 +4687 +1909 +3588 +1093 +3398 +1510 +3956 +3588 +4690 +3588 +1909 +3588 +1093 +2532 +3752 +4687 +305 +2532 +1096 +3173 +3956 +3588 +3001 +2532 +4160 +2798 +3173 +5620 +1410 +5259 +3588 +4639 +846 +2681 +3588 +4071 +3588 +3772 +2532 +5108 +3850 +4183 +2980 +846 +3588 +3056 +2531 +1410 +191 +1161 +5565 +3850 +3756 +2980 +846 +1161 +2596 +2398 +3588 +2398 +3101 +1956 +3956 +2532 +3004 +846 +1722 +1565 +3588 +2250 +3798 +1096 +1330 +1519 +3588 +4008 +2532 +863 +3588 +3793 +3880 +846 +5613 +1510 +1722 +3588 +4143 +2532 +243 +4143 +1510 +3326 +846 +2532 +1096 +2978 +3173 +417 +2532 +3588 +2949 +1911 +1519 +3588 +4143 +5620 +2235 +1072 +3588 +4143 +2532 +846 +1510 +1722 +3588 +4403 +1909 +3588 +4344 +2518 +2532 +1453 +846 +2532 +3004 +846 +1320 +3756 +3199 +4771 +3754 +622 +2532 +1326 +2008 +3588 +417 +2532 +3004 +3588 +2281 +4623 +5392 +2532 +2869 +3588 +417 +2532 +1096 +1055 +3173 +2532 +3004 +846 +5101 +1169 +1510 +3779 +4459 +3756 +2192 +4102 +2532 +5399 +5401 +3173 +2532 +3004 +4314 +240 +686 +5101 +3778 +1510 +3754 +2532 +3588 +417 +2532 +3588 +2281 +5219 +846 +2532 +2064 +1519 +3588 +4008 +3588 +2281 +1519 +3588 +5561 +3588 +1086 +2532 +1831 +846 +1537 +3588 +4143 +2117 +5221 +846 +1537 +3588 +3419 +444 +1722 +4151 +169 +3739 +3588 +2731 +2192 +1722 +3588 +3418 +2532 +3761 +254 +3765 +3762 +1410 +846 +1210 +1223 +3588 +846 +4178 +3976 +2532 +254 +1210 +2532 +1288 +5259 +846 +3588 +254 +2532 +3588 +3976 +4937 +2532 +3762 +2480 +846 +1150 +2532 +1223 +3956 +3571 +2532 +2250 +1722 +3588 +3418 +2532 +1722 +3588 +3735 +1510 +2896 +2532 +2629 +1438 +3037 +2532 +3708 +3588 +2424 +575 +3113 +5143 +2532 +4352 +846 +2532 +2896 +5456 +3173 +3004 +5101 +1473 +2532 +4771 +2424 +5207 +3588 +2316 +3588 +5310 +3726 +4771 +3588 +2316 +3361 +1473 +928 +1063 +3004 +846 +3588 +4151 +3588 +169 +1831 +1537 +3588 +444 +2532 +1905 +846 +5101 +3686 +4771 +2532 +3004 +846 +3003 +3686 +1473 +3754 +4183 +1510 +2532 +3870 +846 +4183 +2443 +3361 +846 +649 +1854 +3588 +5561 +1161 +1510 +1563 +4314 +3588 +3735 +34 +5519 +3173 +1006 +2532 +3870 +846 +3004 +3992 +1473 +1519 +3588 +5519 +2443 +1519 +846 +1525 +2532 +2010 +846 +2532 +1831 +3588 +4151 +3588 +169 +1525 +1519 +3588 +5519 +2532 +3729 +3588 +34 +2596 +3588 +2911 +1519 +3588 +2281 +5613 +1367 +2532 +4155 +1722 +3588 +2281 +2532 +3588 +1006 +846 +5343 +2532 +518 +1519 +3588 +4172 +2532 +1519 +3588 +68 +2532 +2064 +3708 +5101 +1510 +3588 +1096 +2532 +2064 +4314 +3588 +2424 +2532 +2334 +3588 +1139 +3588 +2192 +3588 +3003 +2521 +2439 +2532 +4993 +2532 +5399 +2532 +1334 +846 +3588 +3708 +4459 +1096 +3588 +1139 +2532 +4012 +3588 +5519 +2532 +756 +3870 +846 +565 +575 +3588 +3725 +846 +2532 +1684 +846 +1519 +3588 +4143 +3870 +846 +3588 +1139 +2443 +3326 +846 +1510 +2532 +3756 +863 +846 +235 +3004 +846 +5217 +1519 +3588 +3624 +4771 +4314 +3588 +4674 +2532 +518 +846 +3745 +3588 +2962 +4771 +4160 +2532 +1653 +4771 +2532 +565 +2532 +756 +2784 +1722 +3588 +1179 +3745 +4160 +846 +3588 +2424 +2532 +3956 +2296 +2532 +1276 +3588 +2424 +1722 +3588 +4143 +3825 +1519 +3588 +4008 +4863 +3793 +4183 +1909 +846 +2532 +1510 +3844 +3588 +2281 +2532 +2064 +1520 +3588 +752 +3686 +2383 +2532 +3708 +846 +4098 +4314 +3588 +4228 +846 +2532 +3870 +846 +4183 +3004 +3754 +3588 +2365 +1473 +2079 +2192 +2443 +2064 +2007 +3588 +5495 +846 +2443 +4982 +2532 +2198 +2532 +565 +3326 +846 +2532 +190 +846 +3793 +4183 +2532 +4918 +846 +2532 +1135 +1510 +1722 +4511 +129 +1427 +2094 +2532 +4183 +3958 +5259 +4183 +2395 +2532 +1159 +3588 +3844 +846 +3956 +2532 +3367 +5623 +235 +3123 +1519 +3588 +5501 +2064 +191 +3588 +4012 +3588 +2424 +2064 +1722 +3588 +3793 +3693 +680 +3588 +2440 +846 +1063 +3004 +3754 +1437 +680 +2579 +3588 +2440 +846 +4982 +2532 +2117 +3583 +3588 +4077 +3588 +129 +846 +2532 +1097 +3588 +4983 +3754 +2390 +575 +3588 +3148 +2532 +2117 +3588 +2424 +1921 +1722 +1438 +3588 +1537 +846 +1411 +1831 +1994 +1722 +3588 +3793 +3004 +5101 +680 +1473 +3588 +2440 +2532 +3004 +846 +3588 +3101 +846 +991 +3588 +3793 +4918 +4771 +2532 +3004 +5101 +1473 +680 +2532 +4017 +3708 +3588 +3778 +4160 +1161 +3588 +1135 +5399 +2532 +5141 +1492 +3739 +1096 +846 +2064 +2532 +4363 +846 +2532 +3004 +846 +3956 +3588 +225 +1161 +3588 +3004 +846 +2364 +3588 +4102 +4771 +4982 +4771 +5217 +1519 +1515 +2532 +1510 +5199 +575 +3588 +3148 +4771 +2089 +846 +2980 +2064 +575 +3588 +752 +3004 +3754 +3588 +2364 +4771 +599 +5101 +2089 +4660 +3588 +1320 +1161 +3588 +2424 +3878 +3588 +3056 +2980 +3004 +3588 +752 +3361 +5399 +3440 +4100 +2532 +3756 +863 +3762 +3326 +846 +4870 +1487 +3361 +3588 +4074 +2532 +2385 +2532 +2491 +3588 +80 +2385 +2532 +2064 +1519 +3588 +3624 +3588 +752 +2532 +2334 +2351 +2532 +2799 +2532 +214 +4183 +2532 +1525 +3004 +846 +5101 +2350 +2532 +2799 +3588 +3813 +3756 +599 +235 +2518 +2532 +2606 +846 +1161 +846 +1544 +3956 +3880 +3588 +3962 +3588 +3813 +2532 +3588 +3384 +2532 +3588 +3326 +846 +2532 +1531 +3699 +1510 +3588 +3813 +2532 +2902 +3588 +5495 +3588 +3813 +3004 +846 +5008 +2891 +3739 +1510 +3177 +3588 +2877 +4771 +3004 +1453 +2532 +2117 +450 +3588 +2877 +2532 +4043 +1063 +1510 +2094 +1427 +2532 +1839 +2117 +1611 +3173 +2532 +1291 +846 +4183 +2443 +3367 +1097 +3778 +2532 +3004 +1325 +846 +5315 +2532 +1831 +1564 +2532 +2064 +1519 +3588 +3968 +846 +2532 +190 +846 +3588 +3101 +846 +2532 +1096 +4521 +756 +1321 +1722 +3588 +4864 +2532 +3588 +4183 +191 +1605 +3004 +4159 +3778 +3778 +2532 +5101 +3588 +4678 +3588 +1325 +3778 +2532 +3588 +1411 +5108 +1223 +3588 +5495 +846 +1096 +3756 +3778 +1510 +3588 +5045 +3588 +5207 +3588 +3137 +2532 +80 +2385 +2532 +2500 +2532 +2455 +2532 +4613 +2532 +3756 +1510 +3588 +79 +846 +5602 +4314 +1473 +2532 +4624 +1722 +846 +2532 +3004 +846 +3588 +2424 +3754 +3756 +1510 +4396 +820 +1487 +3361 +1722 +3588 +3968 +846 +2532 +1722 +3588 +4773 +846 +2532 +1722 +3588 +3614 +846 +2532 +3756 +1410 +1563 +4160 +3762 +1411 +1487 +3361 +3641 +732 +2007 +3588 +5495 +2323 +2532 +2296 +1223 +3588 +570 +846 +2532 +4013 +3588 +2968 +2945 +1321 +2532 +4341 +3588 +1427 +2532 +756 +846 +649 +1417 +1417 +2532 +1325 +846 +1849 +3588 +4151 +3588 +169 +2532 +3853 +846 +2443 +3367 +142 +1519 +3598 +1487 +3361 +4464 +3440 +3361 +740 +3361 +4082 +3361 +1519 +3588 +2223 +5475 +235 +5265 +4547 +2532 +3361 +1746 +1417 +5509 +2532 +3004 +846 +1437 +3699 +1525 +1519 +3614 +1563 +3306 +2193 +302 +1831 +1564 +2532 +302 +3739 +5117 +3361 +1209 +4771 +3366 +191 +4771 +1607 +1564 +1621 +3588 +5522 +3588 +5270 +3588 +4228 +4771 +1519 +3142 +846 +2532 +1831 +2784 +2443 +3340 +2532 +1140 +4183 +1544 +2532 +218 +1637 +4183 +732 +2532 +2323 +2532 +191 +3588 +935 +2264 +1063 +5318 +1096 +3588 +3686 +846 +2532 +3004 +3754 +2491 +3588 +907 +1453 +1537 +3498 +2532 +1223 +3778 +1754 +3588 +1411 +1722 +846 +1161 +243 +3004 +3754 +2243 +1510 +1161 +243 +3004 +3754 +4396 +5613 +1520 +3588 +4396 +1161 +191 +3588 +2264 +3004 +3739 +1473 +607 +2491 +3778 +1453 +1063 +846 +3588 +2264 +649 +2902 +3588 +2491 +2532 +1210 +846 +1722 +5438 +1223 +2266 +3588 +1135 +5376 +3588 +80 +846 +3754 +846 +1060 +1063 +3004 +3588 +2491 +3588 +2264 +3754 +3756 +1832 +4771 +2192 +3588 +1135 +3588 +80 +4771 +1161 +3588 +2266 +1758 +846 +2532 +2309 +846 +615 +2532 +3756 +1410 +1063 +3588 +2264 +5399 +3588 +2491 +1492 +846 +435 +1342 +2532 +40 +2532 +4933 +846 +2532 +191 +846 +4183 +639 +2532 +2234 +846 +191 +2532 +1096 +2250 +2121 +3753 +2264 +3588 +1077 +846 +1173 +4160 +3588 +3175 +846 +2532 +3588 +5506 +2532 +3588 +4413 +3588 +1056 +2532 +1525 +3588 +2364 +846 +3588 +2266 +2532 +3738 +700 +3588 +2264 +2532 +3588 +4873 +1161 +3588 +935 +3004 +3588 +2877 +154 +1473 +1437 +3739 +2309 +2532 +1325 +4771 +2532 +3660 +846 +3754 +1437 +1473 +154 +1325 +4771 +2193 +2255 +3588 +932 +1473 +2532 +1831 +3004 +3588 +3384 +846 +5101 +154 +1161 +3588 +3004 +3588 +2776 +2491 +3588 +907 +2532 +1525 +2117 +3326 +4710 +4314 +3588 +935 +154 +3004 +2309 +2443 +1824 +1325 +1473 +1909 +4094 +3588 +2776 +2491 +3588 +910 +2532 +4036 +1096 +3588 +935 +1223 +3588 +3727 +2532 +3588 +345 +3756 +2309 +114 +846 +2532 +2117 +649 +4688 +3588 +935 +2004 +5342 +3588 +2776 +846 +2532 +565 +607 +846 +1722 +3588 +5438 +2532 +5342 +3588 +2776 +846 +1909 +4094 +2532 +1325 +846 +3588 +2877 +2532 +3588 +2877 +1325 +846 +3588 +3384 +846 +2532 +191 +3588 +3101 +846 +2064 +2532 +142 +3588 +4430 +846 +2532 +5087 +846 +1722 +3419 +2532 +4863 +3588 +652 +4314 +3588 +2424 +2532 +518 +846 +3956 +3745 +4160 +2532 +3745 +1321 +2532 +3004 +846 +1205 +4771 +846 +2596 +2398 +1519 +2048 +5117 +2532 +373 +3641 +1063 +1510 +3588 +2064 +2532 +3588 +5217 +4183 +2532 +3761 +5315 +2119 +2532 +565 +1722 +3588 +4143 +1519 +2048 +5117 +2596 +2398 +2532 +3708 +846 +5217 +2532 +1921 +4183 +2532 +3979 +575 +3956 +3588 +4172 +4936 +1563 +2532 +4281 +846 +2532 +1831 +3708 +4183 +3793 +2532 +4697 +1909 +846 +3754 +1510 +5613 +4263 +3361 +2192 +4166 +2532 +756 +1321 +846 +4183 +2532 +2235 +5610 +4183 +1096 +4334 +846 +3588 +3101 +846 +3004 +3754 +2048 +1510 +3588 +5117 +2532 +2235 +5610 +4183 +630 +846 +2443 +565 +1519 +3588 +2945 +68 +2532 +2968 +59 +1438 +5101 +5315 +1161 +3588 +611 +3004 +846 +1325 +846 +4771 +5315 +2532 +3004 +846 +565 +59 +1220 +1250 +740 +2532 +1325 +846 +5315 +1161 +3588 +3004 +846 +4214 +740 +2192 +5217 +3708 +2532 +1097 +3004 +4002 +2532 +1417 +2486 +2532 +2004 +846 +347 +3956 +4849 +4849 +1909 +3588 +5515 +5528 +2532 +377 +4237 +4237 +2596 +1540 +2532 +2596 +4004 +2532 +2983 +3588 +4002 +740 +2532 +3588 +1417 +2486 +308 +1519 +3588 +3772 +2127 +2532 +2622 +3588 +740 +2532 +1325 +3588 +3101 +2443 +3908 +846 +2532 +3588 +1417 +2486 +3307 +3956 +2532 +5315 +3956 +2532 +5526 +2532 +142 +2801 +1427 +2894 +4138 +2532 +575 +3588 +2486 +2532 +1510 +3588 +5315 +3588 +740 +4000 +435 +2532 +2117 +315 +3588 +3101 +846 +1684 +1519 +3588 +4143 +2532 +4254 +1519 +3588 +4008 +4314 +966 +2193 +846 +630 +3588 +3793 +2532 +657 +846 +565 +1519 +3588 +3735 +4336 +2532 +3798 +1096 +1510 +3588 +4143 +1722 +3319 +3588 +2281 +2532 +846 +3441 +1909 +3588 +1093 +2532 +3708 +846 +928 +1722 +3588 +1643 +1063 +1510 +3588 +417 +1727 +846 +4012 +5067 +5438 +3588 +3571 +2064 +4314 +846 +4043 +1909 +3588 +2281 +2532 +2309 +3928 +846 +1161 +3588 +3708 +846 +1909 +3588 +2281 +4043 +1380 +3754 +5326 +1510 +2532 +349 +1063 +3956 +846 +3708 +2532 +5015 +1161 +3588 +2117 +2980 +3326 +846 +2532 +3004 +846 +2293 +1473 +1510 +3361 +5399 +2532 +305 +4314 +846 +1519 +3588 +4143 +2532 +2869 +3588 +417 +2532 +3029 +1537 +4053 +1722 +1438 +1839 +1063 +3756 +4920 +1909 +3588 +740 +235 +1510 +4456 +846 +3588 +2588 +2532 +1276 +1909 +3588 +1093 +2064 +1519 +1082 +2532 +4358 +2532 +1831 +846 +1537 +3588 +4143 +2117 +1921 +846 +4063 +3650 +3588 +5561 +1565 +2532 +756 +1909 +3588 +2895 +3588 +2560 +2192 +4064 +3699 +191 +3754 +1510 +2532 +302 +3699 +1531 +1519 +2968 +2228 +1519 +4172 +2228 +1519 +68 +1722 +3588 +58 +5087 +3588 +770 +2532 +3870 +846 +2443 +2579 +3588 +2899 +3588 +2440 +846 +680 +2532 +302 +3745 +680 +846 +4982 +2532 +4863 +4314 +846 +3588 +5330 +2532 +5100 +3588 +1122 +2064 +575 +2414 +2532 +3708 +5100 +3588 +3101 +846 +3754 +2839 +5495 +3778 +1510 +449 +2068 +3588 +740 +1063 +3588 +5330 +2532 +3956 +3588 +2453 +1437 +3361 +4435 +3538 +3588 +5495 +3756 +2068 +2902 +3588 +3862 +3588 +4245 +2532 +575 +58 +1437 +3361 +4472 +3756 +2068 +2532 +243 +4183 +1510 +3739 +3880 +2902 +909 +4221 +2532 +3582 +2532 +5473 +2532 +1905 +846 +3588 +5330 +2532 +3588 +1122 +1223 +5101 +3756 +4043 +3588 +3101 +4771 +2596 +3588 +3862 +3588 +4245 +235 +2839 +5495 +2068 +3588 +740 +1161 +3588 +3004 +846 +2573 +4395 +2268 +4012 +4771 +3588 +5273 +5613 +1125 +3754 +3778 +3588 +2992 +3588 +5491 +1473 +5091 +1161 +3588 +2588 +846 +4206 +568 +575 +1473 +1161 +3155 +4576 +1473 +1321 +1319 +1778 +444 +863 +3588 +1785 +3588 +2316 +2902 +3588 +3862 +3588 +444 +2532 +3004 +846 +2573 +114 +3588 +1785 +3588 +2316 +2443 +3588 +3862 +4771 +5083 +1063 +3475 +3004 +5091 +3588 +3962 +4771 +2532 +3588 +3384 +4771 +2532 +3588 +2551 +3962 +2228 +3384 +2288 +5053 +1161 +4771 +3004 +1437 +3004 +444 +3588 +3962 +2228 +3588 +3384 +2878 +3739 +1510 +1435 +1437 +3739 +1537 +1473 +5623 +3765 +863 +846 +3762 +4160 +3588 +3962 +2228 +3588 +3384 +208 +3588 +3056 +3588 +2316 +3588 +3862 +4771 +3739 +3860 +2532 +3946 +5108 +4183 +4160 +2532 +4341 +3825 +3588 +3793 +3004 +846 +191 +1473 +3956 +2532 +4920 +3762 +1510 +1855 +3588 +444 +1531 +1519 +846 +3739 +1410 +2840 +846 +235 +3588 +1537 +3588 +444 +1607 +1510 +3588 +2840 +3588 +444 +2532 +3753 +1525 +1519 +3624 +575 +3588 +3793 +1905 +846 +3588 +3101 +846 +3588 +3850 +2532 +3004 +846 +3779 +2532 +4771 +801 +1510 +3756 +3539 +3754 +3956 +3588 +1855 +1531 +1519 +3588 +444 +3756 +1410 +846 +2840 +3754 +3756 +1531 +1519 +846 +3588 +2588 +235 +1519 +3588 +2836 +2532 +1519 +3588 +856 +1607 +2511 +3956 +3588 +1033 +1161 +3004 +3754 +3588 +1537 +3588 +444 +1607 +1565 +2840 +3588 +444 +1063 +2081 +1537 +3588 +2588 +3588 +444 +3588 +1261 +3588 +2556 +1607 +4202 +2829 +5408 +3430 +4124 +4189 +1388 +766 +3788 +4190 +988 +5243 +877 +3956 +3778 +3588 +4190 +2081 +1607 +2532 +2840 +3588 +444 +1161 +1564 +450 +565 +1519 +3588 +3725 +5184 +2532 +1525 +1519 +3614 +3762 +1097 +2309 +2532 +3756 +1410 +2990 +235 +2117 +191 +4012 +846 +1135 +3739 +3588 +2365 +846 +2192 +4151 +169 +2064 +4363 +4314 +3588 +4228 +846 +1161 +3588 +1135 +1510 +1674 +4949 +3588 +1085 +2532 +2065 +846 +2443 +3588 +1140 +1544 +1537 +3588 +2364 +846 +2532 +3004 +846 +863 +4412 +5526 +3588 +5043 +1063 +3756 +1510 +2570 +2983 +3588 +740 +3588 +5043 +2532 +3588 +2952 +906 +1161 +3588 +611 +2532 +3004 +846 +3483 +2962 +2532 +3588 +2952 +5270 +3588 +5132 +2068 +575 +3588 +5589 +3588 +3813 +2532 +3004 +846 +1223 +3778 +3588 +3056 +5217 +1831 +1537 +3588 +2364 +4771 +3588 +1140 +2532 +565 +1519 +3588 +3624 +846 +2147 +3588 +3813 +906 +1909 +3588 +2825 +2532 +3588 +1140 +1831 +2532 +3825 +1831 +1537 +3588 +3725 +5184 +2064 +1223 +4605 +1519 +3588 +2281 +3588 +1056 +303 +3319 +3588 +3725 +1179 +2532 +5342 +846 +2974 +2532 +3424 +2532 +3870 +846 +2443 +2007 +846 +3588 +5495 +2532 +618 +846 +575 +3588 +3793 +2596 +2398 +906 +3588 +1147 +846 +1519 +3588 +3775 +846 +2532 +4429 +680 +3588 +1100 +846 +2532 +308 +1519 +3588 +3772 +4727 +2532 +3004 +846 +2188 +3739 +1510 +1272 +2532 +455 +846 +3588 +189 +2532 +2117 +3089 +3588 +1199 +3588 +1100 +846 +2532 +2980 +3723 +2532 +1291 +846 +2443 +3367 +3004 +1161 +3745 +846 +1291 +846 +3123 +4053 +2784 +2532 +5249 +1605 +3004 +2573 +3956 +4160 +2532 +4160 +3588 +2974 +191 +2532 +216 +2980 +1722 +1565 +3588 +2250 +3825 +4183 +3793 +1510 +2532 +3361 +2192 +5101 +5315 +4341 +3588 +3101 +3004 +846 +4697 +1909 +3588 +3793 +3754 +2235 +2250 +5140 +4357 +1473 +2532 +3756 +2192 +5101 +5315 +2532 +1437 +630 +846 +3523 +1519 +3624 +846 +1590 +1722 +3588 +3598 +2532 +5100 +846 +575 +3113 +1510 +2532 +611 +846 +3588 +3101 +846 +3754 +4159 +1410 +5100 +3778 +5602 +5526 +740 +1909 +2047 +2532 +2065 +846 +4214 +740 +2192 +1161 +3588 +3004 +2033 +2532 +3853 +3588 +3793 +377 +1909 +3588 +1093 +2532 +2983 +3588 +2033 +740 +2168 +2806 +2532 +1325 +3588 +3101 +846 +2443 +3908 +2532 +3908 +3588 +3793 +2532 +2192 +2485 +3641 +2532 +2127 +846 +3004 +2532 +3778 +3908 +2532 +5315 +2532 +5526 +2532 +142 +4051 +2801 +2033 +4711 +1161 +1510 +5613 +5070 +2532 +630 +846 +2532 +2117 +1684 +1519 +3588 +4143 +3326 +3588 +3101 +846 +2064 +1519 +3588 +3313 +1148 +2532 +1831 +3588 +5330 +2532 +756 +4802 +846 +2212 +3844 +846 +4592 +575 +3588 +3772 +3985 +846 +2532 +389 +3588 +4151 +846 +3004 +5101 +3588 +1074 +3778 +2212 +4592 +281 +3004 +4771 +1487 +1325 +3588 +1074 +3778 +4592 +2532 +863 +846 +3825 +1684 +565 +1519 +3588 +4008 +2532 +1950 +2983 +740 +2532 +1487 +3361 +1520 +740 +3756 +2192 +3326 +1438 +1722 +3588 +4143 +2532 +1291 +846 +3004 +3708 +991 +575 +3588 +2219 +3588 +5330 +2532 +3588 +2219 +2264 +2532 +1260 +4314 +240 +3754 +740 +3756 +2192 +2532 +1097 +3004 +846 +5101 +1260 +3754 +740 +3756 +2192 +3768 +3539 +3761 +4920 +4456 +2192 +3588 +2588 +4771 +3788 +2192 +3756 +991 +2532 +3775 +2192 +3756 +191 +2532 +3756 +3421 +3753 +3588 +4002 +740 +2806 +1519 +3588 +4000 +4214 +2894 +2801 +4134 +142 +3004 +846 +1427 +3753 +3588 +2033 +1519 +3588 +5070 +4214 +4711 +4138 +2801 +142 +2532 +3004 +2033 +2532 +3004 +846 +3768 +4920 +2532 +2064 +1519 +966 +2532 +5342 +846 +5185 +2532 +3870 +846 +2443 +846 +680 +2532 +1949 +3588 +5495 +3588 +5185 +1627 +846 +1854 +3588 +2968 +2532 +4429 +1519 +3588 +3659 +846 +2007 +3588 +5495 +846 +1905 +846 +1487 +5100 +991 +2532 +308 +3004 +991 +3588 +444 +3754 +5613 +1186 +4043 +3708 +1534 +3825 +2007 +3588 +5495 +1909 +3588 +3788 +846 +2532 +1227 +2532 +600 +2532 +1689 +5081 +537 +2532 +649 +846 +1519 +3624 +846 +3004 +3366 +1519 +3588 +2968 +1525 +2532 +1831 +3588 +2424 +2532 +3588 +3101 +846 +1519 +3588 +2968 +2542 +3588 +5376 +2532 +1722 +3588 +3598 +1905 +3588 +3101 +846 +3004 +846 +5101 +1473 +1510 +3004 +3588 +444 +1161 +3588 +3004 +846 +3004 +3754 +2491 +3588 +910 +2532 +243 +2243 +1161 +243 +3754 +1520 +3588 +4396 +2532 +846 +1905 +846 +1161 +4771 +5101 +1473 +1510 +3004 +611 +3588 +4074 +3004 +846 +4771 +1510 +3588 +5547 +2532 +2008 +846 +2443 +3367 +3004 +4012 +846 +2532 +756 +1321 +846 +3754 +1163 +3588 +5207 +3588 +444 +4183 +3958 +2532 +593 +5259 +3588 +4245 +2532 +3588 +749 +2532 +3588 +1122 +2532 +615 +2532 +3326 +5140 +2250 +450 +2532 +3954 +3588 +3056 +2980 +2532 +3588 +4074 +4355 +846 +756 +2008 +846 +1161 +3588 +1994 +2532 +3708 +3588 +3101 +846 +2008 +4074 +2532 +3004 +5217 +3694 +1473 +4567 +3754 +3756 +5426 +3588 +3588 +2316 +235 +3588 +3588 +444 +2532 +4341 +3588 +3793 +4862 +3588 +3101 +846 +3004 +846 +1487 +5100 +2309 +3694 +1473 +2064 +533 +1438 +2532 +142 +3588 +4716 +846 +2532 +190 +1473 +1063 +1437 +3739 +2309 +3588 +5590 +846 +4982 +622 +846 +1161 +302 +3739 +622 +3588 +5590 +846 +1752 +1473 +2532 +3588 +2098 +4982 +846 +1063 +5101 +5623 +444 +2770 +3588 +2889 +3650 +2532 +2210 +3588 +5590 +846 +1063 +5101 +1325 +444 +465 +3588 +5590 +846 +1063 +1437 +3739 +1870 +1473 +2532 +3588 +1699 +3056 +1722 +3588 +1074 +3778 +3588 +3428 +2532 +268 +2532 +3588 +5207 +3588 +444 +1870 +846 +3752 +2064 +1722 +3588 +1391 +3588 +3962 +846 +3326 +3588 +32 +3588 +40 +2532 +3004 +846 +281 +3004 +4771 +3754 +1510 +5100 +3588 +5602 +2476 +3748 +3756 +3361 +1089 +2288 +2193 +302 +3708 +3588 +932 +3588 +2316 +2064 +1722 +1411 +2532 +3326 +2250 +1803 +3880 +3588 +2424 +3588 +4074 +2532 +3588 +2385 +2532 +2491 +2532 +399 +846 +1519 +3735 +5308 +2596 +2398 +3441 +2532 +3339 +1715 +846 +2532 +3588 +2440 +846 +1096 +4744 +3022 +3029 +3634 +1102 +1909 +3588 +1093 +3756 +1410 +3779 +3021 +2532 +3708 +846 +2243 +4862 +3475 +2532 +1510 +4814 +3588 +2424 +2532 +611 +3588 +4074 +3004 +3588 +2424 +4461 +2570 +1510 +1473 +5602 +1510 +2532 +4160 +5140 +4633 +4771 +1520 +2532 +3475 +1520 +2532 +2243 +1520 +1063 +3756 +1492 +5101 +611 +1063 +1630 +1096 +2532 +1096 +3507 +1982 +846 +2532 +1096 +5456 +1537 +3588 +3507 +3778 +1510 +3588 +5207 +1473 +3588 +27 +191 +846 +2532 +1819 +4017 +3765 +3762 +3708 +235 +3588 +2424 +3440 +3326 +1438 +2532 +2597 +846 +1537 +3588 +3735 +1291 +846 +2443 +3367 +3739 +3708 +1334 +1487 +3361 +3752 +3588 +5207 +3588 +444 +1537 +3498 +450 +2532 +3588 +3056 +2902 +4314 +1438 +4802 +5101 +1510 +3588 +1537 +3498 +450 +2532 +1905 +846 +3004 +3754 +3004 +3588 +1122 +3754 +1163 +2243 +2064 +4412 +1161 +3588 +5346 +846 +3303 +2243 +2064 +4412 +600 +3956 +2532 +4459 +1125 +1909 +3588 +5207 +3588 +444 +2443 +4183 +3958 +2532 +1847 +235 +3004 +4771 +3754 +2532 +2243 +2064 +2532 +4160 +846 +3745 +2309 +2531 +1125 +1909 +846 +2532 +2064 +4314 +3588 +3101 +3708 +3793 +4183 +4012 +846 +2532 +1122 +4802 +4314 +846 +2532 +2117 +3956 +3588 +3793 +3708 +846 +1568 +2532 +4370 +782 +846 +2532 +1905 +846 +5101 +4802 +4314 +846 +2532 +611 +846 +1520 +1537 +3588 +3793 +1320 +5342 +3588 +5207 +1473 +4314 +4771 +2192 +4151 +216 +2532 +1437 +3699 +846 +2638 +4486 +846 +2532 +875 +2532 +5149 +3588 +3599 +2532 +3583 +2532 +3004 +3588 +3101 +4771 +2443 +846 +1544 +2532 +3756 +2480 +1161 +3588 +611 +846 +3004 +5599 +1074 +571 +2193 +4219 +4314 +4771 +1510 +2193 +4219 +430 +4771 +5342 +846 +4314 +1473 +2532 +5342 +846 +4314 +846 +2532 +3708 +846 +3588 +4151 +2117 +4952 +846 +2532 +4098 +1909 +3588 +1093 +2947 +875 +2532 +1905 +3588 +3962 +846 +4214 +5550 +1510 +5613 +3778 +1096 +846 +1161 +3588 +3004 +1537 +3812 +2532 +4178 +2532 +1519 +4442 +846 +906 +2532 +1519 +5204 +2443 +622 +846 +235 +1487 +5100 +1410 +997 +1473 +4697 +1909 +1473 +1161 +3588 +2424 +3004 +846 +3588 +1487 +1410 +3956 +1415 +3588 +4100 +2117 +2896 +3588 +3962 +3588 +3813 +3004 +4100 +997 +1473 +3588 +570 +1161 +3588 +2424 +3708 +3754 +1998 +3793 +2008 +3588 +4151 +3588 +169 +3004 +846 +3588 +216 +2532 +2974 +4151 +1473 +2004 +4771 +1831 +1537 +846 +2532 +3371 +1525 +1519 +846 +2532 +2896 +2532 +4183 +4682 +1831 +2532 +1096 +5616 +3498 +5620 +3588 +4183 +3004 +3754 +599 +1161 +3588 +2424 +2902 +3588 +5495 +846 +1453 +846 +2532 +450 +2532 +1525 +846 +1519 +3624 +3588 +3101 +846 +2596 +2398 +1905 +846 +3754 +1473 +3756 +1410 +1544 +846 +2532 +3004 +846 +3778 +3588 +1085 +1722 +3762 +1410 +1831 +1487 +3361 +1722 +4335 +2547 +1831 +3899 +1223 +3588 +1056 +2532 +3756 +2309 +2443 +5100 +1097 +1063 +1321 +3588 +3101 +846 +2532 +3004 +846 +3754 +3588 +5207 +3588 +444 +3860 +1519 +5495 +444 +2532 +615 +846 +2532 +615 +3326 +5140 +2250 +450 +1161 +3588 +50 +3588 +4487 +2532 +5399 +846 +1905 +2532 +2064 +1519 +2584 +2532 +1722 +3588 +3614 +1096 +1905 +846 +5101 +1722 +3588 +3598 +1260 +1161 +3588 +4623 +1063 +4314 +240 +1256 +1722 +3588 +3598 +5101 +3173 +2532 +2523 +5455 +3588 +1427 +2532 +3004 +846 +1487 +5100 +2309 +4413 +1510 +1510 +3956 +2078 +2532 +3956 +1249 +2532 +2983 +3813 +2476 +846 +1722 +3319 +846 +2532 +1723 +846 +3004 +846 +302 +3739 +1520 +3588 +5108 +3813 +1209 +1909 +3588 +3686 +1473 +1473 +1209 +2532 +302 +3739 +1473 +1209 +3756 +1473 +1209 +235 +3588 +649 +1473 +5346 +846 +3588 +2491 +1320 +3708 +5100 +1722 +3588 +3686 +4771 +1544 +1140 +3739 +3756 +190 +1473 +2532 +2967 +846 +3754 +3756 +190 +1473 +1161 +3588 +2424 +3004 +3361 +2967 +846 +1063 +3762 +1510 +3739 +4160 +1411 +1909 +3588 +3686 +1473 +2532 +1410 +5035 +2551 +1473 +1063 +3739 +3756 +1510 +2596 +1473 +5228 +1473 +1510 +1063 +302 +3739 +4222 +4771 +4221 +5204 +1722 +3686 +3754 +5547 +1510 +281 +3004 +4771 +3754 +3756 +3361 +622 +3588 +3408 +846 +2532 +302 +3739 +4624 +1520 +3588 +3398 +3778 +3588 +4100 +2570 +1510 +846 +3123 +1487 +4029 +3458 +3684 +4012 +3588 +5137 +846 +2532 +906 +1519 +3588 +2281 +2532 +1437 +4624 +4771 +3588 +5495 +4771 +609 +846 +2570 +1510 +4771 +2948 +1525 +1519 +3588 +2222 +2228 +3588 +1417 +5495 +2192 +565 +1519 +3588 +1067 +1519 +3588 +4442 +3588 +762 +2532 +1437 +3588 +4228 +4771 +4624 +4771 +609 +846 +2570 +1510 +4771 +1525 +1519 +3588 +2222 +5560 +2228 +3588 +1417 +4228 +2192 +906 +1519 +3588 +1067 +2532 +1437 +3588 +3788 +4771 +4624 +4771 +1544 +846 +2570 +1510 +4771 +3442 +1525 +1519 +3588 +932 +3588 +2316 +2228 +1417 +3788 +2192 +906 +1519 +3588 +1067 +3699 +3588 +4663 +846 +3756 +5053 +2532 +3588 +4442 +3756 +4570 +1063 +3956 +4442 +233 +2570 +3588 +217 +1161 +1437 +3588 +217 +358 +1096 +1722 +5101 +846 +741 +2192 +1722 +1438 +217 +2532 +1514 +1722 +240 +2532 +1564 +450 +2064 +1519 +3588 +3725 +3588 +2449 +2532 +4008 +3588 +2446 +2532 +4848 +3825 +3793 +4314 +846 +2532 +5613 +1486 +3825 +1321 +846 +2532 +4334 +5330 +1905 +846 +1487 +1832 +435 +1135 +630 +3985 +846 +1161 +3588 +611 +3004 +846 +5101 +4771 +1781 +3475 +1161 +3588 +3004 +2010 +3475 +975 +647 +1125 +2532 +630 +1161 +3588 +2424 +3004 +846 +4314 +3588 +4641 +4771 +1125 +4771 +3588 +1785 +3778 +1161 +575 +746 +2937 +730 +2532 +2338 +4160 +846 +1752 +3778 +2641 +444 +3588 +3962 +846 +2532 +3588 +3384 +2532 +1510 +3588 +1417 +1519 +4561 +1520 +5620 +3765 +1510 +1417 +235 +1520 +4561 +3767 +3739 +3588 +2316 +4801 +444 +3361 +5563 +2532 +1519 +3588 +3614 +3825 +3588 +3101 +4012 +3778 +1905 +846 +2532 +3004 +846 +302 +3739 +630 +3588 +1135 +846 +2532 +1060 +243 +3429 +1909 +846 +2532 +1437 +846 +630 +3588 +435 +846 +1060 +243 +3429 +2532 +4374 +846 +3813 +2443 +846 +680 +1161 +3588 +3101 +2008 +846 +1161 +3708 +3588 +2424 +23 +2532 +3004 +846 +863 +3588 +3813 +2064 +4314 +1473 +3361 +2967 +846 +1063 +3588 +5108 +1510 +3588 +932 +3588 +2316 +281 +3004 +4771 +302 +3739 +3361 +1209 +3588 +932 +3588 +2316 +5613 +3813 +3756 +3361 +1525 +1519 +846 +2532 +1723 +846 +2127 +5087 +3588 +5495 +1909 +846 +2532 +1607 +846 +1519 +3598 +1520 +4370 +2532 +1120 +846 +1905 +846 +1320 +18 +5101 +4160 +2443 +2222 +166 +2816 +1161 +3588 +2424 +3004 +846 +5101 +1473 +3004 +18 +3762 +18 +1487 +3361 +1520 +3588 +2316 +3588 +1785 +1492 +3361 +5407 +3361 +3431 +3361 +2813 +3361 +5576 +3361 +650 +5091 +3588 +3962 +4771 +2532 +3588 +3384 +1161 +3588 +5346 +846 +1320 +3778 +3956 +5442 +1537 +3503 +1473 +1161 +3588 +2424 +1689 +846 +25 +846 +2532 +3004 +846 +1520 +4771 +5302 +5217 +3745 +2192 +4453 +2532 +1325 +3588 +4434 +2532 +2192 +2344 +1722 +3772 +2532 +1204 +190 +1473 +1161 +3588 +4768 +1909 +3588 +3056 +565 +3076 +1063 +1510 +2192 +2933 +4183 +2532 +4017 +3588 +2424 +3004 +3588 +3101 +846 +4459 +1423 +3588 +3588 +5536 +2192 +1519 +3588 +932 +3588 +2316 +1525 +1161 +3588 +3101 +2284 +1909 +3588 +3056 +846 +1161 +3588 +2424 +3825 +611 +3004 +846 +5043 +4459 +1422 +1510 +1519 +3588 +932 +3588 +2316 +1525 +2123 +1510 +2574 +1223 +3588 +5168 +3588 +4476 +1330 +2228 +4145 +1519 +3588 +932 +3588 +2316 +1525 +1161 +3588 +4057 +1605 +3004 +4314 +1438 +2532 +5101 +1410 +4982 +1689 +846 +3588 +2424 +3004 +3844 +444 +102 +235 +3756 +3844 +2316 +1063 +3956 +1415 +3844 +3588 +2316 +756 +3588 +4074 +3004 +846 +3708 +1473 +863 +3956 +2532 +190 +4771 +5346 +3588 +2424 +281 +3004 +4771 +3762 +1510 +3739 +863 +3614 +2228 +80 +2228 +79 +2228 +3384 +2228 +3962 +2228 +5043 +2228 +68 +1752 +1473 +2532 +1752 +3588 +2098 +1437 +3361 +2983 +3568 +1722 +3588 +2540 +3778 +1542 +3614 +2532 +80 +2532 +79 +2532 +3384 +2532 +5043 +2532 +68 +3326 +1375 +2532 +1722 +3588 +165 +3588 +2064 +2222 +166 +1161 +4183 +4413 +1510 +2078 +2532 +3588 +2078 +4413 +1161 +1510 +1722 +3588 +3598 +305 +1519 +2414 +2532 +1510 +4254 +846 +3588 +2424 +2532 +2284 +1161 +3588 +190 +5399 +2532 +3880 +3825 +3588 +1427 +756 +846 +3004 +3588 +3195 +846 +4819 +3754 +3708 +305 +1519 +2414 +2532 +3588 +5207 +3588 +444 +3860 +3588 +749 +2532 +3588 +1122 +2532 +2632 +846 +2288 +2532 +3860 +846 +3588 +1484 +2532 +1702 +846 +2532 +1716 +846 +2532 +3146 +846 +2532 +615 +2532 +3326 +5140 +2250 +450 +2532 +4365 +846 +2385 +2532 +2491 +3588 +5207 +2199 +3004 +846 +1320 +2309 +2443 +1437 +3739 +154 +4771 +4160 +1473 +1161 +3588 +3004 +846 +2309 +5101 +1473 +4160 +4771 +1161 +3588 +3004 +846 +1325 +1473 +2443 +1520 +1537 +4771 +1188 +2532 +1520 +1537 +710 +2523 +1722 +3588 +1391 +4771 +1161 +3588 +2424 +3004 +846 +3756 +1492 +5101 +154 +1410 +4095 +3588 +4221 +3739 +1473 +4095 +2228 +3588 +908 +3739 +1473 +907 +907 +1161 +3588 +3004 +846 +1410 +1161 +3588 +2424 +3004 +846 +3588 +4221 +3739 +1473 +4095 +4095 +2532 +3588 +908 +3739 +1473 +907 +907 +1161 +3588 +2523 +1537 +1188 +1473 +2228 +1537 +2176 +3756 +1510 +1699 +1325 +235 +3739 +2090 +2532 +191 +3588 +1176 +756 +23 +4012 +2385 +2532 +2491 +2532 +4341 +846 +3588 +2424 +3004 +846 +1492 +3754 +3588 +1380 +757 +3588 +1484 +2634 +846 +2532 +3588 +3173 +846 +2715 +846 +1161 +3756 +3779 +1510 +1722 +4771 +235 +302 +3739 +2309 +3173 +1096 +1722 +4771 +1510 +4771 +1249 +2532 +302 +3739 +2309 +1722 +4771 +1510 +4413 +1510 +3956 +1401 +1063 +2532 +3588 +5207 +3588 +444 +3756 +2064 +1247 +235 +1247 +2532 +1325 +3588 +5590 +846 +3083 +473 +4183 +2532 +2064 +1519 +2410 +2532 +1607 +846 +575 +2410 +2532 +3588 +3101 +846 +2532 +3793 +2425 +3588 +5207 +5090 +924 +5185 +4319 +2521 +3844 +3588 +3598 +2532 +191 +3754 +2424 +3588 +3479 +1510 +756 +2896 +2532 +3004 +5207 +1138 +2424 +1653 +1473 +2532 +2008 +846 +4183 +2443 +4623 +1161 +3588 +4183 +3123 +2896 +5207 +1138 +1653 +1473 +2532 +2476 +3588 +2424 +3004 +5455 +846 +2532 +5455 +3588 +5185 +3004 +846 +2293 +1453 +5455 +4771 +1161 +3588 +577 +3588 +2440 +846 +1530 +2064 +4314 +3588 +2424 +2532 +611 +846 +3588 +2424 +3004 +5101 +4771 +4160 +2309 +1161 +3588 +5185 +3004 +846 +4462 +2443 +308 +2532 +3588 +2424 +3004 +846 +5217 +3588 +4102 +4771 +4982 +4771 +2532 +2117 +308 +2532 +190 +846 +1722 +3588 +3598 +2532 +3753 +1448 +1519 +2414 +1519 +967 +2532 +963 +4314 +3588 +3735 +3588 +1636 +649 +1417 +3588 +3101 +846 +2532 +3004 +846 +5217 +1519 +3588 +2968 +3588 +2713 +4771 +2532 +2117 +1531 +1519 +846 +2147 +1210 +4454 +1909 +3739 +3762 +444 +3768 +2523 +3089 +846 +2532 +5342 +2532 +1437 +5100 +4771 +3004 +5101 +4160 +3778 +3004 +3588 +2962 +846 +5532 +2192 +2532 +2117 +846 +649 +3825 +5602 +2532 +565 +2532 +2147 +4454 +1210 +4314 +2374 +1854 +1909 +3588 +296 +2532 +3089 +846 +2532 +5100 +3588 +1563 +2476 +3004 +846 +5101 +4160 +3089 +3588 +4454 +1161 +3588 +3004 +846 +2531 +3004 +3588 +2424 +2532 +863 +846 +2532 +5342 +3588 +4454 +4314 +3588 +2424 +2532 +1911 +846 +3588 +2440 +846 +2532 +2523 +1909 +846 +2532 +4183 +3588 +2440 +846 +4766 +1519 +3588 +3598 +1161 +243 +4746 +2875 +1537 +3588 +68 +2532 +3588 +4254 +2532 +3588 +190 +2896 +5614 +2127 +3588 +2064 +1722 +3686 +2962 +2127 +3588 +2064 +932 +3588 +3962 +1473 +1138 +5614 +1722 +3588 +5310 +2532 +1525 +1519 +2414 +1519 +3588 +2411 +2532 +3796 +2235 +1510 +3588 +5610 +4017 +3956 +1831 +1519 +963 +3326 +3588 +1427 +2532 +3588 +1887 +1831 +846 +575 +963 +3983 +2532 +3708 +575 +3113 +4808 +2192 +5444 +2064 +686 +1487 +5100 +2147 +1722 +846 +2532 +2064 +1909 +846 +3762 +2147 +1487 +3361 +5444 +1063 +3588 +2540 +3756 +1510 +4808 +2532 +611 +3004 +846 +3371 +1519 +3588 +165 +1537 +4771 +3367 +2590 +5315 +2532 +191 +3588 +3101 +846 +2532 +2064 +1519 +2414 +2532 +1525 +1519 +3588 +2411 +756 +1544 +3588 +4453 +2532 +3588 +59 +1722 +3588 +2411 +2532 +3588 +5132 +3588 +2855 +2532 +3588 +2515 +3588 +4453 +3588 +4058 +2690 +2532 +3756 +863 +2443 +5100 +1308 +4632 +1223 +3588 +2411 +2532 +1321 +2532 +3004 +846 +3756 +1125 +3754 +3588 +3624 +1473 +3624 +4335 +2564 +3956 +3588 +1484 +1161 +4771 +4160 +846 +4693 +3027 +2532 +191 +3588 +749 +2532 +3588 +1122 +2532 +2212 +4459 +846 +622 +1063 +5399 +846 +1063 +3956 +3588 +3793 +1605 +1909 +3588 +1322 +846 +2532 +3752 +3796 +1096 +1607 +1854 +3588 +4172 +2532 +3899 +4404 +3708 +3588 +4808 +3583 +1537 +4491 +2532 +363 +3588 +4074 +3004 +846 +4461 +3708 +3588 +4808 +3739 +2672 +3583 +2532 +611 +3588 +2424 +3004 +846 +2192 +4102 +2316 +281 +3004 +4771 +3754 +302 +3739 +3004 +3588 +3735 +3778 +142 +2532 +906 +1519 +3588 +2281 +2532 +3361 +1252 +1722 +3588 +2588 +846 +235 +4100 +3754 +3739 +2980 +1096 +1510 +846 +1223 +3778 +3004 +4771 +3956 +3745 +4336 +2532 +154 +4100 +3754 +2983 +2532 +1510 +4771 +2532 +3752 +4739 +4336 +863 +1487 +5100 +2192 +2596 +5100 +2443 +2532 +3588 +3962 +4771 +3588 +1722 +3588 +3772 +863 +4771 +3588 +3900 +4771 +2532 +2064 +3825 +1519 +2414 +2532 +1722 +3588 +2411 +4043 +846 +2064 +4314 +846 +3588 +749 +2532 +3588 +1122 +2532 +3588 +4245 +2532 +3004 +846 +1722 +4169 +1849 +3778 +4160 +2228 +5101 +4771 +1325 +3588 +1849 +3778 +2443 +3778 +4160 +1161 +3588 +2424 +3004 +846 +1905 +4771 +1520 +3056 +2532 +611 +1473 +2532 +2046 +4771 +1722 +4169 +1849 +3778 +4160 +3588 +908 +3588 +2491 +1537 +3772 +1510 +2228 +1537 +444 +611 +1473 +2532 +1260 +4314 +1438 +3004 +1437 +3004 +1537 +3772 +2046 +3767 +1223 +5101 +3756 +4100 +846 +235 +3004 +1537 +444 +5399 +3588 +3793 +1063 +537 +2192 +3588 +2491 +3754 +3689 +4396 +1510 +2532 +611 +3588 +2424 +3004 +3756 +1492 +2532 +3588 +2424 +3004 +846 +3761 +1473 +3004 +4771 +1722 +4169 +1849 +3778 +4160 +2532 +756 +846 +1722 +3850 +2980 +290 +444 +5452 +2532 +4060 +5418 +2532 +3736 +5276 +2532 +3618 +4444 +2532 +1554 +846 +1092 +2532 +589 +2532 +649 +4314 +3588 +1092 +3588 +2540 +1401 +2443 +3844 +3588 +1092 +2983 +575 +3588 +2590 +3588 +290 +2532 +2983 +846 +1194 +2532 +649 +2756 +2532 +3825 +649 +4314 +846 +243 +1401 +2548 +2775 +2532 +818 +2532 +243 +649 +2548 +615 +2532 +4183 +243 +3303 +3739 +1194 +1161 +3739 +615 +2089 +2192 +1520 +5207 +27 +649 +846 +2078 +4314 +846 +3004 +3754 +1788 +3588 +5207 +1473 +1161 +1565 +3588 +1092 +4314 +1438 +3004 +3754 +3778 +1510 +3588 +2818 +1205 +615 +846 +2532 +1473 +1510 +3588 +2817 +2532 +2983 +615 +846 +2532 +1544 +846 +1854 +3588 +290 +5101 +4160 +3588 +2962 +3588 +290 +2064 +2532 +622 +3588 +1092 +2532 +1325 +3588 +290 +243 +3761 +3588 +1124 +3778 +314 +3037 +3739 +593 +3588 +3618 +3778 +1096 +1519 +2776 +1137 +3844 +2962 +1096 +3778 +2532 +1510 +2298 +1722 +3788 +1473 +2532 +2212 +846 +2902 +2532 +5399 +3588 +3793 +1063 +1097 +3754 +4314 +846 +3588 +3850 +3004 +2532 +863 +846 +565 +2532 +649 +4314 +846 +5100 +3588 +5330 +2532 +3588 +2265 +2443 +846 +64 +3056 +2532 +2064 +3004 +846 +1320 +1492 +3754 +227 +1510 +2532 +3756 +3199 +4771 +4012 +3762 +1063 +3756 +991 +1519 +4383 +444 +235 +1909 +225 +3588 +3598 +3588 +2316 +1321 +1832 +1325 +2778 +2541 +2228 +3756 +1325 +2228 +3361 +1325 +1161 +3588 +1492 +846 +3588 +5272 +3004 +846 +5101 +1473 +3985 +5342 +1473 +1220 +2443 +3708 +1161 +3588 +5342 +2532 +3004 +846 +5101 +3588 +1504 +3778 +2532 +3588 +1923 +1161 +3588 +3004 +846 +2541 +1161 +3588 +2424 +3004 +846 +3588 +2541 +591 +2541 +2532 +3588 +3588 +2316 +3588 +2316 +2532 +2296 +1909 +846 +2532 +2064 +4314 +846 +4523 +3748 +3004 +386 +3361 +1510 +2532 +1905 +846 +3004 +1320 +3475 +1125 +1473 +3754 +1437 +5100 +80 +599 +2532 +2641 +1135 +2532 +3361 +863 +5043 +2443 +2983 +3588 +80 +846 +3588 +1135 +2532 +1817 +4690 +3588 +80 +846 +2033 +80 +1510 +2532 +3588 +4413 +2983 +1135 +2532 +599 +3756 +863 +4690 +2532 +3588 +1208 +2983 +846 +2532 +599 +3361 +2641 +4690 +2532 +3588 +5154 +5615 +2532 +3588 +2033 +3756 +863 +4690 +2078 +3956 +2532 +3588 +1135 +599 +1722 +3588 +386 +3752 +450 +5101 +846 +1135 +1510 +1063 +3588 +2033 +2192 +846 +1135 +5346 +846 +3588 +2424 +3756 +1223 +3778 +4105 +3361 +1492 +3588 +1124 +3366 +3588 +1411 +3588 +2316 +1063 +3752 +1537 +3498 +450 +3777 +1060 +3777 +1061 +235 +1510 +5613 +32 +1722 +3588 +3772 +1161 +4012 +3588 +3498 +3754 +1453 +3756 +314 +1722 +3588 +976 +3475 +1909 +3588 +942 +4459 +3004 +846 +3588 +2316 +3004 +1473 +3588 +2316 +11 +2532 +2316 +2464 +2532 +2316 +2384 +3756 +1510 +2316 +3498 +235 +2198 +4183 +4105 +2532 +4334 +1520 +3588 +1122 +191 +846 +4802 +1492 +3754 +2573 +611 +846 +1905 +846 +4169 +1510 +1785 +4413 +3956 +611 +3588 +2424 +3754 +4413 +1510 +191 +2474 +2962 +3588 +2316 +1473 +2962 +1520 +1510 +2532 +25 +2962 +3588 +2316 +4771 +1537 +3650 +3588 +2588 +4771 +2532 +1537 +3650 +3588 +5590 +4771 +2532 +1537 +3650 +3588 +1271 +4771 +2532 +1537 +3650 +3588 +2479 +4771 +1208 +3778 +25 +3588 +4139 +4771 +5613 +4572 +3173 +3778 +243 +1785 +3756 +1510 +2532 +3004 +846 +3588 +1122 +2573 +1320 +1909 +225 +3004 +3754 +1520 +1510 +2532 +3756 +1510 +243 +4133 +846 +2532 +3588 +25 +846 +1537 +3650 +3588 +2588 +2532 +1537 +3650 +3588 +4907 +2532 +1537 +3650 +3588 +2479 +2532 +3588 +25 +3588 +4139 +5613 +1438 +4053 +1510 +3956 +3588 +3646 +2532 +2378 +2532 +3588 +2424 +3708 +846 +3754 +3562 +611 +3004 +846 +3756 +3112 +1510 +575 +3588 +932 +3588 +2316 +2532 +3762 +3765 +5111 +846 +1905 +2532 +611 +3588 +2424 +3004 +1321 +1722 +3588 +2411 +4459 +3004 +3588 +1122 +3754 +3588 +5547 +5207 +1138 +1510 +846 +1138 +3004 +1722 +3588 +4151 +3588 +40 +3004 +2962 +3588 +2962 +1473 +2521 +1537 +1188 +1473 +2193 +302 +5087 +3588 +2190 +4771 +5270 +3588 +4228 +4771 +846 +1138 +3004 +846 +2962 +2532 +4159 +846 +5207 +1510 +2532 +3588 +4183 +3793 +191 +846 +2234 +2532 +1722 +3588 +1322 +846 +3004 +991 +575 +3588 +1122 +3588 +2309 +1722 +4749 +4043 +2532 +783 +1722 +3588 +58 +2532 +4410 +1722 +3588 +4864 +2532 +4411 +1722 +3588 +1173 +3588 +2719 +3588 +3614 +3588 +5503 +2532 +4392 +3117 +4336 +3778 +2983 +4053 +2917 +2532 +2523 +2713 +3588 +1049 +2334 +4459 +3588 +3793 +906 +5475 +1519 +3588 +1049 +2532 +4183 +4145 +906 +4183 +2532 +2064 +1520 +5503 +4434 +906 +3016 +1417 +3739 +1510 +2835 +2532 +4341 +3588 +3101 +846 +3004 +846 +281 +3004 +4771 +3754 +3588 +5503 +3778 +3588 +4434 +4119 +906 +3956 +3588 +906 +1519 +3588 +1049 +1063 +3956 +1537 +3588 +4052 +846 +906 +1161 +3778 +1537 +3588 +5304 +846 +906 +3956 +3745 +2192 +3650 +3588 +979 +846 +2532 +1607 +846 +1537 +3588 +2411 +3004 +846 +1520 +3588 +3101 +846 +1320 +3708 +4217 +3037 +2532 +4217 +3619 +2532 +3588 +2424 +3004 +846 +991 +3778 +3588 +3173 +3619 +3756 +3361 +863 +1909 +3037 +3037 +3739 +3756 +3361 +2647 +2532 +2521 +846 +1519 +3588 +3735 +3588 +1636 +2713 +3588 +2411 +1905 +846 +2596 +2398 +4074 +2532 +2385 +2532 +2491 +2532 +406 +3004 +1473 +4219 +3778 +1510 +2532 +5101 +3588 +4592 +3752 +3195 +3778 +3956 +4931 +1161 +3588 +2424 +756 +3004 +846 +991 +3361 +5100 +4771 +4105 +4183 +2064 +1909 +3588 +3686 +1473 +3004 +3754 +1473 +1510 +2532 +4183 +4105 +1161 +3752 +191 +4171 +2532 +189 +4171 +3361 +2360 +1163 +1096 +235 +3768 +3588 +5056 +1063 +1453 +1484 +1909 +1484 +2532 +932 +1909 +932 +1510 +4578 +2596 +5117 +1510 +3042 +746 +5604 +3778 +1161 +991 +4771 +1438 +3860 +4771 +1519 +4892 +2532 +1519 +4864 +1194 +2532 +1909 +2232 +2532 +935 +2476 +1752 +1473 +1519 +3142 +846 +2532 +1519 +3956 +3588 +1484 +4412 +2784 +3588 +2098 +1163 +2532 +3752 +71 +4771 +3860 +3361 +4305 +5101 +2980 +235 +1437 +3739 +1325 +4771 +1722 +1565 +3588 +5610 +3778 +2980 +1063 +3756 +1510 +4771 +3588 +2980 +235 +3588 +4151 +3588 +40 +2532 +3860 +80 +80 +1519 +2288 +2532 +3962 +5043 +2532 +1881 +5043 +1909 +1118 +2532 +2289 +846 +2532 +1510 +3404 +5259 +3956 +1223 +3588 +3686 +1473 +1161 +3588 +5278 +1519 +5056 +3778 +4982 +1161 +3752 +3708 +3588 +946 +3588 +2050 +2476 +3699 +3756 +1163 +3588 +314 +3539 +5119 +3588 +1722 +3588 +2449 +5343 +1519 +3588 +3735 +3588 +1909 +3588 +1430 +3361 +2597 +3366 +1525 +5100 +142 +1537 +3588 +3614 +846 +2532 +3588 +1519 +3588 +68 +3361 +1994 +1519 +3588 +3694 +142 +3588 +2440 +846 +1161 +3759 +3588 +1722 +1064 +2192 +2532 +3588 +2337 +1722 +1565 +3588 +2250 +1161 +4336 +2443 +3361 +1096 +5494 +1063 +1510 +3588 +2250 +1565 +2347 +3634 +3756 +1096 +5108 +575 +746 +2937 +3739 +2936 +3588 +2316 +2193 +3588 +3568 +2532 +3756 +3361 +1096 +2532 +1487 +3361 +2856 +2962 +3588 +2250 +302 +3756 +4982 +3956 +4561 +235 +1223 +3588 +1588 +3739 +1586 +2856 +3588 +2250 +2532 +1437 +5119 +5100 +4771 +3004 +3708 +5602 +3588 +5547 +3708 +1563 +3361 +4100 +1161 +1453 +5580 +2532 +5578 +2532 +4160 +4592 +2532 +5059 +4314 +3588 +635 +1487 +1415 +3588 +1588 +1161 +4771 +991 +4302 +4771 +3956 +235 +1722 +1565 +3588 +2250 +3326 +3588 +2347 +1565 +3588 +2246 +4654 +2532 +3588 +4582 +3756 +1325 +3588 +5338 +846 +2532 +3588 +792 +1510 +4098 +1537 +3588 +3772 +2532 +3588 +1411 +3588 +1722 +3588 +3772 +4531 +2532 +5119 +3708 +3588 +5207 +3588 +444 +2064 +1722 +3507 +3326 +1411 +4183 +2532 +1391 +2532 +5119 +649 +3588 +32 +2532 +1996 +3588 +1588 +846 +1537 +3588 +5064 +417 +575 +206 +1093 +2193 +206 +3772 +1161 +575 +3588 +4808 +3129 +3588 +3850 +3752 +2235 +3588 +2798 +846 +527 +1096 +2532 +1631 +3588 +5444 +1097 +3754 +1451 +3588 +2330 +1510 +3779 +2532 +4771 +3752 +3708 +3778 +1096 +1097 +3754 +1451 +1510 +1909 +2374 +281 +3004 +4771 +3754 +3756 +3361 +3928 +3588 +1074 +3778 +3360 +3739 +3778 +3956 +1096 +3588 +3772 +2532 +3588 +1093 +3928 +1161 +3588 +3056 +1473 +3756 +3928 +1161 +4012 +3588 +2250 +1565 +2228 +3588 +5610 +3762 +1492 +3761 +3588 +32 +1722 +3772 +3761 +3588 +5207 +1487 +3361 +3588 +3962 +991 +69 +1063 +3756 +1492 +4219 +3588 +2540 +1510 +5613 +444 +590 +863 +3588 +3614 +846 +2532 +1325 +3588 +1401 +846 +3588 +1849 +1538 +3588 +2041 +846 +2532 +3588 +2377 +1781 +2443 +1127 +3767 +1127 +1063 +3756 +1492 +4219 +3588 +2962 +3588 +3614 +2064 +2228 +3796 +2228 +3317 +2228 +219 +2228 +4404 +3361 +2064 +1810 +2147 +4771 +2518 +1161 +3739 +4771 +3004 +3956 +3004 +1127 +1161 +1510 +3588 +3957 +2532 +3588 +106 +3326 +1417 +2250 +2532 +2212 +3588 +749 +2532 +3588 +1122 +4459 +846 +1722 +1388 +2902 +615 +1063 +3004 +3361 +1722 +3588 +1859 +3361 +4218 +1510 +2351 +3588 +2992 +2532 +1510 +846 +1722 +963 +1722 +3588 +3614 +4613 +3588 +3015 +2621 +846 +2064 +1135 +2192 +211 +3464 +3487 +4101 +4185 +4937 +3588 +211 +2708 +846 +3588 +2776 +1161 +5100 +1510 +23 +4314 +1438 +1519 +5101 +3588 +684 +3778 +3588 +3464 +1096 +1063 +1410 +3778 +3588 +3464 +4097 +1883 +1220 +5145 +2532 +1325 +3588 +4434 +2532 +1690 +846 +1161 +3588 +2424 +3004 +863 +846 +5101 +846 +2873 +3930 +2570 +2041 +2038 +1722 +1473 +1063 +3842 +3588 +4434 +2192 +3326 +1438 +2532 +3752 +2309 +1410 +846 +2095 +4160 +1161 +1473 +3756 +3842 +2192 +3739 +2192 +4160 +4301 +3462 +3588 +4983 +1473 +1519 +3588 +1780 +1161 +281 +3004 +4771 +1437 +3699 +2784 +3588 +2098 +1519 +3650 +3588 +2889 +2532 +3739 +4160 +3778 +2980 +1519 +3422 +846 +2532 +2455 +2469 +3588 +1520 +3588 +1427 +565 +4314 +3588 +749 +2443 +846 +3860 +846 +1161 +3588 +191 +5463 +2532 +1861 +846 +694 +1325 +2532 +2212 +4459 +846 +2122 +3860 +2532 +3588 +4413 +2250 +3588 +106 +3753 +3588 +3957 +2380 +3004 +846 +3588 +3101 +846 +2309 +4226 +565 +2090 +2443 +5315 +3588 +3957 +2532 +649 +1417 +3588 +3101 +846 +2532 +3004 +846 +5217 +1519 +3588 +4172 +2532 +528 +4771 +444 +2765 +5204 +941 +190 +846 +2532 +1437 +3699 +1525 +3004 +3588 +3617 +3754 +3588 +1320 +3004 +4226 +1510 +3588 +2646 +1473 +3699 +3588 +3957 +3326 +3588 +3101 +1473 +5315 +2532 +846 +4771 +1166 +508 +3173 +4766 +2092 +2532 +1563 +2090 +1473 +2532 +1831 +3588 +3101 +2532 +2064 +1519 +3588 +4172 +2532 +2147 +2531 +3004 +846 +2532 +2090 +3588 +3957 +2532 +3798 +1096 +2064 +3326 +3588 +1427 +2532 +846 +345 +2532 +2068 +3588 +2424 +3004 +281 +3004 +4771 +3754 +3860 +1473 +1520 +1537 +4771 +3588 +2068 +3326 +1473 +756 +3076 +2532 +3004 +846 +1520 +2596 +1520 +3385 +1473 +1161 +3588 +3004 +846 +1520 +3588 +1427 +3588 +1686 +3326 +1473 +1519 +3588 +5165 +3754 +3303 +3588 +5207 +3588 +444 +5217 +2531 +1125 +4012 +846 +1161 +3759 +3588 +444 +1565 +1223 +3739 +3588 +5207 +3588 +444 +3860 +2570 +846 +1487 +3756 +1080 +3588 +444 +1565 +2532 +2068 +846 +2983 +740 +2127 +2806 +2532 +1325 +846 +2532 +3004 +2983 +3778 +1510 +3588 +4983 +1473 +2532 +2983 +4221 +2168 +1325 +846 +2532 +4095 +1537 +846 +3956 +2532 +3004 +846 +3778 +1510 +3588 +129 +1473 +3588 +1242 +3588 +1632 +5228 +4183 +281 +3004 +4771 +3754 +3765 +3756 +3361 +4095 +1537 +3588 +1081 +3588 +288 +2193 +3588 +2250 +1565 +3752 +846 +4095 +2537 +1722 +3588 +932 +3588 +2316 +2532 +5214 +1831 +1519 +3588 +3735 +3588 +1636 +2532 +3004 +846 +3588 +2424 +3754 +3956 +4624 +3754 +1125 +3960 +3588 +4166 +2532 +3588 +4263 +1287 +235 +3326 +3588 +1453 +1473 +4254 +4771 +1519 +3588 +1056 +1161 +3588 +4074 +5346 +846 +1487 +2532 +3956 +4624 +235 +3756 +1473 +2532 +3004 +846 +3588 +2424 +281 +3004 +4771 +3754 +4771 +4594 +3778 +3588 +3571 +4250 +2228 +1364 +220 +5455 +5151 +1473 +533 +1161 +3588 +4057 +2980 +1437 +1163 +1473 +4880 +4771 +3756 +3361 +4771 +533 +1161 +5615 +2532 +3956 +3004 +2532 +2064 +1519 +5564 +3739 +3588 +3686 +1068 +2532 +3004 +3588 +3101 +846 +2523 +5602 +2193 +4336 +2532 +3880 +3588 +4074 +2532 +3588 +2385 +2532 +3588 +2491 +3326 +846 +2532 +756 +1568 +2532 +85 +2532 +3004 +846 +4036 +1510 +3588 +5590 +1473 +2193 +2288 +3306 +5602 +2532 +1127 +2532 +4281 +3398 +4098 +1909 +3588 +1093 +2532 +4336 +2443 +1487 +1415 +1510 +3928 +575 +846 +3588 +5610 +2532 +3004 +5 +3588 +3962 +3956 +1415 +4771 +3911 +3588 +4221 +3778 +575 +1473 +235 +3756 +5101 +1473 +2309 +235 +5101 +4771 +2532 +2064 +2532 +2147 +846 +2518 +2532 +3004 +3588 +4074 +4613 +2518 +3756 +2480 +1520 +5610 +1127 +1127 +2532 +4336 +2443 +3361 +2064 +1519 +3986 +3303 +3588 +4151 +4289 +1161 +3588 +4561 +772 +2532 +3825 +565 +4336 +3588 +846 +3056 +3004 +2532 +3825 +2064 +2147 +846 +2518 +1063 +1510 +2599 +846 +3588 +3788 +2532 +3756 +1492 +5101 +611 +846 +2532 +2064 +3588 +5154 +2532 +3004 +846 +2518 +3588 +3063 +2532 +373 +568 +2064 +3588 +5610 +3708 +3860 +3588 +5207 +3588 +444 +1519 +3588 +5495 +3588 +268 +1453 +71 +3708 +3588 +3860 +1473 +1448 +2532 +2117 +2089 +846 +2980 +3854 +3588 +2455 +1520 +3588 +1427 +2532 +3326 +846 +3793 +3326 +3162 +2532 +3586 +3844 +3588 +749 +2532 +3588 +1122 +2532 +3588 +4245 +1161 +1325 +3588 +3860 +846 +4953 +846 +3004 +302 +3739 +5368 +846 +1510 +2902 +846 +2532 +520 +806 +2532 +2064 +2117 +4334 +846 +3004 +4461 +2532 +2705 +846 +1161 +3588 +1911 +3588 +5495 +846 +2532 +2902 +846 +1161 +1520 +5100 +3588 +3936 +4685 +3588 +3162 +3817 +3588 +1401 +3588 +749 +2532 +851 +846 +3588 +5621 +2532 +611 +3588 +2424 +3004 +846 +5613 +1909 +3027 +1831 +3326 +3162 +2532 +3586 +4815 +1473 +2596 +2250 +1510 +4314 +4771 +1722 +3588 +2411 +1321 +2532 +3756 +2902 +1473 +235 +2443 +4137 +3588 +1124 +2532 +863 +846 +5343 +3956 +2532 +3495 +5100 +4870 +846 +4016 +4616 +1909 +1131 +2532 +2902 +846 +1161 +3588 +2641 +3588 +4616 +1131 +5343 +2532 +520 +3588 +2424 +4314 +3588 +749 +2532 +4905 +3956 +3588 +749 +2532 +3588 +4245 +2532 +3588 +1122 +2532 +3588 +4074 +575 +3113 +190 +846 +2193 +2080 +1519 +3588 +833 +3588 +749 +2532 +1510 +4775 +3326 +3588 +5257 +2532 +2328 +4314 +3588 +5457 +1161 +3588 +749 +2532 +3650 +3588 +4892 +2212 +2596 +3588 +2424 +3141 +1519 +3588 +2289 +846 +2532 +3756 +2147 +1063 +4183 +5576 +2596 +846 +2532 +2470 +3588 +3141 +3756 +1510 +2532 +5100 +450 +5576 +2596 +846 +3004 +3754 +1473 +191 +846 +3004 +3754 +1473 +2647 +3588 +3485 +3778 +3588 +5499 +2532 +1223 +5140 +2250 +243 +886 +3618 +2532 +3761 +3779 +2470 +1510 +3588 +3141 +846 +2532 +450 +1519 +3319 +3588 +749 +1905 +3588 +2424 +3004 +3756 +611 +3762 +5101 +3778 +4771 +2649 +1161 +3588 +4623 +2532 +3756 +611 +3762 +3825 +3588 +749 +1905 +846 +2532 +3004 +846 +4771 +1510 +3588 +5547 +3588 +5207 +3588 +2128 +1161 +3588 +2424 +3004 +1473 +1510 +2532 +3708 +3588 +5207 +3588 +444 +1537 +1188 +3588 +1411 +2521 +2532 +2064 +3326 +3588 +3507 +3588 +3772 +1161 +3588 +749 +1284 +3588 +5509 +846 +3004 +5101 +2089 +5532 +3144 +2192 +191 +3588 +988 +5101 +4771 +5316 +1161 +3588 +3956 +2632 +846 +1777 +1510 +2288 +2532 +756 +5100 +1716 +846 +2532 +4028 +846 +3588 +4383 +2532 +2852 +846 +2532 +3004 +846 +4395 +2532 +3588 +5257 +4475 +846 +2983 +2532 +1510 +3588 +4074 +2736 +1722 +3588 +833 +2064 +1520 +3588 +3814 +3588 +749 +2532 +3708 +3588 +4074 +2328 +1689 +846 +3004 +2532 +4771 +3326 +3588 +3479 +3588 +2424 +1510 +1161 +3588 +720 +3004 +3777 +1492 +3777 +1987 +4771 +5101 +3004 +2532 +1831 +1854 +1519 +3588 +4259 +2532 +3588 +3814 +3708 +846 +756 +3825 +3004 +3588 +3936 +3754 +3778 +1537 +846 +1510 +1161 +3588 +3825 +720 +2532 +3326 +3398 +3825 +3588 +3936 +3004 +3588 +4074 +230 +1537 +846 +1510 +1063 +2532 +1057 +1510 +1161 +3588 +756 +332 +2532 +3660 +3754 +3756 +1492 +3588 +444 +3778 +3739 +3004 +2532 +2117 +1537 +1208 +220 +5455 +2532 +363 +3588 +4074 +3588 +4487 +5613 +3004 +846 +3588 +2424 +3754 +4250 +220 +1364 +5455 +5151 +1473 +533 +2532 +1911 +2799 +2532 +2117 +4404 +3588 +749 +4824 +2090 +3326 +3588 +4245 +2532 +1122 +2532 +3650 +3588 +4892 +1210 +3588 +2424 +667 +2532 +3860 +4091 +2532 +1905 +846 +3588 +4091 +4771 +1510 +3588 +935 +3588 +2453 +1161 +3588 +611 +846 +3004 +4771 +3004 +2532 +2723 +846 +3588 +749 +4183 +1161 +3588 +4091 +3825 +1905 +846 +3004 +3756 +611 +3762 +3708 +4214 +4771 +2723 +1161 +3588 +2424 +3765 +3762 +611 +5620 +2296 +3588 +4091 +1161 +2596 +1859 +630 +846 +1520 +1198 +3739 +3868 +1161 +1510 +1210 +3588 +3004 +912 +3326 +3588 +4955 +3748 +1722 +3588 +4714 +5408 +4160 +2532 +305 +3588 +3793 +756 +154 +2531 +4160 +846 +1161 +3588 +4091 +611 +846 +3004 +2309 +630 +4771 +3588 +935 +3588 +2453 +1063 +1097 +3754 +1223 +5355 +3860 +846 +3588 +749 +1161 +3588 +749 +383 +3588 +3793 +2443 +3123 +3588 +912 +630 +846 +1161 +3588 +4091 +3825 +611 +3004 +846 +3767 +5101 +4160 +3739 +3004 +3588 +935 +3588 +2453 +1161 +3588 +3825 +2896 +4717 +846 +1161 +3588 +4091 +3004 +846 +1063 +4160 +5101 +2556 +1161 +3588 +4057 +2896 +4717 +846 +1161 +3588 +4091 +1014 +3588 +3793 +3588 +2425 +4160 +630 +846 +3588 +912 +2532 +3860 +3588 +2424 +5417 +2443 +4717 +1161 +3588 +4757 +520 +846 +2080 +3588 +833 +3739 +1510 +4232 +2532 +4779 +3650 +3588 +4686 +2532 +1737 +846 +4209 +2532 +4060 +846 +4120 +174 +4735 +2532 +756 +782 +846 +5463 +935 +3588 +2453 +2532 +5180 +846 +3588 +2776 +2563 +2532 +1716 +846 +2532 +5087 +3588 +1119 +4352 +846 +2532 +3753 +1702 +846 +1562 +846 +3588 +4209 +2532 +1746 +846 +3588 +2440 +846 +2532 +1806 +846 +2443 +4717 +846 +2532 +29 +3855 +5100 +4613 +2956 +2064 +575 +68 +3588 +3962 +223 +2532 +4504 +2443 +142 +3588 +4716 +846 +2532 +5342 +846 +1909 +3588 +5117 +1115 +3739 +1510 +3177 +2898 +5117 +2532 +1325 +846 +4669 +3631 +1161 +3739 +3756 +2983 +2532 +4717 +846 +2532 +1266 +3588 +2440 +846 +906 +2819 +1909 +846 +5101 +5101 +142 +1161 +1510 +5610 +5154 +2532 +4717 +846 +2532 +1510 +1924 +3588 +1923 +3588 +156 +846 +3588 +935 +3588 +2453 +2532 +4862 +846 +4717 +1417 +3027 +1520 +1537 +1188 +2532 +1520 +1537 +2176 +846 +2532 +3588 +3899 +987 +846 +2795 +3588 +2776 +846 +2532 +3004 +3758 +3588 +2647 +3588 +3485 +2532 +3618 +1722 +5140 +2250 +4982 +4572 +2597 +575 +3588 +4716 +3668 +2532 +3588 +749 +1702 +4314 +240 +3326 +3588 +1122 +3004 +243 +4982 +1438 +4982 +3756 +1410 +3588 +5547 +3588 +935 +2474 +2597 +3568 +575 +3588 +4716 +2443 +3708 +2532 +4100 +2532 +3588 +4957 +4862 +846 +3679 +846 +2532 +1096 +5610 +1623 +4655 +1096 +1909 +3650 +3588 +1093 +2193 +5610 +1766 +2532 +3588 +1766 +5610 +994 +3588 +2424 +5456 +3173 +1682 +1682 +2982 +4518 +3739 +1510 +3177 +3588 +2316 +1473 +3588 +2316 +1473 +1519 +5101 +1459 +1473 +2532 +5100 +3588 +3936 +191 +3004 +3708 +2243 +5455 +1161 +5100 +5143 +2532 +1072 +4699 +3690 +4060 +2563 +4222 +846 +3004 +863 +3708 +1487 +2064 +2243 +2507 +846 +1161 +3588 +2424 +863 +5456 +3173 +1606 +2532 +3588 +2665 +3588 +3485 +4977 +1519 +1417 +575 +509 +2193 +2736 +1161 +3588 +2760 +3588 +3936 +1537 +1727 +846 +3708 +3754 +3779 +1606 +3004 +230 +3778 +3588 +444 +5207 +2316 +1510 +1161 +1510 +2532 +1135 +575 +3113 +2334 +1722 +3739 +2532 +3137 +3588 +3094 +2532 +3137 +3588 +2385 +3588 +3398 +2532 +2500 +3384 +2532 +4539 +3739 +3753 +1510 +1722 +3588 +1056 +190 +846 +2532 +1247 +846 +2532 +243 +4183 +3588 +4872 +846 +1519 +2414 +2532 +2235 +3798 +1096 +1893 +1510 +3904 +3739 +1510 +4315 +2064 +2501 +3588 +575 +707 +2158 +1010 +3739 +2532 +846 +1510 +4327 +3588 +932 +3588 +2316 +5111 +1525 +4314 +3588 +4091 +2532 +154 +3588 +4983 +3588 +2424 +1161 +3588 +4091 +2296 +1487 +2235 +2348 +2532 +4341 +3588 +2760 +1905 +846 +1487 +3819 +599 +2532 +1097 +575 +3588 +2760 +1433 +3588 +4430 +3588 +2501 +2532 +59 +4616 +2507 +846 +1750 +3588 +4616 +2532 +2698 +846 +1722 +3418 +3739 +1510 +2998 +1537 +4073 +2532 +4351 +3037 +1909 +3588 +2374 +3588 +3419 +1161 +3588 +3137 +3588 +3094 +2532 +3137 +3588 +2500 +2334 +4226 +5087 +2532 +1230 +3588 +4521 +3137 +3588 +3094 +2532 +3137 +3588 +3588 +2385 +2532 +4539 +59 +759 +2443 +2064 +218 +846 +2532 +3029 +4404 +3588 +1520 +3588 +4521 +2064 +1909 +3588 +3418 +393 +3588 +2246 +2532 +3004 +4314 +1438 +5101 +617 +1473 +3588 +3037 +1537 +3588 +2374 +3588 +3419 +2532 +308 +2334 +3754 +617 +3588 +3037 +1063 +1510 +3173 +4970 +2532 +1525 +1519 +3588 +3419 +3708 +3495 +2521 +1722 +3588 +1188 +4016 +4749 +3022 +2532 +1568 +1161 +3588 +3004 +846 +3361 +1568 +2212 +2424 +3588 +3479 +3588 +4717 +1453 +3756 +1510 +5602 +3708 +3588 +5117 +3699 +5087 +846 +235 +5217 +3004 +3588 +3101 +846 +2532 +3588 +4074 +3754 +4254 +4771 +1519 +3588 +1056 +1563 +846 +3708 +2531 +3004 +4771 +2532 +1831 +5343 +575 +3588 +3419 +1063 +2192 +846 +5156 +2532 +1611 +2532 +3762 +3762 +3004 +1063 +5399 +1161 +450 +4404 +4413 +4521 +5316 +4412 +3137 +3588 +3094 +3844 +3739 +1544 +2033 +1140 +1565 +4198 +518 +3588 +3326 +846 +1096 +3996 +2532 +2799 +2548 +191 +3754 +2198 +2532 +2300 +5259 +846 +569 +1161 +3326 +3778 +1417 +1537 +846 +4043 +5319 +1722 +2087 +3444 +4198 +1519 +68 +2548 +565 +518 +3588 +3062 +3761 +1565 +4100 +1161 +5305 +345 +846 +3588 +1733 +5319 +2532 +3679 +3588 +570 +846 +2532 +4641 +3754 +3588 +2300 +846 +1453 +3756 +4100 +2532 +3004 +846 +4198 +1519 +3588 +2889 +537 +2784 +3588 +2098 +3956 +3588 +2937 +3588 +4100 +2532 +907 +4982 +1161 +3588 +569 +2632 +1161 +4592 +3778 +3588 +4100 +3877 +1722 +3588 +3686 +1473 +1140 +1544 +1100 +2537 +2980 +3789 +142 +2579 +2286 +5100 +4095 +3756 +3361 +846 +984 +1909 +732 +5495 +2007 +2532 +2573 +2192 +3303 +3767 +3588 +2962 +2424 +3326 +3588 +2980 +846 +353 +1519 +3588 +3772 +2532 +2523 +1537 +1188 +3588 +2316 +1161 +1565 +1831 +2784 +3837 +3588 +2962 +4903 +2532 +3588 +3056 +950 +1223 +3588 +1872 +4592 +1161 +3956 +3588 +3853 +3588 +4012 +3588 +4074 +4935 +1804 +1161 +3326 +3778 +2532 +846 +3588 +2424 +575 +395 +2532 +891 +1424 +1821 +1223 +846 +3588 +2413 +2532 +862 +2782 +3588 +166 +4991 +1895 +4183 +2021 +392 +1335 +4012 +3588 +4135 +1722 +1473 +4229 +2531 +3860 +1473 +3588 +575 +746 +845 +2532 +5257 +1096 +3588 +3056 +1380 +2504 +3877 +509 +3956 +199 +2517 +4771 +1125 +2903 +2321 +2443 +1921 +4012 +3739 +2727 +3056 +3588 +803 +1096 +1722 +3588 +2250 +2264 +935 +3588 +2449 +2409 +5100 +3686 +2197 +1537 +2183 +7 +2532 +1135 +846 +1537 +3588 +2364 +2 +2532 +3588 +3686 +846 +1665 +1161 +1510 +1342 +297 +1726 +3588 +2316 +4198 +1722 +3956 +3588 +1785 +2532 +1345 +3588 +2962 +273 +2532 +3756 +1510 +846 +5043 +2530 +1510 +3588 +1665 +4723 +2532 +297 +4260 +1510 +1722 +3588 +2250 +846 +1161 +1096 +1722 +3588 +2407 +846 +1722 +3588 +5010 +3588 +2183 +846 +1725 +3588 +2316 +2596 +3588 +1485 +3588 +2405 +2975 +3588 +2370 +1525 +1519 +3588 +3485 +3588 +2962 +2532 +3956 +3588 +4128 +3588 +2992 +1510 +4336 +1854 +3588 +5610 +3588 +2368 +1161 +3708 +846 +32 +2962 +2476 +1537 +1188 +3588 +2379 +3588 +2368 +2532 +5015 +2197 +3708 +2532 +5401 +1968 +1909 +846 +1161 +3004 +4314 +846 +3588 +32 +3361 +5399 +2197 +1360 +1522 +3588 +1162 +4771 +2532 +3588 +1135 +4771 +1665 +1080 +5207 +4771 +2532 +2564 +3588 +3686 +846 +2491 +2532 +1510 +4771 +5479 +2532 +20 +2532 +4183 +1909 +3588 +1078 +846 +5463 +1063 +1510 +3173 +1799 +2962 +2532 +3631 +2532 +4608 +3756 +3361 +4095 +2532 +4151 +40 +4130 +2089 +1537 +2836 +3384 +846 +2532 +4183 +3588 +5207 +2474 +1994 +1909 +2962 +3588 +2316 +846 +2532 +846 +4281 +1799 +846 +1722 +4151 +2532 +1411 +2243 +1994 +2588 +3962 +1909 +5043 +2532 +545 +1722 +5428 +1342 +2090 +2962 +2992 +2680 +2532 +3004 +2197 +4314 +3588 +32 +2596 +5101 +1097 +3778 +1063 +1473 +1510 +4246 +2532 +3588 +1135 +1473 +4260 +1722 +3588 +2250 +846 +2532 +611 +3588 +32 +3004 +846 +1473 +1510 +1043 +3588 +3936 +1799 +3588 +2316 +2532 +649 +2980 +4314 +4771 +2532 +2097 +4771 +3778 +2532 +3708 +1510 +4623 +2532 +3361 +1410 +2980 +891 +3739 +2250 +1096 +3778 +473 +3739 +3756 +4100 +3588 +3056 +1473 +3748 +4137 +1519 +3588 +2540 +846 +2532 +1510 +4328 +3588 +2992 +3588 +2197 +2532 +2296 +1722 +3588 +5549 +1722 +3588 +3485 +846 +1161 +1831 +3756 +1410 +2980 +846 +2532 +1921 +3754 +3701 +3708 +1722 +3588 +3485 +2532 +846 +1510 +1269 +846 +2532 +1265 +2974 +2532 +1096 +5613 +4130 +3588 +2250 +3588 +3009 +846 +565 +1519 +3588 +3624 +846 +1161 +3326 +3778 +3588 +2250 +4815 +1665 +3588 +1135 +846 +2532 +4032 +1438 +3376 +4002 +3004 +3754 +3779 +1473 +4160 +2962 +1722 +2250 +3739 +1896 +851 +3681 +1473 +1722 +444 +1161 +1722 +3588 +3376 +3588 +1623 +649 +3588 +32 +1043 +575 +3588 +2316 +1519 +4172 +3588 +1056 +3739 +3686 +3478 +4314 +3933 +3423 +435 +3739 +3686 +2501 +1537 +3624 +1138 +2532 +3588 +3686 +3588 +3933 +3137 +2532 +1525 +4314 +846 +3004 +5463 +5487 +3588 +2962 +3326 +4771 +1161 +3588 +1909 +3588 +3056 +1298 +2532 +1260 +4217 +1510 +3588 +783 +3778 +2532 +3004 +3588 +32 +846 +3361 +5399 +3137 +1063 +2147 +5485 +3844 +3588 +2316 +2532 +3708 +4815 +1722 +1064 +2532 +5088 +5207 +2532 +2564 +3588 +3686 +846 +2424 +3778 +1510 +3173 +2532 +5207 +5310 +2564 +2532 +1325 +846 +2962 +3588 +2316 +3588 +2362 +1138 +3588 +3962 +846 +2532 +936 +1909 +3588 +3624 +2384 +1519 +3588 +165 +2532 +3588 +932 +846 +3756 +1510 +5056 +1161 +3004 +3137 +4314 +3588 +32 +4459 +1510 +3778 +1893 +435 +3756 +1097 +2532 +611 +3588 +32 +3004 +846 +4151 +40 +1904 +1909 +4771 +2532 +1411 +5310 +1982 +4771 +1352 +2532 +3588 +1080 +40 +2564 +5207 +2316 +2532 +3708 +1665 +3588 +4773 +4771 +2532 +846 +4815 +5207 +1722 +1094 +846 +2532 +3778 +3376 +1623 +1510 +846 +3588 +2564 +4723 +3754 +3756 +101 +3844 +3588 +2316 +3956 +4487 +1161 +3004 +3137 +3708 +3588 +1399 +2962 +1096 +1473 +2596 +3588 +4487 +4771 +2532 +565 +575 +846 +3588 +32 +1161 +3137 +450 +1722 +3588 +2250 +3778 +4198 +1519 +3588 +3714 +3326 +4710 +1519 +4172 +2448 +2532 +1525 +1519 +3588 +3624 +2197 +2532 +782 +3588 +1665 +2532 +1096 +5613 +191 +3588 +783 +3588 +3137 +3588 +1665 +4640 +3588 +1025 +1722 +3588 +2836 +846 +2532 +4130 +4151 +40 +3588 +1665 +2532 +400 +2906 +3173 +2532 +3004 +2127 +4771 +1722 +1135 +2532 +2127 +3588 +2590 +3588 +2836 +4771 +2532 +4159 +1473 +3778 +2443 +2064 +3588 +3384 +3588 +2962 +1473 +4314 +1473 +1063 +3708 +5613 +1096 +3588 +5456 +3588 +783 +4771 +1519 +3588 +3775 +1473 +4640 +1722 +20 +3588 +1025 +1722 +3588 +2836 +1473 +2532 +3107 +3588 +4100 +3754 +1510 +5050 +3588 +2980 +846 +3844 +2962 +2532 +3004 +3137 +3170 +3588 +5590 +1473 +3588 +2962 +2532 +21 +3588 +4151 +1473 +1909 +3588 +2316 +3588 +4990 +1473 +3754 +1914 +1909 +3588 +5014 +3588 +1399 +846 +1063 +3708 +575 +3588 +3568 +3106 +1473 +3956 +3588 +1074 +3754 +4160 +1473 +3173 +3588 +1415 +2532 +40 +3588 +3686 +846 +2532 +3588 +1656 +846 +1519 +1074 +2532 +1074 +3588 +5399 +846 +4160 +2904 +1722 +1023 +846 +1287 +5244 +1271 +2588 +846 +2507 +1413 +575 +2362 +2532 +5312 +5011 +3983 +1705 +18 +2532 +4147 +1821 +2756 +482 +2474 +3816 +846 +3403 +1656 +3588 +11 +2532 +3588 +4690 +846 +1519 +3588 +165 +2531 +2980 +4314 +3588 +3962 +1473 +1161 +3306 +3137 +4862 +846 +5613 +3376 +5140 +2532 +5290 +1519 +3588 +3624 +846 +1161 +3588 +1665 +4130 +3588 +5550 +3588 +5088 +846 +2532 +1080 +5207 +2532 +191 +3588 +4040 +2532 +3588 +4773 +846 +3754 +3170 +2962 +3588 +1656 +846 +3326 +846 +2532 +4796 +846 +2532 +1096 +1722 +3588 +2250 +3588 +3590 +2064 +4059 +3588 +3813 +2532 +2564 +846 +1909 +3588 +3686 +3588 +3962 +846 +2197 +2532 +611 +3588 +3384 +846 +3004 +3780 +235 +2564 +2491 +2532 +3004 +4314 +846 +3754 +1510 +1537 +3588 +4772 +4771 +3762 +3739 +2564 +3588 +3686 +3778 +1161 +1770 +3588 +3962 +846 +3588 +302 +2309 +5101 +2564 +846 +2532 +154 +4093 +1125 +3004 +2491 +1510 +3686 +846 +2532 +2296 +3956 +1161 +455 +3588 +4750 +846 +3916 +2532 +3588 +1100 +846 +2532 +2980 +2127 +3588 +2316 +2532 +1096 +5401 +1909 +3956 +3588 +4039 +846 +2532 +1722 +3650 +3588 +3714 +3588 +2449 +1255 +3956 +3588 +4487 +3778 +2532 +5087 +3956 +3588 +191 +1722 +3588 +2588 +846 +3004 +686 +5101 +3588 +3813 +3778 +1510 +1063 +2532 +5495 +2962 +1510 +3326 +846 +2532 +2197 +3588 +3962 +846 +4130 +4151 +40 +2532 +4395 +3004 +2128 +2962 +3588 +2316 +3588 +2474 +3754 +1980 +2532 +4160 +3085 +3588 +2992 +846 +2532 +1453 +2768 +4991 +1473 +1722 +3624 +1138 +3816 +846 +2531 +2980 +1223 +4750 +3588 +40 +575 +165 +4396 +846 +4991 +1537 +2190 +1473 +2532 +1537 +5495 +3956 +3588 +3404 +1473 +4160 +1656 +3326 +3588 +3962 +1473 +2532 +3403 +1242 +40 +846 +3727 +3739 +3660 +4314 +11 +3588 +3962 +1473 +3588 +1325 +1473 +1537 +5495 +2190 +4506 +870 +3000 +846 +1722 +3742 +2532 +1343 +1799 +846 +3956 +3588 +2250 +1473 +1161 +3813 +2532 +4771 +4396 +5310 +2564 +1063 +4313 +1799 +2962 +2090 +3598 +846 +3588 +1325 +1108 +4991 +3588 +2992 +846 +1722 +859 +266 +846 +1223 +4698 +1656 +2316 +1473 +1722 +3739 +1980 +1473 +395 +1537 +5311 +2014 +3588 +1722 +4655 +2532 +4639 +2288 +2521 +3588 +2720 +3588 +4228 +1473 +1519 +3598 +1515 +1161 +3588 +3813 +837 +2532 +2901 +4151 +2532 +1510 +1722 +3588 +2048 +2193 +2250 +323 +846 +4314 +3588 +2474 +1161 +1096 +1722 +3588 +2250 +1565 +1831 +1378 +3844 +2541 +828 +583 +3956 +3588 +3625 +3778 +582 +4413 +1096 +2230 +3588 +4947 +2958 +2532 +4198 +3956 +583 +1538 +1519 +3588 +1438 +4172 +1161 +305 +2532 +2501 +575 +3588 +1056 +1537 +4172 +3478 +1519 +3588 +2449 +1519 +4172 +1138 +3748 +2564 +965 +1223 +3588 +1510 +846 +1537 +3624 +2532 +3965 +1138 +583 +4862 +3137 +3588 +3423 +846 +1510 +1471 +1161 +1096 +1722 +3588 +1510 +846 +1563 +4130 +3588 +2250 +3588 +5088 +846 +2532 +5088 +3588 +5207 +846 +3588 +4416 +2532 +4683 +846 +2532 +347 +846 +1722 +5336 +1360 +3756 +1510 +846 +5117 +1722 +3588 +2646 +2532 +4166 +1510 +1722 +3588 +5561 +3588 +846 +63 +2532 +5442 +5438 +3588 +3571 +1909 +3588 +4167 +846 +2532 +32 +2962 +2186 +846 +2532 +1391 +2962 +4034 +846 +2532 +5399 +5401 +3173 +2532 +3004 +846 +3588 +32 +3361 +5399 +1063 +3708 +2097 +4771 +5479 +3173 +3748 +1510 +3956 +3588 +2992 +3754 +5088 +4771 +4594 +4990 +3739 +1510 +5547 +2962 +1722 +4172 +1138 +2532 +3778 +4771 +4592 +2147 +1025 +4683 +2532 +2749 +1722 +5336 +2532 +1810 +1096 +4862 +3588 +32 +4128 +4756 +3770 +134 +3588 +2316 +2532 +3004 +1391 +1722 +5310 +2316 +2532 +1909 +1093 +1515 +1722 +444 +2107 +2532 +1096 +5613 +565 +575 +846 +1519 +3588 +3772 +3588 +32 +3588 +4166 +2980 +4314 +240 +1211 +1330 +2193 +965 +2532 +3708 +3588 +4487 +3778 +3588 +1096 +3739 +3588 +2962 +1107 +1473 +2532 +2064 +4692 +2532 +429 +5037 +3588 +3137 +2532 +3588 +2501 +2532 +3588 +1025 +2749 +1722 +3588 +5336 +1161 +3708 +1107 +4012 +3588 +4487 +3588 +2980 +846 +4012 +3588 +3813 +3778 +2532 +3956 +3588 +191 +2296 +4012 +3588 +2980 +5259 +3588 +4166 +4314 +846 +1161 +3588 +3137 +4933 +3956 +3588 +4487 +3778 +4820 +1722 +3588 +2588 +846 +2532 +5290 +3588 +4166 +1392 +2532 +134 +3588 +2316 +1909 +3956 +3739 +191 +2532 +3708 +2531 +2980 +4314 +846 +2532 +3753 +4130 +2250 +3638 +3588 +4059 +846 +2532 +2564 +3588 +3686 +846 +2424 +3588 +2564 +5259 +3588 +32 +4253 +3588 +4815 +846 +1722 +3588 +2836 +2532 +3753 +4130 +3588 +2250 +3588 +2512 +846 +2596 +3588 +3551 +3475 +321 +846 +1519 +2414 +3936 +3588 +2962 +2531 +1125 +1722 +3551 +2962 +3754 +3956 +730 +1272 +3388 +40 +3588 +2962 +2564 +2532 +3588 +1325 +2378 +2596 +3588 +2046 +1722 +3588 +3551 +2962 +2201 +5167 +2228 +1417 +3502 +4058 +2532 +3708 +444 +1510 +1722 +2419 +3739 +3686 +4826 +2532 +3588 +444 +3778 +1342 +2532 +2126 +4327 +3874 +3588 +2474 +2532 +4151 +40 +1510 +1909 +846 +2532 +1510 +5537 +846 +5259 +3588 +4151 +3588 +40 +3361 +3708 +2288 +4250 +2228 +302 +3708 +3588 +5547 +2962 +2532 +2064 +1722 +3588 +4151 +1519 +3588 +2411 +2532 +1722 +3588 +1521 +3588 +1118 +3588 +3813 +2424 +3588 +4160 +846 +2596 +3588 +1480 +3588 +3551 +4012 +846 +2532 +846 +1209 +846 +1519 +3588 +43 +2532 +2127 +3588 +2316 +2532 +3004 +1203 +3568 +630 +3588 +1401 +4771 +2596 +3588 +4487 +4771 +1722 +1515 +3754 +3708 +3588 +3788 +1473 +3588 +4992 +4771 +3739 +2090 +2596 +4383 +3956 +3588 +2992 +5457 +1519 +602 +1484 +2532 +1391 +2992 +4771 +2474 +2532 +1510 +2296 +3588 +3962 +846 +2532 +3588 +3384 +1909 +3588 +2980 +4012 +846 +2532 +2127 +846 +4826 +2532 +3004 +4314 +3137 +3588 +3384 +846 +3708 +3778 +2749 +1519 +4431 +2532 +386 +4183 +1722 +3588 +2474 +2532 +1519 +4592 +483 +1161 +2532 +4771 +846 +3588 +5590 +1330 +4501 +3704 +302 +601 +1537 +4183 +2588 +1261 +2532 +1510 +451 +4398 +2364 +5323 +1537 +5443 +768 +3778 +4260 +1722 +2250 +4183 +2198 +3326 +435 +2094 +2033 +575 +3588 +3932 +846 +2532 +846 +5503 +2193 +2094 +3589 +5064 +3739 +3756 +868 +3588 +2411 +3521 +2532 +1162 +3000 +3571 +2532 +2250 +2532 +846 +3588 +5610 +2186 +437 +3588 +2316 +2532 +2980 +4012 +846 +3956 +3588 +4327 +3085 +2419 +2532 +5613 +5055 +3956 +3588 +2596 +3588 +3551 +2962 +1994 +1519 +3588 +1056 +1519 +4172 +1438 +3478 +1161 +3588 +3813 +837 +2532 +2901 +4137 +4678 +2532 +5485 +2316 +1510 +1909 +846 +2532 +4198 +3588 +1118 +846 +2596 +2094 +1519 +2419 +3588 +1859 +3588 +3957 +2532 +3753 +1096 +2094 +1427 +305 +846 +2596 +3588 +1485 +3588 +1859 +2532 +5048 +3588 +2250 +1722 +3588 +5290 +846 +5278 +2424 +3588 +3816 +1722 +2419 +2532 +3756 +1097 +3588 +1118 +846 +1161 +3543 +846 +1510 +1722 +3588 +4923 +2064 +2250 +3598 +2532 +327 +846 +1722 +3588 +4773 +2532 +3588 +1110 +2532 +3361 +2147 +5290 +1519 +2419 +327 +846 +2532 +1096 +3326 +2250 +5140 +2147 +846 +1722 +3588 +2411 +2516 +1722 +3319 +3588 +1320 +2532 +191 +846 +2532 +1905 +846 +1161 +1839 +3956 +3588 +191 +846 +1909 +3588 +4907 +2532 +3588 +612 +846 +2532 +3708 +846 +1605 +2532 +3004 +4314 +846 +3588 +3384 +846 +5043 +5101 +4160 +1473 +3779 +3708 +3588 +3962 +4771 +2504 +3600 +2212 +4771 +2532 +3004 +4314 +846 +5101 +3754 +2212 +1473 +3756 +1492 +3754 +1722 +3588 +3588 +3962 +1473 +1510 +1473 +1163 +2532 +846 +3756 +4920 +3588 +4487 +3739 +2980 +846 +2532 +2597 +3326 +846 +2532 +2064 +1519 +3478 +2532 +1510 +5293 +846 +2532 +3588 +3384 +846 +1301 +3956 +3588 +4487 +1722 +3588 +2588 +846 +2532 +2424 +4298 +1722 +3588 +4678 +2532 +2244 +2532 +5485 +3844 +2316 +2532 +444 +1161 +1722 +2094 +4003 +3588 +2231 +5086 +2541 +2230 +4194 +4091 +3588 +2449 +2532 +5075 +3588 +1056 +2264 +1161 +5376 +3588 +80 +846 +5075 +3588 +2484 +2532 +5139 +5561 +2532 +3078 +3588 +9 +5075 +1909 +749 +452 +2532 +2533 +1096 +4487 +2316 +1909 +2491 +3588 +2197 +5207 +1722 +3588 +2048 +2532 +2064 +1519 +3956 +3588 +4066 +3588 +2446 +2784 +908 +3341 +1519 +859 +266 +5613 +1125 +1722 +976 +3056 +2268 +3588 +4396 +5456 +994 +1722 +3588 +2048 +2090 +3588 +3598 +2962 +2117 +4160 +3588 +5147 +846 +3956 +5327 +4137 +2532 +3956 +3735 +2532 +1015 +5013 +2532 +1510 +3588 +4646 +1519 +2117 +2532 +3588 +5138 +1519 +3598 +3006 +2532 +3708 +3956 +4561 +3588 +4992 +3588 +2316 +3767 +3004 +3588 +1607 +907 +5259 +846 +3793 +1081 +2191 +5101 +5263 +4771 +5343 +575 +3588 +3195 +3709 +3767 +4160 +2590 +514 +3588 +3341 +2532 +3361 +756 +3004 +1722 +1438 +3962 +2192 +3588 +11 +1063 +3004 +4771 +3754 +1410 +3588 +2316 +1537 +3588 +3037 +3778 +1453 +5043 +3588 +11 +1161 +2235 +2532 +3588 +513 +4314 +3588 +4491 +3588 +1186 +2749 +3767 +3956 +1186 +3361 +4160 +2590 +2570 +1581 +2532 +1519 +4442 +906 +2532 +1905 +846 +3588 +3793 +3004 +3767 +5101 +4160 +1161 +611 +3004 +846 +3588 +2192 +1417 +5509 +3330 +3588 +3361 +2192 +2532 +3588 +2192 +1033 +3668 +4160 +1161 +2064 +2532 +5057 +907 +2532 +3004 +4314 +846 +1320 +5101 +4160 +1161 +3588 +3004 +4314 +846 +3367 +4119 +3844 +3588 +1299 +4771 +4238 +1161 +1905 +846 +2532 +4754 +3004 +5101 +4160 +2532 +1473 +2532 +3004 +846 +3367 +1286 +3366 +4811 +2532 +714 +3588 +3800 +4771 +1161 +4328 +3588 +2992 +2532 +1260 +3956 +1722 +3588 +2588 +846 +4012 +3588 +2491 +3361 +4218 +846 +1510 +3588 +5547 +611 +3004 +3956 +3588 +2491 +3303 +1473 +5204 +907 +4771 +1161 +2064 +3588 +2478 +1473 +3739 +3756 +1510 +2425 +3089 +3588 +2438 +3588 +5266 +846 +846 +4771 +907 +1722 +4151 +40 +2532 +4442 +3739 +3588 +4425 +1722 +3588 +5495 +846 +1245 +3588 +257 +846 +2532 +4863 +3588 +4621 +1519 +3588 +596 +846 +1161 +3588 +892 +2618 +4442 +762 +3303 +3767 +4183 +2532 +2087 +3870 +2097 +3588 +2992 +1161 +3588 +2264 +3588 +5076 +1651 +5259 +846 +4012 +2266 +3588 +1135 +3588 +80 +846 +2532 +4012 +3956 +3739 +4190 +4160 +3588 +2264 +4369 +2532 +3778 +1909 +3956 +2623 +3588 +2491 +1722 +5438 +1161 +1096 +1722 +3588 +907 +537 +3588 +2992 +2532 +2424 +907 +2532 +4336 +455 +3588 +3772 +2532 +2597 +3588 +4151 +3588 +40 +4984 +1491 +5613 +4058 +1909 +846 +2532 +5456 +1537 +3772 +1096 +4771 +1510 +3588 +5207 +1473 +3588 +27 +1722 +4771 +2106 +2532 +846 +2424 +1510 +756 +5616 +2094 +5144 +5613 +3543 +1510 +5207 +2501 +3588 +2242 +3588 +3158 +3588 +3017 +3588 +3197 +3588 +2388 +3588 +2501 +3588 +3161 +3588 +301 +3588 +3486 +3588 +2069 +3588 +3477 +3588 +3092 +3588 +3161 +3588 +4584 +3588 +2501 +3588 +2448 +3588 +2490 +3588 +4488 +3588 +2216 +3588 +4528 +3588 +3518 +3588 +3197 +3588 +78 +3588 +2973 +3588 +1678 +3588 +2262 +3588 +2424 +3588 +1663 +3588 +2497 +3588 +3158 +3588 +3017 +3588 +4826 +3588 +2455 +3588 +2501 +3588 +2494 +3588 +1662 +3588 +3190 +3588 +3104 +3588 +3160 +3588 +3481 +3588 +1138 +3588 +2421 +3588 +5601 +3588 +1003 +3588 +4527 +3588 +3476 +3588 +284 +3588 +284 +3588 +689 +3588 +2074 +3588 +5329 +3588 +2455 +3588 +2384 +3588 +2464 +3588 +11 +3588 +2291 +3588 +3493 +3588 +4562 +3588 +4466 +3588 +5317 +3588 +1443 +3588 +4527 +3588 +2536 +3588 +742 +3588 +4590 +3588 +3575 +3588 +2984 +3588 +3103 +3588 +1802 +3588 +2391 +3588 +3121 +3588 +2536 +3588 +1800 +3588 +4589 +3588 +76 +3588 +2316 +1161 +2424 +4134 +4151 +40 +5290 +575 +3588 +2446 +2532 +71 +1722 +3588 +4151 +1722 +3588 +2048 +2250 +5062 +3985 +5259 +3588 +1228 +2532 +3756 +5315 +3762 +1722 +3588 +2250 +1565 +2532 +4931 +846 +3983 +1161 +3004 +846 +3588 +1228 +1487 +1510 +5207 +3588 +2316 +3004 +3588 +3037 +3778 +2443 +1096 +740 +2532 +611 +4314 +846 +3588 +2424 +1125 +3754 +3756 +1909 +740 +3441 +2198 +3588 +444 +2532 +321 +846 +1166 +846 +3956 +3588 +932 +3588 +3625 +1722 +4743 +5550 +2532 +3004 +846 +3588 +1228 +4771 +1325 +3588 +1849 +3778 +537 +2532 +3588 +1391 +846 +3754 +1473 +3860 +2532 +1437 +3739 +2309 +1325 +846 +3767 +1437 +4771 +4352 +1799 +1473 +1510 +4771 +3956 +2532 +611 +3588 +2424 +3004 +846 +1125 +4352 +2962 +3588 +2316 +4771 +2532 +846 +3441 +3000 +1161 +71 +846 +1519 +2419 +2532 +2476 +1909 +3588 +4419 +3588 +2411 +2532 +3004 +846 +1487 +1510 +5207 +3588 +2316 +906 +4572 +1782 +2736 +1063 +1125 +3754 +3588 +32 +846 +1781 +4012 +4771 +3588 +1314 +4771 +2532 +3754 +1909 +5495 +142 +4771 +3361 +4218 +4350 +4314 +3037 +3588 +4228 +4771 +2532 +611 +3004 +846 +3588 +2424 +3754 +2046 +3756 +1598 +2962 +3588 +2316 +4771 +2532 +4931 +3956 +3986 +3588 +1228 +868 +575 +846 +891 +2540 +2532 +5290 +3588 +2424 +1722 +3588 +1411 +3588 +4151 +1519 +3588 +1056 +2532 +5345 +1831 +2596 +3650 +3588 +4066 +4012 +846 +2532 +846 +1321 +1722 +3588 +4864 +846 +1392 +5259 +3956 +2532 +2064 +1519 +3478 +3757 +1510 +5142 +2532 +1525 +2596 +3588 +1486 +846 +1722 +3588 +2250 +3588 +4521 +1519 +3588 +4864 +2532 +450 +314 +2532 +1929 +846 +975 +3588 +4396 +2268 +2532 +455 +3588 +975 +2147 +3588 +5117 +3757 +1510 +1125 +4151 +2962 +1909 +1473 +3739 +1752 +5548 +1473 +2097 +4434 +649 +1473 +2784 +164 +859 +2532 +5185 +309 +649 +2352 +1722 +859 +2784 +1763 +2962 +1184 +2532 +4428 +3588 +975 +591 +3588 +5257 +2523 +2532 +3956 +3588 +3788 +1722 +3588 +4864 +1510 +816 +846 +1161 +756 +3004 +4314 +846 +3754 +4594 +4137 +3588 +1124 +3778 +1722 +3588 +3775 +4771 +2532 +3956 +3140 +846 +2532 +2296 +1909 +3588 +3056 +3588 +5485 +3588 +1607 +1537 +3588 +4750 +846 +2532 +3004 +3780 +5207 +2501 +1510 +3778 +2532 +3004 +4314 +846 +3843 +2046 +1473 +3588 +3850 +3778 +2395 +2323 +4572 +191 +3745 +1096 +1519 +3588 +2584 +4160 +2532 +5602 +1722 +3588 +3968 +4771 +1161 +3004 +281 +3004 +4771 +3754 +3762 +4396 +1184 +1510 +1722 +3588 +3968 +846 +1161 +1909 +225 +3004 +4771 +4183 +5503 +1510 +1722 +3588 +2250 +2243 +1722 +3588 +2474 +3753 +2808 +3588 +3772 +1909 +2094 +5140 +2532 +3376 +1803 +5613 +1096 +3042 +3173 +1909 +3956 +3588 +1093 +2532 +4314 +3762 +846 +3992 +2243 +1487 +3361 +1519 +4558 +3588 +4606 +4314 +1135 +5503 +2532 +4183 +3015 +1510 +1722 +3588 +2474 +1909 +1666 +3588 +4396 +2532 +3762 +846 +2511 +1487 +3361 +3497 +3588 +4948 +2532 +4130 +2372 +3956 +1722 +3588 +4864 +191 +3778 +2532 +450 +1544 +846 +1854 +3588 +4172 +2532 +71 +846 +2193 +3790 +3588 +3735 +1909 +3739 +3588 +4172 +846 +3618 +5620 +2630 +846 +1161 +846 +1330 +1223 +3319 +846 +4198 +2532 +2718 +1519 +2584 +4172 +3588 +1056 +2532 +1510 +1321 +846 +1722 +3588 +4521 +2532 +1605 +1909 +3588 +1322 +846 +3754 +1722 +1849 +1510 +3588 +3056 +846 +2532 +1722 +3588 +4864 +1510 +444 +2192 +4151 +1140 +169 +2532 +349 +5456 +3173 +1436 +5101 +1473 +2532 +4771 +2424 +3479 +2064 +622 +1473 +1492 +4771 +5101 +1510 +3588 +40 +3588 +2316 +2532 +2008 +846 +3588 +2424 +3004 +5392 +2532 +1831 +575 +846 +2532 +3588 +1140 +4496 +846 +1519 +3588 +3319 +1831 +575 +846 +3367 +984 +846 +2532 +1096 +2285 +1909 +3956 +2532 +4814 +4314 +240 +3004 +5101 +3588 +3056 +3778 +3754 +1722 +1849 +2532 +1411 +2004 +3588 +169 +4151 +2532 +1831 +2532 +1607 +2279 +4012 +846 +1519 +3956 +5117 +3588 +4066 +1161 +450 +575 +3588 +4864 +1525 +1519 +3588 +3614 +4613 +1161 +3994 +3588 +4613 +1510 +4912 +4446 +3173 +2532 +2065 +846 +4012 +846 +2532 +2186 +1883 +846 +2008 +3588 +4446 +2532 +863 +846 +1161 +3916 +450 +1247 +846 +1161 +1416 +3588 +2246 +537 +3745 +2192 +770 +3554 +4164 +71 +846 +4314 +846 +1161 +3588 +1520 +1538 +846 +3588 +5495 +2007 +2323 +846 +1161 +1831 +2532 +1140 +575 +4183 +2905 +2532 +3004 +3754 +4771 +1510 +3588 +5207 +3588 +2316 +2532 +2008 +3756 +1439 +846 +2980 +3754 +1492 +3588 +5547 +846 +1510 +1161 +1096 +2250 +1831 +4198 +1519 +2048 +5117 +2532 +3588 +3793 +1934 +846 +2532 +2064 +2193 +846 +2532 +2722 +846 +3588 +3361 +4198 +575 +846 +1161 +3588 +3004 +4314 +846 +3754 +2532 +3588 +2087 +4172 +2097 +1473 +3588 +932 +3588 +2316 +1163 +3754 +1909 +3778 +649 +2532 +1510 +2784 +1519 +3588 +4864 +3588 +2449 +1161 +1096 +1722 +3588 +3588 +3793 +1945 +846 +2532 +191 +3588 +3056 +3588 +2316 +2532 +846 +1510 +2476 +3844 +3588 +3041 +1082 +2532 +3708 +4143 +1417 +2476 +3844 +3588 +3041 +1161 +3588 +231 +575 +846 +576 +4150 +3588 +1350 +1161 +1684 +1519 +1520 +3588 +4143 +3739 +1510 +4613 +2065 +846 +575 +3588 +1093 +1877 +3641 +1161 +2523 +1537 +3588 +4143 +1321 +3588 +3793 +1161 +5613 +3973 +2980 +3004 +4314 +3588 +4613 +1877 +1519 +3588 +899 +2532 +5465 +3588 +1350 +4771 +1519 +61 +2532 +611 +4613 +3004 +1988 +1223 +3650 +3571 +2872 +3762 +2983 +1161 +1909 +3588 +4487 +4771 +5465 +3588 +1350 +2532 +3778 +4160 +4788 +4128 +2486 +4183 +1161 +1284 +3588 +1350 +846 +2532 +2656 +3588 +3353 +1722 +3588 +2087 +4143 +3588 +2064 +4815 +846 +2532 +2064 +2532 +4130 +297 +3588 +4143 +5620 +1036 +846 +1161 +3708 +4613 +4074 +4363 +3588 +1119 +2424 +3004 +1831 +575 +1473 +3754 +435 +268 +1510 +2962 +1063 +2285 +4023 +846 +2532 +3956 +3588 +4862 +846 +1909 +3588 +61 +3588 +2486 +3739 +4815 +1161 +3668 +2532 +2385 +2532 +2491 +5207 +2199 +3739 +1510 +2844 +3588 +4613 +2532 +3004 +4314 +3588 +4613 +3588 +2424 +3361 +5399 +575 +3588 +3568 +444 +1510 +2221 +2532 +2609 +3588 +4143 +1909 +3588 +1093 +863 +3956 +190 +846 +2532 +1096 +1722 +3588 +1510 +846 +1722 +1520 +3588 +4172 +2532 +3708 +435 +4134 +3014 +1161 +3708 +3588 +2424 +4098 +1909 +4383 +1189 +846 +3004 +2962 +1437 +2309 +1410 +1473 +2511 +2532 +1614 +3588 +5495 +680 +846 +3004 +2309 +2511 +2532 +2112 +3588 +3014 +565 +575 +846 +2532 +846 +3853 +846 +3367 +3004 +235 +565 +1166 +4572 +3588 +2409 +2532 +4374 +4012 +3588 +2512 +4771 +2531 +4367 +3475 +1519 +3142 +846 +1161 +1330 +3123 +3588 +3056 +4012 +846 +2532 +4905 +3793 +4183 +191 +2532 +2323 +575 +3588 +769 +846 +1161 +846 +1510 +5298 +1722 +3588 +2048 +2532 +4336 +2532 +1096 +1722 +1520 +3588 +2250 +2532 +846 +1510 +1321 +2532 +1510 +2521 +5330 +2532 +3547 +3739 +1510 +2064 +1537 +3956 +2968 +3588 +1056 +2532 +2449 +2532 +2419 +2532 +1411 +2962 +1510 +1519 +3588 +2390 +846 +2532 +3708 +435 +5342 +1909 +2825 +444 +3739 +1510 +3886 +2532 +2212 +846 +1533 +2532 +5087 +1799 +846 +2532 +3361 +2147 +4169 +1533 +846 +1223 +3588 +3793 +305 +1909 +3588 +1430 +1223 +3588 +2766 +2524 +846 +4862 +3588 +2826 +1519 +3588 +3319 +1715 +3588 +2424 +2532 +3708 +3588 +4102 +846 +3004 +444 +863 +4771 +3588 +266 +4771 +2532 +756 +1260 +3588 +1122 +2532 +3588 +5330 +3004 +5101 +1510 +3778 +3739 +2980 +988 +5101 +1410 +266 +863 +1487 +3361 +3441 +3588 +2316 +1161 +3588 +2424 +1921 +3588 +1261 +846 +611 +3004 +4314 +846 +5101 +1260 +1722 +3588 +2588 +4771 +5101 +1510 +2123 +3004 +863 +4771 +3588 +266 +4771 +2228 +3004 +1453 +2532 +4043 +1161 +2443 +1492 +3754 +3588 +5207 +3588 +444 +1849 +2192 +1909 +3588 +1093 +863 +266 +3004 +3588 +3886 +4771 +3004 +1453 +2532 +142 +3588 +2826 +4771 +4198 +1519 +3588 +3624 +4771 +2532 +3916 +450 +1799 +846 +142 +1909 +3739 +2621 +565 +1519 +3588 +3624 +846 +1392 +3588 +2316 +2532 +1611 +2983 +537 +2532 +1392 +3588 +2316 +2532 +4130 +5401 +3004 +3754 +3708 +3861 +4594 +2532 +3326 +3778 +1831 +2532 +2300 +5057 +3686 +3018 +2521 +1909 +3588 +5058 +2532 +3004 +846 +190 +1473 +2532 +2641 +3956 +450 +190 +846 +2532 +4160 +1403 +3173 +3018 +846 +1722 +3588 +3614 +846 +2532 +1510 +3793 +4183 +5057 +2532 +243 +3739 +1510 +2621 +3326 +846 +2532 +1111 +3588 +5330 +2532 +3588 +1122 +846 +4314 +3588 +3101 +846 +3004 +1223 +5101 +3326 +3588 +5057 +2532 +268 +2068 +2532 +4095 +2532 +611 +3588 +2424 +3004 +4314 +846 +3756 +5532 +2395 +2192 +3588 +5198 +235 +3588 +2560 +2192 +3756 +2064 +2564 +1342 +235 +268 +1519 +3341 +1161 +3588 +3004 +4314 +846 +3588 +3101 +2491 +3522 +4437 +2532 +1162 +4160 +3668 +2532 +3588 +3588 +5330 +1161 +3588 +4674 +2068 +2532 +4095 +1161 +3588 +2424 +3004 +4314 +846 +3361 +1410 +3588 +5207 +3588 +3567 +1722 +3739 +3588 +3566 +3326 +846 +1510 +3522 +4160 +1161 +2064 +2250 +2532 +3752 +522 +575 +846 +3588 +3566 +5119 +3522 +1722 +1565 +3588 +2250 +1161 +3004 +2532 +3850 +4314 +846 +3754 +3762 +1915 +575 +2440 +2537 +4977 +1911 +1909 +2440 +3820 +1161 +1487 +1490 +2532 +3588 +2537 +4977 +2532 +3588 +3820 +3756 +4856 +3588 +1915 +3588 +575 +3588 +2537 +2532 +3762 +906 +3631 +3501 +1519 +779 +3820 +1161 +1487 +1490 +4486 +3588 +3631 +3588 +3501 +3588 +779 +2532 +846 +1632 +2532 +3588 +779 +622 +235 +3631 +3501 +1519 +779 +2537 +992 +2532 +3762 +4095 +3820 +2309 +3501 +1063 +3004 +3588 +3820 +5543 +1510 +1161 +1096 +1722 +4521 +1279 +846 +1223 +4702 +2532 +5089 +2532 +2068 +3588 +3101 +846 +3588 +4719 +5597 +3588 +5495 +1161 +5100 +3588 +5330 +3004 +5101 +4160 +3739 +3756 +1832 +3588 +4521 +2532 +611 +4314 +846 +3004 +3588 +2424 +3761 +314 +3778 +3739 +4160 +1138 +3698 +3983 +846 +2532 +3588 +3326 +846 +1510 +5613 +1525 +1519 +3588 +3624 +3588 +2316 +2532 +3588 +740 +3588 +4286 +2983 +5315 +2532 +1325 +3588 +3326 +846 +3739 +5315 +3756 +1832 +1487 +3361 +3441 +3588 +2409 +2532 +3004 +846 +1510 +2962 +3588 +4521 +3588 +5207 +3588 +444 +1161 +1096 +1722 +2087 +4521 +1525 +846 +1519 +3588 +4864 +2532 +1321 +2532 +1510 +444 +1563 +2532 +3588 +5495 +846 +3588 +1188 +1510 +3584 +1161 +3906 +846 +3588 +1122 +2532 +3588 +5330 +1487 +1722 +3588 +4521 +2323 +2443 +2147 +2723 +846 +1161 +846 +1492 +3588 +1261 +846 +1161 +3004 +3588 +435 +3588 +3584 +2192 +3588 +5495 +1453 +2532 +2476 +1519 +3588 +3319 +2532 +450 +2476 +1161 +3004 +3588 +2424 +4314 +846 +1905 +4771 +1487 +1832 +3588 +4521 +15 +2228 +2554 +5590 +4982 +2228 +622 +2532 +4017 +3956 +846 +3004 +846 +1614 +3588 +5495 +4771 +1161 +3588 +4160 +2532 +600 +3588 +5495 +846 +1161 +846 +4130 +454 +2532 +1255 +4314 +240 +302 +5101 +4160 +3588 +2424 +1161 +1096 +1722 +3588 +2250 +3778 +1831 +846 +1519 +3588 +3735 +4336 +2532 +1510 +1273 +1722 +3588 +4335 +3588 +2316 +2532 +3753 +1096 +2250 +4377 +3588 +3101 +846 +2532 +1586 +575 +846 +1427 +3739 +2532 +652 +3687 +4613 +3739 +2532 +3687 +4074 +2532 +406 +3588 +80 +846 +2532 +2385 +2532 +2491 +2532 +5376 +2532 +918 +2532 +3156 +2532 +2381 +2532 +2385 +256 +2532 +4613 +3588 +2564 +2207 +2532 +2455 +2385 +2532 +2455 +2469 +3739 +1096 +4273 +2532 +2597 +3326 +846 +2476 +1909 +5117 +3977 +2532 +3793 +4183 +3101 +846 +2532 +4128 +4183 +3588 +2992 +575 +3956 +3588 +2449 +2532 +2419 +2532 +3588 +3882 +5184 +2532 +4605 +3739 +2064 +191 +846 +2532 +2390 +575 +3588 +3554 +846 +2532 +3588 +1776 +575 +4151 +169 +2323 +2532 +3956 +3588 +3793 +2212 +680 +846 +3754 +1411 +3844 +846 +1831 +2532 +2390 +3956 +2532 +846 +1869 +3588 +3788 +846 +1519 +3588 +3101 +846 +3004 +3107 +3588 +4434 +3754 +5212 +1510 +3588 +932 +3588 +2316 +3107 +3588 +3983 +3568 +3754 +5526 +3107 +3588 +2799 +3568 +3754 +1070 +3107 +1510 +3752 +3404 +4771 +3588 +444 +2532 +3752 +873 +4771 +2532 +3679 +2532 +1544 +3588 +3686 +4771 +5613 +4190 +1752 +3588 +5207 +3588 +444 +5463 +1722 +1565 +3588 +2250 +2532 +4640 +1063 +3708 +3588 +3408 +4771 +4183 +1722 +3588 +3772 +1063 +2596 +3588 +846 +4160 +3588 +4396 +3588 +3962 +846 +4133 +3759 +4771 +3588 +4145 +3754 +568 +3588 +3874 +4771 +3759 +4771 +3588 +1705 +3568 +3754 +3983 +3759 +3588 +1070 +3568 +3754 +3996 +2532 +2799 +3759 +3752 +2573 +4771 +3004 +3956 +3588 +444 +1063 +2596 +3588 +846 +4160 +3588 +5578 +3588 +3962 +846 +235 +3004 +4771 +3588 +191 +25 +3588 +2190 +4771 +2573 +4160 +3588 +3404 +4771 +2127 +3588 +2672 +4771 +4336 +4012 +3588 +1908 +4771 +3588 +5180 +4771 +1909 +3588 +4600 +3930 +2532 +3588 +243 +2532 +575 +3588 +142 +4771 +3588 +2440 +2532 +3588 +5509 +3361 +2967 +3956 +154 +4771 +1325 +2532 +575 +3588 +142 +3588 +4674 +3361 +523 +2532 +2531 +2309 +2443 +4160 +4771 +3588 +444 +4160 +846 +3668 +2532 +1487 +25 +3588 +25 +4771 +4169 +5485 +4771 +1510 +1063 +2532 +3588 +268 +3588 +25 +846 +25 +1063 +1437 +2532 +15 +3588 +15 +4771 +4169 +5485 +4771 +1510 +2532 +3588 +268 +3588 +846 +4160 +2532 +1437 +1155 +3844 +3739 +1679 +2983 +4169 +5485 +4771 +1510 +2532 +268 +268 +1155 +2443 +618 +3588 +2470 +4133 +25 +3588 +2190 +4771 +2532 +15 +2532 +1155 +3367 +560 +2532 +1510 +3588 +3408 +4771 +4183 +2532 +1510 +5207 +5310 +3754 +846 +5543 +1510 +1909 +3588 +884 +2532 +4190 +1096 +3629 +2531 +3588 +3962 +4771 +3629 +1510 +2532 +3361 +2919 +2532 +3756 +3361 +2919 +2532 +3361 +2613 +2532 +3756 +3361 +2613 +630 +2532 +630 +1325 +2532 +1325 +4771 +3358 +2570 +4085 +4531 +5240 +1325 +1519 +3588 +2859 +4771 +1063 +3739 +3358 +3354 +488 +4771 +1161 +3004 +2532 +3850 +846 +3385 +1410 +5185 +5185 +3594 +3780 +297 +1519 +999 +1706 +3756 +1510 +3101 +5228 +3588 +1320 +1161 +2675 +3956 +1510 +5613 +3588 +1320 +846 +1161 +5101 +991 +3588 +2595 +3588 +1722 +3588 +3788 +3588 +80 +4771 +1161 +3588 +1385 +3588 +1722 +3588 +2398 +3788 +3756 +2657 +4459 +1410 +3004 +3588 +80 +4771 +80 +863 +1544 +3588 +2595 +3588 +1722 +3588 +3788 +4771 +846 +3588 +1722 +3588 +3788 +4771 +1385 +3756 +991 +5273 +1544 +4412 +3588 +1385 +1537 +3588 +3788 +4771 +2532 +5119 +1227 +3588 +2595 +3588 +1722 +3588 +3788 +3588 +80 +4771 +1544 +1063 +3756 +1510 +4160 +1186 +2570 +2590 +4550 +3761 +3825 +1186 +4550 +4160 +2590 +2570 +1063 +1538 +1186 +1537 +3588 +2398 +2590 +1097 +1063 +3756 +1537 +173 +4816 +4810 +3761 +1537 +942 +4718 +5166 +3588 +18 +444 +1537 +3588 +18 +2344 +3588 +2588 +4393 +3588 +18 +2532 +3588 +4190 +1537 +3588 +4190 +4393 +3588 +4190 +1063 +1537 +4051 +2588 +2980 +3588 +4750 +846 +1161 +5101 +1473 +2564 +2962 +2962 +2532 +3756 +4160 +3739 +3004 +3956 +3588 +2064 +4314 +1473 +2532 +191 +1473 +3588 +3056 +2532 +4160 +846 +5263 +4771 +5101 +1510 +3664 +3664 +1510 +444 +3618 +3614 +3739 +4626 +2532 +900 +2532 +5087 +2310 +1909 +3588 +4073 +1161 +4132 +1096 +4366 +3588 +4215 +3588 +3614 +1565 +2532 +3756 +2480 +4531 +846 +1223 +3588 +2573 +3618 +846 +1161 +3588 +191 +2532 +3361 +4160 +3664 +1510 +444 +3618 +3614 +1909 +3588 +1093 +5565 +2310 +3739 +4366 +3588 +4215 +2532 +2117 +4098 +2532 +1096 +3588 +4485 +3588 +3614 +1565 +3173 +1894 +4137 +3956 +3588 +4487 +846 +1519 +3588 +189 +3588 +2992 +1525 +1519 +2584 +1161 +1543 +5100 +1401 +2560 +2192 +3195 +5053 +3739 +1510 +846 +1784 +1161 +191 +4012 +3588 +2424 +649 +4314 +846 +4245 +3588 +2453 +2065 +846 +3704 +2064 +1295 +3588 +1401 +846 +1161 +3588 +3854 +4314 +3588 +2424 +3870 +846 +4709 +3004 +3754 +514 +1510 +3739 +3930 +3778 +1063 +25 +3588 +1484 +1473 +2532 +3588 +4864 +846 +3618 +1473 +1161 +3588 +2424 +4198 +4862 +846 +1161 +2235 +846 +3756 +3112 +568 +575 +3588 +3614 +3992 +5384 +3588 +1543 +3004 +846 +2962 +3361 +4660 +1063 +3756 +1510 +2425 +2443 +5259 +3588 +4721 +1473 +1525 +1352 +3761 +1683 +515 +4314 +4771 +2064 +235 +3004 +3056 +2532 +2390 +3588 +3816 +1473 +1063 +2532 +1473 +1510 +444 +5259 +1849 +5021 +2192 +5259 +1683 +4757 +2532 +3004 +3778 +4198 +2532 +4198 +2532 +243 +2064 +2532 +2064 +2532 +3588 +1401 +1473 +4160 +3778 +2532 +4160 +1161 +191 +3778 +3588 +2424 +2296 +846 +2532 +4762 +3588 +190 +846 +3793 +3004 +3004 +4771 +3761 +1722 +3588 +2474 +5118 +4102 +2147 +2532 +5290 +1519 +3588 +3624 +3588 +3992 +2147 +3588 +1401 +5198 +2532 +1096 +1722 +3588 +1836 +4198 +1519 +4172 +2564 +3484 +2532 +4848 +846 +3588 +3101 +846 +2532 +3793 +4183 +1161 +5613 +1448 +3588 +4439 +3588 +4172 +2532 +3708 +1580 +2348 +3439 +5207 +3588 +3384 +846 +2532 +846 +1510 +5503 +2532 +3793 +3588 +4172 +2425 +1510 +4862 +846 +2532 +3708 +846 +3588 +2962 +4697 +1909 +846 +2532 +3004 +846 +3361 +2799 +2532 +4334 +680 +3588 +4673 +1161 +3588 +941 +2476 +2532 +3004 +3495 +4771 +3004 +1453 +2532 +339 +3588 +3498 +2532 +756 +2980 +2532 +1325 +846 +3588 +3384 +846 +1161 +2983 +5401 +3956 +2532 +1392 +3588 +2316 +3004 +3754 +4396 +3173 +1453 +1722 +1473 +2532 +3754 +1980 +3588 +2316 +3588 +2992 +846 +2532 +1831 +3588 +3056 +3778 +4012 +846 +1722 +3650 +3588 +2449 +2532 +3956 +3588 +4066 +2532 +518 +2491 +3588 +3101 +846 +4012 +3956 +3778 +2532 +4341 +1417 +5100 +3588 +3101 +846 +3588 +2491 +3992 +4314 +3588 +2962 +3004 +4771 +1510 +3588 +2064 +2228 +243 +4328 +1161 +3854 +4314 +846 +3588 +435 +3004 +2491 +3588 +910 +649 +1473 +4314 +4771 +3004 +4771 +1510 +3588 +2064 +2228 +243 +4328 +1722 +1565 +3588 +5610 +2323 +4183 +575 +3554 +2532 +3148 +2532 +4151 +4190 +2532 +5185 +4183 +5483 +991 +2532 +611 +3004 +846 +4198 +518 +2491 +3739 +3708 +2532 +191 +5185 +308 +5560 +4043 +3015 +2511 +2532 +2974 +191 +3498 +1453 +4434 +2097 +2532 +3107 +1510 +1437 +3739 +3361 +4624 +1722 +1473 +1161 +565 +3588 +32 +2491 +756 +3004 +4314 +3588 +3793 +4012 +2491 +5101 +2300 +1831 +1519 +3588 +2048 +2563 +5259 +417 +4531 +235 +5101 +3708 +1831 +444 +1722 +3120 +2440 +294 +3708 +3588 +1722 +2441 +1741 +2532 +5172 +5225 +1722 +3588 +934 +1510 +235 +5101 +3708 +1831 +4396 +3483 +3004 +4771 +2532 +4053 +4396 +3778 +1510 +4012 +3739 +1125 +3708 +649 +3588 +32 +1473 +4253 +4383 +4771 +3739 +2680 +3588 +3598 +4771 +1715 +4771 +3004 +4771 +3173 +1722 +1084 +1135 +2491 +3762 +1510 +1161 +3588 +3398 +1722 +3588 +932 +3588 +2316 +3173 +846 +1510 +2532 +3956 +3588 +2992 +2532 +3588 +5057 +191 +1344 +3588 +2316 +907 +3588 +908 +2491 +1161 +3588 +5330 +2532 +3588 +3544 +3588 +1012 +3588 +2316 +114 +1519 +1438 +3361 +907 +5259 +846 +3767 +5101 +3666 +3588 +444 +3588 +1074 +3778 +2532 +5101 +1510 +3664 +3664 +1510 +3813 +3588 +1722 +58 +2521 +2532 +4377 +240 +3739 +3004 +832 +4771 +2532 +3756 +3738 +2354 +2532 +3756 +2799 +1063 +2064 +2491 +3588 +910 +3361 +2068 +740 +3383 +4095 +3631 +2532 +3004 +1140 +2192 +2064 +3588 +5207 +3588 +444 +2068 +2532 +4095 +2532 +3004 +3708 +444 +5314 +2532 +3630 +5384 +5057 +2532 +268 +2532 +1344 +3588 +4678 +575 +3956 +3588 +5043 +846 +1161 +2065 +5100 +3588 +5330 +846 +2443 +5315 +3326 +846 +2532 +1525 +1519 +3588 +3624 +3588 +5330 +2625 +2532 +3708 +1135 +3748 +1510 +1722 +3588 +4172 +268 +2532 +1921 +3754 +2621 +1722 +3588 +3614 +3588 +5330 +2865 +211 +3464 +2532 +2476 +3694 +3844 +3588 +4228 +846 +2799 +756 +3588 +1144 +1026 +3588 +4228 +846 +2532 +3588 +2359 +3588 +2776 +846 +1591 +2532 +2705 +3588 +4228 +846 +2532 +218 +3588 +3464 +1161 +3708 +3588 +5330 +3588 +2564 +846 +3004 +1722 +1438 +3004 +1487 +3778 +1510 +4396 +302 +1097 +5101 +2532 +4217 +3588 +1135 +3748 +680 +846 +3754 +268 +1510 +2532 +611 +3588 +2424 +3004 +4314 +846 +4613 +2192 +4771 +5100 +3004 +1161 +3588 +1320 +3004 +5346 +1417 +5533 +1510 +1157 +5100 +3588 +1520 +3784 +1220 +4001 +1161 +3588 +2087 +4004 +3361 +2192 +846 +591 +297 +5483 +3767 +5101 +846 +4119 +25 +846 +611 +4613 +3004 +5274 +3754 +3739 +3588 +4119 +5483 +1161 +3588 +3004 +846 +3723 +2919 +2532 +4762 +4314 +3588 +1135 +3588 +4613 +5346 +991 +3778 +3588 +1135 +1525 +1519 +4771 +3588 +3614 +5204 +1473 +1909 +4228 +3756 +1325 +1161 +3778 +3588 +1144 +1026 +1473 +3588 +4228 +2532 +3588 +2359 +846 +1591 +5370 +1473 +3756 +1325 +1161 +3778 +575 +3739 +1525 +3756 +1257 +2705 +1473 +3588 +4228 +1637 +3588 +2776 +1473 +3756 +218 +1161 +3778 +3464 +218 +3588 +4228 +1473 +3739 +5484 +3004 +4771 +863 +3588 +266 +846 +3588 +4183 +3754 +25 +4183 +1161 +3739 +3641 +863 +3641 +25 +1161 +3004 +846 +863 +4771 +3588 +266 +2532 +756 +3588 +4873 +3004 +1722 +1438 +5101 +3778 +1510 +3739 +2532 +266 +863 +1161 +3004 +4314 +3588 +1135 +3588 +4102 +4771 +4982 +4771 +4198 +1519 +1515 +2532 +1096 +1722 +3588 +2517 +2532 +846 +1353 +2596 +4172 +2532 +2968 +2784 +2532 +2097 +3588 +932 +3588 +2316 +2532 +4862 +846 +3588 +1427 +2532 +1135 +5100 +3739 +1510 +2323 +575 +4151 +4190 +2532 +769 +3137 +3588 +2564 +3094 +575 +3739 +1140 +2033 +1831 +2532 +2489 +1135 +5529 +2012 +2264 +2532 +4677 +2532 +2087 +4183 +3748 +1247 +846 +1537 +3588 +5225 +846 +1161 +4896 +3793 +4183 +2532 +3588 +2596 +4172 +1975 +4314 +846 +3004 +1223 +3850 +1831 +3588 +4687 +3588 +4687 +3588 +4703 +846 +2532 +1722 +3588 +4687 +846 +3739 +3303 +4098 +3844 +3588 +3598 +2532 +2662 +2532 +3588 +4071 +3588 +3772 +2719 +846 +2532 +2087 +2667 +1909 +3588 +4073 +2532 +5453 +3583 +1223 +3588 +3361 +2192 +2429 +2532 +2087 +4098 +1722 +3319 +3588 +173 +2532 +4855 +3588 +173 +638 +846 +2532 +2087 +4098 +1519 +3588 +1093 +3588 +18 +2532 +5453 +4160 +2590 +1542 +3778 +3004 +5455 +3588 +2192 +3775 +191 +191 +1161 +1905 +846 +3588 +3101 +846 +5101 +1510 +3778 +3588 +3850 +1161 +3588 +3004 +4771 +1325 +1097 +3588 +3466 +3588 +932 +3588 +2316 +1161 +3588 +3062 +1722 +3850 +2443 +991 +3361 +991 +2532 +191 +3361 +4920 +1161 +1510 +3778 +3588 +3850 +3588 +4703 +1510 +3588 +3056 +3588 +2316 +1161 +3588 +3844 +3588 +3598 +1510 +3588 +191 +1534 +2064 +3588 +1228 +2532 +142 +3588 +3056 +575 +3588 +2588 +846 +2443 +3361 +4100 +4982 +1161 +3588 +1909 +3588 +4073 +3739 +3752 +191 +3326 +5479 +1209 +3588 +3056 +2532 +3778 +4491 +3756 +2192 +3739 +4314 +2540 +4100 +2532 +1722 +2540 +3986 +868 +1161 +3588 +1519 +3588 +173 +4098 +3778 +1510 +3588 +191 +2532 +5259 +3308 +2532 +4149 +2532 +2237 +3588 +979 +4198 +4846 +2532 +3756 +5052 +1161 +3588 +1722 +3588 +2570 +1093 +3778 +1510 +3748 +1722 +2588 +2570 +2532 +18 +191 +3588 +3056 +2722 +2532 +2592 +1722 +5281 +1161 +3762 +3088 +681 +2572 +846 +4632 +2228 +5270 +2825 +5087 +235 +1909 +3087 +5087 +2443 +3588 +1531 +991 +3588 +5457 +1063 +3756 +1510 +2927 +3739 +3756 +5318 +1096 +3761 +614 +3739 +3756 +3361 +1097 +2532 +1519 +5318 +2064 +3767 +991 +4459 +191 +1063 +302 +3739 +2192 +1325 +846 +2532 +302 +3739 +3361 +2192 +2532 +3739 +2192 +1380 +142 +575 +846 +1161 +3854 +4314 +846 +3588 +3384 +2532 +3588 +80 +846 +2532 +3756 +1410 +4940 +846 +1223 +3588 +3793 +1161 +518 +846 +3588 +3384 +4771 +2532 +3588 +80 +4771 +2476 +1854 +3708 +4771 +2309 +1161 +3588 +611 +3004 +4314 +846 +3384 +1473 +2532 +80 +1473 +3778 +1510 +3588 +3588 +3056 +3588 +2316 +191 +2532 +4160 +1161 +1096 +1722 +1520 +3588 +2250 +2532 +846 +1684 +1519 +4143 +2532 +3588 +3101 +846 +2532 +3004 +4314 +846 +1330 +1519 +3588 +4008 +3588 +3041 +2532 +321 +1161 +4126 +846 +879 +2532 +2597 +2978 +417 +1519 +3588 +3041 +2532 +4845 +2532 +2793 +1161 +4334 +1326 +846 +3004 +1988 +1988 +622 +1161 +3588 +1326 +2008 +3588 +417 +2532 +3588 +2830 +3588 +5204 +2532 +3973 +2532 +1096 +1055 +1161 +3004 +846 +4226 +3588 +4102 +4771 +1161 +5399 +2296 +3004 +4314 +240 +686 +5101 +3778 +1510 +3754 +2532 +3588 +417 +2532 +3588 +5204 +2004 +2532 +5219 +846 +2532 +2668 +1519 +3588 +5561 +3588 +1086 +3748 +1510 +495 +3588 +1056 +1161 +846 +1831 +1909 +3588 +1093 +5221 +435 +5100 +1537 +3588 +4172 +2192 +1140 +2532 +5550 +2425 +3756 +1746 +2440 +2532 +1722 +3614 +3756 +3306 +235 +1722 +3588 +3418 +1161 +3708 +3588 +2424 +349 +4363 +846 +2532 +5456 +3173 +3004 +5101 +1473 +2532 +4771 +2424 +5207 +3588 +2316 +3588 +5310 +1189 +4771 +3361 +1473 +928 +1063 +3853 +3588 +4151 +3588 +169 +1831 +575 +3588 +444 +1063 +4183 +5550 +4884 +846 +2532 +1195 +254 +2532 +3976 +5442 +2532 +1284 +3588 +1199 +1643 +575 +3588 +1140 +1519 +3588 +2048 +1161 +1905 +846 +3588 +2424 +5101 +4771 +3686 +1510 +1161 +3588 +3004 +3003 +3754 +1525 +1140 +4183 +1519 +846 +2532 +3870 +846 +2443 +3361 +2004 +846 +1519 +3588 +12 +565 +1161 +1510 +1563 +34 +5519 +2425 +1006 +1722 +3588 +3735 +2532 +3870 +846 +2443 +2010 +846 +1519 +1565 +1525 +2532 +2010 +846 +1161 +3588 +1140 +1831 +575 +3588 +444 +1525 +1519 +3588 +5519 +2532 +3729 +3588 +34 +2596 +3588 +2911 +1519 +3588 +3041 +2532 +638 +1161 +3588 +1006 +3708 +3588 +1096 +5343 +2532 +518 +1519 +3588 +4172 +2532 +1519 +3588 +68 +1161 +1831 +3708 +3588 +1096 +2532 +2064 +4314 +3588 +2424 +2532 +2147 +2521 +3588 +444 +575 +3739 +3588 +1140 +1831 +2439 +2532 +4993 +3844 +3588 +4228 +3588 +2424 +2532 +5399 +1161 +518 +846 +3588 +3708 +4459 +4982 +3588 +1139 +2532 +2065 +537 +3588 +4128 +3588 +4066 +3588 +1086 +846 +565 +575 +846 +3754 +5401 +3173 +4912 +1161 +846 +1684 +1519 +4143 +5290 +1161 +1189 +846 +3588 +435 +575 +3739 +1831 +3588 +1140 +1510 +4862 +846 +1161 +630 +846 +3004 +5290 +1519 +3588 +3624 +4771 +2532 +1334 +3745 +4771 +4160 +3588 +2316 +2532 +565 +2596 +3650 +3588 +4172 +2784 +3745 +4160 +846 +3588 +2424 +1161 +1722 +3588 +5290 +3588 +2424 +588 +846 +3588 +3793 +1063 +3956 +1510 +4328 +846 +2532 +3708 +2064 +435 +3739 +3686 +2383 +2532 +3778 +758 +3588 +4864 +5225 +2532 +4098 +3844 +3588 +4228 +2424 +3870 +846 +1525 +1519 +3588 +3624 +846 +3754 +2364 +3439 +5613 +2094 +1427 +1510 +846 +2532 +846 +599 +1161 +1722 +3588 +5217 +846 +3588 +3793 +4846 +846 +2532 +1135 +1510 +1722 +4511 +129 +575 +2094 +1427 +3748 +3756 +2480 +575 +3762 +2323 +4334 +3693 +680 +3588 +2899 +3588 +2440 +846 +2532 +3916 +2476 +3588 +4511 +3588 +129 +846 +2532 +3004 +3588 +2424 +5101 +3588 +680 +1473 +1161 +720 +3956 +3004 +3588 +4074 +1988 +3588 +3793 +4912 +4771 +2532 +598 +1161 +3588 +2424 +3004 +680 +1473 +5100 +1063 +1473 +1097 +1411 +1831 +575 +1473 +1161 +3588 +1135 +3708 +3754 +3756 +2990 +5141 +2064 +2532 +4363 +846 +1223 +3739 +156 +680 +846 +518 +1799 +3956 +3588 +2992 +2532 +5613 +2390 +3916 +1161 +3588 +3004 +846 +2364 +3588 +4102 +4771 +4982 +4771 +4198 +1519 +1515 +2089 +846 +2980 +2064 +5100 +3844 +3588 +752 +3004 +3754 +2348 +3588 +2364 +4771 +3371 +4660 +3588 +1320 +1161 +3588 +2424 +191 +611 +846 +3361 +5399 +3440 +4100 +2532 +4982 +1161 +2064 +1519 +3588 +3614 +3756 +863 +1525 +5100 +4862 +846 +1487 +3361 +4074 +2532 +2491 +2532 +2385 +2532 +3588 +3962 +3588 +3816 +2532 +3588 +3384 +1161 +3956 +2799 +2532 +2875 +846 +1161 +3588 +3004 +3361 +2799 +3756 +599 +235 +2518 +2532 +2606 +846 +1492 +3754 +599 +1161 +846 +2902 +3588 +5495 +846 +5455 +3004 +3588 +3816 +1453 +2532 +1994 +3588 +4151 +846 +2532 +450 +3916 +2532 +1299 +846 +1325 +5315 +2532 +1839 +3588 +1118 +846 +1161 +3588 +3853 +846 +3367 +3004 +3588 +1096 +1161 +4779 +3588 +1427 +1325 +846 +1411 +2532 +1849 +1909 +3956 +3588 +1140 +2532 +3554 +2323 +2532 +649 +846 +2784 +3588 +932 +3588 +2316 +2532 +2390 +2532 +3004 +4314 +846 +3367 +142 +1519 +3588 +3598 +3383 +4464 +3383 +4082 +3383 +740 +3383 +694 +3383 +303 +1417 +5509 +2192 +2532 +302 +1519 +3739 +3614 +1525 +1563 +3306 +2532 +1564 +1831 +2532 +302 +3745 +3361 +1209 +4771 +1831 +575 +3588 +4172 +1565 +3588 +2868 +575 +3588 +4228 +4771 +660 +1519 +3142 +1909 +846 +1161 +1831 +1330 +2596 +3588 +2968 +2097 +2532 +2323 +3837 +1161 +191 +2264 +3588 +5076 +3588 +1096 +3956 +2532 +1280 +1223 +3588 +3004 +5259 +5100 +3754 +2491 +1453 +1537 +3498 +1161 +5259 +5100 +3754 +2243 +5316 +1161 +243 +3754 +4396 +5100 +3588 +744 +450 +1161 +3004 +2264 +2491 +1473 +607 +1161 +5101 +1510 +3778 +4012 +3739 +191 +5108 +2532 +2212 +3708 +846 +2532 +5290 +3588 +652 +1334 +846 +3745 +4160 +2532 +3880 +846 +5298 +2596 +2398 +1519 +4172 +2564 +966 +1161 +3588 +3793 +1097 +190 +846 +2532 +588 +846 +2980 +846 +4012 +3588 +932 +3588 +2316 +2532 +3588 +5532 +2322 +2192 +2390 +1161 +3588 +2250 +756 +2827 +1161 +4334 +3588 +1427 +3004 +846 +630 +3588 +3793 +2443 +4198 +1519 +3588 +2945 +2968 +2532 +68 +2647 +2532 +2147 +1979 +3754 +5602 +1722 +2048 +5117 +1510 +1161 +3004 +4314 +846 +1325 +846 +5315 +4771 +1161 +3588 +3004 +3756 +1510 +1473 +4119 +2228 +740 +4002 +2532 +2486 +1417 +1487 +3385 +4198 +1473 +59 +1519 +3956 +3588 +2992 +3778 +1033 +1063 +1510 +5616 +4000 +435 +1161 +3004 +4314 +3588 +3101 +846 +2625 +846 +2828 +5616 +303 +4004 +2532 +4160 +3779 +2532 +2625 +537 +1161 +2983 +3588 +4002 +740 +2532 +3588 +1417 +2486 +308 +1519 +3588 +3772 +2127 +846 +2532 +2622 +2532 +1325 +3588 +3101 +3908 +3588 +3793 +2532 +5315 +2532 +5526 +3956 +2532 +142 +3588 +4052 +846 +2801 +2894 +1427 +2532 +1096 +1722 +3588 +1510 +4336 +846 +2596 +3441 +4895 +846 +3588 +3101 +2532 +1905 +846 +3004 +5101 +1473 +1510 +3588 +3793 +3004 +1161 +3588 +611 +3004 +2491 +3588 +910 +1161 +243 +2243 +1161 +243 +3754 +4396 +5100 +3588 +744 +450 +1161 +3004 +846 +1161 +4771 +5101 +1473 +1510 +3004 +1161 +4074 +611 +3004 +3588 +5547 +3588 +2316 +1161 +3588 +2008 +846 +3853 +3367 +3004 +3778 +3004 +3754 +1163 +3588 +5207 +3588 +444 +4183 +3958 +2532 +593 +575 +3588 +4245 +2532 +749 +2532 +1122 +2532 +615 +2532 +3588 +5154 +2250 +1453 +1161 +3004 +4314 +3956 +1487 +5100 +2309 +3694 +1473 +2064 +720 +1438 +2532 +142 +3588 +4716 +846 +2596 +2250 +2532 +190 +1473 +1063 +1437 +3739 +2309 +3588 +5590 +846 +4982 +622 +846 +1161 +302 +3739 +622 +3588 +5590 +846 +1752 +1473 +3778 +4982 +846 +1063 +5101 +5623 +444 +2770 +3588 +2889 +3650 +1161 +1438 +622 +2228 +2210 +1063 +302 +3739 +1870 +1473 +2532 +3588 +1699 +3056 +3778 +3588 +5207 +3588 +444 +1870 +3752 +2064 +1722 +3588 +1391 +846 +2532 +3588 +3962 +2532 +3588 +40 +32 +1161 +3004 +4771 +230 +1510 +5100 +3588 +847 +2476 +3739 +3756 +3361 +1089 +2288 +2193 +302 +3708 +3588 +932 +3588 +2316 +1161 +1096 +3326 +3588 +3056 +3778 +5616 +2250 +3638 +2532 +3880 +4074 +2532 +2491 +2532 +2385 +305 +1519 +3588 +3735 +4336 +2532 +1096 +1722 +3588 +4336 +846 +3588 +1491 +3588 +4383 +846 +2087 +2532 +3588 +2441 +846 +3022 +1823 +2532 +3708 +435 +1417 +4814 +846 +3748 +1510 +3475 +2532 +2243 +3739 +3708 +1722 +1391 +3004 +3588 +1841 +846 +3739 +4137 +1722 +2419 +3195 +1161 +3588 +4074 +2532 +3588 +4862 +846 +1510 +916 +5258 +1161 +1235 +3708 +3588 +1391 +846 +2532 +3588 +1417 +435 +3588 +4921 +846 +2532 +1096 +1722 +3588 +1316 +846 +575 +846 +3004 +3588 +4074 +4314 +3588 +2424 +1988 +2570 +1510 +1473 +5602 +1510 +2532 +4160 +4633 +5140 +1520 +4771 +2532 +1520 +3475 +2532 +1520 +2243 +3361 +1492 +3739 +3004 +1161 +3778 +846 +3004 +1096 +3507 +2532 +1982 +846 +1161 +5399 +1722 +3588 +1525 +846 +1519 +3588 +3507 +2532 +5456 +1096 +1537 +3588 +3507 +3004 +3778 +1510 +3588 +5207 +1473 +3588 +1586 +846 +191 +2532 +1722 +3588 +1096 +3588 +5456 +2147 +2424 +3441 +2532 +846 +4601 +2532 +3762 +518 +1722 +1565 +3588 +2250 +3762 +3739 +3708 +1161 +1096 +3588 +1836 +2250 +2718 +846 +575 +3588 +3735 +4876 +846 +3793 +4183 +2532 +3708 +435 +575 +3588 +3793 +994 +3004 +1320 +1189 +4771 +1914 +1909 +3588 +5207 +1473 +3754 +3439 +1473 +1510 +2532 +3708 +4151 +2983 +846 +2532 +1810 +2896 +2532 +4682 +846 +3326 +876 +2532 +3433 +672 +575 +846 +4937 +846 +2532 +1189 +3588 +3101 +4771 +2443 +1544 +846 +2532 +3756 +1410 +1161 +611 +3588 +2424 +3004 +5599 +1074 +571 +2532 +1294 +2193 +4219 +1510 +4314 +4771 +2532 +430 +4771 +4317 +5602 +3588 +5207 +4771 +1161 +2089 +4334 +846 +4486 +846 +3588 +1140 +2532 +4952 +1161 +2008 +3588 +2424 +3588 +4151 +3588 +169 +2532 +2390 +3588 +3816 +2532 +591 +846 +3588 +3962 +846 +1161 +1605 +3956 +1909 +3588 +3168 +3588 +2316 +1161 +3956 +2296 +1909 +3956 +3739 +4160 +3004 +4314 +3588 +3101 +846 +5087 +4771 +1519 +3588 +3775 +4771 +3588 +3056 +3778 +1063 +3588 +5207 +3588 +444 +3195 +3860 +1519 +5495 +444 +1161 +3588 +50 +3588 +4487 +3778 +2532 +1510 +3871 +575 +846 +2443 +3361 +143 +846 +2532 +5399 +2065 +846 +4012 +3588 +4487 +3778 +1161 +1525 +1722 +846 +1261 +3588 +302 +5101 +846 +1510 +3173 +1161 +3588 +2424 +1492 +3588 +1261 +3588 +2588 +846 +1949 +3813 +2476 +846 +3844 +1438 +2532 +3004 +846 +1437 +3739 +1209 +3778 +3588 +3813 +1909 +3588 +3686 +1473 +1473 +1209 +2532 +302 +3739 +1473 +1209 +1209 +3588 +649 +1473 +1063 +3588 +3398 +1722 +3956 +4771 +5225 +3778 +1510 +3173 +1161 +611 +3588 +2491 +3004 +1988 +3708 +5100 +1722 +3588 +3686 +4771 +1544 +1140 +2532 +2967 +846 +3754 +3756 +190 +3326 +1473 +1161 +3004 +4314 +846 +2424 +3361 +2967 +1063 +3739 +3756 +1510 +2596 +4771 +5228 +4771 +1510 +1161 +1096 +1722 +3588 +4845 +3588 +2250 +3588 +354 +846 +2532 +846 +3588 +4383 +4741 +3588 +4198 +1519 +2419 +2532 +649 +32 +4253 +4383 +846 +2532 +4198 +1525 +1519 +2968 +4541 +5620 +2090 +846 +2532 +3756 +1209 +846 +3754 +3588 +4383 +846 +1510 +4198 +1519 +2419 +1161 +3708 +3588 +3101 +2385 +2532 +2491 +3004 +2962 +2309 +3004 +4442 +2597 +575 +3588 +3772 +2532 +355 +846 +1161 +4762 +2008 +846 +2532 +4198 +1519 +2087 +2968 +2532 +4198 +846 +1722 +3588 +3598 +3004 +5100 +4314 +846 +190 +4771 +1437 +3699 +565 +2532 +3004 +846 +3588 +2424 +3588 +258 +5454 +2192 +2532 +3588 +4071 +3588 +3772 +2682 +1161 +3588 +5207 +3588 +444 +3756 +2192 +4226 +3588 +2776 +2827 +1161 +3004 +4314 +2087 +190 +1473 +1161 +3588 +3004 +2010 +1473 +4412 +565 +2290 +3588 +3962 +1473 +1161 +3004 +846 +863 +3588 +3498 +2290 +3588 +1438 +3498 +1161 +4771 +565 +1229 +3588 +932 +3588 +2316 +1161 +3004 +2532 +2087 +190 +4771 +2962 +1161 +4412 +2010 +1473 +657 +3588 +1519 +3588 +3624 +1473 +1161 +3004 +4314 +846 +3588 +2424 +3762 +1911 +3588 +5495 +1909 +723 +2532 +991 +1519 +3588 +3694 +2111 +1510 +3588 +932 +3588 +2316 +1161 +3326 +3778 +322 +3588 +2962 +2087 +1440 +2532 +649 +846 +303 +1417 +4253 +4383 +846 +1519 +3956 +4172 +2532 +5117 +3757 +3195 +846 +2064 +1161 +3004 +4314 +846 +3303 +3588 +2326 +4183 +1161 +3588 +2040 +3641 +3767 +1189 +3588 +2962 +3588 +2326 +3704 +2040 +1544 +1519 +3588 +2326 +846 +5217 +3708 +649 +4771 +5613 +704 +1722 +3319 +3074 +3361 +941 +905 +3361 +4082 +3361 +5266 +2532 +3367 +2596 +3588 +3598 +782 +1161 +302 +1519 +3739 +3614 +1525 +4412 +3004 +1515 +3588 +3624 +3778 +2532 +1437 +1563 +1510 +5207 +1515 +1879 +1909 +846 +3588 +1515 +4771 +1161 +1487 +1490 +1909 +4771 +344 +1161 +1722 +846 +3588 +3614 +3306 +2068 +2532 +4095 +3588 +3844 +846 +1063 +514 +3588 +2040 +3588 +3408 +846 +3361 +3327 +1537 +3614 +1519 +3614 +2532 +302 +1519 +3739 +4172 +1525 +2532 +1209 +4771 +2068 +3588 +3908 +4771 +2532 +2323 +3588 +1722 +846 +772 +2532 +3004 +846 +1448 +1909 +4771 +3588 +932 +3588 +2316 +1161 +302 +1519 +3739 +4172 +1525 +2532 +3361 +1209 +4771 +1831 +1519 +3588 +4113 +846 +3004 +2532 +3588 +2868 +3588 +2853 +1473 +1537 +3588 +4172 +4771 +1519 +3588 +4228 +631 +4771 +4133 +3778 +1097 +3754 +1448 +3588 +932 +3588 +2316 +3004 +4771 +3754 +4670 +1722 +3588 +2250 +1565 +414 +1510 +2228 +3588 +4172 +1565 +3759 +4771 +5523 +3759 +4771 +966 +3754 +1487 +1722 +5184 +2532 +4605 +1096 +3588 +1411 +3588 +1096 +1722 +4771 +302 +3819 +1722 +4526 +2532 +4700 +2521 +3340 +4133 +5184 +2532 +4605 +414 +1510 +1722 +3588 +2920 +2228 +4771 +2532 +2584 +3361 +4771 +2193 +3772 +5312 +2193 +3588 +86 +2597 +3588 +191 +4771 +1473 +191 +2532 +3588 +114 +4771 +1473 +114 +1161 +3588 +1473 +114 +114 +3588 +649 +1473 +1161 +5290 +3588 +1440 +3326 +5479 +3004 +2962 +2532 +3588 +1140 +5293 +1473 +1722 +3588 +3686 +4771 +1161 +3004 +846 +2334 +3588 +4567 +5613 +796 +1537 +3588 +3772 +4098 +3708 +1325 +4771 +3588 +1849 +3588 +3961 +1883 +3789 +2532 +4651 +2532 +1909 +3956 +3588 +1411 +3588 +2190 +2532 +3762 +4771 +3756 +3361 +91 +4133 +1722 +3778 +3361 +5463 +3754 +3588 +4151 +4771 +5293 +1161 +5463 +3754 +3588 +3686 +4771 +1449 +1722 +3588 +3772 +1722 +846 +3588 +5610 +21 +3588 +4151 +3588 +40 +2532 +3004 +1843 +4771 +3962 +2962 +3588 +3772 +2532 +3588 +1093 +3754 +613 +3778 +575 +4680 +2532 +4908 +2532 +601 +846 +3516 +3483 +3588 +3962 +3754 +3779 +2107 +1096 +1715 +4771 +3956 +1473 +3860 +5259 +3588 +3962 +1473 +2532 +3762 +1097 +5101 +1510 +3588 +5207 +1487 +3361 +3588 +3962 +2532 +5101 +1510 +3588 +3962 +1487 +3361 +3588 +5207 +2532 +1437 +3739 +601 +1014 +3588 +5207 +2532 +4762 +4314 +3588 +3101 +2596 +2398 +3004 +3107 +3588 +3788 +3588 +991 +3739 +991 +1063 +3004 +4771 +3754 +4183 +4396 +2532 +935 +2309 +3708 +3739 +4771 +991 +2532 +3756 +3708 +2532 +191 +3739 +191 +2532 +3756 +191 +2532 +3708 +3544 +5100 +450 +1598 +846 +3004 +1320 +5101 +4160 +2222 +166 +2816 +1161 +3588 +3004 +4314 +846 +1722 +3588 +3551 +5101 +1125 +4459 +314 +1161 +3588 +611 +3004 +25 +2962 +3588 +2316 +4771 +1537 +3650 +3588 +2588 +4771 +2532 +1722 +3650 +3588 +5590 +4771 +2532 +1722 +3650 +3588 +2479 +4771 +2532 +1722 +3650 +3588 +1271 +4771 +2532 +3588 +4139 +4771 +5613 +4572 +1161 +3004 +846 +3723 +611 +3778 +4160 +2532 +2198 +1161 +3588 +2309 +1344 +1438 +3004 +4314 +3588 +2424 +2532 +5101 +1510 +1473 +4139 +5274 +3588 +2424 +3004 +444 +5100 +2597 +575 +2419 +1519 +2410 +2532 +3027 +4045 +3739 +2532 +1562 +846 +2532 +4127 +2007 +565 +863 +2253 +1161 +2596 +4795 +2409 +5100 +2597 +1722 +3588 +3598 +1565 +2532 +3708 +846 +492 +1161 +3668 +2532 +3019 +2596 +3588 +5117 +2064 +2532 +3708 +492 +1161 +4541 +5100 +3593 +2064 +2596 +846 +2532 +3708 +4697 +2532 +4334 +2611 +3588 +5134 +846 +2022 +1637 +2532 +3631 +1161 +1913 +846 +1909 +3588 +2398 +2934 +71 +846 +1519 +3829 +2532 +1959 +846 +2532 +1909 +3588 +839 +1544 +1417 +1220 +1325 +3588 +3830 +2532 +3004 +1959 +846 +2532 +5100 +302 +3739 +4325 +1473 +1722 +3588 +1880 +1473 +591 +4771 +1380 +4771 +5101 +3778 +3588 +5140 +1096 +4139 +3588 +1706 +1519 +3588 +3027 +1161 +3588 +3004 +3588 +4160 +3588 +1656 +3326 +846 +1161 +3004 +846 +3588 +2424 +4198 +2532 +4771 +4160 +3668 +1161 +1722 +3588 +4198 +846 +846 +1525 +1519 +2968 +5100 +1161 +1135 +5100 +3686 +3136 +5264 +846 +1519 +3588 +3614 +2532 +3592 +1510 +79 +2564 +3137 +3739 +2532 +3869 +4314 +3588 +4228 +3588 +2962 +191 +3588 +3056 +846 +1161 +3588 +3136 +4049 +4012 +4183 +1248 +1161 +2186 +3004 +2962 +3756 +3199 +4771 +3754 +3588 +79 +1473 +3441 +1473 +1247 +2641 +3767 +3004 +846 +2443 +1473 +4878 +1161 +611 +3004 +846 +3588 +2962 +3136 +3136 +3309 +2532 +2350 +4012 +4183 +1161 +3641 +5532 +1510 +2228 +1520 +1063 +3137 +3588 +18 +3310 +1586 +3748 +3756 +851 +846 +2532 +1096 +1722 +3588 +1510 +4336 +846 +1722 +5117 +5100 +5613 +3973 +3004 +5100 +3588 +3101 +846 +4314 +846 +2962 +1321 +1473 +4336 +2531 +2532 +2491 +1321 +3588 +3101 +846 +1161 +3004 +846 +3752 +4336 +3004 +3962 +37 +3588 +3686 +4771 +2064 +3588 +932 +4771 +3588 +740 +1473 +3588 +1967 +1325 +1473 +3588 +2596 +2250 +2532 +863 +1473 +3588 +266 +1473 +1063 +2532 +846 +863 +3956 +3784 +1473 +2532 +3361 +1533 +1473 +1519 +3986 +2532 +3004 +4314 +846 +5101 +1537 +4771 +2192 +5384 +2532 +4198 +4314 +846 +3317 +2532 +3004 +846 +5384 +5531 +1473 +5140 +740 +1894 +5384 +1473 +3854 +1537 +3598 +4314 +1473 +2532 +3756 +2192 +3739 +3908 +846 +2548 +2081 +611 +3004 +3361 +1473 +2873 +3930 +2235 +3588 +2374 +2808 +2532 +3588 +3813 +1473 +3326 +1473 +1519 +3588 +2845 +1510 +3756 +1410 +450 +1325 +4771 +3004 +4771 +1487 +2532 +3756 +1325 +846 +450 +1223 +3588 +1510 +5384 +846 +1065 +1223 +3588 +335 +846 +1453 +1325 +846 +3745 +5535 +2504 +4771 +3004 +154 +2532 +1325 +4771 +2212 +2532 +2147 +2925 +2532 +455 +4771 +1063 +3956 +3588 +154 +2983 +2532 +3588 +2212 +2147 +2532 +3588 +2925 +455 +1161 +5101 +1537 +4771 +3588 +3962 +154 +3588 +5207 +2486 +3361 +473 +2486 +3789 +846 +1929 +2228 +2532 +154 +5609 +1929 +846 +4651 +3767 +1487 +4771 +4190 +5225 +1492 +1390 +18 +1325 +3588 +5043 +4771 +4214 +3123 +3588 +3962 +3588 +1537 +3772 +1325 +4151 +40 +3588 +154 +846 +2532 +1510 +1544 +1140 +2532 +846 +1510 +2974 +1161 +1096 +3588 +1140 +1831 +2980 +3588 +2974 +2532 +2296 +3588 +3793 +1161 +5100 +1537 +846 +3004 +1722 +954 +3588 +758 +3588 +1140 +1544 +3588 +1140 +1161 +2087 +3985 +4592 +1537 +3772 +2212 +3844 +846 +1161 +846 +1492 +846 +3588 +1270 +3004 +846 +3956 +932 +1909 +1438 +1266 +2049 +2532 +3624 +1909 +3624 +4098 +1161 +1487 +2532 +3588 +4567 +1909 +1438 +1266 +4459 +2476 +3588 +932 +846 +3754 +3004 +1722 +954 +1544 +1473 +3588 +1140 +1161 +1487 +1473 +1722 +954 +1544 +3588 +1140 +3588 +5207 +4771 +1722 +5101 +1544 +1223 +3778 +846 +4771 +2923 +1510 +1161 +1487 +1722 +1147 +2316 +1473 +1544 +3588 +1140 +686 +5348 +1909 +4771 +3588 +932 +3588 +2316 +3752 +3588 +2478 +2528 +5442 +3588 +1438 +833 +1722 +1515 +1510 +3588 +5225 +846 +1161 +1875 +2478 +846 +1904 +3528 +846 +3588 +3833 +846 +142 +1909 +3739 +3982 +2532 +3588 +4661 +846 +1239 +3588 +3361 +1510 +3326 +1473 +2596 +1473 +1510 +2532 +3588 +3361 +4863 +3326 +1473 +4650 +3752 +3588 +169 +4151 +1831 +575 +3588 +444 +1330 +1223 +504 +5117 +2212 +372 +2532 +3361 +2147 +3004 +5290 +1519 +3588 +3624 +1473 +3606 +1831 +2532 +2064 +2147 +4563 +2532 +2885 +5119 +4198 +2532 +3880 +2087 +4151 +4190 +1438 +2033 +2532 +1525 +2730 +1563 +2532 +1096 +3588 +2078 +3588 +444 +1565 +5501 +3588 +4413 +1161 +1096 +1722 +3588 +3004 +846 +3778 +1869 +5456 +5100 +1135 +1537 +3588 +3793 +3004 +846 +3107 +3588 +2836 +3588 +941 +4771 +2532 +3149 +3739 +2337 +1161 +846 +3004 +3304 +3107 +3588 +191 +3588 +3056 +3588 +2316 +2532 +5442 +1161 +3588 +3793 +1865 +756 +3004 +3588 +1074 +3778 +1074 +4190 +1510 +4592 +2212 +2532 +4592 +3756 +1325 +846 +1487 +3361 +3588 +4592 +2495 +1063 +2531 +1096 +2495 +3588 +3536 +4592 +3779 +1510 +2532 +3588 +5207 +3588 +444 +3588 +1074 +3778 +938 +3558 +1453 +1722 +3588 +2920 +3326 +3588 +435 +3588 +1074 +3778 +2532 +2632 +846 +3754 +2064 +1537 +3588 +4009 +3588 +1093 +191 +3588 +4678 +4672 +2532 +3708 +4119 +4672 +5602 +435 +3536 +450 +1722 +3588 +2920 +3326 +3588 +1074 +3778 +2532 +2632 +846 +3754 +3340 +1519 +3588 +2782 +2495 +2532 +3708 +4119 +2495 +5602 +3762 +3088 +681 +1519 +2926 +5087 +3761 +5259 +3588 +3426 +235 +1909 +3588 +3087 +2443 +3588 +1531 +3588 +5338 +991 +3588 +3088 +3588 +4983 +1510 +3588 +3788 +4771 +3752 +3588 +3788 +4771 +573 +1510 +2532 +3650 +3588 +4983 +4771 +5460 +1510 +1161 +1875 +4190 +1510 +2532 +3588 +4983 +4771 +4652 +3767 +4648 +3361 +3588 +5457 +3588 +1722 +4771 +4655 +1510 +3767 +1487 +3588 +4983 +4771 +3650 +5460 +3361 +2192 +3313 +5100 +4652 +1510 +5460 +3650 +5613 +3752 +3588 +3088 +3588 +796 +5461 +4771 +1161 +1722 +3588 +2980 +2065 +846 +5330 +3704 +709 +3844 +846 +1161 +1525 +377 +1161 +3588 +5330 +3708 +2296 +3754 +3756 +4412 +907 +4253 +3588 +712 +1161 +3004 +3588 +2962 +4314 +846 +3568 +4771 +3588 +5330 +3588 +1855 +3588 +4221 +2532 +3588 +4094 +2511 +1161 +3588 +2081 +4771 +1073 +724 +2532 +4189 +878 +3756 +3588 +4160 +3588 +1855 +2532 +3588 +2081 +4160 +4133 +3588 +1751 +1325 +1654 +2532 +3708 +3956 +2513 +4771 +1510 +235 +3759 +4771 +3588 +5330 +3754 +586 +3588 +2238 +2532 +3588 +4076 +2532 +3956 +3001 +2532 +3928 +3588 +2920 +2532 +3588 +26 +3588 +2316 +1161 +1163 +3778 +4160 +2548 +3361 +3935 +3759 +4771 +3588 +5330 +3754 +25 +3588 +4410 +1722 +3588 +4864 +2532 +3588 +783 +1722 +3588 +58 +3759 +4771 +3754 +1510 +5613 +3588 +3419 +3588 +82 +2532 +3588 +444 +3588 +4043 +1883 +3756 +1492 +1161 +611 +5100 +3588 +3544 +3004 +846 +1320 +3778 +3004 +2532 +1473 +5195 +1161 +3588 +3004 +2532 +4771 +3588 +3544 +3759 +3754 +5412 +3588 +444 +5413 +1419 +2532 +846 +1520 +3588 +1147 +4771 +3756 +4379 +3588 +5413 +3759 +4771 +3754 +3618 +3588 +3419 +3588 +4396 +1161 +3588 +3962 +4771 +615 +846 +686 +3144 +1510 +2532 +4909 +3588 +2041 +3588 +3962 +4771 +3754 +3303 +846 +615 +846 +1161 +4771 +3618 +1223 +3778 +2532 +3588 +4678 +3588 +2316 +3004 +649 +1519 +846 +4396 +2532 +652 +2532 +1537 +846 +615 +2532 +1377 +2443 +1567 +3588 +129 +3956 +3588 +4396 +3588 +1632 +575 +2602 +2889 +575 +3588 +1074 +3778 +575 +129 +6 +2193 +129 +2197 +3588 +622 +3342 +3588 +2379 +2532 +3588 +3624 +3483 +3004 +4771 +1567 +575 +3588 +1074 +3778 +3759 +4771 +3588 +3544 +3754 +142 +3588 +2807 +3588 +1108 +846 +3756 +1525 +2532 +3588 +1525 +2967 +2547 +1831 +846 +756 +3588 +1122 +2532 +3588 +5330 +1171 +1758 +2532 +653 +846 +4012 +4119 +1748 +846 +2340 +5100 +1537 +3588 +4750 +846 +1722 +3739 +1996 +3588 +3461 +3588 +3793 +5620 +2662 +240 +756 +3004 +4314 +3588 +3101 +846 +4412 +4337 +1438 +575 +3588 +2219 +3748 +1510 +5272 +3588 +5330 +1161 +3762 +1510 +4780 +3739 +3756 +601 +2532 +2927 +3739 +3756 +1097 +473 +3739 +3745 +1722 +3588 +4653 +3004 +1722 +3588 +5457 +191 +2532 +3739 +4314 +3588 +3775 +2980 +1722 +3588 +5009 +2784 +1909 +3588 +1430 +1161 +3004 +4771 +3588 +5384 +1473 +3361 +5399 +575 +3588 +615 +3588 +4983 +2532 +3326 +3778 +3361 +2192 +4053 +5100 +4160 +1161 +5263 +4771 +5101 +5399 +5399 +3588 +3326 +3588 +615 +2192 +1849 +1685 +1519 +3588 +1067 +3483 +3004 +4771 +3778 +5399 +3780 +4002 +4765 +4453 +787 +1417 +2532 +1520 +1537 +846 +3756 +1510 +1950 +1799 +3588 +2316 +235 +2532 +3588 +2359 +3588 +2776 +4771 +3956 +705 +3361 +5399 +4183 +4765 +1308 +1161 +3004 +4771 +3956 +302 +3739 +3670 +1722 +1473 +1715 +3588 +444 +2532 +3588 +5207 +3588 +444 +3670 +1722 +846 +1715 +3588 +32 +3588 +2316 +1161 +3588 +720 +1473 +1799 +3588 +444 +533 +1799 +3588 +32 +3588 +2316 +2532 +3956 +3739 +2046 +3056 +1519 +3588 +5207 +3588 +444 +863 +846 +1161 +3588 +1519 +3588 +40 +4151 +987 +3756 +863 +1161 +3752 +1533 +4771 +1909 +3588 +4864 +2532 +3588 +746 +2532 +3588 +1849 +3361 +3309 +4459 +2228 +5101 +626 +2228 +5101 +3004 +1063 +3588 +40 +4151 +1321 +4771 +1722 +846 +3588 +5610 +3739 +3004 +1163 +1161 +3004 +5100 +1537 +3588 +3793 +846 +1320 +3004 +3588 +80 +1473 +3307 +3326 +1473 +3588 +2817 +1161 +3588 +3004 +846 +444 +5101 +1473 +2525 +2923 +2228 +3312 +1909 +4771 +1161 +3004 +4314 +846 +3708 +2532 +5442 +575 +3956 +4124 +3754 +3756 +1722 +3588 +4052 +5100 +3588 +2222 +846 +1510 +1537 +3588 +5225 +846 +1161 +3004 +3850 +4314 +846 +3004 +444 +5100 +4145 +3588 +5561 +2164 +2532 +1260 +1722 +1438 +3004 +5101 +4160 +3754 +3756 +2192 +4226 +4863 +3588 +2590 +1473 +2532 +3004 +3778 +4160 +2507 +1473 +3588 +596 +2532 +3173 +3618 +2532 +4863 +1563 +3956 +3588 +4621 +2532 +3588 +18 +1473 +2532 +2046 +3588 +5590 +1473 +5590 +2192 +4183 +18 +2749 +1519 +2094 +4183 +373 +5315 +4095 +2165 +1161 +3004 +846 +3588 +2316 +878 +3778 +3588 +3571 +3588 +5590 +4771 +523 +575 +4771 +1161 +3739 +2090 +5101 +1510 +3779 +3588 +2343 +846 +2532 +3361 +1519 +2316 +4147 +1161 +3004 +4314 +3588 +3101 +846 +1223 +3778 +3004 +4771 +3361 +3309 +3588 +5590 +5101 +5315 +3366 +3588 +4983 +5101 +1746 +1063 +3588 +5590 +4119 +1510 +3588 +5160 +2532 +3588 +4983 +3588 +1742 +2657 +3588 +2876 +3754 +3777 +4687 +3777 +2325 +3739 +3756 +1510 +5009 +3761 +596 +2532 +3588 +2316 +5142 +846 +4214 +3123 +4771 +1308 +3588 +4071 +1161 +5101 +1537 +4771 +3309 +1410 +1909 +3588 +2244 +846 +4369 +4083 +3767 +1487 +3761 +1646 +1410 +5101 +4012 +3588 +3062 +3309 +2657 +3588 +2918 +4459 +3777 +3514 +3777 +4120 +1161 +3004 +4771 +3761 +4672 +1722 +3956 +3588 +1391 +846 +4016 +5613 +1520 +3778 +1161 +1487 +1722 +68 +3588 +5528 +1510 +4594 +2532 +839 +1519 +2823 +906 +3588 +2316 +3779 +294 +4214 +3123 +4771 +3640 +2532 +4771 +3361 +2212 +5101 +5315 +2532 +5101 +4095 +2532 +3361 +3349 +1063 +3778 +3956 +3588 +1484 +3588 +2889 +1934 +1161 +4771 +3588 +3962 +1492 +3754 +5535 +3778 +4133 +2212 +3588 +932 +846 +2532 +3778 +4369 +4771 +3361 +5399 +3588 +3398 +4168 +3754 +2106 +3588 +3962 +4771 +1325 +4771 +3588 +932 +4453 +3588 +5225 +4771 +2532 +1325 +1654 +4160 +1438 +905 +3361 +3822 +2344 +413 +1722 +3588 +3772 +3699 +2812 +3756 +1448 +3761 +4597 +1311 +1063 +3699 +1510 +3588 +2344 +4771 +1563 +2532 +3588 +2588 +4771 +1510 +1510 +4771 +3588 +3751 +4024 +2532 +3588 +3088 +2545 +2532 +4771 +3664 +444 +4327 +3588 +2962 +1438 +4219 +360 +1537 +3588 +1062 +2443 +2064 +2532 +2925 +2112 +455 +846 +3107 +3588 +1401 +1565 +3739 +1127 +2064 +3588 +2962 +2147 +281 +3004 +4771 +3754 +4024 +2532 +347 +846 +2532 +3928 +1247 +846 +2579 +1722 +3588 +1208 +2579 +1722 +3588 +5154 +5438 +2064 +2532 +2147 +3779 +3107 +1510 +1565 +1161 +3778 +1097 +3754 +1487 +1492 +3588 +3617 +4169 +5610 +3588 +2812 +2064 +302 +3756 +863 +1358 +3588 +3624 +846 +2532 +4771 +1096 +2092 +3754 +3739 +5610 +3756 +1380 +3588 +5207 +3588 +444 +2064 +1161 +3004 +3588 +4074 +2962 +4314 +1473 +3588 +3850 +3778 +3004 +2228 +2532 +4314 +3956 +2532 +3004 +3588 +2962 +686 +5101 +1510 +3588 +4103 +3623 +3588 +5429 +3739 +2525 +3588 +2962 +1909 +3588 +2322 +846 +3588 +1325 +1722 +2540 +3588 +4620 +3107 +3588 +1401 +1565 +3739 +4160 +3779 +2064 +3588 +2962 +846 +2147 +230 +3004 +4771 +3754 +1909 +3956 +3588 +5225 +846 +2525 +846 +1161 +1437 +3004 +3588 +1401 +1565 +1722 +3588 +2588 +846 +5549 +3588 +2962 +1473 +2064 +2532 +756 +5180 +3588 +3816 +2532 +3588 +3814 +5037 +2068 +2532 +4095 +2532 +3182 +2240 +3588 +2962 +3588 +1401 +1565 +1722 +2250 +3739 +3756 +4328 +2532 +1722 +5610 +3739 +3756 +1097 +2532 +1371 +846 +2532 +3588 +3313 +846 +3326 +3588 +571 +5087 +1161 +1565 +3588 +1401 +3588 +1097 +3588 +2307 +3588 +2962 +846 +2532 +3361 +2090 +2228 +4160 +4314 +3588 +2307 +846 +1194 +4183 +1161 +3588 +3361 +1097 +1161 +4160 +514 +4127 +1194 +3641 +1161 +3956 +3739 +1325 +4183 +4183 +2212 +3844 +846 +2532 +3739 +3908 +4183 +4053 +154 +846 +2064 +4442 +906 +1909 +3588 +1093 +2532 +5101 +2309 +1487 +2235 +381 +1161 +908 +2192 +907 +2532 +4459 +4912 +2193 +3755 +5055 +1380 +3754 +3854 +1515 +1325 +1722 +3588 +1093 +3004 +4771 +3780 +235 +2228 +1267 +1063 +1510 +1266 +575 +3588 +3568 +4002 +1722 +1520 +3624 +5140 +1909 +1417 +2532 +1417 +1909 +5140 +1266 +3962 +1909 +5207 +2532 +5207 +1909 +3962 +3384 +1909 +2364 +2532 +2364 +1909 +3588 +3384 +3994 +1909 +3588 +3565 +846 +2532 +3565 +1909 +3588 +3994 +1161 +3004 +2532 +3588 +3793 +3752 +3708 +3507 +393 +1909 +1424 +2112 +3004 +3754 +3655 +2064 +2532 +1096 +3779 +2532 +3752 +3558 +4154 +3004 +3754 +2742 +1510 +2532 +1096 +5273 +3588 +4383 +3588 +1093 +2532 +3588 +3772 +1381 +1492 +1161 +3588 +2540 +3778 +4459 +3756 +1381 +1161 +5101 +2532 +575 +1438 +3756 +2919 +3588 +1342 +1063 +5613 +5217 +3326 +3588 +476 +4771 +1909 +758 +1722 +3588 +3598 +1325 +2039 +525 +575 +846 +3361 +4218 +2694 +4771 +4314 +3588 +2923 +2532 +3588 +2923 +4771 +3860 +3588 +4233 +2532 +3588 +4233 +4771 +906 +1519 +5438 +3004 +4771 +3756 +3361 +1831 +1564 +2193 +2532 +3588 +2078 +3016 +591 +1161 +3918 +5100 +1722 +846 +3588 +2540 +518 +846 +4012 +3588 +1057 +3739 +3588 +129 +4091 +3396 +3326 +3588 +2378 +846 +2532 +611 +3004 +846 +1380 +3754 +3588 +1057 +3778 +268 +3844 +3956 +3588 +1057 +1096 +3754 +3778 +3958 +3780 +3004 +4771 +235 +1437 +3361 +3340 +3956 +3668 +622 +2228 +1565 +3588 +1176 +3638 +1909 +3739 +4098 +3588 +4444 +1722 +3588 +4611 +2532 +615 +846 +1380 +3754 +846 +3781 +1096 +3844 +3956 +3588 +444 +3588 +2730 +2419 +3780 +3004 +4771 +235 +1437 +3361 +3340 +3956 +5615 +622 +1161 +3004 +3778 +3588 +3850 +4808 +2192 +5100 +5452 +1722 +3588 +290 +846 +2532 +2064 +2212 +2590 +1722 +846 +2532 +3756 +2147 +1161 +3004 +4314 +3588 +289 +3708 +5140 +2094 +575 +3739 +2064 +2212 +2590 +1722 +3588 +4808 +3778 +2532 +3756 +2147 +1581 +846 +2443 +5101 +2532 +3588 +1093 +2673 +1161 +3588 +611 +3004 +846 +2962 +863 +846 +2532 +3778 +3588 +2094 +2193 +3755 +4626 +4012 +846 +2532 +906 +2874 +3303 +2579 +4160 +2590 +1519 +3588 +3195 +1161 +1487 +1490 +1581 +846 +1161 +1510 +1321 +1722 +1520 +3588 +4864 +1722 +3588 +4521 +2532 +3708 +1135 +4151 +769 +2192 +2094 +1176 +3638 +2532 +1510 +4794 +2532 +3361 +1410 +352 +1519 +3588 +3838 +1161 +3708 +846 +3588 +2424 +4377 +2532 +3004 +846 +1135 +630 +3588 +769 +4771 +2532 +2007 +846 +3588 +5495 +2532 +3916 +461 +2532 +1392 +3588 +2316 +1161 +611 +3588 +752 +23 +3754 +3588 +4521 +2323 +3588 +2424 +3004 +3588 +3793 +3754 +1803 +2250 +1510 +1722 +3739 +1163 +2038 +3767 +1722 +846 +2064 +2323 +2532 +3361 +3588 +2250 +3588 +4521 +1161 +611 +846 +3588 +2962 +2532 +3004 +5273 +3756 +1538 +4771 +3588 +4521 +3089 +3588 +1016 +846 +2228 +3588 +3688 +575 +3588 +5336 +2532 +520 +4222 +1161 +3708 +3778 +2364 +11 +1510 +3739 +1210 +3588 +4567 +1176 +2532 +3638 +2094 +3089 +575 +3588 +1199 +3778 +3588 +2250 +3588 +4521 +3756 +1163 +2532 +3778 +3004 +846 +2617 +3956 +3588 +480 +846 +2532 +3956 +3588 +3793 +5463 +1909 +3956 +3588 +1741 +3588 +1096 +5259 +846 +3767 +3004 +5101 +3664 +1510 +3588 +932 +3588 +2316 +2532 +5101 +3666 +846 +3664 +1510 +2848 +4615 +3739 +2983 +444 +906 +1519 +2779 +1438 +2532 +837 +2532 +1096 +1519 +1186 +2532 +3588 +4071 +3588 +3772 +2681 +1722 +3588 +2798 +846 +2532 +3825 +3004 +5101 +3666 +3588 +932 +3588 +2316 +3664 +1510 +2219 +3739 +2983 +1135 +2928 +1519 +224 +4568 +5140 +2193 +3739 +2220 +3650 +2532 +1279 +2596 +4172 +2532 +2968 +1321 +2532 +4197 +4160 +1519 +2414 +1161 +3004 +5100 +846 +2962 +1487 +3641 +3588 +4982 +1161 +3588 +3004 +4314 +846 +75 +1525 +1223 +3588 +4728 +2374 +3754 +3004 +4771 +4183 +2212 +1525 +2532 +3756 +2480 +575 +302 +3739 +1453 +3588 +3617 +2532 +608 +3588 +2374 +2532 +756 +1854 +2476 +2532 +2925 +3588 +2374 +3004 +2962 +455 +1473 +2532 +611 +2046 +4771 +3756 +1492 +4771 +4159 +1510 +5119 +756 +3004 +5315 +1799 +4771 +2532 +4095 +2532 +1722 +3588 +4113 +1473 +1321 +2532 +2046 +3004 +4771 +3756 +1492 +4159 +1510 +868 +575 +1473 +3956 +2040 +93 +1563 +1510 +3588 +2805 +2532 +3588 +1030 +3588 +3599 +3752 +3708 +11 +2532 +2464 +2532 +2384 +2532 +3956 +3588 +4396 +1722 +3588 +932 +3588 +2316 +1161 +4771 +1544 +1854 +2532 +2240 +575 +395 +2532 +1424 +2532 +575 +1005 +2532 +3558 +2532 +347 +1722 +3588 +932 +3588 +2316 +2532 +3708 +1510 +2078 +3739 +1510 +4413 +2532 +1510 +4413 +3739 +1510 +2078 +1722 +846 +3588 +5610 +4334 +5100 +5330 +3004 +846 +1831 +2532 +4198 +1782 +3754 +2264 +2309 +4771 +615 +2532 +3004 +846 +4198 +3004 +3588 +258 +3778 +3708 +1544 +1140 +2532 +2392 +658 +4594 +2532 +839 +2532 +3588 +5154 +5048 +4133 +1163 +1473 +4594 +2532 +839 +2532 +3588 +2192 +4198 +3754 +3756 +1735 +4396 +622 +1854 +2419 +2419 +2419 +3588 +615 +3588 +4396 +2532 +3036 +3588 +649 +4314 +846 +4212 +2309 +1996 +3588 +5043 +4771 +3739 +5158 +3733 +3588 +1438 +3555 +5259 +3588 +4420 +2532 +3756 +2309 +3708 +863 +4771 +3588 +3624 +4771 +1161 +3004 +4771 +3756 +3361 +3708 +1473 +2193 +2240 +3753 +3004 +2127 +3588 +2064 +1722 +3686 +2962 +2532 +1096 +1722 +3588 +2064 +846 +1519 +3624 +5100 +3588 +758 +3588 +5330 +4521 +5315 +740 +2532 +846 +1510 +3906 +846 +2532 +3708 +444 +5100 +5203 +1510 +1715 +846 +2532 +611 +3588 +2424 +3004 +4314 +3588 +3544 +2532 +5330 +3004 +1832 +3588 +4521 +2323 +2228 +3756 +1161 +3588 +2270 +2532 +1949 +2390 +846 +2532 +630 +2532 +4314 +846 +3004 +5101 +4771 +5207 +2228 +1016 +1519 +5421 +4098 +2532 +3756 +2112 +385 +846 +1722 +2250 +3588 +4521 +2532 +3756 +2480 +470 +4314 +3778 +1161 +3004 +4314 +3588 +2564 +3850 +1907 +4459 +3588 +4411 +1586 +3004 +4314 +846 +3752 +2564 +5259 +5100 +1519 +1062 +3361 +2625 +1519 +3588 +4411 +3361 +4218 +1784 +4771 +1510 +2564 +5259 +846 +2532 +2064 +3588 +4771 +2532 +846 +2564 +2046 +4771 +1325 +3778 +5117 +2532 +5119 +756 +3326 +152 +3588 +2078 +5117 +2722 +235 +3752 +2564 +4198 +377 +1519 +3588 +2078 +5117 +2443 +3752 +2064 +3588 +2564 +4771 +2046 +4771 +5384 +4320 +511 +5119 +1510 +4771 +1391 +1799 +3956 +3588 +4873 +4771 +3754 +3956 +3588 +5312 +1438 +5013 +2532 +3588 +5013 +1438 +5312 +1161 +3004 +2532 +3588 +2564 +846 +3752 +4160 +712 +2228 +1173 +3361 +5455 +3588 +5384 +4771 +3366 +3588 +80 +4771 +3366 +3588 +4773 +4771 +3366 +1069 +4145 +3361 +4218 +2532 +846 +479 +4771 +2532 +1096 +468 +4771 +235 +3752 +1403 +4160 +2564 +4434 +376 +5560 +5185 +2532 +3107 +1510 +3754 +3756 +2192 +467 +4771 +1063 +467 +4771 +1722 +3588 +386 +3588 +1342 +1161 +5100 +3588 +4873 +191 +3778 +3004 +846 +3107 +3748 +5315 +740 +1722 +3588 +932 +3588 +2316 +1161 +3588 +3004 +846 +444 +5100 +4160 +1173 +3173 +2532 +2564 +4183 +2532 +649 +3588 +1401 +846 +3588 +5610 +3588 +1173 +3004 +3588 +2564 +2064 +3754 +2235 +2092 +1510 +2532 +756 +575 +1520 +3956 +3868 +3588 +4413 +3004 +846 +68 +59 +2532 +2192 +318 +1831 +3708 +846 +2065 +4771 +2192 +1473 +3868 +2532 +2087 +3004 +2201 +1016 +4002 +59 +2532 +4198 +1381 +846 +2065 +4771 +2192 +1473 +3868 +2532 +2087 +3004 +1135 +1060 +2532 +1223 +3778 +3756 +1410 +2064 +2532 +3854 +3588 +1401 +518 +3588 +2962 +846 +3778 +5119 +3710 +3588 +3617 +3004 +3588 +1401 +846 +1831 +5030 +1519 +3588 +4113 +2532 +4505 +3588 +4172 +2532 +3588 +4434 +2532 +376 +2532 +5185 +2532 +5560 +1521 +5602 +2532 +3004 +3588 +1401 +2962 +1096 +3739 +2004 +2532 +2089 +5117 +1510 +2532 +3004 +3588 +2962 +4314 +3588 +1401 +1831 +1519 +3588 +3598 +2532 +5418 +2532 +315 +1525 +2443 +1072 +1473 +3588 +3624 +1063 +3004 +4771 +3754 +3762 +3588 +435 +1565 +3588 +2564 +1089 +1473 +3588 +1173 +1161 +4848 +846 +3793 +4183 +2532 +4762 +3004 +4314 +846 +1487 +5100 +2064 +4314 +1473 +2532 +3756 +3404 +3588 +3962 +846 +2532 +3588 +3384 +2532 +3588 +1135 +2532 +3588 +5043 +2532 +3588 +80 +2532 +3588 +79 +5037 +2089 +2532 +3588 +5590 +1438 +3756 +1410 +1510 +1473 +3101 +3748 +3756 +941 +3588 +4716 +1438 +2532 +2064 +3694 +1473 +3756 +1410 +1510 +1473 +3101 +1063 +3780 +5101 +1537 +4771 +2309 +4444 +3618 +4412 +2523 +5585 +3588 +1160 +1487 +2192 +1519 +535 +2443 +3361 +4218 +5087 +846 +2310 +2532 +3361 +2480 +1615 +3956 +3588 +2334 +756 +846 +1702 +3004 +3754 +3778 +3588 +444 +756 +3618 +2532 +3756 +2480 +1615 +2228 +3780 +5101 +935 +4198 +2087 +935 +4820 +1519 +4171 +2523 +4412 +1011 +1487 +1415 +1510 +1722 +1176 +5505 +5221 +3588 +3326 +1501 +5505 +2064 +1909 +846 +1161 +1487 +1490 +2089 +846 +4206 +1510 +4242 +649 +2065 +3588 +4314 +1515 +3767 +3779 +3956 +1537 +4771 +3739 +3756 +657 +3956 +3588 +1438 +5225 +3756 +1410 +1510 +1473 +3101 +3767 +2570 +3588 +217 +1161 +1437 +2532 +3588 +217 +3471 +1722 +5101 +741 +3777 +1519 +1093 +3777 +1519 +2874 +2111 +1510 +1854 +906 +846 +3588 +2192 +3775 +191 +191 +1161 +1510 +1448 +846 +3956 +3588 +5057 +2532 +3588 +268 +191 +846 +2532 +1234 +5037 +3588 +5330 +2532 +3588 +1122 +3004 +3754 +3778 +268 +4327 +2532 +4906 +846 +1161 +3004 +4314 +846 +3588 +3850 +3778 +3004 +5101 +444 +1537 +4771 +2192 +1540 +4263 +2532 +622 +1537 +846 +1520 +3756 +2641 +3588 +1768 +1767 +1722 +3588 +2048 +2532 +4198 +1909 +3588 +622 +2193 +2147 +846 +2532 +2147 +2007 +1909 +3588 +5606 +846 +5463 +2532 +2064 +1519 +3588 +3624 +4779 +3588 +5384 +2532 +3588 +1069 +3004 +846 +4796 +1473 +3754 +2147 +3588 +4263 +1473 +3588 +622 +3004 +4771 +3754 +3779 +5479 +1722 +3588 +3772 +1510 +1909 +1520 +268 +3340 +2228 +1909 +1768 +1767 +1342 +3748 +3756 +5532 +3341 +2192 +2228 +5101 +1135 +1406 +1176 +2192 +1437 +622 +1406 +1520 +3780 +681 +3088 +2532 +4563 +3588 +3614 +2532 +2212 +1960 +2193 +3739 +2147 +2532 +2147 +4779 +3588 +5384 +2532 +1069 +3004 +4796 +1473 +3754 +2147 +3588 +1406 +3739 +622 +3779 +3004 +4771 +1096 +5479 +1799 +3588 +32 +3588 +2316 +1909 +1520 +268 +3340 +1161 +3004 +444 +5100 +2192 +1417 +5207 +2532 +3004 +3588 +3501 +846 +3588 +3962 +3962 +1325 +1473 +3588 +1911 +3313 +3588 +3776 +1161 +3588 +1244 +846 +3588 +979 +2532 +3326 +3756 +4183 +2250 +4863 +3956 +3588 +3501 +5207 +589 +1519 +5561 +3117 +2532 +1563 +1287 +3588 +3776 +846 +2198 +811 +1161 +1159 +846 +3956 +1096 +3042 +2478 +2596 +3588 +5561 +1565 +2532 +846 +756 +5302 +2532 +4198 +2853 +1520 +3588 +4177 +3588 +5561 +1565 +2532 +3992 +846 +1519 +3588 +68 +846 +1006 +5519 +2532 +1937 +1072 +3588 +2836 +846 +1537 +3588 +2769 +3739 +2068 +3588 +5519 +2532 +3762 +1325 +846 +1161 +1519 +1438 +2064 +5346 +4214 +3407 +3588 +3962 +1473 +4052 +740 +1161 +1473 +3042 +5602 +622 +450 +4198 +4314 +3588 +3962 +1473 +2532 +2046 +846 +3962 +264 +1519 +3588 +3772 +2532 +1799 +4771 +3765 +1510 +514 +2564 +5207 +4771 +4160 +1473 +5613 +1520 +3588 +3407 +4771 +2532 +450 +2064 +4314 +3588 +3962 +1438 +1161 +2089 +846 +3112 +568 +3708 +846 +3588 +3962 +846 +2532 +4697 +2532 +5143 +1968 +1909 +3588 +5137 +846 +2532 +2705 +846 +1161 +3004 +3588 +5207 +846 +3962 +264 +1519 +3588 +3772 +2532 +1799 +4771 +3765 +1510 +514 +2564 +5207 +4771 +1161 +3004 +3588 +3962 +4314 +3588 +1401 +846 +5035 +1627 +4749 +3588 +4413 +2532 +1746 +846 +2532 +1325 +1146 +1519 +3588 +5495 +846 +2532 +5266 +1519 +3588 +4228 +2532 +5342 +3588 +3448 +3588 +4618 +2380 +2532 +5315 +2165 +3754 +3778 +3588 +5207 +1473 +3498 +1510 +2532 +326 +1510 +622 +2532 +2147 +2532 +756 +2165 +1161 +1510 +3588 +5207 +846 +3588 +4245 +1722 +68 +2532 +5613 +2064 +1448 +3588 +3614 +191 +4858 +2532 +5525 +2532 +4341 +1520 +3588 +3816 +4441 +302 +5101 +1510 +3778 +1161 +3588 +3004 +846 +3754 +3588 +80 +4771 +2240 +2532 +2380 +3588 +3962 +4771 +3588 +3448 +3588 +4618 +3754 +5198 +846 +618 +1161 +3710 +2532 +3756 +2309 +1525 +1161 +3588 +3962 +846 +1831 +3870 +846 +1161 +3588 +611 +3004 +3588 +3962 +3708 +5118 +2094 +1398 +4771 +2532 +3763 +1785 +4771 +3928 +2532 +1473 +3763 +1325 +2056 +2443 +3326 +3588 +5384 +1473 +2165 +1161 +3753 +3588 +5207 +4771 +3778 +3588 +2719 +4771 +3588 +979 +3326 +4204 +2064 +2380 +846 +3588 +4618 +3448 +1161 +3588 +3004 +846 +5043 +4771 +3842 +3326 +1473 +1510 +2532 +3956 +3588 +1699 +4674 +1510 +1161 +2165 +2532 +5463 +1163 +3754 +3588 +80 +4771 +3778 +3498 +1510 +2532 +2198 +2532 +622 +2532 +2147 +1161 +3004 +2532 +4314 +3588 +3101 +444 +5100 +1510 +4145 +3739 +2192 +3623 +2532 +3778 +1225 +846 +5613 +1287 +3588 +5225 +846 +2532 +5455 +846 +3004 +846 +5101 +3778 +191 +4012 +4771 +591 +3588 +3056 +3588 +3622 +4771 +1063 +3756 +1410 +2089 +3621 +1161 +3004 +1722 +1438 +3588 +3623 +5101 +4160 +3754 +3588 +2962 +1473 +851 +3588 +3622 +575 +1473 +4626 +3756 +2480 +1871 +153 +1097 +5101 +4160 +2443 +3752 +3179 +1537 +3588 +3622 +1209 +1473 +1519 +3588 +3624 +1438 +2532 +4341 +1520 +1538 +3588 +5533 +3588 +2962 +1438 +3004 +3588 +4413 +4214 +3784 +3588 +2962 +1473 +1161 +3588 +3004 +1540 +943 +1637 +1161 +3588 +3004 +846 +1209 +4771 +3588 +1121 +2532 +2523 +5030 +1125 +4004 +1899 +2087 +3004 +1161 +4771 +4214 +3784 +1161 +3588 +3004 +1540 +2884 +4621 +3004 +846 +1209 +4771 +3588 +1121 +2532 +1125 +3589 +2532 +1867 +3588 +2962 +3588 +3623 +3588 +93 +3754 +5430 +4160 +3754 +3588 +5207 +3588 +165 +3778 +5429 +5228 +3588 +5207 +3588 +5457 +1519 +3588 +1074 +3588 +1438 +1510 +2532 +1473 +4771 +3004 +1438 +4160 +5384 +1537 +3588 +3126 +3588 +93 +2443 +3752 +1587 +1209 +4771 +1519 +3588 +166 +4633 +3588 +4103 +1722 +1646 +2532 +1722 +4183 +4103 +1510 +2532 +3588 +1722 +1646 +94 +2532 +1722 +4183 +94 +1510 +3767 +1487 +1722 +3588 +94 +3126 +4103 +3756 +1096 +3588 +228 +5101 +4771 +4100 +2532 +1487 +1722 +3588 +245 +4103 +3756 +1096 +3588 +2251 +5101 +1325 +4771 +3762 +3610 +1410 +1417 +2962 +1398 +1063 +2228 +3588 +1520 +3404 +2532 +3588 +2087 +25 +2228 +1520 +472 +2532 +3588 +2087 +2706 +3756 +1410 +2316 +1398 +2532 +3126 +1161 +191 +3778 +3956 +3588 +5330 +5366 +5225 +2532 +1592 +846 +2532 +3004 +846 +4771 +1510 +3588 +1344 +1438 +1799 +3588 +444 +1161 +3588 +2316 +1097 +3588 +2588 +4771 +3754 +3588 +1722 +444 +5308 +946 +1799 +3588 +2316 +3588 +3551 +2532 +3588 +4396 +3360 +2491 +575 +5119 +3588 +932 +3588 +2316 +2097 +2532 +3956 +1519 +846 +971 +1161 +2123 +1510 +3588 +3772 +2532 +3588 +1093 +3928 +2228 +3588 +3551 +1520 +2762 +4098 +3956 +3588 +630 +3588 +1135 +846 +2532 +1060 +2087 +3431 +2532 +3588 +630 +575 +435 +1060 +3431 +1161 +444 +5100 +1510 +4145 +2532 +1737 +4209 +2532 +1040 +2165 +2596 +2250 +2988 +1161 +4434 +5100 +3686 +2976 +906 +4314 +3588 +4440 +846 +1669 +2532 +1937 +5526 +575 +3588 +4098 +575 +3588 +5132 +3588 +4145 +235 +2532 +3588 +2965 +2064 +621 +3588 +1668 +846 +1161 +1096 +599 +3588 +4434 +2532 +667 +846 +5259 +3588 +32 +1519 +3588 +2859 +11 +1161 +599 +2532 +3588 +4145 +2532 +2290 +2532 +1722 +3588 +86 +1869 +3588 +3788 +846 +5225 +1722 +931 +3708 +11 +575 +3113 +2532 +2976 +1722 +3588 +2859 +846 +2532 +846 +5455 +3004 +3962 +11 +1653 +1473 +2532 +3992 +2976 +2443 +911 +3588 +206 +3588 +1147 +846 +5204 +2532 +2711 +3588 +1100 +1473 +3754 +3600 +1722 +3588 +5395 +3778 +1161 +3004 +11 +5043 +3403 +3754 +618 +3588 +18 +4771 +1722 +3588 +2222 +4771 +2532 +2976 +3668 +3588 +2556 +1161 +3568 +5602 +3870 +1161 +4771 +3600 +2532 +1722 +3956 +3778 +3342 +1473 +2532 +4771 +5490 +3173 +4741 +3704 +3588 +2309 +1224 +1759 +4314 +4771 +3361 +1410 +3366 +1564 +4314 +1473 +1276 +1161 +3004 +3767 +2065 +4771 +3962 +2443 +3992 +846 +1519 +3588 +3624 +3588 +3962 +1473 +1063 +2192 +4002 +80 +3704 +1263 +846 +2443 +3361 +2532 +846 +2064 +1519 +3588 +5117 +3778 +3588 +931 +1161 +3004 +11 +2192 +3475 +2532 +3588 +4396 +191 +846 +1161 +3588 +3004 +3780 +3962 +11 +235 +1437 +5100 +575 +3498 +4198 +4314 +846 +3340 +1161 +3004 +846 +1487 +3475 +2532 +3588 +4396 +3756 +191 +3761 +1437 +5100 +1537 +3498 +450 +3982 +1161 +3004 +4314 +3588 +3101 +846 +418 +1510 +3588 +3588 +4625 +3361 +2064 +1161 +3759 +1223 +3739 +2064 +3081 +846 +1487 +3037 +3457 +4029 +4012 +3588 +5137 +846 +2532 +4496 +1519 +3588 +2281 +2228 +2443 +4624 +3588 +3398 +3778 +1520 +4337 +1438 +1437 +264 +3588 +80 +4771 +2008 +846 +2532 +1437 +3340 +863 +846 +2532 +1437 +2034 +3588 +2250 +264 +1519 +4771 +2532 +2034 +1994 +4314 +4771 +3004 +3340 +863 +846 +2532 +3004 +3588 +652 +3588 +2962 +4369 +1473 +4102 +1161 +3004 +3588 +2962 +1487 +2192 +4102 +5613 +2848 +4615 +302 +3004 +3588 +4807 +3778 +1610 +2532 +5452 +1722 +3588 +2281 +2532 +302 +5219 +4771 +1161 +5101 +1537 +4771 +2192 +1401 +722 +2228 +4165 +3739 +1525 +1537 +3588 +68 +2046 +846 +2112 +3928 +377 +235 +3780 +2046 +846 +2090 +5101 +1172 +2532 +4024 +1247 +1473 +2193 +5315 +2532 +4095 +2532 +3326 +3778 +5315 +2532 +4095 +4771 +3361 +2192 +5485 +3588 +1401 +3754 +4160 +3588 +1299 +3779 +2532 +4771 +3752 +4160 +3956 +3588 +1299 +4771 +3004 +3754 +1401 +888 +1510 +3739 +4160 +3784 +4160 +2532 +1096 +1722 +3588 +4198 +1519 +2419 +2532 +846 +1330 +1223 +3319 +4540 +2532 +1056 +2532 +1525 +846 +1519 +5100 +2968 +528 +1176 +3015 +435 +3739 +2476 +4207 +2532 +846 +142 +5456 +3004 +2424 +1988 +1653 +1473 +2532 +3708 +3004 +846 +4198 +1925 +1438 +3588 +2409 +2532 +1096 +1722 +3588 +5217 +846 +2511 +1161 +1520 +1537 +846 +3708 +3754 +2390 +5290 +3326 +5456 +3173 +1392 +3588 +2316 +2532 +4098 +1909 +4383 +3844 +3588 +4228 +846 +2168 +846 +2532 +846 +1510 +4541 +1161 +611 +3588 +2424 +3004 +3756 +3588 +1176 +2511 +1161 +3588 +1767 +4226 +3756 +2147 +5290 +1325 +1391 +3588 +2316 +1487 +3361 +3588 +241 +3778 +2532 +3004 +846 +450 +4198 +3588 +4102 +4771 +4982 +4771 +1161 +1905 +5259 +3588 +5330 +4219 +2064 +3588 +932 +3588 +2316 +611 +846 +2532 +3004 +3756 +2064 +3588 +932 +3588 +2316 +3326 +3907 +3761 +2046 +3708 +5602 +2228 +1563 +1063 +3708 +3588 +932 +3588 +2316 +1787 +4771 +1510 +1161 +3004 +4314 +3588 +3101 +2064 +2250 +3753 +1937 +1520 +3588 +2250 +3588 +5207 +3588 +444 +3708 +2532 +3756 +3708 +2532 +2046 +4771 +3708 +1563 +3708 +5602 +3361 +565 +3366 +1377 +1063 +5618 +3588 +796 +797 +1537 +3588 +5259 +3588 +3772 +1519 +3588 +5259 +3772 +2989 +3779 +1510 +3588 +5207 +3588 +444 +1722 +3588 +2250 +846 +1161 +1163 +4412 +846 +4183 +3958 +2532 +593 +575 +3588 +1074 +3778 +2532 +2531 +1096 +1722 +3588 +2250 +3575 +3779 +1510 +2532 +1722 +3588 +2250 +3588 +5207 +3588 +444 +2068 +4095 +1060 +1061 +891 +3739 +2250 +1525 +3575 +1519 +3588 +2787 +2532 +2064 +3588 +2627 +2532 +622 +3956 +2531 +3668 +1096 +1722 +3588 +2250 +3091 +2068 +4095 +59 +4453 +5452 +3618 +1161 +3739 +2250 +1831 +3091 +575 +4670 +1026 +4442 +2532 +2303 +575 +3772 +2532 +622 +3956 +2596 +3588 +846 +1510 +3739 +2250 +3588 +5207 +3588 +444 +601 +1722 +1565 +3588 +2250 +3739 +1510 +1909 +3588 +1430 +2532 +3588 +4632 +846 +1722 +3588 +3614 +3361 +2597 +142 +846 +2532 +3588 +1722 +68 +3668 +3361 +1994 +1519 +3588 +3694 +3421 +3588 +1135 +3091 +1437 +3739 +2212 +3588 +5590 +846 +4046 +622 +846 +2532 +302 +3739 +622 +2225 +846 +3004 +4771 +3778 +3588 +3571 +1510 +1417 +1909 +2825 +1520 +3588 +1520 +3880 +2532 +3588 +2087 +863 +1510 +229 +1417 +1909 +3588 +846 +3588 +1520 +3880 +1161 +3588 +2087 +863 +2532 +611 +3004 +846 +4226 +2962 +1161 +3588 +3004 +846 +3699 +3588 +4983 +1563 +2532 +3588 +105 +1996 +1161 +3004 +3850 +846 +4314 +3588 +1163 +3842 +4336 +846 +2532 +3361 +1573 +3004 +2923 +5100 +1510 +1722 +5100 +4172 +3588 +2316 +3361 +5399 +2532 +444 +3361 +1788 +1161 +5503 +1510 +1722 +3588 +4172 +1565 +2532 +2064 +4314 +846 +3004 +1556 +1473 +575 +3588 +476 +1473 +2532 +3756 +2309 +1909 +5550 +1161 +3326 +3778 +3004 +1722 +1438 +1487 +2532 +3588 +2316 +3756 +5399 +3761 +444 +1788 +1065 +1223 +3588 +3930 +1473 +2873 +3588 +5503 +3778 +1556 +846 +2443 +3361 +1519 +5056 +2064 +5299 +1473 +1161 +3004 +3588 +2962 +191 +5101 +3588 +2923 +3588 +93 +3004 +1161 +3756 +3361 +3588 +2316 +4160 +3588 +1557 +3588 +1588 +846 +3588 +994 +846 +2250 +2532 +3571 +2532 +3114 +1909 +846 +3004 +4771 +3754 +4160 +3588 +1557 +846 +1722 +5034 +4133 +3588 +5207 +3588 +444 +2064 +687 +2147 +3588 +4102 +1909 +3588 +1093 +1161 +3004 +2532 +4314 +5100 +3588 +3982 +1909 +1438 +3754 +1510 +1342 +2532 +1848 +3588 +3062 +3588 +3850 +3778 +444 +1417 +305 +1519 +3588 +2411 +4336 +3588 +1520 +5330 +2532 +3588 +2087 +5057 +3588 +5330 +2476 +3778 +4314 +1438 +4336 +3588 +2316 +2168 +4771 +3754 +3756 +1510 +5618 +3588 +3062 +3588 +444 +727 +94 +3432 +2228 +5613 +2532 +3778 +3588 +5057 +3522 +1364 +3588 +4521 +586 +3956 +3745 +2932 +1161 +3588 +5057 +3113 +2476 +3756 +2309 +3761 +3588 +3788 +1869 +1519 +3588 +3772 +235 +5180 +3588 +4738 +846 +3004 +3588 +2316 +2433 +1473 +3588 +268 +3004 +4771 +2597 +3778 +1344 +1519 +3588 +3624 +846 +3844 +1565 +3754 +3956 +3588 +5312 +1438 +5013 +1161 +3588 +5013 +1438 +5312 +1161 +4374 +846 +2532 +3588 +1025 +2443 +846 +680 +1161 +3708 +3588 +3101 +2008 +846 +1161 +3588 +2424 +4341 +846 +3004 +863 +3588 +3813 +2064 +4314 +1473 +2532 +3361 +2967 +846 +1063 +3588 +5108 +1510 +3588 +932 +3588 +2316 +281 +3004 +4771 +302 +3739 +3361 +1209 +3588 +932 +3588 +2316 +5613 +3813 +3756 +3361 +1525 +1519 +846 +2532 +1905 +5100 +758 +846 +3004 +1320 +18 +5101 +4160 +2222 +166 +2816 +1161 +3004 +846 +3588 +2424 +5101 +1473 +3004 +18 +3762 +18 +1487 +3361 +1520 +3588 +2316 +3588 +1785 +1492 +3361 +3431 +3361 +5407 +3361 +2813 +3361 +5576 +5091 +3588 +3962 +4771 +2532 +3588 +3384 +1161 +3588 +3004 +3778 +3956 +5442 +1537 +3503 +1161 +191 +3588 +2424 +3004 +846 +2089 +1520 +4771 +3007 +3956 +3745 +2192 +4453 +2532 +1239 +4434 +2532 +2192 +2344 +1722 +3588 +3772 +2532 +1204 +190 +1473 +1161 +3588 +191 +3778 +4036 +1096 +1063 +1510 +4145 +4970 +1161 +3708 +846 +3588 +2424 +3004 +4459 +1423 +3588 +3588 +5536 +2192 +1519 +3588 +932 +3588 +2316 +1531 +1063 +2123 +1510 +2574 +1223 +5169 +956 +1525 +2228 +4145 +1519 +3588 +932 +3588 +2316 +1525 +1161 +3004 +3588 +191 +2532 +5101 +1410 +4982 +1161 +3588 +3004 +3588 +102 +3844 +444 +1415 +3844 +3588 +2316 +1510 +1161 +3004 +3588 +4074 +3708 +1473 +863 +3588 +2398 +190 +4771 +1161 +3588 +3004 +846 +281 +3004 +4771 +3754 +3762 +1510 +3739 +863 +3614 +2228 +1135 +2228 +80 +2228 +1118 +2228 +5043 +1752 +3588 +932 +3588 +2316 +3739 +3780 +3361 +2983 +4179 +1722 +3588 +2540 +3778 +2532 +1722 +3588 +165 +3588 +2064 +2222 +166 +1161 +3880 +3588 +1427 +3004 +4314 +846 +3708 +305 +1519 +2419 +2532 +5055 +3956 +3588 +1125 +1223 +3588 +4396 +3588 +5207 +3588 +444 +1063 +3860 +3588 +1484 +2532 +1702 +2532 +5195 +2532 +1716 +2532 +3146 +615 +846 +2532 +3588 +2250 +3588 +5154 +450 +2532 +846 +3762 +3778 +4920 +2532 +1510 +3588 +4487 +3778 +2928 +575 +846 +2532 +3756 +1097 +3588 +3004 +1161 +1096 +1722 +3588 +1448 +846 +1519 +2410 +5185 +5100 +2521 +3844 +3588 +3598 +1871 +1161 +191 +3793 +1279 +4441 +5101 +1510 +3778 +1161 +518 +846 +3754 +2424 +3588 +3480 +3928 +2532 +994 +3004 +2424 +5207 +1138 +1653 +1473 +2532 +3588 +4254 +2008 +846 +2443 +4601 +1161 +846 +4183 +3123 +2896 +5207 +1138 +1653 +1473 +1161 +2476 +3588 +2424 +2753 +846 +71 +4314 +846 +1161 +1448 +846 +1905 +846 +5101 +4771 +4160 +2309 +1161 +3588 +3004 +2962 +2443 +308 +2532 +3588 +2424 +3004 +846 +308 +3588 +4102 +4771 +4982 +4771 +2532 +3916 +308 +2532 +190 +846 +1392 +3588 +2316 +2532 +3956 +3588 +2992 +3708 +1325 +136 +3588 +2316 +2532 +1525 +1330 +3588 +2410 +2532 +3708 +435 +3686 +2564 +2195 +2532 +846 +1510 +754 +2532 +846 +4145 +2532 +2212 +3708 +3588 +2424 +5101 +1510 +2532 +3756 +1410 +575 +3588 +3793 +3754 +3588 +2244 +3398 +1510 +2532 +4390 +1519 +3588 +1715 +305 +1909 +4809 +2443 +3708 +846 +3754 +1565 +1330 +3195 +2532 +5613 +2064 +1909 +3588 +5117 +308 +3588 +2424 +3004 +4314 +846 +2195 +4692 +2597 +1063 +4594 +1722 +3588 +3624 +4771 +1473 +3306 +1163 +2532 +4692 +2597 +2532 +5264 +846 +5463 +2532 +3708 +3956 +1234 +3004 +3754 +3844 +268 +435 +1525 +2647 +1161 +2476 +2195 +3004 +4314 +3588 +2962 +2962 +3708 +3588 +2255 +1473 +3588 +5225 +3588 +4434 +1325 +2532 +1487 +5100 +5100 +4811 +591 +5073 +1161 +3004 +4314 +846 +3588 +2424 +3754 +4594 +4991 +3588 +3624 +3778 +1096 +2530 +2532 +846 +5207 +11 +1510 +1063 +2064 +3588 +5207 +3588 +444 +2212 +2532 +4982 +3588 +622 +1161 +191 +846 +3778 +4369 +3004 +3850 +1223 +3588 +1510 +1451 +2419 +846 +2532 +1380 +846 +3754 +3916 +3195 +3588 +932 +3588 +2316 +398 +3767 +3004 +444 +5100 +2104 +4198 +1519 +5561 +3117 +2983 +1438 +932 +2532 +5290 +1161 +2564 +1176 +1401 +1438 +1325 +846 +1176 +3414 +2532 +3004 +4314 +846 +4231 +1722 +3739 +2064 +1161 +3588 +4177 +846 +3404 +846 +2532 +649 +4242 +3694 +846 +3004 +3756 +2309 +3778 +936 +1909 +1473 +2532 +1096 +1722 +3588 +1880 +846 +2983 +3588 +932 +2532 +3004 +5455 +846 +3588 +1401 +3778 +3739 +1325 +3588 +694 +2443 +1097 +5101 +5101 +1281 +1161 +3854 +3588 +4413 +3004 +2962 +3588 +3414 +4771 +1176 +3414 +4333 +2532 +3004 +846 +2095 +18 +1401 +3754 +1722 +1646 +4103 +1096 +1510 +1849 +2192 +1883 +1176 +4172 +2532 +2064 +3588 +1208 +3004 +2962 +3588 +3414 +4771 +4160 +4002 +3414 +1161 +3004 +2532 +3778 +2532 +4771 +1883 +4002 +4172 +1096 +2532 +3588 +2087 +2064 +3004 +2962 +3708 +3588 +3414 +4771 +3739 +2192 +606 +1722 +4676 +1063 +5399 +4771 +3754 +444 +840 +1510 +142 +3739 +3756 +5087 +2532 +2325 +3739 +3756 +4687 +3004 +846 +1537 +3588 +4750 +4771 +2919 +4771 +4190 +1401 +1492 +3754 +1473 +1510 +444 +840 +142 +3739 +3756 +5087 +2532 +2325 +3739 +3756 +4687 +2532 +1223 +5101 +3756 +1325 +1473 +3588 +694 +1909 +5132 +302 +2504 +2064 +4862 +5110 +846 +4238 +2532 +3588 +3936 +3004 +142 +575 +846 +3588 +3414 +2532 +1325 +3588 +3588 +1176 +3414 +2192 +2532 +3004 +846 +2962 +2192 +1176 +3414 +3004 +4771 +3754 +3956 +3588 +2192 +1325 +1161 +575 +3588 +3361 +2192 +2532 +3739 +2192 +142 +4133 +3588 +2190 +1473 +3778 +3588 +3361 +2309 +1473 +936 +1909 +846 +71 +5602 +2532 +2695 +846 +1715 +1473 +2532 +3004 +3778 +4198 +1715 +305 +1519 +2414 +2532 +1096 +5613 +1448 +1519 +967 +2532 +963 +4314 +3588 +3735 +3588 +2564 +1636 +649 +1417 +3588 +3101 +3004 +5217 +1519 +3588 +2713 +2968 +1722 +3739 +1531 +2147 +1210 +4454 +1909 +3739 +3762 +444 +4455 +2523 +2532 +3089 +846 +71 +2532 +1437 +5100 +4771 +2065 +1223 +5101 +3089 +3779 +2046 +3754 +3588 +2962 +846 +5532 +2192 +1161 +565 +3588 +649 +2147 +2531 +3004 +846 +1161 +3089 +846 +3588 +4454 +3004 +3588 +2962 +846 +4314 +846 +5101 +3089 +3588 +4454 +1161 +3588 +3004 +3754 +3588 +2962 +846 +5532 +2192 +2532 +71 +846 +4314 +3588 +2424 +2532 +1977 +846 +3588 +2440 +1909 +3588 +4454 +1913 +3588 +2424 +1161 +4198 +846 +5291 +3588 +2440 +1438 +1722 +3588 +3598 +1161 +1448 +846 +2235 +4314 +3588 +2600 +3588 +3735 +3588 +1636 +756 +537 +3588 +4128 +3588 +3101 +5463 +134 +3588 +2316 +5456 +3173 +4012 +3956 +3739 +3708 +1411 +3004 +2127 +3588 +2064 +1722 +3686 +2962 +3588 +935 +1722 +3772 +1515 +2532 +1391 +1722 +5310 +2532 +5100 +3588 +5330 +575 +3588 +3793 +3004 +4314 +846 +1320 +2008 +3588 +3101 +4771 +2532 +611 +3004 +3004 +4771 +1437 +3778 +4623 +3588 +3037 +2896 +2532 +5613 +1448 +3708 +3588 +4172 +2799 +1909 +846 +3004 +3754 +1487 +1097 +1722 +3588 +2250 +3778 +2532 +4771 +3588 +4314 +1515 +1161 +3568 +2928 +575 +3788 +4771 +3754 +2240 +2250 +1909 +4771 +2532 +3925 +3588 +2190 +4771 +5482 +4771 +2532 +4033 +4771 +2532 +4912 +4771 +3840 +2532 +1474 +4771 +2532 +3588 +5043 +4771 +1722 +4771 +2532 +3756 +863 +3037 +1909 +3037 +1722 +4771 +473 +3739 +3756 +1097 +3588 +2540 +3588 +1984 +4771 +2532 +1525 +1519 +3588 +2411 +756 +1544 +3588 +4453 +3004 +846 +1125 +2532 +1510 +3588 +3624 +1473 +3624 +4335 +1161 +4771 +846 +4160 +4693 +3027 +2532 +1510 +1321 +3588 +2596 +2250 +1722 +3588 +2411 +1161 +3588 +749 +2532 +3588 +1122 +2212 +846 +622 +2532 +3588 +4413 +3588 +2992 +2532 +3756 +2147 +3588 +5101 +4160 +1063 +3588 +2992 +537 +1582 +846 +191 +2532 +1096 +1722 +1520 +3588 +2250 +1321 +846 +3588 +2992 +1722 +3588 +2411 +2532 +2097 +2186 +3588 +749 +2532 +3588 +1122 +4862 +3588 +4245 +2532 +3004 +3004 +4314 +846 +3004 +1473 +1722 +4169 +1849 +3778 +4160 +2228 +5101 +1510 +3588 +1325 +4771 +3588 +1849 +3778 +1161 +611 +3004 +4314 +846 +2065 +4771 +2504 +3056 +2532 +3004 +1473 +3588 +908 +2491 +1537 +3772 +1510 +2228 +1537 +444 +1161 +3588 +4817 +4314 +1438 +3004 +3754 +1437 +3004 +1537 +3772 +2046 +1223 +5101 +3756 +4100 +846 +1161 +1437 +3004 +1537 +444 +3588 +2992 +537 +2642 +1473 +1063 +3982 +1510 +2491 +4396 +1510 +2532 +611 +3361 +1492 +4159 +2532 +3588 +2424 +3004 +846 +3761 +1473 +3004 +4771 +1722 +4169 +1849 +3778 +4160 +1161 +756 +4314 +3588 +2992 +3004 +3588 +3850 +3778 +444 +5452 +290 +2532 +1554 +846 +1092 +2532 +589 +5550 +2425 +2532 +2540 +649 +4314 +3588 +1092 +1401 +2443 +575 +3588 +2590 +3588 +290 +1325 +846 +1161 +3588 +1092 +1821 +846 +1194 +2756 +2532 +4369 +2087 +1401 +3992 +1161 +3588 +2548 +1194 +2532 +818 +1821 +2756 +2532 +4369 +5154 +3992 +1161 +3588 +2532 +3778 +5135 +1544 +1161 +3004 +3588 +2962 +3588 +290 +5101 +4160 +3992 +3588 +5207 +1473 +3588 +27 +2481 +3778 +1788 +1161 +3708 +846 +3588 +1092 +1260 +4314 +240 +3004 +3778 +1510 +3588 +2818 +615 +846 +2443 +1473 +1096 +3588 +2817 +2532 +1544 +846 +1854 +3588 +290 +615 +3767 +5101 +4160 +846 +3588 +2962 +3588 +290 +2064 +2532 +622 +3588 +1092 +3778 +2532 +1325 +3588 +290 +243 +1161 +191 +3004 +3361 +1096 +1161 +3588 +1689 +846 +3004 +3767 +5101 +1510 +3588 +1125 +3778 +3037 +3739 +593 +3588 +3618 +3778 +1096 +1519 +2776 +1137 +3956 +3588 +4098 +1909 +1565 +3588 +3037 +4917 +1161 +302 +1909 +3739 +4098 +3039 +846 +2532 +2212 +3588 +1122 +2532 +3588 +749 +1911 +1909 +846 +3588 +5495 +1722 +846 +3588 +5610 +2532 +5399 +3588 +2992 +1063 +1097 +3754 +4314 +846 +3004 +3588 +3850 +3778 +2532 +3906 +649 +1455 +5271 +1438 +1342 +1510 +2443 +1949 +846 +3056 +5620 +3860 +846 +3588 +746 +2532 +3588 +1849 +3588 +2232 +2532 +1905 +846 +3004 +1320 +1492 +3754 +3723 +3004 +2532 +1321 +2532 +3756 +2983 +4383 +235 +1909 +225 +3588 +3598 +3588 +2316 +1321 +1832 +1473 +2541 +5411 +1325 +2228 +3756 +1161 +2657 +846 +3588 +3834 +3004 +4314 +846 +1166 +1473 +1220 +2192 +5101 +1504 +2532 +1923 +1161 +3588 +3004 +2541 +1161 +3588 +3004 +4314 +846 +5106 +591 +3588 +2541 +2541 +2532 +3588 +3588 +2316 +3588 +2316 +2532 +3756 +2480 +1949 +846 +4487 +1726 +3588 +2992 +2532 +2296 +1909 +3588 +612 +846 +4601 +1161 +4334 +5100 +3588 +4523 +3588 +483 +386 +3361 +1510 +1905 +846 +3004 +1320 +3475 +1125 +1473 +1437 +5100 +80 +599 +2192 +1135 +2532 +3778 +815 +1510 +2443 +2983 +3588 +80 +846 +3588 +1135 +2532 +1817 +4690 +3588 +80 +846 +3767 +2033 +80 +1510 +2532 +3588 +4413 +2983 +1135 +599 +815 +2532 +3588 +1208 +2532 +3588 +5154 +2983 +846 +1161 +5615 +2532 +3588 +2033 +3756 +2641 +5043 +2532 +599 +5305 +2532 +3588 +1135 +599 +3767 +3588 +1135 +1722 +3588 +386 +5101 +846 +1135 +1096 +1063 +3588 +2033 +2192 +846 +1135 +2532 +3004 +846 +3588 +2424 +3588 +5207 +3588 +165 +3778 +1060 +2532 +1061 +1161 +3588 +2661 +3588 +165 +1565 +5177 +2532 +3588 +386 +3588 +1537 +3498 +3777 +1060 +3777 +1061 +1063 +3761 +599 +2089 +1410 +1063 +2465 +1510 +2532 +5207 +2316 +1510 +3588 +386 +5207 +1510 +1161 +3754 +1453 +3588 +3498 +2532 +3475 +3377 +1909 +3588 +942 +5613 +3004 +2962 +3588 +2316 +11 +2532 +2316 +2464 +2532 +2316 +2384 +1161 +2316 +3756 +1510 +3498 +235 +2198 +1063 +3956 +846 +2198 +1161 +611 +5100 +3588 +1122 +3004 +1320 +2573 +3004 +1063 +3765 +5111 +1905 +846 +3762 +1161 +3004 +4314 +846 +4459 +3004 +3588 +5547 +1510 +1138 +5207 +1063 +846 +1138 +3004 +1722 +976 +5568 +3004 +2962 +3588 +2962 +1473 +2521 +1537 +1188 +1473 +2193 +302 +5087 +3588 +2190 +4771 +5286 +3588 +4228 +4771 +3767 +1138 +846 +2962 +2564 +2532 +4459 +846 +5207 +1510 +1161 +191 +3956 +3588 +2992 +3004 +3588 +3101 +4337 +575 +3588 +1122 +3588 +2309 +4043 +1722 +4749 +2532 +5368 +783 +1722 +3588 +58 +2532 +4410 +1722 +3588 +4864 +2532 +4411 +1722 +3588 +1173 +3739 +2719 +3588 +3614 +3588 +5503 +2532 +4392 +3117 +4336 +3778 +2983 +4053 +2917 +1161 +308 +3708 +3588 +906 +1519 +3588 +1049 +3588 +1435 +846 +4145 +1161 +3708 +5100 +5503 +3998 +906 +1563 +3016 +1417 +2532 +3004 +230 +3004 +4771 +3754 +3588 +5503 +3778 +3588 +4434 +4119 +3956 +906 +1063 +3956 +3778 +1537 +3588 +4052 +846 +906 +1519 +3588 +1435 +1161 +3778 +1537 +3588 +5303 +846 +3956 +3588 +979 +3739 +2192 +906 +2532 +5100 +3004 +4012 +3588 +2411 +3754 +3037 +2570 +2532 +334 +2885 +3004 +3778 +3739 +2334 +2064 +2250 +1722 +3739 +3756 +863 +1909 +3037 +3037 +3739 +3756 +2647 +1161 +1905 +846 +3004 +1320 +3767 +4219 +3778 +1510 +2532 +5101 +3588 +4592 +3752 +3195 +3778 +1096 +1161 +3588 +3004 +991 +3361 +4105 +1063 +4183 +2064 +1909 +3588 +3686 +1473 +3004 +1473 +1510 +2532 +3588 +2540 +1448 +3361 +4198 +3694 +846 +1161 +3752 +191 +4171 +2532 +181 +3361 +4422 +1063 +1163 +3778 +1096 +4412 +235 +3756 +2112 +3588 +5056 +5119 +3004 +846 +1453 +1484 +1909 +1484 +2532 +932 +1909 +932 +5037 +4578 +3173 +2532 +2596 +5117 +3061 +2532 +3042 +1510 +5037 +5400 +2532 +575 +3772 +4592 +3173 +1510 +1161 +4253 +3778 +3956 +1911 +1909 +4771 +3588 +5495 +846 +2532 +1377 +3860 +1519 +3588 +4864 +2532 +5438 +520 +1909 +935 +2532 +2232 +1752 +3588 +3686 +1473 +576 +4771 +1519 +3142 +3767 +5087 +1722 +3588 +2588 +4771 +3361 +4304 +626 +1063 +1473 +1325 +4771 +4750 +2532 +4678 +3739 +3756 +1410 +436 +2228 +483 +537 +3588 +480 +4771 +1161 +3860 +2532 +5259 +1118 +2532 +80 +2532 +4773 +2532 +5384 +2532 +2289 +1537 +4771 +2532 +1510 +3404 +5259 +3956 +1223 +3588 +3686 +1473 +2532 +2359 +1537 +3588 +2776 +4771 +3756 +3361 +622 +1722 +3588 +5281 +4771 +2932 +3588 +5590 +4771 +1161 +3752 +3708 +2944 +5259 +4760 +2419 +5119 +1097 +3754 +1448 +3588 +2050 +846 +5119 +3588 +1722 +3588 +2449 +5343 +1519 +3588 +3735 +2532 +3588 +1722 +3319 +846 +1633 +2532 +3588 +1722 +3588 +5561 +3361 +1525 +1519 +846 +3754 +2250 +1557 +3778 +1510 +3588 +4130 +3956 +3588 +1125 +3759 +3588 +1722 +1064 +2192 +2532 +3588 +2337 +1722 +1565 +3588 +2250 +1063 +1510 +318 +3173 +1909 +3588 +1093 +2532 +3709 +3588 +2992 +3778 +2532 +4098 +4750 +3162 +2532 +163 +1519 +3588 +1484 +3956 +2532 +2419 +1510 +3961 +5259 +1484 +891 +3739 +4137 +2540 +1484 +2532 +1510 +4592 +1722 +2246 +2532 +4582 +2532 +798 +2532 +1909 +3588 +1093 +4928 +1484 +1722 +640 +2279 +2281 +2532 +4535 +674 +444 +575 +5401 +2532 +4329 +3588 +1904 +3588 +3625 +1063 +3588 +1411 +3588 +3772 +4531 +2532 +5119 +3708 +3588 +5207 +3588 +444 +2064 +1722 +3507 +3326 +1411 +2532 +1391 +4183 +1161 +756 +3778 +1096 +352 +2532 +1869 +3588 +2776 +4771 +1360 +1448 +3588 +629 +4771 +2532 +3004 +3850 +846 +3708 +3588 +4808 +2532 +3956 +3588 +1186 +3752 +4261 +2235 +991 +575 +1438 +1097 +3754 +2235 +1451 +3588 +2330 +1510 +3779 +2532 +4771 +3752 +3708 +3778 +1096 +1097 +3754 +1451 +1510 +3588 +932 +3588 +2316 +281 +3004 +4771 +3754 +3756 +3361 +3928 +3588 +1074 +3778 +2193 +302 +3956 +1096 +3588 +3772 +2532 +3588 +1093 +3928 +1161 +3588 +3056 +1473 +3756 +3361 +3928 +1161 +4337 +1438 +3361 +4218 +916 +4771 +3588 +2588 +1722 +2897 +2532 +3178 +2532 +3308 +982 +2532 +2186 +1909 +4771 +160 +3588 +2250 +1565 +5613 +3803 +1063 +1904 +1909 +3956 +3588 +2521 +1909 +4383 +3956 +3588 +1093 +1161 +69 +1722 +3956 +2540 +1189 +2443 +2729 +1628 +3778 +3956 +3588 +3195 +1096 +2532 +2476 +1715 +3588 +5207 +3588 +444 +1161 +1510 +1321 +3588 +2250 +1722 +3588 +2411 +1161 +3588 +3571 +1831 +835 +1519 +3588 +3735 +3588 +2564 +1636 +2532 +3956 +3588 +2992 +3719 +4314 +846 +1722 +3588 +2411 +191 +846 +1161 +1448 +3588 +1859 +3588 +106 +3588 +3004 +3957 +2532 +2212 +3588 +749 +2532 +3588 +1122 +3588 +4459 +337 +846 +1063 +5399 +3588 +2992 +1161 +1525 +4567 +1519 +2455 +3588 +2564 +2469 +1510 +1537 +3588 +706 +3588 +1427 +2532 +565 +4814 +3588 +749 +2532 +4755 +3588 +4459 +846 +3860 +846 +2532 +5463 +2532 +4934 +846 +694 +1325 +2532 +1843 +2532 +2212 +2120 +3588 +3860 +846 +817 +3793 +846 +1161 +2064 +3588 +2250 +3588 +106 +3739 +1163 +2380 +3588 +3957 +2532 +649 +4074 +2532 +2491 +3004 +4198 +2090 +1473 +3588 +3957 +2443 +5315 +1161 +3588 +3004 +846 +2309 +4226 +2090 +1161 +3588 +3004 +846 +3708 +1525 +4771 +1519 +3588 +4172 +4876 +4771 +444 +2765 +5204 +941 +190 +846 +1519 +3588 +3614 +1519 +3739 +1531 +2532 +2046 +3588 +3617 +3588 +3614 +3004 +4771 +3588 +1320 +4226 +1510 +3588 +2646 +3699 +3588 +3957 +3326 +3588 +3101 +1473 +5315 +2548 +4771 +1166 +508 +3173 +4766 +1563 +2090 +1161 +565 +2147 +2531 +2046 +846 +2532 +2090 +3588 +3957 +2532 +3753 +1096 +3588 +5610 +377 +2532 +3588 +652 +4862 +846 +2532 +3004 +4314 +846 +1939 +1937 +3778 +3588 +3957 +5315 +3326 +4771 +4253 +3588 +1473 +3958 +1063 +3004 +4771 +3754 +3765 +3756 +3361 +5315 +846 +2193 +3755 +4137 +1722 +3588 +932 +3588 +2316 +2532 +1209 +4221 +2168 +3004 +2983 +3778 +2532 +1266 +1519 +1438 +1063 +3004 +4771 +3756 +3361 +4095 +575 +3588 +3568 +575 +3588 +1081 +3588 +288 +2193 +3739 +3588 +932 +3588 +2316 +2064 +2532 +2983 +740 +2168 +2806 +2532 +1325 +846 +3004 +3778 +1510 +3588 +4983 +1473 +3588 +5228 +4771 +1325 +3778 +4160 +1519 +3588 +1699 +364 +2532 +3588 +4221 +5615 +3326 +3588 +1172 +3004 +3588 +2537 +1242 +1722 +3588 +129 +1473 +3778 +3588 +4221 +3588 +5228 +4771 +1632 +4133 +3708 +3588 +5495 +3588 +3860 +1473 +3326 +1473 +1909 +3588 +5132 +3754 +3303 +3588 +5207 +3588 +444 +2596 +3588 +3724 +4198 +4133 +3759 +3588 +444 +1565 +1223 +3739 +3860 +2532 +846 +756 +4802 +4314 +1438 +3588 +686 +5101 +1510 +1537 +846 +3588 +3778 +4238 +3195 +1161 +1096 +1722 +846 +2532 +5379 +3588 +5101 +846 +1380 +1510 +3173 +1161 +3588 +3004 +846 +3588 +935 +3588 +1484 +2961 +846 +2532 +3588 +1850 +846 +2110 +2564 +1161 +4771 +3756 +3779 +235 +3588 +3173 +1722 +4771 +1096 +5613 +3588 +3501 +2532 +3588 +2233 +5613 +3588 +1247 +1063 +5101 +3173 +3588 +345 +2228 +3588 +1247 +3780 +3588 +345 +1161 +1473 +1722 +3319 +4771 +1510 +5613 +3588 +1247 +1161 +4771 +1510 +3588 +1265 +3326 +1473 +1722 +3588 +3986 +1473 +2504 +1303 +4771 +2531 +1303 +1473 +3588 +3962 +1473 +932 +2443 +2068 +2532 +4095 +1909 +3588 +5132 +1473 +1722 +3588 +932 +1473 +2532 +2521 +1909 +2362 +3588 +1427 +5443 +3588 +2474 +2919 +4613 +4613 +3708 +3588 +4567 +1809 +4771 +3588 +4617 +5613 +3588 +4621 +1161 +1473 +1189 +4012 +4771 +2443 +3361 +1587 +3588 +4102 +4771 +2532 +4771 +4218 +1994 +4741 +3588 +80 +4771 +1161 +3588 +3004 +846 +2962 +3326 +4771 +2092 +1510 +2532 +1519 +5438 +2532 +1519 +2288 +4198 +1161 +3588 +3004 +3004 +4771 +4074 +3756 +5455 +4594 +220 +2193 +5151 +1473 +3361 +1492 +533 +2532 +3004 +846 +3753 +649 +4771 +817 +905 +2532 +4082 +2532 +5266 +3361 +5100 +5302 +1161 +3588 +3004 +3762 +1161 +3004 +846 +235 +3568 +3588 +2192 +905 +142 +3668 +2532 +4082 +2532 +3588 +3361 +2192 +4453 +3588 +2440 +846 +2532 +59 +3162 +1063 +3004 +4771 +3754 +1163 +3778 +3588 +1125 +3588 +2532 +3326 +459 +3049 +5055 +1722 +1473 +1063 +2532 +3588 +4012 +1473 +5056 +2192 +1161 +3588 +3004 +2962 +3708 +3162 +5602 +1417 +1161 +3588 +3004 +846 +2425 +1510 +2532 +1831 +4198 +2596 +3588 +1485 +1519 +3588 +3735 +3588 +1636 +1161 +190 +846 +2532 +3588 +3101 +1161 +1096 +1909 +3588 +5117 +3004 +846 +4336 +3361 +1525 +1519 +3986 +2532 +846 +645 +575 +846 +5616 +3037 +1000 +2532 +5087 +3588 +1119 +4336 +3004 +3962 +1487 +1014 +3911 +3778 +3588 +4221 +575 +1473 +4133 +3361 +3588 +2307 +1473 +235 +3588 +4674 +1096 +1161 +3708 +846 +32 +575 +3772 +1765 +846 +2532 +1096 +1722 +74 +1617 +4336 +2532 +1096 +3588 +2402 +846 +5616 +2361 +129 +2597 +1909 +3588 +1093 +2532 +450 +575 +3588 +4335 +2064 +4314 +3588 +3101 +2147 +2837 +846 +575 +3588 +3077 +2532 +3004 +846 +5101 +2518 +450 +4336 +2443 +3361 +1525 +1519 +3986 +2089 +846 +2980 +3708 +3793 +2532 +3588 +3004 +2455 +1520 +3588 +1427 +4281 +846 +2532 +1448 +3588 +2424 +5368 +846 +1161 +2424 +3004 +846 +2455 +5370 +3588 +5207 +3588 +444 +3860 +1161 +3588 +4012 +846 +3708 +3588 +1510 +3004 +2962 +1487 +3960 +1722 +3162 +2532 +3960 +1520 +5100 +1537 +846 +3588 +749 +3588 +1401 +2532 +851 +3588 +3775 +846 +3588 +1188 +1161 +611 +3588 +2424 +3004 +1439 +2193 +3778 +2532 +680 +3588 +5621 +2390 +846 +1161 +3004 +2424 +4314 +3588 +3854 +1909 +846 +749 +2532 +4755 +3588 +2411 +2532 +4245 +5613 +1909 +3027 +1831 +3326 +3162 +2532 +3586 +2596 +2250 +1510 +1473 +3326 +4771 +1722 +3588 +2411 +3756 +1614 +3588 +5495 +1909 +1473 +235 +3778 +1510 +4771 +3588 +5610 +2532 +3588 +1849 +3588 +4655 +1161 +4815 +846 +71 +2532 +1521 +1519 +3588 +3614 +3588 +749 +1161 +3588 +4074 +190 +3113 +1161 +681 +4442 +1722 +3319 +3588 +833 +2532 +4776 +2521 +3588 +4074 +3319 +846 +1161 +3814 +5100 +3708 +846 +2521 +4314 +3588 +5457 +2532 +816 +846 +3004 +2532 +3778 +4862 +846 +1510 +1161 +3588 +720 +3004 +3756 +1492 +846 +1135 +2532 +3326 +1024 +2087 +3708 +846 +5346 +2532 +4771 +1537 +846 +1510 +1161 +3588 +4074 +5346 +444 +3756 +1510 +2532 +1339 +5616 +5610 +1520 +243 +5100 +1340 +3004 +1909 +225 +2532 +3778 +3326 +846 +1510 +1063 +2532 +1057 +1510 +1161 +3004 +3588 +4074 +444 +3756 +1492 +3739 +3004 +2532 +3916 +2089 +2980 +846 +5455 +220 +2532 +4762 +3588 +2962 +1689 +3588 +4074 +2532 +5279 +3588 +4074 +3588 +3056 +3588 +2962 +5613 +3004 +846 +3754 +4250 +220 +5455 +4594 +533 +1473 +5151 +2532 +1831 +1854 +2799 +4090 +2532 +3588 +435 +3588 +4912 +846 +1702 +846 +1194 +2532 +4028 +846 +1905 +3004 +4395 +5101 +1510 +3588 +3817 +4771 +2532 +2087 +4183 +3004 +987 +1519 +846 +2532 +5613 +1096 +2250 +4863 +3588 +4244 +3588 +2992 +5037 +749 +2532 +1122 +2532 +520 +846 +1519 +3588 +4892 +846 +3004 +1487 +4771 +1510 +3588 +5547 +3004 +1473 +1161 +3004 +846 +1437 +4771 +3004 +3756 +3361 +4100 +1161 +1437 +2065 +3756 +3361 +611 +1161 +575 +3588 +3568 +1510 +2521 +3588 +5207 +3588 +444 +1537 +1188 +3588 +1411 +3588 +2316 +1161 +3004 +3956 +3767 +4771 +1510 +3588 +5207 +3588 +2316 +1161 +3588 +4314 +846 +5346 +4771 +3004 +3754 +1473 +1510 +1161 +3588 +3004 +5101 +2089 +2192 +3141 +5532 +1063 +846 +191 +575 +3588 +4750 +846 +2532 +450 +537 +3588 +4128 +846 +71 +846 +1909 +3588 +4091 +1161 +756 +2723 +846 +3004 +2147 +3778 +1294 +3588 +1484 +1473 +2532 +2967 +5411 +2541 +1325 +2532 +3004 +1438 +5547 +935 +1510 +1161 +3588 +4091 +2065 +846 +3004 +4771 +1510 +3588 +935 +3588 +2453 +1161 +3588 +611 +846 +5346 +4771 +3004 +1161 +3588 +4091 +3004 +4314 +3588 +749 +2532 +3588 +3793 +3762 +2147 +159 +1722 +3588 +444 +3778 +1161 +3588 +2001 +3004 +3754 +383 +3588 +2992 +1321 +2596 +3650 +3588 +2449 +2532 +756 +575 +3588 +1056 +2193 +5602 +1161 +4091 +191 +1905 +1487 +3588 +444 +1057 +1510 +2532 +1921 +3754 +1537 +3588 +1849 +2264 +1510 +375 +846 +4314 +2264 +1510 +2532 +846 +1722 +2414 +1722 +3778 +3588 +2250 +1161 +3588 +2264 +3708 +3588 +2424 +5463 +3029 +1063 +1510 +2309 +1537 +2425 +5550 +3708 +846 +1223 +3588 +191 +4012 +846 +2532 +1679 +3708 +5100 +4592 +5259 +846 +1096 +1161 +1905 +846 +1722 +3056 +2425 +1161 +846 +3762 +611 +846 +1161 +2476 +3588 +749 +2532 +3588 +1122 +2159 +2723 +846 +1161 +3588 +2264 +1848 +846 +4862 +3588 +4753 +846 +2532 +1702 +4016 +2066 +2986 +375 +846 +3588 +4091 +1161 +1096 +5384 +5037 +3588 +2264 +2532 +3588 +4091 +1722 +846 +3588 +2250 +3326 +240 +1063 +4391 +1722 +2189 +1510 +4314 +846 +1161 +4091 +4779 +3588 +749 +2532 +3588 +758 +2532 +3588 +2992 +3004 +4314 +846 +4374 +1473 +3588 +444 +3778 +5613 +654 +3588 +2992 +2532 +3708 +1473 +1799 +4771 +350 +3762 +2147 +1722 +3588 +444 +3778 +159 +3739 +2723 +2596 +846 +235 +3761 +2264 +1063 +375 +846 +4314 +1473 +2532 +3708 +3762 +514 +2288 +1510 +4238 +846 +3767 +3811 +846 +630 +1161 +349 +3826 +3004 +142 +3778 +1161 +630 +1473 +3588 +912 +3748 +1510 +906 +1223 +4714 +5100 +1096 +1722 +3588 +4172 +2532 +5408 +1722 +3588 +5438 +1161 +3825 +3588 +4091 +4377 +846 +2309 +630 +3588 +2424 +1161 +3588 +2019 +3004 +4717 +4717 +846 +1161 +3588 +5154 +3004 +4314 +846 +1063 +5101 +2556 +4160 +3778 +3762 +159 +2288 +2147 +1722 +846 +3767 +3811 +846 +630 +1161 +3588 +1945 +5456 +3173 +154 +846 +4717 +2532 +2729 +3588 +5456 +846 +2532 +4091 +1948 +1096 +3588 +155 +846 +1161 +630 +3588 +1223 +4714 +2532 +5408 +906 +1519 +5438 +3739 +154 +1161 +3588 +2424 +3860 +3588 +2307 +846 +2532 +5613 +520 +846 +1949 +4613 +5100 +2956 +2064 +575 +68 +2007 +846 +3588 +4716 +5342 +3693 +3588 +2424 +1161 +190 +846 +4183 +4128 +3588 +2992 +2532 +1135 +3739 +2875 +2532 +2354 +846 +1161 +4762 +4314 +846 +2424 +3004 +2364 +2419 +3361 +2799 +1909 +1473 +4133 +1909 +1438 +2799 +2532 +1909 +3588 +5043 +4771 +3754 +3708 +2064 +2250 +1722 +3739 +2046 +3107 +3588 +4723 +2532 +3588 +2836 +3739 +3756 +1080 +2532 +3149 +3739 +3756 +5142 +5119 +756 +3004 +3588 +3735 +4098 +1909 +1473 +2532 +3588 +1015 +2572 +1473 +3754 +1487 +1722 +5200 +3586 +3778 +4160 +1722 +3588 +3584 +5101 +1096 +1161 +71 +2532 +2087 +2557 +1417 +4862 +846 +337 +2532 +3753 +2064 +1909 +3588 +5117 +3588 +2564 +2898 +1563 +4717 +846 +2532 +3588 +2557 +3303 +3739 +1537 +1188 +1161 +3739 +1537 +710 +1161 +3588 +2424 +3004 +3962 +863 +846 +1063 +3756 +1492 +5101 +4160 +1161 +1266 +3588 +2440 +846 +906 +2819 +2532 +2476 +3588 +2992 +2334 +1161 +1592 +2532 +3588 +758 +3004 +243 +4982 +4982 +1438 +1487 +3778 +1510 +3588 +5547 +3588 +2316 +3588 +1588 +1161 +1702 +846 +2532 +3588 +4757 +4334 +3690 +4374 +846 +2532 +3004 +1487 +4771 +1510 +3588 +935 +3588 +2453 +4982 +4572 +1161 +1510 +2532 +1923 +1909 +846 +3588 +935 +3588 +2453 +3778 +1161 +1520 +3588 +2910 +2557 +987 +846 +3780 +4771 +1510 +3588 +5547 +4982 +4572 +2532 +1473 +1161 +611 +3588 +2087 +2008 +846 +5346 +3761 +5399 +4771 +3588 +2316 +3754 +1722 +3588 +846 +2917 +1510 +2532 +3303 +1473 +1346 +1063 +514 +3739 +4238 +618 +1161 +3778 +3762 +824 +4238 +2532 +3004 +2424 +3403 +1473 +3752 +2064 +1519 +3588 +932 +4771 +2532 +3004 +846 +281 +4771 +3004 +4594 +3326 +1473 +1510 +1722 +3588 +3857 +2532 +1510 +2235 +5616 +5610 +1623 +2532 +4655 +1096 +1909 +3650 +3588 +1093 +2193 +5610 +1766 +3588 +2246 +1587 +1161 +4977 +3588 +2665 +3588 +3485 +3319 +2532 +5455 +5456 +3173 +3588 +2424 +3004 +3962 +1519 +5495 +4771 +3908 +3588 +4151 +1473 +1161 +3778 +3004 +1606 +1161 +3588 +1543 +3708 +3588 +1096 +1392 +3588 +2316 +3004 +3689 +3588 +444 +3778 +1342 +1510 +2532 +3956 +3588 +4836 +1909 +3588 +2335 +3778 +3793 +2334 +3588 +1096 +5180 +3588 +4738 +5290 +1161 +2476 +575 +3113 +3956 +3588 +1110 +846 +2532 +1135 +3588 +4870 +846 +575 +3588 +1056 +3708 +3778 +2532 +3708 +435 +3686 +2501 +5225 +1010 +435 +18 +2532 +1342 +3778 +3756 +1510 +4784 +3588 +1012 +2532 +3588 +4234 +846 +575 +707 +4172 +3588 +2453 +3739 +4327 +3588 +932 +3588 +2316 +3778 +4334 +3588 +4091 +154 +3588 +4983 +3588 +2424 +2532 +2507 +1794 +846 +4616 +2532 +5087 +846 +1722 +3418 +2991 +3757 +3756 +1510 +2749 +3762 +3768 +2532 +2250 +3904 +1510 +2532 +4521 +2020 +1161 +2628 +3588 +1135 +3748 +1510 +4905 +1537 +3588 +1056 +846 +2300 +3588 +3419 +2532 +5613 +5087 +3588 +4983 +846 +1161 +5290 +2090 +759 +2532 +3464 +2532 +3303 +3588 +4521 +2270 +2596 +3588 +1785 +1161 +3588 +1520 +3588 +4521 +3722 +901 +1909 +3588 +3418 +2064 +5342 +3739 +2090 +759 +1161 +2147 +3588 +3037 +617 +575 +3588 +3419 +1161 +1525 +3756 +2147 +3588 +4983 +3588 +2962 +2424 +2532 +1096 +1722 +3588 +639 +846 +4012 +3778 +2532 +3708 +435 +1417 +2186 +846 +1722 +2066 +797 +1161 +1719 +1096 +846 +2532 +2827 +3588 +4383 +1519 +3588 +1093 +3004 +4314 +846 +5101 +2212 +3588 +2198 +3326 +3588 +3498 +3756 +1510 +5602 +235 +1453 +3403 +5613 +2980 +4771 +2089 +1510 +1722 +3588 +1056 +3004 +3754 +1163 +3588 +5207 +3588 +444 +3860 +1519 +5495 +444 +268 +2532 +4717 +2532 +3588 +5154 +2250 +450 +2532 +3403 +3588 +4487 +846 +2532 +5290 +575 +3588 +3419 +518 +3778 +3956 +3588 +1733 +2532 +3956 +3588 +3062 +1161 +1510 +3588 +3094 +3137 +2532 +2489 +2532 +3137 +3588 +2385 +2532 +3588 +3062 +4862 +846 +3004 +4314 +3588 +652 +3778 +2532 +5316 +1799 +846 +5616 +3026 +3588 +4487 +3778 +2532 +569 +846 +1161 +3588 +4074 +450 +5143 +1909 +3588 +3419 +2532 +3879 +991 +3588 +3608 +3441 +2532 +565 +4314 +846 +2296 +3588 +1096 +2532 +3708 +1417 +1537 +846 +1722 +846 +3588 +2250 +1510 +4198 +1519 +2968 +568 +4712 +1835 +575 +2419 +3739 +3686 +1695 +2532 +846 +3656 +4314 +240 +4012 +3956 +3588 +4819 +3778 +2532 +1096 +1722 +3588 +3656 +846 +2532 +4802 +2532 +846 +2424 +1448 +4848 +846 +1161 +3588 +3788 +846 +2902 +3588 +3361 +1921 +846 +1161 +3004 +4314 +846 +5101 +3588 +3056 +3778 +3739 +474 +4314 +240 +4043 +2532 +2476 +4659 +1161 +611 +1520 +3686 +2810 +3004 +4314 +846 +4771 +3441 +3939 +2419 +2532 +3756 +1097 +3588 +1096 +1722 +846 +1722 +3588 +2250 +3778 +2532 +3004 +846 +4169 +1161 +3588 +3004 +846 +3588 +4012 +2424 +3588 +3479 +3739 +1096 +435 +4396 +1415 +1722 +2041 +2532 +3056 +1726 +3588 +2316 +2532 +3956 +3588 +2992 +5037 +3704 +3860 +846 +3588 +749 +2532 +3588 +758 +1473 +1519 +2917 +2288 +2532 +4717 +846 +1161 +1473 +1679 +3754 +846 +1510 +3588 +3195 +3084 +3588 +2474 +235 +1065 +2532 +4862 +3956 +3778 +5154 +3778 +2250 +71 +575 +3739 +3778 +1096 +235 +2532 +1135 +5100 +1537 +1473 +1839 +1473 +1096 +3720 +1909 +3588 +3419 +2532 +3361 +2147 +3588 +4983 +846 +2064 +3004 +2532 +3701 +32 +3708 +3739 +3004 +846 +2198 +2532 +565 +5100 +3588 +4862 +1473 +1909 +3588 +3419 +2532 +2147 +3779 +2531 +2532 +3588 +1135 +3004 +1161 +846 +3756 +3708 +2532 +846 +3004 +4314 +846 +5599 +453 +2532 +1021 +3588 +2588 +3588 +4100 +1909 +3956 +3739 +2980 +3588 +4396 +3780 +1163 +3778 +3958 +3588 +5547 +2532 +1525 +1519 +3588 +1391 +846 +2532 +756 +575 +3475 +2532 +575 +3956 +3588 +4396 +1329 +846 +1722 +3956 +3588 +1124 +3588 +4012 +1438 +2532 +1448 +1519 +3588 +2968 +3757 +4198 +2532 +846 +4364 +4206 +4198 +2532 +3849 +846 +3004 +3306 +3326 +1473 +3754 +4314 +2073 +1510 +2532 +2827 +2235 +3588 +2250 +2532 +1525 +3588 +3306 +4862 +846 +2532 +1096 +1722 +3588 +2625 +846 +3326 +846 +2983 +3588 +740 +2127 +2532 +2806 +1929 +846 +1161 +846 +3588 +3788 +1272 +2532 +1921 +846 +2532 +846 +855 +1096 +575 +846 +2532 +3004 +4314 +240 +3780 +3588 +2588 +1473 +2545 +1510 +1722 +1473 +5613 +2980 +1473 +1722 +3588 +3598 +5613 +1272 +1473 +3588 +1124 +2532 +450 +846 +3588 +5610 +5290 +1519 +2419 +2532 +2147 +4867 +3588 +1733 +2532 +3588 +4862 +846 +3004 +3754 +3689 +1453 +3588 +2962 +2532 +3708 +4613 +2532 +846 +1834 +3588 +1722 +3588 +3598 +2532 +5613 +1097 +846 +1722 +3588 +2800 +3588 +740 +1161 +3778 +846 +2980 +846 +2476 +1722 +3319 +846 +2532 +3004 +846 +1515 +4771 +1161 +4422 +2532 +1719 +1096 +1380 +4151 +2334 +2532 +3004 +846 +5101 +5015 +1510 +2532 +1223 +5101 +1261 +305 +1722 +3588 +2588 +4771 +3708 +3588 +5495 +1473 +2532 +3588 +4228 +1473 +3754 +1473 +1510 +846 +5584 +1473 +2532 +3708 +3754 +4151 +4561 +2532 +3747 +3756 +2192 +2531 +1473 +2192 +2334 +2532 +3778 +3004 +1166 +846 +3588 +5495 +2532 +3588 +4228 +1161 +2089 +569 +846 +575 +3588 +5479 +2532 +2296 +3004 +846 +2192 +5100 +1034 +1759 +1161 +3588 +1929 +846 +2486 +3702 +3313 +2532 +2983 +1799 +846 +5315 +1161 +3004 +4314 +846 +3778 +3588 +3056 +1473 +3739 +2980 +4314 +4771 +2089 +1510 +4862 +4771 +3754 +1163 +4137 +3956 +3588 +1125 +1722 +3588 +3551 +3475 +2532 +3588 +4396 +2532 +5568 +4012 +1473 +5119 +1272 +846 +3588 +3563 +3588 +4920 +3588 +1124 +2532 +3004 +846 +3754 +3779 +1125 +3958 +3588 +5547 +2532 +450 +1537 +3498 +3588 +5154 +2250 +2532 +2784 +1909 +3588 +3686 +846 +3341 +1519 +859 +266 +1519 +3956 +3588 +1484 +756 +575 +2419 +4771 +3144 +3778 +2532 +3708 +1473 +1821 +3588 +1860 +3588 +3962 +1473 +1909 +4771 +1161 +4771 +2523 +1722 +3588 +4172 +2193 +3739 +1746 +1537 +5311 +1411 +1161 +1806 +846 +2193 +4314 +963 +2532 +1869 +3588 +5495 +846 +2127 +846 +2532 +1096 +1722 +3588 +2127 +846 +846 +1339 +575 +846 +2532 +399 +1519 +3588 +3772 +2532 +846 +4352 +846 +5290 +1519 +2419 +3326 +5479 +3173 +2532 +1510 +2127 +1223 +3956 +1722 +3588 +2411 +3588 +2316 +1722 +746 +1510 +3588 +3056 +2532 +3588 +3056 +1510 +4314 +3588 +2316 +2532 +2316 +1510 +3588 +3056 +3778 +1510 +1722 +746 +4314 +3588 +2316 +3956 +1223 +846 +1096 +2532 +5565 +846 +1096 +3761 +1520 +3739 +1096 +1722 +846 +2222 +1510 +2532 +3588 +2222 +1510 +3588 +5457 +3588 +444 +2532 +3588 +5457 +1722 +3588 +4653 +5316 +2532 +3588 +4653 +846 +3756 +2638 +1096 +444 +649 +3844 +2316 +3686 +846 +2491 +3778 +2064 +1519 +3141 +2443 +3140 +4012 +3588 +5457 +2443 +3956 +4100 +1223 +846 +3756 +1510 +1565 +3588 +5457 +235 +2443 +3140 +4012 +3588 +5457 +3588 +5457 +3588 +228 +3739 +5461 +3956 +444 +1510 +2064 +1519 +3588 +2889 +1722 +3588 +2889 +1510 +2532 +3588 +2889 +1223 +846 +1096 +2532 +3588 +2889 +846 +3756 +1097 +1519 +3588 +2398 +2064 +2532 +3588 +2398 +846 +3756 +3880 +1161 +3745 +2983 +846 +1325 +1849 +5043 +2316 +1096 +846 +3588 +4100 +1519 +3588 +3686 +846 +3739 +3756 +1537 +129 +3761 +1537 +2307 +4561 +3761 +1537 +2307 +435 +235 +1537 +2316 +1080 +2532 +3588 +3056 +4561 +1096 +2532 +4637 +1722 +1473 +2532 +2300 +3588 +1391 +846 +1391 +5613 +3439 +3844 +3962 +4134 +5485 +2532 +225 +2491 +3140 +4012 +846 +2532 +2896 +3004 +3778 +1510 +3739 +3004 +3588 +3694 +1473 +2064 +1715 +1473 +1096 +3754 +4413 +1473 +1510 +3754 +1537 +3588 +4138 +846 +1473 +3956 +2983 +2532 +5485 +473 +5485 +3754 +3588 +3551 +1223 +3475 +1325 +3588 +5485 +2532 +3588 +225 +1223 +2424 +5547 +1096 +2316 +3762 +3708 +4455 +3439 +2316 +3588 +1510 +1519 +3588 +2859 +3588 +3962 +1565 +1834 +2532 +3778 +1510 +3588 +3141 +3588 +2491 +3753 +649 +4314 +846 +3588 +2453 +1537 +2414 +2409 +2532 +3019 +2443 +2065 +846 +4771 +5101 +1510 +2532 +3670 +2532 +3756 +720 +2532 +3670 +3754 +1473 +3756 +1510 +3588 +5547 +2532 +2065 +846 +3767 +5101 +4771 +2243 +1510 +2532 +3004 +3756 +1510 +3588 +4396 +1510 +4771 +2532 +611 +3756 +3767 +3004 +846 +5101 +1510 +2443 +612 +1325 +3588 +3992 +1473 +5101 +3004 +4012 +4572 +5346 +1473 +5456 +994 +1722 +3588 +2048 +2116 +3588 +3598 +2962 +2531 +3004 +2268 +3588 +4396 +2532 +649 +1510 +1537 +3588 +5330 +2532 +2065 +846 +2532 +3004 +846 +3767 +5101 +907 +1487 +4771 +3756 +1510 +3588 +5547 +3761 +2243 +3761 +3588 +4396 +611 +846 +3588 +2491 +3004 +1473 +907 +1722 +5204 +3319 +4771 +4739 +3739 +4771 +3756 +1492 +3588 +3694 +1473 +2064 +3739 +3756 +1510 +1473 +514 +2443 +3089 +846 +3588 +2438 +3588 +5266 +3778 +1722 +963 +1096 +4008 +3588 +2446 +3699 +1510 +907 +3588 +2491 +3588 +1887 +991 +3588 +2424 +2064 +4314 +846 +2532 +3004 +3708 +3588 +286 +3588 +2316 +3588 +142 +3588 +266 +3588 +2889 +3778 +1510 +5228 +3739 +1473 +3004 +3694 +1473 +2064 +435 +3739 +1715 +1473 +1096 +3754 +4413 +1473 +1510 +2504 +3756 +1492 +846 +235 +2443 +5319 +3588 +2474 +1223 +3778 +2064 +1473 +1722 +5204 +907 +2532 +3140 +2491 +3004 +3754 +2300 +3588 +4151 +2597 +5613 +4058 +1537 +3772 +2532 +3306 +1909 +846 +2504 +3756 +1492 +846 +235 +3588 +3992 +1473 +907 +1722 +5204 +1565 +1473 +3004 +302 +1909 +3739 +3708 +3588 +4151 +2597 +2532 +3306 +1909 +846 +3778 +1510 +3588 +907 +1722 +4151 +40 +2504 +3708 +2532 +3140 +3754 +3778 +1510 +3588 +5207 +3588 +2316 +3588 +1887 +3825 +2476 +3588 +2491 +2532 +1537 +3588 +3101 +846 +1417 +2532 +1689 +3588 +2424 +4043 +3004 +3708 +3588 +286 +3588 +2316 +2532 +191 +3588 +1417 +3101 +846 +2980 +2532 +190 +3588 +2424 +1161 +3588 +2424 +4762 +2532 +2300 +846 +190 +3004 +846 +5101 +2212 +1161 +3588 +3004 +846 +4461 +3739 +3004 +3177 +1320 +4226 +3306 +3004 +846 +2064 +2532 +3708 +3767 +2064 +2532 +3708 +4226 +3306 +2532 +3844 +846 +3306 +3588 +2250 +1565 +5610 +1510 +5613 +1182 +1510 +406 +3588 +80 +4613 +4074 +1520 +1537 +3588 +1417 +3588 +191 +3844 +2491 +2532 +190 +846 +2147 +3778 +4412 +3588 +80 +3588 +2398 +4613 +2532 +3004 +846 +2147 +3588 +3323 +3739 +1510 +3177 +5547 +71 +846 +4314 +3588 +2424 +1689 +846 +3588 +2424 +3004 +4771 +1510 +4613 +3588 +5207 +2491 +4771 +2564 +2786 +3739 +2059 +4074 +3588 +1887 +2309 +1831 +1519 +3588 +1056 +2532 +2147 +5376 +2532 +3004 +846 +3588 +2424 +190 +1473 +1161 +1510 +3588 +5376 +575 +966 +1537 +3588 +4172 +406 +2532 +4074 +2147 +5376 +3588 +3482 +2532 +3004 +846 +3739 +1125 +3475 +1722 +3588 +3551 +2532 +3588 +4396 +2147 +2424 +5207 +3588 +2501 +3588 +575 +3478 +2532 +3004 +846 +3482 +1537 +3478 +1510 +1410 +5100 +18 +3004 +846 +3588 +5376 +2064 +2532 +3708 +3708 +2424 +3588 +3482 +2064 +4314 +846 +2532 +3004 +4012 +846 +3708 +230 +2475 +1722 +3739 +1388 +3756 +1510 +3004 +846 +3482 +4159 +1473 +1097 +611 +2424 +2532 +3004 +846 +4253 +3588 +4771 +5376 +5455 +1510 +5259 +3588 +4808 +4771 +3708 +611 +846 +3482 +4461 +4771 +1510 +3588 +5207 +3588 +2316 +4771 +935 +3588 +2474 +1510 +611 +2424 +2532 +3004 +846 +3754 +3004 +4771 +3754 +3708 +4771 +5270 +3588 +4808 +4100 +3173 +3778 +3708 +2532 +3004 +846 +281 +281 +3004 +4771 +3708 +3588 +3772 +455 +2532 +3588 +32 +3588 +2316 +305 +2532 +2597 +1909 +3588 +5207 +3588 +444 +2532 +3588 +2250 +3588 +5154 +1062 +1096 +1722 +2580 +3588 +1056 +2532 +1510 +3588 +3384 +3588 +2424 +1563 +1161 +2564 +2532 +3588 +2424 +2532 +3588 +3101 +846 +1519 +3588 +1062 +2532 +5302 +3631 +3004 +3588 +3384 +3588 +2424 +4314 +846 +3631 +3756 +2192 +2532 +3004 +846 +3588 +2424 +5101 +1473 +2532 +4771 +1135 +3768 +2240 +3588 +5610 +1473 +3004 +3588 +3384 +846 +3588 +1249 +5100 +302 +3739 +3004 +4771 +4160 +1161 +1510 +2749 +1563 +3035 +5201 +1803 +2596 +3588 +2512 +3588 +2453 +5562 +303 +3355 +1417 +2228 +5140 +3004 +846 +3588 +2424 +1072 +3588 +5201 +5204 +2532 +1072 +846 +2193 +507 +2532 +3004 +846 +501 +3568 +2532 +5342 +3588 +755 +1161 +3588 +5342 +1161 +5613 +1089 +3588 +755 +3588 +5204 +3631 +1096 +2532 +3756 +1492 +4159 +1510 +1161 +1492 +3588 +1249 +3588 +501 +3588 +5204 +5455 +3588 +3566 +3588 +755 +2532 +3004 +846 +3956 +444 +4412 +3588 +2570 +3631 +5087 +2532 +3752 +3184 +3588 +1640 +4771 +5083 +3588 +2570 +3631 +2193 +737 +3778 +746 +3588 +4592 +4160 +3588 +2424 +1722 +2580 +3588 +1056 +2532 +5319 +3588 +1391 +846 +2532 +4100 +1519 +846 +3588 +3101 +846 +3326 +3778 +2597 +1519 +2584 +846 +2532 +3588 +3384 +846 +2532 +3588 +80 +2532 +3588 +3101 +846 +2532 +1563 +3306 +3756 +4183 +2250 +2532 +1451 +1510 +3588 +3957 +3588 +2453 +2532 +305 +1519 +2414 +3588 +2424 +2532 +2147 +1722 +3588 +2411 +3588 +4453 +1016 +2532 +4263 +2532 +4058 +2532 +3588 +2773 +2521 +2532 +4160 +5416 +1537 +4979 +3956 +1544 +1537 +3588 +2411 +5037 +3588 +4263 +2532 +3588 +1016 +2532 +3588 +2855 +3588 +2772 +1632 +2532 +3588 +5132 +396 +2532 +3588 +3588 +4058 +4453 +3004 +142 +3778 +1782 +3361 +4160 +3588 +3624 +3588 +3962 +1473 +3624 +1712 +3403 +3588 +3101 +846 +3754 +1125 +1510 +3588 +2205 +3588 +3624 +4771 +2719 +1473 +3767 +611 +3588 +2453 +2532 +3004 +846 +5101 +4592 +1166 +1473 +3754 +3778 +4160 +611 +2424 +2532 +3004 +846 +3089 +3588 +3485 +3778 +2532 +1722 +5140 +2250 +1453 +846 +3767 +3004 +3588 +2453 +5062 +2532 +1803 +2094 +3618 +3588 +3485 +3778 +2532 +4771 +1722 +5140 +2250 +1453 +846 +1161 +1565 +3004 +4012 +3588 +3485 +3588 +4983 +846 +3767 +3753 +1453 +1537 +3498 +3403 +3588 +3101 +846 +3754 +3778 +3004 +2532 +4100 +3588 +1124 +2532 +3588 +3056 +3739 +3004 +3588 +2424 +1161 +5613 +1510 +1722 +3588 +2414 +1722 +3588 +3957 +1722 +3588 +1859 +4183 +4100 +1519 +3588 +3686 +846 +2334 +846 +3588 +4592 +3739 +4160 +1161 +846 +2424 +3756 +4100 +846 +846 +1223 +3588 +846 +1097 +3956 +2532 +3754 +3756 +5532 +2192 +2443 +5100 +3140 +4012 +3588 +444 +1063 +846 +1097 +5101 +1510 +1722 +3588 +444 +1161 +1510 +444 +1537 +3588 +5330 +758 +3588 +2453 +3530 +3686 +846 +3778 +2064 +4314 +846 +3571 +2532 +3004 +846 +4461 +1492 +3754 +575 +2316 +2064 +1320 +1063 +3762 +1410 +3778 +3588 +4592 +3739 +4771 +4160 +4160 +1437 +3361 +1510 +3588 +2316 +3326 +846 +611 +2424 +2532 +3004 +846 +281 +281 +3004 +4771 +1437 +3361 +5100 +1080 +509 +3756 +1410 +3708 +3588 +932 +3588 +2316 +3004 +4314 +846 +3588 +3530 +4459 +1410 +444 +1080 +1088 +1510 +3361 +1410 +1519 +3588 +2836 +3588 +3384 +846 +1208 +1525 +2532 +1080 +611 +2424 +281 +281 +3004 +4771 +1437 +3361 +5100 +1080 +1537 +5204 +2532 +4151 +3756 +1410 +1525 +1519 +3588 +932 +3588 +2316 +3588 +1080 +1537 +3588 +4561 +4561 +1510 +2532 +3588 +1080 +1537 +3588 +4151 +4151 +1510 +3361 +2296 +3754 +3004 +4771 +1163 +4771 +1080 +509 +3588 +4151 +3699 +2309 +4154 +2532 +3588 +5456 +846 +191 +235 +3756 +1492 +4159 +2064 +2532 +4226 +5217 +3779 +1510 +3956 +3588 +1080 +1537 +3588 +4151 +611 +3530 +2532 +3004 +846 +4459 +1410 +3778 +1096 +611 +2424 +2532 +3004 +846 +4771 +1510 +3588 +1320 +3588 +2474 +2532 +3778 +3756 +1097 +281 +281 +3004 +4771 +3754 +3739 +1492 +2980 +2532 +3739 +3708 +3140 +2532 +3588 +3141 +1473 +3756 +2983 +1487 +3588 +1919 +3004 +4771 +2532 +3756 +4100 +4459 +1437 +3004 +4771 +3588 +2032 +4100 +2532 +3762 +305 +1519 +3588 +3772 +1487 +3361 +3588 +1537 +3588 +3772 +2597 +3588 +5207 +3588 +444 +2532 +2531 +3475 +5312 +3588 +3789 +1722 +3588 +2048 +3779 +1163 +5312 +3588 +5207 +3588 +444 +2443 +3956 +3588 +4100 +1722 +846 +2192 +2222 +166 +1063 +3779 +25 +3588 +2316 +3588 +2889 +5620 +3588 +5207 +3588 +3439 +1325 +2443 +3956 +3588 +4100 +1519 +846 +3361 +622 +235 +2192 +2222 +166 +1063 +3756 +649 +3588 +2316 +3588 +5207 +1519 +3588 +2889 +2443 +2919 +3588 +2889 +235 +2443 +4982 +3588 +2889 +1223 +846 +3588 +4100 +1519 +846 +3756 +2919 +3588 +3361 +4100 +2235 +2919 +3754 +3361 +4100 +1519 +3588 +3686 +3588 +3439 +5207 +3588 +2316 +1161 +3778 +1510 +3588 +2920 +3754 +3588 +5457 +2064 +1519 +3588 +2889 +2532 +25 +3588 +444 +3123 +3588 +4655 +2228 +3588 +5457 +1063 +1510 +4190 +846 +3588 +2041 +1063 +3956 +3588 +5337 +4238 +3404 +3588 +5457 +2532 +3756 +2064 +4314 +3588 +5457 +2443 +3361 +1651 +3588 +2041 +846 +1161 +3588 +4160 +3588 +225 +2064 +4314 +3588 +5457 +2443 +5319 +846 +3588 +2041 +3754 +1722 +2316 +1510 +2038 +3326 +3778 +2064 +3588 +2424 +2532 +3588 +3101 +846 +1519 +3588 +2453 +1093 +2532 +1563 +1304 +3326 +846 +2532 +907 +1161 +1510 +907 +2532 +2491 +1722 +137 +1451 +3588 +4530 +3754 +5204 +4183 +1510 +1563 +2532 +3854 +2532 +907 +1063 +3768 +1510 +906 +1519 +3588 +5438 +2491 +3767 +1096 +2214 +1537 +3588 +3101 +2491 +3326 +2453 +4012 +2512 +2532 +2064 +4314 +3588 +2491 +2532 +3004 +846 +4461 +3739 +1510 +3326 +4771 +4008 +3588 +2446 +3739 +4771 +3140 +3708 +3778 +907 +2532 +3956 +2064 +4314 +846 +611 +2491 +2532 +3004 +3756 +1410 +444 +2983 +3762 +1437 +3361 +1510 +1325 +846 +1537 +3588 +3772 +846 +4771 +1473 +3140 +3754 +3004 +3756 +1510 +1473 +3588 +5547 +235 +3754 +649 +1510 +1715 +1565 +3588 +2192 +3588 +3565 +3566 +1510 +1161 +3588 +5384 +3588 +3566 +3588 +2476 +2532 +191 +846 +5479 +5463 +1223 +3588 +5456 +3588 +3566 +3767 +3778 +3588 +5479 +3588 +1699 +4137 +1163 +1565 +837 +1161 +1473 +1642 +3588 +509 +2064 +1883 +3956 +1510 +3588 +1510 +1537 +3588 +1093 +1537 +3588 +1093 +1510 +2532 +1537 +3588 +1093 +2980 +3588 +1537 +3588 +3772 +2064 +1883 +3956 +1510 +3739 +3708 +2532 +191 +3778 +3140 +2532 +3588 +3141 +846 +3762 +2983 +3588 +2983 +846 +3588 +3141 +4972 +3754 +3588 +2316 +227 +1510 +1063 +3739 +649 +3588 +2316 +3588 +4487 +3588 +2316 +2980 +1063 +3756 +1537 +3358 +1325 +3588 +4151 +3588 +3962 +25 +3588 +5207 +2532 +3956 +1325 +1722 +3588 +5495 +846 +3588 +4100 +1519 +3588 +5207 +2192 +2222 +166 +1161 +3588 +544 +3588 +5207 +3756 +3708 +2222 +235 +3588 +3709 +3588 +2316 +3306 +1909 +846 +3767 +5613 +1097 +3588 +2962 +3754 +191 +3588 +5330 +3754 +2424 +4119 +3101 +4160 +2532 +907 +2228 +2491 +2544 +2424 +846 +3756 +907 +235 +3588 +3101 +846 +863 +3588 +2449 +2532 +565 +3825 +1519 +3588 +1056 +1161 +1163 +846 +1330 +1223 +3588 +4540 +3767 +2064 +1519 +4172 +3588 +4540 +3004 +4965 +4139 +3588 +5564 +3739 +1325 +2384 +2501 +3588 +5207 +846 +1161 +1510 +1563 +4077 +3588 +2384 +3767 +3588 +2424 +2872 +1537 +3588 +3597 +2516 +3779 +1909 +3588 +4077 +5610 +1510 +5613 +1623 +2064 +1135 +1537 +3588 +4540 +501 +5204 +3004 +846 +3588 +2424 +1325 +1473 +4095 +1063 +3588 +3101 +846 +565 +1519 +3588 +4172 +2443 +5160 +59 +3767 +3004 +846 +3588 +1135 +3588 +4542 +4459 +4771 +2453 +1510 +3844 +1473 +1135 +4542 +1510 +4095 +154 +1063 +3756 +4798 +2453 +4541 +611 +2424 +2532 +3004 +846 +1487 +1492 +3588 +1431 +3588 +2316 +2532 +5101 +1510 +3588 +3004 +4771 +1325 +1473 +4095 +302 +4771 +154 +846 +2532 +302 +1325 +4771 +5204 +2198 +3004 +846 +2962 +3777 +502 +2192 +2532 +3588 +5421 +1510 +901 +3767 +4159 +2192 +3588 +5204 +3588 +2198 +3361 +4771 +3173 +1510 +3588 +3962 +1473 +2384 +3739 +1325 +1473 +3588 +5421 +2532 +846 +1537 +846 +4095 +2532 +3588 +5207 +846 +2532 +3588 +2353 +846 +611 +2424 +2532 +3004 +846 +3956 +3588 +4095 +1537 +3588 +5204 +3778 +1372 +3825 +1161 +302 +3739 +4095 +1537 +3588 +5204 +3739 +1473 +1325 +846 +3756 +3361 +1372 +1519 +3588 +165 +235 +3588 +5204 +3739 +1325 +846 +1096 +1722 +846 +4077 +5204 +242 +1519 +2222 +166 +3004 +4314 +846 +3588 +1135 +2962 +1325 +1473 +3778 +3588 +5204 +2443 +3361 +1372 +3366 +1330 +1759 +501 +3004 +846 +5217 +5455 +3588 +435 +4771 +2532 +2064 +1759 +611 +3588 +1135 +2532 +3004 +3756 +2192 +435 +3004 +846 +3588 +2424 +2573 +3004 +3754 +435 +3756 +2192 +1063 +4002 +435 +2192 +2532 +3739 +3568 +2192 +3756 +1510 +4771 +435 +3778 +227 +2046 +3004 +846 +3588 +1135 +2962 +2334 +3754 +4396 +1510 +4771 +3588 +3962 +1473 +1722 +3588 +3735 +3778 +4352 +2532 +4771 +3004 +3754 +1722 +2414 +1510 +3588 +5117 +3699 +4352 +1163 +3004 +846 +3588 +2424 +4100 +1473 +1135 +3754 +2064 +5610 +3753 +3777 +1722 +3588 +3735 +3778 +3777 +1722 +2414 +4352 +3588 +3962 +4771 +4352 +3739 +3756 +1492 +1473 +4352 +3739 +1492 +3754 +3588 +4991 +1537 +3588 +2453 +1510 +235 +2064 +5610 +2532 +3568 +1510 +3753 +3588 +228 +4353 +4352 +3588 +3962 +1722 +4151 +2532 +225 +1063 +2532 +3588 +3962 +5108 +2212 +3588 +4352 +846 +4151 +3588 +2316 +2532 +3588 +4352 +1722 +4151 +2532 +225 +4352 +1163 +3004 +846 +3588 +1135 +1492 +3754 +3323 +3588 +3004 +5547 +2064 +3752 +2064 +1565 +312 +1473 +537 +3004 +846 +3588 +2424 +1473 +3588 +2980 +4771 +1510 +2532 +1909 +3778 +2064 +3588 +3101 +846 +2532 +2296 +3754 +3326 +1135 +2980 +3305 +3762 +3004 +5101 +2212 +2228 +5101 +2980 +3326 +846 +3767 +863 +3588 +5201 +846 +3588 +1135 +2532 +565 +1519 +3588 +4172 +2532 +3004 +3588 +444 +1205 +3708 +444 +3739 +3004 +1473 +3956 +3739 +4160 +3385 +3778 +1510 +3588 +5547 +1831 +1537 +3588 +4172 +2532 +2064 +4314 +846 +1722 +3588 +3342 +2065 +846 +3588 +3101 +3004 +4461 +5315 +1161 +3588 +3004 +846 +1473 +1035 +2192 +5315 +3739 +4771 +3756 +1492 +3767 +3004 +3588 +3101 +4314 +240 +3361 +5100 +5342 +846 +5315 +3004 +846 +3588 +2424 +1699 +1033 +1510 +2443 +4160 +3588 +2307 +3588 +3992 +1473 +2532 +5048 +846 +3588 +2041 +3756 +4771 +3004 +3754 +2089 +5072 +1510 +2532 +3588 +2326 +2064 +3708 +3004 +4771 +1869 +3588 +3788 +4771 +2532 +2300 +3588 +5561 +3754 +3022 +1510 +4314 +2326 +2235 +3588 +2325 +3408 +2983 +2532 +4863 +2590 +1519 +2222 +166 +2443 +3674 +5463 +3588 +4687 +2532 +3588 +2325 +1063 +1722 +3778 +3588 +3056 +1510 +228 +3754 +243 +1510 +3588 +4687 +2532 +243 +3588 +2325 +1473 +649 +4771 +2325 +3739 +3756 +4771 +2872 +243 +2872 +2532 +4771 +1519 +3588 +2873 +846 +1525 +1161 +1537 +3588 +4172 +1565 +4183 +3588 +4541 +4100 +1519 +846 +1223 +3588 +3056 +3588 +1135 +3140 +3754 +3004 +1473 +3956 +3739 +4160 +3767 +5613 +2064 +4314 +846 +3588 +4541 +2065 +846 +3306 +3844 +846 +2532 +3306 +1563 +1417 +2250 +2532 +4183 +4119 +4100 +1223 +3588 +3056 +846 +5037 +3588 +1135 +3004 +3754 +3765 +1223 +3588 +4674 +2981 +4100 +1063 +846 +191 +2532 +1492 +3754 +3778 +1510 +230 +3588 +4990 +3588 +2889 +1161 +3326 +3588 +1417 +2250 +1831 +1564 +1519 +3588 +1056 +1063 +846 +2424 +3140 +3754 +4396 +1722 +3588 +2398 +3968 +5092 +3756 +2192 +3767 +3753 +2064 +1519 +3588 +1056 +1209 +846 +3588 +1057 +3708 +3956 +3745 +4160 +1722 +2414 +1722 +3588 +1859 +1063 +2532 +846 +2064 +1519 +3588 +1859 +3767 +2064 +3825 +1519 +3588 +2580 +3588 +1056 +3699 +4160 +3588 +5204 +3631 +2532 +1510 +5100 +937 +3739 +3588 +5207 +770 +1722 +2584 +3778 +191 +3754 +2424 +2240 +1537 +3588 +2449 +1519 +3588 +1056 +565 +4314 +846 +2532 +2065 +2443 +2597 +2532 +2390 +846 +3588 +5207 +1063 +3195 +599 +3767 +3004 +3588 +2424 +4314 +846 +1437 +3361 +4592 +2532 +5059 +3708 +3756 +3361 +4100 +3004 +4314 +846 +3588 +937 +2962 +2597 +4250 +599 +3588 +3813 +1473 +3004 +846 +3588 +2424 +4198 +3588 +5207 +4771 +2198 +4100 +3588 +444 +3588 +3056 +3739 +3004 +846 +3588 +2424 +2532 +4198 +1161 +2235 +846 +2597 +3588 +1401 +5221 +846 +3004 +3754 +3588 +3816 +846 +2198 +3767 +4441 +3588 +5610 +3844 +846 +1722 +3739 +2866 +2192 +3767 +3004 +846 +3754 +5504 +5610 +1442 +863 +846 +3588 +4446 +3767 +1097 +3588 +3962 +3754 +1565 +3588 +5610 +1722 +3739 +3004 +846 +3588 +2424 +3588 +5207 +4771 +2198 +2532 +4100 +846 +2532 +3588 +3614 +846 +3650 +1161 +3825 +3778 +1208 +4592 +4160 +3588 +2424 +2064 +1537 +3588 +2449 +1519 +3588 +1056 +3326 +3778 +1510 +1859 +3588 +2453 +2532 +305 +2424 +1519 +2414 +1161 +1510 +1722 +3588 +2414 +1909 +3588 +4262 +2861 +3588 +1951 +1447 +964 +4002 +4745 +2192 +1722 +3778 +2621 +4128 +3588 +770 +5185 +5560 +3584 +1551 +3588 +3588 +5204 +2796 +1063 +32 +2596 +2540 +2597 +1722 +3588 +2861 +2532 +5015 +3588 +5204 +3767 +3588 +4413 +1684 +3326 +3588 +5016 +3588 +5204 +5199 +1096 +3739 +1221 +2722 +3553 +1161 +1510 +5100 +444 +1563 +5144 +2532 +3638 +2094 +2192 +1722 +3588 +769 +846 +3588 +2424 +3778 +2621 +3708 +2532 +1097 +3754 +4183 +5550 +2235 +2192 +3004 +846 +2309 +5199 +1096 +611 +846 +3588 +770 +2962 +444 +3756 +2192 +2443 +3752 +5015 +3588 +5204 +906 +1473 +1519 +3588 +2861 +1161 +1722 +3739 +2064 +1473 +243 +4253 +1473 +2597 +3004 +846 +3588 +2424 +1453 +142 +3588 +2895 +4771 +2532 +4043 +2532 +2112 +1096 +5199 +3588 +444 +2532 +142 +3588 +2895 +846 +2532 +4043 +1161 +1510 +4521 +1722 +1565 +3588 +2250 +3767 +3004 +3588 +2453 +3588 +2323 +4521 +1510 +2532 +3756 +1832 +4771 +142 +3588 +2895 +1161 +3739 +611 +846 +3588 +4160 +1473 +5199 +1565 +1473 +3004 +142 +3588 +2895 +4771 +2532 +4043 +2065 +846 +5101 +1510 +3588 +444 +3588 +3004 +4771 +142 +2532 +4043 +1161 +3588 +2390 +3756 +1492 +5101 +1510 +1063 +3588 +2424 +1593 +3793 +1510 +1722 +3588 +5117 +3326 +3778 +2147 +846 +3588 +2424 +1722 +3588 +2411 +2532 +3004 +846 +3708 +5199 +1096 +3371 +264 +2443 +3361 +5501 +5100 +4771 +1096 +565 +3588 +444 +2532 +3004 +3588 +2453 +3754 +2424 +1510 +3588 +4160 +846 +5199 +2532 +1223 +3778 +1377 +3588 +2453 +3588 +2424 +3754 +3778 +4160 +1722 +4521 +1161 +3588 +611 +846 +3588 +3962 +1473 +2193 +737 +2038 +2504 +2038 +3767 +1223 +3778 +3123 +2212 +846 +615 +3588 +2453 +3754 +3756 +3440 +3089 +3588 +4521 +235 +2532 +3962 +2398 +3004 +3588 +2316 +2470 +1438 +4160 +3588 +2316 +3767 +611 +3588 +2424 +2532 +3004 +846 +281 +281 +3004 +4771 +3756 +1410 +3588 +5207 +4160 +575 +1438 +3762 +302 +3361 +991 +5100 +3588 +3962 +4160 +1063 +302 +3739 +1565 +4160 +3778 +2532 +3588 +5207 +3668 +4160 +1063 +3588 +3962 +5368 +3588 +5207 +2532 +1166 +846 +3956 +3739 +846 +4160 +2532 +3173 +3778 +2041 +1166 +846 +2443 +4771 +2296 +1063 +5618 +3588 +3962 +1453 +3588 +3498 +2532 +2227 +3779 +2532 +3588 +5207 +3739 +2309 +2227 +1063 +3761 +3588 +3962 +2919 +3762 +235 +3588 +2920 +3956 +1325 +3588 +5207 +2443 +3956 +5091 +3588 +5207 +2531 +5091 +3588 +3962 +3588 +3361 +5091 +3588 +5207 +3756 +5091 +3588 +3962 +3588 +3992 +846 +281 +281 +3004 +4771 +3754 +3588 +3588 +3056 +1473 +191 +2532 +4100 +3588 +3992 +1473 +2192 +2222 +166 +2532 +1519 +2920 +3756 +2064 +235 +3327 +1537 +3588 +2288 +1519 +3588 +2222 +281 +281 +3004 +4771 +3754 +2064 +5610 +2532 +3568 +1510 +3753 +3588 +3498 +191 +3588 +5456 +3588 +5207 +3588 +2316 +2532 +3588 +191 +2198 +1063 +5618 +3588 +3962 +2192 +2222 +1722 +1438 +3779 +2532 +3588 +5207 +1325 +2222 +2192 +1722 +1438 +2532 +1849 +1325 +846 +2920 +4160 +3754 +5207 +444 +1510 +3361 +2296 +3778 +3754 +2064 +5610 +1722 +3739 +3956 +3588 +1722 +3588 +3419 +191 +3588 +5456 +846 +2532 +1607 +3588 +3588 +18 +4160 +1519 +386 +2222 +3588 +3588 +5337 +4238 +1519 +386 +2920 +3756 +1410 +1473 +4160 +575 +1683 +3762 +2531 +191 +2919 +2532 +3588 +2920 +3588 +1699 +1342 +1510 +3754 +3756 +2212 +3588 +2307 +3588 +1699 +235 +3588 +2307 +3588 +3992 +1473 +1437 +1473 +3140 +4012 +1683 +3588 +3141 +1473 +3756 +1510 +227 +243 +1510 +3588 +3140 +4012 +1473 +2532 +1492 +3754 +227 +1510 +3588 +3141 +3739 +3140 +4012 +1473 +4771 +649 +4314 +2491 +2532 +3140 +3588 +225 +1161 +1473 +3756 +3844 +444 +3588 +3141 +2983 +235 +3778 +3004 +2443 +4771 +4982 +1565 +1510 +3588 +3088 +3588 +2545 +2532 +5316 +1161 +4771 +2309 +21 +4314 +5610 +1722 +3588 +5457 +846 +1161 +1473 +2192 +3588 +3141 +3173 +3588 +2491 +1063 +3588 +2041 +3739 +1325 +1473 +3588 +3962 +2443 +5048 +846 +846 +3588 +2041 +3739 +4160 +3140 +4012 +1473 +3754 +3588 +3962 +1473 +649 +2532 +3588 +3992 +1473 +3962 +1565 +3140 +4012 +1473 +3777 +5456 +846 +4455 +191 +3777 +1491 +846 +3708 +2532 +3756 +2192 +3588 +3056 +846 +1722 +4771 +3306 +3754 +3739 +649 +1565 +3778 +4771 +3756 +4100 +2045 +3588 +1124 +3754 +4771 +1380 +1722 +846 +2222 +166 +2192 +2532 +1565 +1510 +3588 +3140 +4012 +1473 +2532 +3756 +2309 +2064 +4314 +1473 +2443 +2222 +2192 +1391 +3844 +444 +3756 +2983 +235 +1097 +4771 +3754 +3588 +26 +3588 +2316 +3756 +2192 +1722 +1438 +1473 +2064 +1722 +3588 +3686 +3588 +3962 +1473 +2532 +3756 +2983 +1473 +1437 +243 +2064 +1722 +3588 +3686 +3588 +2398 +1565 +2983 +4459 +1410 +4771 +4100 +1391 +3844 +240 +2983 +2532 +3588 +1391 +3588 +3844 +3588 +3441 +2316 +3756 +2212 +3361 +1380 +3754 +1473 +2723 +4771 +4314 +3588 +3962 +1510 +3588 +2723 +4771 +3475 +1519 +3739 +4771 +1679 +1063 +1487 +4100 +3475 +302 +4100 +1473 +1063 +4012 +1473 +1565 +1125 +1161 +1487 +3588 +1565 +1121 +3756 +4100 +4459 +3588 +1699 +4487 +4100 +3326 +3778 +565 +3588 +2424 +4008 +3588 +2281 +3588 +1056 +3588 +5085 +1161 +190 +846 +3793 +4183 +3754 +3708 +3588 +4592 +3739 +4160 +1909 +3588 +770 +1161 +424 +1519 +3588 +3735 +2424 +2532 +1563 +2521 +3326 +3588 +3101 +846 +1161 +1510 +1451 +3588 +3957 +3588 +1859 +3588 +2453 +3767 +3588 +2424 +1869 +3588 +3788 +2532 +2300 +3754 +4183 +3793 +2064 +4314 +846 +3004 +4314 +5376 +4159 +59 +740 +2443 +5315 +3778 +1161 +3778 +3004 +3985 +846 +1063 +846 +1492 +5101 +4160 +3195 +611 +846 +3588 +5376 +1250 +1220 +740 +3756 +714 +846 +2443 +1538 +1024 +5100 +2983 +3004 +846 +1520 +1537 +3588 +3101 +846 +406 +3588 +80 +4613 +4074 +1510 +3808 +5602 +3739 +2192 +4002 +740 +2916 +2532 +1417 +3795 +235 +3778 +5101 +1510 +1519 +5118 +3004 +3588 +2424 +4160 +3588 +444 +377 +1161 +1510 +5528 +4183 +1722 +3588 +5117 +3767 +377 +3588 +435 +3588 +706 +5613 +4000 +3767 +2983 +3588 +740 +3588 +2424 +2532 +2168 +1239 +3588 +345 +3668 +2532 +1537 +3588 +3795 +3745 +2309 +1161 +5613 +1705 +3004 +3588 +3101 +846 +4863 +3588 +4052 +2801 +2443 +3361 +5100 +622 +3767 +4863 +2532 +1072 +1427 +2894 +2801 +1537 +3588 +4002 +740 +3588 +2916 +3739 +4052 +3588 +977 +3767 +3588 +444 +3708 +3739 +4160 +4592 +3004 +3754 +3778 +1510 +230 +3588 +4396 +3588 +2064 +1519 +3588 +2889 +3767 +1097 +3754 +3195 +2064 +2532 +726 +846 +2443 +4160 +935 +402 +3825 +1519 +3588 +3735 +2424 +846 +3441 +1161 +5613 +3798 +1096 +2597 +3588 +3101 +846 +1909 +3588 +2281 +2532 +1684 +1519 +4143 +2064 +4008 +3588 +2281 +1519 +2584 +2532 +4653 +2235 +1096 +2532 +3768 +2064 +4314 +846 +3588 +2424 +5037 +3588 +2281 +417 +3173 +4154 +1326 +3767 +1643 +5613 +4712 +1501 +4002 +2228 +5144 +2334 +3588 +2424 +4043 +1909 +3588 +2281 +2532 +1451 +3588 +4143 +1096 +2532 +5399 +1161 +3588 +3004 +846 +1473 +1510 +3361 +5399 +3767 +2309 +2983 +846 +1519 +3588 +4143 +2532 +2112 +1096 +3588 +4143 +1909 +3588 +1093 +1519 +3739 +5217 +3588 +1887 +3588 +3793 +3588 +2476 +4008 +3588 +2281 +3708 +3754 +4142 +243 +3756 +1510 +1563 +1487 +3361 +1520 +2532 +3754 +3756 +4897 +3588 +3101 +846 +3588 +2424 +1519 +3588 +4143 +235 +3441 +3588 +3101 +846 +565 +235 +4142 +2064 +1537 +5085 +1451 +3588 +5117 +3699 +5315 +3588 +740 +2168 +3588 +2962 +3767 +3753 +3708 +3588 +3793 +3754 +2424 +3756 +1510 +1563 +3761 +3588 +3101 +846 +1684 +846 +1519 +3588 +4142 +2532 +2064 +1519 +2584 +2212 +3588 +2424 +2532 +2147 +846 +4008 +3588 +2281 +3004 +846 +4461 +4219 +5602 +1096 +611 +846 +3588 +2424 +2532 +3004 +281 +281 +3004 +4771 +2212 +1473 +3756 +3754 +3708 +4592 +235 +3754 +5315 +1537 +3588 +740 +2532 +5526 +2038 +3361 +3588 +1035 +3588 +622 +235 +3588 +1035 +3588 +3306 +1519 +2222 +166 +3739 +3588 +5207 +3588 +444 +4771 +1325 +1063 +3778 +3588 +3962 +3588 +2316 +4972 +3767 +3004 +4314 +846 +5101 +4160 +2443 +2038 +3588 +2041 +3588 +2316 +611 +2424 +2532 +3004 +846 +3778 +1510 +3588 +2041 +3588 +2316 +2443 +4100 +1519 +3739 +649 +1565 +3767 +3004 +846 +3767 +5101 +4592 +4160 +4771 +2443 +3708 +2532 +4100 +4771 +5101 +2038 +3588 +3962 +1473 +3588 +3131 +5315 +1722 +3588 +2048 +2531 +1510 +1125 +740 +1537 +3588 +3772 +1325 +846 +5315 +3767 +3004 +846 +3588 +2424 +281 +281 +3004 +4771 +3756 +3475 +1325 +4771 +3588 +740 +1537 +3588 +3772 +235 +3588 +3962 +1473 +1325 +4771 +3588 +740 +1537 +3588 +3772 +3588 +228 +1063 +3588 +740 +3588 +2316 +1510 +3588 +2597 +1537 +3588 +3772 +2532 +2222 +1325 +3588 +2889 +3767 +3004 +4314 +846 +2962 +3842 +1325 +1473 +3588 +740 +3778 +3004 +846 +3588 +2424 +1473 +1510 +3588 +740 +3588 +2222 +3588 +2064 +4314 +1473 +3756 +3361 +3983 +2532 +3588 +4100 +1519 +1473 +3756 +3361 +1372 +4455 +235 +3004 +4771 +3754 +2532 +3708 +1473 +2532 +3756 +4100 +3956 +3739 +1325 +1473 +3588 +3962 +4314 +1473 +2240 +2532 +3588 +2064 +4314 +1473 +3756 +3361 +1544 +1854 +3754 +2597 +575 +3588 +3772 +3756 +2443 +4160 +3588 +2307 +3588 +1699 +235 +3588 +2307 +3588 +3992 +1473 +1161 +3778 +1510 +3588 +2307 +3588 +3992 +1473 +2443 +3956 +3739 +1325 +1473 +3361 +622 +1537 +846 +235 +450 +846 +1722 +3588 +2078 +2250 +1063 +3778 +1510 +3588 +2307 +3588 +3962 +1473 +2443 +3956 +3588 +2334 +3588 +5207 +2532 +4100 +1519 +846 +2192 +2222 +166 +2532 +450 +846 +1473 +1722 +3588 +2078 +2250 +3767 +1111 +3588 +2453 +4012 +846 +3754 +3004 +1473 +1510 +3588 +740 +3588 +2597 +1537 +3588 +3772 +2532 +3004 +3756 +3778 +1510 +2424 +3588 +5207 +2501 +3739 +1473 +1492 +3588 +3962 +2532 +3588 +3384 +4459 +3568 +3004 +3754 +1537 +3588 +3772 +2597 +611 +2424 +2532 +3004 +846 +3361 +1111 +3326 +240 +3762 +1410 +2064 +4314 +1473 +1437 +3361 +3588 +3962 +3588 +3992 +1473 +1670 +846 +2504 +450 +846 +1722 +3588 +2078 +2250 +1510 +1125 +1722 +3588 +4396 +2532 +1510 +3956 +1318 +2316 +3956 +3588 +191 +3844 +3588 +3962 +2532 +3129 +2064 +4314 +1473 +3756 +3754 +3588 +3962 +3708 +5100 +1487 +3361 +3588 +1510 +3844 +3588 +2316 +3778 +3708 +3588 +3962 +281 +281 +3004 +4771 +3588 +4100 +2192 +2222 +166 +1473 +1510 +3588 +740 +3588 +2222 +3588 +3962 +4771 +5315 +1722 +3588 +2048 +3588 +3131 +2532 +599 +3778 +1510 +3588 +740 +3588 +1537 +3588 +3772 +2597 +2443 +5100 +1537 +846 +5315 +2532 +3361 +599 +1473 +1510 +3588 +740 +3588 +2198 +3588 +1537 +3588 +3772 +2597 +1437 +5100 +5315 +1537 +3778 +3588 +740 +2198 +1519 +3588 +165 +1161 +2532 +3588 +740 +3739 +1473 +1325 +3588 +4561 +1473 +1510 +5228 +3588 +3588 +2889 +2222 +3767 +3164 +4314 +240 +3588 +2453 +3004 +4459 +1410 +3778 +1473 +1325 +3588 +4561 +5315 +3767 +3004 +846 +3588 +2424 +281 +281 +3004 +4771 +1437 +3361 +5315 +3588 +4561 +3588 +5207 +3588 +444 +2532 +4095 +846 +3588 +129 +3756 +2192 +2222 +1722 +1438 +3588 +5176 +1473 +3588 +4561 +2532 +4095 +1473 +3588 +129 +2192 +2222 +166 +2504 +450 +846 +3588 +2078 +2250 +1063 +3588 +4561 +1473 +227 +1035 +1510 +2532 +3588 +129 +1473 +227 +4213 +1510 +3588 +5176 +1473 +3588 +4561 +2532 +4095 +1473 +3588 +129 +1722 +1473 +3306 +2504 +1722 +846 +2531 +649 +1473 +3588 +2198 +3962 +2504 +2198 +1223 +3588 +3962 +2532 +3588 +5176 +1473 +2548 +2198 +1223 +1473 +3778 +1510 +3588 +740 +3588 +1537 +3772 +2597 +3756 +2531 +5315 +3588 +3962 +2532 +599 +3588 +5176 +3778 +3588 +740 +2198 +1519 +3588 +165 +3778 +3004 +1722 +4864 +1321 +1722 +2584 +3767 +4183 +1537 +3588 +3101 +846 +191 +3004 +4642 +1510 +3588 +3056 +3778 +5101 +1410 +846 +191 +1161 +3588 +2424 +1492 +1722 +1438 +3754 +1111 +4012 +3778 +3588 +3101 +846 +3004 +846 +3778 +4771 +4624 +3767 +1437 +2334 +3588 +5207 +3588 +444 +305 +3699 +1510 +3588 +4386 +3588 +4151 +1510 +3588 +2227 +3588 +4561 +3756 +5623 +3762 +3588 +4487 +3739 +1473 +2980 +4771 +4151 +1510 +2532 +2222 +1510 +235 +1510 +1537 +4771 +5100 +3739 +3756 +4100 +1063 +1492 +1537 +746 +3588 +2424 +5101 +1510 +3588 +3361 +4100 +2532 +5101 +1510 +3588 +3860 +846 +2532 +3004 +1223 +3778 +2046 +4771 +3754 +3762 +1410 +2064 +4314 +1473 +1437 +3361 +1510 +1325 +846 +1537 +3588 +3962 +1537 +3778 +4183 +3588 +3101 +846 +565 +1519 +3588 +3694 +2532 +3765 +3326 +846 +4043 +3767 +3004 +3588 +2424 +3588 +1427 +3361 +2532 +4771 +2309 +5217 +611 +846 +4613 +4074 +2962 +4314 +5101 +565 +4487 +2222 +166 +2192 +2532 +1473 +4100 +2532 +1097 +3754 +4771 +1510 +3588 +40 +3588 +2316 +611 +846 +3588 +2424 +3756 +1473 +4771 +3588 +1427 +1586 +2532 +1537 +4771 +1520 +1228 +1510 +1161 +3004 +3588 +2455 +4613 +2469 +1063 +3778 +3195 +3860 +846 +1520 +1537 +3588 +1427 +2532 +3326 +3778 +4043 +3588 +2424 +1722 +3588 +1056 +1063 +3756 +2309 +1722 +3588 +2449 +4043 +3754 +2212 +846 +615 +3588 +2453 +1161 +1510 +1451 +3588 +1859 +3588 +2453 +3588 +4634 +3767 +3004 +4314 +846 +3588 +80 +846 +3327 +1782 +2532 +5217 +1519 +3588 +2449 +2443 +2532 +3588 +3101 +4771 +2334 +3588 +2041 +4771 +3739 +4160 +1063 +3762 +5100 +1722 +2927 +4160 +2532 +2212 +846 +1722 +3954 +1510 +1487 +3778 +4160 +5319 +4572 +3588 +2889 +1063 +3761 +3588 +80 +846 +4100 +1519 +846 +3767 +3004 +846 +3588 +2424 +3588 +2540 +3588 +1699 +3768 +3918 +1161 +3588 +2540 +3588 +5212 +3842 +1510 +2092 +3756 +1410 +3588 +2889 +3404 +4771 +1161 +1473 +3404 +3754 +1473 +3140 +4012 +846 +3754 +3588 +2041 +846 +4190 +1510 +4771 +305 +1519 +3588 +1859 +1473 +3768 +305 +1519 +3588 +1859 +3778 +3754 +3588 +1699 +2540 +3768 +4137 +1161 +3778 +3004 +846 +3306 +1722 +3588 +1056 +1161 +5613 +305 +3588 +80 +846 +1519 +3588 +1859 +5119 +2532 +846 +305 +3756 +5320 +235 +5613 +1722 +2927 +3767 +3588 +2453 +2212 +846 +1722 +3588 +1859 +2532 +3004 +4226 +1510 +1565 +2532 +1112 +4012 +846 +1510 +4183 +1722 +3588 +3793 +3303 +3588 +3004 +3754 +18 +1510 +1161 +243 +3004 +3756 +235 +4105 +3588 +3793 +3305 +3762 +3954 +2980 +4012 +846 +1223 +3588 +5401 +3588 +2453 +1161 +2235 +3588 +1859 +3322 +305 +2424 +1519 +3588 +2411 +2532 +1321 +3767 +2296 +3588 +2453 +3004 +4459 +3778 +1121 +1492 +3361 +3129 +3767 +611 +846 +2424 +2532 +3004 +3588 +1699 +1322 +3756 +1510 +1699 +235 +3588 +3992 +1473 +1437 +5100 +2309 +3588 +2307 +846 +4160 +1097 +4012 +3588 +1322 +4220 +1537 +3588 +2316 +1510 +2228 +1473 +575 +1683 +2980 +3588 +575 +1438 +2980 +3588 +1391 +3588 +2398 +2212 +1161 +3588 +2212 +3588 +1391 +3588 +3992 +846 +3778 +227 +1510 +2532 +93 +1722 +846 +3756 +1510 +3756 +3475 +1325 +4771 +3588 +3551 +2532 +3762 +1537 +4771 +4160 +3588 +3551 +5101 +1473 +615 +2212 +611 +3588 +3793 +1140 +2192 +5101 +4771 +615 +2212 +611 +2424 +2532 +3004 +846 +1520 +2041 +4160 +2532 +3956 +2296 +1223 +3778 +3475 +1325 +4771 +3588 +4061 +3754 +3756 +1537 +3588 +3475 +1510 +235 +1537 +3588 +3962 +2532 +1722 +4521 +4059 +444 +1487 +4061 +2983 +444 +1722 +4521 +2443 +3361 +3089 +3588 +3551 +3475 +1473 +5520 +3754 +3650 +444 +5199 +4160 +1722 +4521 +3361 +2919 +2596 +3799 +235 +3588 +1342 +2920 +2919 +3767 +3004 +5100 +1537 +3588 +2415 +3756 +3778 +1510 +3739 +615 +2212 +2532 +3708 +3954 +2980 +2532 +3762 +846 +3004 +3361 +4218 +230 +1097 +3588 +758 +3754 +3778 +1510 +3588 +5547 +235 +3778 +1492 +4159 +1510 +1161 +3588 +5547 +3752 +2064 +3762 +1097 +4159 +1510 +3767 +2896 +1722 +3588 +2411 +1321 +3588 +2424 +2532 +3004 +2504 +1492 +2532 +1492 +4159 +1510 +2532 +575 +1683 +3756 +2064 +235 +1510 +228 +3588 +3992 +1473 +3739 +4771 +3756 +1492 +1473 +1492 +846 +3754 +3844 +846 +1510 +2548 +1473 +649 +3767 +2212 +846 +4084 +2532 +3762 +1911 +1909 +846 +3588 +5495 +3754 +3768 +2064 +3588 +5610 +846 +1161 +1537 +3588 +3793 +4183 +4100 +1519 +846 +2532 +3004 +3588 +5547 +3752 +2064 +3361 +4119 +4592 +4160 +3739 +3778 +4160 +191 +3588 +5330 +3588 +3793 +1111 +4012 +846 +3778 +2532 +649 +3588 +749 +2532 +3588 +5330 +5257 +2443 +4084 +846 +3767 +3004 +3588 +2424 +2089 +5550 +3398 +3326 +4771 +1510 +2532 +5217 +4314 +3588 +3992 +1473 +2212 +1473 +2532 +3756 +2147 +2532 +3699 +1510 +1473 +2064 +4771 +3756 +1410 +3767 +3004 +3588 +2453 +4314 +1438 +4226 +4198 +3778 +3195 +3754 +1473 +3756 +2147 +846 +3361 +3195 +1519 +3588 +1290 +3588 +1672 +4198 +2532 +1321 +3588 +1672 +5101 +1510 +3588 +3056 +3778 +3739 +3004 +2212 +1473 +2532 +3756 +2147 +2532 +3699 +1510 +1473 +2064 +4771 +3756 +1410 +1161 +1722 +3588 +2078 +2250 +3588 +3173 +3588 +1859 +2476 +3588 +2424 +2532 +2896 +3004 +1437 +5100 +1372 +2064 +4314 +1473 +2532 +4095 +3588 +4100 +1519 +1473 +2531 +3004 +3588 +1124 +4215 +5204 +2198 +1537 +3588 +2836 +846 +4482 +1161 +3778 +3004 +4012 +3588 +4151 +3739 +2983 +3195 +3588 +4100 +1519 +846 +1063 +3768 +1510 +4151 +3754 +2424 +3764 +1392 +3767 +1537 +3588 +3793 +191 +3588 +3056 +3778 +3004 +3778 +1510 +230 +3588 +4396 +243 +3004 +3778 +1510 +3588 +5547 +1161 +3588 +3004 +1063 +3361 +1537 +3588 +1056 +3588 +5547 +2064 +3756 +3588 +1124 +3004 +3754 +1537 +3588 +4690 +1138 +2532 +575 +965 +3588 +2968 +3699 +1510 +1138 +2064 +3588 +5547 +3767 +4978 +1096 +1722 +3588 +3793 +1223 +846 +1161 +5100 +1537 +846 +2309 +4084 +846 +235 +3762 +1911 +1909 +846 +3588 +5495 +3767 +2064 +3588 +5257 +4314 +3588 +749 +2532 +5330 +2532 +3004 +846 +1565 +1223 +5101 +3756 +71 +846 +611 +3588 +5257 +3763 +2980 +3779 +444 +5613 +3778 +3588 +444 +2980 +3767 +611 +846 +3588 +5330 +3361 +2532 +4771 +4105 +3361 +5100 +1537 +3588 +758 +4100 +1519 +846 +2228 +1537 +3588 +5330 +235 +3588 +3793 +3778 +3588 +3361 +1097 +3588 +3551 +1944 +1510 +3004 +4314 +846 +3530 +3588 +2064 +4314 +846 +4386 +1510 +1520 +1537 +846 +3361 +3588 +3551 +1473 +2919 +3588 +444 +1437 +3361 +191 +4412 +3844 +846 +2532 +1097 +5101 +4160 +611 +2532 +3004 +846 +3361 +2532 +4771 +1537 +3588 +1056 +1510 +2045 +2532 +3708 +3754 +1537 +3588 +1056 +4396 +3756 +1453 +2532 +4198 +1538 +1519 +3588 +3624 +846 +1161 +2424 +4198 +1519 +3588 +3735 +3588 +1636 +1161 +3722 +3825 +3854 +1519 +3588 +2411 +2532 +3956 +3588 +2992 +2064 +4314 +846 +2532 +2523 +1321 +846 +1161 +71 +3588 +1122 +2532 +3588 +5330 +4314 +846 +1135 +1722 +3430 +2638 +2532 +2476 +846 +1722 +3319 +3004 +846 +1320 +3778 +3588 +1135 +2638 +1888 +3431 +1161 +1722 +3588 +3551 +3475 +1473 +1781 +3588 +5108 +3036 +3767 +4771 +5101 +3004 +1161 +3778 +3004 +3985 +846 +2443 +2192 +2723 +846 +1161 +3588 +2424 +2736 +2955 +3588 +1147 +1125 +1519 +3588 +1093 +1161 +5613 +1961 +2065 +846 +352 +3004 +4314 +846 +3588 +361 +4771 +4413 +3588 +3037 +1909 +846 +906 +2532 +3825 +2736 +2955 +1125 +1519 +3588 +1093 +1161 +3588 +191 +2532 +5259 +3588 +4893 +1651 +1831 +1520 +2596 +756 +575 +3588 +4245 +2193 +3588 +2078 +2532 +2641 +3441 +3588 +2424 +2532 +3588 +1135 +1722 +3319 +2476 +1161 +3588 +2424 +352 +2532 +3367 +2300 +4133 +3588 +1135 +3004 +846 +3588 +1135 +4226 +1510 +1565 +3588 +2725 +4771 +3762 +4771 +2632 +1161 +3588 +3004 +3762 +2962 +1161 +3004 +846 +3588 +2424 +3761 +1473 +4771 +2632 +4198 +2532 +3371 +264 +3767 +3825 +846 +2980 +3588 +2424 +3004 +1473 +1510 +3588 +5457 +3588 +2889 +3588 +190 +1473 +3756 +3361 +4043 +1722 +3588 +4653 +235 +2192 +3588 +5457 +3588 +2222 +3767 +3004 +846 +3588 +5330 +4771 +4012 +4572 +3140 +3588 +3141 +4771 +3756 +1510 +227 +611 +2424 +2532 +3004 +846 +2579 +1473 +3140 +4012 +1683 +227 +1510 +3588 +3141 +1473 +3754 +1492 +4159 +2064 +2532 +4226 +5217 +1161 +4771 +3756 +1492 +4159 +2064 +2228 +4226 +5217 +4771 +2596 +3588 +4561 +2919 +1473 +3756 +2919 +3762 +1161 +1437 +2532 +2919 +1473 +3588 +2920 +3588 +1699 +228 +1510 +3754 +3441 +3756 +1510 +235 +1473 +2532 +3588 +3992 +1473 +1161 +2532 +1722 +3588 +3551 +3588 +5212 +1125 +3754 +1417 +444 +3588 +3141 +227 +1510 +1473 +1510 +3588 +3140 +4012 +1683 +2532 +3140 +4012 +1473 +3588 +3992 +1473 +3962 +3767 +3004 +846 +4226 +1510 +3588 +3962 +4771 +611 +2424 +3777 +1473 +1492 +3777 +3588 +3962 +1473 +1487 +1473 +1492 +302 +2532 +3588 +3962 +1473 +1492 +3778 +3588 +4487 +2980 +1722 +3588 +1049 +1321 +1722 +3588 +2411 +2532 +3762 +4084 +846 +3754 +3768 +2064 +3588 +5610 +846 +3767 +3004 +3825 +846 +1473 +5217 +2532 +2212 +1473 +2532 +1722 +3588 +266 +4771 +599 +3699 +1473 +5217 +2064 +4771 +3756 +1410 +3767 +3004 +3588 +2453 +3385 +615 +1438 +3754 +3004 +3699 +1473 +5217 +2064 +4771 +3756 +1410 +2532 +3004 +846 +4771 +1537 +3588 +2736 +1510 +1473 +1537 +3588 +507 +1510 +4771 +1537 +3778 +3588 +2889 +1510 +1473 +3756 +1510 +1537 +3588 +2889 +3778 +3767 +3004 +4771 +3754 +599 +1722 +3588 +266 +4771 +1063 +1437 +3361 +4100 +3754 +1473 +1510 +599 +1722 +3588 +266 +4771 +3767 +3004 +846 +4771 +5101 +1510 +3004 +846 +3588 +2424 +5100 +3739 +3588 +746 +2532 +2980 +4771 +2192 +4183 +4012 +4771 +2980 +2532 +2919 +235 +3588 +3992 +1473 +227 +1510 +3739 +2504 +191 +3844 +846 +3778 +2980 +1519 +3588 +2889 +3756 +1097 +3754 +3588 +3962 +846 +3004 +3767 +3004 +3588 +2424 +3752 +5312 +3588 +5207 +3588 +444 +5119 +1097 +3754 +1473 +1510 +2532 +575 +1683 +4160 +3762 +235 +2531 +1321 +1473 +3588 +3962 +3778 +2980 +2532 +3588 +3992 +1473 +3326 +1473 +1510 +3756 +863 +1473 +3441 +3754 +1473 +3588 +701 +846 +4160 +3842 +3778 +846 +2980 +4183 +4100 +1519 +846 +3767 +3004 +3588 +2424 +4314 +3588 +4100 +846 +2453 +1437 +4771 +3306 +1722 +3588 +3056 +3588 +1699 +230 +3101 +1473 +1510 +2532 +1097 +3588 +225 +2532 +3588 +225 +1659 +4771 +611 +4314 +846 +4690 +11 +1510 +2532 +3762 +1398 +4455 +4459 +4771 +3004 +3754 +1658 +1096 +611 +846 +3588 +2424 +281 +281 +3004 +4771 +3754 +3956 +3588 +4160 +3588 +266 +1510 +1401 +3588 +266 +1161 +3588 +1401 +3756 +3306 +1722 +3588 +3614 +1519 +3588 +165 +3588 +5207 +3306 +1519 +3588 +165 +3767 +1437 +3588 +5207 +4771 +1659 +3689 +1658 +1510 +1492 +3754 +4690 +11 +1510 +235 +2212 +1473 +615 +3754 +3588 +3056 +3588 +1699 +3756 +5562 +1722 +4771 +3739 +1473 +3708 +3844 +3588 +3962 +2980 +3767 +2532 +4771 +3739 +191 +3844 +3588 +3962 +4160 +611 +2532 +3004 +846 +3588 +3962 +1473 +11 +1510 +3004 +846 +3588 +2424 +1487 +5043 +3588 +11 +1510 +3588 +2041 +3588 +11 +4160 +1161 +3568 +2212 +615 +1473 +444 +3739 +3588 +225 +4771 +2980 +3739 +191 +3844 +3588 +2316 +3778 +11 +3756 +4160 +4771 +4160 +3588 +2041 +3588 +3962 +4771 +3004 +846 +1473 +1537 +4202 +3756 +1080 +1520 +3962 +3588 +2316 +2192 +3004 +846 +3588 +2424 +1487 +3588 +2316 +3962 +4771 +1510 +302 +25 +1473 +1063 +1473 +1537 +3588 +2316 +1831 +2532 +2240 +1063 +3761 +575 +1683 +2064 +235 +1565 +1473 +649 +1223 +5101 +3588 +2981 +3588 +1699 +3756 +1097 +3754 +3756 +1410 +191 +3588 +3056 +3588 +1699 +4771 +1537 +3588 +3962 +3588 +1228 +1510 +2532 +3588 +1939 +3588 +3962 +4771 +4160 +2309 +1565 +443 +1510 +575 +746 +2532 +1722 +3588 +225 +3756 +4739 +3754 +3756 +1510 +225 +1722 +846 +3752 +2980 +3588 +5579 +1537 +3588 +2398 +2980 +3754 +5583 +1510 +2532 +3588 +3962 +846 +1161 +1473 +3754 +3588 +225 +3004 +3756 +4100 +1473 +5101 +1537 +4771 +1651 +1473 +4012 +266 +1487 +225 +3004 +1223 +5101 +4771 +3756 +4100 +1473 +3588 +1510 +1537 +3588 +2316 +3588 +4487 +3588 +2316 +191 +1223 +3778 +4771 +3756 +191 +3754 +1537 +3588 +2316 +3756 +1510 +611 +3588 +2453 +2532 +3004 +846 +3756 +2573 +3004 +1473 +3754 +4541 +1510 +4771 +2532 +1140 +2192 +611 +2424 +1473 +1140 +3756 +2192 +235 +5091 +3588 +3962 +1473 +2532 +4771 +818 +1473 +1161 +1473 +3756 +2212 +3588 +1391 +1473 +1510 +3588 +2212 +2532 +2919 +281 +281 +3004 +4771 +1437 +5100 +3588 +1699 +3056 +5083 +2288 +3756 +3361 +2334 +1519 +3588 +165 +3004 +846 +3588 +2453 +3568 +1097 +3754 +1140 +2192 +11 +599 +2532 +3588 +4396 +2532 +4771 +3004 +1437 +5100 +3588 +3056 +1473 +5083 +3756 +3361 +1089 +2288 +1519 +3588 +165 +3361 +4771 +3173 +1510 +3588 +3962 +1473 +11 +3748 +599 +2532 +3588 +4396 +599 +5101 +4572 +4160 +611 +2424 +1437 +1473 +1392 +1683 +3588 +1391 +1473 +3762 +1510 +1510 +3588 +3962 +1473 +3588 +1392 +1473 +3739 +4771 +3004 +3754 +2316 +1473 +1510 +2532 +3756 +1097 +846 +1161 +1473 +1492 +846 +2579 +3004 +3754 +3756 +1492 +846 +1510 +3664 +4771 +5583 +235 +1492 +846 +2532 +3588 +3056 +846 +5083 +11 +3588 +3962 +4771 +21 +2443 +3708 +3588 +2250 +3588 +1699 +2532 +3708 +2532 +5463 +3767 +3004 +3588 +2453 +4314 +846 +4004 +2094 +3768 +2192 +2532 +11 +3708 +3004 +846 +2424 +281 +281 +3004 +4771 +4250 +11 +1096 +1473 +1510 +3767 +142 +3037 +2443 +906 +1909 +846 +1161 +2424 +2928 +2532 +1831 +1537 +3588 +2411 +2532 +3855 +3708 +444 +5185 +1537 +1079 +2532 +2065 +846 +3588 +3101 +846 +3004 +4461 +5101 +264 +3778 +2228 +3588 +1118 +846 +2443 +5185 +1080 +611 +2424 +3777 +3778 +264 +3777 +3588 +1118 +846 +235 +2443 +5319 +3588 +2041 +3588 +2316 +1722 +846 +1163 +1473 +2038 +3588 +2041 +3588 +3992 +1473 +2193 +2250 +1510 +2064 +3571 +3753 +3762 +1410 +2038 +3752 +1722 +3588 +2889 +1510 +1510 +5457 +3588 +2889 +3778 +3004 +4429 +5476 +2532 +4160 +4081 +1537 +3588 +4427 +2532 +2007 +846 +3588 +4081 +1909 +3588 +3788 +2532 +3004 +846 +5217 +3538 +1519 +3588 +2861 +3588 +4611 +3739 +2059 +649 +3767 +565 +2532 +3538 +2532 +2064 +991 +3767 +3588 +1069 +2532 +3588 +2334 +846 +3588 +4386 +3754 +4319 +1510 +3004 +3756 +3778 +1510 +3588 +2521 +2532 +4319 +243 +3004 +3754 +3778 +1510 +243 +3004 +3780 +235 +3664 +846 +1510 +1565 +3004 +3754 +1473 +1510 +3767 +3004 +846 +3767 +4459 +455 +4771 +3588 +3788 +611 +1565 +3588 +444 +3588 +3004 +2424 +4081 +4160 +2532 +2025 +1473 +3588 +3788 +2532 +3004 +1473 +3754 +5217 +1519 +3588 +4611 +2532 +3538 +3767 +565 +2532 +3538 +308 +2532 +3004 +846 +4226 +1510 +1565 +3004 +3756 +1492 +71 +846 +3588 +4218 +5185 +4314 +3588 +5330 +1161 +1510 +4521 +1722 +3739 +2250 +3588 +4081 +4160 +3588 +2424 +2532 +455 +846 +3588 +3788 +3767 +3825 +2065 +846 +2532 +3588 +5330 +4459 +308 +1161 +3588 +3004 +846 +4081 +2007 +1909 +1473 +3588 +3788 +2532 +3538 +2532 +991 +3767 +3004 +1537 +3588 +5330 +5100 +3756 +1510 +3844 +2316 +3778 +3588 +444 +3754 +3588 +4521 +3756 +5083 +243 +3004 +4459 +1410 +444 +268 +5108 +4592 +4160 +2532 +4978 +1510 +1722 +846 +3767 +3004 +3588 +5185 +3825 +5101 +4771 +3004 +4012 +846 +3754 +455 +4771 +3588 +3788 +1161 +3588 +3004 +3754 +4396 +1510 +3767 +3756 +4100 +3588 +2453 +4012 +846 +3754 +1510 +5185 +2532 +308 +2193 +3755 +5455 +3588 +1118 +846 +3588 +308 +2532 +2065 +846 +3004 +3778 +1510 +3588 +5207 +4771 +3739 +4771 +3004 +3754 +5185 +1080 +3767 +4459 +991 +737 +3767 +611 +3588 +1118 +846 +2532 +3004 +1492 +3754 +3778 +1510 +3588 +5207 +1473 +2532 +3754 +5185 +1080 +1161 +4459 +3568 +991 +3756 +1492 +2228 +5101 +455 +846 +3588 +3788 +1473 +3756 +1492 +846 +2065 +2244 +2192 +846 +4012 +1438 +2980 +3778 +3004 +3588 +1118 +846 +3754 +5399 +3588 +2453 +1063 +2235 +4934 +3588 +2453 +2443 +1437 +5100 +846 +3670 +5547 +656 +1096 +1223 +3778 +3588 +1118 +846 +3004 +3754 +2244 +2192 +846 +1905 +3767 +5455 +3588 +444 +1537 +1208 +3739 +1510 +5185 +2532 +3004 +846 +1325 +1391 +3588 +2316 +1473 +1492 +3754 +3778 +3588 +444 +268 +1510 +3767 +611 +1565 +1487 +268 +1510 +3756 +1492 +1520 +1492 +3754 +5185 +1510 +737 +991 +3767 +3004 +846 +5101 +4160 +4771 +4459 +455 +4771 +3588 +3788 +611 +846 +3004 +4771 +2235 +2532 +3756 +191 +5101 +3825 +2309 +191 +3361 +2532 +4771 +2309 +846 +3101 +1096 +2532 +3058 +846 +2532 +3004 +4771 +3101 +1565 +1510 +1161 +1473 +3588 +3475 +3101 +1510 +1473 +1492 +3754 +3475 +2980 +3588 +2316 +1161 +3778 +3756 +1492 +4159 +1510 +611 +3588 +444 +2532 +3004 +846 +1063 +1722 +3778 +3588 +2298 +1510 +3754 +4771 +3756 +1492 +4159 +1510 +2532 +455 +1473 +3588 +3788 +1492 +3754 +3588 +2316 +268 +3756 +191 +235 +1437 +5100 +2318 +1510 +2532 +3588 +2307 +846 +4160 +3778 +191 +1537 +3588 +165 +3756 +191 +3754 +455 +5100 +3788 +5185 +1080 +1487 +3361 +1510 +3778 +3844 +2316 +3756 +1410 +4160 +3762 +611 +2532 +3004 +846 +1722 +266 +4771 +1080 +3650 +2532 +4771 +1321 +1473 +2532 +1544 +846 +1854 +191 +2424 +3754 +1544 +846 +1854 +2532 +2147 +846 +3004 +4771 +4100 +1519 +3588 +5207 +3588 +444 +611 +1565 +2532 +3004 +2532 +5101 +1510 +2962 +2443 +4100 +1519 +846 +3004 +846 +3588 +2424 +2532 +3708 +846 +2532 +3588 +2980 +3326 +4771 +1565 +1510 +1161 +3588 +5346 +4100 +2962 +2532 +4352 +846 +2532 +3004 +3588 +2424 +1519 +2917 +1473 +1519 +3588 +2889 +3778 +2064 +2443 +3588 +3361 +991 +991 +2532 +3588 +991 +5185 +1096 +191 +3778 +1537 +3588 +5330 +3588 +3326 +846 +1510 +2532 +3004 +846 +3361 +2532 +1473 +5185 +1510 +3004 +846 +3588 +2424 +1487 +5185 +1510 +302 +3756 +2192 +266 +1161 +3568 +3004 +3754 +991 +3588 +266 +4771 +3306 +281 +281 +3004 +4771 +3588 +3361 +1525 +1223 +3588 +2374 +1519 +3588 +833 +3588 +4263 +235 +305 +237 +1565 +2812 +1510 +2532 +3027 +1161 +3588 +1525 +1223 +3588 +2374 +1510 +4166 +3588 +4263 +3778 +3588 +2377 +455 +2532 +3588 +4263 +3588 +5456 +846 +191 +2532 +3588 +2398 +4263 +5455 +2596 +3686 +2532 +1806 +846 +3752 +3588 +2398 +3956 +1544 +1715 +846 +4198 +2532 +3588 +4263 +846 +190 +3754 +1492 +3588 +5456 +846 +1161 +245 +3756 +3361 +190 +235 +5343 +575 +846 +3754 +3756 +1492 +3588 +245 +3588 +5456 +3778 +3588 +3942 +3004 +846 +3588 +2424 +1161 +1565 +3756 +1097 +5101 +1510 +3739 +2980 +846 +3767 +3004 +3825 +3588 +2424 +281 +281 +3004 +4771 +3754 +1473 +1510 +3588 +2374 +3588 +4263 +3956 +3745 +2064 +4253 +1473 +2812 +1510 +2532 +3027 +235 +3756 +191 +846 +3588 +4263 +1473 +1510 +3588 +2374 +1437 +1223 +1473 +5100 +1525 +4982 +2532 +1525 +2532 +1831 +2532 +3542 +2147 +3588 +2812 +3756 +2064 +1487 +3361 +2443 +2813 +2532 +2380 +2532 +622 +1473 +2064 +2443 +2222 +2192 +2532 +4053 +2192 +1473 +1510 +3588 +4166 +3588 +2570 +3588 +4166 +3588 +2570 +3588 +5590 +846 +5087 +5228 +3588 +4263 +3588 +3411 +2532 +3756 +1510 +4166 +3739 +3756 +1510 +3588 +4263 +2398 +2334 +3588 +3074 +2064 +2532 +863 +3588 +4263 +2532 +5343 +2532 +3588 +3074 +726 +846 +2532 +4650 +3754 +3411 +1510 +2532 +3756 +3199 +846 +4012 +3588 +4263 +1473 +1510 +3588 +4166 +3588 +2570 +2532 +1097 +3588 +1699 +2532 +1097 +1473 +3588 +1699 +2531 +1097 +1473 +3588 +3962 +2504 +1097 +3588 +3962 +2532 +3588 +5590 +1473 +5087 +5228 +3588 +4263 +2532 +243 +4263 +2192 +3739 +3756 +1510 +1537 +3588 +833 +3778 +2548 +1473 +71 +1163 +2532 +3588 +5456 +1473 +191 +2532 +1096 +1520 +4167 +1520 +4166 +1223 +3778 +1473 +3588 +3962 +25 +3754 +1473 +5087 +3588 +5590 +1473 +2443 +3825 +2983 +846 +3762 +142 +846 +575 +1473 +235 +1473 +5087 +846 +575 +1683 +1849 +2192 +5087 +846 +2532 +1849 +2192 +3825 +2983 +846 +3778 +3588 +1785 +2983 +3844 +3588 +3962 +1473 +4978 +3825 +1096 +1722 +3588 +2453 +1223 +3588 +3056 +3778 +1161 +3004 +4183 +1537 +846 +1140 +2192 +2532 +3105 +5101 +846 +191 +243 +3004 +3778 +3588 +4487 +3756 +1510 +1139 +3361 +1140 +1410 +5185 +3788 +455 +1096 +5119 +3588 +1456 +1722 +3588 +2414 +5494 +1510 +2532 +4043 +3588 +2424 +1722 +3588 +2411 +1722 +3588 +4745 +3588 +4672 +3767 +2944 +846 +3588 +2453 +2532 +3004 +846 +2193 +4219 +3588 +5590 +1473 +142 +1487 +4771 +1510 +3588 +5547 +3004 +1473 +3954 +611 +846 +3588 +2424 +3004 +4771 +2532 +3756 +4100 +3588 +2041 +3739 +1473 +4160 +1722 +3588 +3686 +3588 +3962 +1473 +3778 +3140 +4012 +1473 +235 +4771 +3756 +4100 +3754 +3756 +1510 +1537 +3588 +4263 +3588 +1699 +3588 +4263 +3588 +1699 +3588 +5456 +1473 +191 +2504 +1097 +846 +2532 +190 +1473 +2504 +1325 +846 +2222 +166 +2532 +3756 +3361 +622 +1519 +3588 +165 +2532 +3756 +726 +5100 +846 +1537 +3588 +5495 +1473 +3588 +3962 +1473 +3739 +1325 +1473 +3956 +3173 +1510 +2532 +3762 +1410 +726 +1537 +3588 +5495 +3588 +3962 +1473 +2532 +3588 +3962 +1520 +1510 +941 +3825 +3037 +3588 +2453 +2443 +3034 +846 +611 +846 +3588 +2424 +4183 +2041 +2570 +1166 +4771 +1537 +3588 +3962 +1223 +4169 +846 +2041 +1473 +3034 +611 +846 +3588 +2453 +4012 +2570 +2041 +3756 +3034 +4771 +235 +4012 +988 +2532 +3754 +4771 +444 +1510 +4160 +4572 +2316 +611 +846 +3588 +2424 +3756 +1510 +1125 +1722 +3588 +3551 +4771 +3754 +1473 +3004 +2316 +1510 +1487 +1565 +3004 +2316 +4314 +3739 +3588 +3056 +3588 +2316 +1096 +2532 +3756 +1410 +3089 +3588 +1124 +3739 +3588 +3962 +37 +2532 +649 +1519 +3588 +2889 +4771 +3004 +3754 +987 +3754 +3004 +5207 +3588 +2316 +1510 +1487 +3756 +4160 +3588 +2041 +3588 +3962 +1473 +3361 +4100 +1473 +1161 +1487 +4160 +2579 +1473 +3361 +4100 +3588 +2041 +4100 +2443 +1097 +2532 +1097 +3754 +1722 +1473 +3588 +3962 +2504 +1722 +3588 +3962 +3767 +2212 +846 +4084 +3825 +2532 +1831 +1537 +3588 +5495 +846 +2532 +565 +3825 +4008 +3588 +2446 +1519 +3588 +5117 +3699 +1510 +907 +2491 +3588 +4413 +2532 +3306 +1563 +2532 +4183 +2064 +4314 +846 +2532 +3004 +3754 +3303 +2491 +4592 +3762 +4160 +1161 +3956 +3745 +3004 +2491 +4012 +3778 +227 +1510 +2532 +4183 +4100 +1519 +846 +1563 +1161 +1510 +5100 +770 +2976 +575 +963 +1537 +3588 +2968 +3137 +2532 +3136 +3588 +79 +846 +1161 +1510 +3137 +3588 +218 +3588 +2962 +3464 +2532 +1591 +3588 +4228 +846 +3588 +2359 +846 +3739 +3588 +80 +2976 +770 +3767 +649 +3588 +79 +4314 +846 +3004 +2962 +3708 +3739 +5368 +770 +1161 +191 +3588 +2424 +3004 +3778 +3588 +769 +3756 +1510 +4314 +2288 +235 +5228 +3588 +1391 +3588 +2316 +2443 +1392 +3588 +5207 +3588 +2316 +1223 +846 +1161 +25 +3588 +2424 +3588 +3136 +2532 +3588 +79 +846 +2532 +3588 +2976 +3767 +5613 +191 +3754 +770 +3303 +5119 +3306 +1722 +3739 +1510 +5117 +1417 +2250 +1899 +3326 +3778 +3004 +3588 +3101 +71 +1519 +3588 +2449 +3825 +3004 +846 +3588 +3101 +4461 +3568 +2212 +4771 +3034 +3588 +2453 +2532 +3825 +5217 +1563 +611 +2424 +3780 +1427 +5610 +1510 +3588 +2250 +1437 +5100 +4043 +1722 +3588 +2250 +3756 +4350 +3754 +3588 +5457 +3588 +2889 +3778 +991 +1161 +1437 +5100 +4043 +1722 +3588 +3571 +4350 +3754 +3588 +5457 +3756 +1510 +1722 +846 +3778 +3004 +2532 +3326 +3778 +3004 +846 +2976 +3588 +5384 +1473 +2837 +235 +4198 +2443 +1852 +846 +3767 +3004 +3588 +3101 +846 +2962 +1487 +2837 +4982 +1161 +2046 +3588 +2424 +4012 +3588 +2288 +846 +1161 +1565 +1380 +3754 +4012 +3588 +2838 +3588 +5258 +3004 +3767 +5119 +3004 +846 +3588 +2424 +3954 +2976 +599 +2532 +5463 +1223 +4771 +2443 +4100 +3754 +3756 +1510 +1563 +235 +71 +4314 +846 +3767 +3004 +2381 +3588 +3004 +1324 +3588 +4827 +71 +2532 +1473 +2443 +599 +3326 +846 +3767 +2064 +3588 +2424 +2147 +846 +5064 +2250 +2235 +2192 +1722 +3588 +3419 +1161 +1510 +963 +1451 +3588 +2414 +5613 +575 +4712 +1178 +1161 +4183 +1537 +3588 +2453 +2064 +4314 +3588 +3136 +2532 +3137 +2443 +3888 +846 +4012 +3588 +80 +3767 +5613 +191 +3754 +2424 +2064 +3588 +3136 +5221 +846 +1161 +3137 +1722 +3588 +3624 +2516 +3767 +3004 +3588 +3136 +4314 +2424 +2962 +1487 +1510 +5602 +302 +3756 +599 +3588 +80 +1473 +2532 +3568 +1492 +3754 +302 +3745 +154 +3588 +2316 +1325 +4771 +3588 +2316 +3004 +846 +3588 +2424 +450 +3588 +80 +4771 +3004 +846 +3588 +3136 +1492 +3754 +450 +1722 +3588 +386 +1722 +3588 +2078 +2250 +3004 +846 +3588 +2424 +1473 +1510 +3588 +386 +2532 +3588 +2222 +3588 +4100 +1519 +1473 +2579 +599 +2198 +2532 +3956 +3588 +2198 +2532 +4100 +1519 +1473 +3756 +3361 +599 +1519 +3588 +165 +4100 +3778 +3004 +846 +3483 +2962 +1473 +4100 +3754 +4771 +1510 +3588 +5547 +3588 +5207 +3588 +2316 +3588 +1519 +3588 +2889 +2064 +2532 +3778 +3004 +565 +2532 +5455 +3137 +3588 +79 +846 +2977 +3004 +3588 +1320 +3918 +2532 +5455 +4771 +1161 +1565 +5613 +191 +1453 +5035 +2532 +2064 +4314 +846 +1161 +3768 +2064 +3588 +2424 +1519 +3588 +2968 +235 +1510 +2089 +1722 +3588 +5117 +3699 +5221 +846 +3588 +3136 +3767 +3588 +2453 +3588 +1510 +3326 +846 +1722 +3588 +3614 +2532 +3888 +846 +3708 +3588 +3137 +3754 +5030 +450 +2532 +1831 +190 +846 +1380 +3754 +5217 +1519 +3588 +3419 +2443 +2799 +1563 +3767 +3588 +3137 +5613 +2064 +3699 +1510 +2424 +3708 +846 +4098 +4314 +847 +3588 +4228 +3004 +846 +2962 +1487 +1510 +5602 +302 +3756 +599 +1473 +3588 +80 +3767 +2424 +5613 +3708 +846 +2799 +2532 +3588 +4905 +846 +2453 +2799 +1690 +3588 +4151 +2532 +5015 +1438 +2532 +3004 +4226 +5087 +846 +3004 +846 +2962 +2064 +2532 +3708 +1145 +3588 +2424 +3767 +3004 +3588 +2453 +3708 +4459 +5368 +846 +1161 +5100 +1537 +846 +3004 +3756 +1410 +3778 +3588 +455 +3588 +3788 +3588 +5185 +4160 +2443 +2532 +3778 +3361 +599 +3767 +2424 +3825 +1690 +1722 +1438 +2064 +1519 +3588 +3419 +1161 +1510 +4693 +2532 +3037 +1945 +1909 +846 +3004 +3588 +2424 +142 +3588 +3037 +3004 +846 +3588 +79 +3588 +5053 +3136 +2962 +2235 +3605 +1063 +5066 +1510 +3004 +846 +3588 +2424 +3756 +3004 +4771 +3754 +1437 +4100 +3708 +3588 +1391 +3588 +2316 +3767 +142 +3588 +3037 +1161 +3588 +2424 +142 +3588 +3788 +507 +2532 +3004 +3962 +2168 +4771 +3754 +191 +1473 +1161 +1473 +1492 +3754 +3842 +1473 +191 +235 +1223 +3588 +3793 +3588 +4026 +3004 +2443 +4100 +3754 +4771 +1473 +649 +2532 +3778 +3004 +5456 +3173 +2905 +2976 +1204 +1854 +1831 +3588 +2348 +1210 +3588 +4228 +2532 +3588 +5495 +2750 +2532 +3588 +3799 +846 +4676 +4019 +3004 +846 +3588 +2424 +3089 +846 +2532 +863 +846 +5217 +3767 +4183 +1537 +3588 +2453 +3588 +2064 +4314 +3588 +3137 +2532 +2300 +3739 +4160 +4100 +1519 +846 +1161 +5100 +1537 +846 +565 +4314 +3588 +5330 +2532 +3004 +846 +3739 +4160 +2424 +3767 +4863 +3588 +749 +2532 +3588 +5330 +4892 +2532 +3004 +5101 +4160 +3754 +3778 +3588 +444 +4183 +4592 +4160 +1437 +863 +846 +3779 +3956 +4100 +1519 +846 +2532 +2064 +3588 +4514 +2532 +142 +1473 +2532 +3588 +5117 +2532 +3588 +1484 +1161 +1520 +5100 +1537 +846 +2533 +749 +1510 +3588 +1763 +1565 +3004 +846 +4771 +3756 +1492 +3762 +3761 +3049 +3754 +4851 +4771 +2443 +1520 +444 +599 +5228 +3588 +2992 +2532 +3361 +3650 +3588 +1484 +622 +1161 +3778 +575 +1438 +3756 +3004 +235 +749 +1510 +3588 +1763 +1565 +4395 +3754 +3195 +2424 +599 +5228 +3588 +1484 +2532 +3756 +5228 +3588 +1484 +3440 +235 +2443 +2532 +3588 +5043 +3588 +2316 +3588 +1287 +4863 +1519 +1520 +3767 +575 +1565 +3588 +2250 +1011 +2443 +615 +846 +3767 +3588 +2424 +3765 +3954 +4043 +1722 +3588 +2453 +235 +565 +1564 +1519 +3588 +5561 +1451 +3588 +2048 +1519 +2187 +3004 +4172 +2546 +3306 +3326 +3588 +3101 +1161 +1510 +1451 +3588 +3957 +3588 +2453 +2532 +305 +4183 +1519 +2414 +1537 +3588 +5561 +4253 +3588 +3957 +2443 +48 +1438 +3767 +2212 +3588 +2424 +2532 +3004 +3326 +240 +1722 +3588 +2411 +2476 +5101 +1380 +4771 +3754 +3756 +3361 +2064 +1519 +3588 +1859 +1161 +1325 +3588 +749 +2532 +3588 +5330 +1785 +2443 +1437 +5100 +1097 +4226 +1510 +3377 +3704 +4084 +846 +3767 +3588 +2424 +4253 +1803 +2250 +3588 +3957 +2064 +1519 +963 +3699 +1510 +2976 +3739 +1453 +1537 +3498 +2424 +3767 +4160 +846 +1173 +1563 +2532 +3588 +3136 +1247 +1161 +3588 +2976 +1510 +1520 +1537 +3588 +345 +4862 +846 +3767 +3588 +3137 +2983 +3046 +3464 +3487 +4101 +4186 +218 +3588 +4228 +3588 +2424 +2532 +1591 +3588 +2359 +846 +3588 +4228 +846 +1161 +3588 +3614 +4137 +1537 +3588 +3744 +3588 +3464 +1161 +3004 +2455 +3588 +2469 +1520 +3588 +3101 +846 +3588 +3195 +846 +3860 +1223 +5101 +3778 +3588 +3464 +3756 +4097 +5145 +1220 +2532 +1325 +4434 +1161 +3004 +3778 +3756 +3754 +4012 +3588 +4434 +3199 +846 +235 +3754 +2812 +1510 +2532 +3588 +1101 +2192 +3588 +906 +941 +3767 +3004 +3588 +2424 +863 +846 +2443 +1519 +3588 +2250 +3588 +1780 +1473 +5083 +846 +1063 +3588 +4434 +3842 +2192 +3326 +1438 +1161 +1473 +3756 +3842 +2192 +3767 +1097 +3588 +3793 +4183 +1537 +3588 +2453 +3754 +1563 +1510 +2532 +2064 +3756 +1223 +3588 +2424 +3440 +235 +2443 +2532 +3708 +3588 +2976 +3739 +1453 +1537 +3498 +1161 +1011 +3588 +749 +2443 +2532 +3588 +2976 +615 +3754 +4183 +3588 +2453 +1223 +846 +5217 +2532 +4100 +1519 +3588 +2424 +3588 +1887 +3588 +3793 +4183 +3588 +2064 +1519 +3588 +1859 +191 +3754 +2064 +2424 +1519 +2414 +2983 +3588 +902 +3588 +5404 +2532 +1831 +1519 +5222 +846 +2532 +2905 +5614 +2127 +3588 +2064 +1722 +3686 +2962 +2532 +3588 +935 +3588 +2474 +1161 +2147 +3678 +3588 +2424 +2523 +1909 +846 +2531 +1510 +1125 +3361 +5399 +2364 +4622 +3708 +3588 +935 +4771 +2064 +2521 +1909 +4454 +3688 +3778 +3756 +1097 +846 +3588 +3101 +3588 +4413 +235 +3753 +1392 +2424 +5119 +3403 +3754 +3778 +1510 +1125 +1909 +846 +2532 +3778 +4160 +846 +3767 +3140 +3588 +3793 +3588 +1510 +3326 +846 +3753 +3588 +2976 +5455 +1537 +3588 +3419 +2532 +1453 +846 +1537 +3498 +1223 +3778 +2532 +5221 +846 +3588 +3793 +3754 +191 +3778 +846 +4160 +3588 +4592 +3767 +3588 +5330 +3004 +4314 +1438 +2334 +3754 +3756 +5623 +3762 +3708 +3588 +2889 +3694 +846 +565 +1161 +1510 +1672 +5100 +1537 +3588 +305 +2443 +4352 +1722 +3588 +1859 +3767 +3778 +4334 +5376 +3588 +575 +966 +3588 +1056 +2532 +2065 +846 +3004 +2962 +2309 +3588 +2424 +3708 +2064 +3588 +5376 +2532 +3004 +3588 +406 +2064 +406 +2532 +5376 +2532 +3004 +3588 +2424 +1161 +3588 +2424 +611 +846 +3004 +2064 +3588 +5610 +2443 +1392 +3588 +5207 +3588 +444 +281 +281 +3004 +4771 +1437 +3361 +3588 +2848 +3588 +4621 +4098 +1519 +3588 +1093 +599 +846 +3441 +3306 +1161 +1437 +599 +4183 +2590 +5342 +3588 +5368 +3588 +5590 +846 +622 +846 +2532 +3588 +3404 +3588 +5590 +846 +1722 +3588 +2889 +3778 +1519 +2222 +166 +5442 +846 +1437 +1473 +5100 +1247 +1473 +190 +2532 +3699 +1510 +1473 +1563 +2532 +3588 +1249 +3588 +1699 +1510 +1437 +5100 +1473 +1247 +5091 +846 +3588 +3962 +3568 +3588 +5590 +1473 +5015 +2532 +5101 +3004 +3962 +4982 +1473 +1537 +3588 +5610 +3778 +235 +1223 +3778 +2064 +1519 +3588 +5610 +3778 +3962 +1392 +4771 +3588 +3686 +3767 +2064 +5456 +1537 +3588 +3772 +2532 +1392 +2532 +3825 +1392 +3767 +3588 +3793 +3588 +2476 +2532 +191 +3004 +1027 +1096 +243 +3004 +32 +846 +2980 +611 +2424 +2532 +3004 +3756 +1223 +1473 +3588 +5456 +3778 +1096 +235 +1223 +4771 +3568 +1510 +2920 +3588 +2889 +3778 +3568 +3588 +758 +3588 +2889 +3778 +1544 +1854 +1437 +2504 +5312 +1537 +3588 +1093 +3956 +1670 +4314 +1683 +1161 +3778 +3004 +4591 +4169 +2288 +3195 +599 +3767 +611 +846 +3588 +3793 +1473 +191 +1537 +3588 +3551 +3754 +3588 +5547 +3306 +1519 +3588 +165 +2532 +4459 +3004 +4771 +3754 +1163 +5312 +3588 +5207 +3588 +444 +5101 +1510 +3778 +3588 +5207 +3588 +444 +3767 +3004 +846 +3588 +2424 +2089 +3398 +5550 +3588 +5457 +1722 +4771 +1510 +4043 +5613 +3588 +5457 +2192 +2443 +3361 +4653 +4771 +2638 +2532 +3588 +4043 +1722 +3588 +4653 +3756 +1492 +4226 +5217 +5613 +3588 +5457 +2192 +4100 +1519 +3588 +5457 +2443 +5207 +5457 +1096 +3778 +2980 +2424 +2532 +565 +2928 +575 +846 +1161 +846 +5118 +4592 +4160 +1715 +846 +3756 +4100 +1519 +846 +2443 +3588 +3056 +2268 +3588 +4396 +4137 +3739 +3004 +2962 +5101 +4100 +3588 +189 +1473 +2532 +3588 +1023 +2962 +5101 +601 +1223 +3778 +3756 +1410 +4100 +3754 +3825 +3004 +2268 +5186 +846 +3588 +3788 +2532 +4456 +846 +3588 +2588 +2443 +3361 +3708 +3588 +3788 +2532 +3539 +3588 +2588 +2532 +4762 +2532 +2390 +846 +3778 +3004 +2268 +3754 +3708 +3588 +1391 +846 +2532 +2980 +4012 +846 +3305 +3676 +2532 +1537 +3588 +758 +4183 +4100 +1519 +846 +235 +1223 +3588 +5330 +3756 +3670 +2443 +3361 +656 +1096 +1063 +25 +3588 +1391 +3588 +444 +3123 +2260 +3588 +1391 +3588 +2316 +1161 +2424 +2896 +2532 +3004 +3588 +4100 +1519 +1473 +3756 +4100 +1519 +1473 +235 +1519 +3588 +3992 +1473 +2532 +3588 +2334 +1473 +2334 +3588 +3992 +1473 +1473 +5457 +1519 +3588 +2889 +2064 +2443 +3956 +3588 +4100 +1519 +1473 +1722 +3588 +4653 +3361 +3306 +2532 +1437 +5100 +191 +1473 +3588 +4487 +2532 +3361 +5442 +1473 +3756 +2919 +846 +1063 +3756 +2064 +2443 +2919 +3588 +2889 +235 +2443 +4982 +3588 +2889 +3588 +114 +1473 +2532 +3361 +2983 +3588 +4487 +1473 +2192 +3588 +2919 +846 +3588 +3056 +3739 +2980 +1565 +2919 +846 +1722 +3588 +2078 +2250 +3754 +1473 +1537 +1683 +3756 +2980 +235 +3588 +3992 +1473 +3962 +846 +1473 +1785 +1325 +5101 +3004 +2532 +5101 +2980 +2532 +1492 +3754 +3588 +1785 +846 +2222 +166 +1510 +3767 +3739 +1473 +2980 +2531 +2046 +1473 +3588 +3962 +3779 +2980 +1161 +4253 +3588 +1859 +3588 +3957 +3588 +2424 +1492 +3754 +2064 +846 +3588 +5610 +2443 +3327 +1537 +3588 +2889 +3778 +4314 +3588 +3962 +25 +3588 +2398 +3588 +1722 +3588 +2889 +1519 +5056 +25 +846 +2532 +1173 +1096 +3588 +1228 +2235 +906 +1519 +3588 +2588 +2443 +3860 +846 +2455 +4613 +2469 +1492 +3754 +3956 +1325 +846 +3588 +3962 +1519 +3588 +5495 +2532 +3754 +575 +2316 +1831 +2532 +4314 +3588 +2316 +5217 +1453 +1537 +3588 +1173 +2532 +5087 +3588 +2440 +2532 +2983 +3012 +1241 +1438 +1534 +906 +5204 +1519 +3588 +3537 +2532 +756 +3538 +3588 +4228 +3588 +3101 +2532 +1591 +3588 +3012 +3739 +1510 +1241 +3767 +2064 +4314 +4613 +4074 +3004 +846 +2962 +4771 +3538 +1473 +3588 +4228 +611 +2424 +2532 +3004 +846 +3739 +1473 +4160 +4771 +3756 +1492 +737 +1161 +1097 +3326 +3778 +3004 +846 +4074 +3756 +3361 +3538 +1473 +3588 +4228 +1519 +3588 +165 +611 +2424 +846 +1437 +3361 +3538 +4771 +3756 +2192 +3313 +3326 +1473 +3004 +846 +4613 +4074 +2962 +3361 +3588 +4228 +1473 +3440 +235 +2532 +3588 +5495 +2532 +3588 +2776 +3004 +846 +2424 +3588 +3068 +3756 +2192 +5532 +1487 +3361 +3588 +4228 +3538 +235 +1510 +2513 +3650 +2532 +4771 +2513 +1510 +235 +3780 +3956 +1063 +1492 +3588 +3860 +846 +1223 +3778 +3004 +3754 +3780 +3956 +2513 +1510 +3767 +3753 +3538 +3588 +4228 +846 +2532 +2983 +3588 +2440 +846 +2532 +377 +3825 +3004 +846 +1097 +5101 +4160 +4771 +4771 +5455 +1473 +3588 +1320 +2532 +3588 +2962 +2532 +2573 +3004 +1063 +1510 +3767 +1487 +1473 +3588 +2962 +2532 +3588 +1320 +3538 +4771 +3588 +4228 +2532 +4771 +3784 +3538 +240 +3588 +4228 +1063 +5262 +1325 +4771 +2443 +2531 +1473 +4160 +4771 +2532 +4771 +4160 +281 +281 +3004 +4771 +3756 +1510 +1401 +3173 +3588 +2962 +846 +3761 +652 +3173 +3588 +3992 +846 +1487 +3778 +1492 +3107 +1510 +1437 +4160 +846 +3756 +4012 +3956 +4771 +3004 +1473 +1492 +5101 +1586 +235 +2443 +3588 +1124 +4137 +3588 +5176 +1473 +3588 +740 +1869 +1909 +1473 +3588 +4418 +846 +575 +737 +3004 +4771 +4253 +3588 +1096 +2443 +4100 +3752 +1096 +3754 +1473 +1510 +281 +281 +3004 +4771 +3588 +2983 +302 +5100 +3992 +1473 +2983 +1161 +3588 +1473 +2983 +2983 +3588 +3992 +1473 +3778 +3004 +2424 +5015 +3588 +4151 +2532 +3140 +2532 +3004 +281 +281 +3004 +4771 +3754 +1520 +1537 +4771 +3860 +1473 +991 +1519 +240 +3588 +3101 +639 +4012 +5101 +3004 +1510 +345 +1520 +1537 +3588 +3101 +846 +1722 +3588 +2859 +3588 +2424 +3739 +25 +3588 +2424 +3767 +3506 +3778 +4613 +4074 +2532 +3004 +846 +3004 +5101 +1510 +4012 +3739 +3004 +1565 +377 +3779 +1909 +3588 +4738 +3588 +2424 +3004 +846 +2962 +5101 +1510 +3767 +611 +3588 +2424 +1510 +1565 +3739 +1473 +911 +3588 +5596 +2532 +1325 +846 +3767 +911 +3588 +5596 +2983 +2532 +1325 +2455 +4613 +2469 +2532 +3326 +3588 +5596 +5119 +1525 +1519 +1565 +3588 +4567 +3767 +3004 +846 +2424 +3739 +4160 +4160 +5032 +1161 +1097 +3762 +3588 +345 +3778 +4314 +5101 +3004 +846 +1063 +5100 +1380 +1893 +3588 +1101 +2192 +2455 +3754 +3004 +846 +2424 +59 +3739 +5532 +2192 +1519 +3588 +1859 +2228 +2443 +3588 +4434 +5100 +1325 +3767 +2983 +3588 +5596 +1565 +1831 +2117 +1161 +1510 +3571 +3767 +3753 +1831 +3004 +2424 +3568 +1392 +3588 +5207 +3588 +444 +2532 +3588 +2316 +1392 +1722 +846 +1487 +3588 +2316 +1392 +1722 +846 +2532 +3588 +2316 +1392 +846 +1722 +846 +2532 +2117 +1392 +846 +5040 +2089 +3398 +3326 +4771 +1510 +2212 +1473 +2532 +2531 +3004 +3588 +2453 +3754 +3699 +1473 +5217 +2064 +4771 +3756 +1410 +2532 +4771 +3004 +737 +1785 +2537 +1325 +4771 +2443 +25 +240 +2531 +25 +4771 +2443 +2532 +4771 +25 +240 +1722 +3778 +1097 +3956 +3754 +1699 +3101 +1510 +1437 +26 +2192 +1722 +240 +3004 +846 +4613 +4074 +2962 +4226 +5217 +611 +2424 +3699 +5217 +1473 +3568 +190 +3756 +1410 +1161 +190 +5305 +3004 +846 +4074 +2962 +1223 +5101 +3756 +1410 +4771 +190 +737 +3588 +5590 +1473 +5228 +4771 +5087 +611 +2424 +3588 +5590 +4771 +5228 +1473 +5087 +281 +281 +3004 +4771 +3756 +3361 +220 +5455 +2193 +3739 +720 +1473 +5151 +3361 +5015 +4771 +3588 +2588 +4100 +1519 +3588 +2316 +2532 +1519 +1473 +4100 +1722 +3588 +3614 +3588 +3962 +1473 +3438 +4183 +1510 +1161 +1487 +3361 +302 +3004 +4771 +3754 +4198 +2090 +5117 +4771 +2532 +1437 +4198 +2532 +2090 +5117 +4771 +3825 +2064 +2532 +3880 +4771 +4314 +1683 +2443 +3699 +1510 +1473 +2532 +4771 +1510 +2532 +3699 +1473 +5217 +1492 +3588 +3598 +3004 +846 +2381 +2962 +3756 +1492 +4226 +5217 +4459 +1492 +3588 +3598 +3004 +846 +2424 +1473 +1510 +3588 +3598 +2532 +3588 +225 +2532 +3588 +2222 +3762 +2064 +4314 +3588 +3962 +1487 +3361 +1223 +1473 +1487 +1097 +1473 +302 +2532 +3588 +3962 +1473 +1492 +575 +737 +1097 +846 +2532 +3708 +3004 +846 +5376 +2962 +1166 +1473 +3588 +3962 +2532 +714 +1473 +3004 +846 +3588 +2424 +5118 +5550 +3326 +4771 +1510 +2532 +3756 +1097 +1473 +5376 +3588 +3708 +1473 +3708 +3588 +3962 +4459 +4771 +3004 +1166 +1473 +3588 +3962 +3756 +4100 +3754 +1473 +1722 +3588 +3962 +2532 +3588 +3962 +1722 +1473 +1510 +3588 +4487 +3739 +1473 +3004 +4771 +575 +1683 +3756 +2980 +1161 +3588 +3962 +1722 +1473 +3306 +4160 +3588 +2041 +846 +4100 +1473 +3754 +1473 +1722 +3588 +3962 +2532 +3588 +3962 +1722 +1473 +1161 +1487 +3361 +1223 +3588 +2041 +846 +4100 +281 +281 +3004 +4771 +3588 +4100 +1519 +1473 +3588 +2041 +3739 +1473 +4160 +2548 +4160 +2532 +3173 +3778 +4160 +3754 +1473 +4314 +3588 +3962 +4198 +2532 +5100 +302 +3739 +154 +1722 +3588 +3686 +1473 +3778 +4160 +2443 +1392 +3588 +3962 +1722 +3588 +5207 +1437 +5100 +154 +1473 +1722 +3588 +3686 +1473 +1473 +4160 +1437 +25 +1473 +3588 +1785 +3588 +1699 +5083 +2504 +2065 +3588 +3962 +2532 +243 +3875 +1325 +4771 +2443 +1510 +3326 +4771 +1519 +3588 +165 +3588 +4151 +3588 +225 +3739 +2983 +3588 +2889 +3756 +1410 +3754 +3756 +2334 +846 +3761 +1097 +4771 +1097 +846 +3754 +3844 +4771 +3306 +2532 +1722 +4771 +1510 +3756 +863 +4771 +3737 +2064 +4314 +4771 +2532 +2089 +3398 +3588 +2889 +1473 +3765 +2334 +1161 +4771 +2334 +1473 +3754 +1473 +2198 +2532 +4771 +2198 +1722 +1565 +3588 +2250 +1097 +4771 +3754 +1473 +1722 +3588 +3962 +1473 +2532 +4771 +1722 +1473 +2504 +1722 +4771 +3588 +2192 +3588 +1785 +1473 +2532 +5083 +846 +1565 +1510 +3588 +25 +1473 +1161 +3588 +25 +1473 +25 +5259 +3588 +3962 +1473 +2504 +25 +846 +2532 +1718 +846 +1683 +3004 +846 +2455 +3756 +3588 +2469 +2962 +2532 +5101 +1096 +3754 +3195 +1473 +1718 +4572 +2532 +3780 +3588 +2889 +611 +2424 +2532 +3004 +846 +1437 +5100 +25 +1473 +3588 +3056 +1473 +5083 +2532 +3588 +3962 +1473 +25 +846 +2532 +4314 +846 +2064 +2532 +3438 +3844 +846 +4160 +3588 +3361 +25 +1473 +3588 +3056 +1473 +3756 +5083 +2532 +3588 +3056 +3739 +191 +3756 +1510 +1699 +235 +3588 +3992 +1473 +3962 +3778 +2980 +4771 +3844 +4771 +3306 +1161 +3588 +3875 +3588 +4151 +3588 +40 +3739 +3992 +3588 +3962 +1722 +3588 +3686 +1473 +1565 +4771 +1321 +3956 +2532 +5279 +4771 +3956 +3739 +3004 +4771 +1473 +1515 +863 +4771 +1515 +3588 +1699 +1325 +4771 +3756 +2531 +3588 +2889 +1325 +1473 +1325 +4771 +3361 +5015 +4771 +3588 +2588 +3366 +1168 +191 +3754 +1473 +3004 +4771 +5217 +2532 +2064 +4314 +4771 +1487 +25 +1473 +302 +5463 +3754 +4198 +4314 +3588 +3962 +3754 +3588 +3962 +3173 +1473 +1510 +2532 +3568 +2046 +4771 +4250 +1096 +2443 +3752 +1096 +4100 +3765 +4183 +2980 +3326 +4771 +1063 +2064 +3588 +3588 +2889 +758 +2532 +1722 +1473 +3756 +2192 +3762 +235 +2443 +1097 +3588 +2889 +3754 +25 +3588 +3962 +2532 +2531 +1781 +1473 +3588 +3962 +3779 +4160 +1453 +71 +1782 +1473 +1510 +3588 +288 +3588 +228 +2532 +3588 +3962 +1473 +3588 +1092 +1510 +3956 +2814 +1722 +1473 +3361 +5342 +2590 +142 +846 +2532 +3956 +3588 +2590 +5342 +2508 +846 +2443 +2590 +4119 +5342 +2235 +4771 +2513 +1510 +1223 +3588 +3056 +3739 +2980 +4771 +3306 +1722 +1473 +2504 +1722 +4771 +2531 +3588 +2814 +3756 +1410 +2590 +5342 +575 +1438 +1437 +3361 +3306 +1722 +3588 +288 +3779 +3761 +4771 +1437 +3361 +1722 +1473 +3306 +1473 +1510 +3588 +288 +4771 +3588 +2814 +3588 +3306 +1722 +1473 +2504 +1722 +846 +3778 +5342 +2590 +4183 +3754 +5565 +1473 +3756 +1410 +4160 +3762 +1437 +3361 +5100 +3306 +1722 +1473 +906 +1854 +5613 +3588 +2814 +2532 +3583 +2532 +4863 +846 +2532 +1519 +3588 +4442 +906 +2532 +2545 +1437 +3306 +1722 +1473 +2532 +3588 +4487 +1473 +1722 +4771 +3306 +1437 +3739 +2309 +154 +2532 +1096 +4771 +1722 +3778 +1392 +3588 +3962 +1473 +2443 +2590 +4183 +5342 +2532 +1096 +1699 +3101 +2531 +25 +1473 +3588 +3962 +2504 +4771 +25 +3306 +1722 +3588 +26 +3588 +1699 +1437 +3588 +1785 +1473 +5083 +3306 +1722 +3588 +26 +1473 +2531 +1473 +3588 +3962 +1473 +3588 +1785 +5083 +2532 +3306 +1722 +846 +3588 +26 +3778 +2980 +4771 +2443 +3588 +5479 +3588 +1699 +1722 +4771 +1510 +2532 +3588 +5479 +4771 +4137 +3778 +1510 +3588 +1785 +3588 +1699 +2443 +25 +240 +2531 +25 +4771 +3173 +3778 +26 +3762 +2192 +2443 +5100 +3588 +5590 +846 +5087 +5228 +3588 +5384 +846 +4771 +5384 +1473 +1510 +1437 +4160 +3739 +1473 +1781 +4771 +3765 +3004 +4771 +1401 +3754 +3588 +1401 +3756 +1492 +5101 +4160 +846 +3588 +2962 +1161 +4771 +2046 +5384 +3754 +3956 +3739 +191 +3844 +3588 +3962 +1473 +1107 +4771 +3756 +4771 +1473 +1586 +235 +1473 +1586 +4771 +2532 +5087 +4771 +2443 +4771 +5217 +2532 +2590 +5342 +2532 +3588 +2590 +4771 +3306 +2443 +5100 +302 +3739 +154 +3588 +3962 +1722 +3588 +3686 +1473 +1325 +4771 +3778 +1781 +4771 +2443 +25 +240 +1487 +3588 +2889 +4771 +3404 +1097 +3754 +1473 +4412 +4771 +3404 +1487 +1537 +3588 +2889 +1510 +302 +3588 +2889 +3588 +2398 +5368 +1161 +3754 +1537 +3588 +2889 +3756 +1510 +235 +1473 +1586 +4771 +1537 +3588 +2889 +1223 +3778 +3404 +4771 +3588 +2889 +3421 +3588 +3056 +3739 +1473 +3004 +4771 +3756 +1510 +1401 +3173 +3588 +2962 +846 +1487 +1473 +1377 +2532 +4771 +1377 +1487 +3588 +3056 +1473 +5083 +2532 +3588 +5212 +5083 +235 +3778 +3956 +4160 +1519 +4771 +1223 +3588 +3686 +1473 +3754 +3756 +1492 +3588 +3992 +1473 +1487 +3361 +2064 +2532 +2980 +846 +266 +3756 +2192 +1161 +3568 +4392 +3756 +2192 +4012 +3588 +266 +846 +3588 +1473 +3404 +2532 +3588 +3962 +1473 +3404 +1487 +3588 +2041 +3361 +4160 +1722 +846 +3739 +3762 +243 +4160 +266 +3756 +2192 +1161 +3568 +2532 +3708 +2532 +3404 +2532 +1473 +2532 +3588 +3962 +1473 +235 +2443 +4137 +3588 +3056 +3588 +1722 +3588 +3551 +846 +1125 +3754 +3404 +1473 +1432 +3752 +2064 +3588 +3875 +3739 +1473 +3992 +4771 +3844 +3588 +3962 +3588 +4151 +3588 +225 +3739 +3844 +3588 +3962 +1607 +1565 +3140 +4012 +1473 +1161 +2532 +4771 +3140 +3754 +575 +746 +3326 +1473 +1510 +3778 +2980 +4771 +2443 +3361 +4624 +656 +4160 +4771 +235 +2064 +5610 +2443 +3956 +3588 +615 +4771 +1380 +2999 +4374 +3588 +2316 +2532 +3778 +4160 +3754 +3756 +1097 +3588 +3962 +3761 +1473 +235 +3778 +2980 +4771 +2443 +3752 +2064 +3588 +5610 +846 +3421 +846 +3754 +1473 +3004 +4771 +1161 +3778 +4771 +1537 +746 +3756 +3004 +3754 +3326 +4771 +1510 +1161 +3568 +5217 +4314 +3588 +3992 +1473 +2532 +3762 +1537 +4771 +2065 +1473 +4226 +5217 +235 +3754 +3778 +2980 +4771 +3588 +3077 +4137 +4771 +3588 +2588 +235 +1473 +3588 +225 +3004 +4771 +4851 +4771 +2443 +1473 +565 +1063 +1437 +3361 +565 +3588 +3875 +3756 +3361 +2064 +4314 +4771 +1161 +1437 +4198 +3992 +846 +4314 +4771 +2532 +2064 +1565 +1651 +3588 +2889 +4012 +266 +2532 +4012 +1343 +2532 +4012 +2920 +3303 +4012 +266 +3754 +3756 +4100 +1519 +1473 +1161 +4012 +1343 +3754 +4314 +3588 +3962 +5217 +2532 +3765 +2334 +1473 +1161 +4012 +2920 +3754 +3588 +758 +3588 +2889 +3778 +2919 +2089 +2192 +4183 +4771 +3004 +235 +3756 +1410 +941 +737 +1161 +3752 +2064 +1565 +3588 +4151 +3588 +225 +3594 +4771 +1519 +3588 +225 +3956 +1063 +3756 +2980 +575 +1438 +235 +3745 +191 +2980 +2532 +3588 +2064 +312 +4771 +1565 +1473 +1392 +3754 +1537 +3588 +1699 +2983 +2532 +312 +4771 +3956 +3745 +2192 +3588 +3962 +1699 +1510 +1223 +3778 +3004 +3754 +1537 +3588 +1699 +2983 +2532 +312 +4771 +3398 +2532 +3765 +2334 +1473 +2532 +3825 +3398 +2532 +3708 +1473 +3767 +3004 +1537 +3588 +3101 +846 +4314 +240 +5101 +1510 +3778 +3739 +3004 +1473 +3398 +2532 +3756 +2334 +1473 +2532 +3825 +3398 +2532 +3708 +1473 +2532 +3754 +5217 +4314 +3588 +3962 +3767 +3004 +5101 +1510 +3778 +3739 +3004 +3588 +3398 +3756 +1492 +5101 +2980 +1097 +2424 +3754 +2309 +846 +2065 +2532 +3004 +846 +4012 +3778 +2212 +3326 +240 +3754 +3004 +3398 +2532 +3756 +2334 +1473 +2532 +3825 +3398 +2532 +3708 +1473 +281 +281 +3004 +4771 +3754 +2799 +2532 +2354 +4771 +1161 +3588 +2889 +5463 +4771 +3076 +235 +3588 +3077 +4771 +1519 +5479 +1096 +3752 +3588 +1135 +5088 +3077 +2192 +3754 +2064 +3588 +5610 +846 +1161 +3752 +1080 +3588 +3813 +3765 +3421 +3588 +2347 +1223 +3588 +5479 +3754 +1080 +444 +1519 +3588 +2889 +3767 +3303 +2532 +4771 +3568 +3077 +2192 +1161 +3825 +3708 +4771 +2532 +5463 +4771 +3588 +2588 +2532 +3588 +5479 +4771 +3762 +142 +575 +4771 +2532 +1722 +1565 +3588 +2250 +1473 +3756 +2065 +3762 +281 +281 +3004 +4771 +302 +5100 +154 +3588 +3962 +1325 +4771 +1722 +3588 +3686 +1473 +2193 +737 +3756 +154 +3762 +1722 +3588 +3686 +1473 +154 +2532 +2983 +2443 +3588 +5479 +4771 +1510 +4137 +3778 +1722 +3942 +2980 +4771 +2064 +5610 +3753 +3765 +1722 +3942 +2980 +4771 +235 +3954 +4012 +3588 +3962 +518 +4771 +1722 +1565 +3588 +2250 +1722 +3588 +3686 +1473 +154 +2532 +3756 +3004 +4771 +3754 +1473 +2065 +3588 +3962 +4012 +4771 +1063 +846 +3588 +3962 +5368 +4771 +3754 +4771 +1473 +5368 +2532 +4100 +3754 +1473 +3844 +3588 +2316 +1831 +1831 +1537 +3588 +3962 +2532 +2064 +1519 +3588 +2889 +3825 +863 +3588 +2889 +2532 +4198 +4314 +3588 +3962 +3004 +3588 +3101 +846 +3708 +3568 +1722 +3954 +2980 +2532 +3942 +3762 +3004 +3568 +1492 +3754 +1492 +3956 +2532 +3756 +5532 +2192 +2443 +5100 +4771 +2065 +1722 +3778 +4100 +3754 +575 +2316 +1831 +611 +846 +2424 +737 +4100 +3708 +2064 +5610 +2532 +2064 +2443 +4650 +1538 +1519 +3588 +2398 +2504 +3441 +863 +2532 +3756 +1510 +3441 +3754 +3588 +3962 +3326 +1473 +1510 +3778 +2980 +4771 +2443 +1722 +1473 +1515 +2192 +1722 +3588 +2889 +2347 +2192 +235 +2293 +1473 +3528 +3588 +2889 +3778 +2980 +2424 +2532 +1869 +3588 +3788 +846 +1519 +3588 +3772 +3004 +3962 +2064 +3588 +5610 +1392 +4771 +3588 +5207 +2443 +3588 +5207 +1392 +4771 +2531 +1325 +846 +1849 +3956 +4561 +2443 +3956 +3739 +1325 +846 +1325 +846 +2222 +166 +1161 +3778 +1510 +3588 +166 +2222 +2443 +1097 +4771 +3588 +3441 +228 +2316 +2532 +3739 +649 +2424 +5547 +1473 +4771 +1392 +1909 +3588 +1093 +5048 +3588 +2041 +3739 +1325 +1473 +2443 +4160 +2532 +3962 +3568 +1392 +1473 +4771 +3844 +4572 +3588 +1391 +3739 +2192 +4253 +3588 +3588 +2889 +1510 +3844 +4771 +5319 +4771 +3588 +3686 +3588 +444 +3739 +1325 +1473 +1537 +3588 +2889 +4671 +1510 +2504 +846 +1325 +2532 +3588 +3056 +4771 +5083 +3568 +1097 +3754 +3956 +3745 +1325 +1473 +3844 +4771 +1510 +3754 +3588 +4487 +3739 +1325 +1473 +1325 +846 +2532 +846 +2983 +2532 +1097 +230 +3754 +3844 +4771 +1831 +2532 +4100 +3754 +4771 +1473 +649 +1473 +4012 +846 +2065 +3756 +4012 +3588 +2889 +2065 +235 +4012 +3739 +1325 +1473 +3754 +4671 +1510 +2532 +3588 +1699 +3956 +4674 +1510 +2532 +3588 +4674 +1699 +2532 +1392 +1722 +846 +2532 +3765 +1510 +1722 +3588 +2889 +2532 +846 +1722 +3588 +2889 +1510 +2504 +4314 +4771 +2064 +3962 +40 +5083 +846 +1722 +3588 +3686 +4771 +3739 +1325 +1473 +2443 +1510 +1520 +2531 +1473 +3753 +1510 +3326 +846 +1473 +5083 +846 +1722 +3588 +3686 +4771 +3739 +1325 +1473 +2532 +5442 +2532 +3762 +1537 +846 +622 +1487 +3361 +3588 +5207 +3588 +684 +2443 +3588 +1124 +4137 +1161 +3568 +4314 +4771 +2064 +2532 +3778 +2980 +1722 +3588 +2889 +2443 +2192 +3588 +5479 +3588 +1699 +4137 +1722 +1438 +1473 +1325 +846 +3588 +3056 +4771 +2532 +3588 +2889 +3404 +846 +3754 +3756 +1510 +1537 +3588 +2889 +2531 +1473 +3756 +1510 +1537 +3588 +2889 +3756 +2065 +2443 +142 +846 +1537 +3588 +2889 +235 +2443 +5083 +846 +1537 +3588 +4190 +1537 +3588 +2889 +3756 +1510 +2531 +1473 +3756 +1510 +1537 +3588 +2889 +37 +846 +1722 +3588 +225 +3588 +3056 +3588 +4674 +225 +1510 +2531 +1473 +649 +1519 +3588 +2889 +2504 +649 +846 +1519 +3588 +2889 +2532 +5228 +846 +1473 +37 +1683 +2443 +1510 +37 +2532 +846 +1722 +225 +1161 +3756 +4012 +3778 +2065 +3440 +235 +2532 +4012 +3588 +4100 +1223 +3588 +3056 +846 +1519 +1473 +2443 +3956 +1520 +1510 +2531 +3962 +4771 +1722 +1473 +2504 +1722 +4771 +2443 +2532 +846 +1722 +1473 +1510 +2443 +3588 +2889 +4100 +3754 +4771 +1473 +649 +2504 +3588 +1391 +3739 +1325 +1473 +1325 +846 +2443 +1510 +1520 +2531 +1473 +1520 +1473 +1722 +846 +2532 +4771 +1722 +1473 +2443 +1510 +5048 +1519 +1520 +2443 +1097 +3588 +2889 +3754 +4771 +1473 +649 +2532 +25 +846 +2531 +1473 +25 +3962 +3739 +1325 +1473 +2309 +2443 +3699 +1510 +1473 +2548 +1510 +3326 +1473 +2443 +2334 +3588 +1391 +3588 +1699 +3739 +1325 +1473 +3754 +25 +1473 +4253 +2602 +2889 +3962 +1342 +2532 +3588 +2889 +4771 +3756 +1097 +1161 +1473 +4771 +1097 +2532 +3778 +1097 +3754 +4771 +1473 +649 +2532 +1107 +846 +3588 +3686 +4771 +2532 +1107 +2443 +3588 +26 +3739 +25 +1473 +1722 +846 +1510 +2504 +1722 +846 +3778 +3004 +2424 +1831 +4862 +3588 +3101 +846 +4008 +3588 +5493 +3588 +2748 +3699 +1510 +2779 +1519 +3739 +1525 +846 +2532 +3588 +3101 +846 +1161 +1492 +2532 +2455 +3588 +3860 +846 +3588 +5117 +3754 +4178 +4863 +2424 +1563 +3326 +3588 +3101 +846 +3767 +3588 +2455 +2983 +3588 +4686 +2532 +1537 +3588 +749 +2532 +1537 +3588 +5330 +5257 +2064 +1563 +3326 +5322 +2532 +2985 +2532 +3696 +3767 +2424 +1492 +3956 +3588 +2064 +1909 +846 +1831 +2532 +3004 +846 +5101 +2212 +611 +846 +2424 +3588 +3480 +3004 +846 +1473 +1510 +1161 +2476 +2532 +2455 +3588 +3860 +846 +3326 +846 +3767 +5613 +3004 +846 +1473 +1510 +565 +1519 +3588 +3694 +2532 +4098 +5476 +3767 +3825 +1905 +846 +5101 +2212 +1161 +3588 +3004 +2424 +3588 +3480 +611 +2424 +3004 +4771 +3754 +1473 +1510 +3767 +1487 +1473 +2212 +863 +3778 +5217 +2443 +4137 +3588 +3056 +3739 +3004 +3754 +3739 +1325 +1473 +3756 +622 +1537 +846 +3762 +3767 +4613 +4074 +2192 +3162 +1670 +846 +2532 +3817 +3588 +3588 +749 +1401 +2532 +609 +846 +3588 +5621 +3588 +1188 +1161 +1510 +3686 +3588 +1401 +3124 +3767 +3004 +3588 +2424 +3588 +4074 +906 +3588 +3162 +1519 +3588 +2336 +3588 +4221 +3739 +1325 +1473 +3588 +3962 +3756 +3361 +4095 +846 +3767 +3588 +4686 +2532 +3588 +5506 +2532 +3588 +5257 +3588 +2453 +4815 +3588 +2424 +2532 +1210 +846 +2532 +71 +4314 +452 +4412 +1063 +1510 +3995 +3588 +2533 +3739 +1510 +749 +3588 +1763 +1565 +1161 +1510 +2533 +3588 +4823 +3588 +2453 +3754 +4851 +1520 +444 +599 +5228 +3588 +2992 +1161 +190 +3588 +2424 +4613 +4074 +2532 +243 +3101 +1161 +3588 +3101 +1565 +1510 +1110 +3588 +749 +2532 +4897 +3588 +2424 +1519 +3588 +833 +3588 +749 +1161 +3588 +4074 +2476 +4314 +3588 +2374 +1854 +3767 +1831 +3588 +3101 +3588 +243 +3588 +1110 +3588 +749 +2532 +3004 +3588 +2377 +2532 +1521 +3588 +4074 +3767 +3004 +3588 +4074 +3588 +3814 +3588 +2377 +3361 +2532 +4771 +1537 +3588 +3101 +3588 +444 +3778 +1510 +3004 +1565 +3756 +1510 +1161 +2476 +3588 +1401 +2532 +3588 +5257 +439 +4160 +3754 +5592 +1510 +2532 +2328 +1161 +2532 +3588 +4074 +3326 +846 +1510 +2476 +2532 +2328 +3767 +3588 +749 +2065 +3588 +2424 +4012 +3588 +3101 +846 +2532 +4012 +3588 +1322 +846 +611 +846 +2424 +1473 +3954 +2980 +3588 +2889 +1473 +3842 +1321 +1722 +4864 +2532 +1722 +3588 +2411 +3699 +3956 +3588 +2453 +4905 +2532 +1722 +2927 +2980 +3762 +5101 +1473 +2065 +2065 +3588 +191 +5101 +2980 +846 +3708 +3778 +1492 +3739 +3004 +1473 +1161 +3778 +846 +3004 +1520 +3936 +3588 +5257 +1325 +4475 +3588 +2424 +3004 +3779 +611 +3588 +749 +611 +846 +2424 +1487 +2560 +2980 +3140 +4012 +3588 +2556 +1161 +1487 +2573 +5101 +1473 +1194 +3767 +649 +846 +3588 +452 +1210 +4314 +2533 +3588 +749 +1161 +4613 +4074 +1510 +2476 +2532 +2328 +3767 +3004 +846 +3361 +2532 +4771 +1537 +3588 +3101 +846 +1510 +720 +1565 +2532 +3004 +3756 +1510 +3004 +1520 +1537 +3588 +1401 +3588 +749 +1510 +4773 +3739 +609 +4074 +3588 +5621 +3756 +1473 +3708 +4771 +1722 +3588 +2779 +3326 +846 +3767 +3825 +720 +4074 +2532 +2112 +220 +5455 +3767 +71 +3588 +2424 +575 +3588 +2533 +1519 +3588 +4232 +1161 +1510 +4404 +2532 +846 +3756 +1525 +1519 +3588 +4232 +2443 +3361 +3392 +235 +5315 +3588 +3957 +3767 +1831 +3588 +4091 +1854 +4314 +846 +2532 +5346 +5101 +2724 +3588 +444 +3778 +5342 +611 +2532 +3004 +846 +1487 +3361 +1510 +4160 +3778 +2556 +302 +3756 +4771 +3860 +846 +3767 +3004 +846 +3588 +4091 +2983 +846 +4771 +2532 +2596 +3588 +3551 +4771 +2919 +846 +3004 +846 +3588 +2453 +1473 +3756 +1832 +615 +3762 +2443 +3588 +3056 +3588 +2424 +4137 +3739 +3004 +4591 +4169 +2288 +3195 +599 +3767 +1525 +3825 +1519 +3588 +4232 +3588 +4091 +2532 +5455 +3588 +2424 +2532 +3004 +846 +4771 +1510 +3588 +935 +3588 +2453 +611 +2424 +575 +1438 +4771 +3778 +3004 +2228 +243 +3004 +4771 +4012 +1473 +611 +3588 +4091 +3385 +1473 +2453 +1510 +3588 +1484 +3588 +4674 +2532 +3588 +749 +3860 +4771 +1473 +5101 +4160 +611 +2424 +3588 +932 +3588 +1699 +3756 +1510 +1537 +3588 +2889 +3778 +1487 +1537 +3588 +2889 +3778 +1510 +3588 +932 +3588 +1699 +302 +3588 +5257 +3588 +1699 +75 +2443 +3361 +3860 +3588 +2453 +1161 +3568 +3588 +932 +3588 +1699 +3756 +1510 +1782 +3767 +3004 +846 +3588 +4091 +3766 +935 +1510 +4771 +611 +3588 +2424 +4771 +3004 +3754 +935 +1510 +1473 +1519 +3778 +1080 +2532 +1519 +3778 +2064 +1519 +3588 +2889 +2443 +3140 +3588 +225 +3956 +3588 +1510 +1537 +3588 +225 +191 +1473 +3588 +5456 +3004 +846 +3588 +4091 +5101 +1510 +225 +2532 +3778 +3004 +3825 +1831 +4314 +3588 +2453 +2532 +3004 +846 +1473 +3762 +2147 +1722 +846 +156 +1161 +1510 +4914 +4771 +2443 +1520 +630 +4771 +1722 +3588 +3957 +3767 +1014 +630 +4771 +3588 +935 +3588 +2453 +3767 +2905 +3825 +3004 +3361 +3778 +235 +3588 +912 +1161 +1510 +3588 +912 +3027 +3767 +5119 +2983 +3588 +4091 +3588 +2424 +2532 +3146 +2532 +3588 +4757 +4120 +4735 +1537 +173 +2007 +846 +3588 +2776 +2532 +2440 +4210 +4016 +846 +2532 +2064 +4314 +846 +2532 +3004 +5463 +3588 +935 +3588 +2453 +2532 +1325 +846 +4475 +2532 +1831 +3825 +1854 +3588 +4091 +2532 +3004 +846 +3708 +71 +4771 +846 +1854 +2443 +1097 +3754 +3762 +156 +2147 +1722 +846 +3767 +1831 +3588 +2424 +1854 +5409 +3588 +174 +4735 +2532 +3588 +4210 +2440 +2532 +3004 +846 +3708 +3588 +444 +3767 +3753 +3708 +846 +3588 +749 +2532 +3588 +5257 +2905 +3004 +4717 +4717 +3004 +846 +3588 +4091 +2983 +846 +4771 +2532 +4717 +1063 +1473 +3756 +2147 +1722 +846 +156 +611 +846 +3588 +2453 +1473 +3551 +2192 +2532 +2596 +3588 +3551 +3784 +599 +3754 +5207 +2316 +1438 +4160 +3767 +3753 +191 +3588 +4091 +3778 +3588 +3056 +3123 +5399 +2532 +1525 +1519 +3588 +4232 +3825 +2532 +3004 +3588 +2424 +4159 +1510 +4771 +1161 +3588 +2424 +612 +3756 +1325 +846 +3767 +3004 +846 +3588 +4091 +3756 +1473 +2980 +3756 +1492 +3754 +1849 +2192 +630 +4771 +2532 +1849 +2192 +4717 +4771 +611 +2424 +3756 +2192 +1849 +3762 +2596 +1473 +1487 +3361 +1510 +1325 +4771 +509 +1223 +3778 +3588 +3860 +1473 +4771 +3173 +266 +2192 +1537 +3778 +3588 +4091 +2212 +630 +846 +1161 +3588 +2453 +2905 +3004 +1437 +3778 +630 +3756 +1510 +5384 +3588 +2541 +3956 +3588 +935 +1438 +4160 +483 +3588 +2541 +3767 +3588 +4091 +191 +3588 +3056 +3778 +71 +1854 +3588 +2424 +2532 +2523 +1909 +968 +1519 +5117 +3004 +3038 +1161 +1447 +1042 +1161 +1510 +3904 +3588 +3957 +5610 +1510 +5613 +1623 +2532 +3004 +3588 +2453 +3708 +3588 +935 +4771 +3767 +2905 +1565 +142 +142 +4717 +846 +3004 +846 +3588 +4091 +3588 +935 +4771 +4717 +611 +3588 +749 +3756 +2192 +935 +1487 +3361 +2541 +3767 +5119 +3860 +846 +846 +2443 +4717 +3767 +3880 +3588 +2424 +2532 +941 +1438 +3588 +4716 +1831 +1519 +3588 +3004 +2898 +5117 +3739 +3004 +1447 +1115 +3699 +846 +4717 +2532 +3326 +846 +243 +1417 +1782 +2532 +1782 +1161 +3319 +3588 +2424 +1161 +1125 +2532 +5102 +3588 +4091 +2532 +5087 +1909 +3588 +4716 +1161 +1510 +1125 +2424 +3588 +3480 +3588 +935 +3588 +2453 +3767 +3778 +3588 +5102 +314 +4183 +3588 +2453 +3754 +1451 +3588 +4172 +1510 +3588 +5117 +3699 +4717 +3588 +2424 +2532 +1510 +1125 +1447 +4515 +1676 +3767 +3004 +3588 +4091 +3588 +749 +3588 +2453 +3361 +1125 +3588 +935 +3588 +2453 +235 +3754 +1565 +3004 +935 +3588 +2453 +1510 +611 +3588 +4091 +3739 +1125 +1125 +3767 +3753 +3588 +4757 +4717 +3588 +2424 +2983 +3588 +2440 +846 +2532 +4160 +5064 +3313 +1538 +4757 +3313 +2532 +3588 +5509 +1161 +1510 +3588 +5509 +729 +1537 +3588 +509 +5307 +1223 +3650 +3767 +3004 +4314 +240 +3361 +4977 +846 +235 +2975 +4012 +846 +5101 +1510 +2443 +3588 +1124 +4137 +1266 +3588 +2440 +1473 +1438 +2532 +1909 +3588 +2441 +1473 +906 +2819 +3767 +3303 +3588 +4757 +3778 +4160 +1161 +2476 +3844 +3588 +4716 +3588 +2424 +3588 +3384 +846 +2532 +3588 +79 +3588 +3384 +846 +3137 +3588 +3588 +2832 +2532 +3137 +3588 +3094 +3767 +2424 +3708 +3588 +3384 +2532 +3588 +3101 +3936 +3739 +25 +3004 +3588 +3384 +1135 +3708 +3588 +5207 +4771 +1534 +3004 +3588 +3101 +3708 +3588 +3384 +4771 +2532 +575 +1565 +3588 +5610 +2983 +3588 +3101 +846 +1519 +3588 +2398 +3326 +3778 +3588 +2424 +1492 +3754 +2235 +3956 +5055 +2443 +5048 +3588 +1124 +3004 +1372 +4632 +3690 +3324 +2749 +3767 +4699 +3324 +3588 +3690 +5301 +4060 +4374 +846 +3588 +4750 +3767 +3753 +2983 +3588 +3690 +3588 +2424 +3004 +5055 +2532 +2827 +3588 +2776 +3860 +3588 +4151 +3767 +3588 +2453 +1893 +3904 +1510 +2443 +3361 +3306 +1909 +3588 +4716 +3588 +4983 +1722 +3588 +4521 +1063 +1510 +3173 +3588 +2250 +1565 +3588 +4521 +2065 +3588 +4091 +2443 +2608 +846 +3588 +4628 +2532 +142 +3767 +2064 +3588 +4757 +2532 +3303 +2608 +3588 +4628 +3588 +4413 +2532 +3588 +243 +3588 +4957 +846 +1161 +1909 +3588 +2424 +2064 +5613 +3708 +2235 +846 +2348 +3756 +2608 +846 +3588 +4628 +235 +1520 +3588 +4757 +3057 +846 +3588 +4125 +3572 +2532 +1831 +2117 +129 +2532 +5204 +2532 +3588 +3708 +3140 +2532 +228 +1510 +846 +3588 +3141 +2532 +1565 +1492 +3754 +227 +3004 +2443 +2532 +4771 +4100 +1063 +1096 +3778 +2443 +3588 +1124 +4137 +3747 +846 +3756 +4937 +2532 +3825 +2087 +1124 +3004 +3708 +1519 +3739 +1574 +1161 +3326 +3778 +2065 +3588 +4091 +2501 +575 +707 +1510 +3101 +3588 +2424 +1161 +2928 +1223 +3588 +5401 +3588 +2453 +2443 +142 +3588 +4983 +3588 +2424 +2532 +2010 +3588 +4091 +3767 +2064 +2532 +142 +3588 +4983 +846 +1161 +2064 +2532 +3530 +3588 +2064 +4314 +846 +3571 +3588 +4413 +5342 +3395 +4666 +2532 +250 +5613 +3046 +1540 +3767 +2983 +3588 +4983 +3588 +2424 +2532 +1210 +846 +3608 +3326 +3588 +759 +2531 +1485 +1510 +3588 +2453 +1779 +1161 +1510 +1722 +3588 +5117 +3699 +4717 +2779 +2532 +1722 +3588 +2779 +3419 +2537 +1722 +3739 +3764 +3762 +1510 +5087 +3767 +1563 +1223 +3588 +3904 +3588 +2453 +3754 +1451 +1510 +3588 +3419 +5087 +3588 +2424 +1161 +3588 +1520 +3588 +4521 +3137 +3588 +3094 +2064 +4404 +1519 +3588 +3419 +4653 +2089 +1510 +2532 +991 +3588 +3037 +142 +1537 +3588 +3419 +3767 +5143 +2532 +2064 +4314 +4613 +4074 +2532 +4314 +3588 +243 +3101 +3739 +5368 +3588 +2424 +2532 +3004 +846 +142 +3588 +2962 +1537 +3588 +3419 +2532 +3756 +1492 +4226 +5087 +846 +3767 +1831 +3588 +4074 +2532 +3588 +243 +3101 +2532 +2064 +1519 +3588 +3419 +1161 +5143 +3588 +1417 +3674 +2532 +3588 +243 +3101 +4390 +5032 +3588 +4074 +2532 +2064 +4413 +1519 +3588 +3419 +2532 +3879 +991 +2749 +3588 +3608 +3305 +3756 +1525 +3767 +2064 +2532 +4613 +4074 +190 +846 +2532 +1525 +1519 +3588 +3419 +2532 +2334 +3588 +3608 +2749 +2532 +3588 +4676 +3739 +1510 +1909 +3588 +2776 +846 +3756 +3326 +3588 +3608 +2749 +235 +5565 +1794 +1519 +1520 +5117 +3767 +5119 +1525 +2532 +3588 +243 +3101 +3588 +2064 +4413 +1519 +3588 +3419 +2532 +3708 +2532 +4100 +1063 +3764 +1492 +3588 +1124 +3754 +1163 +846 +1537 +3498 +450 +3767 +565 +3825 +4314 +846 +3588 +3101 +1161 +3137 +2476 +4314 +3588 +3419 +1854 +2799 +3767 +5613 +2799 +3879 +1519 +3588 +3419 +2532 +2334 +1417 +32 +1722 +3022 +2516 +3699 +2749 +3588 +4983 +3588 +2424 +1520 +4314 +3588 +2776 +2532 +1520 +4314 +3588 +4228 +2532 +3004 +846 +1565 +1135 +5101 +2799 +3004 +846 +3754 +142 +3588 +2962 +1473 +2532 +3756 +1492 +4226 +5087 +846 +3778 +3004 +4762 +1519 +3588 +3694 +2532 +2334 +3588 +2424 +2476 +2532 +3756 +1492 +3754 +2424 +1510 +3004 +846 +2424 +1135 +5101 +2799 +5101 +2212 +1565 +1380 +3754 +3588 +2780 +1510 +3004 +846 +2962 +1487 +4771 +941 +846 +3004 +1473 +4226 +5087 +846 +2504 +846 +142 +3004 +846 +2424 +3137 +4762 +1565 +3004 +846 +1447 +4462 +3739 +3004 +1320 +3004 +846 +2424 +3361 +1473 +680 +1063 +3768 +305 +4314 +3588 +3962 +1161 +4198 +4314 +3588 +80 +1473 +2532 +3004 +846 +305 +4314 +3588 +3962 +1473 +2532 +3962 +4771 +2532 +2316 +1473 +2532 +2316 +4771 +2064 +3137 +3588 +3094 +518 +3588 +3101 +3754 +3708 +3588 +2962 +2532 +3778 +3004 +846 +3767 +1510 +3798 +3588 +2250 +1565 +3588 +1520 +4521 +2532 +3588 +2374 +2808 +3699 +1510 +3588 +3101 +1223 +3588 +5401 +3588 +2453 +2064 +3588 +2424 +2532 +2476 +1519 +3588 +3319 +2532 +3004 +846 +1515 +4771 +2532 +3778 +3004 +1166 +2532 +3588 +5495 +2532 +3588 +4125 +846 +3767 +5463 +3588 +3101 +3708 +3588 +2962 +3767 +3004 +846 +3588 +2424 +3825 +1515 +4771 +2531 +649 +1473 +3588 +3962 +2504 +3992 +4771 +2532 +3778 +3004 +1720 +2532 +3004 +846 +2983 +4151 +40 +302 +863 +5100 +3588 +266 +863 +846 +302 +5100 +2902 +2902 +1161 +2381 +1520 +1537 +3588 +1427 +3588 +3004 +1324 +3756 +1510 +3326 +846 +3753 +2064 +2424 +3767 +3004 +846 +3588 +243 +3101 +3708 +3588 +2962 +1161 +3588 +3004 +846 +1437 +3361 +3708 +1722 +3588 +5495 +846 +3588 +5179 +3588 +2247 +2532 +906 +3588 +1147 +1473 +1519 +3588 +5117 +3588 +2247 +2532 +906 +1473 +3588 +5495 +1519 +3588 +4125 +846 +3756 +3361 +4100 +2532 +3326 +2250 +3638 +3825 +1510 +2080 +3588 +3101 +846 +2532 +2381 +3326 +846 +2064 +3588 +2424 +3588 +2374 +2808 +2532 +2476 +1519 +3588 +3319 +2532 +3004 +1515 +4771 +1534 +3004 +3588 +2381 +5342 +3588 +1147 +4771 +5602 +2532 +3708 +3588 +5495 +1473 +2532 +5342 +3588 +5495 +4771 +2532 +906 +1519 +3588 +4125 +1473 +2532 +3361 +1096 +571 +235 +4103 +611 +2381 +2532 +3004 +846 +3588 +2962 +1473 +2532 +3588 +2316 +1473 +3004 +846 +3588 +2424 +3754 +3708 +1473 +4100 +3107 +3588 +3361 +3708 +2532 +4100 +3767 +3303 +2532 +4183 +243 +4592 +4160 +3588 +2424 +1799 +3588 +3101 +3739 +3756 +1510 +1125 +1722 +3588 +975 +3778 +1161 +3778 +1125 +2443 +4100 +3754 +2424 +1510 +3588 +5547 +3588 +5207 +3588 +2316 +2532 +2443 +4100 +2222 +2192 +1722 +3588 +3686 +846 +3326 +3778 +5319 +1438 +3825 +2424 +3588 +3101 +1909 +3588 +2281 +3588 +5085 +1161 +5319 +3779 +1510 +3674 +4613 +4074 +2532 +2381 +3588 +3004 +1324 +2532 +3482 +3588 +575 +2580 +3588 +1056 +2532 +3588 +3588 +2199 +2532 +243 +1537 +3588 +3101 +846 +1417 +3004 +846 +4613 +4074 +5217 +232 +3004 +846 +2064 +2532 +1473 +4862 +4771 +1831 +2532 +1684 +1519 +3588 +4143 +2532 +1722 +1565 +3588 +3571 +4084 +3762 +1161 +4405 +2235 +1096 +2476 +2424 +1519 +3588 +123 +3305 +3756 +1492 +3588 +3101 +3754 +2424 +1510 +3767 +3004 +846 +2424 +3813 +3361 +5100 +4371 +2192 +611 +846 +3756 +1161 +3588 +3004 +846 +906 +1519 +3588 +1188 +3313 +3588 +4143 +3588 +1350 +2532 +2147 +3767 +906 +2532 +3765 +846 +1670 +2480 +575 +3588 +4128 +3588 +2486 +3767 +3004 +3588 +3101 +1565 +3739 +25 +3588 +2424 +3588 +4074 +3588 +2962 +1510 +3767 +4613 +4074 +191 +3754 +3588 +2962 +1510 +3588 +1903 +1241 +1063 +1510 +1131 +2532 +906 +1438 +1519 +3588 +2281 +1161 +3588 +243 +3101 +3588 +4142 +2064 +1063 +3756 +1510 +3112 +575 +3588 +1093 +235 +5613 +575 +4083 +1250 +4951 +3588 +1350 +3588 +2486 +3767 +5613 +576 +1519 +3588 +1093 +991 +439 +2749 +2532 +3795 +1945 +2532 +740 +3004 +846 +3588 +2424 +5342 +575 +3588 +3795 +3739 +4084 +3568 +305 +4613 +4074 +2532 +1670 +3588 +1350 +1519 +3588 +1093 +3324 +2486 +3173 +1540 +4004 +5140 +2532 +5118 +1510 +3756 +4977 +3588 +1350 +3004 +846 +3588 +2424 +1205 +709 +3762 +3588 +3101 +5111 +1833 +846 +4771 +5101 +1510 +1492 +3754 +3588 +2962 +1510 +2064 +2424 +2532 +2983 +3588 +740 +2532 +1325 +846 +2532 +3588 +3795 +3668 +3778 +2235 +5154 +5319 +2424 +3588 +3101 +1453 +1537 +3498 +3767 +3753 +709 +3004 +3588 +4613 +4074 +3588 +2424 +4613 +2491 +25 +1473 +4119 +3778 +3004 +846 +3483 +2962 +4771 +1492 +3754 +5368 +4771 +3004 +846 +1006 +3588 +721 +1473 +3004 +846 +3825 +1208 +4613 +2491 +25 +1473 +3004 +846 +3483 +2962 +4771 +1492 +3754 +5368 +4771 +3004 +846 +4165 +3588 +4263 +1473 +3004 +846 +3588 +5154 +4613 +2491 +5368 +1473 +3076 +3588 +4074 +3754 +3004 +846 +3588 +5154 +5368 +1473 +2532 +3004 +846 +2962 +3956 +4771 +1492 +4771 +1097 +3754 +5368 +4771 +3004 +846 +2424 +1006 +3588 +4263 +1473 +281 +281 +3004 +4771 +3753 +1510 +3501 +2224 +4572 +2532 +4043 +3699 +2309 +1161 +3752 +1095 +1614 +3588 +5495 +4771 +2532 +243 +2224 +4771 +2532 +5342 +3699 +3756 +2309 +1161 +3778 +3004 +4591 +4169 +2288 +1392 +3588 +2316 +2532 +3778 +3004 +3004 +846 +190 +1473 +1994 +3588 +4074 +991 +3588 +3101 +3739 +25 +3588 +2424 +190 +3739 +2532 +377 +1722 +3588 +1173 +1909 +3588 +4738 +846 +2532 +3004 +2962 +5101 +1510 +3588 +3860 +4771 +3767 +3778 +3708 +3588 +4074 +3004 +3588 +2424 +2962 +1161 +3778 +5101 +3004 +846 +3588 +2424 +1437 +846 +3306 +2309 +2193 +2064 +5101 +4314 +4771 +4771 +1473 +190 +3767 +1831 +3778 +3588 +3056 +1519 +3588 +80 +3754 +3588 +3101 +1565 +3756 +599 +1161 +3756 +3004 +846 +3588 +2424 +3754 +3756 +599 +235 +1437 +846 +3306 +2309 +2193 +2064 +5101 +4314 +4771 +3778 +1510 +3588 +3101 +3588 +3140 +4012 +3778 +2532 +3588 +1125 +3778 +2532 +1492 +3754 +227 +846 +3588 +3141 +1510 +1161 +1510 +2532 +243 +4183 +3739 +4160 +3588 +2424 +1437 +3748 +1125 +2596 +1520 +3633 +3761 +846 +3588 +2889 +5562 +3588 +1125 +975 +5599 +2321 +3303 +3588 +4413 +3056 +4160 +4012 +3956 +3739 +5037 +4160 +2532 +1321 +756 +3588 +2424 +891 +3739 +2250 +1781 +3588 +652 +3739 +1586 +1223 +4151 +40 +353 +3739 +2532 +3936 +1438 +2198 +3326 +3588 +3958 +846 +1722 +4183 +5039 +1223 +2250 +5062 +3700 +846 +2532 +3004 +3588 +4012 +3588 +932 +3588 +2316 +2532 +4871 +3853 +846 +575 +2414 +3361 +5563 +235 +4037 +3588 +1860 +3588 +3962 +3739 +191 +1473 +3754 +3303 +2491 +907 +5204 +1161 +4771 +1722 +4151 +40 +907 +3756 +3326 +4183 +3778 +2250 +3303 +3767 +3588 +4905 +2065 +846 +3004 +2962 +1487 +1722 +3588 +5550 +3778 +600 +3588 +932 +3588 +2474 +3004 +4314 +846 +3756 +4771 +1510 +1097 +5550 +2228 +2540 +3739 +3588 +3962 +5087 +1722 +3588 +2398 +1849 +235 +2983 +1411 +1904 +3588 +40 +4151 +1909 +4771 +2532 +1510 +1473 +3144 +5037 +1722 +2419 +2532 +1722 +3956 +3588 +2449 +2532 +4540 +2532 +2193 +2078 +3588 +1093 +2532 +3778 +3004 +991 +846 +1869 +2532 +3507 +5274 +846 +575 +3588 +3788 +846 +2532 +5613 +816 +1510 +1519 +3588 +3772 +4198 +846 +2532 +3708 +435 +1417 +3936 +846 +1722 +2066 +3022 +3739 +2532 +3004 +435 +1057 +5101 +2476 +991 +1519 +3588 +3772 +3778 +3588 +2424 +3588 +353 +575 +4771 +1519 +3588 +3772 +3779 +2064 +3739 +5158 +2300 +846 +4198 +1519 +3588 +3772 +5119 +5290 +1519 +2419 +575 +3735 +3588 +2564 +1638 +3739 +1510 +1451 +2419 +4521 +3598 +2192 +2532 +3753 +1525 +1519 +3588 +5253 +305 +3757 +1510 +2650 +5037 +3588 +4074 +2532 +2491 +2532 +2385 +2532 +406 +5376 +2532 +2381 +918 +2532 +3156 +2385 +256 +2532 +4613 +3588 +2207 +2532 +2455 +2385 +3778 +3956 +1510 +4342 +3661 +3588 +4335 +4862 +1135 +2532 +3137 +3588 +3384 +3588 +2424 +2532 +4862 +3588 +80 +846 +2532 +1722 +3588 +2250 +3778 +450 +1722 +3319 +3588 +80 +4074 +3004 +5037 +1510 +3793 +3686 +1909 +3588 +846 +5616 +1540 +1501 +435 +80 +1163 +4137 +3588 +1124 +3739 +4302 +3588 +4151 +3588 +40 +1223 +4750 +1138 +4012 +2455 +3588 +1096 +3595 +3588 +4815 +2424 +3754 +2674 +1510 +1722 +1473 +2532 +2975 +3588 +2819 +3588 +1248 +3778 +3303 +3767 +3778 +2932 +5564 +1537 +3408 +3588 +93 +2532 +4248 +1096 +2997 +3319 +2532 +1632 +3956 +3588 +4698 +846 +2532 +1110 +1096 +3956 +3588 +2730 +2419 +5620 +2564 +3588 +5564 +1565 +3588 +2398 +1258 +846 +184 +3778 +1510 +5564 +129 +1063 +1125 +1722 +976 +5568 +1096 +3588 +1886 +846 +2048 +2532 +3361 +1510 +3588 +2730 +1722 +846 +2532 +3588 +1984 +846 +2983 +2087 +3767 +1163 +3588 +435 +4905 +1473 +1722 +3956 +5550 +3739 +1525 +2532 +1831 +1909 +1473 +3588 +2962 +2424 +756 +575 +3588 +908 +2491 +2193 +3588 +2250 +3739 +353 +575 +1473 +3144 +3588 +386 +846 +4862 +1473 +1096 +1520 +3778 +2532 +2476 +1417 +2501 +3588 +2564 +923 +3739 +1941 +2459 +2532 +3159 +2532 +4336 +3004 +2962 +2589 +3956 +4771 +322 +3739 +1586 +1537 +3778 +3588 +1417 +1520 +2983 +3588 +5117 +3588 +1248 +3778 +2532 +651 +575 +3739 +3845 +2455 +4198 +1519 +3588 +5117 +3588 +2398 +2532 +1325 +2819 +846 +2532 +4098 +3588 +2819 +1909 +3159 +2532 +4785 +3326 +3588 +1733 +652 +2532 +1722 +3588 +4845 +3588 +2250 +3588 +4005 +1510 +3956 +3674 +1909 +3588 +846 +2532 +1096 +869 +1537 +3588 +3772 +2279 +5618 +5342 +4157 +972 +2532 +4137 +3650 +3588 +3624 +3757 +1510 +2521 +2532 +3708 +846 +1266 +1100 +5616 +4442 +2532 +2523 +1909 +1520 +1538 +846 +2532 +4130 +3956 +4151 +40 +2532 +756 +2980 +2087 +1100 +2531 +3588 +4151 +1325 +669 +846 +1161 +1510 +2730 +1519 +2419 +2453 +435 +2126 +575 +3956 +1484 +3588 +5259 +3588 +3772 +1161 +1096 +3588 +5456 +3778 +4905 +3588 +4128 +2532 +4797 +3754 +191 +1520 +1538 +3588 +2398 +1258 +2980 +846 +1161 +1839 +2532 +2296 +3004 +3708 +3780 +3956 +3778 +3588 +2980 +1510 +1057 +2532 +4459 +1473 +191 +1538 +3588 +2398 +1258 +1473 +1722 +3739 +1080 +3934 +2532 +3370 +2532 +1639 +2532 +3588 +2730 +3588 +3318 +5037 +2449 +2532 +2587 +4195 +2532 +3588 +773 +5037 +5435 +2532 +3828 +125 +2532 +3588 +3313 +3588 +3033 +3588 +2596 +2957 +2532 +3588 +1927 +4514 +5037 +2453 +2532 +4339 +2912 +2532 +690 +191 +2980 +846 +3588 +2251 +1100 +3588 +3167 +3588 +2316 +1161 +1839 +3956 +2532 +1280 +243 +4314 +243 +3004 +2309 +3778 +5101 +1510 +1161 +2087 +5512 +3004 +3754 +1098 +3325 +1510 +1161 +2476 +4862 +3588 +1733 +3588 +4074 +1869 +3588 +5456 +846 +2532 +669 +846 +435 +2453 +2532 +3588 +2730 +2419 +3956 +3778 +4771 +1110 +1510 +2532 +1801 +3588 +4487 +1473 +1063 +3756 +5613 +4771 +5274 +3778 +3184 +1063 +1510 +5610 +5154 +3588 +2250 +235 +3778 +1510 +3588 +2046 +1223 +3588 +4396 +2493 +2532 +1510 +1722 +3588 +2078 +2250 +3004 +3588 +2316 +1632 +575 +3588 +4151 +1473 +1909 +3956 +4561 +2532 +4395 +3588 +5207 +4771 +2532 +3588 +2364 +4771 +2532 +3588 +3495 +4771 +3706 +3708 +2532 +3588 +4245 +4771 +1798 +1797 +2534 +1909 +3588 +1401 +1473 +2532 +1909 +3588 +1399 +1473 +1722 +3588 +2250 +1565 +1632 +575 +3588 +4151 +1473 +2532 +4395 +2532 +1325 +5059 +1722 +3588 +3772 +507 +2532 +4592 +1909 +3588 +1093 +2736 +129 +2532 +4442 +2532 +822 +2586 +3588 +2246 +3344 +1519 +4655 +2532 +3588 +4582 +1519 +129 +4250 +2064 +2250 +2962 +3588 +3173 +2532 +2016 +2532 +1510 +3956 +1437 +3739 +1941 +3588 +3686 +2962 +4982 +435 +2475 +191 +3588 +3056 +3778 +2424 +3588 +3480 +435 +584 +575 +3588 +2316 +1519 +4771 +1411 +2532 +5059 +2532 +4592 +3739 +4160 +1223 +846 +3588 +2316 +1722 +3319 +4771 +2531 +846 +1492 +3778 +3588 +3724 +1012 +2532 +4268 +3588 +2316 +1560 +1223 +5495 +459 +4362 +337 +3739 +3588 +2316 +450 +3089 +3588 +5604 +3588 +2288 +2530 +3756 +1510 +1415 +2902 +846 +5259 +846 +1063 +1138 +3004 +1519 +846 +4308 +3588 +2962 +1799 +1473 +1223 +3956 +3754 +1537 +1188 +1473 +1510 +2443 +3361 +4531 +1223 +3778 +2165 +1473 +3588 +2588 +2532 +21 +3588 +1100 +1473 +1161 +2089 +2532 +3588 +4561 +1473 +2681 +1909 +1680 +3754 +3756 +1459 +3588 +5590 +1473 +1519 +86 +3761 +1325 +3588 +3741 +4771 +3708 +1312 +1107 +1473 +3598 +2222 +4137 +1473 +2167 +3326 +3588 +4383 +4771 +435 +80 +1832 +3004 +3326 +3954 +4314 +4771 +4012 +3588 +3966 +1138 +3754 +2532 +5053 +2532 +2290 +2532 +3588 +3418 +846 +1510 +1722 +1473 +891 +3588 +2250 +3778 +3767 +4396 +5225 +2532 +1492 +3754 +3727 +3660 +846 +3588 +2316 +1537 +2590 +3588 +3751 +846 +2523 +1909 +3588 +2362 +846 +4308 +2980 +4012 +3588 +386 +3588 +5547 +3754 +3777 +1459 +1519 +86 +3777 +3588 +4561 +846 +3708 +1312 +3778 +3588 +2424 +450 +3588 +2316 +3739 +3956 +1473 +1510 +3144 +3767 +3588 +1188 +3588 +2316 +5312 +5037 +3588 +1860 +3588 +4151 +3588 +40 +2983 +3844 +3588 +3962 +1632 +3778 +3739 +4771 +2532 +991 +2532 +191 +1063 +3756 +1138 +305 +1519 +3588 +3772 +1161 +3004 +846 +3004 +2962 +3588 +2962 +1473 +2521 +1537 +1188 +1473 +2193 +302 +5087 +3588 +2190 +4771 +5286 +3588 +4228 +4771 +3767 +806 +1097 +3956 +3624 +2474 +3754 +2532 +2962 +2532 +5547 +4160 +3588 +2316 +846 +3778 +3588 +2424 +3739 +4771 +4717 +1161 +191 +2660 +3588 +2588 +5037 +3004 +4314 +3588 +4074 +2532 +3588 +3062 +652 +5101 +4160 +435 +80 +1161 +4074 +4314 +846 +3340 +2532 +907 +1538 +4771 +1909 +3588 +3686 +2424 +5547 +1519 +859 +3588 +266 +4771 +2532 +2983 +3588 +1431 +3588 +40 +4151 +1063 +4771 +1510 +3588 +1860 +2532 +3588 +5043 +4771 +2532 +3956 +3588 +1519 +3117 +302 +3745 +4341 +2962 +3588 +2316 +1473 +5037 +2087 +3056 +4119 +1263 +2532 +3870 +846 +3004 +4982 +575 +3588 +1074 +3588 +4646 +3778 +3303 +3767 +3588 +588 +3588 +3056 +846 +907 +2532 +4369 +1722 +3588 +2250 +1565 +5590 +5616 +5153 +1161 +1510 +4342 +3588 +1322 +3588 +652 +2532 +3588 +2842 +3588 +2800 +3588 +740 +2532 +3588 +4335 +1161 +1096 +3956 +5590 +5401 +1161 +4183 +5059 +2532 +4592 +1223 +3588 +652 +1096 +1161 +3956 +3588 +4100 +1909 +3588 +846 +2192 +537 +2839 +2532 +3588 +2933 +2532 +3588 +5223 +4097 +2532 +1266 +846 +3956 +2530 +302 +5100 +5532 +2192 +5037 +2596 +2250 +4342 +3661 +1722 +3588 +2411 +5037 +2806 +2596 +3624 +740 +3335 +5160 +1722 +20 +2532 +858 +2588 +134 +3588 +2316 +2532 +2192 +5485 +4314 +3650 +3588 +2992 +1161 +3588 +2962 +4369 +3588 +4982 +2596 +2250 +1909 +3588 +846 +1161 +4074 +2532 +2491 +305 +1519 +3588 +2411 +1909 +3588 +5610 +3588 +4335 +3588 +1766 +2532 +5100 +435 +5560 +1537 +2836 +3384 +846 +5225 +941 +3739 +5087 +2596 +2250 +4314 +3588 +2374 +3588 +2411 +3588 +3004 +5611 +3588 +154 +1654 +3844 +3588 +1531 +1519 +3588 +2411 +3739 +3708 +4074 +2532 +2491 +3195 +1524 +1519 +3588 +2411 +2065 +1654 +2983 +1161 +4074 +816 +1519 +846 +4862 +3588 +2491 +3004 +991 +1519 +1473 +1161 +3588 +1907 +846 +4328 +5100 +3844 +846 +2983 +1161 +3004 +4074 +694 +2532 +5553 +3756 +5225 +1473 +1161 +3739 +2192 +3778 +4771 +1325 +1722 +3588 +3686 +2424 +5547 +3588 +3480 +4043 +2532 +4084 +846 +3588 +1188 +5495 +1453 +846 +1161 +3916 +4732 +3588 +939 +846 +2532 +3588 +4974 +2532 +1814 +2476 +2532 +4043 +2532 +1525 +4862 +846 +1519 +3588 +2411 +4043 +2532 +242 +2532 +134 +3588 +2316 +2532 +3708 +3956 +3588 +2992 +846 +4043 +2532 +134 +3588 +2316 +1161 +1921 +846 +3754 +3778 +1510 +3588 +4314 +3588 +1654 +2521 +1909 +3588 +5611 +4439 +3588 +2411 +2532 +4130 +2285 +2532 +1611 +1909 +3588 +4819 +846 +1161 +2902 +846 +3588 +4074 +2532 +3588 +2491 +4936 +3956 +3588 +2992 +4314 +846 +1909 +3588 +4745 +3588 +2564 +4672 +1569 +1161 +3708 +3588 +4074 +611 +4314 +3588 +2992 +435 +2475 +5101 +2296 +1909 +3778 +2228 +1473 +5101 +816 +5613 +2398 +1411 +2228 +2150 +4160 +3588 +4043 +846 +3588 +2316 +11 +2532 +2464 +2532 +2384 +3588 +2316 +3588 +3962 +1473 +1392 +3588 +3816 +846 +2424 +3303 +3739 +4771 +3860 +2532 +720 +2596 +4383 +4091 +2919 +1565 +630 +1161 +4771 +3588 +40 +2532 +1342 +720 +2532 +154 +435 +5406 +5483 +4771 +1161 +3588 +747 +3588 +2222 +615 +3739 +3588 +2316 +1453 +1537 +3498 +3739 +1473 +3144 +1510 +2532 +1909 +3588 +4102 +3588 +3686 +846 +3778 +3739 +2334 +2532 +1492 +4732 +3588 +3686 +846 +2532 +3588 +4102 +3588 +1223 +846 +1325 +846 +3588 +3647 +3778 +561 +3956 +4771 +2532 +80 +3568 +1492 +3754 +2596 +52 +4238 +5618 +2532 +3588 +758 +4771 +1161 +3588 +2316 +3739 +4293 +1223 +4750 +3956 +3588 +4396 +3958 +3588 +5547 +846 +4137 +3779 +3767 +3340 +2532 +1994 +4314 +3588 +1813 +4771 +3588 +266 +3704 +302 +2064 +2540 +403 +575 +4383 +3588 +2962 +2532 +649 +3588 +4400 +4771 +5547 +2424 +1163 +3303 +3739 +3772 +1209 +891 +5550 +605 +3956 +3739 +2980 +3588 +2316 +1223 +4750 +3588 +40 +575 +165 +846 +4396 +3303 +3475 +3004 +3754 +4396 +4771 +450 +2962 +3588 +2316 +1537 +3588 +80 +4771 +5613 +1473 +846 +191 +2596 +3956 +302 +3745 +2980 +4314 +4771 +1161 +1510 +3956 +5590 +1437 +3748 +3361 +191 +3588 +4396 +1565 +1842 +1537 +3588 +2992 +1161 +2532 +3956 +3588 +4396 +575 +4545 +2532 +3588 +2517 +3745 +2980 +2532 +2605 +3588 +2250 +3778 +4771 +1510 +3588 +5207 +3588 +4396 +2532 +3588 +1242 +3739 +3588 +2316 +1303 +4314 +3588 +3962 +4771 +3004 +4314 +11 +2532 +1722 +3588 +4690 +4771 +1757 +3956 +3588 +3965 +3588 +1093 +4771 +4412 +3588 +2316 +450 +3588 +3816 +846 +649 +846 +2127 +4771 +1722 +3588 +654 +1538 +575 +3588 +4189 +4771 +1161 +2980 +846 +4314 +3588 +2992 +2186 +846 +3588 +2409 +2532 +3588 +4755 +3588 +2411 +2532 +3588 +4523 +1278 +1223 +3588 +1321 +846 +3588 +2992 +2532 +2605 +1722 +3588 +2424 +3588 +386 +3588 +1537 +3498 +2532 +1911 +846 +3588 +5495 +2532 +5087 +1519 +5084 +1519 +3588 +839 +1063 +1510 +2073 +2235 +1161 +4183 +3588 +191 +3588 +3056 +4100 +2532 +1096 +706 +3588 +435 +5613 +5505 +4002 +1161 +1096 +1909 +3588 +839 +4863 +846 +3588 +758 +2532 +3588 +4245 +2532 +3588 +1122 +1722 +2419 +2532 +452 +3588 +749 +2532 +2533 +2532 +2491 +2532 +223 +2532 +3745 +1510 +1537 +1085 +748 +2532 +2476 +846 +1722 +3588 +3319 +4441 +1722 +4169 +1411 +2228 +1722 +4169 +3686 +4160 +3778 +4771 +5119 +4074 +4130 +4151 +40 +3004 +4314 +846 +758 +3588 +2992 +2532 +4245 +1487 +1473 +4594 +350 +1909 +2108 +444 +772 +1722 +5101 +3778 +4982 +1110 +1510 +3956 +4771 +2532 +3956 +3588 +2992 +2474 +3754 +1722 +3588 +3686 +2424 +5547 +3588 +3480 +3739 +4771 +4717 +3739 +3588 +2316 +1453 +1537 +3498 +1722 +3778 +3778 +3936 +1799 +4771 +5199 +3778 +1510 +3588 +3037 +3588 +1848 +5259 +4771 +3588 +3618 +3588 +1096 +1519 +2776 +1137 +2532 +3756 +1510 +1722 +243 +3762 +3588 +4991 +1063 +3761 +1510 +5259 +3588 +3772 +3686 +2087 +3588 +1325 +1722 +444 +1722 +3739 +1163 +4982 +1473 +1161 +2334 +3588 +3588 +4074 +2532 +2491 +3954 +2532 +2638 +3754 +444 +62 +1510 +2532 +2399 +2296 +5037 +1921 +846 +3754 +4862 +3588 +2424 +1510 +5037 +991 +3588 +444 +3588 +2323 +4862 +846 +2476 +3762 +483 +2192 +1161 +2753 +846 +1854 +3588 +4892 +565 +4820 +4314 +240 +3004 +5101 +4160 +3588 +444 +3778 +1063 +3303 +3754 +1110 +4592 +1096 +1223 +846 +3956 +3588 +2730 +2419 +5318 +2532 +3756 +1410 +720 +235 +2443 +3361 +1909 +4119 +1268 +1519 +3588 +2992 +546 +846 +3371 +2980 +1909 +3588 +3686 +3778 +3367 +444 +2532 +2564 +846 +3853 +2527 +3361 +5350 +3366 +1321 +1909 +3588 +3686 +3588 +2424 +1161 +3588 +4074 +2532 +2491 +611 +3004 +4314 +846 +1487 +1342 +1510 +1799 +3588 +2316 +4771 +191 +3123 +2228 +3588 +2316 +2919 +1063 +3756 +1410 +1473 +3739 +3708 +2532 +191 +3361 +2980 +1161 +3588 +4324 +630 +846 +3367 +2147 +3588 +4459 +2849 +846 +1223 +3588 +2992 +3754 +3956 +1392 +3588 +2316 +1909 +3588 +1096 +1063 +2094 +4119 +5062 +1510 +3588 +444 +1909 +3739 +1096 +3588 +4592 +3778 +3588 +2392 +1161 +630 +2064 +4314 +3588 +2398 +2532 +518 +3745 +4314 +846 +3588 +749 +2532 +3588 +4245 +3004 +1161 +3588 +191 +3661 +142 +5456 +4314 +3588 +2316 +2532 +3004 +1203 +4771 +3588 +4160 +3588 +3772 +2532 +3588 +1093 +2532 +3588 +2281 +2532 +3956 +3588 +1722 +846 +3588 +3588 +3962 +1473 +1223 +4151 +40 +4750 +1138 +3816 +4771 +3004 +2443 +5101 +5433 +1484 +2532 +2992 +3191 +2756 +3936 +3588 +935 +3588 +1093 +2532 +3588 +758 +4863 +1909 +3588 +846 +2596 +3588 +2962 +2532 +2596 +3588 +5547 +846 +1063 +4863 +1909 +225 +1722 +3588 +4172 +3778 +1909 +3588 +40 +3816 +4771 +2424 +3739 +5548 +5037 +2264 +2532 +4194 +4091 +4862 +1484 +2532 +2992 +2474 +4160 +3745 +1096 +3588 +5495 +4771 +2532 +3588 +1012 +4309 +2532 +2962 +3588 +3568 +1896 +1909 +3588 +547 +846 +2532 +1325 +3588 +1401 +4771 +3326 +3954 +3956 +2980 +3588 +3056 +4771 +1722 +3588 +3588 +5495 +1614 +4771 +1519 +2392 +2532 +4592 +2532 +5059 +1096 +1223 +3588 +3686 +3588 +40 +3816 +4771 +2424 +2532 +1189 +846 +4531 +3588 +5117 +1722 +3739 +1510 +4863 +2532 +4130 +537 +3588 +40 +4151 +2532 +2980 +3588 +3056 +3588 +2316 +3326 +3954 +1161 +3588 +4128 +3588 +4100 +2588 +2532 +5590 +1510 +1520 +2532 +3761 +1520 +5100 +3588 +5225 +846 +2398 +1510 +3004 +235 +1510 +846 +3956 +2839 +2532 +1411 +3173 +591 +3588 +3142 +3588 +2962 +2424 +3588 +386 +3588 +652 +5037 +5485 +3173 +1510 +1909 +3956 +846 +1063 +3761 +1729 +5100 +1510 +1722 +846 +1063 +3745 +2935 +5564 +2228 +3614 +5225 +4453 +5342 +3588 +5092 +3588 +4097 +2532 +5087 +3844 +3588 +4228 +3588 +652 +1161 +1239 +1538 +2530 +302 +5100 +5532 +2192 +1161 +2501 +3588 +1941 +921 +575 +3588 +652 +3739 +1510 +3177 +5207 +3874 +3019 +2953 +3588 +1085 +5225 +846 +68 +4453 +5342 +3588 +5536 +2532 +5087 +4314 +3588 +4228 +3588 +652 +1161 +435 +5100 +367 +3686 +4862 +4551 +3588 +1135 +846 +4453 +2933 +2532 +3557 +575 +3588 +5092 +4894 +2532 +3588 +1135 +2532 +5342 +3313 +5100 +3844 +3588 +4228 +3588 +652 +5087 +1161 +3004 +3588 +4074 +367 +1223 +5101 +4137 +3588 +4567 +3588 +2588 +4771 +5574 +4771 +3588 +4151 +3588 +40 +2532 +3557 +575 +3588 +5092 +3588 +5564 +3780 +3306 +4771 +3306 +2532 +4097 +1722 +3588 +4674 +1849 +5225 +5101 +3754 +5087 +1722 +3588 +2588 +4771 +3588 +4229 +3778 +3756 +5574 +444 +235 +3588 +2316 +1161 +3588 +367 +191 +3588 +3056 +3778 +4098 +1634 +2532 +1096 +5401 +3173 +1909 +3956 +3588 +191 +1161 +450 +3588 +3501 +4958 +846 +2532 +1627 +2290 +1161 +1096 +5613 +5610 +5140 +1292 +2532 +3588 +1135 +846 +3361 +1492 +3588 +1096 +1525 +1161 +611 +4314 +846 +4074 +3004 +1473 +1487 +5118 +3588 +5564 +591 +1161 +3588 +3004 +3483 +5118 +1161 +3588 +4074 +4314 +846 +5101 +3754 +4856 +4771 +3985 +3588 +4151 +2962 +3708 +3588 +4228 +3588 +2290 +3588 +435 +4771 +1909 +3588 +2374 +2532 +1627 +4771 +1161 +4098 +3916 +4314 +3588 +4228 +846 +2532 +1634 +1161 +1525 +3588 +3495 +2147 +846 +3498 +2532 +1627 +2290 +4314 +3588 +435 +846 +2532 +1096 +5401 +3173 +1909 +3650 +3588 +1577 +2532 +1909 +3956 +3588 +191 +3778 +1161 +1223 +3588 +5495 +3588 +652 +1096 +4592 +2532 +5059 +4183 +1722 +3588 +2992 +2532 +1510 +3661 +3956 +1722 +3588 +4745 +4672 +1161 +3588 +3062 +3762 +5111 +2853 +846 +235 +3170 +846 +3588 +2992 +1161 +3123 +4369 +4100 +3588 +2962 +4128 +5037 +435 +2532 +1135 +5620 +2532 +1519 +3588 +4113 +1627 +3588 +772 +2532 +5087 +1909 +2826 +2532 +2895 +2443 +2064 +4074 +2579 +3588 +4639 +1982 +5100 +846 +1161 +4905 +2532 +3588 +4128 +3588 +4038 +2419 +4172 +5342 +772 +2532 +3791 +5259 +4151 +169 +3748 +537 +2323 +1161 +450 +3588 +749 +2532 +3956 +3588 +4862 +846 +3588 +1510 +139 +3588 +4523 +4130 +2205 +2532 +1911 +3588 +5495 +1909 +3588 +652 +2532 +5087 +846 +1722 +5084 +1219 +1161 +32 +2962 +1223 +3571 +455 +3588 +2374 +3588 +5438 +5037 +1806 +846 +3004 +4198 +2532 +2476 +2980 +1722 +3588 +2411 +3588 +2992 +3956 +3588 +4487 +3588 +2222 +3778 +1161 +191 +1525 +5259 +3588 +3722 +1519 +3588 +2411 +2532 +1321 +1161 +3854 +3588 +749 +2532 +3588 +4862 +846 +4779 +3588 +4892 +2532 +3956 +3588 +1087 +3588 +5207 +2474 +2532 +649 +1519 +3588 +1201 +71 +846 +1161 +3588 +3854 +5257 +3756 +2147 +846 +1722 +3588 +5438 +1161 +390 +518 +3004 +3754 +2147 +3588 +1201 +2808 +1722 +3956 +803 +2532 +3588 +5441 +2476 +1909 +3588 +2374 +1161 +455 +2080 +3762 +2147 +1161 +5613 +191 +3588 +3056 +3778 +5037 +3588 +4755 +3588 +2411 +2532 +3588 +749 +1280 +4012 +846 +302 +5101 +1096 +3778 +1161 +3854 +5100 +518 +846 +3754 +3708 +3588 +435 +3739 +5087 +1722 +3588 +5438 +1510 +2476 +1722 +3588 +2411 +2532 +1321 +3588 +2992 +5119 +565 +3588 +4755 +4862 +3588 +5257 +71 +846 +3756 +3326 +970 +1063 +5399 +3588 +2992 +3361 +3034 +1161 +71 +846 +2476 +1722 +3588 +4892 +2532 +1905 +846 +3588 +749 +3004 +3852 +3853 +4771 +3361 +1321 +1909 +3588 +3686 +3778 +2532 +3708 +4137 +3588 +2419 +3588 +1322 +4771 +2532 +1014 +1863 +1909 +1473 +3588 +129 +3588 +444 +3778 +1161 +611 +4074 +2532 +3588 +652 +3004 +1163 +3980 +2316 +3123 +2228 +444 +3588 +2316 +3588 +3962 +1473 +1453 +2424 +3739 +4771 +1315 +2910 +1909 +3586 +3778 +3588 +2316 +747 +2532 +4990 +5312 +3588 +1188 +846 +3588 +1325 +3341 +3588 +2474 +2532 +859 +266 +2532 +1473 +1510 +3144 +3588 +4487 +3778 +2532 +3588 +4151 +3588 +40 +3739 +1325 +3588 +2316 +3588 +3980 +846 +1161 +3588 +191 +1282 +2532 +1014 +337 +846 +1161 +450 +5100 +1722 +3588 +4892 +5330 +3686 +1059 +3547 +5093 +3956 +3588 +2992 +2753 +1854 +1024 +3588 +444 +4160 +5037 +3004 +4314 +846 +435 +2475 +4337 +1438 +1909 +3588 +444 +3778 +5101 +4238 +3195 +1063 +4253 +3778 +3588 +2250 +450 +2333 +3004 +1510 +5100 +1438 +3739 +4346 +435 +706 +5613 +5071 +3739 +337 +2532 +3956 +3745 +3982 +846 +1262 +2532 +1096 +1519 +3762 +3326 +3778 +450 +2455 +3588 +1057 +1722 +3588 +2250 +3588 +582 +2532 +868 +2992 +3694 +846 +2548 +622 +2532 +3956 +3745 +3982 +846 +1287 +2532 +3588 +3568 +3004 +4771 +868 +575 +3588 +444 +3778 +2532 +863 +846 +3754 +1437 +1510 +1537 +444 +3588 +1012 +3778 +2228 +3588 +2041 +3778 +2647 +1161 +1487 +1537 +2316 +1510 +3756 +1410 +2647 +846 +3361 +4218 +2532 +2314 +2147 +1161 +3982 +846 +2532 +4341 +3588 +652 +1194 +3853 +3361 +2980 +1909 +3588 +3686 +3588 +2424 +2532 +630 +3303 +3767 +3588 +4198 +5463 +575 +4383 +3588 +4892 +3754 +2661 +5228 +3588 +3686 +818 +5037 +3956 +2250 +1722 +3588 +2411 +2532 +2596 +3624 +3756 +3973 +1321 +2532 +2097 +3588 +5547 +2424 +1161 +1722 +3588 +2250 +3778 +4129 +3588 +3101 +1096 +1112 +3588 +1675 +4314 +3588 +1445 +3754 +3865 +1722 +3588 +1248 +3588 +2522 +3588 +5503 +846 +1161 +3588 +1427 +4341 +3588 +4128 +3588 +3101 +3004 +3756 +701 +1510 +1473 +2641 +3588 +3056 +3588 +2316 +1247 +5132 +1161 +80 +1980 +435 +1537 +4771 +3140 +2033 +4134 +4151 +2532 +4678 +3739 +2525 +1909 +3588 +5532 +3778 +1161 +1473 +3588 +4335 +2532 +3588 +1248 +3588 +3056 +4342 +2532 +700 +3588 +3056 +1799 +3956 +3588 +4128 +2532 +1586 +4736 +435 +4134 +4102 +2532 +4151 +40 +2532 +5376 +2532 +4402 +2532 +3527 +2532 +5096 +2532 +3937 +2532 +3532 +4339 +491 +3739 +2476 +1799 +3588 +652 +2532 +4336 +2007 +846 +3588 +5495 +2532 +3588 +3056 +3588 +2316 +837 +2532 +4129 +3588 +706 +3588 +3101 +1722 +2419 +4970 +5037 +4183 +3793 +3588 +2409 +5219 +3588 +4102 +1161 +4736 +4134 +5485 +2532 +1411 +4160 +5059 +2532 +4592 +3173 +1722 +3588 +2992 +1161 +450 +5100 +3588 +1537 +3588 +4864 +3588 +3004 +3032 +2532 +2956 +2532 +221 +2532 +3588 +575 +2791 +2532 +773 +4802 +3588 +4736 +2532 +3756 +2480 +436 +3588 +4678 +2532 +3588 +4151 +3739 +2980 +5119 +5260 +435 +3004 +3754 +191 +846 +2980 +4487 +989 +1519 +3475 +2532 +3588 +2316 +5037 +4787 +3588 +2992 +2532 +3588 +4245 +2532 +3588 +1122 +2532 +2186 +4884 +846 +2532 +71 +1519 +3588 +4892 +5037 +2476 +3144 +5571 +3004 +3588 +444 +3778 +3756 +3973 +2980 +4487 +2596 +3588 +5117 +3588 +40 +2532 +3588 +3551 +1063 +191 +846 +3004 +3754 +2424 +3588 +3480 +3778 +2647 +3588 +5117 +3778 +2532 +236 +3588 +1485 +3739 +3860 +1473 +3475 +2532 +816 +1519 +846 +3956 +3588 +2516 +1722 +3588 +4892 +3708 +3588 +4383 +846 +5616 +4383 +32 +1161 +3004 +3588 +749 +1487 +3778 +3779 +2192 +1161 +3588 +5346 +435 +80 +2532 +3962 +191 +3588 +2316 +3588 +1391 +3708 +3588 +3962 +1473 +11 +1510 +1722 +3588 +3318 +4250 +2228 +2730 +846 +1722 +5488 +2532 +3004 +4314 +846 +1831 +1537 +3588 +1093 +4771 +2532 +3588 +4772 +4771 +2532 +1204 +1519 +3588 +1093 +302 +3739 +4771 +1166 +5119 +1831 +1537 +1093 +5466 +2730 +1722 +5488 +2547 +3326 +3588 +599 +3588 +3962 +846 +3351 +846 +1519 +3588 +1093 +3778 +1519 +3739 +4771 +3568 +2730 +2532 +3756 +1325 +846 +2817 +1722 +846 +3761 +968 +4228 +2532 +1861 +1325 +846 +1519 +2697 +846 +2532 +3588 +4690 +846 +3326 +846 +3756 +1510 +846 +5043 +1161 +2980 +3779 +3588 +2316 +3754 +1510 +3588 +4690 +846 +3941 +1722 +1093 +245 +2532 +1402 +2532 +2559 +846 +2094 +5071 +2532 +3588 +1484 +1437 +3739 +1398 +2919 +1473 +3588 +2316 +3004 +2532 +3326 +3778 +1831 +2532 +3000 +1473 +1722 +3588 +5117 +3778 +2532 +1325 +846 +1242 +4061 +2532 +3779 +1080 +3588 +2464 +2532 +4059 +846 +3588 +2250 +3588 +3590 +2532 +2464 +3588 +2384 +2532 +2384 +3588 +1427 +3966 +2532 +3588 +3966 +2206 +3588 +2501 +591 +1519 +125 +2532 +1510 +3588 +2316 +3326 +846 +2532 +1807 +846 +1537 +3956 +3588 +2347 +846 +2532 +1325 +846 +5485 +2532 +4678 +1726 +5328 +935 +125 +2532 +2525 +846 +2233 +1909 +125 +2532 +3650 +3588 +3624 +846 +1161 +2064 +3042 +1909 +3650 +3588 +125 +2532 +5477 +2532 +2347 +3173 +2532 +3756 +2147 +5527 +3588 +3962 +1473 +1161 +2384 +191 +1510 +4621 +1519 +125 +1821 +3588 +3962 +1473 +4412 +2532 +1722 +3588 +1208 +1107 +2501 +3588 +80 +846 +2532 +5318 +1096 +3588 +5328 +3588 +1085 +2501 +1161 +649 +2501 +3333 +2384 +3588 +3962 +846 +2532 +3956 +3588 +4772 +1722 +5590 +1440 +4002 +2532 +2597 +2384 +1519 +125 +2532 +5053 +846 +2532 +3588 +3962 +1473 +2532 +3346 +1519 +4966 +2532 +5087 +1722 +3588 +3418 +3739 +5608 +11 +5092 +694 +3844 +3588 +5207 +1697 +1722 +4966 +1161 +2531 +1448 +3588 +5550 +3588 +1860 +3739 +3670 +3588 +2316 +3588 +11 +3588 +2992 +837 +2532 +4129 +1722 +125 +891 +3739 +450 +1909 +125 +935 +2087 +3739 +3756 +1492 +3588 +2501 +3778 +2686 +3588 +1085 +1473 +2559 +3588 +3962 +3588 +4160 +3588 +1025 +846 +1570 +1519 +3588 +3361 +2225 +1722 +3739 +2540 +1080 +3475 +2532 +1510 +791 +3588 +2316 +3739 +397 +3376 +5140 +1722 +3588 +3624 +3588 +3962 +1161 +1620 +846 +337 +846 +3588 +2364 +5328 +2532 +397 +846 +1438 +1519 +5207 +2532 +3811 +3475 +3956 +4678 +124 +1161 +1510 +1415 +1722 +3056 +2532 +2041 +846 +1161 +5613 +4137 +846 +5063 +5550 +305 +1909 +3588 +2588 +846 +1980 +3588 +80 +846 +3588 +5207 +2474 +2532 +3708 +5100 +91 +292 +2532 +4160 +1557 +3588 +2669 +3960 +3588 +124 +1161 +3543 +4920 +3588 +80 +3754 +3588 +2316 +1223 +5495 +846 +1325 +4991 +846 +1161 +3588 +3756 +4920 +5037 +3588 +1966 +2250 +3708 +846 +3164 +2532 +4900 +846 +1519 +1515 +3004 +435 +80 +1510 +2443 +5101 +91 +240 +1161 +3588 +91 +3588 +4139 +683 +846 +3004 +5101 +4771 +2525 +758 +2532 +1348 +1909 +1473 +3361 +337 +1473 +4771 +2309 +3739 +5158 +337 +5504 +3588 +124 +1161 +5343 +3475 +1722 +3588 +3056 +3778 +2532 +1096 +3941 +1722 +1093 +3099 +3757 +1080 +5207 +1417 +2532 +4137 +2094 +5062 +3708 +846 +1722 +3588 +2048 +3588 +3735 +4614 +32 +1722 +5395 +4442 +942 +1161 +3588 +3475 +3708 +2296 +3588 +3705 +1161 +4334 +846 +2657 +1096 +5456 +2962 +1473 +3588 +2316 +3588 +3962 +4771 +3588 +2316 +11 +2532 +2464 +2532 +2384 +1161 +1790 +1096 +3475 +3756 +5111 +2657 +1161 +3004 +846 +3588 +2962 +3089 +3588 +5266 +3588 +4228 +4771 +1063 +3588 +5117 +1909 +3739 +2476 +1093 +40 +1510 +3708 +3708 +3588 +2561 +3588 +2992 +1473 +3588 +1722 +125 +2532 +3588 +4726 +846 +191 +2532 +2597 +1807 +846 +2532 +3568 +1204 +649 +4771 +1519 +125 +3778 +3588 +3475 +3739 +720 +3004 +5101 +4771 +2525 +758 +2532 +1348 +3778 +3588 +2316 +2532 +758 +2532 +3086 +649 +4862 +5495 +32 +3588 +3708 +846 +1722 +3588 +942 +3778 +1806 +846 +4160 +5059 +2532 +4592 +1722 +1093 +125 +2532 +1722 +2063 +2281 +2532 +1722 +3588 +2048 +2094 +5062 +3778 +1510 +3588 +3475 +3588 +3004 +3588 +5207 +2474 +4396 +4771 +450 +3588 +2316 +1537 +3588 +80 +4771 +5613 +1473 +3778 +1510 +3588 +1096 +1722 +3588 +1577 +1722 +3588 +2048 +3326 +3588 +32 +3588 +2980 +846 +1722 +3588 +3735 +4614 +2532 +3588 +3962 +1473 +3739 +1209 +3051 +2198 +1325 +4771 +3739 +3756 +2309 +5255 +1096 +3588 +3962 +1473 +235 +683 +2532 +4762 +1722 +3588 +2588 +846 +1519 +125 +3004 +3588 +2 +4160 +1473 +2316 +3739 +4313 +1473 +1063 +3588 +3475 +3778 +3739 +1806 +1473 +1537 +1093 +125 +3756 +1492 +5101 +1096 +846 +2532 +3447 +1722 +3588 +2250 +1565 +2532 +321 +2378 +3588 +1497 +2532 +2165 +1722 +3588 +2041 +3588 +5495 +846 +1161 +4762 +3588 +2316 +2532 +3860 +846 +3000 +3588 +4756 +3588 +3772 +2531 +1125 +1722 +976 +3588 +4396 +3361 +4968 +2532 +2378 +4374 +1473 +2094 +5062 +1722 +3588 +2048 +3624 +2474 +2532 +353 +3588 +4633 +3588 +3434 +2532 +3588 +798 +3588 +2316 +4481 +3588 +5179 +3739 +4160 +4352 +846 +2532 +3351 +4771 +1900 +897 +3588 +4633 +3588 +3142 +1510 +3588 +3962 +1473 +1722 +3588 +2048 +2531 +1299 +3588 +2980 +3588 +3475 +4160 +846 +2596 +3588 +5179 +3739 +3708 +3739 +2532 +1521 +1237 +3588 +3962 +1473 +3326 +2424 +1722 +3588 +2697 +3588 +1484 +3739 +1856 +3588 +2316 +575 +4383 +3588 +3962 +1473 +2193 +3588 +2250 +1138 +3739 +2147 +5485 +1799 +3588 +2316 +2532 +154 +2147 +4638 +3588 +3624 +2384 +1161 +4672 +3618 +846 +3624 +235 +3756 +3588 +5310 +1722 +5499 +2730 +2531 +3588 +4396 +3004 +3588 +3772 +1473 +2362 +1161 +3588 +1093 +5286 +3588 +4228 +1473 +4169 +3624 +3618 +1473 +3004 +2962 +2228 +5101 +5117 +3588 +2663 +1473 +3780 +3588 +5495 +1473 +4160 +3778 +3956 +4644 +2532 +564 +2588 +2532 +3588 +3775 +4771 +104 +3588 +4151 +3588 +40 +496 +5613 +3588 +3962 +4771 +2532 +4771 +5101 +3588 +4396 +3756 +1377 +3588 +3962 +4771 +2532 +615 +3588 +4293 +4012 +3588 +1660 +3588 +1342 +3739 +3568 +4771 +4273 +2532 +5406 +1096 +3748 +2983 +3588 +3551 +1519 +1296 +32 +2532 +3756 +5442 +1161 +191 +3778 +1282 +3588 +2588 +846 +2532 +1031 +3588 +3599 +1909 +846 +1161 +5225 +4134 +4151 +40 +816 +1519 +3588 +3772 +3708 +1391 +2316 +2532 +2424 +2476 +1537 +1188 +3588 +2316 +2532 +3004 +3708 +2334 +3588 +3772 +1272 +2532 +3588 +5207 +3588 +444 +1537 +1188 +3588 +2316 +2476 +1161 +2896 +5456 +3173 +4912 +3588 +3775 +846 +2532 +3729 +3661 +1909 +846 +2532 +1544 +1854 +3588 +4172 +3036 +2532 +3588 +3144 +659 +3588 +2440 +846 +3844 +3588 +4228 +3494 +2564 +4569 +2532 +3036 +3588 +4736 +1941 +2532 +3004 +2962 +2424 +1209 +3588 +4151 +1473 +1161 +5087 +3588 +1119 +2896 +5456 +3173 +2962 +3361 +2476 +846 +3778 +3588 +266 +2532 +3778 +3004 +2837 +1161 +4569 +1510 +4909 +3588 +336 +846 +1161 +1096 +1722 +1565 +3588 +2250 +1375 +3173 +1909 +3588 +1577 +3588 +1722 +2414 +1161 +3956 +1289 +2596 +3588 +5561 +3588 +2449 +2532 +4540 +4133 +3588 +652 +1161 +4792 +3588 +4736 +435 +2126 +2532 +4160 +2870 +3173 +1909 +846 +1161 +4569 +3075 +3588 +1577 +2596 +3588 +3624 +1531 +4951 +5037 +435 +2532 +1135 +3860 +1519 +5438 +3767 +3303 +3588 +1289 +1330 +2097 +3588 +3056 +1161 +5376 +2718 +1519 +3588 +4172 +3588 +4540 +2784 +846 +3588 +5547 +1161 +4337 +3588 +3793 +3588 +3004 +5259 +3588 +5376 +3661 +1722 +3588 +191 +846 +2532 +991 +3588 +4592 +3739 +4160 +1063 +4183 +3588 +2192 +4151 +169 +994 +5456 +3173 +1831 +1161 +4183 +3886 +2532 +5560 +2323 +1161 +1096 +4183 +5479 +1722 +3588 +4172 +1565 +1161 +435 +5100 +3686 +4613 +4391 +1722 +3588 +4172 +3096 +2532 +1839 +3588 +1484 +3588 +4540 +3004 +1510 +5100 +3173 +1438 +3739 +4337 +3956 +575 +3398 +2193 +3173 +3004 +3778 +1510 +3588 +1411 +3588 +2316 +3588 +2564 +3173 +1161 +4337 +846 +1223 +3588 +2425 +5550 +3588 +3095 +1839 +846 +1161 +3753 +4100 +3588 +5376 +2097 +4012 +3588 +932 +3588 +2316 +2532 +3588 +3686 +2424 +5547 +907 +5037 +435 +2532 +1135 +1161 +3588 +4613 +2532 +846 +4100 +2532 +907 +1510 +4342 +3588 +5376 +2334 +5037 +4592 +2532 +1411 +3173 +1096 +1839 +1161 +3588 +1722 +2414 +652 +191 +3754 +1209 +3588 +4540 +3588 +3056 +3588 +2316 +649 +4314 +846 +4074 +2532 +2491 +3748 +2597 +4336 +4012 +846 +3704 +2983 +4151 +40 +1063 +3764 +1510 +1968 +1909 +3762 +846 +1161 +3440 +907 +5225 +1519 +3588 +3686 +3588 +2962 +2424 +5119 +2007 +3588 +5495 +1909 +846 +2532 +2983 +4151 +40 +1161 +3588 +4613 +3708 +3754 +1223 +3588 +1936 +3588 +5495 +3588 +652 +1325 +3588 +4151 +4374 +846 +5536 +3004 +1325 +2504 +3588 +1849 +3778 +2443 +1437 +3739 +2007 +3588 +5495 +2983 +4151 +40 +1161 +4074 +3004 +4314 +846 +3588 +694 +4771 +4862 +4771 +1510 +1519 +684 +3754 +3543 +3588 +1431 +3588 +2316 +1223 +5536 +2932 +3756 +1510 +4771 +3310 +3761 +2819 +1722 +3588 +3056 +3778 +1063 +3588 +2588 +4771 +3756 +1510 +2117 +1725 +3588 +2316 +3767 +3340 +575 +3588 +2549 +4771 +3778 +2532 +1189 +3588 +2962 +686 +1487 +863 +4771 +3588 +1963 +3588 +2588 +4771 +1063 +1519 +5521 +4088 +2532 +4886 +93 +4771 +1510 +3708 +1161 +611 +3588 +4613 +3004 +1189 +4771 +5228 +1473 +4314 +3588 +2962 +3704 +1904 +1909 +1473 +3367 +3739 +2046 +3303 +3767 +3588 +1263 +2532 +2980 +3588 +3056 +3588 +2962 +5290 +1519 +2414 +5037 +4183 +2968 +3588 +4541 +2097 +1161 +32 +2962 +2980 +4314 +5376 +3004 +450 +2532 +4198 +2596 +3314 +1909 +3588 +3598 +3588 +2597 +575 +2419 +1519 +1048 +3778 +1510 +2048 +2532 +450 +4198 +2532 +3708 +435 +128 +2135 +1413 +2582 +938 +128 +3739 +1510 +1909 +3956 +3588 +1047 +846 +3739 +2064 +4352 +1519 +2419 +1510 +1161 +5290 +2532 +2521 +1909 +3588 +716 +846 +2532 +314 +3588 +4396 +2268 +1161 +3004 +3588 +4151 +3588 +5376 +4334 +2532 +2853 +3588 +716 +3778 +1161 +4370 +3588 +5376 +191 +846 +314 +2268 +3588 +4396 +2532 +3004 +687 +1065 +1097 +3739 +314 +1161 +3588 +3004 +1063 +302 +4459 +1410 +1437 +3361 +5100 +3594 +1473 +5037 +3870 +3588 +5376 +305 +2523 +4862 +846 +1161 +3588 +4042 +3588 +1124 +3739 +314 +1510 +3778 +5613 +4263 +1909 +4967 +71 +2532 +5613 +286 +1726 +3588 +2751 +846 +880 +3779 +3756 +455 +3588 +4750 +846 +1722 +3588 +5014 +3588 +2920 +846 +142 +3588 +1074 +846 +5101 +1334 +3754 +142 +575 +3588 +1093 +3588 +2222 +846 +1161 +611 +3588 +2135 +3588 +5376 +3004 +1189 +4771 +4012 +5101 +3588 +4396 +3004 +3778 +4012 +1438 +2228 +4012 +2087 +5100 +1161 +3588 +5376 +455 +3588 +4750 +846 +2532 +756 +575 +3588 +1124 +3778 +2097 +846 +3588 +2424 +1161 +5613 +4198 +2596 +3588 +3598 +2064 +1909 +5100 +5204 +2532 +5346 +3588 +2135 +3708 +5204 +5101 +2967 +1473 +907 +2532 +2753 +2476 +3588 +716 +2532 +2597 +297 +1519 +3588 +5204 +5037 +3588 +5376 +2532 +3588 +2135 +2532 +907 +846 +1161 +3753 +305 +1537 +3588 +5204 +4151 +2962 +726 +3588 +5376 +2532 +3756 +3708 +846 +3765 +3588 +2135 +1063 +4198 +3588 +3598 +846 +5463 +1161 +5376 +2147 +1519 +108 +2532 +1330 +2097 +3588 +4172 +3956 +2193 +3588 +2064 +846 +1519 +2542 +1161 +3588 +4569 +2089 +1709 +547 +2532 +5408 +1519 +3588 +3101 +3588 +2962 +4334 +3588 +749 +154 +3844 +846 +1992 +1519 +1154 +4314 +3588 +4864 +3704 +1437 +2147 +5100 +3588 +3598 +1510 +5037 +435 +2532 +1135 +1210 +71 +1519 +2419 +1161 +1722 +3588 +4198 +1096 +846 +1448 +3588 +1154 +5037 +1810 +846 +4015 +5457 +1537 +3588 +3772 +2532 +4098 +1909 +3588 +1093 +191 +5456 +3004 +846 +4549 +4549 +5101 +1473 +1377 +1161 +3004 +5101 +1510 +2962 +1161 +3588 +1473 +1510 +2424 +3739 +4771 +1377 +235 +450 +2532 +1525 +1519 +3588 +4172 +2532 +2980 +4771 +3739 +5101 +4771 +4160 +1163 +1161 +3588 +435 +3588 +4922 +846 +2476 +1769 +3303 +191 +3588 +5456 +1161 +3367 +2334 +1161 +1453 +4569 +575 +3588 +1093 +1161 +455 +3588 +3788 +846 +3762 +991 +1161 +5496 +846 +1521 +1519 +1154 +2532 +1510 +991 +2250 +5140 +3361 +2532 +3756 +5315 +3761 +4095 +1161 +1510 +5100 +3101 +3686 +367 +1722 +1154 +2532 +3004 +4314 +846 +1722 +3705 +3588 +2962 +367 +1161 +3588 +3004 +3708 +1473 +2962 +1161 +3588 +2962 +4314 +846 +450 +4198 +1909 +3588 +4505 +3588 +2564 +2117 +2532 +2212 +1722 +3614 +2455 +4569 +3686 +5018 +1063 +3708 +4336 +2532 +3708 +435 +367 +3686 +1525 +2532 +2007 +846 +5495 +3704 +308 +1161 +611 +367 +2962 +191 +575 +4183 +4012 +3588 +435 +3778 +3745 +2556 +3588 +40 +4771 +4160 +1722 +2419 +2532 +5602 +2192 +1849 +3844 +3588 +749 +1210 +3956 +3588 +1941 +3588 +3686 +4771 +1161 +3004 +4314 +846 +3588 +2962 +4198 +3754 +4632 +1589 +1510 +1473 +3778 +3588 +941 +3588 +3686 +1473 +1799 +5037 +1484 +2532 +935 +5037 +5207 +2474 +1063 +1473 +5263 +846 +3745 +846 +5228 +3588 +3686 +1473 +3958 +1163 +1161 +565 +367 +2532 +1525 +1519 +3588 +3614 +2532 +2007 +1909 +846 +3588 +5495 +3004 +4549 +80 +3588 +2962 +2424 +3588 +3708 +4771 +1722 +3588 +3598 +3739 +2064 +649 +1473 +3704 +308 +2532 +4130 +4151 +40 +2532 +2112 +634 +575 +846 +3588 +3788 +5613 +3013 +5037 +308 +2532 +450 +907 +2532 +2983 +5160 +1765 +1161 +1096 +3326 +3588 +1722 +1154 +3101 +2250 +5100 +2532 +2112 +1722 +3588 +4864 +2784 +3588 +2424 +3754 +3778 +1510 +3588 +5207 +3588 +2316 +1161 +1839 +3956 +3588 +191 +2532 +3004 +3756 +3778 +1510 +3588 +4199 +1519 +2419 +3588 +1941 +3588 +3686 +3778 +2532 +5602 +1519 +3778 +2064 +2443 +1210 +846 +71 +1909 +3588 +749 +1161 +4569 +3123 +1743 +2532 +4797 +2453 +3588 +2730 +1722 +1154 +4822 +3754 +3778 +1510 +3588 +5547 +1161 +5613 +4137 +2250 +2425 +4823 +3588 +2453 +337 +846 +1161 +1097 +3588 +4569 +3588 +1917 +846 +1161 +3906 +2532 +3588 +4439 +5037 +2250 +2532 +3571 +3704 +846 +337 +1161 +2983 +3588 +3101 +846 +3571 +1223 +3588 +5038 +2524 +846 +5465 +1722 +4711 +1161 +3854 +1519 +2419 +3985 +2853 +3588 +3101 +2532 +3956 +5399 +846 +3361 +4100 +3754 +1510 +3101 +1161 +921 +1949 +846 +71 +4314 +3588 +652 +2532 +1334 +846 +4459 +1722 +3588 +3598 +3708 +3588 +2962 +2532 +3754 +2980 +846 +2532 +4459 +1722 +1154 +3955 +1722 +3588 +3686 +2424 +2532 +1510 +1531 +2532 +1607 +3326 +846 +1519 +2419 +3955 +1722 +3588 +3686 +3588 +2962 +5037 +2980 +2532 +4802 +4314 +3588 +1675 +1161 +3588 +2021 +337 +846 +1161 +1921 +3588 +80 +2609 +846 +1519 +2542 +2532 +1821 +846 +1519 +5019 +3303 +3767 +3588 +1577 +2596 +3650 +3588 +2449 +2532 +1056 +2532 +4540 +2192 +1515 +3618 +2532 +4198 +3588 +5401 +3588 +2962 +2532 +3588 +3874 +3588 +40 +4151 +4129 +1161 +1096 +4074 +1330 +1223 +3956 +2718 +2532 +4314 +3588 +40 +3588 +2730 +3069 +1161 +2147 +1563 +444 +5100 +3686 +132 +1537 +2094 +3638 +2621 +1909 +2895 +3739 +1510 +3886 +2532 +3004 +846 +3588 +4074 +132 +2390 +4771 +2424 +5547 +450 +2532 +4766 +4572 +2532 +2112 +450 +2532 +3708 +846 +3956 +3588 +2730 +3069 +2532 +3588 +4565 +3748 +1994 +1909 +3588 +2962 +1161 +1722 +2445 +1510 +5100 +3102 +3686 +5000 +3739 +1329 +3004 +1393 +3778 +1510 +4134 +2041 +18 +2532 +1654 +3739 +4160 +1161 +1096 +1722 +3588 +2250 +1565 +770 +846 +599 +1161 +3068 +5087 +1722 +5253 +1161 +1510 +3069 +1451 +3588 +2445 +3588 +3101 +191 +3754 +4074 +1510 +1722 +846 +649 +1417 +435 +4314 +846 +3870 +3361 +3635 +1330 +2193 +1473 +1161 +450 +4074 +4905 +846 +3739 +3854 +321 +1519 +3588 +5253 +2532 +3936 +846 +3956 +3588 +5503 +2799 +2532 +1925 +5509 +2532 +2440 +3745 +4160 +3326 +846 +1510 +3588 +1393 +1161 +3588 +4074 +1544 +1854 +3956 +2532 +5087 +3588 +1119 +4336 +2532 +1994 +4314 +3588 +4983 +3004 +5000 +450 +1161 +3588 +455 +3588 +3788 +846 +2532 +3708 +3588 +4074 +339 +1161 +1325 +846 +5495 +450 +846 +1161 +5455 +3588 +40 +2532 +3588 +5503 +3936 +846 +2198 +1161 +1110 +1096 +2596 +3650 +3588 +2445 +2532 +4100 +4183 +1909 +3588 +2962 +1161 +1096 +2250 +2425 +3306 +1722 +2445 +3844 +5100 +4613 +1038 +1161 +435 +5100 +1722 +2542 +3686 +2883 +1543 +1537 +4686 +3588 +2564 +2483 +2152 +2532 +5399 +3588 +2316 +4862 +3956 +3588 +3624 +846 +4160 +1654 +4183 +3588 +2992 +2532 +1189 +3588 +2316 +1223 +3956 +3708 +1722 +3705 +5320 +5616 +4012 +5610 +1766 +3588 +2250 +32 +3588 +2316 +1525 +4314 +846 +2532 +3004 +846 +2883 +1161 +3588 +816 +846 +2532 +1719 +1096 +3004 +5101 +1510 +2962 +1161 +3004 +846 +3588 +4335 +4771 +2532 +3588 +1654 +4771 +305 +1519 +3422 +1715 +3588 +2316 +2532 +3568 +3992 +435 +1519 +2445 +2532 +3343 +4613 +5100 +3739 +1941 +4074 +3778 +3579 +3844 +5100 +4613 +1038 +3739 +1510 +3614 +3844 +2281 +1161 +5613 +565 +3588 +32 +3588 +2980 +846 +5455 +1417 +3588 +3610 +2532 +4757 +2152 +3588 +4342 +846 +2532 +1834 +537 +846 +649 +846 +1519 +3588 +2445 +1161 +3588 +1887 +3596 +1565 +2532 +3588 +4172 +1448 +305 +4074 +1909 +3588 +1430 +4336 +4012 +5610 +1623 +1161 +1096 +4361 +2532 +2309 +1089 +1161 +3903 +846 +1096 +1909 +846 +1611 +2532 +2334 +3588 +3772 +455 +2532 +2597 +4632 +5100 +5613 +3607 +3173 +5064 +746 +2524 +1909 +3588 +1093 +1722 +3739 +5225 +3956 +3588 +5074 +2532 +2062 +3588 +1093 +2532 +4071 +3588 +3772 +2532 +1096 +5456 +4314 +846 +4074 +450 +2380 +2532 +5315 +1161 +3588 +4074 +3004 +3365 +2962 +3754 +3763 +5315 +3956 +2839 +2532 +169 +2532 +5456 +3825 +1537 +1208 +4314 +846 +3739 +3588 +2316 +2511 +4771 +3361 +2840 +1161 +3778 +1096 +1909 +5151 +2532 +2117 +353 +3588 +4632 +1519 +3588 +3772 +1161 +5613 +1722 +1438 +1280 +3588 +4074 +302 +5101 +1510 +3588 +3705 +3739 +3708 +3708 +3588 +435 +3588 +649 +5259 +3588 +2883 +1331 +3588 +3614 +3588 +4613 +2186 +1909 +3588 +4440 +2532 +5455 +4441 +1487 +4613 +3588 +1941 +4074 +1759 +3579 +1161 +3588 +4074 +1760 +4012 +3588 +3705 +3004 +3588 +4151 +3708 +435 +1417 +2212 +4771 +235 +450 +2597 +2532 +4198 +4862 +846 +3367 +1252 +3754 +1473 +649 +846 +1161 +2597 +4074 +4314 +3588 +435 +3004 +3708 +1473 +1510 +3739 +2212 +5101 +3588 +156 +1223 +3739 +3918 +1161 +3588 +3004 +2883 +1543 +435 +1342 +2532 +5399 +3588 +2316 +5037 +3140 +5259 +3650 +3588 +1484 +3588 +2453 +5537 +5259 +32 +40 +3343 +4771 +1519 +3588 +3624 +846 +2532 +191 +4487 +3844 +4771 +3767 +1528 +846 +3579 +1161 +3588 +1887 +450 +1831 +4862 +846 +2532 +5100 +3588 +80 +3588 +575 +2445 +4905 +846 +1161 +3588 +1887 +1525 +1519 +3588 +2542 +1161 +3588 +2883 +1510 +4328 +846 +4779 +3588 +4773 +846 +2532 +3588 +316 +5384 +1161 +5613 +1096 +3588 +1525 +3588 +4074 +4876 +846 +3588 +2883 +4098 +1909 +3588 +4228 +4352 +1161 +3588 +4074 +1453 +846 +3004 +450 +2532 +1473 +846 +444 +1510 +2532 +4926 +846 +1525 +2532 +2147 +4905 +4183 +5037 +5346 +4314 +846 +4771 +1987 +5613 +111 +1510 +435 +2453 +2853 +2228 +4334 +246 +2504 +3588 +2316 +1166 +3367 +444 +2839 +2228 +169 +3004 +1352 +2532 +369 +2064 +3343 +3767 +4441 +5101 +3056 +3343 +1473 +2532 +3588 +2883 +5346 +575 +5067 +2250 +3360 +3778 +3588 +5610 +1510 +4336 +3588 +1766 +1722 +3588 +3624 +1473 +2532 +3708 +435 +2476 +1799 +1473 +1722 +2066 +2986 +2532 +5346 +2883 +1522 +4771 +3588 +4335 +2532 +3588 +1654 +4771 +3403 +1799 +3588 +2316 +3767 +3992 +1519 +2445 +2532 +3333 +4613 +3739 +1941 +4074 +3778 +3579 +1722 +3614 +4613 +1038 +3844 +2281 +3767 +1824 +3992 +4314 +4771 +5037 +4771 +2573 +4160 +3854 +3767 +3568 +3956 +1473 +1799 +3588 +2316 +3918 +191 +3956 +3588 +4367 +4771 +5259 +3588 +2962 +1161 +4074 +455 +3588 +4750 +3004 +1909 +225 +2638 +3754 +3756 +1510 +4381 +3588 +2316 +235 +1722 +3956 +1484 +3588 +5399 +846 +2532 +2038 +1343 +1184 +846 +1510 +3588 +3056 +3739 +649 +3588 +5207 +2474 +2097 +1515 +1223 +2424 +5547 +3778 +1510 +3956 +2962 +4771 +1492 +3588 +4487 +1096 +2596 +3650 +3588 +2449 +756 +575 +3588 +1056 +3326 +3588 +908 +3739 +2784 +2491 +2424 +3588 +575 +3478 +5613 +5548 +846 +3588 +2316 +4151 +40 +2532 +1411 +3739 +1330 +2109 +2532 +2390 +3956 +3588 +2616 +5259 +3588 +1228 +3754 +3588 +2316 +1510 +3326 +846 +2532 +1473 +3144 +3956 +3739 +4160 +5037 +1722 +3588 +5561 +3588 +2453 +2532 +2419 +3739 +2532 +337 +2910 +1909 +3586 +3778 +3588 +2316 +1453 +1722 +3588 +5154 +2250 +2532 +1325 +846 +1717 +1096 +3756 +3956 +3588 +2992 +235 +3144 +3588 +4401 +5259 +3588 +2316 +1473 +3748 +4906 +2532 +4844 +846 +3326 +3588 +450 +846 +1537 +3498 +2532 +3853 +1473 +2784 +3588 +2992 +2532 +1263 +3754 +3778 +1510 +3588 +3724 +5259 +3588 +2316 +2923 +2198 +2532 +3498 +3778 +3956 +3588 +4396 +3140 +859 +266 +2983 +1223 +3588 +3686 +846 +3956 +3588 +4100 +1519 +846 +2089 +2980 +3588 +4074 +3588 +4487 +3778 +1968 +3588 +4151 +3588 +40 +1909 +3956 +3588 +191 +3588 +3056 +2532 +1839 +3588 +1537 +4061 +4103 +3745 +4905 +3588 +4074 +3754 +2532 +1909 +3588 +1484 +3588 +1431 +3588 +40 +4151 +1632 +1063 +191 +846 +2980 +1100 +2532 +3170 +3588 +2316 +5119 +611 +4074 +3385 +3588 +5204 +2967 +1410 +5100 +3588 +3361 +907 +3778 +3748 +3588 +4151 +3588 +40 +2983 +5613 +2532 +1473 +1161 +4367 +846 +1722 +3588 +3686 +2424 +5547 +907 +5119 +2065 +846 +1961 +2250 +5100 +1161 +191 +3588 +652 +2532 +3588 +80 +3588 +1510 +2596 +3588 +2449 +3754 +2532 +3588 +1484 +1209 +3588 +3056 +3588 +2316 +1161 +3753 +305 +4074 +1519 +2419 +1252 +4314 +846 +3588 +1537 +4061 +3004 +3754 +1525 +4314 +435 +203 +2192 +2532 +4906 +846 +1161 +756 +4074 +1620 +846 +2517 +3004 +1473 +1510 +4336 +1722 +4172 +2445 +2532 +3708 +1722 +1611 +3705 +2597 +4632 +5100 +5613 +3607 +3173 +5064 +746 +2524 +1537 +3588 +3772 +2532 +2064 +891 +1473 +1519 +3739 +816 +2657 +2532 +3708 +3588 +5074 +3588 +1093 +2532 +3588 +2342 +2532 +3588 +2062 +2532 +3588 +4071 +3588 +3772 +1161 +191 +2532 +5456 +3004 +1473 +4074 +450 +2380 +2532 +5315 +1161 +3004 +3365 +2962 +3754 +2839 +2228 +169 +3763 +1525 +1519 +3588 +4750 +1473 +1161 +611 +1537 +1208 +5456 +1537 +3588 +3772 +3739 +3588 +2316 +2511 +4771 +3361 +2840 +1161 +3778 +1096 +1909 +5151 +2532 +385 +3825 +537 +1519 +3588 +3772 +2532 +3708 +1824 +5140 +435 +2186 +1909 +3588 +3614 +1722 +3739 +1510 +649 +575 +2542 +4314 +1473 +1161 +3004 +3588 +4151 +1473 +4905 +846 +3367 +1252 +1161 +2064 +4862 +1473 +2532 +3588 +1803 +80 +3778 +2532 +1525 +1519 +3588 +3624 +3588 +435 +1161 +518 +1473 +4459 +3708 +3588 +32 +1722 +3588 +3624 +846 +2476 +2532 +3004 +649 +1519 +2445 +2532 +3343 +4613 +3588 +1941 +4074 +3739 +2980 +4487 +4314 +4771 +1722 +3739 +4982 +4771 +2532 +3956 +3588 +3624 +4771 +1161 +1722 +3588 +756 +1473 +2980 +1968 +3588 +4151 +3588 +40 +1909 +846 +5618 +2532 +1909 +1473 +1722 +746 +1161 +3403 +3588 +4487 +3588 +2962 +5613 +3004 +3303 +2491 +907 +5204 +1161 +4771 +907 +1722 +4151 +40 +3767 +1487 +3588 +2470 +1431 +1325 +846 +3588 +2316 +5613 +2532 +1473 +4100 +1909 +3588 +2962 +2424 +5547 +1473 +5101 +1510 +1415 +2967 +3588 +2316 +1161 +191 +3778 +2270 +2532 +1392 +3588 +2316 +3004 +686 +2532 +3588 +1484 +3588 +2316 +3588 +3341 +1519 +2222 +1325 +3303 +3767 +3588 +1289 +575 +3588 +2347 +3588 +1096 +1909 +4736 +1330 +2193 +5403 +2532 +2954 +2532 +490 +3367 +2980 +3588 +3056 +1487 +3361 +3440 +2453 +1161 +1510 +5100 +1537 +846 +435 +2953 +2532 +2956 +3748 +2064 +1519 +490 +2980 +2532 +4314 +3588 +1672 +2097 +3588 +2962 +2424 +2532 +1510 +5495 +2962 +3326 +846 +5037 +4183 +706 +3588 +4100 +1994 +1909 +3588 +2962 +1161 +191 +3588 +3056 +4012 +846 +1519 +3588 +3775 +3588 +1577 +3588 +1510 +1722 +2419 +2532 +1821 +921 +2193 +490 +3739 +3854 +2532 +3708 +3588 +5485 +3588 +3588 +2316 +5463 +2532 +3870 +3956 +3588 +4286 +3588 +2588 +4357 +3588 +2962 +3754 +1510 +435 +18 +2532 +4134 +4151 +40 +2532 +4102 +2532 +4369 +3793 +2425 +3588 +2962 +1161 +1831 +1519 +5019 +327 +4569 +2532 +2147 +71 +1519 +490 +1161 +1096 +846 +2532 +1763 +3650 +4863 +1722 +3588 +1577 +2532 +1321 +3793 +2425 +5037 +5537 +4413 +1722 +490 +3588 +3101 +5546 +1161 +1722 +3778 +3588 +2250 +2718 +575 +2414 +4396 +1519 +490 +1161 +450 +1520 +1537 +846 +3686 +13 +4591 +1223 +3588 +4151 +3042 +3173 +3195 +1510 +1909 +3650 +3588 +3625 +3748 +1096 +1909 +2804 +1161 +3588 +3101 +2531 +2141 +5100 +3724 +1538 +846 +1519 +1248 +3992 +3588 +2730 +1722 +3588 +2449 +80 +3739 +2532 +4160 +649 +4314 +3588 +4245 +1223 +5495 +921 +2532 +4569 +1161 +2596 +1565 +3588 +2540 +1911 +2264 +3588 +935 +3588 +5495 +2559 +5100 +3588 +575 +3588 +1577 +1161 +337 +2385 +3588 +80 +2491 +3162 +1161 +3708 +3754 +701 +1510 +3588 +2453 +4369 +4815 +2532 +4074 +1161 +1510 +2250 +3588 +106 +3739 +2532 +4084 +5087 +1519 +5438 +3860 +5064 +5069 +4757 +5442 +846 +1014 +3326 +3588 +3957 +321 +846 +3588 +2992 +3767 +3303 +3588 +4074 +5083 +1722 +3588 +5438 +1161 +4335 +1510 +1096 +1619 +5259 +3588 +1577 +4314 +3588 +2316 +4012 +846 +1161 +3753 +3195 +4254 +846 +3588 +2264 +3588 +3571 +1565 +3588 +4074 +1510 +2837 +3342 +1417 +4757 +1210 +254 +1417 +5037 +5441 +4253 +3588 +2374 +5083 +3588 +5438 +2532 +3708 +32 +2962 +2186 +2532 +5457 +2989 +1722 +3588 +3612 +1161 +3960 +3588 +4125 +3588 +4074 +1453 +846 +3004 +450 +1722 +5034 +2532 +1601 +846 +3588 +254 +1537 +3588 +5495 +1161 +3004 +3588 +32 +4314 +846 +2224 +2532 +5265 +3588 +4547 +4771 +1161 +4160 +3779 +2532 +3004 +846 +4016 +3588 +2440 +4771 +2532 +190 +1473 +2532 +1831 +190 +2532 +3756 +1492 +3754 +227 +1510 +3588 +1096 +1223 +3588 +32 +1161 +1380 +3705 +991 +1161 +1330 +4413 +2532 +1208 +5438 +2064 +1909 +3588 +4439 +3588 +4603 +3588 +5342 +1519 +3588 +4172 +3748 +844 +455 +846 +2532 +1831 +4281 +4505 +1520 +2532 +2112 +868 +3588 +32 +575 +846 +2532 +3588 +4074 +1722 +1438 +1096 +3004 +3568 +1492 +230 +3754 +1821 +3588 +2962 +3588 +32 +846 +2532 +1807 +1473 +1537 +5495 +2264 +2532 +3956 +3588 +4329 +3588 +2992 +3588 +2453 +5037 +4894 +2064 +1909 +3588 +3614 +3588 +3137 +3588 +3384 +2491 +3588 +1941 +3138 +3757 +2425 +1510 +4867 +2532 +4336 +1161 +2925 +846 +3588 +2374 +3588 +4440 +4334 +5219 +3814 +3686 +4498 +2532 +1921 +3588 +5456 +3588 +4074 +575 +3588 +5479 +3756 +455 +3588 +4440 +1161 +1532 +518 +2476 +3588 +4074 +4253 +3588 +4440 +1161 +3588 +4314 +846 +3004 +3105 +1161 +3588 +1340 +3779 +2192 +1161 +3588 +3004 +3588 +32 +1510 +846 +1161 +3588 +4074 +1961 +2925 +1161 +455 +3708 +846 +2532 +1839 +1161 +2678 +846 +3588 +5495 +4601 +1334 +846 +4459 +3588 +2962 +846 +1806 +1537 +3588 +5438 +5037 +3004 +518 +2385 +2532 +3588 +80 +3778 +2532 +1831 +4198 +1519 +2087 +5117 +1161 +1096 +2250 +1510 +5017 +3756 +3641 +1722 +3588 +4757 +686 +5101 +3588 +4074 +1096 +1161 +2264 +1934 +846 +2532 +3361 +2147 +350 +3588 +5441 +2753 +520 +2532 +2718 +575 +3588 +2449 +1519 +2542 +1304 +1161 +1510 +2371 +5183 +2532 +4606 +1161 +3661 +3918 +4314 +846 +2532 +3982 +986 +3588 +1909 +3588 +2846 +3588 +935 +154 +1515 +1223 +3588 +5142 +846 +3588 +5561 +575 +3588 +937 +1161 +5002 +2250 +3588 +2264 +1746 +2066 +937 +2523 +1909 +3588 +968 +1215 +4314 +846 +1161 +3588 +1218 +2019 +2316 +5456 +2532 +3756 +444 +1161 +3916 +3960 +846 +32 +2962 +473 +3739 +3756 +1325 +3588 +1391 +3588 +2316 +2532 +1096 +4662 +1634 +1161 +3588 +3056 +3588 +2962 +837 +2532 +4129 +1161 +921 +2532 +4569 +5290 +1537 +2419 +4137 +3588 +1248 +4838 +2491 +3588 +1941 +3138 +1161 +1510 +1722 +490 +2596 +3588 +1510 +1577 +4396 +2532 +1320 +5037 +3588 +921 +2532 +4826 +3588 +2564 +3526 +2532 +3066 +3588 +2956 +5037 +3127 +2264 +3588 +5076 +4939 +2532 +4569 +1161 +3008 +846 +3588 +2962 +2532 +3522 +3004 +3588 +4151 +3588 +40 +1211 +873 +1473 +3588 +921 +2532 +4569 +1519 +3588 +2041 +3739 +4341 +846 +5119 +3522 +2532 +4336 +2532 +2007 +3588 +5495 +846 +630 +3303 +3767 +846 +1599 +5259 +3588 +40 +4151 +2718 +1519 +4581 +5037 +1564 +636 +1519 +2954 +2532 +1096 +1722 +4529 +2605 +3588 +3056 +3588 +2316 +1722 +3588 +4864 +3588 +2453 +1161 +2192 +2532 +2491 +5257 +1161 +1330 +3650 +3588 +3520 +891 +3974 +2147 +435 +5100 +3097 +5578 +2453 +3739 +3686 +919 +3739 +1510 +4862 +3588 +446 +4588 +3972 +435 +4908 +3778 +4341 +921 +2532 +4569 +1934 +191 +3588 +3056 +3588 +2316 +1161 +436 +846 +1681 +3588 +3097 +1063 +3779 +3177 +3588 +3686 +846 +2212 +1294 +3588 +446 +575 +3588 +4102 +1161 +4569 +3588 +2532 +3972 +4130 +4151 +40 +816 +1519 +846 +3004 +5599 +4134 +3956 +1388 +2532 +3956 +4468 +5207 +1228 +2190 +3956 +1343 +3756 +3973 +1294 +3588 +3598 +3588 +2962 +3588 +2117 +2532 +3568 +3708 +5495 +2962 +1909 +4771 +2532 +1510 +5185 +3361 +991 +3588 +2246 +891 +2540 +1161 +3916 +4098 +1909 +846 +887 +2532 +4655 +2532 +4013 +2212 +5497 +5119 +3588 +446 +3708 +3588 +1096 +4100 +1605 +1909 +3588 +1322 +3588 +2962 +1161 +321 +575 +3588 +3974 +3588 +4012 +3972 +2064 +1519 +4011 +3588 +3828 +1161 +2491 +672 +575 +846 +5290 +1519 +2414 +1161 +846 +1330 +575 +3588 +4011 +3854 +1519 +490 +3588 +4099 +2532 +2064 +1519 +3588 +4864 +3588 +2250 +3588 +4521 +2523 +1161 +3326 +3588 +320 +3588 +3551 +2532 +3588 +4396 +649 +3588 +752 +4314 +846 +3004 +435 +80 +1487 +1510 +1722 +4771 +5100 +3056 +3874 +4314 +3588 +2992 +3004 +1161 +3972 +450 +2532 +2678 +3588 +5495 +3004 +435 +2475 +2532 +3588 +5399 +3588 +2316 +191 +3588 +2316 +3588 +2992 +3778 +2474 +1586 +3588 +3962 +1473 +2532 +3588 +2992 +5312 +1722 +3588 +3940 +1722 +1093 +125 +2532 +3326 +1023 +5308 +1806 +846 +1537 +846 +2532 +5613 +5063 +5550 +5159 +846 +1722 +3588 +2048 +2532 +2507 +1484 +2033 +1722 +1093 +5477 +2624 +3588 +1093 +846 +5613 +2094 +5071 +2532 +4004 +2532 +3326 +3778 +1325 +2923 +2193 +4545 +4396 +2547 +154 +935 +2532 +1325 +846 +3588 +2316 +3588 +4549 +5207 +2797 +435 +1537 +5443 +958 +2094 +5062 +2532 +3179 +846 +1453 +3588 +1138 +846 +1519 +935 +3739 +2532 +3004 +3140 +2147 +1138 +3588 +3588 +2421 +435 +2596 +3588 +2588 +1473 +3739 +4160 +3956 +3588 +2307 +1473 +3588 +2316 +575 +3778 +3588 +4690 +2596 +1860 +71 +3588 +2474 +4990 +2424 +4296 +2491 +4253 +4383 +3588 +1529 +846 +908 +3341 +3956 +3588 +2992 +2474 +1161 +5613 +4137 +2491 +3588 +1408 +3004 +5101 +1473 +1510 +5282 +3756 +1510 +1473 +235 +3708 +2064 +3326 +1473 +3739 +3756 +1510 +514 +3588 +5266 +3588 +4228 +3089 +435 +80 +5207 +1085 +11 +2532 +3588 +1722 +4771 +5399 +3588 +2316 +1473 +3588 +3056 +3588 +4991 +3778 +1821 +1063 +3588 +2730 +1722 +2419 +2532 +3588 +758 +846 +3778 +50 +2532 +3588 +5456 +3588 +4396 +3588 +2596 +3956 +4521 +314 +2919 +4137 +2532 +3367 +156 +2288 +2147 +154 +4091 +337 +846 +1161 +5613 +5055 +3956 +3588 +4012 +846 +1125 +2507 +575 +3588 +3586 +5087 +1519 +3419 +1161 +3588 +2316 +1453 +846 +1537 +3498 +3739 +3708 +1909 +2250 +4119 +3588 +4872 +846 +575 +3588 +1056 +1519 +2419 +3748 +3568 +1510 +3144 +846 +4314 +3588 +2992 +2532 +1473 +4771 +2097 +3588 +4314 +3588 +3962 +1096 +1860 +3754 +3778 +3588 +2316 +1603 +3588 +5043 +1473 +450 +2424 +5613 +2532 +1722 +3588 +5568 +3588 +1208 +1125 +5207 +1473 +1510 +4771 +1473 +4594 +1080 +4771 +1161 +3754 +450 +846 +1537 +3498 +3371 +3195 +5290 +1519 +1312 +3779 +2046 +3754 +1325 +4771 +3588 +3741 +1138 +3588 +4103 +1360 +2532 +1722 +2087 +3004 +3756 +1325 +3588 +3741 +4771 +3708 +1312 +1063 +3303 +1138 +2398 +1074 +5256 +3588 +3588 +2316 +1012 +2837 +2532 +4369 +4314 +3588 +3962 +846 +2532 +3708 +1312 +1161 +3739 +3588 +2316 +1453 +3756 +3708 +1312 +3767 +1110 +1510 +4771 +435 +80 +3754 +1223 +3778 +4771 +859 +266 +2605 +2532 +575 +3956 +3739 +3756 +1410 +1722 +3551 +3475 +1344 +1722 +3778 +3956 +3588 +4100 +1344 +3767 +991 +3361 +1904 +3588 +2046 +1722 +3588 +4396 +3708 +3588 +2707 +2532 +2296 +2532 +853 +3754 +2041 +2038 +1473 +1722 +3588 +2250 +4771 +2041 +3739 +3756 +3361 +4100 +1437 +5100 +1555 +4771 +1161 +1826 +846 +3870 +1519 +3588 +3342 +4521 +2980 +846 +3588 +4487 +3778 +1161 +3089 +3588 +4864 +190 +4183 +3588 +2453 +2532 +3588 +4576 +4339 +3588 +3972 +2532 +3588 +921 +3748 +4354 +846 +3982 +846 +4357 +3588 +5485 +3588 +2316 +1161 +3588 +2064 +4521 +4975 +3956 +3588 +4172 +4863 +191 +3588 +3056 +3588 +2316 +1161 +3588 +2453 +3708 +3588 +3793 +4130 +2205 +2532 +483 +3588 +5259 +3972 +2980 +987 +5037 +3955 +3588 +3972 +2532 +3588 +921 +3004 +1510 +316 +4771 +4412 +2980 +3588 +3056 +3588 +2316 +1894 +683 +846 +2532 +3756 +2919 +1438 +514 +3588 +166 +2222 +3708 +4762 +1519 +3588 +1484 +1063 +3779 +1781 +1473 +3588 +2962 +5087 +4771 +1519 +5457 +1484 +3588 +1510 +4771 +1519 +4991 +2193 +2078 +3588 +1093 +1161 +191 +3588 +1484 +5463 +2532 +1392 +3588 +3056 +3588 +2962 +2532 +4100 +3745 +1510 +5021 +1519 +2222 +166 +1161 +1308 +3588 +3056 +3588 +2962 +1223 +3650 +3588 +5561 +1161 +3588 +2453 +3951 +3588 +4576 +1135 +3588 +2158 +2532 +3588 +4413 +3588 +4172 +2532 +1892 +1375 +1909 +3588 +3972 +2532 +921 +2532 +1544 +846 +575 +3588 +3725 +846 +1161 +3588 +1621 +3588 +2868 +3588 +4228 +1909 +846 +2064 +1519 +2430 +5037 +3588 +3101 +4137 +5479 +2532 +4151 +40 +1161 +1096 +1722 +2430 +2596 +3588 +846 +1525 +846 +1519 +3588 +4864 +3588 +2453 +2532 +2980 +3779 +5620 +4100 +5037 +2453 +2532 +1672 +4183 +4128 +1161 +3588 +544 +2453 +1892 +2532 +2559 +3588 +5590 +3588 +1484 +2596 +3588 +80 +3767 +3303 +2425 +5550 +1304 +3955 +1909 +3588 +2962 +3588 +3140 +1909 +3588 +3056 +3588 +5485 +846 +1325 +4592 +2532 +5059 +1096 +1223 +3588 +5495 +846 +1161 +4977 +3588 +4128 +3588 +4172 +2532 +3303 +3588 +1510 +4862 +3588 +2453 +1161 +3588 +4862 +3588 +652 +1161 +5613 +1096 +3730 +3588 +5037 +1484 +2532 +2453 +4862 +3588 +758 +846 +5195 +2532 +3036 +846 +4894 +2703 +1519 +3588 +4172 +3588 +3071 +3082 +2532 +1191 +2532 +3588 +4066 +2546 +2097 +1510 +2532 +5100 +435 +102 +3588 +4228 +1722 +3082 +2521 +5560 +1537 +2836 +3384 +846 +3739 +3763 +4043 +3778 +191 +3588 +3972 +2980 +3739 +816 +846 +2532 +3708 +3754 +2192 +4102 +3588 +4982 +3004 +3173 +5456 +450 +1909 +3588 +4228 +4771 +3717 +2532 +242 +2532 +4043 +5037 +3588 +3793 +3708 +3739 +4160 +3972 +1869 +3588 +5456 +846 +3072 +3004 +3588 +2316 +3666 +444 +2597 +4314 +1473 +5037 +2564 +3588 +921 +2203 +1161 +3588 +3972 +2060 +1894 +846 +1510 +3588 +2233 +3588 +3056 +5037 +3588 +2409 +3588 +2203 +3588 +1510 +4253 +3588 +4172 +5022 +2532 +4725 +1909 +3588 +4440 +5342 +4862 +3588 +3793 +2309 +2380 +1161 +191 +3588 +652 +921 +2532 +3972 +1284 +3588 +2440 +1438 +1530 +1519 +3588 +3793 +2896 +2532 +3004 +435 +5101 +3778 +4160 +2532 +1473 +3663 +4771 +444 +1510 +2097 +4771 +575 +3778 +3588 +3152 +1994 +1909 +2316 +2198 +3739 +4160 +3588 +3772 +2532 +3588 +1093 +2532 +3588 +2281 +2532 +3956 +3588 +1722 +846 +3739 +1722 +3588 +3944 +1074 +1439 +3956 +3588 +1484 +4198 +3588 +3598 +846 +2543 +3756 +267 +846 +863 +14 +3771 +4771 +5205 +1325 +2532 +2540 +2593 +1705 +5160 +2532 +2167 +3588 +2588 +4771 +2532 +3778 +3004 +3433 +2664 +3588 +3793 +3588 +3361 +2380 +846 +1161 +1904 +575 +490 +2532 +2430 +2453 +2532 +3982 +3588 +3793 +2532 +3034 +3588 +3972 +4951 +1854 +3588 +4172 +3543 +846 +2348 +1161 +2944 +3588 +3101 +846 +450 +1525 +1519 +3588 +4172 +2532 +3588 +1887 +1831 +4862 +3588 +921 +1519 +1191 +5037 +2097 +3588 +4172 +1565 +2532 +3100 +2425 +5290 +1519 +3588 +3082 +2532 +1519 +2430 +2532 +1519 +490 +1991 +3588 +5590 +3588 +3101 +3870 +1696 +3588 +4102 +2532 +3754 +1163 +1223 +4183 +2347 +1473 +1525 +1519 +3588 +932 +3588 +2316 +1161 +5500 +846 +2596 +1577 +4245 +4336 +3326 +3521 +3908 +846 +3588 +2962 +1519 +3739 +4100 +2532 +1330 +3588 +4099 +2064 +1519 +3588 +3828 +2532 +2980 +1722 +4011 +3588 +3056 +2597 +1519 +825 +2547 +636 +1519 +490 +3606 +1510 +3860 +3588 +5485 +3588 +2316 +1519 +3588 +2041 +3739 +4137 +1161 +3854 +2532 +4863 +3588 +1577 +312 +3745 +4160 +3588 +2316 +3326 +846 +2532 +3754 +455 +3588 +1484 +2374 +4102 +1161 +1304 +5550 +3756 +3641 +4862 +3588 +3101 +2532 +5100 +2718 +575 +3588 +2449 +1321 +3588 +80 +3754 +1437 +3361 +4059 +3588 +1485 +3588 +3475 +3756 +1410 +4982 +1161 +1096 +4714 +2532 +2214 +3756 +3641 +3588 +3972 +2532 +3588 +921 +4314 +846 +5021 +305 +3972 +2532 +921 +2532 +5100 +243 +1537 +846 +4314 +3588 +652 +2532 +4245 +1519 +2419 +4012 +3588 +2213 +3778 +3303 +3767 +3588 +4311 +5259 +3588 +1577 +1330 +3588 +5037 +5403 +2532 +4540 +1555 +3588 +1995 +3588 +1484 +2532 +4160 +5479 +3173 +3956 +3588 +80 +1161 +3854 +1519 +2414 +3858 +575 +3588 +1577 +2532 +3588 +652 +2532 +3588 +4245 +5037 +312 +3745 +3588 +2316 +4160 +3326 +846 +1161 +1817 +5100 +3588 +575 +3588 +139 +3588 +5330 +4100 +3004 +3754 +1163 +4059 +846 +5037 +3853 +5083 +3588 +3551 +3475 +5037 +4863 +3588 +652 +2532 +3588 +4245 +3708 +4012 +3588 +3056 +3778 +1161 +4183 +2214 +1096 +450 +4074 +3004 +4314 +846 +435 +80 +4771 +1987 +3754 +575 +2250 +744 +1722 +4771 +1586 +3588 +2316 +1223 +3588 +4750 +1473 +191 +3588 +1484 +3588 +3056 +3588 +2098 +2532 +4100 +2532 +3588 +2589 +2316 +3140 +846 +1325 +3588 +4151 +3588 +40 +2531 +2532 +1473 +2532 +3762 +1252 +3342 +5037 +1473 +2532 +846 +3588 +4102 +2511 +3588 +2588 +846 +3767 +3568 +5101 +3985 +3588 +2316 +2007 +2218 +1909 +3588 +5137 +3588 +3101 +3739 +941 +3777 +3588 +3962 +1473 +3777 +1473 +2480 +235 +4100 +1223 +3588 +5485 +3588 +2962 +2424 +4982 +2596 +3739 +5158 +2548 +1161 +4601 +3956 +3588 +4128 +2532 +191 +921 +2532 +3972 +1834 +4592 +2532 +5059 +3745 +4160 +3588 +2316 +1722 +3588 +1484 +1223 +846 +1161 +3326 +3588 +4601 +846 +611 +2385 +3004 +435 +80 +191 +1473 +4826 +1834 +2531 +4412 +3588 +2316 +1980 +2983 +1537 +1484 +2992 +3588 +3686 +846 +2532 +3778 +4856 +3588 +3056 +3588 +4396 +2531 +1125 +3326 +3778 +390 +2532 +456 +3588 +4633 +1138 +3588 +4098 +2532 +3588 +2690 +846 +456 +2532 +461 +846 +3704 +302 +1567 +3588 +2645 +3588 +444 +3588 +2962 +2532 +3956 +3588 +1484 +1909 +3739 +1941 +3588 +3686 +1473 +1909 +846 +3004 +2962 +4160 +3778 +1110 +575 +165 +1352 +1473 +2919 +3361 +3926 +3588 +575 +3588 +1484 +1994 +1909 +3588 +2316 +235 +1989 +846 +3588 +568 +3588 +234 +3588 +1497 +2532 +3588 +4202 +2532 +4156 +2532 +3588 +129 +1063 +3475 +1537 +1074 +744 +2596 +4172 +3588 +2784 +846 +2192 +1722 +3588 +4864 +2596 +3956 +4521 +314 +5119 +1380 +3588 +652 +2532 +3588 +4245 +4862 +3650 +3588 +1577 +1586 +435 +1537 +846 +3992 +1519 +490 +4862 +3588 +3972 +2532 +921 +2455 +3588 +2564 +923 +2532 +4609 +435 +2233 +1722 +3588 +80 +1125 +1223 +5495 +846 +3588 +652 +2532 +3588 +4245 +80 +3588 +2596 +3588 +490 +2532 +4947 +2532 +2791 +80 +3588 +1537 +1484 +5463 +1894 +191 +3754 +5100 +1537 +1473 +5015 +4771 +3056 +384 +3588 +5590 +4771 +3739 +3756 +1291 +1380 +1473 +1096 +3661 +1586 +435 +3992 +4314 +4771 +4862 +3588 +27 +1473 +921 +2532 +3972 +444 +3860 +3588 +5590 +846 +5228 +3588 +3686 +3588 +2962 +1473 +2424 +5547 +3767 +649 +2455 +2532 +4609 +2532 +846 +1223 +3056 +518 +3588 +846 +1063 +1380 +3588 +4151 +3588 +40 +2532 +1473 +3367 +4119 +922 +2007 +4771 +4133 +3778 +3588 +1876 +568 +1494 +2532 +129 +2532 +4156 +2532 +4202 +1537 +3739 +1301 +1438 +2095 +4238 +4517 +3303 +3767 +3588 +630 +2718 +1519 +490 +2532 +4863 +3588 +4128 +1929 +3588 +1992 +1161 +314 +5463 +1909 +3588 +3874 +5037 +2455 +2532 +4609 +2532 +846 +4396 +1510 +1223 +3056 +4183 +3870 +3588 +80 +2532 +1991 +1161 +4160 +5550 +630 +3326 +1515 +575 +3588 +80 +4314 +3588 +649 +846 +1161 +3972 +2532 +921 +1304 +1722 +490 +1321 +2532 +2097 +3326 +2532 +2087 +4183 +3588 +3056 +3588 +2962 +1161 +3326 +5100 +2250 +3004 +4314 +921 +3972 +1211 +1994 +1980 +3588 +80 +2596 +4172 +3956 +1722 +3739 +2605 +3588 +3056 +3588 +2962 +4459 +2192 +1161 +921 +1014 +4838 +2532 +3588 +2491 +3588 +2564 +3138 +1161 +3972 +515 +3588 +868 +575 +846 +575 +3828 +2532 +3361 +4905 +846 +1519 +3588 +2041 +3361 +4838 +3778 +1161 +1096 +3948 +5620 +673 +846 +575 +240 +5037 +3588 +921 +3880 +3588 +3138 +1602 +1519 +2954 +1161 +3972 +1951 +4609 +1831 +3860 +3588 +5485 +3588 +2962 +5259 +3588 +80 +1161 +1330 +3588 +4947 +2532 +2791 +1991 +3588 +1577 +1161 +2658 +2532 +1519 +1191 +2532 +1519 +3082 +2532 +3708 +1510 +1563 +3101 +5100 +3686 +5095 +5207 +1135 +2453 +4103 +1161 +3962 +1672 +3739 +3140 +5259 +3588 +1722 +3082 +2532 +2430 +80 +2309 +3588 +3972 +3778 +4862 +846 +1831 +2532 +2983 +4059 +846 +1223 +3588 +2453 +3588 +1510 +1722 +3588 +5117 +1565 +1063 +1492 +537 +3754 +1672 +3588 +3962 +846 +5225 +1161 +5613 +1279 +3588 +4172 +3860 +846 +5442 +3588 +1378 +3588 +2919 +5259 +3588 +652 +2532 +4245 +3588 +1722 +2414 +3303 +3767 +3588 +1577 +4732 +3588 +4102 +2532 +4052 +3588 +706 +2596 +2250 +1161 +1330 +3588 +5435 +2532 +1054 +5561 +2967 +5259 +3588 +40 +4151 +2980 +3588 +3056 +1722 +3588 +773 +1161 +2064 +2596 +3588 +3465 +3985 +1519 +3588 +978 +4198 +2532 +3756 +1439 +846 +3588 +4151 +2424 +1161 +3928 +3588 +3465 +2597 +1519 +5174 +2532 +3705 +1223 +3571 +3588 +3972 +3708 +435 +3110 +5100 +1510 +2476 +2532 +3870 +846 +2532 +3004 +1224 +1519 +3109 +997 +1473 +1161 +5613 +3588 +3705 +3708 +2112 +2212 +1831 +1519 +3109 +4822 +3754 +4341 +3588 +2316 +1473 +2097 +846 +1161 +321 +575 +5174 +2113 +1519 +4543 +1161 +3588 +1966 +1519 +3501 +4172 +2547 +1519 +5375 +3748 +1510 +4413 +3588 +3310 +3109 +4172 +2862 +1161 +1510 +1304 +1722 +3778 +3588 +4172 +2250 +5100 +5037 +3588 +2250 +3588 +4521 +1831 +1854 +3588 +4439 +3844 +4215 +3757 +4335 +1510 +3543 +2532 +2523 +2980 +3588 +4905 +1135 +2532 +5100 +1135 +3686 +3070 +4211 +4172 +2363 +4576 +3588 +2316 +191 +3739 +3588 +2588 +3588 +2962 +1272 +4337 +3588 +2980 +5259 +3972 +1161 +5613 +907 +2532 +3588 +3624 +846 +3870 +3004 +1487 +2919 +1473 +4103 +3588 +2962 +1510 +1525 +1519 +3588 +3624 +1473 +3306 +2532 +3849 +1473 +1161 +1096 +4198 +1473 +1519 +3588 +4335 +3814 +5100 +2192 +4151 +4436 +5221 +1473 +3748 +2039 +4183 +3930 +3588 +2962 +846 +3132 +3778 +2628 +3588 +3972 +2532 +1473 +2896 +3004 +3778 +3588 +444 +1401 +3588 +2316 +3588 +5310 +1510 +3748 +2605 +4771 +3598 +4991 +1161 +3778 +4160 +1909 +4183 +2250 +1161 +3972 +1278 +2532 +1994 +3588 +4151 +3004 +3853 +4771 +1722 +3686 +2424 +5547 +1831 +575 +846 +2532 +1831 +846 +3588 +5610 +1161 +3588 +2962 +846 +3708 +3754 +1831 +3588 +1680 +3588 +2039 +846 +1949 +3588 +3972 +2532 +3588 +4609 +1670 +1519 +3588 +58 +1909 +3588 +758 +2532 +4317 +846 +3588 +4755 +3004 +3778 +3588 +444 +1613 +1473 +3588 +4172 +2453 +5225 +2532 +2605 +1485 +3739 +3858 +3761 +4160 +3756 +1832 +1473 +4514 +1510 +2532 +4911 +3588 +3793 +2596 +846 +2532 +3588 +4755 +4048 +846 +3588 +2440 +2753 +4463 +1161 +2007 +846 +4183 +4127 +906 +1519 +5438 +3853 +3588 +1200 +806 +5083 +846 +3739 +3852 +5108 +2983 +906 +846 +1519 +3588 +2082 +5438 +2532 +3588 +4228 +846 +805 +1519 +3588 +3586 +1161 +2596 +3588 +3317 +3972 +2532 +4609 +4336 +5214 +3588 +2316 +1161 +1874 +846 +3588 +1198 +1161 +869 +4578 +3173 +1096 +5620 +4531 +3588 +2310 +3588 +1201 +1161 +455 +3916 +3588 +2374 +3956 +2532 +3956 +3588 +1199 +447 +1161 +3588 +1200 +1853 +1096 +2532 +3708 +455 +3588 +2374 +3588 +5438 +4685 +3588 +3162 +3195 +1438 +337 +3543 +1628 +3588 +1198 +1161 +5455 +3972 +3173 +5456 +3004 +3367 +2556 +4238 +4572 +1063 +537 +1510 +1759 +1161 +154 +5457 +1530 +2532 +1790 +1096 +4363 +3588 +3972 +2532 +4609 +2532 +4254 +846 +1854 +5346 +2962 +5101 +1473 +4160 +1163 +2443 +4982 +1161 +3588 +3004 +4100 +1909 +3588 +2962 +2424 +2532 +4982 +4771 +2532 +3588 +3624 +4771 +2532 +2980 +846 +3588 +3056 +3588 +2316 +4862 +3956 +3588 +1722 +3588 +3614 +846 +2532 +3880 +846 +1722 +1565 +3588 +5610 +3588 +3571 +3068 +575 +3588 +4127 +2532 +907 +846 +2532 +3588 +846 +537 +3916 +5037 +321 +846 +1519 +3588 +3624 +3908 +5132 +2532 +21 +3832 +4100 +3588 +2316 +1161 +2250 +1096 +649 +3588 +4755 +3588 +4465 +3004 +630 +3588 +444 +1565 +1161 +518 +3588 +1200 +3588 +3056 +3778 +4314 +3588 +3972 +3754 +649 +3588 +4755 +2443 +630 +3767 +3568 +1831 +4198 +1722 +1515 +1161 +3588 +3972 +5346 +4314 +846 +1194 +1473 +1219 +178 +444 +4514 +5225 +906 +1519 +5438 +2532 +3568 +2977 +1473 +1544 +1063 +3756 +235 +2064 +846 +1473 +1806 +1161 +518 +3588 +4755 +3588 +4465 +3588 +4487 +3778 +1161 +5399 +191 +3754 +4514 +1510 +2532 +2064 +3870 +846 +2532 +1806 +2065 +565 +575 +3588 +4172 +1161 +1831 +575 +3588 +5438 +1525 +4314 +3588 +3070 +2532 +3708 +3870 +3588 +80 +2532 +1831 +1161 +1353 +3588 +295 +2532 +3588 +624 +2064 +1519 +2332 +3699 +1510 +4864 +3588 +2453 +1161 +2596 +3588 +1486 +3588 +3972 +1525 +4314 +846 +2532 +1909 +4521 +5140 +1256 +846 +575 +3588 +1124 +1272 +2532 +3908 +3754 +1163 +3588 +5547 +3958 +2532 +450 +1537 +3498 +2532 +3754 +3778 +1510 +3588 +5547 +3588 +2424 +3739 +1473 +2605 +4771 +2532 +5100 +1537 +846 +3982 +2532 +4345 +3588 +3972 +2532 +3588 +4609 +5037 +3588 +4576 +1672 +4128 +4183 +5037 +1135 +3588 +4413 +3756 +3641 +1161 +3588 +2453 +2206 +2532 +4355 +3588 +60 +435 +5100 +4190 +2532 +3792 +2350 +3588 +4172 +2532 +2186 +3588 +3614 +2394 +2212 +846 +4254 +1519 +3588 +1218 +1161 +3361 +2147 +846 +4951 +2394 +2532 +5100 +80 +1909 +3588 +4173 +994 +3754 +3588 +3588 +3625 +387 +3778 +2532 +1759 +3918 +3739 +5264 +2394 +2532 +3778 +3956 +561 +3588 +1378 +2541 +4238 +935 +2087 +1510 +2424 +3004 +1161 +5015 +3588 +3793 +2532 +3588 +4173 +191 +3778 +2532 +2983 +3588 +2425 +3844 +3588 +2394 +2532 +3588 +3062 +630 +846 +1161 +3588 +80 +2112 +1223 +3571 +1599 +5037 +3588 +3972 +2532 +3588 +4609 +1519 +960 +3748 +3854 +1519 +3588 +4864 +3588 +2453 +549 +1161 +3778 +1510 +2104 +3588 +1722 +2332 +3748 +1209 +3588 +3056 +3326 +3956 +4288 +3588 +2596 +2250 +350 +3588 +1124 +1487 +2192 +3778 +3779 +3303 +3767 +4183 +1537 +846 +4100 +2532 +3588 +1674 +1135 +3588 +2158 +2532 +435 +3756 +3641 +1161 +5613 +1097 +3588 +575 +3588 +2332 +2453 +3754 +2532 +1722 +3588 +960 +2605 +5259 +3588 +3972 +3588 +3056 +3588 +2316 +2064 +2546 +4531 +2532 +5015 +3588 +3793 +1161 +2112 +5119 +3588 +3972 +1821 +3588 +80 +4198 +2193 +1909 +3588 +2281 +5037 +5278 +5037 +3588 +4609 +2532 +3588 +5095 +1563 +1161 +3588 +2525 +3588 +3972 +71 +2193 +116 +2532 +2983 +1785 +4314 +3588 +4609 +2532 +3588 +5095 +2443 +5613 +5033 +2064 +4314 +846 +1826 +1161 +1722 +3588 +116 +1551 +846 +3588 +3972 +3947 +3588 +4151 +846 +1722 +846 +2334 +2712 +1510 +3588 +4172 +3767 +3303 +1256 +1722 +3588 +4864 +3588 +2453 +2532 +3588 +4576 +2532 +1722 +3588 +58 +2596 +3956 +2250 +4314 +3588 +3909 +1161 +5100 +2532 +3588 +1946 +2532 +4770 +5386 +4820 +846 +2532 +5100 +3004 +302 +2309 +3588 +4691 +3778 +5101 +3004 +1161 +3588 +1380 +3581 +1140 +2604 +1510 +3754 +3588 +2424 +2532 +3588 +386 +2097 +1161 +1949 +846 +1909 +3588 +697 +697 +71 +3004 +1410 +1097 +5101 +3588 +2537 +3778 +3588 +5259 +4771 +2980 +1322 +1063 +3579 +5100 +1533 +1519 +3588 +189 +1473 +3767 +1014 +1097 +5101 +1510 +2309 +3778 +1161 +117 +3956 +2532 +3588 +1927 +3581 +1519 +3762 +2087 +2119 +2228 +3004 +5100 +2228 +191 +5100 +2537 +1161 +2476 +3972 +1722 +3319 +3588 +697 +697 +5346 +435 +117 +2596 +3956 +5613 +1174 +4771 +2334 +1063 +1330 +2532 +333 +3588 +4574 +4771 +2147 +2532 +1041 +1722 +3739 +1924 +57 +2316 +3767 +3739 +50 +2151 +3778 +1473 +2605 +4771 +3588 +2316 +3588 +4160 +3588 +2889 +2532 +3956 +3588 +1722 +846 +3778 +3772 +2532 +1093 +2962 +5225 +3756 +1722 +5499 +3485 +2730 +3761 +5259 +5495 +442 +2323 +4326 +5100 +846 +1325 +3956 +2222 +2532 +4157 +2532 +3588 +3956 +5037 +4160 +1537 +1520 +3956 +1484 +444 +2730 +1909 +3956 +4383 +3588 +1093 +3724 +4367 +2540 +2532 +3588 +3734 +3588 +2733 +846 +2212 +3588 +2316 +1487 +686 +1065 +5584 +846 +2532 +2147 +1065 +2532 +3756 +3112 +575 +1520 +1538 +1473 +5225 +1063 +1722 +846 +2198 +2532 +2795 +2532 +1510 +5613 +2532 +5100 +3588 +2596 +4771 +4163 +2046 +1063 +3588 +2532 +1085 +1510 +3767 +5225 +1085 +3588 +2316 +3756 +3784 +3543 +5557 +2228 +696 +2228 +3037 +5480 +5078 +2532 +1761 +444 +3588 +2304 +1510 +3664 +3303 +3767 +3588 +5550 +3588 +52 +5237 +3588 +2316 +3588 +3568 +518 +3588 +444 +3956 +3837 +3340 +2530 +2476 +2250 +1722 +3739 +3195 +2919 +3588 +3625 +1722 +1343 +1722 +435 +3739 +3724 +4102 +3930 +3956 +450 +846 +1537 +3498 +1161 +191 +386 +3498 +3303 +3588 +5512 +1161 +3588 +3004 +191 +4771 +4012 +3778 +2532 +3825 +3779 +3588 +3972 +1831 +1537 +3319 +846 +1161 +5100 +435 +2853 +846 +4100 +1722 +3739 +2532 +1354 +3588 +698 +2532 +1135 +3686 +1152 +2532 +2087 +4862 +846 +3326 +3778 +5563 +1537 +3588 +116 +2064 +1519 +2882 +2532 +2147 +5100 +2453 +3686 +207 +4193 +3588 +1085 +4373 +2064 +575 +3588 +2482 +2532 +4252 +1135 +846 +1223 +3588 +1299 +2804 +5563 +3956 +3588 +2453 +575 +3588 +4516 +4334 +846 +2532 +1223 +3588 +3673 +1510 +3306 +3844 +846 +2532 +2038 +1063 +1510 +4635 +3588 +5078 +1161 +1256 +1722 +3588 +4864 +2596 +3956 +4521 +3982 +5037 +2453 +2532 +1672 +1161 +5613 +2718 +575 +3588 +3109 +5037 +3588 +4609 +2532 +3588 +5095 +4912 +3588 +3056 +3588 +3972 +1263 +3588 +2453 +1510 +3588 +5547 +2424 +1161 +498 +846 +2532 +987 +1621 +3588 +2440 +3004 +4314 +846 +3588 +129 +4771 +1909 +3588 +2776 +4771 +2513 +1473 +575 +3588 +3568 +1519 +3588 +1484 +4198 +2532 +3327 +1564 +2064 +1519 +3614 +5100 +3686 +5103 +2459 +4576 +3588 +2316 +3739 +3588 +3614 +1510 +4927 +3588 +4864 +1161 +2921 +3588 +752 +4100 +3588 +2962 +4862 +3650 +3588 +3624 +846 +2532 +4183 +3588 +2881 +191 +4100 +2532 +907 +1161 +3004 +3588 +2962 +1722 +3571 +1223 +3705 +3588 +3972 +3361 +5399 +235 +2980 +2532 +3361 +4623 +1360 +1473 +1510 +3326 +4771 +2532 +3762 +2007 +4771 +3588 +2559 +4771 +1360 +2992 +4183 +1510 +1473 +1722 +3588 +4172 +3778 +1161 +2523 +1763 +2532 +3376 +1803 +1321 +1722 +846 +3588 +3056 +3588 +2316 +1161 +1058 +1510 +446 +3588 +882 +2721 +3661 +3588 +2453 +3588 +3972 +2532 +71 +846 +1909 +3588 +968 +3004 +3754 +3844 +3588 +3551 +374 +3778 +3588 +444 +4576 +3588 +2316 +1161 +3195 +3588 +3972 +455 +3588 +4750 +3004 +3588 +1058 +4314 +3588 +2453 +3303 +1487 +1510 +92 +5100 +2228 +4467 +4190 +5599 +2453 +302 +2596 +3056 +430 +4771 +1161 +1487 +1510 +2213 +4012 +3056 +2532 +3686 +2532 +3551 +3588 +2596 +4771 +3708 +846 +3756 +1014 +1473 +2923 +3778 +1510 +2532 +556 +846 +575 +3588 +968 +1161 +3956 +1949 +4988 +3588 +752 +5180 +1715 +3588 +968 +2532 +3762 +3778 +3588 +1058 +3199 +1161 +3588 +3972 +2089 +4357 +2250 +2425 +3588 +80 +657 +1602 +1519 +3588 +4947 +2532 +4862 +846 +4252 +2532 +207 +2751 +1722 +2747 +3588 +2776 +1063 +2192 +2171 +1161 +2658 +1519 +2181 +2548 +2641 +847 +1161 +846 +1525 +1519 +3588 +4864 +1256 +3588 +2453 +1161 +2065 +846 +1909 +4119 +5550 +3306 +3756 +1962 +235 +657 +2532 +3004 +3825 +344 +4314 +4771 +3588 +2316 +2309 +321 +575 +3588 +2181 +2532 +2718 +1519 +2542 +305 +2532 +782 +3588 +1577 +2597 +1519 +490 +2532 +4160 +5550 +5100 +1831 +1330 +2517 +3588 +1054 +5561 +2532 +5435 +4741 +3956 +3588 +3101 +1161 +2453 +5100 +625 +3686 +221 +3588 +1085 +435 +3052 +1415 +1510 +1722 +3588 +1124 +2658 +1519 +2181 +3778 +1510 +2727 +3588 +3598 +3588 +2962 +2532 +2204 +3588 +4151 +2980 +2532 +1321 +199 +3588 +4012 +3588 +2424 +1987 +3440 +3588 +908 +2491 +5037 +3778 +756 +3955 +1722 +3588 +4864 +1161 +191 +846 +4252 +2532 +207 +4355 +846 +2532 +199 +846 +1620 +3588 +3598 +3588 +2316 +1161 +1014 +846 +1330 +1519 +3588 +882 +4389 +3588 +80 +1125 +3588 +3101 +588 +846 +3739 +3854 +4820 +4183 +3588 +4100 +1223 +3588 +5485 +1063 +2159 +3588 +2453 +1246 +1219 +1925 +1223 +3588 +1124 +1510 +3588 +5547 +2424 +1161 +1096 +1722 +3588 +3588 +625 +1510 +1722 +2882 +3972 +1330 +3588 +510 +3313 +2064 +1519 +2181 +2532 +2147 +5100 +3101 +5037 +3004 +4314 +846 +1487 +4151 +40 +2983 +4100 +1161 +3588 +4314 +846 +235 +3761 +191 +1487 +4151 +40 +1510 +5037 +3004 +3767 +1519 +5101 +907 +1161 +3588 +3004 +1519 +3588 +2491 +908 +1161 +3004 +3972 +2491 +907 +908 +3341 +3588 +2992 +3004 +2443 +4100 +1519 +3588 +2064 +3326 +846 +3778 +1510 +1519 +3588 +2424 +1161 +191 +907 +1519 +3588 +3686 +3588 +2962 +2424 +2532 +2007 +846 +3588 +3972 +5495 +2064 +3588 +4151 +3588 +40 +1909 +846 +5037 +2980 +1100 +2532 +4395 +1161 +1510 +3588 +3956 +435 +5616 +1427 +1161 +1525 +1519 +3588 +4864 +3955 +1909 +3376 +5140 +1256 +2532 +3982 +4012 +3588 +932 +3588 +2316 +1161 +5613 +5100 +4645 +2532 +544 +2551 +3588 +3598 +1799 +3588 +4128 +868 +575 +846 +873 +3588 +3101 +2596 +2250 +1256 +1722 +3588 +4981 +5181 +1161 +3778 +1096 +1909 +2094 +1417 +5620 +3956 +3588 +2730 +3588 +773 +191 +3588 +3056 +3588 +2962 +5037 +2453 +2532 +1672 +5037 +1411 +3756 +3588 +5177 +3588 +2316 +4160 +1223 +3588 +5495 +3972 +5620 +2532 +1909 +3588 +770 +667 +575 +3588 +5559 +846 +4676 +2228 +4612 +2532 +525 +575 +846 +3588 +3554 +5037 +3588 +4151 +3588 +4190 +1607 +1161 +2021 +5100 +2532 +3588 +4022 +2453 +1845 +3687 +1909 +3588 +2192 +3588 +4151 +3588 +4190 +3588 +3686 +3588 +2962 +2424 +3004 +3726 +4771 +3588 +2424 +3739 +3972 +2784 +1161 +5100 +4630 +2453 +749 +2033 +5207 +3778 +1510 +4160 +1161 +611 +3588 +4151 +3588 +4190 +3004 +846 +3588 +2424 +1097 +2532 +3588 +3972 +1987 +1161 +4771 +5101 +1510 +2532 +2177 +1909 +846 +3588 +444 +1722 +3739 +1510 +3588 +4151 +3588 +4190 +2634 +297 +2480 +2596 +846 +5620 +1131 +2532 +5135 +1628 +1537 +3588 +3624 +1565 +1161 +3778 +1096 +1110 +3956 +5037 +2453 +2532 +1672 +3588 +2730 +3588 +2181 +2532 +1968 +5401 +1909 +3956 +846 +2532 +3170 +3588 +3686 +3588 +2962 +2424 +5037 +4183 +3588 +4100 +2064 +1843 +2532 +312 +3588 +4234 +846 +1161 +2425 +3588 +3588 +4021 +4238 +4851 +3588 +976 +2618 +1799 +3956 +2532 +4860 +3588 +5092 +846 +2532 +2147 +694 +3461 +4002 +3779 +2596 +2904 +3588 +2962 +3588 +3056 +837 +2532 +2480 +1161 +5613 +4137 +3778 +5087 +3588 +3972 +1722 +3588 +4151 +1330 +3588 +3109 +2532 +882 +4198 +1519 +2414 +3004 +3754 +3326 +3588 +1096 +1473 +1563 +1163 +1473 +2532 +4516 +3708 +1161 +649 +1519 +3588 +3109 +1417 +3588 +1247 +846 +5095 +2532 +2037 +846 +1907 +5550 +1519 +3588 +773 +1161 +1096 +2596 +3588 +2540 +1565 +5017 +3756 +3641 +4012 +3588 +3598 +1063 +5100 +1216 +3686 +695 +4160 +3485 +693 +735 +3930 +3588 +5079 +3756 +3641 +2039 +3739 +2532 +3588 +4012 +3588 +5108 +2040 +4867 +3004 +435 +1987 +3754 +1537 +3778 +3588 +2039 +3588 +2142 +1473 +1510 +2532 +2334 +2532 +191 +3754 +3756 +3440 +2181 +235 +4975 +3956 +3588 +773 +3588 +3972 +3778 +3982 +3179 +2425 +3793 +3004 +3754 +3756 +1510 +2316 +3588 +1223 +5495 +1096 +1161 +3756 +3440 +3778 +2793 +1473 +3588 +3313 +1519 +557 +2064 +235 +2532 +3588 +3588 +3173 +2299 +735 +2411 +1519 +3762 +3049 +5037 +3195 +2532 +2507 +3588 +3168 +846 +3739 +3650 +3588 +773 +2532 +3588 +3625 +4576 +1161 +191 +2532 +1096 +4134 +2372 +2896 +3004 +3173 +3588 +735 +2180 +2532 +4130 +3588 +4172 +3588 +4799 +5037 +3729 +3661 +1519 +3588 +2302 +4884 +1050 +2532 +708 +3110 +4898 +3972 +1161 +3972 +1014 +1525 +1519 +3588 +1218 +3756 +1439 +846 +3588 +3101 +1161 +5100 +2532 +3588 +775 +1510 +846 +5384 +3992 +4314 +846 +3870 +3361 +1325 +1438 +1519 +3588 +2302 +3303 +3767 +243 +243 +5100 +2896 +1063 +3588 +1577 +1510 +4797 +2532 +3588 +4119 +3756 +1492 +5101 +1752 +4905 +1161 +1537 +3588 +3793 +4822 +223 +4261 +846 +3588 +2453 +1161 +3588 +223 +2678 +3588 +5495 +2309 +626 +3588 +1218 +1161 +1921 +3754 +2453 +1510 +5456 +1520 +1096 +1537 +3956 +5613 +1909 +5610 +1417 +2896 +3173 +3588 +735 +2180 +1161 +3588 +1122 +2687 +3588 +3793 +5346 +435 +2180 +1063 +5101 +444 +1510 +3739 +3756 +1097 +3588 +2180 +4172 +1510 +3511 +3588 +3173 +735 +2532 +3588 +1356 +3767 +368 +1510 +3778 +1163 +1510 +4771 +2687 +5225 +2532 +3367 +4312 +4238 +1063 +71 +3588 +435 +3778 +3777 +2417 +3777 +987 +3588 +2316 +1473 +3767 +3303 +1487 +1216 +2532 +3588 +4862 +846 +5079 +2192 +4314 +5100 +3056 +60 +71 +2532 +446 +1510 +1458 +240 +1161 +1487 +5100 +4008 +1934 +1722 +3588 +1772 +1577 +1956 +1063 +2532 +2793 +1458 +4714 +4012 +3588 +4594 +3367 +159 +5225 +4012 +3739 +3756 +1410 +591 +3056 +4012 +3588 +4963 +3778 +2532 +3778 +3004 +630 +3588 +1577 +1161 +3326 +3588 +3973 +3588 +2351 +3588 +3972 +3343 +3588 +3101 +2532 +3870 +782 +1831 +4198 +1519 +3109 +1161 +1330 +3588 +3313 +1565 +2532 +3870 +846 +3056 +4183 +2064 +1519 +3588 +1671 +5037 +4160 +3376 +5140 +1096 +1917 +846 +5259 +3588 +2453 +3195 +321 +1519 +3588 +4947 +1096 +1106 +3588 +5290 +1223 +3109 +1161 +4902 +846 +4986 +4450 +961 +1161 +2331 +708 +2532 +4580 +2532 +1050 +1190 +2532 +5095 +1161 +774 +5190 +2532 +5161 +1161 +3778 +4281 +3306 +1473 +1722 +5174 +1161 +1473 +1602 +3326 +3588 +2250 +3588 +106 +575 +5375 +2532 +2064 +4314 +846 +1519 +3588 +5174 +891 +2250 +4002 +3699 +1304 +2250 +2033 +1161 +1722 +3588 +1520 +3588 +4521 +4863 +1473 +2806 +740 +3588 +3972 +1256 +846 +3195 +1826 +3588 +1887 +5037 +3905 +3588 +3056 +3360 +3317 +1161 +1510 +2985 +2425 +1722 +3588 +5253 +3757 +1510 +4863 +1161 +5100 +3494 +3686 +2161 +2516 +1909 +3588 +2376 +2702 +5258 +901 +1256 +3588 +3972 +1909 +4119 +2702 +575 +3588 +5258 +4098 +575 +3588 +5152 +2736 +2532 +142 +3498 +1161 +2597 +3588 +3972 +1968 +846 +2532 +4843 +3004 +3361 +2350 +1063 +3588 +5590 +846 +1722 +846 +1510 +1161 +305 +2532 +2806 +3588 +740 +2532 +1089 +5037 +1909 +2425 +3656 +891 +827 +3779 +1831 +1161 +71 +3588 +3816 +2198 +2532 +3870 +3756 +3357 +1161 +1473 +4281 +1909 +3588 +4143 +321 +1909 +3588 +789 +1564 +3195 +353 +3588 +3972 +1063 +3779 +1299 +1510 +3195 +846 +3978 +1161 +5613 +4820 +1473 +1519 +3588 +789 +353 +846 +2064 +1519 +3412 +2547 +636 +3588 +1966 +2658 +481 +5508 +1161 +3588 +2087 +3846 +1519 +4544 +1161 +3588 +2192 +2064 +1519 +3399 +1063 +2919 +3588 +3972 +3896 +3588 +2181 +3704 +3361 +1096 +846 +5551 +1722 +3588 +773 +1063 +4692 +1487 +1415 +1510 +846 +3588 +2250 +3588 +4005 +1096 +1519 +2414 +1161 +575 +3588 +3399 +3992 +1519 +2181 +3333 +3588 +4245 +3588 +1577 +1161 +5613 +3854 +4314 +846 +3004 +846 +4771 +1987 +575 +4413 +2250 +575 +3739 +1910 +1519 +3588 +773 +4459 +3326 +4771 +3588 +3956 +5550 +1096 +1398 +3588 +2962 +3326 +3956 +5012 +2532 +1144 +2532 +3986 +3588 +4819 +1473 +1722 +3588 +1917 +3588 +2453 +5613 +5288 +3762 +3588 +4851 +3588 +3361 +312 +4771 +2532 +1321 +4771 +1219 +2532 +2596 +3624 +1263 +5037 +2453 +2532 +1672 +3588 +1519 +2316 +3341 +2532 +4102 +1519 +3588 +2962 +1473 +2424 +2532 +3568 +3708 +1210 +3588 +4151 +1473 +4198 +1519 +2419 +3588 +1722 +846 +4876 +1473 +3361 +1492 +4133 +3754 +3588 +4151 +3588 +40 +2596 +4172 +1263 +1473 +3004 +3754 +1199 +2532 +2347 +1473 +3306 +235 +3762 +3056 +4160 +3588 +5590 +5093 +1683 +5613 +5048 +3588 +1408 +1473 +2532 +3588 +1248 +3739 +2983 +3844 +3588 +2962 +2424 +1263 +3588 +2098 +3588 +5485 +3588 +2316 +2532 +3568 +3708 +1473 +1492 +3754 +3765 +3708 +3588 +4383 +1473 +4771 +3956 +1722 +3739 +1330 +2784 +3588 +932 +1360 +3143 +4771 +1722 +3588 +4594 +2250 +3754 +2513 +1510 +575 +3588 +129 +3956 +1063 +3756 +5288 +3588 +3361 +312 +3956 +3588 +1012 +3588 +2316 +4771 +4337 +1438 +2532 +3956 +3588 +4168 +1722 +3739 +4771 +3588 +4151 +3588 +40 +5087 +1985 +4165 +3588 +1577 +3588 +2316 +3739 +4046 +1223 +3588 +129 +3588 +2398 +1473 +1492 +3754 +1525 +3326 +3588 +867 +1473 +3074 +926 +1519 +4771 +3361 +5339 +3588 +4168 +2532 +1537 +4771 +846 +450 +435 +2980 +1294 +3588 +645 +3588 +3101 +3694 +1438 +1352 +1127 +3421 +3754 +5148 +3571 +2532 +2250 +3756 +3973 +3326 +1144 +3560 +1520 +1538 +2532 +3588 +3568 +3908 +4771 +3588 +2962 +2532 +3588 +3056 +3588 +5485 +846 +3588 +1410 +3618 +2532 +1325 +3588 +2817 +1722 +3588 +37 +3956 +694 +2228 +5553 +2228 +2441 +3762 +1937 +846 +1097 +3754 +3588 +5532 +1473 +2532 +3588 +1510 +3326 +1473 +5256 +3588 +5495 +3778 +3956 +5263 +4771 +3754 +3779 +2872 +1163 +482 +3588 +770 +5037 +3421 +3588 +3056 +3588 +2962 +2424 +3754 +846 +3004 +3107 +1510 +3123 +1325 +2228 +2983 +2532 +3778 +3004 +5087 +3588 +1119 +846 +4862 +3956 +846 +4336 +1161 +2425 +1096 +2805 +3956 +2532 +1968 +1909 +3588 +5137 +3588 +3972 +2705 +846 +3600 +3122 +1909 +3588 +3056 +3739 +2046 +3754 +3765 +3195 +3588 +4383 +846 +2334 +1161 +4311 +846 +1519 +3588 +4143 +1161 +5613 +1096 +321 +1473 +645 +575 +846 +2113 +2064 +1519 +3588 +2972 +1161 +3588 +1836 +1519 +3588 +4499 +2547 +1519 +3959 +2532 +2147 +4143 +1276 +1519 +5403 +1910 +321 +1161 +398 +3588 +2954 +2532 +2641 +846 +2176 +4126 +1519 +4947 +2532 +2718 +1519 +5184 +1063 +1566 +3588 +4143 +1510 +670 +3588 +1117 +1161 +429 +3588 +3101 +1961 +847 +2250 +2033 +3748 +3588 +3972 +3004 +1223 +3588 +4151 +3361 +1910 +1519 +2414 +1161 +3753 +1096 +1822 +1473 +3588 +2250 +1831 +4198 +4311 +1473 +3956 +4862 +1135 +2532 +5043 +2193 +1854 +3588 +4172 +2532 +5087 +3588 +1119 +1909 +3588 +123 +4336 +782 +240 +2532 +1684 +1519 +3588 +4143 +1161 +1565 +5290 +1519 +3588 +2398 +1161 +1473 +3588 +4144 +1274 +575 +5184 +2658 +1519 +4424 +2532 +782 +3588 +80 +3306 +2250 +1520 +3844 +846 +1161 +3588 +1887 +1831 +2064 +1519 +2542 +2532 +1525 +1519 +3588 +3624 +5376 +3588 +2099 +1510 +1537 +3588 +2033 +3306 +3844 +846 +1161 +3778 +1510 +2364 +5064 +3933 +4395 +1161 +1961 +2250 +4119 +2718 +5100 +575 +3588 +2449 +4396 +3686 +13 +2532 +2064 +4314 +1473 +2532 +142 +3588 +2223 +3588 +3972 +1210 +1438 +3588 +4228 +2532 +3588 +5495 +3004 +3592 +3004 +3588 +4151 +3588 +40 +3588 +435 +3739 +1510 +3588 +2223 +3778 +3779 +1210 +1722 +2419 +3588 +2453 +2532 +3860 +1519 +5495 +1484 +1161 +5613 +191 +3778 +3870 +5037 +1473 +2532 +3588 +1786 +3588 +3361 +305 +846 +1519 +2419 +5119 +611 +3588 +3972 +5101 +4160 +2799 +2532 +4919 +1473 +3588 +2588 +1063 +1473 +3756 +3440 +1210 +235 +2532 +599 +1519 +2419 +2093 +2192 +5228 +3588 +3686 +3588 +2962 +2424 +1161 +3361 +3982 +846 +2270 +3004 +3588 +2962 +3588 +2307 +1096 +1161 +3326 +3588 +2250 +3778 +643 +305 +1519 +2414 +1161 +4905 +2532 +3588 +3101 +575 +2542 +4862 +1473 +71 +3844 +3739 +3579 +3416 +5100 +2953 +744 +3101 +1161 +1096 +1473 +1519 +2414 +780 +588 +1473 +3588 +80 +1161 +3588 +1966 +1524 +3588 +3972 +4862 +1473 +4314 +2385 +5037 +3854 +3956 +3588 +4245 +2532 +782 +846 +1834 +2596 +1520 +1538 +3739 +4160 +3588 +2316 +1722 +3588 +1484 +1223 +3588 +1248 +846 +1161 +3588 +191 +1392 +3588 +2316 +5037 +3004 +846 +2334 +80 +4214 +3461 +3588 +4100 +1510 +1722 +3588 +2453 +2532 +3956 +2207 +3588 +3551 +5225 +1161 +2727 +4012 +4771 +3754 +1321 +646 +575 +3475 +3588 +2596 +3588 +1484 +3956 +2453 +3004 +3361 +4059 +846 +3588 +5043 +3366 +3588 +1485 +4043 +3767 +5101 +1510 +3843 +191 +3754 +2064 +3767 +3778 +4160 +3739 +4771 +3004 +1510 +1473 +435 +5064 +2171 +2192 +1909 +1438 +3778 +3880 +48 +4862 +846 +2532 +1159 +1909 +846 +2443 +3587 +3588 +2776 +2532 +1097 +3956 +3754 +3739 +2727 +4012 +4771 +3762 +1510 +235 +4748 +2532 +846 +5442 +3588 +3551 +1161 +4012 +3588 +4100 +1484 +1473 +1989 +2919 +5442 +846 +5037 +3588 +1494 +2532 +129 +2532 +4156 +2532 +4202 +5119 +3588 +3972 +3880 +3588 +435 +3588 +2192 +2250 +4862 +846 +48 +1524 +1519 +3588 +2411 +1229 +3588 +1604 +3588 +2250 +3588 +49 +2193 +3739 +4374 +5228 +1520 +1538 +846 +3588 +4376 +1161 +5613 +3195 +3588 +2033 +2250 +4931 +3588 +575 +3588 +773 +2453 +2300 +846 +1722 +3588 +2411 +4797 +3956 +3588 +3793 +2532 +1911 +1909 +846 +3588 +5495 +2896 +435 +2475 +997 +3778 +1510 +3588 +444 +3588 +2596 +3588 +2992 +2532 +3588 +3551 +2532 +3588 +5117 +3778 +3956 +3837 +1321 +5037 +2089 +2532 +1672 +1521 +1519 +3588 +2411 +2532 +2840 +3588 +40 +5117 +3778 +1063 +1510 +4308 +5161 +3588 +2180 +1722 +3588 +4172 +4862 +846 +3543 +3754 +3739 +1519 +3588 +2411 +1521 +3588 +3972 +5037 +2795 +3588 +4172 +3650 +2532 +1096 +4890 +3588 +2992 +2532 +1949 +3588 +3972 +1670 +846 +1854 +3588 +2411 +2532 +2112 +2808 +3588 +2374 +5037 +2212 +846 +615 +305 +5334 +3588 +5506 +3588 +4686 +3754 +3650 +2419 +4797 +3739 +1824 +3880 +4757 +2532 +1543 +2701 +1909 +846 +1161 +3588 +3708 +3588 +5506 +2532 +3588 +4757 +3973 +5180 +3588 +3972 +5119 +1448 +3588 +5506 +1949 +846 +2532 +2753 +1210 +254 +1417 +2532 +4441 +5101 +1510 +2532 +5101 +1510 +4160 +1161 +243 +243 +5100 +2019 +1722 +3588 +3793 +1161 +3361 +1410 +846 +1097 +3588 +804 +1223 +3588 +2351 +2753 +71 +846 +1519 +3588 +3925 +1161 +3753 +1096 +1909 +3588 +304 +4819 +941 +846 +5259 +3588 +4757 +1223 +3588 +970 +3588 +3793 +1063 +190 +3588 +4128 +3588 +2992 +2896 +142 +846 +5037 +3195 +1521 +1519 +3588 +3925 +3588 +3972 +3004 +3588 +5506 +1487 +1832 +1473 +3004 +5100 +4314 +4771 +1161 +3588 +5346 +1676 +1097 +686 +3756 +4771 +1510 +3588 +124 +3588 +4253 +3778 +3588 +2250 +387 +2532 +1806 +1519 +3588 +2048 +3588 +5070 +435 +3588 +4607 +1161 +3004 +3588 +3972 +3303 +1473 +1510 +444 +2453 +5018 +3588 +2791 +3756 +767 +4172 +4177 +1161 +1189 +4771 +2010 +1473 +2980 +4314 +3588 +2992 +1161 +2010 +846 +3588 +3972 +2476 +1909 +3588 +304 +2678 +3588 +5495 +3588 +2992 +1161 +4183 +4602 +1096 +4377 +3588 +1446 +1258 +3004 +435 +80 +2532 +3962 +191 +1473 +3588 +4314 +4771 +3570 +627 +1161 +191 +3754 +3588 +1446 +1258 +4377 +846 +3123 +3930 +2271 +2532 +5346 +1473 +1510 +435 +2453 +1080 +1722 +5019 +3588 +2791 +1161 +397 +1722 +3588 +4172 +3778 +3844 +3588 +4228 +1059 +3811 +2596 +195 +3588 +3971 +3551 +5225 +2207 +3588 +2316 +2531 +3956 +4771 +1510 +4594 +3739 +3778 +3588 +3598 +1377 +891 +2288 +1195 +2532 +3860 +1519 +5438 +5037 +435 +2532 +1135 +5613 +2532 +3588 +749 +3140 +1473 +2532 +3956 +3588 +4244 +3844 +3739 +2532 +1992 +1209 +4314 +3588 +80 +1519 +1154 +4198 +71 +2532 +3588 +1566 +1510 +1210 +1519 +2419 +2443 +5097 +1161 +1096 +1473 +4198 +2532 +1448 +3588 +1154 +4012 +3314 +1810 +1537 +3588 +3772 +4015 +5457 +2425 +4012 +1473 +5037 +4098 +1519 +3588 +1475 +2532 +191 +5456 +3004 +1473 +4549 +4549 +5101 +1473 +1377 +1161 +1473 +611 +5101 +1510 +2962 +5037 +3004 +4314 +1473 +1473 +1510 +2424 +3588 +3480 +3739 +4771 +1377 +1161 +3303 +3588 +4862 +1473 +1510 +3588 +5457 +2300 +1161 +3756 +191 +3588 +5456 +3588 +2980 +1473 +1161 +3004 +5101 +4160 +2962 +1161 +3588 +2962 +3004 +4314 +1473 +450 +4198 +1519 +1154 +2546 +4771 +2980 +4012 +3956 +3739 +4160 +5021 +4771 +1161 +5613 +3756 +1689 +575 +3588 +1391 +3588 +5457 +1565 +5496 +5259 +3588 +4895 +1473 +2064 +1519 +1154 +1161 +367 +5100 +435 +2126 +2596 +3588 +3551 +3140 +5259 +3956 +3588 +2730 +2453 +2064 +4314 +1473 +2532 +2186 +3004 +1473 +4549 +80 +308 +2504 +846 +3588 +5610 +308 +1519 +846 +1161 +3588 +3004 +3588 +2316 +3588 +3962 +1473 +4400 +4771 +1097 +3588 +2307 +846 +2532 +3708 +3588 +1342 +2532 +191 +5456 +1537 +3588 +4750 +846 +3754 +1510 +846 +4314 +3956 +444 +3144 +3739 +3708 +2532 +191 +2532 +3568 +5101 +3195 +450 +907 +2532 +628 +3588 +266 +4771 +1941 +3588 +3686 +846 +1161 +1096 +1473 +5290 +1519 +2419 +2532 +4336 +1473 +1722 +3588 +2411 +1096 +1473 +1722 +1611 +2532 +3708 +846 +3004 +1473 +4692 +2532 +1831 +1722 +5034 +1537 +2419 +1360 +3756 +3858 +4771 +3141 +4012 +1473 +2504 +3004 +2962 +846 +1987 +3754 +1473 +1510 +5439 +2532 +1194 +2596 +3588 +4864 +3588 +4100 +1909 +4771 +2532 +3753 +1632 +3588 +129 +4736 +3588 +3144 +4771 +2532 +846 +1510 +2186 +2532 +4909 +2532 +5442 +3588 +2440 +3588 +337 +846 +2532 +3004 +4314 +1473 +4198 +3754 +1473 +1519 +1484 +3112 +1821 +4771 +1161 +191 +846 +891 +3778 +3588 +3056 +2532 +1869 +3588 +5456 +846 +3004 +142 +575 +3588 +1093 +3588 +5108 +1063 +3756 +2520 +846 +2198 +5037 +2905 +846 +2532 +4495 +3588 +2440 +2532 +2868 +906 +1519 +3588 +109 +2753 +3588 +5506 +1521 +846 +1519 +3588 +3925 +3004 +3148 +426 +846 +2443 +1921 +1223 +3739 +156 +3779 +2019 +846 +1161 +5613 +4385 +846 +3588 +2438 +3004 +4314 +3588 +2476 +1543 +3588 +3972 +1487 +444 +4514 +2532 +178 +3147 +1832 +4771 +1161 +191 +3588 +1543 +4334 +3588 +5506 +518 +3004 +3195 +5101 +4160 +1063 +3588 +444 +3778 +4514 +1510 +1161 +4334 +3588 +5506 +3004 +846 +3004 +1473 +4771 +4514 +1510 +1161 +3588 +5346 +3483 +1161 +611 +3588 +5506 +1473 +4183 +2774 +3588 +4174 +3778 +2932 +1161 +3588 +3972 +5346 +1161 +1473 +2532 +1080 +3767 +2112 +868 +575 +846 +3588 +3195 +846 +426 +1161 +2532 +3588 +5506 +5399 +1921 +3754 +4514 +1510 +2532 +3754 +846 +1510 +1210 +1161 +3588 +1887 +1014 +1097 +3588 +804 +3588 +5101 +2723 +5259 +3588 +2453 +3089 +846 +2532 +2753 +4905 +3588 +749 +2532 +3956 +3588 +4892 +2532 +2609 +3588 +3972 +2476 +1519 +846 +1161 +3588 +3972 +816 +3588 +4892 +3004 +435 +80 +1473 +3956 +4893 +18 +4176 +3588 +2316 +891 +3778 +3588 +2250 +1161 +3588 +749 +367 +2004 +3588 +3936 +846 +5180 +846 +3588 +4750 +5119 +3588 +3972 +4314 +846 +3004 +5180 +4771 +3195 +3588 +2316 +5109 +2867 +2532 +4771 +2521 +2919 +1473 +2596 +3588 +3551 +2532 +3891 +2753 +1473 +5180 +1161 +3588 +3936 +3004 +3588 +749 +3588 +2316 +3058 +5037 +5346 +3588 +3972 +3756 +1492 +80 +3754 +1510 +749 +1063 +1125 +3754 +758 +3588 +2992 +4771 +3756 +2046 +2560 +1161 +3588 +3972 +1097 +3754 +3588 +1520 +3313 +1510 +4523 +1161 +3588 +2087 +5330 +2896 +1722 +3588 +4892 +435 +80 +1473 +5330 +1510 +5207 +5330 +4012 +1680 +2532 +386 +3498 +2919 +1161 +3778 +846 +2980 +1096 +4714 +3588 +5330 +2532 +4523 +2532 +4977 +3588 +4128 +1063 +4523 +3004 +3361 +1510 +386 +3383 +32 +3383 +4151 +1161 +5330 +3670 +3588 +297 +1161 +1096 +2906 +3173 +2532 +450 +5100 +3588 +1122 +3588 +3313 +3588 +5330 +1264 +3004 +3762 +2556 +2147 +1722 +3588 +444 +3778 +1161 +1487 +4151 +2980 +846 +2228 +32 +1161 +4183 +4714 +1096 +3588 +5506 +5399 +3361 +1288 +3588 +3972 +5259 +846 +2753 +3588 +4753 +2597 +726 +846 +1537 +3319 +846 +5037 +71 +1519 +3588 +3925 +1161 +3588 +1966 +3571 +2186 +846 +3588 +2962 +3004 +2293 +1063 +5613 +1263 +3588 +4012 +1473 +1519 +2419 +3779 +1163 +4771 +2532 +1519 +4516 +3140 +1161 +1096 +2250 +4160 +4963 +3588 +2453 +332 +1438 +3004 +3383 +5315 +3383 +4095 +2193 +3739 +615 +3588 +3972 +1161 +1510 +4119 +5062 +3588 +3778 +3588 +4945 +4160 +3748 +4334 +3588 +749 +2532 +3588 +4245 +3004 +331 +332 +1438 +3367 +1089 +2193 +3739 +615 +3588 +3972 +3767 +3568 +4771 +1718 +3588 +5506 +4862 +3588 +4892 +3704 +2609 +846 +1519 +4771 +5613 +3195 +1231 +199 +3588 +4012 +846 +1161 +1473 +4253 +3588 +1448 +846 +2092 +1510 +3588 +337 +846 +1161 +3588 +5207 +3588 +79 +3972 +191 +3588 +1747 +3854 +2532 +1525 +1519 +3588 +3925 +518 +3588 +3972 +1161 +3588 +3972 +4341 +1520 +3588 +1543 +5346 +3588 +3494 +3778 +520 +4314 +3588 +5506 +1063 +2192 +518 +5100 +846 +3303 +3767 +3588 +3880 +846 +71 +4314 +3588 +5506 +2532 +5346 +3588 +1198 +3972 +4341 +1473 +2065 +3778 +3588 +3495 +71 +4314 +4771 +2192 +5100 +2980 +4771 +1161 +3588 +5506 +1949 +3588 +5495 +846 +2532 +402 +2596 +2398 +4441 +5101 +1510 +3739 +518 +1473 +2192 +1161 +3004 +3754 +3588 +2453 +4934 +3588 +2065 +4771 +3704 +839 +3588 +3972 +2609 +1519 +3588 +4892 +5613 +3195 +5100 +199 +4441 +4012 +846 +3767 +4771 +3361 +3982 +846 +1063 +1748 +846 +1537 +846 +435 +4119 +5062 +3748 +332 +1438 +3383 +5315 +3383 +4095 +2193 +3739 +337 +846 +2532 +3568 +1510 +2092 +4327 +3588 +575 +4771 +1860 +3303 +3767 +3588 +5506 +630 +3588 +3495 +3853 +3367 +1583 +3754 +3778 +1718 +4314 +1473 +2532 +4341 +5100 +1417 +3588 +1543 +3004 +2090 +4757 +1250 +2532 +2460 +1440 +2532 +1187 +1250 +3704 +4198 +2193 +2542 +575 +5154 +5610 +3588 +3571 +5037 +2934 +3936 +2443 +1913 +3588 +3972 +1295 +4314 +5344 +3588 +2232 +1125 +1992 +2192 +3588 +5179 +3778 +2804 +3079 +3588 +2903 +2232 +5344 +5463 +3588 +435 +3778 +4815 +5259 +3588 +2453 +2532 +3195 +337 +5259 +846 +2186 +4862 +3588 +4753 +1807 +3129 +3754 +4514 +1510 +5037 +1014 +1921 +3588 +156 +1223 +3739 +1458 +846 +2609 +1519 +3588 +4892 +846 +2147 +3739 +1458 +4012 +2213 +3588 +3551 +846 +1161 +3367 +514 +2288 +2228 +1199 +1462 +2192 +1161 +3377 +1473 +1917 +1519 +3588 +435 +1510 +1824 +3992 +4314 +4771 +3853 +2532 +3588 +2725 +3004 +4314 +846 +1909 +4771 +3303 +3767 +3588 +4757 +2596 +3588 +1299 +846 +353 +3588 +3972 +71 +1223 +3571 +1519 +3588 +494 +1161 +3588 +1887 +1439 +3588 +2460 +565 +4862 +846 +5290 +1519 +3588 +3925 +3748 +1525 +1519 +3588 +2542 +2532 +325 +3588 +1992 +3588 +2232 +3936 +2532 +3588 +3972 +846 +1161 +314 +2532 +1905 +1537 +4169 +1885 +1510 +2532 +4441 +3754 +575 +2791 +5346 +1251 +4771 +3752 +2532 +3588 +2725 +4771 +3854 +2753 +1722 +3588 +4232 +3588 +2264 +5442 +846 +1161 +3326 +4002 +2250 +2597 +3588 +749 +367 +3326 +4245 +5100 +2532 +4489 +5061 +5100 +3748 +1718 +3588 +2232 +2596 +3588 +3972 +1161 +2564 +846 +756 +2723 +3588 +5061 +3004 +4183 +1515 +5177 +1223 +4771 +2532 +1357 +1096 +3588 +1484 +3778 +1223 +3588 +4674 +4307 +5037 +3839 +2532 +3837 +588 +3326 +3956 +2169 +2903 +5344 +1161 +2443 +3361 +1909 +4119 +4771 +1465 +3870 +191 +4771 +1473 +4935 +3588 +4674 +1932 +1063 +2147 +3588 +435 +3778 +3061 +2532 +2795 +4714 +3956 +3588 +2453 +3588 +2596 +3588 +3625 +5037 +4414 +3588 +3588 +3480 +139 +3739 +2532 +3588 +2411 +953 +3985 +3739 +2532 +2902 +3844 +3739 +1410 +846 +350 +4012 +3956 +3778 +1921 +3739 +1473 +2723 +846 +1161 +4934 +2532 +3588 +2453 +5335 +3778 +3779 +2192 +5037 +611 +3588 +3972 +3506 +846 +3588 +2232 +3004 +1537 +4183 +2094 +1510 +4771 +2923 +3588 +1484 +3778 +1987 +2115 +3588 +4012 +1683 +626 +1410 +4771 +1921 +3754 +3756 +4119 +1510 +1473 +2250 +1427 +575 +3739 +305 +4352 +1519 +2419 +2532 +2147 +1473 +4314 +5100 +1256 +2228 +1999 +3793 +4160 +3777 +1722 +3588 +2411 +3777 +1722 +3588 +4864 +3777 +2596 +3588 +4172 +3761 +1410 +3936 +4771 +4012 +3739 +3570 +2723 +1473 +1161 +3670 +3778 +4771 +3754 +2596 +3588 +3598 +3739 +3004 +139 +3779 +3000 +3588 +3971 +2316 +4100 +3956 +3588 +2596 +3588 +3551 +2532 +3588 +1722 +3588 +4396 +1125 +2192 +1680 +1519 +3588 +2316 +3739 +2532 +846 +3778 +4327 +3195 +1510 +386 +5037 +1342 +2532 +94 +1722 +3778 +2532 +846 +778 +677 +4893 +2192 +4314 +3588 +2316 +2532 +3588 +444 +1223 +3956 +1161 +1223 +2094 +4119 +1654 +4160 +1519 +3588 +1484 +1473 +3854 +2532 +4376 +1722 +3739 +2147 +1473 +48 +1722 +3588 +2411 +3756 +3326 +3793 +3761 +3326 +2351 +1161 +5100 +575 +3588 +773 +2453 +3739 +1909 +4771 +3918 +2532 +2723 +1163 +1487 +5100 +2192 +4314 +1473 +2228 +846 +3778 +3004 +5101 +92 +2147 +2476 +1473 +1909 +3588 +4892 +2228 +4012 +1520 +3778 +5456 +3739 +2896 +1722 +846 +2476 +3754 +4012 +386 +3498 +1473 +2919 +4594 +1909 +4771 +1161 +306 +846 +3588 +5344 +199 +1492 +3588 +4012 +3588 +3598 +3004 +3752 +3079 +3588 +5506 +2597 +1231 +3588 +2596 +4771 +1299 +3588 +1543 +5083 +846 +5037 +2192 +425 +2532 +2967 +3367 +3588 +2398 +846 +5256 +846 +1161 +3326 +2250 +5100 +3588 +5344 +3854 +4862 +1409 +3588 +2398 +1135 +1510 +2453 +3343 +3588 +3972 +2532 +191 +846 +4012 +3588 +1519 +5547 +2424 +4102 +1161 +1256 +846 +4012 +1343 +2532 +1466 +2532 +3588 +2917 +3588 +3195 +1719 +1096 +3588 +5344 +611 +3588 +3568 +2192 +4198 +1161 +2540 +3335 +3333 +4771 +260 +2532 +1679 +3754 +5536 +1325 +846 +5259 +3588 +3972 +1352 +2532 +4437 +846 +3343 +3656 +846 +1161 +1333 +4137 +2983 +3588 +5344 +1240 +4201 +5347 +5037 +2309 +5485 +2698 +3588 +2453 +3588 +5344 +2641 +3588 +3972 +1210 +3767 +5347 +1910 +3588 +1885 +3326 +5140 +2250 +305 +1519 +2414 +575 +2542 +5037 +1718 +846 +3588 +749 +2532 +3588 +4413 +3588 +2453 +2596 +3588 +3972 +2532 +3870 +846 +154 +5485 +2596 +846 +3704 +3343 +846 +1519 +2419 +1747 +4160 +337 +846 +2596 +3588 +3598 +3303 +3767 +3588 +5347 +611 +5083 +3588 +3972 +1519 +2542 +1161 +1438 +3195 +1722 +5034 +1607 +3767 +5346 +3588 +1722 +4771 +1415 +4782 +2723 +846 +1487 +5100 +824 +1510 +1722 +3588 +435 +1161 +1304 +1722 +846 +2250 +3756 +4119 +3638 +2228 +1176 +2597 +1519 +2542 +3588 +1887 +2523 +1909 +3588 +968 +2753 +3588 +3972 +71 +1161 +3854 +846 +4026 +846 +3588 +575 +2414 +2597 +2453 +4183 +2532 +926 +157 +2702 +3739 +584 +3756 +2480 +3588 +3972 +626 +3754 +3777 +1519 +3588 +3551 +3588 +2453 +3777 +1519 +3588 +2411 +3777 +1519 +2541 +5100 +264 +1161 +3588 +5347 +2309 +3588 +2453 +5485 +2698 +611 +3588 +3972 +3004 +2309 +1519 +2414 +305 +1563 +4012 +3778 +2919 +1909 +1473 +1161 +3004 +3588 +3972 +1909 +3588 +968 +2541 +2476 +1510 +3757 +1473 +2919 +1163 +2453 +3762 +91 +5613 +2532 +4771 +2566 +1921 +3767 +3303 +1487 +91 +2532 +514 +2288 +5100 +4238 +3756 +3868 +3588 +599 +1161 +1487 +3762 +1510 +3739 +3778 +2723 +1473 +3762 +1410 +1473 +846 +5483 +2541 +1941 +5119 +3588 +5347 +4814 +3326 +3588 +4824 +611 +2541 +1941 +1909 +2541 +4198 +1161 +2250 +5100 +1230 +67 +3588 +935 +2532 +959 +2658 +1519 +2542 +782 +3588 +5347 +1161 +5613 +4119 +2250 +1304 +1563 +3588 +5347 +3588 +935 +394 +3588 +2596 +3588 +3972 +3004 +435 +5100 +1510 +2641 +5259 +5344 +1198 +4012 +3739 +1096 +1473 +1519 +2414 +1718 +3588 +749 +2532 +3588 +4245 +3588 +2453 +154 +2596 +846 +2613 +4314 +3739 +611 +3754 +3756 +1510 +1485 +4514 +5483 +5100 +444 +4250 +2228 +3588 +2723 +2596 +4383 +2192 +3588 +2725 +5037 +5117 +627 +2983 +4012 +3588 +1462 +3767 +4905 +1759 +311 +3367 +4160 +3588 +1836 +2523 +1909 +3588 +968 +2753 +71 +3588 +435 +4012 +3739 +2476 +3588 +2725 +5342 +3762 +156 +3739 +1473 +5282 +4190 +1161 +2213 +5100 +4012 +3588 +2398 +1175 +2192 +4314 +846 +2532 +4012 +5100 +2424 +2348 +3739 +2198 +5335 +3588 +3972 +1161 +1473 +639 +3588 +4012 +3778 +2214 +3004 +1487 +1014 +4198 +1519 +2414 +2546 +2919 +4012 +3778 +1161 +3588 +3972 +1941 +5083 +846 +1519 +3588 +3588 +4575 +1233 +2753 +5083 +846 +2193 +3739 +375 +846 +4314 +2541 +1161 +67 +4314 +3588 +5347 +1014 +2532 +846 +3588 +444 +191 +5346 +839 +191 +846 +3767 +3588 +1887 +2064 +3588 +67 +2532 +3588 +959 +3326 +4183 +5325 +2532 +1525 +1519 +3588 +201 +4862 +5037 +5506 +2532 +435 +3588 +2596 +1851 +3588 +4172 +2532 +2753 +3588 +5347 +71 +3588 +3972 +2532 +5346 +3588 +5347 +67 +935 +2532 +3956 +3588 +4840 +1473 +435 +2334 +3778 +4012 +3739 +537 +3588 +4128 +3588 +2453 +1793 +1473 +1722 +5037 +2414 +2532 +1759 +994 +3361 +1163 +846 +2198 +3371 +1161 +1473 +2638 +3367 +514 +2288 +846 +4238 +1161 +846 +3778 +1941 +3588 +4575 +2919 +3992 +4012 +3739 +804 +5100 +1125 +3588 +2962 +3756 +2192 +1352 +4254 +846 +1909 +4771 +2532 +3122 +1909 +4771 +935 +67 +3704 +3588 +351 +1096 +2192 +5100 +1125 +1063 +249 +1473 +1380 +3992 +1198 +3361 +2532 +3588 +2596 +846 +156 +4591 +1161 +67 +4314 +3588 +3972 +5346 +2010 +4771 +5228 +4572 +3004 +5119 +3588 +3972 +1614 +3588 +5495 +626 +935 +67 +4012 +3956 +3739 +1458 +5259 +2453 +2233 +1683 +3107 +1909 +4771 +4594 +626 +3195 +3122 +1510 +4771 +1109 +3956 +3588 +2596 +2453 +5037 +1485 +2532 +2213 +1352 +1189 +3116 +191 +1473 +3303 +3767 +3588 +981 +1473 +1537 +3503 +3588 +575 +746 +1096 +1722 +3588 +1484 +1473 +5037 +1722 +2414 +1492 +3956 +2453 +4267 +1473 +509 +1437 +2309 +3140 +3754 +2596 +3588 +196 +139 +3588 +2251 +2356 +2198 +5330 +2532 +3568 +1909 +1680 +3588 +1519 +3588 +3962 +1473 +1096 +5259 +3588 +2316 +1860 +2476 +2919 +1519 +3739 +2658 +3588 +1429 +1473 +1722 +1616 +3571 +2532 +2250 +3000 +1679 +4012 +3739 +1680 +1458 +5259 +2453 +935 +5101 +571 +2919 +3844 +4771 +1487 +3588 +2316 +3498 +1453 +3303 +3767 +1473 +1380 +1683 +1163 +4314 +3588 +3686 +2424 +3588 +3480 +4183 +1727 +4238 +3739 +2532 +4160 +1722 +2414 +2532 +5037 +4183 +3588 +40 +1473 +1722 +5438 +2623 +3588 +3844 +3588 +749 +1849 +2983 +5037 +337 +846 +2702 +5586 +2532 +2596 +3956 +3588 +4864 +4178 +5097 +846 +315 +987 +5037 +4057 +1693 +846 +1377 +2193 +2532 +1519 +3588 +1854 +4172 +1722 +3739 +4198 +1519 +3588 +1154 +3326 +1849 +2532 +2011 +3588 +3588 +749 +2250 +3319 +2596 +3588 +3598 +3708 +3771 +5228 +3588 +2987 +3588 +2246 +4034 +5457 +1473 +2532 +3588 +4862 +1473 +4198 +935 +5037 +3956 +1473 +2667 +1519 +3588 +1093 +191 +5456 +3004 +4314 +1473 +3588 +1446 +1258 +4549 +4549 +5101 +1473 +1377 +4642 +4771 +4314 +2759 +2979 +1161 +1473 +3004 +5101 +1510 +2962 +1161 +3588 +2962 +3004 +1473 +1510 +2424 +3739 +4771 +1377 +235 +450 +2532 +2476 +1909 +3588 +4228 +4771 +1063 +1519 +3778 +3708 +4771 +4400 +4771 +5257 +2532 +3144 +5037 +3739 +3708 +1473 +5037 +3739 +3708 +4771 +1807 +4771 +1537 +3588 +2992 +2532 +1537 +3588 +1484 +1519 +3739 +1473 +649 +4771 +455 +3788 +846 +3588 +1994 +575 +4655 +1519 +5457 +2532 +3588 +1849 +3588 +4567 +1909 +3588 +2316 +3588 +2983 +846 +859 +266 +2532 +2819 +1722 +3588 +37 +4102 +3588 +1519 +1473 +3606 +935 +67 +3756 +1096 +545 +3588 +3770 +3701 +235 +5037 +3588 +1722 +1154 +4412 +2532 +2414 +5037 +3956 +3588 +5561 +3588 +2449 +2532 +3588 +1484 +518 +3340 +2532 +1994 +1909 +3588 +2316 +514 +3588 +3341 +2041 +4238 +1752 +3778 +2453 +1473 +4815 +1722 +3588 +2411 +3987 +1315 +3767 +5177 +1947 +3588 +575 +3588 +2316 +891 +3588 +2250 +3778 +2476 +3143 +5037 +3398 +2532 +3173 +3762 +3004 +1622 +3739 +3195 +1096 +5037 +3588 +4396 +2532 +3475 +2980 +1487 +3805 +3588 +5547 +1487 +4413 +1537 +386 +3498 +3195 +5457 +2605 +5037 +3588 +2992 +2532 +3588 +1484 +1161 +3778 +846 +626 +3588 +5347 +3173 +3588 +5456 +5346 +3105 +3972 +3588 +4183 +1121 +4771 +1519 +3130 +4062 +1161 +3588 +3972 +5346 +2903 +5347 +3756 +3105 +235 +225 +2532 +4997 +4487 +669 +1063 +1987 +4012 +3778 +3588 +935 +4314 +3739 +2532 +3955 +2980 +1063 +2990 +846 +3778 +3756 +3982 +3762 +1063 +3756 +1510 +4238 +1722 +1137 +3778 +935 +67 +4100 +3588 +4396 +1492 +3754 +4100 +1161 +3588 +67 +4314 +3588 +3972 +1722 +3641 +1473 +3982 +5546 +4160 +1161 +3588 +3972 +302 +2172 +3588 +2316 +2532 +1722 +3641 +2532 +1722 +3173 +3756 +3440 +4771 +235 +2532 +3956 +3588 +191 +1473 +4594 +1096 +5108 +3697 +2532 +1473 +1510 +3924 +3588 +1199 +3778 +450 +5037 +3588 +935 +2532 +3588 +2232 +5037 +3588 +959 +2532 +3588 +4775 +846 +2532 +402 +2980 +4314 +240 +3004 +3754 +3762 +2288 +2228 +1199 +514 +4238 +3588 +444 +3778 +1161 +67 +3588 +5347 +5346 +630 +1410 +3588 +444 +3778 +1487 +3361 +1941 +2541 +1161 +5613 +2919 +3588 +636 +1473 +1519 +3588 +2482 +3860 +5037 +3588 +3972 +2532 +5100 +2087 +1202 +1543 +3686 +2457 +4686 +4575 +1161 +1910 +4143 +98 +3195 +4126 +1519 +3588 +2596 +3588 +773 +5117 +321 +1510 +4862 +1473 +708 +3110 +2331 +5037 +3588 +2087 +2609 +1519 +4605 +5037 +3588 +2457 +5364 +3588 +3972 +5530 +2010 +4314 +3588 +5384 +4198 +1958 +5177 +2547 +321 +5284 +3588 +2954 +1223 +3588 +3588 +417 +1510 +1727 +5037 +3588 +3989 +3588 +2596 +3588 +2791 +2532 +3828 +1277 +2718 +1519 +3460 +3588 +3073 +3588 +1543 +2546 +2147 +4143 +222 +4126 +1519 +3588 +2482 +1688 +1473 +1519 +846 +1161 +1722 +2425 +2250 +1020 +2532 +3433 +1096 +2596 +3588 +2834 +3361 +4330 +1473 +3588 +417 +5284 +3588 +2914 +2596 +4534 +5037 +3433 +3881 +846 +2064 +1519 +5117 +5100 +2564 +2570 +3040 +3739 +1451 +4172 +2996 +1510 +1161 +2425 +5550 +1230 +2532 +1510 +2235 +2000 +3588 +4144 +1223 +3588 +2532 +3588 +3521 +2235 +3928 +3867 +3588 +3972 +3004 +846 +435 +2334 +3754 +3326 +5196 +2532 +4183 +2209 +3756 +3440 +3588 +5413 +2532 +3588 +4143 +235 +2532 +3588 +5590 +1473 +1510 +3195 +3588 +4144 +1161 +3588 +1543 +3588 +2942 +2532 +3588 +3490 +3123 +3982 +2228 +3588 +5259 +3972 +3004 +1161 +428 +3588 +3040 +5225 +4314 +3915 +3588 +4119 +5087 +1012 +321 +1564 +1487 +4458 +1410 +2658 +1519 +5405 +3040 +3588 +2914 +991 +2596 +3047 +2532 +2596 +5566 +3914 +1161 +5285 +3558 +1380 +3588 +4286 +2902 +142 +788 +3881 +3588 +2914 +1161 +3326 +3756 +4183 +906 +2596 +846 +417 +5189 +3588 +2564 +2148 +1161 +4884 +3588 +4143 +2532 +3361 +1410 +503 +3588 +417 +1929 +5342 +1161 +5295 +3519 +5100 +2564 +2802 +2480 +3433 +4031 +1096 +3588 +4627 +3739 +142 +996 +5530 +5269 +3588 +4143 +5037 +5399 +3361 +1519 +3588 +4950 +1601 +5465 +3588 +4632 +3779 +5342 +1161 +4971 +5492 +1473 +3588 +1836 +1546 +4160 +2532 +3588 +5154 +849 +3588 +4631 +3588 +4143 +4496 +1161 +3383 +2246 +3383 +798 +2014 +1909 +4119 +2250 +5037 +5494 +3756 +3641 +1945 +3063 +4014 +1680 +3956 +3588 +4982 +1473 +5037 +4183 +776 +5225 +5119 +2476 +3588 +3972 +1722 +3319 +846 +3004 +5599 +435 +3303 +1163 +3980 +1473 +3361 +321 +575 +3588 +2914 +5037 +2770 +3588 +5196 +3778 +2532 +3588 +2209 +2532 +3588 +3568 +3867 +4771 +2114 +1063 +580 +5590 +3762 +1510 +1537 +4771 +4133 +3588 +4143 +1063 +3936 +1473 +3778 +3588 +3571 +3588 +2316 +3739 +1510 +3739 +2532 +3000 +32 +3004 +3361 +5399 +3972 +2541 +4771 +3936 +1163 +2532 +3708 +5483 +4771 +3588 +2316 +3956 +3588 +4126 +3326 +4771 +1352 +2114 +435 +1063 +4100 +3588 +2316 +3754 +3779 +1510 +2596 +3739 +5158 +2980 +1473 +1161 +1163 +1519 +3520 +5100 +1473 +1601 +1161 +5613 +5065 +3571 +1096 +1308 +1473 +1722 +3588 +99 +2596 +3319 +3588 +3571 +5282 +3588 +3492 +4317 +5100 +5561 +846 +2532 +1001 +2147 +3712 +1501 +1161 +1024 +1339 +2532 +3825 +1001 +2147 +3712 +1178 +5037 +5399 +3361 +4225 +2596 +5138 +5117 +1601 +1537 +4403 +4496 +45 +5064 +2172 +2250 +1096 +1161 +3588 +3492 +2212 +5343 +1537 +3588 +4143 +2532 +5465 +3588 +4627 +1519 +3588 +2281 +4392 +5613 +1537 +4408 +45 +1614 +3195 +3004 +3588 +3972 +3588 +1543 +2532 +3588 +4757 +1437 +3361 +3778 +3306 +1722 +3588 +4143 +4771 +4982 +3756 +1410 +5119 +609 +3588 +4757 +3588 +4979 +3588 +4627 +2532 +1439 +846 +1601 +1161 +891 +3739 +2250 +3195 +1096 +3870 +3588 +3972 +537 +3335 +5160 +3004 +5065 +2250 +4594 +4328 +777 +1300 +3367 +4355 +1352 +3870 +4771 +3335 +5160 +1063 +3778 +4314 +3588 +5212 +4991 +5225 +1063 +3762 +4771 +2359 +575 +3588 +2776 +622 +1161 +3004 +3778 +2532 +2983 +740 +2168 +3588 +2316 +1799 +3956 +2532 +2806 +756 +2068 +1161 +2115 +1096 +3956 +2532 +846 +4355 +5160 +1161 +1510 +3588 +3956 +5590 +1722 +3588 +4143 +1250 +1440 +1803 +1161 +2880 +5160 +2893 +3588 +4143 +1544 +3588 +4621 +1519 +3588 +2281 +1161 +3753 +2250 +1096 +3588 +1093 +3756 +1921 +1161 +2657 +2859 +5100 +2192 +123 +1519 +3739 +1856 +3588 +4143 +1011 +1487 +1410 +2532 +3588 +45 +4014 +1439 +1519 +3588 +2281 +260 +447 +3588 +2202 +3588 +4079 +2532 +1869 +3588 +736 +3588 +4154 +2722 +1519 +3588 +123 +1161 +4045 +1519 +5117 +1337 +2027 +3588 +3491 +2532 +3303 +3588 +4408 +2043 +3306 +761 +1161 +3588 +4403 +3089 +5259 +3588 +970 +1161 +3588 +4757 +1012 +1096 +2443 +3588 +1202 +615 +3361 +5100 +1579 +1309 +1161 +3588 +1543 +1014 +1295 +3588 +3972 +2967 +846 +3588 +1013 +5037 +2753 +3588 +1410 +2860 +641 +4413 +1909 +3588 +1093 +1826 +2532 +3588 +3062 +3303 +3739 +1909 +4548 +1161 +3739 +1909 +5100 +3588 +575 +3588 +4143 +2532 +3779 +1096 +3956 +1295 +1909 +3588 +1093 +2532 +1295 +5119 +1921 +3754 +3194 +3588 +3520 +2564 +5037 +3588 +915 +3930 +3588 +3756 +5177 +5363 +1473 +1063 +681 +4443 +4355 +3956 +1473 +1223 +3588 +5205 +3588 +2186 +2532 +1223 +3588 +5592 +1161 +4962 +3588 +3972 +5434 +5100 +4128 +2532 +2007 +1909 +3588 +4443 +2191 +575 +3588 +2329 +1831 +2510 +3588 +5495 +846 +1161 +5613 +3708 +3588 +915 +2910 +3588 +2342 +1537 +3588 +5495 +846 +4314 +240 +3004 +3843 +5406 +1510 +3588 +444 +3778 +3739 +1295 +1537 +3588 +2281 +2198 +3588 +1349 +3756 +1439 +3303 +3767 +3588 +660 +3588 +2342 +1519 +3588 +4442 +3958 +3762 +2556 +1161 +3588 +4328 +846 +3195 +4092 +2228 +2667 +869 +3498 +1161 +1909 +4183 +846 +4328 +2532 +2334 +3367 +824 +1519 +846 +1096 +3328 +3004 +846 +1510 +2316 +1161 +1722 +3588 +4012 +3588 +5117 +1565 +5225 +5564 +3588 +4413 +3588 +3520 +3686 +4196 +3739 +324 +1473 +2250 +5140 +5390 +3579 +1161 +1096 +3588 +3962 +3588 +4196 +4446 +2532 +1420 +4912 +2621 +4314 +3739 +1525 +2532 +4336 +3588 +3972 +2007 +3588 +5495 +846 +2390 +846 +1161 +3778 +1096 +2532 +3588 +3062 +3588 +1722 +3588 +3520 +2192 +769 +4334 +2532 +2323 +3739 +2532 +4183 +5092 +5091 +1473 +2532 +321 +2007 +3588 +4314 +3588 +5532 +1161 +3326 +5140 +3376 +321 +1722 +4143 +3914 +1722 +3588 +3520 +222 +3902 +1359 +2532 +2609 +1519 +4946 +1961 +2250 +5140 +3606 +4022 +2658 +1519 +4484 +2532 +3326 +1520 +2250 +1920 +3558 +1206 +2064 +1519 +4223 +3757 +2147 +80 +3870 +3844 +846 +1961 +2250 +2033 +2532 +3779 +1519 +3588 +4516 +2064 +2547 +3588 +80 +191 +3588 +4012 +1473 +2064 +1519 +529 +1473 +891 +675 +5410 +2532 +5140 +4999 +3739 +3708 +3588 +3972 +2168 +3588 +2316 +2983 +2294 +1161 +3753 +1525 +1519 +4516 +2010 +3588 +3972 +3306 +2596 +1438 +4862 +3588 +5442 +846 +4757 +1161 +1096 +3326 +2250 +5140 +4779 +846 +3588 +1510 +3588 +2453 +4413 +1161 +4905 +846 +3004 +4314 +846 +435 +80 +1473 +3762 +1727 +4160 +3588 +2992 +2228 +3588 +1485 +3588 +3971 +1198 +1537 +2414 +3860 +1519 +3588 +5495 +3588 +4514 +3748 +350 +1473 +1014 +630 +1223 +3588 +3367 +156 +2288 +5225 +1722 +1473 +1161 +483 +3588 +2453 +315 +1941 +2541 +3756 +5613 +3588 +1484 +1473 +5100 +2723 +2192 +3767 +1223 +3778 +3588 +156 +3870 +4771 +3708 +2532 +4354 +1063 +1752 +3588 +1680 +3588 +2474 +3588 +254 +3778 +4029 +1161 +3588 +4314 +846 +3004 +3777 +1473 +1121 +4012 +4771 +1209 +575 +3588 +2449 +3777 +3854 +5100 +3588 +80 +518 +2228 +2980 +5100 +4012 +4771 +4190 +1161 +515 +3844 +4771 +191 +3739 +5426 +1063 +3303 +4012 +3588 +139 +3778 +1110 +1473 +1510 +3754 +3837 +483 +1161 +5021 +846 +2250 +2064 +4314 +846 +1519 +3588 +3578 +4119 +3739 +1620 +1263 +3588 +932 +3588 +2316 +5037 +3982 +846 +4012 +3588 +2424 +575 +5037 +3588 +3551 +3475 +2532 +3588 +4396 +575 +4404 +2193 +2073 +2532 +3303 +3588 +3982 +3588 +3004 +1161 +3588 +569 +1161 +800 +1510 +4314 +240 +630 +3004 +3588 +3972 +4487 +1520 +3754 +2573 +3588 +4151 +3588 +40 +2980 +1223 +2268 +3588 +4396 +4314 +3588 +3962 +4771 +3004 +4198 +4314 +3588 +2992 +3778 +2532 +3004 +189 +191 +2532 +3756 +3361 +4920 +2532 +991 +991 +2532 +3756 +3361 +3708 +1063 +3975 +3588 +2588 +3588 +2992 +3778 +2532 +3588 +3775 +917 +191 +2532 +3588 +3788 +846 +2576 +3361 +4218 +3708 +3588 +3788 +2532 +3588 +3775 +191 +2532 +3588 +2588 +4920 +2532 +1994 +2532 +2390 +846 +3767 +1110 +1510 +4771 +3754 +3588 +1484 +649 +3778 +3588 +4992 +3588 +2316 +846 +2532 +191 +1161 +1696 +1333 +3650 +1722 +2398 +3410 +2532 +588 +3956 +3588 +1531 +4314 +846 +2784 +3588 +932 +3588 +2316 +2532 +1321 +3588 +4012 +3588 +2962 +2424 +5547 +3326 +3956 +3954 +209 +3972 +1401 +5547 +2424 +2822 +652 +873 +1519 +2098 +2316 +3739 +4279 +1223 +3588 +4396 +846 +1722 +1124 +40 +4012 +3588 +5207 +846 +3588 +1096 +1537 +4690 +1138 +2596 +4561 +3588 +3724 +5207 +2316 +1722 +1411 +2596 +4151 +42 +1537 +386 +3498 +2424 +5547 +3588 +2962 +1473 +1223 +3739 +2983 +5485 +2532 +651 +1519 +5218 +4102 +1722 +3956 +3588 +1484 +5228 +3588 +3686 +846 +1722 +3739 +1510 +2532 +4771 +2822 +2424 +5547 +3956 +3588 +1510 +1722 +4516 +27 +2316 +2822 +40 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +3303 +4412 +2168 +3588 +2316 +1473 +1223 +2424 +5547 +4012 +3956 +4771 +3754 +3588 +4102 +4771 +2605 +1722 +3650 +3588 +2889 +1063 +3144 +1473 +1510 +3588 +2316 +3739 +3000 +1722 +3588 +4151 +1473 +1722 +3588 +2098 +3588 +5207 +846 +5613 +89 +3417 +4771 +4160 +3842 +1909 +3588 +4335 +1473 +1189 +1487 +4458 +2235 +4218 +2137 +1722 +3588 +2307 +3588 +2316 +2064 +4314 +4771 +1063 +1971 +3708 +4771 +2443 +3330 +5100 +5486 +4152 +4771 +1519 +3588 +4741 +4771 +1161 +3778 +1510 +4837 +1722 +4771 +1223 +3588 +1722 +240 +4102 +5037 +4771 +2532 +1473 +1161 +80 +3756 +2309 +4771 +50 +3754 +4178 +4388 +2064 +4314 +4771 +2532 +2967 +891 +3588 +1204 +2443 +5100 +2590 +2192 +2532 +1722 +4771 +2531 +2532 +1722 +3588 +3062 +1484 +5037 +1672 +2532 +915 +5037 +4680 +2532 +453 +3781 +1510 +3779 +3588 +2596 +1473 +4289 +2532 +4771 +3588 +1722 +4516 +2097 +1063 +3756 +1870 +3588 +2098 +1063 +1411 +2316 +1510 +1519 +4991 +3956 +3588 +4100 +5037 +2453 +4412 +2532 +1672 +1063 +1343 +2316 +1722 +846 +601 +1537 +4102 +1519 +4102 +2531 +1125 +1161 +3588 +1342 +1537 +4102 +2198 +1063 +601 +3709 +2316 +575 +3772 +1909 +3956 +763 +2532 +93 +444 +3588 +3588 +225 +1722 +93 +2722 +1360 +3588 +1110 +3588 +2316 +5318 +1510 +1722 +846 +1063 +3588 +2316 +846 +5319 +1063 +3588 +517 +846 +3588 +5037 +126 +846 +1411 +2532 +2305 +575 +2937 +2889 +3588 +4161 +3539 +2529 +1519 +3588 +1510 +846 +379 +1360 +1097 +3588 +2316 +3756 +5613 +2316 +1392 +2228 +2168 +235 +3154 +1722 +3588 +1261 +846 +2532 +4654 +3588 +801 +846 +2588 +5335 +1510 +4680 +3471 +2532 +236 +3588 +1391 +3588 +862 +2316 +1722 +3667 +1504 +5349 +444 +2532 +4071 +2532 +5074 +2532 +2062 +1352 +3860 +846 +3588 +2316 +1722 +3588 +1939 +3588 +2588 +846 +1519 +167 +3588 +818 +3588 +4983 +846 +1722 +846 +3748 +3337 +3588 +225 +3588 +2316 +1722 +3588 +5579 +2532 +4573 +2532 +3000 +3588 +2937 +3844 +3588 +2936 +3739 +1510 +2128 +1519 +3588 +165 +281 +1223 +3778 +3860 +846 +3588 +2316 +1519 +3806 +819 +1063 +5037 +3588 +2338 +846 +3337 +3588 +5446 +5540 +1519 +3588 +3844 +5449 +5037 +3668 +2532 +3588 +730 +863 +3588 +5446 +5540 +3588 +2338 +1572 +1722 +3588 +3715 +846 +1519 +240 +730 +1722 +730 +3588 +808 +2716 +2532 +3588 +489 +3739 +1163 +3588 +4106 +846 +1722 +1438 +618 +2532 +2531 +3756 +1381 +3588 +2316 +2192 +1722 +1922 +3860 +846 +3588 +2316 +1519 +96 +3563 +4160 +3588 +3361 +2520 +4137 +3956 +93 +4189 +4124 +2549 +3324 +5355 +5408 +2054 +1388 +2550 +5588 +2637 +2319 +5197 +5244 +213 +2182 +2556 +1118 +545 +801 +802 +794 +415 +3748 +3588 +1345 +3588 +2316 +1921 +3754 +3588 +3588 +5108 +4238 +514 +2288 +1510 +3756 +3440 +846 +4160 +235 +2532 +4909 +3588 +4238 +1352 +379 +1510 +5599 +444 +3956 +3588 +2919 +1063 +1722 +3739 +2919 +3588 +2087 +4572 +2632 +1063 +3588 +846 +4238 +3588 +2919 +1161 +1492 +3754 +3588 +2917 +3588 +2316 +1510 +2596 +225 +1909 +3588 +3588 +5108 +4238 +1161 +3049 +3778 +5599 +444 +3588 +2919 +3588 +3588 +5108 +4238 +2532 +4160 +846 +3754 +4771 +1628 +3588 +2917 +3588 +2316 +2228 +3588 +4149 +3588 +5544 +846 +2532 +3588 +463 +2532 +3588 +3115 +2706 +50 +3754 +3588 +5543 +3588 +2316 +1519 +3341 +4771 +71 +1161 +2596 +3588 +4643 +4771 +2532 +279 +2588 +2343 +4572 +3709 +1722 +2250 +3709 +2532 +602 +1341 +3588 +2316 +3739 +591 +1538 +2596 +3588 +2041 +846 +3303 +3588 +2596 +5281 +2041 +18 +1391 +2532 +5092 +2532 +861 +2212 +2222 +166 +1161 +3588 +1537 +2052 +2532 +544 +3588 +225 +1161 +3982 +3588 +93 +3709 +2532 +2372 +2347 +2532 +4730 +1909 +3956 +5590 +444 +3588 +2716 +3588 +2556 +5037 +2453 +4412 +2532 +1672 +1161 +1391 +2532 +5092 +2532 +1515 +3956 +3588 +2038 +3588 +18 +5037 +2453 +4412 +2532 +1672 +1063 +3756 +1510 +4382 +3844 +3588 +2316 +1063 +3745 +460 +264 +460 +2532 +622 +2532 +3745 +1722 +3551 +264 +1223 +3551 +2919 +1063 +3756 +3588 +202 +3551 +1342 +3844 +3588 +2316 +235 +3588 +4163 +3551 +1344 +1063 +3752 +1484 +3588 +3361 +3551 +2192 +5449 +3588 +3588 +3551 +4160 +3778 +3551 +3361 +2192 +1438 +1510 +3551 +3748 +1731 +3588 +2041 +3588 +3551 +1123 +1722 +3588 +2588 +846 +4828 +846 +3588 +4893 +2532 +3342 +240 +3588 +3053 +2723 +2228 +2532 +626 +2250 +1722 +3739 +2919 +3588 +2316 +3588 +2927 +3588 +444 +2596 +3588 +2098 +1473 +1223 +5547 +2424 +1161 +1487 +4771 +2453 +2028 +2532 +1879 +3551 +2532 +2744 +1722 +2316 +2532 +1097 +3588 +2307 +2532 +1381 +3588 +1308 +2727 +1537 +3588 +3551 +5037 +3982 +4572 +1510 +3595 +5185 +5457 +3588 +1722 +4655 +3810 +878 +1320 +3516 +2192 +3588 +3446 +3588 +1108 +2532 +3588 +225 +1722 +3588 +3551 +3767 +3588 +1321 +2087 +4572 +3756 +1321 +3588 +2784 +3361 +2813 +2813 +3588 +3004 +3361 +3431 +3431 +3588 +948 +3588 +1497 +2416 +3739 +1722 +3551 +2744 +1223 +3588 +3847 +3588 +3551 +3588 +2316 +818 +1063 +3588 +3686 +3588 +2316 +1223 +4771 +987 +1722 +3588 +1484 +2531 +1125 +1063 +3303 +4061 +5623 +1437 +3551 +4238 +1161 +1437 +3848 +3551 +1510 +3588 +4061 +4771 +203 +1096 +3767 +1437 +3588 +203 +3588 +1345 +3588 +3551 +5442 +3756 +3588 +203 +846 +1519 +4061 +3049 +2532 +2919 +3588 +1537 +5449 +203 +3588 +3551 +5055 +4771 +3588 +1223 +1121 +2532 +4061 +3848 +3551 +1063 +3756 +3588 +1722 +3588 +5318 +2453 +1510 +3761 +3588 +1722 +3588 +5318 +1722 +4561 +4061 +235 +3588 +1722 +3588 +2927 +2453 +2532 +4061 +2588 +1722 +4151 +3756 +1121 +3739 +3588 +1868 +3756 +1537 +444 +235 +1537 +3588 +2316 +3767 +5101 +3588 +4053 +3588 +2453 +2228 +5101 +3588 +5622 +3588 +4061 +4183 +2596 +3956 +5158 +1063 +3303 +4412 +3754 +4100 +3588 +3051 +3588 +2316 +1063 +5101 +1487 +569 +5100 +3361 +3588 +570 +846 +3588 +4102 +3588 +2316 +2673 +3361 +1096 +1161 +1096 +3588 +2316 +227 +1161 +3956 +444 +5583 +2509 +1125 +3704 +302 +1344 +1722 +3588 +3056 +4771 +2532 +3528 +1722 +3588 +2919 +4771 +1161 +1487 +3588 +93 +1473 +2316 +1343 +4921 +5101 +2046 +3361 +94 +3588 +2316 +3588 +2018 +3588 +3709 +2596 +444 +3004 +3361 +1096 +1893 +4459 +2919 +3588 +2316 +3588 +2889 +1161 +1487 +3588 +225 +3588 +2316 +1722 +3588 +1699 +5582 +4052 +1519 +3588 +1391 +846 +5101 +2089 +2504 +5613 +268 +2919 +2532 +3361 +2531 +987 +2532 +2531 +5346 +5100 +1473 +3004 +3754 +4160 +3588 +2556 +2443 +2064 +3588 +18 +3739 +3588 +2917 +1738 +1510 +3767 +5101 +4284 +3756 +3843 +1063 +4256 +5037 +2453 +2532 +1672 +3956 +5259 +266 +1510 +2531 +1125 +3754 +3756 +1510 +1342 +3761 +1520 +3756 +1510 +3588 +4920 +3756 +1510 +3588 +1567 +3588 +2316 +3956 +1578 +260 +889 +3756 +1510 +3588 +4160 +5544 +3756 +1510 +2193 +1520 +5028 +455 +3588 +2995 +846 +3588 +1100 +846 +1387 +2447 +785 +5259 +3588 +5491 +846 +3739 +3588 +4750 +685 +2532 +4088 +1073 +3691 +3588 +4228 +846 +1632 +129 +4938 +2532 +5004 +1722 +3588 +3598 +846 +2532 +3598 +1515 +3756 +1097 +3756 +1510 +5401 +2316 +561 +3588 +3788 +846 +1161 +1492 +3754 +3745 +3588 +3551 +3004 +3588 +1722 +3588 +3551 +2980 +2443 +3956 +4750 +5420 +2532 +5267 +1096 +3956 +3588 +2889 +3588 +2316 +1360 +1537 +2041 +3551 +3756 +1344 +3956 +4561 +1799 +846 +1063 +1223 +3551 +1922 +266 +1161 +3570 +5565 +3551 +1343 +2316 +5319 +3140 +5259 +3588 +3551 +2532 +3588 +4396 +1161 +1343 +2316 +1223 +4102 +2424 +5547 +1519 +3956 +3588 +4100 +1063 +3756 +1510 +1293 +1063 +3956 +264 +2532 +5302 +3588 +1391 +3588 +2316 +1344 +1432 +3588 +846 +5485 +1223 +3588 +629 +3588 +1722 +5547 +2424 +3739 +4388 +3588 +2316 +2435 +1223 +4102 +1722 +3588 +846 +129 +1519 +1732 +3588 +1343 +846 +1223 +3588 +3929 +3588 +4266 +265 +1722 +3588 +463 +3588 +2316 +4314 +3588 +1732 +3588 +1343 +846 +1722 +3588 +3568 +2540 +1519 +3588 +1510 +846 +1342 +2532 +1344 +3588 +1537 +4102 +2424 +3767 +4226 +3588 +2746 +1576 +1223 +4169 +3551 +3588 +2041 +3780 +235 +1223 +3551 +4102 +1063 +3049 +1344 +4102 +444 +5565 +2041 +3551 +2228 +2453 +3588 +2316 +3440 +3780 +2532 +1484 +3483 +2532 +1484 +1512 +1520 +3588 +2316 +3739 +1344 +4061 +1537 +4102 +2532 +203 +1223 +3588 +4102 +3767 +3551 +2673 +1223 +3588 +4102 +3361 +1096 +235 +3551 +2476 +3767 +2046 +5101 +2147 +11 +3588 +3962 +1473 +2596 +4561 +1063 +1487 +11 +1537 +2041 +1344 +2192 +2745 +235 +3756 +4314 +2316 +1063 +5101 +3588 +1124 +3004 +1161 +4100 +11 +3588 +2316 +2532 +3049 +846 +1519 +1343 +1161 +3588 +2038 +3588 +3408 +3049 +3756 +2596 +5485 +235 +2596 +3783 +1161 +3588 +3361 +2038 +1161 +4100 +1909 +3588 +1344 +3588 +765 +3049 +3588 +4102 +846 +1519 +1343 +2509 +2532 +1138 +3004 +3588 +3108 +3588 +444 +3739 +3588 +2316 +3049 +1343 +5565 +2041 +3107 +3739 +3588 +458 +863 +2532 +3739 +3588 +266 +1943 +3107 +435 +3739 +3756 +3361 +3049 +2962 +266 +3767 +3588 +3108 +3778 +1909 +3588 +4061 +2228 +2532 +1909 +3588 +203 +1063 +3004 +3049 +3588 +11 +3588 +4102 +1519 +1343 +3767 +4459 +3049 +1510 +1722 +4061 +2228 +1722 +203 +3756 +1722 +4061 +235 +1722 +203 +2532 +2983 +4592 +4061 +4973 +3588 +1343 +3588 +4102 +3588 +1722 +3588 +203 +1519 +3588 +1510 +846 +3962 +3956 +3588 +4100 +1223 +203 +1519 +3588 +3049 +846 +3588 +1343 +2532 +3962 +4061 +3588 +3756 +1537 +4061 +3440 +235 +2532 +3588 +4748 +3588 +2487 +3588 +1722 +203 +4102 +3588 +3962 +1473 +11 +1063 +3756 +1223 +3551 +3588 +1860 +3588 +2818 +2889 +846 +1510 +3588 +11 +2228 +3588 +4690 +846 +235 +1223 +1343 +4102 +1063 +1487 +3588 +1537 +3551 +2818 +2758 +3588 +4102 +2532 +2673 +3588 +1860 +1063 +3588 +3551 +3709 +2716 +1161 +3757 +3756 +1510 +3551 +3761 +3847 +1223 +3778 +1537 +4102 +2443 +2596 +5485 +1519 +3588 +1510 +949 +3588 +1860 +3956 +3588 +4690 +3756 +3588 +1537 +3588 +3551 +3440 +235 +2532 +3588 +1537 +4102 +11 +3739 +1510 +3962 +3956 +1473 +2713 +3739 +4100 +2316 +3588 +2227 +3588 +3498 +2532 +2564 +3588 +3361 +1510 +5613 +1510 +2531 +1125 +3754 +3962 +4183 +1484 +5087 +4771 +3739 +3844 +1680 +1909 +1680 +4100 +1519 +3588 +1096 +846 +3962 +4183 +1484 +2596 +3588 +2046 +3779 +1510 +3588 +4690 +4771 +2532 +3361 +770 +3588 +4102 +2657 +3588 +1438 +4983 +3499 +1541 +4225 +5225 +2532 +3588 +3500 +3588 +3388 +4564 +1161 +1519 +3588 +1860 +3588 +2316 +3756 +1252 +3588 +570 +235 +1743 +3588 +4102 +1325 +1391 +3588 +2316 +2532 +4135 +3754 +1510 +1415 +3739 +1861 +2532 +4160 +1352 +2532 +3049 +846 +1519 +1343 +1161 +3756 +1125 +1223 +846 +3440 +3754 +3049 +846 +235 +2532 +1223 +1473 +3739 +3049 +3195 +3588 +4100 +1909 +3588 +1453 +1537 +3498 +2424 +3588 +2962 +1473 +3739 +3860 +1223 +3588 +3900 +1473 +2532 +1453 +1223 +3588 +1347 +1473 +3767 +1344 +1537 +4102 +1515 +2192 +4314 +3588 +2316 +1223 +3588 +2962 +1473 +2424 +5547 +1223 +3739 +2532 +3588 +4318 +2192 +3588 +4102 +1519 +3588 +5485 +3778 +1722 +3739 +2476 +2532 +2744 +1909 +1680 +3588 +1391 +3588 +2316 +1161 +3756 +3440 +235 +2532 +2744 +1722 +3588 +2347 +1492 +3754 +3588 +2347 +5281 +2716 +1161 +3588 +5281 +1382 +1161 +3588 +1382 +1680 +1161 +3588 +1680 +3756 +2617 +3754 +3588 +26 +3588 +2316 +1632 +1722 +3588 +2588 +1473 +1223 +4151 +40 +3588 +1325 +1473 +1063 +2089 +5547 +1510 +1473 +772 +2089 +2596 +2540 +5228 +765 +599 +1063 +3433 +5228 +1342 +5100 +599 +1063 +5228 +3588 +18 +5029 +5100 +2532 +5111 +599 +1161 +4921 +3588 +1438 +26 +1519 +1473 +3588 +2316 +3754 +2089 +268 +1510 +1473 +5547 +5228 +1473 +599 +3767 +4183 +3123 +1344 +3568 +1722 +3588 +129 +846 +4982 +1223 +846 +575 +3588 +3709 +1063 +1487 +2190 +1510 +2644 +3588 +2316 +1223 +3588 +2288 +3588 +5207 +846 +4183 +3123 +2644 +4982 +1722 +3588 +2222 +846 +1161 +3756 +3440 +235 +2532 +2744 +1722 +3588 +2316 +1223 +3588 +2962 +1473 +2424 +5547 +1223 +3739 +3568 +3588 +2643 +2983 +1223 +3778 +5618 +1223 +1520 +444 +3588 +266 +1519 +3588 +2889 +1525 +2532 +1223 +3588 +266 +3588 +2288 +2532 +3779 +1519 +3956 +444 +3588 +2288 +1330 +1909 +3739 +3956 +264 +1063 +891 +3551 +266 +1510 +1722 +2889 +1161 +266 +3756 +1677 +3361 +1510 +3551 +235 +936 +3588 +2288 +575 +76 +3360 +3475 +2532 +1909 +3588 +3361 +264 +1909 +3588 +3667 +3588 +3847 +76 +3739 +1510 +5179 +3588 +3195 +235 +3756 +5613 +3588 +3900 +3779 +2532 +3588 +5486 +1063 +1487 +3588 +3588 +1520 +3900 +3588 +4183 +599 +4183 +3123 +3588 +5485 +3588 +2316 +2532 +3588 +1431 +1722 +5485 +3588 +3588 +1520 +444 +2424 +5547 +1519 +3588 +4183 +4052 +2532 +3756 +5613 +1223 +1520 +264 +3588 +1434 +1063 +3303 +3588 +2917 +1537 +1520 +1519 +2631 +1161 +3588 +5486 +1537 +4183 +3900 +1519 +1345 +1063 +1487 +3588 +3588 +1520 +3900 +3588 +2288 +936 +1223 +3588 +1520 +4183 +3123 +3588 +3588 +4050 +3588 +5485 +2532 +3588 +1431 +3588 +1343 +2983 +1722 +2222 +936 +1223 +3588 +1520 +2424 +5547 +686 +3767 +5613 +1223 +1520 +3900 +1519 +3956 +444 +1519 +2631 +3779 +2532 +1223 +1520 +1345 +1519 +3956 +444 +1519 +1347 +2222 +1063 +5618 +1223 +3588 +3876 +3588 +1520 +444 +268 +2525 +3588 +4183 +3779 +2532 +1223 +3588 +5218 +3588 +1520 +1342 +2525 +3588 +4183 +1161 +3551 +3922 +2443 +4121 +3588 +3900 +1161 +3757 +4121 +3588 +266 +5248 +3588 +5485 +2443 +5618 +936 +3588 +266 +1722 +3588 +2288 +3779 +2532 +3588 +5485 +936 +1223 +1343 +1519 +2222 +166 +1223 +2424 +5547 +3588 +2962 +1473 +3767 +5101 +2046 +1961 +3588 +266 +2443 +3588 +5485 +4121 +3361 +1096 +3748 +599 +3588 +266 +4459 +2089 +2198 +1722 +846 +2228 +50 +3754 +3745 +907 +1519 +5547 +2424 +1519 +3588 +2288 +846 +907 +3767 +4916 +846 +1223 +3588 +908 +1519 +3588 +2288 +2443 +5618 +1453 +5547 +1537 +3498 +1223 +3588 +1391 +3588 +3962 +3779 +2532 +1473 +1722 +2538 +2222 +4043 +1063 +1487 +4854 +1096 +3588 +3667 +3588 +2288 +846 +235 +2532 +3588 +386 +1510 +3778 +1097 +3754 +3588 +3820 +1473 +444 +4957 +2443 +2673 +3588 +4983 +3588 +266 +3588 +3371 +1398 +1473 +3588 +266 +1063 +3588 +599 +1344 +575 +3588 +266 +1161 +1487 +599 +4862 +5547 +4100 +3754 +2532 +4800 +846 +1492 +3754 +5547 +1453 +1537 +3498 +3765 +599 +2288 +846 +3765 +2961 +1063 +3739 +599 +3588 +266 +599 +2178 +1161 +3739 +2198 +2198 +3588 +2316 +3779 +2532 +4771 +3049 +1438 +1510 +3303 +3498 +3588 +266 +1161 +2198 +3588 +2316 +1722 +5547 +2424 +3767 +3361 +936 +3588 +266 +1722 +3588 +2349 +4771 +4983 +1519 +3588 +5219 +3588 +1939 +846 +3366 +3936 +3588 +3196 +4771 +3696 +93 +3588 +266 +235 +3936 +1438 +3588 +2316 +5616 +1537 +3498 +2198 +2532 +3588 +3196 +4771 +3696 +1343 +3588 +2316 +1063 +266 +4771 +3756 +2961 +1063 +3756 +1510 +5259 +3551 +235 +5259 +5485 +3767 +5101 +264 +3754 +3756 +1510 +5259 +3551 +235 +5259 +5485 +3361 +1096 +3756 +1492 +3754 +3739 +3936 +1438 +1401 +1519 +5218 +1401 +1510 +3739 +5219 +2273 +266 +1519 +2288 +2228 +5218 +1519 +1343 +1161 +5485 +3588 +2316 +3754 +1510 +1401 +3588 +266 +1161 +5219 +1537 +2588 +1519 +3739 +3860 +5179 +1322 +1161 +1659 +575 +3588 +266 +1402 +3588 +1343 +442 +3004 +1223 +3588 +769 +3588 +4561 +4771 +1063 +5618 +3936 +3588 +3196 +4771 +1401 +3588 +167 +2532 +3588 +458 +1519 +3588 +458 +3779 +3568 +3936 +3588 +3196 +4771 +1401 +3588 +1343 +1519 +38 +1063 +3753 +1401 +3588 +266 +1510 +1658 +1510 +3588 +1343 +3767 +5101 +2590 +2192 +5119 +1909 +3739 +3568 +1870 +1063 +3588 +5056 +1565 +2288 +1161 +3570 +1659 +575 +3588 +266 +1161 +1402 +3588 +2316 +2192 +3588 +2590 +4771 +1519 +38 +1161 +3588 +5056 +2222 +166 +1063 +3588 +3800 +3588 +266 +2288 +1161 +3588 +5486 +3588 +2316 +2222 +166 +1722 +5547 +2424 +3588 +2962 +1473 +2228 +80 +50 +1063 +1097 +3551 +2980 +3754 +3588 +3551 +2961 +3588 +444 +1909 +3745 +5550 +2198 +1063 +3588 +5220 +1135 +3588 +2198 +435 +1210 +3551 +1161 +1437 +599 +3588 +435 +2673 +575 +3588 +3551 +3588 +435 +686 +3767 +2198 +3588 +435 +3428 +5537 +1437 +1096 +435 +2087 +1161 +1437 +599 +3588 +435 +1658 +1510 +575 +3588 +3551 +3588 +3361 +1510 +846 +3428 +1096 +435 +2087 +5620 +80 +1473 +2532 +4771 +2289 +3588 +3551 +1223 +3588 +4983 +3588 +5547 +1519 +3588 +1096 +4771 +2087 +3588 +1537 +3498 +1453 +2443 +2592 +3588 +2316 +1063 +3753 +1510 +1722 +3588 +4561 +3588 +3804 +3588 +266 +3588 +1223 +3588 +3551 +1754 +1722 +3588 +3196 +1473 +1519 +3588 +2592 +3588 +2288 +1161 +3570 +2673 +575 +3588 +3551 +599 +1722 +3739 +2722 +5620 +1398 +1473 +1722 +2538 +4151 +2532 +3756 +3821 +1121 +3767 +5101 +2046 +3588 +3551 +266 +3361 +1096 +235 +3588 +266 +3756 +1097 +1487 +3361 +1223 +3551 +1063 +5037 +3588 +1939 +3756 +1492 +1487 +3361 +3588 +3551 +3004 +3756 +1937 +1161 +874 +2983 +3588 +266 +1223 +3588 +1785 +2716 +1722 +1473 +3956 +1939 +1063 +5565 +3551 +266 +3498 +1161 +1473 +2198 +5565 +3551 +4218 +1161 +2064 +3588 +1785 +3588 +266 +326 +1161 +1473 +599 +2532 +2147 +1473 +3588 +1785 +3588 +1519 +2222 +3778 +1519 +2288 +1063 +3588 +266 +874 +2983 +1223 +3588 +1785 +1818 +1473 +2532 +1223 +846 +615 +5620 +3303 +3588 +3551 +40 +2532 +3588 +1785 +40 +2532 +1342 +2532 +18 +3767 +3588 +18 +1473 +1096 +2288 +3361 +1096 +235 +3588 +266 +2443 +5316 +266 +1223 +3588 +18 +1473 +2716 +2288 +2443 +1096 +2596 +5236 +268 +3588 +266 +1223 +3588 +1785 +1063 +1492 +3754 +3588 +3551 +4152 +1510 +1161 +1473 +4560 +1510 +4097 +5259 +3588 +266 +1063 +3739 +2716 +3756 +1097 +1063 +3756 +3739 +2309 +3778 +4238 +235 +3739 +3404 +3778 +4160 +1161 +1487 +3739 +3756 +2309 +3778 +4160 +4852 +3588 +3551 +3754 +2570 +1161 +3570 +3765 +1473 +2716 +846 +235 +3588 +1774 +1722 +1473 +266 +1063 +1492 +3754 +3756 +3611 +1722 +1473 +3778 +1510 +1722 +3588 +4561 +1473 +18 +1063 +3588 +2309 +3873 +1473 +1161 +3588 +2716 +3588 +2570 +3756 +1063 +3756 +3739 +2309 +18 +4160 +235 +3739 +3756 +2309 +2556 +3778 +4238 +1161 +1487 +3739 +3756 +2309 +3778 +1473 +4160 +3765 +1473 +2716 +846 +235 +3588 +3611 +1722 +1473 +266 +686 +2147 +3588 +3551 +1473 +3588 +2309 +4160 +3588 +2570 +3754 +1473 +3588 +2556 +3873 +1063 +4913 +3588 +3551 +3588 +2316 +2596 +3588 +2080 +444 +1161 +991 +2087 +3551 +1722 +3588 +3196 +1473 +497 +3588 +3551 +3588 +3563 +1473 +2532 +163 +1473 +1722 +3588 +3551 +3588 +266 +3588 +1510 +1722 +3588 +3196 +1473 +5005 +444 +1473 +5101 +1473 +4506 +1537 +3588 +4983 +3588 +2288 +3778 +5485 +3588 +2316 +1223 +2424 +5547 +3588 +2962 +1473 +686 +3767 +3303 +846 +1473 +3588 +3563 +1398 +3551 +2316 +1161 +3588 +4561 +3551 +266 +686 +3762 +2631 +3568 +3588 +1722 +5547 +2424 +1063 +3588 +3551 +3588 +4151 +3588 +2222 +1722 +5547 +2424 +1659 +4771 +575 +3588 +3551 +3588 +266 +2532 +3588 +2288 +1063 +3588 +102 +3588 +3551 +1722 +3739 +770 +1223 +3588 +4561 +3588 +2316 +3588 +1438 +5207 +3992 +1722 +3667 +4561 +266 +2532 +4012 +266 +2632 +3588 +266 +1722 +3588 +4561 +2443 +3588 +1345 +3588 +3551 +4137 +1722 +1473 +3588 +4043 +3361 +2596 +4561 +235 +2596 +4151 +1063 +3588 +2596 +4561 +1510 +3588 +3588 +4561 +5426 +1161 +3588 +2596 +4151 +3588 +3588 +4151 +1063 +3588 +5427 +3588 +4561 +2288 +1161 +3588 +5427 +3588 +4151 +2222 +2532 +1515 +1360 +3588 +5427 +3588 +4561 +2189 +1519 +2316 +1063 +3588 +3551 +3588 +2316 +3756 +5293 +1063 +3761 +1410 +1161 +3588 +1722 +4561 +1510 +2316 +700 +3756 +1410 +1161 +4771 +1510 +3756 +1722 +4561 +235 +1722 +4151 +1512 +4151 +2316 +3611 +1722 +4771 +1161 +1487 +5100 +4151 +5547 +3756 +2192 +3778 +3756 +1510 +846 +1161 +1487 +5547 +1722 +4771 +3303 +3588 +4983 +3498 +1223 +266 +1161 +3588 +4151 +2222 +1223 +1343 +1161 +1487 +3588 +4151 +3588 +1453 +3588 +2424 +1537 +3498 +3611 +1722 +4771 +3588 +1453 +1537 +3498 +5547 +2424 +2227 +2532 +3588 +2349 +4983 +4771 +1223 +3588 +1774 +1722 +4771 +846 +4151 +686 +3767 +80 +3781 +1510 +3756 +3588 +4561 +3588 +2596 +4561 +2198 +1063 +1487 +2596 +4561 +2198 +3195 +599 +1161 +1487 +4151 +3588 +4234 +3588 +4983 +2289 +2198 +1063 +3745 +4151 +2316 +71 +3778 +5207 +2316 +1510 +1063 +3756 +2983 +4151 +1397 +3825 +1519 +5401 +235 +2983 +4151 +5206 +1722 +3739 +2896 +5 +3588 +3962 +846 +3588 +4151 +4828 +3588 +4151 +1473 +3754 +1510 +5043 +2316 +1161 +1487 +5043 +2532 +2818 +3303 +2818 +2316 +1161 +4789 +5547 +1512 +4841 +2443 +2532 +4888 +1063 +3049 +3754 +3756 +514 +3588 +3804 +3588 +3568 +2540 +4314 +3588 +3195 +601 +1519 +1473 +1391 +1063 +3588 +603 +3588 +2937 +3588 +602 +3588 +5207 +3588 +2316 +553 +1063 +3588 +3153 +3588 +2937 +5293 +3756 +1635 +235 +1223 +3588 +5293 +1909 +1680 +1360 +2532 +846 +3588 +2937 +1659 +575 +3588 +1397 +3588 +5356 +1519 +3588 +1657 +3588 +1391 +3588 +5043 +3588 +2316 +1063 +1492 +3754 +3956 +3588 +2937 +4959 +2532 +4944 +891 +3588 +3568 +1161 +3756 +3440 +235 +2532 +846 +3588 +536 +3588 +4151 +2192 +1473 +2532 +846 +1722 +1438 +4727 +553 +5206 +3588 +629 +3588 +4983 +1473 +1063 +3588 +1680 +4982 +1161 +1680 +991 +3756 +1510 +1680 +1063 +3739 +991 +5100 +5101 +1679 +1161 +1487 +3739 +3756 +991 +1679 +1223 +5281 +553 +1161 +5615 +2532 +3588 +4151 +4878 +3588 +769 +1473 +1063 +3588 +5101 +4336 +2526 +1163 +3756 +1492 +235 +846 +3588 +4151 +5241 +4726 +215 +1161 +3588 +2045 +3588 +2588 +1492 +5101 +3588 +5427 +3588 +4151 +3754 +2596 +2316 +1793 +5228 +40 +1161 +1492 +3754 +3588 +25 +3588 +2316 +3956 +4903 +1519 +18 +3588 +2596 +4286 +2822 +1510 +3754 +3739 +4267 +2532 +4309 +4832 +3588 +1504 +3588 +5207 +846 +1519 +3588 +1510 +846 +4416 +1722 +4183 +80 +1161 +3739 +4309 +3778 +2532 +2564 +2532 +3739 +2564 +3778 +2532 +1344 +1161 +3739 +1344 +3778 +2532 +1392 +3767 +5101 +2046 +4314 +3778 +1487 +3588 +2316 +5228 +1473 +5101 +2596 +1473 +1065 +3739 +3588 +2398 +5207 +3756 +5339 +235 +5228 +1473 +3956 +3860 +846 +4459 +3780 +2532 +4862 +846 +3588 +3956 +1473 +5483 +5101 +1458 +2596 +1588 +2316 +2316 +3588 +1344 +5101 +3588 +2632 +5547 +2424 +3588 +599 +1161 +3123 +1453 +3739 +1510 +1722 +1188 +3588 +2316 +3739 +2532 +1793 +5228 +1473 +5101 +1473 +5563 +575 +3588 +26 +3588 +5547 +2347 +2228 +4730 +2228 +1375 +2228 +3042 +2228 +1132 +2228 +2794 +2228 +3162 +2531 +1125 +3754 +1752 +4771 +2289 +3650 +3588 +2250 +3049 +5613 +4263 +4967 +235 +1722 +3778 +3956 +5245 +1223 +3588 +25 +1473 +1063 +3982 +3754 +3777 +2288 +3777 +2222 +3777 +32 +3777 +746 +3777 +1764 +3777 +3195 +3777 +1411 +3777 +5313 +3777 +899 +3777 +5100 +2937 +2087 +1410 +1473 +5563 +575 +3588 +26 +3588 +2316 +3588 +1722 +5547 +2424 +3588 +2962 +1473 +225 +3004 +1722 +5547 +3756 +5574 +4828 +1473 +3588 +4893 +1473 +1722 +4151 +40 +3754 +3077 +1473 +1510 +3173 +2532 +88 +3601 +3588 +2588 +1473 +1063 +2172 +846 +1473 +331 +1510 +575 +3588 +5547 +5228 +3588 +80 +1473 +3588 +4773 +1473 +2596 +4561 +3748 +1510 +2475 +3739 +3588 +5206 +2532 +3588 +1391 +2532 +3588 +1242 +2532 +3588 +3548 +2532 +3588 +2999 +2532 +3588 +1860 +3739 +3588 +3962 +2532 +1537 +3739 +3588 +5547 +3588 +2596 +4561 +3588 +1510 +1909 +3956 +2316 +2128 +1519 +3588 +165 +281 +1161 +3756 +3634 +3754 +1601 +3588 +3056 +3588 +2316 +1063 +3756 +3956 +3588 +1537 +2474 +3778 +2474 +3761 +3754 +1510 +4690 +11 +3956 +5043 +235 +1722 +2464 +2564 +4771 +4690 +3778 +1510 +3756 +3588 +5043 +3588 +4561 +3778 +5043 +3588 +2316 +235 +3588 +5043 +3588 +1860 +3049 +1519 +4690 +1063 +1860 +3588 +3056 +3778 +2596 +3588 +2540 +3778 +2064 +2532 +1510 +3588 +4564 +5207 +1161 +3756 +3440 +235 +2532 +4479 +2845 +2192 +1537 +1520 +2464 +3588 +3962 +1473 +1063 +3380 +1080 +3366 +4238 +5100 +18 +2228 +5337 +2443 +3588 +2596 +1589 +4286 +3588 +2316 +3306 +3756 +1537 +2041 +235 +1537 +3588 +2564 +2046 +846 +3754 +3588 +3173 +1398 +3588 +1640 +2509 +1125 +3588 +2384 +25 +1161 +3588 +2269 +3404 +3767 +5101 +2046 +3361 +93 +3844 +3588 +2316 +3361 +1096 +1063 +3588 +3475 +3004 +1653 +302 +3739 +1653 +2532 +3627 +302 +3739 +3627 +686 +3767 +3756 +3588 +2309 +3761 +3588 +5143 +235 +3588 +1653 +2316 +1063 +3004 +3588 +1124 +3588 +5328 +3754 +1519 +846 +3778 +1825 +4771 +3704 +1731 +1722 +4771 +3588 +1411 +1473 +2532 +3704 +1229 +3588 +3686 +1473 +1722 +3956 +3588 +1093 +686 +3767 +3739 +2309 +1653 +1161 +3739 +2309 +4645 +3767 +2046 +1473 +5101 +2089 +3201 +1063 +3588 +1013 +846 +5101 +436 +5599 +444 +3304 +5101 +1510 +4771 +3588 +470 +3588 +2316 +3361 +2046 +3588 +4110 +3588 +4111 +5101 +1473 +4160 +3779 +2228 +3756 +2192 +3588 +2763 +1849 +3588 +4081 +1537 +3588 +846 +5445 +4160 +4632 +3303 +3739 +1519 +5092 +1161 +3739 +1519 +819 +1161 +1487 +3588 +2316 +2309 +1731 +3588 +3709 +2532 +1107 +3588 +1415 +846 +5342 +1722 +4183 +3115 +4632 +3709 +2675 +1519 +684 +2532 +2443 +1107 +3588 +4149 +3588 +1391 +846 +1909 +4632 +1656 +3739 +4282 +1519 +1391 +3739 +2532 +2564 +1473 +3756 +3440 +1537 +2453 +235 +2532 +1537 +1484 +5613 +2532 +1722 +3588 +5617 +3004 +2564 +3588 +3756 +2992 +1473 +2992 +1473 +2532 +3588 +3756 +25 +25 +2532 +1510 +1722 +3588 +5117 +3757 +2046 +846 +3756 +2992 +1473 +4771 +1563 +2564 +5207 +2316 +2198 +1161 +2268 +2896 +5228 +3588 +2474 +1437 +1510 +3588 +706 +3588 +5207 +2474 +5613 +3588 +285 +3588 +2281 +3588 +5275 +4982 +1063 +3056 +4931 +2532 +4932 +4160 +2962 +1909 +3588 +1093 +2532 +2531 +4302 +2268 +1487 +3361 +2962 +4519 +1459 +1473 +4690 +302 +5613 +4670 +1096 +2532 +302 +5613 +1116 +3666 +3767 +5101 +2046 +3754 +1484 +3588 +3361 +1377 +1343 +2638 +1343 +1161 +1343 +3588 +1537 +4102 +1161 +2474 +1377 +3551 +1343 +1519 +3551 +3756 +5348 +1223 +5101 +3754 +3756 +1537 +4102 +235 +5613 +1537 +2041 +4350 +3588 +3037 +3588 +4348 +2531 +1125 +3708 +5087 +1722 +4622 +3037 +4348 +2532 +4073 +4625 +2532 +3588 +4100 +1909 +846 +3756 +2617 +80 +3303 +3588 +2107 +3588 +1699 +2588 +2532 +3588 +1162 +4314 +3588 +2316 +5228 +846 +1519 +4991 +1063 +3140 +846 +3754 +2205 +2316 +2192 +235 +3756 +2596 +1922 +1063 +50 +3588 +3588 +2316 +1343 +2532 +3588 +2398 +2476 +2212 +3588 +1343 +3588 +2316 +3756 +5293 +1063 +5056 +3551 +5547 +1519 +1343 +3956 +3588 +4100 +1063 +3475 +1125 +3754 +3588 +1343 +3588 +1537 +3551 +3588 +4160 +444 +2198 +1722 +846 +1161 +3588 +1537 +4102 +1343 +3779 +3004 +3361 +3004 +1722 +3588 +2588 +4771 +5101 +305 +1519 +3588 +3772 +3778 +1510 +5547 +2609 +2228 +5101 +2597 +1519 +3588 +12 +3778 +1510 +5547 +1537 +3498 +321 +235 +5101 +3004 +1451 +4771 +3588 +4487 +1510 +1722 +3588 +4750 +4771 +2532 +1722 +3588 +2588 +4771 +3778 +1510 +3588 +4487 +3588 +4102 +3739 +2784 +3754 +1437 +3670 +1722 +3588 +4750 +4771 +2962 +2424 +2532 +4100 +1722 +3588 +2588 +4771 +3754 +3588 +2316 +846 +1453 +1537 +3498 +4982 +1063 +2588 +4100 +1519 +1343 +1161 +4750 +3670 +1519 +4991 +1063 +3004 +3588 +1124 +3956 +3588 +4100 +1909 +846 +3756 +2617 +1063 +3756 +1510 +1293 +5037 +2453 +2532 +1672 +1063 +3588 +846 +2962 +3956 +4147 +1519 +3956 +3588 +1941 +846 +1063 +3956 +302 +3739 +1941 +3588 +3686 +2962 +4982 +3767 +4459 +1941 +1519 +3739 +3756 +4100 +1161 +4459 +4100 +3739 +3756 +191 +1161 +4459 +191 +5565 +2784 +1161 +4459 +2784 +1437 +3361 +649 +2509 +1125 +5613 +5611 +3588 +4228 +3588 +2097 +18 +235 +3756 +3956 +5219 +3588 +2098 +1063 +2268 +3004 +2962 +5101 +4100 +3588 +189 +1473 +686 +3588 +4102 +1537 +189 +1161 +3588 +189 +1223 +4487 +5547 +235 +3004 +3361 +3756 +191 +3304 +1519 +3956 +3588 +1093 +1831 +3588 +5353 +846 +2532 +1519 +3588 +4009 +3588 +3625 +3588 +4487 +846 +235 +3004 +3361 +2474 +3756 +1097 +4413 +3475 +3004 +1473 +3863 +4771 +1909 +3756 +1484 +1909 +1484 +801 +3949 +4771 +1161 +2268 +662 +2532 +3004 +2147 +3588 +1473 +3361 +2212 +1717 +1096 +3588 +1473 +3361 +1905 +1161 +4314 +3588 +2474 +3004 +3650 +3588 +2250 +1600 +3588 +5495 +1473 +4314 +2992 +544 +2532 +483 +3767 +3004 +3361 +683 +3588 +2316 +3588 +2992 +846 +3361 +1096 +1063 +2532 +1473 +2475 +1510 +1537 +4690 +11 +5443 +958 +3756 +683 +3588 +2316 +3588 +2992 +846 +3739 +4267 +2228 +3756 +1492 +1722 +2243 +5101 +3004 +3588 +1124 +5613 +1793 +3588 +2316 +2596 +3588 +2474 +2962 +3588 +4396 +4771 +615 +3588 +2379 +4771 +2679 +2504 +5275 +3441 +2532 +2212 +3588 +5590 +1473 +235 +5101 +3004 +846 +3588 +5538 +2641 +1683 +2035 +435 +3748 +3756 +2578 +1119 +3588 +896 +3767 +3779 +2532 +1722 +3588 +3568 +2540 +3005 +2596 +1589 +5485 +1096 +1161 +1487 +5485 +3765 +1537 +2041 +1893 +3588 +5485 +3765 +1096 +5485 +3767 +5101 +3739 +1934 +2474 +3778 +3756 +2013 +1161 +3588 +1589 +2013 +1161 +3588 +3062 +4456 +2509 +1125 +1325 +846 +3588 +2316 +4151 +2659 +3788 +3588 +3361 +991 +2532 +3775 +3588 +3361 +191 +2193 +3588 +4594 +2250 +2532 +1138 +3004 +1096 +3588 +5132 +846 +1519 +3803 +2532 +1519 +2339 +2532 +1519 +4625 +2532 +1519 +468 +846 +4654 +3588 +3788 +846 +3588 +3361 +991 +2532 +3588 +3577 +846 +1223 +3956 +4781 +3767 +3004 +3361 +4417 +2443 +4098 +3361 +1096 +235 +3588 +846 +3900 +3588 +4991 +3588 +1484 +1519 +3588 +3863 +846 +1161 +1487 +3588 +3900 +846 +4149 +2889 +2532 +3588 +2275 +846 +4149 +1484 +4214 +3123 +3588 +4138 +846 +1161 +3004 +4771 +3588 +1484 +3303 +3767 +1909 +3745 +1510 +1473 +1484 +652 +3588 +1248 +1473 +1392 +1487 +4458 +3863 +1473 +3588 +4561 +2532 +4982 +5100 +1537 +846 +1063 +1487 +3588 +580 +846 +2643 +2889 +5101 +3588 +4356 +1487 +3361 +2222 +1537 +3498 +1161 +1487 +3588 +536 +40 +2532 +3588 +5445 +2532 +1487 +3588 +4491 +40 +2532 +3588 +2798 +1161 +1487 +5100 +3588 +2798 +1575 +1161 +4771 +65 +1510 +1461 +1722 +846 +2532 +4791 +3588 +4491 +3588 +4096 +3588 +1636 +1096 +3361 +2620 +3588 +2798 +1161 +1487 +2620 +3756 +4771 +3588 +4491 +941 +235 +3588 +4491 +4771 +3767 +2046 +1575 +2798 +2443 +1473 +1461 +2573 +3588 +570 +1575 +1161 +4771 +3588 +4102 +2476 +3361 +5308 +5426 +235 +5399 +1063 +1487 +3588 +2316 +3588 +2596 +5449 +2798 +3756 +5339 +3761 +4771 +5339 +3767 +3708 +5544 +2532 +663 +2316 +3303 +1909 +3588 +4098 +663 +1161 +1909 +4771 +5544 +2316 +1437 +1961 +3588 +5544 +1893 +2532 +4771 +1581 +1161 +2548 +1437 +3361 +1961 +3588 +570 +1461 +1063 +1415 +1510 +3588 +2316 +3825 +1461 +846 +1063 +1487 +4771 +1537 +3588 +2596 +5449 +65 +1581 +2532 +3844 +5449 +1461 +1519 +2565 +4214 +3123 +3778 +3588 +2596 +5449 +1461 +3588 +2398 +1636 +1063 +80 +3756 +2309 +4771 +50 +3588 +3466 +3778 +2443 +3361 +1510 +1722 +1438 +5429 +3754 +4457 +575 +3313 +3588 +2474 +1096 +891 +3739 +3588 +4138 +3588 +1484 +1525 +2532 +3779 +3956 +2474 +4982 +2531 +1125 +2240 +1537 +4622 +3588 +4506 +654 +763 +575 +2384 +2532 +3778 +846 +3588 +3844 +1473 +1242 +3752 +851 +3588 +266 +846 +3303 +2596 +3588 +2098 +2190 +1223 +4771 +1161 +2596 +3588 +1589 +27 +1223 +3588 +3962 +1063 +278 +3588 +5486 +2532 +3588 +2821 +3588 +2316 +1063 +5618 +4771 +4218 +544 +3588 +2316 +1161 +3568 +1653 +3588 +3778 +543 +3779 +2532 +3778 +3568 +544 +3588 +5212 +1656 +2443 +2532 +846 +3568 +1653 +1063 +4788 +3588 +2316 +3588 +3956 +1519 +543 +2443 +3588 +3956 +1653 +5599 +899 +4149 +2532 +4678 +2532 +1108 +2316 +5613 +419 +3588 +2917 +846 +2532 +421 +3588 +3598 +846 +1063 +5101 +1097 +3563 +2962 +2228 +5101 +4825 +846 +1096 +2228 +5101 +4272 +846 +2532 +467 +846 +3754 +1537 +846 +2532 +1223 +846 +2532 +1519 +846 +3588 +3956 +846 +3588 +1391 +1519 +3588 +165 +281 +3767 +80 +3870 +1223 +3588 +3628 +3588 +2316 +4771 +3936 +3588 +4983 +4771 +2378 +2198 +40 +3588 +2316 +2101 +3588 +3050 +2999 +4771 +2532 +3361 +4964 +3588 +165 +3778 +235 +3339 +3588 +342 +3588 +3563 +1519 +3588 +1381 +4771 +5101 +3588 +2307 +3588 +2316 +3588 +18 +2532 +2101 +2532 +5046 +1063 +3004 +1223 +3588 +5485 +3588 +1325 +1473 +3956 +3588 +1510 +1722 +4771 +3361 +5252 +3844 +3739 +5426 +1163 +235 +5426 +1519 +3588 +4993 +5613 +1538 +3588 +2316 +3307 +3358 +4102 +1063 +2509 +1722 +1520 +4983 +4183 +3196 +2192 +1161 +3588 +3196 +3956 +3756 +3588 +846 +4234 +2192 +3779 +3588 +4183 +1520 +4983 +1510 +1722 +5547 +1161 +3588 +2596 +1520 +240 +3196 +1161 +2192 +5486 +1313 +2596 +3588 +5485 +3588 +1325 +1473 +1535 +4394 +2596 +3588 +356 +3588 +4102 +1535 +1248 +1722 +3588 +1248 +1535 +3588 +1321 +1722 +3588 +1319 +1535 +3588 +3870 +1722 +3588 +3874 +3588 +3330 +1722 +572 +3588 +4291 +1722 +4710 +3588 +1653 +1722 +2432 +3588 +26 +505 +655 +3588 +4190 +2853 +3588 +18 +3588 +5360 +1519 +240 +5387 +3588 +5092 +240 +4285 +3588 +4710 +3361 +3636 +3588 +4151 +2204 +3588 +2962 +1398 +3588 +1680 +5463 +3588 +2347 +5278 +3588 +4335 +4342 +3588 +5532 +3588 +40 +2841 +3588 +5381 +1377 +2127 +3588 +1377 +2127 +2532 +3361 +2672 +5463 +3326 +5463 +2799 +3326 +2799 +3588 +846 +1519 +240 +5426 +3361 +3588 +5308 +5426 +235 +3588 +5011 +4879 +3361 +1096 +5429 +3844 +1438 +3367 +2556 +473 +2556 +591 +4306 +2570 +1799 +3956 +444 +1487 +1415 +3588 +1537 +4771 +3326 +3956 +444 +1514 +27 +3361 +1438 +1556 +235 +1325 +5117 +3588 +3709 +1063 +1125 +1473 +1557 +1473 +467 +3004 +2962 +235 +1437 +3983 +3588 +2190 +4771 +5595 +846 +1437 +1372 +4222 +846 +1063 +3778 +4160 +440 +4442 +4987 +1909 +3588 +2776 +846 +3361 +3528 +5259 +3588 +2556 +235 +3528 +1722 +3588 +18 +3588 +2556 +3956 +5590 +1849 +5242 +5293 +1063 +3756 +1510 +1849 +1487 +3361 +5259 +2316 +1161 +3588 +1510 +5259 +2316 +5021 +1510 +5620 +3588 +498 +3588 +1849 +3588 +3588 +2316 +1296 +436 +1161 +3588 +436 +1438 +2917 +2983 +1063 +3588 +758 +1510 +5401 +3756 +3588 +18 +2041 +235 +3588 +2556 +1161 +2309 +3361 +5399 +3588 +1849 +3588 +18 +4160 +2532 +2192 +1868 +1537 +846 +1063 +2316 +1249 +1510 +4771 +1519 +3588 +18 +1161 +1437 +3588 +2556 +4160 +5399 +1063 +3756 +1500 +3588 +3162 +5409 +1063 +2316 +1249 +1510 +1558 +1519 +3709 +3588 +3588 +2556 +4238 +1352 +318 +5293 +3756 +3440 +1223 +3588 +3709 +235 +2532 +1223 +3588 +4893 +1063 +1223 +3778 +2532 +5411 +5055 +1063 +3011 +2316 +1510 +1519 +846 +3778 +4342 +591 +3956 +3588 +3782 +3588 +3588 +5411 +3588 +5411 +3588 +3588 +5056 +3588 +5056 +3588 +3588 +5401 +3588 +5401 +3588 +3588 +5092 +3588 +5092 +3367 +3367 +3784 +1487 +3361 +3588 +240 +25 +1063 +3588 +25 +3588 +2087 +3551 +4137 +1063 +3588 +3756 +3431 +3756 +5407 +3756 +2813 +3756 +1937 +2532 +1487 +5100 +2087 +1785 +1722 +3588 +3056 +3778 +346 +1722 +3588 +25 +3588 +4139 +4771 +5613 +4572 +3588 +26 +3588 +4139 +2556 +3756 +2038 +3767 +4138 +3551 +3588 +26 +2532 +1492 +3778 +3588 +2540 +3754 +5610 +2235 +4771 +1537 +5258 +1453 +1063 +3568 +1452 +1473 +3588 +4991 +2228 +3753 +4100 +3588 +3571 +4298 +1161 +3588 +2250 +1448 +3767 +659 +3588 +2041 +3588 +4655 +1161 +1746 +3588 +3696 +3588 +5457 +5613 +1722 +2250 +2156 +4043 +3361 +2970 +2532 +3178 +3361 +2845 +2532 +766 +3361 +2054 +2532 +2205 +235 +1746 +3588 +2962 +2424 +5547 +2532 +3588 +4561 +4307 +3361 +4160 +1519 +1939 +1161 +3588 +770 +3588 +4102 +4355 +3361 +1519 +1253 +1261 +3303 +3739 +4100 +5315 +3956 +1161 +3588 +770 +3001 +2068 +3588 +2068 +3588 +3361 +2068 +3361 +1848 +1161 +3588 +3361 +2068 +3588 +2068 +3361 +2919 +1063 +3588 +2316 +846 +4355 +4771 +5101 +1510 +3588 +2919 +245 +3610 +3588 +2398 +2962 +4739 +2228 +4098 +1161 +2476 +1063 +1414 +3588 +2962 +2476 +846 +1063 +3303 +3739 +2919 +2250 +3844 +2250 +1161 +3739 +2919 +3956 +2250 +1538 +1722 +3588 +2398 +3563 +4135 +3588 +5426 +3588 +2250 +2962 +5426 +2532 +3588 +2068 +2962 +2068 +1063 +2168 +3588 +2316 +2532 +3588 +3361 +2068 +2962 +3756 +2068 +2532 +2168 +3588 +2316 +1063 +3762 +1473 +1438 +2198 +2532 +3762 +1438 +599 +1063 +5037 +1437 +2198 +3588 +2962 +2198 +5037 +1437 +599 +3588 +2962 +599 +3767 +5037 +1437 +2198 +5037 +1437 +599 +3588 +2962 +1510 +1063 +1519 +3778 +5547 +599 +2532 +2198 +2443 +2532 +3498 +2532 +2198 +2961 +1161 +4771 +5101 +2919 +3588 +80 +4771 +2228 +2532 +4771 +5101 +1848 +3588 +80 +4771 +1063 +3956 +3936 +3588 +968 +3588 +2316 +1063 +1125 +2198 +1473 +3004 +2962 +3754 +1473 +2578 +3956 +1119 +2532 +3956 +1100 +1843 +3588 +2316 +686 +3767 +1538 +1473 +4012 +1438 +3056 +1325 +3588 +2316 +3767 +3371 +240 +2919 +235 +3778 +2919 +3123 +3588 +3361 +5087 +3588 +80 +4348 +2228 +4625 +1492 +2532 +3982 +1722 +2962 +2424 +3754 +3762 +2839 +1223 +1438 +1487 +3361 +3588 +3049 +5100 +2839 +1510 +1565 +2839 +1063 +1487 +1223 +1033 +3588 +80 +4771 +3076 +3765 +2596 +26 +4043 +3361 +3588 +1033 +4771 +1565 +622 +5228 +3739 +5547 +599 +3767 +3361 +987 +4771 +3588 +18 +1063 +3756 +1510 +3588 +932 +3588 +2316 +1035 +2532 +4213 +235 +1343 +2532 +1515 +2532 +5479 +1722 +4151 +40 +1063 +3588 +1722 +3778 +1398 +3588 +5547 +2101 +3588 +2316 +2532 +1384 +3588 +444 +686 +3767 +1377 +3588 +3588 +1515 +2532 +3588 +3588 +3619 +3588 +1519 +240 +3361 +1752 +1033 +2647 +3588 +2041 +3588 +2316 +3303 +3956 +2513 +235 +2556 +3588 +444 +3588 +1223 +4348 +2068 +2570 +3588 +3361 +5315 +2907 +3366 +4095 +3631 +3366 +1722 +3739 +3588 +80 +4771 +4350 +4771 +4102 +3739 +2192 +2596 +4572 +2192 +1799 +3588 +2316 +3107 +3588 +3361 +2919 +1438 +1722 +3739 +1381 +1161 +1437 +3588 +1252 +5315 +2632 +3754 +3756 +1537 +4102 +1161 +3956 +3739 +3756 +1537 +4102 +266 +1510 +1161 +3784 +1473 +3588 +1415 +3588 +771 +3588 +102 +941 +2532 +3361 +1438 +700 +1538 +1473 +3588 +4139 +700 +1519 +3588 +18 +4314 +3619 +1063 +2532 +3588 +5547 +3756 +1438 +700 +235 +2531 +1125 +3588 +3680 +3588 +3679 +4771 +1968 +1909 +1473 +1063 +3745 +4270 +1519 +3588 +2251 +1319 +1125 +2443 +1223 +3588 +5281 +2532 +1223 +3588 +3874 +3588 +1124 +3588 +1680 +2192 +1161 +3588 +2316 +3588 +5281 +2532 +3588 +3874 +1325 +4771 +3588 +846 +5426 +1722 +240 +2596 +5547 +2424 +2443 +3661 +1722 +1520 +4750 +1392 +3588 +2316 +2532 +3962 +3588 +2962 +1473 +2424 +5547 +1352 +4355 +240 +2531 +2532 +3588 +5547 +4355 +1473 +1519 +1391 +3588 +2316 +1063 +3004 +5547 +1249 +4061 +1096 +5228 +225 +2316 +1519 +3588 +950 +3588 +1860 +3588 +3962 +1161 +3588 +1484 +5228 +1656 +1392 +3588 +2316 +2531 +1125 +1223 +3778 +1843 +4771 +1722 +1484 +2532 +3588 +3686 +4771 +5567 +2532 +3825 +3004 +1484 +2165 +3326 +3588 +2992 +846 +2532 +3825 +3956 +3588 +1484 +134 +3588 +2962 +2532 +1867 +846 +3956 +3588 +2992 +2532 +3825 +2268 +3004 +1510 +3588 +4491 +3588 +2421 +2532 +3588 +450 +757 +1484 +1909 +846 +1484 +1679 +1161 +3588 +2316 +3588 +1680 +4137 +4771 +3956 +5479 +2532 +1515 +1722 +3588 +4100 +1519 +3588 +4052 +4771 +1722 +3588 +1680 +1722 +1411 +4151 +40 +1161 +80 +1473 +3982 +2532 +846 +1473 +4012 +4771 +3754 +2532 +846 +3324 +1510 +19 +4137 +3956 +3588 +1108 +1410 +2532 +240 +3560 +1161 +5112 +1125 +4771 +575 +3313 +5613 +1878 +4771 +1223 +3588 +5485 +3588 +1325 +1473 +575 +3588 +2316 +1519 +3588 +1510 +1473 +3011 +5547 +2424 +1519 +3588 +1484 +2418 +3588 +2098 +3588 +2316 +2443 +1096 +3588 +4376 +3588 +1484 +2144 +37 +1722 +4151 +40 +3767 +2192 +3588 +2746 +1722 +5547 +2424 +3588 +4314 +3588 +2316 +1063 +3756 +5111 +2980 +5100 +3739 +3756 +2716 +5547 +1223 +1473 +1519 +5218 +1484 +3056 +2532 +2041 +1722 +1411 +4592 +2532 +5059 +1722 +1411 +4151 +40 +5620 +1473 +575 +2419 +2532 +2945 +3360 +3588 +2437 +4137 +3588 +2098 +3588 +5547 +1161 +3779 +5389 +2097 +3756 +3699 +3687 +5547 +2443 +3361 +1909 +245 +2310 +3618 +235 +2531 +1125 +3708 +3739 +3756 +312 +4012 +846 +2532 +3739 +3756 +191 +4920 +1352 +2532 +1465 +3588 +4183 +3588 +2064 +4314 +4771 +1161 +3570 +3371 +5117 +2192 +1722 +3588 +2824 +3778 +1161 +1974 +2192 +3588 +2064 +4314 +4771 +575 +2425 +2094 +5613 +302 +4198 +1519 +3588 +4681 +1063 +1679 +1279 +2300 +4771 +2532 +5259 +4771 +4311 +1563 +1437 +4771 +4412 +575 +3313 +1705 +1161 +3570 +4198 +1519 +2419 +1247 +3588 +40 +1063 +2106 +3109 +2532 +882 +2842 +5100 +4160 +1519 +3588 +4434 +3588 +40 +3588 +1722 +2419 +1063 +2106 +2532 +3781 +1510 +846 +1063 +1487 +3588 +4152 +846 +2841 +3588 +1484 +3784 +2532 +1722 +3588 +4559 +3008 +846 +3767 +3778 +2005 +2532 +4972 +846 +3588 +2590 +3778 +565 +1223 +4771 +1519 +4681 +1161 +1492 +3754 +2064 +4314 +4771 +1722 +4138 +2129 +5547 +2064 +1161 +80 +3870 +1223 +3588 +2962 +1473 +2424 +5547 +2532 +1223 +3588 +26 +3588 +4151 +4771 +4865 +1473 +1722 +3588 +4335 +5228 +1473 +4314 +3588 +2316 +2443 +4506 +575 +3588 +544 +1722 +3588 +2449 +2532 +3588 +1248 +1473 +3588 +1519 +2419 +2144 +3588 +40 +1096 +2443 +1722 +5479 +2064 +4314 +4771 +1223 +2307 +2316 +4875 +4771 +1161 +3588 +2316 +3588 +1515 +3326 +3956 +4771 +281 +1161 +4921 +4771 +5402 +3588 +79 +1473 +1510 +1249 +3588 +1577 +3588 +1722 +2747 +2443 +846 +4327 +1722 +2962 +516 +3588 +40 +2532 +3936 +846 +1722 +302 +3739 +4771 +5535 +4229 +1063 +2532 +846 +1096 +4368 +4183 +2532 +1473 +846 +782 +4251 +2532 +207 +3588 +4904 +1473 +1722 +5547 +2424 +3748 +5228 +3588 +5590 +1473 +3588 +1438 +5137 +5294 +3739 +2168 +3756 +1473 +3441 +235 +2532 +3956 +3588 +1577 +3588 +1484 +2532 +3588 +2596 +3624 +846 +1577 +782 +1866 +3588 +27 +1473 +3739 +1510 +536 +3588 +773 +1519 +5547 +782 +3137 +3748 +4183 +2872 +1519 +4771 +782 +408 +2532 +2458 +3588 +4773 +1473 +2532 +4869 +1473 +3748 +1510 +1978 +1722 +3588 +652 +3739 +2532 +4253 +1473 +1096 +1722 +5547 +782 +291 +3588 +27 +1473 +1722 +2962 +782 +3773 +3588 +4904 +1473 +1722 +5547 +2532 +4720 +3588 +27 +1473 +782 +559 +3588 +1384 +1722 +5547 +782 +3588 +1537 +3588 +711 +782 +2267 +3588 +4773 +1473 +782 +3588 +1537 +3588 +3488 +3588 +1510 +1722 +2962 +782 +5170 +2532 +5173 +3588 +2872 +1722 +2962 +782 +4069 +3588 +27 +3748 +4183 +2872 +1722 +2962 +782 +4504 +3588 +1588 +1722 +2962 +2532 +3588 +3384 +846 +2532 +1473 +782 +799 +5393 +2060 +3969 +2057 +2532 +3588 +4862 +846 +80 +782 +5378 +2532 +2456 +3517 +2532 +3588 +79 +846 +2532 +3652 +2532 +3588 +4862 +846 +3956 +40 +782 +240 +1722 +5370 +40 +782 +4771 +3588 +1577 +3956 +3588 +5547 +1161 +80 +3870 +4771 +4648 +3588 +3588 +1370 +2532 +3588 +4625 +3844 +3588 +1322 +3739 +4771 +3129 +4160 +2532 +1578 +575 +846 +1063 +3588 +5108 +3588 +2962 +1473 +5547 +3756 +1398 +235 +3588 +1438 +2836 +2532 +1223 +3588 +5542 +2532 +2129 +1818 +3588 +2588 +3588 +172 +1063 +3588 +4771 +5218 +1519 +3956 +864 +3767 +1909 +4771 +5463 +1161 +2309 +4771 +4680 +1510 +1519 +3588 +18 +1161 +185 +1519 +3588 +2556 +1161 +3588 +2316 +3588 +1515 +4937 +3588 +4567 +5259 +3588 +4228 +4771 +1722 +5034 +3588 +5485 +3588 +2962 +1473 +2424 +3326 +4771 +782 +4771 +5095 +3588 +4904 +1473 +2532 +3066 +2532 +2394 +2532 +4989 +3588 +4773 +1473 +782 +4771 +1473 +5060 +3588 +1125 +3588 +1992 +1722 +2962 +782 +4771 +1050 +3588 +3581 +1473 +2532 +3650 +3588 +1577 +782 +4771 +2037 +3588 +3623 +3588 +4172 +2532 +2890 +3588 +80 +1161 +3588 +1410 +4771 +4741 +2596 +3588 +2098 +1473 +2532 +3588 +2782 +2424 +5547 +2596 +602 +3466 +5550 +166 +4601 +1161 +5319 +3568 +5037 +1223 +1124 +4397 +2596 +2003 +3588 +166 +2316 +1519 +5218 +4102 +1519 +3956 +3588 +1484 +1107 +3441 +4680 +2316 +1223 +2424 +5547 +3739 +3588 +1391 +1519 +3588 +165 +3588 +165 +281 +3972 +2822 +652 +5547 +2424 +1223 +2307 +2316 +2532 +4988 +3588 +80 +3588 +1577 +3588 +2316 +3588 +1510 +1722 +2882 +37 +1722 +5547 +2424 +2822 +40 +4862 +3956 +3588 +1941 +3588 +3686 +3588 +2962 +1473 +2424 +5547 +1722 +3956 +5117 +846 +2532 +1473 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +2168 +3588 +2316 +3842 +4012 +4771 +1909 +3588 +5485 +3588 +2316 +3588 +1325 +4771 +1722 +5547 +2424 +3754 +1722 +3956 +4148 +1722 +846 +1722 +3956 +3056 +2532 +3956 +1108 +2531 +3588 +3142 +3588 +5547 +950 +1722 +4771 +5620 +4771 +3361 +5302 +1722 +3367 +5486 +553 +3588 +602 +3588 +2962 +1473 +2424 +5547 +3739 +2532 +950 +4771 +2193 +5056 +410 +1722 +3588 +2250 +3588 +2962 +1473 +2424 +5547 +4103 +3588 +2316 +1223 +3739 +2564 +1519 +2842 +3588 +5207 +846 +2424 +5547 +3588 +2962 +1473 +1161 +80 +3870 +4771 +1223 +3588 +3686 +3588 +2962 +1473 +2424 +5547 +2443 +3588 +846 +3004 +3956 +2532 +3361 +1510 +1722 +4771 +4978 +1161 +1510 +2675 +1722 +3588 +846 +3563 +2532 +1722 +3588 +846 +1106 +1063 +80 +1473 +1213 +1473 +4012 +4771 +5259 +3588 +5514 +3754 +2054 +1722 +4771 +1510 +1161 +3004 +3778 +3754 +1538 +4771 +3004 +3303 +1473 +1510 +3972 +1161 +1473 +625 +1161 +1473 +2786 +1161 +1473 +5547 +3307 +3588 +5547 +3361 +3972 +4717 +5228 +4771 +2228 +1519 +3588 +3686 +3972 +907 +2168 +3754 +3762 +4771 +907 +1487 +3361 +2921 +2532 +1050 +2443 +3361 +5100 +3004 +3754 +1519 +3588 +1699 +3686 +907 +1161 +907 +2532 +3588 +4734 +3624 +3063 +3756 +1492 +1487 +5100 +243 +907 +1063 +649 +1473 +5547 +3756 +907 +235 +2097 +3756 +1722 +4678 +3056 +2443 +3361 +2758 +3588 +4716 +3588 +5547 +1063 +3303 +3588 +3056 +3588 +3588 +4716 +3588 +622 +3472 +1510 +1161 +3588 +4982 +1473 +1411 +2316 +1510 +1063 +1125 +622 +3588 +4678 +3588 +4680 +2532 +3588 +4907 +3588 +4908 +114 +4226 +4680 +4226 +1122 +4226 +4804 +3588 +165 +3778 +3780 +3471 +3588 +2316 +3588 +4678 +3588 +2889 +1063 +1894 +1722 +3588 +4678 +3588 +2316 +3756 +1097 +3588 +2889 +1223 +3588 +4678 +3588 +2316 +2106 +3588 +2316 +1223 +3588 +3472 +3588 +2782 +4982 +3588 +4100 +1894 +2532 +2453 +4592 +154 +2532 +1672 +4678 +2212 +1161 +1473 +2784 +5547 +4717 +3303 +2453 +4625 +1161 +1484 +3472 +1161 +846 +3588 +2822 +5037 +2453 +2532 +1672 +5547 +2316 +1411 +2532 +2316 +4678 +3754 +3588 +3474 +3588 +2316 +4680 +3588 +444 +1510 +2532 +3588 +772 +3588 +2316 +2478 +3588 +444 +1063 +80 +991 +3588 +2821 +4771 +3754 +3756 +4183 +4680 +2596 +4561 +3756 +4183 +1415 +3756 +4183 +2104 +235 +3588 +3474 +3588 +2889 +1586 +3588 +2316 +2443 +2617 +3588 +4680 +2532 +3588 +772 +3588 +2889 +1586 +3588 +2316 +2443 +2617 +3588 +2478 +2532 +3588 +36 +3588 +2889 +2532 +3588 +1848 +3588 +3361 +1510 +1586 +3588 +2316 +2443 +3588 +1510 +2673 +3704 +3361 +2744 +3956 +4561 +1799 +3588 +2316 +1161 +1537 +846 +4771 +1510 +1722 +5547 +2424 +3739 +1096 +1473 +575 +2316 +4678 +5037 +1343 +2532 +38 +2532 +629 +2443 +2531 +1125 +3588 +2744 +1722 +2962 +2744 +80 +2504 +2064 +4314 +4771 +2064 +3756 +2596 +5247 +3056 +2228 +4678 +2605 +4771 +3588 +3142 +3588 +2316 +1063 +3756 +2919 +5100 +1492 +1722 +4771 +1487 +3361 +2424 +5547 +2532 +3778 +4717 +2504 +1722 +769 +2532 +1722 +5401 +2532 +1722 +5156 +4183 +1096 +4314 +4771 +2532 +3588 +3056 +1473 +2532 +3588 +2782 +1473 +3756 +1722 +3981 +4678 +3056 +235 +1722 +585 +4151 +2532 +1411 +2443 +3588 +4102 +4771 +1510 +3361 +1722 +4678 +444 +235 +1722 +1411 +2316 +1161 +4678 +2980 +1722 +3588 +5046 +1161 +3756 +4678 +3588 +165 +3778 +3761 +3588 +758 +3588 +165 +3778 +3588 +2673 +235 +2980 +2316 +4678 +1722 +3466 +3588 +613 +3739 +4309 +3588 +2316 +4253 +3588 +165 +1519 +1391 +1473 +3739 +3762 +3588 +758 +3588 +165 +3778 +1097 +1063 +1487 +1097 +302 +3756 +3588 +2962 +3588 +1391 +4717 +235 +2531 +1125 +3739 +3788 +3756 +3708 +2532 +3775 +3756 +191 +2532 +1909 +2588 +444 +3756 +305 +3745 +2090 +3588 +2316 +3588 +25 +846 +1063 +1473 +601 +3588 +2316 +1223 +3588 +4151 +1063 +3588 +4151 +3956 +2045 +2532 +3588 +899 +3588 +2316 +1063 +5101 +444 +1492 +3588 +3588 +444 +1487 +3361 +3588 +4151 +3588 +444 +3588 +1722 +846 +3779 +2532 +3588 +3588 +2316 +3762 +1097 +1487 +3361 +3588 +4151 +3588 +2316 +1161 +3756 +1473 +3588 +4151 +3588 +2889 +2983 +235 +3588 +4151 +3588 +1537 +3588 +2316 +2443 +1492 +3588 +5259 +3588 +2316 +5483 +1473 +3739 +2532 +2980 +3756 +1722 +1318 +442 +4678 +3056 +235 +1722 +1318 +4151 +4152 +4152 +4793 +1161 +5591 +444 +3756 +1209 +3588 +3588 +4151 +3588 +2316 +1063 +3472 +846 +1510 +2532 +3756 +1410 +1097 +3754 +4153 +350 +1161 +3588 +4152 +350 +3303 +3956 +1161 +846 +5259 +3762 +350 +1063 +5101 +1097 +3563 +2962 +3739 +4822 +846 +1161 +1473 +3563 +5547 +2192 +80 +2504 +1410 +3756 +2980 +4771 +5613 +4152 +235 +5613 +4560 +5613 +3516 +1722 +5547 +1051 +4771 +4222 +3756 +1033 +1063 +3768 +1410 +235 +3761 +2089 +3568 +1410 +1063 +2089 +4559 +1510 +1063 +3699 +1722 +4771 +2205 +2532 +2054 +3780 +4559 +1510 +2532 +2596 +444 +4043 +1063 +3752 +3303 +3004 +5100 +1473 +1510 +3972 +1161 +2087 +1473 +625 +3756 +444 +1510 +3767 +5101 +1510 +625 +1161 +5101 +1510 +3972 +1249 +1223 +3739 +4100 +5613 +2532 +1538 +3588 +2962 +1325 +1473 +5452 +625 +4222 +235 +3588 +2316 +837 +5620 +3777 +3588 +5452 +1510 +5100 +3777 +3588 +4222 +235 +3588 +837 +2316 +1161 +3588 +5452 +2532 +3588 +4222 +1520 +1510 +1161 +1538 +3588 +2398 +3408 +2983 +2596 +3588 +2398 +2873 +1063 +1510 +2316 +4904 +2316 +1091 +2316 +3619 +1510 +2596 +3588 +5485 +3588 +2316 +3588 +1325 +1473 +5613 +4680 +753 +2310 +5087 +1161 +243 +2026 +1161 +1538 +991 +4459 +2026 +1063 +3762 +1410 +2310 +243 +5087 +3844 +3588 +2749 +3739 +1510 +2424 +5547 +1161 +1487 +5100 +2026 +1909 +3588 +2310 +5553 +694 +3037 +5093 +3586 +5528 +2562 +1538 +3588 +2041 +5318 +1096 +1063 +3588 +2250 +1213 +3754 +1722 +4442 +601 +2532 +1538 +3588 +2041 +3697 +1510 +3588 +4442 +846 +1381 +1487 +3306 +5100 +3588 +2041 +3739 +2026 +3408 +2983 +1487 +5100 +3588 +2041 +2618 +2210 +1161 +846 +4982 +1161 +5613 +3779 +1223 +4442 +3756 +1492 +3754 +3485 +2316 +1510 +2532 +3588 +4151 +3588 +2316 +1722 +4771 +3611 +1487 +5100 +3588 +3485 +3588 +2316 +5351 +5351 +3778 +3588 +2316 +1063 +3588 +3485 +3588 +2316 +40 +1510 +3748 +1510 +4771 +3367 +1438 +1818 +1487 +5100 +1380 +4680 +1510 +1722 +4771 +1722 +3588 +165 +3778 +3474 +1096 +2443 +1096 +4680 +1063 +3588 +4678 +3588 +2889 +3778 +3472 +3844 +3588 +2316 +1510 +1063 +1125 +3588 +1405 +3588 +4680 +1722 +3588 +3834 +846 +2532 +3825 +2962 +1097 +3588 +1261 +3588 +4680 +3754 +1510 +3152 +5620 +3367 +2744 +1722 +444 +1063 +3956 +4771 +1510 +1535 +3972 +1535 +625 +1535 +2786 +1535 +2889 +1535 +2222 +1535 +2288 +1535 +1764 +1535 +3195 +3956 +4771 +1161 +4771 +5547 +1161 +5547 +2316 +3779 +1473 +3049 +444 +5613 +5257 +5547 +2532 +3623 +3466 +2316 +5602 +3063 +2212 +1722 +3588 +3623 +2443 +4103 +5100 +2147 +1161 +1473 +1519 +1646 +1510 +2443 +350 +5259 +4771 +2228 +5259 +442 +2250 +235 +3761 +1683 +350 +1063 +3762 +1683 +4894 +235 +3756 +1722 +3778 +1344 +1161 +3588 +350 +1473 +2962 +1510 +5620 +3361 +4253 +2540 +5100 +2919 +2193 +302 +2064 +3588 +2962 +3739 +2532 +5461 +3588 +2927 +3588 +4655 +2532 +5319 +3588 +1012 +3588 +2588 +2532 +5119 +3588 +1868 +1096 +1538 +575 +3588 +2316 +1161 +80 +3778 +3345 +1519 +1683 +2532 +625 +1223 +4771 +2443 +1722 +1473 +3129 +3588 +3361 +5228 +3739 +1125 +2443 +3361 +1520 +5228 +3588 +1520 +5448 +2596 +3588 +2087 +1063 +5101 +4771 +1252 +1161 +2192 +5101 +3739 +3756 +2983 +1161 +1487 +2532 +2983 +5101 +2744 +5613 +3361 +2983 +2235 +2880 +1510 +2235 +4147 +5565 +1473 +936 +2532 +3785 +1065 +936 +2443 +2532 +1473 +4771 +4821 +1063 +1380 +3588 +2316 +1473 +3588 +652 +2078 +584 +5613 +1935 +3754 +2302 +1096 +3588 +2889 +2532 +32 +2532 +444 +1473 +3474 +1223 +5547 +1161 +4771 +5429 +1722 +5547 +1473 +772 +1161 +4771 +2478 +4771 +1741 +1161 +1473 +820 +891 +3588 +737 +5610 +2532 +3983 +2532 +1372 +2532 +1130 +2532 +2852 +2532 +790 +2532 +2872 +2038 +3588 +2398 +5495 +3058 +2127 +1377 +430 +1426 +3870 +5613 +4027 +3588 +2889 +3956 +4067 +1096 +2193 +737 +3756 +1788 +4771 +1125 +3778 +235 +5613 +5043 +1473 +27 +3560 +1063 +1437 +3463 +3807 +2192 +1722 +5547 +235 +3756 +4183 +3962 +1063 +1722 +5547 +2424 +1223 +3588 +2098 +1473 +4771 +1080 +3767 +3870 +4771 +3402 +1473 +1096 +1223 +3778 +846 +3992 +4771 +5095 +3739 +1510 +1473 +5043 +27 +2532 +4103 +1722 +2962 +3739 +4771 +363 +3588 +3598 +1473 +3588 +1722 +5547 +2424 +2531 +3837 +1722 +3956 +1577 +1321 +1161 +5613 +3361 +2064 +1473 +4314 +4771 +5448 +5100 +1161 +2064 +5030 +4314 +4771 +1437 +3588 +2962 +2309 +2532 +1097 +3756 +3588 +3056 +3588 +5448 +235 +3588 +1411 +1063 +3756 +1722 +3056 +3588 +932 +3588 +2316 +235 +1722 +1411 +5101 +2309 +1722 +4464 +2064 +4314 +4771 +2228 +1722 +26 +5037 +4151 +4240 +3654 +191 +1722 +4771 +4202 +2532 +5108 +4202 +3748 +3761 +1722 +3588 +1484 +5620 +5100 +1135 +3588 +3962 +2192 +2532 +4771 +5448 +1510 +2532 +3780 +3123 +3996 +2443 +142 +1537 +3319 +4771 +3588 +3588 +2041 +3778 +4238 +1063 +1473 +3303 +548 +3588 +4983 +1161 +3918 +3588 +4151 +2235 +2919 +5613 +3918 +3588 +3779 +3778 +2716 +1722 +3588 +3686 +3588 +2962 +2424 +4863 +4771 +2532 +3588 +1699 +4151 +4862 +3588 +1411 +3588 +2962 +1473 +2424 +3860 +3588 +5108 +3588 +4567 +1519 +3639 +3588 +4561 +2443 +3588 +4151 +4982 +1722 +3588 +2250 +3588 +2962 +3756 +2570 +3588 +2745 +4771 +3756 +1492 +3754 +3398 +2219 +3650 +3588 +5445 +2220 +1571 +3588 +3820 +2219 +2443 +1510 +3501 +5445 +2531 +1510 +106 +1063 +2532 +3588 +3957 +1473 +5547 +2380 +5620 +1858 +3361 +1722 +2219 +3820 +3366 +1722 +2219 +2549 +2532 +4189 +235 +1722 +106 +1505 +2532 +225 +1125 +4771 +1722 +3588 +1992 +3361 +4874 +4205 +3756 +3843 +3588 +4205 +3588 +2889 +3778 +2228 +3588 +4123 +2532 +727 +2228 +1496 +1893 +686 +3784 +1537 +3588 +2889 +1831 +1161 +3568 +1125 +4771 +3361 +4874 +1437 +5100 +80 +3687 +1510 +4205 +2228 +4123 +2228 +1496 +2228 +3060 +2228 +3183 +2228 +727 +3588 +5108 +3366 +4906 +1063 +5101 +1473 +3588 +1854 +2919 +3780 +3588 +2080 +4771 +2919 +1161 +3588 +1854 +3588 +2316 +2919 +1808 +3588 +4190 +1537 +4771 +846 +5111 +5100 +4771 +4229 +2192 +4314 +3588 +2087 +2919 +1909 +3588 +94 +2532 +3780 +1909 +3588 +40 +2228 +3756 +1492 +3754 +3588 +40 +3588 +2889 +2919 +2532 +1487 +1722 +4771 +2919 +3588 +2889 +370 +1510 +2922 +1646 +3756 +1492 +3754 +32 +2919 +3386 +982 +3303 +3767 +1437 +982 +2922 +2192 +3588 +1848 +1722 +3588 +1577 +3778 +2523 +4314 +1791 +4771 +3004 +3756 +3779 +1762 +1722 +4771 +3762 +4680 +3739 +1410 +1252 +303 +3319 +3588 +80 +846 +235 +80 +3326 +80 +2919 +2532 +3778 +1909 +571 +3303 +3767 +2235 +3654 +2275 +4771 +1510 +3754 +2917 +2192 +3326 +1438 +1223 +5101 +3780 +3123 +91 +1223 +5101 +3780 +3123 +650 +235 +4771 +91 +2532 +650 +2532 +3778 +80 +2228 +3756 +1492 +3754 +94 +2316 +932 +3756 +2816 +3361 +4105 +3777 +4205 +3777 +1496 +3777 +3432 +3777 +3120 +3777 +733 +3777 +2812 +3777 +4123 +3756 +3183 +3756 +3060 +3756 +727 +932 +2316 +2816 +2532 +3778 +5100 +1510 +235 +628 +235 +37 +235 +1344 +1722 +3588 +3686 +3588 +2962 +2424 +5547 +2532 +1722 +3588 +4151 +3588 +2316 +1473 +3956 +1473 +1832 +235 +3756 +3956 +4851 +3956 +1473 +1832 +235 +3756 +1473 +1850 +5259 +5100 +3588 +1033 +3588 +2836 +2532 +3588 +2836 +3588 +1033 +1161 +3588 +2316 +2532 +3778 +2532 +3778 +2673 +1161 +3588 +4983 +3756 +3588 +4202 +235 +3588 +2962 +2532 +3588 +2962 +3588 +4983 +1161 +3588 +2316 +2532 +3588 +2962 +1453 +2532 +1473 +1825 +1223 +3588 +1411 +846 +3756 +1492 +3754 +3588 +4983 +4771 +3196 +5547 +1510 +3767 +142 +3588 +3196 +3588 +5547 +4160 +4204 +3196 +3361 +1096 +2228 +3756 +1492 +3754 +3588 +2853 +3588 +4204 +1520 +4983 +1510 +1063 +5346 +1510 +3588 +1417 +1519 +4561 +1520 +1161 +3588 +2853 +3588 +2962 +1520 +4151 +1510 +5343 +3588 +4202 +3956 +265 +1437 +3739 +4160 +444 +1622 +3588 +4983 +1510 +1161 +3588 +4203 +1519 +3588 +2398 +4983 +264 +2228 +3756 +1492 +3754 +3588 +4983 +4771 +3485 +3588 +1722 +4771 +40 +4151 +1510 +3739 +2192 +575 +2316 +2532 +3756 +1510 +1438 +1063 +59 +5092 +1211 +1392 +3588 +2316 +1722 +3588 +4983 +4771 +1161 +4012 +3739 +1125 +2570 +444 +1135 +3361 +680 +1161 +1223 +3588 +4202 +1538 +3588 +1438 +1135 +2192 +2532 +1538 +3588 +2398 +435 +2192 +3588 +1135 +3588 +435 +3588 +3782 +591 +1161 +3668 +2532 +3588 +1135 +3588 +435 +3588 +1135 +3588 +2398 +4983 +3756 +1850 +235 +3588 +435 +1161 +3668 +2532 +3588 +435 +3588 +2398 +4983 +3756 +1850 +235 +3588 +1135 +3361 +650 +240 +1487 +3385 +302 +1537 +4859 +4314 +2540 +2443 +4980 +3588 +4335 +2532 +3825 +1909 +3588 +846 +1510 +2443 +3361 +3985 +4771 +3588 +4567 +1223 +3588 +192 +4771 +1161 +3778 +3004 +2596 +4774 +3756 +2596 +2003 +1161 +2309 +3956 +444 +1510 +5613 +2532 +1683 +235 +1538 +2192 +2398 +5486 +1537 +2316 +3303 +3588 +3779 +1161 +3588 +3779 +1161 +3004 +3588 +22 +2532 +3588 +5503 +2570 +846 +1437 +3306 +5613 +2504 +1161 +1487 +3756 +1467 +1060 +1063 +2909 +1510 +1060 +2228 +4448 +1161 +3588 +1060 +3853 +3756 +1473 +235 +3588 +2962 +1135 +575 +435 +3361 +5563 +1161 +1437 +2532 +5563 +3306 +22 +2228 +3588 +435 +2644 +2532 +435 +1135 +3361 +863 +1161 +3588 +3062 +3004 +1473 +3756 +3588 +2962 +1487 +5100 +80 +2192 +1135 +571 +2532 +3778 +4909 +3611 +3326 +846 +3361 +863 +846 +2532 +1135 +3748 +2192 +435 +571 +2532 +3778 +4909 +3611 +3326 +846 +3361 +863 +3588 +435 +1063 +37 +3588 +435 +3588 +571 +1722 +3588 +1135 +2532 +37 +3588 +1135 +3588 +571 +1722 +3588 +80 +686 +1893 +3588 +5043 +4771 +169 +1510 +1161 +3568 +40 +1510 +1161 +1487 +3588 +571 +5563 +5563 +3756 +1402 +3588 +80 +2228 +3588 +79 +1722 +3588 +5108 +1161 +1722 +1515 +2564 +4771 +3588 +2316 +1063 +1135 +5101 +1492 +1487 +3588 +435 +4982 +2228 +435 +5101 +1492 +1487 +3588 +1135 +4982 +1487 +3361 +5613 +1538 +3307 +3588 +2962 +5613 +1538 +2564 +3588 +2316 +3779 +4043 +2532 +3779 +1722 +3588 +1577 +3956 +1299 +4059 +5100 +2564 +3361 +1986 +1722 +203 +2564 +5100 +3361 +4059 +3588 +4061 +3762 +1510 +2532 +3588 +203 +3762 +1510 +235 +5084 +1785 +2316 +1538 +1722 +3588 +2821 +3739 +2564 +1722 +3778 +3306 +1401 +2564 +3361 +4771 +3199 +235 +1487 +2532 +1410 +1658 +1096 +3123 +5530 +1063 +3588 +1722 +2962 +2564 +1401 +558 +2962 +1510 +3668 +3588 +1658 +2564 +1510 +1401 +5547 +5092 +59 +3361 +1096 +1401 +444 +80 +1538 +1722 +3739 +2564 +1722 +3778 +3306 +3844 +2316 +1161 +4012 +3588 +3933 +2003 +2962 +3756 +2192 +1161 +1106 +1325 +5613 +1653 +5259 +2962 +4103 +1510 +3767 +3543 +3778 +2570 +5225 +1223 +3588 +1764 +318 +3754 +2570 +444 +3588 +3779 +1510 +1210 +1135 +3361 +2212 +3080 +3089 +575 +1135 +3361 +2212 +1135 +1161 +1437 +2532 +1060 +3756 +264 +2532 +1437 +1060 +3588 +3933 +3756 +264 +1161 +2347 +3588 +4561 +2192 +3588 +5108 +1161 +1473 +4771 +5339 +1161 +80 +3778 +5346 +3588 +2540 +4958 +1510 +3588 +3063 +2443 +2532 +3588 +2192 +1135 +5613 +3361 +2192 +1510 +2532 +3588 +2799 +5613 +3361 +2799 +2532 +3588 +5463 +5613 +3361 +5463 +2532 +3588 +59 +5613 +3361 +2722 +2532 +3588 +5530 +3588 +2889 +5613 +3361 +2710 +1063 +3855 +3588 +4976 +3588 +2889 +3778 +1161 +2309 +4771 +275 +1510 +3588 +22 +3309 +3588 +3588 +2962 +4459 +700 +3588 +2962 +1161 +3588 +1060 +3309 +3588 +3588 +2889 +4459 +700 +3588 +1135 +2532 +3307 +2532 +3588 +1135 +3588 +22 +2532 +3588 +3933 +3309 +3588 +3588 +2962 +2443 +1510 +40 +2532 +3588 +4983 +2532 +3588 +4151 +1161 +3588 +1060 +3309 +3588 +3588 +2889 +4459 +700 +3588 +435 +1161 +3778 +4314 +3588 +4771 +846 +4851 +3004 +3756 +2443 +1029 +4771 +1911 +235 +4314 +3588 +2158 +2532 +2145 +3588 +2962 +563 +1161 +1487 +5100 +807 +1909 +3588 +3933 +846 +3543 +1437 +1510 +5230 +2532 +3779 +3784 +1096 +3739 +2309 +4160 +3756 +264 +1060 +1161 +3739 +2476 +1722 +3588 +2588 +846 +1476 +3361 +2192 +318 +1161 +1849 +2192 +4012 +3588 +2398 +2307 +2532 +3778 +2919 +1722 +3588 +2398 +2588 +5083 +3588 +1438 +3933 +2573 +4160 +5620 +2532 +3588 +1061 +3588 +1438 +3933 +2573 +4160 +2532 +3588 +3361 +1061 +2908 +4160 +1135 +1210 +1909 +3745 +5550 +2198 +3588 +435 +846 +1161 +1437 +2837 +3588 +435 +1658 +1510 +3739 +2309 +1060 +3440 +1722 +2962 +1161 +3107 +1510 +1437 +3779 +3306 +2596 +3588 +1699 +1106 +1161 +1380 +2504 +4151 +2316 +2192 +1161 +4012 +3588 +1494 +1492 +3754 +3956 +1108 +2192 +3588 +1108 +5448 +1161 +3588 +26 +3618 +1487 +5100 +1380 +1097 +5100 +3768 +1097 +2531 +1163 +1097 +1161 +1487 +5100 +25 +3588 +2316 +3778 +1097 +5259 +846 +3767 +4012 +3588 +1035 +3588 +1494 +1492 +3754 +3762 +1497 +1722 +2889 +2532 +3754 +3762 +2316 +1487 +3361 +1520 +1063 +1512 +2532 +1510 +3004 +2316 +1535 +1722 +3772 +1535 +1909 +1093 +5618 +1510 +2316 +4183 +2532 +2962 +4183 +235 +1473 +1520 +2316 +3588 +3962 +1537 +3739 +3588 +3956 +2532 +1473 +1519 +846 +2532 +1520 +2962 +2424 +5547 +1223 +3739 +3588 +3956 +2532 +1473 +1223 +846 +235 +3756 +1722 +3956 +3588 +1108 +1161 +5100 +3588 +4914 +2193 +737 +3588 +1497 +5613 +1494 +2068 +2532 +3588 +4893 +846 +772 +1510 +3435 +1161 +1033 +1473 +3756 +3936 +3588 +2316 +3777 +1437 +3361 +5315 +5302 +3777 +1437 +5315 +4052 +1161 +991 +3361 +4458 +3588 +1849 +4771 +3778 +4348 +1096 +3588 +772 +1063 +1437 +5100 +3708 +4771 +3588 +2192 +1108 +1722 +1493 +2621 +3780 +3588 +4893 +846 +772 +1510 +3618 +1519 +3588 +3588 +1494 +2068 +1063 +622 +1722 +3588 +4674 +1108 +3588 +770 +3588 +80 +1223 +3739 +5547 +599 +1161 +3779 +264 +1519 +3588 +80 +2532 +5180 +846 +3588 +4893 +770 +1519 +5547 +264 +1355 +1487 +1033 +4624 +3588 +80 +1473 +3756 +3361 +5315 +2907 +1519 +3588 +165 +2443 +3361 +3588 +80 +1473 +4624 +3756 +1510 +1658 +3756 +1510 +652 +3780 +2424 +3588 +2962 +1473 +3708 +3756 +3588 +2041 +1473 +4771 +1510 +1722 +2962 +1487 +243 +3756 +1510 +652 +235 +1065 +4771 +1510 +1063 +3588 +4973 +1473 +3588 +651 +4771 +1510 +1722 +2962 +3588 +1699 +627 +3588 +1473 +350 +1510 +3778 +3361 +3756 +2192 +1849 +5315 +2532 +4095 +3361 +3756 +2192 +1849 +79 +1135 +4013 +5613 +2532 +3588 +3062 +652 +2532 +3588 +80 +3588 +2962 +2532 +2786 +2228 +3441 +1473 +2532 +921 +3756 +2192 +1849 +3361 +2038 +5101 +4754 +2398 +3800 +4218 +5101 +5452 +290 +2532 +3588 +2590 +846 +3756 +2068 +2228 +5101 +4165 +4167 +2532 +1537 +3588 +1051 +3588 +4167 +3756 +2068 +3361 +2596 +444 +3778 +2980 +2228 +2532 +3588 +3551 +3778 +3756 +3004 +1063 +1722 +3588 +3475 +3551 +1125 +3756 +5392 +1016 +248 +3361 +3588 +1016 +3199 +3588 +2316 +2228 +1223 +1473 +3843 +3004 +1063 +1223 +1473 +1125 +3754 +3784 +1909 +1680 +722 +3588 +722 +2532 +3588 +248 +1909 +1680 +3588 +3348 +1487 +1473 +4771 +3588 +4152 +4687 +3173 +1487 +1473 +4771 +3588 +4559 +2325 +1487 +243 +3588 +4771 +1849 +3348 +3756 +3123 +1473 +235 +3756 +5530 +3588 +1849 +3778 +235 +3956 +4722 +2443 +3361 +5100 +1464 +1325 +3588 +2098 +3588 +5547 +3756 +1492 +3754 +3588 +3588 +2413 +2038 +3588 +1537 +3588 +2411 +2068 +3588 +3588 +2379 +4332 +3588 +2379 +4829 +3779 +2532 +3588 +2962 +1299 +3588 +3588 +2098 +2605 +1537 +3588 +2098 +2198 +1161 +1473 +3756 +5530 +3762 +3778 +1161 +3756 +1125 +3778 +2443 +3779 +1096 +1722 +1473 +1063 +2570 +1473 +3123 +599 +2228 +3588 +2745 +1473 +3762 +2758 +1063 +1437 +2097 +3756 +1510 +1473 +2745 +1063 +318 +1473 +1945 +1063 +3759 +1473 +1510 +1437 +3361 +2097 +1063 +1487 +1635 +3778 +4238 +3408 +2192 +1161 +1487 +210 +3622 +4100 +3767 +5101 +1510 +1473 +3588 +3408 +2443 +2097 +77 +5087 +3588 +2098 +1519 +3588 +3361 +2710 +3588 +1849 +1473 +1722 +3588 +2098 +1063 +1658 +1510 +1537 +3956 +3956 +1683 +1402 +2443 +3588 +4119 +2770 +2532 +1096 +3588 +2453 +5613 +2453 +2443 +2453 +2770 +3588 +5259 +3551 +5613 +5259 +3551 +3361 +1510 +846 +5259 +3551 +2443 +3588 +5259 +3551 +2770 +3588 +459 +5613 +459 +3361 +1510 +459 +2316 +235 +1772 +5547 +2443 +2770 +3588 +459 +1096 +3588 +772 +772 +2443 +3588 +772 +2770 +3588 +3956 +1096 +3956 +2443 +3843 +5100 +4982 +1161 +3956 +4160 +1223 +3588 +2098 +2443 +4791 +846 +1096 +3756 +1492 +3754 +3588 +1722 +4712 +5143 +3303 +3956 +5143 +1161 +1520 +2983 +3588 +1017 +3779 +5143 +2443 +2638 +1161 +3956 +3588 +75 +3956 +1467 +3767 +3303 +1565 +2443 +5349 +4735 +2983 +1161 +1473 +862 +5106 +1473 +3779 +5143 +5613 +3756 +84 +3779 +4438 +5613 +3756 +109 +1194 +235 +5299 +1473 +3588 +4983 +2532 +1396 +3361 +4458 +243 +2784 +846 +96 +1096 +1063 +80 +3756 +2309 +4771 +50 +3754 +3588 +3962 +1473 +3956 +5259 +3588 +3507 +1510 +2532 +3956 +1223 +3588 +2281 +1330 +2532 +3956 +1519 +3588 +3475 +907 +1722 +3588 +3507 +2532 +1722 +3588 +2281 +2532 +3956 +3588 +846 +4152 +1033 +5315 +2532 +3956 +3588 +846 +4152 +4188 +4095 +1063 +4095 +1537 +4152 +190 +4073 +1161 +3588 +4073 +1510 +3588 +5547 +235 +3756 +1722 +3588 +4119 +846 +2106 +3588 +2316 +1063 +2693 +1722 +3588 +2048 +1161 +3778 +5179 +1473 +1096 +1519 +3588 +3361 +1510 +1473 +1938 +2556 +2531 +2548 +1937 +3366 +1496 +1096 +2531 +5100 +846 +5618 +1125 +2523 +3588 +2992 +5315 +2532 +4095 +2532 +450 +3815 +3366 +4203 +2531 +5100 +846 +4203 +2532 +4098 +1520 +2250 +1501 +5505 +3366 +1598 +3588 +2962 +2531 +5100 +846 +3985 +2532 +5259 +3588 +3789 +622 +3366 +1111 +2509 +5100 +846 +1111 +2532 +622 +5259 +3588 +3644 +1161 +3778 +5179 +4819 +1565 +1161 +1125 +4314 +3559 +1473 +1519 +3739 +3588 +5056 +3588 +165 +2658 +5620 +3588 +1380 +2476 +991 +3361 +4098 +3986 +4771 +3756 +2983 +1487 +3361 +442 +1161 +4103 +3588 +2316 +3739 +3756 +1439 +4771 +3985 +5228 +3739 +1410 +235 +4160 +4862 +3588 +3986 +2532 +3588 +1545 +3588 +1410 +5297 +1355 +27 +1473 +5343 +575 +3588 +1495 +5613 +5429 +3004 +2919 +4771 +3739 +5346 +3588 +4221 +3588 +2129 +3739 +2127 +3780 +1510 +2842 +3588 +129 +3588 +5547 +3588 +740 +3739 +2806 +3780 +2842 +3588 +4983 +3588 +5547 +1510 +3754 +1520 +740 +1520 +4983 +3588 +4183 +1510 +1063 +3588 +3956 +1537 +3588 +1520 +740 +3348 +991 +3588 +2474 +2596 +4561 +3756 +3588 +2068 +3588 +2378 +2844 +3588 +2379 +1510 +3767 +5101 +5346 +3754 +1494 +5100 +1510 +2228 +3754 +1497 +5100 +1510 +235 +3754 +3739 +2380 +1140 +2532 +3756 +2316 +2380 +1161 +3756 +2309 +4771 +2844 +3588 +1140 +1096 +3756 +1410 +4221 +2962 +4095 +2532 +4221 +1140 +3756 +1410 +5132 +2962 +3348 +2532 +5132 +1140 +2228 +3863 +3588 +2962 +3361 +2478 +846 +1510 +3956 +1832 +235 +3756 +3956 +4851 +3956 +1832 +235 +3756 +3956 +3618 +3367 +3588 +1438 +2212 +235 +3588 +3588 +2087 +3956 +3588 +1722 +3111 +4453 +2068 +3367 +350 +1223 +3588 +4893 +1063 +3588 +2962 +3588 +1093 +2532 +3588 +4138 +846 +1487 +5100 +3588 +571 +2564 +4771 +2532 +2309 +4198 +3956 +3588 +3908 +4771 +2068 +3367 +350 +1223 +3588 +4893 +1161 +1437 +5100 +4771 +3004 +3778 +1494 +1510 +3361 +2068 +1223 +1565 +3588 +3377 +2532 +3588 +4893 +1161 +3004 +4893 +3780 +3588 +1438 +235 +3588 +3588 +2087 +1063 +2443 +5101 +3588 +1657 +1473 +2919 +5259 +243 +4893 +1487 +1473 +5485 +3348 +5101 +987 +5228 +3739 +1473 +2168 +3767 +1535 +2068 +1535 +4095 +1535 +5100 +4160 +3956 +1519 +1391 +2316 +4160 +677 +1096 +2532 +2453 +2532 +1672 +2532 +3588 +1577 +3588 +2316 +2531 +2504 +3956 +3956 +700 +2212 +3361 +3588 +1683 +4851 +235 +3588 +3588 +4183 +2443 +4982 +3402 +1473 +1096 +2531 +2504 +5547 +1161 +1867 +4771 +3754 +3956 +1473 +3403 +2532 +2531 +3860 +4771 +3588 +3862 +2722 +1161 +2309 +4771 +1492 +3754 +3956 +435 +3588 +2776 +3588 +5547 +1510 +1161 +2776 +1135 +3588 +435 +1161 +2776 +3588 +5547 +3588 +2316 +3956 +435 +4336 +2228 +4395 +2596 +2776 +2192 +2617 +3588 +2776 +846 +1161 +3956 +1135 +4336 +2228 +4395 +177 +3588 +2776 +2617 +3588 +2776 +846 +1063 +1510 +1520 +2532 +3588 +846 +3588 +3587 +1063 +1487 +3756 +2619 +1135 +2532 +2751 +1161 +1487 +150 +1135 +3588 +2751 +2228 +3587 +2619 +1063 +3303 +435 +3756 +3784 +2619 +3588 +2776 +1504 +2532 +1391 +2316 +5225 +1161 +3588 +1135 +1391 +435 +1510 +1063 +3756 +1510 +435 +1537 +1135 +235 +1135 +1537 +435 +1063 +2532 +3756 +2936 +435 +1223 +3588 +1135 +235 +1135 +1223 +3588 +435 +1223 +3778 +3784 +3588 +1135 +1849 +2192 +1909 +3588 +2776 +1223 +3588 +32 +4133 +3777 +1135 +5565 +435 +3777 +435 +5565 +1135 +1722 +2962 +1063 +5618 +3588 +1135 +1537 +3588 +435 +3779 +2532 +3588 +435 +1223 +3588 +1135 +1161 +3588 +3956 +1537 +3588 +2316 +1722 +4771 +846 +2919 +4241 +1510 +1135 +177 +3588 +2316 +4336 +3761 +3588 +5449 +846 +1321 +4771 +3754 +3303 +1437 +435 +2863 +819 +846 +1510 +1161 +1437 +1135 +2863 +1391 +846 +1510 +3754 +3588 +2864 +473 +4018 +1325 +846 +1161 +1487 +5100 +1380 +5380 +1510 +1473 +5108 +4914 +3756 +2192 +3761 +3588 +1577 +3588 +2316 +1161 +3778 +3853 +3756 +1867 +3754 +3756 +1519 +3588 +2908 +235 +1519 +3588 +2276 +4905 +1063 +3303 +4412 +4905 +4771 +1722 +1577 +191 +4978 +1722 +4771 +5225 +2532 +3313 +5100 +4100 +1063 +1163 +2532 +139 +1722 +4771 +1510 +2443 +2532 +3588 +1384 +5318 +1096 +1722 +4771 +3767 +4905 +4771 +1909 +3588 +846 +3756 +1510 +2960 +1173 +5315 +1063 +1538 +3588 +2398 +1173 +4301 +1722 +3588 +5315 +2532 +3303 +3739 +3983 +1161 +3739 +3184 +1063 +3361 +3614 +3756 +2192 +1519 +3588 +2068 +2532 +4095 +2228 +3588 +1577 +3588 +2316 +2706 +2532 +2617 +3588 +3361 +2192 +5101 +3004 +4771 +1867 +4771 +1722 +3778 +3756 +1867 +1063 +1473 +3880 +575 +3588 +2962 +3739 +2532 +3860 +4771 +3754 +3588 +2962 +2424 +1722 +3588 +3571 +3739 +3860 +2983 +740 +2532 +2168 +2806 +2532 +3004 +3778 +1510 +1473 +3588 +4983 +3588 +5228 +4771 +3778 +4160 +1519 +3588 +1699 +364 +5615 +2532 +3588 +4221 +3326 +3588 +1172 +3004 +3778 +3588 +4221 +3588 +2537 +1242 +1510 +1722 +3588 +1699 +129 +3778 +4160 +3740 +1437 +4095 +1519 +3588 +1699 +364 +1063 +3740 +1437 +2068 +3588 +740 +3778 +2532 +3588 +4221 +4095 +3588 +2288 +3588 +2962 +2605 +891 +3739 +2064 +5620 +302 +3739 +2068 +3588 +740 +2228 +4095 +3588 +4221 +3588 +2962 +371 +1777 +1510 +3588 +4983 +2532 +3588 +129 +3588 +2962 +1161 +1381 +444 +1438 +2532 +3779 +1537 +3588 +740 +2068 +2532 +1537 +3588 +4221 +4095 +1063 +3588 +2068 +2532 +4095 +2917 +1438 +2068 +2532 +4095 +3361 +1252 +3588 +4983 +1223 +3778 +1722 +4771 +4183 +772 +2532 +732 +2532 +2837 +2425 +1161 +1487 +1438 +1252 +302 +3756 +2919 +1161 +2919 +5259 +3588 +2962 +3811 +2443 +3361 +4862 +3588 +2889 +2632 +5620 +80 +1473 +4905 +1519 +3588 +5315 +240 +1551 +1487 +5100 +3983 +1722 +3624 +2068 +2443 +3361 +1519 +2917 +4905 +1161 +3588 +3062 +5613 +302 +2064 +1299 +1161 +80 +4012 +3588 +4152 +3756 +2309 +4771 +50 +1492 +3754 +3753 +1484 +1510 +4314 +3588 +1497 +3588 +880 +5613 +302 +71 +520 +1352 +1107 +4771 +3754 +3762 +1722 +4151 +2316 +2980 +3004 +331 +2424 +2532 +3762 +1410 +3004 +2962 +2424 +1487 +3361 +1722 +4151 +40 +1161 +1243 +5486 +1510 +1161 +3588 +846 +4151 +2532 +1243 +1248 +1510 +2532 +3588 +846 +2962 +2532 +1243 +1755 +1510 +1161 +3588 +846 +2316 +3588 +1754 +3588 +3956 +1722 +3956 +1161 +1538 +1325 +3588 +5321 +3588 +4151 +4314 +3588 +4851 +1063 +3303 +3739 +1223 +3588 +4151 +1325 +3056 +4678 +1161 +243 +3056 +1108 +2596 +3588 +846 +4151 +2087 +4102 +1722 +3588 +846 +4151 +1161 +243 +5486 +2386 +1722 +3588 +1520 +4151 +1161 +243 +1755 +1411 +1161 +243 +4394 +1161 +243 +1253 +4151 +2087 +1085 +1100 +1161 +243 +2058 +1100 +1161 +3956 +3778 +1754 +3588 +1520 +2532 +3588 +846 +4151 +1244 +2398 +1538 +2531 +1014 +1063 +2509 +3588 +4983 +1520 +1510 +2532 +3196 +4183 +2192 +1161 +3956 +3588 +3196 +3588 +4983 +4183 +1510 +1520 +4983 +1510 +3779 +2532 +3588 +5547 +1063 +2532 +1722 +1520 +4151 +1473 +3956 +1519 +1520 +4983 +907 +1535 +2453 +1535 +1672 +1535 +1401 +1535 +1658 +2532 +3956 +1520 +4151 +4222 +1063 +2532 +3588 +4983 +1510 +3756 +1520 +3196 +235 +4183 +1437 +3004 +3588 +4228 +3754 +3756 +1510 +5495 +3756 +1510 +1537 +3588 +4983 +3756 +3844 +3778 +3756 +1510 +1537 +3588 +4983 +2532 +1437 +3004 +3588 +3775 +3754 +3756 +1510 +3788 +3756 +1510 +1537 +3588 +4983 +3756 +3844 +3778 +3756 +1510 +1537 +3588 +4983 +1487 +3650 +3588 +4983 +3788 +4226 +3588 +189 +1487 +3650 +189 +4226 +3588 +3750 +1161 +3568 +3588 +2316 +5087 +3588 +3196 +1520 +1538 +846 +1722 +3588 +4983 +2531 +2309 +1161 +1487 +1510 +3588 +3956 +1520 +3196 +4226 +3588 +4983 +1161 +3303 +3568 +4183 +3196 +1161 +1520 +4983 +1161 +3756 +1410 +3588 +3788 +3004 +3588 +5495 +5532 +4771 +3756 +2192 +2228 +3825 +3588 +2776 +3588 +4228 +5532 +4771 +3756 +2192 +235 +4183 +3123 +3588 +1380 +772 +5225 +3196 +3588 +4983 +316 +1510 +2532 +3739 +1510 +820 +3588 +4983 +1380 +3778 +5092 +4053 +4060 +2532 +3588 +809 +1473 +2157 +4053 +2192 +1161 +3588 +2158 +1473 +3756 +5532 +2192 +235 +3588 +2316 +4786 +3588 +4983 +3588 +5302 +1325 +4053 +5092 +2443 +3361 +1510 +4978 +1722 +3588 +4983 +235 +3588 +846 +5228 +240 +3309 +3588 +3196 +2532 +1535 +3958 +1520 +3196 +4841 +3956 +3588 +3196 +1535 +1392 +3196 +4796 +3956 +3588 +3196 +1161 +4771 +1510 +4983 +5547 +2532 +3196 +1537 +3313 +2532 +3303 +3739 +5087 +3588 +2316 +1722 +3588 +1577 +4412 +652 +1208 +4396 +5154 +1320 +1899 +1411 +1899 +5486 +2386 +484 +2941 +1085 +1100 +3361 +3956 +652 +3361 +3956 +4396 +3361 +3956 +1320 +3361 +3956 +1411 +3361 +3956 +2192 +5486 +2386 +3361 +3956 +1100 +2980 +3361 +3956 +1329 +1161 +2206 +3588 +5486 +3588 +3173 +2532 +2089 +2596 +5236 +3598 +4771 +1166 +1437 +3588 +1100 +3588 +444 +2532 +3588 +32 +2980 +1161 +26 +3361 +2192 +1096 +5475 +2278 +2228 +2950 +214 +2532 +1437 +2192 +4394 +2532 +1492 +3588 +3466 +3956 +2532 +3956 +3588 +1108 +2532 +1437 +2192 +3956 +3588 +4102 +5620 +3735 +3179 +1161 +26 +3361 +2192 +3762 +1510 +2532 +1437 +5595 +3956 +3588 +5225 +1473 +2532 +1437 +3860 +3588 +4983 +1473 +2443 +2545 +1161 +26 +3361 +2192 +3762 +5623 +3588 +26 +3114 +5541 +3588 +26 +3756 +2206 +3588 +26 +3756 +4068 +3756 +5448 +3756 +807 +3756 +2212 +3588 +1438 +3756 +3947 +3756 +3049 +3588 +2556 +3756 +5463 +1909 +3588 +93 +1161 +4796 +3588 +225 +3956 +4722 +3956 +4100 +3956 +1679 +3956 +5278 +3588 +26 +3763 +4098 +1161 +1535 +4394 +2673 +1535 +1100 +3973 +1535 +1108 +2673 +1063 +1537 +3313 +1097 +2532 +1537 +3313 +4395 +1161 +3752 +2064 +3588 +5046 +3588 +1537 +3313 +2673 +3753 +1510 +3516 +2980 +5613 +3516 +5426 +5613 +3516 +3049 +5613 +3516 +3753 +1096 +435 +2673 +3588 +3588 +3516 +1063 +991 +737 +1223 +2072 +1722 +135 +1161 +5119 +4383 +4314 +4383 +737 +1097 +1537 +3313 +1161 +5119 +1921 +2531 +2532 +1921 +1161 +3570 +3306 +4102 +1680 +26 +3588 +5140 +3778 +1161 +3173 +3778 +3588 +26 +1377 +3588 +26 +1161 +2206 +3588 +4152 +1161 +2443 +3123 +4395 +1063 +3588 +2980 +1100 +3756 +444 +2980 +235 +2316 +1063 +3762 +191 +1161 +4151 +2980 +3466 +1161 +3588 +4395 +444 +2980 +3619 +2532 +3874 +2532 +3889 +3588 +2980 +1100 +1438 +3618 +1161 +3588 +4395 +1577 +3618 +1161 +2309 +3956 +4771 +2980 +1100 +1161 +2443 +3123 +4395 +1161 +3173 +3588 +4395 +2228 +3588 +2980 +1100 +1487 +1622 +3361 +1329 +2443 +3588 +1577 +3619 +2983 +1161 +80 +1437 +3568 +2064 +4314 +4771 +1100 +2980 +5101 +4771 +5623 +1437 +3361 +4771 +2980 +2228 +1722 +602 +2228 +1722 +1108 +2228 +1722 +4394 +2228 +1322 +3676 +3588 +895 +5456 +1325 +1535 +836 +1535 +2788 +1437 +1293 +3588 +5353 +3361 +1325 +4459 +1097 +3588 +832 +2228 +3588 +2789 +1063 +1437 +2532 +4536 +82 +5456 +1325 +5101 +3903 +1519 +4171 +3779 +1437 +2532 +4771 +1223 +3588 +1100 +3361 +2154 +3056 +1325 +4459 +1097 +3588 +2980 +1063 +1519 +109 +1510 +2980 +1487 +5177 +5118 +1085 +5456 +1510 +1722 +2889 +2532 +3762 +880 +3767 +1437 +3361 +1492 +3588 +1411 +3588 +5456 +1510 +3588 +2980 +915 +2532 +3588 +2980 +1722 +1473 +915 +3779 +2532 +4771 +1893 +2207 +4151 +1510 +4314 +3588 +3619 +3588 +1577 +2212 +2443 +4052 +1352 +3588 +2980 +1100 +4336 +2443 +1329 +1063 +1437 +4336 +1100 +3588 +4151 +1473 +4336 +1161 +3588 +3563 +1473 +175 +1510 +3767 +5101 +1510 +4336 +3588 +4151 +1161 +4336 +2532 +3588 +3563 +5567 +3588 +4151 +1161 +5567 +2532 +3588 +3563 +1893 +1437 +2127 +4151 +3588 +378 +3588 +5117 +3588 +2399 +4459 +2046 +3588 +281 +1909 +3588 +4674 +2169 +1894 +5101 +3004 +3756 +1492 +1063 +3303 +4771 +2573 +2168 +235 +3588 +2087 +3756 +3618 +2168 +3588 +2316 +3956 +4771 +3123 +1100 +2980 +235 +1722 +1577 +2309 +4002 +3056 +3588 +3563 +1473 +2980 +2443 +2532 +243 +2727 +2228 +3463 +3056 +1722 +1100 +80 +3361 +3813 +1096 +3588 +5424 +235 +3588 +2549 +3515 +1161 +3588 +5424 +5046 +1096 +1722 +3588 +3551 +1125 +3754 +1722 +2084 +2532 +1722 +5491 +2087 +2980 +3588 +2992 +3778 +2532 +3761 +3779 +1522 +1473 +3004 +2962 +5620 +3588 +1100 +1519 +4592 +1510 +3756 +3588 +4100 +235 +3588 +571 +1161 +3588 +4394 +3756 +3588 +571 +235 +3588 +4100 +3767 +1437 +4905 +3588 +1577 +3650 +1909 +3588 +846 +2532 +3956 +2980 +1100 +1161 +1525 +2399 +2228 +571 +3756 +2046 +3754 +3105 +1161 +1437 +3956 +4395 +1161 +1525 +5100 +571 +2228 +2399 +1651 +5259 +3956 +350 +5259 +3956 +3588 +2927 +3588 +2588 +846 +5318 +1096 +2532 +3779 +4098 +1909 +4383 +4352 +3588 +2316 +518 +3754 +3689 +3588 +2316 +1722 +4771 +1510 +3767 +5101 +1510 +80 +3752 +4905 +1538 +5568 +2192 +1322 +2192 +602 +2192 +1100 +2192 +2058 +2192 +3956 +4314 +3619 +1096 +1535 +1100 +5100 +2980 +2596 +1417 +2228 +3588 +4118 +5140 +2532 +303 +3313 +2532 +1520 +1329 +1161 +1437 +3361 +1510 +1328 +4601 +1722 +1577 +1161 +2980 +1438 +2532 +3588 +2316 +1161 +4396 +1417 +2228 +5140 +2980 +2532 +3588 +243 +1252 +1161 +1437 +243 +2521 +601 +3588 +4413 +4601 +1063 +1410 +2596 +1520 +3956 +4395 +2443 +3956 +3129 +2532 +3956 +3870 +2532 +4151 +4396 +4396 +5293 +1063 +3756 +1510 +181 +3588 +2316 +235 +1515 +5613 +1722 +3956 +3588 +1577 +3588 +40 +3588 +1135 +1722 +3588 +1577 +4601 +1063 +3756 +2010 +846 +2980 +235 +5293 +2531 +2532 +3588 +3551 +3004 +1161 +1487 +5100 +3129 +2309 +1722 +3624 +3588 +2398 +435 +1905 +1063 +150 +1510 +1135 +2980 +1722 +1577 +2228 +575 +4771 +3588 +3056 +3588 +2316 +1831 +2228 +1519 +4771 +3441 +2658 +1487 +5100 +1380 +1510 +4396 +2228 +4152 +1921 +3739 +1125 +4771 +3754 +2962 +1785 +1510 +1161 +1487 +5100 +50 +50 +5620 +80 +1473 +2206 +3588 +4395 +2532 +3588 +2980 +1100 +3361 +2967 +1161 +3956 +2156 +2532 +2596 +5010 +1096 +1161 +80 +1107 +4771 +3588 +2098 +3739 +2097 +4771 +3739 +2532 +3880 +1722 +3739 +2532 +2476 +1223 +3739 +2532 +4982 +5101 +3056 +2097 +4771 +1487 +2722 +1622 +1487 +3361 +1500 +4100 +1063 +3860 +4771 +1722 +4413 +3739 +2532 +3880 +3754 +5547 +599 +5228 +3588 +266 +1473 +2596 +3588 +1124 +2532 +3754 +2290 +2532 +3754 +1453 +3588 +2250 +3588 +5154 +2596 +3588 +1124 +2532 +3754 +3708 +2786 +1534 +3588 +1427 +1899 +3708 +1883 +4001 +80 +2178 +1537 +3739 +3588 +4119 +3306 +2193 +737 +1161 +5100 +2837 +1899 +3708 +2385 +1534 +3588 +652 +3956 +1161 +2078 +3956 +3708 +2504 +5619 +3588 +1626 +1063 +1473 +1510 +3588 +1646 +3588 +652 +3739 +3756 +1510 +2425 +2564 +652 +1360 +1377 +3588 +1577 +3588 +2316 +1161 +5485 +2316 +1510 +3739 +1510 +2532 +3588 +5485 +846 +3588 +1519 +1473 +3756 +2756 +1096 +235 +4053 +846 +3956 +2872 +1161 +3756 +1473 +235 +3588 +5485 +3588 +2316 +4862 +1473 +3767 +1535 +1473 +1535 +1565 +3779 +2784 +2532 +3779 +4100 +1161 +1487 +5547 +2784 +3754 +1537 +3498 +1453 +4459 +3004 +1722 +4771 +5100 +3754 +386 +3498 +3756 +1510 +1161 +1487 +386 +3498 +3756 +1510 +3761 +5547 +1453 +1161 +1487 +5547 +3756 +1453 +686 +2756 +3588 +2782 +1473 +2756 +2532 +3588 +4102 +4771 +1161 +2147 +2532 +5575 +3588 +2316 +3754 +3140 +2596 +3588 +2316 +3754 +1453 +3588 +5547 +3739 +3756 +1453 +1512 +686 +3498 +3756 +1453 +1063 +1487 +3498 +3756 +1453 +3761 +5547 +1453 +1161 +1487 +5547 +3756 +1453 +3152 +3588 +4102 +4771 +2089 +1510 +1722 +3588 +266 +4771 +686 +2532 +3588 +2837 +1722 +5547 +622 +1487 +1722 +3588 +2222 +3778 +1722 +5547 +1679 +1510 +3440 +1652 +3956 +444 +1510 +1161 +3570 +1453 +1537 +3498 +5547 +536 +3588 +2837 +1063 +1894 +1223 +444 +2288 +2532 +1223 +444 +386 +3498 +1063 +5618 +1722 +3588 +76 +3956 +599 +3779 +2532 +1722 +3588 +5547 +3956 +2227 +1161 +1538 +1722 +3588 +2398 +5001 +536 +5547 +1899 +3588 +3588 +5547 +1722 +3588 +3952 +846 +1534 +3588 +5056 +3752 +3860 +3588 +932 +3588 +2316 +2532 +3962 +3752 +2673 +3956 +746 +2532 +3956 +1849 +2532 +1411 +1063 +1163 +846 +936 +891 +3739 +5087 +3956 +3588 +2190 +5259 +3588 +4228 +846 +2078 +2190 +3588 +2288 +2673 +1063 +3956 +5293 +5259 +3588 +4228 +846 +1161 +3752 +3004 +3754 +3956 +5293 +1212 +3754 +1622 +3588 +5293 +846 +3588 +3956 +1161 +3752 +5293 +846 +3588 +3956 +5119 +2532 +846 +3588 +5207 +5293 +3588 +5293 +846 +3588 +3956 +2443 +1510 +3588 +2316 +3956 +1722 +3956 +1893 +5101 +4160 +3588 +907 +5228 +3588 +3498 +1487 +3654 +3498 +3756 +1453 +5101 +2532 +907 +5228 +846 +5101 +2532 +1473 +2793 +3956 +5610 +80 +2596 +2250 +599 +3513 +3588 +5212 +2746 +3739 +2192 +1722 +5547 +2424 +3588 +2962 +1473 +1487 +2596 +444 +2341 +1722 +2181 +5101 +1473 +3588 +3786 +1487 +3498 +3756 +1453 +5315 +2532 +4095 +1063 +839 +599 +3361 +4105 +5351 +2239 +5543 +3657 +2556 +1594 +1346 +2532 +3361 +264 +1063 +56 +2316 +5100 +2192 +4314 +1791 +4771 +2980 +235 +2046 +5100 +4459 +1453 +3588 +3498 +1161 +4169 +4983 +2064 +878 +3739 +4771 +4687 +3756 +2227 +1437 +3361 +599 +2532 +3739 +4687 +3756 +3588 +4983 +3588 +1096 +4687 +235 +1131 +2848 +1487 +5177 +4621 +2228 +5100 +3588 +3062 +1161 +3588 +2316 +1325 +846 +4983 +2531 +2309 +2532 +1538 +3588 +4690 +2398 +4983 +3756 +3956 +4561 +3588 +846 +4561 +235 +3303 +243 +444 +1161 +243 +4561 +2934 +1161 +243 +4561 +4421 +1161 +243 +2486 +2532 +4983 +2032 +2532 +4983 +1919 +235 +3303 +2087 +3588 +3588 +2032 +1391 +1161 +2087 +3588 +3588 +1919 +243 +1391 +2246 +2532 +243 +1391 +4582 +2532 +243 +1391 +792 +1063 +792 +792 +1308 +1722 +1391 +3779 +2532 +3588 +386 +3588 +3498 +4687 +1722 +5356 +1453 +1722 +861 +4687 +1722 +819 +1453 +1722 +1391 +4687 +1722 +769 +1453 +1722 +1411 +4687 +4983 +5591 +1453 +4983 +4152 +1487 +1510 +4983 +5591 +1510 +2532 +4152 +3779 +2532 +1125 +1096 +3588 +4413 +444 +76 +1519 +5590 +2198 +3588 +2078 +76 +1519 +4151 +2227 +235 +3756 +4412 +3588 +4152 +235 +3588 +5591 +1899 +3588 +4152 +3588 +4413 +444 +1537 +1093 +5517 +3588 +1208 +444 +1537 +3772 +3634 +3588 +5517 +5108 +2532 +3588 +5517 +2532 +3634 +3588 +2032 +5108 +2532 +3588 +2032 +2532 +2531 +5409 +3588 +1504 +3588 +5517 +5409 +2532 +3588 +1504 +3588 +2032 +1161 +3778 +5346 +80 +3754 +4561 +2532 +129 +932 +2316 +2816 +3756 +1410 +3761 +3588 +5356 +3588 +861 +2816 +3708 +3466 +4771 +3004 +3956 +3756 +2837 +1161 +3956 +236 +1722 +823 +1722 +4493 +3788 +1722 +3588 +2078 +4536 +1063 +4537 +2532 +3588 +3498 +1453 +862 +2532 +1473 +236 +1063 +1163 +3588 +5349 +3778 +1746 +861 +2532 +3588 +2349 +3778 +1746 +110 +1161 +3752 +3588 +5349 +3778 +1746 +861 +2532 +3588 +2349 +3778 +1746 +110 +5119 +1096 +3588 +3056 +3588 +1125 +2666 +3588 +2288 +1519 +3534 +2288 +4226 +4771 +3588 +3534 +2288 +4226 +4771 +3588 +2759 +1161 +3588 +2759 +3588 +2288 +3588 +266 +1161 +3588 +1411 +3588 +266 +3588 +3551 +1161 +5485 +3588 +2316 +3588 +1325 +1473 +3588 +3534 +1223 +3588 +2962 +1473 +2424 +5547 +5620 +80 +1473 +27 +1096 +1476 +277 +4052 +1722 +3588 +2041 +3588 +2962 +3842 +1492 +3754 +3588 +2873 +4771 +3756 +1510 +2756 +1722 +2962 +1161 +4012 +3588 +3048 +3588 +1519 +3588 +40 +5618 +1299 +3588 +1577 +3588 +1053 +3779 +2532 +4771 +4160 +2596 +1520 +4521 +1538 +4771 +3844 +1438 +5087 +2343 +5100 +1437 +3739 +2137 +2443 +3361 +3752 +2064 +5119 +3048 +1096 +1161 +3752 +3854 +1437 +3739 +1381 +1223 +1992 +3778 +3992 +667 +3588 +5485 +4771 +1519 +2419 +1161 +1437 +514 +1510 +3588 +2504 +4198 +4862 +1473 +4198 +1161 +2064 +4314 +4771 +3752 +3109 +1330 +1063 +3109 +1330 +1161 +4314 +4771 +5177 +2650 +2228 +2532 +3914 +2443 +4771 +1473 +4311 +1437 +3757 +4198 +1063 +3756 +2309 +4771 +737 +1722 +3938 +3708 +1063 +1679 +5550 +5100 +1961 +4314 +4771 +1437 +3588 +2962 +2010 +1161 +1961 +1722 +2181 +2193 +3588 +4005 +1063 +1473 +455 +2374 +3173 +2532 +1756 +2532 +480 +4183 +1161 +1437 +2064 +5095 +991 +2443 +870 +1096 +4314 +4771 +1063 +3588 +2041 +2962 +2038 +5613 +2504 +3767 +3361 +5100 +846 +1848 +1161 +4311 +846 +1722 +1515 +2443 +2064 +4314 +1473 +1063 +1551 +846 +3326 +3588 +80 +1161 +4012 +625 +3588 +80 +4183 +3870 +846 +2443 +2064 +4314 +4771 +3326 +3588 +80 +2532 +3843 +3756 +1510 +2307 +2443 +3568 +2064 +1161 +2064 +3752 +2119 +1127 +4739 +1722 +3588 +4102 +407 +2901 +3956 +4771 +1722 +26 +1096 +1161 +3870 +4771 +80 +1492 +3588 +3614 +4734 +3754 +1510 +536 +3588 +882 +2532 +1519 +1248 +3588 +40 +5021 +1438 +2443 +2532 +4771 +5293 +3588 +5108 +2532 +3956 +3588 +4903 +2532 +2872 +1161 +5463 +1909 +3588 +3952 +4734 +2532 +5415 +2532 +883 +3754 +3588 +5212 +5303 +3778 +378 +1063 +373 +3588 +1699 +4151 +2532 +3588 +4771 +3767 +1921 +3588 +5108 +782 +4771 +3588 +1577 +3588 +773 +782 +4771 +1722 +2962 +4183 +207 +2532 +4251 +4862 +3588 +2596 +3624 +846 +1577 +782 +4771 +3588 +80 +3956 +782 +240 +1722 +5370 +40 +3588 +783 +3588 +1699 +5495 +3972 +1487 +5100 +3756 +5368 +3588 +2962 +1510 +331 +3134 +3134 +3588 +5485 +3588 +2962 +2424 +3326 +4771 +3588 +26 +1473 +3326 +3956 +4771 +1722 +5547 +2424 +3972 +652 +5547 +2424 +1223 +2307 +2316 +2532 +5095 +3588 +80 +3588 +1577 +3588 +2316 +3588 +1510 +1722 +2882 +4862 +3588 +40 +3956 +3588 +1510 +1722 +3650 +3588 +882 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +2128 +3588 +2316 +2532 +3962 +3588 +2962 +1473 +2424 +5547 +3588 +3962 +3588 +3628 +2532 +2316 +3956 +3874 +3588 +3870 +1473 +1909 +3956 +3588 +2347 +1473 +1519 +3588 +1410 +1473 +3870 +3588 +1722 +3956 +2347 +1223 +3588 +3874 +3739 +3870 +846 +5259 +3588 +2316 +3754 +2531 +4052 +3588 +3804 +3588 +5547 +1519 +1473 +3779 +1223 +3588 +5547 +4052 +2532 +3588 +3874 +1473 +1161 +1535 +2346 +5228 +3588 +4771 +3874 +2532 +4991 +1535 +3870 +5228 +3588 +4771 +3874 +3588 +1754 +1722 +5281 +3588 +846 +3804 +3739 +2532 +1473 +3958 +2532 +3588 +1680 +1473 +949 +5228 +4771 +1492 +3754 +5613 +1510 +2844 +3588 +3804 +3779 +2532 +3588 +3874 +1063 +80 +3756 +2309 +4771 +50 +5228 +3588 +2347 +1473 +3588 +1096 +1722 +3588 +773 +3754 +2596 +5236 +5228 +1411 +916 +5620 +1820 +1473 +2532 +3588 +2198 +235 +846 +1722 +1438 +3588 +610 +3588 +2288 +2192 +2443 +3361 +3982 +1510 +1909 +1438 +235 +1909 +3588 +2316 +3588 +1453 +3588 +3498 +3739 +1537 +5082 +2288 +4506 +1473 +2532 +4506 +1519 +3739 +1679 +3754 +2532 +2089 +4506 +4943 +2532 +4771 +5228 +1473 +3588 +1162 +2443 +1537 +4183 +4383 +3588 +1519 +1473 +5486 +1223 +4183 +2168 +5228 +1473 +1063 +3588 +2746 +1473 +3778 +1510 +3588 +3142 +3588 +4893 +1473 +3754 +1722 +41 +2532 +1505 +3588 +2316 +3756 +1722 +4678 +4559 +235 +1722 +5485 +2316 +390 +1722 +3588 +2889 +1161 +4057 +4314 +4771 +1063 +1125 +4771 +3756 +243 +235 +2228 +3739 +314 +2228 +2532 +1921 +1161 +1679 +3754 +2193 +5056 +1921 +2531 +2532 +1921 +1473 +575 +3313 +3754 +2745 +4771 +1510 +2509 +2532 +4771 +1473 +1722 +3588 +2250 +3588 +2962 +1473 +2424 +2532 +3778 +3588 +4006 +1014 +4386 +4314 +4771 +2064 +2443 +1208 +5485 +2192 +2532 +1223 +4771 +1330 +1519 +3109 +2532 +3825 +575 +3109 +2064 +4314 +4771 +2532 +5259 +4771 +4311 +1519 +3588 +2449 +3767 +3778 +1014 +686 +3385 +3588 +1644 +5530 +2228 +3739 +1011 +2596 +4561 +1011 +2443 +1510 +3844 +1473 +3588 +3483 +3483 +2532 +3588 +3756 +3756 +1161 +4103 +3588 +2316 +3754 +3588 +3056 +1473 +3588 +4314 +4771 +3756 +1510 +3483 +2532 +3756 +1063 +3588 +3588 +2316 +5207 +5547 +2424 +3588 +1722 +4771 +1223 +1473 +2784 +1223 +1473 +2532 +4610 +2532 +5095 +3756 +1096 +3483 +2532 +3756 +235 +3483 +1722 +846 +1096 +1063 +3745 +1860 +2316 +1722 +846 +3588 +3483 +1352 +2532 +1223 +846 +3588 +281 +3588 +2316 +4314 +1391 +1223 +1473 +1161 +3588 +950 +1473 +4862 +4771 +1519 +5547 +2532 +5548 +1473 +2316 +3588 +2532 +4972 +1473 +2532 +1325 +3588 +728 +3588 +4151 +1722 +3588 +2588 +1473 +1161 +1473 +3144 +3588 +2316 +1941 +1909 +3588 +1699 +5590 +3754 +5339 +4771 +3765 +2064 +1519 +2882 +3754 +3756 +2961 +4771 +3588 +4102 +235 +4904 +1510 +3588 +5479 +4771 +1063 +3588 +4102 +2476 +1161 +2919 +1683 +3778 +3588 +3361 +3825 +1722 +3077 +4314 +4771 +2064 +1063 +1487 +1473 +3076 +4771 +2532 +5101 +3588 +2165 +1473 +1487 +3361 +3588 +3076 +1537 +1473 +2532 +1125 +3778 +846 +2443 +3361 +2064 +3077 +2192 +575 +3739 +1473 +5463 +1163 +3982 +1909 +3956 +4771 +3754 +3588 +1699 +5479 +3956 +4771 +1510 +1063 +1537 +4183 +2347 +2532 +4928 +2588 +1125 +4771 +1223 +4183 +1144 +3756 +2443 +3076 +235 +2443 +1097 +3588 +26 +3739 +2192 +4057 +1519 +4771 +1161 +1487 +5100 +3076 +3756 +1473 +3076 +235 +575 +3313 +3956 +4771 +2443 +3361 +1912 +2425 +3588 +5108 +3588 +2009 +3778 +3588 +5259 +3588 +4119 +5620 +5121 +3123 +4771 +5483 +2532 +3870 +3361 +4458 +3588 +4053 +3077 +2666 +3588 +5108 +1352 +3870 +4771 +2964 +1519 +846 +26 +1063 +1519 +3778 +2532 +1125 +2443 +1097 +3588 +1382 +4771 +1487 +1519 +3956 +5255 +1510 +1161 +3739 +5100 +5483 +2504 +1063 +2532 +1473 +3739 +5483 +1487 +5100 +5483 +1223 +4771 +1722 +4383 +5547 +2443 +3361 +4122 +5259 +3588 +4567 +1063 +3756 +846 +3588 +3540 +50 +1161 +2064 +1519 +3588 +5174 +1519 +3588 +2098 +3588 +5547 +2532 +2374 +1473 +455 +1722 +2962 +3756 +2192 +425 +3588 +4151 +1473 +3588 +3361 +2147 +1473 +5103 +3588 +80 +1473 +235 +657 +846 +1831 +1519 +3109 +1161 +5485 +3588 +2316 +3588 +3842 +2358 +1473 +1722 +3588 +5547 +2532 +3588 +3744 +3588 +1108 +846 +5319 +1223 +1473 +1722 +3956 +5117 +3754 +5547 +2175 +1510 +3588 +2316 +1722 +3588 +4982 +2532 +1722 +3588 +622 +3303 +3739 +3744 +1537 +2288 +1519 +2288 +1161 +3739 +3744 +1537 +2222 +1519 +2222 +2532 +4314 +3778 +5101 +2425 +1063 +3756 +1510 +2585 +3588 +3056 +3588 +2316 +5613 +3588 +4183 +235 +5613 +1537 +1505 +235 +5613 +1537 +2316 +2713 +2316 +1722 +5547 +2980 +756 +3825 +1438 +4921 +2228 +3361 +5535 +5613 +5100 +4956 +1992 +4314 +4771 +2228 +1537 +4771 +3588 +1992 +1473 +4771 +1510 +1449 +1722 +3588 +2588 +1473 +1097 +2532 +314 +5259 +3956 +444 +5319 +3754 +1510 +1992 +5547 +1247 +5259 +1473 +1449 +3756 +3188 +235 +4151 +2316 +2198 +3756 +1722 +4109 +3035 +235 +1722 +4109 +2588 +4560 +1161 +4006 +5108 +2192 +1223 +3588 +5547 +4314 +3588 +2316 +3756 +3754 +575 +1438 +2425 +1510 +3049 +5100 +5613 +1537 +1438 +235 +3588 +2426 +1473 +1537 +3588 +2316 +3739 +2532 +2427 +1473 +1249 +2537 +1242 +3756 +1121 +235 +4151 +1063 +3588 +1121 +615 +1161 +3588 +4151 +2227 +1161 +1487 +3588 +1248 +3588 +2288 +1722 +1121 +1795 +3037 +1096 +1722 +1391 +5620 +3361 +1410 +3588 +5207 +2474 +816 +1519 +3588 +4383 +3475 +1223 +3588 +1391 +3588 +4383 +846 +3588 +2673 +4459 +3780 +3123 +3588 +1248 +3588 +4151 +1510 +1722 +1391 +1063 +1487 +3588 +1248 +3588 +2633 +1391 +4183 +3123 +4052 +3588 +1248 +3588 +1343 +1391 +1063 +2532 +3756 +1392 +3588 +1392 +1722 +3778 +3588 +3313 +1752 +3588 +5235 +1391 +1063 +1487 +3588 +2673 +1223 +1391 +4183 +3123 +3588 +3306 +1722 +1391 +3767 +2192 +5108 +1680 +4183 +3954 +5530 +2532 +3756 +2509 +3475 +5087 +2571 +1909 +3588 +4383 +846 +4314 +3588 +3361 +816 +3588 +5207 +2474 +1519 +3588 +5056 +3588 +2673 +235 +4456 +3588 +3540 +846 +1063 +891 +3588 +4594 +2250 +3588 +846 +2571 +1909 +3588 +320 +3588 +3820 +1242 +3306 +3361 +343 +3754 +1722 +5547 +2673 +235 +2193 +4594 +302 +2259 +314 +3475 +2571 +1909 +3588 +2588 +846 +2749 +1161 +2259 +1437 +1994 +4314 +2962 +4014 +3588 +2571 +1161 +3588 +2962 +3588 +4151 +1510 +1161 +3757 +3588 +4151 +2962 +1657 +1161 +1473 +3956 +343 +4383 +3588 +1391 +2962 +2734 +3588 +846 +1504 +3339 +575 +1391 +1519 +1391 +2509 +575 +2962 +4151 +1223 +3778 +2192 +3588 +1248 +3778 +2531 +1653 +3756 +1573 +235 +550 +3588 +2927 +3588 +152 +3361 +4043 +1722 +3834 +3366 +1389 +3588 +3056 +3588 +2316 +235 +3588 +5321 +3588 +225 +4921 +1438 +4314 +3956 +4893 +444 +1799 +3588 +2316 +1161 +1487 +2532 +1510 +2572 +3588 +2098 +1473 +1722 +3588 +622 +1510 +2572 +1722 +3739 +3588 +2316 +3588 +165 +3778 +5186 +3588 +3540 +3588 +571 +1519 +3588 +3361 +826 +3588 +5462 +3588 +2098 +3588 +1391 +3588 +5547 +3739 +1510 +1504 +3588 +2316 +1063 +3756 +1438 +2784 +235 +5547 +2424 +2962 +1161 +1438 +1401 +4771 +1223 +2424 +3754 +3588 +2316 +3588 +3004 +1537 +4655 +5457 +2989 +3739 +2989 +1722 +3588 +2588 +1473 +4314 +5462 +3588 +1108 +3588 +1391 +3588 +2316 +1722 +4383 +5547 +1161 +2192 +3588 +2344 +3778 +1722 +3749 +4632 +2443 +3588 +5236 +3588 +1411 +1510 +3588 +2316 +2532 +3361 +1537 +1473 +1722 +3956 +2346 +235 +3756 +4729 +639 +235 +3756 +1820 +1377 +235 +3756 +1459 +2598 +235 +3756 +622 +3842 +3588 +3500 +3588 +2424 +1722 +3588 +4983 +4064 +2443 +2532 +3588 +2222 +3588 +2424 +1722 +3588 +4983 +1473 +5319 +1063 +104 +1473 +3588 +2198 +1519 +2288 +3860 +1223 +2424 +2443 +2532 +3588 +2222 +3588 +2424 +5319 +1722 +3588 +2349 +4561 +1473 +5620 +3588 +2288 +1722 +1473 +1754 +1161 +3588 +2222 +1722 +4771 +1161 +2192 +3588 +846 +4151 +3588 +4102 +2596 +3588 +1125 +4100 +1352 +2980 +2532 +1473 +4100 +1352 +2532 +2980 +1492 +3754 +3588 +1453 +3588 +2962 +2424 +2532 +1473 +4862 +2424 +1453 +2532 +3936 +4862 +4771 +1063 +3588 +3956 +1223 +4771 +2443 +3588 +5485 +4121 +1223 +3588 +4119 +3588 +2169 +4052 +1519 +3588 +1391 +3588 +2316 +1352 +3756 +1573 +235 +1487 +2532 +3588 +1854 +1473 +444 +1311 +235 +3588 +2080 +1473 +341 +2250 +2532 +2250 +1063 +3588 +3910 +1645 +3588 +2347 +2596 +5236 +1519 +5236 +166 +922 +1391 +2716 +1473 +3361 +4648 +1473 +3588 +991 +235 +3588 +3361 +991 +1063 +3588 +991 +4340 +1161 +3588 +3361 +991 +166 +1063 +1492 +3754 +1437 +3588 +1919 +1473 +3614 +3588 +4636 +2647 +1537 +2316 +2192 +3619 +3614 +886 +166 +1722 +3588 +3772 +1063 +2532 +1722 +3778 +4727 +3588 +3613 +1473 +3588 +1537 +3772 +1902 +1971 +1487 +1065 +2532 +1746 +3756 +1131 +2147 +1063 +2532 +3588 +1510 +1722 +3588 +4636 +4727 +916 +1909 +3739 +2309 +3756 +1562 +235 +1902 +2443 +2666 +3588 +2349 +5259 +3588 +2222 +1161 +3588 +2716 +1473 +1519 +846 +3778 +2316 +3588 +1325 +1473 +3588 +728 +3588 +4151 +3767 +2292 +3842 +2532 +1492 +3754 +1736 +1722 +3588 +4983 +1553 +575 +3588 +2962 +1063 +1223 +4102 +4043 +3756 +1223 +1491 +1161 +2292 +2532 +2106 +3123 +1553 +1537 +3588 +4983 +2532 +1736 +4314 +3588 +2962 +1352 +2532 +5389 +1535 +1736 +1535 +1553 +2101 +846 +1510 +1063 +3588 +3956 +1473 +5319 +1715 +3588 +968 +3588 +5547 +1163 +2443 +2865 +1538 +3588 +1223 +3588 +4983 +4314 +3739 +4238 +1535 +18 +1535 +5337 +3767 +1492 +3588 +5401 +3588 +2962 +444 +3982 +1161 +2316 +5319 +1161 +1679 +2532 +1722 +3588 +4893 +4771 +5319 +3756 +3825 +1438 +4921 +4771 +235 +874 +2745 +1325 +4771 +5228 +1473 +2443 +2192 +4314 +3588 +1722 +4383 +2744 +2532 +3361 +1722 +2588 +1063 +1535 +1839 +2316 +1535 +4993 +4771 +1063 +3588 +26 +3588 +5547 +4912 +1473 +2919 +3778 +3754 +1520 +5228 +3956 +599 +686 +3588 +3956 +599 +2532 +5228 +3956 +599 +2443 +3588 +2198 +2198 +3371 +1438 +235 +3588 +5228 +846 +599 +2532 +1453 +5620 +1473 +575 +3588 +3568 +3762 +1492 +2596 +4561 +1487 +2532 +1097 +2596 +4561 +5547 +235 +3568 +3765 +1097 +5620 +1487 +5100 +1722 +5547 +2537 +2937 +3588 +744 +3928 +3708 +1096 +2537 +1161 +3588 +3956 +1537 +3588 +2316 +3588 +2644 +1473 +1438 +1223 +5547 +2532 +1325 +1473 +3588 +1248 +3588 +2643 +5613 +3754 +2316 +1510 +2644 +1722 +5547 +2889 +1438 +3361 +3049 +846 +3588 +3900 +846 +2532 +5087 +1722 +1473 +3588 +3056 +3588 +2643 +3767 +5228 +5547 +4243 +5613 +3588 +2316 +3870 +1223 +1473 +1189 +5228 +5547 +2644 +3588 +2316 +3588 +3361 +1097 +266 +5228 +1473 +266 +4160 +2443 +1473 +1096 +1343 +2316 +1722 +846 +1161 +4903 +2532 +3870 +3361 +1519 +2756 +3588 +5485 +3588 +2316 +1209 +4771 +1063 +3004 +2540 +1184 +1873 +4771 +2532 +1722 +2250 +4991 +997 +4771 +3708 +3568 +2540 +2144 +3708 +3568 +2250 +4991 +3367 +4349 +1722 +3367 +1325 +2443 +3361 +3469 +3588 +1248 +235 +1722 +3956 +4921 +1438 +5613 +2316 +1249 +1722 +5281 +4183 +1722 +2347 +1722 +318 +1722 +4730 +1722 +4127 +1722 +5438 +1722 +181 +1722 +2873 +1722 +70 +1722 +3521 +1722 +54 +1722 +1108 +1722 +3115 +1722 +5544 +1722 +4151 +40 +1722 +26 +505 +1722 +3056 +225 +1722 +1411 +2316 +1223 +3588 +3696 +3588 +1343 +3588 +1188 +2532 +710 +1223 +1391 +2532 +819 +1223 +1426 +2532 +2162 +5613 +4108 +2532 +227 +5613 +50 +2532 +1921 +5613 +599 +2532 +3708 +2198 +5613 +3811 +2532 +3361 +2289 +5613 +3076 +1161 +104 +5463 +5613 +4434 +1161 +4183 +4148 +5613 +3367 +2192 +2532 +3956 +2722 +2881 +3588 +4750 +1473 +455 +4314 +4771 +3588 +2588 +1473 +4115 +3756 +4729 +1722 +1473 +1161 +4729 +1722 +3588 +4698 +4771 +1161 +3588 +846 +489 +5613 +5043 +3004 +4115 +2532 +4771 +3361 +1096 +2086 +571 +1063 +5101 +3352 +1343 +2532 +458 +2228 +5101 +2842 +5457 +4314 +4655 +1161 +5101 +4857 +5547 +4314 +955 +2228 +5101 +3310 +4103 +3326 +571 +1161 +5101 +4783 +3485 +2316 +3326 +1497 +1063 +1473 +3485 +2316 +2198 +1510 +2531 +3004 +3588 +2316 +3754 +1774 +1722 +846 +2532 +1704 +2532 +1510 +846 +2316 +2532 +846 +1510 +1473 +2992 +1352 +1831 +1537 +3319 +846 +2532 +873 +2532 +169 +3361 +680 +3004 +2962 +2504 +1523 +4771 +2532 +1510 +4771 +1519 +3962 +2532 +4771 +1510 +1473 +1519 +5207 +2532 +2364 +3004 +2962 +3841 +3767 +27 +2192 +3778 +3588 +1860 +2511 +1438 +575 +3956 +3436 +4561 +2532 +4151 +2005 +42 +1722 +5401 +2316 +5562 +1473 +3762 +91 +3762 +5351 +3762 +4122 +4314 +2633 +3756 +3004 +1063 +4302 +3754 +1722 +3588 +2588 +1473 +1510 +1519 +3588 +4880 +2532 +4800 +4183 +1473 +3954 +4314 +4771 +4183 +1473 +2746 +5228 +4771 +4137 +3588 +3874 +5248 +3588 +5479 +1909 +3956 +3588 +2347 +1473 +1063 +2532 +2064 +1473 +1519 +3109 +3762 +2192 +425 +3588 +4561 +1473 +235 +1722 +3956 +2346 +1855 +3163 +2081 +5401 +235 +3588 +3870 +3588 +5011 +3588 +2316 +3870 +1473 +1722 +3588 +3952 +5103 +1161 +3756 +3440 +1722 +3588 +3952 +846 +235 +2532 +1722 +3588 +3874 +3739 +3870 +1909 +4771 +312 +1473 +3588 +4771 +1972 +3588 +4771 +3602 +3588 +4771 +2205 +5228 +1473 +5620 +1473 +3123 +5463 +3754 +1487 +2532 +3076 +4771 +1722 +3588 +1992 +3756 +3338 +1487 +2532 +3338 +991 +3754 +3588 +1992 +1565 +1487 +2532 +4314 +5610 +3076 +4771 +3568 +5463 +3756 +3754 +3076 +235 +3754 +3076 +1519 +3341 +1063 +3076 +2596 +2316 +2443 +1722 +3367 +2210 +1537 +1473 +1063 +3588 +2596 +2316 +3077 +3341 +1519 +4991 +278 +2038 +1161 +3588 +3588 +2889 +3077 +2288 +2716 +1063 +3708 +846 +3778 +3588 +2596 +2316 +3076 +2716 +4771 +4214 +4710 +235 +627 +235 +24 +235 +5401 +235 +1972 +235 +2205 +235 +1557 +1722 +3956 +4921 +1438 +53 +1510 +3588 +4229 +686 +1487 +2532 +1125 +4771 +3756 +1752 +3588 +91 +3761 +1752 +3588 +91 +235 +1752 +3588 +5319 +3588 +4710 +4771 +3588 +5228 +1473 +4314 +4771 +1799 +3588 +2316 +1223 +3778 +3870 +1161 +1909 +3588 +3874 +1473 +4057 +3123 +5463 +1909 +3588 +5479 +5103 +3754 +373 +3588 +4151 +846 +575 +3956 +4771 +3754 +1487 +5100 +846 +5228 +4771 +2744 +3756 +2617 +235 +5613 +3956 +1722 +225 +2980 +4771 +3779 +2532 +3588 +2746 +1473 +1909 +5103 +225 +1096 +2532 +3588 +4698 +846 +4057 +1519 +4771 +1510 +363 +3588 +3956 +4771 +5218 +5613 +3326 +5401 +2532 +5156 +1209 +846 +5463 +3754 +1722 +3956 +2292 +1722 +4771 +1161 +80 +1107 +4771 +3588 +5485 +3588 +2316 +3588 +1325 +1722 +3588 +1577 +3588 +3109 +3754 +1722 +4183 +1382 +2347 +3588 +4050 +3588 +5479 +846 +2532 +3588 +2596 +899 +4432 +846 +4052 +1519 +3588 +4149 +3588 +572 +846 +3140 +3754 +2596 +1411 +2532 +3844 +1411 +830 +3326 +4183 +3874 +1189 +1473 +3588 +5485 +2532 +3588 +2842 +3588 +1248 +3588 +1519 +3588 +40 +2532 +3756 +2531 +1679 +235 +1438 +1325 +4412 +3588 +2962 +2532 +1473 +1223 +2307 +2316 +1519 +3588 +3870 +1473 +5103 +2443 +2531 +4278 +3779 +2532 +2005 +1519 +4771 +2532 +3588 +5485 +3778 +235 +5618 +1722 +3956 +4052 +4102 +2532 +3056 +2532 +1108 +2532 +3956 +4710 +2532 +3588 +1537 +1473 +1722 +4771 +26 +2443 +2532 +1722 +3778 +3588 +5485 +4052 +3756 +2596 +2003 +3004 +235 +1223 +3588 +2087 +4710 +2532 +3588 +3588 +5212 +26 +1103 +1381 +1063 +1097 +3588 +5485 +3588 +2962 +1473 +2424 +5547 +3754 +1223 +4771 +4433 +4145 +1510 +2443 +4771 +3588 +1565 +4432 +4147 +2532 +1106 +1722 +3778 +1325 +1063 +3778 +4771 +4851 +3748 +3756 +3440 +3588 +4160 +235 +2532 +3588 +2309 +4278 +575 +4070 +1161 +3570 +2532 +3588 +4160 +2005 +3704 +2509 +3588 +4288 +3588 +2309 +3779 +2532 +3588 +2005 +1537 +3588 +2192 +1063 +1487 +3588 +4288 +4295 +2526 +1437 +2192 +2144 +3756 +2526 +3756 +2192 +1063 +3756 +2443 +243 +425 +4771 +2347 +235 +1537 +2471 +1722 +3588 +3568 +2540 +3588 +4771 +4051 +1519 +3588 +1565 +5303 +2443 +2532 +3588 +1565 +4051 +1096 +1519 +3588 +4771 +5303 +3704 +1096 +2471 +2531 +1125 +3588 +3588 +4183 +3756 +4121 +2532 +3588 +3588 +3641 +3756 +1641 +1161 +5485 +3588 +2316 +3588 +1325 +3588 +846 +4710 +5228 +4771 +1722 +3588 +2588 +5103 +3754 +3303 +3588 +3874 +1209 +1161 +4705 +5225 +830 +1831 +4314 +4771 +1161 +4842 +3326 +846 +3588 +80 +3739 +3588 +1868 +1722 +3588 +2098 +1223 +3956 +3588 +1577 +1161 +3756 +3440 +235 +2532 +5500 +5259 +3588 +1577 +4898 +1473 +1722 +3588 +5485 +3778 +3588 +1247 +5259 +1473 +4314 +3588 +846 +3588 +2962 +1391 +2532 +4288 +1473 +4724 +3778 +3361 +5100 +1473 +3469 +1722 +3588 +100 +3778 +3588 +1247 +5259 +1473 +1063 +4306 +2570 +3756 +3440 +1799 +2962 +235 +2532 +1799 +444 +1161 +4842 +846 +3588 +80 +1473 +3739 +1381 +1722 +4183 +4178 +4705 +1510 +1161 +3570 +4183 +4705 +4006 +4183 +3588 +1519 +4771 +1535 +5228 +5103 +2844 +1699 +2532 +1519 +4771 +4904 +1535 +80 +1473 +652 +1577 +1391 +5547 +3767 +3588 +1732 +3588 +26 +4771 +2532 +1473 +2746 +5228 +4771 +1519 +846 +1731 +1519 +4383 +3588 +1577 +1063 +3303 +4012 +3588 +1248 +3588 +1519 +3588 +40 +4053 +1473 +1510 +3588 +1125 +4771 +1063 +1492 +3588 +4288 +4771 +3739 +5228 +4771 +2744 +3110 +3754 +882 +3903 +575 +4070 +2532 +3588 +4771 +2205 +2042 +3588 +4119 +1161 +3992 +3588 +80 +2443 +3361 +3588 +2745 +1473 +3588 +5228 +4771 +2758 +1722 +3588 +3313 +3778 +2443 +2531 +3004 +3903 +1510 +3361 +4458 +1437 +2064 +4862 +1473 +3110 +2532 +2147 +4771 +532 +2617 +1473 +2443 +3361 +3004 +4771 +1722 +3588 +5287 +3778 +3767 +316 +2233 +3870 +3588 +80 +2443 +4281 +1519 +4771 +2532 +4294 +3588 +4279 +2129 +4771 +3778 +2092 +1510 +3779 +5613 +2129 +2532 +3361 +5613 +4124 +1161 +3778 +3588 +4687 +5340 +5340 +2532 +2325 +2532 +3588 +4687 +1909 +2129 +1909 +2129 +2532 +2325 +1538 +2531 +4255 +3588 +2588 +3361 +1537 +3077 +2228 +1537 +318 +1063 +2431 +1395 +25 +3588 +2316 +1161 +1414 +3588 +2316 +3956 +5485 +4052 +1519 +4771 +2443 +1722 +3956 +3842 +3956 +841 +2192 +4052 +1519 +3956 +2041 +18 +2531 +1125 +4650 +1325 +3588 +3993 +3588 +1343 +846 +3306 +1519 +3588 +165 +1161 +3588 +2023 +4690 +3588 +4687 +2532 +740 +1519 +1035 +5524 +2532 +4129 +3588 +4703 +4771 +2532 +837 +3588 +1081 +3588 +1343 +4771 +1722 +3956 +4148 +1519 +3956 +572 +3748 +2716 +1223 +1473 +2169 +3588 +2316 +3754 +3588 +1248 +3588 +3009 +3778 +3756 +3440 +1510 +4322 +3588 +5303 +3588 +40 +235 +2532 +4052 +1223 +4183 +2169 +3588 +2316 +1223 +3588 +1382 +3588 +1248 +3778 +1392 +3588 +2316 +1909 +3588 +5292 +3588 +3671 +4771 +1519 +3588 +2098 +3588 +5547 +2532 +572 +3588 +2842 +1519 +846 +2532 +1519 +3956 +2532 +846 +1162 +5228 +4771 +1971 +4771 +1223 +3588 +5235 +5485 +3588 +2316 +1909 +4771 +5485 +3588 +2316 +1909 +3588 +411 +846 +1431 +1161 +846 +1473 +3972 +3870 +4771 +1223 +3588 +4240 +2532 +1932 +3588 +5547 +3739 +3303 +2596 +4383 +5011 +1722 +4771 +1161 +548 +2292 +1519 +4771 +1161 +1189 +3588 +3361 +3918 +2292 +3588 +4006 +3739 +3049 +5111 +1909 +5100 +3588 +3049 +1473 +5613 +2596 +4561 +4043 +1063 +1722 +4561 +4043 +3756 +2596 +4561 +4754 +1063 +3588 +3696 +3588 +4752 +1473 +3756 +4559 +235 +1415 +3588 +2316 +4314 +2506 +3794 +2507 +3053 +2532 +3956 +5313 +1869 +2596 +3588 +1108 +3588 +2316 +2532 +163 +3956 +3540 +1519 +3588 +5218 +3588 +5547 +2532 +1722 +2092 +2192 +1556 +3956 +3876 +3752 +4137 +4771 +3588 +5218 +3588 +2596 +4383 +991 +1487 +5100 +3982 +1438 +5547 +1510 +3778 +3049 +3825 +1909 +1438 +3754 +2531 +846 +5547 +3779 +2532 +1473 +1063 +1437 +5037 +4053 +5100 +2744 +4012 +3588 +1849 +1473 +3739 +1325 +3588 +2962 +1519 +3619 +2532 +3756 +1519 +2506 +4771 +3756 +153 +2443 +3361 +1380 +5613 +302 +1629 +4771 +1223 +3588 +1992 +3754 +5346 +3303 +3588 +1992 +926 +2532 +2478 +1161 +3588 +3952 +3588 +4983 +772 +2532 +3588 +3056 +1848 +3778 +3049 +3588 +5108 +3754 +3634 +1510 +3588 +3056 +1223 +1992 +548 +5108 +2532 +3918 +3588 +2041 +1063 +3756 +5111 +1469 +2228 +4793 +1438 +5100 +3588 +1438 +4921 +235 +846 +1722 +1438 +1438 +3354 +2532 +4793 +1438 +1438 +3756 +4920 +1161 +1473 +3756 +1519 +3588 +280 +2744 +235 +2596 +3588 +3358 +3588 +2583 +3739 +3307 +1473 +3588 +2316 +3358 +2185 +891 +2532 +4771 +1063 +3756 +5613 +3361 +2185 +1519 +4771 +5239 +1438 +1063 +891 +2532 +4771 +5348 +1722 +3588 +2098 +3588 +5547 +3756 +1519 +3588 +280 +2744 +1722 +245 +2873 +1161 +1680 +2192 +837 +3588 +4102 +4771 +1722 +4771 +3170 +2596 +3588 +2583 +1473 +1519 +4050 +1519 +3588 +5238 +4771 +2097 +3756 +1722 +245 +2583 +1519 +3588 +2092 +2744 +1161 +3588 +2744 +1722 +2962 +2744 +1063 +3756 +3588 +1438 +4921 +1565 +1510 +1384 +235 +3739 +3588 +2962 +4921 +3785 +430 +1473 +3398 +5100 +877 +235 +2532 +430 +1473 +1063 +2206 +4771 +2316 +2205 +1063 +718 +4771 +1520 +435 +3933 +53 +3936 +3588 +5547 +1161 +5399 +3361 +4458 +5613 +3588 +3789 +1818 +2096 +1722 +3588 +3834 +846 +5351 +3588 +3540 +4771 +575 +3588 +572 +2532 +3588 +54 +3588 +1519 +5547 +1063 +3303 +1487 +3588 +2064 +2784 +243 +2424 +3739 +3756 +2784 +2228 +2983 +4151 +2087 +3739 +3756 +2983 +2228 +2098 +2087 +3739 +3756 +1209 +2573 +430 +1063 +3049 +3367 +5302 +3588 +5228 +652 +1161 +1487 +2532 +2399 +3588 +3056 +235 +3756 +3588 +1108 +235 +1722 +3956 +5319 +1722 +3956 +1519 +4771 +2228 +266 +4160 +1683 +5013 +2443 +4771 +5312 +3754 +1432 +3588 +3588 +2316 +2098 +2097 +4771 +243 +1577 +4813 +2983 +3800 +4314 +3588 +4771 +1248 +2532 +3918 +4314 +4771 +2532 +5302 +3756 +2655 +3762 +1063 +3588 +5303 +1473 +4322 +3588 +80 +2064 +575 +3109 +2532 +1722 +3956 +4 +1683 +4771 +5083 +2532 +5083 +1510 +225 +5547 +1722 +1473 +3754 +3588 +2746 +3778 +3756 +5420 +1519 +1473 +1722 +3588 +2824 +3588 +882 +1223 +5101 +3754 +3756 +25 +4771 +3588 +2316 +1492 +1161 +3739 +4160 +2532 +4160 +2443 +1581 +3588 +874 +3588 +2309 +874 +2443 +1722 +3739 +2744 +2147 +2531 +2532 +1473 +1063 +3588 +5108 +5570 +2040 +1386 +3345 +1519 +652 +5547 +2532 +3756 +2295 +1063 +846 +3588 +4567 +3345 +1519 +32 +5457 +3767 +3756 +3173 +1487 +2532 +3588 +1249 +846 +3345 +5613 +1249 +1343 +3739 +3588 +5056 +1510 +2596 +3588 +2041 +846 +3825 +3004 +3361 +5100 +1380 +1473 +878 +1510 +1161 +1487 +1490 +2579 +5613 +878 +1209 +1473 +2443 +2504 +3398 +5100 +2744 +3739 +2980 +3756 +2596 +2962 +2980 +235 +5613 +1722 +877 +1722 +3778 +3588 +5287 +3588 +2746 +1893 +4183 +2744 +2596 +3588 +4561 +2504 +2744 +1063 +2234 +430 +3588 +878 +5429 +1510 +1063 +430 +1487 +5100 +4771 +2615 +1487 +5100 +2719 +1487 +5100 +2983 +1487 +5100 +1869 +1487 +5100 +1519 +4383 +4771 +1194 +2596 +819 +3004 +5613 +3754 +1473 +770 +1161 +302 +1722 +3739 +5100 +5111 +1722 +877 +3004 +5111 +2504 +1445 +1510 +2504 +2475 +1510 +2504 +4690 +11 +1510 +2504 +1249 +5547 +1510 +3912 +2980 +5228 +1473 +1722 +2873 +4057 +1722 +5438 +4057 +1722 +4127 +5234 +1722 +2288 +4178 +5259 +2453 +3999 +5062 +3844 +1520 +2983 +5151 +4463 +530 +3034 +5151 +3489 +3574 +1722 +3588 +1037 +4160 +3597 +4178 +2794 +4215 +2794 +3027 +2794 +1537 +1085 +2794 +1537 +1484 +2794 +1722 +4172 +2794 +1722 +2047 +2794 +1722 +2281 +2794 +1722 +5569 +2873 +2532 +3449 +1722 +70 +4178 +1722 +3042 +2532 +1373 +1722 +3521 +4178 +1722 +5592 +2532 +1132 +5565 +3588 +3924 +3588 +1999 +1473 +3588 +2596 +2250 +3588 +3308 +3956 +3588 +1577 +5101 +770 +2532 +3756 +770 +5101 +4624 +2532 +3756 +1473 +4448 +1487 +2744 +1163 +3588 +3588 +769 +1473 +2744 +3588 +2316 +2532 +3962 +3588 +2962 +2424 +3588 +1510 +2128 +1519 +3588 +165 +1492 +3754 +3756 +5574 +1722 +1154 +3588 +1481 +702 +3588 +935 +5432 +3588 +4172 +1153 +4084 +1473 +2532 +1223 +2376 +1722 +4553 +5465 +1223 +3588 +5038 +2532 +1628 +3588 +5495 +846 +2744 +1163 +3303 +3756 +4851 +1161 +2064 +1519 +3701 +2532 +602 +2962 +1492 +444 +1722 +5547 +1535 +1722 +4983 +3756 +1492 +1535 +1622 +3588 +4983 +3756 +1492 +3588 +2316 +1492 +4253 +2094 +1180 +726 +3588 +5108 +2193 +5154 +3772 +2532 +1492 +3588 +5108 +444 +1535 +1722 +4983 +1535 +5565 +3588 +4983 +3756 +1492 +3588 +2316 +1492 +3754 +726 +1519 +3588 +3857 +2532 +191 +731 +4487 +3739 +2980 +3756 +1832 +444 +5228 +3588 +5108 +2744 +1161 +5228 +1683 +3756 +2744 +1487 +3361 +1722 +3588 +769 +1063 +1437 +2309 +2744 +3756 +1510 +878 +1063 +225 +2046 +1161 +5339 +3361 +5100 +1519 +1473 +3049 +5228 +3739 +991 +1473 +2228 +191 +1537 +1473 +2532 +3588 +5236 +3588 +602 +1352 +2443 +3361 +5229 +1325 +1473 +4647 +3588 +4561 +32 +4567 +2443 +1473 +2852 +2443 +3361 +5229 +5228 +3778 +5151 +3588 +2962 +3870 +2443 +868 +575 +1473 +2532 +2046 +1473 +714 +4771 +3588 +5485 +1473 +1063 +3588 +1411 +1722 +769 +5055 +3767 +2236 +3123 +2744 +1722 +3588 +769 +2443 +1981 +1909 +1473 +3588 +1411 +3588 +5547 +1352 +2106 +1722 +769 +1722 +5196 +1722 +318 +1722 +1375 +2532 +4730 +5228 +5547 +1063 +3752 +770 +5119 +1415 +1510 +1096 +878 +4771 +1473 +315 +1063 +1473 +3784 +5259 +4771 +4921 +1063 +3762 +5302 +3588 +5228 +652 +1487 +2532 +3762 +1510 +3303 +3588 +4592 +3588 +652 +2716 +1722 +4771 +1722 +3956 +5281 +5037 +4592 +2532 +5059 +2532 +1411 +1063 +5101 +1510 +3739 +2274 +5228 +3588 +3062 +1577 +1487 +3361 +3754 +846 +1473 +3756 +2655 +4771 +5483 +1473 +3588 +93 +3778 +3708 +5154 +3778 +2093 +2192 +2064 +4314 +4771 +2532 +3756 +2655 +1063 +3756 +2212 +3588 +4771 +235 +4771 +1063 +3756 +3784 +3588 +5043 +3588 +1118 +2343 +235 +3588 +1118 +3588 +5043 +1161 +1473 +2236 +1159 +2532 +1550 +5228 +3588 +5590 +4771 +1487 +4057 +4771 +25 +2276 +25 +1161 +1510 +1473 +3756 +2599 +4771 +235 +5225 +3835 +1388 +4771 +2983 +3361 +5100 +3739 +649 +4314 +4771 +1223 +846 +4122 +4771 +3870 +5103 +2532 +4882 +3588 +80 +3385 +4122 +4771 +5103 +3756 +3588 +846 +4151 +4043 +3756 +3588 +846 +2487 +3819 +1380 +3754 +4771 +626 +2713 +2316 +1722 +5547 +2980 +1161 +27 +3588 +3956 +5228 +3588 +4771 +3619 +1063 +5399 +3361 +4458 +2064 +3756 +3634 +2309 +2147 +4771 +2504 +2147 +4771 +3634 +3756 +2309 +3361 +4458 +2054 +2205 +2372 +2052 +2636 +5587 +5450 +181 +3361 +3825 +2064 +1473 +5013 +1473 +3588 +2316 +1473 +4314 +4771 +2532 +3996 +4183 +3588 +4258 +2532 +3361 +3340 +1909 +3588 +167 +2532 +4202 +2532 +766 +3739 +4238 +5154 +3778 +2064 +4314 +4771 +1909 +4750 +1417 +3144 +2532 +5140 +2476 +3956 +4487 +4302 +2532 +4302 +5613 +3918 +3588 +1208 +2532 +548 +3568 +3588 +4258 +2532 +3588 +3062 +3956 +3754 +1437 +2064 +1519 +3588 +3825 +3756 +5339 +1893 +2212 +1382 +3588 +1722 +1473 +2980 +5547 +3739 +1519 +4771 +3756 +770 +235 +1414 +1722 +4771 +1063 +2532 +4717 +1537 +769 +235 +2198 +1537 +1411 +2316 +1063 +2532 +1473 +770 +1722 +846 +235 +2198 +4862 +846 +1537 +1411 +2316 +1519 +4771 +1438 +3985 +1487 +1510 +1722 +3588 +4102 +1438 +1381 +2228 +3756 +1921 +1438 +3754 +2424 +5547 +1722 +4771 +1487 +3385 +96 +1510 +1161 +1679 +3754 +1097 +3754 +1473 +3756 +1510 +96 +1161 +2172 +4314 +3588 +2316 +3361 +4160 +4771 +2556 +3367 +3756 +2443 +1473 +1384 +5316 +235 +2443 +4771 +3588 +2570 +4160 +1161 +1473 +5613 +96 +1510 +1063 +3756 +1410 +5100 +2596 +3588 +225 +235 +5228 +3588 +225 +1063 +5463 +3752 +1473 +770 +1161 +4771 +1415 +1510 +2532 +2172 +3778 +3588 +4771 +2676 +1223 +3778 +3778 +548 +1125 +2443 +3918 +3361 +664 +5530 +2596 +3588 +1849 +3739 +3588 +2962 +1325 +1473 +1519 +3619 +2532 +3756 +1519 +2506 +80 +3063 +5463 +2675 +3870 +3588 +846 +5426 +1514 +2532 +3588 +2316 +3588 +26 +2532 +1515 +1510 +3326 +4771 +782 +240 +1722 +40 +5370 +782 +4771 +3588 +40 +3956 +3588 +5485 +3588 +2962 +2424 +5547 +2532 +3588 +26 +3588 +2316 +2532 +3588 +2842 +3588 +40 +4151 +3326 +3956 +4771 +3972 +652 +3756 +575 +444 +3761 +1223 +444 +235 +1223 +2424 +5547 +2532 +2316 +3962 +3588 +1453 +846 +1537 +3498 +2532 +3588 +4862 +1473 +3956 +80 +3588 +1577 +3588 +1053 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +3588 +1325 +1438 +5228 +3588 +266 +1473 +3704 +1807 +1473 +1537 +3588 +165 +3588 +1764 +4190 +2596 +3588 +2307 +3588 +2316 +2532 +3962 +1473 +3739 +3588 +1391 +1519 +3588 +165 +3588 +165 +281 +2296 +3754 +3779 +5030 +3346 +575 +3588 +2564 +4771 +1722 +5485 +5547 +1519 +2087 +2098 +3739 +3756 +1510 +243 +1487 +3361 +5100 +1510 +3588 +5015 +4771 +2532 +2309 +3344 +3588 +2098 +3588 +5547 +235 +2532 +1437 +1473 +2228 +32 +1537 +3772 +2097 +4771 +3844 +3739 +2097 +4771 +331 +1510 +5613 +4302 +2532 +737 +3825 +3004 +1487 +5100 +4771 +2097 +3844 +3739 +3880 +331 +1510 +1063 +737 +3982 +444 +2228 +3588 +2316 +2228 +2212 +444 +700 +1487 +2089 +444 +700 +302 +5547 +1401 +3756 +1510 +1063 +80 +1107 +4771 +3588 +2098 +3588 +2097 +5259 +1473 +3754 +3756 +1510 +2596 +444 +1063 +3761 +1473 +3844 +444 +3880 +846 +3777 +1321 +235 +1223 +602 +2424 +5547 +1063 +191 +3588 +1699 +391 +4218 +1722 +3588 +2454 +3754 +2596 +5236 +1377 +3588 +1577 +3588 +2316 +2532 +4199 +846 +2532 +4298 +1722 +3588 +2454 +5228 +4183 +4915 +1722 +3588 +1085 +1473 +4057 +5225 +2207 +3588 +3967 +1473 +3862 +1161 +3753 +2106 +3588 +873 +1473 +1537 +2836 +3384 +1473 +2532 +2564 +1223 +3588 +5485 +846 +601 +3588 +5207 +846 +1722 +1473 +2443 +2097 +846 +1722 +3588 +1484 +2112 +3756 +4323 +4561 +2532 +129 +3761 +424 +1519 +2414 +4314 +3588 +4253 +1473 +652 +235 +565 +1519 +688 +2532 +3825 +5290 +1519 +1154 +1899 +3326 +5140 +2094 +424 +1519 +2414 +2477 +2786 +2532 +1961 +4314 +846 +2250 +1178 +1161 +2087 +3588 +652 +3756 +3708 +1487 +3361 +2385 +3588 +80 +3588 +2962 +1161 +3739 +1125 +4771 +3708 +1799 +3588 +2316 +3754 +3756 +5574 +1899 +2064 +1519 +3588 +2824 +3588 +4947 +2532 +3588 +2791 +1161 +1510 +50 +3588 +4383 +3588 +1577 +3588 +2449 +3588 +1722 +5547 +1161 +3440 +191 +1510 +3754 +3588 +1377 +1473 +4218 +3568 +2097 +3588 +4102 +3739 +4218 +4199 +2532 +1392 +1722 +1473 +3588 +2316 +1899 +1223 +1180 +2094 +3825 +305 +1519 +2414 +3326 +921 +4838 +2532 +5103 +1161 +305 +2596 +602 +2532 +394 +846 +3588 +2098 +3739 +2784 +1722 +3588 +1484 +1161 +2596 +2398 +3588 +1380 +3361 +4458 +1519 +2756 +5143 +2228 +5143 +235 +3761 +5103 +3588 +4862 +1473 +1672 +1510 +315 +4059 +1161 +1223 +3588 +3920 +5569 +3748 +3922 +2684 +3588 +1657 +1473 +3739 +2192 +1722 +5547 +2424 +2443 +1473 +2615 +3739 +3761 +4314 +5610 +1502 +3588 +5292 +2443 +3588 +225 +3588 +2098 +1265 +4314 +4771 +1161 +575 +3588 +1380 +1510 +5100 +3697 +4218 +1510 +3762 +1473 +1308 +4383 +444 +3588 +2316 +3756 +2983 +1063 +1473 +3588 +1380 +3762 +4323 +235 +5121 +3708 +3754 +4100 +3588 +2098 +3588 +203 +2531 +4074 +3588 +4061 +1063 +3588 +1754 +4074 +1519 +651 +3588 +4061 +1754 +2532 +1473 +1519 +3588 +1484 +2532 +1097 +3588 +5485 +3588 +1325 +1473 +2385 +2532 +2786 +2532 +2491 +3588 +1380 +4769 +1510 +1188 +2842 +1325 +1473 +2532 +921 +2443 +1473 +1519 +3588 +1484 +1161 +846 +1519 +3588 +4061 +3440 +2443 +3588 +4434 +3421 +3739 +2532 +4704 +846 +3778 +4160 +1161 +3753 +2064 +2786 +1519 +490 +2596 +4383 +846 +436 +3754 +2607 +1510 +1063 +4253 +3588 +2064 +5100 +575 +2385 +3326 +3588 +1484 +4906 +1161 +3753 +2064 +5288 +2532 +873 +1438 +5399 +3588 +1537 +4061 +2532 +4942 +846 +2532 +3588 +3062 +2453 +5620 +2532 +921 +4879 +846 +3588 +5272 +235 +3753 +3708 +3754 +3756 +3716 +4314 +3588 +225 +3588 +2098 +3004 +3588 +2786 +1715 +3956 +1487 +4771 +2453 +5225 +1483 +2532 +3756 +2452 +2198 +4459 +315 +3588 +1484 +2450 +1473 +5449 +2453 +2532 +3756 +1537 +1484 +268 +1161 +1492 +3754 +3756 +1344 +444 +1537 +2041 +3551 +1437 +3361 +1223 +4102 +5547 +2424 +2532 +1473 +1519 +5547 +2424 +4100 +2443 +1344 +1537 +4102 +5547 +2532 +3756 +1537 +2041 +3551 +3754 +1537 +2041 +3551 +3756 +1344 +3956 +4561 +1161 +1487 +2212 +1344 +1722 +5547 +2147 +2532 +846 +268 +687 +5547 +266 +1249 +3361 +1096 +1063 +1487 +3739 +2647 +3778 +3825 +3618 +3848 +1683 +4921 +1063 +1473 +1223 +3551 +3551 +599 +2443 +2316 +2198 +5547 +4957 +1161 +2198 +3765 +1473 +1161 +2198 +1722 +1473 +5547 +1161 +3739 +3568 +2198 +1722 +4561 +2198 +1722 +4102 +3588 +3588 +5207 +3588 +2316 +3588 +25 +1473 +2532 +3860 +1438 +5228 +1473 +3756 +114 +3588 +5485 +3588 +2316 +1063 +1487 +1223 +3551 +1343 +686 +5547 +1432 +599 +5599 +453 +1052 +5101 +4771 +940 +3739 +2596 +3788 +2424 +5547 +4270 +4717 +2309 +3778 +3440 +3129 +575 +4771 +3588 +4151 +2983 +1537 +2041 +3551 +2228 +1537 +189 +4102 +3779 +453 +1510 +1728 +4151 +3568 +4561 +2005 +5118 +3958 +1500 +1487 +1065 +2532 +1500 +3767 +3588 +2023 +4771 +3588 +4151 +2532 +1754 +1411 +1722 +4771 +1537 +2041 +3551 +2228 +1537 +189 +4102 +2531 +11 +4100 +3588 +2316 +2532 +3049 +846 +1519 +1343 +686 +1097 +3754 +3588 +1537 +4102 +3778 +5207 +11 +1510 +1161 +3588 +1124 +4308 +3754 +1537 +4102 +1344 +3588 +1484 +3588 +2316 +4283 +3588 +11 +3754 +1757 +1722 +4771 +3956 +3588 +1484 +5620 +3588 +1537 +4102 +2127 +4862 +3588 +4103 +11 +1063 +3745 +1537 +2041 +3551 +1510 +5259 +2671 +1510 +1063 +1125 +3754 +1944 +3956 +3739 +3756 +1696 +3956 +3588 +1125 +1722 +3588 +975 +3588 +3551 +3588 +4160 +846 +1161 +3754 +1722 +3551 +3762 +1344 +3844 +3588 +2316 +1212 +3754 +3588 +1342 +1537 +4102 +2198 +1161 +3588 +3551 +3756 +1510 +1537 +4102 +235 +3588 +4160 +846 +2198 +1722 +846 +5547 +1473 +1805 +1537 +3588 +2671 +3588 +3551 +1096 +5228 +1473 +2671 +3754 +1125 +1944 +3956 +3588 +2910 +1909 +3586 +2443 +1519 +3588 +1484 +3588 +2129 +3588 +11 +1096 +1722 +2424 +5547 +2443 +3588 +1860 +3588 +4151 +2983 +1223 +3588 +4102 +80 +2596 +444 +3004 +3676 +444 +2964 +1242 +3762 +114 +2228 +1928 +1161 +2046 +3588 +1860 +3588 +11 +2532 +3588 +4690 +846 +3756 +3004 +2532 +3588 +4690 +5613 +1909 +4183 +235 +5613 +1909 +1520 +2532 +3588 +4690 +4771 +3739 +1510 +5547 +1161 +3778 +3004 +1242 +4300 +5259 +3588 +2316 +3588 +3326 +5071 +2532 +5144 +2094 +1096 +3551 +3756 +208 +1519 +3588 +2673 +3588 +1860 +1063 +1487 +1537 +3551 +3588 +2817 +3765 +1537 +1860 +1161 +3588 +11 +1223 +1860 +5483 +3588 +2316 +3767 +5101 +3588 +3551 +3588 +3847 +5484 +4369 +891 +302 +2064 +3588 +4690 +3739 +1861 +1299 +1223 +32 +1722 +5495 +3316 +1161 +3588 +3316 +1520 +3756 +1510 +1161 +3588 +2316 +1520 +1510 +3767 +3588 +3551 +2596 +3588 +1860 +3588 +2316 +3361 +1096 +1063 +1487 +1325 +3551 +3588 +1410 +2227 +302 +3689 +1537 +3551 +1510 +3588 +1343 +235 +4788 +3588 +1124 +3588 +3956 +5259 +266 +2443 +3588 +1860 +1537 +4102 +2424 +5547 +1325 +3588 +4100 +1161 +4253 +3588 +2064 +3588 +4102 +5259 +3551 +5432 +4788 +1519 +3588 +3195 +601 +4102 +5620 +3588 +3551 +3807 +1473 +1096 +1519 +5547 +2443 +1537 +4102 +1344 +1161 +2064 +3588 +4102 +3765 +5259 +3807 +1510 +1063 +3956 +5207 +2316 +1510 +1223 +3588 +4102 +1722 +5547 +2424 +1063 +3745 +1519 +5547 +907 +5547 +1746 +3756 +1762 +2453 +3761 +1672 +3756 +1762 +1401 +3761 +1658 +3756 +1762 +730 +2532 +2338 +1063 +3956 +4771 +1520 +1510 +1722 +5547 +2424 +1161 +1487 +4771 +5547 +686 +3588 +11 +4690 +1510 +2596 +1860 +2818 +1161 +3004 +1909 +3745 +5550 +3588 +2818 +3516 +1510 +3762 +1308 +1401 +2962 +3956 +1510 +235 +5259 +2012 +2532 +3623 +1510 +891 +3588 +4287 +3588 +3962 +3779 +2532 +1473 +3753 +1510 +3516 +5259 +3588 +4747 +3588 +2889 +1510 +1402 +1161 +3753 +2064 +3588 +4138 +3588 +5550 +1821 +3588 +2316 +3588 +5207 +846 +1096 +1537 +1135 +1096 +5259 +3551 +2443 +3588 +5259 +3551 +1805 +2443 +3588 +5206 +618 +1161 +3754 +1510 +5207 +1821 +3588 +2316 +3588 +4151 +3588 +5207 +846 +1519 +3588 +2588 +1473 +2896 +5 +3588 +3962 +5620 +1510 +3765 +1401 +235 +5207 +1161 +1487 +5207 +2532 +2818 +1223 +2316 +235 +3303 +5119 +3756 +1492 +2316 +1398 +3588 +5449 +3361 +1510 +2316 +1161 +3568 +1097 +2316 +1161 +3123 +1097 +5259 +2316 +4459 +1994 +3825 +1909 +3588 +772 +2532 +4434 +4747 +3739 +3825 +509 +1398 +2309 +3906 +2250 +2532 +3376 +2532 +2540 +2532 +1763 +5399 +4771 +3361 +4458 +1500 +2872 +1519 +4771 +1096 +5613 +1473 +3754 +2504 +5613 +4771 +80 +1189 +4771 +3762 +1473 +91 +1161 +1492 +3754 +1223 +769 +3588 +4561 +2097 +4771 +3588 +4386 +2532 +3756 +3588 +3986 +4771 +1722 +3588 +4561 +1473 +1848 +3761 +1609 +235 +5613 +32 +2316 +1209 +1473 +5613 +5547 +2424 +3767 +4226 +3588 +3108 +4771 +1063 +3140 +4771 +3754 +1487 +1415 +3588 +3788 +4771 +1846 +1325 +1473 +5620 +2190 +4771 +1096 +226 +4771 +2206 +4771 +3756 +2573 +235 +1576 +4771 +2309 +2443 +846 +2206 +1161 +2570 +2206 +1722 +2570 +3842 +2532 +3361 +3440 +1722 +3588 +3918 +1473 +4314 +4771 +5043 +1473 +3739 +3825 +5605 +3360 +3739 +3445 +5547 +1722 +4771 +1161 +2309 +3918 +4314 +4771 +737 +2532 +236 +3588 +5456 +1473 +3754 +639 +1722 +4771 +3004 +1473 +3588 +5259 +3551 +1510 +2309 +3588 +3551 +3756 +191 +1063 +1125 +3754 +11 +2192 +1417 +5207 +1520 +1537 +3588 +3814 +2532 +1520 +1537 +3588 +1658 +235 +3303 +3588 +1537 +3588 +3814 +2596 +4561 +1080 +1161 +3588 +1537 +3588 +1658 +1223 +3588 +1860 +3748 +1510 +238 +1063 +3778 +1510 +1417 +1242 +3303 +1520 +575 +3735 +4614 +1519 +1397 +1080 +3748 +1510 +28 +1161 +3588 +28 +4614 +3735 +1510 +1722 +3588 +688 +1161 +4960 +3588 +3568 +2419 +1063 +1398 +3326 +3588 +5043 +846 +1161 +3588 +507 +2419 +1658 +1510 +3748 +1510 +3384 +1473 +1063 +1125 +2165 +4723 +3588 +3756 +5088 +4486 +2532 +994 +3588 +3756 +5605 +3754 +4183 +3588 +5043 +3588 +2048 +3123 +2228 +3588 +2192 +3588 +435 +1161 +80 +4771 +2596 +2464 +1860 +5043 +1510 +235 +5618 +5119 +3588 +2596 +4561 +1080 +1377 +3588 +2596 +4151 +3779 +2532 +3568 +235 +5101 +3004 +3588 +1124 +1544 +3588 +3814 +2532 +3588 +5207 +846 +1063 +3756 +3361 +2816 +3588 +5207 +3588 +3814 +3326 +3588 +5207 +3588 +1658 +1352 +80 +1510 +3756 +3814 +5043 +235 +3588 +1658 +3588 +1657 +1473 +5547 +1659 +3767 +4739 +2532 +3361 +3825 +2218 +1397 +1758 +3708 +1473 +3972 +3004 +4771 +3754 +1437 +4059 +5547 +4771 +3762 +5623 +1161 +3143 +3825 +3956 +444 +4059 +3754 +3781 +1510 +3650 +3588 +3551 +4160 +2673 +575 +5547 +3748 +1722 +3551 +1344 +3588 +5485 +1601 +1063 +1473 +4151 +1537 +4102 +1680 +1343 +553 +1063 +1722 +5547 +2424 +3777 +4061 +3777 +203 +5100 +2480 +235 +4102 +1223 +26 +1754 +5143 +2573 +5101 +1465 +4771 +225 +3361 +3982 +3588 +3988 +3756 +1537 +3588 +2564 +4771 +3398 +2219 +3650 +3588 +5445 +2220 +1473 +3982 +1519 +4771 +1722 +2962 +3754 +3762 +243 +5426 +1161 +3588 +5015 +4771 +941 +3588 +2917 +1437 +3748 +1510 +1161 +80 +1487 +1473 +4061 +2089 +2784 +5101 +2089 +1377 +686 +2673 +3588 +4625 +3588 +4716 +3785 +2532 +609 +3588 +387 +4771 +1063 +4771 +1909 +1657 +2564 +80 +3440 +3361 +3588 +1657 +1519 +874 +3588 +4561 +235 +1223 +3588 +26 +1398 +240 +1063 +3588 +3956 +3551 +4137 +1722 +1520 +3056 +1722 +3588 +25 +3588 +4139 +4771 +5613 +4572 +1161 +1487 +240 +1143 +2532 +2719 +991 +3361 +5259 +240 +355 +1161 +3004 +4151 +4043 +2532 +1939 +4561 +3756 +3361 +5055 +1063 +3588 +4561 +1937 +2596 +3588 +4151 +1161 +3588 +4151 +2596 +3588 +4561 +1063 +3778 +240 +480 +2443 +3361 +1437 +3739 +2309 +3778 +4160 +1161 +1487 +4151 +71 +3756 +1510 +5259 +3551 +1161 +5318 +1510 +3588 +2041 +3588 +4561 +3748 +1510 +4202 +167 +766 +1495 +5331 +2189 +2054 +2205 +2372 +2052 +1370 +139 +5355 +3178 +2970 +2532 +3588 +3664 +3778 +3739 +4302 +4771 +2531 +4302 +3754 +3588 +3588 +5108 +4238 +932 +2316 +3756 +2816 +1161 +3588 +2590 +3588 +4151 +1510 +26 +5479 +1515 +3115 +5544 +19 +4102 +4240 +1466 +2596 +3588 +5108 +3756 +1510 +3551 +1161 +3588 +3588 +5547 +2424 +3588 +4561 +4717 +4862 +3588 +3804 +2532 +3588 +1939 +1487 +2198 +4151 +4151 +2532 +4748 +3361 +1096 +2755 +240 +4292 +240 +5354 +80 +1437 +2532 +4301 +444 +1722 +5100 +3900 +4771 +3588 +4152 +2675 +3588 +5108 +1722 +4151 +4240 +4648 +4572 +3361 +2532 +4771 +3985 +240 +3588 +922 +941 +2532 +3779 +378 +3588 +3551 +3588 +5547 +1063 +1487 +1380 +5100 +1510 +5100 +3367 +1510 +5422 +1438 +1161 +3588 +2041 +1438 +1381 +1538 +2532 +5119 +1519 +1438 +3441 +3588 +2745 +2192 +2532 +3756 +1519 +3588 +2087 +1063 +1538 +3588 +2398 +5413 +941 +1161 +2841 +3588 +2727 +3588 +3056 +3588 +2727 +1722 +3956 +18 +3361 +4105 +2316 +3756 +3456 +1063 +1437 +3739 +4687 +444 +3778 +2532 +2325 +3754 +3588 +4687 +1519 +3588 +4561 +1438 +1537 +3588 +4561 +2325 +5356 +1161 +3588 +4687 +1519 +3588 +4151 +1537 +3588 +4151 +2325 +2222 +166 +1161 +3588 +2570 +4160 +3361 +1573 +1063 +2540 +2398 +2325 +3361 +1590 +686 +3767 +5613 +2540 +2192 +2038 +3588 +18 +4314 +3956 +1161 +3122 +4314 +3588 +3609 +3588 +4102 +3708 +4080 +1121 +4771 +1125 +3588 +1699 +5495 +3745 +2309 +2146 +1722 +4561 +3778 +315 +4771 +4059 +2443 +3440 +3588 +4716 +3588 +5547 +3361 +1377 +1063 +3761 +3588 +4059 +846 +3551 +5442 +235 +2309 +4771 +4059 +2443 +1722 +3588 +5212 +4561 +2744 +1161 +1473 +3361 +1096 +2744 +1487 +3361 +1722 +3588 +4716 +3588 +2962 +1473 +2424 +5547 +1223 +3739 +1473 +2889 +4717 +2504 +2889 +1063 +5100 +1510 +3777 +4061 +3777 +203 +235 +2537 +2937 +2532 +3745 +3588 +2583 +3778 +4748 +1515 +2532 +1656 +1909 +846 +2532 +1909 +3588 +2474 +3588 +2316 +3588 +3064 +2873 +1473 +3367 +3930 +1063 +1473 +3588 +4742 +3588 +2424 +1722 +3588 +4983 +1473 +941 +3588 +5485 +3588 +2962 +1473 +2424 +5547 +3326 +3588 +4151 +4771 +80 +281 +3972 +652 +5547 +2424 +1223 +2307 +2316 +3588 +40 +3588 +1510 +1722 +2181 +2532 +4103 +1722 +5547 +2424 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +2128 +3588 +2316 +2532 +3962 +3588 +2962 +1473 +2424 +5547 +3588 +2127 +1473 +1722 +3956 +2129 +4152 +1722 +3588 +2032 +1722 +5547 +2531 +1586 +1473 +1722 +846 +4253 +2602 +2889 +1510 +1473 +40 +2532 +299 +2714 +846 +1722 +26 +4309 +1473 +1519 +5206 +1223 +2424 +5547 +1519 +846 +2596 +3588 +2107 +3588 +2307 +846 +1519 +1868 +1391 +3588 +5485 +846 +3739 +5487 +1473 +1722 +3588 +25 +1722 +3739 +2192 +3588 +629 +1223 +3588 +129 +846 +3588 +859 +3588 +3900 +2596 +3588 +4149 +3588 +5485 +846 +3739 +4052 +1519 +1473 +1722 +3956 +4678 +2532 +5428 +1107 +1473 +3588 +3466 +3588 +2307 +846 +2596 +3588 +2107 +846 +3739 +4388 +1722 +846 +1519 +3622 +3588 +4138 +3588 +2540 +346 +3588 +3956 +1722 +3588 +5547 +3588 +1909 +3588 +3772 +2532 +3588 +1909 +3588 +1093 +1722 +846 +1722 +3739 +2532 +2820 +4309 +2596 +4286 +3588 +3588 +3956 +1754 +2596 +3588 +1012 +3588 +2307 +846 +1519 +3588 +1510 +1519 +1868 +1391 +846 +1473 +3588 +4276 +1722 +3588 +5547 +1722 +3739 +2532 +4771 +191 +3588 +3056 +3588 +225 +3588 +2098 +3588 +4991 +4771 +1722 +3739 +2532 +4100 +4972 +3588 +4151 +3588 +1860 +3588 +40 +3739 +1510 +728 +3588 +2817 +1473 +1519 +629 +3588 +4047 +1519 +1868 +3588 +1391 +846 +1223 +3778 +2504 +191 +3588 +2596 +4771 +4102 +1722 +3588 +2962 +2424 +2532 +3588 +26 +3588 +1519 +3956 +3588 +40 +3756 +3973 +2168 +5228 +4771 +3417 +4160 +1909 +3588 +4335 +1473 +2443 +3588 +2316 +3588 +2962 +1473 +2424 +5547 +3588 +3962 +3588 +1391 +1325 +4771 +4151 +4678 +2532 +602 +1722 +1922 +846 +5461 +3588 +3788 +3588 +2588 +4771 +1519 +3588 +1492 +4771 +5101 +1510 +3588 +1680 +3588 +2821 +846 +5101 +3588 +4149 +3588 +1391 +3588 +2817 +846 +1722 +3588 +40 +2532 +5101 +3588 +5235 +3174 +3588 +1411 +846 +1519 +1473 +3588 +4100 +2596 +3588 +1753 +3588 +2904 +3588 +2479 +846 +3739 +1754 +1722 +3588 +5547 +1453 +846 +1537 +3498 +2532 +2523 +1722 +1188 +846 +1722 +3588 +2032 +5231 +3956 +746 +2532 +1849 +2532 +1411 +2532 +2963 +2532 +3956 +3686 +3687 +3756 +3440 +1722 +3588 +165 +3778 +235 +2532 +1722 +3588 +3195 +2532 +3956 +5293 +5259 +3588 +4228 +846 +2532 +846 +1325 +2776 +5228 +3956 +3588 +1577 +3748 +1510 +3588 +4983 +846 +3588 +4138 +3588 +3588 +3956 +1722 +3956 +4137 +2532 +4771 +1510 +3498 +3588 +3900 +2532 +3588 +266 +4771 +1722 +3739 +4218 +4043 +2596 +3588 +165 +3588 +2889 +3778 +2596 +3588 +758 +3588 +1849 +3588 +109 +3588 +4151 +3588 +3568 +1754 +1722 +3588 +5207 +3588 +543 +1722 +3739 +2532 +1473 +3956 +390 +4218 +1722 +3588 +1939 +3588 +4561 +1473 +4160 +3588 +2307 +3588 +4561 +2532 +3588 +1271 +2532 +1510 +5043 +3709 +5449 +5613 +2532 +3588 +3062 +1161 +3588 +2316 +4145 +1510 +1722 +1656 +1223 +3588 +4183 +26 +846 +3739 +25 +1473 +2532 +1510 +1473 +3498 +3588 +3900 +4806 +3588 +5547 +5485 +1510 +4982 +2532 +4891 +2532 +4776 +1722 +3588 +2032 +1722 +5547 +2424 +2443 +1731 +1722 +3588 +165 +3588 +1904 +3588 +5235 +4149 +3588 +5485 +846 +1722 +5544 +1909 +1473 +1722 +5547 +2424 +1063 +3588 +5485 +1510 +4982 +1223 +4102 +2532 +3778 +3756 +1537 +4771 +2316 +3588 +1435 +3756 +1537 +2041 +2443 +3361 +5100 +2744 +1063 +1510 +846 +4161 +2936 +1722 +5547 +2424 +1909 +2041 +18 +3739 +4282 +3588 +2316 +2443 +1722 +846 +4043 +1352 +3421 +3754 +4218 +4771 +3588 +1484 +1722 +4561 +3588 +3004 +203 +5259 +3588 +3004 +4061 +1722 +4561 +5499 +3754 +1510 +3588 +2540 +1565 +5565 +5547 +526 +3588 +4174 +3588 +2474 +2532 +3581 +3588 +1242 +3588 +1860 +1680 +3361 +2192 +2532 +112 +1722 +3588 +2889 +1161 +3570 +1722 +5547 +2424 +4771 +3588 +4218 +1510 +3112 +1096 +1451 +1722 +3588 +129 +3588 +5547 +1063 +846 +1510 +3588 +1515 +1473 +3588 +4160 +3588 +297 +1520 +2532 +3588 +3320 +3588 +5418 +3588 +2189 +3089 +1722 +3588 +4561 +846 +3588 +3551 +3588 +1785 +1722 +1378 +2673 +2443 +3588 +1417 +2936 +1722 +846 +1519 +1520 +2537 +444 +4160 +1515 +2532 +604 +3588 +297 +1722 +1520 +4983 +3588 +2316 +1223 +3588 +4716 +615 +3588 +2189 +1722 +846 +2532 +2064 +2097 +1515 +4771 +3588 +3112 +2532 +1515 +3588 +1451 +3754 +1223 +846 +2192 +3588 +4318 +3588 +297 +1722 +1520 +4151 +4314 +3588 +3962 +686 +3767 +3765 +1510 +3581 +2532 +3941 +235 +1510 +4847 +3588 +40 +2532 +3609 +3588 +2316 +2026 +1909 +3588 +2310 +3588 +652 +2532 +4396 +1510 +204 +846 +5547 +2424 +1722 +3739 +3956 +3619 +4883 +837 +1519 +3485 +40 +1722 +2962 +1722 +3739 +2532 +4771 +4925 +1519 +2732 +3588 +2316 +1722 +4151 +3778 +5484 +1473 +3972 +3588 +1198 +3588 +5547 +2424 +5228 +4771 +3588 +1484 +1487 +1065 +191 +3588 +3622 +3588 +5485 +3588 +2316 +3588 +1325 +1473 +1519 +4771 +3754 +2596 +602 +1107 +1473 +3588 +3466 +2531 +4270 +1722 +3641 +4314 +3739 +1410 +314 +3539 +3588 +4907 +1473 +1722 +3588 +3466 +3588 +5547 +3739 +2087 +1074 +3756 +1107 +3588 +5207 +3588 +444 +5613 +3568 +601 +3588 +40 +652 +846 +2532 +4396 +1722 +4151 +1510 +3588 +1484 +4789 +2532 +4954 +2532 +4830 +3588 +1860 +1722 +5547 +2424 +1223 +3588 +2098 +3739 +1249 +1096 +2596 +3588 +1431 +3588 +5485 +3588 +2316 +3588 +1325 +1473 +2596 +3588 +1753 +3588 +1411 +846 +1473 +3588 +1647 +3956 +40 +1325 +3588 +5485 +3778 +3588 +1484 +2097 +3588 +421 +4149 +3588 +5547 +2532 +5461 +5101 +3588 +3622 +3588 +3466 +3588 +613 +575 +3588 +165 +1722 +3588 +2316 +3588 +3588 +3956 +2936 +2443 +1107 +3568 +3588 +746 +2532 +3588 +1849 +1722 +3588 +2032 +1223 +3588 +1577 +3588 +4182 +4678 +3588 +2316 +2596 +4286 +3588 +165 +3739 +4160 +1722 +3588 +5547 +2424 +3588 +2962 +1473 +1722 +3739 +2192 +3588 +3954 +2532 +4318 +1722 +4006 +1223 +3588 +4102 +846 +1352 +154 +3361 +1573 +1722 +3588 +2347 +1473 +5228 +4771 +3748 +1510 +1391 +4771 +3778 +5484 +2578 +3588 +1119 +1473 +4314 +3588 +3962 +1537 +3739 +3956 +3965 +1722 +3772 +2532 +1909 +1093 +3687 +2443 +1325 +4771 +2596 +3588 +4149 +3588 +1391 +846 +1411 +2901 +1223 +3588 +4151 +846 +1519 +3588 +2080 +444 +2730 +3588 +5547 +1223 +3588 +4102 +1722 +3588 +2588 +4771 +1722 +26 +4492 +2532 +2311 +2443 +1840 +2638 +4862 +3956 +3588 +40 +5101 +3588 +4114 +2532 +3372 +2532 +5311 +2532 +899 +5037 +1097 +3588 +5235 +3588 +1108 +26 +3588 +5547 +2443 +4137 +1519 +3956 +3588 +4138 +3588 +2316 +1161 +3588 +1410 +4160 +5228 +5228 +3956 +3739 +154 +2228 +3539 +2596 +3588 +1411 +3588 +1754 +1722 +1473 +846 +3588 +1391 +1722 +3588 +1577 +2532 +1722 +5547 +2424 +1519 +3956 +3588 +1074 +3588 +165 +3588 +165 +281 +3767 +3870 +4771 +1473 +3588 +1198 +1722 +2962 +516 +4043 +3588 +2821 +3739 +2564 +3326 +3956 +5012 +2532 +4240 +3326 +3115 +430 +240 +1722 +26 +4704 +5083 +3588 +1775 +3588 +4151 +1722 +3588 +4886 +3588 +1515 +1520 +4983 +2532 +1520 +4151 +2531 +2532 +2564 +1722 +1520 +1680 +3588 +2821 +4771 +1520 +2962 +1520 +4102 +1520 +908 +1520 +2316 +2532 +3962 +3956 +3588 +1909 +3956 +2532 +1223 +3956 +2532 +1722 +3956 +1161 +1520 +1538 +1473 +1325 +3588 +5485 +2596 +3588 +3358 +3588 +1431 +3588 +5547 +1352 +3004 +305 +1519 +5311 +162 +161 +1325 +1390 +3588 +444 +1161 +3588 +305 +5101 +1510 +1487 +3361 +3754 +2532 +2597 +1519 +3588 +2737 +3313 +3588 +1093 +3588 +2597 +846 +1510 +2532 +3588 +305 +5231 +3956 +3588 +3772 +2443 +4137 +3588 +3956 +2532 +846 +1325 +3303 +3588 +652 +1161 +3588 +4396 +1161 +3588 +2099 +1161 +3588 +4166 +2532 +1320 +4314 +3588 +2677 +3588 +40 +1519 +2041 +1248 +1519 +3619 +3588 +4983 +3588 +5547 +3360 +2658 +3588 +3956 +1519 +3588 +1775 +3588 +4102 +2532 +3588 +1922 +3588 +5207 +3588 +2316 +1519 +435 +5046 +1519 +3358 +2244 +3588 +4138 +3588 +5547 +2443 +3371 +1510 +3516 +2831 +2532 +4064 +3956 +417 +3588 +1319 +1722 +3588 +2940 +3588 +444 +1722 +3834 +4314 +3588 +3180 +3588 +4106 +1161 +226 +1722 +26 +837 +3588 +3956 +1519 +846 +3739 +1510 +3588 +2776 +5547 +1537 +3739 +3956 +3588 +4983 +4883 +2532 +4822 +1223 +3956 +860 +3588 +2024 +2596 +1753 +1722 +3358 +1520 +1538 +3313 +3588 +838 +3588 +4983 +4160 +1519 +3619 +1438 +1722 +26 +3767 +3778 +3004 +2532 +3143 +1722 +2962 +3371 +4771 +4043 +2531 +2532 +3588 +1484 +4043 +1722 +3153 +3588 +3563 +846 +4656 +1510 +3588 +1271 +526 +3588 +2222 +3588 +2316 +1223 +3588 +52 +3588 +1510 +1722 +846 +1223 +3588 +4457 +3588 +2588 +846 +3748 +524 +1438 +3860 +3588 +766 +1519 +2039 +167 +3956 +1722 +4124 +1161 +4771 +3756 +3779 +3129 +3588 +5547 +1487 +1065 +846 +191 +2532 +1722 +846 +1321 +2531 +1510 +225 +1722 +3588 +2424 +659 +4771 +2596 +3588 +4387 +391 +3588 +3820 +444 +3588 +5351 +2596 +3588 +1939 +3588 +539 +1161 +365 +3588 +4151 +3588 +3563 +4771 +2532 +1746 +3588 +2537 +444 +3588 +2596 +2316 +2936 +1722 +1343 +2532 +3742 +3588 +225 +1352 +659 +3588 +5579 +2980 +225 +1538 +3326 +3588 +4139 +846 +3754 +1510 +240 +3196 +3710 +2532 +3361 +264 +3588 +2246 +3361 +1931 +1909 +3950 +4771 +3366 +1325 +5117 +3588 +1228 +3588 +2813 +3371 +2813 +1161 +3123 +2872 +2038 +3588 +2398 +5495 +3588 +18 +2443 +2192 +3330 +3588 +5532 +2192 +3956 +3056 +4550 +1537 +3588 +4750 +4771 +3361 +1607 +235 +1487 +5100 +18 +4314 +3619 +3588 +5532 +2443 +1325 +5485 +3588 +191 +2532 +3361 +3076 +3588 +4151 +3588 +40 +3588 +2316 +1722 +3739 +4972 +1519 +2250 +629 +3956 +4088 +2532 +2372 +2532 +3709 +2532 +2906 +2532 +988 +142 +575 +4771 +4862 +3956 +2549 +1161 +1096 +1519 +240 +5543 +2155 +5483 +1438 +2531 +2532 +3588 +2316 +1722 +5547 +5483 +4771 +3767 +1096 +3402 +3588 +2316 +5613 +5043 +27 +2532 +4043 +1722 +26 +2531 +2532 +3588 +5547 +25 +4771 +2532 +3860 +1438 +5228 +1473 +4376 +2532 +2378 +3588 +2316 +1519 +3744 +2175 +1161 +4202 +2532 +167 +3956 +2228 +4124 +3366 +3687 +1722 +4771 +2531 +4241 +40 +2532 +151 +2532 +3473 +2228 +2160 +3739 +3756 +433 +235 +3123 +2169 +1063 +3778 +1492 +1097 +3754 +3956 +4205 +2228 +169 +2228 +4123 +3739 +1510 +1496 +3756 +2192 +2817 +1722 +3588 +932 +3588 +5547 +2532 +2316 +3367 +4771 +538 +2756 +3056 +1063 +1223 +3778 +2064 +3588 +3709 +3588 +2316 +1909 +3588 +5207 +3588 +543 +3767 +3361 +1096 +4830 +846 +1063 +1510 +4218 +4655 +1161 +3568 +5457 +1722 +2962 +5613 +5043 +5457 +4043 +1063 +3588 +2590 +3588 +5457 +1722 +3956 +19 +2532 +1343 +2532 +225 +1381 +5101 +1510 +2101 +3588 +2962 +2532 +3361 +4790 +3588 +2041 +3588 +175 +3588 +4655 +1161 +3123 +2532 +1651 +1063 +3588 +2931 +1096 +5259 +846 +150 +1510 +2532 +3004 +1161 +3588 +3956 +1651 +5259 +3588 +5457 +5319 +1063 +3956 +3588 +5319 +5457 +1510 +1352 +3004 +1453 +3588 +2518 +2532 +450 +1537 +3588 +3498 +2532 +2017 +4771 +3588 +5547 +3767 +991 +199 +4459 +4043 +3361 +5613 +781 +235 +5613 +4680 +1805 +3588 +2540 +3754 +3588 +2250 +4190 +1510 +1223 +3778 +3361 +1096 +878 +235 +4920 +5101 +3588 +2307 +3588 +2962 +2532 +3361 +3182 +3631 +1722 +3739 +1510 +810 +235 +4137 +1722 +4151 +2980 +1438 +5568 +2532 +5215 +2532 +5603 +4152 +103 +2532 +5567 +3588 +2588 +4771 +3588 +2962 +2168 +3842 +5228 +3956 +1722 +3686 +3588 +2962 +1473 +2424 +5547 +3588 +2316 +2532 +3962 +5293 +240 +1722 +5401 +5547 +3588 +1135 +3588 +2398 +435 +5613 +3588 +2962 +3754 +435 +1510 +2776 +3588 +1135 +5613 +2532 +3588 +5547 +2776 +3588 +1577 +846 +4990 +3588 +4983 +235 +5613 +3588 +1577 +5293 +3588 +5547 +3779 +2532 +3588 +1135 +3588 +435 +1722 +3956 +3588 +435 +25 +3588 +1135 +2531 +2532 +3588 +5547 +25 +3588 +1577 +2532 +1438 +3860 +5228 +846 +2443 +846 +37 +2511 +3588 +3067 +3588 +5204 +1722 +4487 +2443 +3936 +846 +1438 +3588 +1577 +1741 +3361 +2192 +4696 +2228 +4512 +2228 +5100 +3588 +5108 +235 +2443 +1510 +40 +2532 +299 +3779 +3784 +2532 +3588 +435 +25 +3588 +1438 +1135 +5613 +3588 +1438 +4983 +3588 +25 +3588 +1438 +1135 +1438 +25 +1063 +3762 +4218 +3588 +1438 +4561 +3404 +235 +1625 +2532 +2282 +846 +2531 +2532 +3588 +5547 +3588 +1577 +3754 +1510 +3196 +3588 +4983 +846 +473 +3778 +2641 +444 +3588 +3962 +2532 +3588 +3384 +2532 +4347 +4314 +3588 +1135 +846 +2532 +1510 +3588 +1417 +1519 +4561 +1520 +3588 +3466 +3778 +3173 +1510 +1161 +1473 +3004 +1519 +5547 +2532 +1519 +3588 +1577 +4133 +2532 +4771 +3588 +2596 +1520 +1538 +3588 +1438 +1135 +3779 +25 +5613 +1438 +1161 +3588 +1135 +2443 +5399 +3588 +435 +3588 +5043 +5219 +3588 +1118 +4771 +1722 +2962 +1063 +3778 +1510 +1342 +5091 +3588 +3962 +4771 +2532 +3588 +3384 +3748 +1510 +1785 +4413 +1722 +1860 +2443 +2095 +4771 +1096 +2532 +1510 +3118 +1909 +3588 +1093 +2532 +3588 +3962 +3361 +3949 +3588 +5043 +4771 +235 +1625 +846 +1722 +3809 +2532 +3559 +2962 +3588 +1401 +5219 +3588 +2596 +4561 +2962 +3326 +5401 +2532 +5156 +1722 +572 +3588 +2588 +4771 +5613 +3588 +5547 +3361 +2596 +3787 +5613 +441 +235 +5613 +1401 +5547 +4160 +3588 +2307 +3588 +2316 +1537 +5590 +3326 +2133 +1398 +5613 +3588 +2962 +2532 +3756 +444 +1492 +3754 +1437 +1538 +5100 +18 +4160 +3778 +2865 +3844 +2962 +1535 +1401 +1535 +1658 +2532 +3588 +2962 +3588 +846 +4160 +4314 +846 +447 +3588 +547 +1492 +3754 +2532 +846 +2532 +4771 +3588 +2962 +1510 +1722 +3772 +2532 +4382 +3756 +1510 +3844 +846 +3588 +3064 +1743 +1722 +2962 +2532 +1722 +3588 +2904 +3588 +2479 +846 +1746 +3588 +3833 +3588 +2316 +4314 +3588 +1410 +4771 +2476 +4314 +3588 +3180 +3588 +1228 +3754 +1510 +1473 +3588 +3823 +3756 +4314 +129 +2532 +4561 +235 +4314 +3588 +746 +4314 +3588 +1849 +4314 +3588 +2888 +3588 +4655 +3778 +4314 +3588 +4152 +3588 +4189 +1722 +3588 +2032 +1223 +3778 +353 +3588 +3833 +3588 +2316 +2443 +1410 +436 +1722 +3588 +2250 +3588 +4190 +2532 +537 +2716 +2476 +3767 +2476 +4024 +3588 +3751 +4771 +1722 +225 +2532 +1746 +3588 +2382 +3588 +1343 +2532 +5265 +3588 +4228 +1722 +2091 +3588 +2098 +3588 +1515 +1722 +3956 +353 +3588 +2375 +3588 +4102 +1722 +3739 +1410 +3956 +3588 +956 +3588 +4190 +3588 +4448 +4570 +2532 +1209 +3588 +4030 +3588 +4992 +2532 +3588 +3162 +3588 +4151 +3739 +1510 +4487 +2316 +1223 +3956 +4335 +2532 +1162 +4336 +1722 +3956 +2540 +1722 +4151 +2532 +1519 +846 +69 +1722 +3956 +4343 +2532 +1162 +4012 +3956 +3588 +40 +2532 +5228 +1473 +2443 +1473 +1325 +3056 +1722 +457 +3588 +4750 +1473 +1722 +3954 +1107 +3588 +3466 +3588 +2098 +5228 +3739 +4243 +1722 +254 +2443 +1722 +846 +3955 +5613 +1163 +1473 +2980 +1161 +2443 +1492 +2532 +4771 +3588 +2596 +1473 +5101 +4238 +3956 +1107 +4771 +5190 +3588 +27 +80 +2532 +4103 +1249 +1722 +2962 +3739 +3992 +4314 +4771 +1519 +846 +3778 +2443 +1097 +3588 +4012 +1473 +2532 +3870 +3588 +2588 +4771 +3588 +80 +1515 +2532 +26 +3326 +4102 +575 +2316 +3962 +2532 +2962 +2424 +5547 +3588 +5485 +3326 +3956 +3588 +25 +3588 +2962 +1473 +2424 +5547 +1722 +861 +3972 +2532 +5095 +1401 +5547 +2424 +3956 +3588 +40 +1722 +5547 +2424 +3588 +1510 +1722 +5375 +4862 +1985 +2532 +1249 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +2168 +3588 +2316 +1473 +1909 +3956 +3588 +3417 +4771 +3842 +1722 +3956 +1162 +1473 +5228 +3956 +4771 +3326 +5479 +3588 +1162 +4160 +1909 +3588 +2842 +4771 +1519 +3588 +2098 +575 +3588 +4413 +2250 +891 +3588 +3568 +3982 +846 +3778 +3754 +3588 +1728 +1722 +4771 +2041 +18 +2005 +891 +2250 +5547 +2424 +2531 +1510 +1342 +1473 +3778 +5426 +5228 +3956 +4771 +1223 +3588 +2192 +1473 +1722 +3588 +2588 +4771 +5037 +1722 +3588 +1199 +1473 +2532 +1722 +3588 +627 +2532 +951 +3588 +2098 +4791 +1473 +3588 +5485 +3956 +4771 +1510 +1063 +3144 +1473 +3588 +2316 +5613 +1971 +3956 +4771 +1722 +4698 +5547 +2424 +2532 +3778 +4336 +2443 +3588 +26 +4771 +2089 +3123 +2532 +3123 +4052 +1722 +1922 +2532 +3956 +144 +1519 +3588 +1381 +4771 +3588 +1308 +2443 +1510 +1506 +2532 +677 +1519 +2250 +5547 +4137 +2590 +1343 +3588 +1223 +2424 +5547 +1519 +1391 +2532 +1868 +2316 +1161 +80 +1014 +1097 +4771 +3754 +3588 +2596 +1473 +3123 +1519 +4297 +3588 +2098 +2064 +5620 +3588 +1199 +1473 +5318 +1722 +5547 +1096 +1722 +3650 +3588 +4232 +2532 +3588 +3062 +3956 +2532 +3588 +4119 +3588 +80 +1722 +2962 +3982 +3588 +1199 +1473 +4057 +5111 +870 +3588 +3056 +3588 +2316 +2980 +3303 +5100 +2532 +1223 +5355 +2532 +2054 +1161 +5100 +2532 +1223 +2107 +3588 +5547 +2784 +3303 +3588 +1537 +26 +1492 +3754 +1519 +627 +3588 +2098 +2749 +1161 +3588 +1537 +2052 +3588 +5547 +2605 +3756 +55 +3633 +2347 +1453 +3588 +1199 +1473 +1063 +5101 +4133 +3754 +3956 +5158 +1535 +4392 +1535 +225 +5547 +2605 +2532 +1722 +3778 +5463 +235 +2532 +5463 +1063 +1492 +3754 +3778 +1473 +576 +1519 +4991 +1223 +3588 +4771 +1162 +2532 +2024 +3588 +4151 +2424 +5547 +2596 +3588 +603 +2532 +1680 +1473 +3754 +1722 +3762 +153 +235 +1722 +3956 +3954 +5613 +3842 +2532 +3568 +3170 +5547 +1722 +3588 +4983 +1473 +1535 +1223 +2222 +1535 +1223 +2288 +1063 +1473 +3588 +2198 +5547 +2532 +3588 +599 +2771 +1161 +1487 +3588 +2198 +1722 +4561 +3778 +1473 +2590 +2041 +2532 +5101 +138 +3756 +1107 +1161 +4912 +1537 +3588 +1417 +3588 +1939 +2192 +1519 +3588 +360 +2532 +4862 +5547 +1510 +1063 +4183 +3123 +2908 +1161 +3588 +1961 +3588 +4561 +316 +1223 +4771 +2532 +3778 +3982 +1492 +3754 +3306 +2532 +3887 +3956 +4771 +1519 +3588 +4771 +4297 +2532 +5479 +3588 +4102 +2443 +3588 +2745 +4771 +4052 +1722 +5547 +2424 +1722 +1473 +1223 +3588 +1699 +3952 +3825 +4314 +4771 +3440 +516 +3588 +2098 +3588 +5547 +4176 +2443 +1535 +2064 +2532 +3708 +4771 +1535 +548 +191 +3588 +4012 +4771 +3754 +4739 +1722 +1520 +4151 +1520 +5590 +4866 +3588 +4102 +3588 +2098 +2532 +3361 +4426 +1722 +3367 +5259 +3588 +480 +3748 +1510 +846 +1732 +684 +1161 +4771 +4991 +2532 +3778 +575 +2316 +3754 +4771 +5483 +3588 +5228 +5547 +3756 +3440 +3588 +1519 +846 +4100 +235 +2532 +3588 +5228 +846 +3958 +2192 +3588 +846 +73 +3634 +3708 +1722 +1473 +2532 +3568 +191 +1722 +1473 +3767 +1487 +5100 +3874 +1722 +5547 +1487 +5100 +3890 +26 +1487 +5100 +2842 +4151 +1487 +5100 +4698 +2532 +3628 +4137 +1473 +3588 +5479 +2443 +3588 +846 +5426 +3588 +846 +26 +2192 +4861 +3588 +1520 +5426 +3367 +2596 +2052 +3366 +2596 +2754 +235 +3588 +5012 +240 +2233 +5242 +1438 +3361 +3588 +1438 +1538 +4648 +235 +2532 +3588 +2087 +1538 +3778 +5426 +1722 +4771 +3739 +2532 +1722 +5547 +2424 +3739 +1722 +3444 +2316 +5225 +3756 +725 +2233 +3588 +1510 +2470 +2316 +235 +1438 +2758 +3444 +1401 +2983 +1722 +3667 +444 +1096 +2532 +4976 +2147 +5613 +444 +5013 +1438 +1096 +5255 +3360 +2288 +1161 +2288 +4716 +1352 +2532 +3588 +2316 +846 +5251 +2532 +5483 +846 +3588 +3686 +3588 +5228 +3956 +3686 +2443 +1722 +3588 +3686 +2424 +2578 +3956 +1119 +2032 +2532 +1919 +2532 +2709 +2532 +3956 +1100 +1843 +3754 +2962 +2424 +5547 +1519 +1391 +2316 +3962 +5620 +27 +1473 +2531 +3842 +5219 +5613 +3361 +1722 +3588 +3952 +1473 +3440 +235 +3568 +4183 +3123 +1722 +3588 +666 +1473 +3326 +5401 +2532 +5156 +3588 +1438 +4991 +2716 +1063 +2316 +1510 +3588 +1754 +1722 +4771 +2532 +3588 +2309 +2532 +3588 +1754 +5228 +3588 +2107 +3956 +4160 +5565 +1112 +2532 +1261 +2443 +1096 +273 +2532 +185 +5043 +2316 +299 +3319 +1074 +4646 +2532 +1294 +1722 +3739 +5316 +5613 +5458 +1722 +2889 +3056 +2222 +1907 +1519 +2745 +1473 +1519 +2250 +5547 +3754 +3756 +1519 +2756 +5143 +3761 +1519 +2756 +2872 +235 +1487 +2532 +4689 +1909 +3588 +2378 +2532 +3009 +3588 +4102 +4771 +5463 +2532 +4796 +3956 +4771 +1161 +3588 +846 +2532 +4771 +5463 +2532 +4796 +1473 +1161 +1679 +1722 +2962 +2424 +5095 +5030 +3992 +4771 +2443 +2504 +2174 +1097 +3588 +4012 +4771 +1063 +3762 +2473 +2192 +3748 +1104 +3588 +4012 +4771 +3309 +1063 +3588 +3956 +3588 +1438 +2212 +3756 +3588 +5547 +2424 +1161 +3588 +1382 +846 +1097 +3754 +5613 +3962 +5043 +4862 +1473 +1398 +1519 +3588 +2098 +3767 +3303 +1679 +3778 +3992 +5613 +302 +872 +3588 +4012 +1473 +1824 +1161 +3982 +1722 +2962 +3754 +2532 +846 +5030 +2064 +1161 +2233 +316 +1891 +3588 +80 +2532 +4904 +2532 +4961 +1473 +1161 +4771 +652 +2532 +3011 +3588 +5532 +1473 +3992 +4314 +4771 +1894 +1971 +1510 +3956 +4771 +2532 +85 +1360 +191 +3754 +770 +1063 +2532 +770 +3897 +2288 +235 +3588 +2316 +1653 +846 +1161 +3756 +846 +3441 +235 +2532 +1473 +2443 +3361 +3077 +1909 +3077 +2192 +3767 +4708 +3992 +846 +2443 +3708 +846 +3825 +5463 +2504 +253 +1510 +3767 +4327 +846 +1722 +2962 +3326 +3956 +5479 +2532 +3588 +5108 +1784 +2192 +3754 +1223 +3588 +2041 +5547 +3360 +2288 +1448 +3851 +3588 +5590 +2443 +378 +3588 +4771 +5303 +3588 +4314 +1473 +3009 +80 +1473 +3588 +3063 +5463 +1722 +2962 +3588 +846 +1125 +4771 +3303 +1473 +3756 +3636 +1161 +4771 +804 +991 +3588 +2965 +991 +3588 +2556 +2040 +991 +3588 +2699 +1063 +1510 +3588 +4061 +1473 +3588 +4151 +2316 +3000 +2532 +2744 +1722 +5547 +2424 +2532 +3756 +1722 +4561 +3982 +2539 +1473 +2192 +4006 +2532 +1722 +4561 +1487 +5100 +243 +1380 +3982 +1722 +4561 +1473 +3123 +4061 +3637 +1537 +1085 +2474 +5443 +958 +1445 +1537 +1445 +2596 +3551 +5330 +2596 +2205 +1377 +3588 +1577 +2596 +1343 +3588 +1722 +3551 +1096 +273 +235 +3748 +1510 +1473 +2771 +3778 +2233 +1223 +3588 +5547 +2209 +235 +3303 +3767 +1065 +2532 +2233 +3956 +2209 +1510 +1223 +3588 +5242 +3588 +1108 +5547 +2424 +3588 +2962 +1473 +1223 +3739 +3588 +3956 +2210 +2532 +2233 +4657 +2443 +5547 +2770 +2532 +2147 +1722 +846 +2192 +3361 +1699 +1343 +3588 +1537 +3551 +235 +3588 +1223 +4102 +5547 +3588 +1537 +2316 +1343 +1909 +3588 +4102 +3588 +1097 +846 +2532 +3588 +1411 +3588 +386 +846 +2532 +2842 +3804 +846 +4833 +3588 +2288 +846 +1487 +4458 +2658 +1519 +3588 +1815 +3588 +1537 +3498 +3756 +3754 +2235 +2983 +2228 +2235 +5048 +1161 +1377 +1487 +2532 +2638 +1909 +3739 +2532 +2638 +5259 +5547 +2424 +80 +1473 +3768 +3049 +1683 +2638 +1161 +1520 +3303 +3588 +3694 +1950 +1161 +3588 +1715 +1901 +2596 +4649 +1377 +1519 +3588 +1017 +3588 +507 +2821 +3588 +2316 +1722 +5547 +2424 +3767 +3745 +5046 +3778 +5426 +2532 +1487 +5100 +2088 +5426 +2532 +3778 +3588 +2316 +4771 +601 +4133 +1519 +3739 +5348 +3588 +846 +4748 +80 +4831 +1473 +1096 +2532 +4648 +3588 +3779 +4043 +2531 +2192 +5179 +1473 +1063 +4183 +4043 +3739 +4178 +3004 +4771 +1161 +3568 +2532 +2799 +3004 +3588 +2190 +3588 +4716 +3588 +5547 +3739 +3588 +5056 +684 +3739 +3588 +2316 +3588 +2836 +2532 +3588 +1391 +1722 +3588 +152 +846 +3588 +3588 +1919 +5426 +1063 +1473 +3588 +4175 +1722 +3772 +5225 +1537 +3739 +2532 +553 +4990 +2962 +2424 +5547 +3739 +3345 +3588 +4983 +3588 +5014 +1473 +4832 +3588 +4983 +3588 +1391 +846 +2596 +3588 +1753 +3588 +1410 +846 +2532 +5293 +846 +3588 +3956 +5620 +80 +1473 +27 +2532 +1973 +5479 +2532 +4735 +1473 +3779 +4739 +1722 +2962 +27 +2136 +3870 +2532 +4941 +3870 +3588 +846 +5426 +1722 +2962 +3483 +2065 +2532 +4771 +1103 +4805 +4815 +846 +3748 +1722 +3588 +2098 +4866 +1473 +3326 +2532 +2815 +2532 +3588 +3062 +4904 +1473 +3739 +3588 +3686 +1722 +976 +2222 +5463 +1722 +2962 +3842 +3825 +2046 +5463 +3588 +1933 +4771 +1097 +3956 +444 +3588 +2962 +1451 +3367 +3309 +235 +1722 +3956 +3588 +4335 +2532 +3588 +1162 +3326 +2169 +3588 +155 +4771 +1107 +4314 +3588 +2316 +2532 +3588 +1515 +3588 +2316 +3588 +5242 +3956 +3563 +5432 +3588 +2588 +4771 +2532 +3588 +3540 +4771 +1722 +5547 +2424 +80 +3588 +3063 +3745 +1510 +227 +3745 +4586 +3745 +1342 +3745 +53 +3745 +4375 +3745 +2163 +1487 +5100 +703 +2532 +1487 +5100 +1868 +3778 +3049 +3739 +2532 +3129 +2532 +3880 +2532 +191 +2532 +3708 +1722 +1473 +3778 +4238 +2532 +3588 +2316 +3588 +1515 +1510 +3326 +4771 +1161 +5463 +1722 +2962 +3171 +3754 +2235 +4218 +330 +3588 +5228 +1473 +5426 +1909 +3739 +2532 +5426 +1161 +170 +3756 +3754 +2596 +5304 +3004 +1063 +1473 +3129 +1722 +3739 +1510 +842 +1510 +1492 +2532 +5013 +1492 +2532 +4052 +1722 +3956 +2532 +1722 +3956 +3453 +2532 +5526 +2532 +3983 +2532 +4052 +2532 +5302 +3956 +2480 +1722 +3588 +1743 +1473 +4133 +2573 +4160 +4790 +1473 +3588 +2347 +1161 +5374 +1492 +2532 +4771 +3754 +3753 +1831 +575 +3109 +1722 +746 +3588 +2098 +3762 +1577 +1473 +2841 +1519 +3056 +1394 +2532 +3028 +1487 +3361 +4771 +3441 +3754 +2532 +1722 +2332 +2532 +530 +2532 +1364 +1519 +3588 +5532 +1473 +3992 +3756 +3754 +1934 +3588 +1390 +235 +1934 +3588 +2590 +3588 +4121 +1519 +3056 +4771 +1161 +568 +3956 +2532 +4052 +4137 +1209 +3844 +1891 +3588 +3844 +4771 +3744 +2175 +2378 +1184 +2101 +3588 +2316 +1161 +3588 +2316 +1473 +4137 +3956 +5532 +4771 +2596 +3588 +4149 +846 +1722 +1391 +1722 +5547 +2424 +1161 +3588 +2316 +2532 +3962 +1473 +3588 +1391 +1519 +3588 +165 +3588 +165 +281 +782 +3956 +40 +1722 +5547 +2424 +782 +4771 +3588 +4862 +1473 +80 +782 +4771 +3956 +3588 +40 +1161 +3122 +3588 +1537 +3588 +2541 +3614 +3588 +5485 +3588 +2962 +2424 +5547 +3326 +3588 +4151 +4771 +3972 +652 +5547 +2424 +1223 +2307 +2316 +2532 +5095 +3588 +80 +3588 +1722 +2857 +40 +2532 +4103 +80 +1722 +5547 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2168 +3588 +2316 +3962 +3588 +2962 +1473 +2424 +5547 +3842 +4012 +4771 +4336 +191 +3588 +4102 +4771 +1722 +5547 +2424 +2532 +3588 +26 +3739 +2192 +1519 +3956 +3588 +40 +1223 +3588 +1680 +3588 +606 +4771 +1722 +3588 +3772 +3739 +4257 +1722 +3588 +3056 +3588 +225 +3588 +2098 +3588 +3918 +1519 +4771 +2531 +2532 +1722 +3956 +3588 +2889 +1510 +2592 +2532 +837 +2531 +2532 +1722 +4771 +575 +3739 +2250 +191 +2532 +1921 +3588 +5485 +3588 +2316 +1722 +225 +2531 +3129 +575 +1889 +3588 +27 +4889 +1473 +3739 +1510 +4103 +5228 +4771 +1249 +3588 +5547 +3588 +2532 +1213 +1473 +3588 +4771 +26 +1722 +4151 +1223 +3778 +2532 +1473 +575 +3739 +2250 +191 +3756 +3973 +5228 +4771 +4336 +2532 +154 +2443 +4137 +3588 +1922 +3588 +2307 +846 +1722 +3956 +4678 +2532 +4907 +4152 +4043 +516 +3588 +2962 +1519 +3956 +699 +1722 +3956 +2041 +18 +2592 +2532 +837 +3588 +1922 +3588 +2316 +1722 +3956 +1411 +1412 +2596 +3588 +2904 +3588 +1391 +846 +1519 +3956 +5281 +2532 +3115 +3326 +5479 +2168 +3588 +3962 +3588 +2427 +4771 +1519 +3588 +3310 +3588 +2819 +3588 +40 +1722 +3588 +5457 +3739 +4506 +1473 +1537 +3588 +1849 +3588 +4655 +2532 +3179 +1519 +3588 +932 +3588 +5207 +3588 +26 +846 +1722 +3739 +2192 +3588 +629 +3588 +859 +3588 +266 +3739 +1510 +1504 +3588 +2316 +3588 +517 +4416 +3956 +2937 +3754 +1722 +846 +2936 +3588 +3956 +1722 +3588 +3772 +2532 +1909 +3588 +1093 +3588 +3707 +2532 +3588 +517 +1535 +2362 +1535 +2963 +1535 +746 +1535 +1849 +3588 +3956 +1223 +846 +2532 +1519 +846 +2936 +2532 +846 +1510 +4253 +3956 +2532 +3588 +3956 +1722 +846 +4921 +2532 +846 +1510 +3588 +2776 +3588 +4983 +3588 +1577 +3739 +1510 +746 +4416 +1537 +3588 +3498 +2443 +1096 +846 +1722 +3956 +4409 +3754 +2106 +1722 +846 +3956 +3588 +4138 +2730 +2532 +1223 +846 +604 +3588 +3956 +1519 +846 +1517 +1223 +3588 +129 +3588 +4716 +846 +1223 +846 +1535 +3588 +1909 +3588 +1093 +1535 +3588 +1722 +3588 +3772 +2532 +4771 +4218 +1510 +526 +2532 +2190 +3588 +1271 +1722 +3588 +2041 +3588 +4190 +1161 +3570 +604 +1722 +3588 +4983 +3588 +4561 +846 +1223 +3588 +2288 +3936 +4771 +40 +2532 +299 +2532 +410 +2714 +846 +1487 +1065 +1961 +3588 +4102 +2311 +2532 +1476 +2532 +3361 +3334 +575 +3588 +1680 +3588 +2098 +3739 +191 +3588 +2784 +1722 +3956 +2937 +3588 +5259 +3588 +3772 +3739 +1249 +1096 +1473 +3972 +3568 +5463 +1722 +3588 +3804 +5228 +4771 +2532 +466 +3588 +5303 +3588 +2347 +3588 +5547 +1722 +3588 +4561 +1473 +5228 +3588 +4983 +846 +3739 +1510 +3588 +1577 +3739 +1249 +1096 +1473 +2596 +3588 +3622 +3588 +2316 +3588 +1325 +1473 +1519 +4771 +4137 +3588 +3056 +3588 +2316 +3588 +3466 +3588 +613 +575 +3588 +165 +2532 +575 +3588 +1074 +1161 +3568 +5319 +3588 +40 +846 +3739 +2309 +3588 +2316 +1107 +5101 +3588 +4149 +3588 +1391 +3588 +3466 +3778 +1722 +3588 +1484 +3739 +1510 +5547 +1722 +4771 +3588 +1680 +3588 +1391 +3739 +1473 +2605 +3560 +3956 +444 +2532 +1321 +3956 +444 +1722 +3956 +4678 +2443 +3936 +3956 +444 +5046 +1722 +5547 +1519 +3739 +2532 +2872 +75 +2596 +3588 +1753 +846 +3588 +1754 +1722 +1473 +1722 +1411 +1063 +2309 +4771 +1492 +2245 +73 +2192 +5228 +4771 +2532 +3588 +1722 +2993 +2532 +3745 +3756 +3708 +3588 +4383 +1473 +1722 +4561 +2443 +3870 +3588 +2588 +846 +4822 +1722 +26 +2532 +1519 +3956 +4149 +3588 +4136 +3588 +4907 +1519 +1922 +3588 +3466 +3588 +2316 +5547 +1722 +3739 +1510 +3956 +3588 +2344 +3588 +4678 +2532 +1108 +614 +3778 +3004 +2443 +3367 +4771 +3884 +1722 +4086 +1063 +1487 +2532 +3588 +4561 +548 +235 +3588 +4151 +4862 +4771 +1510 +5463 +2532 +991 +4771 +3588 +5010 +2532 +3588 +4733 +3588 +1519 +5547 +4102 +4771 +3767 +5613 +3880 +3588 +5547 +2424 +3588 +2962 +1722 +846 +4043 +4492 +2532 +2026 +1722 +846 +2532 +950 +3588 +4102 +2531 +1321 +4052 +1722 +2169 +991 +3361 +5100 +1510 +3588 +4812 +4771 +1223 +3588 +5385 +2532 +2756 +539 +2596 +3588 +3862 +3588 +444 +2596 +3588 +4747 +3588 +2889 +2532 +3756 +2596 +5547 +3754 +1722 +846 +2730 +3956 +3588 +4138 +3588 +2320 +4985 +2532 +1510 +4137 +1722 +846 +3739 +1510 +3588 +2776 +3956 +746 +2532 +1849 +1722 +3739 +2532 +4059 +4061 +886 +1722 +3588 +555 +3588 +4983 +3588 +4561 +1722 +3588 +4061 +3588 +5547 +4916 +846 +1722 +3588 +908 +1722 +3739 +2532 +4891 +1223 +3588 +4102 +3588 +1753 +3588 +2316 +3588 +1453 +846 +1537 +3498 +2532 +4771 +3498 +1510 +3588 +3900 +2532 +3588 +203 +3588 +4561 +4771 +4806 +4771 +4862 +846 +5483 +1473 +3956 +3588 +3900 +1813 +3588 +2596 +1473 +5498 +3588 +1378 +3739 +1510 +5227 +1473 +2532 +846 +142 +1537 +3588 +3319 +4338 +846 +3588 +4716 +554 +3588 +746 +2532 +3588 +1849 +1165 +1722 +3954 +2358 +846 +1722 +846 +3767 +3361 +5100 +4771 +2919 +1722 +1035 +2532 +1722 +4213 +2228 +1722 +3313 +1859 +2228 +3561 +2228 +4521 +3739 +1510 +4639 +3588 +3195 +1161 +3588 +4983 +3588 +5547 +3367 +4771 +2603 +2309 +1722 +5012 +2532 +2356 +3588 +32 +3739 +3708 +1687 +1500 +5448 +5259 +3588 +3563 +3588 +4561 +846 +2532 +3756 +2902 +3588 +2776 +1537 +3739 +3956 +3588 +4983 +1223 +3588 +860 +2532 +4886 +2023 +2532 +4822 +837 +3588 +838 +3588 +2316 +1487 +599 +4862 +5547 +575 +3588 +4747 +3588 +2889 +5101 +5613 +2198 +1722 +2889 +1379 +3361 +680 +3366 +1089 +3366 +2345 +3739 +1510 +3956 +1519 +5356 +3588 +671 +2596 +3588 +1778 +2532 +1319 +3588 +444 +3748 +1510 +3303 +2192 +3056 +4678 +1722 +1479 +2532 +5012 +2532 +857 +4983 +3756 +1722 +5092 +5100 +4314 +4140 +3588 +4561 +3767 +1487 +4891 +3588 +5547 +3588 +507 +2212 +3757 +3588 +5547 +1510 +2521 +1722 +1188 +3588 +2316 +3588 +507 +5426 +3361 +3588 +1909 +3588 +1093 +1063 +599 +2532 +3588 +2222 +4771 +2928 +4862 +3588 +5547 +1722 +3588 +2316 +3752 +5319 +3588 +5547 +3588 +2222 +1473 +5119 +2532 +4771 +4862 +846 +5319 +1722 +1391 +3767 +3499 +3588 +3196 +3588 +1909 +3588 +1093 +4202 +167 +3806 +1939 +2556 +2532 +3588 +4124 +3748 +1510 +1495 +1223 +3739 +2064 +3588 +3709 +3588 +2316 +1722 +3739 +2532 +4771 +4043 +4218 +3753 +2198 +1722 +3778 +1161 +3570 +659 +2532 +4771 +3588 +3956 +3709 +2372 +2549 +988 +148 +1537 +3588 +4750 +4771 +3361 +5574 +1519 +240 +554 +3588 +3820 +444 +4862 +3588 +4234 +846 +2532 +1746 +3588 +3501 +3588 +341 +1519 +1922 +2596 +1504 +3588 +2936 +846 +3699 +3756 +1762 +1672 +2532 +2453 +4061 +2532 +203 +915 +4658 +1401 +1658 +235 +3956 +2532 +1722 +3956 +5547 +3767 +1746 +5613 +1588 +3588 +2316 +40 +2532 +25 +4698 +3628 +5544 +5012 +4240 +3115 +430 +240 +2532 +5483 +1438 +1437 +5100 +4314 +5100 +2192 +3437 +2531 +2532 +3588 +2962 +5483 +4771 +3779 +2532 +4771 +1161 +1909 +3956 +3778 +3588 +26 +3739 +1510 +4886 +3588 +5047 +2532 +3588 +1515 +3588 +5547 +1018 +1722 +3588 +2588 +4771 +1519 +3739 +2532 +2564 +1722 +1520 +4983 +2532 +2170 +1096 +3588 +3056 +3588 +5547 +1774 +1722 +4771 +4146 +1722 +3956 +4678 +1321 +2532 +3560 +1438 +5568 +5215 +5603 +4152 +1722 +3588 +5485 +103 +1722 +3588 +2588 +4771 +3588 +2316 +2532 +3956 +5100 +1437 +3739 +4160 +1722 +3056 +2228 +1722 +2041 +3956 +1722 +3686 +2962 +2424 +2168 +3588 +2316 +3962 +1223 +846 +3588 +1135 +5293 +3588 +435 +5613 +433 +1722 +2962 +3588 +435 +25 +3588 +1135 +2532 +3361 +4087 +4314 +846 +3588 +5043 +5219 +3588 +1118 +2596 +3956 +1063 +3778 +2101 +1510 +1722 +2962 +3588 +3962 +3361 +2042 +3588 +5043 +4771 +2443 +3361 +120 +3588 +1401 +5219 +2596 +3956 +3588 +2596 +4561 +2962 +3361 +1722 +3787 +5613 +441 +235 +1722 +572 +2588 +5399 +3588 +2962 +1437 +3739 +4160 +1537 +5590 +2038 +5613 +3588 +2962 +2532 +3756 +444 +1492 +3754 +575 +2962 +618 +3588 +469 +3588 +2817 +3588 +2962 +5547 +1398 +1063 +3588 +91 +2865 +3739 +91 +2532 +3756 +1510 +4382 +3588 +2962 +3588 +1342 +2532 +3588 +2471 +3588 +1401 +3930 +1492 +3754 +2532 +4771 +2192 +2962 +1722 +3772 +3588 +4335 +4342 +1127 +1722 +846 +1722 +2169 +4336 +260 +2532 +4012 +1473 +2443 +3588 +2316 +455 +1473 +2374 +3588 +3056 +2980 +3588 +3466 +3588 +5547 +1223 +3739 +2532 +1210 +2443 +5319 +846 +5613 +1163 +1473 +2980 +1722 +4678 +4043 +4314 +3588 +1854 +3588 +2540 +1805 +3588 +3056 +4771 +3842 +1722 +5485 +217 +741 +1492 +4459 +1163 +4771 +1520 +1538 +611 +3588 +2596 +1473 +3956 +1107 +4771 +5190 +3588 +27 +80 +2532 +4103 +1249 +2532 +4889 +1722 +2962 +3739 +3992 +4314 +4771 +1519 +846 +3778 +2443 +1097 +3588 +4012 +1473 +2532 +3870 +3588 +2588 +4771 +4862 +3682 +3588 +4103 +2532 +27 +80 +3739 +1510 +1537 +4771 +4771 +1107 +3956 +3588 +5602 +782 +4771 +708 +3588 +4869 +1473 +2532 +3138 +3588 +431 +921 +4012 +3739 +2983 +1785 +1437 +2064 +4314 +4771 +1209 +846 +2532 +2424 +3588 +3004 +2459 +3588 +1510 +1537 +4061 +3778 +3441 +4904 +1519 +3588 +932 +3588 +2316 +3748 +1096 +1473 +3931 +782 +4771 +1889 +3588 +1537 +4771 +1401 +5547 +2424 +3842 +75 +5228 +4771 +1722 +3588 +4335 +2443 +2476 +5046 +2532 +4135 +1722 +3956 +2307 +3588 +2316 +1063 +3140 +846 +3754 +2192 +4183 +4192 +5228 +4771 +2532 +3588 +1722 +2993 +2532 +3588 +1722 +2404 +782 +4771 +3065 +3588 +2395 +3588 +27 +2532 +1214 +782 +3588 +1722 +2993 +80 +2532 +3564 +2532 +3588 +2596 +3624 +846 +1577 +2532 +3752 +314 +3844 +4771 +3588 +1992 +4160 +2443 +2532 +1722 +3588 +2994 +1577 +314 +2532 +2443 +3588 +1537 +2993 +2532 +4771 +314 +2532 +3004 +751 +991 +3588 +1248 +3739 +3880 +1722 +2962 +2443 +846 +4137 +3588 +783 +3588 +1699 +5495 +3972 +3421 +1473 +3588 +1199 +3588 +5485 +3326 +4771 +3972 +2532 +4610 +2532 +5095 +3588 +1577 +2331 +1722 +2316 +3962 +2532 +2962 +2424 +5547 +4771 +5485 +2532 +1515 +2168 +3588 +2316 +3842 +4012 +3956 +4771 +3417 +4160 +1909 +3588 +4335 +1473 +89 +3421 +4771 +3588 +2041 +3588 +4102 +2532 +3588 +2873 +3588 +26 +2532 +3588 +5281 +3588 +1680 +3588 +2962 +1473 +2424 +5547 +1715 +3588 +2316 +2532 +3962 +1473 +1492 +3588 +1589 +4771 +80 +25 +5259 +3588 +2316 +3754 +3588 +2098 +1473 +1096 +1519 +4771 +3756 +1722 +3056 +3440 +235 +2532 +1722 +1411 +2532 +1722 +4151 +40 +2532 +4136 +4183 +2531 +1492 +3634 +1096 +1722 +4771 +1223 +4771 +2532 +4771 +1096 +3402 +1473 +2532 +3588 +2962 +1209 +3588 +3056 +1722 +2347 +4183 +3326 +5479 +4151 +40 +5620 +1096 +4771 +5179 +3956 +3588 +4100 +1722 +3588 +3109 +2532 +1722 +3588 +882 +1063 +575 +4771 +1837 +3588 +3056 +3588 +2962 +3756 +3440 +1722 +3588 +3109 +2532 +882 +235 +1722 +3956 +5117 +3588 +4102 +4771 +3588 +4314 +3588 +2316 +1831 +5620 +3361 +5532 +2192 +1473 +2980 +5100 +1063 +846 +4012 +1473 +518 +3697 +1529 +2192 +4314 +4771 +2532 +4459 +1994 +4314 +3588 +2316 +575 +3588 +1497 +1398 +2316 +2198 +2532 +228 +2532 +362 +1537 +3588 +3772 +3588 +5207 +846 +3739 +1453 +1537 +3588 +3498 +2424 +3588 +4506 +1473 +1537 +3588 +3709 +3588 +2064 +1063 +80 +846 +1492 +3588 +1529 +1473 +3588 +4314 +4771 +3754 +3756 +2756 +1096 +235 +4310 +2532 +5195 +1722 +5375 +2531 +1492 +3955 +1722 +3588 +2316 +1473 +2980 +4314 +4771 +3588 +2098 +3588 +2316 +1722 +4183 +73 +1063 +3588 +3874 +1473 +3756 +1537 +4106 +3761 +1537 +167 +3761 +1722 +1388 +235 +2531 +1381 +5259 +3588 +2316 +4100 +3588 +2098 +3779 +2980 +5613 +700 +3756 +444 +235 +2316 +3588 +1381 +3588 +2588 +1473 +1063 +3777 +4218 +1722 +3056 +2850 +1096 +2531 +1492 +3777 +1722 +4392 +4124 +2316 +3144 +3777 +2212 +1537 +444 +1391 +3777 +575 +4771 +3777 +575 +243 +1410 +1722 +922 +1510 +5613 +5547 +652 +235 +1096 +2261 +1722 +3319 +4771 +5613 +1437 +5162 +2282 +3588 +1438 +5043 +3779 +2442 +4771 +2106 +3330 +4771 +3756 +3440 +3588 +2098 +3588 +2316 +235 +2532 +3588 +1438 +5590 +1360 +27 +1473 +1096 +1063 +80 +3421 +3588 +2873 +1473 +2532 +3588 +3449 +3571 +2532 +2250 +2038 +4314 +3588 +3361 +1912 +5100 +4771 +2784 +1519 +4771 +3588 +2098 +3588 +2316 +3144 +4771 +2532 +3588 +2316 +5613 +3743 +2532 +1346 +2532 +274 +4771 +3588 +4100 +1096 +2509 +1492 +5613 +1520 +1538 +4771 +5613 +3962 +5043 +1438 +3870 +2532 +3888 +2532 +3143 +4771 +1519 +3588 +4043 +4771 +516 +3588 +2316 +3588 +2564 +4771 +1519 +3588 +1438 +932 +2532 +1391 +2532 +1223 +3778 +2532 +1473 +2168 +3588 +2316 +89 +3754 +3880 +3056 +189 +3844 +1473 +3588 +2316 +1209 +3756 +3056 +444 +235 +2531 +230 +1510 +3056 +2316 +3739 +2532 +1754 +1722 +4771 +3588 +4100 +1063 +80 +4771 +1096 +3402 +3588 +1577 +3588 +2316 +3588 +1510 +1722 +3588 +2449 +1722 +5547 +2424 +3754 +3588 +846 +3958 +2532 +4771 +5259 +3588 +2398 +4853 +2531 +2532 +846 +5259 +3588 +2453 +3588 +615 +2532 +3588 +2962 +2424 +2532 +3588 +4396 +2532 +1473 +1559 +2532 +2316 +3361 +700 +2532 +3956 +444 +1727 +2967 +1473 +3588 +1484 +2980 +2443 +4982 +1519 +3588 +378 +846 +3588 +266 +3842 +1161 +5348 +1909 +846 +3588 +3709 +1519 +5056 +1161 +80 +1473 +642 +575 +4771 +4314 +2540 +5610 +4383 +3756 +2588 +4057 +4704 +3588 +4383 +4771 +3708 +1722 +4183 +1939 +1360 +2309 +2064 +4314 +4771 +3303 +1473 +3972 +2532 +530 +2532 +1364 +2532 +1465 +1473 +3588 +4567 +1063 +5101 +1473 +1680 +2228 +5479 +2228 +4735 +2746 +2228 +3780 +2532 +4771 +1715 +3588 +2962 +1473 +2424 +1722 +3588 +846 +3952 +1063 +4771 +1510 +3588 +1391 +1473 +2532 +3588 +5479 +1352 +3371 +4722 +2106 +2641 +1722 +116 +3441 +2532 +3992 +5095 +3588 +80 +1473 +2532 +1249 +3588 +2316 +1722 +3588 +2098 +3588 +5547 +1519 +3588 +4741 +2532 +3870 +4771 +5228 +3588 +4102 +4771 +3588 +3367 +4525 +1722 +3588 +2347 +3778 +1063 +846 +1492 +3754 +1519 +3778 +2749 +1063 +2532 +3753 +4314 +4771 +1510 +4302 +4771 +3754 +3195 +2346 +2531 +2532 +1096 +2532 +1492 +1223 +3778 +2504 +3371 +4722 +3992 +1519 +3588 +1097 +3588 +4102 +4771 +3361 +4458 +3985 +4771 +3588 +3985 +2532 +1519 +2756 +1096 +3588 +2873 +1473 +1161 +737 +2064 +5095 +4314 +1473 +575 +4771 +2532 +2097 +1473 +3588 +4102 +2532 +3588 +26 +4771 +2532 +3754 +2192 +3417 +1473 +18 +3842 +1971 +1473 +3708 +2509 +2532 +1473 +4771 +80 +1223 +3778 +3870 +1909 +4771 +1909 +3956 +3588 +318 +2532 +2347 +1473 +1223 +3588 +4771 +4102 +3754 +3568 +2198 +1437 +4771 +4739 +1722 +2962 +1063 +1410 +5101 +2169 +3588 +2316 +467 +4012 +4771 +1909 +3956 +3588 +5479 +3739 +5463 +1223 +4771 +1715 +3588 +2316 +1473 +3571 +2532 +2250 +5228 +1189 +1519 +3588 +3708 +4771 +3588 +4383 +2532 +2675 +3588 +5303 +3588 +4102 +4771 +1161 +846 +3588 +2316 +2532 +3962 +1473 +2532 +3588 +2962 +1473 +2424 +2720 +3588 +3598 +1473 +4314 +4771 +1161 +4771 +3588 +2962 +4121 +2532 +4052 +3588 +26 +1519 +240 +2532 +1519 +3956 +2509 +2532 +1473 +1519 +4771 +1519 +3588 +4741 +4771 +3588 +2588 +273 +1722 +42 +1715 +3588 +2316 +2532 +3962 +1473 +1722 +3588 +3952 +3588 +2962 +1473 +2424 +3326 +3956 +3588 +40 +846 +3767 +80 +3063 +2065 +2532 +3870 +4771 +1722 +2962 +2424 +2443 +2531 +3880 +3844 +1473 +3588 +4459 +1163 +4771 +4043 +2532 +700 +2316 +2531 +2532 +4043 +2443 +4052 +3123 +1063 +1492 +5101 +3852 +1325 +4771 +1223 +3588 +2962 +2424 +1063 +3778 +1510 +2307 +3588 +2316 +3588 +38 +4771 +568 +4771 +575 +3588 +4202 +1492 +1538 +4771 +3588 +1438 +4632 +2932 +1722 +38 +2532 +5092 +3361 +1722 +3806 +1939 +2509 +2532 +3588 +1484 +3588 +3361 +1492 +3588 +2316 +3588 +3361 +5233 +2532 +4122 +1722 +3588 +4229 +3588 +80 +846 +1360 +1558 +2962 +4012 +3956 +3778 +2531 +2532 +4302 +4771 +2532 +1263 +1063 +3756 +2564 +1473 +3588 +2316 +1909 +167 +235 +1722 +38 +5105 +3588 +114 +114 +3756 +444 +235 +3588 +2316 +3588 +2532 +1325 +3588 +4151 +846 +3588 +40 +1519 +4771 +1161 +4012 +3588 +5360 +3756 +5532 +2192 +1125 +4771 +1063 +846 +4771 +2312 +1510 +1519 +3588 +25 +240 +1063 +2532 +4160 +846 +1519 +3956 +3588 +80 +1722 +3650 +3588 +3109 +1161 +80 +3870 +4771 +4052 +3123 +2532 +5389 +2270 +2532 +4238 +3588 +2398 +2532 +2038 +3588 +5495 +4771 +2531 +4771 +3853 +2443 +4043 +2156 +4314 +3588 +1854 +2532 +3367 +5532 +2192 +1161 +80 +3756 +2309 +4771 +50 +4012 +3588 +2837 +2443 +3361 +3076 +2531 +2532 +3588 +3062 +3588 +3361 +2192 +1680 +1063 +1487 +4100 +3754 +2424 +599 +2532 +450 +3779 +2532 +3588 +2316 +3588 +2837 +1223 +3588 +2424 +71 +4862 +846 +1063 +3778 +4771 +3004 +1722 +3056 +2962 +3754 +1473 +3588 +2198 +3588 +4035 +1519 +3588 +3952 +3588 +2962 +3756 +3361 +5348 +3588 +2837 +3754 +846 +3588 +2962 +1722 +2752 +1722 +5456 +743 +2532 +1722 +4536 +2316 +2597 +575 +3772 +2532 +3588 +3498 +1722 +5547 +450 +4412 +1899 +1473 +3588 +2198 +3588 +4035 +260 +4862 +846 +726 +1722 +3507 +1519 +529 +3588 +2962 +1519 +109 +2532 +3779 +3842 +4862 +2962 +1510 +5620 +3870 +240 +1722 +3588 +3056 +3778 +1161 +80 +4012 +3588 +5550 +2532 +3588 +2540 +3756 +5532 +2192 +4771 +1125 +1063 +846 +199 +1492 +3754 +5613 +2812 +1722 +3571 +2250 +2962 +3779 +2064 +3752 +3004 +1515 +2532 +803 +5119 +160 +3639 +846 +1987 +5618 +3588 +5604 +3588 +1722 +1064 +2192 +2532 +3756 +3361 +1628 +1161 +80 +4771 +3756 +1510 +1722 +4655 +2443 +3588 +2250 +4771 +2638 +5613 +2812 +1063 +3956 +4771 +1510 +5207 +5457 +2532 +5207 +2250 +3756 +1510 +3571 +3761 +4655 +686 +3767 +3361 +2518 +5613 +3588 +3062 +235 +1127 +2532 +3525 +1063 +3588 +2518 +3571 +2518 +2532 +3588 +3182 +3571 +3184 +1161 +1473 +2250 +1510 +3525 +1746 +2382 +4102 +2532 +26 +2532 +4030 +1680 +4991 +3754 +3756 +5087 +1473 +3588 +2316 +1519 +3709 +235 +1519 +4047 +4991 +1223 +3588 +2962 +1473 +2424 +5547 +3588 +599 +4012 +1473 +2443 +1535 +1127 +1535 +2518 +260 +4862 +846 +2198 +1352 +3870 +240 +2532 +3618 +1520 +3588 +1520 +2531 +2532 +4160 +1161 +80 +2065 +4771 +1492 +3588 +2872 +1722 +4771 +2532 +4291 +4771 +1722 +2962 +2532 +3560 +4771 +2532 +2233 +846 +4057 +1722 +26 +1223 +3588 +2041 +846 +1514 +1722 +1438 +1161 +80 +3870 +4771 +3560 +3588 +813 +3888 +3588 +3642 +472 +3588 +772 +3114 +4314 +3956 +3708 +3361 +5100 +2556 +473 +2556 +5100 +591 +235 +3842 +3588 +18 +1377 +1519 +240 +2532 +1519 +3956 +3842 +5463 +89 +4336 +1722 +3956 +2168 +1063 +3778 +2307 +2316 +1722 +5547 +2424 +1519 +4771 +3588 +4151 +3361 +4570 +4394 +3361 +1848 +1161 +3956 +1381 +3588 +2570 +2722 +575 +3956 +1491 +4190 +568 +1161 +846 +3588 +2316 +3588 +1515 +37 +4771 +3651 +2532 +3648 +4771 +3588 +4151 +2532 +3588 +5590 +2532 +3588 +4983 +274 +1722 +3588 +3952 +3588 +2962 +1473 +2424 +5547 +5083 +4103 +3588 +2564 +4771 +3739 +2532 +4160 +80 +4336 +4012 +1473 +782 +3588 +80 +3956 +1722 +5370 +40 +3726 +4771 +3588 +2962 +314 +3588 +1992 +3956 +3588 +80 +3588 +5485 +3588 +2962 +1473 +2424 +5547 +3326 +4771 +3972 +2532 +4610 +2532 +5095 +3588 +1577 +2331 +1722 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +4771 +5485 +2532 +1515 +575 +2316 +3962 +2532 +2962 +2424 +5547 +80 +3784 +2168 +3588 +2316 +3842 +4012 +4771 +2531 +514 +1510 +3754 +5232 +3588 +4102 +4771 +2532 +4121 +3588 +26 +1520 +1538 +3956 +4771 +1519 +240 +5620 +846 +1473 +1722 +4771 +2744 +1722 +3588 +1577 +3588 +2316 +5228 +3588 +5281 +4771 +2532 +4102 +1722 +3956 +3588 +1375 +4771 +2532 +3588 +2347 +3739 +430 +1730 +3588 +1342 +2920 +3588 +2316 +1519 +3588 +2661 +4771 +3588 +932 +3588 +2316 +5228 +3739 +2532 +3958 +1512 +1342 +3844 +2316 +467 +3588 +2346 +4771 +2347 +2532 +4771 +3588 +2346 +425 +3326 +1473 +1722 +3588 +602 +3588 +2962 +2424 +575 +3772 +3326 +32 +1411 +846 +1722 +4442 +5395 +1325 +1557 +3588 +3361 +1492 +2316 +2532 +3588 +3361 +5219 +3588 +2098 +3588 +2962 +1473 +2424 +3748 +5099 +1349 +3639 +166 +575 +4383 +3588 +2962 +2532 +575 +3588 +1391 +3588 +2479 +846 +3752 +2064 +1740 +1722 +3588 +40 +846 +2532 +2296 +1722 +3956 +3588 +4100 +1722 +3588 +2250 +1565 +3754 +4100 +3588 +3142 +1473 +1909 +4771 +1519 +3739 +2532 +4336 +3842 +4012 +4771 +2443 +4771 +515 +3588 +2821 +3588 +2316 +1473 +2532 +4137 +3956 +2107 +19 +2532 +2041 +4102 +1722 +1411 +3704 +1740 +3588 +3686 +3588 +2962 +1473 +2424 +1722 +4771 +2532 +4771 +1722 +846 +2596 +3588 +5485 +3588 +2316 +1473 +2532 +2962 +2424 +5547 +1161 +80 +2065 +4771 +5228 +3588 +3952 +3588 +2962 +1473 +2424 +5547 +2532 +1473 +1997 +1909 +846 +1519 +3588 +3361 +5030 +4531 +4771 +575 +3588 +3563 +3366 +2360 +3383 +1223 +4151 +3383 +1223 +3056 +3383 +1223 +1992 +5613 +1223 +1473 +5613 +3754 +1764 +3588 +2250 +3588 +2962 +3361 +5100 +4771 +1818 +2596 +3367 +5158 +3754 +1437 +3361 +2064 +3588 +646 +4412 +2532 +601 +3588 +444 +3588 +458 +3588 +5207 +3588 +684 +3588 +480 +2532 +5229 +1909 +3956 +3004 +2316 +2228 +4574 +5620 +846 +1519 +3588 +3485 +3588 +2316 +2523 +584 +1438 +3754 +1510 +2316 +3756 +3421 +3754 +2089 +1510 +4314 +4771 +3778 +3004 +4771 +2532 +3568 +3588 +2722 +1492 +1519 +3588 +601 +846 +1722 +3588 +846 +2540 +1063 +3588 +3466 +3588 +458 +2235 +1754 +3440 +3588 +2722 +737 +2193 +1537 +3319 +1096 +2532 +5119 +601 +3588 +459 +3739 +3588 +2962 +2424 +337 +3588 +4151 +3588 +4750 +846 +2532 +2673 +3588 +2015 +3588 +3952 +846 +3739 +3588 +3952 +1510 +2596 +1753 +3588 +4567 +1722 +3956 +1411 +2532 +4592 +2532 +5059 +5579 +2532 +1722 +3956 +539 +93 +3588 +622 +473 +3739 +3588 +26 +3588 +225 +3756 +1209 +1519 +3588 +4982 +846 +2532 +1223 +3778 +3992 +846 +3588 +2316 +1753 +4106 +1519 +3588 +4100 +846 +3588 +5579 +2443 +2919 +3956 +3588 +3361 +4100 +3588 +225 +235 +2106 +3588 +93 +1161 +1473 +3784 +2168 +3588 +2316 +3842 +4012 +4771 +80 +25 +5259 +2962 +3754 +138 +4771 +3588 +2316 +575 +746 +1519 +4991 +1722 +38 +4151 +2532 +4102 +225 +1519 +3739 +2532 +2564 +4771 +1223 +3588 +2098 +1473 +1519 +4047 +1391 +3588 +2962 +1473 +2424 +5547 +686 +3767 +80 +4739 +2532 +2902 +3588 +3862 +3739 +1321 +1535 +1223 +3056 +1535 +1223 +1992 +1473 +1161 +846 +3588 +2962 +1473 +2424 +5547 +2532 +3588 +2316 +3588 +3962 +1473 +3588 +25 +1473 +2532 +1325 +3874 +166 +2532 +1680 +18 +1722 +5485 +3870 +4771 +3588 +2588 +2532 +4741 +1722 +3956 +2041 +2532 +3056 +18 +80 +3588 +3063 +4336 +4012 +1473 +2443 +3588 +3056 +3588 +2962 +5143 +2532 +1392 +2531 +2532 +4314 +4771 +2532 +2443 +4506 +575 +3588 +824 +2532 +4190 +444 +1063 +3756 +3956 +3588 +4102 +1161 +4103 +1510 +3588 +2962 +3739 +4741 +4771 +2532 +5442 +575 +3588 +4190 +1161 +3982 +1722 +2962 +1909 +4771 +3754 +3739 +3853 +2532 +4160 +2532 +4160 +1161 +3588 +2962 +2720 +4771 +3588 +2588 +1519 +3588 +26 +3588 +2316 +2532 +1519 +3588 +5281 +3588 +5547 +1161 +80 +3853 +4771 +1722 +3686 +3588 +2962 +2424 +5547 +4724 +4771 +575 +3956 +80 +814 +4043 +2532 +3361 +2596 +3588 +3862 +3739 +3880 +3844 +1473 +1063 +846 +1492 +4459 +1163 +3401 +1473 +3754 +3756 +812 +1722 +4771 +3761 +1432 +740 +5315 +3844 +5100 +235 +1722 +2873 +2532 +3449 +3571 +2532 +2250 +2038 +4314 +3588 +3361 +1912 +5100 +4771 +3756 +3754 +3756 +2192 +1849 +235 +2443 +1438 +5179 +1325 +4771 +1519 +3588 +3401 +1473 +1063 +2532 +3753 +1510 +4314 +4771 +3778 +3853 +4771 +3754 +1487 +5100 +3756 +2309 +2038 +3366 +2068 +1063 +191 +5100 +4043 +1722 +4771 +814 +3367 +2038 +235 +4020 +1161 +3588 +5108 +3853 +2532 +3870 +1722 +2962 +2424 +5547 +2443 +3326 +2271 +2038 +3588 +1438 +740 +2068 +1161 +80 +4771 +3361 +1573 +2569 +1161 +1487 +5100 +3756 +5219 +3588 +3056 +1473 +1223 +3588 +1992 +3778 +4593 +3361 +4874 +846 +2443 +1788 +2532 +3361 +5613 +2190 +2233 +235 +3560 +5613 +80 +1161 +846 +3588 +2962 +3588 +1515 +1325 +4771 +3588 +1515 +1223 +3956 +1722 +3956 +5158 +3588 +2962 +3326 +3956 +4771 +3588 +783 +3588 +1699 +5495 +3972 +3739 +1510 +4592 +1722 +3956 +1992 +3779 +1125 +3588 +5485 +3588 +2962 +1473 +2424 +5547 +3326 +3956 +4771 +3972 +652 +5547 +2424 +2596 +2003 +2316 +4990 +1473 +2532 +5547 +2424 +3588 +1680 +1473 +5095 +1103 +5043 +1722 +4102 +5485 +1656 +1515 +575 +2316 +3962 +2532 +5547 +2424 +3588 +2962 +1473 +2531 +3870 +4771 +4357 +1722 +2181 +4198 +1519 +3109 +2443 +3853 +5100 +3361 +2085 +3366 +4337 +3454 +2532 +1076 +562 +3748 +2214 +3930 +3123 +2228 +3622 +2316 +3588 +1722 +4102 +1161 +3588 +5056 +3588 +3852 +1510 +26 +1537 +2513 +2588 +2532 +4893 +18 +2532 +4102 +505 +3739 +795 +5100 +1624 +1519 +3150 +2309 +1510 +3547 +3361 +3539 +3383 +3739 +3004 +3383 +4012 +5101 +1226 +1161 +1492 +3754 +2570 +3588 +3551 +1437 +5100 +846 +3545 +5530 +1492 +3778 +3754 +3756 +1342 +3551 +2749 +1161 +459 +2532 +506 +765 +2532 +268 +462 +2532 +952 +3964 +2532 +3389 +409 +4205 +733 +405 +5583 +1965 +2532 +1487 +5100 +2087 +480 +3588 +5198 +1319 +2596 +3588 +2098 +3588 +1391 +3588 +3107 +2316 +3739 +4100 +1473 +5485 +2192 +3588 +1743 +1473 +5547 +2424 +3588 +2962 +1473 +3754 +4103 +1473 +2233 +5087 +1519 +1248 +3588 +4386 +1510 +989 +2532 +1376 +2532 +5197 +235 +1653 +3754 +50 +4160 +1722 +570 +1161 +5250 +3588 +5485 +3588 +2962 +1473 +3326 +4102 +2532 +26 +3588 +1722 +5547 +2424 +3588 +3056 +4103 +2532 +3956 +594 +514 +3754 +5547 +2424 +2064 +1519 +3588 +2889 +268 +4982 +3739 +4413 +1510 +1473 +235 +1223 +3778 +1653 +2443 +1722 +1473 +4413 +1731 +2424 +5547 +3588 +537 +3115 +4314 +5296 +3588 +3195 +4100 +1909 +846 +1519 +2222 +166 +1161 +3588 +935 +3588 +165 +862 +517 +3441 +2316 +5092 +2532 +1391 +1519 +3588 +165 +3588 +165 +281 +5043 +5095 +3778 +3588 +3852 +3908 +4771 +2596 +3588 +4254 +1909 +4771 +4394 +2443 +4754 +1722 +846 +3588 +2570 +4752 +2192 +4102 +2532 +18 +4893 +3739 +683 +5100 +4012 +3588 +4102 +3489 +3739 +1510 +5211 +2532 +223 +3739 +3860 +3588 +4567 +2443 +3811 +3361 +987 +3767 +3870 +4412 +3956 +4160 +1162 +4335 +1783 +2169 +5228 +3956 +444 +5228 +935 +2532 +3956 +3588 +1722 +5247 +1510 +2443 +2263 +2532 +2272 +979 +1236 +1722 +3956 +2150 +2532 +4587 +3778 +2570 +2532 +587 +1799 +3588 +4990 +1473 +2316 +3739 +2309 +3956 +444 +4982 +2532 +1519 +1922 +225 +2064 +1063 +1520 +2316 +1520 +2532 +3316 +2316 +2532 +444 +444 +5547 +2424 +3588 +1325 +1438 +487 +5228 +3956 +3588 +3142 +2540 +2398 +1519 +3739 +5087 +1473 +2783 +2532 +652 +1320 +1484 +1722 +4102 +2532 +225 +225 +3004 +3756 +5574 +3767 +1014 +4336 +3588 +435 +1722 +3956 +5117 +1869 +3741 +5495 +5565 +3709 +2532 +1261 +5615 +1135 +1722 +2689 +2887 +3326 +127 +2532 +4997 +2885 +1438 +3361 +1722 +4117 +2532 +5553 +2228 +3135 +2228 +2441 +4185 +235 +1223 +3739 +4241 +1135 +1861 +2317 +2041 +18 +1135 +1722 +2271 +3129 +1722 +3956 +5292 +1161 +2010 +3756 +1321 +1135 +3761 +831 +435 +235 +1510 +1722 +2271 +1063 +76 +4413 +4111 +1534 +2096 +2532 +76 +3756 +538 +1161 +3588 +1135 +1818 +1722 +3847 +1096 +1161 +4982 +1223 +3588 +5042 +1437 +3306 +1722 +4102 +2532 +26 +2532 +38 +3326 +4997 +4103 +3588 +3056 +1487 +5100 +1984 +3713 +2570 +2041 +1937 +3767 +1163 +3588 +1985 +1510 +423 +1520 +1135 +435 +3524 +4998 +2887 +5382 +1317 +3361 +3943 +3361 +4131 +235 +1933 +269 +866 +3588 +2398 +3624 +2573 +4291 +5043 +2192 +1722 +5292 +3326 +3956 +4587 +1161 +1487 +5100 +3588 +2398 +3624 +4291 +3756 +1492 +4459 +1577 +2316 +1959 +3361 +3504 +2443 +3361 +5187 +1519 +2917 +3588 +1228 +1706 +1161 +1163 +2532 +3141 +2570 +2192 +575 +3588 +1855 +2443 +3361 +1706 +1519 +3680 +2532 +3803 +3588 +1228 +5615 +1249 +4586 +3361 +1351 +3361 +3631 +4183 +4337 +3361 +146 +2192 +3588 +3466 +3588 +4102 +1722 +2513 +4893 +1161 +2532 +3778 +1381 +4412 +1534 +1247 +410 +1510 +5615 +1135 +4586 +3361 +1228 +3524 +4103 +1722 +3956 +1249 +1510 +1520 +1135 +435 +2573 +4291 +5043 +2532 +3588 +2398 +3624 +1063 +3588 +2573 +1247 +898 +2570 +1438 +4046 +2532 +4183 +3954 +1722 +4102 +3588 +1722 +5547 +2424 +3778 +4771 +1125 +1679 +2064 +4314 +4771 +5032 +1161 +1437 +1019 +2443 +1492 +4459 +1163 +390 +1722 +3624 +2316 +3748 +1510 +1577 +2316 +2198 +4769 +2532 +1477 +3588 +225 +2532 +3672 +3173 +1510 +3588 +3588 +2150 +3466 +3739 +5319 +1722 +4561 +1344 +1722 +4151 +3708 +32 +2784 +1722 +1484 +4100 +1722 +2889 +353 +1722 +1391 +1161 +3588 +4151 +4490 +3004 +3754 +1722 +5306 +2540 +868 +5100 +3588 +4102 +4337 +4151 +4108 +2532 +1319 +1140 +1722 +5272 +5573 +2743 +3588 +2398 +4893 +2967 +1060 +568 +1033 +3739 +3588 +2316 +2936 +1519 +3336 +3326 +2169 +3588 +4103 +2532 +1921 +3588 +225 +3754 +3956 +2938 +2316 +2570 +2532 +3762 +579 +3326 +2169 +2983 +1063 +37 +1223 +3056 +2316 +2532 +1783 +3778 +5294 +3588 +80 +1510 +2570 +1249 +5547 +2424 +1789 +3588 +3056 +3588 +4102 +2532 +3588 +2570 +1319 +3739 +3877 +1161 +3588 +952 +2532 +1126 +3454 +3868 +1161 +1128 +4572 +4314 +2150 +1063 +3588 +4984 +1129 +4314 +3641 +1510 +5624 +1161 +3588 +2150 +4314 +3956 +5624 +1510 +2192 +1860 +2222 +3588 +3568 +2532 +3588 +3195 +3588 +3056 +4103 +2532 +3956 +594 +514 +1063 +1519 +3778 +2872 +2532 +75 +3754 +1679 +1909 +2316 +2198 +3739 +1510 +4990 +3956 +444 +3122 +4103 +3778 +3853 +2532 +1321 +3367 +4771 +3588 +3503 +2706 +235 +1096 +5179 +3588 +4103 +1722 +3056 +1722 +391 +1722 +26 +1722 +4102 +1722 +47 +2193 +2064 +4337 +3588 +320 +3588 +3874 +3588 +1319 +3361 +272 +3588 +1722 +4771 +5486 +3739 +1325 +4771 +1223 +4394 +3326 +1936 +3588 +5495 +3588 +4244 +3778 +3191 +1722 +3778 +1510 +2443 +4771 +3588 +4297 +5318 +1510 +3956 +1907 +4572 +2532 +3588 +1319 +1961 +846 +1063 +3778 +4160 +4982 +2532 +4572 +2532 +3588 +191 +4771 +4245 +3361 +1969 +235 +3870 +5613 +3962 +3501 +5613 +80 +4245 +5613 +3384 +3501 +5613 +79 +1722 +3956 +47 +5091 +5503 +3588 +3689 +5503 +1161 +1487 +5100 +5503 +5043 +2228 +1549 +2192 +3129 +4412 +3588 +2398 +3624 +2151 +2532 +287 +591 +3588 +4269 +1063 +3778 +1510 +587 +1799 +3588 +2316 +1161 +3588 +3689 +5503 +2532 +3443 +1679 +1909 +2316 +2532 +4357 +3588 +1162 +2532 +3588 +4335 +3571 +2532 +2250 +1161 +3588 +4684 +2198 +2348 +2532 +3778 +3853 +2443 +423 +1510 +1161 +1487 +5100 +3588 +2398 +2532 +3122 +3609 +3756 +4306 +3588 +4102 +720 +2532 +1510 +571 +5501 +5503 +2639 +3361 +1640 +2094 +1835 +1096 +1520 +435 +1135 +1722 +2041 +2570 +3140 +1487 +5044 +1487 +3580 +1487 +40 +4228 +3538 +1487 +2346 +1884 +1487 +3956 +2041 +18 +1872 +1161 +3501 +5503 +3868 +1063 +3752 +2691 +3588 +5547 +1060 +2309 +2192 +2917 +3754 +3588 +4413 +4102 +114 +1161 +260 +2532 +692 +3129 +4022 +3588 +3614 +1161 +3756 +3440 +692 +235 +2532 +5397 +2532 +4021 +2980 +3588 +3361 +1163 +3767 +1014 +3501 +1060 +5041 +3616 +3367 +874 +1325 +3588 +480 +3059 +5484 +1063 +2235 +5100 +1624 +3694 +3588 +4567 +1487 +5100 +4103 +2192 +5503 +1884 +846 +2532 +3361 +916 +3588 +1577 +2443 +3588 +3689 +5503 +1884 +3588 +2573 +4291 +4245 +1362 +5092 +515 +3122 +3588 +2872 +1722 +3056 +2532 +1319 +1063 +3004 +3588 +1124 +1016 +248 +3756 +5392 +2532 +514 +3588 +2040 +3588 +3408 +846 +2596 +4245 +2724 +3361 +3858 +1622 +1487 +3361 +1909 +1417 +2228 +5140 +3144 +3588 +264 +1799 +3956 +1651 +2443 +2532 +3588 +3062 +5401 +2192 +1263 +1799 +3588 +2316 +2532 +5547 +2424 +2532 +3588 +1588 +32 +2443 +3778 +5442 +5565 +4299 +3367 +4160 +2596 +4346 +5495 +5030 +3367 +2007 +3366 +2841 +266 +245 +4572 +53 +5083 +3371 +5202 +235 +3631 +3641 +5530 +1223 +3588 +4751 +2532 +3588 +4437 +4771 +769 +5100 +444 +3588 +266 +4271 +1510 +4254 +1519 +2920 +1161 +5100 +2532 +1872 +5615 +2532 +3588 +2041 +3588 +2570 +4271 +2532 +3588 +247 +2192 +2928 +3756 +1410 +3745 +1510 +5259 +2218 +1401 +3588 +2398 +1203 +3956 +5092 +514 +2233 +2443 +3361 +3588 +3686 +3588 +2316 +2532 +3588 +1319 +987 +1161 +3588 +2192 +4103 +1203 +3361 +2706 +3754 +80 +1510 +235 +3123 +1398 +3754 +1510 +4103 +2532 +27 +3588 +3588 +2108 +482 +3778 +1321 +2532 +3870 +1487 +5100 +2085 +2532 +3361 +4334 +5198 +3056 +3588 +3588 +2962 +1473 +2424 +5547 +2532 +3588 +2596 +2150 +1319 +5187 +3367 +1987 +235 +3552 +4012 +2214 +2532 +3055 +1537 +3739 +1096 +5355 +2054 +988 +5283 +4190 +3859 +444 +1311 +3588 +3563 +2532 +650 +3588 +225 +3543 +4200 +1510 +3588 +2150 +1161 +1510 +4200 +3173 +3588 +2150 +3326 +841 +1063 +3762 +1533 +1519 +3588 +2889 +3754 +3761 +1627 +5100 +1410 +1161 +2192 +1305 +2532 +4629 +3778 +714 +1161 +3588 +1014 +4147 +1706 +1519 +3986 +2532 +3803 +2532 +1939 +4183 +453 +2532 +983 +3748 +1036 +3588 +444 +1519 +3639 +2532 +684 +1063 +4491 +3956 +3588 +2556 +1510 +3588 +5365 +3739 +3713 +5100 +635 +575 +3588 +4102 +2532 +1438 +4044 +3601 +4183 +1161 +5599 +444 +2316 +4771 +3778 +5343 +1161 +1377 +1343 +2150 +4102 +26 +5281 +4240 +75 +3588 +2570 +73 +3588 +4102 +1949 +3588 +166 +2222 +1519 +3739 +2564 +2532 +3670 +3588 +2570 +3671 +1799 +4183 +3144 +3853 +1799 +3588 +2316 +3588 +2225 +3588 +3956 +2532 +5547 +2424 +3588 +3140 +1909 +4194 +4091 +3588 +2570 +3671 +5083 +4771 +3588 +1785 +784 +423 +3360 +3588 +2015 +3588 +2962 +1473 +2424 +5547 +3739 +2540 +2398 +1166 +3588 +3107 +2532 +3441 +1413 +3588 +935 +3588 +936 +2532 +2962 +3588 +2961 +3588 +3441 +2192 +110 +5457 +676 +3611 +3739 +3708 +3762 +444 +3761 +3708 +1410 +3739 +5092 +2532 +2904 +166 +281 +3588 +4145 +1722 +3588 +3568 +165 +3853 +3361 +5309 +3366 +1679 +1909 +4149 +83 +235 +1909 +2316 +3588 +3930 +1473 +3956 +4146 +1519 +619 +14 +4147 +1722 +2041 +2570 +2130 +1510 +2843 +597 +1438 +2310 +2570 +1519 +3588 +3195 +2443 +1949 +3588 +3689 +2222 +5599 +5095 +3588 +3866 +5442 +1624 +3588 +952 +2757 +2532 +477 +3588 +5581 +1108 +3739 +1861 +5100 +4012 +3588 +4102 +795 +3588 +5485 +3326 +4771 +3972 +652 +5547 +2424 +1223 +2307 +2316 +2596 +1860 +2222 +3588 +1722 +5547 +2424 +5095 +27 +5043 +5485 +1656 +1515 +575 +2316 +3962 +2532 +5547 +2424 +3588 +2962 +1473 +5485 +2192 +3588 +2316 +3739 +3000 +575 +4269 +1722 +2513 +4893 +5613 +88 +2192 +3588 +4012 +4771 +3417 +1722 +3588 +1162 +1473 +3571 +2532 +2250 +1971 +4771 +3708 +3403 +4771 +3588 +1144 +2443 +5479 +4137 +2983 +5280 +3588 +1722 +4771 +505 +4102 +3748 +1774 +4412 +1722 +3588 +3125 +4771 +3090 +2532 +3588 +3384 +4771 +2131 +1161 +3982 +3754 +2532 +1722 +4771 +1223 +3739 +156 +363 +4771 +329 +3588 +5486 +3588 +2316 +3739 +1510 +1722 +4771 +1223 +3588 +1936 +3588 +5495 +1473 +1063 +3756 +1325 +1473 +3588 +2316 +4151 +1167 +235 +1411 +2532 +26 +2532 +4995 +3767 +3361 +1870 +3588 +3142 +3588 +2962 +1473 +3366 +1473 +3588 +1198 +846 +235 +4777 +3588 +2098 +2596 +1411 +2316 +3588 +4982 +1473 +2532 +2564 +2821 +40 +3756 +2596 +3588 +2041 +1473 +235 +2596 +2398 +4286 +2532 +5485 +3588 +1325 +1473 +1722 +5547 +2424 +4253 +5550 +166 +1161 +5319 +3568 +1223 +3588 +2015 +3588 +4990 +1473 +5547 +2424 +3303 +2673 +3588 +2288 +1161 +5461 +2222 +2532 +861 +1223 +3588 +2098 +1519 +3739 +5087 +1473 +2783 +2532 +652 +2532 +1320 +1223 +3739 +156 +2532 +3778 +3958 +235 +3756 +1870 +1063 +1492 +3739 +4100 +2532 +3982 +3754 +1510 +1415 +3588 +3866 +1473 +5442 +1519 +1565 +3588 +2250 +2192 +5296 +5198 +3056 +3739 +3844 +1473 +191 +1722 +4102 +2532 +26 +3588 +1722 +5547 +2424 +3588 +2570 +3866 +5442 +1223 +4151 +40 +3588 +1774 +1722 +1473 +1492 +3778 +3754 +654 +1473 +3956 +3588 +1722 +3588 +773 +3739 +1510 +5436 +2532 +2061 +1325 +1656 +3588 +2962 +3588 +3683 +3624 +3754 +4178 +1473 +404 +2532 +3756 +3588 +254 +1473 +1870 +235 +1096 +1722 +4516 +4709 +2212 +1473 +2532 +2147 +1325 +846 +3588 +2962 +2147 +1656 +3844 +2962 +1722 +1565 +3588 +2250 +2532 +3745 +1722 +2181 +1247 +957 +4771 +1097 +3767 +5043 +1473 +4771 +1743 +1722 +3588 +5485 +3588 +1722 +5547 +2424 +2532 +3739 +191 +3844 +1473 +1223 +4183 +3144 +3778 +3908 +4103 +444 +3748 +2425 +1510 +2532 +2087 +1321 +4777 +5613 +2570 +4757 +5547 +2424 +3762 +4754 +1707 +3588 +3588 +979 +4230 +2443 +3588 +4758 +700 +1161 +1437 +2532 +118 +5100 +3756 +4737 +1437 +3361 +3545 +118 +1163 +3588 +2872 +1092 +4412 +3588 +2590 +3335 +3539 +3739 +3004 +1063 +1325 +4771 +3588 +2962 +4907 +1722 +3956 +3421 +2424 +5547 +1453 +1537 +3498 +1537 +4690 +1138 +2596 +3588 +2098 +1473 +1722 +3739 +2553 +3360 +1199 +5613 +2557 +235 +3588 +3056 +3588 +2316 +3756 +1210 +1223 +3778 +3956 +5278 +1223 +3588 +1588 +2443 +2532 +846 +5177 +4991 +3588 +1722 +5547 +2424 +3326 +1391 +166 +4103 +3588 +3056 +1063 +1487 +4880 +2532 +4800 +1487 +5278 +2532 +4821 +1487 +720 +2548 +720 +1473 +1487 +569 +1565 +4103 +3306 +1063 +720 +1438 +3756 +1410 +3778 +5279 +1263 +1799 +3588 +2316 +3361 +3054 +1909 +3762 +5539 +1909 +2692 +3588 +191 +4704 +3936 +4572 +1384 +3588 +2316 +2040 +422 +3718 +3588 +3056 +3588 +225 +1161 +3588 +952 +2757 +4026 +1063 +1909 +4119 +763 +4298 +2532 +3588 +3056 +846 +5613 +1044 +3542 +2192 +3739 +1510 +5211 +2532 +5372 +3748 +4012 +3588 +225 +795 +3004 +386 +2235 +1096 +2532 +396 +3588 +5100 +4102 +3305 +3588 +4731 +2310 +3588 +2316 +2476 +2192 +3588 +4973 +3778 +1097 +2962 +3588 +1510 +846 +2532 +868 +575 +93 +3956 +3588 +3687 +3588 +3686 +2962 +1161 +1722 +3173 +3614 +1510 +3756 +3440 +4632 +5552 +2532 +693 +235 +2532 +3585 +2532 +3749 +2532 +3303 +3739 +1519 +5092 +1161 +3739 +1519 +819 +3767 +1437 +5100 +1571 +1438 +575 +3778 +1510 +4632 +1519 +5092 +37 +2173 +3588 +1203 +1519 +3956 +2041 +18 +2090 +1161 +3588 +3512 +1939 +5343 +1161 +1377 +1343 +4102 +26 +1515 +3326 +3588 +1941 +3588 +2962 +1537 +2513 +2588 +1161 +3588 +3474 +2532 +521 +2214 +3868 +1492 +3754 +1080 +3163 +1161 +1163 +1401 +2962 +3756 +3164 +235 +1510 +2261 +4314 +3956 +1317 +420 +1722 +4240 +3811 +3588 +475 +3361 +4218 +1325 +846 +3588 +2316 +3341 +1519 +1922 +225 +2532 +366 +1537 +3588 +3588 +1228 +3803 +2221 +5259 +846 +1519 +3588 +1565 +2307 +1161 +3778 +1097 +3754 +1722 +2078 +2250 +1764 +2540 +5467 +1063 +1510 +3588 +444 +5367 +5366 +213 +5244 +989 +1118 +545 +884 +462 +794 +786 +1228 +193 +434 +865 +4273 +4312 +5187 +5369 +3123 +2228 +5377 +2192 +3446 +2150 +1161 +3588 +1411 +846 +720 +2532 +3778 +665 +1063 +1537 +3778 +1510 +3588 +1744 +1519 +3588 +3614 +2532 +163 +1133 +4987 +266 +71 +1939 +4164 +3842 +3129 +2532 +3368 +1519 +1922 +225 +2064 +1410 +1161 +3739 +5158 +2389 +2532 +2387 +436 +3475 +3779 +2532 +3778 +436 +3588 +225 +444 +2704 +3588 +3563 +96 +4012 +3588 +4102 +235 +3756 +4298 +1909 +4119 +1063 +3588 +454 +846 +1552 +1510 +3956 +5613 +2532 +3588 +1565 +1096 +1161 +4771 +3877 +1473 +3588 +1319 +3588 +72 +3588 +4286 +3588 +4102 +3588 +3115 +3588 +26 +3588 +5281 +3588 +1375 +3588 +3804 +3634 +1473 +1096 +1722 +490 +1722 +2430 +1722 +3082 +3634 +1375 +5297 +2532 +1537 +3956 +1473 +4506 +3588 +2962 +1161 +2532 +3956 +3588 +2309 +2198 +2153 +1722 +5547 +2424 +1377 +1161 +4190 +444 +2532 +1114 +4298 +1909 +3588 +5501 +4105 +2532 +4105 +1161 +4771 +3306 +1722 +3739 +3129 +2532 +4104 +1492 +3844 +5101 +3129 +2532 +3754 +575 +1025 +1492 +2413 +1121 +3588 +1410 +4771 +4679 +1519 +4991 +1223 +4102 +3588 +1722 +5547 +2424 +3956 +1124 +2315 +2532 +5624 +4314 +1319 +4314 +1650 +4314 +1882 +4314 +3809 +3588 +1722 +1343 +2443 +739 +1510 +3588 +3588 +2316 +444 +4314 +3956 +2041 +18 +1822 +1263 +1799 +3588 +2316 +2532 +5547 +2424 +3588 +3195 +2919 +2198 +2532 +3498 +2532 +3588 +2015 +846 +2532 +3588 +932 +846 +2784 +3588 +3056 +2186 +2122 +171 +1651 +2008 +3870 +1722 +3956 +3115 +2532 +1322 +1063 +1510 +2540 +3753 +3756 +3588 +5198 +1319 +430 +235 +2596 +3588 +2398 +1939 +1438 +2002 +1320 +2833 +3588 +189 +2532 +3303 +575 +3588 +225 +3588 +189 +654 +1161 +1909 +3588 +3454 +1624 +1161 +4771 +3525 +1722 +3956 +2553 +4160 +2041 +2099 +3588 +1248 +4771 +4135 +1063 +1473 +2235 +4689 +2532 +3588 +2540 +3588 +359 +1473 +2186 +3588 +2570 +73 +75 +3588 +1408 +5055 +3588 +4102 +5083 +3063 +606 +1473 +3588 +3588 +1343 +4735 +3739 +591 +1473 +3588 +2962 +3588 +1342 +2923 +1722 +1565 +3588 +2250 +1161 +3756 +3440 +1473 +235 +2532 +3956 +3588 +25 +3588 +2015 +846 +4704 +2064 +4314 +1473 +5030 +1063 +1214 +1473 +1459 +25 +3588 +3568 +165 +2532 +4198 +1519 +2332 +2913 +1519 +1053 +5103 +1519 +1149 +3065 +1510 +3441 +3326 +1473 +3138 +353 +71 +3326 +4572 +1063 +1510 +1473 +2173 +1519 +1248 +1161 +5190 +649 +1519 +2181 +3588 +5341 +3739 +620 +1722 +5174 +3844 +2591 +2064 +5342 +2532 +3588 +975 +3122 +3588 +3200 +223 +3588 +5471 +4183 +2556 +1473 +1731 +591 +846 +3588 +2962 +2596 +3588 +2041 +846 +3739 +2532 +4771 +5442 +1063 +3029 +436 +3588 +2251 +3056 +1722 +3588 +4413 +1473 +627 +3762 +1473 +3854 +235 +3956 +1473 +1459 +3361 +846 +3049 +1161 +3588 +2962 +1473 +3936 +2532 +1743 +1473 +2443 +1223 +1473 +3588 +2782 +4135 +2532 +191 +3956 +3588 +1484 +2532 +4506 +1537 +4750 +3023 +4506 +1473 +3588 +2962 +575 +3956 +2041 +4190 +2532 +4982 +1519 +3588 +932 +846 +3588 +2032 +3739 +3588 +1391 +1519 +3588 +165 +3588 +165 +281 +782 +4251 +2532 +207 +2532 +3588 +3683 +3624 +2037 +3306 +1722 +2882 +1161 +5161 +620 +1722 +3399 +770 +4704 +4253 +5494 +2064 +782 +4771 +2103 +2532 +4227 +2532 +3044 +2532 +2803 +2532 +3588 +80 +3956 +3588 +2962 +3326 +3588 +4151 +4771 +3588 +5485 +3326 +4771 +3972 +1401 +2316 +1161 +652 +2424 +5547 +2596 +4102 +1588 +2316 +2532 +1922 +225 +3588 +2596 +2150 +1909 +1680 +2222 +166 +3739 +1861 +3588 +893 +2316 +4253 +5550 +166 +1161 +5319 +2540 +2398 +3588 +3056 +846 +1722 +2782 +3739 +4100 +1473 +2596 +2003 +3588 +4990 +1473 +2316 +5103 +1103 +5043 +2596 +2839 +4102 +5485 +2532 +1515 +575 +2316 +3962 +2532 +5547 +2424 +3588 +4990 +1473 +3778 +5484 +620 +4771 +1722 +2914 +2443 +3588 +3007 +1930 +2532 +2525 +2596 +4172 +4245 +5613 +1473 +4771 +1299 +1487 +5100 +1510 +410 +1520 +1135 +435 +2192 +5043 +4103 +3361 +1722 +2724 +810 +2228 +506 +1063 +1163 +3588 +1985 +1510 +5613 +2316 +3623 +410 +3361 +829 +3361 +3711 +3361 +3943 +3361 +4131 +3361 +146 +235 +5382 +5358 +4998 +1342 +3741 +1468 +472 +3588 +2596 +3588 +1322 +4103 +3056 +2443 +1510 +1415 +2532 +3870 +1722 +3588 +1319 +3588 +5198 +2532 +3588 +483 +1651 +1063 +1510 +4183 +506 +3151 +2532 +5423 +3122 +3588 +1537 +3588 +4061 +3739 +1993 +1163 +3748 +3650 +3624 +396 +1321 +3739 +3361 +1163 +150 +2771 +5484 +3004 +5100 +1537 +846 +2398 +846 +4396 +2912 +104 +5583 +2556 +2342 +1064 +692 +3588 +3141 +3778 +1510 +227 +1223 +3739 +156 +1651 +846 +664 +2443 +5198 +1722 +3588 +4102 +3361 +4337 +2451 +3454 +2532 +1785 +444 +654 +3588 +225 +3956 +2513 +3588 +2513 +1161 +3588 +3392 +2532 +571 +3762 +2513 +235 +3392 +846 +2532 +3588 +3563 +2532 +3588 +4893 +2316 +1492 +3670 +1161 +3588 +2041 +720 +1510 +947 +2532 +545 +2532 +4314 +3956 +2041 +18 +96 +1161 +4771 +2980 +3739 +4241 +3588 +5198 +1319 +4246 +1510 +3524 +4586 +4998 +5198 +3588 +4102 +3588 +26 +3588 +5281 +4247 +5615 +1722 +2688 +2412 +3361 +1228 +3366 +3631 +4183 +1402 +2567 +2443 +4994 +3588 +3501 +1510 +5362 +5388 +4998 +53 +3626 +18 +5293 +3588 +2398 +435 +2443 +3361 +3588 +3056 +3588 +2316 +987 +3588 +3501 +5615 +3870 +4993 +4012 +3956 +4572 +3930 +5179 +2570 +2041 +1722 +3588 +1319 +861 +4587 +3056 +5199 +176 +2443 +3588 +1537 +1727 +1788 +2192 +3004 +4012 +1473 +3367 +5337 +1401 +2398 +1203 +5293 +1722 +3956 +2101 +1510 +3361 +483 +3361 +3557 +235 +3956 +4102 +18 +1731 +2443 +3588 +1319 +3588 +3588 +4990 +1473 +2316 +2885 +1722 +3956 +1063 +2014 +3588 +5485 +3588 +2316 +4992 +3956 +444 +3811 +1473 +2443 +720 +3588 +763 +2532 +3588 +2886 +1939 +4996 +2532 +1346 +2532 +2153 +2198 +1722 +3588 +3568 +165 +4327 +3588 +3107 +1680 +2532 +2015 +3588 +1391 +3588 +3173 +2316 +2532 +4990 +1473 +5547 +2424 +3739 +1325 +1438 +5228 +1473 +2443 +3084 +1473 +575 +3956 +458 +2532 +2511 +1438 +2992 +4041 +2207 +2570 +2041 +3778 +2980 +2532 +3870 +2532 +1651 +3326 +3956 +2003 +3367 +4771 +4065 +5279 +846 +746 +1849 +5293 +3980 +4314 +3956 +2041 +18 +2092 +1510 +3367 +987 +269 +1510 +1933 +3956 +4240 +1731 +4314 +3956 +444 +1063 +1510 +4218 +2532 +1473 +453 +545 +4105 +1398 +1939 +2532 +2237 +4164 +1722 +2549 +2532 +5355 +1236 +4767 +3404 +240 +1161 +3753 +3588 +5544 +2532 +3588 +5363 +3588 +4990 +1473 +2316 +2014 +3756 +1537 +2041 +3588 +1722 +1343 +3739 +4160 +1473 +235 +2596 +3588 +846 +1656 +4982 +1473 +1223 +3067 +3824 +2532 +342 +4151 +40 +3739 +1632 +1909 +1473 +4146 +1223 +2424 +5547 +3588 +4990 +1473 +2443 +1344 +3588 +1565 +5485 +2818 +1096 +2596 +1680 +2222 +166 +4103 +3588 +3056 +2532 +4012 +3778 +1014 +4771 +1226 +2443 +5431 +2570 +2041 +4291 +3588 +4100 +2316 +3778 +1510 +2570 +2532 +5624 +3588 +444 +1161 +3474 +2214 +2532 +1076 +2532 +2054 +2532 +3163 +3544 +4026 +1063 +1510 +512 +2532 +3152 +141 +444 +3326 +1520 +2532 +1208 +3559 +3868 +1492 +3754 +3588 +5108 +1612 +2532 +264 +1510 +843 +3752 +3992 +4314 +4771 +734 +2228 +5190 +4704 +2064 +4314 +1473 +1519 +3533 +1063 +1563 +3914 +2919 +2211 +3588 +3544 +2532 +625 +4709 +4311 +2443 +3367 +846 +3007 +1161 +3129 +2532 +3588 +2251 +2570 +2041 +4291 +1519 +3588 +316 +5532 +2443 +3361 +1510 +175 +782 +4771 +3588 +3326 +1473 +3956 +782 +3588 +5368 +1473 +1722 +4102 +3588 +5485 +3326 +3956 +4771 +3972 +1198 +5547 +2424 +2532 +5095 +3588 +80 +5371 +3588 +27 +2532 +4904 +1473 +2532 +682 +3588 +79 +2532 +751 +3588 +4961 +1473 +2532 +3588 +2596 +3624 +4771 +1577 +4771 +5485 +2532 +1515 +575 +2316 +3962 +1473 +2532 +2962 +2424 +5547 +2168 +3588 +2316 +1473 +3842 +3417 +4771 +4160 +1909 +3588 +4335 +1473 +191 +4771 +3588 +26 +2532 +3588 +4102 +3739 +2192 +4314 +3588 +2962 +2424 +2532 +1519 +3956 +3588 +40 +3704 +3588 +2842 +3588 +4102 +4771 +1756 +1096 +1722 +1922 +3956 +18 +3588 +1722 +1473 +1519 +5547 +1063 +5479 +4183 +2532 +3874 +2192 +1909 +3588 +26 +4771 +3754 +3588 +4698 +3588 +40 +373 +1223 +4771 +80 +1352 +4183 +1722 +5547 +3954 +2192 +2004 +4771 +3588 +433 +1223 +3588 +26 +3123 +3870 +5108 +1510 +5613 +3972 +4246 +1161 +3570 +2532 +1198 +5547 +2424 +3870 +4771 +4012 +3588 +1699 +5043 +1080 +1722 +3588 +1199 +3739 +3682 +3588 +4218 +4771 +890 +1161 +3570 +2532 +4771 +2532 +1473 +2173 +375 +4771 +3739 +846 +3778 +1510 +3588 +1699 +4698 +1473 +1014 +3739 +4314 +1683 +2722 +2443 +5228 +4771 +1473 +1247 +1722 +3588 +1199 +3588 +2098 +1161 +5565 +3588 +4674 +1106 +3762 +4160 +2309 +2443 +3361 +5613 +2596 +318 +3588 +18 +4771 +1510 +235 +2596 +1595 +1063 +5029 +1223 +3778 +5563 +4314 +5610 +2443 +166 +846 +568 +3765 +5613 +1401 +235 +5228 +1401 +80 +27 +3122 +1473 +1161 +4214 +3123 +4771 +2532 +1722 +4561 +2532 +1722 +2962 +3767 +1487 +1473 +2192 +2844 +4355 +846 +5613 +1473 +1161 +1487 +5100 +4771 +91 +2228 +3784 +3778 +1473 +1677 +1473 +3972 +1125 +3588 +1699 +5495 +1473 +661 +2443 +3361 +3004 +4771 +3754 +2532 +4572 +1473 +4359 +3483 +80 +1473 +4771 +3685 +1722 +2962 +373 +1473 +3588 +4698 +1722 +5547 +3982 +3588 +5218 +4771 +1125 +4771 +1492 +3754 +2532 +5228 +3739 +3004 +4160 +1161 +260 +2532 +2090 +1473 +3578 +1063 +1679 +3754 +1223 +3588 +4335 +4771 +5483 +4771 +782 +4771 +1889 +3588 +4869 +1473 +1722 +5547 +2424 +3138 +708 +1214 +3065 +3588 +4904 +1473 +3588 +5485 +3588 +2962 +2424 +5547 +3326 +3588 +4151 +4771 +4181 +2532 +4187 +3819 +2980 +3588 +3962 +1722 +3588 +4396 +3588 +2316 +1909 +2078 +3588 +2250 +3778 +2980 +1473 +1722 +5207 +3739 +5087 +2818 +3956 +1223 +3739 +2532 +4160 +3588 +165 +3739 +1510 +541 +3588 +1391 +2532 +5481 +3588 +5287 +846 +5037 +5342 +3588 +3956 +3588 +4487 +3588 +1411 +846 +2512 +3588 +266 +4160 +2523 +1722 +1188 +3588 +3172 +1722 +5308 +5118 +2909 +1096 +3588 +32 +3745 +1313 +3686 +3844 +846 +2816 +1063 +5101 +3588 +32 +3004 +4218 +5207 +1473 +1510 +4771 +1473 +4594 +1080 +4771 +2532 +3825 +1473 +1510 +846 +1519 +3962 +2532 +846 +1510 +1473 +1519 +5207 +1161 +3752 +3825 +1521 +3588 +4416 +1519 +3588 +3625 +3004 +2532 +4352 +846 +3956 +32 +2316 +2532 +3303 +4314 +3588 +32 +3004 +3588 +4160 +3588 +32 +846 +4151 +2532 +3588 +3011 +846 +4442 +5395 +1161 +4314 +3588 +5207 +3588 +2316 +3588 +2362 +4771 +1519 +3588 +165 +3588 +165 +2532 +3588 +4464 +3588 +2118 +4464 +3588 +932 +846 +25 +1343 +2532 +3404 +458 +1223 +3778 +5548 +4771 +3588 +2316 +3588 +2316 +4771 +1637 +20 +3844 +3588 +3353 +4771 +2532 +2962 +4771 +2596 +746 +3588 +1093 +2311 +2532 +2041 +3588 +5495 +4771 +1510 +3588 +3772 +846 +622 +1161 +4771 +1265 +2532 +3956 +3822 +5613 +2440 +2532 +5616 +4018 +1667 +846 +5613 +2440 +2532 +236 +1161 +4771 +3588 +846 +1510 +2532 +3588 +2094 +4771 +3756 +1587 +1161 +4314 +5101 +3588 +32 +2046 +4218 +2521 +1537 +1188 +1473 +2193 +302 +5087 +3588 +2190 +4771 +5286 +3588 +4228 +4771 +3780 +3956 +1510 +3010 +4151 +1519 +1248 +649 +1223 +3588 +3195 +2816 +4991 +1223 +3778 +1163 +4057 +4337 +1473 +3588 +191 +3361 +4218 +3901 +1063 +1487 +3588 +1223 +32 +2980 +3056 +1096 +949 +2532 +3956 +3847 +2532 +3876 +2983 +1738 +3405 +4459 +1473 +1628 +272 +5082 +4991 +3748 +746 +2983 +2980 +1223 +3588 +2962 +5259 +3588 +191 +1519 +1473 +950 +4901 +3588 +2316 +5037 +4592 +2532 +5059 +2532 +4164 +1411 +2532 +4151 +40 +3311 +2596 +3588 +846 +2308 +1063 +3756 +32 +5293 +3588 +3625 +3588 +3195 +4012 +3739 +2980 +1161 +1263 +4225 +5100 +3004 +5101 +1510 +444 +3754 +3403 +846 +2228 +5207 +444 +3754 +1980 +846 +1642 +846 +1024 +5100 +3844 +32 +1391 +2532 +5092 +4737 +846 +3956 +5293 +5270 +3588 +4228 +846 +1063 +1722 +3588 +5293 +846 +3588 +3956 +3762 +863 +846 +506 +1161 +3568 +3768 +3708 +846 +3588 +3956 +5293 +1161 +991 +3588 +1024 +5100 +3844 +32 +1642 +2424 +1223 +3588 +3804 +3588 +2288 +1391 +2532 +5092 +4737 +3704 +5485 +2316 +5228 +3956 +1089 +2288 +1063 +4241 +846 +1223 +3739 +3588 +3956 +2532 +1223 +3739 +3588 +3956 +4183 +5207 +1519 +1391 +71 +3588 +747 +3588 +4991 +846 +1223 +3804 +5048 +1063 +5037 +3588 +37 +2532 +3588 +37 +1537 +1520 +3956 +1223 +3739 +156 +3756 +1870 +80 +846 +2564 +3004 +518 +3588 +3686 +4771 +3588 +80 +1473 +1722 +3319 +1577 +5214 +4771 +2532 +3825 +1473 +1510 +3982 +1909 +846 +2532 +3825 +3708 +1473 +2532 +3588 +3813 +3739 +1473 +1325 +3588 +2316 +3767 +1893 +3588 +3813 +2841 +129 +2532 +4561 +2532 +846 +3898 +3348 +3588 +846 +2443 +1223 +3588 +2288 +2673 +3588 +3588 +2904 +3588 +2288 +2192 +3778 +1510 +3588 +1228 +2532 +525 +3778 +3745 +5401 +2288 +1223 +3956 +3588 +2198 +1777 +1397 +1510 +1063 +3756 +1222 +32 +1949 +235 +4690 +11 +1949 +3606 +3784 +2596 +3956 +3588 +80 +3666 +2443 +1096 +1655 +2532 +4103 +749 +3588 +4314 +3588 +2316 +1519 +3588 +2433 +3588 +266 +3588 +2992 +1063 +1722 +3739 +3958 +846 +3985 +1410 +3588 +3985 +997 +3606 +80 +40 +2821 +2032 +3353 +2657 +3588 +652 +2532 +749 +3588 +3671 +1473 +2424 +4103 +1510 +3588 +4160 +846 +5613 +2532 +3475 +1722 +3650 +3588 +3624 +846 +1063 +4119 +1391 +3778 +3844 +3475 +515 +2596 +3745 +4119 +5092 +2192 +3588 +3624 +3588 +2680 +846 +1063 +3956 +3624 +2680 +5259 +5100 +1161 +3588 +3956 +2680 +2316 +2532 +3303 +3475 +4103 +1722 +3650 +3588 +3624 +846 +5613 +2324 +1519 +3142 +3588 +2980 +1161 +5547 +5613 +5207 +1909 +3588 +3624 +846 +3739 +3624 +1510 +1473 +1437 +3588 +3954 +2532 +3588 +2745 +3588 +1680 +3360 +5056 +949 +2722 +1352 +2531 +3004 +3588 +4151 +3588 +40 +1437 +4594 +3588 +5456 +846 +191 +3361 +4645 +3588 +2588 +4771 +5613 +1722 +3588 +3894 +2596 +3588 +2250 +3588 +3986 +1722 +3588 +2048 +3757 +3985 +3588 +3962 +4771 +1722 +1382 +2532 +3708 +3588 +2041 +1473 +5062 +2094 +1352 +4360 +3588 +1074 +3778 +2532 +3004 +104 +4105 +3588 +2588 +1161 +846 +3756 +1097 +3588 +3598 +1473 +5613 +3660 +1722 +3588 +3709 +1473 +1487 +1525 +1519 +3588 +2663 +1473 +991 +80 +3361 +4218 +1510 +1722 +5100 +4771 +2588 +4190 +570 +1722 +3588 +868 +575 +2316 +2198 +235 +3870 +1438 +2596 +1538 +2250 +891 +3739 +3588 +4594 +2564 +2443 +3361 +4645 +5100 +1537 +4771 +539 +3588 +266 +1063 +3353 +3588 +5547 +1096 +1437 +3588 +746 +3588 +5287 +3360 +5056 +949 +2722 +1722 +3588 +3004 +1437 +4594 +3588 +5456 +846 +191 +3361 +4645 +3588 +2588 +4771 +5613 +1722 +3588 +3894 +1063 +5101 +191 +3893 +235 +3756 +3956 +3588 +1831 +1537 +125 +1223 +3475 +1161 +5101 +4360 +5062 +2094 +3780 +3588 +264 +3739 +3588 +2966 +4098 +1722 +3588 +2048 +1161 +5101 +3660 +3361 +1525 +1519 +3588 +2663 +846 +1487 +3361 +3588 +544 +2532 +991 +3754 +3756 +1410 +1525 +1223 +570 +3767 +5399 +3361 +4218 +2641 +1860 +1525 +1519 +3588 +2663 +846 +1380 +5100 +1537 +4771 +5302 +1063 +2532 +1510 +2097 +2509 +2548 +235 +3756 +5623 +3588 +3056 +3588 +189 +1565 +3361 +4786 +3588 +4102 +3588 +191 +1063 +1525 +1519 +3588 +2663 +3588 +4100 +2531 +2046 +5613 +3660 +1722 +3588 +3709 +1473 +1487 +1525 +1519 +3588 +2663 +1473 +2543 +3588 +2041 +575 +2602 +2889 +1096 +1063 +2046 +4225 +4012 +3588 +1442 +3779 +2532 +2664 +3588 +2316 +1722 +3588 +2250 +3588 +1442 +575 +3956 +3588 +2041 +846 +2532 +1722 +3778 +3825 +1487 +1525 +1519 +3588 +2663 +1473 +3767 +1893 +620 +5100 +1525 +1519 +846 +2532 +3588 +4386 +2097 +3756 +1525 +1223 +543 +3825 +3724 +5100 +2250 +4594 +1722 +1138 +3004 +3326 +5118 +5550 +2531 +4302 +1437 +4594 +3588 +5456 +846 +191 +3361 +4645 +3588 +2588 +4771 +1063 +1487 +846 +2424 +2664 +302 +3756 +4012 +243 +2250 +2980 +3326 +3778 +686 +620 +4520 +3588 +2992 +3588 +2316 +1063 +3588 +1525 +1519 +3588 +2663 +846 +2532 +846 +2664 +575 +3588 +2041 +846 +5618 +575 +3588 +2398 +3588 +2316 +3767 +4704 +1525 +1519 +1565 +3588 +2663 +2443 +3361 +1722 +3588 +846 +5262 +3588 +543 +5100 +4098 +1063 +3588 +3056 +3588 +2316 +2198 +2532 +1756 +2532 +5114 +5228 +3956 +3162 +1366 +2532 +1338 +891 +3311 +5590 +2532 +4151 +5037 +719 +2532 +3452 +2532 +2924 +1761 +2532 +1771 +2588 +2532 +3756 +1510 +2937 +852 +1799 +846 +1161 +3956 +1131 +2532 +5136 +3588 +3788 +846 +4314 +3739 +1473 +3588 +3056 +3767 +2192 +749 +3173 +1330 +3588 +3772 +2424 +3588 +5207 +3588 +2316 +2902 +3588 +3671 +1063 +2192 +749 +3756 +3361 +1410 +4834 +3588 +769 +1473 +1161 +3985 +2596 +3956 +2596 +3665 +5565 +266 +3767 +4334 +3326 +3954 +3588 +2362 +3588 +5485 +2443 +2983 +1656 +2532 +5485 +2147 +1519 +2121 +996 +1063 +3956 +749 +1537 +444 +2983 +5228 +444 +2525 +3588 +4314 +3588 +2316 +2443 +4374 +5037 +1435 +2532 +2378 +5228 +266 +1410 +3356 +3588 +50 +2532 +4105 +1893 +2532 +846 +4029 +769 +2532 +1223 +846 +3784 +2531 +4012 +3588 +2992 +3779 +2532 +4012 +1438 +4374 +4012 +266 +2532 +3756 +1438 +5100 +2983 +3588 +5092 +235 +2564 +5259 +3588 +2316 +2531 +2532 +2 +3779 +2532 +3588 +5547 +3756 +1438 +1392 +1096 +749 +235 +3588 +2980 +4314 +846 +5207 +1473 +1510 +4771 +1473 +4594 +1080 +4771 +2531 +2532 +1722 +2087 +3004 +4771 +2409 +1519 +3588 +165 +2596 +3588 +5010 +3198 +3739 +1722 +3588 +2250 +3588 +4561 +846 +5037 +1162 +2532 +2428 +4314 +3588 +1410 +4982 +846 +1537 +2288 +3326 +2906 +2478 +2532 +1144 +4374 +2532 +1522 +575 +3588 +2124 +2539 +1510 +5207 +3129 +575 +3739 +3958 +3588 +5218 +2532 +5048 +1096 +3956 +3588 +5219 +846 +159 +4991 +166 +4316 +5259 +3588 +2316 +749 +2596 +3588 +5010 +3198 +4012 +3739 +4183 +1473 +3588 +3056 +2532 +1421 +3004 +1893 +3576 +1096 +3588 +189 +1063 +2532 +3784 +1510 +1320 +1223 +3588 +5550 +3825 +2192 +5532 +3588 +1321 +4771 +5100 +3588 +4747 +3588 +746 +3588 +3051 +3588 +2316 +2532 +1096 +2192 +5532 +1051 +3756 +4731 +5160 +1063 +3956 +3588 +3348 +1051 +552 +3056 +1343 +1063 +3516 +1510 +1161 +1510 +3588 +4731 +5160 +5046 +3588 +1223 +3588 +1838 +3588 +145 +1128 +2192 +4314 +1253 +5037 +2570 +2532 +2556 +1352 +863 +3588 +3588 +746 +3588 +5547 +3056 +1909 +3588 +5047 +5342 +3361 +3825 +2598 +2310 +3341 +575 +3498 +2041 +2532 +4102 +1909 +2316 +1322 +909 +5037 +1936 +5495 +386 +3498 +2532 +2917 +166 +2532 +3778 +4160 +1437 +2010 +3588 +2316 +1063 +102 +3588 +530 +5461 +5037 +1089 +3588 +1431 +3588 +2032 +2532 +3353 +4151 +40 +1096 +2532 +1089 +2570 +2316 +4487 +5037 +1411 +3195 +165 +2532 +3895 +3825 +340 +1519 +3341 +388 +1438 +3588 +5207 +3588 +2316 +2532 +3856 +1063 +1093 +3588 +4095 +3588 +1909 +846 +2064 +4178 +5205 +2532 +5088 +1008 +2111 +1565 +1223 +3739 +2532 +1090 +3335 +2129 +575 +3588 +2316 +1161 +1627 +173 +2532 +5146 +96 +2532 +2671 +1451 +3739 +3588 +5056 +1519 +2740 +1161 +27 +3982 +4012 +4771 +3588 +2908 +2532 +2192 +4991 +1487 +2532 +3779 +2980 +1063 +3756 +94 +3588 +2316 +1950 +3588 +2041 +4771 +2532 +3588 +26 +3739 +1731 +1519 +3588 +3686 +846 +1247 +2532 +1247 +3588 +40 +1161 +1937 +1538 +4771 +3588 +846 +4710 +1731 +4314 +3588 +4136 +3588 +1680 +891 +5056 +2443 +3361 +3576 +1096 +1161 +3402 +3588 +1223 +4102 +2532 +3115 +2816 +3588 +1860 +1063 +3588 +11 +1861 +3588 +2316 +1893 +2596 +3762 +3173 +3660 +2192 +3660 +2596 +1438 +3004 +1487 +3375 +2127 +2127 +4771 +2532 +4129 +4129 +4771 +2532 +3779 +3114 +2013 +3588 +1860 +1063 +444 +2596 +3588 +3173 +3660 +2532 +846 +3956 +485 +4009 +1519 +951 +3588 +3727 +1722 +3739 +4053 +1014 +1925 +3588 +2818 +3588 +1860 +3588 +276 +3588 +1012 +846 +3588 +2316 +3315 +3727 +2443 +1223 +1417 +4229 +276 +1722 +3739 +102 +5574 +2316 +2478 +3874 +2192 +3588 +2703 +2902 +3588 +4295 +1680 +3739 +2192 +5613 +45 +3588 +5590 +5037 +804 +2532 +949 +2532 +1525 +1519 +3588 +2082 +3588 +2665 +3699 +4274 +2424 +5228 +1473 +1525 +2596 +3588 +5010 +3198 +749 +1096 +1519 +3588 +165 +1063 +3778 +3588 +3198 +935 +4532 +2409 +3588 +2316 +3588 +5310 +3588 +4876 +11 +5290 +575 +3588 +2871 +3588 +935 +2532 +2127 +846 +3739 +2532 +1181 +575 +3956 +3307 +11 +3303 +4412 +2059 +935 +1343 +1161 +1899 +2532 +935 +4532 +3739 +1510 +935 +1515 +540 +282 +35 +3383 +746 +2250 +3383 +2222 +5056 +2192 +1161 +871 +3588 +5207 +3588 +2316 +3306 +2409 +1519 +3588 +1336 +1161 +2334 +4080 +3778 +3739 +1181 +11 +3588 +3966 +1325 +1537 +3588 +205 +2532 +3303 +3588 +1537 +3588 +5207 +3017 +3588 +2405 +2983 +1785 +2192 +586 +2596 +3588 +3551 +3588 +2992 +3778 +1510 +3588 +80 +846 +2539 +1831 +1537 +3588 +3751 +11 +1161 +3588 +3361 +1075 +1537 +846 +1183 +11 +2532 +3588 +2192 +3588 +1860 +2127 +1161 +5565 +3956 +485 +3588 +1640 +5259 +3588 +2909 +2127 +2532 +3303 +5602 +1181 +599 +444 +2983 +1161 +1563 +3140 +3754 +2198 +2532 +5613 +2031 +3004 +1223 +11 +2532 +3017 +3588 +1181 +2983 +1183 +1063 +2089 +1722 +3588 +3751 +3588 +3962 +1510 +3753 +4876 +846 +3198 +3303 +3767 +1487 +5050 +1223 +3588 +3020 +2420 +1510 +1063 +3588 +2992 +1909 +846 +3549 +5101 +2089 +5532 +2596 +3588 +5010 +3198 +450 +2087 +2409 +2532 +3756 +2596 +3588 +5010 +2 +3004 +1063 +3346 +3588 +2420 +1537 +318 +2532 +3551 +3331 +1096 +1063 +1909 +3739 +3004 +3778 +5443 +2087 +3348 +575 +3739 +3762 +4337 +3588 +2379 +1063 +4271 +3754 +1537 +2448 +393 +3588 +2962 +1473 +1519 +3739 +5443 +4012 +2409 +3762 +3475 +2980 +2532 +4053 +2089 +2612 +1510 +1487 +2596 +3588 +3665 +3198 +450 +2409 +2087 +3739 +1096 +3756 +2596 +3551 +1785 +4560 +235 +2596 +1411 +2222 +179 +1063 +3140 +3754 +4771 +2409 +1519 +3588 +165 +2596 +3588 +5010 +3198 +1063 +3303 +115 +4254 +1785 +1096 +1223 +3588 +846 +772 +2532 +512 +1063 +3762 +5048 +3588 +3551 +1161 +1898 +2909 +1680 +1223 +3739 +1448 +3588 +2316 +2532 +2596 +3745 +3756 +5565 +3728 +1063 +3303 +3588 +5565 +3728 +1510 +1096 +2409 +1161 +3588 +3326 +3728 +1223 +3588 +3004 +4314 +846 +3660 +2962 +2532 +3756 +3338 +4771 +2409 +1519 +3588 +165 +2596 +5118 +2532 +2909 +1242 +1450 +1096 +2424 +2532 +3303 +3588 +4119 +1510 +1096 +2409 +1223 +3588 +2288 +2967 +3887 +1161 +3588 +1223 +3588 +3306 +846 +1519 +3588 +165 +531 +2192 +3588 +2420 +3606 +2532 +1410 +4982 +1519 +3588 +3838 +3588 +4334 +1223 +846 +3588 +2316 +3842 +2198 +1519 +3588 +1793 +5228 +846 +1063 +1473 +2532 +4241 +5108 +749 +3741 +172 +283 +5563 +575 +3588 +268 +2532 +5308 +3588 +3772 +1096 +3739 +3756 +2192 +2596 +2250 +318 +5618 +3588 +749 +4386 +5228 +3588 +2398 +266 +2378 +399 +1899 +3588 +3588 +2992 +1063 +3778 +4160 +2178 +1438 +399 +1063 +3588 +3551 +444 +2525 +749 +2192 +769 +1161 +3588 +3056 +3588 +3728 +3588 +3326 +3588 +3551 +5207 +1519 +3588 +165 +5048 +1161 +2774 +1909 +3588 +3004 +2192 +5108 +749 +3739 +2523 +1722 +1188 +3588 +2362 +3588 +3172 +1722 +3588 +3772 +3011 +3588 +40 +2532 +3588 +4633 +3588 +228 +3739 +4078 +3588 +2962 +3756 +444 +1063 +3956 +749 +1519 +3588 +4374 +5037 +1435 +2532 +2378 +2525 +3606 +316 +2192 +2532 +3778 +5100 +3739 +4374 +3767 +3303 +1487 +1510 +1909 +1093 +302 +3761 +1510 +2409 +1510 +3588 +4374 +2596 +3551 +3588 +1435 +3748 +5262 +2532 +4639 +3588 +2032 +3000 +2531 +5537 +3475 +3195 +2005 +3588 +4633 +1063 +5346 +3708 +4160 +3956 +2596 +3588 +5179 +3588 +1166 +4771 +1722 +3588 +3735 +1161 +3568 +1313 +3009 +5177 +3745 +2532 +1510 +3316 +2909 +1242 +3748 +1909 +2909 +1860 +3549 +1063 +1487 +3588 +4413 +1565 +1510 +273 +302 +3756 +1208 +5117 +2212 +1063 +3201 +846 +3004 +3708 +2250 +2064 +3004 +2962 +2532 +4931 +1909 +3588 +3624 +2474 +2532 +1909 +3588 +3624 +2448 +1242 +2537 +3756 +2596 +3588 +1242 +3739 +4160 +3588 +3962 +846 +1722 +2250 +1949 +1473 +3588 +5495 +846 +1806 +846 +1537 +1093 +125 +3754 +846 +3756 +1696 +1722 +3588 +1242 +1473 +2504 +272 +846 +3004 +2962 +3754 +3778 +3588 +1242 +3739 +1303 +3588 +3624 +2474 +3326 +3588 +2250 +1565 +3004 +2962 +1325 +3551 +1473 +1519 +3588 +1271 +846 +2532 +1909 +2588 +846 +1924 +846 +2532 +1510 +846 +1519 +2316 +2532 +846 +1510 +1473 +1519 +2992 +2532 +3756 +3361 +1321 +1538 +3588 +4177 +846 +2532 +1538 +3588 +80 +846 +3004 +1097 +3588 +2962 +3754 +3956 +1492 +1473 +575 +3398 +2193 +3173 +846 +3754 +2436 +1510 +3588 +93 +846 +2532 +3588 +266 +846 +3756 +3361 +3403 +2089 +1722 +3588 +3004 +2537 +3822 +3588 +4413 +1161 +3588 +3822 +2532 +1095 +1451 +854 +3303 +3767 +2192 +2532 +3588 +4413 +1345 +2999 +5037 +3588 +40 +2886 +1063 +2680 +4633 +3588 +4413 +1722 +3739 +5037 +3588 +3087 +2532 +3588 +5132 +2532 +3588 +4286 +3588 +740 +3748 +3004 +40 +1161 +3326 +3588 +1208 +2665 +4633 +3588 +3004 +40 +40 +2192 +5552 +2369 +2532 +3588 +2787 +3588 +1242 +4028 +3840 +5553 +1722 +3739 +4713 +5552 +2192 +3588 +3131 +2532 +3588 +4464 +2 +3588 +985 +2532 +3588 +4109 +3588 +1242 +1161 +5231 +846 +5502 +1391 +2683 +3588 +2435 +4012 +3739 +3756 +1510 +3568 +3004 +2596 +3313 +1161 +3778 +3779 +2680 +3303 +1519 +3588 +4413 +4633 +1223 +3956 +1524 +3588 +2409 +3588 +2999 +2005 +1161 +1519 +3588 +1208 +530 +3588 +1763 +3441 +3588 +749 +3756 +5565 +129 +3739 +4374 +5228 +1438 +2532 +3588 +3588 +2992 +51 +3778 +1213 +3588 +4151 +3588 +40 +3380 +5319 +3588 +3588 +40 +3598 +2089 +3588 +4413 +4633 +2192 +4714 +3748 +3850 +1519 +3588 +2540 +3588 +1764 +2596 +3739 +5037 +1435 +2532 +2378 +4374 +3361 +1410 +2596 +4893 +5048 +3588 +3000 +3440 +1909 +1033 +2532 +4188 +2532 +1313 +909 +1345 +4561 +3360 +2540 +1357 +1945 +1161 +3854 +5547 +749 +3588 +1096 +18 +1223 +3588 +3173 +2532 +5046 +4633 +3756 +5499 +3778 +1510 +3756 +3778 +3588 +2937 +3761 +1223 +129 +5131 +2532 +3448 +1161 +1223 +3588 +2398 +129 +1525 +2178 +1519 +3588 +40 +166 +3085 +2147 +1063 +1487 +3588 +129 +5131 +2532 +5022 +2532 +4700 +1151 +4472 +3588 +2840 +37 +4314 +3588 +3588 +4561 +2514 +4214 +3123 +3588 +129 +3588 +5547 +3739 +1223 +4151 +166 +1438 +4374 +299 +3588 +2316 +2511 +3588 +4893 +1473 +575 +3498 +2041 +1519 +3588 +3000 +2316 +2198 +2532 +1223 +3778 +1242 +2537 +3316 +1510 +3704 +2288 +1096 +1519 +629 +3588 +1909 +3588 +4413 +1242 +3847 +2983 +3588 +2564 +3588 +1860 +3588 +166 +2817 +1063 +3699 +1242 +318 +5342 +2288 +3588 +1303 +1063 +1242 +1909 +3498 +949 +1893 +3361 +4218 +2480 +3753 +2198 +3588 +1303 +3606 +3761 +3588 +4413 +5565 +129 +1457 +1063 +2980 +3956 +1785 +2596 +3588 +3551 +5259 +3475 +3956 +3588 +2992 +2983 +3588 +129 +3588 +3448 +2532 +3588 +5131 +3326 +5204 +2532 +2053 +2847 +2532 +5301 +5037 +846 +3588 +975 +2532 +3956 +3588 +2992 +4472 +3004 +3778 +3588 +129 +3588 +1242 +3739 +1781 +4314 +4771 +3588 +2316 +1161 +2532 +3588 +4633 +2532 +3956 +3588 +4632 +3588 +3009 +3588 +129 +3668 +4472 +2532 +4975 +1722 +129 +3956 +2511 +2596 +3588 +3551 +2532 +5565 +130 +3756 +1096 +859 +3767 +318 +3303 +3588 +5262 +3588 +1722 +3588 +3772 +3778 +2511 +1161 +846 +3588 +2032 +2378 +2909 +3844 +3778 +1063 +1525 +5547 +3756 +1519 +5499 +40 +499 +3588 +228 +235 +1519 +846 +3588 +3772 +3568 +1718 +3588 +4383 +3588 +2316 +5228 +1473 +3761 +2443 +4178 +4374 +1438 +5618 +3588 +749 +1525 +1519 +3588 +40 +2596 +1763 +1722 +129 +245 +1893 +1163 +846 +4178 +3958 +575 +2602 +2889 +1161 +3570 +530 +1909 +4930 +3588 +165 +1519 +115 +3588 +266 +1223 +3588 +2378 +846 +5319 +2532 +2596 +3745 +606 +3588 +444 +530 +599 +1161 +3326 +3778 +2920 +3779 +2532 +3588 +5547 +530 +4374 +1519 +3588 +4183 +266 +399 +1537 +1208 +5565 +266 +3708 +3588 +846 +553 +1519 +4991 +1063 +3588 +3551 +2192 +4639 +3588 +3195 +18 +3756 +846 +3588 +1504 +3588 +4229 +2596 +1763 +3588 +846 +2378 +3739 +4374 +1519 +3588 +1336 +3763 +1410 +3588 +4334 +5048 +1893 +3756 +302 +3973 +4374 +1223 +3588 +3367 +2192 +2089 +4893 +266 +3588 +3000 +530 +2511 +235 +1722 +846 +364 +266 +2596 +1763 +1063 +102 +129 +5022 +2532 +5131 +851 +266 +1352 +1525 +1519 +3588 +2889 +3004 +2378 +2532 +4376 +3756 +2309 +1161 +4983 +2675 +1473 +3646 +2532 +4012 +266 +3756 +2106 +5119 +3004 +3588 +2316 +3708 +1722 +2777 +975 +1125 +4012 +1473 +2240 +3588 +4160 +3588 +2307 +4771 +511 +3004 +3754 +2378 +2532 +4376 +2532 +3646 +2532 +4012 +266 +3756 +2309 +3761 +2106 +3748 +2596 +3551 +4374 +5119 +2046 +3708 +2240 +3588 +4160 +3588 +2307 +4771 +337 +3588 +4413 +2443 +3588 +1208 +2476 +1722 +3739 +2307 +37 +1510 +1223 +3588 +4376 +3588 +4983 +2424 +5547 +2178 +2532 +3303 +3956 +2409 +2476 +2596 +2250 +3008 +2532 +4178 +4374 +3588 +846 +2378 +3748 +3763 +1410 +4014 +266 +1161 +3778 +1520 +2378 +5228 +266 +4374 +1519 +3588 +1336 +2523 +1722 +1188 +3588 +2316 +3588 +3063 +1551 +2193 +5087 +3588 +2190 +846 +5286 +3588 +4228 +846 +1063 +1520 +4376 +5048 +1519 +3588 +1336 +3588 +37 +1161 +3140 +1473 +2532 +3588 +4151 +3588 +40 +1063 +3326 +3588 +2046 +3778 +3588 +1242 +3739 +1303 +4314 +846 +3326 +3588 +2250 +1565 +3004 +2962 +1325 +3551 +1473 +1909 +2588 +846 +2532 +1909 +3588 +1271 +846 +1924 +846 +2532 +3588 +266 +846 +2532 +3588 +458 +846 +3756 +3361 +3403 +2089 +1161 +3699 +859 +3778 +3765 +4376 +4012 +266 +3767 +80 +2192 +3954 +1519 +3588 +1529 +3588 +40 +1722 +3588 +129 +2424 +3739 +1457 +1473 +3598 +4372 +2532 +2198 +1223 +3588 +2665 +3778 +1510 +3588 +4561 +846 +2532 +2409 +3173 +1909 +3588 +3624 +3588 +2316 +4334 +3326 +228 +2588 +1722 +4136 +4102 +4472 +3588 +2588 +575 +4893 +4190 +2532 +3068 +3588 +4983 +5204 +2513 +2722 +3588 +3671 +3588 +1680 +186 +1063 +4103 +3588 +1861 +2532 +2657 +240 +1519 +3948 +26 +2532 +2570 +2041 +3361 +1459 +3588 +1997 +1438 +2531 +1485 +5100 +235 +3870 +3123 +2532 +5118 +3745 +991 +1448 +3588 +2250 +1063 +1596 +264 +1473 +3326 +3588 +2983 +3588 +1922 +3588 +225 +3765 +4012 +266 +620 +2378 +1161 +5398 +5100 +1561 +2920 +2532 +2205 +4442 +3195 +2068 +3588 +5227 +5100 +114 +3551 +3475 +5565 +3628 +1909 +1417 +2228 +5140 +3144 +599 +4214 +1380 +5501 +5098 +515 +3588 +3588 +5207 +3588 +2316 +2662 +2532 +2839 +2233 +3588 +129 +3588 +1242 +1722 +3739 +37 +2532 +3588 +4151 +3588 +5485 +1796 +1063 +1492 +3588 +3004 +1473 +1557 +1473 +467 +2532 +3825 +2919 +2962 +3588 +2992 +846 +5398 +3588 +1706 +1519 +5495 +2316 +2198 +1161 +363 +3588 +4386 +2250 +1722 +3739 +5461 +5278 +4183 +119 +3804 +3303 +3778 +5037 +3680 +2532 +2347 +2301 +1161 +3778 +2844 +3588 +3779 +390 +1096 +1063 +2532 +3588 +1198 +4834 +2532 +3588 +724 +3588 +5225 +4771 +3326 +5479 +4327 +1097 +2192 +1438 +5223 +2908 +2532 +3306 +3767 +3361 +577 +3588 +3954 +4771 +3748 +2192 +3173 +3405 +1063 +5281 +5532 +2192 +2443 +3588 +2307 +3588 +2316 +4160 +2865 +3588 +1860 +1063 +2089 +3398 +3745 +3745 +3588 +2064 +2240 +2532 +3756 +5549 +1161 +3588 +1342 +1473 +1537 +4102 +2198 +2532 +1437 +5288 +3756 +2106 +3588 +5590 +1473 +1722 +846 +1161 +1473 +1510 +3756 +5289 +1519 +684 +235 +4102 +1519 +4047 +5590 +1161 +1510 +4102 +1679 +5287 +1650 +4229 +3756 +991 +1063 +1722 +3778 +3140 +3588 +4245 +4102 +3539 +2675 +3588 +165 +4487 +2316 +1519 +3588 +3361 +1537 +5316 +3588 +991 +1096 +4102 +6 +4119 +2378 +3844 +2535 +4374 +3588 +2316 +1223 +3739 +3140 +1510 +1342 +3140 +1909 +3588 +1435 +846 +3588 +2316 +2532 +1223 +846 +599 +2089 +2980 +4102 +1802 +3346 +3588 +3361 +3708 +2288 +2532 +3756 +2147 +1360 +3346 +846 +3588 +2316 +1063 +4253 +3588 +3331 +3140 +2100 +3588 +2316 +1161 +5565 +4102 +102 +2100 +1063 +1163 +4100 +3588 +4334 +3588 +2316 +3754 +1510 +2532 +3588 +1567 +846 +3406 +1096 +4102 +3575 +5537 +4012 +3588 +3369 +991 +2125 +2680 +2787 +1519 +4991 +3588 +3624 +846 +1223 +3739 +2632 +3588 +2889 +2532 +3588 +2596 +4102 +1343 +2818 +1096 +4102 +2564 +11 +5219 +1831 +1519 +5117 +3195 +3739 +2983 +1519 +2817 +2532 +1831 +3361 +1987 +4226 +2064 +4102 +3939 +1519 +1093 +3588 +1860 +5613 +245 +1722 +4633 +2730 +3326 +2464 +2532 +2384 +3588 +4789 +3588 +1860 +3588 +846 +1063 +1551 +3588 +3588 +2310 +2192 +4172 +3739 +5079 +2532 +1217 +3588 +2316 +4102 +2532 +846 +4564 +1411 +1519 +2602 +4690 +2983 +2532 +3844 +2540 +2244 +1893 +4103 +2233 +3588 +1861 +1352 +2532 +575 +1520 +3499 +1080 +2532 +3778 +2531 +3588 +798 +3588 +3772 +3588 +4128 +2532 +5613 +3588 +285 +3588 +3844 +3588 +5491 +3588 +2281 +3588 +382 +2596 +4102 +599 +3778 +3956 +3361 +2865 +3588 +1860 +235 +4207 +846 +3708 +2532 +782 +2532 +3670 +3754 +3581 +2532 +3927 +1510 +1909 +3588 +1093 +1063 +3588 +5108 +3004 +1718 +3754 +3968 +1934 +2532 +3303 +1487 +3421 +1565 +575 +3739 +1545 +302 +2192 +2540 +344 +1161 +3568 +3713 +2909 +3778 +1510 +2032 +1352 +3756 +1870 +846 +3588 +2316 +2316 +846 +1941 +1063 +2090 +846 +4172 +4102 +4374 +11 +3588 +2464 +3985 +2532 +3588 +3439 +4374 +3588 +3588 +1860 +324 +4314 +3739 +2980 +3754 +1722 +2464 +2564 +4771 +4690 +3049 +3754 +2532 +1537 +3498 +1453 +1415 +3588 +2316 +3606 +846 +2532 +1722 +3850 +2865 +4102 +2532 +4012 +3195 +2127 +2464 +3588 +2384 +2532 +3588 +2269 +4102 +2384 +599 +1538 +3588 +5207 +2501 +2127 +2532 +4352 +1909 +3588 +206 +3588 +4464 +846 +4102 +2501 +5053 +4012 +3588 +1841 +3588 +5207 +2474 +3421 +2532 +4012 +3588 +3747 +846 +1781 +4102 +3475 +1080 +2928 +5150 +5259 +3588 +3962 +846 +1360 +3708 +791 +3588 +3813 +2532 +3756 +5399 +3588 +1297 +3588 +935 +4102 +3475 +3173 +1096 +720 +3004 +5207 +2364 +5328 +138 +3123 +4778 +3588 +2992 +3588 +2316 +2228 +4340 +2192 +266 +619 +3173 +4149 +2233 +3588 +125 +2344 +3588 +3680 +3588 +5547 +1063 +578 +1519 +3588 +3405 +4102 +2641 +125 +3361 +5399 +3588 +2372 +3588 +935 +1063 +3588 +517 +5613 +3708 +2594 +4102 +4160 +3588 +3957 +2532 +3588 +4378 +3588 +129 +2443 +3361 +3588 +3645 +3588 +4416 +2345 +846 +4102 +1224 +3588 +2063 +2281 +5613 +1223 +3584 +1093 +3739 +3984 +2983 +3588 +124 +2666 +4102 +3588 +5038 +2410 +4098 +2944 +1909 +2033 +2250 +4102 +4460 +3588 +4204 +3756 +4881 +3588 +544 +1209 +3588 +2685 +3326 +1515 +2532 +5101 +2089 +3004 +1063 +1952 +3588 +5550 +1473 +1334 +4012 +1066 +913 +4546 +2422 +5037 +1138 +2532 +4545 +2532 +3588 +4396 +3739 +1223 +4102 +2610 +932 +2038 +1343 +2013 +1860 +5420 +4750 +3023 +4570 +1411 +4442 +5343 +4750 +3162 +1412 +575 +769 +1096 +2478 +1722 +4171 +3925 +245 +2827 +2983 +1135 +1537 +386 +3588 +3498 +846 +1161 +243 +5178 +3756 +4327 +3588 +629 +2443 +2909 +386 +5177 +1161 +2087 +1701 +2532 +3148 +3984 +2983 +1161 +2089 +1199 +2532 +5438 +3034 +3985 +4249 +1722 +5408 +3162 +599 +4022 +1722 +3374 +1722 +122 +1192 +5302 +2346 +2558 +4105 +1909 +2047 +2532 +3735 +2532 +4693 +2532 +3588 +3692 +3588 +1093 +3739 +3756 +1510 +514 +3588 +2889 +2532 +3778 +3956 +3140 +1223 +3588 +4102 +3756 +2865 +3588 +1860 +3588 +2316 +4012 +1473 +2909 +5100 +4265 +2443 +3361 +5565 +1473 +5048 +5105 +2532 +1473 +2192 +5118 +4029 +1473 +3509 +3144 +659 +3591 +3956 +2532 +3588 +2139 +266 +1223 +5281 +5143 +3588 +4295 +1473 +73 +872 +1519 +3588 +3588 +4102 +747 +2532 +5051 +2424 +3739 +473 +3588 +4295 +846 +5479 +5278 +4716 +152 +2706 +5037 +1722 +1188 +3588 +2362 +3588 +2316 +2523 +1063 +357 +3588 +5278 +5108 +5259 +3588 +268 +1519 +1438 +485 +2443 +3361 +2577 +3588 +5590 +4771 +1590 +3768 +3360 +129 +478 +4314 +3588 +266 +464 +2532 +1585 +3588 +3874 +3748 +4771 +5613 +5207 +1256 +5207 +1473 +3361 +3643 +3809 +2962 +3366 +1590 +5259 +846 +1651 +1063 +3739 +25 +2962 +3811 +1161 +3146 +3956 +5207 +3739 +3858 +1519 +3809 +5278 +5613 +5207 +4771 +4374 +3588 +2316 +1063 +5101 +5207 +3739 +3756 +3811 +3962 +1161 +1487 +1510 +5565 +3809 +3739 +3353 +1096 +3956 +686 +3541 +2532 +3756 +5207 +1510 +3303 +1534 +3588 +3588 +4561 +1473 +3962 +2192 +3810 +2532 +1788 +3756 +4183 +3123 +5293 +3588 +3962 +3588 +4151 +2532 +2198 +1063 +3303 +3588 +4314 +3641 +2250 +2596 +3588 +1380 +846 +3811 +1161 +3588 +1909 +3588 +4851 +1519 +3588 +3335 +3588 +41 +846 +3303 +3956 +3809 +3303 +4314 +3588 +3918 +1380 +3756 +5479 +1510 +235 +3077 +1161 +5305 +2590 +1516 +1343 +3588 +1223 +846 +1128 +591 +1352 +3588 +3935 +5495 +2532 +3588 +3886 +1119 +461 +2532 +5163 +3717 +4160 +3588 +4228 +4771 +2443 +3361 +3588 +5560 +1624 +1161 +2390 +3123 +1377 +3326 +3956 +1515 +2532 +3588 +38 +3739 +5565 +3762 +3708 +3588 +2962 +1983 +3361 +5100 +5302 +575 +3588 +5485 +3588 +2316 +3361 +5100 +4491 +4088 +507 +5453 +1776 +2532 +1223 +3778 +3392 +3588 +4183 +3361 +5100 +4205 +2228 +952 +5613 +2269 +3739 +473 +1035 +1520 +591 +3588 +4415 +1438 +1063 +1492 +3754 +2532 +3347 +2309 +2816 +3588 +2129 +593 +1063 +3341 +5117 +3756 +2147 +2539 +3326 +1144 +1567 +846 +1063 +3756 +4334 +5584 +2532 +2545 +4442 +2532 +1105 +2532 +2217 +2532 +2366 +2532 +4536 +2279 +2532 +5456 +4487 +3739 +3588 +191 +3868 +3361 +4369 +846 +3056 +1063 +3756 +5342 +3588 +1291 +2579 +2342 +2345 +3588 +3735 +3036 +2532 +3779 +5398 +1510 +3588 +5324 +3475 +3004 +1510 +1630 +2532 +1790 +235 +4334 +4622 +3735 +2532 +4172 +2316 +2198 +2419 +2032 +2532 +3461 +32 +3831 +2532 +1577 +4416 +583 +1722 +3772 +2532 +2923 +3956 +2316 +2532 +4151 +1342 +5048 +2532 +1242 +3501 +3316 +2424 +2532 +129 +4473 +2909 +2980 +3844 +3588 +6 +991 +3361 +3868 +3588 +2980 +1063 +1487 +3756 +1628 +1565 +3868 +3588 +1909 +1093 +5537 +4183 +3123 +1473 +3588 +3588 +575 +3772 +654 +3739 +3588 +5456 +3588 +1093 +4531 +5119 +1161 +3568 +1861 +3004 +2089 +530 +1473 +4579 +3756 +3440 +3588 +1093 +235 +2532 +3588 +3772 +1161 +3588 +2089 +530 +1213 +3588 +3588 +4531 +3331 +5613 +4160 +2443 +3306 +3588 +3361 +4531 +1352 +932 +761 +3880 +2192 +5485 +1223 +3739 +3000 +2102 +3588 +2316 +3326 +2124 +2532 +1169 +1063 +2532 +3588 +2316 +1473 +4442 +2654 +3588 +5360 +3306 +3588 +5381 +3361 +1950 +1063 +1223 +3778 +2990 +5100 +3579 +32 +3403 +3588 +1198 +5613 +4887 +3588 +2558 +5613 +2532 +846 +1510 +1722 +4983 +5093 +3588 +1062 +1722 +3956 +2532 +3588 +2845 +283 +1063 +4205 +2532 +3432 +2919 +3588 +2316 +866 +3588 +5158 +714 +3588 +3918 +1063 +846 +2046 +3756 +3361 +4771 +447 +3761 +3756 +3361 +4771 +1459 +5620 +2292 +1473 +3004 +2962 +1473 +998 +3756 +5399 +5101 +4160 +1473 +444 +3421 +3588 +2233 +4771 +3748 +2980 +4771 +3588 +3056 +3588 +2316 +3739 +3588 +1545 +3588 +391 +333 +3401 +3588 +4102 +2424 +5547 +5504 +2532 +4594 +3588 +846 +2532 +1519 +3588 +165 +1322 +4164 +2532 +3581 +3361 +3911 +1063 +2570 +5485 +950 +3588 +2588 +3756 +1033 +1722 +3739 +3756 +5623 +3588 +4043 +2192 +2379 +1537 +3739 +5315 +3756 +2192 +1849 +3588 +3588 +4633 +3000 +1063 +1533 +3739 +2226 +3588 +129 +4012 +266 +1519 +3588 +40 +1223 +3588 +749 +3778 +3588 +4983 +2618 +1854 +3588 +3925 +1352 +2532 +2424 +2443 +37 +1223 +3588 +2398 +129 +3588 +2992 +1854 +3588 +4439 +3958 +5106 +1831 +4314 +846 +1854 +3588 +3925 +3588 +3680 +846 +5342 +1063 +3756 +2192 +5602 +3306 +4172 +235 +3588 +3195 +1934 +3767 +1223 +846 +399 +1223 +3956 +3588 +2316 +2378 +133 +3778 +1510 +2590 +5491 +3670 +3588 +3686 +846 +1161 +3588 +2140 +2532 +2842 +3361 +1950 +1063 +5108 +2378 +2100 +3588 +2316 +3982 +3588 +2233 +4771 +2532 +5226 +1063 +846 +69 +5228 +3588 +5590 +4771 +5613 +3056 +591 +2443 +3326 +5479 +3778 +4160 +2532 +3361 +4727 +1063 +255 +4771 +3778 +4336 +4012 +1473 +1063 +3982 +3754 +2570 +4893 +2192 +1722 +3956 +2573 +390 +2309 +1161 +4057 +3870 +3778 +4160 +2443 +5032 +600 +4771 +1161 +3588 +2316 +3588 +1515 +3588 +321 +1537 +3498 +1722 +129 +1242 +166 +3588 +4166 +3588 +4263 +3588 +3173 +3588 +2962 +1473 +2424 +2675 +4771 +1722 +3956 +18 +1519 +3588 +4160 +3588 +2307 +846 +4160 +1722 +1473 +3588 +2101 +1799 +846 +1223 +2424 +5547 +3739 +3588 +1391 +1519 +3588 +165 +3588 +165 +281 +1161 +3870 +4771 +80 +430 +3588 +3056 +3588 +3874 +1063 +2532 +1223 +1024 +1989 +4771 +1097 +3588 +80 +1473 +5095 +630 +3326 +3739 +1437 +5032 +2064 +3708 +4771 +782 +3956 +3588 +2233 +4771 +2532 +3956 +3588 +40 +782 +4771 +3588 +575 +3588 +2482 +3588 +5485 +3326 +3956 +4771 +2385 +2316 +2532 +2962 +2424 +5547 +1401 +3588 +1427 +5443 +3588 +1722 +3588 +1290 +5463 +80 +1473 +3956 +5479 +2233 +3752 +3986 +4164 +4045 +1097 +3754 +3588 +1383 +4771 +3588 +4102 +2716 +5281 +1161 +3588 +5281 +2041 +5046 +2192 +2443 +1510 +5046 +2532 +3648 +1722 +3367 +3007 +1161 +1487 +5100 +4771 +3007 +4678 +154 +3844 +3588 +1325 +3956 +574 +2532 +3361 +3679 +2316 +2532 +1325 +846 +1161 +154 +1722 +4102 +3367 +1252 +1063 +3588 +1252 +1503 +2830 +2281 +416 +2532 +4494 +1063 +3361 +3633 +3588 +444 +1565 +3754 +2983 +5100 +3844 +3588 +2962 +435 +1374 +182 +1722 +3956 +3588 +3598 +846 +1161 +2744 +3588 +80 +3588 +5011 +1722 +3588 +5311 +846 +1161 +3588 +4145 +1722 +3588 +5014 +846 +3754 +5613 +438 +5528 +3928 +1063 +393 +3588 +2246 +4862 +3588 +2742 +2532 +3583 +3588 +5528 +2532 +3588 +438 +846 +1601 +2532 +3588 +2143 +3588 +4383 +846 +622 +3779 +2532 +3588 +4145 +1722 +3588 +4197 +846 +3133 +3107 +435 +3739 +5278 +3986 +3754 +1384 +1096 +2983 +3588 +4735 +3588 +2222 +3739 +1861 +3588 +25 +846 +3367 +3985 +3004 +3754 +575 +2316 +3985 +1063 +3588 +2316 +551 +1510 +2556 +1161 +3985 +846 +3762 +1161 +1538 +3985 +5259 +3588 +2398 +1939 +1828 +2532 +1185 +1534 +3588 +1939 +4815 +5088 +266 +1161 +3588 +266 +658 +616 +2288 +3361 +4105 +80 +1473 +27 +3956 +1394 +18 +2532 +3956 +1434 +5046 +509 +1510 +2597 +575 +3588 +3962 +3588 +5457 +3844 +3739 +3756 +1762 +3883 +2228 +5157 +644 +1014 +616 +1473 +3056 +225 +1519 +3588 +1510 +1473 +536 +5100 +3588 +846 +2938 +1492 +80 +1473 +27 +1161 +1510 +3956 +444 +5036 +1519 +3588 +191 +1021 +1519 +3588 +2980 +1021 +1519 +3709 +1063 +3709 +435 +1343 +2316 +3756 +2038 +1352 +659 +3956 +4507 +2532 +4050 +2549 +1722 +4240 +1209 +3588 +1721 +3056 +3588 +1410 +4982 +3588 +5590 +4771 +1161 +1096 +4163 +3056 +2532 +3361 +202 +3440 +3884 +1438 +3754 +1487 +5100 +202 +3056 +1510 +2532 +3756 +4163 +3778 +1503 +435 +2657 +3588 +4383 +3588 +1078 +846 +1722 +2072 +1063 +2657 +1438 +2532 +565 +2532 +2112 +1950 +3697 +1510 +1161 +3588 +3879 +1519 +3551 +5046 +3588 +3588 +1657 +2532 +3887 +1096 +3756 +202 +1953 +235 +4163 +2041 +3778 +3107 +1722 +3588 +4162 +846 +1510 +1487 +5100 +1380 +2357 +1510 +3361 +5468 +1100 +1438 +235 +538 +2588 +1438 +3778 +3588 +2356 +3152 +2356 +2513 +2532 +283 +3844 +3588 +2316 +2532 +3962 +1510 +3778 +1980 +3737 +2532 +5503 +1722 +3588 +2347 +846 +784 +1438 +5083 +575 +3588 +2889 +80 +1473 +3361 +1722 +4382 +2192 +3588 +4102 +3588 +2962 +1473 +2424 +5547 +3588 +1391 +1063 +1437 +1525 +1519 +4864 +4771 +435 +5554 +1722 +2066 +2986 +1161 +1525 +2532 +4434 +1722 +4508 +2066 +1161 +1914 +1909 +3588 +5409 +3588 +2066 +3588 +2986 +2532 +3004 +4771 +2521 +5602 +2573 +2532 +3588 +4434 +3004 +4771 +2476 +1563 +2228 +2521 +5259 +3588 +5286 +1473 +3756 +1252 +1722 +1438 +2532 +1096 +2923 +1261 +4190 +191 +80 +1473 +27 +3756 +3588 +2316 +1586 +3588 +4434 +3588 +2889 +4145 +1722 +4102 +2532 +2818 +3588 +932 +3739 +1861 +3588 +25 +846 +1161 +4771 +818 +3588 +4434 +3756 +3588 +4145 +2616 +4771 +2532 +846 +1670 +4771 +1519 +2922 +3756 +846 +987 +3588 +2570 +3686 +3588 +1941 +1909 +4771 +1487 +3305 +3551 +937 +5055 +2596 +3588 +1124 +25 +3588 +4139 +4771 +5613 +4572 +2573 +4160 +1161 +1487 +4380 +266 +2038 +1651 +5259 +3588 +3551 +5613 +3848 +1063 +3748 +3650 +3588 +3551 +5083 +1161 +4417 +1722 +1520 +1096 +3956 +1777 +1063 +3588 +3004 +3361 +3431 +3004 +2532 +3361 +5407 +1161 +1487 +3756 +3431 +1161 +5407 +1096 +3848 +3551 +3779 +2980 +2532 +3779 +4160 +5613 +1223 +3551 +1657 +2919 +3195 +1063 +3588 +2920 +448 +3588 +3361 +4160 +1656 +2620 +1656 +2920 +80 +1473 +5101 +3588 +3786 +1437 +4102 +2192 +3004 +5100 +1161 +2041 +3361 +2192 +3361 +1410 +3588 +4102 +4982 +846 +1437 +80 +2228 +79 +1131 +5225 +2532 +3007 +3588 +2184 +5160 +1161 +3004 +846 +5100 +1537 +4771 +5217 +1722 +1515 +2328 +2532 +5526 +1161 +3361 +1325 +846 +3588 +2006 +3588 +4983 +5101 +3588 +3786 +3779 +2532 +3588 +4102 +1437 +3361 +2192 +2041 +3498 +1510 +2596 +1438 +235 +2046 +5100 +4771 +4102 +2192 +2504 +2041 +2192 +1166 +1473 +3588 +4102 +4771 +5565 +3588 +2041 +2504 +4771 +1166 +1537 +3588 +2041 +1473 +3588 +4102 +4771 +4100 +3754 +1520 +1510 +3588 +2316 +2573 +4160 +2532 +3588 +1140 +4100 +2532 +5425 +1161 +5599 +444 +2756 +2309 +1097 +3754 +3588 +4102 +5565 +3588 +2041 +692 +1510 +11 +3588 +3962 +1473 +3756 +1537 +2041 +1344 +399 +2464 +3588 +5207 +846 +1909 +3588 +2379 +991 +3754 +3588 +4102 +4903 +3588 +2041 +846 +2532 +1537 +3588 +2041 +3588 +4102 +5048 +2532 +4137 +3588 +1124 +3588 +3004 +1161 +4100 +11 +3588 +2316 +2532 +3049 +846 +1519 +1343 +2532 +5384 +2316 +2564 +3708 +3754 +1537 +2041 +1344 +444 +2532 +3756 +1537 +4102 +3440 +1161 +3668 +2532 +4460 +3588 +4204 +3756 +1537 +2041 +1344 +5264 +3588 +32 +2532 +2087 +3598 +1544 +1063 +5618 +3588 +4983 +5565 +4151 +3498 +1510 +3779 +2532 +3588 +4102 +5565 +2041 +3498 +1510 +80 +1473 +3361 +4183 +1320 +1096 +1492 +3754 +3173 +2917 +2983 +1063 +4183 +4417 +537 +1487 +5100 +1722 +3056 +3756 +4417 +3778 +5046 +435 +1415 +5468 +2532 +3650 +3588 +4983 +1161 +1487 +3588 +2462 +3588 +5469 +1519 +3588 +4750 +906 +1519 +3588 +3982 +846 +1473 +2532 +3650 +3588 +4983 +846 +3329 +3708 +2532 +3588 +4143 +5082 +1510 +2532 +5259 +417 +4642 +1643 +3329 +5259 +1646 +4079 +3699 +3588 +3730 +3588 +2116 +1014 +3779 +2532 +3588 +1100 +3398 +3196 +1510 +2532 +3173 +3166 +3708 +2245 +4442 +2245 +5208 +381 +2532 +3588 +1100 +4442 +3588 +2889 +3588 +93 +3588 +1100 +2525 +1722 +3588 +3196 +1473 +3588 +4695 +3650 +3588 +4983 +2532 +5394 +3588 +5164 +3588 +1078 +2532 +5394 +5259 +3588 +1067 +1063 +3956 +5449 +5037 +2342 +2532 +4071 +5037 +2062 +2532 +1724 +1150 +2532 +1150 +3588 +5449 +3588 +442 +1161 +3588 +1100 +1150 +1410 +3762 +444 +182 +2556 +3324 +2447 +2287 +1722 +846 +2127 +3588 +2962 +2532 +3962 +2532 +1722 +846 +2672 +3588 +444 +3588 +2596 +3669 +2316 +1096 +1537 +3588 +846 +4750 +1831 +2129 +2532 +2671 +80 +1473 +3756 +5534 +3778 +3779 +1096 +3385 +3588 +4077 +1537 +3588 +846 +3692 +1032 +3588 +1099 +2532 +3588 +4089 +80 +1473 +3361 +1410 +4808 +1636 +4160 +2228 +288 +4810 +3777 +252 +4160 +1099 +5204 +5101 +4680 +2532 +1990 +1722 +4771 +1166 +1537 +3588 +2570 +391 +3588 +2041 +846 +1722 +4240 +4678 +1161 +1487 +2192 +2205 +4089 +2532 +2052 +1722 +3588 +2588 +4771 +3361 +2620 +2532 +5574 +2596 +3588 +225 +3756 +1510 +3778 +3588 +4678 +509 +2718 +235 +1919 +5591 +1141 +1063 +3699 +2205 +2532 +2052 +1563 +181 +2532 +3956 +5337 +4229 +1161 +3588 +509 +4678 +4412 +3303 +53 +1510 +1899 +1516 +1933 +2138 +3324 +1656 +2532 +2590 +18 +87 +505 +1161 +2590 +1343 +1722 +1515 +4687 +3588 +4160 +1515 +4159 +4171 +2532 +4159 +3163 +1722 +4771 +3756 +1782 +1537 +3588 +2237 +4771 +3588 +4754 +1722 +3588 +3196 +4771 +1937 +2532 +3756 +2192 +5407 +2532 +2206 +2532 +3756 +1410 +2013 +3164 +2532 +4170 +3756 +2192 +1223 +3588 +3361 +154 +4771 +154 +2532 +3756 +2983 +1360 +2560 +154 +2443 +1722 +3588 +2237 +4771 +1159 +3428 +3756 +1492 +3754 +3588 +5373 +3588 +2889 +2189 +3588 +2316 +1510 +3767 +1437 +3739 +1014 +1510 +5384 +3588 +2889 +2190 +3588 +2316 +2525 +2228 +1380 +3754 +2761 +3588 +1124 +3004 +4314 +5355 +1971 +3588 +4151 +3739 +2730 +1722 +1473 +1161 +3173 +5485 +1325 +1352 +3004 +3588 +2316 +5244 +498 +1161 +5011 +1325 +5485 +3767 +5293 +3588 +2316 +1161 +436 +3588 +1228 +2532 +5343 +575 +4771 +1448 +3588 +2316 +2532 +1448 +4771 +2511 +5495 +268 +2532 +48 +2588 +1374 +5003 +2532 +3996 +2532 +2799 +3588 +1071 +4771 +1519 +3997 +3344 +2532 +3588 +5479 +1519 +2726 +5013 +1799 +2962 +2532 +5312 +4771 +3361 +2635 +240 +80 +3588 +2635 +80 +2228 +2919 +3588 +80 +846 +2635 +3551 +2532 +2919 +3551 +1161 +1487 +3551 +2919 +1510 +3756 +4163 +3551 +235 +2923 +1520 +1510 +3550 +2532 +2923 +3588 +1410 +4982 +2532 +622 +1161 +4771 +5101 +1510 +3588 +2919 +3588 +4139 +71 +3568 +3588 +3004 +4594 +2228 +839 +4198 +1519 +3592 +3588 +4172 +2532 +4160 +1563 +1763 +2532 +1710 +2532 +2770 +3748 +3756 +1987 +3588 +839 +4169 +3588 +2222 +4771 +1063 +1510 +822 +3588 +4314 +3641 +5316 +1899 +2532 +853 +473 +3588 +3004 +4771 +1437 +3588 +2962 +2309 +2532 +2198 +2532 +4160 +3778 +2228 +1565 +1161 +3568 +2744 +1722 +3588 +212 +4771 +3956 +2746 +5108 +4190 +1510 +3767 +1492 +2570 +4160 +2532 +3361 +4160 +266 +846 +1510 +71 +3568 +3588 +4145 +2799 +3649 +1909 +3588 +5004 +4771 +3588 +1904 +3588 +4149 +4771 +4595 +2532 +3588 +2440 +4771 +4598 +1096 +3588 +5557 +4771 +2532 +3588 +696 +2728 +2532 +3588 +2447 +846 +1519 +3142 +4771 +1510 +2532 +5315 +3588 +4561 +4771 +5613 +4442 +2343 +1722 +2078 +2250 +3708 +3588 +3408 +3588 +2040 +3588 +270 +3588 +5561 +4771 +3588 +650 +575 +4771 +2896 +2532 +3588 +995 +3588 +2325 +1519 +3588 +3775 +2962 +4519 +1525 +5171 +1909 +3588 +1093 +2532 +4684 +5142 +3588 +2588 +4771 +1722 +2250 +4967 +2613 +5407 +3588 +1342 +3756 +498 +4771 +3767 +80 +3114 +2193 +3588 +3952 +3588 +2962 +3708 +3588 +1092 +1551 +3588 +5093 +2590 +3588 +1093 +3114 +1909 +846 +2193 +2983 +4406 +2532 +3797 +3114 +2532 +4771 +4741 +3588 +2588 +4771 +3754 +3588 +3952 +3588 +2962 +1448 +80 +3361 +4727 +2596 +240 +2443 +3361 +2919 +3708 +3588 +2923 +4253 +3588 +2374 +2476 +80 +2983 +5262 +3588 +2552 +2532 +3588 +3115 +3588 +4396 +3739 +2980 +1722 +3588 +3686 +2962 +3708 +3106 +3588 +5278 +3588 +5281 +2492 +191 +2532 +3588 +5056 +2962 +3708 +3754 +1510 +3588 +2962 +4184 +2532 +3629 +1161 +80 +1473 +4253 +3956 +3361 +3660 +3383 +3588 +3772 +3383 +3588 +1093 +3383 +243 +5100 +3727 +1161 +1510 +4771 +3588 +3483 +3483 +2532 +3588 +3756 +3756 +2443 +3361 +5259 +2920 +4098 +2553 +5100 +1722 +4771 +4336 +2114 +5100 +5567 +770 +5100 +1722 +4771 +4341 +3588 +4245 +3588 +1577 +2532 +4336 +1909 +846 +218 +1637 +1722 +3588 +3686 +3588 +2962 +2532 +3588 +2171 +3588 +4102 +4982 +3588 +2577 +2532 +1453 +846 +3588 +2962 +2579 +266 +1510 +4160 +863 +846 +3767 +1843 +240 +3588 +266 +2532 +4336 +5228 +240 +3704 +2390 +4183 +2480 +1162 +1342 +1754 +2243 +1510 +444 +3663 +1473 +2532 +4335 +4336 +3588 +3361 +1026 +2532 +3756 +1026 +1909 +3588 +1093 +1763 +5140 +2532 +3376 +1803 +2532 +3825 +4336 +2532 +3588 +3772 +5205 +1325 +2532 +3588 +1093 +985 +3588 +2590 +846 +80 +1473 +1437 +5100 +1722 +4771 +4105 +575 +3588 +225 +2532 +1994 +5100 +846 +1097 +3754 +3588 +1994 +268 +1537 +4106 +3598 +846 +4982 +5590 +846 +1537 +2288 +2532 +2572 +4128 +266 +4074 +652 +2424 +5547 +1588 +3927 +1290 +4195 +1053 +2587 +773 +2532 +978 +2596 +4268 +2316 +3962 +1722 +38 +4151 +1519 +5218 +2532 +4473 +129 +2424 +5547 +5485 +2532 +1515 +4771 +4129 +2128 +3588 +2316 +2532 +3962 +3588 +2962 +1473 +2424 +5547 +3588 +2596 +3588 +4183 +846 +1656 +313 +1473 +1519 +1680 +2198 +1223 +386 +2424 +5547 +1537 +3498 +1519 +2817 +862 +2532 +283 +2532 +263 +5083 +1722 +3772 +1519 +4771 +3588 +1722 +1411 +2316 +5432 +1223 +4102 +1519 +4991 +2092 +601 +1722 +2540 +2078 +1722 +3739 +21 +1487 +3641 +737 +1163 +3076 +1722 +4164 +3986 +2443 +3588 +1383 +4771 +3588 +4102 +4186 +5553 +3588 +622 +1161 +1223 +4442 +1381 +2147 +1519 +1868 +2532 +1391 +2532 +5092 +1722 +602 +2424 +5547 +3739 +3756 +3708 +25 +1161 +1519 +3739 +737 +3361 +3708 +4100 +21 +5479 +412 +2532 +1392 +2865 +3588 +5056 +3588 +4102 +4991 +5590 +4012 +3739 +4991 +1567 +2532 +1830 +4396 +3588 +4012 +3588 +1519 +4771 +5485 +4395 +2045 +1519 +5101 +2228 +4169 +2540 +1213 +3588 +1722 +846 +4151 +5547 +4303 +3588 +1519 +5547 +3804 +2532 +3588 +3326 +3778 +1391 +3739 +601 +3754 +3756 +1438 +1161 +4771 +1247 +846 +3739 +3568 +312 +4771 +1223 +3588 +2097 +4771 +1722 +4151 +40 +649 +575 +3772 +1519 +3739 +3879 +1937 +32 +1352 +328 +3588 +3751 +3588 +1271 +4771 +3525 +5049 +1679 +1909 +3588 +5342 +4771 +5485 +1722 +602 +2424 +5547 +5613 +5043 +5218 +3361 +4964 +3588 +4386 +1722 +3588 +52 +4771 +1939 +235 +2596 +3588 +2564 +4771 +40 +2532 +846 +40 +1722 +3956 +391 +1096 +1360 +1125 +40 +1510 +3754 +1473 +40 +2532 +1487 +3962 +1941 +3588 +678 +2919 +2596 +3588 +1538 +2041 +1722 +5401 +3588 +3588 +3940 +4771 +5550 +390 +1492 +3754 +3756 +5349 +694 +2228 +5553 +3084 +1537 +3588 +3152 +4771 +391 +3970 +235 +5093 +129 +5613 +286 +299 +2532 +784 +5547 +3303 +4267 +4253 +2602 +2889 +1161 +5319 +1909 +2078 +3588 +5550 +1223 +4771 +3588 +1223 +846 +4103 +1519 +2316 +3588 +1453 +846 +1537 +3498 +2532 +1391 +846 +1325 +5620 +3588 +4102 +4771 +2532 +1680 +1510 +1519 +2316 +3588 +5590 +4771 +48 +1722 +3588 +5218 +3588 +225 +1519 +5360 +505 +1537 +2588 +240 +25 +1619 +313 +3756 +1537 +4701 +5349 +235 +862 +1223 +3056 +2316 +2198 +2532 +3306 +1360 +3956 +4561 +5613 +5528 +2532 +3956 +1391 +846 +5613 +438 +5528 +3583 +3588 +5528 +2532 +3588 +438 +1601 +1161 +3588 +4487 +2962 +3306 +1519 +3588 +165 +1161 +3778 +1510 +3588 +4487 +3588 +2097 +1519 +4771 +3767 +659 +3956 +2549 +2532 +3956 +1388 +2532 +5272 +2532 +5355 +2532 +3956 +2636 +5613 +738 +1025 +3588 +3050 +97 +1051 +1971 +2443 +1722 +846 +837 +1519 +4991 +1487 +1089 +3754 +5543 +3588 +2962 +4334 +4314 +3739 +3037 +2198 +3303 +5259 +444 +593 +1161 +3844 +2316 +1588 +1784 +2532 +846 +5613 +3037 +2198 +3618 +3624 +4152 +1519 +2406 +40 +399 +4152 +2378 +2144 +2316 +1223 +2424 +5547 +1360 +4023 +1722 +1124 +3708 +5087 +1722 +4622 +3037 +1588 +204 +1784 +2532 +3588 +4100 +1909 +846 +3756 +3361 +2617 +3767 +3588 +5092 +4771 +3588 +4100 +1161 +569 +3037 +3739 +593 +3588 +3618 +3778 +1096 +1519 +2776 +1137 +2532 +3037 +4348 +2532 +4073 +4625 +3739 +4350 +3588 +3056 +544 +1519 +3739 +2532 +5087 +1161 +4771 +1085 +1588 +934 +2406 +1484 +40 +2992 +1519 +4047 +3704 +1804 +3588 +703 +3588 +1537 +4655 +4771 +2564 +1519 +3588 +2298 +846 +5457 +3739 +4218 +3756 +2992 +1161 +3568 +2992 +2316 +3588 +3756 +1653 +1161 +3568 +1653 +27 +3870 +5613 +3941 +2532 +3927 +568 +3588 +4559 +1939 +3748 +4754 +2596 +3588 +5590 +3588 +391 +4771 +1722 +3588 +1484 +2192 +2570 +2443 +1722 +3739 +2635 +4771 +5613 +2555 +1537 +3588 +2570 +2041 +2029 +1392 +3588 +2316 +1722 +2250 +1984 +5293 +1223 +3588 +2962 +3956 +442 +2937 +1535 +935 +5613 +5242 +1535 +2232 +5613 +1223 +846 +3992 +1519 +1557 +2555 +1161 +1868 +17 +3754 +3779 +1510 +3588 +2307 +3588 +2316 +15 +5392 +3588 +3588 +878 +444 +56 +5613 +1658 +2532 +3361 +5613 +2192 +1942 +3588 +2549 +3588 +1657 +235 +5613 +2316 +1401 +3956 +5091 +3588 +81 +25 +3588 +2316 +5399 +3588 +935 +5091 +3588 +3610 +5293 +1722 +3956 +5401 +3588 +1203 +3756 +3440 +3588 +18 +2532 +1933 +235 +2532 +3588 +4646 +1063 +3778 +5485 +1487 +1223 +4893 +2316 +5297 +5100 +3077 +3958 +95 +1063 +4169 +2811 +1487 +264 +2532 +2852 +5278 +235 +1487 +15 +2532 +3958 +5278 +3778 +5485 +3844 +2316 +1063 +1519 +3778 +2564 +3754 +2532 +5547 +3958 +5228 +4771 +4771 +5277 +5261 +2443 +1872 +3588 +2487 +846 +3739 +266 +3756 +4160 +3761 +2147 +1388 +1722 +3588 +4750 +846 +3739 +3058 +3756 +486 +3958 +3756 +546 +1161 +3860 +3588 +2919 +1346 +3739 +846 +3588 +266 +1473 +399 +1722 +3588 +4983 +846 +1909 +3588 +3586 +2443 +3588 +266 +581 +3588 +1343 +2198 +3739 +3588 +3468 +2390 +1063 +1510 +5613 +4263 +4105 +235 +1994 +3568 +1909 +3588 +4166 +2532 +1985 +3588 +5590 +4771 +1135 +3668 +5293 +3588 +2398 +435 +2443 +1487 +2532 +5100 +544 +3588 +3056 +1223 +3588 +3588 +1135 +391 +427 +3056 +2770 +2029 +3588 +1722 +5401 +53 +391 +4771 +3739 +1510 +3756 +3588 +1855 +1708 +2359 +2532 +4025 +5553 +2228 +1745 +2440 +2889 +235 +3588 +2927 +3588 +2588 +444 +1722 +3588 +862 +3588 +4239 +2532 +2272 +4151 +3739 +1510 +1799 +3588 +2316 +4185 +1063 +3779 +4218 +2532 +3588 +40 +1135 +3588 +1679 +1519 +2316 +2885 +1438 +5293 +3588 +2398 +435 +5613 +4564 +5219 +3588 +11 +2962 +846 +2564 +3739 +5043 +1096 +15 +2532 +3361 +5399 +3367 +4423 +3588 +435 +3668 +4924 +2596 +1108 +5613 +772 +4632 +3588 +1134 +632 +5092 +5613 +2532 +4789 +5485 +2222 +1519 +3588 +3361 +1465 +3588 +4335 +4771 +1161 +3588 +5056 +3956 +3675 +4835 +5361 +2155 +5012 +3361 +591 +2556 +473 +2556 +2228 +3059 +473 +3059 +1161 +5121 +2127 +3754 +1519 +3778 +2564 +2443 +2129 +2816 +1063 +3588 +2309 +2222 +25 +2532 +3708 +2250 +18 +3973 +3588 +1100 +575 +2556 +2532 +5491 +3588 +3361 +2980 +1388 +1161 +1578 +575 +2556 +2532 +4160 +18 +2212 +1515 +2532 +1377 +846 +3754 +3788 +2962 +1909 +1342 +2532 +3775 +846 +1519 +1162 +846 +1161 +4383 +2962 +1909 +4160 +2556 +2532 +5101 +3588 +2559 +4771 +1437 +3588 +18 +2207 +1096 +235 +1487 +2532 +3958 +1223 +1343 +3107 +1161 +3588 +5401 +846 +3361 +5399 +3366 +5015 +1161 +2962 +3588 +5547 +37 +1722 +3588 +2588 +4771 +2092 +104 +4314 +627 +3956 +3588 +154 +4771 +3056 +4012 +3588 +1722 +4771 +1680 +235 +3326 +4240 +2532 +5401 +4893 +18 +2192 +2443 +1722 +3739 +2635 +2617 +3588 +1908 +4771 +3588 +18 +1722 +5547 +391 +1063 +2909 +15 +1487 +2309 +3588 +2307 +3588 +2316 +3958 +2228 +2554 +3754 +2532 +5547 +530 +4012 +266 +599 +1342 +5228 +94 +2443 +4771 +4317 +3588 +2316 +3303 +2289 +4561 +1161 +2227 +4151 +1722 +3739 +4198 +2784 +2532 +3588 +1722 +5438 +4151 +544 +4218 +3753 +553 +3588 +3588 +2316 +3115 +1722 +2250 +3575 +2680 +2787 +1519 +3739 +3641 +3778 +1510 +3638 +5590 +1295 +1223 +5204 +3739 +2532 +4771 +3568 +4982 +499 +908 +3756 +4561 +595 +4509 +235 +4893 +18 +1906 +1519 +2316 +1223 +386 +2424 +5547 +3739 +1510 +1722 +1188 +2316 +4198 +1519 +3772 +5293 +846 +32 +2532 +1849 +2532 +1411 +3767 +5547 +3958 +4561 +2532 +4771 +3588 +846 +1771 +3695 +1519 +3588 +3371 +444 +1939 +235 +2307 +2316 +3588 +1954 +1722 +4561 +5550 +980 +3754 +3588 +3958 +4561 +3973 +266 +1063 +713 +3588 +3928 +5550 +3588 +1013 +3588 +1484 +2716 +4198 +1722 +766 +1939 +3632 +2970 +4224 +2532 +111 +1495 +1722 +3739 +3579 +3361 +4936 +4771 +1519 +3588 +846 +3588 +810 +401 +987 +3739 +591 +3056 +3588 +2093 +2192 +2919 +2198 +2532 +3498 +1063 +1519 +3778 +2532 +3498 +2097 +2443 +3303 +2919 +2596 +444 +4561 +1161 +2198 +2596 +2316 +4151 +1161 +3956 +3588 +5056 +1448 +3767 +4993 +2532 +3525 +1519 +4335 +4253 +3956 +3588 +1519 +1438 +26 +1618 +2192 +3754 +26 +2572 +4128 +266 +5382 +1519 +240 +427 +1112 +1538 +2531 +2983 +5486 +1519 +1438 +846 +1247 +5613 +2570 +3623 +4164 +5485 +2316 +1487 +5100 +2980 +5613 +3051 +2316 +1487 +5100 +1247 +5613 +1537 +2479 +3739 +5524 +3588 +2316 +2443 +1722 +3956 +1392 +3588 +2316 +1223 +2424 +5547 +3739 +1510 +3588 +1391 +2532 +3588 +2904 +1519 +3588 +165 +3588 +165 +281 +27 +3361 +3579 +3588 +1722 +4771 +4451 +4314 +3986 +4771 +1096 +5613 +3581 +4771 +4819 +235 +2526 +2841 +3588 +3588 +5547 +3804 +5463 +2443 +2532 +1722 +3588 +602 +3588 +1391 +846 +5463 +21 +1487 +3679 +1722 +3686 +5547 +3107 +3754 +3588 +3588 +1391 +2532 +3588 +3588 +2316 +4151 +1909 +4771 +373 +1063 +3361 +5100 +4771 +3958 +5613 +5406 +2228 +2812 +2228 +2555 +2228 +5613 +244 +1161 +1487 +5613 +5546 +3361 +153 +1161 +1392 +3588 +2316 +1722 +3588 +3686 +3778 +3754 +3588 +2540 +3588 +756 +3588 +2917 +575 +3588 +3624 +3588 +2316 +1161 +1487 +4412 +575 +1473 +5101 +3588 +5056 +3588 +544 +3588 +3588 +2316 +2098 +2532 +1487 +3588 +1342 +3433 +4982 +3588 +765 +2532 +268 +4226 +5316 +5620 +2532 +3588 +3958 +2596 +3588 +2307 +3588 +2316 +4103 +2939 +3908 +3588 +5590 +846 +1722 +16 +3767 +4245 +1722 +4771 +3870 +3588 +4850 +2532 +3144 +3588 +3588 +5547 +3804 +2532 +3588 +3588 +3195 +601 +1391 +2844 +4165 +3588 +1722 +4771 +4168 +3588 +2316 +3361 +317 +235 +1596 +2596 +2316 +3366 +147 +235 +4290 +3366 +5613 +2634 +3588 +2819 +235 +1096 +5179 +3588 +4168 +2532 +5319 +3588 +750 +2865 +3588 +262 +3588 +1391 +4735 +3501 +3668 +5293 +4245 +1161 +3956 +240 +3588 +5012 +1463 +3754 +3588 +2316 +5244 +498 +1161 +5011 +1325 +5485 +3767 +5013 +5259 +3588 +2900 +5495 +3588 +2316 +2443 +4771 +5312 +1722 +2540 +3956 +3588 +3308 +4771 +1977 +1909 +846 +3754 +846 +3199 +4012 +4771 +3525 +1127 +3588 +476 +4771 +1228 +5613 +3023 +5612 +4043 +2212 +5100 +2666 +3739 +436 +4731 +3588 +4102 +1492 +3588 +846 +3588 +3804 +3588 +1722 +3588 +2889 +4771 +81 +2005 +1161 +3588 +2316 +3956 +5485 +3588 +2564 +4771 +1519 +3588 +166 +846 +1391 +1722 +5547 +3641 +3958 +846 +2675 +4741 +4599 +2311 +846 +3588 +2904 +1519 +3588 +165 +3588 +165 +281 +4771 +1223 +4610 +3588 +4103 +80 +5613 +3049 +1223 +3641 +1125 +3870 +2532 +1957 +3778 +1510 +227 +5485 +3588 +2316 +1519 +3739 +2476 +782 +4771 +3588 +1722 +897 +4899 +2532 +3138 +3588 +5207 +1473 +782 +240 +1722 +5370 +26 +1515 +4771 +3956 +3588 +1722 +5547 +4826 +4074 +1401 +2532 +652 +2424 +5547 +3588 +1473 +2975 +2472 +4102 +1722 +1343 +3588 +2316 +1473 +2532 +4990 +2424 +5547 +5485 +2532 +1515 +4771 +4129 +1722 +1922 +3588 +2316 +2532 +2424 +3588 +2962 +1473 +5613 +1473 +3588 +2304 +1411 +846 +3588 +3956 +3588 +4314 +2222 +2532 +2150 +1433 +1223 +3588 +1922 +3588 +2564 +1473 +2398 +1391 +2532 +703 +1223 +3739 +3588 +5093 +2532 +3173 +1862 +1473 +1433 +2443 +1223 +3778 +1096 +2844 +2304 +5449 +668 +3588 +1722 +3588 +2889 +1722 +1939 +5356 +1161 +2532 +846 +3778 +4710 +3956 +3923 +2023 +1722 +3588 +4102 +4771 +3588 +703 +1161 +1722 +3588 +703 +3588 +1108 +1161 +1722 +3588 +1108 +3588 +1466 +1161 +1722 +3588 +1466 +3588 +5281 +1161 +1722 +3588 +5281 +3588 +2150 +1161 +1722 +3588 +2150 +3588 +5360 +1161 +1722 +3588 +5360 +3588 +26 +1063 +3778 +4771 +5225 +2532 +4121 +3756 +692 +3761 +175 +2525 +1519 +3588 +3588 +2962 +1473 +2424 +5547 +1922 +1063 +3739 +3361 +3918 +3778 +5185 +1510 +3467 +2983 +3024 +3588 +2512 +3588 +3819 +846 +266 +1352 +80 +3123 +4704 +949 +4771 +3588 +2821 +2532 +1589 +4160 +1063 +3778 +4160 +3756 +3361 +4417 +4218 +1063 +3779 +4146 +2023 +4771 +3588 +1529 +1519 +3588 +166 +932 +3588 +2962 +1473 +2532 +4990 +2424 +5547 +1352 +3195 +104 +4771 +5279 +4012 +3778 +2539 +1492 +2532 +4741 +1722 +3588 +3918 +225 +1161 +1342 +2233 +1909 +3745 +1510 +1722 +3778 +3588 +4638 +1326 +4771 +1722 +5280 +1492 +3754 +5031 +1510 +3588 +595 +3588 +4638 +1473 +2531 +2532 +3588 +2962 +1473 +2424 +5547 +1213 +1473 +1161 +4704 +2532 +1539 +2192 +4771 +3326 +3588 +1699 +1841 +3588 +3778 +3420 +4160 +1063 +3756 +4679 +3454 +1811 +1107 +4771 +3588 +3588 +2962 +1473 +2424 +5547 +1411 +2532 +3952 +235 +1096 +2030 +3588 +1565 +3168 +1063 +2983 +3844 +2316 +3962 +5092 +2532 +1391 +5456 +5107 +5342 +846 +5259 +3588 +3169 +1391 +3588 +5207 +1473 +3588 +27 +1473 +3778 +1510 +1519 +3739 +1473 +2106 +2532 +3778 +3588 +5456 +1473 +191 +1537 +3772 +5342 +4862 +846 +1510 +1722 +3588 +40 +3735 +2532 +2192 +949 +3588 +4397 +3056 +2573 +4160 +3739 +4337 +5613 +3088 +5316 +1722 +850 +5117 +2193 +3739 +2250 +1306 +2532 +5459 +393 +1722 +3588 +2588 +4771 +3778 +4412 +1097 +3754 +3956 +4394 +1124 +2398 +1955 +3756 +1096 +1063 +3756 +2307 +444 +5342 +4394 +4218 +235 +5259 +4151 +40 +5342 +2980 +575 +2316 +444 +1161 +1096 +2532 +5578 +1722 +3588 +2992 +5613 +2532 +1722 +4771 +1510 +5572 +3748 +3919 +139 +684 +2532 +3588 +59 +846 +1203 +720 +1863 +1438 +5031 +684 +2532 +4183 +1811 +846 +3588 +766 +1223 +3739 +3588 +3598 +3588 +225 +987 +2532 +1722 +4124 +4112 +3056 +4771 +1710 +3739 +3588 +2917 +1597 +3756 +691 +2532 +3588 +684 +846 +3756 +3573 +1063 +1487 +3588 +2316 +32 +264 +3756 +5339 +235 +4577 +2217 +5020 +3860 +1519 +2920 +5083 +2532 +744 +2889 +3756 +5339 +235 +3590 +3575 +1343 +2783 +5442 +2627 +2889 +765 +1863 +2532 +4172 +4670 +2532 +1116 +5077 +2692 +2632 +5262 +3195 +764 +5087 +2532 +1342 +3091 +2669 +5259 +3588 +3588 +113 +1722 +766 +391 +4506 +1063 +990 +2532 +189 +3588 +1342 +1460 +1722 +846 +2250 +1537 +2250 +5590 +1342 +459 +2041 +928 +1492 +2962 +2152 +1537 +3986 +4506 +1161 +94 +1519 +2250 +2920 +2849 +5083 +1161 +3122 +3588 +3694 +4561 +1722 +1939 +3394 +4198 +2532 +2963 +2706 +5113 +829 +1391 +987 +3756 +5141 +3699 +32 +2479 +2532 +1411 +3173 +1510 +3756 +5342 +2596 +846 +3844 +2962 +989 +2920 +1161 +3778 +5613 +249 +2226 +1080 +5446 +1519 +259 +2532 +5356 +1722 +3739 +50 +987 +1722 +3588 +5356 +846 +2532 +5351 +91 +3408 +93 +2237 +2233 +3588 +1722 +2250 +5172 +4696 +2532 +3470 +1792 +1722 +3588 +539 +846 +4910 +4771 +2192 +3788 +3324 +3428 +2532 +180 +266 +1185 +5590 +793 +2588 +1128 +4124 +2192 +2671 +5043 +2641 +2117 +3598 +4105 +1811 +3588 +3598 +3588 +903 +3588 +1007 +3739 +3408 +93 +25 +1161 +1649 +2398 +3892 +2192 +5268 +880 +1722 +444 +5456 +5350 +2967 +3588 +3588 +4396 +3913 +3778 +1510 +4077 +504 +2532 +887 +5259 +2978 +1643 +3739 +3588 +2217 +3588 +4655 +5083 +1063 +5246 +3153 +5350 +1185 +1722 +1939 +4561 +766 +3588 +3641 +668 +3588 +1722 +4106 +390 +1657 +846 +1861 +846 +5225 +1401 +3588 +5356 +1063 +3739 +5100 +2274 +3778 +1402 +1063 +1487 +668 +3588 +3393 +3588 +2889 +1722 +1922 +3588 +2962 +2532 +4990 +2424 +5547 +1161 +3778 +3825 +1707 +2274 +1096 +846 +3588 +2078 +5501 +3588 +4413 +1063 +2909 +1510 +846 +3361 +1921 +3588 +3598 +3588 +1343 +2228 +1921 +5290 +1537 +3588 +3860 +846 +40 +1785 +4819 +846 +3588 +3588 +227 +3942 +2965 +1994 +1909 +3588 +2398 +1829 +2532 +5300 +3068 +1519 +2946 +1004 +27 +2235 +3778 +1208 +1992 +4771 +1125 +1722 +3739 +1326 +1722 +5280 +4771 +3588 +1506 +1271 +3403 +3588 +4302 +5259 +3588 +40 +4396 +4487 +2532 +3588 +3588 +652 +4771 +1785 +3588 +2962 +2532 +4990 +3778 +4412 +1097 +3754 +2064 +1909 +2078 +3588 +2250 +1722 +1701 +1703 +2596 +3588 +2398 +1939 +846 +4198 +2532 +3004 +4226 +1510 +3588 +1860 +3588 +3952 +846 +1063 +575 +3739 +3588 +3962 +2837 +3956 +3779 +1265 +575 +746 +2937 +1063 +2990 +846 +3778 +2309 +3754 +3772 +1510 +1597 +2532 +1093 +1537 +5204 +2532 +1223 +5204 +4921 +3588 +3588 +2316 +3056 +1223 +3739 +3588 +5119 +2889 +5204 +2626 +622 +1161 +3588 +3568 +3772 +2532 +3588 +1093 +3588 +846 +3056 +2343 +1510 +4442 +5083 +1519 +2250 +2920 +2532 +684 +3588 +765 +444 +1161 +27 +1520 +3778 +3361 +2990 +4771 +3754 +1520 +2250 +3844 +2962 +5613 +5507 +2094 +2532 +5507 +2094 +5613 +2250 +1520 +3756 +1019 +2962 +3588 +1860 +5613 +5100 +1022 +2233 +235 +3114 +1519 +4771 +1014 +3361 +5100 +622 +235 +3956 +1519 +3341 +5562 +1161 +2240 +2250 +2962 +5613 +2812 +1722 +3739 +3588 +3772 +4500 +3928 +1161 +4747 +2741 +3089 +2532 +1093 +2532 +3588 +1722 +846 +2041 +2147 +3779 +3778 +3956 +3089 +1163 +4217 +5225 +4771 +1722 +40 +391 +2532 +2150 +4328 +2532 +4692 +3588 +3952 +3588 +3588 +2316 +2250 +1223 +3739 +3772 +4448 +3089 +2532 +4747 +2741 +5080 +1161 +2537 +3772 +2532 +1093 +2537 +2596 +3588 +1862 +846 +4328 +1722 +3739 +1343 +2730 +1352 +27 +3778 +4328 +4704 +784 +2532 +298 +846 +2147 +1722 +1515 +2532 +3588 +3588 +2962 +1473 +3115 +4991 +2233 +2531 +2532 +3588 +27 +1473 +80 +3972 +2596 +3588 +1325 +846 +4678 +1125 +4771 +5613 +2532 +1722 +3956 +1992 +2980 +1722 +846 +4012 +3778 +1722 +3739 +1510 +1425 +5100 +3739 +3588 +261 +2532 +793 +4761 +5613 +2532 +3588 +3062 +1124 +4314 +3588 +2398 +846 +684 +3767 +27 +4771 +4267 +5442 +2443 +3361 +3588 +3588 +113 +4106 +4879 +1601 +3588 +2398 +4740 +1161 +837 +1722 +5485 +2532 +1108 +3588 +2962 +1473 +2532 +4990 +2424 +5547 +846 +3588 +1391 +2532 +3568 +2532 +1519 +2250 +165 +3739 +1510 +575 +746 +3739 +191 +3739 +3708 +3588 +3788 +1473 +3739 +2300 +2532 +3588 +5495 +1473 +5584 +4012 +3588 +3056 +3588 +2222 +2532 +3588 +2222 +5319 +2532 +3708 +2532 +3140 +2532 +518 +4771 +3588 +2222 +3588 +166 +3748 +1510 +4314 +3588 +3962 +2532 +5319 +1473 +3739 +3708 +2532 +191 +518 +2532 +4771 +2443 +2532 +4771 +2842 +2192 +3326 +1473 +1161 +2532 +3588 +2842 +3588 +2251 +3326 +3588 +3962 +2532 +3326 +3588 +5207 +846 +2424 +5547 +2532 +3778 +1125 +1473 +2443 +3588 +5479 +1473 +1510 +4137 +2532 +1510 +3778 +3588 +31 +3739 +191 +575 +846 +2532 +312 +4771 +3754 +3588 +2316 +5457 +1510 +2532 +1722 +846 +3756 +1510 +4653 +3762 +1437 +3004 +3754 +2842 +2192 +3326 +846 +2532 +1722 +3588 +4655 +4043 +5574 +2532 +3756 +4160 +3588 +225 +1161 +1437 +1722 +3588 +5457 +4043 +5613 +846 +1510 +1722 +3588 +5457 +2842 +2192 +3326 +240 +2532 +3588 +129 +2424 +3588 +5207 +846 +2511 +1473 +575 +3956 +266 +1437 +3004 +3754 +266 +3756 +2192 +1438 +4105 +2532 +3588 +225 +3756 +1510 +1722 +1473 +1437 +3670 +3588 +266 +1473 +1510 +4103 +2532 +1342 +2443 +863 +1473 +3588 +266 +2532 +2511 +1473 +575 +3956 +93 +1437 +3004 +3754 +3756 +264 +5583 +4160 +846 +2532 +3588 +3056 +846 +3756 +1510 +1722 +1473 +5040 +1473 +3778 +1125 +4771 +2443 +3361 +264 +2532 +1437 +5100 +264 +2192 +4314 +3588 +3962 +3875 +2424 +5547 +1342 +2532 +846 +2434 +1510 +4012 +3588 +266 +1473 +1161 +3756 +4012 +3588 +2251 +3440 +235 +2532 +4012 +3650 +3588 +2889 +2532 +1722 +3778 +1097 +3754 +1097 +846 +1437 +3588 +1785 +846 +5083 +3588 +3004 +3754 +1097 +846 +2532 +3588 +1785 +846 +3361 +5083 +5583 +1510 +2532 +1722 +3778 +3588 +225 +3756 +1510 +1161 +302 +3739 +5083 +846 +3588 +3056 +230 +1722 +3778 +3588 +26 +3588 +2316 +5048 +1722 +3778 +1097 +3754 +1722 +846 +1510 +3588 +3004 +1722 +846 +3306 +2531 +1565 +4043 +3784 +2532 +846 +3779 +4043 +27 +1125 +4771 +3756 +1785 +2537 +235 +1785 +3820 +3739 +2192 +575 +746 +3588 +1785 +3588 +3820 +1510 +3588 +3056 +3739 +191 +3825 +1785 +2537 +1125 +4771 +3739 +1510 +227 +1722 +846 +2532 +1722 +4771 +3754 +3588 +4653 +3855 +2532 +3588 +5457 +3588 +228 +2235 +5316 +3588 +3004 +1722 +3588 +5457 +1510 +2532 +3588 +80 +846 +3404 +1722 +3588 +4653 +1510 +2193 +737 +3588 +25 +3588 +80 +846 +1722 +3588 +5457 +3306 +2532 +4625 +1722 +846 +3756 +1510 +1161 +3588 +3404 +3588 +80 +846 +1722 +3588 +4653 +1510 +2532 +1722 +3588 +4653 +4043 +2532 +3756 +1492 +4226 +5217 +3754 +3588 +4653 +5186 +3588 +3788 +846 +5040 +1125 +4771 +3754 +863 +4771 +3588 +266 +1223 +3588 +3686 +846 +3962 +1125 +4771 +3754 +1097 +3588 +575 +746 +3495 +1125 +4771 +3754 +3528 +3588 +4190 +3813 +1125 +4771 +3754 +1097 +3588 +3962 +3962 +1125 +4771 +3754 +1097 +3588 +575 +746 +3495 +1125 +4771 +3754 +2478 +1510 +2532 +3588 +3056 +3588 +2316 +1722 +4771 +3306 +2532 +3528 +3588 +4190 +3361 +25 +3588 +2889 +3366 +3588 +1722 +3588 +2889 +1437 +5100 +25 +3588 +2889 +3756 +1510 +3588 +26 +3588 +3962 +1722 +846 +3754 +3756 +3956 +3588 +1722 +3588 +2889 +3588 +1939 +3588 +4561 +2532 +3588 +1939 +3588 +3788 +2532 +3588 +212 +3588 +979 +1510 +1537 +3588 +3962 +235 +1537 +3588 +2889 +1510 +2532 +3855 +3588 +2889 +2532 +3588 +1939 +846 +1161 +3588 +4160 +3588 +2307 +3588 +2316 +3306 +1519 +3588 +165 +3813 +2078 +5610 +1510 +2532 +2531 +191 +3754 +500 +2064 +2532 +3568 +500 +4183 +1096 +3606 +1097 +3754 +2078 +5610 +1510 +1537 +1473 +1831 +235 +3756 +1510 +1537 +1473 +1063 +1487 +1537 +1473 +1510 +302 +3306 +3326 +1473 +235 +2443 +5319 +3754 +3756 +1510 +3956 +1537 +1473 +2532 +4771 +5545 +2192 +575 +3588 +40 +2532 +1492 +3956 +1125 +4771 +3756 +3754 +3756 +1492 +3588 +225 +235 +3754 +1492 +846 +2532 +3754 +3956 +5579 +1537 +3588 +225 +3756 +1510 +5101 +1510 +3588 +5583 +1487 +3361 +3588 +720 +3754 +2424 +3756 +1510 +3588 +5547 +3778 +1510 +3588 +500 +3588 +720 +3588 +3962 +2532 +3588 +5207 +3956 +3588 +720 +3588 +5207 +3761 +3588 +3962 +2192 +3588 +3670 +3588 +5207 +2532 +3588 +3962 +2192 +4771 +3739 +191 +575 +746 +1722 +4771 +3306 +1437 +1722 +4771 +3306 +3739 +575 +746 +191 +2532 +4771 +1722 +3588 +5207 +2532 +1722 +3588 +3962 +3306 +2532 +3778 +1510 +3588 +1860 +3739 +846 +1861 +1473 +3588 +2222 +3588 +166 +3778 +1125 +4771 +4012 +3588 +4105 +4771 +2532 +4771 +3588 +5545 +3739 +2983 +575 +846 +3306 +1722 +4771 +2532 +3756 +5532 +2192 +2443 +5100 +1321 +4771 +235 +5613 +3588 +846 +5545 +1321 +4771 +4012 +3956 +2532 +227 +1510 +2532 +3756 +1510 +5579 +2532 +2531 +1321 +4771 +3306 +1722 +846 +2532 +5040 +3568 +3306 +1722 +846 +2443 +1437 +5319 +2192 +3954 +2532 +3361 +153 +575 +846 +1722 +3588 +3952 +846 +1437 +1492 +3754 +1342 +1510 +1097 +3754 +2532 +3956 +3588 +4160 +3588 +1343 +1537 +846 +1080 +3708 +4217 +26 +1325 +1473 +3588 +3962 +2443 +5043 +2316 +2564 +2532 +1510 +1223 +3778 +3588 +2889 +3756 +1097 +1473 +3754 +3756 +1097 +846 +27 +3568 +5043 +2316 +1510 +2532 +3768 +5319 +5101 +1510 +1492 +3754 +1437 +5319 +3664 +846 +1510 +3754 +3708 +846 +2531 +1510 +2532 +3956 +3588 +2192 +3588 +1680 +3778 +1909 +846 +48 +1438 +2531 +1565 +53 +1510 +3956 +3588 +4160 +3588 +266 +2532 +3588 +458 +4160 +2532 +3588 +266 +1510 +3588 +458 +2532 +1492 +3754 +1565 +5319 +2443 +3588 +266 +142 +2532 +266 +1722 +846 +3756 +1510 +3956 +3588 +1722 +846 +3306 +3756 +264 +3956 +3588 +264 +3756 +3708 +846 +3761 +1097 +846 +5040 +3367 +4105 +4771 +3588 +4160 +3588 +1343 +1342 +1510 +2531 +1565 +1342 +1510 +3588 +4160 +3588 +266 +1537 +3588 +1228 +1510 +3754 +575 +746 +3588 +1228 +264 +1519 +3778 +5319 +3588 +5207 +3588 +2316 +2443 +3089 +3588 +2041 +3588 +1228 +3956 +3588 +1080 +1537 +3588 +2316 +266 +3756 +4160 +3754 +4690 +846 +1722 +846 +3306 +2532 +3756 +1410 +264 +3754 +1537 +3588 +2316 +1080 +1722 +3778 +5318 +1510 +3588 +5043 +3588 +2316 +2532 +3588 +5043 +3588 +1228 +3956 +3588 +3361 +4160 +1343 +3756 +1510 +1537 +3588 +2316 +2532 +3588 +3361 +25 +3588 +80 +846 +3754 +3778 +1510 +3588 +31 +3739 +191 +575 +746 +2443 +25 +240 +3756 +2531 +2535 +1537 +3588 +4190 +1510 +2532 +4969 +3588 +80 +846 +2532 +5484 +5101 +4969 +846 +3754 +3588 +2041 +846 +4190 +1510 +1161 +3588 +3588 +80 +846 +1342 +80 +3361 +2296 +1487 +3404 +4771 +3588 +2889 +1473 +1492 +3754 +3327 +1537 +3588 +2288 +1519 +3588 +2222 +3754 +25 +3588 +80 +3588 +3361 +25 +3306 +1722 +3588 +2288 +3956 +3588 +3404 +3588 +80 +846 +443 +1510 +2532 +1492 +3754 +3956 +443 +3756 +2192 +2222 +166 +1722 +846 +3306 +1722 +3778 +1097 +3588 +26 +3754 +1565 +5228 +1473 +3588 +5590 +846 +5087 +2532 +1473 +3784 +5228 +3588 +80 +3588 +5590 +5087 +1161 +302 +3739 +2192 +3588 +979 +3588 +2889 +2532 +2334 +3588 +80 +846 +5532 +2192 +2532 +2808 +3588 +4698 +846 +575 +846 +4459 +3588 +26 +3588 +2316 +3306 +1722 +846 +5040 +25 +3361 +3056 +3366 +3588 +1100 +235 +1722 +2041 +2532 +225 +1722 +3778 +1097 +3754 +1537 +3588 +225 +1510 +2532 +1715 +846 +3982 +3588 +2588 +1473 +3754 +1437 +2607 +1473 +3588 +2588 +3754 +3173 +1510 +3588 +2316 +3588 +2588 +1473 +2532 +1097 +3956 +27 +1437 +3588 +2588 +3361 +2607 +3954 +2192 +4314 +3588 +2316 +2532 +1437 +3739 +154 +2983 +575 +846 +3754 +3588 +1785 +846 +5083 +2532 +3588 +701 +1799 +846 +4160 +2532 +3778 +1510 +3588 +1785 +846 +2443 +4100 +3588 +3686 +3588 +5207 +846 +2424 +5547 +2532 +25 +240 +2531 +1325 +1785 +1473 +2532 +3588 +5083 +3588 +1785 +846 +1722 +846 +3306 +2532 +846 +1722 +846 +2532 +1722 +3778 +1097 +3754 +3306 +1722 +1473 +1537 +3588 +4151 +3739 +1473 +1325 +27 +3361 +3956 +4151 +4100 +235 +1381 +3588 +4151 +1487 +1537 +3588 +2316 +1510 +3754 +4183 +5578 +1831 +1519 +3588 +2889 +1722 +3778 +1097 +3588 +4151 +3588 +2316 +3956 +4151 +3739 +3670 +2424 +5547 +1722 +4561 +2064 +1537 +3588 +2316 +1510 +2532 +3956 +4151 +3739 +3361 +3670 +3588 +2424 +1537 +3588 +2316 +3756 +1510 +2532 +3778 +1510 +3588 +3588 +500 +3739 +191 +3754 +2064 +2532 +3568 +1722 +3588 +2889 +1510 +2235 +5040 +4771 +1537 +3588 +2316 +1510 +2532 +3528 +846 +3754 +3173 +1510 +3588 +1722 +4771 +2228 +3588 +1722 +3588 +2889 +846 +1537 +3588 +2889 +1510 +1223 +3778 +1537 +3588 +2889 +2980 +2532 +3588 +2889 +846 +191 +1473 +1537 +3588 +2316 +1510 +3588 +1097 +3588 +2316 +191 +1473 +3739 +3756 +1510 +1537 +3588 +2316 +3756 +191 +1473 +1537 +3778 +1097 +3588 +4151 +3588 +225 +2532 +3588 +4151 +3588 +4106 +27 +25 +240 +3754 +3588 +26 +1537 +3588 +2316 +1510 +2532 +3956 +3588 +25 +1537 +3588 +2316 +1080 +2532 +1097 +3588 +2316 +3588 +3361 +25 +3756 +1097 +3588 +2316 +3754 +3588 +2316 +26 +1510 +1722 +3778 +5319 +3588 +26 +3588 +2316 +1722 +1473 +3754 +3588 +5207 +846 +3588 +3439 +649 +3588 +2316 +1519 +3588 +2889 +2443 +2198 +1223 +846 +1722 +3778 +1510 +3588 +26 +3756 +3754 +1473 +25 +3588 +2316 +235 +3754 +846 +25 +1473 +2532 +649 +3588 +5207 +846 +2434 +4012 +3588 +266 +1473 +27 +1487 +3779 +3588 +2316 +25 +1473 +2532 +1473 +3784 +240 +25 +2316 +3762 +4455 +2300 +1437 +25 +240 +3588 +2316 +1722 +1473 +3306 +2532 +3588 +26 +846 +1722 +1473 +5048 +1510 +1722 +3778 +1097 +3754 +1722 +846 +3306 +2532 +846 +1722 +1473 +3754 +1537 +3588 +4151 +846 +1325 +1473 +2532 +1473 +2300 +2532 +3140 +3754 +3588 +3962 +649 +3588 +5207 +4990 +3588 +2889 +1437 +3739 +3670 +3754 +2424 +1510 +3588 +5207 +3588 +2316 +3588 +2316 +1722 +846 +3306 +2532 +846 +1722 +3588 +2316 +2532 +1473 +1097 +2532 +4100 +3588 +26 +3739 +2192 +3588 +2316 +1722 +1473 +3588 +2316 +26 +1510 +2532 +3588 +3306 +1722 +3588 +26 +1722 +3588 +2316 +3306 +2532 +3588 +2316 +1722 +846 +3306 +1722 +3778 +5048 +3588 +26 +3326 +1473 +2443 +3954 +2192 +1722 +3588 +2250 +3588 +2920 +3754 +2531 +1565 +1510 +2532 +1473 +1510 +1722 +3588 +2889 +3778 +5401 +3756 +1510 +1722 +3588 +26 +235 +3588 +5046 +26 +1854 +906 +3588 +5401 +3754 +3588 +5401 +2851 +2192 +1161 +3588 +5399 +3756 +5048 +1722 +3588 +26 +1473 +25 +3754 +846 +4413 +25 +1473 +1437 +5100 +3004 +3754 +25 +3588 +2316 +2532 +3588 +80 +846 +3404 +5583 +1510 +1063 +3588 +3361 +25 +3588 +80 +846 +3739 +3708 +3756 +1410 +3588 +2316 +3739 +3756 +3708 +25 +2532 +3778 +3588 +1785 +2192 +575 +846 +2443 +3588 +25 +3588 +2316 +25 +2532 +3588 +80 +846 +3956 +3588 +4100 +3754 +2424 +1510 +3588 +5547 +1537 +3588 +2316 +1080 +2532 +3956 +3588 +25 +3588 +1080 +25 +3588 +1080 +1537 +846 +1722 +3778 +1097 +3754 +25 +3588 +5043 +3588 +2316 +3752 +3588 +2316 +25 +2532 +3588 +1785 +846 +4160 +1063 +3778 +1510 +3588 +26 +3588 +2316 +2443 +3588 +1785 +846 +5083 +2532 +3588 +1785 +846 +926 +3756 +1510 +3754 +3956 +3588 +1080 +1537 +3588 +2316 +3528 +3588 +2889 +2532 +3778 +1510 +3588 +3529 +3588 +3528 +3588 +2889 +3588 +4102 +1473 +5101 +1510 +3588 +3528 +3588 +2889 +1487 +3361 +3588 +4100 +3754 +2424 +1510 +3588 +5207 +3588 +2316 +3778 +1510 +3588 +2064 +1223 +5204 +2532 +129 +2424 +5547 +3756 +1722 +3588 +5204 +3440 +235 +1722 +3588 +5204 +2532 +1722 +3588 +129 +2532 +3588 +4151 +1510 +3588 +3140 +3754 +3588 +4151 +1510 +3588 +225 +3754 +5140 +1510 +3588 +3140 +3588 +4151 +2532 +3588 +5204 +2532 +3588 +129 +2532 +3588 +5140 +1519 +3588 +1520 +1510 +1487 +3588 +3141 +3588 +444 +2983 +3588 +3141 +3588 +2316 +3173 +1510 +3754 +3778 +1510 +3588 +3141 +3588 +2316 +3754 +3140 +4012 +3588 +5207 +846 +3588 +4100 +1519 +3588 +5207 +3588 +2316 +2192 +3588 +3141 +1722 +846 +3588 +3361 +4100 +3588 +2316 +5583 +4160 +846 +3754 +3756 +4100 +1519 +3588 +3141 +3739 +3140 +3588 +2316 +4012 +3588 +5207 +846 +2532 +3778 +1510 +3588 +3141 +3754 +2222 +166 +1325 +3588 +2316 +1473 +2532 +3778 +3588 +2222 +1722 +3588 +5207 +846 +1510 +3588 +2192 +3588 +5207 +2192 +3588 +2222 +3588 +3361 +2192 +3588 +5207 +3588 +2316 +3588 +2222 +3756 +2192 +3778 +1125 +4771 +3588 +4100 +1519 +3588 +3686 +3588 +5207 +3588 +2316 +2443 +1492 +3754 +2222 +166 +2192 +2532 +3778 +1510 +3588 +3954 +3739 +2192 +4314 +846 +3754 +1437 +5100 +154 +2596 +3588 +2307 +846 +191 +1473 +2532 +1437 +1492 +3754 +191 +1473 +1437 +3739 +154 +1492 +3754 +2192 +3588 +155 +3739 +154 +575 +846 +1437 +5100 +3708 +3588 +80 +846 +264 +266 +3361 +4314 +2288 +154 +2532 +1325 +2222 +846 +3588 +264 +3361 +4314 +2288 +1510 +266 +4314 +2288 +3756 +4012 +1565 +3004 +2443 +2065 +3956 +93 +266 +1510 +2532 +1510 +266 +3756 +4314 +2288 +1492 +3754 +3956 +3588 +1080 +1537 +3588 +2316 +3756 +264 +235 +3588 +1080 +1537 +3588 +2316 +5083 +846 +2532 +3588 +4190 +3756 +680 +846 +1492 +3754 +1537 +3588 +2316 +1510 +2532 +3588 +2889 +3650 +1722 +3588 +4190 +2749 +1161 +1492 +3754 +3588 +5207 +3588 +2316 +2240 +2532 +1325 +1473 +1271 +2443 +1097 +3588 +228 +2532 +1510 +1722 +3588 +228 +1722 +3588 +5207 +846 +2424 +5547 +3778 +1510 +3588 +228 +2316 +2532 +2222 +166 +5040 +5442 +1438 +575 +3588 +1497 +3588 +4245 +1588 +2959 +2532 +3588 +5043 +846 +3739 +25 +1722 +225 +1473 +2532 +3756 +1473 +3441 +235 +2532 +3956 +3588 +1097 +3588 +225 +1223 +3588 +225 +3588 +3306 +1722 +1473 +2532 +3326 +1473 +1510 +1519 +3588 +165 +1510 +3326 +1473 +5485 +1656 +1515 +3844 +2316 +3962 +2532 +3844 +2424 +5547 +3588 +5207 +3588 +3962 +1722 +225 +2532 +26 +5463 +3029 +3754 +2147 +1537 +3588 +5043 +4771 +4043 +1722 +225 +2531 +1785 +2983 +3844 +3588 +3962 +2532 +2959 +3568 +2065 +4771 +1125 +4771 +3756 +5613 +1785 +2537 +235 +3739 +2192 +575 +746 +2443 +25 +240 +2532 +3778 +1510 +3588 +26 +2443 +4043 +2596 +3588 +1785 +846 +3778 +3588 +1785 +1510 +2531 +191 +575 +746 +2443 +1722 +846 +4043 +3754 +1831 +1519 +3588 +2889 +4183 +4108 +3588 +3361 +3670 +2424 +5547 +2064 +1722 +4561 +3778 +1510 +3588 +4108 +2532 +3588 +500 +991 +1438 +2443 +3361 +622 +3739 +2038 +235 +3408 +4134 +618 +3956 +3588 +4254 +2532 +3361 +3306 +1722 +3588 +1322 +3588 +5547 +2316 +3756 +2192 +3588 +3306 +1722 +3588 +1322 +3778 +2532 +3588 +3962 +2532 +3588 +5207 +2192 +1487 +5100 +2064 +4314 +4771 +2532 +3778 +3588 +1322 +3756 +5342 +3361 +2983 +846 +1519 +3614 +2532 +5463 +846 +3361 +3004 +1063 +3588 +3004 +846 +5463 +2841 +3588 +2041 +846 +3588 +4190 +2192 +4183 +4771 +1125 +3756 +1014 +1223 +5489 +2532 +3188 +235 +1679 +1096 +4314 +4771 +2532 +4750 +4314 +4750 +2980 +2443 +3588 +5479 +1473 +4137 +1510 +782 +4771 +3588 +5043 +3588 +79 +4771 +3588 +1588 +3588 +4245 +1050 +3588 +27 +3739 +1473 +25 +1722 +225 +27 +4012 +3956 +2172 +4771 +2137 +2532 +5198 +2531 +2137 +4771 +3588 +5590 +1063 +5463 +3029 +2064 +80 +2532 +3140 +4771 +3588 +225 +2531 +4771 +1722 +225 +4043 +3173 +5479 +3778 +3756 +2192 +2443 +191 +3588 +1699 +5043 +1722 +3588 +225 +4043 +27 +4103 +4160 +1437 +3739 +2038 +1519 +3588 +80 +2532 +3778 +3581 +3739 +3140 +4771 +3588 +26 +1799 +1577 +3739 +2573 +4160 +4311 +516 +3588 +2316 +1063 +5228 +3588 +3686 +1831 +3367 +2983 +575 +3588 +1482 +3767 +1473 +3784 +5274 +3588 +5108 +2443 +4904 +1096 +3588 +225 +1125 +5100 +3588 +1577 +235 +3588 +5383 +846 +1361 +3756 +1926 +1473 +1223 +3778 +1437 +2064 +5279 +846 +3588 +2041 +3739 +4160 +3056 +4190 +5396 +1473 +2532 +3361 +714 +1909 +3778 +3777 +846 +1926 +3588 +80 +2532 +3588 +1014 +2967 +2532 +1537 +3588 +1577 +1544 +27 +3361 +3401 +3588 +2556 +235 +3588 +18 +3588 +15 +1537 +3588 +2316 +1510 +3588 +2554 +3756 +3708 +3588 +2316 +1216 +3140 +5259 +3956 +2532 +5259 +846 +3588 +225 +1161 +2532 +1473 +3140 +2532 +1492 +3754 +3588 +3141 +1473 +227 +1510 +2192 +4183 +1125 +4771 +235 +3756 +2309 +1223 +3188 +2532 +2563 +4771 +1125 +1161 +1679 +2112 +4771 +3708 +2532 +4750 +4314 +4750 +2980 +1515 +4771 +782 +4771 +3588 +5384 +782 +3588 +5384 +2596 +3686 +2455 +2424 +5547 +1401 +1161 +80 +2385 +3588 +1722 +2316 +3962 +25 +2532 +2424 +5547 +5083 +2822 +4771 +1656 +2532 +1515 +2532 +26 +4129 +27 +3956 +4710 +4160 +1125 +4771 +4012 +3588 +2839 +1473 +4991 +318 +2192 +1125 +4771 +3870 +1864 +3588 +530 +3860 +3588 +40 +4102 +1063 +3921 +5100 +444 +3588 +3819 +4270 +1519 +3778 +3588 +2917 +765 +3588 +3588 +2316 +1473 +5485 +3346 +1519 +766 +2532 +3588 +3441 +1203 +2532 +2962 +1473 +2424 +5547 +720 +1161 +1014 +1492 +530 +3956 +5279 +4771 +3754 +2962 +2992 +1537 +1093 +125 +4982 +3588 +1208 +3588 +3361 +4100 +622 +5037 +32 +3588 +3361 +5083 +3588 +1438 +746 +235 +620 +3588 +2398 +3613 +1519 +2920 +3173 +2250 +1199 +126 +5259 +2217 +5083 +5613 +4670 +2532 +1116 +2532 +3588 +4012 +846 +4172 +3588 +3664 +5158 +3778 +1608 +2532 +565 +3694 +4561 +2087 +4295 +1164 +4442 +166 +1349 +5254 +3305 +3668 +2532 +3778 +1797 +3303 +4561 +3392 +1161 +2963 +114 +1161 +1391 +987 +1161 +3753 +3588 +1228 +1252 +1256 +4012 +3588 +3475 +4983 +3756 +3588 +3413 +3588 +743 +5111 +2920 +988 +2018 +235 +3004 +2008 +4771 +2962 +1161 +3303 +3778 +3745 +3756 +1492 +987 +1161 +3745 +5447 +5613 +3588 +249 +2226 +1987 +1722 +3778 +5351 +3759 +846 +3754 +3588 +3598 +3588 +2535 +4198 +2532 +3588 +4106 +3588 +903 +3408 +1632 +2532 +3588 +485 +3588 +2879 +622 +3778 +1510 +3588 +1722 +3588 +26 +4771 +4694 +4910 +870 +1438 +4165 +3507 +504 +5259 +417 +3911 +1186 +5352 +175 +1364 +599 +1610 +2949 +66 +2281 +1890 +3588 +1438 +152 +792 +4107 +3739 +3588 +2217 +3588 +4655 +1519 +165 +5083 +1161 +4395 +2532 +3778 +1442 +575 +76 +1802 +3004 +3708 +2064 +2962 +1722 +40 +3461 +846 +4160 +2920 +2596 +3956 +2532 +1651 +3956 +3588 +765 +4012 +3956 +3588 +2041 +763 +846 +3739 +764 +2532 +4012 +3956 +3588 +4642 +3739 +2980 +2596 +846 +268 +765 +3778 +1510 +1113 +3202 +2596 +3588 +1939 +846 +4198 +2532 +3588 +4750 +846 +2980 +5246 +2296 +4383 +5622 +5484 +1161 +27 +4771 +3403 +3588 +4487 +3588 +4302 +5259 +3588 +652 +3588 +2962 +1473 +2424 +5547 +3754 +3004 +4771 +1909 +2078 +3588 +5550 +1510 +1703 +4198 +2596 +3588 +1438 +1939 +3588 +763 +3778 +1510 +3588 +592 +5591 +4151 +3361 +2192 +1161 +27 +4771 +2026 +1438 +3588 +40 +4771 +4102 +1722 +4151 +40 +4336 +1438 +1722 +26 +2316 +5083 +4327 +3588 +1656 +3588 +2962 +1473 +2424 +5547 +1519 +2222 +166 +2532 +3303 +3739 +1252 +1653 +4982 +1537 +4442 +726 +1161 +3739 +1653 +1722 +5401 +3404 +2532 +3588 +575 +3588 +4561 +4695 +5509 +1161 +3588 +1410 +5442 +4771 +679 +2532 +2476 +2714 +3588 +1391 +846 +299 +1722 +20 +3441 +2316 +4990 +1473 +1223 +2424 +5547 +3588 +2962 +1473 +1391 +3172 +2904 +2532 +1849 +4253 +3956 +3588 +165 +2532 +3568 +2532 +1519 +3956 +3588 +165 +281 +602 +2424 +5547 +3739 +1325 +846 +3588 +2316 +1166 +3588 +1401 +846 +3739 +1096 +1722 +5034 +1163 +2532 +4591 +649 +1223 +3588 +32 +846 +3588 +1401 +846 +2491 +3739 +3140 +3588 +3056 +3588 +2316 +2532 +3588 +3141 +2424 +5547 +3745 +3708 +3107 +3588 +314 +2532 +3588 +191 +3588 +3056 +3588 +4394 +2532 +5083 +3588 +1722 +846 +1125 +1063 +3588 +2540 +1451 +2491 +3588 +2033 +1577 +3588 +1722 +3588 +773 +5485 +2532 +1515 +4771 +575 +3588 +1510 +2532 +3588 +1510 +2532 +3588 +2064 +2532 +575 +3588 +2033 +4151 +3739 +1799 +3588 +2362 +846 +2532 +575 +2424 +5547 +3588 +3144 +3588 +4103 +3588 +4416 +3588 +3498 +2532 +3588 +758 +3588 +935 +3588 +1093 +3588 +25 +1473 +2532 +3089 +1473 +1537 +3588 +266 +1473 +1722 +3588 +129 +846 +2532 +4160 +1473 +932 +2409 +3588 +2316 +2532 +3962 +846 +846 +3588 +1391 +2532 +3588 +2904 +1519 +3588 +165 +3588 +165 +281 +3708 +2064 +3326 +3588 +3507 +2532 +3708 +846 +3956 +3788 +2532 +3748 +846 +1574 +2532 +2875 +1909 +846 +3956 +3588 +5443 +3588 +1093 +3483 +281 +1473 +1510 +3588 +1 +2532 +3588 +5598 +3004 +2962 +3588 +2316 +3588 +1510 +2532 +3588 +1510 +2532 +3588 +2064 +3588 +3841 +1473 +2491 +3588 +80 +4771 +2532 +4791 +1722 +3588 +2347 +2532 +932 +2532 +5281 +1722 +2424 +1096 +1722 +3588 +3520 +3588 +2564 +3963 +1223 +3588 +3056 +3588 +2316 +2532 +3588 +3141 +2424 +1096 +1722 +4151 +1722 +3588 +2960 +2250 +2532 +191 +3694 +1473 +5456 +3173 +5613 +4536 +3004 +3739 +991 +1125 +1519 +975 +2532 +3992 +3588 +2033 +1577 +1519 +2181 +2532 +1519 +4667 +2532 +1519 +4010 +2532 +1519 +2363 +2532 +1519 +4554 +2532 +1519 +5359 +2532 +1519 +2993 +2532 +1994 +991 +3588 +5456 +3748 +2980 +3326 +1473 +2532 +1994 +3708 +2033 +3087 +5552 +2532 +1722 +3319 +3588 +3087 +3664 +5207 +444 +1746 +4158 +2532 +4024 +4314 +3588 +3149 +2223 +5552 +1161 +3588 +2776 +846 +2532 +3588 +2359 +3022 +5613 +2053 +3022 +5613 +5510 +2532 +3588 +3788 +846 +5613 +5395 +4442 +2532 +3588 +4228 +846 +3664 +5474 +5613 +1722 +2575 +4448 +2532 +3588 +5456 +846 +5613 +5456 +5204 +4183 +2532 +2192 +1722 +3588 +1188 +5495 +846 +792 +2033 +2532 +1537 +3588 +4750 +846 +4501 +1366 +3691 +1607 +2532 +3588 +3799 +846 +5613 +3588 +2246 +5316 +1722 +3588 +1411 +846 +2532 +3753 +3708 +846 +4098 +4314 +3588 +4228 +846 +5613 +3498 +2532 +5087 +3588 +1188 +846 +1909 +1473 +3004 +3361 +5399 +1473 +1510 +3588 +4413 +2532 +3588 +2078 +2532 +3588 +2198 +2532 +1096 +3498 +2532 +3708 +2198 +1510 +1519 +3588 +165 +3588 +165 +2532 +2192 +3588 +2807 +3588 +2288 +2532 +3588 +86 +3767 +1125 +3739 +3708 +2532 +3739 +1510 +2532 +3739 +3195 +1096 +3326 +3778 +3588 +3466 +3588 +2033 +792 +3739 +3708 +1909 +3588 +1188 +1473 +2532 +3588 +2033 +3087 +3588 +5552 +3588 +2033 +792 +32 +3588 +2033 +1577 +1510 +2532 +3588 +3087 +3588 +2033 +2033 +1577 +1510 +3588 +32 +3588 +1722 +2181 +1577 +1125 +3592 +3004 +3588 +2902 +3588 +2033 +792 +1722 +3588 +1188 +846 +3588 +4043 +1722 +3319 +3588 +2033 +3087 +3588 +5552 +1492 +3588 +2041 +4771 +2532 +3588 +2873 +2532 +3588 +5281 +4771 +2532 +3754 +3756 +1410 +941 +2556 +2532 +3985 +3588 +3004 +1438 +652 +2532 +3756 +1510 +2532 +2147 +846 +5571 +2532 +5281 +2192 +2532 +941 +1223 +3588 +3686 +1473 +2532 +3756 +2872 +235 +2192 +2596 +4771 +3754 +3588 +26 +4771 +3588 +4413 +863 +3767 +3421 +4159 +4098 +2532 +3340 +2532 +3588 +4413 +2041 +4160 +1161 +1487 +3361 +2064 +4771 +2532 +2795 +3588 +3087 +4771 +1537 +3588 +5117 +846 +1437 +3361 +3340 +235 +3778 +2192 +3754 +3404 +3588 +2041 +3588 +3531 +3739 +2504 +3404 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +3588 +3528 +1325 +846 +5315 +1537 +3588 +3586 +3588 +2222 +3739 +1510 +1722 +3588 +3857 +3588 +2316 +2532 +3588 +32 +3588 +1722 +4667 +1577 +1125 +3592 +3004 +3588 +4413 +2532 +3588 +2078 +3739 +1096 +3498 +2532 +2198 +1492 +4771 +3588 +2347 +2532 +3588 +4432 +235 +4145 +1510 +2532 +3588 +988 +1537 +3588 +3004 +2453 +1510 +1438 +2532 +3756 +1510 +235 +4864 +3588 +4567 +3361 +5399 +3739 +3958 +3195 +3708 +3195 +3588 +1228 +906 +1537 +4771 +1519 +5438 +2443 +3985 +2532 +2192 +2347 +2250 +1176 +1096 +4103 +891 +2288 +2532 +1325 +4771 +3588 +4735 +3588 +2222 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +3588 +3528 +3756 +3361 +91 +1537 +3588 +2288 +3588 +1208 +2532 +3588 +32 +3588 +1722 +4010 +1577 +1125 +3592 +3004 +3588 +2192 +3588 +4501 +3588 +1366 +3588 +3691 +1492 +4226 +2730 +3699 +3588 +2362 +3588 +4567 +2532 +2902 +3588 +3686 +1473 +2532 +3756 +720 +3588 +4102 +1473 +2532 +1722 +3588 +2250 +493 +3588 +3144 +1473 +3588 +4103 +1473 +3739 +615 +3844 +4771 +3699 +3588 +4567 +2730 +235 +2192 +2596 +4771 +3641 +3754 +2192 +1563 +2902 +3588 +1322 +903 +3739 +1321 +3588 +904 +906 +4625 +1799 +3588 +5207 +2474 +5315 +1494 +2532 +4203 +3779 +2192 +2532 +4771 +2902 +3588 +1322 +3588 +3531 +3668 +3767 +3340 +1161 +1487 +3361 +2064 +4771 +5035 +2532 +4170 +3326 +846 +1722 +3588 +4501 +3588 +4750 +1473 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +3588 +3528 +1325 +846 +3588 +3131 +3588 +2928 +2532 +1325 +846 +5586 +3022 +2532 +1909 +3588 +5586 +1125 +3686 +2537 +3739 +3762 +1492 +1487 +3361 +3588 +2983 +2532 +3588 +32 +3588 +1722 +2363 +1577 +1125 +3592 +3004 +3588 +5207 +3588 +2316 +3588 +2192 +3588 +3788 +846 +5613 +5395 +4442 +2532 +3588 +4228 +846 +3664 +5474 +1492 +4771 +3588 +2041 +2532 +3588 +26 +2532 +3588 +4102 +2532 +3588 +1248 +2532 +3588 +5281 +4771 +2532 +3588 +2041 +4771 +3588 +2078 +4119 +3588 +4413 +235 +2192 +2596 +4771 +3754 +863 +3588 +1135 +2403 +3588 +3004 +1438 +4398 +2532 +1321 +2532 +4105 +3588 +1699 +1401 +4203 +2532 +5315 +1494 +2532 +1325 +846 +5550 +2443 +3340 +2532 +3756 +2309 +3340 +1537 +3588 +4202 +846 +3708 +906 +846 +1519 +2825 +2532 +3588 +3431 +3326 +846 +1519 +2347 +3173 +1437 +3361 +3340 +1537 +3588 +2041 +846 +2532 +3588 +5043 +846 +615 +1722 +2288 +2532 +1097 +3956 +3588 +1577 +3754 +1473 +1510 +3588 +2045 +3510 +2532 +2588 +2532 +1325 +4771 +1538 +2596 +3588 +2041 +4771 +1161 +3004 +4771 +3588 +3062 +3588 +1722 +2363 +3745 +3756 +2192 +3588 +1322 +3778 +3748 +3756 +1097 +3588 +901 +3588 +4567 +5613 +3004 +3756 +906 +1909 +4771 +243 +922 +4133 +3739 +2192 +2902 +891 +302 +3739 +2240 +2532 +3588 +3528 +2532 +3588 +5083 +891 +5056 +3588 +2041 +1473 +1325 +846 +1849 +1909 +3588 +1484 +2532 +4165 +846 +1722 +4464 +4603 +5613 +3588 +4632 +3588 +2764 +4937 +5613 +2504 +2983 +3844 +3588 +3962 +1473 +2532 +1325 +846 +3588 +792 +3588 +4407 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +2532 +3588 +32 +3588 +1722 +4554 +1577 +1125 +3592 +3004 +3588 +2192 +3588 +2033 +4151 +3588 +2316 +2532 +3588 +2033 +792 +1492 +4771 +3588 +2041 +3754 +3686 +2192 +3754 +2198 +2532 +3498 +1510 +1096 +1127 +2532 +4741 +3588 +3062 +3739 +3195 +599 +1063 +3756 +2147 +4771 +2041 +4137 +1799 +3588 +2316 +1473 +3767 +3421 +4459 +2983 +2532 +191 +2532 +5083 +2532 +3340 +3767 +1437 +3361 +1127 +2240 +5613 +2812 +2532 +3756 +3361 +1097 +4169 +5610 +2240 +1909 +4771 +235 +2192 +3641 +3686 +1722 +4554 +3739 +3756 +3435 +3588 +2440 +846 +2532 +4043 +3326 +1473 +1722 +3022 +3754 +514 +1510 +3588 +3528 +3779 +4016 +1722 +2440 +3022 +2532 +3756 +3361 +1813 +3588 +3686 +846 +1537 +3588 +976 +3588 +2222 +2532 +3670 +3588 +3686 +846 +1799 +3588 +3962 +1473 +2532 +1799 +3588 +32 +846 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +2532 +3588 +32 +3588 +1722 +5359 +1577 +1125 +3592 +3004 +3588 +40 +3588 +228 +3588 +2192 +3588 +2807 +1138 +3588 +455 +2532 +3762 +2808 +2532 +2808 +2532 +3762 +455 +1492 +4771 +3588 +2041 +3708 +1325 +1799 +4771 +2374 +455 +3739 +846 +2808 +3762 +1410 +3754 +3398 +1411 +2192 +2532 +5083 +1473 +3588 +3056 +2532 +3756 +720 +3588 +3686 +1473 +3708 +1325 +1537 +3588 +4864 +3588 +4567 +3588 +3004 +1438 +2453 +1510 +2532 +3756 +1510 +235 +5574 +3708 +4160 +846 +2443 +2240 +2532 +4352 +1799 +3588 +4228 +4771 +2532 +1097 +3754 +1473 +25 +4771 +3754 +5083 +3588 +3056 +3588 +5281 +1473 +2504 +4771 +5083 +1537 +3588 +5610 +3588 +3986 +3588 +3195 +2064 +1909 +3588 +3625 +3650 +3985 +3588 +2730 +1909 +3588 +1093 +2064 +5035 +2902 +3739 +2192 +2443 +3367 +2983 +3588 +4735 +4771 +3588 +3528 +4160 +846 +4769 +1722 +3588 +3485 +3588 +2316 +1473 +2532 +1854 +3756 +3361 +1831 +2089 +2532 +1125 +1909 +846 +3588 +3686 +3588 +2316 +1473 +2532 +3588 +3686 +3588 +4172 +3588 +2316 +1473 +3588 +2537 +2419 +3588 +2597 +1537 +3588 +3772 +575 +3588 +2316 +1473 +2532 +3588 +3686 +1473 +3588 +2537 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +2532 +3588 +32 +3588 +1722 +2993 +1577 +1125 +3592 +3004 +3588 +281 +3588 +3144 +3588 +4103 +2532 +228 +3588 +746 +3588 +2937 +3588 +2316 +1492 +4771 +3588 +2041 +3754 +1510 +3777 +5593 +3777 +2200 +3785 +1510 +5593 +2228 +2200 +3779 +3754 +5513 +1510 +2532 +3777 +2200 +3777 +5593 +3195 +4771 +1692 +1537 +3588 +4750 +1473 +3754 +3004 +3754 +4145 +1510 +2532 +4147 +2532 +3762 +5532 +2192 +2532 +3756 +1492 +3754 +4771 +1510 +3588 +5005 +2532 +1652 +2532 +4434 +2532 +5185 +2532 +1131 +4823 +4771 +59 +3844 +1473 +5553 +4448 +1537 +4442 +2443 +4147 +2532 +2440 +3022 +2443 +4016 +2532 +3361 +5319 +3588 +152 +3588 +1132 +4771 +2532 +2854 +1472 +3588 +3788 +4771 +2443 +991 +1473 +1437 +3745 +5368 +1651 +2532 +3811 +3767 +2206 +2532 +3340 +3708 +2476 +1909 +3588 +2374 +2532 +2925 +1437 +5100 +191 +3588 +5456 +1473 +2532 +455 +3588 +2374 +1525 +4314 +846 +2532 +1172 +3326 +846 +2532 +846 +3326 +1473 +3588 +3528 +1325 +846 +2523 +3326 +1473 +1722 +3588 +2362 +1473 +5613 +2504 +3528 +2532 +2523 +3326 +3588 +3962 +1473 +1722 +3588 +2362 +846 +3588 +2192 +3775 +191 +5101 +3588 +4151 +3004 +3588 +1577 +3326 +3778 +3708 +2532 +3708 +2374 +455 +1722 +3588 +3772 +2532 +3588 +5456 +3588 +4413 +3739 +191 +5613 +4536 +2980 +3326 +1473 +3004 +305 +5602 +2532 +1166 +4771 +3739 +1096 +3326 +3778 +1163 +2112 +1096 +1722 +4151 +2532 +3708 +2362 +2749 +1722 +3588 +3772 +2532 +1909 +3588 +2362 +2521 +2532 +3588 +2521 +3664 +3706 +3037 +2393 +2532 +4556 +2532 +2463 +2943 +3588 +2362 +3664 +3706 +4664 +2532 +2943 +3588 +2362 +2362 +1501 +5064 +2532 +1909 +3588 +2362 +1501 +5064 +4245 +2521 +4016 +1722 +2440 +3022 +2532 +1909 +3588 +2776 +846 +4735 +5552 +2532 +1537 +3588 +2362 +1607 +796 +2532 +5456 +2532 +1027 +2532 +2033 +2985 +4442 +2545 +1799 +3588 +2362 +3739 +1510 +3588 +2033 +4151 +3588 +2316 +2532 +1799 +3588 +2362 +5613 +2281 +5193 +3664 +2930 +2532 +1722 +3319 +3588 +2362 +2532 +2945 +3588 +2362 +5064 +2226 +1073 +3788 +1715 +2532 +3693 +2532 +3588 +2226 +3588 +4413 +3664 +3023 +2532 +3588 +1208 +2226 +3664 +3448 +2532 +3588 +5154 +2226 +2192 +3588 +4383 +5613 +444 +2532 +3588 +5067 +2226 +3664 +105 +4072 +2532 +3588 +5064 +2226 +1520 +2596 +1520 +846 +2192 +303 +4420 +1803 +2943 +2532 +2081 +1073 +3788 +2532 +372 +3756 +2192 +2250 +2532 +3571 +3004 +40 +40 +40 +2962 +3588 +2316 +3588 +3841 +3588 +1510 +2532 +3588 +1510 +2532 +3588 +2064 +2532 +3752 +1325 +3588 +2226 +1391 +2532 +5092 +2532 +2169 +3588 +2521 +1909 +3588 +2362 +3588 +2198 +1519 +3588 +165 +3588 +165 +4098 +3588 +1501 +5064 +4245 +1799 +3588 +2521 +1909 +3588 +2362 +2532 +4352 +3588 +2198 +1519 +3588 +165 +3588 +165 +2532 +906 +3588 +4735 +846 +1799 +3588 +2362 +3004 +3588 +2962 +2532 +3588 +2316 +1473 +514 +1510 +2983 +3588 +1391 +2532 +3588 +5092 +2532 +3588 +1411 +3754 +4771 +2936 +3588 +3956 +2532 +1223 +3588 +2307 +4771 +1510 +2532 +2936 +2532 +3708 +1909 +3588 +1188 +3588 +2521 +1909 +3588 +2362 +975 +1125 +2081 +2532 +3693 +2696 +4973 +2033 +2532 +3708 +32 +2478 +2784 +1722 +5456 +3173 +5101 +514 +455 +3588 +975 +2532 +3089 +3588 +4973 +846 +2532 +1410 +3762 +1722 +3588 +3772 +3761 +1909 +3588 +1093 +3761 +5270 +3588 +1093 +455 +3588 +975 +3777 +991 +846 +2532 +2799 +4183 +3754 +3762 +514 +2147 +455 +3588 +975 +3777 +991 +846 +2532 +1520 +1537 +3588 +4245 +3004 +1473 +3361 +2799 +3708 +3528 +3588 +3023 +3588 +1537 +3588 +5443 +2448 +3588 +4491 +1138 +455 +3588 +975 +2532 +3588 +2033 +4973 +846 +2532 +3708 +1722 +3319 +3588 +2362 +2532 +3588 +5064 +2226 +2532 +1722 +3319 +3588 +4245 +721 +2476 +5613 +4969 +2192 +2768 +2033 +2532 +3788 +2033 +3739 +1510 +3588 +2033 +4151 +3588 +2316 +649 +1519 +3956 +3588 +1093 +2532 +2064 +2532 +2983 +1537 +3588 +1188 +3588 +2521 +1909 +3588 +2362 +2532 +3753 +2983 +3588 +975 +3588 +5064 +2226 +2532 +3588 +1501 +5064 +4245 +4098 +1799 +3588 +721 +2192 +1538 +2788 +2532 +5357 +5552 +1073 +2368 +3739 +1510 +3588 +4335 +3588 +40 +2532 +103 +5603 +2537 +3004 +514 +1510 +2983 +3588 +975 +2532 +455 +3588 +4973 +846 +3754 +4969 +2532 +59 +3588 +2316 +1722 +3588 +129 +4771 +1537 +3956 +5443 +2532 +1100 +2532 +2992 +2532 +1484 +2532 +4160 +846 +3588 +2316 +1473 +932 +2532 +2409 +2532 +936 +1909 +3588 +1093 +2532 +3708 +2532 +191 +5456 +32 +4183 +2945 +3588 +2362 +2532 +3588 +2226 +2532 +3588 +4245 +2532 +1510 +3588 +706 +846 +3461 +3461 +2532 +5505 +5505 +3004 +5456 +3173 +514 +1510 +3588 +721 +3588 +4969 +2983 +3588 +1411 +2532 +4149 +2532 +4678 +2532 +2479 +2532 +5092 +2532 +1391 +2532 +2129 +2532 +3956 +2938 +3739 +1722 +3588 +3772 +2532 +1909 +3588 +1093 +2532 +5270 +3588 +1093 +2532 +1909 +3588 +2281 +1510 +2532 +3588 +1722 +846 +3956 +3004 +191 +3588 +2521 +1909 +3588 +2362 +2532 +3588 +721 +3588 +2129 +2532 +3588 +5092 +2532 +3588 +1391 +2532 +3588 +2904 +1519 +3588 +165 +3588 +165 +2532 +3588 +5064 +2226 +3004 +281 +2532 +3588 +4245 +4098 +2532 +4352 +2532 +3708 +3753 +455 +3588 +721 +1520 +1537 +3588 +2033 +4973 +2532 +191 +1520 +1537 +3588 +5064 +2226 +3004 +5613 +5456 +1027 +2064 +2532 +3708 +2532 +3708 +2462 +3022 +2532 +3588 +2521 +1909 +846 +2192 +5115 +2532 +1325 +846 +4735 +2532 +1831 +3528 +2532 +2443 +3528 +2532 +3753 +455 +3588 +4973 +3588 +1208 +191 +3588 +1208 +2226 +3004 +2064 +2532 +1831 +243 +2462 +4450 +2532 +3588 +2521 +1909 +846 +1325 +846 +2983 +3588 +1515 +1537 +3588 +1093 +2532 +2443 +240 +4969 +2532 +1325 +846 +3162 +3173 +2532 +3753 +455 +3588 +4973 +3588 +5154 +191 +3588 +5154 +2226 +3004 +2064 +2532 +3708 +2532 +3708 +2462 +3189 +2532 +3588 +2521 +1909 +846 +2192 +2218 +1722 +3588 +5495 +846 +2532 +191 +5613 +5456 +1722 +3319 +3588 +5064 +2226 +3004 +5518 +4621 +1220 +2532 +5140 +5518 +2915 +1220 +2532 +3588 +1637 +2532 +3588 +3631 +3361 +91 +2532 +3753 +455 +3588 +4973 +3588 +5067 +191 +5456 +3588 +5067 +2226 +3004 +2064 +2532 +3708 +2532 +3708 +2462 +5515 +2532 +3588 +2521 +1883 +846 +3686 +846 +3588 +2288 +2532 +3588 +86 +190 +3326 +846 +2532 +1325 +846 +1849 +1909 +3588 +5067 +3588 +1093 +615 +1722 +4501 +2532 +1722 +3042 +2532 +1722 +2288 +2532 +5259 +3588 +2342 +3588 +1093 +2532 +3753 +455 +3588 +3991 +4973 +3708 +5270 +3588 +2379 +3588 +5590 +3588 +4969 +1223 +3588 +3056 +3588 +2316 +2532 +1223 +3588 +3141 +3739 +2192 +2532 +2896 +5456 +3173 +3004 +3588 +1203 +3588 +40 +2532 +228 +2193 +4219 +3756 +2919 +2532 +1556 +3588 +129 +1473 +1537 +3588 +2730 +1909 +3588 +1093 +2532 +1325 +846 +1538 +4749 +3022 +2532 +2046 +846 +2443 +373 +2089 +5550 +3398 +2193 +4137 +2532 +3588 +4889 +846 +2532 +3588 +80 +846 +3588 +3195 +615 +5613 +2532 +846 +2532 +3708 +3753 +455 +3588 +4973 +3588 +1623 +2532 +4578 +3173 +1096 +2532 +3588 +2246 +1096 +3189 +5613 +4526 +5155 +2532 +3588 +4582 +3650 +1096 +5613 +129 +2532 +3588 +792 +3588 +3772 +4098 +1519 +3588 +1093 +5613 +4808 +906 +3588 +3653 +846 +5259 +417 +3173 +4579 +2532 +3588 +3772 +673 +5613 +975 +1667 +2532 +3956 +3735 +2532 +3520 +1537 +3588 +5117 +846 +2795 +2532 +3588 +935 +3588 +1093 +2532 +3588 +3175 +2532 +3588 +5506 +2532 +3588 +4145 +2532 +3588 +2478 +2532 +3956 +1401 +2532 +1658 +2928 +1438 +1519 +3588 +4693 +2532 +1519 +3588 +4073 +3588 +3735 +2532 +3004 +3588 +3735 +2532 +3588 +4073 +4098 +1909 +1473 +2532 +2928 +1473 +575 +4383 +3588 +2521 +1909 +3588 +2362 +2532 +575 +3588 +3709 +3588 +721 +3754 +2064 +3588 +2250 +3588 +3173 +3588 +3709 +846 +2532 +5101 +1410 +2476 +3326 +3778 +3708 +5064 +32 +2476 +1909 +3588 +5064 +1137 +3588 +1093 +2902 +3588 +5064 +417 +3588 +1093 +2443 +3361 +4154 +417 +1909 +3588 +1093 +3383 +1909 +3588 +2281 +3383 +1909 +3956 +1186 +2532 +3708 +243 +32 +305 +575 +395 +2246 +2192 +4973 +2316 +2198 +2532 +2896 +5456 +3173 +3588 +5064 +32 +3739 +846 +1325 +91 +3588 +1093 +2532 +3588 +2281 +3004 +3361 +91 +3588 +1093 +3383 +3588 +2281 +3383 +3588 +1186 +891 +4972 +3588 +1401 +3588 +2316 +1473 +1909 +3588 +3359 +846 +2532 +191 +3588 +706 +3588 +4972 +1540 +5062 +5064 +5505 +4972 +1537 +3956 +5443 +5207 +2474 +1537 +5443 +2448 +1427 +5505 +4972 +1537 +5443 +4502 +1427 +5505 +1537 +5443 +1045 +1427 +5505 +1537 +5443 +768 +1427 +5505 +1537 +5443 +3508 +1427 +5505 +1537 +5443 +3128 +1427 +5505 +1537 +5443 +4826 +1427 +5505 +1537 +5443 +3017 +1427 +5505 +1537 +5443 +2466 +1427 +5505 +1537 +5443 +2194 +1427 +5505 +1537 +5443 +2501 +1427 +5505 +1537 +5443 +958 +1427 +5505 +4972 +3326 +3778 +3708 +2532 +3708 +3793 +4183 +3739 +846 +705 +3762 +1410 +1537 +3956 +1484 +2532 +5443 +2532 +2992 +2532 +1100 +2476 +1799 +3588 +2362 +2532 +1799 +3588 +721 +4016 +4749 +3022 +2532 +5404 +1722 +3588 +5495 +846 +2532 +2896 +5456 +3173 +3004 +3588 +4991 +3588 +2316 +1473 +3588 +2521 +1909 +3588 +2362 +2532 +3588 +721 +2532 +3956 +3588 +32 +2476 +2945 +3588 +2362 +2532 +3588 +4245 +2532 +3588 +5064 +2226 +2532 +4098 +1799 +3588 +2362 +1909 +3588 +4383 +846 +2532 +4352 +3588 +2316 +3004 +281 +3588 +2129 +2532 +3588 +1391 +2532 +3588 +4678 +2532 +3588 +2169 +2532 +3588 +5092 +2532 +3588 +1411 +2532 +3588 +2479 +3588 +2316 +1473 +1519 +3588 +165 +3588 +165 +281 +2532 +611 +1520 +1537 +3588 +4245 +3004 +1473 +3778 +3588 +4016 +3588 +4749 +3588 +3022 +5101 +1510 +2532 +4159 +2064 +2532 +2046 +846 +2962 +1473 +4771 +1492 +2532 +3004 +1473 +3778 +1510 +3588 +2064 +1537 +3588 +2347 +3588 +3173 +2532 +4150 +3588 +4749 +846 +2532 +3021 +846 +1722 +3588 +129 +3588 +721 +1223 +3778 +1510 +1799 +3588 +2362 +3588 +2316 +2532 +3000 +846 +2250 +2532 +3571 +1722 +3588 +3485 +846 +2532 +3588 +2521 +1909 +3588 +2362 +4637 +1909 +846 +3756 +3983 +2089 +3761 +1372 +2089 +3761 +3361 +4098 +1909 +846 +3588 +2246 +3761 +3956 +2738 +3754 +3588 +721 +3588 +303 +3319 +3588 +2362 +4165 +846 +2532 +3594 +846 +1909 +2222 +4077 +5204 +2532 +1813 +3588 +2316 +3956 +1144 +1537 +3588 +3788 +846 +2532 +3752 +455 +3588 +4973 +3588 +1442 +1096 +4602 +1722 +3588 +3772 +5613 +2256 +2532 +3708 +3588 +2033 +32 +3739 +1799 +3588 +2316 +2476 +2532 +1325 +846 +2033 +4536 +2532 +243 +32 +2064 +2532 +2476 +1909 +3588 +2379 +2192 +3031 +5552 +2532 +1325 +846 +2368 +4183 +2443 +1325 +3588 +4335 +3588 +40 +3956 +1909 +3588 +2379 +3588 +5552 +3588 +1799 +3588 +2362 +2532 +305 +3588 +2586 +3588 +2368 +3588 +4335 +3588 +40 +1537 +5495 +3588 +32 +1799 +3588 +2316 +2532 +2983 +3588 +32 +3588 +3031 +2532 +1072 +846 +1537 +3588 +4442 +3588 +2379 +2532 +906 +1519 +3588 +1093 +2532 +1096 +1027 +2532 +5456 +2532 +796 +2532 +4578 +2532 +3588 +2033 +32 +3588 +2192 +3588 +2033 +4536 +2090 +846 +2443 +4537 +2532 +3588 +4413 +4537 +2532 +1096 +5464 +2532 +4442 +3396 +1722 +129 +2532 +906 +1519 +3588 +1093 +2532 +3588 +5154 +3588 +1093 +2618 +2532 +3588 +5154 +3588 +1186 +2618 +2532 +3956 +5528 +5515 +2618 +2532 +3588 +1208 +32 +4537 +2532 +5613 +3735 +3173 +4442 +2545 +906 +1519 +3588 +2281 +2532 +1096 +3588 +5154 +3588 +2281 +129 +2532 +599 +3588 +5154 +3588 +2938 +3588 +1722 +3588 +2281 +3588 +2192 +5590 +2532 +3588 +5154 +3588 +4143 +1311 +2532 +3588 +5154 +32 +4537 +2532 +4098 +1537 +3588 +3772 +792 +3173 +2545 +5613 +2985 +2532 +4098 +1909 +3588 +5154 +3588 +4215 +2532 +1909 +3588 +4077 +3588 +5204 +2532 +3588 +3686 +3588 +792 +3004 +3588 +894 +2532 +1096 +3588 +5154 +3588 +5204 +1519 +894 +2532 +4183 +3588 +444 +599 +1537 +3588 +5204 +3754 +4087 +2532 +3588 +5067 +32 +4537 +2532 +4141 +3588 +5154 +3588 +2246 +2532 +3588 +5154 +3588 +4582 +2532 +3588 +5154 +3588 +792 +2443 +4654 +3588 +5154 +846 +2532 +3588 +2250 +3361 +5316 +3588 +5154 +846 +2532 +3588 +3571 +3668 +2532 +3708 +2532 +191 +1520 +105 +4072 +1722 +3321 +3004 +5456 +3173 +3759 +3759 +3759 +3588 +2730 +1909 +3588 +1093 +1537 +3588 +3062 +5456 +3588 +4536 +3588 +5140 +32 +3588 +3195 +4537 +2532 +3588 +3991 +32 +4537 +2532 +3708 +792 +1537 +3588 +3772 +4098 +1519 +3588 +1093 +2532 +1325 +846 +3588 +2807 +3588 +5421 +3588 +12 +2532 +455 +3588 +5421 +3588 +12 +2532 +305 +2586 +1537 +3588 +5421 +5613 +2586 +2575 +3173 +2532 +4656 +3588 +2246 +2532 +3588 +109 +1537 +3588 +2586 +3588 +5421 +2532 +1537 +3588 +2586 +1831 +200 +1519 +3588 +1093 +2532 +1325 +846 +1849 +5613 +2192 +1849 +3588 +4651 +3588 +1093 +2532 +2046 +846 +2443 +3361 +91 +3588 +5528 +3588 +1093 +3761 +3956 +5515 +3761 +3956 +1186 +1487 +3361 +3588 +444 +3748 +3756 +2192 +3588 +4973 +3588 +2316 +1909 +3588 +3359 +2532 +1325 +846 +2443 +3361 +615 +846 +235 +2443 +928 +3376 +4002 +2532 +3588 +929 +846 +5613 +929 +4651 +3752 +3817 +444 +2532 +1722 +3588 +2250 +1565 +2212 +3588 +444 +3588 +2288 +2532 +3756 +3361 +2147 +846 +2532 +1937 +599 +2532 +5343 +3588 +2288 +575 +846 +2532 +3588 +3667 +3588 +200 +3664 +2462 +2090 +1519 +4171 +2532 +1909 +3588 +2776 +846 +5613 +4735 +3664 +5557 +2532 +3588 +4383 +846 +5613 +4383 +444 +2532 +2192 +2359 +5613 +2359 +1135 +2532 +3588 +3599 +846 +5613 +3023 +1510 +2532 +2192 +2382 +5613 +2382 +4603 +2532 +3588 +5456 +3588 +4420 +846 +5613 +5456 +716 +2462 +4183 +5143 +1519 +4171 +2532 +2192 +3769 +3664 +4651 +2532 +2759 +2532 +1722 +3588 +3769 +846 +3588 +1849 +846 +91 +3588 +444 +3376 +4002 +2192 +1909 +846 +935 +3588 +32 +3588 +12 +3686 +846 +1447 +3 +2532 +1722 +3588 +1673 +3686 +2192 +623 +3588 +3759 +3588 +1520 +565 +3708 +2064 +2089 +1417 +3759 +3326 +3778 +2532 +3588 +1623 +32 +4537 +2532 +191 +5456 +1520 +1537 +3588 +5064 +2768 +3588 +2379 +3588 +5552 +3588 +1799 +3588 +2316 +3004 +3588 +1623 +32 +3588 +2192 +3588 +4536 +3089 +3588 +5064 +32 +3588 +1210 +1909 +3588 +4215 +3588 +3173 +2166 +2532 +3089 +3588 +5064 +32 +3588 +2090 +1519 +3588 +5610 +2532 +2250 +2532 +3376 +2532 +1763 +2443 +615 +3588 +5154 +3588 +444 +2532 +3588 +706 +3588 +4753 +3588 +2461 +3461 +3461 +191 +3588 +706 +846 +2532 +3779 +3708 +3588 +2462 +1722 +3588 +3706 +2532 +3588 +2521 +1909 +846 +2192 +2382 +4447 +2532 +5191 +2532 +2306 +2532 +3588 +2776 +3588 +2462 +5613 +2776 +3023 +2532 +1537 +3588 +4750 +846 +1607 +4442 +2532 +2586 +2532 +2303 +615 +3588 +5154 +3588 +444 +575 +3588 +5140 +4127 +3778 +1537 +3588 +4442 +2532 +3588 +2586 +2532 +3588 +2303 +3588 +1607 +1537 +3588 +4750 +846 +1063 +3588 +1849 +3588 +2462 +1510 +1722 +3588 +4750 +846 +2532 +1722 +3588 +3769 +846 +1063 +3588 +3769 +846 +3664 +3789 +2192 +2776 +2532 +1722 +846 +91 +2532 +3588 +3062 +3588 +444 +3739 +3756 +615 +1722 +3588 +4127 +3778 +3761 +3340 +1537 +3588 +2041 +3588 +5495 +846 +2443 +3361 +4352 +3588 +1140 +2532 +3588 +1497 +3588 +5552 +2532 +3588 +693 +2532 +3588 +5470 +2532 +3588 +3035 +2532 +3588 +3585 +3739 +1410 +3777 +991 +3777 +191 +3777 +4043 +2532 +3756 +3340 +1537 +3588 +5408 +846 +3777 +1537 +3588 +5331 +846 +3777 +1537 +3588 +4202 +846 +3777 +1537 +3588 +2809 +846 +2532 +3708 +243 +32 +2478 +2597 +1537 +3588 +3772 +4016 +3507 +2532 +3588 +2463 +1909 +3588 +2776 +846 +2532 +3588 +4383 +846 +5613 +3588 +2246 +2532 +3588 +4228 +846 +5613 +4769 +4442 +2532 +2192 +1722 +3588 +5495 +846 +974 +455 +2532 +5087 +3588 +4228 +846 +3588 +1188 +1909 +3588 +2281 +1161 +3588 +2176 +1909 +3588 +1093 +2532 +2896 +5456 +3173 +5618 +3023 +3455 +2532 +3753 +2896 +2980 +3588 +2033 +1027 +3588 +1438 +5456 +2532 +3753 +2980 +3588 +2033 +1027 +3195 +1125 +2532 +191 +5456 +1537 +3588 +3772 +3004 +4972 +3739 +2980 +3588 +2033 +1027 +2532 +3361 +846 +1125 +2532 +3588 +32 +3739 +2476 +1909 +3588 +2281 +2532 +1909 +3588 +1093 +3708 +142 +3588 +5495 +846 +3588 +1188 +1519 +3588 +3772 +2532 +3660 +1722 +3588 +2198 +1519 +3588 +165 +3588 +165 +3739 +2936 +3588 +3772 +2532 +3588 +1722 +846 +2532 +3588 +1093 +2532 +3588 +1722 +846 +2532 +3588 +2281 +2532 +3588 +1722 +846 +3754 +5550 +3765 +1510 +235 +1722 +3588 +2250 +3588 +5456 +3588 +1442 +32 +3752 +3195 +4537 +2532 +5055 +3588 +3466 +3588 +2316 +5613 +2097 +3588 +1438 +1401 +3588 +4396 +2532 +3588 +5456 +3739 +191 +1537 +3588 +3772 +3825 +2980 +3326 +1473 +2532 +3004 +5217 +2983 +3588 +975 +3588 +455 +1722 +3588 +5495 +3588 +32 +3588 +2476 +1909 +3588 +2281 +2532 +1909 +3588 +1093 +2532 +565 +4314 +3588 +32 +3004 +846 +1325 +1473 +3588 +974 +2532 +3004 +1473 +2983 +2532 +2719 +846 +2532 +4087 +4771 +3588 +2836 +235 +1722 +3588 +4750 +4771 +1510 +1099 +5613 +3192 +2532 +2983 +3588 +974 +1537 +3588 +5495 +3588 +32 +2532 +2719 +846 +2532 +1510 +1722 +3588 +4750 +1473 +5613 +3192 +1099 +2532 +3753 +5315 +846 +4087 +3588 +2836 +1473 +2532 +3004 +1473 +1163 +4771 +3825 +4395 +1909 +2992 +2532 +1484 +2532 +1100 +2532 +935 +4183 +2532 +1325 +1473 +2563 +3664 +4464 +3004 +1453 +2532 +3354 +3588 +3485 +3588 +2316 +2532 +3588 +2379 +2532 +3588 +4352 +1722 +846 +2532 +3588 +833 +3588 +1855 +3588 +3485 +1544 +1855 +2532 +3361 +846 +3354 +3754 +1325 +3588 +1484 +2532 +3588 +4172 +3588 +40 +3961 +3376 +5062 +1417 +2532 +1325 +3588 +1417 +3144 +1473 +2532 +4395 +2250 +5507 +1250 +1835 +4016 +4526 +3778 +1510 +3588 +1417 +1636 +2532 +3588 +1417 +3087 +3588 +1799 +3588 +2962 +3588 +1093 +2476 +2532 +1487 +5100 +2309 +846 +91 +4442 +1607 +1537 +3588 +4750 +846 +2532 +2719 +3588 +2190 +846 +2532 +1487 +5100 +2309 +846 +91 +3779 +1163 +846 +615 +3778 +2192 +3588 +1849 +2808 +3588 +3772 +2443 +3361 +5205 +1026 +3588 +2250 +3588 +4394 +846 +2532 +1849 +2192 +1909 +3588 +5204 +4762 +846 +1519 +129 +2532 +3960 +3588 +1093 +1722 +3956 +4127 +3740 +1437 +2309 +2532 +3752 +5055 +3588 +3141 +846 +3588 +2342 +3588 +305 +1537 +3588 +12 +4160 +3326 +846 +4171 +2532 +3528 +846 +2532 +615 +846 +2532 +3588 +4430 +846 +1909 +3588 +4113 +3588 +4172 +3588 +3173 +3748 +2564 +4153 +4670 +2532 +125 +3699 +2532 +3588 +2962 +846 +4717 +2532 +991 +1537 +3588 +2992 +2532 +5443 +2532 +1100 +2532 +1484 +3588 +4430 +846 +2250 +5140 +2532 +2255 +2532 +3756 +863 +3588 +4430 +846 +5087 +1519 +3418 +2532 +3588 +2730 +1909 +3588 +1093 +5463 +1909 +846 +2532 +2165 +2532 +1435 +3992 +240 +3754 +3778 +3588 +1417 +4396 +928 +3588 +2730 +1909 +3588 +1093 +2532 +3326 +3588 +5140 +2532 +2255 +2250 +4151 +2222 +1537 +3588 +2316 +1525 +1722 +846 +2532 +2476 +1909 +3588 +4228 +846 +2532 +5401 +3173 +1968 +1909 +3588 +2334 +846 +2532 +191 +5456 +3173 +1537 +3588 +3772 +3004 +846 +305 +5602 +2532 +305 +1519 +3588 +3772 +1722 +3588 +3507 +2532 +2334 +846 +3588 +2190 +846 +2532 +1722 +1565 +3588 +5610 +1096 +4578 +3173 +2532 +3588 +1182 +3588 +4172 +4098 +2532 +615 +1722 +3588 +4578 +3686 +444 +5505 +2033 +2532 +3588 +3062 +1719 +1096 +2532 +1325 +1391 +3588 +2316 +3588 +3772 +3588 +3759 +3588 +1208 +565 +3708 +3588 +3759 +3588 +5154 +2064 +5035 +2532 +3588 +1442 +32 +4537 +2532 +1096 +5456 +3173 +1722 +3588 +3772 +3004 +1096 +3588 +932 +3588 +2889 +3588 +2962 +1473 +2532 +3588 +5547 +846 +2532 +936 +1519 +3588 +165 +3588 +165 +2532 +3588 +1501 +5064 +4245 +3588 +1799 +3588 +2316 +2521 +1909 +3588 +2362 +846 +4098 +1909 +3588 +4383 +846 +2532 +4352 +3588 +2316 +3004 +2168 +4771 +2962 +3588 +2316 +3588 +3841 +3588 +1510 +2532 +3588 +1510 +3754 +2983 +3588 +1411 +4771 +3588 +3173 +2532 +936 +2532 +3588 +1484 +3710 +2532 +2064 +3588 +3709 +4771 +2532 +3588 +2540 +3588 +3498 +2919 +2532 +1325 +3588 +3408 +3588 +1401 +4771 +3588 +4396 +2532 +3588 +40 +2532 +3588 +5399 +3588 +3686 +4771 +3588 +3398 +2532 +3588 +3173 +2532 +1311 +3588 +1311 +3588 +1093 +2532 +455 +3588 +3485 +3588 +2316 +3588 +1722 +3588 +3772 +2532 +3708 +3588 +2787 +3588 +1242 +846 +1722 +3588 +3485 +846 +2532 +1096 +796 +2532 +5456 +2532 +1027 +2532 +4578 +2532 +5464 +3173 +2532 +4592 +3173 +3708 +1722 +3588 +3772 +1135 +4016 +3588 +2246 +2532 +3588 +4582 +5270 +3588 +4228 +846 +2532 +1909 +3588 +2776 +846 +4735 +792 +1427 +2532 +1722 +1064 +2192 +2532 +2896 +5605 +2532 +928 +5088 +2532 +3708 +243 +4592 +1722 +3588 +3772 +2532 +3708 +1404 +4450 +3173 +2192 +2776 +2033 +2532 +2768 +1176 +2532 +1909 +3588 +2776 +846 +2033 +1238 +2532 +3588 +3769 +846 +4951 +3588 +5154 +3588 +792 +3588 +3772 +2532 +906 +846 +1519 +3588 +1093 +2532 +3588 +1404 +2476 +1799 +3588 +1135 +3588 +3195 +5088 +2443 +3752 +5088 +3588 +5043 +846 +2719 +2532 +5088 +5207 +730 +3739 +3195 +4165 +3956 +3588 +1484 +1722 +4464 +4603 +2532 +726 +3588 +5043 +846 +4314 +3588 +2316 +2532 +4314 +3588 +2362 +846 +2532 +3588 +1135 +5343 +1519 +3588 +2048 +3699 +2192 +1563 +5117 +2090 +575 +3588 +2316 +2443 +1563 +5142 +846 +2250 +5507 +1250 +1835 +2532 +1096 +4171 +1722 +3588 +3772 +3588 +3413 +2532 +3588 +32 +846 +3588 +4170 +3326 +3588 +1404 +2532 +4170 +3588 +1404 +2532 +3588 +32 +846 +2532 +3756 +2480 +3761 +5117 +846 +2147 +2089 +1722 +3588 +3772 +2532 +906 +3588 +1404 +3588 +3173 +3588 +3789 +3588 +744 +3588 +2564 +1228 +2532 +3588 +4567 +3588 +4105 +3588 +3625 +3650 +906 +1519 +3588 +1093 +2532 +3588 +32 +846 +3326 +846 +906 +2532 +191 +5456 +3173 +1722 +3588 +3772 +3004 +737 +1096 +3588 +4991 +2532 +3588 +1411 +2532 +3588 +932 +3588 +2316 +1473 +2532 +3588 +1849 +3588 +5547 +846 +3754 +906 +3588 +2725 +3588 +80 +1473 +3588 +2723 +846 +1799 +3588 +2316 +1473 +2250 +2532 +3571 +2532 +846 +3528 +846 +1223 +3588 +129 +3588 +721 +2532 +1223 +3588 +3056 +3588 +3141 +846 +2532 +3756 +25 +3588 +5590 +846 +891 +2288 +1223 +3778 +2165 +3772 +2532 +3588 +1722 +846 +4637 +3759 +3588 +1093 +2532 +3588 +2281 +3754 +2597 +3588 +1228 +4314 +4771 +2192 +2372 +3173 +1492 +3754 +3641 +2540 +2192 +2532 +3753 +3708 +3588 +1404 +3754 +906 +1519 +3588 +1093 +1377 +3588 +1135 +3748 +5088 +3588 +730 +2532 +1325 +3588 +1135 +3588 +1417 +4420 +3588 +105 +3588 +3173 +2443 +4072 +1519 +3588 +2048 +1519 +3588 +5117 +846 +3699 +5142 +1563 +2540 +2532 +2540 +2532 +2255 +2540 +575 +4383 +3588 +3789 +2532 +906 +3588 +3789 +1537 +3588 +4750 +846 +3694 +3588 +1135 +5204 +5613 +4215 +2443 +846 +4216 +4160 +2532 +997 +3588 +1093 +3588 +1135 +2532 +455 +3588 +1093 +3588 +4750 +846 +2532 +2666 +3588 +4215 +3739 +906 +3588 +1404 +1537 +3588 +4750 +846 +2532 +3710 +3588 +1404 +1909 +3588 +1135 +2532 +565 +4160 +4171 +3326 +3588 +3062 +3588 +4690 +846 +3588 +5083 +3588 +1785 +3588 +2316 +2532 +2192 +3588 +3141 +2424 +2532 +2476 +1909 +3588 +285 +3588 +2281 +2532 +3708 +1537 +3588 +2281 +2342 +305 +2192 +2768 +1176 +2532 +2776 +2033 +2532 +1909 +3588 +2768 +846 +1176 +1238 +2532 +1909 +3588 +2776 +846 +3686 +988 +2532 +3588 +2342 +3739 +3708 +1510 +3664 +3917 +2532 +3588 +4228 +846 +5613 +715 +2532 +3588 +4750 +846 +5613 +4750 +3023 +2532 +1325 +846 +3588 +1404 +3588 +1411 +846 +2532 +3588 +2362 +846 +2532 +1849 +3173 +2532 +1520 +1537 +3588 +2776 +846 +5613 +4969 +1519 +2288 +2532 +3588 +4127 +3588 +2288 +846 +2323 +2532 +2296 +3650 +3588 +1093 +3694 +3588 +2342 +2532 +4352 +3588 +1404 +3754 +1325 +3588 +1849 +3588 +2342 +2532 +4352 +3588 +2342 +3004 +5101 +3664 +3588 +2342 +2532 +5101 +1410 +4170 +3326 +846 +2532 +1325 +846 +4750 +2980 +3173 +2532 +988 +2532 +1325 +846 +1849 +4160 +3376 +5062 +1417 +2532 +455 +3588 +4750 +846 +1519 +988 +4314 +3588 +2316 +987 +3588 +3686 +846 +2532 +3588 +4633 +846 +3588 +1722 +3588 +3772 +4637 +2532 +1325 +846 +4160 +4171 +3326 +3588 +40 +2532 +3528 +846 +2532 +1325 +846 +1849 +1909 +3956 +5443 +2532 +2992 +2532 +1100 +2532 +1484 +2532 +4352 +846 +3956 +3588 +2730 +1909 +3588 +1093 +3756 +1125 +3739 +3588 +3686 +846 +1722 +3588 +975 +3588 +2222 +3588 +721 +3588 +4969 +575 +2602 +2889 +1487 +5100 +2192 +3775 +191 +1487 +5100 +1519 +161 +1519 +161 +5217 +1487 +5100 +1722 +3162 +615 +1163 +846 +1722 +3162 +615 +5602 +1510 +3588 +5281 +2532 +3588 +4102 +3588 +40 +2532 +3708 +243 +2342 +305 +1537 +3588 +1093 +2532 +2192 +2768 +1417 +3664 +721 +2532 +2980 +5613 +1404 +2532 +3588 +1849 +3588 +4413 +2342 +3956 +4160 +1799 +846 +2532 +4160 +3588 +1093 +2532 +3588 +1722 +846 +2730 +2443 +4352 +3588 +2342 +3588 +4413 +3739 +2323 +3588 +4127 +3588 +2288 +846 +2532 +4160 +4592 +3173 +2443 +2532 +4160 +4442 +1537 +3588 +3772 +2597 +1519 +3588 +1093 +1799 +3588 +444 +2532 +4105 +3588 +2730 +1909 +3588 +1093 +1223 +3588 +4592 +3739 +1325 +846 +4160 +1799 +3588 +2342 +3004 +3588 +2730 +1909 +3588 +1093 +4160 +1504 +3588 +2342 +3739 +2192 +3588 +4127 +3588 +3162 +2532 +2198 +2532 +1325 +846 +1325 +4151 +3588 +1504 +3588 +2342 +2443 +2532 +2980 +3588 +1504 +3588 +2342 +2532 +4160 +2443 +1437 +3745 +3361 +4352 +3588 +1504 +3588 +2342 +615 +2532 +4160 +3956 +3588 +3398 +2532 +3588 +3173 +2532 +3588 +4145 +2532 +3588 +4434 +2532 +3588 +1658 +2532 +3588 +1401 +2443 +1325 +846 +5480 +1909 +3588 +5495 +846 +3588 +1188 +2228 +1909 +3588 +3359 +846 +2532 +2443 +3361 +5100 +1410 +59 +2228 +4453 +1487 +3361 +3588 +2192 +3588 +5480 +3588 +3686 +3588 +2342 +2228 +3588 +706 +3588 +3686 +846 +5602 +3588 +4678 +1510 +3588 +2192 +3563 +5585 +3588 +706 +3588 +2342 +1063 +706 +444 +1510 +2532 +3588 +706 +846 +1812 +1835 +1803 +2532 +3708 +2532 +3708 +3588 +721 +2476 +1909 +3588 +3735 +4622 +2532 +3326 +846 +1540 +5062 +5064 +5505 +2192 +3588 +3686 +846 +2532 +3588 +3686 +3588 +3962 +846 +1125 +1909 +3588 +3359 +846 +2532 +191 +5456 +1537 +3588 +3772 +5613 +5456 +5204 +4183 +2532 +5613 +5456 +1027 +3173 +2532 +3588 +5456 +3739 +191 +5613 +2790 +2789 +1722 +3588 +2788 +846 +2532 +103 +5603 +2537 +1799 +3588 +2362 +2532 +1799 +3588 +5064 +2226 +2532 +3588 +4245 +2532 +3762 +1410 +3129 +3588 +5603 +1487 +3361 +3588 +1540 +5062 +5064 +5505 +3588 +59 +575 +3588 +1093 +3778 +1510 +3739 +3326 +1135 +3756 +3435 +1063 +3933 +1510 +3778 +3588 +190 +3588 +721 +302 +3699 +5217 +3778 +59 +575 +3588 +444 +536 +3588 +2316 +2532 +3588 +721 +2532 +1722 +3588 +4750 +846 +3756 +2147 +5579 +299 +1510 +2532 +3708 +243 +32 +4072 +1722 +3321 +2192 +2098 +166 +2097 +1909 +3588 +2521 +1909 +3588 +1093 +2532 +1909 +3956 +1484 +2532 +5443 +2532 +1100 +2532 +2992 +3004 +1722 +5456 +3173 +5399 +3588 +2316 +2532 +1325 +846 +1391 +3754 +2064 +3588 +5610 +3588 +2920 +846 +2532 +4352 +3588 +4160 +3588 +3772 +2532 +3588 +1093 +2532 +2281 +2532 +4077 +5204 +2532 +243 +32 +1208 +190 +3004 +4098 +4098 +897 +3588 +3173 +3739 +1537 +3588 +3631 +3588 +2372 +3588 +4202 +846 +4222 +3956 +3588 +1484 +2532 +243 +32 +5154 +190 +846 +3004 +1722 +5456 +3173 +1487 +5100 +4352 +3588 +2342 +2532 +3588 +1504 +846 +2532 +2983 +5480 +1909 +3588 +3359 +846 +2228 +1909 +3588 +5495 +846 +2532 +846 +4095 +1537 +3588 +3631 +3588 +2372 +3588 +2316 +3588 +2767 +194 +1722 +3588 +4221 +3588 +3709 +846 +2532 +928 +1722 +4442 +2532 +2303 +1799 +32 +40 +2532 +1799 +3588 +721 +2532 +3588 +2586 +3588 +929 +846 +1519 +165 +165 +305 +2532 +3756 +2192 +372 +2250 +2532 +3571 +3588 +4352 +3588 +2342 +2532 +3588 +1504 +846 +2532 +1487 +5100 +2983 +3588 +5480 +3588 +3686 +846 +5602 +1510 +3588 +5281 +3588 +40 +3588 +5083 +3588 +1785 +3588 +2316 +2532 +3588 +4102 +2424 +2532 +191 +5456 +1537 +3588 +3772 +3004 +1125 +3107 +3588 +3498 +3588 +1722 +2962 +599 +534 +3483 +3004 +3588 +4151 +2443 +373 +1537 +3588 +2873 +846 +1063 +3588 +2041 +846 +190 +3326 +846 +2532 +3708 +2532 +3708 +3507 +3022 +2532 +1909 +3588 +3507 +2521 +3664 +5207 +444 +2192 +1909 +3588 +2776 +846 +4735 +5552 +2532 +1722 +3588 +5495 +846 +1407 +3691 +2532 +243 +32 +1831 +1537 +3588 +3485 +2896 +1722 +5456 +3173 +3588 +2521 +1909 +3588 +3507 +3992 +3588 +1407 +4771 +2532 +2325 +3754 +2064 +3588 +5610 +2325 +3754 +3583 +3588 +2326 +3588 +1093 +2532 +906 +3588 +2521 +1909 +3588 +3507 +3588 +1407 +846 +1909 +3588 +1093 +2532 +2325 +3588 +1093 +2532 +243 +32 +1831 +1537 +3588 +3485 +3588 +1722 +3588 +3772 +2192 +2532 +846 +1407 +3691 +2532 +243 +32 +3588 +2192 +1849 +1909 +3588 +4442 +1831 +1537 +3588 +2379 +2532 +5455 +5456 +3173 +3588 +2192 +3588 +1407 +3588 +3691 +3004 +3992 +4771 +3588 +1407 +3588 +3691 +2532 +5166 +3588 +1009 +3588 +288 +3588 +1093 +3754 +187 +3588 +4718 +846 +2532 +906 +3588 +32 +3588 +1407 +846 +1519 +3588 +1093 +2532 +5166 +3588 +288 +3588 +1093 +2532 +906 +1519 +3588 +3025 +3588 +2372 +3588 +2316 +3588 +3173 +2532 +3961 +3588 +3025 +1855 +3588 +4172 +2532 +1831 +129 +1537 +3588 +3025 +891 +3588 +5469 +3588 +2462 +575 +4712 +5507 +1812 +2532 +3708 +243 +4592 +1722 +3588 +3772 +3173 +2532 +2298 +32 +2033 +2192 +4127 +2033 +3588 +2078 +3754 +1722 +846 +5055 +3588 +2372 +3588 +2316 +2532 +3708 +5613 +2281 +5193 +3396 +4442 +2532 +3588 +3528 +1537 +3588 +2342 +2532 +1537 +3588 +1504 +846 +2532 +1537 +3588 +706 +3588 +3686 +846 +2476 +1909 +3588 +2281 +3588 +5193 +2192 +2788 +3588 +2316 +2532 +103 +3588 +5603 +3475 +3588 +1401 +3588 +2316 +2532 +3588 +5603 +3588 +721 +3004 +3173 +2532 +2298 +3588 +2041 +4771 +2962 +3588 +2316 +3588 +3841 +1342 +2532 +228 +3588 +3598 +4771 +3588 +935 +3588 +1484 +5101 +3756 +3361 +5399 +2962 +2532 +1392 +3588 +3686 +4771 +3754 +3441 +3741 +3754 +3956 +3588 +1484 +2240 +2532 +4352 +1799 +4771 +3754 +3588 +1345 +4771 +5319 +2532 +3326 +3778 +3708 +2532 +455 +3588 +3485 +3588 +4633 +3588 +3142 +1722 +3588 +3772 +2532 +1831 +3588 +2033 +32 +3588 +2192 +3588 +2033 +4127 +1537 +3588 +3485 +1746 +3043 +2513 +2986 +2532 +4024 +4012 +3588 +4738 +2223 +5552 +2532 +1520 +1537 +3588 +5064 +2226 +1325 +3588 +2033 +32 +2033 +5357 +5552 +1073 +3588 +2372 +3588 +2316 +3588 +2198 +1519 +3588 +165 +3588 +165 +2532 +1072 +3588 +3485 +2586 +1537 +3588 +1391 +3588 +2316 +2532 +1537 +3588 +1411 +846 +2532 +3762 +1410 +1525 +1519 +3588 +3485 +891 +5055 +3588 +2033 +4127 +3588 +2033 +32 +2532 +191 +3173 +5456 +1537 +3588 +3485 +3004 +3588 +2033 +32 +5217 +2532 +1632 +3588 +2033 +5357 +3588 +2372 +3588 +2316 +1519 +3588 +1093 +2532 +565 +3588 +4413 +2532 +1632 +3588 +5357 +846 +1519 +3588 +1093 +2532 +1096 +1668 +2556 +2532 +4190 +1909 +3588 +444 +3588 +2192 +3588 +5480 +3588 +2342 +2532 +3588 +4352 +3588 +1504 +846 +2532 +3588 +1208 +1632 +3588 +5357 +846 +1519 +3588 +2281 +2532 +1096 +129 +5613 +3498 +2532 +3956 +5590 +2222 +3588 +1722 +3588 +2281 +599 +2532 +3588 +5154 +1632 +3588 +5357 +846 +1519 +3588 +4215 +2532 +3588 +4077 +3588 +5204 +2532 +1096 +129 +2532 +191 +3588 +32 +3588 +5204 +3004 +1342 +1510 +3588 +1510 +2532 +3588 +1510 +3588 +3741 +3754 +3778 +2919 +3754 +129 +40 +2532 +4396 +1632 +2532 +129 +846 +1325 +4095 +514 +1510 +2532 +191 +3588 +2379 +3004 +3483 +2962 +3588 +2316 +3588 +3841 +228 +2532 +1342 +3588 +2920 +4771 +2532 +3588 +5067 +1632 +3588 +5357 +846 +1909 +3588 +2246 +2532 +1325 +846 +2739 +3588 +444 +1722 +4442 +2532 +2739 +3588 +444 +2738 +3173 +2532 +987 +3588 +3686 +3588 +2316 +3588 +2192 +3588 +1849 +1909 +3588 +4127 +3778 +2532 +3756 +3340 +1325 +846 +1391 +2532 +3588 +3991 +1632 +3588 +5357 +846 +1909 +3588 +2362 +3588 +2342 +2532 +1096 +3588 +932 +846 +4656 +2532 +3145 +3588 +1100 +846 +1537 +3588 +4192 +2532 +987 +3588 +2316 +3588 +3772 +1537 +3588 +4192 +846 +2532 +1537 +3588 +1668 +846 +2532 +3756 +3340 +1537 +3588 +2041 +846 +2532 +3588 +1623 +1632 +3588 +5357 +846 +1909 +3588 +4215 +3588 +3173 +2166 +2532 +3583 +3588 +5204 +846 +2443 +2090 +3588 +3598 +3588 +935 +3588 +575 +395 +2246 +2532 +3708 +1537 +3588 +4750 +3588 +1404 +2532 +1537 +3588 +4750 +3588 +2342 +2532 +1537 +3588 +4750 +3588 +5578 +4151 +5140 +169 +5613 +944 +1063 +1510 +4151 +1140 +4160 +4592 +3739 +1607 +1909 +3588 +935 +3588 +3625 +3650 +4863 +846 +1519 +3588 +4171 +3588 +2250 +3588 +3173 +3588 +2316 +3588 +3841 +3708 +2064 +5613 +2812 +3107 +3588 +1127 +2532 +5083 +3588 +2440 +846 +2443 +3361 +1131 +4043 +2532 +991 +3588 +808 +846 +2532 +4863 +846 +1519 +3588 +5117 +3588 +2564 +1447 +717 +2532 +3588 +1442 +1632 +3588 +5357 +846 +1909 +3588 +109 +2532 +1831 +5456 +3173 +1537 +3588 +3485 +575 +3588 +2362 +3004 +1096 +2532 +1096 +796 +2532 +5456 +2532 +1027 +2532 +4578 +3173 +1096 +3634 +3756 +1096 +575 +3739 +444 +1096 +1909 +3588 +1093 +5082 +4578 +3779 +3173 +2532 +1096 +3588 +4172 +3588 +3173 +1519 +5140 +3313 +2532 +3588 +4172 +3588 +1484 +4098 +2532 +897 +3588 +3173 +3403 +1799 +3588 +2316 +1325 +846 +3588 +4221 +3588 +3631 +3588 +2372 +3588 +3709 +846 +2532 +3956 +3520 +5343 +2532 +3735 +3756 +2147 +2532 +5464 +3173 +5613 +5006 +2597 +1537 +3588 +3772 +1909 +3588 +444 +2532 +987 +3588 +444 +3588 +2316 +1537 +3588 +4127 +3588 +5464 +3754 +3173 +1510 +3588 +4127 +846 +4970 +2532 +2064 +1520 +1537 +3588 +2033 +32 +3588 +2192 +3588 +2033 +5357 +2532 +2980 +3326 +1473 +3004 +1204 +1166 +4771 +3588 +2917 +3588 +4204 +3588 +3173 +3588 +2521 +1909 +5204 +4183 +3326 +3739 +4203 +3588 +935 +3588 +1093 +2532 +3182 +3588 +2730 +3588 +1093 +1537 +3588 +3631 +3588 +4202 +846 +2532 +667 +1473 +1519 +2048 +1722 +4151 +2532 +3708 +1135 +2521 +1909 +2342 +2847 +1073 +3686 +988 +2192 +2776 +2033 +2532 +2768 +1176 +2532 +3588 +1135 +1510 +4016 +4210 +2532 +2847 +2532 +5558 +5553 +2532 +3037 +5093 +2532 +3135 +2192 +1722 +3588 +5495 +846 +4221 +5552 +1073 +946 +2532 +3588 +169 +3588 +4202 +846 +2532 +1909 +3588 +3359 +846 +1125 +3686 +3466 +897 +3588 +3173 +3588 +3384 +3588 +4204 +2532 +3588 +946 +3588 +1093 +2532 +3708 +3588 +1135 +3184 +1537 +3588 +129 +3588 +40 +2532 +1537 +3588 +129 +3588 +3144 +2424 +2532 +2296 +3708 +846 +2295 +3173 +2532 +3004 +1473 +3588 +32 +1223 +5101 +2296 +1473 +2046 +4771 +3588 +3466 +3588 +1135 +2532 +3588 +2342 +3588 +941 +846 +3588 +2192 +3588 +2033 +2776 +2532 +3588 +1176 +2768 +3588 +2342 +3739 +3708 +1510 +2532 +3756 +1510 +2532 +3195 +305 +1537 +3588 +12 +2532 +1519 +684 +5217 +2532 +2296 +3588 +2730 +1909 +3588 +1093 +3739 +3588 +3686 +3756 +1125 +1909 +3588 +975 +3588 +2222 +575 +2602 +2889 +991 +3588 +2342 +3754 +1510 +2532 +3756 +1510 +2532 +3918 +5602 +3588 +3563 +3588 +2192 +4678 +3588 +2033 +2776 +2033 +3735 +1510 +3699 +3588 +1135 +2521 +1909 +846 +2532 +935 +2033 +1510 +3588 +4002 +4098 +3588 +1520 +1510 +3588 +243 +3768 +2064 +2532 +3752 +2064 +3641 +846 +3306 +1163 +2532 +3588 +2342 +3739 +1510 +2532 +3756 +1510 +2532 +846 +3590 +1510 +2532 +1537 +3588 +2033 +1510 +2532 +1519 +684 +5217 +2532 +3588 +1176 +2768 +3739 +3708 +1510 +1176 +935 +3748 +932 +3768 +2983 +235 +1849 +5613 +935 +1520 +5610 +2983 +3326 +3588 +2342 +3778 +1520 +1106 +2192 +2532 +3588 +1411 +2532 +1849 +846 +3588 +2342 +1325 +3778 +3326 +3588 +721 +4170 +2532 +3588 +721 +3528 +846 +3754 +1510 +2962 +2962 +2532 +935 +935 +2532 +3588 +3326 +846 +2822 +2532 +1588 +2532 +4103 +2532 +3004 +1473 +3588 +5204 +3739 +3708 +3757 +3588 +4204 +2521 +1510 +2992 +2532 +3793 +2532 +1484 +2532 +1100 +2532 +3588 +1176 +2768 +3739 +3708 +2532 +3588 +2342 +3778 +3404 +3588 +4204 +2532 +4160 +846 +2049 +2532 +1131 +2532 +3588 +4561 +846 +5315 +2532 +846 +2618 +1722 +4442 +1063 +3588 +2316 +1325 +1519 +3588 +2588 +846 +4160 +3588 +1106 +846 +2532 +4160 +1520 +1106 +2532 +1325 +3588 +932 +846 +3588 +2342 +891 +5055 +3588 +3056 +3588 +2316 +2532 +3588 +1135 +3739 +3708 +1510 +3588 +4172 +3588 +3173 +3588 +2192 +932 +1909 +3588 +935 +3588 +1093 +3326 +3778 +3708 +243 +32 +2597 +1537 +3588 +3772 +2192 +1849 +3173 +2532 +3588 +1093 +5461 +1537 +3588 +1391 +846 +2532 +2896 +1722 +2478 +5456 +3004 +4098 +4098 +897 +3588 +3173 +2532 +1096 +2732 +1140 +2532 +5438 +3956 +4151 +169 +2532 +5438 +3956 +3732 +169 +2532 +3404 +3754 +1537 +3588 +3631 +3588 +2372 +3588 +4202 +846 +4095 +3956 +3588 +1484 +2532 +3588 +935 +3588 +1093 +3326 +846 +4203 +2532 +3588 +1713 +3588 +1093 +1537 +3588 +1411 +3588 +4764 +846 +4147 +2532 +191 +243 +5456 +1537 +3588 +3772 +3004 +3588 +2992 +1473 +1831 +1537 +846 +2443 +3361 +4790 +3588 +266 +846 +2532 +2443 +1537 +3588 +4127 +846 +3361 +2983 +3754 +2853 +846 +3588 +266 +891 +3588 +3772 +2532 +3421 +3588 +2316 +3588 +92 +846 +591 +846 +5613 +2532 +846 +591 +2532 +1363 +3588 +1362 +2596 +3588 +2041 +846 +1722 +3588 +4221 +3739 +2767 +2767 +846 +1362 +3745 +1392 +846 +2532 +4763 +5118 +929 +2532 +3997 +1325 +846 +3754 +1722 +3588 +2588 +846 +3004 +3754 +2521 +938 +2532 +5503 +3756 +1510 +2532 +3997 +3756 +3361 +3708 +1223 +3778 +1722 +1520 +2250 +2240 +3588 +4127 +846 +2288 +2532 +3997 +2532 +3042 +2532 +1722 +4442 +2618 +3754 +2478 +2962 +3588 +2316 +3588 +2919 +846 +2532 +2799 +2532 +2875 +1909 +846 +3588 +935 +3588 +1093 +3588 +3326 +846 +4203 +2532 +4763 +3752 +991 +3588 +2586 +3588 +4451 +846 +575 +3113 +2476 +1223 +3588 +5401 +3588 +929 +846 +3004 +3759 +3759 +3588 +4172 +3588 +3173 +897 +3588 +4172 +3588 +2478 +3754 +1520 +5610 +2064 +3588 +2920 +4771 +2532 +3588 +1713 +3588 +1093 +2799 +2532 +3996 +1909 +846 +3754 +3762 +59 +3765 +3588 +1117 +846 +1117 +5557 +2532 +696 +2532 +3037 +5093 +2532 +3135 +2532 +1039 +2532 +4209 +2532 +4596 +2532 +2847 +2532 +3956 +3586 +2367 +2532 +3956 +4632 +1661 +2532 +3956 +4632 +1537 +3586 +5093 +2532 +5475 +2532 +4604 +2532 +3139 +2532 +2792 +2532 +299 +2532 +2368 +2532 +3464 +2532 +3030 +2532 +3631 +2532 +1637 +2532 +4585 +2532 +4621 +2532 +2934 +2532 +4263 +2532 +2462 +2532 +4480 +2532 +4983 +2532 +5590 +444 +2532 +3588 +3703 +4771 +3588 +1939 +3588 +5590 +565 +575 +4771 +2532 +3956 +3588 +3045 +2532 +3588 +2986 +622 +575 +4771 +2532 +3765 +3756 +3361 +846 +2147 +3588 +1713 +3778 +3588 +4147 +575 +846 +575 +3113 +2476 +1223 +3588 +5401 +3588 +929 +846 +2799 +2532 +3996 +3004 +3759 +3759 +3588 +4172 +3588 +3173 +3588 +4016 +1039 +2532 +4210 +2532 +2847 +2532 +5558 +1722 +5553 +2532 +3037 +5093 +2532 +3135 +3754 +1520 +5610 +2049 +3588 +5118 +4149 +2532 +3956 +2942 +2532 +3956 +3588 +1909 +5117 +4126 +2532 +3492 +2532 +3745 +3588 +2281 +2038 +575 +3113 +2476 +2532 +2896 +991 +3588 +2586 +3588 +4451 +846 +3004 +5101 +3664 +3588 +4172 +3588 +3173 +2532 +906 +5522 +1909 +3588 +2776 +846 +2532 +2896 +2799 +2532 +3996 +3004 +3759 +3759 +3588 +4172 +3588 +3173 +1722 +3739 +4147 +3956 +3588 +2192 +3588 +4143 +1722 +3588 +2281 +1537 +3588 +5094 +846 +3754 +1520 +5610 +2049 +2165 +1909 +846 +3772 +2532 +3588 +40 +2532 +3588 +652 +2532 +3588 +4396 +3754 +2919 +3588 +2316 +3588 +2917 +4771 +1537 +846 +2532 +142 +1520 +32 +2478 +3037 +5613 +3458 +3173 +2532 +906 +1519 +3588 +2281 +3004 +3779 +3731 +906 +897 +3588 +3173 +4172 +2532 +3756 +3361 +2147 +2089 +2532 +5456 +2790 +2532 +3451 +2532 +834 +2532 +4538 +3756 +3361 +191 +1722 +4771 +2089 +2532 +3956 +5079 +3956 +5078 +3756 +3361 +2147 +1722 +4771 +2089 +2532 +5456 +3458 +3756 +3361 +191 +1722 +4771 +2089 +2532 +5457 +3088 +3756 +3361 +5316 +1722 +4771 +2089 +2532 +5456 +3566 +2532 +3565 +3756 +3361 +191 +1722 +4771 +2089 +3754 +3588 +1713 +4771 +1510 +3588 +3175 +3588 +1093 +3754 +1722 +3588 +5331 +4771 +4105 +3956 +3588 +1484 +2532 +1722 +846 +2147 +129 +4396 +2532 +40 +2532 +3956 +3588 +4969 +1909 +3588 +1093 +3326 +3778 +191 +5613 +5456 +3173 +3793 +4183 +1722 +3588 +3772 +3004 +239 +3588 +4991 +2532 +3588 +1391 +2532 +3588 +1411 +3588 +2316 +1473 +3754 +228 +2532 +1342 +3588 +2920 +846 +3754 +2919 +3588 +4204 +3588 +3173 +3748 +5351 +3588 +1093 +1722 +3588 +4202 +846 +2532 +1556 +3588 +129 +3588 +1401 +846 +1537 +5495 +846 +2532 +1208 +2046 +239 +2532 +3588 +2586 +846 +305 +1519 +3588 +165 +3588 +165 +2532 +4098 +3588 +4245 +3588 +1501 +5064 +2532 +3588 +5064 +2226 +2532 +4352 +3588 +2316 +3588 +2521 +1909 +3588 +2362 +3004 +281 +239 +2532 +5456 +575 +3588 +2362 +1831 +3004 +134 +3588 +2316 +1473 +3956 +3588 +1401 +846 +3588 +5399 +846 +3588 +3398 +2532 +3588 +3173 +2532 +191 +5613 +5456 +3793 +4183 +2532 +5613 +5456 +5204 +4183 +2532 +5613 +5456 +1027 +2478 +3004 +239 +3754 +936 +2962 +3588 +2316 +1473 +3588 +3841 +5463 +2532 +21 +2532 +1325 +3588 +1391 +846 +3754 +2064 +3588 +1062 +3588 +721 +2532 +3588 +1135 +846 +2090 +1438 +2532 +1325 +846 +2443 +4016 +1039 +2986 +2513 +1063 +3588 +1039 +3588 +1345 +3588 +40 +1510 +2532 +3004 +1473 +1125 +3107 +3588 +1519 +3588 +1173 +3588 +1062 +3588 +721 +2564 +2532 +3004 +1473 +3778 +3588 +3056 +228 +3588 +2316 +1510 +2532 +4098 +1715 +3588 +4228 +846 +4352 +846 +2532 +3004 +1473 +3708 +3361 +1510 +4889 +4771 +2532 +3588 +80 +4771 +3588 +2192 +3588 +3141 +2424 +3588 +2316 +4352 +1063 +3588 +3141 +2424 +1510 +3588 +4151 +3588 +4394 +2532 +3708 +3588 +3772 +455 +2532 +3708 +2462 +3022 +2532 +3588 +2521 +1909 +846 +2564 +4103 +2532 +228 +2532 +1722 +1343 +2919 +2532 +4170 +1161 +3588 +3788 +846 +5395 +4442 +2532 +1909 +3588 +2776 +846 +1238 +4183 +2192 +3686 +1125 +3739 +3762 +1492 +1487 +3361 +846 +2532 +4016 +2440 +911 +129 +2532 +2564 +3588 +3686 +846 +3588 +3056 +3588 +2316 +2532 +3588 +4753 +3588 +1722 +3588 +3772 +190 +846 +1909 +2462 +3022 +1746 +1039 +3022 +2513 +2532 +1537 +3588 +4750 +846 +1607 +4501 +3691 +2443 +1722 +846 +3960 +3588 +1484 +2532 +846 +4165 +846 +1722 +4464 +4603 +2532 +846 +3961 +3588 +3025 +3588 +3631 +3588 +2372 +3588 +3709 +3588 +2316 +3588 +3841 +2532 +2192 +1909 +3588 +2440 +2532 +1909 +3588 +3382 +846 +3686 +1125 +935 +935 +2532 +2962 +2962 +2532 +3708 +1520 +32 +2476 +1722 +3588 +2246 +2532 +2896 +1722 +5456 +3173 +3004 +3956 +3588 +3732 +3588 +4072 +1722 +3321 +1205 +4863 +1519 +3588 +1173 +3588 +3173 +3588 +2316 +2443 +5315 +4561 +935 +2532 +4561 +5506 +2532 +4561 +2478 +2532 +4561 +2462 +2532 +3588 +2521 +1909 +846 +2532 +4561 +3956 +5037 +1658 +2532 +1401 +2532 +3398 +2532 +3173 +2532 +3708 +3588 +2342 +2532 +3588 +935 +3588 +1093 +2532 +3588 +4753 +846 +4863 +4160 +3588 +4171 +3326 +3588 +2521 +1909 +3588 +2462 +2532 +3326 +3588 +4753 +846 +2532 +4084 +3588 +2342 +2532 +3326 +846 +3588 +5578 +3588 +4160 +3588 +4592 +1799 +846 +1722 +3739 +4105 +3588 +2983 +3588 +5480 +3588 +2342 +2532 +3588 +4352 +3588 +1504 +846 +2198 +906 +3588 +1417 +1519 +3588 +3041 +3588 +4442 +3588 +2545 +1722 +2303 +2532 +3588 +3062 +615 +1722 +3588 +4501 +3588 +2521 +1909 +3588 +2462 +3588 +1831 +1537 +3588 +4750 +846 +2532 +3956 +3588 +3732 +5526 +1537 +3588 +4561 +846 +2532 +3708 +32 +2597 +1537 +3588 +3772 +2192 +3588 +2807 +3588 +12 +2532 +254 +3173 +1909 +3588 +5495 +846 +2532 +2902 +3588 +1404 +3588 +3789 +3588 +744 +3739 +1510 +1228 +2532 +3588 +4567 +2532 +1210 +846 +5507 +2094 +2532 +906 +846 +1519 +3588 +12 +2532 +2808 +2532 +4972 +1883 +846 +2443 +3361 +4105 +2089 +3588 +1484 +891 +5055 +3588 +5507 +2094 +3326 +3778 +1163 +3089 +846 +3398 +5550 +2532 +3708 +2362 +2532 +2523 +1909 +846 +2532 +2917 +1325 +846 +2532 +3588 +5590 +3588 +3990 +1223 +3588 +3141 +2424 +2532 +1223 +3588 +3056 +3588 +2316 +2532 +3748 +3756 +4352 +3588 +2342 +3761 +3588 +1504 +846 +2532 +3756 +2983 +3588 +5480 +1909 +3588 +3359 +2532 +1909 +3588 +5495 +846 +2532 +2198 +2532 +936 +3326 +3588 +5547 +5507 +2094 +3588 +3062 +3588 +3498 +3756 +2198 +891 +5055 +3588 +5507 +2094 +3778 +3588 +386 +3588 +4413 +3107 +2532 +40 +3588 +2192 +3313 +1722 +3588 +386 +3588 +4413 +1909 +3778 +3588 +1208 +2288 +3756 +2192 +1849 +235 +1510 +2409 +3588 +2316 +2532 +3588 +5547 +2532 +936 +3326 +846 +3588 +5507 +2094 +2532 +3752 +5055 +3588 +5507 +2094 +3089 +3588 +4567 +1537 +3588 +5438 +846 +2532 +1831 +4105 +3588 +1484 +3588 +1722 +3588 +5064 +1137 +3588 +1093 +3588 +1136 +2532 +3098 +4863 +846 +1519 +3588 +4171 +3739 +3588 +706 +846 +5613 +3588 +285 +3588 +2281 +2532 +305 +1909 +3588 +4114 +3588 +1093 +2532 +2944 +3588 +3925 +3588 +40 +2532 +3588 +4172 +3588 +25 +2532 +2597 +4442 +1537 +3588 +3772 +2532 +2719 +846 +2532 +3588 +1228 +3588 +4105 +846 +906 +1519 +3588 +3041 +3588 +4442 +2532 +2303 +3699 +2532 +3588 +2342 +2532 +3588 +5578 +2532 +928 +2250 +2532 +3571 +1519 +3588 +165 +3588 +165 +2532 +3708 +2362 +3173 +3022 +2532 +3588 +2521 +1909 +846 +575 +3739 +3588 +4383 +5343 +3588 +1093 +2532 +3588 +3772 +2532 +5117 +3756 +2147 +846 +2532 +3708 +3588 +3498 +3588 +3173 +2532 +3588 +3398 +2476 +1799 +3588 +2362 +2532 +975 +455 +2532 +243 +975 +455 +3739 +1510 +3588 +2222 +2532 +2919 +3588 +3498 +1537 +3588 +1125 +1722 +3588 +975 +2596 +3588 +2041 +846 +2532 +1325 +3588 +2281 +3588 +3498 +3588 +1722 +846 +2532 +3588 +2288 +2532 +3588 +86 +1325 +3588 +3498 +3588 +1722 +846 +2532 +2919 +1538 +2596 +3588 +2041 +846 +2532 +3588 +2288 +2532 +3588 +86 +906 +1519 +3588 +3041 +3588 +4442 +3778 +3588 +2288 +3588 +1208 +3588 +3041 +3588 +4442 +1510 +2532 +1487 +5100 +3756 +2147 +1722 +3588 +976 +3588 +2222 +1125 +906 +1519 +3588 +3041 +3588 +4442 +2532 +3708 +3772 +2537 +2532 +1093 +2537 +1063 +3588 +4413 +3772 +2532 +3588 +4413 +1093 +565 +2532 +3588 +2281 +3756 +1510 +2089 +2532 +3708 +3588 +4172 +3588 +40 +2419 +2537 +2597 +1537 +3588 +3772 +575 +3588 +2316 +2090 +5613 +3565 +2885 +3588 +435 +846 +2532 +191 +5456 +3173 +1537 +3588 +2362 +3004 +3708 +3588 +4633 +3588 +2316 +3326 +3588 +444 +2532 +4637 +3326 +846 +2532 +846 +2992 +846 +1510 +2532 +846 +3588 +2316 +3326 +846 +1510 +2532 +1813 +3956 +1144 +1537 +3588 +3788 +846 +2532 +3588 +2288 +3756 +1510 +2089 +3777 +3997 +3777 +2906 +3777 +4192 +3756 +1510 +2089 +3754 +3588 +4413 +565 +2532 +3004 +3588 +2521 +1909 +3588 +2362 +3708 +2537 +4160 +3956 +2532 +3004 +1125 +3754 +3778 +3588 +3056 +4103 +2532 +228 +1510 +2532 +3004 +1473 +1096 +1473 +3588 +1 +2532 +3588 +5598 +3588 +746 +2532 +3588 +5056 +1473 +3588 +1372 +1325 +1537 +3588 +4077 +3588 +5204 +3588 +2222 +1432 +3588 +3528 +2816 +3778 +2532 +1510 +846 +2316 +2532 +846 +1510 +1473 +5207 +1161 +3588 +1169 +2532 +571 +2532 +948 +2532 +5406 +2532 +4205 +2532 +5333 +2532 +1496 +2532 +3956 +3588 +5571 +3588 +3313 +846 +1722 +3588 +3041 +3588 +2545 +4442 +2532 +2303 +3739 +1510 +3588 +2288 +3588 +1208 +2532 +2064 +1520 +1537 +3588 +2033 +32 +3588 +2192 +3588 +2033 +5357 +3588 +1073 +3588 +2033 +4127 +3588 +2078 +2532 +2980 +3326 +1473 +3004 +1204 +1166 +4771 +3588 +3565 +3588 +1135 +3588 +721 +2532 +667 +1473 +1722 +4151 +1909 +3735 +3173 +2532 +5308 +2532 +1166 +1473 +3588 +4172 +3588 +40 +2419 +2597 +1537 +3588 +3772 +575 +3588 +2316 +2192 +3588 +1391 +3588 +2316 +3588 +5458 +846 +3664 +3037 +5093 +5613 +3037 +2393 +2929 +2192 +5038 +3173 +2532 +5308 +2192 +4440 +1427 +2532 +1909 +3588 +4440 +32 +1427 +2532 +1924 +3686 +3739 +1510 +3588 +1427 +5443 +5207 +2474 +575 +395 +4440 +5140 +2532 +575 +1005 +4440 +5140 +2532 +575 +3558 +4440 +5140 +2532 +575 +1424 +4440 +5140 +2532 +3588 +5038 +3588 +4172 +2192 +2310 +1427 +2532 +1909 +846 +1427 +3686 +3588 +1427 +652 +3588 +721 +2532 +3588 +2980 +3326 +1473 +2192 +3358 +2563 +5552 +2443 +3354 +3588 +4172 +2532 +3588 +4440 +846 +2532 +3588 +5038 +846 +2532 +3588 +4172 +5068 +2749 +2532 +3588 +3372 +846 +3745 +3588 +4114 +2532 +3354 +3588 +4172 +3588 +2563 +1909 +4712 +1427 +5505 +3588 +3372 +2532 +3588 +4114 +2532 +3588 +5311 +846 +2470 +1510 +2532 +3354 +3588 +5038 +846 +1540 +5062 +5064 +4083 +3358 +444 +3739 +1510 +32 +2532 +3588 +1739 +3588 +5038 +846 +2393 +2532 +3588 +4172 +5553 +2513 +3664 +5194 +2513 +3588 +2310 +3588 +5038 +3588 +4172 +3956 +3037 +5093 +2885 +3588 +2310 +3588 +4413 +2393 +3588 +1208 +4552 +3588 +5154 +5472 +3588 +5067 +4665 +3588 +3991 +4557 +3588 +1623 +4556 +3588 +1442 +5555 +3588 +3590 +969 +3588 +1766 +5116 +3588 +1182 +5556 +3588 +1734 +5192 +3588 +1428 +271 +2532 +3588 +1427 +4440 +1427 +3135 +303 +1520 +1538 +3588 +4440 +1510 +1537 +1520 +3135 +2532 +3588 +4113 +3588 +4172 +5553 +2513 +5613 +5194 +1306 +2532 +3485 +3756 +3708 +1722 +846 +1063 +3588 +2962 +3588 +2316 +3588 +3841 +2532 +3588 +721 +3485 +846 +1510 +2532 +3588 +4172 +3756 +2192 +5532 +3588 +2246 +3761 +3588 +4582 +2443 +5316 +846 +1063 +3588 +1391 +3588 +2316 +5461 +846 +2532 +3588 +3088 +846 +3588 +721 +2532 +4043 +3588 +1484 +1223 +3588 +5457 +846 +2532 +3588 +935 +3588 +1093 +5342 +3588 +1391 +846 +1519 +846 +2532 +3588 +4440 +846 +3756 +3361 +2808 +2250 +1063 +3571 +3756 +1510 +1563 +2532 +5342 +3588 +1391 +2532 +3588 +5092 +3588 +1484 +1519 +846 +2532 +3756 +3361 +1525 +1519 +846 +3956 +2839 +2532 +3588 +4160 +946 +2532 +5579 +1487 +3361 +3588 +1125 +1722 +3588 +975 +3588 +2222 +3588 +721 +2532 +1166 +1473 +4215 +5204 +2222 +2986 +5613 +2930 +1607 +1537 +3588 +2362 +3588 +2316 +2532 +3588 +721 +1722 +3319 +3588 +4113 +846 +2532 +3588 +4215 +1782 +2532 +1564 +3586 +2222 +4160 +2590 +1427 +2596 +3376 +1538 +591 +3588 +2590 +846 +2532 +3588 +5444 +3588 +3586 +1519 +2322 +3588 +1484 +2532 +3956 +2652 +3756 +1510 +2089 +2532 +3588 +2362 +3588 +2316 +2532 +3588 +721 +1722 +846 +1510 +2532 +3588 +1401 +846 +3000 +846 +2532 +3708 +3588 +4383 +846 +2532 +3588 +3686 +846 +1909 +3588 +3359 +846 +2532 +3571 +3756 +1510 +2089 +2532 +3756 +2192 +5532 +5457 +3088 +2532 +5457 +2246 +3754 +2962 +3588 +2316 +5461 +1909 +846 +2532 +936 +1519 +3588 +165 +3588 +165 +2532 +3004 +1473 +3778 +3588 +3056 +4103 +2532 +228 +2532 +3588 +2962 +3588 +2316 +3588 +4151 +3588 +4396 +649 +3588 +32 +846 +1166 +3588 +1401 +846 +3739 +1096 +1722 +5034 +1163 +2532 +3708 +2064 +5035 +3107 +3588 +5083 +3588 +3056 +3588 +4394 +3588 +975 +3778 +2504 +2491 +3588 +191 +2532 +991 +3778 +2532 +3753 +191 +2532 +991 +4098 +4352 +1715 +3588 +4228 +3588 +32 +3588 +1166 +1473 +3778 +2532 +3004 +1473 +3708 +3361 +1510 +4889 +4771 +2532 +3588 +80 +4771 +3588 +4396 +2532 +3588 +5083 +3588 +3056 +3588 +975 +3778 +3588 +2316 +4352 +2532 +3004 +1473 +3361 +4972 +3588 +3056 +3588 +4394 +3588 +975 +3778 +1063 +3588 +2540 +1451 +1510 +3588 +91 +91 +2089 +2532 +3588 +4508 +4510 +2089 +2532 +3588 +1342 +1343 +4160 +2089 +2532 +3588 +40 +37 +2089 +3708 +2064 +5035 +2532 +3588 +3408 +1473 +3326 +1473 +591 +1538 +5613 +3588 +2041 +846 +1510 +1473 +3588 +1 +2532 +3588 +5598 +3588 +4413 +2532 +3588 +2078 +3588 +746 +2532 +3588 +5056 +3107 +3588 +4150 +3588 +4749 +846 +2443 +1510 +3588 +1849 +846 +1909 +3588 +3586 +3588 +2222 +2532 +3588 +4440 +1525 +1519 +3588 +4172 +1854 +3588 +2965 +2532 +3588 +5333 +2532 +3588 +4205 +2532 +3588 +5406 +2532 +3588 +1496 +2532 +3956 +5368 +2532 +4160 +5579 +1473 +2424 +3992 +3588 +32 +1473 +3140 +4771 +3778 +1909 +3588 +1577 +1473 +1510 +3588 +4491 +2532 +3588 +1085 +1138 +3588 +792 +3588 +2986 +3588 +4407 +2532 +3588 +4151 +2532 +3588 +3565 +3004 +2064 +2532 +3588 +191 +3004 +2064 +2532 +3588 +1372 +2064 +3588 +2309 +2983 +5204 +2222 +1432 +3140 +1473 +3956 +3588 +191 +3588 +3056 +3588 +4394 +3588 +975 +3778 +1437 +5100 +2007 +1909 +846 +2007 +3588 +2316 +1909 +846 +3588 +4127 +3588 +1125 +1722 +3588 +975 +3778 +2532 +1437 +5100 +851 +575 +3588 +3056 +3588 +975 +3588 +4394 +3778 +851 +3588 +2316 +3588 +3313 +846 +575 +3588 +3586 +3588 +2222 +2532 +1537 +3588 +4172 +3588 +40 +3588 +1125 +1722 +3588 +975 +3778 +3004 +3588 +3140 +3778 +3483 +2064 +5035 +281 +2064 +2962 +2424 +3588 +5485 +3588 +2962 +2424 +3326 +3956 diff --git a/tf/0.1.1/subjref.tf b/tf/0.1.1/subjref.tf new file mode 100644 index 0000000..f419d8e --- /dev/null +++ b/tf/0.1.1/subjref.tf @@ -0,0 +1,16589 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=number +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +245 n40001016012 +295 n40001018011 +298 n40001018011 +308 n40001019001 +311 n40001019001 +313 n40001019001 +316 n40001019001 +329 n40001020006 +334 n40001020013 +n40001020013 +350 n40001018013 +353 n40001020013 +381 n40001022010 +389 n40001023003 +407 n40001024004 +419 n40001024004 +425 n40001024004 +429 n40001024018 +432 n40001024004 +457 n40002001015 +461 n40002002006 +466 n40002001015 +474 n40002001015 +n40002001015 +478 n40002003004 +489 n40002003004 +497 n40002003004 +514 n40002006007 n40002006016 +545 n40002007002 +554 n40002007014 +557 n40002007002 +561 n40002007002 +n40002007006 +n40002007006 +570 n40002007006 +n40002007006 +575 n40002007002 +580 n40002007006 +589 n40002007006 +596 n40002009010 +n40002009010 +604 n40002007006 +607 n40002007006 +612 n40002007006 +616 n40002007006 +625 n40002007006 +n40002007006 +629 n40002007006 +633 n40002007006 +642 n40002007006 +646 n40002007006 +652 n40002007006 +668 n40002013005 +n40002013011 +n40002013011 +678 n40002013011 +682 n40002013011 +686 n40002013005 +691 n40002013034 +695 n40002013034 +699 n40002013011 +709 n40002013011 +713 n40002013011 +728 n40002015013 +731 n40002015013 +737 n40002016002 +739 n40002016002 +746 n40002016002 +n40002016002 +768 n40002016002 +780 n40002017006 +796 n40002018009 +n40002018009 +800 n40002018012 +815 n40002019006 +n40002019012 +n40002019012 +825 n40002019012 +839 n40002019012 +848 n40002019012 +853 n40002019012 +864 n40002019012 +866 n40002019012 +868 n40002019012 +871 n40002019012 +878 n40002019012 +n40002019012 +882 n40002023005 +893 n40002021006 +903 n40003001007 +909 n40003001007 +926 n40003003007 +984 n40003005005 n40003005009 n40003005013 +991 n40003005005 n40003005009 n40003005013 +996 n40003004004 +1002 n40003007003 +1006 n40003004004 +1013 n40003007014 +1016 n40003007023 +1019 n40003007014 +1026 n40003007014 +n40003007014 +1031 n40003007014 +1035 n40003004004 +1045 n40003009017 +1063 n40003010013 +1070 n40003010013 +1089 n40003004004 +1093 n40003004004 +1110 n40003011013 +1115 n40003011013 +1125 n40003011013 +1142 n40003013004 +1149 n40003013013 +1155 n40003013013 +1162 n40003015004 +1167 n40003013013 +1174 n40003013013 n40003015004 +1178 n40003013013 +1181 n40003016004 +1195 n40003016004 +1201 n40003016017 +1210 n40003017003 +1220 n40003017003 +1231 n40004001003 +1236 n40004001003 +1243 n40004001003 +1245 n40004003004 +1247 n40004001014 +1251 n40004001003 +1255 n40004001003 +1264 n40004001003 +1266 n40004004010 n40004004016 +1278 n40004004016 +1292 n40004005005 +1300 n40004005005 +1303 n40004001003 +1307 n40004001003 +1311 n40004006018 n40004006024 n40004006027 +1316 n40004006008 +1322 n40004006016 +1326 n40004001003 +1337 n40004007008 +1354 n40004008005 +1366 n40004008005 +1371 n40004008005 +1373 n40004007004 +n40004007004 +1381 n40004010007 +1384 n40004010014 n40004010018 +1404 n40004011008 +1407 n40004010005 +1411 n40004010005 +1416 n40004010005 +1419 n40004010005 +n40004010005 +1438 n40004014006 +1455 n40004016002 +1477 n40004017005 +1479 n40004017005 +1488 n40004017005 +1494 n40004017005 +1499 n40004018011 +1512 n40004018010 +1515 n40004017005 +1517 n40004018010 +1521 n40004017005 +1528 n40004018010 +1534 n40004017005 +1536 n40004017005 +1562 n40004017005 +1567 n40004018010 +1577 n40004017005 +1582 n40004017005 +1588 n40004017005 +1594 n40004017005 +1613 n40004024009 +1630 n40004017005 +1651 n40004017005 +1654 n40004017005 +1667 n40004017005 +1671 n40004017005 +1673 n40004017005 +1747 n40005001015 +1762 n40005001015 +1764 n40005001015 +1794 n40005013010 +1797 n40005013010 +1801 n40005013010 +1803 n40005013010 +1816 n40005014009 +1819 n40005014009 +1821 n40005013026 +1824 n40005013026 +1834 n40005015003 +1849 n40005016008 +1855 n40005016008 +1864 n40005001015 +1866 n40004017005 +n40004017005 +1874 n40004017005 +n40004017005 +1877 n40004017005 +1880 n40004017005 +1916 n40005019001 +1932 n40005019023 +1942 n40004017005 +1958 n40005001015 +1964 n40005001015 +1966 n40005021007 n40005021012 +1970 n40005021005 +2020 n40005001015 +2028 n40005001015 +2037 n40005001015 +2046 n40005001015 +2048 n40005001015 +2054 n40005001015 +n40005001015 +2059 n40005001015 +n40005001015 +2067 n40005001015 +2091 n40004017005 +2095 n40005001015 +2099 n40005001015 +2103 n40005001015 +2105 n40005027005 +2119 n40005028008 +2137 n40005001015 +2140 n40005001015 +2169 n40005001015 +2172 n40005001015 +2194 n40005031009 +2228 n40005001015 +2230 n40005033008 n40005033009 +2234 n40005033006 +2236 n40005033006 +2247 n40005001015 +2254 n40005034011 +2263 n40005035004 +2272 n40005035013 +2282 n40005001015 +2285 n40005001015 +2288 n40005001015 +2309 n40005001015 +2311 n40005038004 n40005038008 +2324 n40005001015 +2336 n40005001015 +2345 n40005040003 +2350 n40005040003 +n40005001015 +2362 n40005001015 +2369 n40005001015 +2375 n40005042007 +2377 n40005001015 +n40005001015 +2380 n40005043004 n40005043009 +2394 n40005001015 +2399 n40005001015 +2405 n40005001015 +2417 n40005045005 +2423 n40005045005 +2430 n40005001015 +2436 n40005001015 +2446 n40005001015 +2453 n40005001015 +2474 n40005001015 +2479 n40005001015 +2485 n40005001015 +2492 n40005001015 +2503 n40005001015 +2506 n40005001015 +2521 n40006002011 +2526 n40004017005 +2528 n40006002011 +2559 n40006004011 +2567 n40005001015 +2569 n40005001015 +2574 n40006005008 +2584 n40006005008 +n40006005008 +2587 n40006005008 +2591 n40004017005 +2593 n40006005008 +2601 n40005001015 +2607 n40005001015 +2611 n40005001015 +2624 n40006006025 +2631 n40005001015 +2633 n40005001015 +2638 n40006007007 +2644 n40006007007 +2647 n40005001015 +2656 n40005001015 +2695 n40006009005 +2699 n40006009005 +2713 n40006009005 +2718 n40006009005 +2725 n40005001015 +2742 n40005001015 +2755 n40005001015 +2757 n40005001015 +2763 n40006016008 +2768 n40006016008 +2771 n40006016008 +2773 n40004017005 +2775 n40006016008 +2781 n40005001015 +2790 n40005001015 +2793 n40005001015 +2796 n40005001015 +2810 n40006018017 +2817 n40005001015 +2835 n40005001015 +2914 n40006024001 +2919 n40006024001 +2923 n40006024001 +2926 n40006024001 +2930 n40006024001 +2932 n40005001015 +2934 n40005001015 +2939 n40004017005 +2942 n40005001015 +2947 n40005001015 +2950 n40005001015 +2956 n40005001015 +2969 n40005001015 +2977 n40006026004 +2979 n40006026004 +2981 n40006026004 +3001 n40006027001 +3003 n40006027001 +3014 n40005001015 +n40005001015 +3021 n40006028008 +3023 n40006028008 +3025 n40006028008 +3027 n40004017005 +3048 n40006030004 +3053 n40006030004 +3065 n40006030022 +n40006030022 +3068 n40006030022 +3071 n40006030022 +3074 n40006030022 +3089 n40006030022 +3093 n40006030022 +3108 n40006030022 +3124 n40006030022 +3127 n40006030022 +3132 n40006030022 +n40006030022 +3138 n40006030022 +3143 n40006030022 +3161 n40006030022 +3164 n40006030022 +3168 n40007004005 +n40006030022 +3177 n40006030022 +3185 n40007005001 +3195 n40007005001 +n40007005001 +3206 n40006030022 +3212 n40006030022 +3221 n40007006006 n40007006014 +3228 n40007006006 n40007006014 +n40007006006 n40007006014 +3231 n40006030022 +3235 n40006030022 +3237 n40006030022 +n40006030022 +3269 n40007009006 +3274 n40007009010 +3277 n40007009006 +3283 n40006030022 +3287 n40006030022 +3309 n40006030022 +3328 n40006030022 +3342 n40007013013 +3362 n40007014008 +3372 n40006030022 +3385 n40007015004 +3392 n40006030022 +3423 n40007018003 +3429 n40007018009 +3433 n40007019002 +3440 n40007019002 +3446 n40006030022 +3486 n40007022001 +3492 n40007022001 +3499 n40007022001 +3502 n40004017005 +3506 n40004017005 +3508 n40007023013 +3512 n40007022001 +3524 n40007024003 +3550 n40007025004 n40007025008 n40007025012 +3556 n40007025016 +3558 n40007025016 +3598 n40007027004 n40007027008 n40007027012 +3603 n40007027016 +3627 n40007028006 +n40007028006 +3652 n40008002003 +3655 n40008002003 +3658 n40008002008 +n40008002008 +3661 n40008002008 +3663 n40007028006 +3666 n40007028006 +3668 n40007028006 +n40007028006 +n40008002003 +3682 n40008002003 +3684 n40008002003 +3686 n40008002003 +3688 n40008002003 +3692 n40008002003 +3709 n40008005008 +3712 n40008005008 +3723 n40008006005 +n40008004005 +3727 n40008004005 +3731 n40008008004 +3737 n40008008004 +3744 n40008008006 +3747 n40008008006 +3761 n40008009004 +3766 n40008008004 +3768 n40008009014 +3770 n40008009014 +3773 n40008009019 +3775 n40008009019 +3780 n40008009025 +3783 n40008009025 +3785 n40008010004 +3790 n40008010004 +3794 n40008010004 +3803 n40008010004 +3805 n40008010004 +3815 n40008011005 +3853 n40008013006 +3855 n40008013006 +3869 n40008014004 +3882 n40008014004 +3892 n40008014011 +3894 n40008014011 +3904 n40008014004 +3913 n40008014004 +3922 n40008017006 +3931 n40008014004 +3935 n40008018004 +3940 n40005001015 +3945 n40008019004 +3951 n40008019004 +3955 n40008019007 +3981 n40008020018 +3989 n40008021007 +3992 n40008021001 +3994 n40008021001 +4003 n40008021001 +4006 n40008021001 +4043 n40008023010 +n40008023010 +4046 n40008023010 +4048 n40008025006 +n40008023010 n40008025006 +4051 n40008022003 +4055 n40008026007 +4058 n40008022003 +n40008022003 +4073 n40008027003 +4104 n40008028015 +4111 n40008028025 +4118 n40008028015 +n40008028015 +4127 n40008029009 +4131 n40008029009 +4141 n40008030006 +4147 n40008031003 +4149 n40008022003 +4151 n40008022003 +4159 n40008022003 +4161 n40008031003 +4164 n40008031003 +4182 n40008032017 +4191 n40008033003 +4195 n40008033003 +4212 n40008034005 +4214 n40008034005 +4216 n40008034010 +4222 n40008034010 +4225 n40008034010 +4227 n40008034010 +4239 n40009002005 +4243 n40009002012 +4250 n40009002020 +4269 n40009004004 +4276 n40009003003 +4293 n40009002018 +4295 n40009002018 +4298 n40009003003 +4309 n40009006008 +4312 n40009004004 +4315 n40009006019 +n40009006019 +4321 n40009006019 +4327 n40009006019 +n40009006019 +4334 n40009008004 +4339 n40009008004 +4343 n40009008009 +4349 n40009009004 +4355 n40009009007 +4360 n40009009007 +4362 n40009009004 +4364 n40009009007 +4367 n40009009007 +n40009009007 +4383 n40009010011 n40009010013 +4392 n40009011004 +4412 n40009010017 +4425 n40009011004 +n40009011004 +4430 n40009008009 +4436 n40009010017 +n40009010017 +4447 n40009014005 +4472 n40009015009 +4491 n40009015009 +4551 n40009018006 +4554 n40009018006 +4562 n40009015005 +n40009015005 +4570 n40009018014 +4572 n40009019004 +4584 n40009020003 +4587 n40009020003 +4596 n40009020003 +4601 n40009020003 +4605 n40009020003 +4609 n40009022003 +4611 n40009022003 +4614 n40009022010 +4632 n40009023004 +4639 n40009023004 +4646 n40009023004 +n40009023013 n40009023016 +4654 n40009024007 +4656 n40009023013 n40009023016 +4663 n40009023004 +n40009023004 +4690 n40009027008 +4692 n40009027008 +n40009027014 +4698 n40009027005 +4711 n40009028009 +4713 n40009028014 +4715 n40009028014 +n40009028009 +4721 n40009028014 +4725 n40009028014 +4742 n40009030010 +n40009028009 +4748 n40009028009 +4763 n40009032007 +4775 n40009033011 +4791 n40009030010 +4804 n40009035004 +4810 n40009035004 +4816 n40009035004 +4823 n40009035004 +4826 n40009035004 +4830 n40009036004 +n40009036004 +4833 n40009036004 +4837 n40009036014 +4840 n40009035004 +4853 n40009037004 +4859 n40009038004 +4866 n40009035004 +4871 n40009035004 +4877 n40010001005 +4880 n40010001005 +4897 n40010002010 +4937 n40010004005 +4945 n40010005006 +4947 n40010005006 +4952 n40010005003 +4958 n40010005003 +4960 n40010005003 +4966 n40010006006 +4970 n40010005003 +n40010005003 +n40010005003 +4980 n40010005003 +4982 n40010005003 +4984 n40010005003 +4986 n40010005003 +4988 n40010005003 +4990 n40010005003 +4992 n40010005003 +5027 n40010005003 +n40010005003 +5035 n40010005003 +5038 n40010005003 +5040 n40010005003 +5044 n40010005003 +5062 n40010013006 +5077 n40010014002 +5081 n40010005003 +5089 n40010005003 +5096 n40010005006 +5111 n40010005003 +5121 n40010005003 +5132 n40010005003 +5137 n40010017005 +5146 n40010017005 +5154 n40010005003 +5165 n40010017005 +5168 n40010005003 +5172 n40010005003 +5181 n40010005003 +5213 n40010021012 +5216 n40010005003 +n40010005003 +5239 n40010005003 +5245 n40010005006 +5249 n40010005003 +5276 n40010025003 +5300 n40010005003 +5315 n40010005006 +5320 n40010005003 +5329 n40010005003 +n40010005003 +5336 n40010005003 +5347 n40010028013 +5349 n40010005003 +5352 n40010020011 +5357 n40010028019 +5390 n40010005003 +5436 n40010005003 +5438 n40010005006 +n40010005006 +5445 n40010005006 +n40010005006 +5451 n40010005006 +n40010005006 +5508 n40010038002 +5543 n40010033014 +5579 n40010005006 +5583 n40010042004 +5593 n40011001006 +5598 n40011001006 +5601 n40011001006 +5603 n40011001006 +5611 n40011002003 +5619 n40011002003 +5624 n40011002003 +5632 n40011002003 n40011002015 +5634 n40011004004 +5639 n40011002015 +n40011002015 +5643 n40011002015 +5645 n40011002015 +5677 n40011007006 +5683 n40011007009 +n40011007009 +5691 n40011007018 +5694 n40011007009 +n40011007009 +5699 n40011008005 +n40011007009 +5712 n40011007009 +5714 n40011007009 +5716 n40011007006 +5725 n40011010008 n40011010016 +5743 n40011007006 +5795 n40011007009 +n40011007009 +5801 n40011014007 +n40011014007 +5809 n40011007006 +5814 n40011016005 +5816 n40011016009 +5824 n40011016009 +n40011016009 +5829 n40011016017 +n40011016009 +5833 n40011016017 +5838 n40011018003 +5840 n40011018003 +5844 n40011018003 +5850 n40011019003 +5852 n40011019003 +5873 n40011007006 +n40011007006 +5886 n40011020005 +5903 n40011021015 +5912 n40011021010 n40011021012 +5914 n40011007006 +5935 n40011023003 +5944 n40011023017 +5948 n40011023014 +5953 n40011007006 +5969 n40011025007 +5973 n40011025007 +5983 n40011025011 +5990 n40011025011 +6030 n40011027031 +6034 n40011028006 n40011028008 +6045 n40011028006 n40011028008 +6052 n40011028006 n40011028008 +6056 n40011025007 +6063 n40011028006 n40011028008 +6097 n40012001015 +n40012001015 +6101 n40012001015 +6105 n40012002003 +6108 n40012001007 +6124 n40012002003 +6129 n40012003009 +6135 n40012003009 +6146 n40012003009 n40012003013 +6164 n40012002003 +6181 n40012005011 +6183 n40012001007 +6193 n40012002003 +6197 n40011027019 +6203 n40012002003 +6216 n40012001007 +6218 n40012001007 +6227 n40012010003 +6230 n40012002003 +6232 n40012002003 +6239 n40012002003 +6263 n40012011009 +6266 n40012011009 +6279 n40012001007 +6282 n40012013004 +6287 n40012013004 +6289 n40012013008 +6295 n40012014004 +6304 n40012014004 +6308 n40012015003 +6316 n40012015003 +6320 n40012015003 +6326 n40012015010 +6335 n40012017006 +6341 n40011027019 +6350 n40011027019 +6360 n40012018003 +6362 n40012018003 +6364 n40012018003 +6375 n40012020001 +6377 n40012018003 +6380 n40012020006 +6382 n40012018003 +6385 n40012018003 +6404 n40012015003 +6418 n40012023005 +6428 n40012024003 +6444 n40012015003 +6448 n40012015003 +6452 n40012025009 +6461 n40012025016 n40012025018 +6475 n40012026004 +6523 n40012029004 +6533 n40012029004 +6537 n40012029004 +6545 n40012029004 +6563 n40012015003 +6611 n40012032029 +6613 n40012024003 +6623 n40012024003 +6642 n40012034001 +6644 n40012034001 +6646 n40012034001 +6676 n40012015003 +6686 n40012036011 +6698 n40012034001 +6704 n40012034001 +6713 n40012038004 +6715 n40012038004 +6719 n40012038004 +6722 n40012015003 +6784 n40012041001 +6787 n40012041001 +6808 n40012042001 +6811 n40012042001 +6817 n40012042001 +6822 n40012038004 +6835 n40012043005 +6839 n40012043005 +6843 n40012043005 +6845 n40012043005 +6850 n40012043005 +6852 n40012043005 +6854 n40012043005 +n40012043005 +n40012044005 +6858 n40012044005 +6862 n40012043005 +6864 n40012043005 +6873 n40012043005 n40012045009 +n40012043005 n40012045009 +6908 n40012046008 n40012046011 +6910 n40012046008 n40012046011 +6915 n40012015003 +6925 n40012047007 n40012047011 +6927 n40012047007 n40012047011 +6930 n40012015003 +6933 n40012047003 +6947 n40012015003 +6955 n40012015003 +n40012048006 +6990 n40013001007 +7007 n40013001007 +7018 n40013001007 +7023 n40013001007 +n40013002016 +7029 n40013003011 +7042 n40013004015 +7055 n40013005001 +7060 n40013005001 +7064 n40013005001 +7070 n40013005001 +7075 n40013005001 +7077 n40013005001 +7089 n40013007010 +7100 n40013008001 +7116 n40013010004 +7125 n40013001007 +7144 n40013011008 +7151 n40013012003 +7158 n40013012011 +7167 n40013001007 +7169 n40013002016 +7171 n40013002016 +7173 n40013002016 +7175 n40013002016 +7177 n40013002016 +7185 n40013014005 +7210 n40013015006 +7215 n40013015006 +7218 n40013015006 +7224 n40013015006 +7228 n40013015006 +7230 n40013015006 +7232 n40011027019 +7240 n40013016005 +7246 n40013016010 +7249 n40013001007 +7257 n40013017007 n40013017009 +7259 n40013010004 +7262 n40013017007 n40013017009 +7264 n40013017007 n40013017009 +7266 n40013010004 +7269 n40013017007 n40013017009 +7285 n40013019001 +7290 n40013019012 +7324 n40013020006 +7330 n40013020006 +7340 n40013020006 +7368 n40013022025 +7400 n40013001007 +7402 n40013001007 +7409 n40013024011 +7427 n40013025010 +7434 n40013025010 +7442 n40013026005 +7449 n40013027004 +7460 n40013027009 +7467 n40013027017 +7483 n40013027006 +n40013028011 +n40013028011 +7493 n40013028011 +7496 n40013028011 +7501 n40013028011 +7512 n40013027006 +7515 n40013030014 +7520 n40013030014 +7526 n40013030014 +7531 n40013030014 +7538 n40013001007 +7540 n40013001007 +7550 n40013031016 +7566 n40013031012 +7570 n40013031012 +7572 n40013031012 +7581 n40013032021 +7588 n40013001007 +7598 n40013033014 +7622 n40013034005 +7631 n40013035007 +7643 n40013034005 +7646 n40013034005 +7656 n40013036013 +n40013034005 +7667 n40013034005 +7707 n40013039003 +7730 n40013040005 +7747 n40013041007 +7761 n40013041007 +7801 n40013044007 +7806 n40013044014 +7814 n40013044014 +7816 n40013044014 +7818 n40013044014 +7820 n40013044014 +7832 n40013045008 +7836 n40013045008 +7840 n40013045008 +n40013045008 +7844 n40013045008 +7846 n40013045008 +7856 n40013047008 +7864 n40013047008 +7867 n40013047008 +7895 n40013049010 +7903 n40013049010 +7919 n40013036013 +7922 n40013036013 +7933 n40013052008 +7960 n40013053006 +7963 n40013053006 +7968 n40013053006 +7978 n40013054005 +8026 n40013054005 +8050 n40013057007 +8070 n40014001006 +8095 n40014003003 +8102 n40014003003 +8122 n40014003003 +8124 n40014003003 +n40014003003 +8132 n40014005007 +8147 n40014006008 +8153 n40014006017 +8155 n40014006017 +8158 n40014006008 +8161 n40014006008 +8167 n40014006017 +8178 n40014009004 +8188 n40014008015 +8190 n40014009004 +n40014009004 +8204 n40014011004 +8208 n40014011011 +8213 n40014012004 +8221 n40014012004 +8224 n40014012004 +n40014012004 +8229 n40014013004 +8242 n40014013017 +8252 n40014013004 +n40014013004 +8257 n40014013004 +8261 n40014013004 +8272 n40014015007 +8283 n40014013004 +8287 n40014015021 +8291 n40014015021 +8301 n40014015021 +n40014015021 +8306 n40014015021 +8312 n40014015007 +8324 n40014015007 +8329 n40014016003 +8336 n40014016003 +8344 n40014016003 +8348 n40014016003 +8350 n40014016003 +n40014016003 +8365 n40014020003 +8367 n40014019031 +8388 n40014016003 +8396 n40014022005 +8403 n40014016003 +8407 n40014016003 +8410 n40014016003 +8416 n40014016003 +8421 n40014016003 +8433 n40014024003 +8447 n40014016003 +8450 n40014016003 +8457 n40014026003 +8464 n40014026003 +8467 n40014016003 +8472 n40014026003 +8479 n40014027005 +n40014026003 +8484 n40014026003 +8486 n40014028005 +8495 n40014028007 +8506 n40014028005 +8508 n40014029010 +8518 n40014029010 +8523 n40014029010 +8526 n40014029010 +8528 n40014029010 +n40014029010 +n40014029010 +n40014029010 +8533 n40014030011 +8539 n40014031004 +8545 n40014031004 +8550 n40014031013 +8567 n40014033001 +8571 n40014031004 +8573 n40014031004 n40014033001 +n40014031004 n40014033001 +8581 n40014035005 +8595 n40014035005 +8602 n40014035021 +8606 n40014035021 +8625 n40015001007 n40015001009 +8638 n40015002004 +8643 n40015002004 +8646 n40015001004 +8696 n40015005008 n40015005011 +8699 n40015005006 +8708 n40015001007 n40015001009 +8723 n40015007006 +8741 n40015008002 +8743 n40015008002 +8748 n40015001004 +8751 n40015001004 +8753 n40015010004 +8755 n40015010004 +8776 n40015012004 +8781 n40015001004 +8785 n40015012010 +8791 n40015001004 +8804 n40015012004 +8806 n40015012010 +8820 n40015015004 +8825 n40015001004 +8838 n40015012004 +8853 n40015017006 +8897 n40015021005 +8916 n40015022003 +8918 n40015022003 +n40015022014 +8936 n40015023010 +8942 n40015023010 +n40015021005 +8946 n40015022003 +8951 n40015021005 +8954 n40015021005 +8961 n40015024011 +8966 n40015022003 +8969 n40015022003 +8971 n40015025007 +8975 n40015021005 +9003 n40015027013 +9011 n40015028004 +9025 n40015028008 +9036 n40015029005 +9047 n40015029005 +9051 n40015029005 +9058 n40015030004 +9069 n40015030004 +9076 n40015029005 +9082 n40015031003 +9094 n40015031003 +9101 n40015032003 +9106 n40015032003 +9114 n40015032012 +9118 n40015032012 +9120 n40015032012 +9122 n40015032003 +9126 n40015032003 +9129 n40015032012 +9145 n40015033005 n40015032003 +9155 n40015033005 +9164 n40015034005 +9167 n40015035004 +9171 n40015034005 +9179 n40015034005 +n40015034005 +9182 n40015034005 +9194 n40015037003 +9203 n40015036017 +9215 n40015034005 +9218 n40015034005 +9223 n40015034005 +9229 n40016001004 n40016001006 +9234 n40016001004 n40016001006 +9245 n40015034005 +9250 n40016001004 n40016001006 +9262 n40016003009 +9270 n40016001004 n40016001006 +n40016001004 n40016001006 +9278 n40016001004 n40016001006 +9296 n40015034005 +9298 n40015034005 +9302 n40016005004 +9308 n40016005004 +9314 n40016005004 +9316 n40016005004 +9329 n40016005004 +9333 n40016005004 +9335 n40016008004 +9340 n40016008010 +9347 n40016008010 +9349 n40016008010 +9351 n40016008010 +9360 n40016008010 +9370 n40016008010 +9373 n40016008010 +9378 n40016008004 +9381 n40016008010 +9390 n40016005004 +9393 n40016008004 +n40016005004 +9411 n40016013004 +9422 n40016013004 +9450 n40016013004 +9459 n40016016003 +9472 n40016016013 +9474 n40016017004 +9480 n40016017009 +9511 n40016017004 +9521 n40016017004 +9532 n40016017009 +9544 n40016017009 +9554 n40016017004 +9559 n40016020004 +9570 n40016021004 +9582 n40016021004 +9591 n40016021004 +9596 n40016021004 +9598 n40016022005 +9603 n40016022005 +9605 n40016022005 +9616 n40016021004 +9620 n40016023010 +9626 n40016023010 +9629 n40016023010 +9649 n40016024009 +n40016024009 +9653 n40016024009 +9658 n40016024009 +9667 n40016025001 +9689 n40016026004 +9694 n40016026004 +9709 n40016027004 +9722 n40016027004 +9729 n40016024003 +9744 n40016028006 +9771 n40017001007 +9779 n40017001007 +9806 n40017003005 n40017003007 +9810 n40017004004 +9823 n40017004008 +n40017004004 +9850 n40017005011 +9860 n40017005011 +n40017004004 n40017001011 n40017001013 +9864 n40017006004 +9872 n40017006004 +9879 n40017007004 +9881 n40017007004 +n40017006004 +9885 n40017006004 +9887 n40017006004 +9892 n40017006004 +9908 n40017009010 +9910 n40017006004 +9927 n40017010005 +9940 n40017009010 +9946 n40017011005 +9949 n40017009010 +9972 n40017012021 +9984 n40017009010 +9987 n40017013004 n40017009010 +9994 n40017014008 +9997 n40017014008 +9999 n40017015003 +10004 n40017015007 +10007 n40017015007 +10010 n40017015007 +10020 n40017014008 +10027 n40017016005 +10029 n40017016005 +10031 n40017017004 +10039 n40017017007 +10044 n40017017004 +10047 n40017017004 +10049 n40017017007 +10075 n40017019004 +10086 n40017019004 +10098 n40017019006 +10101 n40017019004 +10106 n40017019004 +10110 n40017020021 +10114 n40017020021 +10134 n40017022013 +10139 n40017022019 +10145 n40017022013 +10147 n40017019004 +10162 n40017024010 +10169 n40017024012 +10172 n40017024012 +10180 n40017025011 +10204 n40017024012 +10220 n40017026009 n40017024012 +10222 n40017024012 +10225 n40017024012 +10229 n40017027015 +10232 n40017024012 +10234 n40017024012 +10238 n40017024012 +10241 n40017024012 +n40017024012 +10257 n40018001007 +10268 n40018001009 +10270 n40018001009 +10276 n40018001009 +10278 n40018001009 +10282 n40018001007 +10284 n40018001007 +10290 n40018001007 +10335 n40018006007 +10349 n40018006004 +10386 n40018001007 +10389 n40018001007 +10408 n40018001007 +n40018001007 +10422 n40018001007 +10425 n40018001007 +10439 n40018001007 +n40018001007 +10446 n40018001007 +10448 n40018001007 +10454 n40018001009 +10488 n40018012007 +10496 n40018012007 +n40018012007 +10499 n40018012012 +10503 n40018012007 +10506 n40018001009 +10509 n40018012007 +10520 n40018013017 +10544 n40018001007 +n40018001007 +10554 n40018015005 +n40018001007 +10562 n40018015020 +n40018001007 +10582 n40018015020 +10584 n40018001007 +10592 n40018015020 +n40018015020 +10602 n40018001009 +10606 n40018001007 +10617 n40018001007 +10627 n40018001009 +10643 n40018019007 +n40018019016 +10665 n40018001009 +10670 n40018021004 +10684 n40018021004 +10693 n40018022004 +10712 n40018023009 +10721 n40018023008 +10732 n40018024008 +10747 n40018024008 +10751 n40018026004 +10756 n40018026004 +n40018025009 +10762 n40018026004 +10765 n40018027004 +10776 n40018027004 +10779 n40018028004 +10794 n40018028004 +10796 n40018028004 +n40018028004 +n40018028007 +10801 n40018028007 +10803 n40018029004 +10809 n40018029004 +n40018028004 +10814 n40018029004 +10821 n40018028004 +n40018028004 +10827 n40018029004 +10829 n40018028015 +10834 n40018031004 +10840 n40018031004 +n40018031004 +10849 n40018032005 +10862 n40018032005 +10865 n40018032009 +10880 n40018034004 +10890 n40018028004 +10893 n40018024010 +10924 n40019001006 +10929 n40019001006 +10944 n40019001006 +10951 n40019003004 +10954 n40019003004 +10966 n40019001006 +10969 n40019003004 +10972 n40018035004 +10981 n40019004009 +10992 n40019005006 +11005 n40019005020 +11018 n40019003004 +11028 n40019006013 +n40019001006 +11039 n40019003004 +11050 n40019001006 +11063 n40019009005 +11082 n40019010011 n40019010014 +11095 n40019011009 +11126 n40019012030 +11135 n40019001006 +11138 n40019001006 +11148 n40019013014 +11153 n40019013014 +11167 n40019014003 +11171 n40019014003 +11176 n40019016003 +11182 n40019016003 +11184 n40019016003 +11193 n40019016003 +11203 n40019016003 +11207 n40019016003 +n40019016003 +11211 n40019016003 +11246 n40019020004 +11249 n40019020004 +11255 n40019020004 +11257 n40019020004 +n40019020004 +n40019020004 +11264 n40019020004 +11267 n40019020004 +11272 n40019020004 +n40019020004 +11278 n40019022004 +11282 n40019022004 +11284 n40019022004 +n40019022004 +11296 n40019023003 +11309 n40019023003 +11326 n40019025004 +11331 n40019025004 +11335 n40019025008 +11337 n40019026004 +11353 n40019027004 +11358 n40019026004 +11363 n40019025004 +11375 n40019028003 +11380 n40019025004 +11401 n40019028012 +11433 n40019029004 +11455 n40020001008 +11462 n40020001008 +11470 n40020001008 +11477 n40020001008 +11481 n40020001008 +11483 n40020003007 +11490 n40020001008 +11502 n40020001008 +11509 n40020001008 +11515 n40020001008 +11521 n40020001008 +n40020001008 +11526 n40020001008 +11530 n40020006007 +11535 n40020006007 +11541 n40020001008 +11560 n40020008010 +11564 n40020008010 +11567 n40020008010 +11575 n40020009003 +11585 n40020010004 +11591 n40020010004 +11600 n40020010004 +n40020010004 +11605 n40020010004 +11615 n40020011006 +11618 n40020010004 +11628 n40020011006 +11634 n40020011006 +11638 n40020013007 +11640 n40020013007 +11644 n40020013007 +11646 n40020011006 +11650 n40020011006 +11658 n40020011006 +n40020011006 +11684 n40020017004 +n40020017004 +11688 n40020017004 +11697 n40020017004 +11699 n40020017009 +n40020017004 n40020017009 +11714 n40020018012 n40020018014 +11719 n40020018012 n40020018014 +11725 n40020019005 +11727 n40020019005 +11729 n40020019005 +11734 n40020018007 +11747 n40020020005 +11749 n40020020005 +11758 n40020020005 +n40020020005 +11761 n40020017004 +11782 n40020022004 +11787 n40020021015 +11789 n40020021015 +n40020021015 +n40020021015 +11795 n40020022004 +11798 n40020021015 +11800 n40020021015 +n40020022004 +11807 n40020021015 +11824 n40020023010 +11830 n40020024004 +11841 n40020025003 +11844 n40020017009 +11869 n40020026007 +11879 n40020027002 +11891 n40020028003 +11893 n40020028003 +11895 n40020028003 +11915 n40020030004 +11919 n40020030004 +11924 n40020030004 +n40020030015 +11936 n40020030004 +11941 n40020030004 +n40020031013 +11948 n40020032004 +11954 n40020032004 +n40020030004 +11957 n40020032004 +11959 n40020030004 +11968 n40020034004 +11977 n40020030004 +11979 n40020030004 +11983 n40021001016 n40020017009 +11987 n40021001016 n40020017009 +12000 n40021001016 +12002 n40021001019 +12011 n40021001019 +12018 n40021001019 +n40021001019 +12027 n40021001019 +12036 n40021003003 +12048 n40021004010 +n40020023027 +12053 n40021005003 +12061 n40021005007 +12072 n40021006004 +12074 n40021006004 +12080 n40021006004 +12087 n40021006004 +12093 n40021006011 +12115 n40021008012 +12123 n40021009003 +12127 n40021009003 +12129 n40021009003 +12136 n40021006011 +12153 n40021010009 +12178 n40021012003 +12188 n40021012003 +12201 n40021012003 +12203 n40021013008 n40021013014 +12226 n40021012003 +12234 n40021015004 n40021015007 +12238 n40021012003 +12243 n40021015014 +12248 n40021015014 +12255 n40021015004 n40021015007 +12257 n40021012003 +12268 n40021015004 n40021015007 +12275 n40021009021 +12278 n40021016010 +12280 n40021016010 +12287 n40021016010 +12291 n40021016010 +12295 n40021016010 +12297 n40021016010 +12303 n40021016010 +12308 n40021016010 +12316 n40021016010 +12333 n40021020004 +12337 n40021020004 +12344 n40021021004 +12350 n40021021004 +12353 n40021020004 +12357 n40021020004 +12363 n40021020004 +12369 n40021020004 +n40021021025 +12372 n40021021025 +12381 n40021020004 +12385 n40021020004 +n40021020004 +12395 n40021021004 +12403 n40021023011 n40021023014 +12408 n40021021004 +12417 n40021024004 +12429 n40021023011 n40021023014 +12438 n40021024004 +12455 n40021023011 n40021023014 +12457 n40021023011 n40021023014 +12460 n40021024004 +12466 n40021023011 n40021023014 +12470 n40021023011 n40021023014 +12473 n40021023011 n40021023014 +12484 n40021023011 n40021023014 +12487 n40021023011 n40021023014 +12489 n40021023011 n40021023014 +12502 n40021027004 +12511 n40021028005 +12514 n40021028005 +12516 n40021028013 +12518 n40021028013 +12524 n40021028011 +12530 n40021028011 +12532 n40021028005 +12535 n40021028005 +12539 n40021030004 +12542 n40021030004 +12544 n40021030004 +n40021030004 +12555 n40021023011 n40021023014 +12563 n40021031016 +12588 n40021023011 n40021023014 +12600 n40021023011 n40021023014 +12605 n40021023011 n40021023014 +12609 n40021023011 n40021023014 +12619 n40021033004 +12621 n40021033004 +12626 n40021033004 +12629 n40021033004 +12633 n40021033004 +12641 n40021033004 +12648 n40021034010 +12661 n40021035004 +12664 n40021035004 +12667 n40021035004 +12669 n40021033004 +12676 n40021035004 +12681 n40021033004 +12687 n40021033004 +n40021035004 +12695 n40021038003 +12705 n40021038003 +n40021038003 +12709 n40021038003 +12714 n40021038003 +12716 n40021038003 +12721 n40021038003 +12730 n40021040005 +12734 n40021023011 n40021023014 +12738 n40021040005 +12743 n40021040005 +12760 n40021023011 n40021023014 +12779 n40021042016 +12786 n40021042004 +12797 n40021043010 +12799 n40021043015 +12815 n40021044006 +n40021044006 +12824 n40021045004 n40021045007 +12832 n40021042004 +12834 n40021045004 n40021045007 +12836 n40021045004 n40021045007 +n40021045004 n40021045007 +12844 n40021046007 +12846 n40022001004 +12854 n40022001004 +12869 n40022002006 +12873 n40022003004 +12881 n40022003008 +n40022003008 +12884 n40022002006 +12887 n40022002006 +n40022004004 +12891 n40022004008 +12895 n40022002006 +12906 n40022004008 +12912 n40022004008 +12929 n40022006003 +12941 n40022007003 +12945 n40022007003 +12953 n40022007003 +12955 n40022007003 +12971 n40022008004 +12980 n40022008004 +n40022008004 +12989 n40022010004 +12996 n40022010004 +13009 n40022011004 +n40022011004 +13017 n40022011010 +13021 n40022011004 +13025 n40022012004 +13028 n40022012004 +13040 n40022013006 +13045 n40022013006 +13069 n40022015004 +13076 n40022015004 +13080 n40022015004 +13088 n40022016005 +13090 n40022015004 n40022016005 n40022016009 +13093 n40022016011 +13101 n40022016011 +13110 n40022016011 +13115 n40022016011 +13129 n40022018004 +13136 n40022018012 +13138 n40022018012 +13150 n40022018004 +13159 n40022015004 n40022016005 n40022016009 +13162 n40022018004 +13165 n40022015004 n40022016005 n40022016009 +13176 n40022015004 n40022016005 n40022016009 +n40022015004 n40022016005 n40022016009 +13179 n40022015004 n40022016005 n40022016009 +13181 n40022015004 n40022016005 n40022016009 +13189 n40022023007 +13194 n40022023007 +13196 n40022023007 +13204 n40022024006 +13214 n40022024013 +13228 n40022025009 +13232 n40022025009 +13234 n40022025009 +13265 n40022027006 +13271 n40022029004 +13276 n40022023007 +13278 n40022023007 +13308 n40022023007 +13315 n40022031014 +13330 n40022031014 +13337 n40022033004 +13348 n40022034003 +13350 n40022029004 +13363 n40022035003 +13434 n40022041008 +13443 n40022042007 +n40022041004 +13448 n40022041008 +13458 n40022043005 +13464 n40022044004 +13470 n40022044002 +13487 n40022042007 +13491 n40022046002 +13501 n40022046009 +13514 n40023001003 +13529 n40023002008 n40023002011 +13531 n40023001006 n40023001009 +13533 n40023001006 n40023001009 +13540 n40023001006 n40023001009 +13542 n40023002008 n40023002011 +13545 n40023002008 n40023002011 +13547 n40023002008 n40023002011 +13551 n40023002008 n40023002011 +13564 n40023002008 n40023002011 +13571 n40023002008 n40023002011 +13574 n40023002008 n40023002011 +13578 n40023002008 n40023002011 +13583 n40023002008 n40023002011 +13587 n40023002008 n40023002011 +13606 n40023002008 n40023002011 +13631 n40023001006 n40023001009 +13644 n40023001006 n40023001009 +13678 n40023013004 n40023013006 +13694 n40023013004 n40023013006 +13702 n40023015003 n40023015005 +13708 n40023015003 n40023015005 +13713 n40023015015 +n40023015003 n40023015005 +13725 n40023016003 +13757 n40023017012 +13790 n40023019009 +13837 n40023022012 +13847 n40023023003 n40023023005 +13857 n40023023003 n40023023005 +13880 n40023024001 +13886 n40023024001 +13894 n40023025003 n40023025005 +13904 n40023025012 n40023025015 +13911 n40023026001 +13931 n40023027003 n40023027005 +13933 n40023027009 +13941 n40023027009 +13952 n40023027003 n40023027005 +13958 n40023027003 n40023027005 +13970 n40023029003 n40023029005 +13976 n40023029003 n40023029005 +13982 n40023029003 n40023029005 +13984 n40023029003 n40023029005 +13993 n40023029003 n40023029005 +14002 n40023029003 n40023029005 +14005 n40023029003 n40023029005 +14008 n40023030009 +14023 n40023033001 +14029 n40023033001 +14043 n40023033001 +14045 n40023033001 +14049 n40023033001 +14055 n40023033001 +14067 n40023035006 +14084 n40023033001 +14092 n40023001003 +14104 n40023037001 +14108 n40023037001 +14114 n40023001003 +n40023001003 +14131 n40023037001 +n40023037001 +14139 n40023001003 +14144 n40023037001 +14149 n40023037001 +14152 n40023001003 +14159 n40024001004 +14169 n40024001012 +14177 n40024001004 +14181 n40024001012 +14185 n40024001004 +14211 n40024003012 +n40024001004 +14229 n40024004004 +14234 n40024003012 +14246 n40024005001 +14253 n40024005001 +14255 n40024003012 +n40024003012 +14261 n40024003012 +14263 n40024003012 +14266 n40024006004 n40024006006 +14302 n40024003012 +n40024003012 +14318 n40024010004 +14320 n40024010004 +14327 n40024011003 +14370 n40024003012 +14376 n40024015005 +14403 n40024017001 +14417 n40024018002 +14435 n40024003012 +14462 n40024021004 +14488 n40024003012 +14495 n40024003012 +14502 n40024024003 n40024024005 +14508 n40024024003 n40024024005 +14514 n40024003012 +n40024004004 +14521 n40024003012 +14525 n40024023009 +14527 n40024003012 +n40024003012 +14533 n40024003012 +14542 n40024027004 +14614 n40024030017 +14631 n40024030023 +14639 n40024031004 +14657 n40024003012 +14670 n40024032011 +n40024003012 +14680 n40024003012 +14686 n40024030023 +14690 n40024004004 +14786 n40024039007 +14819 n40024003012 +14822 n40024003012 +14831 n40024003012 +14843 n40024043008 +14847 n40024043008 +14861 n40024003012 +14885 n40024045006 +14897 n40024046003 +n40024046008 +14904 n40024004004 +14912 n40024046008 +14930 n40024048006 +n40024048006 +14936 n40024048006 +14938 n40024048006 +14952 n40024050005 +14958 n40024050005 +14960 n40024050003 +14969 n40024050003 +14988 n40025001008 +15009 n40025003003 +15036 n40025005006 +15042 n40025001008 +15045 n40025001008 +15055 n40025007005 +15065 n40025008005 +15080 n40025009004 +15085 n40025008011 +15089 n40025008003 +15095 n40025008003 +15100 n40025008003 +15124 n40025011007 +15127 n40025011009 +15131 n40025010007 +15134 n40025010007 +15137 n40025010007 +15140 n40024003012 +15143 n40024003012 +15152 n40025014003 +15158 n40025014003 +15166 n40025014003 +15181 n40025014003 +15183 n40025016006 +15193 n40025016006 +15208 n40025018005 +15212 n40025018005 +15229 n40025019007 +15234 n40025020007 +15244 n40025020007 +15249 n40025020013 +n40025020013 +15254 n40025020007 +15267 n40025021007 +15272 n40025021004 +n40025021007 +15280 n40025022006 +15291 n40025022008 +n40025022008 +15296 n40025022006 +15309 n40025023007 +15314 n40025023004 +n40025023007 +15323 n40025024008 +15332 n40025024008 +15335 n40025024010 +15338 n40025024016 +15341 n40025024010 +15343 n40025024016 +15346 n40025024010 +15348 n40025024008 +n40025024008 +n40025024008 +15357 n40025024010 +n40025024010 +15362 n40025026004 +15372 n40025026009 +15374 n40025026004 +15377 n40025026004 +15379 n40025026004 +15382 n40025026004 +15394 n40025026004 +15420 n40025029003 +15427 n40025029011 +15468 n40025031005 +15481 n40025031005 +15496 n40025032015 +15515 n40025034011 +15517 n40025034005 +15521 n40025034011 +15523 n40025034019 +15530 n40025034004 +15532 n40025034011 +15534 n40025034004 +n40025034004 +15537 n40025034011 +15540 n40025034004 +15542 n40025034011 +15546 n40025034011 +15548 n40025034004 +15550 n40025034011 +15554 n40025034004 +15556 n40025034011 +15564 n40025037005 +15567 n40025037005 +15571 n40025037005 +15573 n40025037007 +15575 n40025037005 +15578 n40025037005 +15582 n40025037005 +15586 n40025037005 +15589 n40025037005 +15596 n40025037005 +15600 n40025040004 +15606 n40025040004 +15610 n40025037005 +15619 n40025037005 +15621 n40025040004 +15626 n40025041004 +n40025041010 +15636 n40025041013 +15644 n40025040004 +15647 n40025041010 +15649 n40025040004 +n40025040004 +15653 n40025041010 +15656 n40025040004 +15659 n40025041010 +15664 n40025041010 +15672 n40025041010 +15678 n40025041004 +15681 n40025041004 +15697 n40025041004 +15700 n40025040004 +15702 n40025040004 +15704 n40025040004 +15709 n40025041004 +15716 n40025041004 +15739 n40026001006 +15743 n40026001013 +15759 n40026002011 +15775 n40026003014 +15778 n40026003004 n40026003007 n40026003014 +15783 n40026003004 n40026003007 n40026003014 +15785 n40026003004 n40026003007 n40026003014 +15787 n40026003004 n40026003007 n40026003014 +15813 n40026007003 +15818 n40026007003 +15825 n40026008004 +15829 n40026008004 +15838 n40026007006 +15841 n40026007006 +15844 n40026010004 +15851 n40026008004 +15857 n40026010011 +15864 n40026008004 +15871 n40026008004 +15874 n40026010011 +15884 n40026010011 +15888 n40026010004 +15913 n40026014003 +15916 n40026014003 +15920 n40026014003 +n40026014012 +15924 n40026014012 +15938 n40026014003 +15942 n40026014003 +15953 n40026017008 +n40026017010 +15956 n40026017008 +15958 n40026017010 +15964 n40026017008 +15972 n40026017008 +15984 n40026018015 +16001 n40026019004 +16007 n40026019009 +16015 n40026019009 +16017 n40026019009 +16026 n40026022007 +16029 n40026022007 +16039 n40026019009 +16085 n40026025003 +16088 n40026025003 +16095 n40026019009 +16104 n40026026006 +16107 n40026026006 +16110 n40026026006 +16113 n40026026006 +n40026026014 +n40026026014 +16122 n40026026006 +16125 n40026026006 +n40026026006 +16128 n40026026006 +16144 n40026028005 +16149 n40026026006 +16153 n40026026006 +16168 n40026026006 +16179 n40026026006 n40026026014 +n40026026006 n40026026014 +16201 n40026031017 n40026031021 +n40025034013 +16216 n40026031005 +16222 n40026033004 +16240 n40026034004 +16251 n40026033004 +16266 n40026035004 +16281 n40026036008 +16284 n40026036006 +16287 n40026036014 +16291 n40026036006 +16293 n40026036006 +16295 n40026036006 +16303 n40026036006 +n40026036006 +16306 n40026036006 +16308 n40026036006 +16317 n40026037004 n40026037008 +16320 n40026037004 n40026037008 +16324 n40026036006 +16326 n40026036006 +16330 n40026036006 +16332 n40026036006 +16353 n40026036006 +16358 n40026036006 +16362 n40026036006 +16367 n40026040005 +16370 n40026040005 +16373 n40026040005 +16375 n40026040005 +16378 n40026040005 +16392 n40026036006 +n40026036006 +n40026036006 +16401 n40026039020 +16405 n40026036006 +16411 n40026036006 +16413 n40026036006 +16423 n40026036006 +16426 n40026036006 +n40026036006 +16433 n40026036006 +16436 n40026036006 +16441 n40026036006 +16443 n40026045005 +16446 n40026045005 +n40026045005 +16460 n40026045005 +n40026045005 n40026036006 +n40026045005 +16495 n40026047006 +16500 n40026048003 +16503 n40026048003 +16506 n40026047014 +16510 n40026048003 +16513 n40026048003 +n40026049008 +16517 n40026048003 +16527 n40026050006 +16529 n40026047014 +n40026047014 +16537 n40026047014 +16545 n40026051003 +16553 n40026051003 +16558 n40026051003 +16567 n40026051003 +16584 n40026051003 +16587 n40026052005 +n40026052005 +16593 n40026053008 +16621 n40026055009 +16626 n40026055009 +16633 n40026055007 +n40026055007 +16637 n40026055009 +16653 n40026056013 +16658 n40026055009 +16686 n40026058003 +16688 n40026058003 +16692 n40026058003 +16709 n40026059003 n40026059006 +16712 n40026059003 n40026059006 +16718 n40026060010 +16720 n40026060010 +16723 n40026059012 +n40026059012 +16733 n40026059012 +16735 n40026062004 +16741 n40026059012 +16755 n40026063007 +16761 n40026063014 +16764 n40026063003 +16781 n40026064004 +16785 n40026063007 n40026059003 n40026059006 +16796 n40026064014 +16809 n40026065003 +n40026064004 +16815 n40026065003 n40026059003 n40026059006 +n40026059003 n40026059006 +16818 n40026059003 n40026059006 +16826 n40026059003 n40026059006 +16830 n40026064004 +16832 n40026059003 n40026059006 +16838 n40026059003 n40026059006 +16843 n40026067010 +n40026068004 +16865 n40026069013 +16878 n40026069003 +16880 n40026069003 +16882 n40026069013 +16884 n40026069003 +16892 n40026071008 +16903 n40026069003 +16908 n40026069003 +16914 n40026073006 +16935 n40026073009 +n40026073009 +16938 n40026073009 +16941 n40026073009 +16955 n40026075007 +16961 n40026075004 +16964 n40026075004 +16966 n40026075004 +16985 n40027001008 n40027001011 +16988 n40027001008 n40027001011 +16990 n40027001008 n40027001011 +16992 n40027001008 n40027001011 +16999 n40027003003 +17001 n40027003003 +17003 n40027001016 +n40027003003 +17013 n40027003003 +n40027003003 +n40027003003 +17027 n40027003003 +17033 n40027003003 +17035 n40027003003 +n40027003003 +17040 n40027006003 +17054 n40027006006 +17057 n40027006003 n40027003017 +n40027006003 n40027003017 +17087 n40027009006 +17126 n40027011012 +17150 n40027011022 +17157 n40027011022 +17160 n40027012008 n40027012010 +17163 n40027011022 +17180 n40027015006 +17186 n40027015010 +17192 n40027016004 +17201 n40027015010 +17203 n40027017007 +17209 n40027017014 +17212 n40027017007 +17216 n40027012008 n40027012010 +17230 n40027019011 +17239 n40027019011 +17255 n40027020009 +17261 n40027020009 +17263 n40027021004 +17268 n40027020009 +17273 n40027021004 +17286 n40027022004 +17289 n40027022008 +17293 n40027022008 +17300 n40027022008 +17305 n40027020009 +n40027022008 +17310 n40027024004 +17313 n40027024004 +17318 n40027024004 +17326 n40027024004 +17328 n40027024004 +17336 n40027025005 +17352 n40027024004 +17359 n40027024004 +n40027024004 +17362 n40027026008 +17368 n40027027003 +17381 n40027027003 +17385 n40027027003 +17388 n40027027003 +17392 n40027027003 +17404 n40027027003 +17407 n40027027003 +17409 n40027027003 +n40027029025 +17415 n40027027003 +17418 n40027027003 +17422 n40027027003 +17429 n40027027003 +17431 n40027027003 +17436 n40027027003 +17442 n40027027003 +17446 n40027027008 +17448 n40027027003 +n40027027003 +17455 n40027027003 +17457 n40027032004 +17462 n40027027003 +17465 n40027033004 +17472 n40027027003 +17474 n40027027008 +17478 n40027034004 +17480 n40027027008 +17482 n40027027008 +n40027027008 +17485 n40027027003 +17487 n40027027003 +17491 n40027027003 +17494 n40027027003 +n40027027003 +17499 n40027027003 +17507 n40027037008 +17533 n40027039003 +17538 n40027039003 +17540 n40027027008 +17547 n40027027008 +n40027040004 +17551 n40027040004 +17556 n40027040004 +17563 n40027041003 +17571 n40027027008 +17573 n40027027008 +17575 n40027027008 +17578 n40027027008 +n40027027008 +17585 n40027041003 n40027041008 n40027041010 +17588 n40027027008 +17592 n40027043004 +17595 n40027043004 +17598 n40027027008 +17602 n40027027008 +17610 n40027044006 +17638 n40027046008 +17642 n40027046012 +17658 n40027047001 +17669 n40027048004 +17671 n40027048004 +17674 n40027048004 +17677 n40027048004 +17685 n40027048004 +n40027049003 n40027048004 +17690 n40027049009 +17696 n40027050003 +17731 n40027052010 +17735 n40027052010 +17743 n40027052010 +17749 n40027052010 +17761 n40027054003 n40027054008 +17769 n40027054003 n40027054008 +17782 n40027055004 +17790 n40027055004 +17829 n40027057005 +17841 n40027058007 +17843 n40027059006 +17854 n40027059006 +17862 n40027059006 +17867 n40027059006 +17874 n40027059006 +17905 n40027062011 n40027062014 +17907 n40027062011 n40027062014 +17914 n40027063007 +17918 n40027063007 +17920 n40027062016 +17930 n40027064014 +17936 n40027064014 +17939 n40027063007 +17955 n40027062011 n40027062014 +17957 n40027062011 n40027062014 +n40027062011 n40027062014 +17960 n40027062011 n40027062014 +17963 n40027062011 n40027062014 +17967 n40027062011 n40027062014 +17989 n40028001010 n40028001016 +18000 n40028002006 +18004 n40028002006 +18009 n40028002006 +18035 n40028004008 +18039 n40028005004 +18049 n40028005004 +18053 n40028005014 +n40028005007 +18056 n40028005014 +18059 n40028005014 +18061 n40028005014 +n40028005007 +n40028005007 +18067 n40028005014 +18070 n40028005007 +n40028005007 +18076 n40028005014 +18081 n40028007006 +n40028005014 +18089 n40028007006 +n40028005007 +n40028005004 +18094 n40028005007 +18104 n40028005007 +n40028005007 +18114 n40028009003 +n40028005007 +18118 n40028005007 +18124 n40028005007 +18132 n40028005007 +n40028005007 +n40028005007 +18139 n40028010011 +18145 n40028010011 +18153 n40028011005 +18164 n40028011014 +18170 n40028011014 +18173 n40028011014 +18176 n40028011014 +n40028012013 +18183 n40028013005 +18200 n40028011014 n40028012005 +18203 n40028012013 +18207 n40028012013 +18236 n40028016004 +18238 n40028016004 +18243 n40028018004 +18248 n40028018004 +18260 n40028016004 +n40028016004 +18265 n40028016004 +18279 n40028016004 +18284 n40028018004 +18287 n40028016004 +18308 n41001002009 n41001002017 n41001003001 +18344 n41001004002 +18348 n41001004002 +18367 n41001005008 n41001005011 +18374 n41001005008 n41001005011 +18382 n41001006004 +18393 n41001006004 +18399 n41001006004 +n41001006004 +18409 n41001006004 +18411 n41001006004 +n41001006004 +18441 n41001009008 +18449 n41001009008 +18453 n41001009008 +18480 n41001011002 +18491 n41001009008 +18497 n41001009008 +18502 n41001009008 +18523 n41001014009 +18529 n41001014009 +18547 n41001014009 +18553 n41001014009 +18565 n41001016009 n41001016011 +18572 n41001016009 n41001016011 +18576 n41001017005 +18583 n41001016009 n41001016011 +18586 n41001016009 n41001016011 +18589 n41001017005 +18591 n41001017005 +18611 n41001017005 +18614 n41001019005 n41001019010 +18625 n41001019005 n41001019010 +18629 n41001017005 n41001016009 n41001016011 n41001019005 n41001019010 +18636 n41001017005 +18640 n41001017005 +18648 n41001017005 +n41001017005 +18671 n41001023010 +n41001023010 +18679 n41001024006 +n41001024006 +18682 n41001023010 +18685 n41001024006 +18695 n41001023010 +18697 n41001023010 +18705 n41001026005 +18708 n41001026005 +18718 n41001027006 +18720 n41001027003 +18733 n41001025005 +18735 n41001027017 +18755 n41001025005 n41001016009 n41001016011 n41001019005 n41001019010 +n41001025005 n41001016009 n41001016011 n41001019005 n41001019010 +18772 n41001030003 +18775 n41001016009 n41001016011 n41001019005 n41001019010 +18780 n41001025005 +n41001025005 +18783 n41001025005 +18792 n41001030003 +18821 n41001025005 +18824 n41001034003 +18830 n41001025005 +18833 n41001025005 +18838 n41001034017 +18844 n41001025005 +n41001025005 +18847 n41001025005 +18852 n41001025005 +18862 n41001036004 n41001036006 +18865 n41001036004 n41001036006 +18872 n41001025005 +18874 n41001025005 n41001036004 n41001036006 +18878 n41001038009 +18883 n41001025005 +18887 n41001025005 +18889 n41001025005 +n41001025005 +18902 n41001025005 +18908 n41001040005 +18911 n41001040005 +n41001040005 +18916 n41001025005 +n41001025005 +18919 n41001025005 +18921 n41001025005 +n41001025005 +18926 n41001025005 +18928 n41001025005 +18930 n41001025005 +n41001040005 +18940 n41001040005 +18942 n41001025005 +18945 n41001025005 +18948 n41001025005 +18950 n41001040005 +18953 n41001040005 +18955 n41001040005 +18957 n41001040005 +18961 n41001040005 +18974 n41001040005 +18976 n41001040005 +18979 n41001040005 +18989 n41001025005 +18995 n41001025005 +19002 n41001025005 +19008 n41002001011 +19012 n41001025005 +19025 n41001025005 +19035 n41002003006 +19050 n41001025005 +19063 n41002005004 +19081 n41002006003 +19083 n41002006003 +19092 n41002005004 +19095 n41002007006 +19106 n41002008005 +19112 n41002006003 +19119 n41002006003 +19136 n41002009006 +19138 n41002009006 +19143 n41002009006 +19146 n41002006003 +19154 n41002010008 +19159 n41002008005 +19163 n41002008005 +n41002010018 +n41002010018 +19170 n41002010018 +19176 n41002010018 +19179 n41002010018 +19182 n41002010018 +19189 n41002012013 +19192 n41002012013 +19196 n41002012013 +19198 n41002008005 +19211 n41002008005 +19214 n41002008005 +n41002008005 +19225 n41002008005 +19227 n41002014004 +19230 n41002014004 +n41002014004 +19254 n41002015011 n41002015013 +19257 n41002015011 n41002015013 +19264 n41002016003 +19266 n41002015016 +19282 n41002015016 +19284 n41002017004 +19300 n41002017004 +n41002017004 +19354 n41002019009 +19357 n41002019009 +19363 n41002019009 +n41002019009 +19376 n41002019009 +19450 n41002023013 +n41002023013 +19459 n41002017004 +19461 n41002023013 +19468 n41002017004 +19471 n41002024003 +19477 n41002025008 +19486 n41002025008 +19500 n41002025008 +19510 n41002025008 +19517 n41002017004 +19543 n41002017004 +19552 n41003001009 +19556 n41002024003 +19561 n41002017004 +19564 n41002024003 +19567 n41002017004 +19574 n41003003004 +n41003003004 +19580 n41002017004 +19597 n41002017004 +19601 n41002017004 +19608 n41002017004 +19611 n41003005015 +19615 n41003005015 +19622 n41003006004 +19635 n41003006004 n41003006008 +19676 n41003008017 +19678 n41003007003 +19683 n41003007003 +19696 n41003009012 +19700 n41003007003 +19702 n41003010011 +19717 n41003011003 +19721 n41003011003 +n41003011003 +19732 n41003007003 +19738 n41003011003 +19740 n41003007003 +19745 n41003007003 +19750 n41003013009 +19754 n41003007003 +19757 n41003014003 +19762 n41003007003 +19764 n41003014003 +19766 n41003014003 +19768 n41003014003 +19772 n41003007003 +19776 n41003007003 +19793 n41003007003 +19830 n41003007003 +19844 n41003007003 n41003016004 +19846 n41003021003 +19851 n41003021003 +19854 n41003021003 +19856 n41003007003 +19863 n41003022003 +19867 n41003007003 +19875 n41003007003 +19879 n41003007003 +19883 n41003007003 +19889 n41003023010 +19898 n41003024011 +19913 n41003025010 +19922 n41003026004 +19924 n41003026004 +n41003026004 +19928 n41003026004 +19938 n41003027004 +19942 n41003027004 +19948 n41003027004 +19954 n41003027004 +19956 n41003007003 +19972 n41003028008 +19990 n41003029004 +19994 n41003022003 +19997 n41003007003 +20009 n41003031004 n41003031008 +n41003031004 n41003031008 +20013 n41003031004 n41003031008 +20023 n41003007003 +20039 n41003007003 +20041 n41003007003 +20051 n41003007003 +20057 n41003007003 +n41003033003 +20083 n41003007003 +n41003007003 +20098 n41003007003 +20115 n41003007003 +20121 n41003007003 +20127 n41004001026 +n41004001026 +20132 n41004003005 +20137 n41004003005 +20149 n41004004015 +20159 n41004005002 +20164 n41004005002 +20168 n41004005002 +20176 n41004005002 +20181 n41004005002 +20183 n41004005002 +20195 n41004007010 +20200 n41004007002 +20210 n41004008002 +20212 n41004008002 +20214 n41004008002 +20216 n41004008002 +20226 n41003007003 +20230 n41004009003 +20234 n41003007003 +20248 n41003007003 +20268 n41004011015 +n41004011015 +20272 n41004011015 +20274 n41004011015 +n41004011015 +20278 n41004011015 +20281 n41004011015 +20286 n41003007003 +20289 n41004010008 n41004010013 +20298 n41004010008 n41004010013 +20317 n41004015001 +20323 n41004015018 +20327 n41004015022 +20341 n41004016002 +20351 n41004016002 +20357 n41004016002 +20367 n41004016002 +20398 n41004019003 n41004019008 n41004019016 +20404 n41004019020 +20420 n41004020002 +20422 n41004020002 +20432 n41003007003 +20443 n41004021008 +20462 n41004022005 +20468 n41004022012 +20475 n41004023002 +n41004023002 +20478 n41003007003 +20480 n41004010008 n41004010013 +20482 n41004010008 n41004010013 +20486 n41004010008 n41004010013 +20503 n41004025009 +20508 n41003007003 +20524 n41004026010 +20526 n41004026010 +20560 n41004026010 +20568 n41003007003 +20570 n41003007003 n41004010008 n41004010013 +20580 n41003007003 n41004010008 n41004010013 +20586 n41004031002 +20601 n41004031002 +n41004031002 +20604 n41004031002 +20610 n41004031002 +20619 n41004032022 +20628 n41003007003 +20633 n41004001026 +n41004001026 +20639 n41003007003 +20647 n41003007003 +20650 n41003007003 +20658 n41003007003 n41004034012 +20663 n41004034012 +20666 n41004034012 +20669 n41003007003 +20705 n41003007003 +20707 n41004034012 +20710 n41004034012 +20717 n41004038017 n41004034012 +20719 n41003007003 +n41003007003 +20724 n41003007003 +20727 n41004039009 +n41004039009 +20738 n41003007003 +20742 n41004034012 +20749 n41004034012 +20753 n41004034012 +20770 n41003007003 n41004034012 +20811 n41005003012 +20834 n41005004020 +20848 n41005002013 +n41005002013 +20851 n41005002013 +20855 n41005002013 +20860 n41005002013 +20862 n41005002013 +20865 n41005002015 +20868 n41005002015 +20879 n41005002015 +20885 n41005007010 +20887 n41005006004 +20893 n41005008006 +20898 n41005006004 +20904 n41005002015 +20911 n41005013007 +20913 n41005002015 +20919 n41005006004 +20932 n41005011007 +20934 n41005013007 +20936 n41005013007 +n41005006004 +20945 n41005013007 +20947 n41005006004 +20950 n41005013007 +20972 n41005013017 +20982 n41005014003 +21005 n41005002013 +21007 n41005015009 +21024 n41005015009 +21047 n41005015009 +21051 n41005018010 +21054 n41005015005 +21057 n41005015005 +21059 n41005018010 +21068 n41005018010 +21076 n41005019021 +21079 n41005018010 +21081 n41005018010 +n41005018010 +21111 n41005021004 +21123 n41005022003 +21125 n41005022003 +21131 n41005022003 +21134 n41005022003 +21142 n41005021004 +n41005021004 +21148 n41005023008 +21150 n41005023008 +21152 n41005021004 +21161 n41005024008 +21165 n41005025002 +21173 n41005025002 +21178 n41005025002 +21185 n41005025002 +21191 n41005025002 +n41005025002 +21197 n41005025002 +21202 n41005025002 +21207 n41005025002 +21210 n41005025002 +21215 n41005025002 +21225 n41005025002 +21229 n41005025002 +21237 n41005030004 +21245 n41005030004 +21261 n41005030004 +21267 n41005030004 +21272 n41005030004 +n41005030004 +21280 n41005033003 +21282 n41005033003 +n41005033003 +21289 n41005033003 +21292 n41005033003 +21307 n41005034005 +21311 n41005034005 +21332 n41005035007 +21338 n41005036003 +21346 n41005036010 +21348 n41005036010 +21351 n41005036003 +21368 n41005036003 n41005037011 n41005037013 n41005037015 n41005036010 +21375 n41005036003 +21383 n41005036003 +n41005036003 +21395 n41005039010 +21401 n41005036003 +21416 n41005036003 +21422 n41005036003 +21427 n41005036003 +21430 n41005041009 +21437 n41005036003 +n41005041015 +21445 n41005042005 +21447 n41005042005 +21451 n41005040010 n41005040015 n41005040017 +21456 n41005036003 +21464 n41005036003 +21469 n41005036003 +21472 n41005036003 +21486 n41005036003 +n41005036003 +21494 n41006002011 +21496 n41006002011 +21505 n41006002020 +21544 n41006002011 +21575 n41006004005 +21577 n41006004005 +21584 n41006004005 +21587 n41006004005 +21589 n41006004005 +21595 n41006004005 +21599 n41006004005 +21601 n41006004005 +21605 n41006004005 +21607 n41006004005 +21611 n41006004005 +21619 n41006004005 +21623 n41006007004 +21640 n41006007004 +21644 n41006007004 +21648 n41006004005 +21652 n41006007004 +21656 n41006007004 +21659 n41006007004 +21669 n41006011004 +21671 n41006007004 +21673 n41006007004 +21685 n41006007004 +n41006007004 +21692 n41006007004 +21694 n41006007004 +21699 n41006007004 +21716 n41006014015 +21733 n41006004005 +21744 n41006016004 +21758 n41006017004 +21763 n41006017004 +21777 n41006017004 +21788 n41006018006 +21800 n41006019003 +21802 n41006019003 +21805 n41006019003 +21812 n41006020003 +21819 n41006020003 +21822 n41006020003 +21825 n41006020003 +21829 n41006020003 +21860 n41006022004 +n41006022004 +21866 n41006021013 n41006021017 n41006021020 +21873 n41006022021 +21877 n41006022021 +21882 n41006022018 +21887 n41006022021 +n41006022018 +21896 n41006022021 +n41006022021 +21902 n41006022021 +21910 n41006024014 +21912 n41006022021 +21919 n41006022021 +n41006022021 +n41006022021 +21924 n41006025008 +21935 n41006026005 +21943 n41006021013 n41006021017 n41006021020 +21946 n41006026005 +21950 n41006027005 +21955 n41006027006 +21960 n41006027006 +21967 n41006027006 +21974 n41006027006 +21987 n41006029004 +21993 n41006029004 +21998 n41006029004 +22010 n41006030004 +22014 n41006030004 +22017 n41006030004 +22019 n41006030007 +22030 n41006030004 +22042 n41006030007 n41006030004 +n41006030007 n41006030004 +22045 n41006030007 n41006030004 +22067 n41006033007 +22070 n41006033007 +22073 n41006030007 +n41006030007 +22078 n41006030007 +22082 n41006034005 +22086 n41006034013 +22089 n41006030007 +n41006030007 +22098 n41006035009 +22113 n41006030007 +22116 n41006034005 +22123 n41006034005 +22126 n41006034005 +22129 n41006030007 +22135 n41006034005 +22137 n41006035009 +22139 n41006035009 +n41006035009 +22145 n41006035009 +22147 n41006034005 +22154 n41006035009 +n41006035009 +n41006035009 +22158 n41006035009 +n41006035009 +22165 n41006030007 +22176 n41006034005 +22185 n41006030007 +22193 n41006030007 +22197 n41006030007 +22199 n41006030007 +22203 n41006030007 +22207 n41006041022 +22213 n41006030007 +22219 n41006042003 +22221 n41006041022 +22240 n41006030007 +22249 n41006045005 +22261 n41006030007 +22263 n41006030007 +22267 n41006030007 +22285 n41006030007 +22290 n41006045005 +22302 n41006030007 +22305 n41006030007 +22310 n41006030007 +n41006030007 +22315 n41006045005 +22324 n41006030007 +22326 n41006045005 +22332 n41006050001 +22340 n41006030007 +22342 n41006045005 +22346 n41006045005 +22348 n41006030007 +22364 n41006045005 +22367 n41006045005 +22373 n41006052011 +22378 n41006030007 n41006045005 +22382 n41006030007 n41006045005 +22386 n41006030007 n41006045005 +22413 n41006030007 +22417 n41006030007 +22442 n41006056018 +22459 n41007001006 n41007001008 +22463 n41007001006 n41007001008 +22474 n41007002003 +22487 n41007003003 n41007003007 +22492 n41007003003 n41007003007 +22502 n41007003003 n41007003007 +22504 n41007003003 n41007003007 +22510 n41007003003 n41007003007 +n41007003003 n41007003007 +22541 n41007005014 +22556 n41007006021 n41007006027 n41007007003 +22575 n41007006017 +22577 n41007006017 +22581 n41007006011 +22586 n41007006011 +22592 n41006030007 +22595 n41007005005 n41007005008 +22604 n41007005005 n41007005008 +22643 n41007011008 n41007011011 +22645 n41007005005 n41007005008 +22654 n41007005005 n41007005008 +22663 n41007005005 n41007005008 +22668 n41007005005 n41007005008 +22670 n41006030007 +22674 n41006030007 +22680 n41007014005 +22686 n41007015005 +22691 n41007015005 +22706 n41006030007 +22720 n41006030007 +22728 n41007017012 +22740 n41007018015 +22743 n41007018015 +22756 n41007018015 +n41006030007 +22762 n41006030007 +22805 n41007023004 +22810 n41006030007 +n41006030007 +22817 n41006030007 +22822 n41006030007 +22825 n41006030007 +n41006030007 +22829 n41007025004 +22840 n41007025004 +22855 n41007026003 +22860 n41006030007 +22866 n41006030007 +22868 n41007026003 +22890 n41007026003 +22907 n41006030007 +22913 n41007026003 +22922 n41007026003 +22927 n41007026003 +22940 n41006030007 +22945 n41006030007 +22968 n41006030007 +22973 n41006030007 +22980 n41006030007 +22989 n41006030007 +n41006030007 +22995 n41006030007 +22999 n41006030007 +23001 n41006030007 +23021 n41007032004 +23024 n41006030007 +23032 n41006030007 +23039 n41007033006 +n41007033006 +23043 n41006030007 +23045 n41006030007 +23062 n41008001007 +23064 n41008001007 +n41006030007 +23068 n41006030007 +23070 n41006030007 +23078 n41008002004 +23082 n41008002004 +23084 n41008002004 +23087 n41006030007 +23093 n41008002004 +23115 n41008004011 +23120 n41006030007 +23124 n41008004005 +23130 n41006030007 +23133 n41008006004 +23138 n41006030007 +23142 n41006030007 +n41006030007 +23145 n41006030007 +23150 n41008006019 +23152 n41008006019 +23156 n41008006019 +23160 n41006030007 +23162 n41006030007 +23165 n41008006019 +23167 n41008006026 +23169 n41008006026 +23171 n41008006019 +23177 n41008006026 +23181 n41006030007 +23185 n41006030007 +23193 n41006030007 +23203 n41008011004 +n41008011004 +23206 n41008011004 +23213 n41008011004 +23216 n41006030007 +23220 n41006030007 +23228 n41006030007 +23237 n41006030007 +23240 n41006030007 +n41006030007 +23246 n41008010009 +n41008010009 +23255 n41008010009 +23262 n41006030007 +23264 n41006030007 +n41008010009 +n41008010009 +23277 n41008010009 +23283 n41008010009 +23285 n41006030007 +n41006030007 +23289 n41008010009 +23293 n41008010009 +23295 n41008010009 +23297 n41008010009 +n41008017018 +n41008010009 +23304 n41008010009 +23306 n41008010009 +23309 n41008010009 +23311 n41008010009 +23314 n41008010009 +23319 n41006030007 +23327 n41008010009 +n41008010009 +23341 n41008010009 +23343 n41008010009 +23346 n41006030007 +23349 n41008010009 +23351 n41006030007 n41008010009 +23363 n41006030007 +23365 n41006030007 +23370 n41006030007 +23376 n41006030007 +23381 n41006030007 +23385 n41006030007 +23389 n41008023006 +23391 n41008023006 +n41008023006 +n41008023006 +23400 n41008023006 +23403 n41006030007 +23411 n41008023006 +23413 n41008023006 +23415 n41008023006 +23419 n41006030007 +23424 n41006030007 +23429 n41008023006 +23448 n41008027004 +23452 n41008027004 +23464 n41008027021 +23488 n41008029013 +23498 n41008027004 +23502 n41008027021 +23506 n41008027004 +n41008027004 +23518 n41008031008 +23529 n41008031008 +23534 n41008031008 +23539 n41008027004 +23543 n41008032009 +23546 n41008032009 +23550 n41008027004 +23552 n41008027004 +23559 n41008027004 +n41008033016 +23566 n41008033016 +23575 n41008027004 +23582 n41008027004 +23589 n41008034012 +n41008034012 +23593 n41008034012 +23598 n41008034012 +23607 n41008035001 +23628 n41008036004 +23633 n41008036004 +23670 n41008038020 +23683 n41008027004 +23686 n41008027004 +23701 n41009001009 +23724 n41009002007 +23733 n41009002007 +23741 n41009003003 +23752 n41009003010 +23760 n41009004004 n41009004006 +n41009004004 n41009004006 +23765 n41009005004 +23778 n41009005004 n41009002012 n41009002014 +23791 n41009005004 +23793 n41009005004 +23796 n41009005004 n41009002012 n41009002014 +23800 n41009007003 +23815 n41009005004 n41009002012 n41009002014 +23819 n41009005004 n41009002012 n41009002014 +23822 n41009005004 n41009002012 n41009002014 +23835 n41009008009 +23840 n41009005004 n41009002012 n41009002014 +n41009005004 n41009002012 n41009002014 +23855 n41009005004 n41009002012 n41009002014 +23858 n41009005004 n41009002012 n41009002014 +23866 n41009005004 n41009002012 n41009002014 +23868 n41009005004 n41009002012 n41009002014 +23884 n41009012005 +23890 n41009012021 n41009012023 +23898 n41009012016 +23900 n41009012016 +23902 n41009008009 +23918 n41009005004 n41009002012 n41009002014 n41009008009 +23922 n41009008009 n41009005004 n41009002012 n41009002014 +23937 n41009015005 +23941 n41009015005 +n41009015005 +23945 n41009008009 +23948 n41009015005 +23959 n41009017004 +23965 n41009017011 +23972 n41009017016 +n41009017016 +23976 n41009017011 +23978 n41009017011 +23982 n41009017011 +23984 n41009017004 +23990 n41009018019 +23993 n41009018019 +23996 n41009008009 +23998 n41009008009 +24006 n41009008009 +24009 n41009008009 +24011 n41009019007 +24016 n41009017007 +24021 n41009020010 +24029 n41009017011 +24033 n41009017011 +n41009017011 +24036 n41009008009 +24058 n41009020010 +24063 n41009020010 +24068 n41009008009 +n41009008009 +24071 n41009008009 +24081 n41009023003 +24087 n41009024004 +24093 n41009024004 +n41009023003 +24101 n41009025004 +24110 n41009025004 +24120 n41009025019 +24125 n41009025019 +24129 n41009025010 +24132 n41009025010 +n41009025010 +24135 n41009024006 +24143 n41009024006 +24147 n41009027003 +24154 n41009024006 +24171 n41009028007 +24174 n41009027003 +24182 n41009029006 +24188 n41009027003 n41009028007 +n41009027003 n41009028007 +24195 n41009027003 +24200 n41009027003 +24205 n41009027003 +24217 n41009031017 +24220 n41009031011 +24224 n41009031011 +24231 n41009031004 +24233 n41009031004 +24235 n41009027003 n41009031004 +24242 n41009027003 +n41009027003 +24249 n41009031004 +24256 n41009031004 +24263 n41009027003 +n41009027003 +24268 n41009027003 +24274 n41009035010 +n41009035010 +24282 n41009027003 +24284 n41009027003 +24290 n41009027003 +24292 n41009027003 +24317 n41009007008 +24324 n41009035005 +24337 n41009035005 +24348 n41009035005 +24361 n41009039011 +24363 n41009039011 +24385 n41009035005 +24387 n41009039003 +24392 n41009041011 +24405 n41009042007 +24419 n41009042004 +24430 n41009035005 +24444 n41009035005 +n41009035005 +24461 n41009035005 +24475 n41009035005 +n41009035005 +24487 n41009035005 +24502 n41009047004 +n41009047004 +24534 n41009035005 +n41009035005 +24540 n41009035005 +24545 n41009039003 +n41009039003 +24564 n41009039003 +24566 n41009039003 +24577 n41010002008 +24582 n41009039003 +24596 n41010002008 +24598 n41010002008 +24608 n41010004005 +24620 n41009047019 +24641 n41010008004 +24666 n41010005003 +24675 n41010011004 +24683 n41010011008 +24689 n41010011008 +24696 n41010005003 +24703 n41010014004 +24708 n41010014004 +24710 n41010013010 +24717 n41010013010 +24728 n41010014004 +24746 n41010014004 +24748 n41010014004 +n41010014004 +24760 n41010017007 +24762 n41010017007 +24769 n41010017007 +24773 n41010017007 +24781 n41010017007 +24792 n41010017007 +24817 n41010017007 +24824 n41010021003 +24829 n41010021003 +24834 n41010017007 +24836 n41010017007 +n41010017007 +24839 n41010017007 +24843 n41010017007 +24848 n41010017007 +n41010017007 +24853 n41010017007 +24858 n41010017007 +24860 n41010017007 +n41010017007 +24865 n41010023004 +24896 n41010024011 +24930 n41010024003 +24936 n41010026009 +n41010027004 +24958 n41010028004 +24960 n41010027004 +24965 n41010024003 +24971 n41010029003 +24998 n41010029009 +25023 n41010030026 +25036 n41010032014 n41010024003 +25040 n41010032014 n41010024003 +25050 n41010024003 +25056 n41010032014 +25060 n41010032014 +25062 n41010032014 +25066 n41010032030 +25068 n41010032025 +n41010032014 n41010032025 +25084 n41010033013 n41010033016 +25088 n41010033013 n41010033016 +25093 n41010033025 +25096 n41010033025 +25099 n41010033025 +25102 n41010033025 +25107 n41010033008 +25117 n41010035004 n41010035006 +25120 n41010035004 n41010035006 +25124 n41010035004 n41010035006 +25126 n41010035012 +25132 n41010035004 n41010035006 +25141 n41010032014 +25152 n41010035004 n41010035006 +25163 n41010035004 n41010035006 +25165 n41010035004 n41010035006 +n41010035004 n41010035006 +n41010035004 n41010035006 +25179 n41010035004 n41010035006 +25184 n41010035004 n41010035006 +25195 n41010035004 n41010035006 +25202 n41010035004 n41010035006 +25218 n41010040003 +25220 n41010041004 +25224 n41010041004 +25230 n41010042005 +25236 n41010032025 +25240 n41010042011 +25262 n41010043008 +25274 n41010044002 +25287 n41010045004 +25289 n41010045004 +25291 n41010045004 +25299 n41010042005 n41010032025 +25325 n41010046018 +25330 n41010042005 +n41010046018 +n41010046018 +25334 n41010046018 +25338 n41010047012 +25345 n41010046018 +25353 n41010048012 +25356 n41010049004 +25360 n41010046012 +25363 n41010046012 +25366 n41010046012 +25368 n41010049011 +n41010049011 +n41010049004 +25374 n41010049011 +25378 n41010049011 +25384 n41010051005 +25391 n41010051005 +n41010049011 +25400 n41010051013 +25406 n41010051013 +25414 n41010051013 +25416 n41010051013 +25423 n41010052003 n41010046012 +25435 n41010052003 +25441 n41010052003 +25443 n41011001016 +25452 n41011001016 +25455 n41011001016 +25464 n41011001016 +25467 n41011001016 +25474 n41011001016 +25476 n41011001016 +25485 n41011003011 +25489 n41011001016 +25491 n41011001016 +25501 n41011001016 +25511 n41011001016 +n41011001016 +25524 n41011005002 +25527 n41011001016 +25534 n41011001016 +25540 n41011007007 +25555 n41011008010 +25569 n41011007007 +25575 n41011010004 +25586 n41011007007 +25598 n41011007007 +25600 n41011007007 +25613 n41011007007 +25615 n41011007007 +25621 n41011007007 +25625 n41011007007 +25629 n41011007007 +25633 n41011007007 +25644 n41011007007 +n41011007007 +25662 n41011007007 n41011014017 +25666 n41011007007 +25670 n41011007007 +n41011007007 +25692 n41011007007 +25695 n41011007007 +25704 n41011007007 +25706 n41011007007 +25709 n41011017012 n41011017020 +25734 n41011018004 n41011018007 +25737 n41011018004 n41011018007 +25739 n41011018004 n41011018007 +25754 n41011007007 n41011014017 +25759 n41011007007 n41011014017 +25761 n41011007007 n41011014017 +25768 n41011021004 +25774 n41011021007 +25778 n41011021007 +25781 n41011022004 +25786 n41011014017 +25790 n41011022004 +25799 n41011023009 +25801 n41011023009 +25807 n41011023005 +25813 n41011023005 +25816 n41011023005 +25818 n41011023028 +25822 n41011022004 +25826 n41011014017 +25828 n41011014017 +n41011014017 +25831 n41011014017 +25833 n41011024007 +25837 n41011014017 +n41011014017 +n41011014017 +25842 n41011014017 +25860 n41011022004 n41011014017 +25882 n41011027016 n41011027019 n41011027022 +25888 n41011022004 +25898 n41011022004 +25904 n41011029003 +25909 n41011027016 n41011027019 n41011027022 +25912 n41011029003 +25918 n41011029003 +25929 n41011027016 n41011027019 n41011027022 +25932 n41011027016 n41011027019 n41011027022 +25935 n41011027016 n41011027019 n41011027022 +25937 n41011027016 n41011027019 n41011027022 +25940 n41011029003 +25945 n41011027016 n41011027019 n41011027022 +25948 n41011027016 n41011027019 n41011027022 +25951 n41011027016 n41011027019 n41011027022 +25962 n41011032012 +25964 n41011027016 n41011027019 n41011027022 +25967 n41011027016 n41011027019 n41011027022 +25969 n41011027016 n41011027019 n41011027022 +25983 n41011033010 +25985 n41011033010 +25989 n41011033010 +25994 n41012001008 +25997 n41012001008 +26000 n41012001008 +26003 n41012001008 +26007 n41012001008 +26009 n41012001008 +26020 n41012002008 +26027 n41012002012 +26029 n41012002012 +26031 n41012002012 +26035 n41012001008 +26041 n41012002012 +26043 n41012002012 +26046 n41012001008 +26048 n41012002012 +26054 n41012002012 +26057 n41012002012 +26059 n41012001008 +26063 n41012001008 +26068 n41012001008 +26070 n41012002012 +26086 n41012007004 +n41012007004 +26095 n41012007004 +n41012007004 +26099 n41012007004 +26110 n41012009004 +26112 n41012009004 +26116 n41012009004 +26124 n41011027016 n41011027019 n41011027022 +26140 n41012010012 +26146 n41011027016 n41011027019 n41011027022 +26148 n41011027016 n41011027019 n41011027022 +26150 n41011027016 n41011027019 n41011027022 +26154 n41011027016 n41011027019 n41011027022 +26160 n41011033010 +26162 n41011027016 n41011027019 n41011027022 +26164 n41011027016 n41011027019 n41011027022 +26166 n41011027016 n41011027019 n41011027022 +26177 n41012013005 +26180 n41012013005 +n41012013005 +26184 n41012013005 +26187 n41012014005 +26196 n41012014005 +26207 n41012014005 +26214 n41012013005 +26217 n41012013005 +26220 n41011033010 +26228 n41012013005 +n41012013005 +26233 n41011033010 +26238 n41011033010 +26259 n41012013005 +26268 n41012013005 +26282 n41012018003 +26284 n41012018003 +26295 n41012019008 +26299 n41012019008 +26309 n41012019020 +26323 n41012020006 +26325 n41012020006 +26333 n41012021003 +26335 n41012021003 +26357 n41012023012 n41012022011 +26361 n41012022011 +26375 n41012018003 +26377 n41012018003 +26406 n41012026004 +26408 n41012018003 +26421 n41012026020 +26433 n41012026020 +26439 n41012018003 +26441 n41012028003 +26445 n41012028003 +26448 n41012028003 +26451 n41012024004 +26466 n41012029008 +26476 n41012029008 +26527 n41012032007 +26530 n41012030003 +26572 n41012034003 +26576 n41012032005 +26581 n41012032005 +26592 n41012034020 +26594 n41012035004 +26598 n41012035004 +26625 n41012036012 +26631 n41012036010 +26648 n41012035016 +26661 n41012035004 +n41012037014 +26667 n41012038010 +26670 n41012038010 +26687 n41012038010 +26695 n41012038010 +26701 n41012035004 +26705 n41012035004 +26720 n41012042004 +26731 n41012035004 +26735 n41012035004 +26738 n41012035004 +26770 n41012043013 +26788 n41013001013 +26799 n41013001009 +26836 n41013002003 +26849 n41013004012 +26854 n41013005003 +26856 n41013003016 n41013003018 n41013003020 n41013003022 +26867 n41013006001 +26873 n41013006001 +26876 n41013003016 n41013003018 n41013003020 n41013003022 +26882 n41013003016 n41013003018 n41013003020 n41013003022 +26884 n41013007004 n41013007006 +26918 n41013003016 n41013003018 n41013003020 n41013003022 +26924 n41013003016 n41013003018 n41013003020 n41013003022 +26946 n41013003016 n41013003018 n41013003020 n41013003022 +26948 n41013003016 n41013003018 n41013003020 n41013003022 +26959 n41013003016 n41013003018 n41013003020 n41013003022 +26986 n41013012012 +26989 n41013003016 n41013003018 n41013003020 n41013003022 +n41013003016 n41013003018 n41013003020 n41013003022 +27006 n41013003016 n41013003018 n41013003020 n41013003022 +27014 n41013014005 +27034 n41013015001 +27036 n41013015001 +27051 n41013016002 +27069 n41013003016 n41013003018 n41013003020 n41013003022 +27072 n41013014005 +27097 n41013019013 +27115 n41013020005 +n41013020005 +27125 n41013003016 n41013003018 n41013003020 n41013003022 +27129 n41013003016 n41013003018 n41013003020 n41013003022 +27132 n41013003016 n41013003018 n41013003020 n41013003022 +27139 n41013022003 n41013022005 +27145 n41013022003 n41013022005 +27153 n41013005003 +27209 n41013026005 +27213 n41013026005 +27231 n41013003016 n41013003018 n41013003020 n41013003022 +27242 n41013028011 +27245 n41013003016 n41013003018 n41013003020 n41013003022 +27255 n41013003016 n41013003018 n41013003020 n41013003022 +27261 n41013026005 +27265 n41013005003 +27313 n41013003016 n41013003018 n41013003020 n41013003022 +n41013003016 n41013003018 n41013003020 n41013003022 +27317 n41013003016 n41013003018 n41013003020 n41013003022 +27325 n41013034002 +27330 n41013034002 +27343 n41013034002 +27345 n41013034021 +27347 n41013003016 n41013003018 n41013003020 n41013003022 +27350 n41013003016 n41013003018 n41013003020 n41013003022 +27366 n41013035008 +27368 n41013035008 +27374 n41013005003 +27376 n41013005003 +n41013003016 n41013003018 n41013003020 n41013003022 n41013037005 +27399 n41014001014 n41014001017 +n41014001014 n41014001017 +27402 n41014001014 n41014001017 +27428 n41014003015 +27434 n41014003015 +27437 n41014003015 +27460 n41014005005 +27465 n41014005008 +27469 n41014004003 +27475 n41014004003 +27480 n41014004003 +27483 n41014003015 +27490 n41014004003 +27495 n41014004003 +n41014004003 +27499 n41014004003 +27504 n41014004003 +27506 n41014003015 +n41014003015 +n41014003015 +n41014003015 +27518 n41014006003 +27550 n41014010002 +27554 n41014010011 +27557 n41014010011 +27560 n41014010011 +27562 n41014010002 +27566 n41014010002 +27582 n41014006003 +27584 n41014012014 +n41014012014 +27587 n41014006003 +27591 n41014006003 +27597 n41014006003 +27599 n41014013003 +27609 n41014013017 +n41014013003 +27615 n41014013017 +n41014013003 +27635 n41014014010 +27642 n41014015005 +27646 n41014013003 +27653 n41014016004 +27658 n41014016004 +27660 n41014006003 +27663 n41014016004 +27669 n41014006003 +27682 n41014018007 +27691 n41014018013 +27694 n41014017007 +n41014017007 +27697 n41014017007 +27712 n41014020005 +27752 n41014018007 +27754 n41014018007 +n41014018007 +27757 n41014018007 +27760 n41014018007 +n41014020007 +27768 n41014018007 +27770 n41014018007 +n41014018007 +27779 n41014018007 +27789 n41014024007 +27793 n41014018007 +27799 n41014018007 +27811 n41014018007 +27819 n41014018007 n41014020007 +n41014018007 n41014020007 +27835 n41014027011 n41014027017 +n41014025026 +27848 n41014027005 +27871 n41014030005 +27899 n41014029003 +27906 n41014030005 n41014020007 +27914 n41014030005 +27918 n41014032012 +27921 n41014030005 +27923 n41014030005 +27935 n41014030005 +n41014030005 +27938 n41014030005 +27940 n41014030005 +27949 n41014033004 n41014033007 n41014033010 +27952 n41014033004 n41014033007 n41014033010 +27954 n41014030005 +27956 n41014030005 +27961 n41014030005 +27972 n41014030005 +27979 n41014036003 +27994 n41014030005 +27996 n41014030005 +28000 n41014030005 +28004 n41014037011 +28006 n41014037011 +28009 n41014037011 +n41014037010 n41014033007 n41014033010 +28012 n41014037010 n41014033007 n41014033010 +28015 n41014037010 n41014033007 n41014033010 +28028 n41014030005 +n41014030005 +28033 n41014030005 +28036 n41014030005 +n41014030005 +28048 n41014037010 n41014033007 n41014033010 +28050 n41014037010 n41014033007 n41014033010 +28053 n41014030005 +28057 n41014030005 +28059 n41014037010 n41014033007 n41014033010 +28063 n41014037010 n41014033007 n41014033010 +28068 n41014037010 n41014033007 n41014033010 +28079 n41014037010 n41014033007 n41014033010 +n41014037010 n41014033007 n41014033010 n41014030005 +n41014037010 n41014033007 n41014033010 +28117 n41014043008 +28121 n41014044004 +28124 n41014044004 +28127 n41014043014 +28130 n41014043014 +28133 n41014044004 +28135 n41014044004 +28137 n41014044004 +28140 n41014044004 +28149 n41014043014 +28156 n41014047001 +28165 n41014047001 +28170 n41014048004 +28178 n41014043014 +28183 n41014043014 +28187 n41014048004 +28193 n41014048004 +28196 n41014043014 +28204 n41014050005 +28213 n41014051002 +28218 n41014043014 +28222 n41014051002 +28228 n41014043014 +28260 n41014054003 +n41014054003 +28266 n41014054003 +28284 n41014055003 n41014055007 +28288 n41014055003 n41014055007 +28302 n41014057002 +28306 n41014057002 +28326 n41014055011 +28336 n41014060004 +28344 n41014060004 +28346 n41014060009 +28357 n41014060009 +28365 n41014061010 +28382 n41014055003 n41014055007 n41014061010 +28393 n41014062010 +28402 n41014063003 +28411 n41014055003 n41014055007 n41014063003 +n41014055003 n41014055007 +28429 n41014065003 +28432 n41014065003 +28437 n41014065003 +28440 n41014065003 +28442 n41014062003 +28464 n41014066010 +28468 n41014066010 +28470 n41014066010 +28482 n41014067004 +28484 n41014067004 +28486 n41014067004 +28491 n41014067004 +28499 n41014069003 +28503 n41014069003 +28527 n41014070013 +28531 n41014070013 +28535 n41014070013 +28537 n41014070013 +28540 n41014070013 +28545 n41014070010 +28570 n41014072010 +28572 n41014072010 +n41014072010 +28580 n41015001007 +28590 n41015001007 +28595 n41015001007 +28610 n41015001019 +28627 n41015004003 +28629 n41015001019 +28631 n41015001019 +28634 n41015003005 +28648 n41015005010 +28670 n41015008004 +28674 n41015008004 +28676 n41015005010 +28683 n41015009003 +n41015008004 +n41015009003 +28692 n41015009003 +28710 n41015009003 +28716 n41015012003 +28721 n41015012003 +28723 n41015011006 +28732 n41015012003 +28740 n41015012013 +28747 n41015014003 +28752 n41015015003 +28757 n41015015003 +28763 n41015015003 +28766 n41015015003 +28768 n41015015017 +28781 n41015016003 +28786 n41015016003 +28790 n41015016003 +28792 n41015016003 +28796 n41015016003 +n41015016003 +28799 n41015018006 +28804 n41015016003 +28810 n41015016003 +28813 n41015016003 +28816 n41015016003 +28820 n41015016003 +28822 n41015016003 +28827 n41015016003 +28833 n41015016003 +28836 n41015016003 +28839 n41015016003 +28844 n41015021003 +28853 n41015021003 +28858 n41015016003 +28870 n41015016003 +28872 n41015023005 +28879 n41015016003 +28882 n41015016003 +28886 n41015016003 +28898 n41015016003 +28915 n41015016003 +28931 n41015029003 +28936 n41015029003 +28939 n41015015017 +28943 n41015015017 +28947 n41015029014 +28949 n41015029014 +28957 n41015031004 +28965 n41015015017 +28967 n41015015017 +28969 n41015015017 +28981 n41015031004 n41015031010 +28983 n41015031004 n41015031010 +28986 n41015027006 +29016 n41015034010 +29028 n41015034018 +29034 n41015035002 +29036 n41015035004 +29038 n41015034007 +29041 n41015036003 +29043 n41015036003 +29046 n41015036003 +29050 n41015036003 +n41015035002 +n41015035002 n41015036003 +29056 n41015036017 +29061 n41015037003 +29081 n41015039004 +29085 n41015039004 +29088 n41015037003 +29103 n41015040004 +29123 n41015037003 +29130 n41015040011 n41015040015 n41015040024 +29136 n41015041013 +29150 n41015043002 +29166 n41015043002 +29172 n41015043002 +29183 n41015043027 +29185 n41015044003 +29188 n41015044003 +29192 n41015043027 +29194 n41015044003 +29198 n41015044003 +29204 n41015045010 +29206 n41015045010 +29208 n41015045010 +29212 n41015045010 +29222 n41015045010 +29240 n41015046013 +29258 n41016001005 n41016001009 n41016001014 +n41016001005 n41016001009 n41016001014 +29268 n41016001005 n41016001009 n41016001014 +29276 n41016001005 n41016001009 n41016001014 +29290 n41016001005 n41016001009 n41016001014 +n41016001005 n41016001009 n41016001014 +29297 n41016004007 +29301 n41016001005 n41016001009 n41016001014 +29305 n41016001005 n41016001009 n41016001014 +29311 n41016005007 +29315 n41016001005 n41016001009 n41016001014 +29321 n41016001005 n41016001009 n41016001014 +n41016001005 n41016001009 n41016001014 +29327 n41016006007 +n41016006007 +29330 n41016006007 +29332 n41016001005 n41016001009 n41016001014 +29339 n41016001005 n41016001009 n41016001014 +n41016001005 n41016001009 n41016001014 +29348 n41015043027 +29355 n41016007005 n41016007009 +29357 n41015043027 +29360 n41016001005 n41016001009 n41016001014 +n41016001005 n41016001009 n41016001014 +29374 n41016001005 n41016001009 n41016001014 +29376 n41016001005 n41016001009 n41016001014 +29378 n41015043027 +29382 n41015043027 +29389 n41015043027 +29393 n41016009008 +29398 n41016007005 n41016007009 +n41016010006 +29401 n41016010006 +29403 n41016010006 +29405 n41015043027 +29407 n41015043027 +29418 n41015043027 +29422 n41016012004 +29426 n41016012004 +29432 n41016013005 +29439 n41015043027 +29441 n41015043027 +29449 n41016009008 n41016012004 +29453 n41016014006 +29455 n41015043027 +29457 n41016014006 +29462 n41016014006 +29488 n41016017004 +29491 n41016017004 +29493 n41016017004 +29497 n41016017004 +29501 n41016018005 +29505 n41016017004 +29508 n41016018012 +29516 n41016019004 +29523 n41016019004 +29530 n41016014006 +29539 n41016020007 +29542 n41016020016 +29580 n42001001002 +29584 n42001001011 +29597 n42001002007 +29602 n42001003002 +29608 n42001003002 +29612 n42001003011 +29615 n42001003011 +29653 n42001005009 n42001005017 +29701 n42001005009 +29703 n42001005009 +n42001005009 +29728 n42001011004 +29738 n42001012003 +29751 n42001013009 +29767 n42001013009 +29786 n42001013021 +29796 n42001013021 +29800 n42001013021 +29811 n42001013021 +29827 n42001013021 +29837 n42001013021 +29840 n42001017023 +29849 n42001018003 +29865 n42001019004 +29874 n42001019009 +29879 n42001019004 +n42001019004 +29884 n42001019004 +29888 n42001018003 +n42001018003 +n42001018003 +29893 n42001018003 +n42001018003 +29903 n42001018003 +29921 n42001021004 +29930 n42001021007 +29932 n42001021007 +n42001021007 +29936 n42001021004 +29939 n42001021007 +29949 n42001021007 +29960 n42001021007 +29976 n42001024007 +29980 n42001024007 +29989 n42001025005 +n42001025005 +30017 n42001027002 +30032 n42001026009 +30035 n42001026009 +n42001028007 +30049 n42001027015 +30061 n42001030008 +30064 n42001030008 +30070 n42001030008 +n42001030008 +30075 n42001030008 +30078 n42001030008 +30089 n42001031008 +30103 n42001031008 +30130 n42001034003 +30132 n42001035004 +30150 n42001035021 +30156 n42001034003 +30175 n42001036003 +30188 n42001034006 +30206 n42001039003 +30221 n42001039003 +30227 n42001039003 +30254 n42001041023 +30258 n42001041023 +30284 n42001041008 +30308 n42001041008 +30338 n42001047008 +30377 n42001049006 +30382 n42001049006 +30387 n42001049006 +30392 n42001049006 +30395 n42001049006 +30399 n42001049006 +30401 n42001049006 +30405 n42001049006 +30417 n42001049006 +30431 n42001056003 +30446 n42001057003 +30465 n42001058004 n42001058007 +30474 n42001058004 n42001058007 +n42001058004 n42001058007 +30479 n42001058004 n42001058007 +30489 n42001060004 +30496 n42001059011 +30499 n42001058004 n42001058007 +30515 n42001058004 n42001058007 +30521 n42001062004 +30526 n42001062004 +30528 n42001062004 +n42001062004 +30548 n42001062004 +n42001062004 +30558 n42001058004 n42001058007 +30581 n42001066005 +30604 n42001067002 +n42001067002 +30613 n42001068002 +30615 n42001068002 +30621 n42001068002 +30631 n42001068002 +30651 n42001068002 +30658 n42001068002 +30664 n42001068002 +30671 n42001068002 +30676 n42001067002 n42001060004 n42001059011 n42001068013 +30678 n42001067002 n42001060004 n42001059011 n42001068013 +30698 n42001076004 +30701 n42001076004 +30705 n42001076004 +30727 n42001078010 +30736 n42001078010 +30748 n42001080003 +30751 n42001080003 +30788 n42002003003 +30822 n42002004004 +30826 n42002005003 +30828 n42002005003 +30844 n42002005003 +30851 n42002005003 +30854 n42002005003 +30874 n42002008002 +30876 n42002008002 +30895 n42002008002 +30904 n42002008002 +30906 n42002008002 +n42002010005 +30932 n42002008002 +30936 n42002012006 +30948 n42002013007 +30952 n42002013007 +30981 n42002015013 +30985 n42002015013 +30990 n42002015024 +30997 n42002015013 +n42002015013 +31000 n42002015013 +31015 n42002015013 +n42002015013 +31021 n42002017006 +31048 n42002019003 +31057 n42002020004 +31059 n42002020004 +31065 n42002020004 +31067 n42002020004 +31069 n42002020013 +31078 n42002016011 n42002019003 +31087 n42002021012 +31110 n42002016011 n42002019003 +31114 n42002016011 n42002019003 +31118 n42002023011 +31125 n42002023008 +31133 n42002016011 n42002019003 +31137 n42002024012 +31164 n42002025012 +31184 n42002025012 +31189 n42002025012 +31194 n42002025012 +31228 n42002025012 +31232 n42002025012 +31235 n42002029006 +31254 n42002029006 +31288 n42002034004 +31294 n42002034008 +31308 n42002034025 +31334 n42002036003 +31338 n42002036003 +31362 n42002036003 +31370 n42002036003 +n42002036003 +31375 n42002036003 +31385 n42002033004 n42002034008 +31392 n42002033004 n42002034008 +31405 n42002040003 +n42002040003 +31429 n42002040003 +31440 n42002041004 n42002040003 +31460 n42002043019 +31466 n42002043019 +31470 n42002043019 +31480 n42002043019 +n42002043019 +31484 n42002043019 +31491 n42002043019 +31502 n42002043010 +31505 n42002043010 +31521 n42002043019 +31523 n42002043019 +31533 n42002048012 +31536 n42002048012 +31541 n42002048019 n42002048010 +31545 n42002043010 +31550 n42002048019 n42002048010 +31553 n42002048019 n42002048010 +31570 n42002043010 +31573 n42002043010 +31577 n42002043010 +31581 n42002043010 +n42002043010 +31661 n42003002010 +31668 n42003002010 +31675 n42003004009 +31726 n42003002010 +31728 n42003007005 +n42003007005 +31738 n42003007009 +31741 n42003007018 +31744 n42003007009 +31751 n42003007009 +n42003007009 +31756 n42003007009 +31760 n42003002010 +31770 n42003008023 +31789 n42003009014 +31796 n42003009014 +31802 n42003010005 +31805 n42003010005 +31807 n42003002010 +n42003002010 +31828 n42003012004 +31830 n42003012004 +31835 n42003012004 +31847 n42003012004 +31853 n42003014005 +31859 n42003002010 +31862 n42003014005 +31864 n42003014005 +31866 n42003014005 +31891 n42003016005 +31907 n42003016005 +31909 n42003016005 +31930 n42003016014 +31935 n42003016014 +31945 n42003016014 +31953 n42003016005 +n42003016005 +31962 n42003019003 +31980 n42003019003 +31985 n42003019023 +32032 n42003022014 +32042 n42003023004 +n42003023004 +32208 n42004001001 +32217 n42004001001 +32223 n42004001001 +32232 n42004001001 +32239 n42004001001 +32243 n42004001001 +32248 n42004003013 +32256 n42004004013 +32266 n42004003005 +32268 n42004003005 +32284 n42004006005 +32295 n42004006009 n42004006014 +32299 n42004006005 +n42004006005 +32312 n42004008004 +32317 n42004008008 n42004008016 +32328 n42004006005 +32333 n42004006005 +32340 n42004006005 +32343 n42004008004 +32347 n42004008004 +32352 n42004010007 n42004011005 n42004011008 +32357 n42004009020 +32361 n42004010005 +32367 n42004010005 +32378 n42004012006 +32384 n42004012010 +32392 n42004013006 +32430 n42004014004 +32434 n42004014004 +32438 n42004014004 +n42004014004 +32441 n42004014004 +32455 n42004014004 +n42004014004 +32465 n42004014004 +32468 n42004014004 +32472 n42004018004 n42004018007 n42004018011 +n42004018004 n42004018007 n42004018011 +32480 n42004018002 +32484 n42004018002 +32501 n42004014004 +32504 n42004014004 +32507 n42004014004 +32519 n42004014004 +n42004014004 +32538 n42004022002 +32545 n42004022009 +32551 n42004022002 +32558 n42004014004 +32562 n42004022002 +32568 n42004023011 +32570 n42004022002 +32576 n42004023011 +32584 n42004014004 +32586 n42004014004 +32600 n42004014004 +32672 n42004028003 +32675 n42004028003 +n42004028003 +32682 n42004028003 +32695 n42004028003 +32699 n42004014004 +32705 n42004014004 +32712 n42004014004 +n42004014004 +32737 n42004033006 +32742 n42004033009 +32752 n42004034006 +n42004034006 +32755 n42004033009 +32758 n42004034006 +32768 n42004035005 +n42004033009 +32771 n42004033009 +32777 n42004035016 +32786 n42004035016 +32794 n42004036005 +32797 n42004036005 +32807 n42004035005 +32812 n42004036023 +32824 n42004035005 +32828 n42004035005 +32847 n42004035005 +32850 n42004035005 +32854 n42004039007 +32858 n42004038011 +n42004038011 +32882 n42004035005 +32891 n42004041004 +32893 n42004041004 +32902 n42004035005 +32904 n42004035005 +32908 n42004041004 +32916 n42004035005 +n42004035005 +32927 n42004042011 +32931 n42004042011 +32935 n42004035005 +32958 n42004035005 +32960 n42004035005 +n42004035005 +32976 n42005001006 +32990 n42004035005 +33002 n42005002011 +33007 n42004035005 +33015 n42004035005 +33023 n42004035005 +33027 n42004035005 +33032 n42004035005 +n42004035005 +n42004035005 +33038 n42005004008 +33043 n42005004008 +33050 n42005005003 +33057 n42005005003 +33059 n42005005003 +33065 n42005005003 +33070 n42005005003 +n42005005003 +33081 n42005005003 +33089 n42005007004 +n42005007004 +33093 n42005007004 +33095 n42005007004 n42005005003 +33103 n42005008003 +33110 n42005008003 +n42005008017 +33117 n42005008003 +33134 n42005008003 n42005009007 +33156 n42005010018 +33161 n42005010018 +n42005010018 +33164 n42005010018 n42005010004 n42005010006 +33170 n42005010004 n42005010006 n42005010018 +33172 n42005010004 n42005010006 n42005010018 +33190 n42005012013 +33193 n42005012013 +33196 n42005012013 +33198 n42005012013 +33201 n42005012026 +n42005012026 +33204 n42005012026 +33206 n42005012019 +33209 n42005012019 +33211 n42005012019 +n42005012019 +n42005012013 +33226 n42005012013 +33228 n42005012013 +n42005012013 +33234 n42005012013 +33256 n42005015010 +33258 n42005015010 +33271 n42005012019 +33317 n42005018007 +33319 n42005018003 +33321 n42005018003 +33323 n42005018003 +33328 n42005018003 +33330 n42005018003 +33335 n42005018003 +33342 n42005018003 +33354 n42005019027 +33358 n42005019027 +33367 n42005021005 n42005021008 +33373 n42005021005 n42005021008 +33383 n42005021016 +33392 n42005022004 +33396 n42005022004 +33401 n42005021005 n42005021008 +33417 n42005018007 +33419 n42005018007 +33422 n42005021005 n42005021008 +33433 n42005024006 +33435 n42005022004 +33437 n42005018007 +33439 n42005022004 +n42005024018 +33442 n42005024018 +33446 n42005024018 +33453 n42005024018 +33456 n42005024018 +33459 n42005024018 +n42005024018 +33465 n42005024018 +33473 n42005026004 +33477 n42005026004 +33479 n42005026004 +33481 n42005026004 +33487 n42005022004 +33489 n42005022004 +33498 n42005022004 +33500 n42005027007 +33503 n42005027007 +33505 n42005027007 +n42005027007 +33542 n42005030004 n42005030007 +33550 n42005030011 +33552 n42005030011 +33554 n42005031004 +33571 n42005031004 +n42005031004 +33590 n42005033007 +33609 n42005030004 n42005030007 +33622 n42005030004 n42005030007 +33634 n42005034010 +33640 n42005031004 +33651 n42005036008 +33662 n42005036008 +33708 n42005039002 +33713 n42005039002 +33735 n42006001012 +33744 n42006001012 +33751 n42006003007 +33758 n42006002001 +33772 n42006003013 +33783 n42006003013 +n42006003013 +33786 n42006003013 +33800 n42006003007 +33821 n42006003007 +33846 n42006003007 +33848 n42006007005 n42006007008 +n42006007005 n42006007008 +33858 n42006003007 +33863 n42006008010 +33866 n42006008010 +33868 n42006008010 +33873 n42006008010 +n42006008010 +33881 n42006009004 +33895 n42006009004 +33898 n42006009004 +33900 n42006008010 +33917 n42006007005 n42006007008 +33922 n42006007005 n42006007008 +33936 n42006011013 +33938 n42006012014 +n42006011013 +33949 n42006011013 +33954 n42006011013 +33961 n42006011013 +33965 n42006011013 +33990 n42006015009 +34002 n42006011013 +34005 n42006011013 +34033 n42006017015 +34036 n42006017015 +34053 n42006019004 +34061 n42006011013 +34065 n42006011013 +34086 n42006020009 +34089 n42006021003 +34092 n42006020009 +34095 n42006021009 +34097 n42006020009 +34105 n42006022007 +34108 n42006022007 +34110 n42006022007 +34121 n42006020009 +34127 n42006020009 +34129 n42006020009 +34153 n42006024005 +34163 n42006025004 +34169 n42006025010 +34171 n42006025010 +34191 n42006011013 +34194 n42006020009 +n42006027005 +34200 n42006027005 +34204 n42006027005 +34208 n42006027005 +34219 n42006027005 +34234 n42006027005 +34238 n42006027005 +34246 n42006027005 +34249 n42006027005 +34255 n42006027005 +34260 n42006027005 +34279 n42006027005 +34295 n42006027005 +34298 n42006027005 +n42006027005 +34309 n42006034013 +34313 n42006027005 +34318 n42006027005 +34320 n42006027005 +34322 n42006027005 +34330 n42006027005 +34342 n42006027005 +34352 n42006027005 +34356 n42006027005 +34359 n42006027005 +34363 n42006027005 +n42006027005 +34366 n42006027005 +n42006027005 +34373 n42006038005 +n42006038005 +n42006038005 +34384 n42006027005 +34388 n42006011013 +34396 n42006039008 +34418 n42006020009 +34437 n42006020009 +34439 n42006020009 +n42006020009 +34445 n42006042007 +n42006020009 +34464 n42006042026 +34474 n42006042026 +34484 n42006042026 +34551 n42006042026 +34556 n42006042026 +34558 n42006011013 +34572 n42006011013 +34575 n42006047003 +34578 n42006047003 +34580 n42006048003 +34585 n42006048003 +34587 n42006048003 +34603 n42006048021 +n42006048021 +34620 n42006049009 +34633 n42006049011 +34643 n42006011013 +34653 n42006011013 +34661 n42007002004 +34663 n42007002004 +34669 n42007002001 +34673 n42007002001 +34679 n42007002001 +34682 n42007003005 +n42007003005 +34689 n42007003009 +34696 n42007003009 +34701 n42007004006 +34704 n42007002001 +34733 n42007006019 +34737 n42007006022 +34740 n42007006019 +34747 n42007006022 +34751 n42007006019 +34754 n42007006019 +34756 n42007006022 +34770 n42007008004 +n42007008004 +34776 n42007006019 +34778 n42007008015 +34780 n42007008015 +34783 n42007008020 +34785 n42007008020 +34790 n42007008026 +34793 n42007008026 +34795 n42007009005 +34802 n42007009005 +34804 n42007009013 +34807 n42007009005 +n42007009005 +34816 n42007009005 +34818 n42007010007 +34823 n42007006017 n42007003009 +34833 n42007009005 +34836 n42007011008 +34849 n42007009005 +34857 n42007012013 +34876 n42007013005 +34884 n42007013005 +34887 n42007012015 +34889 n42007013005 +n42007013005 +34898 n42007013005 +34901 n42007013005 +n42007014012 +34908 n42007015004 +n42007015004 +34911 n42007013005 +34921 n42007016004 +34924 n42007016004 +34964 n42007018018 +34972 n42007018018 +34976 n42007018018 +34983 n42007018018 n42007018015 +34985 n42007020006 +34998 n42007020008 +35005 n42007020008 n42007018015 +35010 n42007019004 +35022 n42007019004 +n42007021015 +35025 n42007019004 +n42007019004 +35028 n42007020006 +n42007020006 +35032 n42007020006 +35034 n42007020006 +35062 n42007019004 +n42007019004 +35070 n42007024010 +n42007024010 +35078 n42007024019 +35081 n42007024010 +n42007024010 +35087 n42007025005 +n42007024010 +35102 n42007024010 +n42007024010 +35106 n42007019004 +35115 n42007027007 n42007027015 +35117 n42007016020 +35131 n42007019004 +35158 n42007029004 n42007029008 +35162 n42007029004 n42007029008 +35180 n42007030003 n42007030006 +35185 n42007019004 +35193 n42007031005 +35196 n42007031005 +35201 n42007032003 +35203 n42007032003 +35207 n42007032003 +35211 n42007032003 +n42007032003 +35215 n42007032003 +35222 n42007033003 +35225 n42007033003 +35228 n42007031005 +35230 n42007033003 +35236 n42007034003 +35238 n42007034003 +35240 n42007031005 +n42007031005 +35266 n42007019004 +35270 n42007019004 +35276 n42007019004 +35287 n42007037003 +35289 n42007019004 +35295 n42007037003 +35299 n42007037003 +35305 n42007037003 +n42007037003 +35309 n42007037003 +35319 n42007037003 +35321 n42007037003 +35326 n42007037003 +35330 n42007039004 +35334 n42007039004 +35339 n42007039004 +35345 n42007019004 +35356 n42007039022 +35358 n42007040004 +35365 n42007040004 +35368 n42007040004 +35372 n42007040015 +n42007040004 +35391 n42007041002 +35393 n42007041004 +35400 n42007043002 +35403 n42007043002 +35408 n42007041004 +35414 n42007043002 +35416 n42007040004 +35422 n42007040004 +n42007044007 +35427 n42007040004 +35437 n42007044007 +35450 n42007044012 +35454 n42007044007 +35459 n42007040004 +35462 n42007044012 +35471 n42007044007 +35481 n42007040004 +35490 n42007044012 +35499 n42007040004 +35509 n42007049004 +35520 n42007040004 +35529 n42007050005 +35544 n42007040004 +35546 n42007040004 +35569 n42008002012 +35605 n42007040004 +35612 n42008005003 +35628 n42008005014 +35643 n42008006002 +n42008006002 +35648 n42008006002 +35658 n42008007011 +35672 n42008008002 +n42008008002 +35677 n42007040004 +n42007040004 +35682 n42008008018 +35713 n42008010015 +35715 n42008010015 +35717 n42008010015 +35719 n42008010015 +35745 n42008012012 +35754 n42008012001 +n42008012001 +35763 n42008013006 +35782 n42008013001 +35802 n42008014006 +n42008014006 +35806 n42008014006 +35821 n42008015009 +35826 n42008015009 +35832 n42008016001 +35839 n42008016001 +35867 n42008017010 +35869 n42008009005 +35871 n42008009005 +35885 n42008018015 +n42008018015 +35902 n42008019006 n42008019009 +n42008019006 n42008019009 +35909 n42008020011 +35920 n42008020005 n42008020009 +35922 n42008020005 n42008020009 +35925 n42007040004 +35960 n42007040004 +35963 n42008022014 n42007040004 +35970 n42007040004 n42008022014 +35974 n42007040004 +35983 n42007040004 n42008022014 +35985 n42007040004 n42008022014 +35987 n42008022014 +n42008022014 +35990 n42008022014 +35993 n42008024006 n42008022014 +35996 n42007040004 +36006 n42008024014 n42008024017 +36011 n42007040004 +36018 n42008022014 +n42008022014 +n42008022014 +36034 n42007040004 +36036 n42008025021 n42008025025 +36039 n42007040004 n42008022014 +36052 n42007040004 +36062 n42008027008 +36068 n42008027008 +36074 n42008027008 +36080 n42008027008 +36083 n42008027008 +n42008027008 +36089 n42008029004 +36100 n42008029004 +36104 n42008028016 +36106 n42008028004 +36111 n42008029004 +36118 n42008029004 +36121 n42008029010 +36125 n42008029010 +36127 n42008029010 +36130 n42008029010 +36157 n42008030016 +36161 n42008030005 +36166 n42008030016 +36173 n42008032004 +36178 n42008030016 +36181 n42008030005 +36185 n42008030016 +36187 n42008030005 +36192 n42008033004 +36211 n42008033015 +36215 n42008034004 +36220 n42008034004 +36248 n42008035015 +36250 n42008035015 +36266 n42008035015 +36283 n42008037006 +36286 n42008035028 +36300 n42008038005 +36304 n42008035028 +36306 n42008035028 +n42008038005 +36313 n42008038005 +36320 n42008038005 +36325 n42008038005 +36360 n42008041004 +36365 n42008041004 +36394 n42008043002 +36406 n42008043002 +n42008043002 +36409 n42008043002 +36443 n42008045017 +36461 n42008047004 +36464 n42008047004 +n42008047004 +36468 n42008047004 +36473 n42008047004 +36475 n42008047004 +36482 n42008047004 +36494 n42008048005 +36505 n42008049005 +36512 n42008049008 +36518 n42008050003 +36522 n42008049008 +36524 n42008049008 +36526 n42008049013 +36528 n42008050003 +36533 n42008050003 +36563 n42008052003 +36565 n42008051023 +36567 n42008051023 +36569 n42008052003 +36571 n42008052003 +36573 n42008051023 +36576 n42008050003 +36581 n42008050003 +36584 n42008054010 +36591 n42008051023 +36594 n42008050003 +36608 n42008051014 n42008051016 n42008051018 n42008056004 n42008051023 +36612 n42008050003 +36615 n42008050003 +36626 n42009001004 +36628 n42008050003 +36630 n42009001004 +36636 n42009001004 +36638 n42008050003 +36642 n42009001004 +36658 n42009001004 +36664 n42009001004 +36666 n42009001004 +36669 n42009001004 +36676 n42009001004 +36687 n42009001004 +36693 n42009001004 +n42009001004 +36698 n42009001004 +36700 n42009001004 +36711 n42009007003 +36714 n42009007018 +36748 n42009009003 +36751 n42009009003 +n42009009003 +36755 n42009010004 +36761 n42009010004 +36763 n42008050003 +36765 n42008050003 +36770 n42009010016 +36775 n42009011003 +36779 n42008050003 +36781 n42008050003 +36793 n42008050003 +36798 n42009012003 +36800 n42009012009 +36805 n42008050003 +36809 n42009012014 +36816 n42009012014 +36818 n42009012014 +36825 n42008050003 n42009012009 +36827 n42008050003 +36832 n42009012014 +36849 n42009012009 +36859 n42009011003 +36864 n42008050003 +36869 n42009014010 +36876 n42009014010 +36879 n42009014010 +36882 n42008050003 +36890 n42008050003 +36894 n42008050003 +36897 n42008050003 +36899 n42008050003 +36902 n42009016021 +36906 n42009017005 +36913 n42009017012 +36932 n42008050003 +36934 n42008050003 +36943 n42009018013 +36960 n42008050003 +36970 n42009020010 +36978 n42008050003 +36982 n42009018013 +36984 n42008050003 +36994 n42009022005 +37003 n42009022005 +37008 n42009022005 +37010 n42008050003 +37018 n42009023006 +n42009023006 +37022 n42009023006 +37029 n42009023006 +37038 n42009024001 +37057 n42009025004 +37063 n42009025004 +37065 n42009025004 +37082 n42009026012 +37095 n42008050003 +37110 n42009027006 +37125 n42008050003 +37131 n42008050003 +37135 n42008050003 +37153 n42009029015 +37166 n42009030003 +37174 n42008050003 +37177 n42008050003 +37189 n42009032003 n42009032005 +n42009032003 n42009032005 +37199 n42009032020 +37222 n42009033011 n42009032005 +37234 n42009033011 +37236 n42009033011 +37244 n42009034006 +37247 n42009033011 n42009032005 +37261 n42009035002 +37268 n42009035011 +37270 n42009033011 n42009032005 +37285 n42009033011 n42009032005 +37292 n42009033011 n42009032005 +37314 n42009038003 +37316 n42009038003 +37318 n42009038009 +37326 n42009038015 +37334 n42009039003 +37336 n42009039003 +37342 n42009039003 +37345 n42009039003 +37348 n42009038003 +37353 n42009040004 +37357 n42009040004 +37359 n42009041004 +37367 n42009041007 +37370 n42009041004 +37374 n42009041004 +37376 n42009038003 +37390 n42009042008 +37400 n42009042014 +37404 n42009042014 +37423 n42009042014 +n42009042014 +37444 n42009044012 +37455 n42009045005 +n42009045005 +37461 n42009043019 +37464 n42009043019 +n42009043019 +37485 n42009047003 +37491 n42009047003 +37498 n42009047003 +37519 n42009043008 +37532 n42009049004 +37537 n42009043019 +37546 n42009043019 +37550 n42009049008 +37559 n42009043019 +37585 n42009050005 +37589 n42009050005 +37595 n42009052003 +n42009052003 +37601 n42009052003 +37605 n42009052011 +37616 n42009054004 +37624 n42009054009 +n42009054004 +37632 n42009054012 +37635 n42009050005 +n42009050005 +37639 n42009050005 n42009043019 +37653 n42009057008 +37657 n42009050005 +37683 n42009058018 +37685 n42009058005 +37688 n42009059004 +37693 n42009058005 +37696 n42009059004 +n42009059004 +37702 n42009058005 +37704 n42009059004 +37713 n42009059004 +37723 n42009061004 +37728 n42009061007 +37730 n42009061004 +37743 n42009062007 +37749 n42009062007 +37768 n42010001006 +37783 n42010001006 +37785 n42010001006 +37797 n42010001007 +37804 n42010002016 +37809 n42010001007 +n42010001007 +n42010001006 +37819 n42010001007 +37830 n42010001007 +37836 n42010001007 +37838 n42010001007 +37860 n42010006011 +37866 n42010001007 +n42010001007 +37869 n42010001007 +37881 n42010001007 +37891 n42010001007 +37895 n42010001007 +37900 n42010001007 +37906 n42010001007 +37920 n42010001007 +37925 n42010001007 +37930 n42010001007 +37935 n42010011003 +37944 n42010001007 +37955 n42010001006 +37985 n42010013015 +37994 n42010013010 n42010013012 +n42010013010 n42010013012 +38017 n42010015003 +38035 n42009062023 +38043 n42010017004 +38055 n42010001006 +38057 n42010001006 +38066 n42010017004 +n42010001006 +38072 n42010017004 +38094 n42010017004 +38101 n42010017004 +38114 n42010001006 +38120 n42010001006 +n42010001006 +38131 n42010021014 +38138 n42010021014 +38180 n42010022033 +38185 n42010001006 +38191 n42010001006 +38196 n42010023011 +38198 n42010023005 +38200 n42010001006 +38208 n42010024006 n42010024008 +38214 n42010024006 n42010024008 +38216 n42010024006 n42010024008 +38218 n42010023005 +38221 n42010024006 n42010024008 +38227 n42010025003 +38229 n42010025003 +38232 n42010025003 +38235 n42010025003 +38247 n42010025003 +38250 n42010025003 +38287 n42010001006 +38290 n42010025003 +38292 n42010025003 +38294 n42010025003 +38297 n42010025003 +n42010025003 +38309 n42010030003 +38322 n42010030005 +38325 n42010030013 +38329 n42010030013 +38331 n42010030013 +38344 n42010031004 +38346 n42010031004 +38354 n42010032004 +38356 n42010032004 +38361 n42010033001 +38366 n42010033001 +n42010033001 +38369 n42010033001 +n42010033001 +38374 n42010033001 +38379 n42010033001 +38385 n42010033001 +38390 n42010033001 +38396 n42010033001 +38399 n42010033001 +38403 n42010033001 +n42010035010 +38410 n42010035010 +38427 n42010030005 +38435 n42010033001 +38445 n42010025003 +38474 n42010039004 +38478 n42010039004 +38496 n42010040003 +n42010040003 +38500 n42010040021 +38511 n42010040011 +38515 n42010040017 +38517 n42010041006 +38524 n42010041007 +38526 n42010041007 +38556 n42010041006 +38565 n42011001020 +38576 n42010041006 +38579 n42011001016 +n42011001016 +38595 n42011002007 +38601 n42011002007 +38615 n42011002007 +38620 n42010041006 +38629 n42011005005 +38634 n42011005005 +38637 n42011005018 +38651 n42011005005 +38653 n42011005005 +38657 n42011005009 +38662 n42011005005 +38678 n42011005009 +n42011005009 +n42011005009 +38682 n42010041006 +38687 n42011005009 +38689 n42011005009 +38692 n42011005005 +38700 n42011005009 +n42011005009 +38704 n42011005005 +38708 n42011001016 +38712 n42011001016 +38714 n42011001016 +n42011001016 +38747 n42011011001 +38750 n42011011009 +38752 n42011011001 +38759 n42011001016 +38763 n42011001016 +38781 n42010041006 +n42010041006 +38811 n42010041006 +38816 n42011016001 +38825 n42010041006 +38835 n42011017010 +38856 n42011015001 n42011016001 +38903 n42011021003 +38918 n42011022003 +38924 n42011022003 +38927 n42011021003 +38932 n42011022003 +38956 n42011024004 +38960 n42011024004 +38964 n42011024004 +n42011024004 +n42011024004 +38972 n42011024004 +38974 n42011024004 +n42011024004 +n42011024023 +38978 n42011024023 +38980 n42011024004 +38982 n42011024004 +38989 n42011024004 n42011026006 +n42011024004 n42011026006 +39009 n42011027011 +39022 n42011027019 +39027 n42010041006 +39045 n42010041006 +n42010041006 +39054 n42011029008 +39095 n42011031001 +39098 n42011031001 +39104 n42011031001 +39109 n42011031009 +39124 n42011032001 +39127 n42011032001 +39133 n42011032009 +39139 n42011033001 +39181 n42011034011 +39188 n42011029003 +39205 n42011036004 +39209 n42011036004 +39223 n42010041006 +39228 n42010041006 +39232 n42010041006 +n42010041006 +39237 n42011038003 +39242 n42010041006 +39285 n42011040001 +39288 n42011040001 +39299 n42011042005 +39309 n42011042005 +39329 n42011043004 +39344 n42011043004 +39354 n42011044012 +39359 n42011045003 +39367 n42011045008 +39370 n42011045008 +39380 n42011046007 +39398 n42011046007 +39411 n42011046007 +39413 n42011046007 +39435 n42011049007 +39444 n42011048009 +39446 n42011048009 +39455 n42011050004 +39470 n42011051006 +39478 n42011039004 +39480 n42011050004 +39490 n42011052004 +39501 n42011052004 +39512 n42011053006 n42011053009 +39514 n42011053006 n42011053009 +39518 n42011053006 n42011053009 +39520 n42011053006 n42011053009 +39534 n42012001005 +39536 n42011039004 +n42011039004 +39543 n42012001015 +39571 n42012001015 +39581 n42012001015 +39590 n42011039004 +39596 n42012004005 +39609 n42012004018 +39611 n42011039004 +39614 n42012004005 +n42012004005 +39619 n42012005011 +39622 n42012005011 +39627 n42011039004 +39630 n42012004005 +39657 n42012004005 +39660 n42012004005 +39662 n42011039004 +39734 n42012004005 +39738 n42012004005 +39741 n42012004005 +39753 n42012004005 +39763 n42012013008 +39767 n42012013011 +39786 n42011039004 +39789 n42012013006 +39791 n42012013006 +39810 n42011039004 +39814 n42011039004 +39822 n42012016007 +39825 n42012016007 +39827 n42012016007 +39830 n42012016007 +39832 n42012016007 +39837 n42012016007 +39839 n42012016007 +n42012016007 +39846 n42012016007 +39848 n42012016007 +39858 n42012016007 +39863 n42012019006 +39866 n42012019009 +39870 n42012019006 +n42012019006 +n42012019006 +n42012019006 +39891 n42012020006 +39904 n42011039004 +39911 n42011039004 +39914 n42012022005 +39918 n42012022005 +39923 n42012022005 +39936 n42012022005 +39941 n42012024003 +39943 n42012024003 +39965 n42012025001 +39971 n42012025001 +39977 n42012022005 +39982 n42012022005 +n42012022005 +39988 n42012027003 +39990 n42012027003 +39992 n42011039004 +40011 n42012028006 +40017 n42012028006 +40031 n42012028021 +40034 n42012028021 +40037 n42012028021 +40052 n42012028021 +40055 n42012028021 +40064 n42012032005 +40073 n42012032009 +40077 n42012032005 +40082 n42012032005 +40084 n42012032005 +40088 n42012033010 +40117 n42012035004 +40121 n42012035008 +40126 n42012036004 +40131 n42012036007 +40136 n42012036007 +40138 n42012036007 +40140 n42012036004 +40148 n42012037008 +40153 n42011039004 +40156 n42012037008 +40158 n42012037008 +40161 n42012037008 +n42012037008 +40173 n42012037008 +40175 n42012037008 +40182 n42012032005 +40195 n42012039008 +40208 n42012032005 +40224 n42012041005 +40250 n42012042010 +40262 n42012043008 +40268 n42012042004 +40276 n42012043008 +40292 n42012045013 +40294 n42012045005 +n42012045005 +40302 n42012045005 +40304 n42012045005 +40306 n42012045005 +40317 n42012046005 +40323 n42012046005 +40325 n42012046003 +40334 n42012046003 +40340 n42012047004 +40348 n42012047004 +40350 n42012047004 +40383 n42012042004 +40385 n42012042004 +40391 n42012042004 +40394 n42012049001 +40397 n42012042004 +n42012042004 +40401 n42012042004 +40404 n42012050001 +n42012022005 +40407 n42012042004 +40409 n42012042004 +40413 n42012042004 +40463 n42012042004 +40468 n42012054005 +40474 n42012054005 +40485 n42012054005 +40499 n42012056001 +n42012056001 +40507 n42012056001 +40514 n42012056001 +40519 n42012056001 +40529 n42012056001 +40531 n42012056001 +40536 n42012058006 +40555 n42012042004 +40559 n42012056001 +40566 n42012056001 +40574 n42013001003 +40589 n42012042004 +n42012042004 +40592 n42013001003 +40605 n42013002008 +40607 n42012042004 +40612 n42013001003 +40630 n42013004010 +40632 n42013001003 +40642 n42013004025 +40645 n42012042004 +40650 n42013001003 +40655 n42012042004 +40662 n42013006006 +40668 n42013006008 +n42013006008 +40675 n42013006008 +40677 n42013006008 +40681 n42013007005 +40686 n42013006008 +n42013006008 +40695 n42013006008 +n42013007005 +40703 n42013007016 +40706 n42013007005 +40710 n42013008006 +40718 n42013007005 +40722 n42013007005 +40726 n42013007016 +40734 n42013008006 +40737 n42012042004 +n42012042004 +40751 n42013011003 +40756 n42013011003 +n42013011003 +40760 n42013011003 +n42013011003 +40766 n42013012005 +40772 n42013012005 +40775 n42013012010 +40780 n42013012005 +40786 n42013011003 +40788 n42013011003 +40792 n42013014004 +40795 n42013014004 +40816 n42013014014 +n42013014014 +40830 n42013015005 +40848 n42013015009 +n42013015009 +40851 n42013015008 +40855 n42013011003 +40894 n42013017018 +40898 n42013015005 +40908 n42013015005 +40911 n42013018007 +40915 n42013019007 +40922 n42013019003 +40924 n42013019003 +40939 n42013015005 +40941 n42013015005 +40947 n42013020007 +40950 n42013021006 +40962 n42013015005 +40967 n42013015005 +40970 n42013015005 +40987 n42013023014 +n42013023014 +40994 n42013015005 +40998 n42013024008 +41001 n42013024008 +41009 n42013025006 +41013 n42013023014 +41015 n42013023014 +41017 n42013023014 +41020 n42013023014 +41022 n42013025020 +41025 n42013025006 +n42013025006 +41029 n42013025006 +41032 n42013023014 +41034 n42013023014 +n42013023014 +n42013023014 +41040 n42013023014 +41046 n42013025006 +41048 n42013025006 +n42013025006 +41052 n42013025006 +41054 n42013023014 +n42013027013 +41071 n42013023014 +41109 n42013023014 +41128 n42013031007 +41130 n42013015005 +41132 n42013015005 +41138 n42013031015 +41140 n42013015005 +41142 n42013031007 +n42013031007 +41147 n42013032007 +n42013015005 +41152 n42013015005 +41159 n42013015005 +41180 n42013034001 +41184 n42013034001 +41190 n42013015005 +n42013015005 +41206 n42013034001 +n42013034001 +41214 n42013015005 +41218 n42013034001 +41223 n42013034001 +41226 n42013015005 +41244 n42013015005 +41260 n42014003004 +41269 n42014003004 +41280 n42014003004 +n42014003004 +41284 n42014003004 +41288 n42014003004 +41300 n42014005005 +41308 n42014003008 n42014003010 +n42014003008 n42014003010 +41313 n42014003004 +41318 n42014003004 +41322 n42014007005 +n42014003004 +41327 n42014007005 +41333 n42014007005 +41346 n42014009007 +41351 n42014008004 +41354 n42014007005 +41359 n42014007005 +41365 n42014007005 +41368 n42014007005 +n42014007005 +n42014007005 +41379 n42014009007 +41381 n42014010014 +41384 n42014010018 +41407 n42014003004 +41410 n42014001009 +41413 n42014012005 +41418 n42014012005 +41446 n42014012005 +n42014012005 +41454 n42014012005 +41457 n42014013006 n42014013007 n42014013008 n42014013009 +n42014013006 n42014013007 n42014013008 n42014013009 +41472 n42014015003 +41495 n42014016005 +41498 n42014016005 +41506 n42014016005 +41509 n42014017012 +41513 n42014017009 +41519 n42014017012 +41525 n42014018008 +41527 n42014018008 +41529 n42014018008 +n42014018008 +41532 n42014018008 +41534 n42014017004 +41543 n42014019002 +41545 n42014019002 +n42014019002 +41548 n42014019002 +41550 n42014017004 +41557 n42014020002 +41562 n42014020002 +n42014020002 +41565 n42014021004 +41574 n42014021013 +41581 n42014021016 +41599 n42014021016 +41608 n42014022005 +41620 n42014023007 +41627 n42014023007 +41635 n42014023004 +41643 n42014024007 +41654 n42014003004 +n42014003004 +41665 n42014026002 +41691 n42014026002 +n42014026002 +41702 n42014027001 +41707 n42014027003 +41715 n42014028001 +41717 n42014028001 +41719 n42014028001 +41724 n42014028001 +41735 n42014028001 +n42014028001 +41743 n42014029013 +41749 n42014030005 +41752 n42014030005 +n42014030005 +41761 n42014031003 +41764 n42014031003 +41766 n42014031003 +41769 n42014031003 +41773 n42014031003 +41778 n42014031006 +41789 n42014031003 +n42014031003 +41808 n42014033003 +41823 n42014034009 +41831 n42014034009 +41838 n42014035013 +41850 n42015001007 n42015001010 +41860 n42015002005 n42015002008 +41866 n42014003004 +41869 n42014003004 +41875 n42014003004 +41880 n42015004002 +41884 n42015004002 +41889 n42015004002 +41897 n42015004002 +41900 n42015004012 +41902 n42015004002 +41905 n42015004002 +n42015004002 +41911 n42015004002 +41913 n42015004002 +41917 n42015004002 +41923 n42015004002 +41925 n42015006008 n42015006011 +41928 n42015004002 +41933 n42015006019 +n42014003004 +41946 n42015007012 +41962 n42015008003 +41964 n42015008003 +41968 n42015008003 +41971 n42015008003 +41975 n42015008003 +41979 n42015008003 +41981 n42015008003 +n42015008003 +41987 n42015008003 +n42015009005 n42015009007 +41991 n42015008003 +41995 n42015008003 +41997 n42014003004 +42009 n42015010013 +42011 n42014003004 +42025 n42015012008 +42028 n42015012013 +42043 n42015013010 +42054 n42015013010 +42058 n42015013010 +42074 n42015013010 +42076 n42015013010 +n42015013010 +42085 n42015015004 +42091 n42015013010 +42094 n42015013010 +n42015013010 +42113 n42015013010 +n42015013010 +42127 n42015013010 +n42015013010 +42134 n42015013010 +42137 n42015013010 +42145 n42015013010 +42147 n42015013010 +42150 n42015018010 +42158 n42015013010 +n42015013010 +42175 n42015020016 +42177 n42015020016 +n42015020016 +42184 n42015020016 +42192 n42015021004 +42200 n42015021004 +42202 n42015021004 +42214 n42015022007 +42219 n42015022007 +42222 n42015022007 +42234 n42015022007 +42239 n42015022007 +42241 n42015021004 n42015022004 n42015022007 +n42015021004 n42015022004 n42015022007 +42251 n42015024004 +n42015024004 +n42015024004 +42255 n42015024004 +42257 n42015021004 n42015022004 n42015022007 +n42015021004 n42015022004 n42015022007 +42270 n42015025004 +n42015025004 +42274 n42015025004 +42279 n42015025004 +42283 n42015025004 +42307 n42015027007 +42309 n42015027013 +42311 n42015025004 +42314 n42015025004 +n42015025004 +42320 n42015028009 +42325 n42015025004 +42329 n42015029006 +42332 n42015025004 +42338 n42015025004 +42342 n42015029006 +42349 n42015025004 +42357 n42015030004 +42364 n42015029006 +42386 n42015022004 n42015022007 +42388 n42015022004 n42015022007 +42398 n42015032008 +42400 n42015032008 +42402 n42015032008 +42404 n42014003004 +42421 n42016001013 +42426 n42016001007 +42428 n42016001007 +42432 n42016001007 +42435 n42016001013 +42443 n42016001013 +42445 n42016001013 +42453 n42016003006 +42463 n42016003006 +42465 n42016003006 +n42016003006 +n42016003006 +n42016003006 +42470 n42016003006 +42473 n42016003006 +42484 n42016003006 +42492 n42016003006 +42496 n42016005012 +42510 n42016005012 +42515 n42016005012 +42517 n42016005012 +42521 n42016003006 +42532 n42016003006 +42534 n42016007002 +42539 n42016007002 +42551 n42016008006 +42575 n42016001006 +42584 n42016009010 +n42016009007 +42618 n42016001006 +42631 n42016001006 +42642 n42016013002 +42647 n42016013002 +42651 n42016013002 +42654 n42016013002 +42658 n42016013002 +42660 n42016001006 +42662 n42016001006 +42672 n42016014006 +42674 n42016014006 +42677 n42014003004 +42760 n42016019001 +42764 n42016019001 +42778 n42016020001 +42780 n42016020001 +n42016020001 +42794 n42016021015 +42820 n42016022020 +42825 n42016022020 +42829 n42016022020 +42832 n42016022020 +42844 n42016022020 +42848 n42016024005 +42851 n42016024005 +42854 n42016024011 +42862 n42016024011 +42867 n42016022020 +42876 n42016025004 +42878 n42016025004 +42894 n42016025016 +42912 n42016026014 +42922 n42016026014 +42924 n42016022020 +42926 n42016022020 +42930 n42016027006 +42939 n42016022020 +42943 n42016025016 +42959 n42016028004 +42964 n42016028004 +42980 n42016028004 +42982 n42016029003 +42990 n42016028004 +42997 n42016028004 +42999 n42014003004 +43015 n42017001011 +43027 n42017001018 +43033 n42017001018 +43038 n42017001005 +43045 n42017001005 +43049 n42017003006 +n42017001005 +43057 n42017003006 +43062 n42017003006 +43065 n42017003006 +n42017003006 +n42017001005 +43075 n42017005006 +43083 n42017005004 +43089 n42017005004 +43093 n42017006014 +43095 n42017006014 +43101 n42017006014 +43107 n42017007001 +43109 n42017007005 +43111 n42017007005 +43120 n42017007005 +n42017007005 +43124 n42017007001 +43126 n42017007005 +43128 n42017007001 +43130 n42017007005 +n42017007005 +43134 n42017007001 +43136 n42017007001 +43145 n42017007001 +43150 n42017009005 +43152 n42017008005 n42017008010 n42017008019 +43157 n42017005004 +43166 n42017005004 +43168 n42017005004 +n42017005004 +n42017005004 +43175 n42017006004 +43203 n42017012010 +43206 n42017013006 +43209 n42017006004 +n42017006004 +43212 n42017012010 +n42017012010 +43223 n42017012010 +43228 n42017015001 +43230 n42017015001 +43235 n42017015001 +43239 n42017015001 +43246 n42017015001 +43253 n42017017004 +43268 n42017018003 +43278 n42017017004 +43280 n42017015001 +n42017015001 +43288 n42017017004 +43298 n42017017004 +43301 n42017017004 +43312 n42017020005 +43317 n42017020005 +43326 n42017017004 +43333 n42017022005 +43341 n42017022005 +43344 n42017022005 +43348 n42017022005 +43350 n42017022005 +43353 n42017022005 +43355 n42017022005 +43360 n42017024004 +43388 n42017024019 +43427 n42017027016 +43449 n42017021012 +43456 n42017021012 +43487 n42017031005 +43499 n42017022005 +43509 n42017033001 +43518 n42017017004 +43549 n42017022005 +n42017022005 +43567 n42017017004 +43578 n42017022005 +n42017017004 +43589 n42018002002 +43593 n42018002002 +43602 n42018003001 +43605 n42018003001 +n42018002002 +43614 n42018002002 +43620 n42018002002 +43628 n42018002002 +43631 n42018002002 +43641 n42018002002 +43647 n42018005008 +n42018005008 +43654 n42017022005 +43673 n42018007010 +43679 n42018007003 +43682 n42018006004 +43685 n42018007003 +43698 n42018008012 +43705 n42018006004 +43710 n42017020005 +43714 n42018009007 +43717 n42017020005 +43729 n42018010001 +43739 n42018011002 +43746 n42018011002 +43750 n42018011002 +43765 n42018011002 +43769 n42018011002 +43772 n42018011002 +43777 n42018013003 +43783 n42018013003 +43788 n42018013003 +43792 n42018013003 +43795 n42018013022 +43799 n42018006004 +43803 n42018013003 +43829 n42018006004 +43831 n42018015013 +43841 n42018016003 +n42018015013 +43850 n42018015013 +43861 n42018016003 +43883 n42018018005 +43887 n42018018005 +43890 n42018018005 +43898 n42018018005 +43909 n42018018005 +43930 n42018018005 +43934 n42018022004 +43945 n42018018005 +n42018018005 +43948 n42018018005 +43951 n42018018005 +43957 n42018018005 +n42018018005 +43962 n42018018005 +43967 n42018018005 +43971 n42018024005 +44011 n42018026006 +44028 n42018015013 +44030 n42018015013 +44040 n42018024005 +44075 n42018030013 +44079 n42018024005 +44082 n42018024005 +44085 n42018031004 +n42018031004 n42018024005 +44102 n42018031021 +44106 n42018031021 +44108 n42018031021 +44110 n42018031021 +44112 n42018032004 +n42018032004 +44120 n42018031021 +44136 n42018031004 +44138 n42018034009 +44153 n42018035009 +44155 n42018035009 +44158 n42018035009 +44171 n42018035009 +n42018035009 +44176 n42018038004 +44184 n42018035009 +44192 n42018039013 +44195 n42018040004 +44206 n42018040004 +44210 n42018040004 +n42018035009 +44217 n42018035009 +44223 n42018035009 +44231 n42018035009 +44233 n42018035009 +44235 n42018035009 +44242 n42018043013 +44248 n42018042003 +n42018042003 +44256 n42019002003 +44266 n42019002003 +n42019002003 +44271 n42019003005 +44274 n42019002003 +44282 n42019002003 +44284 n42019002003 +44288 n42019002003 +44292 n42019002003 +44296 n42019003005 +n42019003005 +44300 n42019005009 +44304 n42019005009 +44311 n42019005013 +n42019005013 +44323 n42019002003 +n42019002003 +44326 n42019002003 +44328 n42019002003 +44330 n42019007003 +44333 n42019007003 +44338 n42019005009 +n42019005009 +44341 n42019008003 +44348 n42019008007 +44356 n42019008003 +44361 n42019008003 +n42019008003 +44389 n42019010004 +44391 n42019010004 +44398 n42019009006 +n42019009006 +44417 n42019011021 +44419 n42019009006 +44427 n42019012003 +44431 n42019012003 +44433 n42019012003 +44437 n42019012003 +44442 n42019012003 +44445 n42019013004 +44448 n42019012003 +44456 n42019014003 +44460 n42019014003 +44462 n42019014003 +44473 n42019012003 +44477 n42019012003 +44484 n42019012003 +44496 n42019016004 +44505 n42019012003 +44514 n42019017006 +n42019017006 +44517 n42019017006 +44525 n42019018004 +44534 n42019012003 +44547 n42019020003 +44549 n42019020006 +44554 n42019020003 +n42019020009 +44559 n42019020003 +44564 n42019020006 +n42019020006 +44568 n42019020006 +44570 n42019020006 +44573 n42019020006 +n42019012003 +44580 n42019012003 +44584 n42019022010 +44590 n42019022014 +44593 n42019022014 +44595 n42019022014 +44598 n42019022014 +44603 n42019022010 +44611 n42019012003 +44619 n42019012003 +n42019024003 +44626 n42019024003 +44631 n42019016004 +44633 n42019024003 +44636 n42019024016 +44639 n42019012003 +44653 n42019026012 +44662 n42019027003 +44667 n42019024003 +44670 n42019024003 +44675 n42019009006 +44677 n42019009006 +44679 n42019009006 +44685 n42019009006 +44694 n42019029011 +44696 n42019009006 +44700 n42019009006 +n42019029016 +44708 n42019029016 +n42019029016 +44719 n42019029016 +44721 n42019029016 +44729 n42019029016 +44731 n42019029016 +44739 n42019032004 +44741 n42019029016 +44744 n42019009006 +44758 n42019032004 +44771 n42019032004 +44777 n42019032004 +44784 n42019032004 +44814 n42019037015 +n42019037015 +44823 n42019037015 +44825 n42019037015 +44828 n42019038006 +44852 n42019039011 +44857 n42019035017 +n42019035017 +n42019035017 +44869 n42019035017 +n42019035017 +44873 n42019035017 +44876 n42019035017 +44891 n42019042011 +44908 n42019043009 +44911 n42019043009 +44915 n42019043009 +44925 n42019043009 +44934 n42019041006 +44941 n42019035017 +44945 n42019035017 +n42019035017 +44949 n42019035017 +44951 n42019046009 n42019046014 +44966 n42019035017 +n42019035017 +44982 n42019047012 n42019047015 +44990 n42019047012 n42019047015 n42019047021 +44993 n42019047012 n42019047015 n42019047021 +45000 n42019048008 +45015 n42019035017 +45026 n42020001018 n42020001021 n42020001024 +n42020001018 n42020001021 n42020001024 +45030 n42019035017 +45036 n42019035017 +45047 n42019035017 +n42019035017 +45056 n42020001018 n42020001021 n42020001024 +45072 n42020001018 n42020001021 n42020001024 +45075 n42020001018 n42020001021 n42020001024 +45078 n42019035017 +45082 n42020001018 n42020001021 n42020001024 +45086 n42020001018 n42020001021 n42020001024 +45095 n42020006007 +n42020006007 +45101 n42020001018 n42020001021 n42020001024 +45103 n42020001018 n42020001021 n42020001024 +45118 n42020008003 +45120 n42020008003 +45124 n42020008003 +45132 n42020009010 +45136 n42020009010 +45141 n42020009010 +45152 n42020010006 +45159 n42020010018 +45162 n42020009010 +45165 n42020009010 +45169 n42020010018 +45171 n42020010018 +45175 n42020009010 +45177 n42020009010 +45182 n42020010018 +45191 n42020013004 +n42020013004 +45200 n42020010018 +45202 n42020014005 +45209 n42020014005 +45214 n42020014005 +45222 n42020014005 +45227 n42020014005 +45236 n42020015013 +45238 n42020015013 +45243 n42020015013 +45248 n42020009005 +n42020009005 +45254 n42020008003 +45261 n42020017020 n42020018008 n42020018014 +45285 n42020018007 +n42020018007 +45295 n42020019004 n42020019007 +45305 n42020019004 n42020019007 +45309 n42020019004 n42020019007 +45313 n42020008003 +45318 n42020019004 n42020019007 +n42020019004 n42020019007 +45321 n42020020004 +45326 n42020020004 +45330 n42020020004 +45340 n42020020004 +45342 n42020020004 +45344 n42020020004 +45347 n42020021005 +45349 n42020021005 +45352 n42020021005 +45361 n42020021005 +45370 n42020008003 +45374 n42020008003 +45377 n42020020004 +45380 n42020024003 +45395 n42020020004 +45407 n42020020004 +n42020020004 +45415 n42020020004 +45420 n42020020004 +45422 n42020027003 +45427 n42020027003 +45433 n42020027003 +45442 n42020028008 +45456 n42020028019 +45468 n42020029007 +45489 n42020031010 +45530 n42020035003 +45543 n42020035003 +45545 n42020035003 +45548 n42020035003 +45552 n42020035003 +45556 n42020035003 +45569 n42020037007 +45592 n42020039003 +45599 n42020039007 +45602 n42020039003 +n42020039003 +45607 n42020034005 +45629 n42020042011 +45635 n42020042009 +45652 n42020041008 +45658 n42020034005 +45661 n42020045008 +45666 n42020046004 +n42020046004 +45671 n42020046004 +45695 n42020046004 +45701 n42020034005 +n42020034005 +45704 n42021001012 +45713 n42020034005 +45722 n42020034005 +45724 n42020034005 +45756 n42021003008 +45769 n42021005006 +n42020034005 +45773 n42021005002 +45787 n42021005002 +45789 n42021005002 +45802 n42021007016 +45806 n42021005002 +45808 n42021005002 +45816 n42021008007 +45824 n42021005002 +45829 n42021005002 +45834 n42021005002 +45846 n42020034005 +45892 n42021005002 +45901 n42021012012 n42021012005 +45906 n42021005002 +45912 n42021005002 +n42021005002 +45924 n42021015016 +45926 n42021015016 +45932 n42021005002 +45943 n42021016005 n42021016007 n42021016009 n42021016011 +45947 n42021005002 +n42021005002 +45968 n42021005002 +45974 n42021005002 +45980 n42021005002 +46045 n42021023023 +46049 n42021023023 +46104 n42021026002 +46120 n42021028003 +n42021005002 +46123 n42021005002 +46133 n42020034005 +46136 n42021005002 +46144 n42021029007 n42021029011 +46146 n42021005002 +46149 n42021005002 +46160 n42021005002 +46172 n42020034005 +46199 n42021005002 +46225 n42021034022 +46236 n42021005002 +46240 n42021005002 +46242 n42021005002 +n42021005002 +46247 n42021036010 +n42021036010 +46250 n42021005002 +46257 n42020034005 +n42020034005 +46267 n42020034005 +n42020034005 +46273 n42021037016 +46285 n42021038004 +46294 n42022001004 +46305 n42022002004 n42022002007 +46308 n42022002004 n42022002007 +46317 n42022003005 +46319 n42022003005 +46326 n42022003005 +n42022003005 +46335 n42022003005 +46338 n42022004005 n42022004007 +46340 n42022004005 n42022004007 +46343 n42022004005 n42022004007 +46345 n42022003005 +46347 n42022003005 +46350 n42022003005 +46367 n42020034005 +46371 n42020034005 +n42022008003 n42022008005 +n42022008003 n42022008005 +46378 n42020034005 n42022003014 +46383 n42020034005 +46385 n42022008003 n42022008005 +46390 n42022008003 n42022008005 +46401 n42022010013 +n42022008003 n42022008005 +46409 n42022010013 +46411 n42022008003 n42022008005 +46431 n42022011010 +46437 n42022012004 +46439 n42022008003 n42022008005 +46441 n42022008003 n42022008005 +n42022008003 n42022008005 +46444 n42020034005 +46447 n42022008003 n42022008005 +46455 n42020034005 +46462 n42020034005 +46466 n42020034005 +46470 n42020034005 +46478 n42020034005 +46484 n42020034005 +46488 n42022015009 +46495 n42020034005 +46497 n42020034005 +n42020034005 +n42022014009 +46502 n42022014009 +46506 n42020034005 +46510 n42020034005 +46527 n42020034005 +46529 n42020034005 +n42020034005 +46532 n42020034005 +46534 n42020034005 +46543 n42022019013 +46545 n42022014009 +46556 n42020034005 n42022014009 +n42020034005 +46571 n42022020011 +46573 n42022014009 +46601 n42022022003 +46605 n42022014009 +46616 n42022023015 +46628 n42022024008 +46707 n42022014009 +46709 n42022014009 +46719 n42022014009 +46727 n42022014009 +46730 n42022031001 +46736 n42022031005 +46754 n42022031001 +46767 n42022008003 +46774 n42022008003 +46778 n42020034005 +46790 n42022034006 +46792 n42020034005 +46795 n42020034005 +46805 n42022014009 +46811 n42020034005 +46831 n42022036016 +46834 n42020034005 +46840 n42022037016 +46845 n42022022003 +46860 n42022038004 +46871 n42020034005 +n42020034005 +46888 n42020034005 +46892 n42020034005 +46894 n42022039017 +46896 n42022039017 +46908 n42020034005 +46911 n42020034005 +n42020034005 +46915 n42022042002 +n42022042002 +46937 n42022043004 +46940 n42020034005 +46944 n42020034005 +46953 n42022044010 +46958 n42020034005 +46962 n42020034005 +46966 n42020034005 +46973 n42020034005 +46976 n42022045009 +n42022045009 +n42022045009 +46981 n42022045009 +46991 n42022047010 +46999 n42022047009 +47002 n42022047009 +47014 n42022048005 +47019 n42022049003 +47025 n42022049003 +47039 n42022050003 +47046 n42022051004 +47050 n42022049003 +47054 n42022051004 +47057 n42022051004 +47064 n42022052009 n42022052011 n42022052015 +47077 n42022052009 n42022052011 n42022052015 +47092 n42022052009 n42022052011 n42022052015 +47109 n42022052009 n42022052011 n42022052015 +47111 n42022052009 n42022052011 n42022052015 +47113 n42022052009 n42022052011 n42022052015 +47125 n42022052009 n42022052011 n42022052015 +47132 n42022052009 n42022052011 n42022052015 +47141 n42022056004 +47148 n42022056004 +47159 n42022055012 +47161 n42022055012 +47168 n42022058004 +47182 n42022058015 +47191 n42022059007 +47202 n42022058015 +47209 n42022060004 +47211 n42022060005 +47220 n42022061004 +47235 n42022061015 +47242 n42022061011 +47246 n42022061011 +47248 n42022061011 +47254 n42022063003 +47258 n42022063003 +47260 n42022063003 +47262 n42022063003 +n42022063003 +n42022061015 +47273 n42022063003 +n42022063003 +47291 n42022066007 n42022066010 n42022066013 +47297 n42022066007 n42022066010 n42022066013 +47303 n42022061015 +47306 n42022061015 +47310 n42022061015 +47313 n42022066007 n42022066010 n42022066013 +47316 n42022061015 +47319 n42022066007 n42022066010 n42022066013 +47361 n42022066007 n42022066010 n42022066013 +47372 n42023001005 +47383 n42023001005 +n42023001005 +47386 n42023001005 +n42023001005 +47394 n42022061015 +47397 n42023002010 +47399 n42022061015 +47409 n42023003003 +47418 n42022061015 +47434 n42023004003 +47443 n42023004007 n42023004010 +47445 n42022061015 +47448 n42022061015 +47454 n42022061015 +47462 n42023006001 +47470 n42023006001 +47476 n42022061015 +n42023006001 +47493 n42023008003 +47499 n42023008003 +n42023008003 +47504 n42023008003 +47508 n42023008003 +47512 n42023008003 +n42023008003 +47520 n42023008003 +47538 n42023010004 n42023010007 +47543 n42023011005 +47550 n42023011005 +n42023011005 +47574 n42023012006 n42023012009 +47577 n42023012006 n42023012009 +47582 n42023013001 +47591 n42023013001 +47594 n42023013005 n42023013008 n42023013011 +47600 n42023014007 +47604 n42023013005 n42023013008 n42023013011 +47608 n42023013001 +47617 n42023013005 n42023013008 n42023013011 +47624 n42023015003 +47629 n42023013005 n42023013008 n42023013011 +47637 n42023013001 +47639 n42023013001 +47641 n42023013005 n42023013008 n42023013011 +47643 n42023013005 n42023013008 n42023013011 +n42023013001 +47647 n42023013001 +47657 n42023019004 +47672 n42023020004 +n42023020004 +47679 n42023013005 n42023013008 n42023013011 +n42023020004 +n42023020004 +47697 n42023020004 +47701 n42023020004 +47703 n42023020004 +47709 n42023013005 n42023013008 n42023013011 +47725 n42023024002 +47731 n42023018011 +47735 n42023013005 n42023013008 n42023013011 +47739 n42023024002 +47751 n42023026006 +47758 n42023026006 +47777 n42023028005 +47785 n42023028007 +47791 n42023028007 +47798 n42023028007 +47823 n42023030005 +47829 n42023030011 +47851 n42023032005 +47854 n42023013005 n42023013008 n42023013011 +47859 n42023033006 +47862 n42023013005 n42023013008 n42023013011 +47880 n42023034005 +47884 n42023013005 n42023013008 n42023013011 +47886 n42023013005 n42023013008 n42023013011 +47888 n42023036006 +47892 n42023036006 +47898 n42023035004 +47904 n42023035010 +47906 n42023034003 +n42023034003 +47924 n42023036006 +47926 n42023036006 +47929 n42023036006 +47937 n42023034003 +47953 n42023039005 +47962 n42023034003 +47967 n42023040004 +47970 n42023040004 +47983 n42023039001 +47991 n42023039005 +n42023039005 +47999 n42023040004 +48001 n42023042003 +48004 n42023042003 +48010 n42023034003 +48014 n42023034003 +48018 n42023040004 +48049 n42023046006 +48059 n42023046006 +48065 n42023046006 +n42023046006 +48070 n42023047004 +48076 n42023047004 +48086 n42023048005 +48092 n42023048005 +48095 n42023048005 +48110 n42023049010 +48115 n42023049005 n42023049010 +48122 n42023050003 +48150 n42023050003 +48159 n42023050003 +n42023050003 +48164 n42023050003 +48183 n42023055004 +48203 n42023055004 +n42023055004 +48212 n42023055004 +48226 n42023055004 +n42023055004 +48229 n42023055004 +48232 n42023055004 +48240 n42023055004 +48242 n42023055004 +48264 n42024004016 +48270 n42023055004 +48276 n42024004011 +48280 n42023055004 +48287 n42020034005 +48290 n42020034005 +n42023055004 +48293 n42020034005 +48296 n42020034005 +48300 n42020034005 +48313 n42024007003 +48318 n42024007003 +48320 n42023055004 +48325 n42023055004 +48329 n42023055004 +48339 n42023055004 +48354 n42024010004 n42024010007 n42024010009 n42024010014 +48369 n42024010020 +48374 n42024012003 +48380 n42024012003 +n42024012003 +48386 n42024012003 +48389 n42024012003 +48405 n42024013013 +48430 n42024013003 +48434 n42024015011 +48444 n42024016003 +48447 n42024015011 +48455 n42024013003 +48458 n42024013003 +48460 n42024013003 +48463 n42024018003 +48476 n42024015011 +48486 n42024015011 +48528 n42024020006 n42024020009 +48538 n42024021008 +48550 n42024019011 +48563 n42024022003 +48570 n42024022003 +48574 n42024022003 +n42024022003 +48579 n42024022003 +48594 n42024024003 +48604 n42024024003 +48617 n42024013003 +48631 n42024026006 +48637 n42024015011 +48645 n42024015011 +48655 n42024013003 +48660 n42024013003 +48665 n42024015011 +48667 n42024013003 +48669 n42024013003 +n42024015011 +48683 n42024015011 +48685 n42024015011 +48696 n42024015011 +48699 n42024015011 +48701 n42024015011 +n42024015011 +48710 n42024013003 +48719 n42024013003 +48731 n42024015011 +48737 n42024015011 +48742 n42024013003 +48746 n42024013003 +48750 n42024013003 +48758 n42024033013 n42024033015 +48765 n42024034006 +48776 n42024015011 +48793 n42024015011 +48798 n42024033013 n42024033015 n42024013003 +48801 n42024033013 n42024033015 n42024013003 +n42024033013 n42024033015 n42024013003 +48804 n42024033013 n42024033015 n42024013003 +48806 n42024015011 +48809 n42024033013 n42024033015 n42024013003 +n42024033013 n42024033015 n42024013003 +48820 n42024033013 n42024033015 n42024013003 +48832 n42024033013 n42024033015 n42024013003 +48835 n42024033013 n42024033015 n42024013003 +48846 n42024033013 n42024033015 n42024013003 +48849 n42024015011 +n42024015011 +48865 n42024033013 n42024033015 n42024013003 +n42024015011 +48868 n42024033013 n42024033015 n42024013003 +48880 n42024015011 +48883 n42024015011 +48885 n42024015011 +48893 n42024015011 +48897 n42024015011 +48918 n42024015011 +48923 n42024033013 n42024033015 n42024013003 +48936 n42024046009 +48956 n42024033013 n42024033015 n42024013003 +48963 n42024033013 n42024033015 n42024013003 +48981 n42024033013 n42024033015 n42024013003 +48986 n42024015011 +48992 n42024015011 +48996 n42024015011 +49005 n42024015011 +49009 n42024015011 +49015 n42024033013 n42024033015 n42024013003 +49024 n42024033013 n42024033015 n42024013003 +n42024033013 n42024033015 n42024013003 +49096 n43001006002 +49107 n43001006002 +49123 n43001006002 +49143 n43001009003 +49159 n43001009003 +49170 n43001009003 +49174 n43001012003 +49177 n43001012003 +49204 n43001014003 +49226 n43001015001 +n43001015001 +49231 n43001015001 +49242 n43001015015 +49277 n43001018006 +49304 n43001019016 n43001019018 +49310 n43001019007 +49313 n43001019007 +49315 n43001019007 +49323 n43001019016 n43001019018 +49331 n43001019007 +49333 n43001019007 +49339 n43001019007 +49342 n43001019016 n43001019018 +49345 n43001019007 +49348 n43001019016 n43001019018 +49350 n43001019013 +49353 n43001019007 +49356 n43001019007 +49373 n43001019016 n43001019018 +49379 n43001024002 +49382 n43001024002 +49386 n43001019007 +49402 n43001026004 +49417 n43001026016 +49424 n43001026004 +49444 n43001028011 +49451 n43001028011 +49458 n43001029013 +49480 n43001030010 +49487 n43001029005 +49496 n43001028011 +49500 n43001032003 +49502 n43001032003 +49511 n43001032008 +49520 n43001029015 +49522 n43001032003 +49531 n43001032003 +49549 n43001032003 +49570 n43001035006 +49574 n43001035006 +n43001035012 +49588 n43001037005 +49594 n43001038004 +49596 n43001038004 +49602 n43001037005 +49610 n43001038017 +49613 n43001038017 +n43001038004 +49616 n43001037005 +49618 n43001037005 +49620 n43001037005 +49622 n43001037005 +49624 n43001038004 +49628 n43001037005 +49647 n43001040010 +49651 n43001040010 +49662 n43001040002 +49664 n43001040010 +49671 n43001040002 +49676 n43001042009 +49695 n43001043015 +n43001043015 +49701 n43001043015 +49708 n43001043010 +49727 n43001045002 +49738 n43001044010 n43001044012 n43001045002 +49752 n43001046009 +49760 n43001046004 +49762 n43001046004 +49771 n43001047002 +49787 n43001047002 +49791 n43001048008 +49803 n43001048008 +49822 n43001050002 +49825 n43001050002 +49828 n43001050002 +49833 n43001049003 +49836 n43001049003 +49838 n43001050002 +49842 n43001050002 +49844 n43001044010 n43001044012 n43001046014 n43001049003 +49928 n43002004005 +49930 n43002005006 +49943 n43002006005 +49953 n43002005006 +49958 n43002005006 +49963 n43002007004 +49965 n43002005006 +49968 n43002005006 +49982 n43002009007 +49985 n43002009005 +49987 n43002009007 +49993 n43002009017 +50002 n43002009027 +50035 n43002011007 +50065 n43002011007 n43002012009 n43002012013 n43002012016 +50083 n43002013013 +50099 n43002013013 +50104 n43002013013 +50119 n43002013013 +50123 n43002013013 +50129 n43002013013 +n43002016005 +50134 n43002016005 +50147 n43002017013 +n43002017013 +50161 n43002018004 +50165 n43002013013 +50169 n43002013013 +50173 n43002019002 +50175 n43002018004 +50183 n43002019002 +50215 n43002019002 +50224 n43002019002 +50226 n43002022008 +50238 n43002022023 +50254 n43002023013 +50259 n43002022023 +50276 n43002024003 +50309 n43003001003 +50312 n43003001012 n43003001003 +50316 n43003002009 +50327 n43003002016 +50338 n43003003002 +50342 n43003003002 +50350 n43003003012 +n43003003012 +50364 n43003004008 +50366 n43003004008 +50368 n43003004008 +50376 n43003004008 +50378 n43003004008 +50383 n43003005002 +50394 n43003005009 +n43003005009 +50417 n43003004005 +50419 n43003005002 +50428 n43003008002 +50434 n43003004005 +50437 n43003004005 +50439 n43003008002 +50442 n43003008002 +50454 n43003009002 +50463 n43003010002 +50474 n43003009002 +50477 n43003010002 +50481 n43003010002 n43002012016 +n43003010002 n43002012016 +50485 n43003010002 n43002012016 +n43003010002 n43002012016 +50492 n43003010011 n43003009002 +50496 n43003010002 +50500 n43003010011 n43003009002 +50503 n43003010002 +50507 n43003010011 n43003009002 +50520 n43003013015 +50562 n43003016005 +50572 n43003016017 +50586 n43003017007 +50609 n43003018010 +50656 n43003020005 +50683 n43003021014 +n43003021014 +50700 n43003022005 +50704 n43003022005 +50744 n43003025006 +50749 n43003025006 +50762 n43003026009 +50773 n43003027002 +50777 n43003027007 +50792 n43003027002 +50800 n43003027002 +n43003027002 +50816 n43003029009 +50818 n43003029009 +50859 n43003031011 +50869 n43003031025 +50871 n43003031025 +50873 n43003031025 +50905 n43003034009 +50915 n43003035002 +50971 n43004002002 +50975 n43004002002 +50988 n43004002002 +50993 n43004005004 +51014 n43004006009 +51032 n43004007002 +51038 n43004007002 +51040 n43004007011 +51051 n43004008003 +51062 n43004007011 +51067 n43004009016 +n43004007011 +51078 n43004010002 +51081 n43004009005 +51090 n43004010002 +51092 n43004009005 +51094 n43004010002 +51101 n43004010016 +51104 n43004010029 +n43004009005 +51110 n43004011003 +51118 n43004011003 +51122 n43004011016 +51152 n43004013002 +51184 n43004013002 +51191 n43004014028 +51201 n43004015006 +51208 n43004015005 +51210 n43004015005 +51212 n43004015005 +n43004013002 +51215 n43004015005 +n43004015005 +51221 n43004015005 +51227 n43004017003 +51229 n43004017003 +51236 n43004017003 +51240 n43004017003 +51244 n43004017003 +51248 n43004017003 +51255 n43004017003 +51261 n43004019004 +51290 n43004021007 +51305 n43004021007 n43004009023 +51312 n43004009023 n43004021007 +51316 n43004021004 n43004009022 +51329 n43004023003 +51366 n43004025004 +51370 n43004025007 +51376 n43004025007 +51385 n43004026004 +51396 n43004027006 +51400 n43004026004 +51405 n43004027012 +51408 n43004026004 +51419 n43004028007 +51424 n43004028007 +51427 n43004028016 +n43004028016 +51435 n43004028007 +51441 n43004028016 +51446 n43004028016 +51456 n43004031007 +51458 n43004031009 +51466 n43004026004 +51481 n43004026004 +51490 n43004034004 +51494 n43004024003 +51497 n43004034004 +51512 n43004033004 +n43004034004 +51515 n43004033004 +51520 n43004033004 +51525 n43004035022 +51534 n43004036002 +51566 n43004033004 +51596 n43004039016 +51598 n43004034004 +51602 n43004039016 +51610 n43004040007 +51612 n43004034004 +51616 n43004034004 +51631 n43004041003 +51638 n43004041003 +51643 n43004041003 +51657 n43004034004 +51677 n43004044003 +51685 n43004045010 +51688 n43004044003 +51702 n43004044003 +51710 n43004044003 +51725 n43004046017 +51739 n43004046017 +51741 n43004047004 +51743 n43004047004 +51748 n43004047023 +n43004047023 +51761 n43004046017 n43004045010 +51764 n43004046017 n43004045010 +51771 n43004049006 +51781 n43004049005 +51797 n43004050012 +51806 n43004051006 +51813 n43004050012 +51821 n43004051012 +51823 n43004051006 +51867 n43004054008 +51895 n43005002009 +51900 n43005002009 +51951 n43005005004 +51960 n43005006004 +51962 n43005006004 +51967 n43005005004 +51970 n43005005004 +51972 n43005005004 +51976 n43005005004 +51980 n43005007004 +51986 n43005007006 +52004 n43005007004 +n43005007004 +52010 n43005007004 +52018 n43005009006 +52023 n43005009006 +52036 n43005009006 +52043 n43005010006 +52051 n43005008004 +52057 n43005010006 +52062 n43005010006 +n43005010004 +52070 n43005012006 +52072 n43005010006 +52074 n43005010006 +52077 n43005010006 +52081 n43005008004 +52101 n43005014006 +52103 n43005013003 +52105 n43005013003 +52107 n43005013003 +52118 n43005015003 +52125 n43005014006 +52138 n43005016008 +52159 n43005018008 +52165 n43005016008 +52172 n43005016008 +52177 n43005016008 +52185 n43005019004 +52189 n43005019004 +52195 n43005019015 +52201 n43005019015 +52224 n43005020003 +52234 n43005020003 +52247 n43005021004 +52253 n43005021013 +52265 n43005022004 +52274 n43005023002 +52287 n43005023018 +52291 n43005019004 +52302 n43005023018 +52311 n43005024010 +52313 n43005024010 +52322 n43005019004 +52329 n43005025007 +52356 n43005026004 +52358 n43005026012 +52363 n43005026004 +52366 n43005026012 +52370 n43005026012 +52372 n43005018008 +52389 n43005028010 +52407 n43005019004 +52412 n43005019004 +n43005019004 +52423 n43005019004 +52432 n43005026004 +52452 n43005019004 +52459 n43005032004 +52467 n43005033004 +52480 n43005019004 +52489 n43005035004 +52491 n43005035004 +52495 n43005018008 +52519 n43005019004 +52525 n43005019004 +52536 n43005037005 +52547 n43005018008 +52551 n43005018008 +52554 n43005018008 +52569 n43005018008 +52579 n43005018008 +52589 n43005018008 +n43005018008 +52595 n43005018008 +52600 n43005019004 +52602 n43005019004 +52610 n43005018008 +52623 n43005018008 +52634 n43005018008 +52638 n43005018008 +52642 n43005018008 +52652 n43005018008 +52654 n43005018008 +52673 n43005018008 +52676 n43005018008 +52689 n43005018008 +52694 n43005018008 +52713 n43006002004 +52717 n43006001005 +52729 n43006003006 +52746 n43006005006 +52750 n43006005006 +52761 n43006005006 n43006003012 +52768 n43006005006 +n43006005006 +52775 n43006005006 +n43006005006 +52824 n43006008006 +52850 n43006011006 +n43006011006 +52853 n43006010018 +52860 n43006011011 +52863 n43006011011 +n43006011006 +52868 n43006012006 +52870 n43006012011 +52877 n43006012006 +52879 n43006012006 +52892 n43006011011 +52896 n43006014003 +52898 n43006011006 +52908 n43006014014 +52913 n43006015001 +52915 n43006014003 +n43006014003 +52918 n43006014003 +52921 n43006014003 +52943 n43006016007 +52946 n43006016007 +52971 n43006016007 +52978 n43006016007 +52989 n43006019011 +52991 n43006016007 +52999 n43006016007 +53001 n43006016007 +n43006016007 +53017 n43006016007 +53023 n43006022004 +53064 n43006022004 +53090 n43006024005 +53093 n43006024005 +53097 n43006024005 +53102 n43006024005 +53107 n43006025009 +53113 n43006026004 +53116 n43006026004 +53118 n43006024005 +53122 n43006024005 +53126 n43006024005 +53131 n43006024005 +n43006024005 +53137 n43006027004 +53142 n43006027009 +53161 n43006024005 +53165 n43006024005 +53167 n43006024005 +53175 n43006029002 +53184 n43006024005 +53190 n43006024005 +53198 n43006024005 +53200 n43006024005 +53203 n43006029002 +53214 n43006031017 +n43006031017 +53220 n43006029012 +53222 n43006031018 +53230 n43006032005 +53271 n43006024005 +53276 n43006034005 +53308 n43006035004 +53312 n43006024005 +53316 n43006024005 +53333 n43006035004 +53336 n43006035004 +53342 n43006035004 +53351 n43006037006 +53359 n43006037006 +53364 n43006039007 +53367 n43006035004 +53371 n43006035004 +53413 n43006035004 +53419 n43006041012 +53424 n43006041004 +53442 n43006035004 +53447 n43006035004 +53451 n43006043002 +53454 n43006041004 +53459 n43006044001 +53467 n43006044009 +53478 n43006045009 +n43006045009 +53508 n43006043002 +53518 n43006043002 +53541 n43006049002 +53550 n43006050004 +53558 n43006050011 +53564 n43006051004 +53569 n43006051004 +53577 n43006051013 +53603 n43006052006 +53608 n43006043002 +53611 n43006052006 +53619 n43006053005 +53623 n43006052006 +53631 n43006052006 +53636 n43006052006 +53693 n43006057006 +53715 n43006058004 +53722 n43006058013 +53733 n43006053005 +53736 n43006053005 +53745 n43006060001 +53755 n43006060014 +53759 n43006061004 +53776 n43006061012 +53783 n43006062005 +53806 n43006063012 +53833 n43006064014 +53836 n43006064014 +53841 n43006065008 +53846 n43006065010 +n43006065010 +53866 n43006066003 +53877 n43006067006 +53885 n43006067006 +53889 n43006068005 +53894 n43006067006 +53919 n43006070004 +53927 n43006071004 +53944 n43007001006 +53948 n43007001006 +53952 n43007001021 +53971 n43007001006 +53974 n43007001006 +53988 n43007001006 +54000 n43007004001 +54003 n43007001006 +n43007001006 +54039 n43007007004 +54043 n43007007004 +54075 n43007006005 +54077 n43007006005 +54109 n43007011003 +54127 n43007006005 +54133 n43007006005 +54158 n43007014007 +54163 n43007015004 +54169 n43007014007 +54175 n43007016004 +54184 n43006069012 +54192 n43007017002 +n43007017002 +54201 n43007017011 +54218 n43007016004 +54222 n43007017015 +54248 n43007015004 +n43007015004 +54254 n43007016004 +54257 n43007020006 +54262 n43007021002 +54266 n43007021002 +54282 n43007022007 +54290 n43007020003 +54305 n43007020003 +54310 n43007021002 +54314 n43007020003 +54321 n43007020003 +54332 n43007015004 +n43007015004 +54335 n43007025003 +54337 n43007021002 +54341 n43007015004 +54355 n43007025003 +54357 n43007021002 +54362 n43007027008 +54366 n43007027008 +54372 n43007028008 +54376 n43007028008 +54378 n43007025003 n43007020003 +54380 n43007025003 n43007020003 +54382 n43007028008 +54387 n43007028008 +54392 n43007017015 +54404 n43007028008 +54409 n43007015004 +54411 n43007015004 +54434 n43007031005 +54438 n43007031012 +54442 n43007031012 +54464 n43007032017 +54475 n43007033004 +54477 n43007033004 +54480 n43007017015 +54482 n43007032005 +54486 n43007032005 +54491 n43007032005 +54502 n43007033004 +54511 n43007033004 +54517 n43007033004 +54519 n43007033004 +54528 n43007033004 +n43007035004 +54533 n43007035004 +54538 n43007035004 +54555 n43007037012 +n43007037012 +54560 n43007037017 +54564 n43007037017 +54575 n43007038015 +54583 n43007037012 +54588 n43007039011 +54606 n43007040003 +54666 n43007044001 +54691 n43007045004 +54732 n43007049003 +54742 n43007050002 +54746 n43007050002 +54759 n43007051003 +54764 n43007051003 +54766 n43007051007 +n43007047005 +54769 n43007047005 +54778 n43007050002 +54780 n43007050002 +54806 n43008001001 +54818 n43008001001 +n43008001001 +54833 n43008003010 +54835 n43008003004 n43008003007 +54839 n43008003004 n43008003007 +54847 n43008004006 +54857 n43008003004 n43008003007 +54864 n43008003004 n43008003007 +n43008003004 n43008003007 +54868 n43008003004 n43008003007 +n43008003004 n43008003007 +54875 n43008006012 +54884 n43008003004 n43008003007 +n43008003004 n43008003007 +54887 n43008006012 +n43008006012 +54903 n43008006012 +n43008006012 +54910 n43008003004 n43008003007 +54915 n43008003004 n43008003007 +54919 n43008003004 n43008003007 +54940 n43008010004 +54943 n43008010004 +54974 n43008009026 +54977 n43008009026 +54984 n43008012006 +55001 n43008012015 +55024 n43008014002 +55037 n43008014002 +55039 n43008014002 +55042 n43008014002 +55048 n43008014002 +55051 n43008014002 +55075 n43008014002 +55089 n43008017014 +55108 n43008018014 +55112 n43008013005 +55123 n43008013005 +55130 n43008013005 +55136 n43008013005 +55140 n43008019010 +55144 n43008019010 +55159 n43008019010 +55165 n43008013005 +55172 n43008013005 +55176 n43008013005 +55185 n43008019010 +55188 n43008019010 +55192 n43008022004 +55197 n43008019010 +55223 n43008019010 +55226 n43008022004 +55234 n43008022004 +55238 n43008022004 +55244 n43008022004 +55258 n43008025010 +55260 n43008025010 +55264 n43008025010 +55266 n43008025010 +55269 n43008019023 +55279 n43008025010 +55284 n43008022004 +55289 n43008025010 +55295 n43008022004 +55301 n43008022004 +55308 n43008028005 +55317 n43008028005 +55320 n43008028027 +55326 n43008029003 +55349 n43008031009 +55363 n43008031009 +55365 n43008031009 +55373 n43008031009 +55378 n43008031009 +55381 n43008031009 +55388 n43008031009 +55395 n43008034004 +55432 n43008031009 +n43008034004 +55437 n43008031009 +55439 n43008031009 +55441 n43008031009 +55457 n43008034004 +55462 n43008031009 +55467 n43008031009 +55469 n43008031009 +55484 n43008031009 +55489 n43008031009 +55492 n43008031009 +n43008031009 +55502 n43008039013 +55517 n43008031009 +55528 n43008031009 +55540 n43008031009 +55549 n43008042004 +55554 n43008042004 +55566 n43008031009 +55569 n43008031009 +n43008031009 +55588 n43008031009 +n43008031009 +55600 n43008044012 +55608 n43008044012 +55614 n43008044012 +55617 n43008044012 +55627 n43008042004 +55629 n43008031009 +55640 n43008042004 +55667 n43008031009 +55672 n43008048003 +55684 n43008042004 +55692 n43008049002 +55709 n43008049010 +55711 n43008049010 +55714 n43008049002 +55725 n43008051006 +55734 n43008052004 +55737 n43008049002 +55754 n43008052019 +55775 n43008049002 +55800 n43008054014 +55803 n43008052004 +55810 n43008054002 +55813 n43008054002 +55815 n43008054002 +55820 n43008054002 +55826 n43008054002 +55833 n43008056001 +55839 n43008056001 +55841 n43008056001 +55851 n43008054002 +55854 n43008054002 +55860 n43008058003 +55868 n43008057004 +55871 n43008057004 +55878 n43008059008 +55883 n43008059008 +n43008059008 +55895 n43009002005 +55906 n43009001004 +55931 n43009003016 +55941 n43009004015 +55946 n43009003002 +n43009003002 +55952 n43009003002 +n43009003002 +55956 n43009003002 +55962 n43009003002 +55970 n43009003002 +55972 n43009001004 +n43009001004 +55983 n43009001004 +55985 n43009001004 +55987 n43009001004 +n43009001004 +56000 n43009001004 +56013 n43009001004 +56020 n43009001004 +56027 n43009008003 n43009008006 +56040 n43009011004 +56045 n43009011004 +56050 n43009011004 +56053 n43009001004 +56058 n43009001004 +56060 n43009001004 +56062 n43009001004 +n43009001004 +56065 n43009008003 n43009008006 +56070 n43009001004 +56072 n43009001004 +n43009008003 n43009008006 +56093 n43009014011 +56105 n43009013008 +56111 n43009014011 +56117 n43009013008 +56119 n43009013008 +56137 n43009016013 +56146 n43009016023 +56153 n43009016005 +56163 n43009014011 +56172 n43009014011 +56181 n43009017004 +56184 n43009017004 +56187 n43009018005 +56192 n43009017004 +56194 n43009018005 +56196 n43009018005 +56207 n43009019008 +56210 n43009018020 +56218 n43009020004 +n43009020004 +56229 n43009018020 +56233 n43009018020 +56235 n43009020004 +56246 n43009018005 +56248 n43009018020 +56259 n43009022004 +56274 n43009022017 +56283 n43009018020 +56285 n43009022014 +56287 n43009022014 +56296 n43009022014 +56298 n43009024004 +56315 n43009014011 +56317 n43009024004 +56319 n43009024004 +56322 n43009024004 +56324 n43009024004 +56326 n43009022014 +56329 n43009014011 +56332 n43009014011 +56336 n43009024004 +56338 n43009024004 +56343 n43009022014 +56346 n43009022014 +n43009022014 +56354 n43009022014 +56356 n43009022014 +56359 n43009022014 +56380 n43009022014 +56382 n43009014011 +56387 n43009030003 +56400 n43009014011 +56402 n43009014011 +56406 n43009030003 n43009022014 +56422 n43009031010 +56424 n43009031004 +56429 n43009032007 +56435 n43009032010 +56443 n43009014011 +n43009014011 +56446 n43009022014 +56448 n43009022014 +56460 n43009022014 +56466 n43009022014 +56470 n43009035002 +56472 n43009035002 +56483 n43009030003 +56486 n43009035015 +56489 n43009030003 +56497 n43009030003 +56501 n43009035002 +56509 n43009030003 +56512 n43009030003 +56544 n43009040004 +56546 n43009040004 +56559 n43009040004 +56562 n43009040004 +56566 n43009040004 +56568 n43009040004 +56575 n43009041004 +56621 n43010002003 +56625 n43010002003 +56631 n43010002003 +56634 n43010002003 +56641 n43010004011 +56649 n43010004011 +56651 n43010004011 +56656 n43010004011 +56675 n43010006007 +56684 n43010007005 +56717 n43010009008 +56719 n43010009008 +56721 n43010009008 +56724 n43010009008 +56732 n43010010002 +56734 n43010010002 +56736 n43010010002 +56741 n43010007016 +56744 n43010007016 +56779 n43010012002 +56783 n43010012002 +56790 n43010012025 +56793 n43010012002 +56808 n43010007005 +56829 n43010007005 +56836 n43010007005 +56852 n43010016003 +56854 n43010016003 +56873 n43010007005 +56887 n43010007005 +n43010007005 +56892 n43010007005 +56894 n43010007005 +56899 n43010007005 +56920 n43010007005 +56922 n43010007005 +56925 n43010019006 +56939 n43010021010 +56967 n43010024005 +56974 n43010023004 +56980 n43010023004 +56987 n43010025004 +56991 n43010024005 +57013 n43010024005 +57031 n43010027002 +57041 n43010027002 +57058 n43010029002 +57066 n43010029011 +57084 n43010031005 +57093 n43010032004 +57103 n43010031005 +57112 n43010033004 +57121 n43010032004 +57130 n43010034014 +n43010034014 +57143 n43010035010 +57155 n43010035017 +57163 n43010036003 +57170 n43010036004 +57172 n43010034004 +57176 n43010034004 +57179 n43010034004 +57186 n43010033004 +57190 n43010034004 +57194 n43010033004 +57197 n43010033004 +57199 n43010033004 +57201 n43010033004 +57212 n43010033004 +57214 n43010033004 +57217 n43010034004 +57223 n43010034004 +57238 n43010034004 +57246 n43010041002 +57271 n43011001003 +57311 n43011003004 +57313 n43011003008 +57315 n43011003008 +57318 n43011004004 +57358 n43011005004 +57360 n43011005013 +57363 n43011005004 +57366 n43011005004 +57373 n43011005004 +57376 n43011007006 n43011005004 +57389 n43011008011 +57394 n43011008005 +57411 n43011009010 +57418 n43011009010 +57426 n43011010003 +57435 n43011009002 +57439 n43011009002 +57447 n43011009002 +57449 n43011009002 +57458 n43011011008 +n43011011008 +57477 n43011013004 +57488 n43011014006 +57492 n43011012004 +57495 n43011014006 +57498 n43011014006 n43011012004 +57505 n43011016003 +57513 n43011016003 n43011016008 +57517 n43011017004 +57551 n43011019001 +57558 n43011020003 +57580 n43011021007 +57590 n43011021004 +57594 n43011021007 +57613 n43011024004 +57615 n43011023007 +57639 n43011025013 +57655 n43011024004 +57657 n43011024004 +57676 n43011027011 +57679 n43011024004 +n43011024004 +57682 n43011024004 +57688 n43011024004 +57693 n43011028014 +57698 n43011028007 +57702 n43011028007 +57714 n43011030005 +57728 n43011031003 +57735 n43011031003 +57737 n43011031003 +57742 n43011031016 +57744 n43011031016 +57747 n43011031003 +57749 n43011031016 +57754 n43011031016 +57760 n43011032003 +57764 n43011032003 +57771 n43011032003 +57775 n43011032018 +57786 n43011033001 +57791 n43011033011 +57795 n43011033001 +57799 n43011033001 +57802 n43011033001 +57804 n43011033011 n43011032003 n43011024004 +57806 n43011033011 n43011032003 n43011024004 +57809 n43011034008 +57811 n43011034008 +57819 n43011036004 +57821 n43011035003 +57832 n43011035003 +57837 n43011037010 +57846 n43011038001 +57854 n43011038010 +57864 n43011024004 n43011032003 n43011036004 +57872 n43011019017 +57876 n43011039012 +57885 n43011040004 +57889 n43011039010 +n43011039010 +57896 n43011039010 n43011032003 n43011036004 +57907 n43011041007 +57909 n43011041007 +57912 n43011041014 +57920 n43011041014 +57926 n43011042011 +n43011041007 +57929 n43011042011 +57936 n43011041007 +57939 n43011041007 +57941 n43011043007 +57945 n43011043007 +n43011044003 +57963 n43011036004 n43011039010 n43011032003 +57966 n43011036004 n43011039010 n43011032003 +57975 n43011045001 +57980 n43011045001 +57982 n43011044020 +57995 n43011046001 +58009 n43011047004 n43011047007 +58011 n43011047004 n43011047007 +58020 n43011047004 n43011047007 +58032 n43011048012 +58047 n43011049001 +58058 n43011047004 n43011047007 +58080 n43011049001 +58083 n43011049001 +58087 n43011049001 +58091 n43011051016 +58109 n43011052011 +n43011051016 +58118 n43011047004 n43011047007 +58120 n43011047004 n43011047007 +58132 n43011054003 +58142 n43011054022 +58145 n43011054003 +58168 n43011055010 +58171 n43011055010 +58175 n43011055010 +58181 n43011055010 +58188 n43011056004 +58205 n43011056004 +n43011057011 +58208 n43011057004 n43011057007 +58251 n43012003003 +58263 n43012003003 +58289 n43012004003 +58291 n43012004003 +58302 n43012005009 +58305 n43012004003 +58317 n43012004003 +58321 n43012004003 +58324 n43012004003 +58329 n43012004003 +58338 n43012003003 +58344 n43012004003 n43012004009 +58351 n43012004003 n43012004009 +58362 n43012007004 +58364 n43012009004 +58373 n43012009004 +58377 n43012009017 +58388 n43012010004 +58397 n43012011002 +58407 n43012012004 +58411 n43012012004 +58417 n43012012004 +58423 n43012012004 +58428 n43012012004 +58432 n43012012014 +58442 n43012014004 +58450 n43012015002 n43012015009 +n43012015002 n43012015009 +58453 n43012015003 +58456 n43012015003 +58461 n43012015007 +58478 n43012016006 +58494 n43012017004 +58500 n43012016012 +58505 n43012016012 +58517 n43012018007 +58529 n43012019003 +58532 n43012019003 +58534 n43012019003 +58548 n43012020007 +58562 n43012020003 +58564 n43012020003 +58566 n43012020003 +58569 n43012020003 +58574 n43012022003 +58582 n43012022009 n43012022011 +58590 n43012023003 +58602 n43012023003 +58610 n43012024008 +58620 n43012024008 +58623 n43012024008 +58651 n43012026003 +58678 n43012023003 +58680 n43012027009 +58689 n43012023003 +58695 n43012028001 +58706 n43012028008 +58709 n43012028008 +58714 n43012029003 +58716 n43012029003 +58728 n43012030002 +58760 n43012030002 +58765 n43012030002 +n43012030002 +58769 n43012030002 +n43012030002 +58819 n43012034005 +58823 n43012034005 +58838 n43012035026 +58842 n43012034005 +n43012034005 +58850 n43012034005 +58855 n43012036015 +n43012036015 +58867 n43012034005 +58878 n43012038004 +58894 n43012034005 +n43012034005 +58900 n43012038019 +58905 n43012038019 +58921 n43012038019 +58927 n43012041003 +58932 n43012041003 +58950 n43012042007 +58954 n43012042007 +58956 n43012042007 +58971 n43012044001 +58983 n43012043012 +58991 n43012044017 +59019 n43012047003 +59026 n43012044001 +59028 n43012044001 +59033 n43012044001 +59052 n43012044001 +59068 n43012049011 +59076 n43012044001 +59079 n43012044001 +59081 n43012044001 +59099 n43012044001 +59108 n43013001009 +59115 n43013001009 +59123 n43013001009 +59150 n43013001009 +59164 n43013001009 +59169 n43013001009 +n43013001009 +59175 n43013001009 +59179 n43013001009 +59181 n43013001009 +59184 n43013001009 +59190 n43013001009 +n43013001009 +59197 n43013001009 +59201 n43013001009 +n43013001009 +59204 n43013001009 +59208 n43013006004 +59219 n43013007002 +59229 n43013006004 +59237 n43013007002 +59249 n43013008014 +59252 n43013008003 +59285 n43013010005 +59287 n43013010005 +59298 n43013010003 +59304 n43013010003 +59312 n43013010003 +59317 n43013010003 +59322 n43013010003 +59324 n43013010003 +59326 n43013005013 +59328 n43013010003 +59340 n43013005013 +59342 n43013010003 +59358 n43013005013 +59364 n43013014009 +59376 n43013014009 +59393 n43013005013 +59395 n43013005013 +59397 n43013005013 +59403 n43013014009 +59407 n43013014009 +59426 n43013014009 +59430 n43013018020 +59432 n43013005013 +59434 n43013018020 +59440 n43013014009 +59446 n43013014009 +59455 n43013003019 +59458 n43013021003 +59464 n43013021003 +59466 n43013021003 +59469 n43013021003 +59482 n43013022005 +59485 n43013021003 +59508 n43013023003 +59510 n43013023003 +59517 n43013023003 +59528 n43013024014 +59533 n43013024012 +59541 n43013026004 +59544 n43013026004 +59547 n43013026004 +59549 n43013026004 +59568 n43013026022 +n43013026022 +59579 n43013027014 +59593 n43013029008 +59596 n43013029001 n43013029008 n43013029012 n43013028006 +59605 n43013029008 +59607 n43013029008 +59618 n43013029008 +59648 n43013032003 +59655 n43013031005 +n43013033001 +59660 n43013031005 +59667 n43013033013 +59673 n43013031005 +59677 n43013031005 +59680 n43013033001 +59683 n43013031005 +59697 n43013033001 +59700 n43013033001 +59709 n43013036005 +59713 n43013036009 +59716 n43013036003 +59718 n43013036003 +59720 n43013036003 +59729 n43013037003 +59731 n43013037003 +59738 n43013037003 +59746 n43013037003 +59749 n43013038002 +59757 n43013037003 +59765 n43013023006 n43013037003 +59772 n43013023006 n43013037003 +59786 n43013038002 +59789 n43013038002 +n43013038002 +59795 n43013038002 +59797 n43013038002 +59801 n43013038002 +59803 n43013038002 +59818 n43013023006 n43013037003 +59826 n43014005003 n43013023006 n43013037003 +59828 n43014005004 +59830 n43014005003 n43013023006 n43013037003 +59856 n43013023006 n43014005003 n43013037003 +59863 n43013023006 n43014005003 n43013037003 +59866 n43013023006 n43014005003 n43013037003 +59869 n43013023006 n43014005003 n43013037003 +59874 n43014008004 +59879 n43014008005 +59889 n43014009004 +59892 n43014009014 +59904 n43014009004 +59909 n43014009014 +59930 n43014009004 +59936 n43014010026 +59960 n43013023006 n43014009014 n43014005003 n43013037003 +59963 n43014009004 +59979 n43014012006 +59990 n43013023006 n43014009014 n43014005003 n43013037003 +59996 n43014009004 +60006 n43013023006 n43014009014 n43014005003 n43013037003 +60015 n43013023006 n43014009014 n43014005003 n43013037003 +60021 n43013023006 n43014009014 n43014005003 n43013037003 +60029 n43014016004 +60032 n43014016007 +60043 n43014017007 +60050 n43014017007 +60053 n43014017007 +60060 n43014017002 +60064 n43014017002 +60066 n43014009004 +60069 n43014009004 +60135 n43014009004 +60149 n43014022007 +60151 n43014022007 +60160 n43014023002 +60169 n43014023007 +60179 n43014023016 n43014023002 +60184 n43014023002 n43014023016 +60198 n43013023006 n43013037003 n43014005003 n43014008003 n43013029008 +60204 n43014024022 +60208 n43014023002 +60212 n43014023002 +60233 n43014026003 +60241 n43014023002 +60246 n43014023002 +60262 n43014027021 +n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60268 n43014023002 +60270 n43014023002 +60274 n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60277 n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60279 n43014023002 +60291 n43014023002 +60294 n43014028017 +60297 n43014028017 +n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +60301 n43014023002 +60314 n43014030011 +60322 n43014023002 +60332 n43014023002 +n43013023006 n43014005003 n43014008003 n43013029008 n43013037003 +n43013023006 n43014023002 n43014005003 n43014008003 n43013029008 n43013037003 +60354 n43015002002 +60356 n43015001009 +60363 n43015001009 +60368 n43015002014 +60377 n43014023002 +60379 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60391 n43015004009 +60396 n43015004009 +60407 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60430 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60439 n43015006003 +60445 n43015006011 +60455 n43015006011 +60457 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60469 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60472 n43015007014 +60483 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60485 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60496 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60506 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60521 n43014023002 +60527 n43014023002 +60549 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60552 n43014023002 +60574 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60580 n43014023002 +60595 n43014023002 +60600 n43014023002 +60605 n43014023002 +60616 n43014023002 +60623 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60633 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60640 n43015016029 +60643 n43014023002 +60646 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60653 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60658 n43015018003 +60663 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60676 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60690 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60706 n43015019031 +60709 n43015019031 +60714 n43015019031 +60718 n43015019031 +60722 n43015019031 +60731 n43015019031 +60733 n43015016029 +60737 n43014023002 +60739 n43014023002 +60743 n43015019031 +60748 n43015019031 +60755 n43015019031 +60765 n43014023002 +60774 n43015023003 +60778 n43015023003 +60780 n43015023003 +60797 n43015025005 +60835 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60837 n43014023002 +60841 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60855 n43016002010 +60860 n43016002010 +60863 n43016002010 +60870 n43014023002 +60878 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60890 n43014023002 +60894 n43014023002 +60897 n43014023002 +60900 n43016003008 +60909 n43014023002 +60913 n43014023002 +60935 n43014023002 +60940 n43016007017 +60945 n43014023002 +n43014023002 +60951 n43016007017 +60969 n43016008006 +60979 n43014023002 +60982 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +60995 n43014023002 +60998 n43014023002 +61001 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61012 n43016013006 +61020 n43016013006 +61025 n43016013006 +n43016013006 +61030 n43016013006 +61039 n43016013006 +61041 n43016013006 +61052 n43014023002 +61057 n43016013006 +61059 n43016013006 +61064 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61070 n43013023006 n43013037003 n43014005003 n43014008003 n43014022003 +61084 n43014023002 +61089 n43016017005 +61095 n43016017005 +61099 n43014023002 +61104 n43016017005 +61109 n43014023002 +61113 n43016017005 +61115 n43014023002 +61119 n43016017005 +61121 n43016017005 +61123 n43016019002 +61127 n43016017005 +61131 n43016019002 +61135 n43016017005 +61141 n43016017005 +61145 n43016019002 +61148 n43016017005 +61170 n43016021002 +61178 n43016021002 +61182 n43016021002 +61203 n43016019002 +61225 n43016017005 +61229 n43016019002 +61233 n43016017005 +61245 n43016017005 +61251 n43016017005 +61253 n43016017005 +61263 n43016019002 +61271 n43016019002 +61278 n43016019002 +61288 n43016017005 +61291 n43016019002 +61311 n43016017005 +61318 n43016019002 +61323 n43016019002 +61328 n43016019002 +61332 n43016019002 +61340 n43016019002 +61344 n43016019002 +61348 n43016019002 +61350 n43016029003 +61352 n43016019002 +61357 n43016019002 +61364 n43016029003 +61368 n43016029003 +61373 n43016029003 +n43016029003 +61378 n43016032003 +61387 n43016029003 +61390 n43016031003 +61399 n43016031003 +61405 n43016029003 +61410 n43016029003 +61412 n43016029003 +61421 n43017001003 +61428 n43017001003 +61433 n43017001013 +61443 n43017001013 +61451 n43017001013 +61453 n43017001023 +61464 n43017002010 +61472 n43017001013 +61481 n43017001003 +61485 n43017003013 +61488 n43017001003 +61500 n43017001003 +61508 n43017001003 +61515 n43017005006 +61521 n43017006006 +61524 n43017005006 +61529 n43017006006 +61531 n43017006006 +61535 n43017005006 +61544 n43017005006 +61546 n43017001003 +61552 n43017006006 +61557 n43017001003 +61559 n43017006006 +61572 n43017001003 +61576 n43017005006 +61580 n43017009013 +61592 n43017001003 +61597 n43017001003 +61613 n43017011017 +61620 n43017011017 +61623 n43017009013 +61628 n43017001003 +61639 n43017011017 +61642 n43017001003 +61662 n43017001003 +61665 n43017001003 +61670 n43017009013 +61691 n43017009013 +61703 n43017001003 +61705 n43017011017 +61712 n43017011017 +61721 n43017009013 +61729 n43017011017 +61742 n43017011017 +61769 n43017001003 +61812 n43017021007 +61817 n43017009013 n43017020011 +61830 n43017009013 n43017020011 +n43017009013 n43017020011 +61843 n43017021007 +61847 n43017021007 +61850 n43017024001 +61852 n43017001003 +61862 n43017024003 +61868 n43017024001 +61871 n43017024001 +61896 n43017001003 +61902 n43017001003 +61907 n43017025001 +61916 n43018001003 +61944 n43018002004 +61960 n43018003003 +61982 n43018004001 +61990 n43018004001 +61993 n43018003006 n43018003015 +n43018003006 n43018003015 +61999 n43018004001 +62008 n43018005013 +62014 n43018004001 +62018 n43018003006 n43018003015 n43018005013 +62023 n43018003006 n43018003015 n43018005013 +62027 n43018004001 +62030 n43018003006 n43018003015 +62039 n43018008002 +62047 n43018003006 n43018003015 +n43018003006 n43018003015 +62056 n43018008002 +62059 n43017025001 +62062 n43018008002 +62069 n43018010001 +62074 n43018010001 +62080 n43018010001 +62098 n43018011006 +62113 n43018011004 +62130 n43018012003 n43018012006 n43018012009 +62133 n43018012003 n43018012006 n43018012009 +62138 n43018013004 +62181 n43018015012 +62208 n43018016012 +62212 n43018016012 +62236 n43018017004 +62245 n43018018004 n43018018007 +62250 n43018018004 n43018018007 +62301 n43018020003 +62305 n43018019003 +n43018019003 +62310 n43018020003 +62312 n43018019003 +62323 n43018022005 +62330 n43018022005 +62332 n43018022012 +62340 n43018023003 +n43018022005 +62350 n43018022005 +62356 n43018023003 +62367 n43018025003 +62382 n43018025003 +62384 n43018025003 +62392 n43018026002 +62417 n43018031019 +62438 n43018031019 +62440 n43018031019 +62451 n43018029004 +62457 n43018031019 +n43018031019 +62460 n43018031019 +62471 n43018031019 +62486 n43018031019 +62495 n43018031019 +62504 n43018032005 +n43018032005 +62508 n43018032005 +n43018032005 +62519 n43018033008 +62523 n43018033008 +62562 n43018034002 +62593 n43018036002 +62621 n43018037012 +62629 n43018037012 +62634 n43018037012 +62656 n43018038004 +62658 n43018038004 +62663 n43018038004 +62677 n43018038004 +62683 n43018038015 +n43018038004 +62691 n43018038015 +62693 n43018038015 +62712 n43019001005 +62716 n43019002003 +62727 n43019002003 +62730 n43019002003 +62734 n43019002003 +n43019003009 +62741 n43019002003 +62751 n43019004006 +62753 n43018038015 +n43019004006 +62759 n43018038015 +62763 n43019004006 +62771 n43019005004 +62780 n43019004006 +62782 n43018038015 +62794 n43019006006 n43019006009 +n43019006006 n43019006009 +n43019004006 +n43019004006 +62806 n43019006006 n43019006009 +62825 n43019005004 +n43019005004 +62831 n43019005004 +62841 n43019008005 +62843 n43019008005 +62849 n43019008005 +62869 n43019009016 +62871 n43019009016 +62874 n43019010005 +n43019010005 +62879 n43019010005 +n43019010005 +62885 n43019010005 +62892 n43019011005 +n43019011005 +62910 n43019012004 +62916 n43019012010 +62919 n43019012004 +62921 n43019012004 +62936 n43019013003 +62945 n43019013003 +62950 n43019013017 +62965 n43019013003 +62968 n43019014013 +62975 n43019013003 +n43019013003 +n43019013003 +62986 n43019015011 +62991 n43019015018 n43019014013 +62998 n43019015011 +63002 n43019013011 +63004 n43019015018 n43019014013 +63008 n43019016011 +63012 n43019016011 +63024 n43019014013 n43019015018 +63044 n43019019006 +63049 n43019019015 +n43019019015 +63078 n43019020004 +n43019020004 +63092 n43019021004 +63104 n43019020019 +63109 n43019022003 +n43019022003 +63118 n43019023003 +63123 n43019023003 +63144 n43019023003 +63148 n43019023003 +63151 n43019023003 +63155 n43019023025 +63204 n43019026001 +63212 n43019026001 +63217 n43019026015 +63222 n43019026001 +63225 n43019027004 +63245 n43019028005 +63255 n43019028005 +63266 n43019024035 +n43019024035 +63273 n43019030007 +63281 n43019030007 +63284 n43019030007 +63321 n43019031014 +63328 n43019032004 +63337 n43019032014 +63343 n43019032004 +63345 n43019032004 +63350 n43019032004 +63384 n43019035003 +63418 n43019038007 +63423 n43019038007 +63430 n43019038007 +63440 n43019038007 +63442 n43019038007 +63451 n43019039004 +63457 n43019039004 +63466 n43019038007 n43019039004 +63472 n43019038007 n43019039004 +63490 n43019040006 +63516 n43019038007 n43019039004 +63536 n43020001006 +63544 n43020001006 +63546 n43020001006 +63560 n43020001006 +63583 n43020003004 n43020003008 +63601 n43020004009 +63607 n43020004009 +n43020004009 +63614 n43020004009 +63620 n43020006004 +63623 n43020006004 +63628 n43020006004 +63645 n43020007003 +63648 n43020007003 +63660 n43020008007 +63666 n43020008007 +63668 n43020008007 +63671 n43020008007 n43020006004 +63694 n43020011001 +63697 n43020011001 +n43020011001 +63703 n43020011001 +63730 n43020013005 +n43020011001 +63740 n43020011001 +63745 n43020011001 +n43020011001 +63751 n43020011001 +63757 n43020011001 +63760 n43020014010 +63766 n43020015004 +63768 n43020015004 +63770 n43020011001 +63774 n43020015003 +63782 n43020015017 +63785 n43020015017 +63794 n43020011001 +63808 n43020011001 +63811 n43020017003 +63816 n43020011001 +63822 n43020011001 +63824 n43020017003 +63842 n43020018002 +63846 n43020018002 +63851 n43020018011 +63879 n43020019025 +63884 n43020019025 +63890 n43020019025 +n43020019025 +63903 n43020020015 +63924 n43020021005 +n43020021005 +63927 n43020021005 +63929 n43020020015 +63933 n43020020015 +63941 n43020020015 +n43020023010 +63950 n43020024001 +63965 n43020025006 +63974 n43020024001 +63984 n43020024001 +63994 n43020024001 +64004 n43020024001 +64026 n43020026017 +64031 n43020026017 +64035 n43020026017 +64038 n43020027004 +64044 n43020027004 +64049 n43020027004 +64054 n43020027004 +64061 n43020027004 +64068 n43020028002 +64082 n43020028002 +64084 n43020028002 +64148 n43021001006 +64157 n43021002006 +64181 n43021003003 +n43021003003 +n43021002006 n43021002011 n43021002018 n43021002027 +64190 n43021003003 n43021002006 n43021002011 n43021002018 n43021002027 +64192 n43021003003 n43021002006 n43021002011 n43021002018 n43021002027 +64201 n43021003003 n43021002006 n43021002011 n43021002018 n43021002027 +64219 n43021004006 +64228 n43021005005 +n43021004014 +64236 n43021004014 +64246 n43021004014 +64248 n43021004014 +64252 n43021004014 +n43021004014 +64272 n43021007009 +64276 n43021007015 +64280 n43021007009 +64285 n43021007015 +64288 n43021007015 +64302 n43021008004 +64312 n43021008004 +64319 n43021008004 n43021007015 +64323 n43021008004 n43021007015 +64335 n43021008004 n43021007015 +64340 n43021008004 n43021007015 +64346 n43021011002 +64360 n43021011012 +64369 n43021008004 n43021011002 +n43021008004 n43021011002 +64375 n43021012007 +64380 n43021012010 +64384 n43021012004 +64388 n43021013002 +64392 n43021013002 +64405 n43021014005 +64410 n43021014007 n43021014005 +64419 n43021015010 +64423 n43021015006 +64430 n43021015006 +64432 n43021015009 +64434 n43021015006 +64438 n43021015009 +64444 n43021016005 +64446 n43021015006 +64453 n43021015006 +64455 n43021015009 +64457 n43021015006 +64461 n43021015009 +64467 n43021017005 +64473 n43021015009 +64477 n43021017011 +64480 n43021017011 +64489 n43021017011 +64494 n43021017011 +64500 n43021017033 +64503 n43021017011 +64505 n43021017011 +64508 n43021017011 +64510 n43021017011 +64513 n43021017011 +n43021017011 +64523 n43021018022 +64526 n43021017011 +64529 n43021017033 +n43021017033 +64533 n43021017011 +64538 n43021017033 +n43021017033 +64541 n43021017011 +64543 n43021020003 +64565 n43021020006 +64574 n43021021005 +64591 n43021022004 +64593 n43021022004 +64622 n43021023011 +64627 n43021023020 +64629 n43021023020 +64638 n43021024004 +64643 n43021024004 +64674 n43021025023 +64687 n44001001013 +64689 n44001001013 +64696 n44001001013 +64700 n44001001013 +64704 n44001001013 +64707 n44001001013 +64709 n44001001013 +64720 n44001001013 +64723 n44001001013 +64731 n44001001013 +n44001001013 +64737 n44001002006 +64739 n44001002006 +64745 n44001002006 +64766 n44001002006 +64769 n44001002006 +64776 n44001006008 +64781 n44001001013 +64800 n44001002006 +64809 n44001002006 +64829 n44001001013 +64832 n44001001013 +64843 n44001002006 +n44001002006 +64865 n44001011004 +n44001011004 +64874 n44001011014 +64884 n44001011004 +64891 n44001002006 +64897 n44001012006 +64905 n44001012006 +64908 n44001002006 +64912 n44001002006 +64965 n44001015007 +65000 n44001016017 +65006 n44001016017 +n44001016017 +65011 n44001016017 +65028 n44001016017 +n44001016017 +65039 n44001018004 n44001018013 n44001018016 +65059 n44001020010 n44001020015 n44001020022 +65085 n44001021006 +65099 n44001021017 +65108 n44001021017 +65121 n44001015015 +65125 n44001023004 +65133 n44001015015 +n44001015015 +65141 n44001024005 +65147 n44001024015 +65159 n44001025012 +65166 n44001015015 +65176 n44001026010 +65207 n44002002007 +65212 n44002001010 +n44002001010 +65217 n44002003005 +65222 n44002003005 +65233 n44002004003 +n44002004003 +65241 n44002004003 +65267 n44002006008 +65278 n44002006008 +65280 n44002006008 +n44002006008 +n44002006008 +65287 n44002004003 +65301 n44002006008 +65335 n44002010017 +65358 n44002012003 +65362 n44002012003 +65366 n44002012012 +65369 n44002013001 +65373 n44002004003 +n44002004003 +65376 n44002014004 +65387 n44002014004 +65401 n44002014015 n44002014019 +65436 n44002017009 +65479 n44002017009 +65485 n44002018004 n44002018009 +65487 n44002017009 +65535 n44002022001 +65543 n44002022010 +65568 n44002023004 +65578 n44002022001 +n44002022001 +65584 n44002024003 +65602 n44002022007 +65613 n44002025008 +65616 n44002022007 +65639 n44002025008 +65646 n44002025008 +65652 n44002025008 +65656 n44002025008 +65666 n44002014004 +65677 n44002029011 +65679 n44002029011 +65693 n44002029011 +65695 n44002029011 +65707 n44002030011 +65712 n44002029011 +n44002029011 +65721 n44002031007 +65746 n44002032003 +65754 n44002032003 +65758 n44002032003 +65781 n44002034014 +65787 n44002034012 +65817 n44002012003 +n44002012003 +65822 n44002012003 +65831 n44002012003 +65838 n44002012003 +65854 n44002012003 +65885 n44002038001 +65887 n44002038001 +65889 n44002038001 +n44002012003 +65915 n44002041015 +n44002041015 +65952 n44002044004 +65961 n44002044004 +65963 n44002044004 +65974 n44002044004 +65980 n44002044004 +65984 n44002044004 +65991 n44002044004 +65995 n44002044004 +66035 n44003002003 +66047 n44003002017 +66050 n44003002003 +66059 n44003002003 +66064 n44003003003 n44003003005 +66070 n44003002003 +66073 n44003004003 +66080 n44003002003 +66087 n44003002003 +66091 n44003002003 +66103 n44003006003 +66106 n44003006003 +66114 n44003002003 +66116 n44003006003 +66121 n44003006003 +66133 n44003002003 +n44003002003 +66136 n44003002003 +66138 n44003002003 +66144 n44003002003 +66146 n44003002003 +66148 n44003002003 +66159 n44003002003 +66163 n44003009005 +66180 n44003009005 +66206 n44003011017 +66210 n44003012004 +66220 n44003012009 +66226 n44003012009 +66232 n44003012004 n44003011008 +66258 n44003012009 +66264 n44003013026 +66273 n44003012009 +66283 n44003012009 +66303 n44003012009 +66305 n44003012009 +66327 n44003012004 +66331 n44003017003 +66341 n44003018003 +66354 n44003017003 +66356 n44003017003 +66373 n44003020009 +66375 n44003020015 +66417 n44003017003 +66422 n44003022005 +66474 n44003025012 +66492 n44003026005 +66498 n44003026007 +66502 n44003026007 +66526 n44004001010 n44004001013 n44004001018 +66534 n44003012004 n44003011008 +66544 n44004001010 n44004001013 n44004001018 +66549 n44004001010 n44004001013 n44004001018 +66562 n44004002007 +66608 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66613 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66626 n44004008002 +66650 n44004010030 +66687 n44004011004 +66693 n44004011004 +66714 n44004012011 +66723 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66731 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66735 n44004013005 n44004013008 +66738 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66740 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66746 n44004013005 n44004013008 +66748 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66752 n44004014003 +66757 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66760 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66766 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66769 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66771 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66790 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66797 n44004016012 +66801 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66804 n44004016005 +66812 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66814 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66817 n44004013005 n44004013008 +66819 n44004013005 n44004013008 +66830 n44004019003 n44004019005 +66846 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66852 n44004019003 n44004019005 +66854 n44004019003 n44004019005 +66856 n44004019003 n44004019005 +66859 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66863 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66866 n44004005009 n44004005012 n44004005015 n44004006002 n44004006006 n44004006008 n44004006010 n44004006015 +66895 n44004019003 n44004019005 +n44004019003 n44004019005 +66901 n44004019003 n44004019005 +66913 n44004023006 +66921 n44004023006 +66994 n44004024012 +67005 n44004027017 n44004027020 +67019 n44004029004 +67025 n44004029004 +67032 n44004029013 +67065 n44004023006 +n44004023006 +67074 n44004031013 +67140 n44004034010 +67147 n44004034010 +67154 n44004034018 +67164 n44004036001 +67181 n44004036001 +n44004036001 +67186 n44004036001 +67205 n44005001001 +67214 n44005001001 +67222 n44005001001 +67243 n44005003005 +67250 n44005003026 +67252 n44005003026 +67254 n44005003026 +67259 n44005003026 +67262 n44005003005 +67271 n44005003005 +67279 n44005005004 +67283 n44005005004 +67294 n44005006004 +67300 n44005006004 +n44005006004 +67313 n44005007009 +67322 n44005007009 +67328 n44005007009 n44005005004 +67343 n44005005004 n44005007009 +67347 n44005007009 +67351 n44005006004 +67359 n44005009018 +67362 n44005007009 +67369 n44005007009 +67371 n44005010013 +67378 n44005010013 +n44005010013 +67425 n44005013004 +67435 n44005014007 +67448 n44005014007 +67452 n44005014007 +67475 n44005016005 +67486 n44005017004 n44005017007 +67495 n44005017007 +67502 n44005017004 n44005017007 +67509 n44005017004 n44005017007 +67525 n44005019001 +67527 n44005019001 +n44005018007 +67530 n44005018007 +n44005018007 +67544 n44005018007 +n44005018007 +67553 n44005018007 +67555 n44005021015 n44005021017 +67573 n44005021015 n44005021017 +67581 n44005022004 +67590 n44005022004 +n44005022004 +n44005022004 +67594 n44005022004 +67609 n44005022004 +67612 n44005022004 +67627 n44005024009 n44005024014 +67635 n44005025003 +67640 n44005024009 n44005024014 +67644 n44005024009 n44005024014 +67654 n44005025009 +67658 n44005026004 +67670 n44005026007 n44005026004 +67674 n44005026007 n44005026004 +67676 n44005026004 n44005026007 +67678 n44005026004 n44005026007 +67687 n44005027012 +67689 n44005027012 n44005021017 n44005027007 n44005021026 +67692 n44005018007 +67698 n44005018007 +n44005018007 +67706 n44005018007 +n44005018007 +67716 n44005029003 n44005029006 +67723 n44005029003 n44005029006 +67738 n44005027012 n44005021017 n44005027007 n44005021026 +67752 n44005030007 +67780 n44005027012 n44005021017 n44005027007 n44005021026 +67783 n44005027012 n44005021017 n44005027007 n44005021026 +n44005027012 n44005021017 n44005027007 n44005021026 +67787 n44005034003 +67807 n44005034003 +67812 n44005035005 +67819 n44005035005 +n44005035005 +67828 n44005036007 +67847 n44005036023 +67862 n44005037004 +67877 n44005034003 +67879 n44005035005 +67885 n44005035005 +67899 n44005038020 n44005038024 +67904 n44005038020 n44005038024 +67906 n44005035005 +n44005035005 +67913 n44005035005 +67915 n44005027012 n44005021017 n44005027007 n44005021026 +67918 n44005027012 n44005021017 n44005027007 n44005021026 +67921 n44005027012 n44005021017 n44005027007 n44005021026 +n44005027012 n44005021017 n44005027007 n44005021026 +67924 n44005040004 +67931 n44005027012 n44005021017 n44005027007 n44005021026 +67936 n44005040004 +67942 n44005040004 +67946 n44005040004 +67957 n44005040004 +n44005040004 +67960 n44005040004 +67992 n44006002004 +68002 n44006002004 +68011 n44006003003 +68015 n44006003004 +68022 n44006002004 +68046 n44006005008 +68069 n44006005008 +68074 n44006006005 +n44006006005 +68124 n44006009007 +68136 n44006009003 +68141 n44006009003 +n44006009003 +68149 n44006009023 +68151 n44006009003 +68153 n44006011003 +68155 n44006011003 +68166 n44006009003 +68176 n44006012004 n44006012007 n44006012010 +n44006012004 n44006012007 n44006012010 +68180 n44006012004 n44006012007 n44006012010 +68185 n44006012004 n44006012007 n44006012010 +68188 n44006013003 +68194 n44006013007 +68205 n44006013003 +68218 n44006014006 +68226 n44006015007 +68257 n44007002004 +68267 n44007002015 +68278 n44007002010 +68281 n44007002015 +68291 n44007002015 +68298 n44007002010 +68300 n44007002015 +68304 n44007002015 +68314 n44007002010 +68327 n44007002010 +68336 n44007002010 +n44007002010 +68378 n44007006009 +68387 n44007006009 +68389 n44007006009 +68396 n44007007010 +68402 n44007002015 +68406 n44007002015 +68424 n44007009003 +68437 n44007009013 +68445 n44007009013 +68455 n44007010016 +68486 n44007012003 +68514 n44007014003 +68542 n44007015003 n44007015011 +68546 n44007015003 n44007015011 +68594 n44007018004 +68602 n44007018004 +68610 n44007019012 +68617 n44007020005 +68639 n44007021007 +68651 n44007022003 +68669 n44007022003 +68677 n44007022003 +68680 n44007022003 +68682 n44007022003 +68685 n44007024003 +n44007022003 +68690 n44007022003 +68709 n44007026004 +68711 n44007022003 +68713 n44007025005 +68715 n44007022003 +68719 n44007022003 +68722 n44007026014 +68725 n44007026014 +68734 n44007027003 +68744 n44007022003 +68750 n44007022003 +68762 n44007029003 +68768 n44007029003 +68791 n44007031003 +68798 n44007031003 +68817 n44007032017 +68821 n44007032017 +68827 n44007032017 +68838 n44007032017 +68842 n44007033005 +n44007033005 +68856 n44007033005 +68858 n44007033005 +n44007033005 +68863 n44007032017 +n44007033005 +68872 n44007025005 +n44007025005 +68892 n44007035023 +68900 n44007035003 +68922 n44007037004 +68951 n44007038013 +68964 n44007038027 +n44007037004 +68971 n44007039007 +68976 n44007039007 +68978 n44007039007 +68985 n44007039007 +68988 n44007040003 +69005 n44007039007 +69010 n44007039007 +69016 n44007039007 +69021 n44007039007 +69033 n44007042004 +69041 n44007042023 +69050 n44007042030 +69060 n44007042030 +69074 n44007042030 +n44007042030 +69078 n44007042004 +69096 n44007042004 +69099 n44007044017 +69105 n44007044017 +69109 n44007045006 +69140 n44007045027 +n44007045027 +69221 n44007052007 +69223 n44007052003 +69245 n44007051001 +69247 n44006012004 n44006012007 n44006012010 +69249 n44006012004 n44006012007 n44006012010 +69254 n44006012004 n44006012007 n44006012010 +69260 n44006009023 +69264 n44006009023 +69268 n44006009023 +69279 n44006009023 +n44006012004 n44006012007 n44006012010 +n44006009023 +69296 n44006012004 n44006012007 n44006012010 +69299 n44006012004 n44006012007 n44006012010 +69304 n44006012004 n44006012007 n44006012010 +69309 n44006012004 n44006012007 n44006012010 +69313 n44006012004 n44006012007 n44006012010 +69325 n44007058017 +69328 n44006012004 n44006012007 n44006012010 +69331 n44007059004 +69333 n44007059004 +69336 n44007059008 +69341 n44007059004 +69344 n44007059004 +69349 n44007060008 +69356 n44007059004 +n44007059004 +69399 n44008002005 +69412 n44008003001 +n44008003001 +69418 n44008003001 +69424 n44008001022 +69426 n44008004004 +69431 n44008005001 +69456 n44008006004 +69460 n44008006009 +69467 n44008007005 +69470 n44008007005 +69494 n44008009001 +69496 n44008009001 +69501 n44008009001 +69513 n44008010003 +69521 n44008010012 +69524 n44008010003 +69532 n44008009001 +69536 n44008010003 +69539 n44008012005 +69562 n44008013003 +n44008013003 +n44008013003 +69567 n44008013003 +69574 n44008013003 +69580 n44008014006 +69596 n44008014018 n44008014020 +69601 n44008014010 +69606 n44008015008 +n44008015008 +69613 n44008014010 +n44008014010 +69622 n44008014018 n44008014020 +69628 n44008014010 +69634 n44008018004 +69649 n44008018004 +n44008018012 +69658 n44008018004 +69678 n44008018004 +69685 n44008018004 +69707 n44008018004 +69714 n44008018004 +69735 n44008020001 +69737 n44008024004 +69754 n44008020001 n44008014020 +69758 n44008020001 n44008014020 +69760 n44008020001 n44008014020 +69773 n44008020001 n44008014020 +69780 n44008026001 +n44008026006 +69783 n44008026006 +69790 n44008026015 +69799 n44008026006 +n44008026006 +69819 n44008027006 +69822 n44008027006 +69824 n44008027006 +69826 n44008027006 +69832 n44008027006 +69842 n44008029006 +69844 n44008029006 +69849 n44008030004 +69859 n44008030004 +69862 n44008027006 +69864 n44008027006 +69871 n44008027006 +69878 n44008027006 +69881 n44008031016 +69891 n44008027006 +69898 n44008016016 +69909 n44008016016 +69934 n44008034004 +69940 n44008034004 +69957 n44008035004 +69962 n44008035004 +69973 n44008035004 n44008034004 +69977 n44008034004 n44008035004 +69985 n44008035004 +69992 n44008036014 +70009 n44008038014 +70013 n44008038014 n44008038017 +70030 n44008039018 +70034 n44008039018 +70041 n44008040001 +n44008040001 +70056 n44009001003 +70065 n44009001003 +70068 n44009001003 +70079 n44009001003 +70083 n44009002012 +70088 n44009002012 +n44009001003 +70095 n44009001003 +70110 n44009001003 +70114 n44009001003 +70122 n44009004010 +70124 n44009001003 +70126 n44009005005 +70137 n44009001003 +70139 n44009001003 +70144 n44009006014 +70155 n44009007003 +70160 n44009007003 +70165 n44009007003 +70178 n44009008003 +70180 n44009007003 +70182 n44009007003 +70186 n44009008003 +n44009008003 +70193 n44009008003 +70195 n44009008003 +70216 n44009010023 +70224 n44009010004 +n44009010004 +70230 n44009011010 +70233 n44009010004 +70241 n44009010004 +n44009011021 +70244 n44009011021 +70250 n44009012003 +70254 n44009011021 +70259 n44009013003 +70271 n44009013010 +70276 n44009013010 +70281 n44009013010 +70294 n44009013003 +70302 n44009013010 +70330 n44009017003 +70335 n44009017003 +70340 n44009017003 +70347 n44009017022 +70353 n44009017016 +70357 n44009017016 +70359 n44009017016 +70372 n44009008003 +70374 n44009008003 +n44009008003 +70377 n44009008003 +70379 n44009008003 +70381 n44009008003 +70394 n44009008003 +70410 n44009021005 +70427 n44009008003 +70429 n44009021016 +70431 n44009008003 +70440 n44009022001 +70443 n44009022007 +70446 n44009022001 +70460 n44009023008 +70470 n44009023008 +70480 n44009023008 +70482 n44009025004 +70492 n44009025004 +70496 n44009024004 +70499 n44009024004 +n44009024004 +70508 n44009026010 +70510 n44009024004 +70514 n44009027001 +70521 n44009027001 +70527 n44009024004 +70532 n44009027018 +70538 n44009024004 +70544 n44009024004 +n44009024004 +70547 n44009024004 +70552 n44009024004 +70559 n44009024004 +70561 n44009024004 +70568 n44009029007 +70571 n44009030004 +70579 n44009030004 +70597 n44009031004 +70599 n44009031004 +70610 n44009031004 +70614 n44009032003 +70623 n44009032011 +70626 n44009032003 +70635 n44009033004 +70640 n44009033004 +70651 n44009034006 +70653 n44009034006 +70657 n44009033004 +70682 n44009036008 +70693 n44009036006 +70700 n44009036006 +70716 n44009038008 +70727 n44009038008 +70729 n44009038011 +n44009038011 +70734 n44009039003 +70739 n44009039003 +n44009038017 +70750 n44009039017 +70752 n44009039017 +70760 n44009039030 +70766 n44009040006 +70770 n44009040006 +70775 n44009040006 +70779 n44009040006 +70781 n44009040018 +70789 n44009039030 +70792 n44009039030 +70794 n44009040029 +70797 n44009040029 +70800 n44009040029 +70806 n44009040029 +70808 n44009039030 +70826 n44009040029 +70844 n44010001010 +70848 n44010001001 +70856 n44010001001 +70862 n44010001001 +70867 n44010001001 +70884 n44010003011 +70889 n44010001001 +70893 n44010001001 +70899 n44010003011 +70916 n44010001001 +70921 n44010001001 +70944 n44010007005 +70946 n44010001001 +70954 n44010007014 +70957 n44010001001 +70960 n44010001001 +70973 n44010007010 n44010007014 +70979 n44010009011 +70984 n44010009011 +70987 n44010009011 +n44010009011 +70997 n44010009011 +71010 n44010011008 +71034 n44010013007 +n44010013007 +71037 n44010013007 +71046 n44010014003 +71091 n44010017007 +71096 n44010017017 +71100 n44010017017 +71110 n44010017017 +n44010017017 +71115 n44010018005 +71129 n44010019003 +71135 n44010019003 +n44010019003 +71138 n44010019003 +71142 n44010019003 +71148 n44010021003 +71158 n44010021006 +71164 n44010021006 +71173 n44010022006 +71177 n44010022006 +71188 n44010022004 +71195 n44010022004 +71200 n44010021003 +71202 n44010021003 +71206 n44010021003 +n44010021003 +71222 n44010021003 +71232 n44010024010 +71247 n44010025011 +71251 n44010025011 +71261 n44010026003 +n44010025011 +71269 n44010026003 +71271 n44010026003 +71273 n44010026003 +71277 n44010026003 +71287 n44010028010 +71289 n44010028010 +71300 n44010026003 +71304 n44010026003 +n44010026003 +71307 n44010026003 +71310 n44010027008 n44010025011 +71323 n44010030003 +n44010030003 +71332 n44010026003 +71341 n44010030022 +71356 n44010031003 +71360 n44010031003 +71375 n44010030003 +71382 n44010026003 +71391 n44010030003 n44010027008 +71401 n44010034003 +71407 n44010034003 +71430 n44010034015 +71434 n44010034015 +71447 n44010037005 +71452 n44010037005 +71477 n44010038001 +71479 n44010038001 +71497 n44010038001 +71508 n44010039012 +n44010039012 +71521 n44010040003 +71532 n44010041006 +71549 n44010038001 +71551 n44010041006 +71555 n44010041006 +71560 n44010042017 +71625 n44010045006 +71630 n44010045015 +71639 n44010047006 +71656 n44010046012 +71665 n44010045015 +71678 n44011001007 +71703 n44011002010 +71705 n44011002004 +71709 n44011003005 +71711 n44011002004 +71714 n44011004003 +71719 n44011004003 +71727 n44011004003 +71744 n44011005013 +71749 n44011004003 +n44011004003 +71752 n44011004003 +71769 n44011004003 +71775 n44011007008 +n44011007008 +71778 n44011007008 +71780 n44011004003 +71821 n44011004003 +71831 n44010017027 n44011004003 +n44011011005 +71842 n44011004003 +71845 n44011004003 +71856 n44011012017 n44011004003 +71863 n44011012025 +71866 n44011012025 +71875 n44011013007 +n44011012025 +71880 n44011012025 +71883 n44011013020 +71904 n44011004003 +71919 n44011004003 +71925 n44011016006 +71948 n44011002010 n44011012017 n44011004003 +71958 n44011004003 +71962 n44011002010 +71964 n44011002010 +71966 n44011002010 +71969 n44011002010 +71989 n44011019007 +72000 n44011019004 +72017 n44011020003 +72025 n44011020003 +72039 n44011021009 +72056 n44011022009 +72060 n44011022009 +72065 n44011022018 +72067 n44011022018 +72075 n44011022018 +72085 n44011022018 +72101 n44011022018 +72104 n44011022018 +72107 n44011022018 +n44011022018 +72117 n44011025006 n44011022018 +72122 n44011025006 n44011022018 +72126 n44011025006 n44011022018 +72145 n44011028003 +72158 n44011028012 +72178 n44011029008 +72180 n44011029018 +72187 n44011029003 +n44011029003 +72208 n44012001007 +72215 n44012001007 +72222 n44012001007 +72225 n44012002001 +72228 n44012001007 +n44012001007 +72239 n44012001007 +n44012001007 +72243 n44012001007 +72247 n44012004009 +72249 n44012001007 +72253 n44012001007 +72281 n44012006007 +72295 n44012006013 +72318 n44012007003 +72323 n44012007003 +72325 n44012007003 +n44012007017 +72343 n44012007017 +72345 n44012007017 +72350 n44012007017 +72353 n44012008004 +72355 n44012007017 +72360 n44012007017 +72363 n44012007017 +n44012007017 +72367 n44012007017 +72377 n44012007017 +72379 n44012007017 +72381 n44012009014 n44012007017 +72386 n44012009014 n44012007017 +72393 n44012010010 +72402 n44012009014 n44012007017 +n44012009014 n44012007017 +72418 n44012011003 +72421 n44012011003 +72431 n44012011016 +72445 n44012011003 +n44012011003 +72456 n44012012011 +72472 n44012013009 +72477 n44012013009 +72486 n44012013009 +72490 n44012013009 +n44012013009 +72503 n44012013009 +72514 n44012014019 +72520 n44012016003 +72522 n44012012017 +n44012012017 +72526 n44012012017 +72528 n44012016003 +72532 n44012012017 +n44012016003 +72544 n44012016003 +n44012012017 +72552 n44012016003 +n44012016003 +72574 n44012019001 +72578 n44012019001 +n44012019001 +72583 n44012019010 +72585 n44012019001 +72591 n44012019001 +72593 n44012019001 +n44012019001 +72600 n44012020004 n44012020006 +72604 n44012020004 n44012020006 +72612 n44012020004 n44012020006 +72628 n44012021005 +72631 n44012021005 +72656 n44012021005 +72662 n44012021005 +72664 n44012021005 +72680 n44012025001 n44012025004 +72683 n44012025001 n44012025004 +72686 n44012025012 +72694 n44013001008 +72705 n44013001016 +72725 n44013001009 n44013001011 +72732 n44013001009 n44013001011 +72742 n44013002010 +72745 n44013001009 n44013001011 +72747 n44013001009 n44013001011 +72749 n44013001009 n44013001011 +72753 n44013001009 n44013001011 +72757 n44013002017 n44013002019 +72767 n44013002017 n44013002019 +72771 n44013002017 n44013002019 +72774 n44013002017 n44013002019 +72785 n44013002017 n44013002019 +72790 n44013002017 n44013002019 n44013005018 +72796 n44013002017 n44013002019 n44013005018 +72815 n44013007005 +72820 n44013007005 +72837 n44013008004 +n44013008004 +72849 n44013009001 +72852 n44013009001 +72855 n44013009001 +72869 n44013010003 +n44013010003 +72879 n44013010003 +72885 n44013010003 +72888 n44013010003 +72902 n44013008004 +n44013008004 +72908 n44013012004 +72912 n44013012004 +72919 n44013013006 +72933 n44013013014 +72941 n44013013006 n44013013008 +72951 n44013013006 n44013013008 +72959 n44013013006 n44013013008 +72974 n44013015012 +72987 n44013015016 +72990 n44013016003 +72992 n44013016003 +73003 n44013016009 n44013016013 +73017 n44013017002 +73028 n44013017002 +73036 n44013017002 +73042 n44013017002 +73048 n44013017002 +73060 n44013017002 +73066 n44013017013 +73084 n44013021008 +73086 n44013021008 +73094 n44013021008 +n44013021008 +n44013021008 +73144 n44013025004 +73148 n44013024012 +73153 n44013024012 +73159 n44013025004 +73165 n44013025004 +73175 n44013026007 +73195 n44013027003 n44013027008 +73205 n44013027014 +n44013027003 n44013027008 +73212 n44013027003 n44013027008 +n44013027003 n44013027008 +73219 n44013027003 n44013027008 +73268 n44013032009 +73278 n44013033004 +73287 n44013033019 n44013033025 +73298 n44013033004 +73303 n44013033010 +n44013033010 +73308 n44013033004 +73310 n44013033004 +73321 n44013033004 +73323 n44013033004 +73334 n44013036001 +73341 n44013036001 +73347 n44013036001 +73359 n44013038011 n44013039006 +73375 n44013038005 +73379 n44013038005 +73387 n44013038005 +73391 n44013041001 n44013041005 n44013041007 n44013041010 n44013041016 +73395 n44013041003 +73399 n44013041003 +73401 n44013041003 +73414 n44013041003 +73442 n44013043012 +73450 n44013043014 n44013043017 +73461 n44013044004 +73468 n44013044008 +73476 n44013045004 +73482 n44013045004 +73487 n44013045004 +73489 n44013046004 n44013046007 +73506 n44013045004 +73510 n44013045004 +73516 n44013046004 n44013046007 +n44013046004 n44013046007 +73527 n44013047006 +73542 n44013048004 +73547 n44013048004 +73575 n44013050007 +73585 n44013050007 n44013050012 n44013050003 +73593 n44013050007 n44013050012 n44013050003 +73601 n44013050020 n44013050022 +73634 n44013050020 n44013050022 +73646 n44014002004 +73662 n44013050020 n44013050022 +n44013050020 n44013050022 +73668 n44014003009 +73675 n44014003009 +73715 n44014005004 +73717 n44014005006 n44014005009 n44014005012 +73719 n44014004018 +n44014004018 +73733 n44014004018 +n44014004018 +73758 n44014009004 +73761 n44014009004 +73763 n44014008003 +73766 n44014008003 +n44014009006 +73770 n44014008003 +73777 n44014008003 +73779 n44014008003 +73783 n44014011003 +73792 n44014011003 +73795 n44014011015 +73801 n44014011003 +73822 n44014013005 +73832 n44014013003 +73837 n44014013003 +73839 n44014014004 +73845 n44014014004 +73853 n44014014004 +73855 n44014014004 +73859 n44014015003 +73866 n44014014004 +73872 n44014015003 +73875 n44014015021 +73894 n44014016005 +73908 n44014015021 +n44014015021 +73913 n44014015021 +73917 n44014015021 +73926 n44014014004 +73928 n44014014004 +73933 n44014018007 +73943 n44014019007 +73947 n44014019007 +73950 n44014019007 +73954 n44014019007 +73962 n44014019015 +n44014019015 +73970 n44014019015 +73977 n44014020017 n44014019015 +73982 n44014020017 n44014019015 +73984 n44014020017 n44014019015 +73994 n44014020017 n44014019015 +73999 n44014020017 n44014019015 +n44014022005 +74017 n44014020017 n44014019015 +74022 n44014020017 n44014019015 +74025 n44014020017 n44014019015 +74031 n44014022005 n44014023006 +74033 n44014020017 n44014019015 +74036 n44014020017 n44014019015 +74041 n44014020017 n44014019015 +74046 n44014020017 n44014019015 +74050 n44014020017 n44014019015 +74054 n44014020017 n44014019015 +n44014020017 n44014019015 +74064 n44014020017 n44014019015 +74066 n44014020017 n44014019015 +74068 n44014020017 n44014019015 +74071 n44014020017 n44014019015 +74080 n44014027011 +74086 n44014020017 n44014019015 +74095 n44015001002 +74105 n44015001009 +74111 n44015001009 +n44015001009 +74127 n44015001009 +74151 n44015002017 n44015002019 n44015002022 +74161 n44015002017 n44015002019 n44015002022 +74167 n44015002017 n44015002019 n44015002022 +74174 n44015002017 n44015002019 n44015002022 +74177 n44015002017 n44015002019 n44015002022 +74188 n44015002017 n44015002019 n44015002022 +74204 n44015005003 +n44015005003 +74212 n44015003018 +74223 n44015006004 n44015006007 +74232 n44015007006 +74262 n44015007029 +74269 n44015008003 +74279 n44015008003 +74287 n44015008003 +74294 n44015007010 +74297 n44015007010 +74305 n44015010017 n44015007010 n44015007006 +74314 n44015007010 n44015007006 +74321 n44015007010 n44015007006 +74332 n44015012005 +74356 n44015013007 +74359 n44015013009 +74368 n44015014006 +74383 n44015016003 n44015016005 n44015016015 n44015016017 n44015017003 n44015017022 +74386 n44015014006 +74388 n44015014006 +74393 n44015016007 +74398 n44015014006 +74400 n44015014006 +74425 n44015017023 +74434 n44015013007 n44015013009 +74439 n44015019006 +74444 n44015013007 n44015013009 +74447 n44015019006 +74477 n44015021001 +74489 n44015022004 n44015022007 n44015022011 +74493 n44015022004 n44015022007 n44015022011 +74503 n44015022024 +74508 n44015022030 +74512 n44015022004 n44015022007 n44015022011 +74534 n44015023006;n44015023009 +74536 n44015023006 n44015023009 +74544 n44015024004 +74550 n44015023006 n44015023009 +74553 n44015023006 n44015023009 +74555 n44015023006 n44015023009 +74557 n44015023006 n44015023009 +74568 n44015026001 +74581 n44015023006 n44015023009 +74589 n44015027003 n44015027005 +74603 n44015028004 n44015023006 n44015023009 +74609 n44015023019 +74619 n44015023019 +74622 n44015023019 +n44015023019 +74627 n44015022021 n44015022023 n44015022024 n44015022029 +74632 n44015022021 n44015022023 n44015022024 n44015022029 +74635 n44015022021 n44015022023 n44015022024 n44015022029 +74639 n44015030011 +n44015030011 +74659 n44015032001 n44015032004 +74661 n44015032001 n44015032004 +74663 n44015032001 n44015032004 +74671 n44015022004 n44015022007 n44015022011 +74680 n44015035001 n44015035004 +74682 n44015035001 n44015035004 +74700 n44015036008 n44015036007 +n44015036008 n44015036007 +74709 n44015036008 n44015036007 +74715 n44015036013 +74719 n44015037001 +74724 n44015037007 +74730 n44015037007 +74737 n44015037007 +74743 n44015038001 +74756 n44015039011 +74764 n44015040001 +74767 n44015040001 +74776 n44015040001 +74781 n44015040001 +74785 n44015040001 +74824 n44016003004 +n44016003004 +74831 n44016003014 +74847 n44016003004 n44015040004 n44016001011 +74850 n44016003004 n44015040004 n44016001011 +74852 n44016004005 +74856 n44016004010 +74873 n44016005004 +74879 n44016003004 n44015040004 n44016001011 +74885 n44016003004 n44015040004 n44016001011 +74890 n44016003004 n44015040004 n44016001011 +74897 n44016003004 n44015040004 n44016001011 +74901 n44016003004 n44015040004 n44016001011 +74905 n44016003004 n44015040004 n44016001011 +74914 n44016003004 n44015040004 n44016001011 +74917 n44016003004 n44015040004 n44016001011 +74937 n44016009006 +74940 n44016009006 +74946 n44016009006 +74948 n44016009006 n44015040004 n44016001011 +n44016009006 n44015040004 n44016001011 +74952 n44016009006 n44015040004 n44016001011 +74961 n44016009006 n44015040004 n44016001011 +74964 n44016009006 n44015040004 n44016001011 +74985 n44016009006 n44015040004 n44016001011 +n44016009006 n44015040004 n44016001011 +74998 n44016009006 n44015040004 n44016001011 +75007 n44016009006 n44015040004 n44016001011 +75009 n44016009006 n44015040004 n44016001011 +n44016009006 n44015040004 n44016001011 +75012 n44016013021 +75022 n44016014003 +75032 n44016014003 +75039 n44016014003 +75044 n44016014003 +n44016014003 +75047 n44016014023 n44015040004 n44016001011 +75053 n44016014023 n44015040004 n44016001011 +75058 n44016014023 n44015040004 n44016001011 +75060 n44016014003 +75071 n44016016008 +75083 n44016016008 +75085 n44016016008 +75091 n44016016008 +75108 n44016016008 +75114 n44016018009 +75116 n44016018009 +75120 n44016018009 +75126 n44016018013 +75130 n44016018013 +75138 n44016019004 +75146 n44016019004 +75160 n44016019004 +75164 n44016019004 +75173 n44016020009 +75175 n44016020009 +75178 n44016019004 n44016020005 +75180 n44016019004 n44016020005 +75185 n44016019004 n44016020005 +75195 n44016022009 +75202 n44016022009 +75206 n44016022009 +75209 n44016022009 +75213 n44016023011 +75218 n44016023011 +75229 n44016023011 +75240 n44016025005 n44016025007 +75275 n44016027005 +75277 n44016027005 +75283 n44016027005 +75288 n44016027005 +n44016027005 +75298 n44016028003 +75301 n44016027005 +75308 n44016027005 +75310 n44016027005 +75313 n44016027005 +n44016027005 +75320 n44016027005 +75323 n44016027005 +75330 n44016027005 +75334 n44016027005 +75347 n44016029010 n44016029012 +75361 n44016027005 +75369 n44016027005 +75382 n44016027005 +75387 n44016027005 +75390 n44016027005 +75392 n44016027005 +75403 n44016035006 +n44016027005 +75423 n44016036010 n44016029012 +75426 n44016036010 n44016029012 +n44016036010 n44016029012 +75436 n44016035006 +75442 n44016037003 n44016029012 +n44016035006 +75450 n44016035006 +75454 n44016035006 +75468 n44016038004 +n44016038004 +75472 n44016037003 n44016029012 +75474 n44016038004 +n44016038004 +75478 n44016038004 +n44016038004 +n44016037003 n44016029012 +75485 n44016037003 n44016029012 +75489 n44016037003 n44016029012 +75494 n44016037003 n44016029012 +n44016037003 n44016029012 +75499 n44016037003 n44016029012 +75501 n44016037003 n44016029012 +75507 n44016037003 n44016029012 +75521 n44017002006 +75528 n44017002006 +75533 n44017002006 +75535 n44017002006 +75542 n44017003006 +75563 n44017004002 +75571 n44017004016 +75584 n44017005004 +75586 n44017005004 +75593 n44017005004 +75598 n44017005004 +75602 n44017005004 +75604 n44017005004 +75610 n44017005004 +75612 n44017005004 +75620 n44017005004 +75625 n44017004009 n44017004012 +75645 n44017006018 +75647 n44017005004 +75653 n44017008004 n44017008007 +75656 n44017008007 +75665 n44017008007 +75683 n44017010010 n44017010013 +75707 n44017010022 +75751 n44017013008 +75753 n44017013008 +75755 n44017013008 +75766 n44017014005 +75789 n44017015003 +75800 n44017015014 n44017015017 +75803 n44017015003 +75818 n44017016008 +75825 n44017016008 +75863 n44017018018 +75866 n44017016008 +75870 n44017016008 +75877 n44017016008 +75879 n44017018001 +75885 n44017018001 +n44017018001 +n44017018001 +n44017018001 +75896 n44017019020 +75899 n44017020003 +75901 n44017016008 +75907 n44017018001 +n44017018001 +75910 n44017020014 +75918 n44017021007 +75925 n44017021001 n44017021007 +75928 n44017021001 n44017021007 +75932 n44017022003 +75947 n44017022003 +75949 n44017022003 +75951 n44017022003 +75955 n44017022003 +75965 n44017022011 +n44017022011 +75974 n44017024002 +75987 n44017024002 +75998 n44017024002 +76001 n44017024002 +76010 n44017024002 +76016 n44017026006 +76022 n44017024002 +n44017026016 +76031 n44017026006 +76037 n44017026006 +76040 n44017026006 +76049 n44017027003 +76053 n44017022003 n44017022011 +76055 n44017022003 n44017022011 +76057 n44017022003 n44017022011 +76070 n44017028011 +76072 n44017022003 n44017022011 +76077 n44017022003 n44017022011 +n44017022003 n44017022011 +76099 n44017030009 +76111 n44017030009 +76115 n44017030009 +n44017030009 +76124 n44017030009 +76126 n44017030009 +76128 n44017030009 +76142 n44017032008 +76158 n44017034003 +76177 n44017033003 +76181 n44017033003 +76185 n44017033003 +76194 n44018002004 +76213 n44017033003 +76219 n44017033003 +n44017033003 +76224 n44017033003 +76226 n44018002004 n44018002016 +76231 n44017033003 +76238 n44017033003 +76260 n44018005017 +76271 n44018005020 +n44018005017 +76275 n44018005017 +76293 n44018005017 +76295 n44018005017 +76297 n44018005017 +76304 n44018007007 +76330 n44018008014 +76333 n44018008014 +76345 n44018009010 +76347 n44018009010 +76350 n44018009010 +76361 n44018010007 +76373 n44018009010 +76378 n44018009010 +76398 n44018012010 +76403 n44018012010 +76412 n44018013009 +76419 n44018014004 +76441 n44018014010 +76463 n44018014010 +76465 n44018014010 +76472 n44018017003 +76490 n44018018003 +76495 n44018018003 +76506 n44018018003 +76512 n44018018003 +76515 n44018018003 n44018018018 n44018018020 +76519 n44018018003 +76523 n44018018003 +76536 n44018018003 +76538 n44018018003 +76540 n44018018003 +76542 n44018018003 +76544 n44018018003 +76550 n44018018003 +76555 n44018018003 +76558 n44018018003 +76560 n44018018003 +76563 n44018018003 +76567 n44018018003 +76570 n44018018003 +n44018018003 +76578 n44018018003 +76593 n44018024001 +76608 n44018024001 +76611 n44018024001 +76613 n44018024001 +76619 n44018024001 +76627 n44018024001 +76632 n44018026011 n44018026013 +76642 n44018026011 n44018026013 +76650 n44018024001 +76654 n44018027010 +76660 n44018027013 +76663 n44018024001 +76675 n44018024001 +76677 n44018024001 +76695 n44019001010 +76703 n44019001010 +76707 n44019001010 +76713 n44019001021 +n44019001021 +76721 n44019001021 +76727 n44019001010 +76731 n44019001021 +76748 n44019004004 +76750 n44019004009 +76762 n44019001021 +n44019001021 +76784 n44019001021 +76787 n44019001021 +76796 n44019006005 +76800 n44019006005 +76804 n44019006005 +76806 n44019006005 +76818 n44019009003 +76824 n44019006005 +76827 n44019006005 +76832 n44019006005 +76862 n44019011001 +76900 n44019013008 +76903 n44019013003 +76916 n44019013003 +n44019013003 +76935 n44019015004 +76944 n44019015004 +76948 n44019015004 +76954 n44019016004 +76966 n44019016004 +76974 n44019016015 +n44019016015 +76990 n44019017006 n44019017009 +77011 n44019018001 +77013 n44019018001 +77023 n44019019001 +77030 n44019019001 +77035 n44019019001 +77059 n44019021007 +77064 n44019021007 +77067 n44019021007 +77080 n44019021007 +77114 n44019024003 +77131 n44019024003 +n44019024003 +77134 n44019025010 +77145 n44019025010 +77147 n44019025010 +77160 n44019026015 +77164 n44019026015 +77198 n44019027028 +77211 n44019024012 n44019025008 +77213 n44019024012 n44019025008 +77216 n44019024012 n44019025008 +n44019024012 n44019025008 +77229 n44019029004 +77234 n44019029004 +77244 n44019030001 +77258 n44019031001 +77261 n44019031001 +77266 n44019030001 +77289 n44019032014 +77303 n44019033013 +77307 n44019033013 +77311 n44019033020 +77314 n44019033013 +77324 n44019034010 +77332 n44019035004 +77368 n44019035008 +77370 n44019035008 +77377 n44019037004 +77399 n44019038004 n44019038009 n44019037004 +77405 n44019035008 +77410 n44019039003 +77413 n44019035008 n44019035004 +n44019035008 n44019035004 +77425 n44019035008 n44019035004 +n44019035008 n44019035004 +77434 n44019035004 +n44019035004 +77446 n44020001009 +77450 n44020001009 +n44020001009 +77453 n44020001009 +77457 n44020001009 +77462 n44020001009 +77466 n44020001009 +77471 n44020001009 +77480 n44020001009 +n44020001009 +77485 n44020001009 +77488 n44020001009 +77514 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77530 n44020001009 +77540 n44020001009 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77551 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020001009 +77557 n44020007012 +n44020007012 +77562 n44020007012 +77575 n44020007012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44020007012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77582 n44020009004 +77586 n44020009004 +77594 n44020009004 +77604 n44020009004 +77607 n44020010004 +77613 n44020010004 +n44020010004 +77616 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77625 n44020010004 +77627 n44020010004 +77631 n44020010004 +77635 n44020010004 +77639 n44020010004 +77644 n44020012004 +77651 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77660 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77666 n44020013015 +n44020013015 +77670 n44020013015 +77673 n44020013015 +77678 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +77680 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020013015 +77684 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020013015 +77687 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020013015 +77693 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020013015 +77699 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020013015 +77706 n44020016004 +77713 n44020016004 +77718 n44020016004 +77727 n44020016004 +77734 n44020016004 +77737 n44020016004 +77744 n44020017010 +77747 n44020016004 +77756 n44020016004 +77766 n44020016004 +n44020016004 +77778 n44020019010 +77786 n44020016004 +77792 n44020016004 +77795 n44020016004 +77801 n44020016004 +77819 n44020017010 +n44020016004 +77833 n44020016004 +77844 n44020023004 +77854 n44020016004 +77860 n44020016004 +77868 n44020016004 +77873 n44020016004 +77882 n44020017010 +77895 n44020016004 +n44020016004 +77900 n44020016004 +77908 n44020016004 +77915 n44020016004 +77918 n44020016004 +77925 n44020017010 +77940 n44020017010 +77946 n44020028020 +77965 n44020029009 +77974 n44020030006 +77977 n44020030006 +77983 n44020017010 +n44020017010 +77991 n44020016004 +77994 n44020016004 +78000 n44020016004 +78011 n44020032010 +n44020032010 +78014 n44020032010 +78027 n44020016004 +78044 n44020016004 +78048 n44020017010 +78050 n44020017010 +78054 n44020017010 +78071 n44020016004 +n44020016004 +78079 n44020016004 +78086 n44020037005 +78092 n44020037005 +78094 n44020037005 +78100 n44020037012 +78103 n44020037005 +78107 n44020037005 +78109 n44020037005 +78119 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44020037012 +78122 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78137 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78139 n44021002003 +78142 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78145 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78149 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78152 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78156 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78168 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78171 n44020037012 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78183 n44021004011 +78193 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78207 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021005012 +78213 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021005012 +n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 n44021005012 +78217 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78231 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78238 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78241 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78249 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78254 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78261 n44021008013 +78265 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78274 n44021009004 +78276 n44021004011 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78288 n44021010006 +78292 n44021010006 +78297 n44021010006 +78304 n44021010006 +78325 n44021011037 +78331 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78350 n44021012010 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44021012010 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78353 n44021012010 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78361 n44021013004 +78364 n44021013004 +78379 n44021012010 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44021012010 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78391 n44021013004 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +n44021013004 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78404 n44021016005 +78407 n44021013004 n44020004004 n44020004009 n44020004011 n44020004013 n44020004016 n44020004017 +78439 n44021018006 +78441 n44021018006 +78458 n44021018015 n44021018010 +78463 n44021018015 n44021018010 +78465 n44021020011 +78482 n44021020021 +78486 n44021020011 +78496 n44021020011 +78505 n44021021015 +78510 n44021020021 +78512 n44021020011 +78515 n44021020011 +78518 n44021018015 n44021018010 +78524 n44021023009 +78528 n44021020011 +n44021020011 +78533 n44021020011 +78537 n44021023009 +78554 n44021020011 +78560 n44021025005 +78564 n44021018015 n44021018010 +78579 n44021026003 +78583 n44021026009 +78587 n44021026003 +78592 n44021026003 +78614 n44021027006 +78620 n44021027012 +78630 n44021027012 +78635 n44021027012 +78638 n44021028002 +78656 n44021028008 +78661 n44021026003 +78666 n44021026003 +78672 n44021027012 +n44021027012 +78682 n44021027012 +78702 n44021030010 +78705 n44021030010 +78716 n44021030010 +78718 n44021030010 +78731 n44021031008 +78740 n44021030010 +78747 n44021030010 +78751 n44021033004 +78757 n44021033004 +n44021032021 +78762 n44021033004 +78764 n44021032021 +78767 n44021032021 +n44021032021 +78781 n44021033004 +78787 n44021033004 +78795 n44021032021 +78816 n44021036004 +n44021033004 +78820 n44021037008 +n44021037008 +78833 n44021037008 +78841 n44021037008 +78853 n44021038006 +78855 n44021038006 +78881 n44021039004 +78883 n44021037011 +78885 n44021039004 +78894 n44021040005 +78907 n44021040005 +78911 n44021040005 +78916 n44022001001 +78924 n44021040014 +78929 n44021040005 +78932 n44021040014 +78935 n44021040005 +78940 n44021040005 +78946 n44021040005 +78955 n44021040005 +78961 n44021040005 +78977 n44021040005 +78979 n44021040005 +79000 n44021040005 +79006 n44021040005 +n44021040005 +79012 n44022005025 +79016 n44022005025 +79020 n44021040005 +79022 n44021040005 +79037 n44021040005 +79042 n44021040005 +79050 n44022007011 +79055 n44022008006 +79058 n44022007008 +79080 n44022009004 +79084 n44022008013 +79087 n44021040005 +79089 n44021040005 +79097 n44021040005 +n44021040005 +79107 n44021040005 +79113 n44021040005 +79120 n44021040005 +79125 n44021040005 +79136 n44022012004 +79140 n44022012014 +79142 n44022012001 +79146 n44022012001 +n44022012001 +79151 n44022013008 +79169 n44021040005 +79174 n44021040005 +79178 n44021040005 +79185 n44021040005 +79192 n44021040005 +79194 n44021040005 +79198 n44021040005 +n44021040005 +n44021040005 +79202 n44021040005 +79206 n44021040005 +79213 n44021040005 +79227 n44021040005 +79231 n44021040005 +79233 n44021040005 +79240 n44022018012 +79286 n44022010008 +79289 n44021040005 +79298 n44021040014 +79305 n44021040014 +79309 n44021040014 +n44021037011 +79325 n44021040014 +79330 n44021040014 +79342 n44022024003 +79347 n44022024003 +79352 n44021040014 +79356 n44021035012 +79363 n44022025011 +79376 n44022026004 +79379 n44022026004 +79383 n44022026004 +n44022026007 +79386 n44022026007 +79394 n44022027004 +79399 n44022025013 +79433 n44021035012 n44022026004 +79435 n44021035012 n44022026004 +79441 n44022029012 +79444 n44022028014 +79448 n44022029012 +n44022029012 +79453 n44022029012 +n44022029012 +79459 n44022028014 +79463 n44022029012 +79466 n44022029012 +79475 n44022029012 +79478 n44022029012 +79484 n44023001004 +79509 n44023002007 +79519 n44023003011 +79525 n44023003012 +79529 n44023003012 +79535 n44023003012 +n44023003012 +79547 n44023003003 +79553 n44023005004 +79556 n44023002003 +79559 n44023005019 +79571 n44023006004 +79598 n44023006004 +79633 n44023009007 +79642 n44023009007 +79645 n44023009007 +79663 n44023010007 +79673 n44023010016 +79680 n44023010016 +79686 n44023011004 +79688 n44023011008 +79693 n44023010011 +79696 n44023010011 +79712 n44023012007 +79718 n44023012007 +79720 n44023012007 +79722 n44023012007 +79725 n44023012007 +79736 n44023012007 +79738 n44023013009 +79746 n44023013009 +79752 n44023013009 +79765 n44023015006 +79770 n44023014004 n44023014007 n44023015009 +n44023014004 n44023014007 n44023015009 +79785 n44023013009 +79793 n44023016004 +79796 n44023016004 +79798 n44023016004 +79808 n44023017004 +79816 n44023017005 +79821 n44023017010 +n44023017010 +79828 n44023017005 +79835 n44023017005 +79839 n44023018013 +79845 n44023017005 +79848 n44023018020 +79850 n44023018020 +79855 n44023019007 +79860 n44023019007 +79867 n44023016004 +79869 n44023016004 +79871 n44023016004 +79877 n44023020005 +79883 n44023019007 +79888 n44023020017 +79891 n44023020017 +79916 n44023021011 +79920 n44023021011 +79922 n44023021011 +79934 n44023022004 +79936 n44023022007 +79939 n44023022007 +79943 n44023022004 +79948 n44023022004 +n44023023003 +79959 n44023023009 n44023023016 n44023023019 +79969 n44023023003 +79971 n44023023009 n44023023016 n44023023019 +79974 n44023023009 n44023023016 n44023023019 +79979 n44023022004 +79981 n44023025002 +79991 n44023026001 +79995 n44023027002 +80000 n44023027002 +n44023027002 +80004 n44023026001 +80008 n44023026001 +n44023026001 +80012 n44023027002 +80014 n44023026001 +n44023026001 +80020 n44023027007 +80022 n44023026001 +80027 n44023026001 +80042 n44023027002 +80052 n44023026001 +80055 n44023026001 +80059 n44023030016 +80072 n44023031004 +80084 n44023031004 +80090 n44023031004 +80095 n44023032006 +80100 n44023032006 +80111 n44023033011 +80113 n44023033011 +80117 n44023033015 +80119 n44023033011 +80123 n44023033011 +n44023033011 +80132 n44023033011 +80166 n44024002007 +80169 n44024002007 +80172 n44024001007 n44024001010 n44024002007 +80189 n44024001010 n44024002007 n44024001007 +80201 n44024002007 +n44024002007 +80211 n44024001007 n44024001010 n44024002007 +80217 n44024005004 +80236 n44024005004 +80240 n44024001010 n44024002007 n44024001007 +80245 n44024003007 +80249 n44024003007 +80259 n44024009005 +80271 n44024010004 +80281 n44024010004 +80286 n44024010004 +80289 n44024010008 +80299 n44024010004 +n44024010004 +80304 n44024001007 n44024001010 n44024002007 n44024009005 +80312 n44024010004 +80326 n44024001010 n44024002007 n44024001007 n44024009005 +n44024001007 n44024001010 n44024002007 n44024009005 +80332 n44024001007 n44024001010 n44024002007 n44024009005 +80335 n44024010004 +80343 n44024001007 n44024001010 n44024002007 n44024009005 +80346 n44024010004 +80350 n44024010004 +80362 n44024010004 +80373 n44024015011 +80386 n44024010004 +80400 n44024010004 +80405 n44024010004 +80410 n44024001010 n44024002007 n44024001007 +80437 n44024019006 +80446 n44024001007 n44024001010 n44024002007 n44024009005 +80458 n44024010004 +80461 n44024010004 +80477 n44024022005 +80482 n44024022005 +80488 n44024022005 +80492 n44024022005 +80498 n44024010004 +80501 n44024023003 +80514 n44024024007 +80520 n44024024009 +80526 n44024024007 +80545 n44024025010 +80547 n44024025016 +80554 n44024024017 +80557 n44024025016 +n44024025016 +80562 n44024025016 +80574 n44024025016 +n44024025016 +80587 n44024027017 +80589 n44024027017 +80597 n44024027020 +80600 n44025001001 +80625 n44025002005 n44025002008 +80627 n44025002005 n44025002008 +80632 n44025001001 +80637 n44025002005 n44025002008 +n44025002005 n44025002008 +80658 n44025004004 +80660 n44025004004 +80665 n44025005006 +80676 n44025004004 +80685 n44025004004 +80690 n44025004004 +80694 n44025004004 +80706 n44025007010 +80712 n44025007010 +80714 n44025007010 +80716 n44025007010 +80735 n44025008002 +80739 n44025009002 +80743 n44025009002 +n44025009002 +80748 n44025009011 +80751 n44025009011 +80755 n44025009011 +80766 n44025010004 +n44025010004 +80774 n44025010004 +80783 n44025010004 +80788 n44025010004 +80790 n44025010004 +80792 n44025010004 +80805 n44025011022 +80807 n44025010004 +80811 n44025012003 +80817 n44025010004 +80820 n44025010004 +80833 n44025013005 n44025013009 +80840 n44025013005 n44025013009 +80851 n44025014008 +80855 n44025014023 +80873 n44025015009 n44025015012 +80879 n44025014008 +80900 n44025016015 +80905 n44025015009 n44025015012 +80909 n44025014008 +80912 n44025014008 +80916 n44025014008 +80922 n44025018005 +80939 n44025018005 +80946 n44025019014 +80954 n44025014008 +80961 n44025019019 +n44025019019 +80966 n44025019019 +80980 n44025014008 +80985 n44025014008 +80999 n44025022001 +n44025022005 +81002 n44025022001 +81017 n44025023006 n44025023009 +81047 n44025024012 +81050 n44025024012 n44025024005 +81066 n44025024019 +81086 n44025024004 +n44025024004 +81092 n44025024004 +81096 n44025024004 +81098 n44025024004 +81112 n44025024004 +81114 n44025024004 +81138 n44026001005 +81142 n44026001014 +81151 n44026001014 +81154 n44026001014 +81160 n44026001014 +n44026001014 +81175 n44026001014 +81177 n44026002007 +81189 n44026004004 +81200 n44026004021 +81204 n44026004021 +n44026004021 +81214 n44026001014 +81225 n44026006010 +81230 n44026001014 +n44026001014 +81234 n44026007004 +81243 n44026007004 +81248 n44026001014 +81279 n44026001014 +81296 n44026001014 +81300 n44026001014 +81308 n44026001014 +81310 n44026001014 +n44026010007 +81314 n44026001014 +81316 n44026001014 +81325 n44026001014 +81341 n44026001014 +81364 n44026001014 +81376 n44026014016 +81386 n44026015006 +81399 n44026001014 +81401 n44026001014 +81409 n44026015009 +81411 n44026015009 +81418 n44026001014 +81422 n44026015009 +81424 n44026015009 +81438 n44026001014 +81442 n44026001014 +81473 n44026001014 +81495 n44026001014 +n44026020002 n44026020008 n44026020012 n44026020017 +81498 n44026020002 n44026020008 n44026020012 n44026020017 +81506 n44026020002 n44026020008 n44026020012 n44026020017 +81511 n44026021004 +81516 n44026021004 +81518 n44026001014 +81528 n44026001014 +n44026001014 +81535 n44026001014 +81539 n44026022021 +81555 n44026023004 +81557 n44026023004 +81574 n44026024012 +81590 n44026025003 +81596 n44026025003 +81606 n44026025003 +n44026025003 +81613 n44026025003 +81624 n44026027002 +81627 n44026025003 +81629 n44026027002 +81639 n44026028006 +81641 n44026028006 +81646 n44026029003 +81687 n44025023020 n44025023022 +81690 n44026030004 n44026030007 n44026030010 n44026030013 +n44026030004 n44026030007 n44026030010 n44026030013 +81694 n44026030004 n44026030007 n44026030010 n44026030013 +81710 n44026032009 +81717 n44026032009 +81728 n44026032001 n44026032004 n44026030010 n44026030013 +81742 n44027001013 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027001018 +81745 n44027002003 +n44027002003 +81753 n44027001013 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027001018 +81763 n44027001013 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027001018 n44027002017 +81772 n44027003010 +81777 n44027003012 +81779 n44027003012 +81781 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027003010 n44027002017 +n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027003010 n44027002017 +81800 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027003010 n44027002017 +n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027003010 n44027002017 +81809 n44027006004 +81812 n44027006005 +81824 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027006004 n44027002017 +81827 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027006004 n44027002017 +81836 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027006004 n44027002017 +81843 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027006004 n44027002017 +81845 n44027003012 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027006004 n44027002017 +81849 n44027008007 +81877 n44027009020 +81880 n44027009020 +81899 n44027010026 +81917 n44027010004 +81929 n44027012009 +81933 n44027012009 +n44027012009 +81940 n44027012021 +81946 n44027012009 +81950 n44027012009 +81953 n44027012009 +n44027012009 +81956 n44027012009 +81969 n44027014008 +81977 n44027015004 +n44027015004 +81981 n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027012009 +n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027012009 +81984 n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027012009 +81987 n44027016001 +81989 n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027012009 +81992 n44027009020 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027012009 +81996 n44027027017 +81998 n44027027017 +n44027027017 +82003 n44027027017 +82008 n44027027017 +n44027027017 +82013 n44027027017 +82021 n44027027017 +82030 n44027027017 +82057 n44027021008 +82068 n44027021016 +82071 n44027021016 +82076 n44027021016 +82086 n44027021008 +82108 n44027021008 +82111 n44027021008 +82113 n44027023014 +82115 n44027024004 +82122 n44027024004 +82133 n44027025003 +82136 n44027021008 +82176 n44027027017 +n44027027017 +82182 n44027027017 +82185 n44027027017 +n44027027017 +82190 n44027027017 +82196 n44027021008 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027001017 n44027011003 n44027002017 n44027027017 +82199 n44027027017 +82202 n44027027017 +82209 n44027030003 +82214 n44027030003 +82225 n44027030003 +n44027030003 +82243 n44027031005 n44027031008 +82255 n44027032004 +82263 n44027033004 +82270 n44027033009 +82274 n44027033010 +82276 n44027033010 +82278 n44027033010 +82280 n44027033009 +82300 n44027033009 +82303 n44027033009 +82305 n44027033009 +82311 n44027033009 +n44027033009 +n44027033009 +82334 n44027030003 +82336 n44027030003 +82339 n44027030003 +82352 n44027030003 +82354 n44027030003 +82357 n44027039009 +82361 n44027030003 +82364 n44027030003 +82366 n44027030003 +82370 n44027030003 +n44027030003 +82376 n44027030003 +82382 n44027030003 +82387 n44027030003 +82392 n44027030003 +82396 n44027030003 +82403 n44027041012 +82421 n44027042003 +82424 n44027042011 +82429 n44027043003 +n44027043003 +82438 n44027043003 +82441 n44027043015 +n44027043015 +82472 n44027043007 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82474 n44027043007 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82486 n44028002008 +82490 n44028002003 +82492 n44028002003 +82499 n44028002018 +82512 n44028003004 +82520 n44028003013 +82539 n44028004005 +82547 n44028004020 +82559 n44028003004 +82573 n44028003004 +82575 n44028003004 +82584 n44028004005 +82590 n44028004005 +n44028004005 +82611 n44028007011 +82626 n44028008004 +82630 n44028008015 +82632 n44028008015 +82635 n44028008015 +82651 n44028009006 +82655 n44028009006 +82663 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +n44028009006 +82673 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82676 n44028011007 +82684 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82687 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82691 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82702 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 n44027030003 +82706 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82708 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82711 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82719 n44028008015 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82723 n44028015003 +82738 n44028015021 +82741 n44028015021 +82748 n44028015021 n44020004004 n44020004011 n44020004013 n44020004016 n44020004017 n44021016005 n44027002017 n44027043003 n44027042008 n44027042003 +82754 n44028016008 +82759 n44028016016 +82777 n44028016008 +82785 n44028016008 +82803 n44028017040 +82806 n44028017040 +82819 n44028016008 +n44028016008 +82828 n44028016008 +n44028016008 +82835 n44028016008 +82837 n44028016008 +82839 n44028016008 +82849 n44028016008 +82865 n44028021017 +82877 n44028017012 +82880 n44028017012 +82882 n44028016008 +82894 n44028022012 +82896 n44028023011 +82907 n44028016008 +n44028016008 +82914 n44028016008 +82942 n44028024002 n44028024007 +82945 n44028024002 n44028024007 +82966 n44028025015 +82975 n44028026005 +82979 n44028026005 +82981 n44028026005 +n44028026005 +82986 n44028026005 +82998 n44028027006 +83003 n44028027006 +83006 n44028027006 +83012 n44028027006 +83016 n44028027006 +83018 n44028027006 +83020 n44028025015 +83039 n44028025009 +83046 n44028025009 +83052 n44028025009 +83058 n44028025009 +83075 n45001001001 +83080 n45001001010 +83093 n45001003003 +83100 n45001003003 +83118 n45001001001 n45001007005 +83143 n45001007006 +83164 n45001001001 +83190 n45001001001 +83205 n45001001001 +83211 n45001001001 +83216 n45001001001 +83222 n45001001001 +83226 n45001001001 +n45001001001 +83230 n45001001001 +83242 n45001001001 n45001007005 +83257 n45001001001 +83262 n45001001001 +n45001001001 +83267 n45001001001 +83274 n45001001001 +83293 n45001001001 +83304 n45001001001 +83307 n45001001001 +83313 n45001016005 +83318 n45001016015 n45001016019 +83335 n45001017018 +83359 n45001018012 +83390 n45001020003 +83398 n45001018012 +83404 n45001018012 +83406 n45001018012 +83408 n45001018012 +83419 n45001018012 +n45001018012 +83422 n45001018012 +83424 n45001018012 +83471 n45001018012 +83473 n45001018012 +83478 n45001025006 +83513 n45001027005 +83542 n45001027019 +83546 n45001018012 +83549 n45001018012 +83559 n45001018012 +83563 n45001018012 +83594 n45001018012 +83609 n45001018012 +83614 n45002001005 +83619 n45002001005 +83623 n45002001005 +83627 n45002001005 +83633 n45002001005 +83635 n45001001001 n45001015008 n45002001005 +83650 n45002003005 +83655 n45002003005 +83661 n45002003005 +83682 n45002003005 +n45002003005 +83701 n45002003005 +83756 n45002009007 +83772 n45002010012 n45002010016 +83822 n45002014003 +83831 n45002014003 +83858 n45002015020 +83882 n45002003005 +83885 n45002003005 +83889 n45002003005 +83893 n45002003005 +83896 n45002003005 +83901 n45002003005 +83914 n45002003005 +83927 n45002003005 +83931 n45002021003 +83933 n45002003005 +83935 n45002021009 +n45002021009 +83938 n45002003005 +83940 n45002022002 +n45002022002 +83943 n45002003005 +83946 n45002022007 +83971 n45002024008 +83978 n45002003005 +83983 n45002003005 +84013 n45002027006 +84081 n45003001006 +84101 n45003003014 +84112 n45003004016 n45003004022 +84115 n45003004006 +84121 n45003004006 +84135 n45001001001 n45003001006 n45001015008 +84141 n45003005014 +84146 n45001001001 +84148 n45003005012 +84180 n45001001001 n45003001006 n45001015008 +84188 n45001001001 n45003001006 n45001015008 +84202 n45001001001 n45003001006 n45001015008 +84206 n45001001001 n45003001006 n45001015008 +84216 n45003010005 n45003010008 n45003011002 n45003011006 n45003012002 n45003012004 n45003012006 n45003012011 n45003013001 n45003013009 n45003013014 n45003014007 n45003015001 n45003016006 n45003017005 n45003018007 +84236 n45003012001 +84247 n45003013001 +84254 n45003012001 +84272 n45003012001 +84285 n45003012001 +84295 n45001001001 n45003001006 n45001015008 +84340 n45003021005 +84366 n45003023001 +84371 n45003023001 +84403 n45003025022 +84426 n45003026005 +84435 n45003027004 +84447 n45001001001 n45001015008 n45003001006 +84481 n45001001001 n45001015008 n45003001006 +84486 n45003031003 +84489 n45001001001 n45001015008 n45003001006 +84491 n45001001001 n45001015008 n45003001006 +84506 n45004002003 +84523 n45004003006 +84547 n45004003010 +84602 n45001001001 n45001015008 n45003001006 +84612 n45004009019 +n45004009017 +84626 n45004009017 +84757 n45004016028 +84760 n45004017012 +84764 n45004017012 +84769 n45004017021 +84771 n45004017007 +84776 n45004008007 +84793 n45004018017 +84801 n45004016028 +84804 n45004016028 +84808 n45004019009 +84811 n45004016028 +84825 n45004016028 +84829 n45004016028 +84832 n45004016028 +84837 n45004016028 +84839 n45004020018 +84842 n45004020018 +84844 n45004020018 +84847 n45004020014 +84853 n45004023008 +84858 n45004020014 +84865 n45004020014 +n45004020014 +84868 n45001001001 n45001015008 n45003029002 n45003029011 +84871 n45004020018 +84885 n45004024013 +84891 n45001001001 n45001015008 n45004024009 +84895 n45001001001 n45001015008 n45004024009 +84910 n45001001001 n45001015008 n45004024009 +84919 n45001001001 n45001015008 n45004024009 +84921 n45001001001 n45001015008 n45004024009 +84933 n45001001001 n45001015008 n45004024009 +84937 n45001001001 n45001015008 n45004024009 +84970 n45005005017 +84998 n45005007012 +85020 n45001001001 n45001015008 n45004024009 +85026 n45001001001 n45001015008 n45004024009 +85035 n45001001001 n45001015008 n45004024009 +n45001001001 n45001015008 n45004024009 +85047 n45001001001 n45001015008 n45004024009 +n45001001001 n45001015008 n45004024009 +85058 n45001001001 n45001015008 n45004024009 +85073 n45001001001 n45001015008 n45004024009 +85141 n45005011012 +85186 n45005016005 +85324 n45001001001 n45001015008 n45004024009 +n45001001001 n45001015008 n45004024009 +85333 n45006001004 +85344 n45001015008 +85357 n45001001001 n45001015008 n45006003005 +85386 n45001001001 n45001015008 n45006003005 +85396 n45001001001 n45001015008 n45006003005 +85398 n45001001001 n45001015008 n45006003005 +85426 n45001001001 n45001015008 n45006003005 +85429 n45001001001 n45001015008 n45006003005 +85432 n45001001001 n45001015008 n45006003005 +85434 n45001001001 n45001015008 n45006003005 +85437 n45006009003 +85448 n45006009003 +85451 n45006009003 +85455 n45006009003 +n45006009003 +85470 n45001015008 +85488 n45001015008 +85493 n45001015008 +85502 n45001015008 +85509 n45001015008 +85525 n45001015008 +85533 n45001001001 n45001015008 n45006003005 +85536 n45001001001 n45001015008 n45006003005 +85543 n45006015003 +85545 n45001015008 +85548 n45001015008 +85554 n45001015008 +85556 n45001015008 +85570 n45001015008 +85575 n45001015008 +85580 n45001015008 +85584 n45001015008 +85588 n45001015008 +85592 n45001001001 +85601 n45001015008 +85616 n45001015008 +85630 n45001015008 +85632 n45001015008 +85638 n45001015008 +85643 n45001015008 +85651 n45001015008 +85656 n45001015008 +85659 n45001015008 +85691 n45001015008 +85695 n45001001001 +85705 n45007001013 +85711 n45007002007 +85720 n45007002004 +85732 n45007002004 +85734 n45007002004 +85743 n45007002004 +85752 n45007002004 +85776 n45007004013 +85778 n45001001001 n45007004002 n45006003005 +85783 n45001001001 n45007004002 n45006003005 +85802 n45007005008 +85807 n45001001001 n45007004002 n45006003005 +85811 n45001001001 n45007004002 n45006003005 +85814 n45001001001 n45007004002 n45006003005 +85827 n45001001001 n45007004002 n45006003005 +85832 n45007007006 +85837 n45001001001 +85847 n45001001001 +85857 n45007008005 +85904 n45007011003 +85913 n45007011003 +85934 n45007013006 +85939 n45007013011 +85945 n45007013011 +85958 n45001001001 n45007004002 n45006003005 +85967 n45001001001 +n45001001001 +85974 n45001001001 +85976 n45001001001 +85980 n45001001001 +85982 n45001001001 +85985 n45001001001 +85987 n45001001001 +85992 n45001001001 +85994 n45001001001 +n45001001001 +86008 n45007017012 +86013 n45001001001 +86028 n45001001001 +86033 n45001001001 +86040 n45001001001 +86042 n45001001001 +86046 n45001001001 +86049 n45001001001 +86054 n45001001001 +86064 n45007020018 +86069 n45001001001 +86074 n45001001001 +n45001001001 +86084 n45001001001 +86094 n45001001001 +86108 n45007023004 +86116 n45007023020 +86192 n45008003005 +86201 n45008003013 +86224 n45001001001 n45007004002 n45008001005 +86275 n45008007003 +86278 n45008007003 +86285 n45008008004 +86336 n45008009012 +86345 n45008009012 +86367 n45001001001 n45008012003 n45008004013 +86374 n45001001001 n45008012003 n45008004013 +86379 n45008012003 +n45008012003 +n45008012003 +86389 n45008012003 +n45008012003 +86402 n45008012003 +86409 n45008012003 +86414 n45001001001 n45008012003 n45008004013 +86426 n45001001001 n45008012003 n45008004013 +86441 n45001001001 n45008012003 n45008004013 +86444 n45001001001 n45008012003 n45008004013 +86446 n45001001001 +86457 n45008018014 +n45008018014 +86485 n45008019011 +86509 n45001001001 n45008012003 n45008004013 +86530 n45001001001 n45008012003 n45008004013 +86537 n45001001001 n45008012003 n45008004013 +86547 n45001001001 n45008012003 n45008004013 +86550 n45008024005 +86556 n45008024014 +86564 n45001001001 n45008012003 n45008004013 +n45001001001 n45008012003 n45008004013 +86568 n45001001001 n45008012003 n45008004013 +86581 n45001001001 n45008012003 n45008004013 +86585 n45001001001 n45008012003 n45008004013 +86595 n45008021020 +86607 n45008027011 +86611 n45001001001 n45008012003 n45008004013 +86628 n45008028007 +86630 n45008028007 +86647 n45008028007 +86650 n45008028007 +86653 n45008028007 +86656 n45008028007 +86659 n45008028007 +86662 n45008028007 +86665 n45001001001 n45008012003 n45008004013 +86687 n45008031008 +86712 n45008034004 +86715 n45008034004 +86749 n45008036006 n45008036010 +86753 n45001001001 n45008012003 n45008004013 +86757 n45001001001 n45008012003 n45008004013 +86765 n45001001001 n45008012003 n45008004013 +86768 n45008034017 +86771 n45001001001 +86797 n45008038005 n45008038007 n45008038009 n45008038011 n45008038013 n45008038015 n45008038017 n45008039002 n45008039004 n45008039007 +86811 n45001001001 +86815 n45001001001 +86840 n45001001001 +86886 n45009005016 +86914 n45009006013 +86953 n45009008011 +86975 n45009007007 +86977 n45009007007 +86996 n45009011016 +n45009012013 +87006 n45009013005 n45009013009 +87009 n45009011016 +87013 n45009011016 +87016 n45001001001 n45008012003 n45008004013 +87023 n45009014008 +87027 n45009014008 +n45009014008 +87031 n45009014008 +87033 n45009014008 +87036 n45009014008 +87047 n45009016012 +87059 n45009016012 +87062 n45009016012 +87081 n45009016012 +n45009016012 +87085 n45009016012 +n45009016012 +87088 n45008012003 +87092 n45009016012 +87103 n45001015010 +87106 n45009020002 +87117 n45009020016 +87131 n45009021006 +87145 n45009022005 +n45009022005 +87150 n45009022005 +87160 n45009022018 +87165 n45009022005 +87175 n45009022005 +87180 n45009022005 +87195 n45009022005 +n45009022005 +87207 n45009025017 +87214 n45009026010 +87221 n45009025010 +87224 n45009026016 +87248 n45009028007 +87250 n45009028007 +87270 n45009027013 +87275 n45009027013 +87278 n45001001001 n45008012003 n45008004013 +87283 n45009030005 +87294 n45009031001 +87311 n45009031001 +87317 n45009033004 n45009033018 +87319 n45009029007 +87352 n45001001001 +87357 n45009031001 +87363 n45009031001 +87371 n45009031001 +n45009031001 +87378 n45009031001 +87398 n45010005012 +87411 n45009031001 +87424 n45010006014 +87436 n45010007002 +87439 n45010006005 +87461 n45001001001 n45010001001 n45010004009 +87464 n45010001001 +87472 n45010001001 +87484 n45010001001 +87559 n45010015010 +87594 n45001001001 +87597 n45010012005 +87617 n45001001001 +87634 n45010009018 +87640 n45010020001 +n45010009018 +87647 n45010009018 +87656 n45010020001 +87660 n45010009018 +87666 n45010021014 +87668 n45010021014 +87670 n45001001001 +87679 n45011001004 +87698 n45011002004 +87701 n45010001001 +87709 n45011002014 +87719 n45011002025 +87723 n45011002025 +87728 n45011002025 +87738 n45011003001 +87779 n45011007005 +87789 n45011008003 +87799 n45011008009 +87804 n45011008014 +87834 n45011010003 +87841 n45011008006 +87843 n45001001001 +87845 n45011007015 +87847 n45011007015 +87849 n45011011004 +87860 n45011011014 +87881 n45001001001 +87896 n45001001001 +87899 n45001001001 +87904 n45001001001 +87948 n45011013005 +87960 n45011013005 +87962 n45011013005 +87967 n45011013005 +87978 n45011013005 +87987 n45011019004 +87995 n45011013005 +87997 n45011013005 +88010 n45011021004 +88012 n45011013005 +88020 n45011021008 +88028 n45011013005 +88039 n45011021008 +88049 n45011023013 +88063 n45011013005 +88079 n45001001001 +88087 n45011025006 +88111 n45011026008 n45011026013 n45011027007 n45011027009 +88116 n45010017011 +n45011026012 +88129 n45011023013 +88166 n45011025006 +88194 n45011032004 +88250 n45001001001 +88262 n45012001014 +88273 n45012001004 +88278 n45012001004 +88299 n45001001001 +88304 n45012003005 +88312 n45012001004 +88315 n45012001004 +88318 n45012001004 +88321 n45012001004 +88336 n45001001001 n45012001004 n45010004009 +88361 n45012001004 +88368 n45012006006 +88409 n45012001004 +88412 n45012001004 +88423 n45012001004 +88430 n45012001004 +88433 n45012001004 +88436 n45012001004 +88439 n45012001004 +88442 n45012001004 +88447 n45012001004 +88450 n45012001004 +n45012001004 +88454 n45012001004 +88457 n45012001004 +n45012001004 +88461 n45012001004 +88468 n45012001004 +88472 n45012001004 +88476 n45012001004 +88478 n45012001004 +88486 n45012001004 +n45012001004 +88500 n45012001004 +88504 n45012019004 +88506 n45012019004 +88511 n45012019012 n45012019015 n45012019016 +88527 n45012020005 +88541 n45012019004 +88546 n45012019004 +88555 n45013001003 +88601 n45012019004 +88603 n45012019004 +88608 n45012019004 +88610 n45012019004 +88617 n45013003018 +88626 n45012019004 +n45012019004 +88633 n45013003018 +88637 n45013003018 +88647 n45012019004 +88663 n45012019004 +88667 n45013003018 +88671 n45013003018 +n45012019004 +88698 n45012019004 +88703 n45012019004 +88730 n45013009004 n45013009006 n45013009008 n45013009010 n45013009015 +88752 n45012019004 +88771 n45001001001 n45012019004 n45012005003 +88780 n45001001001 n45012019004 n45012005003 +88786 n45001001001 n45012019004 n45012005003 +88795 n45001001001 n45012019004 n45012005003 +88809 n45012019004 +88819 n45012019004 +88827 n45012019004 +88835 n45014002001 +88843 n45014002001 +88846 n45014002008 +88852 n45014002008 +88854 n45014002001 +88872 n45014004007 +88874 n45014004007 +88876 n45014004007 +88881 n45014004019 +88902 n45014005001 +88909 n45014002001 +88913 n45014006009 +88919 n45014002008 +88924 n45014006019 +88939 n45001001001 n45012019004 n45012005003 +88942 n45001001001 n45012019004 n45012005003 +88945 n45001001001 n45012019004 n45012005003 +88948 n45001001001 n45012019004 n45012005003 +88952 n45001001001 n45012019004 n45012005003 +88955 n45001001001 n45012019004 n45012005003 +88958 n45001001001 n45012019004 n45012005003 +88971 n45014009004 +88995 n45014011003 n45014011005 n45014011009 n45014011015 +89024 n45001001001 n45012019004 n45012005003 +89027 n45012019004 +89031 n45012019004 +89037 n45001001001 +89039 n45001001001 +89068 n45012019004 +89074 n45012019004 +89120 n45001001001 n45012019004 n45012005003 +89134 n45012019004 +89149 n45014020015 +89153 n45012019004 +89156 n45012019004 +89168 n45012019004 +89182 n45014022014 +89188 n45014023003 +89210 n45001001001 n45012019004 n45015001005 +89214 n45001001001 n45012019004 n45015001005 +89234 n45015003016 +89263 n45001001001 n45012019004 n45015001005 n45015001009 +89276 n45012019004 +89287 n45012019004 +89298 n45012019004 +89311 n45001001001 +89321 n45015008003 +89335 n45015009013 n45015009021 +89349 n45011002018 +89351 n45015010005 +89361 n45015011006 +89381 n45015012007 +n45015012007 +89401 n45012019004 +89428 n45015014003 +89432 n45015014003 +89435 n45015014003 +89438 n45001001001 +89443 n45001001001 +89449 n45015015012 +89464 n45001001001 +89476 n45015016019 +89481 n45001001001 +89493 n45001001001 +n45001001001 +89533 n45001001001 +n45001001001 +89544 n45001001001 +89547 n45015021004 n45015021014 +89561 n45001001001 +89565 n45001001001 +89572 n45001001001 +89579 n45001001001 +89581 n45001001001 +89589 n45001001001 +89594 n45001001001 +n45001001001 +n45001001001 +89601 n45001001001 +89608 n45001001001 +89611 n45001001001 +89614 n45001001001 +89624 n45015026003 n45015026005 +89634 n45015026003 n45015026005 +89637 n45015026003 n45015026005 +89647 n45015027014 +89652 n45015027014 +89656 n45001001001 +89658 n45001001001 +89663 n45001001001 +89669 n45001001001 +89671 n45001001001 +89678 n45001001001 +89681 n45001001001 +89706 n45001001001 +89727 n45001001001 +89733 n45001001001 +89745 n45001001001 +89751 n45016001004 +89760 n45015030004 +89767 n45015030004 +89773 n45016001004 +89784 n45015030004 +89821 n45015030004 +89833 n45015030004 +89840 n45015030004 +89863 n45015030004 +89870 n45015030004 +89882 n45015030004 +89888 n45015030004 +89893 n45015030004 +89898 n45015030004 +89904 n45016011007 +89907 n45015030004 +89912 n45016012002 n45016012004 +89915 n45015030004 +89924 n45015030004 +89936 n45015030004 +89947 n45015030004 +89964 n45015030004 +89978 n45001001001 +89995 n45016017004 +90017 n45016017018 +90032 n45001001001 +90034 n45001001001 +90083 n45001001001 +90088 n45016022004 +90118 n45016025003 +90133 n45016025017 +90135 n45016025017 +90153 n45016025017 +90186 n46001002002 +90189 n46001002002 +90224 n46001001001 +90236 n46001004009 +90244 n46001002002 +90268 n46001002002 +90296 n46001002002 +90309 n46001001001 +90331 n46001010004 +n46001010004 +90345 n46001011014 +90358 n46001001001 +90390 n46001011006 +n46001013013 +90395 n46001013013 +90410 n46001011006 +90412 n46001013013 +90419 n46001013013 +90423 n46001013013 +90429 n46001013013 +90431 n46001013013 +90456 n46001013013 n46001001010 n46001011006 n46001002018 +90460 n46001018002 +90462 n46001019003 n46001019013 +n46001018017 +90473 n46001018017 +90515 n46001021019 +90531 n46001023004 +90571 n46001026006 +90596 n46001027008 +90608 n46001027020 +90621 n46001028003 n46001028008 +90628 n46001028011 +90659 n46001031008 +90661 n46001031008 +90667 n46001013013 +90677 n46001013013 +90685 n46001013013 +90687 n46001013013 +90696 n46002002010 +90744 n46001013013 n46001001010 +90761 n46002006015 +90763 n46001013013 n46001001010 +90769 n46002007004 +90790 n46002008004 +90797 n46002008004 +90800 n46002009007 +90885 n46002009023 +90894 n46002009023 +90907 n46002009023 +90921 n46002014006 +90924 n46002014003 +n46002014003 +90928 n46002014006 +90957 n46001013013 +90970 n46001013013 +90975 n46003001002 +90980 n46003001002 +90984 n46003001002 +90994 n46003001002 +90998 n46003001002 +91013 n46003001002 +91025 n46003001002 +91043 n46003005008 +91048 n46003006003 +91051 n46003007013 +91055 n46003005008 +91058 n46003006003 +91072 n46003008002 n46003008006 +91079 n46003001002 +91086 n46003010003 +91092 n46003008002 +91100 n46003010017 +91106 n46003011004 +91109 n46003010012 +91140 n46003013003 +91157 n46003014002 +91159 n46003014002 +91165 n46003015002 +91175 n46003001002 +91179 n46003001002 +91216 n46003018005 +91224 n46003018005 +91226 n46003018005 +91240 n46003019015 +91258 n46003020006 +91306 n46004002008 +91318 n46004003009 +91320 n46003022002 +91330 n46003022002 +91334 n46003022002 +91339 n46003022002 +91351 n46003001002 +91382 n46003022002 +91392 n46004006003 +91413 n46004006003 +91417 n46004006003 +91421 n46004006003 +91423 n46004006003 +91426 n46004006003 +91428 n46004006003 +n46004006003 +91431 n46004006003 +91434 n46004006003 +91438 n46004006003 +91445 n46003022002 +91457 n46004009007 +91488 n46004009007 +91490 n46004009007 +91492 n46004009007 +91494 n46004009007 +91496 n46004009007 +91498 n46004009007 +n46004009007 +91503 n46004009007 +n46004009007 +n46004009007 +n46004009007 +n46004009007 +n46004009007 +91515 n46004009007 +91519 n46003022002 +91521 n46003022002 +91528 n46003022002 +91533 n46004006003 +91551 n46003022002 +91555 n46004006003 +91559 n46003022002 +91597 n46003022002 +91606 n46003022002 +91611 n46004018009 +91627 n46004006003 +91630 n46003022002 +91665 n46004006003 +91675 n46005001016 +91679 n46003022002 +91683 n46003022002 +91689 n46003022002 +91693 n46005001016 +91713 n46004006003 +91737 n46004006003 +91745 n46004006003 +91750 n46004006003 +91754 n46004006003 +91764 n46002009023 +91781 n46003022002 +91787 n46004006003 +91805 n46004006003 +91809 n46004006003 +91812 n46003022002 +91815 n46004006003 +91819 n46005011008 +91835 n46004006003 +91853 n46004006003 +91863 n46006001002 +91867 n46006001002 +91878 n46004006003 +91893 n46004006003 +91897 n46004006003 +91900 n46006002006 +91908 n46004006003 +91910 n46006001012 +91915 n46004006003 +91919 n46003022002 +91929 n46006005011 +91953 n46004006003 +91960 n46004006003 +91965 n46004006003 +91976 n46004006003 +91984 n46004006003 +92013 n46004006003 +92015 n46004006003 +92017 n46004006003 +92094 n46004006003 +92103 n46003022002 +92108 n46003022002 +92112 n46006015016 +92115 n46004006003 +92140 n46004006003 +92163 n46004006003 +92176 n46004006003 +92181 n46004006003 +92184 n46004006003 +92187 n46004006003 +92197 n46004006003 +92202 n46007001006 +92256 n46007004015 n46007004023 +92266 n46007004015 n46007004023 +92274 n46007004015 n46007004023 +92287 n46003022002 +92294 n46003022002 +92315 n46003022002 +92324 n46007008004 n46007008007 +92330 n46007008004 n46007008007 +n46007008004 n46007008007 +92335 n46007008004 n46007008007 +92337 n46007008004 n46007008007 +92355 n46007010010 +n46007010010 +92361 n46007010010 +92384 n46007012012 +92388 n46007012011 +92399 n46007013005 +92403 n46007013002 +92434 n46007014022 +92440 n46007015004 +92461 n46007016004 +92465 n46007016004 +92469 n46007016012 +92473 n46007016012 +92487 n46007017008 +92494 n46003022002 +n46007018002 +92499 n46007018002 +92505 n46007018009 +92524 n46007020001 +92529 n46004006003 +92532 n46007021002 +92536 n46004006003 +92538 n46004006003 +92540 n46004006003 +92545 n46007022006 +92553 n46007022012 +92558 n46004006003 +92560 n46004006003 +92570 n46007024001 +92580 n46003022002 +92583 n46003022002 +92585 n46003022002 +92589 n46003022002 +92591 n46003022002 +92597 n46007026009 +92604 n46007026012 +n46007024005 +92608 n46007024005 +92610 n46007024005 +92614 n46007024005 +92619 n46007024005 +92621 n46007024005 +92628 n46007028011 +92643 n46003022002 +92657 n46007029014 +92664 n46007030003 +92670 n46007030009 +92676 n46007030015 +92684 n46007031003 +92693 n46003022002 +92704 n46007032007 +92715 n46007033003 +92719 n46007033003 +92733 n46007034005 n46007034010 +92749 n46007034026 +92759 n46003022002 +92764 n46003022002 +92777 n46007036003 +92784 n46007036007 +92788 n46007036022 +n46007036022 +92791 n46007036003 +n46007036003 +92794 n46007036003 +n46007036003 n46007036007 +92805 n46007037001 +92809 n46007037001 +92816 n46007037001 +92821 n46007037001 +92857 n46007039001 +92859 n46007039001 +n46007039001 +92866 n46007039001 +92869 n46007039001 +92879 n46003022002 +92884 n46006002006 +92899 n46008002002 +92902 n46008002002 +92905 n46008002002 +92922 n46006002006 +92939 n46008005006 +92997 n46008007007 +93003 n46008007020 +93015 n46006002006 +n46006002006 +93019 n46006002006 +n46006002006 +93022 n46007029004 +93039 n46007029004 +93049 n46008010014 +93055 n46008010003 +93063 n46008010003 +93072 n46008010007 +93077 n46008010007 +93081 n46008012011 +93084 n46008010007 +93094 n46003022002 +93104 n46003022002 +93106 n46003022002 +93109 n46003022002 +93116 n46003022002 +93128 n46003022002 +93133 n46003022002 +93154 n46003022002 n46009006005 +93156 n46003022002 n46009006005 +93158 n46003022002 n46009006005 +93161 n46003022002 n46009006005 +93165 n46003022002 n46009006005 +93187 n46003022002 n46009006005 +93201 n46009007006 +93213 n46009007016 +93218 n46003022002 +93231 n46009009008 +93235 n46009009009 +93246 n46009009016 +93250 n46009009008 +93255 n46009010015 +93264 n46009010019 +93289 n46003022002 n46009006005 +93295 n46003022002 n46009006005 +93300 n46003022002 n46009006005 +93306 n46007029004 +93332 n46003022002 n46009006005 n46009005012 n46009005015 n46009005019 +93336 n46009014009 +93345 n46003022002 +93349 n46009014013 +93356 n46003022002 +93365 n46003022002 +93380 n46003022002 +93385 n46003022002 +93387 n46003022002 +93392 n46003022002 +93400 n46003022002 +93402 n46003022002 +93408 n46003022002 +93417 n46003022002 +93422 n46003022002 +93426 n46003022002 +93428 n46003022002 +93435 n46003022002 +93451 n46003022002 +93457 n46003022002 +93464 n46003022002 +93467 n46003022002 +93474 n46003022002 +93477 n46003022002 +93482 n46003022002 +93485 n46003022002 +93492 n46003022002 +93494 n46007029004 +93509 n46007029004 +93511 n46007029004 +93524 n46009025004 +93536 n46003022002 +93540 n46003022002 +93542 n46003022002 +93547 n46003022002 +93551 n46003022002 +93558 n46003022002 +93604 n46010001009 +93607 n46010004013 +93625 n46010005005 +93646 n46010001006 +93651 n46010007009 n46010007016 +93655 n46010007011 +93657 n46010007011 +93659 n46010007011 +n46010007011 +93662 n46006002006 +93674 n46006002006 +93685 n46010009006 +93687 n46010001006 +93693 n46010010004 +93703 n46010011001 +93717 n46010012003 +93720 n46010012003 +93739 n46010001006 +93749 n46010001006 +n46010001006 +93754 n46010014002 +93760 n46003022002 +93764 n46003022002 +93770 n46006002006 +93781 n46006002006 +93805 n46010014002 +93812 n46010018003 +93821 n46003022002 +93834 n46006006009 +93839 n46006006009 +93842 n46003022002 +93849 n46010014002 +93852 n46010014002 +93857 n46010014002 +93860 n46010014002 +93865 n46006002006 +93871 n46006002006 +93897 n46010014002 +93899 n46010014002 +93919 n46010014002 +n46010014002 +93925 n46010014002 +93927 n46010014002 +93940 n46010014002 +93944 n46010028003 +93949 n46003022002 +93973 n46003022002 +93980 n46010014002 +93982 n46010014002 +93985 n46010014002 +93990 n46010014002 +93992 n46010014002 +94007 n46003022002 +94017 n46010033014 +94020 n46010014002 +94025 n46003022002 +94030 n46010014002 +94033 n46003022002 +94037 n46010014002 +94039 n46003022002 +94063 n46011004002 +94065 n46011004002 +94068 n46011004002 +94076 n46011005003 +94078 n46011005003 +94087 n46011005004 +94093 n46011005003 +94100 n46011006005 +94106 n46011006011 +94108 n46011006011 +n46011006011 +94115 n46011007001 +94122 n46011007001 +94158 n46011010005 +94199 n46010014002 +94220 n46011014011 +94227 n46011015004 +94240 n46011016003 +94253 n46003022002 +94255 n46003022002 +94265 n46010014002 +94273 n46003022002 +94281 n46003022002 +94307 n46010014002 +94316 n46011021001 +94328 n46010014002 +94331 n46010014002 +94333 n46010014002 +94339 n46010014002 +94341 n46010014002 +94346 n46003022002 +94348 n46003022002 +94353 n46003022002 +94362 n46003022002 +94372 n46011023013 +94376 n46011023013 +n46011023013 +94379 n46011023013 +94400 n46011023013 +n46011023013 +94425 n46010014002 +94432 n46010014002 +94437 n46010014002 +94440 n46011026015 +94472 n46011028003 +94477 n46011028003 +94489 n46011029003 +94506 n46006002006 +94509 n46006002006 +94511 n46006002006 +94515 n46006002006 +94521 n46006002006 +94525 n46011033002 +94528 n46011033002 +94530 n46011033002 +94536 n46011034002 +94541 n46011033002 +94547 n46003022002 +n46003022002 +94555 n46003022002 +94558 n46012001005 +94562 n46012001005 +94570 n46012001005 +n46012001005 +94573 n46003022002 +94580 n46012003005 +94587 n46012003014 +94620 n46012006008 +94694 n46012011006 +94698 n46012011006 +94708 n46012012004 +94716 n46012012014 +94764 n46012015004 +94767 n46012015004 +94775 n46012015004 +94786 n46012016005 +94789 n46012016005 +94797 n46012016005 +94829 n46012018004 +94853 n46012021005 +94859 n46012021005 +94869 n46012021016 +94874 n46012022006 +94876 n46012022006 +94888 n46006002006 +94892 n46006002006 +94915 n46012024010 +95007 n46012001005 +95018 n46003022002 +95027 n46003022002 +95031 n46003022002 +n46003022002 +95034 n46013001015 +95037 n46013001018 +95040 n46003022002 +95043 n46003022002 +95053 n46003022002 +95059 n46003022002 +95063 n46003022002 +95065 n46003022002 +95068 n46003022002 +95075 n46003022002 +95080 n46003022002 +95084 n46003022002 +95098 n46013004010 +95100 n46013004010 +95102 n46013004010 +95104 n46013004010 +95108 n46013004010 +95110 n46013004010 +95114 n46013004010 +95119 n46013004010 +95123 n46013004010 +95125 n46013004010 +95127 n46013004010 +95129 n46013004010 +95137 n46013008007 +95140 n46013008010 +95143 n46013008013 +95147 n46006002006 +95151 n46006002006 +95162 n46003022002 +95164 n46003022002 +95167 n46003022002 +95170 n46003022002 +95174 n46003022002 +95176 n46003022002 +95181 n46006002006 +95193 n46003022002 +95198 n46003022002 +95201 n46003022002 +95216 n46012001005 +95220 n46012001005 +95226 n46012001005 +95241 n46014002003 +95264 n46003022002 +95272 n46012001005 +95284 n46014005017 +95294 n46003022002 +95298 n46003022002 +95301 n46003022002 +95305 n46003022002 +95331 n46014007005 +95360 n46014006003 +95368 n46014006003 +n46014006003 +95384 n46003022002 +95389 n46003022002 +95405 n46014006003 +95411 n46014006003 +95413 n46014006003 +95420 n46014013003 +95423 n46003022002 +95437 n46014014003 n46014014008 n46014014013 +n46003022002 +95442 n46003022002 +95446 n46003022002 +95450 n46003022002 +95456 n46014006003 +95474 n46014006003 +95476 n46014016006 +95487 n46003022002 +95494 n46003022002 +95498 n46003022002 +95504 n46003022002 +95508 n46003022002 +95517 n46014020001 +95523 n46014020001 +95528 n46014020001 +95532 n46014021012 n46014021019 n46014021021 +95540 n46014021022 +95547 n46014021014 +95591 n46014023016 n46014023018 +95593 n46014023005 +95604 n46014024008 n46014024010 +95607 n46014024008 n46014024010 +95619 n46014024008 n46014024010 +95622 n46014024008 n46014024010 +95625 n46014024008 n46014024010 +95638 n46014026004 +95643 n46014026007 +95645 n46014026007 +95647 n46014026007 +95649 n46014026007 +95675 n46014027003 +95679 n46014027003 +95697 n46014030003 +95707 n46014026004 +95744 n46014034002 +95746 n46014034002 +95755 n46014034002 +n46014034002 +95762 n46014034002 +95767 n46014035015 +95782 n46014036005 +95786 n46014037002 +95790 n46014037002 +95792 n46003022002 +95797 n46014037010 +95802 n46014038003 +95806 n46014039002 +95808 n46014039002 +95811 n46014039002 +95814 n46014039002 +95824 n46003022002 +95829 n46003022002 +95833 n46015001004 +95837 n46015001004 +95841 n46015001004 +95844 n46003022002 +95847 n46015001004 +95852 n46015001004 +95854 n46003022002 +95860 n46003022002 +95873 n46015003010 +95876 n46015003010 +95886 n46015003010 +95892 n46015003010 +95908 n46015003010 +95917 n46015003010 +95931 n46003022002 +95933 n46015009005 +95936 n46003022002 +95944 n46003022002 +95946 n46003022002 +95961 n46003022002 +95981 n46015001004 +95989 n46015012003 +96025 n46003022002 n46015009007 +96031 n46003022002 n46015009007 +96036 n46015015011 +96041 n46015015011 +96065 n46015001004 +96084 n46014033015 +n46014033015 +96090 n46014033015 +96144 n46015023012 +96152 n46015023012 +96166 n46015024009 +96181 n46015024009 +96188 n46015004013 +96196 n46015024009 +96213 n46015024009 +96239 n46015029005 +96251 n46003022002 +96257 n46003022002 +96267 n46003022002 +96285 n46015031008 +96291 n46015031008 +96295 n46015031008 +96304 n46003022002 +96315 n46015035007 +96324 n46015036004 +96327 n46015036001 +96332 n46015037006 +n46015036001 +96351 n46015038003 +96420 n46015035010 +96423 n46015035010 +96426 n46015035010 +96429 n46015035010 +96432 n46015035010 +96435 n46015035010 +96453 n46015045004 n46015045014 +96461 n46015045010 +96467 n46015045016 +96507 n46014033015 +96512 n46014033015 +96520 n46003022002 +96528 n46015050006 n46015050008 +96537 n46015050004 +96540 n46003022002 +96557 n46015052009 +96597 n46015054017 +96632 n46015057003 +96646 n46015058002 +96649 n46015058002 +96656 n46015058002 +96675 n46003022002 +96692 n46016002004 +96696 n46016002004 +96700 n46003022002 +96706 n46003022002 +96709 n46015058002 +96713 n46003022002 +n46016003006 +96729 n46016003006 +96731 n46003022002 +96736 n46003022002 +96739 n46003022002 +96744 n46003022002 +96747 n46003022002 +96754 n46003022002 +96757 n46003022002 +96762 n46003022002 +96764 n46003022002 +96767 n46003022002 +96775 n46003022002 +96795 n46015058002 +96798 n46016010004 +96805 n46016010004 +96814 n46015058002 +96819 n46016010004 +96823 n46003022002 +96834 n46003022002 +96837 n46016012003 +96850 n46016012003 +96852 n46016012003 +96854 n46016012003 +n46015058002 +n46015058002 +96860 n46015058002 +n46015058002 +96868 n46003022002 +96871 n46016015004 +96876 n46016015007 +96885 n46016015007 +96900 n46003022002 +96916 n46016017006 n46016017008 n46016017010 +96924 n46016015004 +96952 n46016015004 +96969 n46016022002 +96972 n46016022009 +97005 n47001001013 +97013 n47001001022 +97049 n47001003012 +97058 n47001003012 +97094 n47001001001 n47001001009 +97102 n47001001001 n47001001009 +97108 n47001006015 +97125 n47001001001 n47001001009 +97128 n47001001013 n47001001022 +97139 n47001001001 n47001001009 +97147 n47001008009 +97156 n47001001001 n47001001009 +97162 n47001001001 n47001001009 +97174 n47001001001 n47001001009 +n47001001001 n47001001009 +97183 n47001009019 +97193 n47001009019 +97196 n47001001001 n47001001009 +97200 n47001009019 +97247 n47001001001 n47001001009 +97256 n47001001001 n47001001009 +97263 n47001008006 +97266 n47001008006 +97268 n47001001001 +97272 n47001008006 +97275 n47001008006 +97282 n47001001001 n47001001009 +97298 n47001001001 +97302 n47001001001 +97306 n47001008006 +97310 n47001001001 +97317 n47001001001 +97323 n47001001001 +97329 n47001001001 +97334 n47001001001 +97337 n47001001001 +97340 n47001001001 +97380 n47001019005 +97419 n47001021012 +97426 n47001021012 +97431 n47001021012 +97434 n47001021012 +97454 n47001001001 +97457 n47001001001 +97462 n47001001001 n47001019017 n47001019019 +97468 n47001001001 n47001019017 n47001019019 +97475 n47001008006 +97477 n47001001001 +97487 n47001001001 +97505 n47001001001 +97510 n47001001001 +97512 n47001001001 +97518 n47001001001 +97536 n47001001001 +97543 n47001008006 +97546 n47001008006 +97550 n47001001001 +97560 n47002005003 +97568 n47001001001 +97595 n47001001001 +97605 n47001001001 +97607 n47001001001 +97615 n47001008006 +97619 n47001008006 +97628 n47001001001 +97636 n47001001001 n47001019017 n47001019019 n47001008006 +97645 n47001001001 n47001019017 n47001019019 n47001008006 +97647 n47001001001 +97663 n47001001001 +97677 n47001001001 +97679 n47001001001 +97688 n47002014003 +97699 n47002014003 +97708 n47001001001 n47001019017 n47001019019 n47002013011 +97739 n47001001001 n47001019017 n47001019019 n47002013011 +97760 n47001001001 n47001019017 n47001019019 n47002013011 +n47001001001 n47001019017 n47001019019 n47002013011 +97764 n47001001001 n47001019017 n47001019019 n47002013011 +97767 n47001001001 n47001019017 n47001019019 n47002013011 +97782 n47003002002 +97787 n47003002002 +97789 n47003002002 +97793 n47001008006 +97795 n47001008006 +97798 n47003003004 +97801 n47003003004 +97807 n47003003014 +97820 n47001001001 n47001019017 n47001019019 n47002013011 +97832 n47001001001 n47001019017 n47001019019 n47002013011 +n47001001001 n47001019017 n47001019019 n47002013011 +97872 n47003007004 +97883 n47003007019 +97895 n47003007027 +97926 n47003006014 +97933 n47003010014 +97938 n47003006014 +97944 n47003006018 +97948 n47001001001 n47001019017 n47001019019 n47002013011 +97953 n47001001001 n47001019017 n47001019019 n47002013011 +97975 n47003006014 +97997 n47003014013 +98001 n47003014013 +98039 n47003018005 +98044 n47001001001 n47001019017 n47001019019 n47002013011 n47001008006 +98059 n47001001001 n47001019017 n47001019019 n47002013011 +98064 n47001001001 n47001019017 n47001019019 n47002013011 +98066 n47001001001 n47001019017 n47001019019 n47002013011 +98068 n47001001001 n47001019017 n47001019019 n47002013011 +98074 n47001001001 n47001019017 n47001019019 n47002013011 +98078 n47001001001 n47001019017 n47001019019 n47002013011 +98088 n47001001001 n47001019017 n47001019019 n47002013011 +98108 n47004003007 +n47004003007 +98142 n47001001001 n47001019017 n47001019019 n47002013011 +98157 n47004006003 +98180 n47001001001 n47001019017 n47001019019 n47002013011 +98201 n47001001001 n47001019017 n47001019019 n47002013011 +98204 n47001001001 n47001019017 n47001019019 n47002013011 +n47001001001 n47001019017 n47001019019 n47002013011 +98208 n47001001001 n47001019017 n47001019019 n47002013011 +n47001001001 n47001019017 n47001019019 n47002013011 +98212 n47001001001 n47001019017 n47001019019 n47002013011 +n47001001001 n47001019017 n47001019019 n47002013011 +98216 n47001001001 n47001019017 n47001019019 n47002013011 +98225 n47001001001 n47001019017 n47001019019 n47002013011 +98241 n47001001001 n47001019017 n47001019019 n47002013011 +98271 n47004011005 +98279 n47004013011 n47004013013 +98288 n47004011005 +n47004011005 +98292 n47004007016 +98302 n47004014004 +98313 n47004015008 +98327 n47004011005 +98378 n47004011005 +98390 n47004011005 +98402 n47004011005 +98409 n47004011005 +n47004011005 +98414 n47004011005 +98417 n47004011005 +98421 n47004011005 +98426 n47005004007 +98429 n47005004007 +98431 n47005004007 +98433 n47005004007 +98443 n47005005008 +98450 n47005005008 +98457 n47005004007 +98460 n47005004007 +98462 n47005004007 +98466 n47005004007 +98473 n47005004007 +98478 n47005004007 +98480 n47005004007 +98482 n47005004007 +98487 n47005004007 +98493 n47005004007 +98495 n47005004007 +98497 n47005004007 +98500 n47005004007 +98521 n47005010014 +98527 n47005004007 +98533 n47005004007 +98536 n47005004007 +98538 n47001001001 +98544 n47005004007 +98548 n47005004007 +98553 n47005004007 +98558 n47001008006 +98570 n47005004007 +98573 n47005004007 +98582 n47005004007 +98596 n47005014005 +98607 n47005014005 +98609 n47005014005 +98621 n47005004007 +98628 n47005004007 +98639 n47001008006 +98649 n47005018006 +98655 n47005018006 +98671 n47005019003 +98677 n47005019003 +98687 n47005004007 +98694 n47005004007 +98697 n47001008006 +98702 n47005020013 +98707 n47005020016 +98716 n47005004007 +98718 n47005004007 +98729 n47006001011 +98732 n47006001011 +98738 n47006001011 +98740 n47001008006 +98744 n47001008006 +98752 n47005004007 +98761 n47005004007 +98829 n47005004007 +98831 n47005004007 +98833 n47005004007 +98835 n47001008006 +n47005004007 +98838 n47005004007 +98841 n47005004007 +98843 n47005004007 +98846 n47005004007 +98851 n47005004007 +98854 n47005004007 +98857 n47005004007 +98870 n47006011007 +98874 n47006011007 +98885 n47001001001 +98890 n47006011007 +n47006011007 +98928 n47006016011 +98935 n47006016017 +98939 n47006016017 +98941 n47006016017 +98966 n47006017009 +98983 n47005004007 n47007001006 +98987 n47005004007 n47007001006 +98995 n47005004007 n47007001006 +99000 n47007001006 +99003 n47005004007 +99005 n47005004007 +99007 n47005004007 +99011 n47001001001 +99013 n47001001001 +99019 n47007001006 +99022 n47005004007 +99024 n47005004007 +99035 n47001001001 +99038 n47001001001 +99053 n47001001001 n47001019017 n47001019019 +99061 n47001001001 n47001019017 n47001019019 +99068 n47007006009 +99092 n47007006013 +99095 n47007006013 +99115 n47001001001 +99121 n47001001001 +99124 n47001001001 +n47001001001 +99137 n47001001001 +99140 n47007001006 +99143 n47007001006 +99147 n47007001006 +99153 n47007001006 +99174 n47007001006 +99180 n47007001006 +99199 n47007001006 +99202 n47007001006 +99208 n47001001001 +99235 n47001001001 n47001019019 n47001019017 +99243 n47001001001 n47001019017 n47001019019 +99262 n47001001001 +99264 n47001001001 +99270 n47001001001 n47001019017 n47001019019 +99289 n47007014024 +99299 n47007001006 +99301 n47001001001 +99305 n47001001001 +99310 n47005004007 +99317 n47008001006 +99346 n47001001001 +99357 n47008001013 +99373 n47005004007 +99376 n47008001013 +99392 n47008006005 +99395 n47008006005 +99406 n47008001004 +99428 n47008001004 +99432 n47001001001 +99444 n47001001001 +99446 n47008001004 +99457 n47008009006 +99459 n47008009006 +99470 n47001001001 +99479 n47008001004 +99483 n47008001004 +99491 n47008001004 +n47008001004 +99498 n47008001004 +99502 n47008001004 +99505 n47008001004 +99554 n47008015007 n47008015013 +99571 n47008016004 +99585 n47008016015 +99588 n47008016015 +99590 n47008016015 +99594 n47001001001 n47001019017 n47001019019 +99614 n47008018006 +99625 n47008019014 +99637 n47001001001 n47001019017 n47001019019 +99648 n47008020009 +99652 n47001001001 n47001019017 n47001019019 +99663 n47001001001 n47001001009 n47001019019 +99669 n47001001001 n47001019017 n47001019019 +99674 n47008022005 +99713 n47008001004 +99731 n47001001001 +99734 n47001001001 +99741 n47001001001 +99756 n47001001001 +99774 n47001001001 +n47008001004 +n47008001004 +99785 n47009004007 +99792 n47001001001 n47001019019 n47001019017 +99800 n47001001001 +n47001001001 +99805 n47009005006 +99809 n47009005006 +99811 n47009005015 +99843 n47009007001 +99864 n47009008004 +99873 n47008001004 +n47008001004 +99880 n47009009003 n47009009004 n47009009010 +99894 n47009008004 +99909 n47009010003 +99917 n47008001004 +99944 n47009012003 +99956 n47008001004 +99988 n47009014011 +100023 n47010001004 +n47010001004 +100028 n47010001004 +100031 n47010001004 +n47010001004 +100036 n47010001004 +n47010001004 +100046 n47005004007 n47009005006 +100050 n47005004007 n47009005006 +100054 n47005004007 n47009005006 +100070 n47005004007 n47009005006 +100075 n47010005003 +100082 n47005004007 n47009005006 +100093 n47005004007 n47009005006 +n47005004007 n47009005006 +100105 n47008001004 +100111 n47010007006 +100113 n47010007006 +100129 n47010001004 +100146 n47010001004 +100149 n47010001004 +100152 n47010001004 +100158 n47010007006 +100181 n47005004007 n47009005006 +100186 n47005004007 n47009005006 +100189 n47005004007 n47009005006 +100194 n47005004007 n47009005006 +n47005004007 n47009005006 +100197 n47005004007 n47009005006 +100208 n47010012008 +100210 n47010012008 +100234 n47005004007 n47009005006 +100242 n47005004007 n47009005006 +100245 n47005004007 n47009005006 +100251 n47005004007 n47009005006 +100261 n47005004007 n47009005006 +100267 n47005004007 n47009005006 +100274 n47005004007 n47009005006 +100285 n47005004007 n47009005006 +100293 n47005004007 n47009005006 +100313 n47010001004 +n47008001004 +100321 n47008001004 +100324 n47010001004 +100329 n47010001004 +100335 n47010001004 +100339 n47010001004 +100374 n47005004007 n47009005006 +100376 n47008001004 +100381 n47008001004 +100387 n47008001004 +100389 n47008001004 +100391 n47010001004 +100393 n47010001004 +100410 n47005004007 n47009005006 +100417 n47010001004 +100419 n47010001004 +100429 n47010001004 +100433 n47010001004 +n47010001004 +100441 n47010001004 +100445 n47010001004 +100447 n47010001004 +100456 n47011009016 +100465 n47010001004 +100467 n47010001004 +100490 n47010001004 +100497 n47010001004 +100499 n47010001004 +100501 n47010001004 +100510 n47011012011 +n47011012011 +100521 n47011012011 +100557 n47010001004 +100570 n47008001004 +100578 n47010001004 +100582 n47010001004 +100603 n47008001004 +100607 n47008001004 +100609 n47008001004 +100631 n47010001004 +100644 n47010001004 +100648 n47011019005 +100651 n47011019005 +100655 n47011019005 +100659 n47011019005 +n47010001004 +n47010001004 +100682 n47010001004 +100684 n47010001004 +100686 n47010001004 +100688 n47010001004 +100693 n47010001004 +100753 n47010001004 +100761 n47010001004 +100767 n47010001004 +100776 n47011031002 +100784 n47010001004 +100796 n47011032004 +100803 n47010001004 +100808 n47010001004 +100812 n47010001004 +100816 n47012001001 +100818 n47010001004 +100824 n47010001004 +100832 n47010001004 +100838 n47010001004 +100852 n47010001004 +100864 n47010001004 +100869 n47012003005 +100874 n47012003005 +100885 n47010001004 +100890 n47010001004 +100898 n47010001004 +n47010001004 +100901 n47010001004 +100905 n47010001004 +100907 n47010001004 +100915 n47012006014 +100918 n47012006014 +100929 n47010001004 +100939 n47012007015 +100942 n47010001004 +100948 n47010001004 +100950 n47012007012 +100954 n47012008005 +100970 n47010001004 +100983 n47010001004 +100998 n47010001004 +101001 n47010001004 +n47010001004 +101012 n47010001004 +101015 n47010001004 +101022 n47010001004 +101044 n47008001004 +101057 n47008001004 +101062 n47008001004 +101066 n47010001004 +n47010001004 +101072 n47010001004 +101075 n47010001004 +101087 n47012014023 +101106 n47010001004 +101108 n47010001004 +101110 n47012015016 +101116 n47010001004 +101120 n47010001004 +101124 n47010001004 +101129 n47010001004 +101131 n47010001004 +101134 n47010001004 +101145 n47005004007 n47009005006 +101151 n47008001004 +101154 n47005004007 n47009005006 +101159 n47005004007 n47009005006 +101169 n47010001004 +101172 n47010001004 +101175 n47010001004 +n47010001004 +101183 n47012019014 +101206 n47010001004 +101221 n47012021016 +101224 n47010001004 +101236 n47010001004 +101238 n47010001004 +101240 n47010001004 +101244 n47010001004 +101254 n47010001004 +101259 n47010001004 +101261 n47012019014 +101266 n47013003008 +101274 n47013003008 +101279 n47013003008 +101283 n47013003008 +101294 n47005004007 n47009005006 +101303 n47012019014 +101305 n47012019014 +101310 n47012019014 +101313 n47012019014 +101323 n47012019014 +101325 n47010001004 +101327 n47012019014 +101334 n47005004007 n47009005006 +101361 n47005004007 n47009005006 +101371 n47005004007 n47009005006 +101380 n47005004007 n47009005006 +101388 n47010001004 +n47010001004 +101391 n47010001004 +101394 n47010001004 +101411 n47013011002 +n47013011002 +n47013011002 +101416 n47013011002 +n47013011002 +101428 n47013011002 +101474 n48001001014 +101501 n48001003010 +101508 n48001003010 +101514 n48001004013 +101533 n48001001001 +101537 n48001002008 +101540 n48001004021 +101561 n48001007013 +101578 n48001001001 n48001002006 +101581 n48001008006 +101583 n48001001001 n48001002006 +101587 n48001001001 +101594 n48001002008 +101596 n48001009008 +101599 n48001001001 +101605 n48001001001 +101607 n48001001001 +101611 n48001001001 +101616 n48001001001 +101619 n48001001001 +101624 n48001011006 +101629 n48001011006 +101640 n48001001001 +101647 n48001011004 +101658 n48001001001 +101664 n48001001001 +101667 n48001001001 +101679 n48001001001 +101689 n48001013017 +101696 n48001013017 +101701 n48001015005 +101708 n48001001001 +101715 n48001001001 +101720 n48001001001 +101729 n48001001001 +101734 n48001001001 +101741 n48001001001 +101744 n48001001001 +101747 n48001001001 +101757 n48001001001 +101767 n48001001001 +101769 n48001011004 +101775 n48001001001 +101777 n48001001001 +101787 n48001001001 +n48001001001 +101800 n48001022007 +n48001022007 +101804 n48001001001 +101813 n48001023007 +101815 n48001022007 +101825 n48001001001 +101830 n48001001001 +101834 n48001001001 +101838 n48001001001 +101843 n48001001001 +101856 n48001001001 +101858 n48001001001 +101866 n48002003003 +101868 n48002003003 +101876 n48002004005 +101881 n48001001001 n48002001010 n48002003003 n48001002006 n48001011004 +101887 n48002004005 +101892 n48001001001 n48002001010 n48002003003 +101907 n48002006004 +101911 n48002006004 +101929 n48002009008 n48002009010 n48002009012 +101931 n48001001001 +101942 n48002006015 +101955 n48002009008 n48002009010 n48002009012 +101959 n48002009004 +101967 n48002009008 n48002009010 n48002009012 +101969 n48002009008 n48002009010 n48002009012 +101990 n48001001001 n48002009021 +101993 n48001001001 +101996 n48001001001 +102006 n48001001001 +102008 n48002011004 +n48002011004 +102020 n48002011004 +102023 n48002012005 +n48002011004 +102026 n48002011004 +102028 n48002011004 +102048 n48001001001 +102051 n48002013007 n48002011004 n48002013010 +102057 n48001001001 +102065 n48002014014 +102072 n48002014014 +102085 n48001001001 n48002013007 n48002013010 n48002014014 +102106 n48001001001 n48002013007 n48002013010 n48002014014 +102125 n48001001001 n48002013007 n48002013010 n48002014014 +n48001001001 n48002013007 n48002013010 n48002014014 +102138 n48002017014 +102142 n48001001001 +102145 n48001001001 +102148 n48001001001 +102157 n48001001001 +102159 n48001001001 +102172 n48001001001 +102175 n48001001001 +102184 n48002020021 +102187 n48002020021 +102192 n48001001001 +102218 n48003001010 +n48001001001 +102222 n48001001001 +102227 n48003001003 +102237 n48003001003 +n48003001003 +102242 n48003001003 +102244 n48003001003 +102252 n48002021006 +102257 n48002021006 +102274 n48003006003 +102279 n48003001003 +102291 n48003008004 +102329 n48003010013 +102345 n48003010015 +102385 n48003013001 +102390 n48003013015 +102414 n48001001001 n48001002006 n48003001003 n48002013007 n48002013010 n48002014014 +102421 n48001001001 +102424 n48003015008 +102441 n48003008004 +102461 n48001001001 +102463 n48003017004 +102473 n48003017016 +102479 n48003017016 +102506 n48003019004 +102513 n48003018006 +n48003019004 +102540 n48003021006 +102546 n48003021014 +n48003021014 +102581 n48001001001 n48001002006 n48003015001 n48003022018 n48002013007 n48002013010 n48002014014 +n48001001001 n48001002006 n48003015001 n48003022018 n48002013007 n48002013010 n48002014014 +102585 n48003023014 +n48003023014 +102599 n48001001001 n48001002006 n48003015001 n48003022018 n48002013007 n48002013010 n48002014014 +102607 n48001001001 n48001002006 n48003015001 n48003022018 n48002013007 n48002013010 n48002014014 +102657 n48003027005 +102662 n48001001001 +102671 n48004001007 +102675 n48004001007 +102681 n48004001007 +102691 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48003027005 +102713 n48004004012 +102716 n48004004012 +102723 n48004004012 +102727 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48003027005 +102730 n48003027005 +102744 n48004006009 +102749 n48003027005 +102765 n48003027005 +102767 n48003027005 +102775 n48003027005 +102779 n48003027005 +102783 n48003027005 +102794 n48003027005 +n48003027005 +n48003027005 +102804 n48001001001 +102809 n48001001001 +102812 n48003027005 +102820 n48001001001 +102824 n48004012008 +102826 n48004012008 +102832 n48001001001 +102845 n48004012008 +102847 n48004012008 +102852 n48004012008 +102863 n48001001001 +102871 n48004012008 +n48004012008 +102877 n48001001001 +n48001001001 +102880 n48002004005 +102885 n48002004005 +102887 n48002004005 +102890 n48004012008 +102893 n48004012008 +102910 n48001001001 +102918 n48001001001 +n48001001001 +102924 n48001001001 +102929 n48001001001 +102932 n48004019001 +102937 n48004021006 +n48004019001 +102942 n48004021006 +102944 n48004022007 +102978 n48004022007 n48004023009 n48004023010 +102991 n48004024009 +103005 n48004025003 +103010 n48004025014 +103026 n48004027003 n48004027008 n48004027010 n48004027015 +n48004027004 +103031 n48004027004 +n48004027013 +103034 n48004027013 +103064 n48004023002 +103099 n48001001001 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48004031002 +103112 n48004031002 +103118 n48004031002 +n48004031002 +103126 n48004031002 +103132 n48005002003 +103136 n48005003005 +103139 n48005003005 +103143 n48005003005 +103153 n48005004007 +103176 n48005006012 +n48005004007 +103190 n48004014016 +103207 n48005004007 +103217 n48005010013 +103227 n48005002003 +103234 n48005002003 +103238 n48002004005 +103258 n48005013006 +103279 n48005013006 +103281 n48005013006 +n48005013006 +103286 n48005013006 +103288 n48005002003 +103290 n48005013006 +103296 n48005013006 +103318 n48005013006 +103320 n48005013006 +103324 n48005013006 +103326 n48005013006 +103358 n48005002003 +103361 n48005002003 +103407 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103411 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103413 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103416 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103418 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48005013006 +103436 n48006001011 +103445 n48006001011 +103448 n48006001011 +103457 n48006003004 +103460 n48006003004 +n48006003004 +103476 n48006004006 +103500 n48006001011 +103511 n48006007010 +103539 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +103541 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +103545 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +103547 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +103552 n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +n48005002003 n48001002006 n48003022018 n48002013007 n48002013010 n48002014014 n48006001011 +103565 n48006001011 +103569 n48005002003 +103575 n48006012001 +103589 n48006012002 +103593 n48006012002 +103598 n48006013004 +103606 n48006013004 +103696 n49001001009 +103727 n49001003003 +103739 n49001003003 +103755 n49001003003 +103777 n49001003003 +103781 n49001005006 +103784 n49001001001 n49001001009 +103802 n49001003003 +103810 n49001003003 +103822 n49001003003 +103831 n49001003003 +103851 n49001001001 n49001001009 +n49001001001 n49001001009 +103858 n49001003003 +103874 n49001001001 n49001001009 +103882 n49001001009 +103895 n49001001009 +103921 n49001001001 +103939 n49001001001 +n49001001001 +103944 n49001001001 +104001 n49001019005 +104009 n49001001001 n49001001009 n49001018028 +104019 n49001017003 +104023 n49001017003 +104028 n49001017003 +104047 n49001021012 +104058 n49001021018 +104061 n49001017003 +104068 n49001017003 +104086 n49001020005 +104100 n49001001009 +104118 n49002002019 +104137 n49001001001 n49001001009 n49001018028 +104146 n49001001001 n49001001009 n49001018028 +104158 n49002004003 +104167 n49002004003 +104175 n49002004003 +104179 n49001001009 +n49001001009 +104182 n49002004003 +104184 n49002004003 +104192 n49002004003 +104197 n49002007005 +104199 n49002007010 +104214 n49001001009 +n49001001009 +104234 n49001001001 n49001001009 n49001018028 +104237 n49001001001 n49001001009 n49001018028 +104251 n49001001001 n49001001009 n49001018028 +104253 n49001001009 +104262 n49001001009 +104272 n49001001009 +104278 n49001001009 +104291 n49001001009 +104305 n49001001009 +104321 n49002013017 +104332 n49002013017 +104343 n49002013017 +104347 n49002013017 +104354 n49002013017 +104357 n49002013017 +104368 n49002013017 +104374 n49002013017 +n49002013017 +104401 n49001001009 +104406 n49001001009 +104414 n49001001009 +104431 n49002021004 +104464 n49003001013 +104472 n49003002007 +104484 n49003001004 +104489 n49003001013 +n49003001013 +n49003001013 +104511 n49003006004;n49003006006;n49003006008 +104538 n49003001004 +104547 n49003007008 +104566 n49003008003 +104573 n49003008003 +104580 n49003009007 +104590 n49003009015 +104615 n49003010019 +104625 n49003008003 n49003001013 n49003008005 +104637 n49003008003 +104639 n49003001013 +104652 n49003008003 +104670 n49003014009 +104679 n49003001013 +104700 n49003001013 +104702 n49003001013 +104704 n49003001013 +n49003001013 +104720 n49003001013 +104722 n49003019007 +104729 n49003001013 +104738 n49003019017 +n49003020003 +104744 n49003008003 n49003001013 n49003018007 +104746 n49003008003 n49003001013 n49003018007 +104751 n49003020014 +104782 n49003001013 +104786 n49003001013 +104794 n49003001013 +104798 n49003001013 +n49003001013 +104816 n49003001013 +104859 n49004007014 +104862 n49004007014 +104864 n49004007014 +104870 n49004007014 +104877 n49004007014 +104885 n49004007014 +104890 n49004007014 +104896 n49004007014 +104958 n49004001006 n49003001013 n49004012005 +104960 n49004001006 n49003001013 n49004012005 +104962 n49004001006 n49003001013 n49004012005 +104980 n49004001006 n49003001013 n49004012005 +104983 n49004001006 n49003001013 n49004012005 +104998 n49004016005 +105000 n49004016005 +105025 n49004001006 +105027 n49004001006 +105043 n49004017014 +n49004017014 +105047 n49004017014 +105056 n49004018012 +105066 n49004017014 +105087 n49003001013 +105091 n49003001013 +105108 n49004022009 +105115 n49003001013 +105122 n49003001013 +105129 n49004024005 +105137 n49003001013 +105140 n49003001013 +105148 n49004001006 n49003001013 n49004012005 +105151 n49003001013 +105154 n49003001013 +105163 n49003001013 +105173 n49004028002 +n49004028002 +105181 n49004028002 +n49004028002 +105204 n49004029012 +105210 n49003001013 +105219 n49003001013 +105240 n49003001013 +105245 n49003001013 +105256 n49003001013 +105264 n49003001013 +105274 n49005002008 +105298 n49005003009 +105314 n49003001013 +n49003001013 +105356 n49003001013 +105360 n49003001013 +105371 n49003001013 +105384 n49003001013 +105392 n49003001013 +105402 n49003001013 +105412 n49003001013 +105416 n49005013003 +105429 n49005014011 +105433 n49005014011 +105443 n49003001013 +105446 n49003001013 +105453 n49003001013 +105464 n49003001013 +105467 n49003001013 +105475 n49003001013 +105482 n49003001013 +105485 n49003001013 +105493 n49003001013 +105495 n49003001013 +105501 n49003001013 +105516 n49003001013 +105563 n49005025002 +105575 n49005025009 +105580 n49005025009 +n49005025009 +105596 n49005027007 +105606 n49005027007 +105615 n49005028005 +105638 n49005029001 +105640 n49005029001 +105649 n49004001006 n49003001013 n49005003014 +105664 n49005031004 +105708 n49005033017 +105713 n49006001002 +105750 n49006004003 +105755 n49006004003 +105764 n49006005002 +105790 n49006005002 +105799 n49006005002 +105806 n49006005002 +105814 n49006008003 +105826 n49006009003 +105829 n49006009003 +105832 n49006009003 +105851 n49003001013 +105861 n49003001013 +105870 n49003001013 +105909 n49003001013 +105915 n49003001013 +n49003001013 +105924 n49003001013 +n49003001013 +105927 n49003001013 +n49003001013 +105935 n49003001013 +105941 n49003001013 +105952 n49003001013 +105959 n49003001013 +105966 n49006016013 +n49003001013 +105969 n49003001013 +105988 n49003001013 +105997 n49003001013 +106021 n49004001006 +106028 n49004001006 +106034 n49004001006 +106048 n49004001006 +106062 n49004001006 +106069 n49003001013 +106074 n49006021014 +106137 n50001001001 +106158 n50001001001 +106173 n50001001001 +106193 n50001001001 +106231 n50001001001 +106240 n50001001001 +106262 n50001001009 +106269 n50001001009 +106283 n50001001001 +106319 n50001014003 +106350 n50001015008 +106356 n50001001001 +106366 n50001015001 +106368 n50001015001 +106387 n50001001001 +106390 n50001001001 +106392 n50001001001 +106418 n50001001001 +106460 n50001001001 +106462 n50001001001 +106464 n50001001001 +106470 n50001001001 +106473 n50001001001 +106477 n50001001001 +106484 n50001001001 +106492 n50001001001 +n50001001001 +106495 n50001001001 +106497 n50001001001 +106531 n50001012005 +106534 n50001001001 +106536 n50001001001 +106539 n50001001001 +n50001001001 +106545 n50001012005 +106551 n50001012005 +106558 n50001012005 +106587 n50001012005 +106593 n50001012005 +n50001012005 +106599 n50001012005 +106604 n50001012005 +106626 n50001012005 +106633 n50001012005 +106637 n50001012005 +106641 n50001012005 +106652 n50001012005 +106659 n50001012005 +106666 n50001012005 +106678 n50002005008 +106683 n50002005008 +106688 n50002005008 +106691 n50002005008 +106695 n50002005008 +106698 n50002005008 +106701 n50002005008 +106703 n50002005008 +106717 n50002009004 +106755 n50002012002 +106778 n50002012002 +106788 n50002012002 +106791 n50002012002 +106796 n50002012002 +106802 n50002012002 +106813 n50002015010 +106816 n50002012002 +106823 n50002012002 +106834 n50001001001 +106838 n50001001001 +106842 n50001001001 +106851 n50001001001 +106853 n50001001001 +106863 n50002012002 +106866 n50001001001 +106872 n50001001001 +106877 n50001001001 +106884 n50001001001 +106905 n50002012002 +106912 n50002019006 +106918 n50001001001 +106920 n50001001001 +106923 n50001001001 +106929 n50001001001 +106938 n50001001001 +106956 n50001001001 +106960 n50002025004 +n50002025004 +106965 n50002025004 +106967 n50002012002 +106969 n50002025004 +106972 n50002025004 +106992 n50001001001 +106995 n50001001001 +106998 n50002012002 +107001 n50002012002 +107006 n50002012002 +107017 n50002012002 +107025 n50002025004 +n50002025004 +107030 n50002025004 +107042 n50003001003 +107047 n50001001001 +107056 n50003001003 +107059 n50003001003 +107063 n50003001003 +107096 n50003004009 +107116 n50001001001 +107124 n50001001001 +107132 n50001001001 +107142 n50001001001 +107160 n50001001001 +107162 n50001001001 +107168 n50001001001 +107171 n50001001001 +107191 n50001001001 +107203 n50001001001 +107209 n50001001001 +107219 n50001001001 +107222 n50001001001 +107224 n50001001001 +107227 n50001001001 +107231 n50001001001 +107246 n50001001001 +107250 n50001001001 +107253 n50001001001 +107269 n50001001001 n50002019006 n50002025004 n50003001003 +107274 n50003013001 +107284 n50001001001 n50002019006 n50002025004 n50003001003 +107287 n50001001001 n50002019006 n50002025004 n50003001003 +107291 n50003017004 +107293 n50003017004 +107298 n50003017004 +107306 n50001001001 +107311 n50001001001 +n50001001001 +107349 n50001001001 n50002019006 n50002025004 n50003013001 +107374 n50003020011 +107389 n50004001002 +107394 n50001001001 +107397 n50001001001 +107400 n50004002001 n50004002004 +107404 n50001001001 +107409 n50004003006 +107431 n50004001015 +107436 n50001001001 +n50004001015 +107448 n50004001015 +107510 n50004008003 +107513 n50004008003 +107515 n50004008003 +107517 n50004008003 +107519 n50004008003 +107523 n50004008003 +107533 n50001001001 +107540 n50004008003 +107544 n50004008003 +107548 n50004008003 +107550 n50004008003 +107555 n50001001001 +107561 n50001001001 +107563 n50001001001 +n50001001001 +107566 n50001001001 +n50001001001 +107569 n50001001001 +107575 n50001001001 +107577 n50001001001 +107579 n50001001001 +107581 n50001001001 +107583 n50001001001 +107585 n50001001001 +107592 n50004008003 +n50004008003 +107604 n50001001001 +107636 n50004015005 +107639 n50001001001 +107643 n50001001001 +107652 n50001001001 +107655 n50001001001 +n50001001001 +n50001001001 +107701 n50004015005 +107763 n51001001001 n51001001009 +107775 n51001001001 n51001001009 +n51001001001 n51001001009 +107787 n51001002007 +107796 n51001005003 +107802 n51001002007 +107811 n51001005018 +107820 n51001005014 +n51001005014 +107823 n51001005014 +107831 n51001002007 +107833 n51001002007 +107841 n51001002007 +107858 n51001007014 +107872 n51001001001 n51001001009 +107877 n51001001001 n51001001009 +107879 n51001001001 n51001001009 +107881 n51001002007 +107893 n51001002007 +107904 n51001002007 +107906 n51001002007 +107914 n51001002007 +107928 n51001002007 +107932 n51001012003 +107953 n51001012003 +107964 n51001001001 n51001001009 n51001007004 n51001002007 +108047 n51001013015 +108049 n51001015005 +108059 n51001015005 +108064 n51001015005 +108087 n51001002007 +108099 n51001015005 +108109 n51001015005 +108120 n51001002007 +108123 n51001002007 +108128 n51001002007 +108135 n51001002007 +108137 n51001023016 +108151 n51001023031 +108158 n51001023031 +108187 n51001025007 +108191 n51001023031 +108199 n51001026002 +108209 n51001026002 +108217 n51001027004 +108241 n51001023031 n51001001009 n51001007004 +108245 n51001023031 n51001001009 n51001007004 +108252 n51001023031 n51001001009 n51001007004 +108261 n51001023031 +n51001023031 +108268 n51001029008 +108274 n51001023031 +108279 n51001023031 +108300 n51002002004 +108330 n51001023031 +108342 n51001023031 +108348 n51001023031 +n51001023031 +108351 n51001023031 +108365 n51001002007 +108373 n51001002007 +n51001002007 +108376 n51001002007 +108380 n51001002007 +108384 n51001002007 +n51001002007 +108388 n51001002007 +108426 n51001002007 +n51001002007 +108441 n51001002007 +108456 n51001002007 +108464 n51001002007 +108473 n51002012016 +108489 n51002012016 +108493 n51002012016 +108498 n51002012016 +108511 n51002012016 +108515 n51002012016 +108519 n51002012016 +108525 n51002012016 +108528 n51002012016 +108563 n51002018001 +108571 n51002018001 +n51002018001 +108574 n51002018001 +108583 n51002018001 +108596 n51002019010 +108598 n51002019010 +108605 n51001002007 +108615 n51001002007 +108618 n51001002007 +108642 n51002021002 n51002021004 n51002021006 +108662 n51001002007 +108667 n51001002007 +108679 n51001002007 +108686 n51001002007 +108714 n51001002007 +108746 n51001002007 +108766 n51001002007 +108769 n51001002007 +108778 n51001002007 +108782 n51003010004 +108810 n51001002007 +108817 n51003012004 +108824 n51001002007 +108827 n51001002007 +108868 n51001002007 +108874 n51001002007 +108886 n51001002007 +108888 n51001002007 +108897 n51001002007 +108909 n51001002007 +108920 n51001002007 +108928 n51003018002 +108932 n51003018003 +108937 n51003019002 +108942 n51003019002 +108947 n51003020002 +108961 n51003021002 +108967 n51003021006 +108970 n51003022002 +108986 n51003022002 +108991 n51001002007 +108994 n51001002007 +109001 n51001002007 +109005 n51001002007 +109013 n51001002007 +109019 n51003025003 +109033 n51004001002 +n51004001002 +109044 n51001002007 +n51001002007 +109050 n51001002007 +109063 n51001023031 n51001001009 n51001007004 +109071 n51001023031 +109073 n51001023031 +109081 n51001002007 +109087 n51001002007 +109095 n51004006002 +n51001002007 +109121 n51001023031 +109128 n51001002007 +109133 n51004007007 +109149 n51004007007 n51004009002 +109166 n51001002007 +109169 n51004010008 +109172 n51001002007 +109177 n51004011002 +109180 n51004010003 n51004010008 n51004011002 +109205 n51004012003 +109212 n51001002007 +109215 n51001002007 +109222 n51001023031 +109225 n51004012003 +109247 n51001002007 +109267 n51001002007 +109274 n51004016007 +109284 n51001002007 +109286 n51004017003 +109290 n51004017003 +109295 n51004017003 +109302 n51001002007 +109329 n52001001001 n52001001003 n52001001005 +109337 n52001001001 n52001001003 n52001001005 +109343 n52001001001 n52001001003 n52001001005 +109370 n52001001001 n52001001003 n52001001005 +109375 n52001004002 +109402 n52001004002 +109404 n52001001001 n52001001003 n52001001005 +109417 n52001004002 +109473 n52001001001 n52001001003 n52001001005 +109482 n52001001001 n52001001003 n52001001005 +109487 n52001004002 +109494 n52001004002 +109496 n52001009021 +109500 n52001004002 +109508 n52001009021 +109514 n52001010014 +109520 n52001010020 +109534 n52002001006 +109536 n52001001001 n52001001003 n52001001005 +109538 n52001001001 n52001001003 n52001001005 +109542 n52002001004 +n52001001001 n52001001003 n52001001005 +109548 n52001001001 n52001001003 n52001001005 +109573 n52001001001 n52001001003 n52001001005 +109577 n52001001001 n52001001003 n52001001005 +109581 n52001001001 n52001001003 n52001001005 +109583 n52001001001 n52001001003 n52001001005 +109589 n52002004017 +109599 n52001001001 n52001001003 n52001001005 +109601 n52002001004 +109609 n52001001001 n52001001003 n52001001005 +109619 n52001001001 n52001001003 n52001001005 +109622 n52001001001 n52001001003 n52001001005 +109627 n52001001001 n52001001003 n52001001005 +109640 n52001001001 n52001001003 n52001001005 +109642 n52001001001 n52001001003 n52001001005 +n52001001001 n52001001003 n52001001005 +109659 n52002001004 +109662 n52002009003 +109672 n52001001001 n52001001003 n52001001005 +109676 n52001001001 n52001001003 n52001001005 +109679 n52001001001 n52001001003 n52001001005 +109699 n52002009003 +n52001001001 n52001001003 n52001001005 +109702 n52002009003 +109711 n52001001001 n52001001003 n52001001005 +109713 n52001001001 n52001001003 n52001001005 +109715 n52001001001 n52001001003 n52001001005 +109725 n52002012013 +109743 n52002009003 +109750 n52002009003 +109766 n52002009003 +109777 n52002014007 +109801 n52002014033 +109811 n52002014033 +109815 n52002014033 +109820 n52002014033 +109826 n52002016004 +109829 n52002014033 +109845 n52001001001 n52001001003 n52001001005 +109859 n52001001001 n52001001003 n52001001005 +109864 n52001001001 n52001001003 n52001001005 +n52001001001 n52001001003 n52001001005 +109913 n52001001003 n52002018008 +n52001001003 n52002018008 +n52001001003 n52002018008 +109920 n52001001003 n52002018008 +109936 n52003002003 +109938 n52003002003 +109957 n52001001003 n52003002003 n52002018008 +109963 n52001001003 n52003002003 n52002018008 +n52001001003 n52003002003 n52002018008 +109967 n52001001003 n52003002003 n52002018008 +n52001001003 n52003002003 n52002018008 +109971 n52003004010 +109973 n52002017003 +109978 n52002018008 +109982 n52002018008 +110008 n52003006004 +110018 n52002017003 +110023 n52002017003 +110025 n52002017003 +110033 n52001001003 n52002018008 +110049 n52001001003 n52003006004 n52002018008 +110056 n52001001003 n52003006004 n52002018008 +110061 n52001001003 n52003006004 n52002018008 +110069 n52001001003 n52003006004 n52002018008 +110080 n52001001003 n52003006004 n52002018008 +110083 n52001001003 n52003006004 n52002018008 +110088 n52001001003 n52003006004 n52002018008 +110133 n52003012004 +110161 n52001001003 n52003006004 n52002018008 +110163 n52001001003 n52003006004 n52002018008 +110170 n52004001003 +110179 n52004001003 +110183 n52004001003 +110185 n52004001003 +110188 n52004001003 +110191 n52001001003 n52003006004 n52002018008 +110217 n52004004002 +110232 n52004005008 +110237 n52004004002 +110239 n52004004002 +110254 n52001001003 n52003006004 n52002018008 +110257 n52001001003 n52003006004 n52002018008 +110280 n52004008009 +110294 n52004001003 +n52002018008 n52001001003 n52003006004 +110304 n52004001003 +110308 n52004001003 +110320 n52001001003 n52003006004 n52002018008 +110325 n52004010016 +n52004010016 +110328 n52004010016 +110332 n52004010016 +110338 n52001001003 n52003006004 n52002018008 +110340 n52004010016 +110348 n52004010016 +110352 n52001001003 n52003006004 n52002018008 +110360 n52004013006 +110367 n52004013016 +110371 n52001001003 n52003006004 n52002018008 n52004013006 +110392 n52001001003 n52003006004 n52002018008 +110399 n52001001003 n52003006004 n52002018008 n52004013006 +110401 n52004015011 +110438 n52001001003 n52003006004 n52002018008 n52004013006 +110440 n52004017004 +110458 n52001001003 n52003006004 n52002018008 n52004013006 +110460 n52004013006 +110476 n52005001008 +110478 n52002018008 n52001001003 n52003006004 +110537 n52001001003 n52003006004 n52002018008 n52005004003 +110544 n52001001003 n52003006004 n52002018008 n52005004003 +110549 n52001001003 n52003006004 n52002018008 n52005004003 +110551 n52001001003 n52003006004 n52002018008 n52005004003 +110565 n52001001003 n52003006004 n52002018008 n52005004003 +110567 n52001001003 n52003006004 n52002018008 n52005004003 +110595 n52005009015 +110600 n52001001003 n52003006004 n52002018008 n52005004003 +110602 n52001001003 n52003006004 n52002018008 n52005004003 +110606 n52001001003 n52003006004 n52002018008 n52005004003 +110608 n52005004003 +110611 n52005004003 +110617 n52005004003 +110620 n52001001003 n52003006004 n52002018008 +110636 n52005012004 +110645 n52005012004 +110650 n52001001003 n52003006004 n52002018008 +110652 n52005014004 +110655 n52005014004 +110658 n52005014004 +110661 n52005014004 +110664 n52005014004 +110676 n52005014004 +110683 n52005014004 +110685 n52005014004 +110688 n52005014004 +110701 n52005014004 +110704 n52005014004 +110707 n52005014004 +110710 n52005014004 +110715 n52005014004 +110754 n52005025001 +110757 n52005025001 +110764 n52002018008 +110811 n53001001001 n53001001003 n53001001005 +n53001001001 n53001001003 n53001001005 +110820 n53001003001 +110862 n53001003008 +110880 n53001003008 +110885 n53001006004 +110912 n53001007012 +110945 n53001009009 +n53001009009 +110952 n53001009009 +110971 n53001001001 n53001001003 n53001001005 +110984 n53001011014 +111019 n53001001001 n53001001003 n53001001005 +111044 n53002001004 +111089 n53002003018 +111091 n53002003018 +111106 n53002003018 +111109 n53002003018 +111112 n53002001004 +111115 n53001001001 +111119 n53001001001 +111125 n53002001004 +111148 n53002007010 +111165 n53002008008 +111201 n53002008005 +111236 n53001001001 n53001001003 n53001001005 +111243 n53002013010 +111264 n53002013018 +111281 n53002015003 +111283 n53002015003 +111287 n53002015003 +111309 n53002016010 +111312 n53002016010 +111320 n53002016004;n53002016010 +111325 n53002016004;n53002016010 +111335 n53003001004 +111345 n53003001009 +111352 n53001001001 n53001001003 n53001001005 +111373 n53003003005 +111378 n53001001001 n53001001003 n53001001005 +111385 n53001001001 n53001001003 n53001001005 +111387 n53003001004 +111389 n53003001004 +111410 n53001001001 n53001001003 n53001001005 +111424 n53003006015 +111431 n53003006004 +111439 n53003006004 +111443 n53001001001 n53001001003 n53001001005 +111449 n53001001001 n53001001003 n53001001005 +111460 n53001001001 n53001001003 n53001001005 +111464 n53001001001 n53001001003 n53001001005 +111470 n53001001001 n53001001003 n53001001005 +111476 n53001001001 n53001001003 n53001001005 +111480 n53003006004 +111485 n53001001001 n53001001003 n53001001005 +111489 n53001001001 n53001001003 n53001001005 +111496 n53003010012 +111498 n53003010012 +111500 n53001001001 n53001001003 n53001001005 +111507 n53003011003 +111509 n53003011003 +111513 n53001001001 n53001001003 n53001001005 +111515 n53001001001 n53001001003 n53001001005 +111523 n53003011003 +111527 n53003011003 +111533 n53003013003 +111546 n53003013003 +111548 n53003013003 +111551 n53003014003 +111556 n53003013003 +111558 n53003013003 +111594 n53003017006 +111638 n54001001001 +111643 n54001001001 +111647 n54001002001 +111650 n54001003012 +111652 n54001003012 +111684 n54001006002 +111689 n54001006002 +n54001006002 +111693 n54001006002 +111696 n54001006002 +111700 n54001006002 +111702 n54001001001 n54001002001 +111712 n54001008008 +111744 n54001010012 +111758 n54001001001 +111760 n54001012006 +111770 n54001012004 +n54001012004 +111776 n54001001001 +111783 n54001001001 +111785 n54001001001 +n54001001001 +111819 n54001015009 +111827 n54001001001 +111842 n54001016018 +111871 n54001001001 +111875 n54001018013 +111880 n54001018006 +111886 n54001018006 +111892 n54001019007 +111904 n54001001001 +111908 n54001020003 n54001020005 +111910 n54001020003 n54001020005 +111912 n54001001001 +111936 n54001001001 n54001018006 n54001016018 +111974 n54002005010 +111997 n54001001001 +111999 n54001001001 +112001 n54001001001 +112008 n54002008005 +112041 n54002010004 +112053 n54001001001 +112058 n54002012003 +112061 n54002012003 +112077 n54002014007 +112082 n54002012003 +112087 n54002012003 +112105 n54003001005 +112132 n54003002004 +112134 n54003002004 +112146 n54003005003 +112152 n54003005003 +112157 n54003002004 +112162 n54003002004 +112168 n54003002004 +112174 n54003002004 +112189 n54003008001 +112192 n54003008001 +112206 n54003008001 +112208 n54003008001 +112224 n54003012001 +112249 n54001001001 +n54001001001 +n54001001001 +112257 n54001001001 +112259 n54001018006 +112262 n54001018006 +112270 n54003015015 +112288 n54003016009 +112291 n54003016009 +112293 n54003016009 +112296 n54003016009 +112299 n54003016009 +112315 n54004001011 +112324 n54004002003 +112328 n54004002003 +112356 n54004004003 +112358 n54004004003 +112365 n54001018006 +112368 n54001018006 +112373 n54001018006 +112383 n54001018006 +112390 n54001018006 +112392 n54001018006 +112411 n54004008011 +112418 n54004008018 +112429 n54001001001 n54001018006 n54004006004 +112431 n54001001001 n54001018006 n54004006004 +112433 n54001001001 n54001018006 n54004006004 +112436 n54004010010 +112445 n54001018006 +112447 n54001018006 +112454 n54001018006 +112469 n54001001001 +n54001018006 +112478 n54001018006 +112495 n54001018006 +112498 n54001018006 +112506 n54001018006 +112511 n54001018006 +112515 n54001018006 +n54001018006 +112525 n54001018006 +112527 n54001018006 +112542 n54001018006 +112555 n54005004005 n54005004007 +112560 n54005004005 n54005004007 +112563 n54005004005 n54005004007 +112583 n54005005004 +112595 n54005006003 +112599 n54001018006 +112602 n54005004005 n54005004007 n54005005004 +112615 n54005008003 +112617 n54005008003 +112626 n54005009001 +112633 n54005009001 +112635 n54005009001 +112637 n54005009001 +112641 n54005009001 +112644 n54005009001 +112649 n54005009001 +112653 n54001018006 +112656 n54005011003 +112659 n54005011003 +n54005011003 +n54005011003 +112667 n54005011003 +112672 n54005011003 +n54005011003 +112685 n54005011003 +112690 n54001001001 +112714 n54005016003 +112725 n54005016012 +112728 n54005017004 +112745 n54005018005 +112759 n54001018006 +112772 n54001018006 +112779 n54001001001 +112792 n54001018006 +112796 n54001018006 +112802 n54001018006 +112804 n54001018006 +112809 n54001018006 +112811 n54001018006 +112815 n54001018006 +112830 n54005024004 +112836 n54005024004 +112848 n54005025011 +112882 n54006002005 +112885 n54006002004 +112896 n54001018006 +112898 n54001018006 +112904 n54006003002 +n54006003008 +112918 n54006003002 +112920 n54006003002 +112922 n54006003002 +112937 n54006005003 +112941 n54006005003 +112944 n54006005003 +112959 n54001001001 n54001018006 n54004006004 +112965 n54001001001 n54001018006 n54004006004 +112967 n54001001001 n54001018006 n54004006004 +112969 n54001001001 n54001018006 n54004006004 +112974 n54001001001 n54001018006 n54004006004 +112978 n54006009003 +113007 n54006010010 +113015 n54006010010 +113026 n54006011004 +113033 n54006011004 +113039 n54006011004 +113045 n54006011004 +113047 n54006011004 +113054 n54001001001 +113059 n54006013004 +113066 n54006013010 +113106 n54006016002 +113110 n54006016002 +113116 n54006016010 +n54006016010 +113130 n54006011004 +113132 n54006017002 +113134 n54006017002 +113142 n54006017017 +113148 n54006017002 +n54006017002 +113154 n54006017002 +113156 n54006017002 +113164 n54006017002 +113172 n54006020002 +n54006020002 +113183 n54006021002 +113223 n55001001001 +113227 n55001001001 +113235 n55001001001 +113247 n55001001001 +113249 n55001001001 +n55001001001 +113256 n55001001001 +n55001001001 +113278 n55001001001 +113286 n55001001001 +113319 n55001002001 +113331 n55001002001 +113338 n55001008020 +113341 n55001008020 +113356 n55001009018 +113365 n55001009018 +113376 n55001010010 +113380 n55001010010 +113401 n55001001001 +113404 n55001001001 +113406 n55001001001 +113408 n55001001001 +113410 n55001001001 +113412 n55001012013 +113417 n55001012013 +113422 n55001002001 +113424 n55001013004 +113429 n55001002001 +113441 n55001002001 +113446 n55001014006 +113449 n55001002001 +113474 n55001016006 +113480 n55001016006 +113482 n55001016006 +113486 n55001016006 +113489 n55001016006 +113494 n55001016006 +113506 n55001016006 +113524 n55002001003 +113531 n55002001003 +113539 n55002002012 +n55002001003 +113547 n55002004001 +113556 n55002004001 +113563 n55002005005 +113567 n55002005005 +113570 n55002006003 +113576 n55002001003 +113578 n55001001001 +113587 n55002001003 +113590 n55002008003 +113602 n55001001001 +113617 n55001001001 +113638 n55001001001 n55002001003 n55002010007 +113640 n55001001001 n55002001003 n55002010007 +113642 n55001001001 n55002001003 n55002010007 +113644 n55001001001 n55002001003 n55002010007 +113646 n55001001001 n55001002001 n55002010007 +113651 n55001001001 n55002001003 n55002010007 +113656 n55002010015 +113659 n55002010015 +113661 n55002001003 +n55002001003 +113667 n55002010007 +113675 n55002001003 +n55002001003 +113683 n55002015007 +113692 n55002001003 +113697 n55002016004 +113716 n55002017011 n55002017013 +113721 n55002017011 n55002017013 +113732 n55002019004 +113783 n55002021003 +113787 n55002021009 +113795 n55002021009 +113800 n55002001003 +113802 n55002001003 +113821 n55002001003 +n55002001003 +113824 n55002023006 +113833 n55002024001 +113841 n55002024001 +113855 n55002025005 +113861 n55002025005 +113870 n55002001003 +113899 n55003002004 +113904 n55003002004 +113911 n55003002004 +113914 n55002001003 +113927 n55003006012 +113929 n55003006012 +113933 n55003006012 +113939 n55003006012 +n55003006012 +113956 n55003008015 +113965 n55003008015 +114013 n55001001001 +114026 n55003012005 +114041 n55003013003 n55003013005 +114043 n55003013003 n55003013005 +114049 n55002001003 +114051 n55002001003 +n55002001003 +114055 n55002001003 +114060 n55002001003 +114064 n55003015006 +114066 n55003015006 +114102 n55003017007 +n55001001001 +114111 n55004001006 +n55004001006 +114124 n55002001003 +114127 n55002001003 +114130 n55002001003 +n55002001003 +n55002001003 +114144 n55004003007 +114176 n55002001003 +n55002001003 +114183 n55002001003 +114198 n55001001001 +114201 n55001001001 +114204 n55001001001 +114236 n55002001003 +n55002001003 +114245 n55004010001 +114250 n55004010001 +114265 n55002001003 +n55002001003 +114270 n55004011006 +114277 n55001001001 +114283 n55001001001 +114288 n55002001003 +n55002001003 +114317 n55004014001 +114335 n55004016008 n55004016012 +114342 n55004017003 +114356 n55001001001 +114369 n55004018004 +114385 n55002001003 +114399 n55001001001 +114402 n55004020005 +n55002001003 +114406 n55002001003 +114460 n56001002009 +114497 n56001001001 +114504 n56001004001 +114506 n56001004001 +114521 n56001006002 +114556 n56001007004 +114564 n56001007004 +114567 n56001007004 +114572 n56001009015 +114576 n56001007004 +114596 n56001010004 +114625 n56001004001 +114629 n56001012008 +114634 n56001012008 +114640 n56001014007 +114664 n56001015007 +n56001015007 +114669 n56001015007 +n56001015007 +114686 n56002001008 +114693 n56002002001 +114710 n56002003001 +114713 n56002003001 +114723 n56002004004 +114737 n56001004001 +n56002006002 +114742 n56001004001 +114759 n56002008005 +n56002008005 +114772 n56002009001 +114774 n56002009001 +114776 n56002009001 +114781 n56002009001 +114790 n56002009001 +114802 n56002011004 +114805 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114817 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114822 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114844 n56002013011 +114850 n56002013011 +114858 n56001004001 +114860 n56001004001 +114862 n56001004001 +114869 n56001004001 +114873 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114880 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114882 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114884 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114888 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114899 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114909 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114911 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114939 n56003004010 +114949 n56003004010 +114960 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114965 n56001001001 n56001004001 n56002002001 n56002003001 n56002004004 n56002006002 n56002009001 +114976 n56001001001 +114983 n56003008016 +115004 n56001004001 +115006 n56003009003 n56003009005 n56003009007 n56003009009 +115017 n56001004001 +n56001004001 +115025 n56003010002 +115028 n56001001001 +115034 n56001004001 +n56001004001 +115042 n56001001001 +n56001001001 +115050 n56001004001 +115062 n56003014005 +115069 n56003014005 +115077 n56001004001 +115129 n57001001001 +115136 n57001001001 +115141 n57001001001 +115149 n57001001009 +115181 n57001001001 +115200 n57001001001 +n57001001001 +115209 n57001001001 +115211 n57001001001 +115221 n57001009009 +115227 n57001009009 +115244 n57001009009 +115258 n57001009009 +115263 n57001010012 +115275 n57001009009 +n57001009009 +115293 n57001010012 +115299 n57001007019 +115323 n57001007019 +115325 n57001007019 +115333 n57001010012 +115335 n57001010012 +115338 n57001007019 +115349 n57001019002 +115355 n57001007019 +115363 n57001020002 +115369 n57001019002 +115373 n57001019002 +115375 n57001019002 +115380 n57001019002 +n57001020002 +115385 n57001020002 +115389 n57001019002 +115395 n57001019002 +115427 n58001001006 +115440 n58001001006 +115445 n58001001006 +115451 n58001001006 +115455 n58001002009 +115465 n58001002009 +115476 n58001002009 +n58001002009 +115486 n58001002009 +115494 n58001002009 +115499 n58001003028 +115525 n58001003028 +115531 n58001003028 +115543 n58001006016 +115545 n58001006016 +115579 n58001008009 +115582 n58001008009 +115628 n58001010005 +115633 n58001010007 n58001010016 +115650 n58001009011 +115652 n58001013002 +115658 n58001009011 +115673 n58001014005 +115677 n58001014011 +115695 n58002002007 +115710 n58001002007 +115715 n58002003006 +n58002003006 +115747 n58002004003 +115751 n58002005006 +115754 n58001002007 +115759 n58002006004 +115764 n58002004003 +115770 n58002004003 +115772 n58002004003 +115781 n58002004003 +115784 n58002004003 +115792 n58002004003 +115797 n58002004003 +115803 n58001002007 +115809 n58001002007 +115815 n58002009009 +115831 n58002009009 +115849 n58002009021 +115857 n58002009021 +115861 n58002010019 +115864 n58002010014 +115872 n58002011004 +115875 n58002011004 +n58002011004 +n58002011004 +115887 n58002011004 +115926 n58002011004 +115932 n58002014029 +115938 n58002011004 +115954 n58002011004 +115958 n58002011004 +115960 n58002011004 +115965 n58002011004 +115967 n58002011004 +115978 n58002011004 +115988 n58002011004 +n58002011004 +115991 n58002017024 +115999 n58003001002 +116009 n58003001015 +116011 n58002017017 +116126 n58003009004 +116133 n58003007005 +116138 n58003007005 +116140 n58003010006 +116151 n58003007005 +116157 n58003010006 +116162 n58003012002 +116175 n58003012007 +116180 n58003012002 +116189 n58003013006 +116203 n58001002007 +116212 n58001002007 +116215 n58003015009 n58003015011 n58003015018 +116233 n58003016001 +116239 n58003010006 +116246 n58003012016 +116251 n58003010006 +116261 n58003012016 +116263 n58003018001 +116271 n58003010006 +116273 n58001002007 +116276 n58003018013 +n58003018013 +116281 n58001002007 +116286 n58001002007 +116298 n58001002007 +n58001002007 +116311 n58004002011 +116322 n58001002007 +116324 n58003012016 +116326 n58003012016 +116332 n58003018013 +116345 n58003012016 +116370 n58003018013 +116385 n58003018013 +116391 n58004004011 +116397 n58004004011 +116402 n58004007019 n58004007021 +116424 n58004004011 +116436 n58004009005 +116455 n58004003007 +n58004003007 +116476 n58004012004 +116486 n58004012004 +116513 n58004013008 +116523 n58004003007 +116526 n58004014003 +116534 n58004003007 +116538 n58004003007 +116542 n58004015004 +n58004015004 +116548 n58004015004 +116556 n58004003007 +116564 n58004003007 +116568 n58004003007 +116577 n58005001003 +116586 n58005001003 +116593 n58005001003 +n58005001003 +116607 n58005001003 +116616 n58005001003 +116627 n58005004004 +116641 n58005005004 +116645 n58005004012 +116660 n58005005012 +116683 n58005005012 +n58005007014 +116693 n58005005004 +116695 n58005005004 +116700 n58005005004 +116702 n58005005004 +116705 n58005005004 +116709 n58005005004 +n58005005004 +116718 n58005005004 +116735 n58005011004 +116738 n58003012002 +116743 n58003012002 +n58003012002 +116750 n58003012002 +116765 n58003012002 +n58003012002 +116782 n58005013004 +116795 n58005014012 +n58005014001 +116804 n58004003007 +116814 n58004003007 +116817 n58004003007 +116839 n58004003007 +116867 n58006005009 +116875 n58006004005 +116882 n58006004005 +116886 n58006007001 +116890 n58006007010 +116894 n58006007001 +116901 n58006007001 +116908 n58006007001 +116923 n58005011004 +116934 n58005011004 +116940 n58006010005 +116948 n58006009005 +116953 n58006009005 +116955 n58006009005 +116959 n58005011004 +116976 n58006009005 +116990 n58006013006 +116997 n58006013006 +n58006013006 +117002 n58006013006 +117005 n58006013006 +n58006013006 +117009 n58006013006 +n58006013006 +117014 n58006013003 +n58006013003 +117036 n58006017006 +n58006017006 +117065 n58004003007 +n58006018015 +117068 n58006018019 +117071 n58006018015 +117081 n58006019003 +117098 n58006020002 +117114 n58007001004 +117116 n58007001014 +117123 n58007001004 +117134 n58007001004 +117155 n58007001004 +117157 n58007001004 +117162 n58007001004 +117168 n58006009005 +117192 n58007005010 +117204 n58007005022 +117212 n58007001004 +117219 n58007006008 +117222 n58007006004 +117237 n58007008006 +117242 n58007008012 +117244 n58007006004 +117255 n58007009008 +117264 n58007009008 +117300 n58007011025 +117346 n58007012010 +117368 n58007017005 +117382 n58007018006 +117402 n58006018015 +117425 n58007019014 +117432 n58007021011 +117457 n58007023004 +117473 n58007022008 +n58007022008 +117485 n58007022008 +117488 n58007022008 +117500 n58007026006 +117508 n58007026006 +117524 n58007026006 +117531 n58007026006 +117534 n58007026006 +117541 n58007028004 +117556 n58007028018 +117562 n58006018015 +117595 n58008003003 +117608 n58008001008 +117612 n58008001008 +117617 n58008001008 +117621 n58007008006 +117636 n58008005010 +n58008005010 +117641 n58008002012 +n58008005010 +n58008005010 +117649 n58008005022 +117658 n58008001008 +117661 n58008001008 +117683 n58008002012 +117685 n58008002012 +117692 n58008008009 +117709 n58008008009 +117720 n58008008009 +117743 n58008009034 +117753 n58008010015 +117764 n58008010015 +117767 n58008010015 +117780 n58008010008 +117790 n58008010008 +n58008011012 +117805 n58008011017 +117815 n58008011017 +117819 n58008011017 +117821 n58008011017 +117871 n58009003006 +117874 n58009003006 +117882 n58009004006 +117889 n58009004014 +117897 n58009004021 +117908 n58009005004 +117916 n58005011004 +117935 n58009006014 +117950 n58009007010 +117982 n58009009005 +117991 n58009009010 n58009009013 +117994 n58009009010 n58009009013 +118010 n58009009010 n58009009013 +118012 n58009011001 +118016 n58009011007 +118043 n58009011001 +118050 n58009011001 +118061 n58009013004 n58009013009 +118094 n58006018015 +118096 n58009014026 +118103 n58009014006 +118139 n58009017001 +118163 n58009019009 +118186 n58009019009 +n58009019009 +118212 n58009019009 +118263 n58009024007 +118273 n58009024007 +118310 n58009024007 +118328 n58009028004 +118333 n58009028004 +118347 n58010001005 +118350 n58010001008 +118372 n58010001005 +118376 n58010001019 +n58010001019 +118388 n58010002014 +118405 n58009028004 +118409 n58009028004 +118414 n58009024021 +118417 n58009024021 +118424 n58009024021 +118426 n58009028004 +118429 n58010007014 +118433 n58010007004 +118436 n58009028004 +118438 n58009028004 +118443 n58009028004 +118454 n58010007014 +118456 n58010007014 +118462 n58009028004 +n58010007014 +n58009028004 +118466 n58009028004 +118470 n58009028004 +118476 n58009028004 +118480 n58006018015 +n58006018015 +118497 n58010011004 +118500 n58010011004 +118507 n58010011014 +118515 n58010010011 +118526 n58010010011 +118539 n58010010011 +118556 n58010016013 +118561 n58010016013 +118570 n58010016013 +118581 n58010016013 +118593 n58010016013 +118605 n58006018015 +118617 n58010019013 +118622 n58010020004 +118639 n58006018015 +118646 n58006018015 +118653 n58006018015 +118658 n58006018015 +118667 n58010021008 +118669 n58006018015 +118678 n58006018015 +118686 n58006018015 +118691 n58010019003 +118701 n58006018015 +118719 n58010027008 +n58010027008 +118724 n58010028002 +118736 n58010019003 +118755 n58010029011 +118763 n58006018015 +118765 n58010029010 +118783 n58010031006 +118785 n58010019003 +118791 n58010019003 +n58010019003 +118802 n58010019003 +118809 n58010019003 +118814 n58010019003 +118823 n58010019003 +n58010019003 +118830 n58010034019 +118833 n58010019003 +118844 n58010019003 +118850 n58010019003 +n58010019003 +118860 n58010029008 +118864 n58010037007 +118874 n58010038003 +118902 n58011001006 +118910 n58006018015 +118936 n58011004004 +118948 n58011004004 +118950 n58011004004 +118956 n58011005002 +118960 n58011005002 +118970 n58011005002 +n58011005002 +118987 n58011006012 +118993 n58011006012 +118996 n58011007003 +119001 n58011007003 +119011 n58011007003 +119020 n58011007003 +119022 n58011008003 +119025 n58011008003 +119028 n58011008003 +119030 n58011008003 +119034 n58011008003 +119036 n58011008003 +119038 n58011008003 +119040 n58011008003 +119049 n58011008003 +119061 n58011008003 +119065 n58011010007 +119081 n58011008003 +119088 n58011008003 +119090 n58011010013 +119095 n58011008003 +119124 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119130 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119132 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119134 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119139 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119146 n58011004004 n58011005002 n58011007003 n58011008003 n58011011004 +119150 n58011014004 +119154 n58011014004 +119158 n58011014004 +119160 n58011014004 +119162 n58011014004 +119165 n58011014004 +119178 n58011016013 +119180 n58011016013 +119188 n58011017003 +119196 n58011017003 +119199 n58011018007 +119206 n58011017014 +119211 n58011019009 +119220 n58011017014 +119234 n58011021002 +119241 n58011021002 +119250 n58011022002 +119263 n58011022002 +119266 n58011023002 +119274 n58011023008 +119280 n58011023008 +119288 n58011024002 +119290 n58011024002 +119294 n58011024002 +119296 n58011024002 +119303 n58011024002 +119308 n58011024002 +119317 n58011024002 +119322 n58011024002 +119325 n58011024002 +119334 n58011024002 +n58011024002 +119337 n58011024002 +119354 n58011022008 +119364 n58011029014 +119373 n58011030003 +119385 n58011031002 +119393 n58011032006 +119417 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119419 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119421 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119424 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119427 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119430 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119433 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119439 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 +119451 n58011035008 +119457 n58011035008 +119470 n58011036001 +n58011036001 +n58011036001 +119476 n58011036001 +n58011036001 +119483 n58011036001 +n58011036001 +119486 n58011036001 +119507 n58011014004 n58011020006 n58011021002 n58011022002 n58011023002 n58011023008 n58011022008 n58011031002 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 n58011035002 n58011035008 n58011036001 +119526 n58011014004 n58011020006 n58011021002 n58011022002 n58011023002 n58011023008 n58011022008 n58011031002 n58011032012 n58011032013 n58011032014 n58011032015 n58011032016 n58011032019 n58011032022 n58011035002 n58011035008 n58011036001 +119530 n58006018015 +119532 n58012001008 +119536 n58006018015 +119547 n58012001023 +119550 n58006018015 +119562 n58012002015 +119568 n58012002006 +119576 n58012002006 +119578 n58010019003 +119580 n58012002006 +119590 n58010019003 +119594 n58010019003 +119598 n58010019003 +119602 n58010019003 +119604 n58010019003 +119615 n58012005010 +119619 n58012005010 +119622 n58012005010 +119625 n58012006004 +119629 n58012006004 +119633 n58012006004 +119636 n58010019003 +119652 n58010019003 +119664 n58010019003 +119672 n58006018015 +119675 n58006018015 +119679 n58006018015 +119685 n58006018015 +119704 n58006018015 +119715 n58012011003 +119718 n58012011003 +119730 n58012011003 +119733 n58012012004 +119737 n58012012008 +119739 n58010019003 +119743 n58010019003 +119753 n58012013011 +119755 n58010019003 +119768 n58010019003 +119782 n58012015012 +119806 n58010019003 +119810 n58012016007 +n58012016007 +119814 n58012016007 +119819 n58012016007 +119823 n58012016007 +119827 n58010019003 +119830 n58012018007 +119846 n58011022008 +119854 n58012019009 +119856 n58012020008 n58012020011 +119862 n58012020007 +119871 n58012021007 +119876 n58010019003 +119882 n58012022007 +119892 n58012023003 +119902 n58012023013 +119912 n58012024007 +119916 n58010019003 +119918 n58010019003 +119920 n58012023008 +119926 n58012019009 +119930 n58012025005 +119938 n58006018015 +119948 n58012025020 +n58012025020 +119981 n58012025023 +n58012025023 +119986 n58012025023 +120000 n58012029006 +120007 n58010019003 +120013 n58013002009 +120015 n58010019003 +120019 n58010019003 +120047 n58010019003 +120056 n58013004016 +120061 n58013004016 +120063 n58012025023 +120070 n58012025023 +120075 n58010019003 +120091 n58010019003 +n58010019003 +120111 n58010019003 +120126 n58012025023 +120130 n58013010012 +120137 n58010011004 +120163 n58013012003 +120175 n58012025023 +120184 n58012025023 +120187 n58012025023 +120189 n58013014006 +120193 n58013014006 +n58012025023 +120198 n58012025023 +120209 n58013015014 +120219 n58010019003 +120226 n58010019003 +120231 n58010019003 +120241 n58013017003 +120246 n58013017003 +120249 n58013017003 +120254 n58010019003 +120258 n58005011004 +120262 n58005011004 +120266 n58005011004 +n58005011004 +120270 n58011032006 +120272 n58010019003 +120275 n58011032006 +120283 n58013020003 +120300 n58013020003 +120307 n58010019003 +120311 n58013020003 +120331 n58011032006 +120334 n58013022004 +120343 n58011032006 +120345 n58013022004 +120355 n58013023003 +n58011032006 +120358 n58013022004 +120392 n59001001001 +120397 n59001002004 +120401 n59001002004 +n59001002004 +120418 n59001002004 +120424 n59001002004 +120431 n59001005003 +120434 n59001005011 +120439 n59001005011 +120442 n59001005006 +120445 n59001005003 +120449 n59001005003 +120456 n59001006011 +120458 n59001006011 +120466 n59001007005 +120500 n59001010003 +120509 n59001011004 +120540 n59001012002 +n59001012002 +120547 n59001007012 +120552 n59001013001 +120557 n59001013001 +120575 n59001014001 +120577 n59001014001 +120581 n59001015003 +120587 n59001015009 +120591 n59001016003 +120604 n59001017002 n59001017006 +120618 n59001017013 +n59001017013 +120632 n59001019002 +120643 n59001019008 +120647 n59001019008 +120659 n59001019002 +120667 n59001019002 +120672 n59001021013 +n59001021013 +120678 n59001019002 +120685 n59001019002 +120699 n59001023012 +120708 n59001023003 +120711 n59001023003 +120714 n59001023003 +120716 n59001023003 +120728 n59001025003 +120746 n59001026002 +120748 n59001026002 +120752 n59001026002 +120789 n59002001001 +120818 n59002001001 +120821 n59002002007 +120827 n59002001001 +120835 n59002001001 +120840 n59002003018 +120846 n59002001001 +120850 n59002001001 +120854 n59002005002 +120874 n59002005007 +120901 n59002007006 +120908 n59002005002 +120919 n59002005002 +120922 n59002005002 +120924 n59002005002 +n59002005002 +120938 n59002010001 +120946 n59002005007 +120956 n59002005002 +120958 n59002005002 +n59002005002 +120963 n59002005002 +120966 n59002005002 +120971 n59002005002 +n59002005002 +120991 n59002014009 +120997 n59002014009 +121002 n59002014018 +121011 n59002015002 n59002015004 +121021 n59002015002 n59002015004 +121024 n59002015002 n59002015004 +121026 n59002015002 n59002015004 +121029 n59002014004 +121044 n59002017004 +121059 n59002014004 +121084 n59002014004 +121090 n59002019012 +121095 n59002020005 +n59002020005 +121112 n59002021001 +n59002021001 +121121 n59002020005 +121141 n59002023004 +121148 n59002023007 +121155 n59002023009 +n59002020005 +121177 n59002025004 +121183 n59002025004 +121206 n59003001005 +121210 n59001001001 n59003001003 +121225 n59003002013 +121239 n59001001001 n59003001005 n59003001003 +121250 n59001001001 n59003001005 n59003001003 +n59003001005 +121256 n59003004004 +121261 n59003004004 +121281 n59003005004 +n59003001005 +121304 n59003006010 +121309 n59003006010 +121315 n59003006010 +121340 n59003008004 +121351 n59001001001 n59003001005 n59003001003 +121359 n59001001001 n59003001005 n59003001003 +121366 n59003009013 +121401 n59003012005 +121416 n59003013001 +121429 n59003012003 +121439 n59003012003 +121441 n59003012003 +121451 n59003015005 +121509 n59004001012 +121514 n59003012003 +121517 n59003012003 +n59003012003 +121520 n59003012003 +121523 n59003012003 +n59003012003 +n59003012003 +121527 n59003012003 +121529 n59003012003 +121535 n59003012003 +121538 n59003012003 +121541 n59003012003 +121547 n59003012003 +121550 n59004004001 +121564 n59004004013 +121573 n59004004001 +121581 n59004004023 +121585 n59004004023 +121591 n59004004023 +121593 n59004005006 +121600 n59004006008 +121603 n59003012003 +121607 n59003012003 +121611 n59004007008 +121614 n59003012003 +121618 n59004008003 +121620 n59004008009 +121624 n59004008013 +121643 n59004008013 +121647 n59004010003 +121650 n59004011004 +121664 n59004011006 +121669 n59004011004 +n59004011004 +121682 n59004012003 +n59004012003 +121685 n59004012003 +121694 n59004013004 +121701 n59004013004 +121707 n59004013004 +121711 n59004013004 +121713 n59004013004 +121724 n59004013004 +121729 n59004014010 +121732 n59004014010 +121742 n59004013004 +121744 n59004013004 +121750 n59004013004 +121763 n59004017001 +121770 n59005001004 +121774 n59005001004 +n59005001004 +121781 n59005001009 +121808 n59005003010 +121814 n59005001004 +121818 n59005001004 +121824 n59005004005 +121829 n59005004003 +121844 n59005001004 +121849 n59005001004 +n59005001004 +121857 n59005001004 +n59005001004 +121862 n59005006004 +121866 n59005007003 +121872 n59005007003 +121881 n59005007011 +121885 n59005007015 +121892 n59005007003 +121904 n59005009003 +121909 n59005009003 +n59005009003 +121918 n59005010003 +121933 n59005010003 +n59001001001 n59005010003 n59003001003 +121940 n59005010003 +121945 n59005010003 +121959 n59005012004 +121984 n59005012004 +121989 n59005013002 +121992 n59005013007 +121997 n59005014002 +122003 n59005014007 +122006 n59005014007 +122020 n59005014002 +122028 n59005015008 +n59005015008 +n59005015015 +122033 n59005012004 +122038 n59005012004 +122042 n59005012004 +122047 n59005016014 +122055 n59005017001 +122072 n59005017001 +122099 n59005019001 +122114 n59005020004 +122165 n60001003003 +122169 n60001003020 +122183 n60001004002 +122192 n60001001006 +122198 n60001005009 +122204 n60001001006 +122209 n60001001006 +122222 n60001007008 +122226 n60001007008 +122240 n60001001006 +n60001001006 +122247 n60001001006 +n60001001006 +n60001001006 +122253 n60001008013 +n60001001006 +122274 n60001010007 +n60001010007 +122287 n60001011011 +122298 n60001012008 +122304 n60001010007 +122317 n60001012019 +122322 n60001012027 +122326 n60001001006 +122332 n60001001006 +122334 n60001001006 +122337 n60001013015 +122348 n60001001006 +122359 n60001015006 +122370 n60001016003 +122379 n60001001006 +122382 n60001015006 +122394 n60001001006 +n60001001006 +122402 n60001001006 +122419 n60001019009 +122424 n60001019009 +122438 n60001021006 +122445 n60001021006 +122458 n60001021004 +122470 n60001021004 +122472 n60001021004 +122482 n60001023009 +122484 n60001023009 +122518 n60001025013 +122522 n60001021004 +122542 n60001021004 +122546 n60001021004 +122550 n60001021004 +122555 n60001021004 +122559 n60002004004 +122563 n60002004004 +122573 n60002005004 +122580 n60001021004 +122589 n60002006006 n60002006020 +122593 n60002005016 +122613 n60001021004 +122636 n60002007007 +122640 n60002007007 +122653 n60002007006 +122660 n60002005016 +122676 n60002007006 +122679 n60002007006 +122681 n60001001001 +122686 n60002011001 +122701 n60002011001 +122706 n60002012006 +122714 n60002012006 +n60002012006 +122721 n60002011001 +122731 n60002013009 +122737 n60002014002 +122751 n60002011001 +n60002011001 +122763 n60002011001 +122774 n60002011001 +122777 n60002011001 +122780 n60002011001 +122783 n60002011001 +122786 n60002018002 +122812 n60002019009 +122818 n60002018002 +122820 n60002018002 +n60002018002 +122824 n60002018002 +122826 n60002018002 +n60002018002 +122835 n60002018002 +122843 n60002021007 +122846 n60002018002 +122862 n60002021007 +122865 n60002021007 +122867 n60002021007 +122869 n60002021007 +122871 n60002020018 +122889 n60001001001 n60002011001 n60002018002 +122892 n60001001001 n60002011001 n60002018002 +122896 n60002018002 +122898 n60002018002 +122901 n60002025004 +122903 n60002018002 +122915 n60003001002 +122933 n60003001010 +n60003001010 +122983 n60003005007 +122988 n60003005007 +122999 n60003006002 +123002 n60003001002 +n60003001002 +123006 n60003001002 +123012 n60003007002 +123020 n60003007002 +123044 n60002011001 +123054 n60002011001 +123058 n60002011001 +123061 n60002011001 +123066 n60003010003 +123068 n60003010003 +123080 n60003010016 +123083 n60003010003 +123087 n60003010003 +123089 n60003010003 +123092 n60003010003 +123120 n60002011001 +123124 n60002011001 +123133 n60002011001 +123135 n60002011001 +123140 n60002011001 +123166 n60002011001 +123170 n60002011001 +123182 n60002011001 +123189 n60002011001 +123191 n60002011001 +123204 n60003018003 +123208 n60003018003 +123211 n60003018003 +123215 n60003018003 +n60003018003 +123222 n60003019007 +123271 n60003021020 +123304 n60002011001 +123307 n60004001001 +123314 n60004003005 +123320 n60002011001 +n60002011001 +123333 n60004003009 +123343 n60004003009 +123349 n60004001001 +n60004005006 +123362 n60004006005 +123367 n60004006005 +123377 n60002011001 +123379 n60002011001 +123389 n60002011001 +123402 n60004010001 +123454 n60004012001 +123462 n60004012007 +123469 n60004012001 +123474 n60004012001 +123483 n60004012001 +n60004012001 +123486 n60004012001 +123522 n60004015003 +123524 n60004015003 +123590 n60001001001 +123602 n60005001019 +n60005001019 +123606 n60004012001 +123625 n60004012001 +123629 n60004012001 +123637 n60004012001 +123645 n60005005002 +123660 n60005005013 +123663 n60004012001 +123672 n60005006008 +123679 n60004012001 +123687 n60004012001 +n60004012001 +123695 n60005008008 +123697 n60005008004 +123699 n60005008004 +123701 n60004012001 +123705 n60004012001 +123723 n60005010003 +123733 n60004012001 +123736 n60005010003 +n60005010003 +n60005010003 +123755 n60005001007 +123758 n60005001007 +n60005001007 +123761 n60005001007 +123770 n60004012001 +123782 n60004012001 +123846 n61001002011 +123860 n61001003018 +123864 n61001001011 +123868 n61001001011 +123882 n61001001011 +n61001001011 +123929 n61001005014 n61001005020 n61001006006 n61001006012 n61001006018 n61001007006 n61001007012 +123931 n61001005014 n61001005020 n61001006006 n61001006012 n61001006018 n61001007006 n61001007012 +123951 n61001009004 +n61001009004 +n61001009004 +123964 n61001010003 +123971 n61001010003 +123974 n61001010003 +123977 n61001010003 +123998 n61001001001 +124001 n61001001001 +124005 n61001010003 +124007 n61001010003 +124010 n61001012015 +124014 n61001001001 +124017 n61001001001 +124022 n61001001001 +124026 n61001001001 +124045 n61001001001 +124057 n61001001001 +124060 n61001016004 +124062 n61001001001 n61001001010 +n61001001001 n61001001010 +124075 n61001001001 n61001001010 +124081 n61001016010 +124116 n61001018004 +124119 n61001001001 n61001001010 +124125 n61001001001 n61001001010 +124131 n61001010003 +124133 n61001010003 +124136 n61001019012 +124153 n61001010003 +124173 n61001021016 +124197 n61002001022 +124200 n61002001013 +n61002001013 +124224 n61002001013 +124242 n61002004005 +124248 n61002004004 +n61002004004 +124252 n61002004005 +124257 n61002004004 +124263 n61002004004 +124267 n61002004004 +124273 n61002004004 +124275 n61002004004 +124279 n61002004004 +124283 n61002007002 +124291 n61002004004 +124298 n61002008006 +124314 n61002009002 +124320 n61002009007 +n61002009002 +124337 n61002010013 +124346 n61002011002 +124360 n61002012005 +124368 n61002010013 +n61002010013 +124375 n61002010013 +n61002010013 +124380 n61002010013 +124388 n61002010013 +124393 n61002010013 +124395 n61002010013 +124402 n61002010013 +124406 n61002014011 +124408 n61002010013 +124411 n61002010013 +124414 n61002010013 +n61002010013 +124430 n61002015009 +124436 n61002016006 +124450 n61002017006 +124460 n61002010013 +n61002010013 +124475 n61002010013 +124486 n61002019011 +124489 n61002018012 +124505 n61002018012 +n61002018012 +124519 n61002018012 +124525 n61002018012 +n61002018012 +124529 n61002021019 +124557 n61001001001 +124560 n61001001001 +124567 n61003001003 +124569 n61003002004 +124587 n61003001003 +124602 n61003003012 +124604 n61003003012 +124625 n61003005009 n61003005017 n61003006008 +124628 n61003003012 +124651 n61003006005 +124666 n61003007004 n61003007007 +124706 n61003009003 +124709 n61003009003 +124732 n61003010013 +124755 n61003008007 +124757 n61003008007 +124767 n61003012012 +124771 n61003012016 +124783 n61001001001 n61003008007 n61001001010 +124791 n61003014002 +n61003014002 +124797 n61003014002 +124807 n61003014002 +124817 n61003015020 +124827 n61003015014 +124856 n61003017003 +124864 n61003017003 +n61003017003 +124870 n61003017003 +124896 n62002001002 n62001001011 +124898 n62002001002 n62001001011 +124903 n62002001002 n62001001011 +124919 n62002001002 n62001001011 +124921 n62002001002 n62001001011 +124923 n62002001002 n62001001011 +124935 n62001002013 +124938 n62002001002 n62001001011 +124940 n62002001002 n62001001011 +n62002001002 n62001001011 +124983 n62002001002 n62001001011 +124987 n62002001002 n62001001011 +125002 n62002001001 n62002001002 n62001001011 +125005 n62002001001 n62002001002 n62001001011 +125012 n62002001001 n62002001002 n62001001011 +n62002001001 n62002001002 n62001001011 +125016 n62002001001 n62002001002 n62001001011 +125024 n62002001001 n62002001002 n62001001011 +125032 n62002001001 n62002001002 n62001001011 +125048 n62002001001 n62002001002 n62001001011 +125052 n62002001001 n62002001002 n62001001011 +125054 n62002001001 n62002001002 n62001001011 +125063 n62002001001 n62002001002 n62001001011 +125067 n62001005015 +125072 n62001005015 +125077 n62001005015 +125083 n62002001001 n62002001002 n62001001011 +125086 n62002001001 n62002001002 n62001001011 +125088 n62002001001 n62002001002 n62001001011 +125101 n62002001002 +125105 n62002001001 +125110 n62002001001 n62002001002 n62001001011 +125141 n62002001001 n62002001002 n62001001011 +125143 n62002001001 n62002001002 n62001001011 +125149 n62002001001 n62002001002 n62001001011 +125153 n62002004002 +125187 n62002001001 n62002001002 n62001001011 +125191 n62002001001 n62002001002 n62001001011 +125196 n62002006002 +125204 n62002006002 +125206 n62002001002 +125215 n62002007001 +125226 n62002007001 +125230 n62002001002 +125256 n62002009002 +125297 n62002011003 +125300 n62002011003 +125302 n62002011003 +125311 n62002001002 +125323 n62002001002 +125326 n62002013003 +125331 n62002001002 +125334 n62002013011 +125338 n62002001002 +125341 n62002014003 +125345 n62002001002 +125348 n62002014010 +125353 n62002001002 +125357 n62002014018 +125367 n62002014018 +125371 n62002014003 n62002014010 n62002014018 +125421 n62002016003 +125447 n62002018001 +125457 n62002001002 n62002018001 n62001001011 +125464 n62002018013 +125467 n62002018013 +125474 n62002018013 +125476 n62002018013 +125481 n62002019026 +125498 n62002001002 +125503 n62002018001 +125508 n62002018001 +125538 n62002022018 +125563 n62002018001 +125576 n62002018001 +125601 n62002001002 +125605 n62002018013 +125612 n62002018001 +125621 n62002018001 +125637 n62002027024 +125640 n62002027024 +125644 n62002027024 +125646 n62002018001 +125652 n62002028003 +125657 n62002024021 +n62002001002 n62002028003 n62001001011 +125662 n62002001002 n62002028003 n62001001011 +125670 n62002028003 +125673 n62002024021 +n62002028003 +125685 n62002028003 +125695 n62002001002 n62002028003 n62001001011 +125697 n62002001002 n62002028003 n62001001011 +125707 n62003001017 +125713 n62002001002 n62003002001 n62001001011 +125718 n62002001002 n62003002001 n62001001011 +n62002001002 n62003002001 n62001001011 +125722 n62002024021 +125725 n62002001002 n62003002001 n62001001011 +125727 n62002001002 n62003002001 n62004011001 +125730 n62002024021 +125762 n62003002001 +125769 n62002024021 +125790 n62003006010 +125828 n62003008019 +125850 n62003009003 +n62003009003 +125856 n62003009003 +125893 n62003007001 +125897 n62002001002 n62003007001 n62001001011 +125907 n62003012003 +125914 n62003012003 +125930 n62003013003 +125939 n62002001002 n62003013003 n62001001011 +125947 n62002001002 n62003013003 n62001001011 +125966 n62003013003 +125976 n62003015016 +125979 n62002001002 n62003013003 n62001001011 +125998 n62002001002 n62003013003 n62001001011 +126008 n62003017001 +126015 n62003017001 +126030 n62002001002 n62003018001 n62001001011 +126043 n62002001002 n62003018001 n62001001011 +126048 n62002001002 n62003018001 n62001001011 +126052 n62002001002 n62003018001 n62001001011 +126071 n62003020011 +126080 n62002001002 n62003021001 n62001001011 +126087 n62002001002 n62003021001 n62001001011 +n62002001002 n62003021001 n62001001011 +126095 n62002001002 n62003021001 n62001001011 +126101 n62002001002 n62003021001 n62001001011 +126109 n62002001002 n62003021001 n62001001011 +126118 n62002001002 n62003021001 n62001001011 +126121 n62003021011 +126140 n62002001002 n62003021001 n62001001011 +126142 n62003021011 +126150 n62003021011 +126155 n62004001001 +126157 n62004001001 +126164 n62004001009 +126174 n62004001001 +126212 n62004001001 +126214 n62004003017 +126220 n62004003017 +126229 n62004004006 +126252 n62004001017 +126280 n62002001002 n62004004006 n62001001011 +126291 n62002001002 n62004007001 n62001001011 +126309 n62004007014 +126346 n62002001002 n62004007001 n62001001011 +126366 n62004010011 +126386 n62002001002 n62004011001 n62001001011 +126392 n62002001002 n62004011001 n62001001011 +126409 n62002001002 n62004011001 n62001001011 +126413 n62002001002 n62004011001 n62001001011 +126423 n62004012009 +126501 n62002001002 n62004011001 n62001001011 +126556 n62004020002 +126563 n62004020002 +126565 n62004020002 +126574 n62004020018 +126581 n62004020018 +n62004020018 +126587 n62002001002 n62004011001 n62001001011 +126617 n62005001011 +126625 n62002001002 n62004011001 n62001001011 +126627 n62002001002 n62004011001 n62001001011 +126635 n62002001002 n62004011001 n62001001011 +126640 n62002001002 n62004011001 n62001001011 +126652 n62002001002 n62004011001 n62001001011 +126676 n62005004015 +126702 n62005006009 +126759 n62002001002 n62004011001 n62001001011 +126774 n62005009019 +126801 n62005010015 +126853 n62002001002 +126856 n62004011001 +126865 n62004011001 +126869 n62004011001 +126876 n62002001002 n62004011001 n62001001011 +126882 n62002001002 n62004011001 n62001001011 +126887 n62005013018 +126891 n62002001002 n62004011001 n62001001011 +126893 n62005013018 +126897 n62002001002 n62004011001 n62001001011 +n62002001002 n62004011001 n62001001011 +126900 n62002001002 n62004011001 n62001001011 +126904 n62002001002 n62004011001 n62001001011 +126918 n62005016002 +126920 n62005013018 +126924 n62005016005 +126935 n62002001002 +126937 n62005016002 +126948 n62002001002 n62004011001 n62001001011 +126960 n62005013016 +126972 n62002001002 n62004011001 n62001001011 +126977 n62002001002 n62004011001 n62001001011 +126987 n62002001002 n62004011001 n62001001011 +126995 n62005020005 +126999 n62002001002 n62004011001 n62001001011 +127003 n62002001002 n62004011001 n62001001011 +127022 n62005021001 +127055 n63001002003 +127061 n63001002003 +127086 n63001001002 +127089 n63001001002 +127099 n63001001002 n63001001004 n63001001007 n63001001022 +127106 n63001001002 +127108 n63001001002 +127116 n63001001002 n63001005005 n63001001007 n63001001022 +127120 n63001001002 n63001005005 n63001001007 n63001001022 +127128 n63001001002 n63001005005 n63001001007 n63001001022 +127138 n63001005005 n63001001007 +127144 n63001005005 n63001001007 +127154 n63001007003 +127167 n63001005005 n63001001007 +127171 n63001005005 n63001001007 +127173 n63001001002 n63001005005 n63001001007 n63001001022 +127177 n63001005005 n63001001007 +127215 n63001010002 +127217 n63001005005 n63001001007 +127222 n63001005005 n63001001007 +127225 n63001005005 n63001001007 +127230 n63001011002 +127237 n63001001002 +127240 n63001001002 +127242 n63001001002 +127248 n63001001002 +n63001001002 +127256 n63001001002 +127285 n64001001002 +127296 n64001001002 +127301 n64001003005 +127314 n64001001002 +127316 n64001001002 +127326 n64001005001 +127329 n64001005001 +127345 n64001005001 +n64001005001 +127354 n64001005012 +127356 n64001005012 +127363 n64001001002 n64001005001 +127368 n64001001002 n64001005001 +127371 n64001001002 +127377 n64001009009 +127386 n64001001002 +n64001001002 +127392 n64001009007 +127395 n64001009007 +127399 n64001009007 +127410 n64001009007 +127415 n64001009007 +127418 n64001011001 +127450 n64001011001 +127457 n64001001002 +127459 n64001001002 +127463 n64001001002 +127469 n64001001002 +127471 n64001001002 +127474 n64001001002 +127479 n64001001002 n64001011001 +127486 n64001011001 +127502 n65001001017 +127506 n65001001017 +127518 n65001001001 +n65001001001 +127527 n65001001001 +n65001001001 +127530 n65001001001 +n65001003001 +127534 n65001003023 +127544 n65001004004 +127555 n65001004004 +127567 n65001004004 +127569 n65001001001 +n65001003001 +127573 n65001001001 +127581 n65001005009 +127592 n65001006001 +127597 n65001006001 +127609 n65001005009 +127623 n65001007002 n65001007004 n65001007009 +127625 n65001007002 n65001007004 n65001007009 +127634 n65001007002 n65001007004 n65001007009 +127653 n65001009003 +n65001009003 +127667 n65001009003 +127669 n65001009003 +127678 n65001008005 +127687 n65001008005 +127690 n65001008005 +127698 n65001008005 +127705 n65001008005 +127711 n65001008005 +127720 n65001008005 +127723 n65001008005 +127728 n65001012013 +127733 n65001012018 +n65001012018 +127738 n65001013001 +127760 n65001014005 +127768 n65001014012 +127773 n65001014012 +127784 n65001015009 +127804 n65001016003 +127811 n65001008005 +127822 n65001017006 +127832 n65001017011 +127840 n65001018009 +127850 n65001008005 +127854 n65001008005 +127858 n65001020003 +127867 n65001020003 +127872 n65001020001 +n65001020003 +127887 n65001022002 +n65001020003 +n65001020003 +127892 n65001020003 +127895 n65001020003 +127898 n65001020003 +127904 n65001023017 +127908 n65001025002 +n65001025002 +127913 n65001025002 +127956 n66001001002 +127966 n66001001002 +n66001001002 +127988 n66001001026 +128023 n66001002006 +128026 n66001002006 +128029 n66001002006 +128060 n66001005003 +128063 n66001005003 +128074 n66001005021 +128095 n66001004004 +n66001005021 +128132 n66001008021 +128135 n66001008021 +128138 n66001008021 +128162 n66001009020 +128173 n66001009002 +128181 n66001009002 +128188 n66001010012 +128190 n66001009002 +n66001009002 +128195 n66001009002 +128220 n66001009002 +n66001009002 +128229 n66001009002 +n66001009002 +128242 n66001013007 +128245 n66001013007 +128280 n66001015006 +128290 n66001013007 +128321 n66001009002 +128323 n66001009002 +128331 n66001013007 +128337 n66001013007 +128339 n66001009002 +128351 n66001013007 +128354 n66001009002 +n66001013007 +n66001013007 +128363 n66001013007 +128372 n66001009002 +128374 n66001009002 +128381 n66001019009 +128390 n66001009002 +128423 n66001009002 +128427 n66001013007 +128436 n66001013007 +128444 n66002001011 +128458 n66002001006 +n66002001006 +128462 n66002001006 +128469 n66002002021 +128471 n66002001006 +128476 n66002001006 +128478 n66002001006 +128485 n66002001006 +128487 n66002001011 +128496 n66002001006 +128498 n66002001006 +128500 n66002001006 +128502 n66002001006 +128507 n66002001006 +128511 n66002001011 +128514 n66002001011 +128524 n66002001006 +128527 n66002001006 +128529 n66002001006 +128549 n66002001011 +128551 n66002007012 +128571 n66001009002 +128583 n66002008012 +n66002008012 +128593 n66002008007 +128605 n66002009016 +128611 n66002008007 +128613 n66002008007 +n66002008007 +n66002008007 +128619 n66002010010 +128625 n66002008007 +128627 n66002008007 +128631 n66002008007 +128636 n66002008012 +128669 n66001009002 +128673 n66001013007 +128680 n66002012012 +128682 n66002012007 +128689 n66002012007 +128695 n66002012007 +128719 n66002012012 +128724 n66002012007 +128734 n66002014016 +128740 n66002014021 +128743 n66002014021 +128755 n66002012007 +128759 n66002012012 +128763 n66002012012 +128784 n66002012012 +128789 n66002017016 +128791 n66002012012 +128799 n66002017028 +128816 n66001009002 +128824 n66002018012 +128837 n66002018012 +128864 n66002018012 +128868 n66002018007 +128873 n66002020008 +128877 n66002020008 +128879 n66002020008 +128888 n66002018012 +128892 n66002020008 +128895 n66002020008 +n66002020008 +128901 n66002018007 +n66002018012 +128916 n66002022008 +128925 n66002018012 +128942 n66002018012 +128950 n66002018012 +128973 n66002018012 +128980 n66002024005 +n66002024005 +128985 n66002018012 +128997 n66002018012 +129004 n66002026003 +129023 n66002018012 +129046 n66001009002 +129050 n66001013007 +129060 n66003001012 +129066 n66003001007 +129068 n66003001007 +129071 n66003001007 +n66003001007 +n66003001007 +129075 n66003001007 +129080 n66003002006 +129083 n66003001012 +129092 n66003001007 +129094 n66003001007 +129096 n66003001007 +129098 n66003001007 +129100 n66003001007 +129104 n66003001007 +n66003001012 +129111 n66003001007 +129114 n66003001012 +129118 n66003001007 +129130 n66003004004 +129137 n66003004004 +129148 n66003001012 +129158 n66003001012 +129188 n66001009002 +129196 n66003007012 +129201 n66003007012 +129206 n66003007012 +129210 n66003007012 +129214 n66003007007 +n66003007012 +129219 n66003008009 +129222 n66003008012 +129228 n66003007007 +129230 n66003007007 +129236 n66003007007 +129240 n66003007007 +n66003007012 +129248 n66003009005 +129254 n66003009005 +129256 n66003009005 +n66003007007 +n66003007012 +129261 n66003009005 +129263 n66003009005 +129269 n66003009005 +129275 n66003007007 +129290 n66003010013 +n66003010013 +129296 n66003010013 +129302 n66003007012 +129304 n66003007007 +129306 n66003007007 +129315 n66003007012 +129328 n66003012002 +129331 n66003007012 +129351 n66003012031 +129382 n66001009002 +129399 n66003014012 +129404 n66003014007 +129409 n66003014012 +n66003014007 +129417 n66003014007 +129423 n66003014012 +129425 n66003014012 +129431 n66003014007 +129434 n66003014007 +129436 n66003014007 +129440 n66003014007 +129443 n66003014007 +129457 n66003014012 +129459 n66003014007 +129463 n66003018006 +129467 n66003014007 +129472 n66003014007 +129483 n66003014007 +129488 n66003014007 +129492 n66003014012 +129497 n66003014007 +129499 n66003014007 +n66003014007 +n66003014012 +129506 n66003014012 +129514 n66003020009 +129517 n66003014012 +129521 n66003014012 +129530 n66003014012 +129532 n66003021002 +129543 n66003014012 +129564 n66001009002 +129578 n66001009002 +129584 n66004001013 +n66001009002 +129588 n66004001013 +129596 n66001009002 +129643 n66004004014 +129699 n66004006020 +129732 n66004007028 +129741 n66004008004 +129753 n66004008004 +129757 n66004008004 +129767 n66004008029 +129770 n66004008029 +129773 n66004008029 +129785 n66004008029 +129790 n66004008029 +129803 n66004008029 +129808 n66004010005 +129810 n66004008029 +129817 n66004010005 +129824 n66004010005 +129832 n66004011004 +n66004011004 +129852 n66004011022 +129854 n66004011022 +129856 n66001009002 +129861 n66004011004 +129866 n66005001011 +129870 n66005001011 +129874 n66001009002 +129883 n66005002009 +129887 n66005002009 +129905 n66005003002 +129909 n66005003002 +129912 n66001009002 +129918 n66005004005 +129922 n66005004005 +129932 n66001009002 +n66001009002 +129945 n66005005013 +129954 n66001009002 +129971 n66005006016 +n66005006016 +129985 n66005006030 +129991 n66005006016 +129993 n66005006016 +129998 n66005006032 +130004 n66005006016 +130019 n66005008008 n66005008013 +130025 n66005008022 +130034 n66005008008 n66005008013 +130037 n66005008008 n66005008013 +130039 n66005008017 +n66005008017 +130044 n66005008017 +130049 n66005008017 +130051 n66005008017 +130068 n66005008017 +130077 n66005010003 +130082 n66001009002 +130084 n66001009002 +130107 n66005011006 +130115 n66005012007 +n66005012007 +130157 n66001009002 +130159 n66005010005 +130193 n66005014009 +130195 n66001009002 +130206 n66001009002 +130218 n66001009002 +130235 n66006002009 +n66006002009 +130239 n66006002009 +130242 n66006001006 +130247 n66001009002 +130282 n66006001006 +130287 n66001009002 +130294 n66001009002 +130311 n66001009002 +130335 n66006005022 +130338 n66006001006 +130343 n66001009002 +130351 n66001009002 +130380 n66006008009 n66006008005 +130397 n66006001006 +130401 n66001009002 +130419 n66006009014 +130421 n66006009014 +130424 n66006009014 +130434 n66006010009 +130436 n66006010009 +130456 n66006009014 +130471 n66006011019 n66006011023 +n66006011019 n66006011023 +130477 n66001009002 +130479 n66006001006 +130521 n66006013011 +130573 n66006015003 n66006015008 n66006015011 n66006015014 n66006015017 n66006015020 n66006015022 +130579 n66006016004 n66006016007 +130583 n66006016004 n66006016007 +130588 n66006009019 +130610 n66006017011 +130613 n66001009002 +130623 n66007001005 +130645 n66001009002 +130652 n66007002004 +130655 n66007002011 +130657 n66007002004 +130672 n66007002004 +130674 n66007002019 +130684 n66007002019 n66007002004 +130695 n66001009002 +130704 n66007004010 +130774 n66001009002 +130781 n66007009011 +130801 n66007009006 +130811 n66007009006 +130814 n66007009006 +130821 n66007010009 +130844 n66007011004 +130853 n66007011004 +130856 n66007011004 +130893 n66007013003 +130897 n66007009006 +130906 n66007013011 +130908 n66001009002 +130915 n66007013003 +130927 n66007013011 +130932 n66007013011 +130941 n66007013011 +130948 n66007013011 +130959 n66007015008 +130967 n66007013011 +130970 n66007013011 +130993 n66007017003 +131011 n66007009029 +131024 n66001009002 +131043 n66008003003 +131047 n66008003003 +131056 n66008003003 +131095 n66008005004 +131103 n66008005004 +131121 n66008006004 +131128 n66008006004 +131138 n66008007007 n66008007009 +131142 n66008007007 n66008007009 +131173 n66008008008 +131196 n66008009006 +131216 n66008010011 +131220 n66008010011 +131257 n66008011024 +131297 n66001009002 +131299 n66001009002 +131302 n66008013006 +131326 n66008013029 +n66008013029 +131334 n66001009002 +131353 n66009001008 +131405 n66009003006 +131435 n66009003006 +131439 n66009004020 +131450 n66009005019 +131465 n66009006008 +131468 n66009006008 +n66009006008 +131483 n66009007007 +131503 n66009007005 +131516 n66009007005 +131532 n66009009016 +131536 n66009007005 +131550 n66009010014 +131555 n66009007005 +131572 n66009011004 +131592 n66001009002 +131607 n66009013008 +131612 n66009014004 +131615 n66009014004 +131620 n66009014012 +131633 n66009015005 +131644 n66009015005 +131658 n66001009002 +131664 n66001009002 +131721 n66009018013 n66009018016 n66009018019 +131747 n66009019018 +131752 n66009019005 +131775 n66009020003 +131798 n66009020028 +131800 n66009020028 +131802 n66009020028 +131805 n66009020003 +131826 n66001009002 +131834 n66010001004 +131858 n66010001004 +131864 n66010002007 +131866 n66010001004 +131882 n66010001004 +131890 n66010001004 +131904 n66001009002 +n66001009002 +131907 n66001009002 +131913 n66001009002 +131922 n66001009002 +131935 n66001009002 +131946 n66010005003 +131949 n66009013021 +131991 n66010007009 +n66010007009 +132000 n66010007018 +132010 n66001009002 +132019 n66010008003 +n66001009002 +n66001009002 +132025 n66010008018 +132032 n66010008025 +132041 n66001009002 +132045 n66001009002 +132047 n66010009005 +132052 n66010009005 +132054 n66001009002 +132056 n66001009002 +132059 n66010009011 +132068 n66010009011 +132073 n66001009002 +132082 n66001009002 +132085 n66010010004 +132095 n66001009002 +132102 n66010008003 n66010009005 +132123 n66010008003 +n66001009002 +132126 n66001009002 +132146 n66001009002 +132151 n66001009002 +132153 n66011002003 +132161 n66011002017 +132166 n66010008003 +132172 n66011003005 +132177 n66011003005 +132194 n66011004005 n66011004009 +132200 n66011005003 +132208 n66011005007 +132217 n66011005020 +132226 n66011003005 +132240 n66011003005 +132244 n66011003005 +132249 n66011003005 +132257 n66011003005 +132260 n66011003005 +132267 n66011007008 +132276 n66011007008 +132279 n66011007008 +132324 n66011009005 +132341 n66011010003 +132344 n66011010003 +132373 n66011010020 +132387 n66011010020 +132395 n66011010020 +132398 n66011010020 +132440 n66011013026 +132470 n66011015008 +132484 n66011015020 +132499 n66011016005 +132510 n66011016005 +132513 n66011016005 +n66011016005 +132522 n66011017004 +132525 n66011017004 +132527 n66011017004 +132534 n66011017004 +132549 n66011018014 +132551 n66011017004 +132564 n66011018021 +132574 n66011017004 +132641 n66012001008 +132643 n66012001008 +n66012001008 +132646 n66012001008 +n66012001008 +132685 n66012004003 +132698 n66012004024 +n66012004024 +132702 n66012004024 +132706 n66012004020 +132708 n66012004024 +132713 n66012005003 +132741 n66012006003 +132744 n66012006011 +132769 n66012007008 n66012007011 +132783 n66012007020 n66012007024 +132803 n66012009004 +132809 n66012009004 +132813 n66012009004 +132825 n66001009002 +132859 n66012010031 +132886 n66012010033 +132894 n66012012004 n66012012009 +132913 n66012012019 +132916 n66012012019 +132920 n66012012019 +132927 n66012013005 +132931 n66012013005 +132950 n66012014004 +132959 n66012014004 +132988 n66012015004 +133003 n66012016010 +133022 n66012017004 +n66012017004 +133032 n66012017014 +133038 n66012017014 +133043 n66012017004 +133050 n66001009002 +133056 n66013001006 +133080 n66001009002 +133119 n66013003002 +133138 n66013003022 +133142 n66013004004 +133148 n66013003022 +133151 n66013003022 +133159 n66013004021 +133166 n66013005004 +133174 n66013004014 +133179 n66013004014 +133188 n66013004014 +133200 n66013006017 +133204 n66013004014 +133210 n66013004014 +133248 n66013008022 +133256 n66013009002 +133263 n66013010002 +133284 n66001009002 +133292 n66013011004 +133298 n66013011004 +133308 n66013011004 +133312 n66013011004 +133321 n66013012014 n66013012019 +133334 n66013011004 +133339 n66013011004 +133352 n66013011004 +133364 n66013011004 +133368 n66013011004 +133374 n66013014020 +133385 n66013014027 +133403 n66013015014 +133415 n66013011004 +133435 n66013011004 n66013015014 +133454 n66013017004 +133456 n66013017004 +133488 n66013018010 +133497 n66001009002 +133514 n66014001018 +133530 n66001009002 +133548 n66001009002 +133557 n66014001018 +133574 n66014003017 +133585 n66014003028 +133598 n66014003028 +133606 n66014004015 +133627 n66014003028 +133629 n66001009002 +133635 n66014006004 +133638 n66014006004 +133655 n66014006004 +133659 n66014006014 +133663 n66014006014 +133674 n66014006014 +133676 n66014007007 +133692 n66014008003 +n66014008009 +133717 n66014009003 +133731 n66014009012 +133753 n66014010006 +133762 n66014009012 +133815 n66014012005 +133825 n66001009002 +133831 n66001009002 +133838 n66014013011 +133845 n66014013011 +133858 n66001009002 +133871 n66014014013 +133892 n66014015003 +133897 n66014014013 +133901 n66014015013 +133906 n66014015013 +133911 n66014015026 +133921 n66014015013 +133955 n66014018003 +133965 n66014018003 +133969 n66014017003 +133974 n66014018003 +n66014018019 +133982 n66014018019 +134005 n66014019004 +134011 n66014019004 +134044 n66001009002 +134069 n66001009002 +134099 n66015002010 +134104 n66015002010 +134117 n66015002010 +134145 n66015004001 +134158 n66015004017 +134169 n66001009002 +134187 n66015006005 +134194 n66015006005 +134199 n66015006005 +134218 n66015007012 +134224 n66015007018 +134248 n66015008017 +134261 n66001009002 +134271 n66016001011 +134273 n66016001011 +134289 n66016002004 +134306 n66016002021 +134313 n66016002021 +134328 n66016003010 +134357 n66016004010 n66016004013 +134360 n66001009002 +134367 n66016005011 +134369 n66016005016 +134372 n66016005016 +134377 n66016005011 +134383 n66016002021 +134387 n66016005011 +n66016002021 +134390 n66016002021 +134392 n66001009002 +134433 n66016009004 +134439 n66016009012 +134448 n66016009004 +n66016009004 +134469 n66016010016 +134471 n66016009004 +134479 n66016009004 +134495 n66016009004 +134529 n66001009002 +134553 n66016013020 +134556 n66016014003 +134566 n66016014003 +134580 n66014013014 +134594 n66016015007 +134601 n66016013020 +134607 n66016016006 +134630 n66016017013 +134680 n66016019023 +134737 n66017001007 +134742 n66017001003 +134745 n66017001003 +n66001009002 +n66017001003 +134756 n66017001024 +134780 n66017001003 +134787 n66001009002 +134793 n66017003013 +134796 n66017003013 +134806 n66017004003 +134811 n66017004003 +134818 n66017004003 +134825 n66017004018 +134854 n66001009002 +134871 n66001009002 +n66001009002 +134883 n66001009002 +134895 n66017007018 +134898 n66017007018 +134909 n66001009002 +134913 n66017008002 +134915 n66017008002 +n66017008002 +134923 n66017008002 +134944 n66017008022 +134948 n66017008041 +134951 n66017008041 +134953 n66017008041 +134958 n66017009003 +134975 n66017009009 +134988 n66017010008 +135000 n66017011003 +135009 n66017011003 +135013 n66017011003 +135019 n66001009002 +135033 n66017012008 +135049 n66017012008 +135061 n66017014008 +135077 n66017007005 +135082 n66001009002 +135100 n66001009002 +135109 n66017016004 n66017016009 +135111 n66017016013 +135118 n66017016004 n66017016009 +135121 n66017016004 n66017016009 +135132 n66017012008 +135137 n66017012008 +135141 n66017012008 +135157 n66001009002 +135164 n66017018008 +135173 n66001009002 +135180 n66018001005 +135192 n66018001005 +135196 n66018001005 +n66018002009 +135203 n66018002009 +135217 n66018002024 +135252 n66001009002 +135262 n66018004011 +135267 n66018004011 +135278 n66018004011 +135294 n66018004011 +135301 n66018004011 +135312 n66018002009 +n66018004011 +135317 n66018002009 +135320 n66018002009 +135325 n66018004011 +135332 n66018002009 +135334 n66018002009 +135339 n66018002009 +135344 n66018002009 +135362 n66018002009 +135369 n66018008021 +135384 n66018009008 +135386 n66018009008 +135388 n66018009008 +135396 n66018009008 +135403 n66018009008 +135538 n66018015002 +135550 n66018015002 +135552 n66018015002 +n66018015002 +135561 n66018016005 +135568 n66018016005 +135603 n66018017010 n66018017016 n66018017018 n66018017023 +n66018017010 n66018017016 n66018017018 n66018017023 +135610 n66018017010 n66018017016 n66018017018 n66018017023 +135618 n66018017010 n66018017016 n66018017018 n66018017023 +135625 n66018017010 n66018017016 n66018017018 n66018017023 +n66018017010 n66018017016 n66018017018 n66018017023 +135628 n66018017010 n66018017016 n66018017018 n66018017023 +n66018017010 n66018017016 n66018017018 n66018017023 +135654 n66018019017 +n66018020004 n66018020007 n66018020010 n66018020013 +135687 n66018021004 +135691 n66018021004 +135702 n66018021019 +135794 n66001009002 +135824 n66019001023 +135838 n66019001023 +135849 n66019001007 +135873 n66019004004 n66019004011 +135877 n66019004015 +135881 n66019004004 n66019004011 +135890 n66019005002 +n66019005014 n66019005017 +135908 n66001009002 +135933 n66019006005 +135935 n66019006005 +135937 n66019006005 +135957 n66019007017 +135970 n66019005002 +135972 n66001009002 +135984 n66019005002 +135994 n66001009002 +135999 n66001009002 +136002 n66019005002 +136004 n66001009002 +136006 n66019005002 +136014 n66019010019 +136020 n66001009002 +136031 n66001009002 +136051 n66019011012 +136053 n66019011012 +136067 n66019011012 +136069 n66019012015 +136077 n66019011012 +136079 n66019013003 +136102 n66019014003 +136117 n66019011012 +136143 n66019011012 +136153 n66019016011 +136160 n66001009002 +136168 n66019017004 +136172 n66019017004 +136177 n66019017017 +136180 n66019017017 +n66019017017 +136190 n66019017017 +136219 n66001009002 +136232 n66019019004 n66019019007 n66019019012 +136237 n66019011012 +136256 n66019020009 +136263 n66019020009 +136276 n66019020034 +136286 n66019020039 +136297 n66019019020 +136302 n66019021007 +136317 n66001009002 +136323 n66020001003 +136336 n66020001003 +136350 n66020001003 +136355 n66020001003 +136361 n66020001003 +136363 n66020001003 +136368 n66020002004 +136385 n66001009002 +136388 n66020004016 +136422 n66020004016 +136434 n66020004016 +136436 n66020004016 +136478 n66020006005 +136486 n66020006005 +136506 n66020007009 +n66020007009 +136521 n66020007009 +136536 n66020008005 +136543 n66020008005 +136552 n66020009016 +136560 n66020009021 +136566 n66020010003 +136584 n66020010003 n66020010018 n66020010021 +136594 n66001009002 +136619 n66001009002 +136716 n66020015003 +n66020015003 +136724 n66001009002 +136746 n66001009002 +136760 n66021002003 +136763 n66021002018 +136768 n66001009002 +136784 n66021003013 +136800 n66021003029 +136829 n66020011008 +136835 n66021005004 +136838 n66021005004 +n66001009002 +136849 n66021005004 +136880 n66021005004 +136914 n66021008025 +136932 n66021009007 +136937 n66021009012 +136944 n66021009003 +136947 n66021009003 +n66001009002 +n66021009003 +136958 n66021009003 +136968 n66021009003 +136982 n66021010015 +136996 n66021011013 +n66021010015 +137002 n66021010015 +137060 n66021009003 +137068 n66021015003 +137092 n66021015003 +137113 n66021015003 +137217 n66001009002 +137245 n66021023008 n66021023011 +137293 n66021024011 +137329 n66021015003 +137359 n66022002012 +137365 n66022002012 +137402 n66022003020 +137421 n66022003020 +137436 n66022003020 +137443 n66021015003 +137464 n66022006021 +137475 n66022003014 +137496 n66022008002 +137498 n66022008002 +n66022008002 +n66022008002 +137507 n66022008019 +137511 n66022008019 +137513 n66022008002 +137515 n66022008019 +137534 n66022008002 +137536 n66022008019 +137539 n66022008002 +137573 n66022003014 +137581 n66022003014 +137623 n66022014003 +137654 n66022016005 +137681 n66022016002 +137686 n66022016002 +137722 n66022018024 +137757 n66022019021 n66022019027 +137764 n66022016002 +137767 n66022020003 +137770 n66022020010 diff --git a/tf/0.1.1/tense.tf b/tf/0.1.1/tense.tf new file mode 100644 index 0000000..348f52d --- /dev/null +++ b/tf/0.1.1/tense.tf @@ -0,0 +1,28371 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Verbal tense +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +10 aorist +15 aorist +20 aorist +29 aorist +40 aorist +45 aorist +50 aorist +55 aorist +60 aorist +65 aorist +73 aorist +81 aorist +86 aorist +93 aorist +102 aorist +107 aorist +112 aorist +117 aorist +122 aorist +127 aorist +132 aorist +137 aorist +142 aorist +147 aorist +152 aorist +157 aorist +162 aorist +179 aorist +184 aorist +189 aorist +194 aorist +199 aorist +204 aorist +209 aorist +214 aorist +219 aorist +224 aorist +229 aorist +234 aorist +242 aorist +245 present +283 imperfect +aorist +293 aorist +295 aorist +298 present +308 present +311 present +313 aorist +aorist +316 aorist +321 aorist +aorist +327 aorist +329 present +334 aorist +aorist +344 aorist +348 present +350 future +353 future +360 future +371 perfect +373 aorist +375 aorist +381 present +aorist +387 future +389 future +392 future +398 present +present +407 aorist +411 aorist +413 aorist +419 aorist +425 imperfect +429 aorist +432 aorist +440 aorist +450 aorist +454 aorist +457 present +459 present +461 aorist +466 aorist +474 aorist +aorist +478 aorist +482 aorist +489 aorist +497 imperfect +503 present +506 aorist +514 perfect +525 present +533 future +present +536 future +545 aorist +548 aorist +554 present +557 aorist +561 aorist +aorist +aorist +570 aorist +aorist +575 aorist +aorist +580 aorist +583 aorist +585 aorist +589 aorist +593 imperfect +596 aorist +aorist +600 imperfect +604 aorist +607 aorist +612 aorist +616 aorist +625 aorist +aorist +629 aorist +633 aorist +642 aorist +646 aorist +652 aorist +658 aorist +660 aorist +663 present +668 present +aorist +aorist +678 present +682 present +686 aorist +689 present +691 present +695 aorist +699 aorist +aorist +709 aorist +713 imperfect +720 aorist +722 aorist +728 present +731 aorist +737 aorist +739 aorist +743 aorist +746 aorist +aorist +768 aorist +773 aorist +775 aorist +780 present +783 aorist +790 present +796 imperfect +aorist +800 present +802 aorist +805 aorist +808 present +815 present +aorist +aorist +825 present +830 perfect +832 present +839 aorist +aorist +848 aorist +853 aorist +856 present +864 aorist +866 aorist +868 aorist +871 aorist +878 aorist +aorist +882 present +885 aorist +887 aorist +893 future +899 present +903 present +909 present +present +912 perfect +919 present +921 aorist +926 present +928 present +932 aorist +937 present +945 imperfect +963 imperfect +969 imperfect +984 imperfect +991 present +996 aorist +1002 present +1006 aorist +1011 aorist +1013 aorist +1016 present +1019 aorist +1026 aorist +present +1031 present +1035 present +1038 present +1045 aorist +1058 present +1063 present +1066 present +1070 present +1074 present +1083 present +1086 present +1089 present +1093 aorist +1096 future +1110 future +1115 future +1125 future +1129 present +1142 aorist +1147 imperfect +1149 present +1152 present +1155 aorist +1158 present +1162 aorist +1165 aorist +1167 aorist +1171 present +present +1174 aorist +1178 present +1181 aorist +1185 aorist +1190 aorist +aorist +1195 aorist +1198 present +1201 present +1205 aorist +1210 present +1212 present +1220 aorist +1224 aorist +1231 aorist +1236 aorist +1243 aorist +1245 aorist +1247 present +aorist +1251 present +1255 aorist +1261 aorist +1264 aorist +aorist +perfect +1271 future +1278 present +1283 present +1292 aorist +1300 present +1303 present +1307 aorist +1311 perfect +1316 future +1322 future +1326 aorist +1332 imperfect +1337 perfect +1339 future +1345 present +1354 present +1366 aorist +1371 future +1373 aorist +aorist +1377 present +1381 present +1384 perfect +1389 future +1393 future +1395 present +1400 aorist +1402 aorist +1404 imperfect +1407 aorist +1410 aorist +aorist +1416 aorist +1419 aorist +aorist +1431 aorist +1433 aorist +1438 present +1455 present +1460 aorist +1463 present +1470 aorist +1474 aorist +1477 present +1479 present +present +1482 perfect +1488 present +1494 aorist +1499 present +1506 present +1512 imperfect +1515 present +1517 present +1521 future +1528 aorist +1531 aorist +1534 aorist +1536 aorist +1557 present +1562 aorist +1567 aorist +1574 aorist +1577 imperfect +1582 present +1588 present +1594 present +1604 aorist +1613 aorist +1618 present +1623 present +present +1626 present +1630 aorist +1633 aorist +1651 aorist +1654 aorist +1659 aorist +1661 aorist +1667 aorist +1671 imperfect +1673 present +1681 present +1688 present +1691 future +1697 future +1702 present +1704 present +1709 future +1715 future +1725 future +1733 future +1736 perfect +1741 present +1747 present +1749 aorist +1752 aorist +1754 aorist +1759 present +1762 present +1764 present +1775 aorist +1782 present +1791 aorist +1794 future +1797 present +1801 aorist +1803 present +1808 present +1814 present +1816 aorist +1819 present +1821 present +1824 present +1834 present +1841 aorist +1849 aorist +1855 aorist +1864 aorist +1866 aorist +aorist +1874 aorist +aorist +1877 aorist +1880 present +1884 aorist +1897 aorist +1904 aorist +1908 aorist +1916 aorist +1921 future +1930 aorist +1932 aorist +1935 future +1942 present +1947 aorist +1958 aorist +1964 aorist +1966 aorist +1970 future +1974 aorist +1976 future +1981 present +1986 present +1991 future +1997 aorist +2003 future +2009 aorist +2012 future +2020 present +2028 aorist +2033 present +2037 aorist +2046 present +2048 aorist +2054 aorist +present +2059 present +present +2067 present +2076 aorist +2089 future +2091 present +2095 aorist +2099 aorist +2103 aorist +2105 aorist +2107 future +2110 present +2115 present +2119 aorist +2122 aorist +2135 present +2137 aorist +2140 aorist +2144 present +2147 aorist +2158 aorist +2167 present +2169 aorist +2172 aorist +2176 present +2179 aorist +2192 aorist +2194 aorist +2197 aorist +2201 aorist +2206 present +2211 present +2218 present +2220 aorist +2224 perfect +aorist +present +2228 aorist +2230 aorist +2234 future +2236 future +2244 present +2247 aorist +2254 present +2263 present +2272 present +2282 aorist +2285 present +2288 aorist +2293 present +2308 present +aorist +2311 aorist +2321 present +2324 aorist +2330 present +2336 aorist +2343 present +2345 aorist +2350 aorist +aorist +2359 future +2362 present +2367 present +2369 aorist +2372 present +2375 aorist +2377 aorist +aorist +2380 aorist +future +2386 future +2392 present +2394 present +2399 present +2402 present +2405 aorist +2417 present +2423 present +2430 aorist +2432 present +2436 present +2443 present +2446 aorist +2453 present +2460 present +2462 future +2472 present +2474 present +2479 present +2485 aorist +2492 present +2503 present +2506 aorist +2512 present +2521 aorist +2526 present +2528 present +2534 present +2537 aorist +2542 present +2547 present +2559 present +2563 future +2567 present +2569 future +2574 present +2584 perfect +present +2587 aorist +2591 present +2593 present +2600 present +aorist +2607 aorist +2611 aorist +2624 present +2628 future +2631 present +2633 aorist +2638 present +2644 future +2647 aorist +2650 perfect +2656 present +2660 aorist +2664 present +2672 aorist +2676 aorist +2680 aorist +2695 aorist +2699 aorist +2707 aorist +2713 aorist +2718 aorist +2725 aorist +2731 future +2742 aorist +2749 future +2755 present +2757 present +2763 present +2768 aorist +2771 present +2773 present +2775 present +2781 present +aorist +2790 aorist +2793 aorist +2796 present +2810 present +2814 future +2817 present +2827 present +2831 present +2833 present +2835 present +2845 present +2850 present +2852 present +2855 present +2860 future +2869 present +2874 present +2884 future +2891 present +2897 future +2906 present +2911 present +2914 present +2919 future +2923 future +2926 future +2930 future +2932 present +2934 present +2939 present +2942 present +2947 aorist +2950 aorist +2956 aorist +2961 present +2969 aorist +2977 present +2979 present +2981 present +2990 present +2995 present +3001 present +present +aorist +3014 present +aorist +3021 present +3023 present +3025 present +3027 present +3037 aorist +3048 present +3053 present +3057 present +3065 aorist +present +3068 aorist +3071 aorist +3074 aorist +3080 present +3082 perfect +3089 present +3093 present +3104 future +3108 aorist +3115 future +3124 present +3127 aorist +3132 present +future +3138 present +future +3143 present +3161 present +3164 future +3168 aorist +aorist +3177 aorist +3185 aorist +3195 future +aorist +3206 aorist +3212 aorist +3221 future +3228 aorist +aorist +3231 present +3233 future +3235 present +3237 future +present +3240 future +3245 present +present +3249 present +present +3253 present +future +3256 present +3262 future +3269 future +3274 future +3277 future +3283 present +perfect +3287 present +3300 future +3303 present +3309 present +3311 present +3318 present +3322 present +3328 aorist +3342 present +3348 present +3350 present +3358 perfect +3362 present +3368 present +3370 present +3372 present +3377 present +3385 present +3392 future +3395 present +3409 present +3416 present +3418 present +3423 aorist +3429 aorist +3433 present +3436 present +3440 present +3446 future +3451 present +3455 future +3463 present +3474 future +3486 aorist +3492 aorist +3499 aorist +3502 future +3506 aorist +3508 present +3512 present +3518 present +3524 present +3526 future +3530 aorist +3538 aorist +3542 aorist +3546 aorist +3550 aorist +3556 aorist +3558 pluperfect +3565 present +3572 present +3574 future +3578 aorist +3586 aorist +3590 aorist +3594 aorist +3598 aorist +3603 aorist +3605 imperfect +3611 aorist +3613 aorist +3619 imperfect +3627 imperfect +present +3632 present +3640 aorist +3645 aorist +3650 aorist +3652 aorist +imperfect +3655 present +3658 present +present +3661 aorist +3663 aorist +3666 aorist +3668 present +present +aorist +3673 aorist +3678 present +3682 present +3684 aorist +3686 present +3688 aorist +3692 aorist +3696 aorist +3702 aorist +3706 aorist +3709 present +3712 present +3717 perfect +3723 present +present +3727 aorist +future +3731 aorist +3734 imperfect +3737 present +3744 aorist +3747 aorist +3750 future +3757 present +3761 present +3766 present +3768 aorist +3770 present +3773 present +3775 present +3780 aorist +3783 present +3785 aorist +3788 aorist +3790 aorist +3792 present +3794 present +3803 aorist +3805 present +3813 future +3815 future +3832 future +3839 future +3848 aorist +3853 present +3855 aorist +aorist +3859 aorist +3869 aorist +3874 aorist +3878 perfect +3880 present +3882 aorist +3887 aorist +3892 aorist +3894 imperfect +3898 aorist +aorist +3901 present +3904 aorist +3912 present +aorist +3915 aorist +3917 aorist +3922 present +3927 aorist +3931 aorist +3935 aorist +3939 aorist +aorist +3945 aorist +3948 aorist +3951 future +3955 present +3957 present +3964 present +3977 present +3981 present +3986 aorist +3989 aorist +3992 aorist +3994 aorist +4001 present +4003 present +4006 aorist +4009 aorist +4014 aorist +4019 aorist +4025 aorist +4028 aorist +4035 present +4041 imperfect +4043 aorist +aorist +4046 present +4048 aorist +present +4051 present +4055 present +4058 aorist +aorist +4066 aorist +4072 aorist +present +4075 present +4085 present +4087 aorist +4097 aorist +4100 present +4104 present +4109 present +4111 aorist +4117 aorist +aorist +present +4127 aorist +4131 aorist +4134 imperfect +4141 present +4145 imperfect +4147 present +4149 present +4151 aorist +4159 aorist +4161 present +4164 aorist +aorist +4170 aorist +aorist +4182 aorist +4188 present +aorist +4191 aorist +4195 aorist +4200 present +4202 aorist +4206 aorist +4212 aorist +4214 aorist +4216 aorist +4222 aorist +4225 aorist +4227 aorist +4233 aorist +imperfect +4239 perfect +4243 aorist +4247 aorist +4250 present +4252 present +4257 aorist +4261 aorist +4265 present +4269 perfect +4273 aorist +4276 present +4284 present +4286 aorist +present +4292 aorist +present +4295 present +4298 perfect +4301 present +4309 present +4312 present +4315 present +aorist +4321 present +4327 aorist +aorist +4334 aorist +4337 aorist +4339 aorist +4343 aorist +4349 present +4353 aorist +4355 present +4360 present +4362 present +4364 present +4367 aorist +aorist +4371 aorist +4373 present +4378 aorist +4383 aorist +imperfect +4392 aorist +4395 imperfect +4406 present +4412 aorist +aorist +4417 present +4419 present +4423 present +4425 aorist +aorist +4428 present +4430 present +4436 aorist +aorist +4442 present +4447 present +4454 present +4460 present +4462 aorist +4467 present +4472 present +4477 present +4481 future +4484 aorist +4491 future +4494 present +4502 present +4512 present +4514 present +4523 present +4529 present +4533 present +4535 present +4543 present +4546 present +4548 aorist +4551 aorist +imperfect +4554 present +4560 aorist +4562 aorist +aorist +4570 future +4572 aorist +4575 imperfect +4582 aorist +4584 present +4587 aorist +4589 aorist +4596 imperfect +4601 aorist +4605 future +4609 aorist +4611 aorist +4613 aorist +present +4619 perfect +4622 aorist +4632 aorist +4639 aorist +4645 present +imperfect +present +4650 aorist +4654 present +4656 imperfect +4660 aorist +4663 aorist +aorist +4669 aorist +4673 aorist +4683 present +4687 aorist +4690 present +4692 present +aorist +4698 aorist +4702 aorist +4707 present +4711 present +4713 present +4715 aorist +present +4721 aorist +4725 present +4730 aorist +4733 aorist +4738 aorist +4742 present +present +4745 present +4748 aorist +aorist +4758 present +aorist +aorist +4763 present +4765 aorist +4768 aorist +4772 aorist +4775 present +4777 aorist +4785 imperfect +4791 present +4795 imperfect +4804 present +4810 present +4816 present +4823 aorist +4826 aorist +4830 imperfect +perfect +4833 perfect +4837 present +4840 present +4853 aorist +4859 aorist +4866 aorist +4871 aorist +4877 present +4880 present +4892 present +4897 present +4937 aorist +4942 aorist +4945 aorist +4947 present +4952 aorist +4958 aorist +4960 present +4966 perfect +4970 present +present +present +4974 perfect +4979 present +present +4982 present +4984 present +4986 present +4988 aorist +4990 aorist +4992 aorist +5027 aorist +aorist +5033 present +5035 aorist +5038 aorist +5040 present +5044 aorist +5049 present +5053 aorist +5062 present +5069 aorist +5074 aorist +5077 aorist +5081 present +5089 aorist +5096 present +5099 future +5111 aorist +5113 present +5121 present +5132 present +5137 future +5146 future +5154 future +5165 aorist +5168 aorist +5172 aorist +5174 future +5181 aorist +5185 present +5187 present +5195 present +5199 future +5208 future +5213 future +5216 future +present +5226 aorist +5230 future +5233 present +5239 present +5245 present +5249 aorist +5255 aorist +5261 present +5276 aorist +5292 aorist +5300 aorist +5304 present +perfect +5308 future +5313 future +5315 present +5320 aorist +5329 present +aorist +5336 present +5339 present +5344 present +5347 aorist +5349 present +5352 present +5357 aorist +5364 present +5370 future +5386 perfect +present +5390 present +5393 present +5398 future +5404 future +5419 aorist +5424 future +5436 aorist +5438 aorist +aorist +5445 aorist +aorist +5451 aorist +aorist +5478 present +5485 present +5490 present +5497 present +5503 present +5508 present +5512 present +5516 aorist +5520 future +5524 aorist +5530 future +5533 present +5536 present +5540 present +present +5543 aorist +5546 present +5553 future +5556 present +5563 future +5567 aorist +5579 present +5583 aorist +5588 aorist +5590 aorist +5593 present +5598 aorist +5601 present +5603 present +5611 aorist +5619 aorist +5624 aorist +5627 present +5629 present +5632 present +5634 aorist +5637 aorist +5639 aorist +aorist +5643 present +5645 present +5647 present +5650 present +5652 present +5655 present +5658 present +5661 present +5664 present +5668 aorist +5673 present +aorist +5677 present +5683 aorist +aorist +5691 present +5694 aorist +aorist +5699 perfect +aorist +5704 present +5712 aorist +5714 aorist +5716 present +5722 present +5725 perfect +aorist +5728 present +5736 future +5743 present +5746 perfect +5764 present +5778 present +5781 present +5792 aorist +5795 present +aorist +5798 present +5801 present +present +5804 present +5806 present +5809 future +5814 present +5816 present +5821 present +5824 present +aorist +5829 aorist +aorist +5833 aorist +5835 aorist +5838 present +5840 present +5842 present +5844 present +aorist +5850 present +5852 present +5854 present +aorist +5865 aorist +5873 aorist +present +5879 aorist +5886 aorist +5899 aorist +5903 aorist +5912 aorist +5914 present +5920 future +5932 future +5935 future +5940 aorist +5944 aorist +5948 aorist +5953 present +5959 future +5969 aorist +5972 aorist +present +5983 aorist +5990 aorist +5999 aorist +6004 aorist +6011 present +6022 present +6030 aorist +present +6034 present +6039 present +6041 perfect +6043 future +6045 aorist +6052 aorist +6056 present +6063 future +6078 present +6083 aorist +6095 aorist +6097 aorist +present +6101 present +6105 aorist +aorist +6108 aorist +6112 present +6114 present +6116 present +6121 aorist +6124 aorist +6126 aorist +6129 aorist +6135 aorist +6146 aorist +6148 aorist +6150 present +imperfect +6164 aorist +6178 present +6181 present +6183 present +6189 present +6193 pluperfect +6195 present +6197 present +6203 aorist +6207 present +6216 aorist +6218 aorist +6224 aorist +6227 present +6230 aorist +6232 present +6234 present +6237 aorist +6239 aorist +6243 aorist +6246 future +6251 future +6256 aorist +6263 future +6266 future +6269 present +6273 present +6277 present +6279 present +6282 aorist +6287 aorist +6289 aorist +6295 aorist +6299 aorist +6304 aorist +6308 aorist +aorist +6312 aorist +6316 aorist +6320 aorist +6326 aorist +6328 aorist +6330 aorist +6335 present +aorist +6341 aorist +6346 aorist +6350 future +6360 future +6362 future +6364 future +6366 future +6375 perfect +6377 future +6380 present +6382 future +6385 aorist +6395 future +6397 aorist +6399 present +6404 aorist +6409 present +6411 present +6413 imperfect +6418 imperfect +6421 present +6428 aorist +aorist +6432 present +6444 perfect +6448 aorist +6452 aorist +6455 present +6461 aorist +6465 future +6472 present +6475 aorist +6478 future +6487 present +6495 present +6501 future +6508 present +6512 aorist +6521 present +6523 aorist +6533 aorist +6537 aorist +6545 future +6548 present +6553 present +6557 present +6560 present +6563 present +6569 future +6578 future +6582 aorist +6589 future +6594 aorist +6601 future +6611 present +6613 aorist +6623 aorist +6638 present +6642 present +6644 present +6646 present +6655 present +6663 present +6673 present +6676 present +6683 future +6686 future +6698 future +6704 future +6706 aorist +6713 present +6715 present +6719 aorist +6722 aorist +aorist +6730 present +6734 future +6745 imperfect +6758 future +6775 future +6784 future +6787 aorist +6793 aorist +6799 future +6808 future +6811 aorist +6817 aorist +6822 aorist +6831 aorist +6835 present +6839 present +6843 present +6845 present +6850 future +6852 aorist +6854 aorist +present +present +6858 perfect +6860 perfect +6862 present +6864 present +6873 aorist +present +6877 present +6887 future +6896 present +6899 aorist +6906 pluperfect +6908 present +6910 aorist +6912 aorist +6915 aorist +6924 perfect +present +6927 aorist +6930 aorist +aorist +6933 present +6936 present +6942 present +6947 aorist +6955 aorist +aorist +6967 aorist +6983 present +6990 aorist +6993 imperfect +6998 aorist +7007 aorist +present +7016 pluperfect +7018 aorist +7023 present +aorist +aorist +7027 present +7029 present +7033 present +7037 aorist +7042 aorist +7045 aorist +7049 aorist +7055 imperfect +7060 aorist +7064 present +7069 aorist +aorist +7075 present +7077 aorist +7080 aorist +7085 aorist +7089 aorist +7093 aorist +7100 imperfect +7112 present +7114 present +7116 aorist +7119 aorist +7125 present +7129 aorist +aorist +7133 perfect +aorist +7144 perfect +7147 present +future +7151 future +7155 present +7158 present +future +7167 present +7169 present +7171 present +7173 present +7175 present +7177 present +7179 present +7185 present +7187 future +7191 aorist +7193 present +future +7198 aorist +7200 aorist +7210 aorist +7215 aorist +7218 aorist +7224 aorist +7228 aorist +7230 aorist +7232 future +7240 present +7246 present +7249 present +7256 aorist +aorist +7259 present +7262 aorist +7264 aorist +7266 present +7269 aorist +7272 aorist +7276 aorist +7278 present +7285 present +present +7290 present +7292 perfect +7298 present +7303 aorist +7309 aorist +7311 present +7315 present +7320 present +7324 present +7330 present +7332 aorist +7340 present +7346 aorist +7348 present +7352 present +7363 present +7368 present +7375 aorist +7377 present +7381 present +7383 present +7386 present +7389 present +7400 aorist +7402 present +aorist +7409 aorist +7419 present +7422 aorist +7427 aorist +7434 aorist +7437 aorist +7442 aorist +7444 aorist +7449 aorist +7454 aorist +7460 aorist +7467 present +7471 imperfect +7476 aorist +7481 present +7483 present +aorist +aorist +7489 present +7493 present +7496 aorist +7501 aorist +present +7512 future +7515 aorist +7520 aorist +7526 aorist +7531 aorist +7538 aorist +7540 present +7542 present +7550 aorist +7552 aorist +7560 present +7566 aorist +7570 present +7572 present +7575 aorist +7581 present +7588 aorist +7591 present +7598 aorist +7600 aorist +7607 aorist +7611 aorist +7622 imperfect +7625 aorist +7627 aorist +7631 present +future +7638 future +perfect +7643 aorist +7646 aorist +7651 aorist +7656 present +aorist +7667 aorist +aorist +7670 present +7674 present +7682 present +7690 present +7698 present +7707 aorist +7709 present +7717 present +7722 present +7725 present +7730 present +7732 future +7738 future +7747 future +7757 present +7761 future +7769 future +7780 future +7791 present +7793 present +7795 present +7801 perfect +7806 aorist +7808 aorist +7814 present +7816 present +7818 present +7820 present +7826 present +7832 present +7836 aorist +7840 aorist +perfect +7844 imperfect +7846 aorist +7850 present +7856 aorist +7864 aorist +7867 aorist +aorist +7873 aorist +aorist +7883 aorist +7885 future +7891 future +7895 future +7903 future +7911 future +7919 aorist +7922 present +7927 aorist +7933 aorist +7939 present +7943 present +7952 aorist +7954 aorist +7960 aorist +7963 aorist +7968 imperfect +7975 present +7978 present +7989 present +7998 present +8019 present +8026 imperfect +8032 aorist +8035 present +8050 aorist +8062 aorist +8070 aorist +8075 present +8080 aorist +8089 present +8095 aorist +8098 aorist +8102 aorist +8112 imperfect +8117 present +8119 present +8122 present +8124 aorist +aorist +8132 imperfect +8137 aorist +aorist +8147 aorist +8153 aorist +8155 aorist +8158 aorist +8161 aorist +8166 present +aorist +8178 aorist +8186 present +aorist +aorist +8190 aorist +aorist +8197 aorist +8204 aorist +8208 aorist +8213 aorist +8217 aorist +8221 aorist +8224 aorist +aorist +8229 aorist +8232 aorist +8242 aorist +8245 aorist +8252 aorist +aorist +8257 aorist +8261 aorist +8267 aorist +aorist +8272 present +8274 present +8281 aorist +8283 aorist +8287 aorist +8291 aorist +8297 aorist +8301 present +aorist +aorist +8306 aorist +8309 present +8312 present +8323 aorist +present +8329 aorist +8332 aorist +8336 aorist +8344 aorist +8348 aorist +8350 aorist +aorist +8362 aorist +8365 aorist +8367 aorist +8369 present +8377 present +imperfect +8388 aorist +8391 aorist +8396 present +8403 aorist +8407 aorist +8410 aorist +8416 aorist +8419 aorist +8421 imperfect +8432 imperfect +present +8438 imperfect +8447 aorist +8450 present +8457 aorist +8462 present +aorist +present +8467 present +8472 aorist +8475 aorist +8479 present +present +8482 present +8484 present +8486 aorist +8490 aorist +8494 present +aorist +8497 aorist +8505 aorist +aorist +8508 aorist +8513 aorist +8518 aorist +8523 present +8526 aorist +8528 aorist +present +aorist +present +8533 aorist +8539 aorist +8542 aorist +8545 present +8550 aorist +8552 aorist +8557 aorist +8565 aorist +8567 present +8571 present +8573 aorist +aorist +8581 aorist +8588 aorist +8595 aorist +8600 present +8602 imperfect +8606 aorist +8614 aorist +aorist +8617 present +8625 present +8631 present +8638 present +8643 present +8646 aorist +aorist +8653 present +8665 aorist +present +8674 present +8679 present +8682 present +8685 aorist +8696 aorist +8699 future +8708 aorist +8719 aorist +8723 present +8730 present +8736 present +8741 present +8743 present +8748 aorist +8751 aorist +8753 present +8755 present +8758 present +8762 present +8767 present +8772 present +8776 aorist +8779 present +8781 perfect +8785 aorist +8788 aorist +8791 aorist +aorist +8797 aorist +8803 future +aorist +8806 present +8814 present +8818 future +8820 aorist +8823 aorist +8825 aorist +8831 aorist +8836 present +8838 present +8842 present +8849 present +8853 present +8856 present +8863 present +8865 present +8872 present +8882 present +8884 present +8891 aorist +8893 present +8897 aorist +8901 aorist +8909 aorist +8916 aorist +imperfect +present +aorist +8928 present +8932 aorist +8936 aorist +8940 imperfect +8942 present +aorist +8946 present +8951 aorist +aorist +8954 aorist +8961 perfect +8966 aorist +imperfect +8969 present +8971 present +8975 aorist +aorist +8978 present +8980 aorist +8986 aorist +8991 aorist +8998 present +9003 present +9011 aorist +9014 aorist +9022 aorist +9025 present +9027 aorist +9036 aorist +9040 aorist +9047 aorist +9051 imperfect +9054 aorist +9058 present +9069 aorist +9076 aorist +9081 aorist +present +9084 present +9089 present +9092 present +9094 aorist +9101 aorist +9105 aorist +present +9114 present +9118 present +9120 aorist +9122 aorist +9126 present +9129 aorist +9134 present +9145 aorist +9149 present +9155 present +9158 aorist +9164 aorist +9167 aorist +9171 aorist +9179 aorist +aorist +9182 imperfect +9191 aorist +9194 aorist +9197 present +9203 aorist +9206 present +imperfect +9215 aorist +9218 aorist +9223 aorist +9229 aorist +9234 present +aorist +9241 aorist +9245 aorist +aorist +9249 aorist +present +9253 present +9261 present +present +9270 present +present +9278 present +9284 present +9288 future +9296 aorist +9298 aorist +9302 aorist +9306 aorist +9308 aorist +9312 aorist +9314 present +9316 present +9326 imperfect +9329 present +9333 aorist +9335 aorist +9338 aorist +9340 present +9347 present +9349 present +9351 present +9360 aorist +9370 aorist +9373 present +9378 aorist +9381 present +9390 aorist +9393 aorist +present +9411 aorist +9418 imperfect +9422 present +present +9427 present +9434 aorist +9450 present +9456 present +present +9459 aorist +9462 aorist +9464 present +9472 present +9474 aorist +9477 aorist +9480 present +9488 aorist +9501 present +9504 present +9511 future +9519 future +9521 future +9532 aorist +9536 future +perfect +9544 aorist +9548 future +perfect +9554 aorist +9559 aorist +9562 present +9567 aorist +9570 present +9575 present +9579 aorist +9582 aorist +9591 aorist +9596 aorist +9598 aorist +9602 aorist +present +9605 present +9611 future +9616 aorist +aorist +9620 present +9626 present +9629 present +9640 aorist +9646 present +9649 aorist +aorist +9653 aorist +9658 present +9663 present +9667 aorist +future +9673 aorist +9679 future +9683 future +9689 aorist +9694 aorist +9697 future +9704 present +9709 present +9722 future +9729 present +9732 present +9736 perfect +9740 aorist +9744 aorist +9749 present +9758 present +9771 present +9779 aorist +9783 aorist +9794 aorist +9800 aorist +aorist +9806 present +9810 aorist +9813 aorist +9818 present +9821 present +9823 present +future +9838 present +aorist +9842 aorist +9845 aorist +9850 present +9852 present +9860 aorist +present +9864 aorist +9867 aorist +9872 aorist +9875 aorist +9879 aorist +9881 aorist +aorist +9885 present +9887 aorist +9892 aorist +9899 present +9904 aorist +9908 present +9910 aorist +9921 aorist +9923 aorist +9927 present +9932 present +9934 present +9936 aorist +9940 aorist +aorist +9944 present +9946 future +9949 present +9954 aorist +9957 aorist +9960 aorist +9964 aorist +9971 present +present +9976 aorist +9984 aorist +9987 aorist +9991 aorist +9994 present +9997 present +9999 aorist +10004 present +10007 present +10010 present +10020 aorist +10027 aorist +10029 aorist +10031 aorist +10034 aorist +10039 perfect +10044 future +10047 future +10049 present +10054 aorist +10059 aorist +10065 aorist +10075 aorist +10080 aorist +10085 aorist +aorist +10090 present +10098 present +10101 present +10106 future +10110 aorist +10114 future +10117 future +10120 present +10125 aorist +10129 present +10134 present +10139 future +10145 future +10147 aorist +10150 aorist +10154 aorist +10158 present +10162 aorist +10167 present +10169 present +10172 aorist +10176 aorist +10180 present +10183 present +10191 present +10204 aorist +10208 imperfect +10214 present +10220 aorist +10222 aorist +10225 aorist +10229 aorist +10232 aorist +10234 aorist +10238 future +10241 aorist +aorist +10252 aorist +10257 present +10261 present +10268 aorist +10270 aorist +10276 aorist +10278 present +10282 aorist +10284 aorist +10290 aorist +10298 future +10305 present +10316 aorist +10325 present +10329 aorist +10335 present +10338 present +10341 aorist +10349 aorist +10363 aorist +10374 present +10384 present +10386 aorist +10389 aorist +10394 present +aorist +10408 present +aorist +10420 present +10422 aorist +10425 aorist +10430 present +10435 aorist +10439 present +aorist +10446 present +10448 aorist +10454 present +10464 present +10475 present +10477 aorist +10483 aorist +10488 future +10496 aorist +present +10499 present +10502 aorist +aorist +10506 present +10509 present +10520 perfect +10523 present +10533 aorist +10540 aorist +10544 present +aorist +10554 aorist +aorist +10562 aorist +aorist +10577 aorist +10582 aorist +10584 aorist +10592 aorist +present +10602 present +10606 aorist +10610 future +perfect +10617 aorist +10621 future +perfect +10627 present +10634 aorist +10643 aorist +future +10655 present +perfect +10665 present +10670 aorist +10673 aorist +10677 future +10684 future +10688 present +10693 present +10703 aorist +10711 aorist +aorist +10719 aorist +10721 present +aorist +10730 present +10732 aorist +aorist +10736 aorist +10747 present +10749 aorist +10751 aorist +10754 imperfect +10756 present +aorist +10762 future +10765 aorist +10771 aorist +10776 aorist +10779 aorist +10783 aorist +10789 imperfect +10794 aorist +10796 imperfect +present +aorist +10801 present +10803 aorist +10807 imperfect +10809 present +aorist +10814 future +10819 imperfect +10821 aorist +aorist +10827 aorist +10829 present +10834 aorist +10836 aorist +aorist +10840 aorist +aorist +10847 aorist +10849 aorist +10854 present +10862 aorist +10865 aorist +10868 imperfect +10871 aorist +10878 aorist +10880 aorist +10884 aorist +10890 aorist +10893 present +10902 future +10906 aorist +10916 aorist +10918 aorist +10924 aorist +10929 aorist +10939 aorist +10944 aorist +10948 aorist +10951 present +10954 present +10956 present +aorist +10966 aorist +aorist +10969 aorist +10972 aorist +10978 aorist +10981 aorist +10984 future +10992 future +10997 future +11005 present +11014 aorist +11017 present +present +11023 aorist +aorist +11028 aorist +present +11037 aorist +11039 aorist +11047 perfect +11050 present +11055 aorist +11063 aorist +11065 present +present +11072 present +11081 present +aorist +11085 aorist +11089 present +11095 perfect +11097 present +11103 aorist +11106 present +11109 aorist +11114 present +11117 aorist +11125 present +present +present +11129 aorist +11135 aorist +11138 aorist +11142 aorist +11147 aorist +aorist +11153 present +11155 aorist +11161 present +11167 aorist +11171 aorist +11174 aorist +11176 aorist +11178 aorist +11182 aorist +11184 aorist +11189 aorist +11193 present +11198 present +11203 present +11207 aorist +present +11211 present +11217 imperfect +11220 future +11222 future +11224 future +11226 future +present +11234 future +11240 present +11246 aorist +11249 present +imperfect +11255 present +11257 present +present +aorist +11262 present +11264 aorist +11267 future +11272 present +present +11278 aorist +11281 aorist +present +11284 imperfect +present +11291 aorist +11296 present +11301 future +11309 present +11312 present +11317 aorist +11326 aorist +11329 imperfect +11331 present +11334 present +aorist +11337 aorist +11340 aorist +11346 present +11353 aorist +11356 aorist +11358 aorist +11360 aorist +11363 aorist +11367 future +11372 aorist +11375 present +11380 aorist +11386 aorist +11395 future +11401 present +11410 aorist +11429 future +11433 future +11437 future +11444 present +11452 aorist +11455 aorist +11462 aorist +11470 aorist +11477 aorist +11481 aorist +11483 perfect +11490 aorist +present +11500 present +11502 future +11506 aorist +11509 aorist +11515 aorist +11521 aorist +aorist +11524 perfect +11526 present +11530 perfect +11535 present +11540 aorist +present +11543 present +11551 aorist +present +11560 aorist +11564 aorist +11567 aorist +11575 aorist +11581 aorist +11585 aorist +11588 aorist +11591 future +11593 aorist +11600 aorist +imperfect +11605 present +11611 aorist +11615 aorist +11618 aorist +11628 aorist +11631 aorist +11634 present +11638 aorist +11640 aorist +11644 present +11646 present +11650 aorist +11655 present +11658 present +aorist +11668 present +11672 present +11674 future +11684 present +present +11688 aorist +11697 aorist +11699 aorist +present +11708 future +11714 future +11719 future +11725 aorist +11727 aorist +11729 aorist +11734 future +11736 aorist +11747 present +11749 present +11755 aorist +11758 present +present +11761 aorist +11763 aorist +11782 aorist +11785 aorist +11787 perfect +11789 present +present +aorist +11795 present +11797 present +present +11800 present +present +11807 future +11810 aorist +11818 present +11821 aorist +11824 perfect +11830 aorist +11833 aorist +11841 aorist +11843 aorist +perfect +11850 present +11855 present +11859 present +11865 present +11869 aorist +future +11876 present +11879 present +11881 future +11890 aorist +aorist +11893 aorist +11895 aorist +11903 present +11907 aorist +11912 aorist +11915 present +11919 aorist +11922 present +aorist +present +aorist +11933 aorist +11936 aorist +11940 aorist +present +aorist +11948 aorist +11951 aorist +11954 aorist +present +11957 aorist +11959 present +11963 aorist +11968 aorist +11971 aorist +11977 aorist +11979 aorist +11983 aorist +11987 aorist +11997 aorist +12000 present +12002 present +12011 future +12013 perfect +12018 aorist +aorist +12025 aorist +12027 future +12033 present +12036 future +12040 perfect +12042 aorist +12044 aorist +12048 present +aorist +12053 aorist +12057 present +12061 perfect +12072 aorist +12074 aorist +12076 aorist +12080 aorist +12087 aorist +12093 aorist +12100 aorist +12109 imperfect +12115 imperfect +12123 present +12127 present +imperfect +present +12134 perfect +12136 present +12145 aorist +12149 aorist +12153 present +12155 present +12160 imperfect +12162 present +12172 aorist +12178 aorist +12181 present +12183 present +12188 aorist +12197 present +12201 present +12203 perfect +12209 future +12213 present +12217 aorist +12226 aorist +12234 aorist +12238 aorist +12243 present +12248 present +12253 aorist +12255 aorist +12257 present +12260 present +12264 present +12268 aorist +12274 present +aorist +12278 aorist +12280 aorist +12287 aorist +12291 aorist +12295 aorist +12297 aorist +12303 aorist +12308 aorist +12316 present +12323 aorist +12328 aorist +12333 aorist +12336 aorist +present +12340 aorist +12344 aorist +12347 aorist +12350 present +12353 present +12357 aorist +12363 future +12369 aorist +aorist +12372 aorist +12376 future +12381 aorist +12385 present +future +12388 aorist +12393 aorist +12395 present +12403 present +12408 present +12412 aorist +12417 aorist +12420 aorist +12422 future +12429 aorist +12433 future +12438 present +12444 imperfect +12452 imperfect +12455 present +12457 aorist +12460 future +12466 aorist +12470 aorist +12473 present +12480 present +12484 aorist +12487 aorist +12489 perfect +imperfect +12496 present +12502 present +12506 present +12508 imperfect +12511 aorist +12514 aorist +12516 present +12518 present +12524 aorist +aorist +12530 aorist +12532 aorist +12535 aorist +12539 aorist +aorist +12542 present +12544 aorist +aorist +12550 aorist +12555 present +12558 present +12563 present +12571 present +12579 aorist +12588 aorist +12596 aorist +12600 aorist +12602 aorist +12605 aorist +12609 aorist +12611 imperfect +12614 aorist +12619 aorist +12621 aorist +12626 aorist +12629 aorist +12633 aorist +12636 aorist +12641 aorist +12648 aorist +12653 aorist +12661 aorist +12664 aorist +12667 aorist +12669 aorist +12676 aorist +12681 aorist +12687 present +future +12695 aorist +12698 aorist +12702 present +12705 present +present +12709 aorist +12714 aorist +12716 aorist +12721 aorist +12724 aorist +12730 future +12734 present +12738 future +12743 future +12747 future +12755 present +12760 aorist +12766 aorist +12768 present +12770 aorist +12776 aorist +12779 present +12786 present +12789 future +12797 future +12799 present +12805 aorist +12810 future +12815 aorist +future +12824 aorist +12828 aorist +12832 present +12834 present +12836 aorist +aorist +12844 imperfect +12846 aorist +12850 aorist +12854 present +aorist +12863 aorist +12869 aorist +12873 aorist +12875 perfect +12881 imperfect +aorist +12884 aorist +12887 present +aorist +12890 perfect +aorist +12895 perfect +12902 perfect +12906 present +12912 aorist +aorist +12929 aorist +12933 aorist +12935 aorist +12939 aorist +12941 aorist +12945 aorist +12953 aorist +12955 present +12963 present +12966 perfect +12968 imperfect +12971 present +12980 aorist +aorist +12989 aorist +12993 aorist +12996 aorist +13002 aorist +13005 present +13009 aorist +aorist +13012 present +aorist +13017 perfect +13021 present +13025 aorist +13028 present +13033 aorist +13037 aorist +13040 aorist +13045 aorist +13053 future +13063 present +13069 aorist +13073 aorist +13076 aorist +13080 present +13088 present +13090 perfect +13093 present +13101 present +13104 present +13110 present +13115 aorist +13119 present +present +aorist +13129 aorist +13133 aorist +13136 present +13138 aorist +13146 aorist +13150 present +13159 present +13162 present +13165 aorist +13176 aorist +aorist +13179 aorist +13181 aorist +13186 aorist +13189 present +13191 present +13194 aorist +13196 present +13199 aorist +13202 aorist +13204 present +13206 future +13214 future +13220 imperfect +13228 aorist +aorist +13232 present +13234 aorist +13254 aorist +13265 future +13268 aorist +13271 aorist +13274 aorist +13276 present +13278 perfect +13291 present +13293 present +13300 present +13308 aorist +13310 aorist +13315 present +13317 present +13330 present +13335 present +13337 aorist +13340 imperfect +13348 aorist +13350 aorist +13353 aorist +13358 aorist +13363 present +13374 imperfect +13376 future +13399 present +13408 future +13422 present +13427 perfect +13430 aorist +13434 present +13437 present +13443 present +present +13448 present +13455 present +13458 present +aorist +13464 present +13470 aorist +13481 present +13487 present +13490 imperfect +aorist +13495 aorist +13501 aorist +13507 aorist +13514 present +13519 aorist +13529 aorist +13531 aorist +13533 present +13540 present +13542 present +13545 present +13547 present +13551 present +13563 present +aorist +13571 present +13574 aorist +13578 present +13583 present +13587 present +13606 present +13614 aorist +13618 present +13626 present +13631 aorist +13637 present +13644 aorist +13649 present +13657 future +13662 future +13664 future +13667 future +13669 future +13678 present +13689 present +13692 present +aorist +present +13702 present +13708 aorist +13713 aorist +present +13725 present +13728 aorist +13733 present +13737 aorist +13743 present +13750 present +13757 aorist +13763 aorist +13768 present +13772 aorist +13779 present +13790 present +13795 aorist +13799 present +13810 aorist +13814 present +13820 present +13824 aorist +13828 present +13837 present +13847 present +13857 aorist +13871 imperfect +13873 aorist +13876 aorist +13880 present +13886 present +13894 present +13904 present +13911 aorist +13918 aorist +13931 present +13933 perfect +13937 present +13941 present +13952 present +13958 present +13970 present +13976 present +13982 present +13984 imperfect +13993 imperfect +14002 present +14005 present +14008 aorist +14013 aorist +14023 aorist +14029 aorist +14033 present +14043 future +14045 future +14049 future +14055 future +14061 aorist +14067 present +14084 aorist +14092 present +14094 future +14104 present +14108 present +14110 perfect +14114 aorist +aorist +14122 present +14131 aorist +aorist +present +14139 present +14144 aorist +14149 aorist +perfect +14152 present +14159 aorist +14163 imperfect +14165 aorist +14169 aorist +14177 aorist +aorist +14181 present +14185 present +14189 aorist +14196 future +14198 present +14205 aorist +14211 present +aorist +14216 future +14229 aorist +14232 aorist +14234 present +14238 aorist +14241 future +14246 present +14248 present +14253 future +14255 future +present +14261 present +14263 present +14265 present +aorist +14269 present +14273 future +14282 future +14294 future +14299 future +14302 future +present +14314 future +14318 future +14320 future +14325 future +14327 future +14332 aorist +14335 future +14342 aorist +14346 future +14348 future +14365 future +14370 aorist +14376 aorist +14381 perfect +14386 present +present +14393 present +14402 aorist +aorist +14415 aorist +14417 aorist +14426 present +14429 present +14435 present +14438 aorist +14446 future +14452 perfect +14462 aorist +14466 aorist +14472 aorist +14479 future +14487 aorist +aorist +14495 aorist +14497 future +14502 future +14508 aorist +14514 aorist +perfect +14519 aorist +14521 aorist +14525 present +14527 aorist +aorist +14533 aorist +14538 present +14542 present +14546 future +14555 present +14559 future +14572 future +14577 future +14584 future +14593 future +14596 future +14607 future +14614 future +14619 present +14631 future +14639 future +14657 aorist +14665 aorist +14670 present +present +14680 aorist +14683 present +14686 present +14690 present +14695 aorist +14703 aorist +14709 future +14716 aorist +14725 perfect +14746 future +14763 imperfect +present +14766 present +present +14769 present +14773 aorist +14780 aorist +14782 aorist +14786 aorist +14789 future +14798 future +14804 present +14807 present +14809 present +14814 present +14817 present +14819 present +14822 perfect +14828 present +14831 present +14834 pluperfect +14841 present +14843 aorist +14847 aorist +aorist +14856 present +14861 present +14867 present +14870 present +14877 aorist +14885 aorist +14897 present +aorist +14902 future +14904 present +14910 present +14912 future +14916 aorist +14925 present +14930 aorist +present +14936 present +14938 present +14941 present +future +14952 present +14958 present +14960 future +14969 future +14971 future +14980 future +14988 aorist +14992 aorist +15001 imperfect +15009 aorist +15013 aorist +15020 aorist +15030 present +15033 aorist +15036 imperfect +15041 perfect +aorist +15045 present +15049 aorist +15055 aorist +15064 aorist +aorist +15075 present +15077 aorist +15080 present +15085 aorist +15089 present +15093 present +15095 aorist +15098 present +15100 aorist +aorist +15107 aorist +15114 aorist +15119 present +15124 present +15127 aorist +15131 aorist +aorist +15134 present +15137 perfect +15140 present +15143 perfect +15152 present +aorist +15158 aorist +15161 present +15166 aorist +15181 aorist +15183 aorist +15188 aorist +aorist +15193 aorist +15200 aorist +15207 aorist +aorist +aorist +15212 aorist +15222 present +15229 present +15234 aorist +15239 aorist +aorist +15244 present +15249 aorist +aorist +15254 aorist +imperfect +15267 imperfect +15272 future +aorist +15280 aorist +15286 aorist +15291 aorist +aorist +15296 aorist +imperfect +15309 imperfect +15314 future +aorist +15323 aorist +15329 perfect +aorist +15332 aorist +15335 present +15338 present +15341 aorist +15343 present +15346 aorist +15348 aorist +aorist +aorist +15357 aorist +present +15362 aorist +15366 aorist +15372 pluperfect +15374 present +15377 aorist +15379 present +15382 aorist +15384 imperfect +15386 aorist +15394 aorist +15396 aorist +15402 aorist +15408 aorist +15410 present +15416 present +15418 future +15420 future +15424 present +15427 present +future +15435 aorist +15442 future +15452 aorist +15468 future +15474 future +15481 future +15488 present +15496 future +15508 future +15515 present +15517 perfect +15521 aorist +15523 perfect +15530 aorist +15532 aorist +15534 aorist +aorist +15537 aorist +15540 imperfect +15542 aorist +15546 aorist +15548 aorist +15550 aorist +15554 imperfect +15556 aorist +15560 future +15564 present +15567 aorist +15569 present +15571 aorist +15573 present +15575 aorist +15578 aorist +15582 aorist +15586 aorist +15589 aorist +15591 present +15596 aorist +15600 aorist +15603 future +15606 present +15610 aorist +15619 aorist +15621 future +15626 perfect +present +15636 perfect +15644 aorist +15647 aorist +15649 aorist +aorist +15653 aorist +15656 imperfect +15659 aorist +15664 aorist +15672 aorist +15675 future +15678 present +15681 aorist +15683 present +15685 present +15697 aorist +15700 future +15702 present +15704 present +15709 aorist +15716 aorist +15718 future +15730 aorist +15732 aorist +15739 aorist +15743 perfect +15750 present +15756 present +15759 aorist +15761 aorist +15775 present +15778 aorist +15783 aorist +15785 aorist +15787 imperfect +15795 aorist +15802 aorist +15810 aorist +15813 present +15818 aorist +15823 present +15825 aorist +15828 aorist +present +15836 imperfect +15838 aorist +15841 aorist +15844 aorist +15847 aorist +15851 present +15857 aorist +15864 present +15871 present +15874 aorist +15884 aorist +15886 aorist +15888 present +15892 aorist +15900 future +15903 aorist +15913 present +15916 aorist +15920 aorist +present +15924 aorist +15927 future +15931 aorist +15938 imperfect +15942 aorist +15948 aorist +15953 present +present +15956 aorist +15958 aorist +15963 aorist +present +15972 aorist +15976 present +15981 present +15984 present +15992 aorist +15996 aorist +16001 aorist +16006 aorist +imperfect +16013 present +16015 aorist +16017 present +16023 future +16026 present +16028 aorist +present +16035 present +16039 aorist +aorist +16042 aorist +16052 future +16058 present +16060 perfect +16074 present +16076 imperfect +16080 aorist +16085 aorist +16088 present +16090 aorist +16093 present +16095 present +16098 aorist +16100 present +16104 aorist +16107 aorist +aorist +16110 aorist +16113 aorist +aorist +aorist +16117 present +16122 aorist +16125 aorist +aorist +16128 present +aorist +16135 present +16144 present +16149 present +16153 aorist +16168 present +16179 aorist +aorist +16187 present +16193 future +16201 perfect +future +16206 future +16214 aorist +16216 future +16222 aorist +16225 aorist +16229 future +16234 future +imperfect +16240 present +16249 aorist +16251 future +16253 present +16258 present +16262 aorist +16266 future +16272 aorist +16274 present +16281 present +16284 present +16287 aorist +16291 aorist +16293 aorist +16295 aorist +16303 aorist +present +16306 present +16308 present +16311 present +16317 aorist +16320 present +16324 aorist +16326 aorist +16330 present +16332 present +16337 present +aorist +16348 present +16353 present +16358 present +16360 present +16362 present +16367 aorist +16370 aorist +16373 present +16375 present +16378 aorist +16392 aorist +aorist +present +16399 present +16401 aorist +16405 aorist +aorist +16411 aorist +16413 aorist +16415 present +16417 imperfect +perfect +16423 aorist +16426 aorist +aorist +16433 aorist +16436 present +16441 present +16443 present +16446 present +aorist +perfect +16456 present +16460 present +present +aorist +perfect +16465 present +16470 present +aorist +16476 aorist +16495 present +16497 aorist +16500 present +16503 aorist +16505 present +aorist +16510 aorist +16513 aorist +present +16517 aorist +16522 aorist +16527 present +16529 aorist +aorist +16537 aorist +16540 aorist +16545 aorist +16548 aorist +16553 aorist +16558 aorist +16563 present +16567 aorist +16578 aorist +16582 future +16584 present +16587 present +aorist +16593 future +16602 aorist +16607 present +aorist +16613 aorist +16621 aorist +16626 aorist +16633 imperfect +present +16637 aorist +16642 perfect +16644 aorist +16653 aorist +16655 aorist +16658 aorist +16661 aorist +16672 aorist +16676 imperfect +16686 aorist +16688 imperfect +16692 aorist +16702 imperfect +16709 aorist +16712 aorist +16715 aorist +16718 aorist +16720 aorist +16722 imperfect +present +aorist +16733 aorist +16735 aorist +16738 aorist +16741 present +16745 present +16749 imperfect +16753 aorist +16755 present +16761 present +16764 aorist +16767 present +16774 present +16779 aorist +16781 present +16785 future +16790 present +16796 present +16805 aorist +16809 present +aorist +16815 present +aorist +16818 aorist +16823 present +16826 aorist +aorist +16830 present +16832 aorist +16838 aorist +16842 aorist +present +aorist +16848 present +16850 aorist +16855 imperfect +16861 aorist +16865 present +16868 imperfect +16875 aorist +16878 present +16880 perfect +16882 present +16884 aorist +16888 aorist +16892 present +16896 imperfect +16903 aorist +16908 perfect +16914 aorist +16916 perfect +aorist +16925 present +16933 present +16935 aorist +present +16938 present +16941 perfect +16947 aorist +16949 aorist +16955 perfect +16959 aorist +16961 future +16964 aorist +16966 aorist +16970 aorist +16972 aorist +16985 aorist +16988 aorist +16990 aorist +16992 aorist +16999 aorist +17001 aorist +17003 aorist +aorist +aorist +17013 present +aorist +aorist +17020 aorist +17025 future +17027 aorist +17033 aorist +17035 aorist +aorist +17040 aorist +17043 aorist +17045 present +aorist +17054 present +17057 aorist +aorist +17070 aorist +17080 aorist +17082 aorist +17087 present +17089 aorist +17096 perfect +17098 aorist +17103 aorist +17111 aorist +17117 aorist +17122 aorist +17126 present +17128 present +17136 imperfect +17138 present +17142 present +17150 aorist +17152 present +17157 present +17160 present +17163 aorist +17170 present +17177 pluperfect +17180 present +17186 imperfect +17188 imperfect +17192 present +17195 perfect +17197 aorist +17201 present +17203 aorist +17209 present +17212 pluperfect +17216 aorist +17219 present +17224 aorist +17230 present +17239 aorist +17251 aorist +17255 aorist +17261 aorist +17263 aorist +17266 aorist +17268 present +17273 aorist +17277 aorist +17280 present +17286 aorist +17289 present +17291 present +17293 aorist +17296 imperfect +17300 aorist +17304 imperfect +present +aorist +17310 aorist +17313 present +17317 present +aorist +17320 aorist +17326 present +17328 present +17334 future +17336 aorist +17340 aorist +17352 aorist +17359 aorist +aorist +17362 aorist +17368 aorist +17374 aorist +17381 aorist +17385 aorist +17388 aorist +17392 aorist +17404 aorist +17407 aorist +17409 present +present +17415 aorist +17418 aorist +17422 imperfect +17429 aorist +17431 aorist +17436 aorist +17442 aorist +17446 aorist +17448 present +aorist +17455 aorist +17457 aorist +17462 aorist +17465 present +17468 present +present +17472 aorist +17474 aorist +17478 perfect +17480 aorist +17482 aorist +aorist +17485 aorist +17487 aorist +17491 present +17494 present +imperfect +17499 aorist +17507 perfect +17509 present +17516 present +17530 present +imperfect +17533 present +17538 present +17540 present +17547 present +aorist +17551 present +17556 aorist +17563 present +17569 imperfect +17571 aorist +17573 aorist +17575 present +17578 present +aorist +17585 future +17588 perfect +17592 aorist +17595 present +17598 aorist +17602 present +17610 aorist +17613 imperfect +17620 aorist +17633 aorist +17638 present +17642 aorist +17644 present +17652 aorist +17657 perfect +aorist +imperfect +17662 present +17669 aorist +17671 aorist +17674 aorist +17677 aorist +17679 imperfect +17684 aorist +aorist +aorist +17688 present +17690 future +17696 aorist +17699 aorist +17703 aorist +17708 aorist +17718 aorist +17722 aorist +17726 aorist +17731 perfect +17733 aorist +17735 aorist +17743 aorist +17749 aorist +17758 present +17761 aorist +17766 present +aorist +17769 present +17773 imperfect +17776 imperfect +17782 present +17784 aorist +17790 present +17794 imperfect +17814 aorist +aorist +17825 aorist +17829 aorist +17832 aorist +17840 aorist +aorist +17843 aorist +17848 aorist +17854 aorist +17862 aorist +17867 aorist +17874 aorist +17884 imperfect +present +17893 present +17897 aorist +17905 present +17907 aorist +17912 aorist +17914 present +17918 present +17920 aorist +aorist +17930 aorist +17933 aorist +17936 aorist +17939 aorist +17944 future +17951 imperfect +17955 present +17957 present +aorist +17960 perfect +17963 aorist +aorist +17967 aorist +17977 present +17981 aorist +17989 aorist +17993 aorist +17996 aorist +18000 aorist +18004 aorist +aorist +18009 imperfect +18013 imperfect +18031 aorist +18033 present +18035 aorist +18039 aorist +18042 aorist +18046 present +18049 perfect +18053 perfect +present +18056 present +18059 aorist +18061 aorist +present +aorist +18067 imperfect +18070 aorist +aorist +18076 aorist +18081 aorist +present +18089 future +aorist +aorist +18094 aorist +18104 aorist +aorist +18110 aorist +18112 aorist +18114 present +present +18118 aorist +aorist +18124 aorist +18127 present +18132 present +present +aorist +18139 aorist +18145 future +18147 present +18149 aorist +18153 aorist +18157 aorist +18162 aorist +18164 aorist +18170 aorist +18173 aorist +18176 present +aorist +18183 aorist +aorist +18187 present +18190 aorist +18196 future +18200 future +18203 aorist +18205 aorist +18207 aorist +18209 aorist +18223 aorist +18231 aorist +18236 aorist +18238 aorist +18241 aorist +18243 aorist +18246 aorist +18248 present +aorist +18260 aorist +aorist +18265 present +18279 present +18281 present +18284 aorist +18287 aorist +18291 present +18308 perfect +18314 aorist +present +18323 future +18328 present +18332 aorist +18337 present +18341 aorist +18344 present +18348 present +18355 imperfect +18367 imperfect +18374 present +18379 imperfect +18382 perfect +18393 present +18399 imperfect +present +present +18409 present +18411 aorist +aorist +18419 aorist +18424 future +18429 aorist +18434 aorist +18441 aorist +18449 present +18453 aorist +present +18462 present +18467 aorist +18472 present +18480 aorist +18486 present +18491 imperfect +18497 present +18502 imperfect +18509 imperfect +18514 aorist +18517 aorist +18523 present +18529 present +18531 perfect +18535 perfect +18540 present +18542 present +18547 present +18553 aorist +18560 present +18565 imperfect +18568 aorist +18572 present +18576 future +18578 aorist +18583 aorist +18586 aorist +18589 aorist +18591 aorist +18606 present +18611 aorist +18614 aorist +18625 aorist +18629 present +18636 aorist +18640 imperfect +18642 imperfect +18648 imperfect +present +18653 present +18661 imperfect +18671 aorist +present +18679 aorist +aorist +18682 perfect +18685 present +18691 aorist +18695 aorist +18697 aorist +18705 aorist +18708 aorist +18711 aorist +18715 aorist +18718 present +18720 present +18722 present +18733 present +18735 present +18738 aorist +18755 aorist +aorist +18771 imperfect +present +18775 present +18780 aorist +aorist +18783 aorist +18787 aorist +18792 imperfect +18796 aorist +18798 aorist +18801 imperfect +18807 present +18810 present +18812 imperfect +perfect +18821 aorist +18824 present +18830 aorist +18833 imperfect +present +18838 pluperfect +18844 aorist +aorist +18847 aorist +18852 imperfect +18854 aorist +18862 aorist +18865 present +18869 present +18872 present +18874 present +18878 present +18883 aorist +18887 aorist +18889 aorist +present +18902 present +18904 present +18908 present +18911 present +present +18916 present +present +18919 aorist +18921 aorist +aorist +18926 aorist +18928 present +18930 present +aorist +18934 aorist +18940 aorist +18942 aorist +18945 aorist +18948 present +18950 present +18953 aorist +18955 present +18957 aorist +18961 aorist +18967 aorist +18974 aorist +aorist +present +18979 present +18985 present +18989 aorist +18995 imperfect +18997 imperfect +19002 aorist +19008 aorist +19012 present +19014 aorist +19018 present +19025 imperfect +19030 present +present +19035 present +19040 present +aorist +19046 aorist +19050 imperfect +19052 aorist +present +19059 imperfect +19063 aorist +19067 present +19071 present +19076 imperfect +19081 present +19083 present +19091 present +present +19094 present +present +19106 aorist +19112 present +19115 present +19119 present +19125 present +19127 aorist +19130 present +19135 aorist +present +19138 aorist +19143 present +19146 perfect +19149 present +19154 present +19159 present +19163 present +present +aorist +19170 present +19176 aorist +19179 aorist +19182 aorist +19186 present +19189 present +19192 present +19196 aorist +19198 aorist +19207 imperfect +19211 imperfect +19214 present +aorist +19220 present +19225 present +19227 present +19230 aorist +aorist +19234 present +present +19246 imperfect +19254 imperfect +19257 imperfect +19264 aorist +19266 present +19272 imperfect +19282 present +19284 aorist +19287 present +19292 present +19294 present +19298 present +19300 aorist +aorist +19306 imperfect +present +19315 present +19317 present +19329 present +19335 present +19337 aorist +19342 present +19353 present +present +19357 present +19363 present +present +19366 future +19369 aorist +19376 future +19385 present +19392 present +19404 present +19407 present +19416 future +19424 present +19435 aorist +19440 present +19448 aorist +19450 present +present +19457 imperfect +19459 aorist +19461 present +19466 present +19468 present +19471 aorist +19473 aorist +19477 aorist +19479 aorist +19486 aorist +19500 aorist +19502 aorist +19504 present +19510 aorist +19515 present +19517 imperfect +19524 aorist +19533 present +19543 aorist +19548 imperfect +19551 perfect +present +19556 imperfect +19561 future +19564 aorist +19567 present +19574 present +present +19580 present +19582 present +19586 aorist +19588 aorist +19590 aorist +19592 aorist +19595 imperfect +19597 aorist +19601 present +19608 present +19611 aorist +19615 aorist +19617 aorist +19622 aorist +19630 imperfect +19635 aorist +19643 aorist +19653 aorist +19676 present +19678 present +aorist +19683 aorist +19689 present +19696 present +19700 aorist +19702 present +19706 aorist +19708 imperfect +19717 imperfect +imperfect +19721 imperfect +present +19725 present +19732 imperfect +19738 aorist +19740 present +19745 present +19747 imperfect +19750 aorist +19754 aorist +19757 present +19762 present +19764 present +19766 present +19768 present +19772 aorist +19776 aorist +19793 aorist +19798 present +19827 aorist +19830 present +19834 present +19840 present +19844 aorist +19846 aorist +19850 aorist +aorist +19854 imperfect +19856 aorist +19863 aorist +imperfect +19867 present +19875 present +19879 aorist +19883 imperfect +19886 present +19889 present +19895 aorist +19897 present +aorist +19907 aorist +19909 future +19913 aorist +19918 aorist +19922 aorist +19924 present +aorist +19928 present +19931 present +19938 aorist +19942 aorist +19948 aorist +19954 future +19956 present +19959 future +19972 aorist +19976 aorist +19983 present +19990 present +19994 imperfect +19997 present +19999 present +20009 present +aorist +20013 present +20016 imperfect +20021 present +20023 aorist +20036 present +20039 aorist +20041 present +20043 present +20051 aorist +20056 present +present +aorist +20068 aorist +20080 present +20083 aorist +present +20089 present +20098 aorist +present +20113 imperfect +20115 imperfect +20121 imperfect +20127 present +aorist +aorist +20131 present +aorist +20134 aorist +20137 present +20140 aorist +20145 aorist +20149 aorist +20153 aorist +20159 imperfect +20164 aorist +20168 present +20173 aorist +20176 aorist +20181 present +20183 aorist +20186 aorist +20191 aorist +20195 aorist +20200 aorist +20203 aorist +20210 imperfect +20212 present +20214 present +20216 imperfect +20226 imperfect +20228 present +20230 present +present +20234 aorist +20237 imperfect +20248 imperfect +20251 perfect +20266 present +20268 present +present +20272 aorist +20274 present +present +20278 present +20281 aorist +20283 aorist +20286 present +20289 perfect +20298 future +20300 present +20303 present +20306 present +20312 present +20317 aorist +20319 present +20323 present +20327 perfect +20331 present +20337 present +20341 aorist +20347 present +20351 present +20357 present +20359 aorist +20367 present +20370 present +20375 present +20377 present +20381 aorist +20398 present +present +20404 present +20406 present +20413 aorist +20416 present +20420 present +20422 present +20432 imperfect +20436 present +20443 aorist +20453 aorist +20456 present +20462 aorist +20464 aorist +20468 aorist +20473 present +20475 present +present +20478 imperfect +20480 present +20482 present +20486 present +future +20490 future +20494 present +future +20500 present +20503 present +future +20508 imperfect +20510 present +20517 aorist +20524 present +20526 present +20533 present +20535 present +20538 perfect +20543 present +20556 aorist +20560 present +20564 perfect +20568 imperfect +20570 aorist +20580 aorist +20586 aorist +20591 present +20601 aorist +present +20604 present +20610 present +20614 present +20619 present +20628 imperfect +20633 imperfect +present +20639 imperfect +20647 imperfect +20650 present +20657 aorist +aorist +20663 aorist +20666 present +20669 imperfect +20676 imperfect +20680 present +20687 imperfect +20693 present +20698 imperfect +20705 present +20707 present +20710 present +20714 present +20717 present +20719 aorist +aorist +20724 aorist +20727 present +perfect +20730 aorist +20734 aorist +20738 aorist +20742 present +20746 present +20749 aorist +20753 imperfect +20759 present +20767 present +20770 aorist +20782 aorist +20788 aorist +20800 imperfect +20809 imperfect +20811 aorist +20819 perfect +20821 perfect +20829 perfect +20832 imperfect +20834 aorist +20848 imperfect +present +20851 present +20855 aorist +20860 aorist +20862 aorist +20865 aorist +20868 present +20879 present +20885 aorist +20887 imperfect +20893 aorist +20898 imperfect +20904 present +20911 present +20913 imperfect +20919 aorist +20924 imperfect +20932 present +20934 aorist +20936 present +aorist +20945 aorist +20947 aorist +20950 aorist +20955 aorist +20960 aorist +20972 imperfect +20978 present +20980 aorist +20982 aorist +20991 aorist +aorist +20994 present +20996 perfect +20998 present +21003 present +21005 present +21007 perfect +21010 present +perfect +21013 present +21015 aorist +21017 aorist +21020 aorist +21022 aorist +21024 present +21030 aorist +present +21033 aorist +21039 present +21044 imperfect +21047 aorist +21051 present +21054 aorist +21057 present +21059 present +21068 aorist +21074 perfect +21076 aorist +21079 aorist +21081 aorist +present +21087 aorist +21093 imperfect +21095 aorist +21105 aorist +21111 imperfect +21116 present +21123 aorist +21125 present +21131 present +21134 present +21140 present +21142 aorist +aorist +21148 aorist +21150 aorist +21152 aorist +21156 imperfect +21161 imperfect +21165 present +21173 aorist +21178 aorist +21185 aorist +21191 aorist +aorist +21197 aorist +21202 aorist +21207 imperfect +21210 aorist +21215 future +21218 aorist +21225 aorist +21229 perfect +21237 aorist +21244 aorist +aorist +21249 imperfect +21251 aorist +21256 imperfect +21261 present +21264 present +21267 present +21270 aorist +21272 imperfect +aorist +21276 aorist +21280 aorist +21282 present +perfect +21285 perfect +21287 aorist +21289 aorist +21292 aorist +21299 aorist +21305 perfect +21307 present +21311 present +21319 present +present +21324 present +21329 aorist +21332 present +21338 aorist +21341 present +present +21346 present +21348 present +21351 aorist +21355 aorist +21368 present +21375 present +21378 present +21380 present +21383 aorist +present +21387 present +21389 present +21393 aorist +21395 present +21397 imperfect +21401 aorist +21403 present +21416 present +21418 imperfect +21422 aorist +21427 present +21430 aorist +21432 present +present +21437 present +present +21441 aorist +21445 imperfect +21447 imperfect +21451 aorist +21456 aorist +21461 aorist +21464 aorist +aorist +21467 aorist +21469 aorist +21472 present +21478 present +21484 aorist +21486 aorist +present +21494 present +imperfect +present +21505 aorist +21515 present +21518 present +21536 present +21544 imperfect +21548 imperfect +21554 present +21575 imperfect +21577 aorist +21584 aorist +21587 aorist +21589 aorist +21595 imperfect +21599 present +21601 present +21605 aorist +21607 present +21611 imperfect +21619 aorist +21623 present +21640 perfect +21644 aorist +21648 imperfect +21652 aorist +21656 present +21659 aorist +21666 aorist +21669 aorist +21671 present +21673 aorist +21685 aorist +aorist +21688 present +21692 imperfect +21694 imperfect +21699 imperfect +21701 aorist +21707 aorist +21712 imperfect +21716 present +perfect +21723 present +21730 imperfect +21733 present +21736 imperfect +21744 aorist +21747 imperfect +21750 aorist +21753 aorist +21758 aorist +aorist +21763 aorist +21777 aorist +21779 imperfect +21786 present +21788 present +21797 imperfect +21800 imperfect +21802 aorist +21805 imperfect +21809 imperfect +21812 perfect +21819 imperfect +21822 aorist +21825 imperfect +21829 imperfect +21831 aorist +21840 aorist +21853 aorist +21860 aorist +aorist +21866 present +21870 aorist +21873 aorist +21877 present +21879 future +21882 aorist +21887 aorist +future +21896 aorist +aorist +21902 aorist +21905 aorist +21910 present +21912 aorist +21919 aorist +present +present +21924 aorist +21935 aorist +21943 present +21945 aorist +aorist +21950 aorist +21954 aorist +aorist +21960 aorist +aorist +21967 aorist +21974 aorist +21981 aorist +21987 aorist +21991 aorist +21993 aorist +21998 aorist +22003 present +22010 aorist +22014 aorist +22017 aorist +22019 present +22021 present +22030 aorist +22033 imperfect +22035 present +22038 present +22042 aorist +imperfect +22045 aorist +22055 aorist +22057 present +22059 aorist +22067 aorist +22070 aorist +22073 aorist +aorist +22078 aorist +22082 imperfect +22086 present +22089 aorist +present +22097 aorist +aorist +22103 imperfect +22106 present +22113 aorist +22116 aorist +22123 aorist +22126 aorist +22129 aorist +aorist +22132 aorist +22135 aorist +22137 present +22139 aorist +aorist +22145 future +22147 aorist +22150 present +22154 present +present +aorist +22158 aorist +present +22165 aorist +22167 aorist +22176 aorist +22185 aorist +22193 aorist +22197 aorist +22199 aorist +22203 imperfect +22207 present +22213 aorist +22216 aorist +22219 aorist +22221 aorist +22231 imperfect +22233 aorist +22240 aorist +22244 aorist +22249 present +22257 present +22261 aorist +22263 aorist +22267 aorist +22270 aorist +imperfect +22285 aorist +22287 present +22290 present +22292 imperfect +22302 present +22305 present +22310 imperfect +aorist +22315 aorist +22320 present +aorist +22324 present +22326 aorist +22330 aorist +22332 aorist +22336 aorist +22340 present +22342 present +22344 present +22346 present +22348 aorist +22355 aorist +22364 imperfect +22367 aorist +22372 imperfect +perfect +22378 aorist +22382 aorist +22386 aorist +22388 aorist +22394 aorist +22396 aorist +22402 aorist +22408 present +present +22411 imperfect +22413 present +22417 imperfect +22429 imperfect +22431 present +22433 imperfect +22442 aorist +22446 aorist +22448 imperfect +22450 present +22459 aorist +22463 aorist +22472 present +22474 present +22487 aorist +22491 present +present +22502 aorist +22504 present +22508 present +22510 aorist +present +22519 present +22529 present +22541 present +22546 aorist +22549 aorist +22556 perfect +22564 present +22570 present +22575 present +22577 present +22581 aorist +22586 present +22592 imperfect +22595 present +22604 aorist +22607 aorist +present +22618 present +22623 present +22626 present +22628 aorist +22637 present +22643 aorist +22645 present +22648 aorist +22654 present +22663 aorist +22668 present +22670 aorist +22674 imperfect +22676 aorist +22680 aorist +22682 present +22686 present +22690 present +aorist +22698 present +present +22701 present +22706 aorist +22712 imperfect +22720 present +22726 present +22728 present +22733 present +22738 present +22740 aorist +22743 present +22756 present +present +22762 imperfect +22768 present +22770 present +22784 present +22803 present +22805 present +22810 aorist +aorist +22817 aorist +22821 aorist +imperfect +22825 aorist +aorist +22829 aorist +22837 imperfect +22840 aorist +aorist +22849 imperfect +22855 imperfect +22860 aorist +22866 imperfect +22868 aorist +22870 aorist +22875 present +22877 aorist +22885 aorist +22888 aorist +22890 present +22900 present +22907 aorist +22913 present +perfect +22922 aorist +22927 aorist +22930 perfect +22937 perfect +22940 aorist +22945 aorist +22959 present +22965 present +22968 aorist +22973 aorist +22980 aorist +22989 aorist +aorist +22995 aorist +22999 aorist +23001 present +23003 aorist +23005 present +aorist +23008 aorist +23014 aorist +23021 imperfect +23024 aorist +23028 present +23032 imperfect +23036 imperfect +23039 imperfect +present +23043 perfect +23045 present +23048 present +23051 present +23059 present +23062 present +23064 aorist +aorist +23068 present +23070 present +23078 present +23082 present +23084 aorist +23087 aorist +23093 future +23102 present +23104 aorist +23111 future +23115 aorist +23120 imperfect +23124 present +23127 aorist +23130 present +23133 aorist +23138 aorist +23142 aorist +aorist +23145 imperfect +23150 present +23152 aorist +23156 imperfect +23160 aorist +23162 aorist +23165 present +23167 aorist +23169 aorist +23171 aorist +23177 imperfect +23181 aorist +23185 aorist +23193 aorist +23199 aorist +23203 aorist +present +23206 present +23213 present +23216 aorist +23220 present +23225 present +23228 present +23231 future +23237 aorist +23240 aorist +aorist +23246 aorist +aorist +23255 imperfect +23262 imperfect +23264 present +present +present +23277 imperfect +23283 present +23285 aorist +present +23289 present +23293 present +23295 present +23297 present +perfect +present +23304 present +23306 present +23309 present +23311 present +23314 present +23319 aorist +23327 aorist +present +23341 aorist +23343 present +23346 imperfect +23349 present +23351 present +23355 present +23359 present +23363 aorist +23365 aorist +23370 aorist +23376 aorist +23381 aorist +23385 imperfect +23389 present +23391 aorist +imperfect +present +23399 present +present +23403 aorist +23411 aorist +23413 aorist +23415 imperfect +23419 aorist +23424 present +23429 aorist +23431 aorist +23448 imperfect +23452 present +23456 present +present +23462 aorist +23464 present +23480 imperfect +23486 present +present +aorist +23491 present +23494 present +23498 aorist +23502 present +23506 aorist +present +23510 present +23516 aorist +23518 aorist +23529 aorist +23534 aorist +23539 imperfect +23543 aorist +23545 aorist +present +23550 aorist +23552 aorist +23556 aorist +23559 present +present +23566 present +23575 aorist +23582 aorist +23586 present +23589 aorist +aorist +23593 aorist +23598 present +23603 present +23607 aorist +future +23613 future +23622 future +23626 present +23628 aorist +23633 aorist +23639 aorist +23648 aorist +23667 future +23670 aorist +23683 imperfect +23686 present +23689 present +23693 perfect +23697 aorist +23701 aorist +23706 perfect +23713 present +23724 present +23733 aorist +23740 aorist +present +23750 present +23752 aorist +23754 aorist +23760 imperfect +present +23765 aorist +23768 present +23773 present +23776 present +23778 aorist +23791 pluperfect +23793 aorist +23796 aorist +23798 aorist +23800 present +23803 aorist +23809 present +23815 present +23819 aorist +23822 aorist +23830 present +23835 aorist +23840 aorist +aorist +23851 aorist +23855 aorist +23858 present +23860 present +23864 aorist +23866 imperfect +23868 present +23870 present +23874 present +23876 aorist +23880 imperfect +23884 aorist +23886 present +23890 perfect +23898 aorist +23900 aorist +23902 present +23907 perfect +23909 aorist +23912 imperfect +23914 perfect +23918 aorist +23922 aorist +23929 present +23937 aorist +23939 aorist +23941 present +imperfect +23945 aorist +23948 present +23952 aorist +23959 aorist +23965 present +23972 aorist +present +23976 present +23978 present +23982 present +23984 aorist +23990 aorist +23993 aorist +23996 aorist +23998 present +24006 future +24009 future +24011 present +24016 aorist +24021 aorist +24026 aorist +24029 aorist +24033 imperfect +present +24036 aorist +24042 present +24045 perfect +24049 aorist +24058 aorist +24063 aorist +24068 present +aorist +24071 aorist +24077 aorist +24081 present +24085 present +24087 aorist +24092 imperfect +present +present +24101 aorist +24103 present +24105 aorist +24110 present +24118 present +24120 aorist +24125 aorist +24129 aorist +24132 aorist +aorist +24135 aorist +24141 present +24143 aorist +24147 aorist +24151 aorist +24154 aorist +24156 aorist +24165 imperfect +24170 aorist +aorist +24174 aorist +24181 present +aorist +24188 aorist +imperfect +24195 imperfect +24198 aorist +24200 imperfect +24205 imperfect +24212 present +24217 future +24220 aorist +24224 future +24227 imperfect +24231 imperfect +24233 aorist +24235 aorist +24242 aorist +imperfect +24249 imperfect +24252 imperfect +24256 aorist +24263 aorist +aorist +24268 present +24272 present +24274 present +future +24282 aorist +24284 aorist +24290 aorist +24292 aorist +24300 aorist +24306 present +24311 present +24314 present +24317 aorist +24319 imperfect +24324 aorist +24330 present +24334 present +24337 imperfect +24341 imperfect +24346 aorist +24348 present +24352 present +24354 future +24361 future +24363 aorist +24368 present +24373 present +24377 aorist +24385 present +24387 present +24392 aorist +24399 aorist +24405 present +24407 present +24411 present +24419 perfect +24425 aorist +24430 aorist +24433 present +24436 aorist +24444 present +aorist +24459 present +24461 aorist +24464 present +24466 aorist +24475 present +aorist +24485 present +24487 aorist +24490 present +24493 aorist +24502 present +aorist +24512 present +24517 present +24521 future +24530 aorist +24534 future +present +24540 present +24545 aorist +present +24557 present +24564 pluperfect +24566 imperfect +24569 aorist +24571 imperfect +24574 present +24577 aorist +present +24582 aorist +aorist +24587 aorist +24591 aorist +aorist +24596 aorist +24598 aorist +24602 aorist +24608 aorist +24620 aorist +24624 future +24633 future +24641 present +24650 aorist +24653 present +24663 imperfect +24666 present +24670 aorist +24675 aorist +24677 present +24683 aorist +24687 aorist +24689 present +24691 imperfect +24696 aorist +24700 aorist +24703 aorist +24706 aorist +24708 aorist +24710 aorist +24713 present +24717 present +24722 present +24728 present +24733 aorist +24742 aorist +24746 aorist +24748 imperfect +present +24755 present +24760 aorist +24762 aorist +24764 imperfect +24769 aorist +24773 aorist +24777 aorist +24781 present +24792 perfect +24794 aorist +24796 aorist +24798 aorist +24800 aorist +24802 aorist +present +24812 imperfect +24817 aorist +24824 aorist +24826 aorist +24829 aorist +24833 present +present +24836 present +aorist +24839 aorist +24843 future +24848 present +present +24853 aorist +24857 aorist +present +24860 imperfect +present +24865 aorist +24868 present +24877 present +24883 future +24887 imperfect +24896 aorist +present +24902 present +24908 aorist +24910 present +24917 aorist +24925 aorist +24929 imperfect +present +24935 present +aorist +aorist +24941 present +24955 aorist +24958 present +24960 aorist +24962 aorist +24965 perfect +24967 imperfect +24971 present +24974 present +24976 aorist +24998 aorist +25023 present +25029 future +25036 imperfect +25040 present +25044 imperfect +present +25050 imperfect +25053 present +imperfect +25056 aorist +25060 aorist +25062 present +25064 present +25066 present +25068 aorist +present +25077 future +25084 future +25088 future +25093 future +25096 future +25099 future +25102 future +25107 future +25109 present +25117 present +25120 present +25124 aorist +25126 aorist +25130 aorist +25132 present +25135 aorist +25139 aorist +25141 aorist +25152 aorist +25160 aorist +25163 perfect +25165 present +present +aorist +25172 present +25178 present +aorist +25182 aorist +25184 present +25188 aorist +25194 present +future +25201 present +future +25205 aorist +25213 present +25215 aorist +25218 perfect +25220 aorist +25223 aorist +present +25230 aorist +25234 present +25236 perfect +25239 present +present +25243 present +25249 present +25254 present +25260 present +25262 aorist +25265 future +25271 present +25274 present +25276 future +25286 aorist +aorist +25289 aorist +25291 aorist +25299 present +25303 present +25320 imperfect +25325 aorist +25330 present +aorist +present +25334 present +25338 aorist +25341 imperfect +25345 aorist +25350 imperfect +25353 aorist +25356 aorist +25359 aorist +aorist +25363 present +25366 present +25368 present +present +present +25374 aorist +25378 aorist +aorist +25384 aorist +25388 aorist +25391 aorist +present +25396 aorist +25400 aorist +25404 aorist +25406 present +25410 perfect +25414 aorist +25416 imperfect +25423 present +25435 present +25441 present +25443 present +25452 present +25455 future +perfect +25463 aorist +aorist +25467 present +25472 aorist +25474 present +25476 aorist +25481 present +25485 present +25489 aorist +25491 aorist +25493 perfect +25501 present +25507 perfect +imperfect +25511 present +present +25517 aorist +25520 aorist +25524 aorist +25527 present +25534 present +25540 aorist +25548 aorist +25555 aorist +25561 present +25564 present +imperfect +25567 perfect +25569 present +25573 perfect +25575 present +25586 aorist +25595 present +25598 aorist +25600 aorist +25609 aorist +25613 aorist +25615 aorist +25619 present +25621 aorist +25625 future +25629 aorist +25633 aorist +25641 imperfect +25644 aorist +aorist +25655 aorist +25657 imperfect +25662 present +25666 aorist +25670 aorist +present +25673 present +25676 present +25689 present +25692 aorist +25695 imperfect +25698 aorist +25704 imperfect +25706 imperfect +25709 perfect +25716 future +25722 perfect +25727 aorist +25734 imperfect +25737 aorist +25739 imperfect +25745 imperfect +25753 aorist +imperfect +25759 present +25761 aorist +25764 perfect +25768 aorist +25771 present +25774 aorist +25778 aorist +perfect +25781 aorist +25784 present +25786 present +25790 present +25795 aorist +25799 aorist +25801 aorist +25807 aorist +25813 present +25816 present +present +future +25822 present +25826 present +25828 present +present +25831 aorist +25833 future +25837 present +present +present +25842 present +25854 aorist +25860 present +25868 present +25870 present +25882 imperfect +25888 present +25892 aorist +25898 present +25902 aorist +25904 future +25909 aorist +25912 future +25918 present +25925 imperfect +25929 aorist +25932 imperfect +25935 present +25937 aorist +25940 future +25945 aorist +25948 aorist +25951 imperfect +25956 imperfect +25962 imperfect +25964 aorist +25967 present +25969 perfect +25973 present +25977 present +25983 present +25985 aorist +25989 present +25992 aorist +25994 aorist +25997 aorist +26000 aorist +26003 aorist +26007 aorist +26009 aorist +26020 aorist +26027 aorist +26029 aorist +26031 aorist +26035 aorist +26041 aorist +26043 aorist +26046 aorist +26048 aorist +26054 present +26057 present +26059 imperfect +26063 aorist +26068 present +26070 future +26080 aorist +26083 present +26086 present +present +26091 future +26095 aorist +aorist +26099 aorist +26105 future +26110 future +26112 future +26116 future +26124 aorist +26127 aorist +26129 present +26131 aorist +26137 aorist +26140 present +26146 imperfect +26148 aorist +26150 aorist +26154 aorist +26160 aorist +26162 aorist +26164 aorist +26166 present +26177 aorist +26180 aorist +present +26184 perfect +26187 present +26190 present +26196 present +26207 present +present +aorist +26214 aorist +26217 aorist +26220 perfect +26224 aorist +26228 present +present +26233 aorist +26236 aorist +26238 present +26249 aorist +26255 aorist +26259 aorist +26268 imperfect +26272 present +26277 present +26280 present +26282 imperfect +26284 present +26287 aorist +26293 aorist +26295 aorist +26299 aorist +26302 aorist +26309 aorist +26316 imperfect +26320 aorist +26323 present +26325 aorist +26330 aorist +26333 aorist +26335 aorist +26345 aorist +26352 aorist +26357 aorist +26361 future +26365 aorist +26368 imperfect +26375 present +26377 perfect +26389 aorist +26391 present +26393 present +26395 present +26406 present +26408 aorist +26417 aorist +26421 present +26433 present +26437 present +26439 present +26441 aorist +26445 aorist +26447 present +perfect +26451 aorist +26453 aorist +26456 present +26460 aorist +26465 present +present +26474 present +26476 future +26506 future +26517 present +26519 aorist +26527 aorist +26530 present +26533 present +26539 present +26557 present +26563 present +26572 aorist +26576 aorist +aorist +26581 present +26590 imperfect +26592 aorist +26594 aorist +26597 imperfect +present +26603 present +26611 present +26614 aorist +26620 aorist +26625 present +26631 aorist +26641 present +26648 present +26653 imperfect +26661 imperfect +present +26667 present +26670 present +26687 present +26695 present +26697 future +26701 aorist +26705 imperfect +26709 present +26717 imperfect +26720 aorist +26724 aorist +26728 present +26731 aorist +26735 aorist +26738 present +26747 aorist +26750 present +26758 present +26760 aorist +26767 aorist +26770 imperfect +26776 present +26781 present +26788 aorist +26797 aorist +26799 present +26806 aorist +26813 aorist +26815 present +26825 imperfect +26836 aorist +26840 future +26846 present +26849 present +26853 aorist +present +26856 present +26860 aorist +26862 future +26867 present +26870 present +26873 future +26876 aorist +26882 present +present +aorist +26890 future +26898 future +26902 future +26908 present +26911 future +26918 future +26924 future +26936 aorist +26939 present +26942 present +26944 present +26946 present +26948 aorist +26952 aorist +26959 present +26962 present +26965 present +26972 future +26981 future +26986 future +26989 future +present +26999 aorist +27003 future +27006 aorist +27011 perfect +27014 present +27016 present +present +27023 present +27032 aorist +27034 aorist +27036 aorist +27047 aorist +27051 aorist +27060 present +27063 present +27069 present +27072 aorist +27075 future +27082 perfect +27088 aorist +27097 aorist +27101 aorist +27107 aorist +27115 aorist +aorist +27124 aorist +aorist +27129 aorist +27132 present +27134 future +27139 future +27145 present +27152 present +perfect +27167 future +27172 future +27179 future +present +27191 future +27194 future +27199 present +27209 future +27213 future +27231 aorist +27240 aorist +27242 present +27245 present +27250 present +27255 aorist +27257 present +present +27261 present +27265 present +27270 aorist +27278 aorist +27284 future +27290 future +27300 perfect +27313 present +present +27317 perfect +27321 present +27325 aorist +27330 aorist +27343 aorist +27345 present +27347 present +27350 perfect +27356 present +27366 aorist +27368 aorist +27370 present +27374 present +27376 present +present +27379 imperfect +27389 imperfect +27399 aorist +aorist +27402 imperfect +27409 future +27414 present +27424 present +27426 aorist +27428 present +27434 aorist +27437 aorist +27443 imperfect +present +27454 perfect +27456 imperfect +27460 aorist +27465 aorist +27469 imperfect +27474 aorist +aorist +27480 present +27483 aorist +27490 present +27495 present +present +27499 aorist +27504 present +27506 aorist +aorist +aorist +aorist +27518 present +27522 aorist +27531 aorist +27533 future +27544 aorist +27550 aorist +27554 aorist +aorist +27557 aorist +27560 aorist +27562 imperfect +27566 aorist +27576 imperfect +present +27582 present +27584 aorist +aorist +27587 aorist +27591 present +27597 present +27599 present +27604 future +27609 present +aorist +27615 aorist +aorist +27622 present +27624 present +27635 aorist +27639 future +27642 perfect +27646 aorist +27649 aorist +27653 aorist +27658 aorist +27660 aorist +27663 aorist +27668 aorist +present +27675 present +27677 present +27680 aorist +27682 present +27685 future +27691 present +27694 aorist +present +27697 present +27706 aorist +27712 present +27724 present +27726 perfect +27740 present +27745 aorist +27750 present +27752 aorist +27754 aorist +aorist +27757 aorist +27760 aorist +aorist +27763 present +27768 aorist +27770 aorist +aorist +27774 aorist +27779 aorist +27782 present +27789 present +27793 present +27799 aorist +27811 present +27819 aorist +aorist +27827 present +27833 future +27835 perfect +future +27842 future +27846 aorist +27848 future +27856 imperfect +27861 future +27866 present +27871 present +27883 aorist +27886 future +27890 imperfect +27892 present +27894 aorist +27899 future +27904 imperfect +27906 present +27914 present +27918 aorist +27921 aorist +27923 present +27935 aorist +present +27938 present +27940 present +27943 present +27949 aorist +27952 present +27954 aorist +27956 imperfect +27961 imperfect +27965 present +aorist +27972 imperfect +27979 aorist +27989 present +27994 present +27996 present +27998 present +28000 present +28004 present +28006 aorist +28009 aorist +present +28012 present +28015 aorist +28028 aorist +aorist +28033 aorist +28036 aorist +aorist +28039 present +28041 imperfect +present +28048 pluperfect +28050 aorist +28053 present +28057 present +28059 present +28063 present +present +aorist +28068 aorist +present +28079 present +present +aorist +28083 present +28085 perfect +28090 present +present +28115 pluperfect +28117 present +28121 present +28124 aorist +28126 present +aorist +28130 present +28133 aorist +28135 aorist +28137 present +28140 aorist +28144 aorist +28149 aorist +28155 perfect +aorist +28159 aorist +28165 aorist +28170 aorist +28173 aorist +28178 aorist +28183 aorist +28187 imperfect +28193 present +28196 aorist +28200 aorist +28204 aorist +28206 aorist +28211 imperfect +28213 perfect +28218 present +28222 aorist +28226 aorist +28228 aorist +28235 present +28250 aorist +28260 imperfect +present +28266 present +28277 imperfect +28284 aorist +28288 imperfect +28291 imperfect +28299 imperfect +28302 aorist +imperfect +28306 present +28309 aorist +28311 present +28314 future +28326 future +28331 imperfect +28336 aorist +28341 aorist +28344 present +28346 present +28351 present +28354 imperfect +28357 aorist +28362 imperfect +28365 present +28368 present +28378 aorist +28380 present +28382 future +28391 present +28393 present +28402 aorist +28406 present +28411 present +aorist +28417 present +28421 aorist +28424 present +28427 aorist +28429 present +28432 present +28437 present +28440 present +28442 aorist +28448 aorist +28450 present +28457 present +28464 aorist +28467 present +aorist +28470 present +28478 imperfect +28481 aorist +present +28484 perfect +28486 present +28489 present +28491 aorist +28499 aorist +28501 aorist +28503 present +28505 perfect +28510 present +28514 imperfect +28520 perfect +imperfect +28527 present +28531 present +28534 aorist +present +28537 present +28540 perfect +28545 present +28551 aorist +28553 aorist +28559 aorist +28567 aorist +28570 future +28572 aorist +imperfect +28580 aorist +28590 aorist +28593 aorist +28595 aorist +28598 aorist +28603 present +28610 aorist +28612 present +28614 present +28616 imperfect +28625 imperfect +28627 present +28629 present +28631 aorist +28634 present +28640 aorist +28642 present +28648 imperfect +28653 imperfect +28655 imperfect +perfect +28658 present +28668 pluperfect +28670 aorist +28673 aorist +present +28676 imperfect +28681 aorist +28683 present +present +aorist +28692 imperfect +28696 pluperfect +28703 aorist +28710 aorist +28716 aorist +imperfect +28721 aorist +28723 present +28731 aorist +aorist +28737 imperfect +28740 aorist +28746 aorist +aorist +28752 present +28757 aorist +aorist +28763 aorist +28766 aorist +28768 aorist +28772 aorist +28778 present +28781 present +28786 present +28790 present +28792 aorist +28796 aorist +present +28799 present +28804 imperfect +28810 imperfect +28813 present +28816 imperfect +28820 aorist +28822 aorist +28827 aorist +28833 present +28836 aorist +28839 present +present +28844 present +28853 aorist +28858 present +28865 present +present +28870 imperfect +28872 perfect +28877 aorist +28879 present +28882 present +28886 present +28892 aorist +28894 imperfect +28898 aorist +28901 imperfect +perfect +28915 present +28928 present +imperfect +28931 present +28936 present +28939 present +28943 present +28947 aorist +28949 aorist +28957 present +28963 imperfect +28965 aorist +28967 aorist +28969 present +28975 aorist +28981 aorist +28983 aorist +28986 perfect +28989 imperfect +28992 aorist +28996 aorist +29008 aorist +29016 aorist +29018 present +present +29028 aorist +29033 perfect +aorist +imperfect +aorist +29038 present +29041 aorist +29043 aorist +29046 aorist +29048 imperfect +29050 present +aorist +aorist +29054 present +29056 aorist +29061 aorist +29064 aorist +29070 aorist +29081 perfect +29085 aorist +29088 aorist +aorist +29096 imperfect +29098 imperfect +29103 present +29123 imperfect +29127 imperfect +29130 imperfect +29136 aorist +29143 aorist +29145 imperfect +29148 present +29150 aorist +29160 imperfect +present +29166 aorist +aorist +29172 aorist +29180 aorist +29183 perfect +29185 aorist +29188 aorist +29192 aorist +29194 aorist +29198 aorist +29204 aorist +29206 aorist +29208 aorist +29212 aorist +29217 imperfect +perfect +29222 aorist +29238 imperfect +29240 perfect +29242 aorist +29255 aorist +29258 aorist +aorist +29268 present +29272 aorist +29276 imperfect +29280 future +29290 aorist +present +29293 perfect +29297 imperfect +29301 aorist +29305 aorist +29307 present +29311 perfect +29315 aorist +29318 present +29321 present +present +29327 perfect +aorist +29330 present +29332 aorist +29336 aorist +29339 present +aorist +29348 present +29355 future +29357 aorist +29360 aorist +aorist +29366 imperfect +29374 aorist +29376 imperfect +29378 aorist +29382 aorist +29389 pluperfect +29393 aorist +aorist +29398 aorist +present +29401 present +29403 aorist +29405 present +29407 aorist +29410 aorist +29417 present +aorist +29422 present +29426 aorist +aorist +29432 aorist +29435 present +29439 aorist +29441 aorist +29449 aorist +29451 perfect +29453 aorist +29455 aorist +29457 aorist +29462 aorist +29469 aorist +29471 aorist +future +29475 aorist +future +29481 aorist +future +29488 future +29491 future +29493 future +29497 aorist +29501 aorist +29505 future +29508 future +29516 aorist +29518 aorist +29523 aorist +29530 aorist +aorist +29535 present +29539 present +29542 present +29547 perfect +29553 aorist +29566 aorist +29579 aorist +aorist +29584 perfect +29589 aorist +29597 aorist +29600 aorist +29602 perfect +29608 aorist +29612 aorist +29615 aorist +29619 aorist +29647 imperfect +29653 present +29665 imperfect +29669 imperfect +29675 perfect +imperfect +29682 aorist +29685 present +29701 aorist +29703 aorist +aorist +29716 imperfect +present +29724 aorist +29728 perfect +29736 aorist +29738 aorist +29741 aorist +29745 aorist +29751 present +29754 aorist +29763 future +29767 future +29773 future +29784 future +29786 future +29796 aorist +29800 future +29811 future +29819 future +29827 aorist +29837 aorist +29840 perfect +29842 aorist +29849 future +29853 present +29859 perfect +29865 aorist +29868 aorist +29871 present +29874 perfect +29879 aorist +aorist +29884 aorist +29888 aorist +future +present +29893 present +aorist +29898 aorist +29903 aorist +29908 future +29914 imperfect +present +29921 imperfect +29924 present +29930 aorist +29932 imperfect +aorist +29936 aorist +29939 perfect +29945 imperfect +present +29949 imperfect +29952 aorist +29954 aorist +29960 aorist +29970 aorist +29976 imperfect +29980 present +29984 perfect +29989 aorist +aorist +30001 aorist +30017 perfect +30032 aorist +30035 aorist +present +perfect +30047 aorist +30049 imperfect +30051 present +30056 aorist +30061 present +30064 aorist +30070 aorist +future +30075 future +30078 future +30084 future +30089 future +30091 future +30103 future +30116 future +30119 aorist +30125 future +30130 present +30132 aorist +30135 aorist +30139 future +30145 future +30150 present +30152 future +30156 aorist +30163 perfect +30172 present +30175 present +30179 future +30186 aorist +30188 aorist +30192 aorist +30199 aorist +30206 aorist +30211 aorist +30221 aorist +30227 aorist +30231 aorist +30233 aorist +30240 aorist +30248 aorist +30254 aorist +30258 aorist +perfect +30264 perfect +30275 aorist +30284 aorist +30286 aorist +30296 aorist +30308 aorist +30310 future +30313 perfect +30318 aorist +30320 present +30327 aorist +30338 aorist +30346 aorist +30350 future +30356 aorist +30375 present +30377 aorist +30382 aorist +30387 aorist +30392 aorist +30394 present +aorist +30398 present +aorist +30401 aorist +30405 aorist +30417 aorist +30423 aorist +30431 aorist +30439 aorist +30443 aorist +30446 aorist +30449 aorist +30457 imperfect +30465 imperfect +30468 aorist +30474 aorist +aorist +30479 imperfect +30489 aorist +30493 aorist +30496 future +30499 aorist +30503 present +30510 present +30515 imperfect +30521 present +30523 present +30526 aorist +30528 aorist +present +30531 present +30535 aorist +30538 aorist +30548 imperfect +present +30553 aorist +30558 present +30567 imperfect +30573 aorist +30576 aorist +30581 present +30587 future +30592 imperfect +30600 aorist +30604 aorist +present +30613 aorist +30615 aorist +30621 aorist +30631 aorist +30649 present +30651 aorist +30658 aorist +30664 aorist +30671 aorist +30676 aorist +30678 present +30696 future +30698 future +30701 aorist +30705 aorist +30722 future +30727 aorist +30734 present +30736 aorist +30746 imperfect +30748 imperfect +30751 imperfect +30763 aorist +30768 aorist +30773 present +30780 aorist +present +30786 imperfect +30788 present +30795 aorist +30811 present +30815 present +30822 aorist +30826 perfect +30828 present +30831 aorist +30834 present +30837 aorist +30841 aorist +30844 aorist +30851 aorist +30854 aorist +30860 imperfect +30868 imperfect +30874 present +30876 present +30887 aorist +30892 aorist +30895 aorist +30899 aorist +30904 present +30906 aorist +present +30912 future +30917 aorist +30922 present +30932 future +30934 perfect +30936 present +30941 aorist +30948 present +30952 present +30965 aorist +30967 aorist +30977 imperfect +30981 aorist +30985 aorist +30990 perfect +30994 aorist +30997 aorist +aorist +31000 aorist +31010 present +31015 aorist +aorist +31021 aorist +31030 aorist +aorist +31034 aorist +31043 imperfect +31048 present +31054 aorist +31057 present +31059 present +31065 aorist +31067 aorist +31069 aorist +31074 aorist +31078 aorist +31081 aorist +31087 aorist +31093 aorist +31100 aorist +31110 aorist +31114 aorist +31118 perfect +31125 present +31130 future +31133 aorist +31137 perfect +31149 aorist +31151 imperfect +31164 present +31171 imperfect +31175 imperfect +perfect +31184 aorist +31189 aorist +31194 aorist +31204 aorist +31211 aorist +31215 perfect +31222 aorist +31228 aorist +31232 aorist +31235 present +31246 aorist +31254 aorist +31270 imperfect +present +31280 present +31284 aorist +31288 aorist +31294 aorist +31296 present +31308 present +31315 future +31319 aorist +31325 imperfect +31334 perfect +31338 aorist +31356 imperfect +31362 present +31370 aorist +imperfect +31375 imperfect +31380 present +31385 aorist +31392 aorist +31403 imperfect +31405 imperfect +present +31411 imperfect +31415 imperfect +31429 aorist +31432 present +31440 aorist +31445 present +31447 aorist +31455 aorist +31460 aorist +31462 present +31466 aorist +31470 imperfect +31480 aorist +aorist +31484 present +31487 aorist +31491 aorist +31496 present +31502 present +31505 present +31508 imperfect +31511 present +31521 aorist +31523 aorist +31525 aorist +31533 aorist +31536 aorist +31541 present +present +31545 aorist +31550 imperfect +31553 pluperfect +31560 present +31562 present +31566 aorist +31570 aorist +31573 aorist +31577 aorist +31581 imperfect +present +31588 imperfect +31598 imperfect +31618 present +31624 present +31633 present +31643 present +31649 aorist +31661 aorist +31668 present +31675 perfect +31683 present +31687 aorist +31692 present +31698 future +31704 future +31706 future +31718 future +31726 imperfect +31728 present +aorist +31736 aorist +31738 aorist +31741 present +31744 aorist +31751 aorist +present +31756 present +31760 present +31763 present +31770 aorist +31784 present +31789 present +31792 present +31796 present +31798 imperfect +31802 present +31805 aorist +31807 aorist +imperfect +31811 present +31814 aorist +31817 present +31820 present +31823 present +31825 aorist +31828 aorist +31830 aorist +31835 aorist +31838 aorist +31845 perfect +31847 present +31849 imperfect +31852 present +present +31855 aorist +31859 aorist +31862 aorist +31864 aorist +31866 present +31871 present +31875 present +31887 present +31890 aorist +present +31898 present +31901 present +31907 present +31909 aorist +31917 future +31930 aorist +31935 aorist +31945 future +31953 present +imperfect +31962 present +31977 aorist +31980 aorist +31985 aorist +31991 aorist +31994 aorist +32000 aorist +32002 present +aorist +32007 aorist +32022 aorist +32024 present +32032 aorist +32036 imperfect +present +32042 imperfect +present +32203 aorist +32208 imperfect +32217 present +32223 aorist +32230 aorist +32232 aorist +32234 aorist +32239 present +32243 aorist +32248 aorist +32251 aorist +32256 perfect +32262 future +32266 aorist +32268 aorist +32279 aorist +32284 future +32295 perfect +32299 present +present +32305 aorist +32308 future +32312 aorist +32315 aorist +32317 perfect +future +32326 future +32328 aorist +32333 aorist +32340 aorist +32343 present +32347 aorist +32352 perfect +32357 future +32361 aorist +32367 future +32371 aorist +32378 aorist +aorist +32384 perfect +32386 future +32392 aorist +32397 aorist +32403 aorist +32416 aorist +32425 imperfect +32430 present +32434 aorist +32438 imperfect +perfect +32441 aorist +32444 perfect +32455 aorist +aorist +32458 aorist +32465 aorist +32468 aorist +32472 imperfect +perfect +32480 aorist +32482 aorist +32484 perfect +32486 aorist +32492 aorist +perfect +32496 aorist +32501 aorist +32504 aorist +32507 aorist +32515 imperfect +present +32519 aorist +present +32525 perfect +32535 imperfect +32538 imperfect +32545 present +32551 imperfect +32555 present +32558 aorist +32562 future +32568 aorist +32570 aorist +32572 aorist +32576 aorist +32584 aorist +32586 present +32592 present +32600 present +32604 imperfect +32613 aorist +32623 aorist +32634 aorist +32648 imperfect +32659 aorist +32666 aorist +32672 present +32675 aorist +aorist +32682 aorist +32693 pluperfect +32695 aorist +32699 aorist +32703 imperfect +32705 aorist +32712 imperfect +present +32719 imperfect +32727 imperfect +32735 imperfect +32737 present +32742 aorist +32752 aorist +aorist +32755 perfect +32758 present +32764 aorist +32768 present +aorist +32771 aorist +32777 aorist +32782 aorist +32786 aorist +32789 aorist +32794 imperfect +32797 present +32807 present +32812 present +32814 imperfect +32824 aorist +32828 aorist +32837 imperfect +present +32842 aorist +32847 aorist +32850 aorist +32854 aorist +32858 aorist +imperfect +32862 present +32867 imperfect +present +32871 aorist +32882 present +imperfect +32886 imperfect +32891 present +32893 present +32896 present +32902 present +32904 imperfect +32906 present +32908 pluperfect +32912 present +32914 aorist +32916 aorist +aorist +32924 imperfect +32927 aorist +32931 imperfect +32935 present +32940 aorist +32948 aorist +32954 present +32958 aorist +32960 imperfect +present +32968 aorist +32973 present +32976 present +32983 imperfect +perfect +32990 aorist +32993 perfect +33002 aorist +imperfect +33007 aorist +33013 imperfect +33015 aorist +33020 aorist +33023 aorist +33027 imperfect +33032 aorist +present +aorist +33038 aorist +33043 aorist +33050 aorist +33052 aorist +33057 aorist +33059 aorist +33065 future +33070 aorist +aorist +33076 imperfect +33081 aorist +33089 aorist +aorist +33093 aorist +33095 aorist +33100 present +33103 aorist +33106 aorist +33110 present +aorist +33117 present +33121 aorist +33134 aorist +33144 imperfect +33149 aorist +33156 present +33161 future +present +33164 aorist +33170 aorist +33172 aorist +33175 aorist +33178 present +33185 aorist +33190 aorist +33193 aorist +33196 aorist +33198 present +33201 present +present +33204 aorist +33206 aorist +33209 aorist +33211 present +present +aorist +33218 aorist +33223 aorist +33226 aorist +33228 aorist +aorist +33234 aorist +33240 aorist +33246 imperfect +33253 imperfect +33256 present +33258 present +33265 imperfect +present +33271 present +33273 aorist +33280 imperfect +present +33283 imperfect +present +33289 imperfect +perfect +33303 imperfect +33306 present +33309 aorist +33311 present +33316 imperfect +perfect +33319 imperfect +33321 aorist +33323 aorist +33328 aorist +33330 aorist +33335 aorist +33342 aorist +33354 aorist +33358 aorist +33360 perfect +33366 aorist +present +33373 present +33375 present +33378 present +33381 present +33383 aorist +33392 aorist +33396 aorist +aorist +33401 present +33407 present +33409 aorist +perfect +33416 aorist +present +33419 present +33422 perfect +33429 present +33433 present +33435 aorist +33437 perfect +33439 present +present +33442 aorist +33446 present +33453 aorist +33456 aorist +33459 imperfect +aorist +33465 present +33470 aorist +33473 imperfect +33477 aorist +33479 present +33481 aorist +33487 aorist +33489 aorist +33493 present +33498 aorist +33500 present +33503 aorist +33505 aorist +imperfect +33509 aorist +33519 imperfect +33526 imperfect +present +33531 imperfect +33542 present +33550 present +33552 present +33554 aorist +33557 aorist +33563 present +33565 present +33569 present +33571 perfect +aorist +33580 aorist +33586 present +33590 present +33599 present +33601 present +33605 aorist +33609 present +33620 present +aorist +aorist +33624 future +33628 aorist +33634 future +33640 imperfect +33651 aorist +present +33662 future +33667 future +33676 present +33685 future +33694 future +33698 future +33708 aorist +33710 present +33713 present +33717 present +33719 aorist +33722 present +33727 imperfect +33729 imperfect +33735 present +33742 aorist +33744 present +33747 present +33751 aorist +33754 aorist +33758 aorist +33761 aorist +33764 aorist +33770 present +33772 aorist +33783 aorist +aorist +33786 aorist +33791 aorist +33793 present +33800 imperfect +33802 present +33811 aorist +33815 aorist +33821 present +33823 imperfect +33832 imperfect +33835 imperfect +33846 present +33848 aorist +present +33853 pluperfect +33858 aorist +33863 present +33866 present +33868 aorist +33873 aorist +aorist +33876 aorist +33881 present +33884 present +33887 aorist +33889 aorist +33891 aorist +33893 aorist +33895 aorist +33898 aorist +33900 aorist +33906 aorist +33908 aorist +33914 aorist +33917 imperfect +33922 aorist +33926 aorist +33931 aorist +33936 aorist +33938 imperfect +present +33947 aorist +33949 aorist +33954 aorist +33961 aorist +33965 aorist +33990 present +33999 aorist +34002 aorist +34005 aorist +34032 aorist +aorist +34036 aorist +34043 present +34047 imperfect +34052 imperfect +present +34059 imperfect +34061 imperfect +34065 aorist +34073 imperfect +34079 present +34086 present +34089 future +34092 present +34095 future +34097 present +34099 aorist +34105 aorist +34108 aorist +34110 aorist +34121 aorist +34127 aorist +34129 aorist +34141 imperfect +34153 present +34160 perfect +34163 future +34166 present +34169 future +34171 future +34176 aorist +34184 imperfect +34191 present +34194 present +present +34200 present +34202 present +34204 present +34206 present +34208 present +34211 present +34214 present +34219 present +34226 present +34234 aorist +34236 present +34238 present +34242 present +34246 present +34249 present +34251 present +34255 present +34260 present +34262 present +34267 present +34273 present +34275 present +34279 present +34281 present +34286 present +34292 present +34295 aorist +34298 present +aorist +34303 present +34307 present +34309 aorist +34313 present +34318 present +34320 present +34322 present +34324 future +34330 future +34336 present +34342 present +34349 present +34352 present +34356 aorist +34359 present +34363 aorist +present +34366 future +present +34369 future +34373 perfect +perfect +present +future +34384 present +future +34388 aorist +34393 present +34396 present +34401 future +34403 present +34409 perfect +34411 future +34418 present +34437 present +34439 present +present +34445 aorist +aorist +34462 present +34464 aorist +34474 future +34484 aorist +34487 present +present +34497 present +34507 present +34512 present +34518 present +34528 present +34537 present +34544 present +34551 present +34556 present +34558 present +34561 present +34565 present +34570 present +34572 future +34575 present +34578 present +34580 present +34583 aorist +34585 aorist +34587 aorist +34594 aorist +aorist +34603 aorist +aorist +34609 perfect +34613 aorist +34616 aorist +34618 present +34620 aorist +34628 aorist +34633 aorist +34635 aorist +34643 aorist +34653 aorist +34661 present +imperfect +present +34665 imperfect +34669 aorist +34673 aorist +34679 present +34682 aorist +aorist +34689 aorist +34693 imperfect +34696 present +34699 present +34701 future +34704 present +34712 aorist +34717 imperfect +34725 present +34729 aorist +34733 present +34737 present +34740 present +34747 aorist +34751 aorist +34754 aorist +34756 aorist +34759 aorist +34766 present +34770 present +present +34776 present +34778 aorist +34780 present +34783 present +34785 present +34790 aorist +34793 present +34795 aorist +34799 aorist +34802 aorist +34804 present +34807 aorist +present +34816 aorist +34818 aorist +34823 aorist +aorist +34827 present +34829 aorist +34833 aorist +34836 present +34839 imperfect +34849 aorist +34855 aorist +imperfect +perfect +34865 imperfect +34872 imperfect +34876 aorist +34880 aorist +34884 aorist +34887 present +34889 aorist +aorist +34895 present +aorist +34898 aorist +34901 present +aorist +34904 aorist +34908 aorist +present +34911 aorist +34917 aorist +34921 imperfect +34924 present +34928 aorist +34933 aorist +34940 aorist +34955 aorist +34964 aorist +34972 aorist +34976 present +34978 present +34980 present +34983 present +34985 aorist +34990 aorist +34994 aorist +34998 present +35000 present +35002 present +35005 present +35010 aorist +35022 aorist +present +35025 aorist +aorist +35028 aorist +aorist +35032 aorist +35034 aorist +35036 present +35038 present +35040 present +35043 present +35045 present +35047 present +35050 present +35054 aorist +35058 aorist +35062 aorist +present +35070 aorist +aorist +35078 present +35081 aorist +aorist +35087 perfect +aorist +35095 present +35099 present +35102 aorist +aorist +35106 present +35112 present +35115 perfect +aorist +present +35125 future +35131 present +35139 present +35150 present +35158 aorist +aorist +35162 aorist +35176 aorist +35180 aorist +35185 future +35193 present +35196 present +35201 present +35203 present +35206 present +aorist +35211 aorist +aorist +35215 aorist +35217 perfect +35222 present +35225 present +35228 present +35230 present +perfect +35236 present +35238 present +35240 present +aorist +35251 aorist +35260 imperfect +35266 aorist +35270 aorist +35276 aorist +35278 aorist +35281 imperfect +35287 aorist +35289 present +35295 aorist +35299 aorist +35305 present +aorist +35309 present +35319 imperfect +35321 imperfect +35326 imperfect +35330 aorist +35334 aorist +35336 aorist +35339 present +35342 imperfect +35345 imperfect +35352 present +35356 present +35358 aorist +35361 aorist +35365 present +35368 aorist +35372 aorist +present +35376 imperfect +35381 imperfect +35389 present +35391 aorist +35393 aorist +35398 future +35400 aorist +35402 aorist +present +35408 aorist +35411 aorist +35414 aorist +35416 aorist +35422 imperfect +present +35427 aorist +35437 aorist +35442 aorist +35450 aorist +35454 aorist +35459 aorist +35461 imperfect +present +35471 aorist +35475 aorist +35481 present +35483 perfect +35490 aorist +35495 present +35497 present +35499 aorist +35501 perfect +35506 aorist +35508 present +present +35514 present +35518 present +35520 aorist +35527 perfect +35529 present +35533 aorist +35539 imperfect +35544 present +35546 present +35560 imperfect +perfect +35569 present +35575 pluperfect +35588 imperfect +35592 present +35595 present +35602 present +35605 aorist +35608 aorist +35610 present +35612 aorist +35619 present +35623 aorist +35628 aorist +35634 aorist +35638 aorist +35643 aorist +aorist +35648 present +35652 aorist +35658 aorist +35661 aorist +35665 aorist +35672 aorist +aorist +35677 present +imperfect +35680 present +35682 present +present +35685 imperfect +35691 present +35697 aorist +35699 perfect +aorist +35713 present +35715 present +35717 present +35719 present +35721 present +35727 present +35737 present +35739 aorist +35741 present +35745 present +35754 aorist +aorist +35763 aorist +35766 present +35773 present +35777 present +35782 present +35788 aorist +35790 present +35792 aorist +35802 present +present +35806 present +35814 present +35821 aorist +35824 present +35826 present +35832 aorist +present +35839 present +35843 present +35846 present +present +35852 present +35857 future +35863 aorist +35867 aorist +35869 present +35871 present +35875 present +future +35882 present +35885 present +present +future +35891 aorist +35902 imperfect +aorist +35909 aorist +35918 perfect +35920 aorist +35922 present +35925 aorist +aorist +35935 present +35941 present +35943 present +35945 aorist +35952 aorist +35960 aorist +35963 aorist +35970 aorist +35972 present +35974 aorist +35976 aorist +35983 imperfect +35985 imperfect +35987 aorist +aorist +35990 present +35993 present +35996 aorist +aorist +36006 aorist +36008 aorist +36011 aorist +36018 aorist +aorist +present +36026 present +36034 present +36036 present +36039 aorist +36046 present +36052 aorist +36056 aorist +36062 present +36068 aorist +36074 imperfect +36080 aorist +36083 aorist +aorist +36089 aorist +36100 present +36104 aorist +36106 imperfect +36111 aorist +36118 pluperfect +36121 imperfect +36125 present +36127 present +36130 imperfect +36138 aorist +36145 present +36148 aorist +36151 aorist +36157 imperfect +36161 aorist +36166 aorist +36168 imperfect +36173 present +36178 aorist +36181 aorist +36185 aorist +36187 aorist +36192 aorist +36196 aorist +36201 aorist +36211 aorist +36214 present +aorist +36217 perfect +aorist +36220 aorist +36229 aorist +aorist +36232 perfect +36234 aorist +36239 aorist +present +36247 aorist +perfect +36250 present +36257 aorist +36259 aorist +36262 aorist +36264 aorist +36266 aorist +36268 aorist +36277 aorist +36283 imperfect +36286 aorist +36289 aorist +36291 imperfect +36297 pluperfect +36300 present +36304 aorist +36306 present +present +36313 present +36316 aorist +36320 aorist +36325 present +36327 aorist +36334 present +36337 aorist +36343 imperfect +present +36347 aorist +aorist +36358 imperfect +36360 aorist +36365 imperfect +36367 aorist +36378 imperfect +36382 imperfect +36386 present +36390 imperfect +36394 present +36403 aorist +36406 aorist +aorist +36409 aorist +36417 aorist +36424 aorist +36429 aorist +36432 present +36434 aorist +36440 present +36443 present +36447 aorist +aorist +36453 aorist +36455 perfect +36461 aorist +36464 aorist +present +aorist +36468 aorist +36473 aorist +36475 aorist +36482 aorist +36486 aorist +36492 perfect +36494 present +36499 present +present +36505 present +36507 perfect +36512 present +36518 aorist +aorist +36522 present +36524 aorist +36526 future +36528 aorist +36533 aorist +aorist +36555 imperfect +36557 imperfect +36561 aorist +36563 present +36565 aorist +36567 present +36569 imperfect +36571 perfect +36573 aorist +36576 aorist +36580 aorist +present +36584 present +36586 aorist +36591 aorist +36594 aorist +36596 aorist +aorist +36599 aorist +36605 aorist +36608 aorist +36610 perfect +36612 aorist +36615 aorist +36626 present +36628 aorist +36630 present +36636 present +36638 aorist +36642 present +36658 present +36664 aorist +36666 present +36669 present +36674 present +36676 present +36687 present +36693 present +imperfect +36698 present +36700 present +36703 aorist +36708 present +36711 imperfect +36714 present +36719 aorist +36727 aorist +36735 aorist +36737 aorist +36741 aorist +36744 present +36748 present +36751 imperfect +aorist +36755 aorist +36758 aorist +36761 aorist +36763 aorist +36765 aorist +36770 present +36775 aorist +aorist +36779 aorist +36781 imperfect +36792 present +imperfect +36797 aorist +present +36800 aorist +36803 aorist +36805 aorist +36809 aorist +36816 aorist +36818 aorist +36825 present +36827 aorist +36830 aorist +36832 aorist +36836 aorist +36838 present +36849 aorist +36851 aorist +36859 imperfect +36864 aorist +36869 aorist +36876 aorist +36879 aorist +36882 aorist +36890 aorist +36894 aorist +36897 aorist +36899 imperfect +36902 aorist +36906 aorist +36908 aorist +36911 aorist +36913 aorist +36919 aorist +36922 present +present +36927 imperfect +36932 aorist +36934 present +36937 present +36940 present +36943 aorist +aorist +36958 aorist +36960 aorist +36966 present +present +36970 aorist +aorist +36978 aorist +36980 aorist +36982 present +36984 aorist +36986 present +36992 aorist +36994 aorist +37003 aorist +37008 aorist +37010 imperfect +37015 present +37018 present +aorist +37022 aorist +37029 present +37034 present +37038 aorist +future +37044 aorist +37051 future +37055 present +37057 aorist +37063 aorist +37065 aorist +37069 aorist +37080 future +37082 aorist +37095 present +37098 present +37102 perfect +37106 aorist +37110 aorist +37116 aorist +37125 aorist +37131 aorist +37135 aorist +37137 aorist +37140 present +37153 present +37155 aorist +37158 imperfect +37161 imperfect +37166 aorist +37169 imperfect +37174 present +37177 imperfect +37185 imperfect +perfect +37189 aorist +aorist +37199 perfect +37202 aorist +37205 present +37209 aorist +37217 present +37220 present +37222 aorist +37234 perfect +37236 present +37240 present +aorist +37244 imperfect +37247 aorist +37250 aorist +37257 aorist +37261 present +37263 present +37268 perfect +37270 present +37274 aorist +37277 aorist +37282 aorist +37285 aorist +37292 perfect +37294 aorist +37298 aorist +37303 aorist +37308 aorist +37313 aorist +present +37316 present +37318 aorist +37326 present +37328 aorist +37330 present +37334 present +37336 present +37342 present +37345 present +37348 aorist +37353 aorist +37357 aorist +37359 aorist +37362 aorist +37367 perfect +37370 future +37374 future +37376 aorist +37383 present +37385 aorist +37390 aorist +37392 aorist +37400 aorist +37404 aorist +37410 imperfect +37419 present +37423 imperfect +aorist +37429 aorist +37443 present +present +37450 imperfect +37455 imperfect +perfect +37461 aorist +37464 imperfect +aorist +37472 aorist +37480 present +37485 perfect +37491 aorist +37493 aorist +37498 aorist +37502 aorist +37511 present +37516 aorist +present +37519 aorist +37527 present +37529 present +37532 aorist +37535 aorist +37537 aorist +37543 present +37546 imperfect +37550 present +37554 aorist +37559 present +37563 present +37568 present +37570 aorist +37573 present +37583 aorist +37585 present +37589 aorist +37595 aorist +aorist +37601 aorist +37605 aorist +37611 imperfect +present +37616 aorist +37622 aorist +37624 present +aorist +37627 aorist +37632 aorist +37635 aorist +aorist +37639 aorist +37644 present +37649 aorist +37653 future +37657 present +37659 aorist +37666 present +37679 present +37683 present +37685 aorist +37688 present +37692 aorist +aorist +37696 aorist +aorist +37702 aorist +37704 aorist +37707 aorist +37713 aorist +present +37720 aorist +37723 future +37728 aorist +37730 aorist +37737 aorist +37743 aorist +37749 present +37754 present +37762 aorist +37768 aorist +37781 imperfect +37783 present +37785 imperfect +37797 aorist +37804 aorist +37809 present +aorist +present +37819 present +37830 aorist +37836 aorist +37838 present +37846 present +37849 future +37860 future +37866 present +present +37869 present +37881 present +37891 present +37893 present +37895 present +37897 present +37900 present +37906 present +37908 perfect +37920 aorist +37923 present +37925 aorist +37930 aorist +37935 aorist +37944 present +37948 present +37950 perfect +37955 present +37964 future +37981 aorist +37985 aorist +37994 present +aorist +38001 future +38013 future +38017 future +38019 present +38022 present +38025 present +38028 present +38032 present +present +38035 aorist +38038 aorist +38043 present +38048 present +38055 aorist +38057 imperfect +38065 aorist +aorist +perfect +38072 present +38089 future +38094 present +38099 present +38101 present +38106 perfect +38114 aorist +38120 aorist +present +38131 aorist +38138 aorist +38147 aorist +38152 aorist +38159 present +38161 present +38170 present +38180 aorist +present +38185 aorist +38191 aorist +38196 present +38198 present +38200 present +38207 aorist +aorist +38211 present +38214 aorist +38216 aorist +38218 present +38221 aorist +38223 aorist +38226 aorist +present +38229 present +38232 aorist +38235 future +38238 aorist +38245 perfect +38247 present +38250 aorist +aorist +future +38287 aorist +38290 aorist +38292 present +38294 future +38297 present +aorist +38300 aorist +38306 present +38309 aorist +38312 aorist +38315 imperfect +38322 aorist +38325 aorist +38329 aorist +aorist +aorist +38338 imperfect +38344 aorist +38346 aorist +38354 aorist +38356 aorist +aorist +38361 present +aorist +38366 aorist +aorist +38369 aorist +aorist +38374 present +38379 aorist +38385 aorist +38390 aorist +38396 aorist +38399 aorist +38403 aorist +aorist +38410 aorist +38414 present +38416 future +38418 present +38424 perfect +38427 aorist +38433 aorist +38435 aorist +38441 aorist +38445 present +38448 present +38453 present +38456 aorist +38465 aorist +38472 imperfect +38474 present +38478 aorist +38484 imperfect +38491 imperfect +38496 aorist +aorist +38500 present +38508 present +imperfect +38511 aorist +38515 aorist +38517 aorist +aorist +38524 present +38526 present +38532 present +38540 aorist +38543 future +38546 aorist +38549 present +present +38556 aorist +aorist +38565 aorist +38567 present +38571 aorist +38576 aorist +38579 present +present +38582 aorist +38586 aorist +38595 present +38601 aorist +38609 present +38611 present +38615 aorist +38620 aorist +38626 future +38629 future +38634 aorist +38637 aorist +38644 aorist +38651 present +38653 future +38657 aorist +aorist +38662 present +38666 perfect +38676 present +38678 present +aorist +aorist +38682 present +38687 future +38689 aorist +38692 present +38700 aorist +future +38704 present +38707 present +present +38710 future +38712 present +38714 future +present +38717 future +38722 present +present +38726 present +present +38730 present +future +38738 future +38747 future +38750 future +38752 future +38759 present +perfect +38763 present +38774 future +38778 present +38781 imperfect +present +38786 imperfect +38789 aorist +38792 aorist +aorist +38797 aorist +38804 aorist +38811 present +38816 present +38820 imperfect +38825 perfect +38829 aorist +38835 aorist +present +38841 present +38849 aorist +38851 future +38856 present +38859 present +38868 present +38876 present +38882 future +38889 present +38893 aorist +38903 perfect +present +38910 present +38912 present +38918 aorist +aorist +38924 present +38927 pluperfect +38932 present +38935 present +38940 present +38944 present +38947 present +38952 aorist +38956 present +38960 present +38964 present +present +future +38972 aorist +38974 aorist +present +perfect +38978 perfect +38980 present +38982 present +38989 aorist +present +38993 present +39003 aorist +39006 present +39009 aorist +39016 aorist +39022 aorist +39027 aorist +39030 aorist +39034 present +39040 present +39044 present +aorist +present +39052 present +39054 present +39058 future +39067 aorist +39073 future +39084 future +39095 future +39098 aorist +39104 aorist +39109 aorist +39115 future +39124 future +39127 aorist +39133 aorist +39139 aorist +39142 present +39153 present +39156 present +39161 present +39170 present +39177 present +39181 present +39188 present +39196 present +39205 present +39209 future +39218 present +39223 aorist +present +39228 aorist +39232 aorist +aorist +39237 aorist +aorist +39242 aorist +39247 aorist +39263 present +39268 present +39275 aorist +39281 aorist +39284 present +aorist +39288 aorist +39292 present +39299 present +39309 present +39318 imperfect +39320 aorist +39323 aorist +39329 present +39344 present +39354 present +39357 perfect +39359 aorist +39363 present +39367 present +39370 present +39373 aorist +39380 present +39392 present +39398 present +39407 aorist +39411 present +39413 present +39422 aorist +39426 present +39434 aorist +future +39444 future +39446 future +39448 aorist +39455 perfect +39470 aorist +39478 present +39480 future +39490 aorist +39497 aorist +39500 present +aorist +39503 aorist +39505 aorist +39512 present +39514 present +39518 present +39520 aorist +39528 aorist +39534 present +39536 aorist +present +39543 present +39549 present +39555 present +perfect +39559 future +39564 future +39571 aorist +39575 future +39581 aorist +39585 future +39590 present +39596 aorist +39599 present +39606 present +39609 aorist +39611 future +39614 aorist +aorist +39619 aorist +present +39622 aorist +39627 present +39630 aorist +39634 present +39642 present +perfect +39655 perfect +39657 present +39660 present +39662 present +39667 aorist +39678 future +39688 aorist +39693 future +39702 future +39709 future +39717 aorist +39719 future +39722 present +39734 aorist +39738 aorist +39741 aorist +39746 future +39753 aorist +present +39756 aorist +39763 aorist +39767 aorist +39774 aorist +39779 aorist +39786 aorist +39789 present +39791 present +39799 present +39804 present +39807 present +39810 aorist +39814 present +39820 aorist +39822 imperfect +39825 present +39827 aorist +39830 present +39832 future +39837 aorist +39839 future +future +39846 future +39848 future +39858 future +39863 present +39866 present +39870 present +aorist +aorist +present +39875 aorist +39886 present +39891 aorist +39893 future +39896 present +39902 present +39904 aorist +39911 present +39914 present +39918 aorist +39923 aorist +39928 present +39936 aorist +39941 present +39943 present +39946 present +39953 present +39958 present +39965 present +present +39971 aorist +39977 present +39982 present +aorist +39988 present +39990 present +39992 present +40001 aorist +40011 present +40017 present +40021 present +40029 present +40031 aorist +40034 aorist +40037 present +40045 present +40050 perfect +40052 present +40055 present +40061 future +40064 present +40069 aorist +40073 aorist +40077 aorist +40079 present +40082 aorist +40084 aorist +40088 present +40097 present +40100 present +40103 present +40112 future +present +40117 perfect +40121 present +40126 present +40131 aorist +40136 aorist +40138 aorist +40140 aorist +40147 present +aorist +40151 future +40153 present +40156 future +40158 future +40161 aorist +future +40173 aorist +40175 aorist +40178 present +40182 present +40185 pluperfect +40192 present +40195 aorist +aorist +40202 present +40208 present +40213 present +40215 aorist +40224 present +40230 aorist +40235 present +40242 future +40250 present +40260 present +40262 aorist +40266 future +40268 present +40274 present +40276 future +40280 aorist +40288 present +40292 present +40294 aorist +present +40302 present +40304 present +40306 present +future +40317 present +40323 present +40325 future +40334 future +40340 aorist +40348 aorist +40350 aorist +40355 future +40360 aorist +40362 aorist +40365 future +40370 aorist +40373 future +40378 aorist +40381 future +40383 aorist +40385 aorist +40391 present +40394 aorist +40397 present +aorist +40401 present +40404 aorist +present +40407 aorist +40409 aorist +40413 present +40420 future +perfect +40436 future +40463 imperfect +40468 aorist +40470 present +40474 present +40477 present +40479 present +40484 present +present +40488 future +40490 present +40499 present +perfect +40507 present +40514 present +40519 present +40529 aorist +40531 perfect +40536 aorist +40545 future +40552 future +40555 present +40559 aorist +40566 aorist +40568 imperfect +40574 present +40583 aorist +40589 aorist +aorist +40592 present +40602 aorist +40605 perfect +40607 present +40612 present +40615 future +40623 aorist +40630 aorist +40632 present +40636 aorist +40642 present +40645 present +40650 aorist +40653 future +40655 imperfect +40660 imperfect +40662 perfect +40668 aorist +present +40675 aorist +40677 aorist +40681 aorist +40686 present +present +40695 present +aorist +40703 present +40706 aorist +present +40710 aorist +40718 aorist +40722 aorist +40726 aorist +40730 present +40734 future +40737 imperfect +present +40747 aorist +40751 present +40756 imperfect +present +40760 present +aorist +40766 aorist +40770 aorist +40772 aorist +40775 perfect +40780 aorist +40786 aorist +40788 imperfect +40792 aorist +40795 present +40799 aorist +40802 imperfect +40808 present +40811 present +present +40816 present +present +40825 aorist +40830 aorist +40837 present +40848 aorist +present +40851 aorist +40855 present +40857 aorist +40864 aorist +40874 imperfect +40877 present +40879 imperfect +40882 present +40888 imperfect +40894 present +40898 imperfect +40901 present +40908 future +40911 present +40915 aorist +40917 aorist +40922 aorist +40924 aorist +40932 aorist +40939 aorist +40941 future +40947 present +40950 aorist +40952 aorist +40959 aorist +40962 imperfect +40967 present +40970 present +40974 aorist +40981 present +40984 aorist +40987 present +aorist +40994 present +40997 future +aorist +41001 future +41005 aorist +41009 aorist +41013 aorist +41015 perfect +41017 present +41020 present +41022 aorist +41025 aorist +future +41029 perfect +41032 present +41034 future +present +aorist +41040 aorist +41046 aorist +41048 future +present +41052 perfect +41054 present +aorist +41062 future +41071 aorist +41088 present +41091 future +41102 future +41109 aorist +present +41113 future +41116 present +41119 future +41125 aorist +41128 present +41130 aorist +41132 present +41136 present +41138 aorist +41140 aorist +41142 aorist +aorist +41147 aorist +present +41152 present +41159 present +41161 present +41168 present +present +41172 present +41174 aorist +41180 present +41184 present +41186 perfect +41190 aorist +aorist +41206 aorist +aorist +present +41214 present +41218 aorist +41221 future +41223 aorist +perfect +41226 present +41231 aorist +41234 aorist +41244 aorist +41248 imperfect +present +41252 aorist +41256 imperfect +41260 aorist +41263 aorist +41269 present +present +41273 aorist +41278 aorist +41280 aorist +aorist +41284 aorist +41288 aorist +41296 future +41300 future +41308 aorist +aorist +41313 imperfect +41316 perfect +41318 present +41322 imperfect +present +41327 aorist +41333 aorist +41341 present +perfect +41346 aorist +41351 aorist +future +41354 aorist +41359 aorist +41365 present +41368 aorist +aorist +aorist +41377 aorist +41379 perfect +41381 future +41384 aorist +41387 future +41393 present +41398 present +41400 future +41403 present +41405 future +41407 imperfect +41410 perfect +41413 present +41418 present +41437 aorist +41440 aorist +41446 present +present +41454 future +41457 present +aorist +41461 future +41471 present +aorist +41474 aorist +41478 future +41487 aorist +41491 imperfect +41495 aorist +41498 aorist +41506 aorist +41508 perfect +present +41513 present +41515 aorist +41519 present +41522 aorist +41525 aorist +41527 present +41529 aorist +aorist +41532 present +41534 present +41536 perfect +41539 aorist +41543 aorist +41545 present +aorist +41548 present +41550 present +41552 perfect +41555 aorist +41557 aorist +41562 present +aorist +41565 aorist +41568 aorist +41574 aorist +41577 aorist +41581 aorist +41599 aorist +41602 aorist +41606 perfect +41608 aorist +41612 present +41614 aorist +41620 aorist +41627 aorist +aorist +41630 aorist +41635 present +41643 perfect +future +41649 imperfect +41654 aorist +aorist +41660 present +41665 present +41691 present +present +41697 present +41702 present +41706 present +present +41715 present +41717 aorist +41719 aorist +present +41724 present +41730 aorist +41735 present +aorist +41739 present +aorist +41742 present +present +41748 aorist +present +41752 aorist +aorist +41758 present +41761 aorist +41764 aorist +41766 future +41769 present +41773 aorist +41778 present +41787 present +41789 aorist +present +41801 present +41805 present +41807 present +present +41820 aorist +41823 future +41831 present +41833 present +41836 present +41838 present +present +41841 imperfect +present +41850 present +41853 imperfect +41860 present +41864 present +41866 present +41869 aorist +41875 present +41880 present +41884 aorist +41889 present +41897 present +41900 perfect +41902 aorist +41905 aorist +present +41911 present +41913 aorist +41917 present +41923 present +41925 aorist +41928 aorist +41933 perfect +present +41942 future +41946 present +41956 present +41962 present +41964 aorist +41968 present +41971 present +41975 present +41979 aorist +41981 aorist +present +41987 present +aorist +41991 aorist +41995 aorist +41997 present +41999 present +42009 present +42011 aorist +42014 imperfect +42018 aorist +42025 aorist +42028 present +42034 aorist +42043 aorist +42048 aorist +42054 aorist +42058 present +42061 aorist +42064 aorist +42073 aorist +present +42076 aorist +aorist +42085 aorist +42091 present +42094 imperfect +aorist +42103 imperfect +42108 imperfect +42113 aorist +imperfect +42120 present +42126 present +aorist +future +42134 future +42137 aorist +42145 present +42147 aorist +42150 aorist +42158 aorist +aorist +42168 present +aorist +42175 aorist +42177 aorist +aorist +42184 aorist +42187 aorist +42192 aorist +42200 present +42202 aorist +42206 aorist +42214 aorist +42219 aorist +42222 aorist +42234 present +42239 aorist +42241 aorist +aorist +42249 imperfect +42251 aorist +imperfect +perfect +42255 aorist +42257 aorist +present +42260 imperfect +42270 present +aorist +42274 aorist +42279 aorist +42283 imperfect +42286 present +42290 aorist +42296 present +42298 aorist +42307 present +42309 aorist +42311 aorist +42314 imperfect +aorist +42320 aorist +imperfect +42325 aorist +aorist +42329 aorist +42332 present +42338 aorist +42342 aorist +42349 aorist +42357 aorist +42363 aorist +aorist +42371 aorist +42378 present +42384 present +42386 aorist +42388 aorist +imperfect +42396 imperfect +42398 aorist +42400 perfect +42402 aorist +42404 imperfect +42411 imperfect +42414 imperfect +42418 aorist +42421 present +42423 present +42426 aorist +42428 aorist +42432 present +42435 aorist +42443 present +42445 present +42447 aorist +42453 aorist +42458 present +42463 present +42465 present +present +present +aorist +42470 aorist +42473 aorist +42477 aorist +42484 aorist +42492 imperfect +42496 present +42502 aorist +42508 aorist +42510 aorist +42515 aorist +42517 aorist +42521 aorist +42525 present +42528 aorist +42532 present +42534 aorist +42539 aorist +42542 aorist +42551 aorist +42569 present +42573 present +42575 aorist +42584 aorist +aorist +42599 present +42609 present +42618 aorist +42623 future +42631 aorist +42635 future +42639 present +42642 present +42647 future +42651 future +42654 future +42658 future +42660 present +42662 present +42666 imperfect +42672 present +42674 imperfect +42677 aorist +42680 present +42682 present +42690 present +42716 present +42721 present +42724 present +42730 aorist +42736 aorist +42739 present +42744 present +42746 present +42749 perfect +42752 present +present +42757 imperfect +42760 imperfect +42764 present +42773 pluperfect +42778 perfect +42780 present +aorist +42784 present +42794 present +imperfect +42800 aorist +aorist +42805 aorist +42815 aorist +42820 aorist +42825 aorist +42829 present +42832 present +42844 aorist +aorist +42848 aorist +42851 aorist +42854 aorist +42862 aorist +42867 present +42873 aorist +42876 aorist +42878 aorist +42894 present +42897 present +42908 perfect +42911 present +aorist +42917 present +42922 present +42924 aorist +42926 present +42930 aorist +42939 present +42943 present +42949 aorist +42957 present +42959 present +42964 aorist +42968 aorist +42977 aorist +42980 future +42982 aorist +42990 present +42996 aorist +future +42999 aorist +43005 present +43010 aorist +43015 present +present +43021 present +43027 perfect +43033 aorist +43038 present +43041 aorist +43045 aorist +43049 aorist +aorist +43057 aorist +43062 aorist +43065 present +present +future +43070 aorist +43075 aorist +43079 aorist +43083 present +43089 imperfect +43093 aorist +43095 aorist +43101 aorist +43107 present +43109 present +43111 present +43113 aorist +43117 future +43120 aorist +aorist +43124 future +43126 aorist +43128 aorist +43130 aorist +present +43134 aorist +43136 aorist +43140 future +43142 future +43145 present +43150 aorist +43152 aorist +43157 aorist +43160 aorist +43162 present +43166 present +43168 aorist +imperfect +perfect +43172 aorist +43175 present +43180 imperfect +43187 present +43192 aorist +43197 aorist +43201 aorist +43203 present +43206 aorist +43209 aorist +aorist +43212 aorist +aorist +43218 aorist +43221 present +43223 aorist +43228 aorist +43230 aorist +aorist +43235 present +43239 aorist +43246 present +43250 imperfect +43253 aorist +43256 aorist +43260 aorist +43266 aorist +aorist +aorist +43278 aorist +43280 aorist +present +43285 perfect +43288 aorist +43293 present +43298 aorist +43301 aorist +43303 present +43311 future +aorist +43317 aorist +43324 present +43326 aorist +43330 future +43333 future +43341 aorist +43344 future +43346 future +43348 aorist +43350 aorist +43353 aorist +43355 aorist +43360 present +43370 present +43372 future +43382 present +43386 aorist +43388 aorist +43395 aorist +43401 future +43410 imperfect +imperfect +imperfect +imperfect +43417 aorist +43423 aorist +43427 aorist +43431 aorist +43436 imperfect +imperfect +imperfect +imperfect +imperfect +imperfect +43445 aorist +43449 aorist +43456 aorist +43461 future +43468 present +43474 future +43486 aorist +aorist +43495 aorist +43499 present +43505 aorist +43509 aorist +future +43515 future +future +43518 present +43523 future +43530 future +43534 future +future +present +43543 future +43547 future +43549 aorist +present +43556 aorist +43565 future +43567 imperfect +43572 present +43574 present +43578 present +present +43582 imperfect +43589 present +43593 present +43596 imperfect +43602 imperfect +43605 present +aorist +43614 imperfect +43620 aorist +43628 present +43631 present +43635 present +43641 future +43647 present +present +43651 aorist +43654 aorist +43660 present +43666 aorist +43673 present +43679 present +43682 present +43685 future +43696 aorist +43698 future +43705 aorist +43710 perfect +43714 present +43717 present +43725 aorist +43729 aorist +43739 aorist +43743 imperfect +43746 present +43750 present +43765 present +43769 present +43772 present +43777 perfect +43779 imperfect +43783 aorist +43788 imperfect +43792 present +43795 aorist +43799 present +43801 aorist +43803 perfect +43813 present +43815 future +43818 present +43820 future +43822 imperfect +43829 present +43831 aorist +43834 imperfect +43839 aorist +43841 present +aorist +43845 present +43850 present +43855 present +43861 present +43866 aorist +43875 aorist +43879 aorist +43883 present +43887 aorist +43890 future +43892 aorist +43898 present +43909 perfect +43911 aorist +43913 aorist +43915 aorist +43917 aorist +present +43927 aorist +43930 aorist +43934 aorist +43937 aorist +43942 present +43945 present +aorist +43948 aorist +43951 future +43957 present +present +43962 aorist +43965 aorist +43967 imperfect +43971 aorist +43975 aorist +43981 present +43987 present +43990 present +43995 aorist +44003 aorist +44005 aorist +44007 aorist +44010 present +aorist +44014 aorist +44023 present +44025 aorist +44028 aorist +44030 aorist +44033 aorist +44037 aorist +44040 present +44044 present +44046 aorist +44064 aorist +44075 present +44079 aorist +44082 aorist +44085 aorist +present +44090 future +44093 perfect +44102 future +44106 future +44108 future +44110 future +44112 aorist +future +44120 future +44125 aorist +44127 imperfect +44131 perfect +44136 imperfect +44138 present +44140 aorist +44143 present +44149 imperfect +44153 present +44155 aorist +44157 present +imperfect +44160 present +44163 aorist +44169 present +44171 aorist +present +44176 aorist +44180 present +imperfect +44184 aorist +44189 imperfect +44192 aorist +44195 aorist +44198 aorist +44200 aorist +44204 aorist +44206 aorist +44210 aorist +present +44214 aorist +44217 aorist +44221 aorist +44223 aorist +44227 perfect +44231 aorist +44233 imperfect +44235 present +44242 aorist +aorist +44248 aorist +imperfect +44253 aorist +44256 present +44260 imperfect +44266 imperfect +aorist +44271 present +44274 imperfect +44282 imperfect +44284 aorist +44288 aorist +44292 aorist +44296 present +imperfect +44300 aorist +44304 aorist +44307 aorist +44311 aorist +aorist +44320 aorist +present +44323 aorist +aorist +44326 aorist +44328 present +44330 aorist +44332 imperfect +present +44338 aorist +aorist +44341 aorist +44343 aorist +44348 aorist +44353 present +44356 present +44361 aorist +present +44365 aorist +44376 aorist +44382 present +44384 aorist +44389 aorist +44391 aorist +44393 perfect +44395 present +44398 aorist +aorist +44403 present +44408 present +44412 present +44417 present +44419 aorist +44423 aorist +44427 aorist +44431 aorist +44433 aorist +44437 aorist +44442 aorist +44445 aorist +44448 present +44453 imperfect +44456 aorist +44460 present +44462 present +44464 aorist +44468 aorist +44471 aorist +44473 aorist +44477 aorist +aorist +44484 pluperfect +44488 aorist +44491 aorist +44493 aorist +44496 present +44503 aorist +44505 aorist +44514 aorist +present +44517 present +44522 aorist +44525 present +44530 aorist +44534 aorist +44542 present +44546 aorist +present +44549 aorist +44554 imperfect +present +44559 imperfect +44564 present +present +44568 aorist +44570 present +44573 aorist +present +44580 future +44584 pluperfect +44587 present +44590 present +44593 aorist +44595 present +44598 aorist +44603 aorist +44611 aorist +44615 aorist +44618 perfect +aorist +aorist +44626 aorist +44631 present +44633 aorist +44636 present +44639 present +44644 present +future +44650 present +44653 present +future +44662 aorist +44664 aorist +44667 aorist +44670 aorist +44675 aorist +44677 imperfect +44679 present +44683 aorist +44685 aorist +44694 present +44696 aorist +44700 present +present +44708 present +future +perfect +44717 aorist +44719 aorist +44721 aorist +44726 present +44729 present +44731 future +44737 present +44739 aorist +44741 perfect +aorist +44744 aorist +44747 present +44751 aorist +44758 present +44763 aorist +44769 present +44771 aorist +44777 aorist +44784 aorist +44788 present +44790 imperfect +44798 present +44808 aorist +44814 present +present +44823 aorist +44825 present +perfect +44828 present +44848 aorist +44852 aorist +44857 aorist +aorist +present +44863 future +44866 future +44869 aorist +aorist +44873 aorist +44876 present +44879 aorist +44891 aorist +44896 future +44901 future +44908 future +44911 future +44915 future +44925 future +44934 aorist +44941 aorist +44945 aorist +present +44948 present +present +44951 perfect +44953 future +44962 aorist +44966 imperfect +present +44980 imperfect +44982 aorist +44990 present +44993 aorist +44998 imperfect +45000 present +45002 aorist +45007 present +45015 present +aorist +45026 aorist +present +45030 aorist +45036 present +45039 present +45041 aorist +45047 aorist +aorist +45051 future +45056 aorist +45063 imperfect +45069 aorist +45072 present +45075 aorist +45078 future +45082 aorist +45086 aorist +45092 future +45095 perfect +present +45099 present +45101 aorist +45103 perfect +45108 aorist +45112 present +45118 present +45120 aorist +45124 present +45129 aorist +45132 aorist +45136 aorist +45141 aorist +45152 future +45157 aorist +45159 aorist +45162 aorist +45165 aorist +45169 aorist +45171 aorist +aorist +45175 aorist +45177 aorist +45182 aorist +aorist +45185 aorist +45191 aorist +future +45200 future +45202 aorist +45206 imperfect +45209 present +45211 present +45214 present +45218 aorist +45222 aorist +45227 aorist +45230 future +45236 future +45238 future +45243 future +45248 aorist +aorist +45251 aorist +45254 aorist +45256 aorist +45259 present +45261 perfect +45265 aorist +45267 present +45269 aorist +45275 aorist +45280 future +45285 aorist +future +45289 aorist +45295 aorist +45305 aorist +45309 aorist +45313 aorist +45318 aorist +aorist +45321 present +45324 present +45326 aorist +45330 aorist +45340 aorist +45342 present +45344 perfect +45347 present +45349 present +45352 present +45361 present +present +45366 aorist +45370 aorist +45374 aorist +45377 aorist +45380 present +45387 aorist +45391 aorist +45395 aorist +45407 aorist +aorist +45415 aorist +45420 aorist +45422 aorist +45427 present +45430 present +aorist +45433 present +45436 aorist +45441 aorist +present +45447 present +45449 aorist +45456 aorist +45464 imperfect +45468 aorist +45470 aorist +45478 aorist +45486 aorist +45489 aorist +45494 aorist +45504 present +45508 aorist +45512 aorist +45521 present +45523 present +45526 aorist +45530 aorist +45538 present +45540 present +45543 aorist +45545 present +45548 present +45552 present +45556 present +45559 present +45564 aorist +45569 present +45583 present +45586 present +45590 present +45592 aorist +45596 aorist +45599 aorist +45602 imperfect +present +45607 aorist +45611 present +45614 present +45620 present +45624 aorist +45629 present +45635 aorist +45647 present +45652 present +45654 present +45658 aorist +45661 present +45666 present +present +45671 present +45687 present +45695 present +45697 future +45701 aorist +aorist +45704 present +45713 aorist +45717 present +45722 aorist +45724 present +45734 aorist +45740 present +45742 aorist +45756 imperfect +aorist +45760 present +45769 perfect +aorist +45773 present +future +45779 future +45785 future +45787 aorist +45789 present +45794 future +45800 present +45802 present +45805 aorist +present +45808 aorist +45811 future +45816 present +45818 present +45822 perfect +45824 aorist +45829 aorist +45834 aorist +45836 present +45838 aorist +45846 imperfect +45848 future +45865 future +45873 future +45878 future +45885 future +present +45892 present +45901 future +45906 aorist +45912 present +aorist +45916 future +45923 future +aorist +45926 aorist +45929 present +45932 future +45943 future +45947 future +present +45963 aorist +45968 future +45974 aorist +present +45980 aorist +45982 perfect +45991 present +46000 present +46007 present +46014 present +46016 aorist +46019 perfect +46024 present +46027 present +46033 future +46045 future +46049 future +46056 future +present +46062 aorist +46066 future +46086 present +46093 present +46101 future +46104 future +46109 present +46118 present +46120 present +aorist +46123 aorist +46128 present +46133 aorist +46136 aorist +46144 aorist +46146 present +46149 present +46155 present +46160 aorist +46162 present +present +46166 present +46172 present +46177 aorist +46184 aorist +46190 future +46197 future +46199 present +46203 aorist +46215 aorist +46225 future +46229 present +46236 present +46240 present +46242 present +aorist +46247 present +present +46250 aorist +46257 imperfect +present +46267 present +imperfect +46273 present +46279 imperfect +46285 present +46288 imperfect +46294 present +46297 imperfect +46305 aorist +46308 imperfect +46312 aorist +46317 present +46319 present +46326 aorist +aorist +46335 aorist +46338 aorist +46340 aorist +46343 aorist +46345 aorist +46347 imperfect +46350 aorist +46356 aorist +46362 imperfect +present +46367 aorist +46371 aorist +aorist +aorist +46378 aorist +46381 aorist +46383 present +46385 aorist +46388 aorist +46390 aorist +aorist +46396 future +46401 present +aorist +46409 present +46411 future +46416 present +46421 present +46431 aorist +46434 future +46437 perfect +46439 aorist +46441 aorist +aorist +46444 pluperfect +46447 aorist +46452 aorist +46455 aorist +46462 aorist +46466 aorist +46470 aorist +46476 aorist +46478 present +46484 aorist +46488 aorist +46495 aorist +46497 aorist +aorist +aorist +46502 aorist +46506 present +46510 aorist +46525 aorist +46527 aorist +46529 aorist +aorist +46532 aorist +46534 present +46536 present +46543 present +46545 present +46556 aorist +present +46571 present +46573 aorist +46577 present +46592 perfect +present +46601 present +46604 aorist +present +46611 present +46616 present +present +46619 aorist +46627 present +present +46632 aorist +46638 present +46642 present +46645 present +46655 present +46661 present +46664 present +46669 present +46672 present +46675 present +46681 present +46684 present +46687 present +46689 perfect +46697 present +46700 aorist +46707 present +46709 present +46719 future +46727 present +46730 aorist +46733 aorist +46736 aorist +46742 aorist +46747 aorist +46754 aorist +aorist +46761 aorist +46767 present +46774 present +46777 aorist +present +46782 future +46789 perfect +future +46792 aorist +46795 aorist +46805 aorist +46808 aorist +46811 aorist +46816 present +46818 aorist +46825 present +aorist +46831 aorist +46834 present +46837 present +46840 perfect +46845 aorist +aorist +46855 present +46858 aorist +46860 aorist +46866 aorist +46869 present +46871 aorist +aorist +46882 aorist +46888 aorist +46892 aorist +46894 present +46896 aorist +46901 aorist +46908 aorist +46911 imperfect +present +46915 present +aorist +46930 present +46932 aorist +46937 present +46940 aorist +46944 imperfect +46946 aorist +46953 present +46958 aorist +46962 aorist +46966 aorist +present +46973 aorist +46976 present +aorist +present +46981 aorist +46986 present +aorist +46991 present +46996 imperfect +46999 aorist +47002 aorist +47006 aorist +47014 present +47019 aorist +47021 future +aorist +47025 future +47029 aorist +47039 aorist +47046 aorist +47049 aorist +present +47054 aorist +47057 aorist +47060 aorist +47064 aorist +47077 aorist +47084 present +47092 aorist +47099 present +47109 aorist +47111 aorist +47113 aorist +47122 imperfect +47125 aorist +47132 aorist +imperfect +47141 aorist +47143 present +47148 aorist +47150 aorist +47155 imperfect +47158 aorist +present +47161 perfect +47168 aorist +47170 imperfect +47175 present +47179 imperfect +47182 present +47184 aorist +47190 imperfect +present +47198 imperfect +47202 present +47204 aorist +47209 perfect +47211 present +47215 present +47217 aorist +47220 aorist +47223 aorist +47227 aorist +47235 aorist +47240 aorist +47242 future +47246 aorist +47248 aorist +47254 present +47256 imperfect +47258 present +47260 aorist +47262 imperfect +present +aorist +47266 present +47268 aorist +47273 imperfect +present +47279 aorist +47281 aorist +47291 aorist +47297 present +47300 present +47303 aorist +47306 aorist +47310 aorist +47313 aorist +47316 aorist +47319 aorist +47324 future +present +47337 aorist +47341 present +47350 imperfect +47352 present +47355 present +47358 aorist +47361 present +47366 aorist +47372 aorist +47377 aorist +47383 aorist +present +47386 present +aorist +47389 present +47394 present +47397 present +47399 present +47403 present +47407 aorist +47409 present +47411 present +47418 aorist +47420 imperfect +47422 present +47426 aorist +47434 present +47442 imperfect +present +47445 present +47448 present +47454 aorist +47462 aorist +aorist +47468 present +47470 aorist +47476 present +aorist +47481 present +47493 aorist +47496 aorist +47499 imperfect +present +47504 aorist +47508 present +47512 imperfect +aorist +47518 present +47520 imperfect +47528 aorist +47531 pluperfect +47538 present +47543 aorist +47550 aorist +aorist +47554 aorist +47559 aorist +47574 imperfect +47577 present +47582 aorist +47591 aorist +47594 aorist +47600 present +47604 aorist +47608 aorist +47610 aorist +47617 present +47624 aorist +47629 aorist +47633 present +perfect +47637 aorist +47639 future +47641 aorist +47643 present +present +47647 aorist +47652 imperfect +aorist +47657 aorist +47670 aorist +47672 present +aorist +47678 imperfect +present +present +present +47686 aorist +47692 aorist +47697 aorist +47701 aorist +47703 future +47706 imperfect +47709 present +47711 aorist +47713 imperfect +47719 aorist +aorist +47725 aorist +47731 perfect +47735 imperfect +47739 aorist +47745 aorist +47747 aorist +47751 present +47754 aorist +47758 present +47763 imperfect +47772 imperfect +47774 imperfect +47777 aorist +47781 aorist +47785 present +47791 present +47798 aorist +present +47803 future +47812 aorist +47817 aorist +47819 future +present +47823 aorist +47829 aorist +47837 present +47842 aorist +47844 imperfect +47851 aorist +47854 aorist +47859 present +47862 aorist +47878 imperfect +47880 aorist +47884 perfect +47886 present +47888 present +47892 aorist +47895 pluperfect +47898 present +47900 imperfect +47904 present +47906 aorist +aorist +47911 present +47919 aorist +47924 present +47926 present +47929 present +47932 present +47937 aorist +47940 imperfect +47953 aorist +47955 imperfect +47959 present +47962 aorist +47967 aorist +47970 present +47972 imperfect +47974 present +47983 present +47991 aorist +present +47997 aorist +47999 imperfect +48001 aorist +48004 aorist +48010 aorist +48014 present +48018 future +48023 imperfect +48030 aorist +48040 present +48042 aorist +48049 aorist +48054 aorist +48059 present +48065 aorist +aorist +48070 aorist +48072 aorist +imperfect +48076 present +48082 imperfect +48086 aorist +48092 aorist +48094 aorist +present +48098 imperfect +48100 pluperfect +48110 present +48115 present +48118 aorist +48122 present +48130 imperfect +perfect +48144 imperfect +48150 aorist +48153 aorist +48159 aorist +aorist +48164 aorist +48171 imperfect +present +48178 imperfect +48181 imperfect +48183 aorist +48187 imperfect +perfect +48193 aorist +48198 aorist +48203 aorist +aorist +48212 aorist +48226 aorist +present +48229 aorist +48232 aorist +48235 perfect +48240 aorist +48242 aorist +48249 aorist +48252 present +48257 aorist +48260 aorist +48264 present +48267 aorist +48270 present +48276 aorist +48280 present +48282 present +48287 present +48290 aorist +aorist +48293 aorist +48296 present +48300 present +48302 present +48307 aorist +48313 aorist +48318 aorist +48320 aorist +48325 aorist +48329 aorist +48339 imperfect +48354 imperfect +48360 aorist +48369 imperfect +48374 aorist +aorist +48380 aorist +present +48386 aorist +48389 present +48391 perfect +48393 aorist +48401 imperfect +present +48405 present +48415 imperfect +48421 perfect +48424 aorist +48427 present +48430 present +48434 aorist +imperfect +48441 imperfect +48444 aorist +48447 aorist +48455 present +48458 present +48460 aorist +48463 aorist +48467 aorist +48472 present +48476 aorist +48478 aorist +48486 aorist +48491 aorist +48499 aorist +48516 aorist +48528 aorist +48532 imperfect +48535 present +48537 present +present +48550 present +48554 aorist +48561 aorist +48563 aorist +48570 aorist +48574 aorist +present +48579 perfect +48581 present +48583 present +48585 aorist +48594 aorist +48600 aorist +48604 aorist +48607 aorist +48617 present +48621 aorist +48625 imperfect +48627 aorist +48631 aorist +48637 aorist +48645 aorist +48655 aorist +48660 imperfect +48663 aorist +48665 present +48667 aorist +48669 present +aorist +48676 present +48678 perfect +48683 aorist +48685 aorist +48689 aorist +48692 aorist +48696 aorist +48699 aorist +48701 aorist +imperfect +48708 aorist +48710 aorist +48715 aorist +48719 aorist +48726 present +imperfect +48731 imperfect +48737 imperfect +48742 aorist +48746 aorist +48750 aorist +perfect +48758 present +48761 aorist +48765 aorist +48769 imperfect +48776 aorist +48786 present +48788 aorist +48793 present +48798 aorist +48801 aorist +imperfect +48804 present +48806 aorist +48809 perfect +present +48815 present +48820 aorist +48830 present +48832 aorist +48835 aorist +48842 present +48845 present +present +48849 aorist +aorist +48859 present +48865 present +aorist +48868 present +48874 aorist +48880 aorist +48883 aorist +48885 aorist +48893 aorist +48897 present +48901 present +aorist +48905 perfect +48918 aorist +48923 present +48927 aorist +48931 perfect +aorist +48936 aorist +48943 aorist +48956 aorist +48963 aorist +48965 present +48975 aorist +48981 aorist +48986 aorist +48992 aorist +48996 aorist +48999 aorist +49002 present +49005 aorist +49009 imperfect +49015 aorist +49017 aorist +49024 imperfect +present +49035 imperfect +49041 imperfect +49047 imperfect +49051 imperfect +49060 aorist +49064 aorist +49068 perfect +49072 imperfect +49076 imperfect +49087 present +49093 aorist +aorist +49096 perfect +49103 aorist +49107 aorist +49113 aorist +49117 imperfect +49123 aorist +49132 present +49135 imperfect +present +49143 imperfect +49149 aorist +49155 aorist +49159 aorist +49165 aorist +49168 aorist +49170 aorist +49174 aorist +49177 present +49197 aorist +49202 aorist +49204 aorist +49208 aorist +49222 present +49226 perfect +present +49229 imperfect +49231 aorist +49235 present +49238 perfect +49242 imperfect +49250 aorist +49260 aorist +49269 aorist +49272 perfect +49277 present +49284 aorist +49287 present +49293 aorist +49304 aorist +49308 present +49310 aorist +49313 aorist +49315 aorist +49319 present +49323 aorist +49329 present +49331 present +49333 present +49336 present +49339 aorist +49342 aorist +49345 present +49348 aorist +49350 aorist +49353 present +49356 imperfect +49359 present +49363 aorist +49368 aorist +49373 perfect +imperfect +49379 aorist +49382 aorist +49386 present +49390 present +49398 aorist +49402 present +49404 present +49409 present +49413 perfect +49417 present +49420 present +49424 aorist +49433 aorist +49438 imperfect +present +49444 present +49447 present +49451 present +aorist +49458 present +49464 present +49468 aorist +49471 present +49476 perfect +49480 imperfect +49483 pluperfect +49487 aorist +49492 aorist +49496 present +49498 aorist +49500 present +49502 perfect +49505 present +49511 aorist +49516 pluperfect +49520 aorist +49522 present +49527 aorist +49531 aorist +49534 present +49536 present +49540 present +49542 present +49547 perfect +49549 perfect +49552 present +49560 pluperfect +49570 aorist +49573 present +present +aorist +49581 aorist +49586 present +49588 aorist +49594 aorist +49596 aorist +49598 present +present +49602 present +49605 aorist +49609 present +present +49613 present +present +49616 present +49618 future +49620 aorist +49622 aorist +49624 present +49628 aorist +49633 imperfect +49636 imperfect +49647 aorist +49651 aorist +49653 present +49662 present +49664 perfect +49668 present +present +49671 aorist +49676 aorist +49680 aorist +49682 present +49688 future +49691 present +49695 aorist +aorist +49701 present +49704 present +49708 present +49711 imperfect +49722 present +49727 present +49730 aorist +49738 perfect +49747 aorist +49752 present +present +49756 present +49760 present +49762 aorist +aorist +49767 present +49771 present +49774 aorist +49781 present +present +49787 present +aorist +49791 aorist +49797 aorist +present +49803 aorist +aorist +49809 present +49818 present +aorist +49822 aorist +49825 aorist +49828 aorist +49833 present +49836 future +49838 present +49842 present +49844 future +49847 perfect +49853 present +49855 present +49867 aorist +49873 imperfect +49880 aorist +49892 aorist +49894 present +49903 present +49905 present +49915 present +49919 present +49928 present +49930 aorist +49932 imperfect +present +49943 present +49949 present +49953 aorist +49958 aorist +49963 present +49965 aorist +49968 present +49973 aorist +49976 aorist +49982 perfect +49985 pluperfect +49987 present +49989 pluperfect +49993 perfect +49996 present +50002 present +50010 present +50013 aorist +50017 perfect +50027 aorist +50035 aorist +50040 aorist +50048 aorist +50065 aorist +50071 imperfect +50077 aorist +50083 aorist +50088 present +50097 present +50099 aorist +50104 aorist +50119 aorist +50123 aorist +50128 present +aorist +aorist +50134 present +50142 aorist +50147 perfect +present +50154 future +50157 aorist +50161 aorist +50165 present +50169 present +aorist +50173 aorist +50175 aorist +50183 future +50186 aorist +50193 aorist +50202 future +50206 imperfect +50215 aorist +50218 aorist +50224 imperfect +50226 aorist +50233 aorist +50238 imperfect +50249 aorist +50254 present +50259 imperfect +50264 imperfect +50270 present +50276 imperfect +50279 aorist +50285 imperfect +50287 imperfect +50292 imperfect +50304 aorist +50309 aorist +50312 perfect +50316 perfect +50320 present +50326 present +present +50330 present +50335 aorist +50338 aorist +50342 present +50347 aorist +50350 present +aorist +50356 present +50362 present +50364 aorist +50366 present +50368 present +50376 aorist +50378 aorist +aorist +50383 present +50388 aorist +50394 present +aorist +50402 perfect +50407 present +50410 perfect +50415 present +50417 aorist +50419 aorist +50421 present +50423 aorist +50428 present +present +50434 present +50437 perfect +50439 present +50442 present +50444 present +50447 perfect +50451 aorist +50454 aorist +50457 present +50459 aorist +aorist +50463 aorist +50466 present +50474 present +50477 present +50481 perfect +present +50485 perfect +present +50492 present +50496 aorist +50500 present +50503 aorist +50507 future +50510 perfect +50520 aorist +50528 aorist +50535 present +aorist +50544 present +50547 present +50552 aorist +50562 aorist +50566 present +50570 aorist +50572 present +50577 aorist +50586 present +50591 aorist +50597 present +50601 present +50604 present +50606 perfect +50609 perfect +50620 present +50626 perfect +50631 aorist +50641 imperfect +50650 present +present +50656 present +50662 aorist +50668 present +50671 present +50676 aorist +50683 present +perfect +50687 aorist +50700 imperfect +50704 imperfect +50706 imperfect +present +50718 imperfect +50721 imperfect +50723 imperfect +50726 imperfect +perfect +50733 aorist +50744 aorist +50749 aorist +50753 imperfect +50761 perfect +aorist +50764 present +50767 present +50770 aorist +50773 aorist +50775 present +50777 present +50781 present +perfect +50790 present +50792 aorist +50794 present +50800 perfect +present +50805 present +50809 present +50816 perfect +50818 present +50821 present +50833 perfect +present +50836 present +50839 present +50842 present +50845 present +50847 present +50854 present +50859 present +50864 present +50867 present +50869 perfect +50871 aorist +50873 present +50879 present +50881 aorist +50885 aorist +50890 present +50893 aorist +50900 present +50905 present +50910 present +50915 perfect +50921 present +50925 present +50930 present +50934 future +50941 present +50946 aorist +50950 aorist +50957 present +50959 present +50966 imperfect +50971 aorist +50975 aorist +50981 imperfect +50983 present +50988 present +50993 present +50999 aorist +51006 imperfect +51014 perfect +51018 imperfect +51024 imperfect +51027 present +51032 aorist +51034 present +51038 aorist +51040 aorist +51045 pluperfect +51051 aorist +51053 present +51062 present +51067 present +aorist +present +51072 present +51075 aorist +51078 aorist +51081 pluperfect +51088 present +51090 present +51092 aorist +51094 aorist +51097 aorist +51101 aorist +51104 present +present +51110 present +51114 present +51118 present +51122 present +51126 present +51132 aorist +51140 aorist +51149 aorist +51152 aorist +51156 present +51161 future +51166 aorist +51172 future +51176 future +51184 future +51186 future +51191 present +51195 present +51201 aorist +51208 present +51210 present +51212 present +present +51215 present +aorist +51221 aorist +51223 aorist +51227 aorist +51229 present +51231 present +51236 aorist +51240 present +51244 aorist +51248 present +51250 present +51255 perfect +present +51261 present +51264 present +51273 aorist +51276 present +51280 present +51284 present +present +present +51290 present +51294 present +51305 future +51309 present +51312 perfect +51314 present +51316 perfect +51323 present +51325 present +51329 present +51334 future +51346 present +51348 present +51355 present +51360 present +present +present +51366 perfect +51370 present +51372 present +51374 aorist +51376 future +51379 present +51385 present +51387 present +51391 aorist +51396 imperfect +51400 imperfect +51403 aorist +51405 present +51408 present +51412 aorist +51419 aorist +51424 present +51427 present +aorist +51431 aorist +51435 aorist +51438 present +51441 aorist +51446 imperfect +51452 imperfect +51456 present +51458 aorist +51461 aorist +51465 present +aorist +51470 perfect +51472 imperfect +51479 aorist +51481 aorist +present +51488 present +51490 present +51494 aorist +51497 aorist +51503 present +51507 present +51511 present +aorist +present +51515 aorist +51520 aorist +51525 present +51530 present +51532 present +51534 present +51541 present +51543 present +51546 present +51552 present +51556 present +51558 present +51562 present +51564 aorist +51566 present +51570 perfect +51572 perfect +51579 perfect +51588 aorist +51596 present +51598 aorist +51602 aorist +51605 aorist +51610 imperfect +51612 aorist +51616 aorist +51623 aorist +51631 imperfect +51638 present +51641 perfect +51643 perfect +51646 present +51657 aorist +51665 aorist +51674 present +51677 aorist +51681 aorist +51685 perfect +51688 aorist +51697 aorist +51702 aorist +51710 aorist +51715 imperfect +51721 imperfect +51725 aorist +51728 present +51735 aorist +51739 imperfect +51741 aorist +51743 aorist +51748 imperfect +present +51751 aorist +51761 aorist +51764 aorist +present +51771 aorist +51773 aorist +51777 present +51781 present +51785 present +aorist +51792 aorist +51797 imperfect +51801 present +51804 aorist +51806 present +51811 present +51813 aorist +51821 aorist +51823 aorist +51829 aorist +51834 aorist +51843 aorist +51850 present +51852 aorist +51864 aorist +51867 aorist +51876 imperfect +51881 aorist +51886 present +51895 present +51900 present +51903 imperfect +51906 present +51910 present +51919 imperfect +51924 aorist +51930 aorist +51937 imperfect +51940 imperfect +51943 imperfect +51951 present +51959 present +aorist +51962 aorist +51967 present +present +51970 present +51972 aorist +aorist +51976 present +51980 present +51983 aorist +51986 aorist +51994 present +51999 present +present +52004 present +aorist +52010 present +52013 aorist +52018 aorist +52023 imperfect +52025 imperfect +52032 imperfect +52036 perfect +52038 present +52041 present +52043 aorist +52048 aorist +52051 aorist +52056 aorist +aorist +52062 present +aorist +52066 present +52070 aorist +52072 aorist +52074 present +52077 aorist +52079 pluperfect +52081 present +52085 aorist +52087 present +52093 present +52101 aorist +52103 aorist +52105 perfect +52107 present +52113 aorist +aorist +52118 aorist +52123 present +52125 aorist +52131 imperfect +52138 imperfect +52143 aorist +52150 present +52152 present +52157 imperfect +52159 aorist +52165 imperfect +52172 imperfect +52177 present +52181 aorist +52185 imperfect +52189 present +52192 present +52195 present +52201 present +52205 present +52210 present +52216 present +52220 present +52224 present +52229 present +52234 future +52238 present +52243 present +52247 present +52253 present +present +52259 present +52265 perfect +52270 present +52274 present +52279 present +52283 present +52287 aorist +52291 present +52298 present +52300 present +52302 aorist +52304 present +52311 present +52313 perfect +52322 present +52325 present +52329 present +52333 future +52342 aorist +future +52348 present +52356 aorist +52358 present +52363 aorist +52366 present +52370 present +52372 present +52375 present +52384 future +52389 future +52393 aorist +52400 aorist +52405 present +52407 present +52412 present +present +52420 present +52423 present +52432 aorist +52436 present +52443 present +52446 present +52448 present +52452 perfect +52455 present +52459 present +52463 perfect +52467 perfect +52477 present +52480 present +52483 aorist +52485 imperfect +52489 present +52491 present +52494 aorist +aorist +52504 present +52514 perfect +52519 aorist +52525 present +present +52533 perfect +52536 aorist +52540 perfect +52547 perfect +52551 perfect +52554 present +52560 present +52563 aorist +52568 present +present +52574 present +52579 present +52582 present +52584 present +52589 present +aorist +52595 present +52600 present +52602 perfect +52610 present +52614 perfect +52623 present +52627 aorist +52634 future +52636 present +52638 aorist +52642 present +52652 present +52654 present +52657 future +52662 present +52664 present +52670 perfect +52673 imperfect +52676 imperfect +52682 aorist +52689 present +52694 future +52697 aorist +52708 imperfect +52713 imperfect +52717 imperfect +52720 present +52722 aorist +52729 imperfect +52735 imperfect +52746 aorist +52750 aorist +52754 present +52757 present +52761 aorist +52764 aorist +52768 imperfect +present +52773 pluperfect +52775 present +imperfect +aorist +52785 present +52791 aorist +present +52804 present +52808 present +52818 present +52821 aorist +52824 aorist +52827 aorist +52829 imperfect +52836 aorist +52844 aorist +52850 aorist +aorist +52853 present +52860 imperfect +52863 aorist +present +52868 aorist +52870 aorist +52875 aorist +52877 aorist +52879 aorist +52890 aorist +52892 perfect +52896 aorist +52898 aorist +52900 imperfect +52903 present +52908 present +52913 aorist +52915 present +present +52918 present +52921 aorist +52923 aorist +52934 aorist +aorist +52943 aorist +52946 imperfect +52955 pluperfect +52958 pluperfect +52968 present +imperfect +52971 perfect +52978 present +52981 present +52989 present +52991 aorist +52994 present +52997 present +52999 present +53001 imperfect +aorist +53009 aorist +53017 imperfect +53023 perfect +53027 aorist +53032 imperfect +53040 aorist +53054 aorist +53057 aorist +53064 aorist +53067 aorist +53072 aorist +53078 present +53084 aorist +53090 aorist +53093 present +53097 aorist +53102 aorist +53107 perfect +aorist +53113 aorist +53116 present +53118 present +53122 aorist +53126 aorist +53131 aorist +present +53137 present +53142 present +53152 future +53159 aorist +53161 aorist +53165 present +53167 present +53172 aorist +53175 aorist +53178 present +53184 present +53187 aorist +53190 aorist +53195 present +53198 aorist +53200 aorist +53203 present +53209 aorist +53214 present +perfect +53220 aorist +53222 aorist +53224 aorist +53230 present +53234 perfect +53245 present +53259 present +53261 present +53267 present +53271 aorist +53276 aorist +53281 aorist +53286 present +53292 present +53297 aorist +53300 present +53305 future +53308 aorist +53312 perfect +53316 present +53319 present +53325 future +53328 present +53333 aorist +53336 perfect +53342 present +53351 aorist +53355 present +53359 aorist +53364 perfect +53367 aorist +53371 aorist +53379 present +53388 present +53392 present +53395 present +53399 aorist +53407 imperfect +53413 aorist +53415 present +53419 aorist +53424 imperfect +53427 present +53434 perfect +53442 present +53447 perfect +aorist +53451 aorist +53454 present +53458 present +aorist +53467 aorist +53469 aorist +53472 future +53478 present +perfect +53484 future +53490 aorist +53495 aorist +present +53503 perfect +53508 present +53513 perfect +53518 present +53521 present +present +53526 present +53534 aorist +53541 aorist +53543 present +53550 present +53555 aorist +53558 aorist +53560 present +53564 present +53569 aorist +53572 aorist +53577 future +53587 future +53591 present +53598 imperfect +53603 present +53605 present +53608 aorist +53611 aorist +53613 aorist +53619 present +53623 aorist +53631 aorist +53636 present +53641 present +53646 present +53650 present +53654 future +53665 present +53672 present +53674 present +53679 present +53685 present +53690 aorist +53693 present +53696 present +53702 present +53705 future +53709 present +53715 aorist +53718 aorist +53722 aorist +53724 present +53728 future +53733 aorist +53736 present +53745 aorist +aorist +53748 present +53753 present +53755 present +53759 perfect +53763 present +53769 aorist +53773 present +53776 present +53781 present +53783 imperfect +53788 present +53790 present +53794 present +53800 perfect +53803 present +53806 present +53808 present +53814 present +53816 pluperfect +53822 present +53825 present +53828 present +53830 future +53833 imperfect +53836 perfect +53840 present +aorist +53846 present +perfect +53858 aorist +53866 imperfect +53868 aorist +53876 present +present +aorist +53885 future +53889 present +53892 perfect +53894 perfect +53897 present +53902 aorist +53911 aorist +53917 present +53919 imperfect +53926 imperfect +present +53936 imperfect +53944 imperfect +53948 present +53950 imperfect +53952 aorist +53956 imperfect +53965 aorist +53971 aorist +53974 present +53983 future +53988 present +53994 present +53996 present +54000 present +54003 present +aorist +54013 imperfect +54017 present +54026 present +54033 present +54036 present +54039 present +54043 present +54046 present +54054 present +54056 aorist +54062 present +54072 perfect +54075 aorist +54077 aorist +54083 aorist +54093 aorist +54103 imperfect +54109 imperfect +54111 present +54117 imperfect +54124 imperfect +54127 present +54130 imperfect +54133 present +54139 imperfect +54151 present +aorist +54158 imperfect +54160 imperfect +54163 present +54167 perfect +54169 perfect +54171 aorist +54175 aorist +54180 present +54184 aorist +54188 present +54192 present +future +54201 present +54206 present +54210 present +54215 present +54218 present +54222 aorist +54226 present +54232 present +54235 aorist +54243 present +54248 aorist +present +aorist +54254 present +54257 aorist +present +aorist +54262 aorist +54266 aorist +54269 present +54273 perfect +54282 present +54290 present +54294 present +54300 aorist +54305 present +54310 aorist +54314 present +54321 aorist +54323 imperfect +54330 present +54332 aorist +present +54335 aorist +54337 present +54341 present +54345 aorist +54350 present +54355 perfect +54357 present +54362 present +54364 present +54366 present +54368 aorist +54372 present +54376 present +54378 perfect +54380 perfect +54382 present +54387 perfect +54389 present +54392 aorist +54397 perfect +54399 perfect +54404 present +54407 aorist +54409 imperfect +54411 aorist +54414 aorist +54421 pluperfect +54430 aorist +54434 imperfect +54438 aorist +54442 future +54445 aorist +aorist +54451 present +54456 aorist +54464 aorist +54467 aorist +54475 present +54477 present +54480 aorist +54482 future +54486 future +54489 present +54491 aorist +54494 present +54496 aorist +54502 present +54504 present +54508 future +54511 present +54517 present +54519 present +54523 present +54528 aorist +future +54533 future +54536 present +54538 aorist +54541 present +54551 pluperfect +54555 aorist +present +54559 present +present +54564 present +54566 present +54570 aorist +54575 present +54580 future +54583 aorist +54588 present +imperfect +54591 aorist +54596 imperfect +54601 aorist +54606 aorist +54610 imperfect +54612 present +54617 imperfect +54619 present +54624 imperfect +54632 present +54636 aorist +54648 imperfect +54650 present +54655 aorist +54665 imperfect +aorist +54670 aorist +54676 aorist +54685 aorist +54691 aorist +54693 aorist +54697 aorist +54704 present +54706 aorist +54713 perfect +54719 aorist +54732 present +54736 present +present +54742 aorist +54746 present +54754 present +54759 aorist +54764 aorist +54766 present +aorist +54769 aorist +54777 present +aorist +54780 aorist +54787 present +54789 aorist +54797 aorist +54806 aorist +54814 imperfect +54818 aorist +imperfect +54822 present +54833 perfect +54835 aorist +54839 present +54845 aorist +54847 present +54854 aorist +54857 present +54861 present +54864 imperfect +present +54868 present +present +54875 aorist +54878 imperfect +54884 imperfect +present +54887 aorist +aorist +54899 aorist +54903 aorist +imperfect +54910 aorist +54915 present +imperfect +54919 aorist +54927 aorist +54936 perfect +54940 aorist +54943 aorist +54947 aorist +54952 present +54959 aorist +54962 aorist +54966 aorist +54973 present +present +54977 present +54981 aorist +54984 present +54986 present +54992 present +54996 aorist +55001 future +55007 aorist +55014 present +55019 present +55021 aorist +55024 aorist +55028 present +55032 present +55037 perfect +55039 aorist +55042 present +55046 perfect +55048 present +55051 present +55056 present +55059 present +55064 present +55071 present +55075 present +55080 aorist +55089 perfect +55096 present +55098 present +55100 present +55104 present +55108 aorist +55112 imperfect +55115 present +55119 aorist +55123 perfect +55130 pluperfect +55136 pluperfect +55140 aorist +55144 present +55150 aorist +55154 pluperfect +55159 aorist +55163 present +55165 future +55172 future +55175 present +aorist +55179 present +55181 imperfect +55185 future +55188 present +55191 present +aorist +55195 present +55197 imperfect +55203 present +55208 present +55214 present +55217 present +55223 aorist +55226 future +55234 aorist +55237 present +future +55244 imperfect +55248 present +aorist +55258 present +55260 present +55264 present +55266 present +55269 aorist +55272 present +55275 aorist +55279 present +55284 aorist +55289 imperfect +55291 aorist +55295 aorist +55301 future +55304 present +55308 present +55312 aorist +55317 present +55320 aorist +55324 present +55326 aorist +55334 present +55338 present +55340 aorist +55344 imperfect +55349 perfect +55354 aorist +55363 present +55365 future +55371 future +55373 aorist +55378 present +55381 perfect +55385 present +55388 future +aorist +55395 present +55400 present +55403 present +55411 present +55420 present +55429 aorist +55432 future +perfect +55437 present +55439 present +55441 aorist +55448 present +55453 perfect +55457 present +55462 aorist +55466 present +aorist +55469 aorist +55475 present +present +55484 present +55489 present +55492 present +aorist +55500 perfect +55502 aorist +55509 aorist +55511 present +55517 aorist +55523 aorist +55528 present +aorist +55538 imperfect +55540 imperfect +55547 aorist +55549 present +55554 perfect +55558 aorist +55566 present +55569 present +present +55581 present +55588 present +present +55592 imperfect +55600 imperfect +55603 present +55608 present +55614 present +55617 present +55627 present +55629 present +55634 present +55640 present +55645 present +55648 present +55656 present +55661 present +55667 present +aorist +55672 aorist +55676 present +55680 present +55684 present +aorist +55690 present +55692 present +55698 present +55703 present +55707 present +55709 present +55711 present +55714 present +55721 aorist +55725 aorist +55729 aorist +55734 perfect +55737 present +55739 aorist +55745 present +55751 aorist +55754 aorist +55762 present +55768 aorist +55772 aorist +55775 present +aorist +55780 aorist +55786 present +present +55792 present +55796 present +55800 present +55803 perfect +55807 perfect +55810 aorist +55813 perfect +55815 future +55820 perfect +55826 present +55831 aorist +55833 aorist +55839 aorist +55841 aorist +55843 aorist +55851 present +55854 perfect +aorist +55860 present +55864 aorist +55866 present +55868 aorist +55871 aorist +55876 aorist +55878 aorist +55883 present +aorist +55890 aorist +55895 present +55898 aorist +55906 aorist +aorist +55911 aorist +55918 aorist +55925 present +55927 present +55931 aorist +55935 present +present +55940 present +present +55946 present +present +55952 aorist +aorist +55956 aorist +55962 aorist +55970 aorist +55972 present +aorist +55980 present +perfect +55983 aorist +55985 aorist +55987 aorist +present +55994 present +56000 imperfect +imperfect +56004 present +56006 present +56008 present +56010 imperfect +56013 present +56015 imperfect +56020 present +56022 imperfect +56025 present +56027 imperfect +56031 aorist +56035 aorist +56040 present +56043 aorist +56045 aorist +56050 aorist +56053 present +56058 aorist +56060 aorist +56062 aorist +aorist +56065 aorist +56068 present +56070 present +56072 perfect +present +56082 imperfect +56089 aorist +56093 aorist +56099 imperfect +56105 aorist +56108 aorist +56111 aorist +56117 aorist +56119 present +56121 imperfect +56127 present +56137 present +56139 imperfect +56141 present +56146 present +56149 imperfect +56153 present +56159 present +56163 aorist +56169 aorist +56172 present +56175 aorist +56181 imperfect +56184 aorist +56187 aorist +56192 aorist +56194 aorist +56196 present +56198 present +56204 present +56207 aorist +56210 present +56213 aorist +56218 aorist +perfect +56222 present +56229 aorist +56233 present +56235 perfect +56238 aorist +56244 perfect +56246 aorist +56248 present +56252 future +56254 aorist +56259 imperfect +56264 pluperfect +56271 aorist +56274 aorist +56280 aorist +56283 present +56285 aorist +56287 aorist +56293 imperfect +56296 aorist +56298 aorist +56303 perfect +56309 present +56311 aorist +56315 present +56317 perfect +56319 perfect +56322 present +56324 present +56326 aorist +56329 aorist +56332 aorist +56336 aorist +56338 aorist +56343 aorist +56346 present +present +56351 present +56354 aorist +56356 aorist +56359 aorist +56363 present +56369 present +56371 perfect +56374 perfect +56380 perfect +56382 present +aorist +56387 aorist +56394 present +56398 perfect +56400 present +56402 aorist +56406 perfect +56412 present +56417 present +56422 present +56424 present +56429 aorist +56431 aorist +56435 perfect +56438 imperfect +56443 imperfect +present +56446 aorist +56448 aorist +56453 aorist +56457 present +56460 aorist +56463 aorist +56466 aorist +56470 aorist +56472 aorist +56474 present +56480 aorist +56483 aorist +56486 present +56489 aorist +56492 aorist +56497 perfect +56501 present +56505 present +56508 imperfect +present +56512 aorist +56515 aorist +56525 aorist +56529 present +present +56533 present +56535 aorist +aorist +56544 present +56546 aorist +56552 present +aorist +56559 imperfect +56562 imperfect +56566 present +56568 present +56572 present +56575 present +56579 present +56589 present +56593 present +56598 present +56602 present +56609 present +56616 present +56621 present +56625 present +56631 aorist +56634 present +56639 present +56641 perfect +56649 future +56651 future +56656 perfect +56664 aorist +56671 aorist +56673 imperfect +56675 imperfect +56678 aorist +56684 present +56688 present +56695 aorist +56699 present +56704 aorist +56709 present +56716 aorist +future +56719 future +56721 future +56724 future +56728 present +56732 aorist +56734 aorist +56736 aorist +56738 aorist +56741 present +56744 present +56746 present +56758 present +56766 present +56770 present +56774 present +56777 present +56779 present +56783 present +56787 present +56790 present +56793 present +56796 present +56802 present +56808 present +56812 present +56817 present +56822 present +56829 present +56836 present +56839 present +56846 aorist +present +56852 future +56854 future +56864 present +56867 present +56873 aorist +56876 aorist +56882 present +56887 present +aorist +56892 present +56894 aorist +56899 aorist +56906 aorist +56915 imperfect +56920 present +56922 present +56925 present +56927 imperfect +56932 present +present +56936 present +56939 aorist +aorist +56948 imperfect +56950 imperfect +56962 aorist +56967 imperfect +56974 present +56977 present +56980 aorist +56983 aorist +56987 aorist +56991 present +56996 present +57004 present +57010 present +57013 present +57026 present +57028 present +57031 present +57034 present +57041 aorist +57047 future +57058 perfect +57062 present +57065 present +present +57077 present +aorist +57084 aorist +57086 aorist +57093 aorist +57103 present +aorist +57112 present +57121 present +present +57125 aorist +57130 present +perfect +57138 aorist +57140 present +57143 aorist +57151 aorist +57154 present +aorist +57161 aorist +57163 aorist +57168 present +57170 present +57172 aorist +57176 present +57179 present +57186 present +57190 present +57194 present +57197 present +57199 aorist +57201 present +57212 imperfect +57214 aorist +57217 aorist +57223 aorist +57232 imperfect +present +57238 imperfect +57242 aorist +57246 imperfect +57252 aorist +57256 aorist +57261 imperfect +57264 aorist +57269 imperfect +57271 present +57285 imperfect +57288 aorist +57293 aorist +57304 imperfect +57306 aorist +57311 present +57313 aorist +57315 present +present +57318 aorist +57321 aorist +57326 present +57336 aorist +57344 imperfect +57358 aorist +57360 present +57363 aorist +57366 imperfect +57373 present +57376 present +57381 present +57387 imperfect +57389 aorist +57394 present +57396 aorist +57401 present +57406 present +57411 present +57418 present +57422 present +57426 present +57431 present +57435 aorist +57439 present +57445 perfect +57447 present +57449 aorist +57452 aorist +57458 perfect +future +57461 pluperfect +57470 aorist +57477 present +57480 aorist +57486 aorist +57488 present +57492 aorist +57495 imperfect +57498 present +57502 aorist +57505 present +57509 present +57513 aorist +57517 aorist +57520 aorist +57525 present +57530 imperfect +57544 pluperfect +57551 aorist +57558 aorist +57561 present +57564 aorist +57571 imperfect +57573 aorist +57580 imperfect +57584 aorist +57590 perfect +57594 aorist +57597 future +57601 present +57605 future +57609 present +57613 perfect +57615 future +57623 aorist +57628 present +57635 present +57639 aorist +future +57644 present +57646 present +57651 aorist +57655 present +57657 present +57662 perfect +57665 present +57676 present +57679 aorist +aorist +57682 aorist +57688 aorist +57691 present +57693 present +57698 aorist +present +57702 imperfect +57707 pluperfect +57714 imperfect +57720 aorist +57728 present +57735 present +57737 aorist +57742 aorist +57744 aorist +aorist +57747 aorist +57749 present +57754 aorist +57760 aorist +57762 imperfect +57764 aorist +57766 aorist +57771 present +57775 imperfect +57779 aorist +57786 aorist +57788 present +57791 aorist +57794 present +aorist +57799 aorist +57802 aorist +57804 perfect +57806 present +57809 present +57811 aorist +aorist +57816 imperfect +57819 aorist +57821 imperfect +57827 aorist +57829 imperfect +57832 aorist +57837 aorist +57842 aorist +57846 present +57849 present +57854 imperfect +57858 imperfect +57861 present +57864 aorist +57867 present +57872 perfect +57876 present +57879 present +present +57885 aorist +57889 aorist +future +57896 aorist +57902 aorist +57907 aorist +57909 present +57912 aorist +57916 pluperfect +57920 present +57926 perfect +aorist +57929 aorist +57933 aorist +57936 aorist +57939 aorist +57941 present +57943 aorist +57945 perfect +perfect +57958 pluperfect +present +57963 aorist +57966 aorist +57968 present +57975 aorist +57980 aorist +57982 aorist +aorist +57990 aorist +57995 aorist +57998 aorist +58001 aorist +58009 imperfect +58011 present +58018 present +58020 aorist +58024 future +58028 future +58032 future +58047 present +58051 aorist +58055 perfect +58058 present +58060 present +58065 aorist +58074 aorist +58080 aorist +58083 present +58087 aorist +58089 imperfect +58091 present +58109 perfect +aorist +58118 aorist +58120 aorist +58127 imperfect +58132 aorist +58142 present +58145 aorist +58150 imperfect +58157 aorist +58168 aorist +58171 imperfect +58175 imperfect +58181 perfect +58183 present +58188 aorist +58193 pluperfect +58203 aorist +58205 present +aorist +58208 aorist +58218 aorist +58222 imperfect +58225 aorist +58230 aorist +58237 imperfect +58241 imperfect +58245 present +58251 aorist +58257 aorist +58263 aorist +58273 aorist +58280 present +58289 present +58291 present +58298 aorist +58302 aorist +58305 aorist +58312 imperfect +58317 imperfect +58321 present +58323 present +imperfect +58326 aorist +58329 aorist +58338 aorist +58344 present +58351 present +58353 aorist +58362 present +58364 aorist +58373 aorist +58377 aorist +58381 aorist +58388 aorist +58395 imperfect +58397 imperfect +58407 aorist +58411 aorist +58413 present +58417 aorist +58423 aorist +58428 imperfect +58430 perfect +58432 present +58442 aorist +58446 aorist +58450 present +perfect +58453 present +58456 aorist +58460 present +present +58467 aorist +58475 aorist +58478 aorist +58481 imperfect +perfect +58487 aorist +58490 imperfect +58494 present +58500 aorist +58505 aorist +58512 aorist +58517 aorist +58520 perfect +58526 aorist +58529 present +58532 present +58534 aorist +58539 aorist +58541 imperfect +58546 present +58548 aorist +58554 aorist +58562 imperfect +58564 present +58566 present +58569 aorist +present +58574 present +58577 present +58582 present +58588 present +58590 present +perfect +58595 aorist +58602 present +58610 aorist +58614 aorist +58617 present +58620 aorist +58623 present +58625 present +58629 present +58633 present +58644 future +58649 present +58651 present +58654 present +58662 future +58666 present +future +58675 perfect +58678 aorist +58680 aorist +58689 aorist +58695 aorist +58700 aorist +58706 aorist +58709 future +58714 perfect +58716 aorist +imperfect +58719 perfect +58721 imperfect +58724 perfect +aorist +58728 aorist +58735 perfect +58740 present +58751 future +58755 aorist +58760 future +58765 imperfect +present +58769 imperfect +present +58772 aorist +58777 aorist +58784 present +58790 present +58793 present +aorist +58800 present +58807 aorist +58818 present +present +58823 present +58828 aorist +58831 present +58836 perfect +58838 present +58842 present +present +58850 aorist +58852 aorist +58855 aorist +aorist +58863 perfect +58867 imperfect +58876 aorist +58878 aorist +58881 aorist +58890 aorist +58894 imperfect +present +58898 aorist +58900 perfect +58905 aorist +58911 aorist +58915 aorist +58919 aorist +58921 future +58924 aorist +58927 aorist +58932 aorist +58942 aorist +58950 imperfect +58954 aorist +58956 aorist +58969 aorist +58971 aorist +58973 present +58977 present +58983 aorist +58987 present +58989 present +58991 aorist +58998 perfect +59002 present +59009 aorist +59013 aorist +59019 aorist +59022 present +59026 aorist +59028 present +59033 aorist +59037 present +59041 present +59045 present +59047 present +59052 aorist +59054 future +59065 aorist +59068 aorist +59074 perfect +59076 aorist +59079 aorist +59081 perfect +59088 present +59092 present +59094 perfect +59099 present +59108 perfect +59110 aorist +59115 aorist +59123 aorist +59132 aorist +59136 present +59140 perfect +59145 aorist +59150 perfect +59153 aorist +59164 aorist +59169 present +present +59175 present +59179 aorist +59181 aorist +59184 present +59190 aorist +present +59197 present +59201 imperfect +perfect +59204 present +59208 present +59212 present +59216 aorist +59219 aorist +59223 present +59226 perfect +59229 future +59232 present +59237 aorist +59244 aorist +59249 aorist +59252 present +59256 present +59273 present +59277 perfect +59279 present +59285 aorist +59287 present +59293 present +59298 pluperfect +59300 present +59304 aorist +59309 present +59312 aorist +59317 aorist +59322 aorist +59324 aorist +59326 present +59328 perfect +59331 present +59340 present +59342 present +59351 aorist +59357 present +present +59364 aorist +59369 aorist +59373 present +59376 present +59379 present +59389 aorist +59393 perfect +59395 present +59397 present +59403 present +59405 perfect +59407 aorist +59412 aorist +59414 present +59418 aorist +59426 present +59430 aorist +59432 present +59434 aorist +59437 present +59440 present +59443 present +59446 aorist +59448 present +59452 present +present +59455 aorist +59458 aorist +59460 aorist +59464 aorist +59466 aorist +59469 present +59475 future +59477 imperfect +59482 present +59485 present +imperfect +present +59499 imperfect +59503 present +59508 present +59510 aorist +59512 present +59515 present +59517 aorist +59524 present +59528 present +59530 present +59533 present +59537 future +59541 future +59544 aorist +59547 present +59549 present +59558 aorist +59564 present +59568 present +aorist +59572 aorist +59575 present +59579 aorist +59583 imperfect +59587 imperfect +59590 present +59593 aorist +59596 present +59605 aorist +59607 aorist +59611 aorist +59614 imperfect +59618 aorist +present +59622 aorist +59630 aorist +59636 aorist +59642 future +59648 future +59655 present +future +59660 aorist +59666 present +aorist +59670 present +59673 present +59677 present +59680 present +59683 aorist +59688 present +59692 future +59697 present +59700 present +59703 present +59709 present +aorist +59713 present +59716 aorist +59718 present +59720 future +59722 present +59729 present +59731 aorist +59738 future +present +59746 future +59749 present +59754 aorist +59757 aorist +59761 present +59765 present +59772 present +59781 present +59786 aorist +59789 present +aorist +59795 aorist +59797 aorist +59801 present +59803 future +59809 present +59813 present +59817 present +perfect +59821 present +59826 perfect +59828 present +59830 perfect +59833 present +59837 present +59847 present +59856 pluperfect +59863 pluperfect +59866 present +59869 perfect +present +59874 aorist +59879 present +59881 present +59889 present +59892 perfect +59896 perfect +59898 perfect +59903 present +aorist +59909 present +59920 present +59925 present +59930 present +59936 present +present +59941 present +59960 present +59963 present +59966 present +59973 present +59975 future +59979 future +59985 present +59990 aorist +59996 future +59998 aorist +60006 aorist +60013 future +60015 present +60021 future +60023 future +60029 future +60032 present +60043 aorist +60047 present +60050 present +60053 present +60055 present +60060 present +60064 future +60066 future +60069 present +60079 present +60082 present +60086 present +60089 future +60094 future +60110 present +60115 present +60118 present +60120 present +60124 present +60126 future +60132 future +60135 future +60138 present +60147 perfect +60149 present +60151 present +60157 aorist +60160 aorist +60164 present +60169 future +60174 future +60179 future +60184 future +60187 present +60193 present +60198 present +60200 present +60204 aorist +60208 perfect +60212 present +60221 future +60230 future +60233 future +60237 aorist +60241 present +60246 present +60252 present +60254 present +60257 present +60262 present +aorist +60266 aorist +60268 present +60270 present +60274 imperfect +60277 aorist +60279 present +60288 present +60291 perfect +60294 aorist +60297 aorist +aorist +60301 future +60305 present +60314 present +60318 aorist +60322 present +60327 aorist +60332 present +present +present +60337 present +60348 present +60354 present +60356 present +60362 present +present +60368 present +60372 present +60377 perfect +60379 aorist +60389 present +60391 present +60396 present +60407 present +60409 present +60416 present +60423 present +60430 present +present +60436 present +60439 aorist +60445 aorist +60447 present +60453 present +60455 present +60457 aorist +60466 aorist +60469 present +aorist +60472 future +60476 aorist +60483 present +60485 future +60489 aorist +60495 aorist +aorist +60506 aorist +future +60519 perfect +60521 present +60527 perfect +60536 present +60541 aorist +60543 present +60549 present +60552 aorist +60558 present +60564 aorist +60572 present +60574 present +60577 present +60580 present +60587 perfect +60589 present +60595 perfect +60600 aorist +60605 aorist +60610 aorist +60613 aorist +60616 aorist +60620 present +60623 present +60628 present +60633 aorist +60640 aorist +60643 present +60646 present +60652 present +present +60658 perfect +60663 imperfect +60669 imperfect +60676 present +60679 aorist +60686 present +60690 present +60695 aorist +60698 present +60706 aorist +60709 future +60714 aorist +60718 future +60722 future +60731 perfect +60733 aorist +60737 aorist +60739 aorist +60743 imperfect +60748 present +60755 present +60760 present +60765 aorist +60771 aorist +60774 imperfect +60778 perfect +60780 perfect +60789 aorist +60797 perfect +60799 aorist +60803 aorist +60808 future +60821 present +60823 future +60829 present +60835 present +60837 perfect +60841 aorist +60843 future +60846 present +60851 aorist +60853 aorist +60855 present +60860 future +60863 aorist +60870 perfect +60874 aorist +60878 present +60882 aorist +60890 aorist +60894 imperfect +60897 present +60900 aorist +60906 present +60909 present +60913 perfect +60917 perfect +60925 present +60927 present +60931 aorist +60935 aorist +60940 aorist +60945 aorist +future +60951 aorist +60953 future +60969 present +60979 present +60982 present +60993 perfect +60995 present +60998 present +61001 present +present +61006 aorist +61012 future +61020 future +61025 present +future +61029 present +future +61034 future +61039 future +61041 future +61045 present +61049 present +61052 aorist +61057 present +61059 future +61064 present +61070 future +61073 aorist +61081 present +61084 present +61089 present +61095 future +61099 present +61104 imperfect +61106 present +61109 present +61113 perfect +61115 present +aorist +61119 imperfect +61121 present +61123 aorist +61127 present +61131 aorist +61135 present +61141 future +61145 present +61148 future +61150 future +61155 future +61157 future +61164 future +61168 present +61170 present +61172 aorist +61178 aorist +61182 present +61189 aorist +61200 present +61203 future +61206 future +61215 present +61225 future +61229 present +61233 aorist +61236 future +61245 aorist +61251 present +61253 future +61258 present +perfect +61263 perfect +61265 present +61271 future +61278 future +61288 future +61291 present +61295 future +61304 present +61309 perfect +61311 perfect +61317 aorist +aorist +61323 perfect +61328 present +61332 present +61336 present +61340 aorist +61344 present +61348 present +61350 perfect +61352 perfect +61357 present +61361 present +61364 present +61368 aorist +aorist +61373 present +aorist +present +61378 perfect +61380 aorist +61387 aorist +61390 present +61397 present +61399 perfect +61405 present +61410 present +61412 present +61414 perfect +61418 aorist +61421 aorist +61428 aorist +61430 perfect +61433 aorist +61440 aorist +61443 aorist +61451 perfect +61453 future +61459 present +61464 present +61472 aorist +61477 aorist +61481 aorist +61485 perfect +61488 aorist +61492 aorist +61500 imperfect +61505 present +61508 aorist +61515 aorist +61521 imperfect +61524 aorist +61529 perfect +61531 perfect +61535 perfect +61539 present +61544 aorist +61546 perfect +61550 aorist +61552 aorist +61557 aorist +61559 aorist +61563 aorist +61567 present +61572 present +61576 perfect +61580 present +61586 present +61592 perfect +61597 present +61606 present +61610 present +61613 aorist +61620 perfect +61623 present +61628 imperfect +61632 imperfect +61639 perfect +61642 aorist +61647 aorist +61657 aorist +61662 present +61665 present +61670 present +61675 perfect +61679 perfect +61687 aorist +61691 present +61698 present +61703 present +61705 aorist +61712 aorist +61721 present +61725 present +61729 aorist +61739 present +61742 aorist +61747 aorist +61756 present +61759 present +perfect +61769 present +61775 present +61785 present +61799 present +61803 present +61807 aorist +61812 perfect +61814 perfect +61817 present +61830 present +perfect +61835 present +61841 aorist +61843 aorist +61847 aorist +61850 perfect +61852 present +61855 present +61858 present +61862 present +61868 perfect +61871 aorist +61883 aorist +61887 aorist +61890 aorist +61894 aorist +61896 aorist +61902 future +61907 aorist +61911 present +61916 aorist +61918 aorist +61929 imperfect +61933 aorist +61940 pluperfect +61944 present +61950 aorist +61960 aorist +61972 present +61982 perfect +61985 present +61988 aorist +61990 present +61993 present +aorist +61999 present +62002 present +62004 pluperfect +62008 present +62014 aorist +62017 present +aorist +62023 aorist +62027 aorist +62030 present +62033 aorist +62037 aorist +62039 aorist +62043 present +62047 present +aorist +62050 present +62052 aorist +62056 aorist +62059 perfect +62062 aorist +62069 present +62071 aorist +62074 aorist +62080 aorist +62087 imperfect +62093 aorist +62098 aorist +62107 perfect +62113 aorist +62126 aorist +62130 aorist +62133 aorist +62138 imperfect +62143 imperfect +62149 imperfect +62152 aorist +62156 present +62159 aorist +62164 imperfect +62176 imperfect +62181 aorist +62192 pluperfect +62198 aorist +62208 aorist +62212 aorist +62216 present +62232 present +present +62236 present +62238 pluperfect +62245 perfect +62248 imperfect +62250 imperfect +62257 imperfect +perfect +62260 present +62264 aorist +62276 aorist +62281 perfect +62286 aorist +62297 present +62301 aorist +62305 present +aorist +62308 perfect +62310 aorist +62312 aorist +62314 perfect +62316 aorist +62321 aorist +62323 perfect +62326 aorist +62330 aorist +62332 present +62335 aorist +62340 aorist +aorist +62350 present +62352 aorist +62356 perfect +62364 imperfect +perfect +62367 present +62369 aorist +62378 present +aorist +62382 aorist +62384 present +present +62392 present +62395 aorist +62401 aorist +62410 aorist +62415 aorist +62417 present +62427 imperfect +62432 aorist +62438 aorist +62440 aorist +62444 aorist +62451 present +62457 present +aorist +62460 aorist +62464 imperfect +present +62471 aorist +62474 aorist +62478 aorist +62486 aorist +62488 aorist +62494 present +aorist +62502 aorist +62504 aorist +present +62508 imperfect +present +62511 aorist +62519 aorist +62523 aorist +62526 present +62531 aorist +62537 present +62540 aorist +62544 aorist +62550 present +62558 aorist +62562 aorist +aorist +62570 present +62580 imperfect +62590 imperfect +62593 aorist +62603 present +62606 aorist +62612 present +62614 aorist +62618 present +62621 present +62625 perfect +62629 perfect +62634 aorist +62639 present +62643 present +62647 present +62652 present +62656 aorist +62658 aorist +62663 present +62667 present +62672 present +62677 aorist +62683 present +aorist +62691 aorist +62693 present +62700 imperfect +62706 aorist +62712 aorist +62716 aorist +62720 aorist +62727 aorist +62730 imperfect +62734 imperfect +present +62741 imperfect +62745 aorist +62751 present +62753 aorist +present +62759 aorist +62763 present +62767 aorist +62771 present +62780 present +62782 aorist +62787 aorist +62794 aorist +present +aorist +aorist +present +62802 aorist +62806 aorist +62810 present +62814 aorist +62820 present +62825 present +aorist +62831 aorist +62834 aorist +62841 aorist +62843 aorist +62849 present +62853 present +62860 aorist +62863 present +62869 present +62871 perfect +62874 present +aorist +62879 present +aorist +62882 aorist +62885 imperfect +62892 imperfect +perfect +62899 aorist +62904 present +62909 imperfect +aorist +62915 aorist +present +62919 aorist +62921 present +62929 present +present +62936 aorist +62940 aorist +62945 aorist +62950 present +62956 imperfect +62961 imperfect +62965 present +62968 aorist +62973 aorist +62975 aorist +aorist +aorist +62979 present +62986 aorist +aorist +62991 present +62998 aorist +63002 aorist +63004 aorist +63008 present +63012 aorist +63015 present +63019 present +63024 aorist +63038 aorist +63044 aorist +63049 imperfect +perfect +63062 aorist +63070 imperfect +63074 aorist +63078 imperfect +perfect +63084 imperfect +63092 present +63100 aorist +63104 present +aorist +63109 perfect +perfect +63115 aorist +63118 aorist +63123 aorist +63133 imperfect +63144 aorist +63148 aorist +63151 aorist +63155 future +63159 aorist +aorist +63170 aorist +63177 aorist +63179 pluperfect +63204 aorist +63210 perfect +63212 imperfect +present +63217 aorist +63222 present +63225 aorist +63234 aorist +63245 perfect +63249 perfect +63251 aorist +63254 present +present +63259 imperfect +63266 aorist +aorist +63273 aorist +63278 aorist +perfect +63281 aorist +63284 aorist +63292 imperfect +63295 aorist +63305 imperfect +63312 aorist +63316 aorist +63321 aorist +63323 aorist +63328 aorist +63337 aorist +63343 aorist +63345 aorist +63348 perfect +63350 aorist +63362 aorist +63364 aorist +63371 perfect +perfect +63375 present +63381 perfect +63384 present +63388 present +63390 aorist +63395 aorist +63399 future +63404 present +future +63408 aorist +63412 aorist +63418 present +63423 perfect +63430 aorist +63436 aorist +63440 aorist +63442 aorist +63447 aorist +63451 aorist +63457 present +63466 aorist +63472 aorist +63480 present +63483 present +63485 imperfect +63490 aorist +63502 imperfect +perfect +63513 imperfect +63516 aorist +63527 present +63534 present +63536 present +63539 perfect +63544 present +63546 present +63556 imperfect +63560 present +63562 aorist +63570 perfect +63572 aorist +63575 aorist +63583 imperfect +63588 imperfect +63596 aorist +63601 aorist +63607 aorist +present +present +63614 aorist +63616 present +63620 present +63623 aorist +63628 present +63631 present +63636 imperfect +63645 present +63648 perfect +63654 aorist +63660 aorist +63666 aorist +63668 aorist +63671 pluperfect +63675 present +63679 aorist +63681 aorist +63689 pluperfect +63694 present +63697 imperfect +aorist +63703 present +63708 present +63710 imperfect +63725 present +63730 present +present +63734 aorist +63740 perfect +63742 aorist +63745 aorist +aorist +63751 present +63754 perfect +63757 pluperfect +63760 present +present +63766 present +63768 present +63770 present +63774 present +present +63780 aorist +63782 aorist +63785 aorist +63789 future +present +63794 aorist +63796 present +63801 present +63803 present +63808 present +63811 perfect +63816 present +63822 aorist +63824 present +63838 present +63842 present +63846 perfect +63851 aorist +63854 present +63865 perfect +63867 imperfect +63875 aorist +63879 aorist +63884 present +63890 aorist +aorist +63900 aorist +63903 aorist +63907 aorist +63915 perfect +63920 present +63924 aorist +aorist +63927 present +63929 aorist +63933 aorist +63937 perfect +63941 present +perfect +63950 present +63953 imperfect +63957 aorist +63960 imperfect +63965 perfect +63970 aorist +63974 aorist +63984 aorist +63994 aorist +64004 aorist +64010 imperfect +64019 present +64024 perfect +64026 aorist +64031 aorist +64035 present +64038 present +64044 aorist +64049 present +64054 aorist +64061 present +64065 aorist +64068 aorist +64077 present +64082 perfect +64084 perfect +64088 aorist +64090 aorist +64097 aorist +64105 present +perfect +64113 perfect +64115 present +64118 present +64127 present +64129 present +64136 aorist +64148 aorist +64150 imperfect +64157 present +64177 present +64181 present +present +present +64185 present +64190 aorist +64192 aorist +64201 aorist +64206 present +aorist +64214 pluperfect +64219 present +64221 present +64228 present +aorist +64234 aorist +64236 aorist +64246 future +64248 aorist +64252 aorist +imperfect +64260 present +64265 imperfect +64272 present +64276 aorist +64280 present +64283 aorist +64285 imperfect +64288 aorist +64299 aorist +64302 imperfect +64312 present +64319 aorist +64323 present +64325 present +64328 present +64331 present +64335 aorist +64340 aorist +64342 aorist +64346 aorist +64360 present +64362 aorist +64365 present +64369 present +aorist +64374 imperfect +aorist +64379 present +perfect +64384 present +present +64388 present +64392 present +64401 aorist +64405 aorist +64410 aorist +present +64419 present +64423 present +64428 perfect +64430 present +64432 present +64434 present +64438 present +64444 present +64446 present +64451 perfect +64453 present +64455 present +64457 present +64461 present +64467 present +64469 aorist +64473 aorist +64477 present +64480 aorist +64485 perfect +64487 present +64489 present +64491 present +64494 present +64500 present +64503 imperfect +64505 imperfect +64508 imperfect +64510 imperfect +64513 aorist +future +64520 future +64523 future +64526 present +64529 aorist +present +64533 future +64538 aorist +present +64541 present +64543 aorist +64546 present +64550 imperfect +64553 present +64556 aorist +64565 aorist +64568 present +64570 present +64574 aorist +64577 present +64584 present +64590 present +present +64593 present +64599 present +64601 aorist +64613 present +64616 aorist +64622 present +64626 present +present +64629 present +64634 present +64638 present +64643 aorist +64646 perfect +64652 present +64654 present +64659 aorist +64664 present +64667 present +64672 future +64674 present +64682 aorist +64687 present +64689 present +aorist +64696 aorist +64700 aorist +64704 aorist +64707 aorist +64709 present +64712 aorist +64720 present +64723 present +64731 present +aorist +64737 present +64739 present +64745 aorist +64750 aorist +64757 future +64766 aorist +imperfect +64769 present +64776 present +64781 aorist +64786 present +aorist +64794 aorist +64800 future +64802 aorist +64809 future +64829 aorist +present +64832 aorist +64835 aorist +64843 present +imperfect +64848 present +64851 aorist +64854 pluperfect +64861 aorist +64865 perfect +present +64874 aorist +64881 future +64884 aorist +64886 present +64891 aorist +64897 present +64900 present +64905 present +64908 aorist +64912 aorist +64914 imperfect +present +64942 imperfect +present +64965 aorist +64971 aorist +64973 imperfect +64984 imperfect +aorist +64989 aorist +65000 aorist +65003 aorist +65006 perfect +imperfect +65011 aorist +65020 aorist +65028 aorist +aorist +65032 aorist +65039 aorist +65042 present +65045 aorist +65055 present +65059 perfect +65063 aorist +65070 present +65072 present +65079 aorist +65082 present +65085 aorist +65091 aorist +65093 aorist +65099 aorist +65108 aorist +65117 aorist +65121 aorist +65125 present +65128 aorist +65133 aorist +aorist +65139 aorist +65141 aorist +65147 aorist +65157 aorist +65159 aorist +65166 aorist +65170 aorist +65176 aorist +65184 present +65189 imperfect +65196 aorist +65203 present +65207 aorist +65212 imperfect +present +65215 aorist +65217 present +65222 aorist +65228 aorist +65233 aorist +present +65240 imperfect +present +65244 imperfect +present +65259 aorist +65263 aorist +65267 aorist +65269 imperfect +65275 present +65278 imperfect +65280 imperfect +present +aorist +65287 present +present +65293 present +65301 aorist +65309 present +65335 present +65344 present +present +65355 imperfect +65358 imperfect +65362 present +present +65366 present +65369 present +imperfect +65373 perfect +present +65376 aorist +65382 aorist +65387 aorist +65393 present +65399 present +65401 aorist +65409 present +65411 present +65413 present +65420 present +65422 perfect +65428 future +65433 present +65436 future +65445 future +65458 future +65464 future +65479 future +65485 future +65487 future +65507 future +65516 aorist +65524 future +65528 aorist +65532 future +65535 aorist +65543 perfect +65555 aorist +65565 perfect +65568 perfect +65578 aorist +aorist +65583 aorist +aorist +65591 imperfect +65593 present +65599 present +65602 imperfect +65613 present +65616 aorist +65619 aorist +65624 aorist +65634 future +65639 future +65646 future +65650 aorist +65652 aorist +65656 future +65665 present +aorist +65677 aorist +65679 aorist +65684 present +65693 present +65695 perfect +65698 aorist +65707 aorist +65712 aorist +aorist +65721 aorist +65728 aorist +65733 aorist +65739 present +65746 aorist +65754 aorist +65758 aorist +65763 present +65765 present +65769 aorist +65774 present +65776 aorist +65781 present +65787 aorist +65797 present +65806 aorist +65815 aorist +65817 aorist +aorist +65822 aorist +65831 aorist +65838 aorist +65840 aorist +65854 future +65862 present +65876 aorist +65885 aorist +65887 imperfect +65889 present +aorist +65900 aorist +65904 aorist +65906 aorist +65915 imperfect +present +65932 imperfect +65944 imperfect +65948 aorist +65952 imperfect +65961 imperfect +65963 imperfect +65970 imperfect +65974 present +65980 present +65984 imperfect +65991 present +65995 present +66004 imperfect +66006 present +66016 imperfect +66035 present +imperfect +66038 imperfect +66047 present +66050 present +66054 present +66059 aorist +66063 present +present +66068 imperfect +66070 aorist +66073 aorist +66079 aorist +aorist +66085 imperfect +66087 present +66091 aorist +66093 aorist +66099 present +66103 present +66106 present +66114 present +66116 aorist +66121 aorist +66125 aorist +66133 present +aorist +66136 imperfect +66138 aorist +66144 present +66146 present +66148 present +66152 aorist +66157 present +66159 present +66163 imperfect +66167 imperfect +66172 present +66180 aorist +66186 perfect +66189 present +66196 aorist +66206 present +66210 aorist +66213 aorist +66220 present +66226 present +66232 perfect +66234 present +66248 aorist +66256 aorist +66258 aorist +66262 aorist +66264 present +66271 aorist +66273 aorist +66276 aorist +66283 aorist +66287 aorist +66293 present +66303 present +66305 perfect +aorist +66316 aorist +66327 perfect +66331 aorist +66341 aorist +66347 aorist +66351 aorist +66354 aorist +66356 aorist +66359 aorist +66365 aorist +66373 aorist +66375 perfect +66379 present +66383 aorist +66389 aorist +66402 aorist +66406 future +66417 future +66422 aorist +66426 future +66432 aorist +66436 future +66451 aorist +66453 aorist +66458 present +66469 aorist +66474 present +66482 future +66492 aorist +66496 aorist +66498 present +66502 present +66509 present +66514 aorist +66526 present +66529 present +66534 present +66544 aorist +66549 aorist +66556 imperfect +66562 aorist +66565 aorist +66567 aorist +66575 aorist +66579 aorist +66603 imperfect +66608 aorist +66613 imperfect +66621 aorist +66626 aorist +66629 aorist +66640 present +66648 perfect +66650 present +66668 aorist +66672 aorist +66678 perfect +66683 present +66687 aorist +66693 aorist +66699 present +66707 present +66714 perfect +66719 present +aorist +66723 present +66731 aorist +66735 present +66738 imperfect +66740 imperfect +66746 imperfect +66748 present +66752 perfect +66755 perfect +66757 aorist +imperfect +66760 aorist +66765 aorist +imperfect +66769 present +66771 aorist +66780 perfect +66785 present +66790 present +present +66797 aorist +66801 aorist +66804 present +66812 aorist +66814 aorist +66817 present +66819 present +66830 aorist +aorist +66836 present +66841 present +66846 aorist +66849 present +66852 aorist +66854 aorist +66856 present +66859 aorist +aorist +66863 present +66866 aorist +66873 imperfect +66878 perfect +66883 imperfect +66888 pluperfect +66895 aorist +aorist +66901 aorist +66910 aorist +66913 aorist +66915 aorist +66921 aorist +66925 aorist +66950 aorist +66953 aorist +66957 aorist +66959 aorist +66967 aorist +66980 aorist +66994 aorist +67005 aorist +67007 aorist +67014 aorist +67019 aorist +67025 aorist +67032 present +67040 present +67048 present +67058 aorist +67060 aorist +67065 imperfect +perfect +67068 aorist +67074 imperfect +67085 aorist +67089 imperfect +67096 present +67099 present +imperfect +67102 imperfect +67109 imperfect +67122 imperfect +67130 imperfect +67139 imperfect +present +imperfect +67145 present +67147 imperfect +67154 imperfect +67160 imperfect +67164 aorist +67170 present +present +67178 present +67181 aorist +aorist +67186 aorist +67202 aorist +67205 aorist +67209 perfect +67214 aorist +67222 aorist +67224 aorist +67230 aorist +67236 aorist +67243 aorist +67250 present +67252 imperfect +67254 aorist +67259 imperfect +67262 aorist +67271 aorist +67279 present +67283 aorist +aorist +67286 aorist +67292 present +67294 aorist +67297 aorist +67300 aorist +aorist +67303 aorist +67313 perfect +67315 perfect +aorist +67318 aorist +67322 aorist +67328 aorist +67331 aorist +67341 aorist +67343 aorist +67347 aorist +67351 aorist +67359 future +67362 aorist +67369 aorist +67371 aorist +67374 aorist +67378 aorist +aorist +67385 aorist +67396 present +67404 imperfect +67413 imperfect +67424 imperfect +present +67428 imperfect +67434 imperfect +present +67448 present +67452 present +67458 present +67463 aorist +67467 imperfect +67475 present +67478 present +67484 imperfect +67486 aorist +67495 present +67499 aorist +67502 aorist +67509 aorist +67519 aorist +67525 aorist +67527 aorist +present +67530 aorist +present +67544 aorist +aorist +67553 imperfect +67555 aorist +67562 aorist +67573 aorist +67577 aorist +67581 aorist +67584 aorist +67590 aorist +aorist +present +67594 aorist +67597 perfect +67604 perfect +67609 aorist +67612 aorist +67615 aorist +67627 imperfect +67632 aorist +67635 aorist +67637 aorist +67640 aorist +67644 aorist +67648 present +perfect +67654 present +67658 aorist +67664 imperfect +67670 imperfect +67674 aorist +67676 aorist +67678 aorist +67683 aorist +67687 present +67689 aorist +67692 present +67698 aorist +perfect +67706 present +aorist +67716 aorist +67721 aorist +present +present +67733 aorist +67737 aorist +aorist +67747 aorist +67752 aorist +67761 present +67772 aorist +67776 present +67780 aorist +imperfect +67783 imperfect +aorist +67787 aorist +67800 aorist +67805 aorist +67807 aorist +67812 present +67819 present +present +67826 aorist +67828 present +present +67833 aorist +67839 aorist +67843 imperfect +67845 aorist +67847 aorist +67852 aorist +67862 aorist +67867 aorist +67871 imperfect +67873 aorist +67877 present +67879 aorist +67885 aorist +67889 present +67899 future +67904 present +67906 future +aorist +67913 aorist +67915 aorist +67918 aorist +67921 aorist +aorist +67924 present +67931 aorist +67935 imperfect +present +67942 aorist +67946 aorist +67957 imperfect +present +67960 present +67969 present +67972 aorist +67980 imperfect +67992 aorist +67997 aorist +68000 present +68002 aorist +68007 present +68011 aorist +68015 present +68022 future +68036 future +68038 aorist +68046 aorist +68069 aorist +68074 aorist +aorist +68084 imperfect +68086 imperfect +68099 imperfect +68108 imperfect +68117 aorist +68124 present +68136 present +68141 imperfect +aorist +68149 imperfect +68151 aorist +68153 present +68155 perfect +68157 present +68166 aorist +68176 aorist +aorist +68180 aorist +68185 aorist +68188 present +68193 present +present +68205 perfect +68207 present +68213 future +68218 future +68222 aorist +68226 aorist +68231 present +68235 aorist +68243 aorist +68249 present +68252 imperfect +68257 aorist +68262 aorist +68267 present +68273 aorist +68278 aorist +68281 aorist +68291 present +68298 future +68300 aorist +68304 aorist +68310 aorist +68314 aorist +68324 present +68327 aorist +68336 aorist +aorist +68349 present +68353 aorist +68358 future +68367 future +68369 future +68378 future +future +68383 aorist +68387 future +68389 future +68396 aorist +68402 aorist +68406 aorist +68424 aorist +68427 aorist +68431 imperfect +68437 aorist +68445 aorist +68455 aorist +68457 present +68466 aorist +68479 imperfect +68486 aorist +present +68491 aorist +68500 aorist +68507 aorist +68514 aorist +68516 aorist +68530 aorist +68535 aorist +68542 aorist +68546 aorist +68551 aorist +68563 imperfect +68569 aorist +68576 aorist +68578 aorist +68583 aorist +68590 pluperfect +68594 aorist +68598 aorist +68602 present +68610 present +68614 aorist +68617 imperfect +68622 aorist +68631 aorist +68633 aorist +68639 aorist +68645 aorist +68651 imperfect +68660 imperfect +68664 aorist +68669 aorist +68677 aorist +68679 present +aorist +68682 aorist +68685 present +aorist +68690 imperfect +present +68700 present +68706 aorist +68709 present +68711 aorist +68713 present +68715 imperfect +68719 aorist +68722 present +68725 present +68729 present +68732 aorist +68734 aorist +68737 aorist +68744 aorist +68747 present +68750 aorist +68755 aorist +68762 aorist +68768 aorist +68772 aorist +68775 aorist +68791 aorist +imperfect +68796 present +68798 aorist +aorist +68817 aorist +68820 imperfect +aorist +68823 aorist +68827 aorist +68838 perfect +68841 present +aorist +aorist +68856 aorist +68858 aorist +aorist +68863 present +aorist +68872 aorist +aorist +68876 aorist +68887 perfect +68892 aorist +68898 aorist +68900 aorist +68918 present +68922 aorist +68928 future +68938 present +68940 aorist +68951 present +68962 aorist +68964 present +aorist +68969 aorist +68971 aorist +68976 aorist +68978 aorist +68985 aorist +68988 aorist +68992 future +68999 aorist +69005 perfect +69007 aorist +69010 aorist +69016 aorist +69021 imperfect +69029 aorist +69033 aorist +69035 present +69041 perfect +69050 aorist +69060 aorist +69074 aorist +present +69078 future +69086 imperfect +69094 aorist +69096 present +69099 aorist +69105 pluperfect +69108 aorist +aorist +69121 aorist +69134 aorist +69140 aorist +aorist +69148 aorist +69157 present +69161 present +69175 future +69177 present +69189 aorist +69205 present +69216 aorist +69221 aorist +69223 aorist +69235 aorist +69237 aorist +69245 aorist +69247 present +69249 imperfect +69254 imperfect +69260 present +69264 aorist +69268 aorist +69273 perfect +69279 aorist +aorist +present +69284 perfect +69294 perfect +69296 aorist +69299 aorist +69304 aorist +69309 aorist +69313 imperfect +69317 aorist +69325 present +69328 imperfect +69331 present +69333 present +69336 aorist +69341 aorist +69344 aorist +69349 aorist +69356 aorist +aorist +69360 imperfect +present +69366 aorist +69381 aorist +69393 aorist +69399 aorist +69406 imperfect +69412 present +present +69418 imperfect +69424 aorist +aorist +present +69431 aorist +69437 imperfect +69442 imperfect +69446 present +69453 present +69456 present +69460 imperfect +69464 present +69467 present +69470 imperfect +69473 perfect +69476 aorist +69478 aorist +69490 imperfect +69494 present +69496 present +69501 present +present +69507 imperfect +69513 present +69515 present +69521 present +69524 imperfect +69532 perfect +69536 aorist +69539 present +69550 imperfect +69560 aorist +69562 aorist +imperfect +present +69567 present +69573 present +imperfect +69580 aorist +69582 perfect +69589 aorist +69596 aorist +aorist +69601 aorist +69606 imperfect +perfect +69613 perfect +imperfect +69622 imperfect +69628 imperfect +69634 aorist +69643 present +69646 aorist +69649 present +aorist +69658 aorist +69661 present +69666 aorist +69674 present +69678 aorist +69685 present +69687 present +69701 present +69707 aorist +69714 aorist +69719 future +69734 present +present +69737 aorist +69740 aorist +aorist +69749 aorist +69754 perfect +69758 aorist +69760 aorist +69765 imperfect +69773 imperfect +69777 aorist +69780 present +aorist +69783 present +69790 present +69796 present +69799 aorist +aorist +69802 aorist +69811 imperfect +69818 pluperfect +future +69822 imperfect +69824 present +69826 present +69832 imperfect +69837 aorist +69842 aorist +69844 aorist +69849 aorist +69852 aorist +69854 present +69859 aorist +69862 present +69864 present +69867 aorist +69871 present +69875 future +69878 aorist +69881 aorist +aorist +69891 imperfect +imperfect +69898 aorist +69904 present +69909 present +69919 aorist +69924 future +69926 present +69934 aorist +69939 aorist +present +69946 present +69957 aorist +69962 aorist +69967 aorist +69973 imperfect +69977 aorist +69982 present +69985 aorist +69988 present +69990 aorist +69992 aorist +aorist +69997 aorist +70009 aorist +70013 aorist +70019 aorist +70024 aorist +70030 imperfect +70034 present +70037 aorist +70041 present +imperfect +70048 aorist +70056 present +70065 aorist +70068 aorist +70079 aorist +70083 present +70088 perfect +aorist +70095 present +aorist +70098 present +70104 aorist +70110 aorist +70114 aorist +70116 present +70122 present +70124 aorist +70126 present +70131 present +70135 present +70137 aorist +70139 aorist +70144 future +70149 present +present +70155 present +70157 pluperfect +70160 present +70165 present +70167 aorist +70173 perfect +70178 imperfect +70180 present +70182 aorist +70186 imperfect +present +70193 aorist +70195 aorist +70197 imperfect +70205 aorist +70215 aorist +aorist +70224 aorist +aorist +70230 present +70233 aorist +70241 aorist +present +70244 aorist +70248 aorist +70250 aorist +70254 aorist +70256 aorist +70259 aorist +70271 aorist +70276 present +70281 aorist +70284 present +70289 aorist +70294 present +70298 present +70302 aorist +70316 future +70324 aorist +present +70327 aorist +70330 aorist +70335 aorist +70340 aorist +70347 aorist +70353 imperfect +perfect +70357 aorist +70359 aorist +70364 aorist +70372 aorist +70374 aorist +aorist +70377 aorist +70379 aorist +70381 aorist +70394 imperfect +70399 present +70405 imperfect +70408 present +70410 imperfect +70413 present +70415 aorist +70419 present +70427 pluperfect +70429 perfect +70431 aorist +70438 imperfect +70440 imperfect +70443 present +70446 present +70449 present +70454 imperfect +70457 aorist +70460 aorist +70463 aorist +70470 imperfect +70480 aorist +70482 aorist +70490 aorist +70492 aorist +70496 aorist +70499 imperfect +present +70505 imperfect +70508 present +70510 present +70514 aorist +70516 aorist +70521 aorist +70527 aorist +70532 aorist +70538 aorist +70544 imperfect +present +70547 present +70552 present +70559 imperfect +70561 imperfect +70567 imperfect +aorist +70571 aorist +70574 aorist +70579 aorist +70595 imperfect +70597 present +70599 present +70610 imperfect +70612 aorist +70614 present +70617 aorist +70623 present +70626 aorist +70635 present +70639 imperfect +perfect +70642 aorist +70647 present +70651 aorist +70653 aorist +70657 aorist +70659 aorist +70663 present +70669 aorist +70676 imperfect +70682 present +present +70686 imperfect +70693 imperfect +70695 aorist +70700 aorist +70702 aorist +70704 aorist +aorist +70709 present +70716 aorist +70719 present +70722 aorist +70727 present +70729 aorist +aorist +70734 aorist +70736 aorist +70739 aorist +aorist +70745 aorist +70750 present +70752 present +70757 imperfect +70760 present +70766 aorist +70770 aorist +70773 aorist +70775 aorist +70779 aorist +70781 aorist +70784 aorist +70789 aorist +70792 aorist +70794 aorist +70797 aorist +70800 aorist +70806 aorist +70808 present +70811 aorist +70817 aorist +70823 aorist +70826 aorist +70844 present +70848 present +70856 present +70862 present +70867 aorist +70880 aorist +70884 aorist +70889 aorist +70893 aorist +aorist +70896 present +70899 aorist +70908 aorist +70916 aorist +70921 aorist +70925 present +70928 present +70934 present +70940 aorist +70944 present +70946 aorist +70954 present +70957 aorist +70960 aorist +70968 present +70973 present +aorist +70979 aorist +70984 aorist +70987 imperfect +aorist +70990 present +70992 aorist +70997 present +71000 perfect +71002 present +71010 present +71016 imperfect +71029 aorist +71034 aorist +aorist +71037 aorist +71041 aorist +71046 aorist +71061 aorist +71064 present +71067 aorist +71072 aorist +71082 imperfect +71087 present +71091 aorist +aorist +71096 perfect +71100 aorist +71105 aorist +71110 aorist +imperfect +71115 present +71118 present +71122 present +71126 aorist +71129 aorist +71132 present +71135 aorist +aorist +71138 present +71142 present +71145 perfect +71148 aorist +71153 aorist +aorist +71156 present +71158 present +71164 present +71167 aorist +71173 present +71177 present +71184 aorist +71188 aorist +71195 aorist +71200 aorist +71202 aorist +71206 aorist +aorist +71217 aorist +71222 aorist +71229 imperfect +present +71232 aorist +71242 aorist +71244 aorist +71247 aorist +71251 aorist +71255 aorist +71259 aorist +71261 present +aorist +71267 present +71269 present +71271 aorist +71273 present +perfect +71277 imperfect +71281 present +71284 present +71287 present +71289 present +71294 aorist +71300 present +71304 aorist +aorist +71307 present +71310 aorist +71315 imperfect +71323 imperfect +present +71332 aorist +71334 aorist +71341 present +71343 aorist +71351 aorist +71356 aorist +71360 aorist +71363 present +71366 present +71375 aorist +71381 aorist +aorist +71390 present +aorist +71394 perfect +71401 aorist +71404 aorist +71407 present +71410 present +71419 present +71422 present +71426 present +71430 aorist +71434 present +71440 present +71444 perfect +71447 aorist +71452 aorist +71460 aorist +71467 aorist +71476 aorist +present +71479 present +71482 present +71489 imperfect +71497 aorist +71508 aorist +aorist +71515 aorist +71521 aorist +71524 aorist +71532 perfect +71538 aorist +71540 aorist +71544 aorist +71549 aorist +71551 aorist +71555 aorist +71558 present +71560 perfect +71565 present +71572 present +71575 aorist +71582 present +71586 present +71592 aorist +71600 present +71604 aorist +71610 aorist +71623 perfect +71625 imperfect +71627 present +71630 present +71634 aorist +71639 aorist +present +71644 aorist +71651 aorist +71656 aorist +71663 aorist +71665 aorist +71667 aorist +71671 aorist +71678 present +71686 aorist +71693 aorist +71697 imperfect +71703 present +71705 aorist +71709 present +71711 aorist +71714 aorist +71716 imperfect +71719 present +71721 imperfect +present +71727 aorist +71731 present +71739 present +71744 aorist +71749 aorist +imperfect +71752 aorist +71769 aorist +71772 present +71775 aorist +aorist +71778 aorist +71780 aorist +71788 aorist +71794 aorist +71804 aorist +71807 present +71810 aorist +71814 aorist +71821 aorist +71825 aorist +71831 imperfect +perfect +71838 aorist +71842 aorist +71845 aorist +71847 aorist +71856 aorist +71863 aorist +71866 aorist +71873 aorist +71875 aorist +aorist +71880 aorist +71883 present +71886 future +71892 future +71902 aorist +71904 present +aorist +71919 aorist +71925 imperfect +71928 aorist +71932 future +71941 aorist +71948 aorist +71956 imperfect +71958 aorist +71962 aorist +71964 aorist +71966 aorist +71969 present +71980 aorist +71984 aorist +71989 aorist +71992 aorist +72000 present +72008 imperfect +72017 aorist +72020 imperfect +72025 present +72030 imperfect +72039 aorist +aorist +72045 aorist +72056 present +72060 aorist +72065 aorist +72067 aorist +72073 aorist +72075 imperfect +72081 present +72085 imperfect +72095 aorist +72101 aorist +72104 aorist +72107 aorist +aorist +72112 aorist +72117 aorist +72122 aorist +72126 aorist +72138 aorist +72145 aorist +72151 imperfect +72157 present +future +72164 aorist +72171 imperfect +72173 aorist +72178 aorist +72180 present +72187 aorist +aorist +72202 aorist +72208 aorist +72215 aorist +72222 aorist +72225 present +72228 aorist +aorist +72233 imperfect +72239 aorist +aorist +72243 aorist +72247 present +72249 present +72253 aorist +72261 imperfect +72267 imperfect +present +72280 imperfect +aorist +72290 imperfect +present +72295 perfect +72303 imperfect +72307 aorist +72310 aorist +72313 aorist +72318 aorist +72323 aorist +72325 present +aorist +72330 aorist +72338 aorist +72343 aorist +72345 aorist +72350 aorist +72353 present +72355 aorist +72360 present +72363 aorist +imperfect +72367 pluperfect +72370 present +72372 present +72377 imperfect +72379 present +72381 aorist +72386 aorist +72393 present +72399 aorist +72402 aorist +aorist +72408 aorist +72418 aorist +aorist +72421 perfect +72424 aorist +72431 aorist +72445 aorist +aorist +72456 present +72460 imperfect +perfect +72463 present +72465 aorist +72471 aorist +aorist +72477 aorist +72486 aorist +72490 aorist +aorist +perfect +72502 aorist +present +72506 imperfect +72508 present +72511 imperfect +72514 present +72519 imperfect +present +72522 aorist +aorist +72526 aorist +72528 aorist +72532 present +aorist +72539 aorist +72544 aorist +aorist +72552 aorist +aorist +72558 aorist +72560 imperfect +72571 aorist +72574 aorist +72578 aorist +aorist +72582 aorist +aorist +72585 aorist +72591 imperfect +72593 imperfect +present +72600 imperfect +72604 aorist +72612 imperfect +72616 present +72628 aorist +72631 aorist +72635 imperfect +72641 imperfect +72649 aorist +72656 aorist +72662 aorist +72664 aorist +72670 imperfect +72672 imperfect +72677 aorist +72680 aorist +72683 aorist +72686 aorist +72689 imperfect +72694 present +72705 present +72720 present +72725 present +aorist +72732 aorist +72742 perfect +72745 aorist +72747 aorist +72749 aorist +72753 aorist +72757 aorist +72762 aorist +72767 aorist +72771 aorist +72774 imperfect +72785 imperfect +72790 aorist +72796 aorist +72806 imperfect +72815 aorist +72819 aorist +aorist +72826 imperfect +72833 present +72837 present +aorist +72849 aorist +72852 aorist +72855 aorist +72869 future +present +72879 aorist +72885 future +72888 present +72895 aorist +72902 present +imperfect +72908 aorist +72910 perfect +aorist +present +72919 aorist +72926 aorist +72933 aorist +72936 aorist +72941 aorist +72945 aorist +72951 aorist +72959 aorist +72969 aorist +72974 present +72978 present +72987 present +72990 aorist +72992 aorist +72995 aorist +73000 present +73003 aorist +73010 aorist +73017 aorist +73028 aorist +73036 aorist +73042 aorist +73048 aorist +73060 aorist +73066 aorist +73069 aorist +73084 aorist +73086 aorist +73094 aorist +aorist +aorist +73107 future +73120 aorist +73125 aorist +73140 imperfect +73144 imperfect +73147 present +present +73150 present +73153 aorist +present +73159 present +73165 aorist +73175 present +73184 aorist +73187 present +73195 aorist +73205 present +aorist +aorist +73212 aorist +aorist +73215 aorist +73219 aorist +73224 perfect +aorist +73229 aorist +73235 aorist +73240 aorist +73245 aorist +73254 present +73263 present +73268 aorist +73274 perfect +73278 aorist +73287 perfect +73290 present +73294 perfect +73298 aorist +73303 present +present +73308 perfect +73310 future +73321 present +73323 future +73327 aorist +73334 aorist +73339 aorist +73341 aorist +73347 aorist +73353 aorist +73355 aorist +73359 present +73369 present +73375 aorist +73379 aorist +73384 present +present +73387 present +73389 aorist +73391 perfect +73395 aorist +73399 aorist +73401 aorist +73404 present +73414 aorist +73417 present +73420 present +73422 imperfect +73427 aorist +73433 aorist +73436 aorist +73442 present +73450 present +73452 imperfect +73454 present +73461 present +73467 aorist +aorist +73476 aorist +73479 aorist +73482 imperfect +73486 present +present +73489 aorist +73495 aorist +imperfect +73500 aorist +73506 present +73510 present +73516 aorist +present +73523 perfect +73527 perfect +73533 present +73542 present +73545 imperfect +73547 imperfect +73553 aorist +73555 imperfect +perfect +73561 imperfect +73573 aorist +73575 present +73585 aorist +73593 aorist +73601 aorist +73608 aorist +73614 imperfect +73620 aorist +73626 aorist +73634 aorist +73637 aorist +73646 aorist +73648 aorist +73650 aorist +73662 aorist +present +73668 present +73675 present +73679 present +73685 aorist +73693 imperfect +73704 aorist +73715 aorist +73717 aorist +73719 aorist +aorist +73733 present +imperfect +73743 imperfect +73751 aorist +73753 imperfect +73756 present +73758 aorist +73761 aorist +73763 present +73766 aorist +aorist +73770 aorist +73777 aorist +73779 imperfect +73783 aorist +73785 aorist +73787 aorist +73792 present +73795 aorist +73797 aorist +73801 imperfect +73811 imperfect +73813 present +73822 present +73832 aorist +73836 imperfect +present +73839 aorist +73845 aorist +73849 aorist +73853 present +73855 present +73859 present +73865 present +present +73872 present +73875 present +73877 aorist +73894 perfect +73896 aorist +73900 present +73908 aorist +present +73913 present +73917 present +73926 present +73928 aorist +73933 present +73936 aorist +73943 aorist +73947 aorist +73950 imperfect +73954 present +73956 perfect +73958 aorist +73962 aorist +aorist +73970 aorist +73977 present +73982 aorist +73984 aorist +73994 present +73999 present +present +74005 present +74010 aorist +74017 aorist +74022 aorist +74025 aorist +74031 pluperfect +74033 aorist +74036 aorist +74041 aorist +74046 aorist +74050 aorist +74054 imperfect +perfect +74064 aorist +74066 aorist +74068 aorist +74071 imperfect +74073 aorist +74080 aorist +74086 imperfect +74095 aorist +74099 imperfect +74105 aorist +74111 present +aorist +74114 aorist +74127 aorist +present +74151 aorist +74155 imperfect +74161 present +74167 imperfect +74174 aorist +74177 aorist +74188 aorist +74192 aorist +74196 aorist +74204 perfect +present +74207 present +present +74211 present +present +74217 aorist +74223 aorist +74231 aorist +aorist +74234 aorist +74240 present +74247 aorist +74254 aorist +74262 aorist +74267 aorist +74269 aorist +74279 aorist +74287 aorist +74294 present +74297 aorist +74305 aorist +74312 aorist +74314 present +74321 aorist +74327 aorist +74332 imperfect +74336 present +74341 aorist +74352 aorist +74354 aorist +74356 present +74359 aorist +74362 aorist +74367 aorist +aorist +74377 present +74383 perfect +74386 future +74388 future +74393 perfect +74396 perfect +74398 future +74400 future +74404 aorist +74417 perfect +74423 present +74425 present +74432 present +74434 present +74439 present +74444 aorist +74447 present +74468 present +74470 present +74477 present +74479 aorist +74489 aorist +74493 aorist +74503 present +74508 present +74512 aorist +74534 present +74536 aorist +74541 aorist +74544 present +74550 aorist +aorist +74553 aorist +74555 aorist +74557 aorist +74568 perfect +74581 perfect +74589 present +74593 aorist +74603 present +74609 present +74619 present +74622 future +perfect +74627 aorist +aorist +74632 aorist +74635 aorist +74639 aorist +aorist +74651 present +74655 aorist +74659 aorist +74661 aorist +74663 aorist +74671 aorist +74677 imperfect +74680 present +74682 present +74695 aorist +74700 aorist +aorist +74709 aorist +74715 present +74718 imperfect +aorist +74724 present +74728 imperfect +74730 aorist +74737 aorist +74743 present +74746 aorist +74749 aorist +74756 aorist +74759 aorist +74764 aorist +74766 aorist +aorist +74776 imperfect +74781 present +74785 aorist +74793 aorist +imperfect +74808 imperfect +74816 aorist +74822 aorist +74824 aorist +aorist +74831 present +74837 pluperfect +74844 imperfect +74847 imperfect +74850 imperfect +74852 present +74856 perfect +74869 imperfect +74873 imperfect +74879 aorist +74885 aorist +74890 aorist +74897 aorist +74901 imperfect +74905 aorist +74908 aorist +74914 aorist +74917 aorist +74926 aorist +74930 imperfect +perfect +74933 present +74936 present +aorist +74940 aorist +74946 aorist +74948 aorist +aorist +74952 present +74954 perfect +74958 aorist +74961 aorist +74964 aorist +74969 present +74977 present +74985 imperfect +present +74998 aorist +75006 present +imperfect +75009 aorist +imperfect +75012 aorist +75022 present +75025 imperfect +75031 aorist +present +75034 present +75039 aorist +75044 aorist +present +75047 perfect +75052 present +aorist +75058 present +75060 aorist +75063 aorist +present +75071 present +75074 aorist +75079 imperfect +75083 present +75085 present +75090 imperfect +present +75100 present +75102 present +75108 imperfect +75114 aorist +75116 aorist +75119 aorist +present +75126 aorist +75130 aorist +75138 aorist +75140 aorist +75146 aorist +75152 aorist +75160 aorist +75164 aorist +75168 present +75173 present +75175 present +75178 present +75180 present +75182 present +75185 present +75187 aorist +75195 aorist +75199 imperfect +present +75202 aorist +75206 aorist +75209 aorist +75213 present +75218 aorist +aorist +75229 aorist +75240 present +imperfect +75245 imperfect +75253 aorist +75255 aorist +75261 aorist +75270 aorist +75275 aorist +75277 aorist +perfect +75283 aorist +75286 imperfect +75288 present +present +perfect +75294 aorist +75298 present +75301 aorist +75305 present +75308 aorist +75310 aorist +75313 aorist +aorist +75320 aorist +75323 imperfect +75327 present +present +75330 aorist +75333 aorist +aorist +75340 future +75347 aorist +75361 aorist +75369 aorist +75374 aorist +75382 aorist +75387 aorist +75390 aorist +75392 perfect +75397 aorist +aorist +75403 present +aorist +75409 aorist +75419 perfect +75423 aorist +75426 aorist +present +75433 imperfect +75436 aorist +75442 present +aorist +75450 present +75454 aorist +75457 aorist +75459 aorist +75468 aorist +aorist +75472 present +75474 aorist +aorist +75478 aorist +imperfect +aorist +75485 aorist +75489 aorist +75494 aorist +aorist +75499 aorist +75501 aorist +75507 aorist +75511 imperfect +75518 perfect +75521 aorist +75528 aorist +75533 present +75535 present +75537 imperfect +75540 aorist +75542 aorist +75548 present +75555 present +75561 aorist +75563 aorist +75571 present +75584 aorist +75586 aorist +75593 aorist +imperfect +75598 aorist +75602 imperfect +75604 aorist +75610 aorist +75612 imperfect +75620 present +75625 aorist +75629 present +75631 perfect +75640 present +75643 present +75645 present +75647 aorist +75653 present +75656 aorist +75665 aorist +75673 aorist +75683 aorist +75689 imperfect +75692 imperfect +75698 aorist +75707 present +75711 present +75719 aorist +75732 aorist +75743 aorist +75751 aorist +75753 present +75755 present +75763 aorist +75766 present +75772 aorist +75782 present +75785 aorist +75789 aorist +75800 aorist +75803 imperfect +75808 present +75812 imperfect +75818 present +75820 present +75825 imperfect +75833 present +75843 present +75852 imperfect +75856 imperfect +75858 present +75863 present +75866 present +75870 present +75877 imperfect +75879 aorist +75885 aorist +present +present +aorist +75896 present +75899 present +75901 present +75907 present +aorist +75910 present +present +75918 present +75923 imperfect +75925 present +75928 present +75932 aorist +75939 imperfect +75947 present +75949 present +75951 present +75955 aorist +75960 pluperfect +75965 present +present +75969 present +75974 aorist +75987 present +75992 present +75997 present +present +76001 present +76010 aorist +76016 present +76022 aorist +perfect +76031 present +76037 aorist +76040 aorist +76049 present +76053 present +76055 present +76057 present +76065 perfect +76070 present +76072 present +76077 present +present +76091 present +76099 aorist +76104 present +76109 present +76111 aorist +76115 present +present +76124 aorist +76126 aorist +76128 aorist +76133 aorist +76138 imperfect +76141 aorist +future +76151 aorist +76158 aorist +76160 aorist +76177 aorist +76181 aorist +76185 aorist +76194 perfect +76204 perfect +76206 present +76213 aorist +76219 present +imperfect +76224 imperfect +76226 imperfect +76231 imperfect +76238 imperfect +76245 aorist +76255 imperfect +76260 present +76263 present +76268 present +76271 present +aorist +76275 aorist +76293 future +76295 aorist +76297 aorist +76304 present +76310 imperfect +present +76318 aorist +76330 present +imperfect +76333 imperfect +76335 aorist +76345 present +76347 present +76350 aorist +76353 present +76358 future +76361 aorist +76366 present +76373 aorist +76378 present +76387 present +76391 aorist +76398 aorist +76403 present +76408 present +76412 present +76416 present +76419 present +76422 aorist +76430 imperfect +76441 aorist +76445 present +76456 future +76459 present +76463 present +76465 aorist +76472 aorist +76476 imperfect +76485 imperfect +76490 aorist +76495 aorist +imperfect +76506 aorist +76512 imperfect +76515 aorist +76519 aorist +76523 aorist +76527 aorist +76531 present +76536 aorist +76538 aorist +76540 aorist +76542 aorist +76544 future +76549 present +aorist +76555 aorist +76558 aorist +76560 aorist +76563 aorist +76567 aorist +76570 aorist +present +76578 present +76593 present +76597 aorist +76601 imperfect +perfect +76608 present +76611 imperfect +76613 imperfect +76619 present +76626 aorist +present +76632 aorist +76637 aorist +76642 aorist +76648 present +76650 aorist +76654 aorist +76657 aorist +76660 aorist +76663 aorist +aorist +76667 perfect +76675 imperfect +76677 present +76681 present +76686 aorist +76691 present +76695 aorist +76699 aorist +76703 aorist +76707 aorist +76713 aorist +aorist +76721 aorist +76725 present +76727 aorist +76731 aorist +76734 aorist +76740 aorist +76743 aorist +76748 present +76750 aorist +76753 present +76757 present +76762 aorist +aorist +76771 aorist +76776 aorist +76784 imperfect +76787 imperfect +76789 imperfect +76796 aorist +76800 imperfect +76804 present +76806 present +76815 imperfect +76817 imperfect +present +76824 aorist +76827 aorist +76832 present +76839 aorist +76846 present +76849 aorist +76862 aorist +76865 imperfect +76874 present +present +76884 present +76894 present +76896 aorist +76900 present +76903 present +76906 present +76916 present +present +76923 present +76932 imperfect +present +76935 aorist +76940 aorist +76944 present +76948 present +76952 present +76954 aorist +76961 imperfect +76966 aorist +76968 aorist +76974 perfect +aorist +76982 aorist +76990 present +76994 aorist +77000 imperfect +77009 perfect +imperfect +present +77013 present +77022 aorist +aorist +77026 imperfect +77030 aorist +77035 aorist +77046 imperfect +77048 imperfect +77051 aorist +77053 aorist +77059 aorist +77064 present +77067 aorist +77071 aorist +77074 present +77078 aorist +77080 aorist +77086 present +77092 aorist +77098 aorist +77114 present +77118 imperfect +77131 aorist +aorist +77134 present +77143 present +77145 present +77147 present +77160 aorist +aorist +77164 present +77167 present +77172 present +77177 present +77183 aorist +77194 aorist +77196 present +77198 present +77209 present +77211 aorist +77213 aorist +77216 imperfect +present +77223 aorist +77229 aorist +77234 aorist +77243 present +aorist +77249 imperfect +77258 present +77261 aorist +77264 imperfect +77266 aorist +77276 imperfect +77280 imperfect +perfect +77286 pluperfect +77289 pluperfect +77294 aorist +77296 aorist +77303 aorist +77306 imperfect +present +77311 aorist +77314 present +77317 aorist +77324 present +77332 aorist +77335 present +77341 present +77344 present +77348 present +77358 present +77360 present +present +77363 perfect +present +77368 present +77370 aorist +77377 present +77390 present +77395 present +77398 present +present +77405 present +77410 future +77413 present +present +77421 present +77425 future +aorist +77434 aorist +aorist +77441 aorist +77446 aorist +77450 aorist +aorist +aorist +present +77457 aorist +77462 aorist +77466 aorist +77471 aorist +77474 aorist +77480 present +present +77485 aorist +77488 present +77492 imperfect +77514 aorist +imperfect +77521 aorist +77530 aorist +77540 aorist +77549 perfect +77551 aorist +77555 imperfect +77557 present +present +77562 imperfect +77568 imperfect +77575 imperfect +perfect +77582 present +77586 present +77589 present +77594 aorist +77598 aorist +77604 aorist +77607 aorist +77610 aorist +77613 aorist +aorist +77616 present +77623 present +77625 aorist +77627 aorist +77631 aorist +77635 aorist +77639 aorist +77641 aorist +77644 present +77646 aorist +77651 aorist +77655 aorist +77660 present +present +77666 perfect +imperfect +present +77670 present +77673 imperfect +77678 aorist +77680 aorist +77684 aorist +77686 present +aorist +77693 aorist +77698 present +aorist +77703 pluperfect +77706 aorist +77711 aorist +77713 aorist +77718 imperfect +77721 present +77727 aorist +77734 aorist +77737 aorist +77744 aorist +77747 aorist +77750 present +77756 aorist +77766 aorist +present +77778 aorist +77786 aorist +77789 present +77792 aorist +77795 aorist +77801 present +77819 aorist +perfect +77824 present +77830 future +77833 perfect +77842 present +77844 present +77850 present +77854 present +77860 aorist +77868 aorist +77873 aorist +77882 aorist +77884 perfect +77887 future +77895 aorist +present +77900 present +77908 present +77915 aorist +77918 aorist +77925 present +77938 aorist +77940 present +77946 aorist +77953 perfect +77955 future +77965 present +77972 future +77974 present +perfect +77977 present +77983 present +present +77991 aorist +77994 present +78000 present +78011 present +aorist +78014 aorist +78019 perfect +78027 aorist +78029 present +78036 present +78039 aorist +78044 aorist +78048 present +present +present +78052 present +78054 present +78062 aorist +78064 present +78066 present +78068 present +78071 aorist +aorist +78079 aorist +78082 aorist +78086 aorist +78092 imperfect +78094 present +78100 pluperfect +78103 present +78107 present +78109 imperfect +78116 aorist +aorist +78119 aorist +78122 aorist +aorist +78137 aorist +78139 present +78142 aorist +aorist +78145 aorist +78149 aorist +78152 imperfect +78156 aorist +78163 imperfect +present +78168 aorist +78171 aorist +78178 imperfect +78183 present +78188 aorist +aorist +78193 aorist +imperfect +present +78207 aorist +78213 aorist +aorist +78217 aorist +78223 aorist +78231 aorist +78234 aorist +78238 aorist +78241 aorist +78249 aorist +aorist +78254 aorist +78261 present +78265 aorist +78270 imperfect +78274 present +78276 present +78279 aorist +78288 aorist +78292 aorist +78297 aorist +78304 aorist +78306 present +78314 present +78319 future +78325 future +78331 aorist +78333 imperfect +78341 present +78346 aorist +78350 present +present +78353 present +78361 aorist +78364 aorist +78368 present +78377 present +78379 aorist +aorist +78385 present +78391 aorist +imperfect +78396 aorist +78404 present +78407 aorist +78414 aorist +78419 aorist +78425 present +imperfect +78434 aorist +78439 aorist +78441 imperfect +78446 aorist +78458 aorist +imperfect +78463 aorist +78465 present +78470 perfect +present +78480 present +78482 aorist +78486 present +78496 present +78498 present +78505 present +78508 present +78510 future +78512 perfect +78515 aorist +78518 present +present +78524 present +78528 aorist +aorist +78533 aorist +78537 future +78541 future +78545 perfect +78549 present +78551 present +78554 present +78560 perfect +78563 aorist +aorist +present +78579 aorist +78583 present +78587 aorist +imperfect +78592 present +78601 aorist +78610 imperfect +78614 present +78620 aorist +78625 imperfect +78630 aorist +78635 present +78638 present +78640 present +78656 present +78661 aorist +78666 perfect +78672 imperfect +perfect +78682 imperfect +78688 aorist +78692 aorist +78697 aorist +78702 aorist +78705 imperfect +78712 aorist +78716 present +78718 aorist +aorist +78728 present +78731 aorist +78735 aorist +78740 aorist +78746 aorist +present +78751 aorist +78754 aorist +78757 aorist +aorist +78762 imperfect +78764 present +78767 present +perfect +78773 imperfect +78779 present +78781 aorist +78787 aorist +present +78795 aorist +78799 aorist +present +78811 imperfect +78816 present +present +78820 present +present +78827 present +78831 present +78833 aorist +78839 imperfect +78841 present +78845 present +78853 aorist +78855 aorist +78865 aorist +78870 present +78881 present +78883 aorist +78885 aorist +78890 aorist +78894 perfect +78898 aorist +78906 aorist +aorist +78911 present +78916 aorist +78924 aorist +78929 imperfect +78932 aorist +78935 present +78937 present +78940 perfect +78946 perfect +78955 perfect +78961 present +78968 present +78974 aorist +78977 present +78979 present +78990 present +79000 aorist +79006 imperfect +future +79011 present +perfect +79016 aorist +79018 aorist +79020 present +79022 present +79031 aorist +79037 aorist +79042 aorist +79044 present +79050 present +79053 aorist +79055 present +79058 aorist +79062 present +79068 present +79074 present +79077 aorist +79080 aorist +79084 present +79087 aorist +79089 aorist +79094 aorist +79097 aorist +present +79103 future +79107 aorist +perfect +79113 imperfect +79120 present +79123 present +79125 aorist +79136 present +79140 present +79142 aorist +79146 aorist +aorist +79151 aorist +79156 aorist +79161 aorist +79167 aorist +79169 aorist +79174 aorist +79178 aorist +79185 future +79192 perfect +79194 aorist +79198 present +aorist +aorist +79202 aorist +79206 aorist +79211 aorist +79213 aorist +79217 present +79222 aorist +79227 aorist +79229 present +79231 aorist +79233 aorist +79240 future +79246 aorist +79249 present +79252 imperfect +present +79255 present +79260 present +79265 imperfect +79274 imperfect +perfect +79277 present +79279 present +79283 present +79286 aorist +79289 present +79295 future +79298 imperfect +79305 aorist +79309 present +present +79318 imperfect +79320 present +79322 present +79325 present +79330 present +79334 aorist +79337 present +79342 aorist +79344 present +79347 aorist +79352 imperfect +79356 aorist +79360 aorist +79363 perfect +79372 present +present +79376 aorist +79379 aorist +79382 aorist +present +present +79386 present +79392 present +79394 aorist +79397 aorist +79399 present +79403 present +79406 imperfect +79409 aorist +79418 aorist +79422 imperfect +79426 perfect +79429 aorist +79433 present +79435 present +79440 aorist +aorist +79444 present +79448 imperfect +perfect +79453 present +aorist +79459 present +79463 aorist +79466 aorist +aorist +79475 aorist +79478 aorist +79484 aorist +79487 aorist +79494 perfect +79505 aorist +79507 perfect +79509 present +79518 aorist +present +79521 present +79525 perfect +79528 present +present +79535 present +present +79538 present +79541 perfect +aorist +79547 present +79549 imperfect +79553 pluperfect +79556 present +79559 perfect +79566 future +79571 aorist +79576 present +79582 imperfect +79590 present +79598 present +79602 present +aorist +79610 aorist +79615 present +79617 present +79625 present +79629 aorist +79633 aorist +79641 imperfect +present +79645 present +79653 aorist +79660 present +79663 aorist +79665 aorist +79670 aorist +79673 aorist +aorist +79680 present +79686 present +79688 aorist +79692 aorist +present +79696 aorist +79703 present +79708 aorist +79710 aorist +79712 aorist +79716 aorist +79718 present +79720 aorist +79722 aorist +79725 aorist +79729 imperfect +79736 aorist +79738 aorist +79744 aorist +79746 aorist +79749 aorist +79752 present +79758 aorist +79765 aorist +79770 present +present +79780 aorist +79783 present +79785 aorist +79793 aorist +79796 aorist +79798 aorist +79802 aorist +79808 aorist +79812 imperfect +79816 present +79821 present +aorist +79828 aorist +79830 aorist +79835 present +79839 aorist +79841 aorist +79845 aorist +79848 present +79850 aorist +79855 aorist +79860 aorist +79863 imperfect +79865 present +79867 aorist +79869 present +79871 aorist +79875 aorist +79877 aorist +79883 aorist +79888 present +79891 present +79897 aorist +79900 present +79908 aorist +79911 aorist +79913 aorist +79916 aorist +79920 present +79922 present +79931 aorist +79934 aorist +79936 aorist +79939 aorist +79943 aorist +79948 aorist +aorist +79959 aorist +79969 aorist +79971 aorist +79974 aorist +79979 aorist +79981 present +79991 present +79995 aorist +80000 present +present +80004 aorist +80008 aorist +aorist +80012 present +80014 present +aorist +80020 imperfect +80022 aorist +80027 aorist +80029 present +80042 present +80044 aorist +80050 future +80052 aorist +80055 aorist +80059 present +80070 perfect +80072 aorist +80075 aorist +80084 aorist +80087 present +80090 aorist +80095 aorist +80100 aorist +80105 aorist +80111 aorist +80113 aorist +80117 present +80119 aorist +80123 imperfect +future +80131 aorist +aorist +80138 present +80144 aorist +80156 aorist +80163 aorist +80165 aorist +present +80169 present +80172 present +80177 present +80189 present +80201 present +present +aorist +80211 aorist +80217 present +80236 aorist +aorist +80240 aorist +80243 future +80245 aorist +80249 aorist +80252 present +80255 aorist +80259 present +80262 present +80264 aorist +80267 aorist +80271 present +80275 present +80281 present +80286 present +present +80289 aorist +80293 present +80299 aorist +future +80304 aorist +80308 present +80312 present +80326 present +aorist +80332 present +80335 present +80343 present +80346 present +80350 present +80361 perfect +present +80371 present +present +future +80383 present +80386 present +80400 future +80405 aorist +80410 aorist +80412 perfect +80431 present +80433 present +imperfect +80437 present +80443 aorist +80446 aorist +aorist +80458 aorist +80461 perfect +80467 present +80472 aorist +80477 perfect +80482 aorist +80487 aorist +future +80492 aorist +80495 present +80498 present +80501 present +80506 present +80514 aorist +80520 present +80522 aorist +80526 aorist +80535 present +80545 present +80547 aorist +80550 aorist +80553 present +present +80557 aorist +future +80562 present +80565 future +80574 present +imperfect +80579 aorist +aorist +80587 present +80589 aorist +80594 aorist +80597 perfect +80600 aorist +80606 aorist +80612 aorist +80625 imperfect +80627 present +80632 aorist +80637 present +aorist +80647 aorist +present +80655 present +80658 present +80660 present +80665 aorist +present +80671 present +80676 aorist +80685 aorist +80690 aorist +80694 aorist +80697 aorist +80699 aorist +80701 aorist +80706 perfect +80712 present +80714 aorist +80716 imperfect +80719 present +80735 aorist +80739 present +80743 aorist +aorist +80747 aorist +present +80751 aorist +80755 aorist +80759 aorist +80766 perfect +present +80770 present +present +80774 perfect +80779 present +80783 present +80788 perfect +80790 present +80792 aorist +80796 present +80799 present +80802 present +80805 aorist +80807 present +80811 aorist +80815 aorist +80817 perfect +80820 future +80824 aorist +80830 aorist +80833 aorist +80840 imperfect +80846 aorist +80851 present +80854 present +perfect +80861 aorist +80865 aorist +80873 present +80879 aorist +80882 present +80885 present +80891 present +80894 present +80900 aorist +80905 aorist +80909 aorist +80912 aorist +80916 aorist +aorist +80922 aorist +80925 imperfect +80930 imperfect +80939 imperfect +80946 perfect +80948 present +imperfect +80954 present +80959 imperfect +80961 present +present +80966 present +80972 aorist +aorist +80980 aorist +present +80985 aorist +80994 imperfect +80999 aorist +present +81002 future +81007 aorist +81017 aorist +81032 aorist +81035 aorist +81039 present +81047 present +81050 present +81059 aorist +81066 present +81068 present +81070 present +81074 aorist +81079 perfect +81083 aorist +81086 aorist +present +81092 aorist +81096 present +81098 aorist +81111 aorist +aorist +81114 aorist +81118 present +present +81127 aorist +81133 imperfect +present +81138 present +81142 aorist +81145 imperfect +81151 present +81154 perfect +81160 present +present +81163 present +81175 present +81177 aorist +81189 aorist +81197 perfect +81200 present +81204 present +present +81214 aorist +81225 aorist +81230 perfect +present +81234 aorist +81243 present +present +81248 present +81254 present +81261 present +81265 aorist +81267 present +81276 aorist +81279 aorist +81290 aorist +81296 aorist +81298 present +81300 aorist +81308 present +81310 imperfect +present +81314 present +81316 imperfect +81325 present +81341 aorist +81348 aorist +81355 present +81360 aorist +81364 aorist +81366 present +81376 present +81381 present +81384 aorist +81386 present +81391 aorist +81393 present +81397 present +81399 aorist +81401 aorist +81409 aorist +81411 aorist +81418 aorist +81422 future +81424 present +81436 present +81438 aorist +81442 aorist +81456 aorist +81464 perfect +81473 aorist +81495 imperfect +present +81498 present +81506 present +81511 aorist +81515 imperfect +aorist +81518 aorist +81528 perfect +present +81535 present +81538 present +present +81545 aorist +81555 present +81557 present +81567 present +81573 present +present +81582 present +81586 present +81590 present +81596 present +81598 present +81606 present +present +81609 present +81613 present +81617 present +perfect +81624 present +81627 perfect +81629 present +81639 present +81641 aorist +81646 aorist +81662 present +81665 aorist +81670 present +81675 aorist +81687 present +81690 aorist +imperfect +81694 present +81701 present +81709 imperfect +perfect +imperfect +81717 pluperfect +81721 aorist +81723 present +81728 imperfect +81742 aorist +81745 present +present +81753 aorist +present +81763 aorist +81772 aorist +aorist +81777 aorist +81779 aorist +81781 aorist +aorist +81789 present +81800 aorist +aorist +81809 aorist +81812 present +81816 aorist +81824 present +81827 aorist +81832 present +81836 aorist +81843 present +81845 aorist +81849 present +81856 imperfect +81860 aorist +81862 present +81873 perfect +imperfect +81877 present +81880 present +81899 future +present +81912 imperfect +81917 present +81922 present +81927 aorist +81929 aorist +81933 present +aorist +81940 present +81946 aorist +81948 aorist +81950 aorist +81953 perfect +aorist +81956 imperfect +81963 aorist +81969 present +81972 aorist +81977 present +present +81981 aorist +imperfect +81984 aorist +81987 present +81989 aorist +81992 aorist +81996 aorist +81998 imperfect +present +82003 present +82008 aorist +aorist +82013 imperfect +82016 present +82021 imperfect +82030 aorist +82036 present +82044 present +82046 imperfect +82050 present +82055 present +82057 aorist +82063 aorist +82067 imperfect +aorist +82071 present +82076 aorist +82086 present +82088 present +82093 future +82100 aorist +82108 present +82111 present +82113 present +82115 present +82119 aorist +present +82122 aorist +perfect +82129 present +82133 present +82136 present +82141 future +82145 perfect +82148 present +82153 aorist +82158 aorist +present +82168 imperfect +82171 present +82176 aorist +aorist +82182 aorist +82185 aorist +aorist +82190 present +82196 aorist +82199 aorist +82202 imperfect +82204 aorist +82208 present +aorist +82214 aorist +82225 present +present +aorist +82238 aorist +82243 aorist +82245 present +82247 aorist +82255 aorist +82257 aorist +82262 imperfect +present +imperfect +82268 aorist +82270 present +82274 present +82276 present +82278 aorist +82280 present +82282 aorist +82290 present +82298 future +82300 aorist +82303 aorist +82305 aorist +82311 aorist +aorist +present +82316 aorist +82320 aorist +82323 imperfect +82334 aorist +82336 imperfect +82339 present +82348 aorist +82352 imperfect +82354 imperfect +82357 present +82361 aorist +82364 imperfect +82366 present +82370 aorist +imperfect +82376 aorist +82382 aorist +82386 present +imperfect +82392 aorist +82396 aorist +82403 aorist +aorist +82409 imperfect +82417 aorist +82421 aorist +82424 aorist +aorist +82429 present +aorist +82433 aorist +82438 aorist +82440 present +present +aorist +82447 present +82465 aorist +82467 aorist +82472 aorist +82474 aorist +82479 present +82483 imperfect +82486 aorist +82490 aorist +82492 aorist +82499 perfect +82505 aorist +82512 aorist +82520 aorist +aorist +82527 aorist +82530 present +82539 imperfect +82542 present +82547 aorist +82551 present +82555 aorist +82559 aorist +82565 aorist +82570 imperfect +82572 present +present +82575 present +82582 present +82584 present +82589 present +aorist +imperfect +82593 present +82602 imperfect +82611 aorist +82616 aorist +82618 aorist +82626 present +present +82630 aorist +82632 aorist +82635 aorist +82639 aorist +82643 aorist +82651 present +82653 imperfect +82655 imperfect +82660 aorist +82663 present +aorist +82673 aorist +82676 perfect +82684 aorist +82687 aorist +82691 aorist +aorist +82699 aorist +82702 aorist +82706 aorist +82708 aorist +82711 aorist +82719 aorist +82723 aorist +82727 aorist +82738 aorist +82741 aorist +82744 aorist +82748 aorist +82751 aorist +82754 present +82759 present +82763 aorist +82767 aorist +82770 present +82775 aorist +82777 imperfect +82785 aorist +82796 aorist +82803 aorist +82805 imperfect +aorist +82812 present +82816 present +82819 aorist +aorist +82828 present +present +82835 aorist +82837 aorist +82839 aorist +82849 present +82854 aorist +82860 aorist +82865 aorist +82869 aorist +82871 aorist +82877 present +82880 aorist +82882 present +82891 present +82894 present +82896 aorist +82899 aorist +82907 imperfect +present +82914 present +82934 imperfect +82936 present +82939 imperfect +82942 present +82945 imperfect +aorist +82957 aorist +82966 present +aorist +82973 aorist +82975 future +82979 aorist +82981 present +future +82986 aorist +82988 aorist +82998 aorist +83003 aorist +83006 aorist +83012 aorist +83016 aorist +83018 aorist +83020 future +83024 present +83029 aorist +83037 future +83039 aorist +83046 imperfect +83049 present +83052 present +83058 present +83075 perfect +83080 aorist +83093 aorist +83100 aorist +83118 aorist +83135 present +83143 present +83164 present +83178 present +83186 present +83190 present +83205 present +83211 present +83216 future +83222 aorist +83226 present +aorist +83230 aorist +83237 aorist +83241 present +aorist +83257 present +83259 present +83262 aorist +aorist +83267 aorist +83274 aorist +83293 present +83304 aorist +83307 present +83313 present +83318 present +83329 present +83335 perfect +83341 future +83343 present +83359 present +83366 present +83373 aorist +83390 present +present +83394 present +83398 aorist +83404 aorist +83406 aorist +83408 aorist +83414 aorist +83419 present +present +83422 aorist +83424 aorist +83442 aorist +83455 present +83462 aorist +83471 aorist +83473 aorist +83478 aorist +83480 present +83488 aorist +83500 aorist +83513 aorist +83519 aorist +83531 present +83536 imperfect +83542 present +83546 aorist +83549 present +83552 aorist +83559 present +83562 present +perfect +83594 aorist +83599 present +83602 present +83606 present +83609 present +83611 present +83614 present +83619 present +83623 present +83627 present +83631 present +83633 present +83635 perfect +83641 present +83648 present +83650 present +83655 present +83659 present +83661 present +83665 future +83682 present +present +83692 present +83701 present +83713 future +83730 present +83738 present +83742 present +83756 present +83772 present +83782 present +83790 aorist +83793 future +83798 aorist +83801 future +83815 future +83822 present +83827 present +83831 present +83833 present +83836 present +83846 present +83855 present +83858 present +83862 present +83880 present +83882 present +83885 present +83889 present +83893 present +83895 present +present +83901 perfect +83903 present +83914 present +83927 present +83931 present +83933 present +83935 present +present +83938 present +83940 present +present +83943 present +83946 present +83950 present +83958 present +83966 present +83971 perfect +83975 present +83978 present +83983 present +83988 perfect +83997 present +84004 future +84006 future +84013 present +84029 present +84081 aorist +84089 aorist +84099 future +84101 aorist +84103 present +84112 perfect +84115 aorist +84121 future +84124 present +84133 present +84135 future +84141 present +84146 present +84148 aorist +84151 future +84166 aorist +84176 present +84180 present +84183 present +84186 present +84188 aorist +84192 aorist +84199 present +84202 present +84206 aorist +84214 present +84216 perfect +84219 present +84224 present +84226 present +84228 present +84230 present +84234 aorist +84236 aorist +84238 present +84240 present +84243 present +84247 perfect +84254 imperfect +84267 present +84272 aorist +84285 aorist +84287 present +84295 perfect +84300 present +84305 present +84309 aorist +84312 aorist +84323 future +84339 perfect +present +84357 present +84360 present +84364 aorist +84366 present +84371 present +84384 aorist +84403 perfect +84422 present +84426 present +84435 aorist +84447 present +present +84470 future +84481 present +84486 aorist +84489 present +84491 future +84493 perfect +84505 aorist +present +84516 present +84518 aorist +84523 aorist +84529 present +84532 present +84542 present +84544 present +84547 present +84550 present +84559 present +84567 present +84575 aorist +84580 aorist +84586 aorist +84602 present +aorist +84612 aorist +present +84626 aorist +84640 present +84645 present +84650 aorist +84665 present +84686 present +84703 perfect +84707 perfect +84714 present +84718 present +84731 present +84751 present +84757 aorist +84760 present +84764 present +84767 present +84769 present +84771 perfect +84776 perfect +84783 aorist +84786 aorist +84793 perfect +84795 future +84801 aorist +84804 aorist +84808 perfect +84811 present +84825 aorist +84829 aorist +84832 aorist +84837 aorist +84839 present +84842 perfect +84844 aorist +84847 aorist +84853 aorist +84858 aorist +84865 present +present +84868 present +84871 aorist +84879 aorist +84885 aorist +84891 aorist +84895 present +84910 perfect +84919 perfect +84921 present +84933 present +84937 perfect +84942 present +84955 present +84961 perfect +84970 aorist +84975 present +84983 aorist +84989 future +84997 present +aorist +85000 present +85011 present +85016 aorist +85020 aorist +85026 future +85035 present +aorist +85047 aorist +future +85058 present +85073 aorist +85085 aorist +85099 aorist +85103 aorist +85108 imperfect +85114 present +85116 present +85119 aorist +85130 aorist +85138 present +85141 present +85159 aorist +85180 aorist +85186 aorist +85213 aorist +85229 present +85232 future +85269 aorist +85280 future +85285 aorist +85287 aorist +85292 aorist +85295 aorist +85300 aorist +85310 aorist +85324 future +present +85331 aorist +85333 aorist +85335 aorist +85340 future +85344 present +85347 aorist +85355 aorist +85357 aorist +85367 aorist +85382 aorist +85386 perfect +85396 future +85398 present +85404 aorist +85406 aorist +85413 present +85419 aorist +perfect +85426 aorist +85429 present +85432 future +85434 perfect +85437 aorist +85441 present +85445 present +85448 aorist +85451 aorist +85455 present +present +85462 present +85464 present +85470 present +85478 present +85488 present +85493 present +85502 aorist +85509 present +85522 future +85525 present +85533 aorist +85536 present +85543 aorist +85545 perfect +85548 present +85554 present +85556 present +85570 imperfect +85575 aorist +85580 aorist +85584 aorist +85588 aorist +85592 present +85601 aorist +85616 aorist +85630 imperfect +85632 imperfect +85638 imperfect +85643 present +85651 aorist +85656 aorist +85659 present +85691 present +85693 present +85695 present +85699 present +85705 present +85711 present +85713 perfect +85717 aorist +85720 perfect +85728 present +85732 future +85734 aorist +85739 aorist +85743 present +85749 present +85752 aorist +85760 aorist +85770 aorist +85776 aorist +85778 aorist +85783 imperfect +85795 imperfect +85802 aorist +85807 aorist +85811 aorist +85814 imperfect +85816 present +85827 future +85832 aorist +85837 aorist +85847 pluperfect +85852 imperfect +85854 future +85857 aorist +85863 aorist +85875 imperfect +85880 aorist +85885 aorist +85888 aorist +85890 aorist +85904 aorist +85908 aorist +85913 aorist +85931 aorist +85934 aorist +85939 aorist +85945 present +85948 aorist +85958 perfect +85963 present +85967 present +perfect +85974 present +85976 present +85980 present +85982 present +85985 present +85987 present +85992 present +85994 present +present +86004 present +86008 present +86013 perfect +86016 present +86020 present +86028 present +present +86033 present +86040 present +86042 present +86046 present +86049 present +86054 present +86057 present +86060 present +86064 present +86069 present +86074 present +present +86082 present +86084 present +86094 present +86101 present +86108 present +86116 present +86126 future +86149 present +86175 aorist +86192 imperfect +86201 aorist +86209 aorist +86220 aorist +86224 present +86235 present +86239 present +86275 present +86278 present +86283 present +86285 aorist +86287 present +86290 present +86300 present +86309 present +86312 present +86336 aorist +86341 present +86345 aorist +86350 future +86358 present +86367 present +86374 present +86379 present +present +present +86389 present +future +86395 present +86399 present +86402 aorist +86409 aorist +86414 present +86421 present +86426 present +86441 present +86444 aorist +86446 present +86457 present +aorist +86473 present +86479 aorist +86485 aorist +86493 future +86509 perfect +86514 present +86516 present +86530 present +86536 present +present +86547 aorist +86550 present +86552 present +86556 present +86559 present +86564 present +present +86568 present +86574 present +86581 aorist +86583 present +86585 perfect +86590 present +86595 present +86598 perfect +86607 present +86611 perfect +86614 present +86618 present +86625 present +86628 aorist +86630 aorist +86639 present +86647 aorist +86650 aorist +86653 aorist +86656 aorist +86659 aorist +86662 aorist +86665 future +86682 aorist +86687 aorist +86697 future +86699 future +86705 present +86708 future +86712 aorist +86715 aorist +86717 present +86724 present +86729 future +86749 perfect +86753 present +86757 aorist +86765 present +86768 aorist +86771 perfect +86782 perfect +86784 present +86795 future +86797 aorist +86811 present +86815 present +present +86827 present +86836 imperfect +86840 present +86854 present +86886 present +86899 perfect +86914 present +86922 future +86926 present +86941 present +86953 future +86955 future +86966 present +86975 aorist +86977 aorist +86989 present +86996 present +aorist +87002 future +87006 perfect +87009 aorist +87013 aorist +87016 future +87023 aorist +87027 present +future +87031 present +87033 future +87036 present +87041 present +87044 present +87047 present +87050 present +87059 aorist +87062 aorist +87070 aorist +87081 present +present +87085 present +present +87088 future +87092 present +87098 perfect +87103 present +87106 present +87110 future +87114 aorist +87117 aorist +87121 present +87131 aorist +87145 present +aorist +87150 aorist +87154 aorist +87160 perfect +87165 aorist +87175 aorist +87180 aorist +87195 present +future +87206 perfect +perfect +87209 future +87214 aorist +87221 future +87224 present +87227 present +87232 present +87245 future +87248 present +87250 present +future +87258 perfect +87264 aorist +87270 aorist +87275 aorist +87278 future +87283 present +87285 aorist +87294 present +87300 aorist +87311 aorist +87317 perfect +aorist +present +87329 present +87333 future +87352 present +87357 present +87363 present +87371 aorist +present +87378 aorist +87387 present +87390 present +87398 aorist +87400 future +87409 present +87411 aorist +87417 future +87422 present +87424 aorist +87427 future +87432 present +87436 aorist +87439 present +87444 present +87455 present +87461 present +87464 aorist +87472 aorist +87481 aorist +87484 future +87487 present +87492 present +87496 present +87501 present +87505 future +87508 present +87519 present +87523 present +87529 aorist +87533 future +87536 aorist +87540 aorist +87543 aorist +87546 aorist +87549 aorist +87551 present +87554 aorist +87557 aorist +87559 perfect +87565 present +87570 aorist +87575 present +87578 aorist +87594 present +87597 aorist +87603 aorist +87617 present +87621 aorist +87624 present +87626 future +87634 future +87638 present +87640 present +aorist +87645 present +87647 aorist +87651 present +87656 present +87660 aorist +87666 present +87668 present +87670 present +87672 aorist +87679 aorist +87684 present +87691 aorist +87698 aorist +87701 perfect +87705 present +87709 present +87719 aorist +87723 aorist +87725 aorist +87728 present +87734 present +87738 aorist +87744 aorist +87759 perfect +87770 present +87775 present +87779 aorist +87783 aorist +87787 aorist +87789 perfect +aorist +87799 present +87804 present +87811 present +aorist +87828 aorist +87834 present +87841 aorist +87843 present +87845 aorist +87847 aorist +87849 aorist +87860 aorist +87881 present +87889 present +87896 present +87899 aorist +87904 aorist +87944 aorist +87948 present +aorist +87960 aorist +87962 present +87967 present +87972 present +87978 future +aorist +87983 aorist +87987 aorist +87992 perfect +87995 present +87997 present +88007 aorist +88010 future +88012 aorist +88020 aorist +88028 present +88034 future +88039 present +88042 future +88045 present +88049 aorist +88059 aorist +88063 aorist +88072 future +88079 present +88081 present +88087 present +88097 perfect +88104 aorist +88109 future +88111 perfect +future +88116 present +future +88129 aorist +88161 aorist +88166 aorist +88174 aorist +88182 aorist +88184 aorist +88194 aorist +88215 aorist +88222 aorist +88225 aorist +88228 future +88250 present +88257 aorist +88262 present +88273 present +88278 present +88285 present +88299 present +88304 aorist +88308 present +88312 present +88315 present +present +88318 present +88321 present +88326 aorist +88336 present +88345 present +88351 present +88361 present +88368 aorist +88384 present +88390 present +88395 present +88399 present +88403 present +88409 present +88412 present +88423 present +88430 present +88433 present +88436 present +88439 present +88442 present +88447 present +88450 present +present +88453 present +present +88457 present +present +88460 present +present +88463 present +88468 present +88472 present +88476 present +88478 present +88486 present +present +88500 present +88504 present +88506 aorist +88511 perfect +88515 future +present +88520 present +88524 present +88527 present +present +88532 present +88535 future +88541 present +88546 present +88555 present +present +88559 present +88567 present +88570 perfect +present +88574 present +88581 perfect +88584 perfect +88587 future +88591 present +88601 present +88603 present +88608 present +88610 future +88617 present +88626 present +present +88633 present +88637 present +88644 present +88647 present +88663 present +88667 present +88671 present +aorist +88698 present +88703 present +88706 present +88710 perfect +88714 future +88716 future +88718 future +88720 future +88730 present +88733 future +88745 present +88752 perfect +88762 aorist +88771 aorist +88774 aorist +88778 perfect +88780 aorist +88786 aorist +88795 aorist +88809 aorist +88819 present +88824 present +88827 present +88834 present +aorist +88839 present +88841 present +88843 present +88846 present +88848 present +88852 present +88854 present +88856 present +88861 aorist +88864 present +88866 present +88872 present +88874 present +88876 future +88878 present +88881 aorist +88886 present +88892 present +88900 present +88902 present +88906 present +88909 present +88911 present +88913 present +88919 present +88922 present +88924 present +88931 present +88935 present +88939 present +88942 present +88945 present +88948 present +88952 present +88955 present +88958 present +88963 aorist +88965 aorist +88970 present +aorist +88975 present +88983 present +88989 future +88995 perfect +present +88998 present +89002 future +89008 future +89018 future +89024 present +89027 aorist +89031 present +89037 perfect +89039 perfect +89051 present +89054 present +89064 present +89068 present +89074 present +89078 aorist +89081 present +89087 present +89108 present +89120 present +89134 present +89149 present +89153 aorist +89156 aorist +89164 present +89168 present +89171 present +89178 present +89182 present +89186 present +aorist +perfect +89200 present +89202 present +89210 present +89214 present +89219 present +89231 aorist +89234 perfect +89238 present +89240 aorist +89245 aorist +89250 aorist +89263 present +89272 aorist +89276 present +89287 present +89298 present +89304 aorist +89311 present +89315 perfect +89321 aorist +89331 aorist +89335 perfect +89338 future +89346 future +89349 present +89351 aorist +89361 present +89365 aorist +89373 present +future +89381 present +present +89387 future +89393 aorist +89401 present +89404 present +89416 perfect +89426 present +89428 perfect +89432 present +89435 present +89438 aorist +89443 present +89449 aorist +89456 present +89464 present +89470 aorist +89476 perfect +89481 present +89493 future +present +89498 aorist +89526 perfect +89533 present +present +89537 aorist +89544 present +89547 perfect +future +89551 aorist +89557 perfect +future +89561 imperfect +89565 aorist +89572 present +89579 present +89581 aorist +89589 present +89594 present +present +aorist +89601 aorist +89608 aorist +89611 present +89614 present +89618 aorist +89624 aorist +89634 aorist +89637 present +89644 aorist +89647 present +89652 aorist +89656 aorist +89658 aorist +89663 future +89669 perfect +89671 present +89678 future +89681 present +89695 aorist +89706 aorist +89709 present +89723 aorist +89727 aorist +89733 aorist +89745 present +89751 present +89760 aorist +89767 aorist +89773 present +89778 aorist +89784 aorist +89802 aorist +89804 present +89821 aorist +89827 present +89833 aorist +89837 aorist +89840 aorist +89851 present +89860 perfect +89863 aorist +89870 aorist +89882 aorist +89888 aorist +89893 aorist +89898 aorist +89904 present +89907 aorist +89912 present +89915 aorist +89921 aorist +89924 aorist +89936 aorist +89947 aorist +89964 aorist +89969 present +89978 present +89980 present +89992 aorist +present +89995 present +90006 present +90017 present +90028 aorist +90032 present +90034 present +90037 present +90051 future +90068 present +90083 present +90088 aorist +90093 present +90103 present +90116 present +90118 aorist +90133 perfect +90135 aorist +90153 aorist +90186 present +90189 perfect +90198 present +90224 present +90236 aorist +90244 aorist +90258 aorist +90264 present +90268 present +90278 future +90296 aorist +90309 present +90322 present +90326 present +90331 present +perfect +90345 aorist +90356 present +90358 present +90363 present +90366 present +90377 perfect +90382 aorist +90390 aorist +present +90395 aorist +90404 aorist +90410 aorist +90412 aorist +90419 perfect +90423 aorist +90425 aorist +90429 present +90431 present +90438 aorist +90451 present +90453 present +90456 present +90460 present +90462 perfect +future +90473 future +90484 aorist +90499 aorist +90507 aorist +90515 aorist +90517 present +90522 present +90526 present +90529 present +90531 perfect +90560 present +90571 present +90592 aorist +90596 present +90604 aorist +90608 present +90618 perfect +90621 present +aorist +90627 present +aorist +90631 aorist +90641 present +90646 aorist +90659 perfect +90661 present +90664 present +90667 aorist +90670 aorist +90677 present +90685 aorist +90687 perfect +90696 perfect +90707 aorist +90733 present +90744 present +90761 present +90763 present +90769 perfect +90771 aorist +90787 perfect +90790 aorist +90797 aorist +90800 perfect +90804 aorist +90808 aorist +90814 aorist +90816 aorist +90820 present +90824 aorist +90834 present +90843 perfect +90862 perfect +90876 aorist +90885 perfect +90890 aorist +90894 present +90907 present +90912 present +90921 present +90924 present +aorist +90928 present +90932 present +90939 present +90942 aorist +90946 future +90952 present +90955 aorist +90957 aorist +90970 aorist +90975 imperfect +90980 present +90984 present +90994 present +90998 present +91002 present +91005 present +91013 present +91016 present +91020 present +91025 aorist +91031 aorist +91033 aorist +91035 aorist +91039 imperfect +91043 present +present +91048 present +91051 present +91055 present +91058 present +91060 present +91066 future +91072 present +91079 present +91086 aorist +91092 aorist +91095 present +91098 present +91100 present +91103 present +91106 aorist +91109 present +91111 present +91117 present +91132 future +91136 future +91140 present +91146 present +91150 future +91152 future +91157 aorist +91159 future +91164 future +future +91168 future +91175 perfect +91179 present +91187 present +91194 present +future +91205 present +91207 present +91211 present +91214 present +91216 present +91224 aorist +91226 aorist +91238 present +91240 perfect +91242 present +91252 present +91258 present +91262 present +91268 present +91282 perfect +91284 present +91295 present +91306 present +91313 aorist +91318 present +91320 aorist +91330 present +91334 perfect +91339 perfect +91342 present +91345 present +91351 present +91354 aorist +91359 future +91365 future +91374 future +91382 aorist +91392 aorist +91397 perfect +91404 present +91411 present +91413 present +91417 aorist +91421 aorist +91423 present +91426 aorist +91428 perfect +present +91431 aorist +91434 aorist +91436 aorist +91438 aorist +91443 aorist +91445 present +91452 aorist +91457 aorist +91488 present +91490 present +91492 present +91494 present +91496 present +91498 present +present +91503 present +present +present +present +present +present +91515 aorist +91519 present +91521 present +91528 present +91533 present +91549 aorist +91551 present +91555 present +91559 aorist +91563 present +91573 future +91586 present +91590 present +91594 aorist +91597 future +91604 aorist +91606 future +91611 perfect +91627 present +91630 aorist +91640 present +91657 present +91660 perfect +present +91665 aorist +91667 aorist +91675 aorist +91679 present +91683 present +91687 perfect +91689 present +91693 aorist +91700 aorist +91713 aorist +91725 aorist +91737 perfect +91744 present +aorist +91750 present +91754 present +91762 aorist +91764 present +91781 aorist +91787 present +91805 imperfect +91809 aorist +91812 aorist +91815 present +91819 present +present +91835 present +91841 present +91846 present +91852 future +aorist +91859 present +91863 present +91867 present +91878 perfect +91884 future +91889 present +91893 present +91897 perfect +91900 future +91908 present +91910 perfect +91915 present +91919 present +91922 present +91928 future +aorist +91939 present +91950 present +91953 present +91960 present +91965 present +91968 present +91970 present +91976 perfect +91982 future +91984 present +92007 future +92011 imperfect +92013 aorist +92015 aorist +92017 aorist +92034 present +92038 present +92041 present +92045 future +92064 future +92085 aorist +92088 future +92094 perfect +92101 present +92103 aorist +92108 aorist +92112 aorist +92115 perfect +92118 present +92123 present +92125 present +future +92134 present +92139 present +present +92147 aorist +92152 present +92155 present +92160 present +92163 perfect +92174 present +92176 present +92181 present +92184 aorist +92187 aorist +92197 aorist +92202 present +92211 present +92217 present +92224 present +92238 present +92251 present +92256 present +92266 aorist +92274 present +92277 present +92287 present +92294 present +92297 present +92303 present +92315 present +92324 aorist +92330 present +aorist +92334 present +present +92337 present +92340 perfect +present +92351 aorist +92355 aorist +present +92361 aorist +92366 present +92370 present +92378 present +92383 present +present +92388 present +92393 present +92398 present +present +92403 present +92407 perfect +92416 perfect +92430 present +92434 present +92439 present +present +92442 perfect +92454 perfect +92461 perfect +92465 future +92469 perfect +92473 future +92478 perfect +92483 perfect +92487 present +92494 present +perfect +92497 aorist +92499 present +92502 perfect +92505 present +92509 present +92514 present +92524 aorist +92527 present +92529 aorist +92532 present +92536 present +92538 aorist +92540 aorist +92545 aorist +92549 present +92553 aorist +present +92558 aorist +92560 present +92567 aorist +92570 present +92580 present +92583 present +92585 perfect +92589 present +92591 present +92594 present +92597 perfect +92604 present +perfect +92608 present +92610 perfect +92614 present +92619 aorist +92621 aorist +92624 aorist +92628 aorist +92633 future +92639 present +92643 present +92646 perfect +present +92653 present +92657 present +present +92661 present +92664 present +92667 present +92670 present +92673 present +92676 present +92679 present +92684 present +92686 present +92693 present +92696 present +92699 present +92704 aorist +92709 aorist +present +92715 aorist +92719 perfect +92728 present +92733 present +92743 aorist +present +92749 aorist +92759 present +92764 aorist +92777 present +92782 present +92784 present +92788 present +present +92791 present +present +92794 present +present +92798 perfect +92805 present +92809 present +92816 perfect +92821 present +92826 future +92830 present +92835 present +92839 present +92841 future +92843 perfect +92847 present +92853 aorist +92857 present +92859 present +aorist +92866 present +92869 aorist +92875 present +92879 present +92884 perfect +92888 present +92891 present +92895 present +92898 present +perfect +92902 aorist +92904 present +aorist +92909 present +92913 perfect +92922 perfect +92938 present +present +92948 present +92997 present +93003 present +present +93009 future +93015 aorist +present +93019 aorist +present +93022 present +93030 aorist +93036 aorist +93039 present +93043 present +93049 present +future +93055 present +93057 present +93063 present +93069 aorist +93072 present +93077 present +93081 present +93084 present +93088 present +93094 aorist +93104 aorist +93106 present +93109 present +93116 perfect +93122 present +93128 present +93133 present +93141 present +93149 present +present +93154 present +93156 aorist +93158 aorist +93161 present +93165 present +93184 present +93187 present +93189 present +93194 present +93201 present +93204 present +93213 present +93218 present +93225 present +93231 perfect +93233 future +93235 present +93239 present +93246 present +93250 aorist +93252 present +93255 present +93257 present +93260 present +93264 present +93270 aorist +93277 future +93283 present +93289 aorist +93295 present +93300 aorist +93306 perfect +93311 present +93316 present +93320 present +93323 present +93328 aorist +93332 present +93336 present +93340 perfect +93345 aorist +93349 aorist +93356 aorist +93362 future +93365 present +93367 present +93373 present +93377 present +93380 aorist +93385 present +93387 present +93392 perfect +93395 present +93400 present +93402 aorist +93408 aorist +93417 present +93422 aorist +93426 aorist +93428 aorist +93435 aorist +93443 present +93451 aorist +93457 present +93464 aorist +93467 aorist +93474 aorist +93477 perfect +93482 aorist +93485 present +93492 aorist +93494 perfect +93499 present +93502 present +93505 present +93509 present +93511 aorist +93515 present +93517 present +93524 aorist +93531 present +93536 present +93540 present +93542 present +93547 present +93551 aorist +93554 aorist +93558 present +93560 present +93569 imperfect +93575 aorist +93581 aorist +93595 aorist +93602 aorist +93604 imperfect +93607 present +93612 imperfect +93621 aorist +93625 aorist +93633 aorist +93637 present +93643 aorist +93646 present +93651 perfect +aorist +93655 aorist +93657 aorist +93659 aorist +present +93662 present +93666 aorist +93668 aorist +93674 present +93680 aorist +93685 imperfect +93687 present +93691 aorist +93693 aorist +93700 imperfect +93703 aorist +93713 perfect +93716 present +perfect +present +93720 aorist +93724 perfect +93734 future +93736 aorist +93739 present +93741 future +93749 present +aorist +93754 present +93760 present +aorist +93764 present +93770 present +93772 present +93781 present +93788 present +93796 present +93804 present +present +93812 present +93818 present +93821 present +93825 present +93830 present +93834 present +93839 present +93842 present +93847 present +93849 present +93852 present +93857 present +93860 present +93865 present +93871 present +93873 present +93877 present +93879 present +93883 present +93887 present +93896 present +present +93899 present +93916 present +93919 present +present +93923 present +93925 present +93927 present +93935 aorist +93938 present +93940 present +93944 aorist +93949 present +93964 present +93971 present +93973 present +93977 present +93980 present +93982 present +93985 present +93990 present +93992 present +94006 present +present +94017 aorist +94020 present +94025 present +94030 perfect +94033 aorist +94037 present +94039 present +94041 perfect +94049 present +94063 present +94065 present +94068 present +present +94076 present +94078 present +94082 present +94087 present +94093 perfect +94097 present +94100 aorist +94106 aorist +94108 present +present +94114 present +present +94122 present +94128 present +94131 present +94142 aorist +94154 present +94158 present +94199 aorist +present +present +94206 present +94211 present +94217 present +94220 present +94224 present +94227 present +94233 perfect +94238 present +94240 present +94245 present +94253 present +94255 present +94265 present +94269 present +94273 present +94277 present +94281 present +94283 present +94288 present +94294 aorist +94298 present +94304 present +94307 aorist +94313 present +94316 aorist +94320 present +94323 present +94328 present +94331 present +94333 present +94339 present +94341 present +94344 present +94346 aorist +94348 aorist +94353 present +94356 aorist +94362 aorist +94372 imperfect +aorist +94376 aorist +aorist +94379 aorist +94381 present +94389 present +94400 aorist +present +94408 present +94414 present +94417 present +94425 present +94432 present +94437 present +94440 aorist +94444 present +94448 present +94455 future +94464 present +94472 present +94477 present +94480 present +94482 present +94485 present +94487 present +94489 present +94501 present +94506 imperfect +94509 imperfect +94511 present +94515 present +94521 aorist +94525 present +94528 aorist +94530 present +94533 present +94536 present +94541 present +94547 aorist +future +94555 present +94557 present +perfect +94562 imperfect +94570 imperfect +present +94573 present +94580 present +present +94586 present +aorist +94598 present +94606 present +94614 present +94620 present +94627 present +94634 present +94641 present +94687 present +94694 present +94698 present +94704 present +94708 present +94716 present +94719 present +94734 aorist +94747 aorist +94752 present +94759 aorist +94764 present +94767 present +94775 present +94781 aorist +94786 present +94789 present +94797 present +94819 aorist +94829 aorist +94832 imperfect +94850 present +94853 aorist +94859 present +94869 present +94874 present +94876 present +94881 present +94884 present +94888 present +94892 present +94899 present +94906 present +94910 aorist +94914 present +aorist +94920 present +94930 present +94935 present +94938 present +94943 present +94945 present +94951 present +94961 aorist +94996 present +95002 present +95005 present +95007 present +95018 present +95027 present +95031 present +perfect +95034 present +95037 present +95040 present +95043 perfect +95053 present +95059 present +95063 present +95065 present +95068 aorist +95071 present +95075 aorist +95080 future +95084 present +95086 present +95089 present +present +95094 present +95098 present +95100 present +95102 present +95104 present +95108 present +95110 present +95114 present +95119 present +95123 present +95125 present +95127 present +95129 present +95133 present +95137 future +95140 future +95143 future +95147 present +95151 present +95154 aorist +95160 future +95162 imperfect +95164 imperfect +95167 imperfect +95170 imperfect +95174 perfect +95176 perfect +95181 present +95193 present +95198 future +95201 aorist +95204 present +95216 present +95220 present +95226 present +95229 present +95233 present +95238 present +95241 present +95245 present +95247 present +95254 present +95257 present +95260 present +95262 present +95264 present +95267 present +95272 present +95276 present +95279 present +95284 present +95289 aorist +95294 aorist +95298 present +95301 future +95305 aorist +95321 present +95331 aorist +95333 future +95335 present +95338 present +95345 aorist +95347 future +95360 aorist +95362 future +95364 present +95368 future +present +95371 aorist +95375 present +95384 perfect +95389 future +95391 present +95395 present +95405 present +95411 present +95413 present +95416 present +95418 present +95420 present +95423 present +95428 present +95434 present +95437 present +future +95442 future +95446 future +95450 future +95456 present +95459 present +95465 future +95474 present +95476 perfect +95481 present +95486 present +present +95494 present +95498 present +95504 aorist +95508 aorist +95517 present +95523 present +95528 present +95532 perfect +95540 future +95547 future +95549 present +95556 present +95559 present +95571 present +95574 aorist +95583 present +95586 aorist +95591 future +95593 present +95597 present +95599 aorist +95604 present +95607 present +95616 present +95619 aorist +95622 future +95625 present +95632 present +95635 present +95638 present +95641 present +95643 present +95645 present +95647 present +95649 present +95653 present +95657 present +95669 present +95673 present +95675 present +95679 present +95689 present +95693 present +95697 present +aorist +95701 present +95703 present +95707 present +95710 present +95713 present +95718 present +95721 present +95739 present +95742 present +95744 present +95746 present +95751 present +95755 aorist +present +95762 present +95765 present +95767 present +95777 aorist +95782 aorist +95785 present +present +95790 present +95792 present +95797 present +95801 present +present +95806 present +95808 present +95811 present +95814 present +95821 present +95824 present +95829 aorist +95833 aorist +95837 perfect +95841 present +95844 aorist +95847 present +95852 aorist +95854 aorist +95860 aorist +95863 aorist +95873 aorist +95876 perfect +95886 aorist +95892 aorist +95901 present +95906 aorist +95908 aorist +95917 aorist +95924 present +95931 present +95933 present +95936 aorist +95944 present +95946 present +95956 aorist +95961 aorist +95978 present +95981 aorist +95985 present +95989 perfect +95991 present +95999 present +96005 present +96008 perfect +96013 perfect +96025 present +96031 aorist +96036 aorist +96041 aorist +96046 present +96051 present +96054 perfect +96059 perfect +96065 present +96073 aorist +96076 aorist +96084 perfect +present +96090 present +96093 perfect +96099 perfect +96116 present +96123 future +96144 present +96152 aorist +96161 present +96163 present +96166 aorist +96178 present +96181 aorist +96188 aorist +96191 perfect +96196 aorist +96202 aorist +96211 future +96213 aorist +96218 present +96226 future +96228 present +96236 present +96239 present +96245 present +96251 present +96257 present +96267 aorist +96277 present +aorist +96280 aorist +96283 present +96285 present +present +96291 aorist +96295 present +96300 present +96304 present +96306 future +96309 present +96315 present +96319 present +96321 present +96324 aorist +96327 present +96332 future +present +96338 aorist +96347 present +96351 aorist +96411 present +96420 present +96423 present +96426 present +96429 present +96432 present +96435 present +96438 present +96441 present +96445 present +96448 present +96453 perfect +aorist +96461 present +96467 present +96507 aorist +96512 aorist +96520 present +96528 aorist +96530 present +96536 present +aorist +96540 present +96543 future +96546 future +96557 future +96561 future +96565 future +96567 present +96571 aorist +96577 aorist +96584 aorist +96590 aorist +96593 future +96597 perfect +aorist +96632 present +96646 present +96649 present +96656 perfect +96662 present +96675 aorist +96683 aorist +96691 present +present +96696 present +96700 aorist +96703 present +96706 aorist +96709 aorist +96713 future +aorist +96723 present +96726 present +96729 future +96731 future +96736 aorist +96739 present +96743 aorist +future +96747 future +96751 aorist +96754 present +96757 present +96762 aorist +96764 present +96767 aorist +96773 aorist +96775 future +96783 perfect +96789 present +96793 aorist +96795 present +96798 aorist +96805 present +96812 aorist +96814 aorist +96819 aorist +96823 present +96834 aorist +96837 aorist +96846 imperfect +96850 aorist +96852 future +96854 aorist +present +present +96860 present +present +96866 present +96868 present +96871 perfect +96876 present +96885 aorist +96890 present +96896 present +96898 present +96900 present +96914 aorist +96916 aorist +96924 present +96927 present +96933 present +96947 present +96952 aorist +96966 present +96969 present +96972 aorist +97005 present +97013 present +97049 present +97058 present +97060 present +97069 present +97076 present +97087 present +97094 present +97102 present +97108 present +97117 present +97125 perfect +97128 present +97139 present +97141 present +97147 aorist +97156 aorist +97158 aorist +97162 present +97171 perfect +97174 perfect +present +97183 present +97190 aorist +97193 future +97196 perfect +97200 future +present +97218 aorist +97226 present +97247 aorist +97256 present +97263 present +97266 present +97268 present +97272 future +97275 aorist +97282 present +97298 imperfect +97302 aorist +97306 aorist +97310 aorist +97317 aorist +97323 aorist +97329 present +97334 aorist +97337 present +97340 present +97342 present +97364 present +97380 aorist +97388 aorist +97396 perfect +97419 present +97426 aorist +97431 aorist +97434 aorist +97448 present +97454 present +97457 aorist +97462 present +97468 present +97475 perfect +97477 aorist +97487 aorist +97491 present +97496 present +97501 present +97505 aorist +97510 aorist +97512 aorist +97516 present +imperfect +perfect +97528 present +97536 aorist +97543 aorist +97546 aorist +97550 present +97557 perfect +97560 perfect +97568 present +97583 aorist +97585 aorist +97591 aorist +97595 present +97597 aorist +97605 aorist +97607 aorist +97615 present +97619 present +97625 perfect +97628 perfect +97636 aorist +97645 present +97647 aorist +97659 perfect +97663 perfect +97670 aorist +97677 aorist +97679 aorist +97688 present +97699 present +97708 present +97713 present +97717 present +97739 present +present +97760 present +present +97764 present +97767 present +97781 present +perfect +97787 present +97789 present +97793 present +97795 present +97798 aorist +97801 perfect +97807 present +97820 present +97832 present +aorist +97847 aorist +97859 present +97863 present +97872 perfect +97874 aorist +97879 present +97883 aorist +97895 present +97903 future +97915 present +97924 perfect +97926 perfect +97933 present +97938 present +97944 present +97948 present +97953 present +97958 imperfect +97967 aorist +97975 present +97977 aorist +97995 present +97997 present +98001 present +98007 present +98014 present +98018 aorist +98021 present +98029 present +98039 perfect +98044 present +98048 present +98059 present +98064 aorist +98066 present +98068 aorist +98074 present +98078 present +98088 present +98100 present +perfect +98107 present +present +perfect +98117 aorist +98125 aorist +98135 present +98142 present +98157 aorist +98161 future +98163 aorist +98180 present +98192 present +98201 present +98204 present +present +98208 present +present +98212 present +present +98216 present +98225 present +98236 aorist +98241 present +98244 present +98253 aorist +98264 present +98271 present +98279 perfect +aorist +98282 aorist +98285 present +98288 present +perfect +98292 aorist +98300 future +98302 future +98313 aorist +98319 aorist +98327 present +98335 present +98340 present +98357 present +98360 present +98363 present +98367 present +98370 present +98375 present +98378 perfect +98387 aorist +98390 present +98402 present +98409 aorist +present +98414 aorist +98417 future +98421 present +98425 present +present +98429 present +98431 aorist +98433 aorist +98435 aorist +98443 aorist +98450 aorist +98457 present +98460 perfect +98462 present +98466 present +98473 present +98478 present +98480 present +98482 aorist +98487 aorist +98493 present +98495 present +98497 present +98500 present +98505 aorist +98511 present +98513 aorist +98521 aorist +98527 perfect +98533 present +98536 perfect +98538 present +98544 perfect +98548 present +98553 present +98558 present +98563 present +98570 aorist +98573 present +98580 present +98582 aorist +98588 aorist +98592 aorist +98596 aorist +98599 present +present +98607 aorist +98609 aorist +98616 perfect +98621 perfect +98628 present +98638 aorist +aorist +perfect +98649 aorist +98655 aorist +98664 imperfect +present +98671 present +98677 aorist +98687 present +98691 present +98694 present +98697 aorist +98702 aorist +98707 aorist +98710 aorist +98716 present +98718 present +98726 aorist +98729 present +98732 aorist +98738 aorist +98740 aorist +98744 aorist +98752 present +98755 aorist +98761 present +98829 present +98831 present +98833 present +98835 aorist +present +98838 present +98841 present +98843 present +98846 present +98851 present +98854 present +98857 present +98862 perfect +98868 perfect +98870 present +98874 present +98885 present +aorist +98890 present +present +98928 present +present +98931 aorist +98935 future +98939 future +98941 future +98946 future +98950 aorist +98955 aorist +98959 present +present +98963 future +98966 future +98972 future +98978 present +98983 present +98987 aorist +98995 present +99000 aorist +99003 aorist +99005 aorist +99007 aorist +99011 present +99013 perfect +99019 present +99022 aorist +99024 present +99035 perfect +99038 present +99048 aorist +99053 perfect +99061 present +99068 present +99073 aorist +99092 aorist +99095 present +99111 aorist +99115 aorist +99121 present +99124 imperfect +present +99134 aorist +99137 present +99140 aorist +99143 aorist +99147 aorist +99153 aorist +99165 present +99172 present +99174 aorist +99180 aorist +aorist +99199 aorist +99202 present +99208 aorist +99213 aorist +99217 aorist +99221 aorist +99235 perfect +99243 aorist +99249 perfect +99262 perfect +99264 aorist +99270 aorist +99280 aorist +99288 present +present +99299 aorist +99301 present +99305 present +99310 present +99317 perfect +99339 aorist +99346 present +99357 present +99373 aorist +99376 aorist +99387 aorist +99392 aorist +99395 aorist +99406 present +99428 present +99432 present +99444 present +99446 present +99457 aorist +99459 present +99465 aorist +99470 present +99474 present +99479 aorist +99483 present +aorist +99491 aorist +aorist +99498 present +99502 aorist +99505 present +99510 present +99513 present +99518 present +99545 aorist +99551 aorist +99554 perfect +99559 aorist +99565 aorist +99571 present +99585 aorist +99588 present +99590 aorist +99594 aorist +99614 aorist +99625 present +99637 present +99642 aorist +99648 present +99652 present +99663 aorist +99669 aorist +99674 present +99713 present +99729 present +99731 present +99734 perfect +99741 present +99745 perfect +99752 aorist +99756 aorist +99767 aorist +99774 imperfect +perfect +present +99780 aorist +99785 aorist +99788 aorist +99792 present +99800 aorist +aorist +99805 aorist +99809 aorist +99811 perfect +99816 present +99827 present +99831 future +99834 present +99840 future +99843 perfect +99855 present +99859 present +99864 aorist +99873 present +present +99880 perfect +aorist +aorist +99888 present +99894 present +99897 present +99902 future +99904 future +99909 future +99917 present +99922 present +99936 present +present +99944 present +99956 present +99984 present +99988 present +100006 present +100023 present +present +100028 present +100031 present +aorist +100036 present +aorist +100041 present +100046 present +100050 present +100054 present +100070 present +100075 present +100082 present +100093 present +aorist +100098 aorist +100105 present +100108 perfect +100111 present +100113 present +100129 aorist +100135 aorist +100146 future +100149 aorist +100152 present +100158 present +100174 perfect +100176 present +100181 present +100186 present +100189 present +100194 present +aorist +100197 aorist +100202 present +100208 present +100210 present +100214 present +100221 future +100229 aorist +100234 aorist +100242 present +100245 present +100251 aorist +100261 present +100267 present +present +100274 aorist +100285 aorist +100293 aorist +100296 present +100299 present +100304 present +100306 present +100312 present +aorist +imperfect +100321 present +100324 present +100329 aorist +100335 aorist +100339 present +100345 aorist +100351 aorist +100368 present +present +100374 aorist +100376 present +100381 aorist +100387 aorist +100389 present +100391 present +100393 perfect +100410 aorist +100417 aorist +100419 present +100422 aorist +100429 aorist +100433 aorist +aorist +100441 present +100445 aorist +100447 aorist +100453 aorist +100456 aorist +100465 aorist +100467 future +present +100478 future +100490 present +100494 perfect +100497 present +100499 future +100501 aorist +100505 present +100510 present +aorist +100521 present +100532 present +100544 present +100551 future +100557 present +100560 aorist +100563 present +100570 aorist +100576 aorist +100578 present +100582 present +100595 present +100600 future +100603 present +100607 present +100609 present +100613 present +100616 present +100619 present +100622 present +100628 present +100631 present +100635 perfect +100641 present +100644 present +present +100648 present +100651 present +100655 present +100659 present +present +present +100682 aorist +100684 aorist +100686 aorist +100688 aorist +100693 perfect +100750 present +100753 present +100755 present +100759 present +100761 present +present +100767 future +100776 present +100781 perfect +100784 present +100792 imperfect +100796 aorist +100803 aorist +100808 aorist +100812 present +present +100816 present +100818 future +100824 perfect +100832 perfect +100838 perfect +100841 perfect +100845 aorist +100852 perfect +100864 perfect +100867 perfect +100869 aorist +100874 aorist +100878 aorist +100880 present +100885 future +100890 future +100898 aorist +aorist +100901 future +100905 future +100907 present +100912 aorist +100915 present +100918 present +100929 present +aorist +100939 present +100942 present +100948 aorist +100950 aorist +100954 perfect +100956 present +100966 present +100970 future +100975 aorist +100983 present +100998 present +101001 present +perfect +101006 aorist +101009 imperfect +101012 present +101015 aorist +101022 present +101028 aorist +101042 present +101044 aorist +101055 aorist +101057 aorist +101062 aorist +101066 present +aorist +101072 future +101075 present +101082 present +101087 present +101096 future +101098 future +101106 present +101108 present +101110 present +101113 aorist +101116 present +101120 aorist +101124 perfect +101129 aorist +101131 aorist +101134 aorist +101138 aorist +101145 aorist +101151 present +101154 present +101159 present +101169 present +101172 aorist +101175 present +aorist +101179 aorist +101183 present +101196 aorist +101198 aorist +101206 aorist +101209 perfect +101212 aorist +101221 aorist +101224 present +101233 future +101236 perfect +101238 present +101240 present +101244 present +101247 perfect +101254 aorist +101259 future +101261 present +101266 present +101272 present +101274 present +101279 aorist +101283 present +101290 present +101294 future +101303 present +101305 present +101310 present +101313 present +101323 present +101325 present +101327 future +101331 present +101334 present +101339 aorist +101347 aorist +101353 present +101358 present +101361 present +101371 present +101374 present +101378 present +101380 present +101388 present +present +101391 present +101394 aorist +101401 aorist +101411 present +present +present +101416 present +present +101425 future +101428 aorist +101433 present +101474 aorist +101501 aorist +101508 aorist +101514 perfect +101533 present +101537 present +101540 aorist +101550 present +101555 present +101557 present +101560 present +aorist +101574 aorist +101578 aorist +101581 present +101583 perfect +101587 present +101591 present +101594 aorist +101596 present +101599 present +101605 present +101607 present +101611 imperfect +101616 imperfect +101619 present +101624 aorist +101629 present +101637 aorist +101640 aorist +101647 aorist +101658 imperfect +101664 imperfect +101667 imperfect +101679 present +101687 aorist +101689 aorist +101696 aorist +101701 aorist +101708 present +101715 aorist +101720 aorist +101729 aorist +101734 aorist +101741 aorist +101744 aorist +101747 aorist +101757 aorist +101767 present +101769 aorist +101775 present +101777 aorist +101787 imperfect +present +101800 present +imperfect +101804 present +101808 present +101813 imperfect +101815 imperfect +101825 aorist +101830 aorist +101834 aorist +101838 aorist +101843 present +101851 present +101856 present +101858 aorist +101866 present +aorist +aorist +101875 aorist +aorist +101881 present +101887 future +101892 aorist +101900 aorist +101906 present +present +101911 imperfect +101914 present +101920 present +101924 present +101926 aorist +101929 aorist +101931 perfect +101942 aorist +101948 aorist +101955 aorist +101959 aorist +101967 present +101969 present +101972 aorist +101990 present +101993 aorist +101996 aorist +101999 aorist +102006 aorist +102008 perfect +imperfect +102013 aorist +102020 imperfect +102023 aorist +imperfect +102026 imperfect +102028 present +102033 aorist +102042 aorist +102048 aorist +102051 present +102057 aorist +102065 present +102070 present +102072 present +102075 present +102085 perfect +102088 present +102104 aorist +102106 aorist +102120 future +102125 present +aorist +102129 aorist +102138 aorist +102142 aorist +102145 present +102148 present +102154 aorist +102157 aorist +102159 perfect +102161 present +102165 present +102172 present +102175 present +102184 aorist +102187 aorist +102192 present +102205 aorist +102211 aorist +102217 aorist +perfect +present +102222 aorist +102227 aorist +102237 present +aorist +102242 present +102244 aorist +102252 present +102257 present +102270 aorist +102274 aorist +102279 present +102287 present +102291 aorist +102295 present +102300 aorist +102304 future +102314 present +102324 present +102327 present +102329 perfect +102335 present +102338 perfect +102345 aorist +102352 present +102362 future +102367 present +102372 aorist +102374 future +102379 aorist +102385 aorist +102390 perfect +102394 present +102405 aorist +102414 aorist +102421 present +102424 perfect +102427 present +102429 present +102431 aorist +102441 present +102457 present +102461 present +102463 perfect +102473 perfect +102476 present +102479 aorist +102496 perfect +102506 aorist +102509 aorist +102513 perfect +aorist +102525 present +102530 present +102540 aorist +102543 aorist +102546 present +aorist +102552 imperfect +102556 aorist +102570 aorist +102572 present +102576 aorist +102581 imperfect +present +102585 present +aorist +102593 perfect +102599 aorist +102601 aorist +102607 present +102612 present +102623 aorist +102625 aorist +102627 present +102632 present +102637 present +102645 present +102657 present +102662 present +102669 present +102671 present +102675 present +102681 present +102691 imperfect +102698 imperfect +perfect +102702 aorist +102707 aorist +102713 aorist +102716 aorist +102723 aorist +102727 aorist +102730 present +102732 aorist +102744 present +102749 present +102765 perfect +102767 aorist +102771 present +102775 aorist +102779 aorist +102783 present +102794 aorist +present +present +102804 present +102809 perfect +102812 present +102820 present +102824 aorist +102826 perfect +102832 aorist +102845 aorist +102847 aorist +102852 aorist +102863 present +102871 aorist +aorist +102877 perfect +present +102880 present +102885 aorist +102887 present +102890 present +102893 present +102902 present +102910 present +102913 aorist +102918 imperfect +present +102924 aorist +102929 present +102932 present +102937 present +present +102942 present +102944 perfect +102947 aorist +102967 perfect +102977 present +present +102981 present +102991 present +102993 present +103000 present +103005 present +103010 present +103020 present +103022 present +103026 perfect +aorist +103031 present +aorist +103034 aorist +103037 present +103047 present +103057 present +103064 aorist +imperfect +103074 present +103077 aorist +103087 future +103099 present +103110 aorist +103112 present +103118 present +aorist +103122 present +103126 present +103130 future +103132 present +103136 present +103139 present +103143 aorist +aorist +103150 present +103153 aorist +103161 present +103171 present +103176 present +imperfect +103180 aorist +103184 present +103190 present +103197 present +103199 perfect +103207 future +103210 present +103212 future +103217 present +103224 present +103227 present +103229 perfect +103234 aorist +103236 future +103238 present +103244 aorist +103258 present +103264 perfect +103270 future +103279 present +103281 present +present +103286 aorist +103288 present +103290 present +103296 aorist +103300 present +103313 present +103318 present +103320 present +103324 present +103326 present +103331 present +103337 present +103358 present +103361 aorist +103366 present +103370 future +103376 present +103390 present +103399 aorist +103407 present +103411 present +103413 present +103416 present +103418 present +103422 aorist +103430 present +103436 present +103441 aorist +103445 present +103448 future +103455 present +103457 present +103460 present +present +103467 present +103476 future +103487 future +103489 present +103491 present +103495 present +103500 present +103503 present +103507 present +103511 future +103514 present +103522 future +103526 present +103533 future +103539 present +103541 present +103545 future +103547 present +103552 present +present +103565 aorist +103569 aorist +103574 present +aorist +103579 present +103581 present +103589 present +103593 present +103596 present +103598 present +103600 present +103606 aorist +103610 aorist +present +103626 perfect +103631 present +103644 future +103661 present +103672 present +103696 present +103727 aorist +103739 aorist +103746 present +103755 aorist +103777 aorist +103781 perfect +103784 present +103802 aorist +103810 aorist +103822 aorist +103831 aorist +103851 aorist +aorist +103858 present +103867 present +103874 perfect +103882 aorist +103895 aorist +aorist +103904 present +103921 aorist +103939 present +present +103944 present +103961 aorist +103970 perfect +103978 perfect +103981 present +104001 present +104009 present +104019 perfect +104023 aorist +104028 aorist +104047 present +104058 present +104061 aorist +104068 aorist +104075 present +104086 present +104089 present +104100 aorist +104118 present +104129 aorist +104137 present +104146 imperfect +104158 present +104167 aorist +104170 present +104175 aorist +104179 present +perfect +104182 aorist +104184 aorist +104192 aorist +104197 present +104199 present +104214 present +perfect +104232 aorist +104234 present +104237 aorist +104245 aorist +104251 aorist +104253 present +104262 present +104266 present +104272 imperfect +104278 perfect +104291 present +104305 present +104307 aorist +104316 present +104321 aorist +104332 aorist +104343 aorist +104347 aorist +104354 present +104357 aorist +104368 aorist +104374 aorist +aorist +104387 present +104401 present +104406 present +104414 aorist +104422 present +104431 present +present +104442 present +104464 aorist +104472 aorist +104479 aorist +104484 aorist +104489 present +present +aorist +104504 aorist +104511 aorist +104520 present +104538 aorist +104547 aorist +104560 aorist +104566 aorist +104573 aorist +104580 perfect +104590 aorist +104592 aorist +104615 aorist +104625 present +104637 present +104639 present +104647 present +104652 present +104668 present +104670 aorist +104679 aorist +104688 aorist +104700 perfect +104702 perfect +104704 aorist +aorist +104720 aorist +104722 present +104729 aorist +104738 present +aorist +104744 present +104746 present +104751 present +104774 present +104782 aorist +104786 aorist +104794 present +104798 present +present +104816 aorist +104847 aorist +104858 present +aorist +104862 aorist +104864 aorist +104870 aorist +104872 present +104877 aorist +104885 aorist +104887 present +104890 aorist +104896 aorist +104901 aorist +104931 aorist +104958 present +104960 present +104962 present +104980 present +104983 aorist +104989 present +104998 present +105000 present +105017 present +105025 present +105027 present +105032 present +105037 present +105043 perfect +present +105047 perfect +105056 present +105066 perfect +105068 aorist +105081 aorist +105087 aorist +105091 aorist +105093 present +105098 aorist +105108 present +105115 present +105122 aorist +105129 aorist +105137 aorist +105140 present +105148 present +105151 present +105154 present +105158 present +105163 present +105168 present +105170 present +105173 present +present +105181 present +present +105185 present +105194 present +105204 aorist +105207 present +105210 present +105219 aorist +105233 aorist +105240 present +105245 present +105253 aorist +105256 present +105264 present +105271 aorist +105274 aorist +105294 present +105298 present +105308 imperfect +105314 perfect +present +105324 present +105327 present +105338 present +105344 present +105356 present +105360 imperfect +105371 present +105384 present +105386 present +105392 present +105402 present +105406 present +105410 present +105412 present +105416 present +105420 present +105424 present +105426 present +105428 present +present +105431 present +105433 aorist +105438 future +105443 present +105446 present +105453 present +105460 present +105464 present +105467 present +105475 present +105479 present +105482 present +105485 present +105493 present +105495 present +105501 present +105516 present +105531 present +105550 present +105563 present +105570 aorist +105575 aorist +105580 aorist +aorist +105589 aorist +105596 present +105606 present +105611 present +105615 present +105624 present +105629 present +105636 aorist +105638 present +105640 present +105649 present +105656 future +105664 future +105670 future +105680 present +105683 present +105701 present +105708 present +105713 present +105721 present +105723 present +105731 present +105739 aorist +105741 future +105750 present +105755 present +105764 present +105790 present +105799 present +105806 perfect +105812 aorist +105814 future +105826 present +105829 present +105832 perfect +105840 present +105846 present +105851 present +105861 aorist +105868 present +105870 aorist +105877 present +105909 aorist +105915 aorist +aorist +105924 aorist +aorist +105927 aorist +aorist +105935 aorist +105941 aorist +105952 aorist +105959 future +105966 perfect +aorist +105969 aorist +105980 present +105988 present +105997 present +106012 aorist +106021 aorist +106028 present +106034 aorist +106036 present +106038 aorist +106041 perfect +106048 present +106050 future +106062 aorist +106069 aorist +106074 aorist +106097 present +106118 present +106137 present +106158 present +106173 perfect +106178 aorist +106183 future +106189 present +106193 present +106199 present +106224 present +106231 present +106240 present +106249 present +106257 present +106260 present +106262 present +106269 perfect +106283 present +present +106295 perfect +106303 aorist +106319 perfect +106324 present +106330 present +106345 present +106350 perfect +106356 present +106363 present +106366 present +106368 present +106383 present +106387 present +106390 future +106392 perfect +106396 future +106418 future +106427 future +106442 present +106446 aorist +106451 present +106460 future +106462 present +106464 present +106470 present +106473 aorist +106477 present +106484 present +106492 perfect +perfect +106495 future +106497 future +106512 present +106531 present +106534 aorist +106536 aorist +106539 present +present +106545 present +106551 present +106558 present +106563 present +106565 present +106578 aorist +106587 present +106593 present +present +106599 aorist +106604 present +106626 aorist +106633 present +106637 present +106641 present +106652 present +present +106659 present +106666 present +106678 present +106681 aorist +106683 present +106688 aorist +106691 aorist +106695 aorist +106698 aorist +106701 aorist +106703 aorist +106715 aorist +106717 aorist +106730 aorist +106741 aorist +106755 aorist +106778 present +106781 present +106783 present +106788 present +106791 present +106796 present +106802 aorist +106813 perfect +106816 present +106823 present +106834 aorist +106838 aorist +106842 present +106851 present +106853 present +106861 present +106863 present +106866 present +106872 aorist +106876 present +aorist +106884 present +106890 future +106896 present +106905 present +106912 aorist +106918 present +106920 aorist +106923 aorist +106929 perfect +106936 future +106938 aorist +106956 aorist +106960 present +imperfect +106965 present +106967 aorist +106969 aorist +106972 aorist +106978 aorist +106992 aorist +106995 aorist +106998 aorist +107001 aorist +107004 present +107006 present +107017 present +107025 aorist +aorist +107030 aorist +107042 present +107047 present +107056 present +107059 present +107063 present +107067 present +107074 present +107076 present +107084 perfect +107087 present +107095 present +perfect +107116 present +107124 aorist +107128 imperfect +107132 perfect +107142 present +107145 present +107148 present +107160 aorist +107162 present +107166 aorist +107168 aorist +107171 present +107191 aorist +107203 present +107209 aorist +107219 aorist +107222 perfect +107224 present +107227 aorist +107231 aorist +107238 present +107240 perfect +107246 present +107250 present +107253 present +107269 present +107274 present +107280 future +107284 aorist +107287 present +107291 present +107293 present +107296 present +107298 present +107303 present +107306 imperfect +107311 present +present +107338 present +107345 present +107349 present +107355 future +107371 present +107374 aorist +107389 present +107394 present +107397 present +107400 present +107404 present +107409 present +107415 aorist +107431 present +107436 future +present +107441 aorist +107448 present +107462 present +107472 present +107475 future +107490 present +107510 present +107513 aorist +107515 aorist +107517 aorist +107519 aorist +107523 present +107529 future +107533 aorist +107540 aorist +107544 present +107548 imperfect +107550 imperfect +107555 present +107558 aorist +107561 present +107563 present +perfect +107566 present +perfect +107569 present +107575 perfect +107577 present +107579 present +107581 present +107583 present +107585 present +107588 present +107592 aorist +aorist +107599 perfect +107604 aorist +107614 aorist +107636 aorist +107639 present +107643 present +107647 present +107652 present +107655 present +perfect +aorist +107674 future +107701 aorist +107707 present +107713 present +107763 present +107775 present +aorist +107787 present +107796 present +107802 aorist +107811 present +107820 present +present +107823 present +107831 aorist +107833 aorist +107841 aorist +107849 present +107858 aorist +107872 aorist +107874 present +107877 present +107879 present +107881 aorist +107893 aorist +107904 present +107906 present +107914 present +107928 present +107932 aorist +107945 aorist +107953 aorist +107964 present +107972 present +107984 aorist +108014 perfect +108017 present +108025 perfect +108028 present +108036 present +108043 aorist +108047 present +108049 aorist +108055 aorist +108059 aorist +108064 aorist +108086 present +perfect +108099 aorist +108109 aorist +108120 present +108123 perfect +108128 present +108135 aorist +108137 aorist +108147 aorist +108151 present +108158 present +108174 present +108179 aorist +108187 aorist +108191 aorist +108199 perfect +108209 aorist +108214 aorist +108217 aorist +108230 present +108240 present +present +108245 present +108252 aorist +108261 present +present +108268 present +108274 present +108276 perfect +108279 present +108289 perfect +108296 aorist +108300 aorist +108320 present +108330 present +108334 present +108342 present +108348 present +present +108351 present +108365 aorist +108373 present +perfect +108376 present +108380 present +108384 aorist +present +108388 present +108391 future +108393 present +108418 present +108426 present +perfect +108431 present +108441 aorist +108456 aorist +108464 aorist +108473 aorist +108480 present +108489 aorist +108493 aorist +108498 aorist +108506 imperfect +108511 perfect +108515 aorist +108519 aorist +108525 aorist +108528 aorist +108536 present +108551 present +108554 present +108562 present +present +108571 perfect +present +108574 present +108583 present +108596 present +108598 present +present +108605 aorist +108615 present +108618 present +108620 aorist +108622 aorist +108624 aorist +108626 present +108640 present +108642 present +108662 aorist +108667 present +108671 present +present +108679 present +108686 aorist +108691 perfect +108699 aorist +108710 future +108714 aorist +108730 present +108734 present +108743 aorist +108746 imperfect +108751 aorist +108766 present +108769 aorist +108778 aorist +108782 present +108788 aorist +108792 present +108810 aorist +108817 perfect +108824 present +108827 present +108833 present +108839 aorist +108851 present +108860 present +108868 aorist +108874 present +108879 present +108886 present +108888 present +108897 present +108909 present +108920 present +108928 present +108932 imperfect +108937 present +108942 present +108947 present +108955 present +108961 present +108967 present +108970 present +108986 present +108991 present +108994 present +109001 perfect +109005 future +109013 present +109016 present +future +109019 aorist +109022 present +109033 present +perfect +109038 present +109044 present +present +109050 present +109058 aorist +109063 aorist +109071 perfect +109073 aorist +109076 present +109078 aorist +109081 present +109087 present +109095 perfect +perfect +109098 present +109102 present +109107 future +109121 aorist +109128 aorist +109133 aorist +109145 present +109149 future +109153 present +109166 aorist +109169 aorist +109172 aorist +109177 present +109180 present +109192 aorist +109195 present +109205 present +109212 aorist +109215 perfect +109222 present +109225 present +109238 present +109247 aorist +109262 aorist +109267 aorist +109274 aorist +109282 aorist +109284 aorist +109286 present +109290 aorist +109295 present +109302 present +109329 present +109337 present +109343 present +109370 perfect +109375 perfect +109383 aorist +109402 perfect +109404 aorist +109411 aorist +109417 aorist +109428 aorist +109433 present +109444 perfect +109467 perfect +109471 present +109473 present +109479 present +109482 aorist +109487 aorist +109494 present +109496 present +109500 present +109508 aorist +109514 present +109520 present +109524 perfect +109534 perfect +109536 aorist +109538 aorist +109542 perfect +aorist +109548 aorist +109573 perfect +109577 aorist +109581 present +109583 present +109589 present +109599 aorist +109601 perfect +109609 present +109619 present +109622 present +109627 aorist +109635 present +109640 present +109642 present +aorist +109659 aorist +109662 present +109672 present +109676 aorist +109679 aorist +109699 present +aorist +109702 perfect +109711 present +109713 present +109715 present +109719 present +109725 present +109738 present +109743 aorist +109750 aorist +109757 present +109762 present +109766 present +109770 aorist +109777 present +109787 aorist +109801 aorist +109811 aorist +109815 present +109820 present +109824 aorist +109826 aorist +109829 aorist +109835 aorist +109845 aorist +109855 aorist +109859 aorist +109864 aorist +aorist +109876 aorist +109904 present +109913 present +aorist +aorist +109920 aorist +109936 aorist +109938 aorist +109946 present +109953 perfect +109957 present +109963 imperfect +imperfect +109967 present +present +109971 aorist +109973 perfect +109978 present +aorist +109982 aorist +109988 aorist +109991 present +109995 aorist +110001 aorist +110008 aorist +110018 present +110023 present +110025 aorist +110033 aorist +110049 present +110052 present +110056 present +110061 aorist +110069 present +110080 present +110083 aorist +110088 aorist +110106 aorist +110116 aorist +110118 aorist +110133 aorist +110161 present +110163 present +110170 aorist +110175 present +110177 present +110179 present +110183 present +110185 present +110188 perfect +110191 aorist +110199 present +110206 present +110211 perfect +110217 present +110232 perfect +110237 present +110239 present +110254 aorist +110257 aorist +110260 aorist +110271 present +present +110280 present +110294 present +present +110301 present +110304 present +110308 present +110320 present +110322 present +110325 present +present +110328 present +110332 present +110338 aorist +110340 present +110348 present +110352 present +110354 present +110357 present +110360 present +110367 present +110371 present +110374 aorist +110376 aorist +110382 aorist +110386 future +110392 present +110399 present +110401 present +110409 aorist +110411 aorist +110425 future +110433 future +110438 present +110440 present +110444 future +110458 future +110460 present +110476 present +110478 present +110482 perfect +110491 present +110493 present +110501 present +110508 present +110512 aorist +110517 present +110524 aorist +110530 present +110537 present +110544 present +110549 present +110551 present +110554 present +110556 present +110559 present +110561 present +110565 present +present +aorist +110578 aorist +110595 aorist +110600 present +110602 present +110606 aorist +110608 present +110611 present +110617 present +110620 present +110622 perfect +110624 present +110628 present +110633 present +110636 present +110645 present +110650 present +110652 present +110655 present +110658 present +110661 present +110664 present +110671 aorist +110676 present +110683 present +110685 present +110688 present +110701 present +110704 present +110707 present +110710 present +110715 present +110722 aorist +110745 aorist +110748 present +110752 future +110754 present +110757 aorist +110764 present +110768 aorist +110811 present +present +110820 present +110822 present +110827 present +110841 present +110862 present +110871 aorist +110880 present +110885 aorist +110887 present +110893 present +110912 present +110916 perfect +110921 present +110929 future +110945 aorist +aorist +110952 aorist +110956 aorist +110962 aorist +110971 present +110977 aorist +110984 aorist +110994 aorist +111019 present +111038 aorist +111044 present +111059 perfect +111067 aorist +111074 aorist +111079 aorist +111089 present +111091 present +111094 present +111105 aorist +present +111109 present +111112 present +111115 present +111119 imperfect +111124 present +perfect +111128 aorist +111140 present +111143 present +111148 aorist +111151 future +111158 future +111165 future +111174 present +111193 present +111201 aorist +111204 aorist +111209 present +111217 aorist +111222 aorist +111226 aorist +111230 aorist +111235 present +present +111243 perfect +111247 aorist +111264 aorist +111281 present +111283 present +111287 aorist +111309 aorist +111312 aorist +111320 aorist +111325 aorist +111335 present +111343 present +111345 present +111352 aorist +111366 present +111370 future +111373 future +111378 perfect +111385 present +111387 present +111389 future +111393 aorist +111410 present +111418 present +111424 present +111431 aorist +111436 perfect +111438 present +present +111443 aorist +111449 aorist +111460 present +111464 aorist +111470 present +111476 aorist +111480 present +111485 imperfect +111489 imperfect +111495 present +present +111498 present +111500 present +111502 present +111507 present +111509 present +111513 present +111515 present +111523 present +111527 present +111532 aorist +present +111538 present +111546 present +111548 present +111551 aorist +111556 present +111558 present +111567 aorist +111588 present +111594 present +111638 aorist +111640 aorist +111643 present +111647 aorist +111650 present +111652 present +111659 present +111672 present +111684 aorist +111686 aorist +111689 present +present +111693 present +111696 present +111700 present +111702 perfect +111711 present +perfect +111718 present +111742 present +111744 present +111755 aorist +111758 present +111760 aorist +111770 aorist +aorist +111776 present +111783 aorist +111785 present +aorist +111790 aorist +111814 aorist +111819 aorist +111822 present +111827 aorist +111832 aorist +111841 present +present +111871 present +111875 present +111880 present +111886 present +111892 aorist +111897 aorist +111899 present +111904 aorist +111908 aorist +111910 present +111912 present +111915 present +111930 present +111936 present +111952 present +111955 aorist +111960 aorist +111974 aorist +111985 aorist +111997 present +111999 present +112001 present +present +112008 present +112024 present +112039 present +112041 present +112048 present +112053 present +112055 present +112058 present +112061 present +112067 aorist +112073 aorist +112077 aorist +112080 perfect +112082 future +112087 aorist +112102 present +112105 present +112107 present +112110 present +112132 present +112134 present +112146 aorist +112148 perfect +112152 future +112157 aorist +112162 aorist +112164 present +112168 present +112174 aorist +112189 present +112192 present +112203 present +112206 present +112208 present +112219 present +112224 present +112233 aorist +112237 present +112249 present +present +aorist +112257 present +112259 perfect +112261 present +present +112267 present +112270 present +112279 present +112285 aorist +112288 aorist +112291 aorist +112293 aorist +112296 aorist +112299 aorist +112306 present +112311 future +112315 present +112324 perfect +112328 present +present +present +112335 aorist +112343 perfect +112356 present +112358 present +112365 present +112368 future +112373 present +112383 perfect +112390 present +112392 present +112402 present +112410 present +present +112418 present +112429 present +112431 present +112433 perfect +112436 present +112438 present +112445 present +112447 present +112452 present +112454 present +112469 present +present +112478 present +112484 aorist +112495 present +112498 present +112504 present +112506 present +112511 present +112515 present +future +112521 present +112525 aorist +112527 present +112542 present +112554 present +present +112560 present +112563 present +112568 present +112578 perfect +perfect +112583 present +112594 present +present +perfect +112599 present +112602 present +112612 present +112615 perfect +112617 present +112621 present +112626 perfect +112633 present +112635 aorist +112637 aorist +112641 aorist +112643 present +aorist +112649 aorist +112653 present +112656 aorist +112659 present +present +present +112667 aorist +112672 present +present +112685 present +112688 present +112690 present +112692 present +present +present +112697 present +112699 present +112705 aorist +112712 present +112714 present +112718 present +112725 aorist +112728 perfect +112732 present +112735 present +112741 present +112745 present +112747 future +112759 present +112769 present +112772 present +112778 present +present +112792 aorist +112796 present +112802 present +112804 present +112809 present +112811 present +112815 present +112829 present +present +112836 present +112847 present +aorist +112850 present +112852 present +112862 present +112872 present +112875 present +112879 present +112882 present +112885 present +112887 present +112894 present +112896 present +112898 present +112901 present +112904 present +present +112918 perfect +112920 present +112922 present +112929 present +112937 perfect +112941 perfect +112944 present +112946 present +112950 present +112959 aorist +112965 aorist +112967 present +112969 present +112974 future +112977 present +present +present +112991 present +113003 present +113007 present +113009 aorist +113015 aorist +113024 present +113026 present +113033 present +113039 aorist +113045 aorist +113047 aorist +113054 present +113059 present +113066 aorist +113073 aorist +113090 future +113099 present +113103 present +113106 present +113110 present +113112 aorist +113116 aorist +present +113130 present +113132 present +113134 perfect +113142 present +113148 present +present +113154 present +113156 present +113162 present +113164 aorist +113172 aorist +present +113183 present +113188 aorist +113223 present +113227 present +113235 present +113247 present +113249 aorist +perfect +113256 aorist +aorist +113265 aorist +113278 perfect +113286 present +113288 present +113294 present +113305 aorist +113319 aorist +113331 aorist +113338 aorist +113341 aorist +113356 aorist +113365 aorist +113376 aorist +113380 aorist +113389 aorist +113401 present +113404 present +113406 perfect +113408 perfect +113410 perfect +113412 present +113417 aorist +113422 present +113424 present +113429 aorist +113441 aorist +113446 present +113449 perfect +113452 aorist +113460 present +113464 aorist +113474 aorist +113480 aorist +113482 aorist +113486 aorist +113489 aorist +aorist +113494 aorist +113506 aorist +113509 present +113514 present +113524 aorist +113531 aorist +113536 future +113539 aorist +aorist +113547 present +present +113555 aorist +aorist +113560 present +113563 present +113567 aorist +present +113570 present +113575 present +present +113578 present +113580 future +113587 present +113590 perfect +113602 present +113613 perfect +113617 present +113624 aorist +113638 aorist +113640 future +113642 present +113644 future +113646 future +113648 future +113651 present +113654 present +113656 aorist +113659 present +113661 present +present +113667 present +113674 present +aorist +aorist +113683 present +113692 present +113697 future +113705 future +113707 present +113715 aorist +present +113719 perfect +113721 present +113731 perfect +present +113736 aorist +113739 present +113742 aorist +113747 present +113755 present +113779 aorist +113783 future +113787 perfect +113795 perfect +113800 present +113802 present +113809 present +113821 present +perfect +113824 present +113827 present +113831 present +113833 present +113841 present +113843 present +113846 aorist +113855 aorist +113861 perfect +113870 present +113875 future +113879 future +113899 perfect +113904 present +113911 perfect +113914 present +113918 present +113920 present +113925 present +113927 perfect +113929 present +113933 present +113939 aorist +present +113947 aorist +113952 present +113956 perfect +113965 future +113973 future +113979 aorist +113982 aorist +114004 aorist +114013 aorist +114018 aorist +114025 present +present +114031 future +114037 future +114041 present +114043 present +114046 present +114049 aorist +114051 aorist +perfect +114055 aorist +114060 perfect +114064 present +114066 aorist +114093 present +114102 perfect +present +114111 present +present +present +114124 aorist +114127 aorist +114130 aorist +aorist +aorist +114139 future +114144 present +114146 future +114153 future +114155 present +114165 future +114170 future +114173 present +114176 aorist +aorist +114183 aorist +114187 present +114194 perfect +114198 perfect +114201 perfect +114204 perfect +114206 present +114213 future +114232 perfect +114236 aorist +aorist +114244 aorist +aorist +114250 aorist +114260 present +114265 aorist +present +114270 present +114277 aorist +114283 imperfect +114288 present +present +114302 aorist +future +114314 present +114317 aorist +114328 aorist +114332 aorist +114335 aorist +114340 aorist +114342 aorist +114349 aorist +114351 aorist +114356 aorist +114360 future +114369 future +114385 aorist +114394 aorist +114399 imperfect +114402 present +aorist +114406 aorist +present +114452 aorist +114460 aorist +114469 aorist +114497 imperfect +114503 present +aorist +114506 aorist +114513 aorist +114516 present +114521 present +114531 present +114534 present +114556 present +114564 present +114567 present +114572 present +114575 present +present +114578 present +114590 present +present +114595 present +present +114599 present +114603 aorist +114620 present +114625 present +114629 present +114634 present +114640 present +114649 perfect +114655 perfect +114664 perfect +present +114669 present +present +114682 present +114684 present +114686 present +114689 present +114693 present +114710 perfect +114713 present +114716 present +114723 present +114733 present +114737 present +present +114742 present +114758 aorist +present +present +114768 present +114772 present +114774 present +114776 present +114781 present +114790 present +114794 aorist +114802 present +114805 aorist +114817 aorist +114822 present +114839 aorist +114844 aorist +114850 aorist +114858 present +114860 present +114862 present +114868 present +present +114873 present +present +114880 present +114882 present +114884 present +114888 present +114893 imperfect +114899 present +present +114909 present +114911 present +114924 aorist +114932 aorist +114939 aorist +114949 aorist +114960 aorist +114965 aorist +114976 present +114978 present +114980 present +114983 present +114985 perfect +114988 present +115004 present +115006 present +115017 present +perfect +115022 perfect +115024 present +present +115028 future +115034 aorist +aorist +115042 aorist +perfect +115050 aorist +115054 present +115056 present +115062 present +115069 present +115071 present +115077 aorist +115079 present +115129 present +115136 present +115141 present +115149 present +115166 aorist +115181 aorist +115191 perfect +115200 present +present +115204 present +115209 present +115211 present +115221 present +115227 aorist +115244 aorist +115249 present +115254 imperfect +115258 present +115263 present +115275 aorist +aorist +115285 present +115293 aorist +115299 present +115323 present +115325 aorist +115333 aorist +115335 present +115338 present +115341 aorist +115346 future +115349 present +115355 present +115360 aorist +115363 aorist +115369 perfect +115373 aorist +115375 perfect +115380 present +future +115385 present +115389 present +115395 future +115397 present +115427 aorist +115440 aorist +115445 aorist +115451 aorist +115455 present +115465 present +115476 aorist +aorist +115486 aorist +115494 perfect +115499 aorist +115503 present +115507 perfect +115512 future +115518 future +115525 aorist +115531 present +115533 aorist +115543 present +115545 present +115579 aorist +115582 aorist +115586 aorist +115606 aorist +115612 present +115616 future +115619 present +115622 future +115628 future +115633 future +115638 present +115644 future +115650 perfect +115652 present +115658 aorist +115668 present +115673 present +115676 present +present +115681 present +115683 present +115686 aorist +115689 aorist +115695 aorist +115697 aorist +115704 aorist +115709 future +aorist +115715 aorist +present +115722 aorist +115725 aorist +present +115747 aorist +115751 present +115754 present +115756 aorist +115759 present +115761 present +115764 present +115770 present +115772 aorist +115781 aorist +115784 aorist +115792 aorist +115797 aorist +115803 present +115807 perfect +115809 present +115815 perfect +115825 perfect +115831 aorist +115834 imperfect +115849 aorist +115857 aorist +115861 present +115864 present +115872 present +115875 present +present +future +115887 future +115892 future +perfect +115898 aorist +115905 aorist +115912 perfect +115919 aorist +115926 aorist +115932 present +115934 present +115938 aorist +115946 present +115949 imperfect +115954 present +115958 present +115960 imperfect +115965 aorist +115967 aorist +115978 present +115986 perfect +115988 aorist +present +115991 present +aorist +115999 aorist +116009 present +116011 aorist +116027 perfect +116032 present +116036 aorist +116041 present +116047 aorist +116063 future +116074 present +116087 aorist +116090 present +116100 aorist +116102 present +116119 aorist +116126 aorist +116133 aorist +116138 aorist +116140 present +116146 aorist +116151 aorist +116157 future +116162 present +116166 future +116175 aorist +116178 present +116180 present +116189 present +116192 aorist +116203 perfect +116212 aorist +116215 present +116221 aorist +116223 present +116233 aorist +aorist +116239 aorist +116246 aorist +116251 aorist +116255 aorist +116261 aorist +116263 future +116271 aorist +116273 present +116276 aorist +aorist +116281 aorist +116284 present +116286 aorist +116291 present +116295 perfect +116298 present +perfect +116304 aorist +116311 perfect +116315 aorist +116317 present +116322 aorist +116324 perfect +116326 aorist +116332 future +116343 aorist +116345 perfect +116352 aorist +116370 future +116377 present +116379 aorist +116385 aorist +116387 aorist +116391 present +116397 present +116402 perfect +116408 aorist +116410 present +116418 aorist +116424 imperfect +116428 present +116436 aorist +116443 aorist +116455 aorist +aorist +116470 aorist +116476 present +116486 present +116504 present +116513 perfect +116523 present +116526 perfect +116534 present +116538 present +116542 present +aorist +116548 perfect +116556 present +116564 aorist +116568 aorist +116577 present +116580 present +116586 present +116593 present +present +116596 present +116598 present +116602 present +116607 present +116616 present +116623 present +116627 present +116640 aorist +aorist +116645 aorist +116650 present +116654 perfect +116660 present +116683 present +present +116693 aorist +116695 aorist +116700 present +116702 aorist +116705 aorist +116709 aorist +aorist +116713 present +116718 aorist +116735 present +116738 perfect +116743 present +present +116750 present +116753 present +116765 perfect +present +116775 present +116782 present +116784 present +116795 perfect +present +116804 aorist +116814 present +116817 present +116839 future +116841 present +116848 aorist +116850 aorist +116859 aorist +116861 aorist +116867 present +116870 aorist +116872 present +116875 present +116882 present +116886 aorist +116890 present +116894 present +116901 present +present +116908 present +116923 perfect +116929 present +116934 present +116940 aorist +116948 aorist +116953 aorist +116955 present +116959 present +116965 present +116976 aorist +116984 present +116990 aorist +116997 aorist +imperfect +aorist +117002 present +117005 present +future +117009 present +future +117014 aorist +aorist +117023 present +117036 present +aorist +117049 aorist +117059 aorist +117063 present +117065 aorist +aorist +117068 present +117071 present +117081 present +117092 aorist +117098 aorist +117114 aorist +117116 present +117123 aorist +117130 aorist +117134 present +117143 present +117155 present +117157 perfect +117162 present +117168 present +117176 aorist +117189 present +117191 present +present +117199 present +117204 perfect +117212 present +117215 perfect +117219 present +117222 perfect +117232 present +117237 present +117239 present +117242 present +117244 present +117248 aorist +117255 present +perfect +117264 imperfect +117266 aorist +117277 imperfect +117283 perfect +117291 present +117300 present +117302 present +117310 present +117314 present +117318 perfect +117322 perfect +117330 perfect +117341 aorist +117346 present +117352 present +117356 perfect +117368 present +117382 present +117384 present +117393 aorist +117402 present +117416 present +perfect +117425 present +117428 aorist +117432 future +117444 perfect +117450 present +perfect +117456 present +present +117462 present +117468 present +117473 present +present +117479 present +117485 present +117488 present +117494 imperfect +117500 perfect +117508 aorist +117511 present +117524 present +117531 aorist +117534 aorist +117539 present +117541 present +117556 perfect +117561 present +present +117566 aorist +117585 aorist +117595 present +117600 present +117603 present +117608 aorist +117612 imperfect +117617 imperfect +117619 present +117621 present +117632 present +117634 perfect +117636 present +present +117641 present +present +future +117649 aorist +117658 perfect +117661 present +117669 perfect +117675 imperfect +117681 imperfect +117683 present +117685 present +aorist +117688 present +present +117692 future +117709 aorist +117715 aorist +117720 aorist +117728 aorist +117734 aorist +117736 present +117743 future +117751 present +117753 present +117764 future +117767 future +117773 future +117780 aorist +117790 present +aorist +117796 future +117805 future +117815 aorist +117819 present +117821 perfect +117826 present +117828 present +117833 imperfect +117844 aorist +117862 present +117871 present +117874 present +117882 perfect +117889 present +117897 aorist +117908 present +117914 present +117916 present +117922 perfect +117930 present +117935 present +117950 present +117959 present +117965 perfect +117974 present +117982 perfect +117989 present +117991 present +117994 aorist +117996 present +118010 present +118012 aorist +118016 aorist +118027 present +118043 aorist +118050 aorist +118061 present +118063 perfect +present +118081 aorist +118085 future +118094 present +118096 present +118103 present +118106 aorist +118115 aorist +118117 perfect +118127 present +118130 aorist +118139 present +118141 present +118143 aorist +118150 perfect +118152 aorist +118163 aorist +118186 aorist +present +118194 aorist +118212 aorist +118218 present +118226 present +118238 present +118248 aorist +118263 aorist +118273 present +118278 present +118288 imperfect +118291 aorist +118310 perfect +118314 present +118318 aorist +118328 aorist +118333 aorist +118338 future +118341 present +118347 present +118350 present +118364 present +118369 present +118371 present +aorist +118376 aorist +present +118381 present +118386 present +118388 perfect +118402 present +118405 present +118409 present +118414 aorist +118417 aorist +118424 aorist +118426 aorist +118429 aorist +118433 perfect +118436 present +118438 aorist +118443 present +118454 aorist +118456 aorist +118460 present +118462 perfect +aorist +present +118466 aorist +118470 present +118476 aorist +118480 perfect +present +118494 perfect +118497 present +118500 present +118506 present +aorist +118515 aorist +118519 aorist +118526 present +118528 aorist +118539 perfect +118544 present +118546 present +118556 perfect +118561 future +118568 present +118570 present +118581 future +118593 future +118605 present +118617 aorist +118622 present +118627 present +118639 present +118646 perfect +118653 perfect +118658 present +118667 aorist +118669 present +118678 present +118686 present +118691 present +present +118697 present +118701 aorist +118709 present +118719 present +present +118724 aorist +118734 present +118736 present +118739 future +118745 aorist +118748 aorist +118755 aorist +118761 aorist +118763 perfect +118765 aorist +118769 future +118772 future +118779 aorist +118783 present +118785 present +118791 aorist +aorist +118802 present +118808 present +aorist +118814 aorist +118819 present +118823 aorist +present +present +118830 present +118833 aorist +118838 present +118844 present +118850 aorist +aorist +118860 present +future +118864 future +118871 future +118874 aorist +118876 present +118884 present +118895 present +118897 present +118902 present +118906 aorist +118910 present +perfect +118920 present +118922 present +perfect +118930 aorist +118935 aorist +present +118938 present +118948 aorist +118950 present +118953 aorist +118956 aorist +118960 imperfect +118962 aorist +118970 perfect +perfect +118978 aorist +118980 present +aorist +118983 present +118987 present +118990 present +118993 present +118996 aorist +119000 present +aorist +aorist +119011 aorist +119020 aorist +119022 present +119024 aorist +aorist +119028 imperfect +119030 present +119034 aorist +119036 present +119038 present +119040 aorist +119049 aorist +119061 imperfect +119065 present +119081 aorist +119088 aorist +119090 aorist +119095 perfect +aorist +119120 aorist +119124 aorist +119130 aorist +119132 aorist +119134 aorist +119139 present +119146 present +present +119150 present +119154 imperfect +119158 aorist +119160 imperfect +119162 aorist +119165 present +119168 present +119172 present +119178 present +119180 aorist +119184 perfect +119188 present +119192 imperfect +119196 aorist +119199 aorist +119203 future +119206 aorist +119211 present +119220 aorist +119224 present +aorist +119234 present +119239 aorist +119241 aorist +119250 present +119257 aorist +119263 aorist +119266 aorist +aorist +119274 aorist +119280 aorist +119288 aorist +aorist +present +119294 aorist +119296 present +119303 present +119308 aorist +119317 imperfect +119322 aorist +119325 aorist +119334 present +aorist +119337 perfect +119348 present +119351 aorist +119354 aorist +119364 aorist +119367 aorist +119372 aorist +aorist +119382 aorist +119384 aorist +aorist +119393 present +119395 future +119399 present +119415 aorist +119417 aorist +119419 aorist +119421 aorist +119424 aorist +119427 aorist +119430 aorist +119433 aorist +119439 aorist +aorist +119449 aorist +119451 aorist +119457 aorist +119464 aorist +119470 aorist +aorist +aorist +119476 aorist +aorist +119483 present +present +present +present +119500 imperfect +119507 aorist +119512 aorist +119521 aorist +119526 aorist +119530 present +119532 present +119536 aorist +119545 present +119547 present +119550 present +119562 present +119565 aorist +119568 aorist +119576 perfect +119578 aorist +119580 perfect +119590 aorist +119594 present +119598 aorist +119602 present +119604 perfect +119611 present +119615 present +119619 present +119622 present +119625 present +119627 present +119629 present +119633 present +119636 present +119640 present +119648 present +119652 present +119657 perfect +119664 present +119672 imperfect +119675 imperfect +119679 future +119685 future +119694 present +119696 imperfect +119701 present +119704 aorist +119714 present +present +119718 present +119729 perfect +present +119733 perfect +119737 perfect +119739 aorist +119743 present +119751 aorist +119753 aorist +119755 present +119765 future +119768 present +119771 present +119782 present +present +119787 aorist +119801 aorist +119806 perfect +119810 present +aorist +119814 aorist +119819 aorist +119823 aorist +119827 perfect +present +119830 perfect +119846 aorist +aorist +119849 aorist +119854 imperfect +119856 present +119859 aorist +119862 future +119866 imperfect +119868 present +119870 aorist +present +119876 perfect +119882 present +119892 perfect +119902 perfect +119912 present +119916 present +119918 aorist +119920 present +119924 aorist +119926 aorist +119930 present +119938 present +119944 aorist +119948 perfect +present +119953 future +119966 present +119969 present +119972 perfect +119974 aorist +119977 present +119981 present +present +119986 present +120000 present +120003 present +120007 present +120011 aorist +120013 aorist +120015 present +120019 perfect +120021 present +120025 present +120041 future +120047 present +120049 present +120052 perfect +120056 aorist +120061 aorist +120063 present +120065 present +120070 future +120072 future +120075 present +120077 present +120080 aorist +120091 present +present +120111 present +120115 present +120123 aorist +120125 present +present +120130 aorist +120132 present +120137 present +120139 present +120155 present +120163 aorist +120173 aorist +120175 present +120184 present +120187 present +120189 present +120193 present +present +120198 present +120206 present +120209 present +120219 present +120223 present +120226 present +120228 present +120231 present +120234 present +120241 future +120246 present +120249 present +120254 present +120258 present +120262 present +120266 present +present +120270 present +120272 aorist +120275 aorist +120283 aorist +120300 aorist +120307 aorist +120311 present +120331 present +120334 present +120343 aorist +120345 present +120350 perfect +120355 present +future +120358 aorist +120361 present +120367 present +120392 present +120397 aorist +120401 aorist +present +120409 present +120416 present +120418 present +120424 present +120429 present +120431 present +120434 present +120439 present +120442 future +120445 present +120449 present +120452 present +perfect +120456 present +120458 present +120461 present +120466 future +120480 present +120500 future +120502 aorist +120509 aorist +120516 aorist +120523 aorist +120532 future +120536 present +120540 aorist +future +120547 aorist +120549 present +120552 present +present +120557 present +120562 present +120565 present +120570 present +120575 present +120577 present +120581 aorist +present +120587 aorist +present +120591 present +120603 present +present +120613 present +120618 aorist +aorist +120625 present +120632 perfect +120637 present +120643 aorist +120647 aorist +120657 present +120659 aorist +120667 aorist +120672 present +aorist +120678 present +120685 present +120692 present +120697 perfect +120699 present +120708 aorist +120711 perfect +120714 aorist +120716 imperfect +120719 aorist +120727 aorist +aorist +120741 future +120744 present +120746 present +120748 present +120752 present +120768 present +120770 present +120780 present +120789 present +120801 aorist +120811 aorist +120818 aorist +120821 present +120827 aorist +120829 present +120835 aorist +120837 aorist +120840 present +120846 aorist +120850 aorist +120854 aorist +120861 aorist +120874 aorist +120876 present +120880 aorist +120886 present +120890 present +120896 present +120901 aorist +120908 present +120912 future +120919 present +120922 present +120924 present +present +120936 aorist +120938 aorist +120941 perfect +120946 aorist +120948 aorist +aorist +120952 aorist +120956 present +120958 present +perfect +120963 present +120966 present +120971 present +present +120979 aorist +120981 present +120991 present +present +120997 present +120999 present +121002 aorist +121009 present +121011 present +121016 aorist +121021 present +121024 present +121026 present +121029 aorist +121044 present +121047 present +121051 future +121055 present +121058 present +aorist +121069 future +121077 present +121080 present +121084 present +121088 present +121090 present +121095 present +aorist +121104 present +121112 aorist +aorist +121121 present +121125 imperfect +121135 aorist +121137 aorist +121141 present +121143 aorist +121148 aorist +121155 aorist +present +121160 present +121176 aorist +aorist +121183 aorist +121191 present +121199 present +121205 present +perfect +121210 future +121213 present +121220 present +121225 aorist +121239 present +121242 present +121250 present +aorist +121256 present +121261 present +present +121270 present +present +121278 present +121281 present +aorist +121287 present +121298 present +121304 present +121309 present +121315 present +121330 present +121332 perfect +121340 aorist +present +121351 present +121359 present +121366 perfect +121371 present +121378 present +121381 present +121389 present +121398 present +121401 aorist +121407 aorist +121416 aorist +121429 present +121439 present +121441 present +121446 present +121451 present +121474 present +121491 present +121493 present +121509 present +121514 present +121517 present +present +121520 present +121523 present +aorist +present +121527 present +121529 present +121533 present +121535 present +121538 present +121541 present +121547 aorist +121550 perfect +121559 present +121563 aorist +present +121571 present +121573 present +121578 present +121581 present +121585 aorist +121591 present +121593 present +121597 present +121600 present +121603 aorist +121607 aorist +121611 future +121614 aorist +121618 future +121620 aorist +121624 aorist +121627 aorist +121629 aorist +121631 aorist +121637 aorist +121643 aorist +121647 future +121650 present +121654 present +121657 present +121661 present +121664 present +121669 present +present +121677 present +121682 present +aorist +121685 aorist +121689 present +121691 present +121694 present +121697 present +121701 future +121707 future +121711 future +121713 future +121716 present +121724 present +121729 present +121732 present +121735 present +121740 aorist +121742 future +121744 future +121750 present +121759 present +121761 perfect +121763 present +121766 present +121769 present +present +121774 aorist +present +121781 present +121785 perfect +121791 perfect +121798 perfect +121806 future +121808 future +121814 aorist +121818 aorist +121824 aorist +121829 perfect +121832 present +121837 aorist +121843 perfect +aorist +121849 aorist +aorist +121857 aorist +aorist +121862 present +121866 aorist +121872 aorist +121875 present +121881 present +121885 aorist +121889 aorist +121892 aorist +121901 perfect +121904 present +121909 aorist +aorist +121916 perfect +121918 aorist +121928 aorist +121933 aorist +present +121936 aorist +121940 aorist +121945 aorist +121947 present +121959 present +121971 present +121984 aorist +present +121989 present +present +121992 present +present +121997 aorist +122003 aorist +122006 aorist +122018 future +122020 present +122022 future +122028 present +perfect +future +122033 present +122038 present +122042 aorist +122044 present +122047 present +122049 imperfect +122055 aorist +122058 aorist +122061 aorist +122072 aorist +122077 aorist +122081 aorist +122091 aorist +122096 aorist +122099 present +122102 aorist +122108 future +122114 future +122148 aorist +122165 aorist +122169 present +122183 perfect +122192 present +122198 aorist +122204 present +122208 present +aorist +122222 present +122226 present +aorist +122240 aorist +present +122247 present +present +present +122253 perfect +present +122264 aorist +122266 aorist +122274 aorist +present +122281 imperfect +122287 present +122298 aorist +122304 imperfect +122308 aorist +122312 aorist +122317 aorist +122322 aorist +present +122326 aorist +122332 present +122334 aorist +122337 present +122348 present +122359 aorist +122368 aorist +122370 perfect +122372 future +122379 present +122382 present +122394 aorist +perfect +122402 aorist +122419 perfect +122424 aorist +122438 aorist +122445 aorist +122452 present +122458 perfect +122470 aorist +122472 perfect +122482 present +122484 present +122497 aorist +122503 aorist +122508 present +122514 present +122518 aorist +122522 aorist +122542 aorist +122546 aorist +122550 aorist +122555 present +122559 present +122563 perfect +122573 present +present +122580 aorist +122589 present +122592 aorist +present +122602 present +122607 aorist +122613 present +122615 present +122618 aorist +122620 present +122622 aorist +122633 present +122636 present +122640 aorist +122653 aorist +122660 aorist +122676 perfect +122679 aorist +122681 present +122686 present +122691 present +122701 present +122706 present +122714 present +aorist +122721 aorist +122731 present +122737 present +122746 present +122751 present +present +122763 present +122774 aorist +122777 present +122780 present +122783 present +122786 present +122809 present +122812 present +122818 present +122820 present +future +122824 present +122826 present +future +122835 aorist +122839 aorist +122843 present +122846 aorist +122853 aorist +122855 aorist +122862 present +122864 imperfect +present +122867 imperfect +122869 imperfect +122871 present +122878 aorist +122889 aorist +122892 aorist +122896 aorist +122898 imperfect +122901 present +122903 aorist +122915 present +122923 present +122933 future +aorist +122942 present +122970 present +122983 present +122986 imperfect +122988 present +122994 aorist +122999 present +123002 aorist +present +123006 present +123012 present +123020 present +123030 present +123044 present +123054 present +123058 aorist +123061 aorist +123064 present +123066 present +123068 aorist +123071 aorist +123080 aorist +123083 aorist +123087 aorist +123089 aorist +123092 aorist +123109 present +123114 future +123120 aorist +123124 present +123133 aorist +123135 aorist +123140 aorist +123151 present +123166 present +123170 present +aorist +123173 present +123182 present +123184 present +123189 present +123191 present +123198 aorist +123204 aorist +123208 perfect +123211 aorist +123215 aorist +aorist +123222 aorist +123225 imperfect +123233 present +123239 present +123242 aorist +123249 present +123267 present +123271 aorist +123274 aorist +123283 aorist +123290 aorist +123304 aorist +123307 aorist +123309 perfect +123314 perfect +123320 perfect +perfect +123333 present +123335 present +123343 present +123345 future +123349 present +aorist +present +123359 aorist +123362 aorist +123367 present +123375 perfect +123377 aorist +123379 aorist +123389 present +123392 present +123402 aorist +123407 present +123416 present +123422 present +123427 present +123433 present +123440 present +123454 present +123462 present +123466 present +123469 present +123474 present +123483 aorist +present +123486 present +123502 present +123507 present +123522 present +123524 present +123535 aorist +123552 present +123562 present +123568 future +123572 present +123580 present +123590 present +123602 present +present +123606 aorist +123625 present +123629 present +123634 aorist +123637 future +123645 aorist +123652 aorist +123657 present +123660 present +123663 aorist +123672 aorist +123679 aorist +123684 present +123687 aorist +aorist +123695 present +present +present +123699 aorist +123701 aorist +123705 perfect +123716 present +123723 aorist +123733 aorist +123735 future +future +future +future +123755 present +123758 aorist +present +123761 present +123763 present +123770 aorist +present +123782 aorist +123802 aorist +123818 aorist +123841 perfect +123846 aorist +123860 perfect +123864 aorist +123868 aorist +123882 aorist +aorist +123929 present +123931 present +123936 present +123948 present +123951 present +present +aorist +123964 aorist +123971 present +123974 present +123977 aorist +123982 future +123998 future +124001 present +124005 perfect +124007 perfect +124010 present +124014 present +124017 present +124022 present +124026 perfect +124029 present +124042 aorist +124045 future +124048 present +124057 present +124060 perfect +124062 aorist +aorist +124075 aorist +124081 aorist +124090 aorist +124103 present +124107 aorist +124113 aorist +124116 aorist +124119 present +124125 present +124131 present +124133 present +124136 present +124143 aorist +124146 aorist +124153 present +124161 present +124166 aorist +124173 present +aorist +124179 aorist +124189 future +124192 future +124197 aorist +124200 present +present +124207 future +124217 future +124224 future +124230 present +124236 present +124242 aorist +124244 aorist +124248 aorist +aorist +124252 present +124257 aorist +124263 aorist +124267 aorist +124273 aorist +124275 aorist +124277 present +present +perfect +124283 present +124291 aorist +124298 present +124308 imperfect +perfect +124314 present +124320 present +present +124330 present +124333 present +124337 present +124339 present +124346 present +124348 present +124360 perfect +124368 present +present +124375 future +present +124380 present +124388 present +124393 present +124395 present +124402 present +124406 perfect +124408 present +124411 present +124414 aorist +aorist +124425 aorist +124430 aorist +124436 aorist +aorist +124443 present +124450 present +124456 perfect +124460 present +present +124468 present +124472 present +124475 present +124477 present +124484 perfect +124486 perfect +124489 aorist +124505 aorist +present +perfect +124516 imperfect +124519 perfect +124525 aorist +aorist +124529 aorist +124533 perfect +124540 aorist +124547 aorist +124557 present +124560 present +124567 aorist +124569 perfect +124587 present +124589 future +124602 present +124604 present +124606 present +124617 aorist +124620 present +124625 present +124628 present +124631 imperfect +124640 perfect +124651 aorist +aorist +124663 perfect +present +124666 present +124680 present +124697 present +124704 present +124706 present +124709 present +124712 aorist +124717 aorist +124719 future +124729 future +124732 present +future +124741 future +124745 present +present +124748 present +124755 present +124757 present +124767 present +future +124771 present +present +124783 present +124787 present +124791 present +aorist +124797 aorist +124807 present +124817 aorist +124820 aorist +124827 present +124834 present +124842 present +124856 present +present +124864 aorist +aorist +124870 present +124892 imperfect +124896 perfect +124898 perfect +124903 aorist +124908 aorist +124917 aorist +124919 perfect +124921 present +124923 present +124930 imperfect +124935 aorist +124938 perfect +124940 perfect +present +124948 present +124969 present +124975 present +perfect +124978 present +124983 perfect +124987 present +124993 present +124998 present +125002 aorist +125005 present +125012 present +present +125016 present +125024 present +125027 present +125032 present +125042 present +125048 aorist +125052 present +125054 present +125059 present +125063 present +125067 present +125072 aorist +125077 aorist +125083 aorist +125086 perfect +125088 present +125095 present +125101 present +125105 aorist +125109 aorist +present +125121 present +125141 present +125143 perfect +125149 present +125151 present +125153 perfect +125160 present +125162 present +125169 present +125173 present +125184 perfect +125187 present +125191 present +125193 present +125196 present +125199 aorist +present +125204 present +125206 present +125215 imperfect +125222 present +125226 aorist +125230 present +125233 present +125243 present +125250 present +125252 present +125256 present +125261 present +125265 present +125269 present +125276 present +125282 present +125285 present +125292 present +125297 present +125300 perfect +125302 present +125306 aorist +125311 present +125314 perfect +125323 present +125326 perfect +125331 present +125334 perfect +125338 aorist +125341 perfect +125345 aorist +125348 perfect +125353 aorist +125357 present +125365 present +125367 perfect +125371 present +125381 present +125385 present +125413 present +125421 present +125423 present +125432 present +125437 present +125444 present +125447 aorist +125450 present +125455 perfect +125457 present +125461 present +125464 aorist +125467 imperfect +125474 imperfect +125476 pluperfect +125481 aorist +125484 present +125491 present +125496 perfect +125498 aorist +125503 perfect +125508 perfect +125518 present +125520 present +125526 present +125530 present +125534 present +125538 present +125546 present +125552 present +125554 present +125560 present +125563 aorist +125568 present +125572 aorist +125576 aorist +125586 future +125589 present +125594 aorist +125601 aorist +125605 present +125612 aorist +125615 present +125621 present +125624 present +125631 present +125637 present +125640 present +125644 aorist +125646 present +125652 present +125657 aorist +aorist +125662 aorist +125670 perfect +125673 present +present +125679 present +125684 perfect +aorist +125688 perfect +125695 aorist +125697 present +125703 present +125707 aorist +125713 present +125716 aorist +125718 future +perfect +125722 aorist +125725 future +125727 future +125730 present +125734 present +125740 present +125745 present +125748 present +125754 present +125758 present +125762 perfect +125765 aorist +125769 aorist +125775 present +125780 present +125782 present +125785 present +125787 perfect +125790 perfect +125794 present +125797 present +125801 present +125805 present +125807 present +125813 present +125819 present +125822 aorist +125828 aorist +125835 perfect +125841 present +125847 present +125850 present +present +125856 perfect +125860 present +125873 present +125876 present +125883 present +125889 present +125893 aorist +125897 present +125905 imperfect +125907 aorist +125914 aorist +125921 imperfect +125930 present +125932 present +125937 perfect +125939 perfect +125947 present +125952 present +present +125959 present +125964 present +125966 perfect +125971 present +125976 present +125979 perfect +125989 aorist +125992 present +125998 aorist +126002 present +126008 present +126013 present +126015 aorist +126026 present +126030 present +126043 future +126048 present +126052 future +126058 present +126064 present +126071 present +126078 present +126080 present +126087 present +present +126095 present +126101 present +126104 present +126109 aorist +126118 present +126121 aorist +126126 present +126132 present +126140 present +126142 present +126150 aorist +126155 present +126157 present +126164 present +126168 perfect +126174 present +126182 present +126187 perfect +126191 present +126197 present +126204 present +126207 present +126212 perfect +126214 present +126220 present +126227 present +126229 perfect +126233 present +126246 present +126252 present +126257 present +126262 present +126264 present +126267 present +126271 present +126276 present +126280 present +126291 present +126299 present +126303 present +126307 perfect +126309 present +126314 present +126316 aorist +126323 present +126326 aorist +126339 perfect +126346 aorist +126351 present +126357 perfect +126363 aorist +126366 aorist +126380 aorist +126384 present +126386 present +126390 perfect +126392 present +126398 present +126405 perfect +present +126409 present +126413 present +126423 perfect +126427 perfect +126429 present +126433 perfect +126441 aorist +126444 present +126453 present +126461 perfect +126463 perfect +126467 present +126475 present +126478 present +126485 present +126491 present +126494 perfect +126501 present +126510 present +126513 present +126520 present +126529 present +126536 present +126539 present +126541 perfect +126546 present +126550 aorist +126554 aorist +126556 present +126563 present +126565 present +126569 present +126574 perfect +126576 present +126581 perfect +present +126587 present +126592 present +126595 present +126602 present +126605 present +126611 perfect +126615 present +126617 aorist +present +126620 perfect +126625 present +126627 present +126635 present +126640 present +126643 present +126652 present +126659 present +126663 perfect +126667 present +126672 present +126676 aorist +126683 present +126685 present +126691 present +126694 present +126700 present +126702 aorist +126725 present +126727 present +126731 present +126736 present +126738 present +126753 present +126759 present +126765 present +126768 present +126774 perfect +126780 present +126786 present +126793 present +126797 perfect +126801 perfect +126806 perfect +126815 present +126821 aorist +126833 present +126835 present +126838 present +126843 present +126851 present +126853 aorist +126856 present +126865 perfect +126869 present +126872 present +126876 present +126882 present +126887 present +126891 perfect +126893 present +126897 present +perfect +126900 present +126904 perfect +126909 aorist +126913 present +126918 future +126920 future +126924 present +126928 present +126935 present +126937 aorist +126941 present +126943 present +126948 perfect +126952 perfect +126957 present +126960 aorist +126964 present +126970 present +126972 perfect +126977 present +126985 present +126987 perfect +126993 present +126995 perfect +126999 present +127003 present +127014 present +127022 aorist +127036 present +127048 perfect +127055 present +127061 future +127065 future +127086 aorist +127089 perfect +127094 present +127099 aorist +127106 present +127108 present +127116 imperfect +127120 present +127124 present +127128 present +127136 present +127138 aorist +127144 present +127146 aorist +127154 present +127157 present +127161 present +127167 present +127171 aorist +127173 aorist +127177 aorist +127180 present +127183 present +127191 present +127193 present +127204 present +127207 present +127215 present +127217 present +127222 present +127225 present +127228 present +127230 present +present +127237 present +127240 present +127242 aorist +127248 present +aorist +127256 aorist +127261 perfect +present +present +127279 present +127285 present +127287 present +127289 present +127291 present +127296 aorist +127298 present +127301 present +127309 present +127314 present +127316 present +127323 present +127326 present +127329 aorist +127337 aorist +127345 future +aorist +127354 aorist +127356 present +127362 present +present +127368 present +127371 aorist +127377 present +127381 present +127386 aorist +future +127392 present +127395 present +127399 present +127404 present +127409 present +present +127415 present +127418 present +127425 present +127429 present +127431 present +127433 perfect +127437 perfect +127448 present +127450 perfect +127456 present +imperfect +127459 aorist +127463 present +127469 present +127471 present +127474 aorist +127479 future +127482 present +127486 present +127502 perfect +127506 perfect +127514 aorist +127518 present +present +127527 aorist +aorist +127530 present +present +127534 aorist +127539 aorist +127544 perfect +127555 present +127567 present +127569 present +perfect +127573 aorist +127581 aorist +127586 aorist +aorist +127592 aorist +127597 aorist +127609 perfect +127623 aorist +127625 aorist +127629 present +127634 present +127639 present +127642 present +127645 present +127648 present +127653 present +imperfect +127664 aorist +127667 aorist +127669 aorist +aorist +127678 perfect +present +127687 present +127690 present +127698 aorist +127705 aorist +127711 aorist +127713 present +127720 present +127723 present +127728 present +127733 aorist +aorist +127738 present +127751 perfect +127753 aorist +127760 present +aorist +aorist +127768 aorist +127773 aorist +127784 aorist +127791 aorist +127797 present +127804 present +127809 present +127811 present +127818 aorist +127822 perfect +127832 imperfect +127838 future +127840 present +127848 present +127850 present +127854 present +127858 present +127867 present +127872 aorist +present +127887 present +present +present +127892 present +127895 present +127898 present +127904 perfect +127908 present +aorist +127913 aorist +127952 aorist +127956 aorist +127961 aorist +127964 present +127966 aorist +aorist +127977 aorist +127988 aorist +127991 present +127994 present +128000 present +128004 perfect +128023 present +128026 imperfect +128029 present +128060 present +128063 aorist +128074 aorist +128095 aorist +present +128101 future +128108 aorist +128110 future +128121 present +128127 present +128132 present +128135 imperfect +128138 present +128157 aorist +128162 present +128173 aorist +128181 aorist +128188 present +128190 present +aorist +128195 aorist +128220 aorist +present +128225 imperfect +128229 aorist +aorist +128242 perfect +128245 perfect +128280 perfect +128290 present +128306 present +128314 present +128321 aorist +128323 aorist +128331 aorist +128337 present +128339 present +128341 present +128349 present +128351 aorist +128354 aorist +present +present +128363 present +128372 aorist +128374 aorist +128377 present +128380 present +aorist +128390 aorist +128408 present +128416 present +128423 aorist +128425 present +128427 present +128436 present +128444 perfect +128458 present +aorist +128462 aorist +128464 present +128469 present +128471 aorist +128476 present +128478 aorist +128485 perfect +128487 present +128496 aorist +128498 present +128500 perfect +128502 aorist +128507 aorist +128511 present +128514 future +128524 aorist +128527 present +128529 present +128536 present +128538 present +128540 aorist +128544 present +128548 present +future +128551 aorist +128558 present +128571 aorist +128573 present +128580 aorist +128583 aorist +perfect +128593 present +128599 present +128601 present +128605 present +128611 present +128613 present +present +aorist +present +128619 present +128625 aorist +128627 future +128631 present +128636 future +128643 present +128645 aorist +128649 present +128653 present +128656 aorist +128669 aorist +128671 present +128673 present +128680 perfect +128682 present +128689 present +128695 aorist +128711 aorist +128717 present +128719 present +128724 present +128726 present +128731 imperfect +128734 aorist +128740 aorist +128743 aorist +128745 present +128748 present +128755 aorist +128759 present +128763 future +128773 present +128775 aorist +128779 present +128783 present +future +128789 perfect +128791 future +128799 perfect +128804 perfect +128808 present +128816 aorist +128818 present +128824 present +128837 perfect +128864 present +128868 present +128873 present +128877 present +128879 present +128883 aorist +128885 aorist +128888 aorist +128892 aorist +128895 present +aorist +128901 aorist +present +128908 present +128916 future +128925 future +128929 future +128935 present +128937 present +128942 future +128950 present +128959 present +128965 aorist +128971 present +128973 present +128980 present +aorist +128985 aorist +128988 present +128991 present +128997 future +129004 future +129014 present +129017 perfect +129023 future +129030 present +129032 aorist +129036 present +129046 aorist +129048 present +129050 present +129060 perfect +129066 present +129068 present +129071 present +present +present +129075 aorist +129079 imperfect +aorist +129083 perfect +129086 perfect +129092 present +129094 perfect +129096 aorist +129098 present +129100 aorist +129104 aorist +future +129111 aorist +129114 future +129118 present +129125 aorist +129130 future +129137 present +129139 present +129141 future +129148 future +129158 future +129172 present +129174 aorist +129178 present +129188 aorist +129190 present +129196 present +129201 present +129204 future +129206 present +129209 present +perfect +129214 aorist +perfect +129219 perfect +129222 aorist +129224 present +129228 present +129230 aorist +129236 aorist +129240 aorist +present +129248 present +129251 present +129254 present +129256 present +aorist +future +129261 future +129263 future +129269 aorist +129272 aorist +129275 aorist +129283 future +129290 present +present +129296 aorist +129298 present +129302 present +129304 present +129306 present +129309 aorist +129314 present +future +129328 aorist +129331 future +129351 present +129366 present +129368 aorist +129372 present +129382 aorist +129384 present +129399 perfect +129404 present +129409 aorist +imperfect +129417 present +129423 present +129425 aorist +129431 present +129434 present +129436 perfect +129440 present +129443 perfect +129446 present +129457 present +129459 aorist +129463 perfect +129467 aorist +129472 aorist +129475 aorist +129483 aorist +129488 present +129492 present +present +129495 present +129497 present +129499 aorist +aorist +perfect +129506 present +129509 aorist +129514 aorist +129517 future +129521 future +129529 present +future +129532 aorist +129541 aorist +129543 aorist +129553 present +129555 aorist +129559 present +129564 aorist +129566 aorist +129568 perfect +129578 aorist +129581 present +129584 present +aorist +129588 future +129591 aorist +129594 present +129596 aorist +129600 aorist +129602 imperfect +129610 present +129613 present +129642 present +perfect +129658 present +129668 present +129673 present +129699 present +129721 present +129732 present +129741 present +129748 present +129753 present +129757 present +129767 imperfect +129770 present +129773 present +129776 future +129785 present +129790 present +129796 future +129803 present +129808 future +129810 present +129817 future +129824 present +129832 present +aorist +129844 aorist +129852 imperfect +129854 aorist +129856 aorist +129861 present +129866 perfect +129870 perfect +129874 aorist +129877 present +129883 aorist +129887 aorist +129892 imperfect +129905 aorist +129909 present +129912 imperfect +129917 aorist +aorist +129922 present +129929 present +129932 present +aorist +aorist +129945 aorist +129954 aorist +129969 perfect +129971 perfect +present +129979 present +129985 perfect +129991 aorist +129993 perfect +129998 present +130004 aorist +130015 aorist +130019 present +130025 present +130028 present +130034 present +130037 present +130039 present +aorist +130044 aorist +130049 aorist +130051 aorist +130068 aorist +130077 future +130082 aorist +130084 aorist +130098 imperfect +130107 present +130111 present +130115 perfect +aorist +130150 present +130156 present +aorist +130159 present +130186 imperfect +130191 aorist +130193 aorist +130195 aorist +130197 aorist +130206 aorist +130212 present +130216 present +130218 aorist +130220 aorist +130225 present +130228 present +130231 aorist +130235 aorist +present +130239 aorist +130242 aorist +130247 aorist +130251 present +present +130254 aorist +130260 present +130263 aorist +130265 aorist +130274 future +130276 aorist +130282 aorist +130287 aorist +130291 present +present +130294 aorist +130296 aorist +130301 present +130304 present +130311 aorist +130319 present +130335 aorist +130338 aorist +130343 aorist +130348 present +present +130351 aorist +130353 aorist +130358 present +130368 imperfect +130372 aorist +130380 aorist +130397 aorist +130401 aorist +130408 perfect +130419 imperfect +130421 aorist +130424 present +130434 present +130436 present +130442 present +130447 aorist +130453 aorist +130456 aorist +130461 aorist +130471 present +present +130477 aorist +130479 aorist +130487 aorist +130491 aorist +130500 aorist +130508 aorist +130514 present +130521 present +130525 aorist +130528 present +130538 aorist +130561 aorist +130573 present +130579 aorist +130583 aorist +130588 present +130599 aorist +130609 present +aorist +130613 aorist +130616 perfect +130623 present +130631 present +130645 aorist +130648 present +130652 present +130655 present +130657 aorist +130665 aorist +aorist +130672 present +130674 aorist +130684 aorist +130695 aorist +130699 perfect +130704 perfect +130715 perfect +130771 perfect +130774 aorist +130776 aorist +130781 aorist +130783 imperfect +130793 perfect +130801 perfect +130811 present +130814 present +130821 present +130832 pluperfect +130844 aorist +130853 aorist +130856 present +130888 aorist +130893 present +130897 perfect +130903 present +130906 aorist +130908 perfect +130913 perfect +130915 aorist +130918 present +130920 present +130927 aorist +130932 aorist +130941 present +130948 present +130959 present +130963 future +130967 future +130970 future +130974 aorist +130990 future +130993 future +131000 future +131011 aorist +131016 aorist +131024 aorist +131032 perfect +131034 aorist +131041 aorist +131043 aorist +131047 present +131051 aorist +131056 future +131072 aorist +131089 perfect +131095 aorist +131103 aorist +131108 aorist +131121 present +131125 aorist +131128 aorist +131132 aorist +131134 aorist +131138 perfect +131142 aorist +131151 aorist +131157 aorist +131162 aorist +131167 aorist +131173 present +aorist +131179 aorist +131186 aorist +131196 present +131203 aorist +131208 aorist +131210 aorist +131216 present +131220 aorist +131237 present +131241 aorist +131252 aorist +131257 aorist +131262 aorist +131264 aorist +131280 aorist +131288 aorist +131297 aorist +131299 aorist +131302 present +131305 present +131312 present +131326 present +present +131332 aorist +131334 aorist +131339 perfect +131344 aorist +131353 aorist +131359 aorist +131369 aorist +131384 aorist +131390 aorist +131394 present +131401 aorist +131405 future +131422 present +131431 aorist +131435 aorist +131439 future +131450 aorist +131457 future +131465 future +131468 future +aorist +131471 present +131483 perfect +131503 imperfect +131514 imperfect +131516 imperfect +131532 present +131536 present +131550 aorist +131555 present +131572 present +131578 aorist +aorist +present +131590 aorist +131592 aorist +131607 present +131612 present +131615 aorist +131620 perfect +131628 aorist +131633 perfect +131644 aorist +131658 aorist +131664 aorist +131672 present +131675 present +131695 present +131701 aorist +131721 present +131731 present +131747 present +131752 present +131760 aorist +131766 aorist +131775 future +131796 present +131798 present +131800 present +131802 present +131805 aorist +131826 aorist +131830 present +131834 perfect +131858 present +131864 perfect +131866 aorist +131882 aorist +131887 present +131890 aorist +aorist +131900 aorist +131904 imperfect +present +131907 aorist +131912 present +aorist +131915 aorist +131922 aorist +131927 perfect +131935 aorist +aorist +131946 aorist +131949 present +131956 aorist +131980 future +131991 present +present +131994 aorist +132000 aorist +132010 aorist +132015 present +132019 present +present +aorist +132025 perfect +132032 perfect +132041 aorist +132045 present +132047 aorist +132052 present +132054 aorist +132056 aorist +132059 future +132068 future +132073 aorist +132082 aorist +132085 imperfect +132095 aorist +132097 aorist +132102 present +132104 present +132107 aorist +132118 aorist +132123 present +present +132126 aorist +132136 present +132146 aorist +132151 aorist +132153 aorist +132161 future +132166 future +132172 future +132177 perfect +132180 present +132194 perfect +132198 present +132200 aorist +132202 present +132208 present +132215 aorist +132217 aorist +132219 present +132221 aorist +132223 present +132226 aorist +132232 present +132240 present +132244 present +132249 aorist +132257 aorist +132260 aorist +132267 present +132271 future +132276 future +132279 future +132293 present +132303 aorist +132305 present +132324 present +132328 aorist +132333 present +132337 present +132341 present +132344 future +132351 aorist +132353 present +132369 aorist +132373 aorist +132381 aorist +132384 present +132387 aorist +132393 present +132395 aorist +132398 aorist +132406 aorist +132416 aorist +132424 aorist +132426 aorist +132438 aorist +132440 aorist +132450 aorist +aorist +132456 present +132462 aorist +132464 aorist +132470 present +aorist +132484 future +132499 present +132504 aorist +132510 aorist +132513 present +present +132522 present +132525 imperfect +132527 perfect +132534 aorist +132538 aorist +132540 aorist +132549 aorist +132551 aorist +132564 present +132574 aorist +132576 present +132580 aorist +132590 aorist +132601 aorist +132615 aorist +132620 perfect +132641 present +132643 present +present +132646 present +aorist +132649 aorist +132656 aorist +132660 present +132677 present +132685 aorist +132693 perfect +132698 present +aorist +132702 aorist +132706 aorist +132708 aorist +132712 present +present +132721 aorist +132736 aorist +132741 present +132744 perfect +132750 present +132757 aorist +132769 aorist +132774 aorist +132783 aorist +132787 aorist +132793 aorist +132803 present +132809 present +132813 aorist +132823 aorist +132825 aorist +132831 present +132833 aorist +132852 aorist +132859 present +132870 aorist +132886 aorist +132894 present +132900 present +132908 aorist +132913 present +132916 perfect +132920 present +132923 aorist +132927 aorist +132931 aorist +132935 aorist +132939 aorist +132950 present +132959 present +132972 aorist +132988 aorist +132990 aorist +132996 aorist +133003 aorist +133007 aorist +133015 aorist +133022 aorist +aorist +133032 present +133038 present +133043 aorist +133050 aorist +133055 present +present +133080 aorist +imperfect +133098 aorist +133119 perfect +133128 aorist +133130 aorist +133138 aorist +133142 aorist +133148 aorist +133151 present +133158 present +aorist +133163 aorist +133166 present +133171 aorist +133174 aorist +133179 aorist +133188 aorist +133200 present +133202 aorist +133204 aorist +133210 aorist +133213 aorist +133226 future +133230 present +133235 perfect +133248 perfect +133254 present +133256 aorist +133263 present +133268 future +present +133273 aorist +133275 present +133284 aorist +133287 present +133292 imperfect +133298 imperfect +133308 present +133312 present +133319 present +133321 future +133327 aorist +133334 present +133339 present +133344 present +133352 present +133354 present +133362 aorist +133364 aorist +133368 present +133370 present +133374 aorist +133379 present +133385 aorist +133387 aorist +133389 aorist +133397 aorist +133403 aorist +133408 aorist +133413 aorist +133415 present +133435 aorist +133453 present +aorist +133456 aorist +133460 present +133476 present +133478 present +133480 aorist +133488 present +133497 aorist +133499 aorist +133502 perfect +133514 present +133524 perfect +133530 aorist +133548 aorist +133551 present +133557 present +133573 imperfect +aorist +133585 perfect +133590 present +133595 aorist +133598 present +133601 present +133606 present +133608 aorist +133624 aorist +133627 present +133629 aorist +133632 present +133635 present +133638 aorist +133641 present +133655 present +133659 aorist +133663 aorist +133667 aorist +133674 aorist +133676 aorist +133691 aorist +present +aorist +aorist +133707 perfect +133715 aorist +133717 present +133723 present +133731 present +133744 future +133753 perfect +133762 future +133783 present +133786 present +133792 present +133802 present +133809 present +133815 present +133825 aorist +133830 present +aorist +133838 present +133841 present +133845 future +133854 present +133858 aorist +133860 aorist +133867 present +133871 present +133888 aorist +133892 present +133897 present +133901 aorist +133906 aorist +133908 aorist +133911 aorist +133913 aorist +133919 aorist +133921 present +133932 aorist +133938 aorist +133946 present +133955 present +133960 aorist +133965 aorist +133969 present +133974 present +aorist +133982 aorist +133990 aorist +133995 aorist +134005 aorist +134011 aorist +134022 aorist +134029 aorist +134044 aorist +134055 present +134063 aorist +134069 aorist +134073 perfect +134077 present +134093 perfect +134099 present +134104 present +134117 present +134142 aorist +134145 future +134156 future +134158 future +134165 aorist +134169 aorist +134171 aorist +134182 aorist +134187 present +134194 perfect +134199 perfect +134211 aorist +134218 present +134224 present +134231 aorist +134247 imperfect +aorist +134253 aorist +134261 aorist +134267 present +134271 present +134273 present +134285 aorist +134289 aorist +134297 aorist +134306 present +134313 present +134320 aorist +134328 aorist +134340 aorist +134344 aorist +134357 aorist +134360 aorist +134365 present +134367 present +134369 present +134372 imperfect +134377 aorist +134383 aorist +134387 perfect +aorist +134390 present +134392 aorist +134395 present +134411 aorist +134419 aorist +134421 aorist +134427 aorist +134433 aorist +134439 present +134448 aorist +aorist +134455 aorist +134465 aorist +134469 perfect +134471 imperfect +134479 aorist +134495 aorist +134503 aorist +134514 aorist +134519 aorist +134529 aorist +134553 present +134556 present +134559 present +134566 aorist +134579 aorist +present +134585 present +134587 present +134594 present +134596 present +134601 aorist +134607 present +134613 aorist +134621 aorist +134630 present +perfect +134633 aorist +134642 aorist +134645 aorist +134649 aorist +134658 aorist +134671 aorist +134676 aorist +134680 aorist +134694 aorist +134698 aorist +134704 present +134712 aorist +134724 present +134730 aorist +134737 present +134742 aorist +134745 present +present +future +134756 present +134762 aorist +134768 aorist +134770 present +134780 aorist +134787 aorist +134789 present +134793 present +134796 present +134805 imperfect +perfect +134811 perfect +134818 present +134825 present +134838 perfect +134854 aorist +134857 present +134871 aorist +aorist +134877 aorist +134883 aorist +134885 future +134895 present +134898 present +134909 aorist +imperfect +134913 present +134915 present +present +134923 present +134925 future +134927 present +134935 perfect +134944 present +134948 imperfect +134951 present +134953 future +134958 present +134965 present +134969 present +134975 present +134978 aorist +134981 present +134985 aorist +134988 aorist +134991 aorist +present +134997 imperfect +135000 present +135004 present +135009 present +135013 present +135019 aorist +present +135026 aorist +135033 present +135040 present +135049 present +135054 future +135058 future +135061 present +135077 present +135082 aorist +135086 present +present +135100 aorist +135105 future +135109 future +135111 perfect +135118 future +135121 future +135127 aorist +135132 aorist +135137 aorist +135141 aorist +135148 future +135157 aorist +present +135164 present +135173 aorist +135176 present +135180 present +135186 aorist +135192 aorist +135196 present +aorist +aorist +135203 aorist +135217 perfect +135227 perfect +135238 aorist +135250 aorist +135252 aorist +135258 present +135262 aorist +135267 aorist +135278 aorist +135280 aorist +135288 aorist +135294 aorist +135299 aorist +135301 aorist +135312 aorist +aorist +135317 aorist +135320 aorist +135325 aorist +135332 present +135334 present +135339 present +135344 aorist +135350 future +135362 future +135369 aorist +135372 future +135374 future +135384 aorist +135386 aorist +135388 present +135396 perfect +135403 present +135418 aorist +135427 present +135429 present +135434 present +135515 aorist +135525 aorist +135533 future +135538 aorist +135543 future +135550 present +135552 present +present +135561 perfect +135568 perfect +135579 aorist +135591 present +135598 present +135601 aorist +135603 imperfect +present +135610 present +135618 aorist +135625 imperfect +present +135628 present +present +135638 aorist +135641 present +135654 aorist +present +135669 aorist +135678 aorist +135687 aorist +135691 present +135694 future +135702 aorist +135715 aorist +135726 aorist +135735 aorist +135744 aorist +135755 aorist +135763 imperfect +135773 aorist +135780 aorist +135788 perfect +135794 aorist +135803 present +135824 aorist +135830 imperfect +135838 aorist +135849 perfect +135855 present +135862 aorist +135873 aorist +135877 present +135881 present +135889 aorist +present +present +135900 present +135908 aorist +135923 present +135926 aorist +135933 present +135935 present +135937 future +135942 aorist +135951 aorist +135954 aorist +135957 aorist +135968 present +135970 present +135972 aorist +135982 perfect +135984 present +135992 present +135994 aorist +135999 aorist +136002 present +136004 present +136006 present +136014 present +136020 aorist +136025 present +136031 aorist +136034 perfect +136036 aorist +136041 present +136044 present +136051 present +136053 present +136067 present +136069 perfect +136072 perfect +136077 perfect +136079 perfect +136082 perfect +136097 imperfect +136102 perfect +136111 present +136117 aorist +136122 future +136129 present +136143 present +136153 perfect +136160 aorist +136163 perfect +136168 aorist +136172 present +136177 present +136180 present +aorist +136190 aorist +136204 present +136219 aorist +136231 perfect +aorist +136237 present +136247 aorist +136256 aorist +136263 aorist +136265 aorist +136272 present +136276 present +aorist +136286 present +136292 aorist +136297 present +136302 aorist +136311 aorist +136317 aorist +136319 present +136323 present +136336 aorist +136344 present +136350 aorist +136355 aorist +136361 aorist +136363 aorist +136368 aorist +136373 aorist +136379 present +aorist +136385 aorist +136388 aorist +136393 aorist +136399 perfect +136413 aorist +136422 aorist +136434 aorist +136436 aorist +136447 aorist +136449 aorist +136462 present +136475 present +136478 future +136486 future +136494 aorist +136498 future +136506 future +aorist +136521 aorist +136536 aorist +136543 aorist +136552 perfect +136554 aorist +136560 aorist +136566 present +136568 aorist +136584 future +136594 aorist +136600 present +136607 aorist +136616 aorist +136619 aorist +136627 perfect +136633 aorist +136637 aorist +136639 present +136643 aorist +136648 perfect +136657 aorist +136671 aorist +136678 aorist +136690 aorist +136705 present +136710 aorist +136716 perfect +aorist +136724 aorist +136738 aorist +136743 present +136746 aorist +136753 present +136760 perfect +136763 perfect +136768 aorist +136774 present +aorist +136784 future +136791 future +136798 future +136800 future +136811 future +136820 future +136825 aorist +136827 aorist +136829 present +136833 aorist +136835 present +136838 present +aorist +136847 present +136849 aorist +136851 perfect +136865 present +future +136876 present +future +136880 future +136885 future +136894 perfect +136914 present +136919 present +136925 aorist +136932 present +136937 present +136944 aorist +136947 present +present +future +136958 aorist +136968 aorist +136975 present +136982 present +136996 present +present +137002 present +137012 perfect +137015 present +137045 present +137060 present +137063 imperfect +137068 aorist +137083 present +137092 aorist +137111 present +137113 aorist +137124 present +137150 perfect +137200 imperfect +137217 aorist +137232 present +137237 present +137245 present +137252 aorist +137261 future +137273 present +137285 aorist +137290 future +137293 future +137306 aorist +137313 present +137320 perfect +137329 aorist +137337 present +137359 present +137365 present +137382 future +137394 future +137399 future +137402 future +137417 future +137421 present +137432 future +137436 future +137443 aorist +137460 aorist +137464 aorist +137469 aorist +137472 present +137474 aorist +present +137479 present +137490 present +137492 present +137496 aorist +137498 aorist +aorist +aorist +137507 present +137511 present +137513 present +137515 present +137526 present +137534 aorist +137536 present +137539 aorist +137551 present +137553 present +aorist +137559 aorist +137565 aorist +137570 aorist +137572 aorist +present +137581 aorist +137587 present +137606 present +137611 future +137623 aorist +137644 present +137646 present +137650 aorist +137654 aorist +137661 present +137680 present +present +137684 present +aorist +present +137689 present +present +137692 present +aorist +137697 present +137701 present +137711 aorist +137714 future +137722 perfect +137730 aorist +137739 future +137757 perfect +137762 present +137764 present +137767 present +137770 present diff --git a/tf/0.1.1/text.tf b/tf/0.1.1/text.tf new file mode 100644 index 0000000..7be6f7a --- /dev/null +++ b/tf/0.1.1/text.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=the text of a word +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +Βίβλος +γενέσεως +Ἰησοῦ +Χριστοῦ +υἱοῦ +Δαυεὶδ +υἱοῦ +Ἀβραάμ. +Ἀβραὰμ +ἐγέννησεν +τὸν +Ἰσαάκ, +δὲ +Ἰσαὰκ +ἐγέννησεν +τὸν +Ἰακώβ, +δὲ +Ἰακὼβ +ἐγέννησεν +τὸν +Ἰούδαν +καὶ +τοὺς +ἀδελφοὺς +αὐτοῦ, +δὲ +Ἰούδας +ἐγέννησεν +τὸν +Φαρὲς +καὶ +τὸν +Ζαρὰ +ἐκ +τῆς +Θάμαρ, +δὲ +Φαρὲς +ἐγέννησεν +τὸν +Ἐσρώμ, +δὲ +Ἐσρὼμ +ἐγέννησεν +τὸν +Ἀράμ, +δὲ +Ἀρὰμ +ἐγέννησεν +τὸν +Ἀμιναδάβ, +δὲ +Ἀμιναδὰβ +ἐγέννησεν +τὸν +Ναασσών, +δὲ +Ναασσὼν +ἐγέννησεν +τὸν +Σαλμών, +δὲ +Σαλμὼν +ἐγέννησεν +τὸν +Βόες +ἐκ +τῆς +Ῥαχάβ, +δὲ +Βόες +ἐγέννησεν +τὸν +Ἰωβὴδ +ἐκ +τῆς +Ῥούθ, +δὲ +Ἰωβὴδ +ἐγέννησεν +τὸν +Ἰεσσαί, +δὲ +Ἰεσσαὶ +ἐγέννησεν +τὸν +Δαυεὶδ +τὸν +βασιλέα. +δὲ +Δαυεὶδ +ἐγέννησεν +τὸν +Σολομῶνα +ἐκ +τῆς +τοῦ +Οὐρίου, +δὲ +Σολομὼν +ἐγέννησεν +τὸν +Ῥοβοάμ, +δὲ +Ῥοβοὰμ +ἐγέννησεν +τὸν +Ἀβιά, +δὲ +Ἀβιὰ +ἐγέννησεν +τὸν +Ἀσάφ, +δὲ +Ἀσὰφ +ἐγέννησεν +τὸν +Ἰωσαφάτ, +δὲ +Ἰωσαφὰτ +ἐγέννησεν +τὸν +Ἰωράμ, +δὲ +Ἰωρὰμ +ἐγέννησεν +τὸν +Ὀζείαν, +δὲ +Ὀζείας +ἐγέννησεν +τὸν +Ἰωαθάμ, +δὲ +Ἰωαθὰμ +ἐγέννησεν +τὸν +Ἄχαζ, +δὲ +Ἄχαζ +ἐγέννησεν +τὸν +Ἐζεκίαν, +δὲ +Ἐζεκίας +ἐγέννησεν +τὸν +Μανασσῆ, +δὲ +Μανασσῆς +ἐγέννησεν +τὸν +Ἀμώς, +δὲ +Ἀμὼς +ἐγέννησεν +τὸν +Ἰωσείαν, +δὲ +Ἰωσείας +ἐγέννησεν +τὸν +Ἰεχονίαν +καὶ +τοὺς +ἀδελφοὺς +αὐτοῦ +ἐπὶ +τῆς +μετοικεσίας +Βαβυλῶνος. +δὲ +Μετὰ +τὴν +μετοικεσίαν +Βαβυλῶνος +Ἰεχονίας +ἐγέννησεν +τὸν +Σαλαθιήλ, +δὲ +Σαλαθιὴλ +ἐγέννησεν +τὸν +Ζοροβαβέλ, +δὲ +Ζοροβαβὲλ +ἐγέννησεν +τὸν +Ἀβιούδ, +δὲ +Ἀβιοὺδ +ἐγέννησεν +τὸν +Ἐλιακείμ, +δὲ +Ἐλιακεὶμ +ἐγέννησεν +τὸν +Ἀζώρ, +δὲ +Ἀζὼρ +ἐγέννησεν +τὸν +Σαδώκ, +δὲ +Σαδὼκ +ἐγέννησεν +τὸν +Ἀχείμ, +δὲ +Ἀχεὶμ +ἐγέννησεν +τὸν +Ἐλιούδ, +δὲ +Ἐλιοὺδ +ἐγέννησεν +τὸν +Ἐλεάζαρ, +δὲ +Ἐλεάζαρ +ἐγέννησεν +τὸν +Μαθθάν, +δὲ +Μαθθὰν +ἐγέννησεν +τὸν +Ἰακώβ, +δὲ +Ἰακὼβ +ἐγέννησεν +τὸν +Ἰωσὴφ +τὸν +ἄνδρα +Μαρίας, +ἐξ +ἧς +ἐγεννήθη +Ἰησοῦς +ὁ +λεγόμενος +Χριστός. +οὖν +Πᾶσαι +αἱ +γενεαὶ +ἀπὸ +Ἀβραὰμ +ἕως +Δαυεὶδ +γενεαὶ +δεκατέσσαρες, +καὶ +ἀπὸ +Δαυεὶδ +ἕως +τῆς +μετοικεσίας +Βαβυλῶνος +γενεαὶ +δεκατέσσαρες, +καὶ +ἀπὸ +τῆς +μετοικεσίας +Βαβυλῶνος +ἕως +τοῦ +Χριστοῦ +γενεαὶ +δεκατέσσαρες. +δὲ +Τοῦ +Ἰησοῦ +Χριστοῦ +ἡ +γένεσις +οὕτως +ἦν. +μνηστευθείσης +τῆς +μητρὸς +αὐτοῦ +Μαρίας +τῷ +Ἰωσήφ, +πρὶν +ἢ +συνελθεῖν +αὐτοὺς +εὑρέθη +ἐν +γαστρὶ +ἔχουσα +ἐκ +Πνεύματος +Ἁγίου. +δὲ +Ἰωσὴφ +ὁ +ἀνὴρ +αὐτῆς, +δίκαιος +ὢν +καὶ +μὴ +θέλων +αὐτὴν +δειγματίσαι, +ἐβουλήθη +λάθρᾳ +ἀπολῦσαι +αὐτήν. +δὲ +ταῦτα +αὐτοῦ +ἐνθυμηθέντος +ἰδοὺ +ἄγγελος +Κυρίου +κατ’ +ὄναρ +ἐφάνη +αὐτῷ +λέγων +Ἰωσὴφ +υἱὸς +Δαυείδ, +μὴ +φοβηθῇς +παραλαβεῖν +Μαρίαν +τὴν +γυναῖκά +σου, +γὰρ +τὸ +ἐν +αὐτῇ +γεννηθὲν +ἐκ +Πνεύματός +Ἁγίου· +ἐστιν +δὲ +τέξεται +υἱὸν +καὶ +καλέσεις +τὸ +ὄνομα +αὐτοῦ +Ἰησοῦν· +γὰρ +αὐτὸς +σώσει +τὸν +λαὸν +αὐτοῦ +ἀπὸ +τῶν +ἁμαρτιῶν +αὐτῶν. +δὲ +Τοῦτο +ὅλον +γέγονεν +ἵνα +πληρωθῇ +τὸ +ῥηθὲν +ὑπὸ +Κυρίου +διὰ +τοῦ +προφήτου +λέγοντος +Ἰδοὺ +ἡ +παρθένος +ἐν +γαστρὶ +ἕξει +καὶ +τέξεται +υἱόν, +καὶ +καλέσουσιν +τὸ +ὄνομα +αὐτοῦ +Ἐμμανουήλ, +ὅ +ἐστιν +μεθερμηνευόμενον +Μεθ’ +ἡμῶν +ὁ +Θεός. +δὲ +ὁ +Ἰωσὴφ +ἐγερθεὶς +ἀπὸ +τοῦ +ὕπνου +ἐποίησεν +ὡς +προσέταξεν +αὐτῷ +ὁ +ἄγγελος +Κυρίου, +καὶ +παρέλαβεν +τὴν +γυναῖκα +αὐτοῦ· +καὶ +οὐκ +ἐγίνωσκεν +αὐτὴν +ἕως +οὗ +ἔτεκεν +υἱόν· +καὶ +ἐκάλεσεν +τὸ +ὄνομα +αὐτοῦ +Ἰησοῦν. +δὲ +Τοῦ +Ἰησοῦ +γεννηθέντος +ἐν +Βηθλέεμ +τῆς +Ἰουδαίας +ἐν +ἡμέραις +Ἠρῴδου +τοῦ +βασιλέως, +ἰδοὺ +μάγοι +ἀπὸ +ἀνατολῶν +παρεγένοντο +εἰς +Ἱεροσόλυμα +λέγοντες +Ποῦ +ἐστιν +ὁ +τεχθεὶς +βασιλεὺς +τῶν +Ἰουδαίων; +γὰρ +εἴδομεν +αὐτοῦ +τὸν +ἀστέρα +ἐν +τῇ +ἀνατολῇ +καὶ +ἤλθομεν +προσκυνῆσαι +αὐτῷ. +δὲ +ἀκούσας +ὁ +βασιλεὺς +Ἠρῴδης +ἐταράχθη, +καὶ +πᾶσα +Ἱεροσόλυμα +μετ’ +αὐτοῦ, +καὶ +συναγαγὼν +πάντας +τοὺς +ἀρχιερεῖς +καὶ +γραμματεῖς +τοῦ +λαοῦ +ἐπυνθάνετο +παρ’ +αὐτῶν +ποῦ +ὁ +Χριστὸς +γεννᾶται. +δὲ +οἱ +εἶπαν +αὐτῷ· +Ἐν +Βηθλέεμ +τῆς +Ἰουδαίας· +γὰρ +οὕτως +γέγραπται +διὰ +τοῦ +προφήτου· +Καὶ +Βηθλέεμ +γῆ +Ἰούδα, +σύ, +οὐδαμῶς +ἐλαχίστη +εἶ +ἐν +τοῖς +ἡγεμόσιν +Ἰούδα· +γὰρ +ἐκ +σοῦ +ἐξελεύσεται +ἡγούμενος, +ὅστις +ποιμανεῖ +τὸν +λαόν +μου +τὸν +Ἰσραήλ. +Τότε +Ἠρῴδης +λάθρᾳ +καλέσας +τοὺς +μάγους +ἠκρίβωσεν +παρ’ +αὐτῶν +τὸν +χρόνον +τοῦ +φαινομένου +ἀστέρος, +καὶ +πέμψας +αὐτοὺς +εἰς +Βηθλέεμ +εἶπεν· +Πορευθέντες +ἐξετάσατε +ἀκριβῶς +περὶ +τοῦ +παιδίου· +δὲ +ἐπὰν +εὕρητε, +ἀπαγγείλατέ +μοι, +ὅπως +κἀγὼ +ἐλθὼν +προσκυνήσω +αὐτῷ. +δὲ +οἱ +ἀκούσαντες +τοῦ +βασιλέως +ἐπορεύθησαν· +καὶ +ἰδοὺ +ὁ +ἀστὴρ, +ὃν +εἶδον +ἐν +τῇ +ἀνατολῇ, +προῆγεν +αὐτούς +ἕως +ἐλθὼν +ἐστάθη +ἐπάνω +οὗ +ἦν +τὸ +παιδίον. +δὲ +ἰδόντες +τὸν +ἀστέρα +ἐχάρησαν +χαρὰν +μεγάλην +σφόδρα. +καὶ +ἐλθόντες +εἰς +τὴν +οἰκίαν +εἶδον +τὸ +παιδίον +μετὰ +Μαρίας +τῆς +μητρὸς +αὐτοῦ, +καὶ +πεσόντες +προσεκύνησαν +αὐτῷ, +καὶ +ἀνοίξαντες +τοὺς +θησαυροὺς +αὐτῶν +προσήνεγκαν +αὐτῷ +δῶρα, +χρυσὸν +καὶ +λίβανον +καὶ +σμύρναν. +καὶ +χρηματισθέντες +κατ’ +ὄναρ +μὴ +ἀνακάμψαι +πρὸς +Ἠρῴδην, +δι’ +ἄλλης +ὁδοῦ +ἀνεχώρησαν +εἰς +τὴν +χώραν +αὐτῶν. +δὲ +Ἀναχωρησάντων +αὐτῶν, +ἰδοὺ +ἄγγελος +κυρίου +φαίνεται +κατ’ +ὄναρ +τῷ +Ἰωσὴφ +λέγων +Ἐγερθεὶς +παράλαβε +τὸ +παιδίον +καὶ +τὴν +μητέρα +αὐτοῦ +καὶ +φεῦγε +εἰς +Αἴγυπτον, +καὶ +ἴσθι +ἐκεῖ +ἕως +ἂν +εἴπω +σοι· +γὰρ +μέλλει +Ἠρῴδης +ζητεῖν +τὸ +παιδίον +τοῦ +ἀπολέσαι +αὐτό. +δὲ +ὁ +ἐγερθεὶς +παρέλαβεν +τὸ +παιδίον +καὶ +τὴν +μητέρα +αὐτοῦ +νυκτὸς +καὶ +ἀνεχώρησεν +εἰς +Αἴγυπτον, +καὶ +ἦν +ἐκεῖ +ἕως +τῆς +τελευτῆς +Ἠρῴδου· +ἵνα +πληρωθῇ +τὸ +ῥηθὲν +ὑπὸ +κυρίου +διὰ +τοῦ +προφήτου +λέγοντος +Ἐξ +Αἰγύπτου +ἐκάλεσα +τὸν +υἱόν +μου. +Τότε +Ἠρῴδης +ἰδὼν +ὅτι +ἐνεπαίχθη +ὑπὸ +τῶν +μάγων +ἐθυμώθη +λίαν, +καὶ +ἀποστείλας +ἀνεῖλεν +πάντας +τοὺς +παῖδας +τοὺς +ἐν +Βηθλέεμ +καὶ +ἐν +πᾶσι +τοῖς +ὁρίοις +αὐτῆς +ἀπὸ +διετοῦς +καὶ +κατωτέρω, +κατὰ +τὸν +χρόνον +ὃν +ἠκρίβωσεν +παρὰ +τῶν +μάγων. +τότε +ἐπληρώθη +τὸ +ῥηθὲν +διὰ +Ἰερεμίου +τοῦ +προφήτου +λέγοντος +ἐν +Ῥαμὰ +ἠκούσθη, +Φωνὴ +κλαυθμὸς +καὶ +ὀδυρμὸς +πολύς· +Ῥαχὴλ +κλαίουσα +τὰ +τέκνα +αὐτῆς, +καὶ +οὐκ +ἤθελεν +παρακληθῆναι +ὅτι +οὐκ +εἰσίν. +δὲ +Τελευτήσαντος +τοῦ +Ἠρῴδου, +ἰδοὺ +ἄγγελος +Κυρίου +φαίνεται +κατ’ +ὄναρ +τῷ +Ἰωσὴφ +ἐν +Αἰγύπτῳ +λέγων +Ἐγερθεὶς +παράλαβε +τὸ +παιδίον +καὶ +τὴν +μητέρα +αὐτοῦ +καὶ +πορεύου +εἰς +γῆν +Ἰσραήλ· +γὰρ +τεθνήκασιν +οἱ +ζητοῦντες +τὴν +ψυχὴν +τοῦ +παιδίου. +δὲ +ὁ +ἐγερθεὶς +παρέλαβεν +τὸ +παιδίον +καὶ +τὴν +μητέρα +αὐτοῦ +καὶ +εἰσῆλθεν +εἰς +γῆν +Ἰσραήλ. +δὲ +ἀκούσας +ὅτι +Ἀρχέλαος +βασιλεύει +τῆς +Ἰουδαίας +ἀντὶ +τοῦ +πατρὸς +αὐτοῦ +Ἠρῴδου +ἐφοβήθη +ἐκεῖ +ἀπελθεῖν· +δὲ +χρηματισθεὶς +κατ’ +ὄναρ +ἀνεχώρησεν +εἰς +τὰ +μέρη +τῆς +Γαλιλαίας, +καὶ +ἐλθὼν +κατῴκησεν +εἰς +πόλιν +λεγομένην +Ναζαρέτ· +ὅπως +πληρωθῇ +τὸ +ῥηθὲν +διὰ +τῶν +προφητῶν +ὅτι +Ναζωραῖος +κληθήσεται. +δὲ +Ἐν +ταῖς +ἡμέραις +ἐκείναις +παραγίνεται +Ἰωάνης +ὁ +βαπτιστὴς +κηρύσσων +ἐν +τῇ +ἐρήμῳ +τῆς +Ἰουδαίας, +λέγων +Μετανοεῖτε· +γὰρ +ἤγγικεν +ἡ +βασιλεία +τῶν +οὐρανῶν. +γάρ +οὗτος +ἐστιν +ὁ +ῥηθεὶς +διὰ +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Φωνὴ +βοῶντος +ἐν +τῇ +ἐρήμῳ +Ἑτοιμάσατε +τὴν +ὁδὸν +Κυρίου, +εὐθείας +ποιεῖτε +τὰς +τρίβους +αὐτοῦ. +δὲ +Αὐτὸς +ὁ +Ἰωάνης +εἶχεν +τὸ +ἔνδυμα +αὐτοῦ +ἀπὸ +τριχῶν +καμήλου +καὶ +ζώνην +δερματίνην +περὶ +τὴν +ὀσφὺν +αὐτοῦ· +δὲ +ἡ +τροφὴ +αὐτοῦ +ἦν +ἀκρίδες +καὶ +μέλι +ἄγριον. +Τότε +ἐξεπορεύετο +πρὸς +αὐτὸν +Ἱεροσόλυμα +καὶ +πᾶσα +ἡ +Ἰουδαία +καὶ +πᾶσα +ἡ +περίχωρος +τοῦ +Ἰορδάνου, +καὶ +ἐβαπτίζοντο +ἐν +τῷ +Ἰορδάνῃ +ποταμῷ +ὑπ’ +αὐτοῦ +ἐξομολογούμενοι +τὰς +ἁμαρτίας +αὐτῶν. +δὲ +Ἰδὼν +πολλοὺς +τῶν +Φαρισαίων +καὶ +Σαδδουκαίων +ἐρχομένους +ἐπὶ +τὸ +βάπτισμα +εἶπεν +αὐτοῖς +Γεννήματα +ἐχιδνῶν, +τίς +ὑπέδειξεν +ὑμῖν +φυγεῖν +ἀπὸ +τῆς +μελλούσης +ὀργῆς; +οὖν +ποιήσατε +καρπὸν +ἄξιον +τῆς +μετανοίας· +καὶ +μὴ +δόξητε +λέγειν +ἐν +ἑαυτοῖς +Πατέρα +ἔχομεν +τὸν +Ἀβραάμ· +γὰρ +λέγω +ὑμῖν +ὅτι +δύναται +ὁ +Θεὸς +ἐκ +τῶν +λίθων +τούτων +ἐγεῖραι +τέκνα +τῷ +Ἀβραάμ. +δὲ +ἤδη +ἡ +ἀξίνη +πρὸς +τὴν +ῥίζαν +τῶν +δένδρων +κεῖται· +οὖν +πᾶν +δένδρον +μὴ +ποιοῦν +καρπὸν +καλὸν +ἐκκόπτεται +καὶ +εἰς +πῦρ +βάλλεται. +μὲν +ἐγὼ +ὑμᾶς +βαπτίζω +ἐν +ὕδατι +εἰς +μετάνοιαν· +δὲ +ὁ +ὀπίσω +μου +ἐρχόμενος +ἰσχυρότερός +μού +ἐστιν, +οὗ +οὐκ +εἰμὶ +ἱκανὸς +τὰ +ὑποδήματα +βαστάσαι· +αὐτὸς +ὑμᾶς +βαπτίσει +ἐν +Πνεύματι +Ἁγίῳ +καὶ +πυρί· +οὗ +τὸ +πτύον +ἐν +τῇ +χειρὶ +αὐτοῦ, +καὶ +διακαθαριεῖ +τὴν +ἅλωνα +αὐτοῦ, +καὶ +συνάξει +τὸν +σῖτον +αὐτοῦ +εἰς +τὴν +ἀποθήκην, +δὲ +τὸ +ἄχυρον +κατακαύσει +πυρὶ +ἀσβέστῳ. +Τότε +παραγίνεται +ὁ +Ἰησοῦς +ἀπὸ +τῆς +Γαλιλαίας +ἐπὶ +τὸν +Ἰορδάνην +πρὸς +τὸν +Ἰωάνην +τοῦ +βαπτισθῆναι +ὑπ’ +αὐτοῦ. +δὲ +ὁ +διεκώλυεν +αὐτὸν +λέγων +Ἐγὼ +χρείαν +ἔχω +ὑπὸ +σοῦ +βαπτισθῆναι, +καὶ +σὺ +ἔρχῃ +πρός +με; +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἄφες +ἄρτι· +γὰρ +οὕτως +πρέπον +ἐστὶν +ἡμῖν +πληρῶσαι +πᾶσαν +δικαιοσύνην. +τότε +ἀφίησιν +αὐτόν. +δὲ +βαπτισθεὶς +ὁ +Ἰησοῦς +εὐθὺς +ἀνέβη +ἀπὸ +τοῦ +ὕδατος· +καὶ +ἰδοὺ +ἠνεῴχθησαν +οἱ +οὐρανοί, +καὶ +εἶδεν +Πνεῦμα +Θεοῦ +καταβαῖνον +ὡσεὶ +περιστερὰν +ἐρχόμενον +ἐπ’ +αὐτόν· +καὶ +ἰδοὺ +φωνὴ +ἐκ +τῶν +οὐρανῶν +λέγουσα +Οὗτός +ἐστιν +ὁ +Υἱός +μου +ὁ +ἀγαπητός, +ἐν +ᾧ +εὐδόκησα. +Τότε +ὁ +Ἰησοῦς +ἀνήχθη +εἰς +τὴν +ἔρημον +ὑπὸ +τοῦ +Πνεύματος, +πειρασθῆναι +ὑπὸ +τοῦ +διαβόλου. +καὶ +νηστεύσας +ἡμέρας +τεσσεράκοντα +καὶ +τεσσεράκοντα +νύκτας +ὕστερον +ἐπείνασεν. +καὶ +προσελθὼν +ὁ +πειράζων +εἶπεν +αὐτῷ +Εἰ +εἶ +Υἱὸς +τοῦ +Θεοῦ, +εἰπὲ +ἵνα +οἱ +λίθοι +οὗτοι +ἄρτοι +γένωνται. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Γέγραπται +Οὐκ +ἐπ’ +ἄρτῳ +μόνῳ +ζήσεται +ὁ +ἄνθρωπος, +ἀλλ’ +ἐπὶ +παντὶ +ῥήματι +ἐκπορευομένῳ +διὰ +στόματος +Θεοῦ. +Τότε +παραλαμβάνει +αὐτὸν +ὁ +διάβολος +εἰς +τὴν +ἁγίαν +πόλιν, +καὶ +ἔστησεν +αὐτὸν +ἐπὶ +τὸ +πτερύγιον +τοῦ +ἱεροῦ, +καὶ +λέγει +αὐτῷ +Εἰ +εἶ +Υἱὸς +τοῦ +Θεοῦ, +βάλε +σεαυτὸν +κάτω· +γὰρ +γέγραπται +ὅτι +Τοῖς +ἀγγέλοις +αὐτοῦ +ἐντελεῖται +περὶ +σοῦ +καὶ +ἐπὶ +χειρῶν +ἀροῦσίν +σε, +μή +ποτε +προσκόψῃς +πρὸς +λίθον +τὸν +πόδα +σου. +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Πάλιν +γέγραπται +Οὐκ +ἐκπειράσεις +Κύριον +τὸν +Θεόν +σου. +Πάλιν +παραλαμβάνει +αὐτὸν +ὁ +διάβολος +εἰς +ὄρος +ὑψηλὸν +λίαν, +καὶ +δείκνυσιν +αὐτῷ +πάσας +τὰς +βασιλείας +τοῦ +κόσμου +καὶ +τὴν +δόξαν +αὐτῶν, +καὶ +εἶπεν +αὐτῷ +Ταῦτά +πάντα +σοι +δώσω, +ἐὰν +πεσὼν +προσκυνήσῃς +μοι. +τότε +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ὕπαγε, +Σατανᾶ· +γάρ +γέγραπται +Κύριον +τὸν +θεόν +σου +προσκυνήσεις +καὶ +αὐτῷ +μόνῳ +λατρεύσεις. +Τότε +ἀφίησιν +αὐτὸν +ὁ +διάβολος, +καὶ +ἰδοὺ +ἄγγελοι +προσῆλθον +καὶ +διηκόνουν +αὐτῷ. +δὲ +Ἀκούσας +ὅτι +Ἰωάνης +παρεδόθη +ἀνεχώρησεν +εἰς +τὴν +Γαλιλαίαν. +καὶ +καταλιπὼν +τὴν +Ναζαρὰ +ἐλθὼν +κατῴκησεν +εἰς +Καφαρναοὺμ +τὴν +παραθαλασσίαν +ἐν +ὁρίοις +Ζαβουλὼν +καὶ +Νεφθαλείμ· +ἵνα +πληρωθῇ +τὸ +ῥηθὲν +διὰ +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Γῆ +Ζαβουλὼν +καὶ +γῆ +Νεφθαλείμ, +ὁδὸν +θαλάσσης, +πέραν +τοῦ +Ἰορδάνου, +Γαλιλαία +τῶν +ἐθνῶν, +ὁ +λαὸς +ὁ +καθήμενος +ἐν +σκοτίᾳ +φῶς +μέγα, +εἶδεν +καὶ +τοῖς +καθημένοις +ἐν +χώρᾳ +καὶ +σκιᾷ +θανάτου +φῶς +ἀνέτειλεν +αὐτοῖς. +Ἀπὸ +τότε +ἤρξατο +ὁ +Ἰησοῦς +κηρύσσειν +καὶ +λέγειν +Μετανοεῖτε, +γὰρ +ἤγγικεν +ἡ +βασιλεία +τῶν +οὐρανῶν. +δὲ +Περιπατῶν +παρὰ +τὴν +θάλασσαν +τῆς +Γαλιλαίας +εἶδεν +δύο +ἀδελφούς, +Σίμωνα +τὸν +λεγόμενον +Πέτρον +καὶ +Ἀνδρέαν +τὸν +ἀδελφὸν +αὐτοῦ, +βάλλοντας +ἀμφίβληστρον +εἰς +τὴν +θάλασσαν· +γὰρ +ἦσαν +ἁλεεῖς. +καὶ +λέγει +αὐτοῖς +Δεῦτε +ὀπίσω +μου, +καὶ +ποιήσω +ὑμᾶς +ἁλεεῖς +ἀνθρώπων. +δὲ +οἱ +εὐθέως +ἀφέντες +τὰ +δίκτυα +ἠκολούθησαν +αὐτῷ. +Καὶ +προβὰς +ἐκεῖθεν +εἶδεν +ἄλλους +δύο +ἀδελφούς, +Ἰάκωβον +τὸν +τοῦ +Ζεβεδαίου +καὶ +Ἰωάνην +τὸν +ἀδελφὸν +αὐτοῦ, +ἐν +τῷ +πλοίῳ +μετὰ +Ζεβεδαίου +τοῦ +πατρὸς +αὐτῶν +καταρτίζοντας +τὰ +δίκτυα +αὐτῶν· +καὶ +ἐκάλεσεν +αὐτούς. +δὲ +οἱ +εὐθέως +ἀφέντες +τὸ +πλοῖον +καὶ +τὸν +πατέρα +αὐτῶν +ἠκολούθησαν +αὐτῷ. +Καὶ +περιῆγεν +ἐν +ὅλῃ +τῇ +Γαλιλαίᾳ, +διδάσκων +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +καὶ +κηρύσσων +τὸ +εὐαγγέλιον +τῆς +βασιλείας +καὶ +θεραπεύων +πᾶσαν +νόσον +καὶ +πᾶσαν +μαλακίαν +ἐν +τῷ +λαῷ. +καὶ +ἀπῆλθεν +ἡ +ἀκοὴ +αὐτοῦ +εἰς +ὅλην +τὴν +Συρίαν· +καὶ +προσήνεγκαν +αὐτῷ +πάντας +τοὺς +κακῶς +ἔχοντας +ποικίλαις +νόσοις +καὶ +βασάνοις +συνεχομένους, +δαιμονιζομένους +καὶ +σεληνιαζομένους +καὶ +παραλυτικούς, +καὶ +ἐθεράπευσεν +αὐτούς. +καὶ +ἠκολούθησαν +αὐτῷ +ὄχλοι +πολλοὶ +ἀπὸ +τῆς +Γαλιλαίας +καὶ +Δεκαπόλεως +καὶ +Ἱεροσολύμων +καὶ +Ἰουδαίας +καὶ +πέραν +τοῦ +Ἰορδάνου. +δὲ +Ἰδὼν +τοὺς +ὄχλους +ἀνέβη +εἰς +τὸ +ὄρος· +καὶ +καθίσαντος +αὐτοῦ +προσῆλθαν +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ· +καὶ +ἀνοίξας +τὸ +στόμα +αὐτοῦ +ἐδίδασκεν +αὐτοὺς +λέγων +Μακάριοι +οἱ +πτωχοὶ +τῷ +πνεύματι, +ὅτι +αὐτῶν +ἐστιν +ἡ +βασιλεία +τῶν +οὐρανῶν. +μακάριοι +οἱ +πενθοῦντες, +ὅτι +αὐτοὶ +παρακληθήσονται. +μακάριοι +οἱ +πραεῖς, +ὅτι +αὐτοὶ +κληρονομήσουσιν +τὴν +γῆν. +μακάριοι +οἱ +πεινῶντες +καὶ +διψῶντες +τὴν +δικαιοσύνην, +ὅτι +αὐτοὶ +χορτασθήσονται. +μακάριοι +οἱ +ἐλεήμονες, +ὅτι +αὐτοὶ +ἐλεηθήσονται. +μακάριοι +οἱ +καθαροὶ +τῇ +καρδίᾳ, +ὅτι +αὐτοὶ +τὸν +Θεὸν +ὄψονται. +μακάριοι +οἱ +εἰρηνοποιοί, +ὅτι +αὐτοὶ +υἱοὶ +Θεοῦ +κληθήσονται. +μακάριοι +οἱ +δεδιωγμένοι +ἕνεκεν +δικαιοσύνης, +ὅτι +αὐτῶν +ἐστιν +ἡ +βασιλεία +τῶν +οὐρανῶν. +μακάριοί +ἐστε +ὅταν +ὀνειδίσωσιν +ὑμᾶς +καὶ +διώξωσιν +καὶ +εἴπωσιν +πᾶν +πονηρὸν +καθ’ +ὑμῶν +ψευδόμενοι +ἕνεκεν +ἐμοῦ. +χαίρετε +καὶ +ἀγαλλιᾶσθε, +ὅτι +ὁ +μισθὸς +ὑμῶν +πολὺς +ἐν +τοῖς +οὐρανοῖς· +γὰρ +οὕτως +ἐδίωξαν +τοὺς +προφήτας +τοὺς +πρὸ +ὑμῶν. +Ὑμεῖς +ἐστε +τὸ +ἅλας +τῆς +γῆς· +δὲ +ἐὰν +τὸ +ἅλας +μωρανθῇ, +ἐν +τίνι +ἁλισθήσεται; +εἰς +οὐδὲν +ἰσχύει +ἔτι +εἰ +μὴ +βληθὲν +ἔξω +καταπατεῖσθαι +ὑπὸ +τῶν +ἀνθρώπων. +Ὑμεῖς +ἐστε +τὸ +φῶς +τοῦ +κόσμου. +οὐ +δύναται +πόλις +κρυβῆναι +ἐπάνω +ὄρους +κειμένη· +οὐδὲ +καίουσιν +λύχνον +καὶ +τιθέασιν +αὐτὸν +ὑπὸ +τὸν +μόδιον, +ἀλλ’ +ἐπὶ +τὴν +λυχνίαν, +καὶ +λάμπει +πᾶσιν +τοῖς +ἐν +τῇ +οἰκίᾳ. +οὕτως +λαμψάτω +τὸ +φῶς +ὑμῶν +ἔμπροσθεν +τῶν +ἀνθρώπων, +ὅπως +ἴδωσιν +ὑμῶν +τὰ +καλὰ +ἔργα +καὶ +δοξάσωσιν +τὸν +πατέρα +ὑμῶν +τὸν +ἐν +τοῖς +οὐρανοῖς. +Μὴ +νομίσητε +ὅτι +ἦλθον +καταλῦσαι +τὸν +νόμον +ἢ +τοὺς +προφήτας· +οὐκ +ἦλθον +καταλῦσαι +ἀλλὰ +πληρῶσαι· +γὰρ +ἀμὴν +λέγω +ὑμῖν, +ἕως +ἂν +παρέλθῃ +ὁ +οὐρανὸς +καὶ +ἡ +γῆ, +ἰῶτα +ἓν +ἢ +μία +κεραία +οὐ +μὴ +παρέλθῃ +ἀπὸ +τοῦ +νόμου, +ἕως +ἂν +πάντα +γένηται. +οὖν +ἐὰν +ὃς +λύσῃ +μίαν +τῶν +ἐντολῶν +τούτων +τῶν +ἐλαχίστων +καὶ +διδάξῃ +οὕτως +τοὺς +ἀνθρώπους, +ἐλάχιστος +κληθήσεται +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν· +δ’ +ἂν +ὃς +ποιήσῃ +καὶ +διδάξῃ, +οὗτος +μέγας +κληθήσεται +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν. +γὰρ +λέγω +ὑμῖν +ὅτι +ἐὰν +μὴ +περισσεύσῃ +ὑμῶν +ἡ +δικαιοσύνη +πλεῖον +τῶν +γραμματέων +καὶ +Φαρισαίων, +οὐ +μὴ +εἰσέλθητε +εἰς +τὴν +βασιλείαν +τῶν +οὐρανῶν. +Ἠκούσατε +ὅτι +ἐρρέθη +τοῖς +ἀρχαίοις +Οὐ +φονεύσεις· +δ’ +ἂν +ὃς +φονεύσῃ, +ἔνοχος +ἔσται +τῇ +κρίσει. +δὲ +ἐγὼ +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +ὀργιζόμενος +τῷ +ἀδελφῷ +αὐτοῦ +ἔνοχος +ἔσται +τῇ +κρίσει· +δ’ +ἂν +ὃς +εἴπῃ +τῷ +ἀδελφῷ +αὐτοῦ +Ῥακά, +ἔνοχος +ἔσται +τῷ +συνεδρίῳ· +δ’ +ἂν +ὃς +εἴπῃ +Μωρέ, +ἔνοχος +ἔσται +εἰς +τὴν +γέενναν +τοῦ +πυρός. +οὖν +ἐὰν +προσφέρῃς +τὸ +δῶρόν +σου +ἐπὶ +τὸ +θυσιαστήριον +κἀκεῖ +μνησθῇς +ὅτι +ὁ +ἀδελφός +σου +ἔχει +τι +κατὰ +σοῦ, +ἄφες +ἐκεῖ +τὸ +δῶρόν +σου +ἔμπροσθεν +τοῦ +θυσιαστηρίου +καὶ +ὕπαγε +πρῶτον +διαλλάγηθι +τῷ +ἀδελφῷ +σου, +καὶ +τότε +ἐλθὼν +πρόσφερε +τὸ +δῶρόν +σου. +ἴσθι +εὐνοῶν +τῷ +ἀντιδίκῳ +σου +ταχὺ +ἕως +ὅτου +εἶ +μετ’ +αὐτοῦ +ἐν +τῇ +ὁδῷ· +μή +ποτέ +σε +παραδῷ +ὁ +ἀντίδικος +τῷ +κριτῇ, +καὶ +ὁ +κριτὴς +τῷ +ὑπηρέτῃ, +καὶ +εἰς +φυλακὴν +βληθήσῃ· +ἀμὴν +λέγω +σοι, +οὐ +μὴ +ἐξέλθῃς +ἐκεῖθεν +ἕως +ἂν +ἀποδῷς +τὸν +ἔσχατον +κοδράντην. +Ἠκούσατε +ὅτι +ἐρρέθη +Οὐ +μοιχεύσεις. +δὲ +ἐγὼ +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +βλέπων +γυναῖκα +πρὸς +τὸ +ἐπιθυμῆσαι +αὐτὴν +ἤδη +ἐμοίχευσεν +αὐτὴν +ἐν +τῇ +καρδίᾳ +αὐτοῦ. +δὲ +εἰ +ὁ +ὀφθαλμός +σου +ὁ +δεξιὸς +σκανδαλίζει +σε, +ἔξελε +αὐτὸν +καὶ +βάλε +ἀπὸ +σοῦ· +γάρ +συμφέρει +σοι +ἵνα +ἀπόληται +ἓν +τῶν +μελῶν +σου +καὶ +μὴ +ὅλον +τὸ +σῶμά +σου +βληθῇ +εἰς +γέενναν. +καὶ +εἰ +ἡ +δεξιά +σου +χεὶρ +σκανδαλίζει +σε, +ἔκκοψον +αὐτὴν +καὶ +βάλε +ἀπὸ +σοῦ· +γάρ +συμφέρει +σοι +ἵνα +ἀπόληται +ἓν +τῶν +μελῶν +σου +καὶ +μὴ +ὅλον +τὸ +σῶμά +σου +εἰς +γέενναν +ἀπέλθῃ. +δέ +Ἐρρέθη +ἂν +Ὃς +ἀπολύσῃ +τὴν +γυναῖκα +αὐτοῦ, +δότω +αὐτῇ +ἀποστάσιον. +δὲ +ἐγὼ +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +ἀπολύων +τὴν +γυναῖκα +αὐτοῦ +παρεκτὸς +λόγου +πορνείας +ποιεῖ +αὐτὴν +μοιχευθῆναι, +καὶ +ἐὰν +ὃς +ἀπολελυμένην +γαμήσῃ +μοιχᾶται. +Πάλιν +ἠκούσατε +ὅτι +ἐρρέθη +τοῖς +ἀρχαίοις +Οὐκ +ἐπιορκήσεις, +δὲ +ἀποδώσεις +τῷ +Κυρίῳ +τοὺς +ὅρκους +σου. +δὲ +ἐγὼ +λέγω +ὑμῖν +μὴ +ὀμόσαι +ὅλως· +μήτε +ἐν +τῷ +οὐρανῷ, +ὅτι +ἐστὶν +θρόνος +τοῦ +Θεοῦ· +μήτε +ἐν +τῇ +γῇ, +ὅτι +ἐστιν +ὑποπόδιόν +τῶν +ποδῶν +αὐτοῦ· +μήτε +εἰς +Ἱεροσόλυμα, +ὅτι +ἐστὶν +πόλις +τοῦ +μεγάλου +Βασιλέως· +μήτε +ἐν +τῇ +κεφαλῇ +σου +ὀμόσῃς, +ὅτι +οὐ +δύνασαι +μίαν +τρίχα +ποιῆσαι +λευκὴν +ἢ +μέλαιναν. +δὲ +ἔστω +ὁ +λόγος +ὑμῶν +ναὶ +ναί, +οὒ +οὔ· +δὲ +τὸ +περισσὸν +τούτων +ἐκ +τοῦ +πονηροῦ +ἐστιν. +Ἠκούσατε +ὅτι +ἐρρέθη +Ὀφθαλμὸν +ἀντὶ +ὀφθαλμοῦ +καὶ +ὀδόντα +ἀντὶ +ὀδόντος. +δὲ +ἐγὼ +λέγω +ὑμῖν +μὴ +ἀντιστῆναι +τῷ +πονηρῷ· +ἀλλ’ +ὅστις +σε +ῥαπίζει +εἰς +τὴν +δεξιὰν +σιαγόνα +σου, +στρέψον +αὐτῷ +καὶ +τὴν +ἄλλην· +καὶ +τῷ +θέλοντί +σοι +κριθῆναι +καὶ +τὸν +χιτῶνά +σου +λαβεῖν, +ἄφες +αὐτῷ +καὶ +τὸ +ἱμάτιον· +καὶ +ὅστις +σε +ἀγγαρεύσει +μίλιον +ἕν, +ὕπαγε +μετ’ +αὐτοῦ +δύο. +τῷ +αἰτοῦντί +σε +δός, +καὶ +τὸν +θέλοντα +ἀπὸ +σοῦ +δανίσασθαι +μὴ +ἀποστραφῇς. +Ἠκούσατε +ὅτι +ἐρρέθη +Ἀγαπήσεις +τὸν +πλησίον +σου +καὶ +μισήσεις +τὸν +ἐχθρόν +σου. +δὲ +ἐγὼ +λέγω +ὑμῖν, +ἀγαπᾶτε +τοὺς +ἐχθροὺς +ὑμῶν +καὶ +προσεύχεσθε +ὑπὲρ +τῶν +διωκόντων +ὑμᾶς· +ὅπως +γένησθε +υἱοὶ +τοῦ +Πατρὸς +ὑμῶν +τοῦ +ἐν +οὐρανοῖς, +ὅτι +τὸν +ἥλιον +αὐτοῦ +ἀνατέλλει +ἐπὶ +πονηροὺς +καὶ +ἀγαθοὺς +καὶ +βρέχει +ἐπὶ +δικαίους +καὶ +ἀδίκους. +γὰρ +ἐὰν +ἀγαπήσητε +τοὺς +ἀγαπῶντας +ὑμᾶς, +τίνα +μισθὸν +ἔχετε; +οὐχὶ +καὶ +οἱ +τελῶναι +τὸ +αὐτὸ +ποιοῦσιν; +καὶ +ἐὰν +ἀσπάσησθε +τοὺς +ἀδελφοὺς +ὑμῶν +μόνον, +τί +περισσὸν +ποιεῖτε; +οὐχὶ +καὶ +οἱ +ἐθνικοὶ +τὸ +αὐτὸ +ποιοῦσιν; +οὖν +Ἔσεσθε +ὑμεῖς +τέλειοι +ὡς +ὁ +Πατὴρ +ὑμῶν +ὁ +οὐράνιος +τέλειός +ἐστιν. +δὲ +Προσέχετε +τὴν +δικαιοσύνην +ὑμῶν +μὴ +ποιεῖν +ἔμπροσθεν +τῶν +ἀνθρώπων +πρὸς +τὸ +θεαθῆναι +αὐτοῖς· +δὲ +εἰ +μήγε, +μισθὸν +οὐκ +ἔχετε +παρὰ +τῷ +Πατρὶ +ὑμῶν +τῷ +ἐν +τοῖς +οὐρανοῖς. +οὖν +Ὅταν +ποιῇς +ἐλεημοσύνην, +μὴ +σαλπίσῃς +ἔμπροσθέν +σου, +ὥσπερ +οἱ +ὑποκριταὶ +ποιοῦσιν +ἐν +ταῖς +συναγωγαῖς +καὶ +ἐν +ταῖς +ῥύμαις, +ὅπως +δοξασθῶσιν +ὑπὸ +τῶν +ἀνθρώπων· +ἀμὴν +λέγω +ὑμῖν, +ἀπέχουσιν +τὸν +μισθὸν +αὐτῶν. +δὲ +σοῦ +ποιοῦντος +ἐλεημοσύνην +μὴ +γνώτω +ἡ +ἀριστερά +σου +τί +ποιεῖ +ἡ +δεξιά +σου, +ὅπως +ᾖ +σου +ἡ +ἐλεημοσύνη +ἐν +τῷ +κρυπτῷ· +καὶ +ὁ +Πατήρ +σου +ὁ +βλέπων +ἐν +τῷ +κρυπτῷ +ἀποδώσει +σοι. +Καὶ +ὅταν +προσεύχησθε, +οὐκ +ἔσεσθε +ὡς +οἱ +ὑποκριταί· +ὅτι +φιλοῦσιν +ἐν +ταῖς +συναγωγαῖς +καὶ +ἐν +ταῖς +γωνίαις +τῶν +πλατειῶν +ἑστῶτες +προσεύχεσθαι, +ὅπως +φανῶσιν +τοῖς +ἀνθρώποις· +ἀμὴν +λέγω +ὑμῖν, +ἀπέχουσιν +τὸν +μισθὸν +αὐτῶν. +δὲ +ὅταν +σὺ +προσεύχῃ, +εἴσελθε +εἰς +τὸ +ταμεῖόν +σου +καὶ +κλείσας +τὴν +θύραν +σου +πρόσευξαι +τῷ +Πατρί +σου +τῷ +ἐν +τῷ +κρυπτῷ· +καὶ +ὁ +Πατήρ +σου +ὁ +βλέπων +ἐν +τῷ +κρυπτῷ +ἀποδώσει +σοι. +δὲ +Προσευχόμενοι +μὴ +βατταλογήσητε +ὥσπερ +οἱ +ἐθνικοί· +γὰρ +δοκοῦσιν +ὅτι +ἐν +τῇ +πολυλογίᾳ +αὐτῶν +εἰσακουσθήσονται. +οὖν +μὴ +ὁμοιωθῆτε +αὐτοῖς· +γὰρ +οἶδεν +ὁ +Πατὴρ +ὑμῶν +ὧν +χρείαν +ἔχετε +πρὸ +τοῦ +ὑμᾶς +αἰτῆσαι +αὐτόν. +οὖν +οὕτως +προσεύχεσθε +ὑμεῖς +Πάτερ +ἡμῶν +ὁ +ἐν +τοῖς +οὐρανοῖς· +Ἁγιασθήτω +τὸ +ὄνομά +σου· +ἐλθάτω +ἡ +βασιλεία +σου· +γενηθήτω +τὸ +θέλημά +σου, +ὡς +ἐν +οὐρανῷ +καὶ +ἐπὶ +γῆς· +Τὸν +ἄρτον +ἡμῶν +τὸν +ἐπιούσιον +δὸς +ἡμῖν +σήμερον· +καὶ +ἄφες +ἡμῖν +τὰ +ὀφειλήματα +ἡμῶν, +ὡς +καὶ +ἡμεῖς +ἀφήκαμεν +τοῖς +ὀφειλέταις +ἡμῶν· +καὶ +μὴ +εἰσενέγκῃς +ἡμᾶς +εἰς +πειρασμόν, +ἀλλὰ +ῥῦσαι +ἡμᾶς +ἀπὸ +τοῦ +πονηροῦ. +γὰρ +Ἐὰν +ἀφῆτε +τοῖς +ἀνθρώποις +τὰ +παραπτώματα +αὐτῶν, +ἀφήσει +καὶ +ὑμῖν +ὁ +Πατὴρ +ὑμῶν +ὁ +οὐράνιος· +δὲ +ἐὰν +μὴ +ἀφῆτε +τοῖς +ἀνθρώποις, +οὐδὲ +ὁ +Πατὴρ +ὑμῶν +ἀφήσει +τὰ +παραπτώματα +ὑμῶν. +δὲ +Ὅταν +νηστεύητε, +μὴ +γίνεσθε +ὡς +οἱ +ὑποκριταὶ +σκυθρωποί· +γὰρ +ἀφανίζουσιν +τὰ +πρόσωπα +αὐτῶν +ὅπως +φανῶσιν +τοῖς +ἀνθρώποις +νηστεύοντες· +ἀμὴν +λέγω +ὑμῖν, +ἀπέχουσιν +τὸν +μισθὸν +αὐτῶν. +δὲ +σὺ +νηστεύων +ἄλειψαί +σου +τὴν +κεφαλὴν +καὶ +τὸ +πρόσωπόν +σου +νίψαι, +ὅπως +μὴ +φανῇς +τοῖς +ἀνθρώποις +νηστεύων +ἀλλὰ +τῷ +Πατρί +σου +τῷ +ἐν +τῷ +κρυφαίῳ· +καὶ +ὁ +Πατήρ +σου +ὁ +βλέπων +ἐν +τῷ +κρυφαίῳ +ἀποδώσει +σοι. +Μὴ +θησαυρίζετε +ὑμῖν +θησαυροὺς +ἐπὶ +τῆς +γῆς, +ὅπου +σὴς +καὶ +βρῶσις +ἀφανίζει, +καὶ +ὅπου +κλέπται +διορύσσουσιν +καὶ +κλέπτουσιν· +δὲ +θησαυρίζετε +ὑμῖν +θησαυροὺς +ἐν +οὐρανῷ, +ὅπου +οὔτε +σὴς +οὔτε +βρῶσις +ἀφανίζει, +καὶ +ὅπου +κλέπται +οὐ +διορύσσουσιν +οὐδὲ +κλέπτουσιν· +γάρ +ὅπου +ἐστιν +ὁ +θησαυρός +σου, +ἐκεῖ +ἔσται +καὶ +ἡ +καρδία +σου. +Ὁ +λύχνος +τοῦ +σώματός +ἐστιν +ὁ +ὀφθαλμός. +οὖν +ἐὰν +ᾖ +ὁ +ὀφθαλμός +σου +ἁπλοῦς, +ὅλον +τὸ +σῶμά +σου +φωτεινὸν +ἔσται· +δὲ +ἐὰν +ὁ +ὀφθαλμός +σου +πονηρὸς +ᾖ, +ὅλον +τὸ +σῶμά +σου +σκοτεινὸν +ἔσται. +οὖν +εἰ +τὸ +φῶς +τὸ +ἐν +σοὶ +σκότος +ἐστίν, +τὸ +σκότος +πόσον. +Οὐδεὶς +δύναται +δυσὶ +κυρίοις +δουλεύειν· +γὰρ +ἢ +τὸν +ἕνα +μισήσει +καὶ +τὸν +ἕτερον +ἀγαπήσει, +ἢ +ἑνὸς +ἀνθέξεται +καὶ +τοῦ +ἑτέρου +καταφρονήσει· +οὐ +δύνασθε +Θεῷ +δουλεύειν +καὶ +μαμωνᾷ. +Διὰ +τοῦτο +λέγω +ὑμῖν, +μὴ +μεριμνᾶτε +τῇ +ψυχῇ +ὑμῶν +τί +φάγητε, +ἢ +τί +πίητε +μηδὲ +τῷ +σώματι +ὑμῶν +τί +ἐνδύσησθε· +οὐχὶ +ἡ +ψυχὴ +πλεῖόν +ἐστιν +τῆς +τροφῆς +καὶ +τὸ +σῶμα +τοῦ +ἐνδύματος; +ἐμβλέψατε +εἰς +τὰ +πετεινὰ +τοῦ +οὐρανοῦ, +ὅτι +οὐ +σπείρουσιν +οὐδὲ +θερίζουσιν +οὐδὲ +συνάγουσιν +εἰς +ἀποθήκας, +καὶ +ὁ +Πατὴρ +ὑμῶν +ὁ +οὐράνιος +τρέφει +αὐτά· +οὐχ +ὑμεῖς +μᾶλλον +διαφέρετε +αὐτῶν; +δὲ +τίς +ἐξ +ὑμῶν +μεριμνῶν +δύναται +προσθεῖναι +ἐπὶ +τὴν +ἡλικίαν +αὐτοῦ +πῆχυν +ἕνα; +καὶ +περὶ +ἐνδύματος +τί +μεριμνᾶτε; +καταμάθετε +τὰ +κρίνα +τοῦ +ἀγροῦ +πῶς +αὐξάνουσιν· +οὐ +κοπιῶσιν +οὐδὲ +νήθουσιν· +δὲ +λέγω +ὑμῖν +ὅτι +οὐδὲ +Σολομὼν +ἐν +πάσῃ +τῇ +δόξῃ +αὐτοῦ +περιεβάλετο +ὡς +ἓν +τούτων. +δὲ +εἰ +τὸν +χόρτον +τοῦ +ἀγροῦ +σήμερον +ὄντα +καὶ +αὔριον +εἰς +κλίβανον +βαλλόμενον +ὁ +Θεὸς +οὕτως +ἀμφιέννυσιν, +οὐ +πολλῷ +μᾶλλον +ὑμᾶς, +ὀλιγόπιστοι; +οὖν +μὴ +μεριμνήσητε +λέγοντες· +Τί +φάγωμεν; +ἤ· +Τί +πίωμεν; +ἤ· +Τί +περιβαλώμεθα; +γὰρ +πάντα +ταῦτα +τὰ +ἔθνη +ἐπιζητοῦσιν· +γὰρ +οἶδεν +ὁ +Πατὴρ +ὑμῶν +ὁ +οὐράνιος +ὅτι +χρῄζετε +τούτων +ἁπάντων. +δὲ +ζητεῖτε +πρῶτον +τὴν +βασιλείαν +καὶ +τὴν +δικαιοσύνην +αὐτοῦ, +καὶ +ταῦτα +πάντα +προστεθήσεται +ὑμῖν. +οὖν +μὴ +μεριμνήσητε +εἰς +τὴν +αὔριον, +γὰρ +ἡ +αὔριον +μεριμνήσει +ἑαυτῆς· +ἀρκετὸν +τῇ +ἡμέρᾳ +ἡ +κακία +αὐτῆς. +Μὴ +κρίνετε, +ἵνα +μὴ +κριθῆτε· +γὰρ +ἐν +ᾧ +κρίματι +κρίνετε +κριθήσεσθε, +καὶ +ἐν +ᾧ +μέτρῳ +μετρεῖτε +μετρηθήσεται +ὑμῖν. +δὲ +τί +βλέπεις +τὸ +κάρφος +τὸ +ἐν +τῷ +ὀφθαλμῷ +τοῦ +ἀδελφοῦ +σου, +δὲ +τὴν +ἐν +τῷ +σῷ +ὀφθαλμῷ +δοκὸν +οὐ +κατανοεῖς; +ἢ +πῶς +ἐρεῖς +τῷ +ἀδελφῷ +σου· +Ἄφες +ἐκβάλω +τὸ +κάρφος +ἐκ +τοῦ +ὀφθαλμοῦ +σου, +καὶ +ἰδοὺ +ἡ +δοκὸς +ἐν +τῷ +ὀφθαλμῷ +σοῦ; +ὑποκριτά, +ἔκβαλε +πρῶτον +ἐκ +τοῦ +ὀφθαλμοῦ +σοῦ +τὴν +δοκόν, +καὶ +τότε +διαβλέψεις +ἐκβαλεῖν +τὸ +κάρφος +ἐκ +τοῦ +ὀφθαλμοῦ +τοῦ +ἀδελφοῦ +σου. +Μὴ +δῶτε +τὸ +ἅγιον +τοῖς +κυσίν, +μηδὲ +βάλητε +τοὺς +μαργαρίτας +ὑμῶν +ἔμπροσθεν +τῶν +χοίρων, +μή +ποτε +καταπατήσουσιν +αὐτοὺς +ἐν +τοῖς +ποσὶν +αὐτῶν +καὶ +στραφέντες +ῥήξωσιν +ὑμᾶς. +Αἰτεῖτε, +καὶ +δοθήσεται +ὑμῖν· +ζητεῖτε, +καὶ +εὑρήσετε· +κρούετε, +καὶ +ἀνοιγήσεται +ὑμῖν. +γὰρ +πᾶς +ὁ +αἰτῶν +λαμβάνει +καὶ +ὁ +ζητῶν +εὑρίσκει +καὶ +τῷ +κρούοντι +ἀνοιγήσεται. +ἢ +ἐστιν +ἐξ +ὑμῶν +τίς +ἄνθρωπος, +ὃν +αἰτήσει +ὁ +υἱὸς +αὐτοῦ +ἄρτον, +μὴ +λίθον +ἐπιδώσει +αὐτῷ; +ἢ +καὶ +ἰχθὺν +αἰτήσει, +μὴ +ὄφιν +ἐπιδώσει +αὐτῷ; +οὖν +εἰ +ὑμεῖς +πονηροὶ +ὄντες +οἴδατε +δόματα +ἀγαθὰ +διδόναι +τοῖς +τέκνοις +ὑμῶν, +πόσῳ +μᾶλλον +ὁ +Πατὴρ +ὑμῶν +ὁ +ἐν +τοῖς +οὐρανοῖς +δώσει +ἀγαθὰ +τοῖς +αἰτοῦσιν +αὐτόν. +οὖν +Πάντα +ἐὰν +ὅσα +θέλητε +ἵνα +ποιῶσιν +ὑμῖν +οἱ +ἄνθρωποι, +οὕτως +καὶ +ὑμεῖς +ποιεῖτε +αὐτοῖς· +γάρ +οὗτος +ἐστιν +ὁ +νόμος +καὶ +οἱ +προφῆται. +Εἰσέλθατε +διὰ +τῆς +στενῆς +πύλης· +ὅτι +πλατεῖα +ἡ +πύλη +καὶ +εὐρύχωρος +ἡ +ὁδὸς +ἡ +ἀπάγουσα +εἰς +τὴν +ἀπώλειαν, +καὶ +πολλοί +εἰσιν +οἱ +εἰσερχόμενοι +δι’ +αὐτῆς· +ὅτι +στενὴ +ἡ +πύλη +καὶ +τεθλιμμένη +ἡ +ὁδὸς +ἡ +ἀπάγουσα +εἰς +τὴν +ζωήν, +καὶ +ὀλίγοι +εἰσὶν +οἱ +εὑρίσκοντες +αὐτήν. +Προσέχετε +ἀπὸ +τῶν +ψευδοπροφητῶν, +οἵτινες +ἔρχονται +πρὸς +ὑμᾶς +ἐν +ἐνδύμασιν +προβάτων +δέ +ἔσωθεν +εἰσιν +λύκοι +ἅρπαγες. +ἀπὸ +τῶν +καρπῶν +αὐτῶν +ἐπιγνώσεσθε +αὐτούς. +μήτι +συλλέγουσιν +ἀπὸ +ἀκανθῶν +σταφυλὰς +ἢ +ἀπὸ +τριβόλων +σῦκα; +οὕτως +πᾶν +δένδρον +ἀγαθὸν +καρποὺς +καλοὺς +ποιεῖ, +δὲ +τὸ +σαπρὸν +δένδρον +καρποὺς +πονηροὺς +ποιεῖ· +οὐ +δύναται +δένδρον +ἀγαθὸν +καρποὺς +πονηροὺς +ἐνεγκεῖν, +οὐδὲ +δένδρον +σαπρὸν +καρποὺς +καλοὺς +ἐνεγκεῖν. +πᾶν +δένδρον +μὴ +ποιοῦν +καρπὸν +καλὸν +ἐκκόπτεται +καὶ +εἰς +πῦρ +βάλλεται. +ἄραγε +ἀπὸ +τῶν +καρπῶν +αὐτῶν +ἐπιγνώσεσθε +αὐτούς. +Οὐ +πᾶς +ὁ +λέγων +μοι +Κύριε +Κύριε, +εἰσελεύσεται +εἰς +τὴν +βασιλείαν +τῶν +οὐρανῶν, +ἀλλ’ +ὁ +ποιῶν +τὸ +θέλημα +τοῦ +Πατρός +μου +τοῦ +ἐν +τοῖς +οὐρανοῖς. +πολλοὶ +ἐροῦσίν +μοι +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +Κύριε +Κύριε, +οὐ +τῷ +σῷ +ὀνόματι +ἐπροφητεύσαμεν, +καὶ +τῷ +σῷ +ὀνόματι +δαιμόνια +ἐξεβάλομεν, +καὶ +τῷ +σῷ +ὀνόματι +δυνάμεις +πολλὰς +ἐποιήσαμεν; +καὶ +τότε +ὁμολογήσω +αὐτοῖς +ὅτι +Οὐδέποτε +ἔγνων +ὑμᾶς· +ἀποχωρεῖτε +ἀπ’ +ἐμοῦ +οἱ +ἐργαζόμενοι +τὴν +ἀνομίαν. +οὖν +Πᾶς +ὅστις +ἀκούει +μου +τοὺς +λόγους +τούτους +καὶ +ποιεῖ +αὐτούς, +ὁμοιωθήσεται +ἀνδρὶ +φρονίμῳ, +ὅστις +ᾠκοδόμησεν +αὐτοῦ +τὴν +οἰκίαν +ἐπὶ +τὴν +πέτραν. +καὶ +κατέβη +ἡ +βροχὴ +καὶ +ἦλθον +οἱ +ποταμοὶ +καὶ +ἔπνευσαν +οἱ +ἄνεμοι +καὶ +προσέπεσαν +τῇ +οἰκίᾳ +ἐκείνῃ, +καὶ +οὐκ +ἔπεσεν· +γὰρ +τεθεμελίωτο +ἐπὶ +τὴν +πέτραν. +καὶ +πᾶς +ὁ +ἀκούων +μου +τοὺς +λόγους +τούτους +καὶ +μὴ +ποιῶν +αὐτοὺς +ὁμοιωθήσεται +ἀνδρὶ +μωρῷ, +ὅστις +ᾠκοδόμησεν +αὐτοῦ +τὴν +οἰκίαν +ἐπὶ +τὴν +ἄμμον. +καὶ +κατέβη +ἡ +βροχὴ +καὶ +ἦλθον +οἱ +ποταμοὶ +καὶ +ἔπνευσαν +οἱ +ἄνεμοι +καὶ +προσέκοψαν +τῇ +οἰκίᾳ +ἐκείνῃ, +καὶ +ἔπεσεν, +καὶ +ἦν +ἡ +πτῶσις +αὐτῆς +μεγάλη. +Καὶ +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +τοὺς +λόγους +τούτους, +ἐξεπλήσσοντο +οἱ +ὄχλοι +ἐπὶ +τῇ +διδαχῇ +αὐτοῦ· +γὰρ +ἦν +διδάσκων +αὐτοὺς +ὡς +ἐξουσίαν +ἔχων, +καὶ +οὐχ +ὡς +οἱ +γραμματεῖς +αὐτῶν. +δὲ +Καταβάντος +αὐτοῦ +ἀπὸ +τοῦ +ὄρους +ἠκολούθησαν +αὐτῷ +ὄχλοι +πολλοί. +καὶ +ἰδοὺ +λεπρὸς +προσελθὼν +προσεκύνει +αὐτῷ +λέγων +Κύριε, +ἐὰν +θέλῃς +δύνασαί +με +καθαρίσαι. +καὶ +ἐκτείνας +τὴν +χεῖρα +ἥψατο +αὐτοῦ +λέγων +Θέλω, +καθαρίσθητι. +καὶ +εὐθέως +ἐκαθερίσθη +αὐτοῦ +ἡ +λέπρα. +καὶ +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ὅρα +μηδενὶ +εἴπῃς, +ἀλλὰ +ὕπαγε +σεαυτὸν +δεῖξον +τῷ +ἱερεῖ, +καὶ +προσένεγκον +τὸ +δῶρον +ὃ +προσέταξεν +Μωϋσῆς +εἰς +μαρτύριον +αὐτοῖς. +δὲ +Εἰσελθόντος +αὐτοῦ +εἰς +Καφαρναοὺμ +προσῆλθεν +αὐτῷ +ἑκατόνταρχος +παρακαλῶν +αὐτὸν +καὶ +λέγων +Κύριε, +ὁ +παῖς +μου +βέβληται +ἐν +τῇ +οἰκίᾳ +παραλυτικός, +δεινῶς +βασανιζόμενος. +λέγει +αὐτῷ +Ἐγὼ +ἐλθὼν +θεραπεύσω +αὐτόν. +δὲ +ἀποκριθεὶς +ὁ +ἑκατόνταρχος +ἔφη +Κύριε, +οὐκ +εἰμὶ +ἱκανὸς +ἵνα +ὑπὸ +μου +τὴν +στέγην +εἰσέλθῃς· +ἀλλὰ +μόνον +εἰπὲ +λόγῳ, +καὶ +ἰαθήσεται +ὁ +παῖς +μου. +γὰρ +καὶ +ἐγὼ +εἰμι +ἄνθρωπός +ὑπὸ +ἐξουσίαν, +ἔχων +ὑπ’ +ἐμαυτὸν +στρατιώτας, +καὶ +λέγω +τούτῳ +Πορεύθητι, +καὶ +πορεύεται, +καὶ +ἄλλῳ +Ἔρχου, +καὶ +ἔρχεται, +καὶ +τῷ +δούλῳ +μου +Ποίησον +τοῦτο, +καὶ +ποιεῖ. +δὲ +ἀκούσας +ὁ +Ἰησοῦς +ἐθαύμασεν +καὶ +εἶπεν +τοῖς +ἀκολουθοῦσιν +Ἀμὴν +λέγω +ὑμῖν, +παρ’ +οὐδενὶ +τοσαύτην +πίστιν +ἐν +τῷ +Ἰσραὴλ +εὗρον. +δὲ +λέγω +ὑμῖν +ὅτι +πολλοὶ +ἀπὸ +ἀνατολῶν +καὶ +δυσμῶν +ἥξουσιν +καὶ +ἀνακλιθήσονται +μετὰ +Ἀβραὰμ +καὶ +Ἰσαὰκ +καὶ +Ἰακὼβ +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν· +δὲ +οἱ +υἱοὶ +τῆς +βασιλείας +ἐκβληθήσονται +εἰς +τὸ +σκότος +τὸ +ἐξώτερον· +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων. +καὶ +εἶπεν +ὁ +Ἰησοῦς +τῷ +ἑκατοντάρχῃ +Ὕπαγε, +ὡς +ἐπίστευσας +γενηθήτω +σοι. +καὶ +ἰάθη +ὁ +παῖς +ἐν +τῇ +ὥρᾳ +ἐκείνῃ. +Καὶ +ὁ +Ἰησοῦς +ἐλθὼν +εἰς +τὴν +οἰκίαν +Πέτρου +εἶδεν +τὴν +πενθερὰν +αὐτοῦ +βεβλημένην +καὶ +πυρέσσουσαν· +καὶ +ἥψατο +τῆς +χειρὸς +αὐτῆς, +καὶ +ἀφῆκεν +αὐτὴν +ὁ +πυρετός· +καὶ +ἠγέρθη, +καὶ +διηκόνει +αὐτῷ. +δὲ +Ὀψίας +γενομένης +προσήνεγκαν +αὐτῷ +δαιμονιζομένους +πολλούς· +καὶ +ἐξέβαλεν +τὰ +πνεύματα +λόγῳ, +καὶ +πάντας +τοὺς +κακῶς +ἔχοντας +ἐθεράπευσεν· +ὅπως +πληρωθῇ +τὸ +ῥηθὲν +διὰ +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Αὐτὸς +τὰς +ἀσθενείας +ἡμῶν +ἔλαβεν +καὶ +τὰς +νόσους +ἐβάστασεν. +δὲ +ὁ +Ἰησοῦς +Ἰδὼν +ὄχλον +περὶ +αὐτὸν +ἐκέλευσεν +ἀπελθεῖν +εἰς +τὸ +πέραν. +Καὶ +προσελθὼν +εἷς +γραμματεὺς +εἶπεν +αὐτῷ +Διδάσκαλε, +ἀκολουθήσω +σοι +ἐὰν +ὅπου +ἀπέρχῃ. +καὶ +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Αἱ +ἀλώπεκες +φωλεοὺς +ἔχουσιν +καὶ +τὰ +πετεινὰ +τοῦ +οὐρανοῦ +κατασκηνώσεις, +δὲ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +οὐκ +ἔχει +ποῦ +τὴν +κεφαλὴν +κλίνῃ. +δὲ +ἕτερος +τῶν +μαθητῶν +εἶπεν +αὐτῷ +Κύριε, +ἐπίτρεψόν +μοι +πρῶτον +ἀπελθεῖν +καὶ +θάψαι +τὸν +πατέρα +μου. +δὲ +ὁ +Ἰησοῦς +λέγει +αὐτῷ +Ἀκολούθει +μοι, +καὶ +ἄφες +τοὺς +νεκροὺς +θάψαι +τοὺς +ἑαυτῶν +νεκρούς. +Καὶ +ἐμβάντι +αὐτῷ +εἰς +τὸ +πλοῖον +ἠκολούθησαν +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ. +καὶ +ἰδοὺ +σεισμὸς +μέγας +ἐγένετο +ἐν +τῇ +θαλάσσῃ, +ὥστε +τὸ +πλοῖον +καλύπτεσθαι +ὑπὸ +τῶν +κυμάτων· +δὲ +αὐτὸς +ἐκάθευδεν. +καὶ +προσελθόντες +ἤγειραν +αὐτὸν +λέγοντες +Κύριε, +σῶσον, +ἀπολλύμεθα. +καὶ +λέγει +αὐτοῖς +Τί +δειλοί +ἐστε, +ὀλιγόπιστοι; +τότε +ἐγερθεὶς +ἐπετίμησεν +τοῖς +ἀνέμοις +καὶ +τῇ +θαλάσσῃ, +καὶ +ἐγένετο +γαλήνη +μεγάλη. +δὲ +οἱ +ἄνθρωποι +ἐθαύμασαν +λέγοντες +Ποταπός +ἐστιν +οὗτος +ὅτι +καὶ +οἱ +ἄνεμοι +καὶ +ἡ +θάλασσα +αὐτῷ +ὑπακούουσιν; +Καὶ +ἐλθόντος +αὐτοῦ +εἰς +τὸ +πέραν +εἰς +τὴν +χώραν +τῶν +Γαδαρηνῶν +ὑπήντησαν +αὐτῷ +δύο +δαιμονιζόμενοι +ἐκ +τῶν +μνημείων +ἐξερχόμενοι, +χαλεποὶ +λίαν +ὥστε +μὴ +ἰσχύειν +τινὰ +παρελθεῖν +διὰ +τῆς +ὁδοῦ +ἐκείνης. +καὶ +ἰδοὺ +ἔκραξαν +λέγοντες +Τί +ἡμῖν +καὶ +σοί, +Υἱὲ +τοῦ +Θεοῦ; +ἦλθες +ὧδε +πρὸ +καιροῦ +βασανίσαι +ἡμᾶς; +δὲ +ἦν +μακρὰν +ἀπ’ +αὐτῶν +ἀγέλη +χοίρων +πολλῶν +βοσκομένη. +δὲ +οἱ +δαίμονες +παρεκάλουν +αὐτὸν +λέγοντες +Εἰ +ἐκβάλλεις +ἡμᾶς, +ἀπόστειλον +ἡμᾶς +εἰς +τὴν +ἀγέλην +τῶν +χοίρων. +καὶ +εἶπεν +αὐτοῖς +Ὑπάγετε. +δὲ +οἱ +ἐξελθόντες +ἀπῆλθον +εἰς +τοὺς +χοίρους· +καὶ +ἰδοὺ +ὥρμησεν +πᾶσα +ἡ +ἀγέλη +κατὰ +τοῦ +κρημνοῦ +εἰς +τὴν +θάλασσαν, +καὶ +ἀπέθανον +ἐν +τοῖς +ὕδασιν. +δὲ +οἱ +βόσκοντες +ἔφυγον, +καὶ +ἀπελθόντες +εἰς +τὴν +πόλιν +ἀπήγγειλαν +πάντα +καὶ +τὰ +τῶν +δαιμονιζομένων. +καὶ +ἰδοὺ +πᾶσα +ἡ +πόλις +ἐξῆλθεν +εἰς +ὑπάντησιν +τῷ +Ἰησοῦ, +καὶ +ἰδόντες +αὐτὸν +παρεκάλεσαν +ὅπως +μεταβῇ +ἀπὸ +τῶν +ὁρίων +αὐτῶν. +Καὶ +ἐμβὰς +εἰς +πλοῖον +διεπέρασεν, +καὶ +ἦλθεν +εἰς +τὴν +ἰδίαν +πόλιν. +Καὶ +ἰδοὺ +προσέφερον +αὐτῷ +παραλυτικὸν +ἐπὶ +κλίνης +βεβλημένον. +καὶ +ὁ +Ἰησοῦς +ἰδὼν +τὴν +πίστιν +αὐτῶν +εἶπεν +τῷ +παραλυτικῷ +Θάρσει, +τέκνον, +ἀφίενταί +σου +αἱ +ἁμαρτίαι. +καὶ +ἰδού +τινες +τῶν +γραμματέων +εἶπαν +ἐν +ἑαυτοῖς +Οὗτος +βλασφημεῖ. +καὶ +ὁ +Ἰησοῦς +εἰδὼς +τὰς +ἐνθυμήσεις +αὐτῶν +εἶπεν +Ἵνα +τί +ἐνθυμεῖσθε +πονηρὰ +ἐν +ταῖς +καρδίαις +ὑμῶν; +γάρ +τί +ἐστιν +εὐκοπώτερον, +εἰπεῖν +Ἀφίενταί +σου +αἱ +ἁμαρτίαι, +ἢ +εἰπεῖν +Ἔγειρε +καὶ +περιπάτει; +δὲ +ἵνα +εἰδῆτε +ὅτι +ἐξουσίαν +ἔχει +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐπὶ +τῆς +γῆς +ἀφιέναι +ἁμαρτίας— +τότε +λέγει +τῷ +παραλυτικῷ +Ἔγειρε +ἆρόν +σου +τὴν +κλίνην +καὶ +ὕπαγε +εἰς +τὸν +οἶκόν +σου. +καὶ +ἐγερθεὶς +ἀπῆλθεν +εἰς +τὸν +οἶκον +αὐτοῦ. +δὲ +ἰδόντες +οἱ +ὄχλοι +ἐφοβήθησαν +καὶ +ἐδόξασαν +τὸν +Θεὸν +τὸν +δόντα +ἐξουσίαν +τοιαύτην +τοῖς +ἀνθρώποις. +Καὶ +παράγων +ἐκεῖθεν +ὁ +Ἰησοῦς +εἶδεν +ἄνθρωπον +καθήμενον +ἐπὶ +τὸ +τελώνιον, +Μαθθαῖον +λεγόμενον, +καὶ +λέγει +αὐτῷ +Ἀκολούθει +μοι. +καὶ +ἀναστὰς +ἠκολούθησεν +αὐτῷ. +Καὶ +ἐγένετο +αὐτοῦ +ἀνακειμένου +ἐν +τῇ +οἰκίᾳ, +καὶ +ἰδοὺ +πολλοὶ +τελῶναι +καὶ +ἁμαρτωλοὶ +ἐλθόντες +συνανέκειντο +τῷ +Ἰησοῦ +καὶ +τοῖς +μαθηταῖς +αὐτοῦ. +καὶ +ἰδόντες +οἱ +Φαρισαῖοι +ἔλεγον +τοῖς +μαθηταῖς +αὐτοῦ +Διὰ +τί +μετὰ +τῶν +τελωνῶν +καὶ +ἁμαρτωλῶν +ἐσθίει +ὁ +διδάσκαλος +ὑμῶν; +δὲ +ὁ +ἀκούσας +εἶπεν +Οὐ +χρείαν +ἰατροῦ +ἔχουσιν +οἱ +ἰσχύοντες +ἀλλ’ +οἱ +κακῶς +ἔχοντες. +δὲ +πορευθέντες +μάθετε +τί +ἐστιν +Ἔλεος +θέλω +καὶ +οὐ +θυσίαν· +γὰρ +οὐ +ἦλθον +καλέσαι +δικαίους +ἀλλὰ +ἁμαρτωλούς. +Τότε +προσέρχονται +αὐτῷ +οἱ +μαθηταὶ +Ἰωάνου +λέγοντες +Διὰ +τί +ἡμεῖς +καὶ +οἱ +Φαρισαῖοι +νηστεύομεν, +δὲ +οἱ +μαθηταί +σου +οὐ +νηστεύουσιν; +καὶ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Μὴ +δύνανται +οἱ +υἱοὶ +τοῦ +νυμφῶνος +πενθεῖν +ἐφ’ +ὅσον +μετ’ +αὐτῶν +ἐστιν +ὁ +νυμφίος; +δὲ +ἐλεύσονται +ἡμέραι +ὅταν +ἀπαρθῇ +ἀπ’ +αὐτῶν +ὁ +νυμφίος, +καὶ +τότε +νηστεύσουσιν. +δὲ +οὐδεὶς +ἐπιβάλλει +ἐπίβλημα +ῥάκους +ἀγνάφου +ἐπὶ +ἱματίῳ +παλαιῷ· +γὰρ +αἴρει +τὸ +πλήρωμα +αὐτοῦ +ἀπὸ +τοῦ +ἱματίου, +καὶ +χεῖρον +σχίσμα +γίνεται. +οὐδὲ +βάλλουσιν +οἶνον +νέον +εἰς +ἀσκοὺς +παλαιούς· +δὲ +εἰ +μήγε, +ῥήγνυνται +οἱ +ἀσκοί, +καὶ +ὁ +οἶνος +ἐκχεῖται +καὶ +οἱ +ἀσκοὶ +ἀπόλλυνται· +ἀλλὰ +βάλλουσιν +οἶνον +νέον +εἰς +ἀσκοὺς +καινούς, +καὶ +ἀμφότεροι +συντηροῦνται. +Ταῦτα +αὐτοῦ +λαλοῦντος +αὐτοῖς +ἰδοὺ +ἄρχων +εἷς +προσελθὼν +προσεκύνει +αὐτῷ +λέγων +ὅτι +Ἠ +θυγάτηρ +μου +ἄρτι +ἐτελεύτησεν· +ἀλλὰ +ἐλθὼν +ἐπίθες +τὴν +χεῖρά +σου +ἐπ’ +αὐτήν, +καὶ +ζήσεται. +καὶ +ἐγερθεὶς +ὁ +Ἰησοῦς +ἠκολούθει +αὐτῷ +καὶ +οἱ +μαθηταὶ +αὐτοῦ. +Καὶ +ἰδοὺ +γυνὴ +αἱμορροοῦσα +δώδεκα +ἔτη +προσελθοῦσα +ὄπισθεν +ἥψατο +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ· +γὰρ +ἔλεγεν +ἐν +ἑαυτῇ +Ἐὰν +μόνον +ἅψωμαι +τοῦ +ἱματίου +αὐτοῦ +σωθήσομαι. +δὲ +ὁ +Ἰησοῦς +στραφεὶς +καὶ +ἰδὼν +αὐτὴν +εἶπεν +Θάρσει, +θύγατερ· +ἡ +πίστις +σου +σέσωκέν +σε. +καὶ +ἐσώθη +ἡ +γυνὴ +ἀπὸ +τῆς +ὥρας +ἐκείνης. +καὶ +ὁ +Ἰησοῦς +ἐλθὼν +εἰς +τὴν +οἰκίαν +τοῦ +ἄρχοντος +καὶ +ἰδὼν +τοὺς +αὐλητὰς +καὶ +τὸν +ὄχλον +θορυβούμενον +ἔλεγεν· +Ἀναχωρεῖτε· +γὰρ +οὐ +ἀπέθανεν +τὸ +κοράσιον +ἀλλὰ +καθεύδει. +καὶ +κατεγέλων +αὐτοῦ. +δὲ +ὅτε +ἐξεβλήθη +ὁ +ὄχλος, +εἰσελθὼν +ἐκράτησεν +τῆς +χειρὸς +αὐτῆς, +καὶ +ἠγέρθη +τὸ +κοράσιον. +καὶ +ἐξῆλθεν +ἡ +φήμη +αὕτη +εἰς +ὅλην +τὴν +γῆν +ἐκείνην. +Καὶ +παράγοντι +ἐκεῖθεν +τῷ +Ἰησοῦ +ἠκολούθησαν +δύο +τυφλοὶ +κράζοντες +καὶ +λέγοντες +Ἐλέησον +ἡμᾶς, +υἱὸς +Δαυείδ. +δὲ +ἐλθόντι +εἰς +τὴν +οἰκίαν +προσῆλθον +αὐτῷ +οἱ +τυφλοί, +καὶ +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Πιστεύετε +ὅτι +δύναμαι +τοῦτο +ποιῆσαι; +λέγουσιν +αὐτῷ +Ναί, +Κύριε. +τότε +ἥψατο +τῶν +ὀφθαλμῶν +αὐτῶν +λέγων +Κατὰ +τὴν +πίστιν +ὑμῶν +γενηθήτω +ὑμῖν. +καὶ +ἠνεῴχθησαν +αὐτῶν +οἱ +ὀφθαλμοί. +καὶ +ἐνεβριμήθη +αὐτοῖς +ὁ +Ἰησοῦς +λέγων +Ὁρᾶτε, +μηδεὶς +γινωσκέτω. +δὲ +οἱ +ἐξελθόντες +διεφήμισαν +αὐτὸν +ἐν +ὅλῃ +τῇ +γῇ +ἐκείνῃ. +δὲ +Αὐτῶν +ἐξερχομένων, +ἰδοὺ +προσήνεγκαν +αὐτῷ +κωφὸν +δαιμονιζόμενον. +καὶ +ἐκβληθέντος +τοῦ +δαιμονίου +ἐλάλησεν +ὁ +κωφός. +καὶ +ἐθαύμασαν +οἱ +ὄχλοι +λέγοντες +Οὐδέποτε +ἐφάνη +οὕτως +ἐν +τῷ +Ἰσραήλ. +δὲ +οἱ +Φαρισαῖοι +ἔλεγον +Ἐν +τῷ +ἄρχοντι +τῶν +δαιμονίων +ἐκβάλλει +τὰ +δαιμόνια. +Καὶ +περιῆγεν +ὁ +Ἰησοῦς +τὰς +πόλεις +πάσας +καὶ +τὰς +κώμας, +διδάσκων +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +καὶ +κηρύσσων +τὸ +εὐαγγέλιον +τῆς +βασιλείας +καὶ +θεραπεύων +πᾶσαν +νόσον +καὶ +πᾶσαν +μαλακίαν. +δὲ +Ἰδὼν +τοὺς +ὄχλους +ἐσπλαγχνίσθη +περὶ +αὐτῶν, +ὅτι +ἦσαν +ἐσκυλμένοι +καὶ +ἐρριμμένοι +ὡσεὶ +πρόβατα +μὴ +ἔχοντα +ποιμένα. +τότε +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +μὲν +Ὁ +θερισμὸς +πολύς, +δὲ +οἱ +ἐργάται +ὀλίγοι· +οὖν +δεήθητε +τοῦ +Κυρίου +τοῦ +θερισμοῦ +ὅπως +ἐκβάλῃ +ἐργάτας +εἰς +τὸν +θερισμὸν +αὐτοῦ. +Καὶ +προσκαλεσάμενος +τοὺς +δώδεκα +μαθητὰς +αὐτοῦ +ἔδωκεν +αὐτοῖς +ἐξουσίαν +πνευμάτων +ἀκαθάρτων +ὥστε +ἐκβάλλειν +αὐτὰ +καὶ +θεραπεύειν +πᾶσαν +νόσον +καὶ +πᾶσαν +μαλακίαν. +δὲ +Τῶν +δώδεκα +ἀποστόλων +τὰ +ὀνόματά +ἐστιν +ταῦτα· +πρῶτος +Σίμων +ὁ +λεγόμενος +Πέτρος +καὶ +Ἀνδρέας +ὁ +ἀδελφὸς +αὐτοῦ, +καὶ +Ἰάκωβος +ὁ +τοῦ +Ζεβεδαίου +καὶ +Ἰωάνης +ὁ +ἀδελφὸς +αὐτοῦ, +Φίλιππος +καὶ +Βαρθολομαῖος, +Θωμᾶς +καὶ +Μαθθαῖος +ὁ +τελώνης, +Ἰάκωβος +ὁ +τοῦ +Ἁλφαίου +καὶ +Θαδδαῖος, +Σίμων +ὁ +Καναναῖος +καὶ +Ἰούδας +ὁ +Ἰσκαριώτης +ὁ +καὶ +παραδοὺς +αὐτόν. +Τούτους +τοὺς +δώδεκα +ἀπέστειλεν +ὁ +Ἰησοῦς +παραγγείλας +αὐτοῖς +λέγων +Εἰς +ὁδὸν +ἐθνῶν +μὴ +ἀπέλθητε +καὶ +εἰς +πόλιν +Σαμαρειτῶν +μὴ +εἰσέλθητε· +δὲ +πορεύεσθε +μᾶλλον +πρὸς +τὰ +πρόβατα +τὰ +ἀπολωλότα +οἴκου +Ἰσραήλ. +δὲ +πορευόμενοι +κηρύσσετε +λέγοντες +ὅτι +Ἤγγικεν +ἡ +βασιλεία +τῶν +οὐρανῶν. +ἀσθενοῦντας +θεραπεύετε, +νεκροὺς +ἐγείρετε, +λεπροὺς +καθαρίζετε, +δαιμόνια +ἐκβάλλετε· +δωρεὰν +ἐλάβετε, +δωρεὰν +δότε. +Μὴ +κτήσησθε +χρυσὸν +μηδὲ +ἄργυρον +μηδὲ +χαλκὸν +εἰς +τὰς +ζώνας +ὑμῶν, +μὴ +πήραν +εἰς +ὁδὸν +μηδὲ +δύο +χιτῶνας +μηδὲ +ὑποδήματα +μηδὲ +ῥάβδον· +γὰρ +ἄξιος +ὁ +ἐργάτης +τῆς +τροφῆς +αὐτοῦ. +δ’ +ἂν +εἰς +ἣν +πόλιν +ἢ +κώμην +εἰσέλθητε, +ἐξετάσατε +τίς +ἐν +αὐτῇ +ἄξιός +ἐστιν· +κἀκεῖ +μείνατε +ἕως +ἂν +ἐξέλθητε. +δὲ +εἰσερχόμενοι +εἰς +τὴν +οἰκίαν +ἀσπάσασθε +αὐτήν· +καὶ +μὲν +ἐὰν +ᾖ +ἡ +οἰκία +ἀξία, +ἐλθάτω +ἡ +εἰρήνη +ὑμῶν +ἐπ’ +αὐτήν· +δὲ +ἐὰν +μὴ +ᾖ +ἀξία, +ἡ +εἰρήνη +ὑμῶν +πρὸς +ὑμᾶς +ἐπιστραφήτω. +καὶ +ἂν +ὃς +μὴ +δέξηται +ὑμᾶς +μηδὲ +ἀκούσῃ +τοὺς +λόγους +ὑμῶν, +ἐξερχόμενοι +ἔξω +τῆς +οἰκίας +ἢ +τῆς +πόλεως +ἐκείνης +ἐκτινάξατε +τὸν +κονιορτὸν +τῶν +ποδῶν +ὑμῶν. +ἀμὴν +λέγω +ὑμῖν, +ἀνεκτότερον +ἔσται +γῇ +Σοδόμων +καὶ +Γομόρρων +ἐν +ἡμέρᾳ +κρίσεως +ἢ +τῇ +πόλει +ἐκείνῃ. +Ἰδοὺ +ἐγὼ +ἀποστέλλω +ὑμᾶς +ὡς +πρόβατα +ἐν +μέσῳ +λύκων· +οὖν +γίνεσθε +φρόνιμοι +ὡς +οἱ +ὄφεις +καὶ +ἀκέραιοι +ὡς +αἱ +περιστεραί. +δὲ +Προσέχετε +ἀπὸ +τῶν +ἀνθρώπων· +γὰρ +παραδώσουσιν +ὑμᾶς +εἰς +συνέδρια, +καὶ +ἐν +ταῖς +συναγωγαῖς +αὐτῶν +μαστιγώσουσιν +ὑμᾶς· +δὲ +καὶ +ἐπὶ +ἡγεμόνας +καὶ +βασιλεῖς +ἀχθήσεσθε +ἕνεκεν +ἐμοῦ, +εἰς +μαρτύριον +αὐτοῖς +καὶ +τοῖς +ἔθνεσιν. +δὲ +ὅταν +παραδῶσιν +ὑμᾶς, +μὴ +μεριμνήσητε +πῶς +ἢ +τί +λαλήσητε· +γὰρ +δοθήσεται +ὑμῖν +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +τί +λαλήσητε· +γὰρ +οὐ +ὑμεῖς +ἐστε +οἱ +λαλοῦντες +ἀλλὰ +τὸ +Πνεῦμα +τοῦ +Πατρὸς +ὑμῶν +τὸ +λαλοῦν +ἐν +ὑμῖν. +δὲ +παραδώσει +ἀδελφὸς +ἀδελφὸν +εἰς +θάνατον +καὶ +πατὴρ +τέκνον, +καὶ +ἐπαναστήσονται +τέκνα +ἐπὶ +γονεῖς +καὶ +θανατώσουσιν +αὐτούς. +καὶ +ἔσεσθε +μισούμενοι +ὑπὸ +πάντων +διὰ +τὸ +ὄνομά +μου· +δὲ +ὁ +ὑπομείνας +εἰς +τέλος, +οὗτος +σωθήσεται. +δὲ +ὅταν +διώκωσιν +ὑμᾶς +ἐν +τῇ +πόλει +ταύτῃ, +φεύγετε +εἰς +τὴν +ἑτέραν· +γὰρ +ἀμὴν +λέγω +ὑμῖν, +οὐ +μὴ +τελέσητε +τὰς +πόλεις +τοῦ +Ἰσραὴλ +ἕως +ἔλθῃ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου. +Οὐκ +ἔστιν +μαθητὴς +ὑπὲρ +τὸν +διδάσκαλον +οὐδὲ +δοῦλος +ὑπὲρ +τὸν +κύριον +αὐτοῦ. +ἀρκετὸν +τῷ +μαθητῇ +ἵνα +γένηται +ὡς +ὁ +διδάσκαλος +αὐτοῦ, +καὶ +ὁ +δοῦλος +ὡς +ὁ +κύριος +αὐτοῦ. +εἰ +τὸν +οἰκοδεσπότην +Βεελζεβοὺλ +ἐπεκάλεσαν, +πόσῳ +μᾶλλον +τοὺς +οἰκιακοὺς +αὐτοῦ. +οὖν +μὴ +φοβηθῆτε +αὐτούς· +γάρ +οὐδὲν +ἐστιν +κεκαλυμμένον +ὃ +οὐκ +ἀποκαλυφθήσεται, +καὶ +κρυπτὸν +ὃ +οὐ +γνωσθήσεται. +ὃ +λέγω +ὑμῖν +ἐν +τῇ +σκοτίᾳ, +εἴπατε +ἐν +τῷ +φωτί· +καὶ +ὃ +εἰς +τὸ +οὖς +ἀκούετε, +κηρύξατε +ἐπὶ +τῶν +δωμάτων. +καὶ +μὴ +φοβεῖσθε +ἀπὸ +τῶν +ἀποκτεννόντων +τὸ +σῶμα, +δὲ +μὴ +δυναμένων +τὴν +ψυχὴν +ἀποκτεῖναι· +δὲ +φοβεῖσθε +μᾶλλον +τὸν +δυνάμενον +καὶ +ψυχὴν +καὶ +σῶμα +ἀπολέσαι +ἐν +γεέννῃ. +οὐχὶ +δύο +στρουθία +ἀσσαρίου +πωλεῖται; +καὶ +ἓν +ἐξ +αὐτῶν +οὐ +πεσεῖται +ἐπὶ +τὴν +γῆν +ἄνευ +τοῦ +Πατρὸς +ὑμῶν. +δὲ +καὶ +ὑμῶν +αἱ +τρίχες +τῆς +κεφαλῆς +πᾶσαι +ἠριθμημέναι +εἰσίν. +οὖν +μὴ +φοβεῖσθε· +πολλῶν +στρουθίων +διαφέρετε +ὑμεῖς. +οὖν +Πᾶς +ὅστις +ὁμολογήσει +ἐν +ἐμοὶ +ἔμπροσθεν +τῶν +ἀνθρώπων, +ὁμολογήσω +κἀγὼ +ἐν +αὐτῷ +ἔμπροσθεν +τοῦ +Πατρός +μου +τοῦ +ἐν +τοῖς +οὐρανοῖς· +δ’ +ἂν +ὅστις +ἀρνήσηταί +με +ἔμπροσθεν +τῶν +ἀνθρώπων, +ἀρνήσομαι +κἀγὼ +αὐτὸν +ἔμπροσθεν +τοῦ +Πατρός +μου +τοῦ +ἐν +τοῖς +οὐρανοῖς. +Μὴ +νομίσητε +ὅτι +ἦλθον +βαλεῖν +εἰρήνην +ἐπὶ +τὴν +γῆν· +οὐκ +ἦλθον +βαλεῖν +εἰρήνην +ἀλλὰ +μάχαιραν. +γὰρ +ἦλθον +διχάσαι +ἄνθρωπον +κατὰ +τοῦ +πατρὸς +αὐτοῦ +καὶ +θυγατέρα +κατὰ +τῆς +μητρὸς +αὐτῆς +καὶ +νύμφην +κατὰ +τῆς +πενθερᾶς +αὐτῆς, +καὶ +ἐχθροὶ +τοῦ +ἀνθρώπου +οἱ +οἰκιακοὶ +αὐτοῦ. +Ὁ +φιλῶν +πατέρα +ἢ +μητέρα +ὑπὲρ +ἐμὲ +οὐκ +ἔστιν +μου +ἄξιος· +καὶ +ὁ +φιλῶν +υἱὸν +ἢ +θυγατέρα +ὑπὲρ +ἐμὲ +οὐκ +ἔστιν +μου +ἄξιος· +καὶ +ὃς +οὐ +λαμβάνει +τὸν +σταυρὸν +αὐτοῦ +καὶ +ἀκολουθεῖ +ὀπίσω +μου, +οὐκ +ἔστιν +μου +ἄξιος. +ὁ +εὑρὼν +τὴν +ψυχὴν +αὐτοῦ +ἀπολέσει +αὐτήν, +καὶ +ὁ +ἀπολέσας +τὴν +ψυχὴν +αὐτοῦ +ἕνεκεν +ἐμοῦ +εὑρήσει +αὐτήν. +Ὁ +δεχόμενος +ὑμᾶς +ἐμὲ +δέχεται, +καὶ +ὁ +ἐμὲ +δεχόμενος +δέχεται +τὸν +ἀποστείλαντά +με. +ὁ +δεχόμενος +προφήτην +εἰς +ὄνομα +προφήτου +μισθὸν +προφήτου +λήμψεται, +καὶ +ὁ +δεχόμενος +δίκαιον +εἰς +ὄνομα +δικαίου +μισθὸν +δικαίου +λήμψεται. +καὶ +ἐὰν +ὃς +ποτίσῃ +ἕνα +τῶν +μικρῶν +τούτων +ποτήριον +ψυχροῦ +μόνον +εἰς +ὄνομα +μαθητοῦ, +ἀμὴν +λέγω +ὑμῖν, +οὐ +μὴ +ἀπολέσῃ +τὸν +μισθὸν +αὐτοῦ. +Καὶ +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +διατάσσων +τοῖς +δώδεκα +μαθηταῖς +αὐτοῦ, +μετέβη +ἐκεῖθεν +τοῦ +διδάσκειν +καὶ +κηρύσσειν +ἐν +ταῖς +πόλεσιν +αὐτῶν. +δὲ +Ὁ +Ἰωάνης +ἀκούσας +ἐν +τῷ +δεσμωτηρίῳ +τὰ +ἔργα +τοῦ +Χριστοῦ, +πέμψας +διὰ +τῶν +μαθητῶν +αὐτοῦ +εἶπεν +αὐτῷ +Σὺ +εἶ +ὁ +ἐρχόμενος, +ἢ +ἕτερον +προσδοκῶμεν; +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Πορευθέντες +ἀπαγγείλατε +Ἰωάνει +ἃ +ἀκούετε +καὶ +βλέπετε· +τυφλοὶ +ἀναβλέπουσιν +καὶ +χωλοὶ +περιπατοῦσιν, +λεπροὶ +καθαρίζονται +καὶ +κωφοὶ +ἀκούουσιν, +καὶ +νεκροὶ +ἐγείρονται +καὶ +πτωχοὶ +εὐαγγελίζονται· +καὶ +μακάριός +ἐστιν +ἐὰν +ὃς +μὴ +σκανδαλισθῇ +ἐν +ἐμοί. +δὲ +Τούτων +πορευομένων +ἤρξατο +ὁ +Ἰησοῦς +λέγειν +τοῖς +ὄχλοις +περὶ +Ἰωάνου +Τί +θεάσασθαι; +ἐξήλθατε +εἰς +τὴν +ἔρημον +κάλαμον +ὑπὸ +ἀνέμου +σαλευόμενον; +ἀλλὰ +τί +ἰδεῖν; +ἐξήλθατε +ἄνθρωπον +ἐν +μαλακοῖς +ἠμφιεσμένον; +ἰδοὺ +οἱ +τὰ +μαλακὰ +φοροῦντες +ἐν +τοῖς +οἴκοις +τῶν +βασιλέων. +ἀλλὰ +τί +ἐξήλθατε; +προφήτην +ἰδεῖν; +ναί, +λέγω +ὑμῖν, +καὶ +περισσότερον +προφήτου. +οὗτός +ἐστιν +περὶ +οὗ +γέγραπται +Ἰδοὺ +ἐγὼ +ἀποστέλλω +τὸν +ἄγγελόν +μου +πρὸ +προσώπου +σου, +ὃς +κατασκευάσει +τὴν +ὁδόν +σου +ἔμπροσθέν +σου. +ἀμὴν +λέγω +ὑμῖν, +οὐκ +ἐγήγερται +ἐν +γεννητοῖς +γυναικῶν +μείζων +Ἰωάνου +τοῦ +Βαπτιστοῦ· +δὲ +ὁ +μικρότερος +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +μείζων +αὐτοῦ +ἐστιν. +δὲ +ἀπὸ +τῶν +ἡμερῶν +Ἰωάνου +τοῦ +Βαπτιστοῦ +ἕως +ἄρτι +ἡ +βασιλεία +τῶν +οὐρανῶν +βιάζεται, +καὶ +βιασταὶ +ἁρπάζουσιν +αὐτήν. +γὰρ +πάντες +οἱ +προφῆται +καὶ +ὁ +νόμος +ἕως +Ἰωάνου +ἐπροφήτευσαν· +καὶ +εἰ +θέλετε +δέξασθαι, +αὐτός +ἐστιν +Ἠλείας +ὁ +μέλλων +ἔρχεσθαι. +ὁ +ἔχων +ὦτα +ἀκουέτω. +δὲ +Τίνι +ὁμοιώσω +τὴν +γενεὰν +ταύτην; +ὁμοία +ἐστὶν +παιδίοις +καθημένοις +ἐν +ταῖς +ἀγοραῖς +ἃ +προσφωνοῦντα +τοῖς +ἑτέροις +λέγουσιν +Ηὐλήσαμεν +ὑμῖν +καὶ +οὐκ +ὠρχήσασθε· +ἐθρηνήσαμεν +καὶ +οὐκ +ἐκόψασθε· +γὰρ +ἦλθεν +Ἰωάνης +μήτε +ἐσθίων +μήτε +πίνων, +καὶ +λέγουσιν +Δαιμόνιον +ἔχει. +ἦλθεν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐσθίων +καὶ +πίνων, +καὶ +λέγουσιν +Ἰδοὺ +ἄνθρωπος +φάγος +καὶ +οἰνοπότης, +φίλος +τελωνῶν +καὶ +ἁμαρτωλῶν. +καὶ +ἐδικαιώθη +ἡ +σοφία +ἀπὸ +τῶν +ἔργων +αὐτῆς. +Τότε +ἤρξατο +ὀνειδίζειν +τὰς +πόλεις +ἐν +αἷς +ἐγένοντο +αἱ +πλεῖσται +δυνάμεις +αὐτοῦ, +ὅτι +οὐ +μετενόησαν· +Οὐαί +σοι, +Χοραζείν· +οὐαί +σοι, +Βηθσαϊδάν· +ὅτι +εἰ +ἐν +Τύρῳ +καὶ +Σιδῶνι +ἐγένοντο +αἱ +δυνάμεις +αἱ +γενόμεναι +ἐν +ὑμῖν, +ἂν +πάλαι +ἐν +σάκκῳ +καὶ +σποδῷ +μετενόησαν. +πλὴν +λέγω +ὑμῖν, +Τύρῳ +καὶ +Σιδῶνι +ἀνεκτότερον +ἔσται +ἐν +ἡμέρᾳ +κρίσεως +ἢ +ὑμῖν. +καὶ +Καφαρναούμ, +μὴ +σύ, +ἕως +οὐρανοῦ +ὑψωθήσῃ; +ἕως +Ἅιδου +καταβήσῃ· +ὅτι +εἰ +ἐν +Σοδόμοις +ἐγενήθησαν +αἱ +δυνάμεις +αἱ +γενόμεναι +ἐν +σοί, +ἂν +ἔμεινεν +μέχρι +τῆς +σήμερον. +πλὴν +λέγω +ὑμῖν +ὅτι +γῇ +Σοδόμων +ἀνεκτότερον +ἔσται +ἐν +ἡμέρᾳ +κρίσεως +ἢ +σοί. +Ἐν +ἐκείνῳ +τῷ +καιρῷ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +Ἐξομολογοῦμαί +σοι, +Πάτερ, +Κύριε +τοῦ +οὐρανοῦ +καὶ +τῆς +γῆς, +ὅτι +ἔκρυψας +ταῦτα +ἀπὸ +σοφῶν +καὶ +συνετῶν, +καὶ +ἀπεκάλυψας +αὐτὰ +νηπίοις· +ναί, +ὁ +Πατήρ, +ὅτι +οὕτως +εὐδοκία +ἐγένετο +ἔμπροσθέν +σου. +Πάντα +μοι +παρεδόθη +ὑπὸ +τοῦ +Πατρός +μου, +καὶ +οὐδεὶς +ἐπιγινώσκει +τὸν +Υἱὸν +εἰ +μὴ +ὁ +Πατήρ, +οὐδὲ +τὸν +Πατέρα +τις +ἐπιγινώσκει +εἰ +μὴ +ὁ +Υἱὸς +καὶ +ἐὰν +ᾧ +ἀποκαλύψαι. +βούληται +ὁ +Υἱὸς +Δεῦτε +πρός +με +πάντες +οἱ +κοπιῶντες +καὶ +πεφορτισμένοι, +κἀγὼ +ἀναπαύσω +ὑμᾶς. +ἄρατε +τὸν +ζυγόν +μου +ἐφ’ +ὑμᾶς +καὶ +μάθετε +ἀπ’ +ἐμοῦ, +ὅτι +εἰμι +πραΰς +καὶ +ταπεινὸς +τῇ +καρδίᾳ, +καὶ +εὑρήσετε +ἀνάπαυσιν +ταῖς +ψυχαῖς +ὑμῶν· +γὰρ +ὁ +ζυγός +μου +χρηστὸς +καὶ +τὸ +φορτίον +μου +ἐλαφρόν +ἐστιν. +Ἐν +ἐκείνῳ +τῷ +καιρῷ +ἐπορεύθη +ὁ +Ἰησοῦς +τοῖς +σάββασιν +διὰ +τῶν +σπορίμων· +δὲ +οἱ +μαθηταὶ +αὐτοῦ +ἐπείνασαν +καὶ +ἤρξαντο +τίλλειν +στάχυας +καὶ +ἐσθίειν. +δὲ +οἱ +Φαρισαῖοι +ἰδόντες +εἶπαν +αὐτῷ +Ἰδοὺ +οἱ +μαθηταί +σου +ποιοῦσιν +ὃ +ποιεῖν +οὐκ +ἔξεστιν +ἐν +σαββάτῳ. +δὲ +ὁ +εἶπεν +αὐτοῖς +Οὐκ +ἀνέγνωτε +τί +ἐποίησεν +Δαυεὶδ +ὅτε +ἐπείνασεν +καὶ +οἱ +μετ’ +αὐτοῦ; +πῶς +εἰσῆλθεν +εἰς +τὸν +οἶκον +τοῦ +Θεοῦ +καὶ +τοὺς +ἄρτους +τῆς +προθέσεως +ἔφαγον, +ὃ +φαγεῖν +οὐκ +ἐξὸν +ἦν +αὐτῷ +οὐδὲ +τοῖς +μετ’ +αὐτοῦ, +εἰ +μὴ +τοῖς +ἱερεῦσιν +μόνοις; +ἢ +οὐκ +ἀνέγνωτε +ἐν +τῷ +νόμῳ +ὅτι +τοῖς +σάββασιν +οἱ +ἱερεῖς +ἐν +τῷ +ἱερῷ +τὸ +σάββατον +βεβηλοῦσιν +καὶ +ἀναίτιοί +εἰσιν; +δὲ +λέγω +ὑμῖν +ὅτι +τοῦ +ἱεροῦ +μεῖζόν +ἐστιν +ὧδε. +δὲ +εἰ +ἐγνώκειτε +τί +ἐστιν +Ἔλεος +θέλω +καὶ +οὐ +θυσίαν, +ἂν +οὐκ +κατεδικάσατε +τοὺς +ἀναιτίους. +γάρ +ἐστιν +κύριος +τοῦ +σαββάτου +ὁ +Υἱὸς +τοῦ +ἀνθρώπου. +Καὶ +μεταβὰς +ἐκεῖθεν +ἦλθεν +εἰς +τὴν +συναγωγὴν +αὐτῶν. +καὶ +ἰδοὺ +ἄνθρωπος +χεῖρα +ἔχων +ξηράν· +καὶ +ἐπηρώτησαν +αὐτὸν +λέγοντες +Εἰ +ἔξεστιν +τοῖς +σάββασιν +θεραπεῦσαι; +ἵνα +κατηγορήσωσιν +αὐτοῦ. +δὲ +ὁ +εἶπεν +αὐτοῖς +Τίς +ἔσται +ἐξ +ὑμῶν +ἄνθρωπος +ὃς +ἕξει +πρόβατον +ἕν, +καὶ +ἐὰν +ἐμπέσῃ +τοῦτο +τοῖς +σάββασιν +εἰς +βόθυνον, +οὐχὶ +κρατήσει +αὐτὸ +καὶ +ἐγερεῖ; +οὖν +πόσῳ +διαφέρει +ἄνθρωπος +προβάτου. +ὥστε +ἔξεστιν +τοῖς +σάββασιν +καλῶς +ποιεῖν. +τότε +λέγει +τῷ +ἀνθρώπῳ +Ἔκτεινόν +σου +τὴν +χεῖρα. +καὶ +ἐξέτεινεν, +καὶ +ἀπεκατεστάθη +ὑγιὴς +ὡς +ἡ +ἄλλη. +δὲ +ἐξελθόντες +οἱ +Φαρισαῖοι +συμβούλιον +ἔλαβον +κατ’ +αὐτοῦ +ὅπως +αὐτὸν +ἀπολέσωσιν. +δὲ +Ὁ +Ἰησοῦς +γνοὺς +ἀνεχώρησεν +ἐκεῖθεν. +καὶ +ἠκολούθησαν +αὐτῷ +πολλοί, +καὶ +ἐθεράπευσεν +αὐτοὺς +πάντας, +καὶ +ἐπετίμησεν +αὐτοῖς +ἵνα +μὴ +φανερὸν +αὐτὸν +ποιήσωσιν· +ἵνα +πληρωθῇ +τὸ +ῥηθὲν +διὰ +Ἠσαΐου +τοῦ +προφήτου +λέγοντος +Ἰδοὺ +ὁ +παῖς +μου +ὃν +ᾑρέτισα, +ὁ +ἀγαπητός +μου +ὃν +εὐδόκησεν +ἡ +ψυχή +μου· +θήσω +τὸ +Πνεῦμά +μου +ἐπ’ +αὐτόν, +καὶ +κρίσιν +τοῖς +ἔθνεσιν +ἀπαγγελεῖ. +οὐκ +ἐρίσει +οὐδὲ +κραυγάσει, +οὐδὲ +ἀκούσει +τις +ἐν +ταῖς +πλατείαις +τὴν +φωνὴν +αὐτοῦ. +κάλαμον +συντετριμμένον +οὐ +κατεάξει +καὶ +λίνον +τυφόμενον +οὐ +σβέσει, +ἕως +ἂν +ἐκβάλῃ +εἰς +νῖκος +τὴν +κρίσιν. +καὶ +τῷ +ὀνόματι +αὐτοῦ +ἔθνη +ἐλπιοῦσιν. +Τότε +προσηνέχθη +αὐτῷ +δαιμονιζόμενος +τυφλὸς +καὶ +κωφός· +καὶ +ἐθεράπευσεν +αὐτόν, +ὥστε +τὸν +κωφὸν +λαλεῖν +καὶ +βλέπειν. +καὶ +ἐξίσταντο +πάντες +οἱ +ὄχλοι +καὶ +ἔλεγον +Μήτι +οὗτός +ἐστιν +ὁ +υἱὸς +Δαυείδ; +δὲ +οἱ +Φαρισαῖοι +ἀκούσαντες +εἶπον +Οὗτος +οὐκ +ἐκβάλλει +τὰ +δαιμόνια +εἰ +μὴ +ἐν +τῷ +Βεελζεβοὺλ +ἄρχοντι +τῶν +δαιμονίων. +δὲ +εἰδὼς +τὰς +ἐνθυμήσεις +αὐτῶν +εἶπεν +αὐτοῖς +Πᾶσα +βασιλεία +μερισθεῖσα +καθ’ +ἑαυτῆς +ἐρημοῦται, +καὶ +πᾶσα +πόλις +ἢ +οἰκία +μερισθεῖσα +καθ’ +ἑαυτῆς +οὐ +σταθήσεται. +καὶ +εἰ +ὁ +Σατανᾶς +τὸν +Σατανᾶν +ἐκβάλλει, +ἐφ’ +ἑαυτὸν +ἐμερίσθη· +οὖν +πῶς +σταθήσεται +ἡ +βασιλεία +αὐτοῦ; +καὶ +εἰ +ἐγὼ +ἐν +Βεελζεβοὺλ +ἐκβάλλω +τὰ +δαιμόνια, +οἱ +υἱοὶ +ὑμῶν +ἐν +τίνι +ἐκβάλλουσιν; +διὰ +τοῦτο +αὐτοὶ +κριταὶ +ὑμῶν. +ἔσονται +δὲ +εἰ +ἐν +Πνεύματι +Θεοῦ +ἐγὼ +ἐκβάλλω +τὰ +δαιμόνια, +ἄρα +ἔφθασεν +ἐφ’ +ὑμᾶς +ἡ +βασιλεία +τοῦ +Θεοῦ. +ἢ +πῶς +δύναταί +τις +εἰσελθεῖν +εἰς +τὴν +οἰκίαν +τοῦ +ἰσχυροῦ +καὶ +τὰ +σκεύη +αὐτοῦ +ἁρπάσαι, +ἐὰν +μὴ +πρῶτον +δήσῃ +τὸν +ἰσχυρόν, +καὶ +τότε +τὴν +οἰκίαν +αὐτοῦ +διαρπάσει; +ὁ +μὴ +ὢν +μετ’ +ἐμοῦ +κατ’ +ἐμοῦ +ἐστιν, +καὶ +ὁ +μὴ +συνάγων +μετ’ +ἐμοῦ +σκορπίζει. +Διὰ +τοῦτο +λέγω +ὑμῖν, +πᾶσα +ἁμαρτία +καὶ +βλασφημία +ἀφεθήσεται +τοῖς +ἀνθρώποις, +δὲ +ἡ +τοῦ +Πνεύματος +βλασφημία +οὐκ +ἀφεθήσεται. +καὶ +ἐὰν +ὃς +εἴπῃ +λόγον +κατὰ +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου, +ἀφεθήσεται +αὐτῷ· +δ’ +ἂν +ὃς +εἴπῃ +κατὰ +τοῦ +Πνεύματος +τοῦ +Ἁγίου, +οὐκ +ἀφεθήσεται +αὐτῷ +οὔτε +ἐν +τούτῳ +τῷ +αἰῶνι +οὔτε +ἐν +τῷ +μέλλοντι. +Ἢ +ποιήσατε +τὸ +δένδρον +καλὸν +καὶ +τὸν +καρπὸν +αὐτοῦ +καλόν, +ἢ +ποιήσατε +τὸ +δένδρον +σαπρὸν +καὶ +τὸν +καρπὸν +αὐτοῦ +σαπρόν· +γὰρ +ἐκ +τοῦ +καρποῦ +τὸ +δένδρον +γινώσκεται. +γεννήματα +ἐχιδνῶν, +πῶς +δύνασθε +ἀγαθὰ +λαλεῖν +πονηροὶ +ὄντες; +γὰρ +ἐκ +τοῦ +περισσεύματος +τῆς +καρδίας +τὸ +στόμα +λαλεῖ. +ὁ +ἀγαθὸς +ἄνθρωπος +ἐκ +τοῦ +ἀγαθοῦ +θησαυροῦ +ἐκβάλλει +ἀγαθά, +καὶ +ὁ +πονηρὸς +ἄνθρωπος +ἐκ +τοῦ +πονηροῦ +θησαυροῦ +ἐκβάλλει +πονηρά. +δὲ +λέγω +ὑμῖν +ὅτι +πᾶν +ῥῆμα +ἀργὸν +ὃ +λαλήσουσιν +οἱ +ἄνθρωποι, +ἀποδώσουσιν +περὶ +αὐτοῦ +λόγον +ἐν +ἡμέρᾳ +κρίσεως· +γὰρ +ἐκ +τῶν +λόγων +σου +δικαιωθήσῃ, +καὶ +ἐκ +τῶν +λόγων +σου +καταδικασθήσῃ. +Τότε +ἀπεκρίθησαν +αὐτῷ +τινες +τῶν +γραμματέων +καὶ +Φαρισαίων +λέγοντες +Διδάσκαλε, +θέλομεν +ἀπὸ +σοῦ +σημεῖον +ἰδεῖν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Γενεὰ +πονηρὰ +καὶ +μοιχαλὶς +σημεῖον +ἐπιζητεῖ, +καὶ +σημεῖον +οὐ +δοθήσεται +αὐτῇ +εἰ +μὴ +τὸ +σημεῖον +Ἰωνᾶ +τοῦ +προφήτου. +γὰρ +ὥσπερ +ἦν +Ἰωνᾶς +ἐν +τῇ +κοιλίᾳ +τοῦ +κήτους +τρεῖς +ἡμέρας +καὶ +τρεῖς +νύκτας, +οὕτως +ἔσται +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐν +τῇ +καρδίᾳ +τῆς +γῆς +τρεῖς +ἡμέρας +καὶ +τρεῖς +νύκτας. +ἄνδρες +Νινευεῖται +ἀναστήσονται +ἐν +τῇ +κρίσει +μετὰ +τῆς +γενεᾶς +ταύτης +καὶ +κατακρινοῦσιν +αὐτήν· +ὅτι +μετενόησαν +εἰς +τὸ +κήρυγμα +Ἰωνᾶ, +καὶ +ἰδοὺ +πλεῖον +Ἰωνᾶ +ὧδε. +βασίλισσα +νότου +ἐγερθήσεται +ἐν +τῇ +κρίσει +μετὰ +τῆς +γενεᾶς +ταύτης +καὶ +κατακρινεῖ +αὐτήν· +ὅτι +ἦλθεν +ἐκ +τῶν +περάτων +τῆς +γῆς +ἀκοῦσαι +τὴν +σοφίαν +Σολομῶνος, +καὶ +ἰδοὺ +πλεῖον +Σολομῶνος +ὧδε. +δὲ +Ὅταν +τὸ +ἀκάθαρτον +πνεῦμα +ἐξέλθῃ +ἀπὸ +τοῦ +ἀνθρώπου, +διέρχεται +δι’ +ἀνύδρων +τόπων +ζητοῦν +ἀνάπαυσιν, +καὶ +οὐχ +εὑρίσκει. +τότε +λέγει +Εἰς +τὸν +οἶκόν +μου +ἐπιστρέψω +ὅθεν +ἐξῆλθον· +καὶ +ἐλθὸν +εὑρίσκει +σχολάζοντα +καὶ +σεσαρωμένον +καὶ +κεκοσμημένον. +τότε +πορεύεται +καὶ +παραλαμβάνει +μεθ’ +ἑαυτοῦ +ἑπτὰ +ἕτερα +πνεύματα +πονηρότερα +ἑαυτοῦ, +καὶ +εἰσελθόντα +κατοικεῖ +ἐκεῖ· +καὶ +γίνεται +τὰ +ἔσχατα +τοῦ +ἀνθρώπου +ἐκείνου +χείρονα +τῶν +πρώτων. +οὕτως +ἔσται +καὶ +τῇ +γενεᾷ +ταύτῃ +τῇ +πονηρᾷ. +Ἔτι +αὐτοῦ +λαλοῦντος +τοῖς +ὄχλοις +ἰδοὺ +ἡ +μήτηρ +καὶ +οἱ +ἀδελφοὶ +αὐτοῦ +εἱστήκεισαν +ἔξω +ζητοῦντες +αὐτῷ +λαλῆσαι. +δέ +εἶπεν +τις +αὐτῷ +Ἰδοὺ +ἡ +μήτηρ +σου +καὶ +οἱ +ἀδελφοί +σου +ἔξω +ἑστήκασιν +ζητοῦντές +σοι +λαλῆσαι. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +τῷ +λέγοντι +αὐτῷ +Τίς +ἐστιν +ἡ +μήτηρ +μου, +καὶ +τίνες +εἰσὶν +οἱ +ἀδελφοί +μου; +καὶ +ἐκτείνας +τὴν +χεῖρα +αὐτοῦ +ἐπὶ +τοὺς +μαθητὰς +αὐτοῦ +εἶπεν +Ἰδοὺ +ἡ +μήτηρ +μου +καὶ +οἱ +ἀδελφοί +μου· +γὰρ +ἂν +ὅστις +ποιήσῃ +τὸ +θέλημα +τοῦ +Πατρός +μου +τοῦ +ἐν +οὐρανοῖς, +αὐτός +μου +ἀδελφὸς +καὶ +ἀδελφὴ +καὶ +μήτηρ +ἐστίν. +Ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ὁ +Ἰησοῦς +ἐξελθὼν +τῆς +οἰκίας +ἐκάθητο +παρὰ +τὴν +θάλασσαν· +καὶ +συνήχθησαν +πρὸς +αὐτὸν +ὄχλοι +πολλοί, +ὥστε +αὐτὸν +εἰς +πλοῖον +ἐμβάντα +καθῆσθαι, +καὶ +πᾶς +ὁ +ὄχλος +ἐπὶ +τὸν +αἰγιαλὸν +εἱστήκει. +καὶ +ἐλάλησεν +αὐτοῖς +πολλὰ +ἐν +παραβολαῖς +λέγων +Ἰδοὺ +ἐξῆλθεν +ὁ +σπείρων +τοῦ +σπείρειν. +καὶ +ἐν +τῷ +σπείρειν +αὐτὸν +μὲν +ἃ +ἔπεσεν +παρὰ +τὴν +ὁδόν, +καὶ +ἐλθόντα +τὰ +πετεινὰ +κατέφαγεν +αὐτά. +δὲ +ἄλλα +ἔπεσεν +ἐπὶ +τὰ +πετρώδη +ὅπου +οὐκ +εἶχεν +γῆν +πολλήν, +καὶ +εὐθέως +ἐξανέτειλεν +διὰ +τὸ +μὴ +ἔχειν +βάθος +γῆς, +δὲ +ἡλίου +ἀνατείλαντος +ἐκαυματίσθη +καὶ +διὰ +τὸ +μὴ +ἔχειν +ῥίζαν +ἐξηράνθη. +δὲ +ἄλλα +ἔπεσεν +ἐπὶ +τὰς +ἀκάνθας, +καὶ +ἀνέβησαν +αἱ +ἄκανθαι +καὶ +ἀπέπνιξαν +αὐτά. +δὲ +ἄλλα +ἔπεσεν +ἐπὶ +τὴν +γῆν +τὴν +καλὴν +καὶ +ἐδίδου +καρπόν, +μὲν +ὃ +ἑκατὸν +δὲ +ὃ +ἑξήκοντα +δὲ +ὃ +τριάκοντα. +ὁ +ἔχων +ὦτα +ἀκουέτω. +Καὶ +προσελθόντες +οἱ +μαθηταὶ +εἶπαν +αὐτῷ +Διὰ +τί +ἐν +παραβολαῖς +λαλεῖς +αὐτοῖς; +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +ὅτι +Ὑμῖν +δέδοται +γνῶναι +τὰ +μυστήρια +τῆς +βασιλείας +τῶν +οὐρανῶν, +δὲ +ἐκείνοις +οὐ +δέδοται. +γὰρ +ὅστις +ἔχει, +δοθήσεται +αὐτῷ +καὶ +περισσευθήσεται· +δὲ +ὅστις +οὐκ +ἔχει, +καὶ +ὃ +ἔχει +ἀρθήσεται +ἀπ’ +αὐτοῦ. +διὰ +τοῦτο +ἐν +παραβολαῖς +αὐτοῖς +λαλῶ, +ὅτι +βλέποντες +οὐ +βλέπουσιν +καὶ +ἀκούοντες +οὐκ +ἀκούουσιν +οὐδὲ +συνίουσιν. +καὶ +ἀναπληροῦται +αὐτοῖς +ἡ +προφητεία +Ἠσαΐου +ἡ +λέγουσα +Ἀκοῇ +ἀκούσετε +καὶ +οὐ +μὴ +συνῆτε, +καὶ +βλέποντες +βλέψετε +καὶ +οὐ +μὴ +ἴδητε. +γὰρ +ἐπαχύνθη +ἡ +καρδία +τοῦ +λαοῦ +τούτου, +καὶ +τοῖς +ὠσὶν +βαρέως +ἤκουσαν, +καὶ +τοὺς +ὀφθαλμοὺς +αὐτῶν +ἐκάμμυσαν· +μή +ποτε +ἴδωσιν +τοῖς +ὀφθαλμοῖς +καὶ +τοῖς +ὠσὶν +ἀκούσωσιν +καὶ +τῇ +καρδίᾳ +συνῶσιν +καὶ +ἐπιστρέψωσιν, +καὶ +ἰάσομαι +αὐτούς. +δὲ +μακάριοι +ὑμῶν +οἱ +ὀφθαλμοὶ +ὅτι +βλέπουσιν, +καὶ +τὰ +ὦτα +ὑμῶν +ὅτι +ἀκούουσιν. +γὰρ +ἀμὴν +λέγω +ὑμῖν +ὅτι +πολλοὶ +προφῆται +καὶ +δίκαιοι +ἐπεθύμησαν +ἰδεῖν +ἃ +βλέπετε +καὶ +οὐκ +εἶδαν, +καὶ +ἀκοῦσαι +ἃ +ἀκούετε +καὶ +οὐκ +ἤκουσαν. +οὖν +Ὑμεῖς +ἀκούσατε +τὴν +παραβολὴν +τοῦ +σπείραντος. +Παντὸς +ἀκούοντος +τὸν +λόγον +τῆς +βασιλείας +καὶ +μὴ +συνιέντος, +ἔρχεται +ὁ +πονηρὸς +καὶ +ἁρπάζει +τὸ +ἐσπαρμένον +ἐν +τῇ +καρδίᾳ +αὐτοῦ· +οὗτός +ἐστιν +ὁ +παρὰ +τὴν +ὁδὸν +σπαρείς. +δὲ +ὁ +ἐπὶ +τὰ +πετρώδη +σπαρείς, +οὗτός +ἐστιν +ὁ +τὸν +λόγον +ἀκούων +καὶ +εὐθὺς +μετὰ +χαρᾶς +λαμβάνων +αὐτόν· +δὲ +οὐκ +ἔχει +ῥίζαν +ἐν +ἑαυτῷ +ἀλλὰ +πρόσκαιρός +ἐστιν, +δὲ +γενομένης +θλίψεως +ἢ +διωγμοῦ +διὰ +τὸν +λόγον +εὐθὺς +σκανδαλίζεται. +δὲ +ὁ +εἰς +τὰς +ἀκάνθας +σπαρείς, +οὗτός +ἐστιν +ὁ +τὸν +λόγον +ἀκούων, +καὶ +ἡ +μέριμνα +τοῦ +αἰῶνος +καὶ +ἡ +ἀπάτη +τοῦ +πλούτου +συμπνίγει +τὸν +λόγον, +καὶ +ἄκαρπος +γίνεται. +δὲ +ὁ +ἐπὶ +τὴν +καλὴν +γῆν +σπαρείς, +οὗτός +ἐστιν +ὁ +τὸν +λόγον +ἀκούων +καὶ +συνιείς, +δὴ +ὃς +καρποφορεῖ +καὶ +μὲν +ποιεῖ +ὃ +ἑκατὸν +δὲ +ὃ +ἑξήκοντα +δὲ +ὃ +τριάκοντα. +Ἄλλην +παραβολὴν +παρέθηκεν +αὐτοῖς +λέγων +Ὡμοιώθη +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +σπείραντι +καλὸν +σπέρμα +ἐν +τῷ +ἀγρῷ +αὐτοῦ. +δὲ +ἐν +τῷ +καθεύδειν +τοὺς +ἀνθρώπους +ἦλθεν +αὐτοῦ +ὁ +ἐχθρὸς +καὶ +ἐπέσπειρεν +ζιζάνια +ἀνὰ +μέσον +τοῦ +σίτου +καὶ +ἀπῆλθεν. +δὲ +ὅτε +ἐβλάστησεν +ὁ +χόρτος +καὶ +καρπὸν +ἐποίησεν, +τότε +ἐφάνη +καὶ +τὰ +ζιζάνια. +δὲ +προσελθόντες +οἱ +δοῦλοι +τοῦ +οἰκοδεσπότου +εἶπον +αὐτῷ +Κύριε, +οὐχὶ +καλὸν +σπέρμα +ἔσπειρας +ἐν +τῷ +σῷ +ἀγρῷ; +οὖν +πόθεν +ἔχει +ζιζάνια; +δὲ +ὁ +ἔφη +αὐτοῖς +Ἐχθρὸς +ἄνθρωπος +τοῦτο +ἐποίησεν. +δὲ +οἱ +δοῦλοι +αὐτῷ +λέγουσιν +οὖν +Θέλεις +ἀπελθόντες +συλλέξωμεν +αὐτά; +δέ +ὁ +φησιν +Οὔ, +μή +ποτε +συλλέγοντες +τὰ +ζιζάνια +ἐκριζώσητε +ἅμα +αὐτοῖς +τὸν +σῖτον· +ἄφετε +συναυξάνεσθαι +ἀμφότερα +ἕως +τοῦ +θερισμοῦ· +καὶ +ἐν +καιρῷ +τοῦ +θερισμοῦ +ἐρῶ +τοῖς +θερισταῖς +Συλλέξατε +πρῶτον +τὰ +ζιζάνια +καὶ +δήσατε +αὐτὰ +εἰς +δέσμας +πρὸς +τὸ +κατακαῦσαι +αὐτά, +δὲ +τὸν +σῖτον +συναγάγετε +εἰς +τὴν +ἀποθήκην +μου. +Ἄλλην +παραβολὴν +παρέθηκεν +αὐτοῖς +λέγων +Ὁμοία +ἐστὶν +ἡ +βασιλεία +τῶν +οὐρανῶν +κόκκῳ +σινάπεως, +ὃν +λαβὼν +ἄνθρωπος +ἔσπειρεν +ἐν +τῷ +ἀγρῷ +αὐτοῦ· +μέν +ὃ +μικρότερον +ἐστιν +πάντων +τῶν +σπερμάτων, +δὲ +ὅταν +αὐξηθῇ, +μεῖζον +τῶν +λαχάνων +ἐστὶν +καὶ +γίνεται +δένδρον, +ὥστε +ἐλθεῖν +τὰ +πετεινὰ +τοῦ +οὐρανοῦ +καὶ +κατασκηνοῖν +ἐν +τοῖς +κλάδοις +αὐτοῦ. +Ἄλλην +παραβολὴν +ἐλάλησεν +αὐτοῖς +Ὁμοία +ἐστὶν +ἡ +βασιλεία +τῶν +οὐρανῶν +ζύμῃ, +ἣν +λαβοῦσα +γυνὴ +ἐνέκρυψεν +εἰς +ἀλεύρου +σάτα +τρία, +ἕως +οὗ +ἐζυμώθη +ὅλον. +Ταῦτα +πάντα +ἐλάλησεν +ὁ +Ἰησοῦς +ἐν +παραβολαῖς +τοῖς +ὄχλοις, +καὶ +χωρὶς +παραβολῆς +οὐδὲν +ἐλάλει +αὐτοῖς· +ὅπως +πληρωθῇ +τὸ +ῥηθὲν +διὰ +τοῦ +προφήτου +λέγοντος +Ἀνοίξω +ἐν +παραβολαῖς +τὸ +στόμα +μου, +ἐρεύξομαι +κεκρυμμένα +ἀπὸ +καταβολῆς. +Τότε +ἀφεὶς +τοὺς +ὄχλους +ἦλθεν +εἰς +τὴν +οἰκίαν. +Καὶ +προσῆλθον +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ +λέγοντες +Διασάφησον +ἡμῖν +τὴν +παραβολὴν +τῶν +ζιζανίων +τοῦ +ἀγροῦ. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Ὁ +σπείρων +τὸ +καλὸν +σπέρμα +ἐστὶν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου· +δὲ +ὁ +ἀγρός +ἐστιν +ὁ +κόσμος· +δὲ +τὸ +καλὸν +σπέρμα, +οὗτοί +εἰσιν +οἱ +υἱοὶ +τῆς +βασιλείας· +δὲ +τὰ +ζιζάνιά +εἰσιν +οἱ +υἱοὶ +τοῦ +πονηροῦ, +δὲ +ὁ +ἐχθρὸς +ὁ +σπείρας +αὐτά +ἐστιν +ὁ +διάβολος· +δὲ +ὁ +θερισμὸς +συντέλεια +αἰῶνός +ἐστιν, +δὲ +οἱ +θερισταὶ +ἄγγελοί +εἰσιν. +οὖν +ὥσπερ +συλλέγεται +τὰ +ζιζάνια +καὶ +πυρὶ +κατακαίεται, +οὕτως +ἔσται +ἐν +τῇ +συντελείᾳ +τοῦ +αἰῶνος. +ἀποστελεῖ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +τοὺς +ἀγγέλους +αὐτοῦ, +καὶ +συλλέξουσιν +ἐκ +τῆς +βασιλείας +αὐτοῦ +πάντα +τὰ +σκάνδαλα +καὶ +τοὺς +ποιοῦντας +τὴν +ἀνομίαν, +καὶ +βαλοῦσιν +αὐτοὺς +εἰς +τὴν +κάμινον +τοῦ +πυρός· +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων. +τότε +οἱ +δίκαιοι +ἐκλάμψουσιν +ἐν +τῇ +βασιλείᾳ +τοῦ +Πατρὸς +αὐτῶν. +ὡς +ὁ +ἥλιος +ὁ +ἔχων +ὦτα +ἀκουέτω. +Ὁμοία +ἐστὶν +ἡ +βασιλεία +τῶν +οὐρανῶν +θησαυρῷ +κεκρυμμένῳ +ἐν +τῷ +ἀγρῷ, +ὃν +εὑρὼν +ἄνθρωπος +ἔκρυψεν, +καὶ +ἀπὸ +τῆς +χαρᾶς +αὐτοῦ +ὑπάγει +καὶ +πωλεῖ +ὅσα +ἔχει +καὶ +ἀγοράζει +τὸν +ἀγρὸν +ἐκεῖνον. +Πάλιν +ὁμοία +ἐστὶν +ἡ +βασιλεία +τῶν +οὐρανῶν +ἐμπόρῳ +ζητοῦντι +καλοὺς +μαργαρίτας· +δὲ +εὑρὼν +ἕνα +πολύτιμον +μαργαρίτην +ἀπελθὼν +πέπρακεν +πάντα +ὅσα +εἶχεν +καὶ +ἠγόρασεν +αὐτόν. +Πάλιν +ὁμοία +ἐστὶν +ἡ +βασιλεία +τῶν +οὐρανῶν +σαγήνῃ +βληθείσῃ +εἰς +τὴν +θάλασσαν +καὶ +ἐκ +παντὸς +γένους +συναγαγούσῃ· +ἣν +ὅτε +ἐπληρώθη +ἀναβιβάσαντες +ἐπὶ +τὸν +αἰγιαλὸν +καὶ +καθίσαντες +συνέλεξαν +τὰ +καλὰ +εἰς +ἄγγη, +δὲ +τὰ +σαπρὰ +ἔξω +ἔβαλον. +οὕτως +ἔσται +ἐν +τῇ +συντελείᾳ +τοῦ +αἰῶνος· +ἐξελεύσονται +οἱ +ἄγγελοι +καὶ +ἀφοριοῦσιν +τοὺς +πονηροὺς +ἐκ +μέσου +τῶν +δικαίων, +καὶ +βαλοῦσιν +αὐτοὺς +εἰς +τὴν +κάμινον +τοῦ +πυρός· +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων. +Συνήκατε +ταῦτα +πάντα; +λέγουσιν +αὐτῷ +Ναί. +δὲ +ὁ +εἶπεν +αὐτοῖς +Διὰ +τοῦτο +πᾶς +γραμματεὺς +μαθητευθεὶς +τῇ +βασιλείᾳ +τῶν +οὐρανῶν +ὅμοιός +ἐστιν +ἀνθρώπῳ +οἰκοδεσπότῃ +ὅστις +ἐκβάλλει +ἐκ +τοῦ +θησαυροῦ +αὐτοῦ +καινὰ +καὶ +παλαιά. +Καὶ +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +τὰς +παραβολὰς +ταύτας, +μετῆρεν +ἐκεῖθεν. +καὶ +ἐλθὼν +εἰς +τὴν +πατρίδα +αὐτοῦ +ἐδίδασκεν +αὐτοὺς +ἐν +τῇ +συναγωγῇ +αὐτῶν, +ὥστε +ἐκπλήσσεσθαι +αὐτοὺς +καὶ +λέγειν +Πόθεν +τούτῳ +ἡ +σοφία +αὕτη +καὶ +αἱ +δυνάμεις; +οὐχ +οὗτός +ἐστιν +ὁ +τοῦ +τέκτονος +υἱός; +οὐχ +ἡ +μήτηρ +αὐτοῦ +λέγεται +Μαριὰμ +καὶ +οἱ +ἀδελφοὶ +αὐτοῦ +Ἰάκωβος +καὶ +Ἰωσὴφ +καὶ +Σίμων +καὶ +Ἰούδας; +καὶ +αἱ +ἀδελφαὶ +αὐτοῦ +οὐχὶ +πᾶσαι +πρὸς +ἡμᾶς +εἰσιν; +οὖν +πόθεν +τούτῳ +ταῦτα +πάντα; +καὶ +ἐσκανδαλίζοντο +ἐν +αὐτῷ. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐκ +ἔστιν +προφήτης +ἄτιμος +εἰ +μὴ +ἐν +τῇ +πατρίδι +καὶ +ἐν +τῇ +οἰκίᾳ +αὐτοῦ. +καὶ +οὐκ +ἐποίησεν +ἐκεῖ +δυνάμεις +πολλὰς +διὰ +τὴν +ἀπιστίαν +αὐτῶν. +Ἐν +ἐκείνῳ +τῷ +καιρῷ +ἤκουσεν +Ἠρῴδης +ὁ +τετραάρχης +τὴν +ἀκοὴν +Ἰησοῦ, +καὶ +εἶπεν +τοῖς +παισὶν +αὐτοῦ +Οὗτός +ἐστιν +Ἰωάνης +ὁ +Βαπτιστής· +αὐτὸς +ἠγέρθη +ἀπὸ +τῶν +νεκρῶν, +καὶ +διὰ +τοῦτο +αἱ +δυνάμεις +ἐνεργοῦσιν +ἐν +αὐτῷ. +γὰρ +Ὁ +Ἠρῴδης +κρατήσας +τὸν +Ἰωάνην +ἔδησεν +καὶ +ἐν +φυλακῇ +ἀπέθετο +διὰ +Ἠρῳδιάδα +τὴν +γυναῖκα +Φιλίππου +τοῦ +ἀδελφοῦ +αὐτοῦ· +γὰρ +ἔλεγεν +ὁ +Ἰωάνης +αὐτῷ +Οὐκ +ἔξεστίν +σοι +ἔχειν +αὐτήν. +καὶ +θέλων +αὐτὸν +ἀποκτεῖναι +ἐφοβήθη +τὸν +ὄχλον, +ὅτι +ὡς +προφήτην +αὐτὸν +εἶχον. +δὲ +γενεσίοις +τοῦ +Ἠρῴδου +γενομένοις +ὠρχήσατο +ἡ +θυγάτηρ +τῆς +Ἠρῳδιάδος +ἐν +τῷ +μέσῳ +καὶ +ἤρεσεν +τῷ +Ἠρῴδῃ, +ὅθεν +μεθ’ +ὅρκου +ὡμολόγησεν +αὐτῇ +δοῦναι +ἐὰν +ὃ +αἰτήσηται. +δὲ +ἡ +προβιβασθεῖσα +ὑπὸ +τῆς +μητρὸς +αὐτῆς +φησίν, +Δός +μοι, +ὧδε +ἐπὶ +πίνακι +τὴν +κεφαλὴν +Ἰωάνου +τοῦ +Βαπτιστοῦ. +καὶ +λυπηθεὶς +ὁ +βασιλεὺς +διὰ +τοὺς +ὅρκους +καὶ +τοὺς +συνανακειμένους +ἐκέλευσεν +δοθῆναι, +καὶ +πέμψας +ἀπεκεφάλισεν +Ἰωάνην +ἐν +τῇ +φυλακῇ. +καὶ +ἠνέχθη +ἡ +κεφαλὴ +αὐτοῦ +ἐπὶ +πίνακι +καὶ +ἐδόθη +τῷ +κορασίῳ, +καὶ +ἤνεγκεν +τῇ +μητρὶ +αὐτῆς. +καὶ +προσελθόντες +οἱ +μαθηταὶ +αὐτοῦ +ἦραν +τὸ +πτῶμα +καὶ +ἔθαψαν +αὐτόν, +καὶ +ἐλθόντες +ἀπήγγειλαν +τῷ +Ἰησοῦ. +δὲ +Ἀκούσας +ὁ +Ἰησοῦς +ἀνεχώρησεν +ἐκεῖθεν +ἐν +πλοίῳ +εἰς +ἔρημον +τόπον +κατ’ +ἰδίαν· +καὶ +ἀκούσαντες +οἱ +ὄχλοι +ἠκολούθησαν +αὐτῷ +πεζῇ +ἀπὸ +τῶν +πόλεων. +Καὶ +ἐξελθὼν +εἶδεν +πολὺν +ὄχλον, +καὶ +ἐσπλαγχνίσθη +ἐπ’ +αὐτοῖς +καὶ +ἐθεράπευσεν +τοὺς +ἀρρώστους +αὐτῶν. +δὲ +ὀψίας +γενομένης +προσῆλθον +αὐτῷ +οἱ +μαθηταὶ +λέγοντες +Ἔρημός +ἐστιν +ὁ +τόπος +καὶ +ἡ +ὥρα +ἤδη +παρῆλθεν· +οὖν +ἀπόλυσον +τοὺς +ὄχλους, +ἵνα +ἀπελθόντες +εἰς +τὰς +κώμας +ἀγοράσωσιν +ἑαυτοῖς +βρώματα. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐ +χρείαν +ἔχουσιν +ἀπελθεῖν· +δότε +αὐτοῖς +ὑμεῖς +φαγεῖν. +δὲ +οἱ +λέγουσιν +αὐτῷ +Οὐκ +ἔχομεν +ὧδε +εἰ +μὴ +πέντε +ἄρτους +καὶ +δύο +ἰχθύας. +δὲ +ὁ +εἶπεν· +Φέρετέ +μοι +ὧδε +αὐτούς. +καὶ +κελεύσας +τοὺς +ὄχλους +ἀνακλιθῆναι +ἐπὶ +τοῦ +χόρτου, +λαβὼν +τοὺς +πέντε +ἄρτους +καὶ +τοὺς +δύο +ἰχθύας, +ἀναβλέψας +εἰς +τὸν +οὐρανὸν +εὐλόγησεν, +καὶ +κλάσας +ἔδωκεν +τοῖς +μαθηταῖς +τοὺς +ἄρτους, +δὲ +οἱ +μαθηταὶ +τοῖς +ὄχλοις. +καὶ +ἔφαγον +πάντες +καὶ +ἐχορτάσθησαν, +καὶ +ἦραν +τὸ +περισσεῦον +τῶν +κλασμάτων +δώδεκα +κοφίνους +πλήρεις. +δὲ +οἱ +ἐσθίοντες +ἦσαν +ἄνδρες +ὡσεὶ +πεντακισχίλιοι +χωρὶς +γυναικῶν +καὶ +παιδίων. +Καὶ +εὐθέως +ἠνάγκασεν +τοὺς +μαθητὰς +ἐμβῆναι +εἰς +τὸ +πλοῖον +καὶ +προάγειν +αὐτὸν +εἰς +τὸ +πέραν, +ἕως +οὗ +ἀπολύσῃ +τοὺς +ὄχλους. +καὶ +ἀπολύσας +τοὺς +ὄχλους +ἀνέβη +εἰς +τὸ +ὄρος +κατ’ +ἰδίαν +προσεύξασθαι. +δὲ +ὀψίας +γενομένης +μόνος +ἦν +ἐκεῖ. +δὲ +τὸ +πλοῖον +ἤδη +σταδίους +πολλοὺς +ἀπὸ +τῆς +γῆς +ἀπεῖχεν, +βασανιζόμενον +ὑπὸ +τῶν +κυμάτων, +γὰρ +ἦν +ἐναντίος +ὁ +ἄνεμος. +δὲ +τετάρτῃ +φυλακῇ +τῆς +νυκτὸς +ἦλθεν +πρὸς +αὐτοὺς +περιπατῶν +ἐπὶ +τὴν +θάλασσαν. +δὲ +οἱ +μαθηταὶ +ἰδόντες +αὐτὸν +ἐπὶ +τῆς +θαλάσσης +περιπατοῦντα +ἐταράχθησαν +λέγοντες +ὅτι +Φάντασμά +ἐστιν, +καὶ +ἀπὸ +τοῦ +φόβου +ἔκραξαν. +δὲ +εὐθὺς +ἐλάλησεν +ὁ +Ἰησοῦς +αὐτοῖς +λέγων +Θαρσεῖτε, +ἐγώ +εἰμι· +μὴ +φοβεῖσθε. +δὲ +ἀποκριθεὶς +αὐτῷ +ὁ +Πέτρος +εἶπεν +Κύριε, +εἰ +σὺ +εἶ, +κέλευσόν +με +ἐλθεῖν +πρὸς +σὲ +ἐπὶ +τὰ +ὕδατα. +δὲ +ὁ +εἶπεν +Ἐλθέ. +καὶ +καταβὰς +ἀπὸ +τοῦ +πλοίου +Πέτρος +περιεπάτησεν +ἐπὶ +τὰ +ὕδατα +καὶ +ἦλθεν +πρὸς +τὸν +Ἰησοῦν. +δὲ +βλέπων +τὸν +ἄνεμον +ἐφοβήθη, +καὶ +ἀρξάμενος +καταποντίζεσθαι +ἔκραξεν +λέγων +Κύριε, +σῶσόν +με. +δὲ +εὐθέως +ὁ +Ἰησοῦς +ἐκτείνας +τὴν +χεῖρα +ἐπελάβετο +αὐτοῦ +καὶ +λέγει +αὐτῷ +Ὀλιγόπιστε, +εἰς +τί +ἐδίστασας; +καὶ +ἀναβάντων +αὐτῶν +εἰς +τὸ +πλοῖον +ἐκόπασεν +ὁ +ἄνεμος. +δὲ +οἱ +ἐν +τῷ +πλοίῳ +προσεκύνησαν +αὐτῷ +λέγοντες +Ἀληθῶς +Θεοῦ +Υἱὸς +εἶ. +Καὶ +διαπεράσαντες +ἦλθον +ἐπὶ +τὴν +γῆν +εἰς +Γεννησαρέτ. +καὶ +ἐπιγνόντες +αὐτὸν +οἱ +ἄνδρες +τοῦ +τόπου +ἐκείνου +ἀπέστειλαν +εἰς +ὅλην +τὴν +περίχωρον +ἐκείνην, +καὶ +προσήνεγκαν +αὐτῷ +πάντας +τοὺς +κακῶς +ἔχοντας, +καὶ +παρεκάλουν +αὐτὸν +ἵνα +μόνον +ἅψωνται +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ· +καὶ +ὅσοι +ἥψαντο +διεσώθησαν. +Τότε +προσέρχονται +τῷ +Ἰησοῦ +ἀπὸ +Ἱεροσολύμων +Φαρισαῖοι +καὶ +γραμματεῖς +λέγοντες +Διὰ +τί +οἱ +μαθηταί +σου +παραβαίνουσιν +τὴν +παράδοσιν +τῶν +πρεσβυτέρων; +γὰρ +οὐ +νίπτονται +τὰς +χεῖρας +ὅταν +ἄρτον +ἐσθίωσιν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Διὰ +τί +καὶ +ὑμεῖς +παραβαίνετε +τὴν +ἐντολὴν +τοῦ +Θεοῦ +διὰ +τὴν +παράδοσιν +ὑμῶν; +γὰρ +ὁ +Θεὸς +εἶπεν +Τίμα +τὸν +πατέρα +καὶ +τὴν +μητέρα, +καί +Ὁ +κακολογῶν +πατέρα +ἢ +μητέρα +θανάτῳ +τελευτάτω· +δὲ +ὑμεῖς +λέγετε +ἂν +Ὃς +εἴπῃ +τῷ +πατρὶ +ἢ +τῇ +μητρί +Δῶρον +ἐὰν +ὃ +ἐξ +ἐμοῦ +ὠφεληθῇς, +οὐ +μὴ +τιμήσει +τὸν +πατέρα +αὐτοῦ +ἢ +τὴν +μητέρα +αὐτοῦ· +καὶ +ἠκυρώσατε +τὸν +λόγον +τοῦ +Θεοῦ +διὰ +τὴν +παράδοσιν +ὑμῶν. +ὑποκριταί, +καλῶς +ἐπροφήτευσεν +περὶ +ὑμῶν +Ἠσαΐας +λέγων +Ὁ +λαὸς +οὗτος +τοῖς +χείλεσίν +με +τιμᾷ, +δὲ +ἡ +καρδία +αὐτῶν +πόρρω +ἀπέχει +ἀπ’ +ἐμοῦ· +δὲ +μάτην +σέβονταί +με, +διδάσκοντες +διδασκαλίας +ἐντάλματα +ἀνθρώπων. +Καὶ +προσκαλεσάμενος +τὸν +ὄχλον +εἶπεν +αὐτοῖς +Ἀκούετε +καὶ +συνίετε· +οὐ +τὸ +εἰσερχόμενον +εἰς +τὸ +στόμα +κοινοῖ +τὸν +ἄνθρωπον, +ἀλλὰ +τὸ +ἐκπορευόμενον +ἐκ +τοῦ +στόματος +τοῦτο +κοινοῖ +τὸν +ἄνθρωπον. +Τότε +προσελθόντες +οἱ +μαθηταὶ +λέγουσιν +αὐτῷ +Οἶδας +ὅτι +οἱ +Φαρισαῖοι +ἀκούσαντες +τὸν +λόγον +ἐσκανδαλίσθησαν; +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Πᾶσα +φυτεία +ἣν +οὐκ +ἐφύτευσεν +ὁ +Πατήρ +μου +ὁ +οὐράνιος +ἐκριζωθήσεται. +ἄφετε +αὐτούς· +εἰσιν +τυφλοί +ὁδηγοί +τυφλῶν· +δὲ +ἐὰν +τυφλὸς +τυφλὸν +ὁδηγῇ, +ἀμφότεροι +εἰς +βόθυνον +πεσοῦνται. +δὲ +Ἀποκριθεὶς +ὁ +Πέτρος +εἶπεν +αὐτῷ +Φράσον +ἡμῖν +τὴν +παραβολήν. +δὲ +ὁ +εἶπεν +Ἀκμὴν +καὶ +ὑμεῖς +ἀσύνετοί +ἐστε; +οὐ +νοεῖτε +ὅτι +πᾶν +τὸ +εἰσπορευόμενον +εἰς +τὸ +στόμα +εἰς +τὴν +κοιλίαν +χωρεῖ +καὶ +εἰς +ἀφεδρῶνα +ἐκβάλλεται; +δὲ +τὰ +ἐκπορευόμενα +ἐκ +τοῦ +στόματος +ἐκ +τῆς +καρδίας +ἐξέρχεται, +κἀκεῖνα +κοινοῖ +τὸν +ἄνθρωπον. +γὰρ +ἐκ +τῆς +καρδίας +ἐξέρχονται +διαλογισμοὶ +πονηροί, +φόνοι, +μοιχεῖαι, +πορνεῖαι, +κλοπαί, +ψευδομαρτυρίαι, +βλασφημίαι. +ταῦτά +ἐστιν +τὰ +κοινοῦντα +τὸν +ἄνθρωπον· +δὲ +τὸ +ἀνίπτοις +χερσὶν +φαγεῖν +οὐ +κοινοῖ +τὸν +ἄνθρωπον. +Καὶ +ἐξελθὼν +ἐκεῖθεν +ὁ +Ἰησοῦς +ἀνεχώρησεν +εἰς +τὰ +μέρη +Τύρου +καὶ +Σιδῶνος. +καὶ +ἰδοὺ +γυνὴ +Χαναναία +ἀπὸ +τῶν +ὁρίων +ἐκείνων +ἐξελθοῦσα +ἔκραζεν +λέγουσα +Ἐλέησόν +με, +Κύριε +υἱὸς +Δαυείδ· +ἡ +θυγάτηρ +μου +κακῶς +δαιμονίζεται. +δὲ +ὁ +οὐκ +ἀπεκρίθη +αὐτῇ +λόγον. +καὶ +προσελθόντες +οἱ +μαθηταὶ +αὐτοῦ +ἠρώτουν +αὐτὸν +λέγοντες +Ἀπόλυσον +αὐτήν, +ὅτι +κράζει +ὄπισθεν +ἡμῶν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Οὐκ +ἀπεστάλην +εἰ +μὴ +εἰς +τὰ +πρόβατα +τὰ +ἀπολωλότα +οἴκου +Ἰσραήλ. +δὲ +ἡ +ἐλθοῦσα +προσεκύνει +αὐτῷ +λέγουσα +Κύριε, +βοήθει +μοι. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Οὐκ +ἔστιν +καλὸν +λαβεῖν +τὸν +ἄρτον +τῶν +τέκνων +καὶ +βαλεῖν +τοῖς +κυναρίοις. +δὲ +ἡ +εἶπεν +Ναί, +κύριε· +γὰρ +καὶ +τὰ +κυνάρια +ἐσθίει +ἀπὸ +τῶν +ψιχίων +τῶν +πιπτόντων +ἀπὸ +τῆς +τραπέζης +τῶν +κυρίων +αὐτῶν. +τότε +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτῇ +Ὦ +γύναι, +μεγάλη +σου +ἡ +πίστις· +γενηθήτω +σοι +ὡς +θέλεις. +καὶ +ἰάθη +ἡ +θυγάτηρ +αὐτῆς +ἀπὸ +τῆς +ὥρας +ἐκείνης. +Καὶ +μεταβὰς +ἐκεῖθεν +ὁ +Ἰησοῦς +ἦλθεν +παρὰ +τὴν +θάλασσαν +τῆς +Γαλιλαίας, +καὶ +ἀναβὰς +εἰς +τὸ +ὄρος +ἐκάθητο +ἐκεῖ. +καὶ +προσῆλθον +αὐτῷ +ὄχλοι +πολλοὶ +ἔχοντες +μεθ’ +ἑαυτῶν +χωλούς, +κυλλούς, +τυφλούς, +κωφούς, +καὶ +ἑτέρους +πολλούς, +καὶ +ἔριψαν +αὐτοὺς +παρὰ +τοὺς +πόδας +αὐτοῦ· +καὶ +ἐθεράπευσεν +αὐτούς· +ὥστε +τὸν +ὄχλον +θαυμάσαι +βλέποντας +κωφοὺς +λαλοῦντας +κυλλοὺς +ὑγιεῖς +καὶ +χωλοὺς +περιπατοῦντας +καὶ +τυφλοὺς +βλέποντας· +καὶ +ἐδόξασαν +τὸν +Θεὸν +Ἰσραήλ. +δὲ +Ὁ +Ἰησοῦς +προσκαλεσάμενος +τοὺς +μαθητὰς +αὐτοῦ +εἶπεν +Σπλαγχνίζομαι +ἐπὶ +τὸν +ὄχλον, +ὅτι +ἤδη +ἡμέραι +τρεῖς +προσμένουσίν +μοι +καὶ +οὐκ +ἔχουσιν +τί +φάγωσιν· +καὶ +ἀπολῦσαι +αὐτοὺς +νήστεις +οὐ +θέλω, +μή +ποτε +ἐκλυθῶσιν +ἐν +τῇ +ὁδῷ. +καὶ +λέγουσιν +αὐτῷ +οἱ +μαθηταί +Πόθεν +ἡμῖν +ἐν +ἐρημίᾳ +ἄρτοι +τοσοῦτοι +ὥστε +χορτάσαι +ὄχλον +τοσοῦτον; +καὶ +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Πόσους +ἄρτους +ἔχετε; +δὲ +οἱ +εἶπαν +Ἑπτά, +καὶ +ὀλίγα +ἰχθύδια. +καὶ +παραγγείλας +τῷ +ὄχλῳ +ἀναπεσεῖν +ἐπὶ +τὴν +γῆν +ἔλαβεν +τοὺς +ἑπτὰ +ἄρτους +καὶ +τοὺς +ἰχθύας +καὶ +εὐχαριστήσας +ἔκλασεν +καὶ +ἐδίδου +τοῖς +μαθηταῖς, +δὲ +οἱ +μαθηταὶ +τοῖς +ὄχλοις. +καὶ +ἔφαγον +πάντες +καὶ +ἐχορτάσθησαν, +καὶ +τὸ +περισσεῦον +τῶν +κλασμάτων +ἑπτὰ +σπυρίδας +πλήρεις. +ἦραν +δὲ +οἱ +ἐσθίοντες +ἦσαν +τετρακισχίλιοι +ἄνδρες +χωρὶς +γυναικῶν +καὶ +παιδίων. +Καὶ +ἀπολύσας +τοὺς +ὄχλους +ἐνέβη +εἰς +τὸ +πλοῖον, +καὶ +ἦλθεν +εἰς +τὰ +ὅρια +Μαγαδάν. +Καὶ +προσελθόντες +οἱ +Φαρισαῖοι +καὶ +Σαδδουκαῖοι +πειράζοντες +ἐπηρώτησαν +αὐτὸν +σημεῖον +ἐκ +τοῦ +οὐρανοῦ +ἐπιδεῖξαι +αὐτοῖς. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Ὀψίας +γενομένης +λέγετε +Εὐδία, +γὰρ +πυρράζει +ὁ +οὐρανός· +καὶ +πρωΐ +Σήμερον +χειμών, +γὰρ +πυρράζει +στυγνάζων +ὁ +οὐρανός. +μὲν +τὸ +πρόσωπον +τοῦ +οὐρανοῦ +διακρίνειν, +γινώσκετε +δὲ +τὰ +σημεῖα +τῶν +καιρῶν +οὐ +δύνασθε; +γενεὰ +πονηρὰ +καὶ +μοιχαλὶς +σημεῖον +ἐπιζητεῖ, +καὶ +σημεῖον +οὐ +δοθήσεται +αὐτῇ +εἰ +μὴ +τὸ +σημεῖον +Ἰωνᾶ. +καὶ +καταλιπὼν +αὐτοὺς +ἀπῆλθεν. +Καὶ +οἱ +μαθηταὶ +ἐλθόντες +εἰς +τὸ +πέραν +ἐπελάθοντο +ἄρτους +λαβεῖν. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ὁρᾶτε +καὶ +προσέχετε +ἀπὸ +τῆς +ζύμης +τῶν +Φαρισαίων +καὶ +Σαδδουκαίων. +δὲ +οἱ +διελογίζοντο +ἐν +ἑαυτοῖς +λέγοντες +ὅτι +Ἄρτους +οὐκ +ἐλάβομεν. +δὲ +γνοὺς +ὁ +Ἰησοῦς +εἶπεν +Τί +διαλογίζεσθε +ἐν +ἑαυτοῖς, +ὀλιγόπιστοι, +ὅτι +ἄρτους +οὐκ +ἔχετε; +οὔπω +νοεῖτε, +οὐδὲ +μνημονεύετε +τοὺς +πέντε +ἄρτους +τῶν +πεντακισχιλίων +καὶ +πόσους +κοφίνους +ἐλάβετε; +οὐδὲ +τοὺς +ἑπτὰ +ἄρτους +τῶν +τετρακισχιλίων +καὶ +πόσας +σπυρίδας +ἐλάβετε; +πῶς +οὐ +νοεῖτε +ὅτι +οὐ +περὶ +ἄρτων +εἶπον +ὑμῖν; +δὲ +προσέχετε +ἀπὸ +τῆς +ζύμης +τῶν +Φαρισαίων +καὶ +Σαδδουκαίων. +τότε +συνῆκαν +ὅτι +οὐκ +εἶπεν +προσέχειν +ἀπὸ +τῆς +ζύμης +τῶν +ἄρτων, +ἀλλὰ +ἀπὸ +τῆς +διδαχῆς +τῶν +Φαρισαίων +καὶ +Σαδδουκαίων. +δὲ +ὁ +Ἰησοῦς +Ἐλθὼν +εἰς +τὰ +μέρη +Καισαρίας +τῆς +Φιλίππου +ἠρώτα +τοὺς +μαθητὰς +αὐτοῦ +λέγων +λέγουσιν +οἱ +ἄνθρωποι +Τίνα +εἶναι +τὸν +Υἱὸν +τοῦ +ἀνθρώπου; +δὲ +οἱ +εἶπαν +μὲν +Οἱ +Ἰωάνην +τὸν +Βαπτιστήν, +δὲ +ἄλλοι +Ἠλείαν, +δὲ +ἕτεροι +Ἱερεμίαν +ἢ +ἕνα +τῶν +προφητῶν. +λέγει +αὐτοῖς +δὲ +Ὑμεῖς +τίνα +με +εἶναι; +λέγετε +δὲ +ἀποκριθεὶς +Σίμων +Πέτρος +εἶπεν +Σὺ +εἶ +ὁ +Χριστὸς +ὁ +Υἱὸς +τοῦ +Θεοῦ +τοῦ +ζῶντος. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Μακάριος +εἶ, +Σίμων +Βαριωνᾶ, +ὅτι +σὰρξ +καὶ +αἷμα +οὐκ +ἀπεκάλυψέν +σοι +ἀλλ’ +ὁ +Πατήρ +μου +ὁ +ἐν +τοῖς +οὐρανοῖς. +δέ +κἀγὼ +σοι +λέγω +ὅτι +σὺ +εἶ +Πέτρος, +καὶ +ἐπὶ +ταύτῃ +τῇ +πέτρᾳ +οἰκοδομήσω +μου +τὴν +ἐκκλησίαν, +καὶ +πύλαι +Ἅιδου +οὐ +κατισχύσουσιν +αὐτῆς. +δώσω +σοι +τὰς +κλεῖδας +τῆς +βασιλείας +τῶν +οὐρανῶν, +καὶ +ἐὰν +ὃ +δήσῃς +ἐπὶ +τῆς +γῆς +ἔσται +δεδεμένον +ἐν +τοῖς +οὐρανοῖς, +καὶ +ἐὰν +ὃ +λύσῃς +ἐπὶ +τῆς +γῆς +ἔσται +λελυμένον +ἐν +τοῖς +οὐρανοῖς. +τότε +ἐπετίμησεν +τοῖς +μαθηταῖς +ἵνα +μηδενὶ +εἴπωσιν +ὅτι +αὐτός +ἐστιν +ὁ +Χριστός. +Ἀπὸ +τότε +ἤρξατο +Ἰησοῦς +Χριστὸς +δεικνύειν +τοῖς +μαθηταῖς +αὐτοῦ +ὅτι +δεῖ +αὐτὸν +εἰς +Ἱεροσόλυμα +ἀπελθεῖν +καὶ +πολλὰ +παθεῖν +ἀπὸ +τῶν +πρεσβυτέρων +καὶ +ἀρχιερέων +καὶ +γραμματέων +καὶ +ἀποκτανθῆναι +καὶ +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθῆναι. +καὶ +προσλαβόμενος +αὐτὸν +ὁ +Πέτρος +ἤρξατο +ἐπιτιμᾶν +αὐτῷ +λέγων +Ἵλεώς +σοι, +Κύριε· +οὐ +μὴ +ἔσται +σοι +τοῦτο. +δὲ +ὁ +στραφεὶς +εἶπεν +τῷ +Πέτρῳ +Ὕπαγε +ὀπίσω +μου, +Σατανᾶ· +σκάνδαλον +ἐμοῦ, +εἶ +ὅτι +οὐ +φρονεῖς +τὰ +τοῦ +Θεοῦ +ἀλλὰ +τὰ +τῶν +ἀνθρώπων. +Τότε +ὁ +Ἰησοῦς +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +Εἴ +τις +θέλει +ὀπίσω +μου +ἐλθεῖν, +ἀπαρνησάσθω +ἑαυτὸν +καὶ +ἀράτω +τὸν +σταυρὸν +αὐτοῦ, +καὶ +ἀκολουθείτω +μοι. +γὰρ +ἐὰν +ὃς +θέλῃ +τὴν +ψυχὴν +αὐτοῦ +σῶσαι, +ἀπολέσει +αὐτήν· +δ’ +ἂν +ὃς +ἀπολέσῃ +τὴν +ψυχὴν +αὐτοῦ +ἕνεκεν +ἐμοῦ, +εὑρήσει +αὐτήν. +γὰρ +τί +ὠφεληθήσεται +ἄνθρωπος +ἐὰν +τὸν +κόσμον +ὅλον +κερδήσῃ, +δὲ +τὴν +ψυχὴν +αὐτοῦ +ζημιωθῇ; +ἢ +τί +δώσει +ἄνθρωπος +ἀντάλλαγμα +τῆς +ψυχῆς +αὐτοῦ; +γὰρ +μέλλει +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἔρχεσθαι +ἐν +τῇ +δόξῃ +τοῦ +Πατρὸς +αὐτοῦ +μετὰ +τῶν +ἀγγέλων +αὐτοῦ, +καὶ +τότε +ἀποδώσει +ἑκάστῳ +κατὰ +τὴν +πρᾶξιν +αὐτοῦ. +ἀμὴν +λέγω +ὑμῖν +ὅτι +εἰσίν +τινες +τῶν +ὧδε +ἑστώτων +οἵτινες +οὐ +μὴ +γεύσωνται +θανάτου +ἕως +ἂν +ἴδωσιν +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐν +τῇ +βασιλείᾳ +αὐτοῦ. +Καὶ +μεθ’ +ἡμέρας +ἓξ +παραλαμβάνει +ὁ +Ἰησοῦς +τὸν +Πέτρον +καὶ +Ἰάκωβον +καὶ +Ἰωάνην +τὸν +ἀδελφὸν +αὐτοῦ, +καὶ +ἀναφέρει +αὐτοὺς +εἰς +ὄρος +ὑψηλὸν +κατ’ +ἰδίαν. +καὶ +μετεμορφώθη +ἔμπροσθεν +αὐτῶν, +καὶ +ἔλαμψεν +τὸ +πρόσωπον +αὐτοῦ +ὡς +ὁ +ἥλιος, +δὲ +τὰ +ἱμάτια +αὐτοῦ +ἐγένετο +λευκὰ +ὡς +τὸ +φῶς. +καὶ +ἰδοὺ +ὤφθη +αὐτοῖς +Μωϋσῆς +καὶ +Ἠλείας +συνλαλοῦντες +μετ’ +αὐτοῦ. +δὲ +ἀποκριθεὶς +ὁ +Πέτρος +εἶπεν +τῷ +Ἰησοῦ +Κύριε, +καλόν +ἐστιν +ἡμᾶς +ὧδε +εἶναι· +εἰ +θέλεις, +ποιήσω +ὧδε +τρεῖς +σκηνάς, +σοὶ +μίαν +καὶ +Μωϋσεῖ +μίαν +καὶ +Ἠλείᾳ +μίαν. +ἔτι +αὐτοῦ +λαλοῦντος, +ἰδοὺ +νεφέλη +φωτεινὴ +ἐπεσκίασεν +αὐτούς, +καὶ +ἰδοὺ +φωνὴ +ἐκ +τῆς +νεφέλης +λέγουσα +Οὗτός +ἐστιν +ὁ +Υἱός +μου +ὁ +ἀγαπητός, +ἐν +ᾧ +εὐδόκησα· +ἀκούετε +αὐτοῦ. +καὶ +ἀκούσαντες +οἱ +μαθηταὶ +ἔπεσαν +ἐπὶ +πρόσωπον +αὐτῶν +καὶ +ἐφοβήθησαν +σφόδρα. +καὶ +προσῆλθεν +ὁ +Ἰησοῦς +καὶ +ἁψάμενος +αὐτῶν +εἶπεν +Ἐγέρθητε +καὶ +μὴ +φοβεῖσθε. +δὲ +ἐπάραντες +τοὺς +ὀφθαλμοὺς +αὐτῶν +οὐδένα +εἶδον +εἰ +μὴ +αὐτὸν +Ἰησοῦν +μόνον. +Καὶ +καταβαινόντων +αὐτῶν +ἐκ +τοῦ +ὄρους +ἐνετείλατο +αὐτοῖς +ὁ +Ἰησοῦς +λέγων +Μηδενὶ +εἴπητε +τὸ +ὅραμα +ἕως +οὗ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐκ +νεκρῶν +ἐγερθῇ. +Καὶ +ἐπηρώτησαν +αὐτὸν +οἱ +μαθηταὶ +λέγοντες +οὖν +Τί +οἱ +γραμματεῖς +λέγουσιν +ὅτι +δεῖ +Ἠλείαν +ἐλθεῖν +πρῶτον; +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +μὲν +Ἠλείας +ἔρχεται +καὶ +ἀποκαταστήσει +πάντα· +δὲ +λέγω +ὑμῖν +ὅτι +Ἠλείας +ἤδη +ἦλθεν, +καὶ +οὐκ +ἐπέγνωσαν +αὐτὸν, +ἀλλ’ +ἐποίησαν +ἐν +αὐτῷ +ὅσα +ἠθέλησαν· +οὕτως +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +μέλλει +πάσχειν +ὑπ’ +αὐτῶν. +τότε +συνῆκαν +οἱ +μαθηταὶ +ὅτι +περὶ +Ἰωάνου +τοῦ +Βαπτιστοῦ +εἶπεν +αὐτοῖς. +Καὶ +ἐλθόντων +πρὸς +τὸν +ὄχλον +προσῆλθεν +αὐτῷ +ἄνθρωπος +γονυπετῶν +αὐτὸν +καὶ +λέγων +Κύριε, +ἐλέησόν +μου +τὸν +υἱόν, +ὅτι +σεληνιάζεται +καὶ +κακῶς +ἔχει· +γὰρ +πολλάκις +πίπτει +εἰς +τὸ +πῦρ +καὶ +πολλάκις +εἰς +τὸ +ὕδωρ. +καὶ +προσήνεγκα +αὐτὸν +τοῖς +μαθηταῖς +σου, +καὶ +οὐκ +ἠδυνήθησαν +αὐτὸν +θεραπεῦσαι. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +Ὦ +γενεὰ +ἄπιστος +καὶ +διεστραμμένη, +ἕως +πότε +μεθ’ +ὑμῶν +ἔσομαι; +ἕως +πότε +ἀνέξομαι +ὑμῶν; +φέρετέ +μοι +αὐτὸν +ὧδε. +καὶ +ἐπετίμησεν +αὐτῷ +ὁ +Ἰησοῦς, +καὶ +ἐξῆλθεν +ἀπ’ +αὐτοῦ +τὸ +δαιμόνιον, +καὶ +ἐθεραπεύθη +ὁ +παῖς +ἀπὸ +τῆς +ὥρας +ἐκείνης. +Τότε +οἱ +μαθηταὶ +προσελθόντες +τῷ +Ἰησοῦ +κατ’ +ἰδίαν +εἶπον +Διὰ +τί +ἡμεῖς +οὐκ +ἠδυνήθημεν +ἐκβαλεῖν +αὐτό; +δὲ +ὁ +λέγει +αὐτοῖς +Διὰ +τὴν +ὀλιγοπιστίαν +ὑμῶν· +γὰρ +ἀμὴν +λέγω +ὑμῖν, +ἐὰν +ἔχητε +πίστιν +ὡς +κόκκον +σινάπεως, +ἐρεῖτε +τῷ +ὄρει +τούτῳ +Μετάβα +ἔνθεν +ἐκεῖ, +καὶ +μεταβήσεται, +καὶ +οὐδὲν +ἀδυνατήσει +ὑμῖν. +δὲ +Συστρεφομένων +αὐτῶν +ἐν +τῇ +Γαλιλαίᾳ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Μέλλει +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδίδοσθαι +εἰς +χεῖρας +ἀνθρώπων, +καὶ +ἀποκτενοῦσιν +αὐτόν, +καὶ +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθήσεται. +καὶ +ἐλυπήθησαν +σφόδρα. +δὲ +Ἐλθόντων +αὐτῶν +εἰς +Καφαρναοὺμ +προσῆλθον +οἱ +τὰ +δίδραχμα +λαμβάνοντες +τῷ +Πέτρῳ +καὶ +εἶπαν +οὐ +Ὁ +διδάσκαλος +ὑμῶν +τελεῖ +δίδραχμα; +λέγει +Ναί. +καὶ +ἐλθόντα +εἰς +τὴν +οἰκίαν +προέφθασεν +αὐτὸν +ὁ +Ἰησοῦς +λέγων +Τί +σοι +δοκεῖ, +Σίμων; +οἱ +βασιλεῖς +τῆς +γῆς +ἀπὸ +τίνων +λαμβάνουσιν +τέλη +ἢ +κῆνσον; +ἀπὸ +τῶν +υἱῶν +αὐτῶν +ἢ +ἀπὸ +τῶν +ἀλλοτρίων; +δέ +εἰπόντος +Ἀπὸ +τῶν +ἀλλοτρίων, +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Ἄραγε +ἐλεύθεροί +εἰσιν +οἱ +υἱοί. +δὲ +ἵνα +μὴ +σκανδαλίσωμεν +αὐτούς, +πορευθεὶς +εἰς +θάλασσαν +βάλε +ἄγκιστρον +καὶ +τὸν +ἀναβάντα +πρῶτον +ἰχθὺν +ἆρον, +καὶ +ἀνοίξας +τὸ +στόμα +αὐτοῦ +εὑρήσεις +στατῆρα· +ἐκεῖνον +λαβὼν +δὸς +αὐτοῖς +ἀντὶ +ἐμοῦ +καὶ +σοῦ. +Ἐν +ἐκείνῃ +τῇ +ὥρᾳ +προσῆλθον +οἱ +μαθηταὶ +τῷ +Ἰησοῦ +λέγοντες +ἄρα +Τίς +μείζων +ἐστὶν +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν; +καὶ +προσκαλεσάμενος +παιδίον +ἔστησεν +αὐτὸ +ἐν +μέσῳ +αὐτῶν +καὶ +εἶπεν +Ἀμὴν +λέγω +ὑμῖν, +ἐὰν +μὴ +στραφῆτε +καὶ +γένησθε +ὡς +τὰ +παιδία, +οὐ +μὴ +εἰσέλθητε +εἰς +τὴν +βασιλείαν +τῶν +οὐρανῶν. +οὖν +ὅστις +ταπεινώσει +ἑαυτὸν +ὡς +τὸ +παιδίον +τοῦτο, +οὗτός +ἐστιν +ὁ +μείζων +ἐν +τῇ +βασιλείᾳ +τῶν +οὐρανῶν. +καὶ +ἐὰν +ὃς +δέξηται +ἓν +παιδίον +τοιοῦτο +ἐπὶ +τῷ +ὀνόματί +μου, +ἐμὲ +δέχεται· +δ’ +ἂν +ὃς +σκανδαλίσῃ +ἕνα +τῶν +μικρῶν +τούτων +τῶν +πιστευόντων +εἰς +ἐμέ, +συμφέρει +αὐτῷ +ἵνα +κρεμασθῇ +μύλος +ὀνικὸς +περὶ +τὸν +τράχηλον +αὐτοῦ +καὶ +καταποντισθῇ +ἐν +τῷ +πελάγει +τῆς +θαλάσσης. +Οὐαὶ +τῷ +κόσμῳ +ἀπὸ +τῶν +σκανδάλων· +γὰρ +ἀνάγκη +ἐλθεῖν +τὰ +σκάνδαλα, +πλὴν +οὐαὶ +τῷ +ἀνθρώπῳ +δι’ +οὗ +τὸ +σκάνδαλον +ἔρχεται. +δὲ +Εἰ +ἡ +χείρ +σου +ἢ +ὁ +πούς +σου +σκανδαλίζει +σε, +ἔκκοψον +αὐτὸν +καὶ +βάλε +ἀπὸ +σοῦ· +καλόν +σοί +ἐστιν +εἰσελθεῖν +εἰς +τὴν +ζωὴν +κυλλὸν +ἢ +χωλόν, +ἢ +δύο +χεῖρας +ἢ +δύο +πόδας +ἔχοντα +βληθῆναι +εἰς +τὸ +πῦρ +τὸ +αἰώνιον. +καὶ +εἰ +ὁ +ὀφθαλμός +σου +σκανδαλίζει +σε, +ἔξελε +αὐτὸν +καὶ +βάλε +ἀπὸ +σοῦ· +καλόν +σοί +ἐστιν +μονόφθαλμον +εἰς +τὴν +ζωὴν +εἰσελθεῖν, +ἢ +δύο +ὀφθαλμοὺς +ἔχοντα +βληθῆναι +εἰς +τὴν +γέενναν +τοῦ +πυρός. +Ὁρᾶτε +μὴ +καταφρονήσητε +ἑνὸς +τῶν +μικρῶν +τούτων· +γὰρ +λέγω +ὑμῖν +ὅτι +οἱ +ἄγγελοι +αὐτῶν +ἐν +οὐρανοῖς +διὰ +παντὸς +βλέπουσι +τὸ +πρόσωπον +τοῦ +Πατρός +μου +τοῦ +ἐν +οὐρανοῖς. +Τί +ὑμῖν +δοκεῖ; +ἐὰν +γένηταί +τινι +ἀνθρώπῳ +ἑκατὸν +πρόβατα +καὶ +πλανηθῇ +ἓν +ἐξ +αὐτῶν, +οὐχὶ +ἀφήσει +τὰ +ἐνενήκοντα +ἐννέα +ἐπὶ +τὰ +ὄρη +καὶ +πορευθεὶς +ζητεῖ +τὸ +πλανώμενον; +καὶ +ἐὰν +γένηται +εὑρεῖν +αὐτό, +ἀμὴν +λέγω +ὑμῖν +ὅτι +χαίρει +ἐπ’ +αὐτῷ +μᾶλλον +ἢ +ἐπὶ +τοῖς +ἐνενήκοντα +ἐννέα +τοῖς +μὴ +πεπλανημένοις. +οὕτως +οὐκ +ἔστιν +θέλημα +ἔμπροσθεν +τοῦ +Πατρὸς +ὑμῶν +τοῦ +ἐν +οὐρανοῖς +ἵνα +ἀπόληται +ἓν +τῶν +μικρῶν +τούτων. +δὲ +Ἐὰν +ἁμαρτήσῃ +ὁ +ἀδελφός +σου, +ὕπαγε +ἔλεγξον +αὐτὸν +μεταξὺ +σοῦ +καὶ +αὐτοῦ +μόνου. +ἐάν +σου +ἀκούσῃ, +ἐκέρδησας +τὸν +ἀδελφόν +σου· +δὲ +ἐὰν +μὴ +ἀκούσῃ, +παράλαβε +μετὰ +σοῦ +ἔτι +ἕνα +ἢ +δύο, +ἵνα +ἐπὶ +στόματος +δύο +ἢ +τριῶν +μαρτύρων +σταθῇ +πᾶν +ῥῆμα· +δὲ +ἐὰν +παρακούσῃ +αὐτῶν, +εἰπὸν +τῇ +ἐκκλησίᾳ· +δὲ +ἐὰν +καὶ +τῆς +ἐκκλησίας +παρακούσῃ, +ἔστω +σοι +ὥσπερ +ὁ +ἐθνικὸς +καὶ +ὁ +τελώνης. +Ἀμὴν +λέγω +ὑμῖν, +ἐὰν +ὅσα +δήσητε +ἐπὶ +τῆς +γῆς +ἔσται +δεδεμένα +ἐν +οὐρανῷ, +καὶ +ἐὰν +ὅσα +λύσητε +ἐπὶ +τῆς +γῆς +ἔσται +λελυμένα +ἐν +οὐρανῷ. +ἀμὴν +Πάλιν +λέγω +ὑμῖν +ὅτι +ἐὰν +δύο +ἐξ +ὑμῶν +συμφωνήσωσιν +ἐπὶ +τῆς +γῆς +περὶ +παντὸς +πράγματος +ἐὰν +οὗ +αἰτήσωνται, +γενήσεται +αὐτοῖς +παρὰ +τοῦ +Πατρός +μου +τοῦ +ἐν +οὐρανοῖς. +γάρ +οὗ +εἰσιν +συνηγμένοι +δύο +ἢ +τρεῖς +εἰς +τὸ +ἐμὸν +ὄνομα, +ἐκεῖ +εἰμι +ἐν +μέσῳ +αὐτῶν. +Τότε +προσελθὼν +ὁ +Πέτρος +εἶπεν +αὐτῷ +Κύριε, +ποσάκις +ἁμαρτήσει +εἰς +ἐμὲ +ὁ +ἀδελφός +μου +καὶ +ἀφήσω +αὐτῷ; +ἕως +ἑπτάκις; +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Οὐ +λέγω +σοι +ἕως +ἑπτάκις, +ἀλλὰ +ἕως +ἑβδομηκοντάκις +ἑπτά. +Διὰ +τοῦτο +ὡμοιώθη +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +βασιλεῖ +ὃς +ἠθέλησεν +συνᾶραι +λόγον +μετὰ +τῶν +δούλων +αὐτοῦ. +δὲ +ἀρξαμένου +αὐτοῦ +συναίρειν +προσήχθη +αὐτῷ +εἷς +ὀφειλέτης +μυρίων +ταλάντων. +δὲ +μὴ +ἔχοντος +αὐτοῦ +ἀποδοῦναι +ἐκέλευσεν +ὁ +κύριος +πραθῆναι +αὐτὸν +καὶ +τὴν +γυναῖκα +καὶ +τὰ +τέκνα +καὶ +πάντα +ὅσα +ἔχει, +καὶ +ἀποδοθῆναι. +οὖν +πεσὼν +ὁ +δοῦλος +προσεκύνει +αὐτῷ +λέγων +Μακροθύμησον +ἐπ’ +ἐμοί, +καὶ +πάντα +ἀποδώσω +σοι. +δὲ +σπλαγχνισθεὶς +ὁ +κύριος +τοῦ +δούλου +ἐκείνου +ἀπέλυσεν +αὐτόν, +καὶ +τὸ +δάνειον +ἀφῆκεν +αὐτῷ. +δὲ +ἐξελθὼν +ὁ +δοῦλος +ἐκεῖνος +εὗρεν +ἕνα +τῶν +συνδούλων +αὐτοῦ, +ὃς +ὤφειλεν +αὐτῷ +ἑκατὸν +δηνάρια, +καὶ +κρατήσας +αὐτὸν +ἔπνιγεν +λέγων +Ἀπόδος +εἴ +τι +ὀφείλεις. +οὖν +πεσὼν +ὁ +σύνδουλος +αὐτοῦ +παρεκάλει +αὐτὸν +λέγων +Μακροθύμησον +ἐπ’ +ἐμοί, +καὶ +ἀποδώσω +σοι. +δὲ +ὁ +οὐκ +ἤθελεν, +ἀλλὰ +ἀπελθὼν +ἔβαλεν +αὐτὸν +εἰς +φυλακὴν +ἕως +ἀποδῷ +τὸ +ὀφειλόμενον. +οὖν +οἱ +σύνδουλοι +αὐτοῦ +ἰδόντες +τὰ +γενόμενα +ἐλυπήθησαν +σφόδρα, +καὶ +ἐλθόντες +διεσάφησαν +τῷ +κυρίῳ +ἑαυτῶν +πάντα +τὰ +γενόμενα. +τότε +προσκαλεσάμενος +αὐτὸν +ὁ +κύριος +αὐτοῦ +λέγει +αὐτῷ +Δοῦλε +πονηρέ, +πᾶσαν +τὴν +ὀφειλὴν +ἐκείνην +ἀφῆκά +σοι, +ἐπεὶ +παρεκάλεσάς +με· +οὐκ +ἔδει +καὶ +σὲ +ἐλεῆσαι +τὸν +σύνδουλόν +σου, +ὡς +κἀγὼ +σὲ +ἠλέησα; +καὶ +ὀργισθεὶς +ὁ +κύριος +αὐτοῦ +παρέδωκεν +αὐτὸν +τοῖς +βασανισταῖς +ἕως +οὗ +ἀποδῷ +πᾶν +τὸ +ὀφειλόμενον +αὐτῷ. +Οὕτως +καὶ +ὁ +Πατήρ +μου +ὁ +οὐράνιος +ποιήσει +ὑμῖν, +ἐὰν +μὴ +ἀφῆτε +ἕκαστος +τῷ +ἀδελφῷ +αὐτοῦ +ἀπὸ +τῶν +καρδιῶν +ὑμῶν. +Καὶ +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +τοὺς +λόγους +τούτους, +μετῆρεν +ἀπὸ +τῆς +Γαλιλαίας +καὶ +ἦλθεν +εἰς +τὰ +ὅρια +τῆς +Ἰουδαίας +πέραν +τοῦ +Ἰορδάνου. +καὶ +ἠκολούθησαν +αὐτῷ +ὄχλοι +πολλοί, +καὶ +ἐθεράπευσεν +αὐτοὺς +ἐκεῖ. +Καὶ +προσῆλθον +αὐτῷ +Φαρισαῖοι +πειράζοντες +αὐτὸν +καὶ +λέγοντες +Εἰ +ἔξεστιν +ἀπολῦσαι +τὴν +γυναῖκα +αὐτοῦ +κατὰ +πᾶσαν +αἰτίαν; +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Οὐκ +ἀνέγνωτε +ὅτι +ὁ +κτίσας +ἀπ’ +ἀρχῆς +ἄρσεν +καὶ +θῆλυ +ἐποίησεν +αὐτοὺς +καὶ +εἶπεν +Ἕνεκα +τούτου +καταλείψει +ἄνθρωπος +τὸν +πατέρα +καὶ +τὴν +μητέρα +καὶ +κολληθήσεται +τῇ +γυναικὶ +αὐτοῦ, +καὶ +ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν; +ὥστε +οὐκέτι +εἰσὶν +δύο +ἀλλὰ +σὰρξ +μία. +οὖν +ὃ +ὁ +Θεὸς +συνέζευξεν, +ἄνθρωπος +μὴ +χωριζέτω. +λέγουσιν +αὐτῷ +οὖν +Τί +Μωϋσῆς +ἐνετείλατο +δοῦναι +βιβλίον +ἀποστασίου +καὶ +ἀπολῦσαι; +λέγει +αὐτοῖς +Ὅτι +Μωϋσῆς +πρὸς +τὴν +σκληροκαρδίαν +ὑμῶν +ἐπέτρεψεν +ὑμῖν +ἀπολῦσαι +τὰς +γυναῖκας +ὑμῶν· +δὲ +ἀπ’ +ἀρχῆς +οὐ +γέγονεν +οὕτως. +δὲ +λέγω +ὑμῖν +ὅτι +ἂν +ὃς +ἀπολύσῃ +τὴν +γυναῖκα +αὐτοῦ +μὴ +ἐπὶ +πορνείᾳ +καὶ +γαμήσῃ +ἄλλην, +μοιχᾶται. +λέγουσιν +αὐτῷ +οἱ +μαθηταί +Εἰ +οὕτως +ἐστὶν +ἡ +αἰτία +τοῦ +ἀνθρώπου +μετὰ +τῆς +γυναικός, +οὐ +συμφέρει +γαμῆσαι. +δὲ +ὁ +εἶπεν +αὐτοῖς +Οὐ +πάντες +χωροῦσιν +τὸν +λόγον +τοῦτον +ἀλλ’ +οἷς +δέδοται. +γὰρ +εἰσὶν +εὐνοῦχοι +οἵτινες +ἐκ +κοιλίας +μητρὸς +ἐγεννήθησαν +οὕτως, +καὶ +εἰσὶν +εὐνοῦχοι +οἵτινες +εὐνουχίσθησαν +ὑπὸ +τῶν +ἀνθρώπων, +καὶ +εἰσὶν +εὐνοῦχοι +οἵτινες +εὐνούχισαν +ἑαυτοὺς +διὰ +τὴν +βασιλείαν +τῶν +οὐρανῶν. +ὁ +δυνάμενος +χωρεῖν +χωρείτω. +Τότε +προσηνέχθησαν +αὐτῷ +παιδία, +ἵνα +τὰς +χεῖρας +ἐπιθῇ +αὐτοῖς +καὶ +προσεύξηται· +δὲ +οἱ +μαθηταὶ +ἐπετίμησαν +αὐτοῖς. +δὲ +ὁ +Ἰησοῦς +εἶπεν +Ἄφετε +τὰ +παιδία +καὶ +μὴ +κωλύετε +αὐτὰ +ἐλθεῖν +πρός +με· +γὰρ +τῶν +τοιούτων +ἐστὶν +ἡ +βασιλεία +τῶν +οὐρανῶν. +καὶ +ἐπιθεὶς +τὰς +χεῖρας +αὐτοῖς +ἐπορεύθη +ἐκεῖθεν. +Καὶ +ἰδοὺ +εἷς +προσελθὼν +αὐτῷ +εἶπεν +Διδάσκαλε, +τί +ἀγαθὸν +ποιήσω +ἵνα +σχῶ +ζωὴν +αἰώνιον; +δὲ +ὁ +εἶπεν +αὐτῷ +Τί +με +ἐρωτᾷς +περὶ +τοῦ +ἀγαθοῦ; +εἷς +ἐστιν +ὁ +ἀγαθός· +δὲ +εἰ +θέλεις +εἰς +τὴν +ζωὴν +εἰσελθεῖν, +τήρει +τὰς +ἐντολάς. +λέγει +αὐτῷ +Ποίας; +δὲ +ὁ +Ἰησοῦς +ἔφη +Τὸ +Οὐ +φονεύσεις, +Οὐ +μοιχεύσεις, +Οὐ +κλέψεις, +Οὐ +ψευδομαρτυρήσεις, +Τίμα +τὸν +πατέρα +καὶ +τὴν +μητέρα, +καὶ +Ἀγαπήσεις +τὸν +πλησίον +σου +ὡς +σεαυτόν. +λέγει +αὐτῷ +ὁ +νεανίσκος +Ταῦτα +πάντα +ἐφύλαξα· +τί +ἔτι +ὑστερῶ; +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Εἰ +θέλεις +τέλειος +εἶναι, +ὕπαγε +πώλησόν +σου +τὰ +ὑπάρχοντα +καὶ +δὸς +πτωχοῖς, +καὶ +ἕξεις +θησαυρὸν +ἐν +οὐρανοῖς, +καὶ +δεῦρο +ἀκολούθει +μοι. +δὲ +ὁ +νεανίσκος +ἀκούσας +τὸν +λόγον +ἀπῆλθεν +λυπούμενος· +γὰρ +ἦν +ἔχων +κτήματα +πολλά. +δὲ +Ὁ +Ἰησοῦς +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +Ἀμὴν +λέγω +ὑμῖν +ὅτι +πλούσιος +δυσκόλως +εἰσελεύσεται +εἰς +τὴν +βασιλείαν +τῶν +οὐρανῶν. +δὲ +πάλιν +λέγω +ὑμῖν, +εὐκοπώτερόν +ἐστιν +κάμηλον +διὰ +τρήματος +ῥαφίδος +εἰσελθεῖν +ἢ +πλούσιον +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ. +δὲ +ἀκούσαντες +οἱ +μαθηταὶ +ἐξεπλήσσοντο +σφόδρα +λέγοντες +ἄρα +Τίς +δύναται +σωθῆναι; +δὲ +ἐμβλέψας +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Παρὰ +ἀνθρώποις +τοῦτο +ἀδύνατόν +ἐστιν, +δὲ +παρὰ +Θεῷ +πάντα +δυνατά. +Τότε +ἀποκριθεὶς +ὁ +Πέτρος +εἶπεν +αὐτῷ +Ἰδοὺ +ἡμεῖς +ἀφήκαμεν +πάντα +καὶ +ἠκολουθήσαμέν +σοι· +ἄρα +τί +ἔσται +ἡμῖν; +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἀμὴν +λέγω +ὑμῖν +ὅτι +ὑμεῖς +οἱ +ἀκολουθήσαντές +μοι, +ἐν +τῇ +παλινγενεσίᾳ, +ὅταν +καθίσῃ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐπὶ +θρόνου +δόξης +αὐτοῦ, +καθήσεσθε +καὶ +αὐτοὶ +ἐπὶ +δώδεκα +θρόνους +κρίνοντες +τὰς +δώδεκα +φυλὰς +τοῦ +Ἰσραήλ. +καὶ +πᾶς +ὅστις +ἀφῆκεν +οἰκίας +ἢ +ἀδελφοὺς +ἢ +ἀδελφὰς +ἢ +πατέρα +ἢ +μητέρα +ἢ +τέκνα +ἢ +ἀγροὺς +ἕνεκεν +τοῦ +ἐμοῦ +ὀνόματός, +πολλαπλασίονα +λήμψεται +καὶ +ζωὴν +αἰώνιον +κληρονομήσει. +δὲ +Πολλοὶ +πρῶτοι +ἔσονται +ἔσχατοι +καὶ +ἔσχατοι +πρῶτοι. +γάρ +Ὁμοία +ἐστιν +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +οἰκοδεσπότῃ, +ὅστις +ἐξῆλθεν +ἅμα +πρωῒ +μισθώσασθαι +ἐργάτας +εἰς +τὸν +ἀμπελῶνα +αὐτοῦ. +δὲ +συμφωνήσας +μετὰ +τῶν +ἐργατῶν +ἐκ +δηναρίου +τὴν +ἡμέραν +ἀπέστειλεν +αὐτοὺς +εἰς +τὸν +ἀμπελῶνα +αὐτοῦ. +καὶ +ἐξελθὼν +περὶ +τρίτην +ὥραν +εἶδεν +ἄλλους +ἑστῶτας +ἐν +τῇ +ἀγορᾷ +ἀργούς, +καὶ +ἐκείνοις +εἶπεν +Ὑπάγετε +καὶ +ὑμεῖς +εἰς +τὸν +ἀμπελῶνα, +καὶ +ἐὰν +ὃ +ᾖ +δίκαιον +δώσω +ὑμῖν. +δὲ +οἱ +ἀπῆλθον. +δὲ +πάλιν +ἐξελθὼν +περὶ +ἕκτην +καὶ +ἐνάτην +ὥραν +ἐποίησεν +ὡσαύτως. +δὲ +περὶ +τὴν +ἑνδεκάτην +ἐξελθὼν +εὗρεν +ἄλλους +ἑστῶτας, +καὶ +λέγει +αὐτοῖς +Τί +ὧδε +ἑστήκατε +ὅλην +τὴν +ἡμέραν +ἀργοί; +λέγουσιν +αὐτῷ +Ὅτι +οὐδεὶς +ἡμᾶς +ἐμισθώσατο. +λέγει +αὐτοῖς +Ὑπάγετε +καὶ +ὑμεῖς +εἰς +τὸν +ἀμπελῶνα. +δὲ +ὀψίας +γενομένης +λέγει +ὁ +κύριος +τοῦ +ἀμπελῶνος +τῷ +ἐπιτρόπῳ +αὐτοῦ +Κάλεσον +τοὺς +ἐργάτας +καὶ +ἀπόδος +τὸν +μισθόν, +ἀρξάμενος +ἀπὸ +τῶν +ἐσχάτων +ἕως +τῶν +πρώτων. +δὲ +ἐλθόντες +οἱ +περὶ +τὴν +ἑνδεκάτην +ὥραν +ἔλαβον +ἀνὰ +δηνάριον. +καὶ +ἐλθόντες +οἱ +πρῶτοι +ἐνόμισαν +ὅτι +πλεῖον +λήμψονται· +καὶ +ἔλαβον +τὸ +ἀνὰ +δηνάριον +καὶ +αὐτοί. +δὲ +λαβόντες +ἐγόγγυζον +κατὰ +τοῦ +οἰκοδεσπότου +λέγοντες +Οὗτοι +οἱ +ἔσχατοι +μίαν +ὥραν +ἐποίησαν, +καὶ +ἴσους +αὐτοὺς +ἐποίησας +ἡμῖν +τοῖς +βαστάσασι +τὸ +βάρος +τῆς +ἡμέρας +καὶ +τὸν +καύσωνα. +δὲ +ὁ +ἀποκριθεὶς +ἑνὶ +αὐτῶν +εἶπεν +Ἑταῖρε, +οὐκ +ἀδικῶ +σε· +οὐχὶ +δηναρίου +συνεφώνησάς +μοι; +ἆρον +τὸ +σὸν +καὶ +ὕπαγε· +δὲ +θέλω +τούτῳ +τῷ +ἐσχάτῳ +δοῦναι +ὡς +καὶ +σοί· +οὐκ +ἔξεστίν +μοι +ὃ +θέλω +ποιῆσαι +ἐν +τοῖς +ἐμοῖς; +ἢ +ὁ +ὀφθαλμός +σου +πονηρός +ἐστιν +ὅτι +ἐγὼ +ἀγαθός +εἰμι; +Οὕτως +ἔσονται +οἱ +ἔσχατοι +πρῶτοι +καὶ +οἱ +πρῶτοι +ἔσχατοι. +δὲ +Ἰησοῦς +Μέλλων +ἀναβαίνειν +εἰς +Ἱεροσόλυμα +παρέλαβεν +τοὺς +δώδεκα +κατ’ +ἰδίαν, +καὶ +ἐν +τῇ +ὁδῷ +εἶπεν +αὐτοῖς +Ἰδοὺ +ἀναβαίνομεν +εἰς +Ἱεροσόλυμα, +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδοθήσεται +τοῖς +ἀρχιερεῦσιν +καὶ +γραμματεῦσιν, +καὶ +κατακρινοῦσιν +αὐτὸν +εἰς +θάνατον, +καὶ +παραδώσουσιν +αὐτὸν +τοῖς +ἔθνεσιν +εἰς +τὸ +ἐμπαῖξαι +καὶ +μαστιγῶσαι +καὶ +σταυρῶσαι, +καὶ +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθήσεται. +Τότε +προσῆλθεν +αὐτῷ +ἡ +μήτηρ +τῶν +υἱῶν +Ζεβεδαίου +μετὰ +τῶν +υἱῶν +αὐτῆς +προσκυνοῦσα +καὶ +αἰτοῦσά +τι +ἀπ’ +αὐτοῦ. +δὲ +ὁ +εἶπεν +αὐτῇ +Τί +θέλεις; +λέγει +αὐτῷ +Εἰπὲ +ἵνα +καθίσωσιν +οὗτοι +οἱ +δύο +υἱοί +μου +εἷς +ἐκ +δεξιῶν +καὶ +εἷς +ἐξ +εὐωνύμων +σου +ἐν +τῇ +βασιλείᾳ +σου. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +Οὐκ +οἴδατε +τί +αἰτεῖσθε. +δύνασθε +πιεῖν +τὸ +ποτήριον +ὃ +πίνειν; +ἐγὼ +μέλλω +λέγουσιν +αὐτῷ +Δυνάμεθα. +λέγει +αὐτοῖς +μὲν +Τὸ +ποτήριόν +μου +πίεσθε, +δὲ +τὸ +καθίσαι +ἐκ +δεξιῶν +μου +καὶ +ἐξ +εὐωνύμων +οὐκ +ἔστιν +ἐμὸν +τοῦτο +δοῦναι, +ἀλλ’ +οἷς +ἡτοίμασται +ὑπὸ +τοῦ +Πατρός +μου. +καὶ +ἀκούσαντες +οἱ +δέκα +ἠγανάκτησαν +περὶ +τῶν +δύο +ἀδελφῶν. +δὲ +ὁ +Ἰησοῦς +προσκαλεσάμενος +αὐτοὺς +εἶπεν +Οἴδατε +ὅτι +οἱ +ἄρχοντες +τῶν +ἐθνῶν +κατακυριεύουσιν +αὐτῶν +καὶ +οἱ +μεγάλοι +κατεξουσιάζουσιν +αὐτῶν. +οὐχ +οὕτως +ἐστὶν +ἐν +ὑμῖν· +ἀλλ’ +ἐὰν +ὃς +θέλῃ +ἐν +ὑμῖν +μέγας +γενέσθαι, +ἔσται +ὑμῶν +διάκονος, +καὶ +ἂν +ὃς +θέλῃ +ἐν +ὑμῖν +εἶναι +πρῶτος, +ἔσται +ὑμῶν +δοῦλος· +ὥσπερ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +οὐκ +ἦλθεν +διακονηθῆναι, +ἀλλὰ +διακονῆσαι +καὶ +δοῦναι +τὴν +ψυχὴν +αὐτοῦ +λύτρον +ἀντὶ +πολλῶν. +Καὶ +ἐκπορευομένων +αὐτῶν +ἀπὸ +Ἱερειχὼ +ἠκολούθησεν +αὐτῷ +ὄχλος +πολύς. +καὶ +ἰδοὺ +δύο +τυφλοὶ +καθήμενοι +παρὰ +τὴν +ὁδόν, +ἀκούσαντες +ὅτι +Ἰησοῦς +παράγει, +ἔκραξαν +λέγοντες +ἐλέησον +ἡμᾶς, +Κύριε, +υἱὸς +Δαυείδ. +δὲ +ὁ +ὄχλος +ἐπετίμησεν +αὐτοῖς +ἵνα +σιωπήσωσιν· +δὲ +οἱ +μεῖζον +ἔκραξαν +λέγοντες +ἐλέησον +ἡμᾶς, +Κύριε, +υἱὸς +Δαυείδ. +καὶ +στὰς +ὁ +Ἰησοῦς +ἐφώνησεν +αὐτοὺς +καὶ +εἶπεν +θέλετε +Τί +ποιήσω +ὑμῖν; +λέγουσιν +αὐτῷ +Κύριε, +ἵνα +ἀνοιγῶσιν +οἱ +ὀφθαλμοὶ +ἡμῶν. +δὲ +σπλαγχνισθεὶς +ὁ +Ἰησοῦς +ἥψατο +τῶν +ὀμμάτων +αὐτῶν, +καὶ +εὐθέως +ἀνέβλεψαν +καὶ +ἠκολούθησαν +αὐτῷ. +Καὶ +ὅτε +ἤγγισαν +εἰς +Ἱεροσόλυμα +καὶ +ἦλθον +εἰς +Βηθφαγὴ +εἰς +τὸ +ὄρος +τῶν +Ἐλαιῶν, +τότε +Ἰησοῦς +ἀπέστειλεν +δύο +μαθητὰς +λέγων +αὐτοῖς +Πορεύεσθε +εἰς +τὴν +κώμην +τὴν +κατέναντι +ὑμῶν, +καὶ +εὐθὺς +εὑρήσετε +ὄνον +δεδεμένην +καὶ +πῶλον +μετ’ +αὐτῆς· +λύσαντες +ἀγάγετέ +μοι. +καὶ +ἐάν +τις +ὑμῖν +εἴπῃ +τι, +ἐρεῖτε +ὅτι +Ὁ +Κύριος +αὐτῶν +χρείαν +ἔχει· +δὲ +εὐθὺς +ἀποστελεῖ +αὐτούς. +δὲ +Τοῦτο +γέγονεν +ἵνα +πληρωθῇ +τὸ +ῥηθὲν +διὰ +τοῦ +προφήτου +λέγοντος +Εἴπατε +τῇ +θυγατρὶ +Σιών +Ἰδοὺ +ὁ +Βασιλεύς +σου +ἔρχεταί +σοι +πραῢς +καὶ +ἐπιβεβηκὼς +ἐπὶ +ὄνον +καὶ +ἐπὶ +πῶλον +υἱὸν +ὑποζυγίου. +δὲ +οἱ +μαθηταὶ +πορευθέντες +καὶ +ποιήσαντες +καθὼς +συνέταξεν +αὐτοῖς +ὁ +Ἰησοῦς +ἤγαγον +τὴν +ὄνον +καὶ +τὸν +πῶλον, +καὶ +ἐπέθηκαν +ἐπ’ +αὐτῶν +τὰ +ἱμάτια, +καὶ +ἐπεκάθισεν +ἐπάνω +αὐτῶν. +δὲ +ὁ +πλεῖστος +ὄχλος +ἔστρωσαν +ἑαυτῶν +τὰ +ἱμάτια +ἐν +τῇ +ὁδῷ, +δὲ +ἄλλοι +ἔκοπτον +κλάδους +ἀπὸ +τῶν +δένδρων +καὶ +ἐστρώννυον +ἐν +τῇ +ὁδῷ. +δὲ +οἱ +ὄχλοι +οἱ +προάγοντες +αὐτὸν +καὶ +οἱ +ἀκολουθοῦντες +ἔκραζον +λέγοντες +Ὡσαννὰ +τῷ +υἱῷ +Δαυείδ· +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου· +Ὡσαννὰ +ἐν +τοῖς +ὑψίστοις. +καὶ +εἰσελθόντος +αὐτοῦ +εἰς +Ἱεροσόλυμα +ἐσείσθη +πᾶσα +ἡ +πόλις +λέγουσα +Τίς +ἐστιν +οὗτος; +δὲ +οἱ +ὄχλοι +ἔλεγον +Οὗτός +ἐστιν +ὁ +προφήτης +Ἰησοῦς +ὁ +ἀπὸ +Ναζαρὲθ +τῆς +Γαλιλαίας. +Καὶ +εἰσῆλθεν +Ἰησοῦς +εἰς +τὸ +ἱερόν +καὶ +ἐξέβαλεν +πάντας +τοὺς +πωλοῦντας +καὶ +ἀγοράζοντας +ἐν +τῷ +ἱερῷ +καὶ +κατέστρεψεν +τὰς +τραπέζας +τῶν +κολλυβιστῶν +καὶ +τὰς +καθέδρας +τῶν +πωλούντων +τὰς +περιστεράς, +καὶ +λέγει +αὐτοῖς +Γέγραπται +Ὁ +οἶκός +μου +οἶκος +προσευχῆς +κληθήσεται, +δὲ +ὑμεῖς +αὐτὸν +ποιεῖτε +σπήλαιον +λῃστῶν. +Καὶ +προσῆλθον +αὐτῷ +τυφλοὶ +καὶ +χωλοὶ +ἐν +τῷ +ἱερῷ, +καὶ +ἐθεράπευσεν +αὐτούς. +δὲ +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +ἰδόντες +τὰ +θαυμάσια +ἃ +ἐποίησεν +καὶ +τοὺς +παῖδας +τοὺς +κράζοντας +ἐν +τῷ +ἱερῷ +καὶ +λέγοντας +Ὡσαννὰ +τῷ +υἱῷ +Δαυείδ, +ἠγανάκτησαν, +καὶ +εἶπαν +αὐτῷ +Ἀκούεις +τί +οὗτοι +λέγουσιν; +δὲ +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Ναί· +οὐδέποτε +ἀνέγνωτε +ὅτι +Ἐκ +στόματος +νηπίων +καὶ +θηλαζόντων +κατηρτίσω +αἶνον; +Καὶ +καταλιπὼν +αὐτοὺς +ἐξῆλθεν +ἔξω +τῆς +πόλεως +εἰς +Βηθανίαν, +καὶ +ηὐλίσθη +ἐκεῖ. +δὲ +Πρωῒ +ἐπαναγαγὼν +εἰς +τὴν +πόλιν +ἐπείνασεν. +καὶ +ἰδὼν +συκῆν +μίαν +ἐπὶ +τῆς +ὁδοῦ +ἦλθεν +ἐπ’ +αὐτήν, +καὶ +οὐδὲν +εὗρεν +ἐν +αὐτῇ +εἰ +μὴ +φύλλα +μόνον, +καὶ +λέγει +αὐτῇ +Οὐ +μηκέτι +ἐκ +σοῦ +καρπὸς +γένηται +εἰς +τὸν +αἰῶνα. +καὶ +ἐξηράνθη +παραχρῆμα +ἡ +συκῆ. +καὶ +ἰδόντες +οἱ +μαθηταὶ +ἐθαύμασαν +λέγοντες +Πῶς +παραχρῆμα +ἐξηράνθη +ἡ +συκῆ; +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἀμὴν +λέγω +ὑμῖν, +ἐὰν +ἔχητε +πίστιν +καὶ +μὴ +διακριθῆτε, +οὐ +μόνον +τὸ +τῆς +συκῆς +ποιήσετε, +ἀλλὰ +κἂν +τῷ +ὄρει +τούτῳ +εἴπητε +Ἄρθητι +καὶ +βλήθητι +εἰς +τὴν +θάλασσαν, +γενήσεται· +καὶ +πάντα +ἂν +ὅσα +αἰτήσητε +ἐν +τῇ +προσευχῇ +πιστεύοντες +λήμψεσθε. +Καὶ +ἐλθόντος +αὐτοῦ +εἰς +τὸ +ἱερὸν +προσῆλθον +αὐτῷ +διδάσκοντι +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +τοῦ +λαοῦ +λέγοντες +Ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιεῖς; +καὶ +τίς +σοι +ἔδωκεν +τὴν +ἐξουσίαν +ταύτην; +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἐρωτήσω +ὑμᾶς +κἀγὼ +λόγον +ἕνα, +ἐὰν +ὃν +εἴπητέ +μοι, +κἀγὼ +ὑμῖν +ἐρῶ +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ· +τὸ +βάπτισμα +τὸ +Ἰωάνου +πόθεν +ἦν; +ἐξ +οὐρανοῦ +ἢ +ἐξ +ἀνθρώπων; +δὲ +οἱ +διελογίζοντο +ἐν +ἑαυτοῖς +λέγοντες· +Ἐὰν +εἴπωμεν +Ἐξ +οὐρανοῦ, +ἐρεῖ +ἡμῖν +οὖν +Διὰ +τί +οὐκ +ἐπιστεύσατε +αὐτῷ; +δὲ +ἐὰν +εἴπωμεν +Ἐξ +ἀνθρώπων, +φοβούμεθα +τὸν +ὄχλον· +γὰρ +πάντες +ὡς +προφήτην +ἔχουσιν +τὸν +Ἰωάνην. +καὶ +ἀποκριθέντες +τῷ +Ἰησοῦ +εἶπαν +Οὐκ +οἴδαμεν. +ἔφη +αὐτοῖς +καὶ +αὐτός +Οὐδὲ +ἐγὼ +λέγω +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ. +δὲ +Τί +ὑμῖν +δοκεῖ; +ἄνθρωπος +εἶχεν +τέκνα +δύο· +προσελθὼν +τῷ +πρώτῳ +εἶπεν +Τέκνον, +ὕπαγε +σήμερον +ἐργάζου +ἐν +τῷ +ἀμπελῶνι. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Ἐγὼ +κύριε, +καὶ +οὐκ +ἀπῆλθεν. +δὲ +προσελθὼν +τῷ +δευτέρῳ +εἶπεν +ὡσαύτως. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Οὐ +θέλω, +ὕστερον +μεταμεληθεὶς +ἀπῆλθεν. +τίς +ἐκ +τῶν +δύο +ἐποίησεν +τὸ +θέλημα +τοῦ +πατρός; +λέγουσιν +Ὁ +ὕστερος. +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμὴν +λέγω +ὑμῖν +ὅτι +οἱ +τελῶναι +καὶ +αἱ +πόρναι +προάγουσιν +ὑμᾶς +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ. +γὰρ +ἦλθεν +Ἰωάνης +πρὸς +ὑμᾶς +ἐν +ὁδῷ +δικαιοσύνης, +καὶ +οὐκ +ἐπιστεύσατε +αὐτῷ· +δὲ +οἱ +τελῶναι +καὶ +αἱ +πόρναι +ἐπίστευσαν +αὐτῷ· +δὲ +ὑμεῖς +ἰδόντες +οὐδὲ +μετεμελήθητε +ὕστερον +τοῦ +πιστεῦσαι +αὐτῷ. +Ἄλλην +παραβολὴν +ἀκούσατε. +Ἄνθρωπος +ἦν +οἰκοδεσπότης +ὅστις +ἐφύτευσεν +ἀμπελῶνα, +καὶ +φραγμὸν +αὐτῷ +περιέθηκεν +καὶ +ὤρυξεν +ἐν +αὐτῷ +ληνὸν +καὶ +ᾠκοδόμησεν +πύργον, +καὶ +ἐξέδετο +αὐτὸν +γεωργοῖς, +καὶ +ἀπεδήμησεν. +δὲ +ὅτε +ἤγγισεν +ὁ +καιρὸς +τῶν +καρπῶν, +ἀπέστειλεν +τοὺς +δούλους +αὐτοῦ +πρὸς +τοὺς +γεωργοὺς +λαβεῖν +τοὺς +καρποὺς +αὐτοῦ. +καὶ +λαβόντες +οἱ +γεωργοὶ +τοὺς +δούλους +αὐτοῦ +μὲν +ὃν +ἔδειραν, +δὲ +ὃν +ἀπέκτειναν, +δὲ +ὃν +ἐλιθοβόλησαν. +πάλιν +ἀπέστειλεν +ἄλλους +δούλους +πλείονας +τῶν +πρώτων, +καὶ +ἐποίησαν +αὐτοῖς +ὡσαύτως. +δὲ +ὕστερον +ἀπέστειλεν +πρὸς +αὐτοὺς +τὸν +υἱὸν +αὐτοῦ +λέγων +Ἐντραπήσονται +τὸν +υἱόν +μου. +δὲ +οἱ +γεωργοὶ +ἰδόντες +τὸν +υἱὸν +εἶπον +ἐν +ἑαυτοῖς +Οὗτός +ἐστιν +ὁ +κληρονόμος· +δεῦτε +ἀποκτείνωμεν +αὐτὸν +καὶ +σχῶμεν +τὴν +κληρονομίαν +αὐτοῦ· +καὶ +λαβόντες +αὐτὸν +ἐξέβαλον +ἔξω +τοῦ +ἀμπελῶνος +καὶ +ἀπέκτειναν. +οὖν +ὅταν +ἔλθῃ +ὁ +κύριος +τοῦ +ἀμπελῶνος, +τί +ποιήσει +τοῖς +γεωργοῖς +ἐκείνοις; +λέγουσιν +αὐτῷ +Κακοὺς +κακῶς +ἀπολέσει +αὐτούς, +καὶ +τὸν +ἀμπελῶνα +ἐκδώσεται +ἄλλοις +γεωργοῖς, +οἵτινες +ἀποδώσουσιν +αὐτῷ +τοὺς +καρποὺς +ἐν +τοῖς +καιροῖς +αὐτῶν. +Λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Οὐδέποτε +ἀνέγνωτε +ἐν +ταῖς +γραφαῖς +Λίθον +ὃν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες, +οὗτος +ἐγενήθη +εἰς +κεφαλὴν +γωνίας· +παρὰ +Κυρίου +ἐγένετο +αὕτη, +καὶ +ἔστιν +θαυμαστὴ +ἐν +ὀφθαλμοῖς +ἡμῶν; +διὰ +τοῦτο +λέγω +ὑμῖν +ὅτι +ἀρθήσεται +ἀφ’ +ὑμῶν +ἡ +βασιλεία +τοῦ +Θεοῦ +καὶ +δοθήσεται +ἔθνει +ποιοῦντι +τοὺς +καρποὺς +αὐτῆς. +καὶ +ὁ +πεσὼν +ἐπὶ +τὸν +λίθον +τοῦτον +συνθλασθήσεται· +δ’ +ἐφ’ +ἂν +ὃν +πέσῃ, +λικμήσει +αὐτόν. +Καὶ +οἱ +ἀρχιερεῖς +καὶ +οἱ +Φαρισαῖοι +ἀκούσαντες +τὰς +παραβολὰς +αὐτοῦ +ἔγνωσαν +ὅτι +περὶ +αὐτῶν +λέγει· +καὶ +ζητοῦντες +αὐτὸν +κρατῆσαι +ἐφοβήθησαν +τοὺς +ὄχλους, +ἐπεὶ +εἰς +προφήτην +αὐτὸν +εἶχον. +Καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +πάλιν +εἶπεν +ἐν +παραβολαῖς +αὐτοῖς +λέγων +Ὡμοιώθη +ἡ +βασιλεία +τῶν +οὐρανῶν +ἀνθρώπῳ +βασιλεῖ, +ὅστις +ἐποίησεν +γάμους +τῷ +υἱῷ +αὐτοῦ. +καὶ +ἀπέστειλεν +τοὺς +δούλους +αὐτοῦ +καλέσαι +τοὺς +κεκλημένους +εἰς +τοὺς +γάμους, +καὶ +οὐκ +ἤθελον +ἐλθεῖν. +πάλιν +ἀπέστειλεν +ἄλλους +δούλους +λέγων +Εἴπατε +τοῖς +κεκλημένοις +Ἰδοὺ +τὸ +ἄριστόν +μου +ἡτοίμακα, +οἱ +ταῦροί +μου +καὶ +τὰ +σιτιστὰ +τεθυμένα, +καὶ +πάντα +ἕτοιμα· +δεῦτε +εἰς +τοὺς +γάμους. +δὲ +οἱ +ἀμελήσαντες +ἀπῆλθον, +μὲν +ὃς +εἰς +τὸν +ἴδιον +ἀγρόν, +δὲ +ὃς +ἐπὶ +τὴν +ἐμπορίαν +αὐτοῦ· +δὲ +οἱ +λοιποὶ +κρατήσαντες +τοὺς +δούλους +αὐτοῦ +ὕβρισαν +καὶ +ἀπέκτειναν. +δὲ +ὁ +βασιλεὺς +ὠργίσθη, +καὶ +πέμψας +τὰ +στρατεύματα +αὐτοῦ +ἀπώλεσεν +τοὺς +φονεῖς +ἐκείνους +καὶ +τὴν +πόλιν +αὐτῶν +ἐνέπρησεν. +τότε +λέγει +τοῖς +δούλοις +αὐτοῦ +μὲν +Ὁ +γάμος +ἕτοιμός +ἐστιν, +δὲ +οἱ +κεκλημένοι +οὐκ +ἦσαν +ἄξιοι· +οὖν +πορεύεσθε +ἐπὶ +τὰς +διεξόδους +τῶν +ὁδῶν, +καὶ +ἐὰν +ὅσους +εὕρητε +καλέσατε +εἰς +τοὺς +γάμους. +καὶ +οἱ +δοῦλοι +ἐκεῖνοι +ἐξελθόντες +εἰς +τὰς +ὁδοὺς +συνήγαγον +πάντας +οὓς +εὗρον, +τε +πονηρούς +καὶ +ἀγαθούς· +καὶ +ἐπλήσθη +ὁ +νυμφὼν +ἀνακειμένων. +δὲ +ὁ +βασιλεὺς +εἰσελθὼν +θεάσασθαι +τοὺς +ἀνακειμένους +εἶδεν +ἐκεῖ +ἄνθρωπον +οὐκ +ἐνδεδυμένον +ἔνδυμα +γάμου· +καὶ +λέγει +αὐτῷ +Ἑταῖρε, +πῶς +εἰσῆλθες +ὧδε +μὴ +ἔχων +ἔνδυμα +γάμου; +δὲ +ὁ +ἐφιμώθη. +τότε +ὁ +βασιλεὺς +εἶπεν +τοῖς +διακόνοις +Δήσαντες +αὐτοῦ +πόδας +καὶ +χεῖρας +ἐκβάλετε +αὐτὸν +εἰς +τὸ +σκότος +τὸ +ἐξώτερον· +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων. +γάρ +Πολλοὶ +εἰσιν +κλητοὶ, +δὲ +ὀλίγοι +ἐκλεκτοί. +Τότε +πορευθέντες +οἱ +Φαρισαῖοι +συμβούλιον +ἔλαβον +ὅπως +αὐτὸν +παγιδεύσωσιν +ἐν +λόγῳ. +καὶ +ἀποστέλλουσιν +αὐτῷ +τοὺς +μαθητὰς +αὐτῶν +μετὰ +τῶν +Ἠρῳδιανῶν +λέγοντας +Διδάσκαλε, +οἴδαμεν +ὅτι +ἀληθὴς +εἶ +καὶ +τὴν +ὁδὸν +τοῦ +Θεοῦ +ἐν +ἀληθείᾳ +διδάσκεις, +καὶ +οὐ +μέλει +σοι +περὶ +οὐδενός, +γὰρ +οὐ +βλέπεις +εἰς +πρόσωπον +ἀνθρώπων· +οὖν +εἰπὸν +ἡμῖν, +τί +σοι +δοκεῖ; +ἔξεστιν +δοῦναι +κῆνσον +Καίσαρι +ἢ +οὔ; +δὲ +ὁ +Ἰησοῦς +γνοὺς +τὴν +πονηρίαν +αὐτῶν +εἶπεν +Τί +με +πειράζετε, +ὑποκριταί; +ἐπιδείξατέ +μοι +τὸ +νόμισμα +τοῦ +κήνσου. +δὲ +οἱ +προσήνεγκαν +αὐτῷ +δηνάριον. +καὶ +λέγει +αὐτοῖς +Τίνος +ἡ +εἰκὼν +αὕτη +καὶ +ἡ +ἐπιγραφή; +λέγουσιν· +Καίσαρος. +τότε +λέγει +αὐτοῖς +οὖν +Ἀπόδοτε +τὰ +Καίσαρος +Καίσαρι +καὶ +τὰ +τοῦ +Θεοῦ +τῷ +Θεῷ. +καὶ +ἀκούσαντες +ἐθαύμασαν, +καὶ +ἀφέντες +αὐτὸν +ἀπῆλθαν. +Ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +προσῆλθον +αὐτῷ +Σαδδουκαῖοι, +λέγοντες +μὴ +εἶναι +ἀνάστασιν, +καὶ +ἐπηρώτησαν +αὐτὸν +λέγοντες +Διδάσκαλε, +Μωϋσῆς +εἶπεν +Ἐάν +τις +ἀποθάνῃ +μὴ +ἔχων +τέκνα, +ἐπιγαμβρεύσει +ὁ +ἀδελφὸς +αὐτοῦ +τὴν +γυναῖκα +αὐτοῦ +καὶ +ἀναστήσει +σπέρμα +τῷ +ἀδελφῷ +αὐτοῦ. +δὲ +ἦσαν +παρ’ +ἡμῖν +ἑπτὰ +ἀδελφοί· +καὶ +ὁ +πρῶτος +γήμας +ἐτελεύτησεν, +καὶ +μὴ +ἔχων +σπέρμα +ἀφῆκεν +τὴν +γυναῖκα +αὐτοῦ +τῷ +ἀδελφῷ +αὐτοῦ· +ὁμοίως +καὶ +ὁ +δεύτερος +καὶ +ὁ +τρίτος, +ἕως +τῶν +ἑπτά· +δὲ +ὕστερον +πάντων +ἀπέθανεν +ἡ +γυνή. +οὖν +ἐν +τῇ +ἀναστάσει +τίνος +τῶν +ἑπτὰ +γυνή; +ἔσται +γὰρ +πάντες +ἔσχον +αὐτήν. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Πλανᾶσθε +μὴ +εἰδότες +τὰς +γραφὰς +μηδὲ +τὴν +δύναμιν +τοῦ +Θεοῦ. +γὰρ +ἐν +τῇ +ἀναστάσει +οὔτε +γαμοῦσιν +οὔτε +γαμίζονται, +ἀλλ’ +ὡς +ἄγγελοι +ἐν +τῷ +οὐρανῷ +εἰσιν. +δὲ +περὶ +τῆς +ἀναστάσεως +τῶν +νεκρῶν +οὐκ +ἀνέγνωτε +τὸ +ῥηθὲν +ὑμῖν +ὑπὸ +τοῦ +Θεοῦ +λέγοντος +Ἐγώ +εἰμι +ὁ +Θεὸς +Ἀβραὰμ +καὶ +ὁ +Θεὸς +Ἰσαὰκ +καὶ +ὁ +Θεὸς +Ἰακώβ; +οὐκ +ἔστιν +ὁ +Θεὸς +νεκρῶν +ἀλλὰ +ζώντων. +καὶ +ἀκούσαντες +οἱ +ὄχλοι +ἐξεπλήσσοντο +ἐπὶ +τῇ +διδαχῇ +αὐτοῦ. +δὲ +Οἱ +Φαρισαῖοι +ἀκούσαντες +ὅτι +ἐφίμωσεν +τοὺς +Σαδδουκαίους, +συνήχθησαν +ἐπὶ +τὸ +αὐτό, +καὶ +ἐπηρώτησεν +εἷς +ἐξ +αὐτῶν +νομικὸς +πειράζων +αὐτόν +Διδάσκαλε, +ποία +ἐντολὴ +μεγάλη +ἐν +τῷ +νόμῳ; +δὲ +ὁ +ἔφη +αὐτῷ +Ἀγαπήσεις +κύριον +τὸν +Θεόν +σου +ἐν +ὅλῃ +τῇ +καρδίᾳ +σου +καὶ +ἐν +ὅλῃ +τῇ +ψυχῇ +σου +καὶ +ἐν +ὅλῃ +τῇ +διανοίᾳ +σου. +αὕτη +ἐστὶν +ἡ +μεγάλη +καὶ +πρώτη +ἐντολή. +δευτέρα +ὁμοία +αὐτῇ +Ἀγαπήσεις +τὸν +πλησίον +σου +ὡς +σεαυτόν. +ἐν +ταύταις +ταῖς +δυσὶν +ἐντολαῖς +ὅλος +ὁ +νόμος +κρέμαται +καὶ +οἱ +προφῆται. +δὲ +Συνηγμένων +τῶν +Φαρισαίων +ἐπηρώτησεν +αὐτοὺς +ὁ +Ἰησοῦς +λέγων +Τί +ὑμῖν +δοκεῖ +περὶ +τοῦ +Χριστοῦ; +τίνος +υἱός +ἐστιν; +λέγουσιν +αὐτῷ +Τοῦ +Δαυείδ. +λέγει +αὐτοῖς +οὖν +Πῶς +Δαυεὶδ +ἐν +Πνεύματι +καλεῖ +αὐτὸν +Κύριον +λέγων +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἂν +θῶ +τοὺς +ἐχθρούς +σου +ὑποκάτω +τῶν +ποδῶν +σου; +οὖν +εἰ +Δαυεὶδ +καλεῖ +αὐτὸν +Κύριον, +πῶς +υἱὸς +αὐτοῦ +ἐστιν; +καὶ +οὐδεὶς +ἐδύνατο +ἀποκριθῆναι +αὐτῷ +λόγον, +οὐδὲ +ἐτόλμησέν +τις +ἀπ’ +ἐκείνης +τῆς +ἡμέρας +ἐπερωτῆσαι +αὐτὸν +οὐκέτι. +Τότε +ὁ +Ἰησοῦς +ἐλάλησεν +τοῖς +ὄχλοις +καὶ +τοῖς +μαθηταῖς +αὐτοῦ +λέγων +Ἐπὶ +τῆς +Μωϋσέως +καθέδρας +ἐκάθισαν +οἱ +γραμματεῖς +καὶ +οἱ +Φαρισαῖοι. +οὖν +πάντα +ἐὰν +ὅσα +εἴπωσιν +ὑμῖν +ποιήσατε +καὶ +τηρεῖτε, +δὲ +κατὰ +τὰ +ἔργα +αὐτῶν +μὴ +ποιεῖτε· +γὰρ +λέγουσιν +καὶ +οὐ +ποιοῦσιν. +δὲ +δεσμεύουσιν +φορτία +βαρέα +καὶ +ἐπιτιθέασιν +ἐπὶ +τοὺς +ὤμους +τῶν +ἀνθρώπων, +δὲ +αὐτοὶ +τῷ +δακτύλῳ +αὐτῶν +οὐ +θέλουσιν +κινῆσαι +αὐτά. +δὲ +πάντα +τὰ +ἔργα +αὐτῶν +ποιοῦσιν +πρὸς +τὸ +θεαθῆναι +τοῖς +ἀνθρώποις· +γὰρ +πλατύνουσιν +τὰ +φυλακτήρια +αὐτῶν +καὶ +μεγαλύνουσιν +τὰ +κράσπεδα, +δὲ +φιλοῦσιν +τὴν +πρωτοκλισίαν +ἐν +τοῖς +δείπνοις +καὶ +τὰς +πρωτοκαθεδρίας +ἐν +ταῖς +συναγωγαῖς +καὶ +τοὺς +ἀσπασμοὺς +ἐν +ταῖς +ἀγοραῖς +καὶ +καλεῖσθαι +ὑπὸ +τῶν +ἀνθρώπων +Ῥαββεί. +δὲ +ὑμεῖς +μὴ +κληθῆτε +Ῥαββεί· +γάρ +εἷς +ἐστιν +ὑμῶν +ὁ +διδάσκαλος, +δὲ +πάντες +ὑμεῖς +ἀδελφοί +ἐστε. +καὶ +πατέρα +ὑμῶν +μὴ +καλέσητε +ἐπὶ +τῆς +γῆς· +γάρ +εἷς +ἐστιν +ὑμῶν +ὁ +Πατὴρ +ὁ +οὐράνιος. +μηδὲ +κληθῆτε +καθηγηταί, +ὅτι +καθηγητὴς +ὑμῶν +ἐστιν +εἷς +ὁ +Χριστός. +δὲ +ὁ +μείζων +ὑμῶν +ἔσται +ὑμῶν +διάκονος. +δὲ +Ὅστις +ὑψώσει +ἑαυτὸν +ταπεινωθήσεται, +καὶ +ὅστις +ταπεινώσει +ἑαυτὸν +ὑψωθήσεται. +δὲ +Οὐαὶ +ὑμῖν, +γραμματεῖς +καὶ +Φαρισαῖοι +ὑποκριταί, +ὅτι +κλείετε +τὴν +βασιλείαν +τῶν +οὐρανῶν +ἔμπροσθεν +τῶν +ἀνθρώπων· +γὰρ +ὑμεῖς +οὐκ +εἰσέρχεσθε, +οὐδὲ +τοὺς +εἰσερχομένους +εἰσελθεῖν. +ἀφίετε +Οὐαὶ +ὑμῖν, +γραμματεῖς +καὶ +Φαρισαῖοι +ὑποκριταί, +ὅτι +περιάγετε +τὴν +θάλασσαν +καὶ +τὴν +ξηρὰν +ποιῆσαι +ἕνα +προσήλυτον, +καὶ +ὅταν +γένηται, +ποιεῖτε +αὐτὸν +υἱὸν +γεέννης +διπλότερον +ὑμῶν. +Οὐαὶ +ὑμῖν, +ὁδηγοὶ +τυφλοὶ +οἱ +λέγοντες +ἂν +Ὃς +ὀμόσῃ +ἐν +τῷ +ναῷ, +οὐδέν +ἐστιν· +δ’ +ἂν +ὃς +ὀμόσῃ +ἐν +τῷ +χρυσῷ +τοῦ +ναοῦ, +ὀφείλει. +μωροὶ +καὶ +τυφλοί, +γὰρ +τίς +μείζων +ἐστίν, +ὁ +χρυσὸς +ἢ +ὁ +ναὸς +ὁ +ἁγιάσας +τὸν +χρυσόν; +καί +ἂν +Ὃς +ὀμόσῃ +ἐν +τῷ +θυσιαστηρίῳ, +οὐδέν +ἐστιν· +δ’ +ἂν +ὃς +ὀμόσῃ +ἐν +τῷ +δώρῳ +τῷ +ἐπάνω +αὐτοῦ, +ὀφείλει. +τυφλοί, +γὰρ +τί +μεῖζον, +τὸ +δῶρον +ἢ +τὸ +θυσιαστήριον +τὸ +ἁγιάζον +τὸ +δῶρον; +οὖν +ὁ +ὀμόσας +ἐν +τῷ +θυσιαστηρίῳ +ὀμνύει +ἐν +αὐτῷ +καὶ +ἐν +πᾶσι +τοῖς +ἐπάνω +αὐτοῦ· +καὶ +ὁ +ὀμόσας +ἐν +τῷ +ναῷ +ὀμνύει +ἐν +αὐτῷ +καὶ +ἐν +τῷ +κατοικοῦντι +αὐτόν· +καὶ +ὁ +ὀμόσας +ἐν +τῷ +οὐρανῷ +ὀμνύει +ἐν +τῷ +θρόνῳ +τοῦ +Θεοῦ +καὶ +ἐν +τῷ +καθημένῳ +ἐπάνω +αὐτοῦ. +Οὐαὶ +ὑμῖν, +γραμματεῖς +καὶ +Φαρισαῖοι +ὑποκριταί, +ὅτι +ἀποδεκατοῦτε +τὸ +ἡδύοσμον +καὶ +τὸ +ἄνηθον +καὶ +τὸ +κύμινον, +καὶ +ἀφήκατε +τὰ +βαρύτερα +τοῦ +νόμου, +τὴν +κρίσιν +καὶ +τὸ +ἔλεος +καὶ +τὴν +πίστιν· +δὲ +ἔδει +ταῦτα +ποιῆσαι +κἀκεῖνα +μὴ +ἀφεῖναι. +ὁδηγοὶ +τυφλοί, +οἱ +διϋλίζοντες +τὸν +κώνωπα, +δὲ +τὴν +κάμηλον +καταπίνοντες. +Οὐαὶ +ὑμῖν, +γραμματεῖς +καὶ +Φαρισαῖοι +ὑποκριταί, +ὅτι +καθαρίζετε +τὸ +ἔξωθεν +τοῦ +ποτηρίου +καὶ +τῆς +παροψίδος, +δὲ +ἔσωθεν +γέμουσιν +ἐξ +ἁρπαγῆς +καὶ +ἀκρασίας. +Φαρισαῖε +τυφλέ, +καθάρισον +πρῶτον +τὸ +ἐντὸς +τοῦ +ποτηρίου +ἵνα +γένηται +καὶ +τὸ +ἐκτὸς +αὐτοῦ +καθαρόν. +Οὐαὶ +ὑμῖν, +γραμματεῖς +καὶ +Φαρισαῖοι +ὑποκριταί, +ὅτι +παρομοιάζετε +τάφοις +κεκονιαμένοις, +μὲν +οἵτινες +ἔξωθεν +φαίνονται +ὡραῖοι, +δὲ +ἔσωθεν +γέμουσιν +ὀστέων +νεκρῶν +καὶ +πάσης +ἀκαθαρσίας. +οὕτως +καὶ +ὑμεῖς +μὲν +ἔξωθεν +φαίνεσθε +τοῖς +ἀνθρώποις +δίκαιοι, +δέ +ἔσωθεν +ἐστε +μεστοὶ +ὑποκρίσεως +καὶ +ἀνομίας. +Οὐαὶ +ὑμῖν, +γραμματεῖς +καὶ +Φαρισαῖοι +ὑποκριταί, +ὅτι +οἰκοδομεῖτε +τοὺς +τάφους +τῶν +προφητῶν +καὶ +κοσμεῖτε +τὰ +μνημεῖα +τῶν +δικαίων, +καὶ +λέγετε +Εἰ +ἤμεθα +ἐν +ταῖς +ἡμέραις +τῶν +πατέρων +ἡμῶν, +ἂν +οὐκ +ἤμεθα +αὐτῶν +κοινωνοὶ +ἐν +τῷ +αἵματι +τῶν +προφητῶν. +ὥστε +μαρτυρεῖτε +ἑαυτοῖς +ὅτι +ἐστε +υἱοί +τῶν +φονευσάντων +τοὺς +προφήτας. +καὶ +ὑμεῖς +πληρώσατε +τὸ +μέτρον +τῶν +πατέρων +ὑμῶν. +ὄφεις, +γεννήματα +ἐχιδνῶν, +πῶς +φύγητε +ἀπὸ +τῆς +κρίσεως +τῆς +γεέννης; +ἰδοὺ +διὰ +τοῦτο +ἐγὼ +ἀποστέλλω +πρὸς +ὑμᾶς +προφήτας +καὶ +σοφοὺς +καὶ +γραμματεῖς· +ἐξ +αὐτῶν +ἀποκτενεῖτε +καὶ +σταυρώσετε, +καὶ +ἐξ +αὐτῶν +μαστιγώσετε +ἐν +ταῖς +συναγωγαῖς +ὑμῶν +καὶ +διώξετε +ἀπὸ +πόλεως +εἰς +πόλιν· +ὅπως +ἔλθῃ +ἐφ’ +ὑμᾶς +πᾶν +αἷμα +δίκαιον +ἐκχυννόμενον +ἐπὶ +τῆς +γῆς +ἀπὸ +τοῦ +αἵματος +Ἅβελ +τοῦ +δικαίου +ἕως +τοῦ +αἵματος +Ζαχαρίου +υἱοῦ +Βαραχίου, +ὃν +ἐφονεύσατε +μεταξὺ +τοῦ +ναοῦ +καὶ +τοῦ +θυσιαστηρίου. +ἀμὴν +λέγω +ὑμῖν, +ἥξει +ταῦτα +πάντα +ἐπὶ +τὴν +γενεὰν +ταύτην. +Ἰερουσαλὴμ +Ἰερουσαλήμ, +ἡ +ἀποκτείνουσα +τοὺς +προφήτας +καὶ +λιθοβολοῦσα +τοὺς +ἀπεσταλμένους +πρὸς +αὐτήν, +ποσάκις +ἠθέλησα +ἐπισυναγαγεῖν +τὰ +τέκνα +σου, +ὃν +τρόπον +ὄρνις +ἐπισυνάγει +τὰ +νοσσία +αὐτῆς +ὑπὸ +τὰς +πτέρυγας, +καὶ +οὐκ +ἠθελήσατε. +ἰδοὺ +ἀφίεται +ὑμῖν +ὁ +οἶκος +ὑμῶν. +γὰρ +λέγω +ὑμῖν, +οὐ +μή +με +ἴδητε +ἀπ’ +ἄρτι +ἕως +ἂν +εἴπητε +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου. +Καὶ +ὁ +Ἰησοῦς +ἐξελθὼν +ἀπὸ +τοῦ +ἱεροῦ +ἐπορεύετο, +καὶ +προσῆλθον +οἱ +μαθηταὶ +αὐτοῦ +ἐπιδεῖξαι +αὐτῷ +τὰς +οἰκοδομὰς +τοῦ +ἱεροῦ. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Οὐ +βλέπετε +ταῦτα +πάντα; +ἀμὴν +λέγω +ὑμῖν, +οὐ +μὴ +ἀφεθῇ +ὧδε +ἐπὶ +λίθον +λίθος +ὃς +οὐ +καταλυθήσεται. +δὲ +Καθημένου +αὐτοῦ +ἐπὶ +τοῦ +ὄρους +τῶν +Ἐλαιῶν +προσῆλθον +αὐτῷ +οἱ +μαθηταὶ +κατ’ +ἰδίαν +λέγοντες +Εἰπὲ +ἡμῖν, +πότε +ταῦτα +ἔσται, +καὶ +τί +τὸ +σημεῖον +τῆς +σῆς +παρουσίας +καὶ +συντελείας +τοῦ +αἰῶνος; +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Βλέπετε +μή +τις +ὑμᾶς +πλανήσῃ. +γὰρ +πολλοὶ +ἐλεύσονται +ἐπὶ +τῷ +ὀνόματί +μου +λέγοντες +Ἐγώ +εἰμι +ὁ +Χριστός, +καὶ +πολλοὺς +πλανήσουσιν. +δὲ +μελλήσετε +ἀκούειν +πολέμους +καὶ +ἀκοὰς +πολέμων· +ὁρᾶτε, +μὴ +θροεῖσθε· +γὰρ +δεῖ +γενέσθαι, +ἀλλ’ +οὔπω +ἐστὶν +τὸ +τέλος. +γὰρ +ἐγερθήσεται +ἔθνος +ἐπὶ +ἔθνος +καὶ +βασιλεία +ἐπὶ +βασιλείαν, +καὶ +ἔσονται +λιμοὶ +καὶ +σεισμοὶ +κατὰ +τόπους· +δὲ +πάντα +ταῦτα +ἀρχὴ +ὠδίνων. +τότε +παραδώσουσιν +ὑμᾶς +εἰς +θλῖψιν +καὶ +ἀποκτενοῦσιν +ὑμᾶς, +καὶ +ἔσεσθε +μισούμενοι +ὑπὸ +πάντων +τῶν +ἐθνῶν +διὰ +τὸ +ὄνομά +μου. +καὶ +τότε +σκανδαλισθήσονται +πολλοὶ +καὶ +ἀλλήλους +παραδώσουσιν +καὶ +μισήσουσιν +ἀλλήλους· +καὶ +πολλοὶ +ψευδοπροφῆται +ἐγερθήσονται +καὶ +πλανήσουσιν +πολλούς· +καὶ +διὰ +τὸ +πληθυνθῆναι +τὴν +ἀνομίαν +ψυγήσεται +ἡ +ἀγάπη +τῶν +πολλῶν. +δὲ +ὁ +ὑπομείνας +εἰς +τέλος, +οὗτος +σωθήσεται. +καὶ +κηρυχθήσεται +τοῦτο +τὸ +εὐαγγέλιον +τῆς +βασιλείας +ἐν +ὅλῃ +τῇ +οἰκουμένῃ +εἰς +μαρτύριον +πᾶσιν +τοῖς +ἔθνεσιν, +καὶ +τότε +ἥξει +τὸ +τέλος. +οὖν +Ὅταν +ἴδητε +τὸ +βδέλυγμα +τῆς +ἐρημώσεως +τὸ +ῥηθὲν +διὰ +Δανιὴλ +τοῦ +προφήτου +ἑστὸς +ἐν +τόπῳ +ἁγίῳ, +ὁ +ἀναγινώσκων +νοείτω, +τότε +οἱ +ἐν +τῇ +Ἰουδαίᾳ +φευγέτωσαν +εἰς +τὰ +ὄρη, +ὁ +ἐπὶ +τοῦ +δώματος +μὴ +καταβάτω +ἆραι +τὰ +ἐκ +τῆς +οἰκίας +αὐτοῦ, +καὶ +ὁ +ἐν +τῷ +ἀγρῷ +μὴ +ἐπιστρεψάτω +ὀπίσω +ἆραι +τὸ +ἱμάτιον +αὐτοῦ. +δὲ +οὐαὶ +ταῖς +ἐν +γαστρὶ +ἐχούσαις +καὶ +ταῖς +θηλαζούσαις +ἐν +ἐκείναις +ταῖς +ἡμέραις. +δὲ +προσεύχεσθε +ἵνα +μὴ +γένηται +ἡ +φυγὴ +ὑμῶν +χειμῶνος +μηδὲ +σαββάτῳ· +γὰρ +ἔσται +τότε +θλῖψις +μεγάλη, +οἵα +οὐ +γέγονεν +ἀπ’ +ἀρχῆς +κόσμου +ἕως +τοῦ +νῦν +οὐδ’ +οὐ +μὴ +γένηται. +καὶ +εἰ +μὴ +ἐκολοβώθησαν +αἱ +ἡμέραι +ἐκεῖναι, +ἂν +οὐκ +ἐσώθη +πᾶσα +σάρξ· +δὲ +διὰ +τοὺς +ἐκλεκτοὺς +κολοβωθήσονται +αἱ +ἡμέραι +ἐκεῖναι. +ἐάν +τότε +τις +ὑμῖν +εἴπῃ +Ἰδοὺ +ὧδε +ὁ +Χριστός, +ἤ +Ὧδε, +μὴ +πιστεύσητε· +γὰρ +ἐγερθήσονται +ψευδόχριστοι +καὶ +ψευδοπροφῆται, +καὶ +δώσουσιν +σημεῖα +μεγάλα +καὶ +τέρατα +ὥστε +πλανῆσαι, +εἰ +δυνατὸν, +καὶ +τοὺς +ἐκλεκτούς. +ἰδοὺ +προείρηκα +ὑμῖν. +οὖν +ἐὰν +εἴπωσιν +ὑμῖν +Ἰδοὺ +ἐν +τῇ +ἐρήμῳ +ἐστίν, +μὴ +ἐξέλθητε· +Ἰδοὺ +ἐν +τοῖς +ταμείοις, +μὴ +πιστεύσητε· +γὰρ +ὥσπερ +ἡ +ἀστραπὴ +ἐξέρχεται +ἀπὸ +ἀνατολῶν +καὶ +φαίνεται +ἕως +δυσμῶν, +οὕτως +ἔσται +ἡ +παρουσία +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου· +ἐὰν +ὅπου +ᾖ +τὸ +πτῶμα, +ἐκεῖ +συναχθήσονται +οἱ +ἀετοί. +δὲ +Εὐθέως +μετὰ +τὴν +θλῖψιν +τῶν +ἡμερῶν +ἐκείνων +ὁ +ἥλιος +σκοτισθήσεται, +καὶ +ἡ +σελήνη +οὐ +δώσει +τὸ +φέγγος +αὐτῆς, +καὶ +οἱ +ἀστέρες +πεσοῦνται +ἀπὸ +τοῦ +οὐρανοῦ, +καὶ +αἱ +δυνάμεις +τῶν +οὐρανῶν +σαλευθήσονται. +καὶ +τότε +φανήσεται +τὸ +σημεῖον +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἐν +οὐρανῷ, +καὶ +τότε +κόψονται +πᾶσαι +αἱ +φυλαὶ +τῆς +γῆς +καὶ +ὄψονται +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐπὶ +τῶν +νεφελῶν +τοῦ +οὐρανοῦ +μετὰ +δυνάμεως +καὶ +δόξης +πολλῆς· +καὶ +ἀποστελεῖ +τοὺς +ἀγγέλους +αὐτοῦ +μετὰ +σάλπιγγος +μεγάλης, +καὶ +ἐπισυνάξουσιν +τοὺς +ἐκλεκτοὺς +αὐτοῦ +ἐκ +τῶν +τεσσάρων +ἀνέμων +ἀπ’ +ἄκρων +οὐρανῶν +ἕως +ἄκρων +αὐτῶν. +δὲ +Ἀπὸ +τῆς +συκῆς +μάθετε +τὴν +παραβολήν· +ὅταν +ἤδη +ὁ +κλάδος +αὐτῆς +γένηται +ἁπαλὸς +καὶ +τὰ +φύλλα +ἐκφύῃ, +γινώσκετε +ὅτι +ἐγγὺς +τὸ +θέρος· +οὕτως +καὶ +ὑμεῖς +ὅταν +ἴδητε +πάντα +ταῦτα, +γινώσκετε +ὅτι +ἐγγύς +ἐστιν +ἐπὶ +θύραις. +ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐ +μὴ +παρέλθῃ +ἡ +γενεὰ +αὕτη +ἕως +ἂν +πάντα +ταῦτα +γένηται. +ὁ +οὐρανὸς +καὶ +ἡ +γῆ +παρελεύσεται, +δὲ +οἱ +λόγοι +μου +οὐ +μὴ +παρέλθωσιν. +δὲ +Περὶ +τῆς +ἡμέρας +καὶ +ὥρας +ἐκείνης +οὐδεὶς +οἶδεν, +οὐδὲ +οἱ +ἄγγελοι +τῶν +οὐρανῶν +οὐδὲ +ὁ +Υἱός, +εἰ +μὴ +ὁ +Πατὴρ +μόνος. +γὰρ +ὥσπερ +αἱ +ἡμέραι +τοῦ +Νῶε, +οὕτως +ἔσται +ἡ +παρουσία +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου. +γὰρ +ὡς +ἐν +ταῖς +ἡμέραις +ἐκείναις +ταῖς +πρὸ +τοῦ +κατακλυσμοῦ +ἦσαν +τρώγοντες +καὶ +πίνοντες, +γαμοῦντες +καὶ +γαμίζοντες, +ἄχρι +ἧς +ἡμέρας +εἰσῆλθεν +Νῶε +εἰς +τὴν +κιβωτόν, +καὶ +οὐκ +ἔγνωσαν +ἕως +ἦλθεν +ὁ +κατακλυσμὸς +καὶ +ἦρεν +ἅπαντας, +οὕτως +ἔσται +καὶ +ἡ +παρουσία +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου. +τότε +ἔσονται +δύο +ἐν +τῷ +ἀγρῷ, +εἷς +παραλαμβάνεται +καὶ +εἷς +ἀφίεται· +δύο +ἀλήθουσαι +ἐν +τῷ +μύλῳ, +μία +παραλαμβάνεται +καὶ +μία +ἀφίεται. +οὖν, +γρηγορεῖτε +ὅτι +οὐκ +οἴδατε +ποίᾳ +ἡμέρᾳ +ὁ +κύριος +ὑμῶν +ἔρχεται. +δὲ +ἐκεῖνο +γινώσκετε +ὅτι +εἰ +ᾔδει +ὁ +οἰκοδεσπότης +ποίᾳ +φυλακῇ +ὁ +κλέπτης +ἔρχεται, +ἂν +ἐγρηγόρησεν +καὶ +ἂν +οὐκ +εἴασεν +διορυχθῆναι +τὴν +οἰκίαν +αὐτοῦ. +διὰ +τοῦτο +καὶ +ὑμεῖς +γίνεσθε +ἕτοιμοι, +ὅτι +ᾗ +οὐ +δοκεῖτε +ὥρᾳ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἔρχεται. +ἄρα +Τίς +ἐστὶν +ὁ +πιστὸς +καὶ +φρόνιμος +δοῦλος +ὃν +κατέστησεν +ὁ +κύριος +ἐπὶ +τῆς +οἰκετείας +αὐτοῦ +τοῦ +δοῦναι +αὐτοῖς +τὴν +τροφὴν +ἐν +καιρῷ; +μακάριος +ὁ +δοῦλος +ἐκεῖνος +ὃν +οὕτως +ποιοῦντα· +ἐλθὼν +ὁ +κύριος +αὐτοῦ +εὑρήσει +ἀμὴν +λέγω +ὑμῖν +ὅτι +ἐπὶ +πᾶσιν +τοῖς +ὑπάρχουσιν +αὐτοῦ +καταστήσει +αὐτόν. +δὲ +ἐὰν +εἴπῃ +ὁ +κακὸς +δοῦλος +ἐκεῖνος +ἐν +τῇ +καρδίᾳ +αὐτοῦ +Χρονίζει +μου +ὁ +κύριος, +καὶ +ἄρξηται +τύπτειν +τοὺς +συνδούλους +αὐτοῦ, +δὲ +ἐσθίῃ +καὶ +πίνῃ +μετὰ +τῶν +μεθυόντων, +ἥξει +ὁ +κύριος +τοῦ +δούλου +ἐκείνου +ἐν +ἡμέρᾳ +ᾗ +οὐ +προσδοκᾷ +καὶ +ἐν +ὥρᾳ +ᾗ +οὐ +γινώσκει, +καὶ +διχοτομήσει +αὐτὸν +καὶ +τὸ +μέρος +αὐτοῦ +μετὰ +τῶν +ὑποκριτῶν +θήσει· +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων. +Τότε +ὁμοιωθήσεται +ἡ +βασιλεία +τῶν +οὐρανῶν +δέκα +παρθένοις, +αἵτινες +λαβοῦσαι +τὰς +λαμπάδας +ἑαυτῶν +ἐξῆλθον +εἰς +ὑπάντησιν +τοῦ +νυμφίου. +δὲ +πέντε +ἐξ +αὐτῶν +ἦσαν +μωραὶ +καὶ +πέντε +φρόνιμοι. +γὰρ +αἱ +μωραὶ +λαβοῦσαι +τὰς +λαμπάδας +οὐκ +ἔλαβον +μεθ’ +ἑαυτῶν +ἔλαιον· +δὲ +αἱ +φρόνιμοι +ἔλαβον +ἔλαιον +ἐν +τοῖς +ἀγγείοις +μετὰ +τῶν +λαμπάδων +ἑαυτῶν. +δὲ +χρονίζοντος +τοῦ +νυμφίου +ἐνύσταξαν +πᾶσαι +καὶ +ἐκάθευδον. +δὲ +μέσης +νυκτὸς +κραυγὴ +γέγονεν +Ἰδοὺ +ὁ +νυμφίος, +ἐξέρχεσθε +εἰς +ἀπάντησιν. +τότε +ἠγέρθησαν +πᾶσαι +αἱ +παρθένοι +ἐκεῖναι +καὶ +ἐκόσμησαν +τὰς +λαμπάδας +ἑαυτῶν. +δὲ +αἱ +μωραὶ +ταῖς +φρονίμοις +εἶπαν +Δότε +ἡμῖν +ἐκ +τοῦ +ἐλαίου +ὑμῶν, +ὅτι +αἱ +λαμπάδες +ἡμῶν +σβέννυνται. +δὲ +ἀπεκρίθησαν +αἱ +φρόνιμοι +λέγουσαι +Μή +ποτε +οὐ +μὴ +ἀρκέσῃ +ἡμῖν +καὶ +ὑμῖν· +πορεύεσθε +μᾶλλον +πρὸς +τοὺς +πωλοῦντας +καὶ +ἀγοράσατε +ἑαυταῖς. +δὲ +ἀπερχομένων +αὐτῶν +ἀγοράσαι +ἦλθεν +ὁ +νυμφίος, +καὶ +αἱ +ἕτοιμοι +εἰσῆλθον +μετ’ +αὐτοῦ +εἰς +τοὺς +γάμους, +καὶ +ἐκλείσθη +ἡ +θύρα. +δὲ +ὕστερον +ἔρχονται +καὶ +αἱ +λοιπαὶ +παρθένοι +λέγουσαι +Κύριε +κύριε, +ἄνοιξον +ἡμῖν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Ἀμὴν +λέγω +ὑμῖν, +οὐκ +οἶδα +ὑμᾶς. +οὖν, +Γρηγορεῖτε +ὅτι +οὐκ +οἴδατε +τὴν +ἡμέραν +οὐδὲ +τὴν +ὥραν. +γὰρ +Ὥσπερ +ἄνθρωπος +ἀποδημῶν +ἐκάλεσεν +τοὺς +ἰδίους +δούλους +καὶ +παρέδωκεν +αὐτοῖς +τὰ +ὑπάρχοντα +αὐτοῦ, +καὶ +μὲν +ᾧ +ἔδωκεν +πέντε +τάλαντα, +δὲ +ᾧ +δύο, +δὲ +ᾧ +ἕν, +ἑκάστῳ +κατὰ +τὴν +ἰδίαν +δύναμιν, +καὶ +ἀπεδήμησεν. +Εὐθέως +πορευθεὶς +ὁ +τὰ +πέντε +τάλαντα +λαβὼν +ἠργάσατο +ἐν +αὐτοῖς +καὶ +ἐκέρδησεν +ἄλλα +πέντε· +ὡσαύτως +ὁ +τὰ +δύο +ἐκέρδησεν +ἄλλα +δύο. +δὲ +ὁ +τὸ +ἓν +λαβὼν +ἀπελθὼν +ὤρυξεν +γῆν +καὶ +ἔκρυψεν +τὸ +ἀργύριον +τοῦ +κυρίου +αὐτοῦ. +δὲ +μετὰ +πολὺν +χρόνον +ἔρχεται +ὁ +κύριος +τῶν +δούλων +ἐκείνων +καὶ +συναίρει +λόγον +μετ’ +αὐτῶν. +καὶ +προσελθὼν +ὁ +τὰ +πέντε +τάλαντα +λαβὼν +προσήνεγκεν +ἄλλα +πέντε +τάλαντα +λέγων +Κύριε, +πέντε +τάλαντά +μοι +παρέδωκας· +ἴδε +ἄλλα +πέντε +τάλαντα +ἐκέρδησα. +ἔφη +αὐτῷ +ὁ +κύριος +αὐτοῦ +Εὖ, +δοῦλε +ἀγαθὲ +καὶ +πιστέ, +ἐπὶ +ὀλίγα +ἦς +πιστός, +ἐπὶ +πολλῶν +σε +καταστήσω· +εἴσελθε +εἰς +τὴν +χαρὰν +τοῦ +κυρίου +σου. +προσελθὼν +καὶ +ὁ +τὰ +δύο +τάλαντα +εἶπεν +Κύριε, +δύο +τάλαντά +μοι +παρέδωκας· +ἴδε +ἄλλα +δύο +τάλαντα +ἐκέρδησα. +ἔφη +αὐτῷ +ὁ +κύριος +αὐτοῦ +Εὖ, +δοῦλε +ἀγαθὲ +καὶ +πιστέ, +ἐπὶ +ὀλίγα +ἦς +πιστός, +ἐπὶ +πολλῶν +σε +καταστήσω· +εἴσελθε +εἰς +τὴν +χαρὰν +τοῦ +κυρίου +σου. +δὲ +προσελθὼν +καὶ +ὁ +τὸ +ἓν +τάλαντον +εἰληφὼς +εἶπεν +Κύριε, +ἔγνων +σε +ὅτι +εἶ +σκληρὸς +ἄνθρωπος, +θερίζων +ὅπου +οὐκ +ἔσπειρας, +καὶ +συνάγων +ὅθεν +οὐ +διεσκόρπισας· +καὶ +φοβηθεὶς +ἀπελθὼν +ἔκρυψα +τὸ +τάλαντόν +σου +ἐν +τῇ +γῇ· +ἴδε +ἔχεις +τὸ +σόν. +δὲ +ἀποκριθεὶς +ὁ +κύριος +αὐτοῦ +εἶπεν +αὐτῷ +δοῦλε +Πονηρὲ +καὶ +ὀκνηρέ, +ᾔδεις +ὅτι +θερίζω +ὅπου +οὐκ +ἔσπειρα, +καὶ +συνάγω +ὅθεν +οὐ +διεσκόρπισα; +οὖν +ἔδει +σε +βαλεῖν +τὰ +ἀργύριά +μου +τοῖς +τραπεζείταις, +καὶ +ἂν +ἐλθὼν +ἐγὼ +ἐκομισάμην +τὸ +ἐμὸν +σὺν +τόκῳ. +οὖν +ἄρατε +ἀπ’ +αὐτοῦ +τὸ +τάλαντον +καὶ +δότε +τῷ +ἔχοντι +τὰ +δέκα +τάλαντα· +γὰρ +τῷ +ἔχοντι +παντὶ +δοθήσεται +καὶ +περισσευθήσεται· +δὲ +τοῦ +μὴ +ἔχοντος +καὶ +ὃ +ἔχει +ἀρθήσεται +ἀπ’ +αὐτοῦ. +καὶ +τὸν +ἀχρεῖον +δοῦλον +ἐκβάλετε +εἰς +τὸ +σκότος +τὸ +ἐξώτερον· +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων. +δὲ +Ὅταν +ἔλθῃ +ὁ +υἱὸς +τοῦ +ἀνθρώπου +ἐν +τῇ +δόξῃ +αὐτοῦ +καὶ +πάντες +οἱ +ἄγγελοι +μετ’ +αὐτοῦ, +τότε +καθίσει +ἐπὶ +θρόνου +δόξης +αὐτοῦ· +καὶ +συναχθήσονται +ἔμπροσθεν +αὐτοῦ +πάντα +τὰ +ἔθνη, +καὶ +ἀφορίσει +αὐτοὺς +ἀπ’ +ἀλλήλων, +ὥσπερ +ὁ +ποιμὴν +ἀφορίζει +τὰ +πρόβατα +ἀπὸ +τῶν +ἐρίφων, +καὶ +μὲν +στήσει +τὰ +πρόβατα +ἐκ +δεξιῶν +αὐτοῦ, +δὲ +τὰ +ἐρίφια +ἐξ +εὐωνύμων. +τότε +ἐρεῖ +ὁ +Βασιλεὺς +τοῖς +ἐκ +δεξιῶν +αὐτοῦ +Δεῦτε +οἱ +εὐλογημένοι +τοῦ +Πατρός +μου, +κληρονομήσατε +τὴν +ἡτοιμασμένην +ὑμῖν +ἀπὸ +καταβολῆς +κόσμου. +βασιλείαν +γὰρ +ἐπείνασα +καὶ +ἐδώκατέ +μοι +φαγεῖν, +ἐδίψησα +καὶ +ἐποτίσατέ +με, +ξένος +ἤμην +καὶ +συνηγάγετέ +με, +γυμνὸς +καὶ +περιεβάλετέ +με, +ἠσθένησα +καὶ +ἐπεσκέψασθέ +με, +ἐν +φυλακῇ +ἤμην +καὶ +ἤλθατε +πρός +με. +τότε +ἀποκριθήσονται +αὐτῷ +οἱ +δίκαιοι +λέγοντες +Κύριε, +πότε +εἴδομεν +σε +πεινῶντα +καὶ +ἐθρέψαμεν, +ἢ +διψῶντα +καὶ +ἐποτίσαμεν; +δέ +πότε +εἴδομεν +σε +ξένον +καὶ +συνηγάγομεν, +ἢ +γυμνὸν +καὶ +περιεβάλομεν; +δέ +πότε +εἴδομεν +σε +ἀσθενοῦντα +ἢ +ἐν +φυλακῇ +καὶ +ἤλθομεν +πρός +σε; +καὶ +ἀποκριθεὶς +ὁ +Βασιλεὺς +ἐρεῖ +αὐτοῖς +Ἀμὴν +λέγω +ὑμῖν, +ἐφ’ +ὅσον +ἐποιήσατε +ἑνὶ +τούτων +τῶν +ἀδελφῶν +μου +τῶν +ἐλαχίστων, +ἐμοὶ +ἐποιήσατε. +τότε +ἐρεῖ +καὶ +τοῖς +ἐξ +εὐωνύμων +κατηραμένοι +Πορεύεσθε +ἀπ’ +ἐμοῦ +εἰς +τὸ +πῦρ +τὸ +αἰώνιον +τὸ +ἡτοιμασμένον +τῷ +διαβόλῳ +καὶ +τοῖς +ἀγγέλοις +αὐτοῦ. +γὰρ +ἐπείνασα +καὶ +οὐκ +ἐδώκατέ +μοι +φαγεῖν, +ἐδίψησα +καὶ +οὐκ +ἐποτίσατέ +με, +ξένος +ἤμην +καὶ +οὐ +συνηγάγετέ +με, +γυμνὸς +καὶ +οὐ +περιεβάλετέ +με, +ἀσθενὴς +καὶ +ἐν +φυλακῇ +καὶ +οὐκ +ἐπεσκέψασθέ +με. +τότε +ἀποκριθήσονται +καὶ +αὐτοὶ +λέγοντες +Κύριε, +πότε +εἴδομεν +σε +πεινῶντα +ἢ +διψῶντα +ἢ +ξένον +ἢ +γυμνὸν +ἢ +ἀσθενῆ +ἢ +ἐν +φυλακῇ +καὶ +οὐ +διηκονήσαμέν +σοι; +τότε +ἀποκριθήσεται +αὐτοῖς +λέγων +Ἀμὴν +λέγω +ὑμῖν, +ἐφ’ +ὅσον +οὐκ +ἐποιήσατε +ἑνὶ +τούτων +τῶν +ἐλαχίστων, +οὐδὲ +ἐμοὶ +ἐποιήσατε. +καὶ +ἀπελεύσονται +οὗτοι +εἰς +κόλασιν +αἰώνιον, +δὲ +οἱ +δίκαιοι +εἰς +ζωὴν +αἰώνιον. +Καὶ +ἐγένετο +ὅτε +ἐτέλεσεν +ὁ +Ἰησοῦς +πάντας +τοὺς +λόγους +τούτους, +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +Οἴδατε +ὅτι +μετὰ +δύο +ἡμέρας +τὸ +πάσχα +γίνεται, +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδίδοται +εἰς +τὸ +σταυρωθῆναι. +Τότε +συνήχθησαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +τοῦ +λαοῦ +εἰς +τὴν +αὐλὴν +τοῦ +ἀρχιερέως +τοῦ +λεγομένου +Καϊάφα, +καὶ +συνεβουλεύσαντο +ἵνα +τὸν +Ἰησοῦν +δόλῳ +κρατήσωσιν +καὶ +ἀποκτείνωσιν· +δέ +ἔλεγον +Μὴ +ἐν +τῇ +ἑορτῇ, +ἵνα +μὴ +θόρυβος +γένηται +ἐν +τῷ +λαῷ. +δὲ +Τοῦ +Ἰησοῦ +γενομένου +ἐν +Βηθανίᾳ +ἐν +οἰκίᾳ +Σίμωνος +τοῦ +λεπροῦ, +προσῆλθεν +αὐτῷ +γυνὴ +ἔχουσα +ἀλάβαστρον +μύρου +βαρυτίμου +καὶ +κατέχεεν +ἐπὶ +τῆς +κεφαλῆς +αὐτοῦ +ἀνακειμένου. +δὲ +ἰδόντες +οἱ +μαθηταὶ +ἠγανάκτησαν +λέγοντες +Εἰς +τί +ἡ +ἀπώλεια +αὕτη; +γὰρ +ἐδύνατο +τοῦτο +πραθῆναι +πολλοῦ +καὶ +δοθῆναι +πτωχοῖς. +δὲ +γνοὺς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Τί +κόπους +παρέχετε +τῇ +γυναικί; +γὰρ +ἔργον +καλὸν +ἠργάσατο +εἰς +ἐμέ· +γὰρ +πάντοτε +τοὺς +πτωχοὺς +ἔχετε +μεθ’ +ἑαυτῶν, +δὲ +ἐμὲ +οὐ +πάντοτε +ἔχετε· +γὰρ +αὕτη +βαλοῦσα +τὸ +μύρον +τοῦτο +ἐπὶ +τοῦ +σώματός +μου +πρὸς +τὸ +ἐνταφιάσαι +με +ἐποίησεν. +ἀμὴν +λέγω +ὑμῖν, +ἐὰν +ὅπου +κηρυχθῇ +τὸ +εὐαγγέλιον +τοῦτο +ἐν +ὅλῳ +τῷ +κόσμῳ, +λαληθήσεται +καὶ +ὃ +ἐποίησεν +αὕτη +εἰς +μνημόσυνον +αὐτῆς. +Τότε +εἷς +τῶν +δώδεκα, +ὁ +λεγόμενος +Ἰούδας +Ἰσκαριώτης, +πορευθεὶς +πρὸς +τοὺς +ἀρχιερεῖς +εἶπεν +θέλετέ +Τί +μοι +δοῦναι, +κἀγὼ +ὑμῖν +παραδώσω +αὐτόν; +δὲ +οἱ +ἔστησαν +αὐτῷ +τριάκοντα +ἀργύρια. +καὶ +ἀπὸ +τότε +ἐζήτει +εὐκαιρίαν +ἵνα +αὐτὸν +παραδῷ. +δὲ +Τῇ +πρώτῃ +τῶν +ἀζύμων +προσῆλθον +οἱ +μαθηταὶ +τῷ +Ἰησοῦ +λέγοντες +θέλεις +Ποῦ +ἑτοιμάσωμέν +σοι +φαγεῖν +τὸ +πάσχα; +δὲ +ὁ +εἶπεν +Ὑπάγετε +εἰς +τὴν +πόλιν +πρὸς +τὸν +δεῖνα +καὶ +εἴπατε +αὐτῷ +Ὁ +Διδάσκαλος +λέγει +Ὁ +καιρός +μου +ἐγγύς +ἐστιν· +πρὸς +σὲ +ποιῶ +τὸ +πάσχα +μετὰ +τῶν +μαθητῶν +μου. +καὶ +ἐποίησαν +οἱ +μαθηταὶ +ὡς +συνέταξεν +αὐτοῖς +ὁ +Ἰησοῦς, +καὶ +ἡτοίμασαν +τὸ +πάσχα. +δὲ +Ὀψίας +γενομένης +ἀνέκειτο +μετὰ +τῶν +δώδεκα +μαθητῶν +καὶ +ἐσθιόντων +αὐτῶν +εἶπεν +Ἀμὴν +λέγω +ὑμῖν +ὅτι +εἷς +ἐξ +ὑμῶν +παραδώσει +με. +καὶ +λυπούμενοι +σφόδρα +ἤρξαντο +λέγειν +αὐτῷ +εἷς +ἕκαστος +Μήτι +ἐγώ +εἰμι, +Κύριε; +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Ὁ +ἐμβάψας +μετ’ +ἐμοῦ +τὴν +χεῖρα +ἐν +τῷ +τρυβλίῳ, +οὗτός +με +παραδώσει. +μὲν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ὑπάγει +καθὼς +γέγραπται +περὶ +αὐτοῦ, +δὲ +οὐαὶ +τῷ +ἀνθρώπῳ +ἐκείνῳ +δι’ +οὗ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδίδοται· +καλὸν +ἦν +αὐτῷ +εἰ +οὐκ +ἐγεννήθη +ὁ +ἄνθρωπος +ἐκεῖνος. +δὲ +ἀποκριθεὶς +Ἰούδας +ὁ +παραδιδοὺς +αὐτὸν +εἶπεν +Μήτι +ἐγώ +εἰμι, +Ῥαββεί; +λέγει +αὐτῷ +Σὺ +εἶπας. +δὲ +Ἐσθιόντων +αὐτῶν +ὁ +Ἰησοῦς +λαβὼν +ἄρτον +καὶ +εὐλογήσας +ἔκλασεν +καὶ +δοὺς +τοῖς +μαθηταῖς +εἶπεν +Λάβετε +φάγετε· +τοῦτό +ἐστιν +τὸ +σῶμά +μου. +καὶ +λαβὼν +ποτήριον +καὶ +εὐχαριστήσας +ἔδωκεν +αὐτοῖς +λέγων +Πίετε +ἐξ +αὐτοῦ +πάντες· +γάρ +τοῦτο +ἐστιν +τὸ +αἷμά +μου +τῆς +διαθήκης +τὸ +περὶ +πολλῶν +ἐκχυννόμενον +εἰς +ἄφεσιν +ἁμαρτιῶν. +δὲ +λέγω +ὑμῖν, +οὐ +μὴ +πίω +ἀπ’ +ἄρτι +ἐκ +τούτου +τοῦ +γενήματος +τῆς +ἀμπέλου +ἕως +τῆς +ἡμέρας +ἐκείνης +ὅταν +αὐτὸ +πίνω +μεθ’ +ὑμῶν +καινὸν +ἐν +τῇ +βασιλείᾳ +τοῦ +Πατρός +μου. +Καὶ +ὑμνήσαντες +ἐξῆλθον +εἰς +τὸ +ὄρος +τῶν +Ἐλαιῶν. +Τότε +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Πάντες +ὑμεῖς +σκανδαλισθήσεσθε +ἐν +ἐμοὶ +ἐν +τῇ +νυκτὶ +ταύτῃ· +γάρ +γέγραπται +Πατάξω +τὸν +ποιμένα, +καὶ +διασκορπισθήσονται +τὰ +πρόβατα +τῆς +ποίμνης· +δὲ +μετὰ +τὸ +ἐγερθῆναί +με +προάξω +ὑμᾶς +εἰς +τὴν +Γαλιλαίαν. +δὲ +ἀποκριθεὶς +ὁ +Πέτρος +εἶπεν +αὐτῷ +Εἰ +πάντες +σκανδαλισθήσονται +ἐν +σοί, +ἐγὼ +οὐδέποτε +σκανδαλισθήσομαι. +ἔφη +αὐτῷ +ὁ +Ἰησοῦς +Ἀμὴν +λέγω +σοι +ὅτι +ἐν +ταύτῃ +τῇ +νυκτὶ +πρὶν +ἀλέκτορα +φωνῆσαι +τρὶς +ἀπαρνήσῃ +με. +λέγει +αὐτῷ +ὁ +Πέτρος +Κἂν +δέῃ +με +σὺν +σοὶ +ἀποθανεῖν, +οὐ +μή +σε +ἀπαρνήσομαι. +ὁμοίως +καὶ +πάντες +οἱ +μαθηταὶ +εἶπαν. +Τότε +ἔρχεται +μετ’ +αὐτῶν +ὁ +Ἰησοῦς +εἰς +χωρίον +λεγόμενον +Γεθσημανεί, +καὶ +λέγει +τοῖς +μαθηταῖς +Καθίσατε +αὐτοῦ +ἕως +οὗ +ἀπελθὼν +ἐκεῖ +προσεύξωμαι. +καὶ +παραλαβὼν +τὸν +Πέτρον +καὶ +τοὺς +δύο +υἱοὺς +Ζεβεδαίου +ἤρξατο +λυπεῖσθαι +καὶ +ἀδημονεῖν. +τότε +λέγει +αὐτοῖς +Περίλυπός +ἐστιν +ἡ +ψυχή +μου +ἕως +θανάτου· +μείνατε +ὧδε +καὶ +γρηγορεῖτε +μετ’ +ἐμοῦ. +καὶ +προελθὼν +μικρὸν +ἔπεσεν +ἐπὶ +πρόσωπον +αὐτοῦ +προσευχόμενος +καὶ +λέγων +Πάτερ +μου, +εἰ +δυνατόν +ἐστιν, +παρελθάτω +ἀπ’ +ἐμοῦ +τὸ +ποτήριον +τοῦτο· +πλὴν +οὐχ +ὡς +ἐγὼ +θέλω +ἀλλ’ +ὡς +σύ. +καὶ +ἔρχεται +πρὸς +τοὺς +μαθητὰς +καὶ +εὑρίσκει +αὐτοὺς +καθεύδοντας, +καὶ +λέγει +τῷ +Πέτρῳ +Οὕτως +οὐκ +ἰσχύσατε +μίαν +ὥραν +γρηγορῆσαι +μετ’ +ἐμοῦ; +γρηγορεῖτε +καὶ +προσεύχεσθε, +ἵνα +μὴ +εἰσέλθητε +εἰς +πειρασμόν· +μὲν +τὸ +πνεῦμα +πρόθυμον, +δὲ +ἡ +σὰρξ +ἀσθενής. +πάλιν +ἐκ +δευτέρου +ἀπελθὼν +προσηύξατο +λέγων +Πάτερ +μου, +εἰ +οὐ +δύναται +τοῦτο +παρελθεῖν +ἐὰν +μὴ +αὐτὸ +πίω, +γενηθήτω +τὸ +θέλημά +σου. +καὶ +ἐλθὼν +πάλιν +εὗρεν +αὐτοὺς +καθεύδοντας, +γὰρ +ἦσαν +βεβαρημένοι. +αὐτῶν +οἱ +ὀφθαλμοὶ +καὶ +ἀφεὶς +αὐτοὺς +πάλιν +ἀπελθὼν +προσηύξατο +ἐκ +τρίτου, +τὸν +αὐτὸν +λόγον +εἰπὼν +πάλιν. +τότε +ἔρχεται +πρὸς +τοὺς +μαθητὰς +καὶ +λέγει +αὐτοῖς +Καθεύδετε +λοιπὸν +καὶ +ἀναπαύεσθε· +ἰδοὺ +ἤγγικεν +ἡ +ὥρα +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδίδοται +εἰς +χεῖρας +ἁμαρτωλῶν. +ἐγείρεσθε, +ἄγωμεν· +ἰδοὺ +ἤγγικεν +ὁ +παραδιδούς +με. +Καὶ +ἔτι +αὐτοῦ +λαλοῦντος, +ἰδοὺ +Ἰούδας +εἷς +τῶν +δώδεκα +ἦλθεν, +καὶ +μετ’ +αὐτοῦ +ὄχλος +πολὺς +μετὰ +μαχαιρῶν +καὶ +ξύλων +ἀπὸ +τῶν +ἀρχιερέων +καὶ +πρεσβυτέρων +τοῦ +λαοῦ. +δὲ +ὁ +παραδιδοὺς +αὐτὸν +ἔδωκεν +αὐτοῖς +σημεῖον +λέγων +ἂν +Ὃν +φιλήσω +αὐτός +ἐστιν· +κρατήσατε +αὐτόν. +καὶ +εὐθέως +προσελθὼν +τῷ +Ἰησοῦ +εἶπεν +Χαῖρε, +Ῥαββεί, +καὶ +κατεφίλησεν +αὐτόν. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἑταῖρε, +ἐφ’ +ὃ +πάρει. +τότε +προσελθόντες +ἐπέβαλον +τὰς +χεῖρας +ἐπὶ +τὸν +Ἰησοῦν +καὶ +ἐκράτησαν +αὐτόν. +καὶ +ἰδοὺ +εἷς +τῶν +μετὰ +Ἰησοῦ +ἐκτείνας +τὴν +χεῖρα +ἀπέσπασεν +τὴν +μάχαιραν +αὐτοῦ, +καὶ +πατάξας +τὸν +δοῦλον +τοῦ +ἀρχιερέως +ἀφεῖλεν +αὐτοῦ +τὸ +ὠτίον. +τότε +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἀπόστρεψον +τὴν +μάχαιράν +σου +εἰς +τὸν +τόπον +αὐτῆς· +γὰρ +πάντες +οἱ +λαβόντες +μάχαιραν +ἐν +μαχαίρῃ +ἀπολοῦνται. +ἢ +δοκεῖς +ὅτι +οὐ +δύναμαι +παρακαλέσαι +τὸν +Πατέρα +μου, +καὶ +παραστήσει +μοι +ἄρτι +πλείω +δώδεκα +λεγιῶνας +ἀγγέλων; +οὖν +πῶς +πληρωθῶσιν +αἱ +γραφαὶ +ὅτι +οὕτως +δεῖ +γενέσθαι; +Ἐν +ἐκείνῃ +τῇ +ὥρᾳ +εἶπεν +ὁ +Ἰησοῦς +τοῖς +ὄχλοις +Ὡς +ἐπὶ +λῃστὴν +ἐξήλθατε +μετὰ +μαχαιρῶν +καὶ +ξύλων +συλλαβεῖν +με; +καθ’ +ἡμέραν +ἐν +τῷ +ἱερῷ +ἐκαθεζόμην +διδάσκων, +καὶ +οὐκ +ἐκρατήσατέ +με. +δὲ +Τοῦτο +ὅλον +γέγονεν +ἵνα +πληρωθῶσιν +αἱ +γραφαὶ +τῶν +προφητῶν. +Τότε +οἱ +μαθηταὶ +πάντες +ἀφέντες +αὐτὸν +ἔφυγον. +δὲ +Οἱ +κρατήσαντες +τὸν +Ἰησοῦν +ἀπήγαγον +πρὸς +Καϊάφαν +τὸν +ἀρχιερέα, +ὅπου +οἱ +γραμματεῖς +καὶ +οἱ +πρεσβύτεροι +συνήχθησαν. +δὲ +ὁ +Πέτρος +ἠκολούθει +αὐτῷ +ἀπὸ +μακρόθεν +ἕως +τῆς +αὐλῆς +τοῦ +ἀρχιερέως, +καὶ +εἰσελθὼν +ἔσω +ἐκάθητο +μετὰ +τῶν +ὑπηρετῶν +ἰδεῖν +τὸ +τέλος. +δὲ +Οἱ +ἀρχιερεῖς +καὶ +τὸ +συνέδριον +ὅλον +ἐζήτουν +ψευδομαρτυρίαν +κατὰ +τοῦ +Ἰησοῦ +ὅπως +αὐτὸν +θανατώσωσιν, +καὶ +οὐχ +εὗρον +πολλῶν +ψευδομαρτύρων. +προσελθόντων +δὲ +ὕστερον +προσελθόντες +δύο +εἶπαν +Οὗτος +ἔφη +Δύναμαι +καταλῦσαι +τὸν +ναὸν +τοῦ +Θεοῦ +καὶ +διὰ +τριῶν +ἡμερῶν +οἰκοδομῆσαι. +καὶ +ἀναστὰς +ὁ +ἀρχιερεὺς +εἶπεν +αὐτῷ +Οὐδὲν +ἀποκρίνῃ, +τί +οὗτοί +σου +καταμαρτυροῦσιν; +δὲ +ὁ +Ἰησοῦς +ἐσιώπα. +καὶ +ὁ +ἀρχιερεὺς +εἶπεν +αὐτῷ +Ἐξορκίζω +σε +κατὰ +τοῦ +Θεοῦ +τοῦ +ζῶντος +ἵνα +ἡμῖν +εἴπῃς +εἰ +σὺ +εἶ +ὁ +Χριστὸς +ὁ +Υἱὸς +τοῦ +Θεοῦ. +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Σὺ +εἶπας· +πλὴν +λέγω +ὑμῖν, +ἀπ’ +ἄρτι +ὄψεσθε +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +καθήμενον +ἐκ +δεξιῶν +τῆς +δυνάμεως +καὶ +ἐρχόμενον +ἐπὶ +τῶν +νεφελῶν +τοῦ +οὐρανοῦ. +τότε +ὁ +ἀρχιερεὺς +διέρρηξεν +τὰ +ἱμάτια +αὐτοῦ +λέγων +Ἐβλασφήμησεν· +τί +ἔτι +χρείαν +μαρτύρων; +ἔχομεν +ἴδε +νῦν +ἠκούσατε +τὴν +βλασφημίαν· +τί +ὑμῖν +δοκεῖ; +δὲ +οἱ +ἀποκριθέντες +εἶπαν +Ἔνοχος +θανάτου +ἐστίν. +Τότε +ἐνέπτυσαν +εἰς +τὸ +πρόσωπον +αὐτοῦ +καὶ +ἐκολάφισαν +αὐτόν, +δὲ +οἱ +ἐράπισαν +λέγοντες +Προφήτευσον +ἡμῖν, +Χριστέ, +τίς +ἐστιν +ὁ +παίσας +σε; +δὲ +Ὁ +Πέτρος +ἐκάθητο +ἔξω +ἐν +τῇ +αὐλῇ· +καὶ +προσῆλθεν +αὐτῷ +μία +παιδίσκη +λέγουσα +Καὶ +σὺ +ἦσθα +μετὰ +Ἰησοῦ +τοῦ +Γαλιλαίου. +δὲ +ὁ +ἠρνήσατο +ἔμπροσθεν +πάντων +λέγων +Οὐκ +οἶδα +τί +λέγεις. +δὲ +ἐξελθόντα +εἰς +τὸν +πυλῶνα +εἶδεν +αὐτὸν +ἄλλη +καὶ +λέγει +τοῖς +ἐκεῖ +Οὗτος +ἦν +μετὰ +Ἰησοῦ +τοῦ +Ναζωραίου. +καὶ +πάλιν +ἠρνήσατο +μετὰ +ὅρκου +ὅτι +Οὐκ +οἶδα +τὸν +ἄνθρωπον. +δὲ +μετὰ +μικρὸν +προσελθόντες +οἱ +ἑστῶτες +εἶπον +τῷ +Πέτρῳ +Ἀληθῶς +καὶ +σὺ +ἐξ +αὐτῶν +εἶ, +γὰρ +καὶ +ἡ +λαλιά +σου +δῆλόν +σε +ποιεῖ. +τότε +ἤρξατο +καταθεματίζειν +καὶ +ὀμνύειν +ὅτι +Οὐκ +οἶδα +τὸν +ἄνθρωπον. +καὶ +εὐθὺς +ἀλέκτωρ +ἐφώνησεν. +καὶ +ἐμνήσθη +ὁ +Πέτρος +τοῦ +ῥήματος +Ἰησοῦ +εἰρηκότος +ὅτι +Πρὶν +ἀλέκτορα +φωνῆσαι +τρὶς +ἀπαρνήσῃ +με· +καὶ +ἐξελθὼν +ἔξω +ἔκλαυσεν +πικρῶς. +δὲ +Πρωΐας +γενομένης +συμβούλιον +ἔλαβον +πάντες +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +τοῦ +λαοῦ +κατὰ +τοῦ +Ἰησοῦ +ὥστε +θανατῶσαι +αὐτόν· +καὶ +δήσαντες +αὐτὸν +ἀπήγαγον +καὶ +παρέδωκαν +Πειλάτῳ +τῷ +ἡγεμόνι. +Τότε +Ἰούδας +ὁ +παραδοὺς +αὐτὸν +ἰδὼν +ὅτι +κατεκρίθη, +μεταμεληθεὶς +ἔστρεψεν +τὰ +τριάκοντα +ἀργύρια +τοῖς +ἀρχιερεῦσιν +καὶ +πρεσβυτέροις +λέγων +Ἥμαρτον +παραδοὺς +αἷμα +ἀθῷον. +δὲ +οἱ +εἶπαν +Τί +πρὸς +ἡμᾶς; +σὺ +ὄψῃ. +καὶ +ῥίψας +τὰ +ἀργύρια +εἰς +τὸν +ναὸν +ἀνεχώρησεν, +καὶ +ἀπελθὼν +ἀπήγξατο. +δὲ +οἱ +ἀρχιερεῖς +λαβόντες +τὰ +ἀργύρια +εἶπαν +Οὐκ +ἔξεστιν +βαλεῖν +αὐτὰ +εἰς +τὸν +κορβανᾶν, +ἐπεὶ +τιμὴ +αἵματός +ἐστιν. +δὲ +συμβούλιον +λαβόντες +ἠγόρασαν +ἐξ +αὐτῶν +τὸν +ἀγρὸν +τοῦ +κεραμέως +εἰς +ταφὴν +τοῖς +ξένοις. +διὸ +ἐκλήθη +ὁ +ἀγρὸς +ἐκεῖνος +Ἀγρὸς +αἵματος +ἕως +τῆς +σήμερον. +τότε +ἐπληρώθη +τὸ +ῥηθὲν +διὰ +Ἱερεμίου +τοῦ +προφήτου +λέγοντος +Καὶ +ἔλαβον +τὰ +τριάκοντα +ἀργύρια, +τὴν +τιμὴν +τοῦ +τετιμημένου +ὃν +ἐτιμήσαντο +ἀπὸ +υἱῶν +Ἰσραήλ, +καὶ +ἔδωκαν +αὐτὰ +εἰς +τὸν +ἀγρὸν +τοῦ +κεραμέως, +καθὰ +συνέταξέν +μοι +Κύριος. +δὲ +Ὁ +Ἰησοῦς +ἐστάθη +ἔμπροσθεν +τοῦ +ἡγεμόνος· +καὶ +ἐπηρώτησεν +αὐτὸν +ὁ +ἡγεμὼν +λέγων +Σὺ +εἶ +ὁ +Βασιλεὺς +τῶν +Ἰουδαίων; +δὲ +ὁ +Ἰησοῦς +ἔφη +Σὺ +λέγεις. +καὶ +ἐν +τῷ +κατηγορεῖσθαι +αὐτὸν +ὑπὸ +τῶν +ἀρχιερέων +καὶ +πρεσβυτέρων +οὐδὲν +ἀπεκρίνατο. +τότε +λέγει +αὐτῷ +ὁ +Πειλᾶτος +Οὐκ +ἀκούεις +πόσα +σου +καταμαρτυροῦσιν; +καὶ +οὐκ +ἀπεκρίθη +αὐτῷ +πρὸς +οὐδὲ +ἓν +ῥῆμα, +ὥστε +θαυμάζειν +τὸν +ἡγεμόνα +λίαν. +δὲ +Κατὰ +ἑορτὴν +εἰώθει +ὁ +ἡγεμὼν +ἀπολύειν +τῷ +ὄχλῳ +ἕνα +δέσμιον +ὃν +ἤθελον. +δὲ +εἶχον +τότε +δέσμιον +ἐπίσημον +λεγόμενον +Βαραββᾶν. +οὖν +συνηγμένων +αὐτῶν +εἶπεν +αὐτοῖς +ὁ +Πειλᾶτος +θέλετε +Τίνα +ἀπολύσω +ὑμῖν, +Βαραββᾶν +ἢ +Ἰησοῦν +τὸν +λεγόμενον +Χριστόν; +γὰρ +ᾔδει +ὅτι +διὰ +φθόνον +παρέδωκαν +αὐτόν. +δὲ +Καθημένου +αὐτοῦ +ἐπὶ +τοῦ +βήματος +ἀπέστειλεν +πρὸς +αὐτὸν +ἡ +γυνὴ +αὐτοῦ +λέγουσα +Μηδὲν +σοὶ +καὶ +τῷ +δικαίῳ +ἐκείνῳ· +γὰρ +πολλὰ +ἔπαθον +σήμερον +κατ’ +ὄναρ +δι’ +αὐτόν. +δὲ +Οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +ἔπεισαν +τοὺς +ὄχλους +ἵνα +αἰτήσωνται +τὸν +Βαραββᾶν, +δὲ +τὸν +Ἰησοῦν +ἀπολέσωσιν. +δὲ +ἀποκριθεὶς +ὁ +ἡγεμὼν +εἶπεν +αὐτοῖς +θέλετε +Τίνα +ἀπὸ +τῶν +δύο +ἀπολύσω +ὑμῖν; +δὲ +οἱ +εἶπαν +Τὸν +Βαραββᾶν. +λέγει +αὐτοῖς +ὁ +Πειλᾶτος +οὖν +Τί +ποιήσω +Ἰησοῦν +τὸν +λεγόμενον +Χριστόν; +λέγουσιν +πάντες +Σταυρωθήτω. +δὲ +ὁ +ἔφη +γὰρ +Τί +κακὸν +ἐποίησεν; +δὲ +οἱ +περισσῶς +ἔκραζον +λέγοντες +Σταυρωθήτω. +δὲ +ὁ +Πειλᾶτος +ἰδὼν +ὅτι +οὐδὲν +ὠφελεῖ +ἀλλὰ +μᾶλλον +θόρυβος +γίνεται, +λαβὼν +ὕδωρ +ἀπενίψατο +τὰς +χεῖρας +κατέναντι +τοῦ +ὄχλου +λέγων +Ἀθῷός +εἰμι +ἀπὸ +τοῦ +αἵματος +τούτου· +ὑμεῖς +ὄψεσθε. +καὶ +ἀποκριθεὶς +πᾶς +ὁ +λαὸς +εἶπεν +Τὸ +αἷμα +αὐτοῦ +ἐφ’ +ἡμᾶς +καὶ +ἐπὶ +τὰ +τέκνα +ἡμῶν. +τότε +ἀπέλυσεν +αὐτοῖς +τὸν +Βαραββᾶν, +δὲ +τὸν +Ἰησοῦν +φραγελλώσας +παρέδωκεν +ἵνα +σταυρωθῇ. +Τότε +οἱ +στρατιῶται +τοῦ +ἡγεμόνος +παραλαβόντες +τὸν +Ἰησοῦν +εἰς +τὸ +πραιτώριον +συνήγαγον +ἐπ’ +αὐτὸν +ὅλην +τὴν +σπεῖραν. +καὶ +ἐκδύσαντες +αὐτὸν +χλαμύδα +κοκκίνην +περιέθηκαν +αὐτῷ, +καὶ +πλέξαντες +στέφανον +ἐξ +ἀκανθῶν +ἐπέθηκαν +ἐπὶ +τῆς +κεφαλῆς +αὐτοῦ +καὶ +κάλαμον +ἐν +τῇ +δεξιᾷ +αὐτοῦ, +καὶ +γονυπετήσαντες +ἔμπροσθεν +αὐτοῦ +ἐνέπαιξαν +αὐτῷ +λέγοντες +Χαῖρε, +Βασιλεῦ +τῶν +Ἰουδαίων, +καὶ +ἐμπτύσαντες +εἰς +αὐτὸν +ἔλαβον +τὸν +κάλαμον +καὶ +ἔτυπτον +εἰς +τὴν +κεφαλὴν +αὐτοῦ. +καὶ +ὅτε +ἐνέπαιξαν +αὐτῷ, +ἐξέδυσαν +αὐτὸν +τὴν +χλαμύδα +καὶ +ἐνέδυσαν +αὐτὸν +τὰ +ἱμάτια +αὐτοῦ, +καὶ +ἀπήγαγον +αὐτὸν +εἰς +τὸ +σταυρῶσαι. +δὲ +Ἐξερχόμενοι +εὗρον +ἄνθρωπον +Κυρηναῖον, +ὀνόματι +Σίμωνα· +τοῦτον +ἠγγάρευσαν +ἵνα +ἄρῃ +τὸν +σταυρὸν +αὐτοῦ. +Καὶ +ἐλθόντες +εἰς +τόπον +λεγόμενον +Γολγοθᾶ, +ὅ +ἐστιν +λεγόμενος, +κρανίου +τόπος +ἔδωκαν +αὐτῷ +πιεῖν +οἶνον +μετὰ +χολῆς +μεμιγμένον· +καὶ +γευσάμενος +οὐκ +ἠθέλησεν +πιεῖν. +δὲ +σταυρώσαντες +αὐτὸν +διεμερίσαντο +τὰ +ἱμάτια +αὐτοῦ +βάλλοντες +κλῆρον, +καὶ +καθήμενοι +ἐτήρουν +αὐτὸν +ἐκεῖ. +καὶ +ἐπέθηκαν +ἐπάνω +τῆς +κεφαλῆς +αὐτοῦ +τὴν +αἰτίαν +αὐτοῦ +γεγραμμένην +ΟΥΤΟΣ +ΕΣΤΙΝ +ΙΗΣΟΥΣ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ. +Τότε +σταυροῦνται +σὺν +αὐτῷ +δύο +λῃσταί, +εἷς +ἐκ +δεξιῶν +καὶ +εἷς +ἐξ +εὐωνύμων. +δὲ +Οἱ +παραπορευόμενοι +ἐβλασφήμουν +αὐτὸν +κινοῦντες +τὰς +κεφαλὰς +αὐτῶν +καὶ +λέγοντες +Ὁ +καταλύων +τὸν +ναὸν +καὶ +ἐν +τρισὶν +ἡμέραις +οἰκοδομῶν, +σῶσον +σεαυτόν, +εἰ +εἶ +Υἱὸς +τοῦ +Θεοῦ, +καὶ +κατάβηθι +ἀπὸ +τοῦ +σταυροῦ. +ὁμοίως +οἱ +ἀρχιερεῖς +ἐμπαίζοντες +μετὰ +τῶν +γραμματέων +καὶ +πρεσβυτέρων +ἔλεγον +Ἄλλους +ἔσωσεν, +ἑαυτὸν +σῶσαι· +οὐ +δύναται +Βασιλεὺς +Ἰσραήλ +ἐστιν, +καταβάτω +νῦν +ἀπὸ +τοῦ +σταυροῦ +καὶ +πιστεύσομεν +ἐπ’ +αὐτόν. +πέποιθεν +ἐπὶ +τὸν +Θεόν, +ῥυσάσθω +νῦν +εἰ +θέλει +αὐτόν· +γὰρ +εἶπεν +ὅτι +Θεοῦ +Υἱός. +εἰμι +δ’ +τὸ +αὐτὸ +καὶ +οἱ +λῃσταὶ +οἱ +συνσταυρωθέντες +σὺν +αὐτῷ +ὠνείδιζον +αὐτόν. +δὲ +Ἀπὸ +ἕκτης +ὥρας +σκότος +ἐγένετο +ἐπὶ +πᾶσαν +τὴν +γῆν +ἕως +ὥρας +ἐνάτης. +δὲ +περὶ +τὴν +ἐνάτην +ὥραν +ἀνεβόησεν +ὁ +Ἰησοῦς +φωνῇ +μεγάλῃ +λέγων +Ἠλεὶ +Ἠλεὶ +λεμὰ +σαβαχθανεί; +τοῦτ’ +ἔστιν +Θεέ +μου +θεέ +μου, +ἵνα +τί +με +ἐγκατέλιπες; +δὲ +τινὲς +τῶν +ἐκεῖ +ἑστηκότων +ἀκούσαντες +ἔλεγον +ὅτι +Ἠλείαν +φωνεῖ +οὗτος. +καὶ +εὐθέως +εἷς +ἐξ +αὐτῶν +δραμὼν +καὶ +λαβὼν +σπόγγον +τε +πλήσας +ὄξους +καὶ +περιθεὶς +καλάμῳ +ἐπότιζεν +αὐτόν. +δὲ +οἱ +λοιποὶ +εἶπαν +Ἄφες +ἴδωμεν +εἰ +ἔρχεται +Ἠλείας +σώσων +αὐτόν. +δὲ +ὁ +Ἰησοῦς +πάλιν +κράξας +φωνῇ +μεγάλῃ +ἀφῆκεν +τὸ +πνεῦμα. +Καὶ +ἰδοὺ +τὸ +καταπέτασμα +τοῦ +ναοῦ +ἐσχίσθη +ἀπ’ +ἄνωθεν +ἕως +κάτω +εἰς +δύο, +καὶ +ἡ +γῆ +ἐσείσθη, +καὶ +αἱ +πέτραι +ἐσχίσθησαν, +καὶ +τὰ +μνημεῖα +ἀνεῴχθησαν +καὶ +πολλὰ +σώματα +τῶν +κεκοιμημένων +ἁγίων +ἠγέρθησαν· +καὶ +ἐξελθόντες +ἐκ +τῶν +μνημείων +μετὰ +τὴν +ἔγερσιν +αὐτοῦ +εἰσῆλθον +εἰς +τὴν +ἁγίαν +πόλιν +καὶ +ἐνεφανίσθησαν +πολλοῖς. +δὲ +Ὁ +ἑκατόνταρχος +καὶ +οἱ +μετ’ +αὐτοῦ +τηροῦντες +τὸν +Ἰησοῦν +ἰδόντες +τὸν +σεισμὸν +καὶ +τὰ +γινόμενα +ἐφοβήθησαν +σφόδρα, +λέγοντες +Ἀληθῶς +Θεοῦ +Υἱὸς +ἦν +οὗτος. +δὲ +Ἦσαν +ἐκεῖ +γυναῖκες +πολλαὶ +ἀπὸ +μακρόθεν +θεωροῦσαι, +αἵτινες +ἠκολούθησαν +τῷ +Ἰησοῦ +ἀπὸ +τῆς +Γαλιλαίας +διακονοῦσαι +αὐτῷ· +ἐν +αἷς +ἦν +Μαρία +ἡ +Μαγδαληνή, +καὶ +Μαρία +ἡ +τοῦ +Ἰακώβου +καὶ +Ἰωσὴφ +μήτηρ, +καὶ +ἡ +μήτηρ +τῶν +υἱῶν +Ζεβεδαίου. +δὲ +Ὀψίας +γενομένης +ἦλθεν +ἄνθρωπος +πλούσιος +ἀπὸ +Ἀριμαθαίας, +τοὔνομα +Ἰωσήφ, +ὃς +καὶ +αὐτὸς +ἐμαθητεύθη +τῷ +Ἰησοῦ· +οὗτος +προσελθὼν +τῷ +Πειλάτῳ +ᾐτήσατο +τὸ +σῶμα +τοῦ +Ἰησοῦ. +τότε +ὁ +Πειλᾶτος +ἐκέλευσεν +ἀποδοθῆναι. +καὶ +λαβὼν +τὸ +σῶμα +ὁ +Ἰωσὴφ +ἐνετύλιξεν +αὐτὸ +ἐν +σινδόνι +καθαρᾷ, +καὶ +ἔθηκεν +αὐτὸ +ἐν +τῷ +καινῷ +αὐτοῦ +μνημείῳ +ὃ +ἐλατόμησεν +ἐν +τῇ +πέτρᾳ, +καὶ +προσκυλίσας +λίθον +μέγαν +τῇ +θύρᾳ +τοῦ +μνημείου +ἀπῆλθεν. +δὲ +ἐκεῖ +Μαριὰμ +ἡ +Μαγδαληνὴ +καὶ +ἡ +ἄλλη +Μαρία, +Ἦν +καθήμεναι +ἀπέναντι +τοῦ +τάφου. +δὲ +Τῇ +ἐπαύριον, +ἥτις +ἐστὶν +μετὰ +τὴν +Παρασκευήν, +συνήχθησαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +Φαρισαῖοι +πρὸς +Πειλᾶτον +λέγοντες +Κύριε, +ἐμνήσθημεν +ὅτι +ἐκεῖνος +ὁ +πλάνος +εἶπεν +ἔτι +ζῶν +Μετὰ +τρεῖς +ἡμέρας +ἐγείρομαι. +οὖν +κέλευσον +ἀσφαλισθῆναι +τὸν +τάφον +ἕως +τῆς +τρίτης +ἡμέρας, +μή +ποτε +ἐλθόντες +οἱ +μαθηταὶ +κλέψωσιν +αὐτὸν +καὶ +εἴπωσιν +τῷ +λαῷ +Ἠγέρθη +ἀπὸ +τῶν +νεκρῶν, +καὶ +ἔσται +ἡ +ἐσχάτη +πλάνη +χείρων +τῆς +πρώτης. +ἔφη +αὐτοῖς +ὁ +Πειλᾶτος +Ἔχετε +κουστωδίαν· +ὑπάγετε +ἀσφαλίσασθε +ὡς +οἴδατε. +δὲ +οἱ +πορευθέντες +ἠσφαλίσαντο +τὸν +τάφον +σφραγίσαντες +τὸν +λίθον +μετὰ +τῆς +κουστωδίας. +δὲ +Ὀψὲ +σαββάτων, +τῇ +ἐπιφωσκούσῃ +εἰς +μίαν +σαββάτων, +ἦλθεν +Μαριὰμ +ἡ +Μαγδαληνὴ +καὶ +ἡ +ἄλλη +Μαρία +θεωρῆσαι +τὸν +τάφον. +καὶ +ἰδοὺ +σεισμὸς +μέγας· +ἐγένετο +γὰρ +ἄγγελος +Κυρίου +καταβὰς +ἐξ +οὐρανοῦ +καὶ +προσελθὼν +ἀπεκύλισεν +τὸν +λίθον +καὶ +ἐκάθητο +ἐπάνω +αὐτοῦ. +δὲ +ἦν +ἡ +εἰδέα +αὐτοῦ +ὡς +ἀστραπὴ, +καὶ +τὸ +ἔνδυμα +αὐτοῦ +λευκὸν +ὡς +χιών. +δὲ +ἀπὸ +τοῦ +φόβου +αὐτοῦ +ἐσείσθησαν +οἱ +τηροῦντες +καὶ +ἐγενήθησαν +ὡς +νεκροί. +δὲ +ἀποκριθεὶς +ὁ +ἄγγελος +εἶπεν +ταῖς +γυναιξίν +Μὴ +φοβεῖσθε +ὑμεῖς· +γὰρ +οἶδα +ὅτι +Ἰησοῦν +τὸν +ἐσταυρωμένον +ζητεῖτε· +οὐκ +ἔστιν +ὧδε· +γὰρ +ἠγέρθη +καθὼς +εἶπεν· +δεῦτε +ἴδετε +τὸν +τόπον +ὅπου +ἔκειτο. +καὶ +ταχὺ +πορευθεῖσαι +εἴπατε +τοῖς +μαθηταῖς +αὐτοῦ +ὅτι +Ἠγέρθη +ἀπὸ +τῶν +νεκρῶν, +καὶ +ἰδοὺ +προάγει +ὑμᾶς +εἰς +τὴν +Γαλιλαίαν, +ἐκεῖ +αὐτὸν +ὄψεσθε. +ἰδοὺ +εἶπον +ὑμῖν. +καὶ +ἀπελθοῦσαι +ταχὺ +ἀπὸ +τοῦ +μνημείου +μετὰ +φόβου +καὶ +χαρᾶς +μεγάλης +ἔδραμον +ἀπαγγεῖλαι +τοῖς +μαθηταῖς +αὐτοῦ. +καὶ +ἰδοὺ +Ἰησοῦς +ὑπήντησεν +αὐταῖς +λέγων +Χαίρετε. +δὲ +αἱ +προσελθοῦσαι +ἐκράτησαν +αὐτοῦ +τοὺς +πόδας +καὶ +προσεκύνησαν +αὐτῷ. +τότε +λέγει +αὐταῖς +ὁ +Ἰησοῦς +Μὴ +φοβεῖσθε· +ὑπάγετε +ἀπαγγείλατε +τοῖς +ἀδελφοῖς +μου +ἵνα +ἀπέλθωσιν +εἰς +τὴν +Γαλιλαίαν, +κἀκεῖ +με +ὄψονται. +δὲ +Πορευομένων +αὐτῶν +ἰδού +τινες +τῆς +κουστωδίας +ἐλθόντες +εἰς +τὴν +πόλιν +ἀπήγγειλαν +τοῖς +ἀρχιερεῦσιν +ἅπαντα +τὰ +γενόμενα. +καὶ +συναχθέντες +μετὰ +τῶν +πρεσβυτέρων +τε +συμβούλιόν +λαβόντες +ἀργύρια +ἱκανὰ +ἔδωκαν +τοῖς +στρατιώταις +λέγοντες +Εἴπατε +ὅτι +Οἱ +μαθηταὶ +αὐτοῦ +νυκτὸς +ἐλθόντες +ἔκλεψαν +αὐτὸν +ἡμῶν +κοιμωμένων. +καὶ +ἐὰν +ἀκουσθῇ +τοῦτο +ἐπὶ +τοῦ +ἡγεμόνος, +ἡμεῖς +πείσομεν +καὶ +ὑμᾶς +ἀμερίμνους +ποιήσομεν. +δὲ +οἱ +λαβόντες +ἀργύρια +ἐποίησαν +ὡς +ἐδιδάχθησαν. +Καὶ +διεφημίσθη +ὁ +λόγος +οὗτος +παρὰ +Ἰουδαίοις +μέχρι +τῆς +σήμερον +ἡμέρας. +δὲ +Οἱ +ἕνδεκα +μαθηταὶ +ἐπορεύθησαν +εἰς +τὴν +Γαλιλαίαν, +εἰς +τὸ +ὄρος +οὗ +ἐτάξατο +αὐτοῖς +ὁ +Ἰησοῦς, +καὶ +ἰδόντες +αὐτὸν +προσεκύνησαν, +δὲ +οἱ +ἐδίστασαν. +καὶ +προσελθὼν +ὁ +Ἰησοῦς +ἐλάλησεν +αὐτοῖς +λέγων +Ἐδόθη +μοι +πᾶσα +ἐξουσία +ἐν +οὐρανῷ +καὶ +ἐπὶ +τῆς +γῆς. +οὖν +πορευθέντες +μαθητεύσατε +πάντα +τὰ +ἔθνη, +βαπτίζοντες +αὐτοὺς +εἰς +τὸ +ὄνομα +τοῦ +Πατρὸς +καὶ +τοῦ +Υἱοῦ +καὶ +τοῦ +Ἁγίου +Πνεύματος, +διδάσκοντες +αὐτοὺς +τηρεῖν +πάντα +ὅσα +ἐνετειλάμην +ὑμῖν· +καὶ +ἰδοὺ +ἐγὼ +μεθ’ +ὑμῶν +εἰμι +πάσας +τὰς +ἡμέρας +ἕως +τῆς +συντελείας +τοῦ +αἰῶνος. +Ἀρχὴ +τοῦ +εὐαγγελίου +Ἰησοῦ +Χριστοῦ +(Υἱοῦ +Θεοῦ). +Καθὼς +γέγραπται +ἐν +τῷ +Ἠσαΐᾳ +τῷ +προφήτῃ +Ἰδοὺ +ἀποστέλλω +τὸν +ἄγγελόν +μου +πρὸ +προσώπου +σου, +ὃς +κατασκευάσει +τὴν +ὁδόν +σου· +φωνὴ +βοῶντος +ἐν +τῇ +ἐρήμῳ +Ἑτοιμάσατε +τὴν +ὁδὸν +Κυρίου, +εὐθείας +ποιεῖτε +τὰς +τρίβους +αὐτοῦ, +ἐγένετο +Ἰωάνης +ὁ +βαπτίζων +ἐν +τῇ +ἐρήμῳ +κηρύσσων +βάπτισμα +μετανοίας +εἰς +ἄφεσιν +ἁμαρτιῶν. +καὶ +ἐξεπορεύετο +πρὸς +αὐτὸν +πᾶσα +ἡ +Ἰουδαία +χώρα +καὶ +οἱ +Ἱεροσολυμεῖται +πάντες, +καὶ +ἐβαπτίζοντο +ὑπ’ +αὐτοῦ +ἐν +τῷ +Ἰορδάνῃ +ποταμῷ +ἐξομολογούμενοι +τὰς +ἁμαρτίας +αὐτῶν. +καὶ +ἦν +ὁ +Ἰωάνης +ἐνδεδυμένος +τρίχας +καμήλου +καὶ +ζώνην +δερματίνην +περὶ +τὴν +ὀσφὺν +αὐτοῦ, +καὶ +ἔσθων +ἀκρίδας +καὶ +μέλι +ἄγριον. +καὶ +ἐκήρυσσεν +λέγων +Ἔρχεται +ὁ +ἰσχυρότερός +μου +ὀπίσω +μου, +οὗ +οὐκ +εἰμὶ +ἱκανὸς +κύψας +λῦσαι +τὸν +ἱμάντα +τῶν +ὑποδημάτων +αὐτοῦ. +ἐγὼ +ἐβάπτισα +ὑμᾶς +ὕδατι, +δὲ +αὐτὸς +βαπτίσει +ὑμᾶς +Πνεύματι +Ἁγίῳ. +Καὶ +ἐγένετο +ἐν +ἐκείναις +ταῖς +ἡμέραις +ἦλθεν +Ἰησοῦς +ἀπὸ +Ναζαρὲτ +τῆς +Γαλιλαίας +καὶ +ἐβαπτίσθη +εἰς +τὸν +Ἰορδάνην +ὑπὸ +Ἰωάνου. +καὶ +εὐθὺς +ἀναβαίνων +ἐκ +τοῦ +ὕδατος +εἶδεν +σχιζομένους +τοὺς +οὐρανοὺς +καὶ +τὸ +Πνεῦμα +ὡς +περιστερὰν +καταβαῖνον +εἰς +αὐτόν· +καὶ +φωνὴ +ἐγένετο +ἐκ +τῶν +οὐρανῶν +Σὺ +εἶ +ὁ +Υἱός +μου +ὁ +ἀγαπητός, +ἐν +σοὶ +εὐδόκησα. +Καὶ +εὐθὺς +τὸ +Πνεῦμα +αὐτὸν +ἐκβάλλει +εἰς +τὴν +ἔρημον. +καὶ +ἦν +ἐν +τῇ +ἐρήμῳ +τεσσεράκοντα +ἡμέρας +πειραζόμενος +ὑπὸ +τοῦ +Σατανᾶ, +καὶ +ἦν +μετὰ +τῶν +θηρίων, +καὶ +οἱ +ἄγγελοι +διηκόνουν +αὐτῷ. +Καὶ +μετὰ +τὸ +παραδοθῆναι +τὸν +Ἰωάνην +ἦλθεν +ὁ +Ἰησοῦς +εἰς +τὴν +Γαλιλαίαν +κηρύσσων +τὸ +εὐαγγέλιον +τοῦ +Θεοῦ +καὶ +λέγων +ὅτι +Πεπλήρωται +ὁ +καιρὸς +καὶ +ἤγγικεν +ἡ +βασιλεία +τοῦ +Θεοῦ· +μετανοεῖτε +καὶ +πιστεύετε +ἐν +τῷ +εὐαγγελίῳ. +Καὶ +παράγων +παρὰ +τὴν +θάλασσαν +τῆς +Γαλιλαίας +εἶδεν +Σίμωνα +καὶ +Ἀνδρέαν +τὸν +ἀδελφὸν +Σίμωνος +ἀμφιβάλλοντας +ἐν +τῇ +θαλάσσῃ· +γὰρ +ἦσαν +ἁλεεῖς. +καὶ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Δεῦτε +ὀπίσω +μου, +καὶ +ποιήσω +ὑμᾶς +γενέσθαι +ἁλεεῖς +ἀνθρώπων. +καὶ +εὐθὺς +ἀφέντες +τὰ +δίκτυα +ἠκολούθησαν +αὐτῷ. +Καὶ +προβὰς +ὀλίγον +εἶδεν +Ἰάκωβον +τὸν +τοῦ +Ζεβεδαίου +καὶ +Ἰωάνην +τὸν +ἀδελφὸν +αὐτοῦ, +καὶ +αὐτοὺς +ἐν +τῷ +πλοίῳ +καταρτίζοντας +τὰ +δίκτυα, +καὶ +εὐθὺς +ἐκάλεσεν +αὐτούς· +καὶ +ἀφέντες +τὸν +πατέρα +αὐτῶν +Ζεβεδαῖον +ἐν +τῷ +πλοίῳ +μετὰ +τῶν +μισθωτῶν +ἀπῆλθον +ὀπίσω +αὐτοῦ. +Καὶ +εἰσπορεύονται +εἰς +Καφαρναούμ· +καὶ +εὐθὺς +τοῖς +σάββασιν +εἰσελθὼν +εἰς +τὴν +συναγωγὴν +ἐδίδασκεν. +καὶ +ἐξεπλήσσοντο +ἐπὶ +τῇ +διδαχῇ +αὐτοῦ· +γὰρ +ἦν +διδάσκων +αὐτοὺς +ὡς +ἐξουσίαν +ἔχων, +καὶ +οὐχ +ὡς +οἱ +γραμματεῖς. +Καὶ +εὐθὺς +ἦν +ἐν +τῇ +συναγωγῇ +αὐτῶν +ἄνθρωπος +ἐν +πνεύματι +ἀκαθάρτῳ, +καὶ +ἀνέκραξεν +λέγων +Τί +ἡμῖν +καὶ +σοί, +Ἰησοῦ +Ναζαρηνέ; +ἦλθες +ἀπολέσαι +ἡμᾶς. +οἶδά +σε +τίς +εἶ, +ὁ +Ἅγιος +τοῦ +Θεοῦ. +καὶ +ἐπετίμησεν +αὐτῷ +ὁ +Ἰησοῦς +Φιμώθητι +καὶ +ἔξελθε +ἐξ +αὐτοῦ. +καὶ +τὸ +πνεῦμα +τὸ +ἀκάθαρτον +σπαράξαν +αὐτὸν +καὶ +φωνῆσαν +φωνῇ +μεγάλῃ +ἐξῆλθεν +ἐξ +αὐτοῦ. +καὶ +ἐθαμβήθησαν +ἅπαντες, +ὥστε +συνζητεῖν +αὐτοὺς +λέγοντας +Τί +ἐστιν +τοῦτο; +διδαχὴ +καινή +κατ’ +ἐξουσίαν· +καὶ +τοῖς +πνεύμασι +τοῖς +ἀκαθάρτοις +ἐπιτάσσει, +καὶ +ὑπακούουσιν +αὐτῷ. +καὶ +ἐξῆλθεν +ἡ +ἀκοὴ +αὐτοῦ +εὐθὺς +πανταχοῦ +εἰς +ὅλην +τὴν +περίχωρον +τῆς +Γαλιλαίας. +Καὶ +εὐθὺς +ἐκ +τῆς +συναγωγῆς +ἐξελθόντες +ἦλθον +εἰς +τὴν +οἰκίαν +Σίμωνος +καὶ +Ἀνδρέου +μετὰ +Ἰακώβου +καὶ +Ἰωάνου. +δὲ +ἡ +πενθερὰ +Σίμωνος +κατέκειτο +πυρέσσουσα, +καὶ +εὐθὺς +λέγουσιν +αὐτῷ +περὶ +αὐτῆς. +καὶ +προσελθὼν +ἤγειρεν +αὐτὴν +κρατήσας +τῆς +χειρός· +καὶ +ἀφῆκεν +αὐτὴν +ὁ +πυρετός, +καὶ +διηκόνει +αὐτοῖς. +δὲ +Ὀψίας +γενομένης, +ὅτε +ἔδυσεν +ὁ +ἥλιος, +ἔφερον +πρὸς +αὐτὸν +πάντας +τοὺς +κακῶς +ἔχοντας +καὶ +τοὺς +δαιμονιζομένους· +καὶ +ἦν +ἐπισυνηγμένη +ὅλη +ἡ +πόλις +πρὸς +τὴν +θύραν. +καὶ +ἐθεράπευσεν +πολλοὺς +κακῶς +ἔχοντας +ποικίλαις +νόσοις, +καὶ +δαιμόνια +πολλὰ +ἐξέβαλεν, +καὶ +οὐκ +ἤφιεν +λαλεῖν +τὰ +δαιμόνια, +ὅτι +ᾔδεισαν +αὐτόν. +Καὶ +πρωῒ +ἔννυχα +λίαν +ἀναστὰς +ἐξῆλθεν +καὶ +ἀπῆλθεν +εἰς +ἔρημον +τόπον, +κἀκεῖ +προσηύχετο. +καὶ +κατεδίωξεν +αὐτὸν +Σίμων +καὶ +οἱ +μετ’ +αὐτοῦ, +καὶ +εὗρον +αὐτὸν +καὶ +λέγουσιν +αὐτῷ +ὅτι +Πάντες +ζητοῦσίν +σε. +καὶ +λέγει +αὐτοῖς· +Ἄγωμεν +ἀλλαχοῦ +εἰς +τὰς +ἐχομένας +κωμοπόλεις, +ἵνα +καὶ +ἐκεῖ +κηρύξω· +γὰρ +εἰς +τοῦτο +ἐξῆλθον. +καὶ +ἦλθεν +κηρύσσων +εἰς +τὰς +συναγωγὰς +αὐτῶν +εἰς +ὅλην +τὴν +Γαλιλαίαν +καὶ +τὰ +δαιμόνια +ἐκβάλλων. +Καὶ +ἔρχεται +πρὸς +αὐτὸν +λεπρὸς +παρακαλῶν +αὐτὸν +καὶ +γονυπετῶν +λέγων +αὐτῷ +ὅτι +Ἐὰν +θέλῃς +δύνασαί +με +καθαρίσαι. +καὶ +σπλαγχνισθεὶς +ἐκτείνας +τὴν +χεῖρα +αὐτοῦ +ἥψατο +καὶ +λέγει +αὐτῷ +Θέλω, +καθαρίσθητι. +καὶ +εὐθὺς +ἀπῆλθεν +ἀπ’ +αὐτοῦ +ἡ +λέπρα, +καὶ +ἐκαθερίσθη. +καὶ +ἐμβριμησάμενος +αὐτῷ +εὐθὺς +ἐξέβαλεν +αὐτόν, +καὶ +λέγει +αὐτῷ +Ὅρα +μηδενὶ +μηδὲν +εἴπῃς, +ἀλλὰ +ὕπαγε +σεαυτὸν +δεῖξον +τῷ +ἱερεῖ +καὶ +προσένεγκε +περὶ +τοῦ +καθαρισμοῦ +σου +ἃ +προσέταξεν +Μωϋσῆς +εἰς +μαρτύριον +αὐτοῖς. +δὲ +ὁ +ἐξελθὼν +ἤρξατο +κηρύσσειν +πολλὰ +καὶ +διαφημίζειν +τὸν +λόγον, +ὥστε +μηκέτι +αὐτὸν +δύνασθαι +φανερῶς +εἰς +πόλιν +εἰσελθεῖν, +ἀλλ’ +ἔξω +ἐπ’ +ἐρήμοις +τόποις +ἦν· +καὶ +ἤρχοντο +πρὸς +αὐτὸν +πάντοθεν. +Καὶ +εἰσελθὼν +πάλιν +εἰς +Καφαρναοὺμ +δι’ +ἡμερῶν +ἠκούσθη +ὅτι +ἐν +οἴκῳ +ἐστίν. +καὶ +συνήχθησαν +πολλοὶ, +ὥστε +μηκέτι +χωρεῖν +μηδὲ +τὰ +πρὸς +τὴν +θύραν, +καὶ +ἐλάλει +αὐτοῖς +τὸν +λόγον. +καὶ +ἔρχονται +φέροντες +πρὸς +αὐτὸν +παραλυτικὸν +αἰρόμενον +ὑπὸ +τεσσάρων. +καὶ +μὴ +δυνάμενοι +προσενέγκαι +αὐτῷ +διὰ +τὸν +ὄχλον +ἀπεστέγασαν +τὴν +στέγην +ὅπου +ἦν, +καὶ +ἐξορύξαντες +χαλῶσι +τὸν +κράβαττον +ὅπου +ὁ +παραλυτικὸς +κατέκειτο. +καὶ +ὁ +Ἰησοῦς +ἰδὼν +τὴν +πίστιν +αὐτῶν +λέγει +τῷ +παραλυτικῷ· +Τέκνον, +ἀφίενταί +σου +αἱ +ἁμαρτίαι. +δέ +ἦσαν +τινες +τῶν +γραμματέων +ἐκεῖ +καθήμενοι +καὶ +διαλογιζόμενοι +ἐν +ταῖς +καρδίαις +αὐτῶν +Τί +οὗτος +οὕτως +λαλεῖ; +βλασφημεῖ· +τίς +δύναται +ἀφιέναι +ἁμαρτίας +εἰ +μὴ +εἷς +ὁ +Θεός; +καὶ +εὐθὺς +ὁ +Ἰησοῦς +ἐπιγνοὺς +τῷ +πνεύματι +αὐτοῦ +ὅτι +οὕτως +διαλογίζονται +ἐν +ἑαυτοῖς, +λέγει +αὐτοῖς +Τί +ταῦτα +διαλογίζεσθε +ἐν +ταῖς +καρδίαις +ὑμῶν; +τί +ἐστιν +εὐκοπώτερον, +εἰπεῖν +τῷ +παραλυτικῷ +Ἀφίενταί +σου +αἱ +ἁμαρτίαι, +ἢ +εἰπεῖν +Ἔγειρε +καὶ +ἆρον +τὸν +κράβαττόν +σου +καὶ +περιπάτει; +δὲ +ἵνα +εἰδῆτε +ὅτι +ἐξουσίαν +ἔχει +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἀφιέναι +ἁμαρτίας +ἐπὶ +τῆς +γῆς,— +λέγει +τῷ +παραλυτικῷ +Σοὶ +λέγω, +ἔγειρε +ἆρον +τὸν +κράβαττόν +σου +καὶ +ὕπαγε +εἰς +τὸν +οἶκόν +σου. +καὶ +ἠγέρθη +καὶ +εὐθὺς +ἄρας +τὸν +κράβαττον +ἐξῆλθεν +ἔμπροσθεν +πάντων, +ὥστε +ἐξίστασθαι +πάντας +καὶ +δοξάζειν +τὸν +Θεὸν +λέγοντας +ὅτι +Οὕτως +οὐδέποτε +εἴδαμεν. +Καὶ +ἐξῆλθεν +πάλιν +παρὰ +τὴν +θάλασσαν· +καὶ +πᾶς +ὁ +ὄχλος +ἤρχετο +πρὸς +αὐτόν, +καὶ +ἐδίδασκεν +αὐτούς. +καὶ +παράγων +εἶδεν +Λευεὶν +τὸν +τοῦ +Ἀλφαίου +καθήμενον +ἐπὶ +τὸ +τελώνιον, +καὶ +λέγει +αὐτῷ +Ἀκολούθει +μοι. +καὶ +ἀναστὰς +ἠκολούθησεν +αὐτῷ. +Καὶ +γίνεται +κατακεῖσθαι +αὐτὸν +ἐν +τῇ +οἰκίᾳ +αὐτοῦ, +καὶ +πολλοὶ +τελῶναι +καὶ +ἁμαρτωλοὶ +συνανέκειντο +τῷ +Ἰησοῦ +καὶ +τοῖς +μαθηταῖς +αὐτοῦ, +γὰρ +ἦσαν +πολλοὶ +καὶ +ἠκολούθουν +αὐτῷ. +καὶ +οἱ +γραμματεῖς +τῶν +Φαρισαίων +ἰδόντες +ὅτι +ἐσθίει +μετὰ +τῶν +ἁμαρτωλῶν +καὶ +τελωνῶν, +ἔλεγον +τοῖς +μαθηταῖς +αὐτοῦ +Ὅτι +μετὰ +τῶν +τελωνῶν +καὶ +ἁμαρτωλῶν +ἐσθίει; +καὶ +ἀκούσας +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Οὐ +χρείαν +ἰατροῦ +ἔχουσιν +οἱ +ἰσχύοντες +ἀλλ’ +οἱ +κακῶς +ἔχοντες· +οὐκ +ἦλθον +καλέσαι +δικαίους +ἀλλὰ +ἁμαρτωλούς. +Καὶ +ἦσαν +νηστεύοντες. +οἱ +μαθηταὶ +Ἰωάνου +καὶ +οἱ +Φαρισαῖοι +καὶ +ἔρχονται +καὶ +λέγουσιν +αὐτῷ +Διὰ +τί +οἱ +μαθηταὶ +Ἰωάνου +καὶ +οἱ +μαθηταὶ +τῶν +Φαρισαίων +νηστεύουσιν, +δὲ +οἱ +σοὶ +μαθηταὶ +οὐ +νηστεύουσιν; +καὶ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Μὴ +δύνανται +οἱ +υἱοὶ +τοῦ +νυμφῶνος +ἐν +ᾧ +ὁ +νυμφίος +μετ’ +αὐτῶν +ἐστιν +νηστεύειν; +ὅσον +χρόνον +ἔχουσιν +τὸν +νυμφίον +μετ’ +αὐτῶν, +οὐ +δύνανται +νηστεύειν. +δὲ +ἐλεύσονται +ἡμέραι +ὅταν +ἀπαρθῇ +ἀπ’ +αὐτῶν +ὁ +νυμφίος, +καὶ +τότε +νηστεύσουσιν +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ. +Οὐδεὶς +ἐπίβλημα +ῥάκους +ἀγνάφου +ἐπιράπτει +ἐπὶ +ἱμάτιον +παλαιόν· +δὲ +εἰ +μή, +αἴρει +τὸ +πλήρωμα +τὸ +καινὸν +ἀπ’ +αὐτοῦ +τοῦ +παλαιοῦ, +καὶ +χεῖρον +σχίσμα +γίνεται. +καὶ +οὐδεὶς +βάλλει +οἶνον +νέον +εἰς +ἀσκοὺς +παλαιούς· +δὲ +εἰ +μή, +ῥήξει +ὁ +οἶνος +τοὺς +ἀσκούς, +καὶ +ὁ +οἶνος +ἀπόλλυται +καὶ +οἱ +ἀσκοί. +ἀλλὰ +οἶνον +νέον +εἰς +ἀσκοὺς +καινούς. +Καὶ +ἐγένετο +αὐτὸν +ἐν +τοῖς +σάββασιν +παραπορεύεσθαι +διὰ +τῶν +σπορίμων, +καὶ +οἱ +μαθηταὶ +αὐτοῦ +ἤρξαντο +ὁδὸν +ποιεῖν +τίλλοντες +τοὺς +στάχυας. +καὶ +οἱ +Φαρισαῖοι +ἔλεγον +αὐτῷ +Ἴδε +τί +ποιοῦσιν +τοῖς +σάββασιν +ὃ +οὐκ +ἔξεστιν; +καὶ +λέγει +αὐτοῖς· +Οὐδέποτε +ἀνέγνωτε +τί +ἐποίησεν +Δαυείδ, +ὅτε +χρείαν +ἔσχεν +καὶ +ἐπείνασεν +αὐτὸς +καὶ +οἱ +μετ’ +αὐτοῦ; +πῶς +εἰσῆλθεν +εἰς +τὸν +οἶκον +τοῦ +Θεοῦ +ἐπὶ +Ἀβιαθὰρ +ἀρχιερέως +καὶ +τοὺς +ἄρτους +τῆς +προθέσεως +ἔφαγεν, +οὓς +φαγεῖν +οὐκ +ἔξεστιν +εἰ +μὴ +τοὺς +ἱερεῖς, +καὶ +ἔδωκεν +καὶ +τοῖς +σὺν +αὐτῷ +οὖσιν; +καὶ +ἔλεγεν +αὐτοῖς +Τὸ +σάββατον +διὰ +τὸν +ἄνθρωπον +ἐγένετο, +καὶ +οὐχ +ὁ +ἄνθρωπος +διὰ +τὸ +σάββατον· +ὥστε +ἐστιν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +κύριός +καὶ +τοῦ +σαββάτου. +Καὶ +εἰσῆλθεν +πάλιν +εἰς +συναγωγήν, +καὶ +ἦν +ἐκεῖ +ἄνθρωπος +ἐξηραμμένην +ἔχων +τὴν +χεῖρα· +καὶ +παρετήρουν +αὐτὸν +εἰ +τοῖς +σάββασιν +θεραπεύσει +αὐτόν, +ἵνα +κατηγορήσωσιν +αὐτοῦ. +καὶ +λέγει +τῷ +ἀνθρώπῳ +τῷ +τὴν +ξηράν +χεῖρα +ἔχοντι +Ἔγειρε +εἰς +τὸ +μέσον. +καὶ +λέγει +αὐτοῖς +Ἔξεστιν +τοῖς +σάββασιν +ἀγαθὸν +ποιῆσαι +ἢ +κακοποιῆσαι, +ψυχὴν +σῶσαι +ἢ +ἀποκτεῖναι; +δὲ +οἱ +ἐσιώπων. +καὶ +περιβλεψάμενος +αὐτοὺς +μετ’ +ὀργῆς, +συνλυπούμενος +ἐπὶ +τῇ +πωρώσει +τῆς +καρδίας +αὐτῶν, +λέγει +τῷ +ἀνθρώπῳ +Ἔκτεινον +τὴν +χεῖρα. +καὶ +ἐξέτεινεν, +καὶ +ἀπεκατεστάθη +ἡ +χεὶρ +αὐτοῦ. +καὶ +ἐξελθόντες +οἱ +Φαρισαῖοι +εὐθὺς +μετὰ +τῶν +Ἠρῳδιανῶν +συμβούλιον +ἐδίδουν +κατ’ +αὐτοῦ, +ὅπως +αὐτὸν +ἀπολέσωσιν. +Καὶ +ὁ +Ἰησοῦς +μετὰ +τῶν +μαθητῶν +αὐτοῦ +ἀνεχώρησεν +πρὸς +τὴν +θάλασσαν· +καὶ +πολὺ +πλῆθος +ἀπὸ +τῆς +Γαλιλαίας +ἠκολούθησεν· +καὶ +ἀπὸ +τῆς +Ἰουδαίας +καὶ +ἀπὸ +Ἱεροσολύμων +καὶ +ἀπὸ +τῆς +Ἰδουμαίας +καὶ +πέραν +τοῦ +Ἰορδάνου +καὶ +περὶ +Τύρον +καὶ +Σιδῶνα, +πλῆθος +πολύ, +ἀκούοντες +ὅσα +ποιεῖ, +ἦλθον +πρὸς +αὐτόν. +καὶ +εἶπεν +τοῖς +μαθηταῖς +αὐτοῦ +ἵνα +πλοιάριον +προσκαρτερῇ +αὐτῷ +διὰ +τὸν +ὄχλον, +ἵνα +μὴ +θλίβωσιν +αὐτόν· +γὰρ +πολλοὺς +ἐθεράπευσεν, +ὥστε +ἐπιπίπτειν +αὐτῷ +ἵνα +αὐτοῦ +ἅψωνται +ὅσοι +εἶχον +μάστιγας. +καὶ +τὰ +πνεύματα +τὰ +ἀκάθαρτα, +ὅταν +αὐτὸν +ἐθεώρουν, +προσέπιπτον +αὐτῷ +καὶ +ἔκραζον +λέγοντα +ὅτι +Σὺ +εἶ +ὁ +Υἱὸς +τοῦ +Θεοῦ. +καὶ +πολλὰ +ἐπετίμα +αὐτοῖς +ἵνα +μὴ +αὐτὸν +φανερὸν +ποιήσωσιν. +Καὶ +ἀναβαίνει +εἰς +τὸ +ὄρος, +καὶ +προσκαλεῖται +οὓς +ἤθελεν +αὐτός, +καὶ +ἀπῆλθον +πρὸς +αὐτόν. +καὶ +ἐποίησεν +δώδεκα +ἵνα +ὦσιν +μετ’ +αὐτοῦ, +καὶ +ἵνα +ἀποστέλλῃ +αὐτοὺς +κηρύσσειν +καὶ +ἔχειν +ἐξουσίαν +ἐκβάλλειν +τὰ +δαιμόνια· +καὶ +ἐποίησεν +τοὺς +δώδεκα, +καὶ +ἐπέθηκεν +ὄνομα +τῷ +Σίμωνι +Πέτρον· +καὶ +Ἰάκωβον +τὸν +τοῦ +Ζεβεδαίου +καὶ +Ἰωάνην +τὸν +ἀδελφὸν +τοῦ +Ἰακώβου, +καὶ +ἐπέθηκεν +αὐτοῖς +ὄνομα +Βοανηργές, +ὅ +ἐστιν +Υἱοὶ +Βροντῆς· +καὶ +Ἀνδρέαν +καὶ +Φίλιππον +καὶ +Βαρθολομαῖον +καὶ +Μαθθαῖον +καὶ +Θωμᾶν +καὶ +Ἰάκωβον +τὸν +τοῦ +Ἁλφαίου +καὶ +Θαδδαῖον +καὶ +Σίμωνα +τὸν +Καναναῖον +καὶ +Ἰούδαν +Ἰσκαριώθ, +ὃς +καὶ +παρέδωκεν +αὐτόν. +Καὶ +ἔρχεται +εἰς +οἶκον· +καὶ +συνέρχεται +πάλιν +ὁ +ὄχλος, +ὥστε +μὴ +δύνασθαι +αὐτοὺς +μηδὲ +ἄρτον +φαγεῖν. +καὶ +ἀκούσαντες +οἱ +παρ’ +αὐτοῦ +ἐξῆλθον +κρατῆσαι +αὐτόν· +γὰρ +ἔλεγον +ὅτι +ἐξέστη. +καὶ +οἱ +γραμματεῖς +οἱ +ἀπὸ +Ἱεροσολύμων +καταβάντες +ἔλεγον +ὅτι +Βεελζεβοὺλ +ἔχει, +καὶ +ὅτι +ἐν +τῷ +ἄρχοντι +τῶν +δαιμονίων +ἐκβάλλει +τὰ +δαιμόνια. +καὶ +προσκαλεσάμενος +αὐτοὺς +ἐν +παραβολαῖς +ἔλεγεν +αὐτοῖς +Πῶς +δύναται +Σατανᾶς +Σατανᾶν +ἐκβάλλειν; +καὶ +ἐὰν +βασιλεία +ἐφ’ +ἑαυτὴν +μερισθῇ, +οὐ +δύναται +σταθῆναι +ἡ +βασιλεία +ἐκείνη· +καὶ +ἐὰν +οἰκία +ἐφ’ +ἑαυτὴν +μερισθῇ, +οὐ +δυνήσεται +ἡ +οἰκία +ἐκείνη +στῆναι. +καὶ +εἰ +ὁ +Σατανᾶς +ἀνέστη +ἐφ’ +ἑαυτὸν +καὶ +ἐμερίσθη, +οὐ +δύναται +στῆναι +ἀλλὰ +τέλος +ἔχει. +ἀλλ’ +οὐ +δύναται +οὐδεὶς +εἰς +τὴν +οἰκίαν +τοῦ +ἰσχυροῦ +εἰσελθὼν +τὰ +σκεύη +αὐτοῦ +διαρπάσαι, +ἐὰν +μὴ +πρῶτον +τὸν +ἰσχυρὸν +δήσῃ, +καὶ +τότε +τὴν +οἰκίαν +αὐτοῦ +διαρπάσει. +Ἀμὴν +λέγω +ὑμῖν +ὅτι +ἀφεθήσεται +τοῖς +υἱοῖς +τῶν +ἀνθρώπων, +πάντα +τὰ +ἁμαρτήματα +καὶ +αἱ +βλασφημίαι, +ἐὰν +ὅσα +βλασφημήσωσιν· +δ’ +ἂν +ὃς +βλασφημήσῃ +εἰς +τὸ +Πνεῦμα +τὸ +Ἅγιον, +οὐκ +ἔχει +ἄφεσιν +εἰς +τὸν +αἰῶνα, +ἀλλὰ +ἔνοχός +ἐστιν +αἰωνίου +ἁμαρτήματος. +ὅτι +ἔλεγον +Πνεῦμα +ἀκάθαρτον +ἔχει. +Καὶ +ἔρχονται +ἡ +μήτηρ +αὐτοῦ +καὶ +οἱ +ἀδελφοὶ +αὐτοῦ, +καὶ +ἔξω +στήκοντες +ἀπέστειλαν +πρὸς +αὐτὸν +καλοῦντες +αὐτόν. +καὶ +ἐκάθητο +περὶ +αὐτὸν +ὄχλος, +καὶ +λέγουσιν +αὐτῷ +Ἰδοὺ +ἡ +μήτηρ +σου +καὶ +οἱ +ἀδελφοί +σου +καὶ +αἱ +ἀδελφαί +σου +ἔξω +ζητοῦσίν +σε. +καὶ +ἀποκριθεὶς +αὐτοῖς +λέγει +Τίς +ἐστιν +ἡ +μήτηρ +μου +καὶ +οἱ +ἀδελφοί; +καὶ +περιβλεψάμενος +τοὺς +περὶ +αὐτὸν +κύκλῳ +καθημένους +λέγει +Ἴδε +ἡ +μήτηρ +μου +καὶ +οἱ +ἀδελφοί +μου. +ἂν +ὃς +ποιήσῃ +τὸ +θέλημα +τοῦ +Θεοῦ, +οὗτος +ἀδελφός +μου +καὶ +ἀδελφὴ +καὶ +μήτηρ +ἐστίν. +Καὶ +πάλιν +ἤρξατο +διδάσκειν +παρὰ +τὴν +θάλασσαν. +καὶ +συνάγεται +πρὸς +αὐτὸν +ὄχλος +πλεῖστος, +ὥστε +αὐτὸν +εἰς +πλοῖον +ἐμβάντα +καθῆσθαι +ἐν +τῇ +θαλάσσῃ, +καὶ +πᾶς +ὁ +ὄχλος +πρὸς +τὴν +θάλασσαν +ἐπὶ +τῆς +γῆς +ἦσαν. +καὶ +ἐδίδασκεν +αὐτοὺς +ἐν +παραβολαῖς +πολλά, +καὶ +ἔλεγεν +αὐτοῖς +ἐν +τῇ +διδαχῇ +αὐτοῦ +Ἀκούετε. +ἰδοὺ +ἐξῆλθεν +ὁ +σπείρων +σπεῖραι. +καὶ +ἐγένετο +ἐν +τῷ +σπείρειν +μὲν +ὃ +ἔπεσεν +παρὰ +τὴν +ὁδόν, +καὶ +ἦλθεν +τὰ +πετεινὰ +καὶ +κατέφαγεν +αὐτό. +καὶ +ἄλλο +ἔπεσεν +ἐπὶ +τὸ +πετρῶδες +ὅπου +οὐκ +εἶχεν +γῆν +πολλήν, +καὶ +εὐθὺς +ἐξανέτειλεν +διὰ +τὸ +μὴ +ἔχειν +βάθος +γῆς· +καὶ +ὅτε +ἀνέτειλεν +ὁ +ἥλιος +ἐκαυματίσθη, +καὶ +διὰ +τὸ +μὴ +ἔχειν +ῥίζαν +ἐξηράνθη. +καὶ +ἄλλο +ἔπεσεν +εἰς +τὰς +ἀκάνθας, +καὶ +ἀνέβησαν +αἱ +ἄκανθαι +καὶ +συνέπνιξαν +αὐτό, +καὶ +καρπὸν +οὐκ +ἔδωκεν. +καὶ +ἄλλα +ἔπεσεν +εἰς +τὴν +γῆν +τὴν +καλήν, +καὶ +ἐδίδου +καρπὸν +ἀναβαίνοντα +καὶ +αὐξανόμενα, +καὶ +ἔφερεν +εἰς +τριάκοντα +καὶ +ἐν +ἑξήκοντα +καὶ +ἐν +ἑκατόν. +καὶ +ἔλεγεν +Ὃς +ἔχει +ὦτα +ἀκούειν +ἀκουέτω. +Καὶ +ὅτε +ἐγένετο +κατὰ +μόνας, +ἠρώτων +αὐτὸν +οἱ +περὶ +αὐτὸν +σὺν +τοῖς +δώδεκα +τὰς +παραβολάς. +καὶ +ἔλεγεν +αὐτοῖς +Ὑμῖν +δέδοται +τὸ +μυστήριον +τῆς +βασιλείας +τοῦ +Θεοῦ· +δὲ +ἐκείνοις +τοῖς +ἔξω +ἐν +παραβολαῖς +τὰ +πάντα +γίνεται, +ἵνα +βλέποντες +βλέπωσιν +καὶ +μὴ +ἴδωσιν, +καὶ +ἀκούοντες +ἀκούωσιν +καὶ +μὴ +συνιῶσιν, +μή +ποτε +ἐπιστρέψωσιν +καὶ +ἀφεθῇ +αὐτοῖς. +καὶ +λέγει +αὐτοῖς +Οὐκ +οἴδατε +τὴν +παραβολὴν +ταύτην, +καὶ +πῶς +πάσας +τὰς +παραβολὰς +γνώσεσθε; +ὁ +σπείρων +τὸν +λόγον +σπείρει. +δέ +οὗτοι +εἰσιν +οἱ +παρὰ +τὴν +ὁδὸν +ὅπου +σπείρεται +ὁ +λόγος, +καὶ +ὅταν +ἀκούσωσιν +εὐθὺς +ἔρχεται +ὁ +Σατανᾶς +καὶ +αἴρει +τὸν +λόγον +τὸν +ἐσπαρμένον +εἰς +αὐτούς. +καὶ +εἰσιν +ὁμοίως +οἱ +ἐπὶ +τὰ +πετρώδη +σπειρόμενοι, +οὗτοί +οἳ +ὅταν +ἀκούσωσιν +τὸν +λόγον +εὐθὺς +μετὰ +χαρᾶς +λαμβάνουσιν +αὐτόν, +καὶ +οὐκ +ἔχουσιν +ῥίζαν +ἐν +ἑαυτοῖς +ἀλλὰ +πρόσκαιροί +εἰσιν, +εἶτα +γενομένης +θλίψεως +ἢ +διωγμοῦ +διὰ +τὸν +λόγον +εὐθὺς +σκανδαλίζονται. +καὶ +ἄλλοι +εἰσὶν +οἱ +εἰς +τὰς +ἀκάνθας +σπειρόμενοι· +οὗτοί +εἰσιν +οἱ +τὸν +λόγον +ἀκούσαντες, +καὶ +αἱ +μέριμναι +τοῦ +αἰῶνος +καὶ +ἡ +ἀπάτη +τοῦ +πλούτου +καὶ +αἱ +περὶ +τὰ +λοιπὰ +ἐπιθυμίαι +εἰσπορευόμεναι +συνπνίγουσιν +τὸν +λόγον, +καὶ +ἄκαρπος +γίνεται. +καὶ +εἰσιν +οἱ +ἐπὶ +τὴν +γῆν +τὴν +καλὴν +σπαρέντες, +ἐκεῖνοί +οἵτινες +ἀκούουσιν +τὸν +λόγον +καὶ +παραδέχονται +καὶ +καρποφοροῦσιν +ἐν +τριάκοντα +καὶ +ἐν +ἑξήκοντα +καὶ +ἐν +ἑκατόν. +Καὶ +ἔλεγεν +αὐτοῖς +ὅτι +Μήτι +ἔρχεται +ὁ +λύχνος +ἵνα +ὑπὸ +τὸν +μόδιον +τεθῇ +ἢ +ὑπὸ +τὴν +κλίνην; +οὐχ +ἵνα +ἐπὶ +τὴν +λυχνίαν +τεθῇ; +γάρ +οὐ +ἐστιν +τι +κρυπτὸν, +ἐὰν +μὴ +ἵνα +φανερωθῇ· +οὐδὲ +ἐγένετο +ἀπόκρυφον, +ἀλλ’ +ἵνα +ἔλθῃ +εἰς +φανερόν. +εἴ +τις +ἔχει +ὦτα +ἀκούειν, +ἀκουέτω. +Καὶ +ἔλεγεν +αὐτοῖς +Βλέπετε +τί +ἀκούετε. +ἐν +ᾧ +μέτρῳ +μετρεῖτε +μετρηθήσεται +ὑμῖν, +καὶ +προστεθήσεται +ὑμῖν. +γὰρ +ὃς +ἔχει, +δοθήσεται +αὐτῷ· +καὶ +ὃς +οὐκ +ἔχει, +καὶ +ὃ +ἔχει +ἀρθήσεται +ἀπ’ +αὐτοῦ. +Καὶ +ἔλεγεν +Οὕτως +ἐστὶν +ἡ +βασιλεία +τοῦ +Θεοῦ, +ὡς +ἄνθρωπος +βάλῃ +τὸν +σπόρον +ἐπὶ +τῆς +γῆς, +καὶ +καθεύδῃ +καὶ +ἐγείρηται +νύκτα +καὶ +ἡμέραν, +καὶ +ὁ +σπόρος +βλαστᾷ +καὶ +μηκύνηται +ὡς +οὐκ +οἶδεν +αὐτός. +αὐτομάτη +ἡ +γῆ +καρποφορεῖ, +πρῶτον +χόρτον, +εἶτεν +στάχυν, +εἶτεν +πλήρης +σῖτος +ἐν +τῷ +στάχυϊ. +δὲ +ὅταν +παραδοῖ +ὁ +καρπός, +εὐθὺς +ἀποστέλλει +τὸ +δρέπανον, +ὅτι +παρέστηκεν +ὁ +θερισμός. +Καὶ +ἔλεγεν +Πῶς +ὁμοιώσωμεν +τὴν +βασιλείαν +τοῦ +Θεοῦ, +ἢ +ἐν +τίνι +παραβολῇ +αὐτὴν +θῶμεν; +ὡς +κόκκῳ +σινάπεως, +ὃς +ὅταν +σπαρῇ +ἐπὶ +τῆς +γῆς, +μικρότερον +ὂν +πάντων +τῶν +σπερμάτων +τῶν +ἐπὶ +τῆς +γῆς, +καὶ +ὅταν +σπαρῇ, +ἀναβαίνει +καὶ +γίνεται +μεῖζον +πάντων +τῶν +λαχάνων, +καὶ +ποιεῖ +κλάδους +μεγάλους, +ὥστε +δύνασθαι +ὑπὸ +τὴν +σκιὰν +αὐτοῦ +κατασκηνοῖν. +τὰ +πετεινὰ +τοῦ +οὐρανοῦ +Καὶ +τοιαύταις +παραβολαῖς +πολλαῖς +ἐλάλει +αὐτοῖς +τὸν +λόγον, +καθὼς +ἠδύναντο +ἀκούειν· +δὲ +χωρὶς +παραβολῆς +οὐκ +ἐλάλει +αὐτοῖς, +δὲ +κατ’ +ἰδίαν +τοῖς +ἰδίοις +μαθηταῖς +ἐπέλυεν +πάντα. +Καὶ +λέγει +αὐτοῖς +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ὀψίας +γενομένης +Διέλθωμεν +εἰς +τὸ +πέραν. +καὶ +ἀφέντες +τὸν +ὄχλον +παραλαμβάνουσιν +αὐτὸν +ὡς +ἦν +ἐν +τῷ +πλοίῳ, +καὶ +ἄλλα +πλοῖα +ἦν +μετ’ +αὐτοῦ. +καὶ +γίνεται +λαῖλαψ +μεγάλη +ἀνέμου, +καὶ +τὰ +κύματα +ἐπέβαλλεν +εἰς +τὸ +πλοῖον, +ὥστε +ἤδη +γεμίζεσθαι +τὸ +πλοῖον. +καὶ +αὐτὸς +ἦν +ἐν +τῇ +πρύμνῃ +ἐπὶ +τὸ +προσκεφάλαιον +καθεύδων· +καὶ +ἐγείρουσιν +αὐτὸν +καὶ +λέγουσιν +αὐτῷ +Διδάσκαλε, +οὐ +μέλει +σοι +ὅτι +ἀπολλύμεθα; +καὶ +διεγερθεὶς +ἐπετίμησεν +τῷ +ἀνέμῳ +καὶ +εἶπεν +τῇ +θαλάσσῃ +Σιώπα, +πεφίμωσο. +καὶ +ἐκόπασεν +ὁ +ἄνεμος, +καὶ +ἐγένετο +γαλήνη +μεγάλη. +καὶ +εἶπεν +αὐτοῖς +Τί +δειλοί +ἐστε +οὕτως; +πῶς +οὐκ +ἔχετε +πίστιν; +καὶ +ἐφοβήθησαν +φόβον +μέγαν, +καὶ +ἔλεγον +πρὸς +ἀλλήλους +ἄρα +Τίς +οὗτός +ἐστιν, +ὅτι +καὶ +ὁ +ἄνεμος +καὶ +ἡ +θάλασσα +ὑπακούει +αὐτῷ; +Καὶ +ἦλθον +εἰς +τὸ +πέραν +τῆς +θαλάσσης +εἰς +τὴν +χώραν +τῶν +Γερασηνῶν. +καὶ +ἐξελθόντος +αὐτοῦ +ἐκ +τοῦ +πλοίου, +εὐθὺς +ὑπήντησεν +αὐτῷ +ἐκ +τῶν +μνημείων +ἄνθρωπος +ἐν +πνεύματι +ἀκαθάρτῳ, +ὃς +τὴν +κατοίκησιν +εἶχεν +ἐν +τοῖς +μνήμασιν, +καὶ +οὐδὲ +ἁλύσει +οὐκέτι +οὐδεὶς +ἐδύνατο +αὐτὸν +δῆσαι +διὰ +τὸ +αὐτὸν +πολλάκις +πέδαις +καὶ +ἁλύσεσιν +δεδέσθαι, +καὶ +διεσπάσθαι +ὑπ’ +αὐτοῦ +τὰς +ἁλύσεις +καὶ +τὰς +πέδας +συντετρῖφθαι, +καὶ +οὐδεὶς +ἴσχυεν +αὐτὸν +δαμάσαι· +καὶ +διὰ +παντὸς +νυκτὸς +καὶ +ἡμέρας +ἐν +τοῖς +μνήμασιν +καὶ +ἐν +τοῖς +ὄρεσιν +ἦν +κράζων +καὶ +κατακόπτων +ἑαυτὸν +λίθοις. +καὶ +ἰδὼν +τὸν +Ἰησοῦν +ἀπὸ +μακρόθεν +ἔδραμεν +καὶ +προσεκύνησεν +αὐτόν, +καὶ +κράξας +φωνῇ +μεγάλῃ +λέγει +Τί +ἐμοὶ +καὶ +σοί, +Ἰησοῦ +Υἱὲ +τοῦ +Θεοῦ +τοῦ +Ὑψίστου; +ὁρκίζω +σε +τὸν +Θεόν, +μή +με +βασανίσῃς. +γὰρ +ἔλεγεν +αὐτῷ +τὸ +πνεῦμα +τὸ +ἀκάθαρτον +Ἔξελθε +ἐκ +τοῦ +ἀνθρώπου. +καὶ +ἐπηρώτα +αὐτόν +Τί +ὄνομά +σοι; +καὶ +λέγει +αὐτῷ +Λεγιὼν +ὄνομά +μοι, +ὅτι +πολλοί +ἐσμεν. +καὶ +παρεκάλει +αὐτὸν +πολλὰ +ἵνα +μὴ +αὐτὰ +ἀποστείλῃ +ἔξω +τῆς +χώρας. +δὲ +ἦν +ἐκεῖ +πρὸς +τῷ +ὄρει +ἀγέλη +χοίρων +μεγάλη +βοσκομένη· +καὶ +παρεκάλεσαν +αὐτὸν +λέγοντες +Πέμψον +ἡμᾶς +εἰς +τοὺς +χοίρους, +ἵνα +εἰς +αὐτοὺς +εἰσέλθωμεν. +καὶ +ἐπέτρεψεν +αὐτοῖς. +καὶ +ἐξελθόντα +τὰ +πνεύματα +τὰ +ἀκάθαρτα +εἰσῆλθον +εἰς +τοὺς +χοίρους, +καὶ +ὥρμησεν +ἡ +ἀγέλη +κατὰ +τοῦ +κρημνοῦ +εἰς +τὴν +θάλασσαν, +ὡς +δισχίλιοι, +καὶ +ἐπνίγοντο +ἐν +τῇ +θαλάσσῃ. +Καὶ +οἱ +βόσκοντες +αὐτοὺς +ἔφυγον +καὶ +ἀπήγγειλαν +εἰς +τὴν +πόλιν +καὶ +εἰς +τοὺς +ἀγρούς· +καὶ +ἦλθον +ἰδεῖν +τί +ἐστιν +τὸ +γεγονός. +καὶ +ἔρχονται +πρὸς +τὸν +Ἰησοῦν, +καὶ +θεωροῦσιν +τὸν +δαιμονιζόμενον +τὸν +ἐσχηκότα +τὸν +λεγιῶνα, +καθήμενον +ἱματισμένον +καὶ +σωφρονοῦντα, +καὶ +ἐφοβήθησαν. +καὶ +διηγήσαντο +αὐτοῖς +οἱ +ἰδόντες +πῶς +ἐγένετο +τῷ +δαιμονιζομένῳ +καὶ +περὶ +τῶν +χοίρων. +καὶ +ἤρξαντο +παρακαλεῖν +αὐτὸν +ἀπελθεῖν +ἀπὸ +τῶν +ὁρίων +αὐτῶν. +καὶ +ἐμβαίνοντος +αὐτοῦ +εἰς +τὸ +πλοῖον +παρεκάλει +αὐτὸν +ὁ +δαιμονισθεὶς +ἵνα +μετ’ +αὐτοῦ +ᾖ. +καὶ +οὐκ +ἀφῆκεν +αὐτόν, +ἀλλὰ +λέγει +αὐτῷ +Ὕπαγε +εἰς +τὸν +οἶκόν +σου +πρὸς +τοὺς +σούς, +καὶ +ἀπάγγειλον +αὐτοῖς +ὅσα +ὁ +Κύριός +σοι +πεποίηκεν +καὶ +ἠλέησέν +σε. +καὶ +ἀπῆλθεν +καὶ +ἤρξατο +κηρύσσειν +ἐν +τῇ +Δεκαπόλει +ὅσα +ἐποίησεν +αὐτῷ +ὁ +Ἰησοῦς, +καὶ +πάντες +ἐθαύμαζον. +Καὶ +διαπεράσαντος +τοῦ +Ἰησοῦ +ἐν +τῷ +πλοίῳ +πάλιν +εἰς +τὸ +πέραν +συνήχθη +ὄχλος +πολὺς +ἐπ’ +αὐτόν, +καὶ +ἦν +παρὰ +τὴν +θάλασσαν. +καὶ +ἔρχεται +εἷς +τῶν +ἀρχισυναγώγων, +ὀνόματι +Ἰάειρος, +καὶ +ἰδὼν +αὐτὸν +πίπτει +πρὸς +τοὺς +πόδας +αὐτοῦ, +καὶ +παρακαλεῖ +αὐτὸν +πολλὰ +λέγων +ὅτι +Τὸ +θυγάτριόν +μου +ἐσχάτως +ἔχει, +ἵνα +ἐλθὼν +ἐπιθῇς +τὰς +χεῖρας +αὐτῇ, +ἵνα +σωθῇ +καὶ +ζήσῃ. +καὶ +ἀπῆλθεν +μετ’ +αὐτοῦ. +καὶ +ἠκολούθει +αὐτῷ +ὄχλος +πολύς, +καὶ +συνέθλιβον +αὐτόν. +Καὶ +γυνὴ +οὖσα +ἐν +ῥύσει +αἵματος +δώδεκα +ἔτη, +καὶ +πολλὰ +παθοῦσα +ὑπὸ +πολλῶν +ἰατρῶν +καὶ +δαπανήσασα +τὰ +παρ’ +αὐτῆς +πάντα, +καὶ +μηδὲν +ὠφεληθεῖσα +ἀλλὰ +μᾶλλον +εἰς +τὸ +χεῖρον +ἐλθοῦσα, +ἀκούσασα +τὰ +περὶ +τοῦ +Ἰησοῦ, +ἐλθοῦσα +ἐν +τῷ +ὄχλῳ +ὄπισθεν +ἥψατο +τοῦ +ἱματίου +αὐτοῦ· +γὰρ +ἔλεγεν +ὅτι +Ἐὰν +ἅψωμαι +κἂν +τῶν +ἱματίων +αὐτοῦ +σωθήσομαι. +καὶ +εὐθὺς +ἐξηράνθη +ἡ +πηγὴ +τοῦ +αἵματος +αὐτῆς, +καὶ +ἔγνω +τῷ +σώματι +ὅτι +ἴαται +ἀπὸ +τῆς +μάστιγος. +καὶ +εὐθὺς +ὁ +Ἰησοῦς +ἐπιγνοὺς +ἐν +ἑαυτῷ +τὴν +ἐξ +αὐτοῦ +δύναμιν +ἐξελθοῦσαν, +ἐπιστραφεὶς +ἐν +τῷ +ὄχλῳ +ἔλεγεν +Τίς +ἥψατο +μου +τῶν +ἱματίων; +καὶ +ἔλεγον +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ +Βλέπεις +τὸν +ὄχλον +συνθλίβοντά +σε, +καὶ +λέγεις +Τίς +μου +ἥψατο; +καὶ +περιεβλέπετο +ἰδεῖν +τὴν +τοῦτο +ποιήσασαν. +δὲ +ἡ +γυνὴ +φοβηθεῖσα +καὶ +τρέμουσα, +εἰδυῖα +ὃ +γέγονεν +αὐτῇ, +ἦλθεν +καὶ +προσέπεσεν +αὐτῷ +καὶ +εἶπεν +αὐτῷ +πᾶσαν +τὴν +ἀλήθειαν. +δὲ +ὁ +εἶπεν +αὐτῇ +Θυγάτηρ, +ἡ +πίστις +σου +σέσωκέν +σε· +ὕπαγε +εἰς +εἰρήνην, +καὶ +ἴσθι +ὑγιὴς +ἀπὸ +τῆς +μάστιγός +σου. +Ἔτι +αὐτοῦ +λαλοῦντος +ἔρχονται +ἀπὸ +τοῦ +ἀρχισυναγώγου +λέγοντες +ὅτι +Ἠ +θυγάτηρ +σου +ἀπέθανεν· +τί +ἔτι +σκύλλεις +τὸν +διδάσκαλον; +δὲ +ὁ +Ἰησοῦς +παρακούσας +τὸν +λόγον +λαλούμενον +λέγει +τῷ +ἀρχισυναγώγῳ +Μὴ +φοβοῦ, +μόνον +πίστευε. +καὶ +οὐκ +ἀφῆκεν +οὐδένα +μετ’ +αὐτοῦ +συνακολουθῆσαι +εἰ +μὴ +τὸν +Πέτρον +καὶ +Ἰάκωβον +καὶ +Ἰωάνην +τὸν +ἀδελφὸν +Ἰακώβου. +καὶ +ἔρχονται +εἰς +τὸν +οἶκον +τοῦ +ἀρχισυναγώγου, +καὶ +θεωρεῖ +θόρυβον, +καὶ +κλαίοντας +καὶ +ἀλαλάζοντας +πολλά, +καὶ +εἰσελθὼν +λέγει +αὐτοῖς +Τί +θορυβεῖσθε +καὶ +κλαίετε; +τὸ +παιδίον +οὐκ +ἀπέθανεν +ἀλλὰ +καθεύδει. +καὶ +κατεγέλων +αὐτοῦ. +δὲ +αὐτὸς +ἐκβαλὼν +πάντας +παραλαμβάνει +τὸν +πατέρα +τοῦ +παιδίου +καὶ +τὴν +μητέρα +καὶ +τοὺς +μετ’ +αὐτοῦ, +καὶ +εἰσπορεύεται +ὅπου +ἦν +τὸ +παιδίον. +καὶ +κρατήσας +τῆς +χειρὸς +τοῦ +παιδίου +λέγει +αὐτῇ +Ταλιθὰ +κούμ, +ὅ +ἐστιν +μεθερμηνευόμενον +Τὸ +κοράσιον, +σοὶ +λέγω, +ἔγειρε. +καὶ +εὐθὺς +ἀνέστη +τὸ +κοράσιον +καὶ +περιεπάτει· +γὰρ +ἦν +ἐτῶν +δώδεκα. +καὶ +ἐξέστησαν +εὐθὺς +ἐκστάσει +μεγάλῃ. +καὶ +διεστείλατο +αὐτοῖς +πολλὰ +ἵνα +μηδεὶς +γνοῖ +τοῦτο, +καὶ +εἶπεν +δοθῆναι +αὐτῇ +φαγεῖν. +Καὶ +ἐξῆλθεν +ἐκεῖθεν, +καὶ +ἔρχεται +εἰς +τὴν +πατρίδα +αὐτοῦ, +καὶ +ἀκολουθοῦσιν +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ. +καὶ +γενομένου +σαββάτου +ἤρξατο +διδάσκειν +ἐν +τῇ +συναγωγῇ· +καὶ +οἱ +πολλοὶ +ἀκούοντες +ἐξεπλήσσοντο +λέγοντες +Πόθεν +τούτῳ +ταῦτα, +καὶ +τίς +ἡ +σοφία +ἡ +δοθεῖσα +τούτῳ; +καὶ +αἱ +δυνάμεις +τοιαῦται +διὰ +τῶν +χειρῶν +αὐτοῦ +γινόμεναι; +οὐχ +οὗτός +ἐστιν +ὁ +τέκτων, +ὁ +υἱὸς +τῆς +Μαρίας +καὶ +ἀδελφὸς +Ἰακώβου +καὶ +Ἰωσῆτος +καὶ +Ἰούδα +καὶ +Σίμωνος; +καὶ +οὐκ +εἰσὶν +αἱ +ἀδελφαὶ +αὐτοῦ +ὧδε +πρὸς +ἡμᾶς; +καὶ +ἐσκανδαλίζοντο +ἐν +αὐτῷ. +καὶ +ἔλεγεν +αὐτοῖς +ὁ +Ἰησοῦς +ὅτι +Οὐκ +ἔστιν +προφήτης +ἄτιμος +εἰ +μὴ +ἐν +τῇ +πατρίδι +αὐτοῦ +καὶ +ἐν +τοῖς +συγγενεῦσιν +αὐτοῦ +καὶ +ἐν +τῇ +οἰκίᾳ +αὐτοῦ. +καὶ +οὐκ +ἐδύνατο +ἐκεῖ +ποιῆσαι +οὐδεμίαν +δύναμιν, +εἰ +μὴ +ὀλίγοις +ἀρρώστοις +ἐπιθεὶς +τὰς +χεῖρας +ἐθεράπευσεν. +καὶ +ἐθαύμασεν +διὰ +τὴν +ἀπιστίαν +αὐτῶν. +Καὶ +περιῆγεν +τὰς +κώμας +κύκλῳ +διδάσκων. +Καὶ +προσκαλεῖται +τοὺς +δώδεκα, +καὶ +ἤρξατο +αὐτοὺς +ἀποστέλλειν +δύο +δύο, +καὶ +ἐδίδου +αὐτοῖς +ἐξουσίαν +τῶν +πνευμάτων +τῶν +ἀκαθάρτων, +καὶ +παρήγγειλεν +αὐτοῖς +ἵνα +μηδὲν +αἴρωσιν +εἰς +ὁδὸν +εἰ +μὴ +ῥάβδον +μόνον, +μὴ +ἄρτον, +μὴ +πήραν, +μὴ +εἰς +τὴν +ζώνην +χαλκόν, +ἀλλὰ +ὑποδεδεμένους +σανδάλια, +καὶ +μὴ +ἐνδύσησθε +δύο +χιτῶνας. +καὶ +ἔλεγεν +αὐτοῖς +ἐὰν +Ὅπου +εἰσέλθητε +εἰς +οἰκίαν, +ἐκεῖ +μένετε +ἕως +ἂν +ἐξέλθητε +ἐκεῖθεν. +καὶ +ἂν +ὃς +τόπος +μὴ +δέξηται +ὑμᾶς +μηδὲ +ἀκούσωσιν +ὑμῶν, +ἐκπορευόμενοι +ἐκεῖθεν +ἐκτινάξατε +τὸν +χοῦν +τὸν +ὑποκάτω +τῶν +ποδῶν +ὑμῶν +εἰς +μαρτύριον +αὐτοῖς. +Καὶ +ἐξελθόντες +ἐκήρυξαν +ἵνα +μετανοῶσιν, +καὶ +δαιμόνια +πολλὰ +ἐξέβαλλον, +καὶ +ἤλειφον +ἐλαίῳ +πολλοὺς +ἀρρώστους +καὶ +ἐθεράπευον. +Καὶ +ἤκουσεν +ὁ +βασιλεὺς +Ἠρῴδης, +γὰρ +φανερὸν +ἐγένετο +τὸ +ὄνομα +αὐτοῦ, +καὶ +ἔλεγον +ὅτι +Ἰωάνης +ὁ +Βαπτίζων +ἐγήγερται +ἐκ +νεκρῶν, +καὶ +διὰ +τοῦτο +ἐνεργοῦσιν +αἱ +δυνάμεις +ἐν +αὐτῷ. +δὲ +ἄλλοι +ἔλεγον +ὅτι +Ἠλείας +ἐστίν· +δὲ +ἄλλοι +ἔλεγον +ὅτι +προφήτης +ὡς +εἷς +τῶν +προφητῶν. +δὲ +ἀκούσας +ὁ +Ἠρῴδης +ἔλεγεν +Ὃν +ἐγὼ +ἀπεκεφάλισα +Ἰωάνην, +οὗτος +ἠγέρθη. +γὰρ +Αὐτὸς +ὁ +Ἠρῴδης +ἀποστείλας +ἐκράτησεν +τὸν +Ἰωάνην +καὶ +ἔδησεν +αὐτὸν +ἐν +φυλακῇ +διὰ +Ἠρῳδιάδα +τὴν +γυναῖκα +Φιλίππου +τοῦ +ἀδελφοῦ +αὐτοῦ, +ὅτι +αὐτὴν +ἐγάμησεν· +γὰρ +ἔλεγεν +ὁ +Ἰωάνης +τῷ +Ἠρῴδῃ +ὅτι +Οὐκ +ἔξεστίν +σοι +ἔχειν +τὴν +γυναῖκα +τοῦ +ἀδελφοῦ +σου. +δὲ +ἡ +Ἠρῳδιὰς +ἐνεῖχεν +αὐτῷ +καὶ +ἤθελεν +αὐτὸν +ἀποκτεῖναι, +καὶ +οὐκ +ἠδύνατο· +γὰρ +ὁ +Ἠρῴδης +ἐφοβεῖτο +τὸν +Ἰωάνην, +εἰδὼς +αὐτὸν +ἄνδρα +δίκαιον +καὶ +ἅγιον, +καὶ +συνετήρει +αὐτόν, +καὶ +ἀκούσας +αὐτοῦ +πολλὰ +ἠπόρει, +καὶ +ἡδέως +αὐτοῦ +ἤκουεν. +Καὶ +γενομένης +ἡμέρας +εὐκαίρου +ὅτε +Ἠρῴδης +τοῖς +γενεσίοις +αὐτοῦ +δεῖπνον +ἐποίησεν +τοῖς +μεγιστᾶσιν +αὐτοῦ +καὶ +τοῖς +χιλιάρχοις +καὶ +τοῖς +πρώτοις +τῆς +Γαλιλαίας, +καὶ +εἰσελθούσης +τῆς +θυγατρὸς +αὐτῆς +τῆς +Ἠρῳδιάδος +καὶ +ὀρχησαμένης, +ἤρεσεν +τῷ +Ἠρῴδῃ +καὶ +τοῖς +συνανακειμένοις. +δὲ +ὁ +βασιλεὺς +εἶπεν +τῷ +κορασίῳ +Αἴτησόν +με +ἐὰν +ὃ +θέλῃς, +καὶ +δώσω +σοι· +καὶ +ὤμοσεν +αὐτῇ +Ὅτι +ἐάν +με +αἰτήσῃς +δώσω +σοι +ἕως +ἡμίσους +τῆς +βασιλείας +μου. +καὶ +ἐξελθοῦσα +εἶπεν +τῇ +μητρὶ +αὐτῆς +Τί +αἰτήσωμαι; +δὲ +ἡ +εἶπεν +Τὴν +κεφαλὴν +Ἰωάνου +τοῦ +Βαπτίζοντος. +καὶ +εἰσελθοῦσα +εὐθὺς +μετὰ +σπουδῆς +πρὸς +τὸν +βασιλέα +ᾐτήσατο +λέγουσα +Θέλω +ἵνα +ἐξαυτῆς +δῷς +μοι +ἐπὶ +πίνακι +τὴν +κεφαλὴν +Ἰωάνου +τοῦ +Βαπτιστοῦ. +καὶ +περίλυπος +γενόμενος +ὁ +βασιλεὺς +διὰ +τοὺς +ὅρκους +καὶ +τοὺς +ἀνακειμένους +οὐκ +ἠθέλησεν +ἀθετῆσαι +αὐτήν. +καὶ +εὐθὺς +ἀποστείλας +σπεκουλάτορα +ὁ +βασιλεὺς +ἐπέταξεν +ἐνέγκαι +τὴν +κεφαλὴν +αὐτοῦ. +καὶ +ἀπελθὼν +ἀπεκεφάλισεν +αὐτὸν +ἐν +τῇ +φυλακῇ, +καὶ +ἤνεγκεν +τὴν +κεφαλὴν +αὐτοῦ +ἐπὶ +πίνακι +καὶ +ἔδωκεν +αὐτὴν +τῷ +κορασίῳ, +καὶ +τὸ +κοράσιον +ἔδωκεν +αὐτὴν +τῇ +μητρὶ +αὐτῆς. +καὶ +ἀκούσαντες +οἱ +μαθηταὶ +αὐτοῦ +ἦλθαν +καὶ +ἦραν +τὸ +πτῶμα +αὐτοῦ +καὶ +ἔθηκαν +αὐτὸ +ἐν +μνημείῳ. +Καὶ +συνάγονται +οἱ +ἀπόστολοι +πρὸς +τὸν +Ἰησοῦν, +καὶ +ἀπήγγειλαν +αὐτῷ +πάντα +ὅσα +ἐποίησαν +καὶ +ὅσα +ἐδίδαξαν. +καὶ +λέγει +αὐτοῖς +Δεῦτε +ὑμεῖς +αὐτοὶ +κατ’ +ἰδίαν +εἰς +ἔρημον +τόπον +καὶ +ἀναπαύσασθε +ὀλίγον. +γὰρ +ἦσαν +οἱ +ἐρχόμενοι +καὶ +οἱ +ὑπάγοντες +πολλοί, +καὶ +οὐδὲ +φαγεῖν +εὐκαίρουν. +καὶ +ἀπῆλθον +ἐν +τῷ +πλοίῳ +εἰς +ἔρημον +τόπον +κατ’ +ἰδίαν. +καὶ +εἶδον +αὐτοὺς +ὑπάγοντας +καὶ +ἐπέγνωσαν +πολλοί, +καὶ +πεζῇ +ἀπὸ +πασῶν +τῶν +πόλεων +συνέδραμον +ἐκεῖ +καὶ +προῆλθον +αὐτούς. +Καὶ +ἐξελθὼν +εἶδεν +πολὺν +ὄχλον, +καὶ +ἐσπλαγχνίσθη +ἐπ’ +αὐτοὺς +ὅτι +ἦσαν +ὡς +πρόβατα +μὴ +ἔχοντα +ποιμένα, +καὶ +ἤρξατο +διδάσκειν +αὐτοὺς +πολλά. +Καὶ +ἤδη +ὥρας +πολλῆς +γενομένης +προσελθόντες +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ +ἔλεγον +ὅτι +Ἔρημός +ἐστιν +ὁ +τόπος, +καὶ +ἤδη +ὥρα +πολλή· +ἀπόλυσον +αὐτούς, +ἵνα +ἀπελθόντες +εἰς +τοὺς +κύκλῳ +ἀγροὺς +καὶ +κώμας +ἀγοράσωσιν +ἑαυτοῖς +τί +φάγωσιν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Δότε +αὐτοῖς +ὑμεῖς +φαγεῖν. +καὶ +λέγουσιν +αὐτῷ +Ἀπελθόντες +ἀγοράσωμεν +δηναρίων +διακοσίων +ἄρτους, +καὶ +δώσομεν +αὐτοῖς +φαγεῖν; +δὲ +ὁ +λέγει +αὐτοῖς +Πόσους +ἄρτους; +ἔχετε +ὑπάγετε +ἴδετε. +καὶ +γνόντες +λέγουσιν +Πέντε, +καὶ +δύο +ἰχθύας. +καὶ +ἐπέταξεν +αὐτοῖς +ἀνακλιθῆναι +πάντας +συμπόσια +συμπόσια +ἐπὶ +τῷ +χλωρῷ +χόρτῳ. +καὶ +ἀνέπεσαν +πρασιαὶ +πρασιαὶ +κατὰ +ἑκατὸν +καὶ +κατὰ +πεντήκοντα. +καὶ +λαβὼν +τοὺς +πέντε +ἄρτους +καὶ +τοὺς +δύο +ἰχθύας +ἀναβλέψας +εἰς +τὸν +οὐρανὸν +εὐλόγησεν +καὶ +κατέκλασεν +τοὺς +ἄρτους +καὶ +ἐδίδου +τοῖς +μαθηταῖς +ἵνα +παρατιθῶσιν +αὐτοῖς, +καὶ +τοὺς +δύο +ἰχθύας +ἐμέρισεν +πᾶσιν. +καὶ +ἔφαγον +πάντες +καὶ +ἐχορτάσθησαν· +καὶ +ἦραν +κλάσματα +δώδεκα +κοφίνων +πληρώματα +καὶ +ἀπὸ +τῶν +ἰχθύων. +καὶ +ἦσαν +οἱ +φαγόντες +τοὺς +ἄρτους +πεντακισχίλιοι +ἄνδρες. +Καὶ +εὐθὺς +ἠνάγκασεν +τοὺς +μαθητὰς +αὐτοῦ +ἐμβῆναι +εἰς +τὸ +πλοῖον +καὶ +προάγειν +εἰς +τὸ +πέραν +πρὸς +Βηθσαϊδάν, +ἕως +αὐτὸς +ἀπολύει +τὸν +ὄχλον. +καὶ +ἀποταξάμενος +αὐτοῖς +ἀπῆλθεν +εἰς +τὸ +ὄρος +προσεύξασθαι. +καὶ +ὀψίας +γενομένης +ἦν +τὸ +πλοῖον +ἐν +μέσῳ +τῆς +θαλάσσης, +καὶ +αὐτὸς +μόνος +ἐπὶ +τῆς +γῆς. +καὶ +ἰδὼν +αὐτοὺς +βασανιζομένους +ἐν +τῷ +ἐλαύνειν, +γὰρ +ἦν +ὁ +ἄνεμος +ἐναντίος +αὐτοῖς, +περὶ +τετάρτην +φυλακὴν +τῆς +νυκτὸς +ἔρχεται +πρὸς +αὐτοὺς +περιπατῶν +ἐπὶ +τῆς +θαλάσσης· +καὶ +ἤθελεν +παρελθεῖν +αὐτούς. +δὲ +οἱ +ἰδόντες +αὐτὸν +ἐπὶ +τῆς +θαλάσσης +περιπατοῦντα +ἔδοξαν +ὅτι +φάντασμά +ἐστιν, +καὶ +ἀνέκραξαν· +γὰρ +πάντες +αὐτὸν +εἶδαν +καὶ +ἐταράχθησαν. +δὲ +ὁ +εὐθὺς +ἐλάλησεν +μετ’ +αὐτῶν, +καὶ +λέγει +αὐτοῖς +Θαρσεῖτε, +ἐγώ +εἰμι, +μὴ +φοβεῖσθε. +καὶ +ἀνέβη +πρὸς +αὐτοὺς +εἰς +τὸ +πλοῖον, +καὶ +ἐκόπασεν +ὁ +ἄνεμος· +καὶ +λίαν +ἐκ +περισσοῦ +ἐν +ἑαυτοῖς +ἐξίσταντο· +γὰρ +οὐ +συνῆκαν +ἐπὶ +τοῖς +ἄρτοις, +ἀλλ’ +ἦν +πεπωρωμένη. +αὐτῶν +ἡ +καρδία +Καὶ +διαπεράσαντες +ἐπὶ +τὴν +γῆν +ἦλθον +εἰς +Γεννησαρὲτ +καὶ +προσωρμίσθησαν. +καὶ +ἐξελθόντων +αὐτῶν +ἐκ +τοῦ +πλοίου +εὐθὺς +ἐπιγνόντες +αὐτὸν +περιέδραμον +ὅλην +τὴν +χώραν +ἐκείνην +καὶ +ἤρξαντο +ἐπὶ +τοῖς +κραβάττοις +τοὺς +κακῶς +ἔχοντας +περιφέρειν, +ὅπου +ἤκουον +ὅτι +ἐστίν. +καὶ +ἂν +ὅπου +εἰσεπορεύετο +εἰς +κώμας +ἢ +εἰς +πόλεις +ἢ +εἰς +ἀγροὺς, +ἐν +ταῖς +ἀγοραῖς +ἐτίθεσαν +τοὺς +ἀσθενοῦντας, +καὶ +παρεκάλουν +αὐτὸν +ἵνα +κἂν +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ +ἅψωνται· +καὶ +ἂν +ὅσοι +ἥψαντο +αὐτοῦ +ἐσῴζοντο. +Καὶ +συνάγονται +πρὸς +αὐτὸν +οἱ +Φαρισαῖοι +καί +τινες +τῶν +γραμματέων +ἐλθόντες +ἀπὸ +Ἱεροσολύμων. +καὶ +ἰδόντες +τινὰς +τῶν +μαθητῶν +αὐτοῦ +ὅτι +κοιναῖς +χερσίν, +τοῦτ’ +ἔστιν +ἀνίπτοις, +ἐσθίουσιν +τοὺς +ἄρτους,— +γὰρ +οἱ +Φαρισαῖοι +καὶ +πάντες +οἱ +Ἰουδαῖοι +ἐὰν +μὴ +πυγμῇ +νίψωνται +τὰς +χεῖρας +οὐκ +ἐσθίουσιν, +κρατοῦντες +τὴν +παράδοσιν +τῶν +πρεσβυτέρων, +καὶ +ἀπ’ +ἀγορᾶς +ἐὰν +μὴ +ῥαντίσωνται +οὐκ +ἐσθίουσιν, +καὶ +ἄλλα +πολλά +ἐστιν +ἃ +παρέλαβον +κρατεῖν, +βαπτισμοὺς +ποτηρίων +καὶ +ξεστῶν +καὶ +χαλκίων,— +καὶ +ἐπερωτῶσιν +αὐτὸν +οἱ +Φαρισαῖοι +καὶ +οἱ +γραμματεῖς +Διὰ +τί +οὐ +περιπατοῦσιν +οἱ +μαθηταί +σου +κατὰ +τὴν +παράδοσιν +τῶν +πρεσβυτέρων, +ἀλλὰ +κοιναῖς +χερσὶν +ἐσθίουσιν +τὸν +ἄρτον; +δὲ +ὁ +εἶπεν +αὐτοῖς +Καλῶς +ἐπροφήτευσεν +Ἠσαΐας +περὶ +ὑμῶν +τῶν +ὑποκριτῶν, +ὡς +γέγραπται +ὅτι +Οὗτος +ὁ +λαὸς +τοῖς +χείλεσίν +με +τιμᾷ, +δὲ +ἡ +καρδία +αὐτῶν +πόρρω +ἀπέχει +ἀπ’ +ἐμοῦ· +δὲ +μάτην +σέβονταί +με, +διδάσκοντες +διδασκαλίας +ἐντάλματα +ἀνθρώπων· +ἀφέντες +τὴν +ἐντολὴν +τοῦ +Θεοῦ +κρατεῖτε +τὴν +παράδοσιν +τῶν +ἀνθρώπων. +καὶ +ἔλεγεν +αὐτοῖς +Καλῶς +ἀθετεῖτε +τὴν +ἐντολὴν +τοῦ +Θεοῦ, +ἵνα +τὴν +παράδοσιν +ὑμῶν +τηρήσητε. +γὰρ +Μωϋσῆς +εἶπεν +Τίμα +τὸν +πατέρα +σου +καὶ +τὴν +μητέρα +σου, +καί +Ὁ +κακολογῶν +πατέρα +ἢ +μητέρα +θανάτῳ +τελευτάτω. +δὲ +ὑμεῖς +λέγετε +Ἐὰν +εἴπῃ +ἄνθρωπος +τῷ +πατρὶ +ἢ +τῇ +μητρί +Κορβᾶν, +ὅ +ἐστιν +Δῶρον, +ἐὰν +ὃ +ἐξ +ἐμοῦ +ὠφεληθῇς, +οὐκέτι +ἀφίετε +αὐτὸν +οὐδὲν +ποιῆσαι +τῷ +πατρὶ +ἢ +τῇ +μητρί, +ἀκυροῦντες +τὸν +λόγον +τοῦ +Θεοῦ +τῇ +παραδόσει +ὑμῶν +ᾗ +παρεδώκατε· +καὶ +παρόμοια +τοιαῦτα +πολλὰ +ποιεῖτε. +Καὶ +προσκαλεσάμενος +πάλιν +τὸν +ὄχλον +ἔλεγεν +αὐτοῖς +Ἀκούσατέ +μου +πάντες +καὶ +σύνετε. +οὐδέν +ἐστιν +ἔξωθεν +τοῦ +ἀνθρώπου +εἰσπορευόμενον +εἰς +αὐτὸν +ὃ +δύναται +κοινῶσαι +αὐτόν· +ἀλλὰ +τὰ +ἐκ +τοῦ +ἀνθρώπου +ἐκπορευόμενά +ἐστιν +τὰ +κοινοῦντα +τὸν +ἄνθρωπον. +Καὶ +ὅτε +εἰσῆλθεν +εἰς +οἶκον +ἀπὸ +τοῦ +ὄχλου, +ἐπηρώτων +αὐτὸν +οἱ +μαθηταὶ +αὐτοῦ +τὴν +παραβολήν. +καὶ +λέγει +αὐτοῖς +Οὕτως +καὶ +ὑμεῖς +ἀσύνετοί +ἐστε; +οὐ +νοεῖτε +ὅτι +πᾶν +τὸ +ἔξωθεν +εἰσπορευόμενον +εἰς +τὸν +ἄνθρωπον +οὐ +δύναται +αὐτὸν +κοινῶσαι, +ὅτι +οὐκ +εἰσπορεύεται +εἰς +αὐτοῦ +τὴν +καρδίαν +ἀλλ’ +εἰς +τὴν +κοιλίαν, +καὶ +εἰς +τὸν +ἀφεδρῶνα +ἐκπορεύεται, +καθαρίζων +πάντα +τὰ +βρώματα; +δὲ +ἔλεγεν +ὅτι +Τὸ +ἐκ +τοῦ +ἀνθρώπου +ἐκπορευόμενον, +ἐκεῖνο +κοινοῖ +τὸν +ἄνθρωπον. +γὰρ +ἔσωθεν +ἐκ +τῆς +καρδίας +τῶν +ἀνθρώπων +οἱ +διαλογισμοὶ +οἱ +κακοὶ +ἐκπορεύονται, +πορνεῖαι, +κλοπαί, +φόνοι, +μοιχεῖαι, +πλεονεξίαι, +πονηρίαι, +δόλος, +ἀσέλγεια, +ὀφθαλμὸς +πονηρός, +βλασφημία, +ὑπερηφανία, +ἀφροσύνη· +πάντα +ταῦτα +τὰ +πονηρὰ +ἔσωθεν +ἐκπορεύεται +καὶ +κοινοῖ +τὸν +ἄνθρωπον. +δὲ +Ἐκεῖθεν +ἀναστὰς +ἀπῆλθεν +εἰς +τὰ +ὅρια +Τύρου. +Καὶ +εἰσελθὼν +εἰς +οἰκίαν +οὐδένα +γνῶναι, +ἤθελεν +καὶ +οὐκ +ἠδυνάσθη +λαθεῖν· +ἀλλ’ +εὐθὺς +ἀκούσασα +περὶ +αὐτοῦ, +γυνὴ +ἧς +τὸ +θυγάτριον +αὐτῆς +εἶχεν +πνεῦμα +ἀκάθαρτον, +ἐλθοῦσα +προσέπεσεν +πρὸς +τοὺς +πόδας +αὐτοῦ· +δὲ +ἡ +γυνὴ +ἦν +Ἑλληνίς, +Συροφοινίκισσα +τῷ +γένει· +καὶ +ἠρώτα +αὐτὸν +ἵνα +τὸ +δαιμόνιον +ἐκβάλῃ +ἐκ +τῆς +θυγατρὸς +αὐτῆς. +καὶ +ἔλεγεν +αὐτῇ +Ἄφες +πρῶτον +χορτασθῆναι +τὰ +τέκνα· +γάρ +οὐ +ἐστιν +καλόν +λαβεῖν +τὸν +ἄρτον +τῶν +τέκνων +καὶ +τοῖς +κυναρίοις +βαλεῖν. +δὲ +ἡ +ἀπεκρίθη +καὶ +λέγει +αὐτῷ +Ναί, +Κύριε· +καὶ +τὰ +κυνάρια +ὑποκάτω +τῆς +τραπέζης +ἐσθίουσιν +ἀπὸ +τῶν +ψιχίων +τῶν +παιδίων. +καὶ +εἶπεν +αὐτῇ +Διὰ +τοῦτον +τὸν +λόγον +ὕπαγε, +ἐξελήλυθεν +ἐκ +τῆς +θυγατρός +σου +τὸ +δαιμόνιον. +καὶ +ἀπελθοῦσα +εἰς +τὸν +οἶκον +αὐτῆς +εὗρεν +τὸ +παιδίον +βεβλημένον +ἐπὶ +τὴν +κλίνην +καὶ +τὸ +δαιμόνιον +ἐξεληλυθός. +Καὶ +πάλιν +ἐξελθὼν +ἐκ +τῶν +ὁρίων +Τύρου +ἦλθεν +διὰ +Σιδῶνος +εἰς +τὴν +θάλασσαν +τῆς +Γαλιλαίας +ἀνὰ +μέσον +τῶν +ὁρίων +Δεκαπόλεως. +Καὶ +φέρουσιν +αὐτῷ +κωφὸν +καὶ +μογιλάλον, +καὶ +παρακαλοῦσιν +αὐτὸν +ἵνα +ἐπιθῇ +αὐτῷ +τὴν +χεῖρα. +καὶ +ἀπολαβόμενος +αὐτὸν +ἀπὸ +τοῦ +ὄχλου +κατ’ +ἰδίαν +ἔβαλεν +τοὺς +δακτύλους +αὐτοῦ +εἰς +τὰ +ὦτα +αὐτοῦ +καὶ +πτύσας +ἥψατο +τῆς +γλώσσης +αὐτοῦ, +καὶ +ἀναβλέψας +εἰς +τὸν +οὐρανὸν +ἐστέναξεν, +καὶ +λέγει +αὐτῷ +Ἐφφαθά, +ὅ +ἐστιν +Διανοίχθητι. +καὶ +ἠνοίγησαν +αὐτοῦ +αἱ +ἀκοαί, +καὶ +εὐθὺς +ἐλύθη +ὁ +δεσμὸς +τῆς +γλώσσης +αὐτοῦ, +καὶ +ἐλάλει +ὀρθῶς. +καὶ +διεστείλατο +αὐτοῖς +ἵνα +μηδενὶ +λέγωσιν· +δὲ +ὅσον +αὐτοῖς +διεστέλλετο, +αὐτοὶ +μᾶλλον +περισσότερον +ἐκήρυσσον. +καὶ +ὑπερπερισσῶς +ἐξεπλήσσοντο +λέγοντες +Καλῶς +πάντα +πεποίηκεν, +καὶ +ποιεῖ +τοὺς +κωφοὺς +ἀκούειν +καὶ +ἀλάλους +λαλεῖν. +Ἐν +ἐκείναις +ταῖς +ἡμέραις +πάλιν +πολλοῦ +ὄχλου +ὄντος +καὶ +μὴ +ἐχόντων +τί +φάγωσιν, +προσκαλεσάμενος +τοὺς +μαθητὰς +λέγει +αὐτοῖς +Σπλαγχνίζομαι +ἐπὶ +τὸν +ὄχλον, +ὅτι +ἤδη +ἡμέραι +τρεῖς +προσμένουσίν +μοι +καὶ +οὐκ +ἔχουσιν +τί +φάγωσιν· +καὶ +ἐὰν +ἀπολύσω +αὐτοὺς +νήστεις +εἰς +οἶκον +αὐτῶν, +ἐκλυθήσονται +ἐν +τῇ +ὁδῷ· +καί +τινες +αὐτῶν +ἀπὸ +μακρόθεν +εἰσίν. +καὶ +ἀπεκρίθησαν +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ +ὅτι +Πόθεν +δυνήσεταί +τις +τούτους +ὧδε +χορτάσαι +ἄρτων +ἐπ’ +ἐρημίας; +καὶ +ἠρώτα +αὐτούς +Πόσους +ἄρτους; +ἔχετε +δὲ +οἱ +εἶπαν +Ἑπτά. +καὶ +παραγγέλλει +τῷ +ὄχλῳ +ἀναπεσεῖν +ἐπὶ +τῆς +γῆς· +καὶ +λαβὼν +τοὺς +ἑπτὰ +ἄρτους +εὐχαριστήσας +ἔκλασεν +καὶ +ἐδίδου +τοῖς +μαθηταῖς +αὐτοῦ +ἵνα +παρατιθῶσιν, +καὶ +παρέθηκαν +τῷ +ὄχλῳ. +καὶ +εἶχαν +ἰχθύδια +ὀλίγα· +καὶ +εὐλογήσας +αὐτὰ +εἶπεν +καὶ +ταῦτα +παρατιθέναι. +καὶ +ἔφαγον +καὶ +ἐχορτάσθησαν, +καὶ +ἦραν +περισσεύματα +κλασμάτων +ἑπτὰ +σπυρίδας. +δὲ +ἦσαν +ὡς +τετρακισχίλιοι. +καὶ +ἀπέλυσεν +αὐτούς. +Καὶ +εὐθὺς +ἐμβὰς +εἰς +τὸ +πλοῖον +μετὰ +τῶν +μαθητῶν +αὐτοῦ +ἦλθεν +εἰς +τὰ +μέρη +Δαλμανουθά. +Καὶ +ἐξῆλθον +οἱ +Φαρισαῖοι +καὶ +ἤρξαντο +συνζητεῖν +αὐτῷ, +ζητοῦντες +παρ’ +αὐτοῦ +σημεῖον +ἀπὸ +τοῦ +οὐρανοῦ, +πειράζοντες +αὐτόν. +καὶ +ἀναστενάξας +τῷ +πνεύματι +αὐτοῦ +λέγει +Τί +ἡ +γενεὰ +αὕτη +ζητεῖ +σημεῖον; +ἀμὴν +λέγω +ὑμῖν, +εἰ +δοθήσεται +τῇ +γενεᾷ +ταύτῃ +σημεῖον. +καὶ +ἀφεὶς +αὐτοὺς +πάλιν +ἐμβὰς +ἀπῆλθεν +εἰς +τὸ +πέραν. +Καὶ +ἐπελάθοντο +λαβεῖν +ἄρτους, +καὶ +εἰ +μὴ +ἕνα +ἄρτον +οὐκ +εἶχον +μεθ’ +ἑαυτῶν +ἐν +τῷ +πλοίῳ. +καὶ +διεστέλλετο +αὐτοῖς +λέγων +Ὁρᾶτε, +βλέπετε +ἀπὸ +τῆς +ζύμης +τῶν +Φαρισαίων +καὶ +τῆς +ζύμης +Ἠρῴδου. +καὶ +διελογίζοντο +πρὸς +ἀλλήλους +ὅτι +ἄρτους +οὐκ +ἔχουσιν. +καὶ +γνοὺς +λέγει +αὐτοῖς +Τί +διαλογίζεσθε +ὅτι +ἄρτους +οὐκ +ἔχετε; +οὔπω +νοεῖτε +οὐδὲ +συνίετε; +πεπωρωμένην +ἔχετε +τὴν +καρδίαν +ὑμῶν; +ὀφθαλμοὺς +ἔχοντες +οὐ +βλέπετε, +καὶ +ὦτα +ἔχοντες +οὐκ +ἀκούετε; +καὶ +οὐ +μνημονεύετε, +ὅτε +τοὺς +πέντε +ἄρτους +ἔκλασα +εἰς +τοὺς +πεντακισχιλίους, +πόσους +κοφίνους +κλασμάτων +πλήρεις +ἤρατε; +λέγουσιν +αὐτῷ +Δώδεκα. +ὅτε +τοὺς +ἑπτὰ +εἰς +τοὺς +τετρακισχιλίους, +πόσων +σπυρίδων +πληρώματα +κλασμάτων +ἤρατε; +καὶ +λέγουσιν +Ἑπτά. +καὶ +ἔλεγεν +αὐτοῖς +Οὔπω +συνίετε; +Καὶ +ἔρχονται +εἰς +Βηθσαϊδάν. +Καὶ +φέρουσιν +αὐτῷ +τυφλὸν, +καὶ +παρακαλοῦσιν +αὐτὸν +ἵνα +αὐτοῦ +ἅψηται. +καὶ +ἐπιλαβόμενος +τῆς +χειρὸς +τοῦ +τυφλοῦ +ἐξήνεγκεν +αὐτὸν +ἔξω +τῆς +κώμης, +καὶ +πτύσας +εἰς +τὰ +ὄμματα +αὐτοῦ, +ἐπιθεὶς +τὰς +χεῖρας +αὐτῷ, +ἐπηρώτα +αὐτόν +Εἴ +τι +βλέπεις; +καὶ +ἀναβλέψας +ἔλεγεν +Βλέπω +τοὺς +ἀνθρώπους, +ὅτι +ὡς +δένδρα +περιπατοῦντας. +ὁρῶ +εἶτα +πάλιν +ἐπέθηκεν +τὰς +χεῖρας +ἐπὶ +τοὺς +ὀφθαλμοὺς +αὐτοῦ, +καὶ +διέβλεψεν +καὶ +ἀπεκατέστη, +καὶ +ἐνέβλεπεν +τηλαυγῶς +ἅπαντα. +καὶ +ἀπέστειλεν +αὐτὸν +εἰς +οἶκον +αὐτοῦ +λέγων +Μηδὲ +εἰς +τὴν +κώμην +εἰσέλθῃς. +Καὶ +ἐξῆλθεν +ὁ +Ἰησοῦς +καὶ +οἱ +μαθηταὶ +αὐτοῦ +εἰς +τὰς +κώμας +Καισαρίας +τῆς +Φιλίππου· +καὶ +ἐν +τῇ +ὁδῷ +ἐπηρώτα +τοὺς +μαθητὰς +αὐτοῦ +λέγων +αὐτοῖς +Τίνα +με +εἶναι; +λέγουσιν +οἱ +ἄνθρωποι +δὲ +οἱ +εἶπαν +αὐτῷ +λέγοντες +ὅτι +Ἰωάνην +τὸν +Βαπτιστήν, +καὶ +ἄλλοι +Ἠλείαν, +δὲ +ἄλλοι +ὅτι +εἷς +τῶν +προφητῶν. +καὶ +αὐτὸς +ἐπηρώτα +αὐτούς +δὲ +Ὑμεῖς +τίνα +με +εἶναι; +λέγετε +ἀποκριθεὶς +ὁ +Πέτρος +λέγει +αὐτῷ +Σὺ +εἶ +ὁ +Χριστός. +καὶ +ἐπετίμησεν +αὐτοῖς +ἵνα +μηδενὶ +λέγωσιν +περὶ +αὐτοῦ. +Καὶ +ἤρξατο +διδάσκειν +αὐτοὺς +ὅτι +δεῖ +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +πολλὰ +παθεῖν, +καὶ +ἀποδοκιμασθῆναι +ὑπὸ +τῶν +πρεσβυτέρων +καὶ +τῶν +ἀρχιερέων +καὶ +τῶν +γραμματέων +καὶ +ἀποκτανθῆναι +καὶ +μετὰ +τρεῖς +ἡμέρας +ἀναστῆναι· +καὶ +παρρησίᾳ +τὸν +λόγον +ἐλάλει. +καὶ +ὁ +Πέτρος +προσλαβόμενος +αὐτὸν +ἤρξατο +ἐπιτιμᾶν +αὐτῷ. +δὲ +ὁ +ἐπιστραφεὶς +καὶ +ἰδὼν +τοὺς +μαθητὰς +αὐτοῦ +ἐπετίμησεν +Πέτρῳ +καὶ +λέγει +Ὕπαγε +ὀπίσω +μου, +Σατανᾶ, +ὅτι +οὐ +φρονεῖς +τὰ +τοῦ +Θεοῦ +ἀλλὰ +τὰ +τῶν +ἀνθρώπων. +Καὶ +προσκαλεσάμενος +τὸν +ὄχλον +σὺν +τοῖς +μαθηταῖς +αὐτοῦ +εἶπεν +αὐτοῖς +Εἴ +τις +θέλει +ὀπίσω +μου +ἐλθεῖν, +ἀπαρνησάσθω +ἑαυτὸν +καὶ +ἀράτω +τὸν +σταυρὸν +αὐτοῦ, +καὶ +ἀκολουθείτω +μοι. +γὰρ +ἐὰν +ὃς +θέλῃ +τὴν +ψυχὴν +αὐτοῦ +σῶσαι, +ἀπολέσει +αὐτήν· +δ’ +ἂν +ὃς +ἀπολέσει +τὴν +ψυχὴν +αὐτοῦ +ἕνεκεν +ἐμοῦ +καὶ +τοῦ +εὐαγγελίου, +σώσει +αὐτήν. +γὰρ +τί +ὠφελεῖ +ἄνθρωπον +κερδῆσαι +τὸν +κόσμον +ὅλον +καὶ +ζημιωθῆναι +τὴν +ψυχὴν +αὐτοῦ; +γὰρ +τί +δοῖ +ἄνθρωπος +ἀντάλλαγμα +τῆς +ψυχῆς +αὐτοῦ; +γὰρ +ἐὰν +ὃς +ἐπαισχυνθῇ +με +καὶ +τοὺς +ἐμοὺς +λόγους +ἐν +τῇ +γενεᾷ +ταύτῃ +τῇ +μοιχαλίδι +καὶ +ἁμαρτωλῷ, +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐπαισχυνθήσεται +αὐτὸν, +ὅταν +ἔλθῃ +ἐν +τῇ +δόξῃ +τοῦ +Πατρὸς +αὐτοῦ +μετὰ +τῶν +ἀγγέλων +τῶν +ἁγίων. +καὶ +ἔλεγεν +αὐτοῖς +Ἀμὴν +λέγω +ὑμῖν +ὅτι +εἰσίν +τινες +τῶν +ὧδε +ἑστηκότων +οἵτινες +οὐ +μὴ +γεύσωνται +θανάτου +ἕως +ἂν +ἴδωσιν +τὴν +βασιλείαν +τοῦ +Θεοῦ +ἐληλυθυῖαν +ἐν +δυνάμει. +Καὶ +μετὰ +ἡμέρας +ἓξ +παραλαμβάνει +ὁ +Ἰησοῦς +τὸν +Πέτρον +καὶ +τὸν +Ἰάκωβον +καὶ +Ἰωάνην, +καὶ +ἀναφέρει +αὐτοὺς +εἰς +ὄρος +ὑψηλὸν +κατ’ +ἰδίαν +μόνους. +καὶ +μετεμορφώθη +ἔμπροσθεν +αὐτῶν, +καὶ +τὰ +ἱμάτια +αὐτοῦ +ἐγένετο +στίλβοντα +λευκὰ +λίαν, +οἷα +γναφεὺς +ἐπὶ +τῆς +γῆς +οὐ +δύναται +οὕτως +λευκᾶναι. +καὶ +ὤφθη +αὐτοῖς +Ἠλείας +σὺν +Μωϋσεῖ, +καὶ +ἦσαν +συνλαλοῦντες +τῷ +Ἰησοῦ. +καὶ +ἀποκριθεὶς +ὁ +Πέτρος +λέγει +τῷ +Ἰησοῦ +Ῥαββεί, +καλόν +ἐστιν +ἡμᾶς +ὧδε +εἶναι, +καὶ +ποιήσωμεν +τρεῖς +σκηνάς, +σοὶ +μίαν +καὶ +Μωϋσεῖ +μίαν +καὶ +Ἠλείᾳ +μίαν. +γὰρ +οὐ +ᾔδει +τί +ἀποκριθῇ· +γὰρ +ἔκφοβοι +ἐγένοντο. +καὶ +ἐγένετο +νεφέλη +ἐπισκιάζουσα +αὐτοῖς, +καὶ +ἐγένετο +φωνὴ +ἐκ +τῆς +νεφέλης +Οὗτός +ἐστιν +ὁ +Υἱός +μου +ὁ +ἀγαπητός, +ἀκούετε +αὐτοῦ. +καὶ +ἐξάπινα +περιβλεψάμενοι +οὐκέτι +οὐδένα +εἶδον +ἀλλὰ +τὸν +Ἰησοῦν +μόνον +μεθ’ +ἑαυτῶν. +Καὶ +καταβαινόντων +αὐτῶν +ἐκ +τοῦ +ὄρους +διεστείλατο +αὐτοῖς +ἵνα +μηδενὶ +ἃ +εἶδον +διηγήσωνται, +εἰ +μὴ +ὅταν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐκ +νεκρῶν +ἀναστῇ. +καὶ +τὸν +λόγον +ἐκράτησαν +πρὸς +ἑαυτοὺς +συνζητοῦντες +τί +ἐστιν +τὸ +ἐκ +νεκρῶν +ἀναστῆναι. +καὶ +ἐπηρώτων +αὐτὸν +λέγοντες +Ὅτι +λέγουσιν +οἱ +γραμματεῖς +ὅτι +δεῖ +Ἠλείαν +ἐλθεῖν +πρῶτον; +δὲ +ὁ +ἔφη +αὐτοῖς +μὲν +Ἠλείας +ἐλθὼν +πρῶτον +ἀποκαθιστάνει +πάντα· +καὶ +πῶς +γέγραπται +ἐπὶ +τὸν +Υἱὸν +τοῦ +ἀνθρώπου, +ἵνα +πολλὰ +πάθῃ +καὶ +ἐξουδενηθῇ; +ἀλλὰ +λέγω +ὑμῖν +ὅτι +καὶ +Ἠλείας +ἐλήλυθεν, +καὶ +ἐποίησαν +αὐτῷ +ὅσα +ἤθελον, +καθὼς +γέγραπται +ἐπ’ +αὐτόν. +Καὶ +ἐλθόντες +πρὸς +τοὺς +μαθητὰς +εἶδον +ὄχλον +πολὺν +περὶ +αὐτοὺς +καὶ +γραμματεῖς +συνζητοῦντας +πρὸς +αὐτούς. +καὶ +εὐθὺς +πᾶς +ὁ +ὄχλος +ἰδόντες +αὐτὸν +ἐξεθαμβήθησαν, +καὶ +προστρέχοντες +ἠσπάζοντο +αὐτόν. +καὶ +ἐπηρώτησεν +αὐτούς +Τί +συνζητεῖτε +πρὸς +αὑτούς; +καὶ +ἀπεκρίθη +αὐτῷ +εἷς +ἐκ +τοῦ +ὄχλου +Διδάσκαλε, +ἤνεγκα +τὸν +υἱόν +μου +πρὸς +σέ, +ἔχοντα +πνεῦμα +ἄλαλον· +καὶ +ἐὰν +ὅπου +αὐτὸν +καταλάβῃ, +ῥήσσει +αὐτόν, +καὶ +ἀφρίζει +καὶ +τρίζει +τοὺς +ὀδόντας +καὶ +ξηραίνεται· +καὶ +εἶπα +τοῖς +μαθηταῖς +σου +ἵνα +αὐτὸ +ἐκβάλωσιν, +καὶ +οὐκ +ἴσχυσαν. +δὲ +ὁ +ἀποκριθεὶς +αὐτοῖς +λέγει +Ὦ +γενεὰ +ἄπιστος, +ἕως +πότε +πρὸς +ὑμᾶς +ἔσομαι; +ἕως +πότε +ἀνέξομαι +ὑμῶν; +φέρετε +αὐτὸν +πρός +με. +καὶ +ἤνεγκαν +αὐτὸν +πρὸς +αὐτόν. +καὶ +ἰδὼν +αὐτὸν +τὸ +πνεῦμα +εὐθὺς +συνεσπάραξεν +αὐτόν, +καὶ +πεσὼν +ἐπὶ +τῆς +γῆς +ἐκυλίετο +ἀφρίζων. +καὶ +ἐπηρώτησεν +τὸν +πατέρα +αὐτοῦ +Πόσος +χρόνος +ἐστὶν +ὡς +τοῦτο +γέγονεν +αὐτῷ; +δὲ +ὁ +εἶπεν +Ἐκ +παιδιόθεν· +καὶ +πολλάκις +καὶ +εἰς +πῦρ +αὐτὸν +ἔβαλεν +καὶ +εἰς +ὕδατα +ἵνα +ἀπολέσῃ +αὐτόν· +ἀλλ’ +εἴ +τι +δύνῃ, +βοήθησον +ἡμῖν +σπλαγχνισθεὶς +ἐφ’ +ἡμᾶς. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Τὸ +Εἰ +δύνῃ, +πάντα +δυνατὰ +τῷ +πιστεύοντι. +εὐθὺς +κράξας +ὁ +πατὴρ +τοῦ +παιδίου +ἔλεγεν +Πιστεύω· +βοήθει +μου +τῇ +ἀπιστίᾳ. +δὲ +ὁ +Ἰησοῦς +ἰδὼν +ὅτι +ἐπισυντρέχει +ὄχλος, +ἐπετίμησεν +τῷ +πνεύματι +τῷ +ἀκαθάρτῳ +λέγων +αὐτῷ +Τὸ +ἄλαλον +καὶ +κωφὸν +πνεῦμα, +ἐγὼ +ἐπιτάσσω +σοι, +ἔξελθε +ἐξ +αὐτοῦ +καὶ +μηκέτι +εἰσέλθῃς +εἰς +αὐτόν. +καὶ +κράξας +καὶ +πολλὰ +σπαράξας +ἐξῆλθεν· +καὶ +ἐγένετο +ὡσεὶ +νεκρὸς, +ὥστε +τοὺς +πολλοὺς +λέγειν +ὅτι +ἀπέθανεν. +δὲ +ὁ +Ἰησοῦς +κρατήσας +τῆς +χειρὸς +αὐτοῦ +ἤγειρεν +αὐτόν, +καὶ +ἀνέστη. +καὶ +εἰσελθόντος +αὐτοῦ +εἰς +οἶκον +οἱ +μαθηταὶ +αὐτοῦ +κατ’ +ἰδίαν +ἐπηρώτων +αὐτόν +Ὅτι +ἡμεῖς +οὐκ +ἠδυνήθημεν +ἐκβαλεῖν +αὐτό; +καὶ +εἶπεν +αὐτοῖς +Τοῦτο +τὸ +γένος +ἐν +οὐδενὶ +δύναται +ἐξελθεῖν +εἰ +μὴ +ἐν +προσευχῇ. +Κἀκεῖθεν +ἐξελθόντες +παρεπορεύοντο +διὰ +τῆς +Γαλιλαίας, +καὶ +οὐκ +ἤθελεν +ἵνα +τις +γνοῖ· +γὰρ +ἐδίδασκεν +τοὺς +μαθητὰς +αὐτοῦ, +καὶ +ἔλεγεν +αὐτοῖς +ὅτι +Ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδίδοται +εἰς +χεῖρας +ἀνθρώπων, +καὶ +ἀποκτενοῦσιν +αὐτόν, +καὶ +ἀποκτανθεὶς +μετὰ +τρεῖς +ἡμέρας +ἀναστήσεται. +δὲ +οἱ +ἠγνόουν +τὸ +ῥῆμα, +καὶ +ἐφοβοῦντο +αὐτὸν +ἐπερωτῆσαι. +Καὶ +ἦλθον +εἰς +Καφαρναούμ. +Καὶ +ἐν +τῇ +οἰκίᾳ +γενόμενος +ἐπηρώτα +αὐτούς +Τί +ἐν +τῇ +ὁδῷ +διελογίζεσθε; +δὲ +οἱ +ἐσιώπων· +γὰρ +πρὸς +ἀλλήλους +διελέχθησαν +ἐν +τῇ +ὁδῷ +τίς +μείζων. +καὶ +καθίσας +ἐφώνησεν +τοὺς +δώδεκα +καὶ +λέγει +αὐτοῖς +Εἴ +τις +θέλει +πρῶτος +εἶναι, +ἔσται +πάντων +ἔσχατος +καὶ +πάντων +διάκονος. +καὶ +λαβὼν +παιδίον +ἔστησεν +αὐτὸ +ἐν +μέσῳ +αὐτῶν, +καὶ +ἐναγκαλισάμενος +αὐτὸ +εἶπεν +αὐτοῖς +ἂν +Ὃς +ἓν +τῶν +τοιούτων +παιδίων +δέξηται +ἐπὶ +τῷ +ὀνόματί +μου, +ἐμὲ +δέχεται· +καὶ +ἂν +ὃς +ἐμὲ +δέχηται, +οὐκ +ἐμὲ +δέχεται +ἀλλὰ +τὸν +ἀποστείλαντά +με. +Ἔφη +αὐτῷ +ὁ +Ἰωάνης +Διδάσκαλε, +εἴδομέν +τινα +ἐν +τῷ +ὀνόματί +σου +ἐκβάλλοντα +δαιμόνια, +ὃς +οὐκ +ἀκολουθεῖ +ἡμῖν, +καὶ +ἐκωλύομεν +αὐτόν, +ὅτι +οὐκ +ἠκολούθει +ἡμῖν. +δὲ +ὁ +Ἰησοῦς +εἶπεν +Μὴ +κωλύετε +αὐτόν· +γάρ +οὐδεὶς +ἐστιν +ὃς +ποιήσει +δύναμιν +ἐπὶ +τῷ +ὀνόματί +μου +καὶ +δυνήσεται +ταχὺ +κακολογῆσαί +με· +γὰρ +ὃς +οὐκ +ἔστιν +καθ’ +ἡμῶν, +ὑπὲρ +ἡμῶν +ἐστιν. +γὰρ +ἂν +Ὃς +ποτίσῃ +ὑμᾶς +ποτήριον +ὕδατος +ἐν +ὀνόματι, +ὅτι +Χριστοῦ +ἐστε, +ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐ +μὴ +ἀπολέσῃ +τὸν +μισθὸν +αὐτοῦ. +Καὶ +ἂν +ὃς +σκανδαλίσῃ +ἕνα +τῶν +μικρῶν +τούτων +τῶν +πιστευόντων, +καλόν +ἐστιν +αὐτῷ +μᾶλλον +εἰ +περίκειται +μύλος +ὀνικὸς +περὶ +τὸν +τράχηλον +αὐτοῦ +καὶ +βέβληται +εἰς +τὴν +θάλασσαν. +Καὶ +ἐὰν +σκανδαλίσῃ +σε +ἡ +χείρ +σου, +ἀπόκοψον +αὐτήν· +καλόν +ἐστίν +σε +κυλλὸν +εἰσελθεῖν +εἰς +τὴν +ζωὴν, +ἢ +τὰς +δύο +χεῖρας +ἔχοντα +ἀπελθεῖν +εἰς +τὴν +γέενναν, +εἰς +τὸ +πῦρ +τὸ +ἄσβεστον. +καὶ +ἐὰν +ὁ +πούς +σου +σκανδαλίζῃ +σε, +ἀπόκοψον +αὐτόν· +καλόν +ἐστίν +σε +εἰσελθεῖν +εἰς +τὴν +ζωὴν +χωλὸν, +ἢ +τοὺς +δύο +πόδας +ἔχοντα +βληθῆναι +εἰς +τὴν +γέενναν. +καὶ +ἐὰν +ὁ +ὀφθαλμός +σου +σκανδαλίζῃ +σε, +ἔκβαλε +αὐτόν· +καλόν +ἐστιν +σέ +μονόφθαλμον +εἰσελθεῖν +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ, +ἢ +δύο +ὀφθαλμοὺς +ἔχοντα +βληθῆναι +εἰς +τὴν +γέενναν, +ὅπου +ὁ +σκώληξ +αὐτῶν +οὐ +τελευτᾷ +καὶ +τὸ +πῦρ +οὐ +σβέννυται. +γὰρ +Πᾶς +πυρὶ +ἁλισθήσεται. +καλὸν +τὸ +ἅλας· +δὲ +ἐὰν +τὸ +ἅλας +ἄναλον +γένηται, +ἐν +τίνι +αὐτὸ +ἀρτύσετε; +ἔχετε +ἐν +ἑαυτοῖς +ἅλα +καὶ +εἰρηνεύετε +ἐν +ἀλλήλοις. +Καὶ +ἐκεῖθεν +ἀναστὰς +ἔρχεται +εἰς +τὰ +ὅρια +τῆς +Ἰουδαίας +καὶ +πέραν +τοῦ +Ἰορδάνου, +καὶ +συνπορεύονται +πάλιν +ὄχλοι +πρὸς +αὐτόν, +καὶ +ὡς +εἰώθει +πάλιν +ἐδίδασκεν +αὐτούς. +Καὶ +προσελθόντες +Φαρισαῖοι +ἐπηρώτων +αὐτὸν +εἰ +ἔξεστιν +ἀνδρὶ +γυναῖκα +ἀπολῦσαι, +πειράζοντες +αὐτόν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Τί +ὑμῖν +ἐνετείλατο +Μωϋσῆς; +δὲ +οἱ +εἶπαν· +Ἐπέτρεψεν +Μωϋσῆς +βιβλίον +ἀποστασίου +γράψαι +καὶ +ἀπολῦσαι. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Πρὸς +τὴν +σκληροκαρδίαν +ὑμῶν +ἔγραψεν +ὑμῖν +τὴν +ἐντολὴν +ταύτην. +δὲ +ἀπὸ +ἀρχῆς +κτίσεως +ἄρσεν +καὶ +θῆλυ +ἐποίησεν +αὐτούς· +ἕνεκεν +τούτου +καταλείψει +ἄνθρωπος +τὸν +πατέρα +αὐτοῦ +καὶ +τὴν +μητέρα, +καὶ +ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν· +ὥστε +οὐκέτι +εἰσὶν +δύο +ἀλλὰ +μία +σάρξ. +οὖν +ὃ +ὁ +Θεὸς +συνέζευξεν, +ἄνθρωπος +μὴ +χωριζέτω. +καὶ +εἰς +τὴν +οἰκίαν +πάλιν +οἱ +μαθηταὶ +περὶ +τούτου +ἐπηρώτων +αὐτόν. +καὶ +λέγει +αὐτοῖς +ἂν +Ὃς +ἀπολύσῃ +τὴν +γυναῖκα +αὐτοῦ +καὶ +γαμήσῃ +ἄλλην, +μοιχᾶται +ἐπ’ +αὐτήν· +καὶ +ἐὰν +αὐτὴ +ἀπολύσασα +τὸν +ἄνδρα +αὐτῆς +γαμήσῃ +ἄλλον, +μοιχᾶται. +Καὶ +προσέφερον +αὐτῷ +παιδία +ἵνα +αὐτῶν +ἅψηται· +δὲ +οἱ +μαθηταὶ +ἐπετίμησαν +αὐτοῖς. +δὲ +ἰδὼν +ὁ +Ἰησοῦς +ἠγανάκτησεν +καὶ +εἶπεν +αὐτοῖς +Ἄφετε +τὰ +παιδία +ἔρχεσθαι +πρός +με, +μὴ +κωλύετε +αὐτά· +γὰρ +τῶν +τοιούτων +ἐστὶν +ἡ +βασιλεία +τοῦ +Θεοῦ. +ἀμὴν +λέγω +ὑμῖν, +ἂν +ὃς +μὴ +δέξηται +τὴν +βασιλείαν +τοῦ +Θεοῦ +ὡς +παιδίον, +οὐ +μὴ +εἰσέλθῃ +εἰς +αὐτήν. +καὶ +ἐναγκαλισάμενος +αὐτὰ +κατευλόγει +τιθεὶς +τὰς +χεῖρας +ἐπ’ +αὐτά. +Καὶ +ἐκπορευομένου +αὐτοῦ +εἰς +ὁδὸν +εἷς +προσδραμὼν +καὶ +γονυπετήσας +αὐτὸν +ἐπηρώτα +αὐτόν +Διδάσκαλε +ἀγαθέ, +τί +ποιήσω +ἵνα +ζωὴν +αἰώνιον +κληρονομήσω; +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Τί +με +λέγεις +ἀγαθόν; +οὐδεὶς +ἀγαθὸς +εἰ +μὴ +εἷς +ὁ +Θεός. +τὰς +ἐντολὰς +οἶδας +Μὴ +φονεύσῃς, +Μὴ +μοιχεύσῃς, +Μὴ +κλέψῃς, +Μὴ +ψευδομαρτυρήσῃς, +Μὴ +ἀποστερήσῃς, +Τίμα +τὸν +πατέρα +σου +καὶ +τὴν +μητέρα. +δὲ +ὁ +ἔφη +αὐτῷ +Διδάσκαλε, +ταῦτα +πάντα +ἐφυλαξάμην +ἐκ +νεότητός +μου. +δὲ +ὁ +Ἰησοῦς +ἐμβλέψας +αὐτῷ +ἠγάπησεν +αὐτὸν +καὶ +εἶπεν +αὐτῷ +Ἕν +σε +ὑστερεῖ· +ὕπαγε, +ὅσα +ἔχεις +πώλησον +καὶ +δὸς +τοῖς +πτωχοῖς, +καὶ +ἕξεις +θησαυρὸν +ἐν +οὐρανῷ, +καὶ +δεῦρο +ἀκολούθει +μοι. +δὲ +ὁ +στυγνάσας +ἐπὶ +τῷ +λόγῳ +ἀπῆλθεν +λυπούμενος, +γὰρ +ἦν +ἔχων +κτήματα +πολλά. +Καὶ +περιβλεψάμενος +ὁ +Ἰησοῦς +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +Πῶς +δυσκόλως +οἱ +τὰ +χρήματα +ἔχοντες +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ +εἰσελεύσονται. +δὲ +οἱ +μαθηταὶ +ἐθαμβοῦντο +ἐπὶ +τοῖς +λόγοις +αὐτοῦ. +δὲ +ὁ +Ἰησοῦς +πάλιν +ἀποκριθεὶς +λέγει +αὐτοῖς +Τέκνα, +πῶς +δύσκολόν +ἐστιν +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ +εἰσελθεῖν· +εὐκοπώτερόν +ἐστιν +κάμηλον +διὰ +τῆς +τρυμαλιᾶς +τῆς +ῥαφίδος +διελθεῖν +ἢ +πλούσιον +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ +εἰσελθεῖν. +δὲ +οἱ +περισσῶς +ἐξεπλήσσοντο +λέγοντες +πρὸς +ἑαυτούς +Καὶ +τίς +δύναται +σωθῆναι; +ἐμβλέψας +αὐτοῖς +ὁ +Ἰησοῦς +λέγει +Παρὰ +ἀνθρώποις +ἀδύνατον, +ἀλλ’ +οὐ +παρὰ +θεῷ· +γὰρ +πάντα +δυνατὰ +παρὰ +τῷ +θεῷ. +Ἤρξατο +ὁ +Πέτρος +λέγειν +αὐτῷ +Ἰδοὺ +ἡμεῖς +ἀφήκαμεν +πάντα +καὶ +ἠκολουθήκαμέν +σοι. +ἔφη +ὁ +Ἰησοῦς +Ἀμὴν +λέγω +ὑμῖν, +οὐδείς +ἐστιν +ὃς +ἀφῆκεν +οἰκίαν +ἢ +ἀδελφοὺς +ἢ +ἀδελφὰς +ἢ +μητέρα +ἢ +πατέρα +ἢ +τέκνα +ἢ +ἀγροὺς +ἕνεκεν +ἐμοῦ +καὶ +ἕνεκεν +τοῦ +εὐαγγελίου, +ἐὰν +μὴ +λάβῃ +νῦν +ἐν +τῷ +καιρῷ +τούτῳ +ἑκατονταπλασίονα +οἰκίας +καὶ +ἀδελφοὺς +καὶ +ἀδελφὰς +καὶ +μητέρας +καὶ +τέκνα +καὶ +ἀγροὺς +μετὰ +διωγμῶν, +καὶ +ἐν +τῷ +αἰῶνι +τῷ +ἐρχομένῳ +ζωὴν +αἰώνιον. +δὲ +πολλοὶ +πρῶτοι +ἔσονται +ἔσχατοι +καὶ +οἱ +ἔσχατοι +πρῶτοι. +δὲ +Ἦσαν +ἐν +τῇ +ὁδῷ +ἀναβαίνοντες +εἰς +Ἱεροσόλυμα, +καὶ +ἦν +προάγων +αὐτοὺς +ὁ +Ἰησοῦς, +καὶ +ἐθαμβοῦντο, +δὲ +οἱ +ἀκολουθοῦντες +ἐφοβοῦντο. +καὶ +παραλαβὼν +πάλιν +τοὺς +δώδεκα +ἤρξατο +αὐτοῖς +λέγειν +τὰ +μέλλοντα +αὐτῷ +συμβαίνειν, +ὅτι +Ἰδοὺ +ἀναβαίνομεν +εἰς +Ἱεροσόλυμα, +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδοθήσεται +τοῖς +ἀρχιερεῦσιν +καὶ +τοῖς +γραμματεῦσιν, +καὶ +κατακρινοῦσιν +αὐτὸν +θανάτῳ +καὶ +παραδώσουσιν +αὐτὸν +τοῖς +ἔθνεσιν +καὶ +ἐμπαίξουσιν +αὐτῷ +καὶ +ἐμπτύσουσιν +αὐτῷ +καὶ +μαστιγώσουσιν +αὐτὸν +καὶ +ἀποκτενοῦσιν, +καὶ +μετὰ +τρεῖς +ἡμέρας +ἀναστήσεται. +Καὶ +προσπορεύονται +αὐτῷ +Ἰάκωβος +καὶ +Ἰωάνης +οἱ +υἱοὶ +Ζεβεδαίου +λέγοντες +αὐτῷ +Διδάσκαλε, +θέλομεν +ἵνα +ἐὰν +ὃ +αἰτήσωμέν +σε +ποιήσῃς +ἡμῖν. +δὲ +ὁ +εἶπεν +αὐτοῖς +θέλετε +Τί +με +ποιήσω +ὑμῖν; +δὲ +οἱ +εἶπαν +αὐτῷ +Δὸς +ἡμῖν +ἵνα +εἷς +ἐκ +σου +δεξιῶν +καὶ +εἷς +ἐξ +ἀριστερῶν +καθίσωμεν +ἐν +τῇ +δόξῃ +σου. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐκ +οἴδατε +τί +αἰτεῖσθε. +δύνασθε +πιεῖν +τὸ +ποτήριον +ὃ +ἐγὼ +πίνω, +ἢ +τὸ +βάπτισμα +ὃ +ἐγὼ +βαπτίζομαι +βαπτισθῆναι; +δὲ +οἱ +εἶπαν +αὐτῷ +Δυνάμεθα. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Τὸ +ποτήριον +ὃ +ἐγὼ +πίνω +πίεσθε, +καὶ +τὸ +βάπτισμα +ὃ +ἐγὼ +βαπτίζομαι +βαπτισθήσεσθε· +δὲ +τὸ +καθίσαι +ἐκ +δεξιῶν +μου +ἢ +ἐξ +εὐωνύμων +οὐκ +ἔστιν +ἐμὸν +δοῦναι, +ἀλλ’ +οἷς +ἡτοίμασται. +Καὶ +ἀκούσαντες +οἱ +δέκα +ἤρξαντο +ἀγανακτεῖν +περὶ +Ἰακώβου +καὶ +Ἰωάνου. +καὶ +προσκαλεσάμενος +αὐτοὺς +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Οἴδατε +ὅτι +οἱ +δοκοῦντες +ἄρχειν +τῶν +ἐθνῶν +κατακυριεύουσιν +αὐτῶν +καὶ +οἱ +μεγάλοι +αὐτῶν +κατεξουσιάζουσιν +αὐτῶν. +δέ +οὐχ +οὕτως +ἐστιν +ἐν +ὑμῖν· +ἀλλ’ +ἂν +ὃς +θέλῃ +μέγας +γενέσθαι +ἐν +ὑμῖν, +ἔσται +ὑμῶν +διάκονος, +καὶ +ἂν +ὃς +θέλῃ +ἐν +ὑμῖν +εἶναι +πρῶτος, +ἔσται +πάντων +δοῦλος· +γὰρ +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +οὐκ +ἦλθεν +διακονηθῆναι +ἀλλὰ +διακονῆσαι +καὶ +δοῦναι +τὴν +ψυχὴν +αὐτοῦ +λύτρον +ἀντὶ +πολλῶν. +Καὶ +ἔρχονται +εἰς +Ἰερειχώ. +Καὶ +ἐκπορευομένου +αὐτοῦ +ἀπὸ +Ἰερειχὼ +καὶ +τῶν +μαθητῶν +αὐτοῦ +καὶ +ὄχλου +ἱκανοῦ +ὁ +υἱὸς +Τιμαίου +Βαρτιμαῖος, +τυφλὸς +προσαίτης, +ἐκάθητο +παρὰ +τὴν +ὁδόν. +καὶ +ἀκούσας +ὅτι +Ἰησοῦς +ὁ +Ναζαρηνός +ἐστιν +ἤρξατο +κράζειν +καὶ +λέγειν +Υἱὲ +Δαυεὶδ +Ἰησοῦ, +ἐλέησόν +με. +καὶ +ἐπετίμων +αὐτῷ +πολλοὶ +ἵνα +σιωπήσῃ· +δὲ +ὁ +πολλῷ +μᾶλλον +ἔκραζεν +Υἱὲ +Δαυείδ, +ἐλέησόν +με. +καὶ +στὰς +ὁ +Ἰησοῦς +εἶπεν +Φωνήσατε +αὐτόν. +καὶ +φωνοῦσιν +τὸν +τυφλὸν +λέγοντες +αὐτῷ +Θάρσει, +ἔγειρε, +φωνεῖ +σε. +δὲ +ὁ +ἀποβαλὼν +τὸ +ἱμάτιον +αὐτοῦ +ἀναπηδήσας +ἦλθεν +πρὸς +τὸν +Ἰησοῦν. +καὶ +ἀποκριθεὶς +αὐτῷ +ὁ +Ἰησοῦς +εἶπεν +Τί +σοι +ποιήσω; +θέλεις +δὲ +ὁ +τυφλὸς +εἶπεν +αὐτῷ +Ῥαββουνεί, +ἵνα +ἀναβλέψω. +καὶ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ὕπαγε, +ἡ +πίστις +σου +σέσωκέν +σε. +καὶ +εὐθὺς +ἀνέβλεψεν, +καὶ +ἠκολούθει +αὐτῷ +ἐν +τῇ +ὁδῷ. +Καὶ +ὅτε +ἐγγίζουσιν +εἰς +Ἱεροσόλυμα +εἰς +Βηθφαγὴ +καὶ +Βηθανίαν +πρὸς +τὸ +ὄρος +τῶν +Ἐλαιῶν, +ἀποστέλλει +δύο +τῶν +μαθητῶν +αὐτοῦ +καὶ +λέγει +αὐτοῖς +Ὑπάγετε +εἰς +τὴν +κώμην +τὴν +κατέναντι +ὑμῶν, +καὶ +εὐθὺς +εἰσπορευόμενοι +εἰς +αὐτὴν +εὑρήσετε +δεδεμένον +πῶλον +ἐφ’ +ὃν +οὐδεὶς +ἀνθρώπων +οὔπω +ἐκάθισεν· +λύσατε +αὐτὸν +καὶ +φέρετε. +καὶ +ἐάν +τις +ὑμῖν +εἴπῃ +Τί +ποιεῖτε +τοῦτο; +εἴπατε +Ὁ +Κύριος +αὐτοῦ +χρείαν +ἔχει, +καὶ +εὐθὺς +αὐτὸν +ἀποστέλλει +πάλιν +ὧδε. +καὶ +ἀπῆλθον +καὶ +εὗρον +πῶλον +δεδεμένον +πρὸς +θύραν +ἔξω +ἐπὶ +τοῦ +ἀμφόδου, +καὶ +λύουσιν +αὐτόν. +καί +τινες +τῶν +ἐκεῖ +ἑστηκότων +ἔλεγον +αὐτοῖς +Τί +ποιεῖτε +λύοντες +τὸν +πῶλον; +δὲ +οἱ +εἶπαν +αὐτοῖς +καθὼς +εἶπεν +ὁ +Ἰησοῦς· +καὶ +ἀφῆκαν +αὐτούς. +καὶ +φέρουσιν +τὸν +πῶλον +πρὸς +τὸν +Ἰησοῦν, +καὶ +ἐπιβάλλουσιν +αὐτῷ +τὰ +ἱμάτια +αὐτῶν, +καὶ +ἐκάθισεν +ἐπ’ +αὐτόν. +καὶ +πολλοὶ +τὰ +ἱμάτια +αὐτῶν +ἔστρωσαν +εἰς +τὴν +ὁδόν, +δὲ +ἄλλοι +στιβάδας, +κόψαντες +ἐκ +τῶν +ἀγρῶν. +καὶ +οἱ +προάγοντες +καὶ +οἱ +ἀκολουθοῦντες +ἔκραζον +Ὡσαννά· +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου· +Εὐλογημένη +ἡ +ἐρχομένη +βασιλεία +τοῦ +πατρὸς +ἡμῶν +Δαυείδ· +Ὡσαννὰ +ἐν +τοῖς +ὑψίστοις. +Καὶ +εἰσῆλθεν +εἰς +Ἱεροσόλυμα +εἰς +τὸ +ἱερόν· +καὶ +ὀψὲ +ἤδη +οὔσης +τῆς +ὥρας, +περιβλεψάμενος +πάντα, +ἐξῆλθεν +εἰς +Βηθανίαν +μετὰ +τῶν +δώδεκα. +Καὶ +τῇ +ἐπαύριον +ἐξελθόντων +αὐτῶν +ἀπὸ +Βηθανίας +ἐπείνασεν. +καὶ +ἰδὼν +ἀπὸ +μακρόθεν +συκῆν +ἔχουσαν +φύλλα +ἦλθεν +ἄρα +εἰ +τι +εὑρήσει +ἐν +αὐτῇ, +καὶ +ἐλθὼν +ἐπ’ +αὐτὴν +οὐδὲν +εὗρεν +εἰ +μὴ +φύλλα· +γὰρ +ὁ +καιρὸς +οὐκ +ἦν +σύκων. +καὶ +ἀποκριθεὶς +εἶπεν +αὐτῇ +Μηκέτι +εἰς +τὸν +αἰῶνα +ἐκ +σοῦ +μηδεὶς +καρπὸν +φάγοι. +καὶ +ἤκουον +οἱ +μαθηταὶ +αὐτοῦ. +Καὶ +ἔρχονται +εἰς +Ἱεροσόλυμα. +Καὶ +εἰσελθὼν +εἰς +τὸ +ἱερὸν +ἤρξατο +ἐκβάλλειν +τοὺς +πωλοῦντας +καὶ +τοὺς +ἀγοράζοντας +ἐν +τῷ +ἱερῷ, +καὶ +τὰς +τραπέζας +τῶν +κολλυβιστῶν +καὶ +τὰς +καθέδρας +τῶν +πωλούντων +τὰς +περιστερὰς +κατέστρεψεν, +καὶ +οὐκ +ἤφιεν +ἵνα +τις +διενέγκῃ +σκεῦος +διὰ +τοῦ +ἱεροῦ, +καὶ +ἐδίδασκεν +καὶ +ἔλεγεν +αὐτοῖς +Οὐ +γέγραπται +ὅτι +Ὁ +οἶκός +μου +οἶκος +προσευχῆς +κληθήσεται +πᾶσιν +τοῖς +ἔθνεσιν; +δὲ +ὑμεῖς +πεποιήκατε +αὐτὸν +σπήλαιον +λῃστῶν. +καὶ +ἤκουσαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς, +καὶ +ἐζήτουν +πῶς +αὐτὸν +ἀπολέσωσιν· +γὰρ +ἐφοβοῦντο +αὐτόν, +γὰρ +πᾶς +ὁ +ὄχλος +ἐξεπλήσσετο +ἐπὶ +τῇ +διδαχῇ +αὐτοῦ. +Καὶ +ὅταν +ὀψὲ +ἐγένετο, +ἐξεπορεύοντο +ἔξω +τῆς +πόλεως. +Καὶ +παραπορευόμενοι +πρωῒ +εἶδον +τὴν +συκῆν +ἐξηραμμένην +ἐκ +ῥιζῶν. +καὶ +ἀναμνησθεὶς +ὁ +Πέτρος +λέγει +αὐτῷ +Ῥαββεί, +ἴδε +ἡ +συκῆ +ἣν +κατηράσω +ἐξήρανται. +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Ἔχετε +πίστιν +θεοῦ. +ἀμὴν +λέγω +ὑμῖν +ὅτι +ἂν +ὃς +εἴπῃ +τῷ +ὄρει +τούτῳ +Ἄρθητι +καὶ +βλήθητι +εἰς +τὴν +θάλασσαν, +καὶ +μὴ +διακριθῇ +ἐν +τῇ +καρδίᾳ +αὐτοῦ +ἀλλὰ +πιστεύῃ +ὅτι +ὃ +λαλεῖ +γίνεται, +ἔσται +αὐτῷ. +διὰ +τοῦτο +λέγω +ὑμῖν, +πάντα +ὅσα +προσεύχεσθε +καὶ +αἰτεῖσθε, +πιστεύετε +ὅτι +ἐλάβετε, +καὶ +ἔσται +ὑμῖν. +καὶ +ὅταν +στήκετε +προσευχόμενοι, +ἀφίετε +εἴ +τι +ἔχετε +κατά +τινος, +ἵνα +καὶ +ὁ +Πατὴρ +ὑμῶν +ὁ +ἐν +τοῖς +οὐρανοῖς +ἀφῇ +ὑμῖν +τὰ +παραπτώματα +ὑμῶν. +Καὶ +ἔρχονται +πάλιν +εἰς +Ἱεροσόλυμα. +καὶ +ἐν +τῷ +ἱερῷ +περιπατοῦντος +αὐτοῦ +ἔρχονται +πρὸς +αὐτὸν +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +καὶ +οἱ +πρεσβύτεροι, +καὶ +ἔλεγον +αὐτῷ +Ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιεῖς; +ἢ +τίς +σοι +ἔδωκεν +τὴν +ἐξουσίαν +ταύτην +ἵνα +ταῦτα +ποιῇς; +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ἐπερωτήσω +ὑμᾶς +ἕνα +λόγον, +καὶ +ἀποκρίθητέ +μοι, +καὶ +ἐρῶ +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ. +τὸ +βάπτισμα +τὸ +Ἰωάνου +ἐξ +οὐρανοῦ +ἦν +ἢ +ἐξ +ἀνθρώπων; +ἀποκρίθητέ +μοι. +καὶ +διελογίζοντο +πρὸς +ἑαυτοὺς +λέγοντες +Ἐὰν +εἴπωμεν +Ἐξ +οὐρανοῦ, +ἐρεῖ +οὖν +Διὰ +τί +οὐκ +ἐπιστεύσατε +αὐτῷ; +ἀλλὰ +εἴπωμεν +Ἐξ +ἀνθρώπων;— +ἐφοβοῦντο +τὸν +ὄχλον· +γὰρ +ἅπαντες +εἶχον +τὸν +Ἰωάνην +ὅτι +ὄντως +προφήτης +ἦν. +καὶ +ἀποκριθέντες +τῷ +Ἰησοῦ +λέγουσιν +Οὐκ +οἴδαμεν. +καὶ +ὁ +Ἰησοῦς +λέγει +αὐτοῖς +Οὐδὲ +ἐγὼ +λέγω +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ. +Καὶ +ἤρξατο +αὐτοῖς +ἐν +παραβολαῖς +λαλεῖν. +ἀμπελῶνα +ἄνθρωπος +ἐφύτευσεν, +καὶ +περιέθηκεν +φραγμὸν +καὶ +ὤρυξεν +ὑπολήνιον +καὶ +ᾠκοδόμησεν +πύργον, +καὶ +ἐξέδετο +αὐτὸν +γεωργοῖς, +καὶ +ἀπεδήμησεν. +καὶ +ἀπέστειλεν +πρὸς +τοὺς +γεωργοὺς +τῷ +καιρῷ +δοῦλον, +ἵνα +παρὰ +τῶν +γεωργῶν +λάβῃ +ἀπὸ +τῶν +καρπῶν +τοῦ +ἀμπελῶνος· +καὶ +λαβόντες +αὐτὸν +ἔδειραν +καὶ +ἀπέστειλαν +κενόν. +καὶ +πάλιν +ἀπέστειλεν +πρὸς +αὐτοὺς +ἄλλον +δοῦλον· +κἀκεῖνον +ἐκεφαλίωσαν +καὶ +ἠτίμασαν. +καὶ +ἄλλον +ἀπέστειλεν· +κἀκεῖνον +ἀπέκτειναν, +καὶ +πολλοὺς +ἄλλους, +μὲν +οὓς +δέροντες, +δὲ +οὓς +ἀποκτέννοντες. +ἔτι +εἶχεν, +ἕνα +υἱὸν +ἀγαπητόν· +ἀπέστειλεν +αὐτὸν +ἔσχατον +πρὸς +αὐτοὺς +λέγων +ὅτι +Ἐντραπήσονται +τὸν +υἱόν +μου. +δὲ +ἐκεῖνοι +οἱ +γεωργοὶ +πρὸς +ἑαυτοὺς +εἶπαν +ὅτι +Οὗτός +ἐστιν +ὁ +κληρονόμος· +δεῦτε +ἀποκτείνωμεν +αὐτόν, +καὶ +ἡμῶν +ἔσται +ἡ +κληρονομία. +καὶ +λαβόντες +ἀπέκτειναν +αὐτόν, +καὶ +ἐξέβαλον +αὐτὸν +ἔξω +τοῦ +ἀμπελῶνος. +τί +ποιήσει +ὁ +κύριος +τοῦ +ἀμπελῶνος; +ἐλεύσεται +καὶ +ἀπολέσει +τοὺς +γεωργούς, +καὶ +δώσει +τὸν +ἀμπελῶνα +ἄλλοις. +οὐδὲ +τὴν +γραφὴν +ταύτην +ἀνέγνωτε +Λίθον +ὃν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες, +οὗτος +ἐγενήθη +εἰς +κεφαλὴν +γωνίας· +παρὰ +Κυρίου +ἐγένετο +αὕτη, +καὶ +ἔστιν +θαυμαστὴ +ἐν +ὀφθαλμοῖς +ἡμῶν; +Καὶ +ἐζήτουν +αὐτὸν +κρατῆσαι, +καὶ +ἐφοβήθησαν +τὸν +ὄχλον· +γὰρ +ἔγνωσαν +ὅτι +πρὸς +αὐτοὺς +τὴν +παραβολὴν +εἶπεν. +καὶ +ἀφέντες +αὐτὸν +ἀπῆλθον. +Καὶ +ἀποστέλλουσιν +πρὸς +αὐτόν +τινας +τῶν +Φαρισαίων +καὶ +τῶν +Ἠρῳδιανῶν +ἵνα +αὐτὸν +ἀγρεύσωσιν +λόγῳ. +καὶ +ἐλθόντες +λέγουσιν +αὐτῷ +Διδάσκαλε, +οἴδαμεν +ὅτι +ἀληθὴς +εἶ +καὶ +οὐ +μέλει +σοι +περὶ +οὐδενός· +γὰρ +οὐ +βλέπεις +εἰς +πρόσωπον +ἀνθρώπων, +ἀλλ’ +ἐπ’ +ἀληθείας +τὴν +ὁδὸν +τοῦ +Θεοῦ +διδάσκεις· +ἔξεστιν +δοῦναι +κῆνσον +Καίσαρι +ἢ +οὔ; +δῶμεν +ἢ +μὴ +δῶμεν; +δὲ +ὁ +εἰδὼς +αὐτῶν +τὴν +ὑπόκρισιν +εἶπεν +αὐτοῖς +Τί +με +πειράζετε; +φέρετέ +μοι +δηνάριον +ἵνα +ἴδω. +δὲ +οἱ +ἤνεγκαν. +καὶ +λέγει +αὐτοῖς +Τίνος +ἡ +εἰκὼν +αὕτη +καὶ +ἡ +ἐπιγραφή; +δὲ +οἱ +εἶπαν +αὐτῷ +Καίσαρος. +δὲ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Τὰ +Καίσαρος +ἀπόδοτε +Καίσαρι +καὶ +τὰ +τοῦ +Θεοῦ +τῷ +Θεῷ. +καὶ +ἐξεθαύμαζον +ἐπ’ +αὐτῷ. +Καὶ +ἔρχονται +πρὸς +αὐτόν, +Σαδδουκαῖοι +οἵτινες +λέγουσιν +ἀνάστασιν +μὴ +εἶναι, +καὶ +ἐπηρώτων +αὐτὸν +λέγοντες +Διδάσκαλε, +Μωϋσῆς +ἔγραψεν +ἡμῖν +ὅτι +ἐάν +τινος +ἀδελφὸς +ἀποθάνῃ +καὶ +καταλίπῃ +γυναῖκα +καὶ +μὴ +ἀφῇ +τέκνον, +ἵνα +λάβῃ +ὁ +ἀδελφὸς +αὐτοῦ +τὴν +γυναῖκα +καὶ +ἐξαναστήσῃ +σπέρμα +τῷ +ἀδελφῷ +αὐτοῦ. +ἑπτὰ +ἀδελφοὶ +ἦσαν· +καὶ +ὁ +πρῶτος +ἔλαβεν +γυναῖκα, +καὶ +ἀποθνῄσκων +οὐκ +ἀφῆκεν +σπέρμα· +καὶ +ὁ +δεύτερος +ἔλαβεν +αὐτήν, +καὶ +ἀπέθανεν +μὴ +καταλιπὼν +σπέρμα· +καὶ +ὁ +τρίτος +ὡσαύτως· +καὶ +οἱ +ἑπτὰ +οὐκ +ἀφῆκαν +σπέρμα. +ἔσχατον +πάντων +καὶ +ἡ +γυνὴ +ἀπέθανεν. +ἐν +τῇ +ἀναστάσει, +ὅταν +ἀναστῶσιν, +τίνος +αὐτῶν +γυνή; +ἔσται +γὰρ +οἱ +ἑπτὰ +ἔσχον +αὐτὴν +γυναῖκα. +ἔφη +αὐτοῖς +ὁ +Ἰησοῦς +Οὐ +διὰ +τοῦτο +πλανᾶσθε +μὴ +εἰδότες +τὰς +γραφὰς +μηδὲ +τὴν +δύναμιν +τοῦ +Θεοῦ; +γὰρ +ὅταν +ἐκ +νεκρῶν +ἀναστῶσιν, +οὔτε +γαμοῦσιν +οὔτε +γαμίζονται, +ἀλλ’ +εἰσὶν +ὡς +ἄγγελοι +ἐν +τοῖς +οὐρανοῖς. +δὲ +περὶ +τῶν +νεκρῶν +ὅτι +ἐγείρονται, +οὐκ +ἀνέγνωτε +ἐν +τῇ +βίβλῳ +Μωϋσέως +ἐπὶ +τοῦ +Βάτου +πῶς +εἶπεν +αὐτῷ +ὁ +Θεὸς +λέγων +Ἐγὼ +ὁ +Θεὸς +Ἀβραὰμ +καὶ +Θεὸς +Ἰσαὰκ +καὶ +Θεὸς +Ἰακώβ; +οὐκ +ἔστιν +Θεὸς +νεκρῶν +ἀλλὰ +ζώντων. +πολὺ +πλανᾶσθε. +Καὶ +προσελθὼν +εἷς +τῶν +γραμματέων, +ἀκούσας +αὐτῶν +συνζητούντων, +εἰδὼς +ὅτι +καλῶς +ἀπεκρίθη +αὐτοῖς, +ἐπηρώτησεν +αὐτόν +Ποία +ἐστὶν +ἐντολὴ +πρώτη +πάντων; +ἀπεκρίθη +ὁ +Ἰησοῦς +ὅτι +Πρώτη +ἐστίν +Ἄκουε, +Ἰσραήλ, +Κύριος +ὁ +Θεὸς +ἡμῶν +Κύριος +εἷς +ἐστιν, +καὶ +ἀγαπήσεις +Κύριον +τὸν +Θεόν +σου +ἐξ +ὅλης +τῆς +καρδίας +σου +καὶ +ἐξ +ὅλης +τῆς +ψυχῆς +σου +καὶ +ἐξ +ὅλης +τῆς +διανοίας +σου +καὶ +ἐξ +ὅλης +τῆς +ἰσχύος +σου. +δευτέρα +αὕτη +Ἀγαπήσεις +τὸν +πλησίον +σου +ὡς +σεαυτόν. +μείζων +τούτων +ἄλλη +ἐντολὴ +οὐκ +ἔστιν. +καὶ +εἶπεν +αὐτῷ +ὁ +γραμματεύς +Καλῶς, +Διδάσκαλε, +ἐπ’ +ἀληθείας +εἶπες +ὅτι +εἷς +ἐστιν +καὶ +οὐκ +ἔστιν +ἄλλος +πλὴν +αὐτοῦ· +καὶ +τὸ +ἀγαπᾶν +αὐτὸν +ἐξ +ὅλης +τῆς +καρδίας +καὶ +ἐξ +ὅλης +τῆς +συνέσεως +καὶ +ἐξ +ὅλης +τῆς +ἰσχύος, +καὶ +τὸ +ἀγαπᾶν +τὸν +πλησίον +ὡς +ἑαυτὸν +περισσότερόν +ἐστιν +πάντων +τῶν +ὁλοκαυτωμάτων +καὶ +θυσιῶν. +καὶ +ὁ +Ἰησοῦς, +ἰδὼν +αὐτὸν +ὅτι +νουνεχῶς +ἀπεκρίθη, +εἶπεν +αὐτῷ +Οὐ +μακρὰν +εἶ +ἀπὸ +τῆς +βασιλείας +τοῦ +Θεοῦ. +καὶ +οὐδεὶς +οὐκέτι +ἐτόλμα +αὐτὸν +ἐπερωτῆσαι. +Καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +ἔλεγεν +διδάσκων +ἐν +τῷ +ἱερῷ +Πῶς +λέγουσιν +οἱ +γραμματεῖς +ὅτι +ὁ +Χριστὸς +υἱὸς +Δαυείδ +ἐστιν; +αὐτὸς +Δαυεὶδ +εἶπεν +ἐν +τῷ +Πνεύματι +τῷ +Ἁγίῳ +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἂν +θῶ +τοὺς +ἐχθρούς +σου +ὑποκάτω +τῶν +ποδῶν +σου. +αὐτὸς +Δαυεὶδ +λέγει +αὐτὸν +Κύριον, +καὶ +πόθεν +αὐτοῦ +υἱός; +ἐστιν +Καὶ +ὁ +πολὺς +ὄχλος +ἤκουεν +αὐτοῦ +ἡδέως. +Καὶ +ἐν +τῇ +διδαχῇ +αὐτοῦ +ἔλεγεν +Βλέπετε +ἀπὸ +τῶν +γραμματέων +τῶν +θελόντων +ἐν +στολαῖς +περιπατεῖν +καὶ +ἀσπασμοὺς +ἐν +ταῖς +ἀγοραῖς +καὶ +πρωτοκαθεδρίας +ἐν +ταῖς +συναγωγαῖς +καὶ +πρωτοκλισίας +ἐν +τοῖς +δείπνοις· +οἱ +κατεσθίοντες +τὰς +οἰκίας +τῶν +χηρῶν +καὶ +προφάσει +μακρὰ +προσευχόμενοι, +οὗτοι +λήμψονται +περισσότερον +κρίμα. +Καὶ +καθίσας +κατέναντι +τοῦ +γαζοφυλακίου +ἐθεώρει +πῶς +ὁ +ὄχλος +βάλλει +χαλκὸν +εἰς +τὸ +γαζοφυλάκιον· +καὶ +πολλοὶ +πλούσιοι +ἔβαλλον +πολλά· +καὶ +ἐλθοῦσα +μία +χήρα +πτωχὴ +ἔβαλεν +λεπτὰ +δύο, +ὅ +ἐστιν +κοδράντης. +καὶ +προσκαλεσάμενος +τοὺς +μαθητὰς +αὐτοῦ +εἶπεν +αὐτοῖς +Ἀμὴν +λέγω +ὑμῖν +ὅτι +ἡ +χήρα +αὕτη +ἡ +πτωχὴ +πλεῖον +ἔβαλεν +πάντων +τῶν +βαλλόντων +εἰς +τὸ +γαζοφυλάκιον· +γὰρ +πάντες +ἐκ +τοῦ +περισσεύοντος +αὐτοῖς +ἔβαλον, +δὲ +αὕτη +ἐκ +τῆς +ὑστερήσεως +αὐτῆς +ἔβαλεν, +πάντα +ὅσα +εἶχεν +ὅλον +τὸν +βίον +αὐτῆς. +Καὶ +ἐκπορευομένου +αὐτοῦ +ἐκ +τοῦ +ἱεροῦ +λέγει +αὐτῷ +εἷς +τῶν +μαθητῶν +αὐτοῦ +Διδάσκαλε, +ἴδε +ποταποὶ +λίθοι +καὶ +ποταπαὶ +οἰκοδομαί. +καὶ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Βλέπεις +ταύτας +τὰς +μεγάλας +οἰκοδομάς; +οὐ +μὴ +ἀφεθῇ +ἐπὶ +λίθον +λίθος +ὃς +οὐ +μὴ +καταλυθῇ. +Καὶ +καθημένου +αὐτοῦ +εἰς +τὸ +ὄρος +τῶν +Ἐλαιῶν +κατέναντι +τοῦ +ἱεροῦ, +ἐπηρώτα +αὐτὸν +κατ’ +ἰδίαν +Πέτρος +καὶ +Ἰάκωβος +καὶ +Ἰωάνης +καὶ +Ἀνδρέας +Εἰπὸν +ἡμῖν, +πότε +ταῦτα +ἔσται, +καὶ +τί +τὸ +σημεῖον +ὅταν +μέλλῃ +ταῦτα +πάντα; +συντελεῖσθαι +δὲ +ὁ +Ἰησοῦς +ἤρξατο +λέγειν +αὐτοῖς +Βλέπετε +μή +τις +ὑμᾶς +πλανήσῃ. +πολλοὶ +ἐλεύσονται +ἐπὶ +τῷ +ὀνόματί +μου +λέγοντες +ὅτι +Ἐγώ +εἰμι, +καὶ +πολλοὺς +πλανήσουσιν. +δὲ +ὅταν +ἀκούσητε +πολέμους +καὶ +ἀκοὰς +πολέμων, +μὴ +θροεῖσθε· +δεῖ +γενέσθαι, +ἀλλ’ +οὔπω +τὸ +τέλος. +γὰρ +ἐγερθήσεται +ἔθνος +ἐπ’ +ἔθνος +καὶ +βασιλεία +ἐπὶ +βασιλείαν. +ἔσονται +σεισμοὶ +κατὰ +τόπους, +ἔσονται +λιμοί· +ἀρχὴ +ὠδίνων +ταῦτα. +δὲ +Βλέπετε +ὑμεῖς +ἑαυτούς· +παραδώσουσιν +ὑμᾶς +εἰς +συνέδρια +καὶ +εἰς +συναγωγὰς +δαρήσεσθε +καὶ +ἐπὶ +ἡγεμόνων +καὶ +βασιλέων +σταθήσεσθε +ἕνεκεν +ἐμοῦ, +εἰς +μαρτύριον +αὐτοῖς. +καὶ +εἰς +πάντα +τὰ +ἔθνη +πρῶτον +κηρυχθῆναι +τὸ +εὐαγγέλιον. +δεῖ +καὶ +ὅταν +ἄγωσιν +ὑμᾶς +παραδιδόντες, +μὴ +προμεριμνᾶτε +τί +λαλήσητε, +ἀλλ’ +ἐὰν +ὃ +δοθῇ +ὑμῖν +ἐν +ἐκείνῃ +τῇ +ὥρᾳ, +τοῦτο +λαλεῖτε· +γάρ +οὐ +ἐστε +ὑμεῖς +οἱ +λαλοῦντες +ἀλλὰ +τὸ +Πνεῦμα +τὸ +Ἅγιον. +καὶ +παραδώσει +ἀδελφὸς +ἀδελφὸν +εἰς +θάνατον +καὶ +πατὴρ +τέκνον, +καὶ +ἐπαναστήσονται +τέκνα +ἐπὶ +γονεῖς +καὶ +θανατώσουσιν +αὐτούς· +καὶ +ἔσεσθε +μισούμενοι +ὑπὸ +πάντων +διὰ +τὸ +ὄνομά +μου· +δὲ +ὁ +ὑπομείνας +εἰς +τέλος, +οὗτος +σωθήσεται. +δὲ +Ὅταν +ἴδητε +τὸ +βδέλυγμα +τῆς +ἐρημώσεως +ἑστηκότα +ὅπου +οὐ +δεῖ, +ὁ +ἀναγινώσκων +νοείτω, +τότε +οἱ +ἐν +τῇ +Ἰουδαίᾳ +φευγέτωσαν +εἰς +τὰ +ὄρη, +ὁ +ἐπὶ +τοῦ +δώματος +μὴ +καταβάτω +μηδὲ +εἰσελθάτω +τι +ἆραι +ἐκ +τῆς +οἰκίας +αὐτοῦ, +καὶ +ὁ +εἰς +τὸν +ἀγρὸν +μὴ +ἐπιστρεψάτω +εἰς +τὰ +ὀπίσω +ἆραι +τὸ +ἱμάτιον +αὐτοῦ. +δὲ +οὐαὶ +ταῖς +ἐν +γαστρὶ +ἐχούσαις +καὶ +ταῖς +θηλαζούσαις +ἐν +ἐκείναις +ταῖς +ἡμέραις. +δὲ +προσεύχεσθε +ἵνα +μὴ +γένηται +χειμῶνος· +γὰρ +ἔσονται +αἱ +ἡμέραι +ἐκεῖναι +θλῖψις, +οἵα +οὐ +γέγονεν +τοιαύτη +ἀπ’ +ἀρχῆς +κτίσεως +ἣν +ἔκτισεν +ὁ +Θεὸς +ἕως +τοῦ +νῦν +καὶ +οὐ +μὴ +γένηται. +καὶ +εἰ +μὴ +ἐκολόβωσεν +Κύριος +τὰς +ἡμέρας, +ἂν +οὐκ +ἐσώθη +πᾶσα +σάρξ· +ἀλλὰ +διὰ +τοὺς +ἐκλεκτοὺς +οὓς +ἐξελέξατο +ἐκολόβωσεν +τὰς +ἡμέρας. +καὶ +ἐάν +τότε +τις +ὑμῖν +εἴπῃ +Ἴδε +ὧδε +ὁ +Χριστός, +Ἴδε +ἐκεῖ, +μὴ +πιστεύετε· +δὲ +ἐγερθήσονται +ψευδόχριστοι +καὶ +ψευδοπροφῆται +καὶ +ποιήσουσιν +σημεῖα +καὶ +τέρατα +πρὸς +τὸ +ἀποπλανᾶν +εἰ +δυνατὸν +τοὺς +ἐκλεκτούς· +δὲ +ὑμεῖς +βλέπετε· +προείρηκα +ὑμῖν +πάντα. +Ἀλλὰ +ἐν +ἐκείναις +ταῖς +ἡμέραις +μετὰ +τὴν +θλῖψιν +ἐκείνην +ὁ +ἥλιος +σκοτισθήσεται, +καὶ +ἡ +σελήνη +οὐ +δώσει +τὸ +φέγγος +αὐτῆς, +καὶ +οἱ +ἀστέρες +ἔσονται +πίπτοντες, +ἐκ +τοῦ +οὐρανοῦ +καὶ +αἱ +δυνάμεις +αἱ +ἐν +τοῖς +οὐρανοῖς +σαλευθήσονται. +καὶ +τότε +ὄψονται +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐν +νεφέλαις +μετὰ +δυνάμεως +πολλῆς +καὶ +δόξης. +καὶ +τότε +ἀποστελεῖ +τοὺς +ἀγγέλους +καὶ +ἐπισυνάξει +τοὺς +ἐκλεκτοὺς +αὐτοῦ +ἐκ +τῶν +τεσσάρων +ἀνέμων +ἀπ’ +ἄκρου +γῆς +ἕως +ἄκρου +οὐρανοῦ. +δὲ +Ἀπὸ +τῆς +συκῆς +μάθετε +τὴν +παραβολήν· +ὅταν +ἤδη +ὁ +κλάδος +αὐτῆς +ἁπαλὸς +γένηται +καὶ +ἐκφύῃ +τὰ +φύλλα, +γινώσκετε +ὅτι +ἐγγὺς +τὸ +θέρος +ἐστίν· +οὕτως +καὶ +ὑμεῖς, +ὅταν +ἴδητε +ταῦτα +γινόμενα, +γινώσκετε +ὅτι +ἐγγύς +ἐστιν +ἐπὶ +θύραις. +ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐ +μὴ +παρέλθῃ +ἡ +γενεὰ +αὕτη +μέχρις +οὗ +ταῦτα +πάντα +γένηται. +ὁ +οὐρανὸς +καὶ +ἡ +γῆ +παρελεύσονται, +δὲ +οἱ +λόγοι +μου +οὐ +παρελεύσονται. +δὲ +Περὶ +τῆς +ἡμέρας +ἐκείνης +ἢ +τῆς +ὥρας +οὐδεὶς +οἶδεν, +οὐδὲ +οἱ +ἄγγελοι +ἐν +οὐρανῷ +οὐδὲ +ὁ +Υἱός, +εἰ +μὴ +ὁ +Πατήρ. +Βλέπετε, +ἀγρυπνεῖτε· +γὰρ +οὐκ +οἴδατε +πότε +ὁ +καιρός +ἐστιν. +ὡς +ἄνθρωπος +ἀπόδημος +ἀφεὶς +τὴν +οἰκίαν +αὐτοῦ +καὶ +δοὺς +τοῖς +δούλοις +αὐτοῦ +τὴν +ἐξουσίαν, +ἑκάστῳ +τὸ +ἔργον +αὐτοῦ, +καὶ +τῷ +θυρωρῷ +ἐνετείλατο +ἵνα +γρηγορῇ. +οὖν· +γρηγορεῖτε +γὰρ +οὐκ +οἴδατε +πότε +ὁ +κύριος +τῆς +οἰκίας +ἔρχεται, +ἢ +ὀψὲ +ἢ +μεσονύκτιον +ἢ +ἀλεκτοροφωνίας +ἢ +πρωΐ· +μὴ +ἐλθὼν +ἐξαίφνης +εὕρῃ +ὑμᾶς +καθεύδοντας. +δὲ +ὃ +ὑμῖν +λέγω, +πᾶσιν +λέγω, +γρηγορεῖτε. +δὲ +Ἦν +τὸ +πάσχα +καὶ +τὰ +ἄζυμα +μετὰ +δύο +ἡμέρας. +καὶ +ἐζήτουν +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +πῶς +αὐτὸν +ἐν +δόλῳ +κρατήσαντες +ἀποκτείνωσιν. +γάρ +ἔλεγον +Μὴ +ἐν +τῇ +ἑορτῇ, +μή +ποτε +ἔσται +θόρυβος +τοῦ +λαοῦ. +Καὶ +ὄντος +αὐτοῦ +ἐν +Βηθανίᾳ +ἐν +τῇ +οἰκίᾳ +Σίμωνος +τοῦ +λεπροῦ, +κατακειμένου +αὐτοῦ +ἦλθεν +γυνὴ +ἔχουσα +ἀλάβαστρον +μύρου +νάρδου +πιστικῆς +πολυτελοῦς· +συντρίψασα +τὴν +ἀλάβαστρον +κατέχεεν +αὐτοῦ +τῆς +κεφαλῆς. +δέ +τινες +ἦσαν +ἀγανακτοῦντες +πρὸς +ἑαυτούς +Εἰς +τί +ἡ +ἀπώλεια +αὕτη +τοῦ +μύρου +γέγονεν; +γὰρ +ἠδύνατο +τοῦτο +τὸ +μύρον +πραθῆναι +ἐπάνω +δηναρίων +τριακοσίων +καὶ +δοθῆναι +τοῖς +πτωχοῖς· +καὶ +ἐνεβριμῶντο +αὐτῇ. +δὲ +ὁ +Ἰησοῦς +εἶπεν +Ἄφετε +αὐτήν· +τί +αὐτῇ +κόπους +παρέχετε; +καλὸν +ἔργον +ἠργάσατο +ἐν +ἐμοί. +γὰρ +πάντοτε +τοὺς +πτωχοὺς +ἔχετε +μεθ’ +ἑαυτῶν, +καὶ +ὅταν +θέλητε +δύνασθε +αὐτοῖς +εὖ +ποιῆσαι, +δὲ +ἐμὲ +οὐ +πάντοτε +ἔχετε. +ὃ +ἔσχεν +ἐποίησεν· +προέλαβεν +μυρίσαι +τὸ +σῶμά +μου +εἰς +τὸν +ἐνταφιασμόν. +δὲ +ἀμὴν +λέγω +ὑμῖν, +ἐὰν +ὅπου +κηρυχθῇ +τὸ +εὐαγγέλιον +εἰς +ὅλον +τὸν +κόσμον, +καὶ +ὃ +ἐποίησεν +αὕτη +λαληθήσεται +εἰς +μνημόσυνον +αὐτῆς. +Καὶ +Ἰούδας +Ἰσκαριὼθ, +ὁ +εἷς +τῶν +δώδεκα, +ἀπῆλθεν +πρὸς +τοὺς +ἀρχιερεῖς +ἵνα +αὐτὸν +παραδοῖ +αὐτοῖς. +δὲ +οἱ +ἀκούσαντες +ἐχάρησαν +καὶ +ἐπηγγείλαντο +αὐτῷ +ἀργύριον +δοῦναι. +καὶ +ἐζήτει +πῶς +αὐτὸν +εὐκαίρως +παραδοῖ. +Καὶ +τῇ +πρώτῃ +ἡμέρᾳ +τῶν +ἀζύμων, +ὅτε +τὸ +πάσχα +ἔθυον, +λέγουσιν +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ +θέλεις +Ποῦ +ἀπελθόντες +ἑτοιμάσωμεν +ἵνα +φάγῃς +τὸ +πάσχα; +καὶ +ἀποστέλλει +δύο +τῶν +μαθητῶν +αὐτοῦ +καὶ +λέγει +αὐτοῖς +Ὑπάγετε +εἰς +τὴν +πόλιν, +καὶ +ἀπαντήσει +ὑμῖν +ἄνθρωπος +κεράμιον +ὕδατος +βαστάζων· +ἀκολουθήσατε +αὐτῷ, +καὶ +ἐὰν +ὅπου +εἰσέλθῃ +εἴπατε +τῷ +οἰκοδεσπότῃ +ὅτι +Ὁ +Διδάσκαλος +λέγει +Ποῦ +ἐστιν +τὸ +κατάλυμά +μου, +ὅπου +τὸ +πάσχα +μετὰ +τῶν +μαθητῶν +μου +φάγω; +καὶ +αὐτὸς +ὑμῖν +δείξει +ἀνάγαιον +μέγα +ἐστρωμένον +ἕτοιμον· +καὶ +ἐκεῖ +ἑτοιμάσατε +ἡμῖν. +καὶ +ἐξῆλθον +οἱ +μαθηταὶ +καὶ +ἦλθον +εἰς +τὴν +πόλιν +καὶ +εὗρον +καθὼς +εἶπεν +αὐτοῖς, +καὶ +ἡτοίμασαν +τὸ +πάσχα. +Καὶ +ὀψίας +γενομένης +ἔρχεται +μετὰ +τῶν +δώδεκα. +καὶ +αὐτῶν +ἀνακειμένων +καὶ +ἐσθιόντων +ὁ +Ἰησοῦς +εἶπεν +Ἀμὴν +λέγω +ὑμῖν +ὅτι +παραδώσει +με, +εἷς +ἐξ +ὑμῶν +ὁ +ἐσθίων +μετ’ +ἐμοῦ. +ἤρξαντο +λυπεῖσθαι +καὶ +λέγειν +αὐτῷ +εἷς +κατὰ +εἷς +Μήτι +ἐγώ; +δὲ +ὁ +εἶπεν +αὐτοῖς +Εἷς +τῶν +δώδεκα, +ὁ +ἐμβαπτόμενος +μετ’ +ἐμοῦ +εἰς +τὸ +τρύβλιον. +ὅτι +μὲν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ὑπάγει +καθὼς +γέγραπται +περὶ +αὐτοῦ· +δὲ +οὐαὶ +τῷ +ἀνθρώπῳ +ἐκείνῳ +δι’ +οὗ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +παραδίδοται· +καλὸν +αὐτῷ +εἰ +οὐκ +ἐγεννήθη +ὁ +ἄνθρωπος +ἐκεῖνος. +Καὶ +ἐσθιόντων +αὐτῶν +λαβὼν +ἄρτον +εὐλογήσας +ἔκλασεν +καὶ +ἔδωκεν +αὐτοῖς +καὶ +εἶπεν +Λάβετε· +τοῦτό +ἐστιν +τὸ +σῶμά +μου. +καὶ +λαβὼν +ποτήριον +εὐχαριστήσας +ἔδωκεν +αὐτοῖς, +καὶ +ἔπιον +ἐξ +αὐτοῦ +πάντες. +καὶ +εἶπεν +αὐτοῖς +Τοῦτό +ἐστιν +τὸ +αἷμά +μου +τῆς +διαθήκης +τὸ +ἐκχυννόμενον +ὑπὲρ +πολλῶν. +ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐκέτι +οὐ +μὴ +πίω +ἐκ +τοῦ +γενήματος +τῆς +ἀμπέλου +ἕως +τῆς +ἡμέρας +ἐκείνης +ὅταν +αὐτὸ +πίνω +καινὸν +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ. +Καὶ +ὑμνήσαντες +ἐξῆλθον +εἰς +τὸ +ὄρος +τῶν +Ἐλαιῶν. +Καὶ +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +ὅτι +Πάντες +σκανδαλισθήσεσθε, +ὅτι +γέγραπται +Πατάξω +τὸν +ποιμένα, +καὶ +τὰ +πρόβατα +διασκορπισθήσονται. +ἀλλὰ +μετὰ +τὸ +ἐγερθῆναί +με +προάξω +ὑμᾶς +εἰς +τὴν +Γαλιλαίαν. +δὲ +ὁ +Πέτρος +ἔφη +αὐτῷ +Εἰ +καὶ +πάντες +σκανδαλισθήσονται, +ἀλλ’ +οὐκ +ἐγώ. +καὶ +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἀμὴν +λέγω +σοι +ὅτι +σὺ +σήμερον +ταύτῃ +τῇ +νυκτὶ +πρὶν +ἢ +δὶς +ἀλέκτορα +φωνῆσαι +τρίς +με +ἀπαρνήσῃ. +δὲ +ὁ +ἐκπερισσῶς +ἐλάλει +Ἐὰν +δέῃ +με +συναποθανεῖν +σοι, +οὐ +μή +σε +ἀπαρνήσομαι. +δὲ +ὡσαύτως +καὶ +πάντες +ἔλεγον. +Καὶ +ἔρχονται +εἰς +χωρίον +οὗ +τὸ +ὄνομα +Γεθσημανεί, +καὶ +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +Καθίσατε +ὧδε +ἕως +προσεύξωμαι. +καὶ +παραλαμβάνει +τὸν +Πέτρον +καὶ +τὸν +Ἰάκωβον +καὶ +τὸν +Ἰωάνην +μετ’ +αὐτοῦ, +καὶ +ἤρξατο +ἐκθαμβεῖσθαι +καὶ +ἀδημονεῖν, +καὶ +λέγει +αὐτοῖς +Περίλυπός +ἐστιν +ἡ +ψυχή +μου +ἕως +θανάτου· +μείνατε +ὧδε +καὶ +γρηγορεῖτε. +καὶ +προελθὼν +μικρὸν +ἔπιπτεν +ἐπὶ +τῆς +γῆς, +καὶ +προσηύχετο +ἵνα +εἰ +δυνατόν +ἐστιν +παρέλθῃ +ἀπ’ +αὐτοῦ +ἡ +ὥρα, +καὶ +ἔλεγεν +Ἀββᾶ +ὁ +Πατήρ, +πάντα +δυνατά +σοι· +παρένεγκε +τὸ +ποτήριον +τοῦτο +ἀπ’ +ἐμοῦ· +ἀλλ’ +οὐ +τί +ἐγὼ +θέλω +ἀλλὰ +τί +σύ. +καὶ +ἔρχεται +καὶ +εὑρίσκει +αὐτοὺς +καθεύδοντας, +καὶ +λέγει +τῷ +Πέτρῳ +Σίμων, +καθεύδεις; +οὐκ +ἴσχυσας +μίαν +ὥραν +γρηγορῆσαι; +γρηγορεῖτε +καὶ +προσεύχεσθε, +ἵνα +μὴ +ἔλθητε +εἰς +πειρασμόν· +μὲν +τὸ +πνεῦμα +πρόθυμον, +δὲ +ἡ +σὰρξ +ἀσθενής. +καὶ +πάλιν +ἀπελθὼν +προσηύξατο +τὸν +αὐτὸν +λόγον +εἰπών. +καὶ +πάλιν +ἐλθὼν +εὗρεν +αὐτοὺς +καθεύδοντας, +γὰρ +ἦσαν +καταβαρυνόμενοι, +αὐτῶν +οἱ +ὀφθαλμοὶ +καὶ +οὐκ +ᾔδεισαν +τί +ἀποκριθῶσιν +αὐτῷ. +καὶ +ἔρχεται +τὸ +τρίτον +καὶ +λέγει +αὐτοῖς +Καθεύδετε +τὸ +λοιπὸν +καὶ +ἀναπαύεσθε· +ἀπέχει· +ἦλθεν +ἡ +ὥρα, +ἰδοὺ +παραδίδοται +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +εἰς +τὰς +χεῖρας +τῶν +ἁμαρτωλῶν. +ἐγείρεσθε +ἄγωμεν· +ἰδοὺ +ὁ +παραδιδούς +με +ἤγγικεν. +Καὶ +εὐθὺς +ἔτι +αὐτοῦ +λαλοῦντος +παραγίνεται +ὁ +Ἰούδας +εἷς +τῶν +δώδεκα, +καὶ +μετ’ +αὐτοῦ +ὄχλος +μετὰ +μαχαιρῶν +καὶ +ξύλων +παρὰ +τῶν +ἀρχιερέων +καὶ +τῶν +γραμματέων +καὶ +τῶν +πρεσβυτέρων. +δὲ +δεδώκει +ὁ +παραδιδοὺς +αὐτὸν +σύσσημον +αὐτοῖς +λέγων +ἂν +Ὃν +φιλήσω +αὐτός +ἐστιν· +κρατήσατε +αὐτὸν +καὶ +ἀπάγετε +ἀσφαλῶς. +καὶ +ἐλθὼν +εὐθὺς +προσελθὼν +αὐτῷ +λέγει +Ῥαββεί, +καὶ +κατεφίλησεν +αὐτόν· +δὲ +οἱ +ἐπέβαλαν +τὰς +χεῖρας +αὐτῷ +καὶ +ἐκράτησαν +αὐτόν. +δέ +εἷς +τις +τῶν +παρεστηκότων +σπασάμενος +τὴν +μάχαιραν +ἔπαισεν +τὸν +δοῦλον +τοῦ +ἀρχιερέως +καὶ +ἀφεῖλεν +αὐτοῦ +τὸ +ὠτάριον. +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Ὡς +ἐπὶ +λῃστὴν +ἐξήλθατε +μετὰ +μαχαιρῶν +καὶ +ξύλων +συλλαβεῖν +με· +καθ’ +ἡμέραν +ἤμην +πρὸς +ὑμᾶς +ἐν +τῷ +ἱερῷ +διδάσκων, +καὶ +οὐκ +ἐκρατήσατέ +με· +ἀλλ’ +ἵνα +πληρωθῶσιν +αἱ +γραφαί. +καὶ +ἀφέντες +αὐτὸν +ἔφυγον +πάντες. +Καὶ +νεανίσκος +τις +συνηκολούθει +αὐτῷ +περιβεβλημένος +σινδόνα +ἐπὶ +γυμνοῦ, +καὶ +κρατοῦσιν +αὐτόν· +δὲ +ὁ +καταλιπὼν +τὴν +σινδόνα +γυμνὸς +ἔφυγεν. +Καὶ +ἀπήγαγον +τὸν +Ἰησοῦν +πρὸς +τὸν +ἀρχιερέα, +καὶ +συνέρχονται +πάντες +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +καὶ +οἱ +γραμματεῖς. +καὶ +ὁ +Πέτρος +ἀπὸ +μακρόθεν +ἠκολούθησεν +αὐτῷ +ἕως +ἔσω +εἰς +τὴν +αὐλὴν +τοῦ +ἀρχιερέως, +καὶ +ἦν +συνκαθήμενος +μετὰ +τῶν +ὑπηρετῶν +καὶ +θερμαινόμενος +πρὸς +τὸ +φῶς. +δὲ +Οἱ +ἀρχιερεῖς +καὶ +ὅλον +τὸ +συνέδριον +ἐζήτουν +κατὰ +τοῦ +Ἰησοῦ +μαρτυρίαν +εἰς +τὸ +θανατῶσαι +αὐτόν, +καὶ +οὐχ +ηὕρισκον· +γὰρ +πολλοὶ +ἐψευδομαρτύρουν +κατ’ +αὐτοῦ, +καὶ +ἴσαι +αἱ +μαρτυρίαι +οὐκ +ἦσαν. +καί +τινες +ἀναστάντες +ἐψευδομαρτύρουν +κατ’ +αὐτοῦ +λέγοντες +ὅτι +Ἠμεῖς +ἠκούσαμεν +αὐτοῦ +λέγοντος +ὅτι +Ἐγὼ +καταλύσω +τὸν +ναὸν +τοῦτον +τὸν +χειροποίητον +καὶ +διὰ +τριῶν +ἡμερῶν +ἄλλον +ἀχειροποίητον +οἰκοδομήσω. +καὶ +οὐδὲ +οὕτως +ἴση +ἦν +ἡ +μαρτυρία +αὐτῶν. +καὶ +ἀναστὰς +εἰς +μέσον +ὁ +ἀρχιερεὺς +ἐπηρώτησεν +τὸν +Ἰησοῦν +λέγων +Οὐκ +ἀποκρίνῃ +οὐδέν; +τί +οὗτοί +σου +καταμαρτυροῦσιν; +δὲ +ὁ +ἐσιώπα +καὶ +οὐκ +ἀπεκρίνατο +οὐδέν. +πάλιν +ὁ +ἀρχιερεὺς +ἐπηρώτα +αὐτὸν +καὶ +λέγει +αὐτῷ +Σὺ +εἶ +ὁ +Χριστὸς +ὁ +Υἱὸς +τοῦ +Εὐλογητοῦ; +δὲ +ὁ +Ἰησοῦς +εἶπεν +Ἐγώ +εἰμι, +καὶ +ὄψεσθε +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἐκ +δεξιῶν +τῆς +δυνάμεως +καθήμενον +καὶ +ἐρχόμενον +μετὰ +τῶν +νεφελῶν +τοῦ +οὐρανοῦ. +δὲ +ὁ +ἀρχιερεὺς +διαρρήξας +τοὺς +χιτῶνας +αὐτοῦ +λέγει +Τί +ἔτι +χρείαν +μαρτύρων; +ἔχομεν +ἠκούσατε +τῆς +βλασφημίας· +τί +ὑμῖν +φαίνεται; +δὲ +οἱ +πάντες +κατέκριναν +αὐτὸν +ἔνοχον +εἶναι +θανάτου. +Καὶ +ἤρξαντό +τινες +ἐμπτύειν +αὐτῷ +καὶ +περικαλύπτειν +αὐτοῦ +τὸ +πρόσωπον +καὶ +κολαφίζειν +αὐτὸν +καὶ +λέγειν +αὐτῷ +Προφήτευσον, +καὶ +οἱ +ὑπηρέται +ῥαπίσμασιν +αὐτὸν +ἔλαβον. +Καὶ +ὄντος +τοῦ +Πέτρου +κάτω +ἐν +τῇ +αὐλῇ +ἔρχεται +μία +τῶν +παιδισκῶν +τοῦ +ἀρχιερέως, +καὶ +ἰδοῦσα +τὸν +Πέτρον +θερμαινόμενον +ἐμβλέψασα +αὐτῷ +λέγει +Καὶ +σὺ +μετὰ +τοῦ +Ναζαρηνοῦ +τοῦ +Ἰησοῦ. +ἦσθα +δὲ +ὁ +ἠρνήσατο +λέγων +Οὔτε +οἶδα +οὔτε +ἐπίσταμαι +σὺ +τί +λέγεις. +καὶ +ἐξῆλθεν +ἔξω +εἰς +τὸ +προαύλιον· +καὶ +ἡ +παιδίσκη +ἰδοῦσα +αὐτὸν +ἤρξατο +πάλιν +λέγειν +τοῖς +παρεστῶσιν +ὅτι +Οὗτος +ἐξ +αὐτῶν +ἐστιν. +δὲ +ὁ +πάλιν +ἠρνεῖτο. +καὶ +μετὰ +μικρὸν +πάλιν +οἱ +παρεστῶτες +ἔλεγον +τῷ +Πέτρῳ +Ἀληθῶς +ἐξ +αὐτῶν +εἶ· +γὰρ +καὶ +Γαλιλαῖος +εἶ. +δὲ +ὁ +ἤρξατο +ἀναθεματίζειν +καὶ +ὀμνύναι +ὅτι +Οὐκ +οἶδα +τὸν +ἄνθρωπον +τοῦτον +ὃν +λέγετε. +καὶ +εὐθὺς +ἐκ +δευτέρου +ἀλέκτωρ +ἐφώνησεν. +καὶ +ἀνεμνήσθη +ὁ +Πέτρος +τὸ +ῥῆμα +ὡς +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +ὅτι +Πρὶν +ἀλέκτορα +δὶς +φωνῆσαι +τρίς +με +ἀπαρνήσῃ· +καὶ +ἐπιβαλὼν +ἔκλαιεν. +Καὶ +εὐθὺς +πρωῒ +οἱ +ἀρχιερεῖς +συμβούλιον +ἑτοιμάσαντες +μετὰ +τῶν +πρεσβυτέρων +καὶ +γραμματέων +καὶ +ὅλον +τὸ +συνέδριον, +δήσαντες +τὸν +Ἰησοῦν +ἀπήνεγκαν +καὶ +παρέδωκαν +Πειλάτῳ. +καὶ +ἐπηρώτησεν +αὐτὸν +ὁ +Πειλᾶτος +Σὺ +εἶ +ὁ +Βασιλεὺς +τῶν +Ἰουδαίων; +δὲ +ὁ +ἀποκριθεὶς +αὐτῷ +λέγει +Σὺ +λέγεις. +καὶ +κατηγόρουν +αὐτοῦ +οἱ +ἀρχιερεῖς +πολλά. +δὲ +ὁ +Πειλᾶτος +πάλιν +ἐπηρώτα +αὐτὸν +λέγων +Οὐκ +ἀποκρίνῃ +οὐδέν; +ἴδε +πόσα +σου +κατηγοροῦσιν. +δὲ +ὁ +Ἰησοῦς +οὐκέτι +οὐδὲν +ἀπεκρίθη, +ὥστε +θαυμάζειν +τὸν +Πειλᾶτον. +δὲ +Κατὰ +ἑορτὴν +ἀπέλυεν +αὐτοῖς +ἕνα +δέσμιον +ὃν +παρῃτοῦντο. +δὲ +ἦν +δεδεμένος, +ὁ +λεγόμενος +Βαραββᾶς +μετὰ +τῶν +στασιαστῶν +οἵτινες +ἐν +τῇ +στάσει +φόνον +πεποιήκεισαν. +καὶ +ἀναβὰς +ὁ +ὄχλος +ἤρξατο +αἰτεῖσθαι +καθὼς +ἐποίει +αὐτοῖς. +δὲ +ὁ +Πειλᾶτος +ἀπεκρίθη +αὐτοῖς +λέγων +Θέλετε +ἀπολύσω +ὑμῖν +τὸν +Βασιλέα +τῶν +Ἰουδαίων; +γὰρ +ἐγίνωσκεν +ὅτι +διὰ +φθόνον +παραδεδώκεισαν +αὐτὸν +οἱ +ἀρχιερεῖς. +δὲ +οἱ +ἀρχιερεῖς +ἀνέσεισαν +τὸν +ὄχλον +ἵνα +μᾶλλον +τὸν +Βαραββᾶν +ἀπολύσῃ +αὐτοῖς. +δὲ +ὁ +Πειλᾶτος +πάλιν +ἀποκριθεὶς +ἔλεγεν +αὐτοῖς +οὖν +Τί +ποιήσω +ὃν +λέγετε +τὸν +Βασιλέα +τῶν +Ἰουδαίων; +δὲ +οἱ +πάλιν +ἔκραξαν +Σταύρωσον +αὐτόν. +δὲ +ὁ +Πειλᾶτος +ἔλεγεν +αὐτοῖς +γὰρ +ἐποίησεν +Τί +κακόν; +δὲ +οἱ +περισσῶς +ἔκραξαν +Σταύρωσον +αὐτόν. +δὲ +ὁ +Πειλᾶτος +βουλόμενος +τῷ +ὄχλῳ +τὸ +ἱκανὸν +ποιῆσαι +ἀπέλυσεν +αὐτοῖς +τὸν +Βαραββᾶν, +καὶ +παρέδωκεν +τὸν +Ἰησοῦν +φραγελλώσας +ἵνα +σταυρωθῇ. +δὲ +Οἱ +στρατιῶται +ἀπήγαγον +αὐτὸν +ἔσω +τῆς +αὐλῆς, +ὅ +ἐστιν +Πραιτώριον, +καὶ +συνκαλοῦσιν +ὅλην +τὴν +σπεῖραν. +καὶ +ἐνδιδύσκουσιν +αὐτὸν +πορφύραν +καὶ +περιτιθέασιν +αὐτῷ +πλέξαντες +ἀκάνθινον +στέφανον· +καὶ +ἤρξαντο +ἀσπάζεσθαι +αὐτόν +Χαῖρε, +Βασιλεῦ +τῶν +Ἰουδαίων· +καὶ +ἔτυπτον +αὐτοῦ +τὴν +κεφαλὴν +καλάμῳ +καὶ +ἐνέπτυον +αὐτῷ, +καὶ +τιθέντες +τὰ +γόνατα +προσεκύνουν +αὐτῷ. +καὶ +ὅτε +ἐνέπαιξαν +αὐτῷ, +ἐξέδυσαν +αὐτὸν +τὴν +πορφύραν +καὶ +ἐνέδυσαν +αὐτὸν +τὰ +ἱμάτια +αὐτοῦ. +Καὶ +ἐξάγουσιν +αὐτὸν +ἵνα +σταυρώσωσιν +αὐτόν. +καὶ +ἀγγαρεύουσιν +παράγοντά +τινα +Σίμωνα +Κυρηναῖον +ἐρχόμενον +ἀπ’ +ἀγροῦ, +τὸν +πατέρα +Ἀλεξάνδρου +καὶ +Ῥούφου, +ἵνα +ἄρῃ +τὸν +σταυρὸν +αὐτοῦ. +καὶ +φέρουσιν +αὐτὸν +ἐπὶ +τὸν +τόπον, +Γολγοθᾶν +ὅ +ἐστιν +μεθερμηνευόμενος +Κρανίου +τόπος. +καὶ +ἐδίδουν +αὐτῷ +ἐσμυρνισμένον +οἶνον· +δὲ +ὃς +οὐκ +ἔλαβεν. +καὶ +σταυροῦσιν +αὐτὸν, +καὶ +διαμερίζονται +τὰ +ἱμάτια +αὐτοῦ, +βάλλοντες +κλῆρον +ἐπ’ +αὐτὰ +τίς +τί +ἄρῃ. +δὲ +ἦν +ὥρα +τρίτη +καὶ +ἐσταύρωσαν +αὐτόν. +καὶ +ἦν +ἐπιγεγραμμένη +ἡ +ἐπιγραφὴ +τῆς +αἰτίας +αὐτοῦ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ. +Καὶ +σὺν +αὐτῷ +σταυροῦσιν +δύο +λῃστάς, +ἕνα +ἐκ +δεξιῶν +καὶ +ἕνα +ἐξ +εὐωνύμων +αὐτοῦ. +Καὶ +οἱ +παραπορευόμενοι +ἐβλασφήμουν +αὐτὸν +κινοῦντες +τὰς +κεφαλὰς +αὐτῶν +καὶ +λέγοντες +Οὐὰ +ὁ +καταλύων +τὸν +ναὸν +καὶ +οἰκοδομῶν +ἐν +τρισὶν +ἡμέραις, +σῶσον +σεαυτὸν +καταβὰς +ἀπὸ +τοῦ +σταυροῦ. +ὁμοίως +καὶ +οἱ +ἀρχιερεῖς +ἐμπαίζοντες +πρὸς +ἀλλήλους +μετὰ +τῶν +γραμματέων +ἔλεγον +Ἄλλους +ἔσωσεν, +ἑαυτὸν +σῶσαι· +οὐ +δύναται +ὁ +Χριστὸς +ὁ +Βασιλεὺς +Ἰσραὴλ +καταβάτω +νῦν +ἀπὸ +τοῦ +σταυροῦ, +ἵνα +ἴδωμεν +καὶ +πιστεύσωμεν. +καὶ +οἱ +συνεσταυρωμένοι +σὺν +αὐτῷ +ὠνείδιζον +αὐτόν. +Καὶ +γενομένης +ὥρας +ἕκτης +σκότος +ἐγένετο +ἐφ’ +ὅλην +τὴν +γῆν +ἕως +ὥρας +ἐνάτης. +καὶ +τῇ +ἐνάτῃ +ὥρᾳ +ἐβόησεν +ὁ +Ἰησοῦς +φωνῇ +μεγάλῃ +Ἐλωῒ +Ἐλωῒ +λαμὰ +σαβαχθανεί; +ὅ +ἐστιν +μεθερμηνευόμενον +Ὁ +Θεός +μου +ὁ +Θεός +μου, +εἰς +τί +ἐγκατέλιπές +με; +καί +τινες +τῶν +παρεστηκότων +ἀκούσαντες +ἔλεγον +Ἴδε +Ἠλείαν +φωνεῖ. +δέ +τις +δραμὼν +καὶ +γεμίσας +σπόγγον +ὄξους +περιθεὶς +καλάμῳ +ἐπότιζεν +αὐτόν, +λέγων +Ἄφετε +ἴδωμεν +εἰ +ἔρχεται +Ἠλείας +καθελεῖν +αὐτόν. +δὲ +ὁ +Ἰησοῦς +ἀφεὶς +φωνὴν +μεγάλην +ἐξέπνευσεν. +Καὶ +τὸ +καταπέτασμα +τοῦ +ναοῦ +ἐσχίσθη +εἰς +δύο +ἀπ’ +ἄνωθεν +ἕως +κάτω. +δὲ +ὁ +κεντυρίων +ὁ +παρεστηκὼς +ἐξ +ἐναντίας +αὐτοῦ +Ἰδὼν +ὅτι +οὕτως +ἐξέπνευσεν, +εἶπεν +Ἀληθῶς +οὗτος +ὁ +ἄνθρωπος +Υἱὸς +Θεοῦ +ἦν. +δὲ +Ἦσαν +καὶ +γυναῖκες +ἀπὸ +μακρόθεν +θεωροῦσαι, +ἐν +αἷς +καὶ +Μαρία +ἡ +Μαγδαληνὴ +καὶ +Μαρία +ἡ +Ἰακώβου +τοῦ +μικροῦ +καὶ +Ἰωσῆτος +μήτηρ +καὶ +Σαλώμη, +αἳ +ὅτε +ἦν +ἐν +τῇ +Γαλιλαίᾳ +ἠκολούθουν +αὐτῷ +καὶ +διηκόνουν +αὐτῷ, +καὶ +ἄλλαι +πολλαὶ +αἱ +συναναβᾶσαι +αὐτῷ +εἰς +Ἱεροσόλυμα. +Καὶ +ἤδη +ὀψίας +γενομένης, +ἐπεὶ +ἦν +Παρασκευή, +ὅ +ἐστιν +προσάββατον, +ἐλθὼν +Ἰωσὴφ +ὁ +ἀπὸ +Ἀριμαθαίας, +εὐσχήμων +βουλευτής, +ὃς +καὶ +αὐτὸς +ἦν +προσδεχόμενος +τὴν +βασιλείαν +τοῦ +Θεοῦ, +τολμήσας +εἰσῆλθεν +πρὸς +τὸν +Πειλᾶτον +καὶ +ᾐτήσατο +τὸ +σῶμα +τοῦ +Ἰησοῦ. +δὲ +ὁ +Πειλᾶτος +ἐθαύμασεν +εἰ +ἤδη +τέθνηκεν, +καὶ +προσκαλεσάμενος +τὸν +κεντυρίωνα +ἐπηρώτησεν +αὐτὸν +εἰ +πάλαι +ἀπέθανεν· +καὶ +γνοὺς +ἀπὸ +τοῦ +κεντυρίωνος +ἐδωρήσατο +τὸ +πτῶμα +τῷ +Ἰωσήφ. +καὶ +ἀγοράσας +σινδόνα +καθελὼν +αὐτὸν +ἐνείλησεν +τῇ +σινδόνι +καὶ +κατέθηκεν +αὐτὸν +ἐν +μνήματι +ὃ +ἦν +λελατομημένον +ἐκ +πέτρας, +καὶ +προσεκύλισεν +λίθον +ἐπὶ +τὴν +θύραν +τοῦ +μνημείου. +δὲ +ἡ +Μαρία +ἡ +Μαγδαληνὴ +καὶ +Μαρία +ἡ +Ἰωσῆτος +ἐθεώρουν +ποῦ +τέθειται. +Καὶ +διαγενομένου +τοῦ +σαββάτου +Μαρία +ἡ +Μαγδαληνὴ +καὶ +Μαρία +ἡ +τοῦ +Ἰακώβου +καὶ +Σαλώμη +ἠγόρασαν +ἀρώματα +ἵνα +ἐλθοῦσαι +ἀλείψωσιν +αὐτόν. +καὶ +λίαν +πρωῒ +τῇ +μιᾷ +τῶν +σαββάτων +ἔρχονται +ἐπὶ +τὸ +μνῆμα, +ἀνατείλαντος +τοῦ +ἡλίου. +καὶ +ἔλεγον +πρὸς +ἑαυτάς +Τίς +ἀποκυλίσει +ἡμῖν +τὸν +λίθον +ἐκ +τῆς +θύρας +τοῦ +μνημείου; +καὶ +ἀναβλέψασαι +θεωροῦσιν +ὅτι +ἀνακεκύλισται +ὁ +λίθος· +γὰρ +ἦν +μέγας +σφόδρα. +καὶ +εἰσελθοῦσαι +εἰς +τὸ +μνημεῖον +εἶδον +νεανίσκον +καθήμενον +ἐν +τοῖς +δεξιοῖς +περιβεβλημένον +στολὴν +λευκήν, +καὶ +ἐξεθαμβήθησαν. +δὲ +ὁ +λέγει +αὐταῖς +Μὴ +ἐκθαμβεῖσθε· +ζητεῖτε +Ἰησοῦν +τὸν +Ναζαρηνὸν +τὸν +ἐσταυρωμένον· +ἠγέρθη, +οὐκ +ἔστιν +ὧδε· +ἴδε +ὁ +τόπος +ὅπου +ἔθηκαν +αὐτόν. +ἀλλὰ +ὑπάγετε +εἴπατε +τοῖς +μαθηταῖς +αὐτοῦ +καὶ +τῷ +Πέτρῳ +ὅτι +Προάγει +ὑμᾶς +εἰς +τὴν +Γαλιλαίαν· +ἐκεῖ +αὐτὸν +ὄψεσθε, +καθὼς +εἶπεν +ὑμῖν. +καὶ +ἐξελθοῦσαι +ἔφυγον +ἀπὸ +τοῦ +μνημείου, +γὰρ +εἶχεν +αὐτὰς +τρόμος +καὶ +ἔκστασις· +καὶ +οὐδενὶ +οὐδὲν +εἶπαν· +γάρ. +ἐφοβοῦντο +δὲ +[[Ἀναστὰς +πρωῒ +πρώτῃ +σαββάτου +ἐφάνη +πρῶτον +Μαρίᾳ +τῇ +Μαγδαληνῇ, +παρ’ +ἧς +ἐκβεβλήκει +ἑπτὰ +δαιμόνια. +ἐκείνη +πορευθεῖσα +ἀπήγγειλεν +τοῖς +μετ’ +αὐτοῦ +γενομένοις +πενθοῦσι +καὶ +κλαίουσιν· +κἀκεῖνοι +ἀκούσαντες +ὅτι +ζῇ +καὶ +ἐθεάθη +ὑπ’ +αὐτῆς +ἠπίστησαν. +δὲ +Μετὰ +ταῦτα +δυσὶν +ἐξ +αὐτῶν +περιπατοῦσιν +ἐφανερώθη +ἐν +ἑτέρᾳ +μορφῇ +πορευομένοις +εἰς +ἀγρόν· +κἀκεῖνοι +ἀπελθόντες +ἀπήγγειλαν +τοῖς +λοιποῖς· +οὐδὲ +ἐκείνοις +ἐπίστευσαν. +δὲ +Ὕστερον +ἀνακειμένοις +αὐτοῖς +τοῖς +ἕνδεκα +ἐφανερώθη, +καὶ +ὠνείδισεν +τὴν +ἀπιστίαν +αὐτῶν +καὶ +σκληροκαρδίαν +ὅτι +τοῖς +θεασαμένοις +αὐτὸν +ἐγηγερμένον +οὐκ +ἐπίστευσαν. +καὶ +εἶπεν +αὐτοῖς +Πορευθέντες +εἰς +τὸν +κόσμον +ἅπαντα +κηρύξατε +τὸ +εὐαγγέλιον +πάσῃ +τῇ +κτίσει. +ὁ +πιστεύσας +καὶ +βαπτισθεὶς +σωθήσεται, +δὲ +ὁ +ἀπιστήσας +κατακριθήσεται. +δὲ +σημεῖα +ταῦτα +τοῖς +πιστεύσασιν +παρακολουθήσει, +ἐν +τῷ +ὀνόματί +μου +δαιμόνια +ἐκβαλοῦσιν, +γλώσσαις +καιναῖς, +λαλήσουσιν +ὄφεις +ἀροῦσιν +κἂν +θανάσιμόν +τι +πίωσιν +οὐ +μὴ +αὐτοὺς +βλάψῃ, +ἐπὶ +ἀρρώστους +χεῖρας +ἐπιθήσουσιν +καὶ +καλῶς +ἕξουσιν. +μὲν +οὖν +Ὁ +Κύριος +Ἰησοῦς +μετὰ +τὸ +λαλῆσαι +αὐτοῖς +ἀνελήμφθη +εἰς +τὸν +οὐρανὸν +καὶ +ἐκάθισεν +ἐκ +δεξιῶν +τοῦ +Θεοῦ. +δὲ +ἐκεῖνοι +ἐξελθόντες +ἐκήρυξαν +πανταχοῦ, +τοῦ +Κυρίου +συνεργοῦντος +καὶ +τὸν +λόγον +βεβαιοῦντος +διὰ +τῶν +ἐπακολουθούντων +σημείων.]] +δὲ +[[Πάντα +τὰ +παρηγγελμένα +τοῖς +περὶ +τὸν +Πέτρον +συντόμως +ἐξήγγειλαν. +δὲ +Μετὰ +ταῦτα +καὶ +αὐτὸς +ὁ +Ἰησοῦς +ἀπὸ +ἀνατολῆς +καὶ +ἄχρι +δύσεως +ἐξαπέστειλεν +δι’ +αὐτῶν +τὸ +ἱερὸν +καὶ +ἄφθαρτον +κήρυγμα +τῆς +αἰωνίου +σωτηρίας.]] +Ἐπειδήπερ +πολλοὶ +ἐπεχείρησαν +ἀνατάξασθαι +διήγησιν +περὶ +τῶν +πεπληροφορημένων +ἐν +ἡμῖν +πραγμάτων, +καθὼς +παρέδοσαν +ἡμῖν +οἱ +ἀπ’ +ἀρχῆς +αὐτόπται +καὶ +ὑπηρέται +γενόμενοι +τοῦ +λόγου, +ἔδοξε +κἀμοὶ +παρηκολουθηκότι +ἄνωθεν +πᾶσιν +ἀκριβῶς +καθεξῆς +σοι +γράψαι, +κράτιστε +Θεόφιλε, +ἵνα +ἐπιγνῷς +περὶ +ὧν +κατηχήθης +λόγων +τὴν +ἀσφάλειαν. +Ἐγένετο +ἐν +ταῖς +ἡμέραις +Ἠρῴδου +βασιλέως +τῆς +Ἰουδαίας +ἱερεύς +τις +ὀνόματι +Ζαχαρίας +ἐξ +ἐφημερίας +Ἀβιά, +καὶ +γυνὴ +αὐτῷ +ἐκ +τῶν +θυγατέρων +Ἀαρών, +καὶ +τὸ +ὄνομα +αὐτῆς +Ἐλεισάβετ. +δὲ +ἦσαν +δίκαιοι +ἀμφότεροι +ἐναντίον +τοῦ +Θεοῦ, +πορευόμενοι +ἐν +πάσαις +ταῖς +ἐντολαῖς +καὶ +δικαιώμασιν +τοῦ +Κυρίου +ἄμεμπτοι. +καὶ +οὐκ +ἦν +αὐτοῖς +τέκνον, +καθότι +ἦν +ἡ +Ἐλεισάβετ +στεῖρα, +καὶ +ἀμφότεροι +προβεβηκότες +ἦσαν. +ἐν +ταῖς +ἡμέραις +αὐτῶν +δὲ +Ἐγένετο +ἐν +τῷ +ἱερατεύειν +αὐτὸν +ἐν +τῇ +τάξει +τῆς +ἐφημερίας +αὐτοῦ +ἔναντι +τοῦ +Θεοῦ, +κατὰ +τὸ +ἔθος +τῆς +ἱερατείας +ἔλαχε +τοῦ +θυμιᾶσαι +εἰσελθὼν +εἰς +τὸν +ναὸν +τοῦ +Κυρίου, +καὶ +πᾶν +τὸ +πλῆθος +τοῦ +λαοῦ +ἦν +προσευχόμενον +ἔξω +τῇ +ὥρᾳ +τοῦ +θυμιάματος. +δὲ +ὤφθη +αὐτῷ +ἄγγελος +Κυρίου +ἑστὼς +ἐκ +δεξιῶν +τοῦ +θυσιαστηρίου +τοῦ +θυμιάματος. +καὶ +ἐταράχθη +Ζαχαρίας +ἰδών, +καὶ +φόβος +ἐπέπεσεν +ἐπ’ +αὐτόν. +δὲ +εἶπεν +πρὸς +αὐτὸν +ὁ +ἄγγελος +Μὴ +φοβοῦ, +Ζαχαρία, +διότι +εἰσηκούσθη +ἡ +δέησίς +σου, +καὶ +ἡ +γυνή +σου +Ἐλεισάβετ +γεννήσει +υἱόν +σοι, +καὶ +καλέσεις +τὸ +ὄνομα +αὐτοῦ +Ἰωάνην· +καὶ +ἔσται +σοι +χαρά +καὶ +ἀγαλλίασις, +καὶ +πολλοὶ +ἐπὶ +τῇ +γενέσει +αὐτοῦ +χαρήσονται. +γὰρ +ἔσται +μέγας +ἐνώπιον +Κυρίου, +καὶ +οἶνον +καὶ +σίκερα +οὐ +μὴ +πίῃ, +καὶ +Πνεύματος +Ἁγίου +πλησθήσεται +ἔτι +ἐκ +κοιλίας +μητρὸς +αὐτοῦ, +καὶ +πολλοὺς +τῶν +υἱῶν +Ἰσραὴλ +ἐπιστρέψει +ἐπὶ +Κύριον +τὸν +Θεὸν +αὐτῶν· +καὶ +αὐτὸς +προελεύσεται +ἐνώπιον +αὐτοῦ +ἐν +πνεύματι +καὶ +δυνάμει +Ἠλεία, +ἐπιστρέψαι +καρδίας +πατέρων +ἐπὶ +τέκνα +καὶ +ἀπειθεῖς +ἐν +φρονήσει +δικαίων, +ἑτοιμάσαι +Κυρίῳ +λαὸν +κατεσκευασμένον. +καὶ +εἶπεν +Ζαχαρίας +πρὸς +τὸν +ἄγγελον +Κατὰ +τί +γνώσομαι +τοῦτο; +γάρ +ἐγὼ +εἰμι +πρεσβύτης +καὶ +ἡ +γυνή +μου +προβεβηκυῖα +ἐν +ταῖς +ἡμέραις +αὐτῆς. +καὶ +ἀποκριθεὶς +ὁ +ἄγγελος +εἶπεν +αὐτῷ +Ἐγώ +εἰμι +Γαβριὴλ +ὁ +παρεστηκὼς +ἐνώπιον +τοῦ +Θεοῦ, +καὶ +ἀπεστάλην +λαλῆσαι +πρὸς +σὲ +καὶ +εὐαγγελίσασθαί +σοι +ταῦτα· +καὶ +ἰδοὺ +ἔσῃ +σιωπῶν +καὶ +μὴ +δυνάμενος +λαλῆσαι +ἄχρι +ἧς +ἡμέρας +γένηται +ταῦτα, +ἀνθ’ +ὧν +οὐκ +ἐπίστευσας +τοῖς +λόγοις +μου, +οἵτινες +πληρωθήσονται +εἰς +τὸν +καιρὸν +αὐτῶν. +καὶ +ἦν +προσδοκῶν +ὁ +λαὸς +τὸν +Ζαχαρίαν, +καὶ +ἐθαύμαζον +ἐν +τῷ +χρονίζειν +ἐν +τῷ +ναῷ +αὐτόν. +δὲ +ἐξελθὼν +οὐκ +ἐδύνατο +λαλῆσαι +αὐτοῖς, +καὶ +ἐπέγνωσαν +ὅτι +ὀπτασίαν +ἑώρακεν +ἐν +τῷ +ναῷ· +καὶ +αὐτὸς +ἦν +διανεύων +αὐτοῖς, +καὶ +διέμενεν +κωφός. +καὶ +ἐγένετο +ὡς +ἐπλήσθησαν +αἱ +ἡμέραι +τῆς +λειτουργίας +αὐτοῦ, +ἀπῆλθεν +εἰς +τὸν +οἶκον +αὐτοῦ. +δὲ +Μετὰ +ταύτας +τὰς +ἡμέρας +συνέλαβεν +Ἐλεισάβετ +ἡ +γυνὴ +αὐτοῦ, +καὶ +περιέκρυβεν +ἑαυτὴν +μῆνας +πέντε, +λέγουσα +ὅτι +Οὕτως +μοι +πεποίηκεν +Κύριος +ἐν +ἡμέραις +αἷς +ἐπεῖδεν +ἀφελεῖν +ὄνειδός +μου +ἐν +ἀνθρώποις. +δὲ +Ἐν +τῷ +μηνὶ +τῷ +ἕκτῳ +ἀπεστάλη +ὁ +ἄγγελος +Γαβριὴλ +ἀπὸ +τοῦ +Θεοῦ +εἰς +πόλιν +τῆς +Γαλιλαίας +ᾗ +ὄνομα +Ναζαρὲθ, +πρὸς +παρθένον +ἐμνηστευμένην +ἀνδρὶ +ᾧ +ὄνομα +Ἰωσὴφ, +ἐξ +οἴκου +Δαυείδ, +καὶ +τὸ +ὄνομα +τῆς +παρθένου +Μαριάμ. +καὶ +εἰσελθὼν +πρὸς +αὐτὴν +εἶπεν +Χαῖρε, +κεχαριτωμένη, +ὁ +Κύριος +μετὰ +σοῦ. +δὲ +ἡ +ἐπὶ +τῷ +λόγῳ +διεταράχθη, +καὶ +διελογίζετο +ποταπὸς +εἴη +ὁ +ἀσπασμὸς +οὗτος. +καὶ +εἶπεν +ὁ +ἄγγελος +αὐτῇ +Μὴ +φοβοῦ, +Μαριάμ· +γὰρ +εὗρες +χάριν +παρὰ +τῷ +Θεῷ· +καὶ +ἰδοὺ +συλλήμψῃ +ἐν +γαστρὶ +καὶ +τέξῃ +υἱόν, +καὶ +καλέσεις +τὸ +ὄνομα +αὐτοῦ +Ἰησοῦν. +οὗτος +ἔσται +μέγας +καὶ +Υἱὸς +Ὑψίστου +κληθήσεται, +καὶ +δώσει +αὐτῷ +Κύριος +ὁ +Θεὸς +τὸν +θρόνον +Δαυεὶδ +τοῦ +πατρὸς +αὐτοῦ, +καὶ +βασιλεύσει +ἐπὶ +τὸν +οἶκον +Ἰακὼβ +εἰς +τοὺς +αἰῶνας, +καὶ +τῆς +βασιλείας +αὐτοῦ +οὐκ +ἔσται +τέλος. +δὲ +εἶπεν +Μαριὰμ +πρὸς +τὸν +ἄγγελον +Πῶς +ἔσται +τοῦτο, +ἐπεὶ +ἄνδρα +οὐ +γινώσκω; +καὶ +ἀποκριθεὶς +ὁ +ἄγγελος +εἶπεν +αὐτῇ +Πνεῦμα +Ἅγιον +ἐπελεύσεται +ἐπὶ +σέ, +καὶ +δύναμις +Ὑψίστου +ἐπισκιάσει +σοι· +διὸ +καὶ +τὸ +γεννώμενον +ἅγιον +κληθήσεται +Υἱὸς +Θεοῦ. +καὶ +ἰδοὺ +Ἐλεισάβετ +ἡ +συγγενίς +σου +καὶ +αὐτὴ +συνείληφεν +υἱὸν +ἐν +γήρει +αὐτῆς, +καὶ +οὗτος +μὴν +ἕκτος +ἐστὶν +αὐτῇ +τῇ +καλουμένῃ +στείρᾳ· +ὅτι +οὐκ +ἀδυνατήσει +παρὰ +τοῦ +Θεοῦ +πᾶν +ῥῆμα. +δὲ +εἶπεν +Μαριάμ +Ἰδοὺ +ἡ +δούλη +Κυρίου· +γένοιτό +μοι +κατὰ +τὸ +ῥῆμά +σου. +καὶ +ἀπῆλθεν +ἀπ’ +αὐτῆς +ὁ +ἄγγελος. +δὲ +Μαριὰμ +Ἀναστᾶσα +ἐν +ταῖς +ἡμέραις +ταύταις +ἐπορεύθη +εἰς +τὴν +ὀρεινὴν +μετὰ +σπουδῆς +εἰς +πόλιν +Ἰούδα, +καὶ +εἰσῆλθεν +εἰς +τὸν +οἶκον +Ζαχαρίου +καὶ +ἠσπάσατο +τὴν +Ἐλεισάβετ. +καὶ +ἐγένετο +ὡς +ἤκουσεν +τὸν +ἀσπασμὸν +τῆς +Μαρίας +ἡ +Ἐλεισάβετ, +ἐσκίρτησεν +τὸ +βρέφος +ἐν +τῇ +κοιλίᾳ +αὐτῆς, +καὶ +ἐπλήσθη +Πνεύματος +Ἁγίου +ἡ +Ἐλεισάβετ, +καὶ +ἀνεφώνησεν +κραυγῇ +μεγάλῃ +καὶ +εἶπεν +Εὐλογημένη +σὺ +ἐν +γυναιξίν, +καὶ +εὐλογημένος +ὁ +καρπὸς +τῆς +κοιλίας +σου. +καὶ +πόθεν +μοι +τοῦτο +ἵνα +ἔλθῃ +ἡ +μήτηρ +τοῦ +Κυρίου +μου +πρὸς +ἐμέ; +γὰρ +ἰδοὺ +ὡς +ἐγένετο +ἡ +φωνὴ +τοῦ +ἀσπασμοῦ +σου +εἰς +τὰ +ὦτά +μου, +ἐσκίρτησεν +ἐν +ἀγαλλιάσει +τὸ +βρέφος +ἐν +τῇ +κοιλίᾳ +μου. +καὶ +μακαρία +ἡ +πιστεύσασα +ὅτι +ἔσται +τελείωσις +τοῖς +λελαλημένοις +αὐτῇ +παρὰ +Κυρίου. +Καὶ +εἶπεν +Μαριάμ +Μεγαλύνει +ἡ +ψυχή +μου +τὸν +Κύριον, +καὶ +ἠγαλλίασεν +τὸ +πνεῦμά +μου +ἐπὶ +τῷ +Θεῷ +τῷ +Σωτῆρί +μου· +ὅτι +ἐπέβλεψεν +ἐπὶ +τὴν +ταπείνωσιν +τῆς +δούλης +αὐτοῦ. +γὰρ +ἰδοὺ +ἀπὸ +τοῦ +νῦν +μακαριοῦσίν +με +πᾶσαι +αἱ +γενεαί· +ὅτι +ἐποίησέν +μοι +μεγάλα +ὁ +δυνατός. +καὶ +ἅγιον +τὸ +ὄνομα +αὐτοῦ, +καὶ +τὸ +ἔλεος +αὐτοῦ +εἰς +γενεὰς +καὶ +γενεὰς +τοῖς +φοβουμένοις +αὐτόν. +Ἐποίησεν +κράτος +ἐν +βραχίονι +αὐτοῦ, +διεσκόρπισεν +ὑπερηφάνους +διανοίᾳ +καρδίας +αὐτῶν· +καθεῖλεν +δυνάστας +ἀπὸ +θρόνων +καὶ +ὕψωσεν +ταπεινούς, +πεινῶντας +ἐνέπλησεν +ἀγαθῶν +καὶ +πλουτοῦντας +ἐξαπέστειλεν +κενούς. +ἀντελάβετο +Ἰσραὴλ +παιδὸς +αὐτοῦ, +μνησθῆναι +ἐλέους, +τῷ +Ἀβραὰμ +καὶ +τῷ +σπέρματι +αὐτοῦ +εἰς +τὸν +αἰῶνα. +καθὼς +ἐλάλησεν +πρὸς +τοὺς +πατέρας +ἡμῶν, +δὲ +Ἔμεινεν +Μαριὰμ +σὺν +αὐτῇ +ὡς +μῆνας +τρεῖς, +καὶ +ὑπέστρεψεν +εἰς +τὸν +οἶκον +αὐτῆς. +δὲ +Τῇ +Ἐλεισάβετ +ἐπλήσθη +ὁ +χρόνος +τοῦ +τεκεῖν +αὐτήν, +καὶ +ἐγέννησεν +υἱόν. +καὶ +ἤκουσαν +οἱ +περίοικοι +καὶ +οἱ +συγγενεῖς +αὐτῆς +ὅτι +ἐμεγάλυνεν +Κύριος +τὸ +ἔλεος +αὐτοῦ +μετ’ +αὐτῆς, +καὶ +συνέχαιρον +αὐτῇ. +Καὶ +ἐγένετο +ἐν +τῇ +ἡμέρᾳ +τῇ +ὀγδόῃ +ἦλθον +περιτεμεῖν +τὸ +παιδίον, +καὶ +ἐκάλουν +αὐτὸ +ἐπὶ +τῷ +ὀνόματι +τοῦ +πατρὸς +αὐτοῦ +Ζαχαρίαν. +καὶ +ἀποκριθεῖσα +ἡ +μήτηρ +αὐτοῦ +εἶπεν +Οὐχί, +ἀλλὰ +κληθήσεται +Ἰωάνης. +καὶ +εἶπαν +πρὸς +αὐτὴν +ὅτι +ἐστιν +ἐκ +τῆς +συγγενείας +σου +Οὐδείς +ὃς +καλεῖται +τῷ +ὀνόματι +τούτῳ. +δὲ +ἐνένευον +τῷ +πατρὶ +αὐτοῦ +τὸ +ἂν +θέλοι +τί +καλεῖσθαι +αὐτό. +καὶ +αἰτήσας +πινακίδιον +ἔγραψεν +λέγων +Ἰωάνης +ἐστὶν +ὄνομα +αὐτοῦ. +καὶ +ἐθαύμασαν +πάντες. +δὲ +ἀνεῴχθη +τὸ +στόμα +αὐτοῦ +παραχρῆμα +καὶ +ἡ +γλῶσσα +αὐτοῦ, +καὶ +ἐλάλει +εὐλογῶν +τὸν +Θεόν. +Καὶ +ἐγένετο +φόβος +ἐπὶ +πάντας +τοὺς +περιοικοῦντας +αὐτούς, +καὶ +ἐν +ὅλῃ +τῇ +ὀρεινῇ +τῆς +Ἰουδαίας +διελαλεῖτο +πάντα +τὰ +ῥήματα +ταῦτα, +καὶ +ἔθεντο +πάντες +οἱ +ἀκούσαντες +ἐν +τῇ +καρδίᾳ +αὐτῶν, +λέγοντες +ἄρα +Τί +τὸ +παιδίον +τοῦτο +ἔσται; +γὰρ +καὶ +χεὶρ +Κυρίου +ἦν +μετ’ +αὐτοῦ. +Καὶ +Ζαχαρίας +ὁ +πατὴρ +αὐτοῦ +ἐπλήσθη +Πνεύματος +Ἁγίου +καὶ +ἐπροφήτευσεν +λέγων +Εὐλογητὸς +Κύριος +ὁ +Θεὸς +τοῦ +Ἰσραήλ, +ὅτι +ἐπεσκέψατο +καὶ +ἐποίησεν +λύτρωσιν +τῷ +λαῷ +αὐτοῦ, +καὶ +ἤγειρεν +κέρας +σωτηρίας +ἡμῖν +ἐν +οἴκῳ +Δαυεὶδ +παιδὸς +αὐτοῦ, +καθὼς +ἐλάλησεν +διὰ +στόματος +τῶν +ἁγίων +ἀπ’ +αἰῶνος +προφητῶν +αὐτοῦ, +σωτηρίαν +ἐξ +ἐχθρῶν +ἡμῶν +καὶ +ἐκ +χειρὸς +πάντων +τῶν +μισούντων +ἡμᾶς, +ποιῆσαι +ἔλεος +μετὰ +τῶν +πατέρων +ἡμῶν +καὶ +μνησθῆναι +διαθήκης +ἁγίας +αὐτοῦ, +ὅρκον +ὃν +ὤμοσεν +πρὸς +Ἀβραὰμ +τὸν +πατέρα +ἡμῶν, +τοῦ +δοῦναι +ἡμῖν +ἐκ +χειρὸς +ἐχθρῶν +ῥυσθέντας +ἀφόβως +λατρεύειν +αὐτῷ +ἐν +ὁσιότητι +καὶ +δικαιοσύνῃ +ἐνώπιον +αὐτοῦ +πάσαις +ταῖς +ἡμέραις +ἡμῶν. +δέ, +παιδίον, +Καὶ +σὺ +προφήτης +Ὑψίστου +κληθήσῃ· +γὰρ +προπορεύσῃ +ἐνώπιον +Κυρίου +ἑτοιμάσαι +ὁδοὺς +αὐτοῦ, +τοῦ +δοῦναι +γνῶσιν +σωτηρίας +τῷ +λαῷ +αὐτοῦ +ἐν +ἀφέσει +ἁμαρτιῶν +αὐτῶν, +διὰ +σπλάγχνα +ἐλέους +Θεοῦ +ἡμῶν, +ἐν +οἷς +ἐπισκέψεται +ἡμᾶς +ἀνατολὴ +ἐξ +ὕψους, +ἐπιφᾶναι +τοῖς +ἐν +σκότει +καὶ +σκιᾷ +θανάτου +καθημένοις, +τοῦ +κατευθῦναι +τοὺς +πόδας +ἡμῶν +εἰς +ὁδὸν +εἰρήνης. +δὲ +Τὸ +παιδίον +ηὔξανεν +καὶ +ἐκραταιοῦτο +πνεύματι, +καὶ +ἦν +ἐν +ταῖς +ἐρήμοις +ἕως +ἡμέρας +ἀναδείξεως +αὐτοῦ +πρὸς +τὸν +Ἰσραήλ. +δὲ +Ἐγένετο +ἐν +ταῖς +ἡμέραις +ἐκείναις +ἐξῆλθεν +δόγμα +παρὰ +Καίσαρος +Αὐγούστου +ἀπογράφεσθαι +πᾶσαν +τὴν +οἰκουμένην. +αὕτη +ἀπογραφὴ +πρώτη +ἐγένετο +ἡγεμονεύοντος +τῆς +Συρίας +Κυρηνίου. +καὶ +ἐπορεύοντο +πάντες +ἀπογράφεσθαι, +ἕκαστος +εἰς +τὴν +ἑαυτοῦ +πόλιν. +δὲ +Ἀνέβη +καὶ +Ἰωσὴφ +ἀπὸ +τῆς +Γαλιλαίας +ἐκ +πόλεως +Ναζαρὲθ +εἰς +τὴν +Ἰουδαίαν +εἰς +πόλιν +Δαυεὶδ +ἥτις +καλεῖται +Βηθλεέμ, +διὰ +τὸ +εἶναι +αὐτὸν +ἐξ +οἴκου +καὶ +πατριᾶς +Δαυείδ, +ἀπογράψασθαι +σὺν +Μαριὰμ +τῇ +ἐμνηστευμένῃ +αὐτῷ, +οὔσῃ +ἐγκύῳ. +δὲ +Ἐγένετο +ἐν +τῷ +εἶναι +αὐτοὺς +ἐκεῖ +ἐπλήσθησαν +αἱ +ἡμέραι +τοῦ +τεκεῖν +αὐτήν, +καὶ +ἔτεκεν +τὸν +υἱὸν +αὐτῆς +τὸν +πρωτότοκον, +καὶ +ἐσπαργάνωσεν +αὐτὸν +καὶ +ἀνέκλινεν +αὐτὸν +ἐν +φάτνῃ, +διότι +οὐκ +ἦν +αὐτοῖς +τόπος +ἐν +τῷ +καταλύματι. +Καὶ +ποιμένες +ἦσαν +ἐν +τῇ +χώρᾳ +τῇ +αὐτῇ +ἀγραυλοῦντες +καὶ +φυλάσσοντες +φυλακὰς +τῆς +νυκτὸς +ἐπὶ +τὴν +ποίμνην +αὐτῶν. +καὶ +ἄγγελος +Κυρίου +ἐπέστη +αὐτοῖς +καὶ +δόξα +Κυρίου +περιέλαμψεν +αὐτούς, +καὶ +ἐφοβήθησαν +φόβον +μέγαν. +καὶ +εἶπεν +αὐτοῖς +ὁ +ἄγγελος +Μὴ +φοβεῖσθε· +γὰρ +ἰδοὺ +εὐαγγελίζομαι +ὑμῖν +χαρὰν +μεγάλην, +ἥτις +ἔσται +παντὶ +τῷ +λαῷ, +ὅτι +ἐτέχθη +ὑμῖν +σήμερον +Σωτήρ, +ὅς +ἐστιν +Χριστὸς +Κύριος, +ἐν +πόλει +Δαυείδ. +καὶ +τοῦτο +ὑμῖν +σημεῖον, +εὑρήσετε +βρέφος +ἐσπαργανωμένον +καὶ +κείμενον +ἐν +φάτνῃ. +καὶ +ἐξαίφνης +ἐγένετο +σὺν +τῷ +ἀγγέλῳ +πλῆθος +στρατιᾶς +οὐρανίου +αἰνούντων +τὸν +Θεὸν +καὶ +λεγόντων +Δόξα +ἐν +ὑψίστοις +Θεῷ +καὶ +ἐπὶ +γῆς +εἰρήνη +ἐν +ἀνθρώποις +εὐδοκίας. +Καὶ +ἐγένετο +ὡς +ἀπῆλθον +ἀπ’ +αὐτῶν +εἰς +τὸν +οὐρανὸν +οἱ +ἄγγελοι, +οἱ +ποιμένες +ἐλάλουν +πρὸς +ἀλλήλους +δὴ +Διέλθωμεν +ἕως +Βηθλεὲμ +καὶ +ἴδωμεν +τὸ +ῥῆμα +τοῦτο +τὸ +γεγονὸς +ὃ +ὁ +Κύριος +ἐγνώρισεν +ἡμῖν. +καὶ +ἦλθαν +σπεύσαντες, +καὶ +ἀνεῦραν +τε +τήν +Μαριὰμ +καὶ +τὸν +Ἰωσὴφ +καὶ +τὸ +βρέφος +κείμενον +ἐν +τῇ +φάτνῃ· +δὲ +ἰδόντες +ἐγνώρισαν +περὶ +τοῦ +ῥήματος +τοῦ +λαληθέντος +αὐτοῖς +περὶ +τοῦ +παιδίου +τούτου. +καὶ +πάντες +οἱ +ἀκούσαντες +ἐθαύμασαν +περὶ +τῶν +λαληθέντων +ὑπὸ +τῶν +ποιμένων +πρὸς +αὐτούς· +δὲ +ἡ +Μαρία +συνετήρει +πάντα +τὰ +ῥήματα +ταῦτα +συνβάλλουσα +ἐν +τῇ +καρδίᾳ +αὐτῆς. +καὶ +ὑπέστρεψαν +οἱ +ποιμένες +δοξάζοντες +καὶ +αἰνοῦντες +τὸν +Θεὸν +ἐπὶ +πᾶσιν +οἷς +ἤκουσαν +καὶ +εἶδον +καθὼς +ἐλαλήθη +πρὸς +αὐτούς. +Καὶ +ὅτε +ἐπλήσθησαν +ἡμέραι +ὀκτὼ +τοῦ +περιτεμεῖν +αὐτόν, +καὶ +ἐκλήθη +τὸ +ὄνομα +αὐτοῦ +Ἰησοῦς, +τὸ +κληθὲν +ὑπὸ +τοῦ +ἀγγέλου +πρὸ +τοῦ +συλλημφθῆναι +αὐτὸν +ἐν +τῇ +κοιλίᾳ. +Καὶ +ὅτε +ἐπλήσθησαν +αἱ +ἡμέραι +τοῦ +καθαρισμοῦ +αὐτῶν +κατὰ +τὸν +νόμον +Μωϋσέως, +ἀνήγαγον +αὐτὸν +εἰς +Ἱεροσόλυμα +παραστῆσαι +τῷ +Κυρίῳ, +καθὼς +γέγραπται +ἐν +νόμῳ +Κυρίου +ὅτι +Πᾶν +ἄρσεν +διανοῖγον +μήτραν +ἅγιον +τῷ +Κυρίῳ +κληθήσεται, +καὶ +τοῦ +δοῦναι +θυσίαν +κατὰ +τὸ +εἰρημένον +ἐν +τῷ +νόμῳ +Κυρίου, +ζεῦγος +τρυγόνων +ἢ +δύο +νοσσοὺς +περιστερῶν. +Καὶ +ἰδοὺ +ἄνθρωπος +ἦν +ἐν +Ἰερουσαλὴμ +ᾧ +ὄνομα +Συμεών, +καὶ +ὁ +ἄνθρωπος +οὗτος +δίκαιος +καὶ +εὐλαβής, +προσδεχόμενος +παράκλησιν +τοῦ +Ἰσραήλ, +καὶ +Πνεῦμα +Ἅγιον +ἦν +ἐπ’ +αὐτόν· +καὶ +ἦν +κεχρηματισμένον +αὐτῷ +ὑπὸ +τοῦ +Πνεύματος +τοῦ +Ἁγίου +μὴ +ἰδεῖν +θάνατον +πρὶν +ἢ +ἂν +ἴδῃ +τὸν +Χριστὸν +Κυρίου. +καὶ +ἦλθεν +ἐν +τῷ +Πνεύματι +εἰς +τὸ +ἱερόν· +καὶ +ἐν +τῷ +εἰσαγαγεῖν +τοὺς +γονεῖς +τὸ +παιδίον +Ἰησοῦν +τοῦ +ποιῆσαι +αὐτοὺς +κατὰ +τὸ +εἰθισμένον +τοῦ +νόμου +περὶ +αὐτοῦ, +καὶ +αὐτὸς +ἐδέξατο +αὐτὸ +εἰς +τὰς +ἀγκάλας +καὶ +εὐλόγησεν +τὸν +Θεὸν +καὶ +εἶπεν +Δέσποτα, +Νῦν +ἀπολύεις +τὸν +δοῦλόν +σου, +κατὰ +τὸ +ῥῆμά +σου +ἐν +εἰρήνῃ· +ὅτι +εἶδον +οἱ +ὀφθαλμοί +μου +τὸ +σωτήριόν +σου, +ὃ +ἡτοίμασας +κατὰ +πρόσωπον +πάντων +τῶν +λαῶν, +φῶς +εἰς +ἀποκάλυψιν +ἐθνῶν +καὶ +δόξαν +λαοῦ +σου +Ἰσραήλ. +καὶ +ἦν +θαυμάζοντες +ὁ +πατὴρ +αὐτοῦ +καὶ +ἡ +μήτηρ +ἐπὶ +τοῖς +λαλουμένοις +περὶ +αὐτοῦ. +καὶ +εὐλόγησεν +αὐτοὺς +Συμεὼν +καὶ +εἶπεν +πρὸς +Μαριὰμ +τὴν +μητέρα +αὐτοῦ +Ἰδοὺ +οὗτος +κεῖται +εἰς +πτῶσιν +καὶ +ἀνάστασιν +πολλῶν +ἐν +τῷ +Ἰσραὴλ +καὶ +εἰς +σημεῖον +ἀντιλεγόμενον +δὲ +—καὶ +σοῦ +αὐτῆς +τὴν +ψυχὴν +διελεύσεται +ῥομφαία—, +ὅπως +ἂν +ἀποκαλυφθῶσιν +ἐκ +πολλῶν +καρδιῶν +διαλογισμοί. +Καὶ +ἦν +Ἄννα +προφῆτις, +θυγάτηρ +Φανουήλ, +ἐκ +φυλῆς +Ἀσήρ· +αὕτη +προβεβηκυῖα +ἐν +ἡμέραις +πολλαῖς, +ζήσασα +μετὰ +ἀνδρὸς +ἔτη +ἑπτὰ +ἀπὸ +τῆς +παρθενίας +αὐτῆς, +καὶ +αὐτὴ +χήρα +ἕως +ἐτῶν +ὀγδοήκοντα +τεσσάρων, +ἣ +οὐκ +ἀφίστατο +τοῦ +ἱεροῦ +νηστείαις +καὶ +δεήσεσιν +λατρεύουσα +νύκτα +καὶ +ἡμέραν. +καὶ +αὐτῇ +τῇ +ὥρᾳ +ἐπιστᾶσα +ἀνθωμολογεῖτο +τῷ +Θεῷ +καὶ +ἐλάλει +περὶ +αὐτοῦ +πᾶσιν +τοῖς +προσδεχομένοις +λύτρωσιν +Ἰερουσαλήμ. +Καὶ +ὡς +ἐτέλεσαν +πάντα +τὰ +κατὰ +τὸν +νόμον +Κυρίου, +ἐπέστρεψαν +εἰς +τὴν +Γαλιλαίαν +εἰς +πόλιν +ἑαυτῶν +Ναζαρέθ. +δὲ +Τὸ +παιδίον +ηὔξανεν +καὶ +ἐκραταιοῦτο +πληρούμενον +σοφίᾳ, +καὶ +χάρις +Θεοῦ +ἦν +ἐπ’ +αὐτό. +Καὶ +ἐπορεύοντο +οἱ +γονεῖς +αὐτοῦ +κατ’ +ἔτος +εἰς +Ἱερουσαλὴμ +τῇ +ἑορτῇ +τοῦ +πάσχα. +Καὶ +ὅτε +ἐγένετο +ἐτῶν +δώδεκα, +ἀναβαινόντων +αὐτῶν +κατὰ +τὸ +ἔθος +τῆς +ἑορτῆς, +καὶ +τελειωσάντων +τὰς +ἡμέρας, +ἐν +τῷ +ὑποστρέφειν +αὐτοὺς +ὑπέμεινεν +Ἰησοῦς +ὁ +παῖς +ἐν +Ἱερουσαλήμ, +καὶ +οὐκ +ἔγνωσαν +οἱ +γονεῖς +αὐτοῦ. +δὲ +νομίσαντες +αὐτὸν +εἶναι +ἐν +τῇ +συνοδίᾳ +ἦλθον +ἡμέρας +ὁδὸν +καὶ +ἀνεζήτουν +αὐτὸν +ἐν +τοῖς +συγγενεῦσιν +καὶ +τοῖς +γνωστοῖς, +καὶ +μὴ +εὑρόντες +ὑπέστρεψαν +εἰς +Ἱερουσαλὴμ +ἀναζητοῦντες +αὐτόν. +καὶ +ἐγένετο +μετὰ +ἡμέρας +τρεῖς +εὗρον +αὐτὸν +ἐν +τῷ +ἱερῷ +καθεζόμενον +ἐν +μέσῳ +τῶν +διδασκάλων +καὶ +ἀκούοντα +αὐτῶν +καὶ +ἐπερωτῶντα +αὐτούς· +δὲ +ἐξίσταντο +πάντες +οἱ +ἀκούοντες +αὐτοῦ +ἐπὶ +τῇ +συνέσει +καὶ +ταῖς +ἀποκρίσεσιν +αὐτοῦ. +καὶ +ἰδόντες +αὐτὸν +ἐξεπλάγησαν, +καὶ +εἶπεν +πρὸς +αὐτὸν +ἡ +μήτηρ +αὐτοῦ +Τέκνον, +τί +ἐποίησας +ἡμῖν +οὕτως; +ἰδοὺ +ὁ +πατήρ +σου +κἀγὼ +ὀδυνώμενοι +ζητοῦμέν +σε. +καὶ +εἶπεν +πρὸς +αὐτούς +Τί +ὅτι +ἐζητεῖτέ +με; +οὐκ +ᾔδειτε +ὅτι +ἐν +τοῖς +τοῦ +Πατρός +μου +εἶναί +με; +δεῖ +καὶ +αὐτοὶ +οὐ +συνῆκαν +τὸ +ῥῆμα +ὃ +ἐλάλησεν +αὐτοῖς. +καὶ +κατέβη +μετ’ +αὐτῶν +καὶ +ἦλθεν +εἰς +Ναζαρὲθ, +καὶ +ἦν +ὑποτασσόμενος +αὐτοῖς. +καὶ +ἡ +μήτηρ +αὐτοῦ +διετήρει +πάντα +τὰ +ῥήματα +ἐν +τῇ +καρδίᾳ +αὐτῆς. +Καὶ +Ἰησοῦς +προέκοπτεν +ἐν +τῇ +σοφίᾳ +καὶ +ἡλικίᾳ +καὶ +χάριτι +παρὰ +Θεῷ +καὶ +ἀνθρώποις. +δὲ +Ἐν +ἔτει +πεντεκαιδεκάτῳ +τῆς +ἡγεμονίας +Τιβερίου +Καίσαρος, +ἡγεμονεύοντος +Ποντίου +Πειλάτου +τῆς +Ἰουδαίας, +καὶ +τετρααρχοῦντος +τῆς +Γαλιλαίας +Ἠρῴδου, +δὲ +Φιλίππου +τοῦ +ἀδελφοῦ +αὐτοῦ +τετρααρχοῦντος +τῆς +Ἰτουραίας +καὶ +Τραχωνίτιδος +χώρας, +καὶ +Λυσανίου +τῆς +Ἀβιληνῆς +τετρααρχοῦντος, +ἐπὶ +ἀρχιερέως +Ἄννα +καὶ +Καϊάφα, +ἐγένετο +ῥῆμα +Θεοῦ +ἐπὶ +Ἰωάνην +τὸν +Ζαχαρίου +υἱὸν +ἐν +τῇ +ἐρήμῳ. +καὶ +ἦλθεν +εἰς +πᾶσαν +τὴν +περίχωρον +τοῦ +Ἰορδάνου +κηρύσσων +βάπτισμα +μετανοίας +εἰς +ἄφεσιν +ἁμαρτιῶν, +ὡς +γέγραπται +ἐν +βίβλῳ +λόγων +Ἠσαΐου +τοῦ +προφήτου +Φωνὴ +βοῶντος +ἐν +τῇ +ἐρήμῳ +Ἑτοιμάσατε +τὴν +ὁδὸν +Κυρίου, +εὐθείας +ποιεῖτε +τὰς +τρίβους +αὐτοῦ· +πᾶσα +φάραγξ +πληρωθήσεται +καὶ +πᾶν +ὄρος +καὶ +βουνὸς +ταπεινωθήσεται, +καὶ +ἔσται +τὰ +σκολιὰ +εἰς +εὐθείας +καὶ +αἱ +τραχεῖαι +εἰς +ὁδοὺς +λείας· +καὶ +ὄψεται +πᾶσα +σὰρξ +τὸ +σωτήριον +τοῦ +Θεοῦ. +οὖν +Ἔλεγεν +τοῖς +ἐκπορευομένοις +βαπτισθῆναι +ὑπ’ +αὐτοῦ +ὄχλοις +Γεννήματα +ἐχιδνῶν, +τίς +ὑπέδειξεν +ὑμῖν +φυγεῖν +ἀπὸ +τῆς +μελλούσης +ὀργῆς; +οὖν +ποιήσατε +καρποὺς +ἀξίους +τῆς +μετανοίας· +καὶ +μὴ +ἄρξησθε +λέγειν +ἐν +ἑαυτοῖς +Πατέρα +ἔχομεν +τὸν +Ἀβραάμ· +γὰρ +λέγω +ὑμῖν +ὅτι +δύναται +ὁ +Θεὸς +ἐκ +τῶν +λίθων +τούτων +ἐγεῖραι +τέκνα +τῷ +Ἀβραάμ. +δὲ +ἤδη +καὶ +ἡ +ἀξίνη +πρὸς +τὴν +ῥίζαν +τῶν +δένδρων +κεῖται· +οὖν +πᾶν +δένδρον +μὴ +ποιοῦν +καρπὸν +καλὸν +ἐκκόπτεται +καὶ +εἰς +πῦρ +βάλλεται. +Καὶ +ἐπηρώτων +αὐτὸν +οἱ +ὄχλοι +λέγοντες +οὖν +Τί +ποιήσωμεν; +δὲ +ἀποκριθεὶς +ἔλεγεν +αὐτοῖς +Ὁ +ἔχων +δύο +χιτῶνας +μεταδότω +τῷ +μὴ +ἔχοντι, +καὶ +ὁ +ἔχων +βρώματα +ὁμοίως +ποιείτω. +δὲ +ἦλθον +καὶ +τελῶναι +βαπτισθῆναι +καὶ +εἶπαν +πρὸς +αὐτόν +Διδάσκαλε, +τί +ποιήσωμεν; +δὲ +ὁ +εἶπεν +πρὸς +αὐτούς +Μηδὲν +πλέον +παρὰ +τὸ +διατεταγμένον +ὑμῖν +πράσσετε. +δὲ +ἐπηρώτων +αὐτὸν +καὶ +στρατευόμενοι +λέγοντες +Τί +ποιήσωμεν +καὶ +ἡμεῖς; +καὶ +εἶπεν +αὐτοῖς +Μηδένα +διασείσητε +μηδὲ +συκοφαντήσητε, +καὶ +ἀρκεῖσθε +τοῖς +ὀψωνίοις +ὑμῶν. +δὲ +Προσδοκῶντος +τοῦ +λαοῦ +καὶ +διαλογιζομένων +πάντων +ἐν +ταῖς +καρδίαις +αὐτῶν +περὶ +τοῦ +Ἰωάνου, +μή +ποτε +αὐτὸς +εἴη +ὁ +Χριστός, +ἀπεκρίνατο +λέγων +πᾶσιν +ὁ +Ἰωάνης +μὲν +Ἐγὼ +ὕδατι +βαπτίζω +ὑμᾶς· +δὲ +ἔρχεται +ὁ +ἰσχυρότερός +μου, +οὗ +οὐκ +εἰμὶ +ἱκανὸς +λῦσαι +τὸν +ἱμάντα +τῶν +ὑποδημάτων +αὐτοῦ· +αὐτὸς +ὑμᾶς +βαπτίσει +ἐν +Πνεύματι +Ἁγίῳ +καὶ +πυρί· +οὗ +τὸ +πτύον +ἐν +τῇ +χειρὶ +αὐτοῦ +διακαθᾶραι +τὴν +ἅλωνα +αὐτοῦ +καὶ +συναγαγεῖν +τὸν +σῖτον +εἰς +τὴν +ἀποθήκην +αὐτοῦ, +δὲ +τὸ +ἄχυρον +κατακαύσει +πυρὶ +ἀσβέστῳ. +μὲν +οὖν +Πολλὰ +καὶ +ἕτερα +παρακαλῶν +εὐηγγελίζετο +τὸν +λαόν· +δὲ +ὁ +Ἠρῴδης +ὁ +τετραάρχης, +ἐλεγχόμενος +ὑπ’ +αὐτοῦ +περὶ +Ἠρῳδιάδος +τῆς +γυναικὸς +τοῦ +ἀδελφοῦ +αὐτοῦ +καὶ +περὶ +πάντων +ὧν +πονηρῶν +ἐποίησεν +ὁ +Ἠρῴδης, +προσέθηκεν +καὶ +τοῦτο +ἐπὶ +πᾶσιν, +κατέκλεισεν +τὸν +Ἰωάνην +ἐν +φυλακῇ. +δὲ +Ἐγένετο +ἐν +τῷ +βαπτισθῆναι +ἅπαντα +τὸν +λαὸν +καὶ +Ἰησοῦ +βαπτισθέντος +καὶ +προσευχομένου +ἀνεῳχθῆναι +τὸν +οὐρανὸν, +καὶ +καταβῆναι +τὸ +Πνεῦμα +τὸ +Ἅγιον +σωματικῷ +εἴδει +ὡς +περιστερὰν +ἐπ’ +αὐτόν, +καὶ +φωνὴν +ἐξ +οὐρανοῦ +γενέσθαι +Σὺ +εἶ +ὁ +Υἱός +μου +ὁ +ἀγαπητός, +ἐν +σοὶ +εὐδόκησα. +Καὶ +αὐτὸς +Ἰησοῦς +ἦν +ἀρχόμενος +ὡσεὶ +ἐτῶν +τριάκοντα, +ὡς +ἐνομίζετο, +ὢν +υἱός, +Ἰωσὴφ, +τοῦ +Ἠλεὶ +τοῦ +Ματθὰτ +τοῦ +Λευεὶ +τοῦ +Μελχεὶ +τοῦ +Ἰανναὶ +τοῦ +Ἰωσὴφ +τοῦ +Ματταθίου +τοῦ +Ἀμὼς +τοῦ +Ναοὺμ +τοῦ +Ἐσλεὶ +τοῦ +Ναγγαὶ +τοῦ +Μαὰθ +τοῦ +Ματταθίου +τοῦ +Σεμεεὶν +τοῦ +Ἰωσὴχ +τοῦ +Ἰωδὰ +τοῦ +Ἰωανὰν +τοῦ +Ῥησὰ +τοῦ +Ζοροβάβελ +τοῦ +Σαλαθιὴλ +τοῦ +Νηρεὶ +τοῦ +Μελχεὶ +τοῦ +Ἀδδεὶ +τοῦ +Κωσὰμ +τοῦ +Ἐλμαδὰμ +τοῦ +Ἢρ +τοῦ +Ἰησοῦ +τοῦ +Ἐλιέζερ +τοῦ +Ἰωρεὶμ +τοῦ +Μαθθὰτ +τοῦ +Λευεὶ +τοῦ +Συμεὼν +τοῦ +Ἰούδα +τοῦ +Ἰωσὴφ +τοῦ +Ἰωνὰμ +τοῦ +Ἐλιακεὶμ +τοῦ +Μελεὰ +τοῦ +Μεννὰ +τοῦ +Ματταθὰ +τοῦ +Ναθὰμ +τοῦ +Δαυεὶδ +τοῦ +Ἰεσσαὶ +τοῦ +Ἰωβὴδ +τοῦ +Βοὸς +τοῦ +Σαλὰ +τοῦ +Ναασσὼν +τοῦ +Ἀμιναδὰβ +τοῦ +Ἀδμεὶν +τοῦ +Ἀρνεὶ +τοῦ +Ἐσρὼμ +τοῦ +Φαρὲς +τοῦ +Ἰούδα +τοῦ +Ἰακὼβ +τοῦ +Ἰσαὰκ +τοῦ +Ἀβραὰμ +τοῦ +Θάρα +τοῦ +Ναχὼρ +τοῦ +Σεροὺχ +τοῦ +Ῥαγαῦ +τοῦ +Φάλεκ +τοῦ +Ἔβερ +τοῦ +Σαλὰ +τοῦ +Καϊνὰμ +τοῦ +Ἀρφαξὰδ +τοῦ +Σὴμ +τοῦ +Νῶε +τοῦ +Λάμεχ +τοῦ +Μαθουσαλὰ +τοῦ +Ἐνὼχ +τοῦ +Ἰάρετ +τοῦ +Μαλελεὴλ +τοῦ +Καϊνὰμ +τοῦ +Ἐνὼς +τοῦ +Σὴθ +τοῦ +Ἀδὰμ +τοῦ +Θεοῦ. +δὲ +Ἰησοῦς +πλήρης +Πνεύματος +Ἁγίου +ὑπέστρεψεν +ἀπὸ +τοῦ +Ἰορδάνου, +καὶ +ἤγετο +ἐν +τῷ +Πνεύματι +ἐν +τῇ +ἐρήμῳ +ἡμέρας +τεσσεράκοντα +πειραζόμενος +ὑπὸ +τοῦ +διαβόλου. +Καὶ +οὐκ +ἔφαγεν +οὐδὲν +ἐν +ταῖς +ἡμέραις +ἐκείναις, +καὶ +συντελεσθεισῶν +αὐτῶν +ἐπείνασεν. +δὲ +εἶπεν +αὐτῷ +ὁ +διάβολος +Εἰ +εἶ +Υἱὸς +τοῦ +Θεοῦ, +εἰπὲ +τῷ +λίθῳ +τούτῳ +ἵνα +γένηται +ἄρτος. +καὶ +ἀπεκρίθη +πρὸς +αὐτὸν +ὁ +Ἰησοῦς +Γέγραπται +ὅτι +Οὐκ +ἐπ’ +ἄρτῳ +μόνῳ +ζήσεται +ὁ +ἄνθρωπος. +Καὶ +ἀναγαγὼν +αὐτὸν +ἔδειξεν +αὐτῷ +πάσας +τὰς +βασιλείας +τῆς +οἰκουμένης +ἐν +στιγμῇ +χρόνου. +καὶ +εἶπεν +αὐτῷ +ὁ +διάβολος +Σοὶ +δώσω +τὴν +ἐξουσίαν +ταύτην +ἅπασαν +καὶ +τὴν +δόξαν +αὐτῶν, +ὅτι +ἐμοὶ +παραδέδοται +καὶ +ἐὰν +ᾧ +θέλω +δίδωμι +αὐτήν· +οὖν +ἐὰν +σὺ +προσκυνήσῃς +ἐνώπιον +ἐμοῦ, +ἔσται +σοῦ +πᾶσα. +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Γέγραπται +Προσκυνήσεις +Κύριον +τὸν +Θεόν +σου +καὶ +αὐτῷ +μόνῳ +λατρεύσεις. +δὲ +Ἤγαγεν +αὐτὸν +εἰς +Ἱερουσαλὴμ +καὶ +ἔστησεν +ἐπὶ +τὸ +πτερύγιον +τοῦ +ἱεροῦ, +καὶ +εἶπεν +αὐτῷ +Εἰ +εἶ +Υἱὸς +τοῦ +Θεοῦ, +βάλε +σεαυτὸν +ἐντεῦθεν +κάτω· +γὰρ +γέγραπται +ὅτι +τοῖς +ἀγγέλοις +αὐτοῦ +ἐντελεῖται +περὶ +σοῦ +τοῦ +διαφυλάξαι +σε, +καὶ +ὅτι +ἐπὶ +χειρῶν +ἀροῦσίν +σε +μή +ποτε +προσκόψῃς +πρὸς +λίθον +τὸν +πόδα +σου. +καὶ +ἀποκριθεὶς +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +ὅτι +Εἴρηται +Οὐκ +ἐκπειράσεις +Κύριον +τὸν +Θεόν +σου. +Καὶ +συντελέσας +πάντα +πειρασμὸν +ὁ +διάβολος +ἀπέστη +ἀπ’ +αὐτοῦ +ἄχρι +καιροῦ. +Καὶ +ὑπέστρεψεν +ὁ +Ἰησοῦς +ἐν +τῇ +δυνάμει +τοῦ +Πνεύματος +εἰς +τὴν +Γαλιλαίαν· +καὶ +φήμη +ἐξῆλθεν +καθ’ +ὅλης +τῆς +περιχώρου +περὶ +αὐτοῦ. +καὶ +αὐτὸς +ἐδίδασκεν +ἐν +ταῖς +συναγωγαῖς +αὐτῶν, +δοξαζόμενος +ὑπὸ +πάντων. +Καὶ +ἦλθεν +εἰς +Ναζαρά, +οὗ +ἦν +τεθραμμένος, +καὶ +εἰσῆλθεν +κατὰ +τὸ +εἰωθὸς +αὐτῷ +ἐν +τῇ +ἡμέρᾳ +τῶν +σαββάτων +εἰς +τὴν +συναγωγήν, +καὶ +ἀνέστη +ἀναγνῶναι. +καὶ +ἐπεδόθη +αὐτῷ +βιβλίον +τοῦ +προφήτου +Ἠσαΐου, +καὶ +ἀνοίξας +τὸ +βιβλίον +εὗρεν +τὸν +τόπον +οὗ +ἦν +γεγραμμένον +Πνεῦμα +Κυρίου +ἐπ’ +ἐμέ, +οὗ +εἵνεκεν +ἔχρισέν +με +εὐαγγελίσασθαι +πτωχοῖς, +ἀπέσταλκέν +με +κηρῦξαι +αἰχμαλώτοις +ἄφεσιν +καὶ +τυφλοῖς +ἀνάβλεψιν, +ἀποστεῖλαι +τεθραυσμένους +ἐν +ἀφέσει, +κηρῦξαι +ἐνιαυτὸν +Κυρίου +δεκτόν. +καὶ +πτύξας +τὸ +βιβλίον +ἀποδοὺς +τῷ +ὑπηρέτῃ +ἐκάθισεν· +καὶ +πάντων +οἱ +ὀφθαλμοὶ +ἐν +τῇ +συναγωγῇ +ἦσαν +ἀτενίζοντες +αὐτῷ. +δὲ +ἤρξατο +λέγειν +πρὸς +αὐτοὺς +ὅτι +Σήμερον +πεπλήρωται +ἡ +γραφὴ +αὕτη +ἐν +τοῖς +ὠσὶν +ὑμῶν. +καὶ +πάντες +ἐμαρτύρουν +αὐτῷ +καὶ +ἐθαύμαζον +ἐπὶ +τοῖς +λόγοις +τῆς +χάριτος +τοῖς +ἐκπορευομένοις +ἐκ +τοῦ +στόματος +αὐτοῦ, +καὶ +ἔλεγον +Οὐχὶ +υἱός +Ἰωσὴφ +ἐστιν +οὗτος; +καὶ +εἶπεν +πρὸς +αὐτούς +Πάντως +ἐρεῖτέ +μοι +τὴν +παραβολὴν +ταύτην +Ἰατρέ, +θεράπευσον +σεαυτόν· +ἠκούσαμεν +ὅσα +γενόμενα +εἰς +τὴν +Καφαρναοὺμ, +ποίησον +καὶ +ὧδε +ἐν +τῇ +πατρίδι +σου. +δέ +εἶπεν +Ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐδεὶς +προφήτης +δεκτός +ἐστιν +ἐν +τῇ +πατρίδι +αὐτοῦ. +δὲ +ἐπ’ +ἀληθείας +λέγω +ὑμῖν, +πολλαὶ +χῆραι +ἦσαν +ἐν +ταῖς +ἡμέραις +Ἠλείου +ἐν +τῷ +Ἰσραήλ, +ὅτε +ἐκλείσθη +ὁ +οὐρανὸς +ἐπὶ +ἔτη +τρία +καὶ +μῆνας +ἕξ, +ὡς +ἐγένετο +λιμὸς +μέγας +ἐπὶ +πᾶσαν +τὴν +γῆν, +καὶ +πρὸς +οὐδεμίαν +αὐτῶν +ἐπέμφθη +Ἠλείας +εἰ +μὴ +εἰς +Σάρεπτα +τῆς +Σιδωνίας +πρὸς +γυναῖκα +χήραν. +καὶ +πολλοὶ +λεπροὶ +ἦσαν +ἐν +τῷ +Ἰσραὴλ +ἐπὶ +Ἑλισαίου +τοῦ +προφήτου, +καὶ +οὐδεὶς +αὐτῶν +ἐκαθαρίσθη +εἰ +μὴ +Ναιμὰν +ὁ +Σύρος. +καὶ +ἐπλήσθησαν +θυμοῦ +πάντες +ἐν +τῇ +συναγωγῇ +ἀκούοντες +ταῦτα, +καὶ +ἀναστάντες +ἐξέβαλον +αὐτὸν +ἔξω +τῆς +πόλεως, +καὶ +ἤγαγον +αὐτὸν +ἕως +ὀφρύος +τοῦ +ὄρους +ἐφ’ +οὗ +ἡ +πόλις +αὐτῶν, +ᾠκοδόμητο +ὥστε +κατακρημνίσαι +αὐτόν· +δὲ +αὐτὸς +διελθὼν +διὰ +μέσου +αὐτῶν +ἐπορεύετο. +Καὶ +κατῆλθεν +εἰς +Καφαρναοὺμ +πόλιν +τῆς +Γαλιλαίας. +καὶ +ἦν +διδάσκων +αὐτοὺς +ἐν +τοῖς +σάββασιν· +καὶ +ἐξεπλήσσοντο +ἐπὶ +τῇ +διδαχῇ +αὐτοῦ, +ὅτι +ἐν +ἐξουσίᾳ +ἦν +ὁ +λόγος +αὐτοῦ. +καὶ +ἐν +τῇ +συναγωγῇ +ἦν +ἄνθρωπος +ἔχων +πνεῦμα +δαιμονίου +ἀκαθάρτου, +καὶ +ἀνέκραξεν +φωνῇ +μεγάλῃ +Ἔα, +τί +ἡμῖν +καὶ +σοί, +Ἰησοῦ +Ναζαρηνέ; +ἦλθες +ἀπολέσαι +ἡμᾶς; +οἶδά +σε +τίς +εἶ, +ὁ +Ἅγιος +τοῦ +Θεοῦ. +καὶ +ἐπετίμησεν +αὐτῷ +ὁ +Ἰησοῦς +λέγων +Φιμώθητι +καὶ +ἔξελθε +ἀπ’ +αὐτοῦ. +καὶ +τὸ +δαιμόνιον +ῥίψαν +αὐτὸν +εἰς +τὸ +μέσον +ἐξῆλθεν +ἀπ’ +αὐτοῦ +μηδὲν +βλάψαν +αὐτόν. +καὶ +ἐγένετο +θάμβος +ἐπὶ +πάντας, +καὶ +συνελάλουν +πρὸς +ἀλλήλους +λέγοντες +Τίς +ὁ +λόγος +οὗτος, +ὅτι +ἐν +ἐξουσίᾳ +καὶ +δυνάμει +ἐπιτάσσει +τοῖς +ἀκαθάρτοις +πνεύμασιν +καὶ +ἐξέρχονται; +καὶ +ἐξεπορεύετο +ἦχος +περὶ +αὐτοῦ +εἰς +πάντα +τόπον +τῆς +περιχώρου. +δὲ +Ἀναστὰς +ἀπὸ +τῆς +συναγωγῆς +εἰσῆλθεν +εἰς +τὴν +οἰκίαν +Σίμωνος. +δὲ +πενθερὰ +τοῦ +Σίμωνος +ἦν +συνεχομένη +πυρετῷ +μεγάλῳ, +καὶ +ἠρώτησαν +αὐτὸν +περὶ +αὐτῆς. +καὶ +ἐπιστὰς +ἐπάνω +αὐτῆς +ἐπετίμησεν +τῷ +πυρετῷ, +καὶ +ἀφῆκεν +αὐτήν· +δὲ +παραχρῆμα +ἀναστᾶσα +διηκόνει +αὐτοῖς. +δὲ +Δύνοντος +τοῦ +ἡλίου +ἅπαντες +ὅσοι +εἶχον +ἀσθενοῦντας +νόσοις +ποικίλαις +ἤγαγον +αὐτοὺς +πρὸς +αὐτόν· +δὲ +ὁ +ἑνὶ +ἑκάστῳ +αὐτῶν +τὰς +χεῖρας +ἐπιτιθεὶς +ἐθεράπευεν +αὐτούς. +δὲ +ἐξήρχετο +καὶ +δαιμόνια +ἀπὸ +πολλῶν, +κραυγάζοντα +καὶ +λέγοντα +ὅτι +Σὺ +εἶ +ὁ +Υἱὸς +τοῦ +Θεοῦ. +καὶ +ἐπιτιμῶν +οὐκ +εἴα +αὐτὰ +λαλεῖν, +ὅτι +ᾔδεισαν +τὸν +Χριστὸν +αὐτὸν +εἶναι. +δὲ +Γενομένης +ἡμέρας +ἐξελθὼν +ἐπορεύθη +εἰς +ἔρημον +τόπον· +καὶ +οἱ +ὄχλοι +ἐπεζήτουν +αὐτόν, +καὶ +ἦλθον +ἕως +αὐτοῦ, +καὶ +κατεῖχον +αὐτὸν +τοῦ +μὴ +πορεύεσθαι +ἀπ’ +αὐτῶν. +δὲ +ὁ +εἶπεν +πρὸς +αὐτοὺς +ὅτι +Καὶ +ταῖς +ἑτέραις +πόλεσιν +εὐαγγελίσασθαί +με +τὴν +βασιλείαν +τοῦ +Θεοῦ, +δεῖ +ὅτι +ἐπὶ +τοῦτο +ἀπεστάλην. +καὶ +ἦν +κηρύσσων +εἰς +τὰς +συναγωγὰς +τῆς +Ἰουδαίας. +δὲ +Ἐγένετο +ἐν +τῷ +τὸν +ὄχλον +ἐπικεῖσθαι +αὐτῷ +καὶ +ἀκούειν +τὸν +λόγον +τοῦ +Θεοῦ, +καὶ +αὐτὸς +ἦν +ἑστὼς +παρὰ +τὴν +λίμνην +Γεννησαρέτ, +καὶ +εἶδεν +πλοῖα +δύο +ἑστῶτα +παρὰ +τὴν +λίμνην· +δὲ +οἱ +ἁλεεῖς +ἀπ’ +αὐτῶν +ἀποβάντες +ἔπλυνον +τὰ +δίκτυα. +δὲ +ἐμβὰς +εἰς +ἓν +τῶν +πλοίων, +ὃ +ἦν +Σίμωνος, +ἠρώτησεν +αὐτὸν +ἀπὸ +τῆς +γῆς +ἐπαναγαγεῖν +ὀλίγον· +δὲ +καθίσας +ἐκ +τοῦ +πλοίου +ἐδίδασκεν +τοὺς +ὄχλους. +δὲ +ὡς +ἐπαύσατο +λαλῶν, +εἶπεν +πρὸς +τὸν +Σίμωνα +Ἐπανάγαγε +εἰς +τὸ +βάθος, +καὶ +χαλάσατε +τὰ +δίκτυα +ὑμῶν +εἰς +ἄγραν. +καὶ +ἀποκριθεὶς +Σίμων +εἶπεν +Ἐπιστάτα, +δι’ +ὅλης +νυκτὸς +κοπιάσαντες +οὐδὲν +ἐλάβομεν· +δὲ +ἐπὶ +τῷ +ῥήματί +σου +χαλάσω +τὰ +δίκτυα. +καὶ +τοῦτο +ποιήσαντες +συνέκλεισαν +πλῆθος +ἰχθύων +πολύ· +δὲ +διερήσσετο +τὰ +δίκτυα +αὐτῶν. +καὶ +κατένευσαν +τοῖς +μετόχοις +ἐν +τῷ +ἑτέρῳ +πλοίῳ +τοῦ +ἐλθόντας +συλλαβέσθαι +αὐτοῖς· +καὶ +ἦλθαν, +καὶ +ἔπλησαν +ἀμφότερα +τὰ +πλοῖα +ὥστε +βυθίζεσθαι +αὐτά. +δὲ +ἰδὼν +Σίμων +Πέτρος +προσέπεσεν +τοῖς +γόνασιν +Ἰησοῦ +λέγων +Ἔξελθε +ἀπ’ +ἐμοῦ, +ὅτι +ἀνὴρ +ἁμαρτωλός +εἰμι, +Κύριε. +γὰρ +θάμβος +περιέσχεν +αὐτὸν +καὶ +πάντας +τοὺς +σὺν +αὐτῷ +ἐπὶ +τῇ +ἄγρᾳ +τῶν +ἰχθύων +ᾗ +συνέλαβον, +δὲ +ὁμοίως +καὶ +Ἰάκωβον +καὶ +Ἰωάνην +υἱοὺς +Ζεβεδαίου, +οἳ +ἦσαν +κοινωνοὶ +τῷ +Σίμωνι. +καὶ +εἶπεν +πρὸς +τὸν +Σίμωνα +ὁ +Ἰησοῦς +Μὴ +φοβοῦ· +ἀπὸ +τοῦ +νῦν +ἀνθρώπους +ἔσῃ +ζωγρῶν. +καὶ +καταγαγόντες +τὰ +πλοῖα +ἐπὶ +τὴν +γῆν, +ἀφέντες +πάντα +ἠκολούθησαν +αὐτῷ. +Καὶ +ἐγένετο +ἐν +τῷ +εἶναι +αὐτὸν +ἐν +μιᾷ +τῶν +πόλεων +καὶ +ἰδοὺ +ἀνὴρ +πλήρης +λέπρας· +δὲ +ἰδὼν +τὸν +Ἰησοῦν, +πεσὼν +ἐπὶ +πρόσωπον +ἐδεήθη +αὐτοῦ +λέγων +Κύριε, +ἐὰν +θέλῃς, +δύνασαί +με +καθαρίσαι. +καὶ +ἐκτείνας +τὴν +χεῖρα +ἥψατο +αὐτοῦ +λέγων +Θέλω, +καθαρίσθητι· +καὶ +εὐθέως +ἡ +λέπρα +ἀπῆλθεν +ἀπ’ +αὐτοῦ. +καὶ +αὐτὸς +παρήγγειλεν +αὐτῷ +μηδενὶ +εἰπεῖν, +ἀλλὰ +ἀπελθὼν +δεῖξον +σεαυτὸν +τῷ +ἱερεῖ, +καὶ +προσένεγκε +περὶ +τοῦ +καθαρισμοῦ +σου +καθὼς +προσέταξεν +Μωϋσῆς, +εἰς +μαρτύριον +αὐτοῖς. +δὲ +διήρχετο +μᾶλλον +ὁ +λόγος +περὶ +αὐτοῦ, +καὶ +συνήρχοντο +ὄχλοι +πολλοὶ +ἀκούειν +καὶ +θεραπεύεσθαι +ἀπὸ +τῶν +ἀσθενειῶν +αὐτῶν· +δὲ +αὐτὸς +ἦν +ὑποχωρῶν +ἐν +ταῖς +ἐρήμοις +καὶ +προσευχόμενος. +Καὶ +ἐγένετο +ἐν +μιᾷ +τῶν +ἡμερῶν +καὶ +αὐτὸς +ἦν +διδάσκων, +καὶ +ἦσαν +καθήμενοι +Φαρισαῖοι +καὶ +νομοδιδάσκαλοι +οἳ +ἦσαν +ἐληλυθότες +ἐκ +πάσης +κώμης +τῆς +Γαλιλαίας +καὶ +Ἰουδαίας +καὶ +Ἱερουσαλήμ· +καὶ +δύναμις +Κυρίου +ἦν +εἰς +τὸ +ἰᾶσθαι +αὐτόν. +καὶ +ἰδοὺ +ἄνδρες +φέροντες +ἐπὶ +κλίνης +ἄνθρωπον +ὃς +ἦν +παραλελυμένος, +καὶ +ἐζήτουν +αὐτὸν +εἰσενεγκεῖν +καὶ +θεῖναι +ἐνώπιον +αὐτοῦ. +καὶ +μὴ +εὑρόντες +ποίας +εἰσενέγκωσιν +αὐτὸν +διὰ +τὸν +ὄχλον, +ἀναβάντες +ἐπὶ +τὸ +δῶμα +διὰ +τῶν +κεράμων +καθῆκαν +αὐτὸν +σὺν +τῷ +κλινιδίῳ +εἰς +τὸ +μέσον +ἔμπροσθεν +τοῦ +Ἰησοῦ. +καὶ +ἰδὼν +τὴν +πίστιν +αὐτῶν +εἶπεν +Ἄνθρωπε, +ἀφέωνταί +σοι +αἱ +ἁμαρτίαι +σου. +καὶ +ἤρξαντο +διαλογίζεσθαι +οἱ +γραμματεῖς +καὶ +οἱ +Φαρισαῖοι +λέγοντες +Τίς +ἐστιν +οὗτος +ὃς +λαλεῖ +βλασφημίας; +τίς +δύναται +ἁμαρτίας +ἀφεῖναι +εἰ +μὴ +μόνος +ὁ +Θεός; +δὲ +ὁ +Ἰησοῦς +ἐπιγνοὺς +τοὺς +διαλογισμοὺς +αὐτῶν +ἀποκριθεὶς +εἶπεν +πρὸς +αὐτούς +Τί +διαλογίζεσθε +ἐν +ταῖς +καρδίαις +ὑμῶν; +τί +ἐστιν +εὐκοπώτερον, +εἰπεῖν +Ἀφέωνταί +σοι +αἱ +ἁμαρτίαι +σου, +ἢ +εἰπεῖν +Ἔγειρε +καὶ +περιπάτει; +δὲ +ἵνα +εἰδῆτε +ὅτι +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐξουσίαν +ἔχει +ἐπὶ +τῆς +γῆς +ἀφιέναι +ἁμαρτίας, +εἶπεν +τῷ +παραλελυμένῳ +Σοὶ +λέγω, +ἔγειρε +καὶ +ἄρας +τὸ +κλινίδιόν +σου +πορεύου +εἰς +τὸν +οἶκόν +σου. +καὶ +παραχρῆμα +ἀναστὰς +ἐνώπιον +αὐτῶν, +ἄρας +ἐφ’ +ὃ +κατέκειτο, +ἀπῆλθεν +εἰς +τὸν +οἶκον +αὐτοῦ +δοξάζων +τὸν +Θεόν. +καὶ +ἔκστασις +ἔλαβεν +ἅπαντας, +καὶ +ἐδόξαζον +τὸν +Θεόν, +καὶ +ἐπλήσθησαν +φόβου +λέγοντες +ὅτι +Εἴδομεν +παράδοξα +σήμερον. +Καὶ +μετὰ +ταῦτα +ἐξῆλθεν, +καὶ +ἐθεάσατο +τελώνην +ὀνόματι +Λευεὶν +καθήμενον +ἐπὶ +τὸ +τελώνιον, +καὶ +εἶπεν +αὐτῷ +Ἀκολούθει +μοι. +καὶ +καταλιπὼν +πάντα +ἀναστὰς +ἠκολούθει +αὐτῷ. +Καὶ +ἐποίησεν +δοχὴν +μεγάλην +Λευεὶς +αὐτῷ +ἐν +τῇ +οἰκίᾳ +αὐτοῦ· +καὶ +ἦν +ὄχλος +πολὺς +τελωνῶν +καὶ +ἄλλων +οἳ +ἦσαν +κατακείμενοι. +μετ’ +αὐτῶν +καὶ +ἐγόγγυζον +οἱ +Φαρισαῖοι +καὶ +οἱ +γραμματεῖς +αὐτῶν +πρὸς +τοὺς +μαθητὰς +αὐτοῦ +λέγοντες +Διὰ +τί +μετὰ +τῶν +τελωνῶν +καὶ +ἁμαρτωλῶν +ἐσθίετε +καὶ +πίνετε; +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +πρὸς +αὐτούς +Οὐ +χρείαν +ἰατροῦ +ἔχουσιν +οἱ +ὑγιαίνοντες +ἀλλὰ +οἱ +κακῶς +ἔχοντες· +οὐκ +ἐλήλυθα +καλέσαι +δικαίους +ἀλλὰ +ἁμαρτωλοὺς +εἰς +μετάνοιαν. +δὲ +Οἱ +εἶπαν +πρὸς +αὐτόν +Οἱ +μαθηταὶ +Ἰωάνου +νηστεύουσιν +πυκνὰ +καὶ +δεήσεις +ποιοῦνται, +ὁμοίως +καὶ +οἱ +τῶν +Φαρισαίων, +δὲ +οἱ +σοὶ +ἐσθίουσιν +καὶ +πίνουσιν. +δὲ +ὁ +Ἰησοῦς +εἶπεν +πρὸς +αὐτούς +Μὴ +δύνασθε +τοὺς +υἱοὺς +τοῦ +νυμφῶνος, +ἐν +ᾧ +ὁ +νυμφίος +μετ’ +αὐτῶν +ἐστιν, +νηστεῦσαι; +ποιῆσαι +δὲ +ἐλεύσονται +ἡμέραι, +καὶ +ὅταν +ἀπαρθῇ +ἀπ’ +αὐτῶν +ὁ +νυμφίος, +τότε +νηστεύσουσιν +ἐν +ἐκείναις +ταῖς +ἡμέραις. +δὲ +Ἔλεγεν +καὶ +παραβολὴν +πρὸς +αὐτοὺς +ὅτι +Οὐδεὶς +ἐπίβλημα +ἀπὸ +ἱματίου +καινοῦ +σχίσας +ἐπιβάλλει +ἐπὶ +ἱμάτιον +παλαιόν· +δὲ +εἰ +μήγε, +καὶ +τὸ +καινὸν +σχίσει +καὶ +τῷ +παλαιῷ +οὐ +συμφωνήσει +τὸ +ἐπίβλημα +τὸ +ἀπὸ +τοῦ +καινοῦ. +καὶ +οὐδεὶς +βάλλει +οἶνον +νέον +εἰς +ἀσκοὺς +παλαιούς· +δὲ +εἰ +μήγε, +ῥήξει +ὁ +οἶνος +ὁ +νέος +τοὺς +ἀσκούς, +καὶ +αὐτὸς +ἐκχυθήσεται +καὶ +οἱ +ἀσκοὶ +ἀπολοῦνται· +ἀλλὰ +οἶνον +νέον +εἰς +ἀσκοὺς +καινοὺς +βλητέον. +καὶ +οὐδεὶς +πιὼν +παλαιὸν +θέλει +νέον· +γάρ +λέγει +Ὁ +παλαιὸς +χρηστός +ἐστιν. +δὲ +Ἐγένετο +ἐν +σαββάτῳ +διαπορεύεσθαι +αὐτὸν +διὰ +σπορίμων, +καὶ +ἔτιλλον +καὶ +ἤσθιον +οἱ +μαθηταὶ +αὐτοῦ +τοὺς +στάχυας +ψώχοντες +ταῖς +χερσίν. +δὲ +τινὲς +τῶν +Φαρισαίων +εἶπαν +Τί +ποιεῖτε +ὃ +οὐκ +ἔξεστιν +τοῖς +σάββασιν; +καὶ +ἀποκριθεὶς +πρὸς +αὐτοὺς +εἶπεν +ὁ +Ἰησοῦς +Οὐδὲ +ἀνέγνωτε +τοῦτο +ὃ +ἐποίησεν +Δαυεὶδ +ὁπότε +ἐπείνασεν +αὐτὸς +καὶ +οἱ +μετ’ +αὐτοῦ +ὄντες; +ὡς +εἰσῆλθεν +εἰς +τὸν +οἶκον +τοῦ +Θεοῦ +καὶ +τοὺς +ἄρτους +τῆς +προθέσεως +λαβὼν +ἔφαγεν +καὶ +ἔδωκεν +τοῖς +μετ’ +αὐτοῦ, +οὓς +φαγεῖν +οὐκ +ἔξεστιν +εἰ +μὴ +μόνους +τοὺς +ἱερεῖς; +καὶ +ἔλεγεν +αὐτοῖς +ἐστιν +Κύριός +τοῦ +σαββάτου +ὁ +Υἱὸς +τοῦ +ἀνθρώπου. +δὲ +Ἐγένετο +ἐν +ἑτέρῳ +σαββάτῳ +εἰσελθεῖν +αὐτὸν +εἰς +τὴν +συναγωγὴν +καὶ +διδάσκειν· +καὶ +ἦν +ἄνθρωπος +ἐκεῖ +καὶ +ἡ +χεὶρ +αὐτοῦ +ἡ +δεξιὰ +ἦν +ξηρά· +δὲ +παρετηροῦντο +αὐτὸν +οἱ +γραμματεῖς +καὶ +οἱ +Φαρισαῖοι +εἰ +ἐν +τῷ +σαββάτῳ +θεραπεύει, +ἵνα +εὕρωσιν +κατηγορεῖν +αὐτοῦ. +δὲ +αὐτὸς +ᾔδει +τοὺς +διαλογισμοὺς +αὐτῶν, +δὲ +εἶπεν +τῷ +ἀνδρὶ +τῷ +ξηρὰν +ἔχοντι +τὴν +χεῖρα +Ἔγειρε +καὶ +στῆθι +εἰς +τὸ +μέσον· +καὶ +ἀναστὰς +ἔστη. +δὲ +εἶπεν +ὁ +Ἰησοῦς +πρὸς +αὐτούς +Ἐπερωτῶ +ὑμᾶς +εἰ +ἔξεστιν +τῷ +σαββάτῳ +ἀγαθοποιῆσαι +ἢ +κακοποιῆσαι, +ψυχὴν +σῶσαι +ἢ +ἀπολέσαι; +καὶ +περιβλεψάμενος +πάντας +αὐτοὺς +εἶπεν +αὐτῷ +Ἔκτεινον +τὴν +χεῖρά +σου. +δὲ +ὁ +ἐποίησεν, +καὶ +ἀπεκατεστάθη +ἡ +χεὶρ +αὐτοῦ. +δὲ +αὐτοὶ +ἐπλήσθησαν +ἀνοίας, +καὶ +διελάλουν +πρὸς +ἀλλήλους +ἂν +τί +ποιήσαιεν +τῷ +Ἰησοῦ. +δὲ +Ἐγένετο +ἐν +ταῖς +ἡμέραις +ταύταις +ἐξελθεῖν +αὐτὸν +εἰς +τὸ +ὄρος +προσεύξασθαι, +καὶ +ἦν +διανυκτερεύων +ἐν +τῇ +προσευχῇ +τοῦ +Θεοῦ. +καὶ +ὅτε +ἐγένετο +ἡμέρα, +προσεφώνησεν +τοὺς +μαθητὰς +αὐτοῦ, +καὶ +ἐκλεξάμενος +ἀπ’ +αὐτῶν +δώδεκα, +οὓς +καὶ +ἀποστόλους +ὠνόμασεν, +Σίμωνα, +ὃν +καὶ +ὠνόμασεν, +Πέτρον +καὶ +Ἀνδρέαν +τὸν +ἀδελφὸν +αὐτοῦ, +καὶ +Ἰάκωβον +καὶ +Ἰωάνην, +καὶ +Φίλιππον +καὶ +Βαρθολομαῖον, +καὶ +Μαθθαῖον +καὶ +Θωμᾶν, +καὶ +Ἰάκωβον +Ἀλφαίου +καὶ +Σίμωνα +τὸν +καλούμενον +Ζηλωτὴν, +καὶ +Ἰούδαν +Ἰακώβου, +καὶ +Ἰούδαν +Ἰσκαριὼθ, +ὃς +ἐγένετο +προδότης, +καὶ +καταβὰς +μετ’ +αὐτῶν +ἔστη +ἐπὶ +τόπου +πεδινοῦ, +καὶ +ὄχλος +πολὺς +μαθητῶν +αὐτοῦ, +καὶ +πλῆθος +πολὺ +τοῦ +λαοῦ +ἀπὸ +πάσης +τῆς +Ἰουδαίας +καὶ +Ἱερουσαλὴμ +καὶ +τῆς +παραλίου +Τύρου +καὶ +Σιδῶνος, +οἳ +ἦλθον +ἀκοῦσαι +αὐτοῦ +καὶ +ἰαθῆναι +ἀπὸ +τῶν +νόσων +αὐτῶν, +καὶ +οἱ +ἐνοχλούμενοι +ἀπὸ +πνευμάτων +ἀκαθάρτων +ἐθεραπεύοντο· +καὶ +πᾶς +ὁ +ὄχλος +ἐζήτουν +ἅπτεσθαι +αὐτοῦ, +ὅτι +δύναμις +παρ’ +αὐτοῦ +ἐξήρχετο +καὶ +ἰᾶτο +πάντας. +Καὶ +αὐτὸς +ἐπάρας +τοὺς +ὀφθαλμοὺς +αὐτοῦ +εἰς +τοὺς +μαθητὰς +αὐτοῦ +ἔλεγεν +Μακάριοι +οἱ +πτωχοί, +ὅτι +ὑμετέρα +ἐστὶν +ἡ +βασιλεία +τοῦ +Θεοῦ. +μακάριοι +οἱ +πεινῶντες +νῦν, +ὅτι +χορτασθήσεσθε. +μακάριοι +οἱ +κλαίοντες +νῦν, +ὅτι +γελάσετε. +μακάριοί +ἐστε +ὅταν +μισήσωσιν +ὑμᾶς +οἱ +ἄνθρωποι, +καὶ +ὅταν +ἀφορίσωσιν +ὑμᾶς +καὶ +ὀνειδίσωσιν +καὶ +ἐκβάλωσιν +τὸ +ὄνομα +ὑμῶν +ὡς +πονηρὸν +ἕνεκα +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου. +χάρητε +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +καὶ +σκιρτήσατε· +γὰρ +ἰδοὺ +ὁ +μισθὸς +ὑμῶν +πολὺς +ἐν +τῷ +οὐρανῷ· +γὰρ +κατὰ +τὰ +αὐτὰ +ἐποίουν +τοῖς +προφήταις +οἱ +πατέρες +αὐτῶν. +Πλὴν +οὐαὶ +ὑμῖν +τοῖς +πλουσίοις, +ὅτι +ἀπέχετε +τὴν +παράκλησιν +ὑμῶν. +οὐαὶ +ὑμῖν, +οἱ +ἐμπεπλησμένοι +νῦν, +ὅτι +πεινάσετε. +οὐαί, +οἱ +γελῶντες +νῦν, +ὅτι +πενθήσετε +καὶ +κλαύσετε. +οὐαὶ +ὅταν +καλῶς +ὑμᾶς +εἴπωσιν +πάντες +οἱ +ἄνθρωποι· +γὰρ +κατὰ +τὰ +αὐτὰ +ἐποίουν +τοῖς +ψευδοπροφήταις +οἱ +πατέρες +αὐτῶν. +Ἀλλὰ +λέγω +ὑμῖν +τοῖς +ἀκούουσιν +Ἀγαπᾶτε +τοὺς +ἐχθροὺς +ὑμῶν, +καλῶς +ποιεῖτε +τοῖς +μισοῦσιν +ὑμᾶς, +εὐλογεῖτε +τοὺς +καταρωμένους +ὑμᾶς, +προσεύχεσθε +περὶ +τῶν +ἐπηρεαζόντων +ὑμᾶς. +τῷ +τύπτοντί +σε +ἐπὶ +τὴν +σιαγόνα +πάρεχε +καὶ +τὴν +ἄλλην, +καὶ +ἀπὸ +τοῦ +αἴροντός +σου +τὸ +ἱμάτιον +καὶ +τὸν +χιτῶνα +μὴ +κωλύσῃς. +παντὶ +αἰτοῦντί +σε +δίδου, +καὶ +ἀπὸ +τοῦ +αἴροντος +τὰ +σὰ +μὴ +ἀπαίτει. +καὶ +καθὼς +θέλετε +ἵνα +ποιῶσιν +ὑμῖν +οἱ +ἄνθρωποι, +ποιεῖτε +αὐτοῖς +ὁμοίως. +καὶ +εἰ +ἀγαπᾶτε +τοὺς +ἀγαπῶντας +ὑμᾶς, +ποία +χάρις +ὑμῖν +ἐστίν; +γὰρ +καὶ +οἱ +ἁμαρτωλοὶ +τοὺς +ἀγαπῶντας +αὐτοὺς +ἀγαπῶσιν. +γὰρ +ἐὰν +καὶ +ἀγαθοποιῆτε +τοὺς +ἀγαθοποιοῦντας +ὑμᾶς, +ποία +χάρις +ὑμῖν +ἐστίν; +καὶ +οἱ +ἁμαρτωλοὶ +τὸ +αὐτὸ +ποιοῦσιν. +καὶ +ἐὰν +δανίσητε +παρ’ +ὧν +ἐλπίζετε +λαβεῖν, +ποία +χάρις +ὑμῖν +ἐστίν; +καὶ +ἁμαρτωλοὶ +ἁμαρτωλοῖς +δανίζουσιν +ἵνα +ἀπολάβωσιν +τὰ +ἴσα. +πλὴν +ἀγαπᾶτε +τοὺς +ἐχθροὺς +ὑμῶν +καὶ +ἀγαθοποιεῖτε +καὶ +δανίζετε +μηδὲν +ἀπελπίζοντες· +καὶ +ἔσται +ὁ +μισθὸς +ὑμῶν +πολύς, +καὶ +ἔσεσθε +υἱοὶ +Ὑψίστου, +ὅτι +αὐτὸς +χρηστός +ἐστιν +ἐπὶ +τοὺς +ἀχαρίστους +καὶ +πονηρούς. +Γίνεσθε +οἰκτίρμονες, +καθὼς +ὁ +Πατὴρ +ὑμῶν +οἰκτίρμων +ἐστίν. +καὶ +μὴ +κρίνετε, +καὶ +οὐ +μὴ +κριθῆτε· +καὶ +μὴ +καταδικάζετε, +καὶ +οὐ +μὴ +καταδικασθῆτε. +ἀπολύετε, +καὶ +ἀπολυθήσεσθε· +δίδοτε, +καὶ +δοθήσεται +ὑμῖν· +μέτρον +καλὸν +πεπιεσμένον +σεσαλευμένον +ὑπερεκχυννόμενον +δώσουσιν +εἰς +τὸν +κόλπον +ὑμῶν· +γὰρ +ᾧ +μέτρῳ +μετρεῖτε +ἀντιμετρηθήσεται +ὑμῖν. +δὲ +Εἶπεν +καὶ +παραβολὴν +αὐτοῖς +Μήτι +δύναται +τυφλὸς +τυφλὸν +ὁδηγεῖν; +οὐχὶ +ἀμφότεροι +εἰς +βόθυνον +ἐμπεσοῦνται; +οὐκ +ἔστιν +μαθητὴς +ὑπὲρ +τὸν +διδάσκαλον· +δὲ +κατηρτισμένος +πᾶς +ἔσται +ὡς +ὁ +διδάσκαλος +αὐτοῦ. +δὲ +Τί +βλέπεις +τὸ +κάρφος +τὸ +ἐν +τῷ +ὀφθαλμῷ +τοῦ +ἀδελφοῦ +σου, +δὲ +τὴν +δοκὸν +τὴν +ἐν +τῷ +ἰδίῳ +ὀφθαλμῷ +οὐ +κατανοεῖς; +πῶς +δύνασαι +λέγειν +τῷ +ἀδελφῷ +σου +Ἀδελφέ, +ἄφες +ἐκβάλω +τὸ +κάρφος +τὸ +ἐν +τῷ +ὀφθαλμῷ +σου, +αὐτὸς +τὴν +ἐν +τῷ +ὀφθαλμῷ +σοῦ +δοκὸν +οὐ +βλέπων; +ὑποκριτά, +ἔκβαλε +πρῶτον +τὴν +δοκὸν +ἐκ +τοῦ +ὀφθαλμοῦ +σοῦ, +καὶ +τότε +διαβλέψεις +τὸ +κάρφος +τὸ +ἐν +τῷ +ὀφθαλμῷ +τοῦ +ἀδελφοῦ +σου +ἐκβαλεῖν. +γάρ +Οὐ +ἐστιν +ποιοῦν +δένδρον +καλὸν +καρπὸν +σαπρόν, +οὐδὲ +πάλιν +δένδρον +σαπρὸν +ποιοῦν +καρπὸν +καλόν. +γὰρ +ἕκαστον +δένδρον +ἐκ +τοῦ +ἰδίου +καρποῦ +γινώσκεται· +γὰρ +οὐ +ἐξ +ἀκανθῶν +συλλέγουσιν +σῦκα, +οὐδὲ +ἐκ +βάτου +σταφυλὴν +τρυγῶσιν. +ὁ +ἀγαθὸς +ἄνθρωπος +ἐκ +τοῦ +ἀγαθοῦ +θησαυροῦ +τῆς +καρδίας +προφέρει +τὸ +ἀγαθόν, +καὶ +ὁ +πονηρὸς +ἐκ +τοῦ +πονηροῦ +προφέρει +τὸ +πονηρόν· +γὰρ +ἐκ +περισσεύματος +καρδίας +λαλεῖ +τὸ +στόμα +αὐτοῦ. +δέ +Τί +με +καλεῖτε +Κύριε +κύριε, +καὶ +οὐ +ποιεῖτε +ἃ +λέγω; +Πᾶς +ὁ +ἐρχόμενος +πρός +με +καὶ +ἀκούων +μου +τῶν +λόγων +καὶ +ποιῶν +αὐτούς, +ὑποδείξω +ὑμῖν +τίνι +ἐστὶν +ὅμοιος. +ὅμοιός +ἐστιν +ἀνθρώπῳ +οἰκοδομοῦντι +οἰκίαν, +ὃς +ἔσκαψεν +καὶ +ἐβάθυνεν +καὶ +ἔθηκεν +θεμέλιον +ἐπὶ +τὴν +πέτραν· +δὲ +πλημμύρης +γενομένης +προσέρηξεν +ὁ +ποταμὸς +τῇ +οἰκίᾳ +ἐκείνῃ, +καὶ +οὐκ +ἴσχυσεν +σαλεῦσαι +αὐτὴν +διὰ +τὸ +καλῶς +οἰκοδομῆσθαι +αὐτήν. +δὲ +ὁ +ἀκούσας +καὶ +μὴ +ποιήσας +ὅμοιός +ἐστιν +ἀνθρώπῳ +οἰκοδομήσαντι +οἰκίαν +ἐπὶ +τὴν +γῆν +χωρὶς +θεμελίου, +ᾗ +προσέρηξεν +ὁ +ποταμός, +καὶ +εὐθὺς +συνέπεσεν, +καὶ +ἐγένετο +τὸ +ῥῆγμα +τῆς +οἰκίας +ἐκείνης +μέγα. +Ἐπειδὴ +ἐπλήρωσεν +πάντα +τὰ +ῥήματα +αὐτοῦ +εἰς +τὰς +ἀκοὰς +τοῦ +λαοῦ, +εἰσῆλθεν +εἰς +Καφαρναούμ. +δέ +Ἑκατοντάρχου +τινος +δοῦλος +κακῶς +ἔχων +ἤμελλεν +τελευτᾶν, +ὃς +ἦν +αὐτῷ +ἔντιμος. +δὲ +ἀκούσας +περὶ +τοῦ +Ἰησοῦ +ἀπέστειλεν +πρὸς +αὐτὸν +πρεσβυτέρους +τῶν +Ἰουδαίων, +ἐρωτῶν +αὐτὸν +ὅπως +ἐλθὼν +διασώσῃ +τὸν +δοῦλον +αὐτοῦ. +δὲ +οἱ +παραγενόμενοι +πρὸς +τὸν +Ἰησοῦν +παρεκάλουν +αὐτὸν +σπουδαίως, +λέγοντες +ὅτι +ἄξιός +ἐστιν +ᾧ +παρέξῃ +τοῦτο· +γὰρ +ἀγαπᾷ +τὸ +ἔθνος +ἡμῶν +καὶ +τὴν +συναγωγὴν +αὐτὸς +ᾠκοδόμησεν +ἡμῖν. +δὲ +ὁ +Ἰησοῦς +ἐπορεύετο +σὺν +αὐτοῖς. +δὲ +ἤδη +αὐτοῦ +οὐ +μακρὰν +ἀπέχοντος +ἀπὸ +τῆς +οἰκίας, +ἔπεμψεν +φίλους +ὁ +ἑκατοντάρχης +λέγων +αὐτῷ +Κύριε, +μὴ +σκύλλου· +γὰρ +οὐ +εἰμι +ἱκανός +ἵνα +ὑπὸ +τὴν +στέγην +μου +εἰσέλθῃς· +διὸ +οὐδὲ +ἐμαυτὸν +ἠξίωσα +πρὸς +σὲ +ἐλθεῖν· +ἀλλὰ +εἰπὲ +λόγῳ, +καὶ +ἰαθήτω +ὁ +παῖς +μου. +γὰρ +καὶ +ἐγὼ +εἰμι +ἄνθρωπός +ὑπὸ +ἐξουσίαν +τασσόμενος, +ἔχων +ὑπ’ +ἐμαυτὸν +στρατιώτας, +καὶ +λέγω +τούτῳ +Πορεύθητι, +καὶ +πορεύεται, +καὶ +ἄλλῳ +Ἔρχου, +καὶ +ἔρχεται, +καὶ +τῷ +δούλῳ +μου +Ποίησον +τοῦτο, +καὶ +ποιεῖ. +δὲ +ἀκούσας +ταῦτα +ὁ +Ἰησοῦς +ἐθαύμασεν +αὐτόν, +καὶ +στραφεὶς +τῷ +ἀκολουθοῦντι +αὐτῷ +ὄχλῳ +εἶπεν +Λέγω +ὑμῖν, +οὐδὲ +ἐν +τῷ +Ἰσραὴλ +τοσαύτην +πίστιν +εὗρον. +καὶ +ὑποστρέψαντες +εἰς +τὸν +οἶκον +οἱ +πεμφθέντες +εὗρον +τὸν +δοῦλον +ὑγιαίνοντα. +Καὶ +ἐγένετο +ἐν +τῷ +ἑξῆς +ἐπορεύθη +εἰς +πόλιν +καλουμένην +Ναΐν, +καὶ +συνεπορεύοντο +αὐτῷ +οἱ +μαθηταὶ +αὐτοῦ +καὶ +ὄχλος +πολύς. +δὲ +ὡς +ἤγγισεν +τῇ +πύλῃ +τῆς +πόλεως, +καὶ +ἰδοὺ +ἐξεκομίζετο +τεθνηκὼς +μονογενὴς +υἱὸς +τῇ +μητρὶ +αὐτοῦ, +καὶ +αὐτὴ +ἦν +χήρα, +καὶ +ὄχλος +τῆς +πόλεως +ἱκανὸς +ἦν +σὺν +αὐτῇ. +καὶ +ἰδὼν +αὐτὴν +ὁ +Κύριος +ἐσπλαγχνίσθη +ἐπ’ +αὐτῇ +καὶ +εἶπεν +αὐτῇ +Μὴ +κλαῖε. +καὶ +προσελθὼν +ἥψατο +τῆς +σοροῦ, +δὲ +οἱ +βαστάζοντες +ἔστησαν, +καὶ +εἶπεν +Νεανίσκε, +σοὶ +λέγω, +ἐγέρθητι. +καὶ +ἀνεκάθισεν +ὁ +νεκρὸς +καὶ +ἤρξατο +λαλεῖν, +καὶ +ἔδωκεν +αὐτὸν +τῇ +μητρὶ +αὐτοῦ. +δὲ +ἔλαβεν +φόβος +πάντας, +καὶ +ἐδόξαζον +τὸν +Θεὸν +λέγοντες +ὅτι +Προφήτης +μέγας +ἠγέρθη +ἐν +ἡμῖν, +καὶ +ὅτι +Ἐπεσκέψατο +ὁ +Θεὸς +τὸν +λαὸν +αὐτοῦ. +καὶ +ἐξῆλθεν +ὁ +λόγος +οὗτος +περὶ +αὐτοῦ +ἐν +ὅλῃ +τῇ +Ἰουδαίᾳ +καὶ +πάσῃ +τῇ +περιχώρῳ. +Καὶ +ἀπήγγειλαν +Ἰωάνει +οἱ +μαθηταὶ +αὐτοῦ +περὶ +πάντων +τούτων. +καὶ +προσκαλεσάμενος +δύο +τινὰς +τῶν +μαθητῶν +αὐτοῦ +ὁ +Ἰωάνης +ἔπεμψεν +πρὸς +τὸν +Κύριον +λέγων +Σὺ +εἶ +ὁ +ἐρχόμενος, +ἢ +ἄλλον +προσδοκῶμεν; +δὲ +παραγενόμενοι +πρὸς +αὐτὸν +οἱ +ἄνδρες +εἶπαν +Ἰωάνης +ὁ +Βαπτιστὴς +ἀπέστειλεν +ἡμᾶς +πρὸς +σὲ +λέγων +Σὺ +εἶ +ὁ +ἐρχόμενος, +ἢ +ἄλλον +προσδοκῶμεν; +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +ἐθεράπευσεν +πολλοὺς +ἀπὸ +νόσων +καὶ +μαστίγων +καὶ +πνευμάτων +πονηρῶν, +καὶ +τυφλοῖς +πολλοῖς +ἐχαρίσατο +βλέπειν. +καὶ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Πορευθέντες +ἀπαγγείλατε +Ἰωάνει +ἃ +εἴδετε +καὶ +ἠκούσατε· +τυφλοὶ +ἀναβλέπουσιν, +χωλοὶ +περιπατοῦσιν, +λεπροὶ +καθαρίζονται, +καὶ +κωφοὶ +ἀκούουσιν, +νεκροὶ +ἐγείρονται, +πτωχοὶ +εὐαγγελίζονται· +καὶ +μακάριός +ἐστιν +ἐὰν +ὃς +μὴ +σκανδαλισθῇ +ἐν +ἐμοί. +δὲ +Ἀπελθόντων +τῶν +ἀγγέλων +Ἰωάνου +ἤρξατο +λέγειν +πρὸς +τοὺς +ὄχλους +περὶ +Ἰωάνου +Τί +θεάσασθαι; +ἐξήλθατε +εἰς +τὴν +ἔρημον +κάλαμον +ὑπὸ +ἀνέμου +σαλευόμενον; +ἀλλὰ +τί +ἰδεῖν; +ἐξήλθατε +ἄνθρωπον +ἐν +μαλακοῖς +ἱματίοις +ἠμφιεσμένον; +ἰδοὺ +οἱ +ἐν +ἱματισμῷ +ἐνδόξῳ +καὶ +τρυφῇ +ὑπάρχοντες +ἐν +τοῖς +βασιλείοις +εἰσίν. +ἀλλὰ +τί +ἰδεῖν; +ἐξήλθατε +προφήτην; +ναί, +λέγω +ὑμῖν, +καὶ +περισσότερον +προφήτου. +οὗτός +ἐστιν +περὶ +οὗ +γέγραπται +Ἰδοὺ +ἀποστέλλω +τὸν +ἄγγελόν +μου +πρὸ +προσώπου +σου, +ὃς +κατασκευάσει +τὴν +ὁδόν +σου +ἔμπροσθέν +σου. +λέγω +ὑμῖν, +μείζων +ἐν +γεννητοῖς +γυναικῶν +Ἰωάνου +οὐδείς +ἐστιν· +δὲ +ὁ +μικρότερος +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ +μείζων +αὐτοῦ +ἐστιν. +καὶ +πᾶς +ὁ +λαὸς +καὶ +οἱ +τελῶναι +ἀκούσας +ἐδικαίωσαν +τὸν +Θεόν, +βαπτισθέντες +τὸ +βάπτισμα +Ἰωάνου· +δὲ +οἱ +Φαρισαῖοι +καὶ +οἱ +νομικοὶ +τὴν +βουλὴν +τοῦ +Θεοῦ +ἠθέτησαν +εἰς +ἑαυτούς, +μὴ +βαπτισθέντες +ὑπ’ +αὐτοῦ. +οὖν +Τίνι +ὁμοιώσω +τοὺς +ἀνθρώπους +τῆς +γενεᾶς +ταύτης, +καὶ +τίνι +εἰσὶν +ὅμοιοι; +ὅμοιοί +εἰσιν +παιδίοις +τοῖς +ἐν +ἀγορᾷ +καθημένοις +καὶ +προσφωνοῦσιν +ἀλλήλοις +ἃ +λέγει +Ηὐλήσαμεν +ὑμῖν +καὶ +οὐκ +ὠρχήσασθε· +ἐθρηνήσαμεν +καὶ +οὐκ +ἐκλαύσατε. +γὰρ +ἐλήλυθεν +Ἰωάνης +ὁ +Βαπτιστὴς +μὴ +ἐσθίων +ἄρτον +μήτε +πίνων +οἶνον, +καὶ +λέγετε +Δαιμόνιον +ἔχει. +ἐλήλυθεν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐσθίων +καὶ +πίνων, +καὶ +λέγετε +Ἰδοὺ +ἄνθρωπος +φάγος +καὶ +οἰνοπότης, +φίλος +τελωνῶν +καὶ +ἁμαρτωλῶν. +καὶ +ἐδικαιώθη +ἡ +σοφία +ἀπὸ +πάντων +τῶν +τέκνων +αὐτῆς. +δέ +Ἠρώτα +τις +τῶν +Φαρισαίων +αὐτὸν +ἵνα +φάγῃ +μετ’ +αὐτοῦ· +καὶ +εἰσελθὼν +εἰς +τὸν +οἶκον +τοῦ +Φαρισαίου +κατεκλίθη. +καὶ +ἰδοὺ +γυνὴ +ἥτις +ἦν +ἐν +τῇ +πόλει +ἁμαρτωλός, +καὶ +ἐπιγνοῦσα +ὅτι +κατάκειται +ἐν +τῇ +οἰκίᾳ +τοῦ +Φαρισαίου, +κομίσασα +ἀλάβαστρον +μύρου +καὶ +στᾶσα +ὀπίσω +παρὰ +τοὺς +πόδας +αὐτοῦ +κλαίουσα, +ἤρξατο +τοῖς +δάκρυσιν +βρέχειν +τοὺς +πόδας +αὐτοῦ, +καὶ +ταῖς +θριξὶν +τῆς +κεφαλῆς +αὐτῆς +ἐξέμασσεν, +καὶ +κατεφίλει +τοὺς +πόδας +αὐτοῦ +καὶ +ἤλειφεν +τῷ +μύρῳ. +δὲ +ἰδὼν +ὁ +Φαρισαῖος +ὁ +καλέσας +αὐτὸν +εἶπεν +ἐν +ἑαυτῷ +λέγων +εἰ +Οὗτος +ἦν +προφήτης, +ἂν +ἐγίνωσκεν +τίς +καὶ +ποταπὴ +ἡ +γυνὴ +ἥτις +ἅπτεται +αὐτοῦ, +ὅτι +ἁμαρτωλός +ἐστιν. +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +πρὸς +αὐτόν +Σίμων, +ἔχω +σοί +τι +εἰπεῖν. +δέ +ὁ +Διδάσκαλε, +εἰπέ, +φησίν. +δύο +χρεοφειλέται +ἦσαν +δανιστῇ +τινι· +ὁ +εἷς +ὤφειλεν +δηνάρια +πεντακόσια, +δὲ +ὁ +ἕτερος +πεντήκοντα. +μὴ +ἐχόντων +αὐτῶν +ἀποδοῦναι +ἀμφοτέροις +ἐχαρίσατο. +οὖν +τίς +αὐτῶν +πλεῖον +ἀγαπήσει +αὐτόν; +ἀποκριθεὶς +Σίμων +εἶπεν +Ὑπολαμβάνω +ὅτι +ᾧ +τὸ +πλεῖον +ἐχαρίσατο. +δὲ +ὁ +εἶπεν +αὐτῷ +Ὀρθῶς +ἔκρινας. +καὶ +στραφεὶς +πρὸς +τὴν +γυναῖκα +τῷ +Σίμωνι +ἔφη +Βλέπεις +ταύτην +τὴν +γυναῖκα; +εἰσῆλθόν +εἰς +σου +τὴν +οἰκίαν, +ὕδωρ +μοι +ἐπὶ +πόδας +οὐκ +ἔδωκας· +δὲ +αὕτη +τοῖς +δάκρυσιν +ἔβρεξέν +μου +τοὺς +πόδας +καὶ +ταῖς +θριξὶν +αὐτῆς +ἐξέμαξεν. +φίλημά +μοι +οὐκ +ἔδωκας· +δὲ +αὕτη +ἀφ’ +ἧς +εἰσῆλθον +οὐ +διέλειπεν +καταφιλοῦσά +μου +τοὺς +πόδας. +ἐλαίῳ +τὴν +κεφαλήν +μου +οὐκ +ἤλειψας· +δὲ +αὕτη +μύρῳ +ἤλειψεν +τοὺς +πόδας +μου. +οὗ +χάριν +λέγω +σοι, +ἀφέωνται +αἱ +ἁμαρτίαι +αὐτῆς +αἱ +πολλαί, +ὅτι +ἠγάπησεν +πολύ· +δὲ +ᾧ +ὀλίγον +ἀφίεται, +ὀλίγον +ἀγαπᾷ. +δὲ +εἶπεν +αὐτῇ +Ἀφέωνταί +σου +αἱ +ἁμαρτίαι. +καὶ +ἤρξαντο +οἱ +συνανακείμενοι +λέγειν +ἐν +ἑαυτοῖς +Τίς +οὗτός +ἐστιν, +ὃς +καὶ +ἁμαρτίας +ἀφίησιν; +δὲ +εἶπεν +πρὸς +τὴν +γυναῖκα +Ἠ +πίστις +σου +σέσωκέν +σε· +πορεύου +εἰς +εἰρήνην. +Καὶ +ἐγένετο +ἐν +τῷ +καθεξῆς +καὶ +αὐτὸς +διώδευεν +κατὰ +πόλιν +καὶ +κώμην +κηρύσσων +καὶ +εὐαγγελιζόμενος +τὴν +βασιλείαν +τοῦ +Θεοῦ, +καὶ +σὺν +αὐτῷ, +οἱ +δώδεκα +καὶ +γυναῖκές +τινες +αἳ +ἦσαν +τεθεραπευμέναι +ἀπὸ +πνευμάτων +πονηρῶν +καὶ +ἀσθενειῶν, +Μαρία +ἡ +καλουμένη +Μαγδαληνή, +ἀφ’ +ἧς +δαιμόνια +ἑπτὰ +ἐξεληλύθει, +καὶ +Ἰωάνα +γυνὴ +Χουζᾶ +ἐπιτρόπου +Ἠρῴδου +καὶ +Σουσάννα +καὶ +ἕτεραι +πολλαί, +αἵτινες +διηκόνουν +αὐτοῖς +ἐκ +τῶν +ὑπαρχόντων +αὐταῖς. +δὲ +Συνιόντος +ὄχλου +πολλοῦ +καὶ +τῶν +κατὰ +πόλιν +ἐπιπορευομένων +πρὸς +αὐτὸν +εἶπεν +διὰ +παραβολῆς +Ἐξῆλθεν +ὁ +σπείρων +τοῦ +σπεῖραι +τὸν +σπόρον +αὐτοῦ. +καὶ +ἐν +τῷ +σπείρειν +αὐτὸν +ὃ +μὲν +ἔπεσεν +παρὰ +τὴν +ὁδόν, +καὶ +κατεπατήθη, +καὶ +τὰ +πετεινὰ +τοῦ +οὐρανοῦ +κατέφαγεν +αὐτό. +καὶ +ἕτερον +κατέπεσεν +ἐπὶ +τὴν +πέτραν, +καὶ +φυὲν +ἐξηράνθη +διὰ +τὸ +μὴ +ἔχειν +ἰκμάδα. +καὶ +ἕτερον +ἔπεσεν +ἐν +μέσῳ +τῶν +ἀκανθῶν, +καὶ +συνφυεῖσαι +αἱ +ἄκανθαι +ἀπέπνιξαν +αὐτό. +καὶ +ἕτερον +ἔπεσεν +εἰς +τὴν +γῆν +τὴν +ἀγαθήν, +καὶ +φυὲν +ἐποίησεν +καρπὸν +ἑκατονταπλασίονα. +ταῦτα +λέγων +ἐφώνει +Ὁ +ἔχων +ὦτα +ἀκούειν +ἀκουέτω. +δὲ +Ἐπηρώτων +αὐτὸν +οἱ +μαθηταὶ +αὐτοῦ +τίς +εἴη +αὕτη +ἡ +παραβολή. +δὲ +ὁ +εἶπεν +Ὑμῖν +δέδοται +γνῶναι +τὰ +μυστήρια +τῆς +βασιλείας +τοῦ +Θεοῦ, +δὲ +τοῖς +λοιποῖς +ἐν +παραβολαῖς, +ἵνα +βλέποντες +μὴ +βλέπωσιν +καὶ +ἀκούοντες +μὴ +συνιῶσιν. +δὲ +ἔστιν +αὕτη +ἡ +παραβολή. +ὁ +σπόρος +ἐστὶν +ὁ +λόγος +τοῦ +Θεοῦ. +δὲ +οἱ +παρὰ +τὴν +ὁδόν +εἰσιν +οἱ +ἀκούσαντες, +εἶτα +ἔρχεται +ὁ +διάβολος +καὶ +αἴρει +τὸν +λόγον +ἀπὸ +τῆς +καρδίας +αὐτῶν, +ἵνα +μὴ +πιστεύσαντες +σωθῶσιν. +δὲ +οἱ +ἐπὶ +τῆς +πέτρας +οἳ +ὅταν +ἀκούσωσιν +μετὰ +χαρᾶς +δέχονται +τὸν +λόγον, +καὶ +οὗτοι +ῥίζαν +οὐκ +ἔχουσιν, +οἳ +πρὸς +καιρὸν +πιστεύουσιν +καὶ +ἐν +καιρῷ +πειρασμοῦ +ἀφίστανται. +δὲ +τὸ +εἰς +τὰς +ἀκάνθας +πεσόν, +οὗτοί +εἰσιν +οἱ +ἀκούσαντες, +καὶ +ὑπὸ +μεριμνῶν +καὶ +πλούτου +καὶ +ἡδονῶν +τοῦ +βίου +πορευόμενοι +συνπνίγονται +καὶ +οὐ +τελεσφοροῦσιν. +δὲ +τὸ +ἐν +τῇ +καλῇ +γῇ, +οὗτοί +εἰσιν +οἵτινες +ἐν +καρδίᾳ +καλῇ +καὶ +ἀγαθῇ +ἀκούσαντες +τὸν +λόγον +κατέχουσιν +καὶ +καρποφοροῦσιν +ἐν +ὑπομονῇ. +δὲ +Οὐδεὶς +λύχνον +ἅψας +καλύπτει +αὐτὸν +σκεύει +ἢ +ὑποκάτω +κλίνης +τίθησιν, +ἀλλ’ +ἐπὶ +λυχνίας +τίθησιν, +ἵνα +οἱ +εἰσπορευόμενοι +βλέπωσιν +τὸ +φῶς. +γάρ +οὐ +ἐστιν +κρυπτὸν +ὃ +οὐ +φανερὸν +γενήσεται, +οὐδὲ +ἀπόκρυφον +ὃ +οὐ +μὴ +γνωσθῇ +καὶ +εἰς +φανερὸν +ἔλθῃ. +οὖν +βλέπετε +πῶς +ἀκούετε· +γὰρ +ἂν +ὃς +ἔχῃ, +δοθήσεται +αὐτῷ, +καὶ +ἂν +ὃς +μὴ +ἔχῃ, +καὶ +ὃ +ἔχειν +δοκεῖ +ἀρθήσεται +ἀπ’ +αὐτοῦ. +δὲ +Παρεγένετο +πρὸς +αὐτὸν +ἡ +μήτηρ +καὶ +οἱ +ἀδελφοὶ +αὐτοῦ, +καὶ +οὐκ +ἠδύναντο +συντυχεῖν +αὐτῷ +διὰ +τὸν +ὄχλον. +δὲ +ἀπηγγέλη +αὐτῷ +Ἠ +μήτηρ +σου +καὶ +οἱ +ἀδελφοί +σου +ἑστήκασιν +ἔξω +ἰδεῖν +σε. +θέλοντές +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +πρὸς +αὐτούς +Μήτηρ +μου +καὶ +ἀδελφοί +μου +οὗτοί +εἰσιν +οἱ +τὸν +λόγον +τοῦ +Θεοῦ +ἀκούοντες +καὶ +ποιοῦντες. +δὲ +Ἐγένετο +ἐν +μιᾷ +τῶν +ἡμερῶν +καὶ +αὐτὸς +ἐνέβη +εἰς +πλοῖον +καὶ +οἱ +μαθηταὶ +αὐτοῦ, +καὶ +εἶπεν +πρὸς +αὐτούς +Διέλθωμεν +εἰς +τὸ +πέραν +τῆς +λίμνης· +καὶ +ἀνήχθησαν. +δὲ +πλεόντων +αὐτῶν +ἀφύπνωσεν. +καὶ +κατέβη +λαῖλαψ +ἀνέμου +εἰς +τὴν +λίμνην, +καὶ +συνεπληροῦντο +καὶ +ἐκινδύνευον. +δὲ +προσελθόντες +διήγειραν +αὐτὸν +λέγοντες +Ἐπιστάτα +ἐπιστάτα, +ἀπολλύμεθα. +δὲ +ὁ +διεγερθεὶς +ἐπετίμησεν +τῷ +ἀνέμῳ +καὶ +τῷ +κλύδωνι +τοῦ +ὕδατος· +καὶ +ἐπαύσαντο, +καὶ +ἐγένετο +γαλήνη. +δὲ +εἶπεν +αὐτοῖς +Ποῦ +ἡ +πίστις +ὑμῶν; +δὲ +φοβηθέντες +ἐθαύμασαν, +λέγοντες +πρὸς +ἀλλήλους +ἄρα +Τίς +οὗτός +ἐστιν, +ὅτι +καὶ +τοῖς +ἀνέμοις +καὶ +τῷ +ὕδατι, +ἐπιτάσσει +καὶ +ὑπακούουσιν +αὐτῷ; +Καὶ +κατέπλευσαν +εἰς +τὴν +χώραν +τῶν +Γερασηνῶν, +ἥτις +ἐστὶν +ἀντιπέρα +τῆς +Γαλιλαίας. +δὲ +αὐτῷ +ἐξελθόντι +ἐπὶ +τὴν +γῆν +ὑπήντησεν +ἀνήρ +τις +ἐκ +τῆς +πόλεως +ἔχων +δαιμόνια, +καὶ +χρόνῳ +ἱκανῷ +οὐκ +ἐνεδύσατο +ἱμάτιον, +καὶ +ἐν +οἰκίᾳ +οὐκ +ἔμενεν +ἀλλ’ +ἐν +τοῖς +μνήμασιν. +δὲ +ἰδὼν +τὸν +Ἰησοῦν +ἀνακράξας +προσέπεσεν +αὐτῷ +καὶ +φωνῇ +μεγάλῃ +εἶπεν +Τί +ἐμοὶ +καὶ +σοί, +Ἰησοῦ +Υἱὲ +τοῦ +Θεοῦ +τοῦ +Ὑψίστου; +δέομαί +σου, +μή +με +βασανίσῃς. +γὰρ +παρήγγελλεν +τῷ +πνεύματι +τῷ +ἀκαθάρτῳ +ἐξελθεῖν +ἀπὸ +τοῦ +ἀνθρώπου. +γὰρ +πολλοῖς +χρόνοις +συνηρπάκει +αὐτόν, +καὶ +ἐδεσμεύετο +ἁλύσεσιν +καὶ +πέδαις +φυλασσόμενος, +καὶ +διαρήσσων +τὰ +δεσμὰ +ἠλαύνετο +ἀπὸ +τοῦ +δαιμονίου +εἰς +τὰς +ἐρήμους. +δὲ +ἐπηρώτησεν +αὐτὸν +ὁ +Ἰησοῦς +Τί +σοι +ὄνομά +ἐστιν; +δὲ +ὁ +εἶπεν +Λεγιών, +ὅτι +εἰσῆλθεν +δαιμόνια +πολλὰ +εἰς +αὐτόν. +καὶ +παρεκάλουν +αὐτὸν +ἵνα +μὴ +ἐπιτάξῃ +αὐτοῖς +εἰς +τὴν +ἄβυσσον +ἀπελθεῖν. +δὲ +ἦν +ἐκεῖ +ἀγέλη +χοίρων +ἱκανῶν +βοσκομένη +ἐν +τῷ +ὄρει· +καὶ +παρεκάλεσαν +αὐτὸν +ἵνα +ἐπιτρέψῃ +αὐτοῖς +εἰς +ἐκείνους +εἰσελθεῖν· +καὶ +ἐπέτρεψεν +αὐτοῖς. +δὲ +τὰ +δαιμόνια +ἐξελθόντα +ἀπὸ +τοῦ +ἀνθρώπου +εἰσῆλθον +εἰς +τοὺς +χοίρους, +καὶ +ὥρμησεν +ἡ +ἀγέλη +κατὰ +τοῦ +κρημνοῦ +εἰς +τὴν +λίμνην +καὶ +ἀπεπνίγη. +δὲ +οἱ +βόσκοντες +ἰδόντες +τὸ +γεγονὸς +ἔφυγον +καὶ +ἀπήγγειλαν +εἰς +τὴν +πόλιν +καὶ +εἰς +τοὺς +ἀγρούς. +δὲ +ἐξῆλθον +ἰδεῖν +τὸ +γεγονὸς, +καὶ +ἦλθον +πρὸς +τὸν +Ἰησοῦν, +καὶ +εὗρον +καθήμενον +τὸν +ἄνθρωπον +ἀφ’ +οὗ +τὰ +δαιμόνια +ἐξῆλθεν +ἱματισμένον +καὶ +σωφρονοῦντα +παρὰ +τοὺς +πόδας +τοῦ +Ἰησοῦ, +καὶ +ἐφοβήθησαν. +δὲ +ἀπήγγειλαν +αὐτοῖς +οἱ +ἰδόντες +πῶς +ἐσώθη +ὁ +δαιμονισθείς. +καὶ +ἠρώτησεν +ἅπαν +τὸ +πλῆθος +τῆς +περιχώρου +τῶν +Γερασηνῶν +αὐτὸν +ἀπελθεῖν +ἀπ’ +αὐτῶν, +ὅτι +φόβῳ +μεγάλῳ +συνείχοντο· +δὲ +αὐτὸς +ἐμβὰς +εἰς +πλοῖον +ὑπέστρεψεν. +δὲ +ἐδεῖτο +αὐτοῦ +ὁ +ἀνὴρ +ἀφ’ +οὗ +ἐξεληλύθει +τὰ +δαιμόνια +εἶναι +σὺν +αὐτῷ· +δὲ +ἀπέλυσεν +αὐτὸν +λέγων +Ὑπόστρεφε +εἰς +τὸν +οἶκόν +σου, +καὶ +διηγοῦ +ὅσα +σοι +ἐποίησεν +ὁ +Θεός. +καὶ +ἀπῆλθεν +καθ’ +ὅλην +τὴν +πόλιν +κηρύσσων +ὅσα +ἐποίησεν +αὐτῷ +ὁ +Ἰησοῦς. +δὲ +Ἐν +τῷ +ὑποστρέφειν +τὸν +Ἰησοῦν +ἀπεδέξατο +αὐτὸν +ὁ +ὄχλος· +γὰρ +πάντες +ἦσαν +προσδοκῶντες +αὐτόν. +καὶ +ἰδοὺ +ἦλθεν +ἀνὴρ +ᾧ +ὄνομα +Ἰάειρος, +καὶ +οὗτος +ἄρχων +τῆς +συναγωγῆς +ὑπῆρχεν· +καὶ +πεσὼν +παρὰ +τοὺς +πόδας +Ἰησοῦ +παρεκάλει +αὐτὸν +εἰσελθεῖν +εἰς +τὸν +οἶκον +αὐτοῦ, +ὅτι +θυγάτηρ +μονογενὴς +ὡς +ἐτῶν +δώδεκα +ἦν +αὐτῷ +καὶ +αὐτὴ +ἀπέθνῃσκεν. +δὲ +Ἐν +τῷ +ὑπάγειν +αὐτὸν +οἱ +ὄχλοι +συνέπνιγον +αὐτόν. +καὶ +γυνὴ +οὖσα +ἐν +ῥύσει +αἵματος +ἀπὸ +ἐτῶν +δώδεκα, +ἥτις +οὐκ +ἴσχυσεν +ἀπ’ +οὐδενὸς +θεραπευθῆναι, +προσελθοῦσα +ὄπισθεν +ἥψατο +τοῦ +κρασπέδου +τοῦ +ἱματίου +αὐτοῦ, +καὶ +παραχρῆμα +ἔστη +ἡ +ῥύσις +τοῦ +αἵματος +αὐτῆς. +καὶ +εἶπεν +ὁ +Ἰησοῦς +Τίς +ὁ +ἁψάμενός +μου; +δὲ +ἀρνουμένων +πάντων +εἶπεν +ὁ +Πέτρος +Ἐπιστάτα, +οἱ +ὄχλοι +συνέχουσίν +σε +καὶ +ἀποθλίβουσιν. +δὲ +ὁ +Ἰησοῦς +εἶπεν +Ἥψατό +μού +τις· +γὰρ +ἐγὼ +ἔγνων +δύναμιν +ἐξεληλυθυῖαν +ἀπ’ +ἐμοῦ. +δὲ +ἡ +γυνὴ +ἰδοῦσα +ὅτι +οὐκ +ἔλαθεν, +τρέμουσα +ἦλθεν +καὶ +προσπεσοῦσα +αὐτῷ +δι’ +ἣν +αἰτίαν +ἥψατο +αὐτοῦ +ἀπήγγειλεν +ἐνώπιον +παντὸς +τοῦ +λαοῦ, +καὶ +ὡς +ἰάθη +παραχρῆμα. +δὲ +ὁ +εἶπεν +αὐτῇ +Θυγάτηρ, +ἡ +πίστις +σου +σέσωκέν +σε· +πορεύου +εἰς +εἰρήνην. +Ἔτι +αὐτοῦ +λαλοῦντος +ἔρχεταί +τις +παρὰ +τοῦ +ἀρχισυναγώγου +λέγων +ὅτι +Τέθνηκεν +ἡ +θυγάτηρ +σου, +μηκέτι +σκύλλε +τὸν +Διδάσκαλον. +δὲ +ὁ +Ἰησοῦς +ἀκούσας +ἀπεκρίθη +αὐτῷ +Μὴ +φοβοῦ· +μόνον +πίστευσον, +καὶ +σωθήσεται. +δὲ +ἐλθὼν +εἰς +τὴν +οἰκίαν +οὐκ +ἀφῆκεν +εἰσελθεῖν +τινα +σὺν +αὐτῷ +εἰ +μὴ +Πέτρον +καὶ +Ἰωάνην +καὶ +Ἰάκωβον +καὶ +τὸν +πατέρα +τῆς +παιδὸς +καὶ +τὴν +μητέρα. +δὲ +πάντες +ἔκλαιον +καὶ +ἐκόπτοντο +αὐτήν. +δὲ +ὁ +εἶπεν +Μὴ +κλαίετε· +οὐκ +ἀπέθανεν +ἀλλὰ +καθεύδει. +καὶ +κατεγέλων +αὐτοῦ, +εἰδότες +ὅτι +ἀπέθανεν. +δὲ +αὐτὸς +κρατήσας +τῆς +χειρὸς +αὐτῆς +ἐφώνησεν +λέγων +Ἠ +παῖς, +ἔγειρε. +καὶ +ἐπέστρεψεν +τὸ +πνεῦμα +αὐτῆς, +καὶ +ἀνέστη +παραχρῆμα, +καὶ +διέταξεν +αὐτῇ +δοθῆναι +φαγεῖν. +καὶ +ἐξέστησαν +οἱ +γονεῖς +αὐτῆς· +δὲ +ὁ +παρήγγειλεν +αὐτοῖς +μηδενὶ +εἰπεῖν +τὸ +γεγονός. +δὲ +Συνκαλεσάμενος +τοὺς +δώδεκα +ἔδωκεν +αὐτοῖς +δύναμιν +καὶ +ἐξουσίαν +ἐπὶ +πάντα +τὰ +δαιμόνια +καὶ +νόσους +θεραπεύειν· +καὶ +ἀπέστειλεν +αὐτοὺς +κηρύσσειν +τὴν +βασιλείαν +τοῦ +Θεοῦ +καὶ +ἰᾶσθαι, +καὶ +εἶπεν +πρὸς +αὐτούς +Μηδὲν +αἴρετε +εἰς +τὴν +ὁδόν, +μήτε +ῥάβδον +μήτε +πήραν +μήτε +ἄρτον +μήτε +ἀργύριον +μήτε +ἀνὰ +δύο +χιτῶνας +ἔχειν. +καὶ +ἂν +εἰς +ἣν +οἰκίαν +εἰσέλθητε, +ἐκεῖ +μένετε +καὶ +ἐκεῖθεν +ἐξέρχεσθε. +καὶ +ἂν +ὅσοι +μὴ +δέχωνται +ὑμᾶς, +ἐξερχόμενοι +ἀπὸ +τῆς +πόλεως +ἐκείνης +τὸν +κονιορτὸν +ἀπὸ +τῶν +ποδῶν +ὑμῶν +ἀποτινάσσετε +εἰς +μαρτύριον +ἐπ’ +αὐτούς. +δὲ +ἐξερχόμενοι +διήρχοντο +κατὰ +τὰς +κώμας +εὐαγγελιζόμενοι +καὶ +θεραπεύοντες +πανταχοῦ. +δὲ +Ἤκουσεν +Ἠρῴδης +ὁ +τετραάρχης +τὰ +γινόμενα +πάντα, +καὶ +διηπόρει +διὰ +τὸ +λέγεσθαι +ὑπό +τινων +ὅτι +Ἰωάνης +ἠγέρθη +ἐκ +νεκρῶν, +δὲ +ὑπό +τινων +ὅτι +Ἠλείας +ἐφάνη, +δὲ +ἄλλων +ὅτι +προφήτης +τις +τῶν +ἀρχαίων +ἀνέστη. +δὲ +εἶπεν +Ἠρῴδης +Ἰωάνην +ἐγὼ +ἀπεκεφάλισα· +δέ +τίς +ἐστιν +οὗτος +περὶ +οὗ +ἀκούω +τοιαῦτα; +καὶ +ἐζήτει +ἰδεῖν +αὐτόν. +Καὶ +ὑποστρέψαντες +οἱ +ἀπόστολοι +διηγήσαντο +αὐτῷ +ὅσα +ἐποίησαν. +Καὶ +παραλαβὼν +αὐτοὺς +ὑπεχώρησεν +κατ’ +ἰδίαν +εἰς +πόλιν +καλουμένην +Βηθσαϊδά. +δὲ +οἱ +ὄχλοι +γνόντες +ἠκολούθησαν +αὐτῷ· +καὶ +ἀποδεξάμενος +αὐτοὺς +ἐλάλει +αὐτοῖς +περὶ +τῆς +βασιλείας +τοῦ +Θεοῦ, +καὶ +τοὺς +χρείαν +θεραπείας +ἔχοντας +ἰᾶτο. +δὲ +Ἠ +ἡμέρα +ἤρξατο +κλίνειν· +δὲ +προσελθόντες +οἱ +δώδεκα +εἶπαν +αὐτῷ +Ἀπόλυσον +τὸν +ὄχλον, +ἵνα +πορευθέντες +εἰς +τὰς +κύκλῳ +κώμας +καὶ +ἀγροὺς +καταλύσωσιν +καὶ +εὕρωσιν +ἐπισιτισμόν, +ὅτι +ὧδε +ἐν +ἐρήμῳ +τόπῳ +ἐσμέν. +δὲ +εἶπεν +πρὸς +αὐτούς +Δότε +αὐτοῖς +φαγεῖν +ὑμεῖς. +δὲ +οἱ +εἶπαν +Οὐκ +εἰσὶν +ἡμῖν +πλεῖον +ἢ +ἄρτοι +πέντε +καὶ +ἰχθύες +δύο, +εἰ +μήτι +πορευθέντες +ἡμεῖς +ἀγοράσωμεν +εἰς +πάντα +τὸν +λαὸν +τοῦτον +βρώματα. +γὰρ +ἦσαν +ὡσεὶ +πεντακισχίλιοι. +ἄνδρες +δὲ +εἶπεν +πρὸς +τοὺς +μαθητὰς +αὐτοῦ +Κατακλίνατε +αὐτοὺς +κλισίας +ὡσεὶ +ἀνὰ +πεντήκοντα. +καὶ +ἐποίησαν +οὕτως +καὶ +κατέκλιναν +ἅπαντας. +δὲ +λαβὼν +τοὺς +πέντε +ἄρτους +καὶ +τοὺς +δύο +ἰχθύας, +ἀναβλέψας +εἰς +τὸν +οὐρανὸν +εὐλόγησεν +αὐτοὺς +καὶ +κατέκλασεν, +καὶ +ἐδίδου +τοῖς +μαθηταῖς +παραθεῖναι +τῷ +ὄχλῳ. +καὶ +ἔφαγον +καὶ +ἐχορτάσθησαν +πάντες, +καὶ +ἤρθη +τὸ +περισσεῦσαν +αὐτοῖς +κλασμάτων +κόφινοι +δώδεκα. +Καὶ +ἐγένετο +ἐν +τῷ +εἶναι +προσευχόμενον +αὐτὸν +κατὰ +μόνας +συνῆσαν +αὐτῷ +οἱ +μαθηταί, +καὶ +ἐπηρώτησεν +αὐτοὺς +λέγων +Τίνα +με +εἶναι; +οἱ +ὄχλοι +λέγουσιν +δὲ +οἱ +ἀποκριθέντες +εἶπαν +Ἰωάνην +τὸν +Βαπτιστήν, +δὲ +ἄλλοι +Ἠλείαν, +δὲ +ἄλλοι +ὅτι +προφήτης +τις +τῶν +ἀρχαίων +ἀνέστη. +δὲ +εἶπεν +αὐτοῖς +δὲ +Ὑμεῖς +τίνα +με +εἶναι; +λέγετε +δὲ +Πέτρος +ἀποκριθεὶς +εἶπεν +Τὸν +Χριστὸν +τοῦ +Θεοῦ. +δὲ +ὁ +ἐπιτιμήσας +αὐτοῖς +παρήγγειλεν +μηδενὶ +λέγειν +τοῦτο, +εἰπὼν +ὅτι +Δεῖ +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +πολλὰ +παθεῖν +καὶ +ἀποδοκιμασθῆναι +ἀπὸ +τῶν +πρεσβυτέρων +καὶ +ἀρχιερέων +καὶ +γραμματέων +καὶ +ἀποκτανθῆναι +καὶ +τῇ +τρίτῃ +ἡμέρᾳ +ἐγερθῆναι. +δὲ +Ἔλεγεν +πρὸς +πάντας +Εἴ +τις +θέλει +ὀπίσω +μου +ἔρχεσθαι, +ἀρνησάσθω +ἑαυτὸν +καὶ +ἀράτω +τὸν +σταυρὸν +αὐτοῦ +καθ’ +ἡμέραν, +καὶ +ἀκολουθείτω +μοι. +γὰρ +ἐὰν +ὃς +θέλῃ +τὴν +ψυχὴν +αὐτοῦ +σῶσαι, +ἀπολέσει +αὐτήν· +δ’ +ἂν +ὃς +ἀπολέσῃ +τὴν +ψυχὴν +αὐτοῦ +ἕνεκεν +ἐμοῦ, +οὗτος +σώσει +αὐτήν. +γὰρ +τί +ὠφελεῖται +ἄνθρωπος +κερδήσας +τὸν +κόσμον +ὅλον +δὲ +ἑαυτὸν +ἀπολέσας +ἢ +ζημιωθείς; +γὰρ +ἂν +ὃς +ἐπαισχυνθῇ +με +καὶ +τοὺς +ἐμοὺς +λόγους, +τοῦτον +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐπαισχυνθήσεται, +ὅταν +ἔλθῃ +ἐν +τῇ +δόξῃ +αὐτοῦ +καὶ +τοῦ +Πατρὸς +καὶ +τῶν +ἁγίων +ἀγγέλων. +δὲ +λέγω +ὑμῖν +ἀληθῶς, +εἰσίν +τινες +τῶν +αὐτοῦ +ἑστηκότων +οἳ +οὐ +μὴ +γεύσωνται +θανάτου +ἕως +ἂν +ἴδωσιν +τὴν +βασιλείαν +τοῦ +Θεοῦ. +δὲ +Ἐγένετο +μετὰ +τοὺς +λόγους +τούτους +ὡσεὶ +ἡμέραι +ὀκτὼ, +καὶ +παραλαβὼν +Πέτρον +καὶ +Ἰωάνην +καὶ +Ἰάκωβον +ἀνέβη +εἰς +τὸ +ὄρος +προσεύξασθαι. +καὶ +ἐγένετο +ἐν +τῷ +προσεύχεσθαι +αὐτὸν +τὸ +εἶδος +τοῦ +προσώπου +αὐτοῦ +ἕτερον +καὶ +ὁ +ἱματισμὸς +αὐτοῦ +λευκὸς +ἐξαστράπτων. +καὶ +ἰδοὺ +ἄνδρες +δύο +συνελάλουν +αὐτῷ, +οἵτινες +ἦσαν +Μωϋσῆς +καὶ +Ἠλείας, +οἳ +ὀφθέντες +ἐν +δόξῃ +ἔλεγον +τὴν +ἔξοδον +αὐτοῦ, +ἣν +πληροῦν +ἐν +Ἱερουσαλήμ. +ἤμελλεν +δὲ +ὁ +Πέτρος +καὶ +οἱ +σὺν +αὐτῷ +ἦσαν +βεβαρημένοι +ὕπνῳ· +δὲ +διαγρηγορήσαντες +εἶδαν +τὴν +δόξαν +αὐτοῦ +καὶ +τοὺς +δύο +ἄνδρας +τοὺς +συνεστῶτας +αὐτῷ. +καὶ +ἐγένετο +ἐν +τῷ +διαχωρίζεσθαι +αὐτοὺς +ἀπ’ +αὐτοῦ +εἶπεν +ὁ +Πέτρος +πρὸς +τὸν +Ἰησοῦν +Ἐπιστάτα, +καλόν +ἐστιν +ἡμᾶς +ὧδε +εἶναι, +καὶ +ποιήσωμεν +σκηνὰς +τρεῖς, +μίαν +σοὶ +καὶ +μίαν +Μωϋσεῖ +καὶ +μίαν +Ἠλείᾳ, +μὴ +εἰδὼς +ὃ +λέγει. +δὲ +ταῦτα +αὐτοῦ +λέγοντος +ἐγένετο +νεφέλη +καὶ +ἐπεσκίαζεν +αὐτούς· +δὲ +ἐφοβήθησαν +ἐν +τῷ +εἰσελθεῖν +αὐτοὺς +εἰς +τὴν +νεφέλην. +καὶ +φωνὴ +ἐγένετο +ἐκ +τῆς +νεφέλης +λέγουσα +Οὗτός +ἐστιν +ὁ +Υἱός +μου +ὁ +ἐκλελεγμένος, +αὐτοῦ +ἀκούετε. +καὶ +ἐν +τῷ +γενέσθαι +τὴν +φωνὴν +εὑρέθη +Ἰησοῦς +μόνος. +καὶ +αὐτοὶ +ἐσίγησαν +καὶ +οὐδενὶ +ἀπήγγειλαν +ἐν +ἐκείναις +ταῖς +ἡμέραις +οὐδὲν +ὧν +ἑώρακαν. +δὲ +Ἐγένετο +τῇ +ἑξῆς +ἡμέρᾳ +κατελθόντων +αὐτῶν +ἀπὸ +τοῦ +ὄρους +συνήντησεν +αὐτῷ +ὄχλος +πολύς. +καὶ +ἰδοὺ +ἀνὴρ +ἀπὸ +τοῦ +ὄχλου +ἐβόησεν +λέγων +Διδάσκαλε, +δέομαί +σου +ἐπιβλέψαι +ἐπὶ +τὸν +υἱόν +μου, +ὅτι +μονογενής +μοί +ἐστιν, +καὶ +ἰδοὺ +πνεῦμα +λαμβάνει +αὐτόν, +καὶ +ἐξαίφνης +κράζει +καὶ +σπαράσσει +αὐτὸν +μετὰ +ἀφροῦ, +καὶ +μόλις +ἀποχωρεῖ +ἀπ’ +αὐτοῦ +συντρῖβον +αὐτόν· +καὶ +ἐδεήθην +τῶν +μαθητῶν +σου +ἵνα +ἐκβάλωσιν +αὐτό, +καὶ +οὐκ +ἠδυνήθησαν. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +Ὦ +γενεὰ +ἄπιστος +καὶ +διεστραμμένη, +ἕως +πότε +ἔσομαι +πρὸς +ὑμᾶς +καὶ +ἀνέξομαι +ὑμῶν; +προσάγαγε +ὧδε +τὸν +υἱόν +σου. +δὲ +ἔτι +προσερχομένου +αὐτοῦ +ἔρρηξεν +αὐτὸν +τὸ +δαιμόνιον +καὶ +συνεσπάραξεν· +δὲ +ἐπετίμησεν +ὁ +Ἰησοῦς +τῷ +πνεύματι +τῷ +ἀκαθάρτῳ, +καὶ +ἰάσατο +τὸν +παῖδα +καὶ +ἀπέδωκεν +αὐτὸν +τῷ +πατρὶ +αὐτοῦ. +δὲ +ἐξεπλήσσοντο +πάντες +ἐπὶ +τῇ +μεγαλειότητι +τοῦ +Θεοῦ. +δὲ +Πάντων +θαυμαζόντων +ἐπὶ +πᾶσιν +οἷς +ἐποίει +εἶπεν +πρὸς +τοὺς +μαθητὰς +αὐτοῦ +Θέσθε +ὑμεῖς +εἰς +τὰ +ὦτα +ὑμῶν +τοὺς +λόγους +τούτους· +γὰρ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +μέλλει +παραδίδοσθαι +εἰς +χεῖρας +ἀνθρώπων. +δὲ +οἱ +ἠγνόουν +τὸ +ῥῆμα +τοῦτο, +καὶ +ἦν +παρακεκαλυμμένον +ἀπ’ +αὐτῶν +ἵνα +μὴ +αἴσθωνται +αὐτό, +καὶ +ἐφοβοῦντο +ἐρωτῆσαι +αὐτὸν +περὶ +τοῦ +ῥήματος +τούτου. +δὲ +Εἰσῆλθεν +ἐν +αὐτοῖς, +διαλογισμὸς +τὸ +ἂν +τίς +αὐτῶν. +εἴη +μείζων +δὲ +ὁ +Ἰησοῦς +εἰδὼς +τὸν +διαλογισμὸν +τῆς +καρδίας +αὐτῶν, +ἐπιλαβόμενος +παιδίον +ἔστησεν +αὐτὸ +παρ’ +ἑαυτῷ, +καὶ +εἶπεν +αὐτοῖς +ἐὰν +Ὃς +δέξηται +τοῦτο +τὸ +παιδίον +ἐπὶ +τῷ +ὀνόματί +μου, +ἐμὲ +δέχεται· +καὶ +ἂν +ὃς +ἐμὲ +δέξηται, +δέχεται +τὸν +ἀποστείλαντά +με· +γὰρ +ὁ +μικρότερος +ἐν +πᾶσιν +ὑμῖν +ὑπάρχων +οὗτός +ἐστιν +μέγας. +δὲ +Ἀποκριθεὶς +ὁ +Ἰωάνης +εἶπεν +Ἐπιστάτα, +εἴδομέν +τινα +ἐν +τῷ +ὀνόματί +σου +ἐκβάλλοντα +δαιμόνια, +καὶ +ἐκωλύομεν +αὐτὸν, +ὅτι +οὐκ +ἀκολουθεῖ +μεθ’ +ἡμῶν. +δὲ +εἶπεν +πρὸς +αὐτὸν +Ἰησοῦς +Μὴ +κωλύετε· +γὰρ +ὃς +οὐκ +ἔστιν +καθ’ +ὑμῶν, +ὑπὲρ +ὑμῶν +ἐστιν. +δὲ +Ἐγένετο +ἐν +τῷ +συμπληροῦσθαι +τὰς +ἡμέρας +τῆς +ἀναλήμψεως +αὐτοῦ +καὶ +αὐτὸς +τὸ +πρόσωπον +ἐστήρισεν +τοῦ +πορεύεσθαι +εἰς +Ἱερουσαλήμ, +καὶ +ἀπέστειλεν +ἀγγέλους +πρὸ +προσώπου +αὐτοῦ. +καὶ +πορευθέντες +εἰσῆλθον +εἰς +κώμην +Σαμαρειτῶν, +ὥστε +ἑτοιμάσαι +αὐτῷ· +καὶ +οὐκ +ἐδέξαντο +αὐτόν, +ὅτι +τὸ +πρόσωπον +αὐτοῦ +ἦν +πορευόμενον +εἰς +Ἱερουσαλήμ. +δὲ +ἰδόντες +οἱ +μαθηταὶ +Ἰάκωβος +καὶ +Ἰωάνης +εἶπαν +Κύριε, +θέλεις +εἴπωμεν +πῦρ +καταβῆναι +ἀπὸ +τοῦ +οὐρανοῦ +καὶ +ἀναλῶσαι +αὐτούς; +δὲ +στραφεὶς +ἐπετίμησεν +αὐτοῖς. +καὶ +ἐπορεύθησαν +εἰς +ἑτέραν +κώμην. +Καὶ +πορευομένων +αὐτῶν +ἐν +τῇ +ὁδῷ +εἶπέν +τις +πρὸς +αὐτόν +Ἀκολουθήσω +σοι +ἐὰν +ὅπου +ἀπέρχῃ. +καὶ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Αἱ +ἀλώπεκες +φωλεοὺς +ἔχουσιν +καὶ +τὰ +πετεινὰ +τοῦ +οὐρανοῦ +κατασκηνώσεις, +δὲ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +οὐκ +ἔχει +ποῦ +τὴν +κεφαλὴν +κλίνῃ. +δὲ +Εἶπεν +πρὸς +ἕτερον +Ἀκολούθει +μοι. +δὲ +ὁ +εἶπεν +Ἐπίτρεψόν +μοι +πρῶτον +ἀπελθόντι +θάψαι +τὸν +πατέρα +μου. +δὲ +εἶπεν +αὐτῷ +Ἄφες +τοὺς +νεκροὺς +θάψαι +τοὺς +ἑαυτῶν +νεκρούς, +δὲ +σὺ +ἀπελθὼν +διάγγελλε +τὴν +βασιλείαν +τοῦ +Θεοῦ. +δὲ +Εἶπεν +καὶ +ἕτερος +Ἀκολουθήσω +σοι, +Κύριε· +δὲ +πρῶτον +ἐπίτρεψόν +μοι +ἀποτάξασθαι +τοῖς +εἰς +τὸν +οἶκόν +μου. +δὲ +εἶπεν +πρὸς +αὐτὸν +ὁ +Ἰησοῦς +Οὐδεὶς +ἐπιβαλὼν +τὴν +χεῖρα +ἐπ’ +ἄροτρον +καὶ +βλέπων +εἰς +τὰ +ὀπίσω +εὔθετός +ἐστιν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ. +δὲ +Μετὰ +ταῦτα +ἀνέδειξεν +ὁ +Κύριος +ἑτέρους +ἑβδομήκοντα, +καὶ +ἀπέστειλεν +αὐτοὺς +ἀνὰ +δύο +πρὸ +προσώπου +αὐτοῦ +εἰς +πᾶσαν +πόλιν +καὶ +τόπον +οὗ +ἤμελλεν +αὐτὸς +ἔρχεσθαι. +δὲ +ἔλεγεν +πρὸς +αὐτούς +μὲν +Ὁ +θερισμὸς +πολύς, +δὲ +οἱ +ἐργάται +ὀλίγοι· +οὖν +δεήθητε +τοῦ +Κυρίου +τοῦ +θερισμοῦ +ὅπως +ἐργάτας +ἐκβάλῃ +εἰς +τὸν +θερισμὸν +αὐτοῦ. +ὑπάγετε· +ἰδοὺ +ἀποστέλλω +ὑμᾶς +ὡς +ἄρνας +ἐν +μέσῳ +λύκων. +μὴ +βαστάζετε +βαλλάντιον, +μὴ +πήραν, +μὴ +ὑποδήματα· +καὶ +μηδένα +κατὰ +τὴν +ὁδὸν +ἀσπάσησθε. +δ’ +ἂν +εἰς +ἣν +οἰκίαν, +εἰσέλθητε +πρῶτον +λέγετε +Εἰρήνη +τῷ +οἴκῳ +τούτῳ. +καὶ +ἐὰν +ἐκεῖ +ᾖ +υἱὸς +εἰρήνης, +ἐπαναπαήσεται +ἐπ’ +αὐτὸν +ἡ +εἰρήνη +ὑμῶν· +δὲ +εἰ +μήγε, +ἐφ’ +ὑμᾶς +ἀνακάμψει. +δὲ +ἐν +αὐτῇ +τῇ +οἰκίᾳ +μένετε, +ἔσθοντες +καὶ +πίνοντες +τὰ +παρ’ +αὐτῶν· +γὰρ +ἄξιος +ὁ +ἐργάτης +τοῦ +μισθοῦ +αὐτοῦ. +μὴ +μεταβαίνετε +ἐξ +οἰκίας +εἰς +οἰκίαν. +καὶ +ἂν +εἰς +ἣν +πόλιν +εἰσέρχησθε +καὶ +δέχωνται +ὑμᾶς, +ἐσθίετε +τὰ +παρατιθέμενα +ὑμῖν, +καὶ +θεραπεύετε +τοὺς +ἐν +αὐτῇ +ἀσθενεῖς, +καὶ +λέγετε +αὐτοῖς +Ἤγγικεν +ἐφ’ +ὑμᾶς +ἡ +βασιλεία +τοῦ +Θεοῦ. +δ’ +ἂν +εἰς +ἣν +πόλιν +εἰσέλθητε +καὶ +μὴ +δέχωνται +ὑμᾶς, +ἐξελθόντες +εἰς +τὰς +πλατείας +αὐτῆς +εἴπατε +Καὶ +τὸν +κονιορτὸν +τὸν +κολληθέντα +ἡμῖν +ἐκ +τῆς +πόλεως +ὑμῶν +εἰς +τοὺς +πόδας +ἀπομασσόμεθα +ὑμῖν· +πλὴν +τοῦτο +γινώσκετε, +ὅτι +ἤγγικεν +ἡ +βασιλεία +τοῦ +Θεοῦ. +λέγω +ὑμῖν +ὅτι +Σοδόμοις +ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ἀνεκτότερον +ἔσται +ἢ +τῇ +πόλει +ἐκείνῃ. +Οὐαί +σοι, +Χοραζείν, +οὐαί +σοι, +Βηθσαϊδά· +ὅτι +εἰ +ἐν +Τύρῳ +καὶ +Σιδῶνι +ἐγενήθησαν +αἱ +δυνάμεις +αἱ +γενόμεναι +ἐν +ὑμῖν, +ἂν +πάλαι +ἐν +σάκκῳ +καὶ +σποδῷ +καθήμενοι +μετενόησαν. +πλὴν +Τύρῳ +καὶ +Σιδῶνι +ἀνεκτότερον +ἔσται +ἐν +τῇ +κρίσει +ἢ +ὑμῖν. +καὶ +Καφαρναούμ, +μὴ +σύ, +ἕως +οὐρανοῦ +ὑψωθήσῃ; +ἕως +τοῦ +Ἅιδου +καταβήσῃ. +Ὁ +ἀκούων +ὑμῶν +ἐμοῦ +ἀκούει, +καὶ +ὁ +ἀθετῶν +ὑμᾶς +ἐμὲ +ἀθετεῖ· +δὲ +ὁ +ἐμὲ +ἀθετῶν +ἀθετεῖ +τὸν +ἀποστείλαντά +με. +δὲ +Ὑπέστρεψαν +οἱ +ἑβδομήκοντα +μετὰ +χαρᾶς +λέγοντες +Κύριε, +καὶ +τὰ +δαιμόνια +ὑποτάσσεται +ἡμῖν +ἐν +τῷ +ὀνόματί +σου. +δὲ +εἶπεν +αὐτοῖς +Ἐθεώρουν +τὸν +Σατανᾶν +ὡς +ἀστραπὴν +ἐκ +τοῦ +οὐρανοῦ +πεσόντα. +ἰδοὺ +δέδωκα +ὑμῖν +τὴν +ἐξουσίαν +τοῦ +πατεῖν +ἐπάνω +ὄφεων +καὶ +σκορπίων, +καὶ +ἐπὶ +πᾶσαν +τὴν +δύναμιν +τοῦ +ἐχθροῦ, +καὶ +οὐδὲν +ὑμᾶς +οὐ +μὴ +ἀδικήσει. +πλὴν +ἐν +τούτῳ +μὴ +χαίρετε +ὅτι +τὰ +πνεύματα +ὑμῖν +ὑποτάσσεται, +δὲ +χαίρετε +ὅτι +τὰ +ὀνόματα +ὑμῶν +ἐνγέγραπται +ἐν +τοῖς +οὐρανοῖς. +Ἐν +αὐτῇ +τῇ +ὥρᾳ +ἠγαλλιάσατο +τῷ +Πνεύματι +τῷ +Ἁγίῳ +καὶ +εἶπεν +Ἐξομολογοῦμαί +σοι, +Πάτερ, +Κύριε +τοῦ +οὐρανοῦ +καὶ +τῆς +γῆς, +ὅτι +ἀπέκρυψας +ταῦτα +ἀπὸ +σοφῶν +καὶ +συνετῶν, +καὶ +ἀπεκάλυψας +αὐτὰ +νηπίοις· +ναί, +ὁ +Πατήρ, +ὅτι +οὕτως +εὐδοκία +ἐγένετο +ἔμπροσθέν +σου. +πάντα +μοι +παρεδόθη +ὑπὸ +τοῦ +Πατρός +μου, +καὶ +οὐδεὶς +γινώσκει +τίς +ἐστιν +ὁ +Υἱὸς +εἰ +μὴ +ὁ +Πατήρ, +καὶ +τίς +ἐστιν +ὁ +Πατὴρ +εἰ +μὴ +ὁ +Υἱὸς +καὶ +ἐὰν +ᾧ +ἀποκαλύψαι. +βούληται +ὁ +Υἱὸς +Καὶ +στραφεὶς +πρὸς +τοὺς +μαθητὰς +κατ’ +ἰδίαν +εἶπεν +Μακάριοι +οἱ +ὀφθαλμοὶ +οἱ +βλέποντες +ἃ +βλέπετε. +γὰρ +λέγω +ὑμῖν +ὅτι +πολλοὶ +προφῆται +καὶ +βασιλεῖς +ἠθέλησαν +ἰδεῖν +ἃ +ὑμεῖς +βλέπετε +καὶ +οὐκ +εἶδαν, +καὶ +ἀκοῦσαι +ἃ +ἀκούετε +καὶ +οὐκ +ἤκουσαν. +Καὶ +ἰδοὺ +νομικός +τις +ἀνέστη +ἐκπειράζων +αὐτὸν +λέγων +Διδάσκαλε, +τί +ποιήσας +ζωὴν +αἰώνιον +κληρονομήσω; +δὲ +ὁ +εἶπεν +πρὸς +αὐτόν +Ἐν +τῷ +νόμῳ +τί +γέγραπται; +πῶς +ἀναγινώσκεις; +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +Ἀγαπήσεις +Κύριον +τὸν +Θεόν +σου +ἐξ +ὅλης +τῆς +καρδίας +σου +καὶ +ἐν +ὅλῃ +τῇ +ψυχῇ +σου +καὶ +ἐν +ὅλῃ +τῇ +ἰσχύϊ +σου +καὶ +ἐν +ὅλῃ +τῇ +διανοίᾳ +σου, +καὶ +τὸν +πλησίον +σου +ὡς +σεαυτόν. +δὲ +εἶπεν +αὐτῷ +Ὀρθῶς +ἀπεκρίθης· +τοῦτο +ποίει +καὶ +ζήσῃ. +δὲ +ὁ +θέλων +δικαιῶσαι +ἑαυτὸν +εἶπεν +πρὸς +τὸν +Ἰησοῦν +Καὶ +τίς +ἐστίν +μου +πλησίον; +ὑπολαβὼν +ὁ +Ἰησοῦς +εἶπεν +Ἄνθρωπός +τις +κατέβαινεν +ἀπὸ +Ἱερουσαλὴμ +εἰς +Ἱερειχώ, +καὶ +λῃσταῖς +περιέπεσεν, +οἳ +καὶ +ἐκδύσαντες +αὐτὸν +καὶ +πληγὰς +ἐπιθέντες +ἀπῆλθον +ἀφέντες +ἡμιθανῆ. +δὲ +κατὰ +συγκυρίαν +ἱερεύς +τις +κατέβαινεν +ἐν +τῇ +ὁδῷ +ἐκείνῃ, +καὶ +ἰδὼν +αὐτὸν +ἀντιπαρῆλθεν. +δὲ +ὁμοίως +καὶ +Λευείτης +κατὰ +τὸν +τόπον +ἐλθὼν +καὶ +ἰδὼν +ἀντιπαρῆλθεν. +δέ +Σαμαρείτης +τις +ὁδεύων +ἦλθεν +κατ’ +αὐτὸν +καὶ +ἰδὼν +ἐσπλαγχνίσθη, +καὶ +προσελθὼν +κατέδησεν +τὰ +τραύματα +αὐτοῦ +ἐπιχέων +ἔλαιον +καὶ +οἶνον, +δὲ +ἐπιβιβάσας +αὐτὸν +ἐπὶ +τὸ +ἴδιον +κτῆνος +ἤγαγεν +αὐτὸν +εἰς +πανδοχεῖον +καὶ +ἐπεμελήθη +αὐτοῦ. +καὶ +ἐπὶ +τὴν +αὔριον +ἐκβαλὼν +δύο +δηνάρια +ἔδωκεν +τῷ +πανδοχεῖ +καὶ +εἶπεν +Ἐπιμελήθητι +αὐτοῦ, +καὶ +τι +ἂν +ὅ +προσδαπανήσῃς +ἐγὼ +ἐν +τῷ +ἐπανέρχεσθαί +με +ἀποδώσω +σοι. +δοκεῖ +σοι +τίς +τούτων +τῶν +τριῶν +γεγονέναι +πλησίον +τοῦ +ἐμπεσόντος +εἰς +τοὺς +λῃστάς; +δὲ +ὁ +εἶπεν +Ὁ +ποιήσας +τὸ +ἔλεος +μετ’ +αὐτοῦ. +δὲ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Πορεύου +καὶ +σὺ +ποίει +ὁμοίως. +δὲ +Ἐν +τῷ +πορεύεσθαι +αὐτοὺς +αὐτὸς +εἰσῆλθεν +εἰς +κώμην +τινά· +δέ +γυνὴ +τις +ὀνόματι +Μάρθα +ὑπεδέξατο +αὐτὸν +εἰς +τὴν +οἰκίαν. +καὶ +τῇδε +ἦν +ἀδελφὴ +καλουμένη +Μαριάμ, +ἣ +καὶ +παρακαθεσθεῖσα +πρὸς +τοὺς +πόδας +τοῦ +Κυρίου +ἤκουεν +τὸν +λόγον +αὐτοῦ. +δὲ +ἡ +Μάρθα +περιεσπᾶτο +περὶ +πολλὴν +διακονίαν· +δὲ +ἐπιστᾶσα +εἶπεν +Κύριε, +οὐ +μέλει +σοι +ὅτι +ἡ +ἀδελφή +μου +μόνην +με +διακονεῖν; +κατέλειπεν +οὖν +εἰπὸν +αὐτῇ +ἵνα +μοι +συναντιλάβηται. +δὲ +ἀποκριθεὶς +εἶπεν +αὐτῇ +ὁ +Κύριος +Μάρθα +Μάρθα, +μεριμνᾷς +καὶ +θορυβάζῃ +περὶ +πολλά, +δέ +ὀλίγων +χρεία +ἐστιν +ἢ +ἑνός· +γὰρ +Μαριὰμ +τὴν +ἀγαθὴν +μερίδα +ἐξελέξατο, +ἥτις +οὐκ +ἀφαιρεθήσεται +αὐτῆς. +Καὶ +ἐγένετο +ἐν +τῷ +εἶναι +προσευχόμενον, +αὐτὸν +ἐν +τόπῳ +τινὶ +ὡς +ἐπαύσατο, +εἶπέν +τις +τῶν +μαθητῶν +αὐτοῦ +πρὸς +αὐτόν +Κύριε, +δίδαξον +ἡμᾶς +προσεύχεσθαι, +καθὼς +καὶ +Ἰωάνης +ἐδίδαξεν +τοὺς +μαθητὰς +αὐτοῦ. +δὲ +εἶπεν +αὐτοῖς +Ὅταν +προσεύχησθε, +λέγετε +Πάτερ, +ἁγιασθήτω +τὸ +ὄνομά +σου· +ἐλθάτω +ἡ +βασιλεία +σου· +τὸν +ἄρτον +ἡμῶν +τὸν +ἐπιούσιον +δίδου +ἡμῖν +τὸ +καθ’ +ἡμέραν· +καὶ +ἄφες +ἡμῖν +τὰς +ἁμαρτίας +ἡμῶν, +γὰρ +καὶ +αὐτοὶ +ἀφίομεν +παντὶ +ὀφείλοντι +ἡμῖν· +καὶ +μὴ +εἰσενέγκῃς +ἡμᾶς +εἰς +πειρασμόν. +Καὶ +εἶπεν +πρὸς +αὐτούς +Τίς +ἐξ +ὑμῶν +ἕξει +φίλον, +καὶ +πορεύσεται +πρὸς +αὐτὸν +μεσονυκτίου +καὶ +εἴπῃ +αὐτῷ +Φίλε, +χρῆσόν +μοι +τρεῖς +ἄρτους, +ἐπειδὴ +φίλος +μου +παρεγένετο +ἐξ +ὁδοῦ +πρός +με +καὶ +οὐκ +ἔχω +ὃ +παραθήσω +αὐτῷ· +κἀκεῖνος +ἔσωθεν +ἀποκριθεὶς +εἴπῃ +Μή +μοι +κόπους +πάρεχε· +ἤδη +ἡ +θύρα +κέκλεισται, +καὶ +τὰ +παιδία +μου +μετ’ +ἐμοῦ +εἰς +τὴν +κοίτην +εἰσίν· +οὐ +δύναμαι +ἀναστὰς +δοῦναί +σοι. +λέγω +ὑμῖν, +εἰ +καὶ +οὐ +δώσει +αὐτῷ +ἀναστὰς +διὰ +τὸ +εἶναι +φίλον +αὐτοῦ, +γε +διά +τὴν +ἀναιδίαν +αὐτοῦ +ἐγερθεὶς +δώσει +αὐτῷ +ὅσων +χρῄζει. +Κἀγὼ +ὑμῖν +λέγω, +αἰτεῖτε, +καὶ +δοθήσεται +ὑμῖν· +ζητεῖτε, +καὶ +εὑρήσετε· +κρούετε, +καὶ +ἀνοιγήσεται +ὑμῖν· +γὰρ +πᾶς +ὁ +αἰτῶν +λαμβάνει, +καὶ +ὁ +ζητῶν +εὑρίσκει, +καὶ +τῷ +κρούοντι +ἀνοιγήσεται. +δὲ +τίνα +ἐξ +ὑμῶν +τὸν +πατέρα +αἰτήσει +ὁ +υἱὸς +ἰχθύν, +μὴ +ἀντὶ +ἰχθύος +ὄφιν +αὐτῷ +ἐπιδώσει; +ἢ +καὶ +αἰτήσει +ᾠόν, +ἐπιδώσει +αὐτῷ +σκορπίον; +οὖν +εἰ +ὑμεῖς +πονηροὶ +ὑπάρχοντες +οἴδατε +δόματα +ἀγαθὰ +διδόναι +τοῖς +τέκνοις +ὑμῶν, +πόσῳ +μᾶλλον +ὁ +Πατὴρ +ὁ +ἐξ +οὐρανοῦ +δώσει +Πνεῦμα +Ἅγιον +τοῖς +αἰτοῦσιν +αὐτόν. +Καὶ +ἦν +ἐκβάλλων +δαιμόνιον, +καὶ +αὐτὸ +ἦν +κωφόν· +δὲ +ἐγένετο +τοῦ +δαιμονίου +ἐξελθόντος +ἐλάλησεν +ὁ +κωφός. +καὶ +ἐθαύμασαν +οἱ +ὄχλοι· +δὲ +τινὲς +ἐξ +αὐτῶν +εἶπαν +Ἐν +Βεελζεβοὺλ +τῷ +ἄρχοντι +τῶν +δαιμονίων +ἐκβάλλει +τὰ +δαιμόνια· +δὲ +ἕτεροι +πειράζοντες +σημεῖον +ἐξ +οὐρανοῦ +ἐζήτουν +παρ’ +αὐτοῦ. +δὲ +αὐτὸς +εἰδὼς +αὐτῶν +τὰ +διανοήματα +εἶπεν +αὐτοῖς +Πᾶσα +βασιλεία +ἐφ’ +ἑαυτὴν +διαμερισθεῖσα +ἐρημοῦται, +καὶ +οἶκος +ἐπὶ +οἶκον +πίπτει. +δὲ +εἰ +καὶ +ὁ +Σατανᾶς +ἐφ’ +ἑαυτὸν +διεμερίσθη, +πῶς +σταθήσεται +ἡ +βασιλεία +αὐτοῦ; +ὅτι +λέγετε +ἐν +Βεελζεβοὺλ +ἐκβάλλειν +με +τὰ +δαιμόνια. +δὲ +εἰ +ἐγὼ +ἐν +Βεελζεβοὺλ +ἐκβάλλω +τὰ +δαιμόνια, +οἱ +υἱοὶ +ὑμῶν +ἐν +τίνι +ἐκβάλλουσιν; +διὰ +τοῦτο +αὐτοὶ +ὑμῶν +κριταὶ +ἔσονται. +δὲ +εἰ +ἐν +δακτύλῳ +Θεοῦ +ἐγὼ +ἐκβάλλω +τὰ +δαιμόνια, +ἄρα +ἔφθασεν +ἐφ’ +ὑμᾶς +ἡ +βασιλεία +τοῦ +Θεοῦ. +ὅταν +ὁ +ἰσχυρὸς +καθωπλισμένος +φυλάσσῃ +τὴν +ἑαυτοῦ +αὐλήν, +ἐν +εἰρήνῃ +ἐστὶν +τὰ +ὑπάρχοντα +αὐτοῦ· +δὲ +ἐπὰν +ἰσχυρότερος +αὐτοῦ +ἐπελθὼν +νικήσῃ +αὐτόν, +τὴν +πανοπλίαν +αὐτοῦ +αἴρει +ἐφ’ +ᾗ +ἐπεποίθει, +καὶ +τὰ +σκῦλα +αὐτοῦ +διαδίδωσιν. +Ὁ +μὴ +ὢν +μετ’ +ἐμοῦ +κατ’ +ἐμοῦ +ἐστιν, +καὶ +ὁ +μὴ +συνάγων +μετ’ +ἐμοῦ +σκορπίζει. +Ὅταν +τὸ +ἀκάθαρτον +πνεῦμα +ἐξέλθῃ +ἀπὸ +τοῦ +ἀνθρώπου, +διέρχεται +δι’ +ἀνύδρων +τόπων +ζητοῦν +ἀνάπαυσιν, +καὶ +μὴ +εὑρίσκον +λέγει +Ὑποστρέψω +εἰς +τὸν +οἶκόν +μου +ὅθεν +ἐξῆλθον· +καὶ +ἐλθὸν +εὑρίσκει +σεσαρωμένον +καὶ +κεκοσμημένον. +τότε +πορεύεται +καὶ +παραλαμβάνει +ἕτερα +πνεύματα +πονηρότερα +ἑαυτοῦ +ἑπτά, +καὶ +εἰσελθόντα +κατοικεῖ +ἐκεῖ, +καὶ +γίνεται +τὰ +ἔσχατα +τοῦ +ἀνθρώπου +ἐκείνου +χείρονα +τῶν +πρώτων. +δὲ +Ἐγένετο +ἐν +τῷ +λέγειν +αὐτὸν +ταῦτα +ἐπάρασά +φωνὴν +τις +γυνὴ +ἐκ +τοῦ +ὄχλου +εἶπεν +αὐτῷ +Μακαρία +ἡ +κοιλία +ἡ +βαστάσασά +σε +καὶ +μαστοὶ +οὓς +ἐθήλασας. +δὲ +αὐτὸς +εἶπεν +Μενοῦν +μακάριοι +οἱ +ἀκούοντες +τὸν +λόγον +τοῦ +Θεοῦ +καὶ +φυλάσσοντες. +δὲ +Τῶν +ὄχλων +ἐπαθροιζομένων +ἤρξατο +λέγειν +Ἠ +γενεὰ +αὕτη +γενεὰ +πονηρά +ἐστιν· +σημεῖον +ζητεῖ, +καὶ +σημεῖον +οὐ +δοθήσεται +αὐτῇ +εἰ +μὴ +τὸ +σημεῖον +Ἰωνᾶ. +γὰρ +καθὼς +ἐγένετο +Ἰωνᾶς +τοῖς +Νινευείταις +σημεῖον, +οὕτως +ἔσται +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +τῇ +γενεᾷ +ταύτῃ. +βασίλισσα +νότου +ἐγερθήσεται +ἐν +τῇ +κρίσει +μετὰ +τῶν +ἀνδρῶν +τῆς +γενεᾶς +ταύτης +καὶ +κατακρινεῖ +αὐτούς· +ὅτι +ἦλθεν +ἐκ +τῶν +περάτων +τῆς +γῆς +ἀκοῦσαι +τὴν +σοφίαν +Σολομῶνος, +καὶ +ἰδοὺ +πλεῖον +Σολομῶνος +ὧδε. +ἄνδρες +Νινευεῖται +ἀναστήσονται +ἐν +τῇ +κρίσει +μετὰ +τῆς +γενεᾶς +ταύτης +καὶ +κατακρινοῦσιν +αὐτήν· +ὅτι +μετενόησαν +εἰς +τὸ +κήρυγμα +Ἰωνᾶ, +καὶ +ἰδοὺ +πλεῖον +Ἰωνᾶ +ὧδε. +Οὐδεὶς +λύχνον +ἅψας +εἰς +κρύπτην +τίθησιν +οὐδὲ +ὑπὸ +τὸν +μόδιον, +ἀλλ’ +ἐπὶ +τὴν +λυχνίαν, +ἵνα +οἱ +εἰσπορευόμενοι +τὸ +φέγγος +βλέπωσιν. +ὁ +λύχνος +τοῦ +σώματός +ἐστιν +ὁ +ὀφθαλμός +σου. +ὅταν +ὁ +ὀφθαλμός +σου +ἁπλοῦς +ᾖ, +καὶ +ὅλον +τὸ +σῶμά +σου +φωτεινόν +ἐστιν· +δὲ +ἐπὰν +πονηρὸς +ᾖ, +καὶ +τὸ +σῶμά +σου +σκοτεινόν. +οὖν +σκόπει +μὴ +τὸ +φῶς +τὸ +ἐν +σοὶ +σκότος +ἐστίν. +οὖν +εἰ +τὸ +σῶμά +σου +ὅλον +φωτεινόν, +μὴ +ἔχον +μέρος +τι +σκοτεινόν, +ἔσται +φωτεινὸν +ὅλον +ὡς +ὅταν +ὁ +λύχνος +τῇ +ἀστραπῇ +φωτίζῃ +σε. +δὲ +Ἐν +τῷ +λαλῆσαι +ἐρωτᾷ +αὐτὸν +Φαρισαῖος +ὅπως +ἀριστήσῃ +παρ’ +αὐτῷ· +δὲ +εἰσελθὼν +ἀνέπεσεν. +δὲ +ὁ +Φαρισαῖος +ἰδὼν +ἐθαύμασεν +ὅτι +οὐ +πρῶτον +ἐβαπτίσθη +πρὸ +τοῦ +ἀρίστου. +δὲ +εἶπεν +ὁ +Κύριος +πρὸς +αὐτόν +Νῦν +ὑμεῖς +οἱ +Φαρισαῖοι +τὸ +ἔξωθεν +τοῦ +ποτηρίου +καὶ +τοῦ +πίνακος +καθαρίζετε, +δὲ +τὸ +ἔσωθεν +ὑμῶν +γέμει +ἁρπαγῆς +καὶ +πονηρίας. +ἄφρονες, +οὐχ +ὁ +ποιήσας +τὸ +ἔξωθεν +καὶ +τὸ +ἔσωθεν +ἐποίησεν; +πλὴν +τὰ +ἐνόντα +δότε +ἐλεημοσύνην, +καὶ +ἰδοὺ +πάντα +καθαρὰ +ὑμῖν +ἐστιν. +ἀλλὰ +οὐαὶ +ὑμῖν +τοῖς +Φαρισαίοις, +ὅτι +ἀποδεκατοῦτε +τὸ +ἡδύοσμον +καὶ +τὸ +πήγανον +καὶ +πᾶν +λάχανον, +καὶ +παρέρχεσθε +τὴν +κρίσιν +καὶ +τὴν +ἀγάπην +τοῦ +Θεοῦ· +δὲ +ἔδει +ταῦτα +ποιῆσαι +κἀκεῖνα +μὴ +παρεῖναι. +οὐαὶ +ὑμῖν +τοῖς +Φαρισαίοις, +ὅτι +ἀγαπᾶτε +τὴν +πρωτοκαθεδρίαν +ἐν +ταῖς +συναγωγαῖς +καὶ +τοὺς +ἀσπασμοὺς +ἐν +ταῖς +ἀγοραῖς. +οὐαὶ +ὑμῖν, +ὅτι +ἐστὲ +ὡς +τὰ +μνημεῖα +τὰ +ἄδηλα, +καὶ +οἱ +ἄνθρωποι +οἱ +περιπατοῦντες +ἐπάνω +οὐκ +οἴδασιν. +δέ +Ἀποκριθεὶς +τις +τῶν +νομικῶν +λέγει +αὐτῷ +Διδάσκαλε, +ταῦτα +λέγων +καὶ +ἡμᾶς +ὑβρίζεις. +δὲ +ὁ +εἶπεν +Καὶ +ὑμῖν +τοῖς +νομικοῖς +οὐαί, +ὅτι +φορτίζετε +τοὺς +ἀνθρώπους +φορτία +δυσβάστακτα, +καὶ +αὐτοὶ +ἑνὶ +τῶν +δακτύλων +ὑμῶν +οὐ +προσψαύετε +τοῖς +φορτίοις. +οὐαὶ +ὑμῖν, +ὅτι +οἰκοδομεῖτε +τὰ +μνημεῖα +τῶν +προφητῶν, +δὲ +οἱ +πατέρες +ὑμῶν +ἀπέκτειναν +αὐτούς. +ἄρα +μάρτυρές +ἐστε +καὶ +συνευδοκεῖτε +τοῖς +ἔργοις +τῶν +πατέρων +ὑμῶν, +ὅτι +μὲν +αὐτοὶ +ἀπέκτειναν +αὐτοὺς, +δὲ +ὑμεῖς +οἰκοδομεῖτε. +διὰ +τοῦτο +καὶ +ἡ +σοφία +τοῦ +Θεοῦ +εἶπεν +Ἀποστελῶ +εἰς +αὐτοὺς +προφήτας +καὶ +ἀποστόλους, +καὶ +ἐξ +αὐτῶν +ἀποκτενοῦσιν +καὶ +διώξουσιν, +ἵνα +ἐκζητηθῇ +τὸ +αἷμα +πάντων +τῶν +προφητῶν +τὸ +ἐκκεχυμένον +ἀπὸ +καταβολῆς +κόσμου +ἀπὸ +τῆς +γενεᾶς +ταύτης, +ἀπὸ +αἵματος +Ἄβελ +ἕως +αἵματος +Ζαχαρίου +τοῦ +ἀπολομένου +μεταξὺ +τοῦ +θυσιαστηρίου +καὶ +τοῦ +οἴκου· +ναί, +λέγω +ὑμῖν, +ἐκζητηθήσεται +ἀπὸ +τῆς +γενεᾶς +ταύτης. +οὐαὶ +ὑμῖν +τοῖς +νομικοῖς, +ὅτι +ἤρατε +τὴν +κλεῖδα +τῆς +γνώσεως· +αὐτοὶ +οὐκ +εἰσήλθατε +καὶ +τοὺς +εἰσερχομένους +ἐκωλύσατε. +Κἀκεῖθεν +ἐξελθόντος +αὐτοῦ +ἤρξαντο +οἱ +γραμματεῖς +καὶ +οἱ +Φαρισαῖοι +δεινῶς +ἐνέχειν +καὶ +ἀποστοματίζειν +αὐτὸν +περὶ +πλειόνων, +ἐνεδρεύοντες +αὐτὸν +θηρεῦσαί +τι +ἐκ +τοῦ +στόματος +αὐτοῦ. +Ἐν +οἷς +ἐπισυναχθεισῶν +τῶν +μυριάδων +τοῦ +ὄχλου, +ὥστε +καταπατεῖν +ἀλλήλους, +ἤρξατο +λέγειν +πρὸς +τοὺς +μαθητὰς +αὐτοῦ +πρῶτον +Προσέχετε +ἑαυτοῖς +ἀπὸ +τῆς +ζύμης, +ἥτις +ἐστὶν +ὑπόκρισις, +τῶν +Φαρισαίων. +δὲ +οὐδὲν +ἐστὶν +συγκεκαλυμμένον +ὃ +οὐκ +ἀποκαλυφθήσεται, +καὶ +κρυπτὸν +ὃ +οὐ +γνωσθήσεται. +ἀνθ’ +ὧν +ὅσα +ἐν +τῇ +σκοτίᾳ +εἴπατε +ἐν +τῷ +φωτὶ +ἀκουσθήσεται, +καὶ +ὃ +πρὸς +τὸ +οὖς +ἐλαλήσατε +ἐν +τοῖς +ταμείοις +κηρυχθήσεται +ἐπὶ +τῶν +δωμάτων. +δὲ +Λέγω +ὑμῖν +τοῖς +φίλοις +μου, +μὴ +φοβηθῆτε +ἀπὸ +τῶν +ἀποκτεννόντων +τὸ +σῶμα +καὶ +μετὰ +ταῦτα +μὴ +ἐχόντων +περισσότερόν +τι +ποιῆσαι. +δὲ +ὑποδείξω +ὑμῖν +τίνα +φοβηθῆτε· +φοβήθητε +τὸν +μετὰ +τὸ +ἀποκτεῖναι +ἔχοντα +ἐξουσίαν +ἐμβαλεῖν +εἰς +τὴν +γέενναν. +ναί, +λέγω +ὑμῖν, +τοῦτον +φοβήθητε. +οὐχὶ +πέντε +στρουθία +πωλοῦνται +ἀσσαρίων +δύο; +καὶ +ἓν +ἐξ +αὐτῶν +οὐκ +ἔστιν +ἐπιλελησμένον +ἐνώπιον +τοῦ +Θεοῦ. +ἀλλὰ +καὶ +αἱ +τρίχες +τῆς +κεφαλῆς +ὑμῶν +πᾶσαι +ἠρίθμηνται. +μὴ +φοβεῖσθε· +πολλῶν +στρουθίων +διαφέρετε. +δὲ +λέγω +ὑμῖν, +πᾶς +ἂν +ὃς +ὁμολογήσῃ +ἐν +ἐμοὶ +ἔμπροσθεν +τῶν +ἀνθρώπων, +καὶ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ὁμολογήσει +ἐν +αὐτῷ +ἔμπροσθεν +τῶν +ἀγγέλων +τοῦ +Θεοῦ· +δὲ +ὁ +ἀρνησάμενός +με +ἐνώπιον +τῶν +ἀνθρώπων +ἀπαρνηθήσεται +ἐνώπιον +τῶν +ἀγγέλων +τοῦ +Θεοῦ. +καὶ +πᾶς +ὃς +ἐρεῖ +λόγον +εἰς +τὸν +Υἱὸν +τοῦ +ἀνθρώπου, +ἀφεθήσεται +αὐτῷ· +δὲ +τῷ +εἰς +τὸ +Ἅγιον +Πνεῦμα +βλασφημήσαντι +οὐκ +ἀφεθήσεται. +δὲ +ὅταν +εἰσφέρωσιν +ὑμᾶς +ἐπὶ +τὰς +συναγωγὰς +καὶ +τὰς +ἀρχὰς +καὶ +τὰς +ἐξουσίας, +μὴ +μεριμνήσητε +πῶς +ἢ +τί +ἀπολογήσησθε +ἢ +τί +εἴπητε· +γὰρ +τὸ +Ἅγιον +Πνεῦμα +διδάξει +ὑμᾶς +ἐν +αὐτῇ +τῇ +ὥρᾳ +ἃ +εἰπεῖν. +δεῖ +δέ +Εἶπεν +τις +ἐκ +τοῦ +ὄχλου +αὐτῷ +Διδάσκαλε, +εἰπὲ +τῷ +ἀδελφῷ +μου +μερίσασθαι +μετ’ +ἐμοῦ +τὴν +κληρονομίαν. +δὲ +ὁ +εἶπεν +αὐτῷ +Ἄνθρωπε, +τίς +με +κατέστησεν +κριτὴν +ἢ +μεριστὴν +ἐφ’ +ὑμᾶς; +δὲ +εἶπεν +πρὸς +αὐτούς +Ὁρᾶτε +καὶ +φυλάσσεσθε +ἀπὸ +πάσης +πλεονεξίας, +ὅτι +οὐκ +ἐν +τῷ +περισσεύειν +τινὶ +ἡ +ζωὴ +αὐτοῦ +ἐστιν +ἐκ +τῶν +ὑπαρχόντων +αὐτῷ. +δὲ +Εἶπεν +παραβολὴν +πρὸς +αὐτοὺς +λέγων +Ἀνθρώπου +τινὸς +πλουσίου +ἡ +χώρα. +εὐφόρησεν +καὶ +διελογίζετο +ἐν +ἑαυτῷ +λέγων +Τί +ποιήσω, +ὅτι +οὐκ +ἔχω +ποῦ +συνάξω +τοὺς +καρπούς +μου; +καὶ +εἶπεν +Τοῦτο +ποιήσω· +καθελῶ +μου +τὰς +ἀποθήκας +καὶ +μείζονας +οἰκοδομήσω, +καὶ +συνάξω +ἐκεῖ +πάντα +τὸν +σῖτον +καὶ +τὰ +ἀγαθά +μου, +καὶ +ἐρῶ +τῇ +ψυχῇ +μου +Ψυχή, +ἔχεις +πολλὰ +ἀγαθὰ +κείμενα +εἰς +ἔτη +πολλά· +ἀναπαύου, +φάγε, +πίε, +εὐφραίνου. +δὲ +εἶπεν +αὐτῷ +ὁ +Θεός +Ἄφρων, +ταύτῃ +τῇ +νυκτὶ +τὴν +ψυχήν +σου +ἀπαιτοῦσιν +ἀπὸ +σοῦ· +δὲ +ἃ +ἡτοίμασας, +τίνι +ἔσται; +οὕτως +ὁ +θησαυρίζων +αὑτῷ +καὶ +μὴ +εἰς +Θεὸν +πλουτῶν. +δὲ +Εἶπεν +πρὸς +τοὺς +μαθητὰς +αὐτοῦ +Διὰ +τοῦτο +λέγω +ὑμῖν· +μὴ +μεριμνᾶτε +τῇ +ψυχῇ +τί +φάγητε, +μηδὲ +τῷ +σώματι +τί +ἐνδύσησθε. +γὰρ +ἡ +ψυχὴ +πλεῖόν +ἐστιν +τῆς +τροφῆς +καὶ +τὸ +σῶμα +τοῦ +ἐνδύματος. +κατανοήσατε +τοὺς +κόρακας, +ὅτι +οὔτε +σπείρουσιν +οὔτε +θερίζουσιν, +οἷς +οὐκ +ἔστιν +ταμεῖον +οὐδὲ +ἀποθήκη, +καὶ +ὁ +Θεὸς +τρέφει +αὐτούς· +πόσῳ +μᾶλλον +ὑμεῖς +διαφέρετε +τῶν +πετεινῶν. +δὲ +τίς +ἐξ +ὑμῶν +μεριμνῶν +δύναται +ἐπὶ +τὴν +ἡλικίαν +αὐτοῦ +προσθεῖναι +πῆχυν; +οὖν +εἰ +οὐδὲ +ἐλάχιστον +δύνασθε, +τί +περὶ +τῶν +λοιπῶν +μεριμνᾶτε; +κατανοήσατε +τὰ +κρίνα, +πῶς +οὔτε +νήθει +οὔτε +ὑφαίνει· +δὲ +λέγω +ὑμῖν, +οὐδὲ +Σολομὼν +ἐν +πάσῃ +τῇ +δόξῃ +αὐτοῦ +περιεβάλετο +ὡς +ἓν +τούτων. +δὲ +εἰ +ἐν +ἀγρῷ +τὸν +χόρτον +ὄντα +σήμερον +καὶ +αὔριον +εἰς +κλίβανον +βαλλόμενον +ὁ +Θεὸς +οὕτως +ἀμφιέζει, +πόσῳ +μᾶλλον +ὑμᾶς, +ὀλιγόπιστοι. +καὶ +ὑμεῖς +μὴ +ζητεῖτε +τί +φάγητε +καὶ +τί +πίητε, +καὶ +μὴ +μετεωρίζεσθε· +γὰρ +ταῦτα +πάντα +τὰ +ἔθνη +τοῦ +κόσμου +ἐπιζητοῦσιν· +δὲ +ὑμῶν +ὁ +Πατὴρ +οἶδεν +ὅτι +χρῄζετε +τούτων· +πλὴν +ζητεῖτε +τὴν +βασιλείαν +αὐτοῦ, +καὶ +ταῦτα +προστεθήσεται +ὑμῖν. +Μὴ +φοβοῦ, +τὸ +μικρὸν +ποίμνιον· +ὅτι +εὐδόκησεν +ὁ +Πατὴρ +ὑμῶν +δοῦναι +ὑμῖν +τὴν +βασιλείαν. +Πωλήσατε +τὰ +ὑπάρχοντα +ὑμῶν +καὶ +δότε +ἐλεημοσύνην· +ποιήσατε +ἑαυτοῖς +βαλλάντια +μὴ +παλαιούμενα, +θησαυρὸν +ἀνέκλειπτον +ἐν +τοῖς +οὐρανοῖς, +ὅπου +κλέπτης +οὐκ +ἐγγίζει +οὐδὲ +σὴς +διαφθείρει· +γάρ +ὅπου +ἐστιν +ὁ +θησαυρὸς +ὑμῶν, +ἐκεῖ +καὶ +ἡ +καρδία +ὑμῶν +ἔσται. +Ἔστωσαν +ὑμῶν +αἱ +ὀσφύες +περιεζωσμέναι +καὶ +οἱ +λύχνοι +καιόμενοι· +καὶ +ὑμεῖς +ὅμοιοι +ἀνθρώποις +προσδεχομένοις +τὸν +κύριον +ἑαυτῶν +πότε +ἀναλύσῃ +ἐκ +τῶν +γάμων, +ἵνα +ἐλθόντος +καὶ +κρούσαντος +εὐθέως +ἀνοίξωσιν +αὐτῷ. +μακάριοι +οἱ +δοῦλοι +ἐκεῖνοι, +οὓς +γρηγοροῦντας· +ἐλθὼν +ὁ +κύριος +εὑρήσει +ἀμὴν +λέγω +ὑμῖν +ὅτι +περιζώσεται +καὶ +ἀνακλινεῖ +αὐτοὺς +καὶ +παρελθὼν +διακονήσει +αὐτοῖς. +κἂν +ἐν +τῇ +δευτέρᾳ +κἂν +ἐν +τῇ +τρίτῃ +φυλακῇ +ἔλθῃ +καὶ +εὕρῃ +οὕτως, +μακάριοί +εἰσιν +ἐκεῖνοι. +δὲ +τοῦτο +γινώσκετε +ὅτι +εἰ +ᾔδει +ὁ +οἰκοδεσπότης +ποίᾳ +ὥρᾳ +ὁ +κλέπτης +ἔρχεται, +ἂν +οὐκ +ἀφῆκεν +διορυχθῆναι +τὸν +οἶκον +αὐτοῦ. +καὶ +ὑμεῖς +γίνεσθε +ἕτοιμοι, +ὅτι +ᾗ +ὥρᾳ +οὐ +δοκεῖτε +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἔρχεται. +δὲ +Εἶπεν +ὁ +Πέτρος +Κύριε, +πρὸς +ἡμᾶς +τὴν +παραβολὴν +ταύτην +λέγεις +ἢ +καὶ +πρὸς +πάντας; +καὶ +εἶπεν +ὁ +Κύριος +ἄρα +Τίς +ἐστὶν +ὁ +πιστὸς +οἰκονόμος +ὁ +φρόνιμος, +ὃν +καταστήσει +ὁ +κύριος +ἐπὶ +τῆς +θεραπείας +αὐτοῦ +τοῦ +διδόναι +ἐν +καιρῷ +τὸ +σιτομέτριον; +μακάριος +ὁ +δοῦλος +ἐκεῖνος, +ὃν +ποιοῦντα +οὕτως. +ἐλθὼν +ὁ +κύριος +αὐτοῦ +εὑρήσει +ἀληθῶς +λέγω +ὑμῖν +ὅτι +ἐπὶ +πᾶσιν +τοῖς +ὑπάρχουσιν +αὐτοῦ +καταστήσει +αὐτόν. +δὲ +ἐὰν +εἴπῃ +ὁ +δοῦλος +ἐκεῖνος +ἐν +τῇ +καρδίᾳ +αὐτοῦ +Χρονίζει +ὁ +κύριός +μου +ἔρχεσθαι, +καὶ +ἄρξηται +τύπτειν +τοὺς +παῖδας +καὶ +τὰς +παιδίσκας, +τε +ἐσθίειν +καὶ +πίνειν +καὶ +μεθύσκεσθαι, +ἥξει +ὁ +κύριος +τοῦ +δούλου +ἐκείνου +ἐν +ἡμέρᾳ +ᾗ +οὐ +προσδοκᾷ +καὶ +ἐν +ὥρᾳ +ᾗ +οὐ +γινώσκει, +καὶ +διχοτομήσει +αὐτὸν, +καὶ +τὸ +μέρος +αὐτοῦ +μετὰ +τῶν +ἀπίστων +θήσει. +δὲ +ἐκεῖνος +ὁ +δοῦλος +ὁ +γνοὺς +τὸ +θέλημα +τοῦ +κυρίου +αὐτοῦ +καὶ +μὴ +ἑτοιμάσας +ἢ +ποιήσας +πρὸς +τὸ +θέλημα +αὐτοῦ +δαρήσεται +πολλάς· +δὲ +ὁ +μὴ +γνοὺς, +δὲ +ποιήσας +ἄξια +πληγῶν, +δαρήσεται +ὀλίγας. +δὲ +παντὶ +ᾧ +ἐδόθη +πολύ, +πολὺ +ζητηθήσεται +παρ’ +αὐτοῦ, +καὶ +ᾧ +παρέθεντο +πολύ, +περισσότερον +αἰτήσουσιν +αὐτόν. +ἦλθον +Πῦρ +βαλεῖν +ἐπὶ +τὴν +γῆν, +καὶ +τί +θέλω +εἰ +ἤδη +ἀνήφθη. +δὲ +βάπτισμα +ἔχω +βαπτισθῆναι, +καὶ +πῶς +συνέχομαι +ἕως +ὅτου +τελεσθῇ. +δοκεῖτε +ὅτι +παρεγενόμην +εἰρήνην +δοῦναι +ἐν +τῇ +γῇ; +λέγω +ὑμῖν, +οὐχί, +ἀλλ’ +ἢ +διαμερισμόν. +γὰρ +ἔσονται +διαμεμερισμένοι, +ἀπὸ +τοῦ +νῦν +πέντε +ἐν +ἑνὶ +οἴκῳ +τρεῖς +ἐπὶ +δυσὶν +καὶ +δύο +ἐπὶ +τρισίν +διαμερισθήσονται, +πατὴρ +ἐπὶ +υἱῷ +καὶ +υἱὸς +ἐπὶ +πατρί, +μήτηρ +ἐπὶ +θυγατέρα +καὶ +θυγάτηρ +ἐπὶ +τὴν +μητέρα, +πενθερὰ +ἐπὶ +τὴν +νύμφην +αὐτῆς +καὶ +νύμφη +ἐπὶ +τὴν +πενθεράν. +δὲ +Ἔλεγεν +καὶ +τοῖς +ὄχλοις +Ὅταν +ἴδητε +νεφέλην +ἀνατέλλουσαν +ἐπὶ +δυσμῶν, +εὐθέως +λέγετε +ὅτι +Ὄμβρος +ἔρχεται, +καὶ +γίνεται +οὕτως· +καὶ +ὅταν +νότον +πνέοντα, +λέγετε +ὅτι +Καύσων +ἔσται, +καὶ +γίνεται. +ὑποκριταί, +τὸ +πρόσωπον +τῆς +γῆς +καὶ +τοῦ +οὐρανοῦ +δοκιμάζειν, +οἴδατε +δὲ +τὸν +καιρὸν +τοῦτον +πῶς +οὐ +δοκιμάζετε; +δὲ +Τί +καὶ +ἀφ’ +ἑαυτῶν +οὐ +κρίνετε +τὸ +δίκαιον; +γὰρ +ὡς +ὑπάγεις +μετὰ +τοῦ +ἀντιδίκου +σου +ἐπ’ +ἄρχοντα, +ἐν +τῇ +ὁδῷ +δὸς +ἐργασίαν +ἀπηλλάχθαι +ἀπ’ +αὐτοῦ, +μή +ποτε +κατασύρῃ +σε +πρὸς +τὸν +κριτήν, +καὶ +ὁ +κριτής +σε +παραδώσει +τῷ +πράκτορι, +καὶ +ὁ +πράκτωρ +σε +βαλεῖ +εἰς +φυλακήν. +λέγω +σοι, +οὐ +μὴ +ἐξέλθῃς +ἐκεῖθεν +ἕως +καὶ +τὸ +ἔσχατον +λεπτὸν +ἀποδῷς. +δέ +Παρῆσαν +τινες +ἐν +αὐτῷ +τῷ +καιρῷ +ἀπαγγέλλοντες +αὐτῷ +περὶ +τῶν +Γαλιλαίων +ὧν +τὸ +αἷμα +Πειλᾶτος +ἔμιξεν +μετὰ +τῶν +θυσιῶν +αὐτῶν. +καὶ +ἀποκριθεὶς +εἶπεν +αὐτοῖς +Δοκεῖτε +ὅτι +οἱ +Γαλιλαῖοι +οὗτοι +ἁμαρτωλοὶ +παρὰ +πάντας +τοὺς +Γαλιλαίους +ἐγένοντο, +ὅτι +ταῦτα +πεπόνθασιν; +οὐχί, +λέγω +ὑμῖν, +ἀλλ’ +ἐὰν +μὴ +μετανοῆτε, +πάντες +ὁμοίως +ἀπολεῖσθε. +ἢ +ἐκεῖνοι +οἱ +δέκα +ὀκτὼ +ἐφ’ +οὓς +ἔπεσεν +ὁ +πύργος +ἐν +τῷ +Σιλωὰμ +καὶ +ἀπέκτεινεν +αὐτούς, +δοκεῖτε +ὅτι +αὐτοὶ +ὀφειλέται +ἐγένοντο +παρὰ +πάντας +τοὺς +ἀνθρώπους +τοὺς +κατοικοῦντας +Ἱερουσαλήμ; +οὐχί, +λέγω +ὑμῖν, +ἀλλ’ +ἐὰν +μὴ +μετανοήσητε, +πάντες +ὡσαύτως +ἀπολεῖσθε. +δὲ +Ἔλεγεν +ταύτην +τὴν +παραβολήν. +συκῆν +εἶχέν +τις +πεφυτευμένην +ἐν +τῷ +ἀμπελῶνι +αὐτοῦ, +καὶ +ἦλθεν +ζητῶν +καρπὸν +ἐν +αὐτῇ +καὶ +οὐχ +εὗρεν. +δὲ +εἶπεν +πρὸς +τὸν +ἀμπελουργόν +Ἰδοὺ +τρία +ἔτη +ἀφ’ +οὗ +ἔρχομαι +ζητῶν +καρπὸν +ἐν +τῇ +συκῇ +ταύτῃ +καὶ +οὐχ +εὑρίσκω· +ἔκκοψον +αὐτήν· +ἵνα +τί +καὶ +τὴν +γῆν +καταργεῖ; +δὲ +ὁ +ἀποκριθεὶς +λέγει +αὐτῷ +Κύριε, +ἄφες +αὐτὴν +καὶ +τοῦτο +τὸ +ἔτος, +ἕως +ὅτου +σκάψω +περὶ +αὐτὴν +καὶ +βάλω +κόπρια, +μὲν +κἂν +ποιήσῃ +καρπὸν +εἰς +τὸ +μέλλον· +δὲ +εἰ +μήγε, +ἐκκόψεις +αὐτήν. +δὲ +Ἦν +διδάσκων +ἐν +μιᾷ +τῶν +συναγωγῶν +ἐν +τοῖς +σάββασιν. +καὶ +ἰδοὺ +γυνὴ +πνεῦμα +ἀσθενείας +ἔχουσα +ἔτη +δέκα +ὀκτώ, +καὶ +ἦν +συνκύπτουσα +καὶ +μὴ +δυναμένη +ἀνακύψαι +εἰς +τὸ +παντελές. +δὲ +ἰδὼν +αὐτὴν +ὁ +Ἰησοῦς +προσεφώνησεν +καὶ +εἶπεν +αὐτῇ +Γύναι, +ἀπολέλυσαι +τῆς +ἀσθενείας +σου, +καὶ +ἐπέθηκεν +αὐτῇ +τὰς +χεῖρας· +καὶ +παραχρῆμα +ἀνορθώθη, +καὶ +ἐδόξαζεν +τὸν +Θεόν. +δὲ +ἀποκριθεὶς +ὁ +ἀρχισυνάγωγος, +ἀγανακτῶν +ὅτι +τῷ +σαββάτῳ +ἐθεράπευσεν +ὁ +Ἰησοῦς, +ἔλεγεν +τῷ +ὄχλῳ +ὅτι +Ἓξ +ἡμέραι +εἰσὶν +ἐν +αἷς +δεῖ +ἐργάζεσθαι· +οὖν +ἐν +αὐταῖς +ἐρχόμενοι +θεραπεύεσθε +καὶ +μὴ +τῇ +ἡμέρᾳ +τοῦ +σαββάτου. +δὲ +ἀπεκρίθη +αὐτῷ +ὁ +Κύριος +καὶ +εἶπεν +Ὑποκριταί, +οὐ +ἕκαστος +ὑμῶν +τῷ +σαββάτῳ +λύει +τὸν +βοῦν +αὐτοῦ +ἢ +τὸν +ὄνον +ἀπὸ +τῆς +φάτνης +καὶ +ἀπαγαγὼν +ποτίζει; +δὲ +ἰδοὺ +ταύτην +θυγατέρα +Ἀβραὰμ +οὖσαν, +ἣν +ἔδησεν +ὁ +Σατανᾶς +δέκα +καὶ +ὀκτὼ +ἔτη, +λυθῆναι +ἀπὸ +τοῦ +δεσμοῦ +τούτου +τῇ +ἡμέρᾳ +τοῦ +σαββάτου; +οὐκ +ἔδει +καὶ +ταῦτα +λέγοντος +αὐτοῦ +κατῃσχύνοντο +πάντες +οἱ +ἀντικείμενοι +αὐτῷ, +καὶ +πᾶς +ὁ +ὄχλος +ἔχαιρεν +ἐπὶ +πᾶσιν +τοῖς +ἐνδόξοις +τοῖς +γινομένοις +ὑπ’ +αὐτοῦ. +οὖν +Ἔλεγεν +Τίνι +ὁμοία +ἐστὶν +ἡ +βασιλεία +τοῦ +Θεοῦ, +καὶ +τίνι +ὁμοιώσω +αὐτήν; +ὁμοία +ἐστὶν +κόκκῳ +σινάπεως, +ὃν +λαβὼν +ἄνθρωπος +ἔβαλεν +εἰς +κῆπον +ἑαυτοῦ, +καὶ +ηὔξησεν +καὶ +ἐγένετο +εἰς +δένδρον, +καὶ +τὰ +πετεινὰ +τοῦ +οὐρανοῦ +κατεσκήνωσεν +ἐν +τοῖς +κλάδοις +αὐτοῦ. +Καὶ +πάλιν +εἶπεν +Τίνι +ὁμοιώσω +τὴν +βασιλείαν +τοῦ +Θεοῦ; +ὁμοία +ἐστὶν +ζύμῃ, +ἣν +λαβοῦσα +γυνὴ +ἔκρυψεν +εἰς +ἀλεύρου +σάτα +τρία, +ἕως +οὗ +ἐζυμώθη +ὅλον. +Καὶ +διεπορεύετο +κατὰ +πόλεις +καὶ +κώμας +διδάσκων +καὶ +πορείαν +ποιούμενος +εἰς +Ἱεροσόλυμα. +δέ +Εἶπεν +τις +αὐτῷ +Κύριε, +εἰ +ὀλίγοι +οἱ +σῳζόμενοι; +δὲ +ὁ +εἶπεν +πρὸς +αὐτούς +Ἀγωνίζεσθε +εἰσελθεῖν +διὰ +τῆς +στενῆς +θύρας, +ὅτι +λέγω +ὑμῖν, +πολλοί, +ζητήσουσιν +εἰσελθεῖν +καὶ +οὐκ +ἰσχύσουσιν. +ἀφ’ +ἂν +οὗ +ἐγερθῇ +ὁ +οἰκοδεσπότης +καὶ +ἀποκλείσῃ +τὴν +θύραν, +καὶ +ἄρξησθε +ἔξω +ἑστάναι +καὶ +κρούειν +τὴν +θύραν +λέγοντες +Κύριε, +ἄνοιξον +ἡμῖν· +καὶ +ἀποκριθεὶς +ἐρεῖ +ὑμῖν +Οὐκ +οἶδα +ὑμᾶς +πόθεν +ἐστέ. +τότε +ἄρξεσθε +λέγειν +Ἐφάγομεν +ἐνώπιόν +σου +καὶ +ἐπίομεν, +καὶ +ἐν +ταῖς +πλατείαις +ἡμῶν +ἐδίδαξας· +καὶ +ἐρεῖ +λέγων +ὑμῖν +Οὐκ +οἶδα +πόθεν +ἐστέ· +ἀπόστητε +ἀπ’ +ἐμοῦ +πάντες +ἐργάται +ἀδικίας. +ἐκεῖ +ἔσται +ὁ +κλαυθμὸς +καὶ +ὁ +βρυγμὸς +τῶν +ὀδόντων, +ὅταν +ὄψησθε +Ἀβραὰμ +καὶ +Ἰσαὰκ +καὶ +Ἰακὼβ +καὶ +πάντας +τοὺς +προφήτας +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ, +δὲ +ὑμᾶς +ἐκβαλλομένους +ἔξω. +καὶ +ἥξουσιν +ἀπὸ +ἀνατολῶν +καὶ +δυσμῶν +καὶ +ἀπὸ +βορρᾶ +καὶ +νότου, +καὶ +ἀνακλιθήσονται +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ. +καὶ +ἰδοὺ +εἰσὶν +ἔσχατοι +οἳ +ἔσονται +πρῶτοι, +καὶ +εἰσὶν +πρῶτοι +οἳ +ἔσονται +ἔσχατοι. +Ἐν +αὐτῇ +τῇ +ὥρᾳ +προσῆλθάν +τινες +Φαρισαῖοι +λέγοντες +αὐτῷ +Ἔξελθε +καὶ +πορεύου +ἐντεῦθεν, +ὅτι +Ἠρῴδης +θέλει +σε +ἀποκτεῖναι. +καὶ +εἶπεν +αὐτοῖς +Πορευθέντες +εἴπατε +τῇ +ἀλώπεκι +ταύτῃ +Ἰδοὺ +ἐκβάλλω +δαιμόνια +καὶ +ἰάσεις +ἀποτελῶ +σήμερον +καὶ +αὔριον, +καὶ +τῇ +τρίτῃ +τελειοῦμαι. +πλὴν +δεῖ +με +σήμερον +καὶ +αὔριον +καὶ +τῇ +ἐχομένῃ +πορεύεσθαι, +ὅτι +οὐκ +ἐνδέχεται +προφήτην +ἀπολέσθαι +ἔξω +Ἱερουσαλήμ. +Ἱερουσαλὴμ +Ἱερουσαλήμ, +ἡ +ἀποκτείνουσα +τοὺς +προφήτας +καὶ +λιθοβολοῦσα +τοὺς +ἀπεσταλμένους +πρὸς +αὐτήν, +ποσάκις +ἠθέλησα +ἐπισυνάξαι +τὰ +τέκνα +σου +ὃν +τρόπον +ὄρνις +τὴν +ἑαυτῆς +νοσσιὰν +ὑπὸ +τὰς +πτέρυγας, +καὶ +οὐκ +ἠθελήσατε. +ἰδοὺ +ἀφίεται +ὑμῖν +ὁ +οἶκος +ὑμῶν. +δὲ +λέγω +ὑμῖν, +οὐ +μὴ +ἴδητέ +με +ἕως +ἥξει +ὅτε +εἴπητε +Εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου. +Καὶ +ἐγένετο +ἐν +τῷ +ἐλθεῖν +αὐτὸν +εἰς +οἶκόν +τινος +τῶν +ἀρχόντων +τῶν +Φαρισαίων +σαββάτῳ +φαγεῖν +ἄρτον, +καὶ +αὐτοὶ +ἦσαν +παρατηρούμενοι +αὐτόν. +καὶ +ἰδοὺ +ἄνθρωπός +τις +ὑδρωπικὸς +ἦν +ἔμπροσθεν +αὐτοῦ. +καὶ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +πρὸς +τοὺς +νομικοὺς +καὶ +Φαρισαίους +λέγων +Ἔξεστιν +τῷ +σαββάτῳ +θεραπεῦσαι +ἢ +οὔ; +δὲ +οἱ +ἡσύχασαν. +καὶ +ἐπιλαβόμενος +ἰάσατο +αὐτὸν +καὶ +ἀπέλυσεν. +καὶ +πρὸς +αὐτοὺς +εἶπεν +Τίνος +ὑμῶν +υἱὸς +ἢ +βοῦς +εἰς +φρέαρ +πεσεῖται, +καὶ +οὐκ +εὐθέως +ἀνασπάσει +αὐτὸν +ἐν +ἡμέρᾳ +τοῦ +σαββάτου; +καὶ +οὐκ +ἴσχυσαν +ἀνταποκριθῆναι +πρὸς +ταῦτα. +δὲ +Ἔλεγεν +πρὸς +τοὺς +κεκλημένους +παραβολήν, +ἐπέχων +πῶς +τὰς +πρωτοκλισίας +ἐξελέγοντο, +λέγων +πρὸς +αὐτούς +Ὅταν +κληθῇς +ὑπό +τινος +εἰς +γάμους, +μὴ +κατακλιθῇς +εἰς +τὴν +πρωτοκλισίαν, +μή +ποτε +ἐντιμότερός +σου +ᾖ +κεκλημένος +ὑπ’ +αὐτοῦ, +καὶ +ἐλθὼν +ὁ +σὲ +καὶ +αὐτὸν +καλέσας +ἐρεῖ +σοι +Δὸς +τούτῳ +τόπον, +καὶ +τότε +ἄρξῃ +μετὰ +αἰσχύνης +τὸν +ἔσχατον +τόπον +κατέχειν. +ἀλλ’ +ὅταν +κληθῇς, +πορευθεὶς +ἀνάπεσε +εἰς +τὸν +ἔσχατον +τόπον, +ἵνα +ὅταν +ἔλθῃ +ὁ +κεκληκώς +σε +ἐρεῖ +σοι +Φίλε, +προσανάβηθι +ἀνώτερον· +τότε +ἔσται +σοι +δόξα +ἐνώπιον +πάντων +τῶν +συνανακειμένων +σοι. +ὅτι +πᾶς +ὁ +ὑψῶν +ἑαυτὸν +ταπεινωθήσεται, +καὶ +ὁ +ταπεινῶν +ἑαυτὸν +ὑψωθήσεται. +δὲ +Ἔλεγεν +καὶ +τῷ +κεκληκότι +αὐτόν +Ὅταν +ποιῇς +ἄριστον +ἢ +δεῖπνον, +μὴ +φώνει +τοὺς +φίλους +σου +μηδὲ +τοὺς +ἀδελφούς +σου +μηδὲ +τοὺς +συγγενεῖς +σου +μηδὲ +γείτονας +πλουσίους, +μή +ποτε +καὶ +αὐτοὶ +ἀντικαλέσωσίν +σε +καὶ +γένηται +ἀνταπόδομά +σοι. +ἀλλ’ +ὅταν +δοχὴν +ποιῇς, +κάλει +πτωχούς, +ἀναπήρους, +χωλούς, +τυφλούς· +καὶ +μακάριος +ἔσῃ, +ὅτι +οὐκ +ἔχουσιν +ἀνταποδοῦναί +σοι· +γάρ +ἀνταποδοθήσεται +σοι +ἐν +τῇ +ἀναστάσει +τῶν +δικαίων. +δέ +τις +τῶν +συνανακειμένων +Ἀκούσας +ταῦτα +εἶπεν +αὐτῷ +Μακάριος +ὅστις +φάγεται +ἄρτον +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ. +δὲ +ὁ +εἶπεν +αὐτῷ +Ἄνθρωπός +τις +ἐποίει +δεῖπνον +μέγα, +καὶ +ἐκάλεσεν +πολλούς, +καὶ +ἀπέστειλεν +τὸν +δοῦλον +αὐτοῦ +τῇ +ὥρᾳ +τοῦ +δείπνου +εἰπεῖν +τοῖς +κεκλημένοις +Ἔρχεσθε, +ὅτι +ἤδη +ἕτοιμά +ἐστιν. +καὶ +ἤρξαντο +ἀπὸ +μιᾶς +πάντες +παραιτεῖσθαι. +ὁ +πρῶτος +εἶπεν +αὐτῷ +Ἀγρὸν +ἠγόρασα, +καὶ +ἔχω +ἀνάγκην +ἐξελθὼν +ἰδεῖν +αὐτόν· +ἐρωτῶ +σε, +ἔχε +με +παρῃτημένον. +καὶ +ἕτερος +εἶπεν +Ζεύγη +βοῶν +πέντε, +ἠγόρασα +καὶ +πορεύομαι +δοκιμάσαι +αὐτά· +ἐρωτῶ +σε, +ἔχε +με +παρῃτημένον. +καὶ +ἕτερος +εἶπεν +Γυναῖκα +ἔγημα, +καὶ +διὰ +τοῦτο +οὐ +δύναμαι +ἐλθεῖν. +καὶ +παραγενόμενος +ὁ +δοῦλος +ἀπήγγειλεν +τῷ +κυρίῳ +αὐτοῦ +ταῦτα. +τότε +ὀργισθεὶς +ὁ +οἰκοδεσπότης +εἶπεν +τῷ +δούλῳ +αὐτοῦ +Ἔξελθε +ταχέως +εἰς +τὰς +πλατείας +καὶ +ῥύμας +τῆς +πόλεως, +καὶ +τοὺς +πτωχοὺς +καὶ +ἀναπήρους +καὶ +τυφλοὺς +καὶ +χωλοὺς +εἰσάγαγε +ὧδε. +καὶ +εἶπεν +ὁ +δοῦλος +Κύριε, +γέγονεν +ὃ +ἐπέταξας, +καὶ +ἔτι +τόπος +ἐστίν. +καὶ +εἶπεν +ὁ +κύριος +πρὸς +τὸν +δοῦλον +Ἔξελθε +εἰς +τὰς +ὁδοὺς +καὶ +φραγμοὺς +καὶ +ἀνάγκασον +εἰσελθεῖν, +ἵνα +γεμισθῇ +μου +ὁ +οἶκος· +γὰρ +λέγω +ὑμῖν +ὅτι +οὐδεὶς +τῶν +ἀνδρῶν +ἐκείνων +τῶν +κεκλημένων +γεύσεταί +μου +τοῦ +δείπνου. +δὲ +Συνεπορεύοντο +αὐτῷ +ὄχλοι +πολλοί, +καὶ +στραφεὶς +εἶπεν +πρὸς +αὐτούς +Εἴ +τις +ἔρχεται +πρός +με +καὶ +οὐ +μισεῖ +τὸν +πατέρα +αὐτοῦ +καὶ +τὴν +μητέρα +καὶ +τὴν +γυναῖκα +καὶ +τὰ +τέκνα +καὶ +τοὺς +ἀδελφοὺς +καὶ +τὰς +ἀδελφάς, +τε +ἔτι +καὶ +τὴν +ψυχὴν +ἑαυτοῦ, +οὐ +δύναται +εἶναί +μου +μαθητής. +ὅστις +οὐ +βαστάζει +τὸν +σταυρὸν +ἑαυτοῦ +καὶ +ἔρχεται +ὀπίσω +μου, +οὐ +δύναται +εἶναί +μου +μαθητής. +γὰρ +οὐχὶ +Τίς +ἐξ +ὑμῶν +θέλων +πύργον +οἰκοδομῆσαι +πρῶτον +καθίσας +ψηφίζει +τὴν +δαπάνην, +εἰ +ἔχει +εἰς +ἀπαρτισμόν; +ἵνα +μή +ποτε +θέντος +αὐτοῦ +θεμέλιον +καὶ +μὴ +ἰσχύοντος +ἐκτελέσαι +πάντες +οἱ +θεωροῦντες +ἄρξωνται +αὐτῷ +ἐμπαίζειν +λέγοντες +ὅτι +Οὗτος +ὁ +ἄνθρωπος +ἤρξατο +οἰκοδομεῖν +καὶ +οὐκ +ἴσχυσεν +ἐκτελέσαι. +Ἢ +οὐχὶ +τίς +βασιλεὺς +πορευόμενος +ἑτέρῳ +βασιλεῖ +συμβαλεῖν +εἰς +πόλεμον +καθίσας +πρῶτον +βουλεύσεται +εἰ +δυνατός +ἐστιν +ἐν +δέκα +χιλιάσιν +ὑπαντῆσαι +τῷ +μετὰ +εἴκοσι +χιλιάδων +ἐρχομένῳ +ἐπ’ +αὐτόν; +δὲ +εἰ +μήγε, +ἔτι +αὐτοῦ +πόρρω +ὄντος +πρεσβείαν +ἀποστείλας +ἐρωτᾷ +τὰ +πρὸς +εἰρήνην. +οὖν +οὕτως +πᾶς +ἐξ +ὑμῶν +ὃς +οὐκ +ἀποτάσσεται +πᾶσιν +τοῖς +ἑαυτοῦ +ὑπάρχουσιν +οὐ +δύναται +εἶναί +μου +μαθητής. +οὖν +Καλὸν +τὸ +ἅλας· +δὲ +ἐὰν +καὶ +τὸ +ἅλας +μωρανθῇ, +ἐν +τίνι +ἀρτυθήσεται; +οὔτε +εἰς +γῆν +οὔτε +εἰς +κοπρίαν +εὔθετόν +ἐστιν· +ἔξω +βάλλουσιν +αὐτό. +ὁ +ἔχων +ὦτα +ἀκούειν +ἀκουέτω. +δὲ +Ἦσαν +ἐγγίζοντες +αὐτῷ +πάντες +οἱ +τελῶναι +καὶ +οἱ +ἁμαρτωλοὶ +ἀκούειν +αὐτοῦ. +καὶ +διεγόγγυζον +τε +οἵ +Φαρισαῖοι +καὶ +οἱ +γραμματεῖς +λέγοντες +ὅτι +Οὗτος +ἁμαρτωλοὺς +προσδέχεται +καὶ +συνεσθίει +αὐτοῖς. +δὲ +εἶπεν +πρὸς +αὐτοὺς +τὴν +παραβολὴν +ταύτην +λέγων +Τίς +ἄνθρωπος +ἐξ +ὑμῶν +ἔχων +ἑκατὸν +πρόβατα +καὶ +ἀπολέσας +ἐξ +αὐτῶν +ἓν +οὐ +καταλείπει +τὰ +ἐνενήκοντα +ἐννέα +ἐν +τῇ +ἐρήμῳ +καὶ +πορεύεται +ἐπὶ +τὸ +ἀπολωλὸς +ἕως +εὕρῃ +αὐτό; +καὶ +εὑρὼν +ἐπιτίθησιν +ἐπὶ +τοὺς +ὤμους +αὐτοῦ +χαίρων, +καὶ +ἐλθὼν +εἰς +τὸν +οἶκον +συνκαλεῖ +τοὺς +φίλους +καὶ +τοὺς +γείτονας, +λέγων +αὐτοῖς +Συνχάρητέ +μοι, +ὅτι +εὗρον +τὸ +πρόβατόν +μου +τὸ +ἀπολωλός. +λέγω +ὑμῖν +ὅτι +οὕτως +χαρὰ +ἐν +τῷ +οὐρανῷ +ἔσται +ἐπὶ +ἑνὶ +ἁμαρτωλῷ +μετανοοῦντι +ἢ +ἐπὶ +ἐνενήκοντα +ἐννέα +δικαίοις +οἵτινες +οὐ +χρείαν +μετανοίας. +ἔχουσιν +Ἢ +τίς +γυνὴ +δραχμὰς +δέκα, +ἔχουσα +ἐὰν +ἀπολέσῃ +δραχμὴν +μίαν, +οὐχὶ +ἅπτει +λύχνον +καὶ +σαροῖ +τὴν +οἰκίαν +καὶ +ζητεῖ +ἐπιμελῶς +ἕως +οὗ +εὕρῃ; +καὶ +εὑροῦσα +συνκαλεῖ +τὰς +φίλας +καὶ +γείτονας +λέγουσα +Συνχάρητέ +μοι, +ὅτι +εὗρον +τὴν +δραχμὴν +ἣν +ἀπώλεσα. +οὕτως, +λέγω +ὑμῖν, +γίνεται +χαρὰ +ἐνώπιον +τῶν +ἀγγέλων +τοῦ +Θεοῦ +ἐπὶ +ἑνὶ +ἁμαρτωλῷ +μετανοοῦντι. +δέ +Εἶπεν +Ἄνθρωπός +τις +εἶχεν +δύο +υἱούς. +καὶ +εἶπεν +ὁ +νεώτερος +αὐτῶν +τῷ +πατρί +Πάτερ, +δός +μοι +τὸ +ἐπιβάλλον +μέρος +τῆς +οὐσίας. +δὲ +ὁ +διεῖλεν +αὐτοῖς +τὸν +βίον. +καὶ +μετ’ +οὐ +πολλὰς +ἡμέρας +συναγαγὼν +πάντα +ὁ +νεώτερος +υἱὸς +ἀπεδήμησεν +εἰς +χώραν +μακράν, +καὶ +ἐκεῖ +διεσκόρπισεν +τὴν +οὐσίαν +αὐτοῦ +ζῶν +ἀσώτως. +δὲ +δαπανήσαντος +αὐτοῦ +πάντα +ἐγένετο +λιμὸς +ἰσχυρὰ +κατὰ +τὴν +χώραν +ἐκείνην, +καὶ +αὐτὸς +ἤρξατο +ὑστερεῖσθαι. +καὶ +πορευθεὶς +ἐκολλήθη +ἑνὶ +τῶν +πολιτῶν +τῆς +χώρας +ἐκείνης, +καὶ +ἔπεμψεν +αὐτὸν +εἰς +τοὺς +ἀγροὺς +αὐτοῦ +βόσκειν +χοίρους· +καὶ +ἐπεθύμει +γεμίσαι +τὴν +κοιλίαν +αὐτοῦ +ἐκ +τῶν +κερατίων +ὧν +ἤσθιον +οἱ +χοῖροι, +καὶ +οὐδεὶς +ἐδίδου +αὐτῷ. +δὲ +εἰς +ἑαυτὸν +ἐλθὼν +ἔφη +Πόσοι +μίσθιοι +τοῦ +πατρός +μου +περισσεύονται +ἄρτων, +δὲ +ἐγὼ +λιμῷ +ὧδε +ἀπόλλυμαι. +ἀναστὰς +πορεύσομαι +πρὸς +τὸν +πατέρα +μου +καὶ +ἐρῶ +αὐτῷ +Πάτερ, +ἥμαρτον +εἰς +τὸν +οὐρανὸν +καὶ +ἐνώπιόν +σου, +οὐκέτι +εἰμὶ +ἄξιος +κληθῆναι +υἱός +σου· +ποίησόν +με +ὡς +ἕνα +τῶν +μισθίων +σου. +καὶ +ἀναστὰς +ἦλθεν +πρὸς +τὸν +πατέρα +ἑαυτοῦ. +δὲ +ἔτι +αὐτοῦ +μακρὰν +ἀπέχοντος +εἶδεν +αὐτὸν +ὁ +πατὴρ +αὐτοῦ +καὶ +ἐσπλαγχνίσθη, +καὶ +δραμὼν +ἐπέπεσεν +ἐπὶ +τὸν +τράχηλον +αὐτοῦ +καὶ +κατεφίλησεν +αὐτόν. +δὲ +εἶπεν +ὁ +υἱὸς +αὐτῷ +Πάτερ, +ἥμαρτον +εἰς +τὸν +οὐρανὸν +καὶ +ἐνώπιόν +σου, +οὐκέτι +εἰμὶ +ἄξιος +κληθῆναι +υἱός +σου. +δὲ +εἶπεν +ὁ +πατὴρ +πρὸς +τοὺς +δούλους +αὐτοῦ +Ταχὺ +ἐξενέγκατε +στολὴν +τὴν +πρώτην +καὶ +ἐνδύσατε +αὐτόν, +καὶ +δότε +δακτύλιον +εἰς +τὴν +χεῖρα +αὐτοῦ +καὶ +ὑποδήματα +εἰς +τοὺς +πόδας, +καὶ +φέρετε +τὸν +μόσχον +τὸν +σιτευτόν, +θύσατε, +καὶ +φαγόντες +εὐφρανθῶμεν, +ὅτι +οὗτος +ὁ +υἱός +μου +νεκρὸς +ἦν +καὶ +ἀνέζησεν, +ἦν +ἀπολωλὼς +καὶ +εὑρέθη. +καὶ +ἤρξαντο +εὐφραίνεσθαι. +δὲ +ἦν +ὁ +υἱὸς +αὐτοῦ +ὁ +πρεσβύτερος +ἐν +ἀγρῷ· +καὶ +ὡς +ἐρχόμενος +ἤγγισεν +τῇ +οἰκίᾳ, +ἤκουσεν +συμφωνίας +καὶ +χορῶν, +καὶ +προσκαλεσάμενος +ἕνα +τῶν +παίδων +ἐπυνθάνετο +ἂν +τί +εἴη +ταῦτα. +δὲ +ὁ +εἶπεν +αὐτῷ +ὅτι +Ὁ +ἀδελφός +σου +ἥκει, +καὶ +ἔθυσεν +ὁ +πατήρ +σου +τὸν +μόσχον +τὸν +σιτευτόν, +ὅτι +ὑγιαίνοντα +αὐτὸν +ἀπέλαβεν. +δὲ +ὠργίσθη +καὶ +οὐκ +ἤθελεν +εἰσελθεῖν· +δὲ +ὁ +πατὴρ +αὐτοῦ +ἐξελθὼν +παρεκάλει +αὐτόν. +δὲ +ὁ +ἀποκριθεὶς +εἶπεν +τῷ +πατρὶ +Ἰδοὺ +τοσαῦτα +ἔτη +δουλεύω +σοι +καὶ +οὐδέποτε +ἐντολήν +σου +παρῆλθον, +καὶ +ἐμοὶ +οὐδέποτε +ἔδωκας +ἔριφον +ἵνα +μετὰ +τῶν +φίλων +μου +εὐφρανθῶ· +δὲ +ὅτε +ὁ +υἱός +σου +οὗτος +ὁ +καταφαγών +σου +τὸν +βίον +μετὰ +πορνῶν +ἦλθεν, +ἔθυσας +αὐτῷ +τὸν +σιτευτὸν +μόσχον. +δὲ +ὁ +εἶπεν +αὐτῷ +Τέκνον, +σὺ +πάντοτε +μετ’ +ἐμοῦ +εἶ, +καὶ +πάντα +τὰ +ἐμὰ +σά +ἐστιν· +δὲ +εὐφρανθῆναι +καὶ +χαρῆναι +ἔδει, +ὅτι +ὁ +ἀδελφός +σου +οὗτος +νεκρὸς +ἦν +καὶ +ἔζησεν, +καὶ +ἀπολωλὼς +καὶ +εὑρέθη. +δὲ +Ἔλεγεν +καὶ +πρὸς +τοὺς +μαθητάς +Ἄνθρωπός +τις +ἦν +πλούσιος +ὃς +εἶχεν +οἰκονόμον, +καὶ +οὗτος +διεβλήθη +αὐτῷ +ὡς +διασκορπίζων +τὰ +ὑπάρχοντα +αὐτοῦ. +καὶ +φωνήσας +αὐτὸν +εἶπεν +αὐτῷ +Τί +τοῦτο +ἀκούω +περὶ +σοῦ; +ἀπόδος +τὸν +λόγον +τῆς +οἰκονομίας +σου· +γὰρ +οὐ +δύνῃ +ἔτι +οἰκονομεῖν. +δὲ +εἶπεν +ἐν +ἑαυτῷ +ὁ +οἰκονόμος +Τί +ποιήσω, +ὅτι +ὁ +κύριός +μου +ἀφαιρεῖται +τὴν +οἰκονομίαν +ἀπ’ +ἐμοῦ; +σκάπτειν +οὐκ +ἰσχύω, +ἐπαιτεῖν +αἰσχύνομαι. +ἔγνων +τί +ποιήσω, +ἵνα +ὅταν +μετασταθῶ +ἐκ +τῆς +οἰκονομίας +δέξωνταί +με +εἰς +τοὺς +οἴκους +ἑαυτῶν. +καὶ +προσκαλεσάμενος +ἕνα +ἕκαστον +τῶν +χρεοφειλετῶν +τοῦ +κυρίου +ἑαυτοῦ +ἔλεγεν +τῷ +πρώτῳ +Πόσον +ὀφείλεις +τῷ +κυρίῳ +μου; +δὲ +ὁ +εἶπεν +Ἑκατὸν +βάτους +ἐλαίου. +δὲ +ὁ +εἶπεν +αὐτῷ +Δέξαι +σου +τὰ +γράμματα +καὶ +καθίσας +ταχέως +γράψον +πεντήκοντα. +ἔπειτα +ἑτέρῳ +εἶπεν +δὲ +Σὺ +πόσον +ὀφείλεις; +δὲ +ὁ +εἶπεν +Ἑκατὸν +κόρους +σίτου. +λέγει +αὐτῷ +Δέξαι +σου +τὰ +γράμματα +καὶ +γράψον +ὀγδοήκοντα. +καὶ +ἐπῄνεσεν +ὁ +κύριος +τὸν +οἰκονόμον +τῆς +ἀδικίας +ὅτι +φρονίμως +ἐποίησεν· +ὅτι +οἱ +υἱοὶ +τοῦ +αἰῶνος +τούτου +φρονιμώτεροι +ὑπὲρ +τοὺς +υἱοὺς +τοῦ +φωτὸς +εἰς +τὴν +γενεὰν +τὴν +ἑαυτῶν +εἰσιν. +Καὶ +ἐγὼ +ὑμῖν +λέγω, +ἑαυτοῖς +ποιήσατε +φίλους +ἐκ +τοῦ +μαμωνᾶ +τῆς +ἀδικίας, +ἵνα +ὅταν +ἐκλίπῃ +δέξωνται +ὑμᾶς +εἰς +τὰς +αἰωνίους +σκηνάς. +ὁ +πιστὸς +ἐν +ἐλαχίστῳ +καὶ +ἐν +πολλῷ +πιστός +ἐστιν, +καὶ +ὁ +ἐν +ἐλαχίστῳ +ἄδικος +καὶ +ἐν +πολλῷ +ἄδικός +ἐστιν. +οὖν +εἰ +ἐν +τῷ +ἀδίκῳ +μαμωνᾷ +πιστοὶ +οὐκ +ἐγένεσθε, +τὸ +ἀληθινὸν +τίς +ὑμῖν +πιστεύσει; +καὶ +εἰ +ἐν +τῷ +ἀλλοτρίῳ +πιστοὶ +οὐκ +ἐγένεσθε, +τὸ +ἡμέτερον +τίς +δώσει +ὑμῖν; +Οὐδεὶς +οἰκέτης +δύναται +δυσὶ +κυρίοις +δουλεύειν· +γὰρ +ἢ +τὸν +ἕνα +μισήσει +καὶ +τὸν +ἕτερον +ἀγαπήσει, +ἢ +ἑνὸς +ἀνθέξεται +καὶ +τοῦ +ἑτέρου +καταφρονήσει. +οὐ +δύνασθε +Θεῷ +δουλεύειν +καὶ +μαμωνᾷ. +δὲ +Ἤκουον +ταῦτα +πάντα +οἱ +Φαρισαῖοι +φιλάργυροι +ὑπάρχοντες, +καὶ +ἐξεμυκτήριζον +αὐτόν. +καὶ +εἶπεν +αὐτοῖς +Ὑμεῖς +ἐστε +οἱ +δικαιοῦντες +ἑαυτοὺς +ἐνώπιον +τῶν +ἀνθρώπων, +δὲ +ὁ +Θεὸς +γινώσκει +τὰς +καρδίας +ὑμῶν· +ὅτι +τὸ +ἐν +ἀνθρώποις +ὑψηλὸν +βδέλυγμα +ἐνώπιον +τοῦ +Θεοῦ. +Ὁ +νόμος +καὶ +οἱ +προφῆται +μέχρι +Ἰωάνου· +ἀπὸ +τότε +ἡ +βασιλεία +τοῦ +Θεοῦ +εὐαγγελίζεται +καὶ +πᾶς +εἰς +αὐτὴν +βιάζεται. +δέ +εὐκοπώτερον +ἐστιν +τὸν +οὐρανὸν +καὶ +τὴν +γῆν +παρελθεῖν +ἢ +τοῦ +νόμου +μίαν +κεραίαν +πεσεῖν. +Πᾶς +ὁ +ἀπολύων +τὴν +γυναῖκα +αὐτοῦ +καὶ +γαμῶν +ἑτέραν +μοιχεύει, +καὶ +ὁ +ἀπολελυμένην +ἀπὸ +ἀνδρὸς +γαμῶν +μοιχεύει. +δέ +Ἄνθρωπος +τις +ἦν +πλούσιος, +καὶ +ἐνεδιδύσκετο +πορφύραν +καὶ +βύσσον +εὐφραινόμενος +καθ’ +ἡμέραν +λαμπρῶς. +δέ +πτωχὸς +τις +ὀνόματι +Λάζαρος +ἐβέβλητο +πρὸς +τὸν +πυλῶνα +αὐτοῦ +εἱλκωμένος +καὶ +ἐπιθυμῶν +χορτασθῆναι +ἀπὸ +τῶν +πιπτόντων +ἀπὸ +τῆς +τραπέζης +τοῦ +πλουσίου· +ἀλλὰ +καὶ +οἱ +κύνες +ἐρχόμενοι +ἐπέλειχον +τὰ +ἕλκη +αὐτοῦ. +δὲ +ἐγένετο +ἀποθανεῖν +τὸν +πτωχὸν +καὶ +ἀπενεχθῆναι +αὐτὸν +ὑπὸ +τῶν +ἀγγέλων +εἰς +τὸν +κόλπον +Ἀβραάμ· +δὲ +ἀπέθανεν +καὶ +ὁ +πλούσιος +καὶ +ἐτάφη. +καὶ +ἐν +τῷ +Ἅιδῃ +ἐπάρας +τοὺς +ὀφθαλμοὺς +αὐτοῦ, +ὑπάρχων +ἐν +βασάνοις, +ὁρᾷ +Ἀβραὰμ +ἀπὸ +μακρόθεν +καὶ +Λάζαρον +ἐν +τοῖς +κόλποις +αὐτοῦ. +καὶ +αὐτὸς +φωνήσας +εἶπεν +Πάτερ +Ἀβραάμ, +ἐλέησόν +με +καὶ +πέμψον +Λάζαρον +ἵνα +βάψῃ +τὸ +ἄκρον +τοῦ +δακτύλου +αὐτοῦ +ὕδατος +καὶ +καταψύξῃ +τὴν +γλῶσσάν +μου, +ὅτι +ὀδυνῶμαι +ἐν +τῇ +φλογὶ +ταύτῃ. +δὲ +εἶπεν +Ἀβραάμ +Τέκνον, +μνήσθητι +ὅτι +ἀπέλαβες +τὰ +ἀγαθά +σου +ἐν +τῇ +ζωῇ +σου, +καὶ +Λάζαρος +ὁμοίως +τὰ +κακά· +δὲ +νῦν +ὧδε +παρακαλεῖται +δὲ +σὺ +ὀδυνᾶσαι. +καὶ +ἐν +πᾶσι +τούτοις +μεταξὺ +ἡμῶν +καὶ +ὑμῶν +χάσμα +μέγα +ἐστήρικται, +ὅπως +οἱ +θέλοντες +διαβῆναι +ἔνθεν +πρὸς +ὑμᾶς +μὴ +δύνωνται, +μηδὲ +ἐκεῖθεν +πρὸς +ἡμᾶς +διαπερῶσιν. +δέ +εἶπεν +οὖν, +Ἐρωτῶ +σε +πάτερ, +ἵνα +πέμψῃς +αὐτὸν +εἰς +τὸν +οἶκον +τοῦ +πατρός +μου· +γὰρ +ἔχω +πέντε +ἀδελφούς· +ὅπως +διαμαρτύρηται +αὐτοῖς, +ἵνα +μὴ +καὶ +αὐτοὶ +ἔλθωσιν +εἰς +τὸν +τόπον +τοῦτον +τῆς +βασάνου. +δὲ +λέγει +Ἀβραάμ +Ἔχουσι +Μωϋσέα +καὶ +τοὺς +προφήτας· +ἀκουσάτωσαν +αὐτῶν. +δὲ +ὁ +εἶπεν +Οὐχί, +πάτερ +Ἀβραάμ, +ἀλλ’ +ἐάν +τις +ἀπὸ +νεκρῶν +πορευθῇ +πρὸς +αὐτοὺς, +μετανοήσουσιν. +δὲ +εἶπεν +αὐτῷ +Εἰ +Μωϋσέως +καὶ +τῶν +προφητῶν +οὐκ +ἀκούουσιν, +οὐδὲ +ἐάν +τις +ἐκ +νεκρῶν +ἀναστῇ +πεισθήσονται. +δὲ +Εἶπεν +πρὸς +τοὺς +μαθητὰς +αὐτοῦ +Ἀνένδεκτόν +ἐστιν +τοῦ +τὰ +σκάνδαλα +μὴ +ἐλθεῖν, +δὲ +οὐαὶ +δι’ +οὗ +ἔρχεται· +λυσιτελεῖ +αὐτῷ +εἰ +λίθος +μυλικὸς +περίκειται +περὶ +τὸν +τράχηλον +αὐτοῦ +καὶ +ἔρριπται +εἰς +τὴν +θάλασσαν, +ἢ +ἵνα +σκανδαλίσῃ +τῶν +μικρῶν +τούτων +ἕνα. +προσέχετε +ἑαυτοῖς. +ἐὰν +ἁμάρτῃ +ὁ +ἀδελφός +σου, +ἐπιτίμησον +αὐτῷ, +καὶ +ἐὰν +μετανοήσῃ, +ἄφες +αὐτῷ. +καὶ +ἐὰν +ἑπτάκις +τῆς +ἡμέρας +ἁμαρτήσῃ +εἰς +σὲ +καὶ +ἑπτάκις +ἐπιστρέψῃ +πρὸς +σὲ +λέγων +Μετανοῶ, +ἀφήσεις +αὐτῷ. +Καὶ +εἶπαν +οἱ +ἀπόστολοι +τῷ +Κυρίῳ +Πρόσθες +ἡμῖν +πίστιν. +δὲ +εἶπεν +ὁ +Κύριος +Εἰ +ἔχετε +πίστιν +ὡς +κόκκον +σινάπεως, +ἂν +ἐλέγετε +τῇ +συκαμίνῳ +ταύτῃ +Ἐκριζώθητι +καὶ +φυτεύθητι +ἐν +τῇ +θαλάσσῃ· +καὶ +ἂν +ὑπήκουσεν +ὑμῖν. +δὲ +Τίς +ἐξ +ὑμῶν +ἔχων +δοῦλον +ἀροτριῶντα +ἢ +ποιμαίνοντα, +ὃς +εἰσελθόντι +ἐκ +τοῦ +ἀγροῦ +ἐρεῖ +αὐτῷ +Εὐθέως +παρελθὼν +ἀνάπεσε, +ἀλλ’ +οὐχὶ +ἐρεῖ +αὐτῷ +Ἑτοίμασον +τί +δειπνήσω, +καὶ +περιζωσάμενος +διακόνει +μοι +ἕως +φάγω +καὶ +πίω, +καὶ +μετὰ +ταῦτα +φάγεσαι +καὶ +πίεσαι +σύ; +μὴ +ἔχει +χάριν +τῷ +δούλῳ +ὅτι +ἐποίησεν +τὰ +διαταχθέντα; +οὕτως +καὶ +ὑμεῖς, +ὅταν +ποιήσητε +πάντα +τὰ +διαταχθέντα +ὑμῖν, +λέγετε +ὅτι +Δοῦλοι +ἀχρεῖοί +ἐσμεν, +ὃ +ποιῆσαι +ὠφείλομεν +πεποιήκαμεν. +Καὶ +ἐγένετο +ἐν +τῷ +πορεύεσθαι +εἰς +Ἱερουσαλὴμ, +καὶ +αὐτὸς +διήρχετο +διὰ +μέσον +Σαμαρίας +καὶ +Γαλιλαίας. +καὶ +εἰσερχομένου +αὐτοῦ +εἴς +τινα +κώμην +ἀπήντησαν +δέκα +λεπροὶ +ἄνδρες, +οἳ +ἔστησαν +πόρρωθεν, +καὶ +αὐτοὶ +ἦραν +φωνὴν +λέγοντες +Ἰησοῦ +Ἐπιστάτα, +ἐλέησον +ἡμᾶς. +καὶ +ἰδὼν +εἶπεν +αὐτοῖς +Πορευθέντες +ἐπιδείξατε +ἑαυτοὺς +τοῖς +ἱερεῦσιν. +καὶ +ἐγένετο +ἐν +τῷ +ὑπάγειν +αὐτοὺς +ἐκαθαρίσθησαν. +δὲ +εἷς +ἐξ +αὐτῶν, +ἰδὼν +ὅτι +ἰάθη, +ὑπέστρεψεν +μετὰ +φωνῆς +μεγάλης +δοξάζων +τὸν +Θεόν, +καὶ +ἔπεσεν +ἐπὶ +πρόσωπον +παρὰ +τοὺς +πόδας +αὐτοῦ +εὐχαριστῶν +αὐτῷ· +καὶ +αὐτὸς +ἦν +Σαμαρείτης. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +Οὐχ +οἱ +δέκα +ἐκαθαρίσθησαν; +δὲ +οἱ +ἐννέα +ποῦ; +οὐχ +εὑρέθησαν +ὑποστρέψαντες +δοῦναι +δόξαν +τῷ +Θεῷ +εἰ +μὴ +ὁ +ἀλλογενὴς +οὗτος; +καὶ +εἶπεν +αὐτῷ +Ἀναστὰς +πορεύου· +ἡ +πίστις +σου +σέσωκέν +σε. +δὲ +Ἐπερωτηθεὶς +ὑπὸ +τῶν +Φαρισαίων +πότε +ἔρχεται +ἡ +βασιλεία +τοῦ +Θεοῦ, +ἀπεκρίθη +αὐτοῖς +καὶ +εἶπεν +Οὐκ +ἔρχεται +ἡ +βασιλεία +τοῦ +Θεοῦ +μετὰ +παρατηρήσεως, +οὐδὲ +ἐροῦσιν +Ἰδοὺ +ὧδε +ἤ +Ἐκεῖ· +γὰρ +ἰδοὺ +ἡ +βασιλεία +τοῦ +Θεοῦ +ἐντὸς +ὑμῶν +ἐστιν. +δὲ +Εἶπεν +πρὸς +τοὺς +μαθητάς +Ἐλεύσονται +ἡμέραι +ὅτε +ἐπιθυμήσετε +μίαν +τῶν +ἡμερῶν +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +ἰδεῖν +καὶ +οὐκ +ὄψεσθε. +καὶ +ἐροῦσιν +ὑμῖν +Ἰδοὺ +ἐκεῖ, +Ἰδοὺ +ὧδε· +μὴ +ἀπέλθητε +μηδὲ +διώξητε. +γὰρ +ὥσπερ +ἡ +ἀστραπὴ +ἀστράπτουσα +ἐκ +τῆς +ὑπὸ +τὸν +οὐρανὸν +εἰς +τὴν +ὑπ’ +οὐρανὸν +λάμπει, +οὕτως +ἔσται +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐν +τῇ +ἡμέρᾳ +αὐτοῦ. +δὲ +δεῖ +πρῶτον +αὐτὸν +πολλὰ +παθεῖν +καὶ +ἀποδοκιμασθῆναι +ἀπὸ +τῆς +γενεᾶς +ταύτης. +καὶ +καθὼς +ἐγένετο +ἐν +ταῖς +ἡμέραις +Νῶε, +οὕτως +ἔσται +καὶ +ἐν +ταῖς +ἡμέραις +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου· +ἤσθιον, +ἔπινον, +ἐγάμουν, +ἐγαμίζοντο, +ἄχρι +ἧς +ἡμέρας +εἰσῆλθεν +Νῶε +εἰς +τὴν +κιβωτόν, +καὶ +ἦλθεν +ὁ +κατακλυσμὸς +καὶ +ἀπώλεσεν +πάντας. +καθὼς +ὁμοίως +ἐγένετο +ἐν +ταῖς +ἡμέραις +Λώτ· +ἤσθιον, +ἔπινον, +ἠγόραζον, +ἐπώλουν, +ἐφύτευον, +ᾠκοδόμουν· +δὲ +ᾗ +ἡμέρᾳ +ἐξῆλθεν +Λὼτ +ἀπὸ +Σοδόμων, +ἔβρεξεν +πῦρ +καὶ +θεῖον +ἀπ’ +οὐρανοῦ +καὶ +ἀπώλεσεν +πάντας. +κατὰ +τὰ +αὐτὰ +ἔσται +ᾗ +ἡμέρᾳ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἀποκαλύπτεται. +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ὃς +ἔσται +ἐπὶ +τοῦ +δώματος +καὶ +τὰ +σκεύη +αὐτοῦ +ἐν +τῇ +οἰκίᾳ, +μὴ +καταβάτω +ἆραι +αὐτά, +καὶ +ὁ +ἐν +ἀγρῷ +ὁμοίως +μὴ +ἐπιστρεψάτω +εἰς +τὰ +ὀπίσω. +μνημονεύετε +τῆς +γυναικὸς +Λώτ. +ἐὰν +ὃς +ζητήσῃ +τὴν +ψυχὴν +αὐτοῦ +περιποιήσασθαι, +ἀπολέσει +αὐτήν, +καὶ +ἂν +ὃς +ἀπολέσει, +ζωογονήσει +αὐτήν. +λέγω +ὑμῖν, +ταύτῃ +τῇ +νυκτὶ +ἔσονται +δύο +ἐπὶ +κλίνης +μιᾶς, +ὁ +εἷς +παραλημφθήσεται +καὶ +ὁ +ἕτερος +ἀφεθήσεται· +ἔσονται +ἀλήθουσαι +δύο +ἐπὶ +τὸ +αὐτό, +ἡ +μία +παραλημφθήσεται +δὲ +ἡ +ἑτέρα +ἀφεθήσεται. +καὶ +ἀποκριθέντες +λέγουσιν +αὐτῷ +Ποῦ, +Κύριε; +δὲ +ὁ +εἶπεν +αὐτοῖς +Ὅπου +τὸ +σῶμα, +ἐκεῖ +καὶ +οἱ +ἀετοὶ +ἐπισυναχθήσονται. +δὲ +Ἔλεγεν +παραβολὴν +αὐτοῖς +πρὸς +τὸ +δεῖν +πάντοτε +προσεύχεσθαι +αὐτοὺς +καὶ +μὴ +ἐνκακεῖν, +λέγων +Κριτής +τις +ἦν +ἔν +τινι +πόλει +τὸν +Θεὸν +μὴ +φοβούμενος +καὶ +ἄνθρωπον +μὴ +ἐντρεπόμενος. +δὲ +χήρα +ἦν +ἐν +τῇ +πόλει +ἐκείνῃ, +καὶ +ἤρχετο +πρὸς +αὐτὸν +λέγουσα +Ἐκδίκησόν +με +ἀπὸ +τοῦ +ἀντιδίκου +μου. +καὶ +οὐκ +ἤθελεν +ἐπὶ +χρόνον· +δὲ +μετὰ +ταῦτα +εἶπεν +ἐν +ἑαυτῷ +Εἰ +καὶ +τὸν +Θεὸν +οὐ +φοβοῦμαι +οὐδὲ +ἄνθρωπον +ἐντρέπομαι, +γε +διά +τὸ +παρέχειν +μοι +κόπον +τὴν +χήραν +ταύτην +ἐκδικήσω +αὐτήν, +ἵνα +μὴ +εἰς +τέλος +ἐρχομένη +ὑπωπιάζῃ +με. +δὲ +Εἶπεν +ὁ +Κύριος +Ἀκούσατε +τί +ὁ +κριτὴς +τῆς +ἀδικίας +λέγει· +δὲ +οὐ +μὴ +ὁ +Θεὸς +ποιήσῃ +τὴν +ἐκδίκησιν +τῶν +ἐκλεκτῶν +αὐτοῦ +τῶν +βοώντων +αὐτῷ +ἡμέρας +καὶ +νυκτός, +καὶ +μακροθυμεῖ +ἐπ’ +αὐτοῖς; +λέγω +ὑμῖν +ὅτι +ποιήσει +τὴν +ἐκδίκησιν +αὐτῶν +ἐν +τάχει. +πλὴν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐλθὼν +ἆρα +εὑρήσει +τὴν +πίστιν +ἐπὶ +τῆς +γῆς; +δὲ +Εἶπεν +καὶ +πρός +τινας +τοὺς +πεποιθότας +ἐφ’ +ἑαυτοῖς +ὅτι +εἰσὶν +δίκαιοι +καὶ +ἐξουθενοῦντας +τοὺς +λοιποὺς +τὴν +παραβολὴν +ταύτην. +Ἄνθρωποι +δύο +ἀνέβησαν +εἰς +τὸ +ἱερὸν +προσεύξασθαι, +ὁ +εἷς +Φαρισαῖος +καὶ +ὁ +ἕτερος +τελώνης. +ὁ +Φαρισαῖος +σταθεὶς +ταῦτα +πρὸς +ἑαυτὸν +προσηύχετο +Ὁ +Θεός, +εὐχαριστῶ +σοι +ὅτι +οὐκ +εἰμὶ +ὥσπερ +οἱ +λοιποὶ +τῶν +ἀνθρώπων, +ἅρπαγες, +ἄδικοι, +μοιχοί, +ἢ +ὡς +καὶ +οὗτος +ὁ +τελώνης· +νηστεύω +δὶς +τοῦ +σαββάτου, +ἀποδεκατεύω +πάντα +ὅσα +κτῶμαι. +δὲ +ὁ +τελώνης +μακρόθεν +ἑστὼς +οὐκ +ἤθελεν +οὐδὲ +τοὺς +ὀφθαλμοὺς +ἐπᾶραι +εἰς +τὸν +οὐρανόν, +ἀλλ’ +ἔτυπτεν +τὸ +στῆθος +αὐτοῦ +λέγων +Ὁ +Θεός, +ἱλάσθητί +μοι +τῷ +ἁμαρτωλῷ. +λέγω +ὑμῖν, +κατέβη +οὗτος +δεδικαιωμένος +εἰς +τὸν +οἶκον +αὐτοῦ +παρ’ +ἐκεῖνον· +ὅτι +πᾶς +ὁ +ὑψῶν +ἑαυτὸν +ταπεινωθήσεται, +δὲ +ὁ +ταπεινῶν +ἑαυτὸν +ὑψωθήσεται. +δὲ +Προσέφερον +αὐτῷ +καὶ +τὰ +βρέφη +ἵνα +αὐτῶν +ἅπτηται· +δὲ +ἰδόντες +οἱ +μαθηταὶ +ἐπετίμων +αὐτοῖς. +δὲ +ὁ +Ἰησοῦς +προσεκαλέσατο +αὐτὰ +λέγων +Ἄφετε +τὰ +παιδία +ἔρχεσθαι +πρός +με +καὶ +μὴ +κωλύετε +αὐτά· +γὰρ +τῶν +τοιούτων +ἐστὶν +ἡ +βασιλεία +τοῦ +Θεοῦ. +ἀμὴν +λέγω +ὑμῖν, +ἂν +ὃς +μὴ +δέξηται +τὴν +βασιλείαν +τοῦ +Θεοῦ +ὡς +παιδίον, +οὐ +μὴ +εἰσέλθῃ +εἰς +αὐτήν. +Καὶ +ἐπηρώτησέν +τις +ἄρχων +αὐτὸν +λέγων +Διδάσκαλε +ἀγαθέ, +τί +ποιήσας +ζωὴν +αἰώνιον +κληρονομήσω; +δὲ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Τί +με +λέγεις +ἀγαθόν; +οὐδεὶς +ἀγαθὸς +εἰ +μὴ +εἷς +ὁ +Θεός. +τὰς +ἐντολὰς +οἶδας +Μὴ +μοιχεύσῃς, +Μὴ +φονεύσῃς, +Μὴ +κλέψῃς, +Μὴ +ψευδομαρτυρήσῃς, +Τίμα +τὸν +πατέρα +σου +καὶ +τὴν +μητέρα. +δὲ +ὁ +εἶπεν +Ταῦτα +πάντα +ἐφύλαξα +ἐκ +νεότητος. +δὲ +ἀκούσας +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἔτι +ἕν +σοι +λείπει· +πάντα +ὅσα +ἔχεις +πώλησον +καὶ +διάδος +πτωχοῖς, +καὶ +ἕξεις +θησαυρὸν +ἐν +τοῖς +οὐρανοῖς, +καὶ +δεῦρο +ἀκολούθει +μοι. +δὲ +ὁ +ἀκούσας +ταῦτα +περίλυπος +ἐγενήθη, +γὰρ +ἦν +πλούσιος +σφόδρα. +δὲ +ἰδὼν +αὐτὸν +ὁ +Ἰησοῦς +εἶπεν +Πῶς +δυσκόλως +οἱ +τὰ +χρήματα +ἔχοντες +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ +εἰσπορεύονται· +γάρ +εὐκοπώτερον +ἐστιν +κάμηλον +διὰ +τρήματος +βελόνης +εἰσελθεῖν +ἢ +πλούσιον +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ +εἰσελθεῖν. +δὲ +εἶπαν +οἱ +ἀκούσαντες +Καὶ +τίς +δύναται +σωθῆναι; +δὲ +ὁ +εἶπεν +Τὰ +ἀδύνατα +παρὰ +ἀνθρώποις +δυνατὰ +παρὰ +τῷ +Θεῷ +ἐστιν. +δὲ +Εἶπεν +ὁ +Πέτρος +Ἰδοὺ +ἡμεῖς +ἀφέντες +τὰ +ἴδια +ἠκολουθήσαμέν +σοι. +δὲ +ὁ +εἶπεν +αὐτοῖς +Ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐδείς +ἐστιν +ὃς +ἀφῆκεν +οἰκίαν +ἢ +γυναῖκα +ἢ +ἀδελφοὺς +ἢ +γονεῖς +ἢ +τέκνα +ἕνεκεν +τῆς +βασιλείας +τοῦ +Θεοῦ, +ὃς +οὐχὶ +μὴ +λάβῃ +πολλαπλασίονα +ἐν +τῷ +καιρῷ +τούτῳ +καὶ +ἐν +τῷ +αἰῶνι +τῷ +ἐρχομένῳ +ζωὴν +αἰώνιον. +δὲ +Παραλαβὼν +τοὺς +δώδεκα +εἶπεν +πρὸς +αὐτούς +Ἰδοὺ +ἀναβαίνομεν +εἰς +Ἱερουσαλήμ, +καὶ +τελεσθήσεται +πάντα +τὰ +γεγραμμένα +διὰ +τῶν +προφητῶν +τῷ +Υἱῷ +τοῦ +ἀνθρώπου· +γὰρ +παραδοθήσεται +τοῖς +ἔθνεσιν +καὶ +ἐμπαιχθήσεται +καὶ +ὑβρισθήσεται +καὶ +ἐμπτυσθήσεται, +καὶ +μαστιγώσαντες +ἀποκτενοῦσιν +αὐτόν, +καὶ +τῇ +ἡμέρᾳ +τῇ +τρίτῃ +ἀναστήσεται. +καὶ +αὐτοὶ +οὐδὲν +τούτων +συνῆκαν, +καὶ +ἦν +τὸ +ῥῆμα +τοῦτο +κεκρυμμένον +ἀπ’ +αὐτῶν, +καὶ +οὐκ +ἐγίνωσκον +τὰ +λεγόμενα. +δὲ +Ἐγένετο +ἐν +τῷ +ἐγγίζειν +αὐτὸν +εἰς +Ἱερειχὼ +τυφλός +τις +ἐκάθητο +παρὰ +τὴν +ὁδὸν +ἐπαιτῶν. +δὲ +ἀκούσας +ὄχλου +διαπορευομένου +ἐπυνθάνετο +τί +εἴη +τοῦτο. +δὲ +ἀπήγγειλαν +αὐτῷ +ὅτι +Ἰησοῦς +ὁ +Ναζωραῖος +παρέρχεται. +καὶ +ἐβόησεν +λέγων +Ἰησοῦ +υἱὲ +Δαυείδ, +ἐλέησόν +με. +καὶ +οἱ +προάγοντες +ἐπετίμων +αὐτῷ +ἵνα +σιγήσῃ· +δὲ +αὐτὸς +πολλῷ +μᾶλλον +ἔκραζεν +Υἱὲ +Δαυείδ, +ἐλέησόν +με. +δὲ +σταθεὶς +ὁ +Ἰησοῦς +ἐκέλευσεν +αὐτὸν +ἀχθῆναι +πρὸς +αὐτόν. +δὲ +ἐγγίσαντος +αὐτοῦ +ἐπηρώτησεν +αὐτόν +Τί +σοι +ποιήσω; +θέλεις +δὲ +ὁ +εἶπεν +Κύριε, +ἵνα +ἀναβλέψω. +καὶ +ὁ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἀνάβλεψον· +ἡ +πίστις +σου +σέσωκέν +σε. +καὶ +παραχρῆμα +ἀνέβλεψεν, +καὶ +ἠκολούθει +αὐτῷ +δοξάζων +τὸν +Θεόν. +καὶ +πᾶς +ὁ +λαὸς +ἰδὼν +ἔδωκεν +αἶνον +τῷ +Θεῷ. +Καὶ +εἰσελθὼν +διήρχετο +τὴν +Ἱερειχώ. +Καὶ +ἰδοὺ +ἀνὴρ +ὀνόματι +καλούμενος +Ζακχαῖος, +καὶ +αὐτὸς +ἦν +ἀρχιτελώνης, +καὶ +αὐτὸς +πλούσιος· +καὶ +ἐζήτει +ἰδεῖν +τὸν +Ἰησοῦν +τίς +ἐστιν, +καὶ +οὐκ +ἠδύνατο +ἀπὸ +τοῦ +ὄχλου, +ὅτι +τῇ +ἡλικίᾳ +μικρὸς +ἦν. +καὶ +προδραμὼν +εἰς +τὸ +ἔμπροσθεν +ἀνέβη +ἐπὶ +συκομορέαν, +ἵνα +ἴδῃ +αὐτόν, +ὅτι +ἐκείνης +διέρχεσθαι. +ἤμελλεν +καὶ +ὡς +ἦλθεν +ἐπὶ +τὸν +τόπον, +ἀναβλέψας +ὁ +Ἰησοῦς +εἶπεν +πρὸς +αὐτόν +Ζακχαῖε, +σπεύσας +κατάβηθι· +γὰρ +σήμερον +ἐν +τῷ +οἴκῳ +σου +με +μεῖναι. +δεῖ +καὶ +σπεύσας +κατέβη, +καὶ +ὑπεδέξατο +αὐτὸν +χαίρων. +καὶ +ἰδόντες +πάντες +διεγόγγυζον +λέγοντες +ὅτι +Παρὰ +ἁμαρτωλῷ +ἀνδρὶ +εἰσῆλθεν +καταλῦσαι. +δὲ +σταθεὶς +Ζακχαῖος +εἶπεν +πρὸς +τὸν +Κύριον +Κύριε, +Ἰδοὺ +τὰ +ἡμίσειά +μου +τῶν +ὑπαρχόντων, +τοῖς +πτωχοῖς +δίδωμι, +καὶ +εἴ +τινός +τι +ἐσυκοφάντησα +ἀποδίδωμι +τετραπλοῦν. +δὲ +εἶπεν +πρὸς +αὐτὸν +ὁ +Ἰησοῦς +ὅτι +Σήμερον +σωτηρία +τῷ +οἴκῳ +τούτῳ +ἐγένετο, +καθότι +καὶ +αὐτὸς +υἱὸς +Ἀβραάμ +ἐστιν· +γὰρ +ἦλθεν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ζητῆσαι +καὶ +σῶσαι +τὸ +ἀπολωλός. +δὲ +Ἀκουόντων +αὐτῶν +ταῦτα +προσθεὶς +εἶπεν +παραβολὴν, +διὰ +τὸ +εἶναι +ἐγγὺς +Ἱερουσαλὴμ +αὐτὸν +καὶ +δοκεῖν +αὐτοὺς +ὅτι +παραχρῆμα +μέλλει +ἡ +βασιλεία +τοῦ +Θεοῦ +ἀναφαίνεσθαι· +οὖν +εἶπεν +Ἄνθρωπός +τις +εὐγενὴς +ἐπορεύθη +εἰς +χώραν +μακρὰν +λαβεῖν +ἑαυτῷ +βασιλείαν +καὶ +ὑποστρέψαι. +δὲ +καλέσας +δέκα +δούλους +ἑαυτοῦ +ἔδωκεν +αὐτοῖς +δέκα +μνᾶς, +καὶ +εἶπεν +πρὸς +αὐτούς +Πραγματεύσασθε +ἐν +ᾧ +ἔρχομαι. +δὲ +οἱ +πολῖται +αὐτοῦ +ἐμίσουν +αὐτόν, +καὶ +ἀπέστειλαν +πρεσβείαν +ὀπίσω +αὐτοῦ +λέγοντες +Οὐ +θέλομεν +τοῦτον +βασιλεῦσαι +ἐφ’ +ἡμᾶς. +καὶ +ἐγένετο +ἐν +τῷ +ἐπανελθεῖν +αὐτὸν +λαβόντα +τὴν +βασιλείαν +καὶ +εἶπεν +φωνηθῆναι +αὐτῷ +τοὺς +δούλους +τούτους +οἷς +δεδώκει +τὸ +ἀργύριον, +ἵνα +γνοῖ +τίς +τί +διεπραγματεύσατο. +δὲ +παρεγένετο +ὁ +πρῶτος +λέγων +Κύριε, +ἡ +μνᾶ +σου +δέκα +μνᾶς. +προσηργάσατο +καὶ +εἶπεν +αὐτῷ +Εὖγε, +ἀγαθὲ +δοῦλε, +ὅτι +ἐν +ἐλαχίστῳ +πιστὸς +ἐγένου, +ἴσθι +ἐξουσίαν +ἔχων +ἐπάνω +δέκα +πόλεων. +καὶ +ἦλθεν +ὁ +δεύτερος +λέγων +κύριε, +Ἠ +μνᾶ +σου, +ἐποίησεν +πέντε +μνᾶς. +δὲ +εἶπεν +καὶ +τούτῳ +Καὶ +σὺ +ἐπάνω +πέντε +πόλεων. +γίνου +καὶ +ὁ +ἕτερος +ἦλθεν +λέγων +Κύριε, +ἰδοὺ +ἡ +μνᾶ +σου, +ἣν +εἶχον +ἀποκειμένην +ἐν +σουδαρίῳ· +γάρ +ἐφοβούμην +σε, +ὅτι +ἄνθρωπος +αὐστηρὸς +εἶ, +αἴρεις +ὃ +οὐκ +ἔθηκας, +καὶ +θερίζεις +ὃ +οὐκ +ἔσπειρας. +λέγει +αὐτῷ +Ἐκ +τοῦ +στόματός +σου +κρίνω +σε, +πονηρὲ +δοῦλε. +ᾔδεις +ὅτι +ἐγὼ +εἰμι, +ἄνθρωπος +αὐστηρός +αἴρων +ὃ +οὐκ +ἔθηκα +καὶ +θερίζων +ὃ +οὐκ +ἔσπειρα; +καὶ +διὰ +τί +οὐκ +ἔδωκάς +μου +τὸ +ἀργύριον +ἐπὶ +τράπεζαν; +ἂν +κἀγὼ +ἐλθὼν +σὺν +τόκῳ +αὐτὸ +ἔπραξα. +καὶ +τοῖς +παρεστῶσιν +εἶπεν +Ἄρατε +ἀπ’ +αὐτοῦ +τὴν +μνᾶν +καὶ +δότε +τῷ +τὰς +δέκα +μνᾶς +ἔχοντι. +καὶ +εἶπαν +αὐτῷ +Κύριε, +ἔχει +δέκα +μνᾶς. +λέγω +ὑμῖν +ὅτι +παντὶ +τῷ +ἔχοντι +δοθήσεται, +δὲ +ἀπὸ +τοῦ +μὴ +ἔχοντος +καὶ +ὃ +ἔχει +ἀρθήσεται. +πλὴν +τοὺς +ἐχθρούς +μου +τούτους +τοὺς +μὴ +θελήσαντάς +με +βασιλεῦσαι +ἐπ’ +αὐτοὺς +ἀγάγετε +ὧδε +καὶ +κατασφάξατε +αὐτοὺς +ἔμπροσθέν +μου. +Καὶ +εἰπὼν +ταῦτα +ἐπορεύετο +ἔμπροσθεν +ἀναβαίνων +εἰς +Ἱεροσόλυμα. +Καὶ +ἐγένετο +ὡς +ἤγγισεν +εἰς +Βηθφαγὴ +καὶ +Βηθανίαν +πρὸς +τὸ +ὄρος +τὸ +καλούμενον +Ἐλαιῶν, +ἀπέστειλεν +δύο +τῶν +μαθητῶν +λέγων +Ὑπάγετε +εἰς +τὴν +κατέναντι +κώμην, +ἐν +ᾗ +εἰσπορευόμενοι +εὑρήσετε +δεδεμένον, +πῶλον +ἐφ’ +ὃν +οὐδεὶς +ἀνθρώπων +πώποτε +ἐκάθισεν, +καὶ +λύσαντες +αὐτὸν +ἀγάγετε. +καὶ +ἐάν +τις +ὑμᾶς +ἐρωτᾷ +Διὰ +τί +λύετε; +οὕτως +ἐρεῖτε +ὅτι +Ὁ +Κύριος +αὐτοῦ +χρείαν +ἔχει. +δὲ +ἀπελθόντες +οἱ +ἀπεσταλμένοι +εὗρον +καθὼς +εἶπεν +αὐτοῖς. +δὲ +λυόντων +αὐτῶν +τὸν +πῶλον +εἶπαν +οἱ +κύριοι +αὐτοῦ +πρὸς +αὐτούς +Τί +λύετε +τὸν +πῶλον; +δὲ +οἱ +εἶπαν +ὅτι +Ὁ +Κύριος +αὐτοῦ +χρείαν +ἔχει. +καὶ +ἤγαγον +αὐτὸν +πρὸς +τὸν +Ἰησοῦν, +καὶ +ἐπιρίψαντες +αὐτῶν +τὰ +ἱμάτια +ἐπὶ +τὸν +πῶλον +ἐπεβίβασαν +τὸν +Ἰησοῦν. +δὲ +πορευομένου +αὐτοῦ +ὑπεστρώννυον +τὰ +ἱμάτια +ἑαυτῶν +ἐν +τῇ +ὁδῷ. +δὲ +ἐγγίζοντος +αὐτοῦ +ἤδη +πρὸς +τῇ +καταβάσει +τοῦ +ὄρους +τῶν +Ἐλαιῶν +ἤρξαντο +ἅπαν +τὸ +πλῆθος +τῶν +μαθητῶν +χαίροντες +αἰνεῖν +τὸν +Θεὸν +φωνῇ +μεγάλῃ +περὶ +πασῶν +ὧν +εἶδον +δυνάμεων, +λέγοντες +Εὐλογημένος +ὁ +ἐρχόμενος, +ἐν +ὀνόματι +Κυρίου· +ὁ +Βασιλεὺς +ἐν +οὐρανῷ +εἰρήνη +καὶ +δόξα +ἐν +ὑψίστοις. +καί +τινες +τῶν +Φαρισαίων +ἀπὸ +τοῦ +ὄχλου +εἶπαν +πρὸς +αὐτόν +Διδάσκαλε, +ἐπιτίμησον +τοῖς +μαθηταῖς +σου. +καὶ +ἀποκριθεὶς +εἶπεν +Λέγω +ὑμῖν +ἐὰν +οὗτοι +σιωπήσουσιν, +οἱ +λίθοι +κράξουσιν. +Καὶ +ὡς +ἤγγισεν, +ἰδὼν +τὴν +πόλιν +ἔκλαυσεν +ἐπ’ +αὐτήν, +λέγων +ὅτι +Εἰ +ἔγνως +ἐν +τῇ +ἡμέρᾳ +ταύτῃ +καὶ +σὺ +τὰ +πρὸς +εἰρήνην· +δὲ +νῦν +ἐκρύβη +ἀπὸ +ὀφθαλμῶν +σου. +ὅτι +ἥξουσιν +ἡμέραι +ἐπὶ +σὲ +καὶ +παρεμβαλοῦσιν +οἱ +ἐχθροί +σου +χάρακά +σοι +καὶ +περικυκλώσουσίν +σε +καὶ +συνέξουσίν +σε +πάντοθεν, +καὶ +ἐδαφιοῦσίν +σε +καὶ +τὰ +τέκνα +σου +ἐν +σοί, +καὶ +οὐκ +ἀφήσουσιν +λίθον +ἐπὶ +λίθον +ἐν +σοί, +ἀνθ’ +ὧν +οὐκ +ἔγνως +τὸν +καιρὸν +τῆς +ἐπισκοπῆς +σου. +Καὶ +εἰσελθὼν +εἰς +τὸ +ἱερὸν +ἤρξατο +ἐκβάλλειν +τοὺς +πωλοῦντας, +λέγων +αὐτοῖς +Γέγραπται +Καὶ +ἔσται +ὁ +οἶκός +μου +οἶκος +προσευχῆς· +δὲ +ὑμεῖς +αὐτὸν +ἐποιήσατε +σπήλαιον +λῃστῶν. +Καὶ +ἦν +διδάσκων +τὸ +καθ’ +ἡμέραν +ἐν +τῷ +ἱερῷ· +δὲ +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +ἐζήτουν +αὐτὸν +ἀπολέσαι +καὶ +οἱ +πρῶτοι +τοῦ +λαοῦ, +καὶ +οὐχ +εὕρισκον +τὸ +τί +ποιήσωσιν· +γὰρ +ὁ +λαὸς +ἅπας +ἐξεκρέμετο +αὐτοῦ +ἀκούων. +Καὶ +ἐγένετο +ἐν +μιᾷ +τῶν +ἡμερῶν +διδάσκοντος +αὐτοῦ +τὸν +λαὸν +ἐν +τῷ +ἱερῷ +καὶ +εὐαγγελιζομένου +ἐπέστησαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +σὺν +τοῖς +πρεσβυτέροις, +καὶ +εἶπαν +λέγοντες +πρὸς +αὐτόν +Εἰπὸν +ἡμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιεῖς, +ἢ +τίς +ἐστιν +ὁ +δούς +σοι +τὴν +ἐξουσίαν +ταύτην; +δὲ +ἀποκριθεὶς +εἶπεν +πρὸς +αὐτούς +Ἐρωτήσω +ὑμᾶς +κἀγὼ +λόγον, +καὶ +εἴπατέ +μοι +Τὸ +βάπτισμα +Ἰωάνου +ἐξ +οὐρανοῦ +ἦν +ἢ +ἐξ +ἀνθρώπων; +δὲ +οἱ +συνελογίσαντο +πρὸς +ἑαυτοὺς +λέγοντες +ὅτι +Ἐὰν +εἴπωμεν +Ἐξ +οὐρανοῦ, +ἐρεῖ +Διὰ +τί +οὐκ +ἐπιστεύσατε +αὐτῷ; +δὲ +ἐὰν +εἴπωμεν +Ἐξ +ἀνθρώπων, +ὁ +λαὸς +ἅπας +καταλιθάσει +ἡμᾶς· +γάρ +πεπεισμένος +ἐστιν +Ἰωάνην +προφήτην +εἶναι. +καὶ +ἀπεκρίθησαν +μὴ +εἰδέναι +πόθεν. +καὶ +ὁ +Ἰησοῦς +εἶπεν +αὐτοῖς +Οὐδὲ +ἐγὼ +λέγω +ὑμῖν +ἐν +ποίᾳ +ἐξουσίᾳ +ταῦτα +ποιῶ. +δὲ +Ἤρξατο +πρὸς +τὸν +λαὸν +λέγειν +τὴν +παραβολὴν +ταύτην. +ἄνθρωπος +ἐφύτευσεν +ἀμπελῶνα, +καὶ +ἐξέδετο +αὐτὸν +γεωργοῖς, +καὶ +ἀπεδήμησεν +χρόνους +ἱκανούς. +καὶ +καιρῷ +ἀπέστειλεν +πρὸς +τοὺς +γεωργοὺς +δοῦλον, +ἵνα +ἀπὸ +τοῦ +καρποῦ +τοῦ +ἀμπελῶνος +δώσουσιν +αὐτῷ· +δὲ +οἱ +γεωργοὶ +ἐξαπέστειλαν +αὐτὸν +δείραντες +κενόν. +καὶ +προσέθετο +ἕτερον +δοῦλον· +πέμψαι +δὲ +οἱ +κἀκεῖνον +δείραντες +καὶ +ἀτιμάσαντες +ἐξαπέστειλαν +κενόν. +καὶ +προσέθετο +τρίτον +πέμψαι· +δὲ +οἱ +καὶ +τοῦτον +τραυματίσαντες +ἐξέβαλον. +δὲ +εἶπεν +ὁ +κύριος +τοῦ +ἀμπελῶνος +Τί +ποιήσω; +πέμψω +τὸν +υἱόν +μου +τὸν +ἀγαπητόν· +ἴσως +τοῦτον +ἐντραπήσονται. +δὲ +ἰδόντες +αὐτὸν +οἱ +γεωργοὶ +διελογίζοντο +πρὸς +ἀλλήλους +λέγοντες +Οὗτός +ἐστιν +ὁ +κληρονόμος· +ἀποκτείνωμεν +αὐτόν, +ἵνα +ἡμῶν +γένηται +ἡ +κληρονομία. +καὶ +ἐκβαλόντες +αὐτὸν +ἔξω +τοῦ +ἀμπελῶνος +ἀπέκτειναν. +οὖν +τί +ποιήσει +αὐτοῖς +ὁ +κύριος +τοῦ +ἀμπελῶνος; +ἐλεύσεται +καὶ +ἀπολέσει +τοὺς +γεωργοὺς +τούτους, +καὶ +δώσει +τὸν +ἀμπελῶνα +ἄλλοις. +δὲ +ἀκούσαντες +εἶπαν +Μὴ +γένοιτο. +δὲ +ὁ +ἐμβλέψας +αὐτοῖς +εἶπεν +οὖν +Τί +ἐστιν +τὸ +γεγραμμένον +τοῦτο +Λίθον +ὃν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες, +οὗτος +ἐγενήθη +εἰς +κεφαλὴν +γωνίας; +πᾶς +ὁ +πεσὼν +ἐπ’ +ἐκεῖνον +τὸν +λίθον +συνθλασθήσεται· +δ’ +ἂν +ἐφ’ +ὃν +πέσῃ, +λικμήσει +αὐτόν. +Καὶ +ἐζήτησαν +οἱ +γραμματεῖς +καὶ +οἱ +ἀρχιερεῖς +ἐπιβαλεῖν +ἐπ’ +αὐτὸν +τὰς +χεῖρας +ἐν +αὐτῇ +τῇ +ὥρᾳ, +καὶ +ἐφοβήθησαν +τὸν +λαόν· +γὰρ +ἔγνωσαν +ὅτι +πρὸς +αὐτοὺς +εἶπεν +τὴν +παραβολὴν +ταύτην. +Καὶ +παρατηρήσαντες +ἀπέστειλαν +ἐνκαθέτους +ὑποκρινομένους +ἑαυτοὺς +δικαίους +εἶναι, +ἵνα +ἐπιλάβωνται +αὐτοῦ +λόγου, +ὥστε +παραδοῦναι +αὐτὸν +τῇ +ἀρχῇ +καὶ +τῇ +ἐξουσίᾳ +τοῦ +ἡγεμόνος. +καὶ +ἐπηρώτησαν +αὐτὸν +λέγοντες +Διδάσκαλε, +οἴδαμεν +ὅτι +ὀρθῶς +λέγεις +καὶ +διδάσκεις +καὶ +οὐ +λαμβάνεις +πρόσωπον, +ἀλλ’ +ἐπ’ +ἀληθείας +τὴν +ὁδὸν +τοῦ +Θεοῦ +διδάσκεις· +ἔξεστιν +ἡμᾶς +Καίσαρι +φόρον +δοῦναι +ἢ +οὔ; +δὲ +κατανοήσας +αὐτῶν +τὴν +πανουργίαν +εἶπεν +πρὸς +αὐτούς +Δείξατέ +μοι +δηνάριον· +ἔχει +τίνος +εἰκόνα +καὶ +ἐπιγραφήν; +δὲ +οἱ +εἶπαν +Καίσαρος. +δὲ +ὁ +εἶπεν +πρὸς +αὐτούς +Τοίνυν +ἀπόδοτε +τὰ +Καίσαρος +Καίσαρι +καὶ +τὰ +τοῦ +Θεοῦ +τῷ +Θεῷ. +καὶ +οὐκ +ἴσχυσαν +ἐπιλαβέσθαι +αὐτοῦ +ῥήματος +ἐναντίον +τοῦ +λαοῦ, +καὶ +θαυμάσαντες +ἐπὶ +τῇ +ἀποκρίσει +αὐτοῦ +ἐσίγησαν. +δέ +Προσελθόντες +τινες +τῶν +Σαδδουκαίων, +οἱ +ἀντιλέγοντες +ἀνάστασιν +μὴ +εἶναι, +ἐπηρώτησαν +αὐτὸν +λέγοντες +Διδάσκαλε, +Μωϋσῆς +ἔγραψεν +ἡμῖν, +ἐάν +τινος +ἀδελφὸς +ἀποθάνῃ +ἔχων +γυναῖκα, +καὶ +οὗτος +ἄτεκνος +ᾖ, +ἵνα +λάβῃ +ὁ +ἀδελφὸς +αὐτοῦ +τὴν +γυναῖκα +καὶ +ἐξαναστήσῃ +σπέρμα +τῷ +ἀδελφῷ +αὐτοῦ. +οὖν +ἑπτὰ +ἀδελφοὶ +ἦσαν· +καὶ +ὁ +πρῶτος +λαβὼν +γυναῖκα +ἀπέθανεν +ἄτεκνος· +καὶ +ὁ +δεύτερος +καὶ +ὁ +τρίτος +ἔλαβεν +αὐτήν, +δὲ +ὡσαύτως +καὶ +οἱ +ἑπτὰ +οὐ +κατέλιπον +τέκνα +καὶ +ἀπέθανον. +ὕστερον +καὶ +ἡ +γυνὴ +ἀπέθανεν. +οὖν +ἡ +γυνὴ +ἐν +τῇ +ἀναστάσει +τίνος +αὐτῶν +γυνή; +γίνεται +γὰρ +οἱ +ἑπτὰ +ἔσχον +αὐτὴν +γυναῖκα. +καὶ +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Οἱ +υἱοὶ +τοῦ +αἰῶνος +τούτου +γαμοῦσιν +καὶ +γαμίσκονται, +δὲ +οἱ +καταξιωθέντες +τοῦ +αἰῶνος +ἐκείνου +τυχεῖν +καὶ +τῆς +ἀναστάσεως +τῆς +ἐκ +νεκρῶν +οὔτε +γαμοῦσιν +οὔτε +γαμίζονται· +γὰρ +οὐδὲ +ἀποθανεῖν +ἔτι +δύνανται, +γάρ +ἰσάγγελοι +εἰσιν, +καὶ +υἱοί +Θεοῦ +εἰσιν +τῆς +ἀναστάσεως +υἱοὶ +ὄντες. +δὲ +ὅτι +ἐγείρονται +οἱ +νεκροὶ, +καὶ +Μωϋσῆς +ἐμήνυσεν +ἐπὶ +τῆς +Βάτου, +ὡς +λέγει +Κύριον +τὸν +Θεὸν +Ἀβραὰμ +καὶ +Θεὸν +Ἰσαὰκ +καὶ +Θεὸν +Ἰακώβ· +δὲ +Θεὸς +οὐκ +ἔστιν +νεκρῶν +ἀλλὰ +ζώντων· +γὰρ +πάντες +αὐτῷ +ζῶσιν. +δέ +ἀποκριθέντες +τινες +τῶν +γραμματέων +εἶπαν +Διδάσκαλε, +καλῶς +εἶπας. +γὰρ +οὐκέτι +ἐτόλμων +ἐπερωτᾶν +αὐτὸν +οὐδέν. +δὲ +Εἶπεν +πρὸς +αὐτούς +Πῶς +λέγουσιν +τὸν +Χριστὸν +εἶναι +Δαυεὶδ +υἱόν; +γὰρ +αὐτὸς +Δαυεὶδ +λέγει +ἐν +βίβλῳ +ψαλμῶν +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἂν +θῶ +τοὺς +ἐχθρούς +σου +ὑποπόδιον +τῶν +ποδῶν +σου. +οὖν +Δαυεὶδ +αὐτὸν +Κύριον +καλεῖ, +καὶ +πῶς +αὐτοῦ +υἱός +ἐστιν; +δὲ +Ἀκούοντος +παντὸς +τοῦ +λαοῦ +εἶπεν +τοῖς +μαθηταῖς +Προσέχετε +ἀπὸ +τῶν +γραμματέων +τῶν +θελόντων +περιπατεῖν +ἐν +στολαῖς +καὶ +φιλούντων +ἀσπασμοὺς +ἐν +ταῖς +ἀγοραῖς +καὶ +πρωτοκαθεδρίας +ἐν +ταῖς +συναγωγαῖς +καὶ +πρωτοκλισίας +ἐν +τοῖς +δείπνοις, +οἳ +κατεσθίουσιν +τὰς +οἰκίας +τῶν +χηρῶν +καὶ +προφάσει +μακρὰ +προσεύχονται· +οὗτοι +λήμψονται +περισσότερον +κρίμα. +δὲ +Ἀναβλέψας +εἶδεν +τοὺς +βάλλοντας +εἰς +τὸ +γαζοφυλάκιον +τὰ +δῶρα +αὐτῶν +πλουσίους. +δέ +εἶδεν +τινα +χήραν +πενιχρὰν +βάλλουσαν +ἐκεῖ +λεπτὰ +δύο, +καὶ +εἶπεν +Ἀληθῶς +λέγω +ὑμῖν +ὅτι +ἡ +χήρα +αὕτη +ἡ +πτωχὴ +πλεῖον +πάντων +ἔβαλεν· +γὰρ +πάντες +οὗτοι +ἐκ +τοῦ +περισσεύοντος +αὐτοῖς +ἔβαλον +εἰς +τὰ +δῶρα, +δὲ +αὕτη +ἐκ +τοῦ +ὑστερήματος +αὐτῆς +πάντα +τὸν +βίον +ὃν +εἶχεν +ἔβαλεν. +Καί +τινων +λεγόντων +περὶ +τοῦ +ἱεροῦ, +ὅτι +λίθοις +καλοῖς +καὶ +ἀναθήμασιν +κεκόσμηται, +εἶπεν +Ταῦτα +ἃ +θεωρεῖτε, +ἐλεύσονται +ἡμέραι +ἐν +αἷς +οὐκ +ἀφεθήσεται +ἐπὶ +λίθῳ +λίθος +ὃς +οὐ +καταλυθήσεται. +δὲ +ἐπηρώτησαν +αὐτὸν +λέγοντες +Διδάσκαλε, +οὖν +πότε +ταῦτα +ἔσται, +καὶ +τί +τὸ +σημεῖον +ὅταν +μέλλῃ +ταῦτα +γίνεσθαι; +δὲ +ὁ +εἶπεν +Βλέπετε +μὴ +πλανηθῆτε· +γὰρ +πολλοὶ +ἐλεύσονται +ἐπὶ +τῷ +ὀνόματί +μου +λέγοντες +Ἐγώ +εἰμι, +καί +Ὁ +καιρὸς +ἤγγικεν· +μὴ +πορευθῆτε +ὀπίσω +αὐτῶν. +δὲ +ὅταν +ἀκούσητε +πολέμους +καὶ +ἀκαταστασίας, +μὴ +πτοηθῆτε· +γὰρ +δεῖ +ταῦτα +γενέσθαι +πρῶτον, +ἀλλ’ +οὐκ +εὐθέως +τὸ +τέλος. +Τότε +ἔλεγεν +αὐτοῖς +Ἐγερθήσεται +ἔθνος +ἐπ’ +ἔθνος +καὶ +βασιλεία +ἐπὶ +βασιλείαν, +τε +σεισμοί +μεγάλοι +καὶ +κατὰ +τόπους +λοιμοὶ +καὶ +λιμοὶ +ἔσονται, +τε +φόβητρά +καὶ +ἀπ’ +οὐρανοῦ +σημεῖα +μεγάλα +ἔσται. +δὲ +πρὸ +τούτων +πάντων +ἐπιβαλοῦσιν +ἐφ’ +ὑμᾶς +τὰς +χεῖρας +αὐτῶν +καὶ +διώξουσιν, +παραδιδόντες +εἰς +τὰς +συναγωγὰς +καὶ +φυλακάς, +ἀπαγομένους +ἐπὶ +βασιλεῖς +καὶ +ἡγεμόνας +ἕνεκεν +τοῦ +ὀνόματός +μου· +ἀποβήσεται +ὑμῖν +εἰς +μαρτύριον. +οὖν +θέτε +ἐν +ταῖς +καρδίαις +ὑμῶν +μὴ +προμελετᾶν +ἀπολογηθῆναι· +γὰρ +ἐγὼ +δώσω +ὑμῖν +στόμα +καὶ +σοφίαν, +ᾗ +οὐ +δυνήσονται +ἀντιστῆναι +ἢ +ἀντειπεῖν +ἅπαντες +οἱ +ἀντικείμενοι +ὑμῖν. +δὲ +παραδοθήσεσθε +καὶ +ὑπὸ +γονέων +καὶ +ἀδελφῶν +καὶ +συγγενῶν +καὶ +φίλων, +καὶ +θανατώσουσιν +ἐξ +ὑμῶν, +καὶ +ἔσεσθε +μισούμενοι +ὑπὸ +πάντων +διὰ +τὸ +ὄνομά +μου. +καὶ +θρὶξ +ἐκ +τῆς +κεφαλῆς +ὑμῶν +οὐ +μὴ +ἀπόληται· +ἐν +τῇ +ὑπομονῇ +ὑμῶν +κτήσεσθε +τὰς +ψυχὰς +ὑμῶν. +δὲ +Ὅταν +ἴδητε +κυκλουμένην +ὑπὸ +στρατοπέδων +Ἱερουσαλήμ, +τότε +γνῶτε +ὅτι +ἤγγικεν +ἡ +ἐρήμωσις +αὐτῆς. +τότε +οἱ +ἐν +τῇ +Ἰουδαίᾳ +φευγέτωσαν +εἰς +τὰ +ὄρη, +καὶ +οἱ +ἐν +μέσῳ +αὐτῆς +ἐκχωρείτωσαν, +καὶ +οἱ +ἐν +ταῖς +χώραις +μὴ +εἰσερχέσθωσαν +εἰς +αὐτήν, +ὅτι +ἡμέραι +ἐκδικήσεως +αὗταί +εἰσιν +τοῦ +πλησθῆναι +πάντα +τὰ +γεγραμμένα. +οὐαὶ +ταῖς +ἐν +γαστρὶ +ἐχούσαις +καὶ +ταῖς +θηλαζούσαις +ἐν +ἐκείναις +ταῖς +ἡμέραις· +γὰρ +ἔσται +ἀνάγκη +μεγάλη +ἐπὶ +τῆς +γῆς +καὶ +ὀργὴ +τῷ +λαῷ +τούτῳ, +καὶ +πεσοῦνται +στόματι +μαχαίρης +καὶ +αἰχμαλωτισθήσονται +εἰς +τὰ +ἔθνη +πάντα, +καὶ +Ἱερουσαλὴμ +ἔσται +πατουμένη +ὑπὸ +ἐθνῶν, +ἄχρι +οὗ +πληρωθῶσιν +καιροὶ +ἐθνῶν. +Καὶ +ἔσονται +σημεῖα +ἐν +ἡλίῳ +καὶ +σελήνῃ +καὶ +ἄστροις, +καὶ +ἐπὶ +τῆς +γῆς +συνοχὴ +ἐθνῶν +ἐν +ἀπορίᾳ +ἤχους +θαλάσσης +καὶ +σάλου, +ἀποψυχόντων +ἀνθρώπων +ἀπὸ +φόβου +καὶ +προσδοκίας +τῶν +ἐπερχομένων +τῇ +οἰκουμένῃ· +γὰρ +αἱ +δυνάμεις +τῶν +οὐρανῶν +σαλευθήσονται. +καὶ +τότε +ὄψονται +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἐρχόμενον +ἐν +νεφέλῃ +μετὰ +δυνάμεως +καὶ +δόξης +πολλῆς. +δὲ +ἀρχομένων +τούτων +γίνεσθαι +ἀνακύψατε +καὶ +ἐπάρατε +τὰς +κεφαλὰς +ὑμῶν, +διότι +ἐγγίζει +ἡ +ἀπολύτρωσις +ὑμῶν. +Καὶ +εἶπεν +παραβολὴν +αὐτοῖς +Ἴδετε +τὴν +συκῆν +καὶ +πάντα +τὰ +δένδρα· +ὅταν +προβάλωσιν +ἤδη, +βλέποντες +ἀφ’ +ἑαυτῶν +γινώσκετε +ὅτι +ἤδη +ἐγγὺς +τὸ +θέρος +ἐστίν· +οὕτως +καὶ +ὑμεῖς, +ὅταν +ἴδητε +ταῦτα +γινόμενα, +γινώσκετε +ὅτι +ἐγγύς +ἐστιν +ἡ +βασιλεία +τοῦ +Θεοῦ. +ἀμὴν +λέγω +ὑμῖν +ὅτι +οὐ +μὴ +παρέλθῃ +ἡ +γενεὰ +αὕτη +ἕως +ἂν +πάντα +γένηται. +ὁ +οὐρανὸς +καὶ +ἡ +γῆ +παρελεύσονται, +δὲ +οἱ +λόγοι +μου +οὐ +μὴ +παρελεύσονται. +δὲ +Προσέχετε +ἑαυτοῖς +μή +ποτε +βαρηθῶσιν +ὑμῶν +αἱ +καρδίαι +ἐν +κραιπάλῃ +καὶ +μέθῃ +καὶ +μερίμναις +βιωτικαῖς, +καὶ +ἐπιστῇ +ἐφ’ +ὑμᾶς +αἰφνίδιος +ἡ +ἡμέρα +ἐκείνη +ὡς +παγίς· +γὰρ +ἐπεισελεύσεται +ἐπὶ +πάντας +τοὺς +καθημένους +ἐπὶ +πρόσωπον +πάσης +τῆς +γῆς. +δὲ +ἀγρυπνεῖτε +ἐν +παντὶ +καιρῷ +δεόμενοι +ἵνα +κατισχύσητε +ἐκφυγεῖν +ταῦτα +πάντα +τὰ +μέλλοντα +γίνεσθαι, +καὶ +σταθῆναι +ἔμπροσθεν +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου. +δὲ +Ἦν +διδάσκων, +τὰς +ἡμέρας +ἐν +τῷ +ἱερῷ +δὲ +τὰς +νύκτας +ἐξερχόμενος +ηὐλίζετο +εἰς +τὸ +ὄρος +τὸ +καλούμενον +Ἐλαιῶν. +καὶ +πᾶς +ὁ +λαὸς +ὤρθριζεν +πρὸς +αὐτὸν +ἐν +τῷ +ἱερῷ +ἀκούειν +αὐτοῦ. +δὲ +Ἤγγιζεν +ἡ +ἑορτὴ +τῶν +ἀζύμων +ἡ +λεγομένη +Πάσχα. +καὶ +ἐζήτουν +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +τὸ +πῶς +ἀνέλωσιν +αὐτόν· +γὰρ +ἐφοβοῦντο +τὸν +λαόν. +δὲ +Εἰσῆλθεν +Σατανᾶς +εἰς +Ἰούδαν +τὸν +καλούμενον +Ἰσκαριώτην, +ὄντα +ἐκ +τοῦ +ἀριθμοῦ +τῶν +δώδεκα· +καὶ +ἀπελθὼν +συνελάλησεν +τοῖς +ἀρχιερεῦσιν +καὶ +στρατηγοῖς +τὸ +πῶς +αὐτοῖς +παραδῷ +αὐτόν. +καὶ +ἐχάρησαν, +καὶ +συνέθεντο +αὐτῷ +ἀργύριον +δοῦναι. +καὶ +ἐξωμολόγησεν, +καὶ +ἐζήτει +εὐκαιρίαν +τοῦ +παραδοῦναι +αὐτὸν +ἄτερ +ὄχλου +αὐτοῖς. +δὲ +Ἦλθεν +ἡ +ἡμέρα +τῶν +ἀζύμων, +ᾗ +ἔδει +θύεσθαι +τὸ +πάσχα· +καὶ +ἀπέστειλεν +Πέτρον +καὶ +Ἰωάνην +εἰπών +Πορευθέντες +ἑτοιμάσατε +ἡμῖν +τὸ +πάσχα, +ἵνα +φάγωμεν. +δὲ +οἱ +εἶπαν +αὐτῷ +θέλεις +Ποῦ +ἑτοιμάσωμεν; +δὲ +ὁ +εἶπεν +αὐτοῖς +Ἰδοὺ +εἰσελθόντων +ὑμῶν +εἰς +τὴν +πόλιν +συναντήσει +ὑμῖν +ἄνθρωπος +κεράμιον +ὕδατος +βαστάζων· +ἀκολουθήσατε +αὐτῷ +εἰς +τὴν +οἰκίαν +εἰς +ἣν +εἰσπορεύεται· +καὶ +ἐρεῖτε +τῷ +οἰκοδεσπότῃ +τῆς +οἰκίας +Λέγει +σοι +ὁ +Διδάσκαλος +Ποῦ +ἐστιν +τὸ +κατάλυμα +ὅπου +τὸ +πάσχα +μετὰ +τῶν +μαθητῶν +μου +φάγω; +κἀκεῖνος +ὑμῖν +δείξει +ἀνάγαιον +μέγα +ἐστρωμένον· +ἐκεῖ +ἑτοιμάσατε. +δὲ +ἀπελθόντες +εὗρον +καθὼς +εἰρήκει +αὐτοῖς, +καὶ +ἡτοίμασαν +τὸ +πάσχα. +Καὶ +ὅτε +ἐγένετο +ἡ +ὥρα, +ἀνέπεσεν, +καὶ +οἱ +ἀπόστολοι +σὺν +αὐτῷ. +καὶ +εἶπεν +πρὸς +αὐτούς +Ἐπιθυμίᾳ +ἐπεθύμησα +τοῦτο +τὸ +πάσχα +φαγεῖν +μεθ’ +ὑμῶν +πρὸ +τοῦ +με +παθεῖν· +γὰρ +λέγω +ὑμῖν +ὅτι +οὐκέτι +οὐ +μὴ +φάγω +αὐτὸ +ἕως +ὅτου +πληρωθῇ +ἐν +τῇ +βασιλείᾳ +τοῦ +Θεοῦ. +καὶ +δεξάμενος +ποτήριον +εὐχαριστήσας +εἶπεν +Λάβετε +τοῦτο +καὶ +διαμερίσατε +εἰς +ἑαυτούς· +γὰρ +λέγω +ὑμῖν, +οὐ +μὴ +πίω +ἀπὸ +τοῦ +νῦν +ἀπὸ +τοῦ +γενήματος +τῆς +ἀμπέλου +ἕως +οὗ +ἡ +βασιλεία +τοῦ +Θεοῦ +ἔλθῃ. +καὶ +λαβὼν +ἄρτον +εὐχαριστήσας +ἔκλασεν +καὶ +ἔδωκεν +αὐτοῖς +λέγων +Τοῦτό +ἐστιν +τὸ +σῶμά +μου +τὸ +ὑπὲρ +ὑμῶν +διδόμενον· +τοῦτο +ποιεῖτε +εἰς +τὴν +ἐμὴν +ἀνάμνησιν. +καὶ +τὸ +ποτήριον +ὡσαύτως +μετὰ +τὸ +δειπνῆσαι, +λέγων +ἡ +καινὴ +διαθήκη +ἐν +τῷ +αἵματί +μου, +Τοῦτο +τὸ +ποτήριον +τὸ +ὑπὲρ +ὑμῶν +ἐκχυννόμενον. +πλὴν +ἰδοὺ +ἡ +χεὶρ +τοῦ +παραδιδόντος +με +μετ’ +ἐμοῦ +ἐπὶ +τῆς +τραπέζης. +ὅτι +μὲν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +κατὰ +τὸ +ὡρισμένον +πορεύεται, +πλὴν +οὐαὶ +τῷ +ἀνθρώπῳ +ἐκείνῳ +δι’ +οὗ +παραδίδοται. +καὶ +αὐτοὶ +ἤρξαντο +συνζητεῖν +πρὸς +ἑαυτοὺς +τὸ +ἄρα +τίς +εἴη +ἐξ +αὐτῶν +ὁ +τοῦτο +πράσσειν. +μέλλων +δὲ +Ἐγένετο +ἐν +αὐτοῖς, +καὶ +φιλονεικία +τὸ +τίς +αὐτῶν +δοκεῖ +εἶναι +μείζων. +δὲ +ὁ +εἶπεν +αὐτοῖς +Οἱ +βασιλεῖς +τῶν +ἐθνῶν +κυριεύουσιν +αὐτῶν, +καὶ +οἱ +ἐξουσιάζοντες +αὐτῶν +εὐεργέται +καλοῦνται. +δὲ +ὑμεῖς +οὐχ +οὕτως, +ἀλλ’ +ὁ +μείζων +ἐν +ὑμῖν +γινέσθω +ὡς +ὁ +νεώτερος, +καὶ +ὁ +ἡγούμενος +ὡς +ὁ +διακονῶν. +γὰρ +τίς +μείζων, +ὁ +ἀνακείμενος +ἢ +ὁ +διακονῶν; +οὐχὶ +ὁ +ἀνακείμενος; +δὲ +ἐγὼ +ἐν +μέσῳ +ὑμῶν +εἰμι +ὡς +ὁ +διακονῶν. +δέ +ὑμεῖς +ἐστε +οἱ +διαμεμενηκότες +μετ’ +ἐμοῦ +ἐν +τοῖς +πειρασμοῖς +μου· +κἀγὼ +διατίθεμαι +ὑμῖν, +καθὼς +διέθετό +μοι +ὁ +Πατήρ +μου +βασιλείαν, +ἵνα +ἔσθητε +καὶ +πίνητε +ἐπὶ +τῆς +τραπέζης +μου +ἐν +τῇ +βασιλείᾳ +μου, +καὶ +καθήσεσθε +ἐπὶ +θρόνων +τὰς +δώδεκα +φυλὰς +τοῦ +Ἰσραήλ. +κρίνοντες +Σίμων +Σίμων, +ἰδοὺ +ὁ +Σατανᾶς +ἐξῃτήσατο +ὑμᾶς +τοῦ +σινιάσαι +ὡς +τὸν +σῖτον· +δὲ +ἐγὼ +ἐδεήθην +περὶ +σοῦ +ἵνα +μὴ +ἐκλίπῃ +ἡ +πίστις +σου· +καὶ +σύ +ποτε +ἐπιστρέψας +στήρισον +τοὺς +ἀδελφούς +σου. +δὲ +ὁ +εἶπεν +αὐτῷ +Κύριε, +μετὰ +σοῦ +ἕτοιμός +εἰμι +καὶ +εἰς +φυλακὴν +καὶ +εἰς +θάνατον +πορεύεσθαι. +δὲ +ὁ +εἶπεν +Λέγω +σοι, +Πέτρε, +οὐ +φωνήσει +σήμερον +ἀλέκτωρ +ἕως +τρίς +με +μὴ +εἰδέναι. +ἀπαρνήσῃ +Καὶ +εἶπεν +αὐτοῖς +Ὅτε +ἀπέστειλα +ὑμᾶς +ἄτερ +βαλλαντίου +καὶ +πήρας +καὶ +ὑποδημάτων, +μή +τινος +ὑστερήσατε; +δὲ +οἱ +εἶπαν +Οὐθενός. +δὲ +εἶπεν +αὐτοῖς +Ἀλλὰ +νῦν +ὁ +ἔχων +βαλλάντιον +ἀράτω, +ὁμοίως +καὶ +πήραν, +καὶ +ὁ +μὴ +ἔχων +πωλησάτω +τὸ +ἱμάτιον +αὐτοῦ +καὶ +ἀγορασάτω +μάχαιραν. +γὰρ +λέγω +ὑμῖν +ὅτι +δεῖ +τοῦτο +τὸ +γεγραμμένον +τό +Καὶ +μετὰ +ἀνόμων +ἐλογίσθη· +τελεσθῆναι +ἐν +ἐμοί, +γὰρ +καὶ +τὸ +περὶ +ἐμοῦ +τέλος +ἔχει. +δὲ +οἱ +εἶπαν +Κύριε, +ἰδοὺ +μάχαιραι +ὧδε +δύο. +δὲ +ὁ +εἶπεν +αὐτοῖς +Ἱκανόν +ἐστιν. +Καὶ +ἐξελθὼν +ἐπορεύθη +κατὰ +τὸ +ἔθος +εἰς +τὸ +ὄρος +τῶν +Ἐλαιῶν· +δὲ +ἠκολούθησαν +αὐτῷ +καὶ +οἱ +μαθηταί. +δὲ +γενόμενος +ἐπὶ +τοῦ +τόπου +εἶπεν +αὐτοῖς +Προσεύχεσθε +μὴ +εἰσελθεῖν +εἰς +πειρασμόν. +καὶ +αὐτὸς +ἀπεσπάσθη +ἀπ’ +αὐτῶν +ὡσεὶ +λίθου +βολήν, +καὶ +θεὶς +τὰ +γόνατα +προσηύχετο +λέγων +Πάτερ, +εἰ +βούλει +παρένεγκε +τοῦτο +τὸ +ποτήριον +ἀπ’ +ἐμοῦ· +πλὴν +μὴ +τὸ +θέλημά +μου +ἀλλὰ +τὸ +σὸν +γινέσθω. +δὲ +ὤφθη +αὐτῷ +ἄγγελος +ἀπ’ +οὐρανοῦ +ἐνισχύων +αὐτόν. +καὶ +γενόμενος +ἐν +ἀγωνίᾳ +ἐκτενέστερον +προσηύχετο· +καὶ +ἐγένετο +ὁ +ἱδρὼς +αὐτοῦ +ὡσεὶ +θρόμβοι +αἵματος +καταβαίνοντες +ἐπὶ +τὴν +γῆν. +καὶ +ἀναστὰς +ἀπὸ +τῆς +προσευχῆς, +ἐλθὼν +πρὸς +τοὺς +μαθητὰς +εὗρεν +κοιμωμένους +αὐτοὺς +ἀπὸ +τῆς +λύπης, +καὶ +εἶπεν +αὐτοῖς +Τί +καθεύδετε; +ἀναστάντες +προσεύχεσθε, +ἵνα +μὴ +εἰσέλθητε +εἰς +πειρασμόν. +Ἔτι +αὐτοῦ +λαλοῦντος +ἰδοὺ +ὄχλος, +καὶ +ὁ +λεγόμενος +Ἰούδας +εἷς +τῶν +δώδεκα +προήρχετο +αὐτούς, +καὶ +ἤγγισεν +τῷ +Ἰησοῦ +φιλῆσαι +αὐτόν. +δὲ +Ἰησοῦς +εἶπεν +αὐτῷ +Ἰούδα, +φιλήματι +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +παραδίδως; +δὲ +οἱ +περὶ +αὐτὸν +ἰδόντες +τὸ +ἐσόμενον +εἶπαν +Κύριε, +εἰ +πατάξομεν +ἐν +μαχαίρῃ; +καὶ +ἐπάταξεν +εἷς +τις +ἐξ +αὐτῶν +τοῦ +ἀρχιερέως +τὸν +δοῦλον +καὶ +ἀφεῖλεν +τὸ +οὖς +αὐτοῦ +τὸ +δεξιόν. +δὲ +ἀποκριθεὶς +ὁ +Ἰησοῦς +εἶπεν +Ἐᾶτε +ἕως +τούτου· +καὶ +ἁψάμενος +τοῦ +ὠτίου +ἰάσατο +αὐτόν. +δὲ +Εἶπεν +Ἰησοῦς +πρὸς +τοὺς +παραγενομένους +ἐπ’ +αὐτὸν +ἀρχιερεῖς +καὶ +στρατηγοὺς +τοῦ +ἱεροῦ +καὶ +πρεσβυτέρους +Ὡς +ἐπὶ +λῃστὴν +ἐξήλθατε +μετὰ +μαχαιρῶν +καὶ +ξύλων; +καθ’ +ἡμέραν +ὄντος +μου +μεθ’ +ὑμῶν +ἐν +τῷ +ἱερῷ +οὐκ +ἐξετείνατε +τὰς +χεῖρας +ἐπ’ +ἐμέ· +ἀλλ’ +αὕτη +ἐστὶν +ὑμῶν +ἡ +ὥρα +καὶ +ἡ +ἐξουσία +τοῦ +σκότους. +δὲ +Συλλαβόντες +αὐτὸν +ἤγαγον +καὶ +εἰσήγαγον +εἰς +τὴν +οἰκίαν +τοῦ +ἀρχιερέως· +δὲ +ὁ +Πέτρος +ἠκολούθει +μακρόθεν. +δὲ +περιαψάντων +πῦρ +ἐν +μέσῳ +τῆς +αὐλῆς +καὶ +συνκαθισάντων +ἐκάθητο +ὁ +Πέτρος +μέσος +αὐτῶν. +δὲ +παιδίσκη +τις +ἰδοῦσα +αὐτὸν +καθήμενον +πρὸς +τὸ +φῶς +καὶ +ἀτενίσασα +αὐτῷ +εἶπεν +Καὶ +οὗτος +σὺν +αὐτῷ +ἦν. +δὲ +ὁ +ἠρνήσατο +λέγων +Οὐκ +οἶδα +αὐτόν, +γύναι. +καὶ +μετὰ +βραχὺ +ἕτερος +ἰδὼν +αὐτὸν +ἔφη +Καὶ +σὺ +ἐξ +αὐτῶν +εἶ. +δὲ +ὁ +Πέτρος +ἔφη +Ἄνθρωπε, +οὐκ +εἰμί. +καὶ +διαστάσης +ὡσεὶ +ὥρας +μιᾶς +ἄλλος +τις +διϊσχυρίζετο +λέγων +Ἐπ’ +ἀληθείας +καὶ +οὗτος +μετ’ +αὐτοῦ +ἦν, +γὰρ +καὶ +Γαλιλαῖός +ἐστιν. +δὲ +εἶπεν +ὁ +Πέτρος +Ἄνθρωπε, +οὐκ +οἶδα +ὃ +λέγεις. +καὶ +παραχρῆμα +ἔτι +λαλοῦντος +αὐτοῦ +ἐφώνησεν +ἀλέκτωρ. +καὶ +στραφεὶς +ὁ +Κύριος +ἐνέβλεψεν +τῷ +Πέτρῳ, +καὶ +ὑπεμνήσθη +ὁ +Πέτρος +τοῦ +λόγου +τοῦ +Κυρίου, +ὡς +εἶπεν +αὐτῷ +ὅτι +Πρὶν +ἀλέκτορα +φωνῆσαι +σήμερον +ἀπαρνήσῃ +με +τρίς. +καὶ +ἐξελθὼν +ἔξω +ἔκλαυσεν +πικρῶς. +Καὶ +οἱ +ἄνδρες +οἱ +συνέχοντες +αὐτὸν +ἐνέπαιζον +αὐτῷ +δέροντες, +καὶ +περικαλύψαντες +αὐτὸν +ἐπηρώτων +λέγοντες +Προφήτευσον, +τίς +ἐστιν +ὁ +παίσας +σε; +καὶ +ἕτερα +πολλὰ +ἔλεγον +βλασφημοῦντες +εἰς +αὐτόν. +Καὶ +ὡς +ἐγένετο +ἡμέρα, +συνήχθη +τὸ +πρεσβυτέριον +τοῦ +λαοῦ, +τε +ἀρχιερεῖς +καὶ +γραμματεῖς, +καὶ +ἀπήγαγον +αὐτὸν +εἰς +τὸ +συνέδριον +αὐτῶν, +λέγοντες +Εἰ +σὺ +εἶ +ὁ +Χριστός, +εἰπὸν +ἡμῖν. +δὲ +εἶπεν +αὐτοῖς +Ἐὰν +ὑμῖν +εἴπω, +οὐ +μὴ +πιστεύσητε· +δὲ +ἐὰν +ἐρωτήσω, +οὐ +μὴ +ἀποκριθῆτε. +δὲ +ἀπὸ +τοῦ +νῦν +ἔσται +καθήμενος +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ἐκ +δεξιῶν +τῆς +δυνάμεως +τοῦ +Θεοῦ. +δὲ +εἶπαν +πάντες +οὖν +Σὺ +εἶ +ὁ +Υἱὸς +τοῦ +Θεοῦ; +δὲ +ὁ +πρὸς +αὐτοὺς +ἔφη +Ὑμεῖς +λέγετε +ὅτι +ἐγώ +εἰμι. +δὲ +οἱ +εἶπαν +Τί +ἔτι +ἔχομεν +μαρτυρίας +χρείαν; +γὰρ +αὐτοὶ +ἠκούσαμεν +ἀπὸ +τοῦ +στόματος +αὐτοῦ. +Καὶ +ἀναστὰν +ἅπαν +τὸ +πλῆθος +αὐτῶν +ἤγαγον +αὐτὸν +ἐπὶ +τὸν +Πειλᾶτον. +δὲ +ἤρξαντο +κατηγορεῖν +αὐτοῦ +λέγοντες +εὕραμεν +Τοῦτον +διαστρέφοντα +τὸ +ἔθνος +ἡμῶν +καὶ +κωλύοντα +φόρους +Καίσαρι +διδόναι, +καὶ +λέγοντα +ἑαυτὸν +Χριστὸν +βασιλέα +εἶναι. +δὲ +ὁ +Πειλᾶτος +ἠρώτησεν +αὐτὸν +λέγων +Σὺ +εἶ +ὁ +Βασιλεὺς +τῶν +Ἰουδαίων; +δὲ +ὁ +ἀποκριθεὶς +αὐτῷ +ἔφη +Σὺ +λέγεις. +δὲ +ὁ +Πειλᾶτος +εἶπεν +πρὸς +τοὺς +ἀρχιερεῖς +καὶ +τοὺς +ὄχλους +Οὐδὲν +εὑρίσκω +αἴτιον +ἐν +τῷ +ἀνθρώπῳ +τούτῳ. +δὲ +οἱ +ἐπίσχυον +λέγοντες +ὅτι +Ἀνασείει +τὸν +λαὸν, +διδάσκων +καθ’ +ὅλης +τῆς +Ἰουδαίας, +καὶ +ἀρξάμενος +ἀπὸ +τῆς +Γαλιλαίας +ἕως +ὧδε. +δὲ +Πειλᾶτος +ἀκούσας +ἐπηρώτησεν +εἰ +ὁ +ἄνθρωπος +Γαλιλαῖός +ἐστιν, +καὶ +ἐπιγνοὺς +ὅτι +ἐκ +τῆς +ἐξουσίας +Ἠρῴδου +ἐστὶν, +ἀνέπεμψεν +αὐτὸν +πρὸς +Ἠρῴδην, +ὄντα +καὶ +αὐτὸν +ἐν +Ἱεροσολύμοις +ἐν +ταύταις +ταῖς +ἡμέραις. +δὲ +ὁ +Ἠρῴδης +ἰδὼν +τὸν +Ἰησοῦν +ἐχάρη +λίαν· +γὰρ +ἦν +θέλων +ἐξ +ἱκανῶν +χρόνων +ἰδεῖν +αὐτὸν +διὰ +τὸ +ἀκούειν +περὶ +αὐτοῦ, +καὶ +ἤλπιζέν +ἰδεῖν +τι +σημεῖον +ὑπ’ +αὐτοῦ +γινόμενον. +δὲ +ἐπηρώτα +αὐτὸν +ἐν +λόγοις +ἱκανοῖς· +δὲ +αὐτὸς +οὐδὲν +ἀπεκρίνατο +αὐτῷ. +δὲ +εἱστήκεισαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +γραμματεῖς +εὐτόνως +κατηγοροῦντες +αὐτοῦ. +δὲ +ὁ +Ἠρῴδης +ἐξουθενήσας +αὐτὸν +σὺν +τοῖς +στρατεύμασιν +αὐτοῦ +καὶ +ἐμπαίξας, +περιβαλὼν +ἐσθῆτα +λαμπρὰν +ἀνέπεμψεν +αὐτὸν +τῷ +Πειλάτῳ. +δὲ +ἐγένοντο +φίλοι +τε +ὅ +Ἠρῴδης +καὶ +ὁ +Πειλᾶτος +ἐν +αὐτῇ +τῇ +ἡμέρᾳ +μετ’ +ἀλλήλων· +γὰρ +προϋπῆρχον +ἐν +ἔχθρᾳ +ὄντες +πρὸς +αὑτούς. +δὲ +Πειλᾶτος +συνκαλεσάμενος +τοὺς +ἀρχιερεῖς +καὶ +τοὺς +ἄρχοντας +καὶ +τὸν +λαὸν +εἶπεν +πρὸς +αὐτούς +Προσηνέγκατέ +μοι +τὸν +ἄνθρωπον +τοῦτον +ὡς +ἀποστρέφοντα +τὸν +λαόν, +καὶ +ἰδοὺ +ἐγὼ +ἐνώπιον +ὑμῶν +ἀνακρίνας +οὐθὲν +εὗρον +ἐν +τῷ +ἀνθρώπῳ +τούτῳ +αἴτιον +ὧν +κατηγορεῖτε +κατ’ +αὐτοῦ. +ἀλλ’ +οὐδὲ +Ἠρῴδης· +γὰρ +ἀνέπεμψεν +αὐτὸν +πρὸς +ἡμᾶς· +καὶ +ἰδοὺ +οὐδὲν +ἄξιον +θανάτου +ἐστὶν +πεπραγμένον +αὐτῷ· +οὖν +παιδεύσας +αὐτὸν +ἀπολύσω. +δὲ +ἀνέκραγον +πανπληθεὶ +λέγοντες +Αἶρε +τοῦτον, +δὲ +ἀπόλυσον +ἡμῖν +τὸν +Βαραββᾶν· +ὅστις +ἦν +βληθεὶς +διὰ +στάσιν +τινὰ +γενομένην +ἐν +τῇ +πόλει +καὶ +φόνον +ἐν +τῇ +φυλακῇ. +δὲ +πάλιν +ὁ +Πειλᾶτος +προσεφώνησεν +αὐτοῖς, +θέλων +ἀπολῦσαι +τὸν +Ἰησοῦν. +δὲ +οἱ +ἐπεφώνουν +λέγοντες +Σταύρου +σταύρου +αὐτόν. +δὲ +ὁ +τρίτον +εἶπεν +πρὸς +αὐτούς +γὰρ +Τί +κακὸν +ἐποίησεν +οὗτος; +οὐδὲν +αἴτιον +θανάτου +εὗρον +ἐν +αὐτῷ· +οὖν +παιδεύσας +αὐτὸν +ἀπολύσω. +δὲ +οἱ +ἐπέκειντο +φωναῖς +μεγάλαις +αἰτούμενοι +αὐτὸν +σταυρωθῆναι, +καὶ +κατίσχυον +αἱ +φωναὶ +αὐτῶν. +καὶ +Πειλᾶτος +ἐπέκρινεν +γενέσθαι +τὸ +αἴτημα +αὐτῶν· +δὲ +ἀπέλυσεν +τὸν +διὰ +στάσιν +καὶ +φόνον +βεβλημένον +εἰς +φυλακὴν, +ὃν +ᾐτοῦντο, +δὲ +τὸν +Ἰησοῦν +παρέδωκεν +τῷ +θελήματι +αὐτῶν. +Καὶ +ὡς +ἀπήγαγον +αὐτόν, +ἐπιλαβόμενοι +Σίμωνά +τινα +Κυρηναῖον +ἐρχόμενον +ἀπ’ +ἀγροῦ +ἐπέθηκαν +αὐτῷ +τὸν +σταυρὸν +φέρειν +ὄπισθεν +τοῦ +Ἰησοῦ. +δὲ +Ἠκολούθει +αὐτῷ +πολὺ +πλῆθος +τοῦ +λαοῦ +καὶ +γυναικῶν +αἳ +ἐκόπτοντο +καὶ +ἐθρήνουν +αὐτόν. +δὲ +στραφεὶς +πρὸς +αὐτὰς +Ἰησοῦς +εἶπεν +Θυγατέρες +Ἱερουσαλήμ, +μὴ +κλαίετε +ἐπ’ +ἐμέ· +πλὴν +ἐφ’ +ἑαυτὰς +κλαίετε +καὶ +ἐπὶ +τὰ +τέκνα +ὑμῶν, +ὅτι +ἰδοὺ +ἔρχονται +ἡμέραι +ἐν +αἷς +ἐροῦσιν +Μακάριαι +αἱ +στεῖραι, +καὶ +αἱ +κοιλίαι +αἳ +οὐκ +ἐγέννησαν, +καὶ +μαστοὶ +οἳ +οὐκ +ἔθρεψαν. +τότε +ἄρξονται +λέγειν +τοῖς +ὄρεσιν +Πέσατε +ἐφ’ +ἡμᾶς, +καὶ +τοῖς +βουνοῖς +Καλύψατε +ἡμᾶς· +ὅτι +εἰ +ἐν +ὑγρῷ +ξύλῳ +ταῦτα +ποιοῦσιν, +ἐν +τῷ +ξηρῷ +τί +γένηται; +δὲ +Ἤγοντο +καὶ +ἕτεροι +κακοῦργοι +δύο +σὺν +αὐτῷ +ἀναιρεθῆναι. +Καὶ +ὅτε +ἦλθον +ἐπὶ +τὸν +τόπον +τὸν +καλούμενον +Κρανίον, +ἐκεῖ +ἐσταύρωσαν +αὐτὸν +καὶ +τοὺς +κακούργους, +μὲν +ὃν +ἐκ +δεξιῶν +δὲ +ὃν +ἐξ +ἀριστερῶν. +δὲ +ὁ +Ἰησοῦς +ἔλεγεν +Πάτερ, +ἄφες +αὐτοῖς· +γὰρ +οὐ +οἴδασιν +τί +ποιοῦσιν. +δὲ +διαμεριζόμενοι +τὰ +ἱμάτια +αὐτοῦ +ἔβαλον +κλήρους. +καὶ +εἱστήκει +ὁ +λαὸς +θεωρῶν. +δὲ +ἐξεμυκτήριζον +καὶ +οἱ +ἄρχοντες +λέγοντες +Ἄλλους +ἔσωσεν, +σωσάτω +ἑαυτόν, +εἰ +οὗτός +ἐστιν +ὁ +Χριστὸς +τοῦ +Θεοῦ +ὁ +ἐκλεκτός. +δὲ +ἐνέπαιξαν +αὐτῷ +καὶ +οἱ +στρατιῶται +προσερχόμενοι, +ὄξος +προσφέροντες +αὐτῷ +καὶ +λέγοντες +Εἰ +σὺ +εἶ +ὁ +Βασιλεὺς +τῶν +Ἰουδαίων, +σῶσον +σεαυτόν. +δὲ +ἦν +καὶ +ἐπιγραφὴ +ἐπ’ +αὐτῷ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ +ΟΥΤΟΣ. +δὲ +Εἷς +τῶν +κρεμασθέντων +κακούργων +ἐβλασφήμει +αὐτόν +Οὐχὶ +σὺ +εἶ +ὁ +Χριστός; +σῶσον +σεαυτὸν +καὶ +ἡμᾶς. +δὲ +ἀποκριθεὶς +ὁ +ἕτερος +ἐπιτιμῶν +αὐτῷ +ἔφη +Οὐδὲ +φοβῇ +σὺ +τὸν +Θεόν, +ὅτι +ἐν +τῷ +αὐτῷ +κρίματι +εἶ; +καὶ +μὲν +ἡμεῖς +δικαίως, +γὰρ +ἄξια +ὧν +ἐπράξαμεν +ἀπολαμβάνομεν· +δὲ +οὗτος +οὐδὲν +ἄτοπον +ἔπραξεν. +καὶ +ἔλεγεν +Ἰησοῦ, +μνήσθητί +μου +ὅταν +ἔλθῃς +εἰς +τὴν +βασιλείαν +σου. +καὶ +εἶπεν +αὐτῷ +Ἀμήν +σοι +λέγω, +σήμερον +μετ’ +ἐμοῦ +ἔσῃ +ἐν +τῷ +Παραδείσῳ. +Καὶ +ἦν +ἤδη +ὡσεὶ +ὥρα +ἕκτη +καὶ +σκότος +ἐγένετο +ἐφ’ +ὅλην +τὴν +γῆν +ἕως +ὥρας +ἐνάτης +τοῦ +ἡλίου +ἐκλιπόντος, +δὲ +ἐσχίσθη +τὸ +καταπέτασμα +τοῦ +ναοῦ +μέσον. +καὶ +φωνήσας +φωνῇ +μεγάλῃ +ὁ +Ἰησοῦς +εἶπεν +Πάτερ, +εἰς +χεῖράς +σου +παρατίθεμαι +τὸ +πνεῦμά +μου. +δὲ +τοῦτο +εἰπὼν +ἐξέπνευσεν. +δὲ +ὁ +ἑκατοντάρχης +ἰδὼν +τὸ +γενόμενον +ἐδόξαζεν +τὸν +Θεὸν +λέγων +Ὄντως +ὁ +ἄνθρωπος +οὗτος +δίκαιος +ἦν. +καὶ +πάντες +οἱ +συνπαραγενόμενοι +ἐπὶ +τὴν +θεωρίαν +ταύτην, +ὄχλοι +θεωρήσαντες +τὰ +γενόμενα, +τύπτοντες +τὰ +στήθη +ὑπέστρεφον. +δὲ +εἱστήκεισαν +ἀπὸ +μακρόθεν, +πάντες +οἱ +γνωστοὶ +αὐτῷ +καὶ +γυναῖκες +αἱ +συνακολουθοῦσαι +αὐτῷ +ἀπὸ +τῆς +Γαλιλαίας, +ὁρῶσαι +ταῦτα. +Καὶ +ἰδοὺ +ἀνὴρ +ὀνόματι +Ἰωσὴφ +ὑπάρχων, +βουλευτὴς +ἀνὴρ +ἀγαθὸς +καὶ +δίκαιος, +—οὗτος +οὐκ +ἦν +συνκατατεθειμένος +τῇ +βουλῇ +καὶ +τῇ +πράξει +αὐτῶν,— +ἀπὸ +Ἀριμαθαίας +πόλεως +τῶν +Ἰουδαίων, +ὃς +προσεδέχετο +τὴν +βασιλείαν +τοῦ +Θεοῦ, +οὗτος +προσελθὼν +τῷ +Πειλάτῳ +ᾐτήσατο +τὸ +σῶμα +τοῦ +Ἰησοῦ, +καὶ +καθελὼν +ἐνετύλιξεν +αὐτὸ +σινδόνι, +καὶ +ἔθηκεν +αὐτὸν +ἐν +μνήματι +λαξευτῷ, +οὗ +οὐκ +ἦν +κείμενος. +οὐδεὶς +οὔπω +καὶ +ἡμέρα +Παρασκευῆς, +ἦν +καὶ +σάββατον +ἐπέφωσκεν. +δὲ +Κατακολουθήσασαι +αἱ +γυναῖκες, +αἵτινες +ἦσαν +συνεληλυθυῖαι +ἐκ +τῆς +Γαλιλαίας +αὐτῷ, +ἐθεάσαντο +τὸ +μνημεῖον +καὶ +ὡς +ἐτέθη +τὸ +σῶμα +αὐτοῦ, +δὲ +ὑποστρέψασαι +ἡτοίμασαν +ἀρώματα +καὶ +μύρα. +Καὶ +μὲν +τὸ +σάββατον +ἡσύχασαν +κατὰ +τὴν +ἐντολήν, +δὲ +τῇ +μιᾷ +τῶν +σαββάτων +ὄρθρου +βαθέως +ἐπὶ +τὸ +μνῆμα +ἦλθον +φέρουσαι +ἃ +ἡτοίμασαν +ἀρώματα. +δὲ +εὗρον +τὸν +λίθον +ἀποκεκυλισμένον +ἀπὸ +τοῦ +μνημείου, +δὲ +εἰσελθοῦσαι +οὐχ +εὗρον +τὸ +σῶμα +τοῦ +Κυρίου +Ἰησοῦ. +καὶ +ἐγένετο +ἐν +τῷ +ἀπορεῖσθαι +αὐτὰς +περὶ +τούτου +καὶ +ἰδοὺ +ἄνδρες +δύο +ἐπέστησαν +αὐταῖς +ἐν +ἐσθῆτι +ἀστραπτούσῃ· +δὲ +ἐμφόβων +γενομένων +αὐτῶν +καὶ +κλινουσῶν +τὰ +πρόσωπα +εἰς +τὴν +γῆν, +εἶπαν +πρὸς +αὐτάς +Τί +ζητεῖτε +τὸν +ζῶντα +μετὰ +τῶν +νεκρῶν; +οὐκ +ἔστιν +ὧδε, +ἀλλὰ +ἠγέρθη. +μνήσθητε +ὡς +ἐλάλησεν +ὑμῖν +ἔτι +ὢν +ἐν +τῇ +Γαλιλαίᾳ, +λέγων +ὅτι +δεῖ +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +παραδοθῆναι +εἰς +χεῖρας +ἀνθρώπων +ἁμαρτωλῶν +καὶ +σταυρωθῆναι +καὶ +τῇ +τρίτῃ +ἡμέρᾳ +ἀναστῆναι. +καὶ +ἐμνήσθησαν +τῶν +ῥημάτων +αὐτοῦ, +καὶ +ὑποστρέψασαι +ἀπὸ +τοῦ +μνημείου +ἀπήγγειλαν +ταῦτα +πάντα +τοῖς +ἕνδεκα +καὶ +πᾶσιν +τοῖς +λοιποῖς. +δὲ +ἦσαν +ἡ +Μαγδαληνὴ +Μαρία +καὶ +Ἰωάνα +καὶ +Μαρία +ἡ +Ἰακώβου· +καὶ +αἱ +λοιπαὶ +σὺν +αὐταῖς +ἔλεγον +πρὸς +τοὺς +ἀποστόλους +ταῦτα. +καὶ +ἐφάνησαν +ἐνώπιον +αὐτῶν +ὡσεὶ +λῆρος +τὰ +ῥήματα +ταῦτα, +καὶ +ἠπίστουν +αὐταῖς. +δὲ +[[Ὁ +Πέτρος +ἀναστὰς +ἔδραμεν +ἐπὶ +τὸ +μνημεῖον· +καὶ +παρακύψας +βλέπει +τὰ +ὀθόνια +μόνα· +καὶ +ἀπῆλθεν +πρὸς +αὑτὸν +θαυμάζων +τὸ +γεγονός.]] +Καὶ +ἰδοὺ +δύο +ἐξ +αὐτῶν +ἐν +αὐτῇ +τῇ +ἡμέρᾳ +ἦσαν +πορευόμενοι +εἰς +κώμην +ἀπέχουσαν +σταδίους +ἑξήκοντα +ἀπὸ +Ἱερουσαλήμ, +ᾗ +ὄνομα +Ἐμμαοῦς, +καὶ +αὐτοὶ +ὡμίλουν +πρὸς +ἀλλήλους +περὶ +πάντων +τῶν +συμβεβηκότων +τούτων. +καὶ +ἐγένετο +ἐν +τῷ +ὁμιλεῖν +αὐτοὺς +καὶ +συνζητεῖν, +καὶ +αὐτὸς +Ἰησοῦς +ἐγγίσας +συνεπορεύετο +αὐτοῖς· +δὲ +οἱ +ὀφθαλμοὶ +αὐτῶν +ἐκρατοῦντο +τοῦ +μὴ +ἐπιγνῶναι +αὐτόν. +δὲ +εἶπεν +πρὸς +αὐτούς +Τίνες +οἱ +λόγοι +οὗτοι +οὓς +ἀντιβάλλετε +πρὸς +ἀλλήλους +περιπατοῦντες; +καὶ +ἐστάθησαν +σκυθρωποί. +δὲ +ἀποκριθεὶς +εἷς +ὀνόματι +Κλεοπᾶς +εἶπεν +πρὸς +αὐτόν +Σὺ +μόνος +παροικεῖς +Ἱερουσαλὴμ +καὶ +οὐκ +ἔγνως +τὰ +γενόμενα +ἐν +αὐτῇ +ἐν +ταῖς +ἡμέραις +ταύταις; +καὶ +εἶπεν +αὐτοῖς +Ποῖα; +δὲ +οἱ +εἶπαν +αὐτῷ +Τὰ +περὶ +Ἰησοῦ +τοῦ +Ναζαρηνοῦ, +ὃς +ἐγένετο +ἀνὴρ +προφήτης +δυνατὸς +ἐν +ἔργῳ +καὶ +λόγῳ +ἐναντίον +τοῦ +Θεοῦ +καὶ +παντὸς +τοῦ +λαοῦ, +τε +ὅπως +παρέδωκαν +αὐτὸν +οἱ +ἀρχιερεῖς +καὶ +οἱ +ἄρχοντες +ἡμῶν +εἰς +κρίμα +θανάτου +καὶ +ἐσταύρωσαν +αὐτόν. +δὲ +ἡμεῖς +ἠλπίζομεν +ὅτι +αὐτός +ἐστιν +ὁ +μέλλων +λυτροῦσθαι +τὸν +Ἰσραήλ· +ἀλλά +γε +καὶ +σὺν +πᾶσιν +τούτοις +τρίτην +ταύτην +ἡμέραν +ἄγει +ἀφ’ +οὗ +ταῦτα +ἐγένετο. +ἀλλὰ +καὶ +γυναῖκές +τινες +ἐξ +ἡμῶν +ἐξέστησαν +ἡμᾶς, +γενόμεναι +ὀρθριναὶ +ἐπὶ +τὸ +μνημεῖον, +καὶ +μὴ +εὑροῦσαι +τὸ +σῶμα +αὐτοῦ +ἦλθον +λέγουσαι +καὶ +ὀπτασίαν +ἀγγέλων +ἑωρακέναι, +οἳ +λέγουσιν +αὐτὸν +ζῆν. +καὶ +ἀπῆλθόν +τινες +τῶν +σὺν +ἡμῖν +ἐπὶ +τὸ +μνημεῖον, +καὶ +εὗρον +οὕτως +καθὼς +καὶ +αἱ +γυναῖκες +εἶπον, +δὲ +αὐτὸν +οὐκ +εἶδον. +καὶ +αὐτὸς +εἶπεν +πρὸς +αὐτούς +Ὦ +ἀνόητοι +καὶ +βραδεῖς +τῇ +καρδίᾳ +τοῦ +πιστεύειν +ἐπὶ +πᾶσιν +οἷς +ἐλάλησαν +οἱ +προφῆται· +οὐχὶ +ἔδει +ταῦτα +παθεῖν +τὸν +Χριστὸν +καὶ +εἰσελθεῖν +εἰς +τὴν +δόξαν +αὐτοῦ; +καὶ +ἀρξάμενος +ἀπὸ +Μωϋσέως +καὶ +ἀπὸ +πάντων +τῶν +προφητῶν +διερμήνευσεν +αὐτοῖς +ἐν +πάσαις +ταῖς +γραφαῖς +τὰ +περὶ +ἑαυτοῦ. +Καὶ +ἤγγισαν +εἰς +τὴν +κώμην +οὗ +ἐπορεύοντο, +καὶ +αὐτὸς +προσεποιήσατο +πορρώτερον +πορεύεσθαι. +καὶ +παρεβιάσαντο +αὐτὸν +λέγοντες +Μεῖνον +μεθ’ +ἡμῶν, +ὅτι +πρὸς +ἑσπέραν +ἐστὶν +καὶ +κέκλικεν +ἤδη +ἡ +ἡμέρα. +καὶ +εἰσῆλθεν +τοῦ +μεῖναι +σὺν +αὐτοῖς. +καὶ +ἐγένετο +ἐν +τῷ +κατακλιθῆναι +αὐτὸν +μετ’ +αὐτῶν +λαβὼν +τὸν +ἄρτον +εὐλόγησεν +καὶ +κλάσας +ἐπεδίδου +αὐτοῖς· +δὲ +αὐτῶν +οἱ +ὀφθαλμοὶ, +διηνοίχθησαν +καὶ +ἐπέγνωσαν +αὐτόν· +καὶ +αὐτὸς +ἄφαντος +ἐγένετο +ἀπ’ +αὐτῶν. +καὶ +εἶπαν +πρὸς +ἀλλήλους +Οὐχὶ +ἡ +καρδία +ἡμῶν +καιομένη +ἦν +ἐν +ἡμῖν, +ὡς +ἐλάλει +ἡμῖν +ἐν +τῇ +ὁδῷ, +ὡς +διήνοιγεν +ἡμῖν +τὰς +γραφάς; +Καὶ +ἀναστάντες +αὐτῇ +τῇ +ὥρᾳ +ὑπέστρεψαν +εἰς +Ἱερουσαλήμ, +καὶ +εὗρον +ἠθροισμένους +τοὺς +ἕνδεκα +καὶ +τοὺς +σὺν +αὐτοῖς, +λέγοντας +ὅτι +ὄντως +ἠγέρθη +ὁ +Κύριος +καὶ +ὤφθη +Σίμωνι. +καὶ +αὐτοὶ +ἐξηγοῦντο +τὰ +ἐν +τῇ +ὁδῷ +καὶ +ὡς +ἐγνώσθη +αὐτοῖς +ἐν +τῇ +κλάσει +τοῦ +ἄρτου. +δὲ +Ταῦτα +αὐτῶν +λαλούντων +αὐτὸς +ἔστη +ἐν +μέσῳ +αὐτῶν +[[καὶ +λέγει +αὐτοῖς +Εἰρήνη +ὑμῖν]]. +δὲ +πτοηθέντες +καὶ +ἔμφοβοι +γενόμενοι +ἐδόκουν +πνεῦμα +θεωρεῖν. +καὶ +εἶπεν +αὐτοῖς +Τί +τεταραγμένοι +ἐστέ, +καὶ +διὰ +τί +διαλογισμοὶ +ἀναβαίνουσιν +ἐν +τῇ +καρδίᾳ +ὑμῶν; +ἴδετε +τὰς +χεῖράς +μου +καὶ +τοὺς +πόδας +μου, +ὅτι +ἐγώ +εἰμι +αὐτός· +ψηλαφήσατέ +με +καὶ +ἴδετε, +ὅτι +πνεῦμα +σάρκα +καὶ +ὀστέα +οὐκ +ἔχει +καθὼς +ἐμὲ +ἔχοντα. +θεωρεῖτε +[[καὶ +τοῦτο +εἰπὼν +ἔδειξεν +αὐτοῖς +τὰς +χεῖρας +καὶ +τοὺς +πόδας.]] +δὲ +ἔτι +ἀπιστούντων +αὐτῶν +ἀπὸ +τῆς +χαρᾶς +καὶ +θαυμαζόντων, +εἶπεν +αὐτοῖς +Ἔχετέ +τι +βρώσιμον +ἐνθάδε; +δὲ +οἱ +ἐπέδωκαν +αὐτῷ +ἰχθύος +ὀπτοῦ +μέρος· +καὶ +λαβὼν +ἐνώπιον +αὐτῶν +ἔφαγεν. +δὲ +Εἶπεν +πρὸς +αὐτούς +Οὗτοι +οἱ +λόγοι +μου +οὓς +ἐλάλησα +πρὸς +ὑμᾶς +ἔτι +ὢν +σὺν +ὑμῖν, +ὅτι +δεῖ +πληρωθῆναι +πάντα +τὰ +γεγραμμένα +ἐν +τῷ +νόμῳ +Μωϋσέως +καὶ +τοῖς +προφήταις +καὶ +ψαλμοῖς +περὶ +ἐμοῦ. +τότε +διήνοιξεν +αὐτῶν +τὸν +νοῦν +τοῦ +συνιέναι +τὰς +γραφάς· +καὶ +εἶπεν +αὐτοῖς +ὅτι +οὕτως +γέγραπται +παθεῖν +τὸν +Χριστὸν +καὶ +ἀναστῆναι +ἐκ +νεκρῶν +τῇ +τρίτῃ +ἡμέρᾳ, +καὶ +κηρυχθῆναι +ἐπὶ +τῷ +ὀνόματι +αὐτοῦ +μετάνοιαν +εἰς +ἄφεσιν +ἁμαρτιῶν +εἰς +πάντα +τὰ +ἔθνη,— +ἀρξάμενοι +ἀπὸ +Ἱερουσαλήμ. +ὑμεῖς +μάρτυρες +τούτων. +καὶ +ἰδοὺ +ἐγὼ +ἐξαποστέλλω +τὴν +ἐπαγγελίαν +τοῦ +Πατρός +μου +ἐφ’ +ὑμᾶς· +δὲ +ὑμεῖς +καθίσατε +ἐν +τῇ +πόλει +ἕως +οὗ +ἐνδύσησθε +ἐξ +ὕψους +δύναμιν. +δὲ +Ἐξήγαγεν +αὐτοὺς +ἕως +πρὸς +Βηθανίαν, +καὶ +ἐπάρας +τὰς +χεῖρας +αὐτοῦ +εὐλόγησεν +αὐτούς. +καὶ +ἐγένετο +ἐν +τῷ +εὐλογεῖν +αὐτὸν +αὐτοὺς +διέστη +ἀπ’ +αὐτῶν +[[καὶ +ἀνεφέρετο +εἰς +τὸν +οὐρανόν]]. +καὶ +αὐτοὶ +[[προσκυνήσαντες +αὐτὸν]] +ὑπέστρεψαν +εἰς +Ἱερουσαλὴμ +μετὰ +χαρᾶς +μεγάλης, +καὶ +ἦσαν +εὐλογοῦντες +διὰ +παντὸς +ἐν +τῷ +ἱερῷ +τὸν +Θεόν. +Ἐν +ἀρχῇ +ἦν +ὁ +Λόγος, +καὶ +ὁ +Λόγος +ἦν +πρὸς +τὸν +Θεόν, +καὶ +Θεὸς +ἦν +ὁ +Λόγος. +Οὗτος +ἦν +ἐν +ἀρχῇ +πρὸς +τὸν +Θεόν. +πάντα +δι’ +αὐτοῦ +ἐγένετο, +καὶ +χωρὶς +αὐτοῦ +ἐγένετο +οὐδὲ +ἕν +ὃ +γέγονεν. +ἐν +αὐτῷ +ζωὴ +ἦν, +καὶ +ἡ +ζωὴ +ἦν +τὸ +φῶς +τῶν +ἀνθρώπων. +καὶ +τὸ +φῶς +ἐν +τῇ +σκοτίᾳ +φαίνει, +καὶ +ἡ +σκοτία +αὐτὸ +οὐ +κατέλαβεν. +Ἐγένετο +ἄνθρωπος, +ἀπεσταλμένος +παρὰ +Θεοῦ, +ὄνομα +αὐτῷ +Ἰωάνης· +οὗτος +ἦλθεν +εἰς +μαρτυρίαν, +ἵνα +μαρτυρήσῃ +περὶ +τοῦ +φωτός, +ἵνα +πάντες +πιστεύσωσιν +δι’ +αὐτοῦ. +οὐκ +ἦν +ἐκεῖνος +τὸ +φῶς, +ἀλλ’ +ἵνα +μαρτυρήσῃ +περὶ +τοῦ +φωτός. +τὸ +φῶς +τὸ +ἀληθινὸν, +ὃ +φωτίζει +πάντα +ἄνθρωπον, +Ἦν +ἐρχόμενον +εἰς +τὸν +κόσμον. +ἐν +τῷ +κόσμῳ +ἦν, +καὶ +ὁ +κόσμος +δι’ +αὐτοῦ +ἐγένετο, +καὶ +ὁ +κόσμος +αὐτὸν +οὐκ +ἔγνω. +εἰς +τὰ +ἴδια +ἦλθεν, +καὶ +οἱ +ἴδιοι +αὐτὸν +οὐ +παρέλαβον. +δὲ +ὅσοι +ἔλαβον +αὐτόν, +ἔδωκεν +ἐξουσίαν +τέκνα +Θεοῦ +γενέσθαι, +αὐτοῖς +τοῖς +πιστεύουσιν +εἰς +τὸ +ὄνομα +αὐτοῦ, +οἳ +οὐκ +ἐξ +αἱμάτων +οὐδὲ +ἐκ +θελήματος +σαρκὸς +οὐδὲ +ἐκ +θελήματος +ἀνδρὸς +ἀλλ’ +ἐκ +Θεοῦ +ἐγεννήθησαν. +Καὶ +ὁ +Λόγος +σὰρξ +ἐγένετο +καὶ +ἐσκήνωσεν +ἐν +ἡμῖν, +καὶ +ἐθεασάμεθα +τὴν +δόξαν +αὐτοῦ, +δόξαν +ὡς +μονογενοῦς +παρὰ +Πατρός, +πλήρης +χάριτος +καὶ +ἀληθείας. +Ἰωάνης +μαρτυρεῖ +περὶ +αὐτοῦ +καὶ +κέκραγεν +λέγων +Οὗτος +ἦν +ὃν +εἶπον +Ὁ +ὀπίσω +μου +ἐρχόμενος +ἔμπροσθέν +μου +γέγονεν, +ὅτι +πρῶτός +μου +ἦν. +ὅτι +ἐκ +τοῦ +πληρώματος +αὐτοῦ +ἡμεῖς +πάντες +ἐλάβομεν, +καὶ +χάριν +ἀντὶ +χάριτος· +ὅτι +ὁ +νόμος +διὰ +Μωϋσέως +ἐδόθη, +ἡ +χάρις +καὶ +ἡ +ἀλήθεια +διὰ +Ἰησοῦ +Χριστοῦ +ἐγένετο. +Θεὸν +οὐδεὶς +ἑώρακεν +πώποτε· +μονογενὴς +Θεὸς +ὁ +ὢν +εἰς +τὸν +κόλπον +τοῦ +Πατρὸς, +ἐκεῖνος +ἐξηγήσατο. +Καὶ +αὕτη +ἐστὶν +ἡ +μαρτυρία +τοῦ +Ἰωάνου +ὅτε +ἀπέστειλαν +πρὸς +αὐτὸν +οἱ +Ἰουδαῖοι +ἐξ +Ἱεροσολύμων +ἱερεῖς +καὶ +Λευείτας +ἵνα +ἐρωτήσωσιν +αὐτόν +Σὺ +τίς +εἶ; +καὶ +ὡμολόγησεν +καὶ +οὐκ +ἠρνήσατο, +καὶ +ὡμολόγησεν +ὅτι +Ἐγὼ +οὐκ +εἰμὶ +ὁ +Χριστός. +καὶ +ἠρώτησαν +αὐτόν +οὖν; +Τί +σὺ +Ἠλείας +εἶ; +καὶ +λέγει +Οὐκ +εἰμί. +Ὁ +προφήτης +εἶ +σύ; +καὶ +ἀπεκρίθη +Οὔ. +οὖν +εἶπαν +αὐτῷ +Τίς +εἶ; +ἵνα +ἀπόκρισιν +δῶμεν +τοῖς +πέμψασιν +ἡμᾶς· +τί +λέγεις +περὶ +σεαυτοῦ; +ἔφη +Ἐγὼ +φωνὴ +βοῶντος +ἐν +τῇ +ἐρήμῳ +Εὐθύνατε +τὴν +ὁδὸν +Κυρίου, +καθὼς +εἶπεν +Ἠσαΐας +ὁ +προφήτης. +Καὶ +ἀπεσταλμένοι +ἦσαν +ἐκ +τῶν +Φαρισαίων. +καὶ +ἠρώτησαν +αὐτὸν +καὶ +εἶπαν +αὐτῷ +οὖν +Τί +βαπτίζεις +εἰ +σὺ +οὐκ +εἶ +ὁ +Χριστὸς +οὐδὲ +Ἠλείας +οὐδὲ +ὁ +προφήτης; +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰωάνης +λέγων +Ἐγὼ +βαπτίζω +ἐν +ὕδατι· +μέσος +ὑμῶν +στήκει +ὃν +ὑμεῖς +οὐκ +οἴδατε, +ὁ +ὀπίσω +μου +ἐρχόμενος, +οὗ +οὐκ +εἰμὶ +ἐγὼ +ἄξιος +ἵνα +λύσω +αὐτοῦ +τὸν +ἱμάντα +τοῦ +ὑποδήματος. +Ταῦτα +ἐν +Βηθανίᾳ +ἐγένετο +πέραν +τοῦ +Ἰορδάνου, +ὅπου +ἦν +βαπτίζων. +ὁ +Ἰωάνης +Τῇ +ἐπαύριον +βλέπει +τὸν +Ἰησοῦν +ἐρχόμενον +πρὸς +αὐτόν, +καὶ +λέγει +Ἴδε +ὁ +Ἀμνὸς +τοῦ +Θεοῦ +ὁ +αἴρων +τὴν +ἁμαρτίαν +τοῦ +κόσμου. +οὗτός +ἐστιν +ὑπὲρ +οὗ +ἐγὼ +εἶπον +Ὀπίσω +μου +ἔρχεται +ἀνὴρ +ὃς +ἔμπροσθέν +μου +γέγονεν, +ὅτι +πρῶτός +μου +ἦν. +κἀγὼ +οὐκ +ᾔδειν +αὐτόν, +ἀλλ’ +ἵνα +φανερωθῇ +τῷ +Ἰσραὴλ, +διὰ +τοῦτο +ἦλθον +ἐγὼ +ἐν +ὕδατι +βαπτίζων. +Καὶ +ἐμαρτύρησεν +Ἰωάνης +λέγων +ὅτι +Τεθέαμαι +τὸ +Πνεῦμα +καταβαῖνον +ὡς +περιστερὰν +ἐξ +οὐρανοῦ, +καὶ +ἔμεινεν +ἐπ’ +αὐτόν. +κἀγὼ +οὐκ +ᾔδειν +αὐτόν, +ἀλλ’ +ὁ +πέμψας +με +βαπτίζειν +ἐν +ὕδατι +ἐκεῖνός +μοι +εἶπεν +ἂν +Ἐφ’ +ὃν +ἴδῃς +τὸ +Πνεῦμα +καταβαῖνον +καὶ +μένον +ἐπ’ +αὐτόν, +οὗτός +ἐστιν +ὁ +βαπτίζων +ἐν +Πνεύματι +Ἁγίῳ. +κἀγὼ +ἑώρακα, +καὶ +μεμαρτύρηκα +ὅτι +οὗτός +ἐστιν +ὁ +Υἱὸς +τοῦ +Θεοῦ. +Τῇ +ἐπαύριον +πάλιν +εἱστήκει +ὁ +Ἰωάνης +καὶ +ἐκ +τῶν +μαθητῶν +αὐτοῦ +δύο, +καὶ +ἐμβλέψας +τῷ +Ἰησοῦ +περιπατοῦντι +λέγει +Ἴδε +ὁ +Ἀμνὸς +τοῦ +Θεοῦ. +καὶ +ἤκουσαν +οἱ +δύο +μαθηταὶ +αὐτοῦ +λαλοῦντος +καὶ +ἠκολούθησαν +τῷ +Ἰησοῦ. +δὲ +ὁ +Ἰησοῦς +στραφεὶς +καὶ +θεασάμενος +αὐτοὺς +ἀκολουθοῦντας +λέγει +αὐτοῖς +Τί +ζητεῖτε; +δὲ +οἱ +εἶπαν +αὐτῷ +Ῥαββεί, +(ὃ +λέγεται +μεθερμηνευόμενον +Διδάσκαλε,) +ποῦ +μένεις; +λέγει +αὐτοῖς +Ἔρχεσθε +καὶ +ὄψεσθε. +οὖν +ἦλθαν +καὶ +εἶδαν +ποῦ +μένει, +καὶ +παρ’ +αὐτῷ +ἔμειναν +τὴν +ἡμέραν +ἐκείνην· +ὥρα +ἦν +ὡς +δεκάτη. +Ἦν +Ἀνδρέας +ὁ +ἀδελφὸς +Σίμωνος +Πέτρου +εἷς +ἐκ +τῶν +δύο +τῶν +ἀκουσάντων +παρὰ +Ἰωάνου +καὶ +ἀκολουθησάντων +αὐτῷ· +εὑρίσκει +οὗτος +πρῶτον +τὸν +ἀδελφὸν +τὸν +ἴδιον +Σίμωνα +καὶ +λέγει +αὐτῷ +Εὑρήκαμεν +τὸν +Μεσσίαν +(ὅ +ἐστιν +μεθερμηνευόμενον +Χριστός). +ἤγαγεν +αὐτὸν +πρὸς +τὸν +Ἰησοῦν. +ἐμβλέψας +αὐτῷ +ὁ +Ἰησοῦς +εἶπεν +Σὺ +εἶ +Σίμων +ὁ +υἱὸς +Ἰωάνου, +σὺ +κληθήσῃ +Κηφᾶς +(ὃ +ἑρμηνεύεται +Πέτρος). +Τῇ +ἐπαύριον +ἠθέλησεν +ἐξελθεῖν +εἰς +τὴν +Γαλιλαίαν. +καὶ +εὑρίσκει +Φίλιππον. +καὶ +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἀκολούθει +μοι. +δὲ +ἦν +ὁ +Φίλιππος +ἀπὸ +Βηθσαϊδά, +ἐκ +τῆς +πόλεως +Ἀνδρέου +καὶ +Πέτρου. +εὑρίσκει +Φίλιππος +τὸν +Ναθαναὴλ +καὶ +λέγει +αὐτῷ +Ὃν +ἔγραψεν +Μωϋσῆς +ἐν +τῷ +νόμῳ +καὶ +οἱ +προφῆται +εὑρήκαμεν, +Ἰησοῦν +υἱὸν +τοῦ +Ἰωσὴφ +τὸν +ἀπὸ +Ναζαρέτ. +καὶ +εἶπεν +αὐτῷ +Ναθαναήλ +Ἐκ +Ναζαρὲτ +εἶναι; +δύναταί +τι +ἀγαθὸν +λέγει +αὐτῷ +ὁ +Φίλιππος +Ἔρχου +καὶ +ἴδε. +εἶδεν +Ἰησοῦς +τὸν +Ναθαναὴλ +ἐρχόμενον +πρὸς +αὐτὸν +καὶ +λέγει +περὶ +αὐτοῦ +Ἴδε +ἀληθῶς +Ἰσραηλείτης, +ἐν +ᾧ +δόλος +οὐκ +ἔστιν. +λέγει +αὐτῷ +Ναθαναήλ +Πόθεν +με +γινώσκεις; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῷ +Πρὸ +τοῦ +σε +Φίλιππον +φωνῆσαι +ὄντα +ὑπὸ +τὴν +συκῆν +σε. +εἶδόν +ἀπεκρίθη +αὐτῷ +Ναθαναήλ +Ῥαββεί, +σὺ +εἶ +ὁ +Υἱὸς +τοῦ +Θεοῦ, +σὺ +Βασιλεὺς +τοῦ +Ἰσραήλ. +εἶ +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῷ +Ὅτι +εἶπόν +σοι +ὅτι +εἶδόν +σε +ὑποκάτω +τῆς +συκῆς, +πιστεύεις; +μείζω +τούτων +ὄψῃ. +καὶ +λέγει +αὐτῷ +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ὄψεσθε +τὸν +οὐρανὸν +ἀνεῳγότα +καὶ +τοὺς +ἀγγέλους +τοῦ +Θεοῦ +ἀναβαίνοντας +καὶ +καταβαίνοντας +ἐπὶ +τὸν +Υἱὸν +τοῦ +ἀνθρώπου. +Καὶ +τῇ +ἡμέρᾳ +τῇ +τρίτῃ +γάμος +ἐγένετο +ἐν +Κανὰ +τῆς +Γαλιλαίας, +καὶ +ἦν +ἡ +μήτηρ +τοῦ +Ἰησοῦ +ἐκεῖ· +δὲ +ἐκλήθη +καὶ +ὁ +Ἰησοῦς +καὶ +οἱ +μαθηταὶ +αὐτοῦ +εἰς +τὸν +γάμον. +καὶ +ὑστερήσαντος +οἴνου +λέγει +ἡ +μήτηρ +τοῦ +Ἰησοῦ +πρὸς +αὐτόν +Οἶνον +οὐκ +ἔχουσιν. +καὶ +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Τί +ἐμοὶ +καὶ +σοί, +γύναι; +οὔπω +ἥκει +ἡ +ὥρα +μου. +λέγει +ἡ +μήτηρ +αὐτοῦ +τοῖς +διακόνοις +τι +ἂν +Ὅ +λέγῃ +ὑμῖν, +ποιήσατε. +δὲ +ἦσαν +κείμεναι, +ἐκεῖ +λίθιναι +ὑδρίαι +ἓξ +κατὰ +τὸν +καθαρισμὸν +τῶν +Ἰουδαίων +χωροῦσαι +ἀνὰ +μετρητὰς +δύο +ἢ +τρεῖς. +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Γεμίσατε +τὰς +ὑδρίας +ὕδατος. +καὶ +ἐγέμισαν +αὐτὰς +ἕως +ἄνω. +καὶ +λέγει +αὐτοῖς +Ἀντλήσατε +νῦν +καὶ +φέρετε +τῷ +ἀρχιτρικλίνῳ. +δὲ +οἱ +ἤνεγκαν. +δὲ +ὡς +ἐγεύσατο +ὁ +ἀρχιτρίκλινος +τὸ +ὕδωρ +οἶνον +γεγενημένον, +καὶ +οὐκ +ᾔδει +πόθεν +ἐστίν, +δὲ +ᾔδεισαν +οἱ +διάκονοι +οἱ +ἠντληκότες +τὸ +ὕδωρ, +φωνεῖ +τὸν +νυμφίον +ὁ +ἀρχιτρίκλινος +καὶ +λέγει +αὐτῷ +Πᾶς +ἄνθρωπος +πρῶτον +τὸν +καλὸν +οἶνον +τίθησιν, +καὶ +ὅταν +μεθυσθῶσιν +τὸν +ἐλάσσω· +σὺ +τετήρηκας +τὸν +καλὸν +οἶνον +ἕως +ἄρτι. +Ταύτην +ἀρχὴν +τῶν +σημείων +ἐποίησεν +ὁ +Ἰησοῦς +ἐν +Κανὰ +τῆς +Γαλιλαίας +καὶ +ἐφανέρωσεν +τὴν +δόξαν +αὐτοῦ, +καὶ +ἐπίστευσαν +εἰς +αὐτὸν +οἱ +μαθηταὶ +αὐτοῦ. +Μετὰ +τοῦτο +κατέβη +εἰς +Καφαρναοὺμ +αὐτὸς +καὶ +ἡ +μήτηρ +αὐτοῦ +καὶ +οἱ +ἀδελφοὶ +καὶ +οἱ +μαθηταὶ +αὐτοῦ, +καὶ +ἐκεῖ +ἔμειναν +οὐ +πολλὰς +ἡμέρας. +Καὶ +ἐγγὺς +ἦν +τὸ +πάσχα +τῶν +Ἰουδαίων, +καὶ +ἀνέβη +εἰς +Ἱεροσόλυμα +ὁ +Ἰησοῦς. +καὶ +εὗρεν +ἐν +τῷ +ἱερῷ +τοὺς +πωλοῦντας +βόας +καὶ +πρόβατα +καὶ +περιστερὰς +καὶ +τοὺς +κερματιστὰς +καθημένους, +καὶ +ποιήσας +φραγέλλιον +ἐκ +σχοινίων +πάντας +ἐξέβαλεν +ἐκ +τοῦ +ἱεροῦ +τε +τά +πρόβατα +καὶ +τοὺς +βόας, +καὶ +τῶν +κολλυβιστῶν +τὰ +κέρματα +ἐξέχεεν +καὶ +τὰς +τραπέζας +ἀνέτρεψεν, +καὶ +τοῖς +τὰς +περιστερὰς +πωλοῦσιν +εἶπεν +Ἄρατε +ταῦτα +ἐντεῦθεν, +μὴ +ποιεῖτε +τὸν +οἶκον +τοῦ +Πατρός +μου +οἶκον +ἐμπορίου. +ἐμνήσθησαν +οἱ +μαθηταὶ +αὐτοῦ +ὅτι +γεγραμμένον +ἐστίν +Ὁ +ζῆλος +τοῦ +οἴκου +σου +καταφάγεταί +με. +οὖν +ἀπεκρίθησαν +οἱ +Ἰουδαῖοι +καὶ +εἶπαν +αὐτῷ +Τί +σημεῖον +δεικνύεις +ἡμῖν, +ὅτι +ταῦτα +ποιεῖς; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτοῖς +Λύσατε +τὸν +ναὸν +τοῦτον, +καὶ +ἐν +τρισὶν +ἡμέραις +ἐγερῶ +αὐτόν. +οὖν +εἶπαν +οἱ +Ἰουδαῖοι +Τεσσεράκοντα +καὶ +ἓξ +ἔτεσιν +οἰκοδομήθη +ὁ +ναὸς +οὗτος, +καὶ +σὺ +ἐν +τρισὶν +ἡμέραις +ἐγερεῖς +αὐτόν; +δὲ +ἐκεῖνος +ἔλεγεν +περὶ +τοῦ +ναοῦ +τοῦ +σώματος +αὐτοῦ. +οὖν +ὅτε +ἠγέρθη +ἐκ +νεκρῶν, +ἐμνήσθησαν +οἱ +μαθηταὶ +αὐτοῦ +ὅτι +τοῦτο +ἔλεγεν, +καὶ +ἐπίστευσαν +τῇ +γραφῇ +καὶ +τῷ +λόγῳ +ὃν +εἶπεν +ὁ +Ἰησοῦς. +δὲ +Ὡς +ἦν +ἐν +τοῖς +Ἱεροσολύμοις +ἐν +τῷ +πάσχα +ἐν +τῇ +ἑορτῇ, +πολλοὶ +ἐπίστευσαν +εἰς +τὸ +ὄνομα +αὐτοῦ, +θεωροῦντες +αὐτοῦ +τὰ +σημεῖα +ἃ +ἐποίει· +δὲ +αὐτὸς +Ἰησοῦς +οὐκ +ἐπίστευεν +αὑτὸν +αὐτοῖς +διὰ +τὸ +αὐτὸν +γινώσκειν +πάντας, +καὶ +ὅτι +οὐ +χρείαν +εἶχεν +ἵνα +τις +μαρτυρήσῃ +περὶ +τοῦ +ἀνθρώπου· +γὰρ +αὐτὸς +ἐγίνωσκεν +τί +ἦν +ἐν +τῷ +ἀνθρώπῳ. +δὲ +Ἦν +ἄνθρωπος +ἐκ +τῶν +Φαρισαίων, +ἄρχων +τῶν +Ἰουδαίων· +Νικόδημος +ὄνομα +αὐτῷ, +οὗτος +ἦλθεν +πρὸς +αὐτὸν +νυκτὸς +καὶ +εἶπεν +αὐτῷ +Ῥαββεί, +οἴδαμεν +ὅτι +ἀπὸ +Θεοῦ +ἐλήλυθας +διδάσκαλος· +γὰρ +οὐδεὶς +δύναται +ταῦτα +τὰ +σημεῖα +ἃ +σὺ +ποιεῖς, +ποιεῖν +ἐὰν +μὴ +ᾖ +ὁ +Θεὸς +μετ’ +αὐτοῦ. +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῷ +Ἀμὴν +ἀμὴν +λέγω +σοι, +ἐὰν +μή +τις +γεννηθῇ +ἄνωθεν, +οὐ +δύναται +ἰδεῖν +τὴν +βασιλείαν +τοῦ +Θεοῦ. +λέγει +πρὸς +αὐτὸν +ὁ +Νικόδημος +Πῶς +δύναται +ἄνθρωπος +γεννηθῆναι +γέρων +ὤν; +μὴ +δύναται +εἰς +τὴν +κοιλίαν +τῆς +μητρὸς +αὐτοῦ +δεύτερον +εἰσελθεῖν +καὶ +γεννηθῆναι; +ἀπεκρίθη +Ἰησοῦς +Ἀμὴν +ἀμὴν +λέγω +σοι, +ἐὰν +μή +τις +γεννηθῇ +ἐξ +ὕδατος +καὶ +Πνεύματος, +οὐ +δύναται +εἰσελθεῖν +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ. +τὸ +γεγεννημένον +ἐκ +τῆς +σαρκὸς +σάρξ +ἐστιν, +καὶ +τὸ +γεγεννημένον +ἐκ +τοῦ +Πνεύματος +πνεῦμά +ἐστιν. +μὴ +θαυμάσῃς +ὅτι +εἶπόν +σοι +Δεῖ +ὑμᾶς +γεννηθῆναι +ἄνωθεν. +τὸ +πνεῦμα +ὅπου +θέλει +πνεῖ, +καὶ +τὴν +φωνὴν +αὐτοῦ +ἀκούεις, +ἀλλ’ +οὐκ +οἶδας +πόθεν +ἔρχεται +καὶ +ποῦ +ὑπάγει· +οὕτως +ἐστὶν +πᾶς +ὁ +γεγεννημένος +ἐκ +τοῦ +Πνεύματος. +ἀπεκρίθη +Νικόδημος +καὶ +εἶπεν +αὐτῷ +Πῶς +δύναται +ταῦτα +γενέσθαι; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῷ +Σὺ +εἶ +ὁ +διδάσκαλος +τοῦ +Ἰσραὴλ +καὶ +ταῦτα +οὐ +γινώσκεις; +ἀμὴν +ἀμὴν +λέγω +σοι +ὅτι +ὃ +οἴδαμεν +λαλοῦμεν +καὶ +ὃ +ἑωράκαμεν +μαρτυροῦμεν, +καὶ +τὴν +μαρτυρίαν +ἡμῶν +οὐ +λαμβάνετε. +εἰ +τὰ +ἐπίγεια +εἶπον +ὑμῖν +καὶ +οὐ +πιστεύετε, +πῶς +ἐὰν +εἴπω +ὑμῖν +τὰ +ἐπουράνια +πιστεύσετε; +καὶ +οὐδεὶς +ἀναβέβηκεν +εἰς +τὸν +οὐρανὸν +εἰ +μὴ +ὁ +ἐκ +τοῦ +οὐρανοῦ +καταβάς, +ὁ +Υἱὸς +τοῦ +ἀνθρώπου. +καὶ +καθὼς +Μωϋσῆς +ὕψωσεν +τὸν +ὄφιν +ἐν +τῇ +ἐρήμῳ, +οὕτως +δεῖ +ὑψωθῆναι +τὸν +Υἱὸν +τοῦ +ἀνθρώπου, +ἵνα +πᾶς +ὁ +πιστεύων +ἐν +αὐτῷ +ἔχῃ +ζωὴν +αἰώνιον. +γὰρ +Οὕτως +ἠγάπησεν +ὁ +Θεὸς +τὸν +κόσμον, +ὥστε +τὸν +Υἱὸν +τὸν +μονογενῆ +ἔδωκεν, +ἵνα +πᾶς +ὁ +πιστεύων +εἰς +αὐτὸν +μὴ +ἀπόληται +ἀλλ’ +ἔχῃ +ζωὴν +αἰώνιον. +γὰρ +οὐ +ἀπέστειλεν +ὁ +Θεὸς +τὸν +Υἱὸν +εἰς +τὸν +κόσμον +ἵνα +κρίνῃ +τὸν +κόσμον, +ἀλλ’ +ἵνα +σωθῇ +ὁ +κόσμος +δι’ +αὐτοῦ. +ὁ +πιστεύων +εἰς +αὐτὸν +οὐ +κρίνεται· +ὁ +μὴ +πιστεύων +ἤδη +κέκριται, +ὅτι +μὴ +πεπίστευκεν +εἰς +τὸ +ὄνομα +τοῦ +μονογενοῦς +Υἱοῦ +τοῦ +Θεοῦ. +δέ +αὕτη +ἐστιν +ἡ +κρίσις, +ὅτι +τὸ +φῶς +ἐλήλυθεν +εἰς +τὸν +κόσμον +καὶ +ἠγάπησαν +οἱ +ἄνθρωποι +μᾶλλον +τὸ +σκότος +ἢ +τὸ +φῶς· +γὰρ +ἦν +πονηρὰ +αὐτῶν +τὰ +ἔργα. +γὰρ +πᾶς +ὁ +φαῦλα +πράσσων +μισεῖ +τὸ +φῶς +καὶ +οὐκ +ἔρχεται +πρὸς +τὸ +φῶς, +ἵνα +μὴ +ἐλεγχθῇ +τὰ +ἔργα +αὐτοῦ· +δὲ +ὁ +ποιῶν +τὴν +ἀλήθειαν +ἔρχεται +πρὸς +τὸ +φῶς, +ἵνα +φανερωθῇ +αὐτοῦ +τὰ +ἔργα +ὅτι +ἐν +Θεῷ +ἐστιν +εἰργασμένα. +Μετὰ +ταῦτα +ἦλθεν +ὁ +Ἰησοῦς +καὶ +οἱ +μαθηταὶ +αὐτοῦ +εἰς +τὴν +Ἰουδαίαν +γῆν, +καὶ +ἐκεῖ +διέτριβεν +μετ’ +αὐτῶν +καὶ +ἐβάπτιζεν. +δὲ +ἦν +βαπτίζων +καὶ +Ἰωάνης +ἐν +Αἰνὼν +ἐγγὺς +τοῦ +Σαλείμ, +ὅτι +ὕδατα +πολλὰ +ἦν +ἐκεῖ, +καὶ +παρεγίνοντο +καὶ +ἐβαπτίζοντο· +γὰρ +οὔπω +ἦν +βεβλημένος +εἰς +τὴν +φυλακὴν +Ἰωάνης. +οὖν +Ἐγένετο +ζήτησις +ἐκ +τῶν +μαθητῶν +Ἰωάνου +μετὰ +Ἰουδαίου +περὶ +καθαρισμοῦ. +καὶ +ἦλθον +πρὸς +τὸν +Ἰωάνην +καὶ +εἶπαν +αὐτῷ +Ῥαββεί, +ὃς +ἦν +μετὰ +σοῦ +πέραν +τοῦ +Ἰορδάνου, +ᾧ +σὺ +μεμαρτύρηκας, +ἴδε +οὗτος +βαπτίζει +καὶ +πάντες +ἔρχονται +πρὸς +αὐτόν. +ἀπεκρίθη +Ἰωάνης +καὶ +εἶπεν +Οὐ +δύναται +ἄνθρωπος +λαμβάνειν +οὐδὲν +ἐὰν +μὴ +ᾖ +δεδομένον +αὐτῷ +ἐκ +τοῦ +οὐρανοῦ. +αὐτοὶ +ὑμεῖς +μοι +μαρτυρεῖτε +ὅτι +εἶπον +Οὐκ +εἰμὶ +ἐγὼ +ὁ +Χριστός, +ἀλλ’ +ὅτι +Ἀπεσταλμένος +εἰμὶ +ἔμπροσθεν +ἐκείνου. +Ὁ +ἔχων +τὴν +νύμφην +νυμφίος +ἐστίν· +δὲ +ὁ +φίλος +τοῦ +νυμφίου +ὁ +ἑστηκὼς +καὶ +ἀκούων +αὐτοῦ, +χαρᾷ +χαίρει +διὰ +τὴν +φωνὴν +τοῦ +νυμφίου. +οὖν +αὕτη +ἡ +χαρὰ +ἡ +ἐμὴ +πεπλήρωται. +δεῖ +ἐκεῖνον +αὐξάνειν, +δὲ +ἐμὲ +ἐλαττοῦσθαι. +Ὁ +ἄνωθεν +ἐρχόμενος +ἐπάνω +πάντων +ἐστίν· +ὁ +ὢν +ἐκ +τῆς +γῆς +ἐκ +τῆς +γῆς +ἐστιν +καὶ +ἐκ +τῆς +γῆς +λαλεῖ. +ὁ +ἐκ +τοῦ +οὐρανοῦ +ἐρχόμενος +ἐπάνω +πάντων +ἐστίν· +ὃ +ἑώρακεν +καὶ +ἤκουσεν, +τοῦτο +μαρτυρεῖ, +καὶ +τὴν +μαρτυρίαν +αὐτοῦ +οὐδεὶς +λαμβάνει. +ὁ +λαβὼν +αὐτοῦ +τὴν +μαρτυρίαν +ἐσφράγισεν +ὅτι +ὁ +Θεὸς +ἀληθής +ἐστιν. +γὰρ +ὃν +ἀπέστειλεν +ὁ +Θεὸς +τὰ +ῥήματα +τοῦ +Θεοῦ +λαλεῖ· +γὰρ +οὐ +ἐκ +μέτρου +δίδωσιν +τὸ +Πνεῦμα. +ὁ +Πατὴρ +ἀγαπᾷ +τὸν +Υἱόν, +καὶ +πάντα +δέδωκεν +ἐν +τῇ +χειρὶ +αὐτοῦ. +ὁ +πιστεύων +εἰς +τὸν +Υἱὸν +ἔχει +ζωὴν +αἰώνιον· +δὲ +ὁ +ἀπειθῶν +τῷ +Υἱῷ +οὐκ +ὄψεται +ζωήν, +ἀλλ’ +ἡ +ὀργὴ +τοῦ +Θεοῦ +μένει +ἐπ’ +αὐτόν. +οὖν +Ὡς +ἔγνω +ὁ +Κύριος +ὅτι +ἤκουσαν +οἱ +Φαρισαῖοι +ὅτι +Ἰησοῦς +πλείονας +μαθητὰς +ποιεῖ +καὶ +βαπτίζει +ἢ +Ἰωάνης, +—καίτοιγε +Ἰησοῦς +αὐτὸς +οὐκ +ἐβάπτιζεν +ἀλλ’ +οἱ +μαθηταὶ +αὐτοῦ,— +ἀφῆκεν +τὴν +Ἰουδαίαν +καὶ +ἀπῆλθεν +πάλιν +εἰς +τὴν +Γαλιλαίαν. +δὲ +Ἔδει +αὐτὸν +διέρχεσθαι +διὰ +τῆς +Σαμαρίας. +οὖν +ἔρχεται +εἰς +πόλιν +τῆς +Σαμαρίας +λεγομένην +Συχὰρ, +πλησίον +τοῦ +χωρίου +ὃ +ἔδωκεν +Ἰακὼβ +Ἰωσὴφ +τῷ +υἱῷ +αὐτοῦ· +δὲ +ἦν +ἐκεῖ +πηγὴ +τοῦ +Ἰακώβ. +οὖν +ὁ +Ἰησοῦς +κεκοπιακὼς +ἐκ +τῆς +ὁδοιπορίας +ἐκαθέζετο +οὕτως +ἐπὶ +τῇ +πηγῇ· +ὥρα +ἦν +ὡς +ἕκτη. +ἔρχεται +γυνὴ +ἐκ +τῆς +Σαμαρίας +ἀντλῆσαι +ὕδωρ. +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Δός +μοι +πεῖν. +γὰρ +οἱ +μαθηταὶ +αὐτοῦ +ἀπεληλύθεισαν +εἰς +τὴν +πόλιν, +ἵνα +τροφὰς +ἀγοράσωσιν. +οὖν +λέγει +αὐτῷ +ἡ +γυνὴ +ἡ +Σαμαρεῖτις +Πῶς +σὺ +Ἰουδαῖος +ὢν +παρ’ +ἐμοῦ +γυναικὸς +Σαμαρείτιδος +οὔσης; +πεῖν +αἰτεῖς +γὰρ +οὐ +συνχρῶνται +Ἰουδαῖοι +Σαμαρείταις. +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῇ +Εἰ +ᾔδεις +τὴν +δωρεὰν +τοῦ +Θεοῦ, +καὶ +τίς +ἐστιν +ὁ +λέγων +σοι +Δός +μοι +πεῖν, +ἂν +σὺ +ᾔτησας +αὐτὸν +καὶ +ἄν +ἔδωκεν +σοι +ὕδωρ +ζῶν. +λέγει +αὐτῷ +Κύριε, +οὔτε +ἄντλημα +ἔχεις +καὶ +τὸ +φρέαρ +ἐστὶν +βαθύ· +οὖν +πόθεν +ἔχεις +τὸ +ὕδωρ +τὸ +ζῶν; +μὴ +σὺ +μείζων +εἶ +τοῦ +πατρὸς +ἡμῶν +Ἰακώβ, +ὃς +ἔδωκεν +ἡμῖν +τὸ +φρέαρ, +καὶ +αὐτὸς +ἐξ +αὐτοῦ +ἔπιεν +καὶ +οἱ +υἱοὶ +αὐτοῦ +καὶ +τὰ +θρέμματα +αὐτοῦ; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῇ +Πᾶς +ὁ +πίνων +ἐκ +τοῦ +ὕδατος +τούτου +διψήσει +πάλιν· +δ’ +ἂν +ὃς +πίῃ +ἐκ +τοῦ +ὕδατος +οὗ +ἐγὼ +δώσω +αὐτῷ, +οὐ +μὴ +διψήσει +εἰς +τὸν +αἰῶνα, +ἀλλὰ +τὸ +ὕδωρ +ὃ +δώσω +αὐτῷ +γενήσεται +ἐν +αὐτῷ +πηγὴ +ὕδατος +ἁλλομένου +εἰς +ζωὴν +αἰώνιον. +λέγει +πρὸς +αὐτὸν +ἡ +γυνή +Κύριε, +δός +μοι +τοῦτο +τὸ +ὕδωρ, +ἵνα +μὴ +διψῶ +μηδὲ +διέρχωμαι +ἐνθάδε +ἀντλεῖν. +λέγει +αὐτῇ +Ὕπαγε +φώνησον +τὸν +ἄνδρα +σου +καὶ +ἐλθὲ +ἐνθάδε. +ἀπεκρίθη +ἡ +γυνὴ +καὶ +εἶπεν +Οὐκ +ἔχω +ἄνδρα. +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Καλῶς +εἶπες +ὅτι +Ἄνδρα +οὐκ +ἔχω· +γὰρ +πέντε +ἄνδρας +ἔσχες, +καὶ +ὃν +νῦν +ἔχεις +οὐκ +ἔστιν +σου +ἀνήρ· +τοῦτο +ἀληθὲς +εἴρηκας. +λέγει +αὐτῷ +ἡ +γυνή +Κύριε, +θεωρῶ +ὅτι +προφήτης +εἶ +σύ. +οἱ +πατέρες +ἡμῶν +ἐν +τῷ +ὄρει +τούτῳ +προσεκύνησαν· +καὶ +ὑμεῖς +λέγετε +ὅτι +ἐν +Ἱεροσολύμοις +ἐστὶν +ὁ +τόπος +ὅπου +προσκυνεῖν +δεῖ. +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Πίστευέ +μοι, +γύναι, +ὅτι +ἔρχεται +ὥρα +ὅτε +οὔτε +ἐν +τῷ +ὄρει +τούτῳ +οὔτε +ἐν +Ἱεροσολύμοις +προσκυνήσετε +τῷ +Πατρί. +ὑμεῖς +προσκυνεῖτε +ὃ +οὐκ +οἴδατε, +ἡμεῖς +προσκυνοῦμεν +ὃ +οἴδαμεν, +ὅτι +ἡ +σωτηρία +ἐκ +τῶν +Ἰουδαίων +ἐστίν· +ἀλλὰ +ἔρχεται +ὥρα +καὶ +νῦν +ἐστιν, +ὅτε +οἱ +ἀληθινοὶ +προσκυνηταὶ +προσκυνήσουσιν +τῷ +Πατρὶ +ἐν +πνεύματι +καὶ +ἀληθείᾳ· +γὰρ +καὶ +ὁ +Πατὴρ +τοιούτους +ζητεῖ +τοὺς +προσκυνοῦντας +αὐτόν· +Πνεῦμα +ὁ +Θεός, +καὶ +τοὺς +προσκυνοῦντας +ἐν +πνεύματι +καὶ +ἀληθείᾳ +προσκυνεῖν. +δεῖ +λέγει +αὐτῷ +ἡ +γυνή +Οἶδα +ὅτι +Μεσσίας +ὁ +λεγόμενος +Χριστός· +ἔρχεται, +ὅταν +ἔλθῃ +ἐκεῖνος, +ἀναγγελεῖ +ἡμῖν +ἅπαντα. +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Ἐγώ +ὁ +λαλῶν +σοι. +εἰμι, +Καὶ +ἐπὶ +τούτῳ +ἦλθαν +οἱ +μαθηταὶ +αὐτοῦ, +καὶ +ἐθαύμαζον +ὅτι +μετὰ +γυναικὸς +ἐλάλει· +μέντοι +οὐδεὶς +εἶπεν +Τί +ζητεῖς +ἢ +τί +λαλεῖς +μετ’ +αὐτῆς; +οὖν +ἀφῆκεν +τὴν +ὑδρίαν +αὐτῆς +ἡ +γυνὴ +καὶ +ἀπῆλθεν +εἰς +τὴν +πόλιν, +καὶ +λέγει +τοῖς +ἀνθρώποις +Δεῦτε +ἴδετε +ἄνθρωπον +ὃς +εἶπέν +μοι +πάντα +ἃ +ἐποίησα· +μήτι +οὗτός +ἐστιν +ὁ +Χριστός; +ἐξῆλθον +ἐκ +τῆς +πόλεως +καὶ +ἤρχοντο +πρὸς +αὐτόν. +Ἐν +τῷ +μεταξὺ +ἠρώτων +αὐτὸν +οἱ +μαθηταὶ +λέγοντες +Ῥαββεί, +φάγε. +δὲ +ὁ +εἶπεν +αὐτοῖς +Ἐγὼ +βρῶσιν +ἔχω +φαγεῖν +ἣν +ὑμεῖς +οὐκ +οἴδατε. +οὖν +ἔλεγον +οἱ +μαθηταὶ +πρὸς +ἀλλήλους +Μή +τις +ἤνεγκεν +αὐτῷ +φαγεῖν; +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ἐμὸν +βρῶμά +ἐστιν +ἵνα +ποιῶ +τὸ +θέλημα +τοῦ +πέμψαντός +με +καὶ +τελειώσω +αὐτοῦ +τὸ +ἔργον. +οὐχ +ὑμεῖς +λέγετε +ὅτι +Ἔτι +τετράμηνός +ἐστιν +καὶ +ὁ +θερισμὸς +ἔρχεται; +ἰδοὺ +λέγω +ὑμῖν, +ἐπάρατε +τοὺς +ὀφθαλμοὺς +ὑμῶν +καὶ +θεάσασθε +τὰς +χώρας, +ὅτι +λευκαί +εἰσιν +πρὸς +θερισμόν. +ἤδη +ὁ +θερίζων +μισθὸν +λαμβάνει +καὶ +συνάγει +καρπὸν +εἰς +ζωὴν +αἰώνιον, +ἵνα +ὁμοῦ +χαίρῃ +ὁ +σπείρων +καὶ +ὁ +θερίζων. +γὰρ +ἐν +τούτῳ +ὁ +λόγος +ἐστὶν +ἀληθινὸς +ὅτι +ἄλλος +ἐστὶν +ὁ +σπείρων +καὶ +ἄλλος +ὁ +θερίζων. +ἐγὼ +ἀπέστειλα +ὑμᾶς +θερίζειν +ὃ +οὐχ +ὑμεῖς +κεκοπιάκατε· +ἄλλοι +κεκοπιάκασιν, +καὶ +ὑμεῖς +εἰς +τὸν +κόπον +αὐτῶν +εἰσεληλύθατε. +δὲ +Ἐκ +τῆς +πόλεως +ἐκείνης +πολλοὶ +τῶν +Σαμαρειτῶν +ἐπίστευσαν +εἰς +αὐτὸν +διὰ +τὸν +λόγον +τῆς +γυναικὸς +μαρτυρούσης +ὅτι +Εἶπέν +μοι +πάντα +ἃ +ἐποίησα. +οὖν +ὡς +ἦλθον +πρὸς +αὐτὸν +οἱ +Σαμαρεῖται, +ἠρώτων +αὐτὸν +μεῖναι +παρ’ +αὐτοῖς· +καὶ +ἔμεινεν +ἐκεῖ +δύο +ἡμέρας. +καὶ +πολλῷ +πλείους +ἐπίστευσαν +διὰ +τὸν +λόγον +αὐτοῦ, +τε +τῇ +γυναικὶ +ἔλεγον +ὅτι +Οὐκέτι +διὰ +τὴν +σὴν +λαλιὰν +πιστεύομεν· +γὰρ +αὐτοὶ +ἀκηκόαμεν, +καὶ +οἴδαμεν +ὅτι +οὗτός +ἐστιν +ἀληθῶς +ὁ +Σωτὴρ +τοῦ +κόσμου. +δὲ +Μετὰ +τὰς +δύο +ἡμέρας +ἐξῆλθεν +ἐκεῖθεν +εἰς +τὴν +Γαλιλαίαν. +γὰρ +αὐτὸς +Ἰησοῦς +ἐμαρτύρησεν +ὅτι +προφήτης +ἐν +τῇ +ἰδίᾳ +πατρίδι +τιμὴν +οὐκ +ἔχει. +οὖν +ὅτε +ἦλθεν +εἰς +τὴν +Γαλιλαίαν, +ἐδέξαντο +αὐτὸν +οἱ +Γαλιλαῖοι, +ἑωρακότες +πάντα +ὅσα +ἐποίησεν +ἐν +Ἱεροσολύμοις +ἐν +τῇ +ἑορτῇ· +γὰρ +καὶ +αὐτοὶ +ἦλθον +εἰς +τὴν +ἑορτήν. +οὖν +Ἦλθεν +πάλιν +εἰς +τὴν +Κανὰ +τῆς +Γαλιλαίας, +ὅπου +ἐποίησεν +τὸ +ὕδωρ +οἶνον. +Καὶ +ἦν +τις +βασιλικὸς +οὗ +ὁ +υἱὸς +ἠσθένει +ἐν +Καφαρναούμ· +οὗτος +ἀκούσας +ὅτι +Ἰησοῦς +ἥκει +ἐκ +τῆς +Ἰουδαίας +εἰς +τὴν +Γαλιλαίαν, +ἀπῆλθεν +πρὸς +αὐτὸν +καὶ +ἠρώτα +ἵνα +καταβῇ +καὶ +ἰάσηται +αὐτοῦ +τὸν +υἱόν· +γὰρ +ἤμελλεν +ἀποθνήσκειν. +οὖν +εἶπεν +ὁ +Ἰησοῦς +πρὸς +αὐτόν +Ἐὰν +μὴ +σημεῖα +καὶ +τέρατα +ἴδητε, +οὐ +μὴ +πιστεύσητε. +λέγει +πρὸς +αὐτὸν +ὁ +βασιλικός +Κύριε, +κατάβηθι +πρὶν +ἀποθανεῖν +τὸ +παιδίον +μου. +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Πορεύου· +ὁ +υἱός +σου +ζῇ. +ἐπίστευσεν +ὁ +ἄνθρωπος +τῷ +λόγῳ +ὃν +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς, +καὶ +ἐπορεύετο. +δὲ +ἤδη +αὐτοῦ +καταβαίνοντος +οἱ +δοῦλοι +ὑπήντησαν +αὐτῷ +λέγοντες +ὅτι +ὁ +παῖς +αὐτοῦ +ζῇ. +οὖν +ἐπύθετο +τὴν +ὥραν +παρ’ +αὐτῶν +ἐν +ᾗ +κομψότερον +ἔσχεν· +οὖν +εἶπαν +αὐτῷ +ὅτι +Ἐχθὲς +ὥραν +ἑβδόμην +ἀφῆκεν +αὐτὸν +ὁ +πυρετός. +οὖν +ἔγνω +ὁ +πατὴρ +ὅτι +ἐκείνῃ +τῇ +ὥρᾳ +ἐν +ᾗ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Ὁ +υἱός +σου +ζῇ· +καὶ +ἐπίστευσεν +αὐτὸς +καὶ +ἡ +οἰκία +αὐτοῦ +ὅλη. +δὲ +πάλιν +Τοῦτο +δεύτερον +σημεῖον +ἐποίησεν +ὁ +Ἰησοῦς +ἐλθὼν +ἐκ +τῆς +Ἰουδαίας +εἰς +τὴν +Γαλιλαίαν. +Μετὰ +ταῦτα +ἦν +ἑορτὴ +τῶν +Ἰουδαίων, +καὶ +ἀνέβη +Ἰησοῦς +εἰς +Ἱεροσόλυμα. +δὲ +Ἔστιν +ἐν +τοῖς +Ἱεροσολύμοις +ἐπὶ +τῇ +προβατικῇ +κολυμβήθρα, +ἡ +ἐπιλεγομένη +Ἑβραϊστὶ +Βηθζαθά, +πέντε +στοὰς +ἔχουσα. +ἐν +ταύταις +κατέκειτο +πλῆθος +τῶν +ἀσθενούντων, +τυφλῶν, +χωλῶν, +ξηρῶν(, +ἐκδεχομένων +τὴν +τοῦ +ὕδατος +κίνησιν. +γὰρ +ἄγγελος +κατὰ +καιρὸν +κατέβαινεν +ἐν +τῇ +κολυμβήθρᾳ +καὶ +ἐτάρασσε +τὸ +ὕδωρ· +οὖν +ὁ +πρῶτος +ἐμβὰς +μετὰ +τὴν +ταραχὴν +τοῦ +ὕδατος +ὑγιὴς +ἐγίνετο, +ᾧ +δήποτε +κατείχετο +νοσήματι). +δέ +ἦν +τις +ἄνθρωπος +ἐκεῖ +τριάκοντα +καὶ +ὀκτὼ +ἔτη +ἔχων +ἐν +τῇ +ἀσθενείᾳ +αὐτοῦ· +ὁ +Ἰησοῦς +τοῦτον +κατακείμενον, +ἰδὼν +καὶ +γνοὺς +ὅτι +πολὺν +χρόνον +ἤδη +ἔχει, +λέγει +αὐτῷ +Θέλεις +ὑγιὴς +γενέσθαι; +ἀπεκρίθη +αὐτῷ +ὁ +ἀσθενῶν +Κύριε, +ἄνθρωπον +οὐκ +ἔχω, +ἵνα +ὅταν +ταραχθῇ +τὸ +ὕδωρ +βάλῃ +με +εἰς +τὴν +κολυμβήθραν· +δὲ +ἐν +ᾧ +ἔρχομαι +ἐγὼ, +ἄλλος +πρὸ +ἐμοῦ +καταβαίνει. +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἔγειρε +ἆρον +τὸν +κράβαττόν +σου +καὶ +περιπάτει. +καὶ +εὐθέως +ἐγένετο +ὑγιὴς +ὁ +ἄνθρωπος, +καὶ +ἦρεν +τὸν +κράβαττον +αὐτοῦ +καὶ +περιεπάτει. +δὲ +Ἦν +σάββατον +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ. +οὖν +ἔλεγον +οἱ +Ἰουδαῖοι +τῷ +τεθεραπευμένῳ +Σάββατόν +ἐστιν, +καὶ +οὐκ +ἔξεστίν +σοι +ἆραι +τὸν +κράβαττον. +δὲ +ὃς +ἀπεκρίθη +αὐτοῖς +Ὁ +ποιήσας +με +ὑγιῆ, +ἐκεῖνός +μοι +εἶπεν +Ἆρον +τὸν +κράβαττόν +σου +καὶ +περιπάτει. +ἠρώτησαν +αὐτόν +Τίς +ἐστιν +ὁ +ἄνθρωπος +ὁ +εἰπών +σοι +Ἆρον +καὶ +περιπάτει; +δὲ +ὁ +ἰαθεὶς +οὐκ +ᾔδει +τίς +ἐστιν· +γὰρ +ὁ +Ἰησοῦς +ἐξένευσεν +ὄχλου +ὄντος +ἐν +τῷ +τόπῳ. +Μετὰ +ταῦτα +εὑρίσκει +αὐτὸν +ὁ +Ἰησοῦς +ἐν +τῷ +ἱερῷ +καὶ +εἶπεν +αὐτῷ +Ἴδε +ὑγιὴς +γέγονας· +μηκέτι +ἁμάρτανε, +ἵνα +μὴ +χεῖρόν +τι +σοί +γένηται. +ἀπῆλθεν +ὁ +ἄνθρωπος +καὶ +εἶπεν +τοῖς +Ἰουδαίοις +ὅτι +Ἰησοῦς +ἐστιν +ὁ +ποιήσας +αὐτὸν +ὑγιῆ. +καὶ +διὰ +τοῦτο +ἐδίωκον +οἱ +Ἰουδαῖοι +τὸν +Ἰησοῦν, +ὅτι +ταῦτα +ἐποίει +ἐν +σαββάτῳ. +δὲ +ὁ +ἀπεκρίνατο +αὐτοῖς +Ὁ +Πατήρ +μου +ἕως +ἄρτι +ἐργάζεται, +κἀγὼ +ἐργάζομαι· +οὖν +διὰ +τοῦτο +μᾶλλον +ἐζήτουν +αὐτὸν +ἀποκτεῖναι, +οἱ +Ἰουδαῖοι +ὅτι +οὐ +μόνον +ἔλυεν +τὸ +σάββατον, +ἀλλὰ +καὶ +Πατέρα +ἴδιον +ἔλεγεν +τὸν +Θεόν, +ἴσον +ἑαυτὸν +ποιῶν +τῷ +Θεῷ. +οὖν +Ἀπεκρίνατο +ὁ +Ἰησοῦς +καὶ +ἔλεγεν +αὐτοῖς +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +οὐ +δύναται +ὁ +Υἱὸς +ποιεῖν +ἀφ’ +ἑαυτοῦ +οὐδὲν, +ἂν +μή +βλέπῃ +τι +τὸν +Πατέρα +ποιοῦντα· +γὰρ +ἂν +ἃ +ἐκεῖνος +ποιῇ, +ταῦτα +καὶ +ὁ +Υἱὸς +ὁμοίως +ποιεῖ. +γὰρ +ὁ +Πατὴρ +φιλεῖ +τὸν +Υἱὸν +καὶ +δείκνυσιν +αὐτῷ +πάντα +ἃ +αὐτὸς +ποιεῖ, +καὶ +μείζονα +τούτων +ἔργα, +δείξει +αὐτῷ +ἵνα +ὑμεῖς +θαυμάζητε. +γὰρ +ὥσπερ +ὁ +Πατὴρ +ἐγείρει +τοὺς +νεκροὺς +καὶ +ζωοποιεῖ, +οὕτως +καὶ +ὁ +Υἱὸς +οὓς +θέλει +ζωοποιεῖ. +γὰρ +οὐδὲ +ὁ +Πατὴρ +κρίνει +οὐδένα, +ἀλλὰ +τὴν +κρίσιν +πᾶσαν +δέδωκεν +τῷ +Υἱῷ, +ἵνα +πάντες +τιμῶσι +τὸν +Υἱὸν +καθὼς +τιμῶσι +τὸν +Πατέρα. +ὁ +μὴ +τιμῶν +τὸν +Υἱὸν +οὐ +τιμᾷ +τὸν +Πατέρα +τὸν +πέμψαντα +αὐτόν. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν +ὅτι +ὁ +τὸν +λόγον +μου +ἀκούων +καὶ +πιστεύων +τῷ +πέμψαντί +με +ἔχει +ζωὴν +αἰώνιον, +καὶ +εἰς +κρίσιν +οὐκ +ἔρχεται +ἀλλὰ +μεταβέβηκεν +ἐκ +τοῦ +θανάτου +εἰς +τὴν +ζωήν. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν +ὅτι +ἔρχεται +ὥρα +καὶ +νῦν +ἐστιν +ὅτε +οἱ +νεκροὶ +ἀκούσουσιν +τῆς +φωνῆς +τοῦ +Υἱοῦ +τοῦ +Θεοῦ +καὶ +οἱ +ἀκούσαντες +ζήσουσιν. +γὰρ +ὥσπερ +ὁ +Πατὴρ +ἔχει +ζωὴν +ἐν +ἑαυτῷ, +οὕτως +καὶ +τῷ +Υἱῷ +ἔδωκεν +ζωὴν +ἔχειν +ἐν +ἑαυτῷ. +καὶ +ἐξουσίαν +ἔδωκεν +αὐτῷ +κρίσιν +ποιεῖν, +ὅτι +Υἱὸς +ἀνθρώπου +ἐστίν. +μὴ +θαυμάζετε +τοῦτο, +ὅτι +ἔρχεται +ὥρα +ἐν +ᾗ +πάντες +οἱ +ἐν +τοῖς +μνημείοις +ἀκούσουσιν +τῆς +φωνῆς +αὐτοῦ +καὶ +ἐκπορεύσονται +οἱ +τὰ +ἀγαθὰ +ποιήσαντες +εἰς +ἀνάστασιν +ζωῆς, +οἱ +τὰ +φαῦλα +πράξαντες +εἰς +ἀνάστασιν +κρίσεως. +Οὐ +δύναμαι +ἐγὼ +ποιεῖν +ἀπ’ +ἐμαυτοῦ +οὐδέν· +καθὼς +ἀκούω +κρίνω, +καὶ +ἡ +κρίσις +ἡ +ἐμὴ +δικαία +ἐστίν, +ὅτι +οὐ +ζητῶ +τὸ +θέλημα +τὸ +ἐμὸν +ἀλλὰ +τὸ +θέλημα +τοῦ +πέμψαντός +με. +Ἐὰν +ἐγὼ +μαρτυρῶ +περὶ +ἐμαυτοῦ, +ἡ +μαρτυρία +μου +οὐκ +ἔστιν +ἀληθής· +ἄλλος +ἐστὶν +ὁ +μαρτυρῶν +περὶ +ἐμοῦ, +καὶ +οἶδα +ὅτι +ἀληθής +ἐστιν +ἡ +μαρτυρία +ἣν +μαρτυρεῖ +περὶ +ἐμοῦ. +ὑμεῖς +ἀπεστάλκατε +πρὸς +Ἰωάνην, +καὶ +μεμαρτύρηκεν +τῇ +ἀληθείᾳ· +δὲ +ἐγὼ +οὐ +παρὰ +ἀνθρώπου +τὴν +μαρτυρίαν +λαμβάνω, +ἀλλὰ +ταῦτα +λέγω +ἵνα +ὑμεῖς +σωθῆτε. +ἐκεῖνος +ἦν +ὁ +λύχνος +ὁ +καιόμενος +καὶ +φαίνων, +δὲ +ὑμεῖς +ἠθελήσατε +ἀγαλλιαθῆναι +πρὸς +ὥραν +ἐν +τῷ +φωτὶ +αὐτοῦ. +δὲ +ἐγὼ +ἔχω +τὴν +μαρτυρίαν +μείζω +τοῦ +Ἰωάνου· +γὰρ +τὰ +ἔργα +ἃ +δέδωκέν +μοι +ὁ +Πατὴρ +ἵνα +τελειώσω +αὐτά, +αὐτὰ +τὰ +ἔργα +ἃ +ποιῶ, +μαρτυρεῖ +περὶ +ἐμοῦ +ὅτι +ὁ +Πατήρ +με +ἀπέσταλκεν. +καὶ +ὁ +πέμψας +με +Πατὴρ, +ἐκεῖνος +μεμαρτύρηκεν +περὶ +ἐμοῦ. +οὔτε +φωνὴν +αὐτοῦ +πώποτε +ἀκηκόατε +οὔτε +εἶδος +αὐτοῦ +ἑωράκατε, +καὶ +οὐκ +ἔχετε +τὸν +λόγον +αὐτοῦ +ἐν +ὑμῖν +μένοντα, +ὅτι +ὃν +ἀπέστειλεν +ἐκεῖνος, +τούτῳ +ὑμεῖς +οὐ +πιστεύετε. +ἐραυνᾶτε +τὰς +γραφάς, +ὅτι +ὑμεῖς +δοκεῖτε +ἐν +αὐταῖς +ζωὴν +αἰώνιον +ἔχειν· +καὶ +ἐκεῖναί +εἰσιν +αἱ +μαρτυροῦσαι +περὶ +ἐμοῦ· +καὶ +οὐ +θέλετε +ἐλθεῖν +πρός +με +ἵνα +ζωὴν +ἔχητε. +Δόξαν +παρὰ +ἀνθρώπων +οὐ +λαμβάνω, +ἀλλὰ +ἔγνωκα +ὑμᾶς +ὅτι +τὴν +ἀγάπην +τοῦ +Θεοῦ +οὐκ +ἔχετε +ἐν +ἑαυτοῖς. +ἐγὼ +ἐλήλυθα +ἐν +τῷ +ὀνόματι +τοῦ +Πατρός +μου, +καὶ +οὐ +λαμβάνετέ +με· +ἐὰν +ἄλλος +ἔλθῃ +ἐν +τῷ +ὀνόματι +τῷ +ἰδίῳ, +ἐκεῖνον +λήμψεσθε. +πῶς +δύνασθε +ὑμεῖς +πιστεῦσαι, +δόξαν +παρὰ +ἀλλήλων +λαμβάνοντες, +καὶ +τὴν +δόξαν +τὴν +παρὰ +τοῦ +μόνου +Θεοῦ +οὐ +ζητεῖτε; +μὴ +δοκεῖτε +ὅτι +ἐγὼ +κατηγορήσω +ὑμῶν +πρὸς +τὸν +Πατέρα· +ἔστιν +ὁ +κατηγορῶν +ὑμῶν +Μωϋσῆς, +εἰς +ὃν +ὑμεῖς +ἠλπίκατε. +γὰρ +εἰ +ἐπιστεύετε +Μωϋσεῖ, +ἂν +ἐπιστεύετε +ἐμοί· +γὰρ +περὶ +ἐμοῦ +ἐκεῖνος +ἔγραψεν. +δὲ +εἰ +τοῖς +ἐκείνου +γράμμασιν +οὐ +πιστεύετε, +πῶς +τοῖς +ἐμοῖς +ῥήμασιν +πιστεύσετε; +Μετὰ +ταῦτα +ἀπῆλθεν +ὁ +Ἰησοῦς +πέραν +τῆς +θαλάσσης +τῆς +Γαλιλαίας +τῆς +Τιβεριάδος. +δὲ +ἠκολούθει +αὐτῷ +ὄχλος +πολύς, +ὅτι +ἑώρων +τὰ +σημεῖα +ἃ +ἐποίει +ἐπὶ +τῶν +ἀσθενούντων. +δὲ +ἀνῆλθεν +εἰς +τὸ +ὄρος +Ἰησοῦς, +καὶ +ἐκεῖ +ἐκάθητο +μετὰ +τῶν +μαθητῶν +αὐτοῦ. +δὲ +ἦν +ἐγγὺς +τὸ +πάσχα, +ἡ +ἑορτὴ +τῶν +Ἰουδαίων. +οὖν +ὁ +Ἰησοῦς +ἐπάρας +τοὺς +ὀφθαλμοὺς +καὶ +θεασάμενος +ὅτι +πολὺς +ὄχλος +ἔρχεται +πρὸς +αὐτὸν, +λέγει +πρὸς +Φίλιππον +Πόθεν +ἀγοράσωμεν +ἄρτους +ἵνα +φάγωσιν +οὗτοι; +δὲ +τοῦτο +ἔλεγεν +πειράζων +αὐτόν· +γὰρ +αὐτὸς +ᾔδει +τί +ποιεῖν. +ἔμελλεν +ἀπεκρίθη +αὐτῷ +ὁ +Φίλιππος +Διακοσίων +δηναρίων +ἄρτοι +οὐκ +ἀρκοῦσιν +αὐτοῖς, +ἵνα +ἕκαστος +βραχύ +τι +λάβῃ. +λέγει +αὐτῷ +εἷς +ἐκ +τῶν +μαθητῶν +αὐτοῦ, +Ἀνδρέας +ὁ +ἀδελφὸς +Σίμωνος +Πέτρου +Ἔστιν +παιδάριον +ὧδε +ὃς +ἔχει +πέντε +ἄρτους +κριθίνους +καὶ +δύο +ὀψάρια· +ἀλλὰ +ταῦτα +τί +ἐστιν +εἰς +τοσούτους; +εἶπεν +ὁ +Ἰησοῦς +Ποιήσατε +τοὺς +ἀνθρώπους +ἀναπεσεῖν. +δὲ +ἦν +χόρτος +πολὺς +ἐν +τῷ +τόπῳ. +οὖν +ἀνέπεσαν +οἱ +ἄνδρες +τὸν +ἀριθμὸν +ὡς +πεντακισχίλιοι. +οὖν +ἔλαβεν +τοὺς +ἄρτους +ὁ +Ἰησοῦς +καὶ +εὐχαριστήσας +διέδωκεν +τοῖς +ἀνακειμένοις, +ὁμοίως +καὶ +ἐκ +τῶν +ὀψαρίων +ὅσον +ἤθελον. +δὲ +ὡς +ἐνεπλήσθησαν, +λέγει +τοῖς +μαθηταῖς +αὐτοῦ +Συναγάγετε +τὰ +περισσεύσαντα +κλάσματα, +ἵνα +μή +τι +ἀπόληται. +οὖν, +συνήγαγον +καὶ +ἐγέμισαν +δώδεκα +κοφίνους +κλασμάτων +ἐκ +τῶν +πέντε +ἄρτων +τῶν +κριθίνων +ἃ +ἐπερίσσευσαν +τοῖς +βεβρωκόσιν. +οὖν +Οἱ +ἄνθρωποι +ἰδόντες +ὃ +ἐποίησεν +σημεῖον +ἔλεγον +ὅτι +Οὗτός +ἐστιν +ἀληθῶς +ὁ +προφήτης +ὁ +ἐρχόμενος +εἰς +τὸν +κόσμον. +οὖν +γνοὺς +ὅτι +μέλλουσιν +ἔρχεσθαι +καὶ +ἁρπάζειν +αὐτὸν +ἵνα +ποιήσωσιν +βασιλέα, +ἀνεχώρησεν +πάλιν +εἰς +τὸ +ὄρος +Ἰησοῦς +αὐτὸς +μόνος. +δὲ +Ὡς +ὀψία +ἐγένετο, +κατέβησαν +οἱ +μαθηταὶ +αὐτοῦ +ἐπὶ +τὴν +θάλασσαν, +καὶ +ἐμβάντες +εἰς +πλοῖον +ἤρχοντο +πέραν +τῆς +θαλάσσης +εἰς +Καφαρναούμ. +καὶ +σκοτία +ἤδη +ἐγεγόνει +καὶ +οὔπω +ἐληλύθει +πρὸς +αὐτοὺς +ὁ +Ἰησοῦς, +τε +ἥ +θάλασσα +ἀνέμου +μεγάλου +πνέοντος +διεγείρετο. +οὖν +ἐληλακότες +ὡς +σταδίους +εἴκοσι +πέντε +ἢ +τριάκοντα +θεωροῦσιν +τὸν +Ἰησοῦν +περιπατοῦντα +ἐπὶ +τῆς +θαλάσσης +καὶ +ἐγγὺς +τοῦ +πλοίου +γινόμενον, +καὶ +ἐφοβήθησαν. +δὲ +ὁ +λέγει +αὐτοῖς +Ἐγώ +εἰμι, +μὴ +φοβεῖσθε. +οὖν +ἤθελον +λαβεῖν +αὐτὸν +εἰς +τὸ +πλοῖον, +καὶ +εὐθέως +ἐγένετο +τὸ +πλοῖον +ἐπὶ +τῆς +γῆς +εἰς +ἣν +ὑπῆγον. +Τῇ +ἐπαύριον +ὁ +ὄχλος +ὁ +ἑστηκὼς +πέραν +τῆς +θαλάσσης +εἶδον +ὅτι +πλοιάριον +ἄλλο +οὐκ +ἦν +ἐκεῖ +εἰ +μὴ +ἕν, +καὶ +ὅτι +οὐ +συνεισῆλθεν +τοῖς +μαθηταῖς +αὐτοῦ +ὁ +Ἰησοῦς +εἰς +τὸ +πλοῖον +ἀλλὰ +μόνοι +οἱ +μαθηταὶ +αὐτοῦ +ἀπῆλθον· +ἀλλὰ +πλοιάρια +ἦλθεν +ἐκ +Τιβεριάδος +ἐγγὺς +τοῦ +τόπου +ὅπου +ἔφαγον +τὸν +ἄρτον +εὐχαριστήσαντος +τοῦ +Κυρίου. +οὖν +ὅτε +εἶδεν +ὁ +ὄχλος +ὅτι +Ἰησοῦς +οὐκ +ἔστιν +ἐκεῖ +οὐδὲ +οἱ +μαθηταὶ +αὐτοῦ, +ἐνέβησαν +αὐτοὶ +εἰς +τὰ +πλοιάρια +καὶ +ἦλθον +εἰς +Καφαρναοὺμ +ζητοῦντες +τὸν +Ἰησοῦν. +καὶ +εὑρόντες +αὐτὸν +πέραν +τῆς +θαλάσσης +εἶπον +αὐτῷ +Ῥαββεί, +πότε +ὧδε +γέγονας; +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +καὶ +εἶπεν +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ζητεῖτέ +με +οὐχ +ὅτι +εἴδετε +σημεῖα, +ἀλλ’ +ὅτι +ἐφάγετε +ἐκ +τῶν +ἄρτων +καὶ +ἐχορτάσθητε. +ἐργάζεσθε +μὴ +τὴν +βρῶσιν +τὴν +ἀπολλυμένην, +ἀλλὰ +τὴν +βρῶσιν +τὴν +μένουσαν +εἰς +ζωὴν +αἰώνιον, +ἣν +ὁ +Υἱὸς +τοῦ +ἀνθρώπου +ὑμῖν +δώσει· +γὰρ +τοῦτον +ὁ +Πατὴρ +ὁ +Θεός. +ἐσφράγισεν +οὖν +εἶπον +πρὸς +αὐτόν +Τί +ποιῶμεν +ἵνα +ἐργαζώμεθα +τὰ +ἔργα +τοῦ +Θεοῦ; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτοῖς +Τοῦτό +ἐστιν +τὸ +ἔργον +τοῦ +Θεοῦ, +ἵνα +πιστεύητε +εἰς +ὃν +ἀπέστειλεν +ἐκεῖνος. +οὖν +εἶπον +αὐτῷ +οὖν +Τί +σημεῖον, +ποιεῖς +σὺ +ἵνα +ἴδωμεν +καὶ +πιστεύσωμέν +σοι; +τί +ἐργάζῃ; +οἱ +πατέρες +ἡμῶν +τὸ +μάννα +ἔφαγον +ἐν +τῇ +ἐρήμῳ, +καθώς +ἐστιν +γεγραμμένον +Ἄρτον +ἐκ +τοῦ +οὐρανοῦ +ἔδωκεν +αὐτοῖς +φαγεῖν. +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +οὐ +Μωϋσῆς +δέδωκεν +ὑμῖν +τὸν +ἄρτον +ἐκ +τοῦ +οὐρανοῦ, +ἀλλ’ +ὁ +Πατήρ +μου +δίδωσιν +ὑμῖν +τὸν +ἄρτον +ἐκ +τοῦ +οὐρανοῦ +τὸν +ἀληθινόν· +γὰρ +ὁ +ἄρτος +τοῦ +Θεοῦ +ἐστιν +ὁ +καταβαίνων +ἐκ +τοῦ +οὐρανοῦ +καὶ +ζωὴν +διδοὺς +τῷ +κόσμῳ. +οὖν +εἶπον +πρὸς +αὐτόν +Κύριε, +πάντοτε +δὸς +ἡμῖν +τὸν +ἄρτον +τοῦτον. +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἐγώ +εἰμι +ὁ +ἄρτος +τῆς +ζωῆς· +ὁ +ἐρχόμενος +πρὸς +ἐμὲ +οὐ +μὴ +πεινάσῃ, +καὶ +ὁ +πιστεύων +εἰς +ἐμὲ +οὐ +μὴ +διψήσει +πώποτε. +ἀλλ’ +εἶπον +ὑμῖν +ὅτι +καὶ +ἑωράκατέ +με +καὶ +οὐ +πιστεύετε. +Πᾶν +ὃ +δίδωσίν +μοι +ὁ +Πατὴρ +πρὸς +ἐμὲ +ἥξει, +καὶ +τὸν +ἐρχόμενον +πρός +με +οὐ +μὴ +ἐκβάλω +ἔξω, +ὅτι +καταβέβηκα +ἀπὸ +τοῦ +οὐρανοῦ +οὐχ +ἵνα +ποιῶ +τὸ +θέλημα +τὸ +ἐμὸν +ἀλλὰ +τὸ +θέλημα +τοῦ +πέμψαντός +με. +δέ +τοῦτο +ἐστιν +τὸ +θέλημα +τοῦ +πέμψαντός +με, +ἵνα +πᾶν +ὃ +δέδωκέν +μοι +μὴ +ἀπολέσω +ἐξ +αὐτοῦ, +ἀλλὰ +ἀναστήσω +αὐτὸ +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ. +γάρ +τοῦτο +ἐστιν +τὸ +θέλημα +τοῦ +Πατρός +μου, +ἵνα +πᾶς +ὁ +θεωρῶν +τὸν +Υἱὸν +καὶ +πιστεύων +εἰς +αὐτὸν +ἔχῃ +ζωὴν +αἰώνιον, +καὶ +ἀναστήσω +αὐτὸν +ἐγὼ +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ. +οὖν +Ἐγόγγυζον +οἱ +Ἰουδαῖοι +περὶ +αὐτοῦ +ὅτι +εἶπεν +Ἐγώ +εἰμι +ὁ +ἄρτος +ὁ +καταβὰς +ἐκ +τοῦ +οὐρανοῦ, +καὶ +ἔλεγον +Οὐχ +οὗτός +ἐστιν +Ἰησοῦς +ὁ +υἱὸς +Ἰωσήφ, +οὗ +ἡμεῖς +οἴδαμεν +τὸν +πατέρα +καὶ +τὴν +μητέρα; +πῶς +νῦν +λέγει +ὅτι +Ἐκ +τοῦ +οὐρανοῦ +καταβέβηκα; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτοῖς +Μὴ +γογγύζετε +μετ’ +ἀλλήλων. +οὐδεὶς +δύναται +ἐλθεῖν +πρός +με +ἐὰν +μὴ +ὁ +Πατὴρ +ὁ +πέμψας +με +ἑλκύσῃ +αὐτόν, +κἀγὼ +ἀναστήσω +αὐτὸν +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ. +ἔστιν +γεγραμμένον +ἐν +τοῖς +προφήταις +Καὶ +ἔσονται +πάντες +διδακτοὶ +Θεοῦ· +πᾶς +ὁ +ἀκούσας +παρὰ +τοῦ +Πατρὸς +καὶ +μαθὼν +ἔρχεται +πρὸς +ἐμέ. +οὐχ +ὅτι +τὸν +Πατέρα +ἑώρακέν +τις, +εἰ +μὴ +ὁ +ὢν +παρὰ +τοῦ +Θεοῦ, +οὗτος +ἑώρακεν +τὸν +Πατέρα. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ὁ +πιστεύων +ἔχει +ζωὴν +αἰώνιον. +ἐγώ +εἰμι +ὁ +ἄρτος +τῆς +ζωῆς. +οἱ +πατέρες +ὑμῶν +ἔφαγον +ἐν +τῇ +ἐρήμῳ +τὸ +μάννα +καὶ +ἀπέθανον· +οὗτός +ἐστιν +ὁ +ἄρτος +ὁ +ἐκ +τοῦ +οὐρανοῦ +καταβαίνων, +ἵνα +τις +ἐξ +αὐτοῦ +φάγῃ +καὶ +μὴ +ἀποθάνῃ. +ἐγώ +εἰμι +ὁ +ἄρτος +ὁ +ζῶν +ὁ +ἐκ +τοῦ +οὐρανοῦ +καταβάς· +ἐάν +τις +φάγῃ +ἐκ +τούτου +τοῦ +ἄρτου, +ζήσει +εἰς +τὸν +αἰῶνα· +δὲ +καὶ +ὁ +ἄρτος +ὃν +ἐγὼ +δώσω +ἡ +σάρξ +μού +ἐστιν +ὑπὲρ +τῆς +τοῦ +κόσμου +ζωῆς. +οὖν +Ἐμάχοντο +πρὸς +ἀλλήλους +οἱ +Ἰουδαῖοι +λέγοντες +Πῶς +δύναται +οὗτος +ἡμῖν +δοῦναι +τὴν +σάρκα +φαγεῖν; +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ἐὰν +μὴ +φάγητε +τὴν +σάρκα +τοῦ +Υἱοῦ +τοῦ +ἀνθρώπου +καὶ +πίητε +αὐτοῦ +τὸ +αἷμα, +οὐκ +ἔχετε +ζωὴν +ἐν +ἑαυτοῖς. +ὁ +τρώγων +μου +τὴν +σάρκα +καὶ +πίνων +μου +τὸ +αἷμα +ἔχει +ζωὴν +αἰώνιον, +κἀγὼ +ἀναστήσω +αὐτὸν +τῇ +ἐσχάτῃ +ἡμέρᾳ. +γὰρ +ἡ +σάρξ +μου +ἀληθής +βρῶσις, +ἐστιν +καὶ +τὸ +αἷμά +μου +ἀληθής +πόσις. +ἐστιν +ὁ +τρώγων +μου +τὴν +σάρκα +καὶ +πίνων +μου +τὸ +αἷμα +ἐν +ἐμοὶ +μένει +κἀγὼ +ἐν +αὐτῷ. +καθὼς +ἀπέστειλέν +με +ὁ +ζῶν +Πατὴρ +κἀγὼ +ζῶ +διὰ +τὸν +Πατέρα, +καὶ +ὁ +τρώγων +με +κἀκεῖνος +ζήσει +δι’ +ἐμέ. +οὗτός +ἐστιν +ὁ +ἄρτος +ὁ +ἐξ +οὐρανοῦ +καταβάς, +οὐ +καθὼς +ἔφαγον +οἱ +πατέρες +καὶ +ἀπέθανον· +ὁ +τρώγων +τοῦτον +τὸν +ἄρτον +ζήσει +εἰς +τὸν +αἰῶνα. +Ταῦτα +εἶπεν +ἐν +συναγωγῇ +διδάσκων +ἐν +Καφαρναούμ. +οὖν +Πολλοὶ +ἐκ +τῶν +μαθητῶν +αὐτοῦ +ἀκούσαντες +εἶπαν +Σκληρός +ἐστιν +ὁ +λόγος +οὗτος· +τίς +δύναται +αὐτοῦ +ἀκούειν; +δὲ +ὁ +Ἰησοῦς +εἰδὼς +ἐν +ἑαυτῷ +ὅτι +γογγύζουσιν +περὶ +τούτου +οἱ +μαθηταὶ +αὐτοῦ, +εἶπεν +αὐτοῖς +Τοῦτο +ὑμᾶς +σκανδαλίζει; +οὖν +ἐὰν +θεωρῆτε +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἀναβαίνοντα +ὅπου +ἦν +τὸ +πρότερον; +τὸ +πνεῦμά +ἐστιν +τὸ +ζωοποιοῦν, +ἡ +σὰρξ +οὐκ +ὠφελεῖ +οὐδέν· +τὰ +ῥήματα +ἃ +ἐγὼ +λελάληκα +ὑμῖν +πνεῦμά +ἐστιν +καὶ +ζωή +ἐστιν. +ἀλλ’ +εἰσὶν +ἐξ +ὑμῶν +τινες +οἳ +οὐ +πιστεύουσιν. +γὰρ +ᾔδει +ἐξ +ἀρχῆς +ὁ +Ἰησοῦς +τίνες +εἰσὶν +οἱ +μὴ +πιστεύοντες +καὶ +τίς +ἐστιν +ὁ +παραδώσων +αὐτόν. +καὶ +ἔλεγεν +Διὰ +τοῦτο +εἴρηκα +ὑμῖν +ὅτι +οὐδεὶς +δύναται +ἐλθεῖν +πρός +με +ἐὰν +μὴ +ᾖ +δεδομένον +αὐτῷ +ἐκ +τοῦ +Πατρός. +Ἐκ +τούτου +πολλοὶ +τῶν +μαθητῶν +αὐτοῦ +ἀπῆλθον +εἰς +τὰ +ὀπίσω +καὶ +οὐκέτι +μετ’ +αὐτοῦ +περιεπάτουν. +οὖν +εἶπεν +ὁ +Ἰησοῦς +τοῖς +δώδεκα +Μὴ +καὶ +ὑμεῖς +θέλετε +ὑπάγειν; +ἀπεκρίθη +αὐτῷ +Σίμων +Πέτρος +Κύριε, +πρὸς +τίνα +ἀπελευσόμεθα; +ῥήματα +ζωῆς +αἰωνίου +ἔχεις· +καὶ +ἡμεῖς +πεπιστεύκαμεν +καὶ +ἐγνώκαμεν +ὅτι +σὺ +εἶ +ὁ +Ἅγιος +τοῦ +Θεοῦ. +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Οὐκ +ἐγὼ +ὑμᾶς +τοὺς +δώδεκα +ἐξελεξάμην; +καὶ +ἐξ +ὑμῶν +εἷς +διάβολός +ἐστιν. +δὲ +ἔλεγεν +τὸν +Ἰούδαν +Σίμωνος +Ἰσκαριώτου· +γὰρ +οὗτος +ἔμελλεν +παραδιδόναι +αὐτόν, +εἷς +ἐκ +τῶν +δώδεκα. +Καὶ +μετὰ +ταῦτα +περιεπάτει +ὁ +Ἰησοῦς +ἐν +τῇ +Γαλιλαίᾳ· +γὰρ +οὐ +ἤθελεν +ἐν +τῇ +Ἰουδαίᾳ +περιπατεῖν, +ὅτι +ἐζήτουν +αὐτὸν +ἀποκτεῖναι. +οἱ +Ἰουδαῖοι +δὲ +ἦν +ἐγγὺς +ἡ +ἑορτὴ +τῶν +Ἰουδαίων +ἡ +σκηνοπηγία. +οὖν +εἶπον +πρὸς +αὐτὸν +οἱ +ἀδελφοὶ +αὐτοῦ +Μετάβηθι +ἐντεῦθεν +καὶ +ὕπαγε +εἰς +τὴν +Ἰουδαίαν, +ἵνα +καὶ +οἱ +μαθηταί +σου +θεωρήσουσιν +τὰ +ἔργα +σοῦ +ἃ +ποιεῖς· +γάρ +οὐδεὶς +τι +ἐν +κρυπτῷ +ποιεῖ +καὶ +ζητεῖ +αὐτὸς +ἐν +παρρησίᾳ +εἶναι. +εἰ +ταῦτα +ποιεῖς, +φανέρωσον +σεαυτὸν +τῷ +κόσμῳ. +γὰρ +οὐδὲ +οἱ +ἀδελφοὶ +αὐτοῦ +ἐπίστευον +εἰς +αὐτόν. +οὖν +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ὁ +καιρὸς +ὁ +ἐμὸς +οὔπω +πάρεστιν, +δὲ +ὁ +καιρὸς +ὁ +ὑμέτερος +πάντοτέ +ἐστιν +ἕτοιμος. +οὐ +δύναται +ὁ +κόσμος +μισεῖν +ὑμᾶς, +δὲ +ἐμὲ +μισεῖ, +ὅτι +ἐγὼ +μαρτυρῶ +περὶ +αὐτοῦ +ὅτι +τὰ +ἔργα +αὐτοῦ +πονηρά +ἐστιν. +ὑμεῖς +ἀνάβητε +εἰς +τὴν +ἑορτήν· +ἐγὼ +οὔπω +ἀναβαίνω +εἰς +τὴν +ἑορτὴν +ταύτην, +ὅτι +ὁ +ἐμὸς +καιρὸς +οὔπω +πεπλήρωται. +δὲ +ταῦτα +εἰπὼν +αὐτοῖς +ἔμεινεν +ἐν +τῇ +Γαλιλαίᾳ. +δὲ +Ὡς +ἀνέβησαν +οἱ +ἀδελφοὶ +αὐτοῦ +εἰς +τὴν +ἑορτήν, +τότε +καὶ +αὐτὸς +ἀνέβη, +οὐ +φανερῶς +ἀλλὰ +ὡς +ἐν +κρυπτῷ. +οὖν +οἱ +Ἰουδαῖοι +ἐζήτουν +αὐτὸν +ἐν +τῇ +ἑορτῇ +καὶ +ἔλεγον +Ποῦ +ἐστιν +ἐκεῖνος; +καὶ +γογγυσμὸς +περὶ +αὐτοῦ +ἦν +πολὺς +ἐν +τοῖς +ὄχλοις· +μὲν +οἱ +ἔλεγον +ὅτι +Ἀγαθός +ἐστιν, +δὲ +ἄλλοι +ἔλεγον +Οὔ, +ἀλλὰ +πλανᾷ +τὸν +ὄχλον. +μέντοι +οὐδεὶς +παρρησίᾳ +ἐλάλει +περὶ +αὐτοῦ +διὰ +τὸν +φόβον +τῶν +Ἰουδαίων. +δὲ +Ἤδη +τῆς +ἑορτῆς +μεσούσης +ἀνέβη +Ἰησοῦς +εἰς +τὸ +ἱερὸν +καὶ +ἐδίδασκεν. +οὖν +ἐθαύμαζον +οἱ +Ἰουδαῖοι +λέγοντες +Πῶς +οὗτος +γράμματα +οἶδεν +μὴ +μεμαθηκώς; +οὖν +ἀπεκρίθη +αὐτοῖς +Ἰησοῦς +καὶ +εἶπεν +Ἠ +ἐμὴ +διδαχὴ +οὐκ +ἔστιν +ἐμὴ +ἀλλὰ +τοῦ +πέμψαντός +με· +ἐάν +τις +θέλῃ +τὸ +θέλημα +αὐτοῦ +ποιεῖν, +γνώσεται +περὶ +τῆς +διδαχῆς, +πότερον +ἐκ +τοῦ +Θεοῦ +ἐστιν +ἢ +ἐγὼ +ἀπ’ +ἐμαυτοῦ +λαλῶ. +ὁ +ἀφ’ +ἑαυτοῦ +λαλῶν +τὴν +δόξαν +τὴν +ἰδίαν +ζητεῖ· +δὲ +ὁ +ζητῶν +τὴν +δόξαν +τοῦ +πέμψαντος +αὐτὸν, +οὗτος +ἀληθής +ἐστιν +καὶ +ἀδικία +ἐν +αὐτῷ +οὐκ +ἔστιν. +οὐ +Μωϋσῆς +ἔδωκεν +ὑμῖν +τὸν +νόμον; +καὶ +οὐδεὶς +ἐξ +ὑμῶν +ποιεῖ +τὸν +νόμον. +τί +με +ἀποκτεῖναι; +ζητεῖτε +ἀπεκρίθη +ὁ +ὄχλος +Δαιμόνιον +ἔχεις· +τίς +σε +ἀποκτεῖναι; +ζητεῖ +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτοῖς +Ἓν +ἔργον +ἐποίησα +καὶ +πάντες +θαυμάζετε. +διὰ +τοῦτο +Μωϋσῆς +δέδωκεν +ὑμῖν +τὴν +περιτομήν, +ὅτι +—οὐχ +ἐκ +τοῦ +Μωϋσέως +ἐστὶν +ἀλλ’ +ἐκ +τῶν +πατέρων,— +καὶ +ἐν +σαββάτῳ +περιτέμνετε +ἄνθρωπον. +εἰ +περιτομὴν +λαμβάνει +ἄνθρωπος +ἐν +σαββάτῳ +ἵνα +μὴ +λυθῇ +ὁ +νόμος +Μωϋσέως, +ἐμοὶ +χολᾶτε +ὅτι +ὅλον +ἄνθρωπον +ὑγιῆ +ἐποίησα +ἐν +σαββάτῳ; +μὴ +κρίνετε +κατ’ +ὄψιν, +ἀλλὰ +τὴν +δικαίαν +κρίσιν +κρίνατε. +οὖν +Ἔλεγον +τινες +ἐκ +τῶν +Ἱεροσολυμειτῶν +Οὐχ +οὗτός +ἐστιν +ὃν +ἀποκτεῖναι; +ζητοῦσιν +καὶ +ἴδε +παρρησίᾳ +λαλεῖ +καὶ +οὐδὲν +αὐτῷ +λέγουσιν. +Μή +ποτε +ἀληθῶς +ἔγνωσαν +οἱ +ἄρχοντες +ὅτι +οὗτός +ἐστιν +ὁ +Χριστός; +ἀλλὰ +τοῦτον +οἴδαμεν +πόθεν +ἐστίν· +δὲ +ὁ +Χριστὸς +ὅταν +ἔρχηται, +οὐδεὶς +γινώσκει +πόθεν +ἐστίν. +οὖν +ἔκραξεν +ἐν +τῷ +ἱερῷ +διδάσκων +ὁ +Ἰησοῦς +καὶ +λέγων +Κἀμὲ +οἴδατε +καὶ +οἴδατε +πόθεν +εἰμί· +καὶ +ἀπ’ +ἐμαυτοῦ +οὐκ +ἐλήλυθα, +ἀλλ’ +ἔστιν +ἀληθινὸς +ὁ +πέμψας +με, +ὃν +ὑμεῖς +οὐκ +οἴδατε· +ἐγὼ +οἶδα +αὐτόν, +ὅτι +παρ’ +αὐτοῦ +εἰμι +κἀκεῖνός +με +ἀπέστειλεν. +οὖν +Ἐζήτουν +αὐτὸν +πιάσαι, +καὶ +οὐδεὶς +ἐπέβαλεν +ἐπ’ +αὐτὸν +τὴν +χεῖρα, +ὅτι +οὔπω +ἐληλύθει +ἡ +ὥρα +αὐτοῦ. +δὲ +Ἐκ +τοῦ +ὄχλου +πολλοὶ +ἐπίστευσαν +εἰς +αὐτόν, +καὶ +ἔλεγον +Ὁ +Χριστὸς +ὅταν +ἔλθῃ, +μὴ +πλείονα +σημεῖα +ποιήσει +ὧν +οὗτος +ἐποίησεν; +Ἤκουσαν +οἱ +Φαρισαῖοι +τοῦ +ὄχλου +γογγύζοντος +περὶ +αὐτοῦ +ταῦτα, +καὶ +ἀπέστειλαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +Φαρισαῖοι +ὑπηρέτας +ἵνα +πιάσωσιν +αὐτόν. +οὖν +εἶπεν +ὁ +Ἰησοῦς +Ἔτι +χρόνον +μικρὸν +μεθ’ +ὑμῶν +εἰμι +καὶ +ὑπάγω +πρὸς +τὸν +πέμψαντά +με. +ζητήσετέ +με +καὶ +οὐχ +εὑρήσετέ, +καὶ +ὅπου +εἰμὶ +ἐγὼ +ἐλθεῖν. +ὑμεῖς +οὐ +δύνασθε +οὖν +εἶπον +οἱ +Ἰουδαῖοι +πρὸς +ἑαυτούς +Ποῦ +πορεύεσθαι, +οὗτος +μέλλει +ὅτι +ἡμεῖς +οὐχ +εὑρήσομεν +αὐτόν; +μὴ +μέλλει +εἰς +τὴν +Διασπορὰν +τῶν +Ἑλλήνων +πορεύεσθαι +καὶ +διδάσκειν +τοὺς +Ἕλληνας; +τίς +ἐστιν +ὁ +λόγος +οὗτος +ὃν +εἶπεν +Ζητήσετέ +με +καὶ +οὐχ +εὑρήσετέ, +καὶ +ὅπου +εἰμὶ +ἐγὼ +ἐλθεῖν; +ὑμεῖς +οὐ +δύνασθε +δὲ +Ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ +τῇ +μεγάλῃ +τῆς +ἑορτῆς +εἱστήκει +ὁ +Ἰησοῦς, +καὶ +ἔκραξεν +λέγων +Ἐάν +τις +διψᾷ, +ἐρχέσθω +πρός +με +καὶ +πινέτω. +ὁ +πιστεύων +εἰς +ἐμέ, +καθὼς +εἶπεν +ἡ +γραφή, +ποταμοὶ +ὕδατος +ζῶντος. +ἐκ +τῆς +κοιλίας +αὐτοῦ +ῥεύσουσιν +δὲ +τοῦτο +εἶπεν +περὶ +τοῦ +Πνεύματος +οὗ +λαμβάνειν +ἔμελλον +οἱ +πιστεύσαντες +εἰς +αὐτόν· +γὰρ +οὔπω +ἦν +Πνεῦμα, +ὅτι +Ἰησοῦς +οὐδέπω +ἐδοξάσθη. +οὖν +Ἐκ +τοῦ +ὄχλου +ἀκούσαντες +τῶν +λόγων +τούτων +ἔλεγον +Οὗτός +ἐστιν +ἀληθῶς +ὁ +προφήτης· +ἄλλοι +ἔλεγον +Οὗτός +ἐστιν +ὁ +Χριστός· +δὲ +οἱ +ἔλεγον +γὰρ +Μὴ +ἐκ +τῆς +Γαλιλαίας +ὁ +Χριστὸς +ἔρχεται; +οὐχ +ἡ +γραφὴ +εἶπεν +ὅτι +ἐκ +τοῦ +σπέρματος +Δαυεὶδ, +καὶ +ἀπὸ +Βηθλεὲμ +τῆς +κώμης +ὅπου +ἦν +Δαυεὶδ, +ἔρχεται +ὁ +Χριστός; +οὖν +σχίσμα +ἐγένετο +ἐν +τῷ +ὄχλῳ +δι’ +αὐτόν· +δὲ +τινὲς +ἐξ +αὐτῶν +ἤθελον +πιάσαι +αὐτόν, +ἀλλ’ +οὐδεὶς +ἐπέβαλεν +ἐπ’ +αὐτὸν +τὰς +χεῖρας. +οὖν +Ἦλθον +οἱ +ὑπηρέται +πρὸς +τοὺς +ἀρχιερεῖς +καὶ +Φαρισαίους, +καὶ +εἶπον +αὐτοῖς +ἐκεῖνοι +Διὰ +τί +οὐκ +ἠγάγετε +αὐτόν; +ἀπεκρίθησαν +οἱ +ὑπηρέται +Οὐδέποτε +ἐλάλησεν +οὕτως +ἄνθρωπος, +ὡς +οὗτος +ὁ +ἄνθρωπος. +λαλεῖ +οὖν +ἀπεκρίθησαν +αὐτοῖς +οἱ +Φαρισαῖοι +Μὴ +καὶ +ὑμεῖς +πεπλάνησθε; +μή +τις +ἐκ +τῶν +ἀρχόντων +ἐπίστευσεν +εἰς +αὐτὸν +ἢ +ἐκ +τῶν +Φαρισαίων; +ἀλλὰ +ὁ +ὄχλος +οὗτος +ὁ +μὴ +γινώσκων +τὸν +νόμον +ἐπάρατοί +εἰσιν. +λέγει +πρὸς +αὐτούς, +Νικόδημος +ὁ +ἐλθὼν +πρὸς +αὐτὸν +πρότερον, +ὢν +εἷς +ἐξ +αὐτῶν +Μὴ +ὁ +νόμος +ἡμῶν +κρίνει +τὸν +ἄνθρωπον +ἐὰν +μὴ +ἀκούσῃ +πρῶτον +παρ’ +αὐτοῦ +καὶ +γνῷ +τί +ποιεῖ; +ἀπεκρίθησαν +καὶ +εἶπαν +αὐτῷ +Μὴ +καὶ +σὺ +ἐκ +τῆς +Γαλιλαίας +εἶ; +ἐραύνησον +καὶ +ἴδε +ὅτι +ἐκ +τῆς +Γαλιλαίας +προφήτης +οὐκ +ἐγείρεται. +(Καὶ +ἐπορεύθη +ἕκαστος +εἰς +τὸν +οἶκον +αὐτοῦ. +δὲ +Ἰησοῦς +ἐπορεύθη +εἰς +τὸ +ὄρος +τῶν +ἐλαιῶν. +δὲ +Ὄρθρου +πάλιν +παρεγένετο +εἰς +τὸ +ἱερόν, +καὶ +πᾶς +ὁ +λαὸς +ἤρχετο +πρὸς +αὐτόν. +καὶ +καθίσας +ἐδίδασκεν +αὐτούς. +δὲ +ἄγουσι +οἱ +γραμματεῖς +καὶ +οἱ +Φαρισαῖοι +πρὸς +αὐτὸν +γυναῖκα +ἐν +μοιχείᾳ +κατειλημμένην, +καὶ +στήσαντες +αὐτὴν +ἐν +μέσῳ, +λέγουσιν +αὐτῷ, +Διδάσκαλε, +αὕτη +ἡ +γυνὴ +κατελήφθη +ἐπαυτοφώρῳ +μοιχευομένη. +δὲ +ἐν +τῷ +νόμῳ +Μωσῆς +ἡμῖν +ἐνετείλατο +τὰς +τοιαύτας +λιθοβολεῖσθαι· +οὖν +σὺ +τί +λέγεις; +δὲ +τοῦτο +ἔλεγον +πειράζοντες +αὐτόν, +ἵνα +ἔχωσι +κατηγορεῖν +αὐτοῦ. +δὲ +ὁ +Ἰησοῦς +κάτω +κύψας, +τῷ +δακτύλῳ +ἔγραφεν +εἰς +τὴν +γῆν· +δὲ +ὡς +ἐπέμενον +ἐρωτῶντες +αὐτόν, +ἀνάκυψας +εἶπε +πρὸς +αὐτοὺς, +Ὁ +ἀναμάρτητος +ὑμῶν +πρῶτος +τὸν +λίθον +ἐπ’ +αὐτῇ +βαλέτω. +καὶ +πάλιν +κάτω +κύψας +ἔγραφεν +εἰς +τὴν +γῆν. +δὲ, +οἱ +ἀκούσαντες +καὶ +ὑπὸ +τῆς +συνειδήσεως +ἐλεγχόμενοι, +ἐξήρχοντο +εἷς +καθεῖς, +ἀρξάμενοι +ἀπὸ +τῶν +πρεσβυτέρων +ἕως +τῶν +ἐσχάτων· +καὶ +κατελείφθη +μόνος +ὁ +Ἰησοῦς, +καὶ +ἡ +γυνὴ +ἐν +μέσῳ +ἑστῶσα. +δὲ +ὁ +Ἰησοῦς, +ἀνακύψας +καὶ +μηδένα +θεασάμενος +πλὴν +τῆς +γυναικὸς, +εἶπεν +αὐτῇ, +Ἠ +γυνὴ, +ποῦ +εἰσιν +ἐκεῖνοι +οἱ +κατήγοροί +σου; +οὐδείς +σε +κατέκρινεν; +δὲ +ἡ +εἶπεν, +Οὐδείς, +κύριε. +δὲ +εἶπε +αὐτῇ +ὁ +Ἰησοῦς, +Οὐδὲ +ἐγώ +σε +κατακρίνω· +πορεύου +καὶ +μηκέτι +ἁμάρτανε.) +οὖν +Πάλιν +αὐτοῖς +ἐλάλησεν +ὁ +Ἰησοῦς +λέγων +Ἐγώ +εἰμι +τὸ +φῶς +τοῦ +κόσμου· +ὁ +ἀκολουθῶν +μοι +οὐ +μὴ +περιπατήσῃ +ἐν +τῇ +σκοτίᾳ, +ἀλλ’ +ἕξει +τὸ +φῶς +τῆς +ζωῆς. +οὖν +εἶπον +αὐτῷ +οἱ +Φαρισαῖοι +Σὺ +περὶ +σεαυτοῦ +μαρτυρεῖς· +ἡ +μαρτυρία +σου +οὐκ +ἔστιν +ἀληθής. +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτοῖς +Κἂν +ἐγὼ +μαρτυρῶ +περὶ +ἐμαυτοῦ, +ἀληθής +ἐστιν +ἡ +μαρτυρία +μου, +ὅτι +οἶδα +πόθεν +ἦλθον +καὶ +ποῦ +ὑπάγω· +δὲ +ὑμεῖς +οὐκ +οἴδατε +πόθεν +ἔρχομαι +ἢ +ποῦ +ὑπάγω. +ὑμεῖς +κατὰ +τὴν +σάρκα +κρίνετε, +ἐγὼ +οὐ +κρίνω +οὐδένα. +δὲ +ἐὰν +καὶ +κρίνω +ἐγώ, +ἡ +κρίσις +ἡ +ἐμὴ +ἀληθινή +ἐστιν, +ὅτι +μόνος +οὐκ +εἰμί, +ἀλλ’ +ἐγὼ +καὶ +ὁ +πέμψας +με. +δὲ +καὶ +ἐν +τῷ +νόμῳ +τῷ +ὑμετέρῳ +γέγραπται +ὅτι +δύο +ἀνθρώπων +ἡ +μαρτυρία +ἀληθής +ἐστιν. +ἐγώ +εἰμι +ὁ +μαρτυρῶν +περὶ +ἐμαυτοῦ, +καὶ +μαρτυρεῖ +περὶ +ἐμοῦ +ὁ +πέμψας +με +Πατήρ. +οὖν +ἔλεγον +αὐτῷ +Ποῦ +ἐστιν +ὁ +Πατήρ +σου; +ἀπεκρίθη +Ἰησοῦς +Οὔτε +ἐμὲ +οἴδατε +οὔτε +τὸν +Πατέρα +μου· +εἰ +ἐμὲ +ᾔδειτε, +ἂν +καὶ +τὸν +Πατέρα +μου +ᾔδειτε. +Ταῦτα +τὰ +ῥήματα +ἐλάλησεν +ἐν +τῷ +γαζοφυλακίῳ +διδάσκων +ἐν +τῷ +ἱερῷ· +καὶ +οὐδεὶς +ἐπίασεν +αὐτόν, +ὅτι +οὔπω +ἐληλύθει +ἡ +ὥρα +αὐτοῦ. +οὖν +Εἶπεν +πάλιν +αὐτοῖς +Ἐγὼ +ὑπάγω +καὶ +ζητήσετέ +με, +καὶ +ἐν +τῇ +ἁμαρτίᾳ +ὑμῶν +ἀποθανεῖσθε· +ὅπου +ἐγὼ +ὑπάγω +ἐλθεῖν. +ὑμεῖς +οὐ +δύνασθε +οὖν +ἔλεγον +οἱ +Ἰουδαῖοι +Μήτι +ἀποκτενεῖ +ἑαυτὸν, +ὅτι +λέγει +Ὅπου +ἐγὼ +ὑπάγω +ἐλθεῖν; +ὑμεῖς +οὐ +δύνασθε +καὶ +ἔλεγεν +αὐτοῖς +Ὑμεῖς +ἐκ +τῶν +κάτω +ἐστέ, +ἐγὼ +ἐκ +τῶν +ἄνω +εἰμί· +ὑμεῖς +ἐκ +τούτου +τοῦ +κόσμου +ἐστέ, +ἐγὼ +οὐκ +εἰμὶ +ἐκ +τοῦ +κόσμου +τούτου. +οὖν +εἶπον +ὑμῖν +ὅτι +ἀποθανεῖσθε +ἐν +ταῖς +ἁμαρτίαις +ὑμῶν· +γὰρ +ἐὰν +μὴ +πιστεύσητε +ὅτι +ἐγώ +εἰμι, +ἀποθανεῖσθε +ἐν +ταῖς +ἁμαρτίαις +ὑμῶν. +οὖν +ἔλεγον +αὐτῷ +Σὺ +τίς +εἶ; +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +τι +ὅ +Τὴν +ἀρχὴν +καὶ +λαλῶ +ὑμῖν; +ἔχω +πολλὰ +περὶ +ὑμῶν +λαλεῖν +καὶ +κρίνειν· +ἀλλ’ +ὁ +πέμψας +με +ἀληθής +ἐστιν, +ἃ +κἀγὼ +ἤκουσα +παρ’ +αὐτοῦ, +ταῦτα +λαλῶ +εἰς +τὸν +κόσμον. +οὐκ +ἔγνωσαν +ὅτι +τὸν +Πατέρα +αὐτοῖς +ἔλεγεν. +οὖν +εἶπεν +ὁ +Ἰησοῦς +Ὅταν +ὑψώσητε +τὸν +Υἱὸν +τοῦ +ἀνθρώπου, +τότε +γνώσεσθε +ὅτι +ἐγώ +εἰμι, +καὶ +ἀπ’ +ἐμαυτοῦ +ποιῶ +οὐδέν, +ἀλλὰ +καθὼς +ἐδίδαξέν +με +ὁ +Πατὴρ, +ταῦτα +λαλῶ. +καὶ +ὁ +πέμψας +με +μετ’ +ἐμοῦ +ἐστιν· +οὐκ +ἀφῆκέν +με +μόνον, +ὅτι +ἐγὼ +τὰ +ἀρεστὰ +αὐτῷ +ποιῶ +πάντοτε. +Ταῦτα +αὐτοῦ +λαλοῦντος +πολλοὶ +ἐπίστευσαν +εἰς +αὐτόν. +οὖν +Ἔλεγεν +ὁ +Ἰησοῦς +πρὸς +τοὺς +πεπιστευκότας +αὐτῷ +Ἰουδαίους +Ἐὰν +ὑμεῖς +μείνητε +ἐν +τῷ +λόγῳ +τῷ +ἐμῷ, +ἀληθῶς +μαθηταί +μού +ἐστε, +καὶ +γνώσεσθε +τὴν +ἀλήθειαν, +καὶ +ἡ +ἀλήθεια +ἐλευθερώσει +ὑμᾶς. +ἀπεκρίθησαν +πρὸς +αὐτόν +Σπέρμα +Ἀβραάμ +ἐσμεν, +καὶ +οὐδενὶ +δεδουλεύκαμεν +πώποτε· +πῶς +σὺ +λέγεις +ὅτι +Ἐλεύθεροι +γενήσεσθε; +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν +ὅτι +πᾶς +ὁ +ποιῶν +τὴν +ἁμαρτίαν +ἐστιν +δοῦλός +τῆς +ἁμαρτίας. +δὲ +ὁ +δοῦλος +οὐ +μένει +ἐν +τῇ +οἰκίᾳ +εἰς +τὸν +αἰῶνα· +ὁ +υἱὸς +μένει +εἰς +τὸν +αἰῶνα. +οὖν +ἐὰν +ὁ +Υἱὸς +ὑμᾶς +ἐλευθερώσῃ, +ὄντως +ἐλεύθεροι +ἔσεσθε. +οἶδα +ὅτι +σπέρμα +Ἀβραάμ +ἐστε· +ἀλλὰ +ζητεῖτέ +με +ἀποκτεῖναι, +ὅτι +ὁ +λόγος +ὁ +ἐμὸς +οὐ +χωρεῖ +ἐν +ὑμῖν. +ἃ +ἐγὼ +ἑώρακα +παρὰ +τῷ +Πατρὶ +λαλῶ· +οὖν +καὶ +ὑμεῖς +ἃ +ἠκούσατε +παρὰ +τοῦ +πατρὸς +ποιεῖτε. +ἀπεκρίθησαν +καὶ +εἶπαν +αὐτῷ +Ὁ +πατὴρ +ἡμῶν +Ἀβραάμ +ἐστιν. +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Εἰ +τέκνα +τοῦ +Ἀβραάμ +ἐστε, +τὰ +ἔργα +τοῦ +Ἀβραὰμ +ποιεῖτε· +δὲ +νῦν +ζητεῖτέ +ἀποκτεῖναι, +με +ἄνθρωπον +ὃς +τὴν +ἀλήθειαν +ὑμῖν +λελάληκα, +ἣν +ἤκουσα +παρὰ +τοῦ +Θεοῦ· +τοῦτο +Ἀβραὰμ +οὐκ +ἐποίησεν. +ὑμεῖς +ποιεῖτε +τὰ +ἔργα +τοῦ +πατρὸς +ὑμῶν. +εἶπαν +αὐτῷ +Ἠμεῖς +ἐκ +πορνείας +οὐκ +ἐγεννήθημεν, +ἕνα +Πατέρα +τὸν +Θεόν. +ἔχομεν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Εἰ +ὁ +Θεὸς +Πατὴρ +ὑμῶν +ἦν, +ἂν +ἠγαπᾶτε +ἐμέ· +γὰρ +ἐγὼ +ἐκ +τοῦ +Θεοῦ +ἐξῆλθον +καὶ +ἥκω· +γὰρ +οὐδὲ +ἀπ’ +ἐμαυτοῦ +ἐλήλυθα, +ἀλλ’ +ἐκεῖνός +με +ἀπέστειλεν. +διὰ +τί +τὴν +λαλιὰν +τὴν +ἐμὴν +οὐ +γινώσκετε; +ὅτι +οὐ +δύνασθε +ἀκούειν +τὸν +λόγον +τὸν +ἐμόν. +ὑμεῖς +ἐκ +τοῦ +πατρὸς +τοῦ +διαβόλου +ἐστὲ +καὶ +τὰς +ἐπιθυμίας +τοῦ +πατρὸς +ὑμῶν +ποιεῖν. +θέλετε +ἐκεῖνος +ἀνθρωποκτόνος +ἦν +ἀπ’ +ἀρχῆς, +καὶ +ἐν +τῇ +ἀληθείᾳ +οὐκ +ἔστηκεν, +ὅτι +οὐκ +ἔστιν +ἀλήθεια +ἐν +αὐτῷ. +ὅταν +λαλῇ +τὸ +ψεῦδος, +ἐκ +τῶν +ἰδίων +λαλεῖ, +ὅτι +ψεύστης +ἐστὶν +καὶ +ὁ +πατὴρ +αὐτοῦ. +δὲ +ἐγὼ +ὅτι +τὴν +ἀλήθειαν +λέγω, +οὐ +πιστεύετέ +μοι. +τίς +ἐξ +ὑμῶν +ἐλέγχει +με +περὶ +ἁμαρτίας; +εἰ +ἀλήθειαν +λέγω, +διὰ +τί +ὑμεῖς +οὐ +πιστεύετέ +μοι; +ὁ +ὢν +ἐκ +τοῦ +Θεοῦ +τὰ +ῥήματα +τοῦ +Θεοῦ +ἀκούει· +διὰ +τοῦτο +ὑμεῖς +οὐκ +ἀκούετε, +ὅτι +ἐκ +τοῦ +Θεοῦ +οὐκ +ἐστέ. +Ἀπεκρίθησαν +οἱ +Ἰουδαῖοι +καὶ +εἶπαν +αὐτῷ +Οὐ +καλῶς +λέγομεν +ἡμεῖς +ὅτι +Σαμαρείτης +εἶ +σὺ +καὶ +δαιμόνιον +ἔχεις; +ἀπεκρίθη +Ἰησοῦς +Ἐγὼ +δαιμόνιον +οὐκ +ἔχω, +ἀλλὰ +τιμῶ +τὸν +Πατέρα +μου, +καὶ +ὑμεῖς +ἀτιμάζετέ +με. +δὲ +ἐγὼ +οὐ +ζητῶ +τὴν +δόξαν +μου· +ἔστιν +ὁ +ζητῶν +καὶ +κρίνων. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ἐάν +τις +τὸν +ἐμὸν +λόγον +τηρήσῃ, +θάνατον +οὐ +μὴ +θεωρήσῃ +εἰς +τὸν +αἰῶνα. +εἶπαν +αὐτῷ +οἱ +Ἰουδαῖοι +Νῦν +ἐγνώκαμεν +ὅτι +δαιμόνιον +ἔχεις. +Ἀβραὰμ +ἀπέθανεν +καὶ +οἱ +προφῆται, +καὶ +σὺ +λέγεις +Ἐάν +τις +τὸν +λόγον +μου +τηρήσῃ, +οὐ +μὴ +γεύσηται +θανάτου +εἰς +τὸν +αἰῶνα. +μὴ +σὺ +μείζων +εἶ +τοῦ +πατρὸς +ἡμῶν +Ἀβραάμ, +ὅστις +ἀπέθανεν; +καὶ +οἱ +προφῆται +ἀπέθανον· +τίνα +σεαυτὸν +ποιεῖς; +ἀπεκρίθη +Ἰησοῦς +Ἐὰν +ἐγὼ +δοξάσω +ἐμαυτόν, +ἡ +δόξα +μου +οὐδέν +ἐστιν· +ἔστιν +ὁ +Πατήρ +μου +ὁ +δοξάζων +με, +ὃν +ὑμεῖς +λέγετε +ὅτι +Θεὸς +ἡμῶν +ἐστιν, +καὶ +οὐκ +ἐγνώκατε +αὐτόν, +δὲ +ἐγὼ +οἶδα +αὐτόν. +κἂν +εἴπω +ὅτι +οὐκ +οἶδα +αὐτόν, +ἔσομαι +ὅμοιος +ὑμῖν +ψεύστης· +ἀλλὰ +οἶδα +αὐτὸν +καὶ +τὸν +λόγον +αὐτοῦ +τηρῶ. +Ἀβραὰμ +ὁ +πατὴρ +ὑμῶν +ἠγαλλιάσατο +ἵνα +ἴδῃ +τὴν +ἡμέραν +τὴν +ἐμήν, +καὶ +εἶδεν +καὶ +ἐχάρη. +οὖν +εἶπαν +οἱ +Ἰουδαῖοι +πρὸς +αὐτόν +Πεντήκοντα +ἔτη +οὔπω +ἔχεις +καὶ +Ἀβραὰμ +ἑώρακας; +εἶπεν +αὐτοῖς +Ἰησοῦς +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +πρὶν +Ἀβραὰμ +γενέσθαι +ἐγὼ +εἰμί. +οὖν +ἦραν +λίθους +ἵνα +βάλωσιν +ἐπ’ +αὐτόν· +δὲ +Ἰησοῦς +ἐκρύβη +καὶ +ἐξῆλθεν +ἐκ +τοῦ +ἱεροῦ. +Καὶ +παράγων +εἶδεν +ἄνθρωπον +τυφλὸν +ἐκ +γενετῆς. +καὶ +ἠρώτησαν +αὐτὸν +οἱ +μαθηταὶ +αὐτοῦ +λέγοντες +Ῥαββεί, +τίς +ἥμαρτεν, +οὗτος +ἢ +οἱ +γονεῖς +αὐτοῦ, +ἵνα +τυφλὸς +γεννηθῇ; +ἀπεκρίθη +Ἰησοῦς +Οὔτε +οὗτος +ἥμαρτεν +οὔτε +οἱ +γονεῖς +αὐτοῦ, +ἀλλ’ +ἵνα +φανερωθῇ +τὰ +ἔργα +τοῦ +Θεοῦ +ἐν +αὐτῷ. +δεῖ +ἡμᾶς +ἐργάζεσθαι +τὰ +ἔργα +τοῦ +πέμψαντός +με +ἕως +ἡμέρα +ἐστίν· +ἔρχεται +νὺξ +ὅτε +οὐδεὶς +δύναται +ἐργάζεσθαι. +ὅταν +ἐν +τῷ +κόσμῳ +ὦ, +εἰμι +φῶς +τοῦ +κόσμου. +ταῦτα +εἰπὼν +ἔπτυσεν +χαμαὶ +καὶ +ἐποίησεν +πηλὸν +ἐκ +τοῦ +πτύσματος, +καὶ +ἐπέθηκεν +αὐτοῦ +τὸν +πηλὸν +ἐπὶ +τοὺς +ὀφθαλμούς, +καὶ +εἶπεν +αὐτῷ +Ὕπαγε +νίψαι +εἰς +τὴν +κολυμβήθραν +τοῦ +Σιλωάμ +(ὃ +ἑρμηνεύεται +Ἀπεσταλμένος). +οὖν +ἀπῆλθεν +καὶ +ἐνίψατο, +καὶ +ἦλθεν +βλέπων. +οὖν +Οἱ +γείτονες +καὶ +οἱ +θεωροῦντες +αὐτὸν +τὸ +πρότερον, +ὅτι +προσαίτης +ἦν, +ἔλεγον +Οὐχ +οὗτός +ἐστιν +ὁ +καθήμενος +καὶ +προσαιτῶν; +ἄλλοι +ἔλεγον +ὅτι +Οὗτός +ἐστιν· +ἄλλοι +ἔλεγον +Οὐχί, +ἀλλὰ +ὅμοιος +αὐτῷ +ἐστιν. +ἐκεῖνος +ἔλεγεν +ὅτι +Ἐγώ +εἰμι. +οὖν +ἔλεγον +αὐτῷ +οὖν +Πῶς +ἠνεῴχθησάν +σου +οἱ +ὀφθαλμοί; +ἀπεκρίθη +ἐκεῖνος +Ὁ +ἄνθρωπος +ὁ +λεγόμενος +Ἰησοῦς +πηλὸν +ἐποίησεν +καὶ +ἐπέχρισέν +μου +τοὺς +ὀφθαλμοὺς +καὶ +εἶπέν +μοι +ὅτι +Ὕπαγε +εἰς +τὸν +Σιλωὰμ +καὶ +νίψαι· +οὖν +ἀπελθὼν +καὶ +νιψάμενος +ἀνέβλεψα. +καὶ +εἶπαν +αὐτῷ +Ποῦ +ἐστιν +ἐκεῖνος; +λέγει +Οὐκ +οἶδα. +Ἄγουσιν +αὐτὸν +τόν +ποτε +τυφλόν. +πρὸς +τοὺς +Φαρισαίους, +δὲ +ἦν +σάββατον +ἐν +ᾗ +ἡμέρᾳ +τὸν +πηλὸν +ἐποίησεν +ὁ +Ἰησοῦς +καὶ +ἀνέῳξεν +αὐτοῦ +τοὺς +ὀφθαλμούς. +οὖν +πάλιν +ἠρώτων +αὐτὸν +καὶ +οἱ +Φαρισαῖοι +πῶς +ἀνέβλεψεν. +δὲ +ὁ +εἶπεν +αὐτοῖς +Πηλὸν +ἐπέθηκέν +ἐπὶ +μου +τοὺς +ὀφθαλμούς, +καὶ +ἐνιψάμην, +καὶ +βλέπω. +οὖν +ἔλεγον +ἐκ +τῶν +Φαρισαίων +τινές +Οὐκ +ἔστιν +παρὰ +Θεοῦ +οὗτος +ὁ +ἄνθρωπος, +ὅτι +τὸ +σάββατον +οὐ +τηρεῖ. +ἄλλοι +ἔλεγον +Πῶς +δύναται +ἄνθρωπος +ἁμαρτωλὸς +τοιαῦτα +σημεῖα +ποιεῖν; +καὶ +σχίσμα +ἦν +ἐν +αὐτοῖς. +οὖν +λέγουσιν +τῷ +τυφλῷ +πάλιν +Τί +σὺ +λέγεις +περὶ +αὐτοῦ, +ὅτι +ἠνέῳξέν +σου +τοὺς +ὀφθαλμούς; +δὲ +ὁ +εἶπεν +ὅτι +Προφήτης +ἐστίν. +οὖν +οὐκ +ἐπίστευσαν +οἱ +Ἰουδαῖοι +περὶ +αὐτοῦ +ὅτι +ἦν +τυφλὸς +καὶ +ἀνέβλεψεν, +ἕως +ὅτου +ἐφώνησαν +τοὺς +γονεῖς +αὐτοῦ +τοῦ +ἀναβλέψαντος +καὶ +ἠρώτησαν +αὐτοὺς +λέγοντες +Οὗτός +ἐστιν +ὁ +υἱὸς +ὑμῶν, +ὃν +ὑμεῖς +λέγετε +ὅτι +τυφλὸς +ἐγεννήθη; +οὖν +πῶς +βλέπει +ἄρτι; +οὖν +ἀπεκρίθησαν +οἱ +γονεῖς +αὐτοῦ +καὶ +εἶπαν +Οἴδαμεν +ὅτι +οὗτός +ἐστιν +ὁ +υἱὸς +ἡμῶν +καὶ +ὅτι +τυφλὸς +ἐγεννήθη· +δὲ +πῶς +νῦν +βλέπει +οὐκ +οἴδαμεν, +ἢ +τίς +ἤνοιξεν +αὐτοῦ +τοὺς +ὀφθαλμοὺς +ἡμεῖς +οὐκ +οἴδαμεν· +αὐτὸν +ἐρωτήσατε, +ἡλικίαν +ἔχει, +αὐτὸς +περὶ +ἑαυτοῦ +λαλήσει. +ταῦτα +εἶπαν +οἱ +γονεῖς +αὐτοῦ +ὅτι +ἐφοβοῦντο +τοὺς +Ἰουδαίους· +γὰρ +ἤδη +συνετέθειντο +οἱ +Ἰουδαῖοι +ἵνα +ἐάν +τις +αὐτὸν +ὁμολογήσῃ +Χριστόν, +ἀποσυνάγωγος +γένηται. +διὰ +τοῦτο +οἱ +γονεῖς +αὐτοῦ +εἶπαν +ὅτι +Ἠλικίαν +ἔχει, +αὐτὸν +ἐπερωτήσατε. +οὖν +Ἐφώνησαν +τὸν +ἄνθρωπον +ἐκ +δευτέρου +ὃς +ἦν +τυφλὸς, +καὶ +εἶπαν +αὐτῷ +Δὸς +δόξαν +τῷ +Θεῷ· +ἡμεῖς +οἴδαμεν +ὅτι +οὗτος +ὁ +ἄνθρωπος +ἁμαρτωλός +ἐστιν. +οὖν +ἀπεκρίθη +ἐκεῖνος +Εἰ +ἁμαρτωλός +ἐστιν +οὐκ +οἶδα· +ἓν +οἶδα, +ὅτι +τυφλὸς +ὢν +ἄρτι +βλέπω. +οὖν +εἶπαν +αὐτῷ +Τί +ἐποίησέν +σοι; +πῶς +ἤνοιξέν +σου +τοὺς +ὀφθαλμούς; +ἀπεκρίθη +αὐτοῖς +Εἶπον +ὑμῖν +ἤδη +καὶ +οὐκ +ἠκούσατε· +τί +πάλιν +θέλετε +ἀκούειν; +μὴ +καὶ +ὑμεῖς +θέλετε +αὐτοῦ +μαθηταὶ +γενέσθαι; +καὶ +ἐλοιδόρησαν +αὐτὸν +καὶ +εἶπαν +Σὺ +μαθητὴς +ἐκείνου, +εἶ +δὲ +ἡμεῖς +τοῦ +Μωϋσέως +μαθηταί· +ἐσμὲν +ἡμεῖς +οἴδαμεν +ὅτι +Μωϋσεῖ +λελάληκεν +ὁ +Θεός, +δὲ +τοῦτον +οὐκ +οἴδαμεν +πόθεν +ἐστίν. +ἀπεκρίθη +ὁ +ἄνθρωπος +καὶ +εἶπεν +αὐτοῖς +γὰρ +Ἐν +τούτῳ +τὸ +θαυμαστόν +ἐστιν, +ὅτι +ὑμεῖς +οὐκ +οἴδατε +πόθεν +ἐστίν, +καὶ +ἤνοιξέν +μου +τοὺς +ὀφθαλμούς. +οἴδαμεν +ὅτι +ὁ +Θεὸς +ἁμαρτωλῶν +οὐκ +ἀκούει, +ἀλλ’ +ἐάν +τις +θεοσεβὴς +ᾖ +καὶ +τὸ +θέλημα +αὐτοῦ +ποιῇ, +τούτου +ἀκούει. +ἐκ +τοῦ +αἰῶνος +οὐκ +ἠκούσθη +ὅτι +ἠνέῳξέν +τις +ὀφθαλμοὺς +τυφλοῦ +γεγεννημένου· +εἰ +μὴ +ἦν +οὗτος +παρὰ +Θεοῦ, +οὐκ +ἠδύνατο +ποιεῖν +οὐδέν. +ἀπεκρίθησαν +καὶ +εἶπαν +αὐτῷ +Ἐν +ἁμαρτίαις +σὺ +ἐγεννήθης +ὅλος, +καὶ +σὺ +διδάσκεις +ἡμᾶς; +καὶ +ἐξέβαλον +αὐτὸν +ἔξω. +Ἤκουσεν +Ἰησοῦς +ὅτι +ἐξέβαλον +αὐτὸν +ἔξω, +καὶ +εὑρὼν +αὐτὸν +εἶπεν +Σὺ +πιστεύεις +εἰς +τὸν +Υἱὸν +τοῦ +ἀνθρώπου; +ἀπεκρίθη +ἐκεῖνος +καὶ +εἶπεν +Καὶ +τίς +ἐστιν, +Κύριε, +ἵνα +πιστεύσω +εἰς +αὐτόν; +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +Καὶ +ἑώρακας +αὐτὸν +καὶ +ὁ +λαλῶν +μετὰ +σοῦ +ἐκεῖνός +ἐστιν. +δὲ +ὁ +ἔφη +Πιστεύω, +Κύριε· +καὶ +προσεκύνησεν +αὐτῷ. +καὶ +εἶπεν +ὁ +Ἰησοῦς +Εἰς +κρίμα +ἐγὼ +εἰς +τὸν +κόσμον +τοῦτον +ἦλθον, +ἵνα +οἱ +μὴ +βλέποντες +βλέπωσιν +καὶ +οἱ +βλέποντες +τυφλοὶ +γένωνται. +ἤκουσαν +ταῦτα +ἐκ +τῶν +Φαρισαίων +οἱ +μετ’ +αὐτοῦ +ὄντες, +καὶ +εἶπαν +αὐτῷ +Μὴ +καὶ +ἡμεῖς +τυφλοί +ἐσμεν; +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Εἰ +τυφλοὶ +ἦτε, +ἂν +οὐκ +εἴχετε +ἁμαρτίαν· +δὲ +νῦν +λέγετε +ὅτι +Βλέπομεν· +ἡ +ἁμαρτία +ὑμῶν +μένει. +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ὁ +μὴ +εἰσερχόμενος +διὰ +τῆς +θύρας +εἰς +τὴν +αὐλὴν +τῶν +προβάτων +ἀλλὰ +ἀναβαίνων +ἀλλαχόθεν, +ἐκεῖνος +κλέπτης +ἐστὶν +καὶ +λῃστής· +δὲ +ὁ +εἰσερχόμενος +διὰ +τῆς +θύρας +ἐστιν +ποιμήν +τῶν +προβάτων. +τούτῳ +ὁ +θυρωρὸς +ἀνοίγει, +καὶ +τὰ +πρόβατα +τῆς +φωνῆς +αὐτοῦ +ἀκούει, +καὶ +τὰ +ἴδια +πρόβατα +φωνεῖ +κατ’ +ὄνομα +καὶ +ἐξάγει +αὐτά. +ὅταν +τὰ +ἴδια +πάντα +ἐκβάλῃ, +ἔμπροσθεν +αὐτῶν +πορεύεται, +καὶ +τὰ +πρόβατα +αὐτῷ +ἀκολουθεῖ, +ὅτι +οἴδασιν +τὴν +φωνὴν +αὐτοῦ· +δὲ +ἀλλοτρίῳ +οὐ +μὴ +ἀκολουθήσουσιν, +ἀλλὰ +φεύξονται +ἀπ’ +αὐτοῦ, +ὅτι +οὐκ +οἴδασιν +τῶν +ἀλλοτρίων +τὴν +φωνήν. +Ταύτην +τὴν +παροιμίαν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς· +δὲ +ἐκεῖνοι +οὐκ +ἔγνωσαν +τίνα +ἦν +ἃ +ἐλάλει +αὐτοῖς. +οὖν +Εἶπεν +πάλιν +ὁ +Ἰησοῦς +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν +ὅτι +ἐγώ +εἰμι +ἡ +θύρα +τῶν +προβάτων. +πάντες +ὅσοι +ἦλθον +πρὸ +ἐμοῦ +κλέπται +εἰσὶν +καὶ +λῃσταί· +ἀλλ’ +οὐκ +ἤκουσαν +αὐτῶν +τὰ +πρόβατα. +ἐγώ +εἰμι +ἡ +θύρα· +ἐάν +δι’ +ἐμοῦ +τις +εἰσέλθῃ, +σωθήσεται, +καὶ +εἰσελεύσεται +καὶ +ἐξελεύσεται +καὶ +νομὴν +εὑρήσει. +ὁ +κλέπτης +οὐκ +ἔρχεται +εἰ +μὴ +ἵνα +κλέψῃ +καὶ +θύσῃ +καὶ +ἀπολέσῃ· +ἐγὼ +ἦλθον +ἵνα +ζωὴν +ἔχωσιν +καὶ +περισσὸν +ἔχωσιν. +ἐγώ +εἰμι +ὁ +ποιμὴν +ὁ +καλός. +ὁ +ποιμὴν +ὁ +καλὸς +τὴν +ψυχὴν +αὐτοῦ +τίθησιν +ὑπὲρ +τῶν +προβάτων· +ὁ +μισθωτὸς +καὶ +οὐκ +ὢν +ποιμήν, +οὗ +οὐκ +ἔστιν +τὰ +πρόβατα +ἴδια, +θεωρεῖ +τὸν +λύκον +ἐρχόμενον +καὶ +ἀφίησιν +τὰ +πρόβατα +καὶ +φεύγει,— +καὶ +ὁ +λύκος +ἁρπάζει +αὐτὰ +καὶ +σκορπίζει·— +ὅτι +μισθωτός +ἐστιν +καὶ +οὐ +μέλει +αὐτῷ +περὶ +τῶν +προβάτων. +ἐγώ +εἰμι +ὁ +ποιμὴν +ὁ +καλός, +καὶ +γινώσκω +τὰ +ἐμὰ +καὶ +γινώσκουσί +με +τὰ +ἐμά, +καθὼς +γινώσκει +με +ὁ +Πατὴρ +κἀγὼ +γινώσκω +τὸν +Πατέρα, +καὶ +τὴν +ψυχήν +μου +τίθημι +ὑπὲρ +τῶν +προβάτων. +καὶ +ἄλλα +πρόβατα +ἔχω +ἃ +οὐκ +ἔστιν +ἐκ +τῆς +αὐλῆς +ταύτης· +κἀκεῖνα +με +ἀγαγεῖν, +δεῖ +καὶ +τῆς +φωνῆς +μου +ἀκούσουσιν, +καὶ +γενήσεται +μία +ποίμνη, +εἷς +ποιμήν. +διὰ +τοῦτό +με +ὁ +Πατὴρ +ἀγαπᾷ +ὅτι +ἐγὼ +τίθημι +τὴν +ψυχήν +μου, +ἵνα +πάλιν +λάβω +αὐτήν. +οὐδεὶς +ἦρεν +αὐτὴν +ἀπ’ +ἐμοῦ, +ἀλλ’ +ἐγὼ +τίθημι +αὐτὴν +ἀπ’ +ἐμαυτοῦ. +ἐξουσίαν +ἔχω +θεῖναι +αὐτήν, +καὶ +ἐξουσίαν +ἔχω +πάλιν +λαβεῖν +αὐτήν· +ταύτην +τὴν +ἐντολὴν +ἔλαβον +παρὰ +τοῦ +Πατρός +μου. +Σχίσμα +πάλιν +ἐγένετο +ἐν +τοῖς +Ἰουδαίοις +διὰ +τοὺς +λόγους +τούτους. +δὲ +ἔλεγον +πολλοὶ +ἐξ +αὐτῶν +Δαιμόνιον +ἔχει +καὶ +μαίνεται· +τί +αὐτοῦ +ἀκούετε; +ἄλλοι +ἔλεγον +Ταῦτα +τὰ +ῥήματα +οὐκ +ἔστιν +δαιμονιζομένου· +μὴ +δαιμόνιον +δύναται +τυφλῶν +ὀφθαλμοὺς +ἀνοῖξαι; +Ἐγένετο +τότε +τὰ +ἐνκαίνια +ἐν +τοῖς +Ἱεροσολύμοις· +χειμὼν +ἦν· +καὶ +περιεπάτει +ὁ +Ἰησοῦς +ἐν +τῷ +ἱερῷ +ἐν +τῇ +στοᾷ +τοῦ +Σολομῶνος. +οὖν +ἐκύκλωσαν +αὐτὸν +οἱ +Ἰουδαῖοι +καὶ +ἔλεγον +αὐτῷ +Ἕως +πότε +τὴν +ψυχὴν +ἡμῶν +αἴρεις; +εἰ +σὺ +εἶ +ὁ +Χριστός, +εἰπὸν +ἡμῖν +παρρησίᾳ. +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Εἶπον +ὑμῖν, +καὶ +οὐ +πιστεύετε· +τὰ +ἔργα +ἃ +ἐγὼ +ποιῶ +ἐν +τῷ +ὀνόματι +τοῦ +Πατρός +μου, +ταῦτα +μαρτυρεῖ +περὶ +ἐμοῦ· +ἀλλὰ +ὑμεῖς +οὐ +πιστεύετε, +ὅτι +οὐκ +ἐστὲ +ἐκ +τῶν +προβάτων +τῶν +ἐμῶν. +τὰ +πρόβατα +τὰ +ἐμὰ +τῆς +φωνῆς +μου +ἀκούουσιν, +κἀγὼ +γινώσκω +αὐτά, +καὶ +ἀκολουθοῦσίν +μοι, +κἀγὼ +δίδωμι +αὐτοῖς +ζωὴν +αἰώνιον, +καὶ +οὐ +μὴ +ἀπόλωνται +εἰς +τὸν +αἰῶνα, +καὶ +οὐχ +ἁρπάσει +τις +αὐτὰ +ἐκ +τῆς +χειρός +μου. +ὁ +Πατήρ +μου +ὃ +δέδωκέν +μοι +πάντων +μεῖζόν +ἐστιν, +καὶ +οὐδεὶς +δύναται +ἁρπάζειν +ἐκ +τῆς +χειρὸς +τοῦ +Πατρός. +ἐγὼ +καὶ +ὁ +Πατὴρ +ἕν +ἐσμεν. +Ἐβάστασαν +πάλιν +λίθους +οἱ +Ἰουδαῖοι +ἵνα +λιθάσωσιν +αὐτόν. +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Πολλὰ +ἔργα +καλὰ +ἔδειξα +ὑμῖν +ἐκ +τοῦ +Πατρός· +διὰ +ποῖον +αὐτῶν +ἔργον +ἐμὲ +λιθάζετε; +ἀπεκρίθησαν +αὐτῷ +οἱ +Ἰουδαῖοι +Περὶ +καλοῦ +ἔργου +οὐ +λιθάζομέν +σε +ἀλλὰ +περὶ +βλασφημίας, +καὶ +ὅτι +σὺ +ἄνθρωπος +ὢν +ποιεῖς +σεαυτὸν +Θεόν. +ἀπεκρίθη +αὐτοῖς +ὁ +Ἰησοῦς +Οὐκ +ἔστιν +γεγραμμένον +ἐν +τῷ +νόμῳ +ὑμῶν +ὅτι +Ἐγὼ +εἶπα +Θεοί +ἐστε; +εἰ +ἐκείνους +εἶπεν +θεοὺς +πρὸς +οὓς +ὁ +λόγος +τοῦ +Θεοῦ +ἐγένετο, +καὶ +οὐ +δύναται +λυθῆναι +ἡ +γραφή, +ὃν +ὁ +Πατὴρ +ἡγίασεν +καὶ +ἀπέστειλεν +εἰς +τὸν +κόσμον +ὑμεῖς +λέγετε +ὅτι +Βλασφημεῖς, +ὅτι +εἶπον +Υἱὸς +τοῦ +Θεοῦ +εἰμι; +εἰ +οὐ +ποιῶ +τὰ +ἔργα +τοῦ +Πατρός +μου, +μὴ +πιστεύετέ +μοι· +δὲ +εἰ +ποιῶ, +κἂν +ἐμοὶ +μὴ +πιστεύητε, +τοῖς +ἔργοις +πιστεύετε, +ἵνα +γνῶτε +καὶ +γινώσκητε +ὅτι +ἐν +ἐμοὶ +ὁ +Πατὴρ +κἀγὼ +ἐν +τῷ +Πατρί. +οὖν +Ἐζήτουν +αὐτὸν +πιάσαι· +πάλιν +καὶ +ἐξῆλθεν +ἐκ +τῆς +χειρὸς +αὐτῶν. +Καὶ +ἀπῆλθεν +πάλιν +πέραν +τοῦ +Ἰορδάνου +εἰς +τὸν +τόπον +ὅπου +ἦν +βαπτίζων, +Ἰωάνης +τὸ +πρῶτον +καὶ +ἔμενεν +ἐκεῖ. +καὶ +πολλοὶ +ἦλθον +πρὸς +αὐτὸν +καὶ +ἔλεγον +ὅτι +μὲν +Ἰωάνης +σημεῖον +οὐδέν, +ἐποίησεν +δὲ +πάντα +ὅσα +εἶπεν +Ἰωάνης +περὶ +τούτου +ἀληθῆ +ἦν. +καὶ +πολλοὶ +ἐπίστευσαν +εἰς +αὐτὸν +ἐκεῖ. +δέ +Ἦν +τις +ἀσθενῶν, +Λάζαρος +ἀπὸ +Βηθανίας, +ἐκ +τῆς +κώμης +Μαρίας +καὶ +Μάρθας +τῆς +ἀδελφῆς +αὐτῆς. +δὲ +ἦν +Μαριὰμ +ἡ +ἀλείψασα +τὸν +Κύριον +μύρῳ +καὶ +ἐκμάξασα +τοὺς +πόδας +αὐτοῦ +ταῖς +θριξὶν +αὐτῆς, +ἧς +ὁ +ἀδελφὸς +Λάζαρος +ἠσθένει. +οὖν +ἀπέστειλαν +αἱ +ἀδελφαὶ +πρὸς +αὐτὸν +λέγουσαι +Κύριε, +ἴδε +ὃν +φιλεῖς +ἀσθενεῖ. +δὲ +ἀκούσας +ὁ +Ἰησοῦς +εἶπεν +Αὕτη +ἡ +ἀσθένεια +οὐκ +ἔστιν +πρὸς +θάνατον +ἀλλ’ +ὑπὲρ +τῆς +δόξης +τοῦ +Θεοῦ, +ἵνα +δοξασθῇ +ὁ +Υἱὸς +τοῦ +Θεοῦ +δι’ +αὐτῆς. +δὲ +ἠγάπα +ὁ +Ἰησοῦς +τὴν +Μάρθαν +καὶ +τὴν +ἀδελφὴν +αὐτῆς +καὶ +τὸν +Λάζαρον. +οὖν +ὡς +ἤκουσεν +ὅτι +ἀσθενεῖ, +μὲν +τότε +ἔμεινεν +ἐν +ᾧ +ἦν +τόπῳ +δύο +ἡμέρας· +ἔπειτα +μετὰ +τοῦτο +λέγει +τοῖς +μαθηταῖς +Ἄγωμεν +εἰς +τὴν +Ἰουδαίαν +πάλιν. +λέγουσιν +αὐτῷ +οἱ +μαθηταί +Ῥαββεί, +νῦν +ἐζήτουν +σε +λιθάσαι +οἱ +Ἰουδαῖοι, +καὶ +πάλιν +ὑπάγεις +ἐκεῖ; +ἀπεκρίθη +Ἰησοῦς +Οὐχὶ +δώδεκα +ὧραί +εἰσιν +τῆς +ἡμέρας; +ἐάν +τις +περιπατῇ +ἐν +τῇ +ἡμέρᾳ, +οὐ +προσκόπτει, +ὅτι +τὸ +φῶς +τοῦ +κόσμου +τούτου +βλέπει· +δέ +ἐὰν +τις +περιπατῇ +ἐν +τῇ +νυκτί, +προσκόπτει, +ὅτι +τὸ +φῶς +οὐκ +ἔστιν +ἐν +αὐτῷ. +ταῦτα +εἶπεν, +καὶ +μετὰ +τοῦτο +λέγει +αὐτοῖς +Λάζαρος +ὁ +φίλος +ἡμῶν +κεκοίμηται· +ἀλλὰ +πορεύομαι +ἵνα +ἐξυπνίσω +αὐτόν. +οὖν +εἶπαν +οἱ +μαθηταὶ +αὐτῷ +Κύριε, +εἰ +κεκοίμηται, +σωθήσεται. +δὲ +εἰρήκει +ὁ +Ἰησοῦς +περὶ +τοῦ +θανάτου +αὐτοῦ· +δὲ +ἐκεῖνοι +ἔδοξαν +ὅτι +περὶ +τῆς +κοιμήσεως +τοῦ +ὕπνου +λέγει. +οὖν +τότε +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +παρρησίᾳ +Λάζαρος +ἀπέθανεν, +καὶ +χαίρω +δι’ +ὑμᾶς, +ἵνα +πιστεύσητε, +ὅτι +οὐκ +ἤμην +ἐκεῖ· +ἀλλὰ +ἄγωμεν +πρὸς +αὐτόν. +οὖν +εἶπεν +Θωμᾶς +ὁ +λεγόμενος +Δίδυμος +τοῖς +συνμαθηταῖς +Ἄγωμεν +καὶ +ἡμεῖς +ἵνα +ἀποθάνωμεν +μετ’ +αὐτοῦ. +οὖν +Ἐλθὼν +ὁ +Ἰησοῦς +εὗρεν +αὐτὸν +τέσσαρας +ἡμέρας +ἤδη +ἔχοντα +ἐν +τῷ +μνημείῳ. +δὲ +ἦν +Βηθανία +ἐγγὺς +τῶν +Ἱεροσολύμων +ὡς +ἀπὸ +σταδίων +δεκαπέντε. +δὲ +πολλοὶ +ἐκ +τῶν +Ἰουδαίων +ἐληλύθεισαν +πρὸς +τὴν +Μάρθαν +καὶ +Μαριὰμ, +ἵνα +παραμυθήσωνται +αὐτὰς +περὶ +τοῦ +ἀδελφοῦ. +οὖν +ὡς +ἤκουσεν +ὅτι +Ἰησοῦς +ἔρχεται, +ἡ +Μάρθα +ὑπήντησεν +αὐτῷ· +δὲ +Μαριὰμ +ἐν +τῷ +οἴκῳ +ἐκαθέζετο. +οὖν +εἶπεν +ἡ +Μάρθα +πρὸς +Ἰησοῦν +Κύριε, +εἰ +ἦς +ὧδε, +ἂν +οὐκ +ἀπέθανεν +ὁ +ἀδελφός +μου. +καὶ +νῦν +οἶδα +ὅτι +ἂν +ὅσα +αἰτήσῃ +τὸν +Θεὸν +δώσει +σοι +ὁ +Θεός. +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Ἀναστήσεται +ὁ +ἀδελφός +σου. +λέγει +αὐτῷ +ἡ +Μάρθα +Οἶδα +ὅτι +ἀναστήσεται +ἐν +τῇ +ἀναστάσει +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ. +εἶπεν +αὐτῇ +ὁ +Ἰησοῦς +Ἐγώ +εἰμι +ἡ +ἀνάστασις +καὶ +ἡ +ζωή· +ὁ +πιστεύων +εἰς +ἐμὲ +κἂν +ἀποθάνῃ +ζήσεται, +καὶ +πᾶς +ὁ +ζῶν +καὶ +πιστεύων +εἰς +ἐμὲ +οὐ +μὴ +ἀποθάνῃ +εἰς +τὸν +αἰῶνα· +πιστεύεις +τοῦτο; +λέγει +αὐτῷ +Ναί, +Κύριε· +ἐγὼ +πεπίστευκα +ὅτι +σὺ +εἶ +ὁ +Χριστὸς +ὁ +Υἱὸς +τοῦ +Θεοῦ +ὁ +εἰς +τὸν +κόσμον +ἐρχόμενος. +καὶ +τοῦτο +εἰποῦσα +ἀπῆλθεν +καὶ +ἐφώνησεν +Μαριὰμ +τὴν +ἀδελφὴν +αὐτῆς +λάθρᾳ +εἰποῦσα +Ὁ +Διδάσκαλος +πάρεστιν +καὶ +φωνεῖ +σε. +δὲ +ἐκείνη +ὡς +ἤκουσεν, +ἐγείρεται +ταχὺ +καὶ +ἤρχετο +πρὸς +αὐτόν· +δὲ +οὔπω +ἐληλύθει +ὁ +Ἰησοῦς +εἰς +τὴν +κώμην, +ἀλλ’ +ἦν +ἔτι +ἐν +τῷ +τόπῳ +ὅπου +ὑπήντησεν +αὐτῷ +ἡ +Μάρθα. +οὖν +οἱ +Ἰουδαῖοι +οἱ +ὄντες +μετ’ +αὐτῆς +ἐν +τῇ +οἰκίᾳ +καὶ +παραμυθούμενοι +αὐτήν, +ἰδόντες +τὴν +Μαριὰμ +ὅτι +ταχέως +ἀνέστη +καὶ +ἐξῆλθεν, +ἠκολούθησαν +αὐτῇ, +δόξαντες +ὅτι +ὑπάγει +εἰς +τὸ +μνημεῖον +ἵνα +κλαύσῃ +ἐκεῖ. +οὖν +ἡ +Μαριὰμ +ὡς +ἦλθεν +ὅπου +ἦν +Ἰησοῦς, +ἰδοῦσα +αὐτὸν +ἔπεσεν +πρὸς +αὐτοῦ +τοὺς +πόδας, +λέγουσα +αὐτῷ +Κύριε, +εἰ +ἦς +ὧδε, +ἄν +οὐκ +ἀπέθανεν +μου +ὁ +ἀδελφός. +οὖν +Ἰησοῦς +ὡς +εἶδεν +αὐτὴν +κλαίουσαν +καὶ +τοὺς +συνελθόντας +αὐτῇ +Ἰουδαίους +κλαίοντας, +ἐνεβριμήσατο +τῷ +πνεύματι +καὶ +ἐτάραξεν +ἑαυτόν, +καὶ +εἶπεν +Ποῦ +τεθείκατε +αὐτόν; +λέγουσιν +αὐτῷ +Κύριε, +ἔρχου +καὶ +ἴδε. +ἐδάκρυσεν +ὁ +Ἰησοῦς. +οὖν +ἔλεγον +οἱ +Ἰουδαῖοι +Ἴδε +πῶς +ἐφίλει +αὐτόν. +δὲ +τινὲς +ἐξ +αὐτῶν +εἶπαν +Οὐκ +ἐδύνατο +οὗτος +ὁ +ἀνοίξας +τοὺς +ὀφθαλμοὺς +τοῦ +τυφλοῦ +ποιῆσαι +ἵνα +καὶ +οὗτος +μὴ +ἀποθάνῃ; +οὖν +Ἰησοῦς +πάλιν +ἐμβριμώμενος +ἐν +ἑαυτῷ +ἔρχεται +εἰς +τὸ +μνημεῖον· +δὲ +ἦν +σπήλαιον, +καὶ +λίθος +ἐπέκειτο +ἐπ’ +αὐτῷ. +λέγει +ὁ +Ἰησοῦς +Ἄρατε +τὸν +λίθον. +λέγει +αὐτῷ +ἡ +ἀδελφὴ +τοῦ +τετελευτηκότος +Μάρθα +Κύριε, +ἤδη +ὄζει· +γάρ +τεταρταῖος +ἐστιν. +λέγει +αὐτῇ +ὁ +Ἰησοῦς +Οὐκ +εἶπόν +σοι +ὅτι +ἐὰν +πιστεύσῃς +ὄψῃ +τὴν +δόξαν +τοῦ +Θεοῦ; +οὖν +ἦραν +τὸν +λίθον. +δὲ +ὁ +Ἰησοῦς +ἦρεν +τοὺς +ὀφθαλμοὺς +ἄνω +καὶ +εἶπεν +Πάτερ, +εὐχαριστῶ +σοι +ὅτι +ἤκουσάς +μου. +δὲ +ἐγὼ +ᾔδειν +ὅτι +πάντοτέ +μου +ἀκούεις· +ἀλλὰ +διὰ +τὸν +ὄχλον +τὸν +περιεστῶτα +εἶπον, +ἵνα +πιστεύσωσιν +ὅτι +σύ +με +ἀπέστειλας. +καὶ +ταῦτα +εἰπὼν +φωνῇ +μεγάλῃ +ἐκραύγασεν +Λάζαρε, +δεῦρο +ἔξω. +ἐξῆλθεν +ὁ +τεθνηκὼς +δεδεμένος +τοὺς +πόδας +καὶ +τὰς +χεῖρας +κειρίαις, +καὶ +ἡ +ὄψις +αὐτοῦ +σουδαρίῳ +περιεδέδετο. +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Λύσατε +αὐτὸν +καὶ +ἄφετε +αὐτὸν +ὑπάγειν. +οὖν +Πολλοὶ +ἐκ +τῶν +Ἰουδαίων, +οἱ +ἐλθόντες +πρὸς +τὴν +Μαριὰμ +καὶ +θεασάμενοι +ὃ +ἐποίησεν, +ἐπίστευσαν +εἰς +αὐτόν· +δὲ +τινὲς +ἐξ +αὐτῶν +ἀπῆλθον +πρὸς +τοὺς +Φαρισαίους +καὶ +εἶπαν +αὐτοῖς +ἃ +ἐποίησεν +Ἰησοῦς. +οὖν +Συνήγαγον +οἱ +ἀρχιερεῖς +καὶ +οἱ +Φαρισαῖοι +συνέδριον, +καὶ +ἔλεγον +Τί +ποιοῦμεν, +ὅτι +οὗτος +ὁ +ἄνθρωπος +πολλὰ +σημεῖα; +ποιεῖ +ἐὰν +ἀφῶμεν +αὐτὸν +οὕτως, +πάντες +πιστεύσουσιν +εἰς +αὐτόν, +καὶ +ἐλεύσονται +οἱ +Ῥωμαῖοι +καὶ +ἀροῦσιν +ἡμῶν +καὶ +τὸν +τόπον +καὶ +τὸ +ἔθνος. +δέ +εἷς +τις +ἐξ +αὐτῶν +Καϊάφας, +ἀρχιερεὺς +ὢν +τοῦ +ἐνιαυτοῦ +ἐκείνου, +εἶπεν +αὐτοῖς +Ὑμεῖς +οὐκ +οἴδατε +οὐδέν, +οὐδὲ +λογίζεσθε +ὅτι +συμφέρει +ὑμῖν +ἵνα +εἷς +ἄνθρωπος +ἀποθάνῃ +ὑπὲρ +τοῦ +λαοῦ +καὶ +μὴ +ὅλον +τὸ +ἔθνος +ἀπόληται. +δὲ +τοῦτο +ἀφ’ +ἑαυτοῦ +οὐκ +εἶπεν, +ἀλλὰ +ἀρχιερεὺς +ὢν +τοῦ +ἐνιαυτοῦ +ἐκείνου +ἐπροφήτευσεν +ὅτι +ἔμελλεν +Ἰησοῦς +ἀποθνήσκειν +ὑπὲρ +τοῦ +ἔθνους, +καὶ +οὐχ +ὑπὲρ +τοῦ +ἔθνους +μόνον, +ἀλλ’ +ἵνα +καὶ +τὰ +τέκνα +τοῦ +Θεοῦ +τὰ +διεσκορπισμένα +συναγάγῃ +εἰς +ἕν. +οὖν +ἀπ’ +ἐκείνης +τῆς +ἡμέρας +ἐβουλεύσαντο +ἵνα +ἀποκτείνωσιν +αὐτόν. +οὖν +Ὁ +Ἰησοῦς +οὐκέτι +παρρησίᾳ +περιεπάτει +ἐν +τοῖς +Ἰουδαίοις, +ἀλλὰ +ἀπῆλθεν +ἐκεῖθεν +εἰς +τὴν +χώραν +ἐγγὺς +τῆς +ἐρήμου, +εἰς +Ἐφραὶμ +λεγομένην +πόλιν, +κἀκεῖ +ἔμεινεν +μετὰ +τῶν +μαθητῶν. +δὲ +Ἦν +ἐγγὺς +τὸ +πάσχα +τῶν +Ἰουδαίων, +καὶ +ἀνέβησαν +πολλοὶ +εἰς +Ἱεροσόλυμα +ἐκ +τῆς +χώρας +πρὸ +τοῦ +πάσχα, +ἵνα +ἁγνίσωσιν +ἑαυτούς. +οὖν +ἐζήτουν +τὸν +Ἰησοῦν +καὶ +ἔλεγον +μετ’ +ἀλλήλων +ἐν +τῷ +ἱερῷ +ἑστηκότες +Τί +δοκεῖ +ὑμῖν; +ὅτι +οὐ +μὴ +ἔλθῃ +εἰς +τὴν +ἑορτήν; +δὲ +δεδώκεισαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +Φαρισαῖοι +ἐντολὰς +ἵνα +ἐάν +τις +γνῷ +ποῦ +ἐστιν +μηνύσῃ, +ὅπως +πιάσωσιν +αὐτόν. +οὖν +Ὁ +Ἰησοῦς +πρὸ +ἓξ +ἡμερῶν +τοῦ +πάσχα +ἦλθεν +εἰς +Βηθανίαν, +ὅπου +ἦν +Λάζαρος, +ὃν +ἤγειρεν +ἐκ +νεκρῶν +Ἰησοῦς. +οὖν +ἐποίησαν +αὐτῷ +δεῖπνον +ἐκεῖ, +καὶ +ἡ +Μάρθα +διηκόνει, +δὲ +ὁ +Λάζαρος +ἦν +εἷς +ἐκ +τῶν +ἀνακειμένων +σὺν +αὐτῷ· +οὖν +ἡ +Μαριὰμ +λαβοῦσα +λίτραν +μύρου +νάρδου +πιστικῆς +πολυτίμου +ἤλειψεν +τοὺς +πόδας +τοῦ +Ἰησοῦ +καὶ +ἐξέμαξεν +ταῖς +θριξὶν +αὐτῆς +τοὺς +πόδας +αὐτοῦ· +δὲ +ἡ +οἰκία +ἐπληρώθη +ἐκ +τῆς +ὀσμῆς +τοῦ +μύρου. +δὲ +λέγει +Ἰούδας +ὁ +Ἰσκαριώτης +εἷς +τῶν +μαθητῶν +αὐτοῦ, +ὁ +μέλλων +αὐτὸν +παραδιδόναι +Διὰ +τί +τοῦτο +τὸ +μύρον +οὐκ +ἐπράθη +τριακοσίων +δηναρίων +καὶ +ἐδόθη +πτωχοῖς; +δὲ +εἶπεν +τοῦτο +οὐχ +ὅτι +περὶ +τῶν +πτωχῶν +ἔμελεν +αὐτῷ, +ἀλλ’ +ὅτι +κλέπτης +ἦν +καὶ +τὸ +γλωσσόκομον +ἔχων +τὰ +βαλλόμενα +ἐβάσταζεν. +οὖν +εἶπεν +ὁ +Ἰησοῦς +Ἄφες +αὐτήν, +ἵνα +εἰς +τὴν +ἡμέραν +τοῦ +ἐνταφιασμοῦ +μου +τηρήσῃ +αὐτό· +γὰρ +τοὺς +πτωχοὺς +πάντοτε +ἔχετε +μεθ’ +ἑαυτῶν, +δὲ +ἐμὲ +οὐ +πάντοτε +ἔχετε. +οὖν +Ἔγνω +ὁ +ὄχλος +πολὺς +ἐκ +τῶν +Ἰουδαίων +ὅτι +ἐκεῖ +ἐστιν, +καὶ +ἦλθον +οὐ +διὰ +τὸν +Ἰησοῦν +μόνον, +ἀλλ’ +ἵνα +καὶ +ἴδωσιν +τὸν +Λάζαρον +ὃν +ἤγειρεν +ἐκ +νεκρῶν. +δὲ +ἐβουλεύσαντο +οἱ +ἀρχιερεῖς +ἵνα +καὶ +τὸν +Λάζαρον +ἀποκτείνωσιν, +ὅτι +πολλοὶ +τῶν +Ἰουδαίων +δι’ +αὐτὸν +ὑπῆγον +καὶ +ἐπίστευον +εἰς +τὸν +Ἰησοῦν. +Τῇ +ἐπαύριον +ὁ +ὄχλος +πολὺς +ὁ +ἐλθὼν +εἰς +τὴν +ἑορτήν, +ἀκούσαντες +ὅτι +ἔρχεται +Ἰησοῦς +εἰς +Ἱεροσόλυμα, +ἔλαβον +τὰ +βαΐα +τῶν +φοινίκων +καὶ +ἐξῆλθον +εἰς +ὑπάντησιν +αὐτῷ, +καὶ +ἐκραύγαζον +Ὡσαννά, +εὐλογημένος +ὁ +ἐρχόμενος +ἐν +ὀνόματι +Κυρίου, +καὶ +ὁ +Βασιλεὺς +τοῦ +Ἰσραήλ. +δὲ +εὑρὼν +ὀνάριον +ὁ +Ἰησοῦς +ἐκάθισεν +ἐπ’ +αὐτό, +καθώς +ἐστιν +γεγραμμένον +Μὴ +φοβοῦ, +θυγάτηρ +Σιών· +ἰδοὺ +ὁ +Βασιλεύς +σου +ἔρχεται, +καθήμενος +ἐπὶ +πῶλον +ὄνου. +Ταῦτα +οὐκ +ἔγνωσαν +αὐτοῦ +οἱ +μαθηταὶ +τὸ +πρῶτον, +ἀλλ’ +ὅτε +ἐδοξάσθη +Ἰησοῦς +τότε +ἐμνήσθησαν +ὅτι +ταῦτα +ἦν +γεγραμμένα +ἐπ’ +αὐτῷ +καὶ +ταῦτα +ἐποίησαν +αὐτῷ. +οὖν +Ἐμαρτύρει +ὁ +ὄχλος +ὁ +ὢν +μετ’ +αὐτοῦ +ὅτε +τὸν +Λάζαρον +ἐφώνησεν +ἐκ +τοῦ +μνημείου +καὶ +ἤγειρεν +αὐτὸν +ἐκ +νεκρῶν. +διὰ +τοῦτο +καὶ +ὑπήντησεν +αὐτῷ +ὁ +ὄχλος, +ὅτι +ἤκουσαν +τοῦτο +αὐτὸν +πεποιηκέναι +τὸ +σημεῖον. +οὖν +οἱ +Φαρισαῖοι +εἶπαν +πρὸς +ἑαυτούς +Θεωρεῖτε +ὅτι +οὐκ +ὠφελεῖτε +οὐδέν· +ἴδε +ὁ +κόσμος +ὀπίσω +αὐτοῦ +ἀπῆλθεν. +δὲ +Ἦσαν +Ἕλληνές +τινες +ἐκ +τῶν +ἀναβαινόντων +ἵνα +προσκυνήσωσιν +ἐν +τῇ +ἑορτῇ· +οὖν +οὗτοι +προσῆλθον +Φιλίππῳ +τῷ +ἀπὸ +Βηθσαϊδὰ +τῆς +Γαλιλαίας, +καὶ +ἠρώτων +αὐτὸν +λέγοντες +Κύριε, +θέλομεν +τὸν +Ἰησοῦν +ἰδεῖν. +ἔρχεται +ὁ +Φίλιππος +καὶ +λέγει +τῷ +Ἀνδρέᾳ· +ἔρχεται +Ἀνδρέας +καὶ +Φίλιππος +καὶ +λέγουσιν +τῷ +Ἰησοῦ. +δὲ +ὁ +Ἰησοῦς +ἀποκρίνεται +αὐτοῖς +λέγων +Ἐλήλυθεν +ἡ +ὥρα +ἵνα +δοξασθῇ +ὁ +Υἱὸς +τοῦ +ἀνθρώπου. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ἐὰν +μὴ +ὁ +κόκκος +τοῦ +σίτου +πεσὼν +εἰς +τὴν +γῆν +ἀποθάνῃ, +αὐτὸς +μόνος +μένει· +δὲ +ἐὰν +ἀποθάνῃ, +πολὺν +καρπὸν +φέρει. +ὁ +φιλῶν +τὴν +ψυχὴν +αὐτοῦ +ἀπολλύει +αὐτήν, +καὶ +ὁ +μισῶν +τὴν +ψυχὴν +αὐτοῦ +ἐν +τῷ +κόσμῳ +τούτῳ +εἰς +ζωὴν +αἰώνιον +φυλάξει +αὐτήν. +ἐὰν +ἐμοί +τις +διακονῇ, +ἐμοὶ +ἀκολουθείτω, +καὶ +ὅπου +εἰμὶ +ἐγὼ, +ἐκεῖ +καὶ +ὁ +διάκονος +ὁ +ἐμὸς +ἔσται· +ἐάν +τις +ἐμοὶ +διακονῇ, +τιμήσει +αὐτὸν +ὁ +Πατήρ. +νῦν +ἡ +ψυχή +μου +τετάρακται, +καὶ +τί +εἴπω; +Πάτερ, +σῶσόν +με +ἐκ +τῆς +ὥρας +ταύτης. +ἀλλὰ +διὰ +τοῦτο +ἦλθον +εἰς +τὴν +ὥραν +ταύτην. +Πάτερ, +δόξασόν +σου +τὸ +ὄνομα. +οὖν +ἦλθεν +φωνὴ +ἐκ +τοῦ +οὐρανοῦ +Καὶ +ἐδόξασα +καὶ +πάλιν +δοξάσω. +οὖν +ὁ +ὄχλος +ὁ +ἑστὼς +καὶ +ἀκούσας +ἔλεγεν +βροντὴν +γεγονέναι· +ἄλλοι +ἔλεγον +Ἄγγελος +αὐτῷ +λελάληκεν. +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +Οὐ +δι’ +ἐμὲ +ἡ +φωνὴ +αὕτη +γέγονεν +ἀλλὰ +δι’ +ὑμᾶς. +νῦν +ἐστὶν +κρίσις +τοῦ +κόσμου +τούτου· +νῦν +ὁ +ἄρχων +τοῦ +κόσμου +τούτου +ἐκβληθήσεται +ἔξω· +ἐὰν +κἀγὼ +ὑψωθῶ +ἐκ +τῆς +γῆς, +πάντας +ἑλκύσω +πρὸς +ἐμαυτόν. +δὲ +τοῦτο +ἔλεγεν +σημαίνων +ποίῳ +θανάτῳ +ἤμελλεν +ἀποθνήσκειν. +οὖν +ἀπεκρίθη +αὐτῷ +ὁ +ὄχλος +Ἠμεῖς +ἠκούσαμεν +ἐκ +τοῦ +νόμου +ὅτι +ὁ +Χριστὸς +μένει +εἰς +τὸν +αἰῶνα, +καὶ +πῶς +λέγεις +σὺ +ὅτι +δεῖ +ὑψωθῆναι +τὸν +Υἱὸν +τοῦ +ἀνθρώπου; +τίς +ἐστιν +οὗτος +ὁ +Υἱὸς +τοῦ +ἀνθρώπου; +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +Ἔτι +μικρὸν +χρόνον +τὸ +φῶς +ἐν +ὑμῖν +ἐστιν. +περιπατεῖτε +ὡς +τὸ +φῶς +ἔχετε, +ἵνα +μὴ +σκοτία +ὑμᾶς +καταλάβῃ· +καὶ +ὁ +περιπατῶν +ἐν +τῇ +σκοτίᾳ +οὐκ +οἶδεν +ποῦ +ὑπάγει. +ὡς +τὸ +φῶς +ἔχετε, +πιστεύετε +εἰς +τὸ +φῶς, +ἵνα +υἱοὶ +φωτὸς +γένησθε. +Ταῦτα +ἐλάλησεν +Ἰησοῦς, +καὶ +ἀπελθὼν +ἐκρύβη +ἀπ’ +αὐτῶν. +δὲ +αὐτοῦ +Τοσαῦτα +σημεῖα +πεποιηκότος +ἔμπροσθεν +αὐτῶν +οὐκ +ἐπίστευον +εἰς +αὐτόν, +ἵνα +ὁ +λόγος +Ἠσαΐου +τοῦ +προφήτου +πληρωθῇ +ὃν +εἶπεν +Κύριε, +τίς +ἐπίστευσεν +τῇ +ἀκοῇ +ἡμῶν; +καὶ +ὁ +βραχίων +Κυρίου +τίνι +ἀπεκαλύφθη; +διὰ +τοῦτο +οὐκ +ἠδύναντο +πιστεύειν, +ὅτι +πάλιν +εἶπεν +Ἠσαΐας +Τετύφλωκεν +αὐτῶν +τοὺς +ὀφθαλμοὺς +καὶ +ἐπώρωσεν +αὐτῶν +τὴν +καρδίαν, +ἵνα +μὴ +ἴδωσιν +τοῖς +ὀφθαλμοῖς +καὶ +νοήσωσιν +τῇ +καρδίᾳ +καὶ +στραφῶσιν, +καὶ +ἰάσομαι +αὐτούς. +ταῦτα +εἶπεν +Ἠσαΐας +ὅτι +εἶδεν +τὴν +δόξαν +αὐτοῦ, +καὶ +ἐλάλησεν +περὶ +αὐτοῦ. +μέντοι +ὅμως +καὶ +ἐκ +τῶν +ἀρχόντων +πολλοὶ +ἐπίστευσαν +εἰς +αὐτόν, +ἀλλὰ +διὰ +τοὺς +Φαρισαίους +οὐχ +ὡμολόγουν, +ἵνα +μὴ +ἀποσυνάγωγοι +γένωνται· +γὰρ +ἠγάπησαν +τὴν +δόξαν +τῶν +ἀνθρώπων +μᾶλλον +ἤπερ +τὴν +δόξαν +τοῦ +Θεοῦ. +δὲ +Ἰησοῦς +ἔκραξεν +καὶ +εἶπεν +Ὁ +πιστεύων +εἰς +ἐμὲ +οὐ +πιστεύει +εἰς +ἐμὲ +ἀλλὰ +εἰς +τὸν +πέμψαντά +με, +καὶ +ὁ +θεωρῶν +ἐμὲ +θεωρεῖ +τὸν +πέμψαντά +με. +ἐγὼ +φῶς +εἰς +τὸν +κόσμον +ἐλήλυθα, +ἵνα +πᾶς +ὁ +πιστεύων +εἰς +ἐμὲ +ἐν +τῇ +σκοτίᾳ +μὴ +μείνῃ. +καὶ +ἐάν +τίς +ἀκούσῃ +μου +τῶν +ῥημάτων +καὶ +μὴ +φυλάξῃ, +ἐγὼ +οὐ +κρίνω +αὐτόν· +γὰρ +οὐ +ἦλθον +ἵνα +κρίνω +τὸν +κόσμον, +ἀλλ’ +ἵνα +σώσω +τὸν +κόσμον. +ὁ +ἀθετῶν +ἐμὲ +καὶ +μὴ +λαμβάνων +τὰ +ῥήματά +μου +ἔχει +τὸν +κρίνοντα +αὐτόν· +ὁ +λόγος +ὃν +ἐλάλησα, +ἐκεῖνος +κρινεῖ +αὐτὸν +ἐν +τῇ +ἐσχάτῃ +ἡμέρᾳ· +ὅτι +ἐγὼ +ἐξ +ἐμαυτοῦ +οὐκ +ἐλάλησα, +ἀλλ’ +ὁ +πέμψας +με +Πατὴρ +αὐτός +μοι +ἐντολὴν +δέδωκεν +τί +εἴπω +καὶ +τί +λαλήσω. +καὶ +οἶδα +ὅτι +ἡ +ἐντολὴ +αὐτοῦ +ζωὴ +αἰώνιός +ἐστιν. +οὖν +ἃ +ἐγὼ +λαλῶ, +καθὼς +εἴρηκέν +μοι +ὁ +Πατήρ, +οὕτως +λαλῶ. +δὲ +Πρὸ +τῆς +ἑορτῆς +τοῦ +πάσχα +ὁ +Ἰησοῦς +εἰδὼς +ὅτι +ἦλθεν +αὐτοῦ +ἡ +ὥρα +ἵνα +μεταβῇ +ἐκ +τοῦ +κόσμου +τούτου +πρὸς +τὸν +Πατέρα, +ἀγαπήσας +τοὺς +ἰδίους +τοὺς +ἐν +τῷ +κόσμῳ, +εἰς +τέλος +ἠγάπησεν +αὐτούς. +καὶ +δείπνου +γινομένου, +τοῦ +διαβόλου +ἤδη +βεβληκότος +εἰς +τὴν +καρδίαν +ἵνα +παραδοῖ +αὐτὸν +Ἰούδας +Σίμωνος +Ἰσκαριώτης, +εἰδὼς +ὅτι +πάντα +ἔδωκεν +αὐτῷ +ὁ +Πατὴρ +εἰς +τὰς +χεῖρας, +καὶ +ὅτι +ἀπὸ +Θεοῦ +ἐξῆλθεν +καὶ +πρὸς +τὸν +Θεὸν +ὑπάγει, +ἐγείρεται +ἐκ +τοῦ +δείπνου +καὶ +τίθησιν +τὰ +ἱμάτια, +καὶ +λαβὼν +λέντιον +διέζωσεν +ἑαυτόν· +εἶτα +βάλλει +ὕδωρ +εἰς +τὸν +νιπτῆρα, +καὶ +ἤρξατο +νίπτειν +τοὺς +πόδας +τῶν +μαθητῶν +καὶ +ἐκμάσσειν +τῷ +λεντίῳ +ᾧ +ἦν +διεζωσμένος. +οὖν +ἔρχεται +πρὸς +Σίμωνα +Πέτρον· +λέγει +αὐτῷ +Κύριε, +σύ +νίπτεις +μου +τοὺς +πόδας; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῷ +Ὃ +ἐγὼ +ποιῶ +σὺ +οὐκ +οἶδας +ἄρτι, +δὲ +γνώσῃ +μετὰ +ταῦτα. +λέγει +αὐτῷ +Πέτρος +Οὐ +μὴ +νίψῃς +μου +τοὺς +πόδας +εἰς +τὸν +αἰῶνα. +ἀπεκρίθη +Ἰησοῦς +αὐτῷ +Ἐὰν +μὴ +νίψω +σε, +οὐκ +ἔχεις +μέρος +μετ’ +ἐμοῦ. +λέγει +αὐτῷ +Σίμων +Πέτρος +Κύριε, +μὴ +τοὺς +πόδας +μου +μόνον +ἀλλὰ +καὶ +τὰς +χεῖρας +καὶ +τὴν +κεφαλήν. +λέγει +αὐτῷ +Ἰησοῦς +Ὁ +λελουμένος +οὐκ +ἔχει +χρείαν +εἰ +μὴ +τοὺς +πόδας +νίψασθαι, +ἀλλ’ +ἔστιν +καθαρὸς +ὅλος· +καὶ +ὑμεῖς +καθαροί +ἐστε, +ἀλλ’ +οὐχὶ +πάντες. +γὰρ +ᾔδει +τὸν +παραδιδόντα +αὐτόν· +διὰ +τοῦτο +εἶπεν +ὅτι +Οὐχὶ +πάντες +καθαροί +ἐστε. +οὖν +Ὅτε +ἔνιψεν +τοὺς +πόδας +αὐτῶν +καὶ +ἔλαβεν +τὰ +ἱμάτια +αὐτοῦ +καὶ +ἀνέπεσεν +πάλιν, +εἶπεν +αὐτοῖς +Γινώσκετε +τί +πεποίηκα +ὑμῖν; +ὑμεῖς +φωνεῖτέ +με +Ὁ +Διδάσκαλος +καὶ +ὁ +Κύριος, +καὶ +καλῶς +λέγετε· +γάρ. +εἰμὶ +οὖν +εἰ +ἐγὼ +ὁ +Κύριος +καὶ +ὁ +Διδάσκαλος, +ἔνιψα +ὑμῶν +τοὺς +πόδας +καὶ +ὑμεῖς +ὀφείλετε +νίπτειν +ἀλλήλων +τοὺς +πόδας· +γὰρ +ὑπόδειγμα +ἔδωκα +ὑμῖν +ἵνα +καθὼς +ἐγὼ +ἐποίησα +ὑμῖν +καὶ +ὑμεῖς +ποιῆτε. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +οὐκ +ἔστιν +δοῦλος +μείζων +τοῦ +κυρίου +αὐτοῦ, +οὐδὲ +ἀπόστολος +μείζων +τοῦ +πέμψαντος +αὐτόν. +εἰ +ταῦτα +οἴδατε, +μακάριοί +ἐστε +ἐὰν +ποιῆτε +αὐτά. +οὐ +περὶ +πάντων +ὑμῶν +λέγω· +ἐγὼ +οἶδα +τίνας +ἐξελεξάμην· +ἀλλ’ +ἵνα +ἡ +γραφὴ +πληρωθῇ +Ὁ +τρώγων +μου +τὸν +ἄρτον +ἐπῆρεν +ἐπ’ +ἐμὲ +τὴν +πτέρναν +αὐτοῦ. +ἀπ’ +ἄρτι +λέγω +ὑμῖν +πρὸ +τοῦ +γενέσθαι, +ἵνα +πιστεύητε +ὅταν +γένηται +ὅτι +ἐγώ +εἰμι. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ὁ +λαμβάνων +ἄν +τινα +πέμψω +ἐμὲ +λαμβάνει, +δὲ +ὁ +ἐμὲ +λαμβάνων +λαμβάνει +τὸν +πέμψαντά +με. +Ταῦτα +εἰπὼν +Ἰησοῦς +ἐταράχθη +τῷ +πνεύματι +καὶ +ἐμαρτύρησεν +καὶ +εἶπεν +Ἀμὴν +ἀμὴν +λέγω +ὑμῖν +ὅτι +εἷς +ἐξ +ὑμῶν +παραδώσει +με. +ἔβλεπον +εἰς +ἀλλήλους +οἱ +μαθηταὶ +ἀπορούμενοι +περὶ +τίνος +λέγει. +ἦν +ἀνακείμενος +εἷς +ἐκ +τῶν +μαθητῶν +αὐτοῦ +ἐν +τῷ +κόλπῳ +τοῦ +Ἰησοῦ, +ὃν +ἠγάπα +ὁ +Ἰησοῦς· +οὖν +νεύει +τούτῳ +Σίμων +Πέτρος +καὶ +λέγει +αὐτῷ +Εἰπὲ +τίς +ἐστιν +περὶ +οὗ +λέγει. +ἐκεῖνος +ἀναπεσὼν +οὕτως +ἐπὶ +τὸ +στῆθος +τοῦ +Ἰησοῦ +λέγει +αὐτῷ +Κύριε, +τίς +ἐστιν; +οὖν +ἀποκρίνεται +ὁ +Ἰησοῦς +ἐστιν +Ἐκεῖνός +ᾧ +ἐγὼ +βάψω +τὸ +ψωμίον +καὶ +δώσω +αὐτῷ. +οὖν +βάψας +τὸ +ψωμίον +λαμβάνει +καὶ +δίδωσιν +Ἰούδᾳ +Σίμωνος +Ἰσκαριώτου. +καὶ +μετὰ +τὸ +ψωμίον +τότε +εἰσῆλθεν +εἰς +ἐκεῖνον +ὁ +Σατανᾶς. +οὖν +λέγει +αὐτῷ +Ἰησοῦς +Ὃ +ποιεῖς +ποίησον +τάχιον. +δὲ +ἔγνω +οὐδεὶς +τῶν +ἀνακειμένων +τοῦτο +πρὸς +τί +εἶπεν +αὐτῷ· +γὰρ +τινὲς +ἐδόκουν, +ἐπεὶ +τὸ +γλωσσόκομον +εἶχεν +Ἰούδας, +ὅτι +λέγει +αὐτῷ +Ἰησοῦς +Ἀγόρασον +ὧν +χρείαν +ἔχομεν +εἰς +τὴν +ἑορτήν, +ἢ +ἵνα +τοῖς +πτωχοῖς +τι +δῷ. +οὖν +λαβὼν +τὸ +ψωμίον +ἐκεῖνος +ἐξῆλθεν +εὐθύς· +δὲ +ἦν +νύξ. +οὖν +Ὅτε +ἐξῆλθεν, +λέγει +Ἰησοῦς +Νῦν +ἐδοξάσθη +ὁ +Υἱὸς +τοῦ +ἀνθρώπου, +καὶ +ὁ +Θεὸς +ἐδοξάσθη +ἐν +αὐτῷ· +εἰ +ὁ +Θεὸς +ἐδοξάσθη +ἐν +αὐτῷ, +καὶ +ὁ +Θεὸς +δοξάσει +αὐτὸν +ἐν +αὑτῷ, +καὶ +εὐθὺς +δοξάσει +αὐτόν. +τεκνία, +ἔτι +μικρὸν +μεθ’ +ὑμῶν +εἰμι· +ζητήσετέ +με, +καὶ +καθὼς +εἶπον +τοῖς +Ἰουδαίοις +ὅτι +Ὅπου +ἐγὼ +ὑπάγω +ἐλθεῖν, +ὑμεῖς +οὐ +δύνασθε +καὶ +ὑμῖν +λέγω +ἄρτι. +ἐντολὴν +καινὴν +δίδωμι +ὑμῖν, +ἵνα +ἀγαπᾶτε +ἀλλήλους, +καθὼς +ἠγάπησα +ὑμᾶς +ἵνα +καὶ +ὑμεῖς +ἀγαπᾶτε +ἀλλήλους. +ἐν +τούτῳ +γνώσονται +πάντες +ὅτι +ἐμοὶ +μαθηταί +ἐστε, +ἐὰν +ἀγάπην +ἔχητε +ἐν +ἀλλήλοις. +Λέγει +αὐτῷ +Σίμων +Πέτρος +Κύριε, +ποῦ +ὑπάγεις; +ἀπεκρίθη +Ἰησοῦς +Ὅπου +ὑπάγω +μοι +νῦν +ἀκολουθῆσαι, +οὐ +δύνασαί +δὲ +ἀκολουθήσεις +ὕστερον. +λέγει +αὐτῷ +Πέτρος +Κύριε, +διὰ +τί +οὐ +δύναμαί +σοι +ἀκολουθῆσαι +ἄρτι; +τὴν +ψυχήν +μου +ὑπὲρ +σοῦ +θήσω. +ἀποκρίνεται +Ἰησοῦς +Τὴν +ψυχήν +σου +ὑπὲρ +ἐμοῦ +θήσεις; +ἀμὴν +ἀμὴν +λέγω +σοι, +οὐ +μὴ +ἀλέκτωρ +φωνήσῃ +ἕως +οὗ +ἀρνήσῃ +με +τρίς. +Μὴ +ταρασσέσθω +ὑμῶν +ἡ +καρδία· +πιστεύετε +εἰς +τὸν +Θεόν, +καὶ +εἰς +ἐμὲ +πιστεύετε. +ἐν +τῇ +οἰκίᾳ +τοῦ +Πατρός +μου +μοναὶ +πολλαί +εἰσιν· +δὲ +εἰ +μή, +ἂν +εἶπον +ὑμῖν· +ὅτι +πορεύομαι +ἑτοιμάσαι +τόπον +ὑμῖν· +καὶ +ἐὰν +πορευθῶ +καὶ +ἑτοιμάσω +τόπον +ὑμῖν, +πάλιν +ἔρχομαι +καὶ +παραλήμψομαι +ὑμᾶς +πρὸς +ἐμαυτόν, +ἵνα +ὅπου +εἰμὶ +ἐγὼ +καὶ +ὑμεῖς +ἦτε. +καὶ +ὅπου +ἐγὼ +ὑπάγω +οἴδατε +τὴν +ὁδόν. +Λέγει +αὐτῷ +Θωμᾶς +Κύριε, +οὐκ +οἴδαμεν +ποῦ +ὑπάγεις· +πῶς +οἴδαμεν +τὴν +ὁδὸν; +λέγει +αὐτῷ +Ἰησοῦς +Ἐγώ +εἰμι +ἡ +ὁδὸς +καὶ +ἡ +ἀλήθεια +καὶ +ἡ +ζωή· +οὐδεὶς +ἔρχεται +πρὸς +τὸν +Πατέρα +εἰ +μὴ +δι’ +ἐμοῦ. +εἰ +ἐγνώκειτέ +με, +ἂν +καὶ +τὸν +Πατέρα +μου +ᾔδειτε· +ἀπ’ +ἄρτι +γινώσκετε +αὐτὸν +καὶ +ἑωράκατε. +Λέγει +αὐτῷ +Φίλιππος +Κύριε, +δεῖξον +ἡμῖν +τὸν +Πατέρα, +καὶ +ἀρκεῖ +ἡμῖν. +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Τοσοῦτον +χρόνον +μεθ’ +ὑμῶν +εἰμι +καὶ +οὐκ +ἔγνωκάς +με, +Φίλιππε; +ὁ +ἑωρακὼς +ἐμὲ +ἑώρακεν +τὸν +Πατέρα· +πῶς +σὺ +λέγεις +Δεῖξον +ἡμῖν +τὸν +Πατέρα; +οὐ +πιστεύεις +ὅτι +ἐγὼ +ἐν +τῷ +Πατρὶ +καὶ +ὁ +Πατὴρ +ἐν +ἐμοί +ἐστιν; +τὰ +ῥήματα +ἃ +ἐγὼ +λέγω +ὑμῖν +ἀπ’ +ἐμαυτοῦ +οὐ +λαλῶ· +δὲ +ὁ +Πατὴρ +ἐν +ἐμοὶ +μένων +ποιεῖ +τὰ +ἔργα +αὐτοῦ. +πιστεύετέ +μοι +ὅτι +ἐγὼ +ἐν +τῷ +Πατρὶ +καὶ +ὁ +Πατὴρ +ἐν +ἐμοί· +δὲ +εἰ +μή, +διὰ +τὰ +ἔργα +αὐτὰ +πιστεύετε. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ὁ +πιστεύων +εἰς +ἐμὲ +τὰ +ἔργα +ἃ +ἐγὼ +ποιῶ +κἀκεῖνος +ποιήσει, +καὶ +μείζονα +τούτων +ποιήσει, +ὅτι +ἐγὼ +πρὸς +τὸν +Πατέρα +πορεύομαι· +καὶ +τι +ἂν +ὅ +αἰτήσητε +ἐν +τῷ +ὀνόματί +μου, +τοῦτο +ποιήσω, +ἵνα +δοξασθῇ +ὁ +Πατὴρ +ἐν +τῷ +Υἱῷ. +ἐάν +τι +αἰτήσητέ +με +ἐν +τῷ +ὀνόματί +μου, +ἐγὼ +ποιήσω. +Ἐὰν +ἀγαπᾶτέ +με, +τὰς +ἐντολὰς +τὰς +ἐμὰς +τηρήσετε. +κἀγὼ +ἐρωτήσω +τὸν +Πατέρα +καὶ +ἄλλον +Παράκλητον +δώσει +ὑμῖν +ἵνα +ᾖ +μεθ’ +ὑμῶν +εἰς +τὸν +αἰῶνα, +τὸ +Πνεῦμα +τῆς +ἀληθείας, +ὃ +λαβεῖν, +ὁ +κόσμος +οὐ +δύναται +ὅτι +οὐ +θεωρεῖ +αὐτὸ +οὐδὲ +γινώσκει· +ὑμεῖς +γινώσκετε +αὐτό, +ὅτι +παρ’ +ὑμῖν +μένει +καὶ +ἐν +ὑμῖν +ἔσται. +οὐκ +ἀφήσω +ὑμᾶς +ὀρφανούς, +ἔρχομαι +πρὸς +ὑμᾶς. +καὶ +ἔτι +μικρὸν +ὁ +κόσμος +με +οὐκέτι +θεωρεῖ, +δὲ +ὑμεῖς +θεωρεῖτέ +με, +ὅτι +ἐγὼ +ζῶ +καὶ +ὑμεῖς +ζήσετε. +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +γνώσεσθε +ὑμεῖς +ὅτι +ἐγὼ +ἐν +τῷ +Πατρί +μου +καὶ +ὑμεῖς +ἐν +ἐμοὶ +κἀγὼ +ἐν +ὑμῖν. +ὁ +ἔχων +τὰς +ἐντολάς +μου +καὶ +τηρῶν +αὐτὰς, +ἐκεῖνός +ἐστιν +ὁ +ἀγαπῶν +με· +δὲ +ὁ +ἀγαπῶν +με +ἀγαπηθήσεται +ὑπὸ +τοῦ +Πατρός +μου, +κἀγὼ +ἀγαπήσω +αὐτὸν +καὶ +ἐμφανίσω +αὐτῷ +ἐμαυτόν. +Λέγει +αὐτῷ +Ἰούδας, +οὐχ +ὁ +Ἰσκαριώτης +Κύριε, +καὶ +τί +γέγονεν +ὅτι +μέλλεις +ἡμῖν +ἐμφανίζειν +σεαυτὸν +καὶ +οὐχὶ +τῷ +κόσμῳ; +ἀπεκρίθη +Ἰησοῦς +καὶ +εἶπεν +αὐτῷ +Ἐάν +τις +ἀγαπᾷ, +με +τὸν +λόγον +μου +τηρήσει, +καὶ +ὁ +Πατήρ +μου +ἀγαπήσει +αὐτόν, +καὶ +πρὸς +αὐτὸν +ἐλευσόμεθα +καὶ +μονὴν +παρ’ +αὐτῷ +ποιησόμεθα. +ὁ +μὴ +ἀγαπῶν +με +τοὺς +λόγους +μου +οὐ +τηρεῖ· +καὶ +ὁ +λόγος +ὃν +ἀκούετε +οὐκ +ἔστιν +ἐμὸς +ἀλλὰ +τοῦ +πέμψαντός +με +Πατρός. +Ταῦτα +λελάληκα +ὑμῖν +παρ’ +ὑμῖν +μένων· +δὲ +ὁ +Παράκλητος, +τὸ +Πνεῦμα +τὸ +Ἅγιον +ὃ +πέμψει +ὁ +Πατὴρ +ἐν +τῷ +ὀνόματί +μου, +ἐκεῖνος +ὑμᾶς +διδάξει +πάντα +καὶ +ὑπομνήσει +ὑμᾶς +πάντα +ἃ +εἶπον +ὑμῖν +ἐγώ. +Εἰρήνην +ἀφίημι +ὑμῖν, +εἰρήνην +τὴν +ἐμὴν +δίδωμι +ὑμῖν· +οὐ +καθὼς +ὁ +κόσμος +δίδωσιν +ἐγὼ +δίδωμι +ὑμῖν. +μὴ +ταρασσέσθω +ὑμῶν +ἡ +καρδία +μηδὲ +δειλιάτω. +ἠκούσατε +ὅτι +ἐγὼ +εἶπον +ὑμῖν +Ὑπάγω +καὶ +ἔρχομαι +πρὸς +ὑμᾶς. +εἰ +ἠγαπᾶτέ +με, +ἄν +ἐχάρητε +ὅτι +πορεύομαι +πρὸς +τὸν +Πατέρα, +ὅτι +ὁ +Πατὴρ +μείζων +μού +ἐστιν. +καὶ +νῦν +εἴρηκα +ὑμῖν +πρὶν +γενέσθαι, +ἵνα +ὅταν +γένηται +πιστεύσητε. +οὐκέτι +πολλὰ +λαλήσω +μεθ’ +ὑμῶν, +γὰρ +ἔρχεται +ὁ +τοῦ +κόσμου +ἄρχων· +καὶ +ἐν +ἐμοὶ +οὐκ +ἔχει +οὐδέν, +ἀλλ’ +ἵνα +γνῷ +ὁ +κόσμος +ὅτι +ἀγαπῶ +τὸν +Πατέρα, +καὶ +καθὼς +ἐνετείλατο +μοι +ὁ +Πατὴρ, +οὕτως +ποιῶ. +Ἐγείρεσθε, +ἄγωμεν +ἐντεῦθεν. +Ἐγώ +εἰμι +ἡ +ἄμπελος +ἡ +ἀληθινή, +καὶ +ὁ +Πατήρ +μου +ὁ +γεωργός +ἐστιν. +πᾶν +κλῆμα +ἐν +ἐμοὶ +μὴ +φέρον +καρπὸν, +αἴρει +αὐτό, +καὶ +πᾶν +τὸ +καρπὸν +φέρον, +καθαίρει +αὐτὸ +ἵνα +καρπὸν +πλείονα +φέρῃ. +ἤδη +ὑμεῖς +καθαροί +ἐστε +διὰ +τὸν +λόγον +ὃν +λελάληκα +ὑμῖν· +μείνατε +ἐν +ἐμοί, +κἀγὼ +ἐν +ὑμῖν. +καθὼς +τὸ +κλῆμα +οὐ +δύναται +καρπὸν +φέρειν +ἀφ’ +ἑαυτοῦ +ἐὰν +μὴ +μένῃ +ἐν +τῇ +ἀμπέλῳ, +οὕτως +οὐδὲ +ὑμεῖς +ἐὰν +μὴ +ἐν +ἐμοὶ +μένητε. +ἐγώ +εἰμι +ἡ +ἄμπελος, +ὑμεῖς +τὰ +κλήματα. +ὁ +μένων +ἐν +ἐμοὶ +κἀγὼ +ἐν +αὐτῷ, +οὗτος +φέρει +καρπὸν +πολύν, +ὅτι +χωρὶς +ἐμοῦ +οὐ +δύνασθε +ποιεῖν +οὐδέν. +ἐὰν +μή +τις +μένῃ +ἐν +ἐμοί, +ἐβλήθη +ἔξω +ὡς +τὸ +κλῆμα +καὶ +ἐξηράνθη, +καὶ +συνάγουσιν +αὐτὰ +καὶ +εἰς +τὸ +πῦρ +βάλλουσιν, +καὶ +καίεται. +ἐὰν +μείνητε +ἐν +ἐμοὶ +καὶ +τὰ +ῥήματά +μου +ἐν +ὑμῖν +μείνῃ, +ἐὰν +ὃ +θέλητε +αἰτήσασθε +καὶ +γενήσεται +ὑμῖν. +ἐν +τούτῳ +ἐδοξάσθη +ὁ +Πατήρ +μου, +ἵνα +καρπὸν +πολὺν +φέρητε +καὶ +γενήσεσθε +ἐμοὶ +μαθηταί. +καθὼς +ἠγάπησέν +με +ὁ +Πατήρ, +κἀγὼ +ὑμᾶς +ἠγάπησα· +μείνατε +ἐν +τῇ +ἀγάπῃ +τῇ +ἐμῇ. +ἐὰν +τὰς +ἐντολάς +μου +τηρήσητε, +μενεῖτε +ἐν +τῇ +ἀγάπῃ +μου, +καθὼς +ἐγὼ +τοῦ +Πατρός +μου +τὰς +ἐντολὰς +τετήρηκα +καὶ +μένω +ἐν +αὐτοῦ +τῇ +ἀγάπῃ. +Ταῦτα +λελάληκα +ὑμῖν +ἵνα +ἡ +χαρὰ +ἡ +ἐμὴ +ἐν +ὑμῖν +ᾖ +καὶ +ἡ +χαρὰ +ὑμῶν +πληρωθῇ. +αὕτη +ἐστὶν +ἡ +ἐντολὴ +ἡ +ἐμὴ, +ἵνα +ἀγαπᾶτε +ἀλλήλους +καθὼς +ἠγάπησα +ὑμᾶς. +μείζονα +ταύτης +ἀγάπην +οὐδεὶς +ἔχει, +ἵνα +τις +τὴν +ψυχὴν +αὐτοῦ +θῇ +ὑπὲρ +τῶν +φίλων +αὐτοῦ. +ὑμεῖς +φίλοι +μού +ἐστε, +ἐὰν +ποιῆτε +ὃ +ἐγὼ +ἐντέλλομαι +ὑμῖν. +οὐκέτι +λέγω +ὑμᾶς +δούλους, +ὅτι +ὁ +δοῦλος +οὐκ +οἶδεν +τί +ποιεῖ +αὐτοῦ +ὁ +κύριος· +δὲ +ὑμᾶς +εἴρηκα +φίλους, +ὅτι +πάντα +ἃ +ἤκουσα +παρὰ +τοῦ +Πατρός +μου +ἐγνώρισα +ὑμῖν. +οὐχ +ὑμεῖς +με +ἐξελέξασθε, +ἀλλ’ +ἐγὼ +ἐξελεξάμην +ὑμᾶς, +καὶ +ἔθηκα +ὑμᾶς +ἵνα +ὑμεῖς +ὑπάγητε +καὶ +καρπὸν +φέρητε +καὶ +ὁ +καρπὸς +ὑμῶν +μένῃ, +ἵνα +τι +ἂν +ὅ +αἰτήσητε +τὸν +Πατέρα +ἐν +τῷ +ὀνόματί +μου +δῷ +ὑμῖν. +ταῦτα +ἐντέλλομαι +ὑμῖν, +ἵνα +ἀγαπᾶτε +ἀλλήλους. +Εἰ +ὁ +κόσμος +ὑμᾶς +μισεῖ, +γινώσκετε +ὅτι +ἐμὲ +πρῶτον +ὑμῶν +μεμίσηκεν. +εἰ +ἐκ +τοῦ +κόσμου +ἦτε, +ἂν +ὁ +κόσμος +τὸ +ἴδιον +ἐφίλει· +δὲ +ὅτι +ἐκ +τοῦ +κόσμου +οὐκ +ἐστέ, +ἀλλ’ +ἐγὼ +ἐξελεξάμην +ὑμᾶς +ἐκ +τοῦ +κόσμου, +διὰ +τοῦτο +μισεῖ +ὑμᾶς +ὁ +κόσμος. +μνημονεύετε +τοῦ +λόγου +οὗ +ἐγὼ +εἶπον +ὑμῖν +Οὐκ +ἔστιν +δοῦλος +μείζων +τοῦ +κυρίου +αὐτοῦ· +εἰ +ἐμὲ +ἐδίωξαν, +καὶ +ὑμᾶς +διώξουσιν· +εἰ +τὸν +λόγον +μου +ἐτήρησαν, +καὶ +τὸν +ὑμέτερον +τηρήσουσιν. +ἀλλὰ +ταῦτα +πάντα +ποιήσουσιν +εἰς +ὑμᾶς +διὰ +τὸ +ὄνομά +μου, +ὅτι +οὐκ +οἴδασιν +τὸν +πέμψαντά +με. +εἰ +μὴ +ἦλθον +καὶ +ἐλάλησα +αὐτοῖς, +ἁμαρτίαν +οὐκ +εἴχοσαν· +δὲ +νῦν +πρόφασιν +οὐκ +ἔχουσιν +περὶ +τῆς +ἁμαρτίας +αὐτῶν. +ὁ +ἐμὲ +μισῶν +καὶ +τὸν +Πατέρα +μου +μισεῖ. +εἰ +τὰ +ἔργα +μὴ +ἐποίησα +ἐν +αὐτοῖς +ἃ +οὐδεὶς +ἄλλος +ἐποίησεν, +ἁμαρτίαν +οὐκ +εἴχοσαν· +δὲ +νῦν +καὶ +ἑωράκασιν +καὶ +μεμισήκασιν +καὶ +ἐμὲ +καὶ +τὸν +Πατέρα +μου. +ἀλλ’ +ἵνα +πληρωθῇ +ὁ +λόγος +ὁ +ἐν +τῷ +νόμῳ +αὐτῶν +γεγραμμένος +ὅτι +Ἐμίσησάν +με +δωρεάν. +Ὅταν +ἔλθῃ +ὁ +Παράκλητος +ὃν +ἐγὼ +πέμψω +ὑμῖν +παρὰ +τοῦ +Πατρός, +τὸ +Πνεῦμα +τῆς +ἀληθείας +ὃ +παρὰ +τοῦ +Πατρὸς +ἐκπορεύεται, +ἐκεῖνος +μαρτυρήσει +περὶ +ἐμοῦ· +δὲ +καὶ +ὑμεῖς +μαρτυρεῖτε, +ὅτι +ἀπ’ +ἀρχῆς +μετ’ +ἐμοῦ +ἐστε. +Ταῦτα +λελάληκα +ὑμῖν +ἵνα +μὴ +σκανδαλισθῆτε. +ἀποσυναγώγους +ποιήσουσιν +ὑμᾶς· +ἀλλ’ +ἔρχεται +ὥρα +ἵνα +πᾶς +ὁ +ἀποκτείνας +ὑμᾶς +δόξῃ +λατρείαν +προσφέρειν +τῷ +Θεῷ. +καὶ +ταῦτα +ποιήσουσιν +ὅτι +οὐκ +ἔγνωσαν +τὸν +Πατέρα +οὐδὲ +ἐμέ. +ἀλλὰ +ταῦτα +λελάληκα +ὑμῖν +ἵνα +ὅταν +ἔλθῃ +ἡ +ὥρα +αὐτῶν +μνημονεύητε +αὐτῶν, +ὅτι +ἐγὼ +εἶπον +ὑμῖν. +δὲ +ταῦτα +ὑμῖν +ἐξ +ἀρχῆς +οὐκ +εἶπον, +ὅτι +μεθ’ +ὑμῶν +ἤμην. +δὲ +νῦν +ὑπάγω +πρὸς +τὸν +πέμψαντά +με, +καὶ +οὐδεὶς +ἐξ +ὑμῶν +ἐρωτᾷ +με +Ποῦ +ὑπάγεις; +ἀλλ’ +ὅτι +ταῦτα +λελάληκα +ὑμῖν, +ἡ +λύπη +πεπλήρωκεν +ὑμῶν +τὴν +καρδίαν. +ἀλλ’ +ἐγὼ +τὴν +ἀλήθειαν +λέγω +ὑμῖν, +συμφέρει +ὑμῖν +ἵνα +ἐγὼ +ἀπέλθω. +γὰρ +ἐὰν +μὴ +ἀπέλθω, +ὁ +Παράκλητος +οὐ +μὴ +ἔλθῃ +πρὸς +ὑμᾶς· +δὲ +ἐὰν +πορευθῶ, +πέμψω +αὐτὸν +πρὸς +ὑμᾶς. +καὶ +ἐλθὼν +ἐκεῖνος +ἐλέγξει +τὸν +κόσμον +περὶ +ἁμαρτίας +καὶ +περὶ +δικαιοσύνης +καὶ +περὶ +κρίσεως· +μέν, +περὶ +ἁμαρτίας +ὅτι +οὐ +πιστεύουσιν +εἰς +ἐμέ· +δέ, +περὶ +δικαιοσύνης +ὅτι +πρὸς +τὸν +Πατέρα +ὑπάγω +καὶ +οὐκέτι +θεωρεῖτέ +με· +δὲ +περὶ +κρίσεως, +ὅτι +ὁ +ἄρχων +τοῦ +κόσμου +τούτου +κέκριται. +Ἔτι +ἔχω +πολλὰ +ὑμῖν +λέγειν, +ἀλλ’ +οὐ +δύνασθε +βαστάζειν +ἄρτι· +δὲ +ὅταν +ἔλθῃ +ἐκεῖνος, +τὸ +Πνεῦμα +τῆς +ἀληθείας, +ὁδηγήσει +ὑμᾶς +εἰς +τὴν +ἀλήθειαν +πᾶσαν· +γὰρ +οὐ +λαλήσει +ἀφ’ +ἑαυτοῦ, +ἀλλ’ +ὅσα +ἀκούει +λαλήσει, +καὶ +τὰ +ἐρχόμενα +ἀναγγελεῖ +ὑμῖν. +ἐκεῖνος +ἐμὲ +δοξάσει, +ὅτι +ἐκ +τοῦ +ἐμοῦ +λήμψεται +καὶ +ἀναγγελεῖ +ὑμῖν. +πάντα +ὅσα +ἔχει +ὁ +Πατὴρ +ἐμά +ἐστιν· +διὰ +τοῦτο +εἶπον +ὅτι +ἐκ +τοῦ +ἐμοῦ +λαμβάνει +καὶ +ἀναγγελεῖ +ὑμῖν. +Μικρὸν +καὶ +οὐκέτι +θεωρεῖτέ +με, +καὶ +πάλιν +μικρὸν +καὶ +ὄψεσθέ +με. +οὖν +Εἶπαν +ἐκ +τῶν +μαθητῶν +αὐτοῦ +πρὸς +ἀλλήλους +Τί +ἐστιν +τοῦτο +ὃ +λέγει +ἡμῖν +Μικρὸν +καὶ +οὐ +θεωρεῖτέ +με, +καὶ +πάλιν +μικρὸν +καὶ +ὄψεσθέ +με; +καί +Ὅτι +ὑπάγω +πρὸς +τὸν +Πατέρα; +οὖν +ἔλεγον +τί +ἐστιν +Τοῦτο +ὃ +λέγει +τὸ +μικρόν; +οὐκ +οἴδαμεν +τί +λαλεῖ. +ἔγνω +Ἰησοῦς +ὅτι +ἤθελον +αὐτὸν +ἐρωτᾶν, +καὶ +εἶπεν +αὐτοῖς +Περὶ +τούτου +ζητεῖτε +μετ’ +ἀλλήλων +ὅτι +εἶπον +Μικρὸν +καὶ +οὐ +θεωρεῖτέ +με, +καὶ +πάλιν +μικρὸν +καὶ +ὄψεσθέ +με; +ἀμὴν +ἀμὴν +λέγω +ὑμῖν +ὅτι +κλαύσετε +καὶ +θρηνήσετε +ὑμεῖς, +δὲ +ὁ +κόσμος +χαρήσεται· +ὑμεῖς +λυπηθήσεσθε, +ἀλλ’ +ἡ +λύπη +ὑμῶν +εἰς +χαρὰν +γενήσεται. +ὅταν +ἡ +γυνὴ +τίκτῃ +λύπην +ἔχει, +ὅτι +ἦλθεν +ἡ +ὥρα +αὐτῆς· +δὲ +ὅταν +γεννήσῃ +τὸ +παιδίον, +οὐκέτι +μνημονεύει +τῆς +θλίψεως +διὰ +τὴν +χαρὰν +ὅτι +ἐγεννήθη +ἄνθρωπος +εἰς +τὸν +κόσμον. +οὖν +μὲν +καὶ +ὑμεῖς +νῦν +λύπην +ἔχετε· +δὲ +πάλιν +ὄψομαι +ὑμᾶς, +καὶ +χαρήσεται +ὑμῶν +ἡ +καρδία, +καὶ +τὴν +χαρὰν +ὑμῶν +οὐδεὶς +αἴρει +ἀφ’ +ὑμῶν. +καὶ +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ἐμὲ +οὐκ +ἐρωτήσετε +οὐδέν. +ἀμὴν +ἀμὴν +λέγω +ὑμῖν, +ἄν +τι +αἰτήσητε +τὸν +Πατέρα +δώσει +ὑμῖν +ἐν +τῷ +ὀνόματί +μου. +ἕως +ἄρτι +οὐκ +ᾐτήσατε +οὐδὲν +ἐν +τῷ +ὀνόματί +μου· +αἰτεῖτε, +καὶ +λήμψεσθε, +ἵνα +ἡ +χαρὰ +ὑμῶν +ᾖ +πεπληρωμένη. +Ταῦτα +ἐν +παροιμίαις +λελάληκα +ὑμῖν· +ἔρχεται +ὥρα +ὅτε +οὐκέτι +ἐν +παροιμίαις +λαλήσω +ὑμῖν, +ἀλλὰ +παρρησίᾳ +περὶ +τοῦ +Πατρὸς +ἀπαγγελῶ +ὑμῖν. +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +ἐν +τῷ +ὀνόματί +μου +αἰτήσεσθε, +καὶ +οὐ +λέγω +ὑμῖν +ὅτι +ἐγὼ +ἐρωτήσω +τὸν +Πατέρα +περὶ +ὑμῶν· +γὰρ +αὐτὸς +ὁ +Πατὴρ +φιλεῖ +ὑμᾶς, +ὅτι +ὑμεῖς +ἐμὲ +πεφιλήκατε +καὶ +πεπιστεύκατε +ὅτι +ἐγὼ +παρὰ +τοῦ +Θεοῦ +ἐξῆλθον. +ἐξῆλθον +ἐκ +τοῦ +Πατρὸς +καὶ +ἐλήλυθα +εἰς +τὸν +κόσμον· +πάλιν +ἀφίημι +τὸν +κόσμον +καὶ +πορεύομαι +πρὸς +τὸν +Πατέρα. +Λέγουσιν +οἱ +μαθηταὶ +αὐτοῦ +Ἴδε +νῦν +ἐν +παρρησίᾳ +λαλεῖς, +καὶ +παροιμίαν +οὐδεμίαν +λέγεις. +νῦν +οἴδαμεν +ὅτι +οἶδας +πάντα +καὶ +οὐ +χρείαν +ἔχεις +ἵνα +τίς +σε +ἐρωτᾷ· +ἐν +τούτῳ +πιστεύομεν +ὅτι +ἀπὸ +Θεοῦ +ἐξῆλθες. +ἀπεκρίθη +αὐτοῖς +Ἰησοῦς +Ἄρτι +πιστεύετε; +ἰδοὺ +ἔρχεται +ὥρα +καὶ +ἐλήλυθεν +ἵνα +σκορπισθῆτε +ἕκαστος +εἰς +τὰ +ἴδια +κἀμὲ +μόνον +ἀφῆτε· +καὶ +οὐκ +εἰμὶ +μόνος, +ὅτι +ὁ +Πατὴρ +μετ’ +ἐμοῦ +ἐστιν. +ταῦτα +λελάληκα +ὑμῖν +ἵνα +ἐν +ἐμοὶ +εἰρήνην +ἔχητε. +ἐν +τῷ +κόσμῳ +θλῖψιν +ἔχετε· +ἀλλὰ +θαρσεῖτε, +ἐγὼ +νενίκηκα +τὸν +κόσμον. +Ταῦτα +ἐλάλησεν +Ἰησοῦς, +καὶ +ἐπάρας +τοὺς +ὀφθαλμοὺς +αὐτοῦ +εἰς +τὸν +οὐρανὸν +εἶπεν +Πάτερ, +ἐλήλυθεν +ἡ +ὥρα· +δόξασόν +σου +τὸν +Υἱόν, +ἵνα +ὁ +Υἱὸς +δοξάσῃ +σέ, +καθὼς +ἔδωκας +αὐτῷ +ἐξουσίαν +πάσης +σαρκός, +ἵνα +πᾶν +ὃ +δέδωκας +αὐτῷ +δώσῃ +αὐτοῖς +ζωὴν +αἰώνιον. +δέ +αὕτη +ἐστιν +ἡ +αἰώνιος +ζωὴ, +ἵνα +γινώσκωσιν +σὲ +τὸν +μόνον +ἀληθινὸν +Θεὸν +καὶ +ὃν +ἀπέστειλας +Ἰησοῦν +Χριστόν. +ἐγώ +σε +ἐδόξασα +ἐπὶ +τῆς +γῆς, +τελειώσας +τὸ +ἔργον +ὃ +δέδωκάς +μοι +ἵνα +ποιήσω· +καὶ +Πάτερ, +νῦν +δόξασόν +με +σύ, +παρὰ +σεαυτῷ +τῇ +δόξῃ +ᾗ +εἶχον +πρὸ +τοῦ +τὸν +κόσμον +εἶναι +παρὰ +σοί. +Ἐφανέρωσά +σου +τὸ +ὄνομα +τοῖς +ἀνθρώποις +οὓς +ἔδωκάς +μοι +ἐκ +τοῦ +κόσμου. +σοὶ +ἦσαν +κἀμοὶ +αὐτοὺς +ἔδωκας, +καὶ +τὸν +λόγον +σου +τετήρηκαν. +νῦν +ἔγνωκαν +ὅτι +πάντα +ὅσα +δέδωκάς +μοι +παρὰ +σοῦ +εἰσιν· +ὅτι +τὰ +ῥήματα +ἃ +ἔδωκάς +μοι +δέδωκα +αὐτοῖς, +καὶ +αὐτοὶ +ἔλαβον, +καὶ +ἔγνωσαν +ἀληθῶς +ὅτι +παρὰ +σοῦ +ἐξῆλθον, +καὶ +ἐπίστευσαν +ὅτι +σύ +με +ἀπέστειλας. +Ἐγὼ +περὶ +αὐτῶν +ἐρωτῶ· +οὐ +περὶ +τοῦ +κόσμου +ἐρωτῶ, +ἀλλὰ +περὶ +ὧν +δέδωκάς +μοι, +ὅτι +σοί +εἰσιν, +καὶ +τὰ +ἐμὰ +πάντα +σά +ἐστιν +καὶ +τὰ +σὰ +ἐμά, +καὶ +δεδόξασμαι +ἐν +αὐτοῖς. +καὶ +οὐκέτι +εἰμὶ +ἐν +τῷ +κόσμῳ, +καὶ +αὐτοὶ +ἐν +τῷ +κόσμῳ +εἰσίν, +κἀγὼ +πρὸς +σὲ +ἔρχομαι. +Πάτερ +ἅγιε, +τήρησον +αὐτοὺς +ἐν +τῷ +ὀνόματί +σου +ᾧ +δέδωκάς +μοι, +ἵνα +ὦσιν +ἓν +καθὼς +ἡμεῖς. +ὅτε +ἤμην +μετ’ +αὐτῶν, +ἐγὼ +ἐτήρουν +αὐτοὺς +ἐν +τῷ +ὀνόματί +σου +ᾧ +δέδωκάς +μοι, +καὶ +ἐφύλαξα, +καὶ +οὐδεὶς +ἐξ +αὐτῶν +ἀπώλετο +εἰ +μὴ +ὁ +υἱὸς +τῆς +ἀπωλείας, +ἵνα +ἡ +γραφὴ +πληρωθῇ. +δὲ +νῦν +πρὸς +σὲ +ἔρχομαι, +καὶ +ταῦτα +λαλῶ +ἐν +τῷ +κόσμῳ +ἵνα +ἔχωσιν +τὴν +χαρὰν +τὴν +ἐμὴν +πεπληρωμένην +ἐν +ἑαυτοῖς. +ἐγὼ +δέδωκα +αὐτοῖς +τὸν +λόγον +σου, +καὶ +ὁ +κόσμος +ἐμίσησεν +αὐτούς, +ὅτι +οὐκ +εἰσὶν +ἐκ +τοῦ +κόσμου +καθὼς +ἐγὼ +οὐκ +εἰμὶ +ἐκ +τοῦ +κόσμου. +οὐκ +ἐρωτῶ +ἵνα +ἄρῃς +αὐτοὺς +ἐκ +τοῦ +κόσμου, +ἀλλ’ +ἵνα +τηρήσῃς +αὐτοὺς +ἐκ +τοῦ +πονηροῦ. +ἐκ +τοῦ +κόσμου +οὐκ +εἰσὶν +καθὼς +ἐγὼ +οὐκ +εἰμὶ +ἐκ +τοῦ +κόσμου. +ἁγίασον +αὐτοὺς +ἐν +τῇ +ἀληθείᾳ· +ὁ +λόγος +ὁ +σὸς +ἀλήθειά +ἐστιν. +καθὼς +ἐμὲ +ἀπέστειλας +εἰς +τὸν +κόσμον, +κἀγὼ +ἀπέστειλα +αὐτοὺς +εἰς +τὸν +κόσμον· +καὶ +ὑπὲρ +αὐτῶν +ἐγὼ +ἁγιάζω +ἐμαυτόν, +ἵνα +ὦσιν +ἡγιασμένοι +καὶ +αὐτοὶ +ἐν +ἀληθείᾳ. +δὲ +Οὐ +περὶ +τούτων +ἐρωτῶ +μόνον, +ἀλλὰ +καὶ +περὶ +τῶν +πιστευόντων +διὰ +τοῦ +λόγου +αὐτῶν +εἰς +ἐμέ, +ἵνα +πάντες +ἓν +ὦσιν, +καθὼς +Πατήρ, +σύ, +ἐν +ἐμοὶ +κἀγὼ +ἐν +σοί, +ἵνα +καὶ +αὐτοὶ +ἐν +ἡμῖν +ὦσιν, +ἵνα +ὁ +κόσμος +πιστεύῃ +ὅτι +σύ +με +ἀπέστειλας. +κἀγὼ +τὴν +δόξαν +ἣν +δέδωκάς +μοι +δέδωκα +αὐτοῖς, +ἵνα +ὦσιν +ἓν +καθὼς +ἡμεῖς +ἕν· +ἐγὼ +ἐν +αὐτοῖς +καὶ +σὺ +ἐν +ἐμοί, +ἵνα +ὦσιν +τετελειωμένοι +εἰς +ἕν, +ἵνα +γινώσκῃ +ὁ +κόσμος +ὅτι +σύ +με +ἀπέστειλας +καὶ +ἠγάπησας +αὐτοὺς +καθὼς +ἐμὲ +ἠγάπησας. +Πατήρ, +ὃ +δέδωκάς +μοι, +θέλω +ἵνα +ὅπου +εἰμὶ +ἐγὼ +κἀκεῖνοι +ὦσιν +μετ’ +ἐμοῦ, +ἵνα +θεωρῶσιν +τὴν +δόξαν +τὴν +ἐμὴν, +ἣν +δέδωκάς +μοι +ὅτι +ἠγάπησάς +με +πρὸ +καταβολῆς +κόσμου. +Πατὴρ +δίκαιε, +καὶ +ὁ +κόσμος +σε +οὐκ +ἔγνω, +δέ +ἐγὼ +σε +ἔγνων, +καὶ +οὗτοι +ἔγνωσαν +ὅτι +σύ +με +ἀπέστειλας· +καὶ +ἐγνώρισα +αὐτοῖς +τὸ +ὄνομά +σου +καὶ +γνωρίσω, +ἵνα +ἡ +ἀγάπη +ἣν +ἠγάπησάς +με +ἐν +αὐτοῖς +ᾖ +κἀγὼ +ἐν +αὐτοῖς. +Ταῦτα +εἰπὼν +Ἰησοῦς +ἐξῆλθεν +σὺν +τοῖς +μαθηταῖς +αὐτοῦ +πέραν +τοῦ +χειμάρρου +τῶν +Κέδρων, +ὅπου +ἦν +κῆπος, +εἰς +ὃν +εἰσῆλθεν +αὐτὸς +καὶ +οἱ +μαθηταὶ +αὐτοῦ. +δὲ +ᾔδει +καὶ +Ἰούδας +ὁ +παραδιδοὺς +αὐτὸν +τὸν +τόπον, +ὅτι +πολλάκις +συνήχθη +Ἰησοῦς +ἐκεῖ +μετὰ +τῶν +μαθητῶν +αὐτοῦ. +οὖν +ὁ +Ἰούδας +λαβὼν +τὴν +σπεῖραν +καὶ +ἐκ +τῶν +ἀρχιερέων +καὶ +ἐκ +τῶν +Φαρισαίων +ὑπηρέτας +ἔρχεται +ἐκεῖ +μετὰ +φανῶν +καὶ +λαμπάδων +καὶ +ὅπλων. +οὖν +Ἰησοῦς +εἰδὼς +πάντα +τὰ +ἐρχόμενα +ἐπ’ +αὐτὸν +ἐξῆλθεν +καὶ +λέγει +αὐτοῖς +Τίνα +ζητεῖτε; +ἀπεκρίθησαν +αὐτῷ +Ἰησοῦν +τὸν +Ναζωραῖον. +λέγει +αὐτοῖς +Ἐγώ +εἰμι. +δὲ +εἱστήκει +καὶ +Ἰούδας +ὁ +παραδιδοὺς +αὐτὸν +μετ’ +αὐτῶν. +οὖν +ὡς +εἶπεν +αὐτοῖς +Ἐγώ +εἰμι, +ἀπῆλθαν +εἰς +τὰ +ὀπίσω +καὶ +ἔπεσαν +χαμαί. +οὖν +πάλιν +ἐπηρώτησεν +αὐτούς +Τίνα +ζητεῖτε; +δὲ +οἱ +εἶπαν +Ἰησοῦν +τὸν +Ναζωραῖον. +ἀπεκρίθη +Ἰησοῦς +Εἶπον +ὑμῖν +ὅτι +ἐγώ +εἰμι· +οὖν +εἰ +ἐμὲ +ζητεῖτε, +ἄφετε +τούτους +ὑπάγειν· +ἵνα +πληρωθῇ +ὁ +λόγος +ὃν +εἶπεν, +ὅτι +Οὓς +δέδωκάς +μοι, +οὐκ +ἀπώλεσα +ἐξ +αὐτῶν +οὐδένα. +οὖν +Σίμων +Πέτρος +ἔχων +μάχαιραν +εἵλκυσεν +αὐτὴν +καὶ +ἔπαισεν +τὸν +τοῦ +ἀρχιερέως +δοῦλον +καὶ +ἀπέκοψεν +αὐτοῦ +τὸ +ὠτάριον +τὸ +δεξιόν. +δὲ +ἦν +ὄνομα +τῷ +δούλῳ +Μάλχος. +οὖν +εἶπεν +ὁ +Ἰησοῦς +τῷ +Πέτρῳ +Βάλε +τὴν +μάχαιραν +εἰς +τὴν +θήκην· +τὸ +ποτήριον +ὃ +δέδωκέν +μοι +ὁ +Πατήρ, +οὐ +μὴ +πίω +αὐτό; +οὖν +Ἠ +σπεῖρα +καὶ +ὁ +χιλίαρχος +καὶ +οἱ +ὑπηρέται +τῶν +Ἰουδαίων +συνέλαβον +τὸν +Ἰησοῦν +καὶ +ἔδησαν +αὐτὸν, +καὶ +ἤγαγον +πρὸς +Ἅνναν +πρῶτον· +γὰρ +ἦν +πενθερὸς +τοῦ +Καϊάφα, +ὃς +ἦν +ἀρχιερεὺς +τοῦ +ἐνιαυτοῦ +ἐκείνου· +δὲ +ἦν +Καϊάφας +ὁ +συμβουλεύσας +τοῖς +Ἰουδαίοις +ὅτι +συμφέρει +ἕνα +ἄνθρωπον +ἀποθανεῖν +ὑπὲρ +τοῦ +λαοῦ. +δὲ +Ἠκολούθει +τῷ +Ἰησοῦ +Σίμων +Πέτρος +καὶ +ἄλλος +μαθητής. +δὲ +ὁ +μαθητὴς +ἐκεῖνος +ἦν +γνωστὸς +τῷ +ἀρχιερεῖ, +καὶ +συνεισῆλθεν +τῷ +Ἰησοῦ +εἰς +τὴν +αὐλὴν +τοῦ +ἀρχιερέως, +δὲ +ὁ +Πέτρος +εἱστήκει +πρὸς +τῇ +θύρᾳ +ἔξω. +οὖν +ἐξῆλθεν +ὁ +μαθητὴς +ὁ +ἄλλος +ὁ +γνωστὸς +τοῦ +ἀρχιερέως +καὶ +εἶπεν +τῇ +θυρωρῷ, +καὶ +εἰσήγαγεν +τὸν +Πέτρον. +οὖν +λέγει +τῷ +Πέτρῳ +ἡ +παιδίσκη +ἡ +θυρωρός +Μὴ +καὶ +σὺ +ἐκ +τῶν +μαθητῶν +τοῦ +ἀνθρώπου +τούτου; +εἶ +λέγει +ἐκεῖνος +Οὐκ +εἰμί. +δὲ +εἱστήκεισαν +οἱ +δοῦλοι +καὶ +οἱ +ὑπηρέται +ἀνθρακιὰν +πεποιηκότες, +ὅτι +ψῦχος +ἦν, +καὶ +ἐθερμαίνοντο· +δὲ +καὶ +ὁ +Πέτρος +μετ’ +αὐτῶν +ἦν +ἑστὼς +καὶ +θερμαινόμενος. +οὖν +Ὁ +ἀρχιερεὺς +ἠρώτησεν +τὸν +Ἰησοῦν +περὶ +τῶν +μαθητῶν +αὐτοῦ +καὶ +περὶ +τῆς +διδαχῆς +αὐτοῦ. +ἀπεκρίθη +αὐτῷ +Ἰησοῦς +Ἐγὼ +παρρησίᾳ +λελάληκα +τῷ +κόσμῳ· +ἐγὼ +πάντοτε +ἐδίδαξα +ἐν +συναγωγῇ +καὶ +ἐν +τῷ +ἱερῷ, +ὅπου +πάντες +οἱ +Ἰουδαῖοι +συνέρχονται, +καὶ +ἐν +κρυπτῷ +ἐλάλησα +οὐδέν. +τί +με +ἐρωτᾷς; +ἐρώτησον +τοὺς +ἀκηκοότας +τί +ἐλάλησα +αὐτοῖς· +ἴδε +οὗτοι +οἴδασιν +ἃ +εἶπον +ἐγώ. +δὲ +ταῦτα +αὐτοῦ +εἰπόντος +εἷς +παρεστηκὼς +τῶν +ὑπηρετῶν +ἔδωκεν +ῥάπισμα +τῷ +Ἰησοῦ +εἰπών +Οὕτως +ἀποκρίνῃ +τῷ +ἀρχιερεῖ; +ἀπεκρίθη +αὐτῷ +Ἰησοῦς +Εἰ +κακῶς +ἐλάλησα, +μαρτύρησον +περὶ +τοῦ +κακοῦ· +δὲ +εἰ +καλῶς, +τί +με +δέρεις; +οὖν +ἀπέστειλεν +αὐτὸν +ὁ +Ἄννας +δεδεμένον +πρὸς +Καϊάφαν +τὸν +ἀρχιερέα. +δὲ +Σίμων +Πέτρος +Ἦν +ἑστὼς +καὶ +θερμαινόμενος. +οὖν +εἶπον +αὐτῷ +Μὴ +καὶ +σὺ +ἐκ +τῶν +μαθητῶν +αὐτοῦ +εἶ; +ἠρνήσατο +ἐκεῖνος +καὶ +εἶπεν +Οὐκ +εἰμί. +λέγει +εἷς +ἐκ +τῶν +δούλων +τοῦ +ἀρχιερέως, +ὢν +συγγενὴς +οὗ +ἀπέκοψεν +Πέτρος +τὸ +ὠτίον +Οὐκ +ἐγώ +εἶδον +σε +ἐν +τῷ +κήπῳ +μετ’ +αὐτοῦ; +οὖν +πάλιν +ἠρνήσατο +Πέτρος, +καὶ +εὐθέως +ἀλέκτωρ +ἐφώνησεν. +οὖν +Ἄγουσιν +τὸν +Ἰησοῦν +ἀπὸ +τοῦ +Καϊάφα +εἰς +τὸ +πραιτώριον· +δὲ +ἦν +πρωΐ· +καὶ +αὐτοὶ +οὐκ +εἰσῆλθον +εἰς +τὸ +πραιτώριον, +ἵνα +μὴ +μιανθῶσιν +ἀλλὰ +φάγωσιν +τὸ +πάσχα. +οὖν +ἐξῆλθεν +ὁ +Πειλᾶτος +ἔξω +πρὸς +αὐτοὺς +καὶ +φησίν +Τίνα +κατηγορίαν +τοῦ +ἀνθρώπου +τούτου; +φέρετε +ἀπεκρίθησαν +καὶ +εἶπαν +αὐτῷ +Εἰ +μὴ +ἦν +ποιῶν, +οὗτος +κακὸν +ἄν +οὐκ +σοι +παρεδώκαμεν +αὐτόν. +οὖν +εἶπεν +αὐτοῖς +ὁ +Πειλᾶτος +Λάβετε +αὐτὸν +ὑμεῖς, +καὶ +κατὰ +τὸν +νόμον +ὑμῶν +κρίνατε +αὐτόν. +εἶπον +αὐτῷ +οἱ +Ἰουδαῖοι +Ἠμῖν +οὐκ +ἔξεστιν +ἀποκτεῖναι +οὐδένα· +ἵνα +ὁ +λόγος +τοῦ +Ἰησοῦ +πληρωθῇ +ὃν +εἶπεν +σημαίνων +ποίῳ +θανάτῳ +ἤμελλεν +ἀποθνήσκειν. +οὖν +Εἰσῆλθεν +πάλιν +εἰς +τὸ +πραιτώριον +ὁ +Πειλᾶτος +καὶ +ἐφώνησεν +τὸν +Ἰησοῦν +καὶ +εἶπεν +αὐτῷ +Σὺ +εἶ +ὁ +Βασιλεὺς +τῶν +Ἰουδαίων; +ἀπεκρίθη +Ἰησοῦς +Ἀφ’ +ἑαυτοῦ +σὺ +τοῦτο +λέγεις, +ἢ +ἄλλοι +εἶπόν +σοι +περὶ +ἐμοῦ; +ἀπεκρίθη +ὁ +Πειλᾶτος +Μήτι +ἐγὼ +Ἰουδαῖός +εἰμι; +τὸ +ἔθνος +τὸ +σὸν +καὶ +οἱ +ἀρχιερεῖς +παρέδωκάν +σε +ἐμοί· +τί +ἐποίησας; +ἀπεκρίθη +Ἰησοῦς· +Ἠ +βασιλεία +ἡ +ἐμὴ +οὐκ +ἔστιν +ἐκ +τοῦ +κόσμου +τούτου· +εἰ +ἐκ +τοῦ +κόσμου +τούτου +ἦν +ἡ +βασιλεία +ἡ +ἐμή, +ἂν +οἱ +ὑπηρέται +οἱ +ἐμοὶ +ἠγωνίζοντο, +ἵνα +μὴ +παραδοθῶ +τοῖς +Ἰουδαίοις· +δὲ +νῦν +ἡ +βασιλεία +ἡ +ἐμὴ +οὐκ +ἔστιν +ἐντεῦθεν. +οὖν +εἶπεν +αὐτῷ +ὁ +Πειλᾶτος +Οὐκοῦν +βασιλεὺς +εἶ +σύ; +ἀπεκρίθη +ὁ +Ἰησοῦς +Σὺ +λέγεις +ὅτι +βασιλεύς +εἰμι. +ἐγὼ +εἰς +τοῦτο +γεγέννημαι +καὶ +εἰς +τοῦτο +ἐλήλυθα +εἰς +τὸν +κόσμον, +ἵνα +μαρτυρήσω +τῇ +ἀληθείᾳ· +πᾶς +ὁ +ὢν +ἐκ +τῆς +ἀληθείας +ἀκούει +μου +τῆς +φωνῆς. +λέγει +αὐτῷ +ὁ +Πειλᾶτος +Τί +ἐστιν +ἀλήθεια; +Καὶ +τοῦτο +εἰπὼν +πάλιν +ἐξῆλθεν +πρὸς +τοὺς +Ἰουδαίους, +καὶ +λέγει +αὐτοῖς +Ἐγὼ +οὐδεμίαν +εὑρίσκω +ἐν +αὐτῷ +αἰτίαν. +δὲ +ἔστιν +συνήθεια +ὑμῖν +ἵνα +ἕνα +ἀπολύσω +ὑμῖν +ἐν +τῷ +πάσχα· +οὖν +βούλεσθε +ἀπολύσω +ὑμῖν +τὸν +Βασιλέα +τῶν +Ἰουδαίων; +οὖν +ἐκραύγασαν +πάλιν +λέγοντες +Μὴ +τοῦτον, +ἀλλὰ +τὸν +Βαραββᾶν. +δὲ +ἦν +ὁ +Βαραββᾶς +λῃστής. +οὖν +Τότε +ἔλαβεν +ὁ +Πειλᾶτος +τὸν +Ἰησοῦν +καὶ +ἐμαστίγωσεν. +καὶ +οἱ +στρατιῶται +πλέξαντες +στέφανον +ἐξ +ἀκανθῶν +ἐπέθηκαν +αὐτοῦ +τῇ +κεφαλῇ, +καὶ +ἱμάτιον +πορφυροῦν +περιέβαλον +αὐτόν, +καὶ +ἤρχοντο +πρὸς +αὐτὸν +καὶ +ἔλεγον +Χαῖρε +ὁ +Βασιλεὺς +τῶν +Ἰουδαίων· +καὶ +ἐδίδοσαν +αὐτῷ +ῥαπίσματα. +Καὶ +ἐξῆλθεν +πάλιν +ἔξω +ὁ +Πειλᾶτος +καὶ +λέγει +αὐτοῖς +Ἴδε +ἄγω +ὑμῖν +αὐτὸν +ἔξω, +ἵνα +γνῶτε +ὅτι +οὐδεμίαν +αἰτίαν +εὑρίσκω +ἐν +αὐτῷ. +οὖν +ἐξῆλθεν +ὁ +Ἰησοῦς +ἔξω, +φορῶν +τὸν +ἀκάνθινον +στέφανον +καὶ +τὸ +πορφυροῦν +ἱμάτιον. +καὶ +λέγει +αὐτοῖς +Ἰδοὺ +ὁ +ἄνθρωπος. +οὖν +ὅτε +εἶδον +αὐτὸν +οἱ +ἀρχιερεῖς +καὶ +οἱ +ὑπηρέται, +ἐκραύγασαν +λέγοντες +Σταύρωσον +σταύρωσον. +λέγει +αὐτοῖς +ὁ +Πειλᾶτος +Λάβετε +αὐτὸν +ὑμεῖς +καὶ +σταυρώσατε· +γὰρ +ἐγὼ +οὐχ +εὑρίσκω +ἐν +αὐτῷ +αἰτίαν. +ἀπεκρίθησαν +αὐτῷ +οἱ +Ἰουδαῖοι +Ἠμεῖς +νόμον +ἔχομεν, +καὶ +κατὰ +τὸν +νόμον +ὀφείλει +ἀποθανεῖν, +ὅτι +Υἱὸν +Θεοῦ +ἑαυτὸν +ἐποίησεν. +οὖν +Ὅτε +ἤκουσεν +ὁ +Πειλᾶτος +τοῦτον +τὸν +λόγον, +μᾶλλον +ἐφοβήθη, +καὶ +εἰσῆλθεν +εἰς +τὸ +πραιτώριον +πάλιν +καὶ +λέγει +τῷ +Ἰησοῦ +Πόθεν +εἶ +σύ; +δὲ +ὁ +Ἰησοῦς +ἀπόκρισιν +οὐκ +ἔδωκεν +αὐτῷ. +οὖν +λέγει +αὐτῷ +ὁ +Πειλᾶτος +οὐ +Ἐμοὶ +λαλεῖς; +οὐκ +οἶδας +ὅτι +ἐξουσίαν +ἔχω +ἀπολῦσαί +σε +καὶ +ἐξουσίαν +ἔχω +σταυρῶσαί +σε; +ἀπεκρίθη +Ἰησοῦς +Οὐκ +εἶχες +ἐξουσίαν +οὐδεμίαν +κατ’ +ἐμοῦ +εἰ +μὴ +ἦν +δεδομένον +σοι +ἄνωθεν· +διὰ +τοῦτο +ὁ +παραδούς +μέ +σοι +μείζονα +ἁμαρτίαν +ἔχει. +ἐκ +τούτου +ὁ +Πειλᾶτος +ἐζήτει +ἀπολῦσαι +αὐτόν· +δὲ +οἱ +Ἰουδαῖοι +ἐκραύγασαν +λέγοντες +Ἐὰν +τοῦτον +ἀπολύσῃς, +οὐκ +εἶ +φίλος +τοῦ +Καίσαρος· +πᾶς +ὁ +βασιλέα +ἑαυτὸν +ποιῶν +ἀντιλέγει +τῷ +Καίσαρι. +οὖν +Ὁ +Πειλᾶτος +ἀκούσας +τῶν +λόγων +τούτων +ἤγαγεν +ἔξω +τὸν +Ἰησοῦν, +καὶ +ἐκάθισεν +ἐπὶ +βήματος +εἰς +τόπον +λεγόμενον +Λιθόστρωτον, +δὲ +Ἑβραϊστὶ +Γαββαθα. +δὲ +ἦν +Παρασκευὴ +τοῦ +πάσχα, +ὥρα +ἦν +ὡς +ἕκτη· +καὶ +λέγει +τοῖς +Ἰουδαίοις +Ἴδε +ὁ +Βασιλεὺς +ὑμῶν. +οὖν +ἐκραύγασαν +ἐκεῖνοι +Ἆρον +ἆρον, +σταύρωσον +αὐτόν. +λέγει +αὐτοῖς +ὁ +Πειλᾶτος +Τὸν +Βασιλέα +ὑμῶν +σταυρώσω; +ἀπεκρίθησαν +οἱ +ἀρχιερεῖς +Οὐκ +ἔχομεν +βασιλέα +εἰ +μὴ +Καίσαρα. +οὖν +τότε +παρέδωκεν +αὐτὸν +αὐτοῖς +ἵνα +σταυρωθῇ. +οὖν +Παρέλαβον +τὸν +Ἰησοῦν· +καὶ +βαστάζων +ἑαυτῷ +τὸν +σταυρὸν +ἐξῆλθεν +εἰς +τὸν +λεγόμενον +Κρανίου +τόπον, +ὃ +λέγεται +Ἑβραϊστὶ +Γολγοθᾶ, +ὅπου +αὐτὸν +ἐσταύρωσαν, +καὶ +μετ’ +αὐτοῦ +ἄλλους +δύο +ἐντεῦθεν +καὶ +ἐντεῦθεν, +δὲ +μέσον +τὸν +Ἰησοῦν. +δὲ +ἔγραψεν +καὶ +τίτλον +ὁ +Πειλᾶτος +καὶ +ἔθηκεν +ἐπὶ +τοῦ +σταυροῦ· +δὲ +ἦν +γεγραμμένον +ΙΗΣΟΥΣ +Ο +ΝΑΖΩΡΑΙΟΣ +Ο +ΒΑΣΙΛΕΥΣ +ΤΩΝ +ΙΟΥΔΑΙΩΝ. +οὖν +τοῦτον +τὸν +τίτλον +ἀνέγνωσαν +πολλοὶ +τῶν +Ἰουδαίων, +ὅτι +ἐγγὺς +τῆς +πόλεως +ἦν +ὁ +τόπος +ὅπου +ἐσταυρώθη +ὁ +Ἰησοῦς· +καὶ +ἦν +γεγραμμένον +Ἑβραϊστί, +Ῥωμαϊστί, +Ἑλληνιστί. +οὖν +ἔλεγον +τῷ +Πειλάτῳ +οἱ +ἀρχιερεῖς +τῶν +Ἰουδαίων +Μὴ +γράφε +Ὁ +Βασιλεὺς +τῶν +Ἰουδαίων, +ἀλλ’ +ὅτι +ἐκεῖνος +εἶπεν +Βασιλεύς +τῶν +Ἰουδαίων. +εἰμι +ἀπεκρίθη +ὁ +Πειλᾶτος +Ὃ +γέγραφα, +γέγραφα. +οὖν +ὅτε +Οἱ +στρατιῶται, +ἐσταύρωσαν +τὸν +Ἰησοῦν, +ἔλαβον +τὰ +ἱμάτια +αὐτοῦ +καὶ +ἐποίησαν +τέσσερα +μέρη, +ἑκάστῳ +στρατιώτῃ +μέρος, +καὶ +τὸν +χιτῶνα. +δὲ +ἦν +ὁ +χιτὼν +ἄραφος, +ἐκ +τῶν +ἄνωθεν +ὑφαντὸς +δι’ +ὅλου. +οὖν +εἶπαν +πρὸς +ἀλλήλους +Μὴ +σχίσωμεν +αὐτόν, +ἀλλὰ +λάχωμεν +περὶ +αὐτοῦ +τίνος +ἔσται· +ἵνα +ἡ +γραφὴ +πληρωθῇ +Διεμερίσαντο +τὰ +ἱμάτιά +μου +ἑαυτοῖς +καὶ +ἐπὶ +τὸν +ἱματισμόν +μου +ἔβαλον +κλῆρον. +οὖν +μὲν +Οἱ +στρατιῶται +ταῦτα +ἐποίησαν. +δὲ +εἱστήκεισαν +παρὰ +τῷ +σταυρῷ +τοῦ +Ἰησοῦ +ἡ +μήτηρ +αὐτοῦ +καὶ +ἡ +ἀδελφὴ +τῆς +μητρὸς +αὐτοῦ, +Μαρία +ἡ +τοῦ +Κλωπᾶ +καὶ +Μαρία +ἡ +Μαγδαληνή. +οὖν +Ἰησοῦς +ἰδὼν +τὴν +μητέρα +καὶ +τὸν +μαθητὴν +παρεστῶτα +ὃν +ἠγάπα, +λέγει +τῇ +μητρί +Γύναι, +ἴδε +ὁ +υἱός +σου. +εἶτα +λέγει +τῷ +μαθητῇ +Ἴδε +ἡ +μήτηρ +σου. +καὶ +ἀπ’ +ἐκείνης +τῆς +ὥρας +ἔλαβεν +ὁ +μαθητὴς +αὐτὴν +εἰς +τὰ +ἴδια. +Μετὰ +τοῦτο +ὁ +Ἰησοῦς +εἰδὼς +ὅτι +ἤδη +πάντα +τετέλεσται, +ἵνα +τελειωθῇ +ἡ +γραφὴ, +λέγει +Διψῶ. +σκεῦος +ὄξους +μεστόν· +ἔκειτο +οὖν +σπόγγον +μεστὸν +τοῦ +ὄξους +ὑσσώπῳ +περιθέντες +προσήνεγκαν +αὐτοῦ +τῷ +στόματι. +οὖν +ὅτε +ἔλαβεν +τὸ +ὄξος +ὁ +Ἰησοῦς +εἶπεν +Τετέλεσται, +καὶ +κλίνας +τὴν +κεφαλὴν +παρέδωκεν +τὸ +πνεῦμα. +οὖν +Οἱ +Ἰουδαῖοι, +ἐπεὶ +Παρασκευὴ +ἦν, +ἵνα +μὴ +μείνῃ +ἐπὶ +τοῦ +σταυροῦ +τὰ +σώματα +ἐν +τῷ +σαββάτῳ, +γὰρ +ἦν +μεγάλη +ἡ +ἡμέρα +ἐκείνου +τοῦ +σαββάτου, +ἠρώτησαν +τὸν +Πειλᾶτον +ἵνα +κατεαγῶσιν +αὐτῶν +τὰ +σκέλη +καὶ +ἀρθῶσιν. +οὖν +ἦλθον +οἱ +στρατιῶται, +καὶ +μὲν +κατέαξαν +τὰ +σκέλη +τοῦ +πρώτου +καὶ +τοῦ +ἄλλου +τοῦ +συνσταυρωθέντος +αὐτῷ· +δὲ +ἐπὶ +τὸν +Ἰησοῦν +ἐλθόντες, +ὡς +εἶδον +ἤδη +αὐτὸν +τεθνηκότα, +οὐ +κατέαξαν +αὐτοῦ +τὰ +σκέλη, +ἀλλ’ +εἷς +τῶν +στρατιωτῶν +λόγχῃ +αὐτοῦ +τὴν +πλευρὰν +ἔνυξεν, +καὶ +ἐξῆλθεν +εὐθὺς +αἷμα +καὶ +ὕδωρ. +καὶ +ὁ +ἑωρακὼς +μεμαρτύρηκεν, +καὶ +ἀληθινὴ +ἐστιν +αὐτοῦ +ἡ +μαρτυρία, +καὶ +ἐκεῖνος +οἶδεν +ὅτι +ἀληθῆ +λέγει, +ἵνα +καὶ +ὑμεῖς +πιστεύητε. +γὰρ +ἐγένετο +ταῦτα +ἵνα +ἡ +γραφὴ +πληρωθῇ +Ὀστοῦν +αὐτοῦ. +οὐ +συντριβήσεται +καὶ +πάλιν +ἑτέρα +γραφὴ +λέγει +Ὄψονται +εἰς +ὃν +ἐξεκέντησαν. +δὲ +Μετὰ +ταῦτα +ἠρώτησεν +τὸν +Πειλᾶτον +Ἰωσὴφ +ἀπὸ +Ἁριμαθαίας, +ὢν +μαθητὴς +τοῦ +Ἰησοῦ +δὲ +κεκρυμμένος +διὰ +τὸν +φόβον +τῶν +Ἰουδαίων, +ἵνα +ἄρῃ +τὸ +σῶμα +τοῦ +Ἰησοῦ· +καὶ +ἐπέτρεψεν +ὁ +Πειλᾶτος. +οὖν +ἦλθεν +καὶ +ἦρεν +τὸ +σῶμα +αὐτοῦ. +δὲ +ἦλθεν +καὶ +Νικόδημος, +ὁ +ἐλθὼν +πρὸς +αὐτὸν +νυκτὸς +τὸ +πρῶτον, +φέρων +μίγμα +σμύρνης +καὶ +ἀλόης +ὡς +λίτρας +ἑκατόν. +οὖν +ἔλαβον +τὸ +σῶμα +τοῦ +Ἰησοῦ +καὶ +ἔδησαν +αὐτὸ +ὀθονίοις +μετὰ +τῶν +ἀρωμάτων, +καθὼς +ἔθος +ἐστὶν +τοῖς +Ἰουδαίοις +ἐνταφιάζειν. +δὲ +ἦν +ἐν +τῷ +τόπῳ +ὅπου +ἐσταυρώθη +κῆπος, +καὶ +ἐν +τῷ +κήπῳ +μνημεῖον +καινόν, +ἐν +ᾧ +οὐδέπω +οὐδεὶς +ἦν +τεθειμένος· +οὖν +ἐκεῖ +διὰ +τὴν +Παρασκευὴν +τῶν +Ἰουδαίων, +ὅτι +ἐγγὺς +ἦν +τὸ +μνημεῖον, +ἔθηκαν +τὸν +Ἰησοῦν. +δὲ +Τῇ +μιᾷ +τῶν +σαββάτων +Μαρία +ἡ +Μαγδαληνὴ +ἔρχεται +πρωῒ +εἰς +τὸ +μνημεῖον, +σκοτίας +ἔτι +οὔσης +καὶ +βλέπει +τὸν +λίθον +ἠρμένον +ἐκ +τοῦ +μνημείου. +οὖν +τρέχει +καὶ +ἔρχεται +πρὸς +Σίμωνα +Πέτρον +καὶ +πρὸς +τὸν +ἄλλον +μαθητὴν +ὃν +ἐφίλει +ὁ +Ἰησοῦς, +καὶ +λέγει +αὐτοῖς +Ἦραν +τὸν +Κύριον +ἐκ +τοῦ +μνημείου, +καὶ +οὐκ +οἴδαμεν +ποῦ +ἔθηκαν +αὐτόν. +οὖν +Ἐξῆλθεν +ὁ +Πέτρος +καὶ +ὁ +ἄλλος +μαθητής, +καὶ +ἤρχοντο +εἰς +τὸ +μνημεῖον. +δὲ +ἔτρεχον +οἱ +δύο +ὁμοῦ· +καὶ +ὁ +ἄλλος +μαθητὴς +προέδραμεν +τάχιον +τοῦ +Πέτρου +καὶ +ἦλθεν +πρῶτος +εἰς +τὸ +μνημεῖον, +καὶ +παρακύψας +βλέπει +κείμενα +τὰ +ὀθόνια, +μέντοι +οὐ +εἰσῆλθεν. +οὖν +ἔρχεται +καὶ +Σίμων +Πέτρος +ἀκολουθῶν +αὐτῷ, +καὶ +εἰσῆλθεν +εἰς +τὸ +μνημεῖον· +καὶ +θεωρεῖ +τὰ +ὀθόνια +κείμενα, +καὶ +τὸ +σουδάριον, +ὃ +ἦν +ἐπὶ +τῆς +κεφαλῆς +αὐτοῦ, +οὐ +μετὰ +τῶν +ὀθονίων +κείμενον +ἀλλὰ +χωρὶς +ἐντετυλιγμένον +εἰς +ἕνα +τόπον. +οὖν +τότε +εἰσῆλθεν +καὶ +ὁ +ἄλλος +μαθητὴς +ὁ +ἐλθὼν +πρῶτος +εἰς +τὸ +μνημεῖον, +καὶ +εἶδεν +καὶ +ἐπίστευσεν· +γὰρ +οὐδέπω +ᾔδεισαν +τὴν +γραφὴν, +ὅτι +δεῖ +αὐτὸν +ἐκ +νεκρῶν +ἀναστῆναι. +οὖν +ἀπῆλθον +πάλιν +πρὸς +αὑτοὺς +οἱ +μαθηταί. +δὲ +Μαρία +εἱστήκει +πρὸς +τῷ +μνημείῳ +ἔξω +κλαίουσα. +οὖν +ὡς +ἔκλαιεν, +παρέκυψεν +εἰς +τὸ +μνημεῖον, +καὶ +θεωρεῖ +δύο +ἀγγέλους +ἐν +λευκοῖς +καθεζομένους, +ὅπου +ἔκειτο +τὸ +σῶμα +τοῦ +Ἰησοῦ. +ἕνα +πρὸς +τῇ +κεφαλῇ +καὶ +ἕνα +πρὸς +τοῖς +ποσίν, +καὶ +λέγουσιν +αὐτῇ +ἐκεῖνοι +Γύναι, +τί +κλαίεις; +λέγει +αὐτοῖς +ὅτι +Ἦραν +τὸν +Κύριόν +μου, +καὶ +οὐκ +οἶδα +ποῦ +ἔθηκαν +αὐτόν. +ταῦτα +εἰποῦσα +ἐστράφη +εἰς +τὰ +ὀπίσω, +καὶ +θεωρεῖ +τὸν +Ἰησοῦν +ἑστῶτα, +καὶ +οὐκ +ᾔδει +ὅτι +Ἰησοῦς +ἐστιν. +λέγει +αὐτῇ +Ἰησοῦς +Γύναι, +τί +κλαίεις; +τίνα +ζητεῖς; +ἐκείνη +δοκοῦσα +ὅτι +ὁ +κηπουρός +ἐστιν, +λέγει +αὐτῷ +Κύριε, +εἰ +σὺ +ἐβάστασας +αὐτόν, +εἰπέ +μοι +ποῦ +ἔθηκας +αὐτόν, +κἀγὼ +αὐτὸν +ἀρῶ. +λέγει +αὐτῇ +Ἰησοῦς +Μαριάμ. +στραφεῖσα +ἐκείνη +λέγει +αὐτῷ +Ἑβραϊστί· +Ῥαββουνεί +(ὃ +λέγεται +Διδάσκαλε). +λέγει +αὐτῇ +Ἰησοῦς +Μή +μου +ἅπτου, +γὰρ +οὔπω +ἀναβέβηκα +πρὸς +τὸν +Πατέρα· +δὲ +πορεύου +πρὸς +τοὺς +ἀδελφούς +μου +καὶ +εἰπὲ +αὐτοῖς +Ἀναβαίνω +πρὸς +τὸν +Πατέρα +μου +καὶ +Πατέρα +ὑμῶν +καὶ +Θεόν +μου +καὶ +Θεὸν +ὑμῶν. +ἔρχεται +Μαριὰμ +ἡ +Μαγδαληνὴ +ἀγγέλλουσα +τοῖς +μαθηταῖς +ὅτι +Ἑώρακα +τὸν +Κύριον, +καὶ +ταῦτα +εἶπεν +αὐτῇ. +οὖν +Οὔσης +ὀψίας +τῇ +ἡμέρᾳ +ἐκείνῃ +τῇ +μιᾷ +σαββάτων, +καὶ +τῶν +θυρῶν +κεκλεισμένων +ὅπου +ἦσαν +οἱ +μαθηταὶ +διὰ +τὸν +φόβον +τῶν +Ἰουδαίων, +ἦλθεν +ὁ +Ἰησοῦς +καὶ +ἔστη +εἰς +τὸ +μέσον, +καὶ +λέγει +αὐτοῖς +Εἰρήνη +ὑμῖν. +καὶ +τοῦτο +εἰπὼν +ἔδειξεν +καὶ +τὰς +χεῖρας +καὶ +τὴν +πλευρὰν +αὐτοῖς. +οὖν +ἐχάρησαν +οἱ +μαθηταὶ +ἰδόντες +τὸν +Κύριον. +οὖν +εἶπεν +αὐτοῖς +ὁ +Ἰησοῦς +πάλιν +Εἰρήνη +ὑμῖν· +καθὼς +ἀπέσταλκέν +με +ὁ +Πατήρ, +κἀγὼ +πέμπω +ὑμᾶς. +καὶ +τοῦτο +εἰπὼν +ἐνεφύσησεν +καὶ +λέγει +αὐτοῖς +Λάβετε +Πνεῦμα +Ἅγιον. +ἄν +ἀφῆτε +τινων +τὰς +ἁμαρτίας, +ἀφέωνται +αὐτοῖς· +ἄν +τινων +κρατῆτε, +κεκράτηνται. +δὲ +Θωμᾶς +εἷς +ἐκ +τῶν +δώδεκα, +ὁ +λεγόμενος +Δίδυμος, +οὐκ +ἦν +μετ’ +αὐτῶν +ὅτε +ἦλθεν +Ἰησοῦς. +οὖν +ἔλεγον +αὐτῷ +οἱ +ἄλλοι +μαθηταί +Ἑωράκαμεν +τὸν +Κύριον. +δὲ +ὁ +εἶπεν +αὐτοῖς +Ἐὰν +μὴ +ἴδω +ἐν +ταῖς +χερσὶν +αὐτοῦ +τὸν +τύπον +τῶν +ἥλων +καὶ +βάλω +τὸν +δάκτυλόν +μου +εἰς +τὸν +τόπον +τῶν +ἥλων +καὶ +βάλω +μου +τὴν +χεῖρα +εἰς +τὴν +πλευρὰν +αὐτοῦ, +οὐ +μὴ +πιστεύσω. +Καὶ +μεθ’ +ἡμέρας +ὀκτὼ +πάλιν +ἦσαν +ἔσω +οἱ +μαθηταὶ +αὐτοῦ, +καὶ +Θωμᾶς +μετ’ +αὐτῶν. +ἔρχεται +ὁ +Ἰησοῦς +τῶν +θυρῶν +κεκλεισμένων, +καὶ +ἔστη +εἰς +τὸ +μέσον +καὶ +εἶπεν +Εἰρήνη +ὑμῖν. +εἶτα +λέγει +τῷ +Θωμᾷ +Φέρε +τὸν +δάκτυλόν +σου +ὧδε +καὶ +ἴδε +τὰς +χεῖράς +μου, +καὶ +φέρε +τὴν +χεῖρά +σου +καὶ +βάλε +εἰς +τὴν +πλευράν +μου, +καὶ +μὴ +γίνου +ἄπιστος +ἀλλὰ +πιστός. +ἀπεκρίθη +Θωμᾶς +καὶ +εἶπεν +αὐτῷ +Ὁ +Κύριός +μου +καὶ +ὁ +Θεός +μου. +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ὅτι +ἑώρακάς +με, +πεπίστευκας; +μακάριοι +οἱ +μὴ +ἰδόντες +καὶ +πιστεύσαντες. +οὖν +μὲν +καὶ +Πολλὰ +ἄλλα +σημεῖα +ἐποίησεν +ὁ +Ἰησοῦς +ἐνώπιον +τῶν +μαθητῶν, +ἃ +οὐκ +ἔστιν +γεγραμμένα +ἐν +τῷ +βιβλίῳ +τούτῳ· +δὲ +ταῦτα +γέγραπται +ἵνα +πιστεύητε +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Χριστὸς +ὁ +Υἱὸς +τοῦ +Θεοῦ, +καὶ +ἵνα +πιστεύοντες +ζωὴν +ἔχητε +ἐν +τῷ +ὀνόματι +αὐτοῦ. +Μετὰ +ταῦτα +ἐφανέρωσεν +ἑαυτὸν +πάλιν +Ἰησοῦς +τοῖς +μαθηταῖς +ἐπὶ +τῆς +θαλάσσης +τῆς +Τιβεριάδος· +δὲ +ἐφανέρωσεν +οὕτως. +ἦσαν +ὁμοῦ +Σίμων +Πέτρος +καὶ +Θωμᾶς +ὁ +λεγόμενος +Δίδυμος +καὶ +Ναθαναὴλ +ὁ +ἀπὸ +Κανᾶ +τῆς +Γαλιλαίας +καὶ +οἱ +τοῦ +Ζεβεδαίου +καὶ +ἄλλοι +ἐκ +τῶν +μαθητῶν +αὐτοῦ +δύο. +λέγει +αὐτοῖς +Σίμων +Πέτρος +Ὑπάγω +ἁλιεύειν. +λέγουσιν +αὐτῷ +Ἐρχόμεθα +καὶ +ἡμεῖς +σὺν +σοί. +ἐξῆλθον +καὶ +ἐνέβησαν +εἰς +τὸ +πλοῖον, +καὶ +ἐν +ἐκείνῃ +τῇ +νυκτὶ +ἐπίασαν +οὐδέν. +δὲ +πρωΐας +ἤδη +γινομένης +ἔστη +Ἰησοῦς +εἰς +τὸν +αἰγιαλόν· +μέντοι +οὐ +ᾔδεισαν +οἱ +μαθηταὶ +ὅτι +Ἰησοῦς +ἐστιν. +οὖν +λέγει +αὐτοῖς +Ἰησοῦς +Παιδία, +μή +τι +προσφάγιον +ἔχετε; +ἀπεκρίθησαν +αὐτῷ +Οὔ. +δὲ +ὁ +εἶπεν +αὐτοῖς +Βάλετε +εἰς +τὰ +δεξιὰ +μέρη +τοῦ +πλοίου +τὸ +δίκτυον, +καὶ +εὑρήσετε. +οὖν, +ἔβαλον +καὶ +οὐκέτι +αὐτὸ +ἑλκύσαι +ἴσχυον +ἀπὸ +τοῦ +πλήθους +τῶν +ἰχθύων. +οὖν +λέγει +ὁ +μαθητὴς +ἐκεῖνος +ὃν +ἠγάπα +ὁ +Ἰησοῦς +τῷ +Πέτρῳ +Ὁ +Κύριός +ἐστιν. +οὖν +Σίμων +Πέτρος, +ἀκούσας +ὅτι +ὁ +Κύριός +ἐστιν, +τὸν +ἐπενδύτην +διεζώσατο, +γὰρ +ἦν +γυμνός, +καὶ +ἔβαλεν +ἑαυτὸν +εἰς +τὴν +θάλασσαν· +δὲ +οἱ +ἄλλοι +μαθηταὶ +τῷ +πλοιαρίῳ +ἦλθον, +γὰρ +οὐ +ἦσαν +μακρὰν +ἀπὸ +τῆς +γῆς +ἀλλὰ +ὡς +ἀπὸ +πηχῶν +διακοσίων, +σύροντες +τὸ +δίκτυον +τῶν +ἰχθύων. +οὖν +ὡς +ἀπέβησαν +εἰς +τὴν +γῆν, +βλέπουσιν +ἀνθρακιὰν +κειμένην +καὶ +ὀψάριον +ἐπικείμενον +καὶ +ἄρτον. +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Ἐνέγκατε +ἀπὸ +τῶν +ὀψαρίων +ὧν +ἐπιάσατε +νῦν. +ἀνέβη +Σίμων +Πέτρος +καὶ +εἵλκυσεν +τὸ +δίκτυον +εἰς +τὴν +γῆν +μεστὸν +ἰχθύων +μεγάλων +ἑκατὸν +πεντήκοντα +τριῶν· +καὶ +τοσούτων +ὄντων +οὐκ +ἐσχίσθη +τὸ +δίκτυον. +λέγει +αὐτοῖς +ὁ +Ἰησοῦς +Δεῦτε +ἀριστήσατε. +οὐδεὶς +τῶν +μαθητῶν +ἐτόλμα +ἐξετάσαι +αὐτόν +Σὺ +τίς +εἶ; +εἰδότες +ὅτι +ὁ +Κύριός +ἐστιν. +ἔρχεται +Ἰησοῦς +καὶ +λαμβάνει +τὸν +ἄρτον +καὶ +δίδωσιν +αὐτοῖς, +καὶ +τὸ +ὀψάριον +ὁμοίως. +τοῦτο +ἤδη +τρίτον +ἐφανερώθη +Ἰησοῦς +τοῖς +μαθηταῖς +ἐγερθεὶς +ἐκ +νεκρῶν. +οὖν +Ὅτε +ἠρίστησαν, +λέγει +τῷ +Σίμωνι +Πέτρῳ +ὁ +Ἰησοῦς +Σίμων +Ἰωάνου, +ἀγαπᾷς +με +πλέον +τούτων; +λέγει +αὐτῷ +Ναί, +Κύριε, +σὺ +οἶδας +ὅτι +φιλῶ +σε. +λέγει +αὐτῷ +Βόσκε +τὰ +ἀρνία +μου. +λέγει +αὐτῷ +πάλιν +δεύτερον +Σίμων +Ἰωάνου, +ἀγαπᾷς +με; +λέγει +αὐτῷ +Ναί, +Κύριε, +σὺ +οἶδας +ὅτι +φιλῶ +σε. +λέγει +αὐτῷ +Ποίμαινε +τὰ +προβάτιά +μου. +λέγει +αὐτῷ +τὸ +τρίτον +Σίμων +Ἰωάνου, +φιλεῖς +με; +ἐλυπήθη +ὁ +Πέτρος +ὅτι +εἶπεν +αὐτῷ +τὸ +τρίτον +Φιλεῖς +με; +καὶ +εἶπεν +αὐτῷ +Κύριε, +πάντα +σὺ +οἶδας, +σὺ +γινώσκεις +ὅτι +φιλῶ +σε. +λέγει +αὐτῷ +Ἰησοῦς +Βόσκε +τὰ +προβάτιά +μου. +ἀμὴν +ἀμὴν +λέγω +σοι, +ὅτε +ἦς +νεώτερος, +ἐζώννυες +σεαυτὸν +καὶ +περιεπάτεις +ὅπου +ἤθελες· +δὲ +ὅταν +γηράσῃς, +ἐκτενεῖς +τὰς +χεῖράς +σου, +καὶ +ἄλλος +ζώσει +σε +καὶ +οἴσει +ὅπου +οὐ +θέλεις. +δὲ +τοῦτο +εἶπεν +σημαίνων +ποίῳ +θανάτῳ +δοξάσει +τὸν +Θεόν. +καὶ +τοῦτο +εἰπὼν +λέγει +αὐτῷ +Ἀκολούθει +μοι. +ἐπιστραφεὶς +ὁ +Πέτρος +βλέπει +τὸν +μαθητὴν +ὃν +ἠγάπα +ὁ +Ἰησοῦς +ἀκολουθοῦντα, +ὃς +καὶ +ἀνέπεσεν +ἐν +τῷ +δείπνῳ +ἐπὶ +τὸ +στῆθος +αὐτοῦ +καὶ +εἶπεν +Κύριε, +τίς +ἐστιν +ὁ +παραδιδούς +σε; +οὖν +τοῦτον +ἰδὼν +ὁ +Πέτρος +λέγει +τῷ +Ἰησοῦ +Κύριε, +δὲ +οὗτος +τί; +λέγει +αὐτῷ +ὁ +Ἰησοῦς +Ἐὰν +αὐτὸν +μένειν +θέλω +ἕως +ἔρχομαι, +τί +πρὸς +σέ; +σύ +μοι +ἀκολούθει. +οὖν +ἐξῆλθεν +οὗτος +ὁ +λόγος +εἰς +τοὺς +ἀδελφοὺς +ὅτι +ὁ +μαθητὴς +ἐκεῖνος +οὐκ +ἀποθνήσκει· +δὲ +οὐκ +εἶπεν +αὐτῷ +ὁ +Ἰησοῦς +ὅτι +οὐκ +ἀποθνήσκει, +ἀλλ’ +Ἐὰν +αὐτὸν +μένειν +θέλω +ἕως +ἔρχομαι, +τί +πρὸς +σέ; +Οὗτός +ἐστιν +ὁ +μαθητὴς +ὁ +μαρτυρῶν +περὶ +τούτων +καὶ +ὁ +γράψας +ταῦτα, +καὶ +οἴδαμεν +ὅτι +ἀληθὴς +αὐτοῦ +ἡ +μαρτυρία +ἐστίν. +δὲ +Ἔστιν +καὶ +ἄλλα +πολλὰ +ἃ +ἐποίησεν +ὁ +Ἰησοῦς, +ἐὰν +ἅτινα +γράφηται +καθ’ +ἕν, +οἶμαι +οὐδ’ +αὐτὸν +τὸν +κόσμον +χωρήσειν +τὰ +γραφόμενα +βιβλία. +ὦ +Θεόφιλε, +μὲν +Τὸν +πρῶτον +λόγον +ἐποιησάμην +περὶ +πάντων, +ὧν +τε +ποιεῖν +καὶ +διδάσκειν, +ἤρξατο +ὁ +Ἰησοῦς +ἄχρι +ἧς +ἡμέρας +ἐντειλάμενος +τοῖς +ἀποστόλοις +οὓς +ἐξελέξατο +διὰ +Πνεύματος +Ἁγίου +ἀνελήμφθη· +οἷς +καὶ +παρέστησεν +ἑαυτὸν +ζῶντα +μετὰ +τὸ +παθεῖν +αὐτὸν +ἐν +πολλοῖς +τεκμηρίοις, +δι’ +ἡμερῶν +τεσσεράκοντα +ὀπτανόμενος +αὐτοῖς +καὶ +λέγων +τὰ +περὶ +τῆς +βασιλείας +τοῦ +Θεοῦ· +καὶ +συναλιζόμενος +παρήγγειλεν +αὐτοῖς +ἀπὸ +Ἱεροσολύμων +μὴ +χωρίζεσθαι, +ἀλλὰ +περιμένειν +τὴν +ἐπαγγελίαν +τοῦ +Πατρὸς +ἣν +ἠκούσατέ +μου· +ὅτι +μὲν +Ἰωάνης +ἐβάπτισεν +ὕδατι, +δὲ +ὑμεῖς +ἐν +Πνεύματι +Ἁγίῳ +βαπτισθήσεσθε +οὐ +μετὰ +πολλὰς +ταύτας +ἡμέρας. +μὲν +οὖν +Οἱ +συνελθόντες +ἠρώτων +αὐτὸν +λέγοντες +Κύριε, +εἰ +ἐν +τῷ +χρόνῳ +τούτῳ +ἀποκαθιστάνεις +τὴν +βασιλείαν +τῷ +Ἰσραήλ; +εἶπεν +πρὸς +αὐτούς +Οὐχ +ὑμῶν +ἐστιν +γνῶναι +χρόνους +ἢ +καιροὺς +οὓς +ὁ +Πατὴρ +ἔθετο +ἐν +τῇ +ἰδίᾳ +ἐξουσίᾳ, +ἀλλὰ +λήμψεσθε +δύναμιν +ἐπελθόντος +τοῦ +Ἁγίου +Πνεύματος +ἐφ’ +ὑμᾶς, +καὶ +ἔσεσθέ +μου +μάρτυρες +τε +ἔν +Ἱερουσαλὴμ +καὶ +ἐν +πάσῃ +τῇ +Ἰουδαίᾳ +καὶ +Σαμαρίᾳ +καὶ +ἕως +ἐσχάτου +τῆς +γῆς. +καὶ +ταῦτα +εἰπὼν +βλεπόντων +αὐτῶν +ἐπήρθη, +καὶ +νεφέλη +ὑπέλαβεν +αὐτὸν +ἀπὸ +τῶν +ὀφθαλμῶν +αὐτῶν. +καὶ +ὡς +ἀτενίζοντες +ἦσαν +εἰς +τὸν +οὐρανὸν +πορευομένου +αὐτοῦ, +καὶ +ἰδοὺ +ἄνδρες +δύο +παρειστήκεισαν +αὐτοῖς +ἐν +ἐσθήσεσι +λευκαῖς, +οἳ +καὶ +εἶπαν +Ἄνδρες +Γαλιλαῖοι, +τί +ἑστήκατε +βλέποντες +εἰς +τὸν +οὐρανόν; +οὗτος +ὁ +Ἰησοῦς +ὁ +ἀναλημφθεὶς +ἀφ’ +ὑμῶν +εἰς +τὸν +οὐρανὸν +οὕτως +ἐλεύσεται +ὃν +τρόπον +ἐθεάσασθε +αὐτὸν +πορευόμενον +εἰς +τὸν +οὐρανόν. +Τότε +ὑπέστρεψαν +εἰς +Ἱερουσαλὴμ +ἀπὸ +ὄρους +τοῦ +καλουμένου +Ἐλαιῶνος, +ὅ +ἐστιν +ἐγγὺς +Ἱερουσαλὴμ +σαββάτου +ὁδόν. +ἔχον +καὶ +ὅτε +εἰσῆλθον, +εἰς +τὸ +ὑπερῷον +ἀνέβησαν +οὗ +ἦσαν +καταμένοντες, +τε +ὅ +Πέτρος +καὶ +Ἰωάνης +καὶ +Ἰάκωβος +καὶ +Ἀνδρέας, +Φίλιππος +καὶ +Θωμᾶς, +Βαρθολομαῖος +καὶ +Μαθθαῖος, +Ἰάκωβος +Ἀλφαίου +καὶ +Σίμων +ὁ +Ζηλωτὴς +καὶ +Ἰούδας +Ἰακώβου. +οὗτοι +πάντες +ἦσαν +προσκαρτεροῦντες +ὁμοθυμαδὸν +τῇ +προσευχῇ +σὺν +γυναιξὶν +καὶ +Μαριὰμ +τῇ +μητρὶ +τοῦ +Ἰησοῦ +καὶ +σὺν +τοῖς +ἀδελφοῖς +αὐτοῦ. +Καὶ +ἐν +ταῖς +ἡμέραις +ταύταις +ἀναστὰς +ἐν +μέσῳ +τῶν +ἀδελφῶν +Πέτρος +εἶπεν· +τε +ἦν +ὄχλος +ὀνομάτων +ἐπὶ +τὸ +αὐτὸ +ὡσεὶ +ἑκατὸν +εἴκοσι +Ἄνδρες +ἀδελφοί, +ἔδει +πληρωθῆναι +τὴν +γραφὴν +ἣν +προεῖπεν +τὸ +Πνεῦμα +τὸ +Ἅγιον +διὰ +στόματος +Δαυεὶδ +περὶ +Ἰούδα +τοῦ +γενομένου +ὁδηγοῦ +τοῖς +συλλαβοῦσιν +Ἰησοῦν, +ὅτι +κατηριθμημένος +ἦν +ἐν +ἡμῖν +καὶ +ἔλαχεν +τὸν +κλῆρον +τῆς +διακονίας +ταύτης. +μὲν +οὖν +οὗτος +ἐκτήσατο +χωρίον +ἐκ +μισθοῦ +τῆς +ἀδικίας, +καὶ +πρηνὴς +γενόμενος +ἐλάκησεν +μέσος, +καὶ +ἐξεχύθη +πάντα +τὰ +σπλάγχνα +αὐτοῦ· +καὶ +γνωστὸν +ἐγένετο +πᾶσι +τοῖς +κατοικοῦσιν +Ἱερουσαλήμ, +ὥστε +κληθῆναι +τὸ +χωρίον +ἐκεῖνο +τῇ +ἰδίᾳ +διαλέκτῳ +αὐτῶν +Ἀκελδαμάχ, +τοῦτ’ +ἔστιν +Χωρίον +αἵματος. +γὰρ +γέγραπται +ἐν +βίβλῳ +Ψαλμῶν +Γενηθήτω +ἡ +ἔπαυλις +αὐτοῦ +ἔρημος +καὶ +μὴ +ἔστω +ὁ +κατοικῶν +ἐν +αὐτῇ, +καί +Τὴν +ἐπισκοπὴν +αὐτοῦ +λαβέτω +ἕτερος. +οὖν +δεῖ +τῶν +ἀνδρῶν +συνελθόντων +ἡμῖν +ἐν +παντὶ +χρόνῳ +ᾧ +εἰσῆλθεν +καὶ +ἐξῆλθεν +ἐφ’ +ἡμᾶς +ὁ +Κύριος +Ἰησοῦς, +ἀρξάμενος +ἀπὸ +τοῦ +βαπτίσματος +Ἰωάνου +ἕως +τῆς +ἡμέρας +ἧς +ἀνελήμφθη +ἀφ’ +ἡμῶν, +μάρτυρα +τῆς +ἀναστάσεως +αὐτοῦ +σὺν +ἡμῖν +γενέσθαι +ἕνα +τούτων. +Καὶ +ἔστησαν +δύο, +Ἰωσὴφ +τὸν +καλούμενον +Βαρσαββᾶν, +ὃς +ἐπεκλήθη +Ἰοῦστος, +καὶ +Μαθθίαν. +καὶ +προσευξάμενοι +εἶπαν +Κύριε +καρδιογνῶστα +πάντων, +Σὺ +ἀνάδειξον +ὃν +ἐξελέξω +ἐκ +τούτων +τῶν +δύο +ἕνα +λαβεῖν +τὸν +τόπον +τῆς +διακονίας +ταύτης +καὶ +ἀποστολῆς, +ἀφ’ +ἧς +παρέβη +Ἰούδας +πορευθῆναι +εἰς +τὸν +τόπον +τὸν +ἴδιον. +καὶ +ἔδωκαν +κλήρους +αὐτοῖς, +καὶ +ἔπεσεν +ὁ +κλῆρος +ἐπὶ +Μαθθίαν, +καὶ +συνκατεψηφίσθη +μετὰ +τῶν +ἕνδεκα +ἀποστόλων. +Καὶ +ἐν +τῷ +συνπληροῦσθαι +τὴν +ἡμέραν +τῆς +Πεντηκοστῆς +ἦσαν +πάντες +ὁμοῦ +ἐπὶ +τὸ +αὐτό· +καὶ +ἐγένετο +ἄφνω +ἐκ +τοῦ +οὐρανοῦ +ἦχος +ὥσπερ +φερομένης +πνοῆς +βιαίας +καὶ +ἐπλήρωσεν +ὅλον +τὸν +οἶκον +οὗ +ἦσαν +καθήμενοι, +καὶ +ὤφθησαν +αὐτοῖς +διαμεριζόμεναι +γλῶσσαι +ὡσεὶ +πυρός, +καὶ +ἐκάθισεν +ἐφ’ +ἕνα +ἕκαστον +αὐτῶν, +καὶ +ἐπλήσθησαν +πάντες +Πνεύματος +Ἁγίου, +καὶ +ἤρξαντο +λαλεῖν +ἑτέραις +γλώσσαις +καθὼς +τὸ +Πνεῦμα +ἐδίδου +ἀποφθέγγεσθαι +αὐτοῖς. +δὲ +Ἦσαν +κατοικοῦντες +εἰς +Ἰερουσαλὴμ +Ἰουδαῖοι, +ἄνδρες +εὐλαβεῖς +ἀπὸ +παντὸς +ἔθνους +τῶν +ὑπὸ +τὸν +οὐρανόν· +δὲ +γενομένης +τῆς +φωνῆς +ταύτης +συνῆλθεν +τὸ +πλῆθος +καὶ +συνεχύθη, +ὅτι +ἤκουον +εἷς +ἕκαστος +τῇ +ἰδίᾳ +διαλέκτῳ +λαλούντων +αὐτῶν. +δὲ +ἐξίσταντο +καὶ +ἐθαύμαζον +λέγοντες +ἰδοὺ +Οὐχὶ +πάντες +οὗτοί +οἱ +λαλοῦντες +εἰσιν +Γαλιλαῖοι; +καὶ +πῶς +ἡμεῖς +ἀκούομεν +ἕκαστος +τῇ +ἰδίᾳ +διαλέκτῳ +ἡμῶν +ἐν +ᾗ +ἐγεννήθημεν, +Πάρθοι +καὶ +Μῆδοι +καὶ +Ἐλαμεῖται, +καὶ +οἱ +κατοικοῦντες +τὴν +Μεσοποταμίαν, +τε +Ἰουδαίαν +καὶ +Καππαδοκίαν, +Πόντον +καὶ +τὴν +Ἀσίαν, +τε +Φρυγίαν +καὶ +Παμφυλίαν, +Αἴγυπτον +καὶ +τὰ +μέρη +τῆς +Λιβύης +τῆς +κατὰ +Κυρήνην, +καὶ +οἱ +ἐπιδημοῦντες +Ῥωμαῖοι, +τε +Ἰουδαῖοί +καὶ +προσήλυτοι, +Κρῆτες +καὶ +Ἄραβες, +ἀκούομεν +λαλούντων +αὐτῶν +ταῖς +ἡμετέραις +γλώσσαις +τὰ +μεγαλεῖα +τοῦ +Θεοῦ; +δὲ +ἐξίσταντο +πάντες +καὶ +διηποροῦντο, +ἄλλος +πρὸς +ἄλλον +λέγοντες +θέλει +τοῦτο +Τί +εἶναι; +δὲ +ἕτεροι +διαχλευάζοντες +ἔλεγον +ὅτι +Γλεύκους +μεμεστωμένοι +εἰσίν. +δὲ +Σταθεὶς +σὺν +τοῖς +ἕνδεκα +ὁ +Πέτρος +ἐπῆρεν +τὴν +φωνὴν +αὐτοῦ +καὶ +ἀπεφθέγξατο +αὐτοῖς +Ἄνδρες +Ἰουδαῖοι +καὶ +οἱ +κατοικοῦντες +Ἱερουσαλὴμ +πάντες, +τοῦτο +ὑμῖν +γνωστὸν +ἔστω, +καὶ +ἐνωτίσασθε +τὰ +ῥήματά +μου. +γὰρ +οὐ +ὡς +ὑμεῖς +ὑπολαμβάνετε +οὗτοι +μεθύουσιν, +γὰρ +ἔστιν +ὥρα +τρίτη +τῆς +ἡμέρας, +ἀλλὰ +τοῦτό +ἐστιν +τὸ +εἰρημένον +διὰ +τοῦ +προφήτου +Ἰωήλ +Καὶ +ἔσται +ἐν +ταῖς +ἐσχάταις +ἡμέραις, +λέγει +ὁ +Θεός, +ἐκχεῶ +ἀπὸ +τοῦ +Πνεύματός +μου +ἐπὶ +πᾶσαν +σάρκα, +καὶ +προφητεύσουσιν +οἱ +υἱοὶ +ὑμῶν +καὶ +αἱ +θυγατέρες +ὑμῶν, +καὶ +οἱ +νεανίσκοι +ὑμῶν +ὁράσεις +ὄψονται, +καὶ +οἱ +πρεσβύτεροι +ὑμῶν +ἐνυπνίοις +ἐνυπνιασθήσονται· +καίγε +ἐπὶ +τοὺς +δούλους +μου +καὶ +ἐπὶ +τὰς +δούλας +μου +ἐν +ταῖς +ἡμέραις +ἐκείναις +ἐκχεῶ +ἀπὸ +τοῦ +Πνεύματός +μου, +καὶ +προφητεύσουσιν. +καὶ +δώσω +τέρατα +ἐν +τῷ +οὐρανῷ +ἄνω +καὶ +σημεῖα +ἐπὶ +τῆς +γῆς +κάτω, +αἷμα +καὶ +πῦρ +καὶ +ἀτμίδα +καπνοῦ. +ὁ +ἥλιος +μεταστραφήσεται +εἰς +σκότος +καὶ +ἡ +σελήνη +εἰς +αἷμα, +πρὶν +ἐλθεῖν +ἡμέραν +Κυρίου +τὴν +μεγάλην +καὶ +ἐπιφανῆ. +καὶ +ἔσται +πᾶς +ἐὰν +ὃς +ἐπικαλέσηται +τὸ +ὄνομα +Κυρίου +σωθήσεται. +Ἄνδρες +Ἰσραηλεῖται, +ἀκούσατε +τοὺς +λόγους +τούτους· +Ἰησοῦν +τὸν +Ναζωραῖον, +ἄνδρα +ἀποδεδειγμένον +ἀπὸ +τοῦ +Θεοῦ +εἰς +ὑμᾶς +δυνάμεσι +καὶ +τέρασι +καὶ +σημείοις, +οἷς +ἐποίησεν +δι’ +αὐτοῦ +ὁ +Θεὸς +ἐν +μέσῳ +ὑμῶν, +καθὼς +αὐτοὶ +οἴδατε, +τοῦτον +τῇ +ὡρισμένῃ +βουλῇ +καὶ +προγνώσει +τοῦ +Θεοῦ +ἔκδοτον +διὰ +χειρὸς +ἀνόμων +προσπήξαντες +ἀνείλατε, +ὃν +ὁ +Θεὸς +ἀνέστησεν +λύσας +τὰς +ὠδῖνας +τοῦ +θανάτου, +καθότι +οὐκ +ἦν +δυνατὸν +κρατεῖσθαι +αὐτὸν +ὑπ’ +αὐτοῦ. +γὰρ +Δαυεὶδ +λέγει +εἰς +αὐτόν +Προορώμην +τὸν +Κύριον +ἐνώπιόν +μου +διὰ +παντός, +ὅτι +ἐκ +δεξιῶν +μού +ἐστιν, +ἵνα +μὴ +σαλευθῶ. +διὰ +τοῦτο +ηὐφράνθη +μου +ἡ +καρδία +καὶ +ἠγαλλιάσατο +ἡ +γλῶσσά +μου, +δὲ +ἔτι +καὶ +ἡ +σάρξ +μου +κατασκηνώσει +ἐπ’ +ἐλπίδι, +ὅτι +οὐκ +ἐνκαταλείψεις +τὴν +ψυχήν +μου +εἰς +Ἅιδην +οὐδὲ +δώσεις +τὸν +Ὅσιόν +σου +ἰδεῖν +διαφθοράν. +ἐγνώρισάς +μοι +ὁδοὺς +ζωῆς, +πληρώσεις +με +εὐφροσύνης +μετὰ +τοῦ +προσώπου +σου. +Ἄνδρες +ἀδελφοί, +ἐξὸν +εἰπεῖν +μετὰ +παρρησίας +πρὸς +ὑμᾶς +περὶ +τοῦ +πατριάρχου +Δαυείδ, +ὅτι +καὶ +ἐτελεύτησεν +καὶ +ἐτάφη, +καὶ +τὸ +μνῆμα +αὐτοῦ +ἔστιν +ἐν +ἡμῖν +ἄχρι +τῆς +ἡμέρας +ταύτης. +οὖν +προφήτης +ὑπάρχων +καὶ +εἰδὼς +ὅτι +ὅρκῳ +ὤμοσεν +αὐτῷ +ὁ +Θεὸς +ἐκ +καρποῦ +τῆς +ὀσφύος +αὐτοῦ +καθίσαι +ἐπὶ +τὸν +θρόνον +αὐτοῦ, +προϊδὼν +ἐλάλησεν +περὶ +τῆς +ἀναστάσεως +τοῦ +Χριστοῦ, +ὅτι +οὔτε +ἐνκατελείφθη +εἰς +Ἅιδην +οὔτε +ἡ +σὰρξ +αὐτοῦ +εἶδεν +διαφθοράν. +τοῦτον +τὸν +Ἰησοῦν +ἀνέστησεν +ὁ +Θεός, +οὗ +πάντες +ἡμεῖς +ἐσμεν +μάρτυρες· +οὖν +τῇ +δεξιᾷ +τοῦ +Θεοῦ +ὑψωθεὶς +τε +τήν +ἐπαγγελίαν +τοῦ +Πνεύματος +τοῦ +Ἁγίου +λαβὼν +παρὰ +τοῦ +Πατρὸς +ἐξέχεεν +τοῦτο +ὃ +ὑμεῖς +καὶ +βλέπετε +καὶ +ἀκούετε. +γὰρ +οὐ +Δαυεὶδ +ἀνέβη +εἰς +τοὺς +οὐρανούς, +δὲ +λέγει +αὐτός +Εἶπεν +Κύριος +τῷ +Κυρίῳ +μου +Κάθου +ἐκ +δεξιῶν +μου, +ἕως +ἂν +θῶ +τοὺς +ἐχθρούς +σου +ὑποπόδιον +τῶν +ποδῶν +σου. +οὖν +ἀσφαλῶς +γινωσκέτω +πᾶς +οἶκος +Ἰσραὴλ +ὅτι +καὶ +Κύριον +καὶ +Χριστὸν +ἐποίησεν +ὁ +Θεός, +αὐτὸν +τοῦτον +τὸν +Ἰησοῦν +ὃν +ὑμεῖς +ἐσταυρώσατε. +δὲ +Ἀκούσαντες +κατενύγησαν +τὴν +καρδίαν, +τε +εἶπόν +πρὸς +τὸν +Πέτρον +καὶ +τοὺς +λοιποὺς +ἀποστόλους +Τί +ποιήσωμεν, +ἄνδρες +ἀδελφοί; +δὲ +Πέτρος +πρὸς +αὐτούς +Μετανοήσατε, +καὶ +βαπτισθήτω +ἕκαστος +ὑμῶν +ἐπὶ +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +εἰς +ἄφεσιν +τῶν +ἁμαρτιῶν +ὑμῶν, +καὶ +λήμψεσθε +τὴν +δωρεὰν +τοῦ +Ἁγίου +Πνεύματος. +γάρ +ὑμῖν +ἐστιν +ἡ +ἐπαγγελία +καὶ +τοῖς +τέκνοις +ὑμῶν +καὶ +πᾶσιν +τοῖς +εἰς +μακρὰν, +ἂν +ὅσους +προσκαλέσηται +Κύριος +ὁ +Θεὸς +ἡμῶν. +τε +ἑτέροις +λόγοις +πλείοσιν +διεμαρτύρατο, +καὶ +παρεκάλει +αὐτοὺς +λέγων +Σώθητε +ἀπὸ +τῆς +γενεᾶς +τῆς +σκολιᾶς +ταύτης. +μὲν +οὖν +οἱ +ἀποδεξάμενοι +τὸν +λόγον +αὐτοῦ +ἐβαπτίσθησαν, +καὶ +προσετέθησαν +ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ +ψυχαὶ +ὡσεὶ +τρισχίλιαι· +δὲ +ἦσαν +προσκαρτεροῦντες +τῇ +διδαχῇ +τῶν +ἀποστόλων +καὶ +τῇ +κοινωνίᾳ, +τῇ +κλάσει +τοῦ +ἄρτου +καὶ +ταῖς +προσευχαῖς. +δὲ +Ἐγίνετο +πάσῃ +ψυχῇ +φόβος· +δὲ +πολλά +τέρατα +καὶ +σημεῖα +διὰ +τῶν +ἀποστόλων +ἐγίνετο. +δὲ +πάντες +οἱ +πιστεύσαντες +ἐπὶ +τὸ +αὐτὸ +εἶχον +ἅπαντα +κοινά, +καὶ +τὰ +κτήματα +καὶ +τὰς +ὑπάρξεις +ἐπίπρασκον +καὶ +διεμέριζον +αὐτὰ +πᾶσιν, +καθότι +ἄν +τις +χρείαν +εἶχεν. +τε +καθ’ +ἡμέραν +προσκαρτεροῦντες +ὁμοθυμαδὸν +ἐν +τῷ +ἱερῷ, +τε +κλῶντές +κατ’ +οἶκον +ἄρτον, +μετελάμβανον +τροφῆς +ἐν +ἀγαλλιάσει +καὶ +ἀφελότητι +καρδίας, +αἰνοῦντες +τὸν +Θεὸν +καὶ +ἔχοντες +χάριν +πρὸς +ὅλον +τὸν +λαόν. +δὲ +ὁ +Κύριος +προσετίθει +τοὺς +σῳζομένους +καθ’ +ἡμέραν +ἐπὶ +τὸ +αὐτό. +δὲ +Πέτρος +καὶ +Ἰωάνης +ἀνέβαινον +εἰς +τὸ +ἱερὸν +ἐπὶ +τὴν +ὥραν +τῆς +προσευχῆς +τὴν +ἐνάτην. +καί +τις +ἀνὴρ +χωλὸς +ἐκ +κοιλίας +μητρὸς +αὐτοῦ +ὑπάρχων +ἐβαστάζετο, +ὃν +ἐτίθουν +καθ’ +ἡμέραν +πρὸς +τὴν +θύραν +τοῦ +ἱεροῦ +τὴν +λεγομένην +Ὡραίαν +τοῦ +αἰτεῖν +ἐλεημοσύνην +παρὰ +τῶν +εἰσπορευομένων +εἰς +τὸ +ἱερόν· +ὃς +ἰδὼν +Πέτρον +καὶ +Ἰωάνην +μέλλοντας +εἰσιέναι +εἰς +τὸ +ἱερὸν +ἠρώτα +ἐλεημοσύνην +λαβεῖν. +δὲ +Πέτρος +ἀτενίσας +εἰς +αὐτὸν +σὺν +τῷ +Ἰωάνῃ +εἶπεν +Βλέψον +εἰς +ἡμᾶς. +δὲ +ὁ +ἐπεῖχεν +αὐτοῖς +προσδοκῶν +τι +παρ’ +αὐτῶν +λαβεῖν. +δὲ +εἶπεν +Πέτρος +Ἀργύριον +καὶ +χρυσίον +οὐχ +ὑπάρχει +μοι· +δὲ +ὃ +ἔχω, +τοῦτό +σοι +δίδωμι· +ἐν +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +τοῦ +Ναζωραίου +περιπάτει. +καὶ +πιάσας +αὐτὸν +τῆς +δεξιᾶς +χειρὸς +ἤγειρεν +αὐτόν· +δὲ +παραχρῆμα +ἐστερεώθησαν +αἱ +βάσεις +αὐτοῦ +καὶ +τὰ +σφυδρά, +καὶ +ἐξαλλόμενος +ἔστη +καὶ +περιεπάτει, +καὶ +εἰσῆλθεν +σὺν +αὐτοῖς +εἰς +τὸ +ἱερὸν +περιπατῶν +καὶ +ἁλλόμενος +καὶ +αἰνῶν +τὸν +Θεόν. +καὶ +εἶδεν +πᾶς +ὁ +λαὸς +αὐτὸν +περιπατοῦντα +καὶ +αἰνοῦντα +τὸν +Θεόν· +δὲ +ἐπεγίνωσκον +αὐτὸν, +ὅτι +οὗτος +ἦν +ὁ +πρὸς +τὴν +ἐλεημοσύνην +καθήμενος +ἐπὶ +τῇ +Ὡραίᾳ +Πύλῃ +τοῦ +ἱεροῦ, +καὶ +ἐπλήσθησαν +θάμβους +καὶ +ἐκστάσεως +ἐπὶ +τῷ +συμβεβηκότι +αὐτῷ. +δὲ +Κρατοῦντος +αὐτοῦ +τὸν +Πέτρον +καὶ +τὸν +Ἰωάνην +συνέδραμεν +πᾶς +ὁ +λαὸς +πρὸς +αὐτοὺς +ἐπὶ +τῇ +στοᾷ +τῇ +καλουμένῃ +Σολομῶντος +ἔκθαμβοι. +δὲ +ἰδὼν +ὁ +Πέτρος +ἀπεκρίνατο +πρὸς +τὸν +λαόν +Ἄνδρες +Ἰσραηλεῖται, +τί +θαυμάζετε +ἐπὶ +τούτῳ, +ἢ +ἡμῖν +τί +ἀτενίζετε +ὡς +ἰδίᾳ +δυνάμει +ἢ +εὐσεβείᾳ +πεποιηκόσιν +τοῦ +περιπατεῖν +αὐτόν; +ὁ +Θεὸς +Ἀβραὰμ +καὶ +Ἰσαὰκ +καὶ +Ἰακώβ, +ὁ +Θεὸς +τῶν +πατέρων +ἡμῶν, +ἐδόξασεν +τὸν +Παῖδα +αὐτοῦ +Ἰησοῦν, +μὲν +ὃν +ὑμεῖς +παρεδώκατε +καὶ +ἠρνήσασθε +κατὰ +πρόσωπον +Πειλάτου, +κρίναντος +ἐκείνου +ἀπολύειν· +δὲ +ὑμεῖς +τὸν +Ἅγιον +καὶ +Δίκαιον +ἠρνήσασθε, +καὶ +ᾐτήσασθε +ἄνδρα +φονέα +χαρισθῆναι +ὑμῖν, +δὲ +τὸν +Ἀρχηγὸν +τῆς +ζωῆς +ἀπεκτείνατε, +ὃν +ὁ +Θεὸς +ἤγειρεν +ἐκ +νεκρῶν, +οὗ +ἡμεῖς +μάρτυρές +ἐσμεν. +καὶ +ἐπὶ +τῇ +πίστει +τοῦ +ὀνόματος +αὐτοῦ +τοῦτον, +ὃν +θεωρεῖτε +καὶ +οἴδατε, +ἐστερέωσεν +τὸ +ὄνομα +αὐτοῦ, +καὶ +ἡ +πίστις +ἡ +δι’ +αὐτοῦ +ἔδωκεν +αὐτῷ +τὴν +ὁλοκληρίαν +ταύτην +ἀπέναντι +πάντων +ὑμῶν. +καὶ +ἀδελφοί, +νῦν, +οἶδα +ὅτι +κατὰ +ἄγνοιαν +ἐπράξατε, +ὥσπερ +καὶ +οἱ +ἄρχοντες +ὑμῶν· +δὲ +ὁ +Θεὸς +ἃ +προκατήγγειλεν +διὰ +στόματος +πάντων +τῶν +προφητῶν, +παθεῖν +τὸν +Χριστὸν +αὐτοῦ +ἐπλήρωσεν +οὕτως. +οὖν +μετανοήσατε +καὶ +ἐπιστρέψατε +πρὸς +τὸ +ἐξαλειφθῆναι +ὑμῶν +τὰς +ἁμαρτίας, +ὅπως +ἂν +ἔλθωσιν +καιροὶ +ἀναψύξεως +ἀπὸ +προσώπου +τοῦ +Κυρίου +καὶ +ἀποστείλῃ +τὸν +προκεχειρισμένον +ὑμῖν +Χριστὸν +Ἰησοῦν, +δεῖ +μὲν +ὃν +οὐρανὸν +δέξασθαι +ἄχρι +χρόνων +ἀποκαταστάσεως +πάντων +ὧν +ἐλάλησεν +ὁ +Θεὸς +διὰ +στόματος +τῶν +ἁγίων +ἀπ’ +αἰῶνος +αὐτοῦ +προφητῶν. +μὲν +Μωϋσῆς +εἶπεν +ὅτι +Προφήτην +ὑμῖν +ἀναστήσει +Κύριος +ὁ +Θεὸς +ἐκ +τῶν +ἀδελφῶν +ὑμῶν +ὡς +ἐμέ· +αὐτοῦ +ἀκούσεσθε +κατὰ +πάντα +ἂν +ὅσα +λαλήσῃ +πρὸς +ὑμᾶς. +δὲ +ἔσται +πᾶσα +ψυχὴ +ἐὰν +ἥτις +μὴ +ἀκούσῃ +τοῦ +προφήτου +ἐκείνου +ἐξολεθρευθήσεται +ἐκ +τοῦ +λαοῦ. +δὲ +καὶ +πάντες +οἱ +προφῆται +ἀπὸ +Σαμουὴλ +καὶ +τῶν +καθεξῆς +ὅσοι +ἐλάλησαν +καὶ +κατήγγειλαν +τὰς +ἡμέρας +ταύτας. +ὑμεῖς +ἐστε +οἱ +υἱοὶ +τῶν +προφητῶν +καὶ +τῆς +διαθήκης +ἧς +ὁ +Θεὸς +διέθετο +πρὸς +τοὺς +πατέρας +ὑμῶν, +λέγων +πρὸς +Ἀβραάμ +Καὶ +ἐν +τῷ +σπέρματί +σου +ἐνευλογηθήσονται +πᾶσαι +αἱ +πατριαὶ +τῆς +γῆς. +ὑμῖν +πρῶτον +ὁ +Θεὸς +ἀναστήσας +τὸν +Παῖδα +αὐτοῦ +ἀπέστειλεν +αὐτὸν +εὐλογοῦντα +ὑμᾶς +ἐν +τῷ +ἀποστρέφειν +ἕκαστον +ἀπὸ +τῶν +πονηριῶν +ὑμῶν. +δὲ +Λαλούντων +αὐτῶν +πρὸς +τὸν +λαὸν, +ἐπέστησαν +αὐτοῖς +οἱ +ἱερεῖς +καὶ +ὁ +στρατηγὸς +τοῦ +ἱεροῦ +καὶ +οἱ +Σαδδουκαῖοι, +διαπονούμενοι +διὰ +τὸ +διδάσκειν +αὐτοὺς +τὸν +λαὸν +καὶ +καταγγέλλειν +ἐν +τῷ +Ἰησοῦ +τὴν +ἀνάστασιν +τὴν +ἐκ +νεκρῶν, +καὶ +ἐπέβαλον +αὐτοῖς +τὰς +χεῖρας +καὶ +ἔθεντο +εἰς +τήρησιν +εἰς +τὴν +αὔριον· +γὰρ +ἦν +ἑσπέρα +ἤδη. +δὲ +πολλοὶ +τῶν +ἀκουσάντων +τὸν +λόγον +ἐπίστευσαν, +καὶ +ἐγενήθη +ἀριθμὸς +τῶν +ἀνδρῶν +ὡς +χιλιάδες +πέντε. +δὲ +Ἐγένετο +ἐπὶ +τὴν +αὔριον +συναχθῆναι +αὐτῶν +τοὺς +ἄρχοντας +καὶ +τοὺς +πρεσβυτέρους +καὶ +τοὺς +γραμματεῖς +ἐν +Ἰερουσαλήμ, +καὶ +Ἄννας +ὁ +ἀρχιερεὺς +καὶ +Καϊάφας +καὶ +Ἰωάνης +καὶ +Ἀλέξανδρος +καὶ +ὅσοι +ἦσαν +ἐκ +γένους +ἀρχιερατικοῦ, +καὶ +στήσαντες +αὐτοὺς +ἐν +τῷ +μέσῳ +ἐπυνθάνοντο +Ἐν +ποίᾳ +δυνάμει +ἢ +ἐν +ποίῳ +ὀνόματι +ἐποιήσατε +τοῦτο +ὑμεῖς; +τότε +Πέτρος +πλησθεὶς +Πνεύματος +Ἁγίου +εἶπεν +πρὸς +αὐτούς +Ἄρχοντες +τοῦ +λαοῦ +καὶ +πρεσβύτεροι, +εἰ +ἡμεῖς +σήμερον +ἀνακρινόμεθα +ἐπὶ +εὐεργεσίᾳ +ἀνθρώπου +ἀσθενοῦς, +ἐν +τίνι +οὗτος +σέσωσται, +γνωστὸν +ἔστω +πᾶσιν +ὑμῖν +καὶ +παντὶ +τῷ +λαῷ +Ἰσραὴλ, +ὅτι +ἐν +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +τοῦ +Ναζωραίου, +ὃν +ὑμεῖς +ἐσταυρώσατε, +ὃν +ὁ +Θεὸς +ἤγειρεν +ἐκ +νεκρῶν, +ἐν +τούτῳ +οὗτος +παρέστηκεν +ἐνώπιον +ὑμῶν +ὑγιής. +οὗτός +ἐστιν +ὁ +λίθος +ὁ +ἐξουθενηθεὶς +ὑφ’ +ὑμῶν +τῶν +οἰκοδόμων, +ὁ +γενόμενος +εἰς +κεφαλὴν +γωνίας. +καὶ +οὐκ +ἔστιν +ἐν +ἄλλῳ +οὐδενὶ +ἡ +σωτηρία· +γὰρ +οὐδὲ +ἐστιν +ὑπὸ +τὸν +οὐρανὸν +ὄνομά +ἕτερον +τὸ +δεδομένον +ἐν +ἀνθρώποις +ἐν +ᾧ +δεῖ +σωθῆναι +ἡμᾶς. +δὲ +Θεωροῦντες +τὴν +τοῦ +Πέτρου +καὶ +Ἰωάνου, +παρρησίαν +καὶ +καταλαβόμενοι +ὅτι +ἄνθρωποι +ἀγράμματοί +εἰσιν +καὶ +ἰδιῶται, +ἐθαύμαζον, +τε +ἐπεγίνωσκόν +αὐτοὺς +ὅτι +σὺν +τῷ +Ἰησοῦ +ἦσαν, +τε +βλέποντες +τόν +ἄνθρωπον +τὸν +τεθεραπευμένον, +σὺν +αὐτοῖς +ἑστῶτα +οὐδὲν +ἀντειπεῖν. +εἶχον +δὲ +κελεύσαντες +αὐτοὺς +ἔξω +τοῦ +συνεδρίου +ἀπελθεῖν, +συνέβαλλον +πρὸς +ἀλλήλους +λέγοντες +Τί +ποιήσωμεν +τοῖς +ἀνθρώποις +τούτοις; +γὰρ +μὲν +ὅτι +γνωστὸν +σημεῖον +γέγονεν +δι’ +αὐτῶν, +πᾶσιν +τοῖς +κατοικοῦσιν +Ἱερουσαλὴμ +φανερόν, +καὶ +οὐ +δυνάμεθα +ἀρνεῖσθαι· +ἀλλ’ +ἵνα +μὴ +ἐπὶ +πλεῖον +διανεμηθῇ +εἰς +τὸν +λαόν, +ἀπειλησώμεθα +αὐτοῖς +μηκέτι +λαλεῖν +ἐπὶ +τῷ +ὀνόματι +τούτῳ +μηδενὶ +ἀνθρώπων. +καὶ +καλέσαντες +αὐτοὺς +παρήγγειλαν +καθόλου +μὴ +φθέγγεσθαι +μηδὲ +διδάσκειν +ἐπὶ +τῷ +ὀνόματι +τοῦ +Ἰησοῦ. +δὲ +ὁ +Πέτρος +καὶ +Ἰωάνης +ἀποκριθέντες +εἶπον +πρὸς +αὐτούς +Εἰ +δίκαιόν +ἐστιν +ἐνώπιον +τοῦ +Θεοῦ, +ὑμῶν +ἀκούειν +μᾶλλον +ἢ +τοῦ +Θεοῦ, +κρίνατε· +γὰρ +οὐ +δυνάμεθα +ἡμεῖς +ἃ +εἴδαμεν +καὶ +ἠκούσαμεν +μὴ +λαλεῖν. +δὲ +οἱ +προσαπειλησάμενοι +ἀπέλυσαν +αὐτούς, +μηδὲν +εὑρίσκοντες +τὸ +πῶς +κολάσωνται +αὐτούς, +διὰ +τὸν +λαόν, +ὅτι +πάντες +ἐδόξαζον +τὸν +Θεὸν +ἐπὶ +τῷ +γεγονότι· +γὰρ +ἐτῶν +πλειόνων +τεσσεράκοντα +ἦν +ὁ +ἄνθρωπος +ἐφ’ +ὃν +γεγόνει +τὸ +σημεῖον +τοῦτο +τῆς +ἰάσεως. +δὲ +Ἀπολυθέντες +ἦλθον +πρὸς +τοὺς +ἰδίους +καὶ +ἀπήγγειλαν +ὅσα +πρὸς +αὐτοὺς +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +εἶπαν. +δὲ +οἱ +ἀκούσαντες +ὁμοθυμαδὸν +ἦραν +φωνὴν +πρὸς +τὸν +Θεὸν +καὶ +εἶπαν +Δέσποτα, +σὺ +ὁ +ποιήσας +τὸν +οὐρανὸν +καὶ +τὴν +γῆν +καὶ +τὴν +θάλασσαν +καὶ +πάντα +τὰ +ἐν +αὐτοῖς, +ὁ +τοῦ +πατρὸς +ἡμῶν +διὰ +Πνεύματος +Ἁγίου +στόματος +Δαυεὶδ +παιδός +σου +εἰπών +Ἵνα +τί +ἐφρύαξαν +ἔθνη +καὶ +λαοὶ +ἐμελέτησαν +κενά; +παρέστησαν +οἱ +βασιλεῖς +τῆς +γῆς +καὶ +οἱ +ἄρχοντες +συνήχθησαν +ἐπὶ +τὸ +αὐτὸ +κατὰ +τοῦ +Κυρίου +καὶ +κατὰ +τοῦ +Χριστοῦ +αὐτοῦ. +γὰρ +συνήχθησαν +ἐπ’ +ἀληθείας +ἐν +τῇ +πόλει +ταύτῃ +ἐπὶ +τὸν +ἅγιον +Παῖδά +σου +Ἰησοῦν, +ὃν +ἔχρισας, +τε +Ἠρῴδης +καὶ +Πόντιος +Πειλᾶτος +σὺν +ἔθνεσιν +καὶ +λαοῖς +Ἰσραήλ, +ποιῆσαι +ὅσα +γενέσθαι. +ἡ +χείρ +σου +καὶ +ἡ +βουλὴ +προώρισεν +καὶ +Κύριε, +τὰ +νῦν, +ἔπιδε +ἐπὶ +τὰς +ἀπειλὰς +αὐτῶν, +καὶ +δὸς +τοῖς +δούλοις +σου +μετὰ +παρρησίας +πάσης +λαλεῖν +τὸν +λόγον +σου, +ἐν +τῷ +τὴν +χεῖρά +ἐκτείνειν +σε +εἰς +ἴασιν +καὶ +σημεῖα +καὶ +τέρατα +γίνεσθαι +διὰ +τοῦ +ὀνόματος +τοῦ +ἁγίου +Παιδός +σου +Ἰησοῦ. +καὶ +δεηθέντων +αὐτῶν +ἐσαλεύθη +ὁ +τόπος +ἐν +ᾧ +ἦσαν +συνηγμένοι, +καὶ +ἐπλήσθησαν +ἅπαντες +τοῦ +Ἁγίου +Πνεύματος, +καὶ +ἐλάλουν +τὸν +λόγον +τοῦ +Θεοῦ +μετὰ +παρρησίας. +δὲ +Τοῦ +πλήθους +τῶν +πιστευσάντων +καρδία +καὶ +ψυχὴ +ἦν +μία, +καὶ +οὐδὲ +εἷς +τι +τῶν +ὑπαρχόντων +αὐτῷ +ἴδιον +εἶναι, +ἔλεγεν +ἀλλ’ +ἦν +αὐτοῖς +πάντα +κοινά. +καὶ +δυνάμει +μεγάλῃ +ἀπεδίδουν +τὸ +μαρτύριον +τοῦ +Κυρίου +Ἰησοῦ +τῆς +ἀναστάσεως, +οἱ +ἀπόστολοι +τε +χάρις +μεγάλη +ἦν +ἐπὶ +πάντας +αὐτούς. +γὰρ +οὐδὲ +ἐνδεής +τις +ἦν +ἐν +αὐτοῖς· +γὰρ +ὅσοι +κτήτορες +χωρίων +ἢ +οἰκιῶν +ὑπῆρχον, +πωλοῦντες +ἔφερον +τὰς +τιμὰς +τῶν +πιπρασκομένων +καὶ +ἐτίθουν +παρὰ +τοὺς +πόδας +τῶν +ἀποστόλων· +δὲ +διεδίδετο +ἑκάστῳ +καθότι +ἄν +τις +χρείαν +εἶχεν. +δὲ +Ἰωσὴφ +ὁ +ἐπικληθεὶς +Βαρνάβας +ἀπὸ +τῶν +ἀποστόλων, +ὅ +ἐστιν +μεθερμηνευόμενον +Υἱὸς +παρακλήσεως, +Λευείτης, +Κύπριος +τῷ +γένει, +ὑπάρχοντος +αὐτῷ +ἀγροῦ, +πωλήσας +ἤνεγκεν +τὸ +χρῆμα +καὶ +ἔθηκεν +πρὸς +τοὺς +πόδας +τῶν +ἀποστόλων. +δέ +Ἀνὴρ +τις +Ἀνανίας +ὀνόματι +σὺν +Σαπφείρῃ +τῇ +γυναικὶ +αὐτοῦ +ἐπώλησεν +κτῆμα, +καὶ +ἐνοσφίσατο +ἀπὸ +τῆς +τιμῆς, +συνειδυίης +καὶ +τῆς +γυναικός, +καὶ +ἐνέγκας +μέρος +τι +παρὰ +τοὺς +πόδας +τῶν +ἀποστόλων +ἔθηκεν. +δὲ +εἶπεν +ὁ +Πέτρος +Ἀνανία, +διὰ +τί +ἐπλήρωσεν +ὁ +Σατανᾶς +τὴν +καρδίαν +σου, +ψεύσασθαί +σε +τὸ +Πνεῦμα +τὸ +Ἅγιον +καὶ +νοσφίσασθαι +ἀπὸ +τῆς +τιμῆς +τοῦ +χωρίου; +οὐχὶ +μένον +σοὶ +ἔμενεν +καὶ +πραθὲν +ἐν +τῇ +σῇ +ἐξουσίᾳ +ὑπῆρχεν; +τί +ὅτι +ἔθου +ἐν +τῇ +καρδίᾳ +σου +τὸ +πρᾶγμα +τοῦτο; +οὐκ +ἐψεύσω +ἀνθρώποις +ἀλλὰ +τῷ +Θεῷ. +δὲ +ὁ +Ἀνανίας +ἀκούων +τοὺς +λόγους +τούτους +πεσὼν +ἐξέψυξεν· +καὶ +ἐγένετο +φόβος +μέγας +ἐπὶ +πάντας +τοὺς +ἀκούοντας. +δὲ +ἀναστάντες +οἱ +νεώτεροι +συνέστειλαν +αὐτὸν +καὶ +ἐξενέγκαντες +ἔθαψαν. +δὲ +Ἐγένετο +ὡς +ὡρῶν +τριῶν +διάστημα +καὶ +ἡ +γυνὴ +αὐτοῦ +μὴ +εἰδυῖα +τὸ +γεγονὸς +εἰσῆλθεν. +δὲ +ἀπεκρίθη +πρὸς +αὐτὴν +Πέτρος +Εἰπέ +μοι, +εἰ +τοσούτου +τὸ +χωρίον +ἀπέδοσθε; +δὲ +ἡ +εἶπεν +Ναί, +τοσούτου. +δὲ +ὁ +Πέτρος +πρὸς +αὐτήν +Τί +ὅτι +συνεφωνήθη +ὑμῖν +πειράσαι +τὸ +Πνεῦμα +Κυρίου; +ἰδοὺ +οἱ +πόδες +τῶν +θαψάντων +τὸν +ἄνδρα +σου +ἐπὶ +τῇ +θύρᾳ +καὶ +ἐξοίσουσίν +σε. +δὲ +ἔπεσεν +παραχρῆμα +πρὸς +τοὺς +πόδας +αὐτοῦ +καὶ +ἐξέψυξεν· +δὲ +εἰσελθόντες +οἱ +νεανίσκοι +εὗρον +αὐτὴν +νεκράν, +καὶ +ἐξενέγκαντες +ἔθαψαν +πρὸς +τὸν +ἄνδρα +αὐτῆς. +Καὶ +ἐγένετο +φόβος +μέγας +ἐφ’ +ὅλην +τὴν +ἐκκλησίαν +καὶ +ἐπὶ +πάντας +τοὺς +ἀκούοντας +ταῦτα. +δὲ +Διὰ +τῶν +χειρῶν +τῶν +ἀποστόλων +ἐγίνετο +σημεῖα +καὶ +τέρατα +πολλὰ +ἐν +τῷ +λαῷ· +καὶ +ἦσαν +ὁμοθυμαδὸν +πάντες +ἐν +τῇ +στοᾷ +Σολομῶντος· +δὲ +τῶν +λοιπῶν +οὐδεὶς +ἐτόλμα +κολλᾶσθαι +αὐτοῖς, +ἀλλ’ +ἐμεγάλυνεν +αὐτοὺς +ὁ +λαός· +δὲ +μᾶλλον +προσετίθεντο +πιστεύοντες +τῷ +Κυρίῳ, +πλήθη +τε +ἀνδρῶν +καὶ +γυναικῶν· +ὥστε +καὶ +εἰς +τὰς +πλατείας +ἐκφέρειν +τοὺς +ἀσθενεῖς +καὶ +τιθέναι +ἐπὶ +κλιναρίων +καὶ +κραβάττων, +ἵνα +ἐρχομένου +Πέτρου +κἂν +ἡ +σκιὰ +ἐπισκιάσῃ +τινὶ +αὐτῶν. +δὲ +συνήρχετο +καὶ +τὸ +πλῆθος +τῶν +πέριξ +Ἱερουσαλήμ, +πόλεων +φέροντες +ἀσθενεῖς +καὶ +ὀχλουμένους +ὑπὸ +πνευμάτων +ἀκαθάρτων, +οἵτινες +ἅπαντες. +ἐθεραπεύοντο +δὲ +Ἀναστὰς +ὁ +ἀρχιερεὺς +καὶ +πάντες +οἱ +σὺν +αὐτῷ, +ἡ +οὖσα +αἵρεσις +τῶν +Σαδδουκαίων, +ἐπλήσθησαν +ζήλου +καὶ +ἐπέβαλον +τὰς +χεῖρας +ἐπὶ +τοὺς +ἀποστόλους +καὶ +ἔθεντο +αὐτοὺς +ἐν +τηρήσει +δημοσίᾳ. +δὲ +Ἄγγελος +Κυρίου +διὰ +νυκτὸς +ἤνοιξε +τὰς +θύρας +τῆς +φυλακῆς +τε +ἐξαγαγών +αὐτοὺς +εἶπεν +Πορεύεσθε +καὶ +σταθέντες +λαλεῖτε +ἐν +τῷ +ἱερῷ +τῷ +λαῷ +πάντα +τὰ +ῥήματα +τῆς +Ζωῆς +ταύτης. +δὲ +ἀκούσαντες +εἰσῆλθον +ὑπὸ +τὸν +ὄρθρον +εἰς +τὸ +ἱερὸν +καὶ +ἐδίδασκον. +δὲ +Παραγενόμενος +ὁ +ἀρχιερεὺς +καὶ +οἱ +σὺν +αὐτῷ +συνεκάλεσαν +τὸ +συνέδριον +καὶ +πᾶσαν +τὴν +γερουσίαν +τῶν +υἱῶν +Ἰσραήλ, +καὶ +ἀπέστειλαν +εἰς +τὸ +δεσμωτήριον +ἀχθῆναι +αὐτούς. +δὲ +οἱ +παραγενόμενοι +ὑπηρέται +οὐχ +εὗρον +αὐτοὺς +ἐν +τῇ +φυλακῇ· +δὲ +ἀναστρέψαντες +ἀπήγγειλαν +λέγοντες +ὅτι +εὕρομεν +Τὸ +δεσμωτήριον +κεκλεισμένον +ἐν +πάσῃ +ἀσφαλείᾳ +καὶ +τοὺς +φύλακας +ἑστῶτας +ἐπὶ +τῶν +θυρῶν, +δὲ +ἀνοίξαντες +ἔσω +οὐδένα +εὕρομεν. +δὲ +ὡς +ἤκουσαν +τοὺς +λόγους +τούτους +τε +ὅ +στρατηγὸς +τοῦ +ἱεροῦ +καὶ +οἱ +ἀρχιερεῖς, +διηπόρουν +περὶ +αὐτῶν +ἂν +τί +γένοιτο +τοῦτο. +δέ +παραγενόμενος +τις +ἀπήγγειλεν +αὐτοῖς +ὅτι +Ἰδοὺ +οἱ +ἄνδρες, +οὓς +ἔθεσθε +ἐν +τῇ +φυλακῇ, +εἰσὶν +ἑστῶτες +ἐν +τῷ +ἱερῷ +καὶ +διδάσκοντες +τὸν +λαόν. +Τότε +ἀπελθὼν +ὁ +στρατηγὸς +σὺν +τοῖς +ὑπηρέταις +ἦγεν +αὐτούς, +οὐ +μετὰ +βίας, +γὰρ +ἐφοβοῦντο +τὸν +λαόν, +μὴ +λιθασθῶσιν· +δὲ +ἀγαγόντες +αὐτοὺς +ἔστησαν +ἐν +τῷ +συνεδρίῳ. +καὶ +ἐπηρώτησεν +αὐτοὺς +ὁ +ἀρχιερεὺς +λέγων +Παραγγελίᾳ +παρηγγείλαμεν +ὑμῖν +μὴ +διδάσκειν +ἐπὶ +τῷ +ὀνόματι +τούτῳ, +καὶ +ἰδοὺ +πεπληρώκατε +τὴν +Ἱερουσαλὴμ +τῆς +διδαχῆς +ὑμῶν, +καὶ +βούλεσθε +ἐπαγαγεῖν +ἐφ’ +ἡμᾶς +τὸ +αἷμα +τοῦ +ἀνθρώπου +τούτου. +δὲ +ἀποκριθεὶς +Πέτρος +καὶ +οἱ +ἀπόστολοι +εἶπαν +δεῖ +Πειθαρχεῖν +Θεῷ +μᾶλλον +ἢ +ἀνθρώποις. +ὁ +Θεὸς +τῶν +πατέρων +ἡμῶν +ἤγειρεν +Ἰησοῦν, +ὃν +ὑμεῖς +διεχειρίσασθε +κρεμάσαντες +ἐπὶ +ξύλου· +τοῦτον +ὁ +Θεὸς +Ἀρχηγὸν +καὶ +Σωτῆρα +ὕψωσεν +τῇ +δεξιᾷ +αὐτοῦ +τοῦ +δοῦναι +μετάνοιαν +τῷ +Ἰσραὴλ +καὶ +ἄφεσιν +ἁμαρτιῶν. +καὶ +ἡμεῖς +ἐσμεν +μάρτυρες +τῶν +ῥημάτων +τούτων, +καὶ +τὸ +Πνεῦμα +τὸ +Ἅγιον +ὃ +ἔδωκεν +ὁ +Θεὸς +τοῖς +πειθαρχοῦσιν +αὐτῷ. +δὲ +οἱ +ἀκούσαντες +διεπρίοντο +καὶ +ἐβούλοντο +ἀνελεῖν +αὐτούς. +δέ +Ἀναστὰς +τις +ἐν +τῷ +συνεδρίῳ +Φαρισαῖος +ὀνόματι +Γαμαλιήλ, +νομοδιδάσκαλος +τίμιος +παντὶ +τῷ +λαῷ, +ἐκέλευσεν +ἔξω +βραχὺ +τοὺς +ἀνθρώπους +ποιῆσαι, +τε +εἶπέν +πρὸς +αὐτούς +Ἄνδρες +Ἰσραηλεῖται, +προσέχετε +ἑαυτοῖς +ἐπὶ +τοῖς +ἀνθρώποις +τούτοις +τί +πράσσειν. +μέλλετε +γὰρ +πρὸ +τούτων +τῶν +ἡμερῶν +ἀνέστη +Θευδᾶς, +λέγων +εἶναί +τινα +ἑαυτόν, +ᾧ +προσεκλίθη +ἀνδρῶν +ἀριθμὸς +ὡς +τετρακοσίων· +ὃς +ἀνῃρέθη, +καὶ +πάντες +ὅσοι +ἐπείθοντο +αὐτῷ +διελύθησαν +καὶ +ἐγένοντο +εἰς +οὐδέν. +μετὰ +τοῦτον +ἀνέστη +Ἰούδας +ὁ +Γαλιλαῖος +ἐν +ταῖς +ἡμέραις +τῆς +ἀπογραφῆς +καὶ +ἀπέστησεν +λαὸν +ὀπίσω +αὐτοῦ· +κἀκεῖνος +ἀπώλετο, +καὶ +πάντες +ὅσοι +ἐπείθοντο +αὐτῷ +διεσκορπίσθησαν. +καὶ +τὰ +νῦν +λέγω +ὑμῖν, +ἀπόστητε +ἀπὸ +τῶν +ἀνθρώπων +τούτων +καὶ +ἄφετε +αὐτούς· +ὅτι +ἐὰν +ᾖ +ἐξ +ἀνθρώπων +ἡ +βουλὴ +αὕτη +ἢ +τὸ +ἔργον +τοῦτο, +καταλυθήσεται· +δὲ +εἰ +ἐκ +Θεοῦ +ἐστιν, +οὐ +δυνήσεσθε +καταλῦσαι +αὐτούς, +μή +ποτε +καὶ +θεομάχοι +εὑρεθῆτε. +δὲ +ἐπείσθησαν +αὐτῷ, +καὶ +προσκαλεσάμενοι +τοὺς +ἀποστόλους +δείραντες +παρήγγειλαν +μὴ +λαλεῖν +ἐπὶ +τῷ +ὀνόματι +τοῦ +Ἰησοῦ +καὶ +ἀπέλυσαν. +μὲν +οὖν +Οἱ +ἐπορεύοντο +χαίροντες +ἀπὸ +προσώπου +τοῦ +συνεδρίου, +ὅτι +κατηξιώθησαν +ὑπὲρ +τοῦ +Ὀνόματος +ἀτιμασθῆναι· +τε +πᾶσάν +ἡμέραν +ἐν +τῷ +ἱερῷ +καὶ +κατ’ +οἶκον +οὐκ +ἐπαύοντο +διδάσκοντες +καὶ +εὐαγγελιζόμενοι +τὸν +Χριστὸν +Ἰησοῦν. +δὲ +Ἐν +ταῖς +ἡμέραις +ταύταις +πληθυνόντων +τῶν +μαθητῶν +ἐγένετο +γογγυσμὸς +τῶν +Ἑλληνιστῶν +πρὸς +τοὺς +Ἑβραίους, +ὅτι +παρεθεωροῦντο +ἐν +τῇ +διακονίᾳ +τῇ +καθημερινῇ +αἱ +χῆραι +αὐτῶν. +δὲ +οἱ +δώδεκα +προσκαλεσάμενοι +τὸ +πλῆθος +τῶν +μαθητῶν +εἶπαν +Οὐκ +ἀρεστόν +ἐστιν +ἡμᾶς +καταλείψαντας +τὸν +λόγον +τοῦ +Θεοῦ +διακονεῖν +τραπέζαις. +δέ, +ἀδελφοί, +ἐπισκέψασθε +ἄνδρας +ἐξ +ὑμῶν +μαρτυρουμένους +ἑπτὰ +πλήρεις +Πνεύματος +καὶ +σοφίας, +οὓς +καταστήσομεν +ἐπὶ +τῆς +χρείας +ταύτης· +δὲ +ἡμεῖς +τῇ +προσευχῇ +καὶ +τῇ +διακονίᾳ +τοῦ +λόγου +προσκαρτερήσομεν. +καὶ +ἤρεσεν +ὁ +λόγος +ἐνώπιον +παντὸς +τοῦ +πλήθους, +καὶ +ἐξελέξαντο +Στέφανον, +ἄνδρα +πλήρη +πίστεως +καὶ +Πνεύματος +Ἁγίου, +καὶ +Φίλιππον +καὶ +Πρόχορον +καὶ +Νικάνορα +καὶ +Τίμωνα +καὶ +Παρμενᾶν +καὶ +Νικόλαον +προσήλυτον +Ἀντιοχέα, +οὓς +ἔστησαν +ἐνώπιον +τῶν +ἀποστόλων, +καὶ +προσευξάμενοι +ἐπέθηκαν +αὐτοῖς +τὰς +χεῖρας. +Καὶ +ὁ +λόγος +τοῦ +Θεοῦ +ηὔξανεν, +καὶ +ἐπληθύνετο +ὁ +ἀριθμὸς +τῶν +μαθητῶν +ἐν +Ἱερουσαλὴμ +σφόδρα, +τε +πολύς +ὄχλος +τῶν +ἱερέων +ὑπήκουον +τῇ +πίστει. +δὲ +Στέφανος +πλήρης +χάριτος +καὶ +δυνάμεως +ἐποίει +τέρατα +καὶ +σημεῖα +μεγάλα +ἐν +τῷ +λαῷ. +δέ +ἀνέστησαν +τινες +τῶν +ἐκ +τῆς +συναγωγῆς +τῆς +λεγομένης +Λιβερτίνων +καὶ +Κυρηναίων +καὶ +Ἀλεξανδρέων +καὶ +τῶν +ἀπὸ +Κιλικίας +καὶ +Ἀσίας +συνζητοῦντες +τῷ +Στεφάνῳ, +καὶ +οὐκ +ἴσχυον +ἀντιστῆναι +τῇ +σοφίᾳ +καὶ +τῷ +Πνεύματι +ᾧ +ἐλάλει. +τότε +ὑπέβαλον +ἄνδρας +λέγοντας +ὅτι +Ἀκηκόαμεν +αὐτοῦ +λαλοῦντος +ῥήματα +βλάσφημα +εἰς +Μωϋσῆν +καὶ +τὸν +Θεόν· +τε +συνεκίνησάν +τὸν +λαὸν +καὶ +τοὺς +πρεσβυτέρους +καὶ +τοὺς +γραμματεῖς, +καὶ +ἐπιστάντες +συνήρπασαν +αὐτὸν +καὶ +ἤγαγον +εἰς +τὸ +συνέδριον, +τε +ἔστησάν +μάρτυρας +ψευδεῖς +λέγοντας +Ὁ +ἄνθρωπος +οὗτος +οὐ +παύεται +λαλῶν +ῥήματα +κατὰ +τοῦ +τόπου +τοῦ +ἁγίου +καὶ +τοῦ +νόμου· +γὰρ +ἀκηκόαμεν +αὐτοῦ +λέγοντος +ὅτι +Ἰησοῦς +ὁ +Ναζωραῖος +οὗτος +καταλύσει +τὸν +τόπον +τοῦτον +καὶ +ἀλλάξει +τὰ +ἔθη +ἃ +παρέδωκεν +ἡμῖν +Μωϋσῆς. +καὶ +ἀτενίσαντες +εἰς +αὐτὸν +πάντες +οἱ +καθεζόμενοι +ἐν +τῷ +συνεδρίῳ +εἶδον +τὸ +πρόσωπον +αὐτοῦ +ὡσεὶ +πρόσωπον +ἀγγέλου. +δὲ +Εἶπεν +ὁ +ἀρχιερεύς +Εἰ +ταῦτα +οὕτως +ἔχει; +δὲ +ὁ +ἔφη +Ἄνδρες +ἀδελφοὶ +καὶ +πατέρες, +ἀκούσατε. +Ὁ +Θεὸς +τῆς +δόξης +ὤφθη +τῷ +πατρὶ +ἡμῶν +Ἀβραὰμ +ὄντι +ἐν +τῇ +Μεσοποταμίᾳ +πρὶν +ἢ +κατοικῆσαι +αὐτὸν +ἐν +Χαρράν, +καὶ +εἶπεν +πρὸς +αὐτόν +Ἔξελθε +ἐκ +τῆς +γῆς +σου +καὶ +τῆς +συγγενείας +σου, +καὶ +δεῦρο +εἰς +τὴν +γῆν +ἄν +ἣν +σοι +δείξω. +τότε +ἐξελθὼν +ἐκ +γῆς +Χαλδαίων +κατῴκησεν +ἐν +Χαρράν. +κἀκεῖθεν +μετὰ +τὸ +ἀποθανεῖν +τὸν +πατέρα +αὐτοῦ +μετῴκισεν +αὐτὸν +εἰς +τὴν +γῆν +ταύτην +εἰς +ἣν +ὑμεῖς +νῦν +κατοικεῖτε, +καὶ +οὐκ +ἔδωκεν +αὐτῷ +κληρονομίαν +ἐν +αὐτῇ +οὐδὲ +βῆμα +ποδός, +καὶ +ἐπηγγείλατο +δοῦναι +αὐτῷ +εἰς +κατάσχεσιν +αὐτὴν +καὶ +τῷ +σπέρματι +αὐτοῦ +μετ’ +αὐτόν, +οὐκ +ὄντος +αὐτῷ +τέκνου. +δὲ +ἐλάλησεν +οὕτως +ὁ +Θεὸς, +ὅτι +ἔσται +τὸ +σπέρμα +αὐτοῦ +πάροικον +ἐν +γῇ +ἀλλοτρίᾳ, +καὶ +δουλώσουσιν +καὶ +κακώσουσιν +αὐτὸ +ἔτη +τετρακόσια· +καὶ +τὸ +ἔθνος +ἐὰν +ᾧ +δουλεύσουσιν +κρινῶ +ἐγώ, +ὁ +Θεὸς +εἶπεν, +καὶ +μετὰ +ταῦτα +ἐξελεύσονται +καὶ +λατρεύσουσίν +μοι +ἐν +τῷ +τόπῳ +τούτῳ. +καὶ +ἔδωκεν +αὐτῷ +διαθήκην +περιτομῆς· +καὶ +οὕτως +ἐγέννησεν +τὸν +Ἰσαὰκ +καὶ +περιέτεμεν +αὐτὸν +τῇ +ἡμέρᾳ +τῇ +ὀγδόῃ, +καὶ +Ἰσαὰκ +τὸν +Ἰακώβ, +καὶ +Ἰακὼβ +τοὺς +δώδεκα +πατριάρχας. +Καὶ +οἱ +πατριάρχαι +ζηλώσαντες +τὸν +Ἰωσὴφ +ἀπέδοντο +εἰς +Αἴγυπτον· +καὶ +ἦν +ὁ +Θεὸς +μετ’ +αὐτοῦ, +καὶ +ἐξείλατο +αὐτὸν +ἐκ +πασῶν +τῶν +θλίψεων +αὐτοῦ, +καὶ +ἔδωκεν +αὐτῷ +χάριν +καὶ +σοφίαν +ἐναντίον +Φαραὼ +βασιλέως +Αἰγύπτου, +καὶ +κατέστησεν +αὐτὸν +ἡγούμενον +ἐπ’ +Αἴγυπτον +καὶ +ὅλον +τὸν +οἶκον +αὐτοῦ. +δὲ +ἦλθεν +λιμὸς +ἐφ’ +ὅλην +τὴν +Αἴγυπτον +καὶ +Χανάαν +καὶ +θλῖψις +μεγάλη, +καὶ +οὐχ +ηὕρισκον +χορτάσματα +οἱ +πατέρες +ἡμῶν. +δὲ +Ἰακὼβ +ἀκούσας +ὄντα +σιτία +εἰς +Αἴγυπτον +ἐξαπέστειλεν +τοὺς +πατέρας +ἡμῶν +πρῶτον· +καὶ +ἐν +τῷ +δευτέρῳ +ἐγνωρίσθη +Ἰωσὴφ +τοῖς +ἀδελφοῖς +αὐτοῦ, +καὶ +φανερὸν +ἐγένετο +τῷ +Φαραὼ +τὸ +γένος +Ἰωσήφ. +δὲ +ἀποστείλας +Ἰωσὴφ +μετεκαλέσατο +Ἰακὼβ +τὸν +πατέρα +αὐτοῦ +καὶ +πᾶσαν +τὴν +συγγένειαν +ἐν +ψυχαῖς +ἑβδομήκοντα +πέντε. +καὶ +κατέβη +Ἰακὼβ +εἰς +Αἴγυπτον, +καὶ +ἐτελεύτησεν +αὐτὸς +καὶ +οἱ +πατέρες +ἡμῶν, +καὶ +μετετέθησαν +εἰς +Συχὲμ +καὶ +ἐτέθησαν +ἐν +τῷ +μνήματι +ᾧ +ὠνήσατο +Ἀβραὰμ +τιμῆς +ἀργυρίου +παρὰ +τῶν +υἱῶν +Ἐμμὼρ +ἐν +Συχέμ. +δὲ +Καθὼς +ἤγγιζεν +ὁ +χρόνος +τῆς +ἐπαγγελίας +ἧς +ὡμολόγησεν +ὁ +Θεὸς +τῷ +Ἀβραάμ, +ὁ +λαὸς +ηὔξησεν +καὶ +ἐπληθύνθη +ἐν +Αἰγύπτῳ, +ἄχρι +οὗ +ἀνέστη +ἐπ’ +Αἴγυπτον, +βασιλεὺς +ἕτερος +ὃς +οὐκ +ᾔδει +τὸν +Ἰωσήφ. +οὗτος +κατασοφισάμενος +τὸ +γένος +ἡμῶν +ἐκάκωσεν +τοὺς +πατέρας +τοῦ +ποιεῖν +τὰ +βρέφη +αὐτῶν +ἔκθετα +εἰς +τὸ +μὴ +ζωογονεῖσθαι. +Ἐν +ᾧ +καιρῷ +ἐγεννήθη +Μωϋσῆς, +καὶ +ἦν +ἀστεῖος +τῷ +Θεῷ· +ὃς +ἀνετράφη +μῆνας +τρεῖς +ἐν +τῷ +οἴκῳ +τοῦ +πατρός· +δὲ +ἐκτεθέντος +αὐτοῦ +ἀνείλατο +αὐτὸν +ἡ +θυγάτηρ +Φαραὼ +καὶ +ἀνεθρέψατο +αὐτὸν +ἑαυτῇ +εἰς +υἱόν. +καὶ +ἐπαιδεύθη +Μωϋσῆς +πάσῃ +σοφίᾳ +Αἰγυπτίων, +δὲ +ἦν +δυνατὸς +ἐν +λόγοις +καὶ +ἔργοις +αὐτοῦ. +δὲ +Ὡς +ἐπληροῦτο +αὐτῷ +τεσσερακονταέτης +χρόνος, +ἀνέβη +ἐπὶ +τὴν +καρδίαν +αὐτοῦ +ἐπισκέψασθαι +τοὺς +ἀδελφοὺς +αὐτοῦ +τοὺς +υἱοὺς +Ἰσραήλ. +καὶ +ἰδών +τινα +ἀδικούμενον +ἠμύνατο, +καὶ +ἐποίησεν +ἐκδίκησιν +τῷ +καταπονουμένῳ +πατάξας +τὸν +Αἰγύπτιον. +δὲ +ἐνόμιζεν +συνιέναι +τοὺς +ἀδελφοὺς +ὅτι +ὁ +Θεὸς +διὰ +χειρὸς +αὐτοῦ +δίδωσιν +σωτηρίαν +αὐτοῖς· +δὲ +οἱ +οὐ +συνῆκαν. +τε +τῇ +ἐπιούσῃ +ἡμέρᾳ +ὤφθη +αὐτοῖς +μαχομένοις, +καὶ +συνήλλασσεν +αὐτοὺς +εἰς +εἰρήνην +εἰπών +Ἄνδρες, +ἀδελφοί +ἐστε· +ἵνα +τί +ἀδικεῖτε +ἀλλήλους; +δὲ +ὁ +ἀδικῶν +τὸν +πλησίον +ἀπώσατο +αὐτὸν +εἰπών +Τίς +σε +κατέστησεν +ἄρχοντα +καὶ +δικαστὴν +ἐφ’ +ἡμῶν; +μὴ +ἀνελεῖν +με +σὺ +θέλεις +ὃν +τρόπον +ἀνεῖλες +ἐχθὲς +τὸν +Αἰγύπτιον; +δὲ +ἔφυγεν +Μωϋσῆς +ἐν +τῷ +λόγῳ +τούτῳ, +καὶ +ἐγένετο +πάροικος +ἐν +γῇ +Μαδιάμ, +οὗ +ἐγέννησεν +υἱοὺς +δύο. +Καὶ +πληρωθέντων +ἐτῶν +τεσσεράκοντα +ὤφθη +αὐτῷ +ἐν +τῇ +ἐρήμῳ +τοῦ +ὄρους +Σινᾶ +ἄγγελος +ἐν +φλογὶ +πυρὸς +βάτου. +δὲ +ὁ +Μωϋσῆς +ἰδὼν +ἐθαύμαζεν +τὸ +ὅραμα· +δὲ +προσερχομένου +αὐτοῦ +κατανοῆσαι +ἐγένετο +φωνὴ +Κυρίου +Ἐγὼ +ὁ +Θεὸς +τῶν +πατέρων +σου, +ὁ +Θεὸς +Ἀβραὰμ +καὶ +Ἰσαὰκ +καὶ +Ἰακώβ. +δὲ +ἔντρομος +γενόμενος +Μωϋσῆς +οὐκ +ἐτόλμα +κατανοῆσαι. +δὲ +εἶπεν +αὐτῷ +ὁ +Κύριος +Λῦσον +τὸ +ὑπόδημα +τῶν +ποδῶν +σου· +γὰρ +ὁ +τόπος +ἐφ’ +ᾧ +ἕστηκας +γῆ +ἁγία +ἐστίν. +ἰδὼν +εἶδον +τὴν +κάκωσιν +τοῦ +λαοῦ +μου +τοῦ +ἐν +Αἰγύπτῳ, +καὶ +τοῦ +στεναγμοῦ +αὐτοῦ +ἤκουσα, +καὶ +κατέβην +ἐξελέσθαι +αὐτούς· +καὶ +νῦν +δεῦρο +ἀποστείλω +σε +εἰς +Αἴγυπτον. +Τοῦτον +τὸν +Μωϋσῆν, +ὃν +ἠρνήσαντο +εἰπόντες +Τίς +σε +κατέστησεν +ἄρχοντα +καὶ +δικαστήν; +τοῦτον +ὁ +Θεὸς +καὶ +ἄρχοντα +καὶ +λυτρωτὴν +ἀπέσταλκεν +σὺν +χειρὶ +ἀγγέλου +τοῦ +ὀφθέντος +αὐτῷ +ἐν +τῇ +βάτῳ. +οὗτος +ἐξήγαγεν +αὐτοὺς +ποιήσας +τέρατα +καὶ +σημεῖα +ἐν +γῇ +Αἰγύπτῳ +καὶ +ἐν +Ἐρυθρᾷ +Θαλάσσῃ +καὶ +ἐν +τῇ +ἐρήμῳ +ἔτη +τεσσεράκοντα. +οὗτός +ἐστιν +ὁ +Μωϋσῆς +ὁ +εἴπας +τοῖς +υἱοῖς +Ἰσραήλ +Προφήτην +ὑμῖν +ἀναστήσει +ὁ +Θεὸς +ἐκ +τῶν +ἀδελφῶν +ὑμῶν +ὡς +ἐμέ. +οὗτός +ἐστιν +ὁ +γενόμενος +ἐν +τῇ +ἐκκλησίᾳ +ἐν +τῇ +ἐρήμῳ +μετὰ +τοῦ +ἀγγέλου +τοῦ +λαλοῦντος +αὐτῷ +ἐν +τῷ +ὄρει +Σινᾶ +καὶ +τῶν +πατέρων +ἡμῶν, +ὃς +ἐδέξατο +λόγια +ζῶντα +δοῦναι +ὑμῖν, +ᾧ +οὐκ +ἠθέλησαν +ὑπήκοοι +γενέσθαι +οἱ +πατέρες +ἡμῶν, +ἀλλὰ +ἀπώσαντο +καὶ +ἐστράφησαν +ἐν +ταῖς +καρδίαις +αὐτῶν +εἰς +Αἴγυπτον, +εἰπόντες +τῷ +Ἀαρών +Ποίησον +ἡμῖν +θεοὺς +οἳ +προπορεύσονται +ἡμῶν· +γὰρ +ὁ +Μωϋσῆς +οὗτος, +ὃς +ἐξήγαγεν +ἡμᾶς +ἐκ +γῆς +Αἰγύπτου, +οὐκ +οἴδαμεν +τί +ἐγένετο +αὐτῷ. +καὶ +ἐμοσχοποίησαν +ἐν +ταῖς +ἡμέραις +ἐκείναις +καὶ +ἀνήγαγον +θυσίαν +τῷ +εἰδώλῳ, +καὶ +εὐφραίνοντο +ἐν +τοῖς +ἔργοις +τῶν +χειρῶν +αὐτῶν. +δὲ +ἔστρεψεν +ὁ +Θεὸς +καὶ +παρέδωκεν +αὐτοὺς +λατρεύειν +τῇ +στρατιᾷ +τοῦ +οὐρανοῦ, +καθὼς +γέγραπται +ἐν +βίβλῳ +τῶν +προφητῶν +Μὴ +σφάγια +καὶ +θυσίας +προσηνέγκατέ +μοι +ἔτη +τεσσεράκοντα +ἐν +τῇ +ἐρήμῳ, +οἶκος +Ἰσραήλ, +καὶ +ἀνελάβετε +τὴν +σκηνὴν +τοῦ +Μολὸχ +καὶ +τὸ +ἄστρον +τοῦ +θεοῦ +Ῥομφά, +τοὺς +τύπους +οὓς +ἐποιήσατε +προσκυνεῖν +αὐτοῖς; +καὶ +μετοικιῶ +ὑμᾶς +ἐπέκεινα +Βαβυλῶνος. +Ἠ +σκηνὴ +τοῦ +μαρτυρίου +ἦν +τοῖς +πατράσιν +ἡμῶν +ἐν +τῇ +ἐρήμῳ, +καθὼς +διετάξατο +ὁ +λαλῶν +τῷ +Μωϋσῇ +ποιῆσαι +αὐτὴν +κατὰ +τὸν +τύπον +ὃν +ἑωράκει· +ἣν +καὶ +εἰσήγαγον +διαδεξάμενοι +οἱ +πατέρες +ἡμῶν +μετὰ +Ἰησοῦ +ἐν +τῇ +κατασχέσει +τῶν +ἐθνῶν, +ὧν +ἐξῶσεν +ὁ +Θεὸς +ἀπὸ +προσώπου +τῶν +πατέρων +ἡμῶν +ἕως +τῶν +ἡμερῶν +Δαυείδ· +ὃς +εὗρεν +χάριν +ἐνώπιον +τοῦ +Θεοῦ +καὶ +ᾐτήσατο +εὑρεῖν +σκήνωμα +τῷ +οἴκῳ +Ἰακώβ. +δὲ +Σολομῶν +οἰκοδόμησεν +αὐτῷ +οἶκον. +ἀλλ’ +οὐχ +ὁ +Ὕψιστος +ἐν +χειροποιήτοις +κατοικεῖ· +καθὼς +ὁ +προφήτης +λέγει +Ὁ +οὐρανός +μοι +θρόνος, +δὲ +ἡ +γῆ +ὑποπόδιον +τῶν +ποδῶν +μου· +ποῖον +οἶκον +οἰκοδομήσετέ +μοι, +λέγει +Κύριος, +ἢ +τίς +τόπος +τῆς +καταπαύσεώς +μου; +οὐχὶ +ἡ +χείρ +μου +ἐποίησεν +ταῦτα +πάντα; +Σκληροτράχηλοι +καὶ +ἀπερίτμητοι +καρδίαις +καὶ +τοῖς +ὠσίν, +ὑμεῖς +ἀεὶ +τῷ +Πνεύματι +τῷ +Ἁγίῳ +ἀντιπίπτετε, +ὡς +οἱ +πατέρες +ὑμῶν +καὶ +ὑμεῖς. +τίνα +τῶν +προφητῶν +οὐκ +ἐδίωξαν +οἱ +πατέρες +ὑμῶν; +καὶ +ἀπέκτειναν +τοὺς +προκαταγγείλαντας +περὶ +τῆς +ἐλεύσεως +τοῦ +Δικαίου +οὗ +νῦν +ὑμεῖς +προδόται +καὶ +φονεῖς +ἐγένεσθε, +οἵτινες +ἐλάβετε +τὸν +νόμον +εἰς +διαταγὰς +ἀγγέλων, +καὶ +οὐκ +ἐφυλάξατε. +δὲ +Ἀκούοντες +ταῦτα +διεπρίοντο +ταῖς +καρδίαις +αὐτῶν +καὶ +ἔβρυχον +τοὺς +ὀδόντας +ἐπ’ +αὐτόν. +δὲ +ὑπάρχων +πλήρης +Πνεύματος +Ἁγίου +ἀτενίσας +εἰς +τὸν +οὐρανὸν +εἶδεν +δόξαν +Θεοῦ +καὶ +Ἰησοῦν +ἑστῶτα +ἐκ +δεξιῶν +τοῦ +Θεοῦ, +καὶ +εἶπεν +Ἰδοὺ +θεωρῶ +τοὺς +οὐρανοὺς +διηνοιγμένους +καὶ +τὸν +Υἱὸν +τοῦ +ἀνθρώπου +ἐκ +δεξιῶν +τοῦ +Θεοῦ. +ἑστῶτα +δὲ +κράξαντες +φωνῇ +μεγάλῃ +συνέσχον +τὰ +ὦτα +αὐτῶν, +καὶ +ὥρμησαν +ὁμοθυμαδὸν +ἐπ’ +αὐτόν, +καὶ +ἐκβαλόντες +ἔξω +τῆς +πόλεως +ἐλιθοβόλουν. +καὶ +οἱ +μάρτυρες +ἀπέθεντο +τὰ +ἱμάτια +αὐτῶν +παρὰ +τοὺς +πόδας +νεανίου +καλουμένου +Σαύλου. +καὶ +ἐλιθοβόλουν +τὸν +Στέφανον, +ἐπικαλούμενον +καὶ +λέγοντα +Κύριε +Ἰησοῦ, +δέξαι +τὸ +πνεῦμά +μου. +δὲ +θεὶς +τὰ +γόνατα +ἔκραξεν +φωνῇ +μεγάλῃ +Κύριε, +μὴ +στήσῃς +αὐτοῖς +ταύτην +τὴν +ἁμαρτίαν. +καὶ +τοῦτο +εἰπὼν +ἐκοιμήθη. +δὲ +Σαῦλος +ἦν +συνευδοκῶν +τῇ +ἀναιρέσει +αὐτοῦ. +δὲ +Ἐγένετο +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ +διωγμὸς +μέγας +ἐπὶ +τὴν +ἐκκλησίαν +τὴν +ἐν +Ἱεροσολύμοις· +δὲ +πάντες +διεσπάρησαν +κατὰ +τὰς +χώρας +τῆς +Ἰουδαίας +καὶ +Σαμαρίας +πλὴν +τῶν +ἀποστόλων. +δὲ +συνεκόμισαν +τὸν +Στέφανον +ἄνδρες +εὐλαβεῖς +καὶ +ἐποίησαν +κοπετὸν +μέγαν +ἐπ’ +αὐτῷ. +δὲ +Σαῦλος +ἐλυμαίνετο +τὴν +ἐκκλησίαν +κατὰ +τοὺς +οἴκους +εἰσπορευόμενος, +σύρων +τε +ἄνδρας +καὶ +γυναῖκας +παρεδίδου +εἰς +φυλακήν. +οὖν +μὲν +Οἱ +διασπαρέντες +διῆλθον +εὐαγγελιζόμενοι +τὸν +λόγον. +δὲ +Φίλιππος +κατελθὼν +εἰς +τὴν +πόλιν +τῆς +Σαμαρίας +ἐκήρυσσεν +αὐτοῖς +τὸν +Χριστόν. +δὲ +προσεῖχον +οἱ +ὄχλοι +τοῖς +λεγομένοις +ὑπὸ +τοῦ +Φιλίππου +ὁμοθυμαδὸν +ἐν +τῷ +ἀκούειν +αὐτοὺς +καὶ +βλέπειν +τὰ +σημεῖα +ἃ +ἐποίει. +γὰρ +πολλοὶ +τῶν +ἐχόντων +πνεύματα +ἀκάθαρτα +βοῶντα +φωνῇ +μεγάλῃ +ἐξήρχοντο· +δὲ +πολλοὶ +παραλελυμένοι +καὶ +χωλοὶ +ἐθεραπεύθησαν· +δὲ +ἐγένετο +πολλὴ +χαρὰ +ἐν +τῇ +πόλει +ἐκείνῃ. +δέ +Ἀνὴρ +τις +ὀνόματι +Σίμων +προϋπῆρχεν +ἐν +τῇ +πόλει +μαγεύων +καὶ +ἐξιστάνων +τὸ +ἔθνος +τῆς +Σαμαρίας, +λέγων +εἶναί +τινα +μέγαν, +ἑαυτὸν +ᾧ +προσεῖχον +πάντες +ἀπὸ +μικροῦ +ἕως +μεγάλου +λέγοντες +Οὗτός +ἐστιν +ἡ +δύναμις +τοῦ +Θεοῦ +ἡ +καλουμένη +Μεγάλη. +δὲ +προσεῖχον +αὐτῷ +διὰ +τὸ +ἱκανῷ +χρόνῳ +ταῖς +μαγίαις +ἐξεστακέναι +αὐτούς. +δὲ +ὅτε +ἐπίστευσαν +τῷ +Φιλίππῳ +εὐαγγελιζομένῳ +περὶ +τῆς +βασιλείας +τοῦ +Θεοῦ +καὶ +τοῦ +ὀνόματος +Ἰησοῦ +Χριστοῦ, +ἐβαπτίζοντο +τε +ἄνδρες +καὶ +γυναῖκες. +δὲ +ὁ +Σίμων +καὶ +αὐτὸς +ἐπίστευσεν, +καὶ +βαπτισθεὶς +ἦν +προσκαρτερῶν +τῷ +Φιλίππῳ, +θεωρῶν +τε +σημεῖα +καὶ +δυνάμεις +μεγάλας +γινομένας +ἐξίστατο. +δὲ +οἱ +ἐν +Ἱεροσολύμοις +ἀπόστολοι +Ἀκούσαντες +ὅτι +δέδεκται +ἡ +Σαμάρια +τὸν +λόγον +τοῦ +Θεοῦ, +ἀπέστειλαν +πρὸς +αὐτοὺς +Πέτρον +καὶ +Ἰωάνην, +οἵτινες +καταβάντες +προσηύξαντο +περὶ +αὐτῶν +ὅπως +λάβωσιν +Πνεῦμα +Ἅγιον· +γὰρ +οὐδέπω +ἦν +ἐπιπεπτωκός, +ἐπ’ +οὐδενὶ +αὐτῶν +δὲ +μόνον +βεβαπτισμένοι +ὑπῆρχον +εἰς +τὸ +ὄνομα +τοῦ +κυρίου +Ἰησοῦ. +τότε +ἐπετίθεσαν +τὰς +χεῖρας +ἐπ’ +αὐτούς, +καὶ +ἐλάμβανον +Πνεῦμα +Ἅγιον. +δὲ +ὁ +Σίμων +ἰδὼν +ὅτι +διὰ +τῆς +ἐπιθέσεως +τῶν +χειρῶν +τῶν +ἀποστόλων +δίδοται +τὸ +Πνεῦμα, +προσήνεγκεν +αὐτοῖς +χρήματα +λέγων +Δότε +κἀμοὶ +τὴν +ἐξουσίαν +ταύτην +ἵνα +ἐὰν +ᾧ +ἐπιθῶ +τὰς +χεῖρας +λαμβάνῃ +Πνεῦμα +Ἅγιον. +δὲ +Πέτρος +εἶπεν +πρὸς +αὐτόν +Τὸ +ἀργύριόν +σου +σὺν +σοὶ +εἴη +εἰς +ἀπώλειαν, +ὅτι +ἐνόμισας +τὴν +δωρεὰν +τοῦ +Θεοῦ +διὰ +χρημάτων +κτᾶσθαι. +οὐκ +ἔστιν +σοι +μερὶς +οὐδὲ +κλῆρος +ἐν +τῷ +λόγῳ +τούτῳ· +γὰρ +ἡ +καρδία +σου +οὐκ +ἔστιν +εὐθεῖα +ἔναντι +τοῦ +Θεοῦ. +οὖν +μετανόησον +ἀπὸ +τῆς +κακίας +σου +ταύτης, +καὶ +δεήθητι +τοῦ +Κυρίου +ἄρα +εἰ +ἀφεθήσεταί +σοι +ἡ +ἐπίνοια +τῆς +καρδίας +σου· +γὰρ +εἰς +χολὴν +πικρίας +καὶ +σύνδεσμον +ἀδικίας +σε +ὄντα. +ὁρῶ +δὲ +ἀποκριθεὶς +ὁ +Σίμων +εἶπεν +Δεήθητε +ὑμεῖς +ὑπὲρ +ἐμοῦ +πρὸς +τὸν +Κύριον, +ὅπως +ἐπέλθῃ +ἐπ’ +ἐμὲ +μηδὲν +ὧν +εἰρήκατε. +μὲν +οὖν +Οἱ +διαμαρτυράμενοι +καὶ +λαλήσαντες +τὸν +λόγον +τοῦ +Κυρίου +ὑπέστρεφον +εἰς +Ἱεροσόλυμα, +τε +πολλάς +κώμας +τῶν +Σαμαρειτῶν +εὐηγγελίζοντο. +δὲ +Ἄγγελος +Κυρίου +ἐλάλησεν +πρὸς +Φίλιππον +λέγων +Ἀνάστηθι +καὶ +πορεύου +κατὰ +μεσημβρίαν +ἐπὶ +τὴν +ὁδὸν +τὴν +καταβαίνουσαν +ἀπὸ +Ἰερουσαλὴμ +εἰς +Γάζαν· +αὕτη +ἐστὶν +ἔρημος. +καὶ +ἀναστὰς +ἐπορεύθη. +καὶ +ἰδοὺ +ἀνὴρ +Αἰθίοψ +εὐνοῦχος +δυνάστης +Κανδάκης +βασιλίσσης +Αἰθιόπων, +ὃς +ἦν +ἐπὶ +πάσης +τῆς +γάζης +αὐτῆς, +ὃς +ἐληλύθει +προσκυνήσων +εἰς +Ἱερουσαλήμ, +ἦν +δὲ +ὑποστρέφων +καὶ +καθήμενος +ἐπὶ +τοῦ +ἅρματος +αὐτοῦ +καὶ +ἀνεγίνωσκεν +τὸν +προφήτην +Ἠσαΐαν. +δὲ +εἶπεν +τὸ +Πνεῦμα +τῷ +Φιλίππῳ +Πρόσελθε +καὶ +κολλήθητι +τῷ +ἅρματι +τούτῳ. +δὲ +προσδραμὼν +ὁ +Φίλιππος +ἤκουσεν +αὐτοῦ +ἀναγινώσκοντος +Ἠσαΐαν +τὸν +προφήτην, +καὶ +εἶπεν +Ἆρά +γε +γινώσκεις +ἃ +ἀναγινώσκεις; +δὲ +ὁ +εἶπεν +γὰρ +ἂν +Πῶς +δυναίμην +ἐὰν +μή +τις +ὁδηγήσει +με; +τε +παρεκάλεσέν +τὸν +Φίλιππον +ἀναβάντα +καθίσαι +σὺν +αὐτῷ. +δὲ +ἡ +περιοχὴ +τῆς +γραφῆς +ἣν +ἀνεγίνωσκεν +ἦν +αὕτη +Ὡς +πρόβατον +ἐπὶ +σφαγὴν +ἤχθη, +καὶ +ὡς +ἀμνὸς +ἐναντίον +τοῦ +κείροντος +αὐτὸν +ἄφωνος, +οὕτως +οὐκ +ἀνοίγει +τὸ +στόμα +αὐτοῦ. +Ἐν +τῇ +ταπεινώσει +ἡ +κρίσις +αὐτοῦ +ἤρθη· +τὴν +γενεὰν +αὐτοῦ +τίς +διηγήσεται; +ὅτι +αἴρεται +ἀπὸ +τῆς +γῆς +ἡ +ζωὴ +αὐτοῦ. +δὲ +ἀποκριθεὶς +ὁ +εὐνοῦχος +τῷ +Φιλίππῳ +εἶπεν +Δέομαί +σου, +περὶ +τίνος +ὁ +προφήτης +λέγει +τοῦτο; +περὶ +ἑαυτοῦ +ἢ +περὶ +ἑτέρου +τινός; +δὲ +ὁ +Φίλιππος +ἀνοίξας +τὸ +στόμα +αὐτοῦ +καὶ +ἀρξάμενος +ἀπὸ +τῆς +γραφῆς +ταύτης +εὐηγγελίσατο +αὐτῷ +τὸν +Ἰησοῦν. +δὲ +ὡς +ἐπορεύοντο +κατὰ +τὴν +ὁδόν, +ἦλθον +ἐπί +τι +ὕδωρ, +καί +φησιν +ὁ +εὐνοῦχος +Ἰδοὺ +ὕδωρ· +τί +κωλύει +με +βαπτισθῆναι; +καὶ +ἐκέλευσεν +στῆναι +τὸ +ἅρμα, +καὶ +κατέβησαν +ἀμφότεροι +εἰς +τὸ +ὕδωρ, +τε +ὅ +Φίλιππος +καὶ +ὁ +εὐνοῦχος, +καὶ +ἐβάπτισεν +αὐτόν. +δὲ +ὅτε +ἀνέβησαν +ἐκ +τοῦ +ὕδατος, +Πνεῦμα +Κυρίου +ἥρπασεν +τὸν +Φίλιππον, +καὶ +οὐκ +εἶδεν +αὐτὸν +οὐκέτι +ὁ +εὐνοῦχος, +γὰρ +ἐπορεύετο +τὴν +ὁδὸν +αὐτοῦ +χαίρων. +δὲ +Φίλιππος +εὑρέθη +εἰς +Ἄζωτον, +καὶ +διερχόμενος +εὐηγγελίζετο +τὰς +πόλεις +πάσας +ἕως +τοῦ +ἐλθεῖν +αὐτὸν +εἰς +Καισάριαν. +δὲ +Ὁ +Σαῦλος +ἔτι +ἐμπνέων +ἀπειλῆς +καὶ +φόνου +εἰς +τοὺς +μαθητὰς +τοῦ +Κυρίου, +προσελθὼν +τῷ +ἀρχιερεῖ +ᾐτήσατο +παρ’ +αὐτοῦ +ἐπιστολὰς +εἰς +Δαμασκὸν +πρὸς +τὰς +συναγωγάς, +ὅπως +ἐάν +εὕρῃ +τινας +τῆς +Ὁδοῦ +ὄντας, +τε +ἄνδρας +καὶ +γυναῖκας, +δεδεμένους +ἀγάγῃ +εἰς +Ἱερουσαλήμ. +δὲ +Ἐν +τῷ +πορεύεσθαι +ἐγένετο +αὐτὸν +ἐγγίζειν +τῇ +Δαμασκῷ, +τε +ἐξαίφνης +αὐτὸν +περιήστραψεν +φῶς +ἐκ +τοῦ +οὐρανοῦ, +καὶ +πεσὼν +ἐπὶ +τὴν +γῆν +ἤκουσεν +φωνὴν +λέγουσαν +αὐτῷ +Σαοὺλ +Σαούλ, +τί +με +διώκεις; +δέ +εἶπεν +Τίς +εἶ, +Κύριε; +δέ +ὁ +Ἐγώ +εἰμι +Ἰησοῦς +ὃν +σὺ +διώκεις· +ἀλλὰ +ἀνάστηθι +καὶ +εἴσελθε +εἰς +τὴν +πόλιν, +καὶ +λαληθήσεταί +σοι +ὅ +τί +σε +ποιεῖν. +δεῖ +δὲ +οἱ +ἄνδρες +οἱ +συνοδεύοντες +αὐτῷ +εἱστήκεισαν +ἐνεοί, +μὲν +ἀκούοντες +τῆς +φωνῆς, +δὲ +μηδένα +θεωροῦντες. +δὲ +ἠγέρθη +Σαῦλος +ἀπὸ +τῆς +γῆς, +δὲ +ἀνεῳγμένων +τῶν +ὀφθαλμῶν +αὐτοῦ +οὐδὲν +ἔβλεπεν· +δὲ +χειραγωγοῦντες +αὐτὸν +εἰσήγαγον +εἰς +Δαμασκόν. +καὶ +ἦν +βλέπων, +ἡμέρας +τρεῖς +μὴ +καὶ +οὐκ +ἔφαγεν +οὐδὲ +ἔπιεν. +δέ +Ἦν +τις +μαθητὴς +ὀνόματι +Ἀνανίας, +ἐν +Δαμασκῷ +καὶ +εἶπεν +πρὸς +αὐτὸν +ἐν +ὁράματι +ὁ +Κύριος +Ἀνανία. +δὲ +ὁ +εἶπεν +Ἰδοὺ +ἐγώ, +Κύριε. +δὲ +ὁ +Κύριος +πρὸς +αὐτόν +Ἀναστὰς +πορεύθητι +ἐπὶ +τὴν +ῥύμην +τὴν +καλουμένην +Εὐθεῖαν +καὶ +ζήτησον +ἐν +οἰκίᾳ +Ἰούδα +Σαῦλον +ὀνόματι +Ταρσέα· +γὰρ +ἰδοὺ +προσεύχεται, +καὶ +εἶδεν +ἄνδρα +Ἀνανίαν +ὀνόματι +εἰσελθόντα +καὶ +ἐπιθέντα +αὐτῷ +χεῖρας, +ὅπως +ἀναβλέψῃ. +δὲ +ἀπεκρίθη +Ἀνανίας +Κύριε, +ἤκουσα +ἀπὸ +πολλῶν +περὶ +τοῦ +ἀνδρὸς +τούτου, +ὅσα +κακὰ +τοῖς +ἁγίοις +σου +ἐποίησεν +ἐν +Ἱερουσαλήμ· +καὶ +ὧδε +ἔχει +ἐξουσίαν +παρὰ +τῶν +ἀρχιερέων +δῆσαι +πάντας +τοὺς +ἐπικαλουμένους +τὸ +ὄνομά +σου. +δὲ +εἶπεν +πρὸς +αὐτὸν +ὁ +Κύριος +Πορεύου, +ὅτι +σκεῦος +ἐκλογῆς +ἐστίν +μοι +οὗτος +τοῦ +βαστάσαι +τὸ +ὄνομά +μου +ἐνώπιον +τε +ἐθνῶν +καὶ +βασιλέων +τε +υἱῶν +Ἰσραήλ· +γὰρ +ἐγὼ +ὑποδείξω +αὐτῷ +ὅσα +αὐτὸν +ὑπὲρ +τοῦ +ὀνόματός +μου +παθεῖν. +δεῖ +δὲ +Ἀπῆλθεν +Ἀνανίας +καὶ +εἰσῆλθεν +εἰς +τὴν +οἰκίαν, +καὶ +ἐπιθεὶς +ἐπ’ +αὐτὸν +τὰς +χεῖρας +εἶπεν +Σαοὺλ +ἀδελφέ, +ὁ +Κύριος +Ἰησοῦς +ὁ +ὀφθείς +σοι +ἐν +τῇ +ὁδῷ +ᾗ +ἤρχου, +ἀπέσταλκέν +με, +ὅπως +ἀναβλέψῃς +καὶ +πλησθῇς +Πνεύματος +Ἁγίου. +καὶ +εὐθέως +ἀπέπεσαν +ἀπὸ +αὐτοῦ +τῶν +ὀφθαλμῶν +ὡς +λεπίδες, +τε, +ἀνέβλεψέν +καὶ +ἀναστὰς +ἐβαπτίσθη, +καὶ +λαβὼν +τροφὴν +ἐνίσχυσεν. +δὲ +Ἐγένετο +μετὰ +τῶν +ἐν +Δαμασκῷ +μαθητῶν +ἡμέρας +τινὰς, +καὶ +εὐθέως +ἐν +ταῖς +συναγωγαῖς +ἐκήρυσσεν +τὸν +Ἰησοῦν, +ὅτι +οὗτός +ἐστιν +ὁ +Υἱὸς +τοῦ +Θεοῦ. +δὲ +ἐξίσταντο +πάντες +οἱ +ἀκούοντες +καὶ +ἔλεγον +Οὐχ +οὗτός +ἐστιν +ὁ +πορθήσας +εἰς +Ἱερουσαλὴμ +τοὺς +ἐπικαλουμένους +τὸ +ὄνομα +τοῦτο, +καὶ +ὧδε +εἰς +τοῦτο +ἐληλύθει, +ἵνα +δεδεμένους +αὐτοὺς +ἀγάγῃ +ἐπὶ +τοὺς +ἀρχιερεῖς; +δὲ +Σαῦλος +μᾶλλον +ἐνεδυναμοῦτο +καὶ +συνέχυννεν +Ἰουδαίους +τοὺς +κατοικοῦντας +ἐν +Δαμασκῷ, +συμβιβάζων +ὅτι +οὗτός +ἐστιν +ὁ +Χριστός. +δὲ +Ὡς +ἐπληροῦντο +ἡμέραι +ἱκαναί, +συνεβουλεύσαντο +οἱ +Ἰουδαῖοι +ἀνελεῖν +αὐτόν· +δὲ +ἐγνώσθη +τῷ +Σαύλῳ +ἡ +ἐπιβουλὴ +αὐτῶν. +δὲ +παρετηροῦντο +καὶ +τὰς +πύλας +τε +ἡμέρας +καὶ +νυκτὸς +ὅπως +αὐτὸν +ἀνέλωσιν· +δὲ +λαβόντες +οἱ +μαθηταὶ +αὐτοῦ +νυκτὸς +διὰ +τοῦ +τείχους +καθῆκαν +αὐτὸν +χαλάσαντες +ἐν +σπυρίδι. +δὲ +Παραγενόμενος +εἰς +Ἱερουσαλὴμ +ἐπείραζεν +κολλᾶσθαι +τοῖς +μαθηταῖς· +καὶ +πάντες +ἐφοβοῦντο +αὐτόν, +μὴ +πιστεύοντες +ὅτι +ἐστὶν +μαθητής. +δὲ +Βαρνάβας +ἐπιλαβόμενος +αὐτὸν +ἤγαγεν +πρὸς +τοὺς +ἀποστόλους, +καὶ +διηγήσατο +αὐτοῖς +πῶς +ἐν +τῇ +ὁδῷ +εἶδεν +τὸν +Κύριον +καὶ +ὅτι +ἐλάλησεν +αὐτῷ, +καὶ +πῶς +ἐν +Δαμασκῷ +ἐπαρρησιάσατο +ἐν +τῷ +ὀνόματι +Ἰησοῦ. +καὶ +ἦν +εἰσπορευόμενος +καὶ +ἐκπορευόμενος +μετ’ +αὐτῶν +εἰς +Ἱερουσαλήμ, +παρρησιαζόμενος +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου, +τε +ἐλάλει +καὶ +συνεζήτει +πρὸς +τοὺς +Ἑλληνιστάς· +δὲ +οἱ +ἐπεχείρουν +ἀνελεῖν +αὐτόν. +δὲ +ἐπιγνόντες +οἱ +ἀδελφοὶ +κατήγαγον +αὐτὸν +εἰς +Καισάριαν +καὶ +ἐξαπέστειλαν +αὐτὸν +εἰς +Ταρσόν. +μὲν +οὖν +Ἠ +ἐκκλησία +καθ’ +ὅλης +τῆς +Ἰουδαίας +καὶ +Γαλιλαίας +καὶ +Σαμαρίας +εἶχεν +εἰρήνην +οἰκοδομουμένη +καὶ +πορευομένη +τῷ +φόβῳ +τοῦ +Κυρίου, +καὶ +τῇ +παρακλήσει +τοῦ +Ἁγίου +Πνεύματος +ἐπληθύνετο. +δὲ +Ἐγένετο +Πέτρον +διερχόμενον +διὰ +πάντων +κατελθεῖν +καὶ +πρὸς +τοὺς +ἁγίους +τοὺς +κατοικοῦντας +Λύδδα. +δὲ +εὗρεν +ἐκεῖ +ἄνθρωπόν +τινα +ὀνόματι +Αἰνέαν +ἐξ +ἐτῶν +ὀκτὼ +κατακείμενον +ἐπὶ +κραβάττου, +ὃς +ἦν +παραλελυμένος. +καὶ +εἶπεν +αὐτῷ +ὁ +Πέτρος +Αἰνέα, +ἰᾶταί +σε +Ἰησοῦς +Χριστός· +ἀνάστηθι +καὶ +στρῶσον +σεαυτῷ. +καὶ +εὐθέως +ἀνέστη. +καὶ +εἶδαν +αὐτὸν +πάντες +οἱ +κατοικοῦντες +Λύδδα +καὶ +τὸν +Σαρῶνα, +οἵτινες +ἐπέστρεψαν +ἐπὶ +τὸν +Κύριον. +δέ +Ἐν +Ἰόππῃ +ἦν +τις +μαθήτρια +ὀνόματι +Ταβειθά, +ἣ +διερμηνευομένη +λέγεται +Δορκάς· +αὕτη +ἦν +πλήρης +ἔργων +ἀγαθῶν +καὶ +ἐλεημοσυνῶν +ὧν +ἐποίει. +δὲ +ἐγένετο +ἐν +ταῖς +ἡμέραις +ἐκείναις +ἀσθενήσασαν +αὐτὴν +ἀποθανεῖν· +δὲ +λούσαντες +ἔθηκαν +ἐν +ὑπερῴῳ. +δὲ +οὔσης +Λύδδας +ἐγγὺς +τῇ +Ἰόππῃ +οἱ +μαθηταὶ +ἀκούσαντες +ὅτι +Πέτρος +ἐστὶν +ἐν +αὐτῇ +ἀπέστειλαν +δύο +ἄνδρας +πρὸς +αὐτὸν +παρακαλοῦντες +Μὴ +ὀκνήσῃς +διελθεῖν +ἕως +ἡμῶν. +δὲ +ἀναστὰς +Πέτρος +συνῆλθεν +αὐτοῖς· +ὃν +παραγενόμενον +ἀνήγαγον +εἰς +τὸ +ὑπερῷον, +καὶ +παρέστησαν +αὐτῷ +πᾶσαι +αἱ +χῆραι +κλαίουσαι +καὶ +ἐπιδεικνύμεναι +χιτῶνας +καὶ +ἱμάτια, +ὅσα +ἐποίει +μετ’ +αὐτῶν +οὖσα +ἡ +Δορκάς. +δὲ +ὁ +Πέτρος +ἐκβαλὼν +ἔξω +πάντας +καὶ +θεὶς +τὰ +γόνατα +προσηύξατο, +καὶ +ἐπιστρέψας +πρὸς +τὸ +σῶμα +εἶπεν +Ταβειθά, +ἀνάστηθι. +δὲ +ἡ +ἤνοιξεν +τοὺς +ὀφθαλμοὺς +αὐτῆς, +καὶ +ἰδοῦσα +τὸν +Πέτρον +ἀνεκάθισεν. +δὲ +δοὺς +αὐτῇ +χεῖρα +ἀνέστησεν +αὐτήν· +δὲ +φωνήσας +τοὺς +ἁγίους +καὶ +τὰς +χήρας +παρέστησεν +αὐτὴν +ζῶσαν. +δὲ +γνωστὸν +ἐγένετο +καθ’ +ὅλης +τῆς +Ἰόππης, +καὶ +ἐπίστευσαν +πολλοὶ +ἐπὶ +τὸν +Κύριον. +δὲ +Ἐγένετο +ἡμέρας +ἱκανὰς +μεῖναι +ἐν +Ἰόππῃ +παρά +τινι +Σίμωνι +βυρσεῖ. +δέ +Ἀνὴρ +τις +ἐν +Καισαρίᾳ +ὀνόματι +Κορνήλιος, +ἑκατοντάρχης +ἐκ +σπείρης +τῆς +καλουμένης +Ἰταλικῆς, +εὐσεβὴς +καὶ +φοβούμενος +τὸν +Θεὸν +σὺν +παντὶ +τῷ +οἴκῳ +αὐτοῦ, +ποιῶν +ἐλεημοσύνας +πολλὰς +τῷ +λαῷ +καὶ +δεόμενος +τοῦ +Θεοῦ +διὰ +παντός, +εἶδεν +ἐν +ὁράματι +φανερῶς, +ὡσεὶ +περὶ +ὥραν +ἐνάτην +τῆς +ἡμέρας, +ἄγγελον +τοῦ +Θεοῦ +εἰσελθόντα +πρὸς +αὐτὸν +καὶ +εἰπόντα +αὐτῷ +Κορνήλιε. +δὲ +ὁ +ἀτενίσας +αὐτῷ +καὶ +ἔμφοβος +γενόμενος +εἶπεν +Τί +ἐστιν, +Κύριε; +δὲ +εἶπεν +αὐτῷ +Αἱ +προσευχαί +σου +καὶ +αἱ +ἐλεημοσύναι +σου +ἀνέβησαν +εἰς +μνημόσυνον +ἔμπροσθεν +τοῦ +Θεοῦ. +καὶ +νῦν +πέμψον +ἄνδρας +εἰς +Ἰόππην +καὶ +μετάπεμψαι +Σίμωνά +τινα +ὃς +ἐπικαλεῖται +Πέτρος· +οὗτος +ξενίζεται +παρά +τινι +Σίμωνι +βυρσεῖ, +ᾧ +ἐστιν +οἰκία +παρὰ +θάλασσαν. +δὲ +ὡς +ἀπῆλθεν +ὁ +ἄγγελος +ὁ +λαλῶν +αὐτῷ, +φωνήσας +δύο +τῶν +οἰκετῶν +καὶ +στρατιώτην +εὐσεβῆ +τῶν +προσκαρτερούντων +αὐτῷ, +καὶ +ἐξηγησάμενος +ἅπαντα +αὐτοῖς +ἀπέστειλεν +αὐτοὺς +εἰς +τὴν +Ἰόππην. +δὲ +Τῇ +ἐπαύριον +ὁδοιπορούντων +ἐκείνων +καὶ +τῇ +πόλει +ἐγγιζόντων +ἀνέβη +Πέτρος +ἐπὶ +τὸ +δῶμα +προσεύξασθαι +περὶ +ὥραν +ἕκτην. +δὲ +ἐγένετο +πρόσπεινος +καὶ +ἤθελεν +γεύσασθαι· +δὲ +παρασκευαζόντων +αὐτῶν +ἐγένετο +ἐπ’ +αὐτὸν +ἔκστασις, +καὶ +θεωρεῖ +τὸν +οὐρανὸν +ἀνεῳγμένον +καὶ +καταβαῖνον +σκεῦός +τι +ὡς +ὀθόνην +μεγάλην, +τέσσαρσιν +ἀρχαῖς +καθιέμενον +ἐπὶ +τῆς +γῆς, +ἐν +ᾧ +ὑπῆρχεν +πάντα +τὰ +τετράποδα +καὶ +ἑρπετὰ +τῆς +γῆς +καὶ +πετεινὰ +τοῦ +οὐρανοῦ. +καὶ +ἐγένετο +φωνὴ +πρὸς +αὐτόν +Πέτρε, +Ἀναστάς, +θῦσον +καὶ +φάγε. +δὲ +ὁ +Πέτρος +εἶπεν +Μηδαμῶς, +Κύριε, +ὅτι +οὐδέποτε +ἔφαγον +πᾶν +κοινὸν +καὶ +ἀκάθαρτον. +καὶ +φωνὴ +πάλιν +ἐκ +δευτέρου +πρὸς +αὐτόν +Ἃ +ὁ +Θεὸς +ἐκαθάρισεν +σὺ +μὴ +κοίνου. +δὲ +τοῦτο +ἐγένετο +ἐπὶ +τρίς, +καὶ +εὐθὺς +ἀνελήμφθη +τὸ +σκεῦος +εἰς +τὸν +οὐρανόν. +δὲ +Ὡς +ἐν +ἑαυτῷ +διηπόρει +ὁ +Πέτρος +ἂν +τί +εἴη +τὸ +ὅραμα +ὃ +εἶδεν, +ἰδοὺ +οἱ +ἄνδρες +οἱ +ἀπεσταλμένοι +ὑπὸ +τοῦ +Κορνηλίου +διερωτήσαντες +τὴν +οἰκίαν +τοῦ +Σίμωνος +ἐπέστησαν +ἐπὶ +τὸν +πυλῶνα, +καὶ +φωνήσαντες +ἐπυνθάνοντο +εἰ +Σίμων +ὁ +ἐπικαλούμενος +Πέτρος +ἐνθάδε +ξενίζεται. +δὲ +Τοῦ +Πέτρου +διενθυμουμένου +περὶ +τοῦ +ὁράματος +εἶπεν +τὸ +Πνεῦμα +Ἰδοὺ +ἄνδρες +δύο +ζητοῦντές +σε· +ἀλλὰ +ἀναστὰς +κατάβηθι, +καὶ +πορεύου +σὺν +αὐτοῖς +μηδὲν +διακρινόμενος, +ὅτι +ἐγὼ +ἀπέσταλκα +αὐτούς. +δὲ +καταβὰς +Πέτρος +πρὸς +τοὺς +ἄνδρας +εἶπεν +Ἰδοὺ +ἐγώ +εἰμι +ὃν +ζητεῖτε· +τίς +ἡ +αἰτία +δι’ +ἣν +πάρεστε; +δὲ +οἱ +εἶπαν +Κορνήλιος +ἑκατοντάρχης, +ἀνὴρ +δίκαιος +καὶ +φοβούμενος +τὸν +Θεὸν, +τε +μαρτυρούμενός +ὑπὸ +ὅλου +τοῦ +ἔθνους +τῶν +Ἰουδαίων, +ἐχρηματίσθη +ὑπὸ +ἀγγέλου +ἁγίου +μεταπέμψασθαί +σε +εἰς +τὸν +οἶκον +αὐτοῦ +καὶ +ἀκοῦσαι +ῥήματα +παρὰ +σοῦ. +οὖν +εἰσκαλεσάμενος +αὐτοὺς +ἐξένισεν. +δὲ +Τῇ +ἐπαύριον +ἀναστὰς +ἐξῆλθεν +σὺν +αὐτοῖς, +καί +τινες +τῶν +ἀδελφῶν +τῶν +ἀπὸ +Ἰόππης +συνῆλθον +αὐτῷ. +δὲ +τῇ +ἐπαύριον +εἰσῆλθεν +εἰς +τὴν +Καισάριαν· +δὲ +ὁ +Κορνήλιος +ἦν +προσδοκῶν +αὐτοὺς, +συνκαλεσάμενος +τοὺς +συγγενεῖς +αὐτοῦ +καὶ +τοὺς +ἀναγκαίους +φίλους. +δὲ +Ὡς +ἐγένετο +τοῦ +εἰσελθεῖν +τὸν +Πέτρον, +συναντήσας +αὐτῷ +ὁ +Κορνήλιος +πεσὼν +ἐπὶ +τοὺς +πόδας +προσεκύνησεν. +δὲ +ὁ +Πέτρος +ἤγειρεν +αὐτὸν +λέγων +Ἀνάστηθι· +καὶ +ἐγὼ +αὐτὸς +ἄνθρωπός +εἰμι. +καὶ +συνομιλῶν +αὐτῷ +εἰσῆλθεν, +καὶ +εὑρίσκει +συνεληλυθότας +πολλούς, +τε +ἔφη +πρὸς +αὐτούς +Ὑμεῖς +ἐπίστασθε +ὡς +ἀθέμιτόν +ἐστιν +ἀνδρὶ +Ἰουδαίῳ +κολλᾶσθαι +ἢ +προσέρχεσθαι +ἀλλοφύλῳ· +κἀμοὶ +ὁ +Θεὸς +ἔδειξεν +μηδένα +ἄνθρωπον· +κοινὸν +ἢ +ἀκάθαρτον +λέγειν +διὸ +καὶ +ἀναντιρρήτως +ἦλθον +μεταπεμφθείς. +οὖν +πυνθάνομαι +Τίνι +λόγῳ +μετεπέμψασθέ +με. +Καὶ +ὁ +Κορνήλιος +ἔφη +Ἀπὸ +τετάρτης +ἡμέρας +μέχρι +ταύτης +τῆς +ὥρας +ἤμην +προσευχόμενος +τὴν +ἐνάτην +ἐν +τῷ +οἴκῳ +μου, +καὶ +ἰδοὺ +ἀνὴρ +ἔστη +ἐνώπιόν +μου +ἐν +ἐσθῆτι +λαμπρᾷ, +καὶ +φησίν +Κορνήλιε, +εἰσηκούσθη +σου +ἡ +προσευχὴ +καὶ +αἱ +ἐλεημοσύναι +σου +ἐμνήσθησαν +ἐνώπιον +τοῦ +Θεοῦ. +οὖν +πέμψον +εἰς +Ἰόππην +καὶ +μετακάλεσαι +Σίμωνα +ὃς +ἐπικαλεῖται +Πέτρος· +οὗτος +ξενίζεται +ἐν +οἰκίᾳ +Σίμωνος +βυρσέως +παρὰ +θάλασσαν. +οὖν +ἐξαυτῆς +ἔπεμψα +πρὸς +σέ, +τε +σύ +καλῶς +ἐποίησας +παραγενόμενος. +οὖν +νῦν +πάντες +ἡμεῖς +ἐνώπιον +τοῦ +Θεοῦ +πάρεσμεν +ἀκοῦσαι +πάντα +τὰ +προστεταγμένα +σοι +ὑπὸ +τοῦ +Κυρίου. +δὲ +Πέτρος +Ἀνοίξας +τὸ +στόμα +εἶπεν +Ἐπ’ +ἀληθείας +καταλαμβάνομαι +ὅτι +οὐκ +ἔστιν +προσωπολήμπτης +ὁ +Θεός, +ἀλλ’ +ἐν +παντὶ +ἔθνει +ὁ +φοβούμενος +αὐτὸν +καὶ +ἐργαζόμενος +δικαιοσύνην +δεκτὸς +αὐτῷ +ἐστιν· +τὸν +λόγον +ὃν +ἀπέστειλεν +τοῖς +υἱοῖς +Ἰσραὴλ +εὐαγγελιζόμενος +εἰρήνην +διὰ +Ἰησοῦ +Χριστοῦ· +οὗτός +ἐστιν +πάντων +Κύριος. +ὑμεῖς +οἴδατε +τὸ +ῥῆμα +γενόμενον +καθ’ +ὅλης +τῆς +Ἰουδαίας, +ἀρξάμενος +ἀπὸ +τῆς +Γαλιλαίας +μετὰ +τὸ +βάπτισμα +ὃ +ἐκήρυξεν +Ἰωάνης, +Ἰησοῦν +τὸν +ἀπὸ +Ναζαρέθ, +ὡς +ἔχρισεν +αὐτὸν +ὁ +Θεὸς +Πνεύματι +Ἁγίῳ +καὶ +δυνάμει, +ὃς +διῆλθεν +εὐεργετῶν +καὶ +ἰώμενος +πάντας +τοὺς +καταδυναστευομένους +ὑπὸ +τοῦ +διαβόλου, +ὅτι +ὁ +Θεὸς +ἦν +μετ’ +αὐτοῦ· +καὶ +ἡμεῖς +μάρτυρες +πάντων +ὧν +ἐποίησεν +τε +ἔν +τῇ +χώρᾳ +τῶν +Ἰουδαίων +καὶ +Ἱερουσαλήμ· +ὃν +καὶ +ἀνεῖλαν +κρεμάσαντες +ἐπὶ +ξύλου. +τοῦτον +ὁ +Θεὸς +ἤγειρεν +ἐν +τῇ +τρίτῃ +ἡμέρᾳ +καὶ +ἔδωκεν +αὐτὸν +ἐμφανῆ +γενέσθαι, +οὐ +παντὶ +τῷ +λαῷ, +ἀλλὰ +μάρτυσιν +τοῖς +προκεχειροτονημένοις +ὑπὸ +τοῦ +Θεοῦ, +ἡμῖν, +οἵτινες +συνεφάγομεν +καὶ +συνεπίομεν +αὐτῷ +μετὰ +τὸ +ἀναστῆναι +αὐτὸν +ἐκ +νεκρῶν· +καὶ +παρήγγειλεν +ἡμῖν +κηρύξαι +τῷ +λαῷ +καὶ +διαμαρτύρασθαι +ὅτι +οὗτός +ἐστιν +ὁ +ὡρισμένος +ὑπὸ +τοῦ +Θεοῦ +Κριτὴς +ζώντων +καὶ +νεκρῶν. +τούτῳ +πάντες +οἱ +προφῆται +μαρτυροῦσιν, +ἄφεσιν +ἁμαρτιῶν +λαβεῖν +διὰ +τοῦ +ὀνόματος +αὐτοῦ +πάντα +τὸν +πιστεύοντα +εἰς +αὐτόν. +Ἔτι +λαλοῦντος +τοῦ +Πέτρου +τὰ +ῥήματα +ταῦτα +ἐπέπεσεν +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἐπὶ +πάντας +τοὺς +ἀκούοντας +τὸν +λόγον. +καὶ +ἐξέστησαν +οἱ +ἐκ +περιτομῆς +πιστοὶ +ὅσοι +συνῆλθαν +τῷ +Πέτρῳ, +ὅτι +καὶ +ἐπὶ +τὰ +ἔθνη +ἡ +δωρεὰ +τοῦ +Ἁγίου +Πνεύματος +ἐκκέχυται· +γὰρ +ἤκουον +αὐτῶν +λαλούντων +γλώσσαις +καὶ +μεγαλυνόντων +τὸν +Θεόν. +τότε +ἀπεκρίθη +Πέτρος +Μήτι +τὸ +ὕδωρ +κωλῦσαί +δύναται +τις +τοῦ +μὴ +βαπτισθῆναι +τούτους, +οἵτινες +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἔλαβον +ὡς +καὶ +ἡμεῖς; +δὲ +προσέταξεν +αὐτοὺς +ἐν +τῷ +ὀνόματι +Ἰησοῦ +Χριστοῦ +βαπτισθῆναι. +τότε +ἠρώτησαν +αὐτὸν +ἐπιμεῖναι +ἡμέρας +τινάς. +δὲ +Ἤκουσαν +οἱ +ἀπόστολοι +καὶ +οἱ +ἀδελφοὶ +οἱ +ὄντες +κατὰ +τὴν +Ἰουδαίαν +ὅτι +καὶ +τὰ +ἔθνη +ἐδέξαντο +τὸν +λόγον +τοῦ +Θεοῦ. +δὲ +Ὅτε +ἀνέβη +Πέτρος +εἰς +Ἱερουσαλήμ, +διεκρίνοντο +πρὸς +αὐτὸν +οἱ +ἐκ +περιτομῆς +λέγοντες +ὅτι +Εἰσῆλθες +πρὸς +ἄνδρας +ἀκροβυστίαν +ἔχοντας +καὶ +συνέφαγες +αὐτοῖς. +δὲ +ἀρξάμενος +Πέτρος +ἐξετίθετο +αὐτοῖς +καθεξῆς +λέγων +Ἐγὼ +ἤμην +προσευχόμενος, +ἐν +πόλει +Ἰόππῃ +καὶ +εἶδον +ἐν +ἐκστάσει +ὅραμα, +καταβαῖνον +σκεῦός +τι +ὡς +ὀθόνην +μεγάλην +τέσσαρσιν +ἀρχαῖς +καθιεμένην +ἐκ +τοῦ +οὐρανοῦ, +καὶ +ἦλθεν +ἄχρι +ἐμοῦ· +εἰς +ἣν +ἀτενίσας +κατενόουν, +καὶ +εἶδον +τὰ +τετράποδα +τῆς +γῆς +καὶ +τὰ +θηρία +καὶ +τὰ +ἑρπετὰ +καὶ +τὰ +πετεινὰ +τοῦ +οὐρανοῦ. +δὲ +ἤκουσα +καὶ +φωνῆς +λεγούσης +μοι +Πέτρε, +Ἀναστάς, +θῦσον +καὶ +φάγε. +δέ +εἶπον +Μηδαμῶς, +Κύριε, +ὅτι +κοινὸν +ἢ +ἀκάθαρτον +οὐδέποτε +εἰσῆλθεν +εἰς +τὸ +στόμα +μου. +δὲ +ἀπεκρίθη +ἐκ +δευτέρου +φωνὴ +ἐκ +τοῦ +οὐρανοῦ +Ἃ +ὁ +Θεὸς +ἐκαθάρισεν +σὺ +μὴ +κοίνου. +δὲ +τοῦτο +ἐγένετο +ἐπὶ +τρίς, +καὶ +ἀνεσπάσθη +πάλιν +ἅπαντα +εἰς +τὸν +οὐρανόν. +καὶ +ἰδοὺ +ἐξαυτῆς +τρεῖς +ἄνδρες +ἐπέστησαν +ἐπὶ +τὴν +οἰκίαν +ἐν +ᾗ +ἦμεν, +ἀπεσταλμένοι +ἀπὸ +Καισαρίας +πρός +με. +δὲ +εἶπεν +τὸ +Πνεῦμά +μοι +συνελθεῖν +αὐτοῖς +μηδὲν +διακρίναντα. +δὲ +ἦλθον +σὺν +ἐμοὶ +καὶ +οἱ +ἓξ +ἀδελφοὶ +οὗτοι, +καὶ +εἰσήλθομεν +εἰς +τὸν +οἶκον +τοῦ +ἀνδρός. +δὲ +ἀπήγγειλεν +ἡμῖν +πῶς +εἶδεν +τὸν +ἄγγελον +ἐν +τῷ +οἴκῳ +αὐτοῦ +σταθέντα +καὶ +εἰπόντα· +Ἀπόστειλον +εἰς +Ἰόππην +καὶ +μετάπεμψαι +Σίμωνα +τὸν +ἐπικαλούμενον +Πέτρον, +ὃς +λαλήσει +ῥήματα +πρὸς +σὲ +ἐν +οἷς +σωθήσῃ +σὺ +καὶ +πᾶς +ὁ +οἶκός +σου. +δὲ +ἐν +τῷ +ἄρξασθαί +με +λαλεῖν +ἐπέπεσεν +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἐπ’ +αὐτοὺς +ὥσπερ +καὶ +ἐφ’ +ἡμᾶς +ἐν +ἀρχῇ. +δὲ +ἐμνήσθην +τοῦ +ῥήματος +τοῦ +Κυρίου, +ὡς +ἔλεγεν +μὲν +Ἰωάνης +ἐβάπτισεν +ὕδατι, +δὲ +ὑμεῖς +βαπτισθήσεσθε +ἐν +Πνεύματι +Ἁγίῳ. +οὖν +εἰ +τὴν +ἴσην +δωρεὰν +ἔδωκεν +αὐτοῖς +ὁ +Θεὸς +ὡς +καὶ +ἡμῖν, +πιστεύσασιν +ἐπὶ +τὸν +Κύριον +Ἰησοῦν +Χριστόν, +ἐγὼ +τίς +ἤμην +δυνατὸς +κωλῦσαι +τὸν +Θεόν; +δὲ +ἀκούσαντες +ταῦτα +ἡσύχασαν, +καὶ +ἐδόξασαν +τὸν +Θεὸν +λέγοντες +Ἄρα +καὶ +τοῖς +ἔθνεσιν +ὁ +Θεὸς +τὴν +μετάνοιαν +εἰς +ζωὴν +ἔδωκεν. +μὲν +οὖν +Οἱ +διασπαρέντες +ἀπὸ +τῆς +θλίψεως +τῆς +γενομένης +ἐπὶ +Στεφάνῳ +διῆλθον +ἕως +Φοινίκης +καὶ +Κύπρου +καὶ +Ἀντιοχείας, +μηδενὶ +λαλοῦντες +τὸν +λόγον +εἰ +μὴ +μόνον +Ἰουδαίοις. +δέ +Ἦσαν +τινες +ἐξ +αὐτῶν +ἄνδρες +Κύπριοι +καὶ +Κυρηναῖοι, +οἵτινες +ἐλθόντες +εἰς +Ἀντιόχειαν +ἐλάλουν +καὶ +πρὸς +τοὺς +Ἕλληνας, +εὐαγγελιζόμενοι +τὸν +Κύριον +Ἰησοῦν. +καὶ +ἦν +χεὶρ +Κυρίου +μετ’ +αὐτῶν, +τε +πολύς +ἀριθμὸς +ὁ +πιστεύσας +ἐπέστρεψεν +ἐπὶ +τὸν +Κύριον. +δὲ +Ἠκούσθη +ὁ +λόγος +περὶ +αὐτῶν, +εἰς +τὰ +ὦτα +τῆς +ἐκκλησίας +τῆς +οὔσης +ἐν +Ἱερουσαλὴμ +καὶ +ἐξαπέστειλαν +Βαρνάβαν +ἕως +Ἀντιοχείας· +ὃς +παραγενόμενος +καὶ +ἰδὼν +τὴν +χάριν +τὴν +τοῦ +Θεοῦ +ἐχάρη, +καὶ +παρεκάλει +πάντας +τῇ +προθέσει +τῆς +καρδίας +προσμένειν +τῷ +Κυρίῳ, +ὅτι +ἦν +ἀνὴρ +ἀγαθὸς +καὶ +πλήρης +Πνεύματος +Ἁγίου +καὶ +πίστεως. +καὶ +προσετέθη +ὄχλος +ἱκανὸς +τῷ +Κυρίῳ. +δὲ +ἐξῆλθεν +εἰς +Ταρσὸν +ἀναζητῆσαι +Σαῦλον, +καὶ +εὑρὼν +ἤγαγεν +εἰς +Ἀντιόχειαν. +δὲ +ἐγένετο +αὐτοῖς +καὶ +ἐνιαυτὸν +ὅλον +συναχθῆναι +ἐν +τῇ +ἐκκλησίᾳ +καὶ +διδάξαι +ὄχλον +ἱκανόν, +τε +χρηματίσαι +πρώτως +ἐν +Ἀντιοχείᾳ +τοὺς +μαθητὰς +Χριστιανούς. +δὲ +Ἐν +ταύταις +ταῖς +ἡμέραις +κατῆλθον +ἀπὸ +Ἱεροσολύμων +προφῆται +εἰς +Ἀντιόχειαν· +δὲ +ἀναστὰς +εἷς +ἐξ +αὐτῶν +ὀνόματι +Ἅγαβος +ἐσήμαινεν +διὰ +τοῦ +Πνεύματος +λιμὸν +μεγάλην +μέλλειν +ἔσεσθαι +ἐφ’ +ὅλην +τὴν +οἰκουμένην· +ἥτις +ἐγένετο +ἐπὶ +Κλαυδίου. +δὲ +τῶν +μαθητῶν +καθὼς +εὐπορεῖτό +τις, +ὥρισαν +ἕκαστος +αὐτῶν +εἰς +διακονίαν +πέμψαι +τοῖς +κατοικοῦσιν +ἐν +τῇ +Ἰουδαίᾳ +ἀδελφοῖς· +ὃ +καὶ +ἐποίησαν +ἀποστείλαντες +πρὸς +τοὺς +πρεσβυτέρους +διὰ +χειρὸς +Βαρνάβα +καὶ +Σαύλου. +δὲ +Κατ’ +ἐκεῖνον +τὸν +καιρὸν +ἐπέβαλεν +Ἠρῴδης +ὁ +βασιλεὺς +τὰς +χεῖρας +κακῶσαί +τινας +τῶν +ἀπὸ +τῆς +ἐκκλησίας. +δὲ +ἀνεῖλεν +Ἰάκωβον +τὸν +ἀδελφὸν +Ἰωάνου +μαχαίρῃ. +δὲ +ἰδὼν +ὅτι +ἀρεστόν +ἐστιν +τοῖς +Ἰουδαίοις +προσέθετο +συλλαβεῖν +καὶ +Πέτρον, +δὲ +ἦσαν +ἡμέραι +τῶν +ἀζύμων, +ὃν +καὶ +πιάσας +ἔθετο +εἰς +φυλακήν, +παραδοὺς +τέσσαρσιν +τετραδίοις +στρατιωτῶν +φυλάσσειν +αὐτόν, +βουλόμενος +μετὰ +τὸ +πάσχα +ἀναγαγεῖν +αὐτὸν +τῷ +λαῷ. +οὖν +μὲν +ὁ +Πέτρος +ἐτηρεῖτο +ἐν +τῇ +φυλακῇ· +δὲ +προσευχὴ +ἦν +γινομένη +ἐκτενῶς +ὑπὸ +τῆς +ἐκκλησίας +πρὸς +τὸν +Θεὸν +περὶ +αὐτοῦ. +δὲ +Ὅτε +ἤμελλεν +προαγαγεῖν +αὐτὸν +ὁ +Ἠρῴδης, +τῇ +νυκτὶ +ἐκείνῃ +ὁ +Πέτρος +ἦν +κοιμώμενος +μεταξὺ +δύο +στρατιωτῶν +δεδεμένος +ἁλύσεσιν +δυσίν, +τε +φύλακές +πρὸ +τῆς +θύρας +ἐτήρουν +τὴν +φυλακήν. +καὶ +ἰδοὺ +ἄγγελος +Κυρίου +ἐπέστη, +καὶ +φῶς +ἔλαμψεν +ἐν +τῷ +οἰκήματι· +δὲ +πατάξας +τὴν +πλευρὰν +τοῦ +Πέτρου +ἤγειρεν +αὐτὸν +λέγων +Ἀνάστα +ἐν +τάχει. +καὶ +ἐξέπεσαν +αὐτοῦ +αἱ +ἁλύσεις +ἐκ +τῶν +χειρῶν. +δὲ +εἶπεν +ὁ +ἄγγελος +πρὸς +αὐτόν +Ζῶσαι +καὶ +ὑπόδησαι +τὰ +σανδάλιά +σου. +δὲ +ἐποίησεν +οὕτως. +καὶ +λέγει +αὐτῷ +Περιβαλοῦ +τὸ +ἱμάτιόν +σου +καὶ +ἀκολούθει +μοι. +καὶ +ἐξελθὼν +ἠκολούθει, +καὶ +οὐκ +ᾔδει +ὅτι +ἀληθές +ἐστιν +τὸ +γινόμενον +διὰ +τοῦ +ἀγγέλου, +δὲ +ἐδόκει +ὅραμα +βλέπειν. +δὲ +διελθόντες +πρώτην +καὶ +δευτέραν +φυλακὴν +ἦλθαν +ἐπὶ +τὴν +πύλην +τὴν +σιδηρᾶν +τὴν +φέρουσαν +εἰς +τὴν +πόλιν, +ἥτις +αὐτομάτη +ἠνοίγη +αὐτοῖς, +καὶ +ἐξελθόντες +προῆλθον +ῥύμην +μίαν, +καὶ +εὐθέως +ἀπέστη +ὁ +ἄγγελος +ἀπ’ +αὐτοῦ. +καὶ +ὁ +Πέτρος +ἐν +ἑαυτῷ +γενόμενος +εἶπεν +Νῦν +οἶδα +ἀληθῶς +ὅτι +ἐξαπέστειλεν +ὁ +Κύριος +τὸν +ἄγγελον +αὐτοῦ +καὶ +ἐξείλατό +με +ἐκ +χειρὸς +Ἠρῴδου +καὶ +πάσης +τῆς +προσδοκίας +τοῦ +λαοῦ +τῶν +Ἰουδαίων. +τε +συνιδών +ἦλθεν +ἐπὶ +τὴν +οἰκίαν +τῆς +Μαρίας +τῆς +μητρὸς +Ἰωάνου +τοῦ +ἐπικαλουμένου +Μάρκου, +οὗ +ἱκανοὶ +ἦσαν +συνηθροισμένοι +καὶ +προσευχόμενοι. +δὲ +κρούσαντος +αὐτοῦ +τὴν +θύραν +τοῦ +πυλῶνος +προσῆλθεν +ὑπακοῦσαι +παιδίσκη +ὀνόματι +Ῥόδη, +καὶ +ἐπιγνοῦσα +τὴν +φωνὴν +τοῦ +Πέτρου +ἀπὸ +τῆς +χαρᾶς +οὐκ +ἤνοιξεν +τὸν +πυλῶνα, +δὲ +εἰσδραμοῦσα +ἀπήγγειλεν +ἑστάναι +τὸν +Πέτρον +πρὸ +τοῦ +πυλῶνος. +δὲ +οἱ +πρὸς +αὐτὴν +εἶπαν +Μαίνῃ. +δὲ +ἡ +διϊσχυρίζετο +οὕτως +ἔχειν. +δὲ +οἱ +ἔλεγον +Ὁ +ἄγγελός +ἐστιν +αὐτοῦ. +δὲ +ὁ +Πέτρος +ἐπέμενεν +κρούων· +δὲ +ἀνοίξαντες +εἶδαν +αὐτὸν +καὶ +ἐξέστησαν. +δὲ +κατασείσας +αὐτοῖς +τῇ +χειρὶ +σιγᾶν +διηγήσατο +αὐτοῖς +πῶς +ὁ +Κύριος +αὐτὸν +ἐξήγαγεν +ἐκ +τῆς +φυλακῆς, +τε +εἶπέν +Ἀπαγγείλατε +Ἰακώβῳ +καὶ +τοῖς +ἀδελφοῖς +ταῦτα. +καὶ +ἐξελθὼν +ἐπορεύθη +εἰς +ἕτερον +τόπον. +δὲ +Γενομένης +ἡμέρας +ἦν +τάραχος +οὐκ +ὀλίγος +ἐν +τοῖς +στρατιώταις, +ἄρα +τί +ὁ +Πέτρος +ἐγένετο. +δὲ +Ἠρῴδης +ἐπιζητήσας +αὐτὸν +καὶ +μὴ +εὑρὼν, +ἀνακρίνας +τοὺς +φύλακας +ἐκέλευσεν +ἀπαχθῆναι, +καὶ +κατελθὼν +ἀπὸ +τῆς +Ἰουδαίας +εἰς +Καισάριαν +διέτριβεν. +δὲ +Ἦν +θυμομαχῶν +Τυρίοις +καὶ +Σιδωνίοις· +δὲ +ὁμοθυμαδὸν +παρῆσαν +πρὸς +αὐτόν, +καὶ +πείσαντες +Βλάστον +τὸν +ἐπὶ +τοῦ +κοιτῶνος +τοῦ +βασιλέως +ᾐτοῦντο +εἰρήνην, +διὰ +τὸ +τρέφεσθαι +αὐτῶν +τὴν +χώραν +ἀπὸ +τῆς +βασιλικῆς. +δὲ +τακτῇ +ἡμέρᾳ +ὁ +Ἠρῴδης +ἐνδυσάμενος +ἐσθῆτα +βασιλικὴν +καθίσας +ἐπὶ +τοῦ +βήματος +ἐδημηγόρει +πρὸς +αὐτούς· +δὲ +ὁ +δῆμος +ἐπεφώνει +Θεοῦ +φωνὴ +καὶ +οὐκ +ἀνθρώπου. +δὲ +παραχρῆμα +ἐπάταξεν +αὐτὸν +ἄγγελος +Κυρίου +ἀνθ’ +ὧν +οὐκ +ἔδωκεν +τὴν +δόξαν +τῷ +Θεῷ, +καὶ +γενόμενος +σκωληκόβρωτος +ἐξέψυξεν. +δὲ +Ὁ +λόγος +τοῦ +Κυρίου +ηὔξανεν +καὶ +ἐπληθύνετο. +δὲ +Βαρνάβας +καὶ +Σαῦλος +ὑπέστρεψαν, +ἐξ +Ἱερουσαλὴμ, +πληρώσαντες +τὴν +διακονίαν, +συνπαραλαβόντες +Ἰωάνην +τὸν +ἐπικληθέντα +Μάρκον. +δὲ +Ἦσαν +ἐν +Ἀντιοχείᾳ +κατὰ +τὴν +οὖσαν +ἐκκλησίαν +προφῆται +καὶ +διδάσκαλοι +τε +ὅ +Βαρνάβας +καὶ +Συμεὼν +ὁ +καλούμενος +Νίγερ, +καὶ +Λούκιος +ὁ +Κυρηναῖος, +τε +Μαναήν +Ἠρῴδου +τοῦ +τετραάρχου +σύντροφος +καὶ +Σαῦλος. +δὲ +Λειτουργούντων +αὐτῶν +τῷ +Κυρίῳ +καὶ +νηστευόντων +εἶπεν +τὸ +Πνεῦμα +τὸ +Ἅγιον +δή +Ἀφορίσατε +μοι +τὸν +Βαρνάβαν +καὶ +Σαῦλον +εἰς +τὸ +ἔργον +ὃ +προσκέκλημαι +αὐτούς· +τότε +νηστεύσαντες +καὶ +προσευξάμενοι +καὶ +ἐπιθέντες +τὰς +χεῖρας +αὐτοῖς +ἀπέλυσαν. +μὲν +οὖν +Αὐτοὶ +ἐκπεμφθέντες +ὑπὸ +τοῦ +Ἁγίου +Πνεύματος +κατῆλθον +εἰς +Σελεύκιαν, +τε +ἐκεῖθέν +ἀπέπλευσαν +εἰς +Κύπρον, +καὶ +γενόμενοι +ἐν +Σαλαμῖνι +κατήγγελλον +τὸν +λόγον +τοῦ +Θεοῦ +ἐν +ταῖς +συναγωγαῖς +τῶν +Ἰουδαίων· +δὲ +εἶχον +καὶ +Ἰωάνην +ὑπηρέτην. +δὲ +διελθόντες +ὅλην +τὴν +νῆσον +ἄχρι +Πάφου +εὗρον +ἄνδρα +τινὰ +μάγον +ψευδοπροφήτην +Ἰουδαῖον +ᾧ +ὄνομα +Βαριησοῦς, +ὃς +ἦν +σὺν +τῷ +ἀνθυπάτῳ +Σεργίῳ +Παύλῳ, +ἀνδρὶ +συνετῷ. +οὗτος +προσκαλεσάμενος +Βαρνάβαν +καὶ +Σαῦλον +ἐπεζήτησεν +ἀκοῦσαι +τὸν +λόγον +τοῦ +Θεοῦ· +δὲ +ἀνθίστατο +αὐτοῖς +Ἐλύμας +ὁ +μάγος, +γὰρ +οὕτως +μεθερμηνεύεται +τὸ +ὄνομα +αὐτοῦ, +ζητῶν +διαστρέψαι +τὸν +ἀνθύπατον +ἀπὸ +τῆς +πίστεως. +δέ, +Σαῦλος +ὁ +καὶ +Παῦλος, +πλησθεὶς +Πνεύματος +Ἁγίου +ἀτενίσας +εἰς +αὐτὸν +εἶπεν +Ὦ +πλήρης +παντὸς +δόλου +καὶ +πάσης +ῥᾳδιουργίας, +υἱὲ +διαβόλου, +ἐχθρὲ +πάσης +δικαιοσύνης, +οὐ +παύσῃ +διαστρέφων +τὰς +ὁδοὺς +τοῦ +Κυρίου +τὰς +εὐθείας; +καὶ +νῦν +ἰδοὺ +χεὶρ +Κυρίου +ἐπὶ +σέ, +καὶ +ἔσῃ +τυφλὸς +μὴ +βλέπων +τὸν +ἥλιον +ἄχρι +καιροῦ. +δὲ +παραχρῆμα +ἔπεσεν +ἐπ’ +αὐτὸν +ἀχλὺς +καὶ +σκότος, +καὶ +περιάγων +ἐζήτει +χειραγωγούς. +τότε +ὁ +ἀνθύπατος +ἰδὼν +τὸ +γεγονὸς +ἐπίστευσεν, +ἐκπλησσόμενος +ἐπὶ +τῇ +διδαχῇ +τοῦ +Κυρίου. +δὲ +Ἀναχθέντες +ἀπὸ +τῆς +Πάφου +οἱ +περὶ +Παῦλον +ἦλθον +εἰς +Πέργην +τῆς +Παμφυλίας· +δὲ +Ἰωάνης +ἀποχωρήσας +ἀπ’ +αὐτῶν +ὑπέστρεψεν +εἰς +Ἱεροσόλυμα. +δὲ +Αὐτοὶ +διελθόντες +ἀπὸ +τῆς +Πέργης +παρεγένοντο +εἰς +Ἀντιόχειαν +τὴν +Πισιδίαν, +καὶ +ἐλθόντες +εἰς +τὴν +συναγωγὴν +τῇ +ἡμέρᾳ +τῶν +σαββάτων +ἐκάθισαν. +δὲ +μετὰ +τὴν +ἀνάγνωσιν +τοῦ +νόμου +καὶ +τῶν +προφητῶν +ἀπέστειλαν +οἱ +ἀρχισυνάγωγοι +πρὸς +αὐτοὺς +λέγοντες +Ἄνδρες +ἀδελφοί, +εἴ +ἐστιν +ἐν +ὑμῖν +τίς +λόγος +παρακλήσεως +πρὸς +τὸν +λαόν, +λέγετε. +δὲ +Παῦλος +ἀναστὰς +καὶ +κατασείσας +τῇ +χειρὶ +εἶπεν +Ἄνδρες +Ἰσραηλεῖται +καὶ +οἱ +φοβούμενοι +τὸν +Θεόν, +ἀκούσατε. +ὁ +Θεὸς +τοῦ +λαοῦ +τούτου +Ἰσραὴλ +ἐξελέξατο +τοὺς +πατέρας +ἡμῶν, +καὶ +τὸν +λαὸν +ὕψωσεν +ἐν +τῇ +παροικίᾳ +ἐν +γῇ +Αἰγύπτου, +καὶ +μετὰ +βραχίονος +ὑψηλοῦ +ἐξήγαγεν +αὐτοὺς +ἐξ +αὐτῆς, +καί +ὡς +τεσσερακονταετῆ +χρόνον +ἐτροποφόρησεν +αὐτοὺς +ἐν +τῇ +ἐρήμῳ, +καὶ +καθελὼν +ἔθνη +ἑπτὰ +ἐν +γῇ +Χανάαν +κατεκληρονόμησεν +τὴν +γῆν +αὐτῶν +ὡς +ἔτεσιν +τετρακοσίοις +καὶ +πεντήκοντα. +καὶ +μετὰ +ταῦτα +ἔδωκεν +κριτὰς +ἕως +Σαμουὴλ +προφήτου. +κἀκεῖθεν +ᾐτήσαντο +βασιλέα, +καὶ +ἔδωκεν +αὐτοῖς +ὁ +Θεὸς +τὸν +Σαοὺλ +υἱὸν +Κείς, +ἄνδρα +ἐκ +φυλῆς +Βενιαμείν, +ἔτη +τεσσεράκοντα· +καὶ +μεταστήσας +αὐτὸν +ἤγειρεν +τὸν +Δαυεὶδ +αὐτοῖς +εἰς +βασιλέα, +ᾧ +καὶ +εἶπεν +μαρτυρήσας +Εὗρον +Δαυεὶδ +τὸν +τοῦ +Ἰεσσαί, +ἄνδρα +κατὰ +τὴν +καρδίαν +μου, +ὃς +ποιήσει +πάντα +τὰ +θελήματά +μου. +ὁ +Θεὸς +ἀπὸ +τούτου +τοῦ +σπέρματος +κατ’ +ἐπαγγελίαν +ἤγαγεν +τῷ +Ἰσραὴλ +Σωτῆρα +Ἰησοῦν, +προκηρύξαντος +Ἰωάνου +πρὸ +προσώπου +τῆς +εἰσόδου +αὐτοῦ +βάπτισμα +μετανοίας +παντὶ +τῷ +λαῷ +Ἰσραήλ. +δὲ +ὡς +ἐπλήρου +Ἰωάνης +τὸν +δρόμον, +ἔλεγεν +Τί +ἐμὲ +εἶναι, +ὑπονοεῖτε +οὐκ +εἰμὶ +ἐγώ· +ἀλλ’ +ἰδοὺ +ἔρχεται +μετ’ +ἐμὲ +οὗ +οὐκ +εἰμὶ +ἄξιος +τὸ +ὑπόδημα +τῶν +ποδῶν +λῦσαι. +Ἄνδρες +ἀδελφοί, +υἱοὶ +γένους +Ἀβραὰμ +καὶ +οἱ +ἐν +ὑμῖν +φοβούμενοι +τὸν +Θεόν, +ἡμῖν +ὁ +λόγος +τῆς +σωτηρίας +ταύτης +ἐξαπεστάλη. +γὰρ +οἱ +κατοικοῦντες +ἐν +Ἱερουσαλὴμ +καὶ +οἱ +ἄρχοντες +αὐτῶν +τοῦτον +ἀγνοήσαντες +καὶ +τὰς +φωνὰς +τῶν +προφητῶν +τὰς +κατὰ +πᾶν +σάββατον +ἀναγινωσκομένας +κρίναντες +ἐπλήρωσαν, +καὶ +μηδεμίαν +αἰτίαν +θανάτου +εὑρόντες +ᾐτήσαντο +Πειλᾶτον +ἀναιρεθῆναι +αὐτόν· +δὲ +ὡς +ἐτέλεσαν +πάντα +τὰ +περὶ +αὐτοῦ +γεγραμμένα, +καθελόντες +ἀπὸ +τοῦ +ξύλου +ἔθηκαν +εἰς +μνημεῖον. +δὲ +ὁ +Θεὸς +ἤγειρεν +αὐτὸν +ἐκ +νεκρῶν· +ὃς +ὤφθη +ἐπὶ +ἡμέρας +πλείους +τοῖς +συναναβᾶσιν +αὐτῷ +ἀπὸ +τῆς +Γαλιλαίας +εἰς +Ἰερουσαλήμ, +οἵτινες +νῦν +εἰσιν +μάρτυρες +αὐτοῦ +πρὸς +τὸν +λαόν. +καὶ +ἡμεῖς +ὑμᾶς +εὐαγγελιζόμεθα +τὴν +πρὸς +τοὺς +πατέρας +γενομένην, +ἐπαγγελίαν +ὅτι +ταύτην +ὁ +Θεὸς +ἐκπεπλήρωκεν +τοῖς +τέκνοις +ἡμῶν +ἀναστήσας +Ἰησοῦν, +ὡς +καὶ +ἐν +τῷ +ψαλμῷ +τῷ +δευτέρῳ +γέγραπται +Υἱός +μου +εἶ +σύ, +ἐγὼ +σήμερον +γεγέννηκά +σε. +δὲ +ὅτι +ἀνέστησεν +αὐτὸν +ἐκ +νεκρῶν +μηκέτι +μέλλοντα +ὑποστρέφειν +εἰς +διαφθοράν, +οὕτως +εἴρηκεν +ὅτι +Δώσω +ὑμῖν +τὰ +ὅσια +Δαυεὶδ +τὰ +πιστά. +διότι +καὶ +ἐν +ἑτέρῳ +λέγει +Οὐ +δώσεις +τὸν +Ὅσιόν +σου +ἰδεῖν +διαφθοράν. +γὰρ +μὲν +Δαυεὶδ +ἰδίᾳ +γενεᾷ +ὑπηρετήσας +τῇ +τοῦ +Θεοῦ +βουλῇ +ἐκοιμήθη +καὶ +προσετέθη +πρὸς +τοὺς +πατέρας +αὐτοῦ +καὶ +εἶδεν +διαφθοράν· +δὲ +ὃν +ὁ +Θεὸς +ἤγειρεν, +οὐκ +εἶδεν +διαφθοράν. +οὖν +γνωστὸν +ἔστω +ὑμῖν, +ἄνδρες +ἀδελφοί, +ὅτι +διὰ +τούτου +ὑμῖν +ἄφεσις +ἁμαρτιῶν +καταγγέλλεται, +καὶ +ἀπὸ +πάντων +ὧν +οὐκ +ἠδυνήθητε +ἐν +νόμῳ +Μωϋσέως +δικαιωθῆναι, +ἐν +τούτῳ +πᾶς +ὁ +πιστεύων +δικαιοῦται. +οὖν +βλέπετε +μὴ +ἐπέλθῃ +τὸ +εἰρημένον +ἐν +τοῖς +προφήταις +Ἴδετε, +οἱ +καταφρονηταί, +καὶ +θαυμάσατε +καὶ +ἀφανίσθητε, +ὅτι +ἔργον +ἐργάζομαι +ἐγὼ +ἐν +ταῖς +ἡμέραις +ὑμῶν, +ἔργον +ὃ +οὐ +μὴ +πιστεύσητε +ἐάν +τις +ἐκδιηγῆται +ὑμῖν. +δὲ +Ἐξιόντων +αὐτῶν +παρεκάλουν +εἰς +τὸ +μεταξὺ +σάββατον +λαληθῆναι +αὐτοῖς +τὰ +ῥήματα +ταῦτα. +δὲ +λυθείσης +τῆς +συναγωγῆς +ἠκολούθησαν +πολλοὶ +τῶν +Ἰουδαίων +καὶ +τῶν +σεβομένων +προσηλύτων +τῷ +Παύλῳ +καὶ +τῷ +Βαρνάβᾳ, +οἵτινες +προσλαλοῦντες +αὐτοῖς +ἔπειθον +αὐτοὺς +προσμένειν +τῇ +χάριτι +τοῦ +Θεοῦ. +δὲ +Τῷ +ἐρχομένῳ +σαββάτῳ +σχεδὸν +πᾶσα +ἡ +πόλις +συνήχθη +ἀκοῦσαι +τὸν +λόγον +τοῦ +Θεοῦ. +δὲ +οἱ +Ἰουδαῖοι +ἰδόντες +τοὺς +ὄχλους +ἐπλήσθησαν +ζήλου, +καὶ +ἀντέλεγον +τοῖς +ὑπὸ +Παύλου +λαλουμένοις +βλασφημοῦντες. +τε +παρρησιασάμενοί +ὁ +Παῦλος +καὶ +ὁ +Βαρνάβας +εἶπαν +ἦν +ἀναγκαῖον +Ὑμῖν +πρῶτον +λαληθῆναι +τὸν +λόγον +τοῦ +Θεοῦ· +ἐπειδὴ +ἀπωθεῖσθε +αὐτὸν +καὶ +οὐκ +κρίνετε +ἑαυτοὺς +ἀξίους +τῆς +αἰωνίου +ζωῆς, +ἰδοὺ +στρεφόμεθα +εἰς +τὰ +ἔθνη. +γὰρ +οὕτως +ἐντέταλται +ἡμῖν +ὁ +Κύριος +Τέθεικά +σε +εἰς +φῶς +ἐθνῶν +τοῦ +εἶναί +σε +εἰς +σωτηρίαν +ἕως +ἐσχάτου +τῆς +γῆς. +δὲ +ἀκούοντα +τὰ +ἔθνη +ἔχαιρον +καὶ +ἐδόξαζον +τὸν +λόγον +τοῦ +Κυρίου, +καὶ +ἐπίστευσαν +ὅσοι +ἦσαν +τεταγμένοι +εἰς +ζωὴν +αἰώνιον· +δὲ +διεφέρετο +ὁ +λόγος +τοῦ +Κυρίου +δι’ +ὅλης +τῆς +χώρας. +δὲ +οἱ +Ἰουδαῖοι +παρώτρυναν +τὰς +σεβομένας +γυναῖκας +τὰς +εὐσχήμονας +καὶ +τοὺς +πρώτους +τῆς +πόλεως, +καὶ +ἐπήγειραν +διωγμὸν +ἐπὶ +τὸν +Παῦλον +καὶ +Βαρνάβαν, +καὶ +ἐξέβαλον +αὐτοὺς +ἀπὸ +τῶν +ὁρίων +αὐτῶν. +δὲ +οἱ +ἐκτιναξάμενοι +τὸν +κονιορτὸν +τῶν +ποδῶν +ἐπ’ +αὐτοὺς +ἦλθον +εἰς +Ἰκόνιον, +τε +οἵ +μαθηταὶ +ἐπληροῦντο +χαρᾶς +καὶ +Πνεύματος +Ἁγίου. +δὲ +Ἐγένετο +ἐν +Ἰκονίῳ +κατὰ +τὸ +αὐτὸ +εἰσελθεῖν +αὐτοὺς +εἰς +τὴν +συναγωγὴν +τῶν +Ἰουδαίων +καὶ +λαλῆσαι +οὕτως +ὥστε +πιστεῦσαι +τε +Ἰουδαίων +καὶ +Ἑλλήνων +πολὺ +πλῆθος. +δὲ +οἱ +ἀπειθήσαντες +Ἰουδαῖοι +ἐπήγειραν +καὶ +ἐκάκωσαν +τὰς +ψυχὰς +τῶν +ἐθνῶν +κατὰ +τῶν +ἀδελφῶν. +οὖν +μὲν +ἱκανὸν +χρόνον +διέτριψαν +παρρησιαζόμενοι +ἐπὶ +τῷ +Κυρίῳ +τῷ +μαρτυροῦντι +ἐπὶ +τῷ +λόγῳ +τῆς +χάριτος +αὐτοῦ, +διδόντι +σημεῖα +καὶ +τέρατα +γίνεσθαι +διὰ +τῶν +χειρῶν +αὐτῶν. +δὲ +ἐσχίσθη +τὸ +πλῆθος +τῆς +πόλεως, +καὶ +μὲν +οἱ +ἦσαν +σὺν +τοῖς +Ἰουδαίοις, +δὲ +οἱ +σὺν +τοῖς +ἀποστόλοις. +δὲ +ὡς +ἐγένετο +ὁρμὴ +τῶν +τε +ἐθνῶν +καὶ +Ἰουδαίων +σὺν +τοῖς +ἄρχουσιν +αὐτῶν +ὑβρίσαι +καὶ +λιθοβολῆσαι +αὐτούς, +συνιδόντες +κατέφυγον +εἰς +τὰς +πόλεις +τῆς +Λυκαονίας +Λύστραν +καὶ +Δέρβην +καὶ +τὴν +περίχωρον· +κἀκεῖ +εὐαγγελιζόμενοι +ἦσαν. +Καί +τις +ἀνὴρ +ἀδύνατος +τοῖς +ποσὶν +ἐν +Λύστροις +ἐκάθητο, +χωλὸς +ἐκ +κοιλίας +μητρὸς +αὐτοῦ +ὃς +οὐδέποτε +περιεπάτησεν. +οὗτος +ἤκουεν +τοῦ +Παύλου +λαλοῦντος· +ὃς +ἀτενίσας +αὐτῷ +καὶ +ἰδὼν +ὅτι +ἔχει +πίστιν +τοῦ +σωθῆναι, +εἶπεν +μεγάλῃ +φωνῇ +Ἀνάστηθι +ἐπὶ +τοὺς +πόδας +σου +ὀρθός. +καὶ +ἥλατο +καὶ +περιεπάτει. +τε +οἵ +ὄχλοι +ἰδόντες +ὃ +ἐποίησεν +Παῦλος +ἐπῆραν +τὴν +φωνὴν +αὐτῶν +Λυκαονιστὶ +λέγοντες +Οἱ +θεοὶ +ὁμοιωθέντες +ἀνθρώποις +κατέβησαν +πρὸς +ἡμᾶς, +τε +ἐκάλουν +τὸν +Βαρνάβαν +Δία, +δὲ +τὸν +Παῦλον +Ἑρμῆν, +ἐπειδὴ +αὐτὸς +ἦν +ὁ +ἡγούμενος +τοῦ +λόγου. +τε +ὅ +ἱερεὺς +τοῦ +Διὸς +τοῦ +ὄντος +πρὸ +τῆς +πόλεως, +ταύρους +καὶ +στέμματα +ἐπὶ +τοὺς +πυλῶνας +ἐνέγκας, +σὺν +τοῖς +ὄχλοις +ἤθελεν +θύειν. +δὲ +ἀκούσαντες +οἱ +ἀπόστολοι +Βαρνάβας +καὶ +Παῦλος, +διαρρήξαντες +τὰ +ἱμάτια +ἑαυτῶν +ἐξεπήδησαν +εἰς +τὸν +ὄχλον, +κράζοντες +καὶ +λέγοντες +Ἄνδρες, +τί +ταῦτα +ποιεῖτε; +καὶ +ἡμεῖς +ὁμοιοπαθεῖς +ὑμῖν +ἄνθρωποι, +ἐσμεν +εὐαγγελιζόμενοι +ὑμᾶς +ἀπὸ +τούτων +τῶν +ματαίων +ἐπιστρέφειν +ἐπὶ +θεὸν +ζῶντα, +ὃς +ἐποίησεν +τὸν +οὐρανὸν +καὶ +τὴν +γῆν +καὶ +τὴν +θάλασσαν +καὶ +πάντα +τὰ +ἐν +αὐτοῖς· +ὃς +ἐν +ταῖς +παρῳχημέναις +γενεαῖς +εἴασεν +πάντα +τὰ +ἔθνη +πορεύεσθαι +ταῖς +ὁδοῖς +αὐτῶν· +καίτοι +οὐκ +ἀμάρτυρον +αὑτὸν +ἀφῆκεν +ἀγαθουργῶν, +οὐρανόθεν +ὑμῖν +ὑετοὺς +διδοὺς +καὶ +καιροὺς +καρποφόρους, +ἐμπιπλῶν +τροφῆς +καὶ +εὐφροσύνης +τὰς +καρδίας +ὑμῶν. +καὶ +ταῦτα +λέγοντες +μόλις +κατέπαυσαν +τοὺς +ὄχλους +τοῦ +μὴ +θύειν +αὐτοῖς. +δὲ +Ἐπῆλθαν +ἀπὸ +Ἀντιοχείας +καὶ +Ἰκονίου +Ἰουδαῖοι, +καὶ +πείσαντες +τοὺς +ὄχλους +καὶ +λιθάσαντες +τὸν +Παῦλον +ἔσυρον +ἔξω +τῆς +πόλεως, +νομίζοντες +αὐτὸν +τεθνηκέναι. +δὲ +κυκλωσάντων +τῶν +μαθητῶν +αὐτὸν +ἀναστὰς +εἰσῆλθεν +εἰς +τὴν +πόλιν. +Καὶ +τῇ +ἐπαύριον +ἐξῆλθεν +σὺν +τῷ +Βαρνάβᾳ +εἰς +Δέρβην. +τε +εὐαγγελιζόμενοί +τὴν +πόλιν +ἐκείνην +καὶ +μαθητεύσαντες +ἱκανοὺς +ὑπέστρεψαν +εἰς +τὴν +Λύστραν +καὶ +εἰς +Ἰκόνιον +καὶ +εἰς +Ἀντιόχειαν, +ἐπιστηρίζοντες +τὰς +ψυχὰς +τῶν +μαθητῶν, +παρακαλοῦντες +ἐμμένειν +τῇ +πίστει, +καὶ +ὅτι +δεῖ +διὰ +πολλῶν +θλίψεων +ἡμᾶς +εἰσελθεῖν +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ. +δὲ +χειροτονήσαντες +αὐτοῖς +κατ’ +ἐκκλησίαν +πρεσβυτέρους, +προσευξάμενοι +μετὰ +νηστειῶν +παρέθεντο +αὐτοὺς +τῷ +Κυρίῳ +εἰς +ὃν +πεπιστεύκεισαν. +καὶ +διελθόντες +τὴν +Πισιδίαν +ἦλθον +εἰς +τὴν +Παμφυλίαν, +καὶ +λαλήσαντες +ἐν +Πέργῃ +τὸν +λόγον +κατέβησαν +εἰς +Ἀτταλίαν, +κἀκεῖθεν +ἀπέπλευσαν +εἰς +Ἀντιόχειαν, +ὅθεν +ἦσαν +παραδεδομένοι +τῇ +χάριτι +τοῦ +Θεοῦ +εἰς +τὸ +ἔργον +ὃ +ἐπλήρωσαν. +δὲ +Παραγενόμενοι +καὶ +συναγαγόντες +τὴν +ἐκκλησίαν, +ἀνήγγελλον +ὅσα +ἐποίησεν +ὁ +Θεὸς +μετ’ +αὐτῶν, +καὶ +ὅτι +ἤνοιξεν +τοῖς +ἔθνεσιν +θύραν +πίστεως. +δὲ +διέτριβον +χρόνον +οὐκ +ὀλίγον +σὺν +τοῖς +μαθηταῖς. +Καί +τινες +κατελθόντες +ἀπὸ +τῆς +Ἰουδαίας +ἐδίδασκον +τοὺς +ἀδελφοὺς +ὅτι +Ἐὰν +μὴ +περιτμηθῆτε +τῷ +ἔθει +τῷ +Μωϋσέως, +οὐ +δύνασθε +σωθῆναι. +δὲ +γενομένης +στάσεως +καὶ +ζητήσεως +οὐκ +ὀλίγης +τῷ +Παύλῳ +καὶ +τῷ +Βαρνάβᾳ +πρὸς +αὐτοὺς, +ἔταξαν +ἀναβαίνειν +Παῦλον +καὶ +Βαρνάβαν +καί +τινας +ἄλλους +ἐξ +αὐτῶν +πρὸς +τοὺς +ἀποστόλους +καὶ +πρεσβυτέρους +εἰς +Ἱερουσαλὴμ +περὶ +τοῦ +ζητήματος +τούτου. +μὲν +οὖν +Οἱ +προπεμφθέντες +ὑπὸ +τῆς +ἐκκλησίας +διήρχοντο +τήν +τε +Φοινίκην +καὶ +Σαμάριαν +ἐκδιηγούμενοι +τὴν +ἐπιστροφὴν +τῶν +ἐθνῶν, +καὶ +ἐποίουν +χαρὰν +μεγάλην +πᾶσιν +τοῖς +ἀδελφοῖς. +δὲ +παραγενόμενοι +εἰς +Ἱεροσόλυμα +παρεδέχθησαν +ἀπὸ +τῆς +ἐκκλησίας +καὶ +τῶν +ἀποστόλων +καὶ +τῶν +πρεσβυτέρων, +τε +ἀνήγγειλάν +ὅσα +ὁ +Θεὸς +ἐποίησεν +μετ’ +αὐτῶν. +δέ +Ἐξανέστησαν +τινες +τῶν +ἀπὸ +τῆς +αἱρέσεως +τῶν +Φαρισαίων +πεπιστευκότες, +λέγοντες +ὅτι +δεῖ +περιτέμνειν +αὐτοὺς +τε +παραγγέλλειν +τηρεῖν +τὸν +νόμον +Μωϋσέως. +τε +Συνήχθησάν +οἱ +ἀπόστολοι +καὶ +οἱ +πρεσβύτεροι +ἰδεῖν +περὶ +τοῦ +λόγου +τούτου. +δὲ +Πολλῆς +ζητήσεως +γενομένης +ἀναστὰς +Πέτρος +εἶπεν +πρὸς +αὐτούς +Ἄνδρες +ἀδελφοί, +ὑμεῖς +ἐπίστασθε +ὅτι +ἀφ’ +ἡμερῶν +ἀρχαίων +ἐν +ὑμῖν +ἐξελέξατο +ὁ +Θεὸς +διὰ +τοῦ +στόματός +μου +ἀκοῦσαι +τὰ +ἔθνη +τὸν +λόγον +τοῦ +εὐαγγελίου +καὶ +πιστεῦσαι. +καὶ +ὁ +καρδιογνώστης +Θεὸς +ἐμαρτύρησεν +αὐτοῖς +δοὺς +τὸ +Πνεῦμα +τὸ +Ἅγιον +καθὼς +καὶ +ἡμῖν, +καὶ +οὐθὲν +διέκρινεν +μεταξὺ +τε +ἡμῶν +καὶ +αὐτῶν, +τῇ +πίστει +καθαρίσας +τὰς +καρδίας +αὐτῶν. +οὖν +νῦν +τί +πειράζετε +τὸν +Θεόν, +ἐπιθεῖναι +ζυγὸν +ἐπὶ +τὸν +τράχηλον +τῶν +μαθητῶν, +ὃν +βαστάσαι; +οὔτε +οἱ +πατέρες +ἡμῶν +οὔτε +ἡμεῖς +ἰσχύσαμεν +ἀλλὰ +πιστεύομεν +διὰ +τῆς +χάριτος +τοῦ +Κυρίου +Ἰησοῦ +σωθῆναι +καθ’ +ὃν +τρόπον +κἀκεῖνοι. +δὲ +Ἐσίγησεν +πᾶν +τὸ +πλῆθος, +καὶ +ἤκουον +Βαρνάβα +καὶ +Παύλου +ἐξηγουμένων +σημεῖα +καὶ +τέρατα +ὅσα +ἐποίησεν +ὁ +Θεὸς +ἐν +τοῖς +ἔθνεσιν +δι’ +αὐτῶν. +δὲ +Μετὰ +τὸ +σιγῆσαι +αὐτοὺς +ἀπεκρίθη +Ἰάκωβος +λέγων +Ἄνδρες +ἀδελφοί, +ἀκούσατέ +μου. +Συμεὼν +ἐξηγήσατο +καθὼς +πρῶτον +ὁ +Θεὸς +ἐπεσκέψατο +λαβεῖν +ἐξ +ἐθνῶν +λαὸν +τῷ +ὀνόματι +αὐτοῦ. +καὶ +τούτῳ +συμφωνοῦσιν +οἱ +λόγοι +τῶν +προφητῶν, +καθὼς +γέγραπται +Μετὰ +ταῦτα +ἀναστρέψω +καὶ +ἀνοικοδομήσω +τὴν +σκηνὴν +Δαυεὶδ +τὴν +πεπτωκυῖαν, +καὶ +τὰ +κατεστραμμένα +αὐτῆς +ἀνοικοδομήσω +καὶ +ἀνορθώσω +αὐτήν, +ὅπως +ἂν +ἐκζητήσωσιν +οἱ +κατάλοιποι +τῶν +ἀνθρώπων +τὸν +Κύριον, +καὶ +πάντα +τὰ +ἔθνη +ἐφ’ +οὓς +ἐπικέκληται +τὸ +ὄνομά +μου +ἐπ’ +αὐτούς, +λέγει +Κύριος +ποιῶν +ταῦτα +γνωστὰ +ἀπ’ +αἰῶνος. +διὸ +ἐγὼ +κρίνω +μὴ +παρενοχλεῖν +τοῖς +ἀπὸ +τῶν +ἐθνῶν +ἐπιστρέφουσιν +ἐπὶ +τὸν +Θεόν, +ἀλλὰ +ἐπιστεῖλαι +αὐτοῖς +τοῦ +ἀπέχεσθαι +τῶν +ἀλισγημάτων +τῶν +εἰδώλων +καὶ +τῆς +πορνείας +καὶ +πνικτοῦ +καὶ +τοῦ +αἵματος. +γὰρ +Μωϋσῆς +ἐκ +γενεῶν +ἀρχαίων +κατὰ +πόλιν +τοὺς +κηρύσσοντας +αὐτὸν +ἔχει +ἐν +ταῖς +συναγωγαῖς +κατὰ +πᾶν +σάββατον +ἀναγινωσκόμενος. +Τότε +ἔδοξε +τοῖς +ἀποστόλοις +καὶ +τοῖς +πρεσβυτέροις +σὺν +ὅλῃ +τῇ +ἐκκλησίᾳ +ἐκλεξαμένους +ἄνδρας +ἐξ +αὐτῶν +πέμψαι +εἰς +Ἀντιόχειαν +σὺν +τῷ +Παύλῳ +καὶ +Βαρνάβᾳ, +Ἰούδαν +τὸν +καλούμενον +Βαρσαββᾶν +καὶ +Σιλᾶν, +ἄνδρας +ἡγουμένους +ἐν +τοῖς +ἀδελφοῖς, +γράψαντες +διὰ +χειρὸς +αὐτῶν +Οἱ +ἀπόστολοι +καὶ +οἱ +πρεσβύτεροι +ἀδελφοὶ +τοῖς +κατὰ +τὴν +Ἀντιόχειαν +καὶ +Συρίαν +καὶ +Κιλικίαν +ἀδελφοῖς +τοῖς +ἐξ +ἐθνῶν +χαίρειν. +Ἐπειδὴ +ἠκούσαμεν +ὅτι +τινὲς +ἐξ +ἡμῶν +ἐτάραξαν +ὑμᾶς +λόγοις +ἀνασκευάζοντες +τὰς +ψυχὰς +ὑμῶν, +οἷς +οὐ +διεστειλάμεθα, +ἔδοξεν +ἡμῖν +γενομένοις +ὁμοθυμαδὸν, +ἐκλεξαμένους +ἄνδρας +πέμψαι +πρὸς +ὑμᾶς +σὺν +τοῖς +ἀγαπητοῖς +ἡμῶν +Βαρνάβᾳ +καὶ +Παύλῳ, +ἀνθρώποις +παραδεδωκόσι +τὰς +ψυχὰς +αὐτῶν +ὑπὲρ +τοῦ +ὀνόματος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ. +οὖν +ἀπεστάλκαμεν +Ἰούδαν +καὶ +Σιλᾶν, +καὶ +αὐτοὺς +διὰ +λόγου +ἀπαγγέλλοντας +τὰ +αὐτά. +γὰρ +ἔδοξεν +τῷ +Πνεύματι +τῷ +Ἁγίῳ +καὶ +ἡμῖν +μηδὲν +πλέον +βάρος +ἐπιτίθεσθαι +ὑμῖν +πλὴν +τούτων +τῶν +ἐπάναγκες, +ἀπέχεσθαι +εἰδωλοθύτων +καὶ +αἵματος +καὶ +πνικτῶν +καὶ +πορνείας· +ἐξ +ὧν +διατηροῦντες +ἑαυτοὺς +εὖ +πράξετε. +Ἔρρωσθε. +μὲν +οὖν +Οἱ +ἀπολυθέντες +κατῆλθον +εἰς +Ἀντιόχειαν, +καὶ +συναγαγόντες +τὸ +πλῆθος +ἐπέδωκαν +τὴν +ἐπιστολήν. +δὲ +ἀναγνόντες +ἐχάρησαν +ἐπὶ +τῇ +παρακλήσει. +τε +Ἰούδας +καὶ +Σιλᾶς, +καὶ +αὐτοὶ +προφῆται +ὄντες, +διὰ +λόγου +πολλοῦ +παρεκάλεσαν +τοὺς +ἀδελφοὺς +καὶ +ἐπεστήριξαν· +δὲ +ποιήσαντες +χρόνον +ἀπελύθησαν +μετ’ +εἰρήνης +ἀπὸ +τῶν +ἀδελφῶν +πρὸς +τοὺς +ἀποστείλαντας +αὐτούς. +δὲ +Παῦλος +καὶ +Βαρνάβας +διέτριβον +ἐν +Ἀντιοχείᾳ, +διδάσκοντες +καὶ +εὐαγγελιζόμενοι +μετὰ +καὶ +ἑτέρων +πολλῶν +τὸν +λόγον +τοῦ +Κυρίου. +δέ +Μετὰ +τινας +ἡμέρας +εἶπεν +πρὸς +Βαρνάβαν +Παῦλος +δὴ +Ἐπιστρέψαντες +ἐπισκεψώμεθα +τοὺς +ἀδελφοὺς +κατὰ +πόλιν +πᾶσαν +ἐν +αἷς +κατηγγείλαμεν +τὸν +λόγον +τοῦ +Κυρίου, +πῶς +ἔχουσιν. +δὲ +Βαρνάβας +ἐβούλετο +συνπαραλαβεῖν +καὶ +τὸν +Ἰωάνην +τὸν +καλούμενον +Μάρκον· +δὲ +Παῦλος +ἠξίου, +τὸν +ἀποστάντα +ἀπ’ +αὐτῶν +ἀπὸ +Παμφυλίας +καὶ +μὴ +συνελθόντα +αὐτοῖς +εἰς +τὸ +ἔργον, +μὴ +συνπαραλαμβάνειν +τοῦτον. +δὲ +ἐγένετο +παροξυσμός, +ὥστε +ἀποχωρισθῆναι +αὐτοὺς +ἀπ’ +ἀλλήλων, +τε +τόν +Βαρνάβαν +παραλαβόντα +τὸν +Μάρκον +ἐκπλεῦσαι +εἰς +Κύπρον. +δὲ +Παῦλος +ἐπιλεξάμενος +Σιλᾶν +ἐξῆλθεν, +παραδοθεὶς +τῇ +χάριτι +τοῦ +Κυρίου +ὑπὸ +τῶν +ἀδελφῶν· +δὲ +διήρχετο +τὴν +Συρίαν +καὶ +Κιλικίαν +ἐπιστηρίζων +τὰς +ἐκκλησίας. +δὲ +Κατήντησεν +καὶ +εἰς +Δέρβην +καὶ +εἰς +Λύστραν. +καὶ +ἰδοὺ +ἦν +ἐκεῖ +μαθητής +τις +ὀνόματι +Τιμόθεος, +υἱὸς +γυναικὸς +Ἰουδαίας +πιστῆς +δὲ +πατρὸς +Ἕλληνος, +ὃς +ἐμαρτυρεῖτο +ὑπὸ +τῶν +ἐν +Λύστροις +καὶ +Ἰκονίῳ +ἀδελφῶν. +ἠθέλησεν +ὁ +Παῦλος +τοῦτον +σὺν +αὐτῷ +ἐξελθεῖν, +καὶ +λαβὼν +περιέτεμεν +αὐτὸν +διὰ +τοὺς +Ἰουδαίους +τοὺς +ὄντας +ἐν +τοῖς +τόποις +ἐκείνοις· +γὰρ +ᾔδεισαν +ἅπαντες +ὅτι +Ἕλλην +ὁ +πατὴρ +αὐτοῦ +ὑπῆρχεν. +δὲ +Ὡς +διεπορεύοντο +τὰς +πόλεις, +παρεδίδοσαν +αὐτοῖς +φυλάσσειν +τὰ +δόγματα +τὰ +κεκριμένα +ὑπὸ +τῶν +ἀποστόλων +καὶ +πρεσβυτέρων +τῶν +ἐν +Ἱεροσολύμοις. +μὲν +οὖν +Αἱ +ἐκκλησίαι +ἐστερεοῦντο +τῇ +πίστει +καὶ +ἐπερίσσευον +τῷ +ἀριθμῷ +καθ’ +ἡμέραν. +δὲ +Διῆλθον +τὴν +Φρυγίαν +καὶ +Γαλατικὴν +χώραν, +κωλυθέντες +ὑπὸ +τοῦ +Ἁγίου +Πνεύματος +λαλῆσαι +τὸν +λόγον +ἐν +τῇ +Ἀσίᾳ· +δὲ +ἐλθόντες +κατὰ +τὴν +Μυσίαν +ἐπείραζον +εἰς +τὴν +Βιθυνίαν +πορευθῆναι, +καὶ +οὐκ +εἴασεν +αὐτοὺς +τὸ +Πνεῦμα +Ἰησοῦ· +δὲ +παρελθόντες +τὴν +Μυσίαν +κατέβησαν +εἰς +Τρῳάδα. +καὶ +ὅραμα +διὰ +νυκτὸς +τῷ +Παύλῳ +ὤφθη, +ἀνὴρ +Μακεδών +τις +ἦν +ἑστὼς +καὶ +παρακαλῶν +αὐτὸν +καὶ +λέγων +Διαβὰς +εἰς +Μακεδονίαν +βοήθησον +ἡμῖν. +δὲ +ὡς +τὸ +ὅραμα +εἶδεν, +εὐθέως +ἐζητήσαμεν +ἐξελθεῖν +εἰς +Μακεδονίαν, +συμβιβάζοντες +ὅτι +προσκέκληται +ὁ +Θεὸς +ἡμᾶς +εὐαγγελίσασθαι +αὐτούς. +δὲ +Ἀναχθέντες +ἀπὸ +Τρῳάδος +εὐθυδρομήσαμεν +εἰς +Σαμοθρᾴκην, +δὲ +τῇ +ἐπιούσῃ +εἰς +Νέαν +Πόλιν, +κἀκεῖθεν +εἰς +Φιλίππους, +ἥτις +ἐστὶν +πρώτη +τῆς +μερίδος +Μακεδονίας +πόλις, +κολωνία. +δὲ +Ἦμεν +διατρίβοντες +ἐν +ταύτῃ +τῇ +πόλει +ἡμέρας +τινάς. +τε +τῇ +ἡμέρᾳ +τῶν +σαββάτων +ἐξήλθομεν +ἔξω +τῆς +πύλης +παρὰ +ποταμὸν +οὗ +προσευχὴν +εἶναι, +ἐνομίζομεν +καὶ +καθίσαντες +ἐλαλοῦμεν +ταῖς +συνελθούσαις +γυναιξίν. +καί +τις +γυνὴ +ὀνόματι +Λυδία, +πορφυρόπωλις +πόλεως +Θυατείρων, +σεβομένη +τὸν +Θεόν, +ἤκουεν, +ἧς +τὴν +καρδίαν +ὁ +Κύριος +διήνοιξεν +προσέχειν +τοῖς +λαλουμένοις +ὑπὸ +Παύλου. +δὲ +ὡς +ἐβαπτίσθη +καὶ +ὁ +οἶκος +αὐτῆς, +παρεκάλεσεν +λέγουσα +Εἰ +κεκρίκατέ +με +πιστὴν +τῷ +Κυρίῳ +εἶναι, +εἰσελθόντες +εἰς +τὸν +οἶκόν +μου +μένετε· +καὶ +παρεβιάσατο +ἡμᾶς. +δὲ +Ἐγένετο +πορευομένων +ἡμῶν +εἰς +τὴν +προσευχὴν, +παιδίσκην +τινὰ +ἔχουσαν +πνεῦμα +Πύθωνα +ὑπαντῆσαι +ἡμῖν, +ἥτις +ἐργασίαν +πολλὴν +παρεῖχεν +τοῖς +κυρίοις +αὐτῆς +μαντευομένη. +αὕτη +κατακολουθοῦσα +τῷ +Παύλῳ +καὶ +ἡμῖν +ἔκραζεν +λέγουσα +Οὗτοι +οἱ +ἄνθρωποι +δοῦλοι +τοῦ +Θεοῦ +τοῦ +Ὑψίστου +εἰσίν, +οἵτινες +καταγγέλλουσιν +ὑμῖν +ὁδὸν +σωτηρίας. +δὲ +τοῦτο +ἐποίει +ἐπὶ +πολλὰς +ἡμέρας. +δὲ +Παῦλος +διαπονηθεὶς +καὶ +ἐπιστρέψας +τῷ +πνεύματι +εἶπεν +Παραγγέλλω +σοι +ἐν +ὀνόματι +Ἰησοῦ +Χριστοῦ +ἐξελθεῖν +ἀπ’ +αὐτῆς· +καὶ +ἐξῆλθεν +αὐτῇ +τῇ +ὥρᾳ. +δὲ +οἱ +κύριοι +αὐτῆς +Ἰδόντες +ὅτι +ἐξῆλθεν +ἡ +ἐλπὶς +τῆς +ἐργασίας +αὐτῶν, +ἐπιλαβόμενοι +τὸν +Παῦλον +καὶ +τὸν +Σιλᾶν +εἵλκυσαν +εἰς +τὴν +ἀγορὰν +ἐπὶ +τοὺς +ἄρχοντας, +καὶ +προσαγαγόντες +αὐτοὺς +τοῖς +στρατηγοῖς +εἶπαν +Οὗτοι +οἱ +ἄνθρωποι +ἐκταράσσουσιν +ἡμῶν +τὴν +πόλιν, +Ἰουδαῖοι +ὑπάρχοντες, +καὶ +καταγγέλλουσιν +ἔθη +ἃ +παραδέχεσθαι +οὐδὲ +ποιεῖν +οὐκ +ἔξεστιν +ἡμῖν +Ῥωμαίοις +οὖσιν. +καὶ +συνεπέστη +ὁ +ὄχλος +κατ’ +αὐτῶν, +καὶ +οἱ +στρατηγοὶ +περιρήξαντες +αὐτῶν +τὰ +ἱμάτια +ἐκέλευον +ῥαβδίζειν, +δὲ +ἐπιθέντες +αὐτοῖς +πολλάς +πληγὰς +ἔβαλον +εἰς +φυλακήν, +παραγγείλαντες +τῷ +δεσμοφύλακι +ἀσφαλῶς +τηρεῖν +αὐτούς· +ὃς +παραγγελίαν +τοιαύτην +λαβὼν +ἔβαλεν +αὐτοὺς +εἰς +τὴν +ἐσωτέραν +φυλακὴν +καὶ +τοὺς +πόδας +αὐτῶν +ἠσφαλίσατο +εἰς +τὸ +ξύλον. +δὲ +Κατὰ +τὸ +μεσονύκτιον +Παῦλος +καὶ +Σιλᾶς +προσευχόμενοι +ὕμνουν +τὸν +Θεόν, +δὲ +ἐπηκροῶντο +αὐτῶν +οἱ +δέσμιοι· +δὲ +ἄφνω +σεισμὸς +μέγας, +ἐγένετο +ὥστε +σαλευθῆναι +τὰ +θεμέλια +τοῦ +δεσμωτηρίου· +δὲ +ἠνεῴχθησαν +παραχρῆμα +αἱ +θύραι +πᾶσαι, +καὶ +πάντων +τὰ +δεσμὰ +ἀνέθη. +δὲ +ὁ +δεσμοφύλαξ +ἔξυπνος +γενόμενος +καὶ +ἰδὼν +ἀνεῳγμένας +τὰς +θύρας +τῆς +φυλακῆς, +σπασάμενος +τὴν +μάχαιραν +ἤμελλεν +ἑαυτὸν +ἀναιρεῖν, +νομίζων +ἐκπεφευγέναι +τοὺς +δεσμίους. +δὲ +ἐφώνησεν +Παῦλος +μεγάλῃ +φωνῇ +λέγων +Μηδὲν +κακόν, +πράξῃς +σεαυτῷ +γάρ +ἅπαντες +ἐσμεν +ἐνθάδε. +δὲ +αἰτήσας +φῶτα +εἰσεπήδησεν +καὶ +ἔντρομος +γενόμενος +προσέπεσεν +τῷ +Παύλῳ +καὶ +Σιλᾷ, +καὶ +προαγαγὼν +αὐτοὺς +ἔξω +ἔφη +Κύριοι, +τί +με +ποιεῖν +δεῖ +ἵνα +σωθῶ; +δὲ +οἱ +εἶπαν +Πίστευσον +ἐπὶ +τὸν +Κύριον +Ἰησοῦν, +καὶ +σωθήσῃ +σὺ +καὶ +ὁ +οἶκός +σου. +καὶ +ἐλάλησαν +αὐτῷ +τὸν +λόγον +τοῦ +Θεοῦ +σὺν +πᾶσιν +τοῖς +ἐν +τῇ +οἰκίᾳ +αὐτοῦ. +καὶ +παραλαβὼν +αὐτοὺς +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +τῆς +νυκτὸς +ἔλουσεν +ἀπὸ +τῶν +πληγῶν, +καὶ +ἐβαπτίσθη +αὐτὸς +καὶ +οἱ +αὐτοῦ +ἅπαντες +παραχρῆμα, +τε +ἀναγαγών +αὐτοὺς +εἰς +τὸν +οἶκον +παρέθηκεν +τράπεζαν, +καὶ +ἠγαλλιάσατο +πανοικεὶ +πεπιστευκὼς +τῷ +Θεῷ. +δὲ +Ἠμέρας +γενομένης +ἀπέστειλαν +οἱ +στρατηγοὶ +τοὺς +ῥαβδούχους +λέγοντες +Ἀπόλυσον +τοὺς +ἀνθρώπους +ἐκείνους. +δὲ +ἀπήγγειλεν +ὁ +δεσμοφύλαξ +τοὺς +λόγους +τούτους +πρὸς +τὸν +Παῦλον, +ὅτι +Ἀπέσταλκαν +οἱ +στρατηγοὶ +ἵνα +ἀπολυθῆτε. +οὖν +νῦν +ἐξελθόντες +πορεύεσθε +ἐν +εἰρήνῃ. +δὲ +ὁ +Παῦλος +ἔφη +πρὸς +αὐτούς +Δείραντες +ἡμᾶς +δημοσίᾳ +ἀκατακρίτους, +ἀνθρώπους +Ῥωμαίους +ὑπάρχοντας, +ἔβαλαν +εἰς +φυλακήν· +καὶ +νῦν +λάθρᾳ +ἡμᾶς +ἐκβάλλουσιν; +γάρ, +οὐ +ἀλλὰ +ἐλθόντες +αὐτοὶ +ἡμᾶς +ἐξαγαγέτωσαν. +δὲ +ἀπήγγειλαν +τοῖς +στρατηγοῖς +οἱ +ῥαβδοῦχοι +τὰ +ῥήματα +ταῦτα. +δὲ +ἐφοβήθησαν +ἀκούσαντες +ὅτι +Ῥωμαῖοί +εἰσιν, +καὶ +ἐλθόντες +παρεκάλεσαν +αὐτούς, +καὶ +ἐξαγαγόντες +ἠρώτων +ἀπελθεῖν +ἀπὸ +τῆς +πόλεως. +δὲ +ἐξελθόντες +ἀπὸ +τῆς +φυλακῆς +εἰσῆλθον +πρὸς +τὴν +Λυδίαν, +καὶ +ἰδόντες +παρεκάλεσαν +τοὺς +ἀδελφοὺς +καὶ +ἐξῆλθαν. +δὲ +Διοδεύσαντες +τὴν +Ἀμφίπολιν +καὶ +τὴν +Ἀπολλωνίαν +ἦλθον +εἰς +Θεσσαλονίκην, +ὅπου +ἦν +συναγωγὴ +τῶν +Ἰουδαίων. +δὲ +κατὰ +τὸ +εἰωθὸς +τῷ +Παύλῳ +εἰσῆλθεν +πρὸς +αὐτοὺς, +καὶ +ἐπὶ +σάββατα +τρία +διελέξατο +αὐτοῖς +ἀπὸ +τῶν +γραφῶν, +διανοίγων +καὶ +παρατιθέμενος +ὅτι +ἔδει +τὸν +Χριστὸν +παθεῖν +καὶ +ἀναστῆναι +ἐκ +νεκρῶν, +καὶ +ὅτι +οὗτός +ἐστιν +ὁ +Χριστός, +ὁ +Ἰησοῦς, +ὃν +ἐγὼ +καταγγέλλω +ὑμῖν. +καί +τινες +ἐξ +αὐτῶν +ἐπείσθησαν +καὶ +προσεκληρώθησαν +τῷ +Παύλῳ +καὶ +τῷ +Σιλᾷ, +τε +τῶν +σεβομένων +Ἑλλήνων +πλῆθος +πολὺ, +τε +γυναικῶν +τῶν +πρώτων +οὐκ +ὀλίγαι. +δὲ +οἱ +Ἰουδαῖοι +Ζηλώσαντες +καὶ +προσλαβόμενοι +τῶν +ἀγοραίων +ἄνδρας +τινὰς +πονηροὺς +καὶ +ὀχλοποιήσαντες +ἐθορύβουν +τὴν +πόλιν, +καὶ +ἐπιστάντες +τῇ +οἰκίᾳ +Ἰάσονος +ἐζήτουν +αὐτοὺς +προαγαγεῖν +εἰς +τὸν +δῆμον· +δὲ +μὴ +εὑρόντες +αὐτοὺς +ἔσυρον +Ἰάσονα +καί +τινας +ἀδελφοὺς +ἐπὶ +τοὺς +πολιτάρχας, +βοῶντες +ὅτι +Οἱ +τὴν +οἰκουμένην +ἀναστατώσαντες +οὗτοι +καὶ +ἐνθάδε +πάρεισιν, +οὓς +ὑποδέδεκται +Ἰάσων· +καὶ +οὗτοι +πάντες +ἀπέναντι +τῶν +δογμάτων +Καίσαρος +πράσσουσιν, +βασιλέα +ἕτερον +εἶναι +Ἰησοῦν. +λέγοντες +δὲ +ἐτάραξαν +τὸν +ὄχλον +καὶ +τοὺς +πολιτάρχας +ἀκούοντας +ταῦτα, +καὶ +λαβόντες +τὸ +ἱκανὸν +παρὰ +τοῦ +Ἰάσονος +καὶ +τῶν +λοιπῶν +ἀπέλυσαν +αὐτούς. +δὲ +Οἱ +ἀδελφοὶ +εὐθέως +διὰ +νυκτὸς +ἐξέπεμψαν +τε +τόν +Παῦλον +καὶ +τὸν +Σιλᾶν +εἰς +Βέροιαν, +οἵτινες +παραγενόμενοι +εἰς +τὴν +συναγωγὴν +τῶν +Ἰουδαίων +ἀπῄεσαν· +δὲ +οὗτοι +ἦσαν +εὐγενέστεροι +τῶν +ἐν +Θεσσαλονίκῃ, +οἵτινες +ἐδέξαντο +τὸν +λόγον +μετὰ +πάσης +προθυμίας, +τὸ +καθ’ +ἡμέραν +ἀνακρίνοντες +τὰς +γραφὰς +εἰ +ἔχοι +ταῦτα +οὕτως. +μὲν +οὖν +πολλοὶ +ἐξ +αὐτῶν +ἐπίστευσαν, +καὶ +τῶν +Ἑλληνίδων +γυναικῶν +τῶν +εὐσχημόνων +καὶ +ἀνδρῶν +οὐκ +ὀλίγοι. +δὲ +Ὡς +ἔγνωσαν +οἱ +ἀπὸ +τῆς +Θεσσαλονίκης +Ἰουδαῖοι +ὅτι +καὶ +ἐν +τῇ +Βεροίᾳ +κατηγγέλη +ὑπὸ +τοῦ +Παύλου +ὁ +λόγος +τοῦ +Θεοῦ, +ἦλθον +κἀκεῖ +σαλεύοντες +καὶ +ταράσσοντες +τοὺς +ὄχλους. +δὲ +εὐθέως +τότε +τὸν +Παῦλον +ἐξαπέστειλαν +οἱ +ἀδελφοὶ +πορεύεσθαι +ἕως +ἐπὶ +τὴν +θάλασσαν· +τε +ὑπέμεινάν +τε +ὅ +Σιλᾶς +καὶ +ὁ +Τιμόθεος +ἐκεῖ. +δὲ +οἱ +καθιστάνοντες +τὸν +Παῦλον +ἤγαγον +ἕως +Ἀθηνῶν, +καὶ +λαβόντες +ἐντολὴν +πρὸς +τὸν +Σιλᾶν +καὶ +τὸν +Τιμόθεον +ἵνα +ὡς +τάχιστα +ἔλθωσιν +πρὸς +αὐτὸν +ἐξῄεσαν. +δὲ +Ἐν +ταῖς +Ἀθήναις +ἐκδεχομένου +αὐτοὺς +τοῦ +Παύλου, +παρωξύνετο +τὸ +πνεῦμα +αὐτοῦ +ἐν +αὐτῷ +θεωροῦντος +κατείδωλον +οὖσαν +τὴν +πόλιν. +οὖν +μὲν +διελέγετο +ἐν +τῇ +συναγωγῇ +τοῖς +Ἰουδαίοις +καὶ +τοῖς +σεβομένοις +καὶ +ἐν +τῇ +ἀγορᾷ +κατὰ +πᾶσαν +ἡμέραν +πρὸς +τοὺς +παρατυγχάνοντας. +δὲ +τινὲς +καὶ +τῶν +Ἐπικουρίων +καὶ +Στοϊκῶν +φιλοσόφων +συνέβαλλον +αὐτῷ, +καί +τινες +ἔλεγον +ἂν +θέλοι +ὁ +σπερμολόγος +οὗτος +Τί +λέγειν; +δέ· +οἱ +δοκεῖ +Ξένων +δαιμονίων +καταγγελεὺς +εἶναι· +ὅτι +τὸν +Ἰησοῦν +καὶ +τὴν +ἀνάστασιν +εὐηγγελίζετο. +δὲ +ἐπιλαβόμενοί +αὐτοῦ +ἐπὶ +τὸν +Ἄρειον +πάγον +ἤγαγον, +λέγοντες +Δυνάμεθα +γνῶναι +τίς +ἡ +καινὴ +αὕτη +ἡ +ὑπὸ +σοῦ +λαλουμένη +διδαχή; +γάρ +ξενίζοντα +τινα +εἰσφέρεις +εἰς +τὰς +ἀκοὰς +ἡμῶν· +οὖν +βουλόμεθα +γνῶναι +τίνα +εἶναι. +θέλει +ταῦτα +δὲ +Ἀθηναῖοι +πάντες +καὶ +οἱ +ἐπιδημοῦντες +ξένοι +εἰς +οὐδὲν +ἕτερον +ηὐκαίρουν +ἢ +λέγειν +τι +ἢ +ἀκούειν +τι +καινότερον. +δὲ +Σταθεὶς +Παῦλος +ἐν +μέσῳ +τοῦ +Ἀρείου +Πάγου +ἔφη +Ἄνδρες +Ἀθηναῖοι, +κατὰ +πάντα +ὡς +δεισιδαιμονεστέρους +ὑμᾶς +θεωρῶ. +γὰρ +διερχόμενος +καὶ +ἀναθεωρῶν +τὰ +σεβάσματα +ὑμῶν +εὗρον +καὶ +βωμὸν +ἐν +ᾧ +ἐπεγέγραπτο +ΑΓΝΩΣΤΩ +ΘΕΩ. +οὖν +ὃ +ἀγνοοῦντες +εὐσεβεῖτε, +τοῦτο +ἐγὼ +καταγγέλλω +ὑμῖν. +ὁ +Θεὸς +ὁ +ποιήσας +τὸν +κόσμον +καὶ +πάντα +τὰ +ἐν +αὐτῷ, +οὗτος +οὐρανοῦ +καὶ +γῆς +Κύριος +ὑπάρχων +οὐκ +ἐν +χειροποιήτοις +ναοῖς +κατοικεῖ, +οὐδὲ +ὑπὸ +χειρῶν +ἀνθρωπίνων +θεραπεύεται +προσδεόμενός +τινος, +αὐτὸς +διδοὺς +πᾶσι +ζωὴν +καὶ +πνοὴν +καὶ +τὰ +πάντα· +τε +ἐποίησέν +ἐξ +ἑνὸς +πᾶν +ἔθνος +ἀνθρώπων +κατοικεῖν +ἐπὶ +παντὸς +προσώπου +τῆς +γῆς, +ὁρίσας +προστεταγμένους +καιροὺς +καὶ +τὰς +ὁροθεσίας +τῆς +κατοικίας +αὐτῶν, +ζητεῖν +τὸν +Θεὸν, +εἰ +ἄρα +γε +ψηλαφήσειαν +αὐτὸν +καὶ +εὕροιεν, +γε +καί +οὐ +μακρὰν +ἀπὸ +ἑνὸς +ἑκάστου +ἡμῶν +ὑπάρχοντα. +γὰρ +ἐν +αὐτῷ +ζῶμεν +καὶ +κινούμεθα +καὶ +ἐσμέν, +ὡς +καί +τινες +τῶν +καθ’ +ὑμᾶς +ποιητῶν +εἰρήκασιν +γὰρ +Τοῦ +καὶ +γένος +ἐσμέν. +οὖν +ὑπάρχοντες +γένος +τοῦ +Θεοῦ +οὐκ +ὀφείλομεν +νομίζειν, +χρυσῷ +ἢ +ἀργύρῳ +ἢ +λίθῳ, +χαράγματι +τέχνης +καὶ +ἐνθυμήσεως +ἀνθρώπου, +τὸ +Θεῖον +εἶναι +ὅμοιον. +μὲν +οὖν +τοὺς +χρόνους +τῆς +ἀγνοίας +ὑπεριδὼν +ὁ +Θεὸς +τὰ +νῦν +ἀπαγγέλλει +τοῖς +ἀνθρώποις +πάντας +πανταχοῦ +μετανοεῖν, +καθότι +ἔστησεν +ἡμέραν +ἐν +ᾗ +μέλλει +κρίνειν +τὴν +οἰκουμένην +ἐν +δικαιοσύνῃ, +ἐν +ἀνδρὶ +ᾧ +ὥρισεν, +πίστιν +παρασχὼν +πᾶσιν +ἀναστήσας +αὐτὸν +ἐκ +νεκρῶν. +δὲ +ἀκούσαντες +ἀνάστασιν +νεκρῶν, +μὲν +οἱ +ἐχλεύαζον, +δὲ +οἱ +εἶπαν +Ἀκουσόμεθά +σου +περὶ +τούτου +καὶ +πάλιν. +οὕτως +ὁ +Παῦλος +ἐξῆλθεν +ἐκ +μέσου +αὐτῶν. +δὲ +τινὲς +ἄνδρες +κολληθέντες +αὐτῷ +ἐπίστευσαν, +ἐν +οἷς +καὶ +Διονύσιος +ὁ +Ἀρεοπαγείτης +καὶ +γυνὴ +ὀνόματι +Δάμαρις +καὶ +ἕτεροι +σὺν +αὐτοῖς. +Μετὰ +ταῦτα +χωρισθεὶς +ἐκ +τῶν +Ἀθηνῶν +ἦλθεν +εἰς +Κόρινθον. +καὶ +εὑρών +τινα +Ἰουδαῖον +ὀνόματι +Ἀκύλαν, +Ποντικὸν +τῷ +γένει, +προσφάτως +ἐληλυθότα +ἀπὸ +τῆς +Ἰταλίας +καὶ +Πρίσκιλλαν +γυναῖκα +αὐτοῦ, +διὰ +τὸ +διατεταχέναι +Κλαύδιον +χωρίζεσθαι +πάντας +τοὺς +Ἰουδαίους +ἀπὸ +τῆς +Ῥώμης, +προσῆλθεν +αὐτοῖς, +καὶ +διὰ +τὸ +ὁμότεχνον +εἶναι +ἔμενεν +παρ’ +αὐτοῖς, +καὶ +ἠργάζοντο· +γὰρ +ἦσαν +σκηνοποιοὶ +τῇ +τέχνῃ. +δὲ +διελέγετο +ἐν +τῇ +συναγωγῇ +κατὰ +πᾶν +σάββατον, +ἔπειθέν +τε +Ἰουδαίους +καὶ +Ἕλληνας. +δὲ +Ὡς +κατῆλθον +ἀπὸ +τῆς +Μακεδονίας +τε +ὅ +Σιλᾶς +καὶ +ὁ +Τιμόθεος, +συνείχετο +τῷ +λόγῳ +ὁ +Παῦλος, +διαμαρτυρόμενος +τοῖς +Ἰουδαίοις +εἶναι +τὸν +Χριστὸν +Ἰησοῦν. +δὲ +ἀντιτασσομένων +αὐτῶν +καὶ +βλασφημούντων +ἐκτιναξάμενος +τὰ +ἱμάτια +εἶπεν +πρὸς +αὐτούς +Τὸ +αἷμα +ὑμῶν +ἐπὶ +τὴν +κεφαλὴν +ὑμῶν· +καθαρὸς +ἐγώ· +ἀπὸ +τοῦ +νῦν +εἰς +τὰ +ἔθνη +πορεύσομαι. +καὶ +μεταβὰς +ἐκεῖθεν +ἦλθεν +εἰς +οἰκίαν +τινὸς +ὀνόματι +Τιτίου +Ἰούστου +σεβομένου +τὸν +Θεόν, +οὗ +ἡ +οἰκία +ἦν +συνομοροῦσα +τῇ +συναγωγῇ. +δὲ +Κρίσπος +ὁ +ἀρχισυνάγωγος +ἐπίστευσεν +τῷ +Κυρίῳ +σὺν +ὅλῳ +τῷ +οἴκῳ +αὐτοῦ, +καὶ +πολλοὶ +τῶν +Κορινθίων +ἀκούοντες +ἐπίστευον +καὶ +ἐβαπτίζοντο. +δὲ +Εἶπεν +ὁ +Κύριος +ἐν +νυκτὶ +δι’ +ὁράματος +τῷ +Παύλῳ +Μὴ +φοβοῦ, +ἀλλὰ +λάλει +καὶ +μὴ +σιωπήσῃς, +διότι +ἐγώ +εἰμι +μετὰ +σοῦ +καὶ +οὐδεὶς +ἐπιθήσεταί +σοι +τοῦ +κακῶσαί +σε, +διότι +λαός +πολὺς +ἐστί +μοι +ἐν +τῇ +πόλει +ταύτῃ. +δὲ +Ἐκάθισεν +ἐνιαυτὸν +καὶ +μῆνας +ἓξ +διδάσκων +ἐν +αὐτοῖς +τὸν +λόγον +τοῦ +Θεοῦ. +δὲ +Γαλλίωνος +ὄντος +ἀνθυπάτου +τῆς +Ἀχαΐας +κατεπέστησαν +ὁμοθυμαδὸν +οἱ +Ἰουδαῖοι +τῷ +Παύλῳ +καὶ +ἤγαγον +αὐτὸν +ἐπὶ +τὸ +βῆμα, +λέγοντες +ὅτι +Παρὰ +τὸν +νόμον +ἀναπείθει +οὗτος +τοὺς +ἀνθρώπους +σέβεσθαι +τὸν +Θεόν. +δὲ +μέλλοντος +τοῦ +Παύλου +ἀνοίγειν +τὸ +στόμα +εἶπεν +ὁ +Γαλλίων +πρὸς +τοὺς +Ἰουδαίους +μὲν +Εἰ +ἦν +ἀδίκημά +τι +ἢ +ῥᾳδιούργημα +πονηρόν, +ὦ +Ἰουδαῖοι, +ἂν +κατὰ +λόγον +ἀνεσχόμην +ὑμῶν· +δὲ +εἰ +ἐστιν +ζητήματά +περὶ +λόγου +καὶ +ὀνομάτων +καὶ +νόμου +τοῦ +καθ’ +ὑμᾶς, +ὄψεσθε +αὐτοί· +οὐ +βούλομαι +ἐγὼ +κριτὴς +τούτων +εἶναι. +καὶ +ἀπήλασεν +αὐτοὺς +ἀπὸ +τοῦ +βήματος. +δὲ +πάντες +ἐπιλαβόμενοι +Σωσθένην +τὸν +ἀρχισυνάγωγον +ἔτυπτον +ἔμπροσθεν +τοῦ +βήματος· +καὶ +οὐδὲν +τούτων +τῷ +Γαλλίωνι +ἔμελεν. +δὲ +Ὁ +Παῦλος +ἔτι +προσμείνας +ἡμέρας +ἱκανὰς, +τοῖς +ἀδελφοῖς +ἀποταξάμενος +ἐξέπλει +εἰς +τὴν +Συρίαν, +καὶ +σὺν +αὐτῷ +Πρίσκιλλα +καὶ +Ἀκύλας, +κειράμενος +ἐν +Κενχρεαῖς +τὴν +κεφαλήν· +γὰρ +εἶχεν +εὐχήν. +δὲ +κατήντησαν +εἰς +Ἔφεσον, +κἀκείνους +κατέλιπεν +αὐτοῦ, +δὲ +αὐτὸς +εἰσελθὼν +εἰς +τὴν +συναγωγὴν +διελέξατο +τοῖς +Ἰουδαίοις. +δὲ +ἐρωτώντων +αὐτῶν +ἐπὶ +πλείονα +χρόνον +μεῖναι +οὐκ +ἐπένευσεν, +ἀλλὰ +ἀποταξάμενος +καὶ +εἰπών +Πάλιν +ἀνακάμψω +πρὸς +ὑμᾶς +τοῦ +Θεοῦ +θέλοντος, +ἀνήχθη +ἀπὸ +τῆς +Ἐφέσου, +καὶ +κατελθὼν +εἰς +Καισάριαν, +ἀναβὰς +καὶ +ἀσπασάμενος +τὴν +ἐκκλησίαν, +κατέβη +εἰς +Ἀντιόχειαν, +καὶ +ποιήσας +χρόνον +τινὰ +ἐξῆλθεν, +διερχόμενος +καθεξῆς +τὴν +Γαλατικὴν +χώραν +καὶ +Φρυγίαν, +στηρίζων +πάντας +τοὺς +μαθητάς. +δέ +Ἰουδαῖος +τις +Ἀπολλῶς +ὀνόματι, +Ἀλεξανδρεὺς +τῷ +γένει, +ἀνὴρ +λόγιος, +δυνατὸς +ὢν +ἐν +ταῖς +γραφαῖς. +κατήντησεν +εἰς +Ἔφεσον, +οὗτος +ἦν +κατηχημένος +τὴν +ὁδὸν +τοῦ +Κυρίου, +καὶ +ζέων +τῷ +πνεύματι +ἐλάλει +καὶ +ἐδίδασκεν +ἀκριβῶς +τὰ +περὶ +τοῦ +Ἰησοῦ, +ἐπιστάμενος +μόνον +τὸ +βάπτισμα +Ἰωάνου· +τε +οὗτός +ἤρξατο +παρρησιάζεσθαι +ἐν +τῇ +συναγωγῇ. +δὲ +ἀκούσαντες +αὐτοῦ +Πρίσκιλλα +καὶ +Ἀκύλας +προσελάβοντο +αὐτὸν +καὶ +ἀκριβέστερον +αὐτῷ +ἐξέθεντο +τὴν +ὁδὸν +τοῦ +Θεοῦ. +δὲ +βουλομένου +αὐτοῦ +διελθεῖν +εἰς +τὴν +Ἀχαΐαν +προτρεψάμενοι +οἱ +ἀδελφοὶ +ἔγραψαν +τοῖς +μαθηταῖς +ἀποδέξασθαι +αὐτόν· +ὃς +παραγενόμενος +συνεβάλετο +πολὺ +τοῖς +πεπιστευκόσιν +διὰ +τῆς +χάριτος· +γὰρ +εὐτόνως +τοῖς +Ἰουδαίοις +διακατηλέγχετο +δημοσίᾳ +ἐπιδεικνὺς +διὰ +τῶν +γραφῶν +εἶναι +τὸν +Χριστὸν +Ἰησοῦν. +δὲ +Ἐγένετο +ἐν +τῷ +τὸν +Ἀπολλῶ +εἶναι +ἐν +Κορίνθῳ +Παῦλον +διελθόντα +τὰ +ἀνωτερικὰ +μέρη +ἐλθεῖν +εἰς +Ἔφεσον +καὶ +εὑρεῖν +τινας +μαθητάς, +τε +εἶπέν +πρὸς +αὐτούς +Εἰ +Πνεῦμα +Ἅγιον +ἐλάβετε +πιστεύσαντες; +δὲ +οἱ +πρὸς +αὐτόν +Ἀλλ’ +οὐδ’ +ἠκούσαμεν. +εἰ +Πνεῦμα +Ἅγιον +ἔστιν +τε +εἶπέν +οὖν +Εἰς +τί +ἐβαπτίσθητε; +δὲ +οἱ +εἶπαν +Εἰς +τὸ +Ἰωάνου +βάπτισμα. +δὲ +εἶπεν +Παῦλος +Ἰωάνης +ἐβάπτισεν +βάπτισμα +μετανοίας, +τῷ +λαῷ +λέγων +ἵνα +πιστεύσωσιν, +εἰς +τὸν +ἐρχόμενον +μετ’ +αὐτὸν +τοῦτ’ +ἔστιν +εἰς +τὸν +Ἰησοῦν. +δὲ +ἀκούσαντες +ἐβαπτίσθησαν +εἰς +τὸ +ὄνομα +τοῦ +Κυρίου +Ἰησοῦ· +καὶ +ἐπιθέντος +αὐτοῖς +τοῦ +Παύλου +χεῖρας +ἦλθε +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἐπ’ +αὐτούς, +τε +ἐλάλουν +γλώσσαις +καὶ +ἐπροφήτευον. +δὲ +ἦσαν +οἱ +πάντες +ἄνδρες +ὡσεὶ +δώδεκα. +δὲ +Εἰσελθὼν +εἰς +τὴν +συναγωγὴν +ἐπαρρησιάζετο +ἐπὶ +μῆνας +τρεῖς +διαλεγόμενος +καὶ +πείθων +περὶ +τῆς +βασιλείας +τοῦ +Θεοῦ. +δέ +ὡς +τινες +ἐσκληρύνοντο +καὶ +ἠπείθουν +κακολογοῦντες +τὴν +Ὁδὸν +ἐνώπιον +τοῦ +πλήθους, +ἀποστὰς +ἀπ’ +αὐτῶν +ἀφώρισεν +τοὺς +μαθητάς, +καθ’ +ἡμέραν +διαλεγόμενος +ἐν +τῇ +σχολῇ +Τυράννου. +δὲ +τοῦτο +ἐγένετο +ἐπὶ +ἔτη +δύο, +ὥστε +πάντας +τοὺς +κατοικοῦντας +τὴν +Ἀσίαν +ἀκοῦσαι +τὸν +λόγον +τοῦ +Κυρίου, +τε +Ἰουδαίους +καὶ +Ἕλληνας. +τε +Δυνάμεις +οὐ +τὰς +τυχούσας +ὁ +Θεὸς +ἐποίει +διὰ +τῶν +χειρῶν +Παύλου, +ὥστε +καὶ +ἐπὶ +τοὺς +ἀσθενοῦντας +ἀποφέρεσθαι +ἀπὸ +τοῦ +χρωτὸς +αὐτοῦ +σουδάρια +ἢ +σιμικίνθια +καὶ +ἀπαλλάσσεσθαι +ἀπ’ +αὐτῶν +τὰς +νόσους, +τε +τά +πνεύματα +τὰ +πονηρὰ +ἐκπορεύεσθαι. +δέ +Ἐπεχείρησαν +τινες +καὶ +τῶν +περιερχομένων +Ἰουδαίων +ἐξορκιστῶν +ὀνομάζειν +ἐπὶ +τοὺς +ἔχοντας +τὰ +πνεύματα +τὰ +πονηρὰ +τὸ +ὄνομα +τοῦ +Κυρίου +Ἰησοῦ +λέγοντες +Ὁρκίζω +ὑμᾶς +τὸν +Ἰησοῦν +ὃν +Παῦλος +κηρύσσει. +δέ +τινος +Σκευᾶ +Ἰουδαίου +ἀρχιερέως +ἑπτὰ +υἱοὶ +τοῦτο +ἦσαν +ποιοῦντες. +δὲ +ἀποκριθὲν +τὸ +πνεῦμα +τὸ +πονηρὸν +εἶπεν +αὐτοῖς +Τὸν +Ἰησοῦν +γινώσκω +καὶ +τὸν +Παῦλον +ἐπίσταμαι· +δὲ +ὑμεῖς +τίνες +ἐστέ; +καὶ +ἐφαλόμενος +ἐπ’ +αὐτοὺς, +ὁ +ἄνθρωπος +ἐν +ᾧ +ἦν +τὸ +πνεῦμα +τὸ +πονηρὸν, +κατακυριεύσας +ἀμφοτέρων +ἴσχυσεν +κατ’ +αὐτῶν, +ὥστε +γυμνοὺς +καὶ +τετραυματισμένους +ἐκφυγεῖν +ἐκ +τοῦ +οἴκου +ἐκείνου. +δὲ +τοῦτο +ἐγένετο +γνωστὸν +πᾶσιν +τε +Ἰουδαίοις +καὶ +Ἕλλησιν +τοῖς +κατοικοῦσιν +τὴν +Ἔφεσον, +καὶ +ἐπέπεσεν +φόβος +ἐπὶ +πάντας +αὐτούς, +καὶ +ἐμεγαλύνετο +τὸ +ὄνομα +τοῦ +Κυρίου +Ἰησοῦ· +τε +πολλοί +τῶν +πεπιστευκότων +ἤρχοντο +ἐξομολογούμενοι +καὶ +ἀναγγέλλοντες +τὰς +πράξεις +αὐτῶν. +δὲ +ἱκανοὶ +τῶν +τὰ +περίεργα +πραξάντων +συνενέγκαντες +τὰς +βίβλους +κατέκαιον +ἐνώπιον +πάντων· +καὶ +συνεψήφισαν +τὰς +τιμὰς +αὐτῶν +καὶ +εὗρον +ἀργυρίου +μυριάδας +πέντε. +Οὕτως +κατὰ +κράτος +τοῦ +Κυρίου +ὁ +λόγος +ηὔξανεν +καὶ +ἴσχυεν. +δὲ +Ὡς +ἐπληρώθη +ταῦτα, +ἔθετο +ὁ +Παῦλος +ἐν +τῷ +πνεύματι +διελθὼν +τὴν +Μακεδονίαν +καὶ +Ἀχαΐαν +πορεύεσθαι +εἰς +Ἱεροσόλυμα, +εἰπὼν +ὅτι +Μετὰ +τὸ +γενέσθαι +με +ἐκεῖ +δεῖ +με +καὶ +Ῥώμην +ἰδεῖν. +δὲ +ἀποστείλας +εἰς +τὴν +Μακεδονίαν +δύο +τῶν +διακονούντων +αὐτῷ, +Τιμόθεον +καὶ +Ἔραστον, +αὐτὸς +ἐπέσχεν +χρόνον +εἰς +τὴν +Ἀσίαν. +δὲ +Ἐγένετο +κατὰ +τὸν +καιρὸν +ἐκεῖνον +τάραχος +οὐκ +ὀλίγος +περὶ +τῆς +Ὁδοῦ. +γάρ +τις +Δημήτριος +ὀνόματι, +ἀργυροκόπος, +ποιῶν +ναοὺς +ἀργυροῦς +Ἀρτέμιδος +παρείχετο +τοῖς +τεχνίταις +οὐκ +ὀλίγην +ἐργασίαν, +οὓς +καὶ +τοὺς +περὶ +τὰ +τοιαῦτα +ἐργάτας +συναθροίσας +εἶπεν +Ἄνδρες, +ἐπίστασθε +ὅτι +ἐκ +ταύτης +τῆς +ἐργασίας +ἡ +εὐπορία +ἡμῖν +ἐστιν, +καὶ +θεωρεῖτε +καὶ +ἀκούετε +ὅτι +οὐ +μόνον +Ἐφέσου +ἀλλὰ +σχεδὸν +πάσης +τῆς +Ἀσίας +ὁ +Παῦλος +οὗτος +πείσας +μετέστησεν +ἱκανὸν +ὄχλον, +λέγων +ὅτι +οὐκ +εἰσὶν +θεοὶ +οἱ +διὰ +χειρῶν +γινόμενοι. +δὲ +οὐ +μόνον +τοῦτο +κινδυνεύει +ἡμῖν +τὸ +μέρος +εἰς +ἀπελεγμὸν +ἐλθεῖν, +ἀλλὰ +καὶ +τὸ +τῆς +μεγάλης +θεᾶς +Ἀρτέμιδος +ἱερὸν +εἰς +οὐθὲν +λογισθῆναι, +τε +μέλλειν +καὶ +καθαιρεῖσθαι +τῆς +μεγαλειότητος +αὐτῆς, +ἣν +ὅλη +ἡ +Ἀσία +καὶ +ἡ +οἰκουμένη +σέβεται. +δὲ +Ἀκούσαντες +καὶ +γενόμενοι +πλήρεις +θυμοῦ +ἔκραζον +λέγοντες +Μεγάλη +ἡ +Ἄρτεμις +Ἐφεσίων. +καὶ +ἐπλήσθη +ἡ +πόλις +τῆς +συγχύσεως, +τε +ὥρμησάν +ὁμοθυμαδὸν +εἰς +τὸ +θέατρον, +συναρπάσαντες +Γάϊον +καὶ +Ἀρίσταρχον +Μακεδόνας, +συνεκδήμους +Παύλου. +δὲ +Παύλου +βουλομένου +εἰσελθεῖν +εἰς +τὸν +δῆμον +οὐκ +εἴων +αὐτὸν +οἱ +μαθηταί· +δὲ +τινὲς +καὶ +τῶν +Ἀσιαρχῶν, +ὄντες +αὐτῷ +φίλοι, +πέμψαντες +πρὸς +αὐτὸν +παρεκάλουν +μὴ +δοῦναι +ἑαυτὸν +εἰς +τὸ +θέατρον. +μὲν +οὖν +ἄλλοι +ἄλλο +τι +ἔκραζον· +γὰρ +ἡ +ἐκκλησία +ἦν +συγκεχυμένη, +καὶ +οἱ +πλείους +οὐκ +ᾔδεισαν +τίνος +ἕνεκα +συνεληλύθεισαν. +δὲ +ἐκ +τοῦ +ὄχλου +συνεβίβασαν +Ἀλέξανδρον, +προβαλόντων +αὐτὸν +τῶν +Ἰουδαίων· +δὲ +ὁ +Ἀλέξανδρος +κατασείσας +τὴν +χεῖρα +ἤθελεν +ἀπολογεῖσθαι +τῷ +δήμῳ. +δὲ +ἐπιγνόντες +ὅτι +Ἰουδαῖός +ἐστιν, +φωνὴ +μία +ἐγένετο +ἐκ +πάντων, +ὡς +ἐπὶ +ὥρας +δύο +κράζοντες +Μεγάλη +ἡ +Ἄρτεμις +Ἐφεσίων. +δὲ +ὁ +γραμματεὺς +καταστείλας +τὸν +ὄχλον +φησίν +Ἄνδρες +Ἐφέσιοι, +γάρ +τίς +ἀνθρώπων +ἐστιν +ὃς +οὐ +γινώσκει +τὴν +Ἐφεσίων +πόλιν +οὖσαν +νεωκόρον +τῆς +μεγάλης +Ἀρτέμιδος +καὶ +τοῦ +διοπετοῦς; +οὖν +ἀναντιρρήτων +ὄντων +τούτων +δέον +ἐστὶν +ὑμᾶς +κατεσταλμένους +ὑπάρχειν +καὶ +μηδὲν +προπετὲς +πράσσειν. +γὰρ +ἠγάγετε +τοὺς +ἄνδρας +τούτους +οὔτε +ἱεροσύλους +οὔτε +βλασφημοῦντας +τὴν +θεὸν +ἡμῶν. +οὖν +μὲν +εἰ +Δημήτριος +καὶ +οἱ +σὺν +αὐτῷ +τεχνῖται +ἔχουσι +πρός +τινα +λόγον, +ἀγοραῖοι +ἄγονται +καὶ +ἀνθύπατοί +εἰσιν, +ἐγκαλείτωσαν +ἀλλήλοις. +δέ +εἰ +τι +περαιτέρω +ἐπιζητεῖτε, +ἐν +τῇ +ἐννόμῳ +ἐκκλησίᾳ +ἐπιλυθήσεται. +γὰρ +καὶ +κινδυνεύομεν +ἐγκαλεῖσθαι +στάσεως +περὶ +τῆς +σήμερον, +μηδενὸς +αἰτίου +ὑπάρχοντος, +περὶ +οὗ +οὐ +δυνησόμεθα +ἀποδοῦναι +λόγον +περὶ +τῆς +συστροφῆς +ταύτης. +καὶ +ταῦτα +εἰπὼν +ἀπέλυσεν +τὴν +ἐκκλησίαν. +δὲ +Μετὰ +τὸ +παύσασθαι +τὸν +θόρυβον +ὁ +Παῦλος +μεταπεμψάμενος +τοὺς +μαθητὰς +καὶ +παρακαλέσας, +ἀσπασάμενος +ἐξῆλθεν +πορεύεσθαι +εἰς +Μακεδονίαν. +δὲ +διελθὼν +τὰ +μέρη +ἐκεῖνα +καὶ +παρακαλέσας +αὐτοὺς +λόγῳ +πολλῷ +ἦλθεν +εἰς +τὴν +Ἑλλάδα, +τε +ποιήσας +μῆνας +τρεῖς, +γενομένης +ἐπιβουλῆς +αὐτῷ +ὑπὸ +τῶν +Ἰουδαίων +μέλλοντι +ἀνάγεσθαι +εἰς +τὴν +Συρίαν, +ἐγένετο +γνώμης +τοῦ +ὑποστρέφειν +διὰ +Μακεδονίας. +δὲ +συνείπετο +αὐτῷ +Σώπατρος +Πύρρου +Βεροιαῖος, +δὲ +Θεσσαλονικέων +Ἀρίσταρχος +καὶ +Σεκοῦνδος, +καὶ +Γάϊος +Δερβαῖος +καὶ +Τιμόθεος, +δὲ +Ἀσιανοὶ +Τυχικὸς +καὶ +Τρόφιμος· +δὲ +οὗτοι +προελθόντες +ἔμενον +ἡμᾶς +ἐν +Τρῳάδι· +δὲ +ἡμεῖς +ἐξεπλεύσαμεν +μετὰ +τὰς +ἡμέρας +τῶν +ἀζύμων +ἀπὸ +Φιλίππων, +καὶ +ἤλθομεν +πρὸς +αὐτοὺς +εἰς +τὴν +Τρῳάδα +ἄχρι +ἡμερῶν +πέντε, +ὅπου +διετρίψαμεν +ἡμέρας +ἑπτά. +δὲ +Ἐν +τῇ +μιᾷ +τῶν +σαββάτων +συνηγμένων +ἡμῶν +κλάσαι +ἄρτον +ὁ +Παῦλος +διελέγετο +αὐτοῖς, +μέλλων +ἐξιέναι +τῇ +ἐπαύριον, +τε +παρέτεινέν +τὸν +λόγον +μέχρι +μεσονυκτίου. +δὲ +ἦσαν +λαμπάδες +ἱκαναὶ +ἐν +τῷ +ὑπερῴῳ +οὗ +ἦμεν +συνηγμένοι. +δέ +τις +νεανίας +ὀνόματι +Εὔτυχος +καθεζόμενος +ἐπὶ +τῆς +θυρίδος, +καταφερόμενος +ὕπνῳ +βαθεῖ, +διαλεγομένου +τοῦ +Παύλου +ἐπὶ +πλεῖον, +κατενεχθεὶς +ἀπὸ +τοῦ +ὕπνου +ἔπεσεν +ἀπὸ +τοῦ +τριστέγου +κάτω +καὶ +ἤρθη +νεκρός. +δὲ +καταβὰς +ὁ +Παῦλος +ἐπέπεσεν +αὐτῷ +καὶ +συμπεριλαβὼν +εἶπεν +Μὴ +θορυβεῖσθε· +γὰρ +ἡ +ψυχὴ +αὐτοῦ +ἐν +αὐτῷ +ἐστιν. +δὲ +ἀναβὰς +καὶ +κλάσας +τὸν +ἄρτον +καὶ +γευσάμενος, +τε +ἐφ’ +ἱκανόν +ὁμιλήσας +ἄχρι +αὐγῆς, +οὕτως +ἐξῆλθεν. +δὲ +ἤγαγον +τὸν +παῖδα +ζῶντα, +καὶ +παρεκλήθησαν +οὐ +μετρίως. +δὲ +Ἠμεῖς +προελθόντες +ἐπὶ +τὸ +πλοῖον +ἀνήχθημεν +ἐπὶ +τὴν +Ἆσσον, +ἐκεῖθεν +μέλλοντες +ἀναλαμβάνειν +τὸν +Παῦλον· +γὰρ +οὕτως +διατεταγμένος +ἦν, +μέλλων +αὐτὸς +πεζεύειν. +δὲ +ὡς +συνέβαλλεν +ἡμῖν +εἰς +τὴν +Ἆσσον, +ἀναλαβόντες +αὐτὸν +ἤλθομεν +εἰς +Μιτυλήνην· +κἀκεῖθεν +ἀποπλεύσαντες +τῇ +ἐπιούσῃ +κατηντήσαμεν +ἄντικρυς +Χίου, +δὲ +τῇ +ἑτέρᾳ +παρεβάλομεν +εἰς +Σάμον, +δὲ +τῇ +ἐχομένῃ +ἤλθομεν +εἰς +Μίλητον. +γὰρ +κεκρίκει +ὁ +Παῦλος +παραπλεῦσαι +τὴν +Ἔφεσον, +ὅπως +μὴ +γένηται +αὐτῷ +χρονοτριβῆσαι +ἐν +τῇ +Ἀσίᾳ· +γὰρ, +ἔσπευδεν +εἰ +δυνατὸν +εἴη +αὐτῷ, +τὴν +ἡμέραν +τῆς +Πεντηκοστῆς +γενέσθαι +εἰς +Ἱεροσόλυμα. +δὲ +Ἀπὸ +τῆς +Μιλήτου +πέμψας +εἰς +Ἔφεσον +μετεκαλέσατο +τοὺς +πρεσβυτέρους +τῆς +ἐκκλησίας. +δὲ +ὡς +παρεγένοντο +πρὸς +αὐτὸν, +εἶπεν +αὐτοῖς +Ὑμεῖς +ἐπίστασθε, +ἀπὸ +πρώτης +ἡμέρας +ἀφ’ +ἧς +ἐπέβην +εἰς +τὴν +Ἀσίαν, +πῶς +μεθ’ +ὑμῶν +τὸν +πάντα +χρόνον +ἐγενόμην, +δουλεύων +τῷ +Κυρίῳ +μετὰ +πάσης +ταπεινοφροσύνης +καὶ +δακρύων +καὶ +πειρασμῶν +τῶν +συμβάντων +μοι +ἐν +ταῖς +ἐπιβουλαῖς +τῶν +Ἰουδαίων, +ὡς +ὑπεστειλάμην +οὐδὲν +τῶν +συμφερόντων +τοῦ +μὴ +ἀναγγεῖλαι +ὑμῖν +καὶ +διδάξαι +ὑμᾶς +δημοσίᾳ +καὶ +κατ’ +οἴκους, +διαμαρτυρόμενος +τε +Ἰουδαίοις +καὶ +Ἕλλησιν +τὴν +εἰς +Θεὸν +μετάνοιαν +καὶ +πίστιν +εἰς +τὸν +Κύριον +ἡμῶν +Ἰησοῦν. +καὶ +νῦν +ἰδοὺ +δεδεμένος +τῷ +πνεύματι +ἐγὼ +πορεύομαι +εἰς +Ἱερουσαλήμ, +τὰ +ἐν +αὐτῇ +συναντήσοντά +ἐμοὶ +μὴ +εἰδώς, +πλὴν +ὅτι +τὸ +Πνεῦμα +τὸ +Ἅγιον +κατὰ +πόλιν +διαμαρτύρεταί +μοι +λέγον +ὅτι +δεσμὰ +καὶ +θλίψεις +με +μένουσιν. +ἀλλ’ +οὐδενὸς +λόγου +ποιοῦμαι +τὴν +ψυχὴν +τιμίαν +ἐμαυτῷ +ὡς +τελειώσω +τὸν +δρόμον +μου +καὶ +τὴν +διακονίαν +ἣν +ἔλαβον +παρὰ +τοῦ +Κυρίου +Ἰησοῦ, +διαμαρτύρασθαι +τὸ +εὐαγγέλιον +τῆς +χάριτος +τοῦ +Θεοῦ. +καὶ +νῦν +ἰδοὺ +ἐγὼ +οἶδα +ὅτι +οὐκέτι +ὄψεσθε +τὸ +πρόσωπόν +μου +ὑμεῖς +πάντες +ἐν +οἷς +διῆλθον +κηρύσσων +τὴν +βασιλείαν. +διότι +μαρτύρομαι +ὑμῖν +ἐν +τῇ +σήμερον +ἡμέρᾳ +ὅτι +καθαρός +εἰμι +ἀπὸ +τοῦ +αἵματος +πάντων· +γὰρ +οὐ +ὑπεστειλάμην +τοῦ +μὴ +ἀναγγεῖλαι +πᾶσαν +τὴν +βουλὴν +τοῦ +Θεοῦ +ὑμῖν. +προσέχετε +ἑαυτοῖς +καὶ +παντὶ +τῷ +ποιμνίῳ, +ἐν +ᾧ +ὑμᾶς +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἔθετο +ἐπισκόπους, +ποιμαίνειν +τὴν +ἐκκλησίαν +τοῦ +Θεοῦ, +ἣν +περιεποιήσατο +διὰ +τοῦ +αἵματος +τοῦ +ἰδίου. +ἐγὼ +οἶδα +ὅτι +εἰσελεύσονται +μετὰ +τὴν +ἄφιξίν +μου +λύκοι +βαρεῖς +εἰς +ὑμᾶς +μὴ +φειδόμενοι +τοῦ +ποιμνίου, +καὶ +ἐξ +ὑμῶν +αὐτῶν +ἀναστήσονται +ἄνδρες +λαλοῦντες +διεστραμμένα +τοῦ +ἀποσπᾶν +τοὺς +μαθητὰς +ὀπίσω +ἑαυτῶν. +διὸ +γρηγορεῖτε, +μνημονεύοντες +ὅτι +τριετίαν +νύκτα +καὶ +ἡμέραν +οὐκ +ἐπαυσάμην +μετὰ +δακρύων +νουθετῶν +ἕνα +ἕκαστον. +καὶ +τὰ +νῦν +παρατίθεμαι +ὑμᾶς +τῷ +Κυρίῳ +καὶ +τῷ +λόγῳ +τῆς +χάριτος +αὐτοῦ +τῷ +δυναμένῳ +οἰκοδομῆσαι +καὶ +δοῦναι +τὴν +κληρονομίαν +ἐν +τοῖς +ἡγιασμένοις +πᾶσιν. +ἀργυρίου +ἢ +χρυσίου +ἢ +ἱματισμοῦ +οὐδενὸς +ἐπεθύμησα· +αὐτοὶ +γινώσκετε +ὅτι +ταῖς +χρείαις +μου +καὶ +τοῖς +οὖσιν +μετ’ +ἐμοῦ +ὑπηρέτησαν +αἱ +χεῖρες +αὗται. +πάντα +ὑπέδειξα +ὑμῖν, +ὅτι +οὕτως +κοπιῶντας +δεῖ +ἀντιλαμβάνεσθαι +τῶν +ἀσθενούντων, +τε +μνημονεύειν +τῶν +λόγων +τοῦ +Κυρίου +Ἰησοῦ, +ὅτι +αὐτὸς +εἶπεν +Μακάριόν +ἐστιν +μᾶλλον +διδόναι +ἢ +λαμβάνειν. +καὶ +ταῦτα +εἰπὼν, +θεὶς +τὰ +γόνατα +αὐτοῦ +σὺν +πᾶσιν +αὐτοῖς +προσηύξατο. +δὲ +ἱκανὸς +ἐγένετο +κλαυθμὸς +πάντων, +καὶ +ἐπιπεσόντες +ἐπὶ +τὸν +τράχηλον +τοῦ +Παύλου +κατεφίλουν +αὐτόν, +ὀδυνώμενοι +μάλιστα +ἐπὶ +τῷ +λόγῳ +ᾧ +εἰρήκει, +ὅτι +οὐκέτι +μέλλουσιν +τὸ +πρόσωπον +αὐτοῦ +θεωρεῖν. +δὲ +προέπεμπον +αὐτὸν +εἰς +τὸ +πλοῖον. +δὲ +Ὡς +ἐγένετο +ἀναχθῆναι +ἡμᾶς +ἀποσπασθέντας +ἀπ’ +αὐτῶν, +εὐθυδρομήσαντες +ἤλθομεν +εἰς +τὴν +Κῶ, +δὲ +τῇ +ἑξῆς +εἰς +τὴν +Ῥόδον +κἀκεῖθεν +εἰς +Πάταρα· +καὶ +εὑρόντες +πλοῖον +διαπερῶν +εἰς +Φοινίκην, +ἐπιβάντες +ἀνήχθημεν. +δὲ +ἀναφάναντες +τὴν +Κύπρον +καὶ +καταλιπόντες +αὐτὴν +εὐώνυμον +ἐπλέομεν +εἰς +Συρίαν, +καὶ +κατήλθομεν +εἰς +Τύρον· +γὰρ +ἐκεῖσε +τὸ +πλοῖον +ἦν +ἀποφορτιζόμενον +τὸν +γόμον. +δὲ +ἀνευρόντες +τοὺς +μαθητὰς +ἐπεμείναμεν +αὐτοῦ +ἡμέρας +ἑπτά· +οἵτινες +τῷ +Παύλῳ +ἔλεγον +διὰ +τοῦ +Πνεύματος +μὴ +ἐπιβαίνειν +εἰς +Ἱεροσόλυμα. +δὲ +ὅτε +ἐγένετο +ἐξαρτίσαι +ἡμᾶς +τὰς +ἡμέρας, +ἐξελθόντες +ἐπορευόμεθα +προπεμπόντων +ἡμᾶς +πάντων +σὺν +γυναιξὶ +καὶ +τέκνοις +ἕως +ἔξω +τῆς +πόλεως, +καὶ +θέντες +τὰ +γόνατα +ἐπὶ +τὸν +αἰγιαλὸν +προσευξάμενοι +ἀπησπασάμεθα +ἀλλήλους, +καὶ +ἐνέβημεν +εἰς +τὸ +πλοῖον, +δὲ +ἐκεῖνοι +ὑπέστρεψαν +εἰς +τὰ +ἴδια. +δὲ +Ἠμεῖς +τὸν +πλοῦν +διανύσαντες +ἀπὸ +Τύρου +κατηντήσαμεν +εἰς +Πτολεμαΐδα, +καὶ +ἀσπασάμενοι +τοὺς +ἀδελφοὺς +ἐμείναμεν +ἡμέραν +μίαν +παρ’ +αὐτοῖς. +δὲ +τῇ +ἐπαύριον +ἐξελθόντες +ἤλθομεν +εἰς +Καισαρίαν, +καὶ +εἰσελθόντες +εἰς +τὸν +οἶκον +Φιλίππου +τοῦ +εὐαγγελιστοῦ +ὄντος +ἐκ +τῶν +ἑπτὰ +ἐμείναμεν +παρ’ +αὐτῷ. +δὲ +τούτῳ +ἦσαν +θυγατέρες +τέσσαρες +παρθένοι +προφητεύουσαι. +δὲ +Ἐπιμενόντων +ἡμέρας +πλείους +κατῆλθέν +τις +ἀπὸ +τῆς +Ἰουδαίας +προφήτης +ὀνόματι +Ἄγαβος, +καὶ +ἐλθὼν +πρὸς +ἡμᾶς +καὶ +ἄρας +τὴν +ζώνην +τοῦ +Παύλου, +δήσας +ἑαυτοῦ +τοὺς +πόδας +καὶ +τὰς +χεῖρας +εἶπεν +Τάδε +λέγει +τὸ +Πνεῦμα +τὸ +Ἅγιον +Τὸν +ἄνδρα +οὗ +ἐστιν +ἡ +ζώνη +αὕτη +οὕτως +δήσουσιν +ἐν +Ἱερουσαλὴμ +οἱ +Ἰουδαῖοι +καὶ +παραδώσουσιν +εἰς +χεῖρας +ἐθνῶν. +δὲ +ὡς +ἠκούσαμεν +ταῦτα, +παρεκαλοῦμεν +τε +ἡμεῖς +καὶ +οἱ +ἐντόπιοι +τοῦ +μὴ +ἀναβαίνειν +αὐτὸν +εἰς +Ἱερουσαλήμ. +τότε +ἀπεκρίθη +ὁ +Παῦλος +Τί +ποιεῖτε +κλαίοντες +καὶ +συνθρύπτοντές +μου +τὴν +καρδίαν; +γὰρ +ἐγὼ +οὐ +μόνον +δεθῆναι +ἀλλὰ +καὶ +ἀποθανεῖν +εἰς +Ἱερουσαλὴμ +ἑτοίμως +ἔχω +ὑπὲρ +τοῦ +ὀνόματος +τοῦ +Κυρίου +Ἰησοῦ. +δὲ +μὴ +πειθομένου +αὐτοῦ +ἡσυχάσαμεν +εἰπόντες +Τοῦ +Κυρίου +τὸ +θέλημα +γινέσθω. +δὲ +Μετὰ +τὰς +ἡμέρας +ταύτας +ἐπισκευασάμενοι +ἀνεβαίνομεν +εἰς +Ἱεροσόλυμα· +δὲ +συνῆλθον +καὶ +τῶν +μαθητῶν +ἀπὸ +Καισαρίας +σὺν +ἡμῖν, +ἄγοντες +παρ’ +ᾧ +ξενισθῶμεν +Μνάσωνί +τινι +Κυπρίῳ, +ἀρχαίῳ +μαθητῇ. +δὲ +Γενομένων +ἡμῶν +εἰς +Ἱεροσόλυμα +ἀσμένως +ἀπεδέξαντο +ἡμᾶς +οἱ +ἀδελφοί. +δὲ +τῇ +ἐπιούσῃ +εἰσῄει +ὁ +Παῦλος +σὺν +ἡμῖν +πρὸς +Ἰάκωβον, +τε +παρεγένοντο +πάντες +οἱ +πρεσβύτεροι. +καὶ +ἀσπασάμενος +αὐτοὺς +ἐξηγεῖτο +καθ’ +ἓν +ἕκαστον +ὧν +ἐποίησεν +ὁ +Θεὸς +ἐν +τοῖς +ἔθνεσιν +διὰ +τῆς +διακονίας +αὐτοῦ. +δὲ +οἱ +ἀκούσαντες +ἐδόξαζον +τὸν +Θεόν, +τε +εἶπάν +αὐτῷ +Θεωρεῖς, +ἀδελφέ, +πόσαι +μυριάδες +τῶν +πεπιστευκότων, +εἰσὶν +ἐν +τοῖς +Ἰουδαίοις +καὶ +πάντες +ζηλωταὶ +τοῦ +νόμου +ὑπάρχουσιν· +δὲ +κατηχήθησαν +περὶ +σοῦ +ὅτι +διδάσκεις +ἀποστασίαν +ἀπὸ +Μωϋσέως +τοὺς +κατὰ +τὰ +ἔθνη +πάντας +Ἰουδαίους, +λέγων +μὴ +περιτέμνειν +αὐτοὺς +τὰ +τέκνα +μηδὲ +τοῖς +ἔθεσιν +περιπατεῖν. +οὖν +τί +ἐστιν; +πάντως +ἀκούσονται +ὅτι +ἐλήλυθας. +οὖν +τοῦτο +ποίησον +ὅ +σοι +λέγομεν· +εἰσὶν +ἡμῖν +ἄνδρες +τέσσαρες +εὐχὴν +ἔχοντες +ἐφ’ +ἑαυτῶν· +τούτους +παραλαβὼν +ἁγνίσθητι +σὺν +αὐτοῖς, +καὶ +δαπάνησον +ἐπ’ +αὐτοῖς +ἵνα +ξυρήσονται +τὴν +κεφαλήν, +καὶ +γνώσονται +πάντες +ὅτι +ὧν +κατήχηνται +περὶ +σοῦ +οὐδέν +ἐστιν, +ἀλλὰ +στοιχεῖς +καὶ +αὐτὸς +φυλάσσων +τὸν +νόμον. +δὲ +περὶ +τῶν +πεπιστευκότων +ἐθνῶν +ἡμεῖς +ἐπεστείλαμεν +κρίναντες +φυλάσσεσθαι +αὐτοὺς +τε +τό +εἰδωλόθυτον +καὶ +αἷμα +καὶ +πνικτὸν +καὶ +πορνείαν. +τότε +ὁ +Παῦλος +παραλαβὼν +τοὺς +ἄνδρας +τῇ +ἐχομένῃ +ἡμέρᾳ +σὺν +αὐτοῖς +ἁγνισθεὶς +εἰσῄει +εἰς +τὸ +ἱερόν, +διαγγέλλων +τὴν +ἐκπλήρωσιν +τῶν +ἡμερῶν +τοῦ +ἁγνισμοῦ, +ἕως +οὗ +προσηνέχθη +ὑπὲρ +ἑνὸς +ἑκάστου +αὐτῶν +ἡ +προσφορά. +δὲ +Ὡς +ἔμελλον +αἱ +ἑπτὰ +ἡμέραι +συντελεῖσθαι, +οἱ +ἀπὸ +τῆς +Ἀσίας +Ἰουδαῖοι +θεασάμενοι +αὐτὸν +ἐν +τῷ +ἱερῷ +συνέχεον +πάντα +τὸν +ὄχλον, +καὶ +ἐπέβαλαν +ἐπ’ +αὐτὸν +τὰς +χεῖρας, +κράζοντες +Ἄνδρες +Ἰσραηλεῖται, +βοηθεῖτε· +οὗτός +ἐστιν +ὁ +ἄνθρωπος +ὁ +κατὰ +τοῦ +λαοῦ +καὶ +τοῦ +νόμου +καὶ +τοῦ +τόπου +τούτου +πάντας +πανταχῇ +διδάσκων, +τε +ἔτι +καὶ +Ἕλληνας +εἰσήγαγεν +εἰς +τὸ +ἱερὸν +καὶ +κεκοίνωκεν +τὸν +ἅγιον +τόπον +τοῦτον. +γὰρ +ἦσαν +προεωρακότες +Τρόφιμον +τὸν +Ἐφέσιον +ἐν +τῇ +πόλει +σὺν +αὐτῷ, +ἐνόμιζον +ὅτι +ὃν +εἰς +τὸ +ἱερὸν +εἰσήγαγεν +ὁ +Παῦλος. +τε +ἐκινήθη +ἡ +πόλις +ὅλη +καὶ +ἐγένετο +συνδρομὴ +τοῦ +λαοῦ, +καὶ +ἐπιλαβόμενοι +τοῦ +Παύλου +εἷλκον +αὐτὸν +ἔξω +τοῦ +ἱεροῦ, +καὶ +εὐθέως +ἐκλείσθησαν +αἱ +θύραι. +τε +Ζητούντων +αὐτὸν +ἀποκτεῖναι +ἀνέβη +φάσις +τῷ +χιλιάρχῳ +τῆς +σπείρης +ὅτι +ὅλη +Ἱερουσαλήμ· +συνχύννεται +ὃς +ἐξαυτῆς +παραλαβὼν +στρατιώτας +καὶ +ἑκατοντάρχας +κατέδραμεν +ἐπ’ +αὐτούς· +δὲ +οἱ +ἰδόντες +τὸν +χιλίαρχον +καὶ +τοὺς +στρατιώτας +ἐπαύσαντο +τύπτοντες +τὸν +Παῦλον. +τότε +ἐγγίσας +ὁ +χιλίαρχος +ἐπελάβετο +αὐτοῦ +καὶ +ἐκέλευσεν +δεθῆναι +ἁλύσεσι +δυσί, +καὶ +ἐπυνθάνετο +τίς +εἴη +καὶ +τί +ἐστιν +πεποιηκώς. +δὲ +ἄλλοι +ἄλλο +τι +ἐπεφώνουν +ἐν +τῷ +ὄχλῳ· +δὲ +μὴ +δυναμένου +αὐτοῦ +γνῶναι +τὸ +ἀσφαλὲς +διὰ +τὸν +θόρυβον, +ἐκέλευσεν +ἄγεσθαι +αὐτὸν +εἰς +τὴν +παρεμβολήν. +δὲ +ὅτε +ἐγένετο +ἐπὶ +τοὺς +ἀναβαθμούς, +συνέβη +βαστάζεσθαι +αὐτὸν +ὑπὸ +τῶν +στρατιωτῶν +διὰ +τὴν +βίαν +τοῦ +ὄχλου· +γὰρ +ἠκολούθει +τὸ +πλῆθος +τοῦ +λαοῦ +κράζοντες +Αἶρε +αὐτόν. +τε +Μέλλων +εἰσάγεσθαι +εἰς +τὴν +παρεμβολὴν +ὁ +Παῦλος +λέγει +τῷ +χιλιάρχῳ +Εἰ +ἔξεστίν +μοι +εἰπεῖν +τι +πρὸς +σέ; +δὲ +ὁ +ἔφη +Ἑλληνιστὶ +γινώσκεις; +ἄρα +οὐκ +σὺ +εἶ +ὁ +Αἰγύπτιος +ὁ +πρὸ +τούτων +τῶν +ἡμερῶν +ἀναστατώσας +καὶ +ἐξαγαγὼν +εἰς +τὴν +ἔρημον +τοὺς +τετρακισχιλίους +ἄνδρας +τῶν +σικαρίων; +δὲ +εἶπεν +ὁ +Παῦλος +μέν +Ἐγὼ +εἰμι +ἄνθρωπος +Ἰουδαῖος, +Ταρσεὺς, +τῆς +Κιλικίας +οὐκ +ἀσήμου +πόλεως +πολίτης· +δέ +δέομαι +σου, +ἐπίτρεψόν +μοι +λαλῆσαι +πρὸς +τὸν +λαόν. +δὲ +ἐπιτρέψαντος +αὐτοῦ +ὁ +Παῦλος +ἑστὼς +ἐπὶ +τῶν +ἀναβαθμῶν +κατέσεισεν +τῇ +χειρὶ +τῷ +λαῷ· +δὲ +πολλῆς +σιγῆς +γενομένης +προσεφώνησεν +τῇ +Ἑβραΐδι +διαλέκτῳ +λέγων +Ἄνδρες +ἀδελφοὶ +καὶ +πατέρες, +ἀκούσατέ +μου +τῆς +πρὸς +ὑμᾶς +νυνὶ +ἀπολογίας. +δὲ +—ἀκούσαντες +ὅτι +τῇ +Ἑβραΐδι +διαλέκτῳ +προσεφώνει +αὐτοῖς +μᾶλλον +παρέσχον +ἡσυχίαν. +καὶ +φησίν— +Ἐγώ +εἰμι +ἀνὴρ +Ἰουδαῖος, +γεγεννημένος +ἐν +Ταρσῷ +τῆς +Κιλικίας, +δὲ +ἀνατεθραμμένος +ἐν +τῇ +πόλει +ταύτῃ, +παρὰ +τοὺς +πόδας +Γαμαλιήλ +πεπαιδευμένος +κατὰ +ἀκρίβειαν +τοῦ +πατρῴου +νόμου, +ὑπάρχων +ζηλωτὴς +τοῦ +Θεοῦ +καθὼς +πάντες +ὑμεῖς +ἐστε +σήμερον· +ὃς +ταύτην +τὴν +Ὁδὸν +ἐδίωξα +ἄχρι +θανάτου, +δεσμεύων +καὶ +παραδιδοὺς +εἰς +φυλακὰς +τε +ἄνδρας +καὶ +γυναῖκας, +ὡς +καὶ +ὁ +ἀρχιερεὺς +μαρτυρεῖ +μοι +καὶ +πᾶν +τὸ +πρεσβυτέριον· +παρ’ +ὧν +καὶ +ἐπιστολὰς +δεξάμενος +πρὸς +τοὺς +ἀδελφοὺς +εἰς +Δαμασκὸν +ἐπορευόμην, +ἄξων +καὶ +τοὺς +ἐκεῖσε +ὄντας +δεδεμένους +εἰς +Ἱερουσαλὴμ +ἵνα +τιμωρηθῶσιν. +δέ +Ἐγένετο +μοι +πορευομένῳ +καὶ +ἐγγίζοντι +τῇ +Δαμασκῷ +περὶ +μεσημβρίαν +ἐξαίφνης +ἐκ +τοῦ +οὐρανοῦ +περιαστράψαι +φῶς +ἱκανὸν +περὶ +ἐμέ, +τε +ἔπεσά +εἰς +τὸ +ἔδαφος +καὶ +ἤκουσα +φωνῆς +λεγούσης +μοι +Σαοὺλ +Σαούλ, +τί +με +διώκεις; +δὲ +ἐγὼ +ἀπεκρίθην +Τίς +εἶ, +Κύριε; +τε +εἶπέν +πρὸς +ἐμέ +Ἐγώ +εἰμι +Ἰησοῦς +ὁ +Ναζωραῖος, +ὃν +σὺ +διώκεις. +δὲ +μὲν +οἱ +σὺν +ἐμοὶ +ὄντες +τὸ +φῶς +ἐθεάσαντο, +δὲ +οὐκ +ἤκουσαν +τὴν +φωνὴν +τοῦ +λαλοῦντός +μοι. +δέ +εἶπον +Τί +ποιήσω, +Κύριε; +δὲ +ὁ +Κύριος +εἶπεν +πρός +με +Ἀναστὰς +πορεύου +εἰς +Δαμασκόν, +κἀκεῖ +σοι +λαληθήσεται +περὶ +πάντων +ὧν +ποιῆσαι. +τέτακταί +σοι +δὲ +ὡς +οὐκ +ἐνέβλεπον +ἀπὸ +τῆς +δόξης +τοῦ +φωτὸς +ἐκείνου, +χειραγωγούμενος +ὑπὸ +τῶν +συνόντων +μοι +ἦλθον +εἰς +Δαμασκόν. +δέ +Ἀνανίας +τις +ἀνὴρ +εὐλαβὴς +κατὰ +τὸν +νόμον, +μαρτυρούμενος +ὑπὸ +πάντων +τῶν +κατοικούντων +Ἰουδαίων, +ἐλθὼν +πρὸς +ἐμὲ +καὶ +ἐπιστὰς +εἶπέν +μοι +Σαοὺλ +ἀδελφέ, +ἀνάβλεψον. +κἀγὼ +αὐτῇ +τῇ +ὥρᾳ +ἀνέβλεψα +εἰς +αὐτόν. +δὲ +ὁ +εἶπεν +Ὁ +Θεὸς +τῶν +πατέρων +ἡμῶν +προεχειρίσατό +σε +γνῶναι +τὸ +θέλημα +αὐτοῦ +καὶ +ἰδεῖν +τὸν +Δίκαιον +καὶ +ἀκοῦσαι +φωνὴν +ἐκ +τοῦ +στόματος +αὐτοῦ, +ὅτι +ἔσῃ +αὐτῷ +πρὸς +πάντας +ἀνθρώπους +μάρτυς +ὧν +ἑώρακας +καὶ +ἤκουσας. +καὶ +νῦν +τί +μέλλεις; +ἀναστὰς +βάπτισαι +καὶ +ἀπόλουσαι +τὰς +ἁμαρτίας +σου, +ἐπικαλεσάμενος +τὸ +ὄνομα +αὐτοῦ. +δέ +Ἐγένετο +μοι +ὑποστρέψαντι +εἰς +Ἱερουσαλὴμ +καὶ +προσευχομένου +μου +ἐν +τῷ +ἱερῷ +γενέσθαι +με +ἐν +ἐκστάσει +καὶ +ἰδεῖν +αὐτὸν +λέγοντά +μοι +Σπεῦσον +καὶ +ἔξελθε +ἐν +τάχει +ἐξ +Ἱερουσαλήμ, +διότι +οὐ +παραδέξονταί +σου +μαρτυρίαν +περὶ +ἐμοῦ. +κἀγὼ +εἶπον +Κύριε, +αὐτοὶ +ἐπίστανται +ὅτι +ἐγὼ +ἤμην +φυλακίζων +καὶ +δέρων +κατὰ +τὰς +συναγωγὰς +τοὺς +πιστεύοντας +ἐπὶ +σέ· +καὶ +ὅτε +ἐξεχύννετο +τὸ +αἷμα +Στεφάνου +τοῦ +μάρτυρός +σου, +καὶ +αὐτὸς +ἤμην +ἐφεστὼς +καὶ +συνευδοκῶν +καὶ +φυλάσσων +τὰ +ἱμάτια +τῶν +ἀναιρούντων +αὐτόν. +καὶ +εἶπεν +πρός +με +Πορεύου, +ὅτι +ἐγὼ +εἰς +ἔθνη +μακρὰν +ἐξαποστελῶ +σε. +δὲ +Ἤκουον +αὐτοῦ +ἄχρι +τούτου +τοῦ +λόγου, +καὶ +ἐπῆραν +τὴν +φωνὴν +αὐτῶν +λέγοντες +Αἶρε +ἀπὸ +τῆς +γῆς +τὸν +τοιοῦτον· +γὰρ +οὐ +καθῆκεν +αὐτὸν +ζῆν. +τε +κραυγαζόντων +αὐτῶν +καὶ +ῥιπτούντων +τὰ +ἱμάτια +καὶ +κονιορτὸν +βαλλόντων +εἰς +τὸν +ἀέρα, +ἐκέλευσεν +ὁ +χιλίαρχος +εἰσάγεσθαι +αὐτὸν +εἰς +τὴν +παρεμβολήν, +εἴπας +μάστιξιν +ἀνετάζεσθαι +αὐτὸν, +ἵνα +ἐπιγνῷ +δι’ +ἣν +αἰτίαν +οὕτως +ἐπεφώνουν +αὐτῷ. +δὲ +ὡς +προέτειναν +αὐτὸν +τοῖς +ἱμᾶσιν, +εἶπεν +πρὸς +τὸν +ἑστῶτα +ἑκατόνταρχον +ὁ +Παῦλος +Εἰ +ἄνθρωπον +Ῥωμαῖον +καὶ +ἀκατάκριτον +μαστίζειν; +ἔξεστιν +ὑμῖν +δὲ +ἀκούσας +ὁ +ἑκατοντάρχης +προσελθὼν +τῷ +χιλιάρχῳ +ἀπήγγειλεν +λέγων +μέλλεις +Τί +ποιεῖν; +γὰρ +ὁ +ἄνθρωπος +οὗτος +Ῥωμαῖός +ἐστιν. +δὲ +προσελθὼν +ὁ +χιλίαρχος +εἶπεν +αὐτῷ +Λέγε +μοι, +σὺ +Ῥωμαῖος +εἶ; +δὲ +ὁ +ἔφη +Ναί. +δὲ +ἀπεκρίθη +ὁ +χιλίαρχος +Ἐγὼ +πολλοῦ +κεφαλαίου +τὴν +πολιτείαν +ταύτην +ἐκτησάμην. +δὲ +ὁ +Παῦλος +ἔφη +δὲ +Ἐγὼ +καὶ +γεγέννημαι. +οὖν +εὐθέως +ἀπέστησαν +ἀπ’ +αὐτοῦ +οἱ +μέλλοντες +αὐτὸν +ἀνετάζειν· +δὲ +καὶ +ὁ +χιλίαρχος +ἐφοβήθη +ἐπιγνοὺς +ὅτι +Ῥωμαῖός +ἐστιν +καὶ +ὅτι +αὐτὸν +ἦν +δεδεκώς. +δὲ +Τῇ +ἐπαύριον +βουλόμενος +γνῶναι +τὸ +ἀσφαλὲς, +τὸ +τί +κατηγορεῖται +ὑπὸ +τῶν +Ἰουδαίων, +ἔλυσεν +αὐτόν, +καὶ +ἐκέλευσεν +συνελθεῖν +τοὺς +ἀρχιερεῖς +καὶ +πᾶν +τὸ +συνέδριον, +καὶ +καταγαγὼν +τὸν +Παῦλον +ἔστησεν +εἰς +αὐτούς. +δὲ +ὁ +Παῦλος +ἀτενίσας +τῷ +συνεδρίῳ +εἶπεν +Ἄνδρες +ἀδελφοί, +ἐγὼ +πάσῃ +συνειδήσει +ἀγαθῇ +πεπολίτευμαι +τῷ +Θεῷ +ἄχρι +ταύτης +τῆς +ἡμέρας. +δὲ +ὁ +ἀρχιερεὺς +Ἀνανίας +ἐπέταξεν +τοῖς +παρεστῶσιν +αὐτῷ +τύπτειν +αὐτοῦ +τὸ +στόμα. +τότε +ὁ +Παῦλος +πρὸς +αὐτὸν +εἶπεν +Τύπτειν +σε +μέλλει +ὁ +Θεός, +τοῖχε +κεκονιαμένε· +καὶ +σὺ +κάθῃ +κρίνων +με +κατὰ +τὸν +νόμον, +καὶ +παρανομῶν +κελεύεις +με +τύπτεσθαι; +δὲ +οἱ +παρεστῶτες +εἶπαν +Τὸν +ἀρχιερέα +τοῦ +Θεοῦ +λοιδορεῖς; +τε +ἔφη +ὁ +Παῦλος +Οὐκ +ᾔδειν, +ἀδελφοί, +ὅτι +ἐστὶν +ἀρχιερεύς· +γὰρ +γέγραπται +ὅτι +Ἄρχοντα +τοῦ +λαοῦ +σου +οὐκ +ἐρεῖς +κακῶς. +δὲ +ὁ +Παῦλος +γνοὺς +ὅτι +τὸ +ἓν +μέρος +ἐστὶν +Σαδδουκαίων +δὲ +τὸ +ἕτερον +Φαρισαίων +ἔκραζεν +ἐν +τῷ +συνεδρίῳ +Ἄνδρες +ἀδελφοί, +ἐγὼ +Φαρισαῖός +εἰμι, +υἱὸς +Φαρισαίων· +περὶ +ἐλπίδος +καὶ +ἀναστάσεως +νεκρῶν +κρίνομαι. +δὲ +τοῦτο +αὐτοῦ +λαλοῦντος +ἐγένετο +στάσις +τῶν +Φαρισαίων +καὶ +Σαδδουκαίων, +καὶ +ἐσχίσθη +τὸ +πλῆθος. +γὰρ +Σαδδουκαῖοι +λέγουσιν +μὴ +εἶναι +ἀνάστασιν +μήτε +ἄγγελον +μήτε +πνεῦμα, +δὲ +Φαρισαῖοι +ὁμολογοῦσιν +τὰ +ἀμφότερα. +δὲ +ἐγένετο +κραυγὴ +μεγάλη, +καὶ +ἀναστάντες +τινὲς +τῶν +γραμματέων +τοῦ +μέρους +τῶν +Φαρισαίων +διεμάχοντο +λέγοντες +Οὐδὲν +κακὸν +εὑρίσκομεν +ἐν +τῷ +ἀνθρώπῳ +τούτῳ· +δὲ +εἰ +πνεῦμα +ἐλάλησεν +αὐτῷ +ἢ +ἄγγελος; +δὲ +πολλῆς +στάσεως +γινομένης +ὁ +χιλίαρχος +φοβηθεὶς +μὴ +διασπασθῇ +ὁ +Παῦλος +ὑπ’ +αὐτῶν, +ἐκέλευσεν +τὸ +στράτευμα +καταβὰν +ἁρπάσαι +αὐτὸν +ἐκ +μέσου +αὐτῶν +τε +ἄγειν +εἰς +τὴν +παρεμβολήν. +δὲ +Τῇ +ἐπιούσῃ +νυκτὶ +ἐπιστὰς +αὐτῷ +ὁ +Κύριος +εἶπεν +Θάρσει· +γὰρ +ὡς +διεμαρτύρω +τὰ +περὶ +ἐμοῦ +εἰς +Ἱερουσαλὴμ +οὕτω +δεῖ +σε +καὶ +εἰς +Ῥώμην +μαρτυρῆσαι. +δὲ +Γενομένης +ἡμέρας +ποιήσαντες +συστροφὴν +οἱ +Ἰουδαῖοι +ἀνεθεμάτισαν +ἑαυτοὺς, +λέγοντες +μήτε +φαγεῖν +μήτε +πιεῖν +ἕως +οὗ +ἀποκτείνωσιν +τὸν +Παῦλον. +δὲ +ἦσαν +πλείους +τεσσεράκοντα +οἱ +ταύτην +τὴν +συνωμοσίαν +ποιησάμενοι· +οἵτινες +προσελθόντες +τοῖς +ἀρχιερεῦσιν +καὶ +τοῖς +πρεσβυτέροις +εἶπαν +Ἀναθέματι +ἀνεθεματίσαμεν +ἑαυτοὺς +μηδενὸς +γεύσασθαι +ἕως +οὗ +ἀποκτείνωμεν +τὸν +Παῦλον. +οὖν +νῦν +ὑμεῖς +ἐμφανίσατε +τῷ +χιλιάρχῳ +σὺν +τῷ +συνεδρίῳ +ὅπως +καταγάγῃ +αὐτὸν +εἰς +ὑμᾶς +ὡς +μέλλοντας +διαγινώσκειν +ἀκριβέστερον +τὰ +περὶ +αὐτοῦ· +δὲ +ἡμεῖς +πρὸ +τοῦ +ἐγγίσαι +αὐτὸν +ἕτοιμοί +ἐσμεν +τοῦ +ἀνελεῖν +αὐτόν. +δὲ +ὁ +υἱὸς +τῆς +ἀδελφῆς +Παύλου +Ἀκούσας +τὴν +ἐνέδραν, +παραγενόμενος +καὶ +εἰσελθὼν +εἰς +τὴν +παρεμβολὴν +ἀπήγγειλεν +τῷ +Παύλῳ. +δὲ +ὁ +Παῦλος +προσκαλεσάμενος +ἕνα +τῶν +ἑκατονταρχῶν +ἔφη· +Τὸν +νεανίαν +τοῦτον +ἄπαγε +πρὸς +τὸν +χιλίαρχον, +γὰρ +ἔχει +ἀπαγγεῖλαί +τι +αὐτῷ. +μὲν +οὖν +ὁ +παραλαβὼν +αὐτὸν +ἤγαγεν +πρὸς +τὸν +χιλίαρχον +καὶ +φησίν +Ὁ +δέσμιος +Παῦλος +προσκαλεσάμενός +με +ἠρώτησεν +τοῦτον +τὸν +νεανίσκον +ἀγαγεῖν +πρὸς +σέ, +ἔχοντά +τι +λαλῆσαί +σοι. +δὲ +ὁ +χιλίαρχος +ἐπιλαβόμενος +τῆς +χειρὸς +αὐτοῦ +καὶ +ἀναχωρήσας +κατ’ +ἰδίαν +ἐπυνθάνετο +Τί +ἐστιν +ὃ +ἀπαγγεῖλαί +μοι; +ἔχεις +δὲ +εἶπεν +ὅτι +Οἱ +Ἰουδαῖοι +συνέθεντο +τοῦ +ἐρωτῆσαί +σε +ὅπως +αὔριον +τὸν +Παῦλον +καταγάγῃς +εἰς +τὸ +συνέδριον +ὡς +μέλλων +τι +ἀκριβέστερον +πυνθάνεσθαι +περὶ +αὐτοῦ. +οὖν +σὺ +μὴ +πεισθῇς +αὐτοῖς· +γὰρ +ἐνεδρεύουσιν +αὐτὸν +ἐξ +αὐτῶν +ἄνδρες +πλείους +τεσσεράκοντα, +οἵτινες +ἀνεθεμάτισαν +ἑαυτοὺς +μήτε +φαγεῖν +μήτε +πιεῖν +ἕως +οὗ +ἀνέλωσιν +αὐτόν, +καὶ +νῦν +εἰσιν +ἕτοιμοι +προσδεχόμενοι +τὴν +ἀπὸ +σοῦ +ἐπαγγελίαν. +μὲν +οὖν +ὁ +χιλίαρχος +ἀπέλυσε +τὸν +νεανίσκον, +παραγγείλας +μηδενὶ +ἐκλαλῆσαι +ὅτι +ταῦτα +ἐνεφάνισας +πρὸς +ἐμέ. +Καὶ +προσκαλεσάμενός +τινας +δύο +τῶν +ἑκατονταρχῶν +εἶπεν +Ἑτοιμάσατε +στρατιώτας +διακοσίους +καὶ +ἱππεῖς +ἑβδομήκοντα +καὶ +δεξιολάβους +διακοσίους, +ὅπως +πορευθῶσιν +ἕως +Καισαρίας, +ἀπὸ +τρίτης +ὥρας +τῆς +νυκτός, +τε +κτήνη +παραστῆσαι +ἵνα +ἐπιβιβάσαντες +τὸν +Παῦλον +διασώσωσι +πρὸς +Φήλικα +τὸν +ἡγεμόνα, +γράψας +ἐπιστολὴν +ἔχουσαν +τὸν +τύπον +τοῦτον +Κλαύδιος +Λυσίας +τῷ +κρατίστῳ +ἡγεμόνι +Φήλικι +χαίρειν. +Τὸν +ἄνδρα +τοῦτον +συλλημφθέντα +ὑπὸ +τῶν +Ἰουδαίων +καὶ +μέλλοντα +ἀναιρεῖσθαι +ὑπ’ +αὐτῶν +ἐπιστὰς +σὺν +τῷ +στρατεύματι +ἐξειλάμην, +μαθὼν +ὅτι +Ῥωμαῖός +ἐστιν· +τε +βουλόμενός +ἐπιγνῶναι +τὴν +αἰτίαν +δι’ +ἣν +ἐνεκάλουν +αὐτῷ, +κατήγαγον +εἰς +τὸ +συνέδριον +αὐτῶν· +εὗρον +ὃν +ἐγκαλούμενον +περὶ +ζητημάτων +τοῦ +νόμου +αὐτῶν, +δὲ +μηδὲν +ἄξιον +θανάτου +ἢ +δεσμῶν +ἔγκλημα. +ἔχοντα +δέ +μηνυθείσης +μοι +ἐπιβουλῆς +εἰς +τὸν +ἄνδρα +ἔσεσθαι, +ἐξαυτῆς +ἔπεμψα +πρὸς +σέ, +παραγγείλας +καὶ +τοῖς +κατηγόροις +λέγειν +πρὸς +αὐτὸν +ἐπὶ +σοῦ. +μὲν +οὖν +Οἱ +στρατιῶται +κατὰ +τὸ +διατεταγμένον +αὐτοῖς +ἀναλαβόντες +τὸν +Παῦλον +ἤγαγον +διὰ +νυκτὸς +εἰς +τὴν +Ἀντιπατρίδα· +δὲ +τῇ +ἐπαύριον +ἐάσαντες +τοὺς +ἱππεῖς +ἀπέρχεσθαι +σὺν +αὐτῷ, +ὑπέστρεψαν +εἰς +τὴν +παρεμβολήν· +οἵτινες +εἰσελθόντες +εἰς +τὴν +Καισαρίαν +καὶ +ἀναδόντες +τὴν +ἐπιστολὴν +τῷ +ἡγεμόνι, +παρέστησαν +καὶ +τὸν +Παῦλον +αὐτῷ. +δὲ +ἀναγνοὺς +καὶ +ἐπερωτήσας +ἐκ +ποίας +ἐπαρχείας +ἐστὶν, +καὶ +πυθόμενος +ὅτι +ἀπὸ +Κιλικίας +ἔφη, +Διακούσομαί +σου, +ὅταν +καὶ +οἱ +κατήγοροί +σου +παραγένωνται· +κελεύσας +ἐν +τῷ +πραιτωρίῳ +τοῦ +Ἠρῴδου +φυλάσσεσθαι +αὐτόν. +δὲ +Μετὰ +πέντε +ἡμέρας +κατέβη +ὁ +ἀρχιερεὺς +Ἀνανίας +μετὰ +πρεσβυτέρων +τινῶν +καὶ +ῥήτορος +Τερτύλλου +τινός, +οἵτινες +ἐνεφάνισαν +τῷ +ἡγεμόνι +κατὰ +τοῦ +Παύλου. +δὲ +κληθέντος +αὐτοῦ +ἤρξατο +κατηγορεῖν +ὁ +Τέρτυλλος +λέγων +Πολλῆς +εἰρήνης +τυγχάνοντες +διὰ +σοῦ +καὶ +διορθωμάτων +γινομένων +τῷ +ἔθνει +τούτῳ +διὰ +τῆς +σῆς +προνοίας, +τε +πάντῃ +καὶ +πανταχοῦ +ἀποδεχόμεθα, +μετὰ +πάσης +εὐχαριστίας. +κράτιστε +Φῆλιξ, +δὲ +ἵνα +μὴ +ἐπὶ +πλεῖόν +σε +ἐνκόπτω, +παρακαλῶ +ἀκοῦσαί +σε +ἡμῶν +συντόμως +τῇ +σῇ +ἐπιεικείᾳ. +γὰρ +εὑρόντες +τὸν +ἄνδρα +τοῦτον +λοιμὸν +καὶ +κινοῦντα +στάσεις +πᾶσιν +τοῖς +Ἰουδαίοις +τοῖς +κατὰ +τὴν +οἰκουμένην +τε +πρωτοστάτην +τῆς +τῶν +Ναζωραίων +αἱρέσεως, +ὃς +καὶ +τὸ +ἱερὸν +βεβηλῶσαι, +ἐπείρασεν +ὃν +καὶ +ἐκρατήσαμεν, +παρ’ +οὗ +δυνήσῃ +αὐτὸς +ἀνακρίνας +περὶ +πάντων +τούτων +ἐπιγνῶναι +ὧν +ἡμεῖς +κατηγοροῦμεν +αὐτοῦ. +δὲ +συνεπέθεντο +καὶ +οἱ +Ἰουδαῖοι +φάσκοντες +ταῦτα +οὕτως +ἔχειν. +τε +Ἀπεκρίθη +ὁ +Παῦλος, +νεύσαντος +αὐτῷ +τοῦ +ἡγεμόνος +λέγειν +Ἐκ +πολλῶν +ἐτῶν +ὄντα +σε +κριτὴν +τῷ +ἔθνει +τούτῳ +ἐπιστάμενος +εὐθύμως +τὰ +περὶ +ἐμαυτοῦ +ἀπολογοῦμαι, +δυναμένου +σου +ἐπιγνῶναι +ὅτι +οὐ +πλείους +εἰσίν +μοι +ἡμέραι +δώδεκα +ἀφ’ +ἧς +ἀνέβην +προσκυνήσων +εἰς +Ἱερουσαλήμ, +καὶ +εὗρόν +με +πρός +τινα +διαλεγόμενον +ἢ +ἐπίστασιν +ὄχλου, +ποιοῦντα +οὔτε +ἐν +τῷ +ἱερῷ +οὔτε +ἐν +ταῖς +συναγωγαῖς +οὔτε +κατὰ +τὴν +πόλιν, +οὐδὲ +δύνανταί +παραστῆσαι +σοι +περὶ +ὧν +νυνὶ +κατηγοροῦσίν +μου. +δὲ +ὁμολογῶ +τοῦτό +σοι, +ὅτι +κατὰ +τὴν +Ὁδὸν +ἣν +λέγουσιν +αἵρεσιν +οὕτως +λατρεύω +τῷ +πατρῴῳ +Θεῷ, +πιστεύων +πᾶσι +τοῖς +κατὰ +τὸν +νόμον +καὶ +τοῖς +ἐν +τοῖς +προφήταις +γεγραμμένοις, +ἔχων +ἐλπίδα +εἰς +τὸν +Θεόν, +ἣν +καὶ +αὐτοὶ +οὗτοι +προσδέχονται, +μέλλειν +ἔσεσθαι +ἀνάστασιν +τε +δικαίων +καὶ +ἀδίκων. +ἐν +τούτῳ +καὶ +αὐτὸς +ἀσκῶ +ἀπρόσκοπον +συνείδησιν +ἔχειν +πρὸς +τὸν +Θεὸν +καὶ +τοὺς +ἀνθρώπους +διὰ +παντός. +δὲ +δι’ +ἐτῶν +πλειόνων +ἐλεημοσύνας +ποιήσων +εἰς +τὸ +ἔθνος +μου +παρεγενόμην +καὶ +προσφοράς, +ἐν +αἷς +εὗρόν +με +ἡγνισμένον +ἐν +τῷ +ἱερῷ, +οὐ +μετὰ +ὄχλου +οὐδὲ +μετὰ +θορύβου, +δὲ +τινὲς +ἀπὸ +τῆς +Ἀσίας +Ἰουδαῖοι, +οὓς +ἐπὶ +σοῦ +παρεῖναι +καὶ +κατηγορεῖν +ἔδει +εἴ +τι +ἔχοιεν +πρὸς +ἐμέ. +ἢ +αὐτοὶ +οὗτοι +εἰπάτωσαν +τί +ἀδίκημα +εὗρον +στάντος +μου +ἐπὶ +τοῦ +συνεδρίου, +ἢ +περὶ +μιᾶς +ταύτης +φωνῆς +ἧς +ἐκέκραξα +ἐν +αὐτοῖς +ἑστὼς +ὅτι +Περὶ +ἀναστάσεως +νεκρῶν +ἐγὼ +κρίνομαι +σήμερον +ἐφ’ +ὑμῶν. +δὲ +Ἀνεβάλετο +αὐτοὺς +ὁ +Φῆλιξ, +ἀκριβέστερον +εἰδὼς +τὰ +περὶ +τῆς +Ὁδοῦ, +εἴπας +Ὅταν +Λυσίας +ὁ +χιλίαρχος +καταβῇ, +διαγνώσομαι +τὰ +καθ’ +ὑμᾶς· +διαταξάμενος +τῷ +ἑκατοντάρχῃ +τηρεῖσθαι +αὐτὸν +τε +ἔχειν +ἄνεσιν +καὶ +κωλύειν +μηδένα +τῶν +ἰδίων +αὐτοῦ +ὑπηρετεῖν +αὐτῷ. +δὲ +Μετὰ +ἡμέρας +τινὰς +ὁ +Φῆλιξ +παραγενόμενος +σὺν +Δρουσίλλῃ +τῇ +ἰδίᾳ +γυναικὶ +οὔσῃ +Ἰουδαίᾳ +μετεπέμψατο +τὸν +Παῦλον, +καὶ +ἤκουσεν +αὐτοῦ +περὶ +τῆς +εἰς +Χριστὸν +Ἰησοῦν +πίστεως. +δὲ +διαλεγομένου +αὐτοῦ +περὶ +δικαιοσύνης +καὶ +ἐγκρατείας +καὶ +τοῦ +κρίματος +τοῦ +μέλλοντος +ἔμφοβος +γενόμενος +ὁ +Φῆλιξ +ἀπεκρίθη +Τὸ +νῦν +ἔχον +πορεύου, +δὲ +καιρὸν +μεταλαβὼν +μετακαλέσομαί +σε· +ἅμα +καὶ +ἐλπίζων +ὅτι +χρήματα +δοθήσεται +αὐτῷ +ὑπὸ +τοῦ +Παύλου· +διὸ +καὶ +πυκνότερον +αὐτὸν +μεταπεμπόμενος +ὡμίλει +αὐτῷ. +δὲ +Διετίας +πληρωθείσης +ἔλαβεν +ὁ +Φῆλιξ +διάδοχον +Πόρκιον +Φῆστον· +τε +θέλων +χάριτα +καταθέσθαι +τοῖς +Ἰουδαίοις +ὁ +Φῆλιξ +κατέλιπε +τὸν +Παῦλον +δεδεμένον. +οὖν +Φῆστος +ἐπιβὰς +τῇ +ἐπαρχείῳ +μετὰ +τρεῖς +ἡμέρας +ἀνέβη +εἰς +Ἱεροσόλυμα +ἀπὸ +Καισαρίας, +τε +ἐνεφάνισάν +αὐτῷ +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρῶτοι +τῶν +Ἰουδαίων +κατὰ +τοῦ +Παύλου, +καὶ +παρεκάλουν +αὐτὸν +αἰτούμενοι +χάριν +κατ’ +αὐτοῦ, +ὅπως +μεταπέμψηται +αὐτὸν +εἰς +Ἱερουσαλήμ, +ἐνέδραν +ποιοῦντες +ἀνελεῖν +αὐτὸν +κατὰ +τὴν +ὁδόν. +μὲν +οὖν +ὁ +Φῆστος +ἀπεκρίθη +τηρεῖσθαι +τὸν +Παῦλον +εἰς +Καισαρίαν, +δὲ +ἑαυτὸν +μέλλειν +ἐν +τάχει +ἐκπορεύεσθαι· +οὖν +φησίν, +Οἱ +ἐν +ὑμῖν, +δυνατοὶ +συνκαταβάντες +κατηγορείτωσαν +αὐτοῦ. +εἴ +τί +ἄτοπον, +ἐστιν +ἐν +τῷ +ἀνδρὶ +δὲ +Διατρίψας +ἐν +αὐτοῖς +ἡμέρας +οὐ +πλείους +ὀκτὼ +ἢ +δέκα, +καταβὰς +εἰς +Καισαρίαν, +τῇ +ἐπαύριον +καθίσας +ἐπὶ +τοῦ +βήματος +ἐκέλευσεν +τὸν +Παῦλον +ἀχθῆναι. +δὲ +παραγενομένου +αὐτοῦ +περιέστησαν +αὐτὸν +οἱ +ἀπὸ +Ἱεροσολύμων +καταβεβηκότες +Ἰουδαῖοι, +πολλὰ +καὶ +βαρέα +αἰτιώματα +καταφέροντες, +ἃ +ἀποδεῖξαι, +οὐκ +ἴσχυον +τοῦ +Παύλου +ἀπολογουμένου +ὅτι +Οὔτε +εἰς +τὸν +νόμον +τῶν +Ἰουδαίων +οὔτε +εἰς +τὸ +ἱερὸν +οὔτε +εἰς +Καίσαρά +τι +ἥμαρτον. +δὲ +ὁ +Φῆστος +θέλων +τοῖς +Ἰουδαίοις +χάριν +καταθέσθαι, +ἀποκριθεὶς +τῷ +Παύλῳ +εἶπεν +Θέλεις +εἰς +Ἱεροσόλυμα +ἀναβὰς +ἐκεῖ +περὶ +τούτων +κριθῆναι +ἐπ’ +ἐμοῦ; +δὲ +εἶπεν +ὁ +Παῦλος +ἐπὶ +τοῦ +βήματος +Καίσαρος +Ἑστὼς +εἰμι, +οὗ +με +κρίνεσθαι. +δεῖ +Ἰουδαίους +οὐδὲν +ἠδίκηκα, +ὡς +καὶ +σὺ +κάλλιον +ἐπιγινώσκεις. +οὖν +μὲν +εἰ +ἀδικῶ +καὶ +ἄξιον +θανάτου +τι, +πέπραχά +οὐ +παραιτοῦμαι +τὸ +ἀποθανεῖν· +δὲ +εἰ +οὐδέν +ἐστιν +ὧν +οὗτοι +κατηγοροῦσίν +μου, +οὐδείς +δύναται +με +αὐτοῖς +χαρίσασθαι· +Καίσαρα +ἐπικαλοῦμαι. +τότε +ὁ +Φῆστος +συνλαλήσας +μετὰ +τοῦ +συμβουλίου +ἀπεκρίθη +Καίσαρα +ἐπικέκλησαι, +ἐπὶ +Καίσαρα +πορεύσῃ. +δὲ +Ἠμερῶν +τινῶν +διαγενομένων +Ἀγρίππας +ὁ +βασιλεὺς +καὶ +Βερνίκη +κατήντησαν +εἰς +Καισαρίαν +ἀσπασάμενοι +τὸν +Φῆστον. +δὲ +ὡς +πλείους +ἡμέρας +διέτριβον +ἐκεῖ, +ὁ +Φῆστος +τῷ +βασιλεῖ +ἀνέθετο +τὰ +κατὰ +τὸν +Παῦλον +λέγων +Ἀνήρ +τίς +ἐστιν +καταλελειμμένος +ὑπὸ +Φήλικος +δέσμιος, +περὶ +οὗ +γενομένου +μου +εἰς +Ἱεροσόλυμα +ἐνεφάνισαν +οἱ +ἀρχιερεῖς +καὶ +οἱ +πρεσβύτεροι +τῶν +Ἰουδαίων, +αἰτούμενοι +κατ’ +αὐτοῦ +καταδίκην· +πρὸς +οὓς +ἀπεκρίθην +ὅτι +οὐκ +ἔστιν +ἔθος +Ῥωμαίοις +χαρίζεσθαί +τινα +ἄνθρωπον +πρὶν +ἢ +ὁ +κατηγορούμενος +κατὰ +πρόσωπον +ἔχοι +τοὺς +κατηγόρους +τε +τόπον +ἀπολογίας +λάβοι +περὶ +τοῦ +ἐγκλήματος. +οὖν +συνελθόντων +ἐνθάδε +ἀναβολὴν +μηδεμίαν +ποιησάμενος +τῇ +ἑξῆς +καθίσας +ἐπὶ +τοῦ +βήματος +ἐκέλευσα +ἀχθῆναι +τὸν +ἄνδρα· +περὶ +οὗ +σταθέντες +οἱ +κατήγοροι +ἔφερον +οὐδεμίαν +αἰτίαν +ὧν +ἐγὼ +ὑπενόουν +πονηρῶν, +δέ +ζητήματα +τινα +περὶ +τῆς +ἰδίας +δεισιδαιμονίας +εἶχον +πρὸς +αὐτὸν +καὶ +περί +τινος +Ἰησοῦ +τεθνηκότος, +ὃν +ζῆν. +ἔφασκεν +ὁ +Παῦλος +δὲ +ἐγὼ +ἀπορούμενος +τὴν +περὶ +τούτων +ζήτησιν +ἔλεγον +εἰ +βούλοιτο +πορεύεσθαι +εἰς +Ἱεροσόλυμα +κἀκεῖ +κρίνεσθαι +περὶ +τούτων. +δὲ +τοῦ +Παύλου +ἐπικαλεσαμένου +τηρηθῆναι +αὐτὸν +εἰς +τὴν +τοῦ +Σεβαστοῦ +διάγνωσιν, +ἐκέλευσα +τηρεῖσθαι +αὐτὸν +ἕως +οὗ +ἀναπέμψω +αὐτὸν +πρὸς +Καίσαρα. +δὲ +Ἀγρίππας +πρὸς +τὸν +Φῆστον +Ἐβουλόμην +καὶ +αὐτὸς +τοῦ +ἀνθρώπου +ἀκοῦσαι. +φησίν, +Αὔριον, +ἀκούσῃ +αὐτοῦ. +οὖν +Τῇ +ἐπαύριον +ἐλθόντος +τοῦ +Ἀγρίππα +καὶ +τῆς +Βερνίκης +μετὰ +πολλῆς +φαντασίας +καὶ +εἰσελθόντων +εἰς +τὸ +ἀκροατήριον +σύν +τε +χιλιάρχοις +καὶ +ἀνδράσιν +τοῖς +κατ’ +ἐξοχὴν +τῆς +πόλεως, +καὶ +κελεύσαντος +τοῦ +Φήστου +ἤχθη +ὁ +Παῦλος. +καί +φησιν +ὁ +Φῆστος +Ἀγρίππα +βασιλεῦ +καὶ +πάντες +οἱ +συνπαρόντες +ἡμῖν +ἄνδρες, +θεωρεῖτε +τοῦτον +περὶ +οὗ +ἅπαν +τὸ +πλῆθος +τῶν +Ἰουδαίων +ἐνέτυχόν +μοι +ἔν +τε +Ἱεροσολύμοις +καὶ +ἐνθάδε, +βοῶντες +μὴ +δεῖν +αὐτὸν +ζῆν +μηκέτι. +δὲ +ἐγὼ +κατελαβόμην +μηδὲν +ἄξιον +θανάτου +αὐτὸν +πεπραχέναι, +δὲ +αὐτοῦ +τούτου +ἐπικαλεσαμένου +τὸν +Σεβαστὸν +ἔκρινα +πέμπειν. +περὶ +οὗ +ἀσφαλές +τι +γράψαι +τῷ +κυρίῳ +οὐκ +ἔχω· +διὸ +προήγαγον +αὐτὸν +ἐφ’ +ὑμῶν +καὶ +μάλιστα +ἐπὶ +σοῦ, +βασιλεῦ +Ἀγρίππα, +ὅπως +τῆς +ἀνακρίσεως +γενομένης +σχῶ +τί +γράψω· +γάρ +ἄλογον +μοι +δοκεῖ +πέμποντα +δέσμιον +μὴ +καὶ +τὰς +κατ’ +αὐτοῦ +αἰτίας +σημᾶναι. +δὲ +Ἀγρίππας +πρὸς +τὸν +Παῦλον +ἔφη +Ἐπιτρέπεταί +σοι +ὑπὲρ +σεαυτοῦ +λέγειν. +τότε +ὁ +Παῦλος +ἐκτείνας +τὴν +χεῖρα +ἀπελογεῖτο +βασιλεῦ +Ἀγρίππα, +Περὶ +πάντων +ὧν +ἐγκαλοῦμαι +ὑπὸ +Ἰουδαίων, +ἥγημαι +ἐμαυτὸν +μακάριον +ἐπὶ +σοῦ +σήμερον +ἀπολογεῖσθαι, +μέλλων +μάλιστα +ὄντα +σε +γνώστην +πάντων +τῶν +κατὰ +Ἰουδαίους +τε +ἐθῶν +καὶ +ζητημάτων· +διὸ +δέομαι +μακροθύμως +ἀκοῦσαί +μου. +μὲν +οὖν +Τὴν +βίωσίν +μου +ἐκ +νεότητος +τὴν +ἀπ’ +ἀρχῆς +γενομένην +ἐν +τῷ +ἔθνει +μου +τε +ἔν +Ἱεροσολύμοις +ἴσασι +πάντες +Ἰουδαῖοι, +προγινώσκοντές +με +ἄνωθεν, +ἐὰν +θέλωσι +μαρτυρεῖν, +ὅτι +κατὰ +τὴν +ἀκριβεστάτην +αἵρεσιν +τῆς +ἡμετέρας +θρησκείας +ἔζησα +Φαρισαῖος. +καὶ +νῦν +ἐπ’ +ἐλπίδι +τῆς +εἰς +τοὺς +πατέρας +ἡμῶν +γενομένης +ὑπὸ +τοῦ +Θεοῦ +ἐπαγγελίας +ἕστηκα +κρινόμενος, +εἰς +ἣν +καταντῆσαι· +τὸ +δωδεκάφυλον +ἡμῶν +ἐν +ἐκτενείᾳ +νύκτα +καὶ +ἡμέραν +λατρεῦον +ἐλπίζει +περὶ +ἧς +ἐλπίδος +ἐγκαλοῦμαι +ὑπὸ +Ἰουδαίων, +βασιλεῦ. +τί +ἄπιστον +κρίνεται +παρ’ +ὑμῖν +εἰ +ὁ +Θεὸς +νεκροὺς +ἐγείρει; +μὲν +οὖν +ἐγὼ +ἔδοξα +ἐμαυτῷ +δεῖν +πρὸς +τὸ +ὄνομα +Ἰησοῦ +τοῦ +Ναζωραίου +πολλὰ +ἐναντία +πρᾶξαι· +ὃ +καὶ +ἐποίησα +ἐν +Ἱεροσολύμοις, +καὶ +τε +πολλούς +τῶν +ἁγίων +ἐγὼ +ἐν +φυλακαῖς +κατέκλεισα +τὴν +παρὰ +τῶν +ἀρχιερέων +ἐξουσίαν +λαβών, +τε +ἀναιρουμένων +αὐτῶν +κατήνεγκα +ψῆφον, +καὶ +κατὰ +πάσας +τὰς +συναγωγὰς +πολλάκις +τιμωρῶν +αὐτοὺς +ἠνάγκαζον +βλασφημεῖν, +τε +περισσῶς +ἐμμαινόμενος +αὐτοῖς +ἐδίωκον +ἕως +καὶ +εἰς +τὰς +ἔξω +πόλεις. +Ἐν +οἷς +πορευόμενος +εἰς +τὴν +Δαμασκὸν +μετ’ +ἐξουσίας +καὶ +ἐπιτροπῆς +τῆς +τῶν +ἀρχιερέων, +ἡμέρας +μέσης +κατὰ +τὴν +ὁδὸν +εἶδον, +οὐρανόθεν +ὑπὲρ +τὴν +λαμπρότητα +τοῦ +ἡλίου +περιλάμψαν +φῶς +με +καὶ +τοὺς +σὺν +ἐμοὶ +πορευομένους· +βασιλεῦ, +τε +πάντων +ἡμῶν +καταπεσόντων +εἰς +τὴν +γῆν +ἤκουσα +φωνὴν +λέγουσαν +πρός +με +τῇ +Ἑβραΐδι +διαλέκτῳ +Σαοὺλ +Σαούλ, +τί +με +διώκεις; +σκληρόν +σοι +πρὸς +κέντρα +λακτίζειν. +δὲ +ἐγὼ +εἶπα +Τίς +εἶ, +Κύριε; +δὲ +ὁ +Κύριος +εἶπεν +Ἐγώ +εἰμι +Ἰησοῦς +ὃν +σὺ +διώκεις. +ἀλλὰ +ἀνάστηθι +καὶ +στῆθι +ἐπὶ +τοὺς +πόδας +σου· +γὰρ +εἰς +τοῦτο +ὤφθην +σοι, +προχειρίσασθαί +σε +ὑπηρέτην +καὶ +μάρτυρα +τε +ὧν +εἶδές +με +τε +ὧν +ὀφθήσομαί +σοι, +ἐξαιρούμενός +σε +ἐκ +τοῦ +λαοῦ +καὶ +ἐκ +τῶν +ἐθνῶν, +εἰς +οὓς +ἐγὼ +ἀποστέλλω +σε, +ἀνοῖξαι +ὀφθαλμοὺς +αὐτῶν, +τοῦ +ἐπιστρέψαι +ἀπὸ +σκότους +εἰς +φῶς +καὶ +τῆς +ἐξουσίας +τοῦ +Σατανᾶ +ἐπὶ +τὸν +Θεόν, +τοῦ +λαβεῖν +αὐτοὺς +ἄφεσιν +ἁμαρτιῶν +καὶ +κλῆρον +ἐν +τοῖς +ἡγιασμένοις +πίστει +τῇ +εἰς +ἐμέ. +Ὅθεν, +βασιλεῦ +Ἀγρίππα, +οὐκ +ἐγενόμην +ἀπειθὴς +τῇ +οὐρανίῳ +ὀπτασίᾳ, +ἀλλὰ +τε +τοῖς +ἐν +Δαμασκῷ +πρῶτόν +καὶ +Ἱεροσολύμοις, +τε +πᾶσάν +τὴν +χώραν +τῆς +Ἰουδαίας +καὶ +τοῖς +ἔθνεσιν +ἀπήγγελλον +μετανοεῖν +καὶ +ἐπιστρέφειν +ἐπὶ +τὸν +Θεόν, +ἄξια +τῆς +μετανοίας +ἔργα +πράσσοντας. +ἕνεκα +τούτων +Ἰουδαῖοι +με +συλλαβόμενοι +ἐν +τῷ +ἱερῷ +ἐπειρῶντο +διαχειρίσασθαι. +οὖν +τυχὼν +ἐπικουρίας +τῆς +ἀπὸ +τοῦ +Θεοῦ +ἄχρι +τῆς +ἡμέρας +ταύτης +ἕστηκα +μαρτυρόμενος +τε +μικρῷ +καὶ +μεγάλῳ, +οὐδὲν +λέγων +ἐκτὸς +ὧν +μελλόντων +γίνεσθαι +τε +οἱ +προφῆται +καὶ +Μωϋσῆς, +ἐλάλησαν +εἰ +παθητὸς +ὁ +Χριστός, +εἰ +πρῶτος +ἐξ +ἀναστάσεως +νεκρῶν +μέλλει +φῶς +καταγγέλλειν +τε +τῷ +λαῷ +καὶ +τοῖς +ἔθνεσιν. +δὲ +Ταῦτα +αὐτοῦ +ἀπολογουμένου +ὁ +Φῆστος +μεγάλῃ +τῇ +φωνῇ +φησιν +Μαίνῃ, +Παῦλε· +τὰ +πολλά +γράμματα +σε +εἰς +μανίαν +περιτρέπει. +δὲ +ὁ +Παῦλος +φησίν, +κράτιστε +Φῆστε, +Οὐ +μαίνομαι, +ἀλλὰ +ἀληθείας +καὶ +σωφροσύνης +ῥήματα +ἀποφθέγγομαι. +γὰρ +ἐπίσταται +περὶ +τούτων +ὁ +βασιλεύς, +πρὸς +ὃν +καὶ +παρρησιαζόμενος +λαλῶ· +γὰρ +λανθάνειν +αὐτὸν +τούτων +οὐ +πείθομαι +οὐθέν· +γάρ +οὐ +ἐστιν +πεπραγμένον +ἐν +γωνίᾳ +τοῦτο. +βασιλεῦ +Ἀγρίππα, +πιστεύεις, +τοῖς +προφήταις; +οἶδα +ὅτι +πιστεύεις. +δὲ +ὁ +Ἀγρίππας +πρὸς +τὸν +Παῦλον +Ἐν +ὀλίγῳ +με +πείθεις +Χριστιανὸν +ποιῆσαι. +δὲ +ὁ +Παῦλος +ἂν +Εὐξαίμην +τῷ +Θεῷ +καὶ +ἐν +ὀλίγῳ +καὶ +ἐν +μεγάλῳ +οὐ +μόνον +σὲ +ἀλλὰ +καὶ +πάντας +τοὺς +ἀκούοντάς +μου +σήμερον +γενέσθαι +τοιούτους +ὁποῖος +καὶ +ἐγώ +εἰμι, +παρεκτὸς +τῶν +δεσμῶν +τούτων. +Ἀνέστη +τε +ὁ +βασιλεὺς +καὶ +ὁ +ἡγεμὼν +τε +ἥ +Βερνίκη +καὶ +οἱ +συνκαθήμενοι +αὐτοῖς, +καὶ +ἀναχωρήσαντες +ἐλάλουν +πρὸς +ἀλλήλους +λέγοντες +ὅτι +Οὐδὲν +θανάτου +ἢ +δεσμῶν +ἄξιον +πράσσει +ὁ +ἄνθρωπος +οὗτος. +δὲ +Ἀγρίππας +τῷ +Φήστῳ +ἔφη +Ἀπολελύσθαι +ἐδύνατο +ὁ +ἄνθρωπος +οὗτος +εἰ +μὴ +ἐπεκέκλητο +Καίσαρα. +δὲ +Ὡς +ἐκρίθη +τοῦ +ἀποπλεῖν +ἡμᾶς +εἰς +τὴν +Ἰταλίαν, +παρεδίδουν +τε +τόν +Παῦλον +καί +τινας +ἑτέρους +δεσμώτας +ἑκατοντάρχῃ +ὀνόματι +Ἰουλίῳ +σπείρης +Σεβαστῆς. +δὲ +ἐπιβάντες +πλοίῳ +Ἀδραμυττηνῷ +μέλλοντι +πλεῖν +εἰς +τοὺς +κατὰ +τὴν +Ἀσίαν +τόπους +ἀνήχθημεν, +ὄντος +σὺν +ἡμῖν +Ἀριστάρχου +Μακεδόνος +Θεσσαλονικέως· +τε +τῇ +ἑτέρᾳ +κατήχθημεν +εἰς +Σιδῶνα, +τε +ὁ +Ἰούλιος +φιλανθρώπως +τῷ +Παύλῳ +χρησάμενος +ἐπέτρεψεν +πρὸς +τοὺς +φίλους +πορευθέντι +ἐπιμελείας +τυχεῖν. +κἀκεῖθεν +ἀναχθέντες +ὑπεπλεύσαμεν +τὴν +Κύπρον +διὰ +τὸ +τοὺς +ἀνέμους +εἶναι +ἐναντίους, +τε +τό +πέλαγος +τὸ +κατὰ +τὴν +Κιλικίαν +καὶ +Παμφυλίαν +διαπλεύσαντες +κατήλθαμεν +εἰς +Μύρρα +τῆς +Λυκίας. +ὁ +ἑκατοντάρχης +Κἀκεῖ +εὑρὼν +πλοῖον +Ἀλεξανδρῖνον +πλέον +εἰς +τὴν +Ἰταλίαν +ἐνεβίβασεν +ἡμᾶς +εἰς +αὐτό. +δὲ +ἐν +ἱκαναῖς +ἡμέραις +βραδυπλοοῦντες +καὶ +μόλις +γενόμενοι +κατὰ +τὴν +Κνίδον, +μὴ +προσεῶντος +ἡμᾶς +τοῦ +ἀνέμου, +ὑπεπλεύσαμεν +τὴν +Κρήτην +κατὰ +Σαλμώνην, +τε +μόλις +παραλεγόμενοι +αὐτὴν +ἤλθομεν +εἰς +τόπον +τινὰ +καλούμενον +Καλοὺς +Λιμένας, +ᾧ +ἐγγὺς +πόλις +Λασαία. +ἦν +δὲ +Ἱκανοῦ +χρόνου +διαγενομένου +καὶ +ὄντος +ἤδη +ἐπισφαλοῦς +τοῦ +πλοὸς +διὰ +τὸ +καὶ +τὴν +Νηστείαν +ἤδη +παρεληλυθέναι, +παρῄνει +ὁ +Παῦλος +λέγων +αὐτοῖς +Ἄνδρες, +θεωρῶ +ὅτι +μετὰ +ὕβρεως +καὶ +πολλῆς +ζημίας +οὐ +μόνον +τοῦ +φορτίου +καὶ +τοῦ +πλοίου +ἀλλὰ +καὶ +τῶν +ψυχῶν +ἡμῶν +ἔσεσθαι +μέλλειν +τὸν +πλοῦν. +δὲ +ὁ +ἑκατοντάρχης +τῷ +κυβερνήτῃ +καὶ +τῷ +ναυκλήρῳ +μᾶλλον +ἐπείθετο +ἢ +τοῖς +ὑπὸ +Παύλου +λεγομένοις. +δὲ +ἀνευθέτου +τοῦ +λιμένος +ὑπάρχοντος +πρὸς +παραχειμασίαν +οἱ +πλείονες +ἔθεντο +βουλὴν +ἀναχθῆναι +ἐκεῖθεν, +εἴ +πως +δύναιντο +καταντήσαντες +εἰς +Φοίνικα +λιμένα +τῆς +Κρήτης +βλέποντα +κατὰ +λίβα +καὶ +κατὰ +χῶρον. +παραχειμάσαι, +δὲ +Ὑποπνεύσαντος +νότου +δόξαντες +τῆς +προθέσεως +κεκρατηκέναι, +ἄραντες +ἆσσον +παρελέγοντο +τὴν +Κρήτην. +δὲ +μετ’ +οὐ +πολὺ +ἔβαλεν +κατ’ +αὐτῆς +ἄνεμος +τυφωνικὸς +ὁ +καλούμενος +Εὐρακύλων· +δὲ +συναρπασθέντος +τοῦ +πλοίου +καὶ +μὴ +δυναμένου +ἀντοφθαλμεῖν +τῷ +ἀνέμῳ +ἐπιδόντες +ἐφερόμεθα. +δέ +ὑποδραμόντες +νησίον +τι +καλούμενον +Κλαῦδα +ἰσχύσαμεν +μόλις +περικρατεῖς +γενέσθαι +τῆς +σκάφης, +ἣν +ἄραντες +βοηθείαις +ἐχρῶντο, +ὑποζωννύντες +τὸ +πλοῖον· +τε +φοβούμενοί +μὴ +εἰς +τὴν +Σύρτιν +ἐκπέσωσιν, +χαλάσαντες +τὸ +σκεῦος, +οὕτως +ἐφέροντο. +δὲ +σφοδρῶς +χειμαζομένων +ἡμῶν +τῇ +ἑξῆς +ἐκβολὴν +ἐποιοῦντο, +καὶ +τῇ +τρίτῃ +αὐτόχειρες +τὴν +σκευὴν +τοῦ +πλοίου +ἔριψαν. +δὲ +μήτε +ἡλίου +μήτε +ἄστρων +ἐπιφαινόντων +ἐπὶ +πλείονας +ἡμέρας, +τε +χειμῶνός +οὐκ +ὀλίγου +ἐπικειμένου, +λοιπὸν +περιῃρεῖτο +ἐλπὶς +πᾶσα +τοῦ +σῴζεσθαι +ἡμᾶς. +τε +Πολλῆς +ἀσιτίας +ὑπαρχούσης +τότε +σταθεὶς +ὁ +Παῦλος +ἐν +μέσῳ +αὐτῶν +εἶπεν +ὦ +ἄνδρες, +μέν, +Ἔδει +πειθαρχήσαντάς +μοι +μὴ +ἀνάγεσθαι +ἀπὸ +τῆς +Κρήτης +τε +κερδῆσαί +τὴν +ὕβριν +ταύτην +καὶ +τὴν +ζημίαν. +καὶ +τὰ +νῦν +παραινῶ +ὑμᾶς +εὐθυμεῖν· +γὰρ +ἀποβολὴ +ψυχῆς +οὐδεμία +ἔσται +ἐξ +ὑμῶν +πλὴν +τοῦ +πλοίου. +γάρ +παρέστη +μοι +ταύτῃ +τῇ +νυκτὶ +τοῦ +Θεοῦ, +οὗ +εἰμι, +ᾧ +καὶ +λατρεύω, +ἄγγελος +λέγων +Μὴ +φοβοῦ, +Παῦλε· +Καίσαρί +σε +παραστῆναι, +δεῖ +καὶ +ἰδοὺ +κεχάρισταί +σοι +ὁ +Θεὸς +πάντας +τοὺς +πλέοντας +μετὰ +σοῦ. +διὸ +εὐθυμεῖτε, +ἄνδρες· +γὰρ +πιστεύω +τῷ +Θεῷ +ὅτι +οὕτως +ἔσται +καθ’ +ὃν +τρόπον +λελάληταί +μοι. +δέ +δεῖ +εἰς +νῆσον +τινα +ἡμᾶς +ἐκπεσεῖν. +δὲ +Ὡς +τεσσαρεσκαιδεκάτη +νὺξ +ἐγένετο +διαφερομένων +ἡμῶν +ἐν +τῷ +Ἀδρίᾳ, +κατὰ +μέσον +τῆς +νυκτὸς +ὑπενόουν +οἱ +ναῦται +προσάγειν +τινὰ +χώραν. +αὐτοῖς +καὶ +βολίσαντες +εὗρον +ὀργυιὰς +εἴκοσι, +δὲ +βραχὺ +διαστήσαντες +καὶ +πάλιν +βολίσαντες +εὗρον +ὀργυιὰς +δεκαπέντε· +τε +φοβούμενοί +μή +που +κατὰ +τραχεῖς +τόπους +ἐκπέσωμεν, +ἐκ +πρύμνης +ῥίψαντες +ἀγκύρας +τέσσαρας +ηὔχοντο +ἡμέραν +γενέσθαι. +δὲ +Τῶν +ναυτῶν +ζητούντων +φυγεῖν +ἐκ +τοῦ +πλοίου +καὶ +χαλασάντων +τὴν +σκάφην +εἰς +τὴν +θάλασσαν +προφάσει +ὡς +ἐκ +πρῴρης +ἀγκύρας +ἐκτείνειν, +μελλόντων +εἶπεν +ὁ +Παῦλος +τῷ +ἑκατοντάρχῃ +καὶ +τοῖς +στρατιώταις +Ἐὰν +μὴ +οὗτοι +μείνωσιν +ἐν +τῷ +πλοίῳ, +ὑμεῖς +σωθῆναι +οὐ +δύνασθε. +τότε +ἀπέκοψαν +οἱ +στρατιῶται +τὰ +σχοινία +τῆς +σκάφης +καὶ +εἴασαν +αὐτὴν +ἐκπεσεῖν. +δὲ +Ἄχρι +οὗ +ἡμέρα +ἤμελλεν +γίνεσθαι, +παρεκάλει +ὁ +Παῦλος +ἅπαντας +μεταλαβεῖν +τροφῆς +λέγων +Τεσσαρεσκαιδεκάτην +ἡμέραν +σήμερον +προσδοκῶντες +ἄσιτοι +διατελεῖτε, +μηθὲν +προσλαβόμενοι. +διὸ +παρακαλῶ +ὑμᾶς +μεταλαβεῖν +τροφῆς· +γὰρ +τοῦτο +πρὸς +τῆς +ὑμετέρας +σωτηρίας +ὑπάρχει· +γὰρ +οὐδενὸς +ὑμῶν +θρὶξ +ἀπὸ +τῆς +κεφαλῆς +ἀπολεῖται. +δὲ +εἴπας +ταῦτα +καὶ +λαβὼν +ἄρτον +εὐχαρίστησεν +τῷ +Θεῷ +ἐνώπιον +πάντων +καὶ +κλάσας +ἤρξατο +ἐσθίειν. +δὲ +εὔθυμοι +γενόμενοι +πάντες +καὶ +αὐτοὶ +προσελάβοντο +τροφῆς. +δὲ +ἤμεθα +αἱ +πᾶσαι +ψυχαὶ +ἐν +τῷ +πλοίῳ +διακόσιαι +ἑβδομήκοντα +ἕξ. +δὲ +κορεσθέντες +τροφῆς +ἐκούφιζον +τὸ +πλοῖον +ἐκβαλλόμενοι +τὸν +σῖτον +εἰς +τὴν +θάλασσαν. +δὲ +Ὅτε +ἡμέρα +ἐγένετο, +τὴν +γῆν +οὐκ +ἐπεγίνωσκον, +δέ +κατενόουν +κόλπον +τινα +ἔχοντα +αἰγιαλὸν, +εἰς +ὃν +ἐξῶσαι +τὸ +πλοῖον. +ἐβουλεύοντο +εἰ +δύναιντο +καὶ +τὰς +ἀγκύρας +περιελόντες +εἴων +εἰς +τὴν +θάλασσαν, +ἅμα +ἀνέντες +τὰς +ζευκτηρίας +τῶν +πηδαλίων, +καὶ +ἐπάραντες +τὸν +ἀρτέμωνα +τῇ +πνεούσῃ +κατεῖχον +εἰς +τὸν +αἰγιαλόν. +δὲ +περιπεσόντες +εἰς +τόπον +διθάλασσον +ἐπέκειλαν +τὴν +ναῦν, +καὶ +μὲν +ἡ +πρῷρα +ἐρείσασα +ἔμεινεν +ἀσάλευτος, +δὲ +ἡ +πρύμνα +ἐλύετο +ὑπὸ +τῆς +βίας. +δὲ +Τῶν +στρατιωτῶν +βουλὴ +ἐγένετο +ἵνα +τοὺς +δεσμώτας +ἀποκτείνωσιν, +μή +τις +ἐκκολυμβήσας +διαφύγῃ· +δὲ +ὁ +ἑκατοντάρχης +βουλόμενος +διασῶσαι +τὸν +Παῦλον +ἐκώλυσεν +αὐτοὺς +τοῦ +βουλήματος, +τε +ἐκέλευσέν +τοὺς +δυναμένους +κολυμβᾶν +ἀπορίψαντας +πρώτους +ἐπὶ +τὴν +γῆν +ἐξιέναι, +καὶ +τοὺς +λοιποὺς +μὲν +οὓς +ἐπὶ +σανίσιν, +δὲ +οὓς +ἐπί +τινων +τῶν +ἀπὸ +τοῦ +πλοίου. +καὶ +οὕτως +ἐγένετο +πάντας +διασωθῆναι +ἐπὶ +τὴν +γῆν. +Καὶ +διασωθέντες +τότε +ἐπέγνωμεν +ὅτι +Μελίτη +ἡ +νῆσος +καλεῖται. +τε +οἵ +βάρβαροι +παρεῖχαν +τὴν +οὐ +τυχοῦσαν +φιλανθρωπίαν +ἡμῖν· +γὰρ +ἅψαντες +πυρὰν +προσελάβοντο +πάντας +ἡμᾶς +διὰ +τὸν +ὑετὸν +τὸν +ἐφεστῶτα +καὶ +διὰ +τὸ +ψῦχος. +δὲ +συστρέψαντος +τοῦ +Παύλου +φρυγάνων +τι +πλῆθος +καὶ +ἐπιθέντος +ἐπὶ +τὴν +πυράν, +ἔχιδνα +ἀπὸ +τῆς +θέρμης +ἐξελθοῦσα +καθῆψεν +τῆς +χειρὸς +αὐτοῦ. +δὲ +ὡς +εἶδον +οἱ +βάρβαροι +κρεμάμενον +τὸ +θηρίον +ἐκ +τῆς +χειρὸς +αὐτοῦ, +πρὸς +ἀλλήλους +ἔλεγον +Πάντως +φονεύς +ἐστιν +ὁ +ἄνθρωπος +οὗτος, +ὃν +διασωθέντα +ἐκ +τῆς +θαλάσσης +ζῆν +ἡ +Δίκη +οὐκ +εἴασεν. +μὲν +οὖν +ὁ +ἀποτινάξας +τὸ +θηρίον +εἰς +τὸ +πῦρ +ἔπαθεν +οὐδὲν +κακόν· +δὲ +οἱ +προσεδόκων +αὐτὸν +μέλλειν +πίμπρασθαι +ἢ +καταπίπτειν +ἄφνω +νεκρόν. +δὲ +ἐπὶ +πολὺ +αὐτῶν +προσδοκώντων +καὶ +θεωρούντων +μηδὲν +ἄτοπον +εἰς +αὐτὸν +γινόμενον, +μεταβαλόμενοι +ἔλεγον +αὐτὸν +εἶναι +θεόν. +δὲ +Ἐν +τοῖς +περὶ +τὸν +τόπον +ἐκεῖνον +ὑπῆρχεν +χωρία +τῷ +πρώτῳ +τῆς +νήσου +ὀνόματι +Ποπλίῳ, +ὃς +ἀναδεξάμενος +ἡμᾶς +ἡμέρας +τρεῖς +φιλοφρόνως +ἐξένισεν. +δὲ +ἐγένετο +τὸν +πατέρα +τοῦ +Ποπλίου +πυρετοῖς +καὶ +δυσεντερίῳ +συνεχόμενον +κατακεῖσθαι, +πρὸς +ὃν +εἰσελθὼν +καὶ +προσευξάμενος, +ὁ +Παῦλος +ἐπιθεὶς +τὰς +χεῖρας +αὐτῷ +ἰάσατο +αὐτόν. +δὲ +τούτου +γενομένου +καὶ +οἱ +λοιποὶ +οἱ +ἐν +τῇ +νήσῳ +ἔχοντες +ἀσθενείας +προσήρχοντο +καὶ +ἐθεραπεύοντο, +οἳ +καὶ +πολλαῖς +τιμαῖς +ἐτίμησαν +ἡμᾶς +καὶ +ἀναγομένοις +ἐπέθεντο +τὰ +πρὸς +τὰς +χρείας. +δὲ +Μετὰ +τρεῖς +μῆνας +ἀνήχθημεν +ἐν +πλοίῳ +παρακεχειμακότι +ἐν +τῇ +νήσῳ, +Ἀλεξανδρινῷ, +παρασήμῳ +Διοσκούροις. +καὶ +καταχθέντες +εἰς +Συρακούσας +ἐπεμείναμεν +ἡμέρας +τρεῖς, +ὅθεν +περιελθόντες +κατηντήσαμεν +εἰς +Ῥήγιον. +καὶ +μετὰ +μίαν +ἡμέραν +ἐπιγενομένου +νότου +δευτεραῖοι +ἤλθομεν +εἰς +Ποτιόλους, +οὗ +εὑρόντες +ἀδελφοὺς +παρεκλήθημεν +παρ’ +αὐτοῖς +ἐπιμεῖναι +ἡμέρας +ἑπτά· +καὶ +οὕτως +εἰς +τὴν +Ῥώμην +ἤλθαμεν. +κἀκεῖθεν +οἱ +ἀδελφοὶ +ἀκούσαντες +τὰ +περὶ +ἡμῶν +ἦλθαν +εἰς +ἀπάντησιν +ἡμῖν +ἄχρι +Ἀππίου +Φόρου +καὶ +Τριῶν +Ταβερνῶν, +οὓς +ἰδὼν +ὁ +Παῦλος +εὐχαριστήσας +τῷ +Θεῷ +ἔλαβε +θάρσος. +δὲ +Ὅτε +εἰσήλθομεν +εἰς +Ῥώμην, +ἐπετράπη +τῷ +Παύλῳ +μένειν +καθ’ +ἑαυτὸν +σὺν +τῷ +φυλάσσοντι +αὐτὸν +στρατιώτῃ. +δὲ +Ἐγένετο +μετὰ +ἡμέρας +τρεῖς +συνκαλέσασθαι +αὐτὸν +τοὺς +ὄντας +τῶν +Ἰουδαίων +πρώτους· +δὲ +συνελθόντων +αὐτῶν +ἔλεγεν +πρὸς +αὐτούς +ἄνδρες +ἀδελφοί, +Ἐγώ, +οὐδὲν +ἐναντίον +ποιήσας +τῷ +λαῷ +ἢ +τοῖς +ἔθεσι +τοῖς +πατρῴοις, +δέσμιος +ἐξ +Ἱεροσολύμων +παρεδόθην +εἰς +τὰς +χεῖρας +τῶν +Ῥωμαίων, +οἵτινες +ἀνακρίναντές +με +ἐβούλοντο +ἀπολῦσαι +διὰ +τὸ +μηδεμίαν +αἰτίαν +θανάτου +ὑπάρχειν +ἐν +ἐμοί· +δὲ +ἀντιλεγόντων +τῶν +Ἰουδαίων +ἠναγκάσθην +ἐπικαλέσασθαι +Καίσαρα, +οὐχ +ὡς +τοῦ +ἔθνους +μου +τι +κατηγορεῖν. +ἔχων +οὖν +διὰ +ταύτην +τὴν +αἰτίαν +παρεκάλεσα +ὑμᾶς +ἰδεῖν +καὶ +προσλαλῆσαι· +γὰρ +εἵνεκεν +τῆς +ἐλπίδος +τοῦ +Ἰσραὴλ +τὴν +ἅλυσιν +ταύτην +περίκειμαι. +δὲ +οἱ +πρὸς +αὐτὸν +εἶπαν +οὔτε +Ἠμεῖς +γράμματα +περὶ +σοῦ +ἐδεξάμεθα +ἀπὸ +τῆς +Ἰουδαίας, +οὔτε +παραγενόμενός +τις +τῶν +ἀδελφῶν +ἀπήγγειλεν +ἢ +ἐλάλησέν +τι +περὶ +σοῦ +πονηρόν. +δὲ +ἀξιοῦμεν +παρὰ +σοῦ +ἀκοῦσαι +ἃ +φρονεῖς· +γὰρ +μὲν +περὶ +τῆς +αἱρέσεως +ταύτης +γνωστὸν +ἡμῖν +ἐστιν +ὅτι +πανταχοῦ +ἀντιλέγεται. +δὲ +Ταξάμενοι +αὐτῷ +ἡμέραν +ἦλθον +πρὸς +αὐτὸν +εἰς +τὴν +ξενίαν +πλείονες, +οἷς +ἐξετίθετο +διαμαρτυρόμενος +τὴν +βασιλείαν +τοῦ +Θεοῦ +τε +πείθων +αὐτοὺς +περὶ +τοῦ +Ἰησοῦ +ἀπό +τε +τοῦ +νόμου +Μωϋσέως +καὶ +τῶν +προφητῶν, +ἀπὸ +πρωῒ +ἕως +ἑσπέρας. +καὶ +μὲν +οἱ +ἐπείθοντο +τοῖς +λεγομένοις, +δὲ +οἱ +ἠπίστουν· +δὲ +ἀσύμφωνοι +ὄντες +πρὸς +ἀλλήλους +ἀπελύοντο, +εἰπόντος +τοῦ +Παύλου +ῥῆμα +ἓν, +ὅτι +Καλῶς +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἐλάλησεν +διὰ +Ἠσαΐου +τοῦ +προφήτου +πρὸς +τοὺς +πατέρας +ὑμῶν +λέγων +Πορεύθητι +πρὸς +τὸν +λαὸν +τοῦτον +καὶ +εἰπόν +Ἀκοῇ +ἀκούσετε +καὶ +οὐ +μὴ +συνῆτε, +καὶ +βλέποντες +βλέψετε +καὶ +οὐ +μὴ +ἴδητε· +γὰρ +ἐπαχύνθη +ἡ +καρδία +τοῦ +λαοῦ +τούτου, +καὶ +τοῖς +ὠσὶν +βαρέως +ἤκουσαν, +καὶ +τοὺς +ὀφθαλμοὺς +αὐτῶν +ἐκάμμυσαν· +μή +ποτε +ἴδωσιν +τοῖς +ὀφθαλμοῖς +καὶ +τοῖς +ὠσὶν +ἀκούσωσιν +καὶ +τῇ +καρδίᾳ +συνῶσιν +καὶ +ἐπιστρέψωσιν, +καὶ +ἰάσομαι +αὐτούς. +οὖν +γνωστὸν +ἔστω +ὑμῖν +ὅτι +τοῖς +ἔθνεσιν +ἀπεστάλη +τοῦτο +τὸ +σωτήριον +τοῦ +Θεοῦ· +αὐτοὶ +καὶ +ἀκούσονται. +δὲ +Ἐνέμεινεν +διετίαν +ὅλην +ἐν +ἰδίῳ +μισθώματι, +καὶ +ἀπεδέχετο +πάντας +τοὺς +εἰσπορευομένους +πρὸς +αὐτόν, +κηρύσσων +τὴν +βασιλείαν +τοῦ +Θεοῦ +καὶ +διδάσκων +τὰ +περὶ +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +μετὰ +πάσης +παρρησίας +ἀκωλύτως. +Παῦλος +δοῦλος +Χριστοῦ +Ἰησοῦ, +κλητὸς +ἀπόστολος +ἀφωρισμένος +εἰς +εὐαγγέλιον +Θεοῦ, +ὃ +προεπηγγείλατο +διὰ +τῶν +προφητῶν +αὐτοῦ +ἐν +γραφαῖς +ἁγίαις +περὶ +τοῦ +Υἱοῦ +αὐτοῦ +τοῦ +γενομένου +ἐκ +σπέρματος +Δαυεὶδ +κατὰ +σάρκα, +τοῦ +ὁρισθέντος +Υἱοῦ +Θεοῦ +ἐν +δυνάμει +κατὰ +πνεῦμα +ἁγιωσύνης +ἐξ +ἀναστάσεως +νεκρῶν, +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν, +δι’ +οὗ +ἐλάβομεν +χάριν +καὶ +ἀποστολὴν +εἰς +ὑπακοὴν +πίστεως +ἐν +πᾶσιν +τοῖς +ἔθνεσιν +ὑπὲρ +τοῦ +ὀνόματος +αὐτοῦ, +ἐν +οἷς +ἐστε +καὶ +ὑμεῖς +κλητοὶ +Ἰησοῦ +Χριστοῦ, +πᾶσιν +τοῖς +οὖσιν +ἐν +Ῥώμῃ +ἀγαπητοῖς +Θεοῦ, +κλητοῖς +ἁγίοις· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +μὲν +Πρῶτον +εὐχαριστῶ +τῷ +Θεῷ +μου +διὰ +Ἰησοῦ +Χριστοῦ +περὶ +πάντων +ὑμῶν, +ὅτι +ἡ +πίστις +ὑμῶν +καταγγέλλεται +ἐν +ὅλῳ +τῷ +κόσμῳ. +γάρ +μάρτυς +μού +ἐστιν +ὁ +Θεός, +ᾧ +λατρεύω +ἐν +τῷ +πνεύματί +μου +ἐν +τῷ +εὐαγγελίῳ +τοῦ +Υἱοῦ +αὐτοῦ, +ὡς +ἀδιαλείπτως +μνείαν +ὑμῶν +ποιοῦμαι +πάντοτε +ἐπὶ +τῶν +προσευχῶν +μου, +δεόμενος +εἴ +πως +ἤδη +ποτὲ +εὐοδωθήσομαι +ἐν +τῷ +θελήματι +τοῦ +Θεοῦ +ἐλθεῖν +πρὸς +ὑμᾶς. +γὰρ +ἐπιποθῶ +ἰδεῖν +ὑμᾶς, +ἵνα +μεταδῶ +τι +χάρισμα +πνευματικὸν +ὑμῖν +εἰς +τὸ +στηριχθῆναι +ὑμᾶς, +δέ +τοῦτο +ἐστιν +συνπαρακληθῆναι +ἐν +ὑμῖν +διὰ +τῆς +ἐν +ἀλλήλοις +πίστεως +τε +ὑμῶν +καὶ +ἐμοῦ. +δὲ +ἀδελφοί, +οὐ +θέλω +ὑμᾶς +ἀγνοεῖν, +ὅτι +πολλάκις +προεθέμην +ἐλθεῖν +πρὸς +ὑμᾶς, +καὶ +ἐκωλύθην +ἄχρι +τοῦ +δεῦρο, +ἵνα +τινὰ +καρπὸν +σχῶ +καὶ +ἐν +ὑμῖν +καθὼς +καὶ +ἐν +τοῖς +λοιποῖς +ἔθνεσιν. +τε +Ἕλλησίν +καὶ +Βαρβάροις, +τε +σοφοῖς +καὶ +ἀνοήτοις +ὀφειλέτης +εἰμί· +οὕτως +τὸ +κατ’ +ἐμὲ +πρόθυμον +καὶ +ὑμῖν +τοῖς +ἐν +Ῥώμῃ +εὐαγγελίσασθαι. +γὰρ +οὐ +ἐπαισχύνομαι +τὸ +εὐαγγέλιον· +γὰρ +δύναμις +Θεοῦ +ἐστιν +εἰς +σωτηρίαν +παντὶ +τῷ +πιστεύοντι, +τε +Ἰουδαίῳ +πρῶτον +καὶ +Ἕλληνι. +γὰρ +δικαιοσύνη +Θεοῦ +ἐν +αὐτῷ +ἀποκαλύπτεται +ἐκ +πίστεως +εἰς +πίστιν, +καθὼς +γέγραπται +δὲ +Ὁ +δίκαιος +ἐκ +πίστεως +ζήσεται. +γὰρ +Ἀποκαλύπτεται +ὀργὴ +Θεοῦ +ἀπ’ +οὐρανοῦ +ἐπὶ +πᾶσαν +ἀσέβειαν +καὶ +ἀδικίαν +ἀνθρώπων +τῶν +τὴν +ἀλήθειαν +ἐν +ἀδικίᾳ +κατεχόντων, +διότι +τὸ +γνωστὸν +τοῦ +Θεοῦ +φανερόν +ἐστιν +ἐν +αὐτοῖς· +γὰρ +ὁ +θεὸς +αὐτοῖς +ἐφανέρωσεν. +γὰρ +τὰ +ἀόρατα +αὐτοῦ +ἥ +τε +ἀΐδιος +αὐτοῦ +δύναμις +καὶ +θειότης, +ἀπὸ +κτίσεως +κόσμου +τοῖς +ποιήμασιν +νοούμενα +καθορᾶται, +εἰς +τὸ +εἶναι +αὐτοὺς +ἀναπολογήτους, +διότι +γνόντες +τὸν +Θεὸν +οὐχ +ὡς +Θεὸν +ἐδόξασαν +ἢ +ηὐχαρίστησαν, +ἀλλὰ +ἐματαιώθησαν +ἐν +τοῖς +διαλογισμοῖς +αὐτῶν, +καὶ +ἐσκοτίσθη +ἡ +ἀσύνετος +αὐτῶν +καρδία. +φάσκοντες +εἶναι +σοφοὶ +ἐμωράνθησαν, +καὶ +ἤλλαξαν +τὴν +δόξαν +τοῦ +ἀφθάρτου +Θεοῦ +ἐν +ὁμοιώματι +εἰκόνος +φθαρτοῦ +ἀνθρώπου +καὶ +πετεινῶν +καὶ +τετραπόδων +καὶ +ἑρπετῶν. +Διὸ +παρέδωκεν +αὐτοὺς +ὁ +Θεὸς +ἐν +ταῖς +ἐπιθυμίαις +τῶν +καρδιῶν +αὐτῶν +εἰς +ἀκαθαρσίαν +τοῦ +ἀτιμάζεσθαι +τὰ +σώματα +αὐτῶν +ἐν +αὐτοῖς, +οἵτινες +μετήλλαξαν +τὴν +ἀλήθειαν +τοῦ +Θεοῦ +ἐν +τῷ +ψεύδει, +καὶ +ἐσεβάσθησαν +καὶ +ἐλάτρευσαν +τῇ +κτίσει +παρὰ +τὸν +Κτίσαντα, +ὅς +ἐστιν +εὐλογητὸς +εἰς +τοὺς +αἰῶνας· +ἀμήν. +Διὰ +τοῦτο +παρέδωκεν +αὐτοὺς +ὁ +Θεὸς +εἰς +πάθη +ἀτιμίας· +γὰρ +τε +αἵ +θήλειαι +αὐτῶν +μετήλλαξαν +τὴν +φυσικὴν +χρῆσιν +εἰς +τὴν +παρὰ +φύσιν, +τε +ὁμοίως +καὶ +οἱ +ἄρσενες +ἀφέντες +τὴν +φυσικὴν +χρῆσιν +τῆς +θηλείας +ἐξεκαύθησαν +ἐν +τῇ +ὀρέξει +αὐτῶν +εἰς +ἀλλήλους, +ἄρσενες +ἐν +ἄρσεσιν +τὴν +ἀσχημοσύνην +κατεργαζόμενοι +καὶ +τὴν +ἀντιμισθίαν +ἣν +ἔδει +τῆς +πλάνης +αὐτῶν +ἐν +ἑαυτοῖς +ἀπολαμβάνοντες. +Καὶ +καθὼς +οὐκ +ἐδοκίμασαν +τὸν +Θεὸν +ἔχειν +ἐν +ἐπιγνώσει, +παρέδωκεν +αὐτοὺς +ὁ +Θεὸς +εἰς +ἀδόκιμον +νοῦν, +ποιεῖν +τὰ +μὴ +καθήκοντα, +πεπληρωμένους +πάσῃ +ἀδικίᾳ +πονηρίᾳ +πλεονεξίᾳ +κακίᾳ, +μεστοὺς +φθόνου +φόνου +ἔριδος +δόλου +κακοηθείας, +ψιθυριστάς, +καταλάλους, +θεοστυγεῖς, +ὑβριστάς, +ὑπερηφάνους, +ἀλαζόνας, +ἐφευρετὰς +κακῶν, +γονεῦσιν +ἀπειθεῖς, +ἀσυνέτους, +ἀσυνθέτους, +ἀστόργους, +ἀνελεήμονας· +οἵτινες +τὸ +δικαίωμα +τοῦ +Θεοῦ +ἐπιγνόντες, +ὅτι +οἱ +τὰ +τοιαῦτα +πράσσοντες +ἄξιοι +θανάτου +εἰσίν, +οὐ +μόνον +αὐτὰ +ποιοῦσιν, +ἀλλὰ +καὶ +συνευδοκοῦσιν +τοῖς +πράσσουσιν. +Διὸ +ἀναπολόγητος +εἶ, +ὦ +ἄνθρωπε +πᾶς +ὁ +κρίνων· +γὰρ +ἐν +ᾧ +κρίνεις +τὸν +ἕτερον, +σεαυτὸν +κατακρίνεις· +γὰρ +τὰ +αὐτὰ +πράσσεις +ὁ +κρίνων. +δὲ +οἴδαμεν +ὅτι +τὸ +κρίμα +τοῦ +Θεοῦ +ἐστιν +κατὰ +ἀλήθειαν +ἐπὶ +τοὺς +τὰ +τοιαῦτα +πράσσοντας. +δὲ +λογίζῃ +τοῦτο, +ὦ +ἄνθρωπε +ὁ +κρίνων +τοὺς +τὰ +τοιαῦτα +πράσσοντας +καὶ +ποιῶν +αὐτά, +ὅτι +σὺ +ἐκφεύξῃ +τὸ +κρίμα +τοῦ +Θεοῦ; +ἢ +τοῦ +πλούτου +τῆς +χρηστότητος +αὐτοῦ +καὶ +τῆς +ἀνοχῆς +καὶ +τῆς +μακροθυμίας +καταφρονεῖς, +ἀγνοῶν +ὅτι +τὸ +χρηστὸν +τοῦ +Θεοῦ +εἰς +μετάνοιάν +σε +ἄγει; +δὲ +κατὰ +τὴν +σκληρότητά +σου +καὶ +ἀμετανόητον +καρδίαν +θησαυρίζεις +σεαυτῷ +ὀργὴν +ἐν +ἡμέρᾳ +ὀργῆς +καὶ +ἀποκαλύψεως +δικαιοκρισίας +τοῦ +Θεοῦ, +ὃς +ἀποδώσει +ἑκάστῳ +κατὰ +τὰ +ἔργα +αὐτοῦ· +μὲν +τοῖς +καθ’ +ὑπομονὴν +ἔργου +ἀγαθοῦ +δόξαν +καὶ +τιμὴν +καὶ +ἀφθαρσίαν +ζητοῦσιν +ζωὴν +αἰώνιον· +δὲ +τοῖς +ἐξ +ἐριθείας +καὶ +ἀπειθοῦσι +τῇ +ἀληθείᾳ +δὲ +πειθομένοις +τῇ +ἀδικίᾳ, +ὀργὴ +καὶ +θυμός. +θλῖψις +καὶ +στενοχωρία, +ἐπὶ +πᾶσαν +ψυχὴν +ἀνθρώπου +τοῦ +κατεργαζομένου +τὸ +κακόν, +τε +Ἰουδαίου +πρῶτον +καὶ +Ἕλληνος· +δὲ +δόξα +καὶ +τιμὴ +καὶ +εἰρήνη +παντὶ +τῷ +ἐργαζομένῳ +τὸ +ἀγαθόν, +τε +Ἰουδαίῳ +πρῶτον +καὶ +Ἕλληνι. +γάρ +οὐ +ἐστιν +προσωπολημψία +παρὰ +τῷ +Θεῷ. +γὰρ +Ὅσοι +ἀνόμως +ἥμαρτον, +ἀνόμως +καὶ +ἀπολοῦνται· +καὶ +ὅσοι +ἐν +νόμῳ +ἥμαρτον, +διὰ +νόμου +κριθήσονται· +γὰρ +οὐ +οἱ +ἀκροαταὶ +νόμου +δίκαιοι +παρὰ +τῷ +Θεῷ, +ἀλλ’ +οἱ +ποιηταὶ +νόμου +δικαιωθήσονται. +γὰρ +ὅταν +ἔθνη +τὰ +μὴ +νόμον +ἔχοντα +φύσει +τὰ +τοῦ +νόμου +ποιῶσιν, +οὗτοι +νόμον +μὴ +ἔχοντες +ἑαυτοῖς +εἰσιν +νόμος· +οἵτινες +ἐνδείκνυνται +τὸ +ἔργον +τοῦ +νόμου +γραπτὸν +ἐν +ταῖς +καρδίαις +αὐτῶν, +συνμαρτυρούσης +αὐτῶν +τῆς +συνειδήσεως +καὶ +μεταξὺ +ἀλλήλων +τῶν +λογισμῶν +κατηγορούντων +ἢ +καὶ +ἀπολογουμένων, +ἡμέρᾳ +ἐν +ᾗ +κρίνει +ὁ +Θεὸς +τὰ +κρυπτὰ +τῶν +ἀνθρώπων +κατὰ +τὸ +εὐαγγέλιόν +μου +διὰ +Χριστοῦ +Ἰησοῦ. +δὲ +Εἰ +σὺ +Ἰουδαῖος +ἐπονομάζῃ +καὶ +ἐπαναπαύῃ +νόμῳ +καὶ +καυχᾶσαι +ἐν +Θεῷ +καὶ +γινώσκεις +τὸ +θέλημα +καὶ +δοκιμάζεις +τὰ +διαφέροντα +κατηχούμενος +ἐκ +τοῦ +νόμου, +τε +πέποιθάς +σεαυτὸν +εἶναι +ὁδηγὸν +τυφλῶν, +φῶς +τῶν +ἐν +σκότει, +παιδευτὴν +ἀφρόνων, +διδάσκαλον +νηπίων, +ἔχοντα +τὴν +μόρφωσιν +τῆς +γνώσεως +καὶ +τῆς +ἀληθείας +ἐν +τῷ +νόμῳ· +οὖν +ὁ +διδάσκων +ἕτερον +σεαυτὸν +οὐ +διδάσκεις; +ὁ +κηρύσσων +μὴ +κλέπτειν +κλέπτεις; +ὁ +λέγων +μὴ +μοιχεύειν +μοιχεύεις; +ὁ +βδελυσσόμενος +τὰ +εἴδωλα +ἱεροσυλεῖς; +ὃς +ἐν +νόμῳ +καυχᾶσαι, +διὰ +τῆς +παραβάσεως +τοῦ +νόμου +τὸν +Θεὸν +ἀτιμάζεις; +γὰρ +τὸ +ὄνομα +τοῦ +Θεοῦ +δι’ +ὑμᾶς +βλασφημεῖται +ἐν +τοῖς +ἔθνεσιν, +καθὼς +γέγραπται. +γὰρ +μὲν +περιτομὴ +ὠφελεῖ +ἐὰν +νόμον +πράσσῃς· +δὲ +ἐὰν +παραβάτης +νόμου +ᾖς, +ἡ +περιτομή +σου +ἀκροβυστία +γέγονεν. +οὖν +ἐὰν +ἡ +ἀκροβυστία +τὰ +δικαιώματα +τοῦ +νόμου +φυλάσσῃ, +οὐχ +ἡ +ἀκροβυστία +αὐτοῦ +εἰς +περιτομὴν +λογισθήσεται; +καὶ +κρινεῖ +ἡ +ἐκ +φύσεως +ἀκροβυστία +τὸν +νόμον +τελοῦσα +σὲ +τὸν +διὰ +γράμματος +καὶ +περιτομῆς +παραβάτην +νόμου. +γὰρ +οὐ +ὁ +ἐν +τῷ +φανερῷ +Ἰουδαῖός +ἐστιν, +οὐδὲ +ἡ +ἐν +τῷ +φανερῷ +ἐν +σαρκὶ +περιτομή· +ἀλλ’ +ὁ +ἐν +τῷ +κρυπτῷ +Ἰουδαῖος, +καὶ +περιτομὴ +καρδίας +ἐν +πνεύματι +οὐ +γράμματι, +οὗ +ὁ +ἔπαινος +οὐκ +ἐξ +ἀνθρώπων +ἀλλ’ +ἐκ +τοῦ +Θεοῦ. +οὖν +Τί +τὸ +περισσὸν +τοῦ +Ἰουδαίου, +ἢ +τίς +ἡ +ὠφέλεια +τῆς +περιτομῆς; +πολὺ +κατὰ +πάντα +τρόπον. +γὰρ +μὲν +πρῶτον +ὅτι +ἐπιστεύθησαν +τὰ +λόγια +τοῦ +Θεοῦ. +γάρ; +τί +εἰ +ἠπίστησάν +τινες, +μὴ +ἡ +ἀπιστία +αὐτῶν +τὴν +πίστιν +τοῦ +Θεοῦ +καταργήσει; +μὴ +γένοιτο· +δὲ +γινέσθω +ὁ +Θεὸς +ἀληθής, +δὲ +πᾶς +ἄνθρωπος +ψεύστης, +καθάπερ +γέγραπται +Ὅπως +ἂν +δικαιωθῇς +ἐν +τοῖς +λόγοις +σου +καὶ +νικήσεις +ἐν +τῷ +κρίνεσθαί +σε. +δὲ +εἰ +ἡ +ἀδικία +ἡμῶν +Θεοῦ +δικαιοσύνην +συνίστησιν, +τί +ἐροῦμεν; +μὴ +ἄδικος +ὁ +Θεὸς +ὁ +ἐπιφέρων +τὴν +ὀργήν; +κατὰ +ἄνθρωπον +λέγω. +μὴ +γένοιτο· +ἐπεὶ +πῶς +κρινεῖ +ὁ +Θεὸς +τὸν +κόσμον; +δὲ +εἰ +ἡ +ἀλήθεια +τοῦ +Θεοῦ +ἐν +τῷ +ἐμῷ +ψεύσματι +ἐπερίσσευσεν +εἰς +τὴν +δόξαν +αὐτοῦ, +τί +ἔτι +κἀγὼ +ὡς +ἁμαρτωλὸς +κρίνομαι; +καὶ +μὴ +καθὼς +βλασφημούμεθα +καὶ +καθώς +φασίν +τινες +ἡμᾶς +λέγειν +ὅτι +Ποιήσωμεν +τὰ +κακὰ +ἵνα +ἔλθῃ +τὰ +ἀγαθά; +ὧν +τὸ +κρίμα +ἔνδικόν +ἐστιν. +οὖν; +Τί +προεχόμεθα; +οὐ +πάντως· +γὰρ +προῃτιασάμεθα +τε +Ἰουδαίους +καὶ +Ἕλληνας +πάντας +ὑφ’ +ἁμαρτίαν +εἶναι, +καθὼς +γέγραπται +ὅτι +Οὐκ +ἔστιν +δίκαιος +οὐδὲ +εἷς, +οὐκ +ἔστιν +ὁ +συνίων, +οὐκ +ἔστιν +ὁ +ἐκζητῶν +τὸν +Θεόν· +πάντες +ἐξέκλιναν, +ἅμα +ἠχρεώθησαν· +οὐκ +ἔστιν +ὁ +ποιῶν +χρηστότητα, +οὐκ +ἔστιν +ἕως +ἑνός. +τάφος +ἀνεῳγμένος +ὁ +λάρυγξ +αὐτῶν, +ταῖς +γλώσσαις +αὐτῶν +ἐδολιοῦσαν, +ἰὸς +ἀσπίδων +ὑπὸ +τὰ +χείλη +αὐτῶν· +ὧν +τὸ +στόμα +ἀρᾶς +καὶ +πικρίας +γέμει· +ὀξεῖς +οἱ +πόδες +αὐτῶν +ἐκχέαι +αἷμα, +σύντριμμα +καὶ +ταλαιπωρία +ἐν +ταῖς +ὁδοῖς +αὐτῶν, +καὶ +ὁδὸν +εἰρήνης +οὐκ +ἔγνωσαν. +οὐκ +ἔστιν +φόβος +Θεοῦ +ἀπέναντι +τῶν +ὀφθαλμῶν +αὐτῶν. +δὲ +Οἴδαμεν +ὅτι +ὅσα +ὁ +νόμος +λέγει +τοῖς +ἐν +τῷ +νόμῳ +λαλεῖ, +ἵνα +πᾶν +στόμα +φραγῇ +καὶ +ὑπόδικος +γένηται +πᾶς +ὁ +κόσμος +τῷ +Θεῷ· +διότι +ἐξ +ἔργων +νόμου +οὐ +δικαιωθήσεται +πᾶσα +σὰρξ +ἐνώπιον +αὐτοῦ· +γὰρ +διὰ +νόμου +ἐπίγνωσις +ἁμαρτίας. +δὲ +Νυνὶ +χωρὶς +νόμου +δικαιοσύνη +Θεοῦ +πεφανέρωται, +μαρτυρουμένη +ὑπὸ +τοῦ +νόμου +καὶ +τῶν +προφητῶν, +δὲ +δικαιοσύνη +Θεοῦ +διὰ +πίστεως +Ἰησοῦ +Χριστοῦ, +εἰς +πάντας +τοὺς +πιστεύοντας· +γάρ +οὐ +ἐστιν +διαστολή· +γὰρ +πάντες +ἥμαρτον +καὶ +ὑστεροῦνται +τῆς +δόξης +τοῦ +Θεοῦ, +δικαιούμενοι +δωρεὰν +τῇ +αὐτοῦ +χάριτι +διὰ +τῆς +ἀπολυτρώσεως +τῆς +ἐν +Χριστῷ +Ἰησοῦ· +ὃν +προέθετο +ὁ +Θεὸς +ἱλαστήριον +διὰ +πίστεως +ἐν +τῷ +αὐτοῦ +αἵματι, +εἰς +ἔνδειξιν +τῆς +δικαιοσύνης +αὐτοῦ +διὰ +τὴν +πάρεσιν +τῶν +προγεγονότων +ἁμαρτημάτων +ἐν +τῇ +ἀνοχῇ +τοῦ +Θεοῦ, +πρὸς +τὴν +ἔνδειξιν +τῆς +δικαιοσύνης +αὐτοῦ +ἐν +τῷ +νῦν +καιρῷ, +εἰς +τὸ +εἶναι +αὐτὸν +δίκαιον +καὶ +δικαιοῦντα +τὸν +ἐκ +πίστεως +Ἰησοῦ. +οὖν +Ποῦ +ἡ +καύχησις; +ἐξεκλείσθη. +διὰ +ποίου +νόμου; +τῶν +ἔργων; +οὐχί, +ἀλλὰ +διὰ +νόμου +πίστεως. +γὰρ +λογιζόμεθα +δικαιοῦσθαι +πίστει +ἄνθρωπον +χωρὶς +ἔργων +νόμου. +ἢ +Ἰουδαίων +ὁ +Θεὸς +μόνον; +οὐχὶ +καὶ +ἐθνῶν; +ναὶ +καὶ +ἐθνῶν, +εἴπερ +εἷς +ὁ +Θεός, +ὃς +δικαιώσει +περιτομὴν +ἐκ +πίστεως +καὶ +ἀκροβυστίαν +διὰ +τῆς +πίστεως. +οὖν +νόμον +καταργοῦμεν +διὰ +τῆς +πίστεως; +μὴ +γένοιτο, +ἀλλὰ +νόμον +ἱστάνομεν. +οὖν +ἐροῦμεν +Τί +εὑρηκέναι +Ἀβραὰμ +τὸν +προπάτορα +ἡμῶν +κατὰ +σάρκα; +γὰρ +εἰ +Ἀβραὰμ +ἐξ +ἔργων +ἐδικαιώθη, +ἔχει +καύχημα· +ἀλλ’ +οὐ +πρὸς +Θεόν, +γὰρ +τί +ἡ +γραφὴ +λέγει; +δὲ +Ἐπίστευσεν +Ἀβραὰμ +τῷ +Θεῷ, +καὶ +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην. +δὲ +τῷ +ἐργαζομένῳ +ὁ +μισθὸς +λογίζεται +οὐ +κατὰ +χάριν +ἀλλὰ +κατὰ +ὀφείλημα· +δὲ +τῷ +μὴ +ἐργαζομένῳ, +δὲ +πιστεύοντι +ἐπὶ +τὸν +δικαιοῦντα +τὸν +ἀσεβῆ, +λογίζεται +ἡ +πίστις +αὐτοῦ +εἰς +δικαιοσύνην, +καθάπερ +καὶ +Δαυεὶδ +λέγει +τὸν +μακαρισμὸν +τοῦ +ἀνθρώπου +ᾧ +ὁ +Θεὸς +λογίζεται +δικαιοσύνην +χωρὶς +ἔργων +Μακάριοι +ὧν +αἱ +ἀνομίαι +ἀφέθησαν +καὶ +ὧν +αἱ +ἁμαρτίαι· +ἐπεκαλύφθησαν +μακάριος +ἀνὴρ +οὗ +οὐ +μὴ +λογίσηται +Κύριος +ἁμαρτίαν. +οὖν +ὁ +μακαρισμὸς +οὗτος +ἐπὶ +τὴν +περιτομὴν +ἢ +καὶ +ἐπὶ +τὴν +ἀκροβυστίαν; +γάρ +λέγομεν +Ἐλογίσθη +τῷ +Ἀβραὰμ +ἡ +πίστις +εἰς +δικαιοσύνην. +οὖν +πῶς +ἐλογίσθη; +ὄντι +ἐν +περιτομῇ +ἢ +ἐν +ἀκροβυστίᾳ; +οὐκ +ἐν +περιτομῇ +ἀλλ’ +ἐν +ἀκροβυστίᾳ· +καὶ +ἔλαβεν +σημεῖον +περιτομῆς +σφραγῖδα +τῆς +δικαιοσύνης +τῆς +πίστεως +τῆς +ἐν +τῇ +ἀκροβυστίᾳ, +εἰς +τὸ +εἶναι +αὐτὸν +πατέρα +πάντων +τῶν +πιστευόντων +δι’ +ἀκροβυστίας, +εἰς +τὸ +λογισθῆναι +αὐτοῖς +τὴν +δικαιοσύνην, +καὶ +πατέρα +περιτομῆς +τοῖς +οὐκ +ἐκ +περιτομῆς +μόνον +ἀλλὰ +καὶ +τοῖς +στοιχοῦσιν +τοῖς +ἴχνεσιν +τῆς +ἐν +ἀκροβυστίᾳ +πίστεως +τοῦ +πατρὸς +ἡμῶν +Ἀβραάμ. +γὰρ +Οὐ +διὰ +νόμου +ἡ +ἐπαγγελία +τὸ +κληρονόμον +κόσμου, +αὐτὸν +εἶναι +τῷ +Ἀβραὰμ +ἢ +τῷ +σπέρματι +αὐτοῦ, +ἀλλὰ +διὰ +δικαιοσύνης +πίστεως. +γὰρ +εἰ +οἱ +ἐκ +νόμου +κληρονόμοι, +κεκένωται +ἡ +πίστις +καὶ +κατήργηται +ἡ +ἐπαγγελία· +γὰρ +ὁ +νόμος +ὀργὴν +κατεργάζεται· +δὲ +οὗ +οὐκ +ἔστιν +νόμος, +οὐδὲ +παράβασις. +Διὰ +τοῦτο +ἐκ +πίστεως, +ἵνα +κατὰ +χάριν, +εἰς +τὸ +εἶναι +βεβαίαν +τὴν +ἐπαγγελίαν +παντὶ +τῷ +σπέρματι, +οὐ +τῷ +ἐκ +τοῦ +νόμου +μόνον +ἀλλὰ +καὶ +τῷ +ἐκ +πίστεως +Ἀβραάμ, +(ὅς +ἐστιν +πατὴρ +πάντων +ἡμῶν, +κατέναντι +οὗ +ἐπίστευσεν +Θεοῦ +τοῦ +ζωοποιοῦντος +τοὺς +νεκροὺς +καὶ +καλοῦντος +τὰ +μὴ +ὄντα +ὡς +ὄντα· +καθὼς +γέγραπται +ὅτι +Πατέρα +πολλῶν +ἐθνῶν +τέθεικά +σε,) +ὃς +παρ’ +ἐλπίδα +ἐπ’ +ἐλπίδι +ἐπίστευσεν +εἰς +τὸ +γενέσθαι +αὐτὸν +πατέρα +πολλῶν +ἐθνῶν +κατὰ +τὸ +εἰρημένον +Οὕτως +ἔσται +τὸ +σπέρμα +σου· +καὶ +μὴ +ἀσθενήσας +τῇ +πίστει +κατενόησεν +τὸ +ἑαυτοῦ +σῶμα +νενεκρωμένον, +ἑκατονταετής +που +ὑπάρχων, +καὶ +τὴν +νέκρωσιν +τῆς +μήτρας +Σάρρας· +δὲ +εἰς +τὴν +ἐπαγγελίαν +τοῦ +Θεοῦ +οὐ +διεκρίθη +τῇ +ἀπιστίᾳ, +ἀλλὰ +ἐνεδυναμώθη +τῇ +πίστει, +δοὺς +δόξαν +τῷ +Θεῷ +καὶ +πληροφορηθεὶς +ὅτι +ἐστιν +δυνατός +ὃ +ἐπήγγελται +καὶ +ποιῆσαι. +διὸ +καὶ +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην. +δὲ +Οὐκ +ἐγράφη +δι’ +αὐτὸν +μόνον +ὅτι +ἐλογίσθη +αὐτῷ, +ἀλλὰ +καὶ +δι’ +ἡμᾶς, +οἷς +λογίζεσθαι, +μέλλει +τοῖς +πιστεύουσιν +ἐπὶ +τὸν +ἐγείραντα +ἐκ +νεκρῶν, +Ἰησοῦν +τὸν +Κύριον +ἡμῶν +ὃς +παρεδόθη +διὰ +τὰ +παραπτώματα +ἡμῶν +καὶ +ἠγέρθη +διὰ +τὴν +δικαίωσιν +ἡμῶν. +οὖν +Δικαιωθέντες +ἐκ +πίστεως +εἰρήνην +ἔχωμεν +πρὸς +τὸν +Θεὸν +διὰ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +δι’ +οὗ +καὶ +τὴν +προσαγωγὴν +ἐσχήκαμεν +τῇ +πίστει +εἰς +τὴν +χάριν +ταύτην +ἐν +ᾗ +ἑστήκαμεν, +καὶ +καυχώμεθα +ἐπ’ +ἐλπίδι +τῆς +δόξης +τοῦ +Θεοῦ. +δέ, +οὐ +μόνον +ἀλλὰ +καὶ +καυχώμεθα +ἐν +ταῖς +θλίψεσιν, +εἰδότες +ὅτι +ἡ +θλῖψις +ὑπομονὴν +κατεργάζεται, +δὲ +ἡ +ὑπομονὴ +δοκιμήν, +δὲ +ἡ +δοκιμὴ +ἐλπίδα· +δὲ +ἡ +ἐλπὶς +οὐ +καταισχύνει, +ὅτι +ἡ +ἀγάπη +τοῦ +Θεοῦ +ἐκκέχυται +ἐν +ταῖς +καρδίαις +ἡμῶν +διὰ +Πνεύματος +Ἁγίου +τοῦ +δοθέντος +ἡμῖν. +γὰρ +ἔτι +Χριστὸς +ὄντων +ἡμῶν +ἀσθενῶν +ἔτι +κατὰ +καιρὸν +ὑπὲρ +ἀσεβῶν +ἀπέθανεν. +γὰρ +μόλις +ὑπὲρ +δικαίου +τις +ἀποθανεῖται· +γὰρ +ὑπὲρ +τοῦ +ἀγαθοῦ +τάχα +τις +καὶ +τολμᾷ +ἀποθανεῖν· +δὲ +συνίστησιν +τὴν +ἑαυτοῦ +ἀγάπην +εἰς +ἡμᾶς +ὁ +Θεὸς +ὅτι +ἔτι +ἁμαρτωλῶν +ὄντων +ἡμῶν +Χριστὸς +ὑπὲρ +ἡμῶν +ἀπέθανεν. +οὖν +πολλῷ +μᾶλλον +δικαιωθέντες +νῦν +ἐν +τῷ +αἵματι +αὐτοῦ +σωθησόμεθα +δι’ +αὐτοῦ +ἀπὸ +τῆς +ὀργῆς. +γὰρ +εἰ +ἐχθροὶ +ὄντες +κατηλλάγημεν +τῷ +Θεῷ +διὰ +τοῦ +θανάτου +τοῦ +Υἱοῦ +αὐτοῦ, +πολλῷ +μᾶλλον +καταλλαγέντες +σωθησόμεθα +ἐν +τῇ +ζωῇ +αὐτοῦ· +δέ, +οὐ +μόνον +ἀλλὰ +καὶ +καυχώμενοι +ἐν +τῷ +Θεῷ +διὰ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +δι’ +οὗ +νῦν +τὴν +καταλλαγὴν +ἐλάβομεν. +Διὰ +τοῦτο +ὥσπερ +δι’ +ἑνὸς +ἀνθρώπου +ἡ +ἁμαρτία +εἰς +τὸν +κόσμον +εἰσῆλθεν, +καὶ +διὰ +τῆς +ἁμαρτίας +ὁ +θάνατος, +καὶ +οὕτως +εἰς +πάντας +ἀνθρώπους +ὁ +θάνατος +διῆλθεν, +ἐφ’ +ᾧ +πάντες +ἥμαρτον· +γὰρ +ἄχρι +νόμου +ἁμαρτία +ἦν +ἐν +κόσμῳ, +δὲ +ἁμαρτία +οὐκ +ἐλλογεῖται +μὴ +ὄντος +νόμου· +ἀλλὰ +ἐβασίλευσεν +ὁ +θάνατος +ἀπὸ +Ἀδὰμ +μέχρι +Μωϋσέως +καὶ +ἐπὶ +τοὺς +μὴ +ἁμαρτήσαντας +ἐπὶ +τῷ +ὁμοιώματι +τῆς +παραβάσεως +Ἀδάμ, +ὅς +ἐστιν +τύπος +τοῦ +μέλλοντος. +Ἀλλ’ +οὐχ +ὡς +τὸ +παράπτωμα, +οὕτως +καὶ +τὸ +χάρισμα· +γὰρ +εἰ +τῷ +τοῦ +ἑνὸς +παραπτώματι +οἱ +πολλοὶ +ἀπέθανον, +πολλῷ +μᾶλλον +ἡ +χάρις +τοῦ +Θεοῦ +καὶ +ἡ +δωρεὰ +ἐν +χάριτι +τῇ +τοῦ +ἑνὸς +ἀνθρώπου +Ἰησοῦ +Χριστοῦ +εἰς +τοὺς +πολλοὺς +ἐπερίσσευσεν. +καὶ +οὐχ +ὡς +δι’ +ἑνὸς +ἁμαρτήσαντος +τὸ +δώρημα· +γὰρ +μὲν +τὸ +κρίμα +ἐξ +ἑνὸς +εἰς +κατάκριμα, +δὲ +τὸ +χάρισμα +ἐκ +πολλῶν +παραπτωμάτων +εἰς +δικαίωμα. +γὰρ +εἰ +τῷ +τοῦ +ἑνὸς +παραπτώματι +ὁ +θάνατος +ἐβασίλευσεν +διὰ +τοῦ +ἑνός, +πολλῷ +μᾶλλον +οἱ +τὴν +περισσείαν +τῆς +χάριτος +καὶ +τῆς +δωρεᾶς +τῆς +δικαιοσύνης +λαμβάνοντες +ἐν +ζωῇ +βασιλεύσουσιν +διὰ +τοῦ +ἑνὸς +Ἰησοῦ +Χριστοῦ. +Ἄρα +οὖν +ὡς +δι’ +ἑνὸς +παραπτώματος +εἰς +πάντας +ἀνθρώπους +εἰς +κατάκριμα, +οὕτως +καὶ +δι’ +ἑνὸς +δικαιώματος +εἰς +πάντας +ἀνθρώπους +εἰς +δικαίωσιν +ζωῆς· +γὰρ +ὥσπερ +διὰ +τῆς +παρακοῆς +τοῦ +ἑνὸς +ἀνθρώπου +ἁμαρτωλοὶ +κατεστάθησαν +οἱ +πολλοί, +οὕτως +καὶ +διὰ +τῆς +ὑπακοῆς +τοῦ +ἑνὸς +δίκαιοι +κατασταθήσονται +οἱ +πολλοί. +δὲ +νόμος +παρεισῆλθεν +ἵνα +πλεονάσῃ +τὸ +παράπτωμα· +δὲ +οὗ +ἐπλεόνασεν +ἡ +ἁμαρτία, +ὑπερεπερίσσευσεν +ἡ +χάρις, +ἵνα +ὥσπερ +ἐβασίλευσεν +ἡ +ἁμαρτία +ἐν +τῷ +θανάτῳ, +οὕτως +καὶ +ἡ +χάρις +βασιλεύσῃ +διὰ +δικαιοσύνης +εἰς +ζωὴν +αἰώνιον +διὰ +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν. +οὖν +Τί +ἐροῦμεν; +ἐπιμένωμεν +τῇ +ἁμαρτίᾳ, +ἵνα +ἡ +χάρις +πλεονάσῃ; +μὴ +γένοιτο. +οἵτινες +ἀπεθάνομεν +τῇ +ἁμαρτίᾳ, +πῶς +ἔτι +ζήσομεν +ἐν +αὐτῇ; +ἢ +ἀγνοεῖτε +ὅτι +ὅσοι +ἐβαπτίσθημεν +εἰς +Χριστὸν +Ἰησοῦν, +εἰς +τὸν +θάνατον +αὐτοῦ +ἐβαπτίσθημεν; +οὖν +συνετάφημεν +αὐτῷ +διὰ +τοῦ +βαπτίσματος +εἰς +τὸν +θάνατον, +ἵνα +ὥσπερ +ἠγέρθη +Χριστὸς +ἐκ +νεκρῶν +διὰ +τῆς +δόξης +τοῦ +Πατρός, +οὕτως +καὶ +ἡμεῖς +ἐν +καινότητι +ζωῆς +περιπατήσωμεν. +γὰρ +εἰ +σύμφυτοι +γεγόναμεν +τῷ +ὁμοιώματι +τοῦ +θανάτου +αὐτοῦ, +ἀλλὰ +καὶ +τῆς +ἀναστάσεως +ἐσόμεθα· +τοῦτο +γινώσκοντες, +ὅτι +ὁ +παλαιὸς +ἡμῶν +ἄνθρωπος +συνεσταυρώθη, +ἵνα +καταργηθῇ +τὸ +σῶμα +τῆς +ἁμαρτίας, +τοῦ +μηκέτι +δουλεύειν +ἡμᾶς +τῇ +ἁμαρτίᾳ· +γὰρ +ὁ +ἀποθανὼν +δεδικαίωται +ἀπὸ +τῆς +ἁμαρτίας. +δὲ +εἰ +ἀπεθάνομεν +σὺν +Χριστῷ, +πιστεύομεν +ὅτι +καὶ +συνζήσομεν +αὐτῷ, +εἰδότες +ὅτι +Χριστὸς +ἐγερθεὶς +ἐκ +νεκρῶν +οὐκέτι +ἀποθνῄσκει, +θάνατος +αὐτοῦ +οὐκέτι +κυριεύει. +γὰρ +ὃ +ἀπέθανεν, +τῇ +ἁμαρτίᾳ +ἀπέθανεν +ἐφάπαξ· +δὲ +ὃ +ζῇ, +ζῇ +τῷ +Θεῷ. +οὕτως +καὶ +ὑμεῖς +λογίζεσθε +ἑαυτοὺς +εἶναι +μὲν +νεκροὺς +τῇ +ἁμαρτίᾳ +δὲ +ζῶντας +τῷ +Θεῷ +ἐν +Χριστῷ +Ἰησοῦ. +οὖν +Μὴ +βασιλευέτω +ἡ +ἁμαρτία +ἐν +τῷ +θνητῷ +ὑμῶν +σώματι +εἰς +τὸ +ὑπακούειν +ταῖς +ἐπιθυμίαις +αὐτοῦ, +μηδὲ +παριστάνετε +τὰ +μέλη +ὑμῶν +ὅπλα +ἀδικίας +τῇ +ἁμαρτίᾳ, +ἀλλὰ +παραστήσατε +ἑαυτοὺς +τῷ +Θεῷ +ὡσεὶ +ἐκ +νεκρῶν +ζῶντας +καὶ +τὰ +μέλη +ὑμῶν +ὅπλα +δικαιοσύνης +τῷ +Θεῷ, +γὰρ +ἁμαρτία +ὑμῶν +οὐ +κυριεύσει· +γάρ +οὐ +ἐστε +ὑπὸ +νόμον +ἀλλὰ +ὑπὸ +χάριν. +οὖν; +Τί +ἁμαρτήσωμεν +ὅτι +οὐκ +ἐσμὲν +ὑπὸ +νόμον +ἀλλὰ +ὑπὸ +χάριν; +μὴ +γένοιτο. +οὐκ +οἴδατε +ὅτι +ᾧ +παριστάνετε +ἑαυτοὺς +δούλους +εἰς +ὑπακοήν, +δοῦλοί +ἐστε +ᾧ +ὑπακούετε, +ἤτοι +ἁμαρτίας +εἰς +θάνατον +ἢ +ὑπακοῆς +εἰς +δικαιοσύνην; +δὲ +χάρις +τῷ +Θεῷ +ὅτι +ἦτε +δοῦλοι +τῆς +ἁμαρτίας, +δὲ +ὑπηκούσατε +ἐκ +καρδίας +εἰς +ὃν +παρεδόθητε +τύπον +διδαχῆς, +δὲ +ἐλευθερωθέντες +ἀπὸ +τῆς +ἁμαρτίας +ἐδουλώθητε +τῇ +δικαιοσύνῃ. +ἀνθρώπινον +λέγω +διὰ +τὴν +ἀσθένειαν +τῆς +σαρκὸς +ὑμῶν. +γὰρ +ὥσπερ +παρεστήσατε +τὰ +μέλη +ὑμῶν +δοῦλα +τῇ +ἀκαθαρσίᾳ +καὶ +τῇ +ἀνομίᾳ +εἰς +τὴν +ἀνομίαν, +οὕτως +νῦν +παραστήσατε +τὰ +μέλη +ὑμῶν +δοῦλα +τῇ +δικαιοσύνῃ +εἰς +ἁγιασμόν. +γὰρ +ὅτε +δοῦλοι +τῆς +ἁμαρτίας, +ἦτε +ἐλεύθεροι +ἦτε +τῇ +δικαιοσύνῃ. +οὖν +τίνα +καρπὸν +εἴχετε +τότε; +ἐφ’ +οἷς +νῦν +ἐπαισχύνεσθε· +γὰρ +τὸ +τέλος +ἐκείνων +θάνατος. +δέ +νυνὶ +ἐλευθερωθέντες +ἀπὸ +τῆς +ἁμαρτίας +δὲ +δουλωθέντες +τῷ +Θεῷ, +ἔχετε +τὸν +καρπὸν +ὑμῶν +εἰς +ἁγιασμόν, +δὲ +τὸ +τέλος +ζωὴν +αἰώνιον. +γὰρ +τὰ +ὀψώνια +τῆς +ἁμαρτίας +θάνατος, +δὲ +τὸ +χάρισμα +τοῦ +Θεοῦ +ζωὴ +αἰώνιος +ἐν +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν. +Ἢ +ἀδελφοί, +ἀγνοεῖτε, +γὰρ +γινώσκουσιν +νόμον +λαλῶ, +ὅτι +ὁ +νόμος +κυριεύει +τοῦ +ἀνθρώπου +ἐφ’ +ὅσον +χρόνον +ζῇ; +γὰρ +ἡ +ὕπανδρος +γυνὴ +τῷ +ζῶντι +ἀνδρὶ +δέδεται +νόμῳ· +δὲ +ἐὰν +ἀποθάνῃ +ὁ +ἀνήρ, +κατήργηται +ἀπὸ +τοῦ +νόμου +τοῦ +ἀνδρός. +ἄρα +οὖν +ζῶντος +τοῦ +ἀνδρὸς +μοιχαλὶς +χρηματίσει +ἐὰν +γένηται +ἀνδρὶ +ἑτέρῳ· +δὲ +ἐὰν +ἀποθάνῃ +ὁ +ἀνήρ, +ἐλευθέρα +ἐστὶν +ἀπὸ +τοῦ +νόμου, +τοῦ +μὴ +εἶναι +αὐτὴν +μοιχαλίδα +γενομένην +ἀνδρὶ +ἑτέρῳ. +ὥστε, +ἀδελφοί +μου, +καὶ +ὑμεῖς +ἐθανατώθητε +τῷ +νόμῳ +διὰ +τοῦ +σώματος +τοῦ +Χριστοῦ, +εἰς +τὸ +γενέσθαι +ὑμᾶς +ἑτέρῳ, +τῷ +ἐκ +νεκρῶν +ἐγερθέντι, +ἵνα +καρποφορήσωμεν +τῷ +Θεῷ. +γὰρ +ὅτε +ἦμεν +ἐν +τῇ +σαρκί, +τὰ +παθήματα +τῶν +ἁμαρτιῶν +τὰ +διὰ +τοῦ +νόμου +ἐνηργεῖτο +ἐν +τοῖς +μέλεσιν +ἡμῶν +εἰς +τὸ +καρποφορῆσαι +τῷ +θανάτῳ· +δὲ +νυνὶ +κατηργήθημεν +ἀπὸ +τοῦ +νόμου, +ἀποθανόντες +ἐν +ᾧ +κατειχόμεθα, +ὥστε +δουλεύειν +ἡμᾶς +ἐν +καινότητι +πνεύματος +καὶ +οὐ +παλαιότητι +γράμματος. +οὖν +Τί +ἐροῦμεν; +ὁ +νόμος +ἁμαρτία; +μὴ +γένοιτο· +ἀλλὰ +τὴν +ἁμαρτίαν +οὐκ +ἔγνων +εἰ +μὴ +διὰ +νόμου· +γὰρ +τε +τήν +ἐπιθυμίαν +οὐκ +ᾔδειν +εἰ +μὴ +ὁ +νόμος +ἔλεγεν +Οὐκ +ἐπιθυμήσεις· +δὲ +ἀφορμὴν +λαβοῦσα +ἡ +ἁμαρτία +διὰ +τῆς +ἐντολῆς +κατειργάσατο +ἐν +ἐμοὶ +πᾶσαν +ἐπιθυμίαν· +γὰρ +χωρὶς +νόμου +ἁμαρτία +νεκρά. +δὲ +ἐγὼ +ἔζων +χωρὶς +νόμου +ποτέ· +δὲ +ἐλθούσης +τῆς +ἐντολῆς +ἡ +ἁμαρτία +ἀνέζησεν, +δὲ +ἐγὼ +ἀπέθανον, +καὶ +εὑρέθη +μοι +ἡ +ἐντολὴ +ἡ +εἰς +ζωὴν, +αὕτη +εἰς +θάνατον· +γὰρ +ἡ +ἁμαρτία +ἀφορμὴν +λαβοῦσα +διὰ +τῆς +ἐντολῆς +ἐξηπάτησέν +με +καὶ +δι’ +αὐτῆς +ἀπέκτεινεν. +ὥστε +μὲν +ὁ +νόμος +ἅγιος, +καὶ +ἡ +ἐντολὴ +ἁγία +καὶ +δικαία +καὶ +ἀγαθή. +οὖν +Τὸ +ἀγαθὸν +ἐμοὶ +ἐγένετο +θάνατος; +μὴ +γένοιτο· +ἀλλὰ +ἡ +ἁμαρτία, +ἵνα +φανῇ +ἁμαρτία, +διὰ +τοῦ +ἀγαθοῦ +μοι +κατεργαζομένη +θάνατον, +ἵνα +γένηται +καθ’ +ὑπερβολὴν +ἁμαρτωλὸς +ἡ +ἁμαρτία +διὰ +τῆς +ἐντολῆς. +γὰρ +οἴδαμεν +ὅτι +ὁ +νόμος +πνευματικός +ἐστιν· +δὲ +ἐγὼ +σάρκινός +εἰμι, +πεπραμένος +ὑπὸ +τὴν +ἁμαρτίαν. +γὰρ +ὃ +κατεργάζομαι +οὐ +γινώσκω· +γὰρ +οὐ +ὃ +θέλω +τοῦτο +πράσσω, +ἀλλ’ +ὃ +μισῶ +τοῦτο +ποιῶ. +δὲ +εἰ +ὃ +οὐ +θέλω +τοῦτο +ποιῶ, +σύνφημι +τῷ +νόμῳ +ὅτι +καλός. +δὲ +νυνὶ +οὐκέτι +ἐγὼ +κατεργάζομαι +αὐτὸ +ἀλλὰ +ἡ +ἐνοικοῦσα +ἐν +ἐμοὶ +ἁμαρτία. +γὰρ +οἶδα +ὅτι +οὐκ +οἰκεῖ +ἐν +ἐμοί, +τοῦτ’ +ἔστιν +ἐν +τῇ +σαρκί +μου, +ἀγαθόν· +γὰρ +τὸ +θέλειν +παράκειταί +μοι, +δὲ +τὸ +κατεργάζεσθαι +τὸ +καλὸν +οὔ· +γὰρ +οὐ +ὃ +θέλω +ἀγαθόν, +ποιῶ +ἀλλὰ +ὃ +οὐ +θέλω +κακὸν +τοῦτο +πράσσω. +δὲ +εἰ +ὃ +οὐ +θέλω +τοῦτο +ἐγὼ +ποιῶ, +οὐκέτι +ἐγὼ +κατεργάζομαι +αὐτὸ +ἀλλὰ +ἡ +οἰκοῦσα +ἐν +ἐμοὶ +ἁμαρτία. +ἄρα +εὑρίσκω +τὸν +νόμον +ἐμοὶ +τῷ +θέλοντι +ποιεῖν +τὸ +καλὸν, +ὅτι +ἐμοὶ +τὸ +κακὸν +παράκειται· +γὰρ +συνήδομαι +τῷ +νόμῳ +τοῦ +Θεοῦ +κατὰ +τὸν +ἔσω +ἄνθρωπον, +δὲ +βλέπω +ἕτερον +νόμον +ἐν +τοῖς +μέλεσίν +μου +ἀντιστρατευόμενον +τῷ +νόμῳ +τοῦ +νοός +μου +καὶ +αἰχμαλωτίζοντά +με +ἐν +τῷ +νόμῳ +τῆς +ἁμαρτίας +τῷ +ὄντι +ἐν +τοῖς +μέλεσίν +μου. +Ταλαίπωρος +ἄνθρωπος· +ἐγὼ +τίς +με +ῥύσεται +ἐκ +τοῦ +σώματος +τοῦ +θανάτου +τούτου; +χάρις +τῷ +Θεῷ +διὰ +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν. +ἄρα +οὖν +μὲν +αὐτὸς +ἐγὼ +τῷ +νοῒ +δουλεύω +νόμῳ +Θεοῦ, +δὲ +τῇ +σαρκὶ +νόμῳ +ἁμαρτίας. +ἄρα +Οὐδὲν +κατάκριμα +νῦν +τοῖς +ἐν +Χριστῷ +Ἰησοῦ. +γὰρ +ὁ +νόμος +τοῦ +Πνεύματος +τῆς +ζωῆς +ἐν +Χριστῷ +Ἰησοῦ +ἠλευθέρωσέν +σε +ἀπὸ +τοῦ +νόμου +τῆς +ἁμαρτίας +καὶ +τοῦ +θανάτου. +γὰρ +τὸ +ἀδύνατον +τοῦ +νόμου, +ἐν +ᾧ +ἠσθένει +διὰ +τῆς +σαρκός, +ὁ +Θεὸς +τὸν +ἑαυτοῦ +Υἱὸν +πέμψας +ἐν +ὁμοιώματι +σαρκὸς +ἁμαρτίας +καὶ +περὶ +ἁμαρτίας +κατέκρινεν +τὴν +ἁμαρτίαν +ἐν +τῇ +σαρκί, +ἵνα +τὸ +δικαίωμα +τοῦ +νόμου +πληρωθῇ +ἐν +ἡμῖν +τοῖς +περιπατοῦσιν +μὴ +κατὰ +σάρκα +ἀλλὰ +κατὰ +πνεῦμα. +γὰρ +οἱ +κατὰ +σάρκα +ὄντες +τὰ +τῆς +σαρκὸς +φρονοῦσιν, +δὲ +οἱ +κατὰ +πνεῦμα +τὰ +τοῦ +πνεύματος. +γὰρ +τὸ +φρόνημα +τῆς +σαρκὸς +θάνατος, +δὲ +τὸ +φρόνημα +τοῦ +πνεύματος +ζωὴ +καὶ +εἰρήνη. +διότι +τὸ +φρόνημα +τῆς +σαρκὸς +ἔχθρα +εἰς +Θεόν· +γὰρ +τῷ +νόμῳ +τοῦ +Θεοῦ +οὐχ +ὑποτάσσεται, +γὰρ +οὐδὲ +δύναται· +δὲ +οἱ +ἐν +σαρκὶ +ὄντες +Θεῷ +ἀρέσαι +οὐ +δύνανται. +δὲ +Ὑμεῖς +ἐστὲ +οὐκ +ἐν +σαρκὶ +ἀλλὰ +ἐν +πνεύματι, +εἴπερ +Πνεῦμα +Θεοῦ +οἰκεῖ +ἐν +ὑμῖν. +δέ +εἰ +τις +Πνεῦμα +Χριστοῦ +οὐκ +ἔχει, +οὗτος +οὐκ +ἔστιν +αὐτοῦ. +δὲ +εἰ +Χριστὸς +ἐν +ὑμῖν, +μὲν +τὸ +σῶμα +νεκρὸν +διὰ +ἁμαρτίαν, +δὲ +τὸ +πνεῦμα +ζωὴ +διὰ +δικαιοσύνην. +δὲ +εἰ +τὸ +Πνεῦμα +τοῦ +ἐγείραντος +τὸν +Ἰησοῦν +ἐκ +νεκρῶν +οἰκεῖ +ἐν +ὑμῖν, +ὁ +ἐγείρας +ἐκ +νεκρῶν +Χριστὸν +Ἰησοῦν +ζωοποιήσει +καὶ +τὰ +θνητὰ +σώματα +ὑμῶν +διὰ +τοῦ +ἐνοικοῦντος +ἐν +ὑμῖν. +αὐτοῦ +Πνεύματος +Ἄρα +οὖν, +ἀδελφοί, +ὀφειλέται +ἐσμέν, +οὐ +τῇ +σαρκὶ +τοῦ +κατὰ +σάρκα +ζῆν. +γὰρ +εἰ +κατὰ +σάρκα +ζῆτε, +μέλλετε +ἀποθνήσκειν· +δὲ +εἰ +πνεύματι +τὰς +πράξεις +τοῦ +σώματος +θανατοῦτε, +ζήσεσθε. +γὰρ +ὅσοι +Πνεύματι +Θεοῦ +ἄγονται, +οὗτοι +υἱοί +Θεοῦ. +εἰσιν +γὰρ +οὐ +ἐλάβετε +πνεῦμα +δουλείας +πάλιν +εἰς +φόβον, +ἀλλὰ +ἐλάβετε +πνεῦμα +υἱοθεσίας, +ἐν +ᾧ +κράζομεν +Ἀββᾶ +ὁ +Πατήρ. +αὐτὸ +τὸ +Πνεῦμα +συνμαρτυρεῖ +τῷ +πνεύματι +ἡμῶν +ὅτι +ἐσμὲν +τέκνα +Θεοῦ. +δὲ +εἰ +τέκνα, +καὶ +κληρονόμοι· +μὲν +κληρονόμοι +Θεοῦ, +δὲ +συνκληρονόμοι +Χριστοῦ, +εἴπερ +συνπάσχομεν +ἵνα +καὶ +συνδοξασθῶμεν. +γὰρ +Λογίζομαι +ὅτι +οὐκ +ἄξια +τὰ +παθήματα +τοῦ +νῦν +καιροῦ +πρὸς +τὴν +μέλλουσαν +ἀποκαλυφθῆναι +εἰς +ἡμᾶς. +δόξαν +γὰρ +ἡ +ἀποκαραδοκία +τῆς +κτίσεως +τὴν +ἀποκάλυψιν +τῶν +υἱῶν +τοῦ +Θεοῦ +ἀπεκδέχεται. +γὰρ +τῇ +ματαιότητι +ἡ +κτίσις +ὑπετάγη, +οὐχ +ἑκοῦσα, +ἀλλὰ +διὰ +τὸν +ὑποτάξαντα, +ἐφ’ +ἑλπίδι +διότι +καὶ +αὐτὴ +ἡ +κτίσις +ἐλευθερωθήσεται +ἀπὸ +τῆς +δουλείας +τῆς +φθορᾶς +εἰς +τὴν +ἐλευθερίαν +τῆς +δόξης +τῶν +τέκνων +τοῦ +Θεοῦ. +γὰρ +οἴδαμεν +ὅτι +πᾶσα +ἡ +κτίσις +συνστενάζει +καὶ +συνωδίνει +ἄχρι +τοῦ +νῦν· +δέ, +οὐ +μόνον +ἀλλὰ +καὶ +αὐτοὶ +τὴν +ἀπαρχὴν +τοῦ +Πνεύματος +ἔχοντες +ἡμεῖς +καὶ +αὐτοὶ +ἐν +ἑαυτοῖς +στενάζομεν, +ἀπεκδεχόμενοι, +υἱοθεσίαν +τὴν +ἀπολύτρωσιν +τοῦ +σώματος +ἡμῶν. +γὰρ +τῇ +ἐλπίδι +ἐσώθημεν· +δὲ +ἐλπὶς +βλεπομένη +οὐκ +ἔστιν +ἐλπίς· +γὰρ +ὃ +βλέπει +τις, +τί +ἐλπίζει; +δὲ +εἰ +ὃ +οὐ +βλέπομεν +ἐλπίζομεν, +δι’ +ὑπομονῆς +ἀπεκδεχόμεθα. +δὲ +Ὡσαύτως +καὶ +τὸ +Πνεῦμα +συναντιλαμβάνεται +τῇ +ἀσθενείᾳ +ἡμῶν· +γὰρ +τὸ +τί +προσευξώμεθα +καθὸ +δεῖ +οὐκ +οἴδαμεν, +ἀλλὰ +αὐτὸ +τὸ +Πνεῦμα +ὑπερεντυγχάνει +στεναγμοῖς +ἀλαλήτοις· +δὲ +ὁ +ἐραυνῶν +τὰς +καρδίας +οἶδεν +τί +τὸ +φρόνημα +τοῦ +Πνεύματος, +ὅτι +κατὰ +Θεὸν +ἐντυγχάνει +ὑπὲρ +ἁγίων. +δὲ +Οἴδαμεν +ὅτι +τοῖς +ἀγαπῶσιν +τὸν +Θεὸν +πάντα +συνεργεῖ +εἰς +ἀγαθόν, +τοῖς +κατὰ +πρόθεσιν +κλητοῖς +οὖσιν. +ὅτι +οὓς +προέγνω, +καὶ +προώρισεν +συμμόρφους +τῆς +εἰκόνος +τοῦ +Υἱοῦ +αὐτοῦ, +εἰς +τὸ +εἶναι +αὐτὸν +πρωτότοκον +ἐν +πολλοῖς +ἀδελφοῖς· +δὲ +οὓς +προώρισεν, +τούτους +καὶ +ἐκάλεσεν· +καὶ +οὓς +ἐκάλεσεν, +τούτους +καὶ +ἐδικαίωσεν· +δὲ +οὓς +ἐδικαίωσεν, +τούτους +καὶ +ἐδόξασεν. +οὖν +Τί +ἐροῦμεν +πρὸς +ταῦτα; +εἰ +ὁ +Θεὸς +ὑπὲρ +ἡμῶν, +τίς +καθ’ +ἡμῶν; +γε +ὅς +τοῦ +ἰδίου +Υἱοῦ +οὐκ +ἐφείσατο, +ἀλλὰ +ὑπὲρ +ἡμῶν +πάντων +παρέδωκεν +αὐτόν, +πῶς +οὐχὶ +καὶ +σὺν +αὐτῷ +τὰ +πάντα +ἡμῖν +χαρίσεται; +τίς +ἐγκαλέσει +κατὰ +ἐκλεκτῶν +Θεοῦ; +Θεὸς +ὁ +δικαιῶν· +τίς +ὁ +κατακρινῶν; +Χριστὸς +Ἰησοῦς +ὁ +ἀποθανών, +δὲ +μᾶλλον +ἐγερθείς, +ὅς +ἐστιν +ἐν +δεξιᾷ +τοῦ +Θεοῦ, +ὃς +καὶ +ἐντυγχάνει +ὑπὲρ +ἡμῶν. +τίς +ἡμᾶς +χωρίσει +ἀπὸ +τῆς +ἀγάπης +τοῦ +Χριστοῦ; +θλῖψις +ἢ +στενοχωρία +ἢ +διωγμὸς +ἢ +λιμὸς +ἢ +γυμνότης +ἢ +κίνδυνος +ἢ +μάχαιρα; +καθὼς +γέγραπται +ὅτι +Ἕνεκεν +σοῦ +θανατούμεθα +ὅλην +τὴν +ἡμέραν, +ἐλογίσθημεν +ὡς +πρόβατα +σφαγῆς. +ἀλλ’ +ἐν +τούτοις +πᾶσιν +ὑπερνικῶμεν +διὰ +τοῦ +ἀγαπήσαντος +ἡμᾶς. +γὰρ +πέπεισμαι +ὅτι +οὔτε +θάνατος +οὔτε +ζωὴ +οὔτε +ἄγγελοι +οὔτε +ἀρχαὶ +οὔτε +ἐνεστῶτα +οὔτε +μέλλοντα +οὔτε +δυνάμεις +οὔτε +ὕψωμα +οὔτε +βάθος +οὔτε +τις +κτίσις +ἑτέρα +δυνήσεται +ἡμᾶς +χωρίσαι +ἀπὸ +τῆς +ἀγάπης +τοῦ +Θεοῦ +τῆς +ἐν +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν. +Ἀλήθειαν +λέγω +ἐν +Χριστῷ, +οὐ +ψεύδομαι, +συνμαρτυρούσης +μοι +τῆς +συνειδήσεώς +μου +ἐν +Πνεύματι +Ἁγίῳ, +ὅτι +λύπη +μοί +ἐστιν +μεγάλη +καὶ +ἀδιάλειπτος +ὀδύνη +τῇ +καρδίᾳ +μου. +γὰρ +ηὐχόμην +αὐτὸς +ἐγὼ +ἀνάθεμα +εἶναι +ἀπὸ +τοῦ +Χριστοῦ +ὑπὲρ +τῶν +ἀδελφῶν +μου +τῶν +συγγενῶν +μου +κατὰ +σάρκα, +οἵτινές +εἰσιν +Ἰσραηλεῖται, +ὧν +ἡ +υἱοθεσία +καὶ +ἡ +δόξα +καὶ +αἱ +διαθῆκαι +καὶ +ἡ +νομοθεσία +καὶ +ἡ +λατρεία +καὶ +αἱ +ἐπαγγελίαι, +ὧν +οἱ +πατέρες, +καὶ +ἐξ +ὧν +ὁ +Χριστὸς +τὸ +κατὰ +σάρκα, +ὁ +ὢν +ἐπὶ +πάντων +Θεὸς +εὐλογητὸς +εἰς +τοὺς +αἰῶνας, +ἀμήν. +δὲ +Οὐχ +οἷον +ὅτι +ἐκπέπτωκεν +ὁ +λόγος +τοῦ +Θεοῦ. +γὰρ +οὐ +πάντες +οἱ +ἐξ +Ἰσραήλ, +οὗτοι +Ἰσραήλ· +οὐδ’ +ὅτι +εἰσὶν +σπέρμα +Ἀβραάμ, +πάντες +τέκνα, +ἀλλ’ +Ἐν +Ἰσαὰκ +κληθήσεταί +σοι +σπέρμα. +τοῦτ’ +ἔστιν, +οὐ +τὰ +τέκνα +τῆς +σαρκὸς +ταῦτα +τέκνα +τοῦ +Θεοῦ, +ἀλλὰ +τὰ +τέκνα +τῆς +ἐπαγγελίας +λογίζεται +εἰς +σπέρμα. +γὰρ +ἐπαγγελίας +ὁ +λόγος +οὗτος +Κατὰ +τὸν +καιρὸν +τοῦτον +ἐλεύσομαι +καὶ +ἔσται +τῇ +Σάρρᾳ +υἱός. +δέ, +οὐ +μόνον +ἀλλὰ +καὶ +Ῥεβέκκα +κοίτην +ἔχουσα, +ἐξ +ἑνὸς +Ἰσαὰκ +τοῦ +πατρὸς +ἡμῶν· +γὰρ +μήπω +γεννηθέντων +μηδὲ +πραξάντων +τι +ἀγαθὸν +ἢ +φαῦλον, +ἵνα +ἡ +κατ’ +ἐκλογὴν +πρόθεσις +τοῦ +Θεοῦ +μένῃ, +οὐκ +ἐξ +ἔργων +ἀλλ’ +ἐκ +τοῦ +καλοῦντος, +ἐρρέθη +αὐτῇ +ὅτι +Ὁ +μείζων +δουλεύσει +τῷ +ἐλάσσονι· +καθάπερ +γέγραπται +Τὸν +Ἰακὼβ +ἠγάπησα, +δὲ +τὸν +Ἠσαῦ +ἐμίσησα. +οὖν +Τί +ἐροῦμεν; +μὴ +ἀδικία +παρὰ +τῷ +θεῷ; +μὴ +γένοιτο. +γὰρ +τῷ +Μωϋσεῖ +λέγει +Ἐλεήσω +ἂν +ὃν +ἐλεῶ, +καὶ +οἰκτειρήσω +ἂν +ὃν +οἰκτείρω. +ἄρα +οὖν +οὐ +τοῦ +θέλοντος +οὐδὲ +τοῦ +τρέχοντος, +ἀλλὰ +τοῦ +ἐλεῶντος +Θεοῦ. +γὰρ +λέγει +ἡ +γραφὴ +τῷ +Φαραὼ +ὅτι +Εἰς +αὐτὸ +τοῦτο +ἐξήγειρά +σε, +ὅπως +ἐνδείξωμαι +ἐν +σοὶ +τὴν +δύναμίν +μου, +καὶ +ὅπως +διαγγελῇ +τὸ +ὄνομά +μου +ἐν +πάσῃ +τῇ +γῇ. +ἄρα +οὖν +ὃν +θέλει +ἐλεεῖ, +δὲ +ὃν +θέλει +σκληρύνει. +οὖν +Ἐρεῖς +μοι +Τί +ἔτι +μέμφεται; +γὰρ +τῷ +βουλήματι +αὐτοῦ +τίς +ἀνθέστηκεν; +ὦ +ἄνθρωπε, +μενοῦνγε +τίς +εἶ +σὺ +ὁ +ἀνταποκρινόμενος +τῷ +Θεῷ; +μὴ +ἐρεῖ +τὸ +πλάσμα +τῷ +πλάσαντι +Τί +με +ἐποίησας +οὕτως; +ἢ +οὐκ +ἔχει +ὁ +κεραμεὺς +ἐξουσίαν +τοῦ +πηλοῦ +ἐκ +τοῦ +αὐτοῦ +φυράματος +ποιῆσαι +σκεῦος, +μὲν +ὃ +εἰς +τιμὴν +δὲ +ὃ +εἰς +ἀτιμίαν; +δὲ +εἰ +ὁ +Θεὸς +θέλων +ἐνδείξασθαι +τὴν +ὀργὴν +καὶ +γνωρίσαι +τὸ +δυνατὸν +αὐτοῦ +ἤνεγκεν +ἐν +πολλῇ +μακροθυμίᾳ +σκεύη +ὀργῆς +κατηρτισμένα +εἰς +ἀπώλειαν, +καὶ +ἵνα +γνωρίσῃ +τὸν +πλοῦτον +τῆς +δόξης +αὐτοῦ +ἐπὶ +σκεύη +ἐλέους, +ἃ +προητοίμασεν +εἰς +δόξαν, +οὓς +καὶ +ἐκάλεσεν +ἡμᾶς +οὐ +μόνον +ἐξ +Ἰουδαίων +ἀλλὰ +καὶ +ἐξ +ἐθνῶν; +ὡς +καὶ +ἐν +τῷ +Ὡσηὲ +λέγει +Καλέσω +τὸν +οὐ +λαόν +μου +λαόν +μου +καὶ +τὴν +οὐκ +ἠγαπημένην +ἠγαπημένην· +καὶ +ἔσται +ἐν +τῷ +τόπῳ +οὗ +ἐρρέθη +αὐτοῖς +Οὐ +λαός +μου +ὑμεῖς, +ἐκεῖ +κληθήσονται +υἱοὶ +Θεοῦ +ζῶντος. +δὲ +Ἠσαΐας +κράζει +ὑπὲρ +τοῦ +Ἰσραήλ +Ἐὰν +ᾖ +ὁ +ἀριθμὸς +τῶν +υἱῶν +Ἰσραὴλ +ὡς +ἡ +ἄμμος +τῆς +θαλάσσης, +τὸ +ὑπόλειμμα +σωθήσεται· +γὰρ +λόγον +συντελῶν +καὶ +συντέμνων +ποιήσει +Κύριος +ἐπὶ +τῆς +γῆς. +καὶ +καθὼς +προείρηκεν +Ἠσαΐας +Εἰ +μὴ +Κύριος +Σαβαὼθ +ἐγκατέλιπεν +ἡμῖν +σπέρμα, +ἂν +ὡς +Σόδομα +ἐγενήθημεν +καὶ +ἂν +ὡς +Γόμορρα +ὡμοιώθημεν. +οὖν +Τί +ἐροῦμεν; +ὅτι +ἔθνη +τὰ +μὴ +διώκοντα +δικαιοσύνην +κατέλαβεν +δικαιοσύνην, +δὲ +δικαιοσύνην +τὴν +ἐκ +πίστεως· +δὲ +Ἰσραὴλ +διώκων +νόμον +δικαιοσύνης +εἰς +νόμον +οὐκ +ἔφθασεν. +διὰ +τί; +ὅτι +οὐκ +ἐκ +πίστεως +ἀλλ’ +ὡς +ἐξ +ἔργων· +προσέκοψαν +τῷ +λίθῳ +τοῦ +προσκόμματος, +καθὼς +γέγραπται +Ἰδοὺ +τίθημι +ἐν +Σιὼν +λίθον +προσκόμματος +καὶ +πέτραν +σκανδάλου, +καὶ +ὁ +πιστεύων +ἐπ’ +αὐτῷ +οὐ +καταισχυνθήσεται. +Ἀδελφοί, +μὲν +ἡ +εὐδοκία +τῆς +ἐμῆς +καρδίας +καὶ +ἡ +δέησις +πρὸς +τὸν +Θεὸν +ὑπὲρ +αὐτῶν +εἰς +σωτηρίαν. +γὰρ +μαρτυρῶ +αὐτοῖς +ὅτι +ζῆλον +Θεοῦ +ἔχουσιν, +ἀλλ’ +οὐ +κατ’ +ἐπίγνωσιν· +γὰρ +ἀγνοοῦντες +τὴν +τοῦ +Θεοῦ +δικαιοσύνην, +καὶ +τὴν +ἰδίαν +στῆσαι, +ζητοῦντες +τῇ +δικαιοσύνῃ +τοῦ +Θεοῦ +οὐχ +ὑπετάγησαν. +γὰρ +τέλος +νόμου +Χριστὸς +εἰς +δικαιοσύνην +παντὶ +τῷ +πιστεύοντι. +γὰρ +Μωϋσῆς +γράφει +ὅτι +τὴν +δικαιοσύνην +τὴν +ἐκ +νόμου +ὁ +ποιήσας +ἄνθρωπος +ζήσεται +ἐν +αὐτῇ. +δὲ +ἡ +ἐκ +πίστεως +δικαιοσύνη +οὕτως +λέγει +Μὴ +εἴπῃς +ἐν +τῇ +καρδίᾳ +σου +Τίς +ἀναβήσεται +εἰς +τὸν +οὐρανόν; +τοῦτ’ +ἔστιν +Χριστὸν +καταγαγεῖν· +ἤ +Τίς +καταβήσεται +εἰς +τὴν +ἄβυσσον; +τοῦτ’ +ἔστιν +Χριστὸν +ἐκ +νεκρῶν +ἀναγαγεῖν. +ἀλλὰ +τί +λέγει; +Ἐγγύς +σου +τὸ +ῥῆμά +ἐστιν, +ἐν +τῷ +στόματί +σου +καὶ +ἐν +τῇ +καρδίᾳ +σου· +τοῦτ’ +ἔστιν +τὸ +ῥῆμα +τῆς +πίστεως +ὃ +κηρύσσομεν. +ὅτι +ἐὰν +ὁμολογήσῃς +ἐν +τῷ +στόματί +σου +Κύριον +Ἰησοῦν, +καὶ +πιστεύσῃς +ἐν +τῇ +καρδίᾳ +σου +ὅτι +ὁ +Θεὸς +αὐτὸν +ἤγειρεν +ἐκ +νεκρῶν, +σωθήσῃ· +γὰρ +καρδίᾳ +πιστεύεται +εἰς +δικαιοσύνην, +δὲ +στόματι +ὁμολογεῖται +εἰς +σωτηρίαν. +γὰρ +λέγει +ἡ +γραφή +Πᾶς +ὁ +πιστεύων +ἐπ’ +αὐτῷ +οὐ +καταισχυνθήσεται. +γάρ +οὐ +ἐστιν +διαστολὴ +τε +Ἰουδαίου +καὶ +Ἕλληνος· +γὰρ +ὁ +αὐτὸς +Κύριος +πάντων, +πλουτῶν +εἰς +πάντας +τοὺς +ἐπικαλουμένους +αὐτόν· +γὰρ +Πᾶς +ἂν +ὃς +ἐπικαλέσηται +τὸ +ὄνομα +Κυρίου +σωθήσεται. +οὖν +πῶς +ἐπικαλέσωνται +εἰς +ὃν +οὐκ +ἐπίστευσαν; +δὲ +πῶς +πιστεύσωσιν +οὗ +οὐκ +ἤκουσαν; +δὲ +πῶς +ἀκούσωσιν +χωρὶς +κηρύσσοντος; +δὲ +πῶς +κηρύξωσιν +ἐὰν +μὴ +ἀποσταλῶσιν; +καθάπερ +γέγραπται +Ὡς +ὡραῖοι +οἱ +πόδες +τῶν +εὐαγγελιζομένων +ἀγαθά. +Ἀλλ’ +οὐ +πάντες +ὑπήκουσαν +τῷ +εὐαγγελίῳ. +γὰρ +Ἠσαΐας +λέγει +Κύριε, +τίς +ἐπίστευσεν +τῇ +ἀκοῇ +ἡμῶν; +ἄρα +ἡ +πίστις +ἐξ +ἀκοῆς, +δὲ +ἡ +ἀκοὴ +διὰ +ῥήματος +Χριστοῦ. +ἀλλὰ +λέγω, +μὴ +οὐκ +ἤκουσαν; +μενοῦνγε +Εἰς +πᾶσαν +τὴν +γῆν +ἐξῆλθεν +ὁ +φθόγγος +αὐτῶν, +καὶ +εἰς +τὰ +πέρατα +τῆς +οἰκουμένης +τὰ +ῥήματα +αὐτῶν. +ἀλλὰ +λέγω, +μὴ +Ἰσραὴλ +οὐκ +ἔγνω; +πρῶτος +Μωϋσῆς +λέγει +Ἐγὼ +παραζηλώσω +ὑμᾶς +ἐπ’ +οὐκ +ἔθνει, +ἐπ’ +ἔθνει +ἀσυνέτῳ +παροργιῶ +ὑμᾶς. +δὲ +Ἠσαΐας +ἀποτολμᾷ +καὶ +λέγει +Εὑρέθην +τοῖς +ἐμὲ +μὴ +ζητοῦσιν, +ἐμφανὴς +ἐγενόμην +τοῖς +ἐμὲ +μὴ +ἐπερωτῶσιν. +δὲ +πρὸς +τὸν +Ἰσραὴλ +λέγει +Ὅλην +τὴν +ἡμέραν +ἐξεπέτασα +τὰς +χεῖράς +μου +πρὸς +λαὸν +ἀπειθοῦντα +καὶ +ἀντιλέγοντα. +οὖν, +Λέγω +μὴ +ἀπώσατο +ὁ +Θεὸς +τὸν +λαὸν +αὐτοῦ; +μὴ +γένοιτο· +γὰρ +καὶ +ἐγὼ +Ἰσραηλείτης +εἰμί, +ἐκ +σπέρματος +Ἀβραάμ, +φυλῆς +Βενιαμείν. +οὐκ +ἀπώσατο +ὁ +Θεὸς +τὸν +λαὸν +αὐτοῦ +ὃν +προέγνω. +ἢ +οὐκ +οἴδατε +ἐν +Ἠλείᾳ +τί +λέγει +ἡ +γραφή, +ὡς +ἐντυγχάνει +τῷ +Θεῷ +κατὰ +τοῦ +Ἰσραήλ; +Κύριε, +τοὺς +προφήτας +σου +ἀπέκτειναν, +τὰ +θυσιαστήριά +σου +κατέσκαψαν, +κἀγὼ +ὑπελείφθην +μόνος +καὶ +ζητοῦσιν +τὴν +ψυχήν +μου. +ἀλλὰ +τί +λέγει +αὐτῷ +ὁ +χρηματισμός; +Κατέλιπον +ἐμαυτῷ +ἑπτακισχιλίους +ἄνδρας, +οἵτινες +οὐκ +ἔκαμψαν +γόνυ +τῇ +Βάαλ. +οὖν +οὕτως +καὶ +ἐν +τῷ +νῦν +καιρῷ +λίμμα +κατ’ +ἐκλογὴν +χάριτος +γέγονεν· +δὲ +εἰ +χάριτι, +οὐκέτι +ἐξ +ἔργων, +ἐπεὶ +ἡ +χάρις +οὐκέτι +γίνεται +χάρις. +οὖν; +Τί +ὃ +ἐπιζητεῖ +Ἰσραήλ, +τοῦτο +οὐκ +ἐπέτυχεν, +δὲ +ἡ +ἐκλογὴ +ἐπέτυχεν· +δὲ +οἱ +λοιποὶ +ἐπωρώθησαν, +καθάπερ +γέγραπται +Ἔδωκεν +αὐτοῖς +ὁ +Θεὸς +πνεῦμα +κατανύξεως, +ὀφθαλμοὺς +τοῦ +μὴ +βλέπειν +καὶ +ὦτα +τοῦ +μὴ +ἀκούειν, +ἕως +τῆς +σήμερον +ἡμέρας. +καὶ +Δαυεὶδ +λέγει +Γενηθήτω +ἡ +τράπεζα +αὐτῶν +εἰς +παγίδα +καὶ +εἰς +θήραν +καὶ +εἰς +σκάνδαλον +καὶ +εἰς +ἀνταπόδομα +αὐτοῖς, +σκοτισθήτωσαν +οἱ +ὀφθαλμοὶ +αὐτῶν +τοῦ +μὴ +βλέπειν, +καὶ +τὸν +νῶτον +αὐτῶν +διὰ +παντὸς +σύνκαμψον. +οὖν, +Λέγω +μὴ +ἔπταισαν +ἵνα +πέσωσιν; +μὴ +γένοιτο· +ἀλλὰ +τῷ +αὐτῶν +παραπτώματι +ἡ +σωτηρία +τοῖς +ἔθνεσιν, +εἰς +τὸ +παραζηλῶσαι +αὐτούς. +δὲ +εἰ +τὸ +παράπτωμα +αὐτῶν +πλοῦτος +κόσμου +καὶ +τὸ +ἥττημα +αὐτῶν +πλοῦτος +ἐθνῶν, +πόσῳ +μᾶλλον +τὸ +πλήρωμα +αὐτῶν. +δὲ +λέγω +Ὑμῖν +τοῖς +ἔθνεσιν. +μὲν +οὖν +ἐφ’ +ὅσον +εἰμι +ἐγὼ +ἐθνῶν +ἀπόστολος, +τὴν +διακονίαν +μου +δοξάζω, +εἴ +πως +παραζηλώσω +μου +τὴν +σάρκα +καὶ +σώσω +τινὰς +ἐξ +αὐτῶν. +γὰρ +εἰ +ἡ +ἀποβολὴ +αὐτῶν +καταλλαγὴ +κόσμου, +τίς +ἡ +πρόσλημψις +εἰ +μὴ +ζωὴ +ἐκ +νεκρῶν; +δὲ +εἰ +ἡ +ἀπαρχὴ +ἁγία, +καὶ +τὸ +φύραμα· +καὶ +εἰ +ἡ +ῥίζα +ἁγία, +καὶ +οἱ +κλάδοι. +δέ +Εἰ +τινες +τῶν +κλάδων +ἐξεκλάσθησαν, +δὲ +σὺ +ἀγριέλαιος +ὢν +ἐνεκεντρίσθης +ἐν +αὐτοῖς +καὶ +συνκοινωνὸς +τῆς +ῥίζης +τῆς +πιότητος +τῆς +ἐλαίας +ἐγένου, +μὴ +κατακαυχῶ +τῶν +κλάδων· +δὲ +εἰ +κατακαυχᾶσαι, +οὐ +σὺ +τὴν +ῥίζαν +βαστάζεις +ἀλλὰ +ἡ +ῥίζα +σέ. +οὖν +ἐρεῖς +Ἐξεκλάσθησαν +κλάδοι +ἵνα +ἐγὼ +ἐγκεντρισθῶ. +καλῶς· +τῇ +ἀπιστίᾳ +ἐξεκλάσθησαν, +δὲ +σὺ +τῇ +πίστει +ἕστηκας. +μὴ +ὑψηλὰ +φρόνει, +ἀλλὰ +φοβοῦ· +γὰρ +εἰ +ὁ +Θεὸς +τῶν +κατὰ +φύσιν +κλάδων +οὐκ +ἐφείσατο, +οὐδὲ +σοῦ +φείσεται. +οὖν +ἴδε +χρηστότητα +καὶ +ἀποτομίαν +Θεοῦ· +μὲν +ἐπὶ +τοὺς +πεσόντας +ἀποτομία, +δὲ +ἐπὶ +σὲ +χρηστότης +Θεοῦ, +ἐὰν +ἐπιμένῃς +τῇ +χρηστότητι, +ἐπεὶ +καὶ +σὺ +ἐκκοπήσῃ. +δέ, +κἀκεῖνοι +ἐὰν +μὴ +ἐπιμένωσιν +τῇ +ἀπιστίᾳ, +ἐνκεντρισθήσονται· +γάρ +δυνατὸς +ἐστιν +ὁ +Θεὸς +πάλιν +ἐνκεντρίσαι +αὐτούς. +γὰρ +εἰ +σὺ +ἐκ +τῆς +κατὰ +φύσιν +ἀγριελαίου +ἐξεκόπης +καὶ +παρὰ +φύσιν +ἐνεκεντρίσθης +εἰς +καλλιέλαιον, +πόσῳ +μᾶλλον +οὗτοι +οἱ +κατὰ +φύσιν +ἐνκεντρισθήσονται +τῇ +ἰδίᾳ +ἐλαίᾳ. +γὰρ +ἀδελφοί, +Οὐ +θέλω +ὑμᾶς +ἀγνοεῖν, +τὸ +μυστήριον +τοῦτο, +ἵνα +μὴ +ἦτε +ἐν +ἑαυτοῖς +φρόνιμοι, +ὅτι +πώρωσις +ἀπὸ +μέρους +τῷ +Ἰσραὴλ +γέγονεν +ἄχρι +οὗ +τὸ +πλήρωμα +τῶν +ἐθνῶν +εἰσέλθῃ, +καὶ +οὕτως +πᾶς +Ἰσραὴλ +σωθήσεται, +καθὼς +γέγραπται +Ἥξει +ἐκ +Σιὼν +ὁ +Ῥυόμενος, +ἀποστρέψει +ἀσεβείας +ἀπὸ +Ἰακώβ. +καὶ +αὕτη +αὐτοῖς +ἡ +παρ’ +ἐμοῦ +διαθήκη, +ὅταν +ἀφέλωμαι +τὰς +ἁμαρτίας +αὐτῶν. +μὲν +κατὰ +τὸ +εὐαγγέλιον +ἐχθροὶ +δι’ +ὑμᾶς, +δὲ +κατὰ +τὴν +ἐκλογὴν +ἀγαπητοὶ +διὰ +τοὺς +πατέρας· +γὰρ +ἀμεταμέλητα +τὰ +χαρίσματα +καὶ +ἡ +κλῆσις +τοῦ +Θεοῦ. +γὰρ +ὥσπερ +ὑμεῖς +ποτε +ἠπειθήσατε +τῷ +Θεῷ, +δὲ +νῦν +ἠλεήθητε +τῇ +τούτων +ἀπειθείᾳ, +οὕτως +καὶ +οὗτοι +νῦν +ἠπείθησαν +τῷ +ὑμετέρῳ +ἐλέει +ἵνα +καὶ +αὐτοὶ +νῦν +ἐλεηθῶσιν. +γὰρ +συνέκλεισεν +ὁ +Θεὸς +τοὺς +πάντας +εἰς +ἀπείθειαν +ἵνα +τοὺς +πάντας +ἐλεήσῃ. +Ὦ +βάθος +πλούτου +καὶ +σοφίας +καὶ +γνώσεως +Θεοῦ· +ὡς +ἀνεξεραύνητα +τὰ +κρίματα +αὐτοῦ +καὶ +ἀνεξιχνίαστοι +αἱ +ὁδοὶ +αὐτοῦ. +γὰρ +Τίς +ἔγνω +νοῦν +Κυρίου; +ἢ +τίς +σύμβουλος +αὐτοῦ +ἐγένετο; +ἢ +τίς +προέδωκεν +αὐτῷ, +καὶ +ἀνταποδοθήσεται +αὐτῷ; +ὅτι +ἐξ +αὐτοῦ +καὶ +δι’ +αὐτοῦ +καὶ +εἰς +αὐτὸν +τὰ +πάντα· +αὐτῷ +ἡ +δόξα +εἰς +τοὺς +αἰῶνας· +ἀμήν. +οὖν +ἀδελφοί, +Παρακαλῶ +διὰ +τῶν +οἰκτιρμῶν +τοῦ +Θεοῦ +ὑμᾶς, +παραστῆσαι +τὰ +σώματα +ὑμῶν +θυσίαν +ζῶσαν +ἁγίαν +τῷ +Θεῷ +εὐάρεστον, +τὴν +λογικὴν +λατρείαν +ὑμῶν· +καὶ +μὴ +συνσχηματίζεσθε +τῷ +αἰῶνι +τούτῳ, +ἀλλὰ +μεταμορφοῦσθε +τῇ +ἀνακαινώσει +τοῦ +νοός, +εἰς +τὸ +δοκιμάζειν +ὑμᾶς +τί +τὸ +θέλημα +τοῦ +Θεοῦ, +τὸ +ἀγαθὸν +καὶ +εὐάρεστον +καὶ +τέλειον. +γὰρ +Λέγω +διὰ +τῆς +χάριτος +τῆς +δοθείσης +μοι +παντὶ +τῷ +ὄντι +ἐν +ὑμῖν, +μὴ +ὑπερφρονεῖν +παρ’ +ὃ +φρονεῖν, +δεῖ +ἀλλὰ +φρονεῖν +εἰς +τὸ +σωφρονεῖν, +ὡς +ἑκάστῳ +ὁ +Θεὸς +ἐμέρισεν +μέτρον +πίστεως. +γὰρ +καθάπερ +ἐν +ἑνὶ +σώματι +πολλὰ +μέλη +ἔχομεν, +δὲ +τὰ +μέλη +πάντα +οὐ +τὴν +αὐτὴν +πρᾶξιν, +ἔχει +οὕτως +οἱ +πολλοὶ +ἓν +σῶμά +ἐσμεν +ἐν +Χριστῷ, +δὲ +τὸ +καθ’ +εἷς +ἀλλήλων +μέλη. +δὲ +ἔχοντες +χαρίσματα +διάφορα, +κατὰ +τὴν +χάριν +τὴν +δοθεῖσαν +ἡμῖν +εἴτε +προφητείαν, +κατὰ +τὴν +ἀναλογίαν +τῆς +πίστεως· +εἴτε +διακονίαν, +ἐν +τῇ +διακονίᾳ· +εἴτε +ὁ +διδάσκων, +ἐν +τῇ +διδασκαλίᾳ· +εἴτε +ὁ +παρακαλῶν, +ἐν +τῇ +παρακλήσει· +ὁ +μεταδιδοὺς +ἐν +ἁπλότητι, +ὁ +προϊστάμενος +ἐν +σπουδῇ, +ὁ +ἐλεῶν +ἐν +ἱλαρότητι. +ἡ +ἀγάπη +ἀνυπόκριτος. +ἀποστυγοῦντες +τὸ +πονηρόν, +κολλώμενοι +τῷ +ἀγαθῷ· +τῇ +φιλαδελφίᾳ +εἰς +ἀλλήλους +φιλόστοργοι, +τῇ +τιμῇ +ἀλλήλους +προηγούμενοι, +τῇ +σπουδῇ +μὴ +ὀκνηροί, +τῷ +πνεύματι +ζέοντες, +τῷ +Κυρίῳ +δουλεύοντες, +τῇ +ἐλπίδι +χαίροντες, +τῇ +θλίψει +ὑπομένοντες, +τῇ +προσευχῇ +προσκαρτεροῦντες, +ταῖς +χρείαις +τῶν +ἁγίων +κοινωνοῦντες, +τὴν +φιλοξενίαν +διώκοντες. +εὐλογεῖτε +τοὺς +διώκοντας, +εὐλογεῖτε +καὶ +μὴ +καταρᾶσθε. +χαίρειν +μετὰ +χαιρόντων, +κλαίειν +μετὰ +κλαιόντων. +τὸ +αὐτὸ +εἰς +ἀλλήλους +φρονοῦντες· +μὴ +τὰ +ὑψηλὰ +φρονοῦντες +ἀλλὰ +τοῖς +ταπεινοῖς +συναπαγόμενοι. +μὴ +γίνεσθε +φρόνιμοι +παρ’ +ἑαυτοῖς. +μηδενὶ +κακὸν +ἀντὶ +κακοῦ +ἀποδιδόντες· +προνοούμενοι +καλὰ +ἐνώπιον +πάντων +ἀνθρώπων· +εἰ +δυνατόν, +τὸ +ἐξ +ὑμῶν +μετὰ +πάντων +ἀνθρώπων +εἰρηνεύοντες· +ἀγαπητοί, +μὴ +ἑαυτοὺς +ἐκδικοῦντες, +ἀλλὰ +δότε +τόπον +τῇ +ὀργῇ· +γάρ +γέγραπται +Ἐμοὶ +ἐκδίκησις, +ἐγὼ +ἀνταποδώσω, +λέγει +Κύριος. +ἀλλὰ +ἐὰν +πεινᾷ +ὁ +ἐχθρός +σου, +ψώμιζε +αὐτόν· +ἐὰν +διψᾷ, +πότιζε +αὐτόν· +γὰρ +τοῦτο +ποιῶν +ἄνθρακας +πυρὸς +σωρεύσεις +ἐπὶ +τὴν +κεφαλὴν +αὐτοῦ. +μὴ +νικῶ +ὑπὸ +τοῦ +κακοῦ, +ἀλλὰ +νίκα +ἐν +τῷ +ἀγαθῷ +τὸ +κακόν. +Πᾶσα +ψυχὴ +ἐξουσίαις +ὑπερεχούσαις +ὑποτασσέσθω. +γὰρ +οὐ +ἔστιν +ἐξουσία +εἰ +μὴ +ὑπὸ +Θεοῦ, +δὲ +αἱ +οὖσαι +ὑπὸ +Θεοῦ +τεταγμέναι +εἰσίν. +ὥστε +ὁ +ἀντιτασσόμενος +τῇ +ἐξουσίᾳ +τῇ +τοῦ +Θεοῦ +διαταγῇ +ἀνθέστηκεν· +δὲ +οἱ +ἀνθεστηκότες +ἑαυτοῖς +κρίμα +λήμψονται. +γὰρ +οἱ +ἄρχοντες +εἰσὶν +φόβος +οὐκ +τῷ +ἀγαθῷ +ἔργῳ +ἀλλὰ +τῷ +κακῷ. +δὲ +θέλεις +μὴ +φοβεῖσθαι +τὴν +ἐξουσίαν; +τὸ +ἀγαθὸν +ποίει, +καὶ +ἕξεις +ἔπαινον +ἐξ +αὐτῆς· +γὰρ +Θεοῦ +διάκονός +ἐστιν +σοὶ +εἰς +τὸ +ἀγαθόν. +δὲ +ἐὰν +τὸ +κακὸν +ποιῇς, +φοβοῦ· +γὰρ +οὐ +εἰκῇ +τὴν +μάχαιραν +φορεῖ· +γὰρ +Θεοῦ +διάκονός +ἐστιν, +ἔκδικος +εἰς +ὀργὴν +τῷ +τὸ +κακὸν +πράσσοντι. +διὸ +ἀνάγκη +ὑποτάσσεσθαι, +οὐ +μόνον +διὰ +τὴν +ὀργὴν +ἀλλὰ +καὶ +διὰ +τὴν +συνείδησιν. +γὰρ +διὰ +τοῦτο +καὶ +φόρους +τελεῖτε· +γὰρ +λειτουργοὶ +Θεοῦ +εἰσιν +εἰς +αὐτὸ +τοῦτο +προσκαρτεροῦντες. +ἀπόδοτε +πᾶσιν +τὰς +ὀφειλάς, +τῷ +τὸν +φόρον +τὸν +φόρον, +τῷ +τὸ +τέλος +τὸ +τέλος, +τῷ +τὸν +φόβον +τὸν +φόβον, +τῷ +τὴν +τιμὴν +τὴν +τιμήν. +Μηδενὶ +μηδὲν +ὀφείλετε, +εἰ +μὴ +τὸ +ἀλλήλους +ἀγαπᾶν· +γὰρ +ὁ +ἀγαπῶν +τὸν +ἕτερον +νόμον +πεπλήρωκεν. +γάρ +τὸ +Οὐ +μοιχεύσεις, +Οὐ +φονεύσεις, +Οὐ +κλέψεις, +Οὐκ +ἐπιθυμήσεις, +καὶ +εἴ +τις +ἑτέρα +ἐντολή, +ἐν +τῷ +λόγῳ +τούτῳ +ἀνακεφαλαιοῦται, +ἐν +τῷ +Ἀγαπήσεις +τὸν +πλησίον +σου +ὡς +σεαυτόν. +ἡ +ἀγάπη +τῷ +πλησίον +κακὸν +οὐκ +ἐργάζεται· +οὖν +πλήρωμα +νόμου +ἡ +ἀγάπη. +Καὶ +εἰδότες +τοῦτο +τὸν +καιρόν, +ὅτι +ὥρα +ἤδη +ὑμᾶς +ἐξ +ὕπνου +ἐγερθῆναι· +γὰρ +νῦν +ἐγγύτερον +ἡμῶν +ἡ +σωτηρία +ἢ +ὅτε +ἐπιστεύσαμεν. +ἡ +νὺξ +προέκοψεν, +δὲ +ἡ +ἡμέρα +ἤγγικεν. +οὖν +ἀποθώμεθα +τὰ +ἔργα +τοῦ +σκότους, +δὲ +ἐνδυσώμεθα +τὰ +ὅπλα +τοῦ +φωτός. +ὡς +ἐν +ἡμέρᾳ +εὐσχημόνως +περιπατήσωμεν, +μὴ +κώμοις +καὶ +μέθαις, +μὴ +κοίταις +καὶ +ἀσελγείαις, +μὴ +ἔριδι +καὶ +ζήλῳ· +ἀλλὰ +ἐνδύσασθε +τὸν +Κύριον +Ἰησοῦν +Χριστόν, +καὶ +τῆς +σαρκὸς +πρόνοιαν +μὴ +ποιεῖσθε +εἰς +ἐπιθυμίας. +δὲ +Τὸν +ἀσθενοῦντα +τῇ +πίστει +προσλαμβάνεσθε, +μὴ +εἰς +διακρίσεις +διαλογισμῶν. +μὲν +ὃς +πιστεύει +φαγεῖν +πάντα, +δὲ +ὁ +ἀσθενῶν +λάχανα +ἐσθίει. +ὁ +ἐσθίων +τὸν +μὴ +ἐσθίοντα +μὴ +ἐξουθενείτω, +δὲ +ὁ +μὴ +ἐσθίων +τὸν +ἐσθίοντα +μὴ +κρινέτω, +γὰρ +ὁ +Θεὸς +αὐτὸν +προσελάβετο. +σὺ +τίς +εἶ +ὁ +κρίνων +ἀλλότριον +οἰκέτην; +τῷ +ἰδίῳ +κυρίῳ +στήκει +ἢ +πίπτει· +δέ, +σταθήσεται +γὰρ +δυνατεῖ +ὁ +Κύριος +στῆσαι +αὐτόν. +γὰρ +μὲν +ὃς +κρίνει +ἡμέραν +παρ’ +ἡμέραν, +δὲ +ὃς +κρίνει +πᾶσαν +ἡμέραν· +ἕκαστος +ἐν +τῷ +ἰδίῳ +νοῒ +πληροφορείσθω. +ὁ +φρονῶν +τὴν +ἡμέραν +Κυρίῳ +φρονεῖ· +καὶ +ὁ +ἐσθίων +Κυρίῳ +ἐσθίει, +γὰρ +εὐχαριστεῖ +τῷ +Θεῷ· +καὶ +ὁ +μὴ +ἐσθίων +Κυρίῳ +οὐκ +ἐσθίει, +καὶ +εὐχαριστεῖ +τῷ +Θεῷ. +γὰρ +Οὐδεὶς +ἡμῶν +ἑαυτῷ +ζῇ, +καὶ +οὐδεὶς +ἑαυτῷ +ἀποθνῄσκει· +γὰρ +τε +ἐάν +ζῶμεν, +τῷ +Κυρίῳ +ζῶμεν, +τε +ἐάν +ἀποθνήσκωμεν, +τῷ +Κυρίῳ +ἀποθνήσκομεν. +οὖν +τε +ἐάν +ζῶμεν +τε +ἐάν +ἀποθνήσκωμεν, +τοῦ +Κυρίου +ἐσμέν. +γὰρ +εἰς +τοῦτο +Χριστὸς +ἀπέθανεν +καὶ +ἔζησεν, +ἵνα +καὶ +νεκρῶν +καὶ +ζώντων +κυριεύσῃ. +δὲ +Σὺ +τί +κρίνεις +τὸν +ἀδελφόν +σου; +ἢ +καὶ +σὺ +τί +ἐξουθενεῖς +τὸν +ἀδελφόν +σου; +γὰρ +πάντες +παραστησόμεθα +τῷ +βήματι +τοῦ +Θεοῦ. +γάρ +γέγραπται +Ζῶ +ἐγώ, +λέγει +Κύριος, +ὅτι +ἐμοὶ +κάμψει +πᾶν +γόνυ, +καὶ +πᾶσα +γλῶσσα +ἐξομολογήσεται +τῷ +Θεῷ. +ἄρα +οὖν +ἕκαστος +ἡμῶν +περὶ +ἑαυτοῦ +λόγον +δώσει +τῷ +Θεῷ. +οὖν +Μηκέτι +ἀλλήλους +κρίνωμεν· +ἀλλὰ +τοῦτο +κρίνατε +μᾶλλον, +τὸ +μὴ +τιθέναι +τῷ +ἀδελφῷ +πρόσκομμα +ἢ +σκάνδαλον. +οἶδα +καὶ +πέπεισμαι +ἐν +Κυρίῳ +Ἰησοῦ +ὅτι +οὐδὲν +κοινὸν +δι’ +ἑαυτοῦ· +εἰ +μὴ +τῷ +λογιζομένῳ +τι +κοινὸν +εἶναι, +ἐκείνῳ +κοινόν. +γὰρ +εἰ +διὰ +βρῶμα +ὁ +ἀδελφός +σου +λυπεῖται, +οὐκέτι +κατὰ +ἀγάπην +περιπατεῖς. +μὴ +τῷ +βρώματί +σου +ἐκεῖνον +ἀπόλλυε, +ὑπὲρ +οὗ +Χριστὸς +ἀπέθανεν. +οὖν +μὴ +βλασφημείσθω +ὑμῶν +τὸ +ἀγαθόν. +γάρ +οὐ +ἐστιν +ἡ +βασιλεία +τοῦ +Θεοῦ +βρῶσις +καὶ +πόσις, +ἀλλὰ +δικαιοσύνη +καὶ +εἰρήνη +καὶ +χαρὰ +ἐν +Πνεύματι +Ἁγίῳ· +γὰρ +ὁ +ἐν +τούτῳ +δουλεύων +τῷ +Χριστῷ +εὐάρεστος +τῷ +Θεῷ +καὶ +δόκιμος +τοῖς +ἀνθρώποις. +ἄρα +οὖν +διώκομεν +τὰ +τῆς +εἰρήνης +καὶ +τὰ +τῆς +οἰκοδομῆς +τῆς +εἰς +ἀλλήλους. +μὴ +ἕνεκεν +βρώματος +κατάλυε +τὸ +ἔργον +τοῦ +Θεοῦ. +μὲν +πάντα +καθαρά, +ἀλλὰ +κακὸν +τῷ +ἀνθρώπῳ +τῷ +διὰ +προσκόμματος +ἐσθίοντι. +καλὸν +τὸ +μὴ +φαγεῖν +κρέα +μηδὲ +πιεῖν +οἶνον +μηδὲ +ἐν +ᾧ +ὁ +ἀδελφός +σου +προσκόπτει. +σὺ +πίστιν +ἣν +ἔχεις +κατὰ +σεαυτὸν +ἔχε +ἐνώπιον +τοῦ +Θεοῦ. +μακάριος +ὁ +μὴ +κρίνων +ἑαυτὸν +ἐν +ᾧ +δοκιμάζει· +δὲ +ἐὰν +ὁ +διακρινόμενος +φάγῃ +κατακέκριται, +ὅτι +οὐκ +ἐκ +πίστεως· +δὲ +πᾶν +ὃ +οὐκ +ἐκ +πίστεως +ἁμαρτία +ἐστίν. +δὲ +Ὀφείλομεν +ἡμεῖς +οἱ +δυνατοὶ +τὰ +ἀσθενήματα +τῶν +ἀδυνάτων +βαστάζειν, +καὶ +μὴ +ἑαυτοῖς +ἀρέσκειν. +ἕκαστος +ἡμῶν +τῷ +πλησίον +ἀρεσκέτω +εἰς +τὸ +ἀγαθὸν +πρὸς +οἰκοδομήν· +γὰρ +καὶ +ὁ +Χριστὸς +οὐχ +ἑαυτῷ +ἤρεσεν· +ἀλλὰ +καθὼς +γέγραπται +Οἱ +ὀνειδισμοὶ +τῶν +ὀνειδιζόντων +σε +ἐπέπεσαν +ἐπ’ +ἐμέ. +γὰρ +ὅσα +προεγράφη, +εἰς +τὴν +ἡμετέραν +διδασκαλίαν +ἐγράφη, +ἵνα +διὰ +τῆς +ὑπομονῆς +καὶ +διὰ +τῆς +παρακλήσεως +τῶν +γραφῶν +τὴν +ἐλπίδα +ἔχωμεν. +δὲ +ὁ +Θεὸς +τῆς +ὑπομονῆς +καὶ +τῆς +παρακλήσεως +δῴη +ὑμῖν +τὸ +αὐτὸ +φρονεῖν +ἐν +ἀλλήλοις +κατὰ +Χριστὸν +Ἰησοῦν, +ἵνα +ὁμοθυμαδὸν +ἐν +ἑνὶ +στόματι +δοξάζητε +τὸν +Θεὸν +καὶ +Πατέρα +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ. +Διὸ +προσλαμβάνεσθε +ἀλλήλους, +καθὼς +καὶ +ὁ +Χριστὸς +προσελάβετο +ἡμᾶς, +εἰς +δόξαν +τοῦ +Θεοῦ. +γὰρ +λέγω +Χριστὸν +διάκονον +περιτομῆς +γεγενῆσθαι +ὑπὲρ +ἀληθείας +Θεοῦ, +εἰς +τὸ +βεβαιῶσαι +τὰς +ἐπαγγελίας +τῶν +πατέρων, +δὲ +τὰ +ἔθνη +ὑπὲρ +ἐλέους +δοξάσαι +τὸν +Θεόν, +καθὼς +γέγραπται +Διὰ +τοῦτο +ἐξομολογήσομαί +σοι +ἐν +ἔθνεσιν +καὶ +τῷ +ὀνόματί +σου +ψαλῶ. +καὶ +πάλιν +λέγει +ἔθνη, +Εὐφράνθητε, +μετὰ +τοῦ +λαοῦ +αὐτοῦ. +καὶ +πάλιν +πάντα +τὰ +ἔθνη, +Αἰνεῖτε, +τὸν +Κύριον, +καὶ +ἐπαινεσάτωσαν +αὐτὸν +πάντες +οἱ +λαοί. +καὶ +πάλιν +Ἠσαΐας +λέγει +Ἔσται +ἡ +ῥίζα +τοῦ +Ἰεσσαί, +καὶ +ὁ +ἀνιστάμενος +ἄρχειν +ἐθνῶν· +ἐπ’ +αὐτῷ +ἔθνη +ἐλπιοῦσιν. +δὲ +Ὁ +Θεὸς +τῆς +ἐλπίδος +πληρώσαι +ὑμᾶς +πάσης +χαρᾶς +καὶ +εἰρήνης +ἐν +τῷ +πιστεύειν, +εἰς +τὸ +περισσεύειν +ὑμᾶς +ἐν +τῇ +ἐλπίδι +ἐν +δυνάμει +Πνεύματος +Ἁγίου. +δέ, +ἀδελφοί +μου, +Πέπεισμαι +καὶ +αὐτὸς +ἐγὼ +περὶ +ὑμῶν, +ὅτι +καὶ +αὐτοὶ +μεστοί +ἐστε +ἀγαθωσύνης, +πεπληρωμένοι +πάσης +τῆς +γνώσεως, +δυνάμενοι +καὶ +ἀλλήλους +νουθετεῖν. +δὲ +τολμηροτέρως +ἔγραψα +ὑμῖν +ἀπὸ +μέρους, +ὡς +ἐπαναμιμνήσκων +ὑμᾶς, +διὰ +τὴν +χάριν +τὴν +δοθεῖσάν +μοι +ἀπὸ +τοῦ +Θεοῦ +εἰς +τὸ +εἶναί +με +λειτουργὸν +Χριστοῦ +Ἰησοῦ +εἰς +τὰ +ἔθνη, +ἱερουργοῦντα +τὸ +εὐαγγέλιον +τοῦ +Θεοῦ, +ἵνα +γένηται +ἡ +προσφορὰ +τῶν +ἐθνῶν +εὐπρόσδεκτος, +ἡγιασμένη +ἐν +Πνεύματι +Ἁγίῳ. +οὖν +ἔχω +τὴν +καύχησιν +ἐν +Χριστῷ +Ἰησοῦ +τὰ +πρὸς +τὸν +Θεόν· +γὰρ +οὐ +τολμήσω +λαλεῖν +τι +ὧν +οὐ +κατειργάσατο +Χριστὸς +δι’ +ἐμοῦ +εἰς +ὑπακοὴν +ἐθνῶν, +λόγῳ +καὶ +ἔργῳ, +ἐν +δυνάμει +σημείων +καὶ +τεράτων, +ἐν +δυνάμει +Πνεύματος +Ἁγίου· +ὥστε +με +ἀπὸ +Ἰερουσαλὴμ +καὶ +κύκλῳ +μέχρι +τοῦ +Ἰλλυρικοῦ +πεπληρωκέναι +τὸ +εὐαγγέλιον +τοῦ +Χριστοῦ. +δὲ +οὕτως +φιλοτιμούμενον +εὐαγγελίζεσθαι +οὐχ +ὅπου +ὠνομάσθη +Χριστός, +ἵνα +μὴ +ἐπ’ +ἀλλότριον +θεμέλιον +οἰκοδομῶ, +ἀλλὰ +καθὼς +γέγραπται +Ὄψονται +οἷς +οὐκ +ἀνηγγέλη +περὶ +αὐτοῦ, +καὶ +οἳ +οὐκ +ἀκηκόασιν +συνήσουσιν. +Διὸ +καὶ +ἐνεκοπτόμην +τὰ +πολλὰ +τοῦ +ἐλθεῖν +πρὸς +ὑμᾶς· +δὲ +νυνὶ +μηκέτι +τόπον +ἔχων +ἐν +τοῖς +κλίμασι +τούτοις, +δὲ +ἐπιποθίαν +ἔχων +τοῦ +ἐλθεῖν +πρὸς +ὑμᾶς +ἀπὸ +ἱκανῶν +ἐτῶν, +ὡς +ἂν +πορεύωμαι +εἰς +τὴν +Σπανίαν· +γὰρ +ἐλπίζω +διαπορευόμενος +θεάσασθαι +ὑμᾶς +καὶ +ὑφ’ +ὑμῶν +προπεμφθῆναι +ἐκεῖ, +ἐὰν +ὑμῶν +πρῶτον +ἀπὸ +μέρους +ἐμπλησθῶ. +δὲ +—νυνὶ +πορεύομαι +εἰς +Ἱερουσαλὴμ +διακονῶν +τοῖς +ἁγίοις. +γὰρ +ηὐδόκησαν +Μακεδονία +καὶ +Ἀχαΐα +κοινωνίαν +τινὰ +ποιήσασθαι +εἰς +τοὺς +πτωχοὺς +τῶν +ἁγίων +τῶν +ἐν +Ἱερουσαλήμ. +γάρ, +ηὐδόκησαν +καὶ +ὀφειλέται +εἰσὶν +αὐτῶν· +γὰρ +εἰ +τοῖς +πνευματικοῖς +αὐτῶν +ἐκοινώνησαν +τὰ +ἔθνη, +ὀφείλουσιν +καὶ +ἐν +τοῖς +σαρκικοῖς +λειτουργῆσαι +αὐτοῖς. +οὖν +τοῦτο +ἐπιτελέσας, +καὶ +σφραγισάμενος +αὐτοῖς +τὸν +καρπὸν +τοῦτον, +ἀπελεύσομαι +δι’ +ὑμῶν +εἰς +Σπανίαν· +δὲ +οἶδα +ὅτι +ἐρχόμενος +πρὸς +ὑμᾶς +ἐν +πληρώματι +εὐλογίας +Χριστοῦ +ἐλεύσομαι. +δὲ +ἀδελφοί, +Παρακαλῶ +διὰ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +καὶ +διὰ +τῆς +ἀγάπης +τοῦ +Πνεύματος +ὑμᾶς, +συναγωνίσασθαί +μοι +ἐν +ταῖς +προσευχαῖς +ὑπὲρ +ἐμοῦ +πρὸς +τὸν +Θεόν, +ἵνα +ῥυσθῶ +ἀπὸ +τῶν +ἀπειθούντων +ἐν +τῇ +Ἰουδαίᾳ +καὶ +ἡ +διακονία +μου +ἡ +εἰς +Ἱερουσαλὴμ +εὐπρόσδεκτος +τοῖς +ἁγίοις +γένηται, +ἵνα +ἐν +χαρᾷ +ἐλθὼν +πρὸς +ὑμᾶς +διὰ +θελήματος +Θεοῦ +συναναπαύσωμαι +ὑμῖν. +δὲ +ὁ +Θεὸς +τῆς +εἰρήνης +μετὰ +πάντων +ὑμῶν· +ἀμήν. +δὲ +Συνίστημι +ὑμῖν +Φοίβην +τὴν +ἀδελφὴν +ἡμῶν, +οὖσαν +διάκονον +τῆς +ἐκκλησίας +τῆς +ἐν +Κενχρεαῖς, +ἵνα +αὐτὴν +προσδέξησθε +ἐν +Κυρίῳ +ἀξίως +τῶν +ἁγίων, +καὶ +παραστῆτε +αὐτῇ +ἐν +ἂν +ᾧ +ὑμῶν +χρῄζῃ +πράγματι· +γὰρ +καὶ +αὐτὴ +ἐγενήθη +προστάτις +πολλῶν +καὶ +ἐμοῦ +αὐτοῦ. +Ἀσπάσασθε +Πρίσκαν +καὶ +Ἀκύλαν +τοὺς +συνεργούς +μου +ἐν +Χριστῷ +Ἰησοῦ, +οἵτινες +ὑπὲρ +τῆς +ψυχῆς +μου +τὸν +ἑαυτῶν +τράχηλον +ὑπέθηκαν, +οἷς +εὐχαριστῶ +οὐκ +ἐγὼ +μόνος +ἀλλὰ +καὶ +πᾶσαι +αἱ +ἐκκλησίαι +τῶν +ἐθνῶν, +καὶ +τὴν +κατ’ +οἶκον +αὐτῶν +ἐκκλησίαν. +ἀσπάσασθε +Ἐπαίνετον +τὸν +ἀγαπητόν +μου, +ὅς +ἐστιν +ἀπαρχὴ +τῆς +Ἀσίας +εἰς +Χριστόν. +ἀσπάσασθε +Μαριάν, +ἥτις +πολλὰ +ἐκοπίασεν +εἰς +ὑμᾶς. +ἀσπάσασθε +Ἀνδρόνικον +καὶ +Ἰουνίαν +τοὺς +συγγενεῖς +μου +καὶ +συναιχμαλώτους +μου, +οἵτινές +εἰσιν +ἐπίσημοι +ἐν +τοῖς +ἀποστόλοις, +οἳ +καὶ +πρὸ +ἐμοῦ +γέγοναν +ἐν +Χριστῷ. +ἀσπάσασθε +Ἀμπλιᾶτον +τὸν +ἀγαπητόν +μου +ἐν +Κυρίῳ. +ἀσπάσασθε +Οὐρβανὸν +τὸν +συνεργὸν +ἡμῶν +ἐν +Χριστῷ +καὶ +Στάχυν +τὸν +ἀγαπητόν +μου. +ἀσπάσασθε +Ἀπελλῆν +τὸν +δόκιμον +ἐν +Χριστῷ. +ἀσπάσασθε +τοὺς +ἐκ +τῶν +Ἀριστοβούλου. +ἀσπάσασθε +Ἠρῳδίωνα +τὸν +συγγενῆ +μου. +ἀσπάσασθε +τοὺς +ἐκ +τῶν +Ναρκίσσου +τοὺς +ὄντας +ἐν +Κυρίῳ. +ἀσπάσασθε +Τρύφαιναν +καὶ +Τρυφῶσαν +τὰς +κοπιώσας +ἐν +Κυρίῳ. +ἀσπάσασθε +Περσίδα +τὴν +ἀγαπητήν, +ἥτις +πολλὰ +ἐκοπίασεν +ἐν +Κυρίῳ. +ἀσπάσασθε +Ῥοῦφον +τὸν +ἐκλεκτὸν +ἐν +Κυρίῳ +καὶ +τὴν +μητέρα +αὐτοῦ +καὶ +ἐμοῦ. +ἀσπάσασθε +Ἀσύνκριτον, +Φλέγοντα, +Ἑρμῆν, +Πατρόβαν, +Ἑρμᾶν, +καὶ +τοὺς +σὺν +αὐτοῖς +ἀδελφούς. +ἀσπάσασθε +Φιλόλογον +καὶ +Ἰουλίαν, +Νηρέα +καὶ +τὴν +ἀδελφὴν +αὐτοῦ, +καὶ +Ὀλυμπᾶν, +καὶ +τοὺς +σὺν +αὐτοῖς +πάντας +ἁγίους. +ἀσπάσασθε +ἀλλήλους +ἐν +φιλήματι +ἁγίῳ. +ἀσπάζονται +ὑμᾶς +αἱ +ἐκκλησίαι +πᾶσαι +τοῦ +Χριστοῦ. +δὲ +ἀδελφοί, +Παρακαλῶ +ὑμᾶς, +σκοπεῖν +τοὺς +τὰς +διχοστασίας +καὶ +τὰ +σκάνδαλα +παρὰ +τὴν +διδαχὴν +ἣν +ὑμεῖς +ἐμάθετε +ποιοῦντας, +καὶ +ἐκκλίνετε +ἀπ’ +αὐτῶν· +γὰρ +οἱ +τοιοῦτοι +τῷ +Κυρίῳ +ἡμῶν +Χριστῷ +οὐ +δουλεύουσιν +ἀλλὰ +τῇ +ἑαυτῶν +κοιλίᾳ, +καὶ +διὰ +τῆς +χρηστολογίας +καὶ +εὐλογίας +ἐξαπατῶσιν +τὰς +καρδίας +τῶν +ἀκάκων. +γὰρ +ἡ +ὑμῶν +ὑπακοὴ +εἰς +πάντας +ἀφίκετο· +οὖν +ἐφ’ +ὑμῖν +χαίρω, +δὲ +θέλω +ὑμᾶς +σοφοὺς +εἶναι +εἰς +τὸ +ἀγαθόν, +δὲ +ἀκεραίους +εἰς +τὸ +κακόν. +δὲ +ὁ +Θεὸς +τῆς +εἰρήνης +συντρίψει +τὸν +Σατανᾶν +ὑπὸ +τοὺς +πόδας +ὑμῶν +ἐν +τάχει. +Ἠ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +μεθ’ +ὑμῶν. +Ἀσπάζεται +ὑμᾶς +Τιμόθεος +ὁ +συνεργός +μου, +καὶ +Λούκιος +καὶ +Ἰάσων +καὶ +Σωσίπατρος +οἱ +συγγενεῖς +μου. +ἀσπάζομαι +ὑμᾶς +ἐγὼ +Τέρτιος +ὁ +γράψας +τὴν +ἐπιστολὴν +ἐν +Κυρίῳ. +ἀσπάζεται +ὑμᾶς +Γάϊος +ὁ +ξένος +μου +καὶ +ὅλης +τῆς +ἐκκλησίας. +ἀσπάζεται +ὑμᾶς +Ἔραστος +ὁ +οἰκονόμος +τῆς +πόλεως +καὶ +Κούαρτος +ὁ +ἀδελφός. +δὲ +Τῷ +δυναμένῳ +ὑμᾶς +στηρίξαι +κατὰ +τὸ +εὐαγγέλιόν +μου +καὶ +τὸ +κήρυγμα +Ἰησοῦ +Χριστοῦ, +κατὰ +ἀποκάλυψιν +μυστηρίου +χρόνοις +αἰωνίοις +σεσιγημένου, +δὲ +φανερωθέντος +νῦν +τε +διά +γραφῶν +προφητικῶν +κατ’ +ἐπιταγὴν +τοῦ +αἰωνίου +Θεοῦ +εἰς +ὑπακοὴν +πίστεως +εἰς +πάντα +τὰ +ἔθνη +γνωρισθέντος, +μόνῳ +σοφῷ +Θεῷ, +διὰ +Ἰησοῦ +Χριστοῦ, +ᾧ +ἡ +δόξα +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +Παῦλος +κλητὸς +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διὰ +θελήματος +Θεοῦ +καὶ +Σωσθένης +ὁ +ἀδελφὸς +τῇ +ἐκκλησίᾳ +τοῦ +Θεοῦ +τῇ +οὔσῃ +ἐν +Κορίνθῳ, +ἡγιασμένοις +ἐν +Χριστῷ +Ἰησοῦ, +κλητοῖς +ἁγίοις, +σὺν +πᾶσιν +τοῖς +ἐπικαλουμένοις +τὸ +ὄνομα +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἐν +παντὶ +τόπῳ, +αὐτῶν +καὶ +ἡμῶν· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +Εὐχαριστῶ +τῷ +Θεῷ +πάντοτε +περὶ +ὑμῶν +ἐπὶ +τῇ +χάριτι +τοῦ +Θεοῦ +τῇ +δοθείσῃ +ὑμῖν +ἐν +Χριστῷ +Ἰησοῦ, +ὅτι +ἐν +παντὶ +ἐπλουτίσθητε +ἐν +αὐτῷ, +ἐν +παντὶ +λόγῳ +καὶ +πάσῃ +γνώσει, +καθὼς +τὸ +μαρτύριον +τοῦ +Χριστοῦ +ἐβεβαιώθη +ἐν +ὑμῖν, +ὥστε +ὑμᾶς +μὴ +ὑστερεῖσθαι +ἐν +μηδενὶ +χαρίσματι, +ἀπεκδεχομένους +τὴν +ἀποκάλυψιν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ· +ὃς +καὶ +βεβαιώσει +ὑμᾶς +ἕως +τέλους +ἀνεγκλήτους +ἐν +τῇ +ἡμέρᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ. +πιστὸς +ὁ +Θεὸς, +δι’ +οὗ +ἐκλήθητε +εἰς +κοινωνίαν +τοῦ +Υἱοῦ +αὐτοῦ +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν. +δὲ +ἀδελφοί, +Παρακαλῶ +ὑμᾶς, +διὰ +τοῦ +ὀνόματος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ἵνα +τὸ +αὐτὸ +λέγητε +πάντες, +καὶ +μὴ +ᾖ +ἐν +ὑμῖν +σχίσματα, +δὲ +ἦτε +κατηρτισμένοι +ἐν +τῷ +αὐτῷ +νοῒ +καὶ +ἐν +τῇ +αὐτῇ +γνώμῃ. +γάρ +ἀδελφοί +μου, +ἐδηλώθη +μοι +περὶ +ὑμῶν, +ὑπὸ +τῶν +Χλόης, +ὅτι +ἔριδες +ἐν +ὑμῖν +εἰσιν. +δὲ +λέγω +τοῦτο, +ὅτι +ἕκαστος +ὑμῶν +λέγει +μέν +Ἐγὼ +εἰμι +Παύλου, +δὲ +Ἐγὼ +Ἀπολλῶ, +δὲ +Ἐγὼ +Κηφᾶ, +δὲ +Ἐγὼ +Χριστοῦ. +μεμέρισται +ὁ +Χριστός; +μὴ +Παῦλος +ἐσταυρώθη +ὑπὲρ +ὑμῶν, +ἢ +εἰς +τὸ +ὄνομα +Παύλου +ἐβαπτίσθητε; +εὐχαριστῶ +ὅτι +οὐδένα +ὑμῶν +ἐβάπτισα +εἰ +μὴ +Κρίσπον +καὶ +Γάϊον· +ἵνα +μή +τις +εἴπῃ +ὅτι +εἰς +τὸ +ἐμὸν +ὄνομα +ἐβαπτίσθητε. +δὲ +ἐβάπτισα +καὶ +τὸν +Στεφανᾶ +οἶκον· +λοιπὸν +οὐκ +οἶδα +εἴ +τινα +ἄλλον +ἐβάπτισα. +γὰρ +ἀπέστειλέν +με +Χριστὸς +οὐ +βαπτίζειν +ἀλλὰ +εὐαγγελίζεσθαι, +οὐκ +ἐν +σοφίᾳ +λόγου, +ἵνα +μὴ +κενωθῇ +ὁ +σταυρὸς +τοῦ +Χριστοῦ. +γὰρ +μὲν +Ὁ +λόγος +ὁ +τοῦ +σταυροῦ +τοῖς +ἀπολλυμένοις +μωρία +ἐστίν, +δὲ +τοῖς +σῳζομένοις +ἡμῖν +δύναμις +Θεοῦ +ἐστιν. +γάρ +γέγραπται +Ἀπολῶ +τὴν +σοφίαν +τῶν +σοφῶν, +καὶ +τὴν +σύνεσιν +τῶν +συνετῶν +ἀθετήσω. +ποῦ +σοφός; +ποῦ +γραμματεύς; +ποῦ +συνζητητὴς +τοῦ +αἰῶνος +τούτου; +οὐχὶ +ἐμώρανεν +ὁ +Θεὸς +τὴν +σοφίαν +τοῦ +κόσμου; +γὰρ +ἐπειδὴ +ἐν +τῇ +σοφίᾳ +τοῦ +Θεοῦ +οὐκ +ἔγνω +ὁ +κόσμος +διὰ +τῆς +σοφίας +τὸν +Θεόν, +εὐδόκησεν +ὁ +Θεὸς +διὰ +τῆς +μωρίας +τοῦ +κηρύγματος +σῶσαι +τοὺς +πιστεύοντας. +ἐπειδὴ +καὶ +Ἰουδαῖοι +σημεῖα +αἰτοῦσιν +καὶ +Ἕλληνες +σοφίαν +ζητοῦσιν, +δὲ +ἡμεῖς +κηρύσσομεν +Χριστὸν +ἐσταυρωμένον, +μὲν +Ἰουδαίοις +σκάνδαλον, +δὲ +ἔθνεσιν +μωρίαν, +δὲ +αὐτοῖς +τοῖς +κλητοῖς, +τε +Ἰουδαίοις +καὶ +Ἕλλησιν, +Χριστὸν +Θεοῦ +δύναμιν +καὶ +Θεοῦ +σοφίαν. +ὅτι +τὸ +μωρὸν +τοῦ +Θεοῦ +σοφώτερον +τῶν +ἀνθρώπων +ἐστίν, +καὶ +τὸ +ἀσθενὲς +τοῦ +Θεοῦ +ἰσχυρότερον +τῶν +ἀνθρώπων. +γὰρ +ἀδελφοί, +Βλέπετε +τὴν +κλῆσιν +ὑμῶν, +ὅτι +οὐ +πολλοὶ +σοφοὶ +κατὰ +σάρκα, +οὐ +πολλοὶ +δυνατοί, +οὐ +πολλοὶ +εὐγενεῖς· +ἀλλὰ +τὰ +μωρὰ +τοῦ +κόσμου +ἐξελέξατο +ὁ +Θεός +ἵνα +καταισχύνῃ +τοὺς +σοφούς, +καὶ +τὰ +ἀσθενῆ +τοῦ +κόσμου +ἐξελέξατο +ὁ +Θεός +ἵνα +καταισχύνῃ +τὰ +ἰσχυρά, +καὶ +τὰ +ἀγενῆ +τοῦ +κόσμου +καὶ +τὰ +ἐξουθενημένα +τὰ +μὴ +ὄντα, +ἐξελέξατο +ὁ +Θεός, +ἵνα +τὰ +ὄντα +καταργήσῃ, +ὅπως +μὴ +καυχήσηται +πᾶσα +σὰρξ +ἐνώπιον +τοῦ +Θεοῦ. +δὲ +ἐξ +αὐτοῦ +ὑμεῖς +ἐστε +ἐν +Χριστῷ +Ἰησοῦ, +ὃς +ἐγενήθη +ἡμῖν +ἀπὸ +Θεοῦ, +σοφία +τε +δικαιοσύνη +καὶ +ἁγιασμὸς +καὶ +ἀπολύτρωσις, +ἵνα +καθὼς +γέγραπται +Ὁ +καυχώμενος +ἐν +Κυρίῳ +καυχάσθω. +ἀδελφοί, +Κἀγὼ +ἐλθὼν +πρὸς +ὑμᾶς, +ἦλθον +οὐ +καθ’ +ὑπεροχὴν +λόγου +ἢ +σοφίας +καταγγέλλων +ὑμῖν +τὸ +μαρτύριον +τοῦ +Θεοῦ. +γὰρ +οὐ +ἔκρινά +τι +εἰδέναι +ἐν +ὑμῖν +εἰ +μὴ +Ἰησοῦν +Χριστὸν +καὶ +τοῦτον +ἐσταυρωμένον. +κἀγὼ +ἐν +ἀσθενείᾳ +καὶ +ἐν +φόβῳ +καὶ +ἐν +τρόμῳ +πολλῷ +ἐγενόμην +πρὸς +ὑμᾶς, +καὶ +ὁ +λόγος +μου +καὶ +τὸ +κήρυγμά +μου +οὐκ +ἐν +πειθοῖς +σοφίας +λόγοις, +ἀλλ’ +ἐν +ἀποδείξει +Πνεύματος +καὶ +δυνάμεως, +ἵνα +ἡ +πίστις +ὑμῶν +ᾖ +μὴ +ἐν +σοφίᾳ +ἀνθρώπων +ἀλλ’ +ἐν +δυνάμει +Θεοῦ. +δὲ +Σοφίαν +λαλοῦμεν +ἐν +τοῖς +τελείοις, +δὲ +οὐ +σοφίαν +τοῦ +αἰῶνος +τούτου +οὐδὲ +τῶν +ἀρχόντων +τοῦ +αἰῶνος +τούτου +τῶν +καταργουμένων· +ἀλλὰ +λαλοῦμεν +Θεοῦ +σοφίαν +ἐν +μυστηρίῳ, +τὴν +ἀποκεκρυμμένην, +ἣν +προώρισεν +ὁ +Θεὸς +πρὸ +τῶν +αἰώνων +εἰς +δόξαν +ἡμῶν· +ἣν +οὐδεὶς +τῶν +ἀρχόντων +τοῦ +αἰῶνος +τούτου +ἔγνωκεν· +γὰρ +εἰ +ἔγνωσαν, +ἂν +οὐκ +τὸν +Κύριον +τῆς +δόξης +ἐσταύρωσαν· +ἀλλὰ +καθὼς +γέγραπται +Ἃ +ὀφθαλμὸς +οὐκ +εἶδεν +καὶ +οὖς +οὐκ +ἤκουσεν +καὶ +ἐπὶ +καρδίαν +ἀνθρώπου +οὐκ +ἀνέβη, +ὅσα +ἡτοίμασεν +ὁ +Θεὸς +τοῖς +ἀγαπῶσιν +αὐτόν. +γὰρ +ἡμῖν +ἀπεκάλυψεν +ὁ +Θεὸς +διὰ +τοῦ +Πνεύματος· +γὰρ +τὸ +Πνεῦμα +πάντα +ἐραυνᾷ, +καὶ +τὰ +βάθη +τοῦ +Θεοῦ. +γὰρ +τίς +ἀνθρώπων +οἶδεν +τὰ +τοῦ +ἀνθρώπου +εἰ +μὴ +τὸ +πνεῦμα +τοῦ +ἀνθρώπου +τὸ +ἐν +αὐτῷ; +οὕτως +καὶ +τὰ +τοῦ +Θεοῦ +οὐδεὶς +ἔγνωκεν +εἰ +μὴ +τὸ +Πνεῦμα +τοῦ +Θεοῦ. +δὲ +οὐ +ἡμεῖς +τὸ +πνεῦμα +τοῦ +κόσμου +ἐλάβομεν +ἀλλὰ +τὸ +πνεῦμα +τὸ +ἐκ +τοῦ +Θεοῦ, +ἵνα +εἰδῶμεν +τὰ +ὑπὸ +τοῦ +Θεοῦ +χαρισθέντα +ἡμῖν· +ἃ +καὶ +λαλοῦμεν +οὐκ +ἐν +διδακτοῖς +ἀνθρωπίνης +σοφίας +λόγοις, +ἀλλ’ +ἐν +διδακτοῖς +Πνεύματος, +πνευματικοῖς +πνευματικὰ +συνκρίνοντες. +δὲ +ψυχικὸς +ἄνθρωπος +οὐ +δέχεται +τὰ +τοῦ +Πνεύματος +τοῦ +Θεοῦ· +γὰρ +μωρία +αὐτῷ +ἐστίν, +καὶ +οὐ +δύναται +γνῶναι, +ὅτι +πνευματικῶς +ἀνακρίνεται. +δὲ +ὁ +πνευματικὸς +ἀνακρίνει +μὲν +πάντα, +δὲ +αὐτὸς +ὑπ’ +οὐδενὸς +ἀνακρίνεται. +γὰρ +τίς +ἔγνω +νοῦν +Κυρίου, +ὃς +συμβιβάσει +αὐτόν; +δὲ +ἡμεῖς +νοῦν +Χριστοῦ +ἔχομεν. +ἀδελφοί, +Κἀγώ, +ἠδυνήθην +οὐκ +λαλῆσαι +ὑμῖν +ὡς +πνευματικοῖς +ἀλλ’ +ὡς +σαρκίνοις, +ὡς +νηπίοις +ἐν +Χριστῷ. +γάλα +ὑμᾶς +ἐπότισα, +οὐ +βρῶμα· +γὰρ +οὔπω +ἐδύνασθε. +Ἀλλ’ +οὐδὲ +ἔτι +νῦν +δύνασθε, +γὰρ +ἔτι +σαρκικοί +ἐστε. +γὰρ +ὅπου +ἐν +ὑμῖν +ζῆλος +καὶ +ἔρις, +οὐχὶ +σαρκικοί +ἐστε +καὶ +κατὰ +ἄνθρωπον +περιπατεῖτε; +γὰρ +ὅταν +μέν +λέγῃ +τις +Ἐγὼ +εἰμι +Παύλου, +δέ +ἕτερος +Ἐγὼ +Ἀπολλῶ, +οὐκ +ἄνθρωποί +ἐστε; +οὖν +τί +ἐστιν +Ἀπολλῶς; +δέ +τί +ἐστιν +Παῦλος; +διάκονοι +δι’ +ὧν +ἐπιστεύσατε, +ὡς +καὶ +ἑκάστῳ +ὁ +Κύριος +ἔδωκεν. +ἐγὼ +ἐφύτευσα, +Ἀπολλῶς +ἐπότισεν, +ἀλλὰ +ὁ +Θεὸς +ηὔξανεν· +ὥστε +οὔτε +ὁ +φυτεύων +ἐστίν +τι +οὔτε +ὁ +ποτίζων, +ἀλλ’ +ὁ +αὐξάνων +Θεός. +δὲ +ὁ +φυτεύων +καὶ +ὁ +ποτίζων +ἕν +εἰσιν, +δὲ +ἕκαστος +τὸν +ἴδιον +μισθὸν +λήμψεται +κατὰ +τὸν +ἴδιον +κόπον. +γάρ +ἐσμεν +Θεοῦ +συνεργοί· +Θεοῦ +γεώργιον, +Θεοῦ +οἰκοδομή +ἐστε. +Κατὰ +τὴν +χάριν +τοῦ +Θεοῦ +τὴν +δοθεῖσάν +μοι +ὡς +σοφὸς +ἀρχιτέκτων +θεμέλιον +ἔθηκα, +δὲ +ἄλλος +ἐποικοδομεῖ. +δὲ +ἕκαστος +βλεπέτω +πῶς +ἐποικοδομεῖ. +γὰρ +οὐδεὶς +δύναται +θεμέλιον +ἄλλον +θεῖναι +παρὰ +τὸν +κείμενον, +ὅς +ἐστιν +Ἰησοῦς +Χριστός. +δέ +εἰ +τις +ἐποικοδομεῖ +ἐπὶ +τὸν +θεμέλιον +χρυσίον, +ἀργύριον, +λίθους +τιμίους, +ξύλα, +χόρτον, +καλάμην, +ἑκάστου +τὸ +ἔργον +φανερὸν +γενήσεται· +γὰρ +ἡ +ἡμέρα +δηλώσει, +ὅτι +ἐν +πυρὶ +ἀποκαλύπτεται, +καὶ +ἑκάστου +τὸ +ἔργον +ὁποῖόν +ἐστιν +τὸ +πῦρ +αὐτὸ +δοκιμάσει. +εἴ +μενεῖ +τινος +τὸ +ἔργον +ὃ +ἐποικοδόμησεν, +μισθὸν +λήμψεται· +εἴ +τινος +τὸ +ἔργον +κατακαήσεται, +ζημιωθήσεται, +δὲ +αὐτὸς +σωθήσεται, +δὲ +ὡς +οὕτως +διὰ +πυρός. +Οὐκ +οἴδατε +ὅτι +ναὸς +Θεοῦ +ἐστε +καὶ +τὸ +Πνεῦμα +τοῦ +Θεοῦ +ἐν +ὑμῖν +οἰκεῖ; +εἴ +τις +τὸν +ναὸν +τοῦ +Θεοῦ +φθείρει, +φθερεῖ +τοῦτον +ὁ +Θεός· +γὰρ +ὁ +ναὸς +τοῦ +Θεοῦ +ἅγιός +ἐστιν, +οἵτινές +ἐστε +ὑμεῖς. +Μηδεὶς +ἑαυτὸν +ἐξαπατάτω· +εἴ +τις +δοκεῖ +σοφὸς +εἶναι +ἐν +ὑμῖν +ἐν +τῷ +αἰῶνι +τούτῳ, +μωρὸς +γενέσθω, +ἵνα +γένηται +σοφός, +γὰρ +ἡ +σοφία +τοῦ +κόσμου +τούτου +μωρία +παρὰ +τῷ +Θεῷ +ἐστιν. +γάρ +γέγραπται +Ὁ +δρασσόμενος +τοὺς +σοφοὺς +ἐν +τῇ +πανουργίᾳ +αὐτῶν· +καὶ +πάλιν +Κύριος +γινώσκει +τοὺς +διαλογισμοὺς +τῶν +σοφῶν, +ὅτι +εἰσὶν +μάταιοι. +ὥστε +μηδεὶς +καυχάσθω +ἐν +ἀνθρώποις· +γὰρ +πάντα +ὑμῶν +ἐστιν, +εἴτε +Παῦλος +εἴτε +Ἀπολλῶς +εἴτε +Κηφᾶς, +εἴτε +κόσμος +εἴτε +ζωὴ +εἴτε +θάνατος, +εἴτε +ἐνεστῶτα +εἴτε +μέλλοντα, +πάντα +ὑμῶν, +δὲ +ὑμεῖς +Χριστοῦ, +δὲ +Χριστὸς +Θεοῦ. +Οὕτως +ἡμᾶς +λογιζέσθω +ἄνθρωπος +ὡς +ὑπηρέτας +Χριστοῦ +καὶ +οἰκονόμους +μυστηρίων +Θεοῦ. +ὧδε +λοιπὸν +ζητεῖται +ἐν +τοῖς +οἰκονόμοις +ἵνα +πιστός +τις +εὑρεθῇ. +δὲ +ἐμοὶ +εἰς +ἐλάχιστόν +ἐστιν +ἵνα +ἀνακριθῶ +ὑφ’ +ὑμῶν +ἢ +ὑπὸ +ἀνθρωπίνης +ἡμέρας· +ἀλλ’ +οὐδὲ +ἐμαυτὸν +ἀνακρίνω· +γὰρ +οὐδὲν +ἐμαυτῷ +σύνοιδα, +ἀλλ’ +οὐκ +ἐν +τούτῳ +δεδικαίωμαι· +δὲ +ὁ +ἀνακρίνων +με +Κύριός +ἐστιν. +ὥστε +μὴ +πρὸ +καιροῦ +τι +κρίνετε, +ἕως +ἂν +ἔλθῃ +ὁ +Κύριος, +ὃς +καὶ +φωτίσει +τὰ +κρυπτὰ +τοῦ +σκότους +καὶ +φανερώσει +τὰς +βουλὰς +τῶν +καρδιῶν· +καὶ +τότε +ὁ +ἔπαινος +γενήσεται +ἑκάστῳ +ἀπὸ +τοῦ +Θεοῦ. +δέ, +ἀδελφοί, +Ταῦτα +μετεσχημάτισα +εἰς +ἐμαυτὸν +καὶ +Ἀπολλῶν +δι’ +ὑμᾶς, +ἵνα +ἐν +ἡμῖν +μάθητε +τό +Μὴ +ὑπὲρ +ἃ +γέγραπται, +ἵνα +μὴ +εἷς +ὑπὲρ +τοῦ +ἑνὸς +φυσιοῦσθε +κατὰ +τοῦ +ἑτέρου. +γάρ +τίς +σε +διακρίνει; +δὲ +ἔχεις +τί +ὃ +οὐκ +ἔλαβες; +δὲ +εἰ +καὶ +ἔλαβες, +τί +καυχᾶσαι +ὡς +μὴ +λαβών; +ἤδη +κεκορεσμένοι +ἐστέ· +ἤδη +ἐπλουτήσατε· +χωρὶς +ἡμῶν +ἐβασιλεύσατε· +καὶ +ὄφελόν +γε +ἐβασιλεύσατε, +ἵνα +καὶ +ἡμεῖς +ὑμῖν +συνβασιλεύσωμεν. +γάρ, +δοκῶ +ὁ +Θεὸς +ἡμᾶς +τοὺς +ἀποστόλους +ἐσχάτους +ἀπέδειξεν +ὡς +ἐπιθανατίους, +ὅτι +θέατρον +ἐγενήθημεν +τῷ +κόσμῳ +καὶ +ἀγγέλοις +καὶ +ἀνθρώποις. +ἡμεῖς +μωροὶ +διὰ +Χριστόν, +δὲ +ὑμεῖς +φρόνιμοι +ἐν +Χριστῷ· +ἡμεῖς +ἀσθενεῖς, +δὲ +ὑμεῖς +ἰσχυροί· +ὑμεῖς +ἔνδοξοι, +δὲ +ἡμεῖς +ἄτιμοι. +ἄχρι +τῆς +ἄρτι +ὥρας +καὶ +πεινῶμεν +καὶ +διψῶμεν +καὶ +γυμνιτεύομεν +καὶ +κολαφιζόμεθα +καὶ +ἀστατοῦμεν +καὶ +κοπιῶμεν +ἐργαζόμενοι +ταῖς +ἰδίαις +χερσίν· +λοιδορούμενοι +εὐλογοῦμεν, +διωκόμενοι +ἀνεχόμεθα, +δυσφημούμενοι +παρακαλοῦμεν· +ὡς +περικαθάρματα +τοῦ +κόσμου +πάντων +περίψημα +ἐγενήθημεν, +ἕως +ἄρτι. +Οὐκ +ἐντρέπων +ὑμᾶς +γράφω +ταῦτα, +ἀλλ’ +ὡς +τέκνα +μου +ἀγαπητὰ +νουθετῶν. +γὰρ +ἐὰν +μυρίους +παιδαγωγοὺς +ἔχητε +ἐν +Χριστῷ, +ἀλλ’ +οὐ +πολλοὺς +πατέρας· +γὰρ +ἐν +Χριστῷ +Ἰησοῦ +διὰ +τοῦ +εὐαγγελίου +ἐγὼ +ὑμᾶς +ἐγέννησα. +οὖν +παρακαλῶ +ὑμᾶς, +μιμηταί +μου +γίνεσθε. +Διὰ +τοῦτο +αὐτὸ +ἔπεμψα +ὑμῖν +Τιμόθεον, +ὅς +ἐστίν +μου +τέκνον +ἀγαπητὸν +καὶ +πιστὸν +ἐν +Κυρίῳ, +ὃς +ὑμᾶς +ἀναμνήσει +τὰς +ὁδούς +μου +τὰς +ἐν +Χριστῷ +Ἰησοῦ, +καθὼς +πανταχοῦ +ἐν +πάσῃ +ἐκκλησίᾳ +διδάσκω. +δέ +ὡς +μὴ +ἐρχομένου +μου +πρὸς +ὑμᾶς +ἐφυσιώθησάν +τινες· +δὲ +ἐλεύσομαι +ταχέως +πρὸς +ὑμᾶς, +ἐὰν +ὁ +Κύριος +θελήσῃ, +καὶ +γνώσομαι +οὐ +τὸν +λόγον +τῶν +πεφυσιωμένων +ἀλλὰ +τὴν +δύναμιν· +γὰρ +οὐ +ἐν +λόγῳ +ἡ +βασιλεία +τοῦ +Θεοῦ, +ἀλλ’ +ἐν +δυνάμει. +τί +θέλετε; +ἐν +ῥάβδῳ +ἔλθω +πρὸς +ὑμᾶς, +ἢ +ἐν +ἀγάπῃ +τε +πνεύματί +πραΰτητος; +Ὅλως +ἀκούεται +ἐν +ὑμῖν +πορνεία, +καὶ +τοιαύτη +πορνεία +ἥτις +οὐδὲ +ἐν +τοῖς +ἔθνεσιν, +ὥστε +τινα +γυναῖκά +τοῦ +πατρὸς +ἔχειν. +καὶ +ὑμεῖς +πεφυσιωμένοι +ἐστέ, +καὶ +οὐχὶ +μᾶλλον +ἐπενθήσατε, +ἵνα +ἀρθῇ +ἐκ +μέσου +ὑμῶν +ὁ +τὸ +ἔργον +τοῦτο +πράξας; +γάρ, +ἐγὼ +μὲν +ἀπὼν +τῷ +σώματι +δὲ +παρὼν +τῷ +πνεύματι, +ἤδη +κέκρικα +ὡς +παρὼν +τὸν +οὕτως +τοῦτο +κατεργασάμενον +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου +Ἰησοῦ +συναχθέντων +ὑμῶν +καὶ +τοῦ +ἐμοῦ +πνεύματος +σὺν +τῇ +δυνάμει +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ, +παραδοῦναι +τὸν +τοιοῦτον +τῷ +Σατανᾷ +εἰς +ὄλεθρον +τῆς +σαρκός, +ἵνα +τὸ +πνεῦμα +σωθῇ +ἐν +τῇ +ἡμέρᾳ +τοῦ +Κυρίου. +Οὐ +καλὸν +τὸ +καύχημα +ὑμῶν. +οὐκ +οἴδατε +ὅτι +μικρὰ +ζύμη +ὅλον +τὸ +φύραμα +ζυμοῖ; +ἐκκαθάρατε +τὴν +παλαιὰν +ζύμην, +ἵνα +ἦτε +νέον +φύραμα, +καθώς +ἐστε +ἄζυμοι. +γὰρ +καὶ +τὸ +πάσχα +ἡμῶν +Χριστός. +ἐτύθη +ὥστε +ἑορτάζωμεν, +μὴ +ἐν +ζύμῃ +παλαιᾷ +μηδὲ +ἐν +ζύμῃ +κακίας +καὶ +πονηρίας, +ἀλλ’ +ἐν +ἀζύμοις +εἰλικρινίας +καὶ +ἀληθείας. +Ἔγραψα +ὑμῖν +ἐν +τῇ +ἐπιστολῇ +μὴ +συναναμίγνυσθαι +πόρνοις, +οὐ +πάντως +τοῖς +πόρνοις +τοῦ +κόσμου +τούτου +ἢ +τοῖς +πλεονέκταις +καὶ +ἅρπαξιν +ἢ +εἰδωλολάτραις, +ἐπεὶ +ἄρα +ὠφείλετε +ἐκ +τοῦ +κόσμου +ἐξελθεῖν. +δὲ +νῦν +ἔγραψα +ὑμῖν +μὴ +συναναμίγνυσθαι +ἐάν +τις +ἀδελφὸς +ὀνομαζόμενος +ᾖ +πόρνος +ἢ +πλεονέκτης +ἢ +εἰδωλολάτρης +ἢ +λοίδορος +ἢ +μέθυσος +ἢ +ἅρπαξ, +τῷ +τοιούτῳ +μηδὲ +συνεσθίειν. +γάρ +τί +μοι +τοὺς +ἔξω +κρίνειν; +οὐχὶ +τοὺς +ἔσω +ὑμεῖς +κρίνετε; +δὲ +τοὺς +ἔξω +ὁ +Θεὸς +κρινεῖ. +ἐξάρατε +τὸν +πονηρὸν +ἐξ +ὑμῶν +αὐτῶν. +Τολμᾷ +τις +ὑμῶν +πρᾶγμα +ἔχων +πρὸς +τὸν +ἕτερον +κρίνεσθαι +ἐπὶ +τῶν +ἀδίκων, +καὶ +οὐχὶ +ἐπὶ +τῶν +ἁγίων; +ἢ +οὐκ +οἴδατε +ὅτι +οἱ +ἅγιοι +τὸν +κόσμον +κρινοῦσιν; +καὶ +εἰ +ἐν +ὑμῖν +κρίνεται +ὁ +κόσμος, +ἀνάξιοί +ἐστε +κριτηρίων +ἐλαχίστων; +οὐκ +οἴδατε +ὅτι +ἀγγέλους +κρινοῦμεν, +μήτιγε +βιωτικά; +μὲν +οὖν +ἐὰν +βιωτικὰ +κριτήρια +ἔχητε, +τοὺς +ἐξουθενημένους +ἐν +τῇ +ἐκκλησίᾳ, +τούτους +καθίζετε; +πρὸς +ἐντροπὴν +ὑμῖν +λέγω. +οὐκ +οὕτως +ἔνι +ἐν +ὑμῖν +οὐδεὶς +σοφὸς, +ὃς +δυνήσεται +διακρῖναι +ἀνὰ +μέσον +τοῦ +ἀδελφοῦ +αὐτοῦ; +ἀλλὰ +ἀδελφὸς +μετὰ +ἀδελφοῦ +κρίνεται, +καὶ +τοῦτο +ἐπὶ +ἀπίστων; +μὲν +οὖν +ἤδη +ὅλως +ἥττημα +ὑμῖν +ἐστιν +ὅτι +κρίματα +ἔχετε +μεθ’ +ἑαυτῶν. +διὰ +τί +οὐχὶ +μᾶλλον +ἀδικεῖσθε; +διὰ +τί +οὐχὶ +μᾶλλον +ἀποστερεῖσθε; +ἀλλὰ +ὑμεῖς +ἀδικεῖτε +καὶ +ἀποστερεῖτε, +καὶ +τοῦτο +ἀδελφούς. +ἢ +οὐκ +οἴδατε +ὅτι +ἄδικοι +Θεοῦ +βασιλείαν +οὐ +κληρονομήσουσιν; +μὴ +πλανᾶσθε· +οὔτε +πόρνοι +οὔτε +εἰδωλολάτραι +οὔτε +μοιχοὶ +οὔτε +μαλακοὶ +οὔτε +ἀρσενοκοῖται +οὔτε +κλέπται +οὔτε +πλεονέκται, +οὐ +μέθυσοι, +οὐ +λοίδοροι, +οὐχ +ἅρπαγες +βασιλείαν +Θεοῦ +κληρονομήσουσιν. +καὶ +ταῦτά +τινες +ἦτε· +ἀλλὰ +ἀπελούσασθε, +ἀλλὰ +ἡγιάσθητε, +ἀλλὰ +ἐδικαιώθητε +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +καὶ +ἐν +τῷ +Πνεύματι +τοῦ +Θεοῦ +ἡμῶν. +Πάντα +μοι +ἔξεστιν, +ἀλλ’ +οὐ +πάντα +συμφέρει. +πάντα +μοι +ἔξεστιν, +ἀλλ’ +οὐκ +ἐγὼ +ἐξουσιασθήσομαι +ὑπό +τινος. +τὰ +βρώματα +τῇ +κοιλίᾳ, +καὶ +ἡ +κοιλία +τοῖς +βρώμασιν· +δὲ +ὁ +Θεὸς +καὶ +ταύτην +καὶ +ταῦτα +καταργήσει. +δὲ +τὸ +σῶμα +οὐ +τῇ +πορνείᾳ +ἀλλὰ +τῷ +Κυρίῳ, +καὶ +ὁ +Κύριος +τῷ +σώματι· +δὲ +ὁ +Θεὸς +καὶ +τὸν +Κύριον +ἤγειρεν +καὶ +ἡμᾶς +ἐξεγερεῖ +διὰ +τῆς +δυνάμεως +αὐτοῦ. +οὐκ +οἴδατε +ὅτι +τὰ +σώματα +ὑμῶν +μέλη +Χριστοῦ +ἐστιν; +οὖν +ἄρας +τὰ +μέλη +τοῦ +Χριστοῦ +ποιήσω +πόρνης +μέλη; +μὴ +γένοιτο. +ἢ +οὐκ +οἴδατε +ὅτι +ὁ +κολλώμενος +τῇ +πόρνῃ +ἓν +σῶμά +ἐστιν; +γάρ, +φησίν, +Ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν. +δὲ +ὁ +κολλώμενος +τῷ +Κυρίῳ +ἓν +πνεῦμά +ἐστιν. +φεύγετε +τὴν +πορνείαν. +πᾶν +ἁμάρτημα +ἐὰν +ὃ +ποιήσῃ +ἄνθρωπος +ἐκτὸς +τοῦ +σώματός +ἐστιν· +δὲ +ὁ +πορνεύων +εἰς +τὸ +ἴδιον +σῶμα +ἁμαρτάνει. +ἢ +οὐκ +οἴδατε +ὅτι +τὸ +σῶμα +ὑμῶν +ναὸς +τοῦ +ἐν +ὑμῖν +Ἁγίου +Πνεύματός +ἐστιν, +οὗ +ἔχετε +ἀπὸ +Θεοῦ; +καὶ +οὐκ +ἐστὲ +ἑαυτῶν; +γὰρ +ἠγοράσθητε +τιμῆς· +δὴ +δοξάσατε +τὸν +Θεὸν +ἐν +τῷ +σώματι +ὑμῶν. +δὲ +Περὶ +ὧν +ἐγράψατε, +καλὸν +ἀνθρώπῳ +γυναικὸς +μὴ +ἅπτεσθαι· +δὲ +διὰ +τὰς +πορνείας +ἕκαστος +τὴν +ἑαυτοῦ +γυναῖκα +ἐχέτω, +καὶ +ἑκάστη +τὸν +ἴδιον +ἄνδρα +ἐχέτω. +τῇ +γυναικὶ +ὁ +ἀνὴρ +τὴν +ὀφειλὴν +ἀποδιδότω, +δὲ +ὁμοίως +καὶ +ἡ +γυνὴ +τῷ +ἀνδρί. +ἡ +γυνὴ +τοῦ +ἰδίου +σώματος +οὐκ +ἐξουσιάζει +ἀλλὰ +ὁ +ἀνήρ· +δὲ +ὁμοίως +καὶ +ὁ +ἀνὴρ +τοῦ +ἰδίου +σώματος +οὐκ +ἐξουσιάζει +ἀλλὰ +ἡ +γυνή. +μὴ +ἀποστερεῖτε +ἀλλήλους, +εἰ +μήτι +ἂν +ἐκ +συμφώνου +πρὸς +καιρὸν +ἵνα +σχολάσητε +τῇ +προσευχῇ +καὶ +πάλιν +ἐπὶ +τὸ +αὐτὸ +ἦτε, +ἵνα +μὴ +πειράζῃ +ὑμᾶς +ὁ +Σατανᾶς +διὰ +τὴν +ἀκρασίαν +ὑμῶν. +δὲ +τοῦτο +λέγω +κατὰ +συνγνώμην, +οὐ +κατ’ +ἐπιταγήν. +δὲ +θέλω +πάντας +ἀνθρώπους +εἶναι +ὡς +καὶ +ἐμαυτόν· +ἀλλὰ +ἕκαστος +ἔχει +ἴδιον +χάρισμα +ἐκ +Θεοῦ, +μὲν +ὁ +οὕτως, +δὲ +ὁ +οὕτως. +δὲ +Λέγω +τοῖς +ἀγάμοις +καὶ +ταῖς +χήραις, +καλὸν +αὐτοῖς +ἐὰν +μείνωσιν +ὡς +κἀγώ· +δὲ +εἰ +οὐκ +ἐγκρατεύονται, +γαμησάτωσαν· +γάρ +κρεῖττον +ἐστιν +γαμεῖν +ἢ +πυροῦσθαι. +δὲ +τοῖς +γεγαμηκόσιν +παραγγέλλω, +οὐκ +ἐγὼ +ἀλλὰ +ὁ +Κύριος, +γυναῖκα +ἀπὸ +ἀνδρὸς +μὴ +χωρισθῆναι,— +δὲ +ἐὰν +καὶ +χωρισθῇ, +μενέτω +ἄγαμος +ἢ +τῷ +ἀνδρὶ +καταλλαγήτω,— +καὶ +ἄνδρα +γυναῖκα +μὴ +ἀφιέναι. +δὲ +τοῖς +λοιποῖς +λέγω +ἐγώ, +οὐχ +ὁ +Κύριος· +εἴ +τις +ἀδελφὸς +ἔχει +γυναῖκα +ἄπιστον, +καὶ +αὕτη +συνευδοκεῖ +οἰκεῖν +μετ’ +αὐτοῦ, +μὴ +ἀφιέτω +αὐτήν· +καὶ +γυνὴ +ἥτις +ἔχει +ἄνδρα +ἄπιστον, +καὶ +οὗτος +συνευδοκεῖ +οἰκεῖν +μετ’ +αὐτῆς, +μὴ +ἀφιέτω +τὸν +ἄνδρα. +γὰρ +ἡγίασται +ὁ +ἀνὴρ +ὁ +ἄπιστος +ἐν +τῇ +γυναικί, +καὶ +ἡγίασται +ἡ +γυνὴ +ἡ +ἄπιστος +ἐν +τῷ +ἀδελφῷ· +ἄρα +ἐπεὶ +τὰ +τέκνα +ὑμῶν +ἀκάθαρτά +ἐστιν, +δὲ +νῦν +ἅγιά +ἐστιν. +δὲ +εἰ +ὁ +ἄπιστος +χωρίζεται, +χωριζέσθω· +οὐ +δεδούλωται +ὁ +ἀδελφὸς +ἢ +ἡ +ἀδελφὴ +ἐν +τοῖς +τοιούτοις· +δὲ +ἐν +εἰρήνῃ +κέκληκεν +ὑμᾶς +ὁ +Θεός. +γὰρ +γύναι, +τί +οἶδας, +εἰ +τὸν +ἄνδρα +σώσεις; +ἢ +ἄνερ, +τί +οἶδας, +εἰ +τὴν +γυναῖκα +σώσεις; +Εἰ +μὴ +ὡς +ἑκάστῳ +μεμέρικεν +ὁ +Κύριος, +ὡς +ἕκαστον +κέκληκεν +ὁ +Θεός, +οὕτως +περιπατείτω. +καὶ +οὕτως +ἐν +ταῖς +ἐκκλησίαις +πάσαις +διατάσσομαι. +περιτετμημένος +τις +ἐκλήθη; +μὴ +ἐπισπάσθω· +ἐν +ἀκροβυστίᾳ +κέκληταί +τις; +μὴ +περιτεμνέσθω. +ἡ +περιτομὴ +οὐδέν +ἐστιν, +καὶ +ἡ +ἀκροβυστία +οὐδέν +ἐστιν, +ἀλλὰ +τήρησις +ἐντολῶν +Θεοῦ. +ἕκαστος +ἐν +τῇ +κλήσει +ᾗ +ἐκλήθη, +ἐν +ταύτῃ +μενέτω. +δοῦλος +ἐκλήθης; +μή +σοι +μελέτω· +ἀλλ’ +εἰ +καὶ +δύνασαι +ἐλεύθερος +γενέσθαι, +μᾶλλον +χρῆσαι. +γὰρ +ὁ +ἐν +Κυρίῳ +κληθεὶς +δοῦλος +ἀπελεύθερος +Κυρίου +ἐστίν· +ὁμοίως +ὁ +ἐλεύθερος +κληθεὶς +ἐστιν +δοῦλός +Χριστοῦ. +τιμῆς +ἠγοράσθητε· +μὴ +γίνεσθε +δοῦλοι +ἀνθρώπων. +ἀδελφοί, +ἕκαστος +ἐν +ᾧ +ἐκλήθη, +ἐν +τούτῳ +μενέτω +παρὰ +Θεῷ. +δὲ +Περὶ +τῶν +παρθένων +ἐπιταγὴν +Κυρίου +οὐκ +ἔχω, +δὲ +γνώμην +δίδωμι +ὡς +ἠλεημένος +ὑπὸ +Κυρίου +πιστὸς +εἶναι. +οὖν +Νομίζω +τοῦτο +καλὸν +ὑπάρχειν +διὰ +τὴν +ἐνεστῶσαν +ἀνάγκην, +ὅτι +καλὸν +ἀνθρώπῳ +τὸ +οὕτως +εἶναι. +δέδεσαι +γυναικί; +μὴ +ζήτει +λύσιν· +λέλυσαι +ἀπὸ +γυναικός; +μὴ +ζήτει +γυναῖκα. +δὲ +ἐὰν +καὶ +γαμήσῃς, +οὐχ +ἥμαρτες, +καὶ +ἐὰν +γήμῃ +ἡ +παρθένος, +οὐχ +ἥμαρτεν· +δὲ +θλῖψιν +τῇ +σαρκὶ +ἕξουσιν +οἱ +τοιοῦτοι, +δὲ +ἐγὼ +ὑμῶν +φείδομαι. +δέ +ἀδελφοί, +Τοῦτο +φημι, +ὁ +καιρὸς +συνεσταλμένος +ἐστίν· +τὸ +λοιπὸν +ἵνα +καὶ +οἱ +ἔχοντες +γυναῖκας +ὡς +μὴ +ἔχοντες +ὦσιν, +καὶ +οἱ +κλαίοντες +ὡς +μὴ +κλαίοντες, +καὶ +οἱ +χαίροντες +ὡς +μὴ +χαίροντες, +καὶ +οἱ +ἀγοράζοντες +ὡς +μὴ +κατέχοντες, +καὶ +οἱ +χρώμενοι +τὸν +κόσμον +ὡς +μὴ +καταχρώμενοι· +γὰρ +παράγει +τὸ +σχῆμα +τοῦ +κόσμου +τούτου. +δὲ +θέλω +ὑμᾶς +ἀμερίμνους +εἶναι. +ὁ +ἄγαμος +μεριμνᾷ +τὰ +τοῦ +Κυρίου, +πῶς +ἀρέσῃ +τῷ +Κυρίῳ· +δὲ +ὁ +γαμήσας +μεριμνᾷ +τὰ +τοῦ +κόσμου, +πῶς +ἀρέσῃ +τῇ +γυναικί, +καὶ +μεμέρισται. +καὶ +ἡ +γυνὴ +ἡ +ἄγαμος +καὶ +ἡ +παρθένος +μεριμνᾷ +τὰ +τοῦ +Κυρίου, +ἵνα +ᾖ +ἁγία +καὶ +τῷ +σώματι +καὶ +τῷ +πνεύματι· +δὲ +ἡ +γαμήσασα +μεριμνᾷ +τὰ +τοῦ +κόσμου, +πῶς +ἀρέσῃ +τῷ +ἀνδρί. +δὲ +τοῦτο +πρὸς +τὸ +ὑμῶν +αὐτῶν +σύμφορον +λέγω, +οὐχ +ἵνα +βρόχον +ὑμῖν +ἐπιβάλω, +ἀλλὰ +πρὸς +τὸ +εὔσχημον +καὶ +εὐπάρεδρον +τῷ +Κυρίῳ +ἀπερισπάστως. +δέ +Εἰ +τις +ἀσχημονεῖν +ἐπὶ +τὴν +παρθένον +αὐτοῦ +νομίζει, +ἐὰν +ᾖ +ὑπέρακμος, +καὶ +οὕτως +ὀφείλει +γίνεσθαι, +ὃ +θέλει +ποιείτω· +οὐχ +ἁμαρτάνει· +γαμείτωσαν. +δὲ +ὃς +ἕστηκεν +ἐν +τῇ +καρδίᾳ +αὐτοῦ +ἑδραῖος +μὴ +ἔχων +ἀνάγκην, +δὲ +ἐξουσίαν +ἔχει +περὶ +τοῦ +ἰδίου +θελήματος, +καὶ +τοῦτο +κέκρικεν +ἐν +τῇ +ἰδίᾳ +καρδίᾳ, +τηρεῖν +τὴν +ἑαυτοῦ +παρθένον, +καλῶς +ποιήσει. +ὥστε +καὶ +ὁ +γαμίζων +τὴν +ἑαυτοῦ +παρθένον +καλῶς +ποιεῖ, +καὶ +ὁ +μὴ +γαμίζων +κρεῖσσον +ποιήσει. +Γυνὴ +δέδεται +ἐφ’ +ὅσον +χρόνον +ζῇ +ὁ +ἀνὴρ +αὐτῆς· +δὲ +ἐὰν +κοιμηθῇ +ὁ +ἀνήρ, +ἐλευθέρα +ἐστὶν +ᾧ +θέλει +γαμηθῆναι, +μόνον +ἐν +Κυρίῳ· +δέ +μακαριωτέρα +ἐστιν +ἐὰν +οὕτως +μείνῃ, +κατὰ +τὴν +ἐμὴν +γνώμην· +δὲ +δοκῶ +κἀγὼ +Πνεῦμα +Θεοῦ +ἔχειν. +δὲ +Περὶ +τῶν +εἰδωλοθύτων, +οἴδαμεν +ὅτι +πάντες +γνῶσιν +ἔχομεν. +ἡ +γνῶσις +φυσιοῖ, +δὲ +ἡ +ἀγάπη +οἰκοδομεῖ· +εἴ +τις +δοκεῖ +ἐγνωκέναι +τι, +οὔπω +ἔγνω +καθὼς +δεῖ +γνῶναι· +δέ +εἰ +τις +ἀγαπᾷ +τὸν +Θεόν, +οὗτος +ἔγνωσται +ὑπ’ +αὐτοῦ. +οὖν +Περὶ +τῆς +βρώσεως +τῶν +εἰδωλοθύτων +οἴδαμεν +ὅτι +οὐδὲν +εἴδωλον +ἐν +κόσμῳ, +καὶ +ὅτι +οὐδεὶς +Θεὸς +εἰ +μὴ +εἷς. +γὰρ +εἴπερ +καὶ +εἰσὶν +λεγόμενοι +θεοὶ +εἴτε +ἐν +οὐρανῷ +εἴτε +ἐπὶ +γῆς, +ὥσπερ +εἰσὶν +θεοὶ +πολλοὶ +καὶ +κύριοι +πολλοί, +ἀλλ’ +ἡμῖν +εἷς +Θεὸς +ὁ +Πατήρ, +ἐξ +οὗ +τὰ +πάντα +καὶ +ἡμεῖς +εἰς +αὐτόν, +καὶ +εἷς +Κύριος +Ἰησοῦς +Χριστός, +δι’ +οὗ +τὰ +πάντα +καὶ +ἡμεῖς +δι’ +αὐτοῦ. +ἀλλ’ +οὐκ +ἐν +πᾶσιν +ἡ +γνῶσις· +δὲ +τινὲς +τῇ +συνηθείᾳ +ἕως +ἄρτι +τοῦ +εἰδώλου +ὡς +εἰδωλόθυτον +ἐσθίουσιν, +καὶ +ἡ +συνείδησις +αὐτῶν +ἀσθενὴς +οὖσα +μολύνεται. +δὲ +βρῶμα +ἡμᾶς +οὐ +παραστήσει +τῷ +Θεῷ· +οὔτε +ἐὰν +μὴ +φάγωμεν +ὑστερούμεθα, +οὔτε +ἐὰν +φάγωμεν +περισσεύομεν. +δὲ +βλέπετε +μή +πως +ἡ +ἐξουσία +ὑμῶν +αὕτη +πρόσκομμα +γένηται +τοῖς +ἀσθενέσιν. +γάρ +ἐὰν +τις +ἴδῃ +σὲ +τὸν +ἔχοντα +γνῶσιν +ἐν +εἰδωλίῳ +κατακείμενον, +οὐχὶ +ἡ +συνείδησις +αὐτοῦ +ἀσθενοῦς +ὄντος +οἰκοδομηθήσεται +εἰς +τὸ +τὰ +εἰδωλόθυτα +ἐσθίειν; +γὰρ +ἀπόλλυται +ἐν +τῇ +σῇ +γνώσει, +ὁ +ἀσθενῶν +ὁ +ἀδελφὸς +δι’ +ὃν +Χριστὸς +ἀπέθανεν. +δὲ +οὕτως +ἁμαρτάνοντες +εἰς +τοὺς +ἀδελφοὺς +καὶ +τύπτοντες +αὐτῶν +τὴν +συνείδησιν +ἀσθενοῦσαν +εἰς +Χριστὸν +ἁμαρτάνετε. +διόπερ +εἰ +βρῶμα +σκανδαλίζει +τὸν +ἀδελφόν +μου, +οὐ +μὴ +φάγω +κρέα +εἰς +τὸν +αἰῶνα, +ἵνα +μὴ +τὸν +ἀδελφόν +μου +σκανδαλίσω. +Οὐκ +εἰμὶ +ἐλεύθερος; +οὐκ +εἰμὶ +ἀπόστολος; +οὐχὶ +Ἰησοῦν +τὸν +Κύριον +ἡμῶν +ἑόρακα; +οὐ +τὸ +ἔργον +μου +ὑμεῖς +ἐστε +ἐν +Κυρίῳ; +εἰ +ἄλλοις +οὐκ +εἰμὶ +ἀπόστολος, +ἀλλά +γε +ὑμῖν +εἰμι· +γὰρ +ἡ +σφραγίς +μου +τῆς +ἀποστολῆς +ὑμεῖς +ἐστε +ἐν +Κυρίῳ. +Ἠ +ἐμὴ +ἀπολογία +τοῖς +ἐμὲ +ἀνακρίνουσίν +ἐστιν +αὕτη. +μὴ +οὐκ +ἔχομεν +ἐξουσίαν +φαγεῖν +καὶ +πεῖν; +μὴ +οὐκ +ἔχομεν +ἐξουσίαν +ἀδελφὴν +γυναῖκα +περιάγειν, +ὡς +καὶ +οἱ +λοιποὶ +ἀπόστολοι +καὶ +οἱ +ἀδελφοὶ +τοῦ +Κυρίου +καὶ +Κηφᾶς; +ἢ +μόνος +ἐγὼ +καὶ +Βαρνάβας +οὐκ +ἔχομεν +ἐξουσίαν +μὴ +ἐργάζεσθαι; +τίς +στρατεύεται +ἰδίοις +ὀψωνίοις +ποτέ; +τίς +φυτεύει +ἀμπελῶνα +καὶ +τὸν +καρπὸν +αὐτοῦ +οὐκ +ἐσθίει; +ἢ +τίς +ποιμαίνει +ποίμνην +καὶ +ἐκ +τοῦ +γάλακτος +τῆς +ποίμνης +οὐκ +ἐσθίει; +μὴ +κατὰ +ἄνθρωπον +ταῦτα +λαλῶ, +ἢ +καὶ +ὁ +νόμος +ταῦτα +οὐ +λέγει; +γὰρ +ἐν +τῷ +Μωϋσέως +νόμῳ +γέγραπται +Οὐ +κημώσεις +βοῦν +ἀλοῶντα. +μὴ +τῶν +βοῶν +μέλει +τῷ +Θεῷ; +ἢ +δι’ +ἡμᾶς +πάντως +λέγει; +γὰρ +δι’ +ἡμᾶς +ἐγράφη, +ὅτι +ὀφείλει +ἐπ’ +ἐλπίδι +ἀροτριᾶν, +ὁ +ἀροτριῶν +καὶ +ὁ +ἀλοῶν +ἐπ’ +ἐλπίδι +τοῦ +μετέχειν. +Εἰ +ἡμεῖς +ὑμῖν +τὰ +πνευματικὰ +ἐσπείραμεν, +μέγα +εἰ +ἡμεῖς +ὑμῶν +τὰ +σαρκικὰ +θερίσομεν; +εἰ +ἄλλοι +τῆς +ὑμῶν +ἐξουσίας +μετέχουσιν, +οὐ +μᾶλλον +ἡμεῖς; +ἀλλ’ +οὐκ +ἐχρησάμεθα +τῇ +ἐξουσίᾳ +ταύτῃ, +ἀλλὰ +πάντα +στέγομεν +ἵνα +μή +τινα +ἐνκοπὴν +δῶμεν +τῷ +εὐαγγελίῳ +τοῦ +Χριστοῦ. +οὐκ +οἴδατε +ὅτι +οἱ +τὰ +ἱερὰ +ἐργαζόμενοι +τὰ +ἐκ +τοῦ +ἱεροῦ +ἐσθίουσιν, +οἱ +τῷ +θυσιαστηρίῳ +παρεδρεύοντες +τῷ +θυσιαστηρίῳ +συνμερίζονται; +οὕτως +καὶ +ὁ +Κύριος +διέταξεν +τοῖς +τὸ +εὐαγγέλιον +καταγγέλλουσιν +ἐκ +τοῦ +εὐαγγελίου +ζῆν· +δὲ +ἐγὼ +οὐ +κέχρημαι +οὐδενὶ +τούτων. +δὲ +οὐκ +ἔγραψα +ταῦτα +ἵνα +οὕτως +γένηται +ἐν +ἐμοί· +γάρ +καλὸν +μοι +μᾶλλον +ἀποθανεῖν +ἢ +—τὸ +καύχημά +μου +οὐδεὶς +κενώσει. +γὰρ +ἐὰν +εὐαγγελίζωμαι, +οὐκ +ἔστιν +μοι +καύχημα· +γάρ +ἀνάγκη +μοι +ἐπίκειται· +γάρ +οὐαὶ +μοί +ἐστιν +ἐὰν +μὴ +εὐαγγελίσωμαι. +γὰρ +εἰ +ἑκὼν +τοῦτο +πράσσω, +μισθὸν +ἔχω· +δὲ +εἰ +ἄκων, +οἰκονομίαν +πεπίστευμαι. +οὖν +τίς +ἐστιν +μού +ὁ +μισθός; +ἵνα +εὐαγγελιζόμενος +ἀδάπανον +θήσω +τὸ +εὐαγγέλιον, +εἰς +τὸ +μὴ +καταχρήσασθαι +τῇ +ἐξουσίᾳ +μου +ἐν +τῷ +εὐαγγελίῳ. +γὰρ +Ἐλεύθερος +ὢν +ἐκ +πάντων +πᾶσιν +ἐμαυτὸν +ἐδούλωσα, +ἵνα +τοὺς +πλείονας +κερδήσω· +καὶ +ἐγενόμην +τοῖς +Ἰουδαίοις +ὡς +Ἰουδαῖος, +ἵνα +Ἰουδαίους +κερδήσω· +τοῖς +ὑπὸ +νόμον +ὡς +ὑπὸ +νόμον, +μὴ +ὢν +αὐτὸς +ὑπὸ +νόμον, +ἵνα +τοὺς +ὑπὸ +νόμον +κερδήσω· +τοῖς +ἀνόμοις +ὡς +ἄνομος, +μὴ +ὢν +ἄνομος +Θεοῦ +ἀλλ’ +ἔννομος +Χριστοῦ, +ἵνα +κερδάνω +τοὺς +ἀνόμους· +ἐγενόμην +τοῖς +ἀσθενέσιν +ἀσθενής, +ἵνα +τοὺς +ἀσθενεῖς +κερδήσω· +τοῖς +πᾶσιν +γέγονα +πάντα, +ἵνα +πάντως +τινὰς +σώσω. +δὲ +πάντα +ποιῶ +διὰ +τὸ +εὐαγγέλιον, +ἵνα +συνκοινωνὸς +αὐτοῦ +γένωμαι. +Οὐκ +οἴδατε +ὅτι +οἱ +ἐν +σταδίῳ +τρέχοντες +μὲν +πάντες +τρέχουσιν, +δὲ +εἷς +λαμβάνει +τὸ +βραβεῖον; +οὕτως +τρέχετε +ἵνα +καταλάβητε. +δὲ +πᾶς +ὁ +ἀγωνιζόμενος +πάντα +ἐγκρατεύεται, +οὖν +μὲν +ἐκεῖνοι +ἵνα +φθαρτὸν +στέφανον +λάβωσιν, +δὲ +ἡμεῖς +ἄφθαρτον. +τοίνυν +ἐγὼ +οὕτως +τρέχω +ὡς +οὐκ +ἀδήλως, +οὕτως +πυκτεύω +ὡς +οὐκ +ἀέρα +δέρων· +ἀλλὰ +ὑπωπιάζω +μου +τὸ +σῶμα +καὶ +δουλαγωγῶ, +μή +πως +ἄλλοις +κηρύξας +αὐτὸς +ἀδόκιμος +γένωμαι. +γὰρ +ἀδελφοί, +Οὐ +θέλω +ὑμᾶς +ἀγνοεῖν, +ὅτι +οἱ +πατέρες +ἡμῶν +πάντες +ὑπὸ +τὴν +νεφέλην +ἦσαν +καὶ +πάντες +διὰ +τῆς +θαλάσσης +διῆλθον, +καὶ +πάντες +εἰς +τὸν +Μωϋσῆν +ἐβαπτίσαντο +ἐν +τῇ +νεφέλῃ +καὶ +ἐν +τῇ +θαλάσσῃ, +καὶ +πάντες +τὸ +αὐτὸ +πνευματικὸν +βρῶμα +ἔφαγον, +καὶ +πάντες +τὸ +αὐτὸ +πνευματικὸν +πόμα· +ἔπιον +γὰρ +ἔπινον +ἐκ +πνευματικῆς +ἀκολουθούσης +πέτρας, +δὲ +ἡ +πέτρα +ἦν +ὁ +Χριστός, +ἀλλ’ +οὐκ +ἐν +τοῖς +πλείοσιν +αὐτῶν +εὐδόκησεν +ὁ +Θεός· +γὰρ +κατεστρώθησαν +ἐν +τῇ +ἐρήμῳ. +δὲ +Ταῦτα +τύποι +ἡμῶν +ἐγενήθησαν, +εἰς +τὸ +μὴ +εἶναι +ἡμᾶς +ἐπιθυμητὰς +κακῶν, +καθὼς +κἀκεῖνοι +ἐπεθύμησαν. +μηδὲ +εἰδωλολάτραι +γίνεσθε, +καθώς +τινες +αὐτῶν· +ὥσπερ +γέγραπται +Ἐκάθισεν +ὁ +λαὸς +φαγεῖν +καὶ +πεῖν, +καὶ +ἀνέστησαν +παίζειν. +μηδὲ +πορνεύωμεν, +καθώς +τινες +αὐτῶν +ἐπόρνευσαν, +καὶ +ἔπεσαν +μιᾷ +ἡμέρᾳ +εἰκοσιτρεῖς +χιλιάδες. +μηδὲ +ἐκπειράζωμεν +τὸν +Κύριον, +καθώς +τινες +αὐτῶν +ἐπείρασαν +καὶ +ὑπὸ +τῶν +ὄφεων +ἀπώλλυντο. +μηδὲ +γογγύζετε, +καθάπερ +τινὲς +αὐτῶν +ἐγόγγυσαν, +καὶ +ἀπώλοντο +ὑπὸ +τοῦ +ὀλοθρευτοῦ. +δὲ +ταῦτα +τυπικῶς +συνέβαινεν +ἐκείνοις, +δὲ +ἐγράφη +πρὸς +νουθεσίαν +ἡμῶν, +εἰς +οὓς +τὰ +τέλη +τῶν +αἰώνων +κατήντηκεν. +Ὥστε +ὁ +δοκῶν +ἑστάναι +βλεπέτω +μὴ +πέσῃ, +πειρασμὸς +ὑμᾶς +οὐκ +εἴληφεν +εἰ +μὴ +ἀνθρώπινος· +δὲ +πιστὸς +ὁ +Θεός, +ὃς +οὐκ +ἐάσει +ὑμᾶς +πειρασθῆναι +ὑπὲρ +ὃ +δύνασθε, +ἀλλὰ +ποιήσει +σὺν +τῷ +πειρασμῷ +καὶ +τὴν +ἔκβασιν +τοῦ +δύνασθαι +ὑπενεγκεῖν. +Διόπερ, +ἀγαπητοί +μου, +φεύγετε +ἀπὸ +τῆς +εἰδωλολατρείας. +ὡς +φρονίμοις +λέγω· +κρίνατε +ὑμεῖς +ὅ +φημι. +Τὸ +ποτήριον +τῆς +εὐλογίας +ὃ +εὐλογοῦμεν, +οὐχὶ +ἐστὶν +κοινωνία +τοῦ +αἵματος +τοῦ +Χριστοῦ; +τὸν +ἄρτον +ὃν +κλῶμεν, +οὐχὶ +κοινωνία +τοῦ +σώματος +τοῦ +Χριστοῦ +ἐστιν; +ὅτι +εἷς +ἄρτος, +ἓν +σῶμα +οἱ +πολλοί +ἐσμεν· +γὰρ +οἱ +πάντες +ἐκ +τοῦ +ἑνὸς +ἄρτου +μετέχομεν. +βλέπετε +τὸν +Ἰσραὴλ +κατὰ +σάρκα· +οὐχ +οἱ +ἐσθίοντες +τὰς +θυσίας +κοινωνοὶ +τοῦ +θυσιαστηρίου +εἰσίν; +οὖν +τί +φημι; +ὅτι +εἰδωλόθυτόν +τί +ἐστιν; +ἢ +ὅτι +εἴδωλόν +τί +ἐστιν; +ἀλλ’ +ὅτι +ἃ +θύουσιν, +δαιμονίοις +καὶ +οὐ +Θεῷ +θύουσιν· +δὲ +οὐ +θέλω +ὑμᾶς +κοινωνοὺς +τῶν +δαιμονίων +γίνεσθαι. +οὐ +δύνασθε +ποτήριον +Κυρίου +πίνειν +καὶ +ποτήριον +δαιμονίων· +οὐ +δύνασθε +τραπέζης +Κυρίου +μετέχειν +καὶ +τραπέζης +δαιμονίων. +ἢ +παραζηλοῦμεν +τὸν +Κύριον; +μὴ +ἰσχυρότεροι +αὐτοῦ +ἐσμεν; +Πάντα +ἔξεστιν, +ἀλλ’ +οὐ +πάντα +συμφέρει. +πάντα +ἔξεστιν, +ἀλλ’ +οὐ +πάντα +οἰκοδομεῖ. +μηδεὶς +τὸ +ἑαυτοῦ +ζητείτω +ἀλλὰ +τὸ +τοῦ +ἑτέρου. +Πᾶν +τὸ +ἐν +μακέλλῳ +πωλούμενον +ἐσθίετε +μηδὲν +ἀνακρίνοντες +διὰ +τὴν +συνείδησιν· +γὰρ +τοῦ +Κυρίου +ἡ +γῆ +καὶ +τὸ +πλήρωμα +αὐτῆς. +εἴ +τις +τῶν +ἀπίστων +καλεῖ +ὑμᾶς +καὶ +θέλετε +πορεύεσθαι, +πᾶν +τὸ +παρατιθέμενον +ὑμῖν +ἐσθίετε +μηδὲν +ἀνακρίνοντες +διὰ +τὴν +συνείδησιν. +δέ +ἐὰν +τις +ὑμῖν +εἴπῃ +Τοῦτο +ἱερόθυτόν +ἐστιν, +μὴ +ἐσθίετε +δι’ +ἐκεῖνον +τὸν +μηνύσαντα +καὶ +τὴν +συνείδησιν· +δὲ +λέγω +συνείδησιν +οὐχὶ +τὴν +ἑαυτοῦ +ἀλλὰ +τὴν +τοῦ +ἑτέρου. +γὰρ +ἵνα +τί +ἡ +ἐλευθερία +μου +κρίνεται +ὑπὸ +ἄλλης +συνειδήσεως; +εἰ +ἐγὼ +χάριτι +μετέχω, +τί +βλασφημοῦμαι +ὑπὲρ +οὗ +ἐγὼ +εὐχαριστῶ; +οὖν +Εἴτε +ἐσθίετε +εἴτε +πίνετε +εἴτε +τι +ποιεῖτε, +πάντα +εἰς +δόξαν +Θεοῦ +ποιεῖτε. +ἀπρόσκοποι +γίνεσθε +καὶ +Ἰουδαίοις +καὶ +Ἕλλησιν +καὶ +τῇ +ἐκκλησίᾳ +τοῦ +Θεοῦ, +καθὼς +κἀγὼ +πάντα +πᾶσιν +ἀρέσκω, +ζητῶν +μὴ +τὸ +ἐμαυτοῦ +σύμφορον +ἀλλὰ +τὸ +τῶν +πολλῶν, +ἵνα +σωθῶσιν. +μιμηταί +μου +γίνεσθε, +καθὼς +κἀγὼ +Χριστοῦ. +δὲ +Ἐπαινῶ +ὑμᾶς +ὅτι +πάντα +μου +μέμνησθε +καὶ +καθὼς +παρέδωκα +ὑμῖν +τὰς +παραδόσεις +κατέχετε. +δὲ +Θέλω +ὑμᾶς +εἰδέναι +ὅτι +παντὸς +ἀνδρὸς +ἡ +κεφαλὴ +ὁ +Χριστός +ἐστιν, +δὲ +κεφαλὴ +γυναικὸς +ὁ +ἀνήρ, +δὲ +κεφαλὴ +τοῦ +Χριστοῦ +ὁ +Θεός. +πᾶς +ἀνὴρ +προσευχόμενος +ἢ +προφητεύων +κατὰ +κεφαλῆς +ἔχων +καταισχύνει +τὴν +κεφαλὴν +αὐτοῦ. +δὲ +πᾶσα +γυνὴ +προσευχομένη +ἢ +προφητεύουσα +ἀκατακαλύπτῳ +τῇ +κεφαλῇ +καταισχύνει +τὴν +κεφαλὴν +αὐτῆς· +γάρ +ἐστιν +ἓν +καὶ +τὸ +αὐτὸ +τῇ +ἐξυρημένῃ. +γὰρ +εἰ +οὐ +κατακαλύπτεται +γυνή, +καὶ +κειράσθω· +δὲ +εἰ +αἰσχρὸν +γυναικὶ +τὸ +κείρασθαι +ἢ +ξυρᾶσθαι, +κατακαλυπτέσθω. +γὰρ +μὲν +ἀνὴρ +οὐκ +ὀφείλει +κατακαλύπτεσθαι +τὴν +κεφαλήν, +εἰκὼν +καὶ +δόξα +Θεοῦ +ὑπάρχων· +δὲ +ἡ +γυνὴ +δόξα +ἀνδρός +ἐστιν. +γάρ +οὐ +ἐστιν +ἀνὴρ +ἐκ +γυναικός, +ἀλλὰ +γυνὴ +ἐξ +ἀνδρός· +γὰρ +καὶ +οὐκ +ἐκτίσθη +ἀνὴρ +διὰ +τὴν +γυναῖκα, +ἀλλὰ +γυνὴ +διὰ +τὸν +ἄνδρα. +διὰ +τοῦτο +ὀφείλει +ἡ +γυνὴ +ἐξουσίαν +ἔχειν +ἐπὶ +τῆς +κεφαλῆς +διὰ +τοὺς +ἀγγέλους. +πλὴν +οὔτε +γυνὴ +χωρὶς +ἀνδρὸς +οὔτε +ἀνὴρ +χωρὶς +γυναικὸς +ἐν +Κυρίῳ· +γὰρ +ὥσπερ +ἡ +γυνὴ +ἐκ +τοῦ +ἀνδρός, +οὕτως +καὶ +ὁ +ἀνὴρ +διὰ +τῆς +γυναικός· +δὲ +τὰ +πάντα +ἐκ +τοῦ +Θεοῦ. +ἐν +ὑμῖν +αὐτοῖς +κρίνατε· +πρέπον +ἐστὶν +γυναῖκα +ἀκατακάλυπτον +τῷ +Θεῷ +προσεύχεσθαι; +οὐδὲ +ἡ +φύσις +αὐτὴ +διδάσκει +ὑμᾶς +ὅτι +μὲν +ἐὰν +ἀνὴρ +κομᾷ, +ἀτιμία +αὐτῷ +ἐστιν, +δὲ +ἐὰν +γυνὴ +κομᾷ, +δόξα +αὐτῇ +ἐστιν; +ὅτι +ἡ +κόμη +ἀντὶ +περιβολαίου +δέδοται +αὐτῇ. +δέ +Εἰ +τις +δοκεῖ +φιλόνεικος +εἶναι, +ἡμεῖς +τοιαύτην +συνήθειαν +οὐκ +ἔχομεν, +οὐδὲ +αἱ +ἐκκλησίαι +τοῦ +Θεοῦ. +δὲ +Τοῦτο +παραγγέλλων +οὐκ +ἐπαινῶ +ὅτι +οὐκ +εἰς +τὸ +κρεῖσσον +ἀλλὰ +εἰς +τὸ +ἧσσον +συνέρχεσθε. +γὰρ +μὲν +πρῶτον +συνερχομένων +ὑμῶν +ἐν +ἐκκλησίᾳ +ἀκούω +σχίσματα +ἐν +ὑμῖν +ὑπάρχειν, +καὶ +μέρος +τι +πιστεύω. +γὰρ +δεῖ +καὶ +αἱρέσεις +ἐν +ὑμῖν +εἶναι, +ἵνα +καὶ +οἱ +δόκιμοι +φανεροὶ +γένωνται +ἐν +ὑμῖν. +οὖν +Συνερχομένων +ὑμῶν +ἐπὶ +τὸ +αὐτὸ +οὐκ +ἔστιν +κυριακὸν +δεῖπνον +φαγεῖν· +γὰρ +ἕκαστος +τὸ +ἴδιον +δεῖπνον +προλαμβάνει +ἐν +τῷ +φαγεῖν, +καὶ +μὲν +ὃς +πεινᾷ, +δὲ +ὃς +μεθύει. +γὰρ +μὴ +οἰκίας +οὐκ +ἔχετε +εἰς +τὸ +ἐσθίειν +καὶ +πίνειν; +ἢ +τῆς +ἐκκλησίας +τοῦ +Θεοῦ +καταφρονεῖτε, +καὶ +καταισχύνετε +τοὺς +μὴ +ἔχοντας; +τί +εἴπω +ὑμῖν; +ἐπαινέσω +ὑμᾶς; +ἐν +τούτῳ +οὐκ +ἐπαινῶ. +γὰρ +ἐγὼ +παρέλαβον +ἀπὸ +τοῦ +Κυρίου, +ὃ +καὶ +παρέδωκα +ὑμῖν, +ὅτι +ὁ +Κύριος +Ἰησοῦς +ἐν +τῇ +νυκτὶ +ᾗ +παρεδίδετο +ἔλαβεν +ἄρτον +καὶ +εὐχαριστήσας +ἔκλασεν +καὶ +εἶπεν +Τοῦτό +ἐστιν +μού +τὸ +σῶμα +τὸ +ὑπὲρ +ὑμῶν· +τοῦτο +ποιεῖτε +εἰς +τὴν +ἐμὴν +ἀνάμνησιν. +ὡσαύτως +καὶ +τὸ +ποτήριον +μετὰ +τὸ +δειπνῆσαι, +λέγων +Τοῦτο +τὸ +ποτήριον +ἡ +καινὴ +διαθήκη +ἐστὶν +ἐν +τῷ +ἐμῷ +αἵματι· +τοῦτο +ποιεῖτε, +ὁσάκις +ἐὰν +πίνητε, +εἰς +τὴν +ἐμὴν +ἀνάμνησιν. +γὰρ +ὁσάκις +ἐὰν +ἐσθίητε +τὸν +ἄρτον +τοῦτον +καὶ +τὸ +ποτήριον +πίνητε, +τὸν +θάνατον +τοῦ +Κυρίου +καταγγέλλετε, +ἄχρι +οὗ +ἔλθῃ. +ὥστε +ἂν +ὃς +ἐσθίῃ +τὸν +ἄρτον +ἢ +πίνῃ +τὸ +ποτήριον +τοῦ +Κυρίου +ἀναξίως, +ἔνοχος +ἔσται +τοῦ +σώματος +καὶ +τοῦ +αἵματος +τοῦ +Κυρίου. +δὲ +δοκιμαζέτω +ἄνθρωπος +ἑαυτόν, +καὶ +οὕτως +ἐκ +τοῦ +ἄρτου +ἐσθιέτω +καὶ +ἐκ +τοῦ +ποτηρίου +πινέτω· +γὰρ +ὁ +ἐσθίων +καὶ +πίνων +κρίμα +ἑαυτῷ +ἐσθίει +καὶ +πίνει +μὴ +διακρίνων +τὸ +σῶμα. +διὰ +τοῦτο +ἐν +ὑμῖν +πολλοὶ +ἀσθενεῖς +καὶ +ἄρρωστοι +καὶ +κοιμῶνται +ἱκανοί. +δὲ +εἰ +ἑαυτοὺς +διεκρίνομεν, +ἂν +οὐκ +ἐκρινόμεθα· +δὲ +κρινόμενοι +ὑπὸ +τοῦ +Κυρίου +παιδευόμεθα, +ἵνα +μὴ +σὺν +τῷ +κόσμῳ +κατακριθῶμεν. +ὥστε, +ἀδελφοί +μου, +συνερχόμενοι +εἰς +τὸ +φαγεῖν +ἀλλήλους +ἐκδέχεσθε. +εἴ +τις +πεινᾷ, +ἐν +οἴκῳ +ἐσθιέτω, +ἵνα +μὴ +εἰς +κρίμα +συνέρχησθε. +δὲ +Τὰ +λοιπὰ +ὡς +ἂν +ἔλθω +διατάξομαι. +δὲ +ἀδελφοί, +Περὶ +τῶν +πνευματικῶν, +οὐ +θέλω +ὑμᾶς +ἀγνοεῖν. +Οἴδατε +ὅτι +ὅτε +ἔθνη +ἦτε +πρὸς +τὰ +εἴδωλα +τὰ +ἄφωνα +ὡς +ἂν +ἤγεσθε +ἀπαγόμενοι. +διὸ +γνωρίζω +ὑμῖν +ὅτι +οὐδεὶς +ἐν +Πνεύματι +Θεοῦ +λαλῶν +λέγει +ΑΝΑΘΕΜΑ +ΙΗΣΟΥΣ, +καὶ +οὐδεὶς +δύναται +εἰπεῖν +ΚΥΡΙΟΣ +ΙΗΣΟΥΣ, +εἰ +μὴ +ἐν +Πνεύματι +Ἁγίῳ. +δὲ +Διαιρέσεις +χαρισμάτων +εἰσίν, +δὲ +τὸ +αὐτὸ +Πνεῦμα· +καὶ +διαιρέσεις +διακονιῶν +εἰσιν, +καὶ +ὁ +αὐτὸς +Κύριος· +καὶ +διαιρέσεις +ἐνεργημάτων +εἰσίν, +δὲ +ὁ +αὐτὸς +Θεός +ὁ +ἐνεργῶν +τὰ +πάντα +ἐν +πᾶσιν. +δὲ +ἑκάστῳ +δίδοται +ἡ +φανέρωσις +τοῦ +Πνεύματος +πρὸς +τὸ +συμφέρον. +γὰρ +μὲν +ᾧ +διὰ +τοῦ +Πνεύματος +δίδοται +λόγος +σοφίας, +δὲ +ἄλλῳ +λόγος +γνώσεως +κατὰ +τὸ +αὐτὸ +Πνεῦμα, +ἑτέρῳ +πίστις +ἐν +τῷ +αὐτῷ +Πνεύματι, +δὲ +ἄλλῳ +χαρίσματα +ἰαμάτων +ἐν +τῷ +ἑνὶ +Πνεύματι, +δὲ +ἄλλῳ +ἐνεργήματα +δυνάμεων, +δὲ +ἄλλῳ +προφητεία, +δὲ +ἄλλῳ +διακρίσεις +πνευμάτων, +ἑτέρῳ +γένη +γλωσσῶν, +δὲ +ἄλλῳ +ἑρμηνεία +γλωσσῶν· +δὲ +πάντα +ταῦτα +ἐνεργεῖ +τὸ +ἓν +καὶ +τὸ +αὐτὸ +Πνεῦμα, +διαιροῦν +ἰδίᾳ +ἑκάστῳ +καθὼς +βούλεται. +γὰρ +Καθάπερ +τὸ +σῶμα +ἕν +ἐστιν +καὶ +μέλη +πολλὰ +ἔχει, +δὲ +πάντα +τὰ +μέλη +τοῦ +σώματος +πολλὰ +ὄντα +ἕν +σῶμα, +ἐστιν +οὕτως +καὶ +ὁ +Χριστός· +γὰρ +καὶ +ἐν +ἑνὶ +Πνεύματι +ἡμεῖς +πάντες +εἰς +ἓν +σῶμα +ἐβαπτίσθημεν, +εἴτε +Ἰουδαῖοι +εἴτε +Ἕλληνες, +εἴτε +δοῦλοι +εἴτε +ἐλεύθεροι. +καὶ +πάντες +ἓν +Πνεῦμα +ἐποτίσθημεν. +γὰρ +καὶ +τὸ +σῶμα +ἔστιν +οὐκ +ἓν +μέλος +ἀλλὰ +πολλά. +ἐὰν +εἴπῃ +ὁ +πούς +Ὅτι +οὐκ +εἰμὶ +χείρ, +οὐκ +εἰμὶ +ἐκ +τοῦ +σώματος, +οὐ +παρὰ +τοῦτο +οὐκ +ἔστιν +ἐκ +τοῦ +σώματος. +καὶ +ἐὰν +εἴπῃ +τὸ +οὖς +Ὅτι +οὐκ +εἰμὶ +ὀφθαλμός, +οὐκ +εἰμὶ +ἐκ +τοῦ +σώματος, +οὐ +παρὰ +τοῦτο +οὐκ +ἔστιν +ἐκ +τοῦ +σώματος. +εἰ +ὅλον +τὸ +σῶμα +ὀφθαλμός, +ποῦ +ἡ +ἀκοή; +εἰ +ὅλον +ἀκοή, +ποῦ +ἡ +ὄσφρησις; +δὲ +νῦν +ὁ +Θεὸς +ἔθετο +τὰ +μέλη, +ἓν +ἕκαστον +αὐτῶν +ἐν +τῷ +σώματι +καθὼς +ἠθέλησεν. +δὲ +εἰ +ἦν +τὰ +πάντα +ἓν +μέλος, +ποῦ +τὸ +σῶμα; +δὲ +μὲν +νῦν +πολλὰ +μέλη, +δὲ +ἓν +σῶμα. +δὲ +οὐ +δύναται +ὁ +ὀφθαλμὸς +εἰπεῖν +τῇ +χειρί +Χρείαν +σου +οὐκ +ἔχω, +ἢ +πάλιν +ἡ +κεφαλὴ +τοῖς +ποσίν +Χρείαν +ὑμῶν +οὐκ +ἔχω· +ἀλλὰ +πολλῷ +μᾶλλον +τὰ +δοκοῦντα +ἀσθενέστερα +ὑπάρχειν +μέλη +τοῦ +σώματος +ἀναγκαῖά +ἐστιν, +καὶ +ἃ +εἶναι +ἀτιμότερα +τοῦ +σώματος, +δοκοῦμεν +τούτοις +τιμὴν +περισσοτέραν +περιτίθεμεν, +καὶ +τὰ +ἀσχήμονα +ἡμῶν +εὐσχημοσύνην +περισσοτέραν +ἔχει, +δὲ +τὰ +εὐσχήμονα +ἡμῶν +οὐ +χρείαν +ἔχει. +ἀλλὰ +ὁ +θεὸς +συνεκέρασεν +τὸ +σῶμα, +τῷ +ὑστερουμένῳ +δοὺς +περισσοτέραν +τιμήν, +ἵνα +μὴ +ᾖ +σχίσμα +ἐν +τῷ +σώματι, +ἀλλὰ +τὸ +αὐτὸ +ὑπὲρ +ἀλλήλων +μεριμνῶσιν +τὰ +μέλη. +καὶ +εἴτε +πάσχει +ἓν +μέλος, +συνπάσχει +πάντα +τὰ +μέλη· +εἴτε +δοξάζεται +μέλος, +συνχαίρει +πάντα +τὰ +μέλη. +δέ +ὑμεῖς +ἐστε +σῶμα +Χριστοῦ +καὶ +μέλη +ἐκ +μέρους. +Καὶ +μὲν +οὓς +ἔθετο +ὁ +Θεὸς +ἐν +τῇ +ἐκκλησίᾳ +πρῶτον +ἀποστόλους, +δεύτερον +προφήτας, +τρίτον +διδασκάλους, +ἔπειτα +δυνάμεις, +ἔπειτα +χαρίσματα +ἰαμάτων, +ἀντιλήμψεις, +κυβερνήσεις, +γένη +γλωσσῶν. +μὴ +πάντες +ἀπόστολοι; +μὴ +πάντες +προφῆται; +μὴ +πάντες +διδάσκαλοι; +μὴ +πάντες +δυνάμεις; +μὴ +πάντες +ἔχουσιν +χαρίσματα +ἰαμάτων; +μὴ +πάντες +γλώσσαις +λαλοῦσιν; +μὴ +πάντες +διερμηνεύουσιν; +δὲ +ζηλοῦτε +τὰ +χαρίσματα +τὰ +μείζονα. +Καὶ +ἔτι +καθ’ +ὑπερβολὴν +ὁδὸν +ὑμῖν +δείκνυμι. +Ἐὰν +ταῖς +γλώσσαις +τῶν +ἀνθρώπων +καὶ +τῶν +ἀγγέλων, +λαλῶ +δὲ +ἀγάπην +μὴ +ἔχω, +γέγονα +χαλκὸς +ἠχῶν +ἢ +κύμβαλον +ἀλαλάζον. +καὶ +ἐὰν +ἔχω +προφητείαν +καὶ +εἰδῶ +τὰ +μυστήρια +πάντα +καὶ +πᾶσαν +τὴν +γνῶσιν, +καὶ +ἐὰν +ἔχω +πᾶσαν +τὴν +πίστιν +ὥστε +ὄρη +μεθιστάναι, +δὲ +ἀγάπην +μὴ +ἔχω, +οὐθέν +εἰμι. +καὶ +ἐὰν +ψωμίσω +πάντα +τὰ +ὑπάρχοντά +μου, +καὶ +ἐὰν +παραδῶ +τὸ +σῶμά +μου, +ἵνα +καυθήσομαι, +δὲ +ἀγάπην +μὴ +ἔχω, +οὐδὲν +ὠφελοῦμαι. +Ἠ +ἀγάπη +μακροθυμεῖ, +χρηστεύεται +ἡ +ἀγάπη, +οὐ +ζηλοῖ, +ἡ +ἀγάπη +οὐ +περπερεύεται, +οὐ +φυσιοῦται, +οὐκ +ἀσχημονεῖ, +οὐ +ζητεῖ +τὰ +ἑαυτῆς, +οὐ +παροξύνεται, +οὐ +λογίζεται +τὸ +κακόν, +οὐ +χαίρει +ἐπὶ +τῇ +ἀδικίᾳ, +δὲ +συνχαίρει +τῇ +ἀληθείᾳ· +πάντα +στέγει, +πάντα +πιστεύει, +πάντα +ἐλπίζει, +πάντα +ὑπομένει. +Ἠ +ἀγάπη +οὐδέποτε +πίπτει· +δὲ +εἴτε +προφητεῖαι, +καταργηθήσονται· +εἴτε +γλῶσσαι, +παύσονται· +εἴτε +γνῶσις, +καταργηθήσεται. +γὰρ +ἐκ +μέρους +γινώσκομεν +καὶ +ἐκ +μέρους +προφητεύομεν· +δὲ +ὅταν +ἔλθῃ +τὸ +τέλειον, +τὸ +ἐκ +μέρους +καταργηθήσεται. +ὅτε +ἤμην +νήπιος, +ἐλάλουν +ὡς +νήπιος, +ἐφρόνουν +ὡς +νήπιος, +ἐλογιζόμην +ὡς +νήπιος· +ὅτε +γέγονα +ἀνήρ, +κατήργηκα +τὰ +τοῦ +νηπίου. +γὰρ +βλέπομεν +ἄρτι +δι’ +ἐσόπτρου +ἐν +αἰνίγματι, +δὲ +τότε +πρόσωπον +πρὸς +πρόσωπον· +ἄρτι +γινώσκω +ἐκ +μέρους, +δὲ +τότε +ἐπιγνώσομαι +καθὼς +καὶ +ἐπεγνώσθην. +δὲ +νυνὶ +μένει +πίστις, +ἐλπίς, +ἀγάπη, +τὰ +τρία +ταῦτα· +δὲ +μείζων +τούτων +ἡ +ἀγάπη. +Διώκετε +τὴν +ἀγάπην, +δὲ +ζηλοῦτε +τὰ +πνευματικά, +δὲ +ἵνα +μᾶλλον +προφητεύητε. +γὰρ +ὁ +λαλῶν +γλώσσῃ +οὐκ +ἀνθρώποις +λαλεῖ +ἀλλὰ +Θεῷ· +γὰρ +οὐδεὶς +ἀκούει, +δὲ +πνεύματι +λαλεῖ +μυστήρια· +δὲ +ὁ +προφητεύων +ἀνθρώποις +λαλεῖ +οἰκοδομὴν +καὶ +παράκλησιν +καὶ +παραμυθίαν. +ὁ +λαλῶν +γλώσσῃ +ἑαυτὸν +οἰκοδομεῖ· +δὲ +ὁ +προφητεύων +ἐκκλησίαν +οἰκοδομεῖ. +δὲ +θέλω +πάντας +ὑμᾶς +λαλεῖν +γλώσσαις, +δὲ +ἵνα +μᾶλλον +προφητεύητε· +δὲ +μείζων +ὁ +προφητεύων +ἢ +ὁ +λαλῶν +γλώσσαις, +εἰ +ἐκτὸς +μὴ +διερμηνεύῃ, +ἵνα +ἡ +ἐκκλησία +οἰκοδομὴν +λάβῃ. +δέ, +ἀδελφοί, +ἐὰν +νῦν +ἔλθω +πρὸς +ὑμᾶς +γλώσσαις +λαλῶν, +τί +ὑμᾶς +ὠφελήσω, +ἐὰν +μὴ +ὑμῖν +λαλήσω +ἢ +ἐν +ἀποκαλύψει +ἢ +ἐν +γνώσει +ἢ +ἐν +προφητείᾳ +ἢ +διδαχῇ; +ὅμως +τὰ +ἄψυχα +φωνὴν +διδόντα, +εἴτε +αὐλὸς +εἴτε +κιθάρα, +ἐὰν +διαστολὴν +τοῖς +φθόγγοις +μὴ +δῷ, +πῶς +γνωσθήσεται +τὸ +αὐλούμενον +ἢ +τὸ +κιθαριζόμενον; +γὰρ +ἐὰν +καὶ +σάλπιγξ +ἄδηλον +φωνὴν +δῷ, +τίς +παρασκευάσεται +εἰς +πόλεμον; +οὕτως +ἐὰν +καὶ +ὑμεῖς +διὰ +τῆς +γλώσσης +μὴ +εὔσημον +λόγον +δῶτε, +πῶς +γνωσθήσεται +τὸ +λαλούμενον; +γὰρ +εἰς +ἀέρα +ἔσεσθε +λαλοῦντες. +εἰ +τύχοι +τοσαῦτα +γένη +φωνῶν +εἰσιν +ἐν +κόσμῳ, +καὶ +οὐδὲν +ἄφωνον· +οὖν +ἐὰν +μὴ +εἰδῶ +τὴν +δύναμιν +τῆς +φωνῆς, +ἔσομαι +τῷ +λαλοῦντι +βάρβαρος +καὶ +ὁ +λαλῶν +ἐν +ἐμοὶ +βάρβαρος. +οὕτως +καὶ +ὑμεῖς, +ἐπεὶ +ζηλωταί +πνευμάτων, +ἐστε +πρὸς +τὴν +οἰκοδομὴν +τῆς +ἐκκλησίας +ζητεῖτε +ἵνα +περισσεύητε. +Διὸ +ὁ +λαλῶν +γλώσσῃ +προσευχέσθω +ἵνα +διερμηνεύῃ. +γὰρ +ἐὰν +προσεύχωμαι +γλώσσῃ, +τὸ +πνεῦμά +μου +προσεύχεται, +δὲ +ὁ +νοῦς +μου +ἄκαρπός +ἐστιν. +οὖν +τί +ἐστιν; +προσεύξομαι +τῷ +πνεύματι, +δὲ +προσεύξομαι +καὶ +τῷ +νοΐ· +ψαλῶ +τῷ +πνεύματι, +δὲ +ψαλῶ +καὶ +τῷ +νοΐ. +ἐπεὶ +ἐὰν +εὐλογῇς +πνεύματι, +ὁ +ἀναπληρῶν +τὸν +τόπον +τοῦ +ἰδιώτου +πῶς +ἐρεῖ +τὸ +Ἀμήν +ἐπὶ +τῇ +σῇ +εὐχαριστίᾳ; +ἐπειδὴ +τί +λέγεις +οὐκ +οἶδεν· +γὰρ +μὲν +σὺ +καλῶς +εὐχαριστεῖς, +ἀλλ’ +ὁ +ἕτερος +οὐκ +οἰκοδομεῖται. +εὐχαριστῶ +τῷ +Θεῷ, +πάντων +ὑμῶν +μᾶλλον +γλώσσαις +λαλῶ· +ἀλλὰ +ἐν +ἐκκλησίᾳ +θέλω +πέντε +λόγους +τῷ +νοΐ +μου +λαλῆσαι, +ἵνα +καὶ +ἄλλους +κατηχήσω, +ἢ +μυρίους +λόγους +ἐν +γλώσσῃ. +Ἀδελφοί, +μὴ +παιδία +γίνεσθε +ταῖς +φρεσίν, +ἀλλὰ +τῇ +κακίᾳ +νηπιάζετε, +δὲ +ταῖς +φρεσὶν +τέλειοι +γίνεσθε. +ἐν +τῷ +νόμῳ +γέγραπται +ὅτι +Ἐν +ἑτερογλώσσοις +καὶ +ἐν +χείλεσιν +ἑτέρων +λαλήσω +τῷ +λαῷ +τούτῳ, +καὶ +οὐδ’ +οὕτως +εἰσακούσονταί +μου, +λέγει +Κύριος. +ὥστε +αἱ +γλῶσσαι +εἰς +σημεῖόν +εἰσιν +οὐ +τοῖς +πιστεύουσιν +ἀλλὰ +τοῖς +ἀπίστοις, +δὲ +ἡ +προφητεία +οὐ +τοῖς +ἀπίστοις +ἀλλὰ +τοῖς +πιστεύουσιν. +οὖν +Ἐὰν +συνέλθῃ +ἡ +ἐκκλησία +ὅλη +ἐπὶ +τὸ +αὐτὸ +καὶ +πάντες +λαλῶσιν +γλώσσαις, +δὲ +εἰσέλθωσιν +ἰδιῶται +ἢ +ἄπιστοι, +οὐκ +ἐροῦσιν +ὅτι +μαίνεσθε; +δὲ +ἐὰν +πάντες +προφητεύωσιν, +δέ +εἰσέλθῃ +τις +ἄπιστος +ἢ +ἰδιώτης, +ἐλέγχεται +ὑπὸ +πάντων, +ἀνακρίνεται +ὑπὸ +πάντων, +τὰ +κρυπτὰ +τῆς +καρδίας +αὐτοῦ +φανερὰ +γίνεται, +καὶ +οὕτως +πεσὼν +ἐπὶ +πρόσωπον +προσκυνήσει +τῷ +Θεῷ, +ἀπαγγέλλων +ὅτι +Ὄντως +ὁ +Θεὸς +ἐν +ὑμῖν +ἐστιν. +οὖν +Τί +ἐστιν, +ἀδελφοί; +ὅταν +συνέρχησθε, +ἕκαστος +ψαλμὸν +ἔχει, +διδαχὴν +ἔχει, +ἀποκάλυψιν +ἔχει, +γλῶσσαν +ἔχει, +ἑρμηνείαν +ἔχει· +πάντα +πρὸς +οἰκοδομὴν +γινέσθω. +εἴτε +γλώσσῃ +τις +λαλεῖ, +κατὰ +δύο +ἢ +τὸ +πλεῖστον +τρεῖς, +καὶ +ἀνὰ +μέρος, +καὶ +εἷς +διερμηνευέτω· +δὲ +ἐὰν +μὴ +ᾖ +διερμηνευτής, +σιγάτω +ἐν +ἐκκλησίᾳ, +δὲ +λαλείτω +ἑαυτῷ +καὶ +τῷ +Θεῷ. +δὲ +προφῆται +δύο +ἢ +τρεῖς +λαλείτωσαν, +καὶ +οἱ +ἄλλοι +διακρινέτωσαν· +δὲ +ἐὰν +ἄλλῳ +καθημένῳ, +ἀποκαλυφθῇ +ὁ +πρῶτος +σιγάτω. +γὰρ +δύνασθε +καθ’ +ἕνα +πάντες +προφητεύειν, +ἵνα +πάντες +μανθάνωσιν +καὶ +πάντες +παρακαλῶνται. +καὶ +πνεύματα +προφητῶν +προφήταις +ὑποτάσσεται· +γάρ +οὐ +ἐστιν +ἀκαταστασίας +ὁ +Θεὸς +ἀλλὰ +εἰρήνης, +Ὡς +ἐν +πάσαις +ταῖς +ἐκκλησίαις +τῶν +ἁγίων, +αἱ +γυναῖκες +ἐν +ταῖς +ἐκκλησίαις +σιγάτωσαν· +γὰρ +οὐ +ἐπιτρέπεται +αὐταῖς +λαλεῖν, +ἀλλὰ +ὑποτασσέσθωσαν, +καθὼς +καὶ +ὁ +νόμος +λέγει. +δέ +εἰ +τι +μαθεῖν +θέλουσιν, +ἐν +οἴκῳ +τοὺς +ἰδίους +ἄνδρας +ἐπερωτάτωσαν· +γάρ +αἰσχρὸν +ἐστιν +γυναικὶ +λαλεῖν +ἐν +ἐκκλησίᾳ. +Ἢ +ἀφ’ +ὑμῶν +ὁ +λόγος +τοῦ +Θεοῦ +ἐξῆλθεν, +ἢ +εἰς +ὑμᾶς +μόνους +κατήντησεν; +Εἴ +τις +δοκεῖ +εἶναι +προφήτης +ἢ +πνευματικός, +ἐπιγινωσκέτω +ἃ +γράφω +ὑμῖν +ὅτι +Κυρίου +ἐντολή· +ἐστὶν +δέ +εἰ +τις +ἀγνοεῖ, +ἀγνοεῖται. +Ὥστε, +ἀδελφοί +μου, +ζηλοῦτε +τὸ +προφητεύειν, +καὶ +τὸ +λαλεῖν +γλώσσαις· +μὴ +κωλύετε +δὲ +πάντα +εὐσχημόνως +καὶ +κατὰ +τάξιν +γινέσθω. +δὲ +ἀδελφοί, +Γνωρίζω +ὑμῖν, +τὸ +εὐαγγέλιον +ὃ +εὐηγγελισάμην +ὑμῖν, +ὃ +καὶ +παρελάβετε, +ἐν +ᾧ +καὶ +ἑστήκατε, +δι’ +οὗ +καὶ +σῴζεσθε, +τίνι +λόγῳ +εὐηγγελισάμην +ὑμῖν, +εἰ +κατέχετε, +ἐκτὸς +εἰ +μὴ +εἰκῇ +ἐπιστεύσατε. +γὰρ +παρέδωκα +ὑμῖν +ἐν +πρώτοις, +ὃ +καὶ +παρέλαβον, +ὅτι +Χριστὸς +ἀπέθανεν +ὑπὲρ +τῶν +ἁμαρτιῶν +ἡμῶν +κατὰ +τὰς +γραφάς, +καὶ +ὅτι +ἐτάφη, +καὶ +ὅτι +ἐγήγερται +τῇ +ἡμέρᾳ +τῇ +τρίτῃ +κατὰ +τὰς +γραφάς, +καὶ +ὅτι +ὤφθη +Κηφᾷ, +εἶτα +τοῖς +δώδεκα· +ἔπειτα +ὤφθη +ἐπάνω +πεντακοσίοις +ἀδελφοῖς +ἐφάπαξ, +ἐξ +ὧν +οἱ +πλείονες +μένουσιν +ἕως +ἄρτι, +δὲ +τινὲς +ἐκοιμήθησαν· +ἔπειτα +ὤφθη +Ἰακώβῳ, +εἶτα +τοῖς +ἀποστόλοις +πᾶσιν· +δὲ +ἔσχατον +πάντων +ὤφθη +κἀμοί. +ὡσπερεὶ +τῷ +ἐκτρώματι +γάρ +Ἐγὼ +εἰμι +ὁ +ἐλάχιστος +τῶν +ἀποστόλων, +ὃς +οὐκ +εἰμὶ +ἱκανὸς +καλεῖσθαι +ἀπόστολος, +διότι +ἐδίωξα +τὴν +ἐκκλησίαν +τοῦ +Θεοῦ· +δὲ +χάριτι +Θεοῦ +εἰμι +ὅ +εἰμι, +καὶ +ἡ +χάρις +αὐτοῦ +ἡ +εἰς +ἐμὲ +οὐ +κενὴ +ἐγενήθη, +ἀλλὰ +περισσότερον +αὐτῶν +πάντων +ἐκοπίασα, +δὲ +οὐκ +ἐγὼ +ἀλλὰ +ἡ +χάρις +τοῦ +Θεοῦ +σὺν +ἐμοί. +οὖν +εἴτε +ἐγὼ +εἴτε +ἐκεῖνοι, +οὕτως +κηρύσσομεν +καὶ +οὕτως +ἐπιστεύσατε. +δὲ +Εἰ +Χριστὸς +κηρύσσεται +ὅτι +ἐκ +νεκρῶν +ἐγήγερται, +πῶς +λέγουσιν +ἐν +ὑμῖν +τινες +ὅτι +ἀνάστασις +νεκρῶν +οὐκ +ἔστιν; +δὲ +εἰ +ἀνάστασις +νεκρῶν +οὐκ +ἔστιν, +οὐδὲ +Χριστὸς +ἐγήγερται· +δὲ +εἰ +Χριστὸς +οὐκ +ἐγήγερται, +ἄρα +κενὸν +τὸ +κήρυγμα +ἡμῶν, +κενὴ +καὶ +ἡ +πίστις +ὑμῶν· +δὲ +εὑρισκόμεθα +καὶ +ψευδομάρτυρες +τοῦ +Θεοῦ, +ὅτι +ἐμαρτυρήσαμεν +κατὰ +τοῦ +Θεοῦ +ὅτι +ἤγειρεν +τὸν +Χριστόν, +ὃν +οὐκ +ἤγειρεν +εἴπερ +ἄρα +νεκροὶ +οὐκ +ἐγείρονται. +γὰρ +εἰ +νεκροὶ +οὐκ +ἐγείρονται, +οὐδὲ +Χριστὸς +ἐγήγερται· +δὲ +εἰ +Χριστὸς +οὐκ +ἐγήγερται, +ματαία +ἡ +πίστις +ὑμῶν, +ἔτι +ἐστὲ +ἐν +ταῖς +ἁμαρτίαις +ὑμῶν. +ἄρα +καὶ +οἱ +κοιμηθέντες +ἐν +Χριστῷ +ἀπώλοντο. +εἰ +ἐν +τῇ +ζωῇ +ταύτῃ +ἐν +Χριστῷ +ἠλπικότες +ἐσμὲν +μόνον, +ἐλεεινότεροι +πάντων +ἀνθρώπων +ἐσμέν. +δὲ +Νυνὶ +ἐγήγερται +ἐκ +νεκρῶν, +Χριστὸς +ἀπαρχὴ +τῶν +κεκοιμημένων. +γὰρ +ἐπειδὴ +δι’ +ἀνθρώπου +θάνατος, +καὶ +δι’ +ἀνθρώπου +ἀνάστασις +νεκρῶν. +γὰρ +ὥσπερ +ἐν +τῷ +Ἀδὰμ +πάντες +ἀποθνήσκουσιν, +οὕτως +καὶ +ἐν +τῷ +Χριστῷ +πάντες +ζωοποιηθήσονται. +δὲ +Ἕκαστος +ἐν +τῷ +ἰδίῳ +τάγματι· +ἀπαρχὴ +Χριστός, +ἔπειτα +οἱ +τοῦ +Χριστοῦ +ἐν +τῇ +παρουσίᾳ +αὐτοῦ, +εἶτα +τὸ +τέλος, +ὅταν +παραδιδοῖ +τὴν +βασιλείαν +τῷ +Θεῷ +καὶ +Πατρί, +ὅταν +καταργήσῃ +πᾶσαν +ἀρχὴν +καὶ +πᾶσαν +ἐξουσίαν +καὶ +δύναμιν, +γὰρ +δεῖ +αὐτὸν +βασιλεύειν +ἄχρι +οὗ +θῇ +πάντας +τοὺς +ἐχθροὺς +ὑπὸ +τοὺς +πόδας +αὐτοῦ. +ἔσχατος +ἐχθρὸς +ὁ +θάνατος· +καταργεῖται +γὰρ +πάντα +ὑπέταξεν +ὑπὸ +τοὺς +πόδας +αὐτοῦ. +δὲ +ὅταν +εἴπῃ +ὅτι +πάντα +ὑποτέτακται, +δῆλον +ὅτι +ἐκτὸς +τοῦ +ὑποτάξαντος +αὐτῷ +τὰ +πάντα. +δὲ +ὅταν +ὑποταγῇ +αὐτῷ +τὰ +πάντα, +τότε +καὶ +αὐτὸς +ὁ +Υἱὸς +ὑποταγήσεται +τῷ +ὑποτάξαντι +αὐτῷ +τὰ +πάντα, +ἵνα +ᾖ +ὁ +Θεὸς +πάντα +ἐν +πᾶσιν. +Ἐπεὶ +τί +ποιήσουσιν +οἱ +βαπτιζόμενοι +ὑπὲρ +τῶν +νεκρῶν; +εἰ +ὅλως +νεκροὶ +οὐκ +ἐγείρονται, +τί +καὶ +βαπτίζονται +ὑπὲρ +αὐτῶν; +τί +καὶ +ἡμεῖς +κινδυνεύομεν +πᾶσαν +ὥραν; +ἀδελφοί, +καθ’ +ἡμέραν +ἀποθνῄσκω, +νὴ +τὴν +ὑμετέραν +καύχησιν, +ἣν +ἔχω +ἐν +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν. +εἰ +κατὰ +ἄνθρωπον +ἐθηριομάχησα +ἐν +Ἐφέσῳ, +τί +μοι +τὸ +ὄφελος; +εἰ +νεκροὶ +οὐκ +ἐγείρονται, +φάγωμεν +καὶ +πίωμεν, +γὰρ +αὔριον +ἀποθνήσκομεν. +μὴ +πλανᾶσθε· +φθείρουσιν +ἤθη +χρηστὰ +ὁμιλίαι +κακαί. +ἐκνήψατε +δικαίως +καὶ +μὴ +ἁμαρτάνετε· +γὰρ +ἀγνωσίαν +Θεοῦ +τινες +ἔχουσιν· +πρὸς +ἐντροπὴν +ὑμῖν +λαλῶ. +Ἀλλὰ +ἐρεῖ +τις +Πῶς +ἐγείρονται +οἱ +νεκροί; +δὲ +ποίῳ +σώματι +ἔρχονται; +ἄφρων, +ὃ +σὺ +σπείρεις, +οὐ +ζωοποιεῖται +ἐὰν +μὴ +ἀποθάνῃ· +καὶ +ὃ +σπείρεις, +οὐ +τὸ +σῶμα +τὸ +γενησόμενον +σπείρεις, +ἀλλὰ +γυμνὸν +κόκκον +εἰ +τύχοι +σίτου +ἤ +τινος +τῶν +λοιπῶν· +δὲ +ὁ +Θεὸς +δίδωσιν +αὐτῷ +σῶμα +καθὼς +ἠθέλησεν, +καὶ +ἑκάστῳ +τῶν +σπερμάτων +ἴδιον +σῶμα. +οὐ +πᾶσα +σὰρξ +ἡ +αὐτὴ +σάρξ, +ἀλλὰ +μὲν +ἄλλη +ἀνθρώπων, +δὲ +ἄλλη +σὰρξ +κτηνῶν, +δὲ +ἄλλη +σὰρξ +πτηνῶν, +δὲ +ἄλλη +ἰχθύων. +καὶ +σώματα +ἐπουράνια, +καὶ +σώματα +ἐπίγεια· +ἀλλὰ +μὲν +ἑτέρα +ἡ +τῶν +ἐπουρανίων +δόξα, +δὲ +ἑτέρα +ἡ +τῶν +ἐπιγείων. +ἄλλη +δόξα +ἡλίου, +καὶ +ἄλλη +δόξα +σελήνης, +καὶ +ἄλλη +δόξα +ἀστέρων· +γὰρ +ἀστὴρ +ἀστέρος +διαφέρει +ἐν +δόξῃ. +οὕτως +καὶ +ἡ +ἀνάστασις +τῶν +νεκρῶν. +σπείρεται +ἐν +φθορᾷ, +ἐγείρεται +ἐν +ἀφθαρσίᾳ· +σπείρεται +ἐν +ἀτιμίᾳ, +ἐγείρεται +ἐν +δόξῃ· +σπείρεται +ἐν +ἀσθενείᾳ, +ἐγείρεται +ἐν +δυνάμει· +σπείρεται +σῶμα +ψυχικόν, +ἐγείρεται +σῶμα +πνευματικόν. +Εἰ +ἔστιν +σῶμα +ψυχικόν, +ἔστιν +καὶ +πνευματικόν. +οὕτως +καὶ +γέγραπται +Ἐγένετο +ὁ +πρῶτος +ἄνθρωπος +Ἀδὰμ +εἰς +ψυχὴν +ζῶσαν· +ὁ +ἔσχατος +Ἀδὰμ +εἰς +πνεῦμα +ζωοποιοῦν. +ἀλλ’ +οὐ +πρῶτον +τὸ +πνευματικὸν +ἀλλὰ +τὸ +ψυχικόν, +ἔπειτα +τὸ +πνευματικόν. +ὁ +πρῶτος +ἄνθρωπος +ἐκ +γῆς +χοϊκός, +ὁ +δεύτερος +ἄνθρωπος +ἐξ +οὐρανοῦ. +οἷος +ὁ +χοϊκός, +τοιοῦτοι +καὶ +οἱ +χοϊκοί, +καὶ +οἷος +ὁ +ἐπουράνιος, +τοιοῦτοι +καὶ +οἱ +ἐπουράνιοι· +καὶ +καθὼς +ἐφορέσαμεν +τὴν +εἰκόνα +τοῦ +χοϊκοῦ, +φορέσωμεν +καὶ +τὴν +εἰκόνα +τοῦ +ἐπουρανίου. +δέ +Τοῦτο +φημι, +ἀδελφοί, +ὅτι +σὰρξ +καὶ +αἷμα +βασιλείαν +Θεοῦ +κληρονομῆσαι +οὐ +δύναται, +οὐδὲ +ἡ +φθορὰ +τὴν +ἀφθαρσίαν +κληρονομεῖ. +ἰδοὺ +μυστήριον +ὑμῖν +λέγω· +πάντες +οὐ +κοιμηθησόμεθα, +δὲ +πάντες +ἀλλαγησόμεθα, +ἐν +ἀτόμῳ, +ἐν +ῥιπῇ +ὀφθαλμοῦ, +ἐν +τῇ +ἐσχάτῃ +σάλπιγγι· +γάρ, +σαλπίσει +καὶ +οἱ +νεκροὶ +ἐγερθήσονται +ἄφθαρτοι, +καὶ +ἡμεῖς +ἀλλαγησόμεθα. +γὰρ +δεῖ +τὸ +φθαρτὸν +τοῦτο +ἐνδύσασθαι +ἀφθαρσίαν +καὶ +τὸ +θνητὸν +τοῦτο +ἐνδύσασθαι +ἀθανασίαν. +δὲ +ὅταν +τὸ +φθαρτὸν +τοῦτο +ἐνδύσηται +ἀφθαρσίαν +καὶ +τὸ +θνητὸν +τοῦτο +ἐνδύσηται +ἀθανασίαν, +τότε +γενήσεται +ὁ +λόγος +ὁ +γεγραμμένος +Κατεπόθη +ὁ +θάνατος +εἰς +νῖκος. +θάνατε, +ποῦ +σου, +τὸ +νῖκος; +θάνατε, +ποῦ +σου, +τὸ +κέντρον; +δὲ +τὸ +κέντρον +τοῦ +θανάτου +ἡ +ἁμαρτία, +δὲ +ἡ +δύναμις +τῆς +ἁμαρτίας +ὁ +νόμος· +δὲ +χάρις +τῷ +Θεῷ +τῷ +διδόντι +ἡμῖν +τὸ +νῖκος +διὰ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ. +Ὥστε, +ἀδελφοί +μου +ἀγαπητοί, +γίνεσθε, +ἑδραῖοι +ἀμετακίνητοι, +περισσεύοντες +ἐν +τῷ +ἔργῳ +τοῦ +Κυρίου +πάντοτε, +εἰδότες +ὅτι +ὁ +κόπος +ὑμῶν +οὐκ +ἔστιν +κενὸς +ἐν +Κυρίῳ. +δὲ +Περὶ +τῆς +λογίας +τῆς +εἰς +τοὺς +ἁγίους, +ὥσπερ +διέταξα +ταῖς +ἐκκλησίαις +τῆς +Γαλατίας, +οὕτως +καὶ +ὑμεῖς +ποιήσατε. +κατὰ +μίαν +σαββάτου +ἕκαστος +ὑμῶν +παρ’ +ἑαυτῷ +τιθέτω +θησαυρίζων +τι +ἐὰν +ὅ +εὐοδῶται, +ἵνα +μὴ +ὅταν +ἔλθω +τότε +λογίαι +γίνωνται. +δὲ +ὅταν +παραγένωμαι, +ἐὰν +οὓς +δοκιμάσητε, +δι’ +ἐπιστολῶν +τούτους +πέμψω +ἀπενεγκεῖν +τὴν +χάριν +ὑμῶν +εἰς +Ἰερουσαλήμ· +δὲ +ἐὰν +ἄξιον +ᾖ +τοῦ +κἀμὲ +πορεύεσθαι, +σὺν +ἐμοὶ +πορεύσονται. +δὲ +Ἐλεύσομαι +πρὸς +ὑμᾶς +ὅταν +Μακεδονίαν +διέλθω· +γὰρ +Μακεδονίαν +διέρχομαι, +δὲ +πρὸς +ὑμᾶς +τυχὸν +καταμενῶ +ἢ +καὶ +παραχειμάσω, +ἵνα +ὑμεῖς +με +προπέμψητε +ἐὰν +οὗ +πορεύωμαι. +γὰρ +οὐ +θέλω +ὑμᾶς +ἄρτι +ἐν +παρόδῳ +ἰδεῖν· +γὰρ +ἐλπίζω +χρόνον +τινὰ +ἐπιμεῖναι +πρὸς +ὑμᾶς, +ἐὰν +ὁ +Κύριος +ἐπιτρέψῃ. +δὲ +ἐπιμενῶ +ἐν +Ἐφέσῳ +ἕως +τῆς +Πεντηκοστῆς· +γάρ +μοι +ἀνέῳγεν +θύρα +μεγάλη +καὶ +ἐνεργής, +καὶ +ἀντικείμενοι +πολλοί. +δὲ +Ἐὰν +ἔλθῃ +Τιμόθεος, +βλέπετε +ἵνα +ἀφόβως +γένηται +πρὸς +ὑμᾶς· +γὰρ +τὸ +ἔργον +Κυρίου +ἐργάζεται +ὡς +κἀγώ· +οὖν +μή +τις +αὐτὸν +ἐξουθενήσῃ. +δὲ +προπέμψατε +αὐτὸν +ἐν +εἰρήνῃ, +ἵνα +ἔλθῃ +πρός +με· +γὰρ +ἐκδέχομαι +αὐτὸν +μετὰ +τῶν +ἀδελφῶν. +δὲ +Περὶ +Ἀπολλῶ +τοῦ +ἀδελφοῦ, +πολλὰ +παρεκάλεσα +αὐτὸν +ἵνα +ἔλθῃ +πρὸς +ὑμᾶς +μετὰ +τῶν +ἀδελφῶν· +καὶ +πάντως +οὐκ +ἦν +θέλημα +ἵνα +νῦν +ἔλθῃ, +δὲ +ἐλεύσεται +ὅταν +εὐκαιρήσῃ. +Γρηγορεῖτε, +στήκετε +ἐν +τῇ +πίστει, +ἀνδρίζεσθε, +κραταιοῦσθε. +πάντα +ὑμῶν +ἐν +ἀγάπῃ +γινέσθω. +δὲ +Παρακαλῶ +ὑμᾶς, +ἀδελφοί· +οἴδατε +τὴν +οἰκίαν +Στεφανᾶ, +ὅτι +ἐστὶν +ἀπαρχὴ +τῆς +Ἀχαΐας +καὶ +εἰς +διακονίαν +τοῖς +ἁγίοις +ἔταξαν +ἑαυτούς· +ἵνα +καὶ +ὑμεῖς +ὑποτάσσησθε +τοῖς +τοιούτοις +καὶ +παντὶ +τῷ +συνεργοῦντι +καὶ +κοπιῶντι. +δὲ +χαίρω +ἐπὶ +τῇ +παρουσίᾳ +Στεφανᾶ +καὶ +Φορτουνάτου +καὶ +Ἀχαϊκοῦ, +ὅτι +τὸ +ὑμέτερον +ὑστέρημα +οὗτοι +ἀνεπλήρωσαν· +γὰρ +ἀνέπαυσαν +τὸ +ἐμὸν +πνεῦμα +καὶ +τὸ +ὑμῶν. +οὖν +ἐπιγινώσκετε +τοὺς +τοιούτους. +Ἀσπάζονται +ὑμᾶς +αἱ +ἐκκλησίαι +τῆς +Ἀσίας. +ἀσπάζεται +ὑμᾶς +ἐν +Κυρίῳ +πολλὰ +Ἀκύλας +καὶ +Πρίσκα +σὺν +τῇ +κατ’ +οἶκον +αὐτῶν +ἐκκλησίᾳ. +ἀσπάζονται +ὑμᾶς +οἱ +ἀδελφοὶ +πάντες. +Ἀσπάσασθε +ἀλλήλους +ἐν +φιλήματι +ἁγίῳ. +Ὁ +ἀσπασμὸς +τῇ +ἐμῇ +χειρὶ +Παύλου. +εἴ +τις +οὐ +φιλεῖ +τὸν +Κύριον, +ἤτω +ἀνάθεμα. +μαρὰν +ἀθά. +ἡ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +μεθ’ +ὑμῶν. +ἡ +ἀγάπη +μου +μετὰ +πάντων +ὑμῶν +ἐν +Χριστῷ +Ἰησοῦ. +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διὰ +θελήματος +Θεοῦ +καὶ +Τιμόθεος +ὁ +ἀδελφὸς +τῇ +ἐκκλησίᾳ +τοῦ +Θεοῦ +τῇ +οὔσῃ +ἐν +Κορίνθῳ +σὺν +τοῖς +ἁγίοις +πᾶσιν +τοῖς +οὖσιν +ἐν +ὅλῃ +τῇ +Ἀχαΐᾳ· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +Εὐλογητὸς +ὁ +Θεὸς +καὶ +Πατὴρ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ὁ +Πατὴρ +τῶν +οἰκτιρμῶν +καὶ +Θεὸς +πάσης +παρακλήσεως, +ὁ +παρακαλῶν +ἡμᾶς +ἐπὶ +πάσῃ +τῇ +θλίψει +ἡμῶν, +εἰς +τὸ +δύνασθαι +ἡμᾶς +παρακαλεῖν +τοὺς +ἐν +πάσῃ +θλίψει +διὰ +τῆς +παρακλήσεως +ἧς +παρακαλούμεθα +αὐτοὶ +ὑπὸ +τοῦ +Θεοῦ. +ὅτι +καθὼς +περισσεύει +τὰ +παθήματα +τοῦ +Χριστοῦ +εἰς +ἡμᾶς, +οὕτως +διὰ +τοῦ +Χριστοῦ +περισσεύει +καὶ +ἡ +παράκλησις +ἡμῶν. +δὲ +εἴτε +θλιβόμεθα, +ὑπὲρ +τῆς +ὑμῶν +παρακλήσεως +καὶ +σωτηρίας· +εἴτε +παρακαλούμεθα, +ὑπὲρ +τῆς +ὑμῶν +παρακλήσεως +τῆς +ἐνεργουμένης +ἐν +ὑπομονῇ +τῶν +αὐτῶν +παθημάτων +ὧν +καὶ +ἡμεῖς +πάσχομεν. +καὶ +ἡ +ἐλπὶς +ἡμῶν +βεβαία +ὑπὲρ +ὑμῶν, +εἰδότες +ὅτι +ὡς +ἐστε +κοινωνοί +τῶν +παθημάτων, +οὕτως +καὶ +τῆς +παρακλήσεως. +γὰρ +ἀδελφοί, +Οὐ +θέλομεν +ὑμᾶς +ἀγνοεῖν, +ὑπὲρ +τῆς +θλίψεως +ἡμῶν +τῆς +γενομένης +ἐν +τῇ +Ἀσίᾳ, +ὅτι +καθ’ +ὑπερβολὴν +ὑπὲρ +δύναμιν +ἐβαρήθημεν, +ὥστε +ἐξαπορηθῆναι +ἡμᾶς +καὶ +τοῦ +ζῆν· +ἀλλὰ +αὐτοὶ +ἐν +ἑαυτοῖς +τὸ +ἀπόκριμα +τοῦ +θανάτου +ἐσχήκαμεν, +ἵνα +μὴ +πεποιθότες +ὦμεν +ἐφ’ +ἑαυτοῖς +ἀλλ’ +ἐπὶ +τῷ +Θεῷ +τῷ +ἐγείροντι +τοὺς +νεκρούς· +ὃς +ἐκ +τηλικούτου +θανάτου +ἐρρύσατο +ἡμᾶς +καὶ +ῥύσεται, +εἰς +ὃν +ἠλπίκαμεν +ὅτι +καὶ +ἔτι +ῥύσεται, +συνυπουργούντων +καὶ +ὑμῶν +ὑπὲρ +ἡμῶν +τῇ +δεήσει, +ἵνα +ἐκ +πολλῶν +προσώπων +τὸ +εἰς +ἡμᾶς +χάρισμα +διὰ +πολλῶν +εὐχαριστηθῇ +ὑπὲρ +ἡμῶν. +γὰρ +Ἠ +καύχησις +ἡμῶν +αὕτη +ἐστίν, +τὸ +μαρτύριον +τῆς +συνειδήσεως +ἡμῶν, +ὅτι +ἐν +ἁγιότητι +καὶ +εἰλικρινίᾳ +τοῦ +Θεοῦ, +οὐκ +ἐν +σοφίᾳ +σαρκικῇ +ἀλλ’ +ἐν +χάριτι +Θεοῦ, +ἀνεστράφημεν +ἐν +τῷ +κόσμῳ, +δὲ +περισσοτέρως +πρὸς +ὑμᾶς. +γὰρ +γράφομεν +ὑμῖν +οὐ +ἄλλα +ἀλλ’ +ἢ +ἃ +ἀναγινώσκετε +ἢ +καὶ +ἐπιγινώσκετε, +δὲ +ἐλπίζω +ὅτι +ἕως +τέλους +ἐπιγνώσεσθε, +καθὼς +καὶ +ἐπέγνωτε +ἡμᾶς +ἀπὸ +μέρους, +ὅτι +καύχημα +ὑμῶν +ἐσμεν +καθάπερ +καὶ +ὑμεῖς +ἡμῶν +ἐν +τῇ +ἡμέρᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ. +Καὶ +ταύτῃ +τῇ +πεποιθήσει +ἐβουλόμην +πρότερον +πρὸς +ὑμᾶς +ἐλθεῖν +ἵνα +δευτέραν +χάριν +σχῆτε, +καὶ +δι’ +ὑμῶν +διελθεῖν +εἰς +Μακεδονίαν, +καὶ +πάλιν +ἀπὸ +Μακεδονίας +ἐλθεῖν +πρὸς +ὑμᾶς +καὶ +ὑφ’ +ὑμῶν +προπεμφθῆναι +εἰς +τὴν +Ἰουδαίαν. +οὖν +τοῦτο +βουλόμενος +ἄρα +μήτι +τῇ +ἐλαφρίᾳ +ἐχρησάμην; +ἢ +ἃ +βουλεύομαι +κατὰ +σάρκα +βουλεύομαι, +ἵνα +ᾖ +παρ’ +ἐμοὶ +τό +Ναί +ναὶ +καὶ +τὸ +Οὔ +οὔ; +δὲ +πιστὸς +ὁ +Θεὸς +ὅτι +ὁ +λόγος +ἡμῶν +ὁ +πρὸς +ὑμᾶς +οὐκ +ἔστιν +Ναί +καὶ +Οὔ. +γὰρ +ὁ +τοῦ +Θεοῦ +Υἱὸς +Χριστὸς +Ἰησοῦς +ὁ +ἐν +ὑμῖν +δι’ +ἡμῶν +κηρυχθείς, +δι’ +ἐμοῦ +καὶ +Σιλουανοῦ +καὶ +Τιμοθέου, +οὐκ +ἐγένετο +Ναί +καὶ +Οὔ, +ἀλλὰ +Ναί +ἐν +αὐτῷ +γέγονεν. +γὰρ +ὅσαι +ἐπαγγελίαι +Θεοῦ, +ἐν +αὐτῷ +τὸ +Ναί· +διὸ +καὶ +δι’ +αὐτοῦ +τὸ +Ἀμὴν +τῷ +Θεῷ +πρὸς +δόξαν +δι’ +ἡμῶν. +δὲ +ὁ +βεβαιῶν +ἡμᾶς +σὺν +ὑμῖν +εἰς +Χριστὸν +καὶ +χρίσας +ἡμᾶς +Θεός, +ὁ +καὶ +σφραγισάμενος +ἡμᾶς +καὶ +δοὺς +τὸν +ἀρραβῶνα +τοῦ +Πνεύματος +ἐν +ταῖς +καρδίαις +ἡμῶν. +δὲ +Ἐγὼ +μάρτυρα +τὸν +Θεὸν +ἐπικαλοῦμαι +ἐπὶ +τὴν +ἐμὴν +ψυχήν, +ὅτι +φειδόμενος +ὑμῶν +οὐκέτι +ἦλθον +εἰς +Κόρινθον. +ὅτι +οὐχ +κυριεύομεν +ὑμῶν +τῆς +πίστεως, +ἀλλὰ +συνεργοί +ἐσμεν +τῆς +χαρᾶς +ὑμῶν· +γὰρ +τῇ +πίστει +ἑστήκατε. +δὲ +ἔκρινα +ἐμαυτῷ +τοῦτο, +τὸ +μὴ +πάλιν +ἐν +λύπῃ +πρὸς +ὑμᾶς +ἐλθεῖν. +γὰρ +εἰ +ἐγὼ +λυπῶ +ὑμᾶς, +καὶ +τίς +ὁ +εὐφραίνων +με +εἰ +μὴ +ὁ +λυπούμενος +ἐξ +ἐμοῦ; +καὶ +ἔγραψα +τοῦτο +αὐτὸ +ἵνα +μὴ +ἐλθὼν +λύπην +σχῶ +ἀφ’ +ὧν +με +χαίρειν, +ἔδει +πεποιθὼς +ἐπὶ +πάντας +ὑμᾶς +ὅτι +ἡ +ἐμὴ +χαρὰ +πάντων +ὑμῶν +ἐστιν. +γὰρ +ἐκ +πολλῆς +θλίψεως +καὶ +συνοχῆς +καρδίας +ἔγραψα +ὑμῖν +διὰ +πολλῶν +δακρύων, +οὐχ +ἵνα +λυπηθῆτε, +ἀλλὰ +ἵνα +γνῶτε +τὴν +ἀγάπην +ἣν +ἔχω +περισσοτέρως +εἰς +ὑμᾶς. +δέ +Εἰ +τις +λελύπηκεν, +οὐκ +ἐμὲ +λελύπηκεν, +ἀλλὰ +ἀπὸ +μέρους, +πάντας +ὑμᾶς. +ἵνα +μὴ +ἐπιβαρῶ, +ἱκανὸν +τῷ +τοιούτῳ +ἡ +ἐπιτιμία +αὕτη +ἡ +ὑπὸ +τῶν +πλειόνων, +ὥστε +τοὐναντίον +μᾶλλον +ὑμᾶς +χαρίσασθαι +καὶ +παρακαλέσαι, +μή +πως +τῇ +περισσοτέρᾳ +λύπῃ +καταποθῇ +ὁ +τοιοῦτος. +διὸ +παρακαλῶ +ὑμᾶς +κυρῶσαι +εἰς +αὐτὸν +ἀγάπην· +γὰρ +εἰς +τοῦτο +καὶ +ἔγραψα, +ἵνα +γνῶ +τὴν +δοκιμὴν +ὑμῶν, +εἰ +εἰς +πάντα +ὑπήκοοί +ἐστε. +δέ +ᾧ +τι +χαρίζεσθε, +κἀγώ· +γὰρ +καὶ +ἐγὼ +ὃ +κεχάρισμαι, +εἴ +τι +κεχάρισμαι, +δι’ +ὑμᾶς +ἐν +προσώπῳ +Χριστοῦ, +ἵνα +μὴ +πλεονεκτηθῶμεν +ὑπὸ +τοῦ +Σατανᾶ· +γὰρ +οὐ +αὐτοῦ +τὰ +νοήματα +ἀγνοοῦμεν. +δὲ +Ἐλθὼν +εἰς +τὴν +Τρῳάδα +εἰς +τὸ +εὐαγγέλιον +τοῦ +Χριστοῦ, +καὶ +θύρας +μοι +ἀνεῳγμένης +ἐν +Κυρίῳ, +οὐκ +ἔσχηκα +ἄνεσιν +τῷ +πνεύματί +μου +τῷ +μὴ +εὑρεῖν +με +Τίτον +τὸν +ἀδελφόν +μου, +ἀλλὰ +ἀποταξάμενος +αὐτοῖς +ἐξῆλθον +εἰς +Μακεδονίαν. +δὲ +χάρις +Τῷ +Θεῷ +τῷ +πάντοτε +θριαμβεύοντι +ἡμᾶς +ἐν +τῷ +Χριστῷ +καὶ +τὴν +ὀσμὴν +τῆς +γνώσεως +αὐτοῦ +φανεροῦντι +δι’ +ἡμῶν +ἐν +παντὶ +τόπῳ· +ὅτι +Χριστοῦ +εὐωδία +ἐσμὲν +τῷ +Θεῷ +ἐν +τοῖς +σωζομένοις +καὶ +ἐν +τοῖς +ἀπολλυμένοις, +μὲν +οἷς +ὀσμὴ +ἐκ +θανάτου +εἰς +θάνατον, +δὲ +οἷς +ὀσμὴ +ἐκ +ζωῆς +εἰς +ζωήν. +καὶ +πρὸς +ταῦτα +τίς +ἱκανός; +γάρ +οὐ +ἐσμεν +καπηλεύοντες +τὸν +λόγον +τοῦ +Θεοῦ, +ὡς +οἱ +πολλοὶ +ἀλλ’ +ὡς +ἐξ +εἰλικρινίας, +ἀλλ’ +ὡς +ἐκ +Θεοῦ +κατέναντι +Θεοῦ +ἐν +Χριστῷ +λαλοῦμεν. +Ἀρχόμεθα +πάλιν +ἑαυτοὺς +συνιστάνειν; +ἢ +μὴ +χρῄζομεν +ὥς +τινες +συστατικῶν +ἐπιστολῶν +πρὸς +ὑμᾶς +ἢ +ἐξ +ὑμῶν; +ἡ +ἐπιστολὴ +ἡμῶν +ὑμεῖς +ἐστε, +ἐνγεγραμμένη +ἐν +ταῖς +καρδίαις +ἡμῶν, +γινωσκομένη +καὶ +ἀναγινωσκομένη +ὑπὸ +πάντων +ἀνθρώπων, +φανερούμενοι +ὅτι +ἐστὲ +ἐπιστολὴ +Χριστοῦ +διακονηθεῖσα +ὑφ’ +ἡμῶν, +ἐνγεγραμμένη +οὐ +μέλανι +ἀλλὰ +Πνεύματι +Θεοῦ +ζῶντος, +οὐκ +ἐν +πλαξὶν +λιθίναις +ἀλλ’ +ἐν +πλαξὶν +καρδίαις +σαρκίναις. +δὲ +Πεποίθησιν +τοιαύτην +ἔχομεν +διὰ +τοῦ +Χριστοῦ +πρὸς +τὸν +Θεόν. +οὐχ +ὅτι +ἀφ’ +ἑαυτῶν +ἱκανοί +ἐσμεν +λογίσασθαί +τι +ὡς +ἐξ +ἑαυτῶν, +ἀλλ’ +ἡ +ἱκανότης +ἡμῶν +ἐκ +τοῦ +Θεοῦ, +ὃς +καὶ +ἱκάνωσεν +ἡμᾶς +διακόνους +καινῆς +διαθήκης, +οὐ +γράμματος +ἀλλὰ +πνεύματος· +γὰρ +τὸ +γράμμα +ἀποκτείνει, +δὲ +τὸ +πνεῦμα +ζωοποιεῖ. +δὲ +Εἰ +ἡ +διακονία +τοῦ +θανάτου +ἐν +γράμμασιν +ἐντετυπωμένη +λίθοις +ἐγενήθη +ἐν +δόξῃ, +ὥστε +μὴ +δύνασθαι +τοὺς +υἱοὺς +Ἰσραὴλ +ἀτενίσαι +εἰς +τὸ +πρόσωπον +Μωϋσέως +διὰ +τὴν +δόξαν +τοῦ +προσώπου +αὐτοῦ +τὴν +καταργουμένην, +πῶς +οὐχὶ +μᾶλλον +ἡ +διακονία +τοῦ +πνεύματος +ἔσται +ἐν +δόξῃ; +γὰρ +εἰ +ἡ +διακονία +τῆς +κατακρίσεως +δόξα, +πολλῷ +μᾶλλον +περισσεύει +ἡ +διακονία +τῆς +δικαιοσύνης +δόξῃ. +γὰρ +καὶ +οὐ +δεδόξασται +τὸ +δεδοξασμένον +ἐν +τούτῳ +τῷ +μέρει +εἵνεκεν +τῆς +ὑπερβαλλούσης +δόξης. +γὰρ +εἰ +τὸ +καταργούμενον +διὰ +δόξης, +πολλῷ +μᾶλλον +τὸ +μένον +ἐν +δόξῃ. +οὖν +Ἔχοντες +τοιαύτην +ἐλπίδα +πολλῇ +παρρησίᾳ +χρώμεθα, +καὶ +οὐ +καθάπερ +Μωϋσῆς +ἐτίθει +κάλυμμα +ἐπὶ +τὸ +πρόσωπον +αὐτοῦ, +πρὸς +τὸ +μὴ +ἀτενίσαι +τοὺς +υἱοὺς +Ἰσραὴλ +εἰς +τὸ +τέλος +τοῦ +καταργουμένου. +ἀλλὰ +ἐπωρώθη +τὰ +νοήματα +αὐτῶν. +γὰρ +ἄχρι +τῆς +σήμερον +ἡμέρας +τὸ +αὐτὸ +κάλυμμα +ἐπὶ +τῇ +ἀναγνώσει +τῆς +παλαιᾶς +διαθήκης +μένει, +μὴ +ἀνακαλυπτόμενον, +ὅτι +ἐν +Χριστῷ +καταργεῖται· +ἀλλ’ +ἕως +σήμερον +ἂν +ἡνίκα +ἀναγινώσκηται +Μωϋσῆς +κάλυμμα +ἐπὶ +τὴν +καρδίαν +αὐτῶν +κεῖται· +δὲ +ἡνίκα +ἐὰν +ἐπιστρέψῃ +πρὸς +Κύριον, +περιαιρεῖται +τὸ +κάλυμμα. +δὲ +ὁ +Κύριος +τὸ +Πνεῦμά +ἐστιν· +δὲ +οὗ +τὸ +Πνεῦμα +Κυρίου, +ἐλευθερία. +δὲ +ἡμεῖς +πάντες +ἀνακεκαλυμμένῳ +προσώπῳ +τὴν +δόξαν +Κυρίου +κατοπτριζόμενοι +τὴν +αὐτὴν +εἰκόνα +μεταμορφούμεθα +ἀπὸ +δόξης +εἰς +δόξαν, +καθάπερ +ἀπὸ +Κυρίου +Πνεύματος. +Διὰ +τοῦτο, +ἔχοντες +τὴν +διακονίαν +ταύτην, +καθὼς +ἠλεήθημεν, +οὐκ +ἐγκακοῦμεν, +ἀλλὰ +ἀπειπάμεθα +τὰ +κρυπτὰ +τῆς +αἰσχύνης, +μὴ +περιπατοῦντες +ἐν +πανουργίᾳ +μηδὲ +δολοῦντες +τὸν +λόγον +τοῦ +Θεοῦ, +ἀλλὰ +τῇ +φανερώσει +τῆς +ἀληθείας +συνιστάνοντες +ἑαυτοὺς +πρὸς +πᾶσαν +συνείδησιν +ἀνθρώπων +ἐνώπιον +τοῦ +Θεοῦ. +δὲ +εἰ +καὶ +ἔστιν +κεκαλυμμένον +τὸ +εὐαγγέλιον +ἡμῶν, +ἐν +τοῖς +ἀπολλυμένοις +ἐστὶν +κεκαλυμμένον, +ἐν +οἷς +ὁ +θεὸς +τοῦ +αἰῶνος +τούτου +ἐτύφλωσεν +τὰ +νοήματα +τῶν +ἀπίστων +εἰς +τὸ +μὴ +αὐγάσαι +τὸν +φωτισμὸν +τοῦ +εὐαγγελίου +τῆς +δόξης +τοῦ +Χριστοῦ, +ὅς +ἐστιν +εἰκὼν +τοῦ +Θεοῦ. +γὰρ +οὐ +ἑαυτοὺς +κηρύσσομεν +ἀλλὰ +Χριστὸν +Ἰησοῦν +Κύριον, +δὲ +ἑαυτοὺς +δούλους +ὑμῶν +διὰ +Ἰησοῦν. +ὅτι +ὁ +Θεὸς +ὁ +εἰπών +Ἐκ +σκότους +φῶς +λάμψει, +ὃς +ἔλαμψεν +ἐν +ταῖς +καρδίαις +ἡμῶν +πρὸς +φωτισμὸν +τῆς +γνώσεως +τῆς +δόξης +τοῦ +Θεοῦ +ἐν +προσώπῳ +Χριστοῦ. +δὲ +Ἔχομεν +τὸν +θησαυρὸν +τοῦτον +ἐν +ὀστρακίνοις +σκεύεσιν, +ἵνα +ἡ +ὑπερβολὴ +τῆς +δυνάμεως +ᾖ +τοῦ +Θεοῦ +καὶ +μὴ +ἐξ +ἡμῶν· +ἐν +παντὶ +θλιβόμενοι +ἀλλ’ +οὐ +στενοχωρούμενοι, +ἀπορούμενοι +ἀλλ’ +οὐκ +ἐξαπορούμενοι, +διωκόμενοι +ἀλλ’ +οὐκ +ἐγκαταλειπόμενοι, +καταβαλλόμενοι +ἀλλ’ +οὐκ +ἀπολλύμενοι, +πάντοτε +τὴν +νέκρωσιν +τοῦ +Ἰησοῦ +ἐν +τῷ +σώματι +περιφέροντες, +ἵνα +καὶ +ἡ +ζωὴ +τοῦ +Ἰησοῦ +ἐν +τῷ +σώματι +ἡμῶν +φανερωθῇ· +γὰρ +ἀεὶ +ἡμεῖς +οἱ +ζῶντες +εἰς +θάνατον +παραδιδόμεθα +διὰ +Ἰησοῦν, +ἵνα +καὶ +ἡ +ζωὴ +τοῦ +Ἰησοῦ +φανερωθῇ +ἐν +τῇ +θνητῇ +σαρκὶ +ἡμῶν. +ὥστε +ὁ +θάνατος +ἐν +ἡμῖν +ἐνεργεῖται, +δὲ +ἡ +ζωὴ +ἐν +ὑμῖν. +δὲ +ἔχοντες +τὸ +αὐτὸ +πνεῦμα +τῆς +πίστεως, +κατὰ +τὸ +γεγραμμένον +Ἐπίστευσα, +διὸ +ἐλάλησα, +καὶ +ἡμεῖς +πιστεύομεν, +διὸ +καὶ +λαλοῦμεν, +εἰδότες +ὅτι +ὁ +ἐγείρας +τὸν +Κύριον +Ἰησοῦν +καὶ +ἡμᾶς +σὺν +Ἰησοῦ +ἐγερεῖ +καὶ +παραστήσει +σὺν +ὑμῖν. +γὰρ +τὰ +πάντα +δι’ +ὑμᾶς, +ἵνα +ἡ +χάρις +πλεονάσασα +διὰ +τῶν +πλειόνων +τὴν +εὐχαριστίαν +περισσεύσῃ +εἰς +τὴν +δόξαν +τοῦ +Θεοῦ. +Διὸ +οὐκ +ἐγκακοῦμεν, +ἀλλ’ +εἰ +καὶ +ὁ +ἔξω +ἡμῶν +ἄνθρωπος +διαφθείρεται, +ἀλλ’ +ὁ +ἔσω +ἡμῶν +ἀνακαινοῦται +ἡμέρᾳ +καὶ +ἡμέρᾳ. +γὰρ +τὸ +παραυτίκα +ἐλαφρὸν +τῆς +θλίψεως +καθ’ +ὑπερβολὴν +εἰς +ὑπερβολὴν +αἰώνιον +βάρος +δόξης +κατεργάζεται +ἡμῖν, +μὴ +σκοπούντων +ἡμῶν +τὰ +βλεπόμενα +ἀλλὰ +τὰ +μὴ +βλεπόμενα· +γὰρ +τὰ +βλεπόμενα +πρόσκαιρα, +δὲ +τὰ +μὴ +βλεπόμενα +αἰώνια. +γὰρ +οἴδαμεν +ὅτι +ἐὰν +ἡ +ἐπίγειος +ἡμῶν +οἰκία +τοῦ +σκήνους +καταλυθῇ, +ἐκ +Θεοῦ +ἔχομεν, +οἰκοδομὴν +οἰκίαν +ἀχειροποίητον +αἰώνιον +ἐν +τοῖς +οὐρανοῖς. +γὰρ +καὶ +ἐν +τούτῳ +στενάζομεν, +τὸ +οἰκητήριον +ἡμῶν +τὸ +ἐξ +οὐρανοῦ +ἐπενδύσασθαι +ἐπιποθοῦντες, +εἴ +γε +καὶ +ἐνδυσάμενοι +οὐ +γυμνοὶ +εὑρεθησόμεθα. +γὰρ +καὶ +οἱ +ὄντες +ἐν +τῷ +σκήνει +στενάζομεν +βαρούμενοι +ἐφ’ +ᾧ +θέλομεν +οὐ +ἐκδύσασθαι +ἀλλ’ +ἐπενδύσασθαι, +ἵνα +καταποθῇ +τὸ +θνητὸν +ὑπὸ +τῆς +ζωῆς. +δὲ +ὁ +κατεργασάμενος +ἡμᾶς +εἰς +αὐτὸ +τοῦτο +Θεός, +ὁ +δοὺς +ἡμῖν +τὸν +ἀρραβῶνα +τοῦ +Πνεύματος. +οὖν +Θαρροῦντες +πάντοτε +καὶ +εἰδότες +ὅτι +ἐνδημοῦντες +ἐν +τῷ +σώματι +ἐκδημοῦμεν +ἀπὸ +τοῦ +Κυρίου· +γὰρ +διὰ +πίστεως +περιπατοῦμεν, +οὐ +διὰ +εἴδους· +δὲ +θαρροῦμεν +καὶ +εὐδοκοῦμεν +μᾶλλον +ἐκδημῆσαι +ἐκ +τοῦ +σώματος +καὶ +ἐνδημῆσαι +πρὸς +τὸν +Κύριον. +διὸ +καὶ +φιλοτιμούμεθα, +εἴτε +ἐνδημοῦντες +εἴτε +ἐκδημοῦντες, +εὐάρεστοι +αὐτῷ +εἶναι. +γὰρ +τοὺς +πάντας +ἡμᾶς +φανερωθῆναι +ἔμπροσθεν +τοῦ +βήματος +τοῦ +Χριστοῦ, +δεῖ +ἵνα +κομίσηται +ἕκαστος +τὰ +διὰ +τοῦ +σώματος +πρὸς +ἃ +ἔπραξεν, +εἴτε +ἀγαθὸν +εἴτε +φαῦλον. +οὖν +Εἰδότες +τὸν +φόβον +τοῦ +Κυρίου +ἀνθρώπους +πείθομεν, +δὲ +Θεῷ +πεφανερώμεθα· +δὲ +ἐλπίζω +καὶ +ἐν +ταῖς +συνειδήσεσιν +ὑμῶν +πεφανερῶσθαι. +οὐ +πάλιν +ἑαυτοὺς +συνιστάνομεν +ὑμῖν, +ἀλλὰ +ἀφορμὴν +καυχήματος +διδόντες +ὑμῖν +ὑπὲρ +ἡμῶν, +ἵνα +ἔχητε +πρὸς +τοὺς +ἐν +προσώπῳ +καυχωμένους +καὶ +μὴ +ἐν +καρδίᾳ. +γὰρ +εἴτε +ἐξέστημεν, +Θεῷ· +εἴτε +σωφρονοῦμεν, +ὑμῖν. +γὰρ +ἡ +ἀγάπη +τοῦ +Χριστοῦ +συνέχει +ἡμᾶς, +κρίναντας +τοῦτο, +ὅτι +εἷς +ὑπὲρ +πάντων +ἀπέθανεν· +ἄρα +οἱ +πάντες +ἀπέθανον· +καὶ +ὑπὲρ +πάντων +ἀπέθανεν +ἵνα +οἱ +ζῶντες +ζῶσιν +μηκέτι +ἑαυτοῖς +ἀλλὰ +τῷ +ὑπὲρ +αὐτῶν +ἀποθανόντι +καὶ +ἐγερθέντι. +Ὥστε +ἡμεῖς +ἀπὸ +τοῦ +νῦν +οὐδένα +οἴδαμεν +κατὰ +σάρκα· +εἰ +καὶ +ἐγνώκαμεν +κατὰ +σάρκα +Χριστόν, +ἀλλὰ +νῦν +οὐκέτι +γινώσκομεν. +ὥστε +εἴ +τις +ἐν +Χριστῷ, +καινὴ +κτίσις· +τὰ +ἀρχαῖα +παρῆλθεν, +ἰδοὺ +γέγονεν +καινά. +δὲ +τὰ +πάντα +ἐκ +τοῦ +Θεοῦ +τοῦ +καταλλάξαντος +ἡμᾶς +ἑαυτῷ +διὰ +Χριστοῦ +καὶ +δόντος +ἡμῖν +τὴν +διακονίαν +τῆς +καταλλαγῆς, +ὡς +ὅτι +Θεὸς +ἦν +καταλλάσσων +ἐν +Χριστῷ +κόσμον +ἑαυτῷ, +μὴ +λογιζόμενος +αὐτοῖς +τὰ +παραπτώματα +αὐτῶν, +καὶ +θέμενος +ἐν +ἡμῖν +τὸν +λόγον +τῆς +καταλλαγῆς. +οὖν +Ὑπὲρ +Χριστοῦ +πρεσβεύομεν +ὡς +τοῦ +Θεοῦ +παρακαλοῦντος +δι’ +ἡμῶν· +δεόμεθα +ὑπὲρ +Χριστοῦ, +καταλλάγητε +τῷ +Θεῷ. +τὸν +μὴ +γνόντα +ἁμαρτίαν +ὑπὲρ +ἡμῶν +ἁμαρτίαν +ἐποίησεν, +ἵνα +ἡμεῖς +γενώμεθα +δικαιοσύνη +Θεοῦ +ἐν +αὐτῷ. +δὲ +Συνεργοῦντες +καὶ +παρακαλοῦμεν +μὴ +εἰς +κενὸν +τὴν +χάριν +τοῦ +Θεοῦ +δέξασθαι +ὑμᾶς· +γάρ +—λέγει +Καιρῷ +δεκτῷ +ἐπήκουσά +σου +καὶ +ἐν +ἡμέρᾳ +σωτηρίας +ἐβοήθησά +σοι· +ἰδοὺ +νῦν +καιρὸς +εὐπρόσδεκτος, +ἰδοὺ +νῦν +ἡμέρα +σωτηρίας·— +μηδεμίαν +προσκοπήν, +ἐν +μηδενὶ +διδόντες +ἵνα +μὴ +μωμηθῇ +ἡ +διακονία, +ἀλλ’ +ἐν +παντὶ +συνιστάνοντες +ἑαυτοὺς +ὡς +Θεοῦ +διάκονοι, +ἐν +ὑπομονῇ +πολλῇ, +ἐν +θλίψεσιν, +ἐν +ἀνάγκαις, +ἐν +στενοχωρίαις, +ἐν +πληγαῖς, +ἐν +φυλακαῖς, +ἐν +ἀκαταστασίαις, +ἐν +κόποις, +ἐν +ἀγρυπνίαις, +ἐν +νηστείαις, +ἐν +ἁγνότητι, +ἐν +γνώσει, +ἐν +μακροθυμίᾳ, +ἐν +χρηστότητι, +ἐν +Πνεύματι +Ἁγίῳ, +ἐν +ἀγάπῃ +ἀνυποκρίτῳ, +ἐν +λόγῳ +ἀληθείας, +ἐν +δυνάμει +Θεοῦ· +διὰ +τῶν +ὅπλων +τῆς +δικαιοσύνης +τῶν +δεξιῶν +καὶ +ἀριστερῶν, +διὰ +δόξης +καὶ +ἀτιμίας, +διὰ +δυσφημίας +καὶ +εὐφημίας· +ὡς +πλάνοι +καὶ +ἀληθεῖς, +ὡς +ἀγνοούμενοι +καὶ +ἐπιγινωσκόμενοι, +ὡς +ἀποθνήσκοντες +καὶ +ἰδοὺ +ζῶμεν, +ὡς +παιδευόμενοι +καὶ +μὴ +θανατούμενοι, +ὡς +λυπούμενοι +δὲ +ἀεὶ +χαίροντες, +ὡς +πτωχοὶ +δὲ +πολλοὺς +πλουτίζοντες, +ὡς +μηδὲν +ἔχοντες +καὶ +πάντα +κατέχοντες. +Κορίνθιοι, +Τὸ +στόμα +ἡμῶν +ἀνέῳγεν +πρὸς +ὑμᾶς, +ἡ +καρδία +ἡμῶν +πεπλάτυνται· +οὐ +στενοχωρεῖσθε +ἐν +ἡμῖν, +δὲ +στενοχωρεῖσθε +ἐν +τοῖς +σπλάγχνοις +ὑμῶν· +δὲ +τὴν +αὐτὴν +ἀντιμισθίαν, +ὡς +τέκνοις +λέγω, +πλατύνθητε +καὶ +ὑμεῖς. +Μὴ +γίνεσθε +ἑτεροζυγοῦντες +ἀπίστοις· +γὰρ +τίς +μετοχὴ +δικαιοσύνῃ +καὶ +ἀνομίᾳ, +ἢ +τίς +κοινωνία +φωτὶ +πρὸς +σκότος; +δὲ +τίς +συμφώνησις +Χριστοῦ +πρὸς +Βελιάρ, +ἢ +τίς +μερὶς +πιστῷ +μετὰ +ἀπίστου; +δὲ +τίς +συνκατάθεσις +ναῷ +Θεοῦ +μετὰ +εἰδώλων; +γὰρ +ἡμεῖς +ναὸς +Θεοῦ +ζῶντος· +ἐσμεν +καθὼς +εἶπεν +ὁ +Θεὸς +ὅτι +Ἐνοικήσω +ἐν +αὐτοῖς +καὶ +ἐνπεριπατήσω, +καὶ +ἔσομαι +αὐτῶν +Θεός, +καὶ +αὐτοὶ +ἔσονταί +μου +λαός. +διὸ +ἐξέλθατε +ἐκ +μέσου +αὐτῶν, +καὶ +ἀφορίσθητε, +καὶ +ἀκαθάρτου +μὴ +ἅπτεσθε· +λέγει +Κύριος, +κἀγὼ +εἰσδέξομαι +ὑμᾶς, +καὶ +ἔσομαι +ὑμῖν +εἰς +Πατέρα, +καὶ +ὑμεῖς +ἔσεσθέ +μοι +εἰς +υἱοὺς +καὶ +θυγατέρας, +λέγει +Κύριος +Παντοκράτωρ. +οὖν +ἀγαπητοί, +ἔχοντες +ταύτας +τὰς +ἐπαγγελίας, +καθαρίσωμεν +ἑαυτοὺς +ἀπὸ +παντὸς +μολυσμοῦ +σαρκὸς +καὶ +πνεύματος, +ἐπιτελοῦντες +ἁγιωσύνην +ἐν +φόβῳ +Θεοῦ. +Χωρήσατε +ἡμᾶς· +οὐδένα +ἠδικήσαμεν, +οὐδένα +ἐφθείραμεν, +οὐδένα +ἐπλεονεκτήσαμεν. +πρὸς +κατάκρισιν +οὐ +λέγω· +γὰρ +προείρηκα +ὅτι +ἐν +ταῖς +καρδίαις +ἡμῶν +ἐστε +εἰς +τὸ +συναποθανεῖν +καὶ +συνζῆν. +πολλή +μοι +παρρησία +πρὸς +ὑμᾶς, +πολλή +μοι +καύχησις +ὑπὲρ +ὑμῶν· +πεπλήρωμαι +τῇ +παρακλήσει, +ὑπερπερισσεύομαι +τῇ +χαρᾷ +ἐπὶ +πάσῃ +τῇ +θλίψει +ἡμῶν. +γὰρ +Καὶ +ἐλθόντων +ἡμῶν +εἰς +Μακεδονίαν +οὐδεμίαν +ἔσχηκεν +ἄνεσιν +ἡ +σὰρξ +ἡμῶν, +ἀλλ’ +ἐν +παντὶ +θλιβόμενοι· +ἔξωθεν +μάχαι, +ἔσωθεν +φόβοι. +ἀλλ’ +ὁ +παρακαλῶν +τοὺς +ταπεινοὺς +ὁ +Θεὸς +παρεκάλεσεν +ἡμᾶς +ἐν +τῇ +παρουσίᾳ +Τίτου· +δὲ +οὐ +μόνον +ἐν +τῇ +παρουσίᾳ +αὐτοῦ, +ἀλλὰ +καὶ +ἐν +τῇ +παρακλήσει +ᾗ +παρεκλήθη +ἐφ’ +ὑμῖν, +ἀναγγέλλων +ἡμῖν +τὴν +ὑμῶν +ἐπιπόθησιν, +τὸν +ὑμῶν +ὀδυρμόν, +τὸν +ὑμῶν +ζῆλον +ὑπὲρ +ἐμοῦ, +ὥστε +με +μᾶλλον +χαρῆναι. +ὅτι +εἰ +καὶ +ἐλύπησα +ὑμᾶς +ἐν +τῇ +ἐπιστολῇ, +οὐ +μεταμέλομαι· +εἰ +καὶ +μετεμελόμην, +βλέπω +ὅτι +ἡ +ἐπιστολὴ +ἐκείνη +εἰ +καὶ +πρὸς +ὥραν +ἐλύπησεν +ὑμᾶς, +νῦν +χαίρω, +οὐχ +ὅτι +ἐλυπήθητε, +ἀλλ’ +ὅτι +ἐλυπήθητε +εἰς +μετάνοιαν· +γὰρ +ἐλυπήθητε +κατὰ +Θεόν, +ἵνα +ἐν +μηδενὶ +ζημιωθῆτε +ἐξ +ἡμῶν. +γὰρ +ἡ +κατὰ +Θεὸν +λύπη +μετάνοιαν +εἰς +σωτηρίαν +ἀμεταμέλητον +ἐργάζεται· +δὲ +ἡ +τοῦ +κόσμου +λύπη +θάνατον +κατεργάζεται. +γὰρ +ἰδοὺ +αὐτὸ +τοῦτο +τὸ +κατὰ +Θεὸν +λυπηθῆναι +κατειργάσατο +ὑμῖν +πόσην +σπουδήν, +ἀλλὰ +ἀπολογίαν, +ἀλλὰ +ἀγανάκτησιν, +ἀλλὰ +φόβον, +ἀλλὰ +ἐπιπόθησιν, +ἀλλὰ +ζῆλον, +ἀλλὰ +ἐκδίκησιν. +ἐν +παντὶ +συνεστήσατε +ἑαυτοὺς +ἁγνοὺς +εἶναι +τῷ +πράγματι. +ἄρα +εἰ +καὶ +ἔγραψα +ὑμῖν, +οὐχ +ἕνεκεν +τοῦ +ἀδικήσαντος +οὐδὲ +ἕνεκεν +τοῦ +ἀδικηθέντος, +ἀλλ’ +ἕνεκεν +τοῦ +φανερωθῆναι +τὴν +σπουδὴν +ὑμῶν +τὴν +ὑπὲρ +ἡμῶν +πρὸς +ὑμᾶς +ἐνώπιον +τοῦ +Θεοῦ. +διὰ +τοῦτο +παρακεκλήμεθα. +δὲ +Ἐπὶ +τῇ +παρακλήσει +ἡμῶν +περισσοτέρως +μᾶλλον +ἐχάρημεν +ἐπὶ +τῇ +χαρᾷ +Τίτου, +ὅτι +ἀναπέπαυται +τὸ +πνεῦμα +αὐτοῦ +ἀπὸ +πάντων +ὑμῶν· +ὅτι +εἴ +τι +αὐτῷ +ὑπὲρ +ὑμῶν +κεκαύχημαι, +οὐ +κατῃσχύνθην, +ἀλλ’ +ὡς +πάντα +ἐν +ἀληθείᾳ +ἐλαλήσαμεν +ὑμῖν, +οὕτως +καὶ +ἡ +καύχησις +ἡμῶν +ἐπὶ +Τίτου +ἀλήθεια +ἐγενήθη. +καὶ +τὰ +σπλάγχνα +αὐτοῦ +περισσοτέρως +εἰς +ὑμᾶς +ἐστιν +ἀναμιμνῃσκομένου +τὴν +πάντων +ὑμῶν +ὑπακοήν, +ὡς +μετὰ +φόβου +καὶ +τρόμου +ἐδέξασθε +αὐτόν. +χαίρω +ὅτι +ἐν +παντὶ +θαρρῶ +ἐν +ὑμῖν. +δὲ +ἀδελφοί, +Γνωρίζομεν +ὑμῖν, +τὴν +χάριν +τοῦ +Θεοῦ +τὴν +δεδομένην +ἐν +ταῖς +ἐκκλησίαις +τῆς +Μακεδονίας, +ὅτι +ἐν +πολλῇ +δοκιμῇ +θλίψεως +ἡ +περισσεία +τῆς +χαρᾶς +αὐτῶν +καὶ +ἡ +κατὰ +βάθους +πτωχεία +αὐτῶν +ἐπερίσσευσεν +εἰς +τὸ +πλοῦτος +τῆς +ἁπλότητος +αὐτῶν· +μαρτυρῶ, +ὅτι +κατὰ +δύναμιν, +καὶ +παρὰ +δύναμιν, +αὐθαίρετοι +μετὰ +πολλῆς +παρακλήσεως +δεόμενοι +ἡμῶν, +τὴν +χάριν +καὶ +τὴν +κοινωνίαν +τῆς +διακονίας +τῆς +εἰς +τοὺς +ἁγίους, +καὶ +οὐ +καθὼς +ἠλπίσαμεν, +ἀλλὰ +ἑαυτοὺς +ἔδωκαν +πρῶτον +τῷ +Κυρίῳ +καὶ +ἡμῖν +διὰ +θελήματος +Θεοῦ, +εἰς +τὸ +παρακαλέσαι +ἡμᾶς +Τίτον, +ἵνα +καθὼς +προενήρξατο +οὕτως +καὶ +ἐπιτελέσῃ +εἰς +ὑμᾶς +καὶ +τὴν +χάριν +ταύτην. +ἀλλ’ +ὥσπερ +ἐν +παντὶ +περισσεύετε, +πίστει +καὶ +λόγῳ +καὶ +γνώσει +καὶ +πάσῃ +σπουδῇ +καὶ +τῇ +ἐξ +ἡμῶν +ἐν +ὑμῖν +ἀγάπῃ, +ἵνα +καὶ +ἐν +ταύτῃ +τῇ +χάριτι +περισσεύητε. +Οὐ +κατ’ +ἐπιταγὴν +λέγω +ἀλλὰ +διὰ +τῆς +ἑτέρων +σπουδῆς +καὶ +τὸ +τῆς +ὑμετέρας +ἀγάπης +γνήσιον +δοκιμάζων· +γὰρ +γινώσκετε +τὴν +χάριν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ὅτι +δι’ +ὑμᾶς +ἐπτώχευσεν +πλούσιος +ὤν, +ἵνα +ὑμεῖς +τῇ +ἐκείνου +πτωχείᾳ +πλουτήσητε. +καὶ +γνώμην +ἐν +τούτῳ +δίδωμι· +γὰρ +τοῦτο +ὑμῖν +συμφέρει, +οἵτινες +οὐ +μόνον +τὸ +ποιῆσαι +ἀλλὰ +καὶ +τὸ +θέλειν +προενήρξασθε +ἀπὸ +πέρυσι· +δὲ +νυνὶ +καὶ +τὸ +ποιῆσαι +ἐπιτελέσατε, +ὅπως +καθάπερ +ἡ +προθυμία +τοῦ +θέλειν, +οὕτως +καὶ +τὸ +ἐπιτελέσαι +ἐκ +τοῦ +ἔχειν. +γὰρ +εἰ +ἡ +προθυμία +πρόκειται, +καθὸ +ἐὰν +ἔχῃ +εὐπρόσδεκτος, +οὐ +καθὸ +οὐκ +ἔχει. +γὰρ +οὐ +ἵνα +ἄλλοις +ἄνεσις, +ὑμῖν +θλῖψις· +ἀλλ’ +ἐξ +ἰσότητος +ἐν +τῷ +νῦν +καιρῷ +τὸ +ὑμῶν +περίσσευμα +εἰς +τὸ +ἐκείνων +ὑστέρημα, +ἵνα +καὶ +τὸ +ἐκείνων +περίσσευμα +γένηται +εἰς +τὸ +ὑμῶν +ὑστέρημα, +ὅπως +γένηται +ἰσότης, +καθὼς +γέγραπται +Ὁ +τὸ +πολὺ +οὐκ +ἐπλεόνασεν, +καὶ +ὁ +τὸ +ὀλίγον +οὐκ +ἠλαττόνησεν. +δὲ +Χάρις +τῷ +Θεῷ +τῷ +διδόντι +τὴν +αὐτὴν +σπουδὴν +ὑπὲρ +ὑμῶν +ἐν +τῇ +καρδίᾳ +Τίτου, +ὅτι +μὲν +τὴν +παράκλησιν +ἐδέξατο, +δὲ +σπουδαιότερος +ὑπάρχων +αὐθαίρετος +ἐξῆλθεν +πρὸς +ὑμᾶς. +δὲ +συνεπέμψαμεν +μετ’ +αὐτοῦ +τὸν +ἀδελφὸν +οὗ +ὁ +ἔπαινος +ἐν +τῷ +εὐαγγελίῳ +διὰ +πασῶν +τῶν +ἐκκλησιῶν, +δὲ +οὐ +μόνον +ἀλλὰ +καὶ +χειροτονηθεὶς +ὑπὸ +τῶν +ἐκκλησιῶν +συνέκδημος +ἡμῶν +ἐν +τῇ +χάριτι +ταύτῃ +τῇ +διακονουμένῃ +ὑφ’ +ἡμῶν +πρὸς +τὴν +αὐτοῦ +τοῦ +Κυρίου +δόξαν +καὶ +προθυμίαν +ἡμῶν, +στελλόμενοι +τοῦτο, +μή +τις +ἡμᾶς +μωμήσηται +ἐν +τῇ +ἁδρότητι +ταύτῃ +τῇ +διακονουμένῃ +ὑφ’ +ἡμῶν· +γὰρ +προνοοῦμεν +καλὰ +οὐ +μόνον +ἐνώπιον +Κυρίου +ἀλλὰ +καὶ +ἐνώπιον +ἀνθρώπων. +δὲ +συνεπέμψαμεν +αὐτοῖς +τὸν +ἀδελφὸν +ἡμῶν, +ὃν +ἐδοκιμάσαμεν +ἐν +πολλοῖς +πολλάκις +σπουδαῖον +ὄντα, +δὲ +νυνὶ +πολὺ +σπουδαιότερον +πεποιθήσει +πολλῇ +τῇ +εἰς +ὑμᾶς. +εἴτε +ὑπὲρ +Τίτου, +κοινωνὸς +ἐμὸς +καὶ +εἰς +ὑμᾶς +συνεργός· +εἴτε +ἀδελφοὶ +ἡμῶν, +ἀπόστολοι +ἐκκλησιῶν, +δόξα +Χριστοῦ. +οὖν +τὴν +ἔνδειξιν +τῆς +ἀγάπης +ὑμῶν +καὶ +ἡμῶν +καυχήσεως +ὑπὲρ +ὑμῶν +εἰς +αὐτοὺς +ἐνδεικνύμενοι +εἰς +πρόσωπον +τῶν +ἐκκλησιῶν. +γὰρ +μὲν +Περὶ +τῆς +διακονίας +τῆς +εἰς +τοὺς +ἁγίους +περισσόν +μοί +ἐστιν +τὸ +γράφειν +ὑμῖν· +γὰρ +οἶδα +τὴν +προθυμίαν +ὑμῶν +ἣν +ὑπὲρ +ὑμῶν +καυχῶμαι +Μακεδόσιν +ὅτι +Ἀχαΐα +παρεσκεύασται +ἀπὸ +πέρυσι, +καὶ +τὸ +ὑμῶν +ζῆλος +ἠρέθισεν +τοὺς +πλείονας. +δὲ +ἔπεμψα +τοὺς +ἀδελφούς, +ἵνα +μὴ +τὸ +καύχημα +ἡμῶν +τὸ +ὑπὲρ +ὑμῶν +κενωθῇ +ἐν +τῷ +μέρει +τούτῳ, +ἵνα +καθὼς +ἔλεγον +παρεσκευασμένοι +ἦτε, +μή +πως +ἐὰν +ἔλθωσιν +σὺν +ἐμοὶ +Μακεδόνες +καὶ +εὕρωσιν +ὑμᾶς +ἀπαρασκευάστους +καταισχυνθῶμεν +ἡμεῖς, +ἵνα +μὴ +λέγωμεν +ὑμεῖς, +ἐν +τῇ +ὑποστάσει +ταύτῃ. +οὖν +ἀναγκαῖον +ἡγησάμην +παρακαλέσαι +τοὺς +ἀδελφοὺς +ἵνα +προέλθωσιν +εἰς +ὑμᾶς +καὶ +προκαταρτίσωσιν +τὴν +προεπηγγελμένην +εὐλογίαν +ὑμῶν, +ταύτην +ἑτοίμην +εἶναι +οὕτως +ὡς +εὐλογίαν +καὶ +μὴ +ὡς +πλεονεξίαν. +δέ, +Τοῦτο +ὁ +σπείρων +φειδομένως +φειδομένως +καὶ +θερίσει, +καὶ +ὁ +σπείρων +ἐπ’ +εὐλογίαις +ἐπ’ +εὐλογίαις +καὶ +θερίσει. +ἕκαστος +καθὼς +προῄρηται +τῇ +καρδίᾳ, +μὴ +ἐκ +λύπης +ἢ +ἐξ +ἀνάγκης· +γὰρ +ἱλαρὸν +δότην +ἀγαπᾷ +ὁ +Θεός. +δὲ +δυνατεῖ +ὁ +Θεὸς +πᾶσαν +χάριν +περισσεῦσαι +εἰς +ὑμᾶς, +ἵνα +ἐν +παντὶ +πάντοτε +πᾶσαν +αὐτάρκειαν +ἔχοντες +περισσεύητε +εἰς +πᾶν +ἔργον +ἀγαθόν, +καθὼς +γέγραπται +Ἐσκόρπισεν, +ἔδωκεν +τοῖς +πένησιν, +ἡ +δικαιοσύνη +αὐτοῦ +μένει +εἰς +τὸν +αἰῶνα. +δὲ +ὁ +ἐπιχορηγῶν +σπέρμα +τῷ +σπείροντι +καὶ +ἄρτον +εἰς +βρῶσιν +χορηγήσει +καὶ +πληθυνεῖ +τὸν +σπόρον +ὑμῶν +καὶ +αὐξήσει +τὰ +γενήματα +τῆς +δικαιοσύνης +ὑμῶν· +ἐν +παντὶ +πλουτιζόμενοι +εἰς +πᾶσαν +ἁπλότητα, +ἥτις +κατεργάζεται +δι’ +ἡμῶν +εὐχαριστίαν +τῷ +Θεῷ. +ὅτι +ἡ +διακονία +τῆς +λειτουργίας +ταύτης +οὐ +μόνον +ἐστὶν +προσαναπληροῦσα +τὰ +ὑστερήματα +τῶν +ἁγίων, +ἀλλὰ +καὶ +περισσεύουσα +διὰ +πολλῶν +εὐχαριστιῶν +τῷ +Θεῷ· +διὰ +τῆς +δοκιμῆς +τῆς +διακονίας +ταύτης +δοξάζοντες +τὸν +Θεὸν +ἐπὶ +τῇ +ὑποταγῇ +τῆς +ὁμολογίας +ὑμῶν +εἰς +τὸ +εὐαγγέλιον +τοῦ +Χριστοῦ +καὶ +ἁπλότητι +τῆς +κοινωνίας +εἰς +αὐτοὺς +καὶ +εἰς +πάντας, +καὶ +αὐτῶν +δεήσει +ὑπὲρ +ὑμῶν +ἐπιποθούντων +ὑμᾶς +διὰ +τὴν +ὑπερβάλλουσαν +χάριν +τοῦ +Θεοῦ +ἐφ’ +ὑμῖν. +Χάρις +τῷ +Θεῷ +ἐπὶ +τῇ +ἀνεκδιηγήτῳ +αὐτοῦ +δωρεᾷ. +δὲ +Αὐτὸς +ἐγὼ +Παῦλος +παρακαλῶ +ὑμᾶς +διὰ +τῆς +πραΰτητος +καὶ +ἐπιεικείας +τοῦ +Χριστοῦ, +ὃς +μὲν +κατὰ +πρόσωπον +ταπεινὸς +ἐν +ὑμῖν, +δὲ +ἀπὼν +θαρρῶ +εἰς +ὑμᾶς· +δὲ +δέομαι +τὸ +μὴ +παρὼν +θαρρῆσαι +τῇ +πεποιθήσει +ᾗ +λογίζομαι +τολμῆσαι +ἐπί +τινας +τοὺς +λογιζομένους +ἡμᾶς +ὡς +κατὰ +σάρκα +περιπατοῦντας. +γὰρ +Ἐν +σαρκὶ +περιπατοῦντες +οὐ +κατὰ +σάρκα +στρατευόμεθα, +γὰρ +τὰ +ὅπλα +τῆς +στρατείας +ἡμῶν +οὐ +σαρκικὰ +ἀλλὰ +δυνατὰ +τῷ +Θεῷ +πρὸς +καθαίρεσιν +ὀχυρωμάτων, +καθαιροῦντες +λογισμοὺς +καὶ +πᾶν +ὕψωμα +ἐπαιρόμενον +κατὰ +τῆς +γνώσεως +τοῦ +Θεοῦ, +καὶ +αἰχμαλωτίζοντες +πᾶν +νόημα +εἰς +τὴν +ὑπακοὴν +τοῦ +Χριστοῦ, +καὶ +ἐν +ἑτοίμῳ +ἔχοντες +ἐκδικῆσαι +πᾶσαν +παρακοήν, +ὅταν +πληρωθῇ +ὑμῶν +ἡ +ὑπακοή. +Τὰ +κατὰ +πρόσωπον +βλέπετε. +εἴ +τις +πέποιθεν +ἑαυτῷ +Χριστοῦ +εἶναι, +τοῦτο +λογιζέσθω +πάλιν +ἐφ’ +ἑαυτοῦ, +ὅτι +καθὼς +αὐτὸς +Χριστοῦ, +οὕτως +καὶ +ἡμεῖς. +γὰρ +ἐάν +τε +περισσότερόν +τι +καυχήσωμαι +περὶ +τῆς +ἐξουσίας +ἡμῶν, +ἧς +ἔδωκεν +ὁ +Κύριος +εἰς +οἰκοδομὴν +καὶ +οὐκ +εἰς +καθαίρεσιν +ὑμῶν, +οὐκ +αἰσχυνθήσομαι, +ἵνα +μὴ +δόξω +ὡς +ἂν +ἐκφοβεῖν +ὑμᾶς +διὰ +τῶν +ἐπιστολῶν. +ὅτι +φησίν, +μέν, +Αἱ +ἐπιστολαὶ +βαρεῖαι +καὶ +ἰσχυραί, +δὲ +ἡ +παρουσία +τοῦ +σώματος +ἀσθενὴς +καὶ +ὁ +λόγος +ἐξουθενημένος. +τοῦτο +λογιζέσθω +ὁ +τοιοῦτος, +ὅτι +οἷοί +ἐσμεν +τῷ +λόγῳ +δι’ +ἐπιστολῶν +ἀπόντες, +τοιοῦτοι +καὶ +παρόντες +τῷ +ἔργῳ. +γὰρ +Οὐ +τολμῶμεν +ἐνκρῖναι +ἢ +συνκρῖναι +ἑαυτούς +τισιν +τῶν +ἑαυτοὺς +συνιστανόντων· +ἀλλὰ +αὐτοὶ +ἐν +ἑαυτοῖς +ἑαυτοὺς +μετροῦντες +καὶ +συνκρίνοντες +ἑαυτοὺς +ἑαυτοῖς +οὐ +συνιᾶσιν. +δὲ +ἡμεῖς +οὐκ +εἰς +τὰ +ἄμετρα +καυχησόμεθα, +ἀλλὰ +κατὰ +τὸ +μέτρον +τοῦ +κανόνος +οὗ +ἐμέρισεν +ἡμῖν +ὁ +Θεὸς +μέτρου, +ἐφικέσθαι +ἄχρι +καὶ +ὑμῶν. +γὰρ +οὐ +ὡς +μὴ +ἐφικνούμενοι +εἰς +ὑμᾶς +ὑπερεκτείνομεν +ἑαυτούς, +γὰρ +ἄχρι +καὶ +ὑμῶν +ἐφθάσαμεν +ἐν +τῷ +εὐαγγελίῳ +τοῦ +Χριστοῦ· +οὐκ +εἰς +τὰ +ἄμετρα +καυχώμενοι +ἐν +ἀλλοτρίοις +κόποις, +δὲ +ἐλπίδα +ἔχοντες +αὐξανομένης +τῆς +πίστεως +ὑμῶν +ἐν +ὑμῖν +μεγαλυνθῆναι +κατὰ +τὸν +κανόνα +ἡμῶν +εἰς +περισσείαν, +εἰς +τὰ +ὑπερέκεινα +ὑμῶν +εὐαγγελίσασθαι, +οὐκ +ἐν +ἀλλοτρίῳ +κανόνι +εἰς +τὰ +ἕτοιμα +καυχήσασθαι. +δὲ +Ὁ +καυχώμενος +ἐν +Κυρίῳ +καυχάσθω· +γὰρ +οὐ +ὁ +ἑαυτὸν +συνιστάνων, +ἐκεῖνός +ἐστιν +δόκιμος, +ἀλλὰ +ὃν +ὁ +Κύριος +συνίστησιν. +Ὄφελον +ἀνείχεσθέ +μου +μικρόν +τι +ἀφροσύνης· +ἀλλὰ +καὶ +ἀνέχεσθέ +μου. +γὰρ +ζηλῶ +ὑμᾶς +Θεοῦ +ζήλῳ, +γὰρ +ἡρμοσάμην +ὑμᾶς +ἑνὶ +ἀνδρὶ +παρθένον +ἁγνὴν +παραστῆσαι +τῷ +Χριστῷ· +δὲ +φοβοῦμαι +μή +πως, +ὡς +ὁ +ὄφις +ἐξηπάτησεν +Εὕαν +ἐν +τῇ +πανουργίᾳ +αὐτοῦ, +φθαρῇ +τὰ +νοήματα +ὑμῶν +ἀπὸ +τῆς +ἁπλότητος +καὶ +τῆς +ἁγνότητος +τῆς +εἰς +Χριστόν. +γὰρ +μὲν +εἰ +ὁ +ἐρχόμενος +κηρύσσει +ἄλλον +Ἰησοῦν +ὃν +οὐκ +ἐκηρύξαμεν, +ἢ +λαμβάνετε +πνεῦμα +ἕτερον +ὃ +οὐκ +ἐλάβετε, +ἢ +εὐαγγέλιον +ἕτερον +ὃ +οὐκ +ἐδέξασθε, +καλῶς +ἀνέχεσθε. +γὰρ +λογίζομαι +μηδὲν +ὑστερηκέναι +τῶν +ὑπερλίαν +ἀποστόλων. +δὲ +εἰ +καὶ +ἰδιώτης +τῷ +λόγῳ, +ἀλλ’ +οὐ +τῇ +γνώσει, +ἀλλ’ +ἐν +παντὶ +φανερώσαντες +ἐν +πᾶσιν +εἰς +ὑμᾶς. +Ἢ +ἁμαρτίαν +ἐποίησα +ἐμαυτὸν +ταπεινῶν +ἵνα +ὑμεῖς +ὑψωθῆτε, +ὅτι +δωρεὰν +τὸ +τοῦ +Θεοῦ +εὐαγγέλιον +εὐηγγελισάμην +ὑμῖν; +ἄλλας +ἐκκλησίας +ἐσύλησα +λαβὼν +ὀψώνιον +πρὸς +τὴν +ὑμῶν +διακονίαν, +καὶ +παρὼν +πρὸς +ὑμᾶς +καὶ +ὑστερηθεὶς +οὐ +κατενάρκησα +οὐθενός· +γὰρ +τὸ +ὑστέρημά +μου +προσανεπλήρωσαν +οἱ +ἀδελφοὶ +ἐλθόντες +ἀπὸ +Μακεδονίας· +καὶ +ἐν +παντὶ +ἀβαρῆ +ἐμαυτὸν +ὑμῖν +ἐτήρησα +καὶ +τηρήσω. +ἔστιν +ἀλήθεια +Χριστοῦ +ἐν +ἐμοὶ, +ὅτι +ἡ +καύχησις +αὕτη +οὐ +φραγήσεται +εἰς +ἐμὲ +ἐν +τοῖς +κλίμασιν +τῆς +Ἀχαΐας. +διὰ +τί; +ὅτι +οὐκ +ἀγαπῶ +ὑμᾶς; +ὁ +Θεὸς +οἶδεν. +δὲ +Ὃ +ποιῶ, +καὶ +ποιήσω, +ἵνα +ἐκκόψω +τὴν +ἀφορμὴν +τῶν +θελόντων +ἀφορμήν, +ἵνα +ἐν +ᾧ +καυχῶνται +εὑρεθῶσιν +καθὼς +καὶ +ἡμεῖς. +γὰρ +οἱ +τοιοῦτοι +ψευδαπόστολοι, +ἐργάται +δόλιοι, +μετασχηματιζόμενοι +εἰς +ἀποστόλους +Χριστοῦ. +καὶ +οὐ +θαῦμα· +γὰρ +αὐτὸς +ὁ +Σατανᾶς +μετασχηματίζεται +εἰς +ἄγγελον +φωτός. +οὖν +οὐ +μέγα +εἰ +καὶ +οἱ +διάκονοι +αὐτοῦ +μετασχηματίζονται +ὡς +διάκονοι +δικαιοσύνης· +ὧν +τὸ +τέλος +ἔσται +κατὰ +τὰ +ἔργα +αὐτῶν. +Πάλιν +λέγω, +μή +τίς +δόξῃ +με +ἄφρονα +εἶναι· +δὲ +εἰ +μήγε, +κἂν +ὡς +ἄφρονα +δέξασθέ +με, +ἵνα +κἀγὼ +μικρόν +τι +καυχήσωμαι. +ὃ +λαλῶ, +οὐ +κατὰ +Κύριον +λαλῶ, +ἀλλ’ +ὡς +ἐν +ἀφροσύνῃ, +ἐν +ταύτῃ +τῇ +ὑποστάσει +τῆς +καυχήσεως. +ἐπεὶ +πολλοὶ +καυχῶνται +κατὰ +τὴν +σάρκα, +κἀγὼ +καυχήσομαι. +γὰρ +ἡδέως +ἀνέχεσθε +τῶν +ἀφρόνων +φρόνιμοι +ὄντες· +γὰρ +ἀνέχεσθε +εἴ +τις +ὑμᾶς +καταδουλοῖ, +εἴ +τις +κατεσθίει, +εἴ +τις +λαμβάνει, +εἴ +τις +ἐπαίρεται, +εἴ +τις +εἰς +πρόσωπον +ὑμᾶς +δέρει. +κατὰ +ἀτιμίαν +λέγω, +ὡς +ὅτι +ἡμεῖς +ἠσθενήκαμεν. +δ’ +ἄν +ἐν +ᾧ +τις +τολμᾷ, +ἐν +ἀφροσύνῃ +λέγω, +τολμῶ +κἀγώ. +Ἑβραῖοί +εἰσιν; +κἀγώ. +Ἰσραηλεῖταί +εἰσιν; +κἀγώ. +σπέρμα +Ἀβραάμ +εἰσιν; +κἀγώ. +διάκονοι +Χριστοῦ +εἰσιν; +παραφρονῶν +λαλῶ, +ὑπὲρ +ἐγώ· +ἐν +κόποις +περισσοτέρως, +ἐν +φυλακαῖς +περισσοτέρως, +ἐν +πληγαῖς +ὑπερβαλλόντως, +ἐν +θανάτοις +πολλάκις. +ὑπὸ +Ἰουδαίων +πεντάκις +τεσσεράκοντα +παρὰ +μίαν +ἔλαβον, +τρὶς +ἐραβδίσθην, +ἅπαξ +ἐλιθάσθην, +τρὶς +ἐναυάγησα, +νυχθήμερον +ἐν +τῷ +βυθῷ +πεποίηκα· +ὁδοιπορίαις +πολλάκις, +κινδύνοις +ποταμῶν, +κινδύνοις +λῃστῶν, +κινδύνοις +ἐκ +γένους, +κινδύνοις +ἐξ +ἐθνῶν, +κινδύνοις +ἐν +πόλει, +κινδύνοις +ἐν +ἐρημίᾳ, +κινδύνοις +ἐν +θαλάσσῃ, +κινδύνοις +ἐν +ψευδαδέλφοις, +κόπῳ +καὶ +μόχθῳ, +ἐν +ἀγρυπνίαις +πολλάκις, +ἐν +λιμῷ +καὶ +δίψει, +ἐν +νηστείαις +πολλάκις, +ἐν +ψύχει +καὶ +γυμνότητι· +χωρὶς +τῶν +παρεκτὸς +ἡ +ἐπίστασίς +μοι +ἡ +καθ’ +ἡμέραν, +ἡ +μέριμνα +πασῶν +τῶν +ἐκκλησιῶν. +τίς +ἀσθενεῖ, +καὶ +οὐκ +ἀσθενῶ; +τίς +σκανδαλίζεται +καὶ +οὐκ +ἐγὼ +πυροῦμαι; +εἰ +καυχᾶσθαι +δεῖ, +τὰ +τῆς +ἀσθενείας +μου +καυχήσομαι. +ὁ +Θεὸς +καὶ +Πατὴρ +τοῦ +Κυρίου +Ἰησοῦ +ὁ +ὢν +εὐλογητὸς +εἰς +τοὺς +αἰῶνας, +οἶδεν, +ὅτι +οὐ +ψεύδομαι. +ἐν +Δαμασκῷ +ὁ +ἐθνάρχης +Ἀρέτα +τοῦ +βασιλέως +ἐφρούρει +τὴν +πόλιν +Δαμασκηνῶν +πιάσαι +με, +καὶ +διὰ +θυρίδος +ἐν +σαργάνῃ +ἐχαλάσθην +διὰ +τοῦ +τείχους +καὶ +ἐξέφυγον +τὰς +χεῖρας +αὐτοῦ. +Καυχᾶσθαι +δεῖ· +μέν, +οὐ +συμφέρον +δὲ +ἐλεύσομαι +εἰς +ὀπτασίας +καὶ +ἀποκαλύψεις +Κυρίου. +οἶδα +ἄνθρωπον +ἐν +Χριστῷ +—εἴτε +ἐν +σώματι +οὐκ +οἶδα, +εἴτε +ἐκτὸς +τοῦ +σώματος +οὐκ +οἶδα, +ὁ +Θεὸς +οἶδεν, +πρὸ +ἐτῶν +δεκατεσσάρων, +—ἁρπαγέντα +τὸν +τοιοῦτον +ἕως +τρίτου +οὐρανοῦ. +καὶ +οἶδα +τὸν +τοιοῦτον +ἄνθρωπον +—εἴτε +ἐν +σώματι +εἴτε +χωρὶς +τοῦ +σώματος +οὐκ +οἶδα, +ὁ +Θεὸς +οἶδεν,— +ὅτι +ἡρπάγη +εἰς +τὸν +Παράδεισον +καὶ +ἤκουσεν +ἄρρητα +ῥήματα +ἃ +λαλῆσαι. +οὐκ +ἐξὸν +ἀνθρώπῳ +ὑπὲρ +τοῦ +τοιούτου +καυχήσομαι, +δὲ +ὑπὲρ +ἐμαυτοῦ +οὐ +καυχήσομαι +εἰ +μὴ +ἐν +ταῖς +ἀσθενείαις. +γὰρ +ἐὰν +θελήσω +καυχήσασθαι, +οὐκ +ἔσομαι +ἄφρων, +γὰρ +ἀλήθειαν +ἐρῶ· +δέ, +φείδομαι +μή +τις +εἰς +ἐμὲ +λογίσηται +ὑπὲρ +ὃ +βλέπει +με +ἢ +ἀκούει +ἐξ +ἐμοῦ +καὶ +τῇ +ὑπερβολῇ +τῶν +ἀποκαλύψεων. +διὸ +ἵνα +μὴ +ὑπεραίρωμαι, +ἐδόθη +μοι +σκόλοψ +τῇ +σαρκί, +ἄγγελος +Σατανᾶ, +ἵνα +με +κολαφίζῃ, +ἵνα +μὴ +ὑπεραίρωμαι. +ὑπὲρ +τούτου +τρὶς +τὸν +Κύριον +παρεκάλεσα, +ἵνα +ἀποστῇ +ἀπ’ +ἐμοῦ. +καὶ +εἴρηκέν +μοι +Ἀρκεῖ +σοι +ἡ +χάρις +μου· +γὰρ +ἡ +δύναμις +ἐν +ἀσθενείᾳ +τελεῖται. +οὖν +Ἥδιστα +μᾶλλον +καυχήσομαι +ἐν +ταῖς +ἀσθενείαις, +ἵνα +ἐπισκηνώσῃ +ἐπ’ +ἐμὲ +ἡ +δύναμις +τοῦ +Χριστοῦ. +διὸ +εὐδοκῶ +ἐν +ἀσθενείαις, +ἐν +ὕβρεσιν, +ἐν +ἀνάγκαις, +ἐν +διωγμοῖς +καὶ +στενοχωρίαις, +ὑπὲρ +Χριστοῦ· +γὰρ +ὅταν +ἀσθενῶ, +τότε +δυνατός +εἰμι. +Γέγονα +ἄφρων· +ὑμεῖς +με +ἠναγκάσατε. +γὰρ +ἐγὼ +ὤφειλον +ὑφ’ +ὑμῶν +συνίστασθαι. +γὰρ +οὐδὲν +ὑστέρησα +τῶν +ὑπερλίαν +ἀποστόλων, +εἰ +καὶ +οὐδέν +εἰμι. +μὲν +τὰ +σημεῖα +τοῦ +ἀποστόλου +κατειργάσθη +ἐν +ὑμῖν +ἐν +πάσῃ +ὑπομονῇ, +τε +σημείοις +καὶ +τέρασιν +καὶ +δυνάμεσιν. +γάρ +τί +ἐστιν +ὃ +ἡσσώθητε +ὑπὲρ +τὰς +λοιπὰς +ἐκκλησίας, +εἰ +μὴ +ὅτι +αὐτὸς +ἐγὼ +οὐ +κατενάρκησα +ὑμῶν; +χαρίσασθέ +μοι +τὴν +ἀδικίαν +ταύτην. +Ἰδοὺ +τρίτον +τοῦτο +ἑτοίμως +ἔχω +ἐλθεῖν +πρὸς +ὑμᾶς, +καὶ +οὐ +καταναρκήσω· +γὰρ +οὐ +ζητῶ +τὰ +ὑμῶν +ἀλλὰ +ὑμᾶς. +γὰρ +οὐ +ὀφείλει +τὰ +τέκνα +τοῖς +γονεῦσιν +θησαυρίζειν, +ἀλλὰ +οἱ +γονεῖς +τοῖς +τέκνοις. +δὲ +ἐγὼ +ἥδιστα +δαπανήσω +καὶ +ἐκδαπανηθήσομαι +ὑπὲρ +τῶν +ψυχῶν +ὑμῶν. +εἰ +περισσοτέρως +ὑμᾶς +ἀγαπῶ, +ἧσσον +ἀγαπῶμαι; +δέ, +Ἔστω +ἐγὼ +οὐ +κατεβάρησα +ὑμᾶς· +ἀλλὰ +ὑπάρχων +πανοῦργος +δόλῳ +ὑμᾶς +ἔλαβον. +μή +τινα +ὧν +ἀπέσταλκα +πρὸς +ὑμᾶς, +δι’ +αὐτοῦ +ἐπλεονέκτησα +ὑμᾶς; +παρεκάλεσα +Τίτον +καὶ +συναπέστειλα +τὸν +ἀδελφόν· +μήτι +ἐπλεονέκτησεν +ὑμᾶς +Τίτος; +οὐ +τῷ +αὐτῷ +Πνεύματι +περιεπατήσαμεν; +οὐ +τοῖς +αὐτοῖς +ἴχνεσιν; +Πάλαι +δοκεῖτε +ὅτι +ὑμῖν +ἀπολογούμεθα. +κατέναντι +Θεοῦ +ἐν +Χριστῷ +λαλοῦμεν· +δὲ +ἀγαπητοί, +τὰ +πάντα, +ὑπὲρ +τῆς +ὑμῶν +οἰκοδομῆς. +γὰρ +φοβοῦμαι +μή +πως +ἐλθὼν +οὐχ +οἵους +θέλω +εὕρω +ὑμᾶς, +κἀγὼ +εὑρεθῶ +ὑμῖν +οἷον +οὐ +θέλετε, +μή +πως +ἔρις, +ζῆλος, +θυμοί, +ἐριθεῖαι, +καταλαλιαί, +ψιθυρισμοί, +φυσιώσεις, +ἀκαταστασίαι· +μὴ +πάλιν +ἐλθόντος +μου +ταπεινώσῃ +με +ὁ +Θεός +μου +πρὸς +ὑμᾶς, +καὶ +πενθήσω +πολλοὺς +τῶν +προημαρτηκότων +καὶ +μὴ +μετανοησάντων +ἐπὶ +τῇ +ἀκαθαρσίᾳ +καὶ +πορνείᾳ +καὶ +ἀσελγείᾳ +ᾗ +ἔπραξαν. +Τρίτον +τοῦτο +ἔρχομαι +πρὸς +ὑμᾶς· +ἐπὶ +στόματος +δύο +μαρτύρων +καὶ +τριῶν +σταθήσεται +πᾶν +ῥῆμα. +προείρηκα +καὶ +προλέγω, +ὡς +παρὼν +τὸ +δεύτερον +καὶ +ἀπὼν +νῦν, +τοῖς +προημαρτηκόσιν +καὶ +τοῖς +λοιποῖς +πᾶσιν, +ὅτι +ἐὰν +ἔλθω +εἰς +τὸ +πάλιν +οὐ +φείσομαι, +ἐπεὶ +ζητεῖτε +δοκιμὴν +τοῦ +ἐν +ἐμοὶ +λαλοῦντος +Χριστοῦ, +ὃς +εἰς +ὑμᾶς +οὐκ +ἀσθενεῖ +ἀλλὰ +δυνατεῖ +ἐν +ὑμῖν. +γὰρ +καὶ +ἐσταυρώθη +ἐξ +ἀσθενείας, +ἀλλὰ +ζῇ +ἐκ +δυνάμεως +Θεοῦ. +γὰρ +καὶ +ἡμεῖς +ἀσθενοῦμεν +ἐν +αὐτῷ, +ἀλλὰ +ζήσομεν +σὺν +αὐτῷ +ἐκ +δυνάμεως +Θεοῦ +εἰς +ὑμᾶς. +Ἑαυτοὺς +πειράζετε +εἰ +ἐστὲ +ἐν +τῇ +πίστει, +ἑαυτοὺς +δοκιμάζετε· +ἢ +οὐκ +ἐπιγινώσκετε +ἑαυτοὺς +ὅτι +Ἰησοῦς +Χριστὸς +ἐν +ὑμῖν; +εἰ +μήτι +ἀδόκιμοί +ἐστε. +δὲ +ἐλπίζω +ὅτι +γνώσεσθε +ὅτι +ἡμεῖς +οὐκ +ἐσμὲν +ἀδόκιμοι. +δὲ +εὐχόμεθα +πρὸς +τὸν +Θεὸν +μὴ +ποιῆσαι +ὑμᾶς +κακὸν +μηδέν, +οὐχ +ἵνα +ἡμεῖς +δόκιμοι +φανῶμεν, +ἀλλ’ +ἵνα +ὑμεῖς +τὸ +καλὸν +ποιῆτε, +δὲ +ἡμεῖς +ὡς +ἀδόκιμοι +ὦμεν. +γὰρ +οὐ +δυνάμεθά +τι +κατὰ +τῆς +ἀληθείας, +ἀλλὰ +ὑπὲρ +τῆς +ἀληθείας. +γὰρ +χαίρομεν +ὅταν +ἡμεῖς +ἀσθενῶμεν, +δὲ +ὑμεῖς +δυνατοὶ +ἦτε· +καὶ +εὐχόμεθα, +τοῦτο +τὴν +ὑμῶν +κατάρτισιν. +Διὰ +τοῦτο +ταῦτα +ἀπὼν +γράφω, +ἵνα +παρὼν +μὴ +ἀποτόμως +χρήσωμαι +κατὰ +τὴν +ἐξουσίαν +ἣν +ὁ +Κύριος +ἔδωκέν +μοι +εἰς +οἰκοδομὴν +καὶ +οὐκ +εἰς +καθαίρεσιν. +ἀδελφοί, +Λοιπόν, +χαίρετε, +καταρτίζεσθε, +παρακαλεῖσθε, +τὸ +αὐτὸ +φρονεῖτε, +εἰρηνεύετε, +καὶ +ὁ +Θεὸς +τῆς +ἀγάπης +καὶ +εἰρήνης +ἔσται +μεθ’ +ὑμῶν. +Ἀσπάσασθε +ἀλλήλους +ἐν +ἁγίῳ +φιλήματι. +Ἀσπάζονται +ὑμᾶς +οἱ +ἅγιοι +πάντες. +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +καὶ +ἡ +ἀγάπη +τοῦ +Θεοῦ +καὶ +ἡ +κοινωνία +τοῦ +Ἁγίου +Πνεύματος +μετὰ +πάντων +ὑμῶν. +Παῦλος +ἀπόστολος, +οὐκ +ἀπ’ +ἀνθρώπων +οὐδὲ +δι’ +ἀνθρώπου +ἀλλὰ +διὰ +Ἰησοῦ +Χριστοῦ +καὶ +Θεοῦ +Πατρὸς +τοῦ +ἐγείραντος +αὐτὸν +ἐκ +νεκρῶν, +καὶ +οἱ +σὺν +ἐμοὶ +πάντες +ἀδελφοί, +ταῖς +ἐκκλησίαις +τῆς +Γαλατίας· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ, +τοῦ +δόντος +ἑαυτὸν +ὑπὲρ +τῶν +ἁμαρτιῶν +ἡμῶν, +ὅπως +ἐξέληται +ἡμᾶς +ἐκ +τοῦ +αἰῶνος +τοῦ +ἐνεστῶτος +πονηροῦ +κατὰ +τὸ +θέλημα +τοῦ +Θεοῦ +καὶ +Πατρὸς +ἡμῶν, +ᾧ +ἡ +δόξα +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +Θαυμάζω +ὅτι +οὕτως +ταχέως +μετατίθεσθε +ἀπὸ +τοῦ +καλέσαντος +ὑμᾶς +ἐν +χάριτι +Χριστοῦ +εἰς +ἕτερον +εὐαγγέλιον, +ὃ +οὐκ +ἔστιν +ἄλλο· +εἰ +μή +τινές +εἰσιν +οἱ +ταράσσοντες +ὑμᾶς +καὶ +θέλοντες +μεταστρέψαι +τὸ +εὐαγγέλιον +τοῦ +Χριστοῦ. +ἀλλὰ +καὶ +ἐὰν +ἡμεῖς +ἢ +ἄγγελος +ἐξ +οὐρανοῦ +εὐαγγελίσηται +ὑμῖν +παρ’ +ὃ +εὐηγγελισάμεθα +ὑμῖν, +ἀνάθεμα +ἔστω. +ὡς +προειρήκαμεν, +καὶ +ἄρτι +πάλιν +λέγω, +εἴ +τις +ὑμᾶς +εὐαγγελίζεται +παρ’ +ὃ +παρελάβετε, +ἀνάθεμα +ἔστω. +γὰρ +Ἄρτι +πείθω +ἀνθρώπους +ἢ +τὸν +Θεόν; +ἢ +ζητῶ +ἀνθρώποις +ἀρέσκειν; +εἰ +ἔτι +ἀνθρώποις +ἤρεσκον, +ἂν +Χριστοῦ +δοῦλος +οὐκ +ἤμην. +γὰρ +ἀδελφοί, +γνωρίζω +ὑμῖν, +τὸ +εὐαγγέλιον +τὸ +εὐαγγελισθὲν +ὑπ’ +ἐμοῦ +ὅτι +οὐκ +ἔστιν +κατὰ +ἄνθρωπον· +γὰρ +οὐδὲ +ἐγὼ +παρὰ +ἀνθρώπου +παρέλαβον +αὐτό +οὔτε +ἐδιδάχθην, +ἀλλὰ +δι’ +ἀποκαλύψεως +Ἰησοῦ +Χριστοῦ. +γὰρ +Ἠκούσατε +τὴν +ἐμὴν +ἀναστροφήν +ποτε +ἐν +τῷ +Ἰουδαϊσμῷ, +ὅτι +καθ’ +ὑπερβολὴν +ἐδίωκον +τὴν +ἐκκλησίαν +τοῦ +Θεοῦ +καὶ +ἐπόρθουν +αὐτήν, +καὶ +προέκοπτον +ἐν +τῷ +Ἰουδαϊσμῷ +ὑπὲρ +πολλοὺς +συνηλικιώτας +ἐν +τῷ +γένει +μου, +περισσοτέρως +ὑπάρχων +ζηλωτὴς +τῶν +πατρικῶν +μου +παραδόσεων. +δὲ +Ὅτε +εὐδόκησεν +ὁ +ἀφορίσας +με +ἐκ +κοιλίας +μητρός +μου +καὶ +καλέσας +διὰ +τῆς +χάριτος +αὐτοῦ +ἀποκαλύψαι +τὸν +Υἱὸν +αὐτοῦ +ἐν +ἐμοὶ, +ἵνα +εὐαγγελίζωμαι +αὐτὸν +ἐν +τοῖς +ἔθνεσιν, +εὐθέως +οὐ +προσανεθέμην +σαρκὶ +καὶ +αἵματι, +οὐδὲ +ἀνῆλθον +εἰς +Ἱεροσόλυμα +πρὸς +τοὺς +πρὸ +ἐμοῦ +ἀποστόλους, +ἀλλὰ +ἀπῆλθον +εἰς +Ἀραβίαν, +καὶ +πάλιν +ὑπέστρεψα +εἰς +Δαμασκόν. +Ἔπειτα +μετὰ +τρία +ἔτη +ἀνῆλθον +εἰς +Ἱεροσόλυμα +ἱστορῆσαι +Κηφᾶν, +καὶ +ἐπέμεινα +πρὸς +αὐτὸν +ἡμέρας +δεκαπέντε· +δὲ +ἕτερον +τῶν +ἀποστόλων +οὐκ +εἶδον, +εἰ +μὴ +Ἰάκωβον +τὸν +ἀδελφὸν +τοῦ +Κυρίου. +δὲ +ἃ +γράφω +ὑμῖν, +ἰδοὺ +ἐνώπιον +τοῦ +Θεοῦ +ὅτι +οὐ +ψεύδομαι. +ἔπειτα +ἦλθον +εἰς +τὰ +κλίματα +τῆς +Συρίας +καὶ +τῆς +Κιλικίας. +δὲ +ἤμην +ἀγνοούμενος +τῷ +προσώπῳ +ταῖς +ἐκκλησίαις +τῆς +Ἰουδαίας +ταῖς +ἐν +Χριστῷ. +δὲ +μόνον +ἀκούοντες +ἦσαν +ὅτι +Ὁ +διώκων +ἡμᾶς +ποτε +νῦν +εὐαγγελίζεται +τὴν +πίστιν +ἥν +ποτε +ἐπόρθει, +καὶ +ἐδόξαζον +ἐν +ἐμοὶ +τὸν +Θεόν. +Ἔπειτα +διὰ +δεκατεσσάρων +ἐτῶν +πάλιν +ἀνέβην +εἰς +Ἱεροσόλυμα +μετὰ +Βαρνάβα +συνπαραλαβὼν +καὶ +Τίτον· +δὲ +ἀνέβην +κατὰ +ἀποκάλυψιν· +καὶ +ἀνεθέμην +αὐτοῖς +τὸ +εὐαγγέλιον +ὃ +κηρύσσω +ἐν +τοῖς +ἔθνεσιν, +δὲ +κατ’ +ἰδίαν +τοῖς +δοκοῦσιν, +μή +πως +εἰς +κενὸν +τρέχω +ἢ +ἔδραμον. +ἀλλ’ +οὐδὲ +Τίτος +ὁ +σὺν +ἐμοί, +Ἕλλην +ὤν, +ἠναγκάσθη +περιτμηθῆναι· +δὲ +διὰ +τοὺς +παρεισάκτους +ψευδαδέλφους, +οἵτινες +παρεισῆλθον +κατασκοπῆσαι +τὴν +ἐλευθερίαν +ἡμῶν +ἣν +ἔχομεν +ἐν +Χριστῷ +Ἰησοῦ, +ἵνα +ἡμᾶς +καταδουλώσουσιν· +οἷς +οὐδὲ +πρὸς +ὥραν +εἴξαμεν +τῇ +ὑποταγῇ, +ἵνα +ἡ +ἀλήθεια +τοῦ +εὐαγγελίου +διαμείνῃ +πρὸς +ὑμᾶς. +δὲ +ἀπὸ +τῶν +δοκούντων +εἶναί +τι, +—ὁποῖοί +ποτε +ἦσαν +οὐδέν +μοι +διαφέρει· +πρόσωπον +ἀνθρώπου +ὁ +Θεὸς +οὐ +λαμβάνει— +γὰρ +ἐμοὶ +οἱ +δοκοῦντες +οὐδὲν +προσανέθεντο, +ἀλλὰ +τοὐναντίον +ἰδόντες +ὅτι +πεπίστευμαι +τὸ +εὐαγγέλιον +τῆς +ἀκροβυστίας +καθὼς +Πέτρος +τῆς +περιτομῆς, +γὰρ +ὁ +ἐνεργήσας +Πέτρῳ +εἰς +ἀποστολὴν +τῆς +περιτομῆς +ἐνήργησεν +καὶ +ἐμοὶ +εἰς +τὰ +ἔθνη, +καὶ +γνόντες +τὴν +χάριν +τὴν +δοθεῖσάν +μοι, +Ἰάκωβος +καὶ +Κηφᾶς +καὶ +Ἰωάνης, +οἱ +δοκοῦντες +στῦλοι +εἶναι, +δεξιὰς +κοινωνίας, +ἔδωκαν +ἐμοὶ +καὶ +Βαρνάβα +ἵνα +ἡμεῖς +εἰς +τὰ +ἔθνη, +δὲ +αὐτοὶ +εἰς +τὴν +περιτομήν· +μόνον +ἵνα +τῶν +πτωχῶν +μνημονεύωμεν, +ὃ +καὶ +ἐσπούδασα +αὐτὸ +τοῦτο +ποιῆσαι. +δὲ +Ὅτε +ἦλθεν +Κηφᾶς +εἰς +Ἀντιόχειαν, +κατὰ +πρόσωπον +αὐτῷ +ἀντέστην, +ὅτι +κατεγνωσμένος +ἦν. +γὰρ +πρὸ +τοῦ +ἐλθεῖν +τινας +ἀπὸ +Ἰακώβου +μετὰ +τῶν +ἐθνῶν +συνήσθιεν· +δὲ +ὅτε +ἦλθον, +ὑπέστελλεν +καὶ +ἀφώριζεν +ἑαυτόν, +φοβούμενος +τοὺς +ἐκ +περιτομῆς. +καὶ +συνυπεκρίθησαν +αὐτῷ +καὶ +οἱ +λοιποὶ +Ἰουδαῖοι, +ὥστε +καὶ +Βαρνάβας +συναπήχθη +αὐτῶν +τῇ +ὑποκρίσει. +ἀλλ’ +ὅτε +εἶδον +ὅτι +οὐκ +ὀρθοποδοῦσιν +πρὸς +τὴν +ἀλήθειαν +τοῦ +εὐαγγελίου, +εἶπον +τῷ +Κηφᾷ +ἔμπροσθεν +πάντων +Εἰ +σὺ +Ἰουδαῖος +ὑπάρχων +ἐθνικῶς +καὶ +οὐκ +Ἰουδαϊκῶς +ζῇς, +πῶς +ἀναγκάζεις +τὰ +ἔθνη +ἰουδαΐζειν; +Ἠμεῖς +φύσει +Ἰουδαῖοι +καὶ +οὐκ +ἐξ +ἐθνῶν +ἁμαρτωλοί, +δὲ +εἰδότες +ὅτι +οὐ +δικαιοῦται +ἄνθρωπος +ἐξ +ἔργων +νόμου +ἐὰν +μὴ +διὰ +πίστεως +Χριστοῦ +Ἰησοῦ, +καὶ +ἡμεῖς +εἰς +Χριστὸν +Ἰησοῦν +ἐπιστεύσαμεν, +ἵνα +δικαιωθῶμεν +ἐκ +πίστεως +Χριστοῦ +καὶ +οὐκ +ἐξ +ἔργων +νόμου, +ὅτι +ἐξ +ἔργων +νόμου +οὐ +δικαιωθήσεται +πᾶσα +σάρξ. +δὲ +εἰ +ζητοῦντες +δικαιωθῆναι +ἐν +Χριστῷ +εὑρέθημεν +καὶ +αὐτοὶ +ἁμαρτωλοί, +ἆρα +Χριστὸς +ἁμαρτίας +διάκονος; +μὴ +γένοιτο. +γὰρ +εἰ +ἃ +κατέλυσα +ταῦτα +πάλιν +οἰκοδομῶ, +παραβάτην +ἐμαυτὸν +συνιστάνω. +γὰρ +ἐγὼ +διὰ +νόμου +νόμῳ +ἀπέθανον +ἵνα +Θεῷ +ζήσω· +Χριστῷ +συνεσταύρωμαι· +δὲ +ζῶ +οὐκέτι +ἐγώ, +δὲ +ζῇ +ἐν +ἐμοὶ +Χριστός· +δὲ +ὃ +νῦν +ζῶ +ἐν +σαρκί, +ζῶ +ἐν +πίστει +τῇ +τοῦ +Υἱοῦ +τοῦ +Θεοῦ +τοῦ +ἀγαπήσαντός +με +καὶ +παραδόντος +ἑαυτὸν +ὑπὲρ +ἐμοῦ. +Οὐκ +ἀθετῶ +τὴν +χάριν +τοῦ +Θεοῦ· +γὰρ +εἰ +διὰ +νόμου +δικαιοσύνη, +ἄρα +Χριστὸς +δωρεὰν +ἀπέθανεν. +Ὦ +ἀνόητοι +Γαλάται, +τίς +ὑμᾶς +ἐβάσκανεν, +οἷς +κατ’ +ὀφθαλμοὺς +Ἰησοῦς +Χριστὸς +προεγράφη +ἐσταυρωμένος; +θέλω +τοῦτο +μόνον +μαθεῖν +ἀφ’ +ὑμῶν, +τὸ +Πνεῦμα +ἐλάβετε +ἐξ +ἔργων +νόμου +ἢ +ἐξ +ἀκοῆς +πίστεως; +οὕτως +ἀνόητοί +ἐστε; +ἐναρξάμενοι +Πνεύματι +νῦν +σαρκὶ +ἐπιτελεῖσθε; +τοσαῦτα +ἐπάθετε +εἰκῇ; +εἴ +γε +καὶ +εἰκῇ. +οὖν +ὁ +ἐπιχορηγῶν +ὑμῖν +τὸ +Πνεῦμα +καὶ +ἐνεργῶν +δυνάμεις +ἐν +ὑμῖν, +ἐξ +ἔργων +νόμου +ἢ +ἐξ +ἀκοῆς +πίστεως; +καθὼς +Ἀβραὰμ +ἐπίστευσεν +τῷ +Θεῷ, +καὶ +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην. +ἄρα +Γινώσκετε +ὅτι +οἱ +ἐκ +πίστεως, +οὗτοι +υἱοί +Ἀβραάμ. +εἰσιν +δὲ +ἡ +γραφὴ +προϊδοῦσα +ὅτι +ἐκ +πίστεως +δικαιοῖ +τὰ +ἔθνη +ὁ +Θεὸς, +προευηγγελίσατο +τῷ +Ἀβραὰμ +ὅτι +Ἐνευλογηθήσονται +ἐν +σοὶ +πάντα +τὰ +ἔθνη. +ὥστε +οἱ +ἐκ +πίστεως +εὐλογοῦνται +σὺν +τῷ +πιστῷ +Ἀβραάμ. +γὰρ +Ὅσοι +ἐξ +ἔργων +νόμου +εἰσὶν, +ὑπὸ +κατάραν +εἰσίν, +γὰρ +γέγραπται +ὅτι +Ἐπικατάρατος +πᾶς +ὃς +οὐκ +ἐμμένει +πᾶσιν +τοῖς +γεγραμμένοις +ἐν +τῷ +βιβλίῳ +τοῦ +νόμου +τοῦ +ποιῆσαι +αὐτά. +δὲ +ὅτι +ἐν +νόμῳ +οὐδεὶς +δικαιοῦται +παρὰ +τῷ +Θεῷ +δῆλον, +ὅτι +Ὁ +δίκαιος +ἐκ +πίστεως +ζήσεται· +δὲ +ὁ +νόμος +οὐκ +ἔστιν +ἐκ +πίστεως, +ἀλλ’ +Ὁ +ποιήσας +αὐτὰ +ζήσεται +ἐν +αὐτοῖς. +Χριστὸς +ἡμᾶς +ἐξηγόρασεν +ἐκ +τῆς +κατάρας +τοῦ +νόμου +γενόμενος +ὑπὲρ +ἡμῶν +κατάρα, +ὅτι +γέγραπται +Ἐπικατάρατος +πᾶς +ὁ +κρεμάμενος +ἐπὶ +ξύλου, +ἵνα +εἰς +τὰ +ἔθνη +ἡ +εὐλογία +τοῦ +Ἀβραὰμ +γένηται +ἐν +Ἰησοῦ +Χριστῷ, +ἵνα +τὴν +ἐπαγγελίαν +τοῦ +Πνεύματος +λάβωμεν +διὰ +τῆς +πίστεως. +Ἀδελφοί, +κατὰ +ἄνθρωπον +λέγω. +ὅμως +ἀνθρώπου +κεκυρωμένην +διαθήκην +οὐδεὶς +ἀθετεῖ +ἢ +ἐπιδιατάσσεται. +δὲ +ἐρρέθησαν +αἱ +ἐπαγγελίαι +τῷ +Ἀβραὰμ +καὶ +τῷ +σπέρματι +αὐτοῦ. +οὐ +λέγει +Καὶ +τοῖς +σπέρμασιν, +ὡς +ἐπὶ +πολλῶν, +ἀλλ’ +ὡς +ἐφ’ +ἑνός +Καὶ +τῷ +σπέρματί +σου, +ὅς +ἐστιν +Χριστός. +δὲ +τοῦτο +λέγω· +διαθήκην +προκεκυρωμένην +ὑπὸ +τοῦ +Θεοῦ +ὁ +μετὰ +τετρακόσια +καὶ +τριάκοντα +ἔτη +γεγονὼς +νόμος +οὐκ +ἀκυροῖ, +εἰς +τὸ +καταργῆσαι +τὴν +ἐπαγγελίαν. +γὰρ +εἰ +ἐκ +νόμου +ἡ +κληρονομία, +οὐκέτι +ἐξ +ἐπαγγελίας· +δὲ +τῷ +Ἀβραὰμ +δι’ +ἐπαγγελίας +κεχάρισται +ὁ +Θεός. +οὖν +Τί +ὁ +νόμος; +τῶν +παραβάσεων +χάριν +προσετέθη, +ἄχρις +ἂν +ἔλθῃ +τὸ +σπέρμα +ᾧ +ἐπήγγελται, +διαταγεὶς +δι’ +ἀγγέλων +ἐν +χειρὶ +μεσίτου. +δὲ +ὁ +μεσίτης +ἑνὸς +οὐκ +ἔστιν, +δὲ +ὁ +Θεὸς +εἷς +ἐστιν. +οὖν +ὁ +νόμος +κατὰ +τῶν +ἐπαγγελιῶν +τοῦ +Θεοῦ; +μὴ +γένοιτο. +γὰρ +εἰ +ἐδόθη +νόμος +ὁ +δυνάμενος +ζωοποιῆσαι, +ἂν +ὄντως +ἐκ +νόμου +ἦν +ἡ +δικαιοσύνη· +ἀλλὰ +συνέκλεισεν +ἡ +γραφὴ +τὰ +πάντα +ὑπὸ +ἁμαρτίαν +ἵνα +ἡ +ἐπαγγελία +ἐκ +πίστεως +Ἰησοῦ +Χριστοῦ +δοθῇ +τοῖς +πιστεύουσιν. +δὲ +Πρὸ +τοῦ +ἐλθεῖν +τὴν +πίστιν +ὑπὸ +νόμον +ἐφρουρούμεθα +συνκλειόμενοι +εἰς +τὴν +μέλλουσαν +ἀποκαλυφθῆναι. +πίστιν +ὥστε +ὁ +νόμος +παιδαγωγὸς +ἡμῶν +γέγονεν +εἰς +Χριστόν, +ἵνα +ἐκ +πίστεως +δικαιωθῶμεν· +δὲ +ἐλθούσης +τῆς +πίστεως +οὐκέτι +ὑπὸ +παιδαγωγόν +ἐσμεν. +γὰρ +Πάντες +υἱοὶ +Θεοῦ +ἐστε +διὰ +τῆς +πίστεως +ἐν +Χριστῷ +Ἰησοῦ· +γὰρ +ὅσοι +εἰς +Χριστὸν +ἐβαπτίσθητε, +Χριστὸν +ἐνεδύσασθε. +οὐκ +ἔνι +Ἰουδαῖος +οὐδὲ +Ἕλλην, +οὐκ +ἔνι +δοῦλος +οὐδὲ +ἐλεύθερος, +οὐκ +ἔνι +ἄρσεν +καὶ +θῆλυ· +γὰρ +πάντες +ὑμεῖς +εἷς +ἐστε +ἐν +Χριστῷ +Ἰησοῦ. +δὲ +εἰ +ὑμεῖς +Χριστοῦ, +ἄρα +τοῦ +Ἀβραὰμ +σπέρμα +ἐστέ, +κατ’ +ἐπαγγελίαν +κληρονόμοι. +δέ, +Λέγω +ἐφ’ +ὅσον +χρόνον +ὁ +κληρονόμος +νήπιός +ἐστιν, +οὐδὲν +διαφέρει +δούλου +κύριος +πάντων +ὤν, +ἀλλὰ +ὑπὸ +ἐπιτρόπους +καὶ +οἰκονόμους +ἐστὶν +ἄχρι +τῆς +προθεσμίας +τοῦ +πατρός. +οὕτως +καὶ +ἡμεῖς, +ὅτε +ἦμεν +νήπιοι, +ὑπὸ +τὰ +στοιχεῖα +τοῦ +κόσμου +ἤμεθα +δεδουλωμένοι· +δὲ +ὅτε +ἦλθεν +τὸ +πλήρωμα +τοῦ +χρόνου, +ἐξαπέστειλεν +ὁ +Θεὸς +τὸν +Υἱὸν +αὐτοῦ, +γενόμενον +ἐκ +γυναικός, +γενόμενον +ὑπὸ +νόμον, +ἵνα +τοὺς +ὑπὸ +νόμον +ἐξαγοράσῃ, +ἵνα +τὴν +υἱοθεσίαν +ἀπολάβωμεν. +δέ +Ὅτι +ἐστε +υἱοί, +ἐξαπέστειλεν +ὁ +Θεὸς +τὸ +Πνεῦμα +τοῦ +Υἱοῦ +αὐτοῦ +εἰς +τὰς +καρδίας +ἡμῶν, +κρᾶζον +Ἀββᾶ +ὁ +Πατήρ. +ὥστε +εἶ +οὐκέτι +δοῦλος +ἀλλὰ +υἱός· +δὲ +εἰ +υἱός, +καὶ +κληρονόμος +διὰ +Θεοῦ. +Ἀλλὰ +μὲν +τότε +οὐκ +εἰδότες +Θεὸν +ἐδουλεύσατε +τοῖς +φύσει +μὴ +οὖσιν +θεοῖς· +δὲ +νῦν +γνόντες +Θεόν, +δὲ +μᾶλλον +γνωσθέντες +ὑπὸ +Θεοῦ, +πῶς +ἐπιστρέφετε +πάλιν +ἐπὶ +τὰ +ἀσθενῆ +καὶ +πτωχὰ +στοιχεῖα, +οἷς +πάλιν +ἄνωθεν +δουλεῦσαι +θέλετε; +παρατηρεῖσθε +ἡμέρας +καὶ +μῆνας +καὶ +καιροὺς +καὶ +ἐνιαυτούς. +φοβοῦμαι +ὑμᾶς +μή +πως +εἰκῇ +κεκοπίακα +εἰς +ὑμᾶς. +Γίνεσθε +ὡς +ἐγώ, +ὅτι +κἀγὼ +ὡς +ὑμεῖς, +ἀδελφοί, +δέομαι +ὑμῶν. +οὐδέν +με +ἠδικήσατε· +δὲ +οἴδατε +ὅτι +δι’ +ἀσθένειαν +τῆς +σαρκὸς +εὐηγγελισάμην +ὑμῖν +τὸ +πρότερον, +καὶ +οὐκ +τὸν +πειρασμὸν +ὑμῶν +ἐν +τῇ +σαρκί +μου +ἐξουθενήσατε +οὐδὲ +ἐξεπτύσατε, +ἀλλὰ +ὡς +ἄγγελον +Θεοῦ +ἐδέξασθέ +με, +ὡς +Χριστὸν +Ἰησοῦν. +οὖν +ποῦ +ὁ +μακαρισμὸς +ὑμῶν; +γὰρ +μαρτυρῶ +ὑμῖν +ὅτι +εἰ +δυνατὸν +τοὺς +ὀφθαλμοὺς +ὑμῶν +ἐξορύξαντες +ἐδώκατέ +μοι. +ὥστε +ἐχθρὸς +ὑμῶν +γέγονα +ἀληθεύων +ὑμῖν; +ζηλοῦσιν +ὑμᾶς +οὐ +καλῶς, +ἀλλὰ +ἐκκλεῖσαι +ὑμᾶς +θέλουσιν, +ἵνα +αὐτοὺς +ζηλοῦτε. +δὲ +καλὸν +ζηλοῦσθαι +ἐν +καλῷ +πάντοτε, +καὶ +μὴ +μόνον +ἐν +τῷ +παρεῖναί +με +πρὸς +ὑμᾶς, +τέκνα +μου, +οὓς +πάλιν +ὠδίνω +μέχρις +οὗ +μορφωθῇ +Χριστὸς +ἐν +ὑμῖν· +δὲ +ἤθελον +παρεῖναι +πρὸς +ὑμᾶς +ἄρτι +καὶ +ἀλλάξαι +τὴν +φωνήν +μου, +ὅτι +ἀποροῦμαι +ἐν +ὑμῖν. +Λέγετέ +μοι, +οἱ +ὑπὸ +νόμον +εἶναι, +θέλοντες +τὸν +νόμον +οὐκ +ἀκούετε; +γὰρ +γέγραπται +ὅτι +Ἀβραὰμ +ἔσχεν, +δύο +υἱοὺς +ἕνα +ἐκ +τῆς +παιδίσκης +καὶ +ἕνα +ἐκ +τῆς +ἐλευθέρας. +ἀλλ’ +μὲν +ὁ +ἐκ +τῆς +παιδίσκης +κατὰ +σάρκα +γεγέννηται, +δὲ +ὁ +ἐκ +τῆς +ἐλευθέρας +διὰ +τῆς +ἐπαγγελίας. +ἅτινά +ἐστιν +ἀλληγορούμενα· +γάρ +αὗται +εἰσιν +δύο +διαθῆκαι, +μὲν +μία +ἀπὸ +ὄρους +Σινᾶ, +εἰς +δουλείαν +γεννῶσα, +ἥτις +ἐστὶν +Ἄγαρ, +δὲ +τὸ +Ἄγαρ +Σινᾶ +ὄρος +ἐστὶν +ἐν +τῇ +Ἀραβίᾳ· +δὲ +συνστοιχεῖ +τῇ +νῦν +Ἱερουσαλήμ, +γὰρ +δουλεύει +μετὰ +τῶν +τέκνων +αὐτῆς. +δὲ +ἡ +ἄνω +Ἱερουσαλὴμ +ἐλευθέρα +ἐστίν, +ἥτις +ἐστὶν +μήτηρ +ἡμῶν· +γάρ +γέγραπται +Εὐφράνθητι, +στεῖρα +ἡ +οὐ +τίκτουσα, +ῥῆξον +καὶ +βόησον, +ἡ +οὐκ +ὠδίνουσα· +ὅτι +πολλὰ +τὰ +τέκνα +τῆς +ἐρήμου +μᾶλλον +ἢ +τῆς +ἐχούσης +τὸν +ἄνδρα. +δέ, +ἀδελφοί, +ὑμεῖς +κατὰ +Ἰσαὰκ +ἐπαγγελίας +τέκνα +ἐστέ. +ἀλλ’ +ὥσπερ +τότε +ὁ +κατὰ +σάρκα +γεννηθεὶς +ἐδίωκεν +τὸν +κατὰ +Πνεῦμα, +οὕτως +καὶ +νῦν. +ἀλλὰ +τί +λέγει +ἡ +γραφή; +Ἔκβαλε +τὴν +παιδίσκην +καὶ +τὸν +υἱὸν +αὐτῆς· +γὰρ +οὐ +μὴ +κληρονομήσει +ὁ +υἱὸς +τῆς +παιδίσκης +μετὰ +τοῦ +υἱοῦ +τῆς +ἐλευθέρας. +διό, +ἀδελφοί, +ἐσμὲν +οὐκ +παιδίσκης +τέκνα +ἀλλὰ +τῆς +ἐλευθέρας. +Τῇ +ἐλευθερίᾳ +ἡμᾶς +Χριστὸς +ἠλευθέρωσεν· +οὖν +στήκετε +καὶ +μὴ +πάλιν +ζυγῷ +δουλείας +ἐνέχεσθε. +Ἴδε +ἐγὼ +Παῦλος +λέγω +ὑμῖν +ὅτι +ἐὰν +περιτέμνησθε +Χριστὸς +ὑμᾶς +οὐδὲν +ὠφελήσει. +δὲ +μαρτύρομαι +πάλιν +παντὶ +ἀνθρώπῳ +περιτεμνομένῳ +ὅτι +ὀφειλέτης +ἐστὶν +ὅλον +τὸν +νόμον +ποιῆσαι. +κατηργήθητε +ἀπὸ +Χριστοῦ +οἵτινες +ἐν +νόμῳ +δικαιοῦσθε, +τῆς +χάριτος +ἐξεπέσατε. +γὰρ +ἡμεῖς +Πνεύματι +ἐκ +πίστεως +ἐλπίδα +δικαιοσύνης +ἀπεκδεχόμεθα. +γὰρ +ἐν +Χριστῷ +Ἰησοῦ +οὔτε +περιτομή +οὔτε +ἀκροβυστία, +τι +ἰσχύει +ἀλλὰ +πίστις +δι’ +ἀγάπης +ἐνεργουμένη. +Ἐτρέχετε +καλῶς· +τίς +ἐνέκοψεν +ὑμᾶς +ἀληθείᾳ +μὴ +πείθεσθαι; +ἡ +πεισμονὴ +οὐκ +ἐκ +τοῦ +καλοῦντος +ὑμᾶς. +μικρὰ +ζύμη +ὅλον +τὸ +φύραμα +ζυμοῖ. +ἐγὼ +πέποιθα +εἰς +ὑμᾶς +ἐν +Κυρίῳ +ὅτι +οὐδὲν +ἄλλο +φρονήσετε· +δὲ +ὁ +ταράσσων +ὑμᾶς +βαστάσει +τὸ +κρίμα, +ἐὰν +ὅστις +ᾖ. +δέ, +ἀδελφοί, +εἰ +Ἐγὼ +περιτομὴν +ἔτι +κηρύσσω, +τί +ἔτι +διώκομαι; +ἄρα +κατήργηται +τὸ +σκάνδαλον +τοῦ +σταυροῦ. +Ὄφελον +καὶ +ἀποκόψονται +οἱ +ἀναστατοῦντες +ὑμᾶς. +γὰρ +Ὑμεῖς +ἐπ’ +ἐλευθερίᾳ +ἐκλήθητε, +ἀδελφοί· +μόνον +μὴ +τὴν +ἐλευθερίαν +εἰς +ἀφορμὴν +τῇ +σαρκί, +ἀλλὰ +διὰ +τῆς +ἀγάπης +δουλεύετε +ἀλλήλοις. +γὰρ +ὁ +πᾶς +νόμος +πεπλήρωται, +ἐν +ἑνὶ +λόγῳ +ἐν +τῷ +Ἀγαπήσεις +τὸν +πλησίον +σου +ὡς +σεαυτόν. +δὲ +εἰ +ἀλλήλους +δάκνετε +καὶ +κατεσθίετε, +βλέπετε +μὴ +ὑπ’ +ἀλλήλων +ἀναλωθῆτε. +δέ, +Λέγω +Πνεύματι +περιπατεῖτε +καὶ +ἐπιθυμίαν +σαρκὸς +οὐ +μὴ +τελέσητε. +γὰρ +ἡ +σὰρξ +ἐπιθυμεῖ +κατὰ +τοῦ +Πνεύματος, +δὲ +τὸ +Πνεῦμα +κατὰ +τῆς +σαρκός, +γὰρ +ταῦτα +ἀλλήλοις +ἀντίκειται, +ἵνα +μὴ +ἐὰν +ἃ +θέλητε +ταῦτα +ποιῆτε. +δὲ +εἰ +Πνεύματι +ἄγεσθε, +οὐκ +ἐστὲ +ὑπὸ +νόμον. +δέ +φανερὰ +ἐστιν +τὰ +ἔργα +τῆς +σαρκός, +ἅτινά +ἐστιν +πορνεία, +ἀκαθαρσία, +ἀσέλγεια, +εἰδωλολατρεία, +φαρμακεία, +ἔχθραι, +ἔρις, +ζῆλος, +θυμοί, +ἐριθεῖαι, +διχοστασίαι, +αἱρέσεις, +φθόνοι, +μέθαι, +κῶμοι, +καὶ +τὰ +ὅμοια +τούτοις, +ἃ +προλέγω +ὑμῖν +καθὼς +προεῖπον +ὅτι +οἱ +τὰ +τοιαῦτα +πράσσοντες +βασιλείαν +Θεοῦ +οὐ +κληρονομήσουσιν. +δὲ +ὁ +καρπὸς +τοῦ +Πνεύματός +ἐστιν +ἀγάπη, +χαρά, +εἰρήνη, +μακροθυμία, +χρηστότης, +ἀγαθωσύνη, +πίστις, +πραΰτης, +ἐγκράτεια· +κατὰ +τῶν +τοιούτων +οὐκ +ἔστιν +νόμος. +δὲ +οἱ +τοῦ +Χριστοῦ +Ἰησοῦ +τὴν +σάρκα +ἐσταύρωσαν +σὺν +τοῖς +παθήμασιν +καὶ +ταῖς +ἐπιθυμίαις. +Εἰ +ζῶμεν +Πνεύματι, +Πνεύματι +καὶ +στοιχῶμεν. +μὴ +γινώμεθα +κενόδοξοι, +ἀλλήλους +προκαλούμενοι, +ἀλλήλοις +φθονοῦντες. +Ἀδελφοί, +ἐὰν +καὶ +προλημφθῇ +ἄνθρωπος +ἔν +τινι +παραπτώματι, +ὑμεῖς +οἱ +πνευματικοὶ +καταρτίζετε +τὸν +τοιοῦτον +ἐν +πνεύματι +πραΰτητος, +σκοπῶν +σεαυτόν, +μὴ +καὶ +σὺ +πειρασθῇς. +Ἀλλήλων +τὰ +βάρη +βαστάζετε, +καὶ +οὕτως +ἀναπληρώσετε +τὸν +νόμον +τοῦ +Χριστοῦ. +γὰρ +εἰ +δοκεῖ +τις +εἶναί +τι +μηδὲν +ὤν, +φρεναπατᾷ +ἑαυτόν. +δὲ +τὸ +ἔργον +ἑαυτοῦ +δοκιμαζέτω +ἕκαστος, +καὶ +τότε +εἰς +ἑαυτὸν +μόνον +τὸ +καύχημα +ἕξει +καὶ +οὐκ +εἰς +τὸν +ἕτερον· +γὰρ +ἕκαστος +τὸ +ἴδιον +φορτίον +βαστάσει. +δὲ +Κοινωνείτω +ὁ +κατηχούμενος +τὸν +λόγον +τῷ +κατηχοῦντι +ἐν +πᾶσιν +ἀγαθοῖς. +Μὴ +πλανᾶσθε, +Θεὸς +οὐ +μυκτηρίζεται. +γὰρ +ἐὰν +ὃ +σπείρῃ +ἄνθρωπος, +τοῦτο +καὶ +θερίσει· +ὅτι +ὁ +σπείρων +εἰς +τὴν +σάρκα +ἑαυτοῦ +ἐκ +τῆς +σαρκὸς +θερίσει +φθοράν, +δὲ +ὁ +σπείρων +εἰς +τὸ +Πνεῦμα +ἐκ +τοῦ +Πνεύματος +θερίσει +ζωὴν +αἰώνιον. +δὲ +τὸ +καλὸν +ποιοῦντες +μὴ +ἐνκακῶμεν· +γὰρ +καιρῷ +ἰδίῳ +θερίσομεν +μὴ +ἐκλυόμενοι. +Ἄρα +οὖν +ὡς +καιρὸν +ἔχωμεν, +ἐργαζώμεθα +τὸ +ἀγαθὸν +πρὸς +πάντας, +δὲ +μάλιστα +πρὸς +τοὺς +οἰκείους +τῆς +πίστεως. +Ἴδετε +πηλίκοις +γράμμασιν +ὑμῖν +ἔγραψα +τῇ +ἐμῇ +χειρί. +Ὅσοι +θέλουσιν +εὐπροσωπῆσαι +ἐν +σαρκί, +οὗτοι +ἀναγκάζουσιν +ὑμᾶς +περιτέμνεσθαι, +ἵνα +μόνον +τῷ +σταυρῷ +τοῦ +Χριστοῦ +μὴ +διώκωνται. +γὰρ +οὐδὲ +οἱ +περιτεμνόμενοι +αὐτοὶ +νόμον +φυλάσσουσιν, +ἀλλὰ +θέλουσιν +ὑμᾶς +περιτέμνεσθαι +ἵνα +ἐν +τῇ +ὑμετέρᾳ +σαρκὶ +καυχήσωνται. +δὲ +ἐμοὶ +μὴ +γένοιτο +καυχᾶσθαι +εἰ +μὴ +ἐν +τῷ +σταυρῷ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +δι’ +οὗ +ἐμοὶ +κόσμος +ἐσταύρωται +κἀγὼ +κόσμῳ. +γὰρ +τί +ἐστιν +οὔτε +περιτομή +οὔτε +ἀκροβυστία, +ἀλλὰ +καινὴ +κτίσις. +καὶ +ὅσοι +τῷ +κανόνι +τούτῳ +στοιχήσουσιν, +εἰρήνη +καὶ +ἔλεος, +ἐπ’ +αὐτοὺς +καὶ +ἐπὶ +τὸν +Ἰσραὴλ +τοῦ +Θεοῦ. +Τοῦ +λοιποῦ +κόπους +μοι +μηδεὶς +παρεχέτω· +γὰρ +ἐγὼ +τὰ +στίγματα +τοῦ +Ἰησοῦ +ἐν +τῷ +σώματί +μου +βαστάζω. +Ἠ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +μετὰ +τοῦ +πνεύματος +ὑμῶν, +ἀδελφοί· +ἀμήν. +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διὰ +θελήματος +Θεοῦ +τοῖς +ἁγίοις +τοῖς +οὖσιν +[ἐν +Ἐφέσῳ] +καὶ +πιστοῖς +ἐν +Χριστῷ +Ἰησοῦ· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +Εὐλογητὸς +ὁ +Θεὸς +καὶ +Πατὴρ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ὁ +εὐλογήσας +ἡμᾶς +ἐν +πάσῃ +εὐλογίᾳ +πνευματικῇ +ἐν +τοῖς +ἐπουρανίοις +ἐν +Χριστῷ, +καθὼς +ἐξελέξατο +ἡμᾶς +ἐν +αὐτῷ +πρὸ +καταβολῆς +κόσμου, +εἶναι +ἡμᾶς +ἁγίους +καὶ +ἀμώμους +κατενώπιον +αὐτοῦ, +ἐν +ἀγάπῃ +προορίσας +ἡμᾶς +εἰς +υἱοθεσίαν +διὰ +Ἰησοῦ +Χριστοῦ +εἰς +αὐτόν, +κατὰ +τὴν +εὐδοκίαν +τοῦ +θελήματος +αὐτοῦ, +εἰς +ἔπαινον +δόξης +τῆς +χάριτος +αὐτοῦ +ἧς +ἐχαρίτωσεν +ἡμᾶς +ἐν +τῷ +Ἠγαπημένῳ, +ἐν +ᾧ +ἔχομεν +τὴν +ἀπολύτρωσιν +διὰ +τοῦ +αἵματος +αὐτοῦ, +τὴν +ἄφεσιν +τῶν +παραπτωμάτων, +κατὰ +τὸ +πλοῦτος +τῆς +χάριτος +αὐτοῦ +ἧς +ἐπερίσσευσεν +εἰς +ἡμᾶς +ἐν +πάσῃ +σοφίᾳ +καὶ +φρονήσει +γνωρίσας +ἡμῖν +τὸ +μυστήριον +τοῦ +θελήματος +αὐτοῦ, +κατὰ +τὴν +εὐδοκίαν +αὐτοῦ, +ἣν +προέθετο +ἐν +αὐτῷ +εἰς +οἰκονομίαν +τοῦ +πληρώματος +τῶν +καιρῶν, +ἀνακεφαλαιώσασθαι +τὰ +πάντα +ἐν +τῷ +Χριστῷ, +τὰ +ἐπὶ +τοῖς +οὐρανοῖς +καὶ +τὰ +ἐπὶ +τῆς +γῆς· +ἐν +αὐτῷ, +ἐν +ᾧ +καὶ +ἐκληρώθημεν +προορισθέντες +κατὰ +πρόθεσιν +τοῦ +τὰ +πάντα +ἐνεργοῦντος +κατὰ +τὴν +βουλὴν +τοῦ +θελήματος +αὐτοῦ, +εἰς +τὸ +εἶναι +εἰς +ἔπαινον +δόξης +αὐτοῦ +ἡμᾶς +τοὺς +προηλπικότας +ἐν +τῷ +Χριστῷ· +ἐν +ᾧ +καὶ +ὑμεῖς, +ἀκούσαντες +τὸν +λόγον +τῆς +ἀληθείας, +τὸ +εὐαγγέλιον +τῆς +σωτηρίας +ὑμῶν, +ἐν +ᾧ +καὶ +πιστεύσαντες +ἐσφραγίσθητε +τῷ +Πνεύματι +τῆς +ἐπαγγελίας +τῷ +Ἁγίῳ, +ὅς +ἐστιν +ἀρραβὼν +τῆς +κληρονομίας +ἡμῶν, +εἰς +ἀπολύτρωσιν +τῆς +περιποιήσεως, +εἰς +ἔπαινον +τῆς +δόξης +αὐτοῦ. +Διὰ +τοῦτο +κἀγώ, +ἀκούσας +τὴν +καθ’ +ὑμᾶς +πίστιν +ἐν +τῷ +Κυρίῳ +Ἰησοῦ +καὶ +τὴν +ἀγάπην +τὴν +εἰς +πάντας +τοὺς +ἁγίους, +οὐ +παύομαι +εὐχαριστῶν +ὑπὲρ +ὑμῶν +μνείαν +ποιούμενος +ἐπὶ +τῶν +προσευχῶν +μου, +ἵνα +ὁ +Θεὸς +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ὁ +Πατὴρ +τῆς +δόξης, +δώῃ +ὑμῖν +πνεῦμα +σοφίας +καὶ +ἀποκαλύψεως +ἐν +ἐπιγνώσει +αὐτοῦ, +πεφωτισμένους +τοὺς +ὀφθαλμοὺς +τῆς +καρδίας +ὑμῶν, +εἰς +τὸ +εἰδέναι +ὑμᾶς +τίς +ἐστιν +ἡ +ἐλπὶς +τῆς +κλήσεως +αὐτοῦ, +τίς +ὁ +πλοῦτος +τῆς +δόξης +τῆς +κληρονομίας +αὐτοῦ +ἐν +τοῖς +ἁγίοις, +καὶ +τί +τὸ +ὑπερβάλλον +μέγεθος +τῆς +δυνάμεως +αὐτοῦ +εἰς +ἡμᾶς +τοὺς +πιστεύοντας +κατὰ +τὴν +ἐνέργειαν +τοῦ +κράτους +τῆς +ἰσχύος +αὐτοῦ, +ἣν +ἐνήργηκεν +ἐν +τῷ +Χριστῷ +ἐγείρας +αὐτὸν +ἐκ +νεκρῶν, +καὶ +καθίσας +ἐν +δεξιᾷ +αὐτοῦ +ἐν +τοῖς +ἐπουρανίοις +ὑπεράνω +πάσης +ἀρχῆς +καὶ +ἐξουσίας +καὶ +δυνάμεως +καὶ +κυριότητος +καὶ +παντὸς +ὀνόματος +ὀνομαζομένου +οὐ +μόνον +ἐν +τῷ +αἰῶνι +τούτῳ +ἀλλὰ +καὶ +ἐν +τῷ +μέλλοντι· +καὶ +πάντα +ὑπέταξεν +ὑπὸ +τοὺς +πόδας +αὐτοῦ, +καὶ +αὐτὸν +ἔδωκεν +κεφαλὴν +ὑπὲρ +πάντα +τῇ +ἐκκλησίᾳ, +ἥτις +ἐστὶν +τὸ +σῶμα +αὐτοῦ, +τὸ +πλήρωμα +τοῦ +τὰ +πάντα +ἐν +πᾶσιν +πληρουμένου. +καὶ +ὑμᾶς +ὄντας +νεκροὺς +τοῖς +παραπτώμασιν +καὶ +ταῖς +ἁμαρτίαις +ὑμῶν, +ἐν +αἷς +ποτε +περιεπατήσατε +κατὰ +τὸν +αἰῶνα +τοῦ +κόσμου +τούτου, +κατὰ +τὸν +ἄρχοντα +τῆς +ἐξουσίας +τοῦ +ἀέρος, +τοῦ +πνεύματος +τοῦ +νῦν +ἐνεργοῦντος +ἐν +τοῖς +υἱοῖς +τῆς +ἀπειθείας· +ἐν +οἷς +καὶ +ἡμεῖς +πάντες +ἀνεστράφημέν +ποτε +ἐν +ταῖς +ἐπιθυμίαις +τῆς +σαρκὸς +ἡμῶν, +ποιοῦντες +τὰ +θελήματα +τῆς +σαρκὸς +καὶ +τῶν +διανοιῶν, +καὶ +ἤμεθα +τέκνα +ὀργῆς +φύσει +ὡς +καὶ +οἱ +λοιποί· +δὲ +ὁ +Θεὸς +πλούσιος +ὢν +ἐν +ἐλέει, +διὰ +τὴν +πολλὴν +ἀγάπην +αὐτοῦ +ἣν +ἠγάπησεν +ἡμᾶς, +καὶ +ὄντας +ἡμᾶς +νεκροὺς +τοῖς +παραπτώμασιν +συνεζωοποίησεν +τῷ +Χριστῷ,— +χάριτί +ἐστε +σεσῳσμένοι,— +καὶ +συνήγειρεν +καὶ +συνεκάθισεν +ἐν +τοῖς +ἐπουρανίοις +ἐν +Χριστῷ +Ἰησοῦ, +ἵνα +ἐνδείξηται +ἐν +τοῖς +αἰῶσιν +τοῖς +ἐπερχομένοις +τὸ +ὑπερβάλλον +πλοῦτος +τῆς +χάριτος +αὐτοῦ +ἐν +χρηστότητι +ἐφ’ +ἡμᾶς +ἐν +Χριστῷ +Ἰησοῦ. +γὰρ +τῇ +χάριτί +ἐστε +σεσῳσμένοι +διὰ +πίστεως· +καὶ +τοῦτο +οὐκ +ἐξ +ὑμῶν, +Θεοῦ +τὸ +δῶρον· +οὐκ +ἐξ +ἔργων, +ἵνα +μή +τις +καυχήσηται. +γάρ +ἐσμεν +αὐτοῦ +ποίημα, +κτισθέντες +ἐν +Χριστῷ +Ἰησοῦ +ἐπὶ +ἔργοις +ἀγαθοῖς, +οἷς +προητοίμασεν +ὁ +Θεὸς +ἵνα +ἐν +αὐτοῖς +περιπατήσωμεν. +Διὸ +μνημονεύετε +ὅτι +ποτὲ +ὑμεῖς +τὰ +ἔθνη +ἐν +σαρκί, +οἱ +λεγόμενοι +ἀκροβυστία +ὑπὸ +τῆς +λεγομένης +περιτομῆς +ἐν +σαρκὶ +χειροποιήτου, +ὅτι +ἦτε +τῷ +καιρῷ +ἐκείνῳ +χωρὶς +Χριστοῦ, +ἀπηλλοτριωμένοι +τῆς +πολιτείας +τοῦ +Ἰσραὴλ +καὶ +ξένοι +τῶν +διαθηκῶν +τῆς +ἐπαγγελίας, +ἐλπίδα +μὴ +ἔχοντες +καὶ +ἄθεοι +ἐν +τῷ +κόσμῳ. +δὲ +νυνὶ +ἐν +Χριστῷ +Ἰησοῦ +ὑμεῖς +οἵ +ποτε +ὄντες +μακρὰν +ἐγενήθητε +ἐγγὺς +ἐν +τῷ +αἵματι +τοῦ +Χριστοῦ. +γάρ +Αὐτὸς +ἐστιν +ἡ +εἰρήνη +ἡμῶν, +ὁ +ποιήσας +τὰ +ἀμφότερα +ἓν +καὶ +τὸ +μεσότοιχον +τοῦ +φραγμοῦ +τὴν +ἔχθραν, +λύσας, +ἐν +τῇ +σαρκὶ +αὐτοῦ +τὸν +νόμον +τῶν +ἐντολῶν +ἐν +δόγμασιν +καταργήσας, +ἵνα +τοὺς +δύο +κτίσῃ +ἐν +αὑτῷ +εἰς +ἕνα +καινὸν +ἄνθρωπον +ποιῶν +εἰρήνην, +καὶ +ἀποκαταλλάξῃ +τοὺς +ἀμφοτέρους +ἐν +ἑνὶ +σώματι +τῷ +Θεῷ +διὰ +τοῦ +σταυροῦ, +ἀποκτείνας +τὴν +ἔχθραν +ἐν +αὐτῷ· +καὶ +ἐλθὼν +εὐηγγελίσατο +εἰρήνην +ὑμῖν +τοῖς +μακρὰν +καὶ +εἰρήνην +τοῖς +ἐγγύς· +ὅτι +δι’ +αὐτοῦ +ἔχομεν +τὴν +προσαγωγὴν +οἱ +ἀμφότεροι +ἐν +ἑνὶ +Πνεύματι +πρὸς +τὸν +Πατέρα. +ἄρα +οὖν +οὐκέτι +ἐστὲ +ξένοι +καὶ +πάροικοι, +ἀλλὰ +ἐστὲ +συνπολῖται +τῶν +ἁγίων +καὶ +οἰκεῖοι +τοῦ +Θεοῦ, +ἐποικοδομηθέντες +ἐπὶ +τῷ +θεμελίῳ +τῶν +ἀποστόλων +καὶ +προφητῶν, +ὄντος +ἀκρογωνιαίου +αὐτοῦ +Χριστοῦ +Ἰησοῦ, +ἐν +ᾧ +πᾶσα +οἰκοδομὴ +συναρμολογουμένη +αὔξει +εἰς +ναὸν +ἅγιον +ἐν +Κυρίῳ, +ἐν +ᾧ +καὶ +ὑμεῖς +συνοικοδομεῖσθε +εἰς +κατοικητήριον +τοῦ +Θεοῦ +ἐν +Πνεύματι. +Τούτου +χάριν +ἐγὼ +Παῦλος +ὁ +δέσμιος +τοῦ +Χριστοῦ +Ἰησοῦ +ὑπὲρ +ὑμῶν +τῶν +ἐθνῶν— +εἴ +γε +ἠκούσατε +τὴν +οἰκονομίαν +τῆς +χάριτος +τοῦ +Θεοῦ +τῆς +δοθείσης +μοι +εἰς +ὑμᾶς, +ὅτι +κατὰ +ἀποκάλυψιν +ἐγνωρίσθη +μοι +τὸ +μυστήριον, +καθὼς +προέγραψα +ἐν +ὀλίγῳ, +πρὸς +ὃ +δύνασθε +ἀναγινώσκοντες +νοῆσαι +τὴν +σύνεσίν +μου +ἐν +τῷ +μυστηρίῳ +τοῦ +Χριστοῦ, +ὃ +ἑτέραις +γενεαῖς +οὐκ +ἐγνωρίσθη +τοῖς +υἱοῖς +τῶν +ἀνθρώπων +ὡς +νῦν +ἀπεκαλύφθη +τοῖς +ἁγίοις +ἀποστόλοις +αὐτοῦ +καὶ +προφήταις +ἐν +Πνεύματι, +εἶναι +τὰ +ἔθνη +συνκληρονόμα +καὶ +σύνσωμα +καὶ +συνμέτοχα +τῆς +ἐπαγγελίας +ἐν +Χριστῷ +Ἰησοῦ +διὰ +τοῦ +εὐαγγελίου, +οὗ +διάκονος +ἐγενήθην +κατὰ +τὴν +δωρεὰν +τῆς +χάριτος +τοῦ +Θεοῦ +τῆς +δοθείσης +μοι +κατὰ +τὴν +ἐνέργειαν +τῆς +δυνάμεως +αὐτοῦ. +ἐμοὶ +τῷ +ἐλαχιστοτέρῳ +πάντων +ἁγίων +ἐδόθη +ἡ +χάρις +αὕτη, +τοῖς +ἔθνεσιν +εὐαγγελίσασθαι +τὸ +ἀνεξιχνίαστον +πλοῦτος +τοῦ +Χριστοῦ, +καὶ +φωτίσαι +τίς +ἡ +οἰκονομία +τοῦ +μυστηρίου +τοῦ +ἀποκεκρυμμένου +ἀπὸ +τῶν +αἰώνων +ἐν +τῷ +Θεῷ +τῷ +τὰ +πάντα +κτίσαντι, +ἵνα +γνωρισθῇ +νῦν +ταῖς +ἀρχαῖς +καὶ +ταῖς +ἐξουσίαις +ἐν +τοῖς +ἐπουρανίοις +διὰ +τῆς +ἐκκλησίας +ἡ +πολυποίκιλος +σοφία +τοῦ +Θεοῦ, +κατὰ +πρόθεσιν +τῶν +αἰώνων +ἣν +ἐποίησεν +ἐν +τῷ +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν, +ἐν +ᾧ +ἔχομεν +τὴν +παρρησίαν +καὶ +προσαγωγὴν +ἐν +πεποιθήσει +διὰ +τῆς +πίστεως +αὐτοῦ. +διὸ +αἰτοῦμαι +μὴ +ἐνκακεῖν +ἐν +ταῖς +θλίψεσίν +μου +ὑπὲρ +ὑμῶν, +ἥτις +ἐστὶν +δόξα +ὑμῶν. +Τούτου +χάριν +κάμπτω +τὰ +γόνατά +μου +πρὸς +τὸν +Πατέρα, +ἐξ +οὗ +πᾶσα +πατριὰ +ἐν +οὐρανοῖς +καὶ +ἐπὶ +γῆς +ὀνομάζεται, +ἵνα +δῷ +ὑμῖν +κατὰ +τὸ +πλοῦτος +τῆς +δόξης +αὐτοῦ +δυνάμει +κραταιωθῆναι +διὰ +τοῦ +Πνεύματος +αὐτοῦ +εἰς +τὸν +ἔσω +ἄνθρωπον, +κατοικῆσαι +τὸν +Χριστὸν +διὰ +τῆς +πίστεως +ἐν +ταῖς +καρδίαις +ὑμῶν, +ἐν +ἀγάπῃ +ἐρριζωμένοι +καὶ +τεθεμελιωμένοι, +ἵνα +ἐξισχύσητε +καταλαβέσθαι +σὺν +πᾶσιν +τοῖς +ἁγίοις +τί +τὸ +πλάτος +καὶ +μῆκος +καὶ +ὕψος +καὶ +βάθος, +τε +γνῶναί +τὴν +ὑπερβάλλουσαν +τῆς +γνώσεως +ἀγάπην +τοῦ +Χριστοῦ, +ἵνα +πληρωθῆτε +εἰς +πᾶν +τὸ +πλήρωμα +τοῦ +Θεοῦ. +δὲ +Τῷ +δυναμένῳ +ποιῆσαι +ὑπερεκπερισσοῦ +ὑπὲρ +πάντα +ὧν +αἰτούμεθα +ἢ +νοοῦμεν +κατὰ +τὴν +δύναμιν +τὴν +ἐνεργουμένην +ἐν +ἡμῖν, +αὐτῷ +ἡ +δόξα +ἐν +τῇ +ἐκκλησίᾳ +καὶ +ἐν +Χριστῷ +Ἰησοῦ +εἰς +πάσας +τὰς +γενεὰς +τοῦ +αἰῶνος +τῶν +αἰώνων· +ἀμήν. +οὖν +Παρακαλῶ +ὑμᾶς +ἐγὼ +ὁ +δέσμιος +ἐν +Κυρίῳ +ἀξίως +περιπατῆσαι +τῆς +κλήσεως +ἧς +ἐκλήθητε, +μετὰ +πάσης +ταπεινοφροσύνης +καὶ +πραΰτητος, +μετὰ +μακροθυμίας, +ἀνεχόμενοι +ἀλλήλων +ἐν +ἀγάπῃ, +σπουδάζοντες +τηρεῖν +τὴν +ἑνότητα +τοῦ +Πνεύματος +ἐν +τῷ +συνδέσμῳ +τῆς +εἰρήνης· +ἓν +σῶμα +καὶ +ἓν +Πνεῦμα, +καθὼς +καὶ +ἐκλήθητε +ἐν +μιᾷ +ἐλπίδι +τῆς +κλήσεως +ὑμῶν· +εἷς +Κύριος, +μία +πίστις, +ἓν +βάπτισμα· +εἷς +Θεὸς +καὶ +Πατὴρ +πάντων, +ὁ +ἐπὶ +πάντων +καὶ +διὰ +πάντων +καὶ +ἐν +πᾶσιν. +δὲ +Ἑνὶ +ἑκάστῳ +ἡμῶν +ἐδόθη +ἡ +χάρις +κατὰ +τὸ +μέτρον +τῆς +δωρεᾶς +τοῦ +Χριστοῦ. +διὸ +λέγει +Ἀναβὰς +εἰς +ὕψος +ᾐχμαλώτευσεν +αἰχμαλωσίαν, +ἔδωκεν +δόματα +τοῖς +ἀνθρώποις. +δὲ +τὸ +Ἀνέβη +τί +ἐστιν +εἰ +μὴ +ὅτι +καὶ +κατέβη +εἰς +τὰ +κατώτερα +μέρη +τῆς +γῆς; +ὁ +καταβὰς +αὐτός +ἐστιν +καὶ +ὁ +ἀναβὰς +ὑπεράνω +πάντων +τῶν +οὐρανῶν, +ἵνα +πληρώσῃ +τὰ +πάντα. +καὶ +αὐτὸς +ἔδωκεν +μὲν +τοὺς +ἀποστόλους, +δὲ +τοὺς +προφήτας, +δὲ +τοὺς +εὐαγγελιστάς, +δὲ +τοὺς +ποιμένας +καὶ +διδασκάλους, +πρὸς +τὸν +καταρτισμὸν +τῶν +ἁγίων +εἰς +ἔργον +διακονίας, +εἰς +οἰκοδομὴν +τοῦ +σώματος +τοῦ +Χριστοῦ, +μέχρι +καταντήσωμεν +οἱ +πάντες +εἰς +τὴν +ἑνότητα +τῆς +πίστεως +καὶ +τῆς +ἐπιγνώσεως +τοῦ +Υἱοῦ +τοῦ +Θεοῦ, +εἰς +ἄνδρα +τέλειον, +εἰς +μέτρον +ἡλικίας +τοῦ +πληρώματος +τοῦ +Χριστοῦ, +ἵνα +μηκέτι +ὦμεν +νήπιοι, +κλυδωνιζόμενοι +καὶ +περιφερόμενοι +παντὶ +ἀνέμῳ +τῆς +διδασκαλίας +ἐν +τῇ +κυβίᾳ +τῶν +ἀνθρώπων +ἐν +πανουργίᾳ +πρὸς +τὴν +μεθοδίαν +τῆς +πλάνης, +δὲ +ἀληθεύοντες +ἐν +ἀγάπῃ +αὐξήσωμεν +τὰ +πάντα, +εἰς +αὐτὸν +ὅς +ἐστιν +ἡ +κεφαλή, +Χριστός, +ἐξ +οὗ +πᾶν +τὸ +σῶμα +συναρμολογούμενον +καὶ +συνβιβαζόμενον +διὰ +πάσης +ἁφῆς +τῆς +ἐπιχορηγίας +κατ’ +ἐνέργειαν +ἐν +μέτρῳ +ἑνὸς +ἑκάστου +μέρους +τὴν +αὔξησιν +τοῦ +σώματος +ποιεῖται +εἰς +οἰκοδομὴν +ἑαυτοῦ +ἐν +ἀγάπῃ. +οὖν +Τοῦτο +λέγω +καὶ +μαρτύρομαι +ἐν +Κυρίῳ, +μηκέτι +ὑμᾶς +περιπατεῖν +καθὼς +καὶ +τὰ +ἔθνη +περιπατεῖ +ἐν +ματαιότητι +τοῦ +νοὸς +αὐτῶν, +ἐσκοτωμένοι +ὄντες, +τῇ +διανοίᾳ +ἀπηλλοτριωμένοι +τῆς +ζωῆς +τοῦ +Θεοῦ, +διὰ +τὴν +ἄγνοιαν +τὴν +οὖσαν +ἐν +αὐτοῖς, +διὰ +τὴν +πώρωσιν +τῆς +καρδίας +αὐτῶν, +οἵτινες +ἀπηλγηκότες +ἑαυτοὺς +παρέδωκαν +τῇ +ἀσελγείᾳ +εἰς +ἐργασίαν +ἀκαθαρσίας +πάσης +ἐν +πλεονεξίᾳ. +δὲ +ὑμεῖς +οὐχ +οὕτως +ἐμάθετε +τὸν +Χριστόν, +εἴ +γε +αὐτὸν +ἠκούσατε +καὶ +ἐν +αὐτῷ +ἐδιδάχθητε, +καθώς +ἐστιν +ἀλήθεια +ἐν +τῷ +Ἰησοῦ, +ἀποθέσθαι +ὑμᾶς +κατὰ +τὴν +προτέραν +ἀναστροφὴν +τὸν +παλαιὸν +ἄνθρωπον +τὸν +φθειρόμενον +κατὰ +τὰς +ἐπιθυμίας +τῆς +ἀπάτης, +δὲ +ἀνανεοῦσθαι +τῷ +πνεύματι +τοῦ +νοὸς +ὑμῶν, +καὶ +ἐνδύσασθαι +τὸν +καινὸν +ἄνθρωπον +τὸν +κατὰ +Θεὸν +κτισθέντα +ἐν +δικαιοσύνῃ +καὶ +ὁσιότητι +τῆς +ἀληθείας. +Διὸ +ἀποθέμενοι +τὸ +ψεῦδος +λαλεῖτε +ἀλήθειαν +ἕκαστος +μετὰ +τοῦ +πλησίον +αὐτοῦ, +ὅτι +ἐσμὲν +ἀλλήλων +μέλη. +ὀργίζεσθε +καὶ +μὴ +ἁμαρτάνετε· +ὁ +ἥλιος +μὴ +ἐπιδυέτω +ἐπὶ +παροργισμῷ +ὑμῶν, +μηδὲ +δίδοτε +τόπον +τῷ +διαβόλῳ. +ὁ +κλέπτων +μηκέτι +κλεπτέτω, +δὲ +μᾶλλον +κοπιάτω +ἐργαζόμενος +ταῖς +ἰδίαις +χερσὶν +τὸ +ἀγαθόν, +ἵνα +ἔχῃ +μεταδιδόναι +τῷ +χρείαν +ἔχοντι. +πᾶς +λόγος +σαπρὸς +ἐκ +τοῦ +στόματος +ὑμῶν +μὴ +ἐκπορευέσθω, +ἀλλὰ +εἴ +τις +ἀγαθὸς +πρὸς +οἰκοδομὴν +τῆς +χρείας, +ἵνα +δῷ +χάριν +τοῖς +ἀκούουσιν. +καὶ +μὴ +λυπεῖτε +τὸ +Πνεῦμα +τὸ +Ἅγιον +τοῦ +Θεοῦ, +ἐν +ᾧ +ἐσφραγίσθητε +εἰς +ἡμέραν +ἀπολυτρώσεως. +πᾶσα +πικρία +καὶ +θυμὸς +καὶ +ὀργὴ +καὶ +κραυγὴ +καὶ +βλασφημία +ἀρθήτω +ἀφ’ +ὑμῶν +σὺν +πάσῃ +κακίᾳ. +δὲ +γίνεσθε +εἰς +ἀλλήλους +χρηστοί, +εὔσπλαγχνοι, +χαριζόμενοι +ἑαυτοῖς +καθὼς +καὶ +ὁ +Θεὸς +ἐν +Χριστῷ +ἐχαρίσατο +ὑμῖν. +οὖν +γίνεσθε +μιμηταὶ +τοῦ +Θεοῦ, +ὡς +τέκνα +ἀγαπητά, +καὶ +περιπατεῖτε +ἐν +ἀγάπῃ, +καθὼς +καὶ +ὁ +Χριστὸς +ἠγάπησεν +ὑμᾶς +καὶ +παρέδωκεν +ἑαυτὸν +ὑπὲρ +ἡμῶν +προσφορὰν +καὶ +θυσίαν +τῷ +Θεῷ +εἰς +ὀσμὴν +εὐωδίας. +δὲ +Πορνεία +καὶ +ἀκαθαρσία +πᾶσα +ἢ +πλεονεξία +μηδὲ +ὀνομαζέσθω +ἐν +ὑμῖν, +καθὼς +πρέπει +ἁγίοις, +καὶ +αἰσχρότης +καὶ +μωρολογία +ἢ +εὐτραπελία, +ἃ +οὐκ +ἀνῆκεν, +ἀλλὰ +μᾶλλον +εὐχαριστία. +γὰρ +τοῦτο +ἴστε +γινώσκοντες, +ὅτι +πᾶς +πόρνος +ἢ +ἀκάθαρτος +ἢ +πλεονέκτης, +ὅ +ἐστιν +εἰδωλολάτρης, +οὐκ +ἔχει +κληρονομίαν +ἐν +τῇ +βασιλείᾳ +τοῦ +Χριστοῦ +καὶ +Θεοῦ. +Μηδεὶς +ὑμᾶς +ἀπατάτω +κενοῖς +λόγοις· +γὰρ +διὰ +ταῦτα +ἔρχεται +ἡ +ὀργὴ +τοῦ +Θεοῦ +ἐπὶ +τοὺς +υἱοὺς +τῆς +ἀπειθείας. +οὖν +μὴ +γίνεσθε +συνμέτοχοι +αὐτῶν· +γάρ +ἦτε +ποτε +σκότος, +δὲ +νῦν +φῶς +ἐν +Κυρίῳ· +ὡς +τέκνα +φωτὸς +περιπατεῖτε, +γὰρ +—ὁ +καρπὸς +τοῦ +φωτὸς +ἐν +πάσῃ +ἀγαθωσύνῃ +καὶ +δικαιοσύνῃ +καὶ +ἀληθείᾳ, +—δοκιμάζοντες +τί +ἐστιν +εὐάρεστον +τῷ +Κυρίῳ, +καὶ +μὴ +συνκοινωνεῖτε +τοῖς +ἔργοις +τοῖς +ἀκάρποις +τοῦ +σκότους, +δὲ +μᾶλλον +καὶ +ἐλέγχετε, +γὰρ +τὰ +κρυφῇ +γινόμενα +ὑπ’ +αὐτῶν +αἰσχρόν +ἐστιν +καὶ +λέγειν· +δὲ +τὰ +πάντα +ἐλεγχόμενα +ὑπὸ +τοῦ +φωτὸς +φανεροῦται· +γὰρ +πᾶν +τὸ +φανερούμενον +φῶς +ἐστιν. +διὸ +λέγει +Ἔγειρε, +ὁ +καθεύδων, +καὶ +ἀνάστα +ἐκ +τῶν +νεκρῶν, +καὶ +ἐπιφαύσει +σοι +ὁ +Χριστός. +οὖν +Βλέπετε +ἀκριβῶς +πῶς +περιπατεῖτε, +μὴ +ὡς +ἄσοφοι +ἀλλ’ +ὡς +σοφοί, +ἐξαγοραζόμενοι +τὸν +καιρόν, +ὅτι +αἱ +ἡμέραι +πονηραί +εἰσιν. +διὰ +τοῦτο +μὴ +γίνεσθε +ἄφρονες, +ἀλλὰ +συνίετε +τί +τὸ +θέλημα +τοῦ +Κυρίου. +καὶ +μὴ +μεθύσκεσθε +οἴνῳ, +ἐν +ᾧ +ἐστιν +ἀσωτία, +ἀλλὰ +πληροῦσθε +ἐν +Πνεύματι, +λαλοῦντες +ἑαυτοῖς +ψαλμοῖς +καὶ +ὕμνοις +καὶ +ᾠδαῖς +πνευματικαῖς, +ᾄδοντες +καὶ +ψάλλοντες +τῇ +καρδίᾳ +ὑμῶν +τῷ +Κυρίῳ, +εὐχαριστοῦντες +πάντοτε +ὑπὲρ +πάντων +ἐν +ὀνόματι +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τῷ +Θεῷ +καὶ +Πατρί, +ὑποτασσόμενοι +ἀλλήλοις +ἐν +φόβῳ +Χριστοῦ. +Αἱ +γυναῖκες +τοῖς +ἰδίοις +ἀνδράσιν +ὡς +τῷ +Κυρίῳ, +ὅτι +ἀνήρ +ἐστιν +κεφαλὴ +τῆς +γυναικὸς +ὡς +καὶ +ὁ +Χριστὸς +κεφαλὴ +τῆς +ἐκκλησίας, +αὐτὸς +σωτὴρ +τοῦ +σώματος. +ἀλλὰ +ὡς +ἡ +ἐκκλησία +ὑποτάσσεται +τῷ +Χριστῷ, +οὕτως +καὶ +αἱ +γυναῖκες +τοῖς +ἀνδράσιν +ἐν +παντί. +Οἱ +ἄνδρες, +ἀγαπᾶτε +τὰς +γυναῖκας, +καθὼς +καὶ +ὁ +Χριστὸς +ἠγάπησεν +τὴν +ἐκκλησίαν +καὶ +ἑαυτὸν +παρέδωκεν +ὑπὲρ +αὐτῆς, +ἵνα +αὐτὴν +ἁγιάσῃ +καθαρίσας +τῷ +λουτρῷ +τοῦ +ὕδατος +ἐν +ῥήματι, +ἵνα +παραστήσῃ +αὐτὸς +ἑαυτῷ +τὴν +ἐκκλησίαν, +ἔνδοξον +μὴ +ἔχουσαν +σπίλον +ἢ +ῥυτίδα +ἤ +τι +τῶν +τοιούτων, +ἀλλ’ +ἵνα +ᾖ +ἁγία +καὶ +ἄμωμος. +οὕτως +ὀφείλουσιν +καὶ +οἱ +ἄνδρες +ἀγαπᾶν +τὰς +ἑαυτῶν +γυναῖκας +ὡς +τὰ +ἑαυτῶν +σώματα. +ὁ +ἀγαπῶν +τὴν +ἑαυτοῦ +γυναῖκα +ἑαυτὸν +ἀγαπᾷ· +γάρ +οὐδεὶς +ποτε +τὴν +ἑαυτοῦ +σάρκα +ἐμίσησεν, +ἀλλὰ +ἐκτρέφει +καὶ +θάλπει +αὐτήν, +καθὼς +καὶ +ὁ +Χριστὸς +τὴν +ἐκκλησίαν, +ὅτι +ἐσμὲν +μέλη +τοῦ +σώματος +αὐτοῦ. +ἀντὶ +τούτου +καταλείψει +ἄνθρωπος +τὸν +πατέρα +καὶ +τὴν +μητέρα +καὶ +προσκολληθήσεται +πρὸς +τὴν +γυναῖκα +αὐτοῦ, +καὶ +ἔσονται +οἱ +δύο +εἰς +σάρκα +μίαν. +τὸ +μυστήριον +τοῦτο +μέγα +ἐστίν, +δὲ +ἐγὼ +λέγω +εἰς +Χριστὸν +καὶ +εἰς +τὴν +ἐκκλησίαν. +πλὴν +καὶ +ὑμεῖς +οἱ +καθ’ +ἕνα +ἕκαστος +τὴν +ἑαυτοῦ +γυναῖκα +οὕτως +ἀγαπάτω +ὡς +ἑαυτόν, +δὲ +ἡ +γυνὴ +ἵνα +φοβῆται +τὸν +ἄνδρα. +Τὰ +τέκνα, +ὑπακούετε +τοῖς +γονεῦσιν +ὑμῶν +ἐν +Κυρίῳ· +γάρ +τοῦτο +ἐστιν +δίκαιον. +τίμα +τὸν +πατέρα +σου +καὶ +τὴν +μητέρα, +ἥτις +ἐστὶν +ἐντολὴ +πρώτη +ἐν +ἐπαγγελίᾳ, +ἵνα +εὖ +σοι +γένηται +καὶ +ἔσῃ +μακροχρόνιος +ἐπὶ +τῆς +γῆς. +Καὶ +οἱ +πατέρες, +μὴ +παροργίζετε +τὰ +τέκνα +ὑμῶν, +ἀλλὰ +ἐκτρέφετε +αὐτὰ +ἐν +παιδείᾳ +καὶ +νουθεσίᾳ +Κυρίου. +Οἱ +δοῦλοι, +ὑπακούετε +τοῖς +κατὰ +σάρκα +κυρίοις +μετὰ +φόβου +καὶ +τρόμου +ἐν +ἁπλότητι +τῆς +καρδίας +ὑμῶν +ὡς +τῷ +Χριστῷ, +μὴ +κατ’ +ὀφθαλμοδουλίαν +ὡς +ἀνθρωπάρεσκοι, +ἀλλ’ +ὡς +δοῦλοι +Χριστοῦ +ποιοῦντες +τὸ +θέλημα +τοῦ +Θεοῦ +ἐκ +ψυχῆς, +μετ’ +εὐνοίας +δουλεύοντες, +ὡς +τῷ +Κυρίῳ +καὶ +οὐκ +ἀνθρώποις, +εἰδότες +ὅτι +ἐάν +ἕκαστος +τι +ἀγαθόν, +ποιήσῃ +τοῦτο +κομίσεται +παρὰ +Κυρίου, +εἴτε +δοῦλος +εἴτε +ἐλεύθερος. +Καὶ +οἱ +κύριοι, +τὰ +αὐτὰ +ποιεῖτε +πρὸς +αὐτούς, +ἀνιέντες +τὴν +ἀπειλήν, +εἰδότες +ὅτι +καὶ +αὐτῶν +καὶ +ὑμῶν +ὁ +Κύριός +ἐστιν +ἐν +οὐρανοῖς, +καὶ +προσωπολημψία +οὐκ +ἔστιν +παρ’ +αὐτῷ. +Τοῦ +λοιποῦ, +ἐνδυναμοῦσθε +ἐν +Κυρίῳ +καὶ +ἐν +τῷ +κράτει +τῆς +ἰσχύος +αὐτοῦ. +ἐνδύσασθε +τὴν +πανοπλίαν +τοῦ +Θεοῦ +πρὸς +τὸ +δύνασθαι +ὑμᾶς +στῆναι +πρὸς +τὰς +μεθοδίας +τοῦ +διαβόλου· +ὅτι +ἔστιν +ἡμῖν +ἡ +πάλη +οὐκ +πρὸς +αἷμα +καὶ +σάρκα, +ἀλλὰ +πρὸς +τὰς +ἀρχάς, +πρὸς +τὰς +ἐξουσίας, +πρὸς +τοὺς +κοσμοκράτορας +τοῦ +σκότους +τούτου, +πρὸς +τὰ +πνευματικὰ +τῆς +πονηρίας +ἐν +τοῖς +ἐπουρανίοις. +διὰ +τοῦτο +ἀναλάβετε +τὴν +πανοπλίαν +τοῦ +Θεοῦ, +ἵνα +δυνηθῆτε +ἀντιστῆναι +ἐν +τῇ +ἡμέρᾳ +τῇ +πονηρᾷ +καὶ +ἅπαντα +κατεργασάμενοι +στῆναι. +οὖν +στῆτε +περιζωσάμενοι +τὴν +ὀσφὺν +ὑμῶν +ἐν +ἀληθείᾳ, +καὶ +ἐνδυσάμενοι +τὸν +θώρακα +τῆς +δικαιοσύνης, +καὶ +ὑποδησάμενοι +τοὺς +πόδας +ἐν +ἑτοιμασίᾳ +τοῦ +εὐαγγελίου +τῆς +εἰρήνης, +ἐν +πᾶσιν +ἀναλαβόντες +τὸν +θυρεὸν +τῆς +πίστεως, +ἐν +ᾧ +δυνήσεσθε +πάντα +τὰ +βέλη +τοῦ +πονηροῦ +τὰ +πεπυρωμένα +σβέσαι· +καὶ +δέξασθε, +τὴν +περικεφαλαίαν +τοῦ +σωτηρίου +καὶ +τὴν +μάχαιραν +τοῦ +Πνεύματος, +ὅ +ἐστιν +ῥῆμα +Θεοῦ, +διὰ +πάσης +προσευχῆς +καὶ +δεήσεως, +προσευχόμενοι +ἐν +παντὶ +καιρῷ +ἐν +Πνεύματι, +καὶ +εἰς +αὐτὸ +ἀγρυπνοῦντες +ἐν +πάσῃ +προσκαρτερήσει +καὶ +δεήσει +περὶ +πάντων +τῶν +ἁγίων, +καὶ +ὑπὲρ +ἐμοῦ, +ἵνα +μοι +δοθῇ +λόγος +ἐν +ἀνοίξει +τοῦ +στόματός +μου, +ἐν +παρρησίᾳ +γνωρίσαι +τὸ +μυστήριον +τοῦ +εὐαγγελίου, +ὑπὲρ +οὗ +πρεσβεύω +ἐν +ἁλύσει, +ἵνα +ἐν +αὐτῷ +παρρησιάσωμαι +ὡς +δεῖ +με +λαλῆσαι. +δὲ +Ἵνα +εἰδῆτε +καὶ +ὑμεῖς +τὰ +κατ’ +ἐμέ, +τί +πράσσω, +πάντα +γνωρίσει +ὑμῖν +Τυχικὸς +ὁ +ἀγαπητὸς +ἀδελφὸς +καὶ +πιστὸς +διάκονος +ἐν +Κυρίῳ, +ὃν +ἔπεμψα +πρὸς +ὑμᾶς +εἰς +αὐτὸ +τοῦτο, +ἵνα +γνῶτε +τὰ +περὶ +ἡμῶν +καὶ +παρακαλέσῃ +τὰς +καρδίας +ὑμῶν. +τοῖς +ἀδελφοῖς +Εἰρήνη +καὶ +ἀγάπη +μετὰ +πίστεως +ἀπὸ +Θεοῦ +Πατρὸς +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +ἡ +χάρις +μετὰ +πάντων +τῶν +ἀγαπώντων +τὸν +Κύριον +ἡμῶν +Ἰησοῦν +Χριστὸν +ἐν +ἀφθαρσίᾳ. +Παῦλος +καὶ +Τιμόθεος +δοῦλοι +Χριστοῦ +Ἰησοῦ +πᾶσιν +τοῖς +ἁγίοις +ἐν +Χριστῷ +Ἰησοῦ +τοῖς +οὖσιν +ἐν +Φιλίπποις +σὺν +ἐπισκόποις +καὶ +διακόνοις· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +Εὐχαριστῶ +τῷ +Θεῷ +μου +ἐπὶ +πάσῃ +τῇ +μνείᾳ +ὑμῶν, +πάντοτε +ἐν +πάσῃ +δεήσει +μου +ὑπὲρ +πάντων +ὑμῶν +μετὰ +χαρᾶς +τὴν +δέησιν +ποιούμενος, +ἐπὶ +τῇ +κοινωνίᾳ +ὑμῶν +εἰς +τὸ +εὐαγγέλιον +ἀπὸ +τῆς +πρώτης +ἡμέρας +ἄχρι +τοῦ +νῦν, +πεποιθὼς +αὐτὸ +τοῦτο, +ὅτι +ὁ +ἐναρξάμενος +ἐν +ὑμῖν +ἔργον +ἀγαθὸν +ἐπιτελέσει +ἄχρι +ἡμέρας +Χριστοῦ +Ἰησοῦ· +καθώς +ἐστιν +δίκαιον +ἐμοὶ +τοῦτο +φρονεῖν +ὑπὲρ +πάντων +ὑμῶν, +διὰ +τὸ +ἔχειν +με +ἐν +τῇ +καρδίᾳ +ὑμᾶς, +τε +ἔν +τοῖς +δεσμοῖς +μου +καὶ +ἐν +τῇ +ἀπολογίᾳ +καὶ +βεβαιώσει +τοῦ +εὐαγγελίου +συνκοινωνούς +μου +τῆς +χάριτος +πάντας +ὑμᾶς +ὄντας. +γάρ +μάρτυς +μου +ὁ +Θεός, +ὡς +ἐπιποθῶ +πάντας +ὑμᾶς +ἐν +σπλάγχνοις +Χριστοῦ +Ἰησοῦ. +καὶ +τοῦτο +προσεύχομαι, +ἵνα +ἡ +ἀγάπη +ὑμῶν +ἔτι +μᾶλλον +καὶ +μᾶλλον +περισσεύῃ +ἐν +ἐπιγνώσει +καὶ +πάσῃ +αἰσθήσει, +εἰς +τὸ +δοκιμάζειν +ὑμᾶς +τὰ +διαφέροντα, +ἵνα +ἦτε +εἰλικρινεῖς +καὶ +ἀπρόσκοποι +εἰς +ἡμέραν +Χριστοῦ, +πεπληρωμένοι +καρπὸν +δικαιοσύνης +τὸν +διὰ +Ἰησοῦ +Χριστοῦ, +εἰς +δόξαν +καὶ +ἔπαινον +Θεοῦ. +δὲ +ἀδελφοί, +βούλομαι, +Γινώσκειν +ὑμᾶς +ὅτι +τὰ +κατ’ +ἐμὲ +μᾶλλον +εἰς +προκοπὴν +τοῦ +εὐαγγελίου +ἐλήλυθεν, +ὥστε +τοὺς +δεσμούς +μου +φανεροὺς +ἐν +Χριστῷ +γενέσθαι +ἐν +ὅλῳ +τῷ +πραιτωρίῳ +καὶ +τοῖς +λοιποῖς +πᾶσιν, +καὶ +τοὺς +πλείονας +τῶν +ἀδελφῶν +ἐν +Κυρίῳ +πεποιθότας +τοῖς +δεσμοῖς +μου +περισσοτέρως +τολμᾶν +ἀφόβως +τὸν +λόγον +τοῦ +Θεοῦ +λαλεῖν. +μὲν +Τινὲς +καὶ +διὰ +φθόνον +καὶ +ἔριν, +δὲ +τινὲς +καὶ +δι’ +εὐδοκίαν +τὸν +Χριστὸν +κηρύσσουσιν· +μὲν +οἱ +ἐξ +ἀγάπης, +εἰδότες +ὅτι +εἰς +ἀπολογίαν +τοῦ +εὐαγγελίου +κεῖμαι, +δὲ +οἱ +ἐξ +ἐριθείας +τὸν +Χριστὸν +καταγγέλλουσιν, +οὐχ +ἁγνῶς, +οἰόμενοι +θλῖψιν +ἐγείρειν +τοῖς +δεσμοῖς +μου. +γάρ; +τί +πλὴν +ὅτι +παντὶ +τρόπῳ, +εἴτε +προφάσει +εἴτε +ἀληθείᾳ, +Χριστὸς +καταγγέλλεται, +καὶ +ἐν +τούτῳ +χαίρω· +ἀλλὰ +καὶ +χαρήσομαι· +γὰρ +οἶδα +ὅτι +τοῦτό +μοι +ἀποβήσεται +εἰς +σωτηρίαν +διὰ +τῆς +ὑμῶν +δεήσεως +καὶ +ἐπιχορηγίας +τοῦ +Πνεύματος +Ἰησοῦ +Χριστοῦ, +κατὰ +τὴν +ἀποκαραδοκίαν +καὶ +ἐλπίδα +μου +ὅτι +ἐν +οὐδενὶ +αἰσχυνθήσομαι, +ἀλλ’ +ἐν +πάσῃ +παρρησίᾳ +ὡς +πάντοτε +καὶ +νῦν +μεγαλυνθήσεται +Χριστὸς +ἐν +τῷ +σώματί +μου, +εἴτε +διὰ +ζωῆς +εἴτε +διὰ +θανάτου. +γὰρ +Ἐμοὶ +τὸ +ζῆν +Χριστὸς +καὶ +τὸ +ἀποθανεῖν +κέρδος. +δὲ +εἰ +τὸ +ζῆν +ἐν +σαρκί, +τοῦτό +μοι +καρπὸς +ἔργου, +καὶ +τί +αἱρήσομαι +οὐ +γνωρίζω. +δὲ +συνέχομαι +ἐκ +τῶν +δύο, +τὴν +ἐπιθυμίαν +ἔχων +εἰς +τὸ +ἀναλῦσαι +καὶ +σὺν +Χριστῷ +εἶναι, +γὰρ +πολλῷ +μᾶλλον +κρεῖσσον· +δὲ +τὸ +ἐπιμένειν +τῇ +σαρκὶ +ἀναγκαιότερον +δι’ +ὑμᾶς. +καὶ +τοῦτο +πεποιθὼς +οἶδα, +ὅτι +μενῶ +καὶ +παραμενῶ +πᾶσιν +ὑμῖν +εἰς +τὴν +ὑμῶν +προκοπὴν +καὶ +χαρὰν +τῆς +πίστεως, +ἵνα +τὸ +καύχημα +ὑμῶν +περισσεύῃ +ἐν +Χριστῷ +Ἰησοῦ +ἐν +ἐμοὶ +διὰ +τῆς +ἐμῆς +παρουσίας +πάλιν +πρὸς +ὑμᾶς. +Μόνον +ἀξίως +τοῦ +εὐαγγελίου +τοῦ +Χριστοῦ +πολιτεύεσθε, +ἵνα +εἴτε +ἐλθὼν +καὶ +ἰδὼν +ὑμᾶς +εἴτε +ἀπὼν +ἀκούω +τὰ +περὶ +ὑμῶν, +ὅτι +στήκετε +ἐν +ἑνὶ +πνεύματι, +μιᾷ +ψυχῇ +συναθλοῦντες +τῇ +πίστει +τοῦ +εὐαγγελίου, +καὶ +μὴ +πτυρόμενοι +ἐν +μηδενὶ +ὑπὸ +τῶν +ἀντικειμένων, +ἥτις +ἐστὶν +αὐτοῖς +ἔνδειξις +ἀπωλείας, +δὲ +ὑμῶν +σωτηρίας, +καὶ +τοῦτο +ἀπὸ +Θεοῦ· +ὅτι +ὑμῖν +ἐχαρίσθη +τὸ +ὑπὲρ +Χριστοῦ, +οὐ +μόνον +τὸ +εἰς +αὐτὸν +πιστεύειν +ἀλλὰ +καὶ +τὸ +ὑπὲρ +αὐτοῦ +πάσχειν, +ἔχοντες +τὸν +αὐτὸν +ἀγῶνα +οἷον +εἴδετε +ἐν +ἐμοὶ +καὶ +νῦν +ἀκούετε +ἐν +ἐμοί. +οὖν +Εἴ +τις +παράκλησις +ἐν +Χριστῷ, +εἴ +τι +παραμύθιον +ἀγάπης, +εἴ +τις +κοινωνία +Πνεύματος, +εἴ +τις +σπλάγχνα +καὶ +οἰκτιρμοί, +πληρώσατέ +μου +τὴν +χαρὰν +ἵνα +τὸ +αὐτὸ +φρονῆτε, +τὴν +αὐτὴν +ἀγάπην +ἔχοντες, +σύνψυχοι, +τὸ +ἓν +φρονοῦντες, +μηδὲν +κατ’ +ἐριθείαν +μηδὲ +κατὰ +κενοδοξίαν, +ἀλλὰ +τῇ +ταπεινοφροσύνῃ +ἀλλήλους +ἡγούμενοι +ὑπερέχοντας +ἑαυτῶν, +μὴ +τὰ +ἑαυτῶν +ἕκαστοι +σκοποῦντες, +ἀλλὰ +καὶ +τὰ +ἑτέρων +ἕκαστοι. +τοῦτο +φρονεῖτε +ἐν +ὑμῖν +ὃ +καὶ +ἐν +Χριστῷ +Ἰησοῦ, +ὃς +ἐν +μορφῇ +Θεοῦ +ὑπάρχων +οὐχ +ἁρπαγμὸν +ἡγήσατο +τὸ +εἶναι +ἴσα +Θεῷ, +ἀλλὰ +ἑαυτὸν +ἐκένωσεν +μορφὴν +δούλου +λαβών, +ἐν +ὁμοιώματι +ἀνθρώπων +γενόμενος· +καὶ +σχήματι +εὑρεθεὶς +ὡς +ἄνθρωπος +ἐταπείνωσεν +ἑαυτὸν +γενόμενος +ὑπήκοος +μέχρι +θανάτου, +δὲ +θανάτου +σταυροῦ. +διὸ +καὶ +ὁ +Θεὸς +αὐτὸν +ὑπερύψωσεν, +καὶ +ἐχαρίσατο +αὐτῷ +τὸ +ὄνομα +τὸ +ὑπὲρ +πᾶν +ὄνομα, +ἵνα +ἐν +τῷ +ὀνόματι +Ἰησοῦ +κάμψῃ +πᾶν +γόνυ +ἐπουρανίων +καὶ +ἐπιγείων +καὶ +καταχθονίων, +καὶ +πᾶσα +γλῶσσα +ἐξομολογήσηται +ὅτι +ΚΥΡΙΟΣ +ΙΗΣΟΥΣ +ΧΡΙΣΤΟΣ +εἰς +δόξαν +Θεοῦ +Πατρός. +Ὥστε, +ἀγαπητοί +μου, +καθὼς +πάντοτε +ὑπηκούσατε, +ὡς +μὴ +ἐν +τῇ +παρουσίᾳ +μου +μόνον +ἀλλὰ +νῦν +πολλῷ +μᾶλλον +ἐν +τῇ +ἀπουσίᾳ +μου, +μετὰ +φόβου +καὶ +τρόμου +τὴν +ἑαυτῶν +σωτηρίαν +κατεργάζεσθε· +γάρ +Θεὸς +ἐστιν +ὁ +ἐνεργῶν +ἐν +ὑμῖν +καὶ +τὸ +θέλειν +καὶ +τὸ +ἐνεργεῖν +ὑπὲρ +τῆς +εὐδοκίας. +πάντα +ποιεῖτε +χωρὶς +γογγυσμῶν +καὶ +διαλογισμῶν, +ἵνα +γένησθε +ἄμεμπτοι +καὶ +ἀκέραιοι, +τέκνα +Θεοῦ +ἄμωμα +μέσον +γενεᾶς +σκολιᾶς +καὶ +διεστραμμένης, +ἐν +οἷς +φαίνεσθε +ὡς +φωστῆρες +ἐν +κόσμῳ, +λόγον +ζωῆς +ἐπέχοντες, +εἰς +καύχημα +ἐμοὶ +εἰς +ἡμέραν +Χριστοῦ, +ὅτι +οὐκ +εἰς +κενὸν +ἔδραμον +οὐδὲ +εἰς +κενὸν +ἐκοπίασα. +Ἀλλὰ +εἰ +καὶ +σπένδομαι +ἐπὶ +τῇ +θυσίᾳ +καὶ +λειτουργίᾳ +τῆς +πίστεως +ὑμῶν, +χαίρω +καὶ +συνχαίρω +πᾶσιν +ὑμῖν· +δὲ +τὸ +αὐτὸ +καὶ +ὑμεῖς +χαίρετε +καὶ +συνχαίρετέ +μοι. +δὲ +Ἐλπίζω +ἐν +Κυρίῳ +Ἰησοῦ +Τιμόθεον +ταχέως +πέμψαι +ὑμῖν, +ἵνα +κἀγὼ +εὐψυχῶ +γνοὺς +τὰ +περὶ +ὑμῶν. +γὰρ +οὐδένα +ἰσόψυχον, +ἔχω +ὅστις +γνησίως +τὰ +περὶ +ὑμῶν +μεριμνήσει· +γὰρ +οἱ +πάντες +τὰ +ἑαυτῶν +ζητοῦσιν, +οὐ +τὰ +Χριστοῦ +Ἰησοῦ. +δὲ +τὴν +δοκιμὴν +αὐτοῦ +γινώσκετε, +ὅτι +ὡς +πατρὶ +τέκνον +σὺν +ἐμοὶ +ἐδούλευσεν +εἰς +τὸ +εὐαγγέλιον. +οὖν +μὲν +ἐλπίζω +Τοῦτον +πέμψαι +ὡς +ἂν +ἀφίδω +τὰ +περὶ +ἐμὲ +ἐξαυτῆς· +δὲ +πέποιθα +ἐν +Κυρίῳ +ὅτι +καὶ +αὐτὸς +ταχέως +ἐλεύσομαι. +δὲ +ἡγησάμην +ἀναγκαῖον +Ἐπαφρόδιτον +τὸν +ἀδελφὸν +καὶ +συνεργὸν +καὶ +συνστρατιώτην +μου, +δὲ +ὑμῶν +ἀπόστολον +καὶ +λειτουργὸν +τῆς +χρείας +μου, +πέμψαι +πρὸς +ὑμᾶς, +ἐπειδὴ +ἐπιποθῶν +ἦν +πάντας +ὑμᾶς, +καὶ +ἀδημονῶν, +διότι +ἠκούσατε +ὅτι +ἠσθένησεν. +γὰρ +καὶ +ἠσθένησεν +παραπλήσιον +θανάτῳ· +ἀλλὰ +ὁ +Θεὸς +ἠλέησεν +αὐτόν, +δὲ +οὐκ +αὐτὸν +μόνον +ἀλλὰ +καὶ +ἐμέ, +ἵνα +μὴ +λύπην +ἐπὶ +λύπην +σχῶ. +οὖν +σπουδαιοτέρως +ἔπεμψα +αὐτὸν, +ἵνα +ἰδόντες +αὐτὸν +πάλιν +χαρῆτε +κἀγὼ +ἀλυπότερος +ὦ. +οὖν +προσδέχεσθε +αὐτὸν +ἐν +Κυρίῳ +μετὰ +πάσης +χαρᾶς, +καὶ +τοὺς +τοιούτους +ἐντίμους +ἔχετε, +ὅτι +διὰ +τὸ +ἔργον +Χριστοῦ +μέχρι +θανάτου +ἤγγισεν +παραβολευσάμενος +τῇ +ψυχῇ, +ἵνα +ἀναπληρώσῃ +τὸ +ὑμῶν +ὑστέρημα +τῆς +πρός +με +λειτουργίας. +ἀδελφοί +μου, +Τὸ +λοιπόν, +χαίρετε +ἐν +Κυρίῳ. +τὰ +αὐτὰ +γράφειν +ὑμῖν +μὲν +ἐμοὶ +οὐκ +ὀκνηρόν, +δὲ +ὑμῖν +ἀσφαλές. +Βλέπετε +τοὺς +κύνας, +βλέπετε +τοὺς +κακοὺς +ἐργάτας, +βλέπετε +τὴν +κατατομήν. +γάρ +ἐσμεν +ἡ +περιτομή, +ἡμεῖς +οἱ +Πνεύματι +Θεοῦ +λατρεύοντες +καὶ +καυχώμενοι +ἐν +Χριστῷ +Ἰησοῦ +καὶ +οὐκ +ἐν +σαρκὶ +πεποιθότες, +καίπερ +ἐγὼ +ἔχων +πεποίθησιν +καὶ +ἐν +σαρκί. +Εἴ +τις +ἄλλος +δοκεῖ +πεποιθέναι +ἐν +σαρκί, +ἐγὼ +μᾶλλον· +περιτομῇ +ὀκταήμερος, +ἐκ +γένους +Ἰσραήλ, +φυλῆς +Βενιαμείν, +Ἑβραῖος +ἐξ +Ἑβραίων, +κατὰ +νόμον +Φαρισαῖος, +κατὰ +ζῆλος +διώκων +τὴν +ἐκκλησίαν, +κατὰ +δικαιοσύνην +τὴν +ἐν +νόμῳ +γενόμενος +ἄμεμπτος. +Ἀλλὰ +ἅτινα +ἦν +μοι +κέρδη, +ταῦτα +ἥγημαι +διὰ +τὸν +Χριστὸν +ζημίαν. +ἀλλὰ +μὲν +οὖν +γε +καὶ +ἡγοῦμαι +πάντα +ζημίαν +εἶναι +διὰ +τὸ +ὑπερέχον +τῆς +γνώσεως +Χριστοῦ +Ἰησοῦ +τοῦ +Κυρίου +μου, +δι’ +ὃν +τὰ +πάντα +ἐζημιώθην, +καὶ +ἡγοῦμαι +σκύβαλα +ἵνα +Χριστὸν +κερδήσω +καὶ +εὑρεθῶ +ἐν +αὐτῷ, +ἔχων +μὴ +ἐμὴν +δικαιοσύνην +τὴν +ἐκ +νόμου, +ἀλλὰ +τὴν +διὰ +πίστεως +Χριστοῦ, +τὴν +ἐκ +Θεοῦ +δικαιοσύνην +ἐπὶ +τῇ +πίστει, +τοῦ +γνῶναι +αὐτὸν +καὶ +τὴν +δύναμιν +τῆς +ἀναστάσεως +αὐτοῦ +καὶ +κοινωνίαν +παθημάτων +αὐτοῦ, +συμμορφιζόμενος +τῷ +θανάτῳ +αὐτοῦ, +εἴ +πως +καταντήσω +εἰς +τὴν +ἐξανάστασιν +τὴν +ἐκ +νεκρῶν. +οὐχ +ὅτι +ἤδη +ἔλαβον +ἢ +ἤδη +τετελείωμαι, +δὲ +διώκω +εἰ +καὶ +καταλάβω, +ἐφ’ +ᾧ +καὶ +κατελήμφθην +ὑπὸ +Χριστοῦ +Ἰησοῦ. +ἀδελφοί, +ἐγὼ +οὔπω +λογίζομαι +ἐμαυτὸν +κατειληφέναι· +δέ, +ἓν +μὲν +τὰ +ὀπίσω +ἐπιλανθανόμενος +δὲ +τοῖς +ἔμπροσθεν +ἐπεκτεινόμενος, +κατὰ +σκοπὸν +διώκω +εἰς +τὸ +βραβεῖον +τῆς +ἄνω +κλήσεως +τοῦ +Θεοῦ +ἐν +Χριστῷ +Ἰησοῦ. +οὖν +Ὅσοι +τέλειοι, +τοῦτο +φρονῶμεν· +καὶ +εἴ +τι +ἑτέρως +φρονεῖτε, +καὶ +τοῦτο +ὁ +Θεὸς +ὑμῖν +ἀποκαλύψει· +πλὴν +εἰς +ὃ +ἐφθάσαμεν, +τῷ +αὐτῷ +στοιχεῖν. +ἀδελφοί, +Συνμιμηταί +μου +γίνεσθε, +καὶ +σκοπεῖτε +τοὺς +οὕτως +περιπατοῦντας +καθὼς +ἔχετε +τύπον +ἡμᾶς. +γὰρ +πολλοὶ +περιπατοῦσιν +οὓς +πολλάκις +ἔλεγον +ὑμῖν, +δὲ +νῦν +καὶ +κλαίων +λέγω, +τοὺς +ἐχθροὺς +τοῦ +σταυροῦ +τοῦ +Χριστοῦ, +ὧν +τὸ +τέλος +ἀπώλεια, +ὧν +ὁ +θεὸς +ἡ +κοιλία +καὶ +ἡ +δόξα +ἐν +τῇ +αἰσχύνῃ +αὐτῶν, +οἱ +τὰ +ἐπίγεια +φρονοῦντες. +γὰρ +ἡμῶν +τὸ +πολίτευμα +ἐν +οὐρανοῖς +ὑπάρχει, +ἐξ +οὗ +καὶ +ἀπεκδεχόμεθα +Σωτῆρα +Κύριον +Ἰησοῦν +Χριστόν, +ὃς +μετασχηματίσει +τὸ +σῶμα +τῆς +ταπεινώσεως +ἡμῶν +σύμμορφον +τῷ +σώματι +τῆς +δόξης +αὐτοῦ, +κατὰ +τὴν +ἐνέργειαν +τοῦ +δύνασθαι +αὐτὸν +καὶ +ὑποτάξαι +αὐτῷ +τὰ +πάντα. +Ὥστε, +ἀδελφοί +μου +ἀγαπητοὶ +καὶ +ἐπιπόθητοι, +χαρὰ +καὶ +στέφανός +μου, +οὕτως +στήκετε +ἐν +Κυρίῳ, +ἀγαπητοί. +Εὐοδίαν +παρακαλῶ +καὶ +Συντύχην +παρακαλῶ +τὸ +αὐτὸ +φρονεῖν +ἐν +Κυρίῳ. +ναὶ +ἐρωτῶ +καὶ +σέ, +γνήσιε +σύνζυγε, +συνλαμβάνου +αὐταῖς, +αἵτινες +ἐν +τῷ +εὐαγγελίῳ +συνήθλησάν +μοι +μετὰ +καὶ +Κλήμεντος +καὶ +τῶν +λοιπῶν +συνεργῶν +μου, +ὧν +τὰ +ὀνόματα +ἐν +βίβλῳ +ζωῆς. +Χαίρετε +ἐν +Κυρίῳ +πάντοτε· +πάλιν +ἐρῶ, +χαίρετε. +τὸ +ἐπιεικὲς +ὑμῶν +γνωσθήτω +πᾶσιν +ἀνθρώποις. +ὁ +Κύριος +ἐγγύς· +μηδὲν +μεριμνᾶτε, +ἀλλ’ +ἐν +παντὶ +τῇ +προσευχῇ +καὶ +τῇ +δεήσει +μετὰ +εὐχαριστίας +τὰ +αἰτήματα +ὑμῶν +γνωριζέσθω +πρὸς +τὸν +Θεόν. +καὶ +ἡ +εἰρήνη +τοῦ +Θεοῦ +ἡ +ὑπερέχουσα +πάντα +νοῦν +φρουρήσει +τὰς +καρδίας +ὑμῶν +καὶ +τὰ +νοήματα +ὑμῶν +ἐν +Χριστῷ +Ἰησοῦ. +ἀδελφοί, +Τὸ +λοιπόν, +ὅσα +ἐστὶν +ἀληθῆ, +ὅσα +σεμνά, +ὅσα +δίκαια, +ὅσα +ἁγνά, +ὅσα +προσφιλῆ, +ὅσα +εὔφημα, +εἴ +τις +ἀρετὴ +καὶ +εἴ +τις +ἔπαινος, +ταῦτα +λογίζεσθε· +ἃ +καὶ +ἐμάθετε +καὶ +παρελάβετε +καὶ +ἠκούσατε +καὶ +εἴδετε +ἐν +ἐμοί, +ταῦτα +πράσσετε· +καὶ +ὁ +Θεὸς +τῆς +εἰρήνης +ἔσται +μεθ’ +ὑμῶν. +δὲ +Ἐχάρην +ἐν +Κυρίῳ +μεγάλως +ὅτι +ἤδη +ποτὲ +ἀνεθάλετε +τὸ +ὑπὲρ +ἐμοῦ +φρονεῖν· +ἐφ’ +ᾧ +καὶ +ἐφρονεῖτε, +δέ. +ἠκαιρεῖσθε +οὐχ +ὅτι +καθ’ +ὑστέρησιν +λέγω· +γὰρ +ἐγὼ +ἔμαθον +ἐν +οἷς +εἰμι +αὐτάρκης +εἶναι. +οἶδα +καὶ +ταπεινοῦσθαι, +οἶδα +καὶ +περισσεύειν· +ἐν +παντὶ +καὶ +ἐν +πᾶσιν +μεμύημαι, +καὶ +χορτάζεσθαι +καὶ +πεινᾶν, +καὶ +περισσεύειν +καὶ +ὑστερεῖσθαι. +πάντα +ἰσχύω +ἐν +τῷ +ἐνδυναμοῦντί +με. +πλὴν +καλῶς +ἐποιήσατε +συνκοινωνήσαντές +μου +τῇ +θλίψει. +δὲ +Φιλιππήσιοι, +οἴδατε +καὶ +ὑμεῖς, +ὅτι +ὅτε +ἐξῆλθον +ἀπὸ +Μακεδονίας, +ἐν +ἀρχῇ +τοῦ +εὐαγγελίου, +οὐδεμία +ἐκκλησία +μοι +ἐκοινώνησεν +εἰς +λόγον +δόσεως +καὶ +λήμψεως +εἰ +μὴ +ὑμεῖς +μόνοι, +ὅτι +καὶ +ἐν +Θεσσαλονίκῃ +καὶ +ἅπαξ +καὶ +δὶς +εἰς +τὴν +χρείαν +μοι +ἐπέμψατε. +οὐχ +ὅτι +ἐπιζητῶ +τὸ +δόμα, +ἀλλὰ +ἐπιζητῶ +τὸν +καρπὸν +τὸν +πλεονάζοντα +εἰς +λόγον +ὑμῶν. +δὲ +ἀπέχω +πάντα +καὶ +περισσεύω· +πεπλήρωμαι +δεξάμενος +παρὰ +Ἐπαφροδίτου +τὰ +παρ’ +ὑμῶν, +ὀσμὴν +εὐωδίας, +θυσίαν +δεκτήν, +εὐάρεστον +τῷ +Θεῷ. +δὲ +ὁ +Θεός +μου +πληρώσει +πᾶσαν +χρείαν +ὑμῶν +κατὰ +τὸ +πλοῦτος +αὐτοῦ +ἐν +δόξῃ +ἐν +Χριστῷ +Ἰησοῦ. +δὲ +τῷ +Θεῷ +καὶ +Πατρὶ +ἡμῶν +ἡ +δόξα +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +Ἀσπάσασθε +πάντα +ἅγιον +ἐν +Χριστῷ +Ἰησοῦ. +ἀσπάζονται +ὑμᾶς +οἱ +σὺν +ἐμοὶ +ἀδελφοί. +ἀσπάζονται +ὑμᾶς +πάντες +οἱ +ἅγιοι, +δὲ +μάλιστα +οἱ +ἐκ +τῆς +Καίσαρος +οἰκίας. +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +μετὰ +τοῦ +πνεύματος +ὑμῶν. +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διὰ +θελήματος +Θεοῦ +καὶ +Τιμόθεος +ὁ +ἀδελφὸς +τοῖς +ἐν +Κολοσσαῖς +ἁγίοις +καὶ +πιστοῖς +ἀδελφοῖς +ἐν +Χριστῷ· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν. +Εὐχαριστοῦμεν +τῷ +Θεῷ +Πατρὶ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +πάντοτε +περὶ +ὑμῶν +προσευχόμενοι, +ἀκούσαντες +τὴν +πίστιν +ὑμῶν +ἐν +Χριστῷ +Ἰησοῦ +καὶ +τὴν +ἀγάπην +ἣν +ἔχετε +εἰς +πάντας +τοὺς +ἁγίους +διὰ +τὴν +ἐλπίδα +τὴν +ἀποκειμένην +ὑμῖν +ἐν +τοῖς +οὐρανοῖς, +ἣν +προηκούσατε +ἐν +τῷ +λόγῳ +τῆς +ἀληθείας +τοῦ +εὐαγγελίου +τοῦ +παρόντος +εἰς +ὑμᾶς, +καθὼς +καὶ +ἐν +παντὶ +τῷ +κόσμῳ +ἐστὶν +καρποφορούμενον +καὶ +αὐξανόμενον +καθὼς +καὶ +ἐν +ὑμῖν, +ἀφ’ +ἧς +ἡμέρας +ἠκούσατε +καὶ +ἐπέγνωτε +τὴν +χάριν +τοῦ +Θεοῦ +ἐν +ἀληθείᾳ· +καθὼς +ἐμάθετε +ἀπὸ +Ἐπαφρᾶ +τοῦ +ἀγαπητοῦ +συνδούλου +ἡμῶν, +ὅς +ἐστιν +πιστὸς +ὑπὲρ +ὑμῶν +διάκονος +τοῦ +Χριστοῦ, +ὁ +καὶ +δηλώσας +ἡμῖν +τὴν +ὑμῶν +ἀγάπην +ἐν +Πνεύματι. +Διὰ +τοῦτο +καὶ +ἡμεῖς, +ἀφ’ +ἧς +ἡμέρας +ἠκούσαμεν, +οὐ +παυόμεθα +ὑπὲρ +ὑμῶν +προσευχόμενοι +καὶ +αἰτούμενοι +ἵνα +πληρωθῆτε +τὴν +ἐπίγνωσιν +τοῦ +θελήματος +αὐτοῦ +ἐν +πάσῃ +σοφίᾳ +καὶ +συνέσει +πνευματικῇ, +περιπατῆσαι +ἀξίως +τοῦ +Κυρίου +εἰς +πᾶσαν +ἀρεσκείαν, +ἐν +παντὶ +ἔργῳ +ἀγαθῷ +καρποφοροῦντες +καὶ +αὐξανόμενοι +τῇ +ἐπιγνώσει +τοῦ +Θεοῦ, +ἐν +πάσῃ +δυνάμει +δυναμούμενοι +κατὰ +τὸ +κράτος +τῆς +δόξης +αὐτοῦ +εἰς +πᾶσαν +ὑπομονὴν +καὶ +μακροθυμίαν, +μετὰ +χαρᾶς +εὐχαριστοῦντες +τῷ +Πατρὶ +τῷ +ἱκανώσαντι +ὑμᾶς +εἰς +τὴν +μερίδα +τοῦ +κλήρου +τῶν +ἁγίων +ἐν +τῷ +φωτί· +ὃς +ἐρύσατο +ἡμᾶς +ἐκ +τῆς +ἐξουσίας +τοῦ +σκότους +καὶ +μετέστησεν +εἰς +τὴν +βασιλείαν +τοῦ +Υἱοῦ +τῆς +ἀγάπης +αὐτοῦ, +ἐν +ᾧ +ἔχομεν +τὴν +ἀπολύτρωσιν, +τὴν +ἄφεσιν +τῶν +ἁμαρτιῶν· +ὅς +ἐστιν +εἰκὼν +τοῦ +Θεοῦ +τοῦ +ἀοράτου, +πρωτότοκος +πάσης +κτίσεως, +ὅτι +ἐν +αὐτῷ +ἐκτίσθη +τὰ +πάντα +ἐν +τοῖς +οὐρανοῖς +καὶ +ἐπὶ +τῆς +γῆς, +τὰ +ὁρατὰ +καὶ +τὰ +ἀόρατα, +εἴτε +θρόνοι +εἴτε +κυριότητες +εἴτε +ἀρχαὶ +εἴτε +ἐξουσίαι· +τὰ +πάντα +δι’ +αὐτοῦ +καὶ +εἰς +αὐτὸν +ἔκτισται· +καὶ +αὐτός +ἐστιν +πρὸ +πάντων +καὶ +τὰ +πάντα +ἐν +αὐτῷ +συνέστηκεν, +καὶ +αὐτός +ἐστιν +ἡ +κεφαλὴ +τοῦ +σώματος, +τῆς +ἐκκλησίας· +ὅς +ἐστιν +ἀρχή, +πρωτότοκος +ἐκ +τῶν +νεκρῶν, +ἵνα +γένηται +αὐτὸς +ἐν +πᾶσιν +πρωτεύων, +ὅτι +εὐδόκησεν +ἐν +αὐτῷ +πᾶν +τὸ +πλήρωμα +κατοικῆσαι +καὶ +δι’ +αὐτοῦ +ἀποκαταλλάξαι +τὰ +πάντα +εἰς +αὐτόν, +εἰρηνοποιήσας +διὰ +τοῦ +αἵματος +τοῦ +σταυροῦ +αὐτοῦ, +δι’ +αὐτοῦ +εἴτε +τὰ +ἐπὶ +τῆς +γῆς +εἴτε +τὰ +ἐν +τοῖς +οὐρανοῖς. +καὶ +ὑμᾶς +ποτε +ὄντας +ἀπηλλοτριωμένους +καὶ +ἐχθροὺς +τῇ +διανοίᾳ +ἐν +τοῖς +ἔργοις +τοῖς +πονηροῖς, +δὲ +νυνὶ +ἀποκατήλλαξεν +ἐν +τῷ +σώματι +τῆς +σαρκὸς +αὐτοῦ +διὰ +τοῦ +θανάτου, +παραστῆσαι +ὑμᾶς +ἁγίους +καὶ +ἀμώμους +καὶ +ἀνεγκλήτους +κατενώπιον +αὐτοῦ, +εἴ +γε +ἐπιμένετε +τῇ +πίστει +τεθεμελιωμένοι +καὶ +ἑδραῖοι +καὶ +μὴ +μετακινούμενοι +ἀπὸ +τῆς +ἐλπίδος +τοῦ +εὐαγγελίου +οὗ +ἠκούσατε, +τοῦ +κηρυχθέντος +ἐν +πάσῃ +κτίσει +τῇ +ὑπὸ +τὸν +οὐρανόν, +οὗ +διάκονος. +ἐγενόμην +ἐγὼ +Παῦλος +Νῦν +χαίρω +ἐν +τοῖς +παθήμασιν +ὑπὲρ +ὑμῶν, +καὶ +ἀνταναπληρῶ +τὰ +ὑστερήματα +τῶν +θλίψεων +τοῦ +Χριστοῦ +ἐν +τῇ +σαρκί +μου +ὑπὲρ +τοῦ +σώματος +αὐτοῦ, +ὅ +ἐστιν +ἡ +ἐκκλησία, +ἧς +διάκονος +ἐγενόμην +ἐγὼ +κατὰ +τὴν +οἰκονομίαν +τοῦ +Θεοῦ +τὴν +δοθεῖσάν +μοι +εἰς +ὑμᾶς +πληρῶσαι +τὸν +λόγον +τοῦ +Θεοῦ, +τὸ +μυστήριον +τὸ +ἀποκεκρυμμένον +ἀπὸ +τῶν +αἰώνων +καὶ +ἀπὸ +τῶν +γενεῶν— +δὲ +νῦν +ἐφανερώθη +τοῖς +ἁγίοις +αὐτοῦ, +οἷς +ἠθέλησεν +ὁ +Θεὸς +γνωρίσαι +τί +τὸ +πλοῦτος +τῆς +δόξης +τοῦ +μυστηρίου +τούτου +ἐν +τοῖς +ἔθνεσιν, +ὅς +ἐστιν +Χριστὸς +ἐν +ὑμῖν, +ἡ +ἐλπὶς +τῆς +δόξης· +ὃν +ἡμεῖς +καταγγέλλομεν +νουθετοῦντες +πάντα +ἄνθρωπον +καὶ +διδάσκοντες +πάντα +ἄνθρωπον +ἐν +πάσῃ +σοφίᾳ, +ἵνα +παραστήσωμεν +πάντα +ἄνθρωπον +τέλειον +ἐν +Χριστῷ· +εἰς +ὃ +καὶ +κοπιῶ +ἀγωνιζόμενος +κατὰ +τὴν +ἐνέργειαν +αὐτοῦ +τὴν +ἐνεργουμένην +ἐν +ἐμοὶ +ἐν +δυνάμει. +γὰρ +Θέλω +ὑμᾶς +εἰδέναι +ἡλίκον +ἀγῶνα +ἔχω +ὑπὲρ +ὑμῶν +καὶ +τῶν +ἐν +Λαοδικίᾳ +καὶ +ὅσοι +οὐχ +ἑόρακαν +τὸ +πρόσωπόν +μου +ἐν +σαρκί, +ἵνα +παρακληθῶσιν +αἱ +καρδίαι +αὐτῶν, +συνβιβασθέντες +ἐν +ἀγάπῃ +καὶ +εἰς +πᾶν +πλοῦτος +τῆς +πληροφορίας +τῆς +συνέσεως, +εἰς +ἐπίγνωσιν +τοῦ +μυστηρίου +τοῦ +Θεοῦ, +Χριστοῦ, +ἐν +ᾧ +εἰσιν +πάντες +οἱ +θησαυροὶ +τῆς +σοφίας +καὶ +γνώσεως +ἀπόκρυφοι. +Τοῦτο +λέγω +ἵνα +μηδεὶς +ὑμᾶς +παραλογίζηται +ἐν +πιθανολογίᾳ. +γὰρ +εἰ +καὶ +τῇ +σαρκὶ +ἄπειμι, +ἀλλὰ +τῷ +πνεύματι +σὺν +ὑμῖν +εἰμι, +χαίρων +καὶ +βλέπων +ὑμῶν +τὴν +τάξιν +καὶ +τὸ +στερέωμα +τῆς +εἰς +Χριστὸν +πίστεως +ὑμῶν. +οὖν +Ὡς +παρελάβετε +τὸν +Χριστὸν +Ἰησοῦν +τὸν +Κύριον, +ἐν +αὐτῷ +περιπατεῖτε, +ἐρριζωμένοι +καὶ +ἐποικοδομούμενοι +ἐν +αὐτῷ +καὶ +βεβαιούμενοι +τῇ +πίστει +καθὼς +ἐδιδάχθητε, +περισσεύοντες +ἐν +εὐχαριστίᾳ. +Βλέπετε +μή +τις +ἔσται +ὁ +συλαγωγῶν +ὑμᾶς +διὰ +τῆς +φιλοσοφίας +καὶ +κενῆς +ἀπάτης +κατὰ +τὴν +παράδοσιν +τῶν +ἀνθρώπων, +κατὰ +τὰ +στοιχεῖα +τοῦ +κόσμου +καὶ +οὐ +κατὰ +Χριστόν· +ὅτι +ἐν +αὐτῷ +κατοικεῖ +πᾶν +τὸ +πλήρωμα +τῆς +Θεότητος +σωματικῶς, +καὶ +ἐστὲ +πεπληρωμένοι, +ἐν +αὐτῷ +ὅς +ἐστιν +ἡ +κεφαλὴ +πάσης +ἀρχῆς +καὶ +ἐξουσίας, +ἐν +ᾧ +καὶ +περιετμήθητε +περιτομῇ +ἀχειροποιήτῳ +ἐν +τῇ +ἀπεκδύσει +τοῦ +σώματος +τῆς +σαρκός, +ἐν +τῇ +περιτομῇ +τοῦ +Χριστοῦ, +συνταφέντες +αὐτῷ +ἐν +τῷ +βαπτίσματι, +ἐν +ᾧ +καὶ +συνηγέρθητε +διὰ +τῆς +πίστεως +τῆς +ἐνεργείας +τοῦ +Θεοῦ +τοῦ +ἐγείραντος +αὐτὸν +ἐκ +νεκρῶν· +καὶ +ὑμᾶς +νεκροὺς +ὄντας +τοῖς +παραπτώμασιν +καὶ +τῇ +ἀκροβυστίᾳ +τῆς +σαρκὸς +ὑμῶν, +συνεζωοποίησεν +ὑμᾶς +σὺν +αὐτῷ, +χαρισάμενος +ἡμῖν +πάντα +τὰ +παραπτώματα, +ἐξαλείψας +τὸ +καθ’ +ἡμῶν +χειρόγραφον +τοῖς +δόγμασιν +ὃ +ἦν +ὑπεναντίον +ἡμῖν, +καὶ +αὐτὸ +ἦρκεν +ἐκ +τοῦ +μέσου, +προσηλώσας +αὐτὸ +τῷ +σταυρῷ· +ἀπεκδυσάμενος +τὰς +ἀρχὰς +καὶ +τὰς +ἐξουσίας +ἐδειγμάτισεν +ἐν +παρρησίᾳ, +θριαμβεύσας +αὐτοὺς +ἐν +αὐτῷ. +οὖν +Μὴ +τις +ὑμᾶς +κρινέτω +ἐν +βρώσει +καὶ +ἐν +πόσει +ἢ +ἐν +μέρει +ἑορτῆς +ἢ +νεομηνίας +ἢ +σαββάτων, +ἅ +ἐστιν +σκιὰ +τῶν +μελλόντων, +δὲ +τὸ +σῶμα +τοῦ +Χριστοῦ. +μηδεὶς +ὑμᾶς +καταβραβευέτω +θέλων +ἐν +ταπεινοφροσύνῃ +καὶ +θρησκείᾳ +τῶν +ἀγγέλων, +ἃ +ἑόρακεν +ἐμβατεύων, +εἰκῇ +φυσιούμενος +ὑπὸ +τοῦ +νοὸς +τῆς +σαρκὸς +αὐτοῦ, +καὶ +οὐ +κρατῶν +τὴν +Κεφαλήν, +ἐξ +οὗ +πᾶν +τὸ +σῶμα +διὰ +τῶν +ἁφῶν +καὶ +συνδέσμων +ἐπιχορηγούμενον +καὶ +συνβιβαζόμενον +αὔξει +τὴν +αὔξησιν +τοῦ +Θεοῦ. +Εἰ +ἀπεθάνετε +σὺν +Χριστῷ +ἀπὸ +τῶν +στοιχείων +τοῦ +κόσμου, +τί +ὡς +ζῶντες +ἐν +κόσμῳ +δογματίζεσθε +Μὴ +ἅψῃ +μηδὲ +γεύσῃ +μηδὲ +θίγῃς, +ἅ +ἐστιν +πάντα +εἰς +φθορὰν +τῇ +ἀποχρήσει, +κατὰ +τὰ +ἐντάλματα +καὶ +διδασκαλίας +τῶν +ἀνθρώπων; +ἅτινά +ἐστιν +μὲν +ἔχοντα +λόγον +σοφίας +ἐν +ἐθελοθρησκίᾳ +καὶ +ταπεινοφροσύνῃ +καὶ +ἀφειδίᾳ +σώματος, +οὐκ +ἐν +τιμῇ +τινι +πρὸς +πλησμονὴν +τῆς +σαρκός. +οὖν +Εἰ +συνηγέρθητε +τῷ +Χριστῷ, +τὰ +ἄνω +ζητεῖτε, +οὗ +ὁ +Χριστός +ἐστιν +καθήμενος· +ἐν +δεξιᾷ +τοῦ +Θεοῦ +τὰ +ἄνω +φρονεῖτε, +μὴ +τὰ +ἐπὶ +τῆς +γῆς. +γάρ, +ἀπεθάνετε +καὶ +ἡ +ζωὴ +ὑμῶν +κέκρυπται +σὺν +τῷ +Χριστῷ +ἐν +τῷ +Θεῷ· +ὅταν +φανερωθῇ, +ὁ +Χριστὸς +ἡ +ζωὴ +ἡμῶν, +τότε +καὶ +ὑμεῖς +σὺν +αὐτῷ +φανερωθήσεσθε +ἐν +δόξῃ. +οὖν +Νεκρώσατε +τὰ +μέλη +τὰ +ἐπὶ +τῆς +γῆς, +πορνείαν, +ἀκαθαρσίαν, +πάθος, +ἐπιθυμίαν +κακήν, +καὶ +τὴν +πλεονεξίαν +ἥτις +ἐστὶν +εἰδωλολατρεία, +δι’ +ἃ +ἔρχεται +ἡ +ὀργὴ +τοῦ +Θεοῦ· +ἐν +οἷς +καὶ +ὑμεῖς +περιεπατήσατέ +ποτε, +ὅτε +ἐζῆτε +ἐν +τούτοις· +δὲ +νυνὶ +ἀπόθεσθε +καὶ +ὑμεῖς +τὰ +πάντα, +ὀργήν, +θυμόν, +κακίαν, +βλασφημίαν, +αἰσχρολογίαν +ἐκ +τοῦ +στόματος +ὑμῶν· +μὴ +ψεύδεσθε +εἰς +ἀλλήλους, +ἀπεκδυσάμενοι +τὸν +παλαιὸν +ἄνθρωπον +σὺν +ταῖς +πράξεσιν +αὐτοῦ, +καὶ +ἐνδυσάμενοι +τὸν +νέον +τὸν +ἀνακαινούμενον +εἰς +ἐπίγνωσιν +κατ’ +εἰκόνα +τοῦ +κτίσαντος +αὐτόν, +ὅπου +οὐκ +ἔνι +Ἕλλην +καὶ +Ἰουδαῖος, +περιτομὴ +καὶ +ἀκροβυστία, +βάρβαρος, +Σκύθης, +δοῦλος, +ἐλεύθερος, +ἀλλὰ +πάντα +καὶ +ἐν +πᾶσιν +Χριστός. +οὖν, +Ἐνδύσασθε +ὡς +ἐκλεκτοὶ +τοῦ +Θεοῦ +ἅγιοι +καὶ +ἠγαπημένοι, +σπλάγχνα +οἰκτιρμοῦ, +χρηστότητα, +ταπεινοφροσύνην, +πραΰτητα, +μακροθυμίαν, +ἀνεχόμενοι +ἀλλήλων +καὶ +χαριζόμενοι +ἑαυτοῖς, +ἐάν +τις +πρός +τινα +ἔχῃ +μομφήν· +καθὼς +καὶ +ὁ +Κύριος +ἐχαρίσατο +ὑμῖν +οὕτως +καὶ +ὑμεῖς· +δὲ +ἐπὶ +πᾶσιν +τούτοις +τὴν +ἀγάπην, +ὅ +ἐστιν +σύνδεσμος +τῆς +τελειότητος. +καὶ +ἡ +εἰρήνη +τοῦ +Χριστοῦ +βραβευέτω +ἐν +ταῖς +καρδίαις +ὑμῶν, +εἰς +ἣν +καὶ +ἐκλήθητε +ἐν +ἑνὶ +σώματι· +καὶ +εὐχάριστοι +γίνεσθε. +ὁ +λόγος +τοῦ +Χριστοῦ +ἐνοικείτω +ἐν +ὑμῖν +πλουσίως, +ἐν +πάσῃ +σοφίᾳ· +διδάσκοντες +καὶ +νουθετοῦντες +ἑαυτοὺς, +ψαλμοῖς +ὕμνοις +ᾠδαῖς +πνευματικαῖς +ἐν +τῇ +χάριτι +ᾄδοντες +ἐν +ταῖς +καρδίαις +ὑμῶν +τῷ +Θεῷ· +καὶ +πᾶν +τι +ἐὰν +ὅ +ποιῆτε +ἐν +λόγῳ +ἢ +ἐν +ἔργῳ, +πάντα +ἐν +ὀνόματι +Κυρίου +Ἰησοῦ, +εὐχαριστοῦντες +τῷ +Θεῷ +Πατρὶ +δι’ +αὐτοῦ. +Αἱ +γυναῖκες, +ὑποτάσσεσθε +τοῖς +ἀνδράσιν, +ὡς +ἀνῆκεν +ἐν +Κυρίῳ. +Οἱ +ἄνδρες, +ἀγαπᾶτε +τὰς +γυναῖκας +καὶ +μὴ +πικραίνεσθε +πρὸς +αὐτάς. +Τὰ +τέκνα, +ὑπακούετε +τοῖς +γονεῦσιν +κατὰ +πάντα, +γὰρ +τοῦτο +εὐάρεστόν +ἐστιν +ἐν +Κυρίῳ. +Οἱ +πατέρες, +μὴ +ἐρεθίζετε +τὰ +τέκνα +ὑμῶν, +ἵνα +μὴ +ἀθυμῶσιν. +Οἱ +δοῦλοι, +ὑπακούετε +κατὰ +πάντα +τοῖς +κατὰ +σάρκα +κυρίοις, +μὴ +ἐν +ὀφθαλμοδουλίαις, +ὡς +ἀνθρωπάρεσκοι, +ἀλλ’ +ἐν +ἁπλότητι +καρδίας +φοβούμενοι +τὸν +Κύριον. +ἐὰν +ὃ +ποιῆτε, +ἐκ +ψυχῆς +ἐργάζεσθε +ὡς +τῷ +Κυρίῳ +καὶ +οὐκ +ἀνθρώποις, +εἰδότες +ὅτι +ἀπὸ +Κυρίου +ἀπολήμψεσθε +τὴν +ἀνταπόδοσιν +τῆς +κληρονομίας. +τῷ +Κυρίῳ +Χριστῷ +δουλεύετε· +γὰρ +ὁ +ἀδικῶν +κομίσεται +ὃ +ἠδίκησεν, +καὶ +οὐκ +ἔστιν +προσωπολημψία. +Οἱ +κύριοι, +τὸ +δίκαιον +καὶ +τὴν +ἰσότητα +τοῖς +δούλοις +παρέχεσθε, +εἰδότες +ὅτι +καὶ +ὑμεῖς +ἔχετε +Κύριον +ἐν +οὐρανῷ. +Τῇ +προσευχῇ +προσκαρτερεῖτε, +γρηγοροῦντες +ἐν +αὐτῇ +ἐν +εὐχαριστίᾳ, +προσευχόμενοι +ἅμα +καὶ +περὶ +ἡμῶν, +ἵνα +ὁ +Θεὸς +ἀνοίξῃ +ἡμῖν +θύραν +τοῦ +λόγου, +λαλῆσαι +τὸ +μυστήριον +τοῦ +Χριστοῦ, +δι’ +ὃ +καὶ +δέδεμαι, +ἵνα +φανερώσω +αὐτὸ +ὡς +δεῖ +με +λαλῆσαι. +Ἐν +σοφίᾳ +περιπατεῖτε +πρὸς +τοὺς +ἔξω, +τὸν +καιρὸν +ἐξαγοραζόμενοι. +ὁ +λόγος +ὑμῶν +πάντοτε +ἐν +χάριτι, +ἅλατι +ἠρτυμένος, +εἰδέναι +πῶς +δεῖ +ὑμᾶς +ἑνὶ +ἑκάστῳ +ἀποκρίνεσθαι. +Τὰ +κατ’ +ἐμὲ +πάντα +γνωρίσει +ὑμῖν +Τυχικὸς +ὁ +ἀγαπητὸς +ἀδελφὸς +καὶ +πιστὸς +διάκονος +καὶ +σύνδουλος +ἐν +Κυρίῳ, +ὃν +ἔπεμψα +πρὸς +ὑμᾶς +εἰς +αὐτὸ +τοῦτο, +ἵνα +γνῶτε +τὰ +περὶ +ἡμῶν +καὶ +παρακαλέσῃ +τὰς +καρδίας +ὑμῶν, +σὺν +Ὀνησίμῳ +τῷ +πιστῷ +καὶ +ἀγαπητῷ +ἀδελφῷ, +ὅς +ἐστιν +ἐξ +ὑμῶν· +ὑμῖν +γνωρίσουσιν +πάντα +τὰ +ὧδε. +Ἀσπάζεται +ὑμᾶς +Ἀρίσταρχος +ὁ +συναιχμάλωτός +μου, +καὶ +Μᾶρκος +ὁ +ἀνεψιὸς +Βαρνάβα, +(περὶ +οὗ +ἐλάβετε +ἐντολάς, +ἐὰν +ἔλθῃ +πρὸς +ὑμᾶς, +δέξασθε +αὐτόν,) +καὶ +Ἰησοῦς +ὁ +λεγόμενος +Ἰοῦστος, +οἱ +ὄντες +ἐκ +περιτομῆς +οὗτοι +μόνοι +συνεργοὶ +εἰς +τὴν +βασιλείαν +τοῦ +Θεοῦ, +οἵτινες +ἐγενήθησάν +μοι +παρηγορία. +ἀσπάζεται +ὑμᾶς +Ἐπαφρᾶς +ὁ +ἐξ +ὑμῶν, +δοῦλος +Χριστοῦ +Ἰησοῦ, +πάντοτε +ἀγωνιζόμενος +ὑπὲρ +ὑμῶν +ἐν +ταῖς +προσευχαῖς, +ἵνα +σταθῆτε +τέλειοι +καὶ +πεπληροφορημένοι +ἐν +παντὶ +θελήματι +τοῦ +Θεοῦ. +γὰρ +μαρτυρῶ +αὐτῷ +ὅτι +ἔχει +πολὺν +πόνον +ὑπὲρ +ὑμῶν +καὶ +τῶν +ἐν +Λαοδικίᾳ +καὶ +τῶν +ἐν +Ἱεραπόλει. +ἀσπάζεται +ὑμᾶς +Λουκᾶς +ὁ +ἰατρὸς +ὁ +ἀγαπητὸς +καὶ +Δημᾶς. +Ἀσπάσασθε +τοὺς +ἐν +Λαοδικίᾳ +ἀδελφοὺς +καὶ +Νύμφαν +καὶ +τὴν +κατ’ +οἶκον +αὐτῆς +ἐκκλησίαν. +καὶ +ὅταν +ἀναγνωσθῇ +παρ’ +ὑμῖν +ἡ +ἐπιστολή, +ποιήσατε +ἵνα +καὶ +ἐν +τῇ +Λαοδικέων +ἐκκλησίᾳ +ἀναγνωσθῇ, +καὶ +ἵνα +τὴν +ἐκ +Λαοδικίας +καὶ +ὑμεῖς +ἀναγνῶτε. +καὶ +εἴπατε +Ἀρχίππῳ +Βλέπε +τὴν +διακονίαν +ἣν +παρέλαβες +ἐν +Κυρίῳ, +ἵνα +αὐτὴν +πληροῖς. +Ὁ +ἀσπασμὸς +τῇ +ἐμῇ +χειρὶ +Παύλου. +μνημονεύετέ +μου +τῶν +δεσμῶν. +ἡ +χάρις +μεθ’ +ὑμῶν. +Παῦλος +καὶ +Σιλουανὸς +καὶ +Τιμόθεος +τῇ +ἐκκλησίᾳ +Θεσσαλονικέων +ἐν +Θεῷ +Πατρὶ +καὶ +Κυρίῳ +Ἰησοῦ +Χριστῷ· +ὑμῖν +χάρις +καὶ +εἰρήνη. +Εὐχαριστοῦμεν +τῷ +Θεῷ +πάντοτε +περὶ +πάντων +ὑμῶν, +μνείαν +ποιούμενοι +ἐπὶ +τῶν +προσευχῶν +ἡμῶν, +ἀδιαλείπτως +μνημονεύοντες +ὑμῶν +τοῦ +ἔργου +τῆς +πίστεως +καὶ +τοῦ +κόπου +τῆς +ἀγάπης +καὶ +τῆς +ὑπομονῆς +τῆς +ἐλπίδος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἔμπροσθεν +τοῦ +Θεοῦ +καὶ +Πατρὸς +ἡμῶν, +εἰδότες, +τὴν +ἐκλογὴν +ὑμῶν, +ἀδελφοὶ +ἠγαπημένοι +ὑπὸ +τοῦ +Θεοῦ, +ὅτι +τὸ +εὐαγγέλιον +ἡμῶν +ἐγενήθη +εἰς +ὑμᾶς +οὐκ +ἐν +λόγῳ +μόνον, +ἀλλὰ +καὶ +ἐν +δυνάμει +καὶ +ἐν +Πνεύματι +Ἁγίῳ +καὶ +πληροφορίᾳ +πολλῇ, +καθὼς +οἴδατε +οἷοι +ἐγενήθημεν +ἐν +ὑμῖν +δι’ +ὑμᾶς. +καὶ +ὑμεῖς +ἐγενήθητε +μιμηταὶ +ἡμῶν +καὶ +τοῦ +Κυρίου, +δεξάμενοι +τὸν +λόγον +ἐν +θλίψει +πολλῇ +μετὰ +χαρᾶς +Πνεύματος +Ἁγίου, +ὥστε +γενέσθαι +ὑμᾶς +τύπον +πᾶσιν +τοῖς +πιστεύουσιν +ἐν +τῇ +Μακεδονίᾳ +καὶ +ἐν +τῇ +Ἀχαΐᾳ. +γὰρ +ἀφ’ +ὑμῶν +ἐξήχηται +ὁ +λόγος +τοῦ +Κυρίου +οὐ +μόνον +ἐν +τῇ +Μακεδονίᾳ +καὶ +Ἀχαΐᾳ, +ἀλλ’ +ἐν +παντὶ +τόπῳ +ἡ +πίστις +ὑμῶν +ἡ +πρὸς +τὸν +Θεὸν +ἐξελήλυθεν, +ὥστε +μὴ +χρείαν +ἔχειν +ἡμᾶς +λαλεῖν +τι· +γὰρ +αὐτοὶ +περὶ +ἡμῶν +ἀπαγγέλλουσιν +ὁποίαν +εἴσοδον +ἔσχομεν +πρὸς +ὑμᾶς, +καὶ +πῶς +ἐπεστρέψατε +πρὸς +τὸν +Θεὸν +ἀπὸ +τῶν +εἰδώλων +δουλεύειν +Θεῷ +ζῶντι +καὶ +ἀληθινῷ, +καὶ +ἀναμένειν +ἐκ +τῶν +οὐρανῶν, +τὸν +Υἱὸν +αὐτοῦ +ὃν +ἤγειρεν +ἐκ +τῶν +νεκρῶν, +Ἰησοῦν +τὸν +ῥυόμενον +ἡμᾶς +ἐκ +τῆς +ὀργῆς +τῆς +ἐρχομένης. +γὰρ +ἀδελφοί, +Αὐτοὶ +οἴδατε, +τὴν +εἴσοδον +ἡμῶν +τὴν +πρὸς +ὑμᾶς, +ὅτι +οὐ +κενὴ +γέγονεν, +ἀλλὰ +προπαθόντες +καὶ +ὑβρισθέντες +ἐν +Φιλίπποις +καθὼς +οἴδατε +ἐπαρρησιασάμεθα +ἐν +τῷ +Θεῷ +ἡμῶν +λαλῆσαι +πρὸς +ὑμᾶς +τὸ +εὐαγγέλιον +τοῦ +Θεοῦ +ἐν +πολλῷ +ἀγῶνι. +γὰρ +ἡ +παράκλησις +ἡμῶν +οὐκ +ἐκ +πλάνης +οὐδὲ +ἐξ +ἀκαθαρσίας +οὐδὲ +ἐν +δόλῳ, +ἀλλὰ +καθὼς +δεδοκιμάσμεθα +ὑπὸ +τοῦ +Θεοῦ +πιστευθῆναι +τὸ +εὐαγγέλιον +οὕτως +λαλοῦμεν, +ὡς +ἀρέσκοντες, +οὐχ +ἀνθρώποις +ἀλλὰ +Θεῷ +τῷ +δοκιμάζοντι +τὰς +καρδίας +ἡμῶν. +γάρ +οὔτε +ποτε +ἐν +λόγῳ +κολακίας +ἐγενήθημεν, +καθὼς +οἴδατε, +οὔτε +ἐν +προφάσει +πλεονεξίας, +Θεὸς +μάρτυς, +οὔτε +ζητοῦντες +ἐξ +ἀνθρώπων +δόξαν, +οὔτε +ἀφ’ +ὑμῶν +οὔτε +ἀπ’ +ἄλλων, +δυνάμενοι +ἐν +βάρει +εἶναι +ὡς +Χριστοῦ +ἀπόστολοι· +ἀλλὰ +ἐγενήθημεν +ἤπιοι +ἐν +μέσῳ +ὑμῶν, +ὡς +ἐὰν +τροφὸς +θάλπῃ +τὰ +ἑαυτῆς +τέκνα· +οὕτως +ὁμειρόμενοι +ὑμῶν +εὐδοκοῦμεν +μεταδοῦναι +ὑμῖν +οὐ +μόνον +τὸ +εὐαγγέλιον +τοῦ +Θεοῦ +ἀλλὰ +καὶ +τὰς +ἑαυτῶν +ψυχάς, +διότι +ἀγαπητοὶ +ἡμῖν +ἐγενήθητε. +γάρ, +ἀδελφοί, +μνημονεύετε +τὸν +κόπον +ἡμῶν +καὶ +τὸν +μόχθον· +νυκτὸς +καὶ +ἡμέρας +ἐργαζόμενοι +πρὸς +τὸ +μὴ +ἐπιβαρῆσαί +τινα +ὑμῶν +ἐκηρύξαμεν +εἰς +ὑμᾶς +τὸ +εὐαγγέλιον +τοῦ +Θεοῦ. +μάρτυρες +ὑμεῖς +καὶ +ὁ +Θεός, +ὡς +ὁσίως +καὶ +δικαίως +καὶ +ἀμέμπτως +ὑμῖν +τοῖς +πιστεύουσιν +ἐγενήθημεν, +καθάπερ +οἴδατε +ὡς +ἕνα +ἕκαστον +ὑμῶν +ὡς +πατὴρ +τέκνα +ἑαυτοῦ +παρακαλοῦντες +καὶ +παραμυθούμενοι +καὶ +μαρτυρόμενοι +ὑμᾶς +εἰς +τὸ +περιπατεῖν +ὑμᾶς +ἀξίως +τοῦ +Θεοῦ +τοῦ +καλοῦντος +ὑμᾶς +εἰς +τὴν +ἑαυτοῦ +βασιλείαν +καὶ +δόξαν. +Καὶ +διὰ +τοῦτο +καὶ +ἡμεῖς +εὐχαριστοῦμεν +τῷ +Θεῷ +ἀδιαλείπτως, +ὅτι +παραλαβόντες +λόγον +ἀκοῆς +παρ’ +ἡμῶν +τοῦ +Θεοῦ +ἐδέξασθε +οὐ +λόγον +ἀνθρώπων +ἀλλὰ +καθὼς +ἀληθῶς +ἐστὶν +λόγον +Θεοῦ, +ὃς +καὶ +ἐνεργεῖται +ἐν +ὑμῖν +τοῖς +πιστεύουσιν. +γὰρ +ἀδελφοί, +ὑμεῖς +ἐγενήθητε, +μιμηταὶ +τῶν +ἐκκλησιῶν +τοῦ +Θεοῦ +τῶν +οὐσῶν +ἐν +τῇ +Ἰουδαίᾳ +ἐν +Χριστῷ +Ἰησοῦ, +ὅτι +τὰ +αὐτὰ +ἐπάθετε +καὶ +ὑμεῖς +ὑπὸ +τῶν +ἰδίων +συμφυλετῶν, +καθὼς +καὶ +αὐτοὶ +ὑπὸ +τῶν +Ἰουδαίων, +τῶν +ἀποκτεινάντων +καὶ +τὸν +Κύριον +Ἰησοῦν +καὶ +τοὺς +προφήτας +καὶ +ἡμᾶς +ἐκδιωξάντων, +καὶ +Θεῷ +μὴ +ἀρεσκόντων, +καὶ +πᾶσιν +ἀνθρώποις +ἐναντίων, +κωλυόντων +ἡμᾶς +τοῖς +ἔθνεσιν +λαλῆσαι +ἵνα +σωθῶσιν, +εἰς +τὸ +ἀναπληρῶσαι +αὐτῶν +τὰς +ἁμαρτίας +πάντοτε. +δὲ +ἔφθασεν +ἐπ’ +αὐτοὺς +ἡ +ὀργὴ +εἰς +τέλος. +δέ, +ἀδελφοί, +Ἠμεῖς +ἀπορφανισθέντες +ἀφ’ +ὑμῶν +πρὸς +καιρὸν +ὥρας +προσώπῳ +οὐ +καρδίᾳ, +περισσοτέρως +ἐσπουδάσαμεν +τὸ +πρόσωπον +ὑμῶν +ἰδεῖν +ἐν +πολλῇ +ἐπιθυμίᾳ. +διότι +ἠθελήσαμεν +ἐλθεῖν +πρὸς +ὑμᾶς, +μὲν +ἐγὼ +Παῦλος +καὶ +ἅπαξ +καὶ +δίς, +καὶ +ἐνέκοψεν +ἡμᾶς +ὁ +Σατανᾶς. +γὰρ +τίς +ἡμῶν +ἐλπὶς +ἢ +χαρὰ +ἢ +στέφανος +καυχήσεως— +ἢ +οὐχὶ +καὶ +ὑμεῖς— +ἔμπροσθεν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +ἐν +τῇ +αὐτοῦ +παρουσίᾳ; +γάρ +ὑμεῖς +ἐστε +ἡ +δόξα +ἡμῶν +καὶ +ἡ +χαρά. +Διὸ +μηκέτι +στέγοντες +ηὐδοκήσαμεν +καταλειφθῆναι +ἐν +Ἀθήναις +μόνοι, +καὶ +ἐπέμψαμεν +Τιμόθεον, +τὸν +ἀδελφὸν +ἡμῶν +καὶ +διάκονον +τοῦ +Θεοῦ +ἐν +τῷ +εὐαγγελίῳ +τοῦ +Χριστοῦ, +εἰς +τὸ +στηρίξαι +καὶ +παρακαλέσαι +ὑμᾶς +ὑπὲρ +τῆς +πίστεως +ὑμῶν +τὸ +μηδένα +σαίνεσθαι +ἐν +ταῖς +θλίψεσιν +ταύταις. +γὰρ +αὐτοὶ +οἴδατε +ὅτι +εἰς +τοῦτο +κείμεθα· +γὰρ +καὶ +ὅτε +πρὸς +ὑμᾶς +ἦμεν, +προελέγομεν +ὑμῖν +ὅτι +μέλλομεν +θλίβεσθαι, +καθὼς +καὶ +ἐγένετο +καὶ +οἴδατε. +διὰ +τοῦτο +κἀγὼ +μηκέτι +στέγων +ἔπεμψα +εἰς +τὸ +γνῶναι +τὴν +πίστιν +ὑμῶν, +μή +πως +ἐπείρασεν +ὑμᾶς +ὁ +πειράζων +καὶ +εἰς +κενὸν +γένηται +ὁ +κόπος +ἡμῶν. +δὲ +Ἄρτι +ἐλθόντος +Τιμοθέου +πρὸς +ἡμᾶς +ἀφ’ +ὑμῶν +καὶ +εὐαγγελισαμένου +ἡμῖν +τὴν +πίστιν +καὶ +τὴν +ἀγάπην +ὑμῶν, +καὶ +ὅτι +ἔχετε +μνείαν +ἡμῶν +ἀγαθὴν +πάντοτε, +ἐπιποθοῦντες +ἡμᾶς +ἰδεῖν +καθάπερ +καὶ +ἡμεῖς +ὑμᾶς, +ἀδελφοί, +διὰ +τοῦτο +παρεκλήθημεν, +ἐφ’ +ὑμῖν +ἐπὶ +πάσῃ +τῇ +ἀνάγκῃ +καὶ +θλίψει +ἡμῶν +διὰ +τῆς +ὑμῶν +πίστεως, +ὅτι +νῦν +ζῶμεν +ἐὰν +ὑμεῖς +στήκετε +ἐν +Κυρίῳ. +γὰρ +δυνάμεθα +τίνα +εὐχαριστίαν +τῷ +Θεῷ +ἀνταποδοῦναι +περὶ +ὑμῶν +ἐπὶ +πάσῃ +τῇ +χαρᾷ +ᾗ +χαίρομεν +δι’ +ὑμᾶς +ἔμπροσθεν +τοῦ +Θεοῦ +ἡμῶν, +νυκτὸς +καὶ +ἡμέρας +ὑπερεκπερισσοῦ +δεόμενοι +εἰς +τὸ +ἰδεῖν +ὑμῶν +τὸ +πρόσωπον +καὶ +καταρτίσαι +τὰ +ὑστερήματα +τῆς +πίστεως +ὑμῶν; +δὲ +Αὐτὸς +ὁ +Θεὸς +καὶ +Πατὴρ +ἡμῶν +καὶ +ὁ +Κύριος +ἡμῶν +Ἰησοῦς +κατευθύναι +τὴν +ὁδὸν +ἡμῶν +πρὸς +ὑμᾶς· +δὲ +ὑμᾶς +ὁ +Κύριος +πλεονάσαι +καὶ +περισσεύσαι +τῇ +ἀγάπῃ +εἰς +ἀλλήλους +καὶ +εἰς +πάντας, +καθάπερ +καὶ +ἡμεῖς +εἰς +ὑμᾶς, +εἰς +τὸ +στηρίξαι +ὑμῶν +τὰς +καρδίας +ἀμέμπτους +ἐν +ἁγιωσύνῃ +ἔμπροσθεν +τοῦ +Θεοῦ +καὶ +πατρὸς +ἡμῶν +ἐν +τῇ +παρουσίᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +μετὰ +πάντων +τῶν +ἁγίων +αὐτοῦ. +οὖν, +ἀδελφοί, +Λοιπὸν +ἐρωτῶμεν +καὶ +παρακαλοῦμεν +ὑμᾶς +ἐν +Κυρίῳ +Ἰησοῦ, +ἵνα +καθὼς +παρελάβετε +παρ’ +ἡμῶν +τὸ +πῶς +δεῖ +ὑμᾶς +περιπατεῖν +καὶ +ἀρέσκειν +Θεῷ, +καθὼς +καὶ +περιπατεῖτε, +ἵνα +περισσεύητε +μᾶλλον. +γὰρ +οἴδατε +τίνας +παραγγελίας +ἐδώκαμεν +ὑμῖν +διὰ +τοῦ +Κυρίου +Ἰησοῦ. +γάρ +Τοῦτο +ἐστιν +θέλημα +τοῦ +Θεοῦ, +ὁ +ἁγιασμὸς +ὑμῶν, +ἀπέχεσθαι +ὑμᾶς +ἀπὸ +τῆς +πορνείας, +εἰδέναι +ἕκαστον +ὑμῶν +τὸ +ἑαυτοῦ +σκεῦος +κτᾶσθαι +ἐν +ἁγιασμῷ +καὶ +τιμῇ, +μὴ +ἐν +πάθει +ἐπιθυμίας +καθάπερ +καὶ +τὰ +ἔθνη +τὰ +μὴ +εἰδότα +τὸν +Θεόν, +τὸ +μὴ +ὑπερβαίνειν +καὶ +πλεονεκτεῖν +ἐν +τῷ +πράγματι +τὸν +ἀδελφὸν +αὐτοῦ, +διότι +ἔκδικος +Κύριος +περὶ +πάντων +τούτων, +καθὼς +καὶ +προείπαμεν +ὑμῖν +καὶ +διεμαρτυράμεθα. +γὰρ +οὐ +ἐκάλεσεν +ἡμᾶς +ὁ +Θεὸς +ἐπὶ +ἀκαθαρσίᾳ +ἀλλ’ +ἐν +ἁγιασμῷ. +τοιγαροῦν +ὁ +ἀθετῶν +ἀθετεῖ +οὐκ +ἄνθρωπον +ἀλλὰ +τὸν +Θεὸν +τὸν +καὶ +διδόντα +τὸ +Πνεῦμα +αὐτοῦ +τὸ +ἅγιον +εἰς +ὑμᾶς. +δὲ +Περὶ +τῆς +φιλαδελφίας +οὐ +χρείαν +ἔχετε +γράφειν +ὑμῖν· +γὰρ +αὐτοὶ +ὑμεῖς +θεοδίδακτοί +ἐστε +εἰς +τὸ +ἀγαπᾶν +ἀλλήλους· +γὰρ +καὶ +ποιεῖτε +αὐτὸ +εἰς +πάντας +τοὺς +ἀδελφοὺς +ἐν +ὅλῃ +τῇ +Μακεδονίᾳ. +δὲ +ἀδελφοί, +Παρακαλοῦμεν +ὑμᾶς, +περισσεύειν +μᾶλλον, +καὶ +φιλοτιμεῖσθαι +ἡσυχάζειν +καὶ +πράσσειν +τὰ +ἴδια +καὶ +ἐργάζεσθαι +ταῖς +χερσὶν +ὑμῶν, +καθὼς +ὑμῖν +παρηγγείλαμεν, +ἵνα +περιπατῆτε +εὐσχημόνως +πρὸς +τοὺς +ἔξω +καὶ +μηδενὸς +χρείαν +ἔχητε. +δὲ +ἀδελφοί, +Οὐ +θέλομεν +ὑμᾶς +ἀγνοεῖν, +περὶ +τῶν +κοιμωμένων, +ἵνα +μὴ +λυπῆσθε +καθὼς +καὶ +οἱ +λοιποὶ +οἱ +μὴ +ἔχοντες +ἐλπίδα. +γὰρ +εἰ +πιστεύομεν +ὅτι +Ἰησοῦς +ἀπέθανεν +καὶ +ἀνέστη, +οὕτως +καὶ +ὁ +Θεὸς +τοὺς +κοιμηθέντας +διὰ +τοῦ +Ἰησοῦ +ἄξει +σὺν +αὐτῷ. +γὰρ +Τοῦτο +ὑμῖν +λέγομεν +ἐν +λόγῳ +Κυρίου, +ὅτι +ἡμεῖς +οἱ +ζῶντες +οἱ +περιλειπόμενοι +εἰς +τὴν +παρουσίαν +τοῦ +Κυρίου +οὐ +μὴ +φθάσωμεν +τοὺς +κοιμηθέντας· +ὅτι +αὐτὸς +ὁ +Κύριος +ἐν +κελεύσματι, +ἐν +φωνῇ +ἀρχαγγέλου +καὶ +ἐν +σάλπιγγι +Θεοῦ, +καταβήσεται +ἀπ’ +οὐρανοῦ, +καὶ +οἱ +νεκροὶ +ἐν +Χριστῷ +ἀναστήσονται +πρῶτον, +ἔπειτα +ἡμεῖς +οἱ +ζῶντες +οἱ +περιλειπόμενοι +ἅμα +σὺν +αὐτοῖς +ἁρπαγησόμεθα +ἐν +νεφέλαις +εἰς +ἀπάντησιν +τοῦ +Κυρίου +εἰς +ἀέρα· +καὶ +οὕτως +πάντοτε +σὺν +Κυρίῳ +ἐσόμεθα. +Ὥστε +παρακαλεῖτε +ἀλλήλους +ἐν +τοῖς +λόγοις +τούτοις. +δὲ +ἀδελφοί, +Περὶ +τῶν +χρόνων +καὶ +τῶν +καιρῶν, +οὐ +χρείαν +ἔχετε +ὑμῖν +γράφεσθαι· +γὰρ +αὐτοὶ +ἀκριβῶς +οἴδατε +ὅτι +ὡς +κλέπτης +ἐν +νυκτὶ +ἡμέρα +Κυρίου +οὕτως +ἔρχεται. +ὅταν +λέγωσιν +Εἰρήνη +καὶ +ἀσφάλεια, +τότε +αἰφνίδιος +ὄλεθρος +αὐτοῖς +ἐπίσταται +ὥσπερ +ἡ +ὠδὶν +τῇ +ἐν +γαστρὶ +ἐχούσῃ, +καὶ +οὐ +μὴ +ἐκφύγωσιν. +δέ, +ἀδελφοί, +ὑμεῖς +οὐκ +ἐστὲ +ἐν +σκότει, +ἵνα +ἡ +ἡμέρα +ὑμᾶς +καταλάβῃ· +ὡς +κλέπτης +γὰρ +πάντες +ὑμεῖς +ἐστε +υἱοὶ +φωτός +καὶ +υἱοὶ +ἡμέρας. +Οὐκ +ἐσμὲν +νυκτὸς +οὐδὲ +σκότους· +ἄρα +οὖν +μὴ +καθεύδωμεν +ὡς +οἱ +λοιποί, +ἀλλὰ +γρηγορῶμεν +καὶ +νήφωμεν. +γὰρ +οἱ +καθεύδοντες +νυκτὸς +καθεύδουσιν, +καὶ +οἱ +μεθυσκόμενοι +νυκτὸς +μεθύουσιν· +δὲ +ἡμεῖς +ἡμέρας +ὄντες +νήφωμεν, +ἐνδυσάμενοι +θώρακα +πίστεως +καὶ +ἀγάπης +καὶ +περικεφαλαίαν +ἐλπίδα +σωτηρίας· +ὅτι +οὐκ +ἔθετο +ἡμᾶς +ὁ +Θεὸς +εἰς +ὀργὴν +ἀλλὰ +εἰς +περιποίησιν +σωτηρίας +διὰ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +τοῦ +ἀποθανόντος +περὶ +ἡμῶν, +ἵνα +εἴτε +γρηγορῶμεν +εἴτε +καθεύδωμεν +ἅμα +σὺν +αὐτῷ +ζήσωμεν. +Διὸ +παρακαλεῖτε +ἀλλήλους +καὶ +οἰκοδομεῖτε +εἷς +τὸν +ἕνα, +καθὼς +καὶ +ποιεῖτε. +δὲ +ἀδελφοί, +Ἐρωτῶμεν +ὑμᾶς, +εἰδέναι +τοὺς +κοπιῶντας +ἐν +ὑμῖν +καὶ +προϊσταμένους +ὑμῶν +ἐν +Κυρίῳ +καὶ +νουθετοῦντας +ὑμᾶς, +καὶ +ἡγεῖσθαι +αὐτοὺς +ὑπερεκπερισσῶς +ἐν +ἀγάπῃ +διὰ +τὸ +ἔργον +αὐτῶν. +εἰρηνεύετε +ἐν +ἑαυτοῖς. +δὲ +ἀδελφοί, +Παρακαλοῦμεν +ὑμᾶς, +νουθετεῖτε +τοὺς +ἀτάκτους, +παραμυθεῖσθε +τοὺς +ὀλιγοψύχους, +ἀντέχεσθε +τῶν +ἀσθενῶν, +μακροθυμεῖτε +πρὸς +πάντας. +ὁρᾶτε +μή +τις +κακὸν +ἀντὶ +κακοῦ +τινι +ἀποδῷ, +ἀλλὰ +πάντοτε +τὸ +ἀγαθὸν +διώκετε +εἰς +ἀλλήλους +καὶ +εἰς +πάντας. +Πάντοτε +χαίρετε, +ἀδιαλείπτως +προσεύχεσθε, +ἐν +παντὶ +εὐχαριστεῖτε· +γὰρ +τοῦτο +θέλημα +Θεοῦ +ἐν +Χριστῷ +Ἰησοῦ +εἰς +ὑμᾶς. +τὸ +Πνεῦμα +μὴ +σβέννυτε, +προφητείας +μὴ +ἐξουθενεῖτε· +δὲ +πάντα +δοκιμάζετε, +τὸ +καλὸν +κατέχετε· +ἀπὸ +παντὸς +εἴδους +πονηροῦ +ἀπέχεσθε. +δὲ +Αὐτὸς +ὁ +Θεὸς +τῆς +εἰρήνης +ἁγιάσαι +ὑμᾶς +ὁλοτελεῖς, +καὶ +ὁλόκληρον +ὑμῶν +τὸ +πνεῦμα +καὶ +ἡ +ψυχὴ +καὶ +τὸ +σῶμα +ἀμέμπτως +ἐν +τῇ +παρουσίᾳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τηρηθείη. +πιστὸς +ὁ +καλῶν +ὑμᾶς, +ὃς +καὶ +ποιήσει. +Ἀδελφοί, +προσεύχεσθε +περὶ +ἡμῶν. +Ἀσπάσασθε +τοὺς +ἀδελφοὺς +πάντας +ἐν +φιλήματι +ἁγίῳ. +Ἐνορκίζω +ὑμᾶς +τὸν +Κύριον +ἀναγνωσθῆναι +τὴν +ἐπιστολὴν +πᾶσιν +τοῖς +ἀδελφοῖς. +Ἠ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +μεθ’ +ὑμῶν. +Παῦλος +καὶ +Σιλουανὸς +καὶ +Τιμόθεος +τῇ +ἐκκλησίᾳ +Θεσσαλονικέων +ἐν +Θεῷ +Πατρὶ +ἡμῶν +καὶ +Κυρίῳ +Ἰησοῦ +Χριστῷ· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +ἀδελφοί, +ὀφείλομεν +Εὐχαριστεῖν +τῷ +Θεῷ +πάντοτε +περὶ +ὑμῶν, +καθὼς +ἄξιόν +ἐστιν, +ὅτι +ὑπεραυξάνει +ἡ +πίστις +ὑμῶν +καὶ +πλεονάζει +ἡ +ἀγάπη +ἑνὸς +ἑκάστου +πάντων +ὑμῶν +εἰς +ἀλλήλους, +ὥστε +αὐτοὺς +ἡμᾶς +ἐν +ὑμῖν +ἐνκαυχᾶσθαι +ἐν +ταῖς +ἐκκλησίαις +τοῦ +Θεοῦ +ὑπὲρ +τῆς +ὑπομονῆς +ὑμῶν +καὶ +πίστεως +ἐν +πᾶσιν +τοῖς +διωγμοῖς +ὑμῶν +καὶ +ταῖς +θλίψεσιν +αἷς +ἀνέχεσθε, +ἔνδειγμα +τῆς +δικαίας +κρίσεως +τοῦ +Θεοῦ, +εἰς +τὸ +καταξιωθῆναι +ὑμᾶς +τῆς +βασιλείας +τοῦ +Θεοῦ, +ὑπὲρ +ἧς +καὶ +πάσχετε, +εἴπερ +δίκαιον +παρὰ +Θεῷ +ἀνταποδοῦναι +τοῖς +θλίβουσιν +ὑμᾶς +θλῖψιν +καὶ +ὑμῖν +τοῖς +θλιβομένοις +ἄνεσιν +μεθ’ +ἡμῶν, +ἐν +τῇ +ἀποκαλύψει +τοῦ +Κυρίου +Ἰησοῦ +ἀπ’ +οὐρανοῦ +μετ’ +ἀγγέλων +δυνάμεως +αὐτοῦ +ἐν +πυρὶ +φλογός, +διδόντος +ἐκδίκησιν +τοῖς +μὴ +εἰδόσιν +Θεὸν +καὶ +τοῖς +μὴ +ὑπακούουσιν +τῷ +εὐαγγελίῳ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ, +οἵτινες +τίσουσιν +δίκην +ὄλεθρον +αἰώνιον +ἀπὸ +προσώπου +τοῦ +Κυρίου +καὶ +ἀπὸ +τῆς +δόξης +τῆς +ἰσχύος +αὐτοῦ, +ὅταν +ἔλθῃ +ἐνδοξασθῆναι +ἐν +τοῖς +ἁγίοις +αὐτοῦ +καὶ +θαυμασθῆναι +ἐν +πᾶσιν +τοῖς +πιστεύσασιν, +ἐν +τῇ +ἡμέρᾳ +ἐκείνῃ. +ὅτι +ἐπιστεύθη +τὸ +μαρτύριον +ἡμῶν +ἐφ’ +ὑμᾶς, +Εἰς +ὃ +καὶ +προσευχόμεθα +πάντοτε +περὶ +ὑμῶν, +ἵνα +ὑμᾶς +ἀξιώσῃ +τῆς +κλήσεως +ὁ +Θεὸς +ἡμῶν +καὶ +πληρώσῃ +πᾶσαν +εὐδοκίαν +ἀγαθωσύνης +καὶ +ἔργον +πίστεως +ἐν +δυνάμει, +ὅπως +ἐνδοξασθῇ +τὸ +ὄνομα +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +ἐν +ὑμῖν, +καὶ +ὑμεῖς +ἐν +αὐτῷ, +κατὰ +τὴν +χάριν +τοῦ +Θεοῦ +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +δὲ +ἀδελφοί, +Ἐρωτῶμεν +ὑμᾶς, +ὑπὲρ +τῆς +παρουσίας +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +καὶ +ἡμῶν +ἐπισυναγωγῆς +ἐπ’ +αὐτόν, +εἰς +τὸ +μὴ +ταχέως +σαλευθῆναι +ὑμᾶς +ἀπὸ +τοῦ +νοὸς +μηδὲ +θροεῖσθαι +μήτε +διὰ +πνεύματος +μήτε +διὰ +λόγου +μήτε +δι’ +ἐπιστολῆς +ὡς +δι’ +ἡμῶν, +ὡς +ὅτι +ἐνέστηκεν +ἡ +ἡμέρα +τοῦ +Κυρίου. +μή +τις +ὑμᾶς +ἐξαπατήσῃ +κατὰ +μηδένα +τρόπον· +ὅτι +ἐὰν +μὴ +ἔλθῃ +ἡ +ἀποστασία +πρῶτον +καὶ +ἀποκαλυφθῇ +ὁ +ἄνθρωπος +τῆς +ἀνομίας, +ὁ +υἱὸς +τῆς +ἀπωλείας, +ὁ +ἀντικείμενος +καὶ +ὑπεραιρόμενος +ἐπὶ +πάντα +λεγόμενον +Θεὸν +ἢ +σέβασμα, +ὥστε +αὐτὸν +εἰς +τὸν +ναὸν +τοῦ +Θεοῦ +καθίσαι, +ἀποδεικνύντα +ἑαυτὸν +ὅτι +ἔστιν +Θεός. +Οὐ +μνημονεύετε +ὅτι +ἔτι +ὢν +πρὸς +ὑμᾶς +ταῦτα +ἔλεγον +ὑμῖν; +καὶ +νῦν +τὸ +κατέχον +οἴδατε, +εἰς +τὸ +ἀποκαλυφθῆναι +αὐτὸν +ἐν +τῷ +αὐτοῦ +καιρῷ. +γὰρ +τὸ +μυστήριον +τῆς +ἀνομίας· +ἤδη +ἐνεργεῖται +μόνον +ὁ +κατέχων +ἄρτι +ἕως +ἐκ +μέσου +γένηται. +καὶ +τότε +ἀποκαλυφθήσεται +ὁ +ἄνομος, +ὃν +ὁ +Κύριος +Ἰησοῦς +ἀνελεῖ +τῷ +πνεύματι +τοῦ +στόματος +αὐτοῦ +καὶ +καταργήσει +τῇ +ἐπιφανείᾳ +τῆς +παρουσίας +αὐτοῦ, +οὗ +ἡ +παρουσία +ἐστιν +κατ’ +ἐνέργειαν +τοῦ +Σατανᾶ +ἐν +πάσῃ +δυνάμει +καὶ +σημείοις +καὶ +τέρασιν +ψεύδους +καὶ +ἐν +πάσῃ +ἀπάτῃ +ἀδικίας +τοῖς +ἀπολλυμένοις, +ἀνθ’ +ὧν +τὴν +ἀγάπην +τῆς +ἀληθείας +οὐκ +ἐδέξαντο +εἰς +τὸ +σωθῆναι +αὐτούς. +καὶ +διὰ +τοῦτο +πέμπει +αὐτοῖς +ὁ +Θεὸς +ἐνέργειαν +πλάνης +εἰς +τὸ +πιστεῦσαι +αὐτοὺς +τῷ +ψεύδει, +ἵνα +κριθῶσιν +πάντες +οἱ +μὴ +πιστεύσαντες +τῇ +ἀληθείᾳ +ἀλλὰ +εὐδοκήσαντες +τῇ +ἀδικίᾳ. +δὲ +Ἠμεῖς +ὀφείλομεν +εὐχαριστεῖν +τῷ +Θεῷ +πάντοτε +περὶ +ὑμῶν, +ἀδελφοὶ +ἠγαπημένοι +ὑπὸ +Κυρίου, +ὅτι +εἵλατο +ὑμᾶς +ὁ +Θεὸς +ἀπ’ +ἀρχῆς +εἰς +σωτηρίαν +ἐν +ἁγιασμῷ +Πνεύματος +καὶ +πίστει +ἀληθείας, +εἰς +ὃ +καὶ +ἐκάλεσεν +ὑμᾶς +διὰ +τοῦ +εὐαγγελίου +ἡμῶν, +εἰς +περιποίησιν +δόξης +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ. +Ἄρα +οὖν, +ἀδελφοί, +στήκετε, +καὶ +κρατεῖτε +τὰς +παραδόσεις +ἃς +ἐδιδάχθητε +εἴτε +διὰ +λόγου +εἴτε +δι’ +ἐπιστολῆς +ἡμῶν. +δὲ +Αὐτὸς +ὁ +Κύριος +ἡμῶν +Ἰησοῦς +Χριστὸς +καὶ +ὁ +Θεὸς +ὁ +Πατὴρ +ἡμῶν, +ὁ +ἀγαπήσας +ἡμᾶς +καὶ +δοὺς +παράκλησιν +αἰωνίαν +καὶ +ἐλπίδα +ἀγαθὴν +ἐν +χάριτι, +παρακαλέσαι +ὑμῶν +τὰς +καρδίας +καὶ +στηρίξαι +ἐν +παντὶ +ἔργῳ +καὶ +λόγῳ +ἀγαθῷ. +ἀδελφοί, +Τὸ +λοιπὸν +προσεύχεσθε, +περὶ +ἡμῶν, +ἵνα +ὁ +λόγος +τοῦ +Κυρίου +τρέχῃ +καὶ +δοξάζηται +καθὼς +καὶ +πρὸς +ὑμᾶς, +καὶ +ἵνα +ῥυσθῶμεν +ἀπὸ +τῶν +ἀτόπων +καὶ +πονηρῶν +ἀνθρώπων· +γὰρ +οὐ +πάντων +ἡ +πίστις. +δέ +Πιστὸς +ἐστιν +ὁ +Κύριος, +ὃς +στηρίξει +ὑμᾶς +καὶ +φυλάξει +ἀπὸ +τοῦ +πονηροῦ. +δὲ +πεποίθαμεν +ἐν +Κυρίῳ +ἐφ’ +ὑμᾶς, +ὅτι +ἃ +παραγγέλλομεν +καὶ +ποιεῖτε +καὶ +ποιήσετε. +δὲ +Ὁ +Κύριος +κατευθύναι +ὑμῶν +τὰς +καρδίας +εἰς +τὴν +ἀγάπην +τοῦ +Θεοῦ +καὶ +εἰς +τὴν +ὑπομονὴν +τοῦ +Χριστοῦ. +δὲ +ἀδελφοί, +Παραγγέλλομεν +ὑμῖν, +ἐν +ὀνόματι +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +στέλλεσθαι +ὑμᾶς +ἀπὸ +παντὸς +ἀδελφοῦ +ἀτάκτως +περιπατοῦντος +καὶ +μὴ +κατὰ +τὴν +παράδοσιν +ἣν +παρελάβετε +παρ’ +ἡμῶν. +γὰρ +αὐτοὶ +οἴδατε +πῶς +δεῖ +μιμεῖσθαι +ἡμᾶς, +ὅτι +οὐκ +ἠτακτήσαμεν +ἐν +ὑμῖν, +οὐδὲ +δωρεὰν +ἄρτον +ἐφάγομεν +παρά +τινος, +ἀλλ’ +ἐν +κόπῳ +καὶ +μόχθῳ +νυκτὸς +καὶ +ἡμέρας +ἐργαζόμενοι +πρὸς +τὸ +μὴ +ἐπιβαρῆσαί +τινα +ὑμῶν· +οὐχ +ὅτι +οὐκ +ἔχομεν +ἐξουσίαν, +ἀλλ’ +ἵνα +ἑαυτοὺς +τύπον +δῶμεν +ὑμῖν +εἰς +τὸ +μιμεῖσθαι +ἡμᾶς. +γὰρ +καὶ +ὅτε +ἦμεν +πρὸς +ὑμᾶς, +τοῦτο +παρηγγέλλομεν +ὑμῖν, +ὅτι +εἴ +τις +οὐ +θέλει +ἐργάζεσθαι, +μηδὲ +ἐσθιέτω. +γάρ +ἀκούομεν +τινας +περιπατοῦντας +ἐν +ὑμῖν +ἀτάκτως, +μηδὲν +ἐργαζομένους +ἀλλὰ +περιεργαζομένους· +δὲ +τοῖς +τοιούτοις +παραγγέλλομεν +καὶ +παρακαλοῦμεν +ἐν +Κυρίῳ +Ἰησοῦ +Χριστῷ +ἵνα +μετὰ +ἡσυχίας +ἐργαζόμενοι +τὸν +ἑαυτῶν +ἄρτον +ἐσθίωσιν. +δέ, +ἀδελφοί, +Ὑμεῖς +μὴ +ἐγκακήσητε +καλοποιοῦντες. +δέ +εἰ +τις +οὐχ +ὑπακούει +τῷ +λόγῳ +ἡμῶν +διὰ +τῆς +ἐπιστολῆς, +τοῦτον +σημειοῦσθε, +μὴ +συναναμίγνυσθαι +αὐτῷ, +ἵνα +ἐντραπῇ· +καὶ +μὴ +ὡς +ἐχθρὸν +ἡγεῖσθε, +ἀλλὰ +νουθετεῖτε +ὡς +ἀδελφόν. +δὲ +Αὐτὸς +ὁ +Κύριος +τῆς +εἰρήνης +δῴη +ὑμῖν +τὴν +εἰρήνην +διὰ +παντὸς +ἐν +παντὶ +τρόπῳ. +ὁ +Κύριος +μετὰ +πάντων +ὑμῶν. +Ὁ +ἀσπασμὸς +τῇ +ἐμῇ +χειρὶ +Παύλου, +ὅ +ἐστιν +σημεῖον +ἐν +πάσῃ +ἐπιστολῇ· +οὕτως +γράφω. +ἡ +χάρις +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +μετὰ +πάντων +ὑμῶν. +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +κατ’ +ἐπιταγὴν +Θεοῦ +Σωτῆρος +ἡμῶν +καὶ +Χριστοῦ +Ἰησοῦ +τῆς +ἐλπίδος +ἡμῶν +Τιμοθέῳ +γνησίῳ +τέκνῳ +ἐν +πίστει· +χάρις, +ἔλεος, +εἰρήνη +ἀπὸ +Θεοῦ +πατρὸς +καὶ +Χριστοῦ +Ἰησοῦ +τοῦ +κυρίου +ἡμῶν. +Καθὼς +παρεκάλεσά +σε +προσμεῖναι +ἐν +Ἐφέσῳ, +πορευόμενος +εἰς +Μακεδονίαν, +ἵνα +παραγγείλῃς +τισὶν +μὴ +ἑτεροδιδασκαλεῖν +μηδὲ +προσέχειν +μύθοις +καὶ +γενεαλογίαις +ἀπεράντοις, +αἵτινες +ἐκζητήσεις +παρέχουσιν +μᾶλλον +ἢ +οἰκονομίαν +Θεοῦ +τὴν +ἐν +πίστει· +δὲ +τὸ +τέλος +τῆς +παραγγελίας +ἐστὶν +ἀγάπη +ἐκ +καθαρᾶς +καρδίας +καὶ +συνειδήσεως +ἀγαθῆς +καὶ +πίστεως +ἀνυποκρίτου, +ὧν +ἀστοχήσαντες +τινες +ἐξετράπησαν +εἰς +ματαιολογίαν, +θέλοντες +εἶναι +νομοδιδάσκαλοι, +μὴ +νοοῦντες +μήτε +ἃ +λέγουσιν +μήτε +περὶ +τίνων +διαβεβαιοῦνται. +δὲ +Οἴδαμεν +ὅτι +καλὸς +ὁ +νόμος, +ἐάν +τις +αὐτῷ +νομίμως +χρῆται, +εἰδὼς +τοῦτο, +ὅτι +οὐ +δικαίῳ +νόμος +κεῖται, +δὲ +ἀνόμοις +καὶ +ἀνυποτάκτοις, +ἀσεβέσι +καὶ +ἁμαρτωλοῖς, +ἀνοσίοις +καὶ +βεβήλοις, +πατρολῴαις +καὶ +μητρολῴαις, +ἀνδροφόνοις, +πόρνοις, +ἀρσενοκοίταις, +ἀνδραποδισταῖς, +ψεύσταις, +ἐπιόρκοις, +καὶ +εἴ +τι +ἕτερον +ἀντίκειται, +τῇ +ὑγιαινούσῃ +διδασκαλίᾳ +κατὰ +τὸ +εὐαγγέλιον +τῆς +δόξης +τοῦ +μακαρίου +Θεοῦ, +ὃ +ἐπιστεύθην +ἐγώ. +Χάριν +ἔχω +τῷ +ἐνδυναμώσαντί +με +Χριστῷ +Ἰησοῦ +τῷ +Κυρίῳ +ἡμῶν, +ὅτι +πιστόν +με +ἡγήσατο +θέμενος +εἰς +διακονίαν, +τὸ +πρότερον +ὄντα +βλάσφημον +καὶ +διώκτην +καὶ +ὑβριστήν· +ἀλλὰ +ἠλεήθην, +ὅτι +ἀγνοῶν +ἐποίησα +ἐν +ἀπιστίᾳ, +δὲ +ὑπερεπλεόνασεν +ἡ +χάρις +τοῦ +Κυρίου +ἡμῶν +μετὰ +πίστεως +καὶ +ἀγάπης +τῆς +ἐν +Χριστῷ +Ἰησοῦ. +ὁ +λόγος +πιστὸς +καὶ +πάσης +ἀποδοχῆς +ἄξιος, +ὅτι +Χριστὸς +Ἰησοῦς +ἦλθεν +εἰς +τὸν +κόσμον +ἁμαρτωλοὺς +σῶσαι· +ὧν +πρῶτός +εἰμι +ἐγώ· +ἀλλὰ +διὰ +τοῦτο +ἠλεήθην, +ἵνα +ἐν +ἐμοὶ +πρώτῳ +ἐνδείξηται +Ἰησοῦς +Χριστὸς +τὴν +ἅπασαν +μακροθυμίαν, +πρὸς +ὑποτύπωσιν +τῶν +μελλόντων +πιστεύειν +ἐπ’ +αὐτῷ +εἰς +ζωὴν +αἰώνιον. +δὲ +Τῷ +Βασιλεῖ +τῶν +αἰώνων, +ἀφθάρτῳ +ἀοράτῳ +μόνῳ +Θεῷ, +τιμὴ +καὶ +δόξα +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +τέκνον +Τιμόθεε, +Ταύτην +τὴν +παραγγελίαν +παρατίθεμαί +σοι, +κατὰ +τὰς +προαγούσας +ἐπὶ +σὲ +προφητείας, +ἵνα +στρατεύῃ +ἐν +αὐταῖς +τὴν +καλὴν +στρατείαν, +ἔχων +πίστιν +καὶ +ἀγαθὴν +συνείδησιν, +ἥν +ἀπωσάμενοι +τινες +περὶ +τὴν +πίστιν +ἐναυάγησαν· +ὧν +ἐστιν +Ὑμέναιος +καὶ +Ἀλέξανδρος, +οὓς +παρέδωκα +τῷ +Σατανᾷ, +ἵνα +παιδευθῶσιν +μὴ +βλασφημεῖν. +οὖν +Παρακαλῶ +πρῶτον +πάντων +ποιεῖσθαι +δεήσεις, +προσευχάς, +ἐντεύξεις, +εὐχαριστίας, +ὑπὲρ +πάντων +ἀνθρώπων, +ὑπὲρ +βασιλέων +καὶ +πάντων +τῶν +ἐν +ὑπεροχῇ +ὄντων, +ἵνα +ἤρεμον +καὶ +ἡσύχιον +βίον +διάγωμεν +ἐν +πάσῃ +εὐσεβείᾳ +καὶ +σεμνότητι. +τοῦτο +καλὸν +καὶ +ἀπόδεκτον +ἐνώπιον +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ, +ὃς +θέλει +πάντας +ἀνθρώπους +σωθῆναι +καὶ +εἰς +ἐπίγνωσιν +ἀληθείας +ἐλθεῖν. +γὰρ +εἷς +Θεός, +εἷς +καὶ +μεσίτης +Θεοῦ +καὶ +ἀνθρώπων, +ἄνθρωπος +Χριστὸς +Ἰησοῦς, +ὁ +δοὺς +ἑαυτὸν +ἀντίλυτρον +ὑπὲρ +πάντων, +τὸ +μαρτύριον +καιροῖς +ἰδίοις· +εἰς +ὃ +ἐτέθην +ἐγὼ +κῆρυξ +καὶ +ἀπόστολος, +διδάσκαλος +ἐθνῶν +ἐν +πίστει +καὶ +ἀληθείᾳ. +ἀλήθειαν +λέγω, +οὐ +ψεύδομαι, +οὖν +Βούλομαι +προσεύχεσθαι +τοὺς +ἄνδρας +ἐν +παντὶ +τόπῳ +ἐπαίροντας +ὁσίους +χεῖρας +χωρὶς +ὀργῆς +καὶ +διαλογισμοῦ. +Ὡσαύτως +γυναῖκας +ἐν +καταστολῇ +κοσμίῳ +μετὰ +αἰδοῦς +καὶ +σωφροσύνης +κοσμεῖν +ἑαυτάς, +μὴ +ἐν +πλέγμασιν +καὶ +χρυσίῳ +ἢ +μαργαρίταις +ἢ +ἱματισμῷ +πολυτελεῖ, +ἀλλ’ +δι’ +ὃ +πρέπει +γυναιξὶν +ἐπαγγελλομέναις +θεοσέβειαν, +ἔργων +ἀγαθῶν. +Γυνὴ +ἐν +ἡσυχίᾳ +μανθανέτω +ἐν +πάσῃ +ὑποταγῇ· +δὲ +ἐπιτρέπω, +οὐκ +διδάσκειν +γυναικὶ +οὐδὲ +αὐθεντεῖν +ἀνδρός, +ἀλλ’ +εἶναι +ἐν +ἡσυχίᾳ. +γὰρ +Ἀδὰμ +πρῶτος +ἐπλάσθη, +εἶτα +Εὔα. +καὶ +Ἀδὰμ +οὐκ +ἠπατήθη, +δὲ +ἡ +γυνὴ +ἐξαπατηθεῖσα +ἐν +παραβάσει +γέγονεν· +δὲ +σωθήσεται +διὰ +τῆς +τεκνογονίας, +ἐὰν +μείνωσιν +ἐν +πίστει +καὶ +ἀγάπῃ +καὶ +ἁγιασμῷ +μετὰ +σωφροσύνης. +Πιστὸς +ὁ +λόγος· +εἴ +τις +ἐπισκοπῆς +ὀρέγεται, +καλοῦ +ἔργου +ἐπιθυμεῖ. +οὖν +δεῖ +τὸν +ἐπίσκοπον +εἶναι, +ἀνεπίλημπτον +μιᾶς +γυναικὸς +ἄνδρα, +νηφάλιον, +σώφρονα, +κόσμιον, +φιλόξενον, +διδακτικόν, +μὴ +πάροινον, +μὴ +πλήκτην, +ἀλλὰ +ἐπιεικῆ, +ἄμαχον, +ἀφιλάργυρον, +τοῦ +ἰδίου +οἴκου +καλῶς +προϊστάμενον, +τέκνα +ἔχοντα +ἐν +ὑποταγῇ +μετὰ +πάσης +σεμνότητος, +δέ +(εἰ +τις +τοῦ +ἰδίου +οἴκου +προστῆναι +οὐκ +οἶδεν, +πῶς +ἐκκλησίας +Θεοῦ +ἐπιμελήσεται;) +μὴ +νεόφυτον, +ἵνα +μὴ +τυφωθεὶς +εἰς +κρίμα +τοῦ +διαβόλου. +ἐμπέσῃ +δὲ +δεῖ +καὶ +μαρτυρίαν +καλὴν +ἔχειν +ἀπὸ +τῶν +ἔξωθεν, +ἵνα +μὴ +ἐμπέσῃ +εἰς +ὀνειδισμὸν +καὶ +παγίδα +τοῦ +διαβόλου. +ὡσαύτως +Διακόνους +σεμνούς, +μὴ +διλόγους, +μὴ +οἴνῳ +πολλῷ +προσέχοντας, +μὴ +αἰσχροκερδεῖς, +ἔχοντας +τὸ +μυστήριον +τῆς +πίστεως +ἐν +καθαρᾷ +συνειδήσει. +δὲ +καὶ +οὗτοι +δοκιμαζέσθωσαν +πρῶτον, +εἶτα +διακονείτωσαν +ἀνέγκλητοι +ὄντες. +ὡσαύτως +γυναῖκας +σεμνάς, +μὴ +διαβόλους, +νηφαλίους, +πιστὰς +ἐν +πᾶσιν. +διάκονοι +ἔστωσαν +μιᾶς +γυναικὸς +ἄνδρες, +καλῶς +προϊστάμενοι +τέκνων +καὶ +τῶν +ἰδίων +οἴκων. +γὰρ +οἱ +καλῶς +διακονήσαντες +βαθμὸν +καλὸν +ἑαυτοῖς +περιποιοῦνται +καὶ +πολλὴν +παρρησίαν +ἐν +πίστει +τῇ +ἐν +Χριστῷ +Ἰησοῦ. +Ταῦτά +σοι +γράφω +ἐλπίζων +ἐλθεῖν +πρὸς +σὲ +τάχειον· +δὲ +ἐὰν +βραδύνω, +ἵνα +εἰδῇς +πῶς +δεῖ +ἀναστρέφεσθαι, +ἐν +οἴκῳ +Θεοῦ +ἥτις +ἐστὶν +ἐκκλησία +Θεοῦ +ζῶντος, +στῦλος +καὶ +ἑδραίωμα +τῆς +ἀληθείας. +καὶ +ὁμολογουμένως +μέγα +ἐστὶν +τὸ +τῆς +εὐσεβείας +μυστήριον· +Ὃς +ἐφανερώθη +ἐν +σαρκί, +ἐδικαιώθη +ἐν +πνεύματι, +ὤφθη +ἀγγέλοις, +ἐκηρύχθη +ἐν +ἔθνεσιν, +ἐπιστεύθη +ἐν +κόσμῳ, +ἀνελήμφθη +ἐν +δόξῃ. +δὲ +Τὸ +πνεῦμα +ῥητῶς +λέγει +ὅτι +ἐν +ὑστέροις +καιροῖς +ἀποστήσονταί +τινες +τῆς +πίστεως, +προσέχοντες +πνεύμασιν +πλάνοις +καὶ +διδασκαλίαις +δαιμονίων, +ἐν +ὑποκρίσει +ψευδολόγων, +κεκαυστηριασμένων +τὴν +ἰδίαν +συνείδησιν, +κωλυόντων +γαμεῖν, +ἀπέχεσθαι +βρωμάτων, +ἃ +ὁ +Θεὸς +ἔκτισεν +εἰς +μετάλημψιν +μετὰ +εὐχαριστίας +τοῖς +πιστοῖς +καὶ +ἐπεγνωκόσι +τὴν +ἀλήθειαν. +ὅτι +πᾶν +κτίσμα +Θεοῦ +καλόν, +καὶ +οὐδὲν +ἀπόβλητον +μετὰ +εὐχαριστίας +λαμβανόμενον· +γὰρ +ἁγιάζεται +διὰ +λόγου +Θεοῦ +καὶ +ἐντεύξεως. +Ταῦτα +ὑποτιθέμενος +τοῖς +ἀδελφοῖς +ἔσῃ +καλὸς +διάκονος +Χριστοῦ +Ἰησοῦ, +ἐντρεφόμενος +τοῖς +λόγοις +τῆς +πίστεως +καὶ +τῆς +καλῆς +διδασκαλίας +ᾗ +παρηκολούθηκας· +δὲ +τοὺς +βεβήλους +καὶ +γραώδεις +μύθους +παραιτοῦ. +δὲ +γύμναζε +σεαυτὸν +πρὸς +εὐσέβειαν. +γὰρ +ἡ +σωματικὴ +γυμνασία +πρὸς +ὀλίγον +ἐστὶν +ὠφέλιμος· +δὲ +ἡ +εὐσέβεια +πρὸς +πάντα +ὠφέλιμός +ἐστιν, +ἔχουσα +ἐπαγγελίαν +ζωῆς +τῆς +νῦν +καὶ +τῆς +μελλούσης. +ὁ +λόγος +πιστὸς +καὶ +πάσης +ἀποδοχῆς +ἄξιος· +γὰρ +εἰς +τοῦτο +κοπιῶμεν +καὶ +ἀγωνιζόμεθα, +ὅτι +ἠλπίκαμεν +ἐπὶ +Θεῷ +ζῶντι, +ὅς +ἐστιν +Σωτὴρ +πάντων +ἀνθρώπων, +μάλιστα +πιστῶν. +ταῦτα +Παράγγελλε +καὶ +δίδασκε. +μηδείς +σου +τῆς +νεότητος +καταφρονείτω, +ἀλλὰ +γίνου +τύπος +τῶν +πιστῶν +ἐν +λόγῳ, +ἐν +ἀναστροφῇ, +ἐν +ἀγάπῃ, +ἐν +πίστει, +ἐν +ἁγνείᾳ. +ἕως +ἔρχομαι +πρόσεχε +τῇ +ἀναγνώσει, +τῇ +παρακλήσει, +τῇ +διδασκαλίᾳ. +μὴ +ἀμέλει +τοῦ +ἐν +σοὶ +χαρίσματος, +ὃ +ἐδόθη +σοι +διὰ +προφητείας +μετὰ +ἐπιθέσεως +τῶν +χειρῶν +τοῦ +πρεσβυτερίου. +ταῦτα +μελέτα, +ἐν +τούτοις +ἴσθι, +ἵνα +σου +ἡ +προκοπὴ +φανερὰ +ᾖ +πᾶσιν. +ἔπεχε +σεαυτῷ +καὶ +τῇ +διδασκαλίᾳ, +ἐπίμενε +αὐτοῖς· +γὰρ +τοῦτο +ποιῶν +σώσεις +καὶ +σεαυτὸν +καὶ +τοὺς +ἀκούοντάς +σου. +Πρεσβυτέρῳ +μὴ +ἐπιπλήξῃς, +ἀλλὰ +παρακάλει +ὡς +πατέρα, +νεωτέρους +ὡς +ἀδελφούς, +πρεσβυτέρας +ὡς +μητέρας, +νεωτέρας +ὡς +ἀδελφὰς +ἐν +πάσῃ +ἁγνείᾳ. +τίμα +Χήρας +τὰς +ὄντως +χήρας. +δέ +εἰ +τις +χήρα +τέκνα +ἢ +ἔκγονα +ἔχει, +μανθανέτωσαν +πρῶτον +τὸν +ἴδιον +οἶκον +εὐσεβεῖν +καὶ +ἀμοιβὰς +ἀποδιδόναι +τοῖς +προγόνοις· +γάρ +τοῦτο +ἐστιν +ἀπόδεκτον +ἐνώπιον +τοῦ +Θεοῦ. +δὲ +ἡ +ὄντως +χήρα +καὶ +μεμονωμένη +ἤλπικεν +ἐπὶ +Θεὸν +καὶ +προσμένει +ταῖς +δεήσεσιν +καὶ +ταῖς +προσευχαῖς +νυκτὸς +καὶ +ἡμέρας· +δὲ +ἡ +σπαταλῶσα +ζῶσα +τέθνηκεν. +καὶ +ταῦτα +παράγγελλε, +ἵνα +ἀνεπίλημπτοι +ὦσιν. +δέ +εἰ +τις +τῶν +ἰδίων +καὶ +μάλιστα +οἰκείων +οὐ +προνοεῖ, +τὴν +πίστιν +ἤρνηται +καὶ +ἔστιν +ἀπίστου +χείρων. +Χήρα +καταλεγέσθω +μὴ +ἔλαττον +ἐτῶν +ἑξήκοντα +γεγονυῖα, +ἑνὸς +ἀνδρὸς +γυνή, +ἐν +ἔργοις +καλοῖς +μαρτυρουμένη, +εἰ +ἐτεκνοτρόφησεν, +εἰ +ἐξενοδόχησεν, +εἰ +ἁγίων +πόδας +ἔνιψεν, +εἰ +θλιβομένοις +ἐπήρκεσεν, +εἰ +παντὶ +ἔργῳ +ἀγαθῷ +ἐπηκολούθησεν. +δὲ +νεωτέρας +χήρας +παραιτοῦ· +γὰρ +ὅταν +καταστρηνιάσωσιν +τοῦ +Χριστοῦ, +γαμεῖν +θέλουσιν, +ἔχουσαι +κρίμα +ὅτι +τὴν +πρώτην +πίστιν +ἠθέτησαν· +δὲ +ἅμα +καὶ +ἀργαὶ +μανθάνουσιν, +περιερχόμεναι +τὰς +οἰκίας, +δὲ +οὐ +μόνον +ἀργαὶ +ἀλλὰ +καὶ +φλύαροι +καὶ +περίεργοι, +λαλοῦσαι +τὰ +μὴ +δέοντα. +οὖν +βούλομαι +νεωτέρας +γαμεῖν, +τεκνογονεῖν, +οἰκοδεσποτεῖν, +μηδεμίαν +ἀφορμὴν +διδόναι +τῷ +ἀντικειμένῳ +λοιδορίας +χάριν· +γάρ +ἤδη +τινες +ἐξετράπησαν +ὀπίσω +τοῦ +Σατανᾶ. +εἴ +τις +πιστὴ +ἔχει +χήρας, +ἐπαρκείτω +αὐταῖς, +καὶ +μὴ +βαρείσθω +ἡ +ἐκκλησία, +ἵνα +ταῖς +ὄντως +χήραις +ἐπαρκέσῃ. +Οἱ +καλῶς +προεστῶτες +πρεσβύτεροι +διπλῆς +τιμῆς +ἀξιούσθωσαν, +μάλιστα +οἱ +κοπιῶντες +ἐν +λόγῳ +καὶ +διδασκαλίᾳ. +γὰρ +λέγει +ἡ +γραφή +Βοῦν +ἀλοῶντα +οὐ +φιμώσεις, +καί +Ἄξιος +ὁ +ἐργάτης +τοῦ +μισθοῦ +αὐτοῦ. +κατὰ +πρεσβυτέρου +κατηγορίαν +μὴ +παραδέχου, +ἐκτὸς +εἰ +μὴ +ἐπὶ +δύο +ἢ +τριῶν +μαρτύρων. +Τοὺς +ἁμαρτάνοντας +ἐνώπιον +πάντων +ἔλεγχε, +ἵνα +καὶ +οἱ +λοιποὶ +φόβον +ἔχωσιν. +διαμαρτύρομαι +ἐνώπιον +τοῦ +Θεοῦ +καὶ +Χριστοῦ +Ἰησοῦ +καὶ +τῶν +ἐκλεκτῶν +ἀγγέλων +ἵνα +ταῦτα +φυλάξῃς +χωρὶς +προκρίματος, +μηδὲν +ποιῶν +κατὰ +πρόσκλισιν. +Χεῖρας +ταχέως +μηδενὶ +ἐπιτίθει, +μηδὲ +κοινώνει +ἁμαρτίαις +ἀλλοτρίαις· +σεαυτὸν +ἁγνὸν +τήρει. +Μηκέτι +ὑδροπότει, +ἀλλὰ +οἴνῳ +ὀλίγῳ +χρῶ +διὰ +τὸν +στόμαχον +καὶ +τὰς +πυκνάς +σου +ἀσθενείας. +Τινῶν +ἀνθρώπων +αἱ +ἁμαρτίαι +πρόδηλοί +εἰσιν +προάγουσαι +εἰς +κρίσιν, +δὲ +τισὶν +καὶ +ἐπακολουθοῦσιν· +ὡσαύτως +καὶ +τὰ +ἔργα +τὰ +καλὰ +πρόδηλα, +καὶ +τὰ +ἄλλως +ἔχοντα +κρυβῆναι +οὐ +δύνανται. +Ὅσοι +εἰσὶν +ὑπὸ +ζυγὸν +δοῦλοι, +τοὺς +ἰδίους +δεσπότας +πάσης +τιμῆς +ἀξίους +ἡγείσθωσαν, +ἵνα +μὴ +τὸ +ὄνομα +τοῦ +Θεοῦ +καὶ +ἡ +διδασκαλία +βλασφημῆται. +δὲ +οἱ +ἔχοντες +πιστοὺς +δεσπότας +μὴ +καταφρονείτωσαν, +ὅτι +ἀδελφοί +εἰσιν, +ἀλλὰ +μᾶλλον +δουλευέτωσαν, +ὅτι +εἰσιν +πιστοί +καὶ +ἀγαπητοὶ +οἱ +τῆς +εὐεργεσίας +ἀντιλαμβανόμενοι. +Ταῦτα +δίδασκε +καὶ +παρακάλει. +εἴ +τις +ἑτεροδιδασκαλεῖ +καὶ +μὴ +προσέρχεται +ὑγιαίνουσιν +λόγοις, +τοῖς +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +καὶ +τῇ +κατ’ +εὐσέβειαν +διδασκαλίᾳ, +τετύφωται, +μηδὲν +ἐπιστάμενος, +ἀλλὰ +νοσῶν +περὶ +ζητήσεις +καὶ +λογομαχίας, +ἐξ +ὧν +γίνεται +φθόνος, +ἔρις, +βλασφημίαι, +ὑπόνοιαι +πονηραί, +διαπαρατριβαὶ +ἀνθρώπων +διεφθαρμένων +τὸν +νοῦν +καὶ +ἀπεστερημένων +τῆς +ἀληθείας, +νομιζόντων +πορισμὸν +εἶναι +τὴν +εὐσέβειαν. +δὲ +ἔστιν +πορισμὸς +μέγας +ἡ +εὐσέβεια +μετὰ +αὐταρκείας· +γὰρ +οὐδὲν +εἰσηνέγκαμεν +εἰς +τὸν +κόσμον, +ὅτι +οὐδὲ +ἐξενεγκεῖν +τι +δυνάμεθα· +δὲ +ἔχοντες +διατροφὰς +καὶ +σκεπάσματα, +τούτοις +ἀρκεσθησόμεθα. +δὲ +οἱ +βουλόμενοι +πλουτεῖν +ἐμπίπτουσιν +εἰς +πειρασμὸν +καὶ +παγίδα +καὶ +ἐπιθυμίας +πολλὰς +ἀνοήτους +καὶ +βλαβεράς, +αἵτινες +βυθίζουσιν +τοὺς +ἀνθρώπους +εἰς +ὄλεθρον +καὶ +ἀπώλειαν. +γὰρ +ῥίζα +πάντων +τῶν +κακῶν +ἐστιν +ἡ +φιλαργυρία, +ἧς +ὀρεγόμενοι +τινες +ἀπεπλανήθησαν +ἀπὸ +τῆς +πίστεως +καὶ +ἑαυτοὺς +περιέπειραν +ὀδύναις +πολλαῖς. +δέ, +ὦ +ἄνθρωπε +Θεοῦ, +Σὺ +ταῦτα +φεῦγε· +δὲ +δίωκε +δικαιοσύνην, +εὐσέβειαν, +πίστιν, +ἀγάπην, +ὑπομονήν, +πραϋπαθίαν. +ἀγωνίζου +τὸν +καλὸν +ἀγῶνα +τῆς +πίστεως, +ἐπιλαβοῦ +τῆς +αἰωνίου +ζωῆς, +εἰς +ἣν +ἐκλήθης +καὶ +ὡμολόγησας +τὴν +καλὴν +ὁμολογίαν +ἐνώπιον +πολλῶν +μαρτύρων. +παραγγέλλω +ἐνώπιον +τοῦ +Θεοῦ +τοῦ +ζωογονοῦντος +τὰ +πάντα +καὶ +Χριστοῦ +Ἰησοῦ +τοῦ +μαρτυρήσαντος +ἐπὶ +Ποντίου +Πειλάτου +τὴν +καλὴν +ὁμολογίαν, +τηρῆσαί +σε +τὴν +ἐντολὴν +ἄσπιλον +ἀνεπίλημπτον +μέχρι +τῆς +ἐπιφανείας +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ἣν +καιροῖς +ἰδίοις +δείξει +ὁ +μακάριος +καὶ +μόνος +Δυνάστης, +ὁ +Βασιλεὺς +τῶν +βασιλευόντων +καὶ +Κύριος +τῶν +κυριευόντων, +ὁ +μόνος +ἔχων +ἀθανασίαν, +φῶς +ἀπρόσιτον, +οἰκῶν +ὃν +εἶδεν +οὐδεὶς +ἀνθρώπων +οὐδὲ +ἰδεῖν +δύναται· +ᾧ +τιμὴ +καὶ +κράτος +αἰώνιον· +ἀμήν. +Τοῖς +πλουσίοις +ἐν +τῷ +νῦν +αἰῶνι +παράγγελλε +μὴ +ὑψηλοφρονεῖν, +μηδὲ +ἠλπικέναι +ἐπὶ +πλούτου +ἀδηλότητι, +ἀλλ’ +ἐπὶ +Θεῷ +τῷ +παρέχοντι +ἡμῖν +πάντα +πλουσίως +εἰς +ἀπόλαυσιν, +ἀγαθοεργεῖν, +πλουτεῖν +ἐν +ἔργοις +καλοῖς, +εὐμεταδότους +εἶναι, +κοινωνικούς, +ἀποθησαυρίζοντας +ἑαυτοῖς +θεμέλιον +καλὸν +εἰς +τὸ +μέλλον, +ἵνα +ἐπιλάβωνται +τῆς +ὄντως +ζωῆς. +Ὦ +Τιμόθεε, +τὴν +παραθήκην +φύλαξον, +ἐκτρεπόμενος +τὰς +βεβήλους +κενοφωνίας +καὶ +ἀντιθέσεις +τῆς +ψευδωνύμου +γνώσεως, +ἥν +ἐπαγγελλόμενοι +τινες +περὶ +τὴν +πίστιν +ἠστόχησαν. +Ἠ +χάρις +μεθ’ +ὑμῶν. +Παῦλος +ἀπόστολος +Χριστοῦ +Ἰησοῦ +διὰ +θελήματος +Θεοῦ +κατ’ +ἐπαγγελίαν +ζωῆς +τῆς +ἐν +Χριστῷ +Ἰησοῦ +Τιμοθέῳ +ἀγαπητῷ +τέκνῳ· +χάρις, +ἔλεος, +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +καὶ +Χριστοῦ +Ἰησοῦ +τοῦ +Κυρίου +ἡμῶν. +Χάριν +ἔχω +τῷ +Θεῷ, +ᾧ +λατρεύω +ἀπὸ +προγόνων +ἐν +καθαρᾷ +συνειδήσει, +ὡς +ἀδιάλειπτον +ἔχω +τὴν +περὶ +σοῦ +μνείαν +ἐν +ταῖς +δεήσεσίν +μου +νυκτὸς +καὶ +ἡμέρας, +ἐπιποθῶν +σε +ἰδεῖν, +μεμνημένος +σου +τῶν +δακρύων, +ἵνα +χαρᾶς +πληρωθῶ, +λαβὼν +ὑπόμνησιν +τῆς +ἐν +σοὶ +ἀνυποκρίτου +πίστεως, +ἥτις +ἐνῴκησεν +πρῶτον +ἐν +τῇ +μάμμῃ +σου +Λωΐδι +καὶ +τῇ +μητρί +σου +Εὐνίκῃ, +δὲ +πέπεισμαι +ὅτι +καὶ +ἐν +σοί. +Δι’ +ἣν +αἰτίαν +ἀναμιμνῄσκω +σε +ἀναζωπυρεῖν +τὸ +χάρισμα +τοῦ +Θεοῦ, +ὅ +ἐστιν +ἐν +σοὶ +διὰ +τῆς +ἐπιθέσεως +τῶν +χειρῶν +μου. +γὰρ +οὐ +ἔδωκεν +ἡμῖν +ὁ +Θεὸς +πνεῦμα +δειλίας, +ἀλλὰ +δυνάμεως +καὶ +ἀγάπης +καὶ +σωφρονισμοῦ. +οὖν +Μὴ +ἐπαισχυνθῇς +τὸ +μαρτύριον +τοῦ +Κυρίου +ἡμῶν +μηδὲ +ἐμὲ +τὸν +δέσμιον +αὐτοῦ, +ἀλλὰ +συνκακοπάθησον +τῷ +εὐαγγελίῳ +κατὰ +δύναμιν +Θεοῦ, +τοῦ +σώσαντος +ἡμᾶς +καὶ +καλέσαντος +κλήσει +ἁγίᾳ, +οὐ +κατὰ +τὰ +ἔργα +ἡμῶν +ἀλλὰ +κατὰ +ἰδίαν +πρόθεσιν +καὶ +χάριν, +τὴν +δοθεῖσαν +ἡμῖν +ἐν +Χριστῷ +Ἰησοῦ +πρὸ +χρόνων +αἰωνίων, +δὲ +φανερωθεῖσαν +νῦν +διὰ +τῆς +ἐπιφανείας +τοῦ +Σωτῆρος +ἡμῶν +Χριστοῦ +Ἰησοῦ, +μὲν +καταργήσαντος +τὸν +θάνατον +δὲ +φωτίσαντος +ζωὴν +καὶ +ἀφθαρσίαν +διὰ +τοῦ +εὐαγγελίου, +εἰς +ὃ +ἐτέθην +ἐγὼ +κήρυξ +καὶ +ἀπόστολος +καὶ +διδάσκαλος· +δι’ +ἣν +αἰτίαν +καὶ +ταῦτα +πάσχω, +ἀλλ’ +οὐκ +ἐπαισχύνομαι, +γὰρ +οἶδα +ᾧ +πεπίστευκα, +καὶ +πέπεισμαι +ὅτι +ἐστιν +δυνατός +τὴν +παραθήκην +μου +φυλάξαι +εἰς +ἐκείνην +τὴν +ἡμέραν. +ἔχε +ὑποτύπωσιν +ὑγιαινόντων +λόγων +ὧν +παρ’ +ἐμοῦ +ἤκουσας +ἐν +πίστει +καὶ +ἀγάπῃ +τῇ +ἐν +Χριστῷ +Ἰησοῦ· +τὴν +καλὴν +παραθήκην +φύλαξον +διὰ +Πνεύματος +Ἁγίου +τοῦ +ἐνοικοῦντος +ἐν +ἡμῖν. +Οἶδας +τοῦτο, +ὅτι +ἀπεστράφησάν +με +πάντες +οἱ +ἐν +τῇ +Ἀσίᾳ, +ὧν +ἐστιν +Φύγελος +καὶ +Ἑρμογένης. +δῴη +ἔλεος +ὁ +Κύριος +τῷ +Ὀνησιφόρου +οἴκῳ, +ὅτι +πολλάκις +με +ἀνέψυξεν, +καὶ +οὐκ +τὴν +ἅλυσίν +μου +ἐπαισχύνθη, +ἀλλὰ +γενόμενος +ἐν +Ῥώμῃ +σπουδαίως +ἐζήτησέν +με +καὶ +εὗρεν·— +δῴη +αὐτῷ +ὁ +Κύριος +εὑρεῖν +ἔλεος +παρὰ +Κυρίου +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ·— +καὶ +ὅσα +ἐν +Ἐφέσῳ +διηκόνησεν, +βέλτιον +σὺ +γινώσκεις. +οὖν, +τέκνον +μου, +Σὺ +ἐνδυναμοῦ +ἐν +τῇ +χάριτι +τῇ +ἐν +Χριστῷ +Ἰησοῦ, +καὶ +ἃ +ἤκουσας +παρ’ +ἐμοῦ +διὰ +πολλῶν +μαρτύρων, +ταῦτα +παράθου +πιστοῖς +ἀνθρώποις, +οἵτινες +ἱκανοὶ +ἔσονται +καὶ +ἑτέρους +διδάξαι. +συνκακοπάθησον +ὡς +καλὸς +στρατιώτης +Χριστοῦ +Ἰησοῦ. +οὐδεὶς +στρατευόμενος +ἐμπλέκεται +ταῖς +τοῦ +βίου +πραγματείαις, +ἵνα +τῷ +στρατολογήσαντι +ἀρέσῃ. +δὲ +ἐὰν +καὶ +ἀθλῇ +τις, +οὐ +στεφανοῦται +ἐὰν +μὴ +νομίμως +ἀθλήσῃ. +δεῖ +τὸν +κοπιῶντα +γεωργὸν +πρῶτον +τῶν +καρπῶν +μεταλαμβάνειν. +νόει +ὃ +λέγω· +γάρ +δώσει +σοι +ὁ +Κύριος +σύνεσιν +ἐν +πᾶσιν. +Μνημόνευε +Ἰησοῦν +Χριστὸν +ἐγηγερμένον +ἐκ +νεκρῶν, +ἐκ +σπέρματος +Δαυείδ, +κατὰ +τὸ +εὐαγγέλιόν +μου· +ἐν +ᾧ +κακοπαθῶ +μέχρι +δεσμῶν +ὡς +κακοῦργος, +ἀλλὰ +ὁ +λόγος +τοῦ +Θεοῦ +οὐ +δέδεται. +διὰ +τοῦτο +πάντα +ὑπομένω +διὰ +τοὺς +ἐκλεκτούς, +ἵνα +καὶ +αὐτοὶ +τύχωσιν +σωτηρίας +τῆς +ἐν +Χριστῷ +Ἰησοῦ +μετὰ +δόξης +αἰωνίου. +Πιστὸς +ὁ +λόγος· +γὰρ +εἰ +συναπεθάνομεν, +καὶ +συζήσομεν· +εἰ +ὑπομένομεν, +καὶ +συνβασιλεύσομεν· +εἰ +ἀρνησόμεθα, +κἀκεῖνος +ἀρνήσεται +ἡμᾶς· +εἰ +ἀπιστοῦμεν, +ἐκεῖνος +πιστὸς +μένει, +γὰρ +ἀρνήσασθαι +ἑαυτὸν +οὐ +δύναται. +Ταῦτα +ὑπομίμνῃσκε, +διαμαρτυρόμενος +ἐνώπιον +τοῦ +Θεοῦ +μὴ +λογομαχεῖν, +ἐπ’ +οὐδὲν +χρήσιμον, +ἐπὶ +καταστροφῇ +τῶν +ἀκουόντων. +σπούδασον +παραστῆσαι +σεαυτὸν +δόκιμον +τῷ +Θεῷ, +ἐργάτην +ἀνεπαίσχυντον, +ὀρθοτομοῦντα +τὸν +λόγον +τῆς +ἀληθείας. +δὲ +τὰς +βεβήλους +κενοφωνίας +περιΐστασο· +γὰρ +ἐπὶ +πλεῖον +ἀσεβείας, +προκόψουσιν +καὶ +ὁ +λόγος +αὐτῶν +ὡς +γάγγραινα +νομὴν +ἕξει· +ὧν +ἐστιν +Ὑμέναιος +καὶ +Φιλητός, +οἵτινες +περὶ +τὴν +ἀλήθειαν +ἠστόχησαν, +λέγοντες +ἀνάστασιν +ἤδη +γεγονέναι, +καὶ +ἀνατρέπουσιν +τήν +τινων +πίστιν. +μέντοι +ὁ +στερεὸς +θεμέλιος +τοῦ +Θεοῦ +ἕστηκεν, +ἔχων +τὴν +σφραγῖδα +ταύτην +Ἔγνω +Κύριος +τοὺς +ὄντας +αὐτοῦ, +καί +Ἀποστήτω +ἀπὸ +ἀδικίας +πᾶς +ὁ +ὀνομάζων +τὸ +ὄνομα +Κυρίου. +δὲ +ἐν +μεγάλῃ +οἰκίᾳ +ἔστιν +οὐκ +μόνον +σκεύη +χρυσᾶ +καὶ +ἀργυρᾶ, +ἀλλὰ +καὶ +ξύλινα +καὶ +ὀστράκινα, +καὶ +μὲν +ἃ +εἰς +τιμὴν +δὲ +ἃ +εἰς +ἀτιμίαν· +οὖν +ἐὰν +τις +ἐκκαθάρῃ +ἑαυτὸν +ἀπὸ +τούτων, +ἔσται +σκεῦος +εἰς +τιμήν, +ἡγιασμένον, +εὔχρηστον +τῷ +δεσπότῃ, +εἰς +πᾶν +ἔργον +ἀγαθὸν +ἡτοιμασμένον. +δὲ +τὰς +νεωτερικὰς +ἐπιθυμίας +φεῦγε, +δὲ +δίωκε +δικαιοσύνην, +πίστιν, +ἀγάπην, +εἰρήνην +μετὰ +τῶν +ἐπικαλουμένων +τὸν +Κύριον +ἐκ +καθαρᾶς +καρδίας. +δὲ +τὰς +μωρὰς +καὶ +ἀπαιδεύτους +ζητήσεις +παραιτοῦ, +εἰδὼς +ὅτι +γεννῶσιν +μάχας· +δὲ +δεῖ +δοῦλον +Κυρίου +οὐ +μάχεσθαι +ἀλλὰ +εἶναι +ἤπιον +πρὸς +πάντας, +διδακτικόν, +ἀνεξίκακον, +ἐν +πραΰτητι +παιδεύοντα +τοὺς +ἀντιδιατιθεμένους, +μή +ποτε +δώῃ +αὐτοῖς +ὁ +Θεὸς +μετάνοιαν +εἰς +ἐπίγνωσιν +ἀληθείας, +καὶ +ἀνανήψωσιν +ἐκ +τῆς +τοῦ +διαβόλου +παγίδος, +ἐζωγρημένοι +ὑπ’ +αὐτοῦ +εἰς +τὸ +ἐκείνου +θέλημα. +δὲ +Τοῦτο +γίνωσκε, +ὅτι +ἐν +ἐσχάταις +ἡμέραις +ἐνστήσονται +καιροὶ +χαλεποί· +γὰρ +ἔσονται +οἱ +ἄνθρωποι +φίλαυτοι, +φιλάργυροι, +ἀλαζόνες, +ὑπερήφανοι, +βλάσφημοι, +γονεῦσιν +ἀπειθεῖς, +ἀχάριστοι, +ἀνόσιοι, +ἄστοργοι, +ἄσπονδοι, +διάβολοι, +ἀκρατεῖς, +ἀνήμεροι, +ἀφιλάγαθοι, +προδόται, +προπετεῖς, +τετυφωμένοι, +φιλήδονοι +μᾶλλον +ἢ +φιλόθεοι, +ἔχοντες +μόρφωσιν +εὐσεβείας +δὲ +τὴν +δύναμιν +αὐτῆς +ἠρνημένοι· +καὶ +τούτους +ἀποτρέπου. +γάρ +ἐκ +τούτων +εἰσιν +οἱ +ἐνδύνοντες +εἰς +τὰς +οἰκίας +καὶ +αἰχμαλωτίζοντες +γυναικάρια +σεσωρευμένα +ἁμαρτίαις, +ἀγόμενα +ἐπιθυμίαις +ποικίλαις, +πάντοτε +μανθάνοντα +καὶ +μηδέποτε +εἰς +ἐπίγνωσιν +ἀληθείας +ἐλθεῖν +δυνάμενα. +δὲ +ὃν +τρόπον +Ἰάννης +καὶ +Ἰαμβρῆς +ἀντέστησαν +Μωϋσεῖ, +οὕτως +καὶ +οὗτοι +ἀνθίστανται +τῇ +ἀληθείᾳ, +ἄνθρωποι +κατεφθαρμένοι +τὸν +νοῦν, +ἀδόκιμοι +περὶ +τὴν +πίστιν. +ἀλλ’ +οὐ +προκόψουσιν +ἐπὶ +πλεῖον· +γὰρ +ἡ +ἄνοια +αὐτῶν +ἔκδηλος +ἔσται +πᾶσιν, +ὡς +καὶ +ἡ +ἐκείνων +ἐγένετο. +δὲ +Σὺ +παρηκολούθησάς +μου +τῇ +διδασκαλίᾳ, +τῇ +ἀγωγῇ, +τῇ +προθέσει, +τῇ +πίστει, +τῇ +μακροθυμίᾳ, +τῇ +ἀγάπῃ, +τῇ +ὑπομονῇ, +τοῖς +διωγμοῖς, +τοῖς +παθήμασιν, +οἷά +μοι +ἐγένετο +ἐν +Ἀντιοχείᾳ, +ἐν +Ἰκονίῳ, +ἐν +Λύστροις· +οἵους +διωγμοὺς +ὑπήνεγκα, +καὶ +ἐκ +πάντων +με +ἐρύσατο +ὁ +Κύριος. +δὲ +καὶ +πάντες +οἱ +θέλοντες +ζῆν +εὐσεβῶς +ἐν +Χριστῷ +Ἰησοῦ +διωχθήσονται. +δὲ +πονηροὶ +ἄνθρωποι +καὶ +γόητες +προκόψουσιν +ἐπὶ +τὸ +χεῖρον, +πλανῶντες +καὶ +πλανώμενοι. +δὲ +σὺ +μένε +ἐν +οἷς +ἔμαθες +καὶ +ἐπιστώθης, +εἰδὼς +παρὰ +τίνων +ἔμαθες, +καὶ +ὅτι +ἀπὸ +βρέφους +οἶδας, +ἱερὰ +γράμματα +τὰ +δυνάμενά +σε +σοφίσαι +εἰς +σωτηρίαν +διὰ +πίστεως +τῆς +ἐν +Χριστῷ +Ἰησοῦ. +πᾶσα +γραφὴ +θεόπνευστος +καὶ +ὠφέλιμος +πρὸς +διδασκαλίαν, +πρὸς +ἐλεγμόν, +πρὸς +ἐπανόρθωσιν, +πρὸς +παιδείαν +τὴν +ἐν +δικαιοσύνῃ, +ἵνα +ἄρτιος +ᾖ +ὁ +τοῦ +Θεοῦ +ἄνθρωπος, +πρὸς +πᾶν +ἔργον +ἀγαθὸν +ἐξηρτισμένος. +Διαμαρτύρομαι +ἐνώπιον +τοῦ +Θεοῦ +καὶ +Χριστοῦ +Ἰησοῦ, +τοῦ +μέλλοντος +κρίνειν +ζῶντας +καὶ +νεκρούς, +καὶ +τὴν +ἐπιφάνειαν +αὐτοῦ +καὶ +τὴν +βασιλείαν +αὐτοῦ· +κήρυξον +τὸν +λόγον, +ἐπίστηθι +εὐκαίρως +ἀκαίρως, +ἔλεγξον, +ἐπιτίμησον, +παρακάλεσον, +ἐν +πάσῃ +μακροθυμίᾳ +καὶ +διδαχῇ. +γὰρ +ἔσται +καιρὸς +ὅτε +οὐκ +τῆς +ὑγιαινούσης +διδασκαλίας +ἀνέξονται, +ἀλλὰ +κατὰ +τὰς +ἰδίας +ἐπιθυμίας +ἑαυτοῖς +ἐπισωρεύσουσιν +διδασκάλους +κνηθόμενοι +τὴν +ἀκοήν, +καὶ +μὲν +ἀπὸ +τῆς +ἀληθείας +τὴν +ἀκοὴν +ἀποστρέψουσιν, +δὲ +ἐπὶ +τοὺς +μύθους +ἐκτραπήσονται. +δὲ +σὺ +νῆφε +ἐν +πᾶσιν, +κακοπάθησον, +ποίησον +ἔργον +εὐαγγελιστοῦ, +τὴν +διακονίαν +σου +πληροφόρησον. +γὰρ +Ἐγὼ +ἤδη +σπένδομαι, +καὶ +ὁ +καιρὸς +τῆς +ἀναλύσεώς +μου +ἐφέστηκεν. +τὸν +καλὸν +ἀγῶνα +ἠγώνισμαι, +τὸν +δρόμον +τετέλεκα, +τὴν +πίστιν +τετήρηκα· +λοιπὸν +ἀπόκειταί +μοι +ὁ +τῆς +δικαιοσύνης +στέφανος, +ὃν +ἀποδώσει +μοι +ὁ +κύριος +ὁ +δίκαιος +κριτής, +ἐν +ἐκείνῃ +τῇ +ἡμέρᾳ, +δὲ +οὐ +μόνον +ἐμοὶ +ἀλλὰ +καὶ +πᾶσι +τοῖς +ἠγαπηκόσι +τὴν +ἐπιφάνειαν +αὐτοῦ. +Σπούδασον +ἐλθεῖν +πρός +με +ταχέως· +γάρ +Δημᾶς +με +ἐγκατέλιπεν +ἀγαπήσας +τὸν +νῦν +αἰῶνα, +καὶ +ἐπορεύθη +εἰς +Θεσσαλονίκην, +Κρήσκης +εἰς +Γαλατίαν, +Τίτος +εἰς +Δαλματίαν· +Λουκᾶς +ἐστιν +μόνος +μετ’ +ἐμοῦ. +Μᾶρκον +ἀναλαβὼν +ἄγε +μετὰ +σεαυτοῦ· +γάρ +ἔστιν +μοι +εὔχρηστος +εἰς +διακονίαν. +δὲ +Τυχικὸν +ἀπέστειλα +εἰς +Ἔφεσον. +τὸν +φελόνην, +ὃν +ἀπέλιπον +ἐν +Τρῳάδι +παρὰ +Κάρπῳ, +ἐρχόμενος +φέρε, +καὶ +τὰ +βιβλία, +μάλιστα +τὰς +μεμβράνας. +Ἀλέξανδρος +ὁ +χαλκεὺς +πολλά +κακὰ +μοι +ἐνεδείξατο· +ἀποδώσει +αὐτῷ +ὁ +Κύριος +κατὰ +τὰ +ἔργα +αὐτοῦ· +ὃν +καὶ +σὺ +φυλάσσου· +γὰρ +λίαν +ἀντέστη +τοῖς +ἡμετέροις +λόγοις. +Ἐν +τῇ +πρώτῃ +μου +ἀπολογίᾳ +οὐδείς +μοι +παρεγένετο, +ἀλλὰ +πάντες +με +ἐγκατέλιπον· +μὴ +αὐτοῖς +λογισθείη· +δὲ +ὁ +Κύριός +μοι +παρέστη +καὶ +ἐνεδυνάμωσέν +με, +ἵνα +δι’ +ἐμοῦ +τὸ +κήρυγμα +πληροφορηθῇ +καὶ +ἀκούσωσιν +πάντα +τὰ +ἔθνη, +καὶ +ἐρύσθην +ἐκ +στόματος +λέοντος. +ῥύσεταί +με +ὁ +Κύριος +ἀπὸ +παντὸς +ἔργου +πονηροῦ +καὶ +σώσει +εἰς +τὴν +βασιλείαν +αὐτοῦ +τὴν +ἐπουράνιον· +ᾧ +ἡ +δόξα +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων, +ἀμήν. +Ἄσπασαι +Πρίσκαν +καὶ +Ἀκύλαν +καὶ +τὸν +Ὀνησιφόρου +οἶκον. +Ἔραστος +ἔμεινεν +ἐν +Κορίνθῳ, +δὲ +Τρόφιμον +ἀπέλιπον +ἐν +Μιλήτῳ +ἀσθενοῦντα. +Σπούδασον +πρὸ +χειμῶνος +ἐλθεῖν. +Ἀσπάζεταί +σε +Εὔβουλος +καὶ +Πούδης +καὶ +Λίνος +καὶ +Κλαυδία +καὶ +οἱ +ἀδελφοὶ +πάντες. +Ὁ +Κύριος +μετὰ +τοῦ +πνεύματός +σου. +ἡ +χάρις +μεθ’ +ὑμῶν. +Παῦλος +δοῦλος +Θεοῦ, +δὲ +ἀπόστολος +Ἰησοῦ +Χριστοῦ +κατὰ +πίστιν +ἐκλεκτῶν +Θεοῦ +καὶ +ἐπίγνωσιν +ἀληθείας +τῆς +κατ’ +εὐσέβειαν +ἐπ’ +ἐλπίδι +ζωῆς +αἰωνίου, +ἣν +ἐπηγγείλατο +ὁ +ἀψευδὴς +Θεὸς +πρὸ +χρόνων +αἰωνίων, +δὲ +ἐφανέρωσεν +καιροῖς +ἰδίοις +τὸν +λόγον +αὐτοῦ +ἐν +κηρύγματι +ὃ +ἐπιστεύθην +ἐγὼ +κατ’ +ἐπιταγὴν +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ, +Τίτῳ +γνησίῳ +τέκνῳ +κατὰ +κοινὴν +πίστιν· +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +καὶ +Χριστοῦ +Ἰησοῦ +τοῦ +Σωτῆρος +ἡμῶν. +Τούτου +χάριν +ἀπέλιπόν +σε +ἐν +Κρήτῃ +ἵνα +τὰ +λείποντα +ἐπιδιορθώσῃ, +καὶ +καταστήσῃς +κατὰ +πόλιν +πρεσβυτέρους, +ὡς +ἐγώ +σοι +διεταξάμην, +εἴ +τίς +ἐστιν +ἀνέγκλητος, +μιᾶς +γυναικὸς +ἀνήρ, +ἔχων +τέκνα +πιστά, +μὴ +ἐν +κατηγορίᾳ +ἀσωτίας +ἢ +ἀνυπότακτα. +γὰρ +δεῖ +τὸν +ἐπίσκοπον +εἶναι +ὡς +Θεοῦ +οἰκονόμον, +ἀνέγκλητον +μὴ +αὐθάδη, +μὴ +ὀργίλον, +μὴ +πάροινον, +μὴ +πλήκτην, +μὴ +αἰσχροκερδῆ, +ἀλλὰ +φιλόξενον, +φιλάγαθον, +σώφρονα, +δίκαιον, +ὅσιον, +ἐγκρατῆ, +ἀντεχόμενον +τοῦ +κατὰ +τὴν +διδαχὴν +πιστοῦ +λόγου, +ἵνα +ᾖ +δυνατὸς +καὶ +παρακαλεῖν +ἐν +τῇ +διδασκαλίᾳ +τῇ +ὑγιαινούσῃ +καὶ +τοὺς +ἀντιλέγοντας +ἐλέγχειν. +γὰρ +Εἰσὶν +πολλοὶ +ἀνυπότακτοι, +ματαιολόγοι +καὶ +φρεναπάται, +μάλιστα +οἱ +ἐκ +τῆς +περιτομῆς, +οὓς +ἐπιστομίζειν, +δεῖ +οἵτινες +ὅλους +οἴκους +ἀνατρέπουσιν +διδάσκοντες +ἃ +μὴ +δεῖ +αἰσχροῦ +κέρδους +χάριν. +εἶπέν +τις +ἐξ +αὐτῶν +ἴδιος +αὐτῶν +προφήτης +Κρῆτες +ἀεὶ +ψεῦσται, +κακὰ +θηρία, +γαστέρες +ἀργαί. +ἡ +μαρτυρία +αὕτη +ἐστὶν +ἀληθής. +δι’ +ἣν +αἰτίαν +ἔλεγχε +αὐτοὺς +ἀποτόμως, +ἵνα +ὑγιαίνωσιν +ἐν +τῇ +πίστει, +μὴ +προσέχοντες +Ἰουδαϊκοῖς +μύθοις +καὶ +ἐντολαῖς +ἀνθρώπων +ἀποστρεφομένων +τὴν +ἀλήθειαν. +πάντα +καθαρὰ +τοῖς +καθαροῖς· +δὲ +τοῖς +μεμιαμμένοις +καὶ +ἀπίστοις +οὐδὲν +καθαρόν, +ἀλλὰ +μεμίανται +αὐτῶν +καὶ +ὁ +νοῦς +καὶ +ἡ +συνείδησις. +Θεὸν +εἰδέναι, +ὁμολογοῦσιν +δὲ +τοῖς +ἔργοις +ἀρνοῦνται, +ὄντες +βδελυκτοὶ +καὶ +ἀπειθεῖς +καὶ +πρὸς +πᾶν +ἔργον +ἀγαθὸν +ἀδόκιμοι. +δὲ +Σὺ +λάλει +ἃ +πρέπει +τῇ +ὑγιαινούσῃ +διδασκαλίᾳ. +πρεσβύτας +εἶναι, +νηφαλίους +σεμνούς, +σώφρονας, +ὑγιαίνοντας +τῇ +πίστει, +τῇ +ἀγάπῃ, +τῇ +ὑπομονῇ· +πρεσβύτιδας +ὡσαύτως +ἐν +καταστήματι +ἱεροπρεπεῖς, +μὴ +διαβόλους +μηδὲ +οἴνῳ +πολλῷ +δεδουλωμένας, +καλοδιδασκάλους, +ἵνα +σωφρονίζωσιν +τὰς +νέας +εἶναι, +φιλάνδρους +φιλοτέκνους, +σώφρονας, +ἁγνάς, +οἰκουργούς, +ἀγαθάς, +ὑποτασσομένας +τοῖς +ἰδίοις +ἀνδράσιν, +ἵνα +μὴ +ὁ +λόγος +τοῦ +Θεοῦ +βλασφημῆται. +Τοὺς +νεωτέρους +ὡσαύτως +παρακάλει +σωφρονεῖν +περὶ +πάντα, +σεαυτὸν +παρεχόμενος +τύπον +καλῶν +ἔργων, +ἐν +τῇ +διδασκαλίᾳ +ἀφθορίαν, +σεμνότητα, +λόγον +ὑγιῆ +ἀκατάγνωστον, +ἵνα +ὁ +ἐξ +ἐναντίας +ἐντραπῇ +ἔχων +λέγειν +περὶ +ἡμῶν +μηδὲν +φαῦλον. +δούλους +ἰδίοις +δεσπόταις +ὑποτάσσεσθαι +ἐν +πᾶσιν, +εὐαρέστους +εἶναι, +μὴ +ἀντιλέγοντας, +μὴ +νοσφιζομένους, +ἀλλὰ +πᾶσαν +πίστιν +ἀγαθήν, +ἐνδεικνυμένους +ἵνα +τὴν +διδασκαλίαν +τὴν +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ +κοσμῶσιν +ἐν +πᾶσιν. +γὰρ +Ἐπεφάνη +ἡ +χάρις +τοῦ +Θεοῦ +σωτήριος +πᾶσιν +ἀνθρώποις, +παιδεύουσα +ἡμᾶς, +ἵνα +ἀρνησάμενοι +τὴν +ἀσέβειαν +καὶ +τὰς +κοσμικὰς +ἐπιθυμίας +σωφρόνως +καὶ +δικαίως +καὶ +εὐσεβῶς +ζήσωμεν +ἐν +τῷ +νῦν +αἰῶνι, +προσδεχόμενοι +τὴν +μακαρίαν +ἐλπίδα +καὶ +ἐπιφάνειαν +τῆς +δόξης +τοῦ +μεγάλου +Θεοῦ +καὶ +Σωτῆρος +ἡμῶν +Χριστοῦ +Ἰησοῦ, +ὃς +ἔδωκεν +ἑαυτὸν +ὑπὲρ +ἡμῶν +ἵνα +λυτρώσηται +ἡμᾶς +ἀπὸ +πάσης +ἀνομίας +καὶ +καθαρίσῃ +ἑαυτῷ +λαὸν +περιούσιον, +ζηλωτὴν +καλῶν +ἔργων. +Ταῦτα +λάλει +καὶ +παρακάλει +καὶ +ἔλεγχε +μετὰ +πάσης +ἐπιταγῆς· +μηδείς +σου +περιφρονείτω. +Ὑπομίμνῃσκε +αὐτοὺς +ἀρχαῖς +ἐξουσίαις +ὑποτάσσεσθαι, +πειθαρχεῖν, +πρὸς +πᾶν +ἔργον +ἀγαθὸν +ἑτοίμους +εἶναι, +μηδένα +βλασφημεῖν, +ἀμάχους +εἶναι, +ἐπιεικεῖς, +πᾶσαν +πραΰτητα +ἐνδεικνυμένους +πρὸς +πάντας +ἀνθρώπους. +γάρ +Ἦμεν +ποτε +καὶ +ἡμεῖς +ἀνόητοι, +ἀπειθεῖς, +πλανώμενοι, +δουλεύοντες +ἐπιθυμίαις +καὶ +ἡδοναῖς +ποικίλαις, +ἐν +κακίᾳ +καὶ +φθόνῳ +διάγοντες, +στυγητοί, +μισοῦντες +ἀλλήλους. +δὲ +ὅτε +ἡ +χρηστότης +καὶ +ἡ +φιλανθρωπία +τοῦ +Σωτῆρος +ἡμῶν +Θεοῦ, +ἐπεφάνη +οὐκ +ἐξ +ἔργων +τῶν +ἐν +δικαιοσύνῃ +ἃ +ἐποιήσαμεν +ἡμεῖς +ἀλλὰ +κατὰ +τὸ +αὐτοῦ +ἔλεος +ἔσωσεν +ἡμᾶς +διὰ +λουτροῦ +παλινγενεσίας +καὶ +ἀνακαινώσεως +Πνεύματος +Ἁγίου, +οὗ +ἐξέχεεν +ἐφ’ +ἡμᾶς +πλουσίως +διὰ +Ἰησοῦ +Χριστοῦ +τοῦ +Σωτῆρος +ἡμῶν, +ἵνα +δικαιωθέντες +τῇ +ἐκείνου +χάριτι +κληρονόμοι +γενηθῶμεν +κατ’ +ἐλπίδα +ζωῆς +αἰωνίου. +Πιστὸς +ὁ +λόγος, +καὶ +περὶ +τούτων +βούλομαί +σε +διαβεβαιοῦσθαι, +ἵνα +φροντίζωσιν +καλῶν +ἔργων +προΐστασθαι +οἱ +πεπιστευκότες +Θεῷ. +ταῦτά +ἐστιν +καλὰ +καὶ +ὠφέλιμα +τοῖς +ἀνθρώποις· +δὲ +μωρὰς +ζητήσεις +καὶ +γενεαλογίας +καὶ +ἔριν +καὶ +μάχας +νομικὰς +περιΐστασο· +γὰρ +εἰσὶν +ἀνωφελεῖς +καὶ +μάταιοι. +αἱρετικὸν +ἄνθρωπον +μετὰ +μίαν +καὶ +δευτέραν +νουθεσίαν +παραιτοῦ, +εἰδὼς +ὅτι +ὁ +τοιοῦτος +ἐξέστραπται +καὶ +ἁμαρτάνει, +ὢν +αὐτοκατάκριτος. +Ὅταν +πέμψω +πρὸς +σὲ +Ἀρτεμᾶν +ἢ +Τυχικόν, +σπούδασον +ἐλθεῖν +πρός +με +εἰς +Νικόπολιν· +γὰρ +ἐκεῖ +παραχειμάσαι. +κέκρικα +Ζηνᾶν +τὸν +νομικὸν +καὶ +Ἀπολλῶν +σπουδαίως +πρόπεμψον, +ἵνα +μηδὲν +αὐτοῖς +λείπῃ. +δὲ +μανθανέτωσαν +καὶ +οἱ +ἡμέτεροι +καλῶν +ἔργων +προΐστασθαι +εἰς +τὰς +ἀναγκαίας +χρείας, +ἵνα +μὴ +ὦσιν +ἄκαρποι. +Ἀσπάζονταί +σε +οἱ +μετ’ +ἐμοῦ +πάντες. +ἄσπασαι +τοὺς +φιλοῦντας +ἡμᾶς +ἐν +πίστει. +Ἠ +χάρις +μετὰ +πάντων +ὑμῶν. +Παῦλος +δέσμιος +Χριστοῦ +Ἰησοῦ +καὶ +Τιμόθεος +ὁ +ἀδελφὸς +Φιλήμονι +τῷ +ἀγαπητῷ +καὶ +συνεργῷ +ἡμῶν +καὶ +Ἀπφίᾳ +τῇ +ἀδελφῇ +καὶ +Ἀρχίππῳ +τῷ +συστρατιώτῃ +ἡμῶν +καὶ +τῇ +κατ’ +οἶκόν +σου +ἐκκλησίᾳ· +ὑμῖν +χάρις +καὶ +εἰρήνη +ἀπὸ +Θεοῦ +Πατρὸς +ἡμῶν +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ. +Εὐχαριστῶ +τῷ +Θεῷ +μου +πάντοτε +μνείαν +σου +ποιούμενος +ἐπὶ +τῶν +προσευχῶν +μου, +ἀκούων +σου +τὴν +ἀγάπην +καὶ +τὴν +πίστιν +ἣν +ἔχεις +πρὸς +τὸν +Κύριον +Ἰησοῦν +καὶ +εἰς +πάντας +τοὺς +ἁγίους, +ὅπως +ἡ +κοινωνία +τῆς +πίστεώς +σου +ἐνεργὴς +γένηται +ἐν +ἐπιγνώσει +παντὸς +ἀγαθοῦ +τοῦ +ἐν +ἡμῖν +εἰς +Χριστόν· +γὰρ +χαρὰν +πολλὴν +καὶ +παράκλησιν +ἔσχον +ἐπὶ +τῇ +ἀγάπῃ +σου, +ὅτι +τὰ +σπλάγχνα +τῶν +ἁγίων +ἀναπέπαυται +διὰ +σοῦ, +ἀδελφέ. +Διό, +πολλὴν +ἐν +Χριστῷ +παρρησίαν +ἔχων +ἐπιτάσσειν +σοι +τὸ +ἀνῆκον, +διὰ +τὴν +ἀγάπην +μᾶλλον +παρακαλῶ, +τοιοῦτος +ὢν +ὡς +Παῦλος +πρεσβύτης +δὲ +νυνὶ +καὶ +δέσμιος +Χριστοῦ +Ἰησοῦ, +παρακαλῶ +σε +περὶ +τοῦ +ἐμοῦ +τέκνου, +ἐγέννησα +ἐν +τοῖς +δεσμοῖς, +ὃν +Ὀνήσιμον, +τόν +ποτέ +σοι +ἄχρηστον +δὲ +νυνὶ +καὶ +σοὶ +καὶ +ἐμοὶ +εὔχρηστον, +ἀνέπεμψά +σοι +ὃν +αὐτόν, +τοῦτ’ +ἔστιν +τὰ +ἐμὰ +σπλάγχνα· +ἐγὼ +ἐβουλόμην +ὃν +πρὸς +ἐμαυτὸν +κατέχειν, +ἵνα +ὑπὲρ +σοῦ +μοι +διακονῇ +ἐν +τοῖς +δεσμοῖς +τοῦ +εὐαγγελίου, +δὲ +χωρὶς +τῆς +σῆς +γνώμης +οὐδὲν +ποιῆσαι, +ἠθέλησα +ἵνα +μὴ +ὡς +κατὰ +ἀνάγκην +τὸ +ἀγαθόν +σου +ᾖ +ἀλλὰ +κατὰ +ἑκούσιον. +γὰρ +τάχα +διὰ +τοῦτο +ἐχωρίσθη +πρὸς +ὥραν, +ἵνα +αἰώνιον +αὐτὸν +ἀπέχῃς, +οὐκέτι +ὡς +δοῦλον +ἀλλὰ +ὑπὲρ +δοῦλον, +ἀδελφὸν +ἀγαπητόν, +μάλιστα +ἐμοί, +δὲ +πόσῳ +μᾶλλον +σοὶ +καὶ +ἐν +σαρκὶ +καὶ +ἐν +Κυρίῳ. +οὖν +εἰ +με +ἔχεις +κοινωνόν, +προσλαβοῦ +αὐτὸν +ὡς +ἐμέ. +δέ +εἰ +τι +σε +ἠδίκησέν +ἢ +ὀφείλει, +τοῦτο +ἐμοὶ +ἐλλόγα· +ἐγὼ +Παῦλος +ἔγραψα +τῇ +ἐμῇ +χειρί, +ἐγὼ +ἀποτίσω· +ἵνα +μὴ +λέγω +σοι +ὅτι +καὶ +σεαυτόν +μοι +προσοφείλεις. +ναί, +ἀδελφέ, +ἐγώ +σου +ὀναίμην +ἐν +Κυρίῳ· +ἀνάπαυσόν +μου +τὰ +σπλάγχνα +ἐν +Χριστῷ. +Πεποιθὼς +τῇ +ὑπακοῇ +σου +ἔγραψά +σοι, +εἰδὼς +ὅτι +καὶ +ὑπὲρ +ἃ +λέγω +ποιήσεις. +δὲ +ἅμα +καὶ +ἑτοίμαζέ +μοι +ξενίαν· +γὰρ +ἐλπίζω +ὅτι +διὰ +τῶν +προσευχῶν +ὑμῶν +χαρισθήσομαι +ὑμῖν. +Ἀσπάζεταί +σε +Ἐπαφρᾶς +ὁ +συναιχμάλωτός +μου +ἐν +Χριστῷ +Ἰησοῦ, +Μᾶρκος, +Ἀρίσταρχος, +Δημᾶς, +Λουκᾶς, +οἱ +συνεργοί +μου. +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +Χριστοῦ +μετὰ +τοῦ +πνεύματος +ὑμῶν. +Πολυμερῶς +καὶ +πολυτρόπως +πάλαι +λαλήσας +τοῖς +πατράσιν +ἐν +τοῖς +προφήταις +ὁ +Θεὸς +ἐπ’ +ἐσχάτου +τῶν +ἡμερῶν +τούτων +ἐλάλησεν +ἡμῖν +ἐν +Υἱῷ, +ὃν +ἔθηκεν +κληρονόμον +πάντων, +δι’ +οὗ +καὶ +ἐποίησεν +τοὺς +αἰῶνας· +ὃς +ὢν +ἀπαύγασμα +τῆς +δόξης +καὶ +χαρακτὴρ +τῆς +ὑποστάσεως +αὐτοῦ, +τε +φέρων +τὰ +πάντα +τῷ +ῥήματι +τῆς +δυνάμεως +αὐτοῦ, +καθαρισμὸν +τῶν +ἁμαρτιῶν +ποιησάμενος +ἐκάθισεν +ἐν +δεξιᾷ +τῆς +Μεγαλωσύνης +ἐν +ὑψηλοῖς, +τοσούτῳ +κρείττων +γενόμενος +τῶν +ἀγγέλων +ὅσῳ +διαφορώτερον +ὄνομα. +παρ’ +αὐτοὺς +κεκληρονόμηκεν +γὰρ +Τίνι +τῶν +ἀγγέλων +εἶπέν +ποτε +Υἱός +μου +εἶ +σύ, +ἐγὼ +σήμερον +γεγέννηκά +σε; +καὶ +πάλιν +Ἐγὼ +ἔσομαι +αὐτῷ +εἰς +Πατέρα, +καὶ +αὐτὸς +ἔσται +μοι +εἰς +Υἱόν; +δὲ +ὅταν +πάλιν +εἰσαγάγῃ +τὸν +πρωτότοκον +εἰς +τὴν +οἰκουμένην, +λέγει +Καὶ +προσκυνησάτωσαν +αὐτῷ +πάντες +ἄγγελοι +Θεοῦ. +καὶ +μὲν +πρὸς +τοὺς +ἀγγέλους +λέγει +Ὁ +ποιῶν +τοὺς +ἀγγέλους +αὐτοῦ +πνεύματα, +καὶ +τοὺς +λειτουργοὺς +αὐτοῦ +πυρὸς +φλόγα· +δὲ +πρὸς +τὸν +Υἱόν +ὁ +Θεὸς +Ὁ +θρόνος +σου +εἰς +τὸν +αἰῶνα +τοῦ +αἰῶνος, +καὶ +ἡ +ῥάβδος +τῆς +εὐθύτητος +ῥάβδος +τῆς +βασιλείας +αὐτοῦ. +ἠγάπησας +δικαιοσύνην +καὶ +ἐμίσησας +ἀνομίαν· +διὰ +τοῦτο +ἔχρισέν +σε, +ὁ +Θεός, +ὁ +Θεός +σου +ἔλαιον +ἀγαλλιάσεως +παρὰ +τοὺς +μετόχους +σου. +καί +Κύριε, +Σὺ +κατ’ +ἀρχάς, +τὴν +γῆν +ἐθεμελίωσας, +καὶ +ἔργα +τῶν +χειρῶν +σού +εἰσιν +οἱ +οὐρανοί· +αὐτοὶ +ἀπολοῦνται, +δὲ +σὺ +διαμένεις· +καὶ +πάντες +παλαιωθήσονται, +ὡς +ἱμάτιον +καὶ +ὡσεὶ +περιβόλαιον +ἑλίξεις +αὐτούς, +ὡς +ἱμάτιον +καὶ +ἀλλαγήσονται· +δὲ +σὺ +ὁ +αὐτὸς +εἶ +καὶ +τὰ +ἔτη +σου +οὐκ +ἐκλείψουσιν. +δὲ +πρὸς +τίνα +τῶν +ἀγγέλων +εἴρηκέν +ποτε +Κάθου +ἐκ +δεξιῶν +μου +ἕως +ἂν +θῶ +τοὺς +ἐχθρούς +σου +ὑποπόδιον +τῶν +ποδῶν +σου; +οὐχὶ +πάντες +εἰσὶν +λειτουργικὰ +πνεύματα +εἰς +διακονίαν +ἀποστελλόμενα +διὰ +τοὺς +μέλλοντας +κληρονομεῖν +σωτηρίαν; +Διὰ +τοῦτο +δεῖ +περισσοτέρως +προσέχειν +ἡμᾶς +τοῖς +ἀκουσθεῖσιν, +μή +ποτε +παραρυῶμεν. +γὰρ +εἰ +ὁ +δι’ +ἀγγέλων +λαληθεὶς +λόγος +ἐγένετο +βέβαιος, +καὶ +πᾶσα +παράβασις +καὶ +παρακοὴ +ἔλαβεν +ἔνδικον +μισθαποδοσίαν, +πῶς +ἡμεῖς +ἐκφευξόμεθα +ἀμελήσαντες +τηλικαύτης +σωτηρίας; +ἥτις +ἀρχὴν +λαβοῦσα +λαλεῖσθαι +διὰ +τοῦ +Κυρίου, +ὑπὸ +τῶν +ἀκουσάντων +εἰς +ἡμᾶς +ἐβεβαιώθη, +συνεπιμαρτυροῦντος +τοῦ +Θεοῦ +τε +σημείοις +καὶ +τέρασιν +καὶ +ποικίλαις +δυνάμεσιν +καὶ +Πνεύματος +Ἁγίου +μερισμοῖς +κατὰ +τὴν +αὐτοῦ +θέλησιν. +γὰρ +Οὐ +ἀγγέλοις +ὑπέταξεν +τὴν +οἰκουμένην +τὴν +μέλλουσαν, +περὶ +ἧς +λαλοῦμεν. +δέ +διεμαρτύρατο +πού +τις +λέγων +Τί +ἐστιν +ἄνθρωπος +ὅτι +μιμνῄσκῃ +αὐτοῦ; +ἢ +υἱὸς +ἀνθρώπου +ὅτι +ἐπισκέπτῃ +αὐτόν; +ἠλάττωσας +αὐτὸν +βραχύ +τι +παρ’ +ἀγγέλους, +δόξῃ +καὶ +τιμῇ +ἐστεφάνωσας +αὐτόν, +πάντα +ὑπέταξας +ὑποκάτω +τῶν +ποδῶν +αὐτοῦ. +γὰρ +ἐν +τῷ +ὑποτάξαι +αὐτῷ +τὰ +πάντα +οὐδὲν +ἀφῆκεν +αὐτῷ +ἀνυπότακτον. +δὲ +νῦν +οὔπω +ὁρῶμεν +αὐτῷ +τὰ +πάντα +ὑποτεταγμένα· +δὲ +βλέπομεν +τὸν +βραχύ +τι +παρ’ +ἀγγέλους +ἠλαττωμένον +Ἰησοῦν +διὰ +τὸ +πάθημα +τοῦ +θανάτου +δόξῃ +καὶ +τιμῇ +ἐστεφανωμένον, +ὅπως +χάριτι +Θεοῦ +ὑπὲρ +παντὸς +γεύσηται +θανάτου. +γὰρ +Ἔπρεπεν +αὐτῷ, +δι’ +ὃν +τὰ +πάντα +καὶ +δι’ +οὗ +τὰ +πάντα, +πολλοὺς +υἱοὺς +εἰς +δόξαν +ἀγαγόντα +τὸν +ἀρχηγὸν +τῆς +σωτηρίας +αὐτῶν +διὰ +παθημάτων +τελειῶσαι. +γὰρ +τε +ὅ +ἁγιάζων +καὶ +οἱ +ἁγιαζόμενοι +ἐξ +ἑνὸς +πάντες· +δι’ +ἣν +αἰτίαν +οὐκ +ἐπαισχύνεται +ἀδελφοὺς +αὐτοὺς +καλεῖν, +λέγων +Ἀπαγγελῶ +τὸ +ὄνομά +σου +τοῖς +ἀδελφοῖς +μου, +ἐν +μέσῳ +ἐκκλησίας +ὑμνήσω +σε· +καὶ +πάλιν +Ἐγὼ +ἔσομαι +πεποιθὼς +ἐπ’ +αὐτῷ· +καὶ +πάλιν +Ἰδοὺ +ἐγὼ +καὶ +τὰ +παιδία +ἅ +μοι +ἔδωκεν +ὁ +Θεός. +οὖν +ἐπεὶ +τὰ +παιδία +κεκοινώνηκεν +αἵματος +καὶ +σαρκός, +καὶ +αὐτὸς +παραπλησίως +μετέσχεν +τῶν +αὐτῶν, +ἵνα +διὰ +τοῦ +θανάτου +καταργήσῃ +τὸν +τὸ +κράτος +τοῦ +θανάτου, +ἔχοντα +τοῦτ’ +ἔστιν +τὸν +διάβολον, +καὶ +ἀπαλλάξῃ +τούτους, +ὅσοι +φόβῳ +θανάτου +διὰ +παντὸς +τοῦ +ζῆν +ἔνοχοι +δουλείας. +ἦσαν +γὰρ +οὐ +δήπου +ἀγγέλων +ἐπιλαμβάνεται, +ἀλλὰ +σπέρματος +Ἀβραὰμ +ἐπιλαμβάνεται. +ὅθεν +ὤφειλεν +κατὰ +πάντα +τοῖς +ἀδελφοῖς +ὁμοιωθῆναι, +ἵνα +γένηται +ἐλεήμων +καὶ +πιστὸς +ἀρχιερεὺς +τὰ +πρὸς +τὸν +Θεόν, +εἰς +τὸ +ἱλάσκεσθαι +τὰς +ἁμαρτίας +τοῦ +λαοῦ. +γὰρ +ἐν +ᾧ +πέπονθεν +αὐτὸς +πειρασθείς, +δύναται +τοῖς +πειραζομένοις +βοηθῆσαι. +Ὅθεν, +ἀδελφοὶ +ἅγιοι, +κλήσεως +ἐπουρανίου +μέτοχοι, +κατανοήσατε +τὸν +Ἀπόστολον +καὶ +Ἀρχιερέα +τῆς +ὁμολογίας +ἡμῶν +Ἰησοῦν, +πιστὸν +ὄντα +τῷ +ποιήσαντι +αὐτὸν, +ὡς +καὶ +Μωϋσῆς +ἐν +ὅλῳ +τῷ +οἴκῳ +αὐτοῦ. +γὰρ +πλείονος +δόξης +οὗτος +παρὰ +Μωϋσῆν +ἠξίωται +καθ’ +ὅσον +πλείονα +τιμὴν +ἔχει +τοῦ +οἴκου +ὁ +κατασκευάσας +αὐτόν. +γὰρ +πᾶς +οἶκος +κατασκευάζεται +ὑπό +τινος, +δὲ +ὁ +πάντα +κατασκευάσας +Θεός. +καὶ +μὲν +Μωϋσῆς +πιστὸς +ἐν +ὅλῳ +τῷ +οἴκῳ +αὐτοῦ +ὡς +θεράπων +εἰς +μαρτύριον +τῶν +λαληθησομένων, +δὲ +Χριστὸς +ὡς +υἱὸς +ἐπὶ +τὸν +οἶκον +αὐτοῦ· +οὗ +οἶκός +ἐσμεν +ἡμεῖς, +ἐὰν +τὴν +παρρησίαν +καὶ +τὸ +καύχημα +τῆς +ἐλπίδος +μέχρι +τέλους +βεβαίαν +κατάσχωμεν. +Διό, +καθὼς +λέγει +τὸ +Πνεῦμα +τὸ +Ἅγιον +ἐὰν +Σήμερον +τῆς +φωνῆς +αὐτοῦ +ἀκούσητε, +μὴ +σκληρύνητε +τὰς +καρδίας +ὑμῶν +ὡς +ἐν +τῷ +παραπικρασμῷ +κατὰ +τὴν +ἡμέραν +τοῦ +πειρασμοῦ +ἐν +τῇ +ἐρήμῳ, +οὗ +ἐπείρασαν +οἱ +πατέρες +ὑμῶν +ἐν +δοκιμασίᾳ +καὶ +εἶδον +τὰ +ἔργα +μου +τεσσεράκοντα +ἔτη. +διὸ +προσώχθισα +τῇ +γενεᾷ +ταύτῃ +καὶ +εἶπον +Ἀεὶ +πλανῶνται +τῇ +καρδίᾳ· +δὲ +αὐτοὶ +οὐκ +ἔγνωσαν +τὰς +ὁδούς +μου, +ὡς +ὤμοσα +ἐν +τῇ +ὀργῇ +μου +Εἰ +εἰσελεύσονται +εἰς +τὴν +κατάπαυσίν +μου. +βλέπετε, +ἀδελφοί, +μή +ποτε +ἔσται +ἔν +τινι +ὑμῶν +καρδία +πονηρὰ +ἀπιστίας +ἐν +τῷ +ἀποστῆναι +ἀπὸ +Θεοῦ +ζῶντος, +ἀλλὰ +παρακαλεῖτε +ἑαυτοὺς +καθ’ +ἑκάστην +ἡμέραν, +ἄχρις +οὗ +τὸ +Σήμερον +καλεῖται, +ἵνα +μὴ +σκληρυνθῇ +τις +ἐξ +ὑμῶν +ἀπάτῃ +τῆς +ἁμαρτίας· +γὰρ +μέτοχοι +τοῦ +Χριστοῦ +γεγόναμεν, +ἐάνπερ +τὴν +ἀρχὴν +τῆς +ὑποστάσεως +μέχρι +τέλους +βεβαίαν +κατάσχωμεν. +ἐν +τῷ +λέγεσθαι +ἐὰν +Σήμερον +τῆς +φωνῆς +αὐτοῦ +ἀκούσητε, +Μὴ +σκληρύνητε +τὰς +καρδίας +ὑμῶν +ὡς +ἐν +τῷ +παραπικρασμῷ. +γὰρ +τίνες +ἀκούσαντες +παρεπίκραναν; +ἀλλ’ +οὐ +πάντες +οἱ +ἐξελθόντες +ἐξ +Αἰγύπτου +διὰ +Μωϋσέως; +δὲ +τίσιν +προσώχθισεν +τεσσεράκοντα +ἔτη; +οὐχὶ +τοῖς +ἁμαρτήσασιν, +ὧν +τὰ +κῶλα +ἔπεσεν +ἐν +τῇ +ἐρήμῳ; +δὲ +τίσιν +ὤμοσεν +μὴ +εἰσελεύσεσθαι +εἰς +τὴν +κατάπαυσιν +αὐτοῦ +εἰ +μὴ +τοῖς +ἀπειθήσασιν; +καὶ +βλέπομεν +ὅτι +οὐκ +ἠδυνήθησαν +εἰσελθεῖν +δι’ +ἀπιστίαν. +οὖν +φοβηθῶμεν +μή +ποτε +καταλειπομένης +ἐπαγγελίας +εἰσελθεῖν +εἰς +τὴν +κατάπαυσιν +αὐτοῦ +δοκῇ +τις +ἐξ +ὑμῶν +ὑστερηκέναι. +γάρ +καὶ +ἐσμεν +εὐηγγελισμένοι +καθάπερ +κἀκεῖνοι· +ἀλλ’ +οὐκ +ὠφέλησεν +ὁ +λόγος +τῆς +ἀκοῆς +ἐκείνους +μὴ +συνκεκερασμένος +τῇ +πίστει +τοῖς +ἀκούσασιν. +γὰρ +Εἰσερχόμεθα +εἰς +τὴν +κατάπαυσιν +οἱ +πιστεύσαντες, +καθὼς +εἴρηκεν +Ὡς +ὤμοσα +ἐν +τῇ +ὀργῇ +μου +Εἰ +εἰσελεύσονται +εἰς +τὴν +κατάπαυσίν +μου, +καίτοι +τῶν +ἔργων +ἀπὸ +καταβολῆς +κόσμου +γενηθέντων. +γάρ +εἴρηκεν +που +περὶ +τῆς +ἑβδόμης +οὕτως +Καὶ +κατέπαυσεν +ὁ +Θεὸς +ἐν +τῇ +ἡμέρᾳ +τῇ +ἑβδόμῃ +ἀπὸ +πάντων +τῶν +ἔργων +αὐτοῦ· +καὶ +ἐν +τούτῳ +πάλιν +Εἰ +εἰσελεύσονται +εἰς +τὴν +κατάπαυσίν +μου. +οὖν +ἐπεὶ +ἀπολείπεται +τινὰς +εἰσελθεῖν +εἰς +αὐτήν, +καὶ +οἱ +πρότερον +εὐαγγελισθέντες +οὐκ +εἰσῆλθον +δι’ +ἀπείθειαν, +πάλιν +ὁρίζει +τινὰ +ἡμέραν, +Σήμερον, +ἐν +Δαυεὶδ +λέγων +μετὰ +τοσοῦτον +χρόνον, +καθὼς +προείρηται +ἐὰν +Σήμερον +τῆς +φωνῆς +αὐτοῦ +ἀκούσητε, +μὴ +σκληρύνητε +τὰς +καρδίας +ὑμῶν. +γὰρ +εἰ +αὐτοὺς +Ἰησοῦς +κατέπαυσεν, +ἂν +οὐκ +περὶ +ἄλλης +ἡμέρας. +ἐλάλει +μετὰ +ταῦτα +ἄρα +ἀπολείπεται +σαββατισμὸς +τῷ +λαῷ +τοῦ +Θεοῦ. +γὰρ +ὁ +εἰσελθὼν +εἰς +τὴν +κατάπαυσιν +αὐτοῦ +καὶ +αὐτὸς +κατέπαυσεν +ἀπὸ +τῶν +ἔργων +αὐτοῦ, +ὥσπερ +ἀπὸ +τῶν +ἰδίων +ὁ +Θεός. +οὖν +Σπουδάσωμεν +εἰσελθεῖν +εἰς +ἐκείνην +τὴν +κατάπαυσιν, +ἵνα +μὴ +ἐν +τῷ +αὐτῷ +ὑποδείγματι +τῆς +ἀπειθείας. +τις +πέσῃ +γὰρ +ὁ +λόγος +τοῦ +Θεοῦ +Ζῶν +καὶ +ἐνεργὴς +καὶ +τομώτερος +ὑπὲρ +πᾶσαν +μάχαιραν +δίστομον +καὶ +διϊκνούμενος +ἄχρι +μερισμοῦ +ψυχῆς +καὶ +πνεύματος, +τε +ἁρμῶν +καὶ +μυελῶν, +καὶ +κριτικὸς +ἐνθυμήσεων +καὶ +ἐννοιῶν +καρδίας· +καὶ +οὐκ +ἔστιν +κτίσις +ἀφανὴς +ἐνώπιον +αὐτοῦ, +δὲ +πάντα +γυμνὰ +καὶ +τετραχηλισμένα +τοῖς +ὀφθαλμοῖς +αὐτοῦ, +πρὸς +ὃν +ἡμῖν +ὁ +λόγος. +οὖν +Ἔχοντες +ἀρχιερέα +μέγαν +διεληλυθότα +τοὺς +οὐρανούς, +Ἰησοῦν +τὸν +Υἱὸν +τοῦ +Θεοῦ, +κρατῶμεν +τῆς +ὁμολογίας. +γὰρ +ἔχομεν +ἀρχιερέα +οὐ +μὴ +δυνάμενον +συνπαθῆσαι +ταῖς +ἀσθενείαις +ἡμῶν, +δὲ +πεπειρασμένον +κατὰ +πάντα +καθ’ +ὁμοιότητα +χωρὶς +ἁμαρτίας. +οὖν +προσερχώμεθα +μετὰ +παρρησίας +τῷ +θρόνῳ +τῆς +χάριτος, +ἵνα +λάβωμεν +ἔλεος +καὶ +χάριν +εὕρωμεν +εἰς +εὔκαιρον +βοήθειαν. +γὰρ +Πᾶς +ἀρχιερεὺς +ἐξ +ἀνθρώπων +λαμβανόμενος +ὑπὲρ +ἀνθρώπων +καθίσταται +τὰ +πρὸς +τὸν +Θεόν, +ἵνα +προσφέρῃ +τε +δῶρά +καὶ +θυσίας +ὑπὲρ +ἁμαρτιῶν, +δυνάμενος +μετριοπαθεῖν +τοῖς +ἀγνοοῦσιν +καὶ +πλανωμένοις, +ἐπεὶ +καὶ +αὐτὸς +περίκειται +ἀσθένειαν, +καὶ +δι’ +αὐτὴν +ὀφείλει, +καθὼς +περὶ +τοῦ +λαοῦ, +οὕτως +καὶ +περὶ +ἑαυτοῦ +προσφέρειν +περὶ +ἁμαρτιῶν. +καὶ +οὐχ +ἑαυτῷ +τις +λαμβάνει +τὴν +τιμήν, +ἀλλὰ +καλούμενος +ὑπὸ +τοῦ +Θεοῦ, +καθώσπερ +καὶ +Ἀαρών. +Οὕτως +καὶ +ὁ +Χριστὸς +οὐχ +ἑαυτὸν +ἐδόξασεν +γενηθῆναι +ἀρχιερέα, +ἀλλ’ +ὁ +λαλήσας +πρὸς +αὐτόν +Υἱός +μου +εἶ +σύ, +ἐγὼ +σήμερον +γεγέννηκά +σε· +καθὼς +καὶ +ἐν +ἑτέρῳ +λέγει +Σὺ +ἱερεὺς +εἰς +τὸν +αἰῶνα +κατὰ +τὴν +τάξιν +Μελχισέδεκ. +ὃς +ἐν +ταῖς +ἡμέραις +τῆς +σαρκὸς +αὐτοῦ +τε +δεήσεις +καὶ +ἱκετηρίας +πρὸς +τὸν +δυνάμενον +σῴζειν +αὐτὸν +ἐκ +θανάτου +μετὰ +κραυγῆς +ἰσχυρᾶς +καὶ +δακρύων +προσενέγκας +καὶ +εἰσακουσθεὶς +ἀπὸ +τῆς +εὐλαβείας, +καίπερ +ὢν +Υἱός, +ἔμαθεν +ἀφ’ +ὧν +ἔπαθεν +τὴν +ὑπακοήν, +καὶ +τελειωθεὶς +ἐγένετο +πᾶσιν +τοῖς +ὑπακούουσιν +αὐτῷ +αἴτιος +σωτηρίας +αἰωνίου, +προσαγορευθεὶς +ὑπὸ +τοῦ +Θεοῦ +ἀρχιερεὺς +κατὰ +τὴν +τάξιν +Μελχισέδεκ. +Περὶ +οὗ +πολὺς +ἡμῖν +ὁ +λόγος +καὶ +δυσερμήνευτος +λέγειν, +ἐπεὶ +νωθροὶ +γεγόνατε +ταῖς +ἀκοαῖς. +γὰρ +καὶ +ὀφείλοντες +εἶναι +διδάσκαλοι +διὰ +τὸν +χρόνον, +πάλιν +ἔχετε +χρείαν +τοῦ +διδάσκειν +ὑμᾶς +τινα +τὰ +στοιχεῖα +τῆς +ἀρχῆς +τῶν +λογίων +τοῦ +Θεοῦ, +καὶ +γεγόνατε +ἔχοντες +χρείαν +γάλακτος, +οὐ +στερεᾶς +τροφῆς. +γὰρ +πᾶς +ὁ +μετέχων +γάλακτος +ἄπειρος +λόγου +δικαιοσύνης, +γάρ +νήπιος +ἐστιν· +δέ +ἐστιν +ἡ +στερεὰ +τροφή, +τελείων +τῶν +διὰ +τὴν +ἕξιν +τὰ +αἰσθητήρια +γεγυμνασμένα +ἐχόντων +πρὸς +διάκρισιν +τε +καλοῦ +καὶ +κακοῦ. +Διὸ +ἀφέντες +τὸν +τῆς +ἀρχῆς +τοῦ +Χριστοῦ +λόγον +ἐπὶ +τὴν +τελειότητα +φερώμεθα, +μὴ +πάλιν +καταβαλλόμενοι +θεμέλιον +μετανοίας +ἀπὸ +νεκρῶν +ἔργων, +καὶ +πίστεως +ἐπὶ +Θεόν, +διδαχὴν, +βαπτισμῶν +τε +ἐπιθέσεώς +χειρῶν, +ἀναστάσεώς +νεκρῶν, +καὶ +κρίματος +αἰωνίου. +καὶ +τοῦτο +ποιήσομεν, +ἐάνπερ +ἐπιτρέπῃ +ὁ +Θεός. +γὰρ +Ἀδύνατον +τοὺς +ἅπαξ +φωτισθέντας +τε +γευσαμένους +τῆς +δωρεᾶς +τῆς +ἐπουρανίου +καὶ +μετόχους +Πνεύματος +Ἁγίου +γενηθέντας +καὶ +γευσαμένους +καλὸν +Θεοῦ +ῥῆμα +τε +δυνάμεις +μέλλοντος +αἰῶνος, +καὶ +παραπεσόντας, +πάλιν +ἀνακαινίζειν +εἰς +μετάνοιαν, +ἀνασταυροῦντας +ἑαυτοῖς +τὸν +Υἱὸν +τοῦ +Θεοῦ +καὶ +παραδειγματίζοντας. +γὰρ +γῆ +ἡ +πιοῦσα +τὸν +ἐπ’ +αὐτῆς +ἐρχόμενον +πολλάκις +ὑετόν +καὶ +τίκτουσα +βοτάνην +εὔθετον +ἐκείνοις +δι’ +οὓς +καὶ +γεωργεῖται, +μεταλαμβάνει +εὐλογίας +ἀπὸ +τοῦ +Θεοῦ· +δὲ +ἐκφέρουσα +ἀκάνθας +καὶ +τριβόλους +ἀδόκιμος +καὶ +κατάρας +ἐγγύς, +ἧς +τὸ +τέλος +εἰς +καῦσιν. +δὲ +ἀγαπητοί, +Πεπείσμεθα +περὶ +ὑμῶν, +τὰ +κρείσσονα +καὶ +ἐχόμενα +σωτηρίας, +εἰ +καὶ +οὕτως +λαλοῦμεν. +γὰρ +οὐ +ἄδικος +ὁ +Θεὸς +ἐπιλαθέσθαι +τοῦ +ἔργου +ὑμῶν +καὶ +τῆς +ἀγάπης +ἧς +ἐνεδείξασθε +εἰς +τὸ +ὄνομα +αὐτοῦ, +διακονήσαντες +καὶ +διακονοῦντες. +τοῖς +ἁγίοις +δὲ +ἐπιθυμοῦμεν +ἕκαστον +ὑμῶν +τὴν +αὐτὴν +σπουδὴν +ἐνδείκνυσθαι +πρὸς +τὴν +πληροφορίαν +τῆς +ἐλπίδος +ἄχρι +τέλους, +ἵνα +μὴ +νωθροὶ +γένησθε, +δὲ +μιμηταὶ +τῶν +διὰ +πίστεως +καὶ +μακροθυμίας +κληρονομούντων +τὰς +ἐπαγγελίας. +γὰρ +Τῷ +Ἀβραὰμ +ἐπαγγειλάμενος +ὁ +Θεός, +ἐπεὶ +κατ’ +οὐδενὸς +μείζονος +ὀμόσαι, +εἶχεν +ὤμοσεν +καθ’ +ἑαυτοῦ, +λέγων +Εἰ +μὴν +εὐλογῶν +εὐλογήσω +σε +καὶ +πληθύνων +πληθυνῶ +σε· +καὶ +οὕτως +μακροθυμήσας +ἐπέτυχεν +τῆς +ἐπαγγελίας. +γὰρ +ἄνθρωποι +κατὰ +τοῦ +μείζονος +ὀμνύουσιν, +καὶ +αὐτοῖς +πάσης +ἀντιλογίας +πέρας +εἰς +βεβαίωσιν +ὁ +ὅρκος· +ἐν +ᾧ +περισσότερον +βουλόμενος +ἐπιδεῖξαι +τοῖς +κληρονόμοις +τῆς +ἐπαγγελίας +τὸ +ἀμετάθετον +τῆς +βουλῆς +αὐτοῦ +ὁ +Θεὸς +ἐμεσίτευσεν +ὅρκῳ, +ἵνα +διὰ +δύο +πραγμάτων +ἀμεταθέτων, +ἐν +οἷς +ἀδύνατον +ψεύσασθαι +Θεόν, +ἰσχυρὰν +παράκλησιν +ἔχωμεν +οἱ +καταφυγόντες +κρατῆσαι +τῆς +προκειμένης +ἐλπίδος· +ἣν +ἔχομεν +ὡς +ἄγκυραν +τῆς +ψυχῆς +τε +ἀσφαλῆ +καὶ +βεβαίαν +καὶ +εἰσερχομένην +εἰς +τὸ +ἐσώτερον +τοῦ +καταπετάσματος, +ὅπου +πρόδρομος +Ἰησοῦς, +ὑπὲρ +ἡμῶν +εἰσῆλθεν +κατὰ +τὴν +τάξιν +Μελχισέδεκ +ἀρχιερεὺς +γενόμενος +εἰς +τὸν +αἰῶνα. +γὰρ +Οὗτος +ὁ +Μελχισέδεκ, +βασιλεὺς +Σαλήμ, +ἱερεὺς +τοῦ +Θεοῦ +τοῦ +Ὑψίστου, +ὁ +συναντήσας +Ἀβραὰμ +ὑποστρέφοντι +ἀπὸ +τῆς +κοπῆς +τῶν +βασιλέων +καὶ +εὐλογήσας +αὐτόν, +ᾧ +καὶ +δεκάτην +ἀπὸ +πάντων +ἐμέρισεν +Ἀβραάμ, +μὲν +πρῶτον +ἑρμηνευόμενος +βασιλεὺς +δικαιοσύνης, +δὲ +ἔπειτα +καὶ +βασιλεὺς +Σαλήμ, +ὅ +ἐστιν +βασιλεὺς +εἰρήνης, +ἀπάτωρ, +ἀμήτωρ, +ἀγενεαλόγητος, +μήτε +ἀρχὴν +ἡμερῶν +μήτε +ζωῆς +τέλος +ἔχων, +δὲ +ἀφωμοιωμένος +τῷ +Υἱῷ +τοῦ +Θεοῦ, +μένει +ἱερεὺς +εἰς +τὸ +διηνεκές. +δὲ +Θεωρεῖτε +πηλίκος +οὗτος +ᾧ +δεκάτην +Ἀβραὰμ +ὁ +πατριάρχης. +ἔδωκεν +ἐκ +τῶν +ἀκροθινίων +καὶ +μὲν +οἱ +ἐκ +τῶν +υἱῶν +Λευεὶ +τὴν +ἱερατείαν +λαμβάνοντες +ἐντολὴν +ἔχουσιν +ἀποδεκατοῖν +κατὰ +τὸν +νόμον, +τὸν +λαὸν +τοῦτ’ +ἔστιν +τοὺς +ἀδελφοὺς +αὐτῶν, +καίπερ +ἐξεληλυθότας +ἐκ +τῆς +ὀσφύος +Ἀβραάμ· +δὲ +ὁ +μὴ +γενεαλογούμενος +ἐξ +αὐτῶν +δεδεκάτωκεν +Ἀβραάμ, +καὶ +τὸν +ἔχοντα +τὰς +ἐπαγγελίας +εὐλόγηκεν. +δὲ +χωρὶς +πάσης +ἀντιλογίας +τὸ +ἔλαττον +ὑπὸ +τοῦ +κρείττονος +εὐλογεῖται. +καὶ +μὲν +ὧδε +δεκάτας +ἀποθνῄσκοντες +ἄνθρωποι +λαμβάνουσιν, +δὲ +ἐκεῖ +μαρτυρούμενος +ὅτι +ζῇ. +καὶ +ὡς +ἔπος +εἰπεῖν, +δι’ +Ἀβραὰμ +καὶ +Λευεὶς +ὁ +δεκάτας +λαμβάνων +δεδεκάτωται· +γὰρ +ἔτι +ἐν +τῇ +ὀσφύϊ +τοῦ +πατρὸς +ἦν +ὅτε +συνήντησεν +αὐτῷ +Μελχισέδεκ. +μὲν +οὖν +Εἰ +τελείωσις +διὰ +τῆς +Λευειτικῆς +ἱερωσύνης +ἦν, +γὰρ +ὁ +λαὸς +ἐπ’ +αὐτῆς +νενομοθέτηται, +τίς +ἔτι +χρεία +κατὰ +τὴν +τάξιν +Μελχισέδεκ +ἀνίστασθαι +ἕτερον +ἱερέα +καὶ +οὐ +κατὰ +τὴν +τάξιν +Ἀαρὼν +λέγεσθαι; +γὰρ +μετατιθεμένης +τῆς +ἱερωσύνης +ἐξ +ἀνάγκης +καὶ +νόμου +μετάθεσις +γίνεται. +γὰρ +ἐφ’ +ὃν +λέγεται +ταῦτα, +φυλῆς +ἑτέρας +μετέσχηκεν, +ἀφ’ +ἧς +οὐδεὶς +προσέσχηκεν +τῷ +θυσιαστηρίῳ· +γὰρ +πρόδηλον +ὅτι +ἐξ +Ἰούδα +ἀνατέταλκεν +ὁ +Κύριος +ἡμῶν, +εἰς +ἣν +φυλὴν +περὶ +ἱερέων +οὐδὲν +Μωϋσῆς +ἐλάλησεν. +Καὶ +περισσότερον +ἔτι +κατάδηλόν +ἐστιν, +εἰ +κατὰ +τὴν +ὁμοιότητα +Μελχισέδεκ +ἀνίσταται +ἱερεὺς +ἕτερος, +ὃς +γέγονεν +οὐ +κατὰ +νόμον +ἐντολῆς +σαρκίνης +ἀλλὰ +κατὰ +δύναμιν +ζωῆς +ἀκαταλύτου. +γὰρ +μαρτυρεῖται +ὅτι +Σὺ +ἱερεὺς +εἰς +τὸν +αἰῶνα +κατὰ +τὴν +τάξιν +Μελχισέδεκ. +γὰρ +μὲν +ἀθέτησις +προαγούσης +ἐντολῆς +γίνεται +διὰ +τὸ +αὐτῆς +ἀσθενὲς +καὶ +ἀνωφελές, +γὰρ +οὐδὲν +ἐτελείωσεν +ὁ +νόμος, +δὲ +ἐπεισαγωγὴ +κρείττονος +ἐλπίδος, +δι’ +ἧς +ἐγγίζομεν +τῷ +Θεῷ. +Καὶ +καθ’ +ὅσον +οὐ +χωρὶς +ὁρκωμοσίας, +γὰρ +μὲν +—οἱ +χωρὶς +ὁρκωμοσίας +εἰσὶν +γεγονότες, +ἱερεῖς +δὲ +ὁ +μετὰ +ὁρκωμοσίας +διὰ +τοῦ +λέγοντος +πρὸς +αὐτόν +Ὤμοσεν +Κύριος, +καὶ +οὐ +μεταμεληθήσεται +Σὺ +ἱερεὺς +εἰς +τὸν +αἰῶνα· +—κατὰ +τοσοῦτο +καὶ +κρείττονος +διαθήκης +ἔγγυος +γέγονεν +Ἰησοῦς. +Καὶ +μὲν +οἱ +πλείονές +εἰσιν +γεγονότες +ἱερεῖς +διὰ +τὸ +θανάτῳ +κωλύεσθαι +παραμένειν· +δὲ +ὁ +διὰ +τὸ +μένειν +αὐτὸν +εἰς +τὸν +αἰῶνα +ἀπαράβατον +ἔχει +τὴν +ἱερωσύνην· +ὅθεν +καὶ +δύναται +σῴζειν +εἰς +τὸ +παντελὲς +τοὺς +προσερχομένους +δι’ +αὐτοῦ +τῷ +Θεῷ, +πάντοτε +ζῶν +εἰς +τὸ +ἐντυγχάνειν +ὑπὲρ +αὐτῶν. +γὰρ +ἡμῖν +καὶ +ἔπρεπεν +Τοιοῦτος +ἀρχιερεύς, +ὅσιος, +ἄκακος, +ἀμίαντος, +κεχωρισμένος +ἀπὸ +τῶν +ἁμαρτωλῶν, +καὶ +ὑψηλότερος +τῶν +οὐρανῶν +γενόμενος· +ὃς +οὐκ +ἔχει +καθ’ +ἡμέραν +ἀνάγκην, +ὥσπερ +οἱ +ἀρχιερεῖς, +πρότερον +ὑπὲρ +τῶν +ἰδίων +ἁμαρτιῶν +θυσίας +ἀναφέρειν, +ἔπειτα +τῶν +τοῦ +λαοῦ· +γὰρ +τοῦτο +ἐποίησεν +ἐφάπαξ +ἑαυτὸν +ἀνενέγκας. +γὰρ +ὁ +νόμος +ἀνθρώπους +καθίστησιν +ἀρχιερεῖς +ἔχοντας +ἀσθένειαν, +δὲ +ὁ +λόγος +τῆς +ὁρκωμοσίας +τῆς +μετὰ +τὸν +νόμον +Υἱόν +εἰς +τὸν +αἰῶνα +τετελειωμένον. +δὲ +Κεφάλαιον +ἐπὶ +τοῖς +λεγομένοις, +ἔχομεν +τοιοῦτον +ἀρχιερέα, +ὃς +ἐκάθισεν +ἐν +δεξιᾷ +τοῦ +θρόνου +τῆς +Μεγαλωσύνης +ἐν +τοῖς +οὐρανοῖς, +λειτουργὸς +τῶν +ἁγίων +καὶ +τῆς +σκηνῆς +τῆς +ἀληθινῆς, +ἣν +ἔπηξεν +ὁ +Κύριος, +οὐκ +ἄνθρωπος. +γὰρ +Πᾶς +ἀρχιερεὺς +εἰς +τὸ +προσφέρειν +τε +δῶρά +καὶ +θυσίας +καθίσταται· +ὅθεν +ἀναγκαῖον +ἔχειν +καὶ +τοῦτον +τι +ὃ +προσενέγκῃ. +οὖν +μὲν +εἰ +ἦν +ἐπὶ +γῆς, +ἂν +οὐδ’ +ἦν +ἱερεύς, +ὄντων +τῶν +προσφερόντων +κατὰ +νόμον +τὰ +δῶρα· +οἵτινες +ὑποδείγματι +καὶ +σκιᾷ +τῶν +ἐπουρανίων, +λατρεύουσιν +καθὼς +κεχρημάτισται +Μωϋσῆς +μέλλων +ἐπιτελεῖν +τὴν +σκηνήν. +γάρ +φησίν, +Ὅρα +ποιήσεις +πάντα +κατὰ +τὸν +τύπον +τὸν +δειχθέντα +σοι +ἐν +τῷ +ὄρει· +δὲ +νῦν +διαφορωτέρας +λειτουργίας, +τέτυχεν +ὅσῳ +καὶ +ἐστιν +μεσίτης, +κρείττονός +διαθήκης +ἥτις +ἐπὶ +κρείττοσιν +ἐπαγγελίαις +νενομοθέτηται. +γὰρ +εἰ +ἡ +πρώτη +ἐκείνη +ἦν +ἄμεμπτος, +ἂν +οὐκ +δευτέρας +τόπος. +ἐζητεῖτο +γὰρ +μεμφόμενος +αὐτοὺς +λέγει +Ἰδοὺ +ἡμέραι +ἔρχονται, +λέγει +Κύριος, +καὶ +συντελέσω +ἐπὶ +τὸν +οἶκον +Ἰσραὴλ +καὶ +ἐπὶ +τὸν +οἶκον +Ἰούδα +διαθήκην +καινήν, +οὐ +κατὰ +τὴν +διαθήκην +ἣν +ἐποίησα +τοῖς +πατράσιν +αὐτῶν +ἐν +ἡμέρᾳ +ἐπιλαβομένου +μου +τῆς +χειρὸς +αὐτῶν +ἐξαγαγεῖν +αὐτοὺς +ἐκ +γῆς +Αἰγύπτου, +ὅτι +αὐτοὶ +οὐκ +ἐνέμειναν +ἐν +τῇ +διαθήκῃ +μου, +κἀγὼ +ἠμέλησα +αὐτῶν, +λέγει +Κύριος. +ὅτι +αὕτη +ἡ +διαθήκη +ἣν +διαθήσομαι +τῷ +οἴκῳ +Ἰσραὴλ +μετὰ +τὰς +ἡμέρας +ἐκείνας, +λέγει +Κύριος, +διδοὺς +νόμους +μου +εἰς +τὴν +διάνοιαν +αὐτῶν, +καὶ +ἐπὶ +καρδίας +αὐτῶν +ἐπιγράψω +αὐτούς, +καὶ +ἔσομαι +αὐτοῖς +εἰς +Θεόν +καὶ +αὐτοὶ +ἔσονταί +μοι +εἰς +λαόν. +καὶ +οὐ +μὴ +διδάξωσιν +ἕκαστος +τὸν +πολίτην +αὐτοῦ +καὶ +ἕκαστος +τὸν +ἀδελφὸν +αὐτοῦ, +λέγων +Γνῶθι +τὸν +Κύριον, +ὅτι +πάντες +εἰδήσουσίν +με +ἀπὸ +μικροῦ +ἕως +μεγάλου +αὐτῶν. +ὅτι +ἵλεως +ἔσομαι +ταῖς +ἀδικίαις +αὐτῶν, +καὶ +τῶν +ἁμαρτιῶν +αὐτῶν +οὐ +μὴ +μνησθῶ +ἔτι. +ἐν +τῷ +λέγειν +Καινὴν +πεπαλαίωκεν +τὴν +πρώτην· +δὲ +τὸ +παλαιούμενον +καὶ +γηράσκον +ἐγγὺς +ἀφανισμοῦ. +μὲν +οὖν +Εἶχε +καὶ +ἡ +πρώτη +δικαιώματα +λατρείας +τε +τό +ἅγιον +κοσμικόν. +γὰρ +κατεσκευάσθη +σκηνὴ +ἡ +πρώτη, +ἐν +ᾗ +τε +ἥ +λυχνία +καὶ +ἡ +τράπεζα +καὶ +ἡ +πρόθεσις +τῶν +ἄρτων, +ἥτις +λέγεται +Ἅγια· +δὲ +μετὰ +τὸ +δεύτερον +καταπέτασμα +σκηνὴ +ἡ +λεγομένη +Ἅγια +ἁγίων, +ἔχουσα +χρυσοῦν +θυμιατήριον +καὶ +τὴν +κιβωτὸν +τῆς +διαθήκης +περικεκαλυμμένην +πάντοθεν +χρυσίῳ, +ἐν +ᾗ +στάμνος +χρυσῆ +ἔχουσα +τὸ +μάννα +καὶ +ἡ +ῥάβδος +Ἀαρὼν +ἡ +βλαστήσασα +καὶ +αἱ +πλάκες +τῆς +διαθήκης, +δὲ +ὑπεράνω +αὐτῆς +Χερουβεὶν +δόξης +κατασκιάζοντα +τὸ +ἱλαστήριον· +περὶ +ὧν +οὐκ +ἔστιν +νῦν +λέγειν +κατὰ +μέρος. +δὲ +Τούτων +οὕτως +κατεσκευασμένων +μὲν +εἰς +τὴν +πρώτην +σκηνὴν +διὰ +παντὸς +εἰσίασιν +οἱ +ἱερεῖς +τὰς +λατρείας +ἐπιτελοῦντες, +δὲ +εἰς +τὴν +δευτέραν +ἅπαξ +τοῦ +ἐνιαυτοῦ +μόνος +ὁ +ἀρχιερεύς, +οὐ +χωρὶς +αἵματος, +ὃ +προσφέρει +ὑπὲρ +ἑαυτοῦ +καὶ +τῶν +τοῦ +λαοῦ +ἀγνοημάτων, +τοῦτο +δηλοῦντος +τοῦ +Πνεύματος +τοῦ +Ἁγίου, +μήπω +πεφανερῶσθαι +τὴν +τῶν +ἁγίων +ὁδὸν +ἔτι +τῆς +πρώτης +σκηνῆς +ἐχούσης +στάσιν, +ἥτις +παραβολὴ +εἰς +τὸν +καιρὸν +τὸν +ἐνεστηκότα, +καθ’ +ἣν +τε +δῶρά +καὶ +θυσίαι +προσφέρονται +μὴ +δυνάμεναι +κατὰ +συνείδησιν +τελειῶσαι +τὸν +λατρεύοντα, +μόνον +ἐπὶ +βρώμασιν +καὶ +πόμασιν +καὶ +διαφόροις +βαπτισμοῖς, +δικαιώματα +σαρκὸς +μέχρι +καιροῦ +διορθώσεως +ἐπικείμενα. +δὲ +παραγενόμενος +Χριστὸς +ἀρχιερεὺς +τῶν +γενομένων +ἀγαθῶν, +διὰ +τῆς +μείζονος +καὶ +τελειοτέρας +σκηνῆς +οὐ +χειροποιήτου, +τοῦτ’ +ἔστιν +οὐ +ταύτης +τῆς +κτίσεως, +οὐδὲ +δι’ +αἵματος +τράγων +καὶ +μόσχων, +δὲ +διὰ +τοῦ +ἰδίου +αἵματος, +εἰσῆλθεν +ἐφάπαξ +εἰς +τὰ +ἅγια, +αἰωνίαν +λύτρωσιν +εὑράμενος. +γὰρ +εἰ +τὸ +αἷμα +τράγων +καὶ +ταύρων +καὶ +σποδὸς +δαμάλεως +ῥαντίζουσα +τοὺς +κεκοινωμένους +ἁγιάζει +πρὸς +τὴν +τῆς +σαρκὸς +καθαρότητα, +πόσῳ +μᾶλλον +τὸ +αἷμα +τοῦ +Χριστοῦ, +ὃς +διὰ +Πνεύματος +αἰωνίου +ἑαυτὸν +προσήνεγκεν +ἄμωμον +τῷ +Θεῷ, +καθαριεῖ +τὴν +συνείδησιν +ἡμῶν +ἀπὸ +νεκρῶν +ἔργων +εἰς +τὸ +λατρεύειν +Θεῷ +ζῶντι. +Καὶ +διὰ +τοῦτο +διαθήκης +καινῆς +μεσίτης +ἐστίν, +ὅπως +θανάτου +γενομένου +εἰς +ἀπολύτρωσιν +τῶν +ἐπὶ +τῇ +πρώτῃ +διαθήκῃ +παραβάσεων +λάβωσιν +οἱ +κεκλημένοι +τὴν +ἐπαγγελίαν +τῆς +αἰωνίου +κληρονομίας. +γὰρ +ὅπου +διαθήκη, +ἀνάγκη +φέρεσθαι +θάνατον +τοῦ +διαθεμένου· +γὰρ +διαθήκη +ἐπὶ +νεκροῖς +βεβαία, +ἐπεὶ +μή +ποτε +ἰσχύει +ὅτε +ζῇ +ὁ +διαθέμενος. +Ὅθεν +οὐδὲ +ἡ +πρώτη +χωρὶς +αἵματος +ἐνκεκαίνισται. +γὰρ +λαληθείσης +πάσης +ἐντολῆς +κατὰ +τὸν +νόμον +ὑπὸ +Μωϋσέως +παντὶ +τῷ +λαῷ, +λαβὼν +τὸ +αἷμα +τῶν +μόσχων +καὶ +τῶν +τράγων +μετὰ +ὕδατος +καὶ +ἐρίου +κοκκίνου +καὶ +ὑσσώπου, +τε +αὐτό +τὸ +βιβλίον +καὶ +πάντα +τὸν +λαὸν +ἐράντισεν, +λέγων +Τοῦτο +τὸ +αἷμα +τῆς +διαθήκης +ἧς +ἐνετείλατο +πρὸς +ὑμᾶς +ὁ +Θεός. +δὲ +καὶ +τὴν +σκηνὴν +καὶ +πάντα +τὰ +σκεύη +τῆς +λειτουργίας +τῷ +αἵματι +ὁμοίως +ἐράντισεν. +καὶ +σχεδὸν +ἐν +αἵματι +πάντα +καθαρίζεται +κατὰ +τὸν +νόμον, +καὶ +χωρὶς +αἱματεκχυσίας +οὐ +γίνεται +ἄφεσις. +οὖν +Ἀνάγκη +μὲν +τὰ +ὑποδείγματα +τῶν +ἐν +τοῖς +οὐρανοῖς +τούτοις +καθαρίζεσθαι, +δὲ +αὐτὰ +τὰ +ἐπουράνια +θυσίαις +κρείττοσιν +παρὰ +ταύτας. +γὰρ +εἰσῆλθεν +Χριστός, +οὐ +εἰς +χειροποίητα +ἅγια +ἀντίτυπα +τῶν +ἀληθινῶν, +ἀλλ’ +εἰς +αὐτὸν +τὸν +οὐρανόν, +νῦν +ἐμφανισθῆναι +τῷ +προσώπῳ +τοῦ +Θεοῦ +ὑπὲρ +ἡμῶν· +οὐδ’ +ἵνα +πολλάκις +προσφέρῃ +ἑαυτόν, +ὥσπερ +ὁ +ἀρχιερεὺς +εἰσέρχεται +εἰς +τὰ +ἅγια +κατ’ +ἐνιαυτὸν +ἐν +αἵματι +ἀλλοτρίῳ, +ἐπεὶ +ἔδει +αὐτὸν +πολλάκις +παθεῖν +ἀπὸ +καταβολῆς +κόσμου· +δὲ +νυνὶ +ἅπαξ +ἐπὶ +συντελείᾳ +τῶν +αἰώνων +εἰς +ἀθέτησιν +τῆς +ἁμαρτίας +διὰ +τῆς +θυσίας +αὐτοῦ +πεφανέρωται. +καὶ +καθ’ +ὅσον +ἀπόκειται +τοῖς +ἀνθρώποις +ἅπαξ +ἀποθανεῖν, +δὲ +μετὰ +τοῦτο +κρίσις, +οὕτως +καὶ +ὁ +Χριστός, +ἅπαξ +προσενεχθεὶς +εἰς +τὸ +πολλῶν +ἁμαρτίας, +ἀνενεγκεῖν +ἐκ +δευτέρου +χωρὶς +ἁμαρτίας +ὀφθήσεται +τοῖς +αὐτὸν +ἀπεκδεχομένοις +εἰς +σωτηρίαν. +γὰρ +ὁ +νόμος +ἔχων +Σκιὰν +τῶν +μελλόντων +ἀγαθῶν, +οὐκ +αὐτὴν +τὴν +εἰκόνα +τῶν +πραγμάτων, +κατ’ +ἐνιαυτὸν +ταῖς +αὐταῖς +θυσίαις +ἃς +προσφέρουσιν +εἰς +τὸ +διηνεκὲς +οὐδέποτε +δύναται +τοὺς +προσερχομένους +τελειῶσαι· +ἐπεὶ +οὐκ +ἂν +ἐπαύσαντο +προσφερόμεναι, +διὰ +τὸ +μηδεμίαν +ἔχειν +ἔτι +συνείδησιν +ἁμαρτιῶν +τοὺς +λατρεύοντας +ἅπαξ +κεκαθαρισμένους; +ἀλλ’ +ἐν +αὐταῖς +ἀνάμνησις +ἁμαρτιῶν +κατ’ +ἐνιαυτόν· +γὰρ +ἀδύνατον +αἷμα +ταύρων +καὶ +τράγων +ἀφαιρεῖν +ἁμαρτίας. +Διὸ +εἰσερχόμενος +εἰς +τὸν +κόσμον +λέγει +Θυσίαν +καὶ +προσφορὰν +οὐκ +ἠθέλησας, +δὲ +σῶμα +κατηρτίσω +μοι· +ὁλοκαυτώματα +καὶ +περὶ +ἁμαρτίας +οὐκ +εὐδόκησας. +τότε +εἶπον +ὁ +Θεός, +Ἰδοὺ +ἐν +κεφαλίδι +βιβλίου +γέγραπται +περὶ +ἐμοῦ, +ἥκω, +τοῦ +ποιῆσαι +τὸ +θέλημά +σου. +ἀνώτερον +λέγων +ὅτι +Θυσίας +καὶ +προσφορὰς +καὶ +ὁλοκαυτώματα +καὶ +περὶ +ἁμαρτίας +οὐκ +ἠθέλησας +οὐδὲ +εὐδόκησας, +αἵτινες +κατὰ +νόμον +προσφέρονται, +τότε +εἴρηκεν +Ἰδοὺ +ἥκω +τοῦ +ποιῆσαι +τὸ +θέλημά +σου. +ἀναιρεῖ +τὸ +πρῶτον +ἵνα +τὸ +δεύτερον +στήσῃ. +ἐν +ᾧ +θελήματι +ἡγιασμένοι +ἐσμὲν +διὰ +τῆς +προσφορᾶς +τοῦ +σώματος +Ἰησοῦ +Χριστοῦ +ἐφάπαξ. +Καὶ +μὲν +πᾶς +ἱερεὺς +ἕστηκεν +καθ’ +ἡμέραν +λειτουργῶν +καὶ +πολλάκις +προσφέρων +τὰς +αὐτὰς +θυσίας, +αἵτινες +οὐδέποτε +δύνανται +περιελεῖν +ἁμαρτίας· +δὲ +οὗτος +μίαν +θυσίαν +ὑπὲρ +ἁμαρτιῶν +προσενέγκας +εἰς +τὸ +διηνεκὲς +ἐκάθισεν +ἐν +δεξιᾷ +τοῦ +Θεοῦ, +τὸ +λοιπὸν +ἐκδεχόμενος +ἕως +τεθῶσιν +οἱ +ἐχθροὶ +αὐτοῦ +ὑποπόδιον +τῶν +ποδῶν +αὐτοῦ. +γὰρ +μιᾷ +προσφορᾷ +τετελείωκεν +εἰς +τὸ +διηνεκὲς +τοὺς +ἁγιαζομένους. +δὲ +Μαρτυρεῖ +ἡμῖν +καὶ +τὸ +Πνεῦμα +τὸ +Ἅγιον· +γὰρ +μετὰ +τὸ +εἰρηκέναι +Αὕτη +ἡ +διαθήκη +ἣν +διαθήσομαι +πρὸς +αὐτοὺς +μετὰ +τὰς +ἡμέρας +ἐκείνας, +λέγει +Κύριος· +διδοὺς +νόμους +μου +ἐπὶ +καρδίας +αὐτῶν, +καὶ +ἐπὶ +τὴν +διάνοιαν +αὐτῶν +ἐπιγράψω +αὐτούς, +καὶ +τῶν +ἁμαρτιῶν +αὐτῶν +καὶ +τῶν +ἀνομιῶν +αὐτῶν +οὐ +μὴ +μνησθήσομαι +ἔτι. +δὲ +ὅπου +ἄφεσις +τούτων, +οὐκέτι +προσφορὰ +περὶ +ἁμαρτίας. +οὖν, +ἀδελφοί, +Ἔχοντες +παρρησίαν +εἰς +τὴν +εἴσοδον +τῶν +ἁγίων +ἐν +τῷ +αἵματι +Ἰησοῦ, +ἣν +ἐνεκαίνισεν +ἡμῖν +ὁδὸν +πρόσφατον +καὶ +ζῶσαν +διὰ +τοῦ +καταπετάσματος, +τοῦτ’ +ἔστιν +τῆς +σαρκὸς +αὐτοῦ, +καὶ +ἱερέα +μέγαν +ἐπὶ +τὸν +οἶκον +τοῦ +Θεοῦ, +προσερχώμεθα +μετὰ +ἀληθινῆς +καρδίας +ἐν +πληροφορίᾳ +πίστεως, +ῥεραντισμένοι +τὰς +καρδίας +ἀπὸ +συνειδήσεως +πονηρᾶς +καὶ +λελουσμένοι +τὸ +σῶμα +ὕδατι +καθαρῷ· +κατέχωμεν +τὴν +ὁμολογίαν +τῆς +ἐλπίδος +ἀκλινῆ, +γὰρ +πιστὸς +ὁ +ἐπαγγειλάμενος, +καὶ +κατανοῶμεν +ἀλλήλους +εἰς +παροξυσμὸν +ἀγάπης +καὶ +καλῶν +ἔργων, +μὴ +ἐγκαταλείποντες +τὴν +ἐπισυναγωγὴν +ἑαυτῶν, +καθὼς +ἔθος +τισίν, +ἀλλὰ +παρακαλοῦντες, +μᾶλλον +καὶ +τοσούτῳ +ὅσῳ +βλέπετε +ἐγγίζουσαν +τὴν +ἡμέραν. +γὰρ +Ἑκουσίως +ἁμαρτανόντων +ἡμῶν +μετὰ +τὸ +λαβεῖν +τὴν +ἐπίγνωσιν +τῆς +ἀληθείας, +οὐκέτι +περὶ +ἁμαρτιῶν +ἀπολείπεται +θυσία, +δέ +φοβερὰ +τις +ἐκδοχὴ +κρίσεως +καὶ +ζῆλος +πυρὸς +μέλλοντος +ἐσθίειν +τοὺς +ὑπεναντίους. +τις +ἀθετήσας +νόμον +Μωϋσέως +χωρὶς +οἰκτιρμῶν +ἐπὶ +δυσὶν +ἢ +τρισὶν +μάρτυσιν +ἀποθνήσκει· +πόσῳ +δοκεῖτε +χείρονος +τιμωρίας +ἀξιωθήσεται +ὁ +τὸν +Υἱὸν +τοῦ +Θεοῦ +καταπατήσας +καὶ +κοινὸν +ἡγησάμενος +τὸ +αἷμα +τῆς +διαθήκης +ἐν +ᾧ +ἡγιάσθη, +καὶ +τὸ +Πνεῦμα +τῆς +χάριτος +ἐνυβρίσας. +γὰρ +οἴδαμεν +τὸν +εἰπόντα +Ἐμοὶ +ἐκδίκησις, +ἐγὼ +ἀνταποδώσω· +καὶ +πάλιν +Κρινεῖ +Κύριος +τὸν +λαὸν +αὐτοῦ. +φοβερὸν +τὸ +ἐμπεσεῖν +εἰς +χεῖρας +Θεοῦ +ζῶντος. +δὲ +Ἀναμιμνῄσκεσθε +τὰς +πρότερον +ἡμέρας, +ἐν +αἷς +φωτισθέντες +ὑπεμείνατε +πολλὴν +ἄθλησιν +παθημάτων, +μὲν +τοῦτο +τε +ὀνειδισμοῖς +καὶ +θλίψεσιν +θεατριζόμενοι, +δὲ +τοῦτο +κοινωνοὶ +τῶν +οὕτως +ἀναστρεφομένων +γενηθέντες. +γὰρ +καὶ +τοῖς +δεσμίοις +συνεπαθήσατε, +καὶ +τὴν +ἁρπαγὴν +τῶν +ὑπαρχόντων +ὑμῶν +μετὰ +χαρᾶς +προσεδέξασθε, +γινώσκοντες +ἔχειν +ἑαυτοὺς +ὕπαρξιν +κρείσσονα +καὶ +μένουσαν. +οὖν +Μὴ +ἀποβάλητε +τὴν +παρρησίαν +ὑμῶν, +ἥτις +ἔχει +μεγάλην +μισθαποδοσίαν. +γὰρ +ὑπομονῆς +χρείαν +ἔχετε +ἵνα +τὸ +θέλημα +τοῦ +Θεοῦ +ποιήσαντες +κομίσησθε +τὴν +ἐπαγγελίαν. +γὰρ +ἔτι +μικρὸν +ὅσον +ὅσον, +ὁ +ἐρχόμενος +ἥξει +καὶ +οὐ +χρονίσει· +δὲ +ὁ +δίκαιός +μου +ἐκ +πίστεως +ζήσεται, +καὶ +ἐὰν +ὑποστείληται, +οὐκ +εὐδοκεῖ +ἡ +ψυχή +μου +ἐν +αὐτῷ. +δὲ +ἡμεῖς +ἐσμὲν +οὐκ +ὑποστολῆς +εἰς +ἀπώλειαν, +ἀλλὰ +πίστεως +εἰς +περιποίησιν +ψυχῆς. +δὲ +Ἔστιν +πίστις +ἐλπιζομένων +ὑπόστασις, +ἔλεγχος +πραγμάτων +οὐ +βλεπομένων. +γὰρ +ἐν +ταύτῃ +ἐμαρτυρήθησαν +οἱ +πρεσβύτεροι. +Πίστει +νοοῦμεν +κατηρτίσθαι +τοὺς +αἰῶνας +ῥήματι +Θεοῦ, +εἰς +τὸ +μὴ +ἐκ +φαινομένων +τὸ +βλεπόμενον +γεγονέναι. +Πίστει +Ἄβελ +πλείονα +θυσίαν +παρὰ +Κάϊν +προσήνεγκεν +τῷ +Θεῷ, +δι’ +ἧς +ἐμαρτυρήθη +εἶναι +δίκαιος, +μαρτυροῦντος +ἐπὶ +τοῖς +δώροις +αὐτοῦ +τοῦ +Θεοῦ, +καὶ +δι’ +αὐτῆς +ἀποθανὼν +ἔτι +λαλεῖ. +Πίστει +Ἐνὼχ +μετετέθη +τοῦ +μὴ +ἰδεῖν +θάνατον, +καὶ +οὐχ +ηὑρίσκετο +διότι +μετέθηκεν +αὐτὸν +ὁ +Θεός. +γὰρ +πρὸ +τῆς +μεταθέσεως +μεμαρτύρηται +εὐαρεστηκέναι +τῷ +Θεῷ· +δὲ +χωρὶς +πίστεως +ἀδύνατον +εὐαρεστῆσαι· +γὰρ +δεῖ +πιστεῦσαι +τὸν +προσερχόμενον +τῷ +Θεῷ, +ὅτι +ἔστιν +καὶ +τοῖς +ἐκζητοῦσιν +αὐτὸν +μισθαποδότης +γίνεται. +Πίστει +Νῶε +χρηματισθεὶς +περὶ +τῶν +μηδέπω +βλεπομένων, +εὐλαβηθεὶς +κατεσκεύασεν +κιβωτὸν +εἰς +σωτηρίαν +τοῦ +οἴκου +αὐτοῦ, +δι’ +ἧς +κατέκρινεν +τὸν +κόσμον, +καὶ +τῆς +κατὰ +πίστιν +δικαιοσύνης +κληρονόμος. +ἐγένετο +Πίστει +καλούμενος +Ἀβραὰμ +ὑπήκουσεν +ἐξελθεῖν +εἰς +τόπον +ἤμελλεν +ὃν +λαμβάνειν +εἰς +κληρονομίαν, +καὶ +ἐξῆλθεν +μὴ +ἐπιστάμενος +ποῦ +ἔρχεται. +Πίστει +παρῴκησεν +εἰς +γῆν +τῆς +ἐπαγγελίας +ὡς +ἀλλοτρίαν, +ἐν +σκηναῖς +κατοικήσας, +μετὰ +Ἰσαὰκ +καὶ +Ἰακὼβ +τῶν +συνκληρονόμων +τῆς +ἐπαγγελίας +τῆς +αὐτῆς· +γὰρ +ἐξεδέχετο +τὴν +τοὺς +θεμελίους +ἔχουσαν +πόλιν, +ἧς +τεχνίτης +καὶ +δημιουργὸς +ὁ +Θεός. +Πίστει +καὶ +αὐτῇ +Σάρρᾳ +δύναμιν +εἰς +καταβολὴν +σπέρματος +ἔλαβεν +καὶ +παρὰ +καιρὸν +ἡλικίας, +ἐπεὶ +πιστὸν +ἡγήσατο +τὸν +ἐπαγγειλάμενον. +διὸ +καὶ +ἀφ’ +ἑνὸς +νενεκρωμένου, +ἐγεννήθησαν, +καὶ +ταῦτα +καθὼς +τὰ +ἄστρα +τοῦ +οὐρανοῦ +τῷ +πλήθει +καὶ +ὡς +ἡ +ἄμμος +ἡ +παρὰ +τὸ +χεῖλος +τῆς +θαλάσσης +ἡ +ἀναρίθμητος. +Κατὰ +πίστιν +ἀπέθανον +οὗτοι +πάντες, +μὴ +κομισάμενοι +τὰς +ἐπαγγελίας, +ἀλλὰ +πόρρωθεν +αὐτὰς +ἰδόντες +καὶ +ἀσπασάμενοι, +καὶ +ὁμολογήσαντες +ὅτι +ξένοι +καὶ +παρεπίδημοί +εἰσιν +ἐπὶ +τῆς +γῆς. +γὰρ +οἱ +τοιαῦτα +λέγοντες +ἐμφανίζουσιν +ὅτι +πατρίδα +ἐπιζητοῦσιν. +καὶ +μὲν +εἰ +ἐμνημόνευον +ἐκείνης +ἀφ’ +ἧς +ἐξέβησαν, +ἂν +εἶχον +καιρὸν +ἀνακάμψαι· +δὲ +νῦν +ὀρέγονται, +κρείττονος +τοῦτ’ +ἔστιν +ἐπουρανίου. +διὸ +οὐκ +ἐπαισχύνεται +αὐτοὺς +ὁ +Θεὸς +Θεὸς +αὐτῶν· +ἐπικαλεῖσθαι +γὰρ +ἡτοίμασεν +αὐτοῖς +πόλιν. +Πίστει +προσενήνοχεν +Ἀβραὰμ +τὸν +Ἰσαὰκ +πειραζόμενος, +καὶ +τὸν +μονογενῆ +προσέφερεν +ὁ +τὰς +ἐπαγγελίας +ἀναδεξάμενος, +πρὸς +ὃν +ἐλαλήθη +ὅτι +Ἐν +Ἰσαὰκ +κληθήσεταί +σοι +σπέρμα, +λογισάμενος +ὅτι +καὶ +ἐκ +νεκρῶν +ἐγείρειν +δυνατὸς +ὁ +Θεός· +ὅθεν +αὐτὸν +καὶ +ἐν +παραβολῇ +ἐκομίσατο. +Πίστει +καὶ +περὶ +μελλόντων +εὐλόγησεν +Ἰσαὰκ +τὸν +Ἰακὼβ +καὶ +τὸν +Ἠσαῦ. +Πίστει +Ἰακὼβ +ἀποθνῄσκων +ἕκαστον +τῶν +υἱῶν +Ἰωσὴφ +εὐλόγησεν, +καὶ +προσεκύνησεν +ἐπὶ +τὸ +ἄκρον +τῆς +ῥάβδου +αὐτοῦ. +Πίστει +Ἰωσὴφ +τελευτῶν +περὶ +τῆς +ἐξόδου +τῶν +υἱῶν +Ἰσραὴλ +ἐμνημόνευσεν +καὶ +περὶ +τῶν +ὀστέων +αὐτοῦ +ἐνετείλατο. +Πίστει +Μωϋσῆς +γεννηθεὶς +ἐκρύβη +τρίμηνον +ὑπὸ +τῶν +πατέρων +αὐτοῦ, +διότι +εἶδον +ἀστεῖον +τὸ +παιδίον, +καὶ +οὐκ +ἐφοβήθησαν +τὸ +διάταγμα +τοῦ +βασιλέως. +Πίστει +Μωϋσῆς +μέγας +γενόμενος +ἠρνήσατο +λέγεσθαι +υἱὸς +θυγατρὸς +Φαραώ, +ἑλόμενος +μᾶλλον +συνκακουχεῖσθαι +τῷ +λαῷ +τοῦ +Θεοῦ +ἢ +πρόσκαιρον +ἔχειν +ἁμαρτίας +ἀπόλαυσιν, +μείζονα +πλοῦτον +ἡγησάμενος +τῶν +Αἰγύπτου +θησαυρῶν +τὸν +ὀνειδισμὸν +τοῦ +Χριστοῦ· +γὰρ +ἀπέβλεπεν +εἰς +τὴν +μισθαποδοσίαν. +Πίστει +κατέλιπεν +Αἴγυπτον, +μὴ +φοβηθεὶς +τὸν +θυμὸν +τοῦ +βασιλέως· +γὰρ +τὸν +ἀόρατον +ὡς +ὁρῶν +ἐκαρτέρησεν. +Πίστει +πεποίηκεν +τὸ +πάσχα +καὶ +τὴν +πρόσχυσιν +τοῦ +αἵματος, +ἵνα +μὴ +ὁ +ὀλοθρεύων +τὰ +πρωτότοκα +θίγῃ +αὐτῶν. +Πίστει +διέβησαν +τὴν +Ἐρυθρὰν +Θάλασσαν +ὡς +διὰ +ξηρᾶς +γῆς, +ἧς +πεῖραν +λαβόντες +οἱ +Αἰγύπτιοι +κατεπόθησαν. +Πίστει +τὰ +τείχη +Ἰερειχὼ +ἔπεσαν +κυκλωθέντα +ἐπὶ +ἑπτὰ +ἡμέρας. +Πίστει +Ῥαὰβ +ἡ +πόρνη +οὐ +συναπώλετο +τοῖς +ἀπειθήσασιν, +δεξαμένη +τοὺς +κατασκόπους +μετ’ +εἰρήνης. +Καὶ +τί +ἔτι +λέγω; +γὰρ +ἐπιλείψει +ὁ +χρόνος +με +διηγούμενον +περὶ +Γεδεών, +Βαράκ, +Σαμψών, +Ἰεφθάε, +τε +Δαυείδ +καὶ +Σαμουὴλ +καὶ +τῶν +προφητῶν, +οἳ +διὰ +πίστεως +κατηγωνίσαντο +βασιλείας, +ἠργάσαντο +δικαιοσύνην, +ἐπέτυχον +ἐπαγγελιῶν, +ἔφραξαν +στόματα +λεόντων, +ἔσβεσαν +δύναμιν +πυρός, +ἔφυγον +στόματα +μαχαίρης, +ἐδυναμώθησαν +ἀπὸ +ἀσθενείας, +ἐγενήθησαν +ἰσχυροὶ +ἐν +πολέμῳ, +παρεμβολὰς +ἀλλοτρίων. +ἔκλιναν +ἔλαβον +γυναῖκες +ἐξ +ἀναστάσεως +τοὺς +νεκροὺς +αὐτῶν· +δὲ +ἄλλοι +ἐτυμπανίσθησαν, +οὐ +προσδεξάμενοι +τὴν +ἀπολύτρωσιν, +ἵνα +κρείττονος +ἀναστάσεως +τύχωσιν· +δὲ +ἕτεροι +ἐμπαιγμῶν +καὶ +μαστίγων +πεῖραν +ἔλαβον, +δὲ +ἔτι +δεσμῶν +καὶ +φυλακῆς· +ἐλιθάσθησαν, +ἐπειράσθησαν, +ἐπρίσθησαν, +ἐν +φόνῳ +μαχαίρης +ἀπέθανον, +περιῆλθον +ἐν +μηλωταῖς, +ἐν +αἰγείοις +δέρμασιν, +ὑστερούμενοι, +θλιβόμενοι, +κακουχούμενοι, +πλανώμενοι +ἐπὶ +ἐρημίαις +καὶ +ὄρεσιν +καὶ +σπηλαίοις +καὶ +ταῖς +ὀπαῖς +τῆς +γῆς. +ὧν +οὐκ +ἦν +ἄξιος +ὁ +κόσμος, +Καὶ +οὗτοι +πάντες +μαρτυρηθέντες +διὰ +τῆς +πίστεως +οὐκ +ἐκομίσαντο +τὴν +ἐπαγγελίαν, +τοῦ +Θεοῦ +περὶ +ἡμῶν +κρεῖττόν +τι +προβλεψαμένου, +ἵνα +μὴ +χωρὶς +ἡμῶν +τελειωθῶσιν. +Τοιγαροῦν +καὶ +ἡμεῖς, +ἔχοντες +τοσοῦτον +περικείμενον +ἡμῖν +νέφος +μαρτύρων, +ἀποθέμενοι +ὄγκον +πάντα +καὶ +τὴν +εὐπερίστατον +ἁμαρτίαν, +δι’ +ὑπομονῆς +τρέχωμεν +τὸν +προκείμενον +ἡμῖν +ἀγῶνα, +ἀφορῶντες +εἰς +τὸν +τῆς +πίστεως +ἀρχηγὸν +καὶ +τελειωτὴν +Ἰησοῦν, +ὃς +ἀντὶ +τῆς +προκειμένης +αὐτῷ +χαρᾶς +ὑπέμεινεν +σταυρὸν +αἰσχύνης +καταφρονήσας, +τε +ἐν +δεξιᾷ +τοῦ +θρόνου +τοῦ +Θεοῦ +κεκάθικεν. +γὰρ +ἀναλογίσασθε +τὸν +ὑπομεμενηκότα +τοιαύτην +ὑπὸ +τῶν +ἁμαρτωλῶν +εἰς +ἑαυτὸν +ἀντιλογίαν, +ἵνα +μὴ +κάμητε +ταῖς +ψυχαῖς +ὑμῶν +ἐκλυόμενοι. +Οὔπω +μέχρις +αἵματος +ἀντικατέστητε +πρὸς +τὴν +ἁμαρτίαν +ἀνταγωνιζόμενοι, +καὶ +ἐκλέλησθε +τῆς +παρακλήσεως, +ἥτις +ὑμῖν +ὡς +υἱοῖς +διαλέγεται +Υἱέ +μου, +μὴ +ὀλιγώρει +παιδείας +Κυρίου, +μηδὲ +ἐκλύου +ὑπ’ +αὐτοῦ +ἐλεγχόμενος· +γὰρ +ὃν +ἀγαπᾷ +Κύριος +παιδεύει, +δὲ +μαστιγοῖ +πάντα +υἱὸν +ὃν +παραδέχεται. +εἰς +παιδείαν +ὑπομένετε· +ὡς +υἱοῖς +ὑμῖν +προσφέρεται +ὁ +Θεός· +γὰρ +τίς +υἱὸς +ὃν +οὐ +παιδεύει +πατήρ; +δὲ +εἰ +ἐστε +χωρίς +παιδείας, +ἧς +μέτοχοι +γεγόνασιν +πάντες, +ἄρα +νόθοι +καὶ +οὐχ +υἱοί +ἐστε. +μὲν +εἶτα +τοὺς +τῆς +σαρκὸς +ἡμῶν +πατέρας +εἴχομεν +παιδευτὰς +καὶ +ἐνετρεπόμεθα· +οὐ +πολὺ +μᾶλλον +ὑποταγησόμεθα +τῷ +Πατρὶ +τῶν +πνευμάτων +καὶ +ζήσομεν; +γὰρ +μὲν +οἱ +πρὸς +ὀλίγας +ἡμέρας +κατὰ +τὸ +δοκοῦν +αὐτοῖς +ἐπαίδευον, +δὲ +ὁ +ἐπὶ +τὸ +συμφέρον +εἰς +τὸ +μεταλαβεῖν +τῆς +ἁγιότητος +αὐτοῦ. +μὲν +πᾶσα +παιδεία +μὲν +πρὸς +τὸ +παρὸν +δοκεῖ +οὐ +χαρᾶς +εἶναι +ἀλλὰ +λύπης, +δὲ +ὕστερον +καρπὸν +εἰρηνικὸν +δικαιοσύνης. +τοῖς +δι’ +αὐτῆς +γεγυμνασμένοις +ἀποδίδωσιν +Διὸ +τὰς +παρειμένας +χεῖρας +καὶ +τὰ +παραλελυμένα +γόνατα +ἀνορθώσατε, +καὶ +τροχιὰς +ὀρθὰς +ποιεῖτε +τοῖς +ποσὶν +ὑμῶν, +ἵνα +μὴ +τὸ +χωλὸν +ἐκτραπῇ, +δὲ +ἰαθῇ +μᾶλλον. +διώκετε +μετὰ +πάντων, +Εἰρήνην +καὶ +τὸν +ἁγιασμόν, +οὗ +χωρὶς +οὐδεὶς +ὄψεται +τὸν +Κύριον, +ἐπισκοποῦντες +μή +τις +ὑστερῶν +ἀπὸ +τῆς +χάριτος +τοῦ +Θεοῦ, +μή +τις +ῥίζα +πικρίας +ἄνω +φύουσα +ἐνοχλῇ +καὶ +διὰ +ταύτης +μιανθῶσιν +οἱ +πολλοί, +μή +τις +πόρνος +ἢ +βέβηλος +ὡς +Ἠσαῦ, +ὃς +ἀντὶ +βρώσεως +μιᾶς +ἀπέδετο +τὰ +πρωτοτόκια +ἑαυτοῦ. +γὰρ +ἴστε +ὅτι +καὶ +μετέπειτα +θέλων +κληρονομῆσαι +τὴν +εὐλογίαν +ἀπεδοκιμάσθη, +γὰρ +μετανοίας +τόπον +οὐχ +εὗρεν, +καίπερ +μετὰ +δακρύων +ἐκζητήσας +αὐτήν. +γὰρ +Οὐ +προσεληλύθατε +ψηλαφωμένῳ +καὶ +κεκαυμένῳ +πυρὶ +καὶ +γνόφῳ +καὶ +ζόφῳ +καὶ +θυέλλῃ +καὶ +σάλπιγγος +ἤχῳ +καὶ +φωνῇ +ῥημάτων, +ἧς +οἱ +ἀκούσαντες +παρῃτήσαντο +μὴ +προστεθῆναι +αὐτοῖς +λόγον· +γὰρ +οὐκ +ἔφερον +τὸ +διαστελλόμενον +Κἂν +θηρίον +θίγῃ +τοῦ +ὄρους, +λιθοβοληθήσεται· +καί, +οὕτω +φοβερὸν +ἦν +τὸ +φανταζόμενον, +Μωϋσῆς +εἶπεν +εἰμι +Ἔκφοβός +καὶ +ἔντρομος· +ἀλλὰ +προσεληλύθατε +Σιὼν +ὄρει +καὶ +πόλει +Θεοῦ +ζῶντος, +Ἱερουσαλὴμ +ἐπουρανίῳ, +καὶ +μυριάσιν +ἀγγέλων, +πανηγύρει +καὶ +ἐκκλησίᾳ +πρωτοτόκων +ἀπογεγραμμένων +ἐν +οὐρανοῖς, +καὶ +Κριτῇ +πάντων, +Θεῷ +καὶ +πνεύμασι +δικαίων +τετελειωμένων, +καὶ +διαθήκης +νέας +μεσίτῃ +Ἰησοῦ, +καὶ +αἵματι +ῥαντισμοῦ +κρεῖττον +λαλοῦντι +παρὰ +τὸν +Ἄβελ. +Βλέπετε +μὴ +παραιτήσησθε +τὸν +λαλοῦντα· +γὰρ +εἰ +οὐκ +ἐξέφυγον +ἐκεῖνοι +παραιτησάμενοι +τὸν +ἐπὶ +γῆς +χρηματίζοντα, +πολὺ +μᾶλλον +ἡμεῖς +οἱ +τὸν +ἀπ’ +οὐρανῶν +ἀποστρεφόμενοι· +οὗ +ἡ +φωνὴ +τὴν +γῆν +ἐσάλευσεν +τότε, +δὲ +νῦν +ἐπήγγελται +λέγων +Ἔτι +ἅπαξ +ἐγὼ +σείσω +οὐ +μόνον +τὴν +γῆν +ἀλλὰ +καὶ +τὸν +οὐρανόν. +δὲ +τὸ +Ἔτι +ἅπαξ +δηλοῖ +τὴν +τῶν +σαλευομένων +μετάθεσιν +ὡς +πεποιημένων, +ἵνα +μείνῃ +τὰ +μὴ +σαλευόμενα. +Διὸ +βασιλείαν +ἀσάλευτον +παραλαμβάνοντες +ἔχωμεν +χάριν, +δι’ +ἧς +λατρεύωμεν +εὐαρέστως +τῷ +Θεῷ, +μετὰ +εὐλαβείας +καὶ +δέους· +γὰρ +καὶ +ὁ +Θεὸς +ἡμῶν +πῦρ +καταναλίσκον. +Ἠ +φιλαδελφία +μενέτω. +τῆς +φιλοξενίας +μὴ +ἐπιλανθάνεσθε· +γὰρ +διὰ +ταύτης +ἔλαθόν +τινες +ξενίσαντες +ἀγγέλους. +μιμνῄσκεσθε +τῶν +δεσμίων +ὡς +συνδεδεμένοι, +τῶν +κακουχουμένων +ὡς +καὶ +αὐτοὶ +ὄντες +ἐν +σώματι. +Τίμιος +ὁ +γάμος +ἐν +πᾶσιν +καὶ +ἡ +κοίτη +ἀμίαντος, +γὰρ +πόρνους +καὶ +μοιχοὺς +κρινεῖ +ὁ +Θεός. +Ἀφιλάργυρος +ὁ +τρόπος, +ἀρκούμενοι +τοῖς +παροῦσιν· +γὰρ +αὐτὸς +εἴρηκεν +Οὐ +μή +σε +ἀνῶ +οὐδ’ +οὐ +μή +σε +ἐγκαταλίπω· +ὥστε +θαρροῦντας +ἡμᾶς +λέγειν +Κύριος +ἐμοὶ +βοηθός, +οὐ +φοβηθήσομαι· +τί +ποιήσει +μοι +ἄνθρωπος; +Μνημονεύετε +τῶν +ἡγουμένων +ὑμῶν, +οἵτινες +ἐλάλησαν +ὑμῖν +τὸν +λόγον +τοῦ +Θεοῦ, +ὧν +τὴν +ἔκβασιν +τῆς +ἀναστροφῆς +ἀναθεωροῦντες +μιμεῖσθε +τὴν +πίστιν. +Ἰησοῦς +Χριστὸς +ἐχθὲς +καὶ +σήμερον +ὁ +αὐτός +καὶ +εἰς +τοὺς +αἰῶνας. +διδαχαῖς +ποικίλαις +καὶ +ξέναις +μὴ +παραφέρεσθε· +γὰρ +καλὸν +χάριτι +βεβαιοῦσθαι +τὴν +καρδίαν, +οὐ +βρώμασιν, +ἐν +οἷς +οὐκ +ὠφελήθησαν +οἱ +περιπατοῦντες. +Ἔχομεν +θυσιαστήριον +ἐξ +οὗ +φαγεῖν +οὐκ +ἔχουσιν +ἐξουσίαν +οἱ +τῇ +σκηνῇ +λατρεύοντες. +γὰρ +εἰσφέρεται +ὧν +ζῴων +τὸ +αἷμα +περὶ +ἁμαρτίας +εἰς +τὰ +ἅγια +διὰ +τοῦ +ἀρχιερέως, +τούτων +τὰ +σώματα +κατακαίεται +ἔξω +τῆς +παρεμβολῆς. +διὸ +καὶ +Ἰησοῦς, +ἵνα +ἁγιάσῃ +διὰ +τοῦ +ἰδίου +αἵματος +τὸν +λαόν, +ἔξω +τῆς +πύλης +ἔπαθεν. +τοίνυν +ἐξερχώμεθα +πρὸς +αὐτὸν +ἔξω +τῆς +παρεμβολῆς, +τὸν +ὀνειδισμὸν +αὐτοῦ +φέροντες· +γὰρ +οὐ +ἔχομεν +ὧδε +μένουσαν +πόλιν, +ἀλλὰ +τὴν +μέλλουσαν +ἐπιζητοῦμεν. +οὖν +δι’ +αὐτοῦ +ἀναφέρωμεν +διὰ +παντὸς +τῷ +Θεῷ, +θυσίαν +αἰνέσεως +τοῦτ’ +ἔστιν +καρπὸν +χειλέων +ὁμολογούντων +τῷ +ὀνόματι +αὐτοῦ. +δὲ +τῆς +εὐποιΐας +καὶ +κοινωνίας +μὴ +ἐπιλανθάνεσθε· +γὰρ +τοιαύταις +θυσίαις +εὐαρεστεῖται +ὁ +Θεός. +Πείθεσθε +τοῖς +ἡγουμένοις +ὑμῶν +καὶ +ὑπείκετε· +γὰρ +αὐτοὶ +ἀγρυπνοῦσιν +ὑπὲρ +τῶν +ψυχῶν +ὑμῶν +ὡς +λόγον +ἀποδώσοντες· +ἵνα +μετὰ +χαρᾶς +τοῦτο +ποιῶσιν +καὶ +μὴ +στενάζοντες· +γὰρ +ἀλυσιτελὲς +ὑμῖν +τοῦτο. +Προσεύχεσθε +περὶ +ἡμῶν· +γὰρ +πειθόμεθα +ὅτι +καλὴν +συνείδησιν +ἔχομεν, +ἐν +πᾶσιν +καλῶς +ἀναστρέφεσθαι. +θέλοντες +δὲ +περισσοτέρως +παρακαλῶ +τοῦτο +ποιῆσαι, +ἵνα +τάχειον +ἀποκατασταθῶ +ὑμῖν. +δὲ +Ὁ +Θεὸς +τῆς +εἰρήνης, +ὁ +ἀναγαγὼν +ἐκ +νεκρῶν +ἐν +αἵματι +διαθήκης +αἰωνίου, +τὸν +ποιμένα +τῶν +προβάτων +τὸν +μέγαν +τὸν +Κύριον +ἡμῶν +Ἰησοῦν, +καταρτίσαι +ὑμᾶς +ἐν +παντὶ +ἀγαθῷ +εἰς +τὸ +ποιῆσαι +τὸ +θέλημα +αὐτοῦ, +ποιῶν +ἐν +ἡμῖν +τὸ +εὐάρεστον +ἐνώπιον +αὐτοῦ +διὰ +Ἰησοῦ +Χριστοῦ, +ᾧ +ἡ +δόξα +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +δὲ +Παρακαλῶ +ὑμᾶς, +ἀδελφοί, +ἀνέχεσθε +τοῦ +λόγου +τῆς +παρακλήσεως· +γὰρ +καὶ +διὰ +βραχέων +ἐπέστειλα +ὑμῖν. +Γινώσκετε +τὸν +ἀδελφὸν +ἡμῶν +Τιμόθεον +ἀπολελυμένον, +μεθ’ +οὗ +ἐὰν +τάχειον +ἔρχηται +ὄψομαι +ὑμᾶς. +Ἀσπάσασθε +πάντας +τοὺς +ἡγουμένους +ὑμῶν +καὶ +πάντας +τοὺς +ἁγίους. +Ἀσπάζονται +ὑμᾶς +οἱ +ἀπὸ +τῆς +Ἰταλίας. +Ἠ +χάρις +μετὰ +πάντων +ὑμῶν. +Ἰάκωβος +Θεοῦ +καὶ +Κυρίου +Ἰησοῦ +Χριστοῦ +δοῦλος +ταῖς +δώδεκα +φυλαῖς +ταῖς +ἐν +τῇ +Διασπορᾷ +χαίρειν. +ἀδελφοί +μου, +Πᾶσαν +χαρὰν +ἡγήσασθε, +ὅταν +πειρασμοῖς +ποικίλοις, +περιπέσητε +γινώσκοντες +ὅτι +τὸ +δοκίμιον +ὑμῶν +τῆς +πίστεως +κατεργάζεται +ὑπομονήν. +δὲ +ἡ +ὑπομονὴ +ἔργον +τέλειον +ἐχέτω, +ἵνα +ἦτε +τέλειοι +καὶ +ὁλόκληροι, +ἐν +μηδενὶ +λειπόμενοι. +δέ +Εἰ +τις +ὑμῶν +λείπεται +σοφίας, +αἰτείτω +παρὰ +τοῦ +διδόντος +πᾶσιν +ἁπλῶς +καὶ +μὴ +ὀνειδίζοντος, +Θεοῦ +καὶ +δοθήσεται +αὐτῷ. +δὲ +αἰτείτω +ἐν +πίστει, +μηδὲν +διακρινόμενος· +γὰρ +ὁ +διακρινόμενος +ἔοικεν +κλύδωνι +θαλάσσης +ἀνεμιζομένῳ +καὶ +ῥιπιζομένῳ. +γὰρ +μὴ +οἰέσθω +ὁ +ἄνθρωπος +ἐκεῖνος +ὅτι +λήμψεταί +τι +παρὰ +τοῦ +Κυρίου, +ἀνὴρ +δίψυχος, +ἀκατάστατος +ἐν +πάσαις +ταῖς +ὁδοῖς +αὐτοῦ. +δὲ +Καυχάσθω +ὁ +ἀδελφὸς +ὁ +ταπεινὸς +ἐν +τῷ +ὕψει +αὐτοῦ, +δὲ +ὁ +πλούσιος +ἐν +τῇ +ταπεινώσει +αὐτοῦ, +ὅτι +ὡς +ἄνθος +χόρτου +παρελεύσεται. +γὰρ +ἀνέτειλεν +ὁ +ἥλιος +σὺν +τῷ +καύσωνι +καὶ +ἐξήρανεν +τὸν +χόρτον, +καὶ +τὸ +ἄνθος +αὐτοῦ +ἐξέπεσεν +καὶ +ἡ +εὐπρέπεια +τοῦ +προσώπου +αὐτοῦ +ἀπώλετο· +οὕτως +καὶ +ὁ +πλούσιος +ἐν +ταῖς +πορείαις +αὐτοῦ +μαρανθήσεται. +Μακάριος +ἀνὴρ +ὃς +ὑπομένει +πειρασμόν, +ὅτι +δόκιμος +γενόμενος +λήμψεται +τὸν +στέφανον +τῆς +ζωῆς, +ὃν +ἐπηγγείλατο +τοῖς +ἀγαπῶσιν +αὐτόν. +Μηδεὶς +πειραζόμενος +λεγέτω +ὅτι +Ἀπὸ +Θεοῦ +πειράζομαι· +γὰρ +ὁ +Θεὸς +ἀπείραστός +ἐστιν +κακῶν, +δὲ +πειράζει +αὐτὸς +οὐδένα. +δὲ +ἕκαστος +πειράζεται +ὑπὸ +τῆς +ἰδίας +ἐπιθυμίας +ἐξελκόμενος +καὶ +δελεαζόμενος· +εἶτα +ἡ +ἐπιθυμία +συλλαβοῦσα +τίκτει +ἁμαρτίαν, +δὲ +ἡ +ἁμαρτία +ἀποτελεσθεῖσα +ἀποκύει +θάνατον. +Μὴ +πλανᾶσθε, +ἀδελφοί +μου +ἀγαπητοί. +πᾶσα +δόσις +ἀγαθὴ +καὶ +πᾶν +δώρημα +τέλειον +ἄνωθέν +ἐστιν +καταβαῖνον +ἀπὸ +τοῦ +Πατρὸς +τῶν +φώτων, +παρ’ +ᾧ +οὐκ +ἔνι +παραλλαγὴ +ἢ +τροπῆς +ἀποσκίασμα. +βουληθεὶς +ἀπεκύησεν +ἡμᾶς +λόγῳ +ἀληθείας, +εἰς +τὸ +εἶναι +ἡμᾶς +ἀπαρχήν +τινα +τῶν +αὐτοῦ +κτισμάτων. +Ἴστε, +ἀδελφοί +μου +ἀγαπητοί. +δὲ +ἔστω +πᾶς +ἄνθρωπος +ταχὺς +εἰς +τὸ +ἀκοῦσαι, +βραδὺς +εἰς +τὸ +λαλῆσαι, +βραδὺς +εἰς +ὀργήν· +γὰρ +ὀργὴ +ἀνδρὸς +δικαιοσύνην +Θεοῦ +οὐκ +ἐργάζεται. +διὸ +ἀποθέμενοι +πᾶσαν +ῥυπαρίαν +καὶ +περισσείαν +κακίας +ἐν +πραΰτητι +δέξασθε +τὸν +ἔμφυτον +λόγον +τὸν +δυνάμενον +σῶσαι +τὰς +ψυχὰς +ὑμῶν. +δὲ +γίνεσθε +ποιηταὶ +λόγου, +καὶ +μὴ +ἀκροαταὶ +μόνον +παραλογιζόμενοι +ἑαυτούς. +ὅτι +εἴ +τις +ἀκροατὴς +λόγου +ἐστὶν +καὶ +οὐ +ποιητής, +οὗτος +ἔοικεν +ἀνδρὶ +κατανοοῦντι +τὸ +πρόσωπον +τῆς +γενέσεως +αὐτοῦ +ἐν +ἐσόπτρῳ· +γὰρ +κατενόησεν +ἑαυτὸν +καὶ +ἀπελήλυθεν, +καὶ +εὐθέως +ἐπελάθετο +ὁποῖος +ἦν. +δὲ +ὁ +παρακύψας +εἰς +νόμον +τέλειον +τὸν +τῆς +ἐλευθερίας +καὶ +παραμείνας, +γενόμενος +οὐκ +ἀκροατὴς +ἐπιλησμονῆς +ἀλλὰ +ποιητὴς +ἔργου, +οὗτος +μακάριος +ἐν +τῇ +ποιήσει +αὐτοῦ +ἔσται. +Εἴ +τις +δοκεῖ +θρησκὸς +εἶναι, +μὴ +χαλιναγωγῶν +γλῶσσαν +ἑαυτοῦ +ἀλλὰ +ἀπατῶν +καρδίαν +ἑαυτοῦ, +τούτου +ἡ +θρησκεία. +μάταιος +θρησκεία +καθαρὰ +καὶ +ἀμίαντος +παρὰ +τῷ +Θεῷ +καὶ +Πατρὶ +ἐστίν, +αὕτη +ἐπισκέπτεσθαι +ὀρφανοὺς +καὶ +χήρας +ἐν +τῇ +θλίψει +αὐτῶν, +ἄσπιλον +ἑαυτὸν +τηρεῖν +ἀπὸ +τοῦ +κόσμου. +Ἀδελφοί +μου, +μὴ +ἐν +προσωπολημψίαις +ἔχετε +τὴν +πίστιν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +τῆς +δόξης. +γὰρ +ἐὰν +εἰσέλθῃ +εἰς +συναγωγὴν +ὑμῶν +ἀνὴρ +χρυσοδακτύλιος +ἐν +ἐσθῆτι +λαμπρᾷ, +δὲ +εἰσέλθῃ +καὶ +πτωχὸς +ἐν +ῥυπαρᾷ +ἐσθῆτι, +δὲ +ἐπιβλέψητε +ἐπὶ +τὸν +φοροῦντα +τὴν +ἐσθῆτα +τὴν +λαμπρὰν +καὶ +εἴπητε +Σὺ +κάθου +ὧδε +καλῶς, +καὶ +τῷ +πτωχῷ +εἴπητε +Σὺ +στῆθι +ἐκεῖ +ἢ +κάθου +ὑπὸ +τὸ +ὑποπόδιόν +μου, +οὐ +διεκρίθητε +ἐν +ἑαυτοῖς +καὶ +ἐγένεσθε +κριταὶ +διαλογισμῶν +πονηρῶν; +Ἀκούσατε, +ἀδελφοί +μου +ἀγαπητοί. +οὐχ +ὁ +Θεὸς +ἐξελέξατο +τοὺς +πτωχοὺς +τῷ +κόσμῳ +πλουσίους +ἐν +πίστει +καὶ +κληρονόμους +τῆς +βασιλείας +ἧς +ἐπηγγείλατο +τοῖς +ἀγαπῶσιν +αὐτόν; +δὲ +ὑμεῖς +ἠτιμάσατε +τὸν +πτωχόν. +οὐχ +οἱ +πλούσιοι +καταδυναστεύουσιν +ὑμῶν, +καὶ +αὐτοὶ +ἕλκουσιν +ὑμᾶς +εἰς +κριτήρια; +οὐκ +αὐτοὶ +βλασφημοῦσιν +τὸ +καλὸν +ὄνομα +τὸ +ἐπικληθὲν +ἐφ’ +ὑμᾶς; +εἰ +μέντοι +νόμον +βασιλικὸν +τελεῖτε +κατὰ +τὴν +γραφήν +Ἀγαπήσεις +τὸν +πλησίον +σου +ὡς +σεαυτόν, +καλῶς +ποιεῖτε· +δὲ +εἰ +προσωπολημπτεῖτε, +ἁμαρτίαν +ἐργάζεσθε, +ἐλεγχόμενοι +ὑπὸ +τοῦ +νόμου +ὡς +παραβάται. +γὰρ +ὅστις +ὅλον +τὸν +νόμον +τηρήσῃ, +δὲ +πταίσῃ +ἐν +ἑνί, +γέγονεν +πάντων +ἔνοχος. +γὰρ +ὁ +εἰπών +Μὴ +μοιχεύσῃς, +εἶπεν +καί +Μὴ +φονεύσῃς· +δὲ +εἰ +οὐ +μοιχεύεις, +δέ, +φονεύεις +γέγονας +παραβάτης +νόμου. +οὕτως +λαλεῖτε +καὶ +οὕτως +ποιεῖτε +ὡς +διὰ +νόμου +ἐλευθερίας +κρίνεσθαι. +μέλλοντες +γὰρ +ἡ +κρίσις +ἀνέλεος +τῷ +μὴ +ποιήσαντι +ἔλεος· +κατακαυχᾶται +ἔλεος +κρίσεως. +ἀδελφοί +μου, +Τί +τὸ +ὄφελος, +ἐὰν +πίστιν +ἔχειν +λέγῃ +τις +δὲ +ἔργα +μὴ +ἔχῃ; +μὴ +δύναται +ἡ +πίστις +σῶσαι +αὐτόν; +ἐὰν +ἀδελφὸς +ἢ +ἀδελφὴ +γυμνοὶ +ὑπάρχωσιν +καὶ +λειπόμενοι +τῆς +ἐφημέρου +τροφῆς, +δέ +εἴπῃ +αὐτοῖς +τις +ἐξ +ὑμῶν +Ὑπάγετε +ἐν +εἰρήνῃ, +θερμαίνεσθε +καὶ +χορτάζεσθε, +δὲ +μὴ +δῶτε +αὐτοῖς +τὰ +ἐπιτήδεια +τοῦ +σώματος, +τί +τὸ +ὄφελος; +οὕτως +καὶ +ἡ +πίστις, +ἐὰν +μὴ +ἔχῃ +ἔργα, +νεκρά +ἐστιν +καθ’ +ἑαυτήν. +ἀλλ’ +ἐρεῖ +τις +Σὺ +πίστιν +ἔχεις, +κἀγὼ +ἔργα +ἔχω· +δεῖξόν +μοι +τὴν +πίστιν +σου +χωρὶς +τῶν +ἔργων, +κἀγώ +σοι +δείξω +ἐκ +τῶν +ἔργων +μου +τὴν +πίστιν. +σὺ +πιστεύεις +ὅτι +εἷς +ἐστιν +ὁ +Θεός; +καλῶς +ποιεῖς· +καὶ +τὰ +δαιμόνια +πιστεύουσιν +καὶ +φρίσσουσιν. +δὲ +ὦ +ἄνθρωπε +κενέ, +θέλεις +γνῶναι, +ὅτι +ἡ +πίστις +χωρὶς +τῶν +ἔργων +ἀργή +ἐστιν; +Ἀβραὰμ +ὁ +πατὴρ +ἡμῶν +οὐκ +ἐξ +ἔργων +ἐδικαιώθη, +ἀνενέγκας +Ἰσαὰκ +τὸν +υἱὸν +αὐτοῦ +ἐπὶ +τὸ +θυσιαστήριον; +βλέπεις +ὅτι +ἡ +πίστις +συνήργει +τοῖς +ἔργοις +αὐτοῦ, +καὶ +ἐκ +τῶν +ἔργων +ἡ +πίστις +ἐτελειώθη, +καὶ +ἐπληρώθη +ἡ +γραφὴ +ἡ +λέγουσα +δὲ +Ἐπίστευσεν +Ἀβραὰμ +τῷ +Θεῷ, +καὶ +ἐλογίσθη +αὐτῷ +εἰς +δικαιοσύνην, +καὶ +φίλος +Θεοῦ +ἐκλήθη. +ὁρᾶτε +ὅτι +ἐξ +ἔργων +δικαιοῦται +ἄνθρωπος +καὶ +οὐκ +ἐκ +πίστεως +μόνον. +δὲ +ὁμοίως +καὶ +Ῥαὰβ +ἡ +πόρνη +οὐκ +ἐξ +ἔργων +ἐδικαιώθη, +ὑποδεξαμένη +τοὺς +ἀγγέλους +καὶ +ἑτέρᾳ +ὁδῷ +ἐκβαλοῦσα; +γὰρ +ὥσπερ +τὸ +σῶμα +χωρὶς +πνεύματος +νεκρόν +ἐστιν, +οὕτως +καὶ +ἡ +πίστις +χωρὶς +ἔργων +νεκρά +ἐστιν. +ἀδελφοί +μου, +Μὴ +πολλοὶ +διδάσκαλοι +γίνεσθε, +εἰδότες +ὅτι +μεῖζον +κρίμα +λημψόμεθα. +γὰρ +πολλὰ +πταίομεν +ἅπαντες· +εἴ +τις +ἐν +λόγῳ +οὐ +πταίει, +οὗτος +τέλειος +ἀνήρ, +δυνατὸς +χαλιναγωγῆσαι +καὶ +ὅλον +τὸ +σῶμα. +δὲ +εἰ +τῶν +ἵππων +τοὺς +χαλινοὺς +εἰς +τὰ +στόματα +βάλλομεν +εἰς +τὸ +πείθεσθαι +αὐτοὺς +ἡμῖν, +καὶ +ὅλον +τὸ +σῶμα +αὐτῶν +μετάγομεν. +ἰδοὺ +καὶ +τὰ +πλοῖα, +τηλικαῦτα +ὄντα +καὶ +ὑπὸ +ἀνέμων +σκληρῶν +ἐλαυνόμενα, +μετάγεται +ὑπὸ +ἐλαχίστου +πηδαλίου +ὅπου +ἡ +ὁρμὴ +τοῦ +εὐθύνοντος +βούλεται· +οὕτως +καὶ +ἡ +γλῶσσα +μικρὸν +μέλος +ἐστὶν +καὶ +μεγάλα +αὐχεῖ. +ἰδοὺ +ἡλίκον +πῦρ +ἡλίκην +ὕλην +ἀνάπτει· +καὶ +ἡ +γλῶσσα +πῦρ, +ὁ +κόσμος +τῆς +ἀδικίας, +ἡ +γλῶσσα +καθίσταται +ἐν +τοῖς +μέλεσιν +ἡμῶν, +ἡ +σπιλοῦσα +ὅλον +τὸ +σῶμα +καὶ +φλογίζουσα +τὸν +τροχὸν +τῆς +γενέσεως +καὶ +φλογιζομένη +ὑπὸ +τῆς +γεέννης. +γὰρ +πᾶσα +φύσις +τε +θηρίων +καὶ +πετεινῶν +τε +ἑρπετῶν +καὶ +ἐναλίων +δαμάζεται +καὶ +δεδάμασται +τῇ +φύσει +τῇ +ἀνθρωπίνῃ, +δὲ +τὴν +γλῶσσαν +δαμάσαι +δύναται +οὐδεὶς +ἀνθρώπων· +ἀκατάστατον +κακόν, +μεστὴ +ἰοῦ +θανατηφόρου. +ἐν +αὐτῇ +εὐλογοῦμεν +τὸν +Κύριον +καὶ +Πατέρα, +καὶ +ἐν +αὐτῇ +καταρώμεθα +τοὺς +ἀνθρώπους +τοὺς +καθ’ +ὁμοίωσιν +Θεοῦ +γεγονότας· +ἐκ +τοῦ +αὐτοῦ +στόματος +ἐξέρχεται +εὐλογία +καὶ +κατάρα. +ἀδελφοί +μου, +οὐ +χρή, +ταῦτα +οὕτως +γίνεσθαι. +μήτι +ἡ +πηγὴ +ἐκ +τῆς +αὐτῆς +ὀπῆς +βρύει +τὸ +γλυκὺ +καὶ +τὸ +πικρόν; +ἀδελφοί +μου, +μὴ +δύναται, +συκῆ +ἐλαίας +ποιῆσαι +ἢ +ἄμπελος +σῦκα; +οὔτε +ἁλυκὸν +ποιῆσαι +γλυκὺ +ὕδωρ. +Τίς +σοφὸς +καὶ +ἐπιστήμων +ἐν +ὑμῖν; +δειξάτω +ἐκ +τῆς +καλῆς +ἀναστροφῆς +τὰ +ἔργα +αὐτοῦ +ἐν +πραΰτητι +σοφίας. +δὲ +εἰ +ἔχετε +ζῆλον +πικρὸν +καὶ +ἐριθείαν +ἐν +τῇ +καρδίᾳ +ὑμῶν, +μὴ +κατακαυχᾶσθε +καὶ +ψεύδεσθε +κατὰ +τῆς +ἀληθείας. +οὐκ +ἔστιν +αὕτη +ἡ +σοφία +ἄνωθεν +κατερχομένη, +ἀλλὰ +ἐπίγειος, +ψυχική, +δαιμονιώδης· +γὰρ +ὅπου +ζῆλος +καὶ +ἐριθεία, +ἐκεῖ +ἀκαταστασία +καὶ +πᾶν +φαῦλον +πρᾶγμα. +δὲ +ἡ +ἄνωθεν +σοφία +πρῶτον +μὲν +ἁγνή +ἐστιν, +ἔπειτα +εἰρηνική, +ἐπιεικής, +εὐπειθής, +μεστὴ +ἐλέους +καὶ +καρπῶν +ἀγαθῶν, +ἀδιάκριτος, +ἀνυπόκριτος. +δὲ +καρπὸς +δικαιοσύνης +ἐν +εἰρήνῃ +σπείρεται +τοῖς +ποιοῦσιν +εἰρήνην. +Πόθεν +πόλεμοι +καὶ +πόθεν +μάχαι +ἐν +ὑμῖν; +οὐκ +ἐντεῦθεν, +ἐκ +τῶν +ἡδονῶν +ὑμῶν +τῶν +στρατευομένων +ἐν +τοῖς +μέλεσιν +ὑμῶν; +ἐπιθυμεῖτε, +καὶ +οὐκ +ἔχετε· +φονεύετε +καὶ +ζηλοῦτε, +καὶ +οὐ +δύνασθε +ἐπιτυχεῖν· +μάχεσθε +καὶ +πολεμεῖτε. +οὐκ +ἔχετε +διὰ +τὸ +μὴ +αἰτεῖσθαι +ὑμᾶς· +αἰτεῖτε +καὶ +οὐ +λαμβάνετε, +διότι +κακῶς +αἰτεῖσθε, +ἵνα +ἐν +ταῖς +ἡδοναῖς +ὑμῶν +δαπανήσητε. +μοιχαλίδες, +οὐκ +οἴδατε +ὅτι +ἡ +φιλία +τοῦ +κόσμου +ἔχθρα +τοῦ +Θεοῦ +ἐστιν; +οὖν +ἐὰν +ὃς +βουληθῇ +εἶναι +φίλος +τοῦ +κόσμου, +ἐχθρὸς +τοῦ +Θεοῦ +καθίσταται. +ἢ +δοκεῖτε +ὅτι +κενῶς +ἡ +γραφὴ +λέγει +Πρὸς +φθόνον +ἐπιποθεῖ +τὸ +πνεῦμα +ὃ +κατῴκισεν +ἐν +ἡμῖν; +δὲ +μείζονα +χάριν· +δίδωσιν +διὸ +λέγει +Ὁ +Θεὸς +ὑπερηφάνοις +ἀντιτάσσεται, +δὲ +ταπεινοῖς +δίδωσιν +χάριν. +οὖν +ὑποτάγητε +τῷ +Θεῷ· +δὲ +ἀντίστητε +τῷ +διαβόλῳ, +καὶ +φεύξεται +ἀφ’ +ὑμῶν· +ἐγγίσατε +τῷ +Θεῷ, +καὶ +ἐγγίσει +ὑμῖν. +καθαρίσατε +χεῖρας, +ἁμαρτωλοί, +καὶ +ἁγνίσατε +καρδίας, +δίψυχοι. +ταλαιπωρήσατε +καὶ +πενθήσατε +καὶ +κλαύσατε· +ὁ +γέλως +ὑμῶν +εἰς +πένθος +μετατραπήτω +καὶ +ἡ +χαρὰ +εἰς +κατήφειαν. +ταπεινώθητε +ἐνώπιον +Κυρίου, +καὶ +ὑψώσει +ὑμᾶς. +Μὴ +καταλαλεῖτε +ἀλλήλων, +ἀδελφοί. +ὁ +καταλαλῶν +ἀδελφοῦ +ἢ +κρίνων +τὸν +ἀδελφὸν +αὐτοῦ +καταλαλεῖ +νόμου +καὶ +κρίνει +νόμον· +δὲ +εἰ +νόμον +κρίνεις, +εἶ +οὐκ +ποιητὴς +νόμου +ἀλλὰ +κριτής. +εἷς +ἐστιν +νομοθέτης +καὶ +κριτής, +ὁ +δυνάμενος +σῶσαι +καὶ +ἀπολέσαι· +δὲ +σὺ +τίς +εἶ, +ὁ +κρίνων +τὸν +πλησίον; +Ἄγε +νῦν +οἱ +λέγοντες +Σήμερον +ἢ +αὔριον +πορευσόμεθα +εἰς +τήνδε +τὴν +πόλιν +καὶ +ποιήσομεν +ἐκεῖ +ἐνιαυτὸν +καὶ +ἐμπορευσόμεθα +καὶ +κερδήσομεν· +οἵτινες +οὐκ +ἐπίστασθε +τῆς +αὔριον +ποία +ἡ +ζωὴ +ὑμῶν· +γάρ +ἐστε +ἀτμὶς +ἡ +πρὸς +ὀλίγον +φαινομένη, +ἔπειτα +καὶ +ἀφανιζομένη· +ἀντὶ +τοῦ +λέγειν +ὑμᾶς +Ἐὰν +ὁ +Κύριος +θελήσῃ, +καὶ +ζήσομεν +καὶ +ποιήσομεν +τοῦτο +ἢ +ἐκεῖνο. +δὲ +νῦν +καυχᾶσθε +ἐν +ταῖς +ἀλαζονίαις +ὑμῶν· +πᾶσα +καύχησις +τοιαύτη +πονηρά +ἐστιν. +οὖν +εἰδότι +καλὸν +ποιεῖν +καὶ +μὴ +ποιοῦντι, +ἁμαρτία +αὐτῷ +ἐστιν. +Ἄγε +νῦν +οἱ +πλούσιοι, +κλαύσατε +ὀλολύζοντες +ἐπὶ +ταῖς +ταλαιπωρίαις +ὑμῶν +ταῖς +ἐπερχομέναις. +ὁ +πλοῦτος +ὑμῶν +σέσηπεν, +καὶ +τὰ +ἱμάτια +ὑμῶν +σητόβρωτα +γέγονεν, +ὁ +χρυσὸς +ὑμῶν +καὶ +ὁ +ἄργυρος +κατίωται, +καὶ +ὁ +ἰὸς +αὐτῶν +εἰς +μαρτύριον +ὑμῖν +ἔσται +καὶ +φάγεται +τὰς +σάρκας +ὑμῶν +ὡς +πῦρ. +ἐθησαυρίσατε +ἐν +ἐσχάταις +ἡμέραις. +ἰδοὺ +ὁ +μισθὸς +τῶν +ἐργατῶν +τῶν +ἀμησάντων +τὰς +χώρας +ὑμῶν +ὁ +ἀφυστερημένος +ἀφ’ +ὑμῶν +κράζει, +καὶ +αἱ +βοαὶ +τῶν +θερισάντων +εἰς +τὰ +ὦτα +Κυρίου +Σαβαὼθ +εἰσελήλυθαν. +ἐτρυφήσατε +ἐπὶ +τῆς +γῆς +καὶ +ἐσπαταλήσατε, +ἐθρέψατε +τὰς +καρδίας +ὑμῶν +ἐν +ἡμέρᾳ +σφαγῆς. +κατεδικάσατε, +ἐφονεύσατε +τὸν +δίκαιον· +οὐκ +ἀντιτάσσεται +ὑμῖν. +οὖν, +ἀδελφοί, +Μακροθυμήσατε +ἕως +τῆς +παρουσίας +τοῦ +Κυρίου. +ἰδοὺ +ὁ +γεωργὸς +ἐκδέχεται +τὸν +τίμιον +καρπὸν +τῆς +γῆς, +μακροθυμῶν +ἐπ’ +αὐτῷ +ἕως +λάβῃ +πρόϊμον +καὶ +ὄψιμον. +μακροθυμήσατε +καὶ +ὑμεῖς, +στηρίξατε +τὰς +καρδίας +ὑμῶν, +ὅτι +ἡ +παρουσία +τοῦ +Κυρίου +ἤγγικεν. +ἀδελφοί, +μὴ +στενάζετε, +κατ’ +ἀλλήλων, +ἵνα +μὴ +κριθῆτε· +ἰδοὺ +ὁ +κριτὴς +πρὸ +τῶν +θυρῶν +ἕστηκεν. +ἀδελφοί, +λάβετε, +ὑπόδειγμα +τῆς +κακοπαθείας +καὶ +τῆς +μακροθυμίας +τοὺς +προφήτας, +οἳ +ἐλάλησαν +ἐν +τῷ +ὀνόματι +Κυρίου. +ἰδοὺ +μακαρίζομεν +τοὺς +ὑπομείναντας· +τὴν +ὑπομονὴν +Ἰὼβ +ἠκούσατε, +καὶ +τὸ +τέλος +Κυρίου +εἴδετε, +ὅτι +ἐστιν +ὁ +Κύριος +πολύσπλαγχνός +καὶ +οἰκτίρμων. +δέ, +ἀδελφοί +μου, +Πρὸ +πάντων +μὴ +ὀμνύετε, +μήτε +τὸν +οὐρανὸν +μήτε +τὴν +γῆν +μήτε +ἄλλον +τινὰ +ὅρκον· +δὲ +ἤτω +ὑμῶν +τὸ +Ναὶ +ναί, +καὶ +τὸ +Οὒ +οὔ, +ἵνα +μὴ +ὑπὸ +κρίσιν +πέσητε. +Κακοπαθεῖ +τις +ἐν +ὑμῖν; +προσευχέσθω· +εὐθυμεῖ +τις; +ψαλλέτω. +ἀσθενεῖ +τις +ἐν +ὑμῖν; +προσκαλεσάσθω +τοὺς +πρεσβυτέρους +τῆς +ἐκκλησίας, +καὶ +προσευξάσθωσαν +ἐπ’ +αὐτὸν +ἀλείψαντες +ἐλαίῳ +ἐν +τῷ +ὀνόματι +τοῦ +Κυρίου. +καὶ +ἡ +εὐχὴ +τῆς +πίστεως +σώσει +τὸν +κάμνοντα, +καὶ +ἐγερεῖ +αὐτὸν +ὁ +Κύριος· +κἂν +ἁμαρτίας +ᾖ +πεποιηκώς, +ἀφεθήσεται +αὐτῷ. +οὖν +ἐξομολογεῖσθε +ἀλλήλοις +τὰς +ἁμαρτίας, +καὶ +προσεύχεσθε +ὑπὲρ +ἀλλήλων, +ὅπως +ἰαθῆτε. +πολὺ +ἰσχύει +δέησις +δικαίου +ἐνεργουμένη. +Ἠλείας +ἦν +ἄνθρωπος +ὁμοιοπαθὴς +ἡμῖν, +καὶ +προσευχῇ +προσηύξατο +τοῦ +μὴ +βρέξαι, +καὶ +οὐκ +ἔβρεξεν +ἐπὶ +τῆς +γῆς +ἐνιαυτοὺς +τρεῖς +καὶ +μῆνας +ἕξ· +καὶ +πάλιν +προσηύξατο, +καὶ +ὁ +οὐρανὸς +ὑετὸν +ἔδωκεν +καὶ +ἡ +γῆ +ἐβλάστησεν +τὸν +καρπὸν +αὐτῆς. +Ἀδελφοί +μου, +ἐάν +τις +ἐν +ὑμῖν +πλανηθῇ +ἀπὸ +τῆς +ἀληθείας +καὶ +ἐπιστρέψῃ +τις +αὐτόν, +γινώσκετε +ὅτι +ὁ +ἐπιστρέψας +ἁμαρτωλὸν +ἐκ +πλάνης +ὁδοῦ +αὐτοῦ +σώσει +ψυχὴν +αὐτοῦ +ἐκ +θανάτου +καὶ +καλύψει +πλῆθος +ἁμαρτιῶν. +Πέτρος +ἀπόστολος +Ἰησοῦ +Χριστοῦ +ἐκλεκτοῖς +παρεπιδήμοις +Διασπορᾶς +Πόντου, +Γαλατίας, +Καππαδοκίας, +Ἀσίας, +καὶ +Βιθυνίας, +κατὰ +πρόγνωσιν +Θεοῦ +Πατρός, +ἐν +ἁγιασμῷ +Πνεύματος, +εἰς +ὑπακοὴν +καὶ +ῥαντισμὸν +αἵματος +Ἰησοῦ +Χριστοῦ· +χάρις +καὶ +εἰρήνη +ὑμῖν +πληθυνθείη. +Εὐλογητὸς +ὁ +Θεὸς +καὶ +Πατὴρ +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ὁ +κατὰ +τὸ +πολὺ +αὐτοῦ +ἔλεος +ἀναγεννήσας +ἡμᾶς +εἰς +ἐλπίδα +ζῶσαν +δι’ +ἀναστάσεως +Ἰησοῦ +Χριστοῦ +ἐκ +νεκρῶν, +εἰς +κληρονομίαν +ἄφθαρτον +καὶ +ἀμίαντον +καὶ +ἀμάραντον, +τετηρημένην +ἐν +οὐρανοῖς +εἰς +ὑμᾶς +τοὺς +ἐν +δυνάμει +Θεοῦ +φρουρουμένους +διὰ +πίστεως +εἰς +σωτηρίαν +ἑτοίμην +ἀποκαλυφθῆναι +ἐν +καιρῷ +ἐσχάτῳ. +ἐν +ᾧ +ἀγαλλιᾶσθε, +εἰ +ὀλίγον +ἄρτι +δέον +λυπηθέντες +ἐν +ποικίλοις +πειρασμοῖς, +ἵνα +τὸ +δοκίμιον +ὑμῶν +τῆς +πίστεως +πολυτιμότερον +χρυσίου +τοῦ +ἀπολλυμένου, +δὲ +διὰ +πυρὸς +δοκιμαζομένου, +εὑρεθῇ +εἰς +ἔπαινον +καὶ +δόξαν +καὶ +τιμὴν +ἐν +ἀποκαλύψει +Ἰησοῦ +Χριστοῦ· +ὃν +οὐκ +ἰδόντες +ἀγαπᾶτε, +δὲ +εἰς +ὃν +ἄρτι +μὴ +ὁρῶντες +πιστεύοντες +ἀγαλλιᾶσθε +χαρᾷ +ἀνεκλαλήτῳ +καὶ +δεδοξασμένῃ, +κομιζόμενοι +τὸ +τέλος +τῆς +πίστεως +σωτηρίαν +ψυχῶν. +περὶ +ἧς +σωτηρίας +ἐξεζήτησαν +καὶ +ἐξηραύνησαν +προφῆται +οἱ +περὶ +τῆς +εἰς +ὑμᾶς +χάριτος +προφητεύσαντες, +ἐραυνῶντες +εἰς +τίνα +ἢ +ποῖον +καιρὸν +ἐδήλου +τὸ +ἐν +αὐτοῖς +Πνεῦμα +Χριστοῦ +προμαρτυρόμενον +τὰ +εἰς +Χριστὸν +παθήματα +καὶ +τὰς +μετὰ +ταῦτα +δόξας· +οἷς +ἀπεκαλύφθη +ὅτι +οὐχ +ἑαυτοῖς +δὲ +ὑμῖν +διηκόνουν +αὐτά, +ἃ +νῦν +ἀνηγγέλη +ὑμῖν +διὰ +τῶν +εὐαγγελισαμένων +ὑμᾶς +ἐν +Πνεύματι +Ἁγίῳ +ἀποσταλέντι +ἀπ’ +οὐρανοῦ, +εἰς +ἃ +παρακύψαι. +ἐπιθυμοῦσιν +ἄγγελοι +Διὸ +ἀναζωσάμενοι +τὰς +ὀσφύας +τῆς +διανοίας +ὑμῶν, +νήφοντες, +τελείως, +ἐλπίσατε +ἐπὶ +τὴν +φερομένην +ὑμῖν +χάριν +ἐν +ἀποκαλύψει +Ἰησοῦ +Χριστοῦ. +ὡς +τέκνα +ὑπακοῆς, +μὴ +συσχηματιζόμενοι +ταῖς +πρότερον +ἐν +τῇ +ἀγνοίᾳ +ὑμῶν +ἐπιθυμίαις, +ἀλλὰ +κατὰ +τὸν +καλέσαντα +ὑμᾶς +ἅγιον +καὶ +αὐτοὶ +ἅγιοι +ἐν +πάσῃ +ἀναστροφῇ +γενήθητε, +διότι +γέγραπται +Ἅγιοι +ἔσεσθε, +ὅτι +ἐγὼ +ἅγιος. +καὶ +εἰ +Πατέρα +ἐπικαλεῖσθε +τὸν +ἀπροσωπολήμπτως +κρίνοντα +κατὰ +τὸ +ἑκάστου +ἔργον, +ἐν +φόβῳ +τὸν +τῆς +παροικίας +ὑμῶν +χρόνον +ἀναστράφητε, +εἰδότες +ὅτι +οὐ +φθαρτοῖς, +ἀργυρίῳ +ἢ +χρυσίῳ, +ἐλυτρώθητε +ἐκ +τῆς +ματαίας +ὑμῶν +ἀναστροφῆς +πατροπαραδότου, +ἀλλὰ +τιμίῳ +αἵματι +ὡς +ἀμνοῦ +ἀμώμου +καὶ +ἀσπίλου +Χριστοῦ, +μὲν +προεγνωσμένου +πρὸ +καταβολῆς +κόσμου, +δὲ +φανερωθέντος +ἐπ’ +ἐσχάτου +τῶν +χρόνων +δι’ +ὑμᾶς +τοὺς +δι’ +αὐτοῦ +πιστοὺς +εἰς +Θεὸν +τὸν +ἐγείραντα +αὐτὸν +ἐκ +νεκρῶν +καὶ +δόξαν +αὐτῷ +δόντα, +ὥστε +τὴν +πίστιν +ὑμῶν +καὶ +ἐλπίδα +εἶναι +εἰς +Θεόν. +Τὰς +ψυχὰς +ὑμῶν +ἡγνικότες +ἐν +τῇ +ὑπακοῇ +τῆς +ἀληθείας +εἰς +φιλαδελφίαν +ἀνυπόκριτον, +ἐκ +καρδίας +ἀλλήλους +ἀγαπήσατε +ἐκτενῶς, +ἀναγεγεννημένοι +οὐκ +ἐκ +σπορᾶς +φθαρτῆς +ἀλλὰ +ἀφθάρτου, +διὰ +λόγου +Θεοῦ +ζῶντος +καὶ +μένοντος. +διότι +πᾶσα +σὰρξ +ὡς +χόρτος, +καὶ +πᾶσα +δόξα +αὐτῆς +ὡς +ἄνθος +χόρτου· +ἐξηράνθη +ὁ +χόρτος, +καὶ +τὸ +ἄνθος +ἐξέπεσεν· +δὲ +τὸ +ῥῆμα +Κυρίου +μένει +εἰς +τὸν +αἰῶνα. +δέ +τοῦτο +ἐστιν +τὸ +ῥῆμα +τὸ +εὐαγγελισθὲν +εἰς +ὑμᾶς. +οὖν +Ἀποθέμενοι +πᾶσαν +κακίαν +καὶ +πάντα +δόλον +καὶ +ὑποκρίσεις +καὶ +φθόνους +καὶ +πάσας +καταλαλιάς, +ὡς +ἀρτιγέννητα +βρέφη +τὸ +λογικὸν +ἄδολον +γάλα +ἐπιποθήσατε, +ἵνα +ἐν +αὐτῷ +αὐξηθῆτε +εἰς +σωτηρίαν, +εἰ +ἐγεύσασθε +ὅτι +χρηστὸς +ὁ +Κύριος. +προσερχόμενοι, +πρὸς +ὃν +λίθον +ζῶντα, +μὲν +ὑπὸ +ἀνθρώπων +ἀποδεδοκιμασμένον +δὲ +παρὰ +Θεῷ +ἐκλεκτὸν +ἔντιμον, +καὶ +αὐτοὶ +ὡς +λίθοι +ζῶντες +οἰκοδομεῖσθε +οἶκος +πνευματικὸς +εἰς +ἱεράτευμα +ἅγιον, +ἀνενέγκαι +πνευματικὰς +θυσίας +εὐπροσδέκτους +Θεῷ +διὰ +Ἰησοῦ +Χριστοῦ. +διότι +περιέχει +ἐν +γραφῇ +Ἰδοὺ +τίθημι +ἐν +Σιὼν +λίθον +ἐκλεκτὸν +ἀκρογωνιαῖον +ἔντιμον, +καὶ +ὁ +πιστεύων +ἐπ’ +αὐτῷ +οὐ +μὴ +καταισχυνθῇ. +οὖν +ἡ +τιμὴ +ὑμῖν +τοῖς +πιστεύουσιν· +δὲ +ἀπιστοῦσιν +λίθος +ὃν +ἀπεδοκίμασαν +οἱ +οἰκοδομοῦντες, +οὗτος +ἐγενήθη +εἰς +κεφαλὴν +γωνίας +καὶ +λίθος +προσκόμματος +καὶ +πέτρα +σκανδάλου· +οἳ +προσκόπτουσιν +τῷ +λόγῳ +ἀπειθοῦντες, +εἰς +ὃ +καὶ +ἐτέθησαν· +δὲ +ὑμεῖς +γένος +ἐκλεκτόν, +βασίλειον +ἱεράτευμα, +ἔθνος +ἅγιον, +λαὸς +εἰς +περιποίησιν, +ὅπως +ἐξαγγείλητε +τὰς +ἀρετὰς +τοῦ +ἐκ +σκότους +ὑμᾶς +καλέσαντος +εἰς +τὸ +θαυμαστὸν +αὐτοῦ +φῶς· +οἵ +ποτε +οὐ +λαὸς, +δὲ +νῦν +λαὸς +Θεοῦ, +οἱ +οὐκ +ἠλεημένοι, +δὲ +νῦν +ἐλεηθέντες. +Ἀγαπητοί, +παρακαλῶ +ὡς +παροίκους +καὶ +παρεπιδήμους +ἀπέχεσθαι +τῶν +σαρκικῶν +ἐπιθυμιῶν, +αἵτινες +στρατεύονται +κατὰ +τῆς +ψυχῆς· +τὴν +ἀναστροφὴν +ὑμῶν +ἐν +τοῖς +ἔθνεσιν +ἔχοντες +καλήν, +ἵνα +ἐν +ᾧ +καταλαλοῦσιν +ὑμῶν +ὡς +κακοποιῶν, +ἐκ +τῶν +καλῶν +ἔργων +ἐποπτεύοντες +δοξάσωσιν +τὸν +Θεὸν +ἐν +ἡμέρᾳ +ἐπισκοπῆς. +Ὑποτάγητε +διὰ +τὸν +Κύριον· +πάσῃ +ἀνθρωπίνῃ +κτίσει +εἴτε +βασιλεῖ +ὡς +ὑπερέχοντι, +εἴτε +ἡγεμόσιν +ὡς +δι’ +αὐτοῦ +πεμπομένοις +εἰς +ἐκδίκησιν +κακοποιῶν +δὲ +ἔπαινον +ἀγαθοποιῶν· +ὅτι +οὕτως +ἐστὶν +τὸ +θέλημα +τοῦ +Θεοῦ, +ἀγαθοποιοῦντας +φιμοῦν +τὴν +τῶν +ἀφρόνων +ἀνθρώπων +ἀγνωσίαν· +ὡς +ἐλεύθεροι, +καὶ +μὴ +ὡς +ἔχοντες +ἐπικάλυμμα +τῆς +κακίας +τὴν +ἐλευθερίαν, +ἀλλ’ +ὡς +Θεοῦ +δοῦλοι. +πάντας +τιμήσατε, +τὴν +ἀδελφότητα +ἀγαπᾶτε, +τὸν +Θεὸν +φοβεῖσθε, +τὸν +βασιλέα +τιμᾶτε. +Οἱ +οἰκέται, +ὑποτασσόμενοι +ἐν +παντὶ +φόβῳ +τοῖς +δεσπόταις, +οὐ +μόνον +τοῖς +ἀγαθοῖς +καὶ +ἐπιεικέσιν +ἀλλὰ +καὶ +τοῖς +σκολιοῖς. +γὰρ +τοῦτο +χάρις +εἰ +διὰ +συνείδησιν +Θεοῦ +ὑποφέρει +τις +λύπας +πάσχων +ἀδίκως. +γὰρ +ποῖον +κλέος +εἰ +ἁμαρτάνοντες +καὶ +κολαφιζόμενοι +ὑπομενεῖτε; +ἀλλ’ +εἰ +ἀγαθοποιοῦντες +καὶ +πάσχοντες +ὑπομενεῖτε, +τοῦτο +χάρις +παρὰ +Θεῷ. +γὰρ +εἰς +τοῦτο +ἐκλήθητε, +ὅτι +καὶ +Χριστὸς +ἔπαθεν +ὑπὲρ +ὑμῶν, +ὑμῖν +ὑπολιμπάνων +ὑπογραμμὸν +ἵνα +ἐπακολουθήσητε +τοῖς +ἴχνεσιν +αὐτοῦ· +ὃς +ἁμαρτίαν +οὐκ +ἐποίησεν +οὐδὲ +εὑρέθη +δόλος +ἐν +τῷ +στόματι +αὐτοῦ· +ὃς +λοιδορούμενος +οὐκ +ἀντελοιδόρει, +πάσχων +οὐκ +ἠπείλει, +δὲ +παρεδίδου +τῷ +κρίνοντι +δικαίως· +ὃς +αὐτὸς +τὰς +ἁμαρτίας +ἡμῶν +ἀνήνεγκεν +ἐν +τῷ +σώματι +αὐτοῦ +ἐπὶ +τὸ +ξύλον, +ἵνα +ταῖς +ἁμαρτίαις +ἀπογενόμενοι +τῇ +δικαιοσύνῃ +ζήσωμεν· +οὗ +τῷ +μώλωπι +ἰάθητε. +γὰρ +ἦτε +ὡς +πρόβατα +πλανώμενοι, +ἀλλὰ +ἐπεστράφητε +νῦν +ἐπὶ +τὸν +Ποιμένα +καὶ +Ἐπίσκοπον +τῶν +ψυχῶν +ὑμῶν. +γυναῖκες, +Ὁμοίως +ὑποτασσόμεναι +τοῖς +ἰδίοις +ἀνδράσιν, +ἵνα +εἴ +καὶ +τινες +ἀπειθοῦσιν +τῷ +λόγῳ, +διὰ +τῆς +τῶν +γυναικῶν +ἀναστροφῆς +ἄνευ +λόγου +κερδηθήσονται, +ἐποπτεύσαντες +τὴν +ἐν +φόβῳ +ἁγνὴν +ἀναστροφὴν +ὑμῶν. +ὧν +ἔστω +οὐχ +ὁ +ἔξωθεν +ἐμπλοκῆς +τριχῶν +καὶ +περιθέσεως +χρυσίων +ἢ +ἐνδύσεως +ἱματίων +κόσμος, +ἀλλ’ +ὁ +κρυπτὸς +τῆς +καρδίας +ἄνθρωπος +ἐν +τῷ +ἀφθάρτῳ +τοῦ +πραέως +καὶ +ἡσυχίου +πνεύματος, +ὅ +ἐστιν +ἐνώπιον +τοῦ +Θεοῦ +πολυτελές. +γάρ +οὕτως +ποτε +καὶ +αἱ +ἅγιαι +γυναῖκες +αἱ +ἐλπίζουσαι +εἰς +Θεὸν +ἐκόσμουν +ἑαυτάς, +ὑποτασσόμεναι +τοῖς +ἰδίοις +ἀνδράσιν, +ὡς +Σάρρα +ὑπήκουσεν +τῷ +Ἀβραάμ, +κύριον +αὐτὸν +καλοῦσα· +ἧς +τέκνα +ἐγενήθητε +ἀγαθοποιοῦσαι +καὶ +μὴ +φοβούμεναι +μηδεμίαν +πτόησιν. +Οἱ +ἄνδρες +ὁμοίως +συνοικοῦντες +κατὰ +γνῶσιν +ὡς +ἀσθενεστέρῳ +σκεύει +τῷ +γυναικείῳ, +ἀπονέμοντες +τιμήν +ὡς +καὶ +συνκληρονόμοις +χάριτος +ζωῆς, +εἰς +τὸ +μὴ +ἐνκόπτεσθαι +τὰς +προσευχὰς +ὑμῶν. +δὲ +Τὸ +τέλος +πάντες +ὁμόφρονες, +συμπαθεῖς, +φιλάδελφοι, +εὔσπλαγχνοι, +ταπεινόφρονες, +μὴ +ἀποδιδόντες +κακὸν +ἀντὶ +κακοῦ +ἢ +λοιδορίαν +ἀντὶ +λοιδορίας, +δὲ +τοὐναντίον +εὐλογοῦντες, +ὅτι +εἰς +τοῦτο +ἐκλήθητε +ἵνα +εὐλογίαν +κληρονομήσητε. +γὰρ +ὁ +θέλων +ζωὴν +ἀγαπᾶν +καὶ +ἰδεῖν +ἡμέρας +ἀγαθὰς +παυσάτω +τὴν +γλῶσσαν +ἀπὸ +κακοῦ +καὶ +χείλη +τοῦ +μὴ +λαλῆσαι +δόλον, +δὲ +ἐκκλινάτω +ἀπὸ +κακοῦ +καὶ +ποιησάτω +ἀγαθόν, +ζητησάτω +εἰρήνην +καὶ +διωξάτω +αὐτήν· +ὅτι +ὀφθαλμοὶ +Κυρίου +ἐπὶ +δικαίους +καὶ +ὦτα +αὐτοῦ +εἰς +δέησιν +αὐτῶν, +δὲ +πρόσωπον +Κυρίου +ἐπὶ +ποιοῦντας +κακά. +Καὶ +τίς +ὁ +κακώσων +ὑμᾶς +ἐὰν +τοῦ +ἀγαθοῦ +ζηλωταὶ +γένησθε; +ἀλλ’ +εἰ +καὶ +πάσχοιτε +διὰ +δικαιοσύνην, +μακάριοι. +δὲ +τὸν +φόβον +αὐτῶν +μὴ +φοβηθῆτε +μηδὲ +ταραχθῆτε, +δὲ +Κύριον +τὸν +Χριστὸν +ἁγιάσατε +ἐν +ταῖς +καρδίαις +ὑμῶν, +ἕτοιμοι +ἀεὶ +πρὸς +ἀπολογίαν +παντὶ +τῷ +αἰτοῦντι +ὑμᾶς +λόγον +περὶ +τῆς +ἐν +ὑμῖν +ἐλπίδος, +ἀλλὰ +μετὰ +πραΰτητος +καὶ +φόβου, +συνείδησιν +ἀγαθήν, +ἔχοντες +ἵνα +ἐν +ᾧ +καταλαλεῖσθε +καταισχυνθῶσιν +οἱ +ἐπηρεάζοντες +ὑμῶν +τὴν +ἀγαθὴν +ἐν +Χριστῷ +ἀναστροφήν. +γὰρ +κρεῖττον +ἀγαθοποιοῦντας, +εἰ +θέλοι +τὸ +θέλημα +τοῦ +Θεοῦ, +πάσχειν +ἢ +κακοποιοῦντας. +ὅτι +καὶ +Χριστὸς +ἅπαξ +περὶ +ἁμαρτιῶν +ἀπέθανεν, +δίκαιος +ὑπὲρ +ἀδίκων, +ἵνα +ὑμᾶς +προσαγάγῃ +τῷ +Θεῷ, +μὲν +θανατωθεὶς +σαρκὶ +δὲ +ζωοποιηθεὶς +πνεύματι· +ἐν +ᾧ +πορευθεὶς +ἐκήρυξεν, +καὶ +τοῖς +ἐν +φυλακῇ +πνεύμασιν +ἀπειθήσασίν +ποτε +ὅτε +ἀπεξεδέχετο +ἡ +τοῦ +Θεοῦ +μακροθυμία +ἐν +ἡμέραις +Νῶε +κατασκευαζομένης +κιβωτοῦ, +εἰς +ἣν +ὀλίγοι, +τοῦτ’ +ἔστιν +ὀκτὼ +ψυχαί, +διεσώθησαν +δι’ +ὕδατος. +ὃ +καὶ +ὑμᾶς +νῦν +σῴζει +ἀντίτυπον +βάπτισμα, +οὐ +σαρκὸς +ἀπόθεσις +ῥύπου +ἀλλὰ +συνειδήσεως +ἀγαθῆς +ἐπερώτημα +εἰς +Θεόν, +δι’ +ἀναστάσεως +Ἰησοῦ +Χριστοῦ, +ὅς +ἐστιν +ἐν +δεξιᾷ +Θεοῦ, +πορευθεὶς +εἰς +οὐρανόν, +ὑποταγέντων +αὐτῷ +ἀγγέλων +καὶ +ἐξουσιῶν +καὶ +δυνάμεων. +οὖν +Χριστοῦ +παθόντος +σαρκὶ +καὶ +ὑμεῖς +τὴν +αὐτὴν +ἔννοιαν +ὁπλίσασθε, +εἰς +τὸ +μηκέτι +ἀνθρώπων +ἐπιθυμίαις +ἀλλὰ +θελήματι +Θεοῦ +τὸν +ἐπίλοιπον +ἐν +σαρκὶ +χρόνον. +βιῶσαι +ὅτι +ὁ +παθὼν +σαρκὶ +πέπαυται +ἁμαρτίας, +γὰρ +ἀρκετὸς +ὁ +παρεληλυθὼς +χρόνος +τὸ +βούλημα +τῶν +ἐθνῶν +κατειργάσθαι, +πεπορευμένους +ἐν +ἀσελγείαις, +ἐπιθυμίαις, +οἰνοφλυγίαις, +κώμοις, +πότοις, +καὶ +ἀθεμίτοις +εἰδωλολατρείαις. +ἐν +ᾧ +ξενίζονται +μὴ +συντρεχόντων +ὑμῶν +εἰς +τὴν +αὐτὴν +τῆς +ἀσωτίας +ἀνάχυσιν, +βλασφημοῦντες· +οἳ +ἀποδώσουσιν +λόγον +τῷ +ἑτοίμως +ἔχοντι +κρῖναι +ζῶντας +καὶ +νεκρούς. +γὰρ +εἰς +τοῦτο +καὶ +νεκροῖς +εὐηγγελίσθη, +ἵνα +μὲν +κριθῶσι +κατὰ +ἀνθρώπους +σαρκί, +δὲ +ζῶσι +κατὰ +Θεὸν +πνεύματι. +δὲ +Πάντων +τὸ +τέλος +ἤγγικεν. +οὖν +σωφρονήσατε +καὶ +νήψατε +εἰς +προσευχάς· +πρὸ +πάντων +τὴν +εἰς +ἑαυτοὺς +ἀγάπην +ἐκτενῆ +ἔχοντες, +ὅτι +ἀγάπη +καλύπτει +πλῆθος +ἁμαρτιῶν· +φιλόξενοι +εἰς +ἀλλήλους +ἄνευ +γογγυσμοῦ· +ἕκαστος +καθὼς +ἔλαβεν +χάρισμα, +εἰς +ἑαυτοὺς +αὐτὸ +διακονοῦντες +ὡς +καλοὶ +οἰκονόμοι +ποικίλης +χάριτος +Θεοῦ· +εἴ +τις +λαλεῖ, +ὡς +λόγια +Θεοῦ· +εἴ +τις +διακονεῖ, +ὡς +ἐξ +ἰσχύος +ἧς +χορηγεῖ +ὁ +Θεός· +ἵνα +ἐν +πᾶσιν +δοξάζηται +ὁ +Θεὸς +διὰ +Ἰησοῦ +Χριστοῦ, +ᾧ +ἐστιν +ἡ +δόξα +καὶ +τὸ +κράτος +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +Ἀγαπητοί, +μὴ +ξενίζεσθε +τῇ +ἐν +ὑμῖν +πυρώσει +πρὸς +πειρασμὸν +ὑμῖν +γινομένῃ, +ὡς +ξένου +ὑμῖν +συμβαίνοντος, +ἀλλὰ +καθὸ +κοινωνεῖτε +τοῖς +τοῦ +Χριστοῦ +παθήμασιν +χαίρετε, +ἵνα +καὶ +ἐν +τῇ +ἀποκαλύψει +τῆς +δόξης +αὐτοῦ +χαρῆτε +ἀγαλλιώμενοι. +εἰ +ὀνειδίζεσθε +ἐν +ὀνόματι +Χριστοῦ, +μακάριοι, +ὅτι +τὸ +τῆς +δόξης +καὶ +τὸ +τοῦ +Θεοῦ +Πνεῦμα +ἐφ’ +ὑμᾶς +ἀναπαύεται. +γάρ +μὴ +τις +ὑμῶν +πασχέτω +ὡς +φονεὺς +ἢ +κλέπτης +ἢ +κακοποιὸς +ἢ +ὡς +ἀλλοτριεπίσκοπος· +δὲ +εἰ +ὡς +Χριστιανός, +μὴ +αἰσχυνέσθω, +δὲ +δοξαζέτω +τὸν +Θεὸν +ἐν +τῷ +ὀνόματι +τούτῳ. +ὅτι +ὁ +καιρὸς +τοῦ +ἄρξασθαι +τὸ +κρίμα +ἀπὸ +τοῦ +οἴκου +τοῦ +Θεοῦ· +δὲ +εἰ +πρῶτον +ἀφ’ +ἡμῶν, +τί +τὸ +τέλος +τῶν +ἀπειθούντων +τῷ +τοῦ +Θεοῦ +εὐαγγελίῳ; +καὶ +εἰ +ὁ +δίκαιος +μόλις +σώζεται, +ὁ +ἀσεβὴς +καὶ +ἁμαρτωλὸς +ποῦ +φανεῖται; +ὥστε +καὶ +οἱ +πάσχοντες +κατὰ +τὸ +θέλημα +τοῦ +Θεοῦ +πιστῷ +Κτίστῃ +παρατιθέσθωσαν +τὰς +ψυχὰς +αὐτῶν +ἐν +ἀγαθοποιΐᾳ. +οὖν +Πρεσβυτέρους +ἐν +ὑμῖν +παρακαλῶ +ὁ +συνπρεσβύτερος +καὶ +μάρτυς +τῶν +τοῦ +Χριστοῦ +παθημάτων, +καὶ +ὁ +τῆς +μελλούσης +ἀποκαλύπτεσθαι +δόξης +κοινωνός, +ποιμάνατε +τὸ +ἐν +ὑμῖν +ποίμνιον +τοῦ +Θεοῦ, +μὴ +ἀναγκαστῶς +ἀλλὰ +ἑκουσίως +κατὰ +Θεόν, +μηδὲ +αἰσχροκερδῶς +ἀλλὰ +προθύμως, +μηδ’ +ὡς +κατακυριεύοντες +τῶν +κλήρων +ἀλλὰ +γινόμενοι +τύποι +τοῦ +ποιμνίου· +καὶ +φανερωθέντος +τοῦ +Ἀρχιποίμενος +κομιεῖσθε +τὸν +ἀμαράντινον +τῆς +δόξης +στέφανον. +νεώτεροι, +Ὁμοίως, +ὑποτάγητε +πρεσβυτέροις· +δὲ +πάντες +ἀλλήλοις +τὴν +ταπεινοφροσύνην +ἐγκομβώσασθε, +ὅτι +ὁ +Θεὸς +ὑπερηφάνοις +ἀντιτάσσεται, +δὲ +ταπεινοῖς +δίδωσιν +χάριν. +οὖν +Ταπεινώθητε +ὑπὸ +τὴν +κραταιὰν +χεῖρα +τοῦ +Θεοῦ, +ἵνα +ὑμᾶς +ὑψώσῃ +ἐν +καιρῷ, +πᾶσαν +τὴν +μέριμναν +ὑμῶν +ἐπιρίψαντες +ἐπ’ +αὐτόν, +ὅτι +αὐτῷ +μέλει +περὶ +ὑμῶν. +Νήψατε, +γρηγορήσατε. +ὁ +ἀντίδικος +ὑμῶν +διάβολος +ὡς +λέων +ὠρυόμενος +περιπατεῖ +ζητῶν +τινα +καταπιεῖν· +ᾧ +ἀντίστητε +στερεοὶ +τῇ +πίστει, +εἰδότες +τὰ +αὐτὰ +τῶν +παθημάτων +τῇ +ἐν +τῷ +κόσμῳ +ὑμῶν +ἀδελφότητι +ἐπιτελεῖσθαι. +δὲ +Ὁ +Θεὸς +πάσης +χάριτος, +ὁ +καλέσας +ὑμᾶς +εἰς +τὴν +αἰώνιον +αὐτοῦ +δόξαν +ἐν +Χριστῷ, +ὀλίγον +παθόντας +αὐτὸς +καταρτίσει, +στηρίξει, +σθενώσει, +θεμελιώσει. +αὐτῷ +τὸ +κράτος +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +ὑμῖν +Διὰ +Σιλουανοῦ +τοῦ +πιστοῦ +ἀδελφοῦ, +ὡς +λογίζομαι, +δι’ +ὀλίγων +ἔγραψα, +παρακαλῶν +καὶ +ἐπιμαρτυρῶν +ταύτην +εἶναι +ἀληθῆ +χάριν +τοῦ +Θεοῦ, +εἰς +ἣν +στῆτε. +Ἀσπάζεται +ὑμᾶς +ἡ +ἐν +Βαβυλῶνι +συνεκλεκτὴ +καὶ +Μάρκος +ὁ +υἱός +μου. +ἀσπάσασθε +ἀλλήλους +ἐν +φιλήματι +ἀγάπης. +Εἰρήνη +ὑμῖν +πᾶσιν +τοῖς +ἐν +Χριστῷ. +Συμεὼν +Πέτρος +δοῦλος +καὶ +ἀπόστολος +Ἰησοῦ +Χριστοῦ +τοῖς +ἡμῖν +λαχοῦσιν +ἰσότιμον +πίστιν +ἐν +δικαιοσύνῃ +τοῦ +Θεοῦ +ἡμῶν +καὶ +Σωτῆρος +Ἰησοῦ +Χριστοῦ· +χάρις +καὶ +εἰρήνη +ὑμῖν +πληθυνθείη +ἐν +ἐπιγνώσει +τοῦ +Θεοῦ +καὶ +Ἰησοῦ +τοῦ +Κυρίου +ἡμῶν. +Ὡς +ἡμῖν +τῆς +θείας +δυνάμεως +αὐτοῦ +τὰ +πάντα +τὰ +πρὸς +ζωὴν +καὶ +εὐσέβειαν +δεδωρημένης +διὰ +τῆς +ἐπιγνώσεως +τοῦ +καλέσαντος +ἡμᾶς +ἰδίᾳ +δόξῃ +καὶ +ἀρετῇ, +δι’ +ὧν +τὰ +τίμια +καὶ +μέγιστα +ἐπαγγέλματα +ἡμῖν +δεδώρηται, +ἵνα +διὰ +τούτων +γένησθε +κοινωνοὶ +θείας +φύσεως, +ἀποφυγόντες +τῆς +ἐν +τῷ +κόσμῳ +ἐν +ἐπιθυμίᾳ +φθορᾶς. +δὲ +καὶ +αὐτὸ +τοῦτο +σπουδὴν +πᾶσαν +παρεισενέγκαντες +ἐπιχορηγήσατε +ἐν +τῇ +πίστει +ὑμῶν +τὴν +ἀρετήν, +δὲ +ἐν +τῇ +ἀρετῇ +τὴν +γνῶσιν, +δὲ +ἐν +τῇ +γνώσει +τὴν +ἐγκράτειαν, +δὲ +ἐν +τῇ +ἐγκρατείᾳ +τὴν +ὑπομονήν, +δὲ +ἐν +τῇ +ὑπομονῇ +τὴν +εὐσέβειαν, +δὲ +ἐν +τῇ +εὐσεβείᾳ +τὴν +φιλαδελφίαν, +δὲ +ἐν +τῇ +φιλαδελφίᾳ +τὴν +ἀγάπην. +γὰρ +ταῦτα +ὑμῖν +ὑπάρχοντα +καὶ +πλεονάζοντα +οὐκ +ἀργοὺς +οὐδὲ +ἀκάρπους +καθίστησιν +εἰς +τὴν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +ἐπίγνωσιν· +γὰρ +ᾧ +μὴ +πάρεστιν +ταῦτα, +τυφλός +ἐστιν +μυωπάζων, +λαβὼν +λήθην +τοῦ +καθαρισμοῦ +τῶν +πάλαι +αὐτοῦ +ἁμαρτιῶν. +διὸ +ἀδελφοί, +μᾶλλον, +σπουδάσατε +βεβαίαν +ὑμῶν +τὴν +κλῆσιν +καὶ +ἐκλογὴν +ποιεῖσθαι· +γὰρ +ταῦτα +ποιοῦντες +οὐ +μὴ +πταίσητέ +ποτε. +γὰρ +οὕτως +πλουσίως +ἐπιχορηγηθήσεται +ὑμῖν +ἡ +εἴσοδος +εἰς +τὴν +αἰώνιον +βασιλείαν +τοῦ +Κυρίου +ἡμῶν +καὶ +Σωτῆρος +Ἰησοῦ +Χριστοῦ. +Διὸ +μελλήσω +ἀεὶ +ὑμᾶς +ὑπομιμνῄσκειν +περὶ +τούτων, +καίπερ +εἰδότας +καὶ +ἐστηριγμένους +ἐν +τῇ +παρούσῃ +ἀληθείᾳ. +δὲ +δίκαιον +ἡγοῦμαι, +ἐφ’ +ὅσον +εἰμὶ +ἐν +τούτῳ +τῷ +σκηνώματι, +διεγείρειν +ὑμᾶς +ἐν +ὑπομνήσει, +εἰδὼς +ὅτι +ταχινή +ἐστιν +ἡ +ἀπόθεσις +τοῦ +σκηνώματός +μου, +καθὼς +καὶ +ὁ +Κύριος +ἡμῶν +Ἰησοῦς +Χριστὸς +ἐδήλωσέν +μοι· +δὲ +σπουδάσω +καὶ +ἑκάστοτε +ἔχειν +ὑμᾶς +μετὰ +τὴν +ἐμὴν +ἔξοδον +τὴν +τούτων +μνήμην +ποιεῖσθαι. +γὰρ +οὐ +σεσοφισμένοις +μύθοις +ἐξακολουθήσαντες +ἐγνωρίσαμεν +ὑμῖν +τὴν +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +δύναμιν +καὶ +παρουσίαν, +ἀλλ’ +γενηθέντες +ἐπόπται +τῆς +ἐκείνου +μεγαλειότητος. +γὰρ +λαβὼν +παρὰ +Θεοῦ +Πατρὸς +τιμὴν +καὶ +δόξαν +φωνῆς +τοιᾶσδε +ἐνεχθείσης +αὐτῷ +ὑπὸ +τῆς +μεγαλοπρεποῦς +δόξης +Ὁ +Υἱός +μου +ὁ +ἀγαπητός +μου +οὗτός +ἐστιν, +εἰς +ὃν +ἐγὼ +εὐδόκησα,— +καὶ +ταύτην +τὴν +φωνὴν +ἡμεῖς +ἠκούσαμεν +ἐξ +οὐρανοῦ +ἐνεχθεῖσαν +σὺν +αὐτῷ +ὄντες +ἐν +τῷ +ἁγίῳ +ὄρει. +καὶ +ἔχομεν +βεβαιότερον +τὸν +προφητικὸν +λόγον, +καλῶς +ποιεῖτε +ᾧ +προσέχοντες +ὡς +λύχνῳ +φαίνοντι +ἐν +αὐχμηρῷ +τόπῳ, +ἕως +οὗ +ἡμέρα +διαυγάσῃ +καὶ +φωσφόρος +ἀνατείλῃ +ἐν +ταῖς +καρδίαις +ὑμῶν· +τοῦτο +πρῶτον +γινώσκοντες, +ὅτι +πᾶσα +προφητεία +γραφῆς +ἰδίας +ἐπιλύσεως +οὐ +γίνεται· +γὰρ +οὐ +θελήματι +ἀνθρώπου +ἠνέχθη +προφητεία +ποτέ, +ἀλλὰ +ὑπὸ +Πνεύματος +Ἁγίου +φερόμενοι +ἐλάλησαν +ἀπὸ +Θεοῦ +ἄνθρωποι. +δὲ +Ἐγένοντο +καὶ +ψευδοπροφῆται +ἐν +τῷ +λαῷ, +ὡς +καὶ +ἐν +ὑμῖν +ἔσονται +ψευδοδιδάσκαλοι, +οἵτινες +παρεισάξουσιν +αἱρέσεις +ἀπωλείας, +καὶ +τὸν +ἀγοράσαντα +αὐτοὺς +δεσπότην +ἀρνούμενοι, +ἐπάγοντες +ἑαυτοῖς +ταχινὴν +ἀπώλειαν· +καὶ +πολλοὶ +ἐξακολουθήσουσιν +αὐτῶν +ταῖς +ἀσελγείαις, +δι’ +οὓς +ἡ +ὁδὸς +τῆς +ἀληθείας +βλασφημηθήσεται· +καὶ +ἐν +πλεονεξίᾳ +πλαστοῖς +λόγοις +ὑμᾶς +ἐμπορεύσονται· +οἷς +τὸ +κρίμα +ἔκπαλαι +οὐκ +ἀργεῖ, +καὶ +ἡ +ἀπώλεια +αὐτῶν +οὐ +νυστάζει. +γὰρ +εἰ +ὁ +Θεὸς +ἀγγέλων +ἁμαρτησάντων +οὐκ +ἐφείσατο, +ἀλλὰ +σειροῖς +ζόφου +ταρταρώσας +παρέδωκεν +εἰς +κρίσιν +τηρουμένους, +καὶ +ἀρχαίου +κόσμου +οὐκ +ἐφείσατο, +ἀλλὰ +ὄγδοον +Νῶε +δικαιοσύνης +κήρυκα +ἐφύλαξεν, +κατακλυσμὸν +κόσμῳ +ἀσεβῶν +ἐπάξας, +καὶ +πόλεις +Σοδόμων +καὶ +Γομόρρας +τεφρώσας +καταστροφῇ +κατέκρινεν, +ὑπόδειγμα +μελλόντων +ἀσεβεῖν +τεθεικώς, +καὶ +δίκαιον +Λὼτ +καταπονούμενον +ὑπὸ +τῆς +τῶν +ἀθέσμων +ἐν +ἀσελγείᾳ +ἀναστροφῆς +ἐρύσατο,— +γὰρ +βλέμματι +καὶ +ἀκοῇ +ὁ +δίκαιος +ἐνκατοικῶν +ἐν +αὐτοῖς +ἡμέραν +ἐξ +ἡμέρας +ψυχὴν +δικαίαν +ἀνόμοις +ἔργοις +ἐβασάνιζεν,— +οἶδεν +Κύριος +εὐσεβεῖς +ἐκ +πειρασμοῦ +ῥύεσθαι, +δὲ +ἀδίκους +εἰς +ἡμέραν +κρίσεως +κολαζομένους +τηρεῖν, +δὲ +μάλιστα +τοὺς +ὀπίσω +σαρκὸς +ἐν +ἐπιθυμίᾳ +μιασμοῦ +πορευομένους +καὶ +κυριότητος +καταφρονοῦντας. +τολμηταὶ, +αὐθάδεις, +δόξας +βλασφημοῦντες, +οὐ +τρέμουσιν +ὅπου +ἄγγελοι +ἰσχύϊ +καὶ +δυνάμει +μείζονες +ὄντες +οὐ +φέρουσιν +κατ’ +αὐτῶν +παρὰ +Κυρίῳ +βλάσφημον +κρίσιν. +δέ, +οὗτοι +ὡς +ἄλογα +ζῷα +γεγεννημένα +φυσικὰ +εἰς +ἅλωσιν +καὶ +φθοράν, +ἐν +οἷς +ἀγνοοῦσιν +βλασφημοῦντες, +ἐν +τῇ +φθορᾷ +αὐτῶν +καὶ +φθαρήσονται, +ἀδικούμενοι +μισθὸν +ἀδικίας· +ἡδονὴν +ἡγούμενοι +τὴν +ἐν +ἡμέρᾳ +τρυφήν, +σπίλοι +καὶ +μῶμοι +ἐντρυφῶντες +ἐν +ταῖς +ἀπάταις +αὐτῶν +συνευωχούμενοι +ὑμῖν, +ἔχοντες +ὀφθαλμοὺς +μεστοὺς +μοιχαλίδος +καὶ +ἀκαταπαύστους +ἁμαρτίας, +δελεάζοντες +ψυχὰς +ἀστηρίκτους, +καρδίαν +γεγυμνασμένην +πλεονεξίας +ἔχοντες, +κατάρας +τέκνα· +καταλειπόντες +εὐθεῖαν +ὁδὸν +ἐπλανήθησαν, +ἐξακολουθήσαντες +τῇ +ὁδῷ +τοῦ +Βαλαὰμ +τοῦ +Βεώρ, +ὃς +μισθὸν +ἀδικίας +ἠγάπησεν, +δὲ +ἔλεγξιν +ἰδίας +παρανομίας· +ἔσχεν +ὑποζύγιον +ἄφωνον +ἐν +ἀνθρώπου +φωνῇ +φθεγξάμενον +ἐκώλυσεν +τὴν +τοῦ +προφήτου +παραφρονίαν. +οὗτοί +εἰσιν +πηγαὶ +ἄνυδροι +καὶ +ὁμίχλαι +ὑπὸ +λαίλαπος +ἐλαυνόμεναι, +οἷς +ὁ +ζόφος +τοῦ +σκότους +τετήρηται. +γὰρ +ὑπέρογκα +ματαιότητος +φθεγγόμενοι +δελεάζουσιν +ἐν +ἐπιθυμίαις +σαρκὸς +ἀσελγείαις +τοὺς +ὀλίγως +ἀποφεύγοντας +τοὺς +ἐν +πλάνῃ +ἀναστρεφομένους, +ἐλευθερίαν +αὐτοῖς +ἐπαγγελλόμενοι, +αὐτοὶ +ὑπάρχοντες +δοῦλοι +τῆς +φθορᾶς· +γάρ +ᾧ +τις +ἥττηται, +τούτῳ +δεδούλωται. +γὰρ +εἰ +ἀποφυγόντες +τὰ +μιάσματα +τοῦ +κόσμου +ἐν +ἐπιγνώσει +τοῦ +Κυρίου +καὶ +Σωτῆρος +Ἰησοῦ +Χριστοῦ, +δὲ +τούτοις +πάλιν +ἐμπλακέντες +ἡττῶνται, +γέγονεν +αὐτοῖς +τὰ +ἔσχατα +χείρονα +τῶν +πρώτων. +γὰρ +κρεῖττον +ἦν +αὐτοῖς +μὴ +ἐπεγνωκέναι +τὴν +ὁδὸν +τῆς +δικαιοσύνης, +ἢ +ἐπιγνοῦσιν +ὑποστρέψαι +ἐκ +τῆς +παραδοθείσης +αὐτοῖς +ἁγίας +ἐντολῆς. +συμβέβηκεν +αὐτοῖς +τὸ +τῆς +ἀληθοῦς +παροιμίας +Κύων +ἐπιστρέψας +ἐπὶ +τὸ +ἴδιον +ἐξέραμα, +καί +Ὗς +λουσαμένη +εἰς +κυλισμὸν +βορβόρου. +ἀγαπητοί, +ἤδη, +Ταύτην +δευτέραν +ἐπιστολήν, +ὑμῖν +γράφω +ἐν +αἷς +διεγείρω +ἐν +ὑπομνήσει +ὑμῶν +τὴν +εἰλικρινῆ +διάνοιαν, +μνησθῆναι +τῶν +προειρημένων +ὑπὸ +τῶν +ἁγίων +προφητῶν +ῥημάτων +καὶ +τῆς +τῶν +ἀποστόλων +ὑμῶν +ἐντολῆς +τοῦ +Κυρίου +καὶ +Σωτῆρος, +τοῦτο +πρῶτον +γινώσκοντες, +ὅτι +ἐλεύσονται +ἐπ’ +ἐσχάτων +τῶν +ἡμερῶν +ἐν +ἐμπαιγμονῇ +ἐμπαῖκται +κατὰ +τὰς +ἰδίας +ἐπιθυμίας +αὐτῶν +πορευόμενοι +καὶ +λέγοντες +Ποῦ +ἐστιν +ἡ +ἐπαγγελία +τῆς +παρουσίας +αὐτοῦ; +γὰρ +ἀφ’ +ἧς +οἱ +πατέρες +ἐκοιμήθησαν, +πάντα +οὕτως +διαμένει +ἀπ’ +ἀρχῆς +κτίσεως. +γὰρ +λανθάνει +αὐτοὺς +τοῦτο +θέλοντας +ὅτι +οὐρανοὶ +ἦσαν +ἔκπαλαι +καὶ +γῆ +ἐξ +ὕδατος +καὶ +δι’ +ὕδατος +συνεστῶσα +τῷ +τοῦ +Θεοῦ +λόγῳ, +δι’ +ὧν +ὁ +τότε +κόσμος +ὕδατι +κατακλυσθεὶς +ἀπώλετο· +δὲ +οἱ +νῦν +οὐρανοὶ +καὶ +ἡ +γῆ +τῷ +αὐτῷ +λόγῳ +τεθησαυρισμένοι +εἰσὶν +πυρὶ +τηρούμενοι +εἰς +ἡμέραν +κρίσεως +καὶ +ἀπωλείας +τῶν +ἀσεβῶν +ἀνθρώπων. +δὲ +ἀγαπητοί, +Ἓν +τοῦτο +μὴ +λανθανέτω +ὑμᾶς, +ὅτι +μία +ἡμέρα +παρὰ +Κυρίῳ +ὡς +χίλια +ἔτη +καὶ +χίλια +ἔτη +ὡς +ἡμέρα +μία. +οὐ +βραδύνει +Κύριος +τῆς +ἐπαγγελίας, +ὥς +τινες +βραδύτητα +ἡγοῦνται, +ἀλλὰ +μακροθυμεῖ +εἰς +ὑμᾶς, +βουλόμενός +μὴ +τινας +ἀπολέσθαι +ἀλλὰ +πάντας +εἰς +μετάνοιαν +χωρῆσαι. +δὲ +Ἥξει +ἡμέρα +Κυρίου +ὡς +κλέπτης, +ἐν +ᾗ +οἱ +οὐρανοὶ +ῥοιζηδὸν +παρελεύσονται, +δὲ +στοιχεῖα +καυσούμενα +λυθήσεται, +καὶ +γῆ +καὶ +τὰ +ἐν +αὐτῇ +ἔργα +εὑρεθήσεται. +οὕτως +Τούτων +πάντων +λυομένων +δεῖ +ποταποὺς +ὑπάρχειν +ὑμᾶς +ἐν +ἁγίαις +ἀναστροφαῖς +καὶ +εὐσεβείαις, +προσδοκῶντας +καὶ +σπεύδοντας +τὴν +παρουσίαν +τῆς +τοῦ +Θεοῦ +ἡμέρας, +δι’ +ἣν +οὐρανοὶ +πυρούμενοι +λυθήσονται +καὶ +στοιχεῖα +καυσούμενα +τήκεται· +δὲ +καινοὺς +οὐρανοὺς +καὶ +γῆν +καινὴν +κατὰ +τὸ +ἐπάγγελμα +αὐτοῦ +προσδοκῶμεν, +ἐν +οἷς +δικαιοσύνη +κατοικεῖ. +Διό, +ἀγαπητοί, +ταῦτα +προσδοκῶντες +σπουδάσατε +ἄσπιλοι +καὶ +ἀμώμητοι +αὐτῷ +εὑρεθῆναι +ἐν +εἰρήνῃ, +καὶ +τὴν +τοῦ +Κυρίου +ἡμῶν +μακροθυμίαν +σωτηρίαν +ἡγεῖσθε, +καθὼς +καὶ +ὁ +ἀγαπητὸς +ἡμῶν +ἀδελφὸς +Παῦλος +κατὰ +τὴν +δοθεῖσαν +αὐτῷ +σοφίαν +ἔγραψεν +ὑμῖν, +ὡς +καὶ +ἐν +πάσαις +ἐπιστολαῖς +λαλῶν +ἐν +αὐταῖς +περὶ +τούτων, +ἐν +αἷς +ἐστιν +δυσνόητά +τινα, +ἃ +οἱ +ἀμαθεῖς +καὶ +ἀστήρικτοι +στρεβλοῦσιν +ὡς +καὶ +τὰς +λοιπὰς +γραφὰς +πρὸς +τὴν +ἰδίαν +αὐτῶν +ἀπώλειαν. +οὖν, +ἀγαπητοί, +Ὑμεῖς +προγινώσκοντες +φυλάσσεσθε +ἵνα +μὴ +τῇ +τῶν +ἀθέσμων +πλάνῃ +συναπαχθέντες +ἐκπέσητε +τοῦ +ἰδίου +στηριγμοῦ, +δὲ +αὐξάνετε +ἐν +χάριτι +καὶ +γνώσει +τοῦ +Κυρίου +ἡμῶν +καὶ +Σωτῆρος +Ἰησοῦ +Χριστοῦ. +αὐτῷ +ἡ +δόξα +καὶ +νῦν +καὶ +εἰς +ἡμέραν +αἰῶνος. +Ὃ +ἦν +ἀπ’ +ἀρχῆς, +ὃ +ἀκηκόαμεν, +ὃ +ἑωράκαμεν +τοῖς +ὀφθαλμοῖς +ἡμῶν, +ὃ +ἐθεασάμεθα +καὶ +αἱ +χεῖρες +ἡμῶν +ἐψηλάφησαν, +περὶ +τοῦ +Λόγου +τῆς +ζωῆς,— +καὶ +ἡ +ζωὴ +ἐφανερώθη, +καὶ +ἑωράκαμεν +καὶ +μαρτυροῦμεν +καὶ +ἀπαγγέλλομεν +ὑμῖν +τὴν +ζωὴν +τὴν +αἰώνιον, +ἥτις +ἦν +πρὸς +τὸν +Πατέρα +καὶ +ἐφανερώθη +ἡμῖν,— +ὃ +ἑωράκαμεν +καὶ +ἀκηκόαμεν, +ἀπαγγέλλομεν +καὶ +ὑμῖν, +ἵνα +καὶ +ὑμεῖς +κοινωνίαν +ἔχητε +μεθ’ +ἡμῶν. +δὲ +καὶ +ἡ +κοινωνία +ἡ +ἡμετέρα +μετὰ +τοῦ +Πατρὸς +καὶ +μετὰ +τοῦ +Υἱοῦ +αὐτοῦ +Ἰησοῦ +Χριστοῦ. +καὶ +ταῦτα +γράφομεν +ἡμεῖς +ἵνα +ἡ +χαρὰ +ἡμῶν +ᾖ +πεπληρωμένη. +Καὶ +ἔστιν +αὕτη +ἡ +ἀγγελία +ἣν +ἀκηκόαμεν +ἀπ’ +αὐτοῦ +καὶ +ἀναγγέλλομεν +ὑμῖν, +ὅτι +ὁ +Θεὸς +φῶς +ἐστιν +καὶ +ἐν +αὐτῷ +οὐκ +ἔστιν +σκοτία +οὐδεμία. +Ἐὰν +εἴπωμεν +ὅτι +κοινωνίαν +ἔχομεν +μετ’ +αὐτοῦ +καὶ +ἐν +τῷ +σκότει +περιπατῶμεν, +ψευδόμεθα +καὶ +οὐ +ποιοῦμεν +τὴν +ἀλήθειαν· +δὲ +ἐὰν +ἐν +τῷ +φωτὶ +περιπατῶμεν +ὡς +αὐτός +ἐστιν +ἐν +τῷ +φωτί, +κοινωνίαν +ἔχομεν +μετ’ +ἀλλήλων +καὶ +τὸ +αἷμα +Ἰησοῦ +τοῦ +Υἱοῦ +αὐτοῦ +καθαρίζει +ἡμᾶς +ἀπὸ +πάσης +ἁμαρτίας. +ἐὰν +εἴπωμεν +ὅτι +ἁμαρτίαν +οὐκ +ἔχομεν, +ἑαυτοὺς +πλανῶμεν +καὶ +ἡ +ἀλήθεια +οὐκ +ἔστιν +ἐν +ἡμῖν. +ἐὰν +ὁμολογῶμεν +τὰς +ἁμαρτίας +ἡμῶν, +ἐστιν +πιστός +καὶ +δίκαιος, +ἵνα +ἀφῇ +ἡμῖν +τὰς +ἁμαρτίας +καὶ +καθαρίσῃ +ἡμᾶς +ἀπὸ +πάσης +ἀδικίας. +ἐὰν +εἴπωμεν +ὅτι +οὐχ +ἡμαρτήκαμεν, +ψεύστην +ποιοῦμεν +αὐτὸν +καὶ +ὁ +λόγος +αὐτοῦ +οὐκ +ἔστιν +ἐν +ἡμῖν. +Τεκνία +μου, +ταῦτα +γράφω +ὑμῖν +ἵνα +μὴ +ἁμάρτητε. +καὶ +ἐάν +τις +ἁμάρτῃ, +ἔχομεν +πρὸς +τὸν +Πατέρα +Παράκλητον +Ἰησοῦν +Χριστὸν +δίκαιον· +καὶ +αὐτὸς +ἱλασμός +ἐστιν +περὶ +τῶν +ἁμαρτιῶν +ἡμῶν, +δὲ +οὐ +περὶ +τῶν +ἡμετέρων +μόνον +ἀλλὰ +καὶ +περὶ +ὅλου +τοῦ +κόσμου. +καὶ +ἐν +τούτῳ +γινώσκομεν +ὅτι +ἐγνώκαμεν +αὐτόν, +ἐὰν +τὰς +ἐντολὰς +αὐτοῦ +τηρῶμεν. +ὁ +λέγων +ὅτι +Ἔγνωκα +αὐτόν, +καὶ +τὰς +ἐντολὰς +αὐτοῦ +μὴ +τηρῶν, +ψεύστης +ἐστίν, +καὶ +ἐν +τούτῳ +ἡ +ἀλήθεια +οὐκ +ἔστιν· +δ’ +ἂν +ὃς +τηρῇ +αὐτοῦ +τὸν +λόγον +ἀληθῶς +ἐν +τούτῳ +ἡ +ἀγάπη +τοῦ +Θεοῦ +τετελείωται. +Ἐν +τούτῳ +γινώσκομεν +ὅτι +ἐν +αὐτῷ +ἐσμεν· +ὁ +λέγων +ἐν +αὐτῷ +μένειν +καθὼς +ἐκεῖνος +περιεπάτησεν +ὀφείλει +καὶ +αὐτὸς +οὕτως +περιπατεῖν. +Ἀγαπητοί, +γράφω +ὑμῖν, +οὐκ +ἐντολὴν +καινὴν +ἀλλ’ +ἐντολὴν +παλαιὰν +ἣν +εἴχετε +ἀπ’ +ἀρχῆς· +ἡ +ἐντολὴ +ἡ +παλαιά +ἐστιν +ὁ +λόγος +ὃν +ἠκούσατε. +πάλιν +ἐντολὴν +καινὴν +γράφω +ὑμῖν, +ὅ +ἐστιν +ἀληθὲς +ἐν +αὐτῷ +καὶ +ἐν +ὑμῖν, +ὅτι +ἡ +σκοτία +παράγεται +καὶ +τὸ +φῶς +τὸ +ἀληθινὸν +ἤδη +φαίνει. +Ὁ +λέγων +ἐν +τῷ +φωτὶ +εἶναι +καὶ +τὸν +ἀδελφὸν +αὐτοῦ +μισῶν +ἐν +τῇ +σκοτίᾳ +ἐστὶν +ἕως +ἄρτι. +ὁ +ἀγαπῶν +τὸν +ἀδελφὸν +αὐτοῦ +ἐν +τῷ +φωτὶ +μένει, +καὶ +σκάνδαλον +ἐν +αὐτῷ +οὐκ +ἔστιν· +δὲ +ὁ +μισῶν +τὸν +ἀδελφὸν +αὐτοῦ +ἐν +τῇ +σκοτίᾳ +ἐστὶν +καὶ +ἐν +τῇ +σκοτίᾳ +περιπατεῖ, +καὶ +οὐκ +οἶδεν +ποῦ +ὑπάγει, +ὅτι +ἡ +σκοτία +ἐτύφλωσεν +τοὺς +ὀφθαλμοὺς +αὐτοῦ. +τεκνία, +Γράφω +ὑμῖν, +ὅτι +ἀφέωνται +ὑμῖν +αἱ +ἁμαρτίαι +διὰ +τὸ +ὄνομα +αὐτοῦ. +πατέρες, +γράφω +ὑμῖν, +ὅτι +ἐγνώκατε +τὸν +ἀπ’ +ἀρχῆς· +νεανίσκοι, +γράφω +ὑμῖν, +ὅτι +νενικήκατε +τὸν +πονηρόν. +παιδία, +ἔγραψα +ὑμῖν, +ὅτι +ἐγνώκατε +τὸν +Πατέρα. +πατέρες, +ἔγραψα +ὑμῖν, +ὅτι +ἐγνώκατε +τὸν +ἀπ’ +ἀρχῆς. +νεανίσκοι, +ἔγραψα +ὑμῖν, +ὅτι +ἰσχυροί +ἐστε +καὶ +ὁ +λόγος +τοῦ +Θεοῦ +ἐν +ὑμῖν +μένει +καὶ +νενικήκατε +τὸν +πονηρόν. +Μὴ +ἀγαπᾶτε +τὸν +κόσμον +μηδὲ +τὰ +ἐν +τῷ +κόσμῳ. +ἐάν +τις +ἀγαπᾷ +τὸν +κόσμον, +οὐκ +ἔστιν +ἡ +ἀγάπη +τοῦ +Πατρὸς +ἐν +αὐτῷ· +ὅτι +οὐκ +πᾶν +τὸ +ἐν +τῷ +κόσμῳ, +ἡ +ἐπιθυμία +τῆς +σαρκὸς +καὶ +ἡ +ἐπιθυμία +τῶν +ὀφθαλμῶν +καὶ +ἡ +ἀλαζονία +τοῦ +βίου, +ἔστιν +ἐκ +τοῦ +πατρός, +ἀλλὰ +ἐκ +τοῦ +κόσμου +ἐστίν. +καὶ +παράγεται +ὁ +κόσμος +καὶ +ἡ +ἐπιθυμία +αὐτοῦ· +δὲ +ὁ +ποιῶν +τὸ +θέλημα +τοῦ +Θεοῦ +μένει +εἰς +τὸν +αἰῶνα. +Παιδία, +ἐσχάτη +ὥρα +ἐστίν, +καὶ +καθὼς +ἠκούσατε +ὅτι +ἀντίχριστος +ἔρχεται, +καὶ +νῦν +ἀντίχριστοι +πολλοὶ +γεγόνασιν· +ὅθεν +γινώσκομεν +ὅτι +ἐσχάτη +ὥρα +ἐστίν. +ἐξ +ἡμῶν +ἐξῆλθαν, +ἀλλ’ +οὐκ +ἦσαν +ἐξ +ἡμῶν· +γὰρ +εἰ +ἐξ +ἡμῶν +ἦσαν, +ἂν +μεμενήκεισαν +μεθ’ +ἡμῶν· +ἀλλ’ +ἵνα +φανερωθῶσιν +ὅτι +οὐκ +εἰσὶν +πάντες +ἐξ +ἡμῶν. +καὶ +ὑμεῖς +χρῖσμα +ἔχετε +ἀπὸ +τοῦ +Ἁγίου, +καὶ +οἴδατε +πάντες. +ἔγραψα +ὑμῖν +οὐκ +ὅτι +οὐκ +οἴδατε +τὴν +ἀλήθειαν, +ἀλλ’ +ὅτι +οἴδατε +αὐτήν, +καὶ +ὅτι +πᾶν +ψεῦδος +ἐκ +τῆς +ἀληθείας +οὐκ +ἔστιν. +Τίς +ἐστιν +ὁ +ψεύστης +εἰ +μὴ +ὁ +ἀρνούμενος +ὅτι +Ἰησοῦς +οὐκ +ἔστιν +ὁ +Χριστός; +οὗτός +ἐστιν +ὁ +ἀντίχριστος, +ὁ +ἀρνούμενος +τὸν +Πατέρα +καὶ +τὸν +Υἱόν. +πᾶς +ὁ +ἀρνούμενος +τὸν +Υἱὸν +οὐδὲ +τὸν +Πατέρα +ἔχει· +ὁ +ὁμολογῶν +τὸν +Υἱὸν +καὶ +τὸν +Πατέρα +ἔχει. +ὑμεῖς +ὃ +ἠκούσατε +ἀπ’ +ἀρχῆς, +ἐν +ὑμῖν +μενέτω. +ἐὰν +ἐν +ὑμῖν +μείνῃ +ὃ +ἀπ’ +ἀρχῆς +ἠκούσατε, +καὶ +ὑμεῖς +ἐν +τῷ +Υἱῷ +καὶ +ἐν +τῷ +Πατρὶ +μενεῖτε. +καὶ +αὕτη +ἐστὶν +ἡ +ἐπαγγελία +ἣν +αὐτὸς +ἐπηγγείλατο +ἡμῖν, +τὴν +ζωὴν +τὴν +αἰώνιον. +Ταῦτα +ἔγραψα +ὑμῖν +περὶ +τῶν +πλανώντων +ὑμᾶς. +καὶ +ὑμεῖς +τὸ +χρῖσμα +ὃ +ἐλάβετε +ἀπ’ +αὐτοῦ +μένει +ἐν +ὑμῖν, +καὶ +οὐ +χρείαν +ἔχετε +ἵνα +τις +διδάσκῃ +ὑμᾶς· +ἀλλ’ +ὡς +τὸ +αὐτοῦ +χρῖσμα +διδάσκει +ὑμᾶς +περὶ +πάντων, +καὶ +ἀληθές +ἐστιν +καὶ +οὐκ +ἔστιν +ψεῦδος, +καὶ +καθὼς +ἐδίδαξεν +ὑμᾶς, +μένετε +ἐν +αὐτῷ. +Καὶ +τεκνία, +νῦν, +μένετε +ἐν +αὐτῷ, +ἵνα +ἐὰν +φανερωθῇ +σχῶμεν +παρρησίαν +καὶ +μὴ +αἰσχυνθῶμεν +ἀπ’ +αὐτοῦ +ἐν +τῇ +παρουσίᾳ +αὐτοῦ. +ἐὰν +εἰδῆτε +ὅτι +δίκαιός +ἐστιν, +γινώσκετε +ὅτι +καὶ +πᾶς +ὁ +ποιῶν +τὴν +δικαιοσύνην +ἐξ +αὐτοῦ +γεγέννηται. +Ἴδετε +ποταπὴν +ἀγάπην +δέδωκεν +ἡμῖν +ὁ +Πατὴρ +ἵνα +τέκνα +Θεοῦ +κληθῶμεν, +καὶ +ἐσμέν. +διὰ +τοῦτο +ὁ +κόσμος +οὐ +γινώσκει +ἡμᾶς, +ὅτι +οὐκ +ἔγνω +αὐτόν. +Ἀγαπητοί, +νῦν +τέκνα +Θεοῦ +ἐσμεν, +καὶ +οὔπω +ἐφανερώθη +τί +ἐσόμεθα. +οἴδαμεν +ὅτι +ἐὰν +φανερωθῇ +ὅμοιοι +αὐτῷ +ἐσόμεθα, +ὅτι +ὀψόμεθα +αὐτὸν +καθώς +ἐστιν. +καὶ +πᾶς +ὁ +ἔχων +τὴν +ἐλπίδα +ταύτην +ἐπ’ +αὐτῷ +ἁγνίζει +ἑαυτὸν +καθὼς +ἐκεῖνος +ἁγνός +ἐστιν. +Πᾶς +ὁ +ποιῶν +τὴν +ἁμαρτίαν +καὶ +τὴν +ἀνομίαν +ποιεῖ, +καὶ +ἡ +ἁμαρτία +ἐστὶν +ἡ +ἀνομία. +καὶ +οἴδατε +ὅτι +ἐκεῖνος +ἐφανερώθη +ἵνα +τὰς +ἁμαρτίας +ἄρῃ, +καὶ +ἁμαρτία +ἐν +αὐτῷ +οὐκ +ἔστιν. +πᾶς +ὁ +ἐν +αὐτῷ +μένων +οὐχ +ἁμαρτάνει· +πᾶς +ὁ +ἁμαρτάνων +οὐχ +ἑώρακεν +αὐτὸν +οὐδὲ +ἔγνωκεν +αὐτόν. +Τεκνία, +μηδεὶς +πλανάτω +ὑμᾶς· +ὁ +ποιῶν +τὴν +δικαιοσύνην +δίκαιός +ἐστιν, +καθὼς +ἐκεῖνος +δίκαιός +ἐστιν· +ὁ +ποιῶν +τὴν +ἁμαρτίαν +ἐκ +τοῦ +διαβόλου +ἐστίν, +ὅτι +ἀπ’ +ἀρχῆς +ὁ +διάβολος +ἁμαρτάνει. +εἰς +τοῦτο +ἐφανερώθη +ὁ +Υἱὸς +τοῦ +Θεοῦ, +ἵνα +λύσῃ +τὰ +ἔργα +τοῦ +διαβόλου. +Πᾶς +ὁ +γεγεννημένος +ἐκ +τοῦ +Θεοῦ +ἁμαρτίαν +οὐ +ποιεῖ, +ὅτι +σπέρμα +αὐτοῦ +ἐν +αὐτῷ +μένει· +καὶ +οὐ +δύναται +ἁμαρτάνειν, +ὅτι +ἐκ +τοῦ +Θεοῦ +γεγέννηται. +ἐν +τούτῳ +φανερά +ἐστιν +τὰ +τέκνα +τοῦ +Θεοῦ +καὶ +τὰ +τέκνα +τοῦ +διαβόλου· +πᾶς +ὁ +μὴ +ποιῶν +δικαιοσύνην +οὐκ +ἔστιν +ἐκ +τοῦ +Θεοῦ, +καὶ +ὁ +μὴ +ἀγαπῶν +τὸν +ἀδελφὸν +αὐτοῦ. +ὅτι +αὕτη +ἐστὶν +ἡ +ἀγγελία +ἣν +ἠκούσατε +ἀπ’ +ἀρχῆς, +ἵνα +ἀγαπῶμεν +ἀλλήλους· +οὐ +καθὼς +Κάϊν +ἐκ +τοῦ +πονηροῦ +ἦν +καὶ +ἔσφαξεν +τὸν +ἀδελφὸν +αὐτοῦ· +καὶ +χάριν +τίνος +ἔσφαξεν +αὐτόν; +ὅτι +τὰ +ἔργα +αὐτοῦ +πονηρὰ +ἦν, +δὲ +τὰ +τοῦ +ἀδελφοῦ +αὐτοῦ +δίκαια. +ἀδελφοί, +Μὴ +θαυμάζετε, +εἰ +μισεῖ +ὑμᾶς +ὁ +κόσμος. +ἡμεῖς +οἴδαμεν +ὅτι +μεταβεβήκαμεν +ἐκ +τοῦ +θανάτου +εἰς +τὴν +ζωήν, +ὅτι +ἀγαπῶμεν +τοὺς +ἀδελφούς· +ὁ +μὴ +ἀγαπῶν +μένει +ἐν +τῷ +θανάτῳ. +πᾶς +ὁ +μισῶν +τὸν +ἀδελφὸν +αὐτοῦ +ἀνθρωποκτόνος +ἐστίν, +καὶ +οἴδατε +ὅτι +πᾶς +ἀνθρωποκτόνος +οὐκ +ἔχει +ζωὴν +αἰώνιον +ἐν +αὐτῷ +μένουσαν. +Ἐν +τούτῳ +ἐγνώκαμεν +τὴν +ἀγάπην, +ὅτι +ἐκεῖνος +ὑπὲρ +ἡμῶν +τὴν +ψυχὴν +αὐτοῦ +ἔθηκεν· +καὶ +ἡμεῖς +ὀφείλομεν +ὑπὲρ +τῶν +ἀδελφῶν +τὰς +ψυχὰς +θεῖναι. +δ’ +ἂν +ὃς +ἔχῃ +τὸν +βίον +τοῦ +κόσμου +καὶ +θεωρῇ +τὸν +ἀδελφὸν +αὐτοῦ +χρείαν +ἔχοντα +καὶ +κλείσῃ +τὰ +σπλάγχνα +αὐτοῦ +ἀπ’ +αὐτοῦ, +πῶς +ἡ +ἀγάπη +τοῦ +Θεοῦ +μένει +ἐν +αὐτῷ; +Τεκνία, +ἀγαπῶμεν +μὴ +λόγῳ +μηδὲ +τῇ +γλώσσῃ, +ἀλλὰ +ἐν +ἔργῳ +καὶ +ἀληθείᾳ. +ἐν +τούτῳ +γνωσόμεθα +ὅτι +ἐκ +τῆς +ἀληθείας +ἐσμέν, +καὶ +ἔμπροσθεν +αὐτοῦ +πείσομεν +τὴν +καρδίαν +ἡμῶν +ὅτι +ἐὰν +καταγινώσκῃ +ἡμῶν +ἡ +καρδία, +ὅτι +μείζων +ἐστὶν +ὁ +Θεὸς +τῆς +καρδίας +ἡμῶν +καὶ +γινώσκει +πάντα. +Ἀγαπητοί, +ἐὰν +ἡ +καρδία +μὴ +καταγινώσκῃ, +παρρησίαν +ἔχομεν +πρὸς +τὸν +Θεόν, +καὶ +ἐὰν +ὃ +αἰτῶμεν +λαμβάνομεν +ἀπ’ +αὐτοῦ, +ὅτι +τὰς +ἐντολὰς +αὐτοῦ +τηροῦμεν +καὶ +τὰ +ἀρεστὰ +ἐνώπιον +αὐτοῦ +ποιοῦμεν. +καὶ +αὕτη +ἐστὶν +ἡ +ἐντολὴ +αὐτοῦ, +ἵνα +πιστεύσωμεν +τῷ +ὀνόματι +τοῦ +Υἱοῦ +αὐτοῦ +Ἰησοῦ +Χριστοῦ +καὶ +ἀγαπῶμεν +ἀλλήλους +καθὼς +ἔδωκεν +ἐντολὴν +ἡμῖν. +καὶ +ὁ +τηρῶν +τὰς +ἐντολὰς +αὐτοῦ +ἐν +αὐτῷ +μένει +καὶ +αὐτὸς +ἐν +αὐτῷ· +καὶ +ἐν +τούτῳ +γινώσκομεν +ὅτι +μένει +ἐν +ἡμῖν, +ἐκ +τοῦ +Πνεύματος +οὗ +ἡμῖν +ἔδωκεν. +Ἀγαπητοί, +μὴ +παντὶ +πνεύματι +πιστεύετε, +ἀλλὰ +δοκιμάζετε +τὰ +πνεύματα +εἰ +ἐκ +τοῦ +Θεοῦ +ἐστιν, +ὅτι +πολλοὶ +ψευδοπροφῆται +ἐξεληλύθασιν +εἰς +τὸν +κόσμον. +Ἐν +τούτῳ +γινώσκετε +τὸ +Πνεῦμα +τοῦ +Θεοῦ· +πᾶν +πνεῦμα +ὃ +ὁμολογεῖ +Ἰησοῦν +Χριστὸν +ἐν +σαρκὶ +ἐληλυθότα +ἐκ +τοῦ +Θεοῦ +ἐστιν, +καὶ +πᾶν +πνεῦμα +ὃ +μὴ +ὁμολογεῖ +τὸν +Ἰησοῦν +ἐκ +τοῦ +Θεοῦ +οὐκ +ἔστιν· +καὶ +τοῦτό +ἐστιν +τὸ +τοῦ +ἀντιχρίστου, +ὃ +ἀκηκόατε +ὅτι +ἔρχεται, +καὶ +νῦν +ἐν +τῷ +κόσμῳ +ἐστὶν +ἤδη. +τεκνία, +Ὑμεῖς +ἐκ +τοῦ +Θεοῦ +ἐστε, +καὶ +νενικήκατε +αὐτούς, +ὅτι +μείζων +ἐστὶν +ὁ +ἐν +ὑμῖν +ἢ +ὁ +ἐν +τῷ +κόσμῳ. +αὐτοὶ +ἐκ +τοῦ +κόσμου +εἰσίν· +διὰ +τοῦτο +ἐκ +τοῦ +κόσμου +λαλοῦσιν +καὶ +ὁ +κόσμος +αὐτῶν +ἀκούει. +ἡμεῖς +ἐκ +τοῦ +Θεοῦ +ἐσμεν· +ὁ +γινώσκων +τὸν +Θεὸν +ἀκούει +ἡμῶν, +ὃς +οὐκ +ἔστιν +ἐκ +τοῦ +Θεοῦ +οὐκ +ἀκούει +ἡμῶν. +ἐκ +τούτου +γινώσκομεν +τὸ +πνεῦμα +τῆς +ἀληθείας +καὶ +τὸ +πνεῦμα +τῆς +πλάνης. +Ἀγαπητοί, +ἀγαπῶμεν +ἀλλήλους, +ὅτι +ἡ +ἀγάπη +ἐκ +τοῦ +Θεοῦ +ἐστιν, +καὶ +πᾶς +ὁ +ἀγαπῶν +ἐκ +τοῦ +Θεοῦ +γεγέννηται +καὶ +γινώσκει +τὸν +Θεόν. +ὁ +μὴ +ἀγαπῶν +οὐκ +ἔγνω +τὸν +Θεόν, +ὅτι +ὁ +Θεὸς +ἀγάπη +ἐστίν. +ἐν +τούτῳ +ἐφανερώθη +ἡ +ἀγάπη +τοῦ +Θεοῦ +ἐν +ἡμῖν, +ὅτι +τὸν +Υἱὸν +αὐτοῦ +τὸν +μονογενῆ +ἀπέσταλκεν +ὁ +Θεὸς +εἰς +τὸν +κόσμον +ἵνα +ζήσωμεν +δι’ +αὐτοῦ. +ἐν +τούτῳ +ἐστὶν +ἡ +ἀγάπη, +οὐχ +ὅτι +ἡμεῖς +ἠγαπήκαμεν +τὸν +Θεόν, +ἀλλ’ +ὅτι +αὐτὸς +ἠγάπησεν +ἡμᾶς +καὶ +ἀπέστειλεν +τὸν +Υἱὸν +αὐτοῦ +ἱλασμὸν +περὶ +τῶν +ἁμαρτιῶν +ἡμῶν. +Ἀγαπητοί, +εἰ +οὕτως +ὁ +Θεὸς +ἠγάπησεν +ἡμᾶς, +καὶ +ἡμεῖς +ὀφείλομεν +ἀλλήλους +ἀγαπᾶν. +Θεὸν +οὐδεὶς +πώποτε +τεθέαται· +ἐὰν +ἀγαπῶμεν +ἀλλήλους, +ὁ +Θεὸς +ἐν +ἡμῖν +μένει +καὶ +ἡ +ἀγάπη +αὐτοῦ +ἐν +ἡμῖν +τετελειωμένη +ἐστιν. +ἐν +τούτῳ +γινώσκομεν +ὅτι +ἐν +αὐτῷ +μένομεν +καὶ +αὐτὸς +ἐν +ἡμῖν, +ὅτι +ἐκ +τοῦ +Πνεύματος +αὐτοῦ +δέδωκεν +ἡμῖν. +καὶ +ἡμεῖς +τεθεάμεθα +καὶ +μαρτυροῦμεν +ὅτι +ὁ +Πατὴρ +ἀπέσταλκεν +τὸν +Υἱὸν +Σωτῆρα +τοῦ +κόσμου. +ἐὰν +ὃς +ὁμολογήσῃ +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Υἱὸς +τοῦ +Θεοῦ, +ὁ +Θεὸς +ἐν +αὐτῷ +μένει +καὶ +αὐτὸς +ἐν +τῷ +Θεῷ. +καὶ +ἡμεῖς +ἐγνώκαμεν +καὶ +πεπιστεύκαμεν +τὴν +ἀγάπην +ἣν +ἔχει +ὁ +Θεὸς +ἐν +ἡμῖν. +Ὁ +Θεὸς +ἀγάπη +ἐστίν, +καὶ +ὁ +μένων +ἐν +τῇ +ἀγάπῃ +ἐν +τῷ +Θεῷ +μένει +καὶ +ὁ +Θεὸς +ἐν +αὐτῷ +μένει. +Ἐν +τούτῳ +τετελείωται +ἡ +ἀγάπη +μεθ’ +ἡμῶν, +ἵνα +παρρησίαν +ἔχωμεν +ἐν +τῇ +ἡμέρᾳ +τῆς +κρίσεως, +ὅτι +καθὼς +ἐκεῖνός +ἐστιν +καὶ +ἡμεῖς +ἐσμεν +ἐν +τῷ +κόσμῳ +τούτῳ. +φόβος +οὐκ +ἔστιν +ἐν +τῇ +ἀγάπῃ, +ἀλλ’ +ἡ +τελεία +ἀγάπη +ἔξω +βάλλει +τὸν +φόβον, +ὅτι +ὁ +φόβος +κόλασιν +ἔχει, +δὲ +ὁ +φοβούμενος +οὐ +τετελείωται +ἐν +τῇ +ἀγάπῃ. +Ἠμεῖς +ἀγαπῶμεν, +ὅτι +αὐτὸς +πρῶτος +ἠγάπησεν +ἡμᾶς. +ἐάν +τις +εἴπῃ +ὅτι +Ἀγαπῶ +τὸν +Θεόν, +καὶ +τὸν +ἀδελφὸν +αὐτοῦ +μισῇ, +ψεύστης +ἐστίν· +γὰρ +ὁ +μὴ +ἀγαπῶν +τὸν +ἀδελφὸν +αὐτοῦ +ὃν +ἑώρακεν, +οὐ +δύναται +τὸν +Θεὸν +ὃν +οὐχ +ἑώρακεν +ἀγαπᾶν. +καὶ +ταύτην +τὴν +ἐντολὴν +ἔχομεν +ἀπ’ +αὐτοῦ, +ἵνα +ὁ +ἀγαπῶν +τὸν +Θεὸν +ἀγαπᾷ +καὶ +τὸν +ἀδελφὸν +αὐτοῦ. +Πᾶς +ὁ +πιστεύων +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Χριστὸς +ἐκ +τοῦ +Θεοῦ +γεγέννηται, +καὶ +πᾶς +ὁ +ἀγαπῶν +τὸν +γεννήσαντα +ἀγαπᾷ +τὸν +γεγεννημένον +ἐξ +αὐτοῦ. +ἐν +τούτῳ +γινώσκομεν +ὅτι +ἀγαπῶμεν +τὰ +τέκνα +τοῦ +Θεοῦ, +ὅταν +τὸν +Θεὸν +ἀγαπῶμεν +καὶ +τὰς +ἐντολὰς +αὐτοῦ +ποιῶμεν. +γάρ +αὕτη +ἐστιν +ἡ +ἀγάπη +τοῦ +Θεοῦ, +ἵνα +τὰς +ἐντολὰς +αὐτοῦ +τηρῶμεν· +καὶ +αἱ +ἐντολαὶ +αὐτοῦ +βαρεῖαι +οὐκ +εἰσίν, +ὅτι +πᾶν +τὸ +γεγεννημένον +ἐκ +τοῦ +Θεοῦ +νικᾷ +τὸν +κόσμον· +καὶ +αὕτη +ἐστὶν +ἡ +νίκη +ἡ +νικήσασα +τὸν +κόσμον, +ἡ +πίστις +ἡμῶν. +τίς +ἐστιν +ὁ +νικῶν +τὸν +κόσμον +εἰ +μὴ +ὁ +πιστεύων +ὅτι +Ἰησοῦς +ἐστιν +ὁ +Υἱὸς +τοῦ +Θεοῦ; +οὗτός +ἐστιν +ὁ +ἐλθὼν +δι’ +ὕδατος +καὶ +αἵματος, +Ἰησοῦς +Χριστός· +οὐκ +ἐν +τῷ +ὕδατι +μόνον, +ἀλλ’ +ἐν +τῷ +ὕδατι +καὶ +ἐν +τῷ +αἵματι· +καὶ +τὸ +Πνεῦμά +ἐστιν +τὸ +μαρτυροῦν, +ὅτι +τὸ +Πνεῦμά +ἐστιν +ἡ +ἀλήθεια. +ὅτι +τρεῖς +εἰσιν +οἱ +μαρτυροῦντες, +τὸ +Πνεῦμα +καὶ +τὸ +ὕδωρ +καὶ +τὸ +αἷμα, +καὶ +οἱ +τρεῖς +εἰς +τὸ +ἕν +εἰσιν. +εἰ +τὴν +μαρτυρίαν +τῶν +ἀνθρώπων +λαμβάνομεν, +ἡ +μαρτυρία +τοῦ +Θεοῦ +μείζων +ἐστίν, +ὅτι +αὕτη +ἐστὶν +ἡ +μαρτυρία +τοῦ +Θεοῦ +ὅτι +μεμαρτύρηκεν +περὶ +τοῦ +Υἱοῦ +αὐτοῦ. +ὁ +πιστεύων +εἰς +τὸν +Υἱὸν +τοῦ +Θεοῦ +ἔχει +τὴν +μαρτυρίαν +ἐν +αὑτῷ. +ὁ +μὴ +πιστεύων +τῷ +Θεῷ +ψεύστην +πεποίηκεν +αὐτόν, +ὅτι +οὐ +πεπίστευκεν +εἰς +τὴν +μαρτυρίαν +ἣν +μεμαρτύρηκεν +ὁ +Θεὸς +περὶ +τοῦ +Υἱοῦ +αὐτοῦ. +καὶ +αὕτη +ἐστὶν +ἡ +μαρτυρία, +ὅτι +ζωὴν +αἰώνιον +ἔδωκεν +ὁ +Θεὸς +ἡμῖν, +καὶ +αὕτη +ἡ +ζωὴ +ἐν +τῷ +Υἱῷ +αὐτοῦ +ἐστιν. +ὁ +ἔχων +τὸν +Υἱὸν +ἔχει +τὴν +ζωήν· +ὁ +μὴ +ἔχων +τὸν +Υἱὸν +τοῦ +Θεοῦ +τὴν +ζωὴν +οὐκ +ἔχει. +Ταῦτα +ἔγραψα +ὑμῖν +τοῖς +πιστεύουσιν +εἰς +τὸ +ὄνομα +τοῦ +Υἱοῦ +τοῦ +Θεοῦ. +ἵνα +εἰδῆτε +ὅτι +ζωὴν +αἰώνιον, +ἔχετε +Καὶ +αὕτη +ἐστὶν +ἡ +παρρησία +ἣν +ἔχομεν +πρὸς +αὐτόν, +ὅτι +ἐάν +τι +αἰτώμεθα +κατὰ +τὸ +θέλημα +αὐτοῦ +ἀκούει +ἡμῶν. +καὶ +ἐὰν +οἴδαμεν +ὅτι +ἀκούει +ἡμῶν +ἐὰν +ὃ +αἰτώμεθα, +οἴδαμεν +ὅτι +ἔχομεν +τὰ +αἰτήματα +ἃ +ᾐτήκαμεν +ἀπ’ +αὐτοῦ. +Ἐάν +τις +ἴδῃ +τὸν +ἀδελφὸν +αὐτοῦ +ἁμαρτάνοντα +ἁμαρτίαν +μὴ +πρὸς +θάνατον, +αἰτήσει, +καὶ +δώσει +ζωήν, +αὐτῷ +τοῖς +ἁμαρτάνουσιν +μὴ +πρὸς +θάνατον. +ἔστιν +ἁμαρτία +πρὸς +θάνατον· +οὐ +περὶ +ἐκείνης +λέγω +ἵνα +ἐρωτήσῃ. +πᾶσα +ἀδικία +ἁμαρτία +ἐστίν, +καὶ +ἔστιν +ἁμαρτία +οὐ +πρὸς +θάνατον. +Οἴδαμεν +ὅτι +πᾶς +ὁ +γεγεννημένος +ἐκ +τοῦ +Θεοῦ +οὐχ +ἁμαρτάνει, +ἀλλ’ +ὁ +γεννηθεὶς +ἐκ +τοῦ +Θεοῦ +τηρεῖ +αὐτόν, +καὶ +ὁ +πονηρὸς +οὐχ +ἅπτεται +αὐτοῦ. +οἴδαμεν +ὅτι +ἐκ +τοῦ +Θεοῦ +ἐσμεν, +καὶ +ὁ +κόσμος +ὅλος +ἐν +τῷ +πονηρῷ +κεῖται. +δὲ +οἴδαμεν +ὅτι +ὁ +Υἱὸς +τοῦ +Θεοῦ +ἥκει, +καὶ +δέδωκεν +ἡμῖν +διάνοιαν +ἵνα +γινώσκομεν +τὸν +ἀληθινόν· +καὶ +ἐσμὲν +ἐν +τῷ +ἀληθινῷ, +ἐν +τῷ +Υἱῷ +αὐτοῦ +Ἰησοῦ +Χριστῷ. +οὗτός +ἐστιν +ὁ +ἀληθινὸς +Θεὸς +καὶ +ζωὴ +αἰώνιος. +Τεκνία, +φυλάξατε +ἑαυτὰ +ἀπὸ +τῶν +εἰδώλων. +Ὁ +πρεσβύτερος +ἐκλεκτῇ +κυρίᾳ +καὶ +τοῖς +τέκνοις +αὐτῆς, +οὓς +ἀγαπῶ +ἐν +ἀληθείᾳ, +ἐγὼ +καὶ +οὐκ +ἐγὼ +μόνος +ἀλλὰ +καὶ +πάντες +οἱ +ἐγνωκότες +τὴν +ἀλήθειαν, +διὰ +τὴν +ἀλήθειαν +τὴν +μένουσαν +ἐν +ἡμῖν, +καὶ +μεθ’ +ἡμῶν +ἔσται +εἰς +τὸν +αἰῶνα. +ἔσται +μεθ’ +ἡμῶν +χάρις +ἔλεος +εἰρήνη +παρὰ +Θεοῦ +Πατρός, +καὶ +παρὰ +Ἰησοῦ +Χριστοῦ +τοῦ +Υἱοῦ +τοῦ +Πατρός, +ἐν +ἀληθείᾳ +καὶ +ἀγάπῃ. +Ἐχάρην +λίαν +ὅτι +εὕρηκα +ἐκ +τῶν +τέκνων +σου +περιπατοῦντας +ἐν +ἀληθείᾳ, +καθὼς +ἐντολὴν +ἐλάβομεν +παρὰ +τοῦ +Πατρός. +καὶ +κυρία, +νῦν +ἐρωτῶ +σε, +γράφων +σοι +οὐχ +ὡς +ἐντολὴν +καινὴν, +ἀλλὰ +ἣν +εἴχαμεν +ἀπ’ +ἀρχῆς, +ἵνα +ἀγαπῶμεν +ἀλλήλους. +καὶ +αὕτη +ἐστὶν +ἡ +ἀγάπη, +ἵνα +περιπατῶμεν +κατὰ +τὰς +ἐντολὰς +αὐτοῦ· +αὕτη +ἡ +ἐντολή +ἐστιν, +καθὼς +ἠκούσατε +ἀπ’ +ἀρχῆς, +ἵνα +ἐν +αὐτῇ +περιπατῆτε. +ὅτι +ἐξῆλθον +εἰς +τὸν +κόσμον, +πολλοὶ +πλάνοι +οἱ +μὴ +ὁμολογοῦντες +Ἰησοῦν +Χριστὸν +ἐρχόμενον +ἐν +σαρκί· +οὗτός +ἐστιν +ὁ +πλάνος +καὶ +ὁ +ἀντίχριστος. +βλέπετε +ἑαυτούς, +ἵνα +μὴ +ἀπολέσητε +ἃ +ἠργασάμεθα, +ἀλλὰ +μισθὸν +πλήρη +ἀπολάβητε. +πᾶς +ὁ +προάγων +καὶ +μὴ +μένων +ἐν +τῇ +διδαχῇ +τοῦ +Χριστοῦ +Θεὸν +οὐκ +ἔχει· +ὁ +μένων +ἐν +τῇ +διδαχῇ, +οὗτος +καὶ +τὸν +Πατέρα +καὶ +τὸν +Υἱὸν +ἔχει. +εἴ +τις +ἔρχεται +πρὸς +ὑμᾶς +καὶ +ταύτην +τὴν +διδαχὴν +οὐ +φέρει, +μὴ +λαμβάνετε +αὐτὸν +εἰς +οἰκίαν, +καὶ +χαίρειν +αὐτῷ +μὴ +λέγετε· +γὰρ +ὁ +λέγων +αὐτῷ +χαίρειν +κοινωνεῖ +τοῖς +ἔργοις +αὐτοῦ +τοῖς +πονηροῖς. +ἔχων +Πολλὰ +ὑμῖν +γράφειν +οὐκ +ἐβουλήθην +διὰ +χάρτου +καὶ +μέλανος, +ἀλλὰ +ἐλπίζω +γενέσθαι +πρὸς +ὑμᾶς +καὶ +στόμα +πρὸς +στόμα +λαλῆσαι, +ἵνα +ἡ +χαρὰ +ἡμῶν +πεπληρωμένη +ᾖ. +Ἀσπάζεταί +σε +τὰ +τέκνα +τῆς +ἀδελφῆς +σου +τῆς +ἐκλεκτῆς. +Ὁ +πρεσβύτερος +Γαΐῳ +τῷ +ἀγαπητῷ, +ὃν +ἐγὼ +ἀγαπῶ +ἐν +ἀληθείᾳ. +Ἀγαπητέ, +περὶ +πάντων +εὔχομαί +σε +εὐοδοῦσθαι +καὶ +ὑγιαίνειν, +καθὼς +εὐοδοῦταί +σου +ἡ +ψυχή. +γὰρ +ἐχάρην +λίαν +ἐρχομένων +ἀδελφῶν +καὶ +μαρτυρούντων +σου +τῇ +ἀληθείᾳ, +καθὼς +σὺ +ἐν +ἀληθείᾳ +περιπατεῖς. +μειζοτέραν +χαράν, +τούτων +οὐκ +ἔχω +ἵνα +ἀκούω +τὰ +ἐμὰ +τέκνα +ἐν +τῇ +ἀληθείᾳ +περιπατοῦντα. +Ἀγαπητέ, +πιστὸν +ποιεῖς +ἐὰν +ὃ +ἐργάσῃ +εἰς +τοὺς +ἀδελφοὺς +καὶ +τοῦτο +ξένους, +οἳ +ἐμαρτύρησάν +σου +τῇ +ἀγάπῃ +ἐνώπιον +ἐκκλησίας, +οὓς +καλῶς +ποιήσεις +προπέμψας +ἀξίως +τοῦ +Θεοῦ· +γὰρ +ὑπὲρ +τοῦ +Ὀνόματος +ἐξῆλθαν +μηδὲν +λαμβάνοντες +ἀπὸ +τῶν +ἐθνικῶν. +οὖν +ἡμεῖς +ὀφείλομεν +ὑπολαμβάνειν +τοὺς +τοιούτους, +ἵνα +συνεργοὶ +γινώμεθα +τῇ +ἀληθείᾳ. +Ἔγραψά +τι +τῇ +ἐκκλησίᾳ· +ἀλλ’ +ὁ +φιλοπρωτεύων +αὐτῶν +Διοτρεφὴς +οὐκ +ἐπιδέχεται +ἡμᾶς. +διὰ +τοῦτο, +ἐὰν +ἔλθω, +ὑπομνήσω +αὐτοῦ +τὰ +ἔργα +ἃ +ποιεῖ +λόγοις +πονηροῖς +φλυαρῶν +ἡμᾶς, +καὶ +μὴ +ἀρκούμενος +ἐπὶ +τούτοις +οὔτε +αὐτὸς +ἐπιδέχεται +τοὺς +ἀδελφοὺς +καὶ +τοὺς +βουλομένους +κωλύει +καὶ +ἐκ +τῆς +ἐκκλησίας +ἐκβάλλει. +Ἀγαπητέ, +μὴ +μιμοῦ +τὸ +κακὸν +ἀλλὰ +τὸ +ἀγαθόν. +ὁ +ἀγαθοποιῶν +ἐκ +τοῦ +Θεοῦ +ἐστιν· +ὁ +κακοποιῶν +οὐχ +ἑώρακεν +τὸν +Θεόν. +Δημητρίῳ +μεμαρτύρηται +ὑπὸ +πάντων +καὶ +ὑπὸ +αὐτῆς +τῆς +ἀληθείας· +δὲ +καὶ +ἡμεῖς +μαρτυροῦμεν, +καὶ +οἶδας +ὅτι +ἡ +μαρτυρία +ἡμῶν +ἀληθής +ἐστιν. +εἶχον +Πολλὰ +γράψαι +σοι, +ἀλλ’ +οὐ +θέλω +διὰ +μέλανος +καὶ +καλάμου +σοι +γράφειν· +δὲ +ἐλπίζω +εὐθέως +σε +ἰδεῖν, +καὶ +στόμα +πρὸς +στόμα +λαλήσομεν. +Εἰρήνη +σοι. +ἀσπάζονταί +σε +οἱ +φίλοι. +ἀσπάζου +τοὺς +φίλους +κατ’ +ὄνομα. +Ἰούδας +Ἰησοῦ +Χριστοῦ +δοῦλος, +δὲ +ἀδελφὸς +Ἰακώβου, +τοῖς +ἐν +Θεῷ +Πατρὶ +ἠγαπημένοις +καὶ +Ἰησοῦ +Χριστῷ +τετηρημένοις +κλητοῖς. +ὑμῖν +ἔλεος +καὶ +εἰρήνη +καὶ +ἀγάπη +πληθυνθείη. +Ἀγαπητοί, +πᾶσαν +σπουδὴν +ποιούμενος +γράφειν +ὑμῖν +περὶ +τῆς +κοινῆς +ἡμῶν +σωτηρίας, +ἀνάγκην +ἔσχον +γράψαι +ὑμῖν +παρακαλῶν +ἐπαγωνίζεσθαι +τῇ +ἅπαξ +παραδοθείσῃ +τοῖς +ἁγίοις +πίστει. +γάρ +παρεισεδύησαν +τινες +ἄνθρωποι, +οἱ +πάλαι +προγεγραμμένοι +εἰς +τοῦτο +τὸ +κρίμα, +ἀσεβεῖς, +τὴν +τοῦ +Θεοῦ +ἡμῶν +χάριτα +μετατιθέντες +εἰς +ἀσέλγειαν +καὶ +τὸν +μόνον +Δεσπότην +καὶ +Κύριον +ἡμῶν +Ἰησοῦν +Χριστὸν +ἀρνούμενοι. +δὲ +βούλομαι, +εἰδότας +ἅπαξ +πάντα, +Ὑπομνῆσαι +ὑμᾶς +ὅτι +Κύριος +λαὸν +ἐκ +γῆς +Αἰγύπτου +σώσας +τὸ +δεύτερον +τοὺς +μὴ +πιστεύσαντας +ἀπώλεσεν, +τε +ἀγγέλους +τοὺς +μὴ +τηρήσαντας +τὴν +ἑαυτῶν +ἀρχὴν +ἀλλὰ +ἀπολιπόντας +τὸ +ἴδιον +οἰκητήριον +εἰς +κρίσιν +μεγάλης +ἡμέρας +δεσμοῖς +ἀϊδίοις +ὑπὸ +ζόφον +τετήρηκεν· +ὡς +Σόδομα +καὶ +Γόμορρα +καὶ +αἱ +περὶ +αὐτὰς +πόλεις, +τὸν +ὅμοιον +τρόπον +τούτοις +ἐκπορνεύσασαι +καὶ +ἀπελθοῦσαι +ὀπίσω +σαρκὸς +ἑτέρας, +πρόκεινται +δεῖγμα +πυρὸς +αἰωνίου +δίκην +ὑπέχουσαι. +μέντοι +Ὁμοίως +καὶ +οὗτοι +ἐνυπνιαζόμενοι +μὲν +σάρκα +μιαίνουσιν, +δὲ +κυριότητα +ἀθετοῦσιν, +δὲ +δόξας +βλασφημοῦσιν. +δὲ +ὅτε +τῷ +διαβόλῳ +διακρινόμενος +διελέγετο +περὶ +τοῦ +Μωϋσέως +σώματος, +οὐκ +ὁ +Μιχαὴλ +ὁ +ἀρχάγγελος, +ἐτόλμησεν +κρίσιν +βλασφημίας, +ἐπενεγκεῖν +ἀλλὰ +εἶπεν +Ἐπιτιμήσαι +σοι +Κύριος. +δὲ +μὲν +οὗτοι +ὅσα +οὐκ +οἴδασιν +βλασφημοῦσιν, +δὲ +ὅσα +φυσικῶς +ὡς +τὰ +ἄλογα +ζῷα +ἐπίστανται, +ἐν +τούτοις +φθείρονται. +οὐαὶ +αὐτοῖς, +ὅτι +τῇ +ὁδῷ +τοῦ +Κάϊν +ἐπορεύθησαν, +καὶ +τῇ +πλάνῃ +τοῦ +Βαλαὰμ +μισθοῦ +ἐξεχύθησαν, +καὶ +τῇ +ἀντιλογίᾳ +τοῦ +Κόρε +ἀπώλοντο. +Οὗτοί +εἰσιν +οἱ +ἐν +ταῖς +ἀγάπαις +ὑμῶν +σπιλάδες +συνευωχούμενοι +ἀφόβως, +ἑαυτοὺς +ποιμαίνοντες, +νεφέλαι +ἄνυδροι +ὑπὸ +ἀνέμων +παραφερόμεναι, +δένδρα +φθινοπωρινὰ +ἄκαρπα +δὶς +ἀποθανόντα +ἐκριζωθέντα, +κύματα +ἄγρια +θαλάσσης +ἐπαφρίζοντα +τὰς +ἑαυτῶν +αἰσχύνας, +ἀστέρες +πλανῆται, +οἷς +ὁ +ζόφος +τοῦ +σκότους +εἰς +αἰῶνα +τετήρηται. +δὲ +Ἐπροφήτευσεν +καὶ +τούτοις +ἕβδομος +ἀπὸ +Ἀδὰμ +Ἑνὼχ +λέγων +Ἰδοὺ +ἦλθεν +Κύριος +ἐν +ἁγίαις +μυριάσιν +αὐτοῦ, +ποιῆσαι +κρίσιν +κατὰ +πάντων +καὶ +ἐλέγξαι +πάντας +τοὺς +ἀσεβεῖς +περὶ +πάντων +τῶν +ἔργων +ἀσεβείας +αὐτῶν +ὧν +ἠσέβησαν +καὶ +περὶ +πάντων +τῶν +σκληρῶν +ὧν +ἐλάλησαν +κατ’ +αὐτοῦ +ἁμαρτωλοὶ +ἀσεβεῖς. +Οὗτοί +εἰσιν +γογγυσταί, +μεμψίμοιροι, +κατὰ +τὰς +ἐπιθυμίας +αὐτῶν +πορευόμενοι, +καὶ +τὸ +στόμα +αὐτῶν +λαλεῖ +ὑπέρογκα, +θαυμάζοντες +πρόσωπα +ὠφελείας +χάριν. +δέ, +ἀγαπητοί, +Ὑμεῖς +μνήσθητε +τῶν +ῥημάτων +τῶν +προειρημένων +ὑπὸ +τῶν +ἀποστόλων +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ, +ὅτι +ἔλεγον +ὑμῖν +Ἐπ’ +ἐσχάτου +τοῦ +χρόνου +ἔσονται +ἐμπαῖκται +πορευόμενοι +κατὰ +τὰς +ἑαυτῶν +ἐπιθυμίας +τῶν +ἀσεβειῶν. +Οὗτοί +εἰσιν +οἱ +ἀποδιορίζοντες, +ψυχικοί, +Πνεῦμα +μὴ +ἔχοντες. +δέ, +ἀγαπητοί, +ὑμεῖς +ἐποικοδομοῦντες +ἑαυτοὺς +τῇ +ἁγιωτάτῃ +ὑμῶν +πίστει, +ἐν +Πνεύματι +Ἁγίῳ +προσευχόμενοι, +ἑαυτοὺς +ἐν +ἀγάπῃ +Θεοῦ +τηρήσατε, +προσδεχόμενοι +τὸ +ἔλεος +τοῦ +Κυρίου +ἡμῶν +Ἰησοῦ +Χριστοῦ +εἰς +ζωὴν +αἰώνιον. +καὶ +μὲν +οὓς +διακρινομένους +ἐλεᾶτε +σῴζετε +ἐκ +πυρὸς +ἁρπάζοντες, +δὲ +οὓς +ἐλεᾶτε +ἐν +φόβῳ, +μισοῦντες +καὶ +τὸν +ἀπὸ +τῆς +σαρκὸς +ἐσπιλωμένον +χιτῶνα. +δὲ +Τῷ +δυναμένῳ +φυλάξαι +ὑμᾶς +ἀπταίστους +καὶ +στῆσαι +κατενώπιον +τῆς +δόξης +αὐτοῦ +ἀμώμους +ἐν +ἀγαλλιάσει, +μόνῳ +Θεῷ +Σωτῆρι +ἡμῶν +διὰ +Ἰησοῦ +Χριστοῦ +τοῦ +Κυρίου +ἡμῶν +δόξα +μεγαλωσύνη +κράτος +καὶ +ἐξουσία +πρὸ +παντὸς +τοῦ +αἰῶνος +καὶ +νῦν +καὶ +εἰς +πάντας +τοὺς +αἰῶνας· +ἀμήν. +Ἀποκάλυψις +Ἰησοῦ +Χριστοῦ, +ἣν +ἔδωκεν +αὐτῷ +ὁ +Θεός, +δεῖξαι +τοῖς +δούλοις +αὐτοῦ +ἃ +γενέσθαι +ἐν +τάχει, +δεῖ +καὶ +ἐσήμανεν +ἀποστείλας +διὰ +τοῦ +ἀγγέλου +αὐτοῦ, +τῷ +δούλῳ +αὐτοῦ +Ἰωάνῃ, +ὃς +ἐμαρτύρησεν +τὸν +λόγον +τοῦ +Θεοῦ +καὶ +τὴν +μαρτυρίαν +Ἰησοῦ +Χριστοῦ, +ὅσα +εἶδεν. +Μακάριος +ὁ +ἀναγινώσκων +καὶ +οἱ +ἀκούοντες +τοὺς +λόγους +τῆς +προφητείας +καὶ +τηροῦντες +τὰ +ἐν +αὐτῇ +γεγραμμένα· +γὰρ +ὁ +καιρὸς +ἐγγύς. +Ἰωάνης +ταῖς +ἑπτὰ +ἐκκλησίαις +ταῖς +ἐν +τῇ +Ἀσίᾳ· +χάρις +καὶ +εἰρήνη +ὑμῖν +ἀπὸ +ὁ +ὢν +καὶ +ὁ +ἦν +καὶ +ὁ +ἐρχόμενος, +καὶ +ἀπὸ +τῶν +ἑπτὰ +Πνευμάτων +ἃ +ἐνώπιον +τοῦ +θρόνου +αὐτοῦ, +καὶ +ἀπὸ +Ἰησοῦ +Χριστοῦ, +ὁ +μάρτυς +ὁ +πιστός, +ὁ +πρωτότοκος +τῶν +νεκρῶν +καὶ +ὁ +ἄρχων +τῶν +βασιλέων +τῆς +γῆς. +Τῷ +ἀγαπῶντι +ἡμᾶς +καὶ +λύσαντι +ἡμᾶς +ἐκ +τῶν +ἁμαρτιῶν +ἡμῶν +ἐν +τῷ +αἵματι +αὐτοῦ, +καὶ +ἐποίησεν +ἡμᾶς +βασιλείαν, +ἱερεῖς +τῷ +Θεῷ +καὶ +Πατρὶ +αὐτοῦ, +αὐτῷ +ἡ +δόξα +καὶ +τὸ +κράτος +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +Ἰδοὺ +ἔρχεται +μετὰ +τῶν +νεφελῶν, +καὶ +ὄψεται +αὐτὸν +πᾶς +ὀφθαλμὸς +καὶ +οἵτινες +αὐτὸν +ἐξεκέντησαν, +καὶ +κόψονται +ἐπ’ +αὐτὸν +πᾶσαι +αἱ +φυλαὶ +τῆς +γῆς. +ναί, +ἀμήν. +Ἐγώ +εἰμι +τὸ +Ἄλφα +καὶ +τὸ +Ὦ, +λέγει +Κύριος +ὁ +Θεός, +ὁ +ὢν +καὶ +ὁ +ἦν +καὶ +ὁ +ἐρχόμενος, +ὁ +Παντοκράτωρ. +Ἐγὼ +Ἰωάνης, +ὁ +ἀδελφὸς +ὑμῶν +καὶ +συνκοινωνὸς +ἐν +τῇ +θλίψει +καὶ +βασιλείᾳ +καὶ +ὑπομονῇ +ἐν +Ἰησοῦ, +ἐγενόμην +ἐν +τῇ +νήσῳ +τῇ +καλουμένῃ +Πάτμῳ +διὰ +τὸν +λόγον +τοῦ +Θεοῦ +καὶ +τὴν +μαρτυρίαν +Ἰησοῦ. +ἐγενόμην +ἐν +Πνεύματι +ἐν +τῇ +κυριακῇ +ἡμέρᾳ, +καὶ +ἤκουσα +ὀπίσω +μου +φωνὴν +μεγάλην +ὡς +σάλπιγγος +λεγούσης +Ὃ +βλέπεις +γράψον +εἰς +βιβλίον +καὶ +πέμψον +ταῖς +ἑπτὰ +ἐκκλησίαις, +εἰς +Ἔφεσον +καὶ +εἰς +Σμύρναν +καὶ +εἰς +Πέργαμον +καὶ +εἰς +Θυάτειρα +καὶ +εἰς +Σάρδεις +καὶ +εἰς +Φιλαδελφίαν +καὶ +εἰς +Λαοδικίαν. +Καὶ +ἐπέστρεψα +βλέπειν +τὴν +φωνὴν +ἥτις +ἐλάλει +μετ’ +ἐμοῦ· +καὶ +ἐπιστρέψας +εἶδον +ἑπτὰ +λυχνίας +χρυσᾶς, +καὶ +ἐν +μέσῳ +τῶν +λυχνιῶν +ὅμοιον +υἱὸν +ἀνθρώπου, +ἐνδεδυμένον +ποδήρη +καὶ +περιεζωσμένον +πρὸς +τοῖς +μαστοῖς +ζώνην +χρυσᾶν· +δὲ +ἡ +κεφαλὴ +αὐτοῦ +καὶ +αἱ +τρίχες +λευκαὶ +ὡς +ἔριον +λευκόν +ὡς +χιών, +καὶ +οἱ +ὀφθαλμοὶ +αὐτοῦ +ὡς +φλὸξ +πυρός, +καὶ +οἱ +πόδες +αὐτοῦ +ὅμοιοι +χαλκολιβάνῳ +ὡς +ἐν +καμίνῳ +πεπυρωμένης, +καὶ +ἡ +φωνὴ +αὐτοῦ +ὡς +φωνὴ +ὑδάτων +πολλῶν, +καὶ +ἔχων +ἐν +τῇ +δεξιᾷ +χειρὶ +αὐτοῦ +ἀστέρας +ἑπτά, +καὶ +ἐκ +τοῦ +στόματος +αὐτοῦ +ῥομφαία +δίστομος +ὀξεῖα +ἐκπορευομένη, +καὶ +ἡ +ὄψις +αὐτοῦ +ὡς +ὁ +ἥλιος +φαίνει +ἐν +τῇ +δυνάμει +αὐτοῦ. +Καὶ +ὅτε +εἶδον +αὐτόν, +ἔπεσα +πρὸς +τοὺς +πόδας +αὐτοῦ +ὡς +νεκρός· +καὶ +ἔθηκεν +τὴν +δεξιὰν +αὐτοῦ +ἐπ’ +ἐμὲ +λέγων +Μὴ +φοβοῦ· +ἐγώ +εἰμι +ὁ +πρῶτος +καὶ +ὁ +ἔσχατος +καὶ +ὁ +Ζῶν, +καὶ +ἐγενόμην +νεκρὸς +καὶ +ἰδοὺ +ζῶν +εἰμι +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων, +καὶ +ἔχω +τὰς +κλεῖς +τοῦ +θανάτου +καὶ +τοῦ +Ἅιδου. +οὖν +γράψον +ἃ +εἶδες +καὶ +ἃ +εἰσὶν +καὶ +ἃ +μέλλει +γενέσθαι +μετὰ +ταῦτα. +τὸ +μυστήριον +τῶν +ἑπτὰ +ἀστέρων +οὓς +εἶδες +ἐπὶ +τῆς +δεξιᾶς +μου, +καὶ +τὰς +ἑπτὰ +λυχνίας +τὰς +χρυσᾶς· +οἱ +ἑπτὰ +ἀστέρες +ἄγγελοι +τῶν +ἑπτὰ +ἐκκλησιῶν +εἰσίν, +καὶ +αἱ +λυχνίαι +αἱ +ἑπτὰ +ἑπτὰ +ἐκκλησίαι +εἰσίν. +Τῷ +ἀγγέλῳ +τῆς +ἐν +Ἐφέσῳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +κρατῶν +τοὺς +ἑπτὰ +ἀστέρας +ἐν +τῇ +δεξιᾷ +αὐτοῦ, +ὁ +περιπατῶν +ἐν +μέσῳ +τῶν +ἑπτὰ +λυχνιῶν +τῶν +χρυσῶν +Οἶδα +τὰ +ἔργα +σου +καὶ +τὸν +κόπον +καὶ +τὴν +ὑπομονήν +σου, +καὶ +ὅτι +οὐ +δύνῃ +βαστάσαι +κακούς, +καὶ +ἐπείρασας +τοὺς +λέγοντας +ἑαυτοὺς +ἀποστόλους +καὶ +οὐκ +εἰσίν, +καὶ +εὗρες +αὐτοὺς +ψευδεῖς· +καὶ +ὑπομονὴν +ἔχεις, +καὶ +ἐβάστασας +διὰ +τὸ +ὄνομά +μου, +καὶ +οὐ +κεκοπίακες. +ἀλλὰ +ἔχω +κατὰ +σοῦ +ὅτι +τὴν +ἀγάπην +σου +τὴν +πρώτην +ἀφῆκες. +οὖν +μνημόνευε +πόθεν +πέπτωκες, +καὶ +μετανόησον +καὶ +τὰ +πρῶτα +ἔργα +ποίησον· +δὲ +εἰ +μή, +ἔρχομαί +σοι +καὶ +κινήσω +τὴν +λυχνίαν +σου +ἐκ +τοῦ +τόπου +αὐτῆς, +ἐὰν +μὴ +μετανοήσῃς. +ἀλλὰ +τοῦτο +ἔχεις, +ὅτι +μισεῖς +τὰ +ἔργα +τῶν +Νικολαϊτῶν, +ἃ +κἀγὼ +μισῶ. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Τῷ +νικῶντι +δώσω +αὐτῷ +φαγεῖν +ἐκ +τοῦ +ξύλου +τῆς +ζωῆς, +ὅ +ἐστιν +ἐν +τῷ +Παραδείσῳ +τοῦ +Θεοῦ. +Καὶ +τῷ +ἀγγέλῳ +τῆς +ἐν +Σμύρνῃ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +πρῶτος +καὶ +ὁ +ἔσχατος, +ὃς +ἐγένετο +νεκρὸς +καὶ +ἔζησεν +Οἶδά +σου +τὴν +θλῖψιν +καὶ +τὴν +πτωχείαν, +ἀλλὰ +πλούσιος +εἶ, +καὶ +τὴν +βλασφημίαν +ἐκ +τῶν +λεγόντων +Ἰουδαίους +εἶναι +ἑαυτούς, +καὶ +οὐκ +εἰσίν +ἀλλὰ +συναγωγὴ +τοῦ +Σατανᾶ. +μὴ +φοβοῦ +ἃ +πάσχειν. +μέλλεις +ἰδοὺ +μέλλει +ὁ +διάβολος +βάλλειν +ἐξ +ὑμῶν +εἰς +φυλακὴν +ἵνα +πειρασθῆτε, +καὶ +ἕξετε +θλῖψιν +ἡμερῶν +δέκα. +γίνου +πιστὸς +ἄχρι +θανάτου, +καὶ +δώσω +σοι +τὸν +στέφανον +τῆς +ζωῆς. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Ὁ +νικῶν +οὐ +μὴ +ἀδικηθῇ +ἐκ +τοῦ +θανάτου +τοῦ +δευτέρου. +Καὶ +τῷ +ἀγγέλῳ +τῆς +ἐν +Περγάμῳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +ἔχων +τὴν +ῥομφαίαν +τὴν +δίστομον +τὴν +ὀξεῖαν +Οἶδα +ποῦ +κατοικεῖς· +ὅπου +ὁ +θρόνος +τοῦ +Σατανᾶ· +καὶ +κρατεῖς +τὸ +ὄνομά +μου, +καὶ +οὐκ +ἠρνήσω +τὴν +πίστιν +μου +καὶ +ἐν +ταῖς +ἡμέραις +Ἀντιπᾶς +ὁ +μάρτυς +μου +ὁ +πιστός +μου, +ὃς +ἀπεκτάνθη +παρ’ +ὑμῖν, +ὅπου +ὁ +Σατανᾶς +κατοικεῖ. +ἀλλ’ +ἔχω +κατὰ +σοῦ +ὀλίγα, +ὅτι +ἔχεις +ἐκεῖ +κρατοῦντας +τὴν +διδαχὴν +Βαλαάμ, +ὃς +ἐδίδασκεν +τῷ +Βαλὰκ +βαλεῖν +σκάνδαλον +ἐνώπιον +τῶν +υἱῶν +Ἰσραήλ, +φαγεῖν +εἰδωλόθυτα +καὶ +πορνεῦσαι. +οὕτως +ἔχεις +καὶ +σὺ +κρατοῦντας +τὴν +διδαχὴν +τῶν +Νικολαϊτῶν +ὁμοίως. +οὖν· +μετανόησον +δὲ +εἰ +μή, +ἔρχομαί +σοι +ταχύ +καὶ +πολεμήσω +μετ’ +αὐτῶν +ἐν +τῇ +ῥομφαίᾳ +τοῦ +στόματός +μου. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Τῷ +νικῶντι +δώσω +αὐτῷ +τοῦ +μάννα +τοῦ +κεκρυμμένου, +καὶ +δώσω +αὐτῷ +ψῆφον +λευκήν, +καὶ +ἐπὶ +τὴν +ψῆφον +γεγραμμένον, +ὄνομα +καινὸν +ὃ +οὐδεὶς +οἶδεν +εἰ +μὴ +ὁ +λαμβάνων. +Καὶ +τῷ +ἀγγέλῳ +τῆς +ἐν +Θυατείροις +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +Υἱὸς +τοῦ +Θεοῦ, +ὁ +ἔχων +τοὺς +ὀφθαλμοὺς +αὐτοῦ +ὡς +φλόγα +πυρός, +καὶ +οἱ +πόδες +αὐτοῦ +ὅμοιοι +χαλκολιβάνῳ +Οἶδά +σου +τὰ +ἔργα +καὶ +τὴν +ἀγάπην +καὶ +τὴν +πίστιν +καὶ +τὴν +διακονίαν +καὶ +τὴν +ὑπομονήν +σου, +καὶ +τὰ +ἔργα +σου +τὰ +ἔσχατα +πλείονα +τῶν +πρώτων. +ἀλλὰ +ἔχω +κατὰ +σοῦ +ὅτι +ἀφεῖς +τὴν +γυναῖκα +Ἰεζάβελ, +ἡ +λέγουσα +ἑαυτὴν +προφῆτιν, +καὶ +διδάσκει +καὶ +πλανᾷ +τοὺς +ἐμοὺς +δούλους +πορνεῦσαι +καὶ +φαγεῖν +εἰδωλόθυτα· +καὶ +ἔδωκα +αὐτῇ +χρόνον +ἵνα +μετανοήσῃ, +καὶ +οὐ +θέλει +μετανοῆσαι +ἐκ +τῆς +πορνείας +αὐτῆς. +ἰδοὺ +βάλλω +αὐτὴν +εἰς +κλίνην, +καὶ +τοὺς +μοιχεύοντας +μετ’ +αὐτῆς +εἰς +θλῖψιν +μεγάλην, +ἐὰν +μὴ +μετανοήσουσιν +ἐκ +τῶν +ἔργων +αὐτῆς· +καὶ +τὰ +τέκνα +αὐτῆς +ἀποκτενῶ +ἐν +θανάτῳ· +καὶ +γνώσονται +πᾶσαι +αἱ +ἐκκλησίαι +ὅτι +ἐγώ +εἰμι +ὁ +ἐραυνῶν +νεφροὺς +καὶ +καρδίας, +καὶ +δώσω +ὑμῖν +ἑκάστῳ +κατὰ +τὰ +ἔργα +ὑμῶν. +δὲ +λέγω +ὑμῖν +τοῖς +λοιποῖς +τοῖς +ἐν +Θυατείροις, +ὅσοι +οὐκ +ἔχουσιν +τὴν +διδαχὴν +ταύτην, +οἵτινες +οὐκ +ἔγνωσαν +τὰ +βαθέα +τοῦ +Σατανᾶ, +ὡς +λέγουσιν, +οὐ +βάλλω +ἐφ’ +ὑμᾶς +ἄλλο +βάρος· +πλὴν +ὃ +ἔχετε +κρατήσατε +ἄχρι +ἂν +οὗ +ἥξω. +Καὶ +ὁ +νικῶν +καὶ +ὁ +τηρῶν +ἄχρι +τέλους +τὰ +ἔργα +μου, +δώσω +αὐτῷ +ἐξουσίαν +ἐπὶ +τῶν +ἐθνῶν, +καὶ +ποιμανεῖ +αὐτοὺς +ἐν +ῥάβδῳ +σιδηρᾷ, +ὡς +τὰ +σκεύη +τὰ +κεραμικὰ +συντρίβεται, +ὡς +κἀγὼ +εἴληφα +παρὰ +τοῦ +Πατρός +μου, +καὶ +δώσω +αὐτῷ +τὸν +ἀστέρα +τὸν +πρωϊνόν. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Καὶ +τῷ +ἀγγέλῳ +τῆς +ἐν +Σάρδεσιν +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +ἔχων +τὰ +ἑπτὰ +Πνεύματα +τοῦ +Θεοῦ +καὶ +τοὺς +ἑπτὰ +ἀστέρας +Οἶδά +σου +τὰ +ἔργα, +ὅτι +ὄνομα +ἔχεις +ὅτι +ζῇς, +καὶ +νεκρὸς +εἶ. +γίνου +γρηγορῶν, +καὶ +στήρισον +τὰ +λοιπὰ +ἃ +ἔμελλον +ἀποθανεῖν· +γὰρ +οὐ +εὕρηκά +σου +ἔργα +πεπληρωμένα +ἐνώπιον +τοῦ +Θεοῦ +μου· +οὖν +μνημόνευε +πῶς +εἴληφας +καὶ +ἤκουσας, +καὶ +τήρει +καὶ +μετανόησον. +οὖν +ἐὰν +μὴ +γρηγορήσῃς, +ἥξω +ὡς +κλέπτης, +καὶ +οὐ +μὴ +γνῷς +ποίαν +ὥραν +ἥξω +ἐπὶ +σέ. +ἀλλὰ +ἔχεις +ὀλίγα +ὀνόματα +ἐν +Σάρδεσιν +ἃ +οὐκ +ἐμόλυναν +τὰ +ἱμάτια +αὐτῶν, +καὶ +περιπατήσουσιν +μετ’ +ἐμοῦ +ἐν +λευκοῖς, +ὅτι +ἄξιοί +εἰσιν. +Ὁ +νικῶν +οὕτως +περιβαλεῖται +ἐν +ἱματίοις +λευκοῖς, +καὶ +οὐ +μὴ +ἐξαλείψω +τὸ +ὄνομα +αὐτοῦ +ἐκ +τῆς +βίβλου +τῆς +ζωῆς, +καὶ +ὁμολογήσω +τὸ +ὄνομα +αὐτοῦ +ἐνώπιον +τοῦ +Πατρός +μου +καὶ +ἐνώπιον +τῶν +ἀγγέλων +αὐτοῦ. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Καὶ +τῷ +ἀγγέλῳ +τῆς +ἐν +Φιλαδελφίᾳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +ἅγιος, +ὁ +ἀληθινός, +ὁ +ἔχων +τὴν +κλεῖν +Δαυείδ, +ὁ +ἀνοίγων +καὶ +οὐδεὶς +κλείσει, +καὶ +κλείων +καὶ +οὐδεὶς +ἀνοίγει +Οἶδά +σου +τὰ +ἔργα· +ἰδοὺ +δέδωκα +ἐνώπιόν +σου +θύραν +ἠνεῳγμένην, +ἣν +αὐτήν· +κλεῖσαι +οὐδεὶς +δύναται +ὅτι +μικρὰν +δύναμιν, +ἔχεις +καὶ +ἐτήρησάς +μου +τὸν +λόγον +καὶ +οὐκ +ἠρνήσω +τὸ +ὄνομά +μου. +ἰδοὺ +διδῶ +ἐκ +τῆς +συναγωγῆς +τοῦ +Σατανᾶ, +τῶν +λεγόντων +ἑαυτοὺς +Ἰουδαίους +εἶναι, +καὶ +οὐκ +εἰσὶν +ἀλλὰ +ψεύδονται· +ἰδοὺ +ποιήσω +αὐτοὺς +ἵνα +ἥξουσιν +καὶ +προσκυνήσουσιν +ἐνώπιον +τῶν +ποδῶν +σου, +καὶ +γνῶσιν +ὅτι +ἐγὼ +ἠγάπησά +σε. +ὅτι +ἐτήρησας +τὸν +λόγον +τῆς +ὑπομονῆς +μου, +κἀγώ +σε +τηρήσω +ἐκ +τῆς +ὥρας +τοῦ +πειρασμοῦ +τῆς +μελλούσης +ἔρχεσθαι +ἐπὶ +τῆς +οἰκουμένης +ὅλης, +πειράσαι +τοὺς +κατοικοῦντας +ἐπὶ +τῆς +γῆς. +ἔρχομαι +ταχύ· +κράτει +ὃ +ἔχεις, +ἵνα +μηδεὶς +λάβῃ +τὸν +στέφανόν +σου. +Ὁ +νικῶν, +ποιήσω +αὐτὸν +στῦλον +ἐν +τῷ +ναῷ +τοῦ +Θεοῦ +μου, +καὶ +ἔξω +οὐ +μὴ +ἐξέλθῃ +ἔτι, +καὶ +γράψω +ἐπ’ +αὐτὸν +τὸ +ὄνομα +τοῦ +Θεοῦ +μου +καὶ +τὸ +ὄνομα +τῆς +πόλεως +τοῦ +Θεοῦ +μου, +τῆς +καινῆς +Ἱερουσαλὴμ +ἡ +καταβαίνουσα +ἐκ +τοῦ +οὐρανοῦ +ἀπὸ +τοῦ +Θεοῦ +μου, +καὶ +τὸ +ὄνομά +μου +τὸ +καινόν. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Καὶ +τῷ +ἀγγέλῳ +τῆς +ἐν +Λαοδικίᾳ +ἐκκλησίας +γράψον +Τάδε +λέγει +ὁ +Ἀμήν, +ὁ +μάρτυς +ὁ +πιστὸς +καὶ +ἀληθινός, +ἡ +ἀρχὴ +τῆς +κτίσεως +τοῦ +Θεοῦ +Οἶδά +σου +τὰ +ἔργα, +ὅτι +εἶ +οὔτε +ψυχρὸς +οὔτε +ζεστός. +ὄφελον +ἦς +ψυχρὸς +ἢ +ζεστός. +οὕτως, +ὅτι +χλιαρὸς +εἶ, +καὶ +οὔτε +ζεστὸς +οὔτε +ψυχρός, +μέλλω +σε +ἐμέσαι +ἐκ +τοῦ +στόματός +μου. +ὅτι +λέγεις +ὅτι +Πλούσιός +εἰμι +καὶ +πεπλούτηκα +καὶ +οὐδὲν +χρείαν +ἔχω, +καὶ +οὐκ +οἶδας +ὅτι +σὺ +εἶ +ὁ +ταλαίπωρος +καὶ +ἐλεεινὸς +καὶ +πτωχὸς +καὶ +τυφλὸς +καὶ +γυμνός, +συμβουλεύω +σοι +ἀγοράσαι +παρ’ +ἐμοῦ +χρυσίον +πεπυρωμένον +ἐκ +πυρὸς +ἵνα +πλουτήσῃς, +καὶ +ἱμάτια +λευκὰ +ἵνα +περιβάλῃ +καὶ +μὴ +φανερωθῇ +ἡ +αἰσχύνη +τῆς +γυμνότητός +σου, +καὶ +κολλούριον +ἐγχρῖσαι +τοὺς +ὀφθαλμούς +σου +ἵνα +βλέπῃς. +ἐγὼ +ἐὰν +ὅσους +φιλῶ +ἐλέγχω +καὶ +παιδεύω· +οὖν +ζήλευε +καὶ +μετανόησον. +Ἰδοὺ +ἕστηκα +ἐπὶ +τὴν +θύραν +καὶ +κρούω· +ἐάν +τις +ἀκούσῃ +τῆς +φωνῆς +μου +καὶ +ἀνοίξῃ +τὴν +θύραν, +εἰσελεύσομαι +πρὸς +αὐτὸν +καὶ +δειπνήσω +μετ’ +αὐτοῦ +καὶ +αὐτὸς +μετ’ +ἐμοῦ. +Ὁ +νικῶν +δώσω +αὐτῷ +καθίσαι +μετ’ +ἐμοῦ +ἐν +τῷ +θρόνῳ +μου, +ὡς +κἀγὼ +ἐνίκησα +καὶ +ἐκάθισα +μετὰ +τοῦ +Πατρός +μου +ἐν +τῷ +θρόνῳ +αὐτοῦ. +Ὁ +ἔχων +οὖς +ἀκουσάτω +τί +τὸ +Πνεῦμα +λέγει +ταῖς +ἐκκλησίαις. +Μετὰ +ταῦτα +εἶδον, +καὶ +ἰδοὺ +θύρα +ἠνεῳγμένη +ἐν +τῷ +οὐρανῷ, +καὶ +ἡ +φωνὴ +ἡ +πρώτη +ἣν +ἤκουσα +ὡς +σάλπιγγος +λαλούσης +μετ’ +ἐμοῦ, +λέγων +Ἀνάβα +ὧδε, +καὶ +δείξω +σοι +ἃ +γενέσθαι +μετὰ +ταῦτα. +δεῖ +εὐθέως +ἐγενόμην +ἐν +Πνεύματι· +καὶ +ἰδοὺ +θρόνος +ἔκειτο +ἐν +τῷ +οὐρανῷ, +καὶ +ἐπὶ +τὸν +θρόνον +καθήμενος, +καὶ +ὁ +καθήμενος +ὅμοιος +ὁράσει +λίθῳ +ἰάσπιδι +καὶ +σαρδίῳ, +καὶ +ἶρις +κυκλόθεν +τοῦ +θρόνου +ὅμοιος +ὁράσει +σμαραγδίνῳ. +καὶ +κυκλόθεν +τοῦ +θρόνου +θρόνους +εἴκοσι +τέσσαρας, +καὶ +ἐπὶ +τοὺς +θρόνους +εἴκοσι +τέσσαρας +πρεσβυτέρους +καθημένους +περιβεβλημένους +ἐν +ἱματίοις +λευκοῖς, +καὶ +ἐπὶ +τὰς +κεφαλὰς +αὐτῶν +στεφάνους +χρυσοῦς. +καὶ +ἐκ +τοῦ +θρόνου +ἐκπορεύονται +ἀστραπαὶ +καὶ +φωναὶ +καὶ +βρονταί· +καὶ +ἑπτὰ +λαμπάδες +πυρὸς +καιόμεναι +ἐνώπιον +τοῦ +θρόνου, +ἅ +εἰσιν +τὰ +ἑπτὰ +Πνεύματα +τοῦ +Θεοῦ· +καὶ +ἐνώπιον +τοῦ +θρόνου +ὡς +θάλασσα +ὑαλίνη +ὁμοία +κρυστάλλῳ· +καὶ +ἐν +μέσῳ +τοῦ +θρόνου +καὶ +κύκλῳ +τοῦ +θρόνου +τέσσερα +ζῷα +γέμοντα +ὀφθαλμῶν +ἔμπροσθεν +καὶ +ὄπισθεν. +καὶ +τὸ +ζῷον +τὸ +πρῶτον +ὅμοιον +λέοντι, +καὶ +τὸ +δεύτερον +ζῷον +ὅμοιον +μόσχῳ, +καὶ +τὸ +τρίτον +ζῷον +ἔχων +τὸ +πρόσωπον +ὡς +ἀνθρώπου, +καὶ +τὸ +τέταρτον +ζῷον +ὅμοιον +ἀετῷ +πετομένῳ. +καὶ +τὰ +τέσσερα +ζῷα, +ἓν +καθ’ +ἓν +αὐτῶν +ἔχων +ἀνὰ +πτέρυγας +ἕξ, +κυκλόθεν +καὶ +ἔσωθεν +γέμουσιν +ὀφθαλμῶν· +καὶ +ἀνάπαυσιν +οὐκ +ἔχουσιν +ἡμέρας +καὶ +νυκτὸς +λέγοντες +Ἅγιος +ἅγιος +ἅγιος +Κύριος +ὁ +Θεός +ὁ +Παντοκράτωρ, +ὁ +ἦν +καὶ +ὁ +ὢν +καὶ +ὁ +ἐρχόμενος. +Καὶ +ὅταν +δώσουσιν +τὰ +ζῷα +δόξαν +καὶ +τιμὴν +καὶ +εὐχαριστίαν +τῷ +καθημένῳ +ἐπὶ +τῷ +θρόνῳ +τῷ +ζῶντι +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων, +πεσοῦνται +οἱ +εἴκοσι +τέσσαρες +πρεσβύτεροι +ἐνώπιον +τοῦ +καθημένου +ἐπὶ +τοῦ +θρόνου, +καὶ +προσκυνήσουσιν +τῷ +ζῶντι +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων, +καὶ +βαλοῦσιν +τοὺς +στεφάνους +αὐτῶν +ἐνώπιον +τοῦ +θρόνου, +λέγοντες +ὁ +Κύριος +καὶ +ὁ +Θεὸς +ἡμῶν, +Ἄξιος +εἶ, +λαβεῖν +τὴν +δόξαν +καὶ +τὴν +τιμὴν +καὶ +τὴν +δύναμιν, +ὅτι +σὺ +ἔκτισας +τὰ +πάντα, +καὶ +διὰ +τὸ +θέλημά +σου +ἦσαν +καὶ +ἐκτίσθησαν. +Καὶ +εἶδον +ἐπὶ +τὴν +δεξιὰν +τοῦ +καθημένου +ἐπὶ +τοῦ +θρόνου +βιβλίον +γεγραμμένον +ἔσωθεν +καὶ +ὄπισθεν, +κατεσφραγισμένον +σφραγῖσιν +ἑπτά. +καὶ +εἶδον +ἄγγελον +ἰσχυρὸν +κηρύσσοντα +ἐν +φωνῇ +μεγάλῃ +Τίς +ἄξιος +ἀνοῖξαι +τὸ +βιβλίον +καὶ +λῦσαι +τὰς +σφραγῖδας +αὐτοῦ; +καὶ +ἐδύνατο +οὐδεὶς +ἐν +τῷ +οὐρανῷ +οὐδὲ +ἐπὶ +τῆς +γῆς +οὐδὲ +ὑποκάτω +τῆς +γῆς +ἀνοῖξαι +τὸ +βιβλίον +οὔτε +βλέπειν +αὐτό. +καὶ +ἔκλαιον +πολὺ, +ὅτι +οὐδεὶς +ἄξιος +εὑρέθη +ἀνοῖξαι +τὸ +βιβλίον +οὔτε +βλέπειν +αὐτό. +καὶ +εἷς +ἐκ +τῶν +πρεσβυτέρων +λέγει +μοι +Μὴ +κλαῖε· +ἰδοὺ +ἐνίκησεν +ὁ +Λέων +ὁ +ἐκ +τῆς +φυλῆς +Ἰούδα, +ἡ +Ῥίζα +Δαυείδ, +ἀνοῖξαι +τὸ +βιβλίον +καὶ +τὰς +ἑπτὰ +σφραγῖδας +αὐτοῦ. +Καὶ +εἶδον +ἐν +μέσῳ +τοῦ +θρόνου +καὶ +τῶν +τεσσάρων +ζῴων +καὶ +ἐν +μέσῳ +τῶν +πρεσβυτέρων +Ἀρνίον +ἑστηκὸς +ὡς +ἐσφαγμένον, +ἔχων +κέρατα +ἑπτὰ +καὶ +ὀφθαλμοὺς +ἑπτά, +οἵ +εἰσιν +τὰ +ἑπτὰ +Πνεύματα +τοῦ +Θεοῦ +ἀπεσταλμένοι +εἰς +πᾶσαν +τὴν +γῆν. +καὶ +ἦλθεν +καὶ +εἴληφεν +ἐκ +τῆς +δεξιᾶς +τοῦ +καθημένου +ἐπὶ +τοῦ +θρόνου. +Καὶ +ὅτε +ἔλαβεν +τὸ +βιβλίον, +τὰ +τέσσερα +ζῷα +καὶ +οἱ +εἴκοσι +τέσσαρες +πρεσβύτεροι +ἔπεσαν +ἐνώπιον +τοῦ +Ἀρνίου, +ἔχοντες +ἕκαστος +κιθάραν +καὶ +φιάλας +χρυσᾶς +γεμούσας +θυμιαμάτων, +αἵ +εἰσιν +αἱ +προσευχαὶ +τῶν +ἁγίων. +καὶ +ᾄδουσιν +ᾠδὴν +καινὴν +λέγοντες +Ἄξιος +εἶ +λαβεῖν +τὸ +βιβλίον +καὶ +ἀνοῖξαι +τὰς +σφραγῖδας +αὐτοῦ, +ὅτι +ἐσφάγης +καὶ +ἠγόρασας +τῷ +Θεῷ +ἐν +τῷ +αἵματί +σου +ἐκ +πάσης +φυλῆς +καὶ +γλώσσης +καὶ +λαοῦ +καὶ +ἔθνους, +καὶ +ἐποίησας +αὐτοὺς +τῷ +Θεῷ +ἡμῶν +βασιλείαν +καὶ +ἱερεῖς, +καὶ +βασιλεύσουσιν +ἐπὶ +τῆς +γῆς. +καὶ +εἶδον, +καὶ +ἤκουσα +φωνὴν +ἀγγέλων +πολλῶν +κύκλῳ +τοῦ +θρόνου +καὶ +τῶν +ζῴων +καὶ +τῶν +πρεσβυτέρων, +καὶ +ἦν +ὁ +ἀριθμὸς +αὐτῶν +μυριάδες +μυριάδων +καὶ +χιλιάδες +χιλιάδων, +λέγοντες +φωνῇ +μεγάλῃ +Ἄξιός +ἐστιν +τὸ +Ἀρνίον +τὸ +ἐσφαγμένον +λαβεῖν +τὴν +δύναμιν +καὶ +πλοῦτον +καὶ +σοφίαν +καὶ +ἰσχὺν +καὶ +τιμὴν +καὶ +δόξαν +καὶ +εὐλογίαν. +καὶ +πᾶν +κτίσμα +ὃ +ἐν +τῷ +οὐρανῷ +καὶ +ἐπὶ +τῆς +γῆς +καὶ +ὑποκάτω +τῆς +γῆς +καὶ +ἐπὶ +τῆς +θαλάσσης +ἐστίν, +καὶ +τὰ +ἐν +αὐτοῖς +πάντα, +λέγοντας +ἤκουσα +Τῷ +καθημένῳ +ἐπὶ +τῷ +θρόνῳ +καὶ +τῷ +Ἀρνίῳ +ἡ +εὐλογία +καὶ +ἡ +τιμὴ +καὶ +ἡ +δόξα +καὶ +τὸ +κράτος +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων. +καὶ +τὰ +τέσσερα +ζῷα +ἔλεγον +Ἀμήν, +καὶ +οἱ +πρεσβύτεροι +ἔπεσαν +καὶ +προσεκύνησαν. +Καὶ +εἶδον +ὅτε +ἤνοιξεν +τὸ +Ἀρνίον +μίαν +ἐκ +τῶν +ἑπτὰ +σφραγίδων, +καὶ +ἤκουσα +ἑνὸς +ἐκ +τῶν +τεσσάρων +ζῴων +λέγοντος +ὡς +φωνῇ +βροντῆς +Ἔρχου. +καὶ +εἶδον, +καὶ +ἰδοὺ +ἵππος +λευκός, +καὶ +ὁ +καθήμενος +ἐπ’ +αὐτὸν +ἔχων +τόξον, +καὶ +ἐδόθη +αὐτῷ +στέφανος, +καὶ +ἐξῆλθεν +νικῶν +καὶ +ἵνα +νικήσῃ. +Καὶ +ὅτε +ἤνοιξεν +τὴν +σφραγῖδα +τὴν +δευτέραν, +ἤκουσα +τοῦ +δευτέρου +ζῴου +λέγοντος +Ἔρχου. +καὶ +ἐξῆλθεν +ἄλλος +ἵππος +πυρρός, +καὶ +τῷ +καθημένῳ +ἐπ’ +αὐτὸν +ἐδόθη +αὐτῷ +λαβεῖν +τὴν +εἰρήνην +ἐκ +τῆς +γῆς +καὶ +ἵνα +ἀλλήλους +σφάξουσιν, +καὶ +ἐδόθη +αὐτῷ +μάχαιρα +μεγάλη. +Καὶ +ὅτε +ἤνοιξεν +τὴν +σφραγῖδα +τὴν +τρίτην, +ἤκουσα +τοῦ +τρίτου +ζῴου +λέγοντος +Ἔρχου. +καὶ +εἶδον, +καὶ +ἰδοὺ +ἵππος +μέλας, +καὶ +ὁ +καθήμενος +ἐπ’ +αὐτὸν +ἔχων +ζυγὸν +ἐν +τῇ +χειρὶ +αὐτοῦ. +καὶ +ἤκουσα +ὡς +φωνὴν +ἐν +μέσῳ +τῶν +τεσσάρων +ζῴων +λέγουσαν +Χοῖνιξ +σίτου +δηναρίου, +καὶ +τρεῖς +χοίνικες +κριθῶν +δηναρίου· +καὶ +τὸ +ἔλαιον +καὶ +τὸν +οἶνον +μὴ +ἀδικήσῃς. +Καὶ +ὅτε +ἤνοιξεν +τὴν +σφραγῖδα +τὴν +τετάρτην, +ἤκουσα +φωνὴν +τοῦ +τετάρτου +ζῴου +λέγοντος +Ἔρχου. +καὶ +εἶδον, +καὶ +ἰδοὺ +ἵππος +χλωρός, +καὶ +ὁ +καθήμενος +ἐπάνω +αὐτοῦ, +ὄνομα +αὐτῷ +Ὁ +Θάνατος, +καὶ +ὁ +Ἅιδης +ἠκολούθει +μετ’ +αὐτοῦ, +καὶ +ἐδόθη +αὐτοῖς +ἐξουσία +ἐπὶ +τὸ +τέταρτον +τῆς +γῆς, +ἀποκτεῖναι +ἐν +ῥομφαίᾳ +καὶ +ἐν +λιμῷ +καὶ +ἐν +θανάτῳ +καὶ +ὑπὸ +τῶν +θηρίων +τῆς +γῆς. +Καὶ +ὅτε +ἤνοιξεν +τὴν +πέμπτην +σφραγῖδα, +εἶδον +ὑποκάτω +τοῦ +θυσιαστηρίου +τὰς +ψυχὰς +τῶν +ἐσφαγμένων +διὰ +τὸν +λόγον +τοῦ +Θεοῦ +καὶ +διὰ +τὴν +μαρτυρίαν +ἣν +εἶχον. +καὶ +ἔκραξαν +φωνῇ +μεγάλῃ +λέγοντες +ὁ +Δεσπότης +ὁ +ἅγιος +καὶ +ἀληθινός, +Ἕως +πότε, +οὐ +κρίνεις +καὶ +ἐκδικεῖς +τὸ +αἷμα +ἡμῶν +ἐκ +τῶν +κατοικούντων +ἐπὶ +τῆς +γῆς; +καὶ +ἐδόθη +αὐτοῖς +ἑκάστῳ +στολὴ +λευκή, +καὶ +ἐρρέθη +αὐτοῖς +ἵνα +ἀναπαύσωνται +ἔτι +χρόνον +μικρόν, +ἕως +πληρωθῶσιν +καὶ +οἱ +σύνδουλοι +αὐτῶν +καὶ +οἱ +ἀδελφοὶ +αὐτῶν +οἱ +μέλλοντες +ἀποκτέννεσθαι +ὡς +καὶ +αὐτοί. +Καὶ +εἶδον +ὅτε +ἤνοιξεν +τὴν +σφραγῖδα +τὴν +ἕκτην, +καὶ +σεισμὸς +μέγας +ἐγένετο, +καὶ +ὁ +ἥλιος +ἐγένετο +μέλας +ὡς +σάκκος +τρίχινος, +καὶ +ἡ +σελήνη +ὅλη +ἐγένετο +ὡς +αἷμα, +καὶ +οἱ +ἀστέρες +τοῦ +οὐρανοῦ +ἔπεσαν +εἰς +τὴν +γῆν, +ὡς +συκῆ +βάλλει +τοὺς +ὀλύνθους +αὐτῆς +ὑπὸ +ἀνέμου +μεγάλου +σειομένη, +καὶ +ὁ +οὐρανὸς +ἀπεχωρίσθη +ὡς +βιβλίον +ἑλισσόμενον, +καὶ +πᾶν +ὄρος +καὶ +νῆσος +ἐκ +τῶν +τόπων +αὐτῶν +ἐκινήθησαν. +καὶ +οἱ +βασιλεῖς +τῆς +γῆς +καὶ +οἱ +μεγιστᾶνες +καὶ +οἱ +χιλίαρχοι +καὶ +οἱ +πλούσιοι +καὶ +οἱ +ἰσχυροὶ +καὶ +πᾶς +δοῦλος +καὶ +ἐλεύθερος +ἔκρυψαν +ἑαυτοὺς +εἰς +τὰ +σπήλαια +καὶ +εἰς +τὰς +πέτρας +τῶν +ὀρέων, +καὶ +λέγουσιν +τοῖς +ὄρεσιν +καὶ +ταῖς +πέτραις +Πέσετε +ἐφ’ +ἡμᾶς +καὶ +κρύψατε +ἡμᾶς +ἀπὸ +προσώπου +τοῦ +καθημένου +ἐπὶ +τοῦ +θρόνου +καὶ +ἀπὸ +τῆς +ὀργῆς +τοῦ +Ἀρνίου, +ὅτι +ἦλθεν +ἡ +ἡμέρα +ἡ +μεγάλη +τῆς +ὀργῆς +αὐτῶν, +καὶ +τίς +δύναται +σταθῆναι; +Μετὰ +τοῦτο +εἶδον +τέσσαρας +ἀγγέλους +ἑστῶτας +ἐπὶ +τὰς +τέσσαρας +γωνίας +τῆς +γῆς, +κρατοῦντας +τοὺς +τέσσαρας +ἀνέμους +τῆς +γῆς, +ἵνα +μὴ +πνέῃ +ἄνεμος +ἐπὶ +τῆς +γῆς +μήτε +ἐπὶ +τῆς +θαλάσσης +μήτε +ἐπὶ +πᾶν +δένδρον. +καὶ +εἶδον +ἄλλον +ἄγγελον +ἀναβαίνοντα +ἀπὸ +ἀνατολῆς +ἡλίου, +ἔχοντα +σφραγῖδα +Θεοῦ +ζῶντος, +καὶ +ἔκραξεν +φωνῇ +μεγάλῃ +τοῖς +τέσσαρσιν +ἀγγέλοις +οἷς +αὐτοῖς +ἐδόθη +ἀδικῆσαι +τὴν +γῆν +καὶ +τὴν +θάλασσαν, +λέγων +Μὴ +ἀδικήσητε +τὴν +γῆν +μήτε +τὴν +θάλασσαν +μήτε +τὰ +δένδρα, +ἄχρι +σφραγίσωμεν +τοὺς +δούλους +τοῦ +Θεοῦ +ἡμῶν +ἐπὶ +τῶν +μετώπων +αὐτῶν. +Καὶ +ἤκουσα +τὸν +ἀριθμὸν +τῶν +ἐσφραγισμένων, +ἑκατὸν +τεσσεράκοντα +τέσσαρες +χιλιάδες +ἐσφραγισμένοι +ἐκ +πάσης +φυλῆς +υἱῶν +Ἰσραήλ· +ἐκ +φυλῆς +Ἰούδα +δώδεκα +χιλιάδες +ἐσφραγισμένοι, +ἐκ +φυλῆς +Ῥουβὴν +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Γὰδ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Ἀσὴρ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Νεφθαλεὶμ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Μανασσῆ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Συμεὼν +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Λευεὶ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Ἰσσαχὰρ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Ζαβουλὼν +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Ἰωσὴφ +δώδεκα +χιλιάδες, +ἐκ +φυλῆς +Βενιαμεὶν +δώδεκα +χιλιάδες +ἐσφραγισμένοι. +Μετὰ +ταῦτα +εἶδον, +καὶ +ἰδοὺ +ὄχλος +πολύς, +ὃν +αὐτὸν +ἀριθμῆσαι +οὐδεὶς +ἐδύνατο, +ἐκ +παντὸς +ἔθνους +καὶ +φυλῶν +καὶ +λαῶν +καὶ +γλωσσῶν, +ἑστῶτες +ἐνώπιον +τοῦ +θρόνου +καὶ +ἐνώπιον +τοῦ +Ἀρνίου, +περιβεβλημένους +στολὰς +λευκάς, +καὶ +φοίνικες +ἐν +ταῖς +χερσὶν +αὐτῶν· +καὶ +κράζουσιν +φωνῇ +μεγάλῃ +λέγοντες +Ἠ +σωτηρία +τῷ +Θεῷ +ἡμῶν +τῷ +καθημένῳ +ἐπὶ +τῷ +θρόνῳ +καὶ +τῷ +Ἀρνίῳ. +καὶ +πάντες +οἱ +ἄγγελοι +εἱστήκεισαν +κύκλῳ +τοῦ +θρόνου +καὶ +τῶν +πρεσβυτέρων +καὶ +τῶν +τεσσάρων +ζῴων, +καὶ +ἔπεσαν +ἐνώπιον +τοῦ +θρόνου +ἐπὶ +τὰ +πρόσωπα +αὐτῶν +καὶ +προσεκύνησαν +τῷ +Θεῷ, +λέγοντες +Ἀμήν, +ἡ +εὐλογία +καὶ +ἡ +δόξα +καὶ +ἡ +σοφία +καὶ +ἡ +εὐχαριστία +καὶ +ἡ +τιμὴ +καὶ +ἡ +δύναμις +καὶ +ἡ +ἰσχὺς +τῷ +Θεῷ +ἡμῶν +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων· +ἀμήν. +Καὶ +ἀπεκρίθη +εἷς +ἐκ +τῶν +πρεσβυτέρων +λέγων +μοι +Οὗτοι +οἱ +περιβεβλημένοι +τὰς +στολὰς +τὰς +λευκὰς +τίνες +εἰσὶν +καὶ +πόθεν +ἦλθον; +καὶ +εἴρηκα +αὐτῷ +Κύριέ +μου, +σὺ +οἶδας. +καὶ +εἶπέν +μοι +Οὗτοί +εἰσιν +οἱ +ἐρχόμενοι +ἐκ +τῆς +θλίψεως +τῆς +μεγάλης, +καὶ +ἔπλυναν +τὰς +στολὰς +αὐτῶν +καὶ +ἐλεύκαναν +αὐτὰς +ἐν +τῷ +αἵματι +τοῦ +Ἀρνίου. +διὰ +τοῦτό +εἰσιν +ἐνώπιον +τοῦ +θρόνου +τοῦ +Θεοῦ, +καὶ +λατρεύουσιν +αὐτῷ +ἡμέρας +καὶ +νυκτὸς +ἐν +τῷ +ναῷ +αὐτοῦ, +καὶ +ὁ +καθήμενος +ἐπὶ +τοῦ +θρόνου +σκηνώσει +ἐπ’ +αὐτούς. +οὐ +πεινάσουσιν +ἔτι +οὐδὲ +διψήσουσιν +ἔτι, +οὐδὲ +μὴ +πέσῃ +ἐπ’ +αὐτοὺς +ὁ +ἥλιος +οὐδὲ +πᾶν +καῦμα, +ὅτι +τὸ +Ἀρνίον +τὸ +ἀνὰ +μέσον +τοῦ +θρόνου +ποιμανεῖ +αὐτούς +καὶ +ὁδηγήσει +αὐτοὺς +ἐπὶ +ζωῆς +πηγὰς +ὑδάτων· +καὶ +ἐξαλείψει +ὁ +Θεὸς +πᾶν +δάκρυον +ἐκ +τῶν +ὀφθαλμῶν +αὐτῶν. +Καὶ +ὅταν +ἤνοιξεν +τὴν +σφραγῖδα +τὴν +ἑβδόμην, +ἐγένετο +σιγὴ +ἐν +τῷ +οὐρανῷ +ὡς +ἡμιώριον. +καὶ +εἶδον +τοὺς +ἑπτὰ +ἀγγέλους +οἳ +ἐνώπιον +τοῦ +Θεοῦ +ἑστήκασιν, +καὶ +ἐδόθησαν +αὐτοῖς +ἑπτὰ +σάλπιγγες. +Καὶ +ἄλλος +ἄγγελος +ἦλθεν +καὶ +ἐστάθη +ἐπὶ +τοῦ +θυσιαστηρίου +ἔχων +λιβανωτὸν +χρυσοῦν, +καὶ +ἐδόθη +αὐτῷ +θυμιάματα +πολλὰ +ἵνα +δώσει +ταῖς +προσευχαῖς +τῶν +ἁγίων +πάντων +ἐπὶ +τὸ +θυσιαστήριον +τὸ +χρυσοῦν +τὸ +ἐνώπιον +τοῦ +θρόνου. +καὶ +ἀνέβη +ὁ +καπνὸς +τῶν +θυμιαμάτων +ταῖς +προσευχαῖς +τῶν +ἁγίων +ἐκ +χειρὸς +τοῦ +ἀγγέλου +ἐνώπιον +τοῦ +Θεοῦ. +καὶ +εἴληφεν +ὁ +ἄγγελος +τὸν +λιβανωτόν, +καὶ +ἐγέμισεν +αὐτὸν +ἐκ +τοῦ +πυρὸς +τοῦ +θυσιαστηρίου +καὶ +ἔβαλεν +εἰς +τὴν +γῆν· +καὶ +ἐγένοντο +βρονταὶ +καὶ +φωναὶ +καὶ +ἀστραπαὶ +καὶ +σεισμός. +Καὶ +οἱ +ἑπτὰ +ἄγγελοι +οἱ +ἔχοντες +τὰς +ἑπτὰ +σάλπιγγας +ἡτοίμασαν +αὑτοὺς +ἵνα +σαλπίσωσιν. +Καὶ +ὁ +πρῶτος +ἐσάλπισεν· +καὶ +ἐγένετο +χάλαζα +καὶ +πῦρ +μεμιγμένα +ἐν +αἵματι +καὶ +ἐβλήθη +εἰς +τὴν +γῆν· +καὶ +τὸ +τρίτον +τῆς +γῆς +κατεκάη, +καὶ +τὸ +τρίτον +τῶν +δένδρων +κατεκάη, +καὶ +πᾶς +χόρτος +χλωρὸς +κατεκάη. +Καὶ +ὁ +δεύτερος +ἄγγελος +ἐσάλπισεν· +καὶ +ὡς +ὄρος +μέγα +πυρὶ +καιόμενον +ἐβλήθη +εἰς +τὴν +θάλασσαν· +καὶ +ἐγένετο +τὸ +τρίτον +τῆς +θαλάσσης +αἷμα, +καὶ +ἀπέθανεν +τὸ +τρίτον +τῶν +κτισμάτων +τῶν +ἐν +τῇ +θαλάσσῃ, +τὰ +ἔχοντα +ψυχάς, +καὶ +τὸ +τρίτον +τῶν +πλοίων +διεφθάρησαν. +Καὶ +ὁ +τρίτος +ἄγγελος +ἐσάλπισεν· +καὶ +ἔπεσεν +ἐκ +τοῦ +οὐρανοῦ +ἀστὴρ +μέγας +καιόμενος +ὡς +λαμπάς, +καὶ +ἔπεσεν +ἐπὶ +τὸ +τρίτον +τῶν +ποταμῶν +καὶ +ἐπὶ +τὰς +πηγὰς +τῶν +ὑδάτων. +καὶ +τὸ +ὄνομα +τοῦ +ἀστέρος +λέγεται +Ὁ +Ἄψινθος. +καὶ +ἐγένετο +τὸ +τρίτον +τῶν +ὑδάτων +εἰς +ἄψινθον, +καὶ +πολλοὶ +τῶν +ἀνθρώπων +ἀπέθανον +ἐκ +τῶν +ὑδάτων +ὅτι +ἐπικράνθησαν. +Καὶ +ὁ +τέταρτος +ἄγγελος +ἐσάλπισεν· +καὶ +ἐπλήγη +τὸ +τρίτον +τοῦ +ἡλίου +καὶ +τὸ +τρίτον +τῆς +σελήνης +καὶ +τὸ +τρίτον +τῶν +ἀστέρων, +ἵνα +σκοτισθῇ +τὸ +τρίτον +αὐτῶν +καὶ +ἡ +ἡμέρα +μὴ +φάνῃ +τὸ +τρίτον +αὐτῆς, +καὶ +ἡ +νὺξ +ὁμοίως. +Καὶ +εἶδον, +καὶ +ἤκουσα +ἑνὸς +ἀετοῦ +πετομένου +ἐν +μεσουρανήματι +λέγοντος +φωνῇ +μεγάλῃ +Οὐαὶ +οὐαὶ +οὐαὶ +τοὺς +κατοικοῦντας +ἐπὶ +τῆς +γῆς +ἐκ +τῶν +λοιπῶν +φωνῶν +τῆς +σάλπιγγος +τῶν +τριῶν +ἀγγέλων +τῶν +μελλόντων +σαλπίζειν. +Καὶ +ὁ +πέμπτος +ἄγγελος +ἐσάλπισεν· +καὶ +εἶδον +ἀστέρα +ἐκ +τοῦ +οὐρανοῦ +πεπτωκότα +εἰς +τὴν +γῆν, +καὶ +ἐδόθη +αὐτῷ +ἡ +κλεὶς +τοῦ +φρέατος +τῆς +ἀβύσσου. +καὶ +ἤνοιξεν +τὸ +φρέαρ +τῆς +ἀβύσσου· +καὶ +ἀνέβη +καπνὸς +ἐκ +τοῦ +φρέατος +ὡς +καπνὸς +καμίνου +μεγάλης, +καὶ +ἐσκοτώθη +ὁ +ἥλιος +καὶ +ὁ +ἀὴρ +ἐκ +τοῦ +καπνοῦ +τοῦ +φρέατος. +καὶ +ἐκ +τοῦ +καπνοῦ +ἐξῆλθον +ἀκρίδες +εἰς +τὴν +γῆν, +καὶ +ἐδόθη +αὐτοῖς +ἐξουσία +ὡς +ἔχουσιν +ἐξουσίαν +οἱ +σκορπίοι +τῆς +γῆς. +καὶ +ἐρρέθη +αὐτοῖς +ἵνα +μὴ +ἀδικήσουσιν +τὸν +χόρτον +τῆς +γῆς +οὐδὲ +πᾶν +χλωρὸν +οὐδὲ +πᾶν +δένδρον, +εἰ +μὴ +τοὺς +ἀνθρώπους +οἵτινες +οὐκ +ἔχουσιν +τὴν +σφραγῖδα +τοῦ +Θεοῦ +ἐπὶ +τῶν +μετώπων. +καὶ +ἐδόθη +αὐτοῖς +ἵνα +μὴ +ἀποκτείνωσιν +αὐτούς, +ἀλλ’ +ἵνα +βασανισθήσονται +μῆνας +πέντε· +καὶ +ὁ +βασανισμὸς +αὐτῶν +ὡς +βασανισμὸς +σκορπίου, +ὅταν +παίσῃ +ἄνθρωπον. +καὶ +ἐν +ταῖς +ἡμέραις +ἐκείναις +ζητήσουσιν +οἱ +ἄνθρωποι +τὸν +θάνατον +καὶ +οὐ +μὴ +εὑρήσουσιν +αὐτόν, +καὶ +ἐπιθυμήσουσιν +ἀποθανεῖν +καὶ +φεύγει +ὁ +θάνατος +ἀπ’ +αὐτῶν. +καὶ +τὰ +ὁμοιώματα +τῶν +ἀκρίδων +ὅμοιοι +ἵπποις +ἡτοιμασμένοις +εἰς +πόλεμον, +καὶ +ἐπὶ +τὰς +κεφαλὰς +αὐτῶν +ὡς +στέφανοι +ὅμοιοι +χρυσῷ, +καὶ +τὰ +πρόσωπα +αὐτῶν +ὡς +πρόσωπα +ἀνθρώπων, +καὶ +εἶχαν +τρίχας +ὡς +τρίχας +γυναικῶν, +καὶ +οἱ +ὀδόντες +αὐτῶν +ὡς +λεόντων +ἦσαν, +καὶ +εἶχον +θώρακας +ὡς +θώρακας +σιδηροῦς, +καὶ +ἡ +φωνὴ +τῶν +πτερύγων +αὐτῶν +ὡς +φωνὴ +ἁρμάτων +ἵππων +πολλῶν +τρεχόντων +εἰς +πόλεμον. +καὶ +ἔχουσιν +οὐρὰς +ὁμοίας +σκορπίοις +καὶ +κέντρα, +καὶ +ἐν +ταῖς +οὐραῖς +αὐτῶν +ἡ +ἐξουσία +αὐτῶν +ἀδικῆσαι +τοὺς +ἀνθρώπους +μῆνας +πέντε. +ἔχουσιν +ἐπ’ +αὐτῶν +βασιλέα +τὸν +ἄγγελον +τῆς +ἀβύσσου, +ὄνομα +αὐτῷ +Ἑβραϊστί +Ἀβαδδών +καὶ +ἐν +τῇ +Ἑλληνικῇ +ὄνομα +ἔχει +Ἀπολλύων. +Ἠ +Οὐαὶ +ἡ +μία +ἀπῆλθεν· +ἰδοὺ +ἔρχεται +ἔτι +δύο +Οὐαὶ +μετὰ +ταῦτα. +Καὶ +ὁ +ἕκτος +ἄγγελος +ἐσάλπισεν· +καὶ +ἤκουσα +φωνὴν +μίαν +ἐκ +τῶν +τεσσάρων +κεράτων +τοῦ +θυσιαστηρίου +τοῦ +χρυσοῦ +τοῦ +ἐνώπιον +τοῦ +Θεοῦ, +λέγοντα +τῷ +ἕκτῳ +ἀγγέλῳ, +ὁ +ἔχων +τὴν +σάλπιγγα +Λῦσον +τοὺς +τέσσαρας +ἀγγέλους +τοὺς +δεδεμένους +ἐπὶ +τῷ +ποταμῷ +τῷ +μεγάλῳ +Εὐφράτῃ. +καὶ +ἐλύθησαν +οἱ +τέσσαρες +ἄγγελοι +οἱ +ἡτοιμασμένοι +εἰς +τὴν +ὥραν +καὶ +ἡμέραν +καὶ +μῆνα +καὶ +ἐνιαυτόν, +ἵνα +ἀποκτείνωσιν +τὸ +τρίτον +τῶν +ἀνθρώπων. +καὶ +ὁ +ἀριθμὸς +τῶν +στρατευμάτων +τοῦ +ἱππικοῦ +δισμυριάδες +μυριάδων· +ἤκουσα +τὸν +ἀριθμὸν +αὐτῶν. +καὶ +οὕτως +εἶδον +τοὺς +ἵππους +ἐν +τῇ +ὁράσει +καὶ +τοὺς +καθημένους +ἐπ’ +αὐτῶν, +ἔχοντας +θώρακας +πυρίνους +καὶ +ὑακινθίνους +καὶ +θειώδεις· +καὶ +αἱ +κεφαλαὶ +τῶν +ἵππων +ὡς +κεφαλαὶ +λεόντων, +καὶ +ἐκ +τῶν +στομάτων +αὐτῶν +ἐκπορεύεται +πῦρ +καὶ +καπνὸς +καὶ +θεῖον. +ἀπεκτάνθησαν +τὸ +τρίτον +τῶν +ἀνθρώπων, +ἀπὸ +τῶν +τριῶν +πληγῶν +τούτων +ἐκ +τοῦ +πυρὸς +καὶ +τοῦ +καπνοῦ +καὶ +τοῦ +θείου +τοῦ +ἐκπορευομένου +ἐκ +τῶν +στομάτων +αὐτῶν. +γὰρ +ἡ +ἐξουσία +τῶν +ἵππων +ἐστιν +ἐν +τῷ +στόματι +αὐτῶν +καὶ +ἐν +ταῖς +οὐραῖς +αὐτῶν· +γὰρ +αἱ +οὐραὶ +αὐτῶν +ὅμοιαι +ὄφεσιν, +ἔχουσαι +κεφαλάς, +καὶ +ἐν +αὐταῖς +ἀδικοῦσιν. +καὶ +οἱ +λοιποὶ +τῶν +ἀνθρώπων, +οἳ +οὐκ +ἀπεκτάνθησαν +ἐν +ταῖς +πληγαῖς +ταύταις, +οὐδὲ +μετενόησαν +ἐκ +τῶν +ἔργων +τῶν +χειρῶν +αὐτῶν, +ἵνα +μὴ +προσκυνήσουσιν +τὰ +δαιμόνια +καὶ +τὰ +εἴδωλα +τὰ +χρυσᾶ +καὶ +τὰ +ἀργυρᾶ +καὶ +τὰ +χαλκᾶ +καὶ +τὰ +λίθινα +καὶ +τὰ +ξύλινα, +ἃ +δύνανται +οὔτε +βλέπειν +οὔτε +ἀκούειν +οὔτε +περιπατεῖν, +καὶ +οὐ +μετενόησαν +ἐκ +τῶν +φόνων +αὐτῶν +οὔτε +ἐκ +τῶν +φαρμακιῶν +αὐτῶν +οὔτε +ἐκ +τῆς +πορνείας +αὐτῶν +οὔτε +ἐκ +τῶν +κλεμμάτων +αὐτῶν. +Καὶ +εἶδον +ἄλλον +ἄγγελον +ἰσχυρὸν +καταβαίνοντα +ἐκ +τοῦ +οὐρανοῦ, +περιβεβλημένον +νεφέλην, +καὶ +ἡ +ἶρις +ἐπὶ +τὴν +κεφαλὴν +αὐτοῦ, +καὶ +τὸ +πρόσωπον +αὐτοῦ +ὡς +ὁ +ἥλιος, +καὶ +οἱ +πόδες +αὐτοῦ +ὡς +στῦλοι +πυρός, +καὶ +ἔχων +ἐν +τῇ +χειρὶ +αὐτοῦ +βιβλαρίδιον +ἠνεῳγμένον. +καὶ +ἔθηκεν +τὸν +πόδα +αὐτοῦ +τὸν +δεξιὸν +ἐπὶ +τῆς +θαλάσσης, +δὲ +τὸν +εὐώνυμον +ἐπὶ +τῆς +γῆς, +καὶ +ἔκραξεν +φωνῇ +μεγάλῃ +ὥσπερ +λέων +μυκᾶται. +καὶ +ὅτε +ἔκραξεν, +ἐλάλησαν +αἱ +ἑπτὰ +βρονταὶ +τὰς +ἑαυτῶν +φωνάς. +Καὶ +ὅτε +ἐλάλησαν +αἱ +ἑπτὰ +βρονταί, +ἤμελλον +γράφειν· +καὶ +ἤκουσα +φωνὴν +ἐκ +τοῦ +οὐρανοῦ +λέγουσαν +Σφράγισον +ἃ +ἐλάλησαν +αἱ +ἑπτὰ +βρονταί, +καὶ +μὴ +αὐτὰ +γράψῃς. +Καὶ +ὁ +ἄγγελος, +ὃν +ἑστῶτα +ἐπὶ +τῆς +θαλάσσης +καὶ +ἐπὶ +τῆς +γῆς, +εἶδον +ἦρεν +τὴν +χεῖρα +αὐτοῦ +τὴν +δεξιὰν +εἰς +τὸν +οὐρανόν, +καὶ +ὤμοσεν +ἐν +τῷ +ζῶντι +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων, +ὃς +ἔκτισεν +τὸν +οὐρανὸν +καὶ +τὰ +ἐν +αὐτῷ +καὶ +τὴν +γῆν +καὶ +τὰ +ἐν +αὐτῇ +καὶ +τὴν +θάλασσαν +καὶ +τὰ +ἐν +αὐτῇ, +ὅτι +χρόνος +οὐκέτι +ἔσται, +ἀλλ’ +ἐν +ταῖς +ἡμέραις +τῆς +φωνῆς +τοῦ +ἑβδόμου +ἀγγέλου, +ὅταν +μέλλῃ +σαλπίζειν, +καὶ +ἐτελέσθη +τὸ +μυστήριον +τοῦ +Θεοῦ, +ὡς +εὐηγγέλισεν +τοὺς +ἑαυτοῦ +δούλους +τοὺς +προφήτας. +Καὶ +ἡ +φωνὴ +ἣν +ἤκουσα +ἐκ +τοῦ +οὐρανοῦ, +πάλιν +λαλοῦσαν +μετ’ +ἐμοῦ +καὶ +λέγουσαν +Ὕπαγε +λάβε +τὸ +βιβλίον +τὸ +ἠνεῳγμένον +ἐν +τῇ +χειρὶ +τοῦ +ἀγγέλου +τοῦ +ἑστῶτος +ἐπὶ +τῆς +θαλάσσης +καὶ +ἐπὶ +τῆς +γῆς. +καὶ +ἀπῆλθα +πρὸς +τὸν +ἄγγελον, +λέγων +αὐτῷ +δοῦναί +μοι +τὸ +βιβλαρίδιον. +καὶ +λέγει +μοι +Λάβε +καὶ +κατάφαγε +αὐτό, +καὶ +πικρανεῖ +σου +τὴν +κοιλίαν, +ἀλλ’ +ἐν +τῷ +στόματί +σου +ἔσται +γλυκὺ +ὡς +μέλι. +καὶ +ἔλαβον +τὸ +βιβλαρίδιον +ἐκ +τῆς +χειρὸς +τοῦ +ἀγγέλου +καὶ +κατέφαγον +αὐτό, +καὶ +ἦν +ἐν +τῷ +στόματί +μου +ὡς +μέλι +γλυκύ· +καὶ +ὅτε +ἔφαγον +αὐτό, +ἐπικράνθη +ἡ +κοιλία +μου. +καὶ +λέγουσίν +μοι +Δεῖ +σε +πάλιν +προφητεῦσαι +ἐπὶ +λαοῖς +καὶ +ἔθνεσιν +καὶ +γλώσσαις +καὶ +βασιλεῦσιν +πολλοῖς. +Καὶ +ἐδόθη +μοι +κάλαμος +ὅμοιος +ῥάβδῳ, +λέγων +Ἔγειρε +καὶ +μέτρησον +τὸν +ναὸν +τοῦ +Θεοῦ +καὶ +τὸ +θυσιαστήριον +καὶ +τοὺς +προσκυνοῦντας +ἐν +αὐτῷ. +καὶ +τὴν +αὐλὴν +τὴν +ἔξωθεν +τοῦ +ναοῦ +ἔκβαλε +ἔξωθεν +καὶ +μὴ +αὐτὴν +μετρήσῃς, +ὅτι +ἐδόθη +τοῖς +ἔθνεσιν, +καὶ +τὴν +πόλιν +τὴν +ἁγίαν +πατήσουσιν +μῆνας +τεσσεράκοντα +δύο. +καὶ +δώσω +τοῖς +δυσὶν +μάρτυσίν +μου, +καὶ +προφητεύσουσιν +ἡμέρας +χιλίας +διακοσίας +ἑξήκοντα +περιβεβλημένοι +σάκκους. +Οὗτοί +εἰσιν +αἱ +δύο +ἐλαῖαι +καὶ +αἱ +δύο +λυχνίαι +αἱ +ἐνώπιον +τοῦ +Κυρίου +τῆς +γῆς +ἑστῶτες. +καὶ +εἴ +τις +θέλει +αὐτοὺς +ἀδικῆσαι, +πῦρ +ἐκπορεύεται +ἐκ +τοῦ +στόματος +αὐτῶν +καὶ +κατεσθίει +τοὺς +ἐχθροὺς +αὐτῶν· +καὶ +εἴ +τις +θελήσῃ +αὐτοὺς +ἀδικῆσαι, +οὕτως +δεῖ +αὐτὸν +ἀποκτανθῆναι. +οὗτοι +ἔχουσιν +τὴν +ἐξουσίαν +κλεῖσαι +τὸν +οὐρανόν, +ἵνα +μὴ +ὑετὸς +βρέχῃ +τὰς +ἡμέρας +τῆς +προφητείας +αὐτῶν, +καὶ +ἐξουσίαν +ἔχουσιν +ἐπὶ +τῶν +ὑδάτων +στρέφειν +αὐτὰ +εἰς +αἷμα +καὶ +πατάξαι +τὴν +γῆν +ἐν +πάσῃ +πληγῇ +ὁσάκις +ἐὰν +θελήσωσιν. +καὶ +ὅταν +τελέσωσιν +τὴν +μαρτυρίαν +αὐτῶν, +τὸ +θηρίον +τὸ +ἀναβαῖνον +ἐκ +τῆς +ἀβύσσου +ποιήσει +μετ’ +αὐτῶν +πόλεμον +καὶ +νικήσει +αὐτοὺς +καὶ +ἀποκτενεῖ +αὐτούς. +καὶ +τὸ +πτῶμα +αὐτῶν +ἐπὶ +τῆς +πλατείας +τῆς +πόλεως +τῆς +μεγάλης, +ἥτις +καλεῖται +πνευματικῶς +Σόδομα +καὶ +Αἴγυπτος, +ὅπου +καὶ +ὁ +Κύριος +αὐτῶν +ἐσταυρώθη. +καὶ +βλέπουσιν +ἐκ +τῶν +λαῶν +καὶ +φυλῶν +καὶ +γλωσσῶν +καὶ +ἐθνῶν +τὸ +πτῶμα +αὐτῶν +ἡμέρας +τρεῖς +καὶ +ἥμισυ, +καὶ +οὐκ +ἀφίουσιν +τὰ +πτώματα +αὐτῶν +τεθῆναι +εἰς +μνῆμα. +καὶ +οἱ +κατοικοῦντες +ἐπὶ +τῆς +γῆς +χαίρουσιν +ἐπ’ +αὐτοῖς +καὶ +εὐφραίνονται, +καὶ +δῶρα +πέμψουσιν +ἀλλήλοις, +ὅτι +οὗτοι +οἱ +δύο +προφῆται +ἐβασάνισαν +τοὺς +κατοικοῦντας +ἐπὶ +τῆς +γῆς. +καὶ +μετὰ +τὰς +τρεῖς +καὶ +ἥμισυ +ἡμέρας +πνεῦμα +ζωῆς +ἐκ +τοῦ +Θεοῦ +εἰσῆλθεν +ἐν +αὐτοῖς, +καὶ +ἔστησαν +ἐπὶ +τοὺς +πόδας +αὐτῶν, +καὶ +φόβος +μέγας +ἐπέπεσεν +ἐπὶ +τοὺς +θεωροῦντας +αὐτούς. +καὶ +ἤκουσαν +φωνῆς +μεγάλης +ἐκ +τοῦ +οὐρανοῦ +λεγούσης +αὐτοῖς +Ἀνάβατε +ὧδε· +καὶ +ἀνέβησαν +εἰς +τὸν +οὐρανὸν +ἐν +τῇ +νεφέλῃ, +καὶ +ἐθεώρησαν +αὐτοὺς +οἱ +ἐχθροὶ +αὐτῶν. +Καὶ +ἐν +ἐκείνῃ +τῇ +ὥρᾳ +ἐγένετο +σεισμὸς +μέγας, +καὶ +τὸ +δέκατον +τῆς +πόλεως +ἔπεσεν, +καὶ +ἀπεκτάνθησαν +ἐν +τῷ +σεισμῷ +ὀνόματα +ἀνθρώπων +χιλιάδες +ἑπτά, +καὶ +οἱ +λοιποὶ +ἔμφοβοι +ἐγένοντο +καὶ +ἔδωκαν +δόξαν +τῷ +Θεῷ +τοῦ +οὐρανοῦ. +Ἠ +Οὐαὶ +ἡ +δευτέρα +ἀπῆλθεν· +ἰδοὺ +ἡ +Οὐαὶ +ἡ +τρίτη +ἔρχεται +ταχύ. +Καὶ +ὁ +ἕβδομος +ἄγγελος +ἐσάλπισεν· +καὶ +ἐγένοντο +φωναὶ +μεγάλαι +ἐν +τῷ +οὐρανῷ, +λέγοντες +Ἐγένετο +ἡ +βασιλεία +τοῦ +κόσμου +τοῦ +Κυρίου +ἡμῶν +καὶ +τοῦ +Χριστοῦ +αὐτοῦ, +καὶ +βασιλεύσει +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων. +καὶ +οἱ +εἴκοσι +τέσσαρες +πρεσβύτεροι +οἱ +ἐνώπιον +τοῦ +Θεοῦ +καθήμενοι +ἐπὶ +τοὺς +θρόνους +αὐτῶν, +ἔπεσαν +ἐπὶ +τὰ +πρόσωπα +αὐτῶν +καὶ +προσεκύνησαν +τῷ +Θεῷ, +λέγοντες +Εὐχαριστοῦμέν +σοι, +Κύριε +ὁ +Θεός +ὁ +Παντοκράτωρ, +ὁ +ὢν +καὶ +ὁ +ἦν, +ὅτι +εἴληφας +τὴν +δύναμίν +σου +τὴν +μεγάλην +καὶ +ἐβασίλευσας· +καὶ +τὰ +ἔθνη +ὠργίσθησαν, +καὶ +ἦλθεν +ἡ +ὀργή +σου +καὶ +ὁ +καιρὸς +τῶν +νεκρῶν +κριθῆναι +καὶ +δοῦναι +τὸν +μισθὸν +τοῖς +δούλοις +σου +τοῖς +προφήταις +καὶ +τοῖς +ἁγίοις +καὶ +τοῖς +φοβουμένοις +τὸ +ὄνομά +σου, +τοῖς +μικροῖς +καὶ +τοῖς +μεγάλοις, +καὶ +διαφθεῖραι +τοὺς +διαφθείροντας +τὴν +γῆν. +καὶ +ἠνοίγη +ὁ +ναὸς +τοῦ +Θεοῦ +ὁ +ἐν +τῷ +οὐρανῷ, +καὶ +ὤφθη +ἡ +κιβωτὸς +τῆς +διαθήκης +αὐτοῦ +ἐν +τῷ +ναῷ +αὐτοῦ, +καὶ +ἐγένοντο +ἀστραπαὶ +καὶ +φωναὶ +καὶ +βρονταὶ +καὶ +σεισμὸς +καὶ +χάλαζα +μεγάλη. +Καὶ +σημεῖον +μέγα +ὤφθη +ἐν +τῷ +οὐρανῷ, +γυνὴ +περιβεβλημένη +τὸν +ἥλιον, +καὶ +ἡ +σελήνη +ὑποκάτω +τῶν +ποδῶν +αὐτῆς, +καὶ +ἐπὶ +τῆς +κεφαλῆς +αὐτῆς +στέφανος +ἀστέρων +δώδεκα, +καὶ +ἐν +γαστρὶ +ἔχουσα, +καὶ +κράζει +ὠδίνουσα +καὶ +βασανιζομένη +τεκεῖν. +καὶ +ὤφθη +ἄλλο +σημεῖον +ἐν +τῷ +οὐρανῷ, +καὶ +ἰδοὺ +δράκων +πυρρός +μέγας, +ἔχων +κεφαλὰς +ἑπτὰ +καὶ +κέρατα +δέκα +καὶ +ἐπὶ +τὰς +κεφαλὰς +αὐτοῦ +ἑπτὰ +διαδήματα, +καὶ +ἡ +οὐρὰ +αὐτοῦ +σύρει +τὸ +τρίτον +τῶν +ἀστέρων +τοῦ +οὐρανοῦ, +καὶ +ἔβαλεν +αὐτοὺς +εἰς +τὴν +γῆν. +καὶ +ὁ +δράκων +ἕστηκεν +ἐνώπιον +τῆς +γυναικὸς +τῆς +μελλούσης +τεκεῖν, +ἵνα +ὅταν +τέκῃ +τὸ +τέκνον +αὐτῆς +καταφάγῃ. +καὶ +ἔτεκεν +υἱόν, +ἄρσεν, +ὃς +μέλλει +ποιμαίνειν +πάντα +τὰ +ἔθνη +ἐν +ῥάβδῳ +σιδηρᾷ· +καὶ +ἡρπάσθη +τὸ +τέκνον +αὐτῆς +πρὸς +τὸν +Θεὸν +καὶ +πρὸς +τὸν +θρόνον +αὐτοῦ. +καὶ +ἡ +γυνὴ +ἔφυγεν +εἰς +τὴν +ἔρημον, +ὅπου +ἔχει +ἐκεῖ +τόπον +ἡτοιμασμένον +ἀπὸ +τοῦ +Θεοῦ, +ἵνα +ἐκεῖ +τρέφωσιν +αὐτὴν +ἡμέρας +χιλίας +διακοσίας +ἑξήκοντα. +Καὶ +ἐγένετο +πόλεμος +ἐν +τῷ +οὐρανῷ, +ὁ +Μιχαὴλ +καὶ +οἱ +ἄγγελοι +αὐτοῦ +τοῦ +πολεμῆσαι +μετὰ +τοῦ +δράκοντος. +καὶ +ἐπολέμησεν +ὁ +δράκων +καὶ +οἱ +ἄγγελοι +αὐτοῦ, +καὶ +οὐκ +ἴσχυσαν, +οὐδὲ +τόπος +αὐτῶν +εὑρέθη +ἔτι +ἐν +τῷ +οὐρανῷ. +καὶ +ἐβλήθη +ὁ +δράκων +ὁ +μέγας, +ὁ +ὄφις +ὁ +ἀρχαῖος, +ὁ +καλούμενος +Διάβολος +καὶ +Ὁ +Σατανᾶς, +ὁ +πλανῶν +τὴν +οἰκουμένην +ὅλην, +ἐβλήθη +εἰς +τὴν +γῆν, +καὶ +οἱ +ἄγγελοι +αὐτοῦ +μετ’ +αὐτοῦ +ἐβλήθησαν. +καὶ +ἤκουσα +φωνὴν +μεγάλην +ἐν +τῷ +οὐρανῷ +λέγουσαν +Ἄρτι +ἐγένετο +ἡ +σωτηρία +καὶ +ἡ +δύναμις +καὶ +ἡ +βασιλεία +τοῦ +Θεοῦ +ἡμῶν +καὶ +ἡ +ἐξουσία +τοῦ +Χριστοῦ +αὐτοῦ, +ὅτι +ἐβλήθη +ὁ +κατήγωρ +τῶν +ἀδελφῶν +ἡμῶν, +ὁ +κατηγορῶν +αὐτοὺς +ἐνώπιον +τοῦ +Θεοῦ +ἡμῶν +ἡμέρας +καὶ +νυκτός. +καὶ +αὐτοὶ +ἐνίκησαν +αὐτὸν +διὰ +τὸ +αἷμα +τοῦ +Ἀρνίου +καὶ +διὰ +τὸν +λόγον +τῆς +μαρτυρίας +αὐτῶν, +καὶ +οὐκ +ἠγάπησαν +τὴν +ψυχὴν +αὐτῶν +ἄχρι +θανάτου. +διὰ +τοῦτο +εὐφραίνεσθε, +οὐρανοὶ +καὶ +οἱ +ἐν +αὐτοῖς +σκηνοῦντες· +οὐαὶ +τὴν +γῆν +καὶ +τὴν +θάλασσαν, +ὅτι +κατέβη +ὁ +διάβολος +πρὸς +ὑμᾶς +ἔχων +θυμὸν +μέγαν, +εἰδὼς +ὅτι +ὀλίγον +καιρὸν +ἔχει. +Καὶ +ὅτε +εἶδεν +ὁ +δράκων +ὅτι +ἐβλήθη +εἰς +τὴν +γῆν, +ἐδίωξεν +τὴν +γυναῖκα +ἥτις +ἔτεκεν +τὸν +ἄρσενα. +καὶ +ἐδόθησαν +τῇ +γυναικὶ +αἱ +δύο +πτέρυγες +τοῦ +ἀετοῦ +τοῦ +μεγάλου, +ἵνα +πέτηται +εἰς +τὴν +ἔρημον +εἰς +τὸν +τόπον +αὐτῆς, +ὅπου +τρέφεται +ἐκεῖ +καιρὸν +καὶ +καιροὺς +καὶ +ἥμισυ +καιροῦ +ἀπὸ +προσώπου +τοῦ +ὄφεως. +καὶ +ἔβαλεν +ὁ +ὄφις +ἐκ +τοῦ +στόματος +αὐτοῦ +ὀπίσω +τῆς +γυναικὸς +ὕδωρ +ὡς +ποταμόν, +ἵνα +αὐτὴν +ποταμοφόρητον +ποιήσῃ. +καὶ +ἐβοήθησεν +ἡ +γῆ +τῇ +γυναικί, +καὶ +ἤνοιξεν +ἡ +γῆ +τὸ +στόμα +αὐτῆς +καὶ +κατέπιεν +τὸν +ποταμὸν +ὃν +ἔβαλεν +ὁ +δράκων +ἐκ +τοῦ +στόματος +αὐτοῦ. +καὶ +ὠργίσθη +ὁ +δράκων +ἐπὶ +τῇ +γυναικί, +καὶ +ἀπῆλθεν +ποιῆσαι +πόλεμον +μετὰ +τῶν +λοιπῶν +τοῦ +σπέρματος +αὐτῆς, +τῶν +τηρούντων +τὰς +ἐντολὰς +τοῦ +Θεοῦ +καὶ +ἐχόντων +τὴν +μαρτυρίαν +Ἰησοῦ· +καὶ +ἐστάθη +ἐπὶ +τὴν +ἄμμον +τῆς +θαλάσσης. +Καὶ +εἶδον +ἐκ +τῆς +θαλάσσης +θηρίον +ἀναβαῖνον, +ἔχον +κέρατα +δέκα +καὶ +κεφαλὰς +ἑπτά, +καὶ +ἐπὶ +τῶν +κεράτων +αὐτοῦ +δέκα +διαδήματα, +καὶ +ἐπὶ +τὰς +κεφαλὰς +αὐτοῦ +ὀνόματα +βλασφημίας. +καὶ +τὸ +θηρίον +ὃ +εἶδον +ἦν +ὅμοιον +παρδάλει, +καὶ +οἱ +πόδες +αὐτοῦ +ὡς +ἄρκου, +καὶ +τὸ +στόμα +αὐτοῦ +ὡς +στόμα +λέοντος. +καὶ +ἔδωκεν +αὐτῷ +ὁ +δράκων +τὴν +δύναμιν +αὐτοῦ +καὶ +τὸν +θρόνον +αὐτοῦ +καὶ +ἐξουσίαν +μεγάλην. +καὶ +μίαν +ἐκ +τῶν +κεφαλῶν +αὐτοῦ +ὡς +ἐσφαγμένην +εἰς +θάνατον, +καὶ +ἡ +πληγὴ +τοῦ +θανάτου +αὐτοῦ +ἐθεραπεύθη. +καὶ +ἐθαυμάσθη +ὅλη +ἡ +γῆ +ὀπίσω +τοῦ +θηρίου, +καὶ +προσεκύνησαν +τῷ +δράκοντι +ὅτι +ἔδωκεν +τὴν +ἐξουσίαν +τῷ +θηρίῳ, +καὶ +προσεκύνησαν +τῷ +θηρίῳ +λέγοντες +Τίς +ὅμοιος +τῷ +θηρίῳ, +καὶ +τίς +δύναται +πολεμῆσαι +μετ’ +αὐτοῦ; +καὶ +ἐδόθη +αὐτῷ +στόμα +λαλοῦν +μεγάλα +καὶ +βλασφημίας, +καὶ +ἐδόθη +αὐτῷ +ἐξουσία +ποιῆσαι +μῆνας +τεσσεράκοντα +δύο. +καὶ +ἤνοιξεν +τὸ +στόμα +αὐτοῦ +εἰς +βλασφημίας +πρὸς +τὸν +Θεόν, +βλασφημῆσαι +τὸ +ὄνομα +αὐτοῦ +καὶ +τὴν +σκηνὴν +αὐτοῦ, +τοὺς +ἐν +τῷ +οὐρανῷ +σκηνοῦντας. +καὶ +ἐδόθη +αὐτῷ +ποιῆσαι +πόλεμον +μετὰ +τῶν +ἁγίων +καὶ +νικῆσαι +αὐτούς, +καὶ +ἐδόθη +αὐτῷ +ἐξουσία +ἐπὶ +πᾶσαν +φυλὴν +καὶ +λαὸν +καὶ +γλῶσσαν +καὶ +ἔθνος. +καὶ +προσκυνήσουσιν +αὐτὸν +πάντες +οἱ +κατοικοῦντες +ἐπὶ +τῆς +γῆς, +οὐ +γέγραπται +οὗ +τὸ +ὄνομα +αὐτοῦ +ἐν +τῷ +βιβλίῳ +τῆς +ζωῆς +τοῦ +Ἀρνίου +τοῦ +ἐσφαγμένου +ἀπὸ +καταβολῆς +κόσμου. +Εἴ +τις +ἔχει +οὖς, +ἀκουσάτω. +εἴ +τις +εἰς +αἰχμαλωσίαν, +εἰς +αἰχμαλωσίαν +ὑπάγει· +εἴ +τις +ἐν +μαχαίρῃ +ἀποκτενεῖ, +δεῖ +αὐτὸν +ἐν +μαχαίρῃ +ἀποκτανθῆναι. +Ὧδέ +ἐστιν +ἡ +ὑπομονὴ +καὶ +ἡ +πίστις +τῶν +ἁγίων. +Καὶ +εἶδον +ἄλλο +θηρίον +ἀναβαῖνον +ἐκ +τῆς +γῆς, +καὶ +εἶχεν +κέρατα +δύο +ὅμοια +ἀρνίῳ, +καὶ +ἐλάλει +ὡς +δράκων. +καὶ +τὴν +ἐξουσίαν +τοῦ +πρώτου +θηρίου +πᾶσαν +ποιεῖ +ἐνώπιον +αὐτοῦ. +καὶ +ποιεῖ +τὴν +γῆν +καὶ +τοὺς +ἐν +αὐτῇ +κατοικοῦντας +ἵνα +προσκυνήσουσιν +τὸ +θηρίον +τὸ +πρῶτον, +οὗ +ἐθεραπεύθη +ἡ +πληγὴ +τοῦ +θανάτου +αὐτοῦ. +καὶ +ποιεῖ +σημεῖα +μεγάλα, +ἵνα +καὶ +ποιῇ +πῦρ +ἐκ +τοῦ +οὐρανοῦ +καταβαίνειν +εἰς +τὴν +γῆν +ἐνώπιον +τῶν +ἀνθρώπων. +καὶ +πλανᾷ +τοὺς +κατοικοῦντας +ἐπὶ +τῆς +γῆς +διὰ +τὰ +σημεῖα +ἃ +ἐδόθη +αὐτῷ +ποιῆσαι +ἐνώπιον +τοῦ +θηρίου, +λέγων +τοῖς +κατοικοῦσιν +ἐπὶ +τῆς +γῆς +ποιῆσαι +εἰκόνα +τῷ +θηρίῳ, +ὃς +ἔχει +τὴν +πληγὴν +τῆς +μαχαίρης +καὶ +ἔζησεν. +καὶ +ἐδόθη +αὐτῷ +δοῦναι +πνεῦμα +τῇ +εἰκόνι +τοῦ +θηρίου, +ἵνα +καὶ +λαλήσῃ +ἡ +εἰκὼν +τοῦ +θηρίου, +καὶ +ποιήσῃ +ἵνα +ἐὰν +ὅσοι +μὴ +προσκυνήσωσιν +τῇ +εἰκόνι +τοῦ +θηρίου +ἀποκτανθῶσιν. +καὶ +ποιεῖ +πάντας, +τοὺς +μικροὺς +καὶ +τοὺς +μεγάλους, +καὶ +τοὺς +πλουσίους +καὶ +τοὺς +πτωχούς, +καὶ +τοὺς +ἐλευθέρους +καὶ +τοὺς +δούλους, +ἵνα +δῶσιν +αὐτοῖς +χάραγμα +ἐπὶ +τῆς +χειρὸς +αὐτῶν +τῆς +δεξιᾶς +ἢ +ἐπὶ +τὸ +μέτωπον +αὐτῶν, +καὶ +ἵνα +μή +τις +δύνηται +ἀγοράσαι +ἢ +πωλῆσαι +εἰ +μὴ +ὁ +ἔχων +τὸ +χάραγμα +τὸ +ὄνομα +τοῦ +θηρίου +ἢ +τὸν +ἀριθμὸν +τοῦ +ὀνόματος +αὐτοῦ. +Ὧδε +ἡ +σοφία +ἐστίν. +ὁ +ἔχων +νοῦν +ψηφισάτω +τὸν +ἀριθμὸν +τοῦ +θηρίου· +γὰρ +ἀριθμὸς +ἀνθρώπου +ἐστίν. +καὶ +ὁ +ἀριθμὸς +αὐτοῦ +ἑξακόσιοι +ἑξήκοντα +ἕξ. +Καὶ +εἶδον, +καὶ +ἰδοὺ +τὸ +Ἀρνίον +ἑστὸς +ἐπὶ +τὸ +ὄρος +Σιών, +καὶ +μετ’ +αὐτοῦ +ἑκατὸν +τεσσεράκοντα +τέσσαρες +χιλιάδες +ἔχουσαι +τὸ +ὄνομα +αὐτοῦ +καὶ +τὸ +ὄνομα +τοῦ +Πατρὸς +αὐτοῦ +γεγραμμένον +ἐπὶ +τῶν +μετώπων +αὐτῶν. +καὶ +ἤκουσα +φωνὴν +ἐκ +τοῦ +οὐρανοῦ +ὡς +φωνὴν +ὑδάτων +πολλῶν +καὶ +ὡς +φωνὴν +βροντῆς +μεγάλης, +καὶ +ἡ +φωνὴ +ἣν +ἤκουσα +ὡς +κιθαρῳδῶν +κιθαριζόντων +ἐν +ταῖς +κιθάραις +αὐτῶν. +καὶ +ᾄδουσιν +ᾠδὴν +καινὴν +ἐνώπιον +τοῦ +θρόνου +καὶ +ἐνώπιον +τῶν +τεσσάρων +ζῴων +καὶ +τῶν +πρεσβυτέρων· +καὶ +οὐδεὶς +ἐδύνατο +μαθεῖν +τὴν +ᾠδὴν +εἰ +μὴ +αἱ +ἑκατὸν +τεσσεράκοντα +τέσσαρες +χιλιάδες, +οἱ +ἠγορασμένοι +ἀπὸ +τῆς +γῆς. +οὗτοί +εἰσιν +οἳ +μετὰ +γυναικῶν +οὐκ +ἐμολύνθησαν· +γάρ +παρθένοι +εἰσιν. +οὗτοι +οἱ +ἀκολουθοῦντες +τῷ +Ἀρνίῳ +ἂν +ὅπου +ὑπάγῃ· +οὗτοι +ἠγοράσθησαν +ἀπὸ +τῶν +ἀνθρώπων +ἀπαρχὴ +τῷ +Θεῷ +καὶ +τῷ +Ἀρνίῳ, +καὶ +ἐν +τῷ +στόματι +αὐτῶν +οὐχ +εὑρέθη +ψεῦδος· +ἄμωμοί +εἰσιν. +Καὶ +εἶδον +ἄλλον +ἄγγελον +πετόμενον +ἐν +μεσουρανήματι, +ἔχοντα +εὐαγγέλιον +αἰώνιον +εὐαγγελίσαι +ἐπὶ +τοὺς +καθημένους +ἐπὶ +τῆς +γῆς +καὶ +ἐπὶ +πᾶν +ἔθνος +καὶ +φυλὴν +καὶ +γλῶσσαν +καὶ +λαόν, +λέγων +ἐν +φωνῇ +μεγάλῃ· +Φοβήθητε +τὸν +Θεὸν +καὶ +δότε +αὐτῷ +δόξαν, +ὅτι +ἦλθεν +ἡ +ὥρα +τῆς +κρίσεως +αὐτοῦ, +καὶ +προσκυνήσατε +τῷ +ποιήσαντι +τὸν +οὐρανὸν +καὶ +τὴν +γῆν +καὶ +θάλασσαν +καὶ +πηγὰς +ὑδάτων. +Καὶ +ἄλλος +ἄγγελος +δεύτερος +ἠκολούθησεν +λέγων +Ἔπεσεν +ἔπεσεν +Βαβυλὼν +ἡ +μεγάλη, +ἣ +ἐκ +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +πορνείας +αὐτῆς +πεπότικεν +πάντα +τὰ +ἔθνη. +Καὶ +ἄλλος +ἄγγελος +τρίτος +ἠκολούθησεν +αὐτοῖς +λέγων +ἐν +φωνῇ +μεγάλῃ +Εἴ +τις +προσκυνεῖ +τὸ +θηρίον +καὶ +τὴν +εἰκόνα +αὐτοῦ, +καὶ +λαμβάνει +χάραγμα +ἐπὶ +τοῦ +μετώπου +αὐτοῦ +ἢ +ἐπὶ +τὴν +χεῖρα +αὐτοῦ, +καὶ +αὐτὸς +πίεται +ἐκ +τοῦ +οἴνου +τοῦ +θυμοῦ +τοῦ +Θεοῦ +τοῦ +κεκερασμένου +ἀκράτου +ἐν +τῷ +ποτηρίῳ +τῆς +ὀργῆς +αὐτοῦ, +καὶ +βασανισθήσεται +ἐν +πυρὶ +καὶ +θείῳ +ἐνώπιον +ἀγγέλων +ἁγίων +καὶ +ἐνώπιον +τοῦ +Ἀρνίου. +καὶ +ὁ +καπνὸς +τοῦ +βασανισμοῦ +αὐτῶν +εἰς +αἰῶνας +αἰώνων +ἀναβαίνει, +καὶ +οὐκ +ἔχουσιν +ἀνάπαυσιν +ἡμέρας +καὶ +νυκτός +οἱ +προσκυνοῦντες +τὸ +θηρίον +καὶ +τὴν +εἰκόνα +αὐτοῦ, +καὶ +εἴ +τις +λαμβάνει +τὸ +χάραγμα +τοῦ +ὀνόματος +αὐτοῦ. +Ὧδε +ἐστίν, +ἡ +ὑπομονὴ +τῶν +ἁγίων +οἱ +τηροῦντες +τὰς +ἐντολὰς +τοῦ +Θεοῦ +καὶ +τὴν +πίστιν +Ἰησοῦ. +Καὶ +ἤκουσα +φωνῆς +ἐκ +τοῦ +οὐρανοῦ +λεγούσης +Γράψον +Μακάριοι +οἱ +νεκροὶ +οἱ +ἐν +Κυρίῳ +ἀποθνῄσκοντες +ἀπάρτι. +ναί, +λέγει +τὸ +Πνεῦμα, +ἵνα +ἀναπαήσονται +ἐκ +τῶν +κόπων +αὐτῶν· +γὰρ +τὰ +ἔργα +αὐτῶν +ἀκολουθεῖ +μετ’ +αὐτῶν. +Καὶ +εἶδον, +καὶ +ἰδοὺ +νεφέλη +λευκή, +καὶ +ἐπὶ +τὴν +νεφέλην +καθήμενον +ὅμοιον +υἱὸν +ἀνθρώπου, +ἔχων +ἐπὶ +τῆς +κεφαλῆς +αὐτοῦ +στέφανον +χρυσοῦν +καὶ +ἐν +τῇ +χειρὶ +αὐτοῦ +δρέπανον +ὀξύ. +Καὶ +ἄλλος +ἄγγελος +ἐξῆλθεν +ἐκ +τοῦ +ναοῦ, +κράζων +ἐν +φωνῇ +μεγάλῃ +τῷ +καθημένῳ +ἐπὶ +τῆς +νεφέλης +Πέμψον +τὸ +δρέπανόν +σου +καὶ +θέρισον, +ὅτι +ἦλθεν +ἡ +ὥρα +θερίσαι, +ὅτι +ἐξηράνθη +ὁ +θερισμὸς +τῆς +γῆς. +καὶ +ἔβαλεν +ὁ +καθήμενος +ἐπὶ +τῆς +νεφέλης +τὸ +δρέπανον +αὐτοῦ +ἐπὶ +τὴν +γῆν, +καὶ +ἐθερίσθη +ἡ +γῆ. +Καὶ +ἄλλος +ἄγγελος +ἐξῆλθεν +ἐκ +τοῦ +ναοῦ +τοῦ +ἐν +τῷ +οὐρανῷ, +ἔχων +καὶ +αὐτὸς +δρέπανον +ὀξύ. +Καὶ +ἄλλος +ἄγγελος +ὁ +ἔχων +ἐξουσίαν +ἐπὶ +τοῦ +πυρός, +ἐξῆλθεν +ἐκ +τοῦ +θυσιαστηρίου, +καὶ +ἐφώνησεν +φωνῇ +μεγάλῃ +τῷ +ἔχοντι +τὸ +δρέπανον +τὸ +ὀξὺ +λέγων +Πέμψον +σου +τὸ +δρέπανον +τὸ +ὀξὺ +καὶ +τρύγησον +τοὺς +βότρυας +τῆς +ἀμπέλου +τῆς +γῆς, +ὅτι +ἤκμασαν +αἱ +σταφυλαὶ +αὐτῆς. +καὶ +ἔβαλεν +ὁ +ἄγγελος +τὸ +δρέπανον +αὐτοῦ +εἰς +τὴν +γῆν, +καὶ +ἐτρύγησεν +τὴν +ἄμπελον +τῆς +γῆς +καὶ +ἔβαλεν +εἰς +τὴν +ληνὸν +τοῦ +θυμοῦ +τοῦ +Θεοῦ +τὸν +μέγαν. +καὶ +ἐπατήθη +ἡ +ληνὸς +ἔξωθεν +τῆς +πόλεως, +καὶ +ἐξῆλθεν +αἷμα +ἐκ +τῆς +ληνοῦ +ἄχρι +τῶν +χαλινῶν +τῶν +ἵππων, +ἀπὸ +σταδίων +χιλίων +ἑξακοσίων. +Καὶ +εἶδον +ἄλλο +σημεῖον +ἐν +τῷ +οὐρανῷ +μέγα +καὶ +θαυμαστόν, +ἀγγέλους +ἑπτὰ +ἔχοντας +πληγὰς +ἑπτὰ +τὰς +ἐσχάτας, +ὅτι +ἐν +αὐταῖς +ἐτελέσθη +ὁ +θυμὸς +τοῦ +Θεοῦ. +Καὶ +εἶδον +ὡς +θάλασσαν +ὑαλίνην +μεμιγμένην +πυρί, +καὶ +τοὺς +νικῶντας +ἐκ +τοῦ +θηρίου +καὶ +ἐκ +τῆς +εἰκόνος +αὐτοῦ +καὶ +ἐκ +τοῦ +ἀριθμοῦ +τοῦ +ὀνόματος +αὐτοῦ +ἑστῶτας +ἐπὶ +τὴν +θάλασσαν +τὴν +ὑαλίνην, +ἔχοντας +κιθάρας +τοῦ +Θεοῦ. +καὶ +ᾄδουσιν +τὴν +ᾠδὴν +Μωϋσέως +τοῦ +δούλου +τοῦ +Θεοῦ +καὶ +τὴν +ᾠδὴν +τοῦ +Ἀρνίου, +λέγοντες +Μεγάλα +καὶ +θαυμαστὰ +τὰ +ἔργα +σου, +Κύριε +ὁ +Θεός +ὁ +Παντοκράτωρ· +δίκαιαι +καὶ +ἀληθιναὶ +αἱ +ὁδοί +σου, +ὁ +Βασιλεὺς +τῶν +ἐθνῶν· +τίς +οὐ +μὴ +φοβηθῇ, +Κύριε, +καὶ +δοξάσει +τὸ +ὄνομά +σου; +ὅτι +μόνος +ὅσιος, +ὅτι +πάντα +τὰ +ἔθνη +ἥξουσιν +καὶ +προσκυνήσουσιν +ἐνώπιόν +σου, +ὅτι +τὰ +δικαιώματά +σου +ἐφανερώθησαν. +Καὶ +μετὰ +ταῦτα +εἶδον, +καὶ +ἠνοίγη +ὁ +ναὸς +τῆς +σκηνῆς +τοῦ +μαρτυρίου +ἐν +τῷ +οὐρανῷ, +καὶ +ἐξῆλθον +οἱ +ἑπτὰ +ἄγγελοι +οἱ +ἔχοντες +τὰς +ἑπτὰ +πληγὰς +ἐκ +τοῦ +ναοῦ, +ἐνδεδυμένοι +λίνον +καθαρὸν +λαμπρὸν +καὶ +περιεζωσμένοι +περὶ +τὰ +στήθη +ζώνας +χρυσᾶς. +καὶ +ἓν +ἐκ +τῶν +τεσσάρων +ζῴων +ἔδωκεν +τοῖς +ἑπτὰ +ἀγγέλοις +ἑπτὰ +φιάλας +χρυσᾶς +γεμούσας +τοῦ +θυμοῦ +τοῦ +Θεοῦ +τοῦ +ζῶντος +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων. +καὶ +ἐγεμίσθη +ὁ +ναὸς +καπνοῦ +ἐκ +τῆς +δόξης +τοῦ +Θεοῦ +καὶ +ἐκ +τῆς +δυνάμεως +αὐτοῦ, +καὶ +οὐδεὶς +ἐδύνατο +εἰσελθεῖν +εἰς +τὸν +ναὸν +ἄχρι +τελεσθῶσιν +αἱ +ἑπτὰ +πληγαὶ +τῶν +ἑπτὰ +ἀγγέλων. +Καὶ +ἤκουσα +μεγάλης +φωνῆς +ἐκ +τοῦ +ναοῦ +λεγούσης +τοῖς +ἑπτὰ +ἀγγέλοις +Ὑπάγετε +καὶ +ἐκχέετε +τὰς +ἑπτὰ +φιάλας +τοῦ +θυμοῦ +τοῦ +Θεοῦ +εἰς +τὴν +γῆν. +Καὶ +ἀπῆλθεν +ὁ +πρῶτος +καὶ +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +εἰς +τὴν +γῆν· +καὶ +ἐγένετο +ἕλκος +κακὸν +καὶ +πονηρὸν +ἐπὶ +τοὺς +ἀνθρώπους +τοὺς +ἔχοντας +τὸ +χάραγμα +τοῦ +θηρίου +καὶ +τοὺς +προσκυνοῦντας +τῇ +εἰκόνι +αὐτοῦ. +Καὶ +ὁ +δεύτερος +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +εἰς +τὴν +θάλασσαν· +καὶ +ἐγένετο +αἷμα +ὡς +νεκροῦ, +καὶ +πᾶσα +ψυχὴ +ζωῆς +τὰ +ἐν +τῇ +θαλάσσῃ. +ἀπέθανεν, +Καὶ +ὁ +τρίτος +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +εἰς +τοὺς +ποταμοὺς +καὶ +τὰς +πηγὰς +τῶν +ὑδάτων· +καὶ +ἐγένετο +αἷμα. +Καὶ +ἤκουσα +τοῦ +ἀγγέλου +τῶν +ὑδάτων +λέγοντος +Δίκαιος +εἶ, +ὁ +ὢν +καὶ +ὁ +ἦν, +ὁ +Ὅσιος, +ὅτι +ταῦτα +ἔκρινας, +ὅτι +αἷμα +ἁγίων +καὶ +προφητῶν +ἐξέχεαν, +καὶ +αἷμα +αὐτοῖς +δέδωκας +πεῖν· +ἄξιοί +εἰσιν. +Καὶ +ἤκουσα +τοῦ +θυσιαστηρίου +λέγοντος +Ναί, +Κύριε +ὁ +Θεός +ὁ +Παντοκράτωρ, +ἀληθιναὶ +καὶ +δίκαιαι +αἱ +κρίσεις +σου. +Καὶ +ὁ +τέταρτος +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +ἐπὶ +τὸν +ἥλιον· +καὶ +ἐδόθη +αὐτῷ +καυματίσαι +τοὺς +ἀνθρώπους +ἐν +πυρί. +καὶ +ἐκαυματίσθησαν +οἱ +ἄνθρωποι +καῦμα +μέγα, +καὶ +ἐβλασφήμησαν +τὸ +ὄνομα +τοῦ +Θεοῦ +τοῦ +ἔχοντος +τὴν +ἐξουσίαν +ἐπὶ +τὰς +πληγὰς +ταύτας, +καὶ +οὐ +μετενόησαν +δοῦναι +αὐτῷ +δόξαν. +Καὶ +ὁ +πέμπτος +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +ἐπὶ +τὸν +θρόνον +τοῦ +θηρίου· +καὶ +ἐγένετο +ἡ +βασιλεία +αὐτοῦ +ἐσκοτωμένη, +καὶ +ἐμασῶντο +τὰς +γλώσσας +αὐτῶν +ἐκ +τοῦ +πόνου, +καὶ +ἐβλασφήμησαν +τὸν +Θεὸν +τοῦ +οὐρανοῦ +ἐκ +τῶν +πόνων +αὐτῶν +καὶ +ἐκ +τῶν +ἑλκῶν +αὐτῶν, +καὶ +οὐ +μετενόησαν +ἐκ +τῶν +ἔργων +αὐτῶν. +Καὶ +ὁ +ἕκτος +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +ἐπὶ +τὸν +ποταμὸν +τὸν +μέγαν +Εὐφράτην· +καὶ +ἐξηράνθη +τὸ +ὕδωρ +αὐτοῦ, +ἵνα +ἑτοιμασθῇ +ἡ +ὁδὸς +τῶν +βασιλέων +τῶν +ἀπὸ +ἀνατολῆς +ἡλίου. +Καὶ +εἶδον +ἐκ +τοῦ +στόματος +τοῦ +δράκοντος +καὶ +ἐκ +τοῦ +στόματος +τοῦ +θηρίου +καὶ +ἐκ +τοῦ +στόματος +τοῦ +ψευδοπροφήτου +πνεύματα +τρία +ἀκάθαρτα +ὡς +βάτραχοι· +γὰρ +εἰσὶν +πνεύματα +δαιμονίων +ποιοῦντα +σημεῖα, +ἃ +ἐκπορεύεται +ἐπὶ +τοὺς +βασιλεῖς +τῆς +οἰκουμένης +ὅλης, +συναγαγεῖν +αὐτοὺς +εἰς +τὸν +πόλεμον +τῆς +ἡμέρας +τῆς +μεγάλης +τοῦ +Θεοῦ +τοῦ +Παντοκράτορος. +Ἰδοὺ +ἔρχομαι +ὡς +κλέπτης· +μακάριος +ὁ +γρηγορῶν +καὶ +τηρῶν +τὰ +ἱμάτια +αὐτοῦ, +ἵνα +μὴ +γυμνὸς +περιπατῇ +καὶ +βλέπωσιν +τὴν +ἀσχημοσύνην +αὐτοῦ. +καὶ +συνήγαγεν +αὐτοὺς +εἰς +τὸν +τόπον +τὸν +καλούμενον +Ἑβραϊστὶ +Ἁρμαγεδών. +Καὶ +ὁ +ἕβδομος +ἐξέχεεν +τὴν +φιάλην +αὐτοῦ +ἐπὶ +τὸν +ἀέρα· +καὶ +ἐξῆλθεν +φωνὴ +μεγάλη +ἐκ +τοῦ +ναοῦ +ἀπὸ +τοῦ +θρόνου +λέγουσα +Γέγονεν. +καὶ +ἐγένοντο +ἀστραπαὶ +καὶ +φωναὶ +καὶ +βρονταί, +καὶ +σεισμὸς +μέγας, +ἐγένετο +οἷος +οὐκ +ἐγένετο +ἀφ’ +οὗ +ἄνθρωπος +ἐγένετο +ἐπὶ +τῆς +γῆς, +τηλικοῦτος +σεισμὸς +οὕτω +μέγας. +καὶ +ἐγένετο +ἡ +πόλις +ἡ +μεγάλη +εἰς +τρία +μέρη, +καὶ +αἱ +πόλεις +τῶν +ἐθνῶν +ἔπεσαν. +καὶ +Βαβυλὼν +ἡ +μεγάλη +ἐμνήσθη +ἐνώπιον +τοῦ +Θεοῦ +δοῦναι +αὐτῇ +τὸ +ποτήριον +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +ὀργῆς +αὐτοῦ. +καὶ +πᾶσα +νῆσος +ἔφυγεν, +καὶ +ὄρη +οὐχ +εὑρέθησαν. +καὶ +χάλαζα +μεγάλη +ὡς +ταλαντιαία +καταβαίνει +ἐκ +τοῦ +οὐρανοῦ +ἐπὶ +τοὺς +ἀνθρώπους· +καὶ +ἐβλασφήμησαν +οἱ +ἄνθρωποι +τὸν +Θεὸν +ἐκ +τῆς +πληγῆς +τῆς +χαλάζης, +ὅτι +μεγάλη +ἐστὶν +ἡ +πληγὴ +αὐτῆς +σφόδρα. +Καὶ +ἦλθεν +εἷς +ἐκ +τῶν +ἑπτὰ +ἀγγέλων +τῶν +ἐχόντων +τὰς +ἑπτὰ +φιάλας, +καὶ +ἐλάλησεν +μετ’ +ἐμοῦ +λέγων +Δεῦρο, +δείξω +σοι +τὸ +κρίμα +τῆς +πόρνης +τῆς +μεγάλης +τῆς +καθημένης +ἐπὶ +ὑδάτων +πολλῶν, +μεθ’ +ἧς +ἐπόρνευσαν +οἱ +βασιλεῖς +τῆς +γῆς, +καὶ +ἐμεθύσθησαν +οἱ +κατοικοῦντες +τὴν +γῆν +ἐκ +τοῦ +οἴνου +τῆς +πορνείας +αὐτῆς. +καὶ +ἀπήνεγκέν +με +εἰς +ἔρημον +ἐν +Πνεύματι. +καὶ +εἶδον +γυναῖκα +καθημένην +ἐπὶ +θηρίον +κόκκινον, +γέμοντα +ὀνόματα +βλασφημίας, +ἔχων +κεφαλὰς +ἑπτὰ +καὶ +κέρατα +δέκα. +καὶ +ἡ +γυνὴ +ἦν +περιβεβλημένη +πορφυροῦν +καὶ +κόκκινον, +καὶ +κεχρυσωμένη +χρυσίῳ +καὶ +λίθῳ +τιμίῳ +καὶ +μαργαρίταις, +ἔχουσα +ἐν +τῇ +χειρὶ +αὐτῆς +ποτήριον +χρυσοῦν +γέμον +βδελυγμάτων +καὶ +τὰ +ἀκάθαρτα +τῆς +πορνείας +αὐτῆς, +καὶ +ἐπὶ +τὸ +μέτωπον +αὐτῆς +γεγραμμένον, +ὄνομα +μυστήριον, +ΒΑΒΥΛΩΝ +Η +ΜΕΓΑΛΗ, +Η +ΜΗΤΗΡ +ΤΩΝ +ΠΟΡΝΩΝ +ΚΑΙ +ΤΩΝ +ΒΔΕΛΥΓΜΑΤΩΝ +ΤΗΣ +ΓΗΣ. +καὶ +εἶδον +τὴν +γυναῖκα +μεθύουσαν +ἐκ +τοῦ +αἵματος +τῶν +ἁγίων +καὶ +ἐκ +τοῦ +αἵματος +τῶν +μαρτύρων +Ἰησοῦ. +Καὶ +ἐθαύμασα +ἰδὼν +αὐτὴν +θαῦμα +μέγα. +καὶ +εἶπέν +μοι +ὁ +ἄγγελος +Διὰ +τί +ἐθαύμασας; +ἐγὼ +ἐρῶ +σοι +τὸ +μυστήριον +τῆς +γυναικὸς +καὶ +τοῦ +θηρίου +τοῦ +βαστάζοντος +αὐτήν +τοῦ +ἔχοντος +τὰς +ἑπτὰ +κεφαλὰς +καὶ +τὰ +δέκα +κέρατα. +τὸ +θηρίον +ὃ +εἶδες +ἦν +καὶ +οὐκ +ἔστιν, +καὶ +μέλλει +ἀναβαίνειν +ἐκ +τῆς +ἀβύσσου +καὶ +εἰς +ἀπώλειαν +ὑπάγει· +καὶ +θαυμασθήσονται +οἱ +κατοικοῦντες +ἐπὶ +τῆς +γῆς, +ὧν +τὸ +ὄνομα +οὐ +γέγραπται +ἐπὶ +τὸ +βιβλίον +τῆς +ζωῆς +ἀπὸ +καταβολῆς +κόσμου, +βλεπόντων +τὸ +θηρίον +ὅτι +ἦν +καὶ +οὐκ +ἔστιν +καὶ +παρέσται. +Ὧδε +ὁ +νοῦς +ὁ +ἔχων +σοφίαν. +αἱ +ἑπτὰ +κεφαλαὶ +ἑπτὰ +ὄρη +εἰσίν, +ὅπου +ἡ +γυνὴ +κάθηται +ἐπ’ +αὐτῶν. +καὶ +βασιλεῖς +ἑπτά +εἰσιν· +οἱ +πέντε +ἔπεσαν, +ὁ +εἷς +ἔστιν, +ὁ +ἄλλος +οὔπω +ἦλθεν, +καὶ +ὅταν +ἔλθῃ +ὀλίγον +αὐτὸν +μεῖναι. +δεῖ +καὶ +τὸ +θηρίον +ὃ +ἦν +καὶ +οὐκ +ἔστιν, +καὶ +αὐτὸς +ὄγδοός +ἐστιν +καὶ +ἐκ +τῶν +ἑπτά +ἐστιν, +καὶ +εἰς +ἀπώλειαν +ὑπάγει. +καὶ +τὰ +δέκα +κέρατα +ἃ +εἶδες +εἰσιν, +δέκα +βασιλεῖς +οἵτινες +βασιλείαν +οὔπω +ἔλαβον, +ἀλλὰ +ἐξουσίαν +ὡς +βασιλεῖς +μίαν +ὥραν +λαμβάνουσιν +μετὰ +τοῦ +θηρίου. +οὗτοι +μίαν +γνώμην +ἔχουσιν, +καὶ +τὴν +δύναμιν +καὶ +ἐξουσίαν +αὐτῶν +τῷ +θηρίῳ +διδόασιν. +οὗτοι +μετὰ +τοῦ +Ἀρνίου +πολεμήσουσιν +καὶ +τὸ +Ἀρνίον +νικήσει +αὐτούς, +ὅτι +ἐστὶν +Κύριος +κυρίων +καὶ +Βασιλεὺς +βασιλέων, +καὶ +οἱ +μετ’ +αὐτοῦ +κλητοὶ +καὶ +ἐκλεκτοὶ +καὶ +πιστοί. +Καὶ +λέγει +μοι +Τὰ +ὕδατα +ἃ +εἶδες, +οὗ +ἡ +πόρνη +κάθηται, +εἰσὶν +λαοὶ +καὶ +ὄχλοι +καὶ +ἔθνη +καὶ +γλῶσσαι. +καὶ +τὰ +δέκα +κέρατα +ἃ +εἶδες +καὶ +τὸ +θηρίον, +οὗτοι +μισήσουσιν +τὴν +πόρνην, +καὶ +ποιήσουσιν +αὐτὴν +ἠρημωμένην +καὶ +γυμνήν, +καὶ +τὰς +σάρκας +αὐτῆς +φάγονται, +καὶ +αὐτὴν +κατακαύσουσιν +ἐν +πυρί· +γὰρ +ὁ +Θεὸς +ἔδωκεν +εἰς +τὰς +καρδίας +αὐτῶν +ποιῆσαι +τὴν +γνώμην +αὐτοῦ, +καὶ +ποιῆσαι +μίαν +γνώμην +καὶ +δοῦναι +τὴν +βασιλείαν +αὐτῶν +τῷ +θηρίῳ, +ἄχρι +τελεσθήσονται +οἱ +λόγοι +τοῦ +Θεοῦ. +καὶ +ἡ +γυνὴ +ἣν +εἶδες +ἔστιν +ἡ +πόλις +ἡ +μεγάλη +ἡ +ἔχουσα +βασιλείαν +ἐπὶ +τῶν +βασιλέων +τῆς +γῆς. +Μετὰ +ταῦτα +εἶδον +ἄλλον +ἄγγελον +καταβαίνοντα +ἐκ +τοῦ +οὐρανοῦ, +ἔχοντα +ἐξουσίαν +μεγάλην, +καὶ +ἡ +γῆ +ἐφωτίσθη +ἐκ +τῆς +δόξης +αὐτοῦ. +καὶ +ἔκραξεν +ἐν +ἰσχυρᾷ +φωνῇ +λέγων +Ἔπεσεν +ἔπεσεν +Βαβυλὼν +ἡ +μεγάλη, +καὶ +ἐγένετο +κατοικητήριον +δαιμονίων +καὶ +φυλακὴ +παντὸς +πνεύματος +ἀκαθάρτου +καὶ +φυλακὴ +παντὸς +ὀρνέου +ἀκαθάρτου +καὶ +μεμισημένου, +ὅτι +ἐκ +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +πορνείας +αὐτῆς +πέπωκαν +πάντα +τὰ +ἔθνη, +καὶ +οἱ +βασιλεῖς +τῆς +γῆς +μετ’ +αὐτῆς +ἐπόρνευσαν, +καὶ +οἱ +ἔμποροι +τῆς +γῆς +ἐκ +τῆς +δυνάμεως +τοῦ +στρήνους +αὐτῆς +ἐπλούτησαν. +Καὶ +ἤκουσα +ἄλλην +φωνὴν +ἐκ +τοῦ +οὐρανοῦ +λέγουσαν +ὁ +λαός +μου +Ἐξέλθατε +ἐξ +αὐτῆς, +ἵνα +μὴ +συνκοινωνήσητε +ταῖς +ἁμαρτίαις +αὐτῆς, +καὶ +ἵνα +ἐκ +τῶν +πληγῶν +αὐτῆς +μὴ +λάβητε· +ὅτι +ἐκολλήθησαν +αὐτῆς +αἱ +ἁμαρτίαι +ἄχρι +τοῦ +οὐρανοῦ, +καὶ +ἐμνημόνευσεν +ὁ +Θεὸς +τὰ +ἀδικήματα +αὐτῆς. +ἀπόδοτε +αὐτῇ +ὡς +καὶ +αὐτὴ +ἀπέδωκεν, +καὶ +διπλώσατε +τὰ +διπλᾶ +κατὰ +τὰ +ἔργα +αὐτῆς· +ἐν +τῷ +ποτηρίῳ +ᾧ +ἐκέρασεν +κεράσατε +αὐτῇ +διπλοῦν· +ὅσα +ἐδόξασεν +αὐτὴν +καὶ +ἐστρηνίασεν, +τοσοῦτον +βασανισμὸν +καὶ +πένθος. +δότε +αὐτῇ +ὅτι +ἐν +τῇ +καρδίᾳ +αὐτῆς +λέγει +ὅτι +Κάθημαι +βασίλισσα +καὶ +χήρα +οὐκ +εἰμί, +καὶ +πένθος +οὐ +μὴ +ἴδω· +διὰ +τοῦτο +ἐν +μιᾷ +ἡμέρᾳ +ἥξουσιν +αἱ +πληγαὶ +αὐτῆς, +θάνατος +καὶ +πένθος +καὶ +λιμός, +καὶ +ἐν +πυρὶ +κατακαυθήσεται· +ὅτι +ἰσχυρὸς +Κύριος +ὁ +Θεὸς +ὁ +κρίνας +αὐτήν. +καὶ +κλαύσουσιν +καὶ +κόψονται +ἐπ’ +αὐτὴν +οἱ +βασιλεῖς +τῆς +γῆς +οἱ +μετ’ +αὐτῆς +πορνεύσαντες +καὶ +στρηνιάσαντες, +ὅταν +βλέπωσιν +τὸν +καπνὸν +τῆς +πυρώσεως +αὐτῆς, +ἀπὸ +μακρόθεν +ἑστηκότες +διὰ +τὸν +φόβον +τοῦ +βασανισμοῦ +αὐτῆς, +λέγοντες +Οὐαὶ +οὐαί, +ἡ +πόλις +ἡ +μεγάλη, +Βαβυλὼν +ἡ +πόλις +ἡ +ἰσχυρά, +ὅτι +μιᾷ +ὥρᾳ +ἦλθεν +ἡ +κρίσις +σου. +καὶ +οἱ +ἔμποροι +τῆς +γῆς +κλαίουσιν +καὶ +πενθοῦσιν +ἐπ’ +αὐτήν, +ὅτι +οὐδεὶς +ἀγοράζει +οὐκέτι, +τὸν +γόμον +αὐτῶν +γόμον +χρυσοῦ +καὶ +ἀργύρου +καὶ +λίθου +τιμίου +καὶ +μαργαριτῶν +καὶ +βυσσίνου +καὶ +πορφύρας +καὶ +σιρικοῦ +καὶ +κοκκίνου, +καὶ +πᾶν +ξύλον +θύϊνον +καὶ +πᾶν +σκεῦος +ἐλεφάντινον +καὶ +πᾶν +σκεῦος +ἐκ +ξύλου +τιμιωτάτου +καὶ +χαλκοῦ +καὶ +σιδήρου +καὶ +μαρμάρου, +καὶ +κιννάμωμον +καὶ +ἄμωμον +καὶ +θυμιάματα +καὶ +μύρον +καὶ +λίβανον +καὶ +οἶνον +καὶ +ἔλαιον +καὶ +σεμίδαλιν +καὶ +σῖτον +καὶ +κτήνη +καὶ +πρόβατα, +καὶ +ἵππων +καὶ +ῥεδῶν +καὶ +σωμάτων, +καὶ +ψυχὰς +ἀνθρώπων. +καὶ +ἡ +ὀπώρα +σου +τῆς +ἐπιθυμίας +τῆς +ψυχῆς +ἀπῆλθεν +ἀπὸ +σοῦ, +καὶ +πάντα +τὰ +λιπαρὰ +καὶ +τὰ +λαμπρὰ +ἀπώλετο +ἀπὸ +σοῦ, +καὶ +οὐκέτι +οὐ +μὴ +αὐτὰ +εὑρήσουσιν. +οἱ +ἔμποροι +τούτων, +οἱ +πλουτήσαντες +ἀπ’ +αὐτῆς, +ἀπὸ +μακρόθεν +στήσονται +διὰ +τὸν +φόβον +τοῦ +βασανισμοῦ +αὐτῆς +κλαίοντες +καὶ +πενθοῦντες, +λέγοντες +Οὐαὶ +οὐαί, +ἡ +πόλις +ἡ +μεγάλη, +ἡ +περιβεβλημένη +βύσσινον +καὶ +πορφυροῦν +καὶ +κόκκινον, +καὶ +κεχρυσωμένη +ἐν +χρυσίῳ +καὶ +λίθῳ +τιμίῳ +καὶ +μαργαρίτῃ, +ὅτι +μιᾷ +ὥρᾳ +ἠρημώθη +ὁ +τοσοῦτος +πλοῦτος. +καὶ +πᾶς +κυβερνήτης +καὶ +πᾶς +ὁ +ἐπὶ +τόπον +πλέων +καὶ +ναῦται +καὶ +ὅσοι +τὴν +θάλασσαν +ἐργάζονται, +ἀπὸ +μακρόθεν +ἔστησαν +καὶ +ἔκραζον +βλέποντες +τὸν +καπνὸν +τῆς +πυρώσεως +αὐτῆς +λέγοντες +Τίς +ὁμοία +τῇ +πόλει +τῇ +μεγάλῃ; +καὶ +ἔβαλον +χοῦν +ἐπὶ +τὰς +κεφαλὰς +αὐτῶν +καὶ +ἔκραζον +κλαίοντες +καὶ +πενθοῦντες, +λέγοντες +Οὐαὶ +οὐαί, +ἡ +πόλις +ἡ +μεγάλη, +ἐν +ᾗ +ἐπλούτησαν +πάντες +οἱ +ἔχοντες +τὰ +πλοῖα +ἐν +τῇ +θαλάσσῃ +ἐκ +τῆς +τιμιότητος +αὐτῆς, +ὅτι +μιᾷ +ὥρᾳ +ἠρημώθη. +Εὐφραίνου +ἐπ’ +αὐτῇ, +οὐρανέ +καὶ +οἱ +ἅγιοι +καὶ +οἱ +ἀπόστολοι +καὶ +οἱ +προφῆται, +ὅτι +ἔκρινεν +ὁ +Θεὸς +τὸ +κρίμα +ὑμῶν +ἐξ +αὐτῆς. +Καὶ +ἦρεν +εἷς +ἄγγελος +ἰσχυρὸς +λίθον +ὡς +μύλινον +μέγαν, +καὶ +ἔβαλεν +εἰς +τὴν +θάλασσαν +λέγων +Οὕτως +ὁρμήματι +βληθήσεται +Βαβυλὼν +ἡ +μεγάλη +πόλις, +καὶ +οὐ +μὴ +εὑρεθῇ +ἔτι. +καὶ +φωνὴ +κιθαρῳδῶν +καὶ +μουσικῶν +καὶ +αὐλητῶν +καὶ +σαλπιστῶν +οὐ +μὴ +ἀκουσθῇ +ἐν +σοὶ +ἔτι, +καὶ +πᾶς +τεχνίτης +πάσης +τέχνης +οὐ +μὴ +εὑρεθῇ +ἐν +σοὶ +ἔτι, +καὶ +φωνὴ +μύλου +οὐ +μὴ +ἀκουσθῇ +ἐν +σοὶ +ἔτι, +καὶ +φῶς +λύχνου +οὐ +μὴ +φάνῃ +ἐν +σοὶ +ἔτι, +καὶ +φωνὴ +νυμφίου +καὶ +νύμφης +οὐ +μὴ +ἀκουσθῇ +ἐν +σοὶ +ἔτι· +ὅτι +οἱ +ἔμποροί +σου +ἦσαν +οἱ +μεγιστᾶνες +τῆς +γῆς, +ὅτι +ἐν +τῇ +φαρμακίᾳ +σου +ἐπλανήθησαν +πάντα +τὰ +ἔθνη, +καὶ +ἐν +αὐτῇ +εὑρέθη +αἷμα +προφητῶν +καὶ +ἁγίων +καὶ +πάντων +τῶν +ἐσφαγμένων +ἐπὶ +τῆς +γῆς. +Μετὰ +ταῦτα +ἤκουσα +ὡς +φωνὴν +μεγάλην +ὄχλου +πολλοῦ +ἐν +τῷ +οὐρανῷ +λεγόντων +Ἁλληλουϊά· +ἡ +σωτηρία +καὶ +ἡ +δόξα +καὶ +ἡ +δύναμις +τοῦ +Θεοῦ +ἡμῶν, +ὅτι +ἀληθιναὶ +καὶ +δίκαιαι +αἱ +κρίσεις +αὐτοῦ· +ὅτι +ἔκρινεν +τὴν +πόρνην +τὴν +μεγάλην +ἥτις +ἔφθειρεν +τὴν +γῆν +ἐν +τῇ +πορνείᾳ +αὐτῆς, +καὶ +ἐξεδίκησεν +τὸ +αἷμα +τῶν +δούλων +αὐτοῦ +ἐκ +χειρὸς +αὐτῆς. +καὶ +δεύτερον +εἴρηκαν +Ἁλληλουϊά· +καὶ +ὁ +καπνὸς +αὐτῆς +ἀναβαίνει +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων. +καὶ +ἔπεσαν +οἱ +πρεσβύτεροι +οἱ +εἴκοσι +τέσσαρες +καὶ +τὰ +τέσσερα +ζῷα, +καὶ +προσεκύνησαν +τῷ +Θεῷ +τῷ +καθημένῳ +ἐπὶ +τῷ +θρόνῳ +λέγοντες +Ἀμήν, +Ἁλληλουϊά. +καὶ +φωνὴ +ἀπὸ +τοῦ +θρόνου +ἐξῆλθεν +λέγουσα +Αἰνεῖτε +τῷ +Θεῷ +ἡμῶν, +πάντες +οἱ +δοῦλοι +αὐτοῦ, +οἱ +φοβούμενοι +αὐτόν, +οἱ +μικροὶ +καὶ +οἱ +μεγάλοι. +Καὶ +ἤκουσα +ὡς +φωνὴν +ὄχλου +πολλοῦ +καὶ +ὡς +φωνὴν +ὑδάτων +πολλῶν +καὶ +ὡς +φωνὴν +βροντῶν +ἰσχυρῶν, +λεγόντων +Ἁλληλουϊά, +ὅτι +ἐβασίλευσεν +Κύριος +ὁ +Θεός +ἡμῶν +ὁ +Παντοκράτωρ. +χαίρωμεν +καὶ +ἀγαλλιῶμεν, +καὶ +δώσομεν +τὴν +δόξαν +αὐτῷ, +ὅτι +ἦλθεν +ὁ +γάμος +τοῦ +Ἀρνίου, +καὶ +ἡ +γυνὴ +αὐτοῦ +ἡτοίμασεν +ἑαυτήν, +καὶ +ἐδόθη +αὐτῇ +ἵνα +περιβάληται +βύσσινον +λαμπρὸν +καθαρόν· +γὰρ +τὸ +βύσσινον +τὰ +δικαιώματα +τῶν +ἁγίων +ἐστίν. +Καὶ +λέγει +μοι +Γράψον +Μακάριοι +οἱ +εἰς +τὸ +δεῖπνον +τοῦ +γάμου +τοῦ +Ἀρνίου +κεκλημένοι. +καὶ +λέγει +μοι +Οὗτοι +οἱ +λόγοι +ἀληθινοὶ +τοῦ +Θεοῦ +εἰσιν. +καὶ +ἔπεσα +ἔμπροσθεν +τῶν +ποδῶν +αὐτοῦ +προσκυνῆσαι +αὐτῷ. +καὶ +λέγει +μοι +Ὅρα +μή· +εἰμι +σύνδουλός +σού +καὶ +τῶν +ἀδελφῶν +σου +τῶν +ἐχόντων +τὴν +μαρτυρίαν +Ἰησοῦ· +τῷ +Θεῷ +προσκύνησον· +γὰρ +ἡ +μαρτυρία +Ἰησοῦ +ἐστιν +τὸ +πνεῦμα +τῆς +προφητείας. +Καὶ +εἶδον +τὸν +οὐρανὸν +ἠνεῳγμένον, +καὶ +ἰδοὺ +ἵππος +λευκός, +καὶ +ὁ +καθήμενος +ἐπ’ +αὐτὸν +καλούμενος +Πιστὸς +καὶ +Ἀληθινός, +καὶ +ἐν +δικαιοσύνῃ +κρίνει +καὶ +πολεμεῖ. +δὲ +οἱ +ὀφθαλμοὶ +αὐτοῦ +φλὸξ +πυρός, +καὶ +ἐπὶ +τὴν +κεφαλὴν +αὐτοῦ +διαδήματα +πολλά, +ἔχων +ὄνομα +γεγραμμένον +ὃ +οὐδεὶς +οἶδεν +εἰ +μὴ +αὐτός, +καὶ +περιβεβλημένος +ἱμάτιον +βεβαμμένον +αἵματι, +καὶ +κέκληται +τὸ +ὄνομα +αὐτοῦ +Ὁ +Λόγος +τοῦ +Θεοῦ. +καὶ +τὰ +στρατεύματα +τὰ +ἐν +τῷ +οὐρανῷ +ἠκολούθει +αὐτῷ +ἐφ’ +ἵπποις +λευκοῖς, +ἐνδεδυμένοι +βύσσινον +λευκὸν +καθαρόν. +καὶ +ἐκ +τοῦ +στόματος +αὐτοῦ +ἐκπορεύεται +ῥομφαία +ὀξεῖα, +ἵνα +ἐν +αὐτῇ +πατάξῃ +τὰ +ἔθνη· +καὶ +αὐτὸς +ποιμανεῖ +αὐτοὺς +ἐν +ῥάβδῳ +σιδηρᾷ· +καὶ +αὐτὸς +πατεῖ +τὴν +ληνὸν +τοῦ +οἴνου +τοῦ +θυμοῦ +τῆς +ὀργῆς +τοῦ +Θεοῦ +τοῦ +Παντοκράτορος. +καὶ +ἔχει +ἐπὶ +τὸ +ἱμάτιον +καὶ +ἐπὶ +τὸν +μηρὸν +αὐτοῦ +ὄνομα +γεγραμμένον +ΒΑΣΙΛΕΥΣ +ΒΑΣΙΛΕΩΝ +ΚΑΙ +ΚΥΡΙΟΣ +ΚΥΡΙΩΝ. +Καὶ +εἶδον +ἕνα +ἄγγελον +ἑστῶτα +ἐν +τῷ +ἡλίῳ, +καὶ +ἔκραξεν +ἐν +φωνῇ +μεγάλῃ +λέγων +πᾶσιν +τοῖς +ὀρνέοις +τοῖς +πετομένοις +ἐν +μεσουρανήματι +Δεῦτε +συνάχθητε +εἰς +τὸ +δεῖπνον +τὸ +μέγα +τοῦ +Θεοῦ, +ἵνα +φάγητε +σάρκας +βασιλέων +καὶ +σάρκας +χιλιάρχων +καὶ +σάρκας +ἰσχυρῶν +καὶ +σάρκας +ἵππων +καὶ +τῶν +καθημένων +ἐπ’ +αὐτῶν, +καὶ +σάρκας +πάντων +τε +ἐλευθέρων +καὶ +δούλων +καὶ +μικρῶν +καὶ +μεγάλων. +Καὶ +εἶδον +τὸ +θηρίον +καὶ +τοὺς +βασιλεῖς +τῆς +γῆς +καὶ +τὰ +στρατεύματα +αὐτῶν +συνηγμένα +ποιῆσαι +τὸν +πόλεμον +μετὰ +τοῦ +καθημένου +ἐπὶ +τοῦ +ἵππου +καὶ +μετὰ +τοῦ +στρατεύματος +αὐτοῦ. +καὶ +ἐπιάσθη +τὸ +θηρίον +καὶ +μετ’ +αὐτοῦ +ὁ +ψευδοπροφήτης +ὁ +ποιήσας +τὰ +σημεῖα +ἐνώπιον +αὐτοῦ, +ἐν +οἷς +ἐπλάνησεν +τοὺς +λαβόντας +τὸ +χάραγμα +τοῦ +θηρίου +καὶ +τοὺς +προσκυνοῦντας +τῇ +εἰκόνι +αὐτοῦ· +ζῶντες +ἐβλήθησαν +οἱ +δύο +εἰς +τὴν +λίμνην +τοῦ +πυρὸς +τῆς +καιομένης +ἐν +θείῳ. +καὶ +οἱ +λοιποὶ +ἀπεκτάνθησαν +ἐν +τῇ +ῥομφαίᾳ +τοῦ +καθημένου +ἐπὶ +τοῦ +ἵππου +τῇ +ἐξελθούσῃ +ἐκ +τοῦ +στόματος +αὐτοῦ, +καὶ +πάντα +τὰ +ὄρνεα +ἐχορτάσθησαν +ἐκ +τῶν +σαρκῶν +αὐτῶν. +Καὶ +εἶδον +ἄγγελον +καταβαίνοντα +ἐκ +τοῦ +οὐρανοῦ, +ἔχοντα +τὴν +κλεῖν +τῆς +ἀβύσσου +καὶ +ἅλυσιν +μεγάλην +ἐπὶ +τὴν +χεῖρα +αὐτοῦ. +καὶ +ἐκράτησεν +τὸν +δράκοντα, +ὁ +ὄφις +ὁ +ἀρχαῖος, +ὅς +ἐστιν +Διάβολος +καὶ +Ὁ +Σατανᾶς, +καὶ +ἔδησεν +αὐτὸν +χίλια +ἔτη, +καὶ +ἔβαλεν +αὐτὸν +εἰς +τὴν +ἄβυσσον, +καὶ +ἔκλεισεν +καὶ +ἐσφράγισεν +ἐπάνω +αὐτοῦ, +ἵνα +μὴ +πλανήσῃ +ἔτι +τὰ +ἔθνη, +ἄχρι +τελεσθῇ +τὰ +χίλια +ἔτη· +μετὰ +ταῦτα +δεῖ +λυθῆναι +αὐτὸν +μικρὸν +χρόνον. +Καὶ +εἶδον +θρόνους, +καὶ +ἐκάθισαν +ἐπ’ +αὐτούς, +καὶ +κρίμα +ἐδόθη +αὐτοῖς, +καὶ +τὰς +ψυχὰς +τῶν +πεπελεκισμένων +διὰ +τὴν +μαρτυρίαν +Ἰησοῦ +καὶ +διὰ +τὸν +λόγον +τοῦ +Θεοῦ, +καὶ +οἵτινες +οὐ +προσεκύνησαν +τὸ +θηρίον +οὐδὲ +τὴν +εἰκόνα +αὐτοῦ +καὶ +οὐκ +ἔλαβον +τὸ +χάραγμα +ἐπὶ +τὸ +μέτωπον +καὶ +ἐπὶ +τὴν +χεῖρα +αὐτῶν· +καὶ +ἔζησαν +καὶ +ἐβασίλευσαν +μετὰ +τοῦ +Χριστοῦ +χίλια +ἔτη. +οἱ +λοιποὶ +τῶν +νεκρῶν +οὐκ +ἔζησαν +ἄχρι +τελεσθῇ +τὰ +χίλια +ἔτη. +αὕτη +ἡ +ἀνάστασις +ἡ +πρώτη. +μακάριος +καὶ +ἅγιος +ὁ +ἔχων +μέρος +ἐν +τῇ +ἀναστάσει +τῇ +πρώτῃ· +ἐπὶ +τούτων +ὁ +δεύτερος +θάνατος +οὐκ +ἔχει +ἐξουσίαν, +ἀλλ’ +ἔσονται +ἱερεῖς +τοῦ +Θεοῦ +καὶ +τοῦ +Χριστοῦ, +καὶ +βασιλεύσουσιν +μετ’ +αὐτοῦ +τὰ +χίλια +ἔτη. +Καὶ +ὅταν +τελεσθῇ +τὰ +χίλια +ἔτη, +λυθήσεται +ὁ +Σατανᾶς +ἐκ +τῆς +φυλακῆς +αὐτοῦ, +καὶ +ἐξελεύσεται +πλανῆσαι +τὰ +ἔθνη +τὰ +ἐν +ταῖς +τέσσαρσιν +γωνίαις +τῆς +γῆς, +τὸν +Γὼγ +καὶ +Μαγώγ, +συναγαγεῖν +αὐτοὺς +εἰς +τὸν +πόλεμον, +ὧν +ὁ +ἀριθμὸς +αὐτῶν +ὡς +ἡ +ἄμμος +τῆς +θαλάσσης. +καὶ +ἀνέβησαν +ἐπὶ +τὸ +πλάτος +τῆς +γῆς, +καὶ +ἐκύκλευσαν +τὴν +παρεμβολὴν +τῶν +ἁγίων +καὶ +τὴν +πόλιν +τὴν +ἠγαπημένην· +καὶ +κατέβη +πῦρ +ἐκ +τοῦ +οὐρανοῦ +καὶ +κατέφαγεν +αὐτούς· +καὶ +ὁ +διάβολος +ὁ +πλανῶν +αὐτοὺς +ἐβλήθη +εἰς +τὴν +λίμνην +τοῦ +πυρὸς +καὶ +θείου, +ὅπου +καὶ +τὸ +θηρίον +καὶ +ὁ +ψευδοπροφήτης, +καὶ +βασανισθήσονται +ἡμέρας +καὶ +νυκτὸς +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων. +Καὶ +εἶδον +θρόνον +μέγαν +λευκὸν +καὶ +τὸν +καθήμενον +ἐπ’ +αὐτόν +ἀπὸ +οὗ +τοῦ +προσώπου +ἔφυγεν +ἡ +γῆ +καὶ +ὁ +οὐρανός, +καὶ +τόπος +οὐχ +εὑρέθη +αὐτοῖς. +καὶ +εἶδον +τοὺς +νεκρούς, +τοὺς +μεγάλους +καὶ +τοὺς +μικρούς, +ἑστῶτας +ἐνώπιον +τοῦ +θρόνου, +καὶ +βιβλία +ἠνοίχθησαν· +καὶ +ἄλλο +βιβλίον +ἠνοίχθη, +ὅ +ἐστιν +τῆς +ζωῆς· +καὶ +ἐκρίθησαν +οἱ +νεκροὶ +ἐκ +τῶν +γεγραμμένων +ἐν +τοῖς +βιβλίοις +κατὰ +τὰ +ἔργα +αὐτῶν. +καὶ +ἔδωκεν +ἡ +θάλασσα +τοὺς +νεκροὺς +τοὺς +ἐν +αὐτῇ, +καὶ +ὁ +θάνατος +καὶ +ὁ +Ἅιδης +ἔδωκαν +τοὺς +νεκροὺς +τοὺς +ἐν +αὐτοῖς, +καὶ +ἐκρίθησαν +ἕκαστος +κατὰ +τὰ +ἔργα +αὐτῶν. +καὶ +ὁ +θάνατος +καὶ +ὁ +Ἅιδης +ἐβλήθησαν +εἰς +τὴν +λίμνην +τοῦ +πυρός. +οὗτος +ὁ +θάνατος +ὁ +δεύτερός +ἡ +λίμνη +τοῦ +πυρός. +ἐστιν, +καὶ +εἴ +τις +οὐχ +εὑρέθη +ἐν +τῇ +βίβλῳ +τῆς +ζωῆς +γεγραμμένος, +ἐβλήθη +εἰς +τὴν +λίμνην +τοῦ +πυρός. +Καὶ +εἶδον +οὐρανὸν +καινὸν +καὶ +γῆν +καινήν· +γὰρ +ὁ +πρῶτος +οὐρανὸς +καὶ +ἡ +πρώτη +γῆ +ἀπῆλθαν, +καὶ +ἡ +θάλασσα +οὐκ +ἔστιν +ἔτι. +καὶ +εἶδον +τὴν +πόλιν +τὴν +ἁγίαν +Ἱερουσαλὴμ +καινὴν +καταβαίνουσαν +ἐκ +τοῦ +οὐρανοῦ +ἀπὸ +τοῦ +Θεοῦ, +ἡτοιμασμένην +ὡς +νύμφην +κεκοσμημένην +τῷ +ἀνδρὶ +αὐτῆς. +καὶ +ἤκουσα +φωνῆς +μεγάλης +ἐκ +τοῦ +θρόνου +λεγούσης +Ἰδοὺ +ἡ +σκηνὴ +τοῦ +Θεοῦ +μετὰ +τῶν +ἀνθρώπων, +καὶ +σκηνώσει +μετ’ +αὐτῶν, +καὶ +αὐτοὶ +λαοὶ +αὐτοῦ +ἔσονται, +καὶ +αὐτὸς +ὁ +Θεὸς +μετ’ +αὐτῶν +ἔσται, +καὶ +ἐξαλείψει +πᾶν +δάκρυον +ἐκ +τῶν +ὀφθαλμῶν +αὐτῶν, +καὶ +ὁ +θάνατος +οὐκ +ἔσται +ἔτι, +οὔτε +πένθος +οὔτε +κραυγὴ +οὔτε +πόνος +οὐκ +ἔσται +ἔτι· +ὅτι +τὰ +πρῶτα +ἀπῆλθαν. +καὶ +εἶπεν +ὁ +καθήμενος +ἐπὶ +τῷ +θρόνῳ +Ἰδοὺ +καινὰ +ποιῶ +πάντα. +καὶ +λέγει +Γράψον, +ὅτι +οὗτοι +οἱ +λόγοι +πιστοὶ +καὶ +ἀληθινοί +εἰσιν. +καὶ +εἶπέν +μοι +Γέγοναν. +ἐγὼ +τὸ +Ἄλφα +καὶ +τὸ +Ὦ, +ἡ +ἀρχὴ +καὶ +τὸ +τέλος. +ἐγὼ +τῷ +διψῶντι +δώσω +ἐκ +τῆς +πηγῆς +τοῦ +ὕδατος +τῆς +ζωῆς +δωρεάν. +ὁ +νικῶν +κληρονομήσει +ταῦτα, +καὶ +ἔσομαι +αὐτῷ +Θεὸς +καὶ +αὐτὸς +ἔσται +μοι +υἱός. +δὲ +τοῖς +δειλοῖς +καὶ +ἀπίστοις +καὶ +ἐβδελυγμένοις +καὶ +φονεῦσιν +καὶ +πόρνοις +καὶ +φαρμάκοις +καὶ +εἰδωλολάτραις +καὶ +πᾶσιν +τοῖς +ψευδέσιν +τὸ +μέρος +αὐτῶν +ἐν +τῇ +λίμνῃ +τῇ +καιομένῃ +πυρὶ +καὶ +θείῳ, +ὅ +ἐστιν +ὁ +θάνατος +ὁ +δεύτερος. +Καὶ +ἦλθεν +εἷς +ἐκ +τῶν +ἑπτὰ +ἀγγέλων +τῶν +ἐχόντων +τὰς +ἑπτὰ +φιάλας, +τῶν +γεμόντων +τῶν +ἑπτὰ +πληγῶν +τῶν +ἐσχάτων, +καὶ +ἐλάλησεν +μετ’ +ἐμοῦ +λέγων +Δεῦρο, +δείξω +σοι +τὴν +νύμφην +τὴν +γυναῖκα +τοῦ +ἀρνίου. +καὶ +ἀπήνεγκέν +με +ἐν +Πνεύματι +ἐπὶ +ὄρος +μέγα +καὶ +ὑψηλόν, +καὶ +ἔδειξέν +μοι +τὴν +πόλιν +τὴν +ἁγίαν +Ἱερουσαλὴμ +καταβαίνουσαν +ἐκ +τοῦ +οὐρανοῦ +ἀπὸ +τοῦ +Θεοῦ, +ἔχουσαν +τὴν +δόξαν +τοῦ +Θεοῦ· +ὁ +φωστὴρ +αὐτῆς +ὅμοιος +λίθῳ +τιμιωτάτῳ, +ὡς +λίθῳ +ἰάσπιδι +κρυσταλλίζοντι· +ἔχουσα +τεῖχος +μέγα +καὶ +ὑψηλόν, +ἔχουσα +πυλῶνας +δώδεκα, +καὶ +ἐπὶ +τοῖς +πυλῶσιν +ἀγγέλους +δώδεκα, +καὶ +ἐπιγεγραμμένα, +ὀνόματα +ἅ +ἐστιν +τῶν +δώδεκα +φυλῶν +υἱῶν +Ἰσραήλ. +ἀπὸ +ἀνατολῆς +πυλῶνες +τρεῖς, +καὶ +ἀπὸ +βορρᾶ +πυλῶνες +τρεῖς, +καὶ +ἀπὸ +νότου +πυλῶνες +τρεῖς, +καὶ +ἀπὸ +δυσμῶν +πυλῶνες +τρεῖς. +καὶ +τὸ +τεῖχος +τῆς +πόλεως +ἔχων +θεμελίους +δώδεκα, +καὶ +ἐπ’ +αὐτῶν +δώδεκα +ὀνόματα +τῶν +δώδεκα +ἀποστόλων +τοῦ +Ἀρνίου. +Καὶ +ὁ +λαλῶν +μετ’ +ἐμοῦ +εἶχεν +μέτρον +κάλαμον +χρυσοῦν, +ἵνα +μετρήσῃ +τὴν +πόλιν +καὶ +τοὺς +πυλῶνας +αὐτῆς +καὶ +τὸ +τεῖχος +αὐτῆς. +καὶ +ἡ +πόλις +τετράγωνος +κεῖται, +καὶ +τὸ +μῆκος +αὐτῆς +ὅσον +τὸ +πλάτος. +καὶ +ἐμέτρησεν +τὴν +πόλιν +τῷ +καλάμῳ +ἐπὶ +σταδίων +δώδεκα +χιλιάδων· +τὸ +μῆκος +καὶ +τὸ +πλάτος +καὶ +τὸ +ὕψος +αὐτῆς +ἴσα +ἐστίν. +καὶ +ἐμέτρησεν +τὸ +τεῖχος +αὐτῆς +ἑκατὸν +τεσσεράκοντα +τεσσάρων +πηχῶν, +μέτρον +ἀνθρώπου, +ὅ +ἐστιν +ἀγγέλου. +καὶ +ἡ +ἐνδώμησις +τοῦ +τείχους +αὐτῆς +ἴασπις, +καὶ +ἡ +πόλις +χρυσίον +καθαρὸν +ὅμοιον +ὑάλῳ +καθαρῷ. +οἱ +θεμέλιοι +τοῦ +τείχους +τῆς +πόλεως +παντὶ +λίθῳ +τιμίῳ +κεκοσμημένοι· +ὁ +θεμέλιος +ὁ +πρῶτος +ἴασπις, +ὁ +δεύτερος +σάπφειρος, +ὁ +τρίτος +χαλκηδών, +ὁ +τέταρτος +σμάραγδος, +ὁ +πέμπτος +σαρδόνυξ, +ὁ +ἕκτος +σάρδιον, +ὁ +ἕβδομος +χρυσόλιθος, +ὁ +ὄγδοος +βήρυλλος, +ὁ +ἔνατος +τοπάζιον, +ὁ +δέκατος +χρυσόπρασος, +ὁ +ἑνδέκατος +ὑάκινθος, +ὁ +δωδέκατος +ἀμέθυστος. +καὶ +οἱ +δώδεκα +πυλῶνες +δώδεκα +μαργαρῖται· +ἀνὰ +εἷς +ἕκαστος +τῶν +πυλώνων +ἦν +ἐξ +ἑνὸς +μαργαρίτου. +καὶ +ἡ +πλατεῖα +τῆς +πόλεως +χρυσίον +καθαρὸν +ὡς +ὕαλος +διαυγής. +Καὶ +ναὸν +οὐκ +εἶδον +ἐν +αὐτῇ· +γὰρ +ὁ +Κύριος +ὁ +Θεὸς +ὁ +Παντοκράτωρ +καὶ +τὸ +Ἀρνίον. +ναὸς +αὐτῆς +ἐστιν, +καὶ +ἡ +πόλις +οὐ +ἔχει +χρείαν +τοῦ +ἡλίου +οὐδὲ +τῆς +σελήνης, +ἵνα +φαίνωσιν +αὐτῇ· +γὰρ +ἡ +δόξα +τοῦ +Θεοῦ +ἐφώτισεν +αὐτήν, +καὶ +ὁ +λύχνος +αὐτῆς +τὸ +Ἀρνίον. +καὶ +περιπατήσουσιν +τὰ +ἔθνη +διὰ +τοῦ +φωτὸς +αὐτῆς, +καὶ +οἱ +βασιλεῖς +τῆς +γῆς +φέρουσιν +τὴν +δόξαν +αὐτῶν +εἰς +αὐτήν· +καὶ +οἱ +πυλῶνες +αὐτῆς +οὐ +μὴ +κλεισθῶσιν +ἡμέρας, +γὰρ +νὺξ +οὐκ +ἔσται +ἐκεῖ· +καὶ +οἴσουσιν +τὴν +δόξαν +καὶ +τὴν +τιμὴν +τῶν +ἐθνῶν +εἰς +αὐτήν. +καὶ +οὐ +μὴ +εἰσέλθῃ +εἰς +αὐτὴν +πᾶν +κοινὸν +καὶ +ὁ +ποιῶν +βδέλυγμα +καὶ +ψεῦδος, +εἰ +μὴ +οἱ +γεγραμμένοι +ἐν +τῷ +βιβλίῳ +τῆς +ζωῆς +τοῦ +Ἀρνίου. +καὶ +ἔδειξέν +μοι +ποταμὸν +ὕδατος +ζωῆς +λαμπρὸν +ὡς +κρύσταλλον, +ἐκπορευόμενον +ἐκ +τοῦ +θρόνου +τοῦ +Θεοῦ +καὶ +τοῦ +Ἀρνίου. +ἐν +μέσῳ +τῆς +πλατείας +αὐτῆς +καὶ +τοῦ +ποταμοῦ +ἐντεῦθεν +καὶ +ἐκεῖθεν +ξύλον +ζωῆς +ποιοῦν +καρποὺς +δώδεκα, +κατὰ +μῆνα +ἕκαστον +ἀποδιδοῦν +τὸν +καρπὸν +αὐτοῦ, +καὶ +τὰ +φύλλα +τοῦ +ξύλου +εἰς +θεραπείαν +τῶν +ἐθνῶν. +καὶ +πᾶν +κατάθεμα +οὐκ +ἔσται +ἔτι. +καὶ +ὁ +θρόνος +τοῦ +Θεοῦ +καὶ +τοῦ +Ἀρνίου +ἐν +αὐτῇ +ἔσται, +καὶ +οἱ +δοῦλοι +αὐτοῦ +λατρεύσουσιν +αὐτῷ, +καὶ +ὄψονται +τὸ +πρόσωπον +αὐτοῦ, +καὶ +τὸ +ὄνομα +αὐτοῦ +ἐπὶ +τῶν +μετώπων +αὐτῶν. +καὶ +νὺξ +οὐκ +ἔσται +ἔτι, +καὶ +οὐκ +ἔχουσιν +χρείαν +φωτὸς +λύχνου +καὶ +φωτὸς +ἡλίου, +ὅτι +Κύριος +ὁ +Θεὸς +φωτίσει +ἐπ’ +αὐτούς, +καὶ +βασιλεύσουσιν +εἰς +τοὺς +αἰῶνας +τῶν +αἰώνων. +Καὶ +εἶπέν +μοι +Οὗτοι +οἱ +λόγοι +πιστοὶ +καὶ +ἀληθινοί, +καὶ +ὁ +Κύριος +ὁ +Θεὸς +τῶν +πνευμάτων +τῶν +προφητῶν +ἀπέστειλεν +τὸν +ἄγγελον +αὐτοῦ +δεῖξαι +τοῖς +δούλοις +αὐτοῦ +ἃ +γενέσθαι +ἐν +τάχει. +δεῖ +καὶ +Ἰδοὺ +ἔρχομαι +ταχύ. +μακάριος +ὁ +τηρῶν +τοὺς +λόγους +τῆς +προφητείας +τοῦ +βιβλίου +τούτου. +Κἀγὼ +Ἰωάνης +ὁ +ἀκούων +καὶ +βλέπων +ταῦτα. +καὶ +ὅτε +ἤκουσα +καὶ +ἔβλεψα, +ἔπεσα +προσκυνῆσαι +ἔμπροσθεν +τῶν +ποδῶν +τοῦ +ἀγγέλου +τοῦ +δεικνύοντός +μοι +ταῦτα. +καὶ +λέγει +μοι +Ὅρα +μή· +εἰμι +σύνδουλός +σού +καὶ +τῶν +ἀδελφῶν +σου +τῶν +προφητῶν +καὶ +τῶν +τηρούντων +τοὺς +λόγους +τοῦ +βιβλίου +τούτου· +τῷ +Θεῷ +προσκύνησον. +Καὶ +λέγει +μοι +Μὴ +σφραγίσῃς +τοὺς +λόγους +τῆς +προφητείας +τοῦ +βιβλίου +τούτου· +γὰρ +ὁ +καιρὸς +ἐγγύς +ἐστιν. +ὁ +ἀδικῶν +ἀδικησάτω +ἔτι, +καὶ +ὁ +ῥυπαρὸς +ῥυπανθήτω +ἔτι, +καὶ +ὁ +δίκαιος +δικαιοσύνην +ποιησάτω +ἔτι, +καὶ +ὁ +ἅγιος +ἁγιασθήτω +ἔτι. +Ἰδοὺ +ἔρχομαι +ταχύ, +καὶ +ὁ +μισθός +μου +μετ’ +ἐμοῦ, +ἀποδοῦναι +ἑκάστῳ +ὡς +τὸ +ἔργον +αὐτοῦ. +ἐστὶν +ἐγὼ +τὸ +Ἄλφα +καὶ +τὸ +Ὦ, +ὁ +πρῶτος +καὶ +ὁ +ἔσχατος, +ἡ +ἀρχὴ +καὶ +τὸ +τέλος. +μακάριοι +οἱ +πλύνοντες +τὰς +στολὰς +αὐτῶν, +ἵνα +ἔσται +ἡ +ἐξουσία +αὐτῶν +ἐπὶ +τὸ +ξύλον +τῆς +ζωῆς +καὶ +τοῖς +πυλῶσιν +εἰσέλθωσιν +εἰς +τὴν +πόλιν. +ἔξω +οἱ +κύνες +καὶ +οἱ +φάρμακοι +καὶ +οἱ +πόρνοι +καὶ +οἱ +φονεῖς +καὶ +οἱ +εἰδωλολάτραι +καὶ +πᾶς +φιλῶν +καὶ +ποιῶν +ψεῦδος. +Ἐγὼ +Ἰησοῦς +ἔπεμψα +τὸν +ἄγγελόν +μου +μαρτυρῆσαι +ὑμῖν +ταῦτα +ἐπὶ +ταῖς +ἐκκλησίαις. +ἐγώ +εἰμι +ἡ +ῥίζα +καὶ +τὸ +γένος +Δαυείδ, +ὁ +ἀστὴρ +ὁ +λαμπρός, +ὁ +πρωϊνός. +Καὶ +τὸ +Πνεῦμα +καὶ +ἡ +νύμφη +λέγουσιν +Ἔρχου. +καὶ +ὁ +ἀκούων +εἰπάτω +Ἔρχου. +καὶ +ὁ +διψῶν +ἐρχέσθω, +ὁ +θέλων +λαβέτω +ὕδωρ +ζωῆς +δωρεάν. +Μαρτυρῶ +ἐγὼ +παντὶ +τῷ +ἀκούοντι +τοὺς +λόγους +τῆς +προφητείας +τοῦ +βιβλίου +τούτου· +ἐάν +τις +ἐπιθῇ +ἐπ’ +αὐτά, +ἐπιθήσει +ὁ +Θεὸς +ἐπ’ +αὐτὸν +τὰς +πληγὰς +τὰς +γεγραμμένας +ἐν +τῷ +βιβλίῳ +τούτῳ· +καὶ +ἐάν +τις +ἀφέλῃ +ἀπὸ +τῶν +λόγων +τοῦ +βιβλίου +τῆς +προφητείας +ταύτης, +ἀφελεῖ +ὁ +Θεὸς +τὸ +μέρος +αὐτοῦ +ἀπὸ +τοῦ +ξύλου +τῆς +ζωῆς +καὶ +ἐκ +τῆς +πόλεως +τῆς +ἁγίας, +τῶν +γεγραμμένων +ἐν +τῷ +βιβλίῳ +τούτῳ. +Λέγει +ὁ +μαρτυρῶν +ταῦτα +Ναί, +ἔρχομαι +ταχύ. +Ἀμήν, +ἔρχου +Κύριε +Ἰησοῦ. +Ἠ +χάρις +τοῦ +Κυρίου +Ἰησοῦ +μετὰ +πάντων. diff --git a/tf/0.1.1/type.tf b/tf/0.1.1/type.tf new file mode 100644 index 0000000..038ae94 --- /dev/null +++ b/tf/0.1.1/type.tf @@ -0,0 +1,113182 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute type +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +common +common +proper +proper +common +proper +common +proper +proper +12 proper +14 proper +17 proper +19 proper +22 proper +25 common +personal +28 proper +31 proper +34 proper +37 proper +39 proper +42 proper +44 proper +47 proper +49 proper +52 proper +54 proper +57 proper +59 proper +62 proper +64 proper +67 proper +70 proper +72 proper +75 proper +78 proper +80 proper +83 proper +85 proper +88 proper +90 common +92 proper +95 proper +99 proper +101 proper +104 proper +106 proper +109 proper +111 proper +114 proper +116 proper +119 proper +121 proper +124 proper +126 proper +129 proper +131 proper +134 proper +136 proper +139 proper +141 proper +144 proper +146 proper +149 proper +151 proper +154 proper +156 proper +159 proper +161 proper +164 proper +167 common +personal +171 common +proper +176 common +proper +proper +181 proper +183 proper +186 proper +188 proper +191 proper +193 proper +196 proper +198 proper +201 proper +203 proper +206 proper +208 proper +211 proper +213 proper +216 proper +218 proper +221 proper +223 proper +226 proper +228 proper +231 proper +233 proper +236 proper +238 common +proper +241 relative +243 proper +246 proper +250 common +252 proper +254 proper +common +259 proper +262 common +proper +common +269 common +proper +273 proper +common +278 proper +proper +281 common +286 common +personal +proper +290 proper +294 personal +297 common +300 common +303 proper +305 common +personal +312 personal +317 personal +319 demonstrative +personal +323 common +common +326 common +328 personal +330 proper +common +proper +336 proper +338 common +personal +343 personal +346 common +351 common +355 common +personal +proper +359 personal +362 common +personal +366 common +personal +369 demonstrative +377 common +380 common +384 common +386 common +390 common +394 common +personal +proper +relative +401 personal +403 common +406 proper +410 common +414 personal +416 common +common +421 common +personal +426 personal +428 relative +430 common +434 common +personal +proper +439 proper +442 proper +444 proper +446 common +proper +449 common +451 common +453 common +456 proper +462 common +467 personal +469 common +472 common +476 personal +480 common +proper +485 proper +487 personal +492 common +494 common +496 common +499 personal +502 proper +507 personal +509 proper +511 proper +517 common +519 proper +common +proper +personal +528 common +proper +532 personal +535 relative +538 common +personal +541 proper +543 proper +547 common +550 personal +552 common +555 common +558 personal +560 proper +567 common +572 personal +574 personal +577 personal +582 common +587 common +relative +592 common +594 personal +602 common +606 common +608 common +615 common +618 common +620 proper +622 common +personal +627 personal +631 common +personal +634 personal +common +common +638 common +640 common +644 common +648 proper +651 common +655 common +personal +659 personal +661 common +common +665 common +667 proper +672 common +675 common +personal +680 proper +687 personal +690 proper +693 common +696 personal +702 common +705 common +personal +common +711 proper +717 common +proper +724 common +727 common +730 proper +733 common +personal +736 proper +742 common +750 common +753 proper +758 common +personal +766 common +relative +771 common +777 proper +779 common +782 proper +784 common +common +787 common +789 proper +792 common +personal +804 proper +806 common +common +810 common +812 proper +814 proper +819 common +822 common +personal +827 common +proper +834 common +836 common +842 common +845 common +personal +850 common +proper +855 proper +858 proper +861 common +personal +proper +870 common +874 common +876 proper +881 common +883 proper +890 common +892 proper +897 common +demonstrative +900 proper +902 common +908 proper +914 common +916 common +918 demonstrative +923 proper +925 common +927 common +934 common +common +939 common +personal +942 personal +944 proper +947 common +personal +950 common +common +953 common +957 common +personal +961 common +personal +964 common +966 common +971 personal +proper +976 proper +982 proper +987 proper +common +990 personal +993 common +personal +999 proper +1001 proper +1005 common +1007 personal +common +common +interrogative +1012 personal +1017 common +1020 common +1023 common +1029 personal +common +1033 proper +1036 personal +1040 common +1043 common +demonstrative +1046 common +1048 proper +1052 common +1055 common +1057 common +1061 common +1064 common +1069 common +1072 personal +personal +1076 common +1078 common +1082 personal +1085 personal +1087 relative +1092 common +1094 personal +personal +1098 common +1101 common +relative +1104 common +1107 common +personal +1112 common +personal +1117 common +personal +1121 common +1124 common +1126 common +1131 proper +1134 proper +1137 proper +1140 proper +1144 personal +1148 personal +1150 personal +common +1154 personal +1157 personal +1160 personal +1164 proper +1166 personal +1173 personal +1176 common +1179 personal +1183 proper +1188 common +1193 common +1196 common +common +1200 common +1203 personal +1206 common +1209 common +1211 demonstrative +1214 common +personal +1219 relative +1223 proper +1230 common +1237 common +1241 common +1249 personal +1252 common +1254 common +1258 common +demonstrative +common +1269 common +1273 common +1277 common +1280 common +common +1284 personal +1290 common +1293 personal +1296 common +1301 personal +1304 common +1306 common +1308 personal +1314 common +personal +1318 personal +1321 common +1323 personal +1328 common +1330 common +personal +1333 personal +1335 proper +1340 common +1342 common +personal +1346 personal +1350 common +1355 personal +1358 common +1360 common +1363 common +personal +1367 personal +demonstrative +1370 personal +1375 personal +1378 personal +1380 proper +1382 proper +1385 common +1387 common +personal +1391 personal +1396 personal +1401 common +1405 personal +1409 proper +1414 proper +1418 proper +1422 proper +1426 common +proper +1429 proper +1435 proper +1437 common +1439 common +proper +1442 common +proper +common +common +1448 proper +proper +1451 common +1453 common +1457 common +common +1465 common +1467 common +common +common +1471 personal +1476 proper +1484 common +1486 common +1491 common +1493 proper +1496 common +proper +1500 proper +1502 proper +1504 common +personal +1507 common +1510 common +1513 common +1516 personal +1519 personal +1522 personal +common +common +1530 common +1532 personal +1539 common +proper +1543 proper +1545 proper +1547 common +personal +1551 common +1553 proper +1555 common +personal +1559 common +personal +1563 personal +1569 common +1572 common +personal +1575 personal +1581 proper +1585 common +personal +1590 common +1592 common +1596 common +1599 common +1602 common +1606 common +personal +1611 proper +1614 personal +1620 common +1622 common +1631 personal +1634 personal +common +1639 proper +1641 proper +1643 proper +1645 proper +1649 proper +1653 common +1657 common +1660 personal +1662 personal +1664 common +personal +1669 common +personal +1672 personal +1678 common +1680 personal +1683 common +1685 common +1690 personal +1696 personal +1699 common +1706 common +1708 personal +1714 personal +1720 common +1722 personal +1724 common +1730 personal +common +common +1738 common +1740 personal +1743 common +1745 common +1750 personal +1758 personal +1761 personal +1767 common +personal +1772 common +1777 common +1780 personal +personal +1784 common +1786 common +1790 common +1793 interrogative +1806 common +personal +1810 common +1812 common +1815 common +1818 common +1822 common +1825 personal +1828 common +1832 common +1839 common +1843 common +personal +1847 common +1850 personal +1853 common +1857 common +personal +1862 common +1869 common +1872 common +1881 personal +1886 common +1889 common +common +1894 common +1900 common +1907 relative +1911 common +demonstrative +1919 common +1924 common +1926 common +1929 relative +1933 demonstrative +1938 common +1940 common +1943 personal +1948 personal +1950 common +1953 common +1955 proper +1961 common +1963 common +1973 relative +1978 common +1980 personal +1982 personal +1988 common +personal +1993 common +1996 relative +1999 common +personal +common +2005 common +2008 relative +2015 common +2017 common +2022 common +personal +2026 common +2031 common +personal +2034 indefinite +2036 personal +2040 common +personal +2044 common +2050 common +personal +2057 common +personal +2062 common +personal +2066 relative +2069 personal +2072 common +2075 personal +2078 common +2080 common +2083 common +2085 common +2088 common +2092 personal +2102 common +2109 personal +2111 personal +2116 common +2120 personal +2123 personal +2126 common +personal +2131 common +personal +2136 personal +2138 personal +2142 personal +2145 personal +2150 common +personal +2156 common +personal +2160 common +2165 personal +common +2168 personal +2170 personal +2174 personal +2177 personal +2182 common +personal +2188 common +personal +2191 common +2196 relative +2199 common +personal +2202 personal +common +2205 personal +2207 personal +2213 common +personal +2216 common +common +2219 personal +2223 relative +2238 common +2240 common +personal +2243 personal +2245 personal +2252 common +2255 common +2257 common +2261 common +2264 common +2266 common +personal +2270 proper +2273 common +2276 common +2280 common +personal +2287 common +2295 common +personal +2304 demonstrative +2312 common +2314 common +2316 common +2318 common +2320 personal +2322 personal +2328 relative +personal +2334 common +personal +2337 personal +2344 personal +2348 common +personal +2352 personal +2355 common +2357 relative +personal +2360 common +2364 personal +2368 personal +2374 personal +2384 personal +2389 personal +2391 personal +2393 personal +2397 personal +2403 personal +2406 common +2408 common +personal +2412 common +2415 common +personal +2433 personal +interrogative +common +2440 common +2448 common +personal +2451 interrogative +2463 personal +2467 common +personal +2476 common +personal +2482 common +2486 personal +2490 common +2495 common +personal +2500 common +2504 common +2508 personal +2511 common +2515 common +2519 common +2524 common +2527 personal +2530 common +personal +2533 personal +2535 common +2540 personal +interrogative +2545 personal +2548 personal +2550 common +2556 common +personal +2564 personal +2572 common +2577 common +2581 common +2589 common +2592 personal +2595 common +personal +2599 personal +2604 common +personal +2609 common +personal +2613 common +personal +2621 common +personal +2629 personal +2642 common +personal +2648 personal +2652 common +personal +relative +common +2659 personal +2661 personal +2665 personal +common +personal +2671 common +2674 common +personal +2678 common +personal +2682 common +personal +2686 common +2689 common +2691 common +personal +2696 personal +2700 personal +2702 common +personal +2706 personal +2709 common +personal +2714 personal +2716 common +2719 personal +2727 common +2729 common +personal +2733 personal +2735 common +personal +2744 common +2747 common +personal +2751 common +personal +2760 common +2765 common +personal +2770 common +2774 personal +2777 common +personal +2780 personal +2783 personal +2785 common +2788 common +personal +2795 common +2799 common +personal +2807 common +personal +2815 personal +2818 personal +common +2822 common +2824 common +2826 common +2830 common +2836 personal +common +2839 common +2842 common +2844 common +2848 common +2857 common +personal +2863 common +personal +2866 common +2868 common +2871 common +2876 common +personal +2881 common +personal +2888 common +personal +2894 common +personal +2901 common +2904 personal +common +2908 common +interrogative +2913 common +2933 common +2936 common +2938 demonstrative +2940 personal +2944 common +personal +interrogative +2949 interrogative +2953 common +personal +interrogative +2959 common +2963 common +2966 common +2968 common +2974 common +2983 common +2986 common +personal +2991 personal +2993 personal +2996 personal +2998 interrogative +3000 personal +3006 common +personal +common +3012 common +interrogative +3017 common +3019 common +3028 personal +3031 proper +3035 common +personal +3040 demonstrative +3044 common +3046 common +3052 common +3055 common +3061 personal +3067 interrogative +3070 interrogative +3073 interrogative +3077 demonstrative +3079 common +3084 common +personal +3090 demonstrative +3096 common +3099 common +personal +3102 demonstrative +3105 personal +3116 personal +3119 common +3121 common +personal +3130 relative +common +3136 relative +common +3140 personal +3142 interrogative +3145 common +3149 common +3151 common +personal +3157 possessive +common +common +3166 common +personal +3171 common +3174 common +personal +3179 common +3182 common +personal +common +3189 common +personal +3192 common +3198 common +3201 common +3203 common +personal +3210 common +3214 common +personal +3218 common +3222 personal +3225 common +personal +3230 personal +3234 personal +3241 personal +3258 personal +interrogative +common +relative +3264 common +personal +common +3268 common +3270 personal +3273 common +3276 common +3278 personal +3281 personal +3285 common +3289 common +personal +interrogative +3294 common +personal +3299 common +3304 personal +3308 relative +3312 personal +3314 common +3317 personal +3319 personal +3321 demonstrative +3324 common +3327 common +3332 common +3336 common +3340 common +3345 common +3352 personal +3356 common +3360 common +3365 common +3371 personal +3375 common +relative +3379 personal +3381 common +common +3386 common +3390 common +personal +3393 personal +3397 common +common +3401 common +common +3405 common +3407 common +3413 common +common +3419 common +3421 common +3425 common +3427 common +3431 common +3434 common +3439 common +3444 common +personal +3447 personal +3452 personal +common +common +3458 common +3460 common +3465 common +3467 common +personal +3472 common +3475 personal +3477 demonstrative +3479 common +common +common +3484 possessive +common +3489 possessive +common +common +3495 possessive +common +common +3503 personal +3507 personal +3510 personal +3514 common +3517 relative +3519 personal +3521 common +demonstrative +3525 personal +3527 common +3529 relative +3531 personal +3533 common +3536 common +3540 common +3544 common +3548 common +3552 common +demonstrative +3561 common +3566 personal +3568 common +demonstrative +3573 personal +3575 common +3577 relative +3579 personal +3581 common +3584 common +3588 common +3592 common +3596 common +3600 common +demonstrative +3607 common +personal +3615 proper +3617 common +demonstrative +3621 common +3624 common +personal +3629 personal +3631 common +3637 common +personal +3641 personal +3644 common +3646 personal +common +3654 personal +3656 common +3660 personal +3665 common +3667 personal +3674 personal +3676 common +3679 personal +3681 proper +3687 personal +3690 common +3694 common +relative +3697 proper +3699 common +personal +3703 personal +3705 proper +3707 personal +common +3710 personal +3713 common +3715 common +personal +3720 common +3725 personal +personal +3729 personal +3733 common +3735 common +3741 personal +3743 common +3748 common +3752 common +personal +3756 personal +3758 common +3760 common +3763 personal +common +3767 demonstrative +3778 common +personal +3781 demonstrative +3787 proper +3795 personal +3798 demonstrative +common +3802 proper +3806 personal +3810 common +3812 common +3817 proper +3819 proper +3821 proper +3824 common +3826 common +3829 common +3831 common +3835 common +3841 common +3844 common +3846 common +3850 proper +3852 common +3857 personal +3861 common +3864 common +demonstrative +3868 proper +3872 common +proper +3876 common +personal +3884 common +personal +3888 personal +3890 common +3895 personal +3900 personal +3906 common +common +3919 proper +3921 common +3923 personal +3925 common +personal +3930 common +3934 proper +3936 common +3938 personal +3947 common +3949 personal +common +3952 personal +3958 personal +3960 proper +3962 common +common +3969 common +common +3973 common +3975 common +3980 common +3985 common +3987 personal +common +3990 personal +3996 common +personal +4000 proper +4002 personal +4004 personal +4011 personal +4015 personal +4018 common +4020 personal +4022 common +personal +4026 common +4031 common +4034 common +4038 common +4040 personal +4045 personal +4047 common +4052 personal +interrogative +4061 common +4064 common +4067 common +4071 common +4074 interrogative +4076 demonstrative +4080 common +4083 common +personal +4088 personal +4094 common +4098 personal +4103 common +4110 indefinite +4114 common +demonstrative +4120 interrogative +personal +4123 personal +common +4126 common +4130 common +4132 personal +4137 personal +common +common +4144 common +4146 personal +4150 personal +4152 personal +4155 common +4157 common +4160 personal +4168 common +4174 common +4177 common +4180 common +4185 common +4194 common +4205 common +4208 common +4210 proper +4213 personal +4219 common +personal +4224 common +4231 common +4235 personal +4238 common +4242 proper +4245 common +personal +4251 common +4253 personal +4255 common +4258 indefinite +4260 common +4263 personal +demonstrative +4268 proper +4271 common +personal +4280 common +personal +4283 interrogative +4288 personal +4290 common +4300 common +4303 common +4305 common +4308 common +4310 common +4317 personal +4319 common +4324 common +personal +4331 common +personal +4336 common +4341 common +4344 common +demonstrative +4347 common +4352 proper +4354 common +4358 common +proper +4363 personal +4365 personal +4369 personal +4372 personal +4376 common +4380 common +4386 proper +4389 common +personal +4394 proper +4397 common +personal +4400 interrogative +4403 common +4408 common +personal +4415 common +common +4427 interrogative +4429 common +4433 common +4443 personal +4445 common +proper +4449 interrogative +personal +4453 proper +4457 common +personal +4463 personal +4465 proper +4469 common +4471 common +4474 relative +4476 personal +4479 common +4482 common +4486 personal +4488 common +4495 common +common +4499 common +4504 common +personal +4508 common +4511 common +4515 common +4518 common +4525 common +4528 common +4532 common +4536 common +4539 common +4544 demonstrative +personal +4547 personal +4549 common +4553 personal +4557 common +personal +4565 common +personal +4568 personal +4574 proper +4576 personal +4579 common +personal +4583 common +4586 common +4591 common +4593 common +personal +4598 personal +4603 common +personal +4608 proper +4612 personal +4615 common +4617 common +personal +4620 personal +4624 common +4627 common +demonstrative +4631 proper +4635 common +4637 common +4641 common +4644 common +4652 common +4657 personal +4662 common +4666 common +personal +4671 common +4675 common +demonstrative +4680 common +demonstrative +4686 proper +4694 personal +common +proper +4701 common +4703 personal +4708 personal +4710 proper +4714 demonstrative +4717 personal +4719 common +4723 common +personal +4728 common +personal +4731 personal +4734 personal +4736 common +4739 personal +4741 proper +4750 personal +4754 common +demonstrative +4757 personal +4761 personal +4767 common +4774 common +4781 proper +4784 proper +4788 common +4790 common +4793 common +4797 proper +4799 common +4803 common +4807 common +personal +4812 common +4814 common +4818 common +4821 common +4825 common +4828 personal +4835 common +4838 common +4842 common +personal +4846 common +4850 common +4855 common +4857 common +4860 common +4863 common +personal +4869 common +personal +4872 personal +common +common +4878 personal +4882 common +4885 common +4889 common +4891 common +4893 demonstrative +4895 proper +4898 proper +4900 proper +4902 common +personal +4905 proper +4908 proper +4910 proper +4912 common +personal +proper +4916 proper +proper +4919 proper +4921 common +proper +4925 proper +4927 proper +proper +4930 proper +4932 proper +4934 proper +4938 personal +demonstrative +4944 proper +4946 personal +4949 common +common +4955 common +proper +4964 common +4967 common +proper +4976 common +4978 common +4985 common +4993 common +4995 common +4997 common +5000 common +personal +5003 common +5005 common +5008 common +5010 common +5012 common +5016 common +5018 common +personal +5023 relative +common +5026 common +5029 interrogative +5031 personal +5043 common +5045 personal +5051 common +5055 common +personal +5058 personal +5065 common +personal +5068 personal +5072 relative +5075 personal +5079 common +personal +5084 common +5087 common +demonstrative +5091 common +5093 common +personal +5097 personal +5100 common +proper +5103 proper +5105 common +common +5109 common +demonstrative +5112 personal +5114 personal +5116 common +5119 common +5125 common +5130 common +5135 common +5138 personal +5140 common +5144 common +personal +5147 personal +5151 common +5153 common +5156 personal +5158 common +personal +5162 common +5166 personal +5171 interrogative +5175 personal +5177 demonstrative +5179 common +interrogative +5184 personal +5190 common +5192 common +personal +5197 personal +5200 common +common +5203 common +5205 common +common +5209 common +5211 common +5214 personal +5222 common +personal +5228 common +demonstrative +5234 personal +5237 common +demonstrative +5246 personal +5251 common +5253 proper +5257 common +5259 common +5262 common +5265 common +5267 common +5270 common +personal +5274 common +5279 common +personal +5283 common +5286 common +personal +5290 common +proper +5293 interrogative +5296 common +personal +5301 personal +5306 relative +5311 relative +5314 relative +5316 personal +5319 common +5323 common +5325 relative +5328 common +5333 common +5341 common +5346 common +5354 common +5356 common +5359 common +5362 common +common +5368 personal +5373 common +5376 common +personal +5380 personal +5382 common +5384 common +5392 common +5394 personal +5397 relative +5400 personal +5403 common +5405 personal +5407 personal +5410 common +personal +5415 common +5418 relative +5420 personal +5423 common +5425 personal +personal +5429 common +personal +5434 common +5440 common +5443 common +5447 common +5449 common +5453 common +5456 common +personal +5459 common +5462 common +personal +5465 common +5468 common +personal +5473 common +5475 common +personal +5479 common +5481 common +5483 personal +5486 personal +5491 common +5493 common +5495 personal +5498 personal +5501 relative +5505 common +personal +5510 personal +5513 personal +5518 common +personal +5521 personal +5526 common +personal +5529 personal +5531 personal +5534 personal +personal +5539 personal +5544 personal +5547 common +5549 common +common +common +common +5559 common +5561 common +5566 relative +5571 demonstrative +common +5576 common +common +5580 personal +5585 common +personal +5592 proper +5596 common +personal +5606 common +personal +5610 proper +5614 common +5616 common +5618 proper +5622 common +personal +5625 personal +personal +5636 proper +5638 personal +5641 proper +relative +5666 relative +5670 personal +5672 demonstrative +5676 proper +5679 common +5681 proper +interrogative +5688 common +5690 common +5693 interrogative +5696 common +5707 common +5709 common +5711 interrogative +5713 common +5717 personal +5720 common +demonstrative +5724 relative +5727 personal +5730 common +personal +5733 common +personal +relative +5738 common +personal +5741 personal +5744 personal +5749 common +5751 proper +5753 common +5759 common +5761 common +5763 personal +5768 common +proper +5771 common +5775 common +5777 common +5780 common +5782 personal +5786 common +5789 common +5791 proper +5797 personal +5799 proper +5805 common +5808 interrogative +5811 common +demonstrative +5815 common +5819 common +relative +5826 personal +5836 proper +5843 common +5847 common +5849 common +5856 common +common +5859 common +5861 common +5867 common +5870 common +personal +5876 common +5878 relative +5882 common +personal +5888 personal +proper +5891 personal +proper +5896 proper +5898 proper +5901 common +5905 personal +5909 common +5911 common +5915 personal +proper +5918 proper +5922 common +common +5925 personal +5927 proper +5929 personal +5931 common +5934 common +5939 proper +5942 common +5946 personal +5954 personal +5956 common +proper +5961 common +common +5964 personal +5966 demonstrative +5968 common +5971 proper +5974 personal +common +common +5978 common +5981 common +5984 demonstrative +5991 personal +5995 common +5998 common +6001 personal +6003 personal +6007 common +personal +6013 common +6017 common +6020 common +indefinite +6026 common +6029 relative +6033 common +6036 personal +6042 personal +6044 personal +6047 common +personal +6050 personal +6054 personal +6061 common +6064 common +6066 common +personal +6070 common +personal +6075 common +personal +6080 demonstrative +6082 common +6085 proper +6087 common +6093 common +personal +6099 common +6104 proper +6107 personal +6110 common +personal +6113 relative +6118 common +6122 personal +6125 interrogative +6127 proper +6133 personal +6138 common +6140 common +6143 common +6145 common +6147 relative +6152 personal +6156 personal +6160 common +6167 common +6170 common +6172 common +6177 common +6184 personal +6194 interrogative +6196 common +6200 common +6208 common +6210 common +6212 common +6214 common +6221 common +personal +6225 common +common +6231 personal +6236 common +6240 personal +6244 personal +interrogative +6248 personal +common +relative +6252 common +6257 demonstrative +6259 common +6261 common +6264 personal +6268 interrogative +6270 common +common +6275 common +6281 common +6283 personal +6285 common +6297 proper +common +6301 personal +6303 personal +6307 proper +6313 personal +6317 personal +6321 personal +6325 personal +6332 proper +6334 common +6338 common +personal +relative +6344 personal +relative +6348 common +personal +6352 common +personal +6355 personal +6357 common +6359 common +6367 indefinite +6372 common +personal +common +6379 common +6387 common +6389 common +6392 common +personal +common +6398 personal +6405 personal +6416 common +6420 demonstrative +6423 common +proper +6427 proper +6430 demonstrative +6434 common +6439 proper +common +6442 common +6446 common +personal +6449 personal +6451 common +6454 personal +6458 common +6460 common +6463 personal +6469 proper +6471 proper +6474 personal +6480 common +personal +6484 personal +6486 proper +6489 common +6491 common +personal +6494 interrogative +6497 demonstrative +personal +common +personal +6505 common +common +personal +6510 common +6514 personal +6516 common +6518 common +6522 indefinite +6526 common +6531 common +personal +6543 common +personal +6550 personal +6552 personal +6559 personal +6562 demonstrative +6564 personal +6566 common +6568 common +6571 common +6575 common +common +6581 relative +6583 common +6586 common +6588 common +6590 personal +6593 relative +6597 common +6602 personal +6605 demonstrative +6607 common +6615 common +6619 common +personal +6625 common +6629 common +personal +6635 common +6637 common +6639 common +common +6650 common +6652 common +6654 common +6658 common +6662 common +6668 common +6672 common +6677 personal +6680 common +6682 relative +6685 common +6688 personal +common +6691 common +common +6696 common +personal +6702 common +personal +6707 personal +indefinite +6710 common +6712 proper +6714 common +6717 personal +common +6724 personal +common +6729 common +6732 common +6735 personal +6739 common +proper +6742 common +6746 proper +6749 common +6751 common +6753 common +6756 common +6760 common +6762 common +6765 common +6767 common +6769 common +6772 common +common +proper +6778 common +6781 common +demonstrative +6785 personal +6790 common +proper +6795 proper +6797 common +common +6802 common +6805 common +demonstrative +6809 personal +6814 common +6816 common +6819 common +proper +6824 proper +6830 common +6834 common +6838 common +6840 common +6848 common +personal +6866 personal +6869 common +6871 personal +6881 common +demonstrative +6890 common +demonstrative +6895 personal +6898 common +6901 common +6904 common +personal +6909 personal +6913 indefinite +personal +6917 common +personal +6921 common +personal +6926 personal +6934 personal +interrogative +6938 common +personal +6941 interrogative +6944 common +personal +6949 common +personal +6953 common +personal +6958 common +personal +6962 common +personal +6966 relative +6969 common +6971 common +personal +6975 common +personal +personal +common +6980 common +6982 common +6986 common +demonstrative +6989 proper +6992 common +6996 common +7000 personal +common +7004 personal +7006 common +7012 common +7015 common +7019 personal +7022 common +7034 personal +7036 relative +7040 common +7046 personal +7056 common +7065 common +common +7068 common +7076 common +7083 common +7087 common +7090 personal +7096 common +7101 common +7103 relative +7106 relative +7109 relative +7113 common +7118 common +7120 personal +7122 interrogative +7124 common +7126 personal +7132 personal +7136 common +7138 common +7140 common +7142 demonstrative +7146 relative +7149 personal +7153 relative +7157 relative +7161 personal +7163 demonstrative +7165 common +personal +7180 personal +7182 common +proper +7186 common +7202 common +7204 common +demonstrative +7208 common +7213 common +personal +7220 common +7223 common +7227 common +7233 personal +7236 personal +7238 common +7243 common +personal +7250 personal +7253 common +7258 relative +7265 relative +7271 personal +7274 common +7280 common +7282 common +7295 common +personal +demonstrative +7302 common +7310 demonstrative +7314 common +7319 common +7321 personal +7325 common +7327 personal +7333 common +7335 common +7338 common +7345 common +7347 demonstrative +7351 common +7355 common +7357 common +7360 common +7362 common +7365 common +7374 common +7376 demonstrative +7380 common +7385 relative +7390 relative +7393 relative +7396 relative +7399 common +7401 personal +7405 common +7407 common +common +7411 common +7414 common +personal +7421 common +7423 personal +7428 common +7432 common +7439 common +7441 common +7447 common +7451 common +7453 common +7455 personal +common +7459 common +7463 possessive +common +7468 common +7472 personal +7474 common +demonstrative +7479 common +personal +7486 personal +7495 common +7498 personal +7500 common +7506 common +7509 common +7511 common +7514 common +7518 common +7521 personal +7523 common +7527 personal +7530 common +7534 common +personal +7537 common +7539 personal +7544 common +7546 common +common +common +relative +7551 common +7555 common +personal +7558 relative +7563 common +7569 common +7573 common +7579 common +7584 common +personal +7587 common +7589 personal +7593 common +7595 common +common +relative +7599 common +7602 common +common +7606 relative +7609 demonstrative +7613 proper +7615 common +7617 common +7620 common +7623 personal +7630 common +7634 common +7636 common +personal +7641 common +7645 common +7649 common +7652 personal +7654 common +personal +7658 personal +7660 common +7662 common +7664 common +7673 common +7676 common +7678 common +7681 common +7684 common +7688 common +demonstrative +7692 common +7694 common +7697 common +7700 common +7708 personal +7714 common +common +common +7720 common +common +7727 common +7729 common +7735 common +7737 common +7740 common +7742 common +7744 common +personal +7750 common +personal +7754 common +7759 common +7762 personal +7765 common +7767 common +7771 common +7774 common +7776 common +7783 common +7785 common +personal +7789 common +7792 common +7797 common +7799 common +common +7804 common +relative +7807 common +7812 common +personal +7817 relative +7822 common +demonstrative +7828 common +7830 common +common +7834 common +7839 common +7843 relative +7847 personal +7852 common +7854 common +common +7859 common +7863 common +7865 relative +7871 common +7878 common +7888 common +7890 common +7893 common +7904 personal +7907 common +7909 common +7913 common +7916 common +7918 common +7920 demonstrative +7923 personal +7928 personal +7930 demonstrative +7932 common +7935 common +7937 common +7940 common +common +relative +7946 common +personal +7956 proper +7958 common +demonstrative +7966 common +personal +7969 personal +7972 common +personal +7976 personal +7980 demonstrative +7982 common +demonstrative +7986 common +7988 demonstrative +7992 common +common +7996 common +personal +7999 proper +8002 common +personal +proper +8006 proper +8008 proper +8010 proper +8013 common +personal +8018 personal +8022 demonstrative +demonstrative +8028 personal +8031 proper +8033 personal +8036 common +8042 common +8046 common +personal +8052 common +8056 common +personal +8059 demonstrative +8061 common +8063 proper +8065 common +8067 common +proper +8072 common +personal +demonstrative +8076 proper +8078 common +personal +8086 demonstrative +8088 common +8091 personal +8094 proper +8097 proper +8101 common +8104 proper +8106 common +proper +8109 common +personal +8114 proper +personal +8118 personal +8120 personal +8123 personal +8127 common +8130 common +personal +8134 common +8136 proper +8140 common +8142 proper +8149 proper +8152 common +8154 personal +8157 relative +8164 common +personal +8168 personal +8171 common +8173 common +proper +8176 common +8180 common +8183 common +8192 proper +8195 common +8199 common +personal +8202 common +8206 common +8210 common +personal +8215 common +personal +8219 common +8222 personal +8227 proper +8231 proper +8235 common +8238 common +8244 common +8246 personal +8250 common +8255 common +8259 personal +8264 personal +8269 personal +8271 common +8276 common +8279 common +8285 common +8290 common +8292 personal +common +8296 proper +8298 personal +8300 common +8304 personal +personal +8310 personal +8317 common +8320 common +8325 personal +8327 personal +8331 common +8335 common +8339 common +8343 common +8347 common +8353 common +8355 common +8358 common +8360 common +8371 common +8373 common +8379 common +8383 common +8385 common +8390 common +8394 common +8397 personal +8402 relative +8405 common +8409 common +8413 common +8425 common +8427 common +8431 common +8436 common +8441 common +8444 common +8446 common +8449 personal +8453 common +8456 common +8458 personal +8461 common +8466 common +8471 common +8477 proper +personal +8481 personal +8487 personal +8489 proper +8491 common +8493 personal +8496 personal +8499 personal +8502 common +8511 common +proper +8516 common +8521 proper +8525 common +8532 common +8534 personal +8538 proper +8541 common +8543 personal +8546 personal +8549 interrogative +8553 personal +8556 common +8559 common +8564 common +8566 personal +8569 common +common +8577 common +8579 proper +8582 personal +8584 common +8586 common +demonstrative +8593 demonstrative +8596 personal +8603 personal +8608 common +8610 common +personal +8613 relative +8619 proper +8621 proper +proper +8624 common +8627 interrogative +8629 common +personal +8633 common +8640 common +8642 common +8648 personal +8650 interrogative +8652 personal +8655 common +8657 common +8660 common +personal +8664 common +8668 common +8671 common +8675 common +8677 common +common +8681 personal +8684 relative +8687 common +8690 common +common +8693 relative +8695 personal +8701 common +personal +8705 common +personal +8710 common +8712 common +8715 common +personal +common +8721 personal +proper +8725 common +demonstrative +8728 common +personal +8733 common +personal +8738 personal +8742 personal +8744 common +common +common +8750 common +8752 personal +8761 common +8764 common +8770 common +demonstrative +8774 common +8778 common +8780 personal +8784 proper +8787 common +8794 common +relative +8799 common +personal +8805 personal +8808 common +8817 common +8822 proper +8824 personal +8826 personal +8828 common +8834 personal +8845 common +8848 common +8852 common +8859 common +8862 common +8867 common +8871 common +8873 common +8875 common +common +common +common +common +common +demonstrative +8886 common +8890 common +8895 common +8900 proper +8904 common +proper +8907 proper +8910 common +8914 common +demonstrative +8920 personal +common +common +proper +8925 common +personal +8933 personal +common +8938 common +personal +8941 personal +8944 personal +8948 personal +8959 common +8962 common +proper +8968 personal +8970 common +8972 personal +8982 common +8984 common +8988 common +8993 common +8997 common +9001 common +9006 common +9008 common +personal +9013 proper +9015 personal +9017 common +9019 personal +9021 common +9023 personal +9029 common +personal +9033 common +demonstrative +9039 proper +9043 common +9045 proper +9050 common +9055 personal +common +9060 personal +9070 personal +9073 common +personal +9077 personal +9080 common +9096 common +proper +9100 proper +9103 common +personal +9109 common +9112 common +9115 personal +9119 interrogative +9123 personal +9132 common +9135 personal +9137 common +9139 personal +9141 common +common +demonstrative +9146 common +demonstrative +9150 personal +9152 proper +interrogative +common +9162 common +9166 common +9170 common +9174 common +9177 common +9184 common +9187 common +9189 common +9199 common +9201 common +9209 common +9211 common +9213 common +9217 common +9221 common +9226 common +proper +9231 proper +9233 proper +9236 personal +common +9240 common +9242 personal +9247 personal +9251 common +9255 common +9259 common +9264 common +9267 common +9269 common +9274 common +9276 common +9279 common +9283 common +9286 common +9289 personal +9293 common +proper +9297 personal +9301 common +9307 common +9311 proper +9313 personal +9319 common +9321 proper +9323 proper +9328 personal +9331 common +9337 proper +9339 interrogative +9342 personal +9345 common +9354 common +9358 interrogative +common +9364 common +9368 interrogative +common +9377 common +9379 personal +9384 common +9386 proper +9388 proper +9397 common +9399 common +9403 common +9405 proper +9407 proper +9410 proper +9414 common +proper +9417 proper +9420 common +personal +9425 common +interrogative +9429 common +9431 common +9437 proper +9439 common +9442 proper +9445 proper +9449 common +9451 personal +9453 personal +interrogative +personal +9460 proper +proper +9463 personal +9466 proper +9468 common +9470 common +9476 proper +9478 personal +9481 proper +proper +9484 common +9486 common +9489 personal +9492 common +personal +9497 common +9499 personal +personal +9503 personal +9505 proper +9508 demonstrative +9510 common +9512 personal +9514 common +9516 common +common +9520 personal +9522 personal +9524 common +9526 common +9528 common +9531 relative +9535 common +9540 common +9543 relative +9547 common +9552 common +9556 common +9561 personal +9564 proper +9568 proper +proper +9572 common +personal +9576 personal +9578 proper +9587 common +9589 common +9595 common +9599 personal +9601 proper +9604 personal +9607 personal +common +9612 personal +demonstrative +9619 proper +9622 personal +proper +common +personal +9632 common +9636 common +9639 proper +9642 common +personal +9645 indefinite +9648 personal +9651 personal +9655 common +personal +9659 personal +9662 relative +9665 common +personal +9669 personal +9672 relative +9675 common +personal +9678 personal +9680 personal +9682 interrogative +9684 common +9687 common +9692 common +personal +9696 interrogative +9698 common +common +9701 common +personal +9706 common +9708 common +9712 common +9714 common +personal +9718 common +personal +9726 common +personal +9730 personal +9733 indefinite +9737 relative +9741 common +9746 common +9748 common +9752 common +personal +9756 common +9760 proper +9762 proper +9764 proper +9766 proper +9768 common +personal +9772 personal +9774 common +9781 personal +9785 common +personal +9789 common +9792 common +personal +9798 common +9802 personal +proper +9805 proper +9808 personal +9812 proper +9815 proper +common +9819 personal +9827 common +personal +9831 proper +9834 proper +9837 personal +9840 common +9843 personal +9846 common +9849 common +9851 demonstrative +9854 common +personal +9859 relative +9862 personal +9866 common +9869 common +personal +9877 proper +9880 personal +9889 common +personal +9895 personal +proper +9900 personal +9903 common +9905 personal +9907 proper +9912 common +9914 relative +9916 common +9918 common +9924 personal +9926 common +9929 interrogative +9931 common +9935 proper +9943 proper +9950 personal +9952 proper +9958 personal +9962 personal +relative +9968 common +9970 common +9974 personal +9978 common +9981 proper +9983 common +9985 personal +9990 common +9992 personal +common +9995 personal +9998 common +10000 personal +10002 common +10013 common +10018 common +10021 personal +10023 common +personal +10028 personal +10033 proper +10036 common +10043 personal +10048 personal +10050 personal +personal +10055 personal +10057 proper +10061 personal +10063 common +10067 common +10070 common +demonstrative +10074 common +10077 proper +10082 interrogative +personal +10087 personal +10091 personal +10094 common +personal +10099 personal +10102 common +10104 common +common +10108 common +demonstrative +10118 personal +10121 personal +10124 proper +10126 personal +10128 proper +10131 common +10133 common +10136 common +common +10140 personal +10144 common +10151 personal +10153 proper +10157 common +10160 proper +10165 common +personal +10168 common +10175 common +10177 personal +10179 proper +10181 interrogative +personal +10184 proper +10186 common +10188 common +10190 interrogative +10192 common +10194 common +10197 common +personal +10209 personal +10211 proper +10216 common +10221 personal +10224 common +10226 common +10231 common +10236 common +personal +10239 common +demonstrative +10243 personal +10245 personal +10247 personal +10249 demonstrative +10251 common +10254 common +10256 proper +10259 interrogative +10264 common +10266 common +10269 common +10271 personal +10274 personal +10279 personal +10287 common +10293 common +10295 common +10297 relative +10299 personal +10302 common +demonstrative +demonstrative +10310 common +10312 common +10315 relative +10318 common +demonstrative +10322 common +personal +personal +10328 relative +10333 demonstrative +10337 personal +10339 personal +10342 common +10346 common +personal +10352 common +10354 common +10357 common +10360 common +10362 common +10365 common +10369 common +10371 relative +10373 common +10378 common +personal +10382 common +personal +10385 personal +10387 personal +10391 personal +10393 personal +10398 common +10404 common +10407 common +10412 common +10418 common +personal +10421 personal +10423 personal +10427 personal +10429 personal +10434 common +10438 common +10443 common +10445 common +10452 demonstrative +10455 personal +10458 common +personal +10461 common +10466 common +10468 common +personal +10472 common +interrogative +personal +10478 indefinite +common +10481 common +10486 personal +10494 common +10504 personal +10507 personal +10511 personal +10524 common +10527 common +personal +10531 common +10537 demonstrative +10542 common +personal +10546 personal +10548 personal +10550 personal +10553 personal +10557 common +personal +10565 personal +10572 common +10576 common +10579 common +10583 personal +10586 common +10591 common +10594 personal +10600 common +10603 personal +10605 relative +10609 common +10613 common +10616 relative +10620 common +10624 common +10628 personal +10633 personal +10637 common +10640 common +10642 relative +10645 personal +10648 common +personal +10652 common +10662 possessive +common +10668 personal +10672 proper +10674 personal +common +10679 personal +10681 common +personal +10685 personal +10689 personal +10691 proper +10694 personal +10702 demonstrative +10705 common +10707 common +common +common +relative +10713 common +10716 common +personal +10720 personal +10723 personal +10725 common +10727 common +10731 personal +10735 common +10737 personal +10740 common +10743 common +10746 relative +10753 common +10755 personal +10759 personal +10763 personal +10767 common +10769 common +demonstrative +10772 personal +10775 common +10777 personal +10781 common +demonstrative +10786 common +personal +relative +10790 personal +10792 common +10795 personal +10800 indefinite +10805 common +personal +10808 personal +10812 personal +10815 personal +10823 personal +10825 common +10832 common +personal +10843 common +personal +10850 personal +10852 common +personal +10855 personal +common +10860 common +demonstrative +10863 personal +10866 personal +10870 personal +10873 common +personal +10876 personal +personal +10882 common +personal +10885 personal +10887 common +10889 relative +10894 personal +10898 common +personal +10903 personal +10909 common +personal +10913 common +personal +10920 proper +10922 common +demonstrative +10927 proper +10932 common +10934 proper +10937 proper +10940 personal +common +10945 personal +10949 personal +proper +10952 personal +10959 common +personal +10963 common +10974 common +10979 personal +10983 demonstrative +10985 common +10987 common +10990 common +10994 common +personal +11001 common +11008 common +11011 relative +11013 common +11015 common +11019 personal +11021 interrogative +proper +11025 common +common +11030 personal +11032 proper +11035 common +personal +11038 personal +11041 common +personal +11045 common +11051 personal +11054 relative +11057 common +personal +11061 common +11067 personal +11069 common +11074 common +11076 common +11079 common +11086 personal +11091 common +demonstrative +11094 relative +11098 common +relative +11101 common +common +11107 common +relative +11112 common +11115 common +relative +11118 personal +11121 common +11123 common +11130 personal +common +11134 common +11136 personal +11141 common +11143 personal +11146 proper +11150 common +11154 personal +11157 personal +11160 demonstrative +11163 common +11165 common +11169 common +personal +11177 personal +11179 common +interrogative +11185 common +11190 personal +interrogative +personal +11206 common +11210 common +11212 personal +interrogative +11216 proper +11229 common +11232 common +11237 personal +11239 personal +11241 personal +11243 common +demonstrative +11247 interrogative +11251 personal +11253 proper +11260 personal +11268 common +11270 common +11274 personal +11277 common +11280 common +11286 common +11290 proper +11293 common +personal +11297 personal +11304 common +11306 common +11310 personal +11313 common +11315 common +common +11322 common +11324 common +11328 common +11333 interrogative +11339 proper +11341 personal +11343 common +demonstrative +11349 common +11355 proper +11357 personal +11359 personal +11364 personal +11366 interrogative +11368 personal +11371 proper +11373 personal +11376 personal +11378 personal +11381 personal +11384 common +11388 common +11390 common +11392 common +common +personal +11397 personal +11400 common +11404 common +11406 proper +11409 relative +11411 common +11413 common +11415 common +11417 common +11419 common +11421 common +11423 common +11426 possessive +common +11431 common +11446 common +11448 common +common +common +relative +11456 common +11459 common +personal +11465 common +11467 common +11469 common +11471 personal +11474 common +personal +11480 common +11486 common +11489 demonstrative +11493 personal +11496 common +11499 relative +11503 personal +11514 common +11527 personal +interrogative +11533 common +11536 personal +11539 personal +11542 personal +11545 personal +11548 common +11554 common +11556 common +11558 common +personal +11562 common +11566 common +11580 common +11583 common +11596 common +11598 personal +11604 common +11606 demonstrative +11610 common +11614 personal +11616 personal +11620 common +11622 common +11625 common +11630 personal +11632 common +11635 personal +11637 common +11639 personal +11642 possessive +11647 demonstrative +11653 personal +11656 personal +relative +11662 possessive +11665 common +personal +11670 personal +11683 proper +11687 proper +11696 common +11698 personal +11702 proper +11705 common +11707 common +11710 common +11712 common +11715 personal +11717 common +11720 personal +11722 common +11733 common +11737 personal +11739 common +11741 common +proper +11745 common +personal +11750 indefinite +11752 personal +11756 personal +interrogative +11760 personal +11764 demonstrative +11767 common +personal +11776 personal +11779 common +personal +11784 proper +11788 interrogative +11793 common +relative +11796 personal +11799 personal +11802 personal +11805 common +personal +11813 personal +11819 possessive +demonstrative +11823 relative +11827 common +personal +11837 common +11840 proper +11842 personal +11847 common +11849 common +11851 personal +11856 personal +11861 personal +11864 relative +11867 personal +11871 personal +common +11875 relative +11878 personal +11882 personal +common +11886 common +11888 common +11897 common +personal +common +11904 personal +11906 proper +11908 personal +common +11918 common +11921 proper +11926 personal +common +common +proper +11932 common +11934 personal +11943 personal +common +common +proper +11950 proper +11952 personal +11956 interrogative +11958 personal +11960 personal +common +11965 common +personal +11970 proper +11973 common +personal +11980 personal +11985 proper +11989 proper +11992 common +11994 common +11996 proper +11999 common +12001 personal +12005 common +12008 personal +12012 common +12015 common +12017 personal +12020 personal +12023 indefinite +personal +12026 indefinite +12030 common +personal +common +12037 personal +12039 demonstrative +12047 common +12051 common +proper +12055 common +personal +12058 personal +12063 common +12066 common +common +common +12071 common +12077 personal +12079 proper +12082 common +12085 common +12089 personal +12091 common +12095 personal +12099 common +12101 personal +12103 common +12106 common +12110 common +12113 common +12118 common +12121 common +12124 personal +12132 common +proper +12138 common +common +12146 personal +12148 proper +12152 common +12154 interrogative +12156 demonstrative +12159 common +12161 demonstrative +12164 common +proper +12168 proper +12170 proper +12173 proper +12190 common +12192 common +12195 common +12199 common +12202 personal +12205 common +personal +common +common +12211 personal +personal +12214 common +common +12218 personal +12227 personal +12230 common +12233 common +12237 relative +12241 common +12251 common +proper +12256 personal +12258 interrogative +demonstrative +12263 proper +12265 personal +12271 common +12276 common +12279 personal +12283 common +12285 proper +12294 common +12298 common +12302 common +12305 personal +12310 personal +12313 common +12317 personal +12321 personal +common +12326 common +12331 common +12335 common +12342 common +12346 proper +12348 personal +12351 personal +12354 common +12362 common +12367 common +demonstrative +12375 common +12380 relative +12384 common +12389 personal +12394 personal +12397 common +12402 common +12405 interrogative +common +demonstrative +12410 interrogative +personal +12414 common +demonstrative +12419 proper +12421 personal +12423 personal +personal +common +12428 relative +12430 personal +personal +personal +12435 interrogative +common +demonstrative +12440 common +12442 proper +12446 common +12449 common +12454 personal +12459 common +12461 personal +12464 interrogative +12467 personal +12472 common +12475 common +12479 common +12482 proper +12486 proper +12491 personal +12493 personal +12495 personal +12497 personal +12499 interrogative +common +demonstrative +12504 interrogative +personal +12507 common +12509 common +12515 common +12521 common +12526 personal +common +12546 interrogative +12552 common +12554 common +12559 personal +12561 proper +12564 personal +12567 common +12570 common +12572 personal +12575 common +12577 common +12580 proper +12582 personal +12584 common +common +12589 personal +12592 common +12595 common +12597 personal +12599 personal +12606 personal +12608 common +12610 common +12612 common +relative +12615 common +12617 common +personal +12623 personal +common +12627 common +12630 personal +common +12638 common +12640 common +12643 common +personal +12647 common +12650 common +personal +12655 common +12657 common +personal +12660 relative +12663 relative +12666 relative +12671 common +12677 personal +12683 personal +12685 common +personal +12690 common +personal +12694 common +12697 common +12700 personal +demonstrative +12704 common +12707 personal +12711 common +personal +12715 personal +12719 common +12726 common +12728 common +interrogative +12732 common +demonstrative +12735 personal +12739 personal +12742 common +12745 common +relative +12748 personal +12750 common +12753 common +personal +12756 personal +12758 proper +12763 common +common +relative +12769 demonstrative +12772 common +common +12775 common +12777 demonstrative +12782 common +personal +12785 demonstrative +12787 personal +12791 personal +12793 common +12795 common +12798 common +12801 common +personal +12808 common +demonstrative +12814 relative +12817 personal +12820 common +12823 proper +12826 common +personal +12831 personal +12835 personal +12839 common +12842 common +personal +12848 proper +12852 common +personal +12857 common +12859 common +common +common +relative +12864 common +12866 common +personal +12871 common +personal +12878 common +12886 common +12893 common +personal +12897 common +personal +12909 common +12915 relative +12919 common +12921 relative +12924 common +personal +12931 common +personal +12938 common +12943 common +personal +12947 common +demonstrative +12951 common +personal +12957 common +personal +12961 common +12974 common +12976 common +12979 relative +12984 common +12987 common +demonstrative +12992 common +12995 relative +13004 common +13008 common +13015 common +13018 common +common +13022 personal +common +13029 common +common +13036 common +13039 common +13041 personal +common +13044 common +13046 personal +13049 common +13055 common +13058 common +13060 common +13071 proper +common +13075 personal +13078 common +13081 personal +13083 common +personal +13087 proper +13089 common +13096 common +13098 common +13100 common +13105 personal +13112 common +common +13116 personal +interrogative +personal +13122 common +proper +13128 proper +13131 common +personal +13134 interrogative +personal +13137 common +13139 personal +13141 common +13143 common +13147 personal +common +13151 personal +interrogative +13154 common +demonstrative +13158 common +13160 proper +13163 personal +13167 proper +proper +13172 common +13174 common +13180 personal +13183 demonstrative +13185 common +13187 personal +proper +13192 common +13195 personal +13197 common +proper +13201 indefinite +13205 common +13208 common +personal +13211 common +personal +13215 common +13217 common +personal +13222 personal +13224 common +13233 common +13236 common +personal +13239 common +personal +13256 common +13260 common +interrogative +13264 common +13269 personal +13273 proper +13275 personal +13280 common +13283 common +13285 common +13289 common +13296 common +13299 common +13304 common +13311 personal +13314 common +13316 personal +13319 common +proper +13323 common +proper +13327 common +proper +13332 common +13339 common +13343 common +personal +13347 proper +13352 proper +13361 personal +13364 personal +common +interrogative +common +13371 common +13375 personal +13377 common +13379 common +personal +13384 common +personal +13390 common +personal +13396 common +personal +demonstrative +13404 common +13407 personal +13411 personal +13413 personal +13415 demonstrative +13418 common +13421 common +13425 common +13429 proper +13431 personal +13433 proper +13435 interrogative +personal +13440 proper +interrogative +common +13445 personal +13447 proper +13449 personal +13452 proper +13454 common +13456 personal +common +13460 common +13462 common +personal +13467 personal +13473 personal +13476 common +personal +13480 proper +13482 personal +common +13485 common +personal +13492 personal +common +13496 indefinite +13498 demonstrative +13500 common +13502 personal +13506 proper +13509 common +13512 common +personal +13517 proper +common +13521 common +13524 proper +13528 relative +13530 personal +13537 common +personal +13548 common +13554 common +13556 common +13558 personal +13560 common +personal +13565 personal +13569 common +personal +13576 common +13580 common +personal +13585 common +13589 common +13592 common +13595 common +13598 common +13601 common +13604 common +13609 common +common +13612 personal +13615 common +13619 personal +13621 common +13624 personal +common +13628 common +personal +13634 common +13638 personal +13640 common +13645 common +13647 common +personal +13652 proper +13656 personal +13658 personal +common +13661 relative +13663 personal +13666 relative +13668 personal +13672 personal +common +13675 proper +common +13680 common +13682 common +13685 common +13687 personal +13696 personal +common +13699 proper +common +13704 common +13710 common +13715 personal +common +common +13719 personal +13721 personal +common +13727 relative +13731 common +13736 relative +13740 common +13742 common +13748 interrogative +13752 common +13755 common +13759 common +13762 relative +13766 common +13771 relative +13775 common +13778 personal +13782 interrogative +13785 common +13788 common +13792 common +13798 common +13801 personal +13807 personal +13813 common +13816 personal +13821 personal +13827 common +13831 common +13833 common +13839 personal +13841 personal +common +13844 proper +common +13849 common +13852 common +13855 common +13861 common +13863 common +13866 common +13869 common +13872 demonstrative +13877 common +13882 common +13885 common +13888 personal +common +13891 proper +common +13898 common +13901 common +13906 common +13908 common +proper +13916 common +13922 personal +13925 personal +common +13928 proper +common +13932 common +13935 relative +13942 common +13946 common +13949 personal +13954 common +13960 common +13962 common +13964 personal +common +13967 proper +common +13972 common +13974 common +13978 common +13987 common +13989 common +personal +13994 personal +common +13998 common +14000 common +14003 personal +14006 common +14010 common +14012 personal +14015 common +14017 common +personal +common +common +common +14026 common +14028 common +14031 demonstrative +personal +14035 personal +common +14040 common +14042 personal +14048 personal +14052 common +personal +14057 common +14059 common +14063 personal +14065 common +14070 common +14073 common +proper +14079 common +proper +common +proper +relative +14087 common +14090 common +14093 personal +14095 demonstrative +14099 common +demonstrative +proper +proper +14106 common +14112 personal +14117 common +personal +relative +common +common +14124 common +personal +14128 common +14134 personal +14136 common +personal +14140 personal +14143 personal +14154 common +common +14158 proper +14167 common +personal +14170 personal +14172 common +14179 personal +14182 demonstrative +14186 personal +14192 common +common +relative +14199 personal +14202 common +14204 common +14206 personal +14208 common +14213 personal +14215 demonstrative +14218 interrogative +14220 common +14222 possessive +common +14225 common +14227 common +14231 proper +14233 personal +14236 indefinite +personal +14244 common +personal +14247 personal +14250 proper +14257 common +14259 common +common +14271 common +14274 common +14276 common +14278 common +14280 common +14283 common +14285 common +14287 common +14290 demonstrative +common +common +14295 personal +14297 common +14300 personal +14307 common +14310 common +personal +14317 personal +14321 personal +14324 common +14334 common +14337 common +14344 common +demonstrative +14349 demonstrative +14351 common +14353 common +14357 common +14359 common +14362 common +14367 common +14372 common +14374 common +14378 proper +14380 common +14383 common +14392 proper +14396 common +14400 common +14407 common +personal +14413 common +14419 common +personal +14425 common +14431 demonstrative +14433 common +14440 common +personal +common +14444 common +14448 common +14450 relative +14454 common +common +14468 common +demonstrative +14474 common +14481 common +demonstrative +14485 indefinite +personal +14491 proper +14498 common +14500 common +14503 common +14506 common +14516 personal +14520 personal +14531 common +14537 common +14540 common +14544 common +14548 common +14550 common +14552 common +14557 common +14561 common +14566 common +14568 common +demonstrative +14571 common +14575 common +14579 common +personal +14583 common +14587 common +14590 common +14592 common +14598 common +14600 common +14602 common +14604 common +14610 common +14612 common +14616 common +14618 common +14622 common +14624 common +14626 common +14628 common +14633 common +personal +14636 common +14642 personal +14646 common +14648 common +common +14651 common +personal +14656 common +14659 common +14663 common +personal +14669 common +14675 common +14678 personal +14682 demonstrative +14688 common +14691 personal +14697 common +demonstrative +14702 demonstrative +14705 common +14708 common +14712 common +personal +14720 common +14722 common +demonstrative +14728 common +14730 common +14733 common +14737 common +14742 common +14744 proper +14748 common +14750 common +14752 common +14757 common +demonstrative +14762 common +14771 relative +common +14774 proper +14777 common +14784 common +14792 common +14794 common +14796 common +14802 common +14812 common +14823 interrogative +common +14826 common +personal +14830 demonstrative +14836 common +interrogative +common +14840 common +14850 common +personal +14853 demonstrative +14855 personal +14859 relative +14862 common +14864 common +14866 common +14869 interrogative +14875 common +relative +14879 common +14882 common +personal +14886 personal +14888 common +14890 common +14893 common +demonstrative +relative +14900 common +personal +14905 personal +14911 personal +14913 personal +14919 common +demonstrative +14923 common +personal +14926 personal +14928 common +14933 common +personal +14944 common +14946 common +demonstrative +14949 common +relative +14955 common +relative +14961 personal +14964 common +personal +14968 common +14973 common +14976 common +14978 common +14982 common +14984 common +14986 common +relative +14990 common +personal +14994 common +14996 common +15000 personal +15011 common +15015 personal +common +15021 common +15024 common +15027 common +personal +15032 common +15039 common +common +15044 common +15047 common +15052 common +demonstrative +15057 common +personal +15066 personal +15069 common +personal +15073 common +personal +15086 personal +15088 personal +15096 personal +15099 personal +15103 common +15109 personal +15112 common +15116 common +15123 common +15125 common +common +15128 personal +15135 personal +15138 personal +15145 common +15148 common +15151 common +15156 common +15159 personal +15162 personal +15165 relative +15168 common +15170 relative +15173 relative +15179 common +15187 common +15191 personal +15210 common +15214 common +15216 common +personal +15221 common +15224 common +15226 common +demonstrative +15230 common +15232 personal +15238 common +15243 common +15245 common +15247 common +personal +15253 common +15256 personal +15258 common +personal +15261 common +15271 personal +15276 common +15278 common +personal +15285 common +15287 common +15289 common +personal +15295 common +15298 personal +15300 common +personal +15303 common +15313 personal +15318 common +15320 common +personal +15328 common +15331 common +15333 personal +15337 common +15352 common +personal +15356 common +15360 possessive +15364 common +personal +15367 personal +common +15385 personal +15388 common +personal +15391 common +15395 personal +15398 possessive +15400 common +15404 personal +15406 common +15413 common +15426 relative +15430 personal +15434 common +15438 common +15444 common +15447 common +15449 common +15454 common +15456 common +15459 common +personal +15464 common +15466 personal +15470 common +common +personal +15476 personal +15479 common +15482 personal +15484 personal +15487 common +15490 common +15493 common +15498 common +15501 personal +15504 common +15510 common +15514 personal +15519 common +personal +15524 personal +15526 common +common +common +15533 personal +15538 personal +15543 personal +15547 personal +15551 personal +15553 common +15558 personal +15561 personal +15565 common +15568 personal +15579 personal +15590 personal +15594 common +15598 personal +15602 common +15604 personal +15607 personal +15609 relative +15612 demonstrative +15614 common +personal +15618 personal +15629 personal +15632 common +15641 common +personal +15648 personal +15654 personal +15660 personal +15665 personal +15669 common +15673 personal +15677 personal +15679 common +15682 personal +15694 common +15698 personal +15701 personal +15705 personal +15707 relative +15711 demonstrative +15715 personal +15719 demonstrative +15721 common +15727 common +15734 proper +15737 common +demonstrative +15741 common +personal +15747 common +15749 common +15753 common +15755 common +15763 common +15768 common +15771 common +15773 common +15776 proper +15781 proper +common +15791 common +15794 common +15798 common +15801 proper +15804 proper +15806 common +proper +15811 personal +common +15814 common +common +15821 common +personal +15827 common +15831 interrogative +15833 common +demonstrative +15837 demonstrative +15846 proper +15848 personal +interrogative +common +15853 common +15855 common +15859 personal +15866 personal +15868 personal +15873 demonstrative +15876 common +demonstrative +15880 common +personal +15885 personal +15889 personal +15894 common +demonstrative +15899 common +15902 relative +15904 demonstrative +15906 common +personal +15914 proper +proper +15919 common +15922 interrogative +personal +15925 personal +personal +15928 personal +15932 personal +15934 common +15939 common +15941 personal +15950 common +15952 proper +15957 personal +15960 common +15967 common +15970 common +15973 personal +15975 common +15978 common +personal +15983 personal +15986 common +15989 common +personal +15994 common +15997 personal +15999 proper +16003 common +16011 common +16014 personal +16018 personal +16022 personal +16024 personal +16030 personal +16034 personal +16036 common +16044 personal +16046 common +16049 common +demonstrative +personal +16055 common +16057 common +16062 personal +16066 common +demonstrative +16069 relative +16071 common +16073 common +16077 personal +16082 common +demonstrative +16086 proper +16089 personal +16092 personal +16094 common +16096 personal +personal +16101 personal +16103 proper +16105 common +16112 common +16116 demonstrative +16119 common +personal +16123 common +16127 personal +16131 personal +16134 demonstrative +16137 common +personal +16140 common +16146 common +common +16150 personal +16157 demonstrative +16159 common +16161 common +16164 common +demonstrative +16167 personal +16170 personal +16174 common +16176 common +personal +16183 common +16185 common +16188 personal +16190 proper +16192 personal +16195 personal +16198 common +demonstrative +16204 common +16208 common +16210 common +16215 personal +16217 personal +16220 proper +16224 proper +16226 personal +16231 personal +personal +16236 personal +16238 proper +16241 personal +16244 demonstrative +16246 common +16248 common +16252 personal +16254 personal +16256 proper +16259 personal +16261 personal +16265 personal +16271 common +16276 personal +16278 proper +16280 common +16282 proper +16286 common +16290 relative +16297 proper +16301 common +proper +16309 personal +16313 common +personal +16316 common +16322 personal +16328 common +personal +16333 common +personal +16340 personal +16342 common +demonstrative +16347 personal +16351 personal +16356 common +16359 personal +16364 proper +16369 common +16372 personal +16380 common +16383 common +16387 common +16395 common +personal +16400 demonstrative +16404 personal +16408 common +personal +16414 personal +16419 personal +16421 common +16424 personal +16432 common +16439 common +16442 personal +16450 common +16453 common +16455 common +16458 common +16466 personal +16469 personal +16472 proper +16479 personal +common +16483 common +16485 common +16488 common +16492 common +16496 personal +16498 personal +common +16502 relative +16504 personal +16507 personal +16512 proper +16515 common +16518 personal +16521 proper +16523 personal +common +16526 relative +16532 common +16535 proper +16538 personal +16544 proper +16547 common +16550 common +personal +16555 common +16557 common +16559 personal +16561 common +16564 personal +16566 proper +16569 common +personal +16573 common +personal +16579 common +16581 common +16590 common +personal +16594 personal +16598 common +common +16604 common +16610 demonstrative +16612 common +16615 proper +16617 common +16620 common +16623 common +16625 common +16627 personal +16629 common +16638 personal +16640 demonstrative +16646 common +16648 common +16651 common +16654 personal +16660 proper +16663 proper +16665 common +16668 common +16675 proper +16677 personal +16682 common +16684 common +16691 common +16694 common +16697 common +16700 common +16703 common +16706 proper +16708 personal +16714 common +16721 demonstrative +16726 common +16728 common +16732 common +16737 common +16739 personal +16742 interrogative +demonstrative +personal +16748 proper +16752 common +16754 personal +16756 personal +16759 common +16763 personal +16766 personal +16769 proper +16771 common +16773 common +16775 personal +16777 proper +personal +16782 personal +16787 common +16789 common +16794 common +16799 common +16801 common +16804 common +16807 common +personal +16811 interrogative +16813 common +common +16820 common +interrogative +personal +16829 common +16835 common +personal +16839 personal +16845 personal +proper +interrogative +16851 personal +16854 proper +16859 common +16862 personal +16864 common +16867 personal +16870 proper +16881 interrogative +16887 common +16889 personal +16895 demonstrative +16898 proper +16900 proper +16905 common +16910 common +16919 proper +16922 personal +16924 personal +16929 common +personal +16932 personal +16943 common +16946 common +16951 proper +16953 common +proper +16958 common +16962 personal +16969 common +16971 common +16975 common +16980 common +16983 proper +16986 personal +16989 personal +16993 proper +16995 common +16997 proper +17000 personal +17008 common +17010 common +17016 common +17021 interrogative +17023 personal +personal +17029 common +17032 common +17039 common +17042 common +17047 personal +17050 common +17052 common +common +17056 common +17060 personal +17062 common +17064 common +17066 common +17072 common +demonstrative +common +common +17084 proper +17086 common +17092 common +17094 common +17097 relative +17100 common +proper +17104 personal +17107 common +17109 common +17112 personal +common +17116 proper +17120 common +17123 personal +17125 common +17127 personal +17130 common +17135 proper +17137 personal +17143 personal +17146 common +17153 personal +17155 proper +17158 interrogative +personal +17164 personal +17168 common +17172 common +17176 common +17179 common +17182 common +17184 common +relative +17190 common +17193 proper +17196 personal +17198 personal +17200 proper +17202 interrogative +17204 personal +proper +17207 proper +17210 proper +17215 common +17217 personal +17220 personal +17223 common +17226 personal +17228 common +personal +17232 personal +17236 demonstrative +17242 common +17244 personal +17247 common +17253 common +17257 proper +17260 proper +17265 common +17267 personal +17269 interrogative +17274 personal +17279 proper +17281 personal +17283 proper +17285 interrogative +17287 proper +17290 proper +17298 interrogative +17309 proper +17316 common +17319 common +17322 common +17325 common +17331 common +demonstrative +personal +17339 common +17342 common +personal +17345 personal +17349 common +personal +17353 personal +17355 proper +17358 proper +17365 common +17367 common +17370 proper +17373 common +17376 personal +17379 common +17382 personal +common +17386 personal +17389 common +17391 common +17395 common +personal +17398 common +17402 personal +17406 personal +17408 personal +17411 common +17417 personal +17420 common +17425 common +personal +17430 personal +17432 personal +17434 common +17437 personal +17439 common +personal +17443 personal +17450 common +proper +common +proper +demonstrative +17459 common +personal +17464 common +17466 proper +relative +17470 common +common +17473 personal +17475 common +17477 common +17486 personal +17489 common +personal +17492 common +17496 personal +17502 common +personal +17505 common +personal +17508 demonstrative +17510 proper +17512 common +17518 personal +17520 common +17532 personal +17535 common +personal +17542 common +17546 common +17549 personal +17552 common +17554 common +17559 common +17562 common +17566 common +17572 personal +17576 common +proper +17583 common +17587 personal +17591 common +17596 personal +17600 common +common +17608 common +17612 personal +17614 personal +17618 common +common +17624 common +17626 common +17632 common +17635 proper +common +17639 proper +proper +17643 demonstrative +17645 common +personal +common +personal +17650 interrogative +personal +17654 indefinite +17661 proper +17663 demonstrative +17668 personal +17672 common +17675 common +17678 common +17680 personal +17689 proper +17691 personal +17694 proper +17697 common +17701 common +17705 common +17707 common +17717 common +17721 common +17725 common +17729 common +17738 common +17741 common +personal +17747 common +17753 common +17757 personal +17760 proper +17763 common +17771 common +common +17774 demonstrative +17778 common +17783 relative +17786 proper +17789 proper +17791 personal +17793 relative +17795 proper +17797 proper +17799 proper +17802 proper +17804 proper +common +17808 common +17810 common +proper +17816 common +17819 proper +17821 proper +relative +17824 personal +17827 proper +demonstrative +17831 proper +17834 common +17836 proper +17839 proper +17845 common +17847 proper +17849 personal +17851 common +17855 personal +17859 personal +common +relative +17865 common +17868 common +17871 common +17873 common +17877 proper +17879 proper +17883 proper +17888 common +17892 relative +17896 common +17899 common +17902 proper +17904 proper +17906 common +17909 demonstrative +17917 common +17923 common +17927 common +17932 common +17934 personal +17938 common +17947 common +17952 personal +17954 proper +17956 common +17966 common +17969 common +17972 common +17975 common +17980 common +17982 proper +17984 proper +17988 proper +17991 common +17994 common +17998 common +common +18002 common +18007 common +18011 personal +18015 common +personal +18018 common +18021 common +personal +18025 common +18029 common +personal +18041 common +18044 common +18047 personal +18051 proper +18065 common +18073 common +personal +18083 personal +18086 proper +18088 personal +18092 personal +18098 common +18100 common +18102 common +18107 common +personal +18111 proper +18113 personal +18120 personal +18122 common +18125 personal +18128 personal +18130 proper +18136 common +personal +18142 proper +18144 personal +18148 personal +18150 indefinite +18152 common +18156 common +18159 common +18169 common +18171 common +18175 common +18180 common +personal +common +18185 personal +personal +18191 demonstrative +18194 common +personal +18198 personal +18204 common +18211 common +demonstrative +18218 common +18222 common +18226 proper +18229 common +18232 personal +18234 proper +18237 personal +18245 proper +18247 personal +18250 personal +18252 common +18254 common +18258 common +18264 common +18266 personal +18269 common +18271 common +18274 common +18278 common +18280 personal +18283 relative +18285 personal +18288 personal +18290 personal +18294 common +18297 common +18299 common +common +18302 common +proper +proper +common +common +18311 proper +18313 common +18317 common +personal +18320 common +personal +relative +18325 common +personal +common +18334 common +common +18339 common +personal +18342 proper +18349 common +common +18352 common +common +18357 personal +18361 common +18364 proper +18369 personal +18372 proper +common +18376 common +personal +18381 proper +18383 common +common +18386 common +18390 common +personal +18394 common +18396 common +18404 personal +18406 personal +relative +18414 common +18416 common +personal +personal +18420 personal +common +18423 personal +18425 personal +common +18431 demonstrative +18433 common +18435 proper +18437 proper +18439 proper +18444 proper +18446 proper +18452 common +18456 common +18459 common +18461 common +18464 personal +18466 common +18470 common +personal +18474 common +personal +18479 personal +18484 common +personal +18496 common +18500 proper +18505 common +18508 common +18510 personal +18516 proper +18519 proper +18522 proper +18525 common +18527 common +18533 common +18537 common +18539 common +18545 common +18550 common +18552 proper +18554 proper +18556 proper +18558 common +proper +18563 common +18566 common +18569 personal +18571 proper +18574 personal +18577 personal +18579 common +common +18585 common +18587 personal +18592 proper +18595 proper +18597 proper +18599 common +personal +18602 personal +18605 common +18608 common +18612 personal +18616 common +personal +proper +18621 common +18627 personal +18631 proper +18635 common +18639 common +18645 common +personal +18650 personal +18652 common +18658 common +18664 common +personal +common +18668 common +18673 interrogative +personal +18676 personal +proper +18681 personal +18683 personal +interrogative +18689 common +18692 personal +18694 proper +18699 personal +18702 common +18706 personal +18709 common +18713 personal +18719 personal +18721 interrogative +18723 demonstrative +common +18727 common +18730 common +18736 personal +18740 common +personal +18749 proper +18754 common +18759 common +proper +18762 proper +18764 proper +18766 proper +18769 common +proper +18776 personal +18778 personal +18782 personal +18785 common +18788 personal +18790 common +18793 personal +18800 common +18803 personal +18816 common +18819 common +18826 common +18828 common +18836 common +18839 personal +18850 common +18855 personal +proper +18860 personal +18863 personal +18866 personal +18870 personal +18873 personal +18879 common +18886 demonstrative +18893 common +personal +18898 proper +18901 common +18906 personal +18909 personal +18913 personal +18918 personal +18924 common +personal +18929 personal +18936 personal +18938 common +18943 personal +18946 personal +18949 personal +18956 personal +18959 common +18964 common +personal +relative +18968 proper +18970 common +personal +18981 common +18984 personal +18988 common +18994 common +18999 personal +19005 proper +19007 common +19011 common +19023 common +19026 personal +19028 common +19033 personal +19042 personal +19045 common +19048 common +19055 common +19062 proper +19065 common +personal +19070 common +19072 personal +19074 common +19077 indefinite +19079 common +19086 common +personal +interrogative +demonstrative +19093 interrogative +19096 common +19101 common +19105 proper +19108 common +personal +19114 personal +19116 personal +interrogative +demonstrative +19122 common +personal +interrogative +19131 personal +19133 common +19140 common +personal +19148 common +19151 common +19153 common +19155 common +19158 common +19162 personal +19167 common +personal +19173 common +personal +19181 common +19191 common +19202 common +19206 common +19209 personal +19212 personal +19216 proper +19219 proper +19223 common +19226 personal +19228 personal +19232 personal +19236 personal +19239 common +personal +19243 common +19248 proper +19251 common +personal +19258 personal +19261 common +19263 proper +19271 common +19274 common +personal +19279 common +19286 proper +19288 personal +19290 common +common +19309 common +proper +19313 proper +19318 personal +19320 interrogative +19322 common +proper +19326 common +19328 proper +19332 possessive +common +19338 personal +19340 proper +19344 common +19346 common +19348 relative +19350 common +19352 personal +19355 relative +common +19359 common +19361 personal +19367 common +19371 personal +19373 common +19378 demonstrative +19380 common +19382 common +common +19387 common +19394 common +19398 personal +19403 common +19408 common +19411 common +19418 common +19420 common +19423 common +19427 common +19429 common +19432 common +19436 personal +19439 common +19446 common +personal +19449 common +19453 common +19456 proper +19458 personal +19460 interrogative +19463 common +relative +19469 personal +19472 interrogative +19474 proper +19476 common +19480 personal +19484 personal +19489 common +19491 common +19493 proper +common +19497 common +19499 common +19501 relative +19508 common +19514 personal +19518 personal +19520 common +19523 common +19528 common +19531 common +19535 common +19537 common +common +19541 common +19546 common +19550 common +19554 common +19557 personal +19560 common +19562 personal +19565 personal +19569 common +19573 common +19581 personal +19584 common +19589 common +19598 personal +19600 common +19604 common +19606 common +personal +19610 common +19613 common +19619 common +personal +19624 proper +19628 proper +common +19632 personal +19634 personal +19638 proper +19641 common +personal +19646 common +19649 common +19652 proper +19657 proper +19660 proper +19664 proper +19668 proper +19671 proper +19673 proper +common +19677 relative +19681 personal +19685 common +personal +19688 common +19690 personal +19693 common +19697 personal +19703 personal +19705 personal +19707 relative +19709 common +19712 common +19716 personal +19719 personal +19724 personal +19727 common +19729 common +19733 personal +19736 personal +19743 common +19746 relative +19748 personal +19752 personal +19759 personal +19763 personal +19767 common +19770 common +19777 common +19779 proper +proper +19782 proper +19785 proper +19787 proper +19789 common +19791 proper +19794 personal +common +proper +relative +19799 common +common +19802 proper +19804 proper +19806 proper +19808 proper +19810 proper +19812 proper +19815 proper +19817 proper +19819 proper +19821 proper +19823 proper +proper +relative +19828 personal +19832 common +19837 common +19841 personal +19843 common +19849 personal +19852 personal +19859 common +19862 proper +19866 proper +19872 common +19874 common +19877 common +19880 personal +19882 common +19884 personal +19887 proper +proper +19892 common +19894 personal +19900 common +demonstrative +19904 common +19906 personal +19911 common +demonstrative +19917 proper +19920 personal +19927 common +19935 common +19940 common +personal +19952 common +personal +19957 personal +19961 common +19963 common +19966 common +19969 common +19971 relative +19975 relative +19979 common +19984 common +19987 common +19992 common +19995 common +20001 common +personal +20005 common +personal +20012 personal +20014 personal +20018 personal +common +20022 personal +20025 common +personal +20029 common +personal +20033 common +personal +20037 personal +20040 personal +20042 interrogative +20045 common +personal +20049 common +20054 personal +20060 common +personal +20064 common +personal +20067 relative +20070 common +20072 common +demonstrative +common +personal +20077 common +20079 common +20087 common +20091 personal +common +20095 personal +20097 common +20102 common +20106 common +20109 common +20112 common +20116 personal +20118 common +20122 personal +20125 common +personal +20139 relative +20143 common +20150 personal +20160 common +20169 common +common +20175 common +20182 common +20189 common +20193 common +20196 personal +20198 common +20206 common +20211 common +20227 relative +20229 common +20238 personal +20241 personal +20246 common +20249 personal +personal +20253 common +20255 common +20257 common +20259 demonstrative +20263 common +20284 personal +20287 personal +20291 common +demonstrative +20297 common +20302 common +20305 demonstrative +20310 common +20314 common +20321 proper +20325 common +20329 personal +20338 demonstrative +relative +20343 common +20346 common +20348 personal +20352 common +20354 personal +20360 common +20362 common +20365 common +20374 common +20376 demonstrative +20380 common +20384 common +20386 common +20389 common +20391 common +20397 common +20401 common +20410 common +20414 demonstrative +relative +20418 common +20433 personal +20438 common +20442 common +20447 common +20452 common +20457 indefinite +20472 indefinite +20474 common +20479 personal +20481 interrogative +20484 relative +common +20488 personal +20491 personal +20493 relative +20496 personal +20498 relative +20502 relative +20506 personal +20512 common +20514 common +20516 common +20519 common +20522 common +20527 common +20529 common +20532 common +20539 personal +20542 common +20545 common +20547 common +20550 common +20553 common +20558 common +20562 common +20566 common +20572 common +20574 common +20577 interrogative +common +personal +20582 common +common +relative +20589 common +20594 common +20598 common +20608 common +20611 common +20617 common +personal +20623 common +20625 demonstrative +common +20629 personal +20631 common +20637 common +20640 personal +20646 common +20651 personal +20653 demonstrative +20655 common +20665 common +20667 personal +20672 common +20675 common +20678 personal +20681 common +20683 common +20686 common +20690 common +20695 common +20697 personal +20701 common +20704 common +20708 personal +20711 personal +common +20715 personal +20722 common +20726 common +20732 common +20735 common +20739 personal +interrogative +20747 common +20750 common +20755 personal +20757 interrogative +demonstrative +20763 common +20766 common +20768 personal +20775 common +20778 common +20783 personal +20786 common +20789 personal +20792 common +common +20795 common +20797 relative +20799 common +20803 common +20806 common +20810 personal +20814 personal +20816 common +20818 common +20823 personal +20825 common +20828 common +20833 personal +20838 common +20840 common +20843 common +20847 common +20852 personal +common +20857 proper +20863 personal +20866 common +20869 interrogative +personal +20872 personal +proper +common +20876 common +20880 personal +20882 common +20884 personal +20888 personal +20890 common +20896 common +20899 personal +interrogative +common +personal +20905 personal +common +common +personal +20914 personal +20918 personal +20922 common +20928 common +common +common +20935 personal +20938 personal +20941 common +20944 personal +20948 personal +20952 common +20958 common +20962 common +20965 common +20968 common +20975 common +20979 personal +20985 common +20989 common +20993 interrogative +21001 proper +21009 common +21018 personal +21028 common +21032 personal +21036 common +personal +21040 personal +21043 common +21045 personal +21050 personal +21055 personal +21058 personal +21062 common +personal +21066 possessive +21069 personal +relative +21072 common +personal +21077 personal +21085 proper +relative +21088 personal +21090 proper +21097 proper +21100 common +21106 common +21109 personal +21114 common +21119 common +common +proper +21124 personal +21128 common +personal +21132 personal +21137 common +personal +21145 common +personal +21154 personal +21157 personal +common +21162 personal +21164 common +21167 common +common +21170 common +21176 common +21181 personal +21196 proper +21200 common +21204 common +personal +21213 common +personal +21220 common +21222 common +personal +21227 common +21232 common +21236 proper +21239 personal +21242 personal +common +21248 common +21250 interrogative +21252 personal +21254 common +21257 personal +21259 common +personal +21263 common +21265 personal +21268 interrogative +personal +21275 demonstrative +21279 common +21284 relative +21286 personal +21290 personal +21293 personal +21296 common +21300 personal +common +21303 common +personal +21306 personal +21309 common +21315 common +personal +21318 personal +21323 common +21327 common +personal +21330 interrogative +21334 common +21337 proper +21340 common +21344 common +21354 personal +21359 proper +21361 proper +21363 proper +21365 common +proper +21371 common +21373 common +21376 common +21385 personal +interrogative +21391 common +21398 personal +21400 personal +21405 common +21407 common +21410 common +21414 personal +21420 common +21424 common +21426 common +21428 personal +common +21431 relative +21435 common +personal +21443 common +21448 common +21453 common +21457 personal +21462 demonstrative +21466 personal +21475 common +personal +21479 personal +21481 common +personal +21485 common +21490 common +21498 demonstrative +demonstrative +21501 interrogative +21503 common +21506 demonstrative +21509 common +demonstrative +21513 common +personal +21517 demonstrative +21520 common +21522 common +21524 proper +21526 common +proper +21529 proper +21531 proper +21533 proper +21538 common +personal +21542 personal +21546 personal +21549 personal +21551 proper +21555 common +21561 common +personal +21567 personal +21571 common +personal +21579 common +21586 common +21592 common +personal +21597 common +21606 personal +21612 personal +common +21615 common +21620 personal +21625 common +21628 common +21631 common +21633 common +21637 common +common +21641 common +21646 common +21649 personal +21654 common +21663 relative +common +21667 personal +21670 personal +21675 common +21679 common +personal +21682 common +personal +21690 common +21695 common +21703 common +proper +21709 common +personal +21714 proper +21722 demonstrative +21725 common +21727 personal +21732 proper +21738 common +21742 common +21746 proper +21748 relative +personal +21751 proper +demonstrative +21755 personal +21757 proper +21761 proper +21764 personal +21766 common +21768 proper +21770 common +proper +21773 common +personal +21776 personal +21781 proper +21783 proper +21787 personal +21790 common +21792 common +personal +21796 proper +21798 personal +21801 personal +21808 proper +21811 proper +21813 personal +common +21820 personal +21823 personal +21828 personal +21832 common +21835 proper +21837 common +personal +common +21842 common +personal +21846 common +21851 proper +21855 common +personal +21858 proper +21863 proper +21869 common +21872 common +21874 personal +21876 relative +21880 personal +21883 personal +indefinite +21886 personal +21889 personal +21893 common +personal +21899 common +personal +interrogative +21907 common +proper +21915 common +21918 common +21925 personal +21927 common +21929 common +proper +21932 common +21937 common +21940 common +21947 personal +21951 common +21953 common +21957 common +personal +21962 personal +21965 common +21969 common +personal +21972 common +21975 personal +21977 common +21980 common +21982 personal +21984 common +personal +21989 common +personal +21995 common +personal +21999 personal +22001 common +22005 common +22008 proper +22011 personal +22013 relative +22016 relative +22020 personal +22022 personal +personal +22028 common +22048 common +22051 common +22056 personal +22066 common +22071 personal +22076 common +22080 personal +22084 common +22087 common +22091 personal +22095 common +22099 personal +22101 common +personal +22108 common +22111 common +22114 personal +22120 common +22122 common +22124 personal +interrogative +22131 personal +22133 personal +personal +22138 personal +22141 common +22143 common +22146 personal +22151 personal +interrogative +common +22163 common +22166 personal +22169 common +common +22174 common +22177 common +common +22188 common +22192 common +22196 common +22201 common +22205 common +22208 personal +22212 common +22222 common +22224 common +common +22229 common +22235 common +22237 common +22242 common +personal +22247 common +22254 proper +22256 personal +22259 common +22262 personal +22266 common +22273 common +22277 common +22279 personal +22283 common +22286 personal +22294 common +22296 personal +22299 common +22301 common +22304 personal +22308 common +22312 personal +22316 personal +22319 common +22323 common +22329 personal +22338 personal +22341 personal +22343 personal +22350 personal +22353 common +22357 common +22363 personal +22370 common +22374 personal +22376 common +22381 common +22384 proper +22389 personal +22392 common +22395 personal +22399 common +demonstrative +22405 common +22419 common +22422 common +22425 common +22428 common +22434 personal +22438 common +22440 common +personal +22445 relative +22447 personal +22452 personal +22454 proper +22456 indefinite +22458 common +22461 proper +22464 indefinite +22466 common +personal +22470 common +demonstrative +22476 common +22479 proper +22486 common +22489 common +22494 common +22499 common +22509 relative +22512 common +common +22515 common +22517 common +22520 personal +22522 proper +22525 common +22527 interrogative +22531 common +personal +22535 common +22540 common +22543 common +22547 personal +22550 proper +22552 personal +22554 common +22558 demonstrative +22560 common +22562 common +personal +22567 common +personal +22572 personal +22576 personal +22578 common +common +common +22583 common +22585 common +22588 common +22590 common +22593 personal +22597 common +22599 common +22602 common +personal +22606 proper +22610 common +personal +22614 common +personal +22619 common +22621 common +common +22625 personal +22629 common +22631 common +22634 common +proper +relative +22638 common +22640 relative +22642 personal +22646 personal +22650 common +22653 common +22656 common +22658 common +22660 common +personal +relative +22666 demonstrative +22673 common +22675 personal +22677 personal +22685 common +22688 personal +relative +22692 personal +22697 common +22703 common +22708 common +22711 common +22713 personal +22715 common +personal +22718 common +22721 personal +22724 personal +22736 common +22739 personal +22745 personal +22747 common +22751 common +22755 common +22760 common +22767 common +22769 demonstrative +22772 common +22777 common +22779 common +22781 common +22785 common +common +common +common +common +common +common +common +common +22795 common +common +common +22799 demonstrative +22807 common +22814 common +proper +22819 common +22831 personal +common +relative +22835 common +personal +22838 common +22844 common +personal +22848 common +22850 proper +proper +22853 common +22856 personal +22859 common +22863 common +personal +22867 personal +22872 common +22879 common +22881 common +22884 common +22891 personal +22893 common +22896 common +22899 common +22903 common +22905 common +22908 personal +22910 demonstrative +22912 common +22917 common +personal +22920 common +22925 common +personal +22929 common +22933 common +22936 common +22943 common +proper +22947 proper +22950 common +22952 proper +22956 common +proper +22960 personal +22966 personal +22969 personal +22971 common +22974 personal +22977 common +22982 common +personal +22986 common +personal +22992 common +personal +22998 common +23002 personal +23004 relative +23009 personal +23011 common +23016 common +23018 common +personal +23025 personal +23030 relative +personal +23033 personal +23053 demonstrative +23055 common +23058 common +23063 interrogative +23067 common +23069 personal +23073 common +23076 common +23079 personal +23083 interrogative +23088 personal +23091 common +personal +23096 common +23098 indefinite +personal +23105 personal +23107 common +personal +23112 indefinite +demonstrative +23116 common +23118 common +23121 personal +interrogative +common +23132 common +23136 common +23141 common +23147 common +personal +23154 common +23157 common +23161 personal +23164 demonstrative +23172 common +common +23175 common +23182 personal +23188 common +23191 common +personal +23196 common +proper +23201 proper +23205 personal +23208 personal +common +23212 common +23214 personal +23218 common +personal +23221 interrogative +23223 common +demonstrative +23226 common +23229 personal +23233 common +demonstrative +common +23238 personal +23248 common +23253 common +23257 personal +23260 common +23263 personal +23269 common +23271 proper +23274 common +proper +23279 personal +23281 common +23287 personal +interrogative +23291 common +23301 common +personal +common +23308 common +23318 common +23323 interrogative +common +common +23329 personal +23337 interrogative +common +common +common +23347 personal +23353 proper +23356 personal +23360 personal +23362 personal +23367 common +23371 personal +23374 common +23379 common +personal +23383 common +personal +23386 personal +23388 indefinite +23395 common +23398 common +23405 common +23408 common +personal +23420 personal +23422 common +personal +23428 common +23433 proper +23436 common +personal +23440 common +proper +23443 proper +23447 common +23450 common +personal +23453 personal +interrogative +personal +23459 common +23463 personal +23466 proper +23468 common +23471 proper +23477 common +23479 personal +23481 personal +23483 personal +interrogative +personal +23490 proper +23492 personal +personal +23496 proper +23499 personal +23504 personal +23508 personal +23512 common +23514 common +23524 common +23527 common +23533 common +23536 common +23538 common +23542 proper +23544 personal +23547 personal +23554 common +personal +23557 proper +23562 personal +proper +23569 common +23573 common +23577 common +23580 common +personal +23583 personal +23585 indefinite +23588 personal +23591 personal +23595 common +personal +23599 personal +23602 relative +23605 common +personal +23609 personal +23612 relative +23615 common +personal +23618 personal +23621 common +23623 personal +23625 interrogative +23627 common +23630 common +23635 common +personal +23638 interrogative +23640 common +common +23643 common +personal +23647 relative +23649 personal +23652 possessive +common +23656 common +demonstrative +23664 common +23666 common +23668 personal +23673 common +23675 common +personal +23679 common +23684 personal +23687 personal +23690 indefinite +23694 relative +23698 common +23703 common +23705 common +23708 common +23711 common +23715 proper +23717 proper +23720 proper +23722 proper +23725 personal +23727 common +23735 personal +23738 common +personal +23744 relative +common +23748 common +23755 personal +proper +23758 proper +23763 proper +23767 proper +23770 proper +common +23774 personal +23780 common +personal +23784 proper +23787 proper +23792 interrogative +23799 common +23801 personal +23804 common +23807 common +demonstrative +23811 common +personal +23816 personal +23825 proper +23828 personal +23831 personal +23834 common +23836 personal +23839 relative +23846 common +23848 common +23854 common +23857 personal +23859 interrogative +23867 personal +23872 common +23875 proper +23881 personal +23883 proper +23893 common +23895 common +23903 personal +23906 proper +23910 personal +relative +23916 personal +23921 common +23923 common +23926 personal +23928 common +23931 personal +23936 common +23938 personal +23943 personal +23946 personal +interrogative +23950 personal +23953 personal +23957 common +common +23961 common +personal +23964 personal +23966 common +23971 personal +23974 personal +23980 common +23986 common +personal +23989 personal +23997 personal +24000 common +24005 personal +24010 personal +24012 personal +24014 personal +24017 personal +24019 personal +24022 personal +24024 common +24027 personal +24032 common +24038 common +personal +interrogative +common +24044 demonstrative +24046 personal +24056 common +personal +24061 common +24064 personal +24067 indefinite +24070 personal +24073 personal +24076 proper +24078 personal +24089 common +24091 common +24095 personal +24097 common +24100 proper +24104 common +24107 common +24111 personal +24116 common +personal +24119 personal +24122 personal +24127 personal +24146 proper +24149 common +personal +24152 personal +24157 personal +24159 common +24161 common +personal +24166 personal +24168 personal +24172 personal +24175 personal +demonstrative +24178 common +24186 common +24192 proper +24197 indefinite +24202 common +personal +24206 personal +24209 common +24211 common +24214 common +common +24218 personal +24223 common +24229 common +24232 personal +24237 proper +24241 common +24244 personal +interrogative +24248 common +24255 personal +24259 common +interrogative +24269 personal +24271 indefinite +24280 common +24283 common +24285 personal +24288 personal +24291 personal +24293 personal +24295 relative +24298 demonstrative +common +24303 common +personal +personal +24309 relative +personal +24313 personal +24318 personal +24320 personal +24322 proper +common +24325 indefinite +24328 common +personal +24331 common +relative +24335 personal +24338 personal +24342 personal +24345 proper +24349 personal +24353 relative +24355 common +24358 common +personal +24364 personal +24366 relative +24370 personal +24372 personal +24376 relative +24378 personal +common +common +24382 common +24384 proper +24388 personal +24394 common +personal +24398 relative +24403 demonstrative +24408 personal +24412 common +24416 common +personal +24422 common +24426 personal +24428 common +personal +24431 personal +24434 personal +24439 common +24443 common +24448 common +24451 common +24457 common +personal +24460 personal +24462 personal +24465 personal +24469 common +24474 common +24479 common +24483 common +personal +24486 personal +24488 personal +24491 personal +24496 common +24498 common +24501 common +24506 common +24509 common +personal +24515 common +24520 common +24524 common +24528 common +24532 interrogative +personal +24537 personal +common +24542 personal +24549 common +24551 proper +24555 proper +24559 common +24561 personal +24567 personal +24570 proper +24572 personal +24575 common +common +24579 personal +24584 personal +interrogative +personal +24588 proper +24593 proper +common +common +24601 proper +24603 personal +24606 common +personal +24609 personal +24611 common +demonstrative +24615 common +common +24621 personal +24623 demonstrative +24625 common +24627 common +personal +24631 common +24637 common +24645 common +24647 relative +24649 common +24651 common +24657 common +24660 common +24662 demonstrative +24664 personal +24667 personal +24669 relative +24672 common +personal +24679 personal +24682 personal +24685 common +personal +24692 personal +common +24695 personal +24699 common +24701 personal +24705 proper +24709 personal +24712 common +24715 personal +24718 personal +24721 demonstrative +24724 common +24726 common +24729 personal +24731 relative +24735 common +24737 common +24739 common +24744 personal +24747 personal +24751 common +24753 personal +24756 personal +24758 common +24763 personal +24765 personal +common +24768 interrogative +24771 common +24776 proper +24778 personal +interrogative +personal +24789 common +24791 common +24805 common +personal +24809 common +24813 personal +common +demonstrative +24819 common +personal +24823 proper +24825 personal +24827 personal +24830 personal +24832 personal +24835 relative +24844 common +24846 common +24850 personal +24856 common +24862 common +24867 proper +24870 common +personal +24876 common +24880 common +24882 common +24886 common +24890 common +personal +24894 proper +24898 personal +common +24905 common +24907 common +24911 common +24914 common +24916 common +24922 common +24924 common +24932 personal +24934 interrogative +24938 personal +24940 proper +24943 common +24948 common +24954 common +24957 proper +24959 personal +24961 personal +24966 personal +24969 proper +24972 personal +24975 relative +24977 common +24979 common +24981 common +24983 common +24985 common +24987 common +24989 common +24991 personal +24995 common +25002 common +demonstrative +25005 common +25007 common +25009 common +25011 common +25013 common +25015 common +25017 common +25021 common +25024 common +25039 common +25042 proper +25046 personal +25048 proper +25061 personal +25065 personal +25071 proper +25074 common +25076 common +25079 common +25082 common +25085 personal +common +25089 personal +25091 common +25094 personal +25097 personal +25100 personal +25106 common +25110 personal +proper +25113 proper +25115 common +proper +25118 personal +common +25123 relative +25125 personal +25127 personal +25131 personal +25133 interrogative +personal +25136 personal +25140 personal +25142 personal +25146 personal +25155 common +personal +25159 proper +25161 personal +25164 interrogative +25169 common +relative +personal +25175 common +relative +personal +25183 personal +25187 proper +25189 personal +25191 common +relative +personal +25198 common +relative +personal +25208 personal +25214 possessive +25217 relative +25226 proper +25228 proper +25231 personal +25233 proper +25235 personal +25242 common +25244 personal +25248 personal +25250 personal +25256 personal +25259 relative +25264 personal +25266 personal +common +25270 relative +25273 personal +25278 common +25282 common +25284 common +25293 common +personal +common +25301 proper +25304 personal +25306 proper +25309 common +personal +25312 common +25315 common +proper +proper +25319 common +25323 common +25327 proper +25335 common +proper +proper +25339 personal +25342 personal +25351 common +proper +25354 personal +25358 proper +25361 personal +25367 personal +25371 personal +25376 common +personal +25382 proper +25385 personal +25387 proper +25389 interrogative +personal +25397 personal +common +25403 proper +25405 personal +25408 common +personal +25411 personal +25417 personal +25420 common +25425 proper +25427 proper +25429 proper +25432 common +25434 common +25438 common +personal +25442 personal +25446 common +25449 personal +25454 personal +25457 common +25459 relative +25461 common +25465 personal +25470 indefinite +personal +25473 interrogative +25475 demonstrative +25478 common +personal +common +25484 personal +25492 common +25495 common +25499 common +25502 personal +25504 indefinite +25509 personal +interrogative +25514 common +25518 personal +25522 proper +25525 personal +25529 common +25532 proper +25535 personal +25537 common +personal +25542 personal +25546 common +personal +25551 common +25554 common +25558 common +25571 common +common +25576 common +25578 common +personal +proper +25588 proper +25597 common +25602 proper +25610 personal +25612 proper +25618 common +25620 common +25624 indefinite +25627 personal +25631 personal +25636 common +25639 common +25642 common +25646 personal +25650 common +25652 personal +25654 common +25659 common +personal +25664 proper +25682 common +25684 common +25687 common +25691 common +25697 indefinite +25699 common +25707 personal +25712 common +personal +common +common +25719 common +25721 personal +25723 personal +common +common +25729 common +25732 common +25736 personal +25740 personal +25744 common +25748 common +personal +25757 common +25763 common +25766 common +25770 proper +25772 personal +common +25776 common +relative +25783 proper +25785 personal +25787 common +common +25791 personal +25794 relative +25797 common +demonstrative +25804 common +25810 common +personal +25815 relative +25819 personal +25821 demonstrative +25823 personal +25825 relative +25834 personal +25841 indefinite +25844 indefinite +25848 common +personal +25853 common +25855 personal +25857 common +personal +25863 proper +25869 personal +25872 personal +25874 common +25877 common +25883 personal +25885 interrogative +common +demonstrative +25890 interrogative +personal +25894 common +demonstrative +25897 demonstrative +25901 proper +25903 personal +25905 personal +25907 common +25910 personal +25913 personal +25915 interrogative +common +demonstrative +25920 common +25922 proper +25924 common +25928 common +25930 personal +25934 personal +25939 common +25943 interrogative +25946 personal +25950 common +25953 common +25958 proper +25961 common +25966 proper +25972 proper +25974 personal +25976 personal +25978 personal +25980 interrogative +common +demonstrative +25986 personal +25988 common +25990 common +common +25995 common +25998 common +26001 common +26004 personal +common +26012 common +26014 common +common +26019 common +26023 common +26025 common +26028 personal +26037 personal +26039 common +26053 relative +26056 relative +26061 common +26064 personal +26067 personal +26072 common +personal +26075 demonstrative +26077 common +26079 personal +26082 demonstrative +26085 common +26088 personal +26090 personal +26093 common +26097 personal +26100 personal +26103 common +interrogative +26107 common +26109 common +26114 common +26118 common +26122 common +demonstrative +26125 common +relative +26130 demonstrative +26133 common +common +26136 common +26138 demonstrative +26143 common +personal +26147 personal +26152 common +26157 personal +26159 common +26163 personal +26168 personal +indefinite +26171 proper +26174 proper +26176 personal +26178 common +26182 personal +common +26191 personal +26198 common +common +26202 common +26204 common +26206 common +26210 common +proper +26221 personal +26223 common +26225 personal +interrogative +personal +26230 personal +common +26239 personal +interrogative +26242 common +demonstrative +26246 common +26250 personal +proper +26254 proper +26256 personal +26258 proper +26260 proper +26264 common +26266 common +26270 personal +26274 personal +proper +relative +26278 common +26283 personal +26285 common +proper +26288 personal +26291 indefinite +common +26296 common +26300 common +26304 common +personal +26307 common +26310 common +26312 common +personal +26315 common +26321 common +26326 common +26331 personal +26336 common +26346 common +26351 common +26355 common +26358 interrogative +personal +common +26366 personal +common +26369 personal +26371 proper +26374 demonstrative +26379 common +26382 common +26384 common +26397 common +26400 common +26411 common +proper +26415 common +26418 personal +26420 common +26422 personal +26424 common +proper +26427 common +proper +26430 common +proper +26434 common +26444 common +26446 personal +26452 personal +26454 personal +interrogative +26457 common +26462 proper +26467 proper +common +26470 common +personal +common +26477 common +26479 common +personal +26484 common +personal +26490 common +personal +26496 common +personal +26502 common +personal +26505 demonstrative +26509 personal +26511 personal +26513 demonstrative +26515 common +26520 personal +26522 common +26524 common +26526 common +26536 personal +26540 personal +26544 common +26549 common +26554 common +26561 personal +26566 common +26568 common +26571 proper +26573 personal +26578 personal +26584 common +26586 common +26591 personal +26596 proper +26605 common +26608 proper +common +proper +26612 personal +proper +26617 common +26621 common +26623 common +personal +26628 personal +26634 personal +26637 common +personal +personal +proper +26642 personal +common +26646 personal +common +26652 common +26654 personal +26659 common +personal +26665 common +26669 common +26672 common +26675 common +26677 common +26680 common +26682 common +26685 common +26689 common +26693 common +26696 demonstrative +26699 common +26704 common +26708 common +26710 common +26713 common +26727 relative +26729 common +26733 common +personal +26736 personal +26739 personal +26743 demonstrative +26753 common +26759 personal +26762 demonstrative +26765 common +personal +26769 relative +26773 common +personal +26777 personal +26782 personal +26785 common +personal +common +26789 interrogative +common +26792 interrogative +common +26796 proper +26798 personal +26800 demonstrative +26803 common +26808 common +common +relative +26816 personal +26819 common +26821 common +26826 personal +26829 proper +26831 proper +26833 proper +26835 proper +26837 personal +26839 demonstrative +26842 interrogative +26844 common +26847 demonstrative +26852 proper +26855 personal +26858 indefinite +personal +26865 common +personal +26869 personal +26877 common +26879 common +common +26888 common +26891 common +26893 common +26895 common +26897 common +26899 common +26901 common +26903 common +common +common +demonstrative +26909 personal +personal +26912 personal +26914 common +26917 common +26921 common +26923 common +26926 personal +26928 common +personal +26934 common +26938 common +26943 personal +26947 interrogative +26951 relative +26953 personal +26955 demonstrative +26957 common +demonstrative +26963 personal +26968 common +26973 common +common +26976 common +26978 common +common +26982 common +26984 common +26987 personal +26995 common +personal +27001 common +demonstrative +27008 common +27010 common +27022 proper +27026 common +27030 common +27035 indefinite +27039 common +personal +27045 common +27053 common +personal +27059 common +27065 demonstrative +27067 common +27073 common +27077 common +demonstrative +common +relative +27083 demonstrative +27085 common +common +relative +27090 common +27102 common +27104 common +27109 common +27114 relative +27118 common +27122 indefinite +personal +27128 proper +27135 common +27137 common +27140 common +27142 common +27151 personal +27154 personal +27158 demonstrative +27160 common +27163 common +demonstrative +27166 common +27170 common +27174 common +personal +27178 common +27183 common +27186 common +27190 common +27196 common +27198 common +27201 common +27203 common +27206 common +27211 common +27216 personal +27220 common +27222 common +common +27225 common +common +27230 common +27233 common +27237 common +personal +27244 common +27249 common +27253 personal +27256 demonstrative +27263 common +27266 personal +27272 common +demonstrative +27275 relative +demonstrative +27280 common +27283 common +27287 common +personal +27294 common +demonstrative +27298 common +27303 common +27305 common +27308 common +27312 common +27320 common +27323 common +27327 common +personal +27332 common +personal +27335 common +27338 common +personal +27342 common +27353 common +27355 common +27360 common +27362 common +27369 personal +27372 relative +personal +27381 common +27387 common +27391 common +27394 common +27396 personal +27398 common +27406 common +27410 common +27412 common +27415 personal +27417 proper +27420 common +proper +27425 personal +27427 common +27429 common +common +common +27436 common +27438 personal +27440 common +27442 indefinite +27446 personal +27448 interrogative +27450 common +demonstrative +27453 common +27457 demonstrative +27459 common +27462 common +27470 personal +27473 proper +27476 personal +interrogative +personal +common +27482 common +27485 personal +27492 personal +27497 personal +27501 personal +27505 relative +27511 common +personal +27515 common +27519 personal +27524 common +27528 common +27530 relative +27532 demonstrative +27535 common +personal +27538 proper +proper +27547 common +27549 personal +27551 personal +27558 personal +common +27564 personal +27570 common +27575 common +27578 personal +27580 common +personal +27589 common +27594 common +personal +27598 personal +27602 common +27605 personal +common +common +common +27611 personal +27618 common +27621 common +27626 common +personal +27630 common +27633 common +personal +27637 personal +personal +27640 common +27647 personal +27651 common +27656 common +27661 personal +27665 common +27674 personal +27679 proper +27683 personal +27686 personal +27689 personal +27693 personal +27698 personal +27703 personal +27707 personal +27714 personal +27717 common +27721 common +27723 common +27728 personal +27732 common +demonstrative +27735 relative +27737 common +27739 common +27742 personal +27747 common +demonstrative +27751 personal +27753 common +27758 personal +27762 demonstrative +27765 common +personal +27769 common +27772 personal +27776 personal +27780 personal +demonstrative +27784 common +personal +27787 common +27794 personal +27802 common +27804 common +27807 common +demonstrative +27810 personal +27815 common +27817 common +27823 common +27825 common +27828 personal +27830 proper +27838 common +27841 common +27847 personal +27849 personal +27852 proper +27855 proper +27857 personal +27864 personal +27867 personal +27869 proper +27872 personal +27874 personal +27876 demonstrative +27878 common +27882 common +27885 personal +27893 personal +27895 personal +27898 personal +27908 common +relative +27911 common +proper +27916 common +personal +27925 proper +27928 proper +27931 proper +27933 personal +27941 personal +27945 common +personal +27948 common +27959 common +27968 personal +27970 common +27973 common +27975 common +27978 personal +27981 common +demonstrative +27984 personal +27987 interrogative +personal +27991 interrogative +personal +27997 personal +28002 proper +proper +28008 common +28017 common +28020 common +28024 common +28032 common +28038 personal +28043 personal +28045 common +28049 interrogative +28051 personal +28058 personal +28067 common +28071 common +28073 common +28076 common +28084 personal +28089 personal +28093 proper +28099 personal +common +28102 common +28104 common +28107 common +28110 common +28118 personal +common +personal +28123 relative +28125 personal +28128 personal +28136 personal +28138 common +28141 personal +28146 common +personal +28150 personal +28153 indefinite +28158 common +28161 common +28163 common +28166 personal +28168 common +28172 proper +28174 personal +28177 common +28180 common +28182 common +28184 personal +28186 common +28189 personal +28197 personal +28202 common +28205 personal +28209 common +indefinite +28212 personal +28214 common +28219 personal +28224 common +28230 proper +28233 common +28238 common +28244 common +28247 proper +28251 personal +28256 common +28258 common +28264 common +28269 common +28272 common +28276 common +28280 proper +common +28285 personal +28293 personal +28297 common +28301 indefinite +28305 personal +28308 personal +28310 personal +28313 personal +28316 common +demonstrative +28323 common +28333 common +personal +28340 common +28343 proper +28348 interrogative +demonstrative +personal +28361 common +28363 personal +28366 personal +personal +28370 proper +28372 common +28377 proper +28379 personal +28384 common +28386 common +28390 common +28396 common +28398 common +28401 common +28404 common +personal +28407 interrogative +28409 common +common +28414 common +interrogative +personal +28422 personal +28425 common +28428 indefinite +28430 personal +28433 personal +28435 common +28438 personal +28441 personal +28445 common +common +personal +28452 proper +28456 common +28460 common +28462 common +28466 proper +28469 personal +28472 personal +28477 proper +28487 personal +interrogative +28495 common +28498 common +28500 personal +28507 demonstrative +28509 personal +28523 proper +28526 personal +28542 common +demonstrative +relative +28550 common +28555 proper +28557 common +28560 personal +28562 proper +28565 common +28569 personal +28578 common +common +28585 common +28589 common +28592 proper +28596 proper +28599 personal +28601 proper +personal +28605 common +28611 personal +28613 personal +28617 personal +28619 common +28623 proper +28626 personal +28632 interrogative +personal +28637 proper +28644 proper +28647 common +28649 personal +28651 common +relative +28659 proper +28662 common +relative +28666 common +common +28672 common +28677 personal +28680 proper +28682 personal +28686 personal +28688 common +28695 common +28697 personal +28699 common +28702 common +28705 common +28709 proper +28711 personal +28714 proper +28718 personal +28720 interrogative +28722 relative +28725 common +28733 personal +28736 proper +28738 personal +28741 interrogative +28748 personal +28751 proper +28754 common +28759 personal +28761 proper +28765 proper +28771 common +28773 personal +28776 common +relative +28779 common +28784 common +28787 personal +common +28791 personal +28794 common +28798 personal +28800 common +28805 personal +28807 common +common +28811 personal +28815 common +28817 personal +28821 personal +28823 personal +28825 common +28828 personal +28830 common +personal +28834 personal +28837 personal +28841 indefinite +proper +proper +28846 common +28848 common +proper +28851 proper +28855 common +personal +28859 personal +28862 common +proper +relative +28867 common +common +28871 personal +28873 common +28875 relative +28880 personal +28884 common +personal +28887 common +28889 personal +interrogative +interrogative +28895 common +28899 personal +28904 common +28906 common +personal +28909 common +28914 personal +28917 common +28925 personal +28930 personal +28933 common +personal +28941 common +28946 common +28948 personal +28952 common +28956 common +28959 personal +28962 common +28966 personal +28971 proper +28973 common +proper +28979 common +28988 personal +28990 personal +28993 common +28995 common +29000 common +29002 common +29007 common +29010 proper +common +29013 common +common +29017 relative +29021 common +personal +29024 common +personal +29027 interrogative +29029 personal +29031 indefinite +29037 proper +29040 indefinite +29044 common +common +29047 common +29049 personal +29055 proper +29057 personal +29060 proper +29062 common +29067 common +29069 common +29079 common +29084 personal +29091 demonstrative +29093 common +common +common +29100 common +29105 relative +29107 proper +29109 proper +29111 proper +29113 proper +29117 proper +common +29120 proper +relative +29126 proper +29128 personal +29131 personal +29137 personal +29139 proper +29146 common +relative +29149 common +29151 proper +29154 proper +29156 common +relative +29159 personal +29163 common +29165 common +29170 proper +29174 common +29176 proper +29179 proper +29187 common +29189 personal +29197 common +29200 common +29202 proper +29205 common +29207 personal +29210 common +29213 personal +29215 common +relative +29220 common +29223 common +29226 common +29228 common +29231 proper +29233 proper +29235 proper +29237 proper +29244 common +proper +29247 proper +29249 proper +29252 proper +29254 proper +29256 common +29260 personal +29267 common +29271 common +29274 common +29278 personal +interrogative +29281 personal +29283 common +29286 common +29288 common +29295 common +29304 common +29306 common +29312 common +29319 personal +29323 proper +29334 common +29337 personal +29342 common +personal +29346 proper +29349 personal +29352 proper +29354 personal +29358 personal +29364 common +29367 personal +common +29370 common +29381 common +29384 proper +29386 proper +29388 relative +29391 common +demonstrative +29397 personal +29409 personal +29413 demonstrative +29416 personal +29421 common +29424 common +29431 demonstrative +29436 personal +29443 common +personal +29446 common +29450 personal +29456 personal +29460 common +29464 common +29467 common +29478 common +demonstrative +29485 common +personal +common +29489 common +29492 common +29496 indefinite +29500 personal +29504 common +29512 common +proper +29517 personal +29521 common +29527 common +29529 demonstrative +29534 common +29538 common +29543 common +29551 proper +29556 demonstrative +29560 proper +29562 common +29565 common +29568 personal +29573 common +29576 common +29581 common +29586 personal +common +29590 personal +29593 common +common +29596 common +29599 common +29601 personal +29607 personal +29610 proper +29614 relative +29616 common +29618 common +29622 common +proper +common +29626 proper +common +indefinite +common +proper +29632 common +proper +29635 common +personal +29639 common +proper +29643 common +personal +proper +29652 common +29657 common +29659 common +29661 common +29666 personal +common +29671 proper +29679 common +personal +29686 personal +29689 common +29691 common +personal +29695 common +29698 common +29700 common +29707 common +29709 common +29713 common +29715 common +29720 common +29722 common +29725 personal +common +common +29732 common +29734 common +29737 proper +29740 common +29743 personal +29747 personal +29749 common +29752 proper +29756 common +personal +29760 common +personal +proper +29764 common +personal +29769 common +personal +proper +29774 personal +common +29777 common +29782 common +personal +29789 common +29791 common +29793 common +29798 common +29803 common +common +personal +29809 common +proper +29813 common +29815 common +personal +29818 personal +29821 personal +29823 common +29825 common +proper +29828 common +common +29831 common +29835 common +29838 common +common +29843 proper +29846 common +29848 interrogative +29850 demonstrative +29852 personal +29854 common +29857 common +personal +29862 common +personal +29867 common +29869 personal +personal +29872 proper +29877 common +29882 personal +29885 personal +demonstrative +29896 relative +common +29899 demonstrative +29901 relative +29905 common +personal +relative +29911 common +personal +29917 common +29919 proper +29927 common +personal +29934 personal +29938 common +29942 common +29944 personal +29947 personal +29956 common +29958 common +personal +29963 common +personal +29967 demonstrative +29969 common +29971 proper +29973 common +personal +29977 personal +common +29983 personal +29985 common +29987 common +relative +29991 common +personal +29994 common +29998 common +30003 common +proper +30007 common +30009 common +30011 proper +relative +common +proper +30016 common +30018 common +relative +common +proper +30023 common +proper +30027 common +30029 common +proper +30034 personal +30039 common +30041 personal +30046 common +30050 interrogative +30053 common +demonstrative +30058 common +personal +30062 proper +30065 common +30068 common +30073 common +30076 common +30080 common +personal +proper +demonstrative +30087 common +30092 personal +common +30095 common +30097 common +proper +30100 common +personal +30106 common +proper +30110 common +30113 common +personal +30117 common +30120 proper +30123 common +30126 demonstrative +30128 common +30134 common +30136 personal +common +30141 personal +30143 common +30146 personal +30153 common +common +30157 proper +30159 common +personal +30162 personal +30164 common +30166 common +personal +30169 demonstrative +common +30173 personal +30182 common +30184 common +30187 proper +30190 common +common +30193 personal +30196 common +personal +30201 personal +30203 common +30205 proper +30209 common +demonstrative +30216 common +30218 common +proper +30224 common +proper +30229 proper +30235 common +30237 proper +30239 proper +30242 common +30245 common +personal +30249 common +30252 proper +30255 common +30260 personal +30262 common +30266 common +30268 common +personal +30272 personal +demonstrative +30277 common +30279 common +personal +30282 personal +30288 common +30290 common +personal +30294 common +personal +30298 common +30300 common +30303 common +personal +30311 common +30314 personal +30316 common +30319 proper +30322 common +personal +30325 common +30329 common +personal +30333 common +30335 common +personal +30341 common +30343 common +personal +30351 personal +30354 common +30357 personal +30364 common +personal +30368 common +personal +30371 common +30373 common +30376 personal +30378 common +30380 common +personal +30384 common +common +personal +30388 common +30390 common +30402 proper +common +personal +30406 common +30408 proper +30411 common +personal +30415 common +30420 common +personal +30424 proper +30426 personal +30428 common +30434 common +personal +30438 proper +30441 common +30444 personal +30447 common +30455 personal +30458 common +30460 common +personal +30463 personal +30466 personal +30471 common +30477 common +30480 personal +30483 common +30485 common +personal +proper +30491 common +personal +30497 proper +30501 personal +30506 common +personal +30509 relative +30512 common +demonstrative +30517 common +personal +30522 interrogative +30524 personal +30527 common +30530 proper +30532 common +personal +30540 common +personal +30545 common +personal +30551 common +30554 common +30559 personal +30566 proper +30570 common +demonstrative +30579 common +personal +30583 interrogative +30585 common +demonstrative +30590 common +common +30594 personal +30596 proper +30598 common +personal +30601 common +30607 common +30609 common +30611 proper +30616 common +30618 common +personal +30622 common +common +personal +30626 common +proper +common +personal +30633 common +30637 common +common +personal +common +30643 personal +30646 common +30650 personal +30652 common +30655 common +personal +30659 common +30661 personal +common +relative +30666 proper +30668 common +personal +30672 personal +30674 common +30679 personal +30681 common +30683 common +30685 personal +30688 common +personal +30691 common +30693 personal +common +30700 common +30702 common +personal +30706 common +common +30709 common +personal +30712 common +common +personal +30716 common +common +common +personal +30721 relative +30723 personal +common +30726 common +30730 common +30732 common +common +30738 common +personal +30741 common +common +30745 common +30749 common +30756 common +common +personal +30761 proper +30766 common +demonstrative +30769 common +30771 proper +proper +30776 common +demonstrative +common +30783 proper +proper +30792 personal +common +30797 proper +30800 proper +30802 common +proper +30806 proper +30808 common +proper +relative +30812 proper +30816 personal +30818 common +30820 common +proper +30824 proper +30827 personal +30835 personal +30839 common +30842 personal +30846 common +personal +30852 personal +30855 personal +30857 common +30861 personal +common +30865 common +30867 common +30871 common +30877 common +30879 common +30882 common +personal +30885 common +common +30888 personal +30890 common +common +30893 personal +30896 common +30900 personal +30902 common +30908 personal +common +30911 relative +30915 common +30918 personal +30920 common +relative +30923 proper +common +30926 common +proper +30929 demonstrative +personal +common +30933 common +30938 common +30944 common +common +common +30950 common +30953 common +30956 common +30959 common +common +30962 common +common +30969 personal +30972 common +30974 common +30976 common +30979 personal +30983 proper +30987 common +demonstrative +30991 relative +30993 common +30995 personal +31003 proper +31006 proper +31009 common +31013 common +31019 common +31022 personal +31025 common +demonstrative +31037 common +31039 personal +31042 proper +31046 common +demonstrative +31051 common +personal +31056 common +31061 common +31064 relative +31071 personal +31075 common +31079 personal +31083 common +personal +proper +31090 common +31094 personal +31097 common +31102 common +31104 common +personal +31108 common +proper +31111 personal +31113 proper +31116 common +31120 common +common +31126 common +31129 common +31134 common +31140 common +common +common +common +31146 common +common +31150 common +31153 proper +relative +common +proper +31159 common +demonstrative +31165 common +31167 proper +31169 common +31173 personal +31177 personal +31180 common +31185 common +31191 proper +common +31197 common +31206 common +31208 common +proper +31212 personal +31217 common +31219 personal +31221 personal +31223 personal +31226 common +31230 common +31233 common +31237 common +personal +31241 common +personal +31244 common +31248 common +personal +31252 personal +relative +31256 common +31259 common +common +31262 common +common +31265 common +common +personal +proper +31273 common +personal +31277 common +31282 personal +31285 personal +proper +31290 proper +31292 common +personal +31295 demonstrative +31298 common +31300 common +31304 proper +31307 common +31311 personal +personal +31314 common +31316 common +31322 common +common +31326 proper +common +common +proper +31331 common +proper +demonstrative +31336 common +31340 common +common +31345 common +personal +31348 personal +31351 common +31354 relative +31359 common +31361 common +31363 common +31365 common +31367 personal +31369 common +31373 common +31377 personal +31381 common +proper +31390 common +common +31395 proper +31397 common +personal +proper +31402 common +31407 common +31409 common +common +31413 personal +31417 common +personal +31420 common +31422 proper +31424 common +31426 common +31430 common +31433 personal +31436 common +31438 common +31442 common +31446 personal +31448 proper +31450 common +31452 proper +31457 common +personal +31461 personal +31465 common +31467 common +common +31471 personal +31483 proper +31485 personal +31489 common +31492 personal +31500 common +31503 personal +31506 personal +31512 personal +31515 common +31518 common +personal +31522 personal +31527 personal +31529 common +personal +common +interrogative +31534 personal +31538 common +personal +personal +31543 personal +31547 personal +interrogative +31551 personal +31558 common +personal +31561 personal +31564 personal +31568 common +relative +31571 personal +31575 personal +31579 proper +31583 personal +31586 common +personal +31591 common +31594 common +personal +31597 proper +31601 common +31603 common +31605 common +31607 common +31609 common +31612 common +31615 common +proper +proper +31619 proper +proper +31622 proper +31626 proper +proper +31629 proper +31631 common +personal +31638 common +31640 proper +31642 proper +31645 common +proper +31648 proper +31650 common +common +31653 proper +31655 proper +common +31667 proper +31669 common +common +31672 common +common +31677 common +common +proper +31681 common +common +31689 common +common +31694 common +personal +31697 common +31701 common +31703 common +31715 common +31720 common +31724 common +31731 personal +common +common +common +interrogative +31737 personal +31742 common +31745 common +31748 common +31754 personal +common +31758 proper +31761 personal +31765 common +31768 common +demonstrative +31771 common +31773 proper +31778 common +31781 common +31783 common +31787 common +31790 common +31795 common +31799 personal +31801 common +31804 interrogative +31809 personal +31813 common +31821 common +31827 common +31832 personal +common +interrogative +31840 personal +31846 personal +31850 personal +31854 interrogative +31857 personal +31860 personal +31868 common +personal +31873 common +31879 common +personal +31883 proper +31886 personal +31889 proper +31894 proper +31896 personal +common +31899 personal +31904 personal +relative +31911 common +31913 common +personal +personal +personal +31919 common +31922 common +relative +31925 common +31928 common +personal +31932 common +personal +31937 common +31940 common +personal +31944 common +31946 common +31956 common +31959 proper +31961 common +31964 personal +31966 proper +31968 common +31970 common +personal +31975 relative +31979 proper +31982 demonstrative +31987 proper +31989 common +31997 common +31999 proper +32005 common +32009 common +32013 common +32015 common +32017 personal +32019 common +32021 common +32023 personal +32026 common +personal +32031 personal +32034 personal +proper +32039 common +32044 common +proper +32047 proper +32049 proper +32051 proper +32053 proper +32055 proper +32057 proper +32059 proper +32061 proper +32063 proper +32065 proper +32067 proper +32069 proper +32071 proper +32073 proper +32075 proper +32077 proper +32079 proper +32081 proper +32083 proper +32085 proper +32087 proper +32089 proper +32091 proper +32093 proper +32095 proper +32097 proper +32099 proper +32101 proper +32103 proper +32105 proper +32107 proper +32109 proper +32111 proper +32113 proper +32115 proper +32117 proper +32119 proper +32121 proper +32123 proper +32125 proper +32127 proper +32129 proper +32131 proper +32133 proper +32135 proper +32137 proper +32139 proper +32141 common +32143 proper +32145 proper +32147 proper +32149 proper +32151 proper +32153 proper +32155 proper +32157 proper +32159 proper +32161 proper +32163 proper +32165 proper +32167 proper +32169 proper +32171 proper +32173 proper +32175 proper +32177 proper +32179 proper +32181 proper +32183 proper +32185 proper +32187 proper +32189 proper +32191 proper +32193 proper +32195 proper +32197 common +32199 proper +32201 common +32206 proper +32211 common +32215 common +32227 common +demonstrative +32231 personal +32235 personal +32240 common +32242 common +32245 common +demonstrative +32249 common +32253 personal +32255 proper +32260 common +32264 common +32267 personal +32269 personal +32272 common +32274 common +32276 common +common +32280 personal +32283 personal +32286 common +demonstrative +32291 common +personal +32294 personal +32298 relative +32301 personal +32304 personal +32307 personal +32309 personal +32314 proper +32316 personal +32319 common +32321 common +personal +32324 personal +32329 personal +32331 proper +32336 common +32341 personal +32344 common +32346 common +32348 personal +32355 common +personal +32359 personal +32362 personal +32366 common +32368 personal +32373 common +32375 common +personal +32380 personal +32382 proper +32387 common +32389 common +personal +32394 common +32399 personal +32401 common +32405 proper +32408 common +32410 common +32413 proper +32415 common +32422 personal +32424 personal +32428 common +personal +32436 proper +32445 personal +32448 common +32450 common +32453 common +32459 personal +common +32462 common +proper +32467 common +32470 common +32474 common +common +32477 personal +relative +32481 personal +32485 personal +32487 common +common +32491 common +32495 common +32497 common +common +32503 common +32506 common +32511 common +32514 common +32517 personal +32522 personal +32527 common +demonstrative +32531 common +personal +32536 personal +32541 common +32543 common +32548 common +personal +32553 common +proper +32556 demonstrative +32560 personal +32563 personal +32565 common +demonstrative +common +32569 personal +32571 relative +32575 proper +32581 common +personal +32587 personal +32590 common +32595 common +personal +32599 common +32601 personal +32607 common +proper +32611 proper +32615 common +32617 common +32620 common +32624 common +32629 common +32633 personal +32635 proper +32639 proper +32643 common +32651 proper +32653 proper +32655 common +32658 personal +32662 proper +32664 proper +32667 common +32671 common +32673 demonstrative +32677 personal +32680 common +32683 personal +32685 common +32687 common +32689 relative +32691 common +personal +32696 personal +32698 personal +32702 personal +32707 proper +common +32710 proper +32714 personal +32717 common +32722 common +personal +32726 common +32729 common +personal +32734 common +32736 common +32738 common +common +32743 common +32746 interrogative +personal +32749 personal +proper +32754 personal +32756 personal +interrogative +32762 common +32765 personal +32767 proper +32773 personal +32776 common +32778 personal +32784 personal +32787 personal +32790 common +32796 personal +32798 interrogative +32800 common +demonstrative +32804 common +32806 common +32810 common +32815 common +32817 personal +32820 common +32827 common +32831 common +proper +32834 common +32836 proper +32839 common +32843 personal +32845 personal +32849 personal +32852 common +32855 personal +32860 personal +32864 common +32866 relative +32869 common +32872 personal +32874 personal +32879 personal +32881 common +32884 personal +32888 common +32895 personal +32898 common +32900 common +32905 personal +32910 proper +personal +32915 common +32920 common +32923 common +32925 personal +32929 personal +32932 personal +32937 personal +32942 personal +32947 common +32949 personal +32951 common +32953 common +32957 demonstrative +32964 common +32966 proper +32972 common +32974 personal +32978 common +32980 common +32982 personal +32987 common +proper +32991 common +32996 common +32999 common +33001 personal +33005 common +33011 common +relative +33014 proper +33016 personal +33019 common +33026 common +33029 common +33037 proper +33041 common +33045 common +personal +33048 common +33051 proper +33053 common +33056 common +33063 common +personal +33067 common +33069 demonstrative +33072 common +common +33078 common +personal +33087 common +33091 personal +33098 common +33101 personal +33104 proper +proper +33108 common +proper +33113 personal +33115 common +33118 common +33120 common +33122 personal +33127 personal +33130 common +33132 common +relative +33138 proper +33140 proper +common +proper +relative +33145 common +33147 proper +33152 proper +33154 proper +33160 common +33166 common +33169 common +33173 personal +33179 personal +33183 common +33186 common +33188 common +33192 proper +33195 common +33197 personal +33199 common +33203 personal +33208 common +33210 personal +33217 common +33220 personal +33222 personal +33224 personal +33230 personal +33232 common +33237 common +personal +33241 proper +33243 common +personal +33249 common +33251 personal +33254 common +33261 common +personal +33264 personal +33277 common +33279 personal +33285 proper +33287 common +relative +33293 common +33295 proper +33297 proper +33299 proper +33301 common +common +33307 personal +33310 common +33313 common +common +relative +33320 personal +33325 personal +33329 interrogative +33331 personal +33334 common +33338 common +33341 common +33343 personal +33346 common +33352 proper +33356 common +personal +33359 common +33361 personal +33363 common +personal +33369 common +33372 proper +33374 interrogative +33376 demonstrative +relative +33379 common +interrogative +33382 common +33388 common +33391 proper +33394 common +personal +33399 personal +interrogative +33404 common +personal +interrogative +33411 personal +33413 common +personal +33425 common +33427 common +common +33432 common +33434 common +33438 personal +33444 common +personal +33449 common +personal +33455 personal +33458 relative +33463 common +personal +33467 common +33469 common +33475 common +33478 common +33486 demonstrative +33490 common +common +proper +33496 common +33499 personal +33501 personal +33507 personal +33510 common +33512 proper +personal +33516 common +personal +33520 common +33522 common +33525 relative +33529 personal +33533 proper +33536 common +personal +33540 common +personal +33544 interrogative +33547 common +33556 proper +33559 personal +33561 common +common +33577 common +33582 personal +33584 common +proper +33589 common +33595 proper +33598 possessive +33604 proper +33607 personal +33611 common +33613 common +33615 relative +33617 common +33619 personal +33625 common +33630 personal +33632 common +33636 demonstrative +33638 common +33642 common +33644 personal +33647 common +33649 common +33654 common +33669 common +33677 common +33680 common +33687 common +33691 common +33693 personal +33697 common +33700 common +33703 common +33721 common +33723 personal +33731 common +personal +33734 common +33737 common +33739 indefinite +33741 proper +33743 interrogative +33745 relative +33749 common +33753 personal +33756 proper +33759 demonstrative +relative +33762 proper +33765 personal +33769 personal +33775 common +33777 common +33780 common +33782 common +33789 personal +relative +33798 common +33801 personal +33803 common +33805 common +33807 common +33809 common +33814 common +33816 personal +33819 common +33824 common +33828 common +personal +33836 personal +33838 common +33841 proper +33845 common +33850 personal +33852 personal +33855 common +personal +33860 common +33865 common +33878 proper +33880 personal +33882 personal +33886 common +33890 common +33897 personal +33899 personal +33902 common +personal +33910 common +personal +33913 personal +33915 common +33919 personal +33921 interrogative +33924 proper +33929 common +demonstrative +33932 personal +33935 common +33942 common +33944 common +33948 common +33951 common +personal +33956 personal +33958 relative +33960 common +33962 proper +relative +33966 proper +33968 proper +33970 common +personal +33973 proper +33975 proper +33977 proper +33979 proper +33981 proper +33983 proper +33985 proper +proper +33988 proper +33991 common +33993 proper +proper +33996 proper +proper +relative +34000 common +34004 personal +34007 common +34010 common +34012 common +personal +34015 common +34018 common +34022 proper +34024 proper +34028 proper +34030 proper +relative +34034 personal +34039 common +personal +34045 common +34051 common +34054 personal +34056 common +34058 personal +34064 personal +34067 common +personal +34071 common +personal +34081 common +34083 common +34100 personal +34102 common +34106 personal +34112 common +personal +34118 common +34120 common +34123 demonstrative +34125 common +34131 common +personal +34136 common +34143 common +34145 common +personal +34149 personal +34155 common +personal +34158 personal +34175 personal +34179 common +34186 common +34188 common +personal +34192 personal +34198 personal +34203 personal +34207 personal +34212 personal +34215 personal +34218 common +34227 personal +34229 common +34232 common +34237 personal +34244 possessive +34252 personal +34254 common +34256 personal +34263 personal +interrogative +common +personal +34274 personal +34282 personal +interrogative +common +personal +34297 relative +34300 interrogative +common +personal +34316 personal +34326 common +personal +34331 common +34334 personal +34346 common +personal +34370 personal +common +34379 common +personal +34382 relative +common +34386 personal +34390 common +personal +34400 common +34404 common +34407 common +34414 common +personal +34417 interrogative +34420 common +34424 common +34426 common +personal +34430 common +34435 common +34442 common +personal +common +34448 common +34452 common +personal +personal +34458 common +personal +common +34463 common +34467 common +34470 common +personal +34476 common +34480 common +34482 common +personal +34489 common +34491 common +34495 common +34498 common +34502 common +34506 common +34511 common +34513 common +34516 common +common +34521 common +34525 common +34527 common +34542 common +common +34546 common +personal +34549 interrogative +personal +34552 common +common +34557 relative +34563 personal +34566 personal +34568 common +34571 personal +34573 personal +interrogative +34579 common +34581 common +relative +34588 common +34591 common +34593 common +34597 common +34599 common +demonstrative +34605 personal +34610 personal +34619 common +34621 common +34624 common +34626 common +relative +34630 common +34637 common +34639 common +demonstrative +34646 common +personal +34650 common +34652 common +34655 proper +34657 common +indefinite +common +34664 relative +34666 personal +34672 proper +34675 personal +34680 personal +34685 common +personal +34692 proper +34694 personal +34700 relative +34702 demonstrative +34706 common +personal +34710 common +personal +34713 personal +34716 proper +34719 personal +34722 personal +34728 common +34732 common +34734 personal +common +34745 common +personal +34750 personal +34753 personal +34757 common +34761 common +personal +34765 personal +34767 common +34769 common +34773 personal +common +34777 demonstrative +34788 common +personal +34791 demonstrative +34796 demonstrative +34798 proper +34800 personal +34805 personal +common +34809 personal +34813 proper +demonstrative +common +34821 common +34826 common +34835 common +34837 proper +34840 personal +34842 common +personal +34845 common +34851 common +34853 common +34859 common +34861 common +personal +34864 personal +34868 common +34870 common +34874 personal +34877 personal +34879 common +34882 personal +34885 personal +34892 common +34899 common +personal +34912 personal +34914 common +personal +34918 common +34923 common +34926 common +34930 personal +34935 common +34937 common +personal +34942 common +demonstrative +34945 personal +34949 proper +34956 proper +34958 common +personal +34962 demonstrative +34966 indefinite +34968 common +personal +34971 proper +34975 common +34977 personal +34987 personal +34989 common +34991 proper +34993 common +34995 personal +34997 personal +34999 personal +35007 demonstrative +35009 common +35013 common +35015 common +35017 common +35027 personal +35030 proper +relative +35052 relative +35056 personal +35060 common +proper +35066 common +35068 proper +interrogative +35075 common +35077 common +35080 interrogative +35083 common +35086 common +35091 common +35094 common +35101 interrogative +35104 common +35107 personal +35110 common +demonstrative +35114 relative +35119 common +personal +35122 common +personal +relative +35127 common +personal +35130 personal +35132 personal +35136 common +proper +35145 common +35147 common +35149 personal +35154 common +35157 common +35161 common +35164 common +proper +35168 proper +35173 common +35175 common +35178 personal +35182 personal +35184 interrogative +35187 common +35189 common +demonstrative +35192 interrogative +35197 common +35200 common +35204 personal +relative +35208 personal +35218 proper +35220 common +35223 common +35226 common +35229 common +35233 common +35235 common +35242 common +common +35245 common +35247 common +35253 common +35257 common +personal +35261 indefinite +35263 proper +personal +35268 personal +35273 common +35275 proper +35279 common +relative +35284 common +35292 common +35294 proper +35296 common +common +35303 common +personal +35308 common +35311 common +personal +35315 common +35317 common +personal +35323 common +personal +35328 common +35332 proper +35335 personal +35338 personal +35341 demonstrative +35343 common +35346 interrogative +35348 interrogative +35350 common +relative +35353 personal +35360 proper +35363 personal +proper +35366 personal +indefinite +35371 common +35375 common +35377 common +indefinite +35382 common +35390 personal +35395 interrogative +personal +35399 personal +35401 proper +35405 relative +35412 personal +35419 common +35421 proper +35424 demonstrative +35426 common +35429 personal +35431 common +common +personal +35435 common +35439 demonstrative +35441 common +35443 personal +35445 common +35448 common +personal +35451 common +personal +35456 demonstrative +35458 relative +35463 personal +35465 common +common +35468 common +personal +35473 demonstrative +common +35477 common +personal +relative +35482 personal +35485 common +personal +35493 relative +35500 personal +35502 personal +35504 common +35511 personal +interrogative +demonstrative +35515 relative +35517 common +35523 common +35525 common +personal +35528 personal +35531 common +35538 personal +35541 common +35543 common +35548 common +35550 common +35553 personal +35557 common +indefinite +relative +35563 common +35566 common +proper +35570 proper +35572 relative +common +35577 proper +common +proper +common +proper +35583 proper +35587 relative +35589 personal +35593 personal +35596 common +35601 common +35604 personal +35607 common +35614 common +personal +35620 personal +relative +35626 common +35633 common +35635 personal +35641 common +35649 common +35656 common +35660 common +35662 personal +35668 common +35674 common +35676 demonstrative +35681 common +35686 personal +35688 common +personal +interrogative +35692 demonstrative +35694 common +35698 personal +35702 common +35704 common +35706 common +35711 common +35722 demonstrative +35724 common +35726 common +35729 common +35731 common +35736 common +35747 common +35750 common +personal +35760 common +relative +35765 common +35768 common +35770 demonstrative +common +35774 relative +35776 common +35780 common +common +35787 common +35789 demonstrative +35795 common +35797 common +35799 common +35801 common +35812 common +demonstrative +35815 relative +35817 common +35823 common +35828 common +35831 common +35834 personal +common +35838 common +35842 common +35849 common +35854 relative +35860 relative +35874 relative +35877 personal +35880 relative +35884 relative +35889 personal +35893 personal +35895 common +35898 common +personal +35904 personal +35907 common +35910 personal +35912 common +personal +35916 common +personal +35921 personal +35928 personal +common +personal +35932 common +personal +demonstrative +35938 common +35940 common +35949 common +35951 personal +35954 common +35957 common +personal +35962 personal +35968 common +35973 personal +35977 common +common +35981 common +35989 personal +35991 common +common +35999 common +36002 common +36004 common +36009 common +36012 personal +36015 common +personal +36022 personal +36024 interrogative +demonstrative +36030 common +36033 common +36037 personal +36042 common +36045 relative +36049 proper +36051 personal +36055 common +36057 common +indefinite +36061 common +36063 common +36065 common +36069 common +36072 common +36078 common +36082 proper +36085 personal +36087 common +36090 interrogative +personal +36093 personal +proper +common +36097 common +36101 personal +36103 personal +36108 common +36114 common +36117 common +36119 personal +36122 common +36124 common +36129 common +36133 common +36139 personal +36141 proper +interrogative +personal +common +36149 common +36152 common +36155 personal +36158 personal +36162 personal +36165 common +36170 common +common +36176 common +36179 personal +36182 personal +36184 demonstrative +36188 personal +36191 common +36195 common +36199 common +36203 common +36206 common +36209 common +36223 common +36227 common +36237 proper +36242 common +36244 relative +36246 common +36253 common +36255 proper +36260 personal +36271 common +36276 personal +36279 personal +36281 common +36285 personal +36288 common +36292 personal +36294 common +36296 relative +36299 common +36302 personal +36305 personal +36310 common +personal +36314 relative +personal +36318 common +36324 common +36326 relative +36328 personal +36330 proper +36336 proper +36338 personal +36340 common +36345 personal +36349 common +relative +common +proper +36354 demonstrative +common +36357 common +36363 common +proper +36366 personal +36370 common +personal +36373 common +36376 common +36379 personal +36381 personal +36387 personal +36389 common +36391 personal +36393 common +36396 common +common +36399 common +36401 relative +36411 common +36413 common +personal +36419 common +36421 common +personal +36426 proper +interrogative +36430 personal +36436 proper +common +36439 common +36441 personal +36446 proper +36449 personal +indefinite +36452 personal +36454 common +36457 personal +36460 common +36469 personal +36471 relative +common +36474 personal +36479 common +36487 personal +common +36490 common +personal +36493 personal +36496 common +36498 personal +36501 indefinite +36504 common +36509 common +personal +36514 common +36517 proper +36520 personal +36531 common +36535 indefinite +36537 personal +36540 proper +36542 proper +36544 proper +36547 common +36549 common +36552 common +36558 personal +36570 personal +36575 personal +36578 common +personal +36583 common +36588 common +personal +36595 personal +36601 common +personal +36606 personal +36616 personal +common +36619 common +36623 common +36625 common +36629 personal +36632 common +36634 common +36640 personal +36645 common +36647 common +36649 common +36651 common +36653 common +36657 common +36662 relative +common +36672 relative +36675 personal +36679 common +demonstrative +36682 common +36685 common +personal +36689 common +36691 personal +36697 common +36704 proper +36706 common +36716 indefinite +36718 proper +36724 indefinite +36726 proper +36731 common +indefinite +36738 proper +proper +personal +36743 interrogative +36745 demonstrative +36747 relative +36749 demonstrative +36753 personal +36757 common +36759 personal +relative +36764 personal +36769 common +36771 proper +36774 common +36777 personal +36780 personal +36782 personal +36785 common +36787 common +36790 common +common +36796 common +36804 personal +36807 common +36813 common +36815 common +36819 common +36824 common +36829 personal +36831 personal +36833 personal +36839 personal +36842 common +36845 common +36850 personal +36855 common +demonstrative +common +36862 common +36867 common +personal +36870 personal +common +36885 common +36889 common +36893 common +36895 personal +36901 common +36904 common +36914 personal +common +common +36924 personal +36928 personal +36930 common +36933 personal +36935 interrogative +personal +36939 common +36945 proper +36947 common +36950 proper +36954 common +indefinite +36961 personal +36963 personal +interrogative +personal +36969 proper +36973 proper +36975 common +36979 personal +36983 demonstrative +36988 common +36990 common +36999 common +37001 common +37007 common +37014 indefinite +37017 personal +37020 personal +37024 common +personal +37027 common +37030 personal +37033 relative +37036 common +personal +37040 personal +37043 relative +37046 common +personal +37049 personal +demonstrative +37052 personal +37054 interrogative +37056 common +37059 common +37062 personal +37068 relative +37070 personal +37073 possessive +common +demonstrative +37077 common +37079 common +37085 common +personal +37089 common +37093 common +37096 personal +37099 indefinite +37103 relative +37107 common +37112 common +37114 common +37119 common +demonstrative +37122 common +37126 proper +37128 proper +37130 proper +37134 common +37141 personal +37143 common +37145 common +personal +37150 common +personal +37156 common +37159 personal +relative +37162 proper +37164 proper +relative +37168 common +37171 common +personal +relative +37176 proper +37180 proper +37184 personal +37187 common +37192 common +personal +37197 common +37200 personal +37206 personal +37208 personal +37211 proper +37214 proper +common +37218 personal +37223 common +37226 personal +37229 proper +37232 proper +37235 relative +37238 demonstrative +personal +37242 common +37245 personal +37251 personal +37254 common +37256 common +37260 common +37262 demonstrative +37265 common +personal +37269 personal +37276 common +37278 proper +37281 personal +37287 demonstrative +37289 common +37291 relative +37297 common +37299 personal +37302 common +37304 personal +common +37309 common +37312 common +37315 common +37317 personal +37321 common +personal +37325 personal +37329 common +37331 personal +37337 personal +37339 common +37344 personal +37346 personal +37350 common +personal +37354 personal +37361 proper +37364 common +37372 personal +37375 personal +37379 common +personal +37384 personal +37386 personal +37388 common +37394 proper +37396 common +37402 common +37405 personal +37407 common +personal +37414 common +37416 common +37422 relative +37427 common +personal +37430 personal +37433 common +personal +37436 common +demonstrative +37440 common +37442 common +37446 common +common +37452 common +demonstrative +37458 personal +37462 personal +37466 personal +37469 common +demonstrative +37474 personal +common +37478 interrogative +personal +37484 proper +37487 common +37489 common +personal +37492 common +37494 personal +37496 personal +37499 personal +37501 relative +37503 demonstrative +37505 common +37508 common +personal +personal +37514 relative +personal +37520 personal +37526 personal +37528 demonstrative +37534 proper +37536 common +37538 indefinite +37541 common +personal +37544 common +37547 personal +37552 personal +37556 personal +proper +37561 relative +37565 personal +37567 personal +37575 common +37577 common +personal +37580 personal +37582 common +37587 proper +37590 common +37592 common +personal +37598 common +proper +37602 personal +37606 personal +37609 common +personal +37614 proper +37618 common +proper +37621 proper +37623 common +37626 common +37630 common +37633 personal +37637 personal +37642 common +37645 personal +37648 common +37650 indefinite +37652 personal +37654 personal +37660 personal +37662 proper +37664 common +common +37671 common +common +37675 common +37677 common +37682 common +37689 personal +37694 personal +37699 common +personal +37703 personal +37709 personal +37712 personal +37716 common +37718 common +37724 personal +common +37729 personal +37734 common +personal +37739 personal +37741 proper +37745 common +37747 common +37756 common +37758 common +37761 demonstrative +37764 common +37769 personal +37773 common +personal +37777 common +37779 common +37782 personal +37787 personal +37790 common +37794 common +37799 common +37801 common +37803 common +37807 common +personal +37812 personal +37814 common +37817 common +37820 common +37822 common +37824 common +37829 common +37834 relative +common +37839 common +37841 common +demonstrative +37847 common +common +37851 personal +37853 common +personal +37859 personal +37863 personal +37865 common +37872 personal +37876 common +37878 common +personal +37883 common +37885 common +37889 relative +common +37894 personal +37898 personal +37903 personal +37907 personal +37910 personal +37912 common +37914 common +37918 relative +common +37924 personal +37929 personal +37933 common +37936 personal +37939 common +personal +37943 common +37945 personal +37947 demonstrative +37952 common +37954 common +37956 personal +37958 proper +37961 common +demonstrative +37967 common +demonstrative +37970 personal +proper +37973 personal +proper +37978 proper +37980 proper +37983 common +37987 personal +37991 common +37993 common +37997 proper +37999 proper +38004 common +38006 personal +38008 proper +38010 personal +38012 common +38016 common +38020 personal +personal +38026 personal +personal +38031 personal +38036 personal +38042 common +38044 common +38047 common +38049 personal +38052 common +personal +38056 personal +38059 proper +38061 common +38064 common +38068 personal +38070 common +38074 common +38076 common +38081 common +38086 personal +38092 demonstrative +38097 common +personal +38104 common +personal +38109 common +38111 personal +38113 common +38116 common +38122 personal +common +common +38126 common +38129 common +38132 demonstrative +38139 personal +38143 common +38146 common +38149 personal +38151 personal +38155 common +personal +38160 interrogative +38163 common +38167 common +38169 interrogative +38172 common +38176 common +38179 relative +38183 common +38188 common +38194 common +38197 relative +38201 personal +38204 common +38206 common +38209 relative +personal +38217 relative +38225 indefinite +38228 personal +38230 common +interrogative +38233 common +38240 personal +38243 common +interrogative +38253 common +38255 common +personal +38260 common +personal +38266 common +personal +38272 common +personal +38278 common +personal +38283 personal +38285 personal +38288 personal +38291 demonstrative +38299 personal +38303 proper +38305 interrogative +38307 personal +38311 proper +38313 common +indefinite +38317 proper +38319 proper +38321 common +38323 relative +38326 personal +38328 common +38335 common +common +indefinite +38341 common +demonstrative +38345 personal +38350 proper +38353 common +38359 proper +indefinite +38364 personal +38372 common +personal +38375 common +38377 common +38380 personal +38384 common +38386 personal +38388 common +38391 personal +38398 common +38401 common +38405 personal +38407 indefinite +38409 relative +38411 personal +38415 personal +38417 personal +38419 personal +interrogative +demonstrative +38430 common +38437 common +38439 personal +38442 personal +38444 proper +38447 personal +38454 personal +personal +38458 common +indefinite +38461 common +indefinite +common +proper +38466 personal +38469 common +38471 demonstrative +38473 common +38475 proper +relative +38481 common +38483 common +38486 common +personal +38490 proper +38494 common +38498 common +38501 personal +38504 common +personal +38507 personal +38512 personal +38514 personal +38519 personal +38521 common +proper +proper +38531 common +38536 proper +38539 common +38541 relative +38544 personal +38551 personal +38553 common +indefinite +38558 indefinite +38560 common +personal +38563 personal +common +38566 personal +38570 proper +38573 common +personal +38577 personal +38581 common +38584 common +personal +38588 common +personal +38591 common +personal +38596 personal +38599 common +38602 personal +38604 common +personal +38608 personal +38612 personal +38616 personal +38618 common +38622 personal +interrogative +38625 personal +38631 personal +common +38635 personal +38638 personal +38640 common +38643 personal +38646 common +38648 personal +38652 relative +38654 personal +38660 personal +common +38665 common +38669 common +personal +38672 personal +38675 common +38681 personal +38683 personal +38688 personal +38694 personal +38698 common +personal +38702 personal +relative +38705 personal +personal +38711 personal +38718 personal +38733 interrogative +38735 personal +38737 common +38740 common +common +38744 common +common +personal +38751 common +38753 personal +common +38757 personal +38761 common +38765 common +personal +interrogative +38770 common +38773 common +38775 common +38779 personal +38783 common +38785 personal +38791 common +38799 common +38801 indefinite +38803 personal +38806 proper +38808 common +38810 common +38813 common +38817 common +38819 common +38822 personal +38824 personal +38826 personal +38828 common +38830 personal +38832 common +38834 personal +38838 common +38840 common +38846 proper +38848 personal +38853 common +personal +38858 proper +38860 personal +38862 common +38865 personal +38867 proper +38870 common +38872 common +personal +38875 interrogative +38878 demonstrative +personal +personal +common +38886 common +common +personal +38891 common +38895 personal +38897 common +38899 common +38906 personal +common +38909 common +38913 personal +38917 personal +38920 personal +38922 common +personal +38926 relative +38930 common +personal +38937 personal +38939 personal +38946 personal +38951 common +38955 common +38959 common +38961 common +38969 common +personal +38984 common +38986 personal +38997 common +demonstrative +39007 personal +demonstrative +39010 common +indefinite +common +39015 common +39017 personal +39020 common +39023 personal +39025 common +relative +39029 personal +39036 common +39038 common +39043 common +39048 common +demonstrative +common +39053 common +39056 common +39059 personal +39063 common +proper +39068 proper +39070 proper +common +39076 common +39078 common +39080 common +demonstrative +common +common +39087 common +39090 common +39092 common +demonstrative +39096 personal +39101 common +39103 common +39106 common +proper +39111 proper +39113 common +proper +39118 common +39121 common +demonstrative +39125 personal +39130 common +proper +39135 proper +39138 common +39141 common +39146 common +39150 common +39155 common +39158 common +39160 common +39163 common +personal +39167 common +personal +39174 common +personal +39184 common +personal +39191 common +39194 personal +common +39200 common +personal +39206 common +indefinite +39215 common +39217 common +39219 personal +39225 personal +proper +39230 personal +39236 proper +39245 common +39249 common +39251 personal +39253 personal +39255 proper +39259 common +39262 common +39267 personal +39269 common +39271 common +39286 common +39291 personal +39295 personal +39297 proper +39301 common +39304 common +39307 common +39311 common +39314 common +39316 common +39319 demonstrative +39325 personal +39327 proper +39331 common +39334 common +39337 common +39340 common +39342 personal +39347 common +39352 common +39360 indefinite +39364 personal +common +demonstrative +39369 personal +39375 personal +39382 common +common +39386 personal +39389 common +personal +39394 common +39396 personal +39400 common +39402 common +39405 common +personal +39408 personal +39410 common +39415 common +39417 common +personal +39421 personal +39423 personal +39425 personal +39428 demonstrative +39431 common +39433 common +39437 personal +common +39440 common +39443 personal +39450 common +39453 common +39457 common +common +39461 common +demonstrative +39464 common +proper +39467 common +proper +39473 common +39476 common +39479 personal +39483 common +demonstrative +39486 personal +39492 common +39494 common +personal +39504 personal +39507 common +39510 proper +39515 personal +39519 personal +39521 indefinite +39524 common +personal +39527 relative +39530 common +39532 common +39535 personal +39540 common +personal +39544 personal +39547 common +relative +39550 common +39552 proper +39557 relative +39562 relative +39566 relative +relative +39570 common +39574 common +39577 relative +39580 common +39584 common +39588 common +39591 personal +39594 personal +39601 common +39604 demonstrative +39608 indefinite +39612 personal +interrogative +39621 common +39625 common +39628 personal +demonstrative +39633 common +39635 common +39640 personal +39646 common +39650 common +39652 common +personal +39659 common +39663 personal +39666 relative +39669 personal +39672 common +39675 common +39677 common +39680 personal +39683 common +39685 common +39689 personal +39692 common +39696 common +39698 common +39701 relative +39703 common +39706 common +39708 common +39710 personal +39716 common +39723 personal +39726 common +39729 common +39732 common +39737 interrogative +39740 interrogative +39745 common +39747 personal +39749 personal +39751 common +relative +39757 indefinite +39760 common +personal +common +39765 common +personal +39769 personal +39771 common +39775 personal +common +interrogative +personal +39780 common +39782 common +39784 personal +39788 personal +39794 common +39800 indefinite +39802 common +personal +39808 personal +39811 common +39813 personal +39815 common +indefinite +39819 common +39824 personal +39826 interrogative +39834 common +personal +39838 demonstrative +39841 personal +39843 common +39852 common +39856 personal +39860 common +personal +common +39868 common +39876 personal +39878 common +39880 demonstrative +39882 common +39884 common +personal +39888 personal +39890 relative +39892 interrogative +39897 personal +39901 common +39907 common +personal +39910 demonstrative +39912 personal +39916 common +interrogative +39921 common +interrogative +39926 common +39930 common +39933 common +39935 common +39938 common +39944 relative +39947 common +39949 common +39952 common +39954 personal +interrogative +39957 personal +39962 interrogative +39964 personal +39969 common +personal +39972 common +39978 interrogative +39985 common +39993 personal +39995 proper +39999 common +personal +40004 demonstrative +40008 common +40010 common +40016 common +40019 common +40022 interrogative +40024 personal +40027 personal +40030 interrogative +40033 interrogative +40039 demonstrative +40042 common +40044 common +40047 personal +40049 common +40053 demonstrative +40057 common +personal +40060 demonstrative +40062 personal +40067 common +40071 common +personal +40074 personal +40076 common +40080 personal +40083 common +40085 personal +common +40089 common +40093 common +40095 common +40099 common +40105 common +personal +40110 common +personal +40114 personal +40116 common +40120 common +40123 personal +40125 common +40128 common +personal +40134 common +40141 personal +40144 common +demonstrative +relative +40150 common +40154 personal +40159 personal +40163 personal +40172 common +40179 demonstrative +40181 demonstrative +40187 common +interrogative +common +40191 common +40198 common +personal +40201 personal +40205 relative +common +40210 common +40212 common +40217 proper +common +40220 personal +40222 common +demonstrative +40232 common +40234 interrogative +40238 common +40241 relative +40244 common +40247 common +personal +40252 common +40254 common +40257 common +demonstrative +relative +40264 common +personal +40269 personal +40275 personal +40277 personal +40282 common +demonstrative +40286 common +personal +40290 common +personal +40297 common +40300 common +40309 common +40311 common +demonstrative +40314 common +relative +40320 common +relative +40326 personal +40329 common +personal +40336 demonstrative +40338 common +40342 common +40344 common +personal +40353 common +personal +40364 common +40369 relative +40375 personal +40377 relative +40382 personal +40384 common +40388 common +40390 interrogative +40396 common +40403 relative +40408 common +40412 common +40414 personal +40418 common +40428 common +40437 common +40439 common +40441 common +40443 common +common +40446 common +40448 common +40451 common +common +40455 common +personal +40458 common +40461 common +40466 common +40469 common +40472 common +40476 common +40483 common +40487 common +40491 common +40493 common +40495 common +40498 common +40503 common +demonstrative +40509 interrogative +40512 personal +40522 common +personal +40525 common +40528 common +40530 common +40533 personal +40537 personal +40540 common +40543 common +personal +40547 common +40550 common +personal +40554 common +40556 personal +40569 indefinite +40571 personal +40573 common +40575 personal +40579 relative +40581 common +proper +40586 common +personal +40591 personal +40596 demonstrative +40604 demonstrative +40608 personal +40617 demonstrative +40622 relative +40625 common +40628 proper +40631 personal +40634 personal +common +40640 common +40643 proper +40646 personal +40656 demonstrative +40658 common +common +40661 indefinite +40665 common +personal +40670 common +40672 personal +40680 common +40683 common +40685 relative +40688 common +40691 common +demonstrative +40697 personal +40699 interrogative +40702 common +40708 personal +common +40711 personal +40713 demonstrative +40715 common +40717 relative +40720 personal +40723 common +40727 common +40735 personal +40742 common +40745 common +40748 common +common +common +40752 common +40767 personal +40769 proper +40773 personal +common +40777 common +personal +40781 personal +40783 common +40790 common +40794 common +40798 common +40801 proper +40804 common +40807 common +40810 relative +40815 personal +40821 common +40823 common +40826 personal +40828 common +40831 common +40834 personal +40836 common +40839 common +personal +40843 common +40846 common +40852 demonstrative +common +proper +40856 relative +40859 proper +40863 common +40867 common +demonstrative +40870 common +40872 common +40876 demonstrative +40878 personal +40883 personal +40887 common +40896 personal +40899 interrogative +40903 common +40905 common +40907 interrogative +40909 personal +40912 common +common +relative +40916 common +40919 common +personal +40926 common +40931 common +40935 common +personal +40940 interrogative +40943 common +40945 common +40948 common +relative +40951 common +40954 common +common +40958 relative +40964 common +40966 common +40969 common +40972 proper +40975 indefinite +personal +common +40986 personal +40992 common +40995 personal +41004 relative +41007 common +41011 common +41019 common +41021 common +41023 personal +41027 personal +41030 personal +41038 personal +41045 personal +41050 personal +41057 personal +41059 common +common +41064 common +41067 common +41069 common +41072 proper +41074 proper +41076 proper +41080 common +41083 common +41085 common +41087 personal +41093 common +41095 common +41098 common +41100 common +41105 common +41107 common +41112 relative +41118 relative +41122 personal +41124 common +41126 indefinite +proper +41129 personal +41135 proper +41137 personal +41141 personal +41145 common +demonstrative +41149 common +41151 common +41162 personal +41173 common +41176 proper +proper +proper +41182 common +41188 personal +41193 common +personal +relative +common +common +41199 personal +common +41203 common +41209 personal +41211 common +personal +41215 personal +41219 personal +41228 common +common +41235 personal +41237 common +indefinite +41240 common +41242 proper +common +41245 common +41247 personal +41250 personal +41253 common +indefinite +41258 personal +41262 proper +41268 proper +41272 common +41282 personal +41287 personal +41289 interrogative +personal +common +41293 common +41295 common +41301 personal +41303 common +41305 common +41311 demonstrative +41317 common +41321 common +41325 personal +41329 indefinite +41331 common +41336 common +41340 personal +41344 personal +41348 personal +41350 personal +41353 personal +41355 demonstrative +common +41361 common +41364 common +41374 common +41380 personal +41382 personal +41388 personal +common +41394 personal +41399 personal +41404 personal +41411 personal +41414 common +41416 common +41421 personal +41424 common +personal +41429 personal +41431 common +41436 personal +41438 personal +41441 common +personal +41445 common +41459 personal +41462 personal +41465 common +41469 indefinite +41473 demonstrative +41475 personal +41477 relative +41479 common +41482 common +41484 common +41488 personal +common +indefinite +41492 common +41500 common +personal +41503 common +41505 common +41523 personal +common +41528 common +41531 personal +41533 personal +41535 personal +41540 common +common +41547 personal +41549 personal +41551 personal +41556 common +41560 demonstrative +41567 common +41570 common +personal +demonstrative +41576 common +41579 common +personal +41587 common +41589 common +41604 common +common +41607 relative +41611 common +41616 common +41619 common +41623 common +41625 common +41631 personal +41633 common +41636 personal +41640 common +demonstrative +41645 personal +41647 common +41650 personal +common +41657 personal +41659 indefinite +41662 personal +41667 common +personal +41671 common +41674 common +41677 common +41680 common +41683 common +41688 common +personal +41693 personal +common +relative +41699 common +personal +41704 personal +41708 personal +common +41712 interrogative +41714 personal +41716 common +41722 common +41726 common +41731 personal +common +41741 personal +41745 demonstrative +41747 common +41756 interrogative +common +41760 common +41763 common +41772 common +41777 common +41780 personal +41785 personal +41788 common +41793 common +41798 personal +relative +41804 personal +41809 personal +common +41814 common +41819 common +41822 interrogative +41826 common +41829 common +41834 personal +41837 common +41843 personal +41846 common +41851 personal +41856 proper +41859 common +41862 demonstrative +41867 personal +41871 personal +41873 common +demonstrative +41876 interrogative +common +41879 personal +41882 common +41886 personal +41903 personal +41909 common +personal +41916 common +41922 common +41924 personal +41926 personal +41930 common +personal +41935 personal +41938 common +41941 common +41952 relative +41954 common +common +41958 interrogative +common +common +41965 common +41969 common +41973 common +41978 relative +41986 common +41989 personal +41993 common +relative +41998 personal +42000 common +42003 common +42005 common +42012 common +indefinite +42016 common +42021 personal +42023 common +common +42026 personal +42029 common +42031 common +42035 personal +42037 common +42042 common +42047 common +42050 common +42056 common +personal +42062 personal +42065 common +42069 common +demonstrative +42072 personal +42080 common +42082 common +demonstrative +42086 personal +42089 common +personal +42092 common +42097 common +personal +42101 common +relative +42105 common +42109 personal +42112 personal +42115 interrogative +42118 common +personal +42121 common +42123 personal +common +42131 common +personal +42135 personal +common +42140 common +42143 personal +42148 common +personal +42151 personal +42156 personal +42162 common +personal +42166 personal +42170 personal +42172 common +personal +42181 common +personal +42185 personal +42189 common +personal +common +42195 common +42198 personal +42203 common +personal +42208 common +42211 common +personal +42215 common +42220 personal +42223 common +42226 common +personal +42229 common +42232 common +42236 common +42244 demonstrative +42246 common +personal +42262 common +personal +42267 common +42273 common +42275 common +42277 common +42282 common +42285 interrogative +42287 demonstrative +42291 personal +42294 common +personal +42300 common +personal +42303 common +42308 personal +42318 common +personal +42322 personal +42328 common +42330 demonstrative +common +42333 personal +42336 common +personal +42340 personal +42343 common +42348 personal +42353 common +personal +demonstrative +42358 personal +42360 common +42362 common +42365 personal +42368 common +42372 personal +common +personal +42377 personal +42382 possessive +possessive +42392 common +personal +demonstrative +42408 common +common +indefinite +42413 relative +42415 common +42417 demonstrative +42419 personal +42424 personal +42427 personal +42429 personal +interrogative +demonstrative +42434 personal +42437 common +42439 common +personal +42449 personal +42451 common +interrogative +42456 common +personal +42460 common +42462 personal +42469 interrogative +42476 common +42478 personal +42481 common +personal +42488 common +42490 common +personal +42495 interrogative +42498 common +personal +42504 common +common +42509 personal +42511 personal +42513 common +42523 personal +interrogative +42530 common +common +42533 personal +42535 personal +42537 common +42544 common +42546 common +42548 common +42554 common +42556 common +demonstrative +42561 common +42563 common +42566 common +42568 personal +42571 personal +personal +42574 personal +42579 common +42581 common +42586 personal +42590 common +42615 common +42621 interrogative +personal +42634 interrogative +42636 personal +42638 common +42641 common +42661 common +42664 common +42667 demonstrative +42670 proper +42675 personal +42678 personal +personal +42683 personal +42686 common +42689 common +42692 common +personal +42697 common +42699 common +42702 common +42704 common +42707 common +42709 proper +42713 common +42715 common +42720 personal +42726 common +42729 common +42733 common +42735 common +42741 common +personal +42751 common +42755 common +indefinite +42761 common +42763 common +42766 common +42770 indefinite +common +proper +42776 common +personal +42787 common +42793 common +42797 common +personal +42806 personal +42809 common +42812 common +proper +42824 common +42827 common +personal +42831 common +42833 proper +42837 proper +42840 common +personal +42843 personal +42846 common +proper +42849 personal +42852 proper +42856 common +42858 common +personal +common +42864 common +personal +42870 common +demonstrative +42874 proper +common +42881 personal +42884 common +personal +42887 proper +42896 personal +42901 demonstrative +42903 personal +42905 personal +common +42915 personal +42921 personal +42927 personal +common +42931 personal +42934 common +42936 common +personal +42941 common +42944 personal +42948 personal +42952 common +demonstrative +42955 common +42958 proper +42960 proper +42963 common +42965 personal +42970 common +proper +42974 indefinite +42979 personal +42983 personal +42985 proper +42988 common +42993 indefinite +43002 common +personal +43008 common +43014 relative +43017 personal +43019 common +43024 common +personal +43030 common +43036 demonstrative +43039 personal +43043 common +personal +43046 personal +43051 personal +43056 common +43059 personal +43064 personal +43068 personal +43072 common +43074 common +43076 personal +common +43081 common +43084 common +43086 common +common +43091 common +demonstrative +43098 common +43102 personal +43104 interrogative +43106 personal +43108 common +43112 relative +43116 common +43118 personal +43125 personal +43127 interrogative +43132 personal +43139 demonstrative +43143 personal +43146 common +43148 common +43155 personal +43161 personal +43164 common +43167 relative +43177 proper +43179 personal +43183 proper +43185 proper +43188 personal +43190 indefinite +common +43195 common +relative +43200 personal +43202 common +43204 proper +common +43207 personal +43211 personal +43214 personal +43216 common +43222 personal +43227 personal +43233 common +43237 common +43241 common +43244 common +personal +43247 personal +43249 personal +43251 proper +43255 proper +43269 common +43271 common +43276 demonstrative +43279 personal +43283 common +personal +43286 personal +43291 proper +43295 common +43297 common +43299 personal +43305 common +43307 common +43309 common +43319 common +43321 common +43323 personal +43329 common +43331 common +43336 common +43338 common +43340 common +43347 personal +43359 common +43365 common +43369 common +43374 common +43376 common +43379 common +personal +43384 personal +43391 common +demonstrative +43398 common +proper +43405 common +43407 common +43409 common +43415 relative +common +43418 proper +43421 common +43425 common +43434 common +proper +43443 relative +common +43446 proper +43448 proper +43450 common +43452 common +43454 common +43462 relative +common +43465 common +43467 common +43470 demonstrative +43472 common +relative +43477 common +43480 common +personal +43484 common +43488 personal +43492 common +43501 common +proper +43504 relative +43507 common +personal +43511 personal +43514 relative +43517 personal +43519 personal +demonstrative +43522 common +43526 common +43551 personal +43553 common +43557 personal +43560 common +43564 common +43568 common +personal +43575 personal +43580 common +indefinite +43584 indefinite +common +43587 common +43591 common +43599 common +demonstrative +43604 personal +43607 personal +43610 common +personal +43616 common +43619 demonstrative +43622 personal +43626 common +43630 common +43636 personal +common +43640 demonstrative +43642 personal +43646 common +43649 personal +43653 common +43655 interrogative +43657 common +43659 common +43665 common +43668 common +43671 personal +43674 personal +common +43677 common +43681 personal +43683 personal +43687 common +personal +43690 common +43693 common +43695 common +43700 common +43703 common +43708 indefinite +43712 personal +43721 common +demonstrative +common +43732 proper +43736 common +43738 proper +43740 demonstrative +43742 personal +43745 common +43747 personal +43755 common +43758 common +43762 demonstrative +43764 common +43768 common +43771 relative +43775 common +43782 common +43786 common +43790 common +personal +43794 common +43796 personal +43800 personal +43802 demonstrative +43806 common +personal +43809 demonstrative +43814 personal +43819 personal +43823 personal +43826 common +43828 personal +43833 common +43835 personal +43838 proper +43840 personal +43844 common +43847 personal +43851 personal +43854 demonstrative +43857 common +43859 common +43862 personal +43864 relative +43868 common +43870 common +43872 common +43877 personal +43880 indefinite +common +personal +43884 common +43886 interrogative +43888 common +43893 personal +43895 proper +interrogative +personal +43906 common +43908 common +43920 common +personal +43924 common +43928 demonstrative +43932 common +43936 proper +43938 personal +43941 personal +43944 relative +43952 common +43955 common +43959 personal +43963 demonstrative +43972 personal +43974 proper +43980 common +43984 common +43986 common +43991 common +43993 common +common +44000 common +44002 common +44009 interrogative +44018 common +44022 common +44027 proper +44029 personal +44034 personal +44038 personal +44041 personal +44045 relative +44047 common +44049 common +44051 common +44053 common +44055 common +44058 common +44060 common +relative +44068 common +demonstrative +44073 common +44076 common +44084 personal +44088 proper +44096 common +44098 common +44100 common +44104 common +44114 personal +44117 common +44122 personal +44124 demonstrative +44129 common +demonstrative +44133 personal +44144 personal +44146 proper +44148 indefinite +44152 common +44156 common +44159 interrogative +44161 demonstrative +44164 personal +44166 proper +44168 proper +44173 proper +common +proper +44177 personal +44182 personal +44186 personal +44190 common +proper +44193 personal +44197 proper +44199 personal +44202 personal +44205 personal +44207 personal +interrogative +personal +44215 common +44220 proper +44222 personal +44225 common +personal +44228 personal +44234 personal +44237 common +44241 common +44244 common +44246 common +44251 proper +44254 common +common +44257 proper +44259 personal +44261 common +44263 personal +44269 proper +interrogative +44277 common +44280 common +44290 common +44293 personal +44295 demonstrative +44303 common +44306 proper +44309 personal +proper +44317 common +personal +personal +44327 personal +44337 common +44342 proper +44346 common +common +44351 personal +44359 indefinite +indefinite +44367 personal +44369 proper +44372 common +44374 common +demonstrative +44379 personal +common +proper +44386 common +44388 common +44396 personal +demonstrative +44400 common +44405 proper +personal +44409 personal +44414 common +44416 common +44420 common +indefinite +44425 common +44428 personal +common +44435 common +personal +44438 personal +44440 common +44444 personal +44447 relative +44451 common +personal +44454 personal +44457 common +44459 personal +44463 demonstrative +44466 personal +44472 personal +44475 common +44479 personal +44481 common +demonstrative +relative +44486 common +44489 indefinite +interrogative +44497 common +44499 common +personal +44502 common +44506 personal +44509 common +44516 common +44520 common +44526 common +44528 common +personal +44532 common +44536 demonstrative +44538 personal +44541 common +44548 common +44551 common +personal +relative +44557 common +44560 personal +44562 common +44566 relative +44571 relative +44575 personal +44578 common +personal +44581 personal +44583 common +44586 personal +44588 common +44591 relative +44596 relative +44601 interrogative +44604 personal +44606 common +44608 common +44610 personal +44613 common +personal +44622 personal +44624 common +44630 common +44634 personal +common +44638 common +44640 personal +44652 relative +44658 personal +demonstrative +44663 personal +44666 personal +44671 personal +44673 personal +44676 demonstrative +44681 proper +44687 proper +44689 proper +44692 common +44695 common +44699 common +44705 common +44707 relative +44711 common +44713 relative +44715 common +44720 personal +44724 indefinite +personal +44728 interrogative +44734 common +personal +common +44745 personal +44748 personal +44750 common +44753 common +personal +44756 personal +interrogative +44760 common +44766 common +personal +common +44772 personal +44775 proper +44778 personal +44780 common +44783 common +44786 proper +44789 personal +44792 common +personal +44796 common +44799 personal +44803 common +44805 common +44807 common +44811 common +44813 common +44817 common +common +44822 relative +44824 common +44830 common +common +44833 common +44835 common +common +44838 common +44842 indefinite +44844 proper +44847 common +44850 personal +common +44854 common +personal +44860 personal +44862 demonstrative +44865 common +44872 common +44875 personal +44882 common +demonstrative +44885 personal +44888 common +44893 common +personal +44897 common +44899 personal +44904 personal +common +personal +44909 personal +44912 personal +44916 personal +44919 common +personal +44922 personal +44926 common +44928 common +44930 personal +44932 relative +44936 common +44938 common +personal +44950 personal +44955 common +personal +common +common +44960 personal +personal +44963 common +common +44970 common +44976 common +44979 common +44981 personal +44987 common +44992 interrogative +44996 common +44999 personal +45006 common +45008 personal +45010 common +45018 common +45021 common +45029 personal +45031 personal +45033 interrogative +common +demonstrative +45038 interrogative +45042 personal +45044 common +demonstrative +45050 personal +45052 personal +personal +common +45057 personal +45059 common +proper +45062 common +45066 common +45071 personal +45077 common +45080 interrogative +45083 personal +45088 common +45090 common +45093 personal +45097 proper +common +45107 proper +45109 personal +45111 personal +45113 personal +45115 interrogative +common +demonstrative +45123 common +45126 common +demonstrative +common +45130 common +45133 personal +common +45137 common +45140 common +45144 common +common +45149 common +45151 common +45153 personal +45156 common +45158 personal +45164 common +45181 demonstrative +45187 common +45189 common +interrogative +45194 common +personal +45199 demonstrative +45203 personal +45205 common +45208 personal +45210 demonstrative +45213 common +45215 personal +45217 personal +45220 common +45223 personal +45226 common +45229 interrogative +45231 personal +45233 common +45235 common +45240 common +demonstrative +45245 common +45255 personal +45258 interrogative +45262 demonstrative +common +relative +45268 demonstrative +45271 common +common +45277 demonstrative +45279 common +45284 relative +45287 personal +45291 common +45294 common +45297 personal +45299 common +45301 personal +45303 common +45307 common +45312 personal +45315 common +demonstrative +45322 personal +45327 personal +common +45331 personal +45333 common +45336 common +45338 common +45341 personal +45343 common +45353 common +45356 common +45358 common +45360 common +45363 personal +proper +common +45371 personal +45373 common +45376 personal +45378 personal +common +45381 interrogative +common +45384 common +45388 proper +45393 personal +45397 proper +proper +45402 common +45404 common +45409 personal +common +45413 common +45418 common +personal +45423 indefinite +45425 proper +45428 common +45432 personal +45434 common +proper +45437 personal +45439 indefinite +common +45443 common +45445 demonstrative +45451 common +personal +45454 common +45457 common +45459 common +personal +45463 common +45469 common +45479 personal +45487 common +45493 common +45497 common +45500 common +interrogative +personal +common +45509 personal +common +45513 personal +45515 proper +45517 common +45519 common +demonstrative +45528 common +demonstrative +45533 common +45550 common +common +45554 common +common +45563 proper +45567 common +45570 common +45572 common +proper +45575 common +proper +45578 common +proper +45581 common +45589 personal +45593 indefinite +45595 common +45597 common +45604 personal +45609 personal +45613 proper +45615 proper +common +45618 personal +proper +45622 common +common +45625 common +45627 common +personal +45632 personal +45638 personal +common +45641 common +personal +45644 proper +personal +common +45650 personal +common +45657 common +45660 common +45664 common +45669 common +45672 common +45675 common +45677 common +45680 common +45682 common +45685 common +relative +45689 common +45693 common +45696 demonstrative +45699 common +45707 common +45709 common +personal +45714 indefinite +45725 personal +45729 demonstrative +45737 demonstrative +45741 personal +45745 common +45747 demonstrative +45750 common +personal +45754 common +relative +45759 indefinite +45765 common +45768 common +45771 demonstrative +relative +45775 common +45777 relative +45781 common +common +relative +45788 personal +45790 common +45793 demonstrative +45796 interrogative +45798 common +45801 demonstrative +45814 common +personal +45817 personal +45821 common +45826 personal +45830 common +45832 common +45837 demonstrative +45844 common +45847 personal +45849 common +45851 common +45853 common +45855 common +45857 common +45861 common +common +45864 common +45867 common +45870 common +common +45876 demonstrative +45880 personal +45882 common +personal +45889 common +45891 common +45894 common +45896 common +45899 common +personal +45902 personal +45904 common +45909 common +personal +45915 personal +45917 personal +common +45920 common +relative +45930 personal +45935 common +45937 common +45945 personal +45953 common +personal +45956 common +45959 common +personal +45966 common +personal +45970 common +personal +45977 common +proper +45984 common +personal +45990 proper +45994 common +45999 personal +46005 common +46009 personal +46011 common +common +demonstrative +46023 common +46029 demonstrative +46031 common +46034 common +46038 common +46040 common +46042 common +demonstrative +46046 common +common +46052 common +46055 proper +46059 common +46061 relative +46063 common +common +46067 common +46069 common +46071 common +46073 common +46077 common +common +common +46081 common +common +common +46085 common +46087 common +46089 common +46091 common +46095 common +46098 common +46100 common +46106 common +46108 common +46111 common +46113 common +46115 common +46119 demonstrative +46125 common +personal +46130 common +personal +46134 common +personal +46138 common +46142 common +46148 personal +46154 common +46158 personal +46161 demonstrative +46168 common +46170 common +46173 personal +46179 common +demonstrative +46186 common +46189 common +46193 common +personal +46200 personal +46204 personal +46206 common +46208 common +46210 common +46212 common +46217 personal +46220 common +demonstrative +46223 common +46231 common +46234 common +46239 common +46244 demonstrative +46253 common +46255 common +46260 common +46266 common +46271 common +46274 common +46278 common +46281 personal +46286 personal +46290 common +46295 common +46299 common +46302 common +46306 personal +46310 common +46313 proper +46315 proper +46318 proper +46322 common +46329 common +46331 common +46334 personal +46336 personal +46341 personal +common +46348 common +46351 personal +46353 common +personal +46358 common +46361 relative +46365 common +46368 proper +46370 proper +46374 personal +46376 common +46382 personal +46389 personal +46392 personal +46395 common +46397 personal +common +common +common +46403 personal +46406 common +46408 relative +46413 common +46415 common +46417 personal +46419 common +46423 common +46426 common +46429 common +personal +46433 personal +46435 common +46445 personal +46449 common +46454 common +46458 common +46460 personal +46464 personal +common +46467 demonstrative +46469 common +46472 personal +46475 personal +46479 personal +46485 personal +46487 relative +46491 common +46493 common +46496 common +46500 demonstrative +46504 personal +46507 personal +46516 common +46518 common +46520 relative +46522 common +46524 common +46528 common +46533 personal +46535 demonstrative +46538 common +personal +46542 personal +46544 demonstrative +46548 possessive +common +46552 common +46560 common +46563 common +personal +demonstrative +46567 common +46570 personal +46575 common +46578 personal +46580 personal +46583 common +46587 common +46589 common +46597 common +demonstrative +46600 relative +46603 personal +46607 personal +46610 interrogative +46613 personal +46615 demonstrative +46621 personal +46623 common +46625 interrogative +personal +46633 personal +46635 common +46637 common +46639 personal +46643 personal +common +46647 personal +46654 personal +46666 interrogative +46677 personal +46680 personal +46686 personal +46691 personal +46694 common +personal +personal +46698 personal +46701 personal +46703 common +personal +common +46712 common +personal +46716 common +personal +46721 common +46724 common +46726 proper +46728 proper +proper +46732 proper +46734 personal +46739 common +46741 personal +46744 personal +46749 common +personal +46752 personal +indefinite +46757 common +personal +46762 personal +common +46765 personal +46770 common +46773 common +46779 personal +proper +46784 common +46787 personal +46793 personal +46796 personal +46798 common +46800 common +46802 common +46804 indefinite +46812 personal +46817 common +46821 common +46828 common +personal +46832 common +46835 personal +46838 demonstrative +46848 personal +46853 personal +common +46859 common +46861 common +46867 personal +46875 common +46878 common +46880 common +46883 personal +46886 common +46891 common +46893 personal +46898 common +46900 personal +46903 personal +46905 common +common +46910 common +46913 common +46917 demonstrative +46919 common +46921 personal +46925 common +personal +46929 possessive +46933 personal +common +46936 common +46938 personal +46942 common +46948 common +personal +46951 common +common +46956 common +46961 common +46965 common +46968 personal +46971 common +46974 personal +interrogative +46983 common +46985 personal +46988 common +46992 proper +46997 personal +47001 proper +47003 personal +47005 proper +47007 personal +proper +common +47011 common +47013 common +47018 personal +47023 common +47027 common +47031 indefinite +47033 personal +47035 common +47037 common +47041 common +personal +47048 proper +47052 demonstrative +47056 common +47058 personal +47061 proper +47066 personal +common +47069 common +47076 common +47079 common +47081 common +47083 common +47085 personal +47087 personal +47094 common +47096 personal +47098 demonstrative +47100 personal +47102 common +47105 common +47107 common +47110 personal +47116 common +47118 common +47121 proper +47126 common +47130 common +47135 proper +47137 personal +47139 common +indefinite +47142 personal +47146 common +47149 personal +47152 demonstrative +47154 personal +47162 personal +common +47169 personal +47172 personal +47174 personal +47178 proper +47180 common +47186 common +47189 indefinite +47193 common +47195 demonstrative +47197 personal +47206 proper +common +47210 relative +47216 personal +47218 common +47222 common +47225 proper +47229 proper +47231 common +47233 common +47236 personal +47239 common +47243 personal +47252 common +47255 personal +47257 personal +47261 personal +47265 interrogative +47269 personal +47276 personal +47280 common +47283 common +47285 common +47287 common +47289 common +47292 personal +47295 common +personal +47299 personal +47302 proper +47304 personal +47307 personal +47309 personal +47327 common +47329 common +47333 common +47335 common +47340 personal +47343 common +47345 common +47349 personal +47351 personal +47354 personal +47359 interrogative +47362 common +common +47365 personal +47369 common +personal +47375 common +personal +47378 personal +47381 proper +47385 personal +47388 demonstrative +47391 common +personal +47395 common +proper +47400 personal +proper +common +47406 proper +47408 personal +47410 personal +47413 common +47419 personal +47421 personal +47425 proper +47429 common +47432 common +47438 common +demonstrative +47447 common +47452 proper +47457 proper +47461 proper +47466 common +47474 common +proper +47478 personal +47480 proper +47483 personal +47485 proper +47487 demonstrative +47489 common +47492 proper +47495 proper +47503 common +47505 personal +47510 personal +47514 indefinite +common +47517 personal +47521 personal +47523 common +47526 personal +47529 personal +47533 common +47536 common +47539 personal +47542 proper +47544 personal +47547 common +personal +47552 common +47555 personal +47557 proper +47563 proper +47566 proper +47568 personal +47570 common +47572 personal +47576 common +47579 personal +47581 proper +47584 common +47587 common +47590 common +47593 personal +47595 personal +47597 common +demonstrative +47602 common +47605 personal +47607 personal +47613 common +demonstrative +47616 relative +47619 personal +47622 proper +47625 personal +47627 personal +47632 common +47635 personal +47638 personal +47645 demonstrative +47648 personal +47650 proper +relative +47655 common +indefinite +47660 common +47662 common +47665 common +47669 proper +47671 personal +47675 proper +47682 personal +47688 personal +47690 interrogative +47693 demonstrative +47696 common +47699 personal +47702 personal +47707 common +47710 personal +47715 common +personal +47718 proper +47722 common +personal +47728 common +47730 common +47733 common +relative +47738 proper +47741 common +personal +47746 personal +47748 proper +indefinite +proper +47753 common +47755 personal +47757 common +47761 proper +47764 personal +47766 common +47768 common +47770 common +relative +47775 personal +47779 personal +proper +47782 common +proper +47787 personal +47790 personal +47795 common +personal +47800 common +47802 relative +47809 common +relative +47814 common +relative +47822 common +47825 personal +47828 common +47830 personal +47835 common +demonstrative +47841 interrogative +47850 personal +47857 common +47860 common +47863 personal +47868 relative +47872 relative +47877 proper +47879 common +47881 personal +47885 interrogative +47890 common +personal +47893 common +47897 common +47903 common +47908 personal +47910 demonstrative +47913 proper +47915 common +47920 personal +47923 common +47925 common +47927 personal +47931 personal +47934 common +47938 personal +47942 common +47944 personal +47946 common +47949 demonstrative +47956 personal +47958 personal +47961 proper +47963 personal +47965 personal +47971 personal +47975 personal +47977 common +47982 common +47986 personal +47990 relative +47994 demonstrative +48000 proper +48002 personal +48007 common +personal +48011 personal +48013 personal +48017 personal +48021 common +48026 common +48029 common +48034 common +48036 common +48039 common +48044 common +48046 common +48050 common +48053 proper +48055 common +48057 common +personal +48061 common +personal +48064 demonstrative +48069 common +48075 common +48079 common +demonstrative +48089 common +demonstrative +common +48097 common +48106 personal +48108 common +48111 personal +48114 proper +48116 demonstrative +48119 common +common +proper +48123 common +common +48128 demonstrative +48133 common +48136 common +personal +48139 proper +common +48143 relative +48146 common +48148 common +demonstrative +48152 proper +48155 common +48157 proper +48161 personal +common +48165 personal +48167 common +48176 common +common +48180 common +48185 common +relative +48191 proper +personal +48195 common +48200 common +personal +48205 common +48207 common +48211 common +48215 common +48220 common +common +48225 common +48228 relative +48230 common +48234 common +48238 common +48244 common +48246 common +proper +48253 personal +48255 demonstrative +48258 common +48261 personal +48263 common +48268 personal +48272 common +48275 common +48278 personal +interrogative +48294 personal +48299 proper +48304 common +48306 common +48309 common +common +48317 common +48322 common +personal +48328 common +48330 demonstrative +48341 proper +proper +48344 proper +48346 proper +48348 proper +48353 personal +48357 common +demonstrative +48362 personal +48364 common +48366 common +demonstrative +48370 personal +48373 proper +48378 common +48383 common +48388 personal +48396 personal +48398 personal +48400 common +48404 common +48406 common +48409 proper +relative +common +proper +48414 personal +48417 personal +48422 demonstrative +48428 personal +48432 personal +proper +48436 personal +48439 common +personal +48445 personal +48449 personal +interrogative +48452 common +demonstrative +relative +48457 personal +48465 common +proper +48469 personal +personal +48473 proper +48480 personal +48483 common +demonstrative +48487 personal +interrogative +48492 personal +48495 proper +48498 relative +48500 common +common +48504 common +48506 common +48509 common +48513 common +48517 personal +48519 common +48522 common +personal +48525 common +common +48529 personal +48531 personal +48534 personal +48540 proper +48546 demonstrative +48548 demonstrative +common +48552 relative +demonstrative +48557 common +indefinite +48560 personal +48562 personal +48567 common +48572 common +personal +48577 common +common +48580 relative +48582 personal +48586 indefinite +48589 personal +48592 common +48599 common +48602 personal +48606 personal +48609 personal +48615 common +48620 relative +48623 common +48626 demonstrative +48629 proper +48634 common +personal +48639 proper +48644 common +48646 personal +48650 common +48653 personal +48658 common +48662 personal +48668 personal +48672 personal +48675 common +48681 common +48687 personal +48693 personal +48695 personal +48698 common +48703 personal +48705 personal +48707 common +48711 personal +48713 personal +48717 personal +48721 personal +48724 common +personal +48729 personal +48732 personal +48735 common +48738 personal +48740 common +48743 personal +48745 common +48748 proper +48757 personal +48763 common +48766 proper +48768 personal +48773 common +48777 personal +48780 common +48782 common +48784 demonstrative +personal +48787 personal +48791 personal +48794 personal +common +personal +48803 common +48807 personal +interrogative +48813 interrogative +common +48818 common +personal +48822 common +personal +48826 common +personal +48829 personal +48831 personal +48833 personal +48837 common +common +48840 common +48844 personal +48848 demonstrative +48851 personal +48853 common +48856 common +48860 personal +48863 common +48867 personal +48869 indefinite +48875 personal +common +48878 common +48882 personal +48887 personal +demonstrative +48890 common +personal +relative +48895 personal +48899 personal +48908 common +proper +48912 common +48914 common +48916 personal +48919 personal +48921 common +48925 common +48928 personal +48934 proper +48941 common +48946 common +personal +common +48950 common +common +48955 common +48958 proper +personal +common +demonstrative +48964 personal +48967 common +48969 common +personal +48972 personal +48974 personal +48978 common +48980 relative +48983 common +common +48987 personal +48990 proper +48994 common +personal +48997 personal +49003 personal +personal +49007 personal +49012 common +49014 personal +49016 personal +49019 proper +49021 common +49032 common +49034 common +49037 common +49040 common +49044 common +49046 common +49049 common +demonstrative +49053 common +49056 common +49059 personal +49063 personal +49067 relative +49070 personal +common +49075 common +49078 common +49080 common +49083 common +49086 common +49090 common +personal +49095 common +49098 common +common +personal +proper +demonstrative +49105 common +49110 common +49115 personal +49118 demonstrative +49120 common +49126 common +49128 common +49131 relative +49134 common +49139 common +49142 common +49146 common +49148 personal +49152 common +personal +49163 personal +49167 relative +49169 personal +49171 common +common +common +49175 personal +49180 common +personal +relative +49185 common +49188 common +common +49192 common +common +49196 common +49200 common +common +49206 personal +49210 common +personal +common +49216 common +49218 common +49220 common +proper +49224 personal +49228 demonstrative +49230 relative +49234 personal +49237 personal +49241 personal +49246 common +personal +personal +49252 common +49254 common +49257 common +49259 proper +49262 common +49265 common +49267 proper +proper +49270 common +49275 common +49280 common +49282 common +demonstrative +49286 demonstrative +49289 common +49291 proper +49295 personal +49299 proper +common +49302 proper +49305 personal +personal +interrogative +49317 personal +49321 proper +49324 personal +49326 interrogative +personal +proper +49335 common +49337 personal +49343 personal +interrogative +49347 common +49351 personal +interrogative +49355 personal +49357 personal +common +49365 common +common +49369 proper +49371 common +49377 proper +49380 personal +49383 personal +49385 interrogative +49388 personal +49392 proper +49394 proper +49397 common +49399 personal +49401 proper +49403 personal +49406 common +49408 personal +49410 relative +personal +49416 personal +49418 relative +49421 personal +49425 personal +49427 common +49429 common +demonstrative +49432 proper +49436 proper +49441 proper +49446 proper +49449 personal +49454 common +49456 common +49460 common +49462 common +demonstrative +49466 relative +personal +49470 personal +49472 common +relative +49475 personal +49479 personal +49481 personal +49484 personal +49489 proper +49491 demonstrative +49493 personal +49495 common +49499 proper +49504 common +49507 common +49509 common +49513 personal +personal +49517 personal +49521 personal +49524 common +demonstrative +personal +49530 relative +49533 common +49538 personal +demonstrative +49544 common +49546 personal +49551 demonstrative +49554 common +49556 common +49562 proper +49566 common +personal +49572 proper +49577 common +49579 common +49584 common +personal +49590 proper +49593 proper +49597 personal +49600 personal +interrogative +49606 personal +common +relative +49611 common +49615 personal +49627 personal +49630 common +demonstrative +common +49637 proper +49639 common +proper +proper +49649 proper +49652 personal +49654 demonstrative +49657 common +49660 proper +49663 personal +49666 proper +relative +49670 proper +49672 personal +49675 proper +49677 personal +49679 proper +49681 personal +49683 proper +49685 common +proper +personal +49689 proper +relative +49692 proper +49699 proper +49702 proper +49705 personal +49707 proper +49709 personal +49713 proper +49715 proper +49718 common +proper +49721 proper +49723 proper +49725 proper +49728 personal +relative +49731 proper +49734 common +49737 common +49739 proper +common +49742 proper +49745 proper +49748 personal +proper +49751 proper +49754 indefinite +49757 personal +49759 proper +49764 proper +49766 proper +49769 personal +49773 personal +49776 proper +49778 relative +common +49783 personal +proper +49786 personal +49789 proper +49792 personal +49795 personal +proper +49801 common +personal +49805 personal +proper +common +personal +49811 common +49813 common +personal +common +49817 proper +49820 proper +49823 personal +49826 personal +49829 personal +49832 common +49835 demonstrative +49839 personal +49843 personal +49846 common +49850 common +49852 common +49858 common +49860 common +49863 common +49866 common +49869 proper +49871 proper +49875 common +49877 proper +49883 proper +49886 common +personal +49890 common +49893 common +49896 common +49898 proper +49900 personal +common +49906 personal +49908 proper +interrogative +personal +49912 personal +common +49917 common +personal +49921 common +personal +49924 common +indefinite +49927 relative +49929 personal +49936 common +49940 common +49945 common +49950 personal +49952 proper +49955 common +common +49959 personal +49964 personal +49970 common +49978 common +49980 common +common +49991 common +49995 common +49998 common +50000 common +50003 personal +50005 common +50009 common +50016 personal +50020 common +50023 demonstrative +common +50026 common +50029 proper +50031 proper +50033 proper +50037 common +personal +50042 personal +50044 common +personal +50047 demonstrative +50050 proper +personal +50054 common +personal +50058 common +50061 common +personal +50068 common +50073 common +50079 proper +50081 proper +50089 common +50091 common +50093 common +50096 common +50100 common +50102 common +50110 common +50113 common +50116 common +50118 common +50122 common +50127 common +50131 demonstrative +50136 common +50138 common +personal +common +common +50144 common +personal +50150 common +50152 common +personal +50155 personal +50162 personal +interrogative +common +50166 personal +50168 demonstrative +50171 proper +50174 personal +50177 common +demonstrative +50182 common +50184 personal +50192 common +50195 common +demonstrative +50198 personal +50201 common +50203 personal +50205 demonstrative +50209 common +50211 common +personal +50220 common +personal +50223 demonstrative +50228 common +50231 common +relative +50235 proper +50241 proper +50244 common +50247 common +50252 common +personal +50255 personal +50257 common +relative +50261 personal +proper +50265 personal +personal +50269 personal +50275 common +50278 indefinite +50282 common +50284 personal +50286 interrogative +50290 common +50293 common +50296 proper +common +50300 proper +common +personal +demonstrative +50306 personal +common +50310 personal +common +50315 common +50317 common +50321 demonstrative +50323 common +relative +personal +50332 common +50334 personal +50336 proper +50339 personal +50343 personal +50346 indefinite +50353 common +50355 common +50358 personal +50360 proper +50363 common +50365 common +50371 common +50373 common +personal +50380 proper +50384 personal +50387 indefinite +50390 common +50392 common +50398 common +50400 common +50405 common +common +50413 common +common +50420 personal +50422 personal +50426 common +50432 common +personal +50450 common +50452 proper +50455 personal +50458 demonstrative +50461 proper +50464 personal +personal +50468 common +50470 proper +50472 demonstrative +50478 personal +50480 relative +50484 relative +50489 common +personal +50497 personal +50504 personal +50513 common +50519 common +50522 common +50524 common +50527 proper +50530 common +50538 common +50540 common +50546 personal +50548 common +50554 common +50556 common +50559 common +50568 personal +50573 common +50579 common +50581 common +50584 common +50588 common +50593 common +50595 personal +50599 personal +50612 common +50615 common +50617 common +50619 demonstrative +50622 common +50625 common +50629 common +50633 common +50636 common +50639 common +50643 personal +50645 common +50653 common +50659 common +50664 common +personal +50670 common +50674 common +50677 personal +50679 common +50682 common +50686 demonstrative +50689 proper +50692 common +personal +50697 common +50702 personal +50709 proper +50711 proper +50714 proper +50716 common +50730 common +proper +50734 common +50737 common +proper +50742 common +50747 proper +50750 personal +common +relative +50755 personal +50758 proper +relative +personal +50763 demonstrative +50769 personal +50771 proper +50776 common +50783 personal +50786 common +personal +personal +personal +50795 personal +50797 proper +50803 demonstrative +50807 common +common +50814 common +50819 personal +common +50824 common +50826 common +50828 demonstrative +50830 common +50832 possessive +50835 demonstrative +50838 personal +50850 common +50853 common +50858 common +50863 common +50868 relative +50872 demonstrative +50876 common +personal +50882 personal +50884 common +50888 common +50892 relative +50895 common +50897 common +50899 common +50904 common +50907 common +50909 common +50912 common +50918 common +personal +50924 common +50926 common +50932 common +50935 common +50938 common +50940 common +50943 personal +50948 proper +50952 proper +50954 proper +50956 common +50961 proper +50963 proper +personal +50969 common +personal +50973 proper +50979 proper +50982 personal +50986 proper +50990 common +50992 proper +50994 proper +50997 common +relative +51000 proper +proper +51003 common +personal +51008 common +51010 proper +51013 proper +51017 common +51022 common +common +51028 common +51031 proper +51033 common +51035 personal +51037 proper +51039 personal +51043 common +personal +51048 common +51050 common +51054 personal +51056 common +51058 proper +51060 personal +51064 personal +common +proper +51074 proper +51076 proper +51079 personal +51083 common +51085 common +51087 interrogative +51091 personal +51093 personal +51096 personal +51098 personal +51102 personal +common +51106 personal +common +51109 common +51113 common +51120 common +51124 personal +51128 common +personal +proper +relative +51133 personal +51135 common +51137 personal +51139 personal +51143 common +personal +51147 common +personal +51150 proper +51153 personal +51159 common +demonstrative +51165 relative +51169 common +relative +personal +51173 personal +51179 common +51182 common +relative +51185 personal +51188 personal +common +common +51193 common +51197 personal +51199 common +common +51202 personal +demonstrative +51205 common +51214 personal +51218 common +personal +51225 common +51230 common +51232 personal +51234 proper +51238 common +51243 common +51246 relative +51251 personal +common +demonstrative +51257 personal +51259 common +common +51263 common +51265 personal +51267 common +personal +51271 common +demonstrative +51275 personal +51279 proper +51282 common +51287 personal +51289 proper +51291 personal +common +51295 common +51300 common +demonstrative +51304 proper +51307 common +personal +51310 relative +51313 personal +51315 relative +51319 common +51326 common +51333 common +51336 common +51338 common +51340 common +51344 common +demonstrative +51349 personal +common +51352 common +51357 common +51359 common +51363 personal +51365 common +51368 proper +51371 proper +51375 demonstrative +51377 personal +51380 personal +51382 proper +personal +51386 personal +51390 demonstrative +51393 common +personal +51399 common +51404 interrogative +51407 interrogative +51410 personal +51414 common +personal +51417 common +51422 common +51426 common +51429 common +relative +51432 personal +51434 relative +51437 demonstrative +51440 proper +51444 common +51448 personal +51453 personal +51455 common +51457 common +51462 personal +personal +common +51467 relative +personal +51474 common +51476 personal +51478 indefinite +51480 personal +51483 personal +51485 proper +possessive +common +51492 common +51495 personal +51498 personal +51500 common +51502 personal +51510 common +51514 personal +51517 common +personal +51522 common +51527 common +51531 common +51535 common +51537 common +51549 demonstrative +51551 common +51563 personal +51565 personal +51567 relative +51569 personal +51574 personal +51577 common +personal +51583 common +demonstrative +51587 proper +51590 personal +51593 common +51595 common +51599 personal +51601 relative +51607 personal +51609 proper +51611 personal +51614 personal +51619 common +51626 common +personal +51630 common +51636 possessive +common +51640 personal +51645 demonstrative +51649 common +51651 common +51656 common +51661 proper +51663 personal +proper +51667 common +51671 common +common +51680 proper +51682 personal +51687 relative +51690 proper +51693 common +51696 personal +51700 common +51706 proper +51708 proper +51712 common +common +51716 indefinite +51718 relative +51720 common +51723 proper +demonstrative +51727 proper +51731 proper +51734 proper +51737 personal +51744 personal +51746 common +51753 proper +51755 personal +51758 common +51760 common +51767 personal +51770 common +51775 common +personal +51778 personal +51780 proper +51783 common +personal +51788 common +51790 common +relative +51793 personal +51795 proper +51800 personal +51803 common +51805 personal +51809 common +personal +51815 common +51817 personal +51819 relative +51824 personal +51827 common +51830 personal +51832 common +51836 common +51838 demonstrative +51840 common +51842 relative +51844 personal +51846 proper +51848 common +personal +51853 personal +51856 common +personal +51861 demonstrative +51863 common +51866 proper +51870 proper +51873 proper +51875 demonstrative +51877 common +51882 proper +51884 proper +51889 proper +51893 common +51897 proper +51899 common +51902 demonstrative +51904 common +51913 common +common +51916 common +51918 common +51922 common +51926 common +51933 common +51935 common +51941 common +51944 indefinite +common +51950 common +51954 common +personal +51957 proper +demonstrative +51965 common +51969 personal +51974 personal +51977 common +common +51985 common +51987 personal +51990 common +51993 relative +51995 personal +51998 personal +52001 personal +52003 proper +52007 common +personal +52016 common +52020 common +personal +52026 common +52028 demonstrative +52030 common +52037 common +52042 personal +52045 common +52049 personal +52052 personal +52054 demonstrative +personal +52059 common +personal +52064 personal +interrogative +52068 common +52071 personal +52080 interrogative +52084 proper +52086 common +52090 common +52092 demonstrative +52094 personal +52096 proper +52102 personal +52111 indefinite +personal +52116 common +52122 proper +52126 personal +52130 demonstrative +52135 proper +52137 demonstrative +52140 common +52144 personal +52146 common +personal +52151 personal +52155 demonstrative +52158 personal +52167 common +52170 common +52174 common +52176 personal +52179 common +52183 proper +52186 personal +52190 personal +52194 common +52197 personal +52202 indefinite +52204 common +52208 relative +demonstrative +52211 demonstrative +52214 common +52219 common +52222 common +52225 personal +52227 relative +personal +52232 demonstrative +common +52235 personal +52237 personal +52242 common +52251 common +relative +52258 common +52263 common +52267 common +52272 common +52276 common +52281 common +52285 common +52288 personal +52292 personal +52296 common +personal +52303 personal +52305 common +52309 common +52316 common +52319 common +52323 personal +52326 common +52335 common +52337 common +52339 common +52347 common +52349 common +52351 personal +52355 common +52357 common +52360 personal +52362 common +52364 personal +common +52368 common +common +52373 demonstrative +52376 common +52378 relative +52383 common +52386 common +personal +52395 common +common +52402 common +common +52406 personal +52409 personal +52416 common +52418 possessive +52425 common +52427 possessive +52430 common +52433 personal +52435 personal +52438 personal +52440 common +personal +52450 personal +52457 common +relative +52461 personal +personal +52465 proper +52469 common +52471 personal +52474 common +52476 common +52479 demonstrative +52482 personal +52484 demonstrative +52487 common +52493 personal +52497 common +52500 common +personal +52503 personal +52506 common +52509 proper +52512 common +relative +52515 personal +52517 common +52520 personal +personal +52523 common +relative +52528 personal +52531 common +personal +52537 personal +common +demonstrative +52542 personal +52544 common +personal +52549 common +personal +52556 common +personal +52559 personal +52562 relative +52564 demonstrative +demonstrative +personal +52571 common +52573 personal +52576 personal +common +52581 demonstrative +52586 personal +52592 personal +52594 common +52596 common +52598 common +52603 personal +52606 common +52608 common +52612 personal +personal +52617 common +52619 common +personal +52624 personal +52630 common +52633 demonstrative +52637 personal +52639 common +52641 personal +52645 common +52650 common +52656 personal +52658 personal +52661 common +52665 personal +proper +52668 relative +personal +52674 proper +52677 personal +52680 personal +demonstrative +52686 demonstrative +common +52692 possessive +common +52696 demonstrative +52699 proper +52702 common +52704 proper +52706 proper +52709 personal +common +52715 common +relative +52725 common +proper +52732 common +personal +52738 common +52740 common +52745 proper +52748 common +52753 common +52756 personal +52759 proper +52762 common +52765 demonstrative +52767 demonstrative +52770 personal +52772 personal +52774 interrogative +52778 personal +52780 proper +52782 common +common +52786 personal +52790 indefinite +52793 personal +52797 common +personal +proper +52801 common +proper +proper +52805 common +52807 relative +52810 common +52814 common +52816 demonstrative +interrogative +52820 demonstrative +52823 proper +52826 common +52830 common +52834 common +52838 common +52840 common +52846 common +52848 proper +52858 common +relative +52866 common +personal +52871 common +52874 indefinite +52881 common +common +52886 common +52889 relative +52895 common +52897 relative +52899 common +52902 demonstrative +52906 common +52911 common +52919 personal +52922 common +52927 common +proper +personal +52937 common +personal +52941 common +52945 common +52949 common +52951 proper +52953 common +52960 personal +52962 proper +52965 common +common +52973 common +52980 proper +52984 common +52988 common +52995 personal +personal +53003 personal +53006 common +53011 common +53014 common +53016 relative +53021 common +53026 common +53029 common +53042 common +personal +53045 proper +53048 common +53052 common +personal +53056 common +53059 proper +53062 common +53066 common +53069 common +53074 common +53076 proper +53082 common +personal +53085 personal +53088 common +53092 proper +53095 proper +53098 personal +53101 common +53103 personal +common +53109 personal +53111 proper +53117 personal +53119 personal +53123 common +53129 common +53135 common +53140 common +53144 common +53146 relative +53148 common +53150 common +personal +53154 demonstrative +53156 common +53158 common +53163 personal +interrogative +53169 common +53171 common +53173 proper +53176 personal +demonstrative +53180 common +53182 common +53186 relative +53188 demonstrative +53191 personal +53193 interrogative +common +53196 personal +53201 personal +interrogative +53205 common +personal +53208 common +53216 common +53219 common +53221 personal +53225 personal +53227 proper +53231 personal +53233 proper +53235 personal +53237 common +53240 common +53243 common +personal +53246 personal +53248 common +53251 common +53256 common +53258 common +53264 common +53266 common +53269 common +53273 personal +common +53277 personal +53279 common +demonstrative +53282 personal +53284 proper +personal +53288 common +53290 common +53294 personal +53302 personal +53309 personal +53313 personal +53318 relative +53320 personal +53322 common +53324 personal +53330 personal +53339 common +53344 common +53346 possessive +53349 common +53352 personal +53354 demonstrative +53357 common +53360 personal +53363 relative +53365 personal +53369 personal +53372 personal +53376 common +53378 demonstrative +53381 common +53383 common +personal +53390 common +53394 personal +53396 common +53400 personal +personal +53405 common +53411 personal +53414 personal +53417 common +53422 common +53426 demonstrative +53428 proper +53430 common +proper +relative +personal +53436 common +53439 common +53446 common +53449 proper +53452 personal +53456 personal +53461 personal +53465 common +53468 personal +53470 personal +personal +53473 personal +53477 common +53482 common +53487 common +53493 common +53498 personal +53502 common +53504 indefinite +53511 common +demonstrative +53515 common +53519 personal +53523 common +53525 personal +53528 common +53530 common +53532 common +personal +53539 common +53542 demonstrative +53545 common +53549 common +53552 indefinite +53554 personal +53559 personal +53562 common +53568 common +53571 indefinite +53574 demonstrative +53576 common +53580 common +53584 common +relative +personal +53589 common +personal +53595 common +common +53600 personal +53606 demonstrative +personal +53610 common +53614 personal +53616 proper +53620 personal +53625 common +53627 common +53629 common +53632 personal +53634 common +53637 common +53639 personal +53642 personal +53644 common +53647 personal +53649 common +53651 common +53653 personal +53655 personal +53658 common +53661 common +personal +53664 common +53668 common +personal +53671 common +53675 personal +53677 common +53680 personal +53682 common +53684 personal +53686 personal +53688 personal +53691 personal +53694 common +personal +53699 common +53703 personal +53707 personal +demonstrative +53711 common +53714 common +53720 common +53725 demonstrative +53727 common +53731 common +demonstrative +53735 common +53738 proper +53743 common +personal +53750 common +demonstrative +interrogative +53754 personal +53758 proper +53761 personal +53765 demonstrative +53767 common +personal +53770 personal +demonstrative +personal +53778 common +53780 common +53787 common +53792 common +53797 common +relative +personal +53801 personal +common +53805 common +53810 personal +indefinite +relative +53818 common +53820 proper +interrogative +53827 interrogative +53831 personal +53835 demonstrative +53837 personal +53843 personal +53848 personal +53851 common +53853 demonstrative +53856 common +personal +53865 personal +53870 proper +53875 personal +53879 personal +proper +proper +common +53884 interrogative +53886 common +common +53891 personal +53896 personal +53901 common +53903 personal +53905 proper +53907 personal +personal +53914 personal +53921 proper +proper +proper +53925 demonstrative +53928 personal +53935 demonstrative +53938 proper +53941 proper +53947 proper +53951 personal +53959 common +53963 common +53967 personal +53969 common +personal +53977 proper +53981 common +personal +53985 common +personal +relative +53991 indefinite +53997 personal +53999 common +54002 demonstrative +54005 personal +54007 common +54011 common +personal +54015 personal +54018 personal +54020 proper +54022 common +54024 possessive +54029 common +54038 common +54040 personal +54042 personal +54045 personal +54048 personal +54051 common +personal +54055 personal +54059 common +personal +54065 common +demonstrative +54069 possessive +common +54074 demonstrative +54076 personal +54080 proper +54085 common +personal +54089 common +54092 personal +54104 personal +54107 common +54112 demonstrative +54114 common +54116 personal +54121 common +54135 common +54138 common +54141 personal +54144 common +54150 common +54153 proper +54165 demonstrative +common +54172 personal +proper +54177 possessive +common +54181 possessive +54185 personal +54187 indefinite +54190 common +personal +54196 common +54200 common +54203 personal +54205 personal +54209 personal +54212 common +54220 common +54223 personal +demonstrative +54228 common +54230 personal +54234 proper +54236 personal +54238 common +54242 personal +54245 common +interrogative +personal +54252 common +common +54255 interrogative +personal +54260 proper +54263 personal +54265 common +54271 demonstrative +proper +54274 personal +54276 common +54281 proper +54286 common +54289 common +54291 common +54293 common +54295 common +54297 common +54302 common +proper +personal +54308 common +54312 common +54316 common +54320 common +54324 indefinite +54327 proper +54329 demonstrative +54331 relative +54336 common +54340 personal +54347 common +54349 demonstrative +54352 proper +54354 demonstrative +54360 proper +54374 proper +54377 personal +54385 personal +54393 personal +relative +personal +54398 personal +54400 personal +54403 personal +54406 personal +54410 personal +54416 personal +54418 common +54423 common +personal +54428 common +54432 personal +54436 proper +54441 common +54443 relative +demonstrative +54448 proper +54450 common +54453 personal +demonstrative +54458 common +54461 proper +common +54465 personal +54469 proper +54471 common +54474 personal +54481 personal +54483 personal +54490 personal +54492 personal +54500 personal +54503 demonstrative +54506 personal +54509 personal +54514 common +54516 proper +54521 proper +interrogative +54525 common +demonstrative +relative +54530 personal +54537 personal +54539 personal +54546 common +54550 common +54553 proper +54558 indefinite +54562 personal +54568 personal +54572 common +common +common +54578 common +personal +54582 demonstrative +54586 common +relative +54593 personal +54597 common +54599 proper +54605 common +54608 common +demonstrative +54611 demonstrative +54615 common +54618 demonstrative +54621 proper +54629 proper +54631 proper +54635 common +54640 common +proper +54644 proper +54646 common +54649 proper +54652 proper +54654 common +54658 common +54660 personal +54662 indefinite +54664 personal +54667 personal +54672 personal +54674 common +54678 common +54681 common +54683 proper +54686 personal +demonstrative +54689 interrogative +54692 personal +54695 common +54699 common +54701 demonstrative +54703 common +54707 personal +54709 proper +54712 personal +54715 indefinite +54718 common +54721 personal +54725 proper +54728 common +demonstrative +54734 common +54739 personal +proper +54744 personal +54749 personal +54752 common +personal +54756 common +54762 personal +54765 interrogative +54770 personal +54773 personal +54776 proper +54784 proper +common +54793 common +personal +54796 proper +54800 common +54802 common +54804 common +54813 common +54816 personal +54820 personal +54824 common +54827 proper +54829 personal +common +54832 common +54836 personal +54840 personal +common +demonstrative +54844 common +54851 common +proper +personal +54856 demonstrative +54859 personal +interrogative +54863 demonstrative +54866 personal +54870 personal +54873 proper +54877 common +54881 common +54886 personal +54890 personal +54893 personal +54896 common +54898 personal +54907 common +54914 common +54930 proper +54933 common +54939 proper +54946 common +54948 personal +54950 common +54953 demonstrative +54955 common +personal +54958 personal +54964 common +54967 personal +54969 proper +54971 personal +personal +54980 personal +54983 proper +54985 personal +54988 common +54990 common +54993 personal +54999 common +55003 common +55005 common +55008 personal +55010 proper +personal +55013 personal +55016 common +personal +55022 proper +55025 personal +55027 personal +55030 personal +55034 common +personal +55044 personal +55052 personal +55055 common +55057 personal +55065 personal +55067 common +55069 possessive +55077 personal +55081 personal +55086 common +55092 common +55094 common +55097 personal +55102 personal +55106 personal +55109 personal +common +55113 personal +55117 common +personal +55120 proper +55122 personal +55126 common +personal +55129 personal +55134 common +personal +55137 demonstrative +55139 common +55143 common +55151 personal +55156 common +personal +55161 personal +personal +55166 personal +55170 common +personal +55174 personal +55177 personal +55186 personal +55190 personal +55193 personal +55198 personal +personal +55204 personal +55209 personal +55211 demonstrative +55213 common +55215 personal +55220 common +demonstrative +55224 personal +55229 common +personal +55236 personal +55241 common +personal +55245 personal +personal +interrogative +55250 personal +55252 proper +indefinite +relative +55256 common +55259 personal +55263 personal +55270 personal +55273 relative +personal +55277 personal +demonstrative +55282 common +55287 common +personal +55293 proper +55297 common +55299 common +55303 personal +55307 personal +55313 personal +55315 common +demonstrative +55321 personal +55323 personal +55327 personal +55330 personal +55333 personal +55336 demonstrative +personal +55342 personal +55346 proper +55350 personal +55353 personal +55357 common +55359 possessive +55361 common +personal +55367 common +55370 common +55372 personal +55375 personal +common +proper +55384 personal +55390 personal +55392 proper +55396 personal +55402 common +55404 common +55406 common +55409 common +55414 common +55417 common +55419 common +55423 common +55427 common +personal +55435 common +proper +55440 personal +55444 common +55446 possessive +55450 personal +relative +personal +55456 common +55460 personal +relative +55465 common +55470 personal +55472 common +personal +proper +55477 personal +55479 proper +55481 common +55483 proper +55486 common +55488 proper +55494 personal +common +relative +55498 common +personal +55501 relative +55505 common +demonstrative +proper +55510 personal +55513 common +55515 common +personal +55518 personal +personal +55521 common +55525 common +55527 common +55530 personal +55532 proper +55535 common +common +personal +55541 personal +55543 personal +55546 common +55553 personal +55556 demonstrative +personal +55560 interrogative +55562 common +55564 possessive +55572 common +55574 possessive +personal +55578 common +55584 common +55586 common +personal +55590 demonstrative +common +55594 common +55598 common +55604 common +55606 personal +55610 common +55616 common +55620 common +personal +55623 personal +55626 common +55630 personal +interrogative +55633 personal +55635 personal +55637 common +55639 common +55642 interrogative +personal +55646 personal +55651 common +55653 common +55655 common +55658 demonstrative +personal +55665 common +55673 personal +55677 personal +55679 proper +55681 personal +55683 common +55686 proper +personal +common +55694 common +personal +55697 personal +55699 personal +55701 personal +55705 common +personal +55715 personal +55717 indefinite +55719 possessive +common +55722 common +55728 common +55730 personal +55736 common +55738 proper +55742 common +55744 personal +55747 indefinite +55749 common +personal +55755 common +55758 common +55760 personal +55764 common +personal +proper +relative +55771 common +55773 interrogative +personal +55777 proper +55779 personal +55781 personal +55783 common +personal +55789 common +personal +55793 personal +relative +personal +55798 common +personal +55804 personal +55806 personal +55808 personal +55814 personal +55817 personal +common +55821 personal +55824 common +personal +55827 proper +55829 common +personal +55835 common +55837 possessive +55847 personal +55849 common +55853 proper +55856 personal +proper +55861 personal +55863 proper +55865 personal +55869 common +55873 personal +55875 proper +55885 common +55888 common +55891 personal +55893 common +personal +55896 common +interrogative +55899 demonstrative +55902 common +personal +55908 proper +55910 demonstrative +55914 common +personal +55920 common +55922 common +55924 personal +55926 personal +55929 common +55932 personal +55934 common +55937 common +55945 common +55948 common +55950 common +demonstrative +55957 common +55960 common +55963 personal +55965 common +55968 common +55971 personal +55976 common +55978 proper +relative +55991 common +55995 personal +55999 common +56003 demonstrative +56012 demonstrative +56019 personal +56021 demonstrative +56024 personal +56028 personal +56032 personal +56034 common +56036 demonstrative +56038 common +56041 proper +common +56046 personal +56048 common +56051 personal +56056 proper +56066 personal +56069 demonstrative +56074 personal +56080 proper +56083 common +56085 relative +common +56088 common +56091 proper +56094 personal +56096 common +56100 personal +56103 proper +56109 personal +common +56113 personal +56115 common +56124 proper +indefinite +56129 common +demonstrative +56132 common +56135 common +56142 common +56144 demonstrative +common +56148 common +56151 personal +56157 interrogative +personal +56161 personal +56164 personal +56166 common +56171 common +56179 personal +56186 relative +56189 common +personal +56195 personal +56197 demonstrative +56200 common +personal +relative +personal +56215 common +personal +56221 demonstrative +56224 common +personal +56237 interrogative +56239 personal +56241 common +personal +56245 personal +56247 common +56249 personal +56251 personal +56253 demonstrative +56256 common +personal +56269 indefinite +personal +56272 proper +56276 demonstrative +56278 common +personal +56282 common +56284 personal +56289 common +56292 relative +56297 personal +56299 common +56301 common +personal +56305 demonstrative +56307 common +56312 demonstrative +56327 personal +interrogative +56330 personal +56333 personal +56335 common +56337 personal +56339 personal +56344 interrogative +56350 personal +56352 personal +common +56357 personal +56360 personal +common +demonstrative +56365 personal +56367 proper +common +56370 personal +56373 proper +56376 common +56378 demonstrative +56385 common +56388 personal +56391 demonstrative +56396 personal +56403 personal +56405 common +56409 common +56415 indefinite +56420 common +personal +56423 demonstrative +56427 common +56432 indefinite +common +56439 demonstrative +56441 common +56449 personal +56451 common +personal +56456 personal +56458 personal +56461 personal +56464 proper +56467 personal +56471 personal +56473 personal +56477 common +56479 common +56481 demonstrative +56485 interrogative +56487 common +56491 personal +56493 personal +56495 proper +56498 personal +56503 personal +demonstrative +56510 common +56513 personal +56517 proper +56519 common +personal +56523 common +demonstrative +56537 demonstrative +56540 proper +56543 personal +56547 personal +56550 personal +56554 personal +56556 proper +56563 common +56570 common +personal +56576 personal +56582 common +56585 common +56587 common +56591 demonstrative +common +56595 common +56601 common +56603 common +56605 common +demonstrative +56608 common +56612 common +56614 common +personal +56620 common +56623 common +56626 personal +56633 personal +56637 common +personal +56643 common +personal +56653 personal +56660 common +demonstrative +56663 common +56665 personal +56667 proper +56669 demonstrative +56672 interrogative +56674 relative +56676 personal +56681 proper +56685 personal +56687 personal +56690 common +56692 common +56694 relative +56697 personal +common +56701 common +56705 personal +56707 common +personal +56711 common +56714 personal +indefinite +56723 common +56726 common +56737 personal +56740 common +56745 personal +56748 common +56752 common +56756 common +personal +56761 common +56767 common +relative +56772 common +56776 common +56781 common +56786 common +56788 personal +56797 personal +56800 common +personal +56804 common +56810 possessive +56813 personal +56815 possessive +56818 personal +56820 common +personal +56824 common +56827 common +personal +56832 common +56835 common +56837 relative +56842 common +demonstrative +56845 personal +56850 common +personal +56856 common +56858 common +56860 demonstrative +personal +56863 common +56866 personal +56869 common +personal +56874 personal +56877 personal +56879 personal +56881 personal +56883 personal +56885 personal +common +56889 personal +56891 common +56895 personal +demonstrative +56898 common +56902 common +personal +common +56912 common +demonstrative +56918 personal +common +56923 interrogative +personal +56928 demonstrative +56930 common +56935 common +56938 common +56943 common +56946 proper +common +56952 proper +56958 common +56960 proper +56963 personal +56968 personal +56972 common +personal +56976 personal +56979 proper +56981 personal +common +56984 personal +56986 proper +56988 personal +56993 common +relative +personal +56999 common +57001 common +personal +demonstrative +57006 personal +57008 personal +57016 common +57018 possessive +57020 common +57022 possessive +57024 common +personal +57027 personal +57029 personal +57032 personal +personal +57035 personal +common +57044 common +57048 indefinite +personal +57052 common +personal +57055 common +personal +relative +57059 personal +57069 common +57071 common +personal +57075 common +57080 common +57085 personal +57087 personal +57089 proper +57091 common +57094 personal +57097 common +57099 interrogative +personal +common +personal +57105 personal +57110 common +57113 personal +57116 common +57119 personal +common +57123 personal +common +57126 personal +57128 proper +57134 common +personal +57137 personal +57139 common +57142 demonstrative +57144 common +57146 relative +57148 common +57150 common +57157 common +relative +57160 common +57166 common +personal +57173 common +57175 common +57181 common +57183 common +personal +57187 personal +57192 personal +57196 common +57204 personal +57206 common +personal +57210 common +57213 personal +57220 common +personal +57227 proper +57230 common +57234 proper +57244 personal +57249 proper +common +57255 relative +57257 proper +57259 demonstrative +57266 personal +57270 indefinite +57272 proper +57274 proper +57277 common +proper +57280 proper +57282 common +personal +57286 proper +57290 common +common +57295 common +personal +57298 common +personal +relative +57302 common +proper +57308 common +57310 personal +57312 common +57314 relative +57320 proper +57322 demonstrative +57324 common +57328 common +57332 common +57334 common +57338 common +57340 common +57342 personal +57346 proper +57348 proper +57351 common +personal +57355 proper +57365 relative +57367 common +57369 common +57372 demonstrative +57375 common +57379 proper +57382 personal +57384 common +common +57388 personal +57397 proper +57400 common +57403 common +57405 indefinite +57409 common +57414 common +57416 common +demonstrative +57421 indefinite +57425 common +57429 common +57433 personal +demonstrative +57438 demonstrative +57440 personal +proper +57444 personal +57450 personal +57454 common +personal +common +57463 proper +57466 common +personal +57469 demonstrative +57474 common +57476 common +57481 personal +57483 proper +common +proper +57490 personal +57500 personal +57503 proper +57506 proper +57508 common +57511 personal +57515 personal +57519 proper +57521 personal +57523 common +57528 common +57531 proper +57534 proper +57537 common +57547 proper +57549 proper +57552 personal +57555 common +57560 proper +57563 proper +57565 personal +57567 proper +57570 common +57575 proper +57577 proper +common +57586 common +personal +57593 relative +57596 common +57598 personal +57600 common +57602 personal +57604 proper +57607 common +personal +57610 personal +57612 proper +57618 common +57622 common +57624 personal +57626 proper +personal +57630 common +57633 common +57637 personal +57648 personal +57654 common +57656 demonstrative +57658 personal +57660 common +personal +57664 personal +57667 proper +57669 common +57671 common +57675 common +57678 demonstrative +57683 proper +57685 common +personal +57690 common +57694 personal +57696 demonstrative +57704 personal +57709 proper +57712 common +57718 common +57721 personal +57723 proper +57730 personal +57733 common +57736 personal +57739 proper +57746 personal +57752 common +57758 proper +57763 proper +57765 personal +57768 personal +57770 common +57772 personal +common +57780 personal +57782 common +57784 proper +57787 personal +57792 personal +57797 common +57800 personal +57805 personal +57807 personal +common +57814 proper +57822 personal +57824 indefinite +57826 personal +57830 demonstrative +57834 common +57840 demonstrative +57844 proper +57848 personal +57852 common +57855 common +57857 common +57860 personal +57863 proper +57866 common +57868 personal +57870 common +57873 proper +common +57881 personal +57883 proper +57886 personal +57892 common +57894 common +57898 common +57901 proper +57904 common +57908 common +57910 personal +57913 personal +57915 personal +57919 personal +57924 common +57931 personal +personal +57935 demonstrative +57937 common +57940 proper +57948 common +57951 common +common +57955 common +personal +common +57960 personal +57962 proper +57964 personal +57967 personal +57978 proper +57981 relative +57985 personal +57987 indefinite +57989 personal +57993 proper +57996 personal +relative +57999 proper +58003 common +58006 proper +common +58010 interrogative +58013 demonstrative +58015 common +58017 common +58021 personal +58026 personal +58033 personal +58036 common +58039 common +58042 indefinite +58044 personal +proper +common +58049 common +demonstrative +58052 personal +personal +58061 personal +58064 common +58068 common +58073 common +58076 demonstrative +58078 personal +58082 common +58085 common +demonstrative +58090 proper +58094 common +58099 common +58105 common +58107 common +58115 demonstrative +58117 common +58121 personal +58124 proper +58126 common +58136 common +58141 proper +58143 common +58148 common +58153 common +58160 proper +58163 common +58166 common +58169 personal +58173 proper +58177 personal +58182 interrogative +58184 personal +58191 common +58195 common +58198 proper +common +58202 indefinite +58209 personal +58212 proper +58215 common +58217 common +58220 proper +58223 proper +relative +58228 proper +58231 personal +common +58236 proper +58240 proper +58247 personal +58250 proper +58252 common +common +common +58259 common +58261 proper +58265 common +personal +58268 common +personal +58272 common +58276 common +58278 common +58281 proper +58283 proper +58286 common +personal +58290 personal +58293 interrogative +demonstrative +58296 common +58300 common +58306 demonstrative +58313 personal +58316 common +58320 common +58328 proper +58330 personal +58334 common +58336 common +personal +58339 personal +58346 personal +58348 personal +58355 common +58368 proper +58375 proper +relative +58383 common +58387 proper +58394 personal +58400 proper +58404 common +58410 common +58414 proper +58416 proper +58419 common +58421 common +58425 common +personal +58434 common +common +58438 common +58440 proper +58443 common +58445 proper +58448 personal +58454 common +proper +58458 common +personal +58463 common +common +demonstrative +58468 personal +58470 common +58476 proper +58480 demonstrative +58484 personal +58486 demonstrative +58488 personal +58492 common +58496 personal +58499 proper +58503 common +58506 personal +58510 demonstrative +58513 personal +58515 common +58518 demonstrative +personal +58522 common +58525 proper +58528 personal +58536 common +58538 personal +58542 proper +indefinite +58551 common +58553 demonstrative +58555 proper +58558 proper +58560 proper +58563 personal +58565 common +58568 proper +58572 proper +58576 proper +58578 proper +58580 proper +58584 proper +58587 proper +58589 personal +58593 common +58597 common +58599 common +58603 personal +58607 common +58609 common +58613 common +58615 personal +58622 common +58627 common +personal +58630 personal +58635 common +personal +58639 common +demonstrative +58642 common +58645 personal +58647 personal +indefinite +58650 personal +58655 personal +58659 common +58661 possessive +58664 indefinite +personal +58668 personal +58670 common +58673 common +personal +58677 interrogative +58679 common +58681 personal +58684 common +demonstrative +58688 demonstrative +58692 common +demonstrative +common +58696 personal +58698 common +58701 common +58704 common +58712 common +58718 common +58722 common +personal +58726 proper +58731 personal +58733 common +demonstrative +58738 personal +58741 common +58743 common +demonstrative +58747 common +58749 common +demonstrative +58754 personal +58758 common +58762 personal +58764 demonstrative +58767 interrogative +common +58773 personal +58775 common +personal +58780 common +58783 proper +58787 common +58791 personal +58796 common +58798 common +interrogative +58801 demonstrative +58803 common +58805 common +58808 personal +58810 proper +58813 common +58815 common +58817 personal +58822 common +58826 common +personal +58834 common +58841 common +58846 common +58848 common +common +58851 demonstrative +58853 proper +58858 personal +58860 personal +demonstrative +common +58865 personal +58869 personal +58872 common +proper +58875 common +58877 relative +58879 common +interrogative +58883 common +personal +58887 common +common +interrogative +58892 demonstrative +58899 proper +58901 personal +58903 common +58906 personal +58908 common +58913 common +58917 common +58922 personal +demonstrative +58925 proper +58929 common +personal +58934 personal +58940 common +58944 personal +58948 proper +58958 common +58960 common +58964 common +58966 common +58968 proper +58975 personal +58979 personal +58984 personal +58988 personal +58992 personal +personal +common +58997 common +59004 personal +59007 common +59012 indefinite +59014 personal +59016 common +59020 personal +59023 personal +59030 common +59035 common +59038 personal +59043 common +personal +59048 personal +59050 common +relative +59053 demonstrative +59055 personal +59059 common +59061 personal +59063 personal +59069 personal +common +personal +personal +common +59075 interrogative +59078 interrogative +59084 common +personal +common +59090 relative +personal +59095 personal +59097 common +59103 common +59105 common +59107 proper +59111 personal +59113 common +59118 common +demonstrative +59122 common +59129 common +59131 common +59133 personal +59135 common +59143 common +59146 personal +proper +proper +proper +59154 personal +59156 common +59159 common +59163 common +59168 common +59173 common +59177 common +59180 common +59182 personal +59185 common +59188 common +59193 common +59195 common +59199 common +relative +59206 proper +proper +59209 personal +common +personal +59213 personal +59215 common +59217 proper +59220 personal +relative +personal +59224 personal +59231 demonstrative +59233 personal +proper +59238 personal +59240 common +59243 common +59245 proper +personal +59250 personal +59253 common +59255 personal +59257 personal +proper +proper +common +59263 common +personal +59269 common +59272 common +59274 personal +proper +59280 common +59284 common +59291 personal +59301 personal +59303 demonstrative +59314 common +personal +59319 common +personal +59325 personal +59327 interrogative +59329 personal +personal +59332 personal +59334 common +59337 common +59345 personal +59347 common +59350 common +59352 personal +59354 common +59356 personal +59359 personal +59361 common +59363 common +59365 personal +59368 personal +59370 personal +59372 personal +59377 personal +59380 common +59383 common +personal +59386 common +59390 personal +59392 demonstrative +59398 personal +59402 personal +59404 personal +59406 interrogative +59411 common +59415 personal +59417 common +59420 personal +59422 common +personal +59427 personal +59436 personal +59441 personal +59445 indefinite +59447 personal +59451 personal +59456 personal +demonstrative +59459 proper +59462 common +59470 personal +59474 personal +59476 personal +59479 personal +59481 common +59484 interrogative +59491 common +personal +59495 common +59497 proper +relative +59501 proper +59504 demonstrative +proper +proper +59509 personal +59514 relative +59516 demonstrative +59521 common +59523 proper +59525 personal +common +interrogative +59532 proper +59534 demonstrative +relative +personal +59539 common +59542 personal +59546 common +59550 proper +proper +proper +59556 common +59560 demonstrative +59562 proper +59565 personal +proper +relative +59576 demonstrative +59578 interrogative +59580 personal +59582 indefinite +59586 common +59588 proper +59591 personal +proper +59594 relative +common +59599 common +59604 indefinite +59609 common +demonstrative +59615 common +59620 proper +59624 common +59626 common +59629 common +59632 personal +59635 common +59638 personal +59641 common +59643 personal +59645 personal +59649 personal +common +59654 personal +59657 personal +59665 personal +59668 personal +59672 personal +59675 common +59678 personal +59681 personal +59684 personal +59687 personal +59689 personal +59691 demonstrative +59695 possessive +common +59699 common +59702 personal +59704 personal +proper +proper +common +59711 proper +59714 personal +59723 personal +proper +common +59727 interrogative +59730 personal +59734 common +personal +59737 personal +59740 proper +59742 common +personal +59745 personal +59750 personal +59753 common +59756 relative +59758 personal +59762 personal +59764 common +59768 common +59771 personal +59775 common +59777 common +personal +common +59787 personal +59791 common +personal +59798 common +personal +59804 personal +59806 personal +59810 personal +59812 personal +59816 personal +59820 common +59822 personal +proper +common +59832 common +59834 personal +proper +personal +59839 common +59842 common +59845 common +59850 common +59854 personal +59857 personal +59861 common +personal +59867 personal +59871 personal +proper +common +59875 personal +59877 common +59880 personal +59882 personal +59884 proper +demonstrative +common +59888 personal +59893 personal +proper +59897 personal +59900 common +59902 personal +59905 personal +59907 common +59911 personal +59914 common +59917 common +59919 personal +59922 common +relative +personal +59926 personal +59928 personal +59933 common +59935 personal +59939 common +personal +59942 personal +59944 personal +59947 common +59950 common +59952 personal +59958 common +personal +59964 personal +59968 personal +59970 common +relative +personal +59978 demonstrative +59981 personal +59984 common +59987 indefinite +59989 relative +59993 common +personal +demonstrative +60000 common +60003 common +60005 indefinite +60007 personal +60010 common +personal +personal +60016 personal +60018 common +60020 possessive +60022 personal +60025 common +60028 common +60030 personal +60034 personal +60037 common +60039 common +60041 common +relative +60045 common +60051 personal +60054 personal +60056 personal +60059 personal +60063 personal +60067 personal +60071 personal +60076 common +personal +60081 personal +60083 personal +60085 personal +60088 personal +60091 demonstrative +60093 common +60095 personal +60097 personal +60100 common +personal +60103 personal +60105 personal +personal +60108 personal +60112 common +personal +60116 personal +demonstrative +60121 personal +60125 personal +60129 common +personal +personal +60133 personal +60136 personal +personal +60139 personal +proper +60143 proper +common +60146 interrogative +60150 personal +60152 personal +60156 common +60158 proper +60161 personal +60163 indefinite +60165 personal +60167 common +personal +60172 common +personal +60175 personal +60178 personal +60181 common +60183 personal +60188 personal +60190 common +personal +60196 common +relative +60201 possessive +60205 personal +common +demonstrative +60209 personal +60211 personal +60215 common +60217 common +60220 relative +60223 common +60226 common +personal +demonstrative +personal +60234 personal +60236 relative +60238 personal +personal +common +60242 personal +common +60245 possessive +60247 personal +60251 common +60253 personal +60255 personal +60258 personal +60260 common +60265 personal +60267 personal +60272 personal +60275 personal +60282 common +60285 common +60287 personal +60292 personal +60303 personal +60308 common +common +60312 personal +60320 common +60324 common +60328 personal +60330 common +60336 personal +60339 common +60344 common +personal +60347 common +60350 common +60352 personal +60355 common +60357 personal +60361 common +60364 personal +60366 common +60370 personal +60375 common +relative +60378 personal +60381 personal +personal +60384 personal +60387 common +60390 common +60393 personal +60399 common +60402 personal +60406 personal +60408 personal +60411 common +personal +60414 common +60418 personal +personal +60421 personal +demonstrative +60424 common +60428 personal +60435 indefinite +60438 personal +60443 common +60448 personal +60452 common +60459 personal +60462 common +personal +60465 personal +60468 relative +60473 personal +60475 demonstrative +60478 common +personal +60481 common +60486 possessive +common +60490 personal +60492 common +personal +personal +60499 common +60501 possessive +60504 common +personal +60510 common +personal +60513 personal +60515 common +personal +60518 common +60523 personal +60525 common +demonstrative +60528 personal +60531 common +60533 possessive +60535 personal +60539 common +personal +60542 demonstrative +60545 common +60547 possessive +60550 personal +60553 personal +60555 demonstrative +common +60560 indefinite +60562 common +personal +60568 personal +personal +60571 personal +60575 relative +personal +60578 personal +60581 personal +common +60585 common +60588 interrogative +60590 personal +60592 common +60594 personal +60599 relative +60603 common +personal +60606 personal +60608 personal +personal +60612 personal +60614 personal +60617 personal +60619 personal +60622 common +60626 common +personal +60630 indefinite +60632 relative +60635 common +60638 common +personal +60641 personal +demonstrative +60644 personal +60647 personal +60650 common +personal +60655 personal +60657 personal +60662 common +60666 common +60674 common +60678 personal +60680 personal +60683 common +60685 demonstrative +60687 personal +60689 common +60692 common +relative +personal +60696 personal +60699 common +60702 common +personal +60705 personal +60708 personal +60712 common +personal +60720 demonstrative +60724 personal +60727 common +personal +60734 personal +60740 personal +common +60746 common +60751 common +personal +60754 personal +60758 common +personal +60763 common +60767 personal +relative +60772 common +60782 personal +60785 common +personal +60791 common +60795 common +personal +60800 personal +60805 common +relative +personal +60809 personal +60812 common +60814 common +60816 common +relative +60820 common +60822 demonstrative +60825 personal +60828 personal +60832 common +60834 personal +60836 demonstrative +60838 personal +60844 personal +60847 common +60852 personal +60854 common +60857 common +60859 demonstrative +60865 common +60867 personal +60869 demonstrative +60871 personal +60876 common +personal +60879 personal +60881 personal +60883 personal +60885 demonstrative +personal +60888 common +60893 personal +60901 personal +60905 personal +60907 personal +60912 demonstrative +60914 personal +60916 common +60918 personal +60920 common +60922 personal +60924 common +60926 personal +60928 personal +60930 personal +60937 common +60942 personal +60947 personal +60949 personal +60952 demonstrative +60955 common +60957 common +60960 common +60963 common +60966 common +60971 personal +60974 common +60978 common +60983 personal +60986 common +60989 common +60991 common +demonstrative +60997 personal +61007 demonstrative +61009 common +61011 common +61013 personal +61016 common +61022 personal +61024 relative +61031 personal +demonstrative +personal +61038 possessive +61042 personal +61044 relative +61047 common +possessive +61051 demonstrative +61056 possessive +61060 personal +61065 personal +61071 personal +61076 common +personal +61079 personal +interrogative +61082 demonstrative +relative +61085 personal +61090 personal +61096 personal +61102 common +61105 interrogative +61107 demonstrative +relative +61114 interrogative +61117 proper +61120 personal +61124 personal +61126 demonstrative +61129 personal +61136 personal +61142 personal +61146 personal +61151 personal +61154 common +61156 personal +61160 common +personal +61163 common +61167 common +61169 common +61174 common +personal +61180 common +61184 common +61187 common +61190 common +61193 common +61197 personal +61199 common +61204 personal +61207 personal +61209 common +61212 common +personal +61217 personal +61220 demonstrative +61222 common +personal +61230 personal +61232 indefinite +61235 common +61237 personal +61240 common +personal +61249 common +personal +61256 common +personal +61260 demonstrative +61262 common +61264 personal +61266 common +61270 common +61272 personal +61274 common +61277 common +61279 personal +61281 demonstrative +61283 common +61286 common +personal +61292 personal +61294 personal +61297 common +61299 personal +61301 personal +61303 common +61305 personal +61307 personal +personal +61313 personal +61316 common +61321 common +61326 common +61330 common +61335 common +61338 common +personal +61343 common +61346 common +61356 common +61359 indefinite +personal +61363 demonstrative +61367 common +61370 personal +proper +61376 common +61385 personal +61394 common +61396 personal +61398 demonstrative +61400 personal +61403 personal +common +61408 common +common +61413 personal +61416 common +demonstrative +61419 proper +61423 common +personal +61427 common +61429 common +61432 common +61434 personal +61436 common +61439 common +61441 personal +61444 personal +common +61447 common +61450 relative +61452 personal +61454 personal +common +61458 demonstrative +61462 common +61465 personal +61469 common +61471 relative +61473 proper +proper +personal +personal +61480 common +61483 common +relative +61486 personal +61490 common +61493 personal +personal +61496 personal +61498 common +relative +61504 common +61507 personal +61509 personal +61511 common +61513 common +relative +61516 personal +61519 common +personal +61522 personal +personal +61527 common +personal +61534 relative +61536 personal +61538 personal +61542 common +relative +61545 personal +61547 personal +61549 personal +61556 personal +61561 personal +personal +61564 personal +61566 personal +61571 common +61575 relative +61577 personal +61579 personal +61583 possessive +61585 possessive +61589 possessive +possessive +61594 personal +61600 common +61602 personal +61605 common +61607 personal +61609 personal +61611 common +61614 personal +61617 common +personal +relative +61621 personal +61626 personal +61630 personal +personal +61633 personal +61636 common +personal +relative +61640 personal +61646 personal +61651 common +61653 common +61656 common +61661 personal +61664 demonstrative +61668 common +61672 common +61674 possessive +61677 personal +personal +61680 personal +61682 common +personal +61686 common +61688 personal +61694 common +61696 personal +61701 common +61706 personal +61709 common +61713 personal +61719 common +61723 personal +61728 common +61730 personal +61733 common +61735 common +61737 possessive +common +61741 personal +61745 common +personal +61748 personal +61751 common +61754 personal +personal +61757 personal +61762 personal +61764 common +61768 demonstrative +61778 common +personal +61781 personal +61787 common +personal +61790 personal +personal +61793 personal +61796 personal +61798 personal +61802 common +61805 personal +personal +61808 personal +61810 common +relative +61813 personal +61815 personal +61820 personal +61822 personal +61824 personal +61826 personal +61828 personal +61837 common +61839 personal +personal +61844 personal +61846 personal +61848 common +relative +61851 personal +61856 personal +61860 personal +61864 common +61866 possessive +relative +61869 personal +61872 personal +61874 common +common +common +61880 common +personal +61885 personal +personal +61889 demonstrative +61892 personal +personal +61897 personal +61899 common +personal +61905 common +relative +61908 personal +61910 personal +61912 personal +61914 personal +demonstrative +61917 proper +61921 common +personal +61925 common +61927 proper +61930 common +61932 relative +61934 personal +61937 common +personal +61942 proper +61945 personal +61947 common +61951 proper +61955 common +personal +61959 proper +61962 common +61966 common +61970 proper +common +61975 common +61977 common +61979 common +61981 proper +61987 personal +61991 personal +interrogative +61995 personal +proper +61998 proper +62000 personal +personal +62006 proper +62009 personal +62011 personal +62015 personal +personal +62028 personal +interrogative +62034 proper +62036 proper +62038 proper +62040 personal +62042 personal +62046 personal +62049 demonstrative +62054 common +relative +62058 relative +62060 personal +62064 personal +62067 proper +proper +62070 common +62072 personal +62077 common +common +62081 personal +62083 common +62088 common +62090 common +proper +62095 proper +62097 proper +62100 common +62103 common +62105 common +relative +62108 personal +62110 common +62114 personal +62117 common +62120 common +62123 common +62128 proper +62131 personal +62135 proper +62139 common +62141 proper +relative +62144 common +62146 common +demonstrative +62150 proper +62158 common +62162 common +62166 proper +proper +proper +62171 common +62174 common +demonstrative +62179 common +62183 proper +62186 common +62188 common +62191 proper +62195 common +62200 common +62206 common +62210 common +62214 proper +62218 proper +62220 common +62222 common +62225 personal +62228 common +62230 common +demonstrative +62234 demonstrative +62240 common +62243 common +common +62247 common +62254 proper +62256 personal +62263 common +62266 proper +62269 common +personal +62274 common +personal +62277 personal +proper +personal +common +62283 common +personal +62288 common +62303 interrogative +personal +62309 interrogative +62311 personal +62313 demonstrative +62315 relative +62317 personal +62319 demonstrative +personal +62325 common +62327 common +62329 proper +62334 common +62336 personal +proper +62348 interrogative +personal +62353 personal +62355 proper +62358 proper +62360 common +62362 proper +proper +62370 personal +62373 personal +62376 common +personal +62380 demonstrative +62389 common +62391 common +62394 relative +62396 proper +62398 common +62400 personal +62402 personal +62405 common +62407 personal +62411 proper +62414 common +62419 proper +62422 proper +62425 common +62430 personal +62435 common +62442 common +62446 proper +62449 personal +62452 interrogative +common +62455 common +demonstrative +62461 personal +62466 demonstrative +62470 personal +62472 personal +62475 personal +62477 proper +62479 personal +personal +62484 common +personal +62487 personal +62489 personal +62492 personal +62499 common +62501 proper +62503 relative +62506 interrogative +common +62515 common +62517 proper +62521 proper +62524 personal +personal +62528 common +62532 proper +62534 personal +personal +demonstrative +62541 personal +62543 personal +62546 proper +62548 personal +62552 common +62554 possessive +62557 common +62559 personal +personal +interrogative +62564 proper +62566 common +62568 possessive +62573 common +demonstrative +62578 common +demonstrative +62582 common +62584 possessive +62587 common +62589 possessive +62599 common +62601 possessive +62607 personal +62609 proper +62611 common +62613 personal +62616 proper +personal +62620 common +62622 personal +62624 demonstrative +62628 demonstrative +62632 common +62636 common +62642 common +62644 personal +62646 common +62648 personal +62650 proper +interrogative +62653 common +62655 demonstrative +62664 personal +personal +62669 personal +common +62673 common +personal +62678 personal +62681 common +62685 personal +62687 common +62695 demonstrative +62698 proper +62702 proper +common +62708 proper +62710 proper +62715 common +62717 common +62719 common +62721 personal +62723 common +62725 common +62728 personal +62732 personal +62737 common +62742 personal +common +62749 proper +62752 personal +62755 personal +personal +62762 common +62765 personal +62769 proper +62774 common +62778 common +62781 personal +62784 common +62788 personal +62790 common +62793 common +62799 personal +62801 proper +62803 personal +personal +62808 personal +62812 personal +common +62815 personal +62818 personal +common +62824 common +62828 common +common +personal +62836 proper +demonstrative +62839 common +62846 common +62851 proper +62854 personal +62857 proper +common +62861 personal +62864 personal +62866 proper +62868 personal +62873 common +62876 personal +62878 common +62881 personal +62883 proper +62886 common +62889 personal +62894 personal +62897 demonstrative +62900 personal +personal +62903 common +62906 demonstrative +62908 proper +62911 personal +62918 demonstrative +62924 proper +62927 common +personal +62932 proper +62935 proper +62938 common +demonstrative +62943 proper +62947 common +62949 common +62954 proper +62957 common +62959 common +common +62970 common +personal +62974 demonstrative +62978 personal +62980 personal +62982 proper +62984 common +personal +62989 common +62992 common +62995 proper +62999 personal +personal +63006 proper +63009 personal +63011 common +63016 common +common +relative +63021 proper +63023 personal +63027 personal +63036 proper +63040 common +63042 proper +63047 common +63051 proper +63053 proper +63055 common +63059 demonstrative +63061 common +63069 common +63072 common +63076 proper +63086 proper +63088 common +63094 common +63099 demonstrative +63101 common +63107 proper +relative +63114 common +63117 proper +63120 common +personal +63125 common +63127 common +common +63131 common +63135 common +63146 personal +63149 personal +63153 personal +interrogative +63158 common +63162 common +personal +personal +63168 common +personal +63171 common +63175 common +demonstrative +63182 common +63184 proper +63186 common +personal +63190 common +63192 common +personal +proper +63197 proper +63199 proper +63201 proper +63203 proper +63206 common +63209 common +63211 relative +63215 common +common +63219 common +personal +63224 common +63227 common +personal +63231 demonstrative +63233 common +63236 common +personal +63242 demonstrative +63244 proper +63253 common +63256 common +common +63261 common +63264 common +common +63268 personal +63270 common +63275 common +63277 proper +63283 common +63286 common +63291 common +63298 common +63300 common +63303 common +63308 common +demonstrative +63311 common +63314 proper +63317 personal +63319 common +63325 common +63330 common +63338 personal +63342 proper +63347 personal +63351 personal +63353 common +63357 common +common +personal +63361 common +63366 common +63368 common +63376 personal +63378 common +63380 demonstrative +63387 personal +63391 demonstrative +63394 common +63396 common +personal +63403 common +63407 relative +63411 demonstrative +63414 proper +proper +63417 proper +63419 common +63421 proper +63426 common +63432 common +63434 proper +63438 proper +63444 common +personal +63449 proper +63453 personal +common +63458 common +common +63461 common +63463 common +63468 common +63470 proper +63473 personal +common +63477 common +63479 common +63488 common +63491 common +63495 common +common +63499 relative +63508 common +63515 common +63518 proper +63523 common +proper +63526 proper +63531 common +common +63538 common +63542 common +63548 proper +proper +63554 common +relative +63558 proper +63561 personal +63564 common +63567 common +63573 personal +63577 proper +63581 common +63586 common +63595 common +63599 proper +63605 common +63611 common +63618 proper +proper +63621 personal +63626 common +63630 common +63634 common +relative +63639 common +personal +63644 common +63651 common +63658 common +63664 common +63673 common +63676 personal +63684 personal +63686 common +63688 proper +63692 common +63701 common +63705 common +63712 common +63714 proper +63718 common +63723 common +63726 personal +demonstrative +common +interrogative +63732 personal +63736 common +personal +63743 personal +demonstrative +63753 proper +63759 proper +63762 personal +proper +common +interrogative +63767 interrogative +63769 demonstrative +63773 common +63776 personal +common +63779 personal +63781 personal +63783 personal +63786 personal +personal +personal +63791 personal +proper +proper +63795 demonstrative +63797 personal +63799 common +relative +63802 common +63804 personal +proper +63807 personal +63814 common +63819 common +personal +63823 personal +63827 common +personal +63830 common +personal +63833 common +personal +63836 common +personal +63839 proper +63841 proper +63844 common +63848 common +63850 demonstrative +63852 personal +63857 common +demonstrative +63861 common +63864 common +63869 common +63872 common +63877 proper +63885 personal +common +personal +63889 demonstrative +63894 common +63897 common +personal +63902 common +63905 common +63908 personal +63910 proper +63912 common +personal +63916 personal +63918 common +personal +63921 personal +63923 demonstrative +63928 personal +63930 common +63934 indefinite +63936 common +63938 personal +63940 indefinite +63944 proper +63951 proper +63955 personal +63958 proper +63961 personal +63964 common +63967 common +63971 personal +63977 common +personal +63980 common +63982 common +63986 common +personal +63990 common +63992 common +63995 personal +63997 common +64000 common +personal +64007 common +64013 common +personal +64016 proper +64018 personal +64021 proper +64023 common +64032 common +personal +64037 proper +64040 common +personal +64046 common +personal +64051 common +personal +64057 common +personal +64066 proper +64069 personal +64071 common +personal +64075 common +personal +64078 personal +64080 proper +64083 personal +64096 common +64099 proper +64102 common +relative +64109 common +demonstrative +64112 demonstrative +64117 proper +64120 proper +64122 common +64124 common +64128 common +64132 common +personal +64135 demonstrative +64137 personal +64139 proper +64141 common +64144 common +64146 proper +64152 proper +proper +64155 proper +64158 proper +64160 proper +64163 proper +64165 proper +64169 proper +64174 common +personal +64178 personal +proper +proper +64184 personal +64187 personal +64189 personal +64195 common +64198 demonstrative +64200 common +64204 common +64208 proper +64211 common +64216 common +64218 proper +64222 personal +proper +common +64226 indefinite +common +64230 personal +64235 personal +64240 common +64242 common +64244 common +64251 personal +64256 common +64258 common +64262 common +demonstrative +relative +64267 proper +64269 proper +64271 common +64274 proper +proper +64279 common +64282 common +64289 personal +64292 common +64296 common +64298 common +64306 common +64310 common +64314 common +64316 common +64322 common +64324 common +64327 common +64330 common +64332 personal +64334 proper +64338 common +relative +64343 proper +proper +64348 common +64351 common +64353 common +64359 demonstrative +64364 common +64366 personal +64368 proper +64373 common +64376 personal +personal +interrogative +64383 common +64386 proper +64390 common +64393 personal +64396 common +64398 demonstrative +64402 proper +64404 common +64413 proper +proper +64416 proper +proper +proper +64420 personal +64422 demonstrative +64424 personal +64426 common +personal +64431 personal +64433 personal +64436 common +personal +64439 personal +64442 proper +proper +64445 personal +64447 personal +64449 common +personal +64454 personal +64456 personal +64459 common +personal +64462 personal +64465 proper +proper +64468 personal +64471 proper +64474 personal +64478 personal +64481 personal +common +64484 personal +64486 personal +64490 personal +64492 personal +proper +64496 common +personal +64501 personal +64506 personal +64516 common +personal +64521 personal +64528 demonstrative +64531 interrogative +common +64535 common +64537 demonstrative +64540 personal +64542 personal +64545 proper +64548 common +relative +64552 proper +64554 relative +64559 common +64562 common +personal +64566 common +interrogative +64571 personal +64573 demonstrative +64576 proper +64579 proper +common +64582 demonstrative +interrogative +64585 personal +64587 proper +64589 personal +64594 interrogative +64596 personal +personal +personal +64602 demonstrative +64604 common +64607 common +64610 common +demonstrative +64617 personal +64619 proper +64625 personal +64630 interrogative +64632 personal +demonstrative +64636 common +64640 demonstrative +64644 demonstrative +64649 personal +64651 common +64658 relative +64661 proper +64663 relative +64669 personal +64671 common +64675 common +64677 proper +64681 common +64685 relative +64692 proper +64694 relative +common +64698 common +relative +64702 common +64705 relative +64708 personal +64713 personal +64716 common +64718 common +64721 personal +64727 common +64729 common +64733 personal +64735 proper +64741 common +64743 common +relative +64746 personal +64749 proper +64751 common +64753 personal +64755 common +64761 demonstrative +common +64768 personal +64770 common +64774 common +demonstrative +64778 common +64780 proper +64783 personal +64785 personal +64788 common +64790 common +relative +64793 common +64798 common +64801 common +64805 common +64807 personal +64810 personal +common +64814 proper +64819 proper +64821 proper +64826 common +64828 demonstrative +64831 personal +64834 common +64836 personal +64839 common +personal +64847 common +64849 personal +64852 common +64855 personal +64857 common +64859 relative +64862 common +64864 interrogative +64869 common +demonstrative +64872 proper +64876 personal +64879 common +64882 relative +common +64885 personal +64889 common +64893 proper +64895 common +64898 common +relative +64902 proper +common +common +64911 common +64918 proper +64920 proper +64922 proper +64924 proper +proper +64927 proper +proper +64930 proper +proper +proper +64934 proper +64936 common +64938 proper +proper +demonstrative +64946 common +64948 common +64950 proper +64952 common +64954 proper +64958 common +personal +64963 common +demonstrative +64969 common +proper +64974 common +common +64982 common +common +64987 common +relative +64991 common +64995 common +proper +64998 proper +65001 common +65004 proper +65009 personal +65013 common +65015 common +demonstrative +65019 demonstrative +65021 common +65023 common +65025 common +65035 common +personal +65043 proper +65047 common +demonstrative +65051 common +personal +proper +demonstrative +65056 common +common +65061 common +common +65065 common +personal +65074 personal +65077 common +personal +65084 common +65086 personal +65089 common +relative +65095 personal +65097 common +proper +65102 common +proper +65106 common +relative +65110 personal +common +65113 common +personal +65116 personal +65119 demonstrative +65123 proper +65126 proper +relative +65129 proper +65131 proper +65135 common +common +65138 personal +65140 relative +65143 demonstrative +65149 common +65151 common +demonstrative +65154 common +65156 relative +65158 proper +65162 common +65167 common +personal +65172 common +65174 proper +65180 common +65186 common +65188 common +65200 common +common +65204 common +65210 common +65216 personal +65218 common +65220 common +65226 personal +65230 common +65236 common +65239 common +65242 personal +65247 proper +65249 common +65253 common +65257 common +65261 common +demonstrative +65265 common +65274 common +65276 personal +65285 demonstrative +65292 personal +65297 common +personal +65300 relative +65302 proper +65304 proper +65306 proper +65311 proper +65313 proper +65315 proper +proper +65319 proper +65321 proper +65323 proper +proper +65327 common +65329 proper +65332 proper +65340 common +proper +65343 proper +65346 personal +65349 common +65353 common +65364 demonstrative +interrogative +65372 common +65381 proper +65384 common +personal +65388 personal +common +65394 proper +65396 demonstrative +personal +65403 common +personal +65408 personal +65410 demonstrative +65414 common +65417 common +65419 demonstrative +65425 common +proper +65432 common +65435 common +65439 common +personal +65443 common +65447 common +personal +65451 common +personal +65455 common +personal +common +65462 personal +common +65468 common +personal +65473 common +personal +65477 common +demonstrative +65482 common +personal +65488 common +65491 common +65494 common +65497 common +65499 common +65501 common +65503 common +common +65506 common +65509 common +65512 common +65514 common +65517 common +common +65527 relative +65530 common +common +65533 common +proper +65537 common +demonstrative +proper +65541 proper +common +65546 common +65548 personal +common +65551 common +65553 common +relative +65557 personal +65559 common +65562 personal +65564 personal +65566 demonstrative +65569 common +65571 common +65573 common +65576 common +65580 relative +65582 common +65586 common +65588 common +65594 personal +65596 personal +65598 proper +65601 personal +65604 common +65606 personal +65612 personal +65618 demonstrative +65620 personal +65622 common +65626 common +personal +65632 common +personal +65636 common +65641 common +personal +65644 common +65649 personal +65651 common +65653 personal +common +common +65657 personal +common +65661 common +personal +common +common +65668 common +65670 personal +65673 common +proper +65682 common +personal +65686 personal +65689 common +demonstrative +65692 common +65697 common +65699 personal +65701 common +65703 common +65705 common +personal +65710 common +personal +65716 common +65718 proper +65723 common +65726 common +personal +65729 common +demonstrative +65732 proper +65735 common +relative +65738 personal +65740 common +65745 common +65749 common +65751 common +65757 common +65759 demonstrative +relative +personal +65768 proper +65772 common +65775 personal +65777 common +65779 common +personal +65784 personal +65790 personal +common +65793 common +personal +65799 common +proper +65803 common +65805 proper +65808 common +personal +demonstrative +65812 proper +relative +personal +65820 common +65825 proper +65829 common +interrogative +65832 common +common +65835 proper +65837 personal +65842 personal +65845 common +proper +proper +65849 common +65851 common +personal +65856 common +65859 common +65861 personal +65864 common +65867 common +personal +65875 relative +65877 common +65879 common +personal +65883 common +65888 personal +65893 common +65896 demonstrative +65902 common +personal +65909 common +demonstrative +common +65918 common +65920 common +65923 common +65925 common +65927 common +65930 common +65934 common +common +65938 common +65940 common +65943 common +65957 common +65960 common +65964 personal +65968 indefinite +common +65973 common +65982 common +common +65985 common +65987 common +65989 common +common +65993 common +65996 common +66000 common +66003 common +66008 common +66013 proper +66015 proper +66022 common +66024 common +66028 indefinite +common +66032 common +common +personal +66037 relative +66040 common +66043 common +66051 common +66058 relative +66060 proper +66062 proper +66069 common +66072 proper +66075 personal +66078 proper +66082 personal +66086 personal +66088 indefinite +66090 personal +66094 proper +common +66097 common +66100 personal +66102 relative +66104 demonstrative +personal +66109 common +proper +proper +66113 proper +66117 personal +66120 common +66122 personal +66127 common +personal +66131 common +66140 personal +66150 common +66155 common +personal +66161 common +66164 personal +66166 personal +66171 common +66176 common +66181 common +66183 common +66187 personal +66190 personal +66192 proper +66195 proper +66199 common +66201 personal +66204 common +66207 proper +66212 proper +66216 common +common +proper +interrogative +66222 demonstrative +66224 personal +interrogative +66229 common +66231 common +66235 personal +66237 common +proper +66240 proper +66242 proper +66244 common +66246 common +personal +66250 common +personal +proper +66254 relative +personal +66260 common +proper +66263 demonstrative +66266 personal +66274 common +common +66277 personal +66280 common +66282 common +66284 relative +66286 common +66290 relative +personal +common +66297 common +66299 common +personal +demonstrative +relative +66308 common +personal +66312 common +66315 personal +66317 personal +66319 common +demonstrative +66323 personal +66325 common +66330 common +66335 common +personal +66339 common +relative +66343 common +66346 common +66349 proper +personal +66360 personal +66362 common +66366 common +common +66369 common +66371 common +66376 personal +proper +proper +66381 relative +common +66385 common +common +66388 relative +66391 common +66393 common +66397 common +personal +common +66401 proper +66404 common +personal +66407 common +66409 common +66412 common +personal +66415 personal +personal +66421 relative +66424 personal +66428 common +66430 relative +66434 common +demonstrative +66439 common +66444 common +66446 proper +66450 relative +66455 common +demonstrative +personal +66460 common +66462 common +66465 common +relative +66468 common +66472 common +personal +66476 proper +66480 common +personal +66485 common +66487 common +personal +66491 common +66494 common +personal +66497 personal +66499 personal +66506 common +personal +66510 personal +66513 common +66515 personal +66517 common +66520 common +66525 proper +66530 personal +66532 common +66537 proper +66539 common +66545 personal +66547 common +66551 common +66557 common +66564 common +66568 common +66570 common +66572 common +66580 personal +66582 common +66588 common +66590 proper +66592 proper +66594 common +66596 proper +66598 proper +66600 proper +66602 relative +66605 common +66609 personal +66615 interrogative +common +66619 interrogative +common +66622 demonstrative +personal +66625 proper +66627 common +66631 personal +common +66634 common +66638 personal +66642 common +common +66646 interrogative +demonstrative +66652 personal +66656 common +proper +66661 common +proper +proper +66665 proper +relative +personal +66669 relative +66671 common +66676 demonstrative +demonstrative +66680 personal +66682 demonstrative +66685 common +66689 personal +66691 common +66695 common +common +66704 common +66710 common +common +66716 common +66718 relative +66721 personal +66726 proper +66728 proper +common +66733 common +66737 common +66741 personal +66745 proper +66750 common +66754 personal +66761 personal +66764 common +66768 personal +66770 interrogative +66773 common +demonstrative +66779 common +66782 personal +66786 proper +66800 common +66802 personal +66807 common +demonstrative +66810 common +66813 personal +66822 common +66824 proper +66827 proper +66829 proper +66833 personal +66839 common +personal +66845 common +66850 personal +relative +66861 personal +66867 personal +66870 common +66875 common +66880 common +66885 common +66887 relative +66890 common +demonstrative +66893 common +66902 relative +66904 personal +66906 common +66916 common +66919 common +66922 common +personal +66927 common +66930 common +66933 common +66938 personal +66941 common +personal +66944 common +66946 common +proper +common +personal +66954 common +66956 common +66961 common +66963 common +66966 common +66973 common +66977 proper +personal +66982 common +66985 common +demonstrative +66990 common +personal +proper +relative +66996 proper +66998 proper +proper +67001 common +67003 common +proper +67006 relative +67009 common +personal +67013 common +67016 common +67022 common +personal +67027 common +personal +67030 common +67034 common +personal +67039 common +67041 personal +67043 common +67045 common +67047 common +67051 common +67054 common +personal +proper +67059 personal +67062 common +67064 relative +67072 common +67076 common +67078 common +67080 common +67083 common +67086 common +67088 common +67094 indefinite +67097 personal +67103 personal +67107 common +67111 common +67113 common +proper +67116 common +67118 common +67120 common +67125 personal +67129 indefinite +67132 personal +67134 relative +common +common +67138 common +67143 common +67150 common +67152 common +67158 indefinite +common +67162 proper +67165 proper +67168 common +relative +67172 common +common +proper +proper +67177 common +67179 personal +common +67184 common +67189 common +67191 common +67193 common +indefinite +proper +common +67198 proper +67200 common +personal +67203 common +67208 common +67212 common +67215 common +indefinite +67219 common +67221 common +67226 proper +proper +67229 interrogative +67232 proper +67234 common +personal +67237 personal +67239 common +67246 common +67248 common +67251 personal +67258 common +67260 interrogative +67265 common +personal +67268 common +demonstrative +67272 common +67275 common +67278 proper +67281 common +demonstrative +67287 common +67298 personal +67305 common +67307 common +67310 common +personal +67320 personal +proper +67323 personal +67325 demonstrative +67327 common +67333 demonstrative +67336 proper +67338 personal +interrogative +67342 personal +67345 common +common +67349 common +67353 common +personal +67357 common +67360 personal +67366 common +personal +67373 common +67375 personal +67382 common +personal +67386 common +67391 common +67397 demonstrative +67401 common +67403 common +67405 common +67407 common +67411 common +67418 common +proper +67426 personal +67429 personal +67431 common +67437 common +common +67440 common +67442 common +67454 common +67456 common +67459 proper +67462 common +67464 indefinite +personal +67470 common +67473 proper +common +67480 common +67482 relative +67488 common +67493 personal +67496 common +67498 proper +67500 common +67504 common +67507 common +67510 personal +67512 common +67515 common +common +67518 common +67521 common +67523 common +67526 personal +67536 common +67539 common +67541 common +demonstrative +67548 common +67557 common +67561 personal +67564 common +67568 common +67570 common +proper +67576 common +67578 personal +67582 common +67585 personal +67588 common +67596 common +67600 common +67603 common +67607 common +67617 common +demonstrative +67621 common +67626 common +67629 personal +67631 interrogative +67633 demonstrative +67636 indefinite +67638 personal +67642 common +relative +67647 common +67656 common +67660 common +67663 common +67665 personal +67668 common +67672 common +67677 personal +67681 common +67684 personal +67686 common +67688 common +67690 personal +67695 common +demonstrative +67701 proper +67703 common +personal +67709 personal +67711 common +67713 common +demonstrative +67717 proper +67720 common +67724 common +67727 common +67729 common +67731 common +personal +67734 proper +relative +personal +67740 common +demonstrative +67743 common +common +67746 common +67750 personal +67753 common +67755 proper +67757 common +common +67760 personal +67762 common +67764 common +demonstrative +67768 common +67771 relative +67774 common +67777 personal +67785 personal +67788 indefinite +67791 common +proper +common +proper +common +67799 common +67804 common +67809 personal +common +proper +67813 personal +67816 common +demonstrative +interrogative +67823 demonstrative +67825 common +67827 proper +67830 indefinite +personal +relative +67834 common +common +67838 relative +67842 relative +67844 personal +67851 demonstrative +67853 proper +67858 common +67860 common +67863 common +67865 personal +67870 relative +67872 personal +67878 personal +67882 common +demonstrative +67886 personal +67891 common +67893 common +demonstrative +67897 common +demonstrative +67903 common +67908 personal +67916 personal +67920 common +67927 common +67929 proper +67938 common +67940 common +67945 common +67949 common +67955 common +67962 proper +proper +67967 common +demonstrative +67971 common +67973 common +67975 proper +67978 proper +67983 common +67988 personal +67994 common +67996 common +68001 personal +68004 common +68006 common +68008 common +68010 common +68012 common +68014 personal +68018 common +68020 common +relative +68025 common +demonstrative +68028 personal +68030 common +68033 common +68035 common +68040 common +68044 common +68047 common +common +68050 common +68052 common +68055 proper +68057 proper +68059 proper +68061 proper +68063 proper +68065 proper +common +proper +relative +68072 common +68076 personal +68078 common +68081 common +68083 common +68088 common +68090 common +68092 proper +68096 common +68098 common +68101 common +68103 common +68105 common +68107 common +68109 common +68111 common +68115 common +68118 indefinite +68122 common +68125 proper +68127 proper +68129 proper +68133 proper +68135 proper +68138 common +68144 common +68147 common +relative +68152 common +68156 personal +68158 common +68161 proper +68164 common +68168 common +68174 common +68178 personal +68183 common +68186 common +68190 common +demonstrative +68195 common +68198 common +68203 common +68206 personal +68209 proper +68211 proper +demonstrative +68215 common +demonstrative +68220 common +relative +68223 personal +proper +68228 personal +68234 common +68237 common +personal +68240 common +common +68245 common +68247 demonstrative +68253 common +common +68256 common +68259 common +68261 common +68264 common +personal +proper +68270 proper +adverbial +68274 personal +68276 proper +68280 personal +68284 common +personal +68288 common +personal +68294 common +68296 relative +personal +68302 common +proper +68306 proper +68312 common +personal +68315 personal +68318 common +demonstrative +68321 relative +personal +68328 personal +common +68331 personal +68333 common +common +68338 personal +68340 common +personal +68344 common +personal +68347 personal +68350 personal +common +68356 common +68360 common +personal +68364 common +68370 personal +common +68375 common +68377 relative +68380 personal +68382 common +68386 demonstrative +68390 personal +68393 common +demonstrative +68397 personal +common +common +68404 proper +68407 personal +68409 common +68413 proper +68415 proper +68417 proper +68420 common +68423 common +68426 proper +68429 proper +68433 common +68435 personal +68438 personal +68442 common +personal +68446 personal +common +68449 common +68451 proper +common +proper +68456 personal +68459 proper +68463 common +personal +68467 common +68471 proper +68473 proper +68475 common +68480 common +68482 common +personal +68485 proper +68488 common +68490 proper +68493 common +personal +68501 proper +68503 common +personal +68509 proper +68511 common +proper +68515 proper +68517 proper +68519 common +personal +68524 common +68526 common +68531 proper +68533 proper +68536 personal +68539 common +personal +68544 proper +68549 common +relative +68552 proper +common +common +68557 common +proper +68560 proper +68565 common +68567 common +relative +68571 common +68573 proper +68575 common +68580 proper +68582 relative +68585 proper +common +68588 relative +68592 proper +demonstrative +68596 common +personal +68600 common +68604 common +personal +68612 relative +common +68615 proper +68620 common +relative +68623 common +68627 common +68629 common +68632 personal +68634 personal +68636 common +proper +68640 personal +personal +68643 common +68646 proper +68648 common +68654 common +68656 common +personal +68661 personal +68663 common +68667 common +personal +68671 common +personal +68674 common +proper +68678 indefinite +68683 common +68693 common +68696 common +68698 common +personal +68701 common +personal +68710 common +68712 personal +68716 personal +68718 common +68720 common +common +68726 personal +68733 personal +68735 interrogative +personal +68738 common +68740 common +68742 personal +68745 personal +personal +68748 relative +common +68756 proper +68759 common +demonstrative +68765 common +proper +68769 common +68773 common +68776 personal +68781 common +proper +common +68785 common +common +common +68790 proper +68794 common +68797 personal +68800 common +common +personal +68804 common +68806 common +personal +68809 common +proper +68812 proper +68814 proper +68818 proper +68824 personal +68826 common +68829 common +68831 common +personal +68835 common +68837 relative +68839 common +68845 common +68847 common +personal +68851 proper +68854 common +personal +68860 personal +68865 personal +68867 proper +demonstrative +68870 proper +relative +68874 interrogative +personal +68877 common +68879 common +demonstrative +68882 common +68884 common +68886 common +68889 common +common +68893 personal +68896 common +demonstrative +68899 personal +68901 common +68903 common +68905 common +proper +68910 common +68915 common +68917 demonstrative +68920 proper +68924 common +proper +common +personal +68930 common +68933 common +personal +68936 personal +demonstrative +68943 common +68949 common +68952 personal +68955 common +proper +68959 common +personal +relative +68963 common +68966 personal +relative +68973 common +personal +68981 common +personal +68984 proper +68987 proper +68989 personal +common +relative +68993 personal +68996 proper +demonstrative +relative +69000 personal +69002 common +proper +69006 interrogative +69008 personal +69013 common +demonstrative +69017 common +69019 common +69024 common +69026 common +personal +69031 common +69034 personal +69037 common +69039 common +69043 common +69045 common +69047 common +69049 common +69051 personal +common +69057 common +proper +69062 common +69064 proper +69067 common +69069 common +proper +69072 common +relative +69076 personal +69079 personal +69081 proper +69083 common +69085 common +69088 common +personal +69098 proper +69100 personal +69103 common +relative +69106 relative +69111 common +personal +69114 proper +69117 common +69119 common +relative +69123 common +69125 common +69127 common +personal +69131 common +proper +relative +69135 common +69138 common +69142 common +69144 common +proper +69147 proper +69149 personal +common +69160 common +69163 common +personal +common +69168 common +common +69171 common +personal +interrogative +common +69176 personal +69178 common +69180 interrogative +common +69183 common +personal +69187 common +personal +69190 demonstrative +69195 common +69198 common +personal +69202 common +69208 common +personal +69211 personal +interrogative +69214 common +69218 common +personal +69226 common +69229 relative +69231 personal +common +69234 common +69236 relative +69239 common +69241 common +common +69248 demonstrative +69251 common +personal +69256 common +69258 personal +69262 common +69267 common +69269 common +common +69272 proper +69277 common +69283 common +69287 common +69289 common +69293 common +69297 common +69301 common +personal +69307 personal +69312 common +69316 common +69319 common +personal +69323 common +common +69326 proper +69330 common +69334 common +proper +69338 common +personal +69343 common +69345 common +69347 common +69350 personal +demonstrative +69353 common +69355 demonstrative +69359 proper +69363 common +personal +69368 demonstrative +69370 common +common +69375 common +69378 proper +69384 common +69386 proper +69388 proper +69391 common +69395 common +common +69400 common +69403 personal +69405 proper +69408 common +69411 common +69415 common +69417 common +69420 common +69428 common +69430 proper +69434 common +69436 proper +69438 personal +69440 proper +69444 common +69449 proper +69454 personal +69458 common +relative +69465 common +69468 common +69480 common +69483 common +demonstrative +69486 common +indefinite +common +proper +69493 common +69498 common +69500 proper +69503 indefinite +69505 personal +relative +69514 demonstrative +69517 common +69519 common +69525 personal +69529 common +69531 common +69533 personal +69538 proper +69542 common +69544 common +69547 common +proper +proper +69552 common +69554 common +69557 proper +69559 personal +69566 proper +69569 common +69571 common +69578 proper +common +69584 proper +69586 common +69588 common +69591 personal +proper +69594 proper +relative +69599 personal +69602 common +69610 personal +69617 common +69619 common +proper +69624 common +69626 personal +69629 common +69633 proper +69638 common +69640 common +69642 common +69645 common +69647 personal +common +69651 personal +69653 common +demonstrative +69657 relative +69660 common +69662 common +69665 proper +69668 personal +69670 common +personal +69673 personal +69676 common +69680 common +69682 common +69684 common +69688 personal +common +69691 common +69694 common +demonstrative +69698 common +personal +69705 common +69710 common +personal +demonstrative +69716 common +69720 personal +69722 common +69724 common +personal +69728 common +common +69731 common +common +personal +69739 proper +69742 personal +69744 personal +69747 common +69751 personal +69753 relative +69762 common +69764 common +69767 proper +69770 common +69772 proper +69775 common +common +69779 proper +69785 common +69788 common +69792 proper +69794 proper +demonstrative +69803 common +proper +common +common +proper +common +proper +relative +69815 common +personal +relative +69821 proper +69829 common +personal +69834 common +proper +69839 common +69841 proper +69846 common +demonstrative +69851 proper +69853 personal +69855 proper +69857 common +69863 relative +69874 indefinite +69876 personal +69880 proper +69884 personal +69887 common +69889 common +relative +69893 demonstrative +69895 common +69897 common +69901 common +69905 personal +69911 common +personal +69915 common +69917 common +personal +69921 common +personal +interrogative +69929 common +69931 common +personal +69936 common +69938 proper +69941 personal +69943 interrogative +69945 common +69947 demonstrative +69949 personal +69953 indefinite +69956 proper +69959 common +personal +69965 common +demonstrative +69968 personal +69970 proper +69976 common +69979 indefinite +common +69984 common +69986 common +interrogative +69989 personal +69995 common +70001 common +70004 proper +70007 common +70010 personal +70016 common +common +common +70021 proper +70025 personal +70028 common +70032 common +personal +70036 proper +70039 proper +70044 common +70049 personal +70051 proper +70054 proper +70057 common +70059 common +70062 common +70064 common +70067 common +70070 personal +common +70073 proper +70076 common +70080 indefinite +70082 common +70085 common +70087 common +70091 proper +70097 personal +70100 proper +70103 personal +70105 common +70108 common +70113 common +70115 common +70117 personal +proper +proper +interrogative +personal +70125 interrogative +70127 common +70130 personal +70132 proper +relative +personal +70142 common +70145 personal +relative +interrogative +personal +70153 common +70156 personal +70162 common +70168 proper +70171 common +70175 common +personal +70181 personal +70184 proper +70188 common +70198 indefinite +common +common +proper +70203 proper +70207 personal +70209 common +70211 common +proper +70217 personal +common +70221 common +70223 personal +70228 common +70235 common +proper +proper +common +proper +70245 common +proper +common +70251 personal +common +70257 proper +common +70264 common +demonstrative +relative +70270 personal +70273 proper +70277 common +70280 common +70286 common +personal +70291 personal +70293 common +70296 common +common +70299 personal +demonstrative +70304 common +personal +70308 common +70310 common +70312 common +proper +70315 personal +70317 personal +relative +personal +70322 common +personal +70328 proper +70333 common +70337 personal +70339 common +70341 proper +common +70344 common +proper +70348 personal +70351 common +relative +70355 personal +70360 common +70366 personal +70368 common +70370 common +70378 common +70385 proper +common +common +indefinite +70393 common +70396 proper +70398 demonstrative +70401 common +70403 common +70412 demonstrative +70417 proper +70421 common +demonstrative +70426 demonstrative +70430 personal +70434 common +70436 proper +70445 proper +70448 demonstrative +70451 proper +70455 common +70461 personal +70465 proper +70467 common +personal +70473 common +70475 common +70477 common +70479 personal +70484 common +personal +common +70489 common +70491 personal +70494 common +70498 proper +70502 common +70506 personal +70511 common +70513 proper +70515 personal +70519 common +70522 personal +70526 common +70529 common +70533 personal +70537 proper +70541 common +proper +70549 personal +70551 proper +70555 common +70557 common +70564 proper +70569 personal +70573 common +70575 personal +70577 proper +70580 personal +70582 proper +70586 common +70590 proper +70592 proper +70594 proper +70596 common +70601 common +70603 common +70606 common +70609 common +70613 proper +70624 proper +70628 common +indefinite +common +proper +70633 common +70637 common +relative +70643 personal +70645 proper +proper +70648 personal +proper +proper +70654 personal +70660 personal +70664 proper +70667 proper +relative +70672 common +70675 proper +70677 indefinite +common +common +proper +relative +70684 proper +demonstrative +70688 common +70691 common +relative +70698 common +demonstrative +70701 personal +70707 common +70710 proper +70713 proper +70715 common +70718 proper +70721 personal +70724 common +70726 personal +70732 personal +70735 proper +70737 personal +relative +70743 common +70746 personal +70753 common +70755 common +relative +70759 personal +70762 proper +70765 proper +70772 common +70778 common +70780 proper +70786 common +personal +70791 proper +70795 personal +common +70798 personal +70807 personal +70815 proper +70821 common +70824 common +70828 proper +70830 indefinite +proper +common +70834 common +indefinite +70837 proper +common +proper +common +70842 common +70850 common +70854 common +personal +70857 common +70860 common +70864 common +70869 common +70873 common +70876 common +common +70879 common +70882 personal +70885 personal +proper +70890 personal +70895 interrogative +70897 common +70900 personal +70902 common +personal +70906 common +personal +70910 common +70913 common +70917 common +70919 proper +70922 proper +indefinite +relative +70926 proper +demonstrative +70930 indefinite +proper +common +relative +70935 common +70937 common +70942 common +70945 personal +70949 common +70951 common +70955 personal +70959 personal +70961 personal +70964 proper +70969 demonstrative +70972 common +70975 proper +70978 common +70981 common +70991 personal +70994 personal +common +70999 common +71003 common +indefinite +71006 common +71009 common +71013 common +71015 relative +71021 common +71023 common +71027 common +71030 common +71032 personal +proper +71040 proper +71043 common +71052 common +71057 personal +relative +71060 common +71062 personal +71066 demonstrative +71074 common +71077 common +71081 personal +71084 proper +71086 interrogative +71089 common +relative +71094 common +71099 proper +71102 common +71104 proper +71108 common +71113 proper +71116 proper +71121 proper +71125 common +71128 common +71130 common +71133 personal +71140 personal +71144 personal +71146 personal +71149 proper +71152 common +71155 personal +71157 relative +71159 interrogative +71161 common +71163 relative +71168 proper +common +common +71175 common +71181 common +71186 common +71189 personal +71192 common +personal +71196 common +71198 personal +71201 personal +71209 personal +71211 indefinite +71213 common +71216 proper +71218 personal +71225 proper +71228 proper +71231 personal +71235 personal +71246 proper +71248 personal +71250 proper +71254 common +71258 proper +71260 personal +71264 personal +personal +common +71270 personal +71279 personal +personal +71285 common +71291 personal +71293 common +71296 common +71308 interrogative +common +71311 personal +71314 proper +71318 common +71320 demonstrative +71322 common +71329 common +personal +71333 common +71336 personal +71338 common +71342 proper +71344 personal +71346 common +71349 common +personal +71354 common +71358 proper +71361 proper +relative +71364 proper +demonstrative +71368 common +proper +common +71372 common +71377 personal +71379 personal +71386 personal +71389 common +71395 personal +71398 common +71400 proper +71403 common +71406 common +71411 common +71413 common +71417 common +71420 personal +71423 common +71425 personal +71428 common +relative +71432 common +proper +71435 common +71437 proper +proper +demonstrative +71442 common +personal +71446 common +71451 proper +71455 proper +71458 common +relative +71461 proper +proper +71465 proper +71468 personal +71470 common +common +71474 common +relative +71488 common +71491 personal +71493 personal +common +71496 relative +71501 common +71505 proper +relative +71511 common +demonstrative +71514 common +71519 common +71522 personal +71528 common +71530 common +71535 common +personal +relative +71541 personal +71545 personal +71550 personal +71553 common +71557 demonstrative +71563 common +common +71568 demonstrative +71571 common +71573 common +common +71578 common +personal +71584 personal +71588 proper +71590 common +demonstrative +71594 common +71602 common +71607 common +71609 relative +71612 proper +71617 common +71619 common +71622 common +71626 personal +71628 common +71632 common +71635 proper +71638 common +71641 indefinite +71645 demonstrative +relative +71648 common +71654 personal +71657 personal +71660 common +proper +proper +71666 personal +71668 common +indefinite +71673 common +71676 common +71681 proper +71685 common +71688 common +71690 common +71694 proper +71696 proper +71699 personal +71702 common +71707 common +common +71712 personal +71715 proper +71717 personal +71720 personal +71724 common +proper +71729 common +common +71732 common +indefinite +71735 common +71738 common +71742 common +71746 personal +71748 relative +71756 common +71759 common +71762 common +71767 common +71771 common +71773 personal +proper +71782 common +71791 common +personal +71797 common +71800 common +relative +71803 common +71805 personal +71809 demonstrative +71819 common +71824 common +71828 common +71830 relative +71834 proper +71836 personal +71840 common +personal +71843 personal +71849 personal +71853 common +demonstrative +71859 common +71861 common +71864 personal +71868 common +71871 common +personal +71878 proper +71881 proper +71884 proper +relative +71887 common +71889 personal +71891 relative +71893 personal +71897 common +personal +71903 personal +71907 common +71911 personal +71915 personal +71917 common +71921 common +71923 common +71927 proper +71929 common +71931 personal +71934 common +71940 common +71942 personal +71944 common +71947 personal +71951 common +proper +proper +personal +interrogative +71960 common +71963 demonstrative +71968 common +71973 common +71975 common +71977 common +71979 common +71987 common +71991 common +71994 proper +71996 proper +71998 proper +72002 common +72009 indefinite +72011 personal +common +proper +72015 proper +relative +72019 proper +72024 proper +72027 common +proper +72031 common +common +72034 personal +72037 common +72043 common +72047 common +72049 personal +72052 common +72054 common +72058 proper +72061 proper +72063 proper +relative +72069 common +72072 common +72078 common +72080 common +72083 common +72086 common +72090 common +72093 common +72096 common +72099 common +72103 proper +72105 proper +72110 proper +72113 personal +72115 common +72120 common +72123 common +72129 proper +72131 common +proper +72135 demonstrative +72137 common +72140 proper +common +72143 proper +72148 personal +common +proper +72154 common +common +72162 common +relative +72166 proper +72169 common +72172 indefinite +72175 personal +72177 common +72183 proper +common +relative +72193 common +proper +72196 proper +72199 demonstrative +72201 common +72203 proper +72205 common +72207 common +72209 indefinite +72213 common +72216 proper +72218 common +proper +common +72231 proper +72234 common +72237 relative +72242 common +72245 common +common +72248 personal +72252 common +72254 personal +72256 common +72260 proper +72264 common +72266 common +72272 common +72275 common +72277 personal +72282 personal +72284 proper +72286 common +demonstrative +72289 proper +72294 common +72296 common +72299 common +72302 common +72305 common +72308 common +common +72312 common +72316 common +72320 common +72322 proper +72324 personal +72328 common +72331 personal +72333 common +72336 common +72340 common +72342 personal +72347 common +personal +72354 personal +72357 common +personal +72361 personal +72375 common +72378 common +72385 common +72389 common +72396 common +relative +72400 personal +72404 common +72410 common +72412 personal +72415 proper +72417 personal +72426 common +72428 common +personal +72432 personal +72434 common +proper +72439 common +72441 common +72449 common +72451 proper +72453 common +proper +72457 proper +72466 personal +72468 common +72470 common +72473 common +common +proper +72479 common +72481 proper +72484 common +72488 common +72494 proper +72497 common +72501 personal +72513 common +72515 personal +72518 proper +72524 personal +72529 personal +72531 common +72534 personal +72537 common +personal +72542 common +72546 proper +72549 common +demonstrative +72556 common +72559 common +72561 common +72566 common +72568 interrogative +72570 proper +72573 proper +72575 personal +72581 common +72588 proper +72590 proper +72595 proper +72602 personal +72605 proper +72609 common +72611 common +72613 common +72617 personal +72619 common +72625 common +72627 proper +72629 common +72634 common +72637 personal +72640 common +72642 common +common +72646 common +72650 personal +common +common +72654 relative +72658 common +72660 common +72667 common +72669 common +72674 proper +72676 proper +72679 proper +72682 common +72684 proper +72687 proper +72691 proper +72695 common +common +72698 common +72701 proper +72703 proper +72706 proper +72708 proper +72710 proper +72712 proper +proper +72715 common +72718 proper +72721 personal +72723 common +72728 common +72733 personal +72735 proper +72737 proper +72740 common +relative +72743 personal +72751 common +personal +72756 personal +72761 common +72764 proper +72769 proper +72773 proper +72776 common +72778 common +72781 common +72787 proper +common +72793 common +72795 proper +72797 common +indefinite +common +common +72802 relative +common +proper +relative +72809 common +proper +proper +common +72814 demonstrative +72816 proper +72818 proper +72822 common +72824 common +72827 personal +proper +72830 common +72835 common +personal +72840 common +72843 common +72845 proper +72848 proper +72850 common +72854 personal +72859 common +72862 common +common +72867 common +72872 common +72874 common +72880 common +common +72883 personal +72890 common +72892 common +72897 personal +common +72900 common +72904 common +72907 common +72915 common +72917 common +72922 proper +72925 proper +72928 proper +72930 proper +72932 proper +72935 personal +72938 proper +72940 personal +72944 proper +72947 proper +72949 proper +72954 common +72956 common +72958 common +72963 common +72965 common +72968 common +72971 common +72973 personal +72975 common +common +72980 personal +indefinite +common +common +72986 common +72989 proper +72994 common +72996 common +proper +73002 common +73005 common +73007 common +demonstrative +proper +73012 common +personal +73016 common +73020 common +73022 common +proper +73026 common +73029 personal +73031 personal +73035 common +73037 personal +73043 common +73046 common +proper +73050 common +personal +73053 common +73059 demonstrative +73061 common +73063 proper +common +73067 common +73070 personal +73072 common +73074 proper +common +proper +common +73079 common +proper +common +73085 personal +73088 proper +personal +73091 common +relative +73097 proper +73100 proper +common +73104 common +personal +relative +73110 common +personal +73113 common +73115 demonstrative +73117 common +73119 common +73122 proper +common +proper +73126 proper +73128 common +73130 common +personal +common +common +73136 common +proper +73141 proper +73143 common +73145 interrogative +personal +73151 personal +73156 personal +relative +73162 common +73164 common +73166 common +common +common +common +proper +73174 personal +73177 common +personal +73180 common +73182 common +demonstrative +73189 proper +73192 common +personal +demonstrative +73198 common +73200 common +73204 common +73210 common +common +73214 proper +73216 personal +73223 personal +73228 common +73231 common +73234 common +73236 personal +73239 relative +73242 common +73246 personal +73249 proper +73251 proper +relative +73255 common +personal +73259 common +73261 personal +personal +73267 common +73269 common +73271 demonstrative +73273 common +73276 common +personal +73279 proper +73284 common +73288 common +personal +73291 personal +personal +73295 personal +73299 personal +73306 common +73311 personal +73314 proper +73326 personal +73328 common +73331 proper +73333 common +73337 common +common +73344 common +personal +73348 common +73350 relative +73352 common +73356 common +73360 personal +common +common +73365 demonstrative +personal +common +common +73373 relative +73377 common +proper +73381 demonstrative +73394 common +73397 common +73403 common +73405 personal +73408 common +personal +common +relative +73416 indefinite +73418 personal +73421 personal +73426 common +73428 personal +73430 common +demonstrative +73435 common +73443 common +73445 proper +73448 proper +relative +73451 personal +73453 personal +73456 common +73458 common +73462 common +73466 common +73470 common +73472 common +73478 common +73480 common +73485 proper +73491 proper +73494 proper +73498 personal +73502 common +73504 common +73507 personal +73511 personal +73515 common +73520 common +73524 personal +73526 common +73528 personal +73530 common +common +73534 personal +73536 common +73540 common +73544 common +73549 common +73551 common +73554 relative +73558 common +73563 common +73565 common +73569 common +73576 common +73583 common +73586 common +73589 proper +73591 proper +73594 personal +73597 common +personal +73603 common +73605 common +73607 personal +73610 proper +73613 common +73615 common +73617 common +73622 proper +73627 personal +73630 common +73641 proper +73643 common +73652 common +73654 common +73657 common +73661 common +73666 common +73671 common +73673 common +personal +73676 common +73678 common +73682 common +personal +73687 common +73689 common +73701 common +73705 common +73708 common +73713 common +personal +73718 personal +73723 common +73725 proper +proper +73728 proper +73736 indefinite +common +73740 common +73742 proper +73746 common +common +personal +relative +73752 demonstrative +73755 proper +73757 relative +73759 personal +73764 common +73769 common +73773 common +personal +73782 common +73784 relative +73786 proper +73789 common +personal +73794 common +73796 common +73799 personal +73803 proper +proper +73807 proper +proper +73810 personal +73815 common +73818 common +73820 proper +73825 common +common +73828 common +73831 common +73835 common +73841 common +proper +73844 proper +73847 common +personal +73852 common +73856 common +interrogative +demonstrative +73861 personal +73863 personal +common +73867 personal +73869 demonstrative +73874 common +73876 relative +73879 common +73882 common +73885 common +73890 personal +relative +73895 common +73899 common +73902 common +personal +73907 personal +73911 personal +common +73915 common +73918 common +73920 common +73922 common +personal +73925 demonstrative +73930 common +73934 personal +73938 proper +73940 proper +73945 common +73949 proper +73953 common +73955 personal +73960 common +personal +73966 common +73973 proper +73975 proper +73979 common +demonstrative +73987 proper +73990 proper +73993 proper +73996 common +73998 common +74002 common +74008 common +personal +74013 common +74015 common +74018 personal +74020 common +74024 common +74026 personal +74028 common +74030 relative +74035 proper +74039 proper +74043 proper +74045 common +74048 proper +74052 proper +74057 common +74059 common +74062 common +relative +74070 common +74072 relative +74075 common +74077 personal +74082 common +common +common +74087 common +74092 common +74094 indefinite +74098 proper +74101 common +74107 common +74109 proper +74115 common +74117 common +74121 proper +74124 proper +74126 personal +74129 proper +74131 proper +74133 indefinite +74136 personal +74139 common +74143 proper +74146 common +demonstrative +74154 common +74158 proper +74160 proper +74163 common +74165 common +74168 common +74172 common +74176 proper +74180 common +74183 common +74189 relative +74191 common +74194 personal +74197 indefinite +74201 common +74203 proper +74209 personal +74214 common +proper +74219 common +74226 common +demonstrative +74230 common +74233 proper +74236 personal +common +common +personal +74243 common +74246 personal +74249 common +74252 common +personal +74256 common +74258 common +74260 common +74265 common +common +74268 personal +74271 common +74276 personal +74282 personal +74284 personal +74286 common +74289 common +personal +74293 interrogative +74296 common +74298 common +74301 common +74303 common +relative +74308 common +personal +74311 personal +74317 common +74319 common +proper +74323 relative +common +74330 common +74333 proper +74335 proper +74337 common +74339 common +relative +74343 common +74346 common +74348 personal +74353 personal +74355 proper +74357 common +common +74360 personal +proper +74366 common +74370 common +common +74373 common +personal +74376 demonstrative +74379 common +74381 common +74385 demonstrative +74390 common +proper +74397 personal +74401 personal +74408 common +74410 common +74414 common +74416 relative +74419 common +personal +74422 personal +74424 common +74426 demonstrative +74429 common +74431 personal +74438 common +74442 common +74445 personal +74449 common +74451 common +74454 common +74459 common +74461 proper +74463 common +74466 common +74469 personal +74473 common +74476 common +74481 common +74488 common +74490 common +74492 personal +74495 proper +74498 proper +74500 proper +proper +74504 proper +74506 proper +common +74511 common +74514 common +personal +74517 common +74521 common +74525 proper +74527 proper +74529 proper +common +74533 common +74538 indefinite +74540 personal +74542 personal +common +74546 common +personal +relative +74552 personal +74556 common +74559 personal +74563 personal +proper +74566 proper +common +74570 common +personal +74574 common +74576 common +personal +proper +proper +74582 proper +74584 proper +74586 personal +74588 common +74595 common +74599 personal +74602 common +74604 personal +74606 demonstrative +74612 common +74616 common +74618 relative +74620 personal +74630 proper +74634 common +74637 common +74643 common +74645 proper +74647 proper +74649 personal +common +74653 common +74657 common +74662 common +74665 common +74668 common +74672 personal +74674 proper +74676 proper +74679 proper +74688 common +74690 common +74693 indefinite +common +74697 proper +proper +74703 common +74705 common +74708 relative +74711 common +74713 common +74717 proper +74722 proper +74725 proper +74727 proper +74732 personal +74734 proper +74738 personal +74741 common +74744 demonstrative +74747 common +74750 personal +74752 personal +74755 proper +74758 proper +74761 proper +74763 proper +74765 proper +74769 common +74771 common +74774 common +74778 proper +74780 proper +74783 common +74788 proper +74791 proper +74796 common +indefinite +common +proper +common +common +74805 common +proper +relative +74812 proper +74814 proper +common +74818 proper +demonstrative +74821 personal +74826 personal +74834 common +demonstrative +74840 proper +74842 common +personal +74849 common +74851 personal +74854 common +74859 common +74864 proper +74868 common +74871 common +74875 common +74877 common +74881 proper +74884 common +74889 common +74892 common +74895 proper +74900 proper +74904 proper +74909 personal +74911 common +proper +74916 proper +74919 proper +74921 common +74923 common +74925 proper +74927 common +proper +indefinite +74934 personal +74939 proper +74941 personal +74945 common +74951 proper +74956 common +personal +74959 personal +74963 proper +74966 proper +74972 common +74975 proper +relative +74980 common +proper +common +common +74988 demonstrative +74990 common +common +indefinite +74995 common +74997 common +75001 common +75003 common +75005 common +75013 common +75015 indefinite +common +common +proper +common +common +proper +75024 common +75026 relative +75028 common +75030 common +75036 proper +75042 common +personal +75048 personal +75051 common +75056 common +personal +75061 personal +75065 personal +75068 common +common +indefinite +75072 common +common +75075 personal +relative +common +75081 common +personal +75084 demonstrative +75087 proper +75089 personal +75092 demonstrative +75094 common +common +75097 common +75101 relative +75103 personal +common +common +75107 demonstrative +75111 common +75113 proper +75118 common +75121 personal +75123 common +proper +proper +75128 personal +75131 personal +75133 common +75136 common +personal +75142 common +75144 common +personal +75148 proper +75151 proper +75155 common +75158 common +75161 personal +75163 common +75165 demonstrative +75167 common +75169 personal +75171 common +75176 common +relative +75183 personal +75189 common +75191 personal +75194 common +75196 personal +75198 common +75203 personal +75205 common +75208 common +75211 common +75214 personal +relative +common +demonstrative +75220 personal +75224 common +75227 common +personal +75232 common +75236 common +proper +75239 proper +75243 common +75246 personal +75248 common +75251 common +75257 common +75259 common +75264 common +75269 common +75273 common +75280 common +75282 common +75285 common +75287 personal +75292 common +75295 proper +75297 common +75302 personal +75309 common +75316 proper +75318 proper +75321 personal +75324 common +interrogative +personal +75337 common +proper +75341 personal +75344 common +personal +75348 personal +75350 common +75352 common +75358 common +personal +75362 personal +75364 demonstrative +75366 common +75368 common +75372 common +75375 personal +75378 personal +75383 personal +75386 common +75388 common +75394 common +75396 common +75400 common +75402 common +75406 common +demonstrative +75411 common +75413 common +demonstrative +75417 proper +75421 common +75429 common +75432 proper +75435 personal +75437 personal +75440 common +75445 common +75449 personal +75455 personal +personal +75461 common +75463 common +75465 common +demonstrative +75476 personal +75483 common +75488 common +75492 proper +75497 common +75503 proper +75506 proper +75509 proper +75512 common +75520 proper +75523 personal +75526 common +75529 personal +75532 common +75539 proper +75547 demonstrative +75550 proper +75552 proper +relative +personal +75556 personal +75558 indefinite +75560 personal +75565 proper +75568 proper +75572 proper +common +75576 common +75589 common +indefinite +75596 common +75600 common +proper +75603 personal +75607 common +75611 personal +75613 proper +75615 indefinite +common +75619 common +75624 common +75626 demonstrative +75630 relative +75632 proper +75634 demonstrative +75638 common +proper +75641 common +75644 proper +75649 common +75652 common +75654 demonstrative +75661 proper +75666 personal +75669 common +75672 common +75676 proper +75679 proper +75681 proper +relative +75686 common +75691 demonstrative +75696 proper +relative +75700 common +75703 common +75706 common +75709 common +75712 demonstrative +75718 personal +75722 proper +common +75727 common +75736 proper +75742 proper +75746 proper +75748 common +75750 common +75757 common +75762 proper +75765 common +75770 common +75775 proper +75778 proper +75784 proper +75787 proper +75790 common +75793 proper +75796 proper +75802 personal +75807 proper +75809 personal +75811 proper +75814 common +personal +75817 personal +75822 common +75828 common +75837 common +75840 common +75845 indefinite +75848 proper +75851 common +75853 personal +75855 indefinite +75861 demonstrative +interrogative +75868 common +common +75873 proper +75876 common +75880 personal +75884 common +75889 interrogative +75892 demonstrative +75895 personal +75897 common +75900 indefinite +75904 common +personal +75909 interrogative +75912 demonstrative +75926 indefinite +75929 indefinite +75933 proper +75938 common +75940 common +75946 personal +75953 common +personal +75957 common +75959 relative +75962 common +75964 relative +75967 demonstrative +personal +75970 personal +75972 common +75976 common +75981 personal +demonstrative +common +75985 common +common +75991 common +75995 common +75999 indefinite +personal +76003 common +76005 common +76014 common +common +76019 common +76021 common +76024 common +76027 common +76029 common +personal +76033 common +76038 personal +76048 personal +76052 personal +76060 indefinite +76063 personal +common +76069 common +76073 common +76075 common +76079 common +76081 common +76083 common +common +common +76087 common +common +76096 common +76098 common +76101 common +76106 common +76112 common +76114 relative +76118 common +76120 common +76122 common +relative +76125 common +76129 personal +76134 common +76143 personal +76145 demonstrative +76150 proper +76154 personal +76156 indefinite +common +76159 personal +76162 relative +76164 proper +76166 proper +76168 common +common +proper +76174 personal +76176 demonstrative +76180 proper +76183 proper +76186 indefinite +76188 common +proper +76192 common +76197 proper +76199 proper +common +personal +76205 proper +76212 proper +76214 personal +76222 personal +76227 common +76229 common +76234 common +76237 common +76242 proper +76248 proper +76251 proper +76254 proper +76257 common +76259 proper +76265 proper +proper +76269 personal +76274 common +76277 personal +76279 common +personal +76283 common +personal +76286 personal +76292 common +76299 common +indefinite +common +proper +proper +76306 common +relative +76309 common +76313 common +76315 proper +76317 common +76320 common +76324 common +personal +76329 proper +76337 common +76339 common +76341 common +76343 proper +76352 personal +76355 personal +76359 personal +76362 personal +76364 common +76367 personal +76370 common +demonstrative +76374 common +76376 common +76380 personal +76382 common +76384 common +76386 proper +76388 common +76390 proper +76396 proper +76399 personal +76402 common +76407 common +76409 demonstrative +76411 common +76414 common +76418 proper +76421 common +76424 proper +76431 common +indefinite +76434 common +76440 common +76442 personal +76446 common +76448 common +76450 common +76452 common +76455 personal +76457 personal +76460 personal +common +demonstrative +76466 personal +76469 common +76473 proper +76475 common +76479 common +76482 demonstrative +76484 proper +76488 proper +76491 common +76494 common +76499 proper +76502 personal +proper +76505 proper +76508 proper +76510 common +76513 common +76517 proper +76522 personal +76526 common +76532 personal +76535 common +76546 personal +76548 common +76553 proper +76557 proper +76562 common +76565 proper +76568 common +indefinite +76575 common +76577 proper +76581 common +76584 indefinite +proper +common +proper +76589 common +common +76596 common +76599 proper +demonstrative +76604 common +76606 common +76610 common +76618 proper +76622 common +proper +76625 demonstrative +76630 common +76633 personal +proper +76636 proper +76638 personal +76641 personal +76644 common +76646 common +76649 personal +76653 proper +76656 common +76659 common +76661 personal +relative +76670 common +76680 common +76683 proper +proper +76690 proper +76693 proper +proper +76698 common +76701 proper +76704 indefinite +common +76709 personal +76711 common +76718 personal +76723 common +76730 interrogative +76737 proper +common +76741 proper +proper +76744 common +common +76747 common +76755 personal +demonstrative +76760 proper +76766 common +76768 common +proper +76772 personal +76774 proper +common +76778 common +76782 personal +76785 common +76792 common +76799 common +76802 common +76809 common +76811 common +76814 indefinite +76820 common +76823 common +76826 personal +76829 common +76831 common +76835 common +proper +76838 demonstrative +76841 common +76848 proper +76851 common +76853 common +76857 proper +76859 common +76864 common +76868 common +proper +76878 common +personal +common +76882 common +76886 personal +76888 common +76891 common +76897 indefinite +76902 common +76908 common +76912 common +76914 common +proper +76918 personal +76920 proper +relative +proper +76925 indefinite +proper +76928 common +76930 common +demonstrative +76937 common +76941 personal +76943 proper +76947 proper +76950 personal +interrogative +76956 personal +76958 common +76960 relative +76963 common +76970 personal +76978 common +demonstrative +76981 demonstrative +76988 proper +76992 proper +76995 common +76998 personal +77002 common +77004 common +proper +77015 common +personal +77025 common +77032 common +personal +77036 common +common +77041 common +77043 common +77045 common +77052 demonstrative +77055 proper +77058 common +77061 proper +77063 proper +77066 proper +77072 personal +77075 personal +77077 proper +77083 proper +77087 personal +proper +77090 proper +personal +77093 common +77096 proper +77101 common +demonstrative +common +77108 common +77110 indefinite +proper +common +common +77115 common +77117 proper +77120 common +77123 common +relative +77129 demonstrative +common +77133 common +77137 demonstrative +77139 common +77141 common +personal +77151 proper +77156 proper +77158 proper +demonstrative +77163 common +77168 common +77171 common +77176 demonstrative +77178 personal +77180 common +77182 common +77189 common +proper +77200 common +personal +relative +77205 proper +77208 common +77215 common +77220 proper +77225 common +77227 common +77233 common +77235 proper +77237 proper +proper +common +proper +77242 proper +77247 common +77250 personal +77252 common +77254 indefinite +77257 proper +77259 personal +77263 personal +77267 personal +77270 common +77275 indefinite +77279 common +77287 interrogative +77293 common +77295 proper +77297 personal +77302 proper +77305 common +77309 common +77315 common +77322 common +77327 proper +77331 common +77334 common +77336 common +77339 interrogative +common +77342 relative +77347 common +77349 common +77352 proper +77359 demonstrative +77362 personal +77372 common +demonstrative +77379 common +personal +77384 proper +77388 personal +common +77392 indefinite +common +77397 common +77400 personal +77403 indefinite +77409 common +77415 common +77423 relative +77427 common +77430 common +demonstrative +77433 demonstrative +77437 common +77443 common +77445 proper +77448 common +77455 proper +77459 common +demonstrative +77463 personal +common +77469 proper +77472 common +77475 common +personal +77484 proper +77486 common +77490 proper +77493 personal +proper +proper +77498 proper +proper +77501 proper +77503 proper +77506 proper +77508 proper +proper +77511 proper +77513 demonstrative +77516 personal +77518 proper +77520 personal +77524 common +77528 proper +77532 personal +77535 proper +77537 common +77541 common +77548 common +77550 personal +77552 common +77554 proper +77556 personal +77564 common +77566 common +77569 common +77573 common +77578 indefinite +common +common +proper +77585 common +77587 common +77591 proper +77597 common +77601 common +77609 proper +77611 personal +77619 common +personal +77622 personal +77629 common +77637 common +77643 common +77650 personal +77654 common +77658 proper +77663 proper +77669 personal +77674 personal +77677 proper +77679 personal +77682 proper +77689 proper +77695 proper +77701 proper +77705 proper +77708 proper +77712 personal +77716 proper +77722 personal +77724 common +77726 common +77729 proper +77733 proper +77736 proper +77741 common +77746 personal +77748 personal +personal +77753 common +77755 relative +77759 proper +77762 personal +77765 common +77769 common +77772 common +77774 common +77776 common +77779 personal +77782 common +77793 personal +77796 personal +77800 common +77805 proper +77808 common +common +77811 common +77814 common +personal +proper +77822 common +personal +77826 proper +77829 personal +77831 personal +77837 common +77841 common +77843 personal +77846 common +77848 common +personal +77853 common +77856 common +77858 personal +77862 common +personal +77866 common +relative +77871 common +proper +77875 common +77877 common +77879 common +77883 personal +77889 common +personal +personal +77894 relative +77898 common +77901 personal +77905 common +77911 common +77921 common +77923 common +personal +77926 personal +77930 common +77932 relative +personal +77935 common +77939 common +77942 common +77944 common +relative +77949 common +77952 personal +77958 common +personal +common +77963 personal +77967 common +77970 personal +personal +77973 common +77979 common +77981 personal +77986 common +common +77989 common +77993 common +78001 personal +78003 common +78006 common +78008 common +personal +78016 common +78021 common +78023 common +78025 common +78028 personal +78032 common +personal +78038 personal +78041 common +demonstrative +78045 personal +78056 common +78058 common +proper +78061 personal +78070 demonstrative +78074 common +personal +78078 personal +78083 common +78089 common +78091 proper +78093 personal +78098 common +relative +78105 common +personal +78110 personal +78113 common +78118 personal +78121 personal +78126 proper +78132 proper +78135 proper +78138 common +78141 proper +78147 proper +78150 personal +78154 proper +78158 proper +78162 common +78166 common +78170 common +78173 common +78175 relative +78177 proper +78181 common +78185 proper +78190 personal +78192 common +78196 personal +78199 common +78201 common +78205 common +78209 common +78212 common +78215 personal +78220 common +78222 demonstrative +78228 personal +78230 common +78233 proper +78236 proper +78240 common +78242 common +78245 personal +78252 proper +78257 common +proper +78260 common +78267 personal +78269 demonstrative +78271 common +78273 common +78277 common +78280 indefinite +78283 proper +common +common +proper +78290 personal +78294 common +78296 proper +78298 personal +78300 common +78303 common +78305 demonstrative +78308 common +78312 common +relative +78316 common +demonstrative +78321 proper +78327 common +common +78332 demonstrative +78335 personal +78342 personal +78344 proper +78348 proper +interrogative +78354 personal +78356 common +78358 personal +78366 proper +78371 common +78373 common +proper +78378 personal +78382 common +78384 common +78389 common +demonstrative +78394 proper +78399 common +78401 proper +78403 personal +78406 relative +78408 proper +indefinite +proper +78412 common +78415 personal +78417 proper +78420 personal +78422 common +78428 proper +78430 personal +78432 proper +78440 personal +78445 relative +78448 common +78451 common +78454 common +personal +78461 common +78464 personal +78466 common +interrogative +common +78477 common +78479 common +78484 personal +78487 common +78489 proper +78493 common +78499 personal +78501 common +78504 common +78507 interrogative +78514 demonstrative +78516 relative +personal +78520 personal +common +78523 common +78526 personal +demonstrative +78531 personal +78535 personal +78539 common +78544 relative +78547 personal +78553 personal +78556 common +78561 common +personal +78566 personal +78571 common +78575 common +78578 proper +78581 common +78584 common +78586 personal +78594 common +78596 common +78598 common +78600 relative +78605 personal +78607 common +78613 common +78618 proper +78621 personal +78628 common +78632 personal +78634 common +78636 common +proper +78639 demonstrative +78642 common +78646 common +78649 common +78652 common +demonstrative +78660 proper +78669 common +demonstrative +78674 proper +78679 common +78681 personal +78684 relative +78690 proper +78694 common +78698 common +78700 common +78704 proper +78706 personal +78714 common +78717 personal +78720 common +78722 common +78724 common +78727 proper +78729 relative +78732 common +78734 common +78737 personal +78742 common +78745 common +78749 proper +78753 common +78755 personal +78759 common +78763 interrogative +78766 interrogative +78772 indefinite +78776 common +78780 personal +78786 common +78789 personal +78792 common +78798 common +78801 personal +78804 common +78807 common +78809 common +78813 common +78815 common +78818 personal +78824 common +78826 proper +78829 common +78832 personal +78834 indefinite +78836 personal +78844 personal +78850 demonstrative +78852 common +78861 common +78863 common +78867 proper +78869 personal +78871 common +78873 proper +78875 proper +78878 common +common +78882 personal +78884 personal +78888 common +78891 personal +78893 proper +78897 common +78900 common +78902 common +78905 common +78910 common +78912 common +common +78915 common +78917 personal +78920 personal +78922 common +78928 common +78930 personal +78933 common +78936 personal +78938 common +78942 proper +78944 proper +78949 common +demonstrative +78953 common +proper +78957 common +78960 common +78962 common +78964 common +78967 personal +78970 relative +demonstrative +78973 common +78976 common +78981 common +78983 common +78985 common +78989 common +78991 personal +78995 common +78997 relative +78999 common +79003 common +79005 proper +79014 proper +79019 personal +79024 proper +79026 common +79030 common +79032 common +79035 personal +79040 common +79043 common +79045 personal +proper +proper +interrogative +personal +79052 personal +79054 interrogative +79056 common +79060 personal +personal +79063 proper +79065 proper +relative +personal +79073 personal +79076 common +79082 common +79085 personal +79088 interrogative +79090 common +79093 common +79096 personal +79100 proper +79102 personal +79106 relative +79109 personal +79116 common +79118 common +demonstrative +79124 personal +79127 proper +79129 proper +indefinite +common +79135 common +79144 personal +79148 personal +proper +common +79152 personal +personal +79155 common +79158 personal +79163 common +79165 common +personal +79168 personal +79171 common +personal +79179 common +79182 common +personal +79186 personal +79189 common +common +relative +79197 interrogative +79204 common +personal +79208 common +personal +79212 personal +79215 proper +79218 personal +79223 personal +79225 common +79228 personal +79230 personal +79235 common +79237 proper +79241 personal +common +79244 personal +personal +79247 common +personal +79251 personal +79258 common +79262 personal +79267 common +common +79270 common +personal +79273 personal +79281 common +79284 personal +79288 personal +79291 personal +79293 common +79296 personal +79299 personal +79301 demonstrative +79303 common +79307 common +personal +79313 common +79315 demonstrative +79319 personal +79323 personal +79327 common +79329 common +79333 common +79336 common +79338 personal +79341 common +79343 common +79345 personal +79349 relative +common +79353 personal +79357 personal +79359 common +79364 common +79366 proper +79368 common +79374 personal +79378 common +79381 common +79385 interrogative +79389 common +demonstrative +79396 common +79398 personal +79400 personal +personal +79411 common +personal +79414 common +79416 common +demonstrative +79421 proper +79424 personal +79431 personal +79434 personal +79439 common +79447 personal +79458 interrogative +79464 personal +79469 common +79473 common +79477 proper +79480 personal +79483 proper +79486 common +79488 common +common +personal +79492 common +79496 common +79498 demonstrative +79500 common +79503 common +proper +79508 personal +79510 personal +79512 common +79515 proper +79517 personal +79520 personal +79523 common +common +79527 personal +79530 personal +79533 common +79537 personal +79544 common +79546 common +79551 proper +79554 common +79557 common +79561 common +79563 common +personal +79570 proper +79575 common +79577 proper +79581 proper +79585 common +common +common +personal +proper +79591 common +proper +79594 common +79596 common +79600 demonstrative +personal +79604 common +79606 proper +79608 proper +79612 common +79614 proper +79618 common +79620 common +79622 common +79624 proper +79630 common +79634 indefinite +79636 common +79638 common +79640 proper +79648 common +demonstrative +79652 common +79654 personal +79656 common +79659 common +79662 common +79667 proper +79669 personal +79672 common +79675 personal +79678 personal +79683 common +79687 common +79689 personal +79691 common +79699 personal +79701 proper +79704 personal +79707 proper +79711 common +79713 common +79717 personal +79724 relative +79727 proper +79733 demonstrative +79735 common +79737 relative +79740 common +79745 common +79747 personal +79751 relative +79754 proper +79757 personal +79760 common +79763 common +79766 personal +79768 personal +79775 personal +79777 personal +79781 personal +79786 personal +79789 common +79791 common +proper +79795 common +79801 common +79804 proper +79807 proper +79811 common +79814 common +demonstrative +79819 common +79823 indefinite +personal +79829 personal +79833 common +79837 common +proper +79840 personal +79842 demonstrative +79844 common +79847 personal +79849 indefinite +79851 personal +79854 common +79857 common +personal +79864 interrogative +79866 relative +79868 personal +79878 personal +79882 proper +79886 common +79889 indefinite +79893 personal +79895 personal +79898 personal +79901 personal +79903 personal +common +79907 relative +79909 personal +79915 relative +79917 personal +79925 personal +common +79930 common +79933 common +79938 demonstrative +79941 personal +79944 indefinite +79947 common +79950 common +79953 common +79956 common +79961 proper +79964 common +79966 common +79968 common +79973 proper +79976 proper +79978 common +79980 common +79983 common +demonstrative +proper +proper +79989 common +proper +79993 common +demonstrative +80003 personal +80007 common +80017 common +80019 relative +80021 personal +80025 common +personal +80028 relative +80031 common +80033 common +personal +80038 common +80040 common +common +80045 personal +common +80049 common +80054 personal +80058 common +80061 personal +80063 personal +80067 common +80071 personal +80074 proper +80077 common +80080 proper +80086 common +80089 personal +80093 common +relative +80098 proper +80102 common +80104 common +80108 proper +personal +80115 interrogative +common +80122 proper +80125 personal +80129 common +personal +80135 common +80137 proper +80139 personal +80143 common +80146 common +proper +80150 indefinite +80152 common +proper +indefinite +relative +80158 common +80161 proper +80164 personal +80168 proper +80171 common +80174 personal +80176 common +80179 common +demonstrative +80184 common +80192 common +80194 proper +80200 personal +80204 personal +personal +80209 common +80213 common +demonstrative +80218 common +80225 common +80227 common +80230 proper +common +relative +80238 relative +80242 relative +80244 personal +80248 demonstrative +80250 relative +personal +80253 personal +80260 demonstrative +80266 proper +80268 personal +80270 common +80274 common +80276 personal +common +80279 common +demonstrative +80285 personal +80288 personal +80294 personal +common +80298 relative +80302 proper +80305 personal +80307 indefinite +80310 common +common +80320 common +80324 common +80328 personal +80330 relative +80333 personal +80336 demonstrative +personal +80341 common +relative +80344 common +80349 common +80355 common +80360 common +80363 common +80366 common +relative +80369 personal +demonstrative +80374 common +80380 demonstrative +80382 personal +80385 common +80389 common +80392 common +80397 common +80399 common +80403 common +personal +80407 common +80409 relative +80411 personal +80418 common +80421 common +80423 indefinite +80426 proper +80428 relative +80430 personal +80436 indefinite +80439 personal +80441 personal +demonstrative +80444 interrogative +common +80448 personal +80451 common +80455 demonstrative +common +relative +80460 personal +80464 common +80466 personal +80470 personal +80473 personal +80475 proper +80481 common +80484 proper +80486 common +80491 personal +80494 common +80496 personal +80499 common +80505 personal +80507 personal +80510 common +indefinite +80513 proper +80516 proper +80519 common +80524 proper +80527 personal +80531 proper +proper +common +80536 personal +80538 common +80540 common +80543 common +80549 proper +80556 common +80559 personal +80564 common +80566 personal +80569 proper +80573 personal +80576 personal +80578 common +80582 proper +common +proper +proper +80588 common +80593 proper +80596 proper +80599 proper +80602 common +80605 common +80608 proper +80610 proper +80613 personal +80615 common +80623 proper +80626 personal +80628 common +80630 personal +80633 personal +80635 proper +common +80639 personal +80642 common +80646 proper +80650 proper +80652 proper +80654 personal +80657 common +80663 personal +80667 personal +80669 indefinite +80674 common +80678 personal +common +80687 proper +80693 common +80696 proper +80700 personal +80702 personal +80705 proper +80711 common +80713 relative +80718 proper +80724 common +80733 proper +indefinite +80738 proper +80742 common +80746 proper +80750 proper +80754 demonstrative +80757 personal +80761 proper +80764 common +proper +80769 personal +80777 personal +80786 common +indefinite +80797 relative +demonstrative +80800 personal +80803 personal +personal +80806 proper +80810 proper +80814 common +80816 proper +80819 proper +80822 common +indefinite +80825 proper +80827 common +80829 proper +80832 proper +80835 proper +80839 common +80843 proper +80845 common +80850 proper +80852 common +interrogative +80857 proper +common +80860 relative +80862 personal +80864 proper +80867 common +80875 personal +common +80878 relative +80883 common +80886 indefinite +common +adverbial +80893 common +80896 common +80898 common +common +80903 common +80907 common +80915 common +80919 common +80921 relative +80924 common +80927 common +relative +personal +80933 common +indefinite +80938 common +80941 personal +80944 indefinite +proper +80947 relative +80951 proper +80953 personal +80957 demonstrative +common +80964 proper +80968 demonstrative +80971 proper +80974 personal +80979 common +80982 personal +80984 relative +80986 personal +80988 proper +80990 proper +80993 proper +80996 personal +80998 common +81003 personal +81009 proper +81012 proper +81015 common +81020 common +81023 common +81025 common +81028 common +81030 common +81034 proper +81037 proper +81041 proper +proper +common +81048 personal +common +81051 demonstrative +81053 relative +81056 common +81060 personal +81063 proper +81069 personal +81073 personal +81077 common +personal +81081 personal +demonstrative +81089 relative +81091 indefinite +81094 common +81099 personal +81101 personal +81105 personal +common +proper +81110 common +81113 indefinite +81117 personal +81120 common +81125 personal +common +81129 proper +81132 proper +81135 personal +81137 personal +81141 proper +81144 common +81146 common +proper +81150 relative +81155 personal +81158 personal +81164 personal +common +81171 common +81173 common +81178 personal +81182 common +personal +81185 common +81188 common +81192 common +personal +81196 proper +81201 personal +81210 common +81213 common +81215 proper +81219 common +81223 common +personal +81228 common +common +81233 relative +81236 common +personal +81239 common +common +81242 common +81246 relative +common +81251 common +interrogative +81256 personal +81259 common +81264 personal +81266 personal +81270 common +proper +81273 proper +81277 relative +81281 proper +81287 personal +81289 common +81294 common +common +81299 personal +81301 common +81306 common +81309 personal +81315 personal +81322 common +81324 relative +81328 proper +81330 common +81332 common +81335 common +common +81340 common +81345 common +81347 common +81349 common +personal +81354 personal +81356 common +81359 personal +81363 common +81365 common +81368 personal +81371 common +proper +proper +interrogative +personal +81378 personal +81380 common +81383 personal +81385 interrogative +81387 common +81390 common +81392 personal +81394 proper +relative +personal +81404 common +personal +81408 demonstrative +81410 personal +81412 personal +common +81415 common +81417 relative +81419 personal +81421 relative +81423 personal +81425 personal +81428 common +81432 common +81434 relative +personal +81437 personal +81439 common +personal +81444 common +81446 common +81449 common +81451 proper +81454 common +81457 personal +common +common +81461 common +81465 common +81468 personal +81470 common +proper +81477 common +81482 proper +81485 proper +81489 common +81491 proper +81494 common +81501 common +81504 common +common +81508 demonstrative +81510 personal +81519 common +81523 common +81526 common +demonstrative +81537 relative +81542 common +81544 proper +81549 proper +81553 common +81556 common +81560 common +81563 common +81565 demonstrative +personal +81569 proper +81572 common +81575 proper +81578 common +personal +81581 common +81585 proper +81588 proper +81592 common +81594 common +common +81600 demonstrative +81602 common +81604 relative +81610 personal +demonstrative +81620 common +demonstrative +common +proper +81626 common +81632 proper +81635 proper +81638 personal +81640 proper +81644 proper +81648 common +81657 personal +81663 personal +81666 demonstrative +relative +81669 personal +81673 common +demonstrative +81678 common +81681 common +81684 proper +81688 personal +81693 personal +81697 common +81699 common +81703 common +demonstrative +81706 proper +81708 proper +81713 common +demonstrative +81718 proper +81724 personal +81727 proper +81731 proper +81733 indefinite +81735 common +common +common +proper +common +81743 common +81751 proper +common +81756 personal +proper +proper +proper +81765 proper +81768 proper +81771 proper +81778 common +81784 proper +81788 common +81793 common +81797 proper +81799 proper +81803 common +81805 proper +81807 common +81810 common +81815 proper +81817 personal +81819 personal +81823 common +81830 proper +81833 personal +81835 common +81838 proper +81840 proper +81844 personal +81847 common +indefinite +81851 common +relative +81854 common +proper +81859 common +81866 common +81871 common +81876 proper +81878 personal +common +81883 common +81886 common +81890 common +81893 common +81897 common +personal +81902 common +81905 common +81907 common +81910 common +81916 proper +81921 common +81924 common +81928 common +81936 proper +common +81939 proper +81942 common +81945 common +81949 common +81952 common +81958 proper +81965 personal +common +81970 proper +81974 common +81980 common +81985 common +indefinite +81988 proper +81994 common +relative +81997 common +82001 common +82007 proper +82011 common +82017 personal +82020 common +82027 common +82029 common +82033 common +82035 common +82039 common +82041 common +82047 common +82051 personal +82054 common +82059 proper +82062 personal +82065 common +82069 personal +82074 proper +82078 common +demonstrative +82082 common +82087 personal +82090 common +common +82095 personal +82098 common +82101 personal +demonstrative +82104 common +82106 common +relative +82109 relative +82112 common +82116 proper +proper +personal +82124 personal +82126 common +82131 personal +82134 common +82138 common +82143 relative +common +82146 personal +82150 common +indefinite +personal +82157 common +82160 personal +82163 proper +82167 common +82170 common +82172 indefinite +common +personal +82178 common +82187 common +82195 common +82198 common +82200 common +82203 common +82207 common +82212 common +82216 common +82219 common +common +82223 common +common +82229 proper +82231 common +82234 common +82237 demonstrative +82241 common +personal +82249 common +82251 common +82253 common +82256 personal +82260 relative +common +82266 proper +82269 common +82272 common +82281 personal +82283 common +82285 demonstrative +82289 common +82293 personal +common +82297 common +82301 demonstrative +82304 common +82307 common +82319 personal +82321 common +82326 common +82329 common +82335 common +82338 common +82341 common +82344 common +82347 common +82350 common +82355 common +indefinite +82358 common +82360 relative +82363 common +82369 common +82374 common +82378 common +82380 common +82384 common +82390 common +82394 common +82398 common +82402 common +82408 common +82412 common +82415 common +common +82420 common +82423 indefinite +82428 common +82432 proper +82434 personal +82436 common +82446 common +82452 relative +82454 common +82456 relative +82458 indefinite +82462 common +82470 common +82476 proper +82478 common +82487 common +personal +82491 common +82494 personal +82497 common +82503 common +82507 proper +common +indefinite +common +82515 common +common +82519 common +82523 common +personal +82532 common +82535 common +personal +82538 personal +82541 common +82544 common +demonstrative +relative +82550 common +82553 common +82561 common +82564 common +82571 personal +82581 personal +82588 personal +82592 personal +82594 common +82600 common +demonstrative +82603 common +82607 common +common +proper +relative +82612 personal +common +82620 common +82622 proper +common +82625 common +82629 relative +82634 proper +82637 common +personal +82640 personal +82642 demonstrative +82650 common +82652 common +82656 relative +82659 common +82661 personal +82668 common +82672 common +82675 common +82679 common +82682 proper +82686 proper +82688 common +82694 proper +82698 common +82700 common +82704 proper +82707 common +82710 personal +82712 common +82718 proper +82722 common +82726 personal +82729 common +personal +82732 proper +common +82736 common +relative +82740 proper +82743 common +82745 common +82750 proper +82753 proper +82756 personal +82760 personal +common +82765 common +82768 personal +82776 personal +82779 personal +common +common +personal +82787 common +82790 common +82793 common +82795 proper +82799 common +82802 relative +82804 personal +82810 common +common +82814 personal +82821 proper +82825 common +personal +indefinite +82832 demonstrative +82834 common +82836 personal +82843 common +82845 proper +82847 common +demonstrative +82853 personal +82856 personal +common +82859 personal +82863 proper +82866 indefinite +82868 common +82872 indefinite +82874 personal +82879 personal +82881 relative +82887 common +demonstrative +82890 personal +82897 personal +common +82901 personal +82904 common +82906 relative +82910 common +82912 common +82915 personal +82918 proper +82922 common +proper +82926 common +82930 common +82944 personal +82948 proper +common +82954 common +82959 proper +82961 common +82964 common +personal +82970 common +demonstrative +82974 common +82990 common +82992 common +demonstrative +82996 common +83001 common +personal +83008 common +83011 common +83015 common +83021 personal +83025 personal +83028 common +83030 demonstrative +83034 common +personal +83040 common +83044 common +83051 personal +83054 common +83056 common +83062 common +proper +proper +83067 common +83069 proper +common +proper +proper +83074 common +83077 common +common +relative +83083 common +personal +83086 common +83090 common +personal +83095 common +proper +83098 common +83101 common +common +83104 common +83106 common +common +83109 common +83111 proper +proper +83114 common +personal +83117 relative +83119 common +83121 common +83123 common +common +83128 common +83131 common +personal +83134 relative +83137 personal +83139 proper +proper +83145 proper +83147 common +83150 personal +common +83153 common +83155 common +common +personal +83159 common +proper +proper +83166 common +personal +83169 proper +proper +83173 personal +83176 common +personal +83182 common +83184 common +personal +83188 common +relative +83193 common +personal +83197 common +83199 common +personal +83203 common +personal +83209 common +personal +83219 common +83221 common +83224 personal +83228 personal +83231 indefinite +common +83234 personal +83238 personal +83240 demonstrative +83244 personal +83248 personal +common +83251 personal +83253 personal +83255 common +83258 personal +83265 personal +83272 indefinite +common +83277 personal +83283 common +83285 proper +83292 common +83297 personal +83300 personal +83303 proper +83309 common +83311 common +common +83315 common +83323 proper +83325 common +common +83328 personal +83331 common +83333 common +83340 common +83344 common +common +83347 common +83350 common +83352 common +common +83356 common +83358 common +83364 common +83368 personal +83371 common +personal +83377 personal +83381 personal +common +83384 common +83386 common +common +83389 common +83395 personal +83400 common +83403 common +83411 common +personal +83417 personal +common +83426 common +83429 common +83431 common +common +83434 common +83440 common +83443 personal +83445 common +83448 common +83450 common +personal +83453 common +83457 common +personal +83460 personal +relative +83464 common +83466 common +83469 common +83475 common +83479 relative +83484 common +83487 demonstrative +83489 personal +83491 common +83493 common +common +83499 personal +83503 common +83507 common +83516 common +83522 common +personal +83525 personal +83530 common +83534 common +relative +83538 common +personal +83541 personal +83548 common +83551 common +83553 personal +83555 common +83558 common +83565 common +common +common +common +83570 common +common +common +common +common +common +83578 common +83580 common +common +83583 common +83589 relative +83591 common +83593 common +83598 demonstrative +83601 common +83605 personal +83616 common +83622 relative +83626 personal +83638 common +83640 common +83643 common +83647 demonstrative +83651 demonstrative +83653 common +83658 demonstrative +83662 personal +83664 personal +83667 common +83669 common +83672 common +83674 common +personal +83678 common +83681 common +83688 common +83690 common +personal +83696 common +personal +83700 common +83702 personal +common +83705 common +common +83708 common +common +83711 common +relative +83717 common +personal +83722 common +common +83725 common +83727 common +83729 common +83731 common +83736 common +83740 common +83744 common +common +83747 common +common +83750 common +83753 common +common +83763 proper +83765 common +83767 common +83769 common +83779 proper +83783 common +83786 common +83788 relative +83795 relative +83797 common +83800 common +83805 common +common +83810 common +83813 common +common +83818 common +83821 common +83823 common +83826 common +83828 demonstrative +common +83832 personal +83834 common +relative +83838 common +83840 common +83844 common +personal +83847 personal +83849 common +83852 personal +83854 common +83859 common +83864 common +83868 common +83871 common +personal +83874 proper +proper +83878 personal +83883 common +83887 common +83891 common +83899 common +83902 personal +83904 common +83906 common +83909 common +common +83912 common +83916 common +83918 common +83921 common +83924 common +83929 personal +83945 common +83947 relative +83949 common +83953 common +83955 common +83957 common +83961 common +83963 common +83965 personal +83969 common +83974 common +83977 common +83981 common +common +83985 common +personal +common +83992 common +83994 common +83996 common +84000 common +personal +84003 common +84009 common +common +84012 common +84014 personal +84017 common +84019 common +common +common +84036 common +common +84045 common +common +84048 common +84050 common +relative +84053 common +84056 common +84060 common +84062 interrogative +84068 interrogative +84070 common +84072 common +84076 common +84083 common +84085 common +84087 interrogative +84090 indefinite +84093 common +personal +84096 common +84098 common +84105 common +84109 common +common +84118 common +personal +84125 personal +84129 common +personal +common +common +84134 interrogative +84139 common +84143 common +84145 common +84153 common +84155 common +84159 common +84161 common +84165 common +84169 common +personal +interrogative +84173 personal +84184 indefinite +personal +84195 relative +84197 common +84201 interrogative +84210 proper +84213 common +84232 common +84241 common +84246 common +84249 common +personal +84252 common +personal +84255 common +common +84259 common +personal +relative +84263 common +common +84266 common +84270 common +personal +84273 common +common +84276 common +84279 common +personal +84282 common +common +84288 common +common +84292 common +personal +84297 relative +84299 common +84304 common +84308 common +84315 common +84317 common +84320 common +common +84325 common +84327 personal +84330 common +common +common +84336 common +common +common +84343 common +84346 common +84348 common +common +84351 common +proper +proper +84361 common +84368 common +84370 common +84374 personal +common +84378 common +84381 proper +proper +relative +84386 common +84389 common +84392 personal +common +84395 common +84397 common +personal +84401 common +84404 common +84407 common +84409 common +84412 common +84414 common +personal +84419 common +84423 personal +84429 common +proper +84434 common +84437 interrogative +common +84440 common +84444 common +common +84449 common +common +84452 common +common +84457 common +84461 common +84464 common +84468 common +relative +84471 common +84473 common +84475 common +84478 common +84480 common +84484 common +84488 common +84492 interrogative +84494 proper +84496 common +personal +84499 common +84502 proper +84504 common +84507 common +84511 common +84513 interrogative +84515 common +84519 proper +84521 common +84524 personal +84526 common +84531 common +84535 common +84538 common +84552 common +personal +84555 common +84558 proper +84561 common +84563 common +relative +84566 common +84568 common +84570 common +84572 relative +84574 common +84577 relative +84579 common +84582 common +relative +84587 common +common +84591 common +demonstrative +84595 common +84600 common +84605 proper +84607 common +84609 common +84615 common +84618 common +84621 common +84624 common +84627 common +common +common +84631 common +84633 common +84637 common +84641 personal +common +84647 common +84651 personal +84653 common +84655 common +common +84660 common +84667 common +84670 common +common +84673 common +personal +proper +84679 common +84681 common +84683 common +common +personal +84688 proper +84691 common +personal +84695 common +common +84701 common +common +84705 common +84709 common +84712 common +common +84719 common +84721 common +84723 demonstrative +84725 common +84728 common +84734 common +84737 common +84742 common +84748 common +proper +relative +84752 common +84754 personal +84756 relative +84758 common +84773 common +84775 common +84777 personal +relative +84780 common +84782 common +84787 personal +common +84790 common +84797 common +personal +84803 common +84806 personal +common +84814 common +84816 common +proper +84821 common +84823 common +84827 common +84831 common +84833 common +84835 common +84841 relative +84848 personal +84850 common +84855 personal +84859 personal +84863 personal +relative +84874 proper +84876 common +personal +relative +84882 common +personal +84888 common +personal +84893 common +common +84898 common +84901 common +personal +proper +proper +84906 relative +84909 common +84912 common +84915 common +demonstrative +84918 relative +84923 common +84925 common +84927 common +84936 common +84940 common +common +84945 common +common +84949 common +common +84953 common +84958 common +84960 common +84964 common +personal +84967 common +84971 personal +84974 proper +84976 personal +84980 common +84988 indefinite +84995 indefinite +85002 personal +common +85005 personal +85007 common +85012 personal +proper +85015 personal +85024 common +personal +85028 personal +85031 common +85038 common +85041 common +85043 common +personal +85051 common +personal +85061 common +85064 common +personal +proper +proper +85069 relative +85072 common +85075 demonstrative +85079 common +85081 common +85084 common +85089 common +85091 common +85096 common +85098 common +85101 relative +85106 common +common +85110 common +85112 common +85117 common +85121 common +85123 proper +85125 proper +85133 common +85135 common +proper +relative +85139 common +85146 common +85150 common +85156 common +85163 common +85165 common +85168 common +85170 common +85174 common +proper +proper +85188 common +85192 common +85196 common +85199 common +85202 common +85204 common +85210 common +85212 common +85221 common +85223 common +85226 common +85228 common +85231 common +85236 proper +proper +85243 common +85246 common +85248 common +85253 common +85256 common +85258 common +common +85264 common +85267 common +85276 common +85284 common +85289 common +85294 common +85297 common +85302 common +85305 common +85309 common +85312 common +85314 common +85317 proper +proper +85320 common +personal +85323 interrogative +85327 common +85330 common +85334 relative +85337 common +85342 personal +85346 relative +85349 proper +proper +85353 common +personal +85358 personal +85361 common +85364 common +85368 proper +85373 common +85375 common +85378 personal +85380 common +common +85388 common +85390 common +personal +85395 common +85397 demonstrative +85402 personal +common +85408 common +85410 common +85414 personal +85416 common +85423 common +85428 proper +85433 personal +85436 proper +85442 common +personal +85447 relative +85450 common +85454 relative +85458 common +85461 personal +85463 personal +85468 common +85472 common +85474 proper +proper +85480 common +85484 personal +common +85490 common +personal +85495 common +personal +common +common +85500 common +85503 personal +85505 common +85512 common +personal +common +common +85517 common +85519 common +personal +85527 common +85530 common +85532 interrogative +85538 common +85541 common +85547 relative +85549 personal +common +85552 common +common +85555 relative +85558 common +85560 common +85562 common +85564 common +85566 common +85568 common +85571 common +85573 common +85577 common +85579 relative +85581 common +common +85587 common +85590 common +85595 common +85597 common +personal +85603 common +personal +85607 common +85610 common +85613 common +85618 common +personal +85622 common +85624 common +85627 common +85629 common +85634 common +85636 interrogative +common +85641 relative +85646 common +demonstrative +common +85654 common +85658 common +85661 common +personal +85664 common +85667 common +common +85672 common +85674 common +common +85678 common +85680 common +common +85684 proper +proper +85687 common +personal +85690 common +85694 common +85698 common +85701 common +85703 relative +common +85709 common +85712 common +85714 common +85719 common +85723 common +85725 common +85730 common +85735 common +85741 common +85746 common +85750 personal +85753 common +85756 common +personal +85759 personal +85762 common +85765 common +85767 proper +85771 personal +85780 common +85786 common +85788 common +85790 common +85794 common +85798 common +personal +85804 common +85810 common +85813 relative +85817 personal +85819 common +common +85823 common +common +85826 interrogative +85829 common +common +85835 common +85841 common +85845 common +85851 common +85856 common +85859 common +85862 common +85865 personal +85867 common +85870 common +common +85874 personal +85877 common +indefinite +85882 common +85884 common +85887 personal +85891 personal +85893 common +85896 common +demonstrative +85899 common +85902 common +common +85907 common +85909 personal +85912 personal +85917 common +85921 common +85930 personal +85932 common +85937 common +85940 common +85944 personal +85946 common +85950 common +85953 common +85956 common +85961 common +85965 personal +85971 common +85973 relative +85979 relative +85981 demonstrative +85984 relative +85986 demonstrative +85990 relative +85993 demonstrative +85997 common +86003 personal +86005 personal +86010 personal +common +86018 personal +demonstrative +86023 common +personal +86030 personal +86039 relative +86044 relative +86048 demonstrative +86052 relative +86055 demonstrative +personal +86059 personal +86061 personal +86066 personal +common +86071 common +personal +86079 personal +86086 common +86088 common +86092 common +86096 common +86099 common +personal +86103 common +86105 common +personal +86109 personal +86112 common +86114 common +86119 common +personal +86122 common +personal +interrogative +personal +86129 common +86131 common +demonstrative +common +86135 common +86137 proper +proper +86140 common +personal +86145 personal +personal +86148 common +86150 common +common +86154 common +common +common +86159 common +86163 proper +proper +86167 common +86169 common +86171 common +86173 proper +proper +86176 personal +86179 common +86181 common +86184 common +86189 common +86191 relative +86195 common +86197 common +86199 personal +common +86203 common +common +common +86208 common +86211 common +86214 common +86217 common +86219 common +86222 personal +86227 common +86230 common +86234 common +86238 common +86243 common +86246 common +86249 common +86251 common +common +86255 common +86257 common +common +86260 common +86263 common +86265 common +common +86268 common +86271 common +86273 common +86282 common +86284 common +86289 personal +86293 common +86296 common +86298 common +common +86302 personal +86305 indefinite +common +proper +86310 demonstrative +86313 personal +86316 proper +86318 personal +86321 common +86324 common +86327 common +common +86330 common +86334 common +86338 proper +86343 personal +86348 proper +86354 common +personal +86360 personal +personal +common +86365 common +common +86370 common +86373 common +86378 common +86384 common +86386 common +86388 common +86392 relative +common +common +86396 demonstrative +common +common +86403 common +common +86407 common +86410 common +common +86413 relative +86415 common +86417 common +personal +86420 common +86423 common +personal +86427 common +common +86431 common +86433 common +86435 common +common +86439 proper +86451 common +86454 common +86460 personal +common +86464 common +86466 common +86468 common +86470 common +86472 common +86476 common +86478 common +86487 common +86490 personal +86492 common +86496 common +86498 common +86501 common +86503 common +86505 common +86507 common +86513 common +86525 personal +86527 common +86529 common +86531 personal +86533 personal +86535 personal +86538 common +86540 common +86542 common +personal +86546 common +86549 common +86553 common +86555 relative +86557 interrogative +86562 relative +86567 common +86573 common +86576 common +personal +86580 interrogative +86587 personal +86589 common +86591 common +86597 common +86599 interrogative +86601 common +86603 common +86606 common +86616 common +86623 common +86627 relative +86633 common +86635 common +personal +86640 personal +86644 common +86646 relative +86648 demonstrative +86652 relative +86654 demonstrative +86658 relative +86660 demonstrative +86664 interrogative +86667 demonstrative +86670 common +86672 personal +interrogative +86675 personal +86677 relative +86680 common +86685 personal +86688 personal +86693 personal +86696 personal +86698 interrogative +86702 common +common +86706 interrogative +86709 proper +proper +86716 relative +86721 common +relative +86726 personal +interrogative +personal +86732 common +86734 proper +common +86737 common +86739 common +86741 common +86743 common +86745 common +86747 common +86752 personal +86756 common +86759 common +common +86763 demonstrative +86769 personal +86774 common +86776 common +86778 common +86780 common +86786 common +86788 common +86790 common +86792 indefinite +common +86796 personal +86800 common +86802 common +86805 proper +proper +86808 common +personal +common +86813 proper +86817 personal +86819 common +personal +86822 common +86825 common +personal +86831 common +86833 common +personal +86837 personal +personal +common +86843 proper +86846 common +personal +86850 personal +86852 common +relative +86855 proper +relative +86858 common +86861 common +86864 common +86867 common +86870 common +86873 common +relative +86876 common +86879 relative +86881 proper +86884 common +86889 common +86893 common +86897 relative +86901 common +86903 common +86909 proper +demonstrative +proper +86915 common +proper +86918 common +86921 proper +86923 personal +common +demonstrative +86929 common +86931 common +demonstrative +common +86935 common +86938 common +86940 common +86943 common +86945 common +86947 common +demonstrative +86951 common +demonstrative +86957 proper +common +86964 proper +common +86969 proper +86971 common +personal +86978 indefinite +86985 common +common +86988 common +86992 common +86998 personal +87008 proper +87012 proper +87015 interrogative +87018 common +87021 common +87026 proper +87030 relative +87035 relative +87048 common +87052 common +87054 proper +87058 demonstrative +87060 personal +87064 personal +87066 common +personal +87072 common +personal +87077 common +87080 relative +87084 relative +87089 personal +interrogative +87095 common +personal +interrogative +87100 common +87102 interrogative +87104 personal +87108 common +87112 common +87115 interrogative +personal +87123 common +common +87126 common +87130 common +87132 common +87134 relative +87136 common +87138 relative +87140 common +87144 common +87148 common +87153 personal +87157 common +common +common +87162 common +87167 common +87169 common +personal +87172 common +common +relative +87177 common +relative +87181 personal +87189 common +87194 proper +87199 common +personal +common +personal +87212 common +87215 personal +87217 common +personal +personal +87222 common +common +87226 proper +87230 proper +87234 common +87236 common +proper +87240 common +87242 common +87244 common +87247 common +87252 common +87255 common +87259 proper +87262 common +proper +87265 personal +common +87269 proper +87274 proper +87277 interrogative +87280 common +87284 common +87286 common +87288 common +87291 common +87293 proper +87295 common +common +87298 common +87302 interrogative +87306 common +87310 common +87313 common +87315 common +87321 proper +common +common +87325 common +common +87331 personal +87334 common +87337 common +87340 common +87343 common +87346 common +87348 personal +87350 common +87353 personal +87355 common +common +87361 common +87366 common +common +87374 common +87376 common +87380 common +common +proper +87384 common +87389 proper +87393 common +87396 common +87399 common +87402 personal +87406 common +common +87414 common +personal +interrogative +87420 common +demonstrative +87423 proper +87426 interrogative +87430 common +demonstrative +87433 proper +87438 interrogative +87441 personal +87443 common +87447 common +personal +87452 common +personal +demonstrative +87457 common +87459 common +relative +87467 common +personal +common +proper +87475 common +personal +87479 common +personal +87486 common +87489 common +87491 common +87494 common +87498 common +87503 personal +87509 common +87513 proper +87517 common +87524 personal +87528 relative +87531 common +common +87538 relative +87544 relative +87563 common +87572 common +87574 proper +87576 common +interrogative +87580 common +personal +87584 common +87586 common +87589 common +87591 common +proper +87602 common +87605 common +personal +87610 common +87612 common +87614 common +personal +87619 proper +87623 proper +87625 personal +87627 personal +87630 common +87632 common +87635 personal +87637 proper +87643 personal +87649 personal +87655 proper +87659 common +87662 common +personal +87665 common +87674 common +87676 common +personal +87682 personal +proper +87686 common +proper +common +proper +87693 common +87695 common +personal +relative +87703 proper +interrogative +87707 common +87711 common +87714 proper +common +87717 common +personal +87721 common +personal +87724 personal +87730 common +personal +87733 interrogative +87735 personal +87737 common +87739 personal +87741 common +relative +87745 common +87747 proper +87754 common +common +87757 common +common +87762 common +87765 common +87768 common +87771 common +87773 interrogative +relative +87776 proper +demonstrative +87782 common +87791 personal +87793 common +common +common +common +87801 common +87808 common +87810 proper +87814 common +personal +87817 common +87820 common +87823 common +87826 common +personal +87830 common +personal +87837 common +personal +87852 personal +common +87855 common +87857 common +87861 personal +87865 common +personal +common +common +87871 common +personal +common +common +interrogative +87878 common +personal +87882 personal +87884 common +87888 relative +87890 personal +common +common +87894 common +personal +87900 personal +87902 common +87905 indefinite +87907 personal +87911 common +personal +common +common +interrogative +87917 common +87920 common +87926 common +87930 common +87934 common +87938 common +87941 indefinite +87943 common +87946 personal +common +87951 personal +87953 common +87955 common +87957 common +87959 common +87964 common +87969 personal +87971 common +87975 common +personal +87980 common +87982 personal +87986 common +87989 personal +87991 common +88001 common +88004 common +common +88009 personal +88013 common +88015 common +common +88021 common +88024 personal +common +common +88030 common +88033 personal +88041 common +88047 common +88050 personal +88053 personal +88057 common +common +88062 common +88065 common +interrogative +88068 demonstrative +88071 common +88075 common +88077 common +88080 personal +88083 common +demonstrative +88089 personal +88092 common +88094 common +88096 proper +88099 relative +88101 common +88103 common +88108 proper +88114 proper +88118 common +88120 proper +88122 demonstrative +personal +88126 personal +common +88131 common +personal +88136 common +88139 personal +88143 common +88147 common +88151 common +88154 common +88156 common +88159 personal +indefinite +88163 common +88168 demonstrative +common +88172 demonstrative +88177 common +88180 personal +88186 common +88190 common +88196 common +common +88199 common +88201 common +common +88206 common +personal +88211 common +personal +88214 interrogative +88216 common +common +88219 interrogative +common +personal +88224 interrogative +88226 personal +88229 personal +88232 personal +88235 personal +88238 personal +88241 personal +88243 common +88246 common +88249 common +88253 common +88255 common +personal +88259 common +personal +common +88266 common +88269 common +personal +88275 common +demonstrative +88280 common +88282 common +88286 personal +interrogative +88289 common +88291 common +88302 common +88305 personal +88310 personal +88314 relative +88325 common +88327 common +common +88333 common +88335 common +88339 common +88344 common +88350 common +88353 proper +88358 personal +common +88362 common +88366 common +88369 personal +88371 common +88374 common +88376 common +88378 common +88381 common +88387 common +88393 common +88397 common +88401 common +88405 common +88407 common +88416 common +88418 personal +88421 common +personal +88425 common +88429 common +88432 common +88435 common +88438 common +88441 common +88444 common +88449 common +88467 personal +88481 personal +88491 common +88496 personal +88499 common +88503 personal +88507 common +88509 common +88512 personal +common +personal +88517 common +88523 personal +88525 personal +88529 personal +88531 demonstrative +88533 common +common +88538 common +personal +88553 common +common +88560 common +88564 common +88569 common +88576 common +88579 common +common +88585 personal +common +88590 common +88592 common +88596 common +88605 common +88611 common +88613 personal +88615 common +common +88618 personal +88632 common +88635 common +common +88640 common +88646 common +88652 common +88657 common +88660 demonstrative +88662 common +88665 common +common +88670 demonstrative +88675 common +88678 common +88680 common +88683 common +88685 common +88688 common +88690 common +88693 common +88695 common +88702 personal +88709 common +88723 indefinite +88725 common +88728 common +demonstrative +88736 personal +88738 personal +88740 common +88747 common +common +88750 common +88753 demonstrative +88755 common +88757 common +88759 personal +88761 common +88766 personal +88768 common +88773 common +88777 common +88782 common +88784 common +88788 common +88790 common +88793 common +88797 common +88799 common +88801 common +88803 common +88805 common +88807 common +88811 common +proper +proper +88816 common +common +88821 common +88826 common +88830 common +common +88833 relative +88840 common +88859 common +personal +88862 personal +interrogative +88868 common +88871 common +88880 common +88882 personal +88885 relative +88887 common +88889 common +88891 relative +88894 common +88899 common +88904 common +common +88910 common +88915 common +88920 common +88926 common +88929 personal +personal +88934 personal +88941 common +88947 common +88957 common +88961 demonstrative +proper +88973 personal +interrogative +88977 common +personal +88981 personal +interrogative +88985 common +personal +88991 common +88993 common +88997 personal +88999 common +89001 personal +89004 common +89007 common +89010 common +89014 personal +89016 personal +common +89020 common +89023 personal +89026 demonstrative +89033 common +common +89036 common +89041 common +proper +89047 personal +89052 indefinite +89055 demonstrative +89060 common +89062 common +personal +89067 common +89071 common +personal +demonstrative +89076 relative +proper +89082 personal +89089 common +89091 common +common +89094 common +89096 common +89098 common +89100 common +89102 common +89107 demonstrative +89110 proper +89113 common +89117 common +89123 common +89127 common +89130 personal +89133 common +89136 common +89138 common +89145 common +89148 common +89154 common +89157 common +89160 relative +89162 common +personal +89165 personal +common +relative +89170 personal +89174 common +89179 personal +89181 relative +89192 common +89195 relative +89198 common +common +89203 personal +89207 common +89213 personal +89216 personal +89224 common +89228 proper +89230 personal +89236 common +89239 personal +89242 personal +89244 relative +89249 common +89254 common +89258 common +89260 common +89262 common +89266 common +89268 common +89271 common +89273 personal +89278 personal +89280 proper +proper +89286 common +89289 common +89291 common +89293 common +personal +proper +proper +89299 personal +89303 proper +89305 personal +89307 common +89309 common +89312 proper +common +common +89317 common +common +89323 common +89325 common +89328 common +89330 common +89333 common +89337 demonstrative +89339 personal +89341 common +89344 common +personal +89350 common +89354 common +personal +89360 common +89363 common +89366 personal +89369 common +89372 proper +89376 common +89378 proper +89383 common +89385 personal +common +89390 common +89392 common +89394 personal +89396 common +89398 common +89405 personal +89408 common +89410 common +common +89414 common +personal +89418 personal +personal +89421 personal +89424 personal +89427 common +89431 common +89434 personal +89439 personal +89441 common +89444 personal +89447 common +89450 personal +89453 common +89457 personal +common +proper +proper +89463 common +89466 common +89468 common +89472 common +89474 common +89478 common +89483 common +89485 proper +proper +89490 common +89495 indefinite +relative +89499 proper +89501 personal +89503 common +common +common +89507 common +89509 common +common +89512 common +89514 common +common +common +89518 personal +89520 proper +89525 proper +89528 common +89530 proper +89538 proper +89543 common +89549 relative +89553 personal +89555 relative +89567 personal +89571 common +89575 common +demonstrative +89578 common +89583 personal +89586 common +89592 proper +89597 personal +89600 personal +89604 personal +89607 common +89613 proper +89619 proper +89621 proper +common +indefinite +89632 proper +89636 common +89638 personal +89643 personal +89646 common +89653 personal +89655 demonstrative +89659 personal +89661 common +demonstrative +89665 personal +89667 proper +89673 personal +89675 common +common +proper +89680 common +89684 common +personal +proper +proper +89691 common +89693 common +personal +89696 personal +89699 common +89701 personal +89704 common +89712 proper +89715 common +personal +89719 proper +89726 common +89729 personal +89731 common +common +89734 personal +89737 common +89739 common +89742 personal +89746 personal +proper +89749 common +personal +89752 common +89754 common +89757 proper +89759 personal +89762 common +89768 personal +89771 relative +personal +89774 common +89777 personal +89779 common +89782 personal +personal +89785 proper +89787 proper +89790 personal +89792 proper +proper +relative +89797 common +personal +89800 personal +common +89803 relative +89806 personal +89812 common +89814 common +89818 common +personal +common +89822 proper +89825 personal +relative +89828 common +89830 proper +89832 proper +89834 proper +relative +89839 personal +89841 proper +89843 proper +89846 personal +89848 common +personal +relative +89855 common +relative +89859 personal +89862 proper +89864 proper +89867 personal +89869 common +89871 proper +89874 personal +89876 proper +89878 common +89881 personal +89883 proper +89887 proper +89892 proper +89894 proper +89897 personal +89902 proper +89906 common +89908 proper +89910 proper +89914 common +89916 proper +89919 relative +89923 common +89925 proper +89929 common +89932 common +personal +89935 personal +89937 proper +proper +proper +proper +proper +89945 personal +common +89948 proper +89950 proper +proper +89954 common +personal +89957 proper +89961 personal +89965 personal +89967 common +89970 personal +89972 common +89975 proper +89977 common +89979 personal +89983 common +89986 common +89989 common +relative +personal +89997 personal +90000 demonstrative +90002 common +personal +proper +90009 personal +common +90014 common +90016 common +90019 common +90024 personal +common +90031 personal +90035 personal +90048 common +90050 common +90053 proper +90056 common +personal +90059 common +90061 common +90063 common +personal +proper +90067 personal +90069 personal +proper +90073 personal +90075 proper +90077 proper +90079 proper +90082 personal +90084 personal +personal +proper +90090 common +90092 common +90094 personal +proper +90098 personal +90102 common +90104 personal +proper +90107 common +90109 common +90111 proper +90113 common +90117 personal +90121 common +personal +90125 common +proper +proper +90129 common +common +common +90139 common +90142 common +90145 common +90147 common +common +90152 common +90156 common +90158 proper +proper +relative +90162 common +90165 common +90169 proper +90171 common +proper +proper +90175 common +common +90178 proper +90180 common +90182 common +90184 common +90188 proper +90191 proper +proper +90200 common +90202 common +personal +proper +proper +90208 common +personal +90211 personal +personal +common +90215 common +90217 common +common +personal +90221 common +proper +proper +90226 common +90229 personal +90232 common +90234 common +90237 personal +90239 proper +proper +90246 personal +90249 common +90252 common +90255 common +90257 proper +90260 personal +90262 personal +90267 common +90270 common +90272 common +personal +proper +proper +relative +90279 personal +90281 common +90285 common +90287 common +personal +proper +proper +90293 common +90295 relative +90298 common +90300 common +personal +proper +proper +90305 common +personal +90308 common +90310 personal +90313 common +90315 common +personal +proper +proper +90328 personal +common +90336 common +90341 common +90343 common +personal +90346 personal +90348 personal +90351 proper +90353 common +90355 personal +90359 demonstrative +90362 personal +90365 personal +90367 proper +90369 personal +proper +90372 personal +proper +90375 personal +proper +90379 proper +90381 proper +90384 personal +90388 common +proper +90394 personal +90398 proper +90400 proper +90403 indefinite +90409 common +90415 proper +common +90421 indefinite +90426 personal +proper +90434 common +common +90440 common +90442 proper +90446 common +90449 common +90452 common +90457 personal +common +common +90465 common +90470 common +90477 common +90479 common +90481 common +demonstrative +90486 common +90488 common +90490 common +90495 common +90497 common +90501 common +90504 common +90506 common +90509 common +90512 common +90514 common +90521 common +90524 proper +common +90528 personal +90530 proper +90534 common +90536 common +common +90539 personal +90545 proper +proper +common +common +90550 common +common +90556 common +90559 common +90565 common +90568 common +90570 common +90573 common +personal +90580 common +90591 common +90594 common +90603 common +90606 common +90615 common +90624 common +90633 common +90636 common +90639 personal +personal +90643 proper +proper +relative +90647 personal +90649 common +common +90652 common +90654 common +90656 common +90663 common +90665 common +personal +90669 personal +90673 common +common +90676 common +90678 personal +90680 common +90682 common +90686 indefinite +90689 personal +90692 proper +proper +90695 demonstrative +90697 personal +90699 common +90702 common +90705 common +90709 personal +90712 common +personal +90716 common +personal +90721 common +common +90725 common +common +90728 common +90731 common +personal +90736 common +common +90740 common +common +90743 common +90750 common +90752 common +demonstrative +90756 common +90758 common +demonstrative +90764 common +common +90767 common +90770 relative +90773 common +90776 common +90778 common +personal +relative +90783 common +90785 common +demonstrative +90794 common +90796 common +90801 relative +common +90806 common +90811 common +common +90815 relative +90818 common +90821 personal +90823 personal +90826 common +90829 common +90832 common +90837 common +90839 common +90841 interrogative +common +90846 common +90850 common +90852 common +90855 personal +90860 common +90866 common +90868 common +90871 personal +90873 common +90875 common +90879 common +90883 common +90889 common +90891 personal +relative +90899 common +common +90904 common +90910 common +90915 common +90917 common +90919 common +personal +90936 personal +90941 interrogative +90943 common +common +relative +90947 personal +90949 personal +common +proper +90953 common +personal +90958 personal +90967 proper +common +personal +90972 common +90988 personal +common +90991 common +90997 common +91003 indefinite +personal +91006 proper +91009 personal +proper +91012 common +91015 interrogative +91017 proper +91019 interrogative +91021 proper +common +91024 relative +91030 common +91032 personal +91034 proper +91038 common +91045 indefinite +91052 common +91065 common +91070 common +91073 common +91075 common +common +common +common +91082 common +91084 common +91087 personal +91090 common +common +91104 common +91110 relative +91112 proper +proper +91116 indefinite +91120 common +common +common +common +91125 common +common +common +91130 common +91135 common +91139 common +91144 common +interrogative +91148 common +personal +91153 indefinite +91155 common +relative +91158 common +91161 indefinite +91163 common +91167 personal +91173 common +91177 common +common +91182 common +91184 common +91186 personal +91189 indefinite +91191 common +91193 common +91196 demonstrative +91198 common +91201 common +91203 common +91206 relative +91208 personal +91210 personal +91213 indefinite +91218 personal +91221 common +demonstrative +91230 common +91232 common +demonstrative +common +91237 common +91247 common +personal +91251 common +91254 common +91264 common +91267 personal +91270 proper +91272 proper +91274 proper +91276 common +91278 common +91280 common +91286 personal +91288 personal +proper +91291 proper +common +91294 personal +91296 common +91298 common +proper +91301 common +common +common +91309 common +91312 indefinite +91315 personal +91322 personal +91326 common +91329 personal +91333 personal +91338 demonstrative +91343 personal +common +91349 common +indefinite +91356 common +relative +91363 common +91367 common +91369 common +91373 common +91378 common +91380 common +demonstrative +91384 personal +91386 proper +91388 personal +91391 personal +91396 relative +91409 interrogative +personal +91414 interrogative +relative +91422 interrogative +91433 personal +91441 personal +personal +91447 common +personal +91450 common +91456 common +91459 common +91461 common +91463 common +personal +91467 proper +91469 personal +91472 proper +personal +91476 personal +91478 personal +91481 personal +91486 common +91502 common +91510 common +91512 common +91514 common +91520 personal +91522 demonstrative +91525 common +personal +91532 common +91535 proper +91539 common +91542 proper +proper +91546 common +personal +personal +91552 personal +common +personal +91557 demonstrative +91560 personal +proper +relative +91564 personal +common +91570 common +relative +personal +91575 common +personal +91579 proper +proper +91585 common +91591 personal +91593 personal +91595 indefinite +91600 personal +91603 common +91609 common +91614 common +91618 common +91620 common +91622 common +91625 common +interrogative +91629 common +91632 personal +91635 common +91637 common +common +91642 personal +common +91645 demonstrative +common +relative +91651 common +91653 indefinite +common +91656 common +91659 personal +91670 personal +91673 common +demonstrative +91677 personal +91681 common +91685 common +91692 demonstrative +91696 common +91698 common +proper +91701 personal +91705 common +91708 common +91710 common +personal +proper +91715 demonstrative +91717 proper +91719 common +91721 common +91724 common +91728 common +91730 common +91734 common +personal +91740 common +91743 common +91748 common +91752 common +91759 common +personal +proper +91767 common +91771 common +common +91774 common +91778 common +91780 common +91782 personal +91785 common +91788 common +91792 common +91794 common +demonstrative +91798 common +91802 common +91808 common +91813 personal +91817 indefinite +common +91821 common +91823 common +91825 common +91827 common +91829 common +91833 demonstrative +91837 interrogative +personal +91845 personal +91851 common +91857 personal +personal +91860 indefinite +personal +common +91883 common +91888 personal +91891 common +91894 common +91899 common +91907 common +91913 common +demonstrative +91917 common +personal +91924 personal +91927 relative +91933 common +personal +91936 common +91938 common +91941 demonstrative +91948 common +personal +91952 common +91955 personal +91957 interrogative +91962 interrogative +91967 personal +91972 demonstrative +common +91979 common +common +91986 common +91988 common +91990 common +91994 common +91996 common +91998 common +92000 common +92002 common +92005 common +common +92009 demonstrative +indefinite +92020 common +92022 common +proper +proper +92028 common +92030 common +personal +92033 personal +92040 personal +92044 personal +92047 indefinite +92049 common +92051 common +92054 common +92056 common +92059 common +92061 demonstrative +92063 demonstrative +92067 common +92070 common +92073 common +92076 common +92078 common +92081 common +92084 common +92087 personal +92091 common +personal +92097 common +personal +common +proper +92105 common +92107 proper +92109 common +common +92120 common +92122 common +92130 common +92136 common +92138 common +92142 common +92144 common +92146 relative +92148 common +92151 common +92159 common +92166 common +personal +common +92171 personal +92173 common +92175 relative +92178 common +92182 personal +92185 common +92189 common +92192 common +personal +92196 relative +92199 common +common +92206 common +92209 personal +common +92216 common +92219 common +92221 common +92223 common +92229 common +92231 common +92233 common +92236 common +92241 common +92246 common +92249 common +92254 common +92257 personal +92264 common +92268 common +92278 personal +92280 proper +92283 common +personal +92286 demonstrative +92289 common +92292 common +92296 common +92300 personal +92305 common +92307 common +92317 common +92322 personal +92326 personal +92343 personal +92346 common +common +92349 common +92357 common +92360 common +92363 common +common +92371 personal +92374 common +92376 indefinite +common +92379 common +92382 demonstrative +92386 personal +92389 personal +92391 common +92394 common +92397 demonstrative +92401 personal +92405 common +92409 common +92414 common +92418 common +92423 common +92427 common +personal +92444 common +92447 common +92450 demonstrative +92453 common +92455 personal +92457 common +92459 common +interrogative +92464 common +92467 common +interrogative +92472 common +92480 common +92485 common +92492 common +92496 indefinite +92501 common +92503 indefinite +92507 common +92512 common +92516 common +common +common +92522 common +relative +92526 demonstrative +92528 common +92531 personal +92544 common +92546 common +92548 common +92555 common +proper +common +92561 common +common +common +92566 relative +92569 demonstrative +92572 common +92576 common +common +common +92582 common +92587 common +92592 demonstrative +92598 common +92601 common +92606 common +92609 common +92612 common +92615 common +92626 common +92630 common +92632 common +92635 demonstrative +92637 personal +personal +92641 common +demonstrative +92645 common +92654 common +92681 common +92688 common +92690 common +demonstrative +92694 personal +92698 common +92702 common +92706 common +92713 common +92717 common +92722 common +92724 common +92727 common +92731 common +92737 common +92740 common +92747 common +92751 common +92753 demonstrative +92756 personal +personal +92762 common +personal +92772 common +92776 indefinite +92780 common +personal +92790 relative +92797 relative +92801 common +personal +92806 common +92808 common +92813 common +92815 demonstrative +92820 common +92823 personal +common +92832 personal +common +92842 common +92845 relative +common +92849 common +personal +92855 common +92858 relative +92863 common +92873 common +92876 personal +common +common +92887 common +92890 common +92894 common +92897 indefinite +92900 indefinite +92908 indefinite +92911 common +demonstrative +92915 personal +92919 common +92925 common +92927 common +92931 common +92940 common +92943 common +92946 common +92949 common +92952 common +92955 personal +92957 common +92959 common +92961 relative +92965 personal +92967 personal +92970 common +proper +proper +92974 relative +92978 personal +92980 personal +92986 common +92988 indefinite +92990 common +92994 common +93000 common +personal +93006 common +personal +93011 common +93026 common +personal +demonstrative +common +93035 indefinite +93037 personal +93040 common +93042 common +93046 common +personal +93061 common +93065 common +93067 relative +proper +93075 common +93078 personal +93080 common +93083 proper +93087 common +93090 common +personal +93095 common +93098 common +93102 common +personal +93110 common +93112 proper +93114 common +personal +93119 common +personal +personal +93124 common +93129 common +93132 personal +93136 common +personal +93139 common +personal +93143 common +93146 common +93148 personal +93151 demonstrative +93155 common +93162 common +common +common +93170 common +93173 common +93175 common +93177 proper +93180 personal +93182 proper +93185 common +93188 interrogative +93191 common +93193 interrogative +93195 common +93198 common +personal +93203 interrogative +93205 common +93209 common +93211 common +93216 common +demonstrative +93222 common +demonstrative +93229 proper +common +93234 common +93238 common +93241 common +93244 personal +93249 personal +93254 common +93262 common +93266 personal +personal +93273 personal +personal +93281 personal +common +93286 personal +93291 common +demonstrative +93298 indefinite +common +93302 common +93304 proper +93319 common +93322 common +93327 common +93331 common +93335 common +93338 personal +93342 demonstrative +93346 demonstrative +93351 personal +93354 personal +93359 common +personal +93368 personal +common +93371 common +personal +93376 personal +93384 demonstrative +93386 common +93391 common +93394 interrogative +93396 personal +93398 common +93404 common +93410 common +personal +93414 common +93421 personal +93438 common +93441 common +93444 personal +93446 common +93450 common +93459 common +93462 proper +93481 indefinite +93488 common +93490 common +personal +93498 common +93507 common +93520 demonstrative +93523 common +93526 personal +93529 personal +93539 common +93543 personal +93545 common +93552 personal +93556 common +93559 personal +93563 common +personal +93568 common +93574 common +93580 proper +93584 common +93588 common +93594 common +93601 common +93608 common +93611 common +93614 proper +93620 personal +93623 common +93630 demonstrative +common +personal +93638 personal +common +93645 common +93648 indefinite +personal +93654 common +93664 indefinite +personal +93670 common +93672 common +93676 proper +93678 indefinite +personal +93684 common +93689 indefinite +personal +93696 common +93698 demonstrative +93701 demonstrative +93705 common +personal +93708 relative +93710 common +93712 common +93721 common +personal +93731 common +relative +93735 personal +93738 relative +93744 common +93747 common +93753 personal +93757 common +93762 personal +relative +93766 common +93768 common +relative +93773 common +93775 common +93777 proper +93779 common +relative +93783 common +93785 common +93787 proper +93791 common +93793 common +93803 common +93807 proper +93809 common +93814 common +common +93817 common +93820 interrogative +93824 interrogative +93828 common +indefinite +93833 relative +93835 common +93838 common +93843 personal +common +93846 common +93850 common +common +93854 common +common +93858 common +common +93862 common +common +93867 common +93870 personal +93886 personal +93895 common +93902 common +93905 common +93907 common +93910 common +personal +93913 indefinite +93917 personal +93924 personal +93930 common +93933 indefinite +personal +93936 demonstrative +93942 demonstrative +93947 common +93950 common +93953 personal +93962 common +personal +93967 common +93969 personal +common +93972 interrogative +93975 relative +personal +93984 indefinite +93988 common +common +93996 proper +93999 common +94001 common +94003 personal +94010 personal +94018 common +personal +94022 personal +proper +94026 personal +94029 personal +94034 personal +94036 common +94040 personal +94044 common +94046 common +94048 proper +94051 common +common +94054 common +94056 common +94058 proper +94060 common +94062 common +94067 common +94071 common +personal +94075 common +94081 common +94084 common +personal +94098 common +94104 common +94112 common +94117 common +common +94120 common +common +94125 common +common +common +94132 common +94134 common +94136 common +94138 common +94143 common +94146 common +94148 common +94151 common +94153 demonstrative +94156 common +common +94161 common +94164 common +94167 common +94169 common +94171 common +94173 common +94175 common +94179 common +94182 common +94186 common +94189 common +94195 common +94197 personal +personal +94202 common +94205 common +94209 common +personal +94212 personal +94216 common +94218 common +personal +94223 common +94225 common +personal +94230 common +94232 common +94234 personal +94237 indefinite +94241 personal +demonstrative +common +94248 common +94250 common +94252 demonstrative +94270 personal +94272 common +94274 common +94276 personal +94279 common +indefinite +94285 common +94287 personal +94296 personal +94299 personal +94306 common +94312 common +94319 relative +94322 relative +94326 common +94336 common +94338 common +94345 interrogative +94347 personal +94349 personal +94351 demonstrative +94355 personal +94359 common +relative +94363 personal +94366 common +proper +94370 common +relative +94374 common +94380 demonstrative +94382 personal +94384 common +94387 personal +demonstrative +94393 common +94397 common +94402 demonstrative +94404 common +94407 common +94412 common +demonstrative +94421 common +94427 common +demonstrative +94431 common +94434 common +94436 common +94439 relative +94443 relative +94446 common +94450 common +94452 common +94457 common +94460 common +94462 common +94465 common +personal +94471 common +94476 common +94483 common +personal +94491 common +94493 demonstrative +94495 personal +94505 personal +94514 common +94520 common +94523 common +personal +94529 personal +94532 indefinite +94535 common +94540 common +94550 common +94556 personal +94561 common +94565 common +94574 personal +94578 common +common +94582 common +proper +94588 common +proper +94593 common +94596 common +common +94602 common +94604 common +common +94610 common +94612 common +common +94618 common +94629 common +94631 common +94637 relative +94640 common +94642 common +common +94646 common +common +94651 common +94653 common +94657 common +94660 common +common +94665 common +94668 common +common +94672 common +94675 common +common +94678 common +common +94682 common +common +94686 demonstrative +94693 common +94702 common +94706 common +94712 common +94714 common +94718 common +94723 proper +94728 common +personal +94733 common +94738 proper +94740 common +94746 common +94751 common +94755 common +94761 common +94765 common +94770 common +94773 demonstrative +94778 common +94783 common +94787 common +94792 common +94795 demonstrative +94800 common +94804 common +common +94808 common +94811 common +94814 common +94818 common +94821 common +94824 personal +94827 common +94836 common +94839 common +94844 common +94847 common +94852 common +94855 common +common +personal +94863 common +94865 common +common +personal +94877 common +94879 common +94883 relative +94887 common +94889 demonstrative +common +94896 personal +common +94903 personal +94905 common +94909 common +94912 common +94917 common +94921 common +94924 common +94929 personal +94932 common +94937 common +94941 common +94944 common +94948 common +94950 personal +94952 common +proper +94955 common +94957 common +94960 relative +94963 common +94966 common +94968 common +94970 common +94972 common +94974 common +94976 common +common +common +common +common +common +94984 common +94987 common +94990 common +94993 common +94997 common +common +95001 common +95009 common +95015 common +common +personal +95021 common +95023 common +95026 common +95029 common +95033 common +95036 common +95041 common +95045 common +95050 common +95056 common +95058 common +95061 common +95072 personal +95077 common +personal +95082 common +95088 common +95092 common +95096 common +95106 personal +95117 common +95121 common +95131 common +95136 common +95139 common +95142 common +95146 common +95150 common +95159 common +95175 common +95184 common +95186 common +95189 common +95191 common +95195 common +95205 common +common +common +95210 demonstrative +95213 demonstrative +95215 common +95218 common +95230 common +95232 common +95235 common +95240 common +95242 common +95246 common +95248 common +95250 common +95252 common +95255 common +personal +95261 common +95266 personal +95268 common +95280 common +95287 common +common +95291 common +95296 personal +common +95299 interrogative +personal +95304 personal +95308 common +95311 common +95314 common +95316 common +95320 common +95323 common +95325 common +95327 common +95329 common +95342 common +95344 common +95346 interrogative +95349 common +95353 personal +95356 common +95359 common +95367 common +95372 demonstrative +common +common +95377 common +95386 common +95388 common +95397 personal +95401 personal +95403 common +common +95408 common +95410 common +95417 common +95424 common +95426 common +personal +95431 common +personal +95436 interrogative +95440 common +95445 common +95448 common +95453 common +95457 common +95461 common +95463 common +95471 common +95473 interrogative +95479 personal +95489 common +95491 personal +95493 common +95497 common +95500 common +95502 common +personal +95511 common +95513 common +common +95516 common +95519 common +95522 common +95526 common +95531 common +95538 common +95542 common +demonstrative +95548 personal +95550 common +95553 common +95555 common +95565 common +95576 common +95584 common +95587 common +95600 indefinite +95603 common +95613 common +personal +95621 common +95624 common +95629 common +95631 personal +95634 interrogative +95636 common +95640 common +95642 common +95644 common +95646 common +95648 common +95652 common +95655 common +indefinite +95666 common +95674 common +95677 common +95680 personal +95683 common +95685 common +95715 common +common +common +95722 common +95724 common +95726 common +95731 common +95735 common +95738 common +95743 personal +95750 common +95754 indefinite +95758 common +95761 common +95766 common +95769 common +95772 personal +95774 common +95776 common +95780 personal +95784 indefinite +95787 common +95791 relative +95793 personal +95795 common +common +95800 indefinite +95804 common +personal +95812 common +95820 common +95823 common +95825 personal +95827 common +relative +95830 personal +relative +95835 relative +95839 relative +95842 interrogative +common +95845 personal +95855 personal +95858 relative +95862 proper +95866 common +personal +95870 common +95878 common +95883 common +95887 proper +95895 common +95898 relative +95905 indefinite +95909 proper +95912 common +95918 personal +95921 common +95923 personal +95928 common +relative +95934 common +95938 common +95940 common +95942 common +common +95945 relative +95949 common +personal +95953 personal +95959 personal +95964 personal +95967 common +95969 common +95971 personal +95974 personal +95976 demonstrative +95984 proper +95993 personal +indefinite +95996 common +96002 common +96007 proper +96011 proper +96017 common +personal +96022 common +personal +96027 common +96029 common +96034 common +96038 proper +relative +96053 proper +96057 proper +96062 common +personal +96068 common +personal +96075 proper +96080 common +demonstrative +96083 proper +96089 common +96096 proper +common +96103 common +common +96107 common +common +96114 proper +96121 proper +96129 common +common +proper +96135 proper +96138 common +personal +96142 common +96146 common +96148 common +96150 common +96154 common +96157 common +96159 common +96162 personal +96165 relative +96172 common +personal +96177 common +96184 common +personal +96197 personal +96203 personal +96208 personal +96210 common +96214 personal +96220 common +96225 interrogative +96237 interrogative +96241 personal +interrogative +96244 personal +96247 common +common +96250 common +96255 common +relative +96259 proper +proper +96262 common +personal +96266 common +96269 proper +interrogative +personal +96273 common +96287 common +96289 common +96297 common +common +indefinite +96302 common +personal +96307 indefinite +96313 interrogative +common +96317 relative +personal +96326 relative +96330 common +96336 common +96339 common +96341 indefinite +96346 common +96348 personal +common +96355 common +96357 common +96360 common +96363 common +96367 common +96370 common +common +96374 common +96378 common +96380 common +96383 common +96391 common +96398 common +common +96402 common +common +96406 common +common +96409 common +common +96413 common +96417 common +96422 common +96425 common +96428 common +96431 common +96434 common +96437 common +96439 common +96442 common +96446 common +96457 common +proper +96460 common +96464 proper +96466 common +96481 common +96483 common +96487 common +96489 common +relative +96493 demonstrative +96498 relative +96501 demonstrative +96509 common +96515 common +96519 demonstrative +96521 common +96523 common +96525 common +common +common +96533 common +96535 common +96538 common +personal +96550 common +common +96555 common +96564 personal +96570 demonstrative +96572 common +96576 demonstrative +96578 common +96583 demonstrative +96585 common +96589 demonstrative +96591 common +96595 common +96600 common +96602 common +common +96605 personal +96607 common +common +96610 personal +96612 common +96615 common +96617 common +96619 common +96622 common +96624 common +96626 common +96628 common +96630 common +96633 personal +96635 common +96638 common +personal +proper +proper +96643 common +personal +96652 common +96654 common +96659 common +personal +96665 common +96669 common +96677 common +96679 proper +96682 personal +96686 common +96688 personal +96690 personal +96693 indefinite +96695 relative +96702 common +96708 relative +96711 common +demonstrative +96716 common +personal +96719 proper +96725 personal +96728 personal +96733 personal +96735 proper +96738 proper +96742 personal +96749 personal +personal +96758 personal +96761 common +96765 common +indefinite +96769 personal +96772 common +96777 proper +96780 common +96782 personal +96784 common +96794 proper +96800 personal +96803 common +common +96807 personal +96810 indefinite +personal +96815 personal +96817 common +96821 personal +96824 personal +96827 common +96830 proper +96832 common +96835 personal +96839 personal +96842 common +96847 common +96859 common +96863 personal +96865 common +96869 personal +common +96873 common +proper +96877 common +96879 proper +96882 common +96886 personal +96889 personal +96892 demonstrative +96903 common +proper +96906 proper +96908 proper +96912 common +demonstrative +96919 common +96922 personal +96926 demonstrative +96928 personal +96930 common +96932 proper +96934 personal +96936 common +96938 proper +96940 proper +96944 common +personal +common +96948 personal +96950 common +96953 personal +96955 common +96958 common +96961 common +proper +96964 indefinite +96968 common +96970 common +common +96974 common +96976 common +proper +96979 personal +96981 common +personal +96985 personal +96987 proper +proper +proper +common +proper +proper +96994 common +common +96997 proper +96999 common +97001 common +97003 common +97007 proper +97017 proper +personal +common +97021 common +97023 common +common +personal +97027 common +proper +proper +97032 common +97034 common +97036 common +personal +proper +proper +97041 common +97043 common +97045 common +97047 common +97050 personal +97054 common +personal +97059 personal +97064 common +97067 common +relative +97070 personal +97073 common +97078 common +97080 proper +97082 personal +97086 proper +97090 common +personal +97097 personal +common +97100 common +97105 personal +common +97110 common +97113 common +relative +97116 personal +97120 common +personal +97124 personal +97129 common +97131 common +97135 common +97137 common +97140 personal +97144 common +personal +97150 proper +97153 common +97155 common +97159 personal +97164 personal +97166 personal +97168 common +97170 common +97177 personal +97181 common +97186 relative +97188 demonstrative +common +97191 personal +97195 relative +97203 personal +97205 personal +97207 common +97211 common +97214 personal +common +97220 personal +97223 common +personal +demonstrative +97228 common +97230 common +personal +97234 common +97236 common +97238 common +97241 common +97245 common +common +97250 common +97254 personal +97257 personal +97262 relative +97271 common +97276 personal +97278 common +97280 common +personal +97285 personal +personal +97289 common +97291 common +personal +proper +97295 demonstrative +97297 common +97301 personal +97305 common +97309 personal +97312 proper +97316 proper +97319 personal +97322 personal +97326 proper +97328 demonstrative +97333 common +97336 relative +97339 common +97344 personal +97355 common +97358 common +personal +97362 personal +97371 common +common +proper +proper +97377 personal +97379 personal +97382 personal +97384 proper +97386 proper +97395 personal +97398 relative +common +common +97402 personal +97408 personal +97412 common +97414 common +97416 personal +97420 personal +97422 personal +97424 proper +97427 personal +common +97432 personal +97436 common +97438 common +97441 common +personal +97444 personal +common +97447 common +97452 common +97455 personal +97459 proper +97463 personal +97465 common +97470 common +personal +97474 common +97478 personal +demonstrative +97484 common +97486 personal +97490 personal +97492 personal +97494 interrogative +97497 personal +97503 personal +97506 demonstrative +97511 common +97514 relative +personal +97521 personal +97525 common +97527 personal +97532 common +97534 common +common +97537 personal +97540 common +97548 common +relative +97553 personal +97556 indefinite +97559 personal +97563 common +97565 personal +97571 demonstrative +97573 common +demonstrative +97582 personal +97590 common +97593 demonstrative +97596 personal +97599 personal +common +97603 demonstrative +97609 common +personal +97617 relative +indefinite +97620 personal +97623 personal +relative +97627 indefinite +97630 personal +97632 common +proper +97639 proper +97642 personal +97644 common +97650 proper +97653 common +97655 proper +97657 common +personal +97661 common +97664 common +97666 common +personal +97671 personal +proper +97674 common +personal +97678 personal +97681 proper +97683 common +97685 common +97689 personal +97692 proper +97695 common +97697 common +personal +97701 personal +97704 common +97706 proper +common +97710 common +97719 relative +common +97722 common +97724 common +97726 relative +common +97729 common +97731 common +97734 demonstrative +interrogative +97742 common +97744 common +97751 common +97755 common +97757 common +97759 proper +97763 personal +97769 indefinite +97771 common +97773 personal +97776 personal +97778 common +personal +personal +97785 common +personal +97792 common +97796 common +proper +97800 personal +97805 common +common +97810 common +97814 common +common +97818 common +demonstrative +97823 proper +97826 common +97830 personal +97834 indefinite +97837 personal +97840 common +personal +97844 common +relative +97848 personal +common +97851 common +97853 common +97855 common +97858 common +97862 common +97867 common +97869 common +97871 common +97873 common +97876 common +97881 common +proper +97886 common +proper +97890 common +97892 common +personal +97900 common +97902 common +97905 common +97909 common +97911 common +common +97917 common +97919 common +common +97928 demonstrative +97930 common +97934 common +97940 common +97946 common +97949 demonstrative +common +97952 common +97957 proper +97959 common +97962 common +personal +97969 common +proper +97973 common +97979 common +personal +97985 common +97988 common +97991 common +97994 common +98000 proper +98008 proper +common +98012 common +personal +98020 common +98023 common +98026 common +98028 common +98033 common +common +common +98037 personal +98040 common +98042 common +common +98047 common +98050 common +98052 common +98055 common +common +98058 demonstrative +98061 common +demonstrative +98072 common +98076 common +98080 common +98082 common +98085 common +98087 common +98089 personal +98092 common +common +98096 common +98103 common +personal +98111 relative +98113 common +98115 common +demonstrative +98119 common +98127 common +98129 common +98131 common +98133 proper +relative +98136 common +98138 common +98141 personal +98144 proper +proper +common +98148 personal +common +personal +98152 proper +98155 common +98159 common +common +98162 relative +98166 common +personal +98169 common +98171 common +98173 common +98175 common +98177 common +proper +98182 common +demonstrative +98186 common +98189 common +98191 common +98194 common +98198 personal +98219 common +98221 proper +98224 common +98229 common +98231 proper +98234 common +personal +98239 personal +98243 common +98246 proper +98250 common +98252 proper +98257 common +personal +98261 common +98263 personal +98267 common +98269 personal +98274 common +98276 common +98284 personal +98294 common +proper +98297 personal +98299 proper +98304 personal +98309 personal +98312 common +98318 common +98322 common +98324 common +98333 personal +common +98339 personal +98341 common +98343 common +98349 common +98351 common +98353 common +98355 common +common +98358 personal +98361 personal +98383 personal +common +98386 common +98389 common +98391 common +common +98397 common +98401 demonstrative +98404 common +personal +98408 common +98424 common +98428 relative +98440 common +98444 personal +98447 demonstrative +common +98451 personal +98453 common +98455 common +98465 common +98469 common +98472 common +98476 common +98485 common +98490 common +98499 personal +98504 personal +98508 common +98510 proper +98518 common +98520 relative +98529 common +98531 common +common +98535 common +98542 common +personal +98547 personal +98549 personal +98551 common +common +98554 personal +98556 personal +98562 common +98567 common +98571 common +98574 personal +98577 common +98579 proper +98581 personal +98583 demonstrative +98602 personal +98606 personal +98611 personal +98618 common +98623 common +proper +98631 indefinite +98633 proper +98635 common +98647 common +98650 personal +personal +98653 proper +98656 personal +98658 common +98660 common +98663 common +98667 proper +common +personal +98672 personal +98674 common +personal +98679 personal +98681 common +98683 common +98686 proper +98690 common +98693 personal +98696 proper +98699 common +98703 common +98705 personal +common +98709 personal +98711 common +common +98714 personal +98723 common +98725 common +98727 personal +98730 common +98733 personal +98736 common +common +98739 personal +98742 common +98746 common +common +98749 common +98757 common +98762 personal +98764 common +common +98767 common +98770 common +98772 common +98774 common +98776 common +98778 common +98780 common +98782 common +98784 common +98786 common +98788 common +98790 common +98792 common +98794 common +98796 common +98799 common +98802 common +common +98805 common +common +98809 common +98811 common +98817 common +98819 common +98821 common +98823 common +98858 proper +98860 common +personal +98864 personal +98866 common +personal +98872 personal +98877 common +personal +98882 common +98884 common +98888 personal +98894 interrogative +common +common +98898 common +98900 interrogative +common +common +98904 common +98906 interrogative +common +proper +98910 proper +98912 interrogative +common +98918 interrogative +common +common +common +98923 common +98925 personal +common +common +98933 common +98937 personal +98942 personal +common +98945 personal +98947 personal +common +98953 personal +98961 common +personal +98964 personal +98967 personal +98969 common +98971 personal +98973 personal +98975 common +98977 common +98979 common +common +98984 demonstrative +98986 common +98988 personal +98991 common +common +98994 common +98996 common +98998 common +common +99001 personal +99009 common +99017 common +personal +99026 personal +common +99029 personal +99031 personal +common +99034 personal +99037 common +99040 common +99044 common +personal +99049 personal +99051 proper +99054 common +99056 common +personal +99063 common +99065 common +99072 common +99074 personal +99077 common +proper +99084 common +personal +99090 common +relative +99094 personal +99096 personal +99098 personal +common +99101 personal +common +99104 personal +common +99107 personal +99109 personal +99116 personal +99119 common +99128 common +demonstrative +99133 common +99135 personal +99145 common +99149 common +99155 personal +99159 common +common +common +99163 common +99169 common +common +common +99176 demonstrative +99179 common +99182 personal +interrogative +common +99186 common +99188 common +99190 common +99192 common +99194 common +99196 common +99200 personal +99204 common +99209 personal +99223 common +personal +99227 personal +99229 personal +99232 common +99234 demonstrative +99239 common +personal +99246 common +proper +99251 common +personal +99255 personal +99258 indefinite +personal +99261 personal +99269 common +99271 personal +99275 common +personal +99278 proper +common +99283 common +personal +99287 personal +99292 personal +common +99296 common +99298 common +99300 personal +99307 personal +99309 common +99311 personal +99313 common +99315 common +99320 common +99322 proper +99326 common +common +99329 common +99331 common +personal +99336 common +common +personal +99342 common +99344 common +personal +99349 common +99352 common +99356 common +99358 personal +99360 common +99363 common +99365 common +99375 personal +99379 common +99381 personal +99383 common +common +99388 personal +proper +99397 personal +99400 common +demonstrative +99407 common +99409 common +99411 common +99414 common +99418 personal +99420 personal +common +99425 demonstrative +99427 common +99431 common +99437 common +99442 common +99448 common +99450 common +personal +proper +proper +99456 personal +99461 personal +99463 demonstrative +common +99467 common +99469 demonstrative +99472 demonstrative +personal +99475 relative +99496 common +99509 common +99523 common +personal +common +99528 common +99532 common +99534 personal +common +99538 demonstrative +common +99543 demonstrative +common +99548 personal +common +99552 common +99567 common +99569 common +99574 common +99576 personal +99579 common +proper +99584 common +99592 personal +99596 personal +99598 common +relative +99601 common +99604 common +99608 common +99617 common +common +personal +99622 common +demonstrative +99627 personal +99630 personal +99632 common +common +99635 common +personal +99638 demonstrative +99640 indefinite +personal +99645 common +demonstrative +99650 personal +99657 common +99661 common +99664 personal +99666 common +personal +relative +99679 common +99683 personal +99686 proper +common +99691 personal +99694 common +personal +common +common +common +proper +99702 common +99704 common +personal +99707 personal +common +99710 personal +99712 personal +99715 common +99717 common +99722 common +99728 personal +99732 personal +99736 common +personal +relative +99740 personal +99742 proper +99744 proper +99750 personal +common +99758 common +99762 common +personal +99766 personal +99770 common +demonstrative +99782 personal +proper +99786 personal +99789 personal +99793 personal +99796 common +demonstrative +99803 common +99807 personal +99812 common +personal +demonstrative +99819 common +99823 common +99825 demonstrative +99836 common +99838 common +99845 common +99848 common +99851 common +99854 common +99857 common +99861 common +99863 common +99866 personal +99872 common +99877 common +99886 common +personal +99891 common +99895 common +99899 common +99901 common +99906 common +personal +99911 common +99913 common +personal +99920 common +relative +99924 personal +common +99927 common +99930 common +99932 common +demonstrative +99939 common +99947 common +99949 common +99952 common +99954 common +demonstrative +99958 common +99961 common +99963 common +personal +99967 common +99969 proper +99971 common +99973 common +99975 personal +99980 personal +common +99983 personal +99985 personal +99989 common +99991 common +99993 personal +common +99996 common +100000 personal +common +100003 personal +personal +proper +100007 personal +100010 common +100012 common +100014 proper +relative +100018 common +100021 personal +100026 personal +100034 common +relative +100039 indefinite +100042 personal +100045 common +100049 common +100053 common +100057 common +100059 common +personal +100066 common +100068 common +common +100071 common +100074 common +100078 common +100080 common +100084 common +100087 common +100089 proper +100096 common +100099 personal +100101 common +100104 common +100107 indefinite +100109 personal +proper +100112 demonstrative +100116 personal +100119 personal +proper +100123 personal +100128 indefinite +100132 common +personal +relative +100137 common +100139 common +100143 common +personal +100153 personal +100156 common +100161 common +100167 common +100169 common +100173 common +100175 demonstrative +100178 demonstrative +100180 relative +100183 common +100185 common +100187 demonstrative +100191 common +100198 personal +indefinite +100201 personal +100204 personal +100206 personal +personal +100211 personal +personal +100216 personal +100225 common +100227 common +relative +100230 personal +100232 common +common +100237 personal +100244 personal +100246 personal +100250 personal +100254 common +100256 proper +100264 common +100266 common +100270 common +personal +100273 personal +100277 common +personal +100280 common +100284 personal +100289 common +100298 common +100303 personal +100305 demonstrative +100309 relative +100311 common +100315 personal +100317 indefinite +common +100322 personal +100325 personal +common +common +100330 personal +100332 common +common +100337 proper +100344 common +100346 proper +100349 common +personal +100353 common +personal +100357 common +100360 common +100363 proper +100371 proper +relative +100377 common +100379 relative +100383 common +100385 relative +100396 common +100400 common +100402 common +100406 common +100414 personal +100416 common +100418 personal +100421 personal +100427 common +common +100430 personal +100432 common +100435 common +100438 personal +common +100443 personal +100451 common +personal +100455 common +100458 proper +100463 personal +personal +100469 common +proper +100472 personal +100475 common +demonstrative +100480 personal +100483 common +100485 proper +100487 interrogative +100491 personal +100493 common +100496 relative +100503 common +100506 common +100509 relative +100514 personal +100517 demonstrative +common +common +100523 common +proper +100527 common +100529 personal +100531 proper +100534 common +common +100542 common +personal +100546 common +common +relative +100550 common +100554 common +personal +100559 indefinite +100561 personal +100571 personal +100573 personal +100575 indefinite +100577 relative +100581 common +100586 common +100588 demonstrative +100590 common +100592 common +100598 common +personal +100611 indefinite +personal +100615 indefinite +100618 indefinite +100621 indefinite +100624 indefinite +100626 common +personal +100630 common +100634 personal +100639 relative +indefinite +100643 common +100646 personal +proper +100649 personal +proper +100652 personal +common +proper +100656 personal +common +proper +100663 personal +100665 common +100668 common +100671 common +100674 common +100689 common +100692 common +100694 common +100696 common +common +common +common +common +100702 common +common +100705 common +common +100708 common +common +100711 common +common +100714 common +common +100717 common +common +100720 common +100722 common +100725 common +100727 common +100729 common +100732 common +100734 common +100739 common +personal +100743 common +100745 common +100748 common +interrogative +100754 interrogative +100758 personal +100765 common +personal +100769 common +100771 common +100773 common +proper +100780 common +100786 proper +100788 common +proper +100791 common +100794 common +100797 personal +100800 common +100802 common +100806 common +100810 common +personal +100820 common +100822 common +common +100825 common +100827 proper +100830 common +100836 common +100840 common +100843 common +100847 demonstrative +100850 common +100854 demonstrative +common +100858 common +100862 common +100866 common +100872 common +100876 common +relative +100881 common +100884 demonstrative +100888 personal +100895 common +100904 common +100909 indefinite +100911 personal +100914 relative +100916 personal +100920 personal +100923 common +100925 common +100931 personal +common +100934 common +common +proper +100938 personal +100944 demonstrative +100947 common +100952 personal +100955 personal +100957 personal +100959 common +personal +100963 common +100965 common +100973 common +100977 personal +100979 common +100981 proper +100985 common +100987 common +100989 common +100991 common +100993 common +100995 proper +101004 personal +personal +101008 personal +101011 personal +101018 common +101025 common +101027 common +101030 personal +101033 common +101035 common +101037 common +101039 common +101041 interrogative +101043 relative +101048 common +101052 personal +personal +101056 personal +101058 personal +101060 common +demonstrative +101064 demonstrative +101069 personal +101077 personal +101079 personal +101084 common +101086 common +101090 common +101092 common +101094 personal +101101 common +personal +101105 personal +101111 personal +101114 personal +101118 common +personal +101122 indefinite +relative +101126 personal +101128 personal +101130 personal +101132 proper +101136 common +101139 personal +proper +101144 common +101149 common +101153 personal +101156 common +101158 proper +101166 personal +common +101174 relative +101177 personal +personal +101180 personal +relative +101186 common +common +common +common +common +common +common +common +101197 personal +101199 personal +101201 common +personal +101204 personal +101215 common +101217 common +101219 common +relative +101223 demonstrative +101226 personal +101228 common +101230 common +101235 common +101262 common +101265 personal +101267 proper +relative +101270 personal +101276 personal +101281 common +101285 common +common +101289 personal +101292 personal +101296 personal +101298 common +common +101301 personal +personal +101308 common +personal +101314 personal +101316 proper +proper +101319 personal +101329 personal +101337 common +101340 personal +101345 personal +101350 personal +101355 personal +101362 indefinite +101365 common +101369 common +101373 personal +101376 personal +101381 demonstrative +101383 personal +common +101386 demonstrative +demonstrative +101397 common +relative +101400 common +101402 personal +101404 common +101408 common +common +101420 common +101422 common +101424 common +101427 personal +101429 personal +101432 common +101434 personal +101439 common +101441 common +proper +proper +101446 common +101448 common +101451 common +101454 common +101457 personal +proper +common +101462 common +101465 common +101468 proper +proper +101471 common +common +101475 personal +101481 personal +101483 common +101485 common +101487 proper +personal +common +101491 common +101493 common +common +personal +101497 common +proper +proper +101502 personal +101505 common +personal +101509 personal +101512 common +101518 common +101520 common +101522 common +personal +relative +101526 common +101529 common +101531 common +101541 personal +101543 common +proper +101547 common +relative +101554 indefinite +101558 personal +101563 common +101565 proper +101569 personal +101571 common +101573 common +101575 personal +101577 relative +101579 personal +common +101589 indefinite +personal +101593 relative +101595 common +101600 common +101603 common +101606 common +101610 common +101613 proper +common +101618 common +101620 personal +101622 common +101626 personal +101631 common +101634 personal +101636 common +101638 personal +101643 common +proper +proper +101650 common +indefinite +101654 proper +101657 common +101660 common +101662 common +101665 personal +101670 proper +101673 common +101676 common +personal +101680 common +101683 personal +common +101690 personal +101692 common +common +personal +101699 common +personal +101703 common +personal +101706 personal +101709 personal +101712 common +101716 common +101718 common +101722 proper +101726 personal +common +101731 proper +101736 proper +101740 common +101743 proper +101745 proper +101749 personal +common +101755 common +101760 proper +101762 common +101764 common +101766 relative +101768 personal +101772 common +101780 common +101782 proper +101785 proper +101790 common +101792 common +101794 proper +101797 proper +101805 personal +indefinite +101810 common +relative +indefinite +101817 personal +101819 common +101823 common +101827 proper +101829 proper +101832 proper +101836 common +101839 personal +101841 common +relative +101846 common +101861 proper +101864 personal +proper +101873 common +relative +101878 common +personal +relative +101883 proper +proper +101886 personal +101888 relative +101891 common +101894 common +101897 common +101899 common +101902 personal +101908 indefinite +interrogative +indefinite +101913 personal +101915 common +common +101918 common +101922 personal +101933 common +101935 common +101937 proper +101939 common +101943 proper +101945 common +101947 common +101950 personal +101953 common +101957 common +101960 personal +proper +101963 proper +101965 proper +101968 common +101971 common +101973 personal +101975 proper +101977 personal +101980 common +101982 personal +101985 common +101991 relative +101995 demonstrative +102000 proper +102002 proper +102004 common +personal +102014 indefinite +102016 proper +102019 common +102027 personal +102031 common +102034 personal +102041 proper +102043 personal +102045 common +102054 common +102056 common +102059 proper +102063 personal +102074 common +102076 personal +common +102082 common +102089 common +102091 common +common +102096 common +proper +proper +102100 personal +102102 proper +proper +102108 common +proper +102113 common +common +102117 common +common +102122 common +102128 proper +102131 personal +102134 proper +common +common +102141 relative +102143 demonstrative +102146 common +personal +102150 personal +102152 common +common +102156 common +102158 proper +102163 personal +102167 personal +proper +102170 relative +102174 common +102177 common +102180 common +102182 common +102185 personal +102188 personal +102190 personal +102194 common +102196 common +102200 common +common +102203 proper +102208 proper +interrogative +personal +102212 relative +102214 common +proper +proper +102220 demonstrative +102224 personal +102226 common +102229 common +common +102233 common +common +102239 common +102241 common +102243 demonstrative +102253 personal +102255 common +102258 common +102260 personal +102262 common +common +102266 common +common +102269 proper +102272 common +102275 personal +102277 common +102283 common +demonstrative +common +proper +102290 common +102294 common +102297 common +102299 common +102302 proper +102306 personal +102309 common +102313 common +102318 proper +102320 relative +102322 common +common +102326 common +102333 relative +102341 common +102343 common +102346 personal +102350 common +102355 common +102361 common +102365 common +102369 common +102373 personal +102376 personal +proper +personal +102382 common +102384 common +102387 personal +common +102396 common +102400 common +102402 common +102404 proper +102407 proper +proper +102411 common +102413 common +102417 common +common +102420 common +102423 common +102425 common +102433 common +102435 proper +102438 common +personal +102444 common +102454 common +personal +relative +102458 proper +102460 demonstrative +102462 common +102466 common +102472 common +102474 common +102481 common +102485 common +102487 common +102490 common +102493 proper +102495 common +102498 common +102500 interrogative +102502 common +102504 common +102508 relative +102511 common +relative +102516 common +102518 common +common +102522 common +102528 common +102533 common +102536 common +102538 common +102544 common +102551 common +102554 common +102558 common +102562 common +102565 common +102567 common +proper +proper +102578 common +102580 common +102587 common +102590 common +common +personal +102595 proper +102598 common +102603 common +102606 common +102610 common +common +102615 common +102617 proper +proper +102620 relative +102622 proper +102624 proper +102630 proper +102633 common +102643 personal +102647 proper +proper +102651 personal +proper +102655 proper +common +102659 common +common +102664 relative +common +102667 common +102672 common +common +102678 common +102680 common +102684 common +102686 common +102689 personal +102695 common +102697 common +102704 common +102706 common +102709 common +102711 common +personal +102715 common +102718 common +102722 common +102726 common +102731 common +102734 common +102736 common +102738 common +personal +102742 common +personal +102745 common +102747 common +102751 common +102753 common +102756 common +102758 common +102760 common +102766 common +102769 common +102772 common +102776 common +102781 common +102790 common +relative +102797 common +102799 common +102801 common +102803 common +102805 personal +102811 personal +102814 personal +102816 personal +102818 personal +common +102821 personal +102823 personal +102829 common +102831 common +102833 personal +102839 common +personal +102843 common +personal +102850 common +common +102853 personal +102855 proper +proper +102860 common +personal +102864 personal +102869 common +personal +102873 personal +102876 personal +102879 personal +102881 personal +102886 personal +102889 personal +102903 personal +102905 personal +common +personal +relative +102912 relative +102914 proper +102916 personal +102921 personal +102926 common +personal +102931 personal +102933 personal +102936 common +102940 common +102946 proper +102949 common +102953 common +102964 common +102966 common +102975 common +relative +102980 demonstrative +102983 common +102987 common +proper +102990 common +102992 relative +102994 proper +102997 proper +proper +common +103003 proper +103008 proper +103013 common +personal +103018 proper +103021 relative +103023 common +personal +103041 common +103049 common +103051 common +personal +103054 proper +common +common +103063 common +103068 common +103073 interrogative +103076 common +103079 common +103082 common +personal +103089 common +103091 common +103094 common +103098 common +103101 common +common +103107 common +personal +proper +103116 common +common +103120 personal +proper +103123 personal +103127 proper +personal +103135 common +103138 common +103142 common +103146 proper +relative +103149 common +103152 common +103155 personal +common +103158 common +common +common +103164 proper +proper +103167 common +103169 common +indefinite +103173 common +103175 common +103179 interrogative +103181 personal +common +103186 common +103191 personal +103193 common +103196 common +103198 personal +103201 personal +103203 common +103211 personal +103214 common +103216 relative +103219 common +103221 personal +common +103225 interrogative +103231 common +103233 common +103239 personal +103241 personal +103243 common +103245 common +103249 common +103251 common +103253 common +103257 common +103259 personal +103263 common +103267 common +103273 personal +103275 personal +103278 personal +103285 personal +103289 common +103292 common +common +103299 common +103303 common +103306 common +103309 common +103311 demonstrative +personal +103317 relative +103319 demonstrative +103323 common +103328 common +103333 common +103335 common +relative +103338 common +common +common +common +common +common +common +common +common +common +common +common +common +common +common +103356 demonstrative +relative +103359 personal +103365 demonstrative +103367 common +common +103373 common +103375 common +103377 common +common +common +common +common +common +common +common +common +103388 demonstrative +103391 common +103395 proper +proper +103398 common +103402 common +103405 common +103408 common +common +103415 personal +103417 personal +103419 common +103423 common +103425 indefinite +common +personal +103432 demonstrative +103434 common +common +103437 personal +103440 personal +103442 personal +103444 common +103450 common +103452 proper +103456 indefinite +103458 indefinite +103462 personal +103465 common +personal +103472 personal +103475 common +103486 common +103493 common +103501 common +103506 relative +103508 common +demonstrative +103517 common +personal +103521 common +103523 common +103529 common +103532 common +103534 common +103543 common +103551 common +103564 common +103566 interrogative +common +personal +103572 common +relative +103577 common +demonstrative +103580 personal +103585 common +103587 proper +103594 personal +common +103599 personal +103605 common +103608 personal +103616 common +103618 common +personal +proper +proper +103623 relative +personal +common +103627 personal +common +103630 indefinite +103633 common +103635 common +103638 common +103640 relative +103642 common +demonstrative +103645 common +103647 common +103649 personal +103653 proper +103655 common +103658 common +personal +103663 personal +103665 common +103667 proper +103670 common +personal +103674 common +103676 common +personal +proper +proper +103682 common +personal +common +103686 proper +common +proper +proper +103691 common +common +103698 proper +103702 proper +proper +personal +common +103707 common +103709 common +common +personal +103713 common +proper +proper +103718 common +103720 common +103722 common +personal +proper +proper +103728 personal +103731 common +103737 proper +103740 personal +103742 personal +103744 common +common +103747 personal +103752 personal +103754 common +103756 personal +103758 common +103760 proper +proper +103763 personal +103766 common +103768 common +personal +103771 common +common +103774 common +personal +relative +103778 personal +103783 relative +103786 common +103789 common +personal +103792 common +103794 common +103797 common +103799 common +personal +relative +103804 personal +103807 common +103809 common +103811 personal +103813 common +103815 common +personal +103819 common +personal +relative +103824 personal +103826 common +103828 common +103830 common +103836 proper +103840 common +103845 common +103847 personal +103849 relative +103854 common +103861 common +103863 common +personal +103869 common +common +personal +personal +103877 proper +103879 relative +103881 personal +103884 common +103886 common +103888 common +103890 common +personal +103893 relative +103898 common +103900 common +103903 relative +103905 common +103907 common +personal +103910 common +103912 common +103914 common +103916 common +personal +103919 demonstrative +personal +103924 personal +common +103928 common +proper +103932 common +103942 personal +common +103947 common +personal +103951 common +103953 common +personal +proper +proper +103958 common +103960 common +103962 personal +common +common +103966 common +103968 common +personal +103972 common +103974 common +personal +103979 personal +interrogative +103983 common +103985 common +personal +interrogative +103989 common +103991 common +103993 common +personal +103999 interrogative +104002 common +104004 common +personal +104007 personal +104012 common +104014 common +104016 common +personal +relative +104022 proper +104024 personal +104031 personal +104037 common +104039 common +104041 common +104043 common +104046 common +104052 common +demonstrative +104064 common +personal +104067 personal +104069 common +104073 common +relative +104077 common +personal +104080 common +104088 personal +104092 common +104095 common +personal +104098 relative +indefinite +104103 common +104105 common +demonstrative +104109 common +104111 common +104113 common +104115 common +104121 common +104123 common +104125 relative +104127 personal +104130 indefinite +104133 common +104135 common +personal +104139 common +104141 common +104144 common +104147 common +common +common +104156 common +104160 common +104164 common +personal +relative +104168 personal +104171 personal +104174 common +104177 proper +common +104189 proper +proper +104195 common +104200 common +104202 common +personal +104205 common +104207 personal +104209 proper +proper +104213 common +104217 common +104219 demonstrative +104222 personal +common +104225 common +104228 common +104231 indefinite +104235 personal +common +104239 proper +proper +104242 common +104244 relative +104247 common +104250 personal +104256 personal +104258 common +104260 common +104263 common +104267 common +104269 common +104274 common +demonstrative +104277 proper +104280 common +104282 proper +104286 common +104288 common +common +104296 common +104300 proper +proper +personal +104304 indefinite +104311 common +104313 proper +104315 personal +104318 common +personal +104327 common +104329 common +104331 common +104335 common +personal +104338 common +104340 common +104342 common +104349 personal +104353 common +104355 common +104362 common +104364 common +104367 common +104370 common +104372 personal +104376 common +personal +104381 common +104386 personal +104389 common +104394 common +104397 common +104407 common +104413 common +104417 common +104419 common +104421 common +104424 personal +proper +proper +104428 relative +104430 common +104434 common +104437 common +104439 relative +104441 personal +104444 common +104446 common +104448 common +demonstrative +104451 personal +proper +104454 common +104456 proper +proper +104459 personal +104461 common +104466 common +104468 common +104470 common +104473 personal +104475 personal +104478 common +104480 personal +104482 common +104488 relative +104493 common +personal +104497 common +104499 proper +relative +104502 common +104506 common +104508 common +104514 common +personal +104517 common +104519 common +104522 common +104529 common +104531 proper +proper +104535 common +relative +common +104541 common +104543 common +104545 common +104548 personal +104551 common +104553 common +personal +personal +104562 common +demonstrative +104565 common +104569 common +104571 proper +104574 interrogative +104576 common +104578 common +104583 common +104586 common +104595 common +104598 common +104604 common +104607 common +104609 common +104611 common +104613 common +relative +104618 proper +proper +104621 common +personal +104624 relative +104627 common +104629 common +104631 common +104634 common +personal +104642 common +personal +104645 personal +relative +104648 common +personal +demonstrative +104654 common +personal +104658 common +104660 relative +104662 common +104664 common +104667 common +104671 personal +104674 common +104676 common +personal +common +104682 common +personal +104687 common +104690 proper +104693 common +104696 common +personal +104699 common +104710 interrogative +104712 common +104714 common +104716 common +104718 common +104724 common +common +104727 proper +104733 common +104735 common +104743 relative +104749 common +104753 personal +personal +104756 common +104759 common +104762 proper +proper +104767 common +104769 common +104771 common +104775 personal +personal +104778 common +104780 common +104784 common +relative +104789 common +104791 common +104793 common +104795 personal +104797 common +104801 common +104803 common +104806 common +104808 common +104810 common +104813 common +104819 common +104821 common +personal +104824 common +104826 common +104828 common +104830 common +104832 common +104846 personal +104849 common +104852 common +104854 common +104856 proper +104861 common +104863 common +104865 common +104867 common +104871 interrogative +104881 common +104883 common +104886 personal +104894 common +104900 personal +104904 common +104907 common +104910 common +104913 common +104915 common +104918 common +104922 common +common +104925 common +104927 common +104929 proper +104936 common +104938 common +104941 common +104943 common +104945 common +104947 common +104950 common +common +104953 common +104955 proper +104964 common +104966 common +104969 common +104971 common +104973 common +104976 common +104978 common +104982 common +104987 personal +relative +104991 common +proper +104994 relative +104997 common +105003 common +105005 common +105007 common +105009 common +105012 common +105014 common +105016 common +105019 common +personal +105022 common +105024 demonstrative +105029 common +105031 personal +105036 common +105039 common +105041 common +personal +105046 common +105049 common +105051 common +105054 common +105058 personal +105061 common +105063 common +personal +relative +105067 personal +105070 common +105072 common +common +105076 common +105078 personal +105083 proper +105086 personal +105090 personal +105094 common +105097 proper +105099 personal +105103 common +105106 common +105111 common +105113 common +105117 common +105119 common +personal +105125 common +105128 common +105131 common +105133 common +105135 common +105139 common +105141 common +105146 personal +105149 personal +common +105156 common +105160 common +personal +105164 common +105177 common +105184 common +105187 common +105191 common +personal +105197 indefinite +105200 common +105202 common +105205 common +105212 common +105216 common +105218 relative +105221 common +common +105224 common +105226 common +105228 common +105230 common +105232 common +105235 personal +105238 common +105242 personal +105246 personal +105250 common +105252 proper +105254 personal +105257 common +105259 common +105261 common +105266 common +105270 proper +105272 personal +105275 personal +105277 personal +common +105280 common +105282 common +105284 common +common +105287 common +105289 common +105292 common +105296 personal +105301 common +105303 common +105305 common +relative +105311 common +105313 demonstrative +105318 common +105322 common +relative +105325 common +105328 common +105331 common +105333 proper +105335 common +105337 personal +105340 common +105343 demonstrative +105346 common +105348 common +105351 common +105353 common +105358 personal +105361 indefinite +common +105365 common +105367 common +105369 common +common +105374 common +105376 common +105379 common +105381 common +105383 common +105385 interrogative +105389 common +105394 common +105398 common +105408 personal +105419 common +105425 common +105439 personal +105441 proper +105455 common +105458 common +105462 demonstrative +105468 interrogative +105470 common +105472 common +105476 common +105478 relative +105480 common +105484 common +105486 personal +common +105489 common +105491 common +105497 common +personal +105500 common +105506 common +105508 common +personal +proper +proper +105513 common +105515 common +105517 personal +105519 common +proper +105522 common +105525 common +105528 common +105530 common +105532 common +105534 common +105538 proper +common +105541 common +personal +common +105545 common +105549 common +105552 proper +105556 common +105558 common +105562 common +105565 common +105569 proper +105572 common +105574 personal +105577 personal +105579 personal +105583 common +105585 common +105587 common +105590 personal +personal +105593 common +105597 common +105599 common +105601 indefinite +105603 demonstrative +105614 common +105617 personal +common +105621 personal +common +105626 personal +common +personal +105632 indefinite +105634 personal +common +105641 personal +105645 proper +105647 common +105650 common +105652 common +personal +105655 demonstrative +105657 common +105659 common +105662 common +105667 common +personal +105674 common +105677 common +demonstrative +105682 personal +105685 proper +105689 common +105692 personal +105698 personal +common +105703 personal +105706 common +105710 common +105712 common +105715 common +personal +105718 common +105720 demonstrative +105725 common +personal +105729 common +relative +105732 common +105735 common +105738 personal +105745 common +105748 common +105752 common +personal +105756 personal +105758 common +105760 common +common +105763 common +105767 common +common +105770 common +105772 common +105774 common +105776 common +personal +105780 proper +105783 common +105788 common +proper +105792 common +105794 common +105796 common +105798 common +105802 common +105805 common +105810 indefinite +105813 demonstrative +105816 common +105818 common +105823 common +105828 personal +105831 common +105835 personal +105837 personal +105839 common +105842 common +105844 common +105848 personal +105853 common +105857 common +105859 common +personal +105863 common +105865 common +105869 personal +105873 common +105878 personal +105880 common +105883 common +105885 common +105889 common +105892 common +105895 common +105897 common +demonstrative +105903 common +105908 demonstrative +105911 common +105913 common +105919 common +105930 common +personal +105933 common +105937 common +105939 common +105943 common +105945 common +105947 common +105949 common +105954 common +105956 common +105958 relative +105962 common +105971 common +105976 common +105978 common +relative +105981 common +common +105985 common +105987 common +105991 common +105993 common +105996 personal +106000 common +106002 common +106009 personal +106011 personal +106013 common +106015 common +106017 common +personal +106020 common +106023 common +106025 common +106027 relative +106030 common +106033 personal +106037 personal +106043 personal +106046 personal +interrogative +106051 personal +proper +106055 common +106058 common +106060 common +relative +106064 personal +106067 demonstrative +106072 personal +106076 common +personal +106079 common +common +106082 common +106084 common +106086 common +common +106089 common +proper +proper +106093 common +106099 common +personal +proper +proper +106104 common +proper +106107 proper +common +proper +proper +106115 proper +proper +106120 proper +106122 common +106124 common +personal +common +106128 common +106130 common +common +personal +106134 common +proper +proper +106139 common +personal +106144 common +personal +106149 common +personal +106153 personal +106155 common +106157 common +106161 common +personal +106165 common +106169 common +106175 demonstrative +106180 personal +common +106185 common +proper +proper +106191 personal +demonstrative +106196 personal +106200 personal +106203 common +personal +106208 common +personal +106213 common +106215 common +106217 common +common +personal +106221 common +106223 personal +106226 common +personal +106229 common +106233 personal +106235 common +proper +proper +106239 demonstrative +106243 common +personal +106251 common +106254 common +106258 personal +106267 common +proper +106270 common +common +106274 proper +proper +106277 common +106279 common +common +106282 common +106285 personal +106289 personal +106292 common +106294 common +106298 common +personal +106302 proper +106307 common +106316 common +106318 common +106321 common +personal +106327 common +106332 indefinite +106335 common +106337 common +106339 indefinite +106342 common +106344 proper +106349 common +106353 common +106355 common +106360 common +106362 proper +106367 common +106370 common +personal +106373 interrogative +106377 common +106379 common +106381 common +proper +106386 demonstrative +106394 demonstrative +personal +106398 common +106401 personal +common +106404 common +106406 common +proper +proper +106411 common +106413 common +personal +106422 common +106428 proper +106431 common +personal +106435 common +106438 common +106440 personal +106443 proper +106447 common +106453 common +demonstrative +personal +common +common +106459 interrogative +106469 common +106476 proper +106486 common +106489 personal +106491 demonstrative +106499 personal +106502 personal +common +106505 common +106507 common +106510 common +personal +106514 proper +proper +106517 personal +106521 common +106524 personal +106528 common +106530 proper +106537 personal +106543 personal +106548 common +106550 common +106553 common +106555 common +106564 relative +106566 personal +common +common +106570 personal +common +106573 demonstrative +106575 common +106577 personal +106581 proper +106586 personal +106592 personal +106597 common +relative +106601 personal +106606 personal +106609 indefinite +common +106612 proper +106614 indefinite +common +common +106618 indefinite +common +common +106622 indefinite +common +106625 common +106627 personal +106629 common +106636 common +106644 common +106647 common +106650 common +personal +106654 personal +106657 personal +106665 demonstrative +106668 personal +relative +106672 proper +proper +relative +106676 common +common +106680 common +106685 common +106687 personal +106689 common +common +106693 common +common +106697 common +106700 common +106702 personal +106706 common +106708 common +common +106713 common +personal +106718 personal +106720 common +106724 common +106728 common +proper +106732 common +106740 common +106743 common +proper +proper +106747 common +common +common +106752 personal +106760 common +personal +106769 common +personal +106772 common +106774 common +106776 personal +common +106780 common +106785 personal +106794 common +106798 common +106800 common +106806 common +common +106810 common +106815 relative +106818 common +106820 common +common +common +106825 common +personal +106828 common +proper +106845 common +106847 common +106849 common +personal +106855 personal +106860 personal +106864 personal +106868 common +proper +proper +106873 personal +106875 personal +106880 personal +106885 relative +106889 personal +106895 personal +106899 proper +proper +106903 common +personal +106908 common +common +106911 personal +106915 common +106919 demonstrative +106926 personal +106931 common +106934 personal +106940 proper +106942 common +106946 common +personal +106949 personal +common +106952 common +106954 common +personal +106958 personal +106963 personal +106974 common +106977 common +106979 personal +106982 personal +106986 personal +106989 common +106991 common +106996 personal +106999 personal +107002 personal +107007 personal +107009 common +107012 common +107015 demonstrative +107021 common +proper +107024 common +107028 common +107032 personal +common +107036 personal +common +common +personal +107044 common +107048 personal +107050 personal +107054 personal +107058 common +107062 common +107065 common +107069 common +personal +107072 common +common +107078 proper +proper +107083 common +107086 personal +107088 common +107091 common +107093 indefinite +107098 common +personal +107101 common +107104 common +proper +common +proper +proper +107110 proper +107112 common +proper +107115 common +107118 common +107120 common +107123 common +107127 relative +107129 personal +common +demonstrative +107135 proper +common +107144 common +107150 common +proper +proper +107154 common +personal +107157 relative +107163 common +107165 proper +107170 personal +107174 common +107177 common +107181 common +proper +107185 common +common +107189 common +107192 personal +107195 common +107197 common +personal +107200 common +common +personal +107205 common +personal +107212 common +107229 relative +107233 proper +proper +common +personal +107239 personal +107252 common +107256 common +107259 common +107261 common +107263 proper +proper +107266 relative +107268 demonstrative +107272 indefinite +107276 demonstrative +107278 common +personal +107283 relative +107288 common +common +personal +107299 common +personal +107304 relative +107307 personal +107316 common +107318 proper +relative +107321 common +common +relative +107325 common +107327 common +107330 common +107333 common +personal +107340 personal +107342 common +107344 common +107347 relative +107350 common +common +proper +proper +relative +107357 common +107359 common +personal +107363 common +107365 common +personal +107369 common +107372 personal +107375 personal +107379 common +personal +107384 common +107386 common +personal +107391 common +107393 proper +107396 proper +107402 common +107406 personal +107410 personal +relative +107414 common +107416 personal +107419 common +107424 personal +relative +107427 common +107429 common +common +107433 common +107440 personal +107443 common +107445 common +107453 common +107456 common +107458 common +107460 common +personal +107465 common +107468 common +107470 common +107474 common +107477 common +personal +107481 common +personal +107484 proper +proper +common +107489 relative +107492 relative +107494 relative +107496 relative +107498 relative +107500 relative +107503 indefinite +common +107507 indefinite +common +demonstrative +107511 relative +107521 personal +demonstrative +107526 common +107528 common +107531 personal +107535 common +107543 personal +107546 relative +107554 common +107557 personal +107560 relative +107589 personal +107594 personal +107596 common +107598 proper +107601 personal +107606 proper +107608 common +107610 common +107612 common +personal +107616 common +common +107619 common +107622 personal +107627 proper +107634 common +personal +107641 common +107645 common +107649 common +personal +107659 proper +107662 personal +common +common +common +107669 common +107672 common +personal +107676 common +personal +107680 common +personal +107683 common +107685 proper +proper +107689 common +107691 common +personal +107694 common +107697 common +107699 common +107705 proper +proper +107708 personal +107711 personal +common +107714 personal +107723 proper +common +107726 common +107728 common +proper +proper +107733 common +personal +proper +common +proper +proper +107740 common +common +107743 proper +107745 common +107748 proper +107752 common +107754 proper +personal +common +107758 common +107760 common +common +personal +107765 common +common +107768 common +personal +proper +proper +107774 personal +107778 common +personal +107781 proper +proper +107785 common +relative +107794 common +107797 personal +107800 common +relative +107805 common +107807 common +107809 common +107813 personal +107819 common +107827 personal +107829 relative +common +107835 common +107837 common +107839 common +107843 proper +107846 common +personal +relative +107852 personal +common +107855 proper +107859 personal +107861 personal +common +107864 common +107866 demonstrative +107868 personal +107870 relative +common +107876 personal +107883 common +107885 common +personal +107889 common +107891 common +107896 common +107899 common +107902 common +107908 common +107910 common +107913 common +107917 common +107919 common +personal +107923 common +107925 common +107927 common +107930 common +107933 personal +107936 common +107938 common +107943 common +relative +107946 personal +107949 common +107951 common +107956 common +107958 common +107960 common +personal +107963 relative +107966 common +107968 common +107970 common +relative +107973 common +107975 common +107980 common +107983 personal +107989 common +107993 common +108000 common +108002 common +108004 common +108006 common +108010 personal +108013 personal +108016 personal +108024 personal +108027 personal +108030 common +108032 common +108034 common +relative +108037 common +108044 personal +108051 personal +108054 common +108058 personal +108063 personal +108067 common +108069 common +personal +108072 personal +108077 common +108082 common +108084 personal +indefinite +108091 common +108094 common +108102 common +108104 common +personal +108108 common +108110 personal +108117 personal +108122 common +108131 common +108133 common +relative +108140 common +108144 common +relative +common +108148 personal +proper +108154 common +108156 personal +108160 common +108162 common +108164 proper +108167 common +personal +108171 common +personal +relative +108176 common +relative +common +108180 personal +108183 common +108185 common +108188 personal +108190 personal +108193 common +108195 common +108197 common +108202 common +108206 common +108212 personal +relative +108216 common +108218 interrogative +108220 common +108222 common +108224 common +demonstrative +108228 common +relative +108231 proper +108233 personal +108235 common +108237 common +relative +personal +108243 common +108247 common +108250 common +108254 common +108257 proper +108259 relative +108265 common +personal +108270 personal +108272 common +108275 personal +108277 interrogative +common +108281 personal +108285 proper +108287 relative +108291 common +personal +108294 common +108298 common +personal +108302 common +108306 common +108308 common +108310 common +108312 common +108314 common +108316 common +proper +108319 relative +108323 common +108325 common +108327 common +108329 demonstrative +108333 personal +108336 common +108341 common +108345 common +108347 personal +108352 personal +108354 common +108357 common +108360 proper +common +personal +108367 proper +proper +108370 common +108372 personal +108378 personal +108382 common +108387 common +108390 indefinite +108394 personal +108397 common +108400 common +108403 common +108405 common +108408 common +108410 common +108414 proper +108417 personal +108421 common +108423 common +108429 personal +relative +108433 common +108435 common +108437 common +108439 relative +108442 common +108446 common +108448 common +108450 common +108453 common +108455 proper +108457 personal +108460 common +108462 relative +108467 common +108469 common +108471 common +108474 personal +108478 personal +108482 common +108485 common +108487 common +personal +108490 personal +108492 personal +108494 personal +108497 common +108501 personal +common +108504 common +relative +108508 personal +108510 personal +108516 personal +108518 common +108521 common +108524 common +108527 common +108529 personal +108531 personal +108534 indefinite +personal +108538 common +108541 common +108544 common +common +108547 common +108549 common +relative +108552 common +108557 common +108559 proper +108561 personal +108565 common +108567 common +108569 common +relative +108577 common +108579 common +personal +108585 common +108587 relative +108590 common +108593 common +108595 common +108601 common +108603 common +108607 proper +108610 common +108612 common +interrogative +108617 common +108625 relative +108629 common +108631 common +108634 common +108636 common +108638 common +relative +108643 common +common +108646 common +108648 common +108650 common +common +108654 common +indefinite +108657 common +108659 common +108664 proper +108670 proper +108676 common +108684 common +108689 common +personal +108694 proper +108697 common +108701 proper +108703 common +personal +108707 personal +108709 personal +108712 common +108716 common +108720 common +common +common +common +common +108728 common +relative +108731 common +108733 relative +108736 common +108738 common +108740 relative +108742 personal +108744 indefinite +108748 demonstrative +108753 personal +108756 common +common +common +common +common +108763 common +personal +108768 personal +108772 common +108775 common +personal +108784 common +108786 common +108789 personal +108793 proper +108796 common +108798 common +108800 proper +common +108808 proper +108814 common +108818 common +common +common +common +common +common +108825 personal +108828 personal +108830 indefinite +108832 indefinite +108834 common +108838 common +108840 personal +108843 personal +108847 demonstrative +108849 common +relative +108852 common +108854 common +108857 common +108859 proper +108863 common +personal +108866 relative +108871 common +108876 common +108878 proper +108881 personal +108885 common +108889 personal +common +common +common +108896 common +108900 common +personal +108903 common +108906 indefinite +108908 relative +108911 common +108914 common +108917 common +common +proper +108922 common +common +108925 personal +108927 common +108930 common +108934 common +108936 common +108939 common +108944 personal +108946 common +108949 common +108953 demonstrative +108957 common +108959 common +108963 common +personal +108969 common +108975 common +common +108979 common +108984 common +common +108988 common +108990 relative +108993 common +108997 common +109000 common +109004 common +109007 common +109009 common +109011 common +proper +109018 relative +109023 common +109025 common +109030 common +109032 common +109037 personal +109039 common +109041 common +109043 common +109047 personal +109049 common +109054 personal +109057 common +109059 personal +common +109062 common +109065 common +109067 proper +109069 relative +109074 personal +109077 personal +109080 common +109086 common +109089 common +personal +109093 common +common +109099 personal +109105 personal +109108 personal +proper +109112 common +109115 common +109117 common +109119 common +relative +109123 personal +109126 demonstrative +109131 personal +109135 common +personal +109138 proper +109143 common +relative +109147 personal +personal +109154 personal +proper +109157 common +personal +109160 proper +109162 common +proper +109165 relative +109167 common +109171 personal +109173 personal +109175 proper +109178 proper +109182 common +demonstrative +109188 common +109190 common +relative +109193 personal +common +109196 personal +proper +109200 personal +common +proper +proper +109207 personal +109210 common +109218 common +109220 common +109223 personal +109227 common +109229 personal +109233 proper +109237 proper +109239 personal +proper +109242 common +109246 proper +109250 proper +common +109253 proper +109257 common +personal +common +109264 personal +109266 common +109272 proper +common +109279 proper +109281 personal +109285 proper +109288 common +relative +109292 common +109294 personal +109297 common +109300 common +proper +109303 personal +109305 common +109307 common +109309 personal +proper +109312 proper +109314 proper +109316 common +proper +109319 common +common +109322 common +proper +proper +personal +common +109328 common +109331 common +109335 personal +common +109340 common +personal +109344 personal +109346 common +109348 common +109351 common +109353 common +109356 common +109358 common +109360 common +personal +proper +proper +109366 common +109368 common +personal +109372 common +personal +common +109378 common +109381 common +personal +109385 personal +109388 common +109393 common +109396 common +109399 common +109403 relative +109406 personal +109408 personal +109410 personal +109412 common +personal +109416 common +109419 common +109421 common +109424 common +common +109429 personal +common +109436 proper +109440 proper +109443 personal +109446 common +109448 common +109453 proper +109455 proper +109459 common +109461 common +personal +109466 common +109470 common +109472 personal +109474 indefinite +109476 personal +109478 personal +109480 interrogative +common +109484 personal +109490 common +109493 common +109495 common +109503 common +109505 common +personal +relative +109512 proper +109515 personal +109518 common +109522 common +personal +109526 common +personal +109530 personal +109540 proper +109546 common +personal +109550 personal +109552 common +109554 common +109557 common +109560 common +personal +109564 common +109567 common +109570 common +109576 common +109579 common +109585 common +109587 common +109591 common +personal +109595 indefinite +109597 common +common +109604 common +common +common +common +109611 common +common +109615 personal +109621 common +109624 proper +common +109631 personal +109634 common +109637 personal +common +109641 personal +109644 personal +109648 common +109650 common +109654 personal +common +109658 personal +109661 common +109664 common +personal +109668 common +common +109671 common +109677 indefinite +personal +109681 personal +109683 common +109685 common +common +personal +109690 common +109697 personal +109706 personal +109708 common +common +personal +109716 personal +109720 personal +109723 common +109726 personal +109729 personal +common +109732 common +109735 demonstrative +109737 personal +109740 common +109744 common +common +109747 personal +109749 common +109752 common +common +109758 common +common +relative +109764 personal +109768 common +personal +109771 common +109773 common +109775 common +109780 proper +109782 proper +proper +109789 personal +109793 common +109796 personal +109804 common +proper +109808 common +109810 personal +109813 common +109818 common +109821 personal +109823 common +109830 personal +109832 common +109837 personal +109839 common +109841 common +109843 common +personal +109847 personal +109849 common +common +common +109853 common +109857 common +personal +109862 common +109867 personal +109869 personal +proper +109877 personal +109879 proper +109881 interrogative +personal +common +109885 common +109887 common +common +109892 personal +109895 common +personal +proper +109900 personal +common +109903 personal +109906 common +personal +109910 common +109917 proper +109921 proper +109923 common +personal +109928 common +109931 common +109933 proper +109939 personal +109942 common +personal +109949 common +demonstrative +109952 personal +109956 demonstrative +109962 personal +109965 personal +109975 demonstrative +personal +109984 common +personal +109989 personal +109997 common +personal +110002 proper +110004 personal +110006 personal +110009 personal +110011 common +110014 common +personal +110019 common +personal +110024 personal +110028 personal +personal +common +110032 demonstrative +110035 personal +110039 common +110041 common +personal +110045 personal +common +110051 personal +110054 common +110057 interrogative +common +110060 common +110063 personal +110067 common +relative +110071 personal +110074 common +personal +common +110078 common +110084 personal +110086 common +110090 common +110092 common +personal +110095 personal +110097 common +110099 common +personal +110103 common +personal +proper +110108 common +personal +110111 personal +110113 personal +110115 common +110120 common +110122 personal +110128 personal +110130 personal +110134 personal +110136 common +110139 common +110142 common +110144 common +personal +110148 common +110150 common +personal +proper +110157 personal +110159 common +110164 personal +110166 common +proper +110172 personal +110176 personal +110180 common +110189 interrogative +common +110192 personal +110195 common +proper +110198 demonstrative +110200 common +110202 common +110204 common +personal +110207 personal +110210 common +110213 personal +110215 personal +common +110219 common +110221 common +110224 common +common +110229 common +110234 common +110242 common +110244 common +personal +110248 common +110251 demonstrative +110255 personal +110261 personal +110263 common +110265 common +110268 common +110274 common +110277 common +110282 common +personal +110287 personal +110291 common +110293 common +110296 personal +110298 personal +personal +110305 personal +110309 personal +110313 common +110317 proper +110319 common +110321 personal +110334 common +personal +110337 personal +110347 common +110350 common +110353 personal +110368 common +110373 proper +110380 common +110385 proper +110388 personal +110390 demonstrative +personal +110394 common +common +110397 personal +110404 common +110406 common +110413 personal +110415 common +110417 common +110419 common +common +110423 common +common +110427 common +110432 proper +110436 personal +110443 personal +110446 common +110448 common +110450 common +110452 common +110457 common +110461 personal +110464 common +demonstrative +110467 common +110470 common +110473 common +110475 common +110477 personal +110480 personal +110485 common +110487 common +common +common +110494 common +110496 common +110499 common +personal +110504 common +110507 common +110514 common +personal +110519 common +110522 common +personal +110526 common +110529 personal +110531 common +common +110534 common +common +110538 common +110540 common +110555 common +110560 common +110563 personal +common +110568 common +common +110571 common +110573 common +common +common +110579 personal +110581 common +110583 common +110586 common +common +110590 common +personal +proper +proper +110597 personal +110605 personal +110609 personal +110619 common +110621 personal +110626 personal +110629 personal +110631 common +110634 personal +110637 personal +110640 common +110643 common +personal +110647 personal +110649 common +110651 personal +110666 indefinite +110670 indefinite +110678 personal +110690 demonstrative +common +common +110694 proper +proper +110697 personal +110699 common +110702 common +110713 common +110717 personal +110719 common +110721 common +110723 personal +110727 personal +110729 common +110732 common +110735 common +110739 common +110741 common +personal +proper +proper +110749 personal +relative +110753 common +110756 personal +110759 common +110762 common +110765 personal +110767 common +110770 common +110773 common +110775 common +110777 common +personal +proper +proper +110782 personal +proper +110785 proper +110787 proper +110789 common +proper +110792 common +common +personal +110796 common +proper +proper +personal +common +110802 common +110804 common +common +110807 common +proper +proper +common +110814 common +110817 personal +110824 common +personal +110829 common +110833 personal +110835 personal +110837 personal +personal +110840 personal +110844 common +110846 common +110849 common +personal +110852 common +110856 common +personal +110860 common +relative +110863 common +110866 common +110868 common +110872 personal +110874 common +110876 common +110878 relative +110884 common +110888 personal +common +110891 personal +110894 common +110896 personal +110899 common +110901 common +proper +110904 common +110906 common +common +personal +110910 common +common +110913 common +110917 common +110923 common +110925 common +personal +proper +relative +110930 common +common +110934 common +110936 common +110940 common +110942 common +personal +110950 personal +110959 common +demonstrative +110964 common +personal +110967 personal +110969 relative +110974 personal +110976 personal +110979 common +110981 common +personal +110986 common +common +110989 common +common +110992 common +110996 common +110998 common +personal +proper +111002 personal +111004 personal +111006 personal +111009 common +111011 common +personal +111014 common +proper +proper +111018 common +111020 personal +111023 common +111025 common +personal +proper +proper +111030 personal +common +111033 personal +111039 personal +111042 common +111047 common +111050 common +111053 common +111056 personal +111061 common +111063 common +111065 indefinite +personal +111070 common +111076 common +111081 common +111083 common +111085 common +111087 common +111095 common +111097 common +111099 personal +111102 common +111104 common +111107 personal +111110 common +111117 personal +demonstrative +111120 personal +111129 personal +111132 personal +common +111136 common +111138 common +111154 relative +111156 common +proper +111160 common +111162 common +personal +111167 common +111169 common +personal +relative +111173 common +111176 common +111178 proper +111181 common +111183 common +111185 common +common +111190 common +common +111195 relative +111197 common +111199 common +111205 personal +111208 demonstrative +111210 personal +111212 common +common +common +111218 personal +111220 common +111228 common +111232 common +111234 personal +111238 common +111241 personal +common +111245 common +111248 personal +111250 common +111252 common +111254 common +111256 common +common +111259 common +common +111262 relative +111265 personal +111268 common +personal +111271 common +common +111274 common +personal +proper +proper +111280 common +111285 common +relative +111290 common +111293 common +personal +111296 personal +111298 common +personal +proper +proper +111304 common +111306 common +personal +111310 personal +111313 common +111316 common +111319 common +111321 personal +111323 common +111328 common +111330 common +111332 common +111337 personal +111340 common +111342 common +111349 personal +111358 common +111363 common +111368 common +relative +111371 personal +111380 common +111382 personal +111384 relative +111392 common +111394 personal +111396 common +111399 common +111401 common +111405 common +111407 proper +111409 common +111411 personal +111413 common +111415 common +proper +proper +111419 personal +111422 common +111429 common +relative +111433 personal +111435 personal +111440 personal +111445 personal +111448 common +111451 indefinite +111454 common +111456 common +common +111459 common +111465 indefinite +personal +111471 common +111474 personal +common +111477 personal +111481 personal +111487 personal +demonstrative +111490 personal +111493 indefinite +111501 indefinite +111504 personal +111512 demonstrative +111517 common +proper +proper +111522 common +111525 personal +common +111529 common +personal +111536 indefinite +111540 common +personal +111544 common +demonstrative +111549 personal +111560 common +111562 personal +111564 common +111566 common +111568 personal +111570 common +111575 common +111577 common +111580 personal +111582 common +111585 common +proper +relative +111589 common +111592 common +111596 common +111598 common +personal +proper +proper +111604 personal +proper +common +proper +proper +111610 common +common +common +personal +111615 proper +proper +111618 common +personal +proper +111622 common +111624 common +common +common +common +111629 common +common +111632 proper +proper +111635 common +personal +111639 personal +111642 proper +111645 proper +111648 indefinite +111653 common +111655 common +111657 relative +common +111662 common +common +111666 common +111669 common +111671 common +111673 common +111676 common +111678 common +111681 common +111683 relative +111685 indefinite +111688 common +111691 common +111695 relative +111699 interrogative +111706 common +111708 indefinite +personal +111713 demonstrative +111717 common +111729 common +111731 common +common +common +common +common +common +111740 indefinite +111745 common +111748 common +111750 common +111753 common +relative +111756 personal +common +111761 personal +proper +proper +111765 common +personal +111769 personal +111773 common +111779 common +111781 common +111788 common +111792 common +111794 common +personal +111797 common +111799 common +111802 proper +proper +111805 common +111809 common +111812 proper +proper +111817 common +111820 relative +111823 personal +111826 demonstrative +111830 personal +111833 proper +proper +111837 common +111839 common +111844 personal +111846 common +111850 common +111852 common +111856 common +common +111859 common +111862 common +111864 common +111866 common +proper +demonstrative +111870 common +111872 personal +111877 personal +common +111882 personal +111885 common +111887 common +111890 common +relative +111893 indefinite +111896 common +111898 relative +111900 proper +111902 proper +relative +111906 proper +111916 common +common +common +common +111922 common +111924 common +111929 common +111935 common +111939 common +111941 common +demonstrative +111948 common +personal +common +relative +111954 common +111958 common +common +111963 common +111966 common +common +111969 common +common +proper +proper +111975 personal +common +111980 common +common +111984 relative +111986 personal +common +111989 common +common +common +111993 common +111995 common +common +112004 common +112007 common +112010 common +112012 common +112014 common +112016 common +112018 common +112021 common +112023 common +112025 personal +112028 common +112030 common +112032 common +112034 common +112038 relative +112040 common +112042 common +common +112045 common +112047 common +112051 common +112056 common +112059 common +112063 common +112065 proper +112069 proper +112071 proper +112076 common +112079 common +112085 common +112089 common +112091 common +112093 common +112095 common +112098 common +112100 indefinite +common +112104 common +112109 common +112113 common +common +112123 common +112130 common +112133 common +112136 common +112139 common +112142 indefinite +112145 common +112150 common +common +112159 common +112166 common +112176 common +112178 common +112182 common +112187 common +112194 common +112196 common +112199 common +112202 demonstrative +112210 common +112218 common +112221 common +common +112225 common +112229 common +112234 common +112236 personal +112240 common +112242 common +112245 proper +proper +demonstrative +personal +112253 personal +112264 common +common +relative +112268 common +common +112271 common +112273 common +112275 common +112282 common +common +relative +112287 common +112290 common +112292 common +112295 common +112298 common +112301 common +112304 common +112310 common +112312 indefinite +112314 common +112316 common +112319 common +common +112322 common +112327 common +112331 common +relative +112334 common +112337 common +112339 common +112345 common +112348 common +common +112355 common +112360 common +common +112363 common +demonstrative +112367 common +112370 common +proper +proper +112375 common +112377 common +112381 common +relative +112389 common +112393 personal +112395 common +112399 common +112406 common +112412 common +common +112420 common +112424 common +112428 demonstrative +112435 common +112437 relative +112439 common +112441 common +112444 demonstrative +112449 personal +112451 common +112455 common +112459 common +112461 common +112463 common +112465 common +112467 common +112472 common +112474 common +112476 common +112481 personal +common +relative +112485 personal +112487 common +112489 common +112491 common +112493 common +demonstrative +112497 demonstrative +112500 personal +112502 common +112507 personal +112510 common +112512 personal +112514 demonstrative +112518 personal +112522 personal +112529 common +112532 common +112535 common +112538 common +112541 common +112549 indefinite +112551 common +112559 common +112562 common +112567 demonstrative +112572 common +112581 common +112585 common +112588 common +common +112591 common +112598 demonstrative +112605 indefinite +112614 common +112624 common +112628 common +common +112631 common +112640 common +112647 common +112658 proper +112662 common +112666 common +112675 common +112696 common +112700 common +112704 indefinite +112708 proper +112710 indefinite +112715 personal +112720 common +112731 common +112737 common +112739 common +112743 common +common +112751 common +112753 common +personal +112757 common +112767 common +112777 common +112782 common +112784 proper +proper +112789 common +112791 demonstrative +112794 common +112798 common +common +112805 common +112807 personal +112813 common +112818 common +112822 personal +common +indefinite +common +112827 common +112832 common +112834 indefinite +112840 common +112851 relative +112854 common +common +112858 common +112860 common +112866 common +112868 common +112871 common +112877 common +112881 common +112893 common +112895 demonstrative +112900 indefinite +112906 common +112909 common +personal +proper +proper +112916 common +common +112924 common +112926 common +112928 relative +112930 common +common +common +common +112935 common +common +112939 common +112943 common +112945 common +112948 common +112951 common +112954 common +112956 common +112962 common +112966 indefinite +112970 common +112972 common +demonstrative +112981 common +112983 common +112985 common +112990 relative +112993 common +112995 common +112997 common +112999 common +113005 common +relative +113008 indefinite +113012 common +113014 personal +113016 common +113020 common +common +personal +demonstrative +113027 common +common +common +common +common +common +113036 common +113038 common +113042 common +113044 relative +113050 common +113053 common +113057 common +113063 proper +proper +113068 proper +proper +113072 common +113074 personal +113076 common +113081 common +113083 common +personal +proper +proper +relative +common +113095 common +113097 common +113101 common +113107 common +common +113111 relative +113114 common +113118 relative +common +113121 common +113129 common +113136 common +common +113140 common +113143 personal +113147 common +113151 common +113157 personal +common +113167 common +113169 proper +113171 common +113176 common +113178 common +113181 common +relative +113184 indefinite +113187 common +113190 common +113192 personal +proper +common +proper +proper +113198 common +common +113201 common +common +113205 proper +proper +proper +113209 common +common +common +common +113214 common +common +113217 proper +proper +113220 common +personal +common +113225 common +relative +113232 common +113238 personal +common +113242 common +personal +common +113246 common +113248 personal +113251 personal +113253 common +113255 common +113258 common +113261 personal +113263 common +relative +113269 common +personal +proper +113274 common +personal +proper +113282 personal +113284 relative +common +113287 personal +113290 common +113292 common +relative +113296 personal +113299 common +113301 common +personal +113306 personal +113308 common +common +common +113312 common +113314 common +113316 common +113321 common +113323 common +personal +113326 personal +113328 common +personal +113333 common +113335 common +common +113339 personal +113342 common +113347 common +personal +113352 common +113354 common +113357 personal +113359 proper +proper +113362 common +113369 common +113371 common +personal +proper +proper +113378 common +113381 common +113383 common +113386 common +113388 relative +113390 personal +common +113393 common +113395 common +113397 relative +common +113400 demonstrative +113407 relative +113415 common +personal +113419 demonstrative +113421 common +113423 common +113425 common +relative +113428 personal +113431 common +113433 common +113436 proper +proper +113440 common +113443 common +113448 personal +113450 demonstrative +113453 personal +113458 proper +relative +113461 proper +113463 proper +113465 common +113467 common +113469 proper +common +113473 personal +113478 common +personal +113484 proper +113487 personal +113491 personal +113493 common +113495 common +113497 common +113499 demonstrative +113501 common +113503 relative +113505 proper +113508 personal +113511 common +personal +personal +113517 common +113520 proper +proper +113523 relative +113526 personal +113529 common +demonstrative +113533 common +relative +113543 common +proper +proper +113551 common +common +113561 indefinite +113571 common +113574 common +113577 relative +113581 personal +113583 common +common +113588 proper +proper +113594 common +proper +113598 common +personal +113601 relative +113604 common +113609 common +113611 common +113615 demonstrative +113623 personal +113625 common +113628 proper +proper +113631 common +113635 common +113649 personal +113652 demonstrative +113657 personal +113660 demonstrative +113665 common +113672 common +113677 personal +113680 common +common +113685 common +113687 common +113691 common +113696 common +113700 common +personal +113703 common +common +113706 relative +113708 proper +113710 proper +relative +113714 common +113717 common +113723 indefinite +common +113728 common +113730 common +113734 common +demonstrative +113737 common +113740 personal +113744 common +113749 common +common +113754 common +113758 common +113769 relative +113771 common +113773 relative +113775 common +113778 indefinite +113780 personal +113782 demonstrative +113784 common +113786 common +113790 common +113793 common +113799 common +113803 common +common +common +common +113811 common +113814 common +113820 common +113825 common +113828 common +common +113840 common +113847 personal +113849 common +common +113852 common +common +113860 common +113863 personal +113866 demonstrative +common +113869 demonstrative +113874 common +113876 common +113881 common +113884 common +113887 common +113897 common +113905 common +common +113909 common +personal +113913 demonstrative +113917 demonstrative +113923 common +113926 common +113928 common +113930 common +113937 common +common +113942 relative +common +proper +113946 proper +113948 proper +113951 demonstrative +113954 common +common +113958 common +113962 common +113970 common +personal +113978 demonstrative +113981 personal +113983 personal +113985 common +113987 common +113989 common +113991 common +113993 common +113995 common +113997 common +113999 common +114001 common +relative +personal +114006 proper +114008 proper +114010 proper +relative +common +114017 personal +114020 common +114029 proper +proper +114034 common +114036 common +114045 personal +114048 relative +114054 interrogative +114059 common +114062 common +114065 personal +114068 common +114070 common +114073 proper +proper +114076 common +114081 common +114083 common +114085 common +114087 common +114090 common +114096 common +common +114100 common +114106 common +114108 proper +proper +114118 common +personal +114122 common +personal +114126 common +114135 common +114137 common +114140 common +114145 common +114151 common +personal +114154 common +114157 common +114162 common +114164 common +114169 common +114172 personal +114178 common +common +114181 common +personal +114185 personal +114190 common +114192 common +personal +114197 common +114200 common +114203 common +114207 personal +114210 common +common +relative +114214 personal +114216 common +114219 common +114221 demonstrative +114223 common +114227 personal +114234 common +personal +114239 personal +114242 proper +personal +114248 common +114252 proper +proper +114255 proper +proper +114258 proper +proper +114263 personal +proper +114268 personal +114271 personal +114274 common +114276 proper +114279 proper +114281 common +relative +114285 proper +114287 proper +114292 common +114295 common +proper +114298 common +114301 personal +114304 personal +114306 common +114309 common +personal +relative +114313 personal +114320 common +114324 personal +common +114327 personal +114331 personal +114334 personal +114338 common +personal +114343 personal +114346 personal +114348 common +114354 common +114358 common +common +114361 personal +114363 common +114366 common +114372 common +personal +114376 relative +114378 common +114381 common +114383 common +114386 proper +114388 proper +114391 proper +common +proper +114396 proper +114398 proper +114401 proper +114405 common +114408 personal +proper +114411 proper +114413 proper +114415 proper +114418 common +114421 common +114424 common +personal +114427 common +114429 personal +proper +common +common +114434 common +proper +proper +114438 common +114440 common +114442 common +common +114446 common +114448 common +common +114451 relative +114455 common +114457 common +114461 common +114464 common +personal +114467 common +relative +114470 personal +114472 common +114474 common +personal +common +proper +114479 common +114482 common +common +114485 common +114487 common +common +114490 proper +proper +114493 common +personal +demonstrative +114498 personal +114500 proper +114508 common +114511 personal +personal +114515 indefinite +114519 common +common +114522 common +114526 common +common +114533 common +114536 common +common +114546 common +114560 common +114562 common +114570 common +114583 common +114588 common +relative +114592 relative +114594 common +114597 relative +114601 common +114604 indefinite +114606 personal +114608 personal +common +proper +114612 common +114614 common +common +114618 common +demonstrative +114623 relative +common +114626 personal +114632 common +114636 common +114638 common +common +114642 common +114656 personal +114659 common +114662 common +common +114668 common +114677 common +114681 personal +114683 relative +114687 common +common +114695 common +114697 common +114699 common +common +114703 common +114708 common +114726 common +114730 common +114732 common +114741 personal +114743 common +114745 common +114748 common +common +common +common +114762 personal +114765 common +114767 common +114779 common +114784 common +114787 common +personal +common +114796 common +114798 common +114801 common +114803 personal +114807 common +114811 common +114821 common +114825 common +114827 common +114829 common +114832 common +114834 common +personal +proper +proper +relative +114840 personal +114842 personal +114845 personal +114848 common +114851 personal +common +114854 common +114856 common +demonstrative +114865 common +114867 personal +114870 personal +common +common +114877 common +114887 common +114891 common +114894 indefinite +114896 personal +114901 common +114903 common +114906 common +114908 common +114912 personal +114916 common +114919 common +114921 common +personal +common +114927 common +114930 common +relative +114933 personal +114937 personal +common +114940 personal +114942 common +common +114945 common +common +114948 relative +114951 personal +114954 proper +proper +114957 common +personal +114962 demonstrative +common +common +114967 common +common +114972 common +114975 demonstrative +114977 personal +114982 common +114986 common +demonstrative +114993 common +114996 common +114998 common +115000 common +115002 common +115011 common +115016 common +115021 demonstrative +115030 personal +proper +115033 proper +115037 personal +115039 proper +115044 proper +115048 proper +115053 personal +115061 common +115066 common +115072 personal +115075 personal +115080 personal +115082 common +115084 common +115087 personal +proper +common +proper +proper +115093 proper +115095 common +proper +115101 personal +115103 proper +115105 common +115107 proper +115109 common +personal +115114 common +personal +common +personal +common +115120 common +115122 common +common +personal +115126 common +proper +proper +115131 common +personal +115134 common +personal +115139 common +personal +115142 personal +115144 common +115147 common +relative +115152 common +proper +115161 common +115163 common +personal +115168 common +115173 personal +115175 proper +115177 common +115180 common +115184 common +personal +115188 common +115193 personal +common +115198 proper +common +115202 personal +115207 common +115210 demonstrative +115213 proper +common +115218 common +proper +proper +115222 personal +115226 common +115230 common +relative +proper +115235 personal +115240 personal +115242 personal +115245 personal +relative +personal +demonstrative +115252 common +personal +115255 relative +115257 personal +115261 personal +personal +115266 common +115268 common +115273 common +115281 common +115284 personal +115292 demonstrative +115295 common +115298 personal +115302 common +115305 common +common +115309 personal +115311 interrogative +115313 personal +115316 common +115319 common +115322 personal +115324 common +115326 personal +115328 personal +115331 indefinite +personal +115336 demonstrative +personal +115339 personal +proper +115344 common +personal +115350 personal +115353 personal +personal +115357 common +personal +personal +115362 common +115364 personal +115366 common +115368 proper +115371 common +personal +115374 personal +115379 relative +115386 personal +common +115393 common +personal +115396 personal +115398 personal +proper +115401 common +personal +115404 proper +proper +proper +proper +proper +proper +115412 personal +115414 common +115416 common +proper +proper +115421 common +personal +115429 common +115432 common +115434 common +115438 common +demonstrative +115441 personal +115443 common +relative +115446 common +115449 relative +115453 common +relative +115456 common +115458 common +115460 common +115462 common +personal +115469 common +115471 common +personal +common +115475 common +115481 common +115484 demonstrative +115488 common +relative +115491 common +115493 personal +115496 interrogative +115498 common +115500 indefinite +common +personal +115504 personal +personal +115508 personal +115511 personal +115513 personal +115515 common +115517 personal +115519 personal +115521 common +115530 common +115534 personal +115536 common +common +115542 common +115547 common +personal +common +115552 common +personal +common +common +115559 common +115561 common +115563 common +personal +115567 common +115569 common +115572 common +115574 common +common +115577 common +personal +115580 common +115583 common +115585 demonstrative +115587 personal +115589 common +115591 common +personal +common +common +115598 personal +115600 common +personal +115603 common +115605 common +115608 common +115610 common +personal +115614 common +personal +115618 personal +115624 common +115627 common +115629 personal +115631 common +115635 personal +115641 common +personal +115647 interrogative +115649 common +115651 indefinite +115655 personal +115661 personal +common +115664 common +personal +115670 common +115672 common +115678 common +115680 demonstrative +115684 personal +115694 common +115696 common +115701 common +115703 common +115706 common +115708 personal +115711 demonstrative +common +relative +common +115719 common +115724 personal +115728 common +115730 common +115732 common +115735 common +115737 common +115739 common +115742 personal +common +115746 common +115749 common +115753 relative +115758 indefinite +115760 interrogative +115762 common +115765 personal +115767 common +common +115771 personal +115773 personal +115775 indefinite +115777 common +common +115780 common +115782 personal +115787 common +personal +115793 personal +115798 personal +115804 personal +115812 indefinite +115814 common +115816 proper +115819 common +115821 common +common +115824 common +115827 common +common +115832 common +115835 personal +115837 relative +115842 relative +115846 common +115848 common +115851 common +115853 common +personal +115856 common +115869 relative +common +115873 common +personal +115879 common +personal +115882 common +personal +115886 common +115888 personal +115891 personal +115895 personal +115899 personal +115902 common +relative +personal +115907 common +115911 common +115913 common +115915 common +115917 personal +115925 common +115929 common +115931 common +115933 demonstrative +115939 demonstrative +relative +common +common +115948 common +115953 common +115956 common +proper +115964 common +115971 common +115975 common +115980 common +115982 common +115985 relative +115987 personal +115994 common +115996 common +116001 common +116003 common +116005 common +personal +proper +116012 personal +116015 proper +116019 common +personal +116023 common +demonstrative +116026 proper +116029 relative +116031 common +116034 common +116037 personal +116040 common +116043 indefinite +116048 common +116051 proper +116056 common +personal +116059 common +116061 common +116065 proper +116067 common +116070 common +personal +relative +common +116075 personal +116078 common +116081 common +116083 common +116092 common +116098 common +personal +116104 common +personal +116109 common +116112 common +116114 common +116121 common +personal +116124 common +116128 common +personal +116131 common +116135 common +demonstrative +116142 common +116144 personal +116148 common +personal +116154 common +personal +116160 common +personal +116163 common +116168 indefinite +personal +common +116172 common +116177 common +116181 personal +116184 common +116186 relative +116193 indefinite +116195 personal +common +116198 common +116202 proper +116206 common +116208 common +116210 common +116219 common +personal +116225 common +personal +116230 common +116232 indefinite +116241 proper +116243 proper +116245 interrogative +116248 common +116252 relative +116254 common +116260 interrogative +116266 common +personal +116279 common +116285 common +116289 common +personal +116292 indefinite +116294 personal +116306 common +116308 common +demonstrative +116313 common +116320 common +116329 common +personal +116335 common +personal +116339 common +116341 common +common +116354 common +116357 common +116363 common +personal +116367 demonstrative +116373 common +personal +116378 indefinite +116381 personal +116389 common +116392 indefinite +common +116396 proper +116399 demonstrative +common +116406 common +personal +116412 common +personal +116416 personal +proper +116423 common +116426 demonstrative +116429 common +116431 common +116433 common +116439 common +personal +116442 personal +116446 common +personal +116453 common +116458 demonstrative +116460 common +116466 common +116468 common +indefinite +116473 common +116475 common +116483 common +116488 common +common +116491 common +116493 common +116495 common +116498 common +116500 common +common +116505 common +116508 personal +116515 common +personal +116518 relative +personal +116521 common +116524 common +116528 common +proper +116531 common +116533 common +116536 common +116539 common +116545 common +personal +116552 common +116554 common +116558 common +116560 common +116562 common +116565 common +116567 common +116571 common +116574 common +116576 common +116579 common +116584 common +116588 common +116590 common +116592 common +116601 personal +116603 common +116606 personal +116611 common +116615 personal +116618 common +116621 personal +indefinite +116625 common +116630 common +116633 proper +116637 proper +116639 personal +116642 common +116647 personal +common +personal +116651 personal +personal +116655 personal +116661 personal +common +116665 common +116668 common +proper +relative +116673 common +116675 common +personal +116678 common +116680 common +116685 personal +116687 common +116689 common +116692 common +116698 common +116701 common +116704 relative +116707 common +116714 personal +116716 common +116721 common +common +116725 common +proper +116728 relative +116730 personal +116732 common +116740 common +116745 common +116748 common +116751 common +116754 personal +indefinite +116757 common +116759 common +116761 common +116763 common +116767 common +common +116771 common +116776 common +116778 common +common +116787 common +116792 common +116794 common +116798 common +116807 common +116809 proper +common +116813 common +116818 common +common +116822 common +116824 common +116826 common +common +common +116830 common +common +common +116835 common +116838 demonstrative +116843 common +116852 common +116857 common +116863 common +common +116866 common +116868 common +116874 common +116876 personal +116878 common +116880 common +116884 common +116889 personal +116892 common +116895 common +116897 demonstrative +116899 relative +116903 common +116906 common +116909 common +116911 common +116914 common +116916 relative +116918 common +116920 common +116925 personal +116930 common +116939 common +116942 common +personal +116946 common +relative +116951 common +personal +116961 personal +116964 common +116968 common +116970 common +116972 common +116978 common +116981 common +116983 common +116986 common +116989 proper +116992 common +117001 personal +117007 personal +117011 personal +117017 common +117019 common +117025 personal +117027 common +common +117030 common +117032 common +117034 relative +117039 common +117041 common +117045 common +personal +117048 common +117050 common +117054 common +117057 relative +117060 common +117062 common +117069 common +relative +117073 common +117075 common +117086 common +117089 proper +117091 personal +117095 common +proper +common +117101 common +117103 demonstrative +117105 proper +common +proper +common +117110 common +117115 proper +117119 common +117121 common +117124 personal +relative +117131 proper +117135 common +common +117140 common +proper +relative +117144 common +common +117150 common +common +117153 common +common +117159 common +117161 common +117163 common +117169 interrogative +demonstrative +relative +117173 proper +117175 common +117179 common +117185 common +proper +117188 common +117190 common +117195 common +117197 common +demonstrative +117201 common +personal +117207 common +proper +117214 personal +117216 proper +117221 common +117226 common +117238 common +117247 common +117250 proper +117252 proper +117261 common +117263 common +117267 personal +proper +117272 common +117276 common +117280 common +117282 personal +117284 interrogative +117286 common +117289 common +proper +117293 common +117298 common +proper +117304 common +117306 common +117308 common +common +117313 relative +117315 demonstrative +common +117320 relative +117324 common +117329 proper +117332 common +personal +117335 relative +common +117338 common +117340 proper +117350 common +proper +117353 common +117355 relative +117359 common +common +117364 common +common +117370 personal +common +117374 common +117377 common +proper +117381 common +117383 common +117387 personal +117395 common +117397 common +117399 common +117401 relative +117404 common +117407 relative +117410 common +117415 common +117418 common +117422 common +117427 personal +117429 common +117433 personal +common +117437 common +117439 demonstrative +117442 common +117445 proper +117452 common +117455 common +117463 personal +117466 common +117470 common +117481 personal +117483 common +117490 personal +117492 personal +117495 demonstrative +common +117507 common +117509 relative +117513 common +common +117517 common +117522 common +common +117528 common +117530 demonstrative +117533 personal +117537 common +common +117540 common +117542 common +117545 common +117547 common +117551 common +common +117555 common +117558 common +117563 demonstrative +common +relative +117570 common +117572 common +117575 common +common +117581 common +117584 relative +117587 common +117589 common +117592 common +117597 common +117599 common +117605 demonstrative +indefinite +relative +117614 common +117618 common +117623 common +117625 common +relative +common +117629 common +117635 proper +117639 common +117647 common +117650 personal +117653 common +117657 common +117659 relative +117662 common +117664 common +relative +117668 common +117674 demonstrative +117680 common +117684 personal +117687 common +117690 common +117695 common +proper +117700 common +proper +common +117707 common +relative +117711 common +personal +117714 common +117716 personal +117718 common +personal +117721 personal +117723 common +proper +117726 personal +117731 common +personal +personal +117735 personal +117737 common +117739 demonstrative +117741 common +relative +117745 common +proper +117749 common +demonstrative +117752 common +117754 common +personal +117758 common +personal +117762 common +personal +117765 personal +117768 personal +117770 common +117772 personal +117774 personal +117776 common +117783 common +personal +117788 common +personal +117793 common +117797 personal +117802 personal +117807 common +personal +117811 common +personal +117830 common +117837 common +common +117845 common +117849 relative +117852 common +117855 common +117858 common +117860 common +relative +117868 common +common +117876 common +117879 common +117881 common +117884 common +117886 relative +common +117891 common +117894 common +proper +117900 common +117902 common +117905 personal +proper +common +117912 relative +117918 common +117920 demonstrative +117927 common +117932 common +117934 common +117942 common +117945 common +117948 common +relative +117952 personal +117956 common +common +demonstrative +117961 common +117969 common +117973 common +117975 common +relative +common +117980 common +117984 relative +117986 common +117988 common +117993 common +117999 common +118001 common +118004 common +common +common +118008 common +common +118013 proper +common +118023 common +118026 demonstrative +118029 demonstrative +118031 common +118034 common +common +118037 common +118042 common +118049 common +118054 common +common +118057 common +118059 common +common +118068 common +common +interrogative +118073 common +118075 proper +relative +118078 common +118080 personal +118084 common +118087 common +personal +118091 common +118095 common +118099 demonstrative +common +118102 common +118105 common +118108 common +118113 common +common +118119 common +118122 common +118125 common +common +118128 common +118132 common +118149 common +118154 common +118157 common +118159 proper +118162 common +118165 common +118167 common +118170 common +118172 common +118174 common +118177 common +118179 personal +118181 common +118185 common +118188 demonstrative +118190 common +118192 common +relative +118196 personal +118198 common +118202 common +118206 common +118208 common +118210 common +118216 common +118221 common +118224 common +118227 common +118229 common +118232 common +118236 common +demonstrative +118240 personal +118243 common +118246 demonstrative +118249 proper +118259 personal +118261 common +118265 common +118267 common +118269 personal +118274 personal +118277 common +118283 common +118285 common +118289 personal +118293 common +common +118299 common +118301 common +118303 common +118305 common +118308 common +personal +118313 relative +118316 common +118321 demonstrative +common +118326 proper +118332 common +118337 common +118340 personal +118343 common +118346 common +118348 common +118353 personal +118355 common +118357 common +118359 common +118362 common +relative +118383 common +common +118391 personal +common +common +118395 common +118398 common +common +118401 common +118403 common +118408 common +118410 common +118412 common +118416 common +118418 personal +common +118422 common +118428 common +118431 common +common +118435 personal +118440 common +personal +118445 common +118447 common +118449 common +118452 common +118457 relative +118459 common +118468 common +personal +118478 relative +common +118484 common +118486 common +proper +proper +118493 common +118496 common +118503 common +relative +118508 common +118510 demonstrative +118512 common +118514 common +118523 common +118531 personal +common +118534 common +personal +118538 common +118547 personal +118550 common +118557 demonstrative +118559 common +relative +118563 personal +118566 common +demonstrative +118569 common +118571 common +personal +118574 common +personal +118579 common +personal +118582 personal +118585 common +personal +118589 common +personal +118597 common +demonstrative +118600 common +118602 common +118604 common +118606 common +118609 common +118614 common +proper +relative +118618 personal +common +118625 common +demonstrative +118629 common +personal +118632 common +118636 common +118638 common +118642 common +118644 common +common +118648 common +118650 common +118655 common +common +118660 common +118662 common +118670 personal +118672 common +common +118676 common +118680 common +personal +118683 common +indefinite +118689 demonstrative +relative +118694 common +118698 personal +118703 common +118705 common +118708 common +118710 common +118713 indefinite +common +common +118717 common +common +118723 indefinite +118725 common +proper +118728 common +118733 common +118735 interrogative +118738 common +118742 common +118744 common +118750 common +118752 common +118754 relative +118758 common +118760 common +118766 personal +common +personal +118773 common +118775 common +personal +118781 common +common +118788 common +118790 relative +118794 common +common +118797 demonstrative +118799 common +118801 common +118804 demonstrative +common +118813 common +118817 common +118820 personal +118822 common +118826 personal +common +118835 common +personal +relative +118840 common +118842 common +common +118847 common +118849 common +118853 common +118857 relative +relative +118868 personal +118870 common +118878 common +personal +118881 personal +118883 personal +118886 common +118888 common +118890 common +118892 common +common +118896 common +118898 common +common +common +118905 demonstrative +118909 common +118913 common +common +common +118924 common +proper +118927 common +118929 proper +118932 common +118934 relative +118941 common +personal +118944 common +118947 personal +118951 common +proper +118957 common +118963 personal +118965 common +118969 common +118973 common +118976 common +118985 common +118991 personal +common +118994 common +proper +119003 common +119005 common +119007 common +personal +119010 relative +119013 common +119017 common +common +common +119021 common +119023 proper +119027 common +119029 relative +119032 common +119039 common +119042 common +119044 common +119048 common +119051 proper +119053 proper +119057 common +119064 common +119066 common +relative +common +119070 common +119072 common +common +119075 personal +proper +common +119079 common +common +119084 common +common +119098 demonstrative +119101 common +119103 common +119105 common +119109 common +119113 common +119115 common +119119 common +119121 demonstrative +119126 common +119129 personal +119142 common +119145 demonstrative +119149 common +119155 demonstrative +119157 relative +119161 common +119167 demonstrative +119173 personal +119175 common +common +personal +119181 personal +common +common +119185 proper +119187 proper +119195 common +119198 relative +119202 proper +119204 personal +common +119214 common +119216 personal +119219 common +119221 common +119226 proper +119228 proper +119231 proper +common +proper +119237 common +proper +119244 common +119246 common +personal +common +proper +119253 common +119255 common +proper +119261 common +personal +119264 common +proper +119271 common +personal +119277 common +119282 common +119284 common +common +proper +119291 common +common +proper +119298 common +119300 common +119304 common +common +119307 common +119310 proper +common +119313 common +119315 proper +119320 common +common +119323 proper +119327 common +119329 common +119336 common +119339 common +119342 common +119344 common +119352 personal +common +119357 common +119361 common +relative +common +119368 common +119370 common +proper +119376 common +common +proper +119380 common +119387 common +119389 common +119391 interrogative +119397 common +personal +119401 proper +proper +proper +proper +119406 proper +119408 proper +119411 common +relative +119414 common +119416 common +119418 common +119420 common +119422 common +common +119425 common +common +119428 common +common +119432 common +119436 common +common +119441 common +119443 common +119446 personal +119453 common +119456 common +119460 common +119462 common +common +119467 common +119469 common +119474 common +common +119479 common +119482 common +119488 common +119490 common +119492 common +119495 common +119497 common +relative +119503 common +119505 demonstrative +119510 common +119514 common +119516 common +119518 personal +119520 indefinite +119525 personal +119529 personal +119531 demonstrative +119533 personal +common +common +119537 common +119542 common +119544 common +119548 personal +common +119554 common +common +119557 common +proper +relative +119563 personal +common +119566 common +common +119573 common +119575 common +119581 demonstrative +119586 personal +common +119592 common +personal +119597 common +119601 common +119606 common +relative +personal +119610 common +119612 common +personal +119616 common +common +119621 personal +119624 relative +119626 common +119631 common +relative +119635 common +119638 common +personal +119642 common +119644 interrogative +common +relative +119649 common +119654 common +relative +119663 common +119669 common +personal +common +119673 common +119681 common +119683 common +119691 common +119695 personal +119706 common +personal +119710 common +119717 common +119720 common +119723 common +119725 common +119728 personal +119734 common +119738 common +119741 common +119745 common +personal +119758 common +119761 common +relative +119767 common +119770 indefinite +119774 common +119776 common +119778 indefinite +common +common +119786 personal +119791 indefinite +common +119796 proper +relative +119799 common +119803 common +personal +119813 common +119816 common +common +119822 common +119824 personal +119831 common +119833 common +119835 common +119837 common +119839 common +common +119842 common +common +relative +119850 personal +common +119858 common +119861 common +119869 proper +119877 proper +common +119880 common +common +119883 proper +119886 common +common +common +119890 common +119894 common +119896 common +119898 common +119900 common +119904 common +119906 common +proper +119909 common +common +119915 proper +119925 demonstrative +119929 common +119933 personal +119937 common +119939 relative +119941 common +119943 common +119952 personal +119957 common +119961 common +119970 common +119979 common +119983 common +119985 relative +119989 common +119991 common +119993 common +119997 common +personal +common +120002 common +120005 common +120010 demonstrative +120012 indefinite +120014 common +120017 common +120024 personal +120027 common +120030 common +120035 common +120038 common +120040 common +120043 common +120046 common +120051 personal +120055 personal +120060 personal +120064 personal +120066 common +personal +120071 interrogative +120073 personal +common +120078 personal +relative +120081 personal +120083 common +120085 common +relative +120088 common +120090 common +120094 common +proper +proper +120105 common +common +120114 common +120117 common +120119 common +120121 relative +120127 common +120129 relative +120133 common +120136 common +120140 relative +common +120143 common +120145 common +120151 common +demonstrative +120154 common +120158 common +120161 proper +120167 common +120169 common +120172 common +120177 personal +120180 common +120182 common +personal +120190 common +120197 personal +120202 common +common +common +demonstrative +120207 common +common +120211 common +personal +120215 common +120217 common +120221 demonstrative +common +120225 common +120229 personal +120233 personal +120237 common +personal +120240 common +120244 common +demonstrative +120252 personal +demonstrative +120256 personal +120261 common +120271 demonstrative +120276 personal +120279 common +120281 common +120287 common +common +120291 common +120293 common +120297 common +personal +proper +120301 personal +120309 common +personal +120313 personal +120317 personal +120319 proper +proper +relative +120323 common +120326 common +120328 common +120332 personal +common +120336 common +120338 common +120344 personal +120347 common +personal +proper +120352 relative +120357 personal +120362 personal +120368 personal +120372 proper +120374 common +120377 personal +proper +common +120381 common +proper +proper +common +120387 common +120391 common +120393 common +personal +120396 common +120399 common +120405 common +personal +120408 common +120410 common +120413 common +common +120427 indefinite +personal +120430 common +120440 common +120443 personal +120447 common +120454 common +common +120463 common +demonstrative +120467 indefinite +120470 common +common +120477 common +personal +120482 common +120487 common +personal +120494 common +personal +120498 common +common +120504 common +120507 common +120511 common +120514 common +personal +120519 common +120521 common +personal +120530 common +personal +120534 common +relative +120537 common +120543 common +120545 common +relative +120550 personal +120556 common +120560 common +120566 personal +120574 common +120580 common +120583 common +120586 common +120589 common +120592 common +personal +120596 common +120600 common +120607 common +120609 common +120611 relative +120614 common +120616 common +common +120620 personal +common +common +120626 personal +common +indefinite +120630 personal +common +120633 common +personal +120639 common +120650 common +120652 common +common +common +common +120661 common +120663 common +common +120666 common +120670 common +120675 common +personal +120679 common +common +120683 common +120686 personal +120689 indefinite +common +common +120695 common +demonstrative +120698 common +120701 common +120703 common +personal +120706 common +120709 personal +120715 interrogative +120721 common +120725 common +120730 common +common +120733 common +common +demonstrative +120739 common +personal +120743 indefinite +120749 common +personal +120753 common +personal +demonstrative +120757 common +120759 common +120765 common +120767 common +120769 demonstrative +120776 common +personal +120779 personal +120783 common +common +personal +120788 common +120791 common +120793 common +personal +proper +proper +120798 common +120803 common +personal +common +120808 common +120816 common +120823 common +120828 personal +120836 personal +120843 common +personal +120848 personal +120851 common +common +120855 common +personal +120860 common +120865 common +120868 common +120870 common +120872 common +relative +120877 personal +120879 personal +120887 personal +120889 personal +120891 personal +120893 common +120895 personal +120899 common +120903 personal +120906 common +120911 common +120915 personal +120917 personal +120923 common +120928 common +120930 common +120932 relative +120935 common +120960 common +common +120969 common +common +120975 common +120980 common +120982 common +common +common +personal +interrogative +120988 common +120990 common +120993 indefinite +120995 common +121001 common +121003 personal +121005 common +121007 common +121014 common +121017 personal +indefinite +121020 personal +121023 common +121030 personal +121034 common +interrogative +121037 common +121041 common +121045 common +121049 personal +121052 indefinite +personal +common +121056 personal +common +121060 personal +121062 common +personal +121066 common +personal +personal +121072 common +personal +121075 common +personal +121082 common +121087 common +121093 common +121099 common +121102 common +121105 proper +121107 common +personal +121111 common +121114 proper +121116 common +personal +121120 common +121124 common +121127 common +personal +121132 common +121134 common +121139 common +121144 proper +121146 common +121149 personal +121151 common +121154 common +121159 common +121161 common +121165 common +121170 proper +121172 common +121175 common +121179 common +121182 common +121187 common +121189 common +121195 common +121197 common +121200 common +personal +121204 common +121209 common +121216 indefinite +121218 common +121221 demonstrative +121223 common +121229 common +121233 common +121235 common +121238 common +121243 personal +personal +121248 common +personal +121254 common +demonstrative +121259 common +121265 common +121268 common +121275 common +121277 common +121283 interrogative +common +interrogative +common +121290 common +common +121293 common +121295 common +121297 common +121301 common +personal +121307 common +121311 common +121313 common +121318 common +121321 common +121323 common +121327 common +121334 common +121339 common +121343 common +121347 common +121350 personal +121353 common +121355 common +121358 personal +121361 common +121364 common +common +121370 common +121372 common +121374 common +common +personal +121379 demonstrative +121384 common +121388 common +121395 common +personal +121399 common +common +121403 common +common +121409 common +interrogative +121415 personal +121420 common +121422 common +personal +121425 common +common +121430 common +121433 common +121436 common +personal +121444 common +121447 demonstrative +121449 common +121458 common +121460 common +121462 common +121466 common +121470 common +121480 common +121482 common +121487 common +common +121490 common +121494 common +121496 common +121499 common +121501 personal +121506 common +personal +121512 common +personal +121534 personal +121545 common +personal +121553 common +121555 common +common +121558 common +121562 relative +121567 common +121570 common +121577 common +121580 common +121583 common +relative +121587 personal +121590 common +121595 common +121601 common +121605 common +121613 personal +121616 common +121619 personal +121621 common +121625 common +121633 common +personal +121636 common +121640 common +121642 common +121645 common +121648 personal +121651 personal +common +121655 common +121659 common +personal +121662 common +121665 common +121668 common +121672 common +common +121675 common +121678 common +121680 common +121687 personal +interrogative +121703 demonstrative +121705 common +121709 common +121714 relative +121719 interrogative +121721 common +personal +121725 common +121736 personal +121739 common +121745 demonstrative +121747 demonstrative +121753 common +personal +121756 common +demonstrative +121767 common +personal +121778 common +personal +121783 common +personal +121788 common +personal +121793 common +personal +121797 common +121801 common +personal +121804 common +personal +121810 common +personal +121813 common +121817 common +121820 common +121822 common +121826 common +personal +121831 personal +121835 common +121840 common +common +proper +121847 common +121852 common +personal +121855 common +common +121863 personal +121865 common +121869 common +121871 common +121874 common +121878 common +121880 common +121883 personal +121891 personal +121894 common +personal +121898 common +121900 common +121902 common +121906 personal +121912 common +121915 common +121917 common +121919 common +121921 common +121924 common +121926 common +relative +121931 common +common +121938 common +proper +121943 common +common +121949 common +121954 common +personal +121962 common +121965 common +121968 indefinite +common +121972 personal +121983 common +121986 indefinite +121988 personal +121991 indefinite +121994 indefinite +121996 personal +122001 common +122005 personal +122007 common +122010 common +122012 common +122015 common +122017 common +122023 personal +122025 common +122027 common +122031 personal +122034 personal +122036 common +122040 personal +122045 common +122048 proper +122050 common +122052 personal +122054 common +122064 common +common +122068 common +122075 common +common +122080 common +122083 common +personal +common +personal +122088 indefinite +122090 personal +122094 common +122097 indefinite +personal +122105 common +common +personal +122109 common +personal +122112 common +122115 common +common +proper +common +proper +proper +122123 common +proper +proper +proper +proper +122129 proper +122131 common +common +common +122135 common +common +122138 common +122140 common +common +proper +proper +common +122146 common +personal +122151 common +122153 common +122155 common +personal +proper +proper +122163 personal +common +122166 personal +122168 common +122171 common +proper +proper +122177 common +122185 common +122187 personal +122190 common +common +122194 common +122196 common +122200 common +122203 relative +122212 common +122215 common +personal +122218 common +122220 common +122225 common +122229 common +122231 common +122233 common +122235 common +proper +proper +relative +122244 relative +122250 common +122256 common +122258 common +common +common +122262 relative +common +122267 common +122272 personal +common +122277 interrogative +122279 interrogative +common +122284 personal +common +proper +122290 proper +common +122295 demonstrative +common +relative +122301 personal +122303 personal +122305 personal +relative +122309 personal +122313 personal +122315 common +122319 common +122321 relative +122324 common +122328 common +122330 common +personal +122338 personal +common +122341 common +proper +proper +122345 common +common +122353 common +personal +common +122360 personal +122363 personal +122367 common +122374 personal +122378 common +122386 common +122388 common +122391 common +personal +common +122399 common +122401 common +122406 personal +common +122411 common +122413 common +122417 proper +122421 common +common +122428 common +122430 personal +122433 personal +122436 common +122439 personal +122443 common +personal +122448 common +personal +122451 common +122454 common +122456 common +personal +122461 common +122463 common +122465 common +122468 common +personal +122475 common +122480 common +common +122487 common +122489 common +122492 common +personal +122495 common +common +122499 common +122502 common +122506 common +common +122511 common +122513 demonstrative +122516 common +122520 personal +122524 common +122527 common +122529 common +122531 common +122534 common +122537 common +122541 common +122545 personal +122548 common +122554 common +122557 relative +common +122562 common +122566 common +122570 personal +122572 common +122575 common +122578 common +122582 common +122584 common +122586 proper +proper +122591 common +122595 proper +common +122604 personal +122610 common +personal +122616 common +relative +122621 demonstrative +122624 common +common +122627 common +common +122630 common +common +relative +122635 common +122638 relative +122642 personal +common +122646 common +common +122649 common +122651 common +122655 common +122658 common +personal +122664 personal +common +relative +indefinite +122669 common +122672 common +common +122689 common +relative +122694 common +122696 common +personal +122700 common +122705 relative +122707 personal +122709 common +122713 common +122717 common +122719 common +common +122724 common +122727 common +122729 common +122733 common +122736 personal +122739 common +common +122742 common +common +122748 common +122750 common +122756 common +common +122764 common +122766 common +122768 common +122771 common +common +122776 common +122779 common +122782 common +122785 common +122789 common +122791 common +122803 demonstrative +common +122807 common +common +122810 indefinite +common +122815 interrogative +common +122828 demonstrative +common +122831 common +122834 demonstrative +122838 proper +122841 personal +personal +122844 common +122848 common +personal +relative +common +122856 common +122859 common +personal +relative +122873 relative +personal +122876 common +personal +122881 common +personal +122885 common +122888 common +122891 common +122893 relative +122895 common +122900 common +122907 common +122909 common +122911 common +personal +common +122918 common +122922 indefinite +122925 common +122929 common +common +122932 common +122937 common +122939 common +personal +relative +122946 common +common +122949 common +common +122952 common +common +common +122959 common +common +122968 common +relative +122973 common +122977 indefinite +122981 common +122985 common +122987 personal +122991 common +122993 proper +122996 proper +common +personal +123000 relative +common +123008 common +123010 common +123014 common +123017 common +123021 common +123025 common +common +123032 common +personal +123036 common +123049 common +123051 common +123057 demonstrative +123060 common +123065 common +123069 common +123073 common +123077 common +123081 common +123090 common +123093 personal +123095 common +common +123100 common +personal +123103 common +personal +123106 common +common +123112 interrogative +123115 personal +123119 common +123126 common +123130 common +personal +123137 common +123139 proper +123143 common +personal +123148 common +123152 personal +common +123157 personal +common +123161 common +123163 common +common +123169 relative +123174 personal +123178 proper +common +123186 common +123188 common +123194 proper +123197 common +123203 personal +123206 common +123209 common +123212 common +123214 relative +123220 common +common +123223 indefinite +adverbial +123228 common +common +123231 common +proper +123234 common +123236 relative +123238 demonstrative +123241 common +123244 common +relative +123247 personal +123251 common +123253 common +common +common +123257 common +123259 common +123261 common +123263 common +proper +proper +relative +123270 common +123273 common +123275 personal +common +123278 common +123280 common +123282 proper +123284 common +123286 personal +123289 common +123294 common +common +123297 common +common +123302 common +common +123308 common +123310 common +123315 common +123317 common +123319 common +123323 common +common +common +common +common +123330 common +123332 relative +123336 personal +123341 common +common +123344 relative +123346 common +123356 demonstrative +123364 common +common +123369 common +common +123374 common +123381 common +123386 personal +common +123391 common +123393 common +common +123397 personal +123399 common +123403 common +123405 personal +personal +123410 common +123412 common +common +123415 indefinite +123418 common +common +123421 indefinite +123425 common +relative +123429 common +123435 common +123437 proper +proper +relative +123442 common +123445 common +123448 common +123450 common +123457 personal +common +123460 common +personal +123465 personal +123472 proper +common +123479 common +123481 common +personal +123488 common +proper +123494 common +123498 common +common +123501 personal +123505 indefinite +personal +123509 common +123511 common +123513 common +123516 common +123520 proper +123526 common +123529 common +demonstrative +123533 common +123537 common +123540 common +123542 common +123547 personal +interrogative +123550 common +123555 common +common +123575 common +123577 common +123579 common +123582 common +personal +123585 common +123589 personal +123592 common +123594 common +123597 proper +common +123604 common +common +123609 personal +common +123612 common +123618 common +123627 common +123630 common +123632 common +123636 common +123641 common +common +123649 personal +123651 common +123655 common +123661 common +123667 common +123669 common +123671 personal +123674 common +123677 common +personal +123681 personal +123683 personal +123686 personal +123690 common +personal +123694 common +123698 interrogative +123700 relative +123704 common +123709 common +123713 common +personal +common +123719 common +123721 common +123724 personal +123728 personal +common +123731 proper +123734 personal +123739 personal +123741 common +123744 common +123748 personal +123750 proper +123753 common +123762 demonstrative +123765 common +123767 common +123769 relative +123772 personal +123775 proper +123778 proper +123780 common +personal +123783 personal +123785 common +common +common +personal +123792 proper +proper +proper +common +123797 common +proper +proper +123801 personal +123804 common +123806 common +123808 common +personal +123811 common +proper +proper +common +123816 common +personal +123820 common +123822 common +123824 proper +123826 common +personal +123829 personal +123832 common +personal +123838 common +123840 common +123844 common +123847 personal +123849 common +123851 common +123853 relative +123858 common +personal +123863 demonstrative +123865 common +123867 common +123872 common +123874 common +common +123879 demonstrative +common +123886 common +personal +123889 common +123893 common +123895 common +123899 common +123901 common +123905 common +123907 common +123911 common +123913 common +123917 common +123919 common +123923 common +123925 common +123927 demonstrative +personal +123940 common +personal +proper +proper +common +123946 relative +123949 demonstrative +123954 common +123956 common +123959 personal +common +123962 common +123966 personal +123968 common +123970 common +123973 demonstrative +123978 indefinite +123983 personal +123985 common +123989 common +123991 common +personal +123994 common +proper +proper +124000 personal +124003 demonstrative +124011 common +124016 relative +124019 demonstrative +124021 common +124023 personal +124025 common +124031 common +124033 common +personal +124038 common +personal +proper +proper +124043 personal +124049 personal +124053 common +124055 demonstrative +common +124061 common +124064 personal +124067 common +personal +proper +proper +common +124073 common +124076 common +124078 demonstrative +common +124083 common +common +common +124087 common +common +demonstrative +124091 personal +124095 common +124097 common +personal +124101 personal +demonstrative +124105 relative +personal +124109 demonstrative +124111 common +personal +124115 common +124118 personal +124123 common +124129 common +124132 relative +124135 common +124139 common +124141 relative +common +124149 common +personal +demonstrative +124156 common +common +124159 common +124164 common +common +124167 common +indefinite +124171 common +124176 common +common +124181 common +124184 common +124188 personal +124190 common +relative +124193 common +common +124198 personal +common +124202 personal +124204 common +124208 personal +124210 common +124212 relative +124214 common +124216 common +124220 common +124222 common +personal +124225 relative +124227 common +124233 common +personal +124240 common +common +124246 common +common +124251 common +124255 common +124260 proper +common +common +124264 common +common +124269 common +proper +124272 proper +124274 common +124276 common +124282 proper +124289 common +common +124293 common +124295 common +124300 personal +common +124303 common +common +124307 common +124310 common +124313 common +124318 common +common +124326 common +124328 common +common +124332 common +124334 common +124336 common +124341 common +common +124344 common +124350 personal +124352 common +124354 common +124356 demonstrative +124359 common +124363 common +124365 common +124367 relative +124372 common +personal +124377 common +common +common +124383 common +common +common +124387 common +124391 common +personal +124394 personal +124396 common +124401 common +124403 common +124405 common +124407 common +124409 common +common +124413 common +124417 common +124419 proper +124421 proper +relative +common +common +124427 common +124429 common +124431 common +124434 common +common +124440 common +common +demonstrative +124444 common +124447 common +124449 common +124451 relative +124453 common +124455 common +124459 common +124463 common +common +common +124471 common +124473 common +personal +124476 personal +124478 common +124480 common +124482 relative +indefinite +124485 demonstrative +124491 common +124493 common +124495 common +124497 common +124499 common +proper +proper +124503 demonstrative +124508 personal +124517 personal +124521 common +124523 common +124530 personal +124532 common +124534 personal +124538 common +common +124544 common +124546 common +124549 common +common +124553 demonstrative +124555 common +personal +124559 relative +124562 common +personal +124566 common +124573 common +common +124578 common +personal +common +124582 common +124584 common +demonstrative +124593 common +124595 common +common +124600 common +personal +124608 common +124610 common +personal +124614 relative +124616 common +124622 common +common +124626 personal +demonstrative +124630 common +124634 common +124636 common +124639 common +124643 common +common +124646 relative +124649 common +common +124656 common +124659 common +124662 common +124665 common +124668 common +common +124671 common +124674 common +124678 demonstrative +124681 personal +124684 common +124686 common +124689 common +124692 common +124694 common +124698 common +124700 common +124702 indefinite +common +124708 personal +124711 indefinite +124716 common +124720 common +common +124723 common +124725 relative +124727 common +124731 common +124735 common +124739 personal +common +124743 demonstrative +124747 interrogative +124749 personal +124752 common +124754 common +124759 common +124762 common +common +124765 relative +common +124770 common +124775 common +124777 common +124781 common +personal +124785 relative +common +124790 demonstrative +124796 personal +124799 common +124803 common +personal +common +common +124812 personal +common +proper +124818 personal +common +124821 personal +124826 common +124829 personal +124831 demonstrative +124833 relative +124836 indefinite +relative +124847 common +124851 personal +common +124855 personal +124863 common +124868 common +124872 common +124874 common +124876 common +personal +124879 common +proper +proper +personal +124884 common +124889 common +common +relative +124894 common +relative +124897 relative +124900 common +personal +relative +124906 common +personal +124911 common +124913 common +124916 common +124924 personal +124926 common +124929 relative +124933 common +124936 personal +relative +124943 personal +124946 personal +common +124950 personal +124954 common +124959 common +124963 common +personal +proper +proper +124968 demonstrative +124970 personal +124973 common +personal +124979 demonstrative +124981 common +relative +124985 personal +124988 personal +124991 common +common +124996 personal +124999 common +125004 common +125007 personal +125011 common +125018 common +125023 common +125026 personal +125030 common +common +125034 personal +125037 common +proper +125040 common +personal +125043 personal +125046 common +125050 common +125053 personal +125057 common +125061 personal +125065 common +personal +125073 personal +125075 common +125078 personal +125081 common +125087 common +125089 personal +125092 common +personal +125097 personal +common +personal +demonstrative +125102 personal +125108 indefinite +125113 common +common +proper +proper +125119 personal +common +125124 common +personal +125137 common +125140 demonstrative +125144 personal +125147 common +personal +125154 personal +125157 common +personal +125161 common +125165 demonstrative +125167 common +125172 relative +125174 personal +125176 common +125179 demonstrative +125181 common +125183 common +125186 demonstrative +125190 personal +125195 personal +125198 demonstrative +125202 personal +125207 personal +125209 common +125212 common +125214 relative +125217 common +125219 common +125224 common +relative +125228 common +125231 personal +relative +125236 personal +125239 personal +125242 common +125246 common +125255 common +125259 common +personal +125264 common +125271 common +personal +125275 common +125278 common +125280 personal +125287 common +personal +125291 common +125296 common +125305 common +125308 common +personal +common +125312 personal +125315 personal +125317 common +125320 common +personal +common +125324 personal +125329 common +common +125332 personal +125337 common +125339 personal +125343 common +common +125346 personal +125351 common +common +125354 personal +125360 common +125362 common +125364 personal +125373 common +125378 common +125380 indefinite +125383 common +125387 common +125389 common +125391 personal +125398 common +125400 common +125402 common +125405 common +125407 common +125410 common +125412 common +125416 common +125420 common +125425 common +125428 common +personal +125434 common +125436 common +125440 common +common +125443 common +125449 common +125453 common +125460 common +125463 personal +125469 personal +125473 personal +125478 personal +125487 personal +125489 personal +common +125499 personal +125505 common +125509 personal +125513 common +125516 common +125519 interrogative +125522 common +125528 proper +125532 proper +demonstrative +125536 common +125540 common +125543 common +125548 common +125551 common +125556 common +125559 common +125561 personal +relative +125565 common +125567 personal +125571 personal +125573 relative +125575 common +125578 personal +125581 common +125585 common +125588 demonstrative +125591 common +relative +personal +125595 personal +125597 common +125600 demonstrative +125602 personal +125606 personal +125608 personal +125610 common +relative +125614 personal +125617 personal +125620 common +125623 indefinite +125625 personal +125629 personal +common +125632 personal +125641 common +125645 personal +125648 personal +125650 common +125654 personal +125659 common +125664 personal +125667 common +personal +125681 common +125683 personal +125686 interrogative +common +125689 personal +125691 common +125693 common +common +125699 demonstrative +125701 common +125704 personal +125708 personal +125711 common +common +125717 interrogative +125724 personal +125728 personal +125736 common +demonstrative +125739 personal +125741 personal +125743 demonstrative +125750 common +125753 common +125757 common +125760 common +125764 demonstrative +125768 common +125771 common +125773 personal +125779 personal +125788 personal +125791 personal +common +125795 personal +125799 common +125803 demonstrative +125809 common +125816 common +125821 demonstrative +125824 common +125826 common +125830 common +125838 common +common +125843 common +personal +125846 personal +125855 common +125858 demonstrative +125862 common +125864 common +125867 common +125874 common +125879 common +125885 common +personal +125888 demonstrative +125891 common +relative +125895 common +125898 personal +125901 proper +125909 common +personal +125913 interrogative +125915 personal +125918 common +personal +125925 common +personal +125928 common +125933 personal +125935 common +personal +125942 common +125945 common +125949 common +125956 common +125961 common +personal +common +125969 common +125972 common +125975 personal +125978 demonstrative +125981 common +125983 demonstrative +125985 personal +125987 common +personal +125991 personal +125995 common +125997 common +126001 relative +126004 common +126006 common +126010 common +personal +common +126017 common +personal +126020 personal +126023 common +126025 common +126028 personal +common +126032 common +126035 common +126038 common +126040 common +126042 demonstrative +126047 common +126051 personal +126054 common +personal +126059 personal +126061 common +126066 common +126068 common +personal +126076 common +126079 common +126083 common +126086 relative +126090 personal +126093 common +personal +126100 personal +126103 demonstrative +126106 common +personal +126111 common +126113 common +personal +proper +proper +126119 personal +126122 common +personal +126128 common +personal +126131 personal +126134 personal +126136 personal +126139 demonstrative +126144 personal +126147 common +relative +personal +126154 common +126159 common +126163 common +126167 common +126171 common +126173 demonstrative +126176 common +126178 common +126180 common +relative +126183 proper +proper +126186 common +126190 common +126194 common +relative +126199 proper +126202 common +126206 demonstrative +126210 common +relative +126219 common +126222 common +personal +126226 common +126230 personal +126236 personal +126241 common +personal +126245 common +126248 demonstrative +126251 common +126255 common +personal +126258 personal +126261 common +126266 common +126268 personal +relative +126274 common +126277 personal +126279 demonstrative +126282 common +126284 common +126287 common +126289 common +126292 personal +126295 common +126298 common +126306 common +126311 common +126318 common +126321 common +common +126325 demonstrative +126328 common +126330 common +126332 personal +126335 common +personal +126341 common +126344 common +126348 personal +126350 demonstrative +126353 common +126356 personal +126359 common +126362 personal +126364 personal +126368 common +personal +common +126373 common +personal +126379 common +126381 personal +126383 personal +126385 personal +126387 common +126393 personal +126395 common +126397 personal +126401 common +personal +126404 personal +126408 demonstrative +126412 personal +126415 personal +126417 personal +126421 common +personal +126424 personal +126426 personal +126432 common +126435 common +common +126438 common +126440 relative +126443 proper +126446 common +126448 common +126450 common +126452 personal +126455 personal +126458 common +126460 personal +126465 common +relative +126469 common +126471 personal +126473 common +common +126481 common +126484 common +126488 common +126490 personal +126493 demonstrative +126496 common +126498 personal +126500 common +126504 common +126506 common +126509 demonstrative +126512 personal +126516 common +demonstrative +common +126523 common +126527 common +126531 common +126534 common +common +126544 common +personal +126548 personal +126551 personal +126553 indefinite +126558 common +126561 common +personal +126564 common +126571 common +personal +relative +126578 common +relative +126584 demonstrative +126586 common +126589 personal +126594 common +126598 common +personal +126604 proper +126607 proper +126610 common +126622 personal +126624 demonstrative +126629 common +126631 common +126634 common +126638 common +personal +126642 demonstrative +126645 common +126647 common +126650 common +personal +126655 common +personal +126666 common +126669 common +126671 demonstrative +126674 common +126678 common +126680 common +personal +interrogative +126687 common +126693 proper +126696 common +126698 common +demonstrative +126704 common +126706 common +proper +proper +126712 common +126717 common +126721 common +126724 common +126730 common +126733 common +126740 common +126743 common +126746 common +126756 common +126758 common +126761 common +126763 common +126767 demonstrative +126770 common +126772 common +126777 common +personal +126783 common +126785 common +126788 common +126790 personal +126795 common +common +126798 personal +126804 common +relative +126808 common +126811 common +personal +126814 demonstrative +126817 common +126819 common +126823 common +personal +126826 demonstrative +126828 common +126831 common +personal +126837 common +126840 common +126845 common +126847 common +126849 common +126852 demonstrative +126854 personal +126859 common +126861 common +126863 common +126867 common +126871 demonstrative +126874 common +relative +126878 personal +126881 indefinite +126885 common +personal +126888 personal +126894 personal +126896 relative +126902 common +relative +126906 personal +126908 indefinite +126911 common +personal +126914 common +126917 common +126921 common +personal +126927 common +126929 common +126931 common +126934 demonstrative +126939 common +common +126944 common +126947 common +126955 common +126963 common +126965 personal +126971 personal +126976 common +126980 common +126990 common +126992 common +126996 personal +common +127009 common +personal +proper +proper +demonstrative +127017 common +127019 common +127021 common +127023 personal +127026 common +127030 common +127033 common +personal +relative +127038 common +personal +127042 personal +127050 common +127053 common +127057 personal +127060 personal +127064 common +127067 personal +common +common +common +127072 common +common +127076 proper +proper +127079 common +127081 common +127083 common +127085 common +127092 common +personal +127096 common +127098 common +127102 common +127104 common +127107 personal +127109 personal +127112 common +127115 relative +127118 common +127121 personal +127123 demonstrative +127126 common +127131 common +personal +demonstrative +127135 common +127140 common +127143 personal +127149 common +127155 proper +proper +127159 common +demonstrative +127166 common +127168 personal +127172 relative +127175 common +127186 common +127188 proper +common +127196 common +demonstrative +127200 common +127203 common +127206 indefinite +127209 personal +127211 demonstrative +127213 common +127218 personal +127220 common +127223 personal +127229 personal +127233 common +personal +127239 personal +127244 common +127251 personal +127253 common +127255 common +127259 common +personal +127264 personal +127266 common +127268 common +personal +127274 proper +127277 relative +personal +127281 common +127286 personal +127292 personal +127294 common +127299 common +127302 personal +127304 common +127306 personal +127308 common +127311 common +demonstrative +127319 common +127322 common +127328 relative +127332 common +127334 demonstrative +127336 relative +127338 personal +127340 common +127342 common +relative +127349 common +127353 common +127361 personal +127365 demonstrative +127370 common +127372 indefinite +127374 common +127378 personal +proper +127382 personal +127384 demonstrative +127388 personal +127390 common +relative +127393 common +127396 personal +127401 demonstrative +127403 personal +127406 common +127414 common +127428 common +127435 common +proper +127442 personal +127444 common +127447 personal +127453 common +personal +127460 personal +127467 common +personal +127473 personal +127476 common +127478 common +127480 common +personal +127483 personal +127490 common +proper +proper +proper +common +127496 common +proper +127500 common +common +127504 proper +proper +127508 personal +common +127511 common +127513 common +127517 common +127520 personal +127524 personal +common +common +127529 personal +127537 common +127540 indefinite +common +127546 demonstrative +127548 common +127552 common +personal +common +127557 common +127561 common +127563 common +personal +proper +proper +127574 personal +127576 common +common +127579 common +proper +127589 common +127594 personal +common +127600 common +127602 common +127604 common +common +127608 common +127611 proper +127613 proper +127617 personal +common +127621 common +demonstrative +127627 common +127630 common +common +127633 common +127638 demonstrative +127641 common +127644 common +127647 common +127657 proper +common +127661 proper +127663 common +127665 common +common +127671 personal +common +127675 demonstrative +relative +127681 relative +127686 common +127689 demonstrative +127692 personal +127695 common +127697 proper +127701 common +127703 proper +common +127708 common +127710 proper +127712 demonstrative +127717 common +personal +common +127722 personal +127724 common +127727 common +127729 common +127735 common +127737 common +127740 personal +common +common +127744 relative +127746 common +127748 common +127750 common +127755 demonstrative +127758 proper +proper +127763 common +127766 common +personal +127769 common +127780 common +common +personal +relative +127790 relative +127793 personal +127796 demonstrative +127798 common +127802 common +personal +127807 common +personal +127812 common +common +127817 personal +127820 common +127825 common +127827 common +personal +proper +proper +127833 personal +127837 common +127839 common +127843 personal +common +127846 common +demonstrative +127852 common +127857 personal +127859 personal +127862 personal +common +127865 common +127868 personal +127870 common +common +127875 common +127877 common +personal +proper +proper +127882 common +127886 relative +127891 common +127894 relative +127897 common +127903 common +127905 common +127910 personal +127916 common +personal +127920 common +127922 common +common +personal +127926 proper +proper +127929 common +personal +common +common +common +127935 common +127939 common +127946 common +127948 common +proper +proper +relative +127953 personal +127955 common +127958 common +personal +relative +127963 common +127970 common +personal +127973 common +personal +proper +relative +127979 common +127981 common +127984 common +proper +proper +relative +127996 common +127998 common +128003 personal +128007 common +128009 proper +128012 common +128016 proper +common +128019 common +personal +128034 common +relative +128038 common +personal +128042 proper +proper +128045 common +128054 common +128056 common +128058 common +128061 personal +128064 personal +128067 common +personal +128071 common +personal +128075 personal +common +common +128079 common +128081 common +personal +personal +128085 common +128088 common +128091 common +128093 common +128099 common +128102 personal +128104 common +128106 relative +personal +128112 personal +128115 common +128117 common +128120 personal +128123 proper +128126 proper +128128 common +128130 common +128140 common +personal +proper +128144 common +personal +128147 common +128150 common +128152 common +128154 common +128156 proper +128160 common +128163 proper +128166 common +128168 common +128171 common +proper +128175 common +128179 common +128183 personal +common +128187 common +128189 relative +128193 common +128198 common +128200 proper +128203 common +128206 proper +128209 proper +128212 proper +128215 proper +128218 proper +128223 common +relative +128227 personal +128232 common +128238 common +128240 common +common +128248 common +common +128253 common +personal +128257 common +128260 common +128263 common +128266 common +personal +128269 common +common +128273 common +personal +128276 common +128279 common +128283 common +personal +128286 common +common +128294 common +personal +common +128301 common +personal +common +128309 common +personal +128313 common +128317 common +personal +128322 personal +128326 common +personal +128334 personal +128336 personal +128340 personal +128359 common +128361 common +128365 common +128367 common +128370 common +128373 relative +128376 relative +128379 relative +128383 demonstrative +128385 common +128388 common +relative +128394 personal +128398 common +128403 common +common +128407 common +128411 common +128415 common +128418 common +128421 proper +common +128424 demonstrative +128430 common +128434 personal +128441 common +128446 common +personal +128450 common +128453 common +personal +128465 personal +common +128472 personal +128475 common +128481 common +personal +128489 personal +128492 common +personal +128506 common +128512 personal +128516 common +personal +128520 common +personal +128526 demonstrative +128531 common +128533 proper +relative +personal +128539 common +128541 interrogative +128543 common +128546 common +128550 personal +128554 common +128556 common +relative +128561 common +128563 common +128566 common +128569 proper +common +128572 demonstrative +128579 relative +128585 personal +128587 common +128590 common +128596 common +128602 personal +128607 common +128609 proper +128612 relative +128621 personal +128623 common +128628 common +common +128634 common +128637 personal +128639 common +128641 common +128644 common +128646 interrogative +128648 common +128651 common +128659 common +128664 common +128667 proper +common +128670 demonstrative +128675 common +128685 common +128687 proper +128691 common +personal +128697 common +personal +128702 common +proper +128705 common +personal +128709 personal +relative +128713 personal +128716 proper +128721 personal +128728 common +proper +relative +128733 proper +128735 common +128738 common +proper +128747 personal +128750 common +128752 proper +128760 personal +128765 personal +128768 common +128770 common +personal +128774 common +128776 interrogative +128778 common +128781 common +128785 personal +128787 common +128792 personal +common +128798 common +128800 common +128802 relative +128811 common +128814 proper +common +128817 demonstrative +128820 common +128822 common +128826 common +personal +128829 common +common +128833 common +personal +128836 common +128838 personal +128840 common +128843 common +128846 common +128849 common +128852 common +personal +128856 common +personal +128866 personal +128870 common +proper +128874 personal +common +128882 common +128889 personal +common +128899 common +personal +128903 personal +128905 common +128910 personal +128912 common +128919 common +personal +128923 common +personal +128927 common +128932 common +128934 personal +128938 common +128940 common +128943 personal +128947 common +personal +128951 personal +128956 proper +relative +128961 common +demonstrative +relative +128969 proper +128975 personal +128977 common +128979 relative +128984 relative +128993 common +128995 common +personal +128998 personal +common +129002 common +129005 personal +129007 common +129011 common +129016 personal +129020 common +personal +129024 personal +129026 common +129031 common +129033 interrogative +129035 common +129038 common +129041 common +129044 proper +common +129047 demonstrative +129053 common +129055 common +129059 common +129061 personal +129063 common +129065 common +129078 relative +129084 personal +common +129089 common +personal +129107 common +129112 interrogative +common +129116 personal +129120 common +129122 proper +relative +129127 common +personal +129132 personal +129143 common +129150 common +personal +129154 common +129156 common +129160 common +personal +129164 common +personal +129169 common +personal +129173 common +129175 interrogative +129177 common +129180 common +129183 common +129186 proper +common +129189 demonstrative +129198 common +proper +129211 personal +129213 common +129217 personal +common +129220 relative +personal +129227 common +129231 personal +129233 common +129238 common +personal +129244 common +129246 proper +129249 personal +129259 personal +129266 common +personal +129271 personal +129273 personal +129277 common +129279 common +personal +personal +personal +129286 common +129288 common +129294 common +129301 common +129305 relative +129311 common +personal +129316 personal +common +129320 common +129322 common +personal +129333 personal +129335 common +129337 common +personal +129341 common +129343 common +129345 common +personal +129349 proper +129354 common +129357 common +personal +129361 common +personal +129367 common +129369 interrogative +129371 common +129374 common +129377 common +129380 proper +common +129383 demonstrative +129388 common +129394 common +129396 common +129398 common +129400 personal +129402 common +129424 personal +129428 common +personal +129439 common +129445 personal +129458 personal +129461 personal +common +129465 common +129469 common +129477 common +129479 common +personal +129482 common +129485 common +personal +129489 personal +129491 relative +129504 common +129508 indefinite +129511 common +personal +129516 common +129519 personal +129523 personal +129525 personal +129527 personal +129531 personal +129534 personal +129537 common +personal +129540 personal +129546 common +personal +129550 common +personal +129554 common +129556 interrogative +129558 common +129561 common +129563 demonstrative +129567 common +129571 common +129574 common +129577 relative +129580 common +129583 personal +129589 personal +relative +129593 demonstrative +129598 common +129601 common +129605 common +129609 common +129615 common +common +common +129619 common +129621 common +129624 common +129626 common +129631 common +common +129638 common +129645 common +129650 common +personal +common +129657 common +129659 common +129661 common +129663 common +129666 common +common +129671 common +relative +129676 common +129678 common +129682 common +129684 common +129687 common +129692 common +129696 common +129698 common +129700 common +129706 common +129710 common +129714 common +129716 common +129720 common +129723 common +129725 common +129729 common +129731 common +129736 common +129740 personal +129743 common +129749 common +129751 common +129754 common +129756 common +129761 common +129763 common +129765 common +129778 common +common +129781 common +129783 common +129788 common +129793 common +129795 common +129806 common +129813 common +129815 common +129819 common +personal +129823 common +129826 common +129829 common +personal +129835 common +129838 common +129841 common +129843 personal +129850 common +personal +129864 common +common +129871 common +129875 common +129879 common +129881 interrogative +129885 common +129889 common +personal +129896 common +129900 common +129904 common +129907 common +129910 personal +129920 common +129923 personal +129930 personal +129936 common +129940 common +proper +129943 common +proper +129947 common +129951 common +personal +129958 common +129962 common +129968 common +129973 common +129976 common +129978 relative +129982 common +129984 common +129989 common +130001 common +130006 common +130009 common +130018 common +130021 common +130023 common +130026 common +relative +130030 common +130035 common +130042 common +130046 common +personal +130053 common +130056 common +personal +130060 common +130062 common +130064 common +130066 common +130069 personal +130071 common +personal +common +130075 common +130080 common +130085 common +common +130090 common +130093 common +130100 common +personal +common +common +130105 common +common +130108 common +130113 common +130118 common +130120 common +130122 common +130124 common +130126 common +130128 common +130130 common +130133 common +relative +130137 common +130141 common +130145 common +130149 common +130154 personal +130162 common +130165 common +130167 common +130170 common +130173 common +130176 common +130179 common +130181 common +130185 common +130199 common +130204 common +130211 common +130214 common +common +130221 common +130227 personal +130229 common +130232 personal +common +130244 common +130250 common +130256 common +130262 personal +130264 personal +130267 common +130270 common +130273 personal +130277 personal +common +130284 common +130290 common +130297 common +130303 personal +130305 common +130308 common +personal +130313 common +130318 common +130320 common +common +common +130325 common +common +common +130330 common +130333 common +130340 common +130344 common +130347 common +130354 common +130360 personal +common +personal +130364 common +130367 common +130370 personal +130373 personal +common +130379 common +130382 common +130385 common +130388 common +130392 common +130394 common +130400 common +130404 common +130406 common +130411 common +130413 common +130417 common +relative +130422 common +130426 common +130438 common +personal +130445 common +130448 personal +130450 common +130454 personal +130458 common +130464 common +personal +130468 common +personal +130475 personal +130481 common +130485 common +130490 common +130494 common +130498 common +130502 common +130505 common +130507 common +130511 common +130513 common +130516 common +personal +130519 common +130524 common +130527 common +130531 common +130533 common +130536 common +personal +130541 common +130543 common +130546 common +130549 common +130558 common +130562 personal +130565 common +130569 common +130571 common +130575 common +130578 common +130581 personal +130584 personal +130586 common +130591 common +130595 common +130597 common +130601 common +130605 common +personal +130608 interrogative +130612 demonstrative +130615 common +130620 common +130622 common +130626 common +130628 common +130632 common +130635 common +130639 common +130643 common +130647 common +130650 common +common +130653 common +common +130658 common +130662 common +relative +personal +130668 common +130671 common +130676 common +130679 common +130682 common +130686 common +130688 common +personal +130692 common +personal +130697 common +130703 common +130707 common +common +proper +130711 common +proper +130714 common +130717 common +proper +130720 common +130722 common +proper +130725 common +130727 common +proper +130730 common +130732 common +proper +130735 common +130737 common +proper +130740 common +130742 common +proper +130745 common +130747 common +proper +130750 common +130752 common +proper +130755 common +130757 common +proper +130760 common +130762 common +proper +130765 common +130767 common +proper +130770 common +130773 demonstrative +130777 common +130779 relative +personal +130786 common +130788 common +130790 common +130792 common +130796 common +130800 common +130802 common +130805 common +130808 common +personal +130812 common +130816 common +130818 common +personal +130824 common +130827 common +130831 common +130835 common +130842 common +130847 common +130850 common +personal +130855 common +130859 common +130862 common +130865 common +130868 common +130871 common +130874 common +130877 common +130879 common +personal +130883 common +130885 common +130894 personal +demonstrative +130899 common +130902 interrogative +130909 personal +common +personal +personal +130916 personal +demonstrative +130923 common +130929 common +personal +130933 personal +130936 common +130938 common +130940 demonstrative +130944 common +130946 common +130949 personal +common +130952 common +130955 common +personal +130962 common +130965 personal +130976 personal +130978 common +130981 common +130984 common +130989 common +130991 personal +130994 personal +130996 common +common +common +131002 common +131004 common +131007 common +personal +131013 common +131017 common +131020 common +131022 common +131027 common +relative +131031 common +131035 personal +131037 common +131040 common +131046 common +131048 common +131052 personal +common +131058 common +131064 common +131070 common +131074 common +131076 common +131078 common +131082 common +131084 common +131087 common +131091 common +131093 common +131096 personal +131099 common +131101 common +131106 common +131109 common +131111 common +131113 common +131115 common +131119 common +131124 common +131126 personal +131135 common +131137 common +131140 common +131145 common +131150 common +131156 common +131160 common +131166 common +131170 common +131172 common +131177 common +131183 common +common +131190 common +131194 common +131197 common +131202 common +131207 common +131213 common +common +131218 common +131225 common +131229 common +131231 common +131234 common +131236 common +131239 common +131245 common +131247 common +131251 common +131255 common +131261 common +131268 common +131273 common +131278 common +131283 personal +131286 common +131291 personal +131294 common +131301 common +131304 common +131306 common +131315 common +131319 common +131321 common +131324 common +131331 common +131335 common +131338 common +131342 common +131345 personal +131347 common +131349 common +131351 common +131355 common +131357 common +131360 common +131363 common +131365 common +common +131371 common +131374 common +131377 common +131379 common +131383 common +131385 common +131388 common +131391 personal +common +131395 common +131397 common +131399 common +131402 personal +131407 common +131409 common +131415 common +131419 common +relative +131424 common +131426 common +131429 common +131432 personal +131436 personal +131440 common +131444 common +personal +131447 common +common +131451 common +131455 common +demonstrative +131459 common +131461 common +131466 personal +131473 common +131475 personal +131478 common +131480 common +131482 common +131485 common +131489 common +personal +131492 common +131494 common +131497 common +personal +131500 common +common +131504 common +131506 common +common +131510 common +personal +131513 common +131517 common +131519 common +131523 common +131525 common +personal +131528 common +common +common +131534 common +131537 common +131539 common +131541 common +131545 common +personal +131548 common +personal +131552 common +common +131557 personal +common +131560 common +131562 common +common +personal +131566 proper +131571 common +131573 proper +131585 demonstrative +131589 common +131593 common +131598 common +131600 common +131606 common +131610 common +131614 common +131618 common +131623 common +131626 proper +131631 common +131636 common +131638 common +131640 common +131642 common +131648 common +131651 common +131653 common +131656 common +common +131660 common +personal +131666 common +131669 common +131674 personal +131676 common +131684 common +131686 common +131688 common +common +131693 common +personal +131696 common +131698 common +131700 common +131705 common +131709 common +demonstrative +131713 common +131716 common +131719 common +131724 common +personal +131728 common +131730 common +131734 common +personal +131739 common +personal +131743 common +personal +131746 common +131748 common +131751 personal +131757 common +relative +131763 common +demonstrative +131769 common +131771 common +personal +131777 common +131780 common +131795 relative +131808 common +personal +131813 common +personal +131818 common +personal +131823 common +personal +131828 common +131833 common +131835 common +131838 common +131841 common +personal +131845 common +personal +131849 common +131852 common +personal +131855 common +common +131861 common +personal +common +131868 common +personal +131874 common +131880 common +131883 common +131886 common +131894 common +131896 personal +common +131903 common +131908 common +131911 common +131914 relative +131918 common +131921 personal +131925 common +relative +131930 common +131934 common +131938 common +personal +131944 common +131952 common +131954 common +relative +131958 common +131962 personal +131965 common +131969 personal +131972 common +131976 personal +131978 common +131984 common +131986 common +131989 common +131996 common +131998 common +132002 personal +common +132005 common +132008 common +relative +132013 common +132017 personal +132023 common +132028 common +132030 common +132035 common +132039 common +132044 common +132046 personal +132048 personal +132050 common +132053 personal +132057 personal +132060 personal +132062 common +132066 common +personal +132071 common +132075 common +132078 common +132080 common +132083 personal +132088 common +personal +132091 common +132096 personal +132099 common +personal +132103 personal +132105 personal +132109 common +132111 common +132113 common +132115 common +132119 personal +common +132122 common +132128 common +132130 common +132133 common +132138 personal +132141 common +132145 common +132150 personal +132155 common +132158 common +132162 common +132169 common +personal +132173 common +132178 common +demonstrative +132183 common +132187 common +132191 common +132193 common +132197 indefinite +132199 personal +132201 common +132205 common +personal +132211 personal +132214 indefinite +132216 personal +132220 personal +132222 demonstrative +132225 common +132228 common +132231 common +132234 common +132236 common +personal +132239 common +132243 common +132245 personal +132247 common +132251 common +132254 common +132262 common +personal +132265 common +132270 common +132273 personal +common +132277 personal +132280 personal +132283 common +personal +132289 common +132292 relative +132295 proper +132297 proper +132301 common +personal +132308 common +132310 common +132312 common +132314 common +132316 common +personal +common +132326 common +personal +132330 common +132336 common +132339 personal +132343 common +132345 personal +132347 demonstrative +132350 common +132356 common +132363 common +common +common +132368 common +132371 personal +132376 common +personal +132379 common +132385 personal +132388 common +132392 common +132394 personal +132401 common +132404 common +132407 personal +132410 personal +132413 demonstrative +132415 common +132417 common +132423 common +132429 common +common +common +common +132441 common +132443 common +132445 common +132461 common +132465 common +132469 common +132473 common +132475 common +132477 common +personal +132481 proper +personal +132487 common +132489 common +132498 common +132502 common +personal +132507 common +personal +132512 common +132515 personal +common +132518 common +132520 common +132529 common +personal +132537 common +132542 common +personal +132546 common +132553 common +132555 common +personal +132558 common +132566 common +personal +132578 common +132582 common +132584 common +132588 common +132592 common +132594 common +personal +132598 common +personal +132602 common +132604 common +132606 common +132608 common +132610 common +132613 common +132618 common +common +132622 common +132625 common +132628 common +personal +132633 common +personal +common +common +132640 common +132651 common +132654 common +132657 common +132661 common +132664 common +132669 common +personal +132672 common +132675 common +personal +132681 common +132683 common +132686 personal +132689 common +132692 common +132696 common +132704 common +personal +132709 common +132711 relative +132716 common +132718 common +132723 common +personal +132727 common +132731 common +personal +132735 common +132743 common +132747 common +132751 personal +common +132758 common +132761 common +132763 proper +132766 common +personal +132772 common +132776 common +132779 common +personal +132785 common +personal +132791 common +132795 common +132799 common +132807 proper +132811 common +132816 common +132819 common +personal +132822 personal +132826 common +132830 common +132835 common +132838 common +132841 common +132843 common +personal +132847 common +132849 proper +personal +132854 common +132856 common +personal +132860 personal +132863 common +personal +common +132867 common +132869 personal +132871 personal +132874 common +132876 common +132880 common +132882 common +personal +132888 common +personal +132891 common +132893 demonstrative +132895 common +132899 personal +132903 common +132906 common +132912 personal +132914 common +132919 common +132925 common +132930 common +132933 common +relative +132941 common +132944 common +132946 common +132956 common +personal +132961 common +132963 common +132966 common +132968 common +132970 common +132974 common +132977 common +personal +132981 common +common +132984 common +132986 personal +132992 common +132994 common +132998 common +133000 common +personal +133005 common +relative +133009 common +133012 common +personal +133017 common +133020 common +133024 common +133029 common +personal +133034 common +133036 common +133040 common +proper +133046 common +133048 common +133053 common +common +133057 common +133060 common +133065 common +personal +133068 common +133072 common +personal +common +common +133078 common +relative +133083 common +133086 common +personal +133089 common +133092 common +personal +133095 common +common +133099 personal +133101 common +133103 common +personal +133107 common +personal +133110 common +133116 common +personal +133121 common +133124 common +133126 common +personal +133133 common +133136 common +133140 common +133144 common +133146 common +133150 common +133152 interrogative +133155 common +133157 interrogative +133161 personal +133164 personal +common +133169 common +133172 personal +common +133175 common +133181 common +personal +133184 common +133187 common +133190 common +personal +133194 common +personal +133199 common +133203 personal +133205 common +133211 personal +133214 personal +common +133218 common +133220 common +133222 common +133224 common +133227 personal +133233 common +133236 relative +133238 common +personal +133242 common +133244 common +133246 common +133250 common +common +133253 indefinite +133255 common +133258 indefinite +133260 common +133262 common +133265 indefinite +133267 common +133270 personal +133272 common +133277 common +133280 common +133286 common +133290 common +133293 common +133296 common +133300 common +133303 common +133306 common +133310 personal +133314 common +133318 personal +133323 common +133326 relative +133329 common +133331 common +personal +133335 common +133340 common +133343 common +133347 common +133350 common +133357 common +133360 common +relative +133363 personal +133367 common +133373 common +133375 common +133377 common +relative +133381 common +133383 common +133388 personal +133390 common +133392 common +133394 common +133399 common +133401 common +133406 relative +133410 common +133412 common +133433 common +133436 personal +common +133440 common +personal +133447 common +personal +133452 indefinite +133462 common +133464 common +133466 common +133469 common +133471 common +personal +133475 common +133479 common +133482 common +133484 common +133486 common +common +133491 common +personal +133501 common +133505 common +proper +133509 personal +133513 common +133516 common +personal +133520 common +133522 common +personal +133527 common +personal +133531 common +133534 common +133536 common +common +133541 common +common +133546 common +relative +133550 common +133554 common +personal +133558 common +133562 common +133567 common +133576 common +133583 common +133588 common +demonstrative +133591 relative +133593 common +133597 common +133599 demonstrative +133603 common +133607 demonstrative +133611 common +common +133614 common +133617 common +133621 common +personal +133625 common +133631 common +133634 common +133636 common +133644 common +133648 common +133650 common +133652 common +133654 common +133657 common +133661 common +133664 personal +common +133669 common +133671 common +personal +133678 common +133681 common +133683 common +133685 common +common +133689 common +133695 proper +133698 relative +133701 common +133703 common +133705 common +personal +133710 common +133713 common +133716 personal +133719 common +133722 indefinite +133725 common +133728 common +personal +133732 common +133735 common +personal +133740 common +personal +133743 personal +133747 common +133749 common +133751 common +133757 common +133759 common +personal +133764 common +133766 common +133768 common +133773 common +133776 common +133778 common +personal +133781 common +common +133787 common +common +133790 common +133794 common +133797 common +personal +133801 indefinite +133804 common +133806 common +personal +133811 common +133817 common +133819 common +133822 common +proper +133826 common +133829 common +133837 common +133843 common +133848 common +personal +133852 common +personal +133856 personal +133861 common +133866 common +133869 common +common +133874 common +personal +common +133881 common +personal +common +133887 common +133891 common +133894 common +133900 common +133903 common +personal +133910 common +133915 common +133917 common +133924 common +133926 common +personal +133930 common +133934 common +133937 common +133941 common +133945 common +133948 personal +common +133953 common +133956 common +133959 common +133963 common +133966 common +133971 common +133976 personal +133978 common +133984 common +133986 common +133988 common +133992 common +personal +133997 common +133999 common +personal +134003 common +134007 common +134009 common +134014 common +134016 common +134018 common +134024 common +134027 common +134030 common +134033 common +134036 common +134038 common +134040 common +134046 common +134049 common +134053 common +134056 common +134062 personal +134065 common +134067 common +134071 common +134074 common +134080 common +134084 common +personal +134089 common +134091 common +personal +134096 common +134100 common +134102 common +134106 common +proper +134109 common +134111 common +134114 common +134116 common +134122 common +personal +common +134126 common +134128 common +134133 common +personal +134136 common +134138 common +interrogative +134143 common +134147 common +personal +134155 common +134160 personal +134163 common +personal +134168 demonstrative +134173 common +134175 common +134177 common +134180 common +134185 common +134190 common +134193 common +134195 common +134202 common +common +134210 common +134214 common +134216 common +134220 common +134222 common +134227 common +134229 common +134233 common +common +134237 common +134239 common +134243 common +personal +134251 common +134256 common +134259 common +134263 common +134266 common +134270 common +134276 common +134278 common +134280 common +134283 common +134291 common +personal +134295 common +134298 common +134304 common +134308 common +134310 common +134315 common +personal +134322 common +personal +134326 common +134329 common +134334 common +common +134339 common +134346 common +personal +134350 common +134353 common +134355 common +134358 common +134362 common +134364 common +134376 demonstrative +134379 common +134382 common +134385 common +personal +134394 common +134397 common +134399 common +134401 common +134406 common +personal +134413 common +personal +134417 common +134420 personal +134423 common +134425 common +134429 common +common +134435 common +134437 common +134441 common +134444 common +demonstrative +134450 personal +common +134457 common +personal +134461 common +134463 common +134467 common +personal +134473 common +personal +134477 common +134481 common +134483 common +134486 common +personal +134491 common +personal +134498 common +personal +134505 common +personal +134509 common +134512 proper +134516 common +personal +134521 common +134523 common +134526 common +common +134532 common +134534 common +134538 common +134540 common +134544 common +134546 common +common +134551 common +134554 common +common +134557 common +relative +134562 common +134564 common +134567 personal +134570 common +134572 common +134576 common +134578 common +134582 common +134589 common +personal +134598 common +personal +134602 personal +134605 common +134609 proper +134615 common +personal +134619 common +134622 common +134626 common +134629 common +134634 common +134636 common +134638 common +134640 common +134643 relative +134647 relative +common +134652 common +demonstrative +common +134660 common +134665 common +134668 common +134670 common +134673 proper +134679 common +134681 personal +134683 common +134685 common +134687 common +134689 common +personal +134693 common +134696 common +134700 common +134707 common +134710 common +134714 common +134716 common +134719 common +134721 common +134726 common +personal +134735 common +134740 common +134744 personal +134748 personal +134750 common +134752 common +134758 common +134761 relative +134764 common +134766 common +134772 common +134775 common +134777 common +personal +134781 personal +134785 common +134788 common +134791 common +134794 common +common +134797 common +134800 common +134804 common +134812 common +134814 common +134817 common +134821 common +personal +common +134826 common +134831 common +personal +134836 common +personal +134839 common +common +proper +134845 common +134847 common +134850 common +134852 common +134856 common +134860 common +134866 common +134868 common +proper +134873 personal +common +134878 personal +134880 common +134882 interrogative +134884 personal +134886 personal +134888 common +134890 common +134893 common +134896 personal +134901 common +134905 common +134907 common +relative +134919 common +134922 common +134930 common +relative +134933 common +134938 common +134940 common +134942 common +common +134946 common +134956 common +134959 common +134962 common +134964 common +134968 common +134971 personal +134973 common +134990 personal +134995 common +relative +135002 personal +135012 common +135017 common +relative +135022 common +relative +common +135028 common +135030 common +135032 common +135036 common +demonstrative +135039 common +135043 common +135045 common +personal +135048 common +135050 demonstrative +135053 common +135057 common +135059 personal +135062 common +common +135065 common +common +135070 personal +135078 personal +135080 common +relative +135085 common +135088 common +135090 common +135092 common +135094 common +135098 common +relative +135103 common +demonstrative +135107 common +135110 personal +135116 common +personal +135120 personal +135123 common +135126 common +135130 common +personal +135134 common +personal +135139 common +135143 common +personal +135146 common +135150 common +135152 common +135155 common +relative +135160 common +135165 common +135168 common +135170 common +135172 demonstrative +135175 common +135179 common +135181 common +135185 common +135189 common +personal +135195 common +135199 proper +135204 common +common +135207 common +135209 common +135212 common +135214 common +135221 common +135223 common +135225 common +personal +135230 common +135233 common +135235 common +135237 personal +135241 common +135243 common +135246 common +135248 common +personal +135254 common +135257 common +135260 common +personal +135264 personal +135269 common +personal +135275 common +personal +135281 personal +135283 common +135286 common +135290 common +135292 common +personal +135295 personal +135298 personal +135306 common +personal +135310 common +relative +135314 personal +135316 relative +135318 personal +135321 demonstrative +common +135324 common +135326 personal +135330 common +personal +135335 common +135341 common +135346 demonstrative +135349 common +135352 common +personal +common +135356 common +135358 common +135361 common +135365 common +135367 common +135370 personal +135376 personal +135378 common +135380 common +135383 personal +135390 common +135392 common +personal +135399 common +135401 common +personal +135407 common +135410 proper +135412 common +135417 common +135420 common +personal +135424 common +135426 common +135431 personal +135437 common +personal +common +common +135442 common +135444 common +135447 common +135451 common +135458 common +135462 common +135466 common +135468 common +135471 common +135473 common +135475 common +135477 common +135479 common +135481 common +135483 common +135485 common +135487 common +135489 common +135491 common +135493 common +135495 common +135497 common +135499 common +135501 common +135503 common +135505 common +common +135509 common +personal +135512 common +135514 common +135517 personal +135527 personal +135532 personal +135535 common +demonstrative +135540 personal +135546 common +135548 common +personal +135557 common +135570 common +135572 common +135575 common +135578 common +135581 demonstrative +common +135585 common +135590 common +135593 common +135595 relative +135597 common +135606 common +135608 common +personal +135611 interrogative +135614 common +135619 common +135622 common +personal +135633 common +135637 relative +135643 common +135646 common +135649 common +personal +135653 common +135657 personal +common +135664 common +135667 common +135671 common +135673 common +personal +135676 personal +135680 common +135682 common +135690 common +135693 common +135695 proper +135698 common +135705 common +common +135710 common +135712 common +135717 personal +135721 common +135723 common +135728 personal +135731 common +common +135737 personal +135740 common +common +135746 personal +135749 common +common +135752 common +135757 personal +135761 common +personal +135765 common +135767 common +135771 common +personal +135776 common +135779 personal +135781 common +common +135791 common +135793 demonstrative +135796 common +135798 common +135802 common +135806 common +135809 common +135812 common +135814 common +personal +135821 common +personal +135826 common +135829 relative +135832 common +135835 common +personal +135840 common +135842 common +personal +135845 common +personal +135853 common +personal +135858 common +135860 common +135871 common +135875 common +135880 common +135885 common +135888 common +135893 common +personal +135897 common +personal +135901 personal +135910 common +common +135915 common +common +135920 common +common +135927 common +135929 common +personal +135932 common +135939 common +personal +135944 common +135946 common +135949 common +personal +135952 personal +135955 personal +135965 common +135971 personal +135977 common +135979 common +135981 common +135985 personal +demonstrative +135988 common +135991 common +135997 common +personal +136000 personal +136003 personal +136007 common +personal +136011 common +personal +136016 common +proper +136019 common +136023 common +proper +136027 common +136029 common +136033 common +136037 common +136043 personal +136050 common +136056 common +personal +common +common +136063 common +personal +common +136068 common +136070 relative +136075 personal +136078 common +136080 common +136084 common +personal +136087 common +136089 common +136092 common +136096 common +136098 personal +136100 common +136109 common +personal +136112 common +136116 personal +136119 common +136121 personal +136123 personal +136125 common +136128 personal +136131 common +136133 common +136135 common +136137 common +136139 common +136141 common +136146 common +136150 common +personal +common +136154 common +common +136157 common +common +136162 common +136166 common +136170 common +136175 common +136179 common +136184 common +136188 common +136191 common +common +136194 common +common +136197 common +136200 common +common +136206 personal +136208 common +136213 common +136221 common +136224 common +136226 common +136229 common +personal +136234 common +136240 common +136244 common +personal +136249 common +136252 personal +136254 common +136258 common +136260 personal +136262 relative +136267 common +136269 common +136274 common +personal +136282 common +136284 common +136288 common +136295 common +136300 common +136305 common +personal +136310 common +136314 common +personal +136318 common +136322 common +136325 common +136327 common +136329 common +136333 common +personal +136338 common +136340 common +136343 relative +136348 proper +136351 personal +136353 common +136356 personal +136359 common +136365 personal +136371 common +136376 common +136378 demonstrative +136381 personal +136383 common +136386 common +136390 personal +136392 common +136394 personal +136397 common +136402 common +proper +136407 common +136409 common +136411 relative +136415 common +136418 common +personal +136424 common +136427 common +136431 common +personal +136439 proper +136441 common +136452 common +demonstrative +136455 common +136463 common +136466 common +136470 demonstrative +136473 common +136476 common +136479 common +136481 common +136484 proper +136488 personal +136491 common +136497 common +136500 proper +136503 common +personal +136509 common +136514 common +136516 common +136518 proper +136520 proper +136522 personal +136525 common +relative +136528 common +personal +136532 common +136534 common +136539 common +136541 common +136545 common +136550 common +136555 common +136558 common +136561 personal +136567 personal +136571 common +136573 common +136575 common +136579 common +136582 common +136585 common +136587 common +136590 common +136592 common +136595 common +136602 personal +136604 relative +136606 common +136609 common +136612 common +136614 common +136617 personal +136630 common +136632 common +136636 common +136638 relative +136641 common +136651 common +136654 common +personal +136659 common +136664 personal +136667 common +136670 common +136676 personal +136682 common +personal +136686 common +136689 common +136693 common +136695 common +demonstrative +136698 common +136702 common +136704 common +136708 indefinite +136713 common +136715 common +136720 common +136722 common +136725 common +136728 common +136733 common +136737 common +136741 common +136748 common +136751 proper +136756 common +136759 common +136762 common +136765 common +personal +136769 common +136773 common +136777 common +136779 common +136782 common +136786 personal +136788 personal +common +personal +136793 personal +136795 common +136797 personal +136802 common +136805 common +personal +136809 common +136814 common +136816 common +136818 common +136832 common +136841 demonstrative +136843 common +136850 personal +136852 personal +136854 proper +136857 proper +136859 common +136862 common +personal +136869 common +136871 common +136873 common +136878 demonstrative +136881 personal +common +136884 personal +136886 personal +common +136896 common +136898 common +136900 common +136902 common +136908 common +personal +136912 common +136915 common +136917 common +relative +136921 common +136930 common +136935 common +136940 common +136946 personal +136950 personal +136952 common +136954 common +136956 common +136959 personal +136961 common +136963 common +136969 personal +136971 common +136974 proper +136978 common +136981 common +136984 common +136986 common +136988 common +personal +136991 common +136994 common +common +136998 common +137003 common +137008 common +common +137013 common +relative +137018 common +common +proper +137022 common +common +137027 common +common +137032 common +common +137037 common +common +137042 common +137044 common +137046 common +137050 personal +137052 common +137055 common +137057 common +137062 personal +137064 common +common +137070 common +137073 common +personal +137077 common +personal +137081 common +137086 common +personal +relative +137090 common +137094 common +137096 common +137098 common +137100 common +137102 common +137105 common +137108 common +personal +137115 common +personal +137120 common +common +common +relative +137125 common +137128 common +137130 common +personal +common +137135 common +common +137139 common +137142 common +137144 common +137146 common +137148 common +137152 common +137155 common +137158 common +137161 common +137164 common +137167 common +137170 common +137173 common +137176 common +137179 common +137182 common +137185 common +137188 common +137192 common +137194 common +137199 common +137203 common +137208 common +common +137212 common +137215 common +137219 personal +137222 common +137224 common +137226 common +137229 common +common +personal +137235 common +137238 common +137240 common +137243 common +137246 personal +137249 common +137251 common +137253 personal +137256 common +personal +137259 common +137263 common +137266 common +personal +137270 common +137272 common +137275 common +personal +137278 personal +137281 common +personal +137286 common +137288 common +137295 common +137298 common +137300 common +137302 personal +137308 personal +137314 common +137316 common +137323 common +137325 common +137327 common +137330 personal +common +common +common +137336 common +137340 common +137342 common +137345 common +137350 personal +137353 common +137357 common +common +137360 common +137363 common +137367 common +personal +137371 common +137373 common +137375 common +137377 common +137380 common +137386 common +137388 common +137391 common +137393 personal +137397 common +personal +137400 personal +137404 common +personal +137408 common +personal +137412 common +personal +137415 common +137422 common +common +common +137426 common +common +137429 common +137431 common +137434 personal +137439 common +137441 common +137444 personal +demonstrative +137447 common +137453 common +137455 common +137457 common +137459 common +137462 common +personal +137466 common +personal +relative +137471 common +137481 common +137483 common +137485 common +demonstrative +personal +proper +137493 demonstrative +137503 common +137505 common +137508 personal +demonstrative +137512 personal +137516 common +personal +137520 common +personal +137523 common +137528 common +137530 common +demonstrative +137533 common +137537 personal +137541 common +137543 common +137545 common +demonstrative +137549 common +137564 common +137577 common +personal +137580 personal +137585 common +personal +137588 personal +137590 proper +137593 proper +137600 common +137603 common +137608 common +personal +137613 common +personal +137617 common +137619 common +137622 common +137626 common +137629 common +137632 common +137635 common +137638 common +137641 common +137647 common +personal +proper +137652 common +personal +137655 personal +demonstrative +137659 common +personal +137663 common +137666 common +proper +137669 common +137676 common +137679 common +137694 common +common +137698 personal +137703 common +137705 common +137707 common +demonstrative +137710 indefinite +137713 personal +137716 common +137718 personal +137720 common +137725 common +demonstrative +137729 indefinite +137733 common +137735 common +137737 common +demonstrative +137741 common +137743 common +personal +137747 common +137749 common +137753 common +137760 common +demonstrative +137765 demonstrative +137771 common +proper +137774 common +137776 common +proper +154025 modifier-scope +modifier-scope +group +group +group +modifier-scope +modifier-scope +154035 modifier-scope +conjuncted-wg +154038 modifier-scope +conjuncted-wg +154042 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +154049 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +154056 modifier-scope +conjuncted-wg +154059 modifier-scope +conjuncted-wg +154062 modifier-scope +conjuncted-wg +154065 modifier-scope +conjuncted-wg +154068 modifier-scope +conjuncted-wg +154071 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +154076 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +154081 modifier-scope +conjuncted-wg +154084 group +modifier-scope +modifier-scope +154088 wrapper-clause-scope +154091 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +154097 modifier-scope +conjuncted-wg +154100 modifier-scope +conjuncted-wg +154103 modifier-scope +conjuncted-wg +154106 modifier-scope +conjuncted-wg +154109 modifier-scope +conjuncted-wg +154112 modifier-scope +conjuncted-wg +154115 modifier-scope +conjuncted-wg +154118 modifier-scope +conjuncted-wg +154121 modifier-scope +conjuncted-wg +154124 modifier-scope +conjuncted-wg +154127 modifier-scope +conjuncted-wg +154130 modifier-scope +conjuncted-wg +154134 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +154142 wrapper-clause-scope +154145 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +154151 modifier-scope +conjuncted-wg +154154 modifier-scope +conjuncted-wg +154157 modifier-scope +conjuncted-wg +154160 modifier-scope +conjuncted-wg +154163 modifier-scope +conjuncted-wg +154166 modifier-scope +conjuncted-wg +154169 modifier-scope +conjuncted-wg +154172 modifier-scope +conjuncted-wg +154175 modifier-scope +conjuncted-wg +154178 modifier-scope +conjuncted-wg +154181 group +modifier-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +154187 wrapper-scope +group +wrapper-clause-scope +154192 wrapper-clause-scope +154195 modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +154204 group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +154212 group +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +154220 wrapper-clause-scope +154222 modifier-scope +modifier-scope +group +modifier-scope +154227 group +154229 group +modifier-scope +modifier-scope +modifier-scope +154234 wrapper-clause-scope +wrapper-clause-scope +154238 wrapper-scope +wrapper-scope +modifier-scope +154242 wrapper-clause-scope +154244 group +modifier-scope +modifier-scope +154249 conjuncted-wg +154254 wrapper-clause-scope +154257 modifier-scope +wrapper-scope +154261 group +154264 group +modifier-scope +154267 modifier-scope +modifier-scope +wrapper-clause-scope +154271 wrapper-clause-scope +154273 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +154279 conjuncted-wg +154281 modifier-scope +modifier-scope +wrapper-clause-scope +154285 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +154291 wrapper-clause-scope +group +154294 modifier-scope +wrapper-clause-scope +154297 wrapper-clause-scope +154299 wrapper-scope +wrapper-scope +modifier-scope +154305 modifier-scope +wrapper-scope +conjuncted-wg +154309 conjuncted-wg +154311 modifier-scope +modifier-scope +apposition-group +154315 wrapper-scope +154317 wrapper-scope +modifier-scope +154320 wrapper-clause-scope +154323 group +154325 modifier-scope +154327 wrapper-scope +modifier-scope +wrapper-clause-scope +154331 modifier-scope +modifier-scope +conjuncted-wg +154336 modifier-scope +modifier-scope +conjuncted-wg +154340 wrapper-scope +154342 conjuncted-wg +154344 modifier-scope +modifier-scope +154347 wrapper-clause-scope +group +154350 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +154359 wrapper-scope +wrapper-scope +154362 group +154364 modifier-clause-scope +modifier-clause-scope +154367 modifier-scope +modifier-scope +wrapper-clause-scope +154372 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +154380 wrapper-clause-scope +154385 group +modifier-scope +conjuncted-wg +154389 modifier-scope +wrapper-scope +conjuncted-wg +154394 modifier-scope +modifier-scope +154397 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +154402 modifier-scope +154404 wrapper-clause-scope +154406 group +154408 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +154413 wrapper-scope +modifier-scope +wrapper-clause-scope +group +154419 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +154426 wrapper-scope +apposition-group +154430 group +modifier-scope +modifier-scope +modifier-scope +154438 modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +154445 conjuncted-wg +154448 wrapper-scope +154452 wrapper-scope +modifier-scope +conjuncted-wg +group +group +wrapper-clause-scope +154460 wrapper-clause-scope +154464 wrapper-clause-scope +154468 modifier-scope +conjuncted-wg +154472 modifier-clause-scope +apposition-group +154475 wrapper-scope +modifier-scope +154479 wrapper-scope +154481 modifier-scope +154483 wrapper-clause-scope +154486 modifier-scope +modifier-scope +154489 wrapper-clause-scope +154493 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +conjuncted-wg +154504 conjuncted-wg +154507 modifier-scope +modifier-scope +group +154511 conjuncted-wg +conjuncted-wg +154514 wrapper-clause-scope +154517 wrapper-scope +154519 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +154526 wrapper-clause-scope +group +154530 modifier-scope +wrapper-scope +modifier-scope +154534 group +154539 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +154545 wrapper-scope +conjuncted-wg +group +154549 wrapper-clause-scope +wrapper-clause-scope +154552 wrapper-clause-scope +154555 modifier-scope +wrapper-clause-scope +154559 wrapper-clause-scope +group +154565 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +154571 wrapper-scope +conjuncted-wg +154574 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +154579 wrapper-clause-scope +154581 wrapper-scope +wrapper-scope +modifier-scope +154586 wrapper-scope +modifier-scope +modifier-scope +154595 wrapper-scope +modifier-scope +conjuncted-wg +154600 modifier-scope +group +modifier-scope +modifier-scope +group +154606 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +154613 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-clause-scope +apposition-group +154619 wrapper-scope +modifier-scope +154623 wrapper-clause-scope +154625 wrapper-scope +group +modifier-scope +154630 wrapper-scope +group +154633 conjuncted-wg +modifier-scope +154637 modifier-scope +modifier-scope +conjuncted-wg +154642 wrapper-clause-scope +154645 wrapper-clause-scope +group +154648 modifier-scope +154650 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +154655 group +154660 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +154666 wrapper-scope +modifier-scope +wrapper-clause-scope +154670 wrapper-clause-scope +154672 modifier-scope +modifier-scope +modifier-scope +154676 wrapper-clause-scope +154681 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +154687 wrapper-scope +modifier-scope +154690 wrapper-clause-scope +154693 wrapper-clause-scope +154695 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +154702 wrapper-clause-scope +154706 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +154714 wrapper-scope +modifier-clause-scope +154717 wrapper-clause-scope +154719 wrapper-clause-scope +154721 wrapper-scope +modifier-scope +wrapper-clause-scope +154726 wrapper-clause-scope +154728 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +154734 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +154739 group +154741 wrapper-clause-scope +154743 modifier-scope +modifier-scope +modifier-scope +154747 wrapper-clause-scope +154749 wrapper-clause-scope +154751 wrapper-scope +group +modifier-scope +154756 modifier-clause-scope +154758 wrapper-scope +modifier-scope +group +154762 modifier-scope +modifier-scope +154765 modifier-scope +modifier-scope +154768 wrapper-clause-scope +154772 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +154780 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +154786 modifier-scope +modifier-scope +154789 conjuncted-wg +modifier-scope +154794 wrapper-scope +154796 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +154806 wrapper-scope +modifier-scope +group +wrapper-scope +154811 modifier-scope +modifier-scope +154814 wrapper-clause-scope +154817 modifier-clause-scope +modifier-scope +modifier-scope +154821 conjuncted-wg +154823 wrapper-scope +modifier-scope +154827 modifier-scope +154829 wrapper-scope +modifier-clause-scope +modifier-clause-scope +154834 wrapper-clause-scope +154836 modifier-scope +modifier-scope +modifier-scope +154840 wrapper-clause-scope +154843 wrapper-scope +154845 modifier-scope +wrapper-clause-scope +154848 wrapper-clause-scope +154850 modifier-scope +154852 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +154857 wrapper-clause-scope +154859 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +154865 wrapper-clause-scope +154868 modifier-clause-scope +modifier-clause-scope +154871 modifier-scope +conjuncted-wg +154874 wrapper-scope +154877 conjuncted-wg +154879 wrapper-scope +wrapper-scope +conjuncted-wg +154883 wrapper-clause-scope +154885 wrapper-scope +154888 modifier-scope +154891 wrapper-scope +154893 modifier-scope +conjuncted-wg +154898 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +154905 modifier-scope +modifier-scope +conjuncted-wg +154910 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +154916 modifier-scope +modifier-scope +154920 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +154929 wrapper-scope +154931 wrapper-clause-scope +154937 wrapper-scope +conjuncted-wg +154940 wrapper-scope +154942 wrapper-clause-scope +154945 modifier-scope +group +154948 wrapper-clause-scope +154952 modifier-scope +154956 wrapper-clause-scope +154959 modifier-scope +wrapper-scope +modifier-scope +154963 wrapper-clause-scope +154966 modifier-scope +conjuncted-wg +154970 modifier-scope +wrapper-scope +154973 wrapper-scope +154975 wrapper-clause-scope +154977 wrapper-scope +modifier-scope +154981 group +modifier-scope +modifier-scope +modifier-scope +154986 wrapper-scope +154989 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +154995 wrapper-scope +modifier-scope +154998 wrapper-clause-scope +155002 modifier-scope +conjuncted-wg +modifier-scope +155006 wrapper-clause-scope +155009 wrapper-clause-scope +155011 group +wrapper-clause-scope +155014 modifier-scope +modifier-scope +155017 wrapper-clause-scope +155019 modifier-scope +modifier-scope +155022 wrapper-clause-scope +155026 group +155028 wrapper-scope +modifier-scope +modifier-scope +155032 wrapper-scope +modifier-clause-scope +modifier-clause-scope +155036 wrapper-scope +modifier-scope +155041 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +155048 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155054 group +wrapper-clause-scope +155057 modifier-scope +modifier-scope +155061 wrapper-clause-scope +155063 wrapper-clause-scope +155066 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +155072 wrapper-scope +155074 wrapper-scope +modifier-scope +modifier-scope +155079 modifier-scope +155082 group +modifier-scope +modifier-scope +155088 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +155096 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +155105 group +155107 modifier-scope +wrapper-clause-scope +155113 modifier-scope +155117 wrapper-clause-scope +155121 group +modifier-scope +modifier-scope +conjuncted-wg +155126 modifier-scope +155130 modifier-scope +conjuncted-wg +155134 conjuncted-wg +155137 wrapper-clause-scope +155140 wrapper-clause-scope +155142 wrapper-scope +modifier-scope +155145 wrapper-clause-scope +group +155149 modifier-scope +155151 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155158 conjuncted-wg +wrapper-clause-scope +155161 wrapper-clause-scope +155163 wrapper-scope +group +modifier-scope +155169 group +modifier-scope +modifier-scope +155173 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +155182 group +modifier-scope +wrapper-clause-scope +155186 wrapper-scope +modifier-scope +conjuncted-wg +155191 wrapper-clause-scope +155193 wrapper-scope +modifier-scope +155196 conjuncted-wg +155199 wrapper-scope +modifier-scope +155203 conjuncted-wg +155205 group +155207 wrapper-clause-scope +155209 modifier-scope +modifier-scope +modifier-scope +155213 wrapper-clause-scope +155216 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +155221 group +modifier-scope +155224 group +wrapper-clause-scope +155227 conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155234 wrapper-clause-scope +155237 wrapper-clause-scope +155241 wrapper-scope +conjuncted-wg +155244 modifier-scope +155246 wrapper-clause-scope +155249 modifier-scope +155251 wrapper-clause-scope +155255 group +modifier-scope +modifier-scope +155259 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +155275 wrapper-clause-scope +155278 wrapper-clause-scope +155282 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +155287 wrapper-clause-scope +155289 wrapper-scope +modifier-scope +modifier-scope +155294 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +155299 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155305 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +155311 wrapper-clause-scope +155313 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +155319 wrapper-clause-scope +155322 group +modifier-clause-scope +wrapper-clause-scope +155328 modifier-scope +155330 conjuncted-wg +155332 conjuncted-wg +155334 conjuncted-wg +conjuncted-wg +155338 wrapper-clause-scope +155340 modifier-scope +modifier-scope +155343 wrapper-scope +modifier-scope +155346 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +155353 wrapper-clause-scope +155356 modifier-scope +wrapper-scope +modifier-scope +155360 wrapper-clause-scope +group +155364 modifier-scope +modifier-scope +155367 wrapper-clause-scope +155370 modifier-scope +modifier-scope +155375 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +155380 modifier-scope +modifier-scope +modifier-scope +155385 wrapper-clause-scope +155387 wrapper-clause-scope +155391 modifier-scope +wrapper-clause-scope +155394 modifier-scope +155397 wrapper-clause-scope +155400 conjuncted-wg +modifier-scope +wrapper-clause-scope +155406 modifier-scope +wrapper-clause-scope +155411 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +155416 modifier-scope +155418 group +155420 modifier-scope +wrapper-clause-scope +155423 modifier-scope +155426 wrapper-clause-scope +155428 wrapper-scope +wrapper-clause-scope +155431 modifier-scope +modifier-scope +modifier-scope +155435 group +155437 wrapper-clause-scope +155440 conjuncted-wg +155442 conjuncted-wg +155444 modifier-scope +wrapper-scope +155447 wrapper-scope +155451 conjuncted-wg +155453 wrapper-clause-scope +155455 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155460 wrapper-clause-scope +155462 group +modifier-scope +modifier-scope +wrapper-scope +155468 modifier-scope +modifier-scope +modifier-scope +155472 wrapper-clause-scope +155474 wrapper-clause-scope +155476 modifier-scope +wrapper-scope +155480 wrapper-scope +wrapper-clause-scope +155484 wrapper-scope +modifier-scope +155488 modifier-scope +modifier-scope +modifier-scope +155495 wrapper-scope +155497 group +155500 conjuncted-wg +155502 wrapper-scope +modifier-scope +155506 wrapper-scope +modifier-scope +conjuncted-wg +155510 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155516 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +155523 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155528 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155536 wrapper-clause-scope +155540 modifier-scope +conjuncted-wg +modifier-scope +155544 group +155549 wrapper-clause-scope +group +wrapper-clause-scope +155553 group +wrapper-clause-scope +wrapper-clause-scope +155558 modifier-scope +conjuncted-wg +modifier-scope +155563 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +155573 wrapper-clause-scope +155575 wrapper-clause-scope +155578 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155585 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +155591 wrapper-clause-scope +group +wrapper-clause-scope +155596 conjuncted-wg +155599 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +155604 wrapper-clause-scope +155606 wrapper-clause-scope +155608 wrapper-clause-scope +155610 modifier-scope +modifier-scope +modifier-scope +155614 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +155622 wrapper-clause-scope +155624 modifier-scope +155627 conjuncted-wg +155629 wrapper-clause-scope +155631 modifier-scope +155633 wrapper-clause-scope +155635 wrapper-clause-scope +155638 modifier-clause-scope +wrapper-clause-scope +155641 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155646 wrapper-clause-scope +155648 modifier-scope +modifier-scope +155651 modifier-scope +conjuncted-wg +155654 wrapper-clause-scope +155657 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +155662 wrapper-clause-scope +155664 wrapper-clause-scope +group +155667 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155672 wrapper-clause-scope +155674 modifier-scope +modifier-scope +wrapper-scope +155678 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +group +155686 modifier-scope +modifier-scope +conjuncted-wg +155691 modifier-scope +modifier-scope +155695 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +155700 wrapper-scope +wrapper-scope +modifier-scope +155705 modifier-scope +modifier-scope +conjuncted-wg +155709 modifier-scope +modifier-scope +conjuncted-wg +155713 wrapper-scope +155715 group +wrapper-clause-scope +155718 group +155720 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +155724 modifier-scope +modifier-scope +155728 wrapper-clause-scope +155732 wrapper-clause-scope +155734 wrapper-clause-scope +155736 modifier-clause-scope +wrapper-clause-scope +155739 wrapper-scope +wrapper-clause-scope +155742 wrapper-scope +modifier-scope +modifier-scope +155746 wrapper-clause-scope +155748 wrapper-clause-scope +155750 modifier-scope +modifier-scope +modifier-scope +modifier-scope +155755 conjuncted-wg +155757 wrapper-scope +155759 wrapper-clause-scope +155761 wrapper-clause-scope +155764 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155769 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +155774 wrapper-clause-scope +155776 wrapper-clause-scope +155778 modifier-scope +modifier-scope +modifier-scope +155782 conjuncted-wg +155784 wrapper-scope +155786 wrapper-clause-scope +155788 wrapper-clause-scope +155791 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155796 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +155801 wrapper-clause-scope +155804 wrapper-clause-scope +155806 modifier-scope +modifier-scope +155809 wrapper-clause-scope +155811 wrapper-clause-scope +155814 modifier-clause-scope +wrapper-clause-scope +155817 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155822 conjuncted-wg +155824 wrapper-clause-scope +155829 wrapper-clause-scope +155831 modifier-scope +155834 conjuncted-wg +155836 modifier-scope +modifier-scope +modifier-scope +155840 wrapper-clause-scope +155845 conjuncted-wg +group +155848 wrapper-scope +modifier-scope +wrapper-clause-scope +155852 modifier-scope +modifier-scope +conjuncted-wg +group +155857 wrapper-scope +modifier-scope +wrapper-clause-scope +155861 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +155867 wrapper-scope +wrapper-clause-scope +155870 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +155875 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +155881 modifier-scope +155883 conjuncted-wg +155885 wrapper-clause-scope +155887 modifier-scope +modifier-scope +group +155893 wrapper-clause-scope +155895 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +155901 wrapper-clause-scope +155905 wrapper-scope +conjuncted-wg +155908 wrapper-scope +155910 wrapper-clause-scope +155913 modifier-scope +155915 wrapper-clause-scope +155918 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +155925 wrapper-clause-scope +group +155928 wrapper-clause-scope +155932 conjuncted-wg +155934 modifier-scope +modifier-scope +155937 modifier-scope +modifier-scope +155940 wrapper-clause-scope +155943 modifier-scope +wrapper-scope +155948 wrapper-clause-scope +155950 conjuncted-wg +155952 wrapper-clause-scope +155955 wrapper-scope +155958 wrapper-clause-scope +155962 modifier-scope +modifier-scope +conjuncted-wg +155966 modifier-scope +modifier-scope +155969 wrapper-clause-scope +155971 group +group +155975 modifier-scope +modifier-scope +conjuncted-wg +155979 wrapper-scope +wrapper-clause-scope +155982 wrapper-clause-scope +155984 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +155993 modifier-scope +modifier-scope +wrapper-scope +155997 conjuncted-wg +conjuncted-wg +156000 wrapper-scope +156002 conjuncted-wg +156004 wrapper-clause-scope +156006 wrapper-clause-scope +156008 wrapper-clause-scope +156010 modifier-scope +156012 wrapper-clause-scope +156014 modifier-scope +modifier-scope +modifier-scope +156018 wrapper-clause-scope +156020 wrapper-clause-scope +156022 modifier-scope +modifier-scope +modifier-scope +156026 wrapper-clause-scope +156028 modifier-scope +modifier-scope +modifier-scope +156032 wrapper-clause-scope +156034 wrapper-clause-scope +156036 modifier-scope +modifier-scope +modifier-scope +modifier-scope +156041 wrapper-clause-scope +156044 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +156052 wrapper-clause-scope +156054 wrapper-clause-scope +156056 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156064 wrapper-clause-scope +group +wrapper-clause-scope +156068 group +156070 wrapper-scope +wrapper-clause-scope +group +156074 modifier-scope +156076 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-clause-scope +156083 wrapper-scope +modifier-scope +156086 group +wrapper-clause-scope +156090 modifier-scope +modifier-scope +156093 wrapper-clause-scope +group +group +156098 modifier-scope +modifier-scope +156101 modifier-scope +modifier-scope +wrapper-clause-scope +156105 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156110 wrapper-clause-scope +156112 group +modifier-scope +modifier-scope +wrapper-clause-scope +156117 wrapper-scope +modifier-scope +156120 wrapper-clause-scope +group +group +wrapper-clause-scope +156126 wrapper-scope +modifier-scope +wrapper-clause-scope +156133 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +156142 modifier-scope +156144 group +wrapper-clause-scope +156148 modifier-scope +modifier-scope +156151 wrapper-clause-scope +group +wrapper-clause-scope +156157 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +156163 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156172 wrapper-clause-scope +156174 group +modifier-scope +modifier-scope +wrapper-clause-scope +156179 wrapper-scope +modifier-scope +156182 wrapper-clause-scope +group +156186 wrapper-clause-scope +156188 modifier-scope +wrapper-clause-scope +156191 wrapper-clause-scope +156193 wrapper-scope +modifier-scope +modifier-scope +156197 wrapper-clause-scope +group +156200 wrapper-clause-scope +156202 modifier-scope +modifier-scope +156205 modifier-scope +wrapper-scope +wrapper-clause-scope +156210 wrapper-clause-scope +156215 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156221 modifier-scope +modifier-scope +156224 modifier-scope +modifier-scope +156227 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +156235 modifier-scope +modifier-scope +modifier-scope +modifier-scope +156240 wrapper-clause-scope +156242 modifier-scope +modifier-scope +wrapper-clause-scope +156246 modifier-scope +modifier-scope +modifier-scope +156250 wrapper-clause-scope +group +156253 wrapper-scope +156255 wrapper-scope +modifier-scope +156258 wrapper-clause-scope +156260 wrapper-clause-scope +156262 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +156271 wrapper-clause-scope +156273 wrapper-clause-scope +156275 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +156281 wrapper-clause-scope +group +group +wrapper-clause-scope +156287 wrapper-clause-scope +156289 modifier-scope +wrapper-clause-scope +group +156293 modifier-scope +modifier-scope +wrapper-clause-scope +156297 modifier-scope +156300 group +wrapper-clause-scope +156304 modifier-scope +modifier-scope +156307 wrapper-clause-scope +group +156312 modifier-scope +modifier-scope +conjuncted-wg +156316 modifier-scope +modifier-scope +wrapper-clause-scope +group +156321 modifier-scope +156324 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156331 wrapper-clause-scope +156333 group +modifier-scope +modifier-scope +wrapper-clause-scope +156338 wrapper-scope +modifier-scope +156342 wrapper-scope +modifier-scope +156347 conjuncted-wg +conjuncted-wg +156351 conjuncted-wg +156353 wrapper-clause-scope +156355 wrapper-scope +156359 conjuncted-wg +conjuncted-wg +conjuncted-wg +156364 conjuncted-wg +156366 wrapper-clause-scope +group +156369 modifier-scope +modifier-scope +156372 modifier-scope +modifier-scope +modifier-scope +156377 modifier-scope +modifier-scope +modifier-scope +modifier-scope +156382 wrapper-clause-scope +156384 wrapper-clause-scope +156386 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +156392 wrapper-clause-scope +156394 wrapper-clause-scope +156396 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +156402 wrapper-clause-scope +156404 wrapper-clause-scope +156406 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156412 group +156415 modifier-scope +wrapper-clause-scope +156418 conjuncted-wg +156421 modifier-scope +conjuncted-wg +156424 modifier-scope +conjuncted-wg +156428 conjuncted-wg +156430 modifier-scope +156435 conjuncted-wg +156439 wrapper-scope +156442 modifier-scope +modifier-scope +156446 conjuncted-wg +156448 conjuncted-wg +156450 modifier-scope +modifier-scope +156454 wrapper-clause-scope +156457 modifier-scope +modifier-scope +conjuncted-wg +156461 modifier-scope +modifier-scope +156465 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +156473 conjuncted-wg +156475 conjuncted-wg +156477 wrapper-scope +conjuncted-wg +156480 modifier-scope +modifier-scope +modifier-scope +modifier-scope +156485 wrapper-clause-scope +156488 wrapper-clause-scope +156490 modifier-scope +wrapper-scope +156494 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +156499 wrapper-clause-scope +156501 wrapper-scope +156504 modifier-scope +modifier-scope +modifier-scope +156511 conjuncted-wg +156514 wrapper-clause-scope +156516 wrapper-clause-scope +156518 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +156524 modifier-scope +156526 wrapper-clause-scope +156528 wrapper-clause-scope +156530 modifier-scope +modifier-scope +modifier-scope +156535 conjuncted-wg +156537 wrapper-scope +modifier-scope +wrapper-clause-scope +156541 modifier-scope +156544 wrapper-clause-scope +156549 conjuncted-wg +156551 conjuncted-wg +156554 wrapper-clause-scope +156556 modifier-scope +modifier-scope +156559 wrapper-clause-scope +156561 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +156567 modifier-scope +156569 wrapper-clause-scope +156573 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +156579 modifier-scope +156581 wrapper-clause-scope +group +156584 wrapper-scope +modifier-scope +wrapper-clause-scope +156588 modifier-scope +156591 modifier-scope +modifier-scope +modifier-scope +156596 wrapper-clause-scope +wrapper-clause-scope +156600 wrapper-clause-scope +156604 wrapper-scope +modifier-scope +conjuncted-wg +156609 wrapper-scope +modifier-scope +156612 wrapper-clause-scope +156615 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +156625 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +156631 wrapper-clause-scope +156634 modifier-scope +modifier-scope +group +156639 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +156645 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +156653 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +156660 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +156667 group +156670 modifier-scope +modifier-scope +conjuncted-wg +156674 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156680 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +156687 group +group +156691 conjuncted-wg +156695 conjuncted-wg +156699 conjuncted-wg +156701 wrapper-clause-scope +156704 modifier-clause-scope +wrapper-clause-scope +156707 conjuncted-wg +156709 wrapper-clause-scope +156711 conjuncted-wg +156713 wrapper-clause-scope +156716 wrapper-clause-scope +156718 wrapper-scope +modifier-clause-scope +apposition-group +156724 modifier-scope +modifier-scope +156728 modifier-scope +wrapper-clause-scope +156732 wrapper-clause-scope +group +wrapper-clause-scope +156738 modifier-scope +modifier-scope +modifier-scope +156742 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +156752 wrapper-clause-scope +156755 modifier-clause-scope +wrapper-clause-scope +156760 modifier-scope +modifier-scope +156763 wrapper-clause-scope +156766 modifier-scope +conjuncted-wg +modifier-scope +156771 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +156778 modifier-scope +conjuncted-wg +156781 group +modifier-scope +wrapper-clause-scope +156785 wrapper-scope +modifier-scope +conjuncted-wg +156789 wrapper-clause-scope +156791 wrapper-scope +wrapper-clause-scope +156796 modifier-scope +conjuncted-wg +156799 group +modifier-scope +wrapper-clause-scope +156803 wrapper-scope +modifier-scope +conjuncted-wg +156807 wrapper-clause-scope +156811 wrapper-scope +modifier-clause-scope +apposition-group +156816 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +156821 modifier-scope +156824 wrapper-scope +modifier-scope +modifier-scope +156828 wrapper-clause-scope +156831 wrapper-scope +conjuncted-wg +156834 wrapper-scope +156838 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +156843 modifier-scope +modifier-scope +modifier-scope +156849 modifier-scope +156851 modifier-scope +conjuncted-wg +156854 modifier-scope +156856 modifier-scope +156860 modifier-clause-scope +modifier-clause-scope +156863 modifier-scope +conjuncted-wg +156866 wrapper-scope +156868 wrapper-clause-scope +156870 wrapper-scope +modifier-scope +modifier-scope +156874 group +156876 modifier-clause-scope +wrapper-clause-scope +156879 group +156882 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +156887 wrapper-clause-scope +156889 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156899 wrapper-scope +modifier-scope +modifier-scope +group +group +156906 wrapper-clause-scope +156909 modifier-scope +modifier-scope +conjuncted-wg +156913 modifier-scope +modifier-scope +conjuncted-wg +156917 modifier-scope +modifier-scope +modifier-scope +156921 wrapper-clause-scope +156923 wrapper-clause-scope +156926 wrapper-scope +156928 wrapper-clause-scope +156930 modifier-scope +156932 wrapper-clause-scope +156934 modifier-clause-scope +156937 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +156942 apposition-group +modifier-scope +156945 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156950 wrapper-clause-scope +group +156954 modifier-scope +conjuncted-wg +156957 modifier-scope +conjuncted-wg +156960 modifier-scope +conjuncted-wg +156963 modifier-scope +modifier-scope +conjuncted-wg +156967 wrapper-clause-scope +156969 wrapper-scope +modifier-scope +156972 wrapper-clause-scope +156974 modifier-clause-scope +wrapper-clause-scope +156978 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +156983 apposition-group +modifier-scope +156986 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +156991 wrapper-clause-scope +156994 modifier-scope +conjuncted-wg +156997 modifier-scope +conjuncted-wg +157000 modifier-scope +conjuncted-wg +157003 modifier-scope +modifier-scope +conjuncted-wg +157007 conjuncted-wg +157009 modifier-scope +modifier-scope +157012 wrapper-clause-scope +group +group +157016 wrapper-clause-scope +157018 modifier-scope +modifier-scope +modifier-scope +157022 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +157027 wrapper-clause-scope +157029 wrapper-scope +157031 wrapper-clause-scope +157033 conjuncted-wg +wrapper-clause-scope +wrapper-clause-scope +157037 modifier-scope +modifier-scope +157040 wrapper-clause-scope +group +157043 wrapper-scope +modifier-scope +157046 modifier-scope +157048 wrapper-clause-scope +157054 wrapper-clause-scope +157059 wrapper-clause-scope +157062 modifier-scope +157064 group +157068 wrapper-clause-scope +157070 modifier-scope +modifier-scope +157073 wrapper-clause-scope +157075 modifier-scope +157079 conjuncted-wg +group +157084 modifier-scope +conjuncted-wg +157087 modifier-clause-scope +apposition-group +157090 wrapper-scope +modifier-scope +157093 wrapper-clause-scope +group +157096 wrapper-scope +157100 conjuncted-wg +157104 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +157114 wrapper-clause-scope +157117 modifier-scope +157121 wrapper-clause-scope +157123 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +157129 conjuncted-wg +157131 modifier-scope +modifier-scope +157134 wrapper-clause-scope +157137 modifier-scope +modifier-clause-scope +modifier-scope +wrapper-scope +157142 wrapper-scope +conjuncted-wg +157148 conjuncted-wg +157150 conjuncted-wg +157152 group +157155 conjuncted-wg +157157 conjuncted-wg +157159 group +157161 modifier-scope +modifier-scope +157164 conjuncted-wg +157167 wrapper-clause-scope +157171 modifier-scope +conjuncted-wg +157174 wrapper-clause-scope +157176 group +wrapper-clause-scope +157180 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +157185 wrapper-clause-scope +157187 wrapper-clause-scope +157190 wrapper-scope +157192 conjuncted-wg +conjuncted-wg +157195 wrapper-scope +157197 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +157204 wrapper-clause-scope +157206 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +157216 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +157222 wrapper-clause-scope +157224 modifier-scope +modifier-scope +group +157228 group +wrapper-clause-scope +157233 wrapper-clause-scope +157235 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +157240 wrapper-clause-scope +157242 modifier-scope +157244 wrapper-scope +modifier-scope +modifier-scope +157248 modifier-scope +modifier-scope +157251 conjuncted-wg +157253 wrapper-clause-scope +157256 modifier-scope +modifier-scope +conjuncted-wg +157260 modifier-scope +157262 wrapper-clause-scope +157265 conjuncted-wg +157268 wrapper-clause-scope +group +157272 modifier-clause-scope +157275 wrapper-clause-scope +157278 modifier-scope +conjuncted-wg +157281 modifier-clause-scope +wrapper-clause-scope +157285 wrapper-clause-scope +157287 wrapper-clause-scope +157289 wrapper-scope +group +modifier-scope +157295 modifier-scope +modifier-scope +conjuncted-wg +157299 modifier-scope +157301 wrapper-clause-scope +157303 modifier-scope +157305 wrapper-scope +157307 wrapper-scope +modifier-scope +157310 wrapper-clause-scope +157313 modifier-scope +157316 wrapper-clause-scope +157319 wrapper-clause-scope +157321 modifier-scope +157325 modifier-scope +conjuncted-wg +157328 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +157333 modifier-scope +modifier-scope +modifier-scope +157337 modifier-scope +157339 wrapper-clause-scope +157341 modifier-scope +modifier-scope +157347 conjuncted-wg +157349 modifier-scope +modifier-scope +157352 wrapper-clause-scope +157354 modifier-scope +157357 conjuncted-wg +157360 modifier-scope +modifier-scope +modifier-scope +157364 wrapper-clause-scope +group +157367 wrapper-scope +modifier-scope +157370 modifier-scope +modifier-scope +157373 wrapper-clause-scope +157375 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +157380 modifier-scope +wrapper-scope +modifier-scope +157384 wrapper-clause-scope +157387 wrapper-clause-scope +157396 wrapper-clause-scope +157405 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +157410 modifier-scope +157412 wrapper-clause-scope +157414 modifier-scope +157416 group +157418 wrapper-clause-scope +157421 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +157426 wrapper-clause-scope +group +157429 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +157436 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +157441 wrapper-scope +modifier-scope +wrapper-clause-scope +modifier-scope +wrapper-clause-scope +157448 wrapper-scope +modifier-scope +modifier-scope +157452 wrapper-clause-scope +157455 group +157458 conjuncted-wg +157460 modifier-scope +modifier-scope +157463 wrapper-scope +157466 wrapper-clause-scope +157468 wrapper-scope +modifier-clause-scope +modifier-scope +modifier-scope +157474 wrapper-clause-scope +157476 modifier-scope +157478 group +wrapper-clause-scope +157482 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +157487 wrapper-clause-scope +157491 wrapper-clause-scope +157494 wrapper-scope +modifier-scope +157497 wrapper-clause-scope +157500 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +157508 wrapper-scope +modifier-scope +157511 wrapper-clause-scope +157514 wrapper-clause-scope +157516 conjuncted-wg +157519 wrapper-scope +modifier-scope +157522 conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +157527 wrapper-clause-scope +157530 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +157538 wrapper-clause-scope +157540 wrapper-scope +modifier-scope +modifier-scope +157544 wrapper-clause-scope +157548 wrapper-scope +conjuncted-wg +157551 wrapper-scope +modifier-scope +modifier-scope +157555 wrapper-clause-scope +157557 modifier-clause-scope +157559 wrapper-scope +157561 wrapper-clause-scope +157563 modifier-scope +157565 modifier-scope +modifier-scope +modifier-scope +group +157572 modifier-scope +modifier-scope +157575 wrapper-clause-scope +157577 modifier-scope +modifier-scope +wrapper-scope +157582 wrapper-clause-scope +157584 modifier-scope +157586 modifier-scope +modifier-scope +157590 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +157600 modifier-scope +modifier-scope +conjuncted-wg +157606 conjuncted-wg +157608 conjuncted-wg +wrapper-clause-scope +157611 wrapper-clause-scope +157613 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +157621 modifier-scope +group +157626 modifier-scope +modifier-scope +conjuncted-wg +157630 wrapper-scope +modifier-scope +modifier-scope +157634 wrapper-clause-scope +157637 wrapper-scope +modifier-scope +modifier-scope +157641 wrapper-clause-scope +157645 modifier-scope +conjuncted-wg +157648 group +modifier-scope +wrapper-clause-scope +157652 modifier-scope +modifier-scope +157655 wrapper-clause-scope +157659 modifier-scope +modifier-clause-scope +modifier-clause-scope +157663 wrapper-scope +modifier-scope +157666 conjuncted-wg +157670 wrapper-clause-scope +157674 wrapper-clause-scope +wrapper-clause-scope +157679 wrapper-scope +modifier-scope +conjuncted-wg +157683 modifier-scope +157685 conjuncted-wg +157688 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +157693 wrapper-clause-scope +157696 modifier-scope +modifier-scope +modifier-scope +157700 wrapper-scope +wrapper-scope +modifier-scope +157704 conjuncted-wg +modifier-scope +modifier-scope +157708 wrapper-clause-scope +157711 group +157713 modifier-scope +wrapper-clause-scope +157717 wrapper-clause-scope +157720 wrapper-clause-scope +group +157727 conjuncted-wg +157730 wrapper-clause-scope +group +157737 modifier-scope +modifier-scope +157742 wrapper-scope +157744 conjuncted-wg +modifier-scope +conjuncted-wg +157748 modifier-scope +modifier-scope +157751 wrapper-clause-scope +157753 modifier-scope +wrapper-clause-scope +157756 modifier-scope +modifier-scope +modifier-scope +157760 wrapper-scope +157762 wrapper-scope +modifier-scope +157765 wrapper-clause-scope +157768 wrapper-clause-scope +157770 wrapper-scope +modifier-scope +conjuncted-wg +157775 wrapper-clause-scope +157777 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +157782 wrapper-clause-scope +157785 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +157791 modifier-scope +157793 wrapper-clause-scope +157795 modifier-scope +wrapper-scope +modifier-scope +157799 wrapper-clause-scope +157801 wrapper-clause-scope +157804 modifier-scope +conjuncted-wg +157807 modifier-scope +conjuncted-wg +157810 modifier-scope +157812 wrapper-clause-scope +157815 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +157823 modifier-scope +157826 wrapper-clause-scope +157829 modifier-scope +modifier-scope +conjuncted-wg +157835 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +157841 wrapper-clause-scope +157845 modifier-scope +conjuncted-wg +157848 modifier-scope +modifier-scope +157851 wrapper-clause-scope +157853 modifier-clause-scope +157855 modifier-scope +157857 modifier-scope +modifier-scope +modifier-scope +modifier-scope +157862 wrapper-clause-scope +157864 wrapper-scope +group +wrapper-clause-scope +157868 modifier-scope +modifier-scope +157872 wrapper-clause-scope +157874 modifier-scope +157877 conjuncted-wg +157879 group +157883 modifier-scope +modifier-scope +157886 wrapper-clause-scope +157888 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +157893 wrapper-clause-scope +157895 modifier-scope +157898 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +157906 modifier-scope +conjuncted-wg +157909 modifier-scope +group +157912 wrapper-clause-scope +group +157915 modifier-scope +157918 wrapper-clause-scope +157921 wrapper-clause-scope +157923 wrapper-clause-scope +157925 modifier-scope +157928 modifier-scope +modifier-scope +conjuncted-wg +157932 modifier-scope +157934 wrapper-clause-scope +157936 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +157943 wrapper-clause-scope +group +157946 modifier-scope +157948 modifier-scope +157951 conjuncted-wg +157955 modifier-scope +157957 wrapper-clause-scope +group +157960 wrapper-scope +modifier-scope +157964 modifier-scope +conjuncted-wg +157967 modifier-scope +157969 wrapper-clause-scope +157974 group +157979 modifier-scope +modifier-scope +157983 wrapper-scope +modifier-scope +modifier-scope +157987 wrapper-clause-scope +157989 modifier-scope +modifier-scope +157992 wrapper-clause-scope +157994 modifier-scope +157999 wrapper-clause-scope +158002 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +158007 wrapper-clause-scope +group +158011 modifier-clause-scope +158014 wrapper-clause-scope +group +158017 modifier-scope +158019 modifier-scope +158021 wrapper-clause-scope +158023 modifier-scope +158026 wrapper-scope +modifier-scope +158029 wrapper-clause-scope +158031 modifier-scope +158033 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +158039 wrapper-clause-scope +158041 modifier-scope +158043 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +158049 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +158054 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +158060 modifier-scope +conjuncted-wg +modifier-scope +158064 wrapper-clause-scope +158067 modifier-scope +wrapper-scope +wrapper-clause-scope +group +158072 wrapper-scope +158074 conjuncted-wg +wrapper-clause-scope +158077 modifier-clause-scope +158081 modifier-scope +modifier-scope +158084 conjuncted-wg +158086 modifier-scope +conjuncted-wg +158089 modifier-scope +158091 wrapper-clause-scope +158093 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +158098 wrapper-scope +modifier-scope +modifier-scope +158102 wrapper-clause-scope +158105 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +158113 conjuncted-wg +158116 modifier-scope +conjuncted-wg +modifier-scope +158120 wrapper-clause-scope +158122 modifier-scope +modifier-scope +modifier-scope +modifier-scope +158129 group +wrapper-clause-scope +158132 conjuncted-wg +158135 group +modifier-scope +modifier-scope +conjuncted-wg +group +158141 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +158149 conjuncted-wg +158151 conjuncted-wg +group +modifier-scope +158155 group +modifier-scope +modifier-scope +conjuncted-wg +158160 group +modifier-scope +conjuncted-wg +group +group +modifier-scope +wrapper-clause-scope +158170 modifier-scope +modifier-scope +modifier-scope +158177 wrapper-scope +modifier-scope +conjuncted-wg +158181 wrapper-scope +modifier-scope +158184 wrapper-clause-scope +158186 wrapper-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +158192 modifier-scope +158194 wrapper-clause-scope +158198 wrapper-clause-scope +158200 modifier-scope +modifier-scope +modifier-scope +158204 group +158211 group +158215 group +158218 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +158225 modifier-scope +wrapper-scope +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +158232 wrapper-clause-scope +158234 modifier-scope +modifier-scope +modifier-scope +158238 wrapper-clause-scope +group +wrapper-clause-scope +158242 wrapper-scope +modifier-scope +158245 conjuncted-wg +158248 wrapper-scope +158250 group +158252 wrapper-clause-scope +wrapper-clause-scope +158256 wrapper-clause-scope +158259 wrapper-scope +modifier-scope +158262 wrapper-clause-scope +158264 conjuncted-wg +158266 wrapper-clause-scope +158268 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +158274 wrapper-clause-scope +158276 modifier-scope +modifier-scope +wrapper-scope +158280 wrapper-clause-scope +group +wrapper-clause-scope +158285 conjuncted-wg +158287 modifier-scope +modifier-scope +158291 wrapper-scope +modifier-scope +158294 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +158302 group +wrapper-clause-scope +158307 modifier-scope +158309 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +158314 modifier-scope +modifier-scope +158318 wrapper-clause-scope +158320 wrapper-scope +modifier-scope +158323 wrapper-clause-scope +158326 wrapper-clause-scope +158328 modifier-scope +conjuncted-wg +group +158332 wrapper-clause-scope +158334 modifier-scope +158336 wrapper-clause-scope +158338 wrapper-scope +modifier-scope +158341 wrapper-clause-scope +158344 wrapper-scope +conjuncted-wg +158347 wrapper-scope +modifier-scope +modifier-scope +158351 wrapper-clause-scope +158353 modifier-scope +wrapper-scope +158356 conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +158361 conjuncted-wg +modifier-scope +158364 wrapper-clause-scope +group +wrapper-clause-scope +158368 group +158372 conjuncted-wg +158375 wrapper-clause-scope +158377 wrapper-scope +modifier-scope +modifier-scope +158382 wrapper-clause-scope +group +158385 wrapper-clause-scope +158388 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +158394 wrapper-scope +158396 wrapper-clause-scope +158400 wrapper-scope +conjuncted-wg +158403 conjuncted-wg +158406 wrapper-scope +conjuncted-wg +158410 wrapper-clause-scope +158412 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +158418 wrapper-clause-scope +158421 wrapper-clause-scope +158423 wrapper-scope +158425 wrapper-clause-scope +158427 wrapper-clause-scope +158429 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +158435 wrapper-clause-scope +group +wrapper-clause-scope +158439 group +158441 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +158447 modifier-scope +modifier-scope +modifier-scope +158453 wrapper-scope +modifier-scope +conjuncted-wg +158457 wrapper-scope +modifier-scope +modifier-scope +158463 modifier-scope +wrapper-clause-scope +158466 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +158471 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +158476 group +wrapper-clause-scope +158479 modifier-scope +158481 modifier-scope +modifier-scope +modifier-scope +158485 wrapper-clause-scope +158488 wrapper-clause-scope +158491 apposition-group +158494 conjuncted-wg +apposition-group +158500 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +158505 wrapper-clause-scope +158508 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +158513 wrapper-clause-scope +158515 wrapper-scope +wrapper-clause-scope +158519 modifier-scope +conjuncted-wg +158523 modifier-scope +158525 wrapper-clause-scope +158527 wrapper-clause-scope +158531 conjuncted-wg +conjuncted-wg +wrapper-scope +158535 wrapper-clause-scope +158537 modifier-scope +158539 wrapper-clause-scope +158541 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +158549 wrapper-clause-scope +158551 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +158559 wrapper-clause-scope +158563 modifier-scope +158565 wrapper-clause-scope +158568 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +158581 wrapper-clause-scope +group +wrapper-clause-scope +158585 wrapper-scope +modifier-scope +158588 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +158597 wrapper-clause-scope +158600 wrapper-scope +modifier-scope +158603 group +158608 wrapper-clause-scope +158613 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +158618 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +158623 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +158628 modifier-scope +modifier-scope +modifier-scope +modifier-scope +158634 wrapper-clause-scope +158637 conjuncted-wg +wrapper-scope +158640 wrapper-clause-scope +158642 wrapper-clause-scope +158645 conjuncted-wg +wrapper-scope +158648 wrapper-clause-scope +158652 modifier-scope +modifier-scope +conjuncted-wg +158656 wrapper-scope +158660 wrapper-clause-scope +158662 modifier-scope +modifier-scope +conjuncted-wg +158666 wrapper-clause-scope +158668 modifier-scope +modifier-scope +wrapper-scope +158674 wrapper-clause-scope +158676 conjuncted-wg +158678 wrapper-clause-scope +158680 wrapper-clause-scope +158685 wrapper-clause-scope +158687 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +158692 wrapper-clause-scope +158694 wrapper-scope +modifier-scope +modifier-scope +158698 wrapper-clause-scope +group +wrapper-clause-scope +158702 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-clause-scope +158712 modifier-scope +modifier-scope +modifier-scope +158716 wrapper-clause-scope +wrapper-clause-scope +158719 group +wrapper-clause-scope +158722 modifier-scope +158724 modifier-scope +modifier-scope +modifier-scope +158728 wrapper-clause-scope +158731 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +158736 wrapper-clause-scope +158738 modifier-scope +158740 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +158746 wrapper-scope +modifier-scope +modifier-scope +158751 wrapper-clause-scope +158753 conjuncted-wg +158756 wrapper-clause-scope +158759 modifier-scope +158764 conjuncted-wg +158768 conjuncted-wg +158771 conjuncted-wg +158773 conjuncted-wg +158775 conjuncted-wg +158778 wrapper-clause-scope +158780 wrapper-clause-scope +158782 wrapper-scope +158784 wrapper-clause-scope +group +158788 modifier-scope +158790 modifier-scope +wrapper-scope +group +158795 wrapper-scope +modifier-scope +158798 modifier-clause-scope +158800 wrapper-scope +158802 wrapper-clause-scope +158806 modifier-clause-scope +158808 wrapper-scope +158811 wrapper-clause-scope +158813 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +158819 wrapper-clause-scope +group +158824 group +158827 wrapper-clause-scope +158829 modifier-scope +158833 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +158839 modifier-scope +modifier-scope +wrapper-scope +158843 group +wrapper-clause-scope +158848 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +158855 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +158862 wrapper-clause-scope +158865 group +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +158878 wrapper-clause-scope +158880 modifier-scope +158882 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +158887 wrapper-clause-scope +group +wrapper-clause-scope +158893 group +wrapper-clause-scope +158899 wrapper-clause-scope +158902 wrapper-clause-scope +158904 modifier-scope +modifier-scope +158908 apposition-group +modifier-clause-scope +158911 wrapper-scope +modifier-scope +158916 modifier-scope +158919 conjuncted-wg +158923 conjuncted-wg +158926 wrapper-clause-scope +158931 conjuncted-wg +conjuncted-wg +conjuncted-wg +158939 modifier-scope +modifier-scope +modifier-scope +158944 conjuncted-wg +158946 conjuncted-wg +158948 group +158951 group +group +158954 conjuncted-wg +modifier-scope +158957 conjuncted-wg +158959 wrapper-clause-scope +158961 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +158968 modifier-clause-scope +apposition-group +158971 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +158983 wrapper-clause-scope +158985 wrapper-clause-scope +158987 wrapper-scope +158989 conjuncted-wg +group +modifier-scope +wrapper-clause-scope +158994 wrapper-scope +158996 wrapper-scope +158998 conjuncted-wg +159000 wrapper-clause-scope +159005 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +159011 wrapper-clause-scope +159015 wrapper-scope +159018 wrapper-scope +159020 wrapper-clause-scope +159022 wrapper-clause-scope +159024 wrapper-scope +group +modifier-scope +wrapper-clause-scope +159029 wrapper-scope +159031 wrapper-scope +modifier-scope +159034 wrapper-clause-scope +159036 wrapper-clause-scope +159039 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +159046 wrapper-scope +modifier-scope +modifier-scope +159050 modifier-scope +group +159054 group +modifier-scope +159057 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +159063 wrapper-scope +159065 conjuncted-wg +conjuncted-wg +159069 group +group +159073 modifier-scope +wrapper-clause-scope +159076 wrapper-scope +159080 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159086 modifier-scope +wrapper-clause-scope +159089 modifier-scope +conjuncted-wg +159092 modifier-scope +wrapper-clause-scope +159096 modifier-scope +conjuncted-wg +wrapper-clause-scope +159101 modifier-scope +159103 group +159105 wrapper-scope +159107 modifier-clause-scope +wrapper-clause-scope +159111 conjuncted-wg +159117 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +159122 wrapper-scope +wrapper-clause-scope +159127 conjuncted-wg +modifier-scope +conjuncted-wg +159131 modifier-scope +modifier-scope +159134 wrapper-clause-scope +159137 modifier-scope +modifier-scope +conjuncted-wg +159141 modifier-scope +modifier-scope +159145 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +159153 wrapper-clause-scope +159156 modifier-scope +modifier-scope +conjuncted-wg +159162 conjuncted-wg +159165 wrapper-clause-scope +159167 modifier-scope +159170 modifier-scope +modifier-scope +159174 wrapper-scope +159176 wrapper-clause-scope +159178 wrapper-clause-scope +159180 group +159182 wrapper-clause-scope +159185 conjuncted-wg +159187 modifier-scope +wrapper-scope +wrapper-clause-scope +159192 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +159198 modifier-scope +modifier-scope +modifier-scope +159205 wrapper-scope +conjuncted-wg +159208 modifier-scope +wrapper-scope +159211 modifier-scope +159213 wrapper-clause-scope +wrapper-clause-scope +159216 wrapper-scope +modifier-scope +wrapper-clause-scope +159221 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159229 wrapper-clause-scope +159231 wrapper-clause-scope +159233 modifier-scope +modifier-scope +159236 wrapper-clause-scope +group +wrapper-clause-scope +159243 conjuncted-wg +159245 wrapper-clause-scope +159247 modifier-scope +159249 wrapper-clause-scope +159251 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +159257 wrapper-clause-scope +159260 wrapper-scope +modifier-scope +modifier-scope +159264 wrapper-clause-scope +159267 modifier-clause-scope +159270 wrapper-clause-scope +159273 wrapper-clause-scope +159276 modifier-scope +wrapper-clause-scope +159280 wrapper-clause-scope +159283 wrapper-scope +apposition-group +159287 modifier-scope +conjuncted-wg +159290 wrapper-clause-scope +159292 modifier-scope +wrapper-scope +159296 conjuncted-wg +159299 wrapper-clause-scope +159302 wrapper-clause-scope +159305 modifier-scope +159308 modifier-scope +159310 modifier-scope +modifier-scope +159313 wrapper-clause-scope +159316 conjuncted-wg +159318 wrapper-clause-scope +159320 modifier-scope +159322 wrapper-clause-scope +159325 modifier-scope +wrapper-scope +wrapper-clause-scope +159330 wrapper-clause-scope +159332 modifier-scope +159335 wrapper-clause-scope +159338 conjuncted-wg +159341 modifier-scope +conjuncted-wg +159344 wrapper-clause-scope +159347 wrapper-clause-scope +159349 wrapper-clause-scope +159351 wrapper-scope +group +modifier-scope +159357 group +modifier-clause-scope +apposition-group +modifier-scope +159362 modifier-clause-scope +apposition-group +modifier-scope +159366 modifier-scope +modifier-scope +159371 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +159376 modifier-scope +159380 conjuncted-wg +159382 conjuncted-wg +159384 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159391 modifier-clause-scope +159393 conjuncted-wg +159395 modifier-clause-scope +159397 wrapper-clause-scope +wrapper-clause-scope +159400 wrapper-scope +modifier-scope +159403 wrapper-clause-scope +159405 modifier-scope +modifier-scope +159409 modifier-clause-scope +159412 conjuncted-wg +159414 wrapper-clause-scope +159416 wrapper-clause-scope +159418 modifier-scope +159420 conjuncted-wg +159422 wrapper-clause-scope +159425 modifier-scope +modifier-scope +conjuncted-wg +159429 wrapper-clause-scope +159431 modifier-scope +modifier-scope +159434 wrapper-clause-scope +159436 modifier-scope +159438 group +159440 modifier-scope +wrapper-clause-scope +159443 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +159449 wrapper-clause-scope +159452 modifier-scope +modifier-scope +159456 modifier-clause-scope +modifier-clause-scope +159459 wrapper-scope +conjuncted-wg +159462 modifier-clause-scope +modifier-clause-scope +159465 conjuncted-wg +159467 wrapper-scope +159469 wrapper-clause-scope +159471 wrapper-clause-scope +159473 modifier-scope +modifier-scope +wrapper-scope +159477 wrapper-clause-scope +159479 modifier-scope +modifier-scope +159482 wrapper-clause-scope +159484 wrapper-clause-scope +159486 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +159493 wrapper-scope +modifier-scope +159496 wrapper-clause-scope +159498 wrapper-clause-scope +159500 wrapper-scope +modifier-scope +modifier-scope +159504 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159509 wrapper-clause-scope +group +159514 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +159520 modifier-scope +modifier-scope +wrapper-clause-scope +159524 modifier-scope +159526 wrapper-clause-scope +159528 modifier-scope +modifier-scope +159533 wrapper-clause-scope +159535 wrapper-scope +wrapper-scope +conjuncted-wg +159539 wrapper-clause-scope +159541 wrapper-scope +159544 wrapper-scope +159547 modifier-scope +159549 conjuncted-wg +modifier-scope +conjuncted-wg +159553 modifier-scope +modifier-scope +modifier-scope +159557 wrapper-clause-scope +group +wrapper-clause-scope +159561 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159567 wrapper-clause-scope +group +wrapper-clause-scope +159571 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159577 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +159587 conjuncted-wg +159590 modifier-scope +conjuncted-wg +159593 modifier-scope +modifier-scope +conjuncted-wg +159598 modifier-scope +conjuncted-wg +159601 modifier-scope +modifier-scope +159604 wrapper-clause-scope +159606 wrapper-scope +modifier-scope +modifier-scope +159612 modifier-scope +159616 wrapper-clause-scope +159618 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +159626 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159633 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +159639 wrapper-clause-scope +159641 wrapper-clause-scope +159644 modifier-clause-scope +apposition-group +modifier-scope +159648 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +159653 wrapper-clause-scope +159656 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159661 wrapper-scope +modifier-scope +modifier-scope +159666 modifier-scope +modifier-scope +159669 conjuncted-wg +159674 wrapper-scope +159676 wrapper-clause-scope +159682 modifier-scope +conjuncted-wg +conjuncted-wg +159686 wrapper-clause-scope +159688 modifier-scope +modifier-scope +group +modifier-scope +159693 wrapper-clause-scope +159695 wrapper-clause-scope +159697 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159702 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159713 modifier-scope +conjuncted-wg +modifier-scope +159718 group +159721 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159729 wrapper-clause-scope +159731 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159736 modifier-scope +159739 group +159742 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +159750 wrapper-clause-scope +159752 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159757 modifier-scope +modifier-scope +conjuncted-wg +159761 modifier-scope +159763 wrapper-clause-scope +159765 wrapper-clause-scope +159767 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +159772 wrapper-scope +modifier-scope +159775 conjuncted-wg +159779 group +159781 wrapper-scope +modifier-scope +modifier-scope +159786 wrapper-clause-scope +159791 conjuncted-wg +159793 conjuncted-wg +159799 conjuncted-wg +159801 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +159809 conjuncted-wg +159811 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +159818 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +159826 modifier-scope +159828 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +159835 wrapper-clause-scope +159840 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +159847 conjuncted-wg +159850 wrapper-clause-scope +159854 modifier-scope +modifier-scope +conjuncted-wg +159858 modifier-scope +modifier-scope +159861 wrapper-clause-scope +159864 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +159873 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +159879 wrapper-clause-scope +159881 wrapper-clause-scope +159883 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +159892 conjuncted-wg +conjuncted-wg +159896 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +159901 modifier-scope +wrapper-scope +modifier-scope +159905 wrapper-clause-scope +159908 wrapper-scope +modifier-scope +wrapper-clause-scope +159913 wrapper-scope +conjuncted-wg +159916 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +159921 wrapper-clause-scope +159923 wrapper-scope +159926 wrapper-clause-scope +159928 wrapper-clause-scope +159931 wrapper-clause-scope +159934 wrapper-scope +wrapper-clause-scope +159937 conjuncted-wg +159940 wrapper-scope +modifier-scope +conjuncted-wg +159945 modifier-scope +conjuncted-wg +159948 group +159950 wrapper-scope +modifier-scope +159953 modifier-scope +conjuncted-wg +159957 wrapper-scope +wrapper-clause-scope +159960 modifier-scope +conjuncted-wg +159963 group +159966 conjuncted-wg +159968 wrapper-scope +wrapper-clause-scope +159971 conjuncted-wg +159974 wrapper-scope +modifier-scope +conjuncted-wg +159979 modifier-scope +conjuncted-wg +159982 conjuncted-wg +159985 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +159993 conjuncted-wg +159995 conjuncted-wg +159997 conjuncted-wg +160001 wrapper-clause-scope +160004 wrapper-clause-scope +160007 modifier-scope +160009 wrapper-scope +wrapper-scope +160012 wrapper-clause-scope +160015 wrapper-clause-scope +160019 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160027 wrapper-clause-scope +160032 conjuncted-wg +160034 conjuncted-wg +group +160038 modifier-clause-scope +160040 wrapper-scope +160043 wrapper-scope +wrapper-scope +wrapper-clause-scope +160049 conjuncted-wg +160053 conjuncted-wg +160055 wrapper-clause-scope +160057 group +modifier-scope +modifier-scope +wrapper-clause-scope +160065 conjuncted-wg +160067 modifier-scope +conjuncted-wg +160072 conjuncted-wg +160074 modifier-scope +160076 wrapper-clause-scope +group +160080 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160086 modifier-scope +conjuncted-wg +160089 modifier-scope +modifier-scope +160094 modifier-scope +conjuncted-wg +160097 modifier-scope +conjuncted-wg +160100 modifier-scope +conjuncted-wg +160103 conjuncted-wg +160106 wrapper-clause-scope +160108 group +160110 modifier-scope +modifier-scope +wrapper-clause-scope +160114 conjuncted-wg +group +160117 modifier-scope +modifier-scope +wrapper-clause-scope +160122 wrapper-clause-scope +160125 wrapper-clause-scope +160129 modifier-scope +160131 conjuncted-wg +160134 conjuncted-wg +160136 conjuncted-wg +160140 conjuncted-wg +160143 wrapper-clause-scope +160145 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +160150 group +160153 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160160 modifier-scope +conjuncted-wg +160163 wrapper-clause-scope +160165 wrapper-scope +modifier-scope +modifier-scope +160170 wrapper-clause-scope +160172 wrapper-scope +modifier-scope +160175 wrapper-clause-scope +160178 wrapper-clause-scope +160180 wrapper-scope +modifier-scope +wrapper-clause-scope +160185 modifier-scope +conjuncted-wg +160188 wrapper-scope +160190 wrapper-clause-scope +160194 wrapper-scope +conjuncted-wg +160197 conjuncted-wg +160201 conjuncted-wg +wrapper-scope +modifier-scope +160205 wrapper-clause-scope +160208 wrapper-clause-scope +160210 wrapper-scope +modifier-scope +160213 wrapper-clause-scope +160215 modifier-scope +conjuncted-wg +160219 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160230 wrapper-clause-scope +160233 wrapper-clause-scope +160235 wrapper-scope +modifier-scope +modifier-scope +apposition-group +wrapper-clause-scope +160242 modifier-scope +conjuncted-wg +160245 wrapper-clause-scope +160248 conjuncted-wg +160250 conjuncted-wg +160252 conjuncted-wg +160254 conjuncted-wg +160258 modifier-scope +160261 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +160266 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +160271 wrapper-clause-scope +160274 wrapper-scope +wrapper-clause-scope +160277 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160282 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +160288 wrapper-clause-scope +160290 wrapper-clause-scope +160293 modifier-scope +conjuncted-wg +160296 modifier-scope +modifier-scope +160299 wrapper-clause-scope +160302 modifier-scope +modifier-scope +modifier-scope +160308 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +160313 wrapper-clause-scope +160316 wrapper-clause-scope +160319 modifier-scope +160321 wrapper-clause-scope +160323 modifier-scope +wrapper-clause-scope +group +160330 wrapper-clause-scope +160332 group +160336 modifier-scope +wrapper-scope +modifier-scope +160342 wrapper-scope +modifier-scope +160345 wrapper-clause-scope +160347 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +160354 modifier-scope +conjuncted-wg +160357 wrapper-scope +wrapper-scope +wrapper-clause-scope +160361 conjuncted-wg +160363 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +160369 modifier-scope +160372 modifier-scope +modifier-scope +modifier-scope +apposition-group +modifier-scope +160379 wrapper-scope +modifier-scope +modifier-scope +160384 conjuncted-wg +160386 modifier-scope +modifier-scope +conjuncted-wg +160390 wrapper-clause-scope +160393 modifier-scope +conjuncted-wg +160396 wrapper-clause-scope +160399 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160404 wrapper-scope +modifier-scope +modifier-scope +160409 modifier-scope +160412 modifier-scope +modifier-scope +modifier-scope +apposition-group +160418 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +160426 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +160432 wrapper-scope +wrapper-clause-scope +160435 wrapper-clause-scope +160437 wrapper-scope +modifier-scope +160441 wrapper-scope +modifier-scope +modifier-scope +160446 wrapper-scope +160450 modifier-scope +wrapper-scope +modifier-scope +160454 wrapper-clause-scope +160456 modifier-scope +modifier-scope +160460 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +160466 wrapper-clause-scope +160470 wrapper-clause-scope +160472 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +160478 wrapper-clause-scope +160480 modifier-scope +modifier-scope +160483 wrapper-clause-scope +160486 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +160492 wrapper-clause-scope +160495 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160501 group +modifier-scope +wrapper-clause-scope +160505 modifier-scope +160507 wrapper-clause-scope +160510 modifier-scope +modifier-scope +conjuncted-wg +160514 modifier-scope +160516 wrapper-clause-scope +160518 wrapper-clause-scope +160521 modifier-scope +conjuncted-wg +160524 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +160531 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160539 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +160544 modifier-scope +conjuncted-wg +wrapper-clause-scope +160548 modifier-scope +conjuncted-wg +160551 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +160558 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +160565 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +160573 modifier-scope +160576 wrapper-clause-scope +160580 modifier-scope +modifier-scope +modifier-scope +apposition-group +modifier-clause-scope +160586 wrapper-scope +modifier-scope +160591 conjuncted-wg +160593 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +160599 conjuncted-wg +160601 modifier-scope +modifier-scope +160605 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +160610 modifier-scope +160612 wrapper-clause-scope +160616 modifier-scope +modifier-scope +160619 modifier-clause-scope +160621 conjuncted-wg +160625 modifier-scope +modifier-scope +modifier-scope +apposition-group +modifier-clause-scope +160632 wrapper-scope +modifier-scope +conjuncted-wg +160636 wrapper-scope +modifier-scope +160642 wrapper-clause-scope +160644 wrapper-scope +modifier-scope +conjuncted-wg +160648 modifier-scope +wrapper-scope +conjuncted-wg +160652 modifier-scope +160655 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +160662 modifier-scope +conjuncted-wg +160666 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +160672 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +160679 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +160686 modifier-scope +160691 wrapper-clause-scope +160694 wrapper-scope +modifier-clause-scope +modifier-clause-scope +160698 modifier-scope +modifier-scope +modifier-scope +apposition-group +group +160704 wrapper-scope +modifier-scope +modifier-scope +160708 conjuncted-wg +160710 wrapper-clause-scope +wrapper-clause-scope +160713 group +wrapper-clause-scope +160716 modifier-scope +modifier-scope +modifier-scope +160721 wrapper-clause-scope +160724 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +160733 conjuncted-wg +160737 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +160742 wrapper-clause-scope +160744 modifier-scope +modifier-scope +modifier-scope +160748 wrapper-clause-scope +160751 modifier-scope +modifier-scope +conjuncted-wg +160755 modifier-scope +modifier-scope +160758 conjuncted-wg +conjuncted-wg +conjuncted-wg +160762 wrapper-clause-scope +160765 modifier-scope +modifier-scope +160768 wrapper-scope +160770 wrapper-clause-scope +160772 modifier-scope +160774 wrapper-clause-scope +160776 wrapper-scope +160778 wrapper-clause-scope +160780 modifier-scope +group +160783 wrapper-clause-scope +160786 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +160793 wrapper-clause-scope +160795 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +160802 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160811 modifier-scope +modifier-scope +group +160815 group +modifier-scope +160819 wrapper-scope +modifier-scope +conjuncted-wg +160823 wrapper-scope +modifier-scope +wrapper-scope +160827 wrapper-clause-scope +160830 modifier-scope +160832 modifier-scope +conjuncted-wg +160835 wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +160844 wrapper-clause-scope +160846 modifier-scope +160850 wrapper-clause-scope +group +160855 modifier-scope +wrapper-clause-scope +160858 wrapper-scope +160860 wrapper-clause-scope +group +160863 group +160865 modifier-scope +modifier-scope +160868 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +160875 modifier-scope +wrapper-clause-scope +160878 wrapper-scope +160880 wrapper-clause-scope +160883 wrapper-clause-scope +160886 wrapper-scope +modifier-scope +modifier-scope +160890 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +160896 wrapper-clause-scope +160900 modifier-scope +wrapper-scope +160903 modifier-scope +conjuncted-wg +wrapper-clause-scope +160908 conjuncted-wg +160911 wrapper-scope +modifier-scope +160914 wrapper-clause-scope +160917 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +160922 modifier-scope +conjuncted-wg +160925 modifier-scope +modifier-scope +160928 wrapper-clause-scope +160932 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +160937 conjuncted-wg +160940 modifier-scope +160942 wrapper-clause-scope +160945 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +160951 wrapper-clause-scope +160954 modifier-scope +wrapper-scope +modifier-scope +160958 wrapper-clause-scope +160962 modifier-scope +conjuncted-wg +160966 wrapper-scope +conjuncted-wg +160969 modifier-scope +modifier-scope +160972 wrapper-clause-scope +group +160976 modifier-scope +160978 group +160981 modifier-scope +conjuncted-wg +160984 modifier-scope +wrapper-clause-scope +160987 modifier-scope +wrapper-clause-scope +160991 wrapper-scope +modifier-scope +160994 wrapper-clause-scope +160996 modifier-scope +group +161003 wrapper-clause-scope +161005 group +161007 wrapper-clause-scope +161010 modifier-scope +conjuncted-wg +modifier-scope +161014 wrapper-clause-scope +161018 wrapper-clause-scope +161023 modifier-scope +wrapper-scope +modifier-scope +161028 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +161034 wrapper-scope +modifier-scope +conjuncted-wg +161040 modifier-scope +modifier-scope +conjuncted-wg +161044 modifier-scope +modifier-scope +161047 wrapper-clause-scope +161051 conjuncted-wg +161053 conjuncted-wg +161055 group +modifier-clause-scope +modifier-clause-scope +161059 modifier-scope +modifier-scope +modifier-scope +161063 wrapper-clause-scope +161065 wrapper-clause-scope +161067 modifier-scope +modifier-scope +wrapper-scope +161071 conjuncted-wg +161073 wrapper-clause-scope +161077 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +161082 wrapper-scope +modifier-scope +wrapper-scope +161086 modifier-scope +161088 wrapper-clause-scope +161091 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +161097 wrapper-clause-scope +group +161102 wrapper-clause-scope +group +161105 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +161110 wrapper-scope +modifier-scope +wrapper-clause-scope +161114 modifier-scope +161116 wrapper-clause-scope +161118 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +161123 wrapper-scope +modifier-scope +161126 wrapper-clause-scope +161129 modifier-scope +161132 wrapper-scope +modifier-scope +161135 wrapper-clause-scope +161137 conjuncted-wg +161139 wrapper-scope +modifier-scope +161142 wrapper-clause-scope +161144 modifier-scope +161146 group +group +161152 wrapper-clause-scope +161155 modifier-scope +161158 wrapper-clause-scope +161162 wrapper-scope +wrapper-scope +modifier-scope +161166 wrapper-clause-scope +161170 wrapper-clause-scope +161174 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +161180 wrapper-scope +modifier-scope +161183 wrapper-clause-scope +161187 modifier-scope +conjuncted-wg +161196 wrapper-clause-scope +161199 modifier-scope +161201 modifier-scope +conjuncted-wg +161206 wrapper-scope +161208 wrapper-clause-scope +group +161211 wrapper-scope +modifier-scope +161214 modifier-scope +161216 wrapper-clause-scope +161218 modifier-scope +wrapper-scope +modifier-scope +161223 modifier-scope +161225 wrapper-clause-scope +161228 wrapper-scope +modifier-scope +wrapper-scope +161232 wrapper-clause-scope +161237 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161247 modifier-clause-scope +wrapper-clause-scope +161250 conjuncted-wg +161252 wrapper-clause-scope +161254 modifier-scope +modifier-scope +modifier-scope +modifier-scope +161259 wrapper-clause-scope +161264 modifier-scope +wrapper-scope +161267 conjuncted-wg +161270 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +161277 wrapper-clause-scope +161279 modifier-scope +wrapper-clause-scope +161283 wrapper-clause-scope +161287 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +161296 wrapper-clause-scope +161298 modifier-scope +161302 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +161307 wrapper-clause-scope +161310 conjuncted-wg +161312 wrapper-clause-scope +161315 wrapper-clause-scope +161319 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +161324 wrapper-scope +modifier-scope +161327 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +161333 wrapper-clause-scope +161335 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +161344 wrapper-scope +161348 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161353 modifier-scope +modifier-scope +wrapper-scope +161357 wrapper-clause-scope +161360 modifier-scope +161362 wrapper-clause-scope +161365 modifier-scope +group +161369 conjuncted-wg +161371 group +161373 wrapper-clause-scope +161375 wrapper-scope +modifier-scope +modifier-scope +161380 wrapper-clause-scope +161382 wrapper-scope +modifier-scope +modifier-scope +161388 modifier-scope +161390 wrapper-clause-scope +161392 modifier-scope +161394 modifier-scope +161396 wrapper-clause-scope +161400 modifier-clause-scope +apposition-group +161403 modifier-scope +modifier-scope +modifier-scope +modifier-scope +161411 modifier-scope +modifier-scope +161414 wrapper-clause-scope +161416 wrapper-clause-scope +161418 wrapper-scope +161420 wrapper-clause-scope +161423 modifier-scope +161425 modifier-scope +161427 wrapper-clause-scope +161430 modifier-scope +161432 wrapper-clause-scope +161434 wrapper-clause-scope +161437 modifier-clause-scope +wrapper-clause-scope +161440 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +161446 wrapper-scope +161448 wrapper-clause-scope +group +161451 wrapper-clause-scope +161453 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +161458 modifier-scope +161460 wrapper-clause-scope +161462 wrapper-scope +modifier-scope +group +modifier-scope +161469 wrapper-clause-scope +161471 modifier-scope +conjuncted-wg +161474 wrapper-clause-scope +161476 modifier-scope +modifier-scope +161479 wrapper-clause-scope +161482 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +161487 conjuncted-wg +161489 wrapper-clause-scope +161491 modifier-scope +161493 wrapper-scope +modifier-scope +modifier-scope +161497 group +161500 group +modifier-scope +161503 modifier-scope +modifier-scope +161506 wrapper-clause-scope +161509 wrapper-clause-scope +161512 modifier-scope +modifier-scope +161515 group +161517 wrapper-clause-scope +161519 wrapper-scope +161521 wrapper-clause-scope +161524 group +161526 wrapper-clause-scope +161528 wrapper-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +161534 modifier-scope +161536 wrapper-clause-scope +161543 wrapper-clause-scope +161549 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161554 modifier-scope +161556 wrapper-clause-scope +161558 group +161561 wrapper-clause-scope +161563 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +161570 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +161578 modifier-scope +group +161583 modifier-scope +modifier-scope +group +161587 wrapper-clause-scope +161590 wrapper-clause-scope +161592 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +161598 wrapper-clause-scope +161602 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161610 wrapper-scope +modifier-scope +161613 wrapper-clause-scope +161617 modifier-scope +161619 wrapper-scope +161621 conjuncted-wg +modifier-scope +conjuncted-wg +161625 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +161630 wrapper-clause-scope +161632 modifier-scope +161637 conjuncted-wg +161639 conjuncted-wg +161642 wrapper-clause-scope +161644 modifier-scope +modifier-scope +161647 wrapper-clause-scope +161649 modifier-scope +161651 modifier-scope +modifier-scope +161654 group +161656 wrapper-scope +modifier-scope +wrapper-clause-scope +161661 modifier-scope +conjuncted-wg +161665 conjuncted-wg +161668 modifier-scope +161670 wrapper-scope +modifier-scope +161673 wrapper-clause-scope +161675 modifier-scope +161677 wrapper-scope +modifier-scope +wrapper-clause-scope +161681 modifier-scope +161683 wrapper-clause-scope +161685 modifier-scope +161687 modifier-scope +161689 wrapper-clause-scope +161693 conjuncted-wg +modifier-scope +161696 wrapper-clause-scope +161700 modifier-scope +161702 wrapper-scope +modifier-scope +161705 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +161712 conjuncted-wg +161715 modifier-scope +conjuncted-wg +161718 modifier-scope +modifier-scope +161721 wrapper-clause-scope +161725 conjuncted-wg +161727 conjuncted-wg +161729 group +modifier-clause-scope +modifier-clause-scope +161733 modifier-scope +modifier-scope +modifier-scope +161737 wrapper-clause-scope +161739 wrapper-clause-scope +161741 modifier-scope +wrapper-scope +161744 conjuncted-wg +161746 wrapper-clause-scope +161750 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +161755 wrapper-scope +modifier-scope +modifier-scope +161759 wrapper-clause-scope +161762 modifier-scope +161764 conjuncted-wg +161767 modifier-scope +wrapper-scope +modifier-scope +161771 wrapper-clause-scope +161774 group +161777 group +161779 wrapper-clause-scope +161781 modifier-scope +161783 wrapper-clause-scope +161785 group +161787 wrapper-clause-scope +161790 modifier-scope +161793 conjuncted-wg +161796 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161801 modifier-scope +modifier-scope +modifier-scope +161808 modifier-scope +conjuncted-wg +conjuncted-wg +161812 wrapper-clause-scope +161814 modifier-scope +modifier-scope +161817 wrapper-clause-scope +161821 wrapper-clause-scope +161823 modifier-scope +161825 wrapper-scope +modifier-scope +161829 wrapper-clause-scope +161831 modifier-scope +161834 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +161840 conjuncted-wg +161842 wrapper-clause-scope +161844 wrapper-scope +161846 wrapper-clause-scope +161849 wrapper-clause-scope +161852 modifier-scope +161854 wrapper-scope +161856 wrapper-clause-scope +161861 conjuncted-wg +161864 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161870 modifier-scope +conjuncted-wg +161874 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +161880 modifier-scope +161883 wrapper-clause-scope +161886 wrapper-scope +conjuncted-wg +161889 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +161894 conjuncted-wg +161897 wrapper-clause-scope +group +161901 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +161906 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +161911 conjuncted-wg +161913 wrapper-clause-scope +161915 modifier-scope +161917 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +161926 modifier-scope +161928 modifier-scope +modifier-scope +modifier-scope +161932 wrapper-clause-scope +161935 conjuncted-wg +161937 group +modifier-scope +conjuncted-wg +161941 conjuncted-wg +161944 conjuncted-wg +modifier-scope +modifier-scope +161949 wrapper-clause-scope +161953 wrapper-clause-scope +161956 group +161958 group +modifier-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +161967 wrapper-clause-scope +161970 modifier-scope +group +161974 group +wrapper-clause-scope +161979 conjuncted-wg +conjuncted-wg +161982 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +161989 wrapper-clause-scope +161991 wrapper-clause-scope +161994 conjuncted-wg +161996 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +162003 modifier-scope +162007 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +162015 wrapper-clause-scope +162017 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +162024 wrapper-clause-scope +162026 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +162032 group +162034 modifier-scope +wrapper-clause-scope +162037 wrapper-clause-scope +162039 modifier-scope +162042 wrapper-scope +group +162045 modifier-scope +modifier-scope +wrapper-clause-scope +162051 wrapper-scope +conjuncted-wg +162054 wrapper-scope +modifier-scope +162057 conjuncted-wg +conjuncted-wg +conjuncted-wg +162061 conjuncted-wg +162063 modifier-scope +modifier-scope +162066 wrapper-clause-scope +162069 modifier-scope +162072 group +162076 modifier-scope +162078 wrapper-clause-scope +162081 modifier-scope +group +group +162085 wrapper-scope +162088 modifier-scope +wrapper-clause-scope +group +162092 modifier-scope +modifier-scope +162095 modifier-scope +modifier-scope +162099 modifier-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +162106 wrapper-scope +162109 conjuncted-wg +162111 modifier-scope +modifier-scope +conjuncted-wg +162116 wrapper-clause-scope +162119 wrapper-clause-scope +162122 modifier-scope +modifier-scope +conjuncted-wg +162126 wrapper-clause-scope +162128 modifier-scope +modifier-scope +wrapper-scope +162132 wrapper-clause-scope +162135 wrapper-clause-scope +162138 modifier-scope +modifier-scope +conjuncted-wg +162142 modifier-scope +modifier-scope +conjuncted-wg +162146 modifier-scope +modifier-scope +modifier-scope +162150 wrapper-clause-scope +162153 modifier-scope +modifier-scope +modifier-scope +162157 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +162167 wrapper-scope +modifier-scope +modifier-scope +162173 wrapper-clause-scope +162175 apposition-group +modifier-clause-scope +wrapper-clause-scope +162181 modifier-scope +wrapper-clause-scope +162185 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +162192 wrapper-clause-scope +162195 wrapper-scope +modifier-scope +modifier-scope +162199 modifier-scope +conjuncted-wg +conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +162207 wrapper-scope +modifier-scope +wrapper-scope +162211 wrapper-clause-scope +162214 wrapper-scope +conjuncted-wg +162218 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +162224 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +162229 wrapper-clause-scope +162232 conjuncted-wg +162234 wrapper-scope +162236 wrapper-clause-scope +162239 modifier-scope +modifier-scope +group +162246 wrapper-clause-scope +162249 modifier-scope +162252 conjuncted-wg +162254 conjuncted-wg +162260 modifier-scope +conjuncted-wg +162263 wrapper-scope +modifier-scope +162266 group +162268 group +modifier-scope +modifier-scope +modifier-scope +162273 wrapper-scope +162276 wrapper-clause-scope +162280 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +162286 wrapper-clause-scope +162289 modifier-scope +conjuncted-wg +162295 conjuncted-wg +162298 wrapper-clause-scope +162301 modifier-scope +modifier-scope +wrapper-clause-scope +162305 modifier-scope +modifier-scope +162308 wrapper-clause-scope +group +162311 wrapper-scope +modifier-scope +162314 modifier-scope +162317 modifier-scope +wrapper-scope +162320 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +162325 wrapper-clause-scope +162327 modifier-scope +162329 wrapper-clause-scope +162331 modifier-scope +wrapper-clause-scope +162336 wrapper-clause-scope +162340 conjuncted-wg +162343 conjuncted-wg +162345 conjuncted-wg +162347 wrapper-clause-scope +group +162351 conjuncted-wg +group +162355 wrapper-scope +162358 modifier-scope +modifier-scope +modifier-scope +162362 wrapper-scope +162365 modifier-scope +wrapper-clause-scope +162368 wrapper-scope +group +modifier-scope +162372 wrapper-clause-scope +group +162375 wrapper-scope +modifier-scope +162380 conjuncted-wg +162382 group +162385 modifier-scope +modifier-scope +wrapper-clause-scope +group +162391 conjuncted-wg +162393 wrapper-clause-scope +162396 wrapper-scope +modifier-scope +conjuncted-wg +162400 wrapper-scope +modifier-scope +162403 wrapper-clause-scope +162406 modifier-scope +modifier-scope +conjuncted-wg +162412 wrapper-clause-scope +162415 modifier-scope +162419 modifier-clause-scope +162421 conjuncted-wg +162423 group +162425 wrapper-scope +wrapper-scope +162428 wrapper-scope +162431 wrapper-clause-scope +162434 modifier-scope +conjuncted-wg +162437 wrapper-scope +modifier-scope +162440 wrapper-clause-scope +162442 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +162448 modifier-scope +162450 modifier-scope +wrapper-scope +162453 wrapper-scope +162456 wrapper-clause-scope +162458 group +162460 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +162468 group +wrapper-clause-scope +162471 modifier-scope +wrapper-scope +modifier-scope +162476 modifier-scope +modifier-scope +162479 conjuncted-wg +162481 conjuncted-wg +162484 wrapper-clause-scope +group +162487 wrapper-scope +modifier-scope +162490 modifier-scope +162493 modifier-scope +modifier-scope +modifier-scope +162497 wrapper-scope +modifier-scope +conjuncted-wg +162501 conjuncted-wg +162503 modifier-scope +modifier-scope +162506 wrapper-clause-scope +162509 wrapper-clause-scope +group +162512 wrapper-scope +162515 wrapper-clause-scope +162517 modifier-scope +modifier-scope +conjuncted-wg +162521 wrapper-clause-scope +162523 modifier-scope +modifier-scope +162529 wrapper-clause-scope +group +162532 wrapper-scope +modifier-scope +162535 modifier-scope +162537 group +162540 group +162542 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +162547 conjuncted-wg +162550 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +162557 wrapper-clause-scope +group +162561 wrapper-scope +modifier-scope +162564 modifier-scope +wrapper-clause-scope +162567 modifier-scope +162569 wrapper-clause-scope +162571 wrapper-clause-scope +162576 wrapper-scope +conjuncted-wg +162579 modifier-clause-scope +modifier-clause-scope +162582 modifier-scope +conjuncted-wg +162586 modifier-scope +modifier-scope +162590 wrapper-scope +162592 conjuncted-wg +162595 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +162601 wrapper-clause-scope +162603 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +162608 wrapper-clause-scope +162612 wrapper-scope +modifier-scope +conjuncted-wg +162616 group +wrapper-clause-scope +162619 group +wrapper-clause-scope +162623 conjuncted-wg +162625 wrapper-scope +modifier-scope +162628 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +162634 wrapper-clause-scope +162637 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +162646 wrapper-clause-scope +162648 wrapper-clause-scope +162650 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +162656 wrapper-clause-scope +group +wrapper-clause-scope +162660 modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +162666 wrapper-scope +162668 wrapper-clause-scope +162671 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +162677 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +162683 modifier-scope +wrapper-scope +modifier-scope +162687 wrapper-clause-scope +162691 modifier-scope +conjuncted-wg +162694 modifier-clause-scope +apposition-group +162697 wrapper-scope +modifier-scope +162700 wrapper-clause-scope +162702 wrapper-clause-scope +162705 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +162711 conjuncted-wg +162713 wrapper-scope +162718 wrapper-scope +modifier-scope +162721 conjuncted-wg +conjuncted-wg +162726 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +162734 wrapper-clause-scope +162736 wrapper-clause-scope +162738 modifier-scope +modifier-scope +162741 conjuncted-wg +162743 wrapper-scope +162748 wrapper-scope +modifier-scope +conjuncted-wg +162753 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +162760 wrapper-clause-scope +162762 modifier-scope +modifier-scope +modifier-scope +162766 wrapper-clause-scope +162768 wrapper-clause-scope +162770 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +162785 wrapper-clause-scope +162788 modifier-scope +modifier-scope +conjuncted-wg +162792 modifier-scope +wrapper-scope +162796 modifier-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +162803 wrapper-clause-scope +162806 wrapper-clause-scope +group +wrapper-clause-scope +162813 wrapper-clause-scope +162816 wrapper-scope +conjuncted-wg +162819 wrapper-scope +group +modifier-scope +group +wrapper-clause-scope +162827 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +162835 modifier-scope +modifier-scope +modifier-scope +162839 wrapper-clause-scope +group +wrapper-clause-scope +162843 modifier-scope +modifier-scope +group +162848 wrapper-scope +modifier-scope +162851 conjuncted-wg +162853 group +wrapper-clause-scope +162857 modifier-scope +modifier-scope +162860 wrapper-clause-scope +group +group +wrapper-clause-scope +162866 wrapper-scope +modifier-scope +162869 conjuncted-wg +wrapper-clause-scope +162872 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +162878 wrapper-clause-scope +group +wrapper-clause-scope +162883 modifier-scope +162885 wrapper-clause-scope +162887 wrapper-clause-scope +162889 modifier-scope +modifier-scope +wrapper-scope +162893 modifier-scope +conjuncted-wg +modifier-scope +162901 wrapper-clause-scope +162903 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +162909 wrapper-clause-scope +162911 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +162918 wrapper-clause-scope +group +wrapper-clause-scope +162922 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +wrapper-clause-scope +162932 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +162939 wrapper-clause-scope +162942 wrapper-scope +162944 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +162953 modifier-scope +162957 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +162963 wrapper-scope +162966 modifier-scope +group +162970 wrapper-scope +162972 wrapper-scope +modifier-scope +162976 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +apposition-group +162984 wrapper-scope +modifier-scope +modifier-scope +162988 wrapper-clause-scope +group +162993 group +modifier-scope +modifier-scope +162997 wrapper-clause-scope +group +163002 modifier-scope +163006 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-clause-scope +163013 conjuncted-wg +163016 wrapper-clause-scope +163019 modifier-scope +163023 wrapper-scope +conjuncted-wg +163027 wrapper-clause-scope +163031 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +163037 modifier-scope +163039 wrapper-clause-scope +163043 modifier-scope +modifier-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +163050 modifier-scope +conjuncted-wg +163055 group +163057 wrapper-clause-scope +163060 wrapper-clause-scope +163063 modifier-scope +modifier-scope +163068 wrapper-scope +conjuncted-wg +163072 wrapper-clause-scope +163075 conjuncted-wg +group +163079 wrapper-scope +wrapper-clause-scope +163082 wrapper-clause-scope +163085 wrapper-clause-scope +163088 modifier-scope +modifier-scope +163091 wrapper-clause-scope +163093 conjuncted-wg +163096 modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +163104 modifier-scope +modifier-scope +163108 modifier-scope +163110 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +163116 wrapper-clause-scope +163119 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +163125 wrapper-clause-scope +163128 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +163133 modifier-clause-scope +wrapper-clause-scope +163138 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +163145 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +163151 wrapper-clause-scope +wrapper-clause-scope +163154 group +wrapper-clause-scope +163157 modifier-scope +modifier-scope +modifier-scope +163162 wrapper-scope +modifier-scope +conjuncted-wg +163166 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +163174 wrapper-clause-scope +163177 modifier-scope +conjuncted-wg +163181 wrapper-clause-scope +163185 conjuncted-wg +163187 wrapper-clause-scope +163190 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +163195 wrapper-clause-scope +163198 wrapper-clause-scope +163200 wrapper-clause-scope +163202 wrapper-clause-scope +163204 wrapper-scope +163206 conjuncted-wg +163208 wrapper-clause-scope +163213 wrapper-scope +163215 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +163220 modifier-scope +modifier-scope +conjuncted-wg +163224 modifier-scope +wrapper-scope +modifier-scope +163228 wrapper-clause-scope +group +163232 modifier-scope +163234 wrapper-clause-scope +163237 modifier-scope +163240 wrapper-clause-scope +163244 modifier-scope +conjuncted-wg +163249 wrapper-clause-scope +163252 wrapper-scope +modifier-scope +modifier-scope +163256 modifier-scope +modifier-scope +conjuncted-wg +163260 wrapper-scope +163262 wrapper-clause-scope +163264 wrapper-clause-scope +163266 wrapper-clause-scope +163269 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +163277 modifier-scope +group +wrapper-clause-scope +163281 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +163290 wrapper-clause-scope +163292 group +163294 modifier-scope +modifier-scope +163298 wrapper-clause-scope +163301 apposition-group +163303 wrapper-scope +modifier-scope +conjuncted-wg +163307 apposition-group +163309 wrapper-scope +modifier-scope +conjuncted-wg +163313 apposition-group +163315 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +163321 wrapper-clause-scope +163325 group +163327 wrapper-clause-scope +163330 modifier-scope +conjuncted-wg +163334 wrapper-clause-scope +163336 modifier-scope +163338 wrapper-clause-scope +163340 modifier-scope +group +163344 modifier-scope +conjuncted-wg +163348 wrapper-scope +wrapper-clause-scope +163351 modifier-scope +modifier-scope +modifier-scope +modifier-scope +163356 wrapper-clause-scope +163359 modifier-scope +163361 wrapper-clause-scope +163367 modifier-scope +wrapper-clause-scope +163370 modifier-scope +163372 wrapper-clause-scope +163376 wrapper-scope +modifier-scope +163379 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +163385 wrapper-scope +modifier-scope +163388 modifier-scope +163393 wrapper-clause-scope +group +163396 modifier-scope +163398 apposition-group +group +163407 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +163412 modifier-scope +modifier-scope +wrapper-clause-scope +163418 modifier-scope +group +163421 modifier-scope +163425 modifier-scope +group +wrapper-clause-scope +163432 wrapper-clause-scope +163436 modifier-clause-scope +wrapper-clause-scope +163439 conjuncted-wg +163441 conjuncted-wg +163443 wrapper-scope +conjuncted-wg +group +163449 wrapper-clause-scope +163451 modifier-scope +163453 modifier-scope +163455 wrapper-clause-scope +163457 wrapper-scope +modifier-scope +163460 wrapper-clause-scope +163462 modifier-scope +modifier-scope +modifier-scope +163467 wrapper-clause-scope +163469 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +163474 wrapper-clause-scope +163479 wrapper-scope +modifier-scope +conjuncted-wg +163483 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +163488 wrapper-clause-scope +163491 modifier-scope +163493 wrapper-clause-scope +163497 wrapper-clause-scope +163500 modifier-scope +163503 wrapper-scope +conjuncted-wg +163506 wrapper-scope +163510 modifier-scope +group +163514 conjuncted-wg +163516 wrapper-clause-scope +163519 wrapper-clause-scope +163521 modifier-scope +163524 wrapper-clause-scope +163527 group +wrapper-clause-scope +163530 wrapper-scope +modifier-scope +wrapper-clause-scope +163534 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +163544 modifier-scope +modifier-scope +modifier-scope +modifier-scope +163549 wrapper-clause-scope +163552 modifier-clause-scope +163555 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +163566 modifier-scope +163568 wrapper-clause-scope +163571 modifier-scope +conjuncted-wg +163575 wrapper-clause-scope +163577 modifier-scope +modifier-scope +modifier-scope +apposition-group +group +163583 wrapper-scope +163585 wrapper-scope +modifier-scope +modifier-scope +163589 wrapper-clause-scope +163592 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +163600 wrapper-clause-scope +163603 wrapper-scope +modifier-scope +modifier-clause-scope +163607 wrapper-scope +modifier-scope +163610 wrapper-clause-scope +163614 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +163619 wrapper-clause-scope +163622 wrapper-clause-scope +163625 wrapper-clause-scope +163628 wrapper-scope +modifier-scope +163631 conjuncted-wg +163633 wrapper-clause-scope +163637 wrapper-scope +modifier-scope +163640 conjuncted-wg +163643 modifier-scope +modifier-scope +163647 wrapper-clause-scope +163652 modifier-scope +wrapper-scope +modifier-scope +163656 wrapper-clause-scope +group +163660 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +163667 modifier-scope +conjuncted-wg +163670 modifier-scope +163672 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +163677 wrapper-clause-scope +163680 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +163685 wrapper-clause-scope +163688 modifier-scope +wrapper-clause-scope +163692 wrapper-clause-scope +163694 modifier-scope +wrapper-scope +modifier-scope +163698 wrapper-clause-scope +163701 wrapper-scope +modifier-scope +163706 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +163711 group +wrapper-clause-scope +163715 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +163721 wrapper-clause-scope +163724 modifier-scope +group +163728 wrapper-clause-scope +163733 modifier-scope +conjuncted-wg +163737 wrapper-clause-scope +163740 modifier-scope +modifier-scope +wrapper-clause-scope +163744 modifier-scope +163746 wrapper-clause-scope +163750 wrapper-scope +modifier-scope +163753 wrapper-clause-scope +163755 modifier-scope +modifier-scope +wrapper-clause-scope +163762 modifier-scope +conjuncted-wg +163765 modifier-scope +163767 wrapper-clause-scope +163772 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +163777 wrapper-scope +modifier-scope +163781 wrapper-scope +conjuncted-wg +163786 modifier-scope +modifier-scope +modifier-scope +modifier-scope +163791 conjuncted-wg +conjuncted-wg +163795 wrapper-scope +conjuncted-wg +163798 modifier-scope +wrapper-scope +wrapper-clause-scope +163803 conjuncted-wg +163805 conjuncted-wg +163807 conjuncted-wg +163809 modifier-scope +modifier-scope +163813 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +163822 conjuncted-wg +163824 wrapper-scope +163826 wrapper-clause-scope +163832 wrapper-clause-scope +163834 modifier-scope +modifier-scope +modifier-scope +modifier-scope +163840 wrapper-scope +conjuncted-wg +163843 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +163849 wrapper-clause-scope +163852 modifier-scope +163857 modifier-clause-scope +apposition-group +163867 conjuncted-wg +163869 modifier-scope +modifier-scope +conjuncted-wg +163874 wrapper-clause-scope +163877 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +163882 conjuncted-wg +163884 wrapper-scope +modifier-scope +modifier-scope +163888 wrapper-clause-scope +163891 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +163896 wrapper-clause-scope +163898 modifier-scope +163901 wrapper-clause-scope +163904 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +163909 modifier-scope +163911 group +163913 wrapper-scope +163917 wrapper-clause-scope +163920 wrapper-scope +modifier-scope +conjuncted-wg +163924 wrapper-clause-scope +163927 wrapper-scope +modifier-scope +163930 modifier-scope +modifier-scope +modifier-scope +163935 conjuncted-wg +163938 conjuncted-wg +163940 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +163945 wrapper-clause-scope +group +163948 wrapper-scope +163950 modifier-scope +163952 wrapper-clause-scope +163954 modifier-clause-scope +modifier-clause-scope +163957 wrapper-scope +modifier-scope +163960 wrapper-clause-scope +163965 group +modifier-scope +163968 wrapper-clause-scope +163970 modifier-scope +wrapper-clause-scope +163974 wrapper-clause-scope +163979 group +modifier-scope +163982 wrapper-clause-scope +163986 modifier-scope +conjuncted-wg +163996 modifier-scope +modifier-scope +163999 wrapper-clause-scope +164003 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +164009 conjuncted-wg +164012 wrapper-clause-scope +group +wrapper-clause-scope +164017 wrapper-scope +conjuncted-wg +164020 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +164026 modifier-scope +164028 group +164031 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +164040 conjuncted-wg +164042 wrapper-scope +164046 wrapper-clause-scope +group +wrapper-clause-scope +164051 wrapper-clause-scope +164053 modifier-scope +modifier-scope +164056 wrapper-clause-scope +164059 wrapper-clause-scope +group +164062 wrapper-clause-scope +164064 wrapper-clause-scope +164066 wrapper-scope +modifier-scope +164070 modifier-scope +modifier-scope +164073 modifier-scope +modifier-scope +164076 conjuncted-wg +164079 wrapper-scope +conjuncted-wg +wrapper-scope +group +modifier-scope +164085 wrapper-clause-scope +164088 modifier-scope +164091 conjuncted-wg +group +164094 wrapper-clause-scope +164096 modifier-scope +164098 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +164103 wrapper-scope +modifier-scope +conjuncted-wg +164107 wrapper-scope +164109 wrapper-clause-scope +164112 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +164121 wrapper-scope +modifier-scope +conjuncted-wg +164125 wrapper-scope +modifier-scope +164128 wrapper-clause-scope +164130 group +modifier-scope +164133 wrapper-clause-scope +164135 conjuncted-wg +wrapper-clause-scope +164139 group +164141 modifier-scope +modifier-scope +164145 wrapper-clause-scope +164147 wrapper-scope +modifier-scope +164150 wrapper-scope +modifier-scope +164153 wrapper-clause-scope +group +164156 wrapper-scope +164158 modifier-scope +modifier-scope +164163 wrapper-clause-scope +164165 modifier-scope +164167 group +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +164175 wrapper-clause-scope +164178 wrapper-scope +modifier-scope +conjuncted-wg +164182 modifier-clause-scope +wrapper-clause-scope +164186 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +164192 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +164200 modifier-scope +conjuncted-wg +164206 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +164211 modifier-scope +164213 wrapper-clause-scope +164217 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +164223 wrapper-clause-scope +164227 modifier-scope +conjuncted-wg +modifier-scope +164232 modifier-clause-scope +apposition-group +164235 conjuncted-wg +group +modifier-scope +wrapper-clause-scope +164241 wrapper-scope +modifier-scope +conjuncted-wg +164246 modifier-scope +modifier-scope +conjuncted-wg +164250 group +164254 wrapper-clause-scope +164256 modifier-scope +164259 wrapper-clause-scope +164261 wrapper-scope +modifier-clause-scope +164264 conjuncted-wg +164267 wrapper-clause-scope +164271 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +164277 wrapper-clause-scope +164280 wrapper-scope +modifier-scope +164283 wrapper-clause-scope +164288 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +164295 wrapper-scope +wrapper-clause-scope +164298 conjuncted-wg +164301 wrapper-scope +wrapper-scope +modifier-scope +164305 wrapper-clause-scope +164307 modifier-scope +164309 wrapper-clause-scope +164312 modifier-scope +164315 modifier-scope +164317 wrapper-clause-scope +164320 modifier-scope +group +wrapper-clause-scope +164324 group +wrapper-clause-scope +164328 conjuncted-wg +164330 group +164332 modifier-scope +modifier-scope +group +wrapper-clause-scope +164337 modifier-scope +modifier-scope +164341 conjuncted-wg +164343 wrapper-scope +modifier-scope +164347 wrapper-clause-scope +164349 modifier-clause-scope +wrapper-clause-scope +164352 wrapper-scope +modifier-scope +164356 wrapper-clause-scope +group +164359 wrapper-scope +modifier-scope +164364 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +164372 wrapper-scope +modifier-scope +conjuncted-wg +164376 modifier-scope +modifier-scope +164379 wrapper-clause-scope +164382 modifier-scope +164384 modifier-scope +group +wrapper-clause-scope +164390 wrapper-scope +modifier-scope +164394 group +modifier-scope +modifier-scope +164399 wrapper-scope +conjuncted-wg +164402 wrapper-scope +164404 wrapper-clause-scope +164406 wrapper-scope +164409 group +wrapper-clause-scope +164413 wrapper-scope +164415 wrapper-clause-scope +164417 wrapper-scope +conjuncted-wg +group +group +wrapper-clause-scope +164424 wrapper-scope +164426 modifier-scope +wrapper-clause-scope +164429 wrapper-scope +modifier-scope +164432 wrapper-clause-scope +164435 modifier-scope +164439 modifier-scope +164442 wrapper-scope +modifier-scope +164445 wrapper-clause-scope +164449 modifier-scope +164453 modifier-scope +164458 wrapper-scope +modifier-scope +164461 wrapper-clause-scope +164467 conjuncted-wg +164470 wrapper-clause-scope +164473 modifier-scope +164475 wrapper-clause-scope +group +164484 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +164493 modifier-scope +164496 modifier-scope +group +164500 wrapper-clause-scope +164503 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +164515 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +164520 conjuncted-wg +164523 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +164529 wrapper-clause-scope +164533 modifier-scope +164538 conjuncted-wg +164540 conjuncted-wg +164542 wrapper-scope +conjuncted-wg +164545 conjuncted-wg +164547 conjuncted-wg +164550 wrapper-clause-scope +164552 wrapper-clause-scope +164554 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +164562 modifier-scope +modifier-scope +164565 wrapper-clause-scope +group +164568 modifier-scope +modifier-scope +modifier-scope +164572 conjuncted-wg +164574 conjuncted-wg +164576 conjuncted-wg +164581 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +164588 wrapper-clause-scope +164590 wrapper-scope +modifier-scope +modifier-scope +164595 modifier-scope +modifier-scope +164598 wrapper-clause-scope +164600 modifier-scope +164602 modifier-scope +wrapper-scope +group +164606 modifier-scope +wrapper-clause-scope +164611 conjuncted-wg +164613 modifier-scope +modifier-scope +164616 wrapper-clause-scope +164620 wrapper-scope +modifier-scope +conjuncted-wg +164625 wrapper-clause-scope +164627 wrapper-clause-scope +164629 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +164639 conjuncted-wg +164641 modifier-scope +modifier-clause-scope +apposition-group +164645 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +164651 modifier-scope +164653 wrapper-scope +modifier-scope +164658 apposition-group +164660 wrapper-clause-scope +164662 wrapper-scope +modifier-scope +164665 wrapper-scope +conjuncted-wg +164668 wrapper-scope +modifier-scope +164672 wrapper-scope +wrapper-clause-scope +164676 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +164682 modifier-clause-scope +164684 modifier-scope +modifier-scope +164687 wrapper-clause-scope +164690 wrapper-clause-scope +164692 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +164698 wrapper-scope +wrapper-clause-scope +164702 wrapper-clause-scope +164705 modifier-scope +conjuncted-wg +modifier-scope +164709 modifier-scope +modifier-scope +wrapper-clause-scope +164713 wrapper-scope +164715 wrapper-clause-scope +group +164720 modifier-scope +wrapper-clause-scope +164723 wrapper-scope +164725 wrapper-clause-scope +164728 modifier-scope +wrapper-scope +164732 modifier-scope +modifier-scope +modifier-scope +group +apposition-group +164738 modifier-scope +modifier-scope +164741 wrapper-clause-scope +164744 modifier-scope +modifier-scope +164747 wrapper-clause-scope +164749 wrapper-scope +modifier-scope +conjuncted-wg +164756 modifier-scope +164759 wrapper-clause-scope +164761 group +164764 modifier-scope +modifier-scope +164768 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +164775 wrapper-scope +modifier-scope +164778 wrapper-clause-scope +164782 conjuncted-wg +164784 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +164789 wrapper-scope +modifier-scope +modifier-scope +164793 wrapper-clause-scope +164795 modifier-scope +164797 modifier-scope +modifier-scope +164800 conjuncted-wg +164802 wrapper-clause-scope +164805 modifier-scope +conjuncted-wg +164809 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +164815 modifier-scope +modifier-scope +164819 modifier-scope +modifier-scope +164822 conjuncted-wg +164824 modifier-scope +conjuncted-wg +164827 wrapper-clause-scope +164830 wrapper-clause-scope +164833 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +164839 wrapper-clause-scope +164841 wrapper-scope +modifier-scope +164844 wrapper-clause-scope +164846 modifier-scope +modifier-scope +164849 wrapper-scope +modifier-scope +group +modifier-clause-scope +164855 conjuncted-wg +conjuncted-wg +164858 wrapper-clause-scope +164860 modifier-scope +164863 wrapper-clause-scope +164865 modifier-scope +164868 wrapper-clause-scope +164870 modifier-clause-scope +164872 modifier-scope +164874 wrapper-clause-scope +164879 modifier-scope +164881 wrapper-clause-scope +164885 modifier-scope +modifier-scope +164889 modifier-scope +164891 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +164899 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +164905 wrapper-clause-scope +164908 conjuncted-wg +164913 modifier-scope +wrapper-clause-scope +164916 wrapper-scope +164918 wrapper-clause-scope +164920 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +164928 wrapper-clause-scope +164931 conjuncted-wg +164933 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +164939 wrapper-scope +wrapper-clause-scope +164942 wrapper-scope +modifier-scope +wrapper-clause-scope +164950 conjuncted-wg +164953 wrapper-clause-scope +164955 modifier-scope +164957 modifier-scope +modifier-scope +164963 modifier-scope +modifier-scope +modifier-scope +164967 wrapper-clause-scope +164970 wrapper-clause-scope +164974 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +164983 wrapper-clause-scope +164986 modifier-scope +conjuncted-wg +164989 modifier-scope +modifier-scope +modifier-scope +164993 wrapper-clause-scope +164997 conjuncted-wg +165003 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +165009 conjuncted-wg +165014 group +wrapper-clause-scope +165020 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +165026 modifier-scope +modifier-scope +165029 wrapper-clause-scope +165031 wrapper-scope +modifier-scope +165034 wrapper-clause-scope +165037 modifier-scope +165039 conjuncted-wg +165042 modifier-scope +modifier-scope +modifier-scope +modifier-scope +165049 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +165056 wrapper-clause-scope +165058 modifier-scope +modifier-scope +165061 wrapper-clause-scope +group +165064 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +165072 wrapper-clause-scope +165075 modifier-scope +165079 modifier-scope +conjuncted-wg +165082 modifier-scope +modifier-scope +modifier-scope +165086 wrapper-clause-scope +165089 wrapper-scope +modifier-scope +165092 conjuncted-wg +conjuncted-wg +conjuncted-wg +165096 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +165101 wrapper-clause-scope +group +165104 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +165110 wrapper-clause-scope +165112 wrapper-scope +modifier-scope +165117 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +165126 group +165128 modifier-scope +modifier-scope +165132 wrapper-clause-scope +165135 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +165140 wrapper-clause-scope +165142 modifier-scope +165146 modifier-scope +wrapper-scope +modifier-scope +165150 wrapper-clause-scope +165152 group +modifier-scope +wrapper-scope +165158 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +165163 wrapper-clause-scope +165166 group +modifier-scope +modifier-scope +165170 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +165186 modifier-scope +modifier-scope +165189 conjuncted-wg +165193 modifier-scope +modifier-scope +wrapper-clause-scope +165200 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +165208 modifier-scope +165210 wrapper-clause-scope +group +165213 modifier-scope +165215 modifier-scope +165218 wrapper-scope +modifier-scope +165221 modifier-scope +165225 modifier-scope +165228 wrapper-clause-scope +165230 wrapper-scope +165233 modifier-scope +modifier-scope +group +165237 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +165242 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +165248 wrapper-clause-scope +group +wrapper-clause-scope +165253 modifier-scope +165255 wrapper-clause-scope +165259 conjuncted-wg +165261 wrapper-scope +modifier-scope +modifier-scope +165267 modifier-scope +165269 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +165275 wrapper-scope +modifier-scope +modifier-scope +165279 modifier-scope +conjuncted-wg +modifier-scope +165283 wrapper-clause-scope +165286 modifier-clause-scope +wrapper-clause-scope +165290 conjuncted-wg +conjuncted-wg +165293 wrapper-scope +modifier-scope +modifier-scope +165297 wrapper-clause-scope +165300 conjuncted-wg +165303 wrapper-clause-scope +165307 modifier-scope +conjuncted-wg +165310 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +165316 modifier-scope +modifier-scope +165320 wrapper-clause-scope +165322 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +165328 modifier-scope +165330 wrapper-clause-scope +165334 modifier-scope +modifier-scope +conjuncted-wg +165338 modifier-scope +conjuncted-wg +165342 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +165358 wrapper-scope +modifier-scope +165361 wrapper-clause-scope +165363 wrapper-clause-scope +165366 modifier-scope +modifier-scope +conjuncted-wg +165370 modifier-scope +165372 wrapper-clause-scope +165374 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +165379 modifier-scope +group +modifier-scope +modifier-scope +165385 wrapper-clause-scope +165387 modifier-scope +group +modifier-scope +165391 wrapper-clause-scope +165393 modifier-scope +modifier-scope +modifier-scope +165397 wrapper-clause-scope +165401 conjuncted-wg +165405 wrapper-clause-scope +group +165409 group +165411 conjuncted-wg +wrapper-clause-scope +165414 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +165422 conjuncted-wg +165425 wrapper-clause-scope +165430 group +165432 conjuncted-wg +wrapper-clause-scope +165437 modifier-scope +conjuncted-wg +modifier-scope +165441 conjuncted-wg +165443 wrapper-clause-scope +165445 modifier-scope +modifier-scope +modifier-scope +165451 group +modifier-scope +wrapper-clause-scope +165457 wrapper-clause-scope +165459 wrapper-scope +modifier-scope +conjuncted-wg +165463 wrapper-clause-scope +165465 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +165473 conjuncted-wg +165477 modifier-scope +conjuncted-wg +165480 group +modifier-scope +wrapper-clause-scope +165484 modifier-scope +165486 wrapper-clause-scope +165489 wrapper-clause-scope +165491 wrapper-scope +modifier-scope +conjuncted-wg +165495 wrapper-clause-scope +165497 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +165508 modifier-scope +conjuncted-wg +165511 group +modifier-scope +wrapper-clause-scope +165515 modifier-scope +165517 wrapper-clause-scope +165519 wrapper-clause-scope +165521 wrapper-scope +modifier-scope +165524 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +165531 wrapper-clause-scope +165533 wrapper-clause-scope +165535 wrapper-scope +modifier-scope +165538 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +165544 wrapper-clause-scope +165546 wrapper-clause-scope +165548 wrapper-scope +modifier-scope +165551 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +165559 wrapper-scope +165561 group +165564 group +165566 conjuncted-wg +wrapper-clause-scope +165571 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +165578 group +modifier-scope +modifier-scope +modifier-scope +165583 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +165589 wrapper-clause-scope +165591 group +165596 group +modifier-scope +wrapper-clause-scope +165601 modifier-scope +conjuncted-wg +165604 modifier-scope +165608 group +165610 conjuncted-wg +wrapper-clause-scope +165614 modifier-scope +modifier-scope +165617 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +165622 wrapper-scope +165624 conjuncted-wg +165628 modifier-scope +165630 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +165635 modifier-scope +modifier-scope +modifier-scope +165639 group +165642 group +165644 conjuncted-wg +wrapper-clause-scope +165647 apposition-group +modifier-clause-scope +165651 conjuncted-wg +165653 conjuncted-wg +165656 modifier-scope +conjuncted-wg +modifier-scope +165661 modifier-scope +165663 conjuncted-wg +165665 modifier-scope +conjuncted-wg +165669 conjuncted-wg +165671 group +165674 group +165676 conjuncted-wg +wrapper-clause-scope +165681 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +165686 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +165691 group +wrapper-clause-scope +165694 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +165701 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +165707 wrapper-clause-scope +165709 wrapper-clause-scope +165711 modifier-clause-scope +wrapper-clause-scope +165714 modifier-scope +165716 wrapper-clause-scope +165718 modifier-scope +modifier-scope +modifier-scope +modifier-scope +165725 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +165734 wrapper-scope +wrapper-scope +165737 conjuncted-wg +conjuncted-wg +165741 wrapper-scope +165743 conjuncted-wg +conjuncted-wg +165747 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +165753 group +wrapper-scope +wrapper-scope +wrapper-clause-scope +165758 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +165763 wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +group +modifier-scope +165778 wrapper-scope +165780 modifier-scope +conjuncted-wg +modifier-scope +165784 group +wrapper-clause-scope +165788 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +165793 group +165798 wrapper-clause-scope +165801 modifier-scope +conjuncted-wg +165804 wrapper-clause-scope +165806 wrapper-scope +165810 modifier-scope +modifier-scope +165813 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +165822 modifier-scope +modifier-scope +165825 wrapper-clause-scope +165827 group +165829 modifier-scope +wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +165836 wrapper-clause-scope +165838 wrapper-scope +modifier-scope +165841 wrapper-clause-scope +165844 modifier-scope +165846 wrapper-scope +modifier-scope +conjuncted-wg +165850 modifier-scope +modifier-scope +165853 modifier-scope +modifier-scope +modifier-scope +165857 wrapper-clause-scope +165860 group +wrapper-clause-scope +165863 modifier-scope +group +wrapper-clause-scope +165868 modifier-scope +wrapper-scope +apposition-group +165873 wrapper-clause-scope +group +165876 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +165881 modifier-scope +wrapper-scope +165887 conjuncted-wg +165889 modifier-scope +modifier-scope +165892 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +165898 wrapper-clause-scope +165901 modifier-scope +group +165904 wrapper-clause-scope +165907 wrapper-clause-scope +165910 wrapper-scope +modifier-scope +modifier-scope +165915 modifier-scope +conjuncted-wg +165919 wrapper-clause-scope +165923 conjuncted-wg +modifier-scope +165927 wrapper-clause-scope +165930 wrapper-clause-scope +165934 conjuncted-wg +165936 modifier-scope +165938 wrapper-clause-scope +165942 wrapper-scope +conjuncted-wg +165945 wrapper-scope +conjuncted-wg +165949 conjuncted-wg +wrapper-scope +165952 wrapper-clause-scope +165954 modifier-scope +modifier-scope +165960 wrapper-scope +conjuncted-wg +165963 conjuncted-wg +165965 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +165973 wrapper-clause-scope +165976 conjuncted-wg +165978 conjuncted-wg +165981 wrapper-clause-scope +165984 modifier-scope +conjuncted-wg +165988 wrapper-clause-scope +165990 wrapper-scope +wrapper-clause-scope +165993 modifier-scope +modifier-scope +modifier-scope +modifier-scope +165998 wrapper-clause-scope +166001 wrapper-clause-scope +166003 wrapper-scope +166005 wrapper-clause-scope +166008 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +166020 modifier-scope +166022 wrapper-clause-scope +group +group +wrapper-clause-scope +166028 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +166034 wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +166040 wrapper-clause-scope +166044 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +166050 modifier-scope +wrapper-scope +modifier-scope +166054 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +166060 modifier-scope +wrapper-scope +modifier-scope +166064 modifier-scope +modifier-scope +166067 wrapper-clause-scope +166070 wrapper-clause-scope +166072 wrapper-scope +conjuncted-wg +wrapper-clause-scope +166076 wrapper-scope +modifier-scope +modifier-scope +166080 wrapper-clause-scope +166082 wrapper-clause-scope +166084 modifier-scope +modifier-scope +166087 conjuncted-wg +166089 wrapper-clause-scope +166091 apposition-group +modifier-scope +166095 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +166102 modifier-scope +166104 wrapper-clause-scope +166106 wrapper-clause-scope +166108 modifier-scope +modifier-scope +166111 modifier-scope +166113 wrapper-clause-scope +166115 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +166120 group +wrapper-clause-scope +166125 modifier-scope +conjuncted-wg +166130 wrapper-clause-scope +166134 conjuncted-wg +conjuncted-wg +166138 modifier-scope +conjuncted-wg +wrapper-clause-scope +166142 wrapper-clause-scope +166144 modifier-scope +modifier-scope +166149 wrapper-clause-scope +group +group +group +wrapper-clause-scope +166156 wrapper-scope +modifier-scope +166160 group +166163 wrapper-scope +modifier-scope +wrapper-clause-scope +group +166168 wrapper-clause-scope +166171 modifier-scope +wrapper-scope +conjuncted-wg +166175 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +166182 wrapper-clause-scope +166184 modifier-scope +modifier-scope +166187 wrapper-clause-scope +166190 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +166198 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +166203 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +166208 modifier-scope +modifier-scope +modifier-scope +166212 wrapper-clause-scope +166215 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +166223 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +166230 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +166240 conjuncted-wg +166242 wrapper-clause-scope +166245 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +166251 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +166262 wrapper-clause-scope +166264 wrapper-scope +modifier-scope +modifier-scope +166268 group +wrapper-clause-scope +166272 modifier-scope +modifier-scope +conjuncted-wg +166276 modifier-scope +166278 wrapper-clause-scope +166280 modifier-scope +166283 wrapper-clause-scope +166285 modifier-scope +wrapper-clause-scope +166288 wrapper-scope +166292 wrapper-clause-scope +166294 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +166300 modifier-scope +166305 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +166310 modifier-scope +modifier-scope +modifier-scope +166314 wrapper-clause-scope +group +166317 wrapper-scope +modifier-scope +modifier-scope +166321 conjuncted-wg +166324 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +166331 modifier-scope +166333 wrapper-clause-scope +166335 wrapper-clause-scope +166337 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +166346 wrapper-clause-scope +group +wrapper-clause-scope +166351 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +166361 conjuncted-wg +166363 conjuncted-wg +wrapper-scope +166366 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +166371 wrapper-clause-scope +166374 modifier-scope +conjuncted-wg +166378 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +166386 wrapper-scope +modifier-scope +166390 conjuncted-wg +166394 wrapper-scope +modifier-scope +166398 conjuncted-wg +166401 wrapper-clause-scope +group +166404 wrapper-clause-scope +166407 modifier-scope +modifier-scope +modifier-scope +166411 wrapper-clause-scope +166413 wrapper-clause-scope +group +wrapper-clause-scope +166417 modifier-scope +166419 modifier-scope +modifier-scope +166422 wrapper-clause-scope +166424 conjuncted-wg +wrapper-clause-scope +166428 modifier-scope +modifier-scope +166431 group +166433 wrapper-scope +modifier-scope +wrapper-clause-scope +166437 apposition-group +166439 modifier-scope +modifier-scope +modifier-scope +166443 wrapper-clause-scope +166445 apposition-group +modifier-scope +modifier-scope +166449 conjuncted-wg +166451 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +166457 modifier-scope +wrapper-scope +166461 apposition-group +modifier-scope +modifier-scope +166467 modifier-scope +modifier-scope +166472 wrapper-clause-scope +166474 wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +166480 wrapper-clause-scope +group +wrapper-clause-scope +166485 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +166492 modifier-scope +modifier-scope +conjuncted-wg +166498 modifier-scope +modifier-scope +conjuncted-wg +166503 conjuncted-wg +wrapper-scope +wrapper-clause-scope +166509 modifier-scope +modifier-scope +modifier-scope +modifier-scope +166514 wrapper-scope +apposition-group +166517 conjuncted-wg +wrapper-scope +apposition-group +166521 conjuncted-wg +166524 conjuncted-wg +166526 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +166533 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +166540 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +166547 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +166553 wrapper-clause-scope +166556 modifier-scope +wrapper-scope +conjuncted-wg +166561 wrapper-clause-scope +166563 modifier-scope +166565 modifier-scope +wrapper-scope +166568 wrapper-clause-scope +166570 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +166577 wrapper-clause-scope +group +166580 modifier-scope +166583 conjuncted-wg +166586 wrapper-clause-scope +166588 modifier-scope +group +166592 modifier-scope +166594 wrapper-scope +166598 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +166603 modifier-scope +modifier-scope +166606 wrapper-clause-scope +166608 modifier-scope +modifier-scope +group +166612 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +166617 modifier-scope +modifier-scope +166620 wrapper-clause-scope +166622 modifier-scope +166624 group +166626 modifier-scope +166628 conjuncted-wg +166630 wrapper-scope +wrapper-clause-scope +166635 wrapper-clause-scope +166637 group +166641 modifier-scope +conjuncted-wg +166645 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +166651 modifier-scope +166653 wrapper-clause-scope +166655 modifier-scope +modifier-scope +modifier-scope +166659 group +166664 wrapper-clause-scope +166667 group +wrapper-clause-scope +166672 wrapper-clause-scope +group +166675 wrapper-clause-scope +166678 modifier-scope +conjuncted-wg +modifier-scope +166682 wrapper-clause-scope +wrapper-clause-scope +166689 modifier-scope +modifier-scope +conjuncted-wg +166693 modifier-clause-scope +wrapper-clause-scope +166696 conjuncted-wg +group +166699 conjuncted-wg +166701 modifier-scope +conjuncted-wg +166704 conjuncted-wg +166707 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +166716 wrapper-clause-scope +166718 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +166723 modifier-scope +166726 wrapper-clause-scope +166728 modifier-scope +modifier-scope +166731 wrapper-clause-scope +166734 wrapper-clause-scope +166736 modifier-scope +166738 conjuncted-wg +166740 modifier-scope +modifier-scope +modifier-scope +modifier-scope +166745 wrapper-clause-scope +166748 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +166756 wrapper-scope +166758 wrapper-clause-scope +166761 wrapper-clause-scope +166763 modifier-scope +modifier-scope +modifier-scope +modifier-scope +166771 modifier-scope +166773 modifier-scope +modifier-scope +166777 modifier-scope +modifier-scope +group +166782 modifier-scope +166784 conjuncted-wg +group +166787 wrapper-scope +166789 wrapper-scope +166791 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +166799 modifier-clause-scope +wrapper-clause-scope +166802 modifier-scope +modifier-scope +166807 modifier-scope +166809 modifier-scope +modifier-scope +166813 modifier-scope +modifier-scope +group +166818 modifier-scope +166820 conjuncted-wg +group +166823 wrapper-scope +166825 wrapper-scope +166827 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +166833 wrapper-clause-scope +166836 modifier-clause-scope +wrapper-clause-scope +166839 modifier-scope +modifier-scope +166845 wrapper-clause-scope +166847 modifier-clause-scope +modifier-clause-scope +166852 conjuncted-wg +166855 conjuncted-wg +166859 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +166864 modifier-scope +166866 wrapper-clause-scope +166869 modifier-scope +modifier-scope +group +166874 modifier-scope +166876 conjuncted-wg +wrapper-clause-scope +166881 conjuncted-wg +166884 wrapper-clause-scope +166888 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +166895 modifier-scope +wrapper-scope +166898 wrapper-clause-scope +166901 wrapper-scope +modifier-scope +conjuncted-wg +166905 wrapper-clause-scope +166907 modifier-scope +modifier-scope +166910 wrapper-clause-scope +166914 modifier-clause-scope +wrapper-clause-scope +166917 conjuncted-wg +166919 conjuncted-wg +166922 wrapper-clause-scope +166924 modifier-clause-scope +166926 wrapper-scope +166928 wrapper-clause-scope +166930 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +166939 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +166945 wrapper-clause-scope +166947 wrapper-clause-scope +166950 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +166958 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +166965 wrapper-clause-scope +166968 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +166973 wrapper-scope +wrapper-clause-scope +166977 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +166983 conjuncted-wg +166985 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +166990 modifier-scope +wrapper-scope +166994 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +167001 modifier-clause-scope +wrapper-clause-scope +167004 modifier-scope +modifier-scope +167007 modifier-clause-scope +modifier-clause-scope +167010 wrapper-scope +modifier-scope +167013 wrapper-clause-scope +group +167017 conjuncted-wg +167022 conjuncted-wg +167026 conjuncted-wg +167030 conjuncted-wg +167034 conjuncted-wg +167038 wrapper-scope +conjuncted-wg +167041 wrapper-scope +167044 modifier-scope +167048 wrapper-clause-scope +167053 conjuncted-wg +167055 conjuncted-wg +167058 conjuncted-wg +167060 conjuncted-wg +wrapper-clause-scope +167066 conjuncted-wg +167068 conjuncted-wg +167071 conjuncted-wg +167073 conjuncted-wg +wrapper-clause-scope +167080 conjuncted-wg +wrapper-scope +conjuncted-wg +167084 wrapper-scope +167086 wrapper-clause-scope +167089 modifier-scope +167093 wrapper-scope +167095 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +167103 modifier-scope +modifier-scope +wrapper-scope +167108 wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +167117 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +167122 wrapper-clause-scope +group +167126 conjuncted-wg +167131 conjuncted-wg +167135 conjuncted-wg +167139 conjuncted-wg +167143 conjuncted-wg +wrapper-scope +conjuncted-wg +167149 modifier-scope +167158 conjuncted-wg +167160 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +conjuncted-wg +167173 wrapper-scope +167175 modifier-scope +modifier-scope +modifier-scope +167179 wrapper-clause-scope +167182 wrapper-scope +modifier-scope +conjuncted-wg +167186 modifier-scope +wrapper-scope +modifier-scope +167190 wrapper-clause-scope +wrapper-clause-scope +167193 group +wrapper-clause-scope +167196 modifier-scope +modifier-scope +modifier-scope +modifier-scope +167201 modifier-scope +modifier-scope +167204 wrapper-clause-scope +167207 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +167212 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +167222 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +167234 conjuncted-wg +167236 wrapper-clause-scope +167239 modifier-scope +conjuncted-wg +167243 wrapper-clause-scope +167245 group +167247 wrapper-scope +modifier-scope +wrapper-clause-scope +167251 wrapper-scope +modifier-scope +167254 wrapper-clause-scope +group +167257 modifier-scope +group +wrapper-scope +wrapper-scope +modifier-scope +group +modifier-scope +167267 modifier-scope +modifier-scope +conjuncted-wg +group +167272 wrapper-scope +modifier-scope +167276 wrapper-clause-scope +167279 modifier-scope +167282 wrapper-scope +modifier-scope +modifier-scope +167286 wrapper-clause-scope +167290 conjuncted-wg +167293 wrapper-clause-scope +167296 modifier-scope +group +167299 modifier-scope +wrapper-clause-scope +167302 modifier-scope +wrapper-scope +167305 wrapper-clause-scope +167308 modifier-scope +wrapper-scope +conjuncted-wg +167313 wrapper-clause-scope +167316 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +167325 group +wrapper-clause-scope +167329 wrapper-clause-scope +167331 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +167338 wrapper-scope +modifier-scope +167342 group +modifier-scope +modifier-scope +wrapper-clause-scope +167347 group +167349 wrapper-scope +modifier-scope +167355 wrapper-clause-scope +167357 modifier-scope +167359 wrapper-clause-scope +167361 wrapper-scope +wrapper-clause-scope +167365 wrapper-clause-scope +167367 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +167373 group +167377 modifier-scope +167379 wrapper-clause-scope +167383 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +167390 modifier-scope +group +167393 modifier-scope +modifier-scope +167396 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +167402 wrapper-clause-scope +167404 group +167406 modifier-scope +wrapper-clause-scope +167409 modifier-scope +conjuncted-wg +167412 modifier-scope +167414 wrapper-clause-scope +group +167418 wrapper-scope +modifier-scope +modifier-scope +167422 wrapper-clause-scope +group +167428 wrapper-clause-scope +167430 modifier-scope +wrapper-scope +167433 wrapper-clause-scope +167437 modifier-scope +167442 wrapper-clause-scope +167447 wrapper-clause-scope +167449 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +167455 conjuncted-wg +group +167458 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +167463 wrapper-scope +conjuncted-wg +167466 apposition-group +modifier-scope +modifier-scope +167470 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +167476 wrapper-clause-scope +167478 modifier-scope +modifier-scope +167481 wrapper-clause-scope +167484 group +wrapper-clause-scope +167494 wrapper-clause-scope +group +167499 modifier-scope +167502 conjuncted-wg +167504 conjuncted-wg +167507 modifier-scope +group +group +167513 modifier-scope +modifier-scope +167516 wrapper-clause-scope +167520 conjuncted-wg +167523 group +167525 wrapper-scope +wrapper-clause-scope +167528 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +167535 wrapper-scope +wrapper-scope +modifier-scope +167539 wrapper-clause-scope +167542 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +wrapper-clause-scope +167555 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +167562 wrapper-clause-scope +167565 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +167571 modifier-scope +167574 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +167583 modifier-scope +conjuncted-wg +167586 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +167591 wrapper-scope +wrapper-clause-scope +167594 wrapper-scope +modifier-scope +167597 wrapper-clause-scope +167600 modifier-scope +group +wrapper-clause-scope +167604 wrapper-scope +167608 modifier-scope +167611 wrapper-clause-scope +167613 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +167620 modifier-scope +group +wrapper-clause-scope +167625 wrapper-scope +167627 modifier-scope +167630 modifier-scope +modifier-scope +modifier-scope +167636 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +167641 conjuncted-wg +167643 modifier-scope +167645 wrapper-scope +167649 wrapper-clause-scope +167653 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +167660 conjuncted-wg +167664 group +167666 modifier-scope +modifier-scope +wrapper-scope +167671 conjuncted-wg +167673 wrapper-scope +167675 wrapper-clause-scope +167678 wrapper-scope +modifier-scope +167682 conjuncted-wg +167685 modifier-scope +167687 wrapper-clause-scope +167689 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +167696 wrapper-clause-scope +167699 wrapper-clause-scope +167703 wrapper-scope +modifier-scope +conjuncted-wg +167708 conjuncted-wg +167710 modifier-scope +167713 modifier-scope +wrapper-scope +167716 group +167719 conjuncted-wg +167721 wrapper-clause-scope +167723 wrapper-scope +167726 conjuncted-wg +167728 modifier-scope +conjuncted-wg +167731 modifier-scope +167735 wrapper-scope +167739 modifier-scope +wrapper-clause-scope +167743 wrapper-clause-scope +167746 modifier-scope +modifier-scope +167749 wrapper-clause-scope +group +167754 wrapper-clause-scope +167756 wrapper-scope +modifier-scope +modifier-scope +167760 wrapper-clause-scope +167764 wrapper-scope +167766 modifier-scope +modifier-scope +167771 wrapper-scope +modifier-scope +conjuncted-wg +167775 group +group +167779 conjuncted-wg +167783 modifier-scope +conjuncted-wg +167786 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +group +167796 wrapper-clause-scope +167799 wrapper-clause-scope +167803 group +modifier-scope +modifier-scope +conjuncted-wg +167808 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +167814 conjuncted-wg +wrapper-scope +modifier-scope +167818 conjuncted-wg +modifier-scope +modifier-scope +167822 wrapper-clause-scope +167824 wrapper-clause-scope +167829 wrapper-clause-scope +167832 wrapper-clause-scope +167836 modifier-scope +167839 conjuncted-wg +167842 wrapper-clause-scope +167844 modifier-scope +167847 wrapper-scope +167852 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +167858 wrapper-clause-scope +167861 modifier-scope +modifier-scope +wrapper-scope +167865 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +167871 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +167878 modifier-scope +group +167881 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +167888 modifier-clause-scope +wrapper-clause-scope +167891 wrapper-scope +167893 wrapper-clause-scope +167895 wrapper-clause-scope +167899 modifier-scope +modifier-scope +conjuncted-wg +167903 modifier-scope +modifier-scope +modifier-scope +167907 wrapper-clause-scope +167909 modifier-scope +wrapper-clause-scope +167915 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +167921 group +group +wrapper-clause-scope +167925 wrapper-scope +167927 wrapper-scope +167929 conjuncted-wg +167933 wrapper-scope +wrapper-scope +modifier-scope +167937 conjuncted-wg +167939 conjuncted-wg +group +167942 modifier-scope +wrapper-clause-scope +167945 modifier-scope +modifier-scope +modifier-scope +167950 modifier-scope +modifier-scope +167954 wrapper-clause-scope +group +167957 wrapper-clause-scope +167959 modifier-scope +wrapper-scope +group +modifier-scope +167965 modifier-scope +conjuncted-wg +modifier-scope +167969 wrapper-clause-scope +167972 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +167981 wrapper-scope +modifier-scope +167984 modifier-scope +167986 wrapper-clause-scope +167990 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +167998 conjuncted-wg +group +168002 modifier-scope +168004 wrapper-clause-scope +168011 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +168016 wrapper-scope +modifier-scope +168019 wrapper-clause-scope +168022 modifier-scope +168026 wrapper-clause-scope +168028 modifier-scope +168030 wrapper-clause-scope +168032 modifier-scope +168034 wrapper-scope +group +modifier-scope +wrapper-clause-scope +168039 wrapper-clause-scope +168041 wrapper-clause-scope +168043 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +168050 modifier-scope +168053 conjuncted-wg +168056 wrapper-scope +168059 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +168067 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +168073 modifier-scope +modifier-scope +modifier-scope +168077 group +168080 modifier-scope +168083 modifier-scope +168085 wrapper-clause-scope +168093 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +168098 conjuncted-wg +168101 group +168105 wrapper-clause-scope +168108 wrapper-clause-scope +168110 modifier-scope +wrapper-scope +modifier-scope +168114 wrapper-clause-scope +168116 modifier-scope +168119 modifier-scope +wrapper-scope +group +modifier-scope +168124 wrapper-clause-scope +168126 wrapper-scope +168131 wrapper-clause-scope +group +168134 wrapper-scope +modifier-scope +168138 conjuncted-wg +168140 modifier-scope +168142 wrapper-scope +group +modifier-scope +168146 wrapper-clause-scope +168148 wrapper-scope +wrapper-clause-scope +168151 modifier-scope +168153 wrapper-clause-scope +168155 wrapper-scope +168157 wrapper-clause-scope +168159 modifier-scope +group +168162 modifier-scope +wrapper-scope +wrapper-clause-scope +168166 modifier-scope +modifier-scope +modifier-scope +168173 conjuncted-wg +168175 wrapper-clause-scope +168177 modifier-scope +168179 wrapper-clause-scope +168182 wrapper-clause-scope +168184 modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +168189 wrapper-clause-scope +168191 wrapper-clause-scope +168194 wrapper-clause-scope +168198 wrapper-clause-scope +group +168202 modifier-scope +168204 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +168214 wrapper-clause-scope +168218 conjuncted-wg +168220 group +modifier-scope +168224 group +wrapper-clause-scope +168228 wrapper-clause-scope +168231 modifier-scope +modifier-scope +modifier-scope +168235 conjuncted-wg +168239 modifier-scope +168241 wrapper-clause-scope +168243 group +168245 wrapper-scope +168248 wrapper-clause-scope +168252 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +168259 wrapper-clause-scope +168261 modifier-scope +168263 modifier-scope +group +168267 wrapper-scope +modifier-scope +wrapper-clause-scope +168271 modifier-scope +168273 wrapper-clause-scope +168276 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +168284 wrapper-clause-scope +168286 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +168293 wrapper-clause-scope +168295 wrapper-scope +group +modifier-scope +168299 wrapper-clause-scope +168302 group +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +wrapper-clause-scope +168311 wrapper-scope +modifier-scope +conjuncted-wg +group +168316 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +168323 wrapper-clause-scope +168325 modifier-scope +wrapper-scope +modifier-scope +168329 wrapper-clause-scope +168331 modifier-scope +168334 modifier-scope +modifier-scope +modifier-scope +168338 wrapper-clause-scope +168340 modifier-scope +168343 wrapper-clause-scope +168345 wrapper-scope +wrapper-clause-scope +168348 wrapper-scope +modifier-scope +168351 conjuncted-wg +168354 modifier-scope +168358 wrapper-clause-scope +168360 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +168365 modifier-scope +168367 wrapper-clause-scope +168369 wrapper-scope +modifier-scope +168372 modifier-scope +modifier-clause-scope +apposition-group +168377 wrapper-clause-scope +168379 modifier-clause-scope +modifier-scope +168383 wrapper-clause-scope +group +group +168388 modifier-scope +168390 group +168394 conjuncted-wg +group +wrapper-clause-scope +168398 wrapper-clause-scope +168400 wrapper-clause-scope +168402 wrapper-scope +168404 wrapper-clause-scope +group +168407 wrapper-scope +modifier-scope +168410 wrapper-scope +modifier-scope +modifier-scope +168414 group +168417 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +168422 wrapper-scope +wrapper-scope +168425 wrapper-clause-scope +168428 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +168435 modifier-scope +conjuncted-wg +168438 modifier-scope +168440 wrapper-clause-scope +168443 modifier-scope +168446 modifier-scope +wrapper-scope +modifier-scope +168450 wrapper-clause-scope +168453 modifier-scope +168456 modifier-scope +wrapper-clause-scope +168459 group +wrapper-clause-scope +168466 wrapper-clause-scope +168468 wrapper-clause-scope +168470 modifier-scope +168472 wrapper-clause-scope +168477 wrapper-clause-scope +168479 modifier-scope +168481 wrapper-clause-scope +168484 conjuncted-wg +168487 modifier-scope +wrapper-scope +modifier-scope +168491 group +168493 wrapper-scope +modifier-scope +modifier-scope +168498 wrapper-clause-scope +168501 modifier-scope +modifier-scope +168504 modifier-scope +modifier-scope +168507 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +168515 modifier-scope +conjuncted-wg +168519 modifier-scope +wrapper-clause-scope +168524 modifier-scope +modifier-scope +modifier-scope +168528 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +168535 wrapper-clause-scope +168539 modifier-scope +conjuncted-wg +168543 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +168549 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +168555 wrapper-scope +168559 modifier-scope +modifier-scope +conjuncted-wg +168564 wrapper-scope +modifier-scope +conjuncted-wg +168568 wrapper-scope +modifier-scope +modifier-scope +168572 wrapper-clause-scope +168574 group +wrapper-clause-scope +168579 modifier-scope +conjuncted-wg +168582 modifier-scope +modifier-scope +conjuncted-wg +168586 wrapper-scope +wrapper-clause-scope +168590 wrapper-clause-scope +168593 modifier-clause-scope +group +168598 wrapper-clause-scope +168600 modifier-scope +modifier-scope +168603 wrapper-clause-scope +168606 wrapper-scope +modifier-clause-scope +168609 apposition-group +168611 wrapper-scope +modifier-scope +168614 modifier-clause-scope +168616 wrapper-scope +168618 wrapper-clause-scope +168623 wrapper-clause-scope +168627 modifier-scope +modifier-scope +168630 conjuncted-wg +168634 wrapper-clause-scope +168636 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +168644 group +modifier-scope +modifier-scope +modifier-scope +168650 wrapper-scope +modifier-scope +168654 wrapper-scope +conjuncted-wg +168657 wrapper-scope +168659 wrapper-clause-scope +168661 wrapper-clause-scope +168665 modifier-scope +modifier-scope +conjuncted-wg +168671 wrapper-clause-scope +168674 modifier-scope +conjuncted-wg +168677 wrapper-scope +modifier-scope +group +168681 wrapper-clause-scope +168683 modifier-scope +modifier-scope +conjuncted-wg +168687 wrapper-scope +modifier-scope +168691 modifier-scope +168693 wrapper-scope +modifier-scope +168696 conjuncted-wg +group +168703 group +168705 modifier-scope +168707 wrapper-scope +modifier-scope +conjuncted-wg +168711 wrapper-scope +168714 wrapper-scope +modifier-scope +group +168718 wrapper-clause-scope +168721 wrapper-clause-scope +168723 wrapper-clause-scope +168725 modifier-scope +168727 wrapper-clause-scope +168729 modifier-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +168735 wrapper-scope +168737 wrapper-clause-scope +168739 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +168747 wrapper-clause-scope +168749 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +168755 group +group +group +168762 group +group +168765 modifier-scope +168767 modifier-scope +168769 wrapper-scope +168771 wrapper-clause-scope +168773 modifier-clause-scope +wrapper-clause-scope +168777 wrapper-clause-scope +168780 wrapper-clause-scope +168782 modifier-scope +wrapper-scope +168786 conjuncted-wg +168788 conjuncted-wg +168790 conjuncted-wg +168793 wrapper-clause-scope +168795 modifier-scope +group +168798 group +168800 wrapper-clause-scope +168804 wrapper-clause-scope +168806 modifier-scope +168808 modifier-scope +modifier-scope +168811 wrapper-clause-scope +168814 modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +wrapper-scope +conjuncted-wg +168823 modifier-scope +conjuncted-wg +168826 modifier-scope +conjuncted-wg +168829 modifier-scope +conjuncted-wg +168833 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +168838 conjuncted-wg +168841 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +168852 wrapper-clause-scope +168855 modifier-scope +conjuncted-wg +wrapper-clause-scope +168859 wrapper-scope +modifier-scope +168863 modifier-scope +conjuncted-wg +wrapper-clause-scope +168869 modifier-scope +168871 wrapper-clause-scope +168873 apposition-group +apposition-group +modifier-clause-scope +modifier-scope +168878 wrapper-scope +168880 modifier-scope +wrapper-scope +modifier-scope +168885 wrapper-scope +168887 group +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +168895 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +168902 wrapper-clause-scope +group +168906 apposition-group +apposition-group +modifier-scope +modifier-scope +wrapper-scope +168913 group +modifier-scope +modifier-scope +168919 modifier-scope +modifier-scope +modifier-scope +modifier-scope +168925 modifier-scope +168928 wrapper-clause-scope +168932 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +168938 wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +168944 wrapper-scope +modifier-scope +conjuncted-wg +168949 modifier-scope +modifier-scope +modifier-scope +modifier-scope +168954 wrapper-clause-scope +168957 group +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +168966 wrapper-clause-scope +168968 apposition-group +modifier-scope +168971 wrapper-scope +modifier-scope +168974 modifier-scope +conjuncted-wg +modifier-scope +168978 wrapper-scope +168983 modifier-scope +modifier-scope +168987 wrapper-scope +modifier-scope +168990 wrapper-clause-scope +168993 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +169001 modifier-scope +conjuncted-wg +169004 modifier-scope +169006 wrapper-scope +modifier-scope +conjuncted-wg +169010 modifier-scope +modifier-scope +modifier-scope +169015 modifier-scope +group +169018 wrapper-clause-scope +169020 group +169022 wrapper-clause-scope +169025 wrapper-clause-scope +169028 modifier-scope +169030 modifier-scope +wrapper-scope +modifier-scope +169034 wrapper-clause-scope +169036 wrapper-scope +wrapper-clause-scope +169039 wrapper-scope +modifier-scope +169042 group +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +169048 modifier-scope +169050 wrapper-clause-scope +169052 modifier-scope +169054 wrapper-clause-scope +169057 modifier-scope +169060 wrapper-scope +conjuncted-wg +169063 modifier-scope +conjuncted-wg +169066 wrapper-scope +169068 wrapper-clause-scope +169071 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +169076 modifier-scope +modifier-scope +wrapper-scope +169080 wrapper-clause-scope +169083 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +169088 conjuncted-wg +169090 wrapper-scope +169092 wrapper-clause-scope +169095 modifier-scope +modifier-scope +group +169099 wrapper-clause-scope +169101 wrapper-clause-scope +169103 group +wrapper-clause-scope +169107 group +169109 wrapper-clause-scope +group +169112 wrapper-clause-scope +169115 group +169118 modifier-clause-scope +apposition-group +169122 wrapper-clause-scope +169125 modifier-scope +modifier-scope +wrapper-clause-scope +169130 wrapper-scope +modifier-scope +conjuncted-wg +169135 wrapper-scope +modifier-scope +169141 wrapper-clause-scope +169144 wrapper-scope +modifier-scope +wrapper-scope +169148 conjuncted-wg +modifier-scope +169151 modifier-scope +modifier-scope +169154 wrapper-clause-scope +169159 wrapper-clause-scope +169163 modifier-scope +modifier-scope +conjuncted-wg +169169 modifier-scope +group +169172 wrapper-clause-scope +169174 group +169176 modifier-scope +modifier-scope +wrapper-clause-scope +169180 wrapper-scope +modifier-scope +169184 wrapper-clause-scope +group +169188 modifier-scope +modifier-scope +169191 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +169198 wrapper-clause-scope +169202 wrapper-scope +modifier-scope +conjuncted-wg +169206 modifier-scope +modifier-scope +169210 wrapper-clause-scope +group +169213 modifier-scope +modifier-scope +169218 wrapper-clause-scope +group +wrapper-clause-scope +169222 wrapper-scope +modifier-scope +169226 conjuncted-wg +169229 wrapper-clause-scope +group +169233 wrapper-clause-scope +169236 wrapper-clause-scope +169238 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +169245 wrapper-clause-scope +169249 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +169257 modifier-scope +conjuncted-wg +169261 conjuncted-wg +169264 wrapper-clause-scope +169267 modifier-scope +169270 modifier-scope +modifier-scope +169273 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +169278 wrapper-clause-scope +169281 modifier-scope +modifier-scope +169284 wrapper-scope +modifier-scope +modifier-scope +169288 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +169296 apposition-group +169299 wrapper-clause-scope +169301 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +169310 modifier-scope +modifier-scope +modifier-scope +group +group +modifier-scope +169317 group +wrapper-clause-scope +169320 wrapper-scope +group +modifier-scope +modifier-scope +169326 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +169331 modifier-scope +modifier-scope +169334 modifier-clause-scope +169336 wrapper-scope +modifier-scope +group +169340 modifier-scope +modifier-scope +169343 modifier-scope +modifier-scope +169346 group +wrapper-clause-scope +169349 wrapper-scope +modifier-scope +169352 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +169357 wrapper-clause-scope +169360 wrapper-scope +169362 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +169370 wrapper-scope +wrapper-scope +modifier-scope +group +169375 modifier-scope +modifier-scope +169378 wrapper-clause-scope +169380 modifier-scope +169384 modifier-scope +conjuncted-wg +169387 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +169394 conjuncted-wg +modifier-scope +169397 wrapper-clause-scope +169401 modifier-scope +modifier-scope +wrapper-scope +169407 modifier-scope +modifier-scope +modifier-scope +modifier-scope +169414 conjuncted-wg +169416 modifier-scope +169418 wrapper-clause-scope +group +169421 wrapper-scope +modifier-scope +modifier-scope +169426 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +169431 wrapper-scope +modifier-scope +wrapper-scope +169435 wrapper-clause-scope +169438 wrapper-scope +modifier-scope +169442 modifier-scope +conjuncted-wg +169445 modifier-scope +wrapper-scope +wrapper-scope +169449 wrapper-clause-scope +169451 wrapper-scope +modifier-scope +group +169455 group +modifier-scope +modifier-scope +modifier-scope +169460 wrapper-scope +169462 wrapper-clause-scope +169464 modifier-scope +wrapper-scope +modifier-scope +169468 wrapper-clause-scope +169471 wrapper-scope +modifier-scope +modifier-scope +169475 wrapper-scope +modifier-scope +conjuncted-wg +169480 wrapper-scope +modifier-scope +conjuncted-wg +169484 modifier-scope +169486 wrapper-clause-scope +169488 wrapper-scope +wrapper-clause-scope +169491 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +169497 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +169502 wrapper-clause-scope +group +169506 modifier-scope +conjuncted-wg +169509 modifier-scope +modifier-scope +modifier-scope +169514 conjuncted-wg +169516 wrapper-scope +modifier-scope +169519 wrapper-clause-scope +169522 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +169528 conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +169535 wrapper-clause-scope +169538 wrapper-clause-scope +169540 modifier-scope +169543 wrapper-scope +conjuncted-wg +169547 modifier-scope +169549 wrapper-clause-scope +169552 modifier-scope +169554 wrapper-clause-scope +169560 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +169569 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +169575 wrapper-clause-scope +169578 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +169587 wrapper-clause-scope +169589 wrapper-scope +169591 wrapper-clause-scope +169593 modifier-scope +169595 wrapper-scope +modifier-scope +169598 wrapper-clause-scope +169600 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +169605 wrapper-scope +169607 wrapper-clause-scope +169609 conjuncted-wg +wrapper-clause-scope +wrapper-clause-scope +169613 modifier-scope +169615 wrapper-clause-scope +169618 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +169627 group +group +169631 conjuncted-wg +169633 group +169637 group +169640 modifier-scope +modifier-scope +modifier-scope +169644 wrapper-clause-scope +169646 modifier-scope +169649 conjuncted-wg +169651 wrapper-scope +169653 wrapper-clause-scope +169655 modifier-scope +modifier-scope +modifier-scope +169660 conjuncted-wg +169662 modifier-scope +wrapper-scope +169665 wrapper-clause-scope +169667 wrapper-clause-scope +169670 group +group +169674 modifier-scope +modifier-scope +wrapper-scope +169679 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +169686 wrapper-clause-scope +169688 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +169696 wrapper-clause-scope +169699 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +169705 conjuncted-wg +wrapper-scope +169708 conjuncted-wg +169710 wrapper-clause-scope +169713 modifier-scope +modifier-scope +169716 conjuncted-wg +169718 wrapper-scope +169720 wrapper-clause-scope +169724 modifier-scope +169726 wrapper-clause-scope +169729 modifier-scope +conjuncted-wg +169733 wrapper-clause-scope +group +169736 group +169738 modifier-scope +169740 wrapper-scope +modifier-clause-scope +169743 wrapper-clause-scope +169745 conjuncted-wg +wrapper-clause-scope +169749 wrapper-clause-scope +169751 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +169757 wrapper-clause-scope +169760 modifier-clause-scope +169762 modifier-scope +conjuncted-wg +169766 modifier-scope +conjuncted-wg +169770 modifier-scope +wrapper-clause-scope +169774 wrapper-clause-scope +169777 modifier-scope +169779 conjuncted-wg +group +169782 wrapper-scope +modifier-scope +169786 wrapper-clause-scope +169790 conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +169796 conjuncted-wg +169798 wrapper-clause-scope +169801 wrapper-clause-scope +169803 group +group +169806 wrapper-scope +modifier-clause-scope +modifier-clause-scope +169810 wrapper-clause-scope +169812 modifier-scope +wrapper-clause-scope +169815 wrapper-scope +169817 wrapper-clause-scope +169821 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +169829 modifier-scope +169831 wrapper-clause-scope +169833 wrapper-scope +169836 conjuncted-wg +169839 wrapper-clause-scope +169841 wrapper-clause-scope +169845 wrapper-clause-scope +169850 modifier-scope +modifier-scope +conjuncted-wg +169854 group +169858 wrapper-clause-scope +169861 wrapper-scope +modifier-scope +conjuncted-wg +169866 wrapper-clause-scope +169870 conjuncted-wg +169875 conjuncted-wg +group +169880 modifier-scope +conjuncted-wg +169883 wrapper-scope +modifier-scope +modifier-scope +169887 wrapper-scope +modifier-scope +169890 wrapper-clause-scope +169896 conjuncted-wg +169898 modifier-scope +wrapper-clause-scope +169902 wrapper-scope +conjuncted-wg +169905 wrapper-scope +modifier-scope +169908 wrapper-clause-scope +169910 wrapper-scope +169912 wrapper-clause-scope +group +169915 wrapper-scope +wrapper-scope +169918 wrapper-clause-scope +169920 wrapper-scope +169922 wrapper-clause-scope +169925 wrapper-clause-scope +169927 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +169933 modifier-scope +169935 wrapper-clause-scope +169938 wrapper-scope +modifier-clause-scope +169941 wrapper-scope +169943 wrapper-clause-scope +169948 wrapper-scope +modifier-scope +modifier-clause-scope +apposition-group +169953 conjuncted-wg +169956 modifier-clause-scope +apposition-group +169959 modifier-scope +169961 wrapper-clause-scope +169963 modifier-scope +169965 modifier-scope +modifier-scope +modifier-scope +169970 modifier-scope +modifier-scope +169973 wrapper-clause-scope +169975 modifier-scope +modifier-scope +169979 conjuncted-wg +169981 wrapper-scope +modifier-scope +modifier-scope +group +169987 group +169990 wrapper-clause-scope +169992 group +modifier-scope +169995 wrapper-clause-scope +169997 modifier-scope +169999 modifier-scope +modifier-scope +wrapper-clause-scope +170003 wrapper-scope +170006 wrapper-scope +modifier-scope +modifier-scope +group +170012 group +170014 modifier-scope +170016 modifier-scope +modifier-scope +conjuncted-wg +170022 conjuncted-wg +170025 modifier-scope +modifier-scope +conjuncted-wg +170029 conjuncted-wg +wrapper-clause-scope +170032 wrapper-clause-scope +170034 modifier-scope +modifier-scope +modifier-scope +170038 wrapper-scope +modifier-scope +170042 modifier-scope +170044 group +170048 modifier-scope +modifier-scope +conjuncted-wg +170052 wrapper-scope +modifier-scope +modifier-scope +170056 wrapper-clause-scope +170059 conjuncted-wg +170062 modifier-scope +wrapper-scope +wrapper-clause-scope +170067 conjuncted-wg +170069 modifier-scope +170071 wrapper-clause-scope +170074 wrapper-clause-scope +170076 wrapper-scope +modifier-scope +170079 wrapper-clause-scope +170082 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +170088 wrapper-clause-scope +170093 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +170102 wrapper-clause-scope +170106 wrapper-clause-scope +170110 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +170116 modifier-scope +170118 conjuncted-wg +170120 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +170127 conjuncted-wg +170130 wrapper-clause-scope +170132 modifier-scope +modifier-scope +modifier-scope +170136 wrapper-clause-scope +170138 wrapper-scope +170140 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +170146 wrapper-scope +modifier-scope +170149 conjuncted-wg +170151 wrapper-clause-scope +170154 modifier-scope +group +170157 modifier-scope +wrapper-clause-scope +170161 wrapper-clause-scope +170164 group +170169 wrapper-clause-scope +170171 wrapper-scope +170173 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +170178 wrapper-clause-scope +170181 conjuncted-wg +170185 wrapper-scope +170187 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +170195 modifier-scope +modifier-scope +170198 wrapper-clause-scope +170200 modifier-scope +wrapper-clause-scope +170203 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +170208 modifier-scope +wrapper-scope +170214 modifier-scope +modifier-scope +wrapper-scope +170219 wrapper-clause-scope +170222 wrapper-clause-scope +170224 wrapper-scope +modifier-scope +conjuncted-wg +170228 wrapper-scope +modifier-scope +modifier-scope +170233 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +170238 wrapper-clause-scope +170240 wrapper-clause-scope +170243 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +conjuncted-wg +170251 modifier-scope +170253 wrapper-clause-scope +170257 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +170262 wrapper-clause-scope +170265 modifier-scope +modifier-scope +conjuncted-wg +170270 modifier-scope +conjuncted-wg +170273 modifier-scope +conjuncted-wg +170276 modifier-scope +wrapper-scope +modifier-scope +170280 wrapper-clause-scope +170284 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +170290 modifier-scope +modifier-scope +170294 modifier-scope +170296 wrapper-clause-scope +170298 modifier-scope +170300 modifier-scope +170303 wrapper-clause-scope +170306 group +170308 wrapper-clause-scope +170311 conjuncted-wg +170314 conjuncted-wg +modifier-scope +wrapper-scope +170318 wrapper-clause-scope +170321 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +conjuncted-wg +170330 modifier-scope +modifier-scope +modifier-scope +170337 modifier-scope +conjuncted-wg +170340 modifier-clause-scope +wrapper-clause-scope +170343 wrapper-scope +170345 wrapper-clause-scope +170349 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +170354 modifier-scope +wrapper-scope +modifier-scope +170358 wrapper-clause-scope +170360 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +170367 wrapper-clause-scope +170369 wrapper-scope +170371 wrapper-clause-scope +170373 modifier-clause-scope +170376 modifier-scope +170378 wrapper-clause-scope +group +group +170382 wrapper-clause-scope +170384 modifier-scope +wrapper-clause-scope +170388 wrapper-clause-scope +170390 group +modifier-scope +wrapper-clause-scope +170394 modifier-scope +modifier-scope +170397 wrapper-scope +modifier-scope +170400 wrapper-clause-scope +170403 modifier-scope +group +170407 conjuncted-wg +170411 conjuncted-wg +170414 wrapper-clause-scope +170417 wrapper-clause-scope +170420 wrapper-scope +170422 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +170429 modifier-scope +170431 wrapper-clause-scope +170434 conjuncted-wg +170436 modifier-scope +modifier-scope +170439 wrapper-clause-scope +170442 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +170449 wrapper-clause-scope +170451 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +170458 wrapper-clause-scope +170460 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +170465 wrapper-clause-scope +170468 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +170481 conjuncted-wg +modifier-scope +170485 wrapper-scope +170487 wrapper-clause-scope +group +170490 modifier-scope +modifier-scope +wrapper-clause-scope +170494 wrapper-scope +modifier-scope +wrapper-clause-scope +170499 wrapper-clause-scope +170501 wrapper-clause-scope +170503 wrapper-clause-scope +170507 wrapper-clause-scope +170510 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +170515 conjuncted-wg +170518 wrapper-clause-scope +170520 modifier-scope +modifier-scope +modifier-scope +170524 wrapper-clause-scope +170526 wrapper-clause-scope +170529 wrapper-clause-scope +170533 wrapper-scope +modifier-scope +conjuncted-wg +170538 conjuncted-wg +170540 wrapper-scope +170542 wrapper-clause-scope +group +170546 wrapper-clause-scope +170548 wrapper-scope +conjuncted-wg +wrapper-clause-scope +170554 conjuncted-wg +170557 modifier-scope +170559 wrapper-clause-scope +170562 modifier-scope +conjuncted-wg +170566 modifier-scope +conjuncted-wg +170571 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +170581 apposition-group +170583 modifier-scope +170585 wrapper-clause-scope +170588 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +group +modifier-scope +conjuncted-wg +apposition-group +group +170605 wrapper-clause-scope +170607 wrapper-scope +170609 wrapper-clause-scope +170611 modifier-scope +wrapper-clause-scope +170616 wrapper-clause-scope +170619 modifier-scope +wrapper-scope +170622 wrapper-clause-scope +170624 wrapper-clause-scope +170627 wrapper-clause-scope +170629 group +modifier-scope +wrapper-clause-scope +170633 wrapper-scope +170635 wrapper-clause-scope +170637 conjuncted-wg +wrapper-clause-scope +170640 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +170646 wrapper-clause-scope +170649 wrapper-scope +170653 wrapper-clause-scope +170655 wrapper-clause-scope +170657 wrapper-scope +170659 modifier-scope +modifier-scope +170662 wrapper-clause-scope +170664 wrapper-clause-scope +170666 wrapper-scope +modifier-scope +modifier-scope +170671 wrapper-clause-scope +170673 wrapper-clause-scope +170676 modifier-scope +wrapper-scope +conjuncted-wg +170684 wrapper-clause-scope +170689 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +170697 modifier-scope +conjuncted-wg +170700 modifier-scope +modifier-scope +170703 wrapper-clause-scope +170705 wrapper-clause-scope +170707 modifier-scope +modifier-scope +modifier-scope +170711 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +wrapper-clause-scope +170719 wrapper-clause-scope +170723 wrapper-clause-scope +170725 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +170733 modifier-scope +170736 modifier-scope +170738 wrapper-clause-scope +170742 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +170750 wrapper-scope +170753 wrapper-clause-scope +170756 wrapper-scope +conjuncted-wg +170761 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +170770 wrapper-clause-scope +170775 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +170780 wrapper-clause-scope +170783 wrapper-clause-scope +170785 wrapper-scope +group +170790 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +170796 group +wrapper-clause-scope +170799 modifier-scope +modifier-scope +modifier-scope +170804 modifier-scope +conjuncted-wg +conjuncted-wg +170808 wrapper-clause-scope +170811 wrapper-scope +modifier-scope +170814 wrapper-clause-scope +170817 wrapper-scope +modifier-scope +wrapper-clause-scope +170822 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +170827 modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +170835 wrapper-clause-scope +170838 wrapper-scope +conjuncted-wg +170841 wrapper-scope +modifier-scope +modifier-scope +170847 wrapper-clause-scope +170851 wrapper-clause-scope +170853 wrapper-scope +wrapper-clause-scope +170857 conjuncted-wg +170860 wrapper-scope +modifier-scope +conjuncted-wg +170865 modifier-scope +conjuncted-wg +170868 conjuncted-wg +170871 group +170873 wrapper-scope +modifier-scope +170876 modifier-scope +conjuncted-wg +170879 wrapper-scope +wrapper-clause-scope +170882 modifier-scope +conjuncted-wg +170886 wrapper-clause-scope +170888 modifier-scope +conjuncted-wg +170891 wrapper-scope +wrapper-clause-scope +170894 conjuncted-wg +170897 wrapper-scope +modifier-scope +conjuncted-wg +170903 modifier-scope +conjuncted-wg +170906 conjuncted-wg +170908 conjuncted-wg +170911 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +170920 conjuncted-wg +conjuncted-wg +170924 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +170930 wrapper-clause-scope +170936 wrapper-clause-scope +group +wrapper-clause-scope +170940 wrapper-scope +170942 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +170948 wrapper-clause-scope +170952 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +170960 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +170969 conjuncted-wg +170971 conjuncted-wg +170975 conjuncted-wg +170979 conjuncted-wg +170982 wrapper-clause-scope +170986 modifier-scope +modifier-scope +conjuncted-wg +170990 modifier-scope +modifier-scope +170994 wrapper-clause-scope +170996 modifier-scope +170998 wrapper-clause-scope +171001 modifier-clause-scope +wrapper-scope +modifier-clause-scope +apposition-group +171006 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +171013 modifier-scope +conjuncted-wg +171016 group +modifier-scope +wrapper-clause-scope +171020 wrapper-scope +171022 wrapper-clause-scope +171024 wrapper-clause-scope +171026 wrapper-scope +modifier-scope +apposition-group +171031 wrapper-clause-scope +171033 modifier-scope +wrapper-scope +conjuncted-wg +171038 wrapper-scope +conjuncted-wg +171045 conjuncted-wg +wrapper-scope +modifier-scope +171049 wrapper-clause-scope +171051 wrapper-clause-scope +171053 wrapper-scope +modifier-scope +171058 wrapper-clause-scope +171060 modifier-scope +conjuncted-wg +171065 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +171078 modifier-scope +conjuncted-wg +171082 wrapper-clause-scope +171084 wrapper-clause-scope +171086 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +171093 modifier-scope +conjuncted-wg +171096 conjuncted-wg +171099 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +171105 wrapper-clause-scope +171107 wrapper-clause-scope +wrapper-clause-scope +171110 modifier-scope +wrapper-clause-scope +171114 wrapper-scope +modifier-scope +conjuncted-wg +171118 wrapper-scope +modifier-scope +171121 wrapper-clause-scope +wrapper-clause-scope +171124 wrapper-scope +modifier-scope +171127 wrapper-clause-scope +group +171130 modifier-scope +wrapper-clause-scope +group +171134 wrapper-clause-scope +171136 group +171138 wrapper-clause-scope +171140 wrapper-scope +171142 group +wrapper-clause-scope +171148 wrapper-clause-scope +171150 group +171157 wrapper-scope +modifier-scope +conjuncted-wg +171162 wrapper-clause-scope +171166 conjuncted-wg +group +171170 modifier-clause-scope +171172 wrapper-scope +171174 wrapper-clause-scope +171176 group +171178 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +171184 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +171191 conjuncted-wg +171193 conjuncted-wg +conjuncted-wg +group +171197 modifier-scope +171199 conjuncted-wg +wrapper-clause-scope +171204 modifier-scope +group +171209 wrapper-scope +modifier-scope +171212 wrapper-clause-scope +171214 wrapper-clause-scope +171216 modifier-scope +modifier-scope +wrapper-clause-scope +171220 modifier-scope +171222 wrapper-clause-scope +171226 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +171231 wrapper-scope +modifier-scope +171234 wrapper-scope +apposition-group +modifier-scope +171239 wrapper-clause-scope +171241 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +171251 wrapper-clause-scope +171254 conjuncted-wg +171256 modifier-scope +modifier-scope +conjuncted-wg +171260 modifier-scope +wrapper-clause-scope +171264 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +171271 wrapper-clause-scope +171273 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +171280 wrapper-clause-scope +171283 wrapper-scope +conjuncted-wg +171286 wrapper-scope +modifier-scope +modifier-scope +171290 wrapper-clause-scope +group +171293 wrapper-scope +modifier-scope +modifier-scope +171298 wrapper-scope +modifier-scope +171301 wrapper-clause-scope +171305 modifier-scope +wrapper-clause-scope +171308 wrapper-scope +modifier-scope +conjuncted-wg +171312 modifier-scope +wrapper-scope +171315 wrapper-clause-scope +171318 modifier-scope +modifier-scope +conjuncted-wg +171322 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +171327 modifier-scope +171329 wrapper-clause-scope +171331 wrapper-scope +modifier-scope +171334 wrapper-scope +modifier-scope +171337 wrapper-clause-scope +171340 conjuncted-wg +171345 wrapper-clause-scope +171348 wrapper-clause-scope +171352 modifier-scope +conjuncted-wg +171355 modifier-scope +group +171360 wrapper-clause-scope +171363 modifier-scope +conjuncted-wg +171366 modifier-scope +171368 wrapper-clause-scope +171370 group +171374 wrapper-clause-scope +171377 modifier-scope +conjuncted-wg +171380 wrapper-scope +wrapper-clause-scope +171383 wrapper-clause-scope +171386 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +171391 wrapper-clause-scope +171393 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +171402 wrapper-clause-scope +group +171405 wrapper-scope +modifier-scope +171408 wrapper-scope +modifier-scope +apposition-group +modifier-scope +wrapper-scope +modifier-scope +171415 modifier-scope +wrapper-scope +modifier-scope +171419 wrapper-clause-scope +171422 modifier-scope +171424 wrapper-scope +wrapper-clause-scope +171429 conjuncted-wg +conjuncted-wg +171433 wrapper-scope +modifier-scope +conjuncted-wg +171437 modifier-scope +conjuncted-wg +171442 wrapper-clause-scope +171445 wrapper-scope +171447 conjuncted-wg +171449 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +171458 wrapper-clause-scope +171463 modifier-scope +wrapper-scope +conjuncted-wg +171467 conjuncted-wg +group +171471 modifier-scope +group +171475 conjuncted-wg +171477 group +modifier-scope +group +modifier-scope +modifier-scope +171483 modifier-scope +171485 wrapper-clause-scope +171489 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +171495 wrapper-clause-scope +171498 modifier-scope +171500 wrapper-clause-scope +171503 modifier-scope +wrapper-clause-scope +171507 wrapper-clause-scope +171509 wrapper-clause-scope +171511 wrapper-scope +modifier-scope +171514 wrapper-clause-scope +171516 wrapper-scope +modifier-scope +modifier-clause-scope +modifier-scope +modifier-scope +171523 wrapper-clause-scope +171526 group +171528 wrapper-scope +modifier-scope +wrapper-clause-scope +171532 wrapper-scope +171534 wrapper-clause-scope +171537 wrapper-clause-scope +171541 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +171549 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +171557 wrapper-scope +modifier-scope +171560 wrapper-clause-scope +171563 wrapper-clause-scope +171565 conjuncted-wg +171568 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +171574 wrapper-clause-scope +171576 group +171579 wrapper-clause-scope +171582 wrapper-clause-scope +171585 wrapper-scope +modifier-scope +conjuncted-wg +171591 group +wrapper-clause-scope +171594 wrapper-clause-scope +171596 modifier-scope +171599 conjuncted-wg +171601 conjuncted-wg +171604 wrapper-clause-scope +171607 wrapper-clause-scope +171610 wrapper-clause-scope +171612 conjuncted-wg +171614 wrapper-scope +modifier-scope +171617 wrapper-clause-scope +171621 wrapper-scope +modifier-scope +modifier-scope +171625 wrapper-clause-scope +group +171628 wrapper-scope +modifier-scope +171631 wrapper-clause-scope +171633 wrapper-clause-scope +171635 wrapper-scope +171637 wrapper-clause-scope +group +171643 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +171652 modifier-scope +conjuncted-wg +171656 wrapper-clause-scope +171660 conjuncted-wg +171663 wrapper-scope +modifier-scope +171666 modifier-scope +conjuncted-wg +171670 wrapper-clause-scope +171672 group +171674 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +171680 modifier-scope +wrapper-scope +conjuncted-wg +171684 wrapper-scope +modifier-scope +171687 wrapper-clause-scope +171690 modifier-clause-scope +modifier-scope +modifier-scope +171694 conjuncted-wg +171698 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +171704 wrapper-clause-scope +171706 modifier-scope +modifier-scope +wrapper-clause-scope +171711 modifier-scope +wrapper-clause-scope +171715 conjuncted-wg +171718 wrapper-clause-scope +171720 wrapper-scope +171722 wrapper-clause-scope +171725 modifier-scope +conjuncted-wg +171729 wrapper-clause-scope +171731 modifier-clause-scope +171734 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +171739 wrapper-scope +modifier-scope +conjuncted-wg +171743 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +171749 conjuncted-wg +171751 wrapper-scope +modifier-scope +171754 modifier-scope +wrapper-scope +modifier-scope +171758 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +171763 wrapper-clause-scope +171765 wrapper-clause-scope +171767 wrapper-clause-scope +171769 modifier-scope +modifier-scope +modifier-scope +171773 wrapper-clause-scope +171776 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +171782 modifier-scope +wrapper-clause-scope +171785 wrapper-scope +modifier-scope +171788 wrapper-clause-scope +171790 modifier-scope +171792 wrapper-scope +171794 modifier-scope +modifier-scope +wrapper-scope +171798 wrapper-scope +modifier-scope +171801 modifier-scope +modifier-scope +171804 wrapper-clause-scope +171806 modifier-scope +modifier-scope +171811 modifier-scope +conjuncted-wg +171816 wrapper-clause-scope +171819 wrapper-clause-scope +171822 wrapper-clause-scope +171825 modifier-scope +171828 conjuncted-wg +171831 conjuncted-wg +171833 conjuncted-wg +171835 modifier-scope +modifier-scope +171838 wrapper-clause-scope +171842 modifier-scope +modifier-scope +171847 wrapper-scope +conjuncted-wg +171850 wrapper-scope +modifier-scope +modifier-scope +171856 wrapper-scope +modifier-scope +171859 wrapper-clause-scope +group +171862 modifier-scope +modifier-scope +171865 modifier-scope +171867 wrapper-clause-scope +171869 modifier-scope +171872 modifier-scope +modifier-scope +group +171878 wrapper-clause-scope +171881 wrapper-scope +wrapper-clause-scope +171885 modifier-scope +conjuncted-wg +conjuncted-wg +group +modifier-scope +modifier-scope +171892 wrapper-clause-scope +171895 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +171903 conjuncted-wg +171906 conjuncted-wg +conjuncted-wg +171910 group +171913 conjuncted-wg +171916 modifier-scope +conjuncted-wg +171920 wrapper-clause-scope +171923 wrapper-clause-scope +171928 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +171939 modifier-scope +171941 wrapper-clause-scope +171944 modifier-scope +modifier-scope +modifier-scope +171950 wrapper-scope +171953 modifier-scope +171956 wrapper-clause-scope +group +171960 modifier-scope +conjuncted-wg +171963 wrapper-clause-scope +171965 modifier-scope +171967 wrapper-clause-scope +171969 modifier-scope +171971 wrapper-clause-scope +171974 wrapper-clause-scope +171976 conjuncted-wg +171981 wrapper-clause-scope +171985 conjuncted-wg +171987 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +171992 modifier-scope +modifier-scope +171995 wrapper-clause-scope +group +172000 wrapper-scope +modifier-scope +172003 wrapper-clause-scope +172005 modifier-scope +172010 conjuncted-wg +172012 group +modifier-scope +wrapper-clause-scope +172016 conjuncted-wg +172018 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +172024 wrapper-clause-scope +172026 group +modifier-scope +modifier-scope +172030 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +172035 conjuncted-wg +conjuncted-wg +conjuncted-wg +172039 wrapper-clause-scope +wrapper-clause-scope +172042 modifier-scope +modifier-scope +wrapper-scope +172046 wrapper-clause-scope +172048 wrapper-scope +172050 wrapper-clause-scope +172052 modifier-scope +wrapper-clause-scope +172055 wrapper-clause-scope +172058 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +172070 wrapper-clause-scope +172073 modifier-scope +wrapper-clause-scope +172077 modifier-scope +modifier-scope +172080 wrapper-clause-scope +172082 wrapper-scope +modifier-scope +modifier-scope +172086 wrapper-clause-scope +172088 modifier-scope +172091 wrapper-clause-scope +172094 modifier-scope +conjuncted-wg +172098 group +conjuncted-wg +172101 modifier-scope +modifier-scope +modifier-scope +modifier-scope +172106 wrapper-clause-scope +172108 wrapper-clause-scope +group +172111 wrapper-scope +wrapper-clause-scope +172115 group +172119 wrapper-scope +modifier-scope +conjuncted-wg +172124 conjuncted-wg +172126 modifier-scope +172128 wrapper-clause-scope +172131 group +wrapper-clause-scope +172134 wrapper-scope +172136 wrapper-clause-scope +wrapper-clause-scope +172139 conjuncted-wg +group +wrapper-clause-scope +172144 modifier-scope +conjuncted-wg +172149 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +172158 wrapper-clause-scope +172162 wrapper-clause-scope +172164 conjuncted-wg +172166 modifier-scope +conjuncted-wg +172170 modifier-scope +conjuncted-wg +172174 wrapper-clause-scope +172177 group +modifier-scope +wrapper-clause-scope +172181 modifier-scope +modifier-scope +conjuncted-wg +172185 wrapper-clause-scope +172188 group +wrapper-clause-scope +172191 wrapper-scope +conjuncted-wg +172194 wrapper-scope +modifier-scope +wrapper-scope +172198 wrapper-clause-scope +172200 wrapper-clause-scope +172203 wrapper-clause-scope +172205 wrapper-clause-scope +172207 wrapper-clause-scope +172209 modifier-scope +modifier-scope +172212 wrapper-clause-scope +172215 modifier-scope +172218 apposition-group +172221 wrapper-clause-scope +172224 modifier-scope +modifier-scope +172227 modifier-scope +conjuncted-wg +172230 wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +172241 wrapper-clause-scope +172243 modifier-scope +modifier-scope +wrapper-clause-scope +172248 modifier-scope +modifier-scope +modifier-scope +modifier-scope +172253 wrapper-clause-scope +172257 modifier-scope +conjuncted-wg +172261 conjuncted-wg +172264 wrapper-clause-scope +172268 modifier-scope +modifier-scope +172271 modifier-scope +172273 conjuncted-wg +conjuncted-wg +172276 conjuncted-wg +172280 conjuncted-wg +172283 wrapper-clause-scope +172287 modifier-scope +wrapper-clause-scope +172290 modifier-scope +modifier-scope +172293 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +172304 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +172311 modifier-scope +conjuncted-wg +wrapper-clause-scope +172316 wrapper-clause-scope +172318 modifier-scope +modifier-scope +172322 wrapper-clause-scope +172324 conjuncted-wg +172327 wrapper-clause-scope +172329 wrapper-clause-scope +group +wrapper-clause-scope +172334 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +172339 wrapper-clause-scope +172342 modifier-scope +modifier-scope +172346 wrapper-clause-scope +172349 modifier-clause-scope +modifier-clause-scope +group +wrapper-clause-scope +172355 wrapper-clause-scope +172358 wrapper-scope +wrapper-scope +modifier-scope +172363 wrapper-clause-scope +172365 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +172371 wrapper-clause-scope +172374 modifier-scope +wrapper-scope +172377 modifier-scope +conjuncted-wg +wrapper-clause-scope +172383 wrapper-clause-scope +172386 modifier-scope +172388 modifier-scope +modifier-scope +172391 wrapper-clause-scope +172395 wrapper-scope +modifier-scope +conjuncted-wg +172401 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +172406 modifier-scope +conjuncted-wg +172409 modifier-scope +modifier-scope +modifier-scope +172413 wrapper-clause-scope +172417 modifier-scope +modifier-scope +conjuncted-wg +172421 modifier-scope +modifier-scope +conjuncted-wg +172425 wrapper-scope +172427 wrapper-clause-scope +172430 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +172435 modifier-clause-scope +172438 conjuncted-wg +172441 wrapper-clause-scope +group +172446 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +172452 wrapper-clause-scope +172456 wrapper-clause-scope +172458 conjuncted-wg +wrapper-clause-scope +172461 conjuncted-wg +172465 wrapper-clause-scope +172467 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +172473 wrapper-clause-scope +172478 conjuncted-wg +172480 conjuncted-wg +172483 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +172489 wrapper-clause-scope +172493 modifier-scope +conjuncted-wg +group +172497 wrapper-scope +wrapper-clause-scope +172500 wrapper-scope +modifier-clause-scope +172503 conjuncted-wg +172507 wrapper-clause-scope +group +172512 modifier-scope +modifier-scope +wrapper-clause-scope +172517 modifier-scope +conjuncted-wg +172522 wrapper-clause-scope +172525 wrapper-scope +modifier-scope +modifier-scope +172529 conjuncted-wg +172532 wrapper-clause-scope +172538 wrapper-clause-scope +172543 modifier-scope +modifier-scope +conjuncted-wg +172549 wrapper-clause-scope +172551 group +172553 modifier-scope +172557 wrapper-clause-scope +172562 conjuncted-wg +modifier-scope +172565 wrapper-clause-scope +172568 group +wrapper-scope +modifier-scope +modifier-scope +172573 wrapper-clause-scope +172575 group +172577 wrapper-scope +conjuncted-wg +wrapper-scope +172581 wrapper-clause-scope +172587 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +172593 wrapper-scope +modifier-scope +conjuncted-wg +172597 modifier-scope +conjuncted-wg +group +172601 modifier-scope +wrapper-clause-scope +172604 conjuncted-wg +172606 modifier-scope +modifier-scope +172609 wrapper-clause-scope +172612 conjuncted-wg +172615 wrapper-clause-scope +172618 group +modifier-scope +modifier-scope +conjuncted-wg +172623 wrapper-scope +modifier-scope +172626 wrapper-clause-scope +172628 wrapper-clause-scope +172630 modifier-scope +modifier-scope +172633 wrapper-clause-scope +172637 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +172643 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +172648 modifier-scope +172650 wrapper-clause-scope +172653 wrapper-scope +modifier-scope +172657 wrapper-clause-scope +group +172662 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +172668 wrapper-scope +modifier-scope +172671 wrapper-clause-scope +172673 group +172676 wrapper-scope +wrapper-clause-scope +172679 wrapper-clause-scope +172681 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +172688 wrapper-scope +modifier-scope +172691 wrapper-clause-scope +172695 wrapper-clause-scope +group +172701 wrapper-scope +modifier-scope +wrapper-clause-scope +172705 conjuncted-wg +172707 wrapper-clause-scope +172710 conjuncted-wg +172713 wrapper-clause-scope +172716 wrapper-scope +conjuncted-wg +172719 group +group +172725 wrapper-clause-scope +172728 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +172733 modifier-scope +172735 wrapper-clause-scope +group +172738 wrapper-scope +wrapper-scope +wrapper-clause-scope +group +172743 wrapper-scope +modifier-scope +172746 wrapper-scope +modifier-scope +modifier-scope +172750 wrapper-clause-scope +172754 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +172760 wrapper-clause-scope +group +172763 wrapper-scope +modifier-scope +172768 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +172774 wrapper-scope +modifier-scope +wrapper-clause-scope +172778 wrapper-clause-scope +group +172781 wrapper-clause-scope +172784 wrapper-clause-scope +172787 wrapper-clause-scope +wrapper-clause-scope +172791 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +172800 conjuncted-wg +172802 wrapper-clause-scope +172804 modifier-scope +modifier-scope +modifier-scope +modifier-scope +172809 wrapper-clause-scope +172811 wrapper-clause-scope +172814 wrapper-clause-scope +172816 wrapper-scope +172818 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +172824 wrapper-scope +conjuncted-wg +172827 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +172832 apposition-group +modifier-scope +172835 modifier-scope +172837 wrapper-clause-scope +172841 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +172847 modifier-scope +172849 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +172854 wrapper-scope +wrapper-clause-scope +172857 conjuncted-wg +172861 modifier-scope +172863 conjuncted-wg +conjuncted-wg +172866 wrapper-clause-scope +172869 modifier-scope +conjuncted-wg +modifier-scope +172874 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +172883 modifier-scope +modifier-scope +172886 wrapper-clause-scope +172889 wrapper-scope +group +modifier-scope +wrapper-clause-scope +172894 wrapper-clause-scope +172898 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +172903 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +172909 modifier-scope +172913 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +172920 wrapper-clause-scope +172923 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +172928 modifier-scope +modifier-scope +172931 wrapper-clause-scope +172936 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +172943 wrapper-clause-scope +172946 conjuncted-wg +172948 wrapper-clause-scope +172950 group +wrapper-clause-scope +172954 modifier-scope +conjuncted-wg +modifier-scope +172958 apposition-group +172960 wrapper-clause-scope +172962 wrapper-scope +172966 modifier-scope +conjuncted-wg +modifier-scope +172970 modifier-scope +modifier-scope +modifier-scope +apposition-group +modifier-scope +modifier-scope +172978 wrapper-clause-scope +172980 modifier-scope +modifier-scope +172983 wrapper-clause-scope +172986 modifier-scope +172989 conjuncted-wg +172993 apposition-group +modifier-clause-scope +wrapper-scope +modifier-scope +172998 wrapper-scope +173001 conjuncted-wg +173003 wrapper-clause-scope +173005 wrapper-scope +modifier-scope +wrapper-clause-scope +173009 modifier-scope +173011 wrapper-clause-scope +group +wrapper-clause-scope +173015 wrapper-scope +wrapper-scope +modifier-scope +173019 modifier-scope +modifier-scope +modifier-scope +173023 wrapper-clause-scope +group +173026 group +173028 modifier-scope +173030 wrapper-clause-scope +group +173033 modifier-clause-scope +wrapper-clause-scope +173036 wrapper-scope +modifier-scope +173039 wrapper-clause-scope +group +173042 wrapper-scope +modifier-scope +modifier-scope +173047 wrapper-scope +modifier-scope +conjuncted-wg +173051 wrapper-scope +modifier-scope +173054 modifier-scope +modifier-scope +173057 wrapper-clause-scope +173059 wrapper-clause-scope +173062 wrapper-clause-scope +173064 wrapper-scope +modifier-scope +modifier-scope +173068 wrapper-clause-scope +173070 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +173081 group +modifier-scope +173084 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +173089 modifier-scope +173091 wrapper-clause-scope +173094 wrapper-scope +modifier-scope +modifier-scope +173098 wrapper-clause-scope +173102 wrapper-scope +173104 conjuncted-wg +173108 wrapper-clause-scope +173111 wrapper-scope +apposition-group +173114 modifier-scope +modifier-scope +modifier-scope +modifier-scope +173119 wrapper-scope +modifier-scope +modifier-scope +173123 wrapper-clause-scope +group +173126 modifier-scope +173128 modifier-scope +173130 wrapper-clause-scope +173132 wrapper-clause-scope +173134 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +173139 wrapper-clause-scope +173141 group +173144 modifier-scope +wrapper-clause-scope +173149 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +173154 modifier-scope +173156 wrapper-clause-scope +173159 conjuncted-wg +173161 group +173165 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +173174 wrapper-clause-scope +173177 wrapper-scope +modifier-scope +modifier-scope +173181 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +173186 wrapper-clause-scope +173189 wrapper-scope +modifier-scope +modifier-scope +173194 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +173199 modifier-scope +173201 wrapper-clause-scope +173204 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +173217 wrapper-clause-scope +173221 conjuncted-wg +conjuncted-wg +173224 wrapper-clause-scope +173226 modifier-scope +173228 wrapper-clause-scope +173232 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +173243 modifier-scope +modifier-scope +conjuncted-wg +173249 wrapper-scope +modifier-scope +conjuncted-wg +173257 wrapper-clause-scope +173260 modifier-scope +modifier-scope +conjuncted-wg +173265 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +173272 wrapper-clause-scope +173274 wrapper-clause-scope +173277 wrapper-clause-scope +173280 modifier-scope +173282 wrapper-clause-scope +173285 group +173290 modifier-scope +conjuncted-wg +173294 group +173297 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +173306 modifier-scope +group +173309 wrapper-scope +modifier-scope +wrapper-clause-scope +173314 modifier-scope +conjuncted-wg +173319 wrapper-clause-scope +173321 wrapper-clause-scope +173323 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +173329 wrapper-clause-scope +173331 modifier-scope +wrapper-scope +173334 wrapper-clause-scope +173336 modifier-scope +modifier-scope +wrapper-clause-scope +173341 wrapper-scope +173343 wrapper-clause-scope +173346 modifier-scope +173348 wrapper-clause-scope +173352 wrapper-clause-scope +173354 modifier-scope +173356 wrapper-scope +modifier-scope +173359 wrapper-clause-scope +173364 modifier-scope +modifier-scope +173367 conjuncted-wg +group +173370 modifier-scope +modifier-scope +wrapper-clause-scope +173374 conjuncted-wg +173376 modifier-scope +173378 wrapper-clause-scope +173380 modifier-scope +173382 wrapper-clause-scope +173386 modifier-scope +173388 wrapper-clause-scope +173392 conjuncted-wg +173394 conjuncted-wg +173396 group +modifier-scope +modifier-scope +173400 wrapper-clause-scope +173402 modifier-scope +173404 wrapper-clause-scope +173407 wrapper-clause-scope +173410 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +173419 wrapper-clause-scope +173422 modifier-scope +conjuncted-wg +173427 wrapper-scope +wrapper-scope +modifier-scope +173432 wrapper-clause-scope +173435 modifier-scope +modifier-scope +173438 modifier-scope +modifier-scope +173441 group +wrapper-clause-scope +173444 wrapper-clause-scope +173446 modifier-scope +modifier-scope +173449 wrapper-clause-scope +173453 wrapper-scope +modifier-scope +173456 wrapper-clause-scope +173460 conjuncted-wg +173462 wrapper-clause-scope +173464 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +173469 wrapper-clause-scope +173474 wrapper-scope +173476 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +173483 wrapper-clause-scope +173485 wrapper-scope +wrapper-clause-scope +173489 wrapper-clause-scope +173493 wrapper-clause-scope +173498 conjuncted-wg +173502 modifier-scope +modifier-scope +173508 conjuncted-wg +173512 wrapper-clause-scope +173515 wrapper-clause-scope +173517 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +173529 wrapper-clause-scope +173531 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +173538 wrapper-clause-scope +173542 wrapper-clause-scope +173546 wrapper-clause-scope +173548 wrapper-scope +173550 wrapper-clause-scope +173553 conjuncted-wg +173555 wrapper-clause-scope +173558 wrapper-clause-scope +173562 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +173570 wrapper-scope +modifier-scope +modifier-scope +173574 modifier-scope +wrapper-clause-scope +173578 wrapper-clause-scope +173581 group +173583 modifier-scope +wrapper-clause-scope +173587 wrapper-scope +173591 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +173598 conjuncted-wg +173600 conjuncted-wg +173603 wrapper-clause-scope +173605 wrapper-scope +modifier-scope +173609 wrapper-scope +modifier-scope +173612 wrapper-clause-scope +173615 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +173625 wrapper-clause-scope +173627 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +173634 modifier-scope +173636 wrapper-clause-scope +173639 wrapper-clause-scope +173642 group +modifier-scope +conjuncted-wg +173647 conjuncted-wg +173649 wrapper-clause-scope +173651 modifier-scope +modifier-scope +173654 wrapper-clause-scope +173656 wrapper-clause-scope +173662 modifier-scope +173664 modifier-scope +173666 wrapper-clause-scope +173668 wrapper-clause-scope +173670 wrapper-scope +173672 wrapper-clause-scope +173675 wrapper-clause-scope +173679 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +173685 wrapper-scope +173687 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +173694 conjuncted-wg +173696 wrapper-scope +modifier-scope +173699 wrapper-clause-scope +173701 modifier-scope +173703 wrapper-clause-scope +173705 modifier-scope +173709 wrapper-clause-scope +173714 conjuncted-wg +173716 modifier-scope +modifier-scope +conjuncted-wg +173720 group +173722 wrapper-scope +173724 wrapper-clause-scope +group +173727 modifier-scope +modifier-scope +173730 modifier-scope +modifier-scope +173733 wrapper-clause-scope +173736 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +173744 wrapper-scope +173747 conjuncted-wg +173749 modifier-scope +modifier-scope +conjuncted-wg +173754 wrapper-clause-scope +173756 wrapper-clause-scope +173759 modifier-scope +modifier-scope +173762 wrapper-clause-scope +173764 wrapper-clause-scope +173766 modifier-scope +modifier-scope +wrapper-scope +173770 conjuncted-wg +modifier-scope +173773 wrapper-clause-scope +173777 modifier-scope +modifier-scope +conjuncted-wg +173781 modifier-scope +modifier-scope +173784 wrapper-clause-scope +173786 modifier-scope +modifier-scope +modifier-scope +173790 wrapper-clause-scope +group +wrapper-clause-scope +173795 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +173803 modifier-scope +conjuncted-wg +group +173807 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +173813 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +173823 wrapper-clause-scope +173827 wrapper-clause-scope +173829 apposition-group +modifier-clause-scope +wrapper-clause-scope +173835 modifier-scope +wrapper-clause-scope +173839 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +173844 wrapper-clause-scope +173847 wrapper-scope +modifier-scope +modifier-scope +173851 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +173857 wrapper-scope +modifier-scope +wrapper-scope +173861 wrapper-clause-scope +173864 wrapper-scope +conjuncted-wg +173867 modifier-scope +modifier-scope +modifier-clause-scope +173871 modifier-scope +173873 modifier-scope +wrapper-scope +modifier-scope +173878 wrapper-clause-scope +173881 wrapper-scope +conjuncted-wg +173884 wrapper-scope +modifier-scope +173887 wrapper-clause-scope +173890 modifier-scope +modifier-scope +173896 conjuncted-wg +group +173899 modifier-scope +173902 conjuncted-wg +173904 conjuncted-wg +173907 wrapper-clause-scope +173910 wrapper-clause-scope +173913 wrapper-clause-scope +173917 conjuncted-wg +173919 wrapper-scope +modifier-scope +group +173923 group +modifier-scope +modifier-scope +modifier-scope +173929 wrapper-clause-scope +173933 conjuncted-wg +173935 modifier-scope +wrapper-scope +173938 wrapper-clause-scope +group +173941 wrapper-scope +modifier-scope +173944 wrapper-clause-scope +173947 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +173951 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +173956 wrapper-clause-scope +173958 modifier-scope +173960 wrapper-scope +173962 wrapper-clause-scope +173964 wrapper-scope +173966 wrapper-clause-scope +173970 modifier-scope +wrapper-clause-scope +173975 wrapper-clause-scope +173978 wrapper-clause-scope +173981 conjuncted-wg +173983 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +173990 conjuncted-wg +173993 wrapper-clause-scope +173995 wrapper-clause-scope +173998 modifier-scope +conjuncted-wg +group +174003 wrapper-clause-scope +174005 wrapper-scope +174007 wrapper-clause-scope +174010 wrapper-scope +modifier-scope +174014 modifier-scope +wrapper-scope +conjuncted-wg +174018 wrapper-scope +174020 wrapper-clause-scope +174023 modifier-scope +modifier-scope +174026 conjuncted-wg +174030 wrapper-clause-scope +174033 wrapper-scope +174035 wrapper-clause-scope +174037 modifier-scope +wrapper-scope +modifier-scope +174042 modifier-scope +modifier-scope +wrapper-scope +174046 modifier-scope +174048 wrapper-clause-scope +174051 wrapper-clause-scope +174053 conjuncted-wg +174055 conjuncted-wg +174057 modifier-scope +conjuncted-wg +174061 wrapper-clause-scope +174064 modifier-scope +modifier-scope +wrapper-clause-scope +174068 conjuncted-wg +174071 wrapper-clause-scope +174077 modifier-scope +group +174080 wrapper-scope +wrapper-scope +174083 wrapper-scope +174085 wrapper-scope +174087 wrapper-clause-scope +174089 wrapper-scope +174091 wrapper-clause-scope +174095 modifier-scope +conjuncted-wg +174099 wrapper-scope +modifier-scope +174103 wrapper-clause-scope +174105 modifier-scope +modifier-scope +group +174109 modifier-scope +wrapper-clause-scope +174113 wrapper-clause-scope +174117 wrapper-scope +conjuncted-wg +174122 modifier-scope +wrapper-scope +conjuncted-wg +174126 wrapper-scope +wrapper-clause-scope +174129 conjuncted-wg +174131 wrapper-clause-scope +174134 wrapper-scope +174136 wrapper-clause-scope +174138 modifier-scope +174141 wrapper-clause-scope +wrapper-clause-scope +174144 wrapper-clause-scope +174149 modifier-scope +modifier-scope +modifier-scope +group +174155 modifier-scope +modifier-scope +174158 wrapper-clause-scope +174160 modifier-scope +174162 wrapper-clause-scope +174164 modifier-scope +modifier-scope +modifier-scope +174170 modifier-scope +modifier-scope +174173 conjuncted-wg +174176 wrapper-scope +conjuncted-wg +174179 wrapper-scope +174181 wrapper-clause-scope +174185 conjuncted-wg +174188 wrapper-clause-scope +174190 wrapper-scope +wrapper-clause-scope +174193 modifier-scope +wrapper-clause-scope +174197 wrapper-clause-scope +174200 modifier-scope +174202 modifier-scope +modifier-scope +conjuncted-wg +174207 wrapper-clause-scope +group +174210 wrapper-scope +174212 modifier-scope +modifier-scope +wrapper-scope +174218 wrapper-clause-scope +174220 group +174222 modifier-scope +modifier-scope +wrapper-scope +174226 wrapper-clause-scope +174228 wrapper-scope +174233 wrapper-scope +modifier-scope +conjuncted-wg +174237 wrapper-clause-scope +174240 wrapper-clause-scope +174243 modifier-scope +modifier-scope +conjuncted-wg +174247 wrapper-clause-scope +174250 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +174257 conjuncted-wg +174260 wrapper-scope +modifier-scope +174263 wrapper-clause-scope +174266 modifier-scope +conjuncted-wg +174271 wrapper-clause-scope +174273 wrapper-scope +174275 wrapper-clause-scope +174278 wrapper-scope +modifier-scope +174281 wrapper-scope +modifier-scope +174284 wrapper-clause-scope +174286 wrapper-clause-scope +174288 wrapper-scope +wrapper-scope +modifier-scope +174293 wrapper-clause-scope +174297 modifier-scope +conjuncted-wg +174300 group +wrapper-clause-scope +174306 modifier-scope +conjuncted-wg +modifier-scope +174310 wrapper-clause-scope +174314 wrapper-scope +modifier-scope +conjuncted-wg +174321 wrapper-clause-scope +174323 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +174332 wrapper-clause-scope +174334 conjuncted-wg +174336 wrapper-clause-scope +174340 modifier-scope +174345 wrapper-scope +modifier-scope +modifier-scope +174349 conjuncted-wg +group +174352 wrapper-clause-scope +174355 wrapper-clause-scope +174357 modifier-scope +group +174360 wrapper-clause-scope +174364 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +174371 wrapper-clause-scope +174374 wrapper-scope +wrapper-scope +174377 wrapper-clause-scope +group +wrapper-clause-scope +174382 modifier-scope +wrapper-scope +174387 wrapper-clause-scope +174389 modifier-scope +modifier-scope +modifier-scope +174393 wrapper-clause-scope +group +wrapper-clause-scope +174397 modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +174403 group +174405 wrapper-clause-scope +174408 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +174414 wrapper-scope +modifier-scope +174417 wrapper-clause-scope +174419 wrapper-clause-scope +174421 modifier-scope +modifier-scope +174427 wrapper-scope +modifier-scope +conjuncted-wg +174432 modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +174442 wrapper-clause-scope +174444 wrapper-clause-scope +174446 modifier-scope +modifier-scope +174452 wrapper-scope +modifier-scope +conjuncted-wg +174457 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +174462 wrapper-clause-scope +174464 wrapper-clause-scope +174466 modifier-scope +modifier-scope +174472 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +174479 modifier-scope +wrapper-scope +apposition-group +modifier-scope +174485 modifier-scope +modifier-scope +conjuncted-wg +174489 modifier-scope +174491 wrapper-clause-scope +174495 modifier-scope +174497 wrapper-clause-scope +174499 wrapper-clause-scope +174501 modifier-scope +wrapper-scope +174506 wrapper-scope +conjuncted-wg +174509 wrapper-scope +174511 wrapper-clause-scope +174516 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +174526 wrapper-scope +conjuncted-wg +group +wrapper-clause-scope +174533 wrapper-clause-scope +group +174537 wrapper-clause-scope +174542 wrapper-clause-scope +174547 wrapper-clause-scope +174552 modifier-scope +conjuncted-wg +174556 wrapper-clause-scope +174558 modifier-scope +174560 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +174566 wrapper-clause-scope +174568 wrapper-scope +modifier-scope +174571 conjuncted-wg +174575 wrapper-scope +174577 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +174583 modifier-scope +wrapper-scope +modifier-scope +174587 wrapper-clause-scope +group +174591 modifier-scope +174593 wrapper-clause-scope +174596 modifier-scope +174598 wrapper-clause-scope +174600 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +174605 wrapper-clause-scope +174609 wrapper-clause-scope +174612 modifier-scope +modifier-scope +conjuncted-wg +174616 wrapper-scope +conjuncted-wg +174619 wrapper-clause-scope +174622 modifier-scope +modifier-scope +174625 wrapper-clause-scope +174627 wrapper-clause-scope +174630 wrapper-clause-scope +174632 modifier-scope +174634 wrapper-clause-scope +174638 modifier-scope +conjuncted-wg +174641 group +group +174645 modifier-scope +wrapper-scope +174648 wrapper-clause-scope +174650 modifier-scope +modifier-scope +modifier-scope +modifier-scope +174658 wrapper-clause-scope +174661 modifier-scope +modifier-scope +modifier-scope +174665 modifier-scope +wrapper-scope +174668 wrapper-clause-scope +174672 modifier-scope +wrapper-scope +174675 wrapper-clause-scope +group +174678 wrapper-scope +174682 conjuncted-wg +174686 modifier-scope +174688 wrapper-clause-scope +174690 modifier-scope +174692 wrapper-clause-scope +174694 modifier-scope +group +174697 group +174699 wrapper-clause-scope +174701 group +modifier-scope +174704 modifier-scope +group +174713 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +174718 wrapper-clause-scope +174722 modifier-scope +wrapper-scope +modifier-scope +174726 wrapper-clause-scope +174729 modifier-scope +174731 conjuncted-wg +174733 group +174741 conjuncted-wg +174743 modifier-scope +conjuncted-wg +174746 wrapper-scope +conjuncted-wg +group +174752 wrapper-clause-scope +174755 wrapper-scope +modifier-scope +174758 wrapper-clause-scope +174760 wrapper-scope +modifier-scope +174763 wrapper-clause-scope +174766 modifier-scope +modifier-scope +modifier-scope +174770 modifier-scope +wrapper-clause-scope +174773 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +174779 wrapper-clause-scope +174781 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +174786 wrapper-clause-scope +174788 modifier-scope +174793 modifier-scope +174795 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +174802 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +174808 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +174813 wrapper-clause-scope +174816 wrapper-scope +wrapper-clause-scope +174823 modifier-scope +group +174827 wrapper-scope +conjuncted-wg +174830 wrapper-scope +wrapper-clause-scope +174833 wrapper-scope +modifier-scope +174837 modifier-scope +174841 conjuncted-wg +174845 modifier-scope +group +wrapper-clause-scope +174852 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +174859 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-clause-scope +174866 wrapper-scope +modifier-scope +modifier-scope +group +174871 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +conjuncted-wg +174879 wrapper-scope +group +modifier-scope +wrapper-clause-scope +174884 modifier-scope +174886 wrapper-clause-scope +174889 modifier-scope +conjuncted-wg +174892 modifier-scope +174894 wrapper-clause-scope +174898 wrapper-scope +modifier-scope +174901 wrapper-scope +conjuncted-wg +174904 wrapper-scope +modifier-scope +conjuncted-wg +174909 conjuncted-wg +174911 wrapper-clause-scope +174914 wrapper-clause-scope +174917 modifier-scope +174919 wrapper-clause-scope +174922 wrapper-clause-scope +174925 wrapper-scope +conjuncted-wg +174928 modifier-scope +modifier-scope +modifier-scope +174932 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +174938 conjuncted-wg +174940 modifier-scope +conjuncted-wg +174944 conjuncted-wg +174946 conjuncted-wg +174948 conjuncted-wg +174950 conjuncted-wg +174952 wrapper-scope +modifier-scope +174955 wrapper-clause-scope +174957 group +174959 conjuncted-wg +modifier-scope +modifier-scope +174967 wrapper-clause-scope +174970 wrapper-clause-scope +174975 wrapper-clause-scope +174978 wrapper-clause-scope +174982 wrapper-scope +modifier-scope +conjuncted-wg +174986 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +174991 wrapper-clause-scope +174993 modifier-scope +175000 modifier-clause-scope +apposition-group +175003 conjuncted-wg +175005 modifier-clause-scope +apposition-group +175009 wrapper-clause-scope +175013 wrapper-clause-scope +175015 modifier-scope +175019 modifier-clause-scope +apposition-group +175022 conjuncted-wg +175024 modifier-clause-scope +apposition-group +175027 conjuncted-wg +175030 wrapper-clause-scope +175033 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +175038 conjuncted-wg +175041 wrapper-clause-scope +175044 modifier-scope +175046 wrapper-scope +175048 conjuncted-wg +175050 wrapper-clause-scope +175053 modifier-scope +175055 wrapper-clause-scope +175058 wrapper-clause-scope +175061 modifier-scope +conjuncted-wg +175064 modifier-scope +modifier-scope +175067 wrapper-clause-scope +group +group +175071 wrapper-scope +175074 wrapper-clause-scope +175077 wrapper-scope +modifier-scope +conjuncted-wg +175081 wrapper-clause-scope +175084 wrapper-scope +modifier-scope +wrapper-clause-scope +175089 modifier-scope +modifier-scope +modifier-scope +modifier-scope +175094 conjuncted-wg +175097 conjuncted-wg +175099 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +175104 wrapper-clause-scope +175106 wrapper-scope +175108 wrapper-clause-scope +group +175112 wrapper-scope +conjuncted-wg +175116 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +175121 group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +175129 wrapper-clause-scope +175132 wrapper-clause-scope +175134 group +modifier-scope +175138 conjuncted-wg +175142 group +modifier-scope +175145 wrapper-clause-scope +175147 wrapper-clause-scope +175150 wrapper-clause-scope +175152 modifier-scope +175155 modifier-scope +175157 wrapper-clause-scope +175160 modifier-scope +175163 wrapper-clause-scope +175165 modifier-scope +175167 group +175172 wrapper-clause-scope +175175 modifier-scope +modifier-scope +175178 wrapper-scope +modifier-scope +175181 wrapper-clause-scope +175184 modifier-scope +175188 wrapper-clause-scope +175190 modifier-scope +175195 wrapper-clause-scope +175197 modifier-scope +group +175201 modifier-scope +modifier-scope +175204 wrapper-clause-scope +175207 conjuncted-wg +175209 wrapper-scope +modifier-scope +175212 wrapper-clause-scope +group +wrapper-clause-scope +175216 wrapper-scope +wrapper-scope +175219 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +175226 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +175231 group +175234 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +175242 wrapper-scope +175244 apposition-group +175246 wrapper-scope +modifier-scope +175250 conjuncted-wg +175253 wrapper-clause-scope +group +wrapper-clause-scope +175261 modifier-scope +modifier-scope +conjuncted-wg +175266 wrapper-clause-scope +175269 conjuncted-wg +175273 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +175279 wrapper-clause-scope +175281 modifier-clause-scope +wrapper-clause-scope +175286 modifier-scope +175288 wrapper-clause-scope +175290 wrapper-clause-scope +175292 modifier-scope +175294 wrapper-clause-scope +175297 wrapper-clause-scope +175300 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +175306 modifier-scope +modifier-scope +conjuncted-wg +175310 wrapper-scope +175312 wrapper-clause-scope +175315 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +175322 wrapper-scope +modifier-scope +175325 wrapper-clause-scope +175328 wrapper-clause-scope +175330 conjuncted-wg +wrapper-clause-scope +175337 wrapper-clause-scope +175339 wrapper-scope +modifier-scope +175343 modifier-clause-scope +modifier-clause-scope +175346 modifier-scope +group +modifier-scope +modifier-scope +175351 wrapper-scope +modifier-scope +175354 wrapper-clause-scope +175356 wrapper-scope +wrapper-scope +modifier-scope +175360 wrapper-clause-scope +group +175363 modifier-scope +175366 wrapper-scope +wrapper-scope +modifier-scope +175370 wrapper-clause-scope +group +175373 modifier-scope +wrapper-scope +175377 wrapper-clause-scope +175381 wrapper-scope +175383 wrapper-clause-scope +wrapper-clause-scope +175386 wrapper-scope +conjuncted-wg +group +175391 wrapper-scope +wrapper-clause-scope +175394 wrapper-clause-scope +175396 modifier-scope +175398 wrapper-clause-scope +175402 wrapper-scope +modifier-scope +wrapper-scope +175406 wrapper-clause-scope +175408 modifier-scope +modifier-scope +175411 wrapper-clause-scope +175413 wrapper-scope +175415 wrapper-clause-scope +175419 wrapper-scope +modifier-scope +175422 modifier-clause-scope +175424 wrapper-clause-scope +175426 conjuncted-wg +wrapper-clause-scope +175429 wrapper-scope +modifier-scope +conjuncted-wg +175434 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +175442 modifier-scope +conjuncted-wg +175445 wrapper-clause-scope +175447 wrapper-scope +modifier-scope +175450 wrapper-clause-scope +175453 conjuncted-wg +175456 wrapper-clause-scope +175458 wrapper-clause-scope +175460 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +175467 modifier-scope +175469 wrapper-clause-scope +175473 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +group +175480 wrapper-clause-scope +group +175483 wrapper-clause-scope +175485 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +175491 wrapper-clause-scope +175493 wrapper-clause-scope +175495 wrapper-scope +modifier-scope +175498 wrapper-clause-scope +175502 modifier-scope +wrapper-scope +175505 wrapper-clause-scope +175508 modifier-scope +175511 modifier-clause-scope +apposition-group +175515 wrapper-clause-scope +175518 modifier-scope +175520 modifier-scope +175523 wrapper-clause-scope +group +wrapper-clause-scope +175529 modifier-scope +modifier-scope +175532 conjuncted-wg +175534 wrapper-scope +modifier-scope +conjuncted-wg +group +175539 wrapper-scope +modifier-scope +modifier-scope +175543 wrapper-clause-scope +175549 wrapper-scope +175552 modifier-clause-scope +175555 conjuncted-wg +175557 wrapper-clause-scope +175559 conjuncted-wg +175562 wrapper-clause-scope +group +group +wrapper-clause-scope +175568 group +175570 wrapper-clause-scope +175572 wrapper-scope +wrapper-clause-scope +175575 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +175585 wrapper-clause-scope +175587 wrapper-scope +175589 wrapper-clause-scope +group +175592 wrapper-scope +modifier-scope +175596 wrapper-scope +175598 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +175607 wrapper-scope +modifier-scope +conjuncted-wg +175611 modifier-scope +modifier-scope +wrapper-clause-scope +175616 wrapper-clause-scope +175618 modifier-scope +175622 modifier-scope +conjuncted-wg +175625 conjuncted-wg +175628 wrapper-scope +modifier-scope +175631 group +175634 group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +175640 wrapper-scope +175643 wrapper-clause-scope +175645 wrapper-scope +175648 group +wrapper-clause-scope +175652 wrapper-scope +175654 wrapper-clause-scope +175656 wrapper-scope +conjuncted-wg +group +175661 wrapper-scope +group +175664 modifier-scope +wrapper-clause-scope +175667 modifier-scope +wrapper-clause-scope +175671 wrapper-clause-scope +175674 modifier-scope +175677 wrapper-clause-scope +175679 modifier-scope +175682 wrapper-scope +modifier-scope +175685 wrapper-clause-scope +175688 wrapper-scope +175691 conjuncted-wg +175693 conjuncted-wg +175695 conjuncted-wg +175697 conjuncted-wg +175699 conjuncted-wg +175702 wrapper-clause-scope +175704 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +175709 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +175716 wrapper-clause-scope +175720 conjuncted-wg +175723 wrapper-clause-scope +175725 wrapper-scope +modifier-scope +175730 conjuncted-wg +175733 wrapper-clause-scope +175735 group +175738 conjuncted-wg +175740 apposition-group +modifier-scope +175743 conjuncted-wg +175745 conjuncted-wg +175749 modifier-scope +modifier-scope +175753 wrapper-scope +175755 wrapper-clause-scope +175757 modifier-scope +modifier-scope +175760 wrapper-clause-scope +175762 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +175767 modifier-scope +175769 group +175772 conjuncted-wg +175774 modifier-scope +175776 wrapper-clause-scope +175780 conjuncted-wg +175782 wrapper-scope +modifier-scope +175786 modifier-scope +modifier-scope +modifier-scope +175793 conjuncted-wg +175795 modifier-scope +conjuncted-wg +175798 modifier-scope +175801 modifier-scope +modifier-scope +175806 apposition-group +175808 wrapper-clause-scope +175810 wrapper-scope +modifier-scope +175813 wrapper-scope +conjuncted-wg +175816 wrapper-scope +modifier-scope +175819 wrapper-clause-scope +group +175824 conjuncted-wg +175826 modifier-scope +wrapper-clause-scope +175829 wrapper-clause-scope +175831 wrapper-scope +modifier-scope +175834 wrapper-clause-scope +175838 wrapper-clause-scope +group +175841 wrapper-scope +modifier-scope +175844 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +175850 wrapper-clause-scope +175856 wrapper-clause-scope +175859 conjuncted-wg +175861 wrapper-scope +wrapper-clause-scope +group +175865 wrapper-scope +modifier-scope +175868 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +175876 conjuncted-wg +175880 conjuncted-wg +175883 wrapper-clause-scope +175886 modifier-scope +modifier-scope +group +175891 wrapper-clause-scope +175894 wrapper-clause-scope +175897 wrapper-clause-scope +175901 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +175906 wrapper-clause-scope +175910 wrapper-clause-scope +175912 modifier-scope +175915 modifier-scope +conjuncted-wg +175918 modifier-scope +modifier-scope +modifier-scope +175922 wrapper-clause-scope +175924 wrapper-scope +175926 wrapper-clause-scope +175929 wrapper-scope +apposition-group +175933 conjuncted-wg +175938 wrapper-clause-scope +175940 wrapper-clause-scope +175943 modifier-scope +conjuncted-wg +175946 conjuncted-wg +175950 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +175955 modifier-scope +modifier-scope +175959 modifier-scope +175961 wrapper-clause-scope +175964 modifier-scope +conjuncted-wg +175969 wrapper-clause-scope +175972 modifier-scope +conjuncted-wg +175977 wrapper-clause-scope +175979 modifier-scope +175981 wrapper-clause-scope +175983 modifier-scope +175986 modifier-scope +modifier-scope +modifier-scope +175990 group +175992 wrapper-scope +modifier-scope +wrapper-clause-scope +175996 modifier-scope +modifier-scope +wrapper-clause-scope +176000 modifier-scope +176003 modifier-scope +wrapper-clause-scope +176006 wrapper-scope +176009 modifier-scope +conjuncted-wg +176012 modifier-scope +modifier-scope +modifier-scope +176016 wrapper-clause-scope +176018 wrapper-clause-scope +176020 wrapper-scope +176022 conjuncted-wg +176024 conjuncted-wg +176026 conjuncted-wg +176028 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +176033 wrapper-clause-scope +176035 wrapper-scope +apposition-group +modifier-scope +wrapper-clause-scope +176040 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +176047 modifier-scope +176051 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +176058 group +176060 modifier-scope +176065 wrapper-clause-scope +176068 modifier-scope +modifier-scope +176076 modifier-scope +modifier-scope +176080 modifier-scope +wrapper-clause-scope +176083 group +176088 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +176094 group +modifier-scope +modifier-scope +176098 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +176120 modifier-scope +modifier-scope +wrapper-clause-scope +176126 modifier-scope +176128 wrapper-clause-scope +176130 modifier-scope +group +176135 wrapper-scope +wrapper-clause-scope +176140 conjuncted-wg +176142 wrapper-scope +conjuncted-wg +176146 wrapper-clause-scope +176149 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +176163 modifier-scope +wrapper-clause-scope +176166 modifier-scope +modifier-scope +176169 conjuncted-wg +176171 wrapper-clause-scope +176173 modifier-scope +176178 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +176183 wrapper-clause-scope +176187 wrapper-clause-scope +176190 modifier-scope +176192 wrapper-scope +modifier-scope +176195 modifier-scope +wrapper-clause-scope +176198 modifier-scope +modifier-scope +176202 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +176208 modifier-scope +modifier-scope +group +176212 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +176217 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +176225 modifier-scope +conjuncted-wg +176228 modifier-scope +176230 wrapper-clause-scope +176232 modifier-scope +modifier-scope +176235 wrapper-clause-scope +176237 wrapper-scope +modifier-scope +modifier-scope +176241 wrapper-scope +group +modifier-scope +wrapper-clause-scope +176248 wrapper-scope +conjuncted-wg +176252 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +176265 wrapper-clause-scope +176268 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +176273 modifier-scope +176275 wrapper-clause-scope +group +176279 wrapper-scope +modifier-scope +176282 modifier-scope +wrapper-scope +modifier-scope +176286 wrapper-clause-scope +176288 modifier-scope +176290 wrapper-clause-scope +176293 modifier-scope +modifier-scope +apposition-group +modifier-scope +176299 wrapper-clause-scope +176302 modifier-scope +modifier-scope +176306 wrapper-clause-scope +176308 group +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +176315 wrapper-scope +modifier-scope +176318 wrapper-clause-scope +176321 wrapper-scope +wrapper-clause-scope +176324 conjuncted-wg +176326 wrapper-scope +modifier-scope +modifier-scope +group +modifier-clause-scope +176332 modifier-scope +modifier-scope +modifier-scope +176336 wrapper-clause-scope +group +176339 wrapper-scope +modifier-scope +176342 modifier-scope +modifier-scope +modifier-scope +176350 modifier-scope +conjuncted-wg +modifier-scope +176354 wrapper-clause-scope +176356 modifier-scope +176358 modifier-scope +modifier-scope +modifier-scope +176363 modifier-scope +wrapper-scope +apposition-group +176367 modifier-scope +176369 wrapper-clause-scope +group +176372 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +176379 wrapper-scope +176381 conjuncted-wg +conjuncted-wg +conjuncted-wg +176387 conjuncted-wg +176389 modifier-scope +wrapper-clause-scope +176392 modifier-scope +176395 wrapper-clause-scope +176397 modifier-scope +176399 group +176401 wrapper-clause-scope +176406 wrapper-scope +modifier-scope +modifier-scope +176410 wrapper-clause-scope +176412 conjuncted-wg +176415 wrapper-clause-scope +group +wrapper-clause-scope +176420 conjuncted-wg +modifier-scope +176427 conjuncted-wg +176429 modifier-scope +176431 wrapper-clause-scope +group +176435 wrapper-scope +conjuncted-wg +176438 wrapper-scope +group +176441 wrapper-scope +176445 modifier-scope +176447 wrapper-clause-scope +176452 wrapper-scope +conjuncted-wg +176455 wrapper-scope +conjuncted-wg +176458 wrapper-scope +176460 conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +176465 wrapper-clause-scope +176468 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +176473 wrapper-clause-scope +group +wrapper-clause-scope +176478 group +group +176482 group +wrapper-clause-scope +176485 wrapper-scope +modifier-scope +modifier-scope +176489 wrapper-clause-scope +group +176492 wrapper-clause-scope +176495 modifier-scope +modifier-scope +modifier-scope +176499 wrapper-clause-scope +176503 wrapper-scope +conjuncted-wg +176506 conjuncted-wg +176509 wrapper-scope +conjuncted-wg +176513 wrapper-clause-scope +176515 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +176521 wrapper-clause-scope +176524 wrapper-clause-scope +176526 wrapper-scope +176528 wrapper-clause-scope +group +group +wrapper-clause-scope +176534 modifier-scope +modifier-scope +modifier-scope +176539 wrapper-clause-scope +176541 group +176543 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +176551 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +176557 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +176562 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +176568 modifier-scope +modifier-scope +176571 wrapper-clause-scope +176574 wrapper-clause-scope +176576 wrapper-scope +conjuncted-wg +wrapper-clause-scope +176580 wrapper-scope +modifier-scope +modifier-scope +176584 wrapper-clause-scope +176586 wrapper-clause-scope +176589 wrapper-clause-scope +176591 modifier-scope +modifier-scope +apposition-group +176596 group +wrapper-scope +modifier-clause-scope +apposition-group +176601 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +176606 modifier-scope +176608 wrapper-clause-scope +176610 wrapper-clause-scope +176612 modifier-scope +176614 modifier-scope +176616 wrapper-clause-scope +176618 wrapper-scope +modifier-clause-scope +apposition-group +176622 modifier-scope +176624 wrapper-clause-scope +group +wrapper-clause-scope +176628 group +176630 modifier-scope +group +176636 wrapper-clause-scope +176640 conjuncted-wg +conjuncted-wg +176644 conjuncted-wg +wrapper-scope +wrapper-clause-scope +176648 wrapper-clause-scope +176650 modifier-scope +176652 wrapper-clause-scope +176657 wrapper-clause-scope +176660 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +176669 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +176674 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +176680 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +176686 wrapper-clause-scope +176689 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +176695 modifier-scope +conjuncted-wg +176698 wrapper-clause-scope +176701 modifier-scope +conjuncted-wg +176704 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +176715 wrapper-clause-scope +176717 wrapper-scope +modifier-scope +modifier-scope +176721 group +wrapper-clause-scope +176725 modifier-scope +modifier-scope +conjuncted-wg +176729 modifier-scope +176731 wrapper-clause-scope +176733 modifier-scope +176736 modifier-scope +wrapper-clause-scope +176740 wrapper-clause-scope +176742 wrapper-scope +176746 wrapper-clause-scope +176748 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +176753 modifier-scope +176758 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +176763 modifier-scope +modifier-scope +176766 wrapper-clause-scope +group +176769 wrapper-scope +176771 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +176777 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +176784 modifier-scope +176786 group +group +176790 wrapper-clause-scope +176793 modifier-scope +176795 wrapper-clause-scope +176798 modifier-scope +176801 modifier-scope +modifier-scope +conjuncted-wg +176805 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +176812 modifier-scope +wrapper-clause-scope +176816 wrapper-clause-scope +group +group +176820 wrapper-clause-scope +176823 modifier-scope +modifier-scope +modifier-scope +176827 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-clause-scope +176836 wrapper-clause-scope +176841 wrapper-clause-scope +176844 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +176850 wrapper-clause-scope +group +176854 modifier-scope +conjuncted-wg +modifier-scope +176859 wrapper-scope +176861 wrapper-clause-scope +176863 group +176865 wrapper-scope +modifier-scope +176868 modifier-scope +modifier-scope +176871 wrapper-clause-scope +group +176874 wrapper-scope +group +176877 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +176884 modifier-scope +modifier-scope +modifier-scope +modifier-scope +176891 modifier-scope +modifier-scope +modifier-scope +176895 wrapper-clause-scope +group +176898 wrapper-scope +wrapper-scope +176901 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +176907 wrapper-clause-scope +176909 modifier-scope +modifier-scope +176913 wrapper-scope +modifier-scope +conjuncted-wg +176917 modifier-scope +176919 wrapper-clause-scope +176922 wrapper-clause-scope +176924 modifier-scope +176930 modifier-scope +wrapper-scope +176933 wrapper-clause-scope +176937 modifier-scope +wrapper-scope +conjuncted-wg +176941 wrapper-clause-scope +176944 conjuncted-wg +176952 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +176957 wrapper-clause-scope +group +wrapper-clause-scope +176962 wrapper-clause-scope +176964 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +176970 wrapper-scope +modifier-scope +176973 wrapper-clause-scope +176975 group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +176985 wrapper-clause-scope +176989 conjuncted-wg +176993 wrapper-clause-scope +176997 wrapper-clause-scope +176999 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +177005 modifier-scope +modifier-scope +modifier-scope +group +177012 wrapper-clause-scope +177014 modifier-scope +177016 wrapper-clause-scope +177019 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177026 wrapper-scope +modifier-scope +conjuncted-wg +177030 modifier-clause-scope +177032 modifier-scope +177036 conjuncted-wg +177038 wrapper-clause-scope +177040 modifier-scope +wrapper-clause-scope +177043 modifier-scope +177045 modifier-clause-scope +apposition-group +modifier-scope +177049 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +177054 wrapper-clause-scope +177056 modifier-clause-scope +modifier-clause-scope +modifier-scope +177061 wrapper-clause-scope +177064 wrapper-clause-scope +177068 modifier-scope +conjuncted-wg +177071 wrapper-scope +modifier-scope +conjuncted-wg +group +177076 wrapper-clause-scope +177078 conjuncted-wg +177080 modifier-scope +177082 wrapper-clause-scope +group +177086 wrapper-scope +modifier-scope +177089 wrapper-clause-scope +group +177093 conjuncted-wg +177095 modifier-scope +177098 wrapper-clause-scope +177100 group +modifier-scope +wrapper-scope +wrapper-clause-scope +177105 wrapper-scope +177110 conjuncted-wg +177112 modifier-scope +wrapper-scope +wrapper-clause-scope +177117 wrapper-clause-scope +177119 group +177121 group +modifier-scope +modifier-scope +wrapper-clause-scope +177126 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +177131 conjuncted-wg +group +177134 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +177139 wrapper-scope +conjuncted-wg +177142 apposition-group +modifier-scope +modifier-scope +177146 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +177152 wrapper-clause-scope +177154 modifier-scope +modifier-scope +177157 wrapper-clause-scope +group +177164 conjuncted-wg +177166 conjuncted-wg +177168 group +177171 modifier-scope +modifier-scope +177174 wrapper-clause-scope +177179 conjuncted-wg +177181 wrapper-scope +177183 wrapper-clause-scope +177186 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +177193 wrapper-scope +177197 wrapper-clause-scope +177199 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +wrapper-clause-scope +177210 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +177215 wrapper-clause-scope +177218 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +177223 wrapper-clause-scope +177225 modifier-scope +wrapper-clause-scope +177229 wrapper-clause-scope +177233 modifier-scope +conjuncted-wg +177236 modifier-scope +conjuncted-wg +177239 wrapper-scope +wrapper-clause-scope +177242 wrapper-scope +modifier-scope +177245 wrapper-clause-scope +177247 modifier-scope +group +wrapper-clause-scope +177251 modifier-scope +wrapper-clause-scope +177255 wrapper-clause-scope +177257 modifier-scope +177260 wrapper-clause-scope +177262 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +177268 wrapper-clause-scope +177270 group +wrapper-clause-scope +177275 modifier-scope +177277 wrapper-clause-scope +177279 modifier-scope +177281 wrapper-clause-scope +177284 wrapper-scope +apposition-group +177287 modifier-scope +modifier-scope +conjuncted-wg +177291 modifier-scope +modifier-scope +group +177295 wrapper-clause-scope +177298 wrapper-clause-scope +177302 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +177312 conjuncted-wg +177314 conjuncted-wg +177316 group +177318 modifier-scope +modifier-scope +wrapper-scope +177323 conjuncted-wg +177326 wrapper-clause-scope +177330 wrapper-scope +modifier-scope +conjuncted-wg +177335 wrapper-clause-scope +177337 wrapper-clause-scope +177339 wrapper-scope +modifier-scope +conjuncted-wg +177345 group +modifier-scope +177349 modifier-scope +modifier-scope +wrapper-scope +177353 wrapper-clause-scope +group +177358 wrapper-clause-scope +177362 conjuncted-wg +177365 conjuncted-wg +177367 modifier-scope +177373 modifier-scope +177375 group +177378 conjuncted-wg +177380 wrapper-clause-scope +177382 wrapper-scope +177385 conjuncted-wg +177387 modifier-scope +conjuncted-wg +177390 modifier-scope +177392 wrapper-clause-scope +177396 modifier-scope +modifier-scope +177399 wrapper-clause-scope +177401 group +177405 wrapper-clause-scope +177407 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +177414 wrapper-clause-scope +177417 modifier-scope +conjuncted-wg +177420 group +177423 modifier-scope +conjuncted-wg +177428 group +177430 modifier-scope +177432 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +177440 group +177445 wrapper-clause-scope +177448 wrapper-clause-scope +177452 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177458 wrapper-scope +modifier-scope +wrapper-scope +177462 conjuncted-wg +wrapper-scope +177465 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +177471 wrapper-clause-scope +177473 wrapper-clause-scope +177478 wrapper-clause-scope +177481 conjuncted-wg +177484 wrapper-clause-scope +177490 conjuncted-wg +177493 wrapper-clause-scope +177496 modifier-scope +conjuncted-wg +177500 wrapper-clause-scope +177503 group +modifier-clause-scope +wrapper-clause-scope +177508 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177514 modifier-scope +modifier-scope +177517 wrapper-clause-scope +177520 modifier-scope +group +wrapper-clause-scope +177524 wrapper-scope +177526 wrapper-scope +177528 conjuncted-wg +177533 wrapper-scope +wrapper-scope +177536 wrapper-scope +modifier-scope +conjuncted-wg +177541 wrapper-clause-scope +wrapper-clause-scope +177544 modifier-scope +177546 wrapper-clause-scope +177550 wrapper-clause-scope +177553 modifier-scope +177555 wrapper-scope +conjuncted-wg +177559 conjuncted-wg +177562 modifier-scope +177564 wrapper-clause-scope +177567 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +177572 modifier-scope +177574 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +177580 wrapper-clause-scope +177583 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177594 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +177599 wrapper-scope +modifier-scope +177602 wrapper-clause-scope +177606 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +177615 conjuncted-wg +177618 wrapper-clause-scope +177621 wrapper-scope +conjuncted-wg +177624 modifier-scope +177626 wrapper-clause-scope +177629 wrapper-scope +177631 wrapper-clause-scope +177634 wrapper-clause-scope +177637 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177643 wrapper-scope +modifier-scope +modifier-scope +177647 wrapper-clause-scope +177649 modifier-scope +modifier-scope +177652 wrapper-clause-scope +177655 wrapper-scope +modifier-scope +modifier-scope +177662 wrapper-clause-scope +177665 conjuncted-wg +177670 modifier-scope +conjuncted-wg +177674 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +177680 wrapper-clause-scope +177682 modifier-scope +177685 conjuncted-wg +177689 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +177697 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +177702 wrapper-clause-scope +177704 modifier-scope +177706 modifier-scope +modifier-scope +group +177710 modifier-scope +177712 modifier-scope +177715 wrapper-clause-scope +177717 modifier-scope +177720 wrapper-clause-scope +177725 conjuncted-wg +177727 modifier-scope +modifier-scope +conjuncted-wg +177731 conjuncted-wg +177734 conjuncted-wg +177736 modifier-scope +177738 wrapper-clause-scope +group +177741 modifier-scope +wrapper-scope +modifier-scope +177746 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177754 modifier-scope +177757 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +177763 wrapper-clause-scope +177766 group +177768 conjuncted-wg +177770 conjuncted-wg +177774 wrapper-clause-scope +177776 wrapper-scope +modifier-scope +177779 wrapper-clause-scope +177781 modifier-scope +177784 wrapper-clause-scope +177786 wrapper-clause-scope +177788 wrapper-scope +177790 wrapper-clause-scope +177793 wrapper-clause-scope +177795 wrapper-scope +wrapper-clause-scope +177798 modifier-scope +group +177801 wrapper-scope +wrapper-clause-scope +177804 modifier-scope +177806 wrapper-clause-scope +177810 conjuncted-wg +177812 wrapper-clause-scope +177814 apposition-group +modifier-scope +modifier-scope +177819 wrapper-clause-scope +177821 wrapper-scope +177823 wrapper-clause-scope +177825 modifier-scope +modifier-scope +wrapper-clause-scope +177829 modifier-scope +wrapper-clause-scope +177834 wrapper-clause-scope +177838 wrapper-clause-scope +177841 modifier-scope +177843 wrapper-scope +177845 modifier-scope +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +177851 modifier-scope +conjuncted-wg +177855 wrapper-clause-scope +group +177858 modifier-scope +177860 modifier-scope +modifier-scope +modifier-scope +177864 wrapper-clause-scope +177869 wrapper-clause-scope +177871 modifier-scope +177873 wrapper-clause-scope +177875 modifier-scope +177880 wrapper-clause-scope +177882 modifier-scope +wrapper-clause-scope +177885 modifier-scope +177887 wrapper-clause-scope +177889 wrapper-scope +apposition-group +modifier-scope +177894 wrapper-clause-scope +177896 wrapper-scope +wrapper-clause-scope +177899 wrapper-scope +modifier-clause-scope +apposition-group +177903 wrapper-scope +modifier-scope +177906 wrapper-clause-scope +177909 modifier-scope +177911 wrapper-clause-scope +177914 wrapper-clause-scope +177916 modifier-scope +177920 modifier-scope +modifier-scope +modifier-scope +177924 wrapper-clause-scope +177926 wrapper-clause-scope +177928 wrapper-scope +modifier-scope +177931 wrapper-clause-scope +177933 modifier-scope +modifier-scope +wrapper-clause-scope +177937 modifier-scope +177939 wrapper-clause-scope +177941 modifier-scope +177943 wrapper-clause-scope +177946 modifier-scope +modifier-scope +modifier-scope +177950 wrapper-clause-scope +177954 wrapper-clause-scope +177956 modifier-scope +wrapper-clause-scope +177959 modifier-scope +177961 wrapper-clause-scope +177965 wrapper-clause-scope +177968 modifier-scope +177971 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +177976 modifier-scope +177978 wrapper-clause-scope +177981 wrapper-clause-scope +177984 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +177989 conjuncted-wg +177991 modifier-scope +modifier-scope +177994 wrapper-clause-scope +177997 conjuncted-wg +178000 modifier-scope +178002 wrapper-clause-scope +178007 modifier-scope +modifier-scope +178010 wrapper-clause-scope +178013 modifier-scope +modifier-scope +conjuncted-wg +178017 conjuncted-wg +178020 modifier-scope +178022 wrapper-clause-scope +178024 group +wrapper-clause-scope +178029 modifier-scope +conjuncted-wg +178032 modifier-scope +modifier-scope +conjuncted-wg +group +178037 wrapper-clause-scope +178040 wrapper-clause-scope +178042 group +modifier-clause-scope +group +modifier-clause-scope +178047 group +178049 wrapper-scope +modifier-scope +modifier-scope +178053 conjuncted-wg +wrapper-clause-scope +178056 modifier-scope +modifier-scope +178059 wrapper-clause-scope +178061 wrapper-scope +group +modifier-scope +apposition-group +178066 wrapper-scope +modifier-scope +178069 wrapper-clause-scope +178072 modifier-clause-scope +178074 conjuncted-wg +178077 wrapper-clause-scope +178080 conjuncted-wg +group +178083 modifier-scope +modifier-scope +178086 wrapper-scope +178089 wrapper-clause-scope +178092 modifier-scope +conjuncted-wg +178096 wrapper-clause-scope +178098 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +178104 modifier-scope +modifier-scope +modifier-scope +178108 wrapper-clause-scope +178110 wrapper-scope +modifier-scope +178114 wrapper-scope +conjuncted-wg +178117 wrapper-scope +modifier-scope +178120 wrapper-clause-scope +178122 wrapper-clause-scope +178126 modifier-scope +modifier-scope +conjuncted-wg +178133 wrapper-clause-scope +178136 modifier-scope +conjuncted-wg +178139 wrapper-scope +modifier-scope +178142 wrapper-scope +modifier-scope +178146 modifier-scope +modifier-scope +178149 wrapper-scope +wrapper-scope +modifier-scope +group +178157 group +178159 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +178168 conjuncted-wg +178171 wrapper-clause-scope +178173 wrapper-clause-scope +178175 wrapper-scope +178177 wrapper-clause-scope +group +178180 modifier-scope +178182 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +178188 wrapper-clause-scope +178190 modifier-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +group +group +178201 wrapper-scope +group +group +178205 modifier-scope +modifier-scope +178208 modifier-scope +modifier-scope +178211 wrapper-scope +178213 wrapper-clause-scope +178215 modifier-clause-scope +wrapper-clause-scope +178221 wrapper-clause-scope +178225 conjuncted-wg +178229 group +178231 group +178233 wrapper-clause-scope +178237 wrapper-clause-scope +178239 modifier-scope +178241 modifier-scope +178243 wrapper-clause-scope +178245 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-scope +wrapper-scope +178253 wrapper-clause-scope +178255 group +modifier-scope +wrapper-clause-scope +178259 wrapper-scope +modifier-scope +178262 wrapper-clause-scope +178265 modifier-scope +modifier-scope +modifier-scope +178269 wrapper-clause-scope +178271 modifier-clause-scope +apposition-group +modifier-clause-scope +178275 wrapper-scope +178277 wrapper-scope +178279 apposition-group +178281 conjuncted-wg +group +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +178289 modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +178295 wrapper-clause-scope +178297 wrapper-scope +modifier-scope +conjuncted-wg +178301 conjuncted-wg +group +modifier-scope +wrapper-clause-scope +178306 wrapper-scope +178308 wrapper-clause-scope +group +178311 group +wrapper-clause-scope +178314 apposition-group +178319 apposition-group +group +group +modifier-scope +wrapper-scope +modifier-scope +178326 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178333 wrapper-scope +modifier-scope +conjuncted-wg +178337 modifier-scope +modifier-scope +modifier-scope +178341 wrapper-clause-scope +178343 group +178345 modifier-scope +wrapper-clause-scope +178348 conjuncted-wg +178351 modifier-scope +wrapper-clause-scope +178355 wrapper-clause-scope +178358 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178363 wrapper-clause-scope +178368 modifier-scope +conjuncted-wg +178371 wrapper-scope +apposition-group +178374 wrapper-scope +wrapper-scope +conjuncted-wg +178378 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178383 wrapper-clause-scope +178386 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +178394 wrapper-clause-scope +178397 modifier-scope +178399 group +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +178410 wrapper-clause-scope +group +178413 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +178420 modifier-scope +178422 wrapper-clause-scope +178424 wrapper-scope +178426 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178432 wrapper-clause-scope +group +178436 wrapper-clause-scope +178438 modifier-scope +wrapper-clause-scope +178441 modifier-scope +178443 wrapper-clause-scope +178447 wrapper-scope +modifier-scope +178450 wrapper-scope +modifier-scope +178453 modifier-scope +conjuncted-wg +178457 wrapper-clause-scope +178462 group +group +modifier-scope +wrapper-clause-scope +178468 group +178472 group +178475 modifier-clause-scope +apposition-group +178479 wrapper-clause-scope +wrapper-clause-scope +178484 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +group +group +178492 wrapper-scope +modifier-scope +178495 wrapper-clause-scope +178498 wrapper-clause-scope +group +178502 wrapper-scope +modifier-scope +wrapper-clause-scope +178507 conjuncted-wg +178509 wrapper-clause-scope +178511 wrapper-clause-scope +178514 wrapper-clause-scope +178517 modifier-scope +apposition-group +group +modifier-scope +178522 wrapper-scope +modifier-scope +178527 wrapper-clause-scope +178529 wrapper-scope +178532 conjuncted-wg +178537 wrapper-clause-scope +178540 conjuncted-wg +178542 wrapper-scope +178544 wrapper-clause-scope +178546 wrapper-scope +178548 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +178553 wrapper-scope +178557 modifier-scope +178560 wrapper-clause-scope +178564 modifier-scope +modifier-scope +conjuncted-wg +178569 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +178574 wrapper-clause-scope +178578 wrapper-clause-scope +178582 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +178591 wrapper-clause-scope +178594 conjuncted-wg +178596 conjuncted-wg +178598 wrapper-clause-scope +178601 wrapper-clause-scope +178603 modifier-scope +wrapper-clause-scope +178607 group +178609 wrapper-scope +modifier-scope +modifier-scope +178613 modifier-scope +178615 group +wrapper-clause-scope +178618 modifier-scope +178620 modifier-scope +178623 wrapper-scope +conjuncted-wg +178627 wrapper-clause-scope +wrapper-clause-scope +178632 group +modifier-scope +wrapper-scope +wrapper-clause-scope +178637 wrapper-scope +modifier-scope +conjuncted-wg +178641 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +178649 modifier-scope +conjuncted-wg +178652 modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +178658 wrapper-clause-scope +178660 modifier-clause-scope +wrapper-clause-scope +178663 modifier-scope +wrapper-scope +modifier-scope +178667 wrapper-clause-scope +178669 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178674 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +178681 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +178686 group +178688 wrapper-clause-scope +178691 wrapper-scope +modifier-clause-scope +modifier-clause-scope +178695 wrapper-scope +wrapper-clause-scope +178698 wrapper-clause-scope +178700 wrapper-scope +178702 conjuncted-wg +modifier-scope +178708 modifier-scope +wrapper-clause-scope +178711 modifier-scope +apposition-group +178714 wrapper-scope +modifier-scope +178719 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +apposition-group +modifier-clause-scope +modifier-scope +178730 wrapper-scope +modifier-scope +conjuncted-wg +178735 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +178740 modifier-scope +modifier-scope +178743 wrapper-clause-scope +178745 wrapper-scope +modifier-scope +178748 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178753 conjuncted-wg +modifier-scope +178756 wrapper-clause-scope +178758 wrapper-clause-scope +178761 modifier-scope +conjuncted-wg +178764 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +178769 wrapper-clause-scope +group +178772 wrapper-scope +wrapper-clause-scope +178775 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +178783 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +178790 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178795 wrapper-clause-scope +178797 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +178806 wrapper-clause-scope +178808 modifier-scope +178810 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +178816 wrapper-clause-scope +178820 conjuncted-wg +178822 wrapper-scope +178824 wrapper-clause-scope +178826 wrapper-scope +modifier-scope +group +178831 wrapper-clause-scope +178834 modifier-scope +modifier-scope +conjuncted-wg +178838 group +modifier-scope +modifier-scope +conjuncted-wg +178843 modifier-scope +modifier-scope +178846 wrapper-clause-scope +178849 conjuncted-wg +178851 wrapper-clause-scope +178853 wrapper-scope +modifier-scope +modifier-scope +178857 wrapper-clause-scope +178860 wrapper-scope +conjuncted-wg +178864 conjuncted-wg +modifier-scope +conjuncted-wg +178868 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +178875 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +178883 wrapper-clause-scope +178885 wrapper-scope +wrapper-scope +modifier-scope +178889 conjuncted-wg +group +178893 modifier-scope +wrapper-scope +conjuncted-wg +178897 wrapper-scope +modifier-scope +178900 modifier-clause-scope +178903 wrapper-clause-scope +178905 wrapper-scope +modifier-scope +178908 wrapper-scope +178910 wrapper-clause-scope +178913 conjuncted-wg +178915 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +178921 wrapper-clause-scope +178924 modifier-scope +178927 group +wrapper-clause-scope +178930 wrapper-scope +modifier-scope +conjuncted-wg +178936 wrapper-scope +conjuncted-wg +178940 wrapper-clause-scope +178944 conjuncted-wg +178947 wrapper-scope +178949 modifier-scope +wrapper-scope +178952 apposition-group +modifier-scope +modifier-scope +178956 wrapper-scope +modifier-scope +modifier-scope +178960 wrapper-clause-scope +178963 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +178968 wrapper-scope +wrapper-clause-scope +178971 wrapper-scope +modifier-scope +178974 wrapper-clause-scope +178979 conjuncted-wg +178981 wrapper-clause-scope +178983 wrapper-scope +modifier-scope +178986 wrapper-clause-scope +178989 wrapper-scope +conjuncted-wg +178993 wrapper-clause-scope +group +group +178997 wrapper-clause-scope +178999 modifier-scope +modifier-scope +modifier-scope +modifier-scope +179004 wrapper-scope +modifier-scope +modifier-scope +179008 wrapper-clause-scope +179010 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +179017 wrapper-clause-scope +179019 modifier-scope +179021 wrapper-clause-scope +179023 wrapper-scope +apposition-group +179027 modifier-scope +wrapper-scope +179030 wrapper-clause-scope +179033 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +179046 wrapper-scope +modifier-clause-scope +179049 modifier-clause-scope +apposition-group +179052 wrapper-scope +modifier-scope +conjuncted-wg +179056 modifier-scope +modifier-scope +modifier-scope +179060 wrapper-clause-scope +179063 wrapper-scope +group +179068 modifier-scope +wrapper-scope +179071 wrapper-clause-scope +179074 wrapper-scope +modifier-scope +conjuncted-wg +179079 modifier-scope +modifier-scope +179082 wrapper-clause-scope +179084 modifier-scope +group +179088 wrapper-clause-scope +179090 wrapper-scope +modifier-scope +179093 wrapper-clause-scope +179097 wrapper-scope +conjuncted-wg +179100 conjuncted-wg +179102 modifier-scope +modifier-scope +179107 conjuncted-wg +179109 modifier-scope +conjuncted-wg +179112 group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +conjuncted-wg +179121 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +179128 modifier-scope +modifier-scope +179131 wrapper-clause-scope +179133 wrapper-scope +modifier-scope +group +179137 wrapper-clause-scope +179140 wrapper-clause-scope +179143 modifier-scope +179146 modifier-scope +wrapper-scope +conjuncted-wg +179150 modifier-scope +179152 wrapper-clause-scope +179154 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +179158 modifier-scope +179160 wrapper-clause-scope +179165 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +179173 modifier-scope +group +wrapper-clause-scope +179177 wrapper-clause-scope +179179 wrapper-scope +modifier-scope +modifier-scope +179183 wrapper-clause-scope +179185 group +group +179189 modifier-scope +modifier-scope +179192 wrapper-scope +modifier-scope +modifier-scope +179196 wrapper-clause-scope +179198 wrapper-scope +modifier-scope +179201 wrapper-clause-scope +179205 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +179215 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +179220 modifier-scope +179222 wrapper-clause-scope +group +group +179226 wrapper-clause-scope +179228 modifier-scope +modifier-scope +modifier-scope +modifier-scope +179234 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +179240 modifier-scope +modifier-scope +conjuncted-wg +179244 modifier-scope +conjuncted-wg +179250 wrapper-scope +conjuncted-wg +179254 modifier-scope +modifier-scope +modifier-scope +modifier-scope +179259 wrapper-clause-scope +179261 wrapper-clause-scope +179263 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +179269 wrapper-clause-scope +179271 wrapper-clause-scope +179273 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +179281 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +179287 wrapper-clause-scope +179289 wrapper-clause-scope +179291 wrapper-clause-scope +179293 wrapper-clause-scope +179295 wrapper-scope +179297 wrapper-clause-scope +179299 group +179302 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +179307 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +179316 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +179322 wrapper-clause-scope +179324 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +179329 wrapper-clause-scope +179332 modifier-scope +conjuncted-wg +179335 modifier-scope +modifier-scope +conjuncted-wg +179339 modifier-scope +modifier-scope +wrapper-scope +179343 conjuncted-wg +wrapper-clause-scope +179347 group +179349 wrapper-scope +modifier-scope +179352 modifier-scope +modifier-scope +179355 group +179358 wrapper-scope +conjuncted-wg +179364 conjuncted-wg +179368 group +179370 group +modifier-scope +179374 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +179382 wrapper-scope +modifier-scope +modifier-scope +179386 wrapper-clause-scope +179389 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +179394 wrapper-scope +modifier-scope +modifier-scope +179398 wrapper-clause-scope +179401 modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +179406 conjuncted-wg +179409 wrapper-clause-scope +179413 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +179419 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +179425 wrapper-clause-scope +group +179428 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +179435 modifier-scope +conjuncted-wg +179438 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +179444 wrapper-clause-scope +179447 modifier-scope +modifier-scope +179451 conjuncted-wg +179454 wrapper-clause-scope +179456 wrapper-scope +wrapper-clause-scope +179459 wrapper-scope +modifier-scope +modifier-scope +apposition-group +179464 modifier-scope +modifier-scope +179467 wrapper-clause-scope +179469 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +179476 wrapper-clause-scope +179481 modifier-scope +179483 wrapper-clause-scope +179486 wrapper-clause-scope +179490 modifier-scope +modifier-scope +conjuncted-wg +179494 modifier-scope +modifier-scope +conjuncted-wg +179499 modifier-scope +179501 wrapper-clause-scope +179504 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +179508 conjuncted-wg +179510 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +179520 modifier-clause-scope +wrapper-clause-scope +179523 wrapper-scope +modifier-scope +modifier-scope +179527 wrapper-clause-scope +179529 modifier-scope +modifier-scope +wrapper-clause-scope +179533 modifier-scope +modifier-scope +wrapper-scope +179537 wrapper-clause-scope +179540 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +179548 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +group +179557 conjuncted-wg +179559 modifier-scope +modifier-scope +conjuncted-wg +179563 modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +wrapper-clause-scope +179570 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +179579 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +179589 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +179594 group +modifier-scope +modifier-scope +apposition-group +179599 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +179606 wrapper-scope +modifier-scope +179609 wrapper-scope +179611 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +179617 wrapper-clause-scope +179620 modifier-scope +modifier-scope +wrapper-clause-scope +179624 wrapper-scope +179626 modifier-scope +wrapper-clause-scope +179629 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +179641 wrapper-scope +wrapper-scope +179644 wrapper-clause-scope +179646 wrapper-scope +179648 conjuncted-wg +modifier-scope +wrapper-clause-scope +179652 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +179657 wrapper-clause-scope +179661 modifier-scope +conjuncted-wg +179664 conjuncted-wg +179666 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +179675 wrapper-clause-scope +group +179678 wrapper-scope +modifier-scope +modifier-scope +179682 wrapper-scope +group +179685 modifier-scope +modifier-scope +179689 modifier-scope +179691 modifier-scope +179693 wrapper-clause-scope +179697 wrapper-scope +modifier-scope +modifier-scope +179701 wrapper-clause-scope +179703 modifier-scope +group +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +179717 wrapper-scope +wrapper-clause-scope +179720 wrapper-scope +modifier-scope +179723 conjuncted-wg +179725 wrapper-scope +group +group +wrapper-clause-scope +179732 wrapper-clause-scope +group +179735 wrapper-scope +wrapper-clause-scope +179740 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +179744 conjuncted-wg +179746 modifier-scope +modifier-scope +modifier-scope +modifier-scope +179751 wrapper-clause-scope +179754 conjuncted-wg +179756 wrapper-scope +wrapper-clause-scope +179759 wrapper-scope +modifier-scope +179762 wrapper-clause-scope +179764 wrapper-scope +group +modifier-scope +modifier-scope +179770 conjuncted-wg +179772 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +179778 wrapper-clause-scope +179782 modifier-scope +conjuncted-wg +179785 modifier-scope +conjuncted-wg +179788 modifier-scope +179790 wrapper-clause-scope +179792 modifier-scope +group +179795 wrapper-clause-scope +179797 apposition-group +modifier-scope +179800 modifier-scope +modifier-scope +wrapper-clause-scope +179804 apposition-group +179806 group +wrapper-scope +modifier-scope +179810 wrapper-clause-scope +179815 conjuncted-wg +179817 wrapper-scope +179819 wrapper-clause-scope +179821 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +179827 modifier-scope +conjuncted-wg +179832 wrapper-scope +conjuncted-wg +179835 wrapper-scope +wrapper-scope +modifier-scope +179839 wrapper-clause-scope +group +group +179843 wrapper-clause-scope +179845 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +179850 modifier-scope +wrapper-scope +wrapper-clause-scope +179855 wrapper-scope +conjuncted-wg +179858 apposition-group +group +modifier-scope +modifier-scope +wrapper-clause-scope +179865 modifier-scope +179867 wrapper-clause-scope +179871 conjuncted-wg +179875 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +179881 modifier-scope +wrapper-scope +modifier-scope +179885 wrapper-clause-scope +179888 wrapper-scope +group +modifier-scope +wrapper-clause-scope +179893 wrapper-scope +modifier-scope +modifier-scope +179897 wrapper-clause-scope +179899 modifier-clause-scope +wrapper-clause-scope +179902 wrapper-scope +wrapper-clause-scope +179905 wrapper-scope +modifier-scope +wrapper-scope +179909 wrapper-clause-scope +179911 modifier-scope +modifier-scope +modifier-scope +179915 wrapper-scope +modifier-scope +modifier-scope +179919 wrapper-clause-scope +179921 modifier-scope +179924 conjuncted-wg +modifier-scope +wrapper-scope +modifier-clause-scope +179931 conjuncted-wg +179933 wrapper-scope +179935 wrapper-clause-scope +group +wrapper-clause-scope +179939 modifier-scope +wrapper-clause-scope +179942 wrapper-clause-scope +179944 modifier-scope +modifier-scope +179947 wrapper-clause-scope +179949 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +179954 wrapper-scope +modifier-scope +179957 wrapper-clause-scope +group +wrapper-clause-scope +179961 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +179969 wrapper-scope +179971 group +179973 modifier-scope +wrapper-clause-scope +179976 wrapper-scope +modifier-scope +wrapper-clause-scope +179980 modifier-clause-scope +modifier-clause-scope +179983 modifier-scope +conjuncted-wg +179986 wrapper-clause-scope +179988 wrapper-scope +wrapper-clause-scope +179991 wrapper-scope +modifier-scope +modifier-scope +179996 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +180001 wrapper-clause-scope +180005 wrapper-scope +conjuncted-wg +180009 modifier-scope +modifier-scope +180012 conjuncted-wg +180014 modifier-scope +modifier-scope +conjuncted-wg +180018 modifier-scope +wrapper-scope +180021 wrapper-clause-scope +180023 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180029 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +180033 modifier-scope +modifier-scope +180036 wrapper-clause-scope +180038 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +180043 wrapper-clause-scope +180046 wrapper-scope +wrapper-clause-scope +180049 modifier-scope +group +modifier-scope +wrapper-clause-scope +180054 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +180058 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +180066 modifier-scope +conjuncted-wg +180071 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +180079 modifier-scope +modifier-scope +group +apposition-group +modifier-scope +modifier-scope +180086 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180091 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +group +modifier-scope +180099 wrapper-clause-scope +180101 wrapper-scope +180103 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +wrapper-clause-scope +180110 wrapper-scope +180112 wrapper-clause-scope +180115 conjuncted-wg +180117 wrapper-scope +group +modifier-scope +modifier-scope +180125 wrapper-scope +modifier-scope +180128 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-clause-scope +180136 conjuncted-wg +180138 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +180145 wrapper-scope +modifier-scope +180148 wrapper-clause-scope +180150 group +180152 modifier-scope +group +group +modifier-scope +wrapper-scope +modifier-scope +180161 wrapper-scope +modifier-scope +180164 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +180171 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180177 conjuncted-wg +180179 conjuncted-wg +180181 wrapper-clause-scope +180184 modifier-scope +modifier-scope +180187 modifier-scope +conjuncted-wg +180190 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +180194 modifier-scope +180196 wrapper-clause-scope +group +wrapper-clause-scope +180200 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +180206 group +wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +180213 wrapper-clause-scope +180216 modifier-scope +conjuncted-wg +180220 conjuncted-wg +180222 modifier-scope +wrapper-scope +180225 wrapper-clause-scope +180227 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180235 wrapper-clause-scope +group +wrapper-clause-scope +180239 modifier-scope +group +180243 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +180249 modifier-scope +180252 wrapper-scope +wrapper-clause-scope +180255 group +modifier-scope +wrapper-scope +conjuncted-wg +180260 modifier-scope +modifier-scope +180263 wrapper-clause-scope +180268 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +180273 wrapper-scope +180275 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +180281 wrapper-scope +180284 wrapper-clause-scope +group +180287 wrapper-scope +modifier-scope +180292 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +180299 conjuncted-wg +180302 wrapper-clause-scope +180304 modifier-clause-scope +wrapper-clause-scope +180307 wrapper-scope +modifier-scope +180310 modifier-scope +conjuncted-wg +modifier-scope +180314 wrapper-clause-scope +180318 conjuncted-wg +180320 wrapper-scope +modifier-scope +modifier-scope +group +180327 group +modifier-scope +modifier-scope +180332 wrapper-clause-scope +180334 wrapper-scope +group +180337 wrapper-clause-scope +180340 wrapper-clause-scope +180343 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180348 wrapper-clause-scope +180350 modifier-clause-scope +apposition-group +180354 wrapper-clause-scope +180357 wrapper-scope +conjuncted-wg +180360 wrapper-scope +conjuncted-wg +180363 wrapper-scope +180365 wrapper-clause-scope +180367 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +180375 wrapper-clause-scope +180377 wrapper-scope +modifier-scope +180380 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +180385 conjuncted-wg +180387 wrapper-clause-scope +180389 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +180397 group +modifier-scope +conjuncted-wg +180401 modifier-scope +conjuncted-wg +180404 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +180410 conjuncted-wg +conjuncted-wg +180413 modifier-scope +wrapper-scope +group +180417 conjuncted-wg +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +180426 wrapper-clause-scope +180428 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +180434 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +180440 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +180446 modifier-clause-scope +180448 wrapper-scope +modifier-scope +group +180452 modifier-scope +modifier-scope +180455 modifier-scope +modifier-scope +180461 modifier-scope +conjuncted-wg +180464 modifier-scope +180466 conjuncted-wg +conjuncted-wg +180470 modifier-scope +wrapper-scope +conjuncted-wg +180474 modifier-scope +wrapper-scope +modifier-scope +180478 wrapper-clause-scope +180480 modifier-scope +modifier-scope +modifier-scope +modifier-scope +180485 wrapper-clause-scope +180487 modifier-clause-scope +modifier-clause-scope +180491 wrapper-scope +180494 modifier-scope +180496 wrapper-scope +modifier-clause-scope +modifier-clause-scope +180501 wrapper-clause-scope +180503 modifier-scope +modifier-scope +modifier-scope +180507 wrapper-clause-scope +180510 wrapper-scope +180512 modifier-scope +wrapper-clause-scope +180515 wrapper-clause-scope +180517 modifier-scope +180519 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180524 wrapper-clause-scope +180526 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +180533 wrapper-clause-scope +180536 modifier-clause-scope +modifier-clause-scope +180539 modifier-scope +conjuncted-wg +180542 wrapper-scope +180544 wrapper-clause-scope +180546 modifier-scope +180548 wrapper-clause-scope +180551 wrapper-clause-scope +180556 wrapper-clause-scope +180558 modifier-scope +wrapper-clause-scope +180561 conjuncted-wg +180563 wrapper-clause-scope +180566 wrapper-clause-scope +180569 modifier-scope +180571 conjuncted-wg +180573 wrapper-scope +180577 wrapper-clause-scope +180579 wrapper-scope +180581 modifier-scope +wrapper-scope +wrapper-clause-scope +180586 wrapper-clause-scope +180588 modifier-clause-scope +180592 modifier-scope +180594 wrapper-clause-scope +180599 conjuncted-wg +180601 conjuncted-wg +180603 modifier-scope +modifier-scope +180606 wrapper-clause-scope +group +180610 modifier-scope +conjuncted-wg +180613 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +180619 modifier-scope +180622 modifier-scope +180624 conjuncted-wg +180626 conjuncted-wg +180628 apposition-group +modifier-scope +modifier-scope +180633 modifier-scope +modifier-scope +modifier-scope +modifier-scope +180638 wrapper-scope +180640 modifier-scope +conjuncted-wg +180644 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +180651 modifier-scope +modifier-scope +conjuncted-wg +180655 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +180661 modifier-scope +modifier-scope +180664 wrapper-clause-scope +wrapper-clause-scope +180669 conjuncted-wg +modifier-scope +180672 wrapper-clause-scope +180674 group +modifier-scope +modifier-scope +180678 wrapper-scope +180680 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +apposition-group +180690 group +modifier-scope +modifier-scope +wrapper-scope +180695 modifier-scope +wrapper-scope +180698 wrapper-clause-scope +180700 wrapper-scope +wrapper-clause-scope +group +180704 modifier-scope +modifier-scope +180708 modifier-scope +conjuncted-wg +180713 modifier-scope +conjuncted-wg +180716 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +180724 wrapper-scope +group +180727 group +modifier-scope +modifier-scope +modifier-scope +180732 wrapper-scope +180734 wrapper-clause-scope +180736 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +180744 modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +group +modifier-scope +180898 wrapper-clause-scope +180901 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +180907 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +180912 modifier-scope +wrapper-scope +modifier-scope +180916 wrapper-clause-scope +180919 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +180927 wrapper-clause-scope +180929 modifier-scope +group +wrapper-clause-scope +180933 modifier-scope +modifier-scope +180936 modifier-scope +modifier-scope +wrapper-clause-scope +180941 wrapper-clause-scope +180943 wrapper-scope +modifier-scope +180946 wrapper-clause-scope +180948 wrapper-scope +modifier-scope +modifier-scope +180952 wrapper-clause-scope +180955 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +180962 wrapper-clause-scope +180964 modifier-scope +group +180968 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +180977 conjuncted-wg +180979 wrapper-clause-scope +180982 wrapper-clause-scope +180984 wrapper-clause-scope +180986 wrapper-scope +180988 wrapper-clause-scope +180991 modifier-scope +180995 group +modifier-scope +modifier-scope +conjuncted-wg +181000 modifier-scope +181002 wrapper-clause-scope +181006 wrapper-scope +conjuncted-wg +181009 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +181015 group +wrapper-clause-scope +181018 modifier-scope +modifier-scope +181022 wrapper-clause-scope +181025 wrapper-clause-scope +181027 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +181032 conjuncted-wg +wrapper-clause-scope +group +181036 wrapper-scope +181038 wrapper-scope +modifier-scope +modifier-scope +181042 wrapper-clause-scope +181045 modifier-scope +wrapper-clause-scope +181049 group +modifier-scope +modifier-scope +181053 wrapper-clause-scope +181056 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +181061 wrapper-clause-scope +181063 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +181071 wrapper-clause-scope +181073 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +181078 wrapper-clause-scope +181080 wrapper-scope +modifier-scope +modifier-scope +181084 wrapper-scope +181086 wrapper-clause-scope +181089 wrapper-scope +apposition-group +181092 wrapper-scope +conjuncted-wg +181096 wrapper-scope +wrapper-clause-scope +181099 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +181109 wrapper-clause-scope +181112 modifier-scope +group +modifier-scope +conjuncted-wg +181118 modifier-scope +modifier-clause-scope +apposition-group +181122 wrapper-scope +181125 modifier-scope +wrapper-scope +181128 wrapper-scope +181130 group +181133 conjuncted-wg +181137 wrapper-scope +181139 modifier-scope +modifier-scope +181142 wrapper-clause-scope +181145 modifier-scope +181147 modifier-scope +181149 wrapper-clause-scope +181151 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +181158 wrapper-clause-scope +181161 wrapper-scope +wrapper-clause-scope +181164 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +181170 wrapper-clause-scope +181174 conjuncted-wg +181176 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +181183 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +181188 wrapper-clause-scope +181190 modifier-scope +181192 wrapper-clause-scope +181194 wrapper-scope +181196 modifier-scope +modifier-scope +181203 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +181210 wrapper-clause-scope +181214 wrapper-clause-scope +181216 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +181221 wrapper-clause-scope +181223 wrapper-scope +181225 group +181227 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +181235 modifier-scope +wrapper-scope +181238 modifier-scope +conjuncted-wg +modifier-scope +181242 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +181248 wrapper-scope +modifier-scope +wrapper-clause-scope +181252 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +181258 wrapper-clause-scope +181261 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +conjuncted-wg +181269 modifier-scope +wrapper-clause-scope +181272 group +modifier-scope +181275 wrapper-clause-scope +181278 modifier-scope +wrapper-scope +modifier-scope +181282 conjuncted-wg +181286 wrapper-scope +modifier-scope +conjuncted-wg +181290 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +181295 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +181301 wrapper-clause-scope +181304 wrapper-scope +modifier-scope +181307 wrapper-clause-scope +181309 wrapper-scope +group +modifier-scope +modifier-scope +181314 wrapper-clause-scope +181316 wrapper-scope +wrapper-scope +modifier-scope +181320 wrapper-clause-scope +181322 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +181327 wrapper-scope +modifier-scope +modifier-scope +181331 wrapper-clause-scope +181334 wrapper-scope +modifier-scope +modifier-clause-scope +181338 modifier-scope +modifier-scope +conjuncted-wg +181342 modifier-scope +group +group +181348 conjuncted-wg +181350 group +181354 group +181357 modifier-scope +modifier-scope +modifier-scope +181361 wrapper-clause-scope +181363 modifier-scope +181367 conjuncted-wg +181369 wrapper-scope +181371 wrapper-clause-scope +181373 modifier-scope +181375 wrapper-scope +modifier-scope +wrapper-scope +181380 wrapper-clause-scope +181383 wrapper-scope +conjuncted-wg +181386 wrapper-scope +181389 modifier-scope +modifier-scope +wrapper-clause-scope +181394 wrapper-scope +181396 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +181402 wrapper-clause-scope +181404 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +181411 wrapper-clause-scope +181414 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +181420 wrapper-clause-scope +181423 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +181429 wrapper-scope +181431 wrapper-clause-scope +181435 wrapper-scope +modifier-scope +conjuncted-wg +181440 wrapper-clause-scope +181444 wrapper-clause-scope +181447 modifier-scope +modifier-clause-scope +181451 modifier-scope +wrapper-scope +181454 wrapper-clause-scope +181457 modifier-scope +modifier-scope +modifier-scope +181461 wrapper-clause-scope +181463 modifier-scope +wrapper-scope +181467 conjuncted-wg +181469 wrapper-clause-scope +181471 modifier-scope +modifier-scope +modifier-scope +181475 wrapper-clause-scope +181479 wrapper-clause-scope +181482 modifier-scope +181484 wrapper-clause-scope +group +181489 wrapper-scope +modifier-scope +181492 wrapper-clause-scope +181496 modifier-scope +conjuncted-wg +181499 wrapper-scope +conjuncted-wg +181502 wrapper-clause-scope +181504 wrapper-scope +181506 wrapper-clause-scope +181508 wrapper-scope +wrapper-clause-scope +181512 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +181520 wrapper-scope +181522 wrapper-clause-scope +181524 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +181530 wrapper-clause-scope +181533 wrapper-scope +wrapper-clause-scope +181537 modifier-scope +conjuncted-wg +181540 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +181546 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +181553 modifier-scope +wrapper-scope +modifier-scope +181557 wrapper-clause-scope +181559 modifier-scope +181561 wrapper-scope +modifier-scope +181564 wrapper-clause-scope +181568 wrapper-scope +apposition-group +modifier-scope +modifier-scope +181574 wrapper-scope +modifier-scope +conjuncted-wg +181579 wrapper-scope +modifier-scope +modifier-scope +181583 wrapper-clause-scope +group +wrapper-clause-scope +181589 wrapper-scope +modifier-scope +181593 wrapper-scope +modifier-scope +conjuncted-wg +181597 modifier-scope +modifier-scope +wrapper-scope +181601 wrapper-clause-scope +181608 wrapper-scope +modifier-scope +conjuncted-wg +181612 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +181617 wrapper-clause-scope +181621 modifier-scope +modifier-scope +conjuncted-wg +181625 modifier-scope +modifier-scope +181628 wrapper-clause-scope +181630 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +181639 wrapper-clause-scope +181642 conjuncted-wg +181644 modifier-scope +modifier-scope +wrapper-clause-scope +181649 wrapper-clause-scope +181652 group +modifier-scope +modifier-scope +181657 wrapper-scope +wrapper-clause-scope +181660 modifier-scope +181663 wrapper-clause-scope +181667 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +181677 conjuncted-wg +181679 modifier-clause-scope +apposition-group +group +181683 conjuncted-wg +modifier-scope +181686 modifier-scope +181688 wrapper-clause-scope +181690 wrapper-scope +modifier-scope +modifier-scope +group +181696 wrapper-scope +modifier-scope +wrapper-scope +181700 wrapper-clause-scope +181703 modifier-scope +wrapper-scope +modifier-scope +181708 wrapper-clause-scope +181712 wrapper-scope +wrapper-clause-scope +181715 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +181721 modifier-scope +modifier-scope +conjuncted-wg +181726 modifier-scope +181728 wrapper-scope +181732 wrapper-clause-scope +181737 wrapper-clause-scope +181740 modifier-scope +181745 wrapper-clause-scope +181747 modifier-scope +wrapper-scope +181750 wrapper-clause-scope +181754 conjuncted-wg +181758 modifier-scope +conjuncted-wg +181761 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +181766 wrapper-scope +modifier-scope +181769 wrapper-clause-scope +181772 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +181777 modifier-scope +181780 conjuncted-wg +181782 wrapper-scope +modifier-scope +modifier-scope +181786 wrapper-clause-scope +181789 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +181795 wrapper-clause-scope +181798 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +181804 wrapper-scope +conjuncted-wg +181807 wrapper-scope +apposition-group +181810 conjuncted-wg +181812 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +181818 conjuncted-wg +conjuncted-wg +181821 wrapper-clause-scope +181823 modifier-scope +wrapper-scope +wrapper-clause-scope +181828 wrapper-clause-scope +181831 wrapper-scope +apposition-group +181834 wrapper-scope +conjuncted-wg +181839 conjuncted-wg +181841 wrapper-scope +181843 wrapper-clause-scope +181847 wrapper-scope +modifier-scope +181850 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +181861 wrapper-clause-scope +181864 modifier-scope +modifier-scope +181868 modifier-scope +modifier-scope +181871 wrapper-clause-scope +181875 modifier-scope +conjuncted-wg +modifier-scope +181880 apposition-group +181882 group +181885 wrapper-clause-scope +181887 modifier-scope +modifier-scope +181890 wrapper-clause-scope +181892 modifier-scope +181894 modifier-scope +modifier-scope +181897 wrapper-scope +181900 wrapper-scope +modifier-scope +modifier-scope +group +181908 modifier-scope +modifier-scope +conjuncted-wg +181914 conjuncted-wg +181916 conjuncted-wg +wrapper-clause-scope +181921 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +181929 wrapper-clause-scope +181934 conjuncted-wg +181937 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +181943 wrapper-clause-scope +181946 wrapper-scope +181949 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +181954 modifier-scope +181956 wrapper-clause-scope +181959 conjuncted-wg +181962 modifier-scope +conjuncted-wg +181966 wrapper-clause-scope +181969 wrapper-clause-scope +181972 wrapper-scope +conjuncted-wg +181977 modifier-clause-scope +181979 wrapper-scope +modifier-scope +conjuncted-wg +181985 wrapper-clause-scope +181990 wrapper-clause-scope +181992 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +181997 wrapper-clause-scope +181999 modifier-clause-scope +modifier-scope +apposition-group +182003 conjuncted-wg +182005 wrapper-scope +wrapper-scope +182008 wrapper-clause-scope +182011 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182020 wrapper-scope +wrapper-scope +modifier-scope +182024 conjuncted-wg +182026 conjuncted-wg +182028 wrapper-clause-scope +182031 modifier-scope +wrapper-scope +group +182035 modifier-scope +wrapper-clause-scope +182039 wrapper-clause-scope +182042 group +182046 wrapper-scope +182048 wrapper-clause-scope +182050 wrapper-scope +182052 group +182055 modifier-scope +modifier-scope +conjuncted-wg +182060 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182065 modifier-scope +182067 conjuncted-wg +182069 wrapper-clause-scope +182071 modifier-scope +wrapper-scope +wrapper-clause-scope +182077 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +182082 modifier-scope +wrapper-scope +182085 wrapper-clause-scope +182088 conjuncted-wg +182090 wrapper-clause-scope +182092 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182098 wrapper-clause-scope +182100 modifier-scope +wrapper-scope +wrapper-clause-scope +182105 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +182110 wrapper-clause-scope +182112 wrapper-clause-scope +182114 conjuncted-wg +182116 modifier-scope +conjuncted-wg +182119 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +182126 wrapper-clause-scope +182128 modifier-scope +wrapper-scope +modifier-scope +182132 wrapper-clause-scope +182134 wrapper-clause-scope +182137 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182144 conjuncted-wg +182146 modifier-scope +182148 wrapper-clause-scope +182150 modifier-scope +wrapper-scope +modifier-scope +182154 wrapper-clause-scope +group +182158 wrapper-clause-scope +182161 modifier-scope +182163 wrapper-clause-scope +182167 wrapper-scope +wrapper-scope +conjuncted-wg +182172 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +182177 modifier-scope +182179 wrapper-clause-scope +182181 modifier-scope +modifier-scope +182185 modifier-scope +182187 wrapper-clause-scope +182190 wrapper-scope +modifier-scope +182193 apposition-group +182198 conjuncted-wg +wrapper-clause-scope +182201 wrapper-scope +wrapper-clause-scope +182205 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182212 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182217 modifier-scope +wrapper-scope +182223 modifier-scope +modifier-scope +182226 wrapper-clause-scope +182229 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +182235 wrapper-clause-scope +182240 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +182246 conjuncted-wg +182249 conjuncted-wg +182251 modifier-scope +modifier-scope +modifier-scope +modifier-scope +182256 wrapper-clause-scope +group +group +182261 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +182266 wrapper-scope +modifier-scope +wrapper-clause-scope +182272 wrapper-clause-scope +182275 modifier-scope +modifier-scope +conjuncted-wg +182279 group +modifier-scope +wrapper-clause-scope +182283 modifier-scope +182286 conjuncted-wg +182288 wrapper-scope +modifier-scope +182291 wrapper-clause-scope +182295 wrapper-clause-scope +182297 modifier-scope +wrapper-scope +182300 wrapper-clause-scope +182302 modifier-scope +group +182306 conjuncted-wg +182310 conjuncted-wg +182313 wrapper-clause-scope +182316 modifier-scope +182318 modifier-scope +modifier-scope +182321 wrapper-clause-scope +182324 conjuncted-wg +182326 modifier-scope +modifier-scope +182329 wrapper-clause-scope +182332 conjuncted-wg +182334 wrapper-scope +wrapper-clause-scope +182337 modifier-scope +182339 wrapper-clause-scope +182343 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +182349 conjuncted-wg +182351 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +182357 wrapper-clause-scope +group +wrapper-clause-scope +182363 modifier-scope +modifier-scope +conjuncted-wg +182367 wrapper-scope +group +apposition-group +182371 modifier-scope +182373 apposition-group +182375 conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +182391 conjuncted-wg +modifier-scope +conjuncted-wg +apposition-group +group +182398 wrapper-clause-scope +182402 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +182408 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +apposition-group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +182419 modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +182426 conjuncted-wg +182430 conjuncted-wg +182432 wrapper-scope +modifier-scope +modifier-scope +182436 wrapper-clause-scope +182438 wrapper-clause-scope +182440 wrapper-scope +modifier-scope +182443 wrapper-clause-scope +group +182446 modifier-scope +modifier-scope +182449 wrapper-clause-scope +182452 wrapper-scope +conjuncted-wg +182456 wrapper-clause-scope +182459 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +182466 modifier-scope +wrapper-clause-scope +182469 modifier-scope +modifier-scope +modifier-scope +182474 wrapper-clause-scope +182476 wrapper-clause-scope +182480 wrapper-clause-scope +182482 wrapper-clause-scope +182485 group +182488 wrapper-clause-scope +182490 modifier-scope +conjuncted-wg +wrapper-clause-scope +182495 conjuncted-wg +182497 conjuncted-wg +182499 modifier-scope +modifier-scope +wrapper-clause-scope +182503 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +182508 group +182511 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +182516 wrapper-clause-scope +182518 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +182523 wrapper-clause-scope +182525 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +182531 wrapper-clause-scope +182533 group +modifier-scope +wrapper-clause-scope +182537 modifier-scope +modifier-scope +182542 wrapper-clause-scope +182544 wrapper-clause-scope +182547 group +182550 wrapper-clause-scope +182552 wrapper-clause-scope +182555 conjuncted-wg +182558 group +182562 modifier-scope +modifier-scope +wrapper-clause-scope +182566 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +182572 wrapper-clause-scope +182574 group +wrapper-clause-scope +182577 group +182579 modifier-scope +modifier-scope +182582 wrapper-clause-scope +182585 wrapper-clause-scope +182588 wrapper-scope +wrapper-clause-scope +182594 wrapper-clause-scope +182596 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182602 wrapper-scope +wrapper-clause-scope +182605 modifier-scope +modifier-scope +modifier-scope +modifier-scope +182612 modifier-clause-scope +182614 conjuncted-wg +182616 wrapper-scope +wrapper-clause-scope +182619 modifier-scope +182621 wrapper-clause-scope +182623 wrapper-clause-scope +182625 wrapper-clause-scope +182627 modifier-scope +182629 wrapper-clause-scope +group +182632 wrapper-clause-scope +182634 wrapper-clause-scope +182636 modifier-scope +wrapper-clause-scope +182639 modifier-scope +modifier-scope +wrapper-clause-scope +182644 wrapper-clause-scope +group +182647 wrapper-clause-scope +182649 wrapper-clause-scope +182651 modifier-scope +182653 modifier-scope +modifier-scope +modifier-scope +182657 wrapper-clause-scope +group +group +wrapper-clause-scope +182662 wrapper-scope +182666 modifier-scope +group +182669 modifier-scope +wrapper-clause-scope +182672 modifier-scope +182674 wrapper-clause-scope +182678 modifier-scope +modifier-scope +conjuncted-wg +182682 conjuncted-wg +182686 wrapper-clause-scope +182689 modifier-scope +modifier-scope +conjuncted-wg +182693 modifier-scope +wrapper-clause-scope +182696 wrapper-scope +modifier-scope +182699 conjuncted-wg +182702 wrapper-clause-scope +182704 modifier-scope +modifier-scope +182707 wrapper-clause-scope +182710 conjuncted-wg +182712 modifier-scope +182714 wrapper-clause-scope +182717 conjuncted-wg +182719 modifier-scope +182723 conjuncted-wg +182728 conjuncted-wg +182732 modifier-clause-scope +modifier-scope +group +182738 wrapper-scope +modifier-scope +modifier-scope +182742 wrapper-clause-scope +182745 modifier-scope +182747 wrapper-clause-scope +182749 modifier-scope +182751 wrapper-clause-scope +182755 wrapper-clause-scope +182757 wrapper-scope +182761 wrapper-scope +modifier-scope +conjuncted-wg +182765 modifier-clause-scope +182767 wrapper-scope +modifier-scope +modifier-scope +182771 wrapper-clause-scope +182774 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182784 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182793 modifier-scope +modifier-scope +182798 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182805 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182814 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +182821 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +182830 wrapper-clause-scope +182833 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +182838 modifier-scope +modifier-scope +182841 wrapper-clause-scope +182843 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182848 wrapper-clause-scope +182851 wrapper-scope +conjuncted-wg +182854 wrapper-scope +182856 group +182859 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182869 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +182875 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +182880 wrapper-clause-scope +182883 group +182886 conjuncted-wg +182892 modifier-clause-scope +wrapper-clause-scope +182896 wrapper-scope +conjuncted-wg +182899 modifier-scope +modifier-scope +conjuncted-wg +182906 apposition-group +modifier-clause-scope +182911 conjuncted-wg +182913 conjuncted-wg +182915 wrapper-scope +modifier-scope +182918 wrapper-clause-scope +182920 group +182923 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +182929 wrapper-scope +wrapper-clause-scope +182933 wrapper-clause-scope +182935 wrapper-clause-scope +182938 conjuncted-wg +182940 modifier-clause-scope +182942 wrapper-scope +modifier-scope +wrapper-scope +182947 modifier-scope +conjuncted-wg +182950 conjuncted-wg +182952 modifier-scope +modifier-scope +modifier-scope +modifier-scope +182957 group +wrapper-clause-scope +182960 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +182968 wrapper-scope +182970 wrapper-clause-scope +182972 modifier-scope +modifier-scope +182978 wrapper-clause-scope +182981 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +182987 wrapper-clause-scope +182990 modifier-scope +modifier-scope +182993 wrapper-clause-scope +182996 wrapper-scope +modifier-scope +182999 wrapper-clause-scope +group +183003 wrapper-clause-scope +183006 modifier-scope +modifier-scope +conjuncted-wg +183010 modifier-scope +183012 wrapper-clause-scope +183014 modifier-scope +wrapper-scope +183017 wrapper-clause-scope +group +183020 modifier-scope +wrapper-scope +modifier-scope +183024 modifier-scope +183029 wrapper-clause-scope +183031 wrapper-clause-scope +183033 wrapper-scope +modifier-scope +modifier-scope +183037 wrapper-clause-scope +183040 wrapper-scope +183042 wrapper-clause-scope +183045 conjuncted-wg +183047 modifier-scope +modifier-scope +183050 wrapper-clause-scope +183053 modifier-scope +modifier-clause-scope +group +183057 wrapper-scope +183059 wrapper-scope +conjuncted-wg +183065 conjuncted-wg +183067 conjuncted-wg +183069 group +183072 conjuncted-wg +183074 conjuncted-wg +183076 group +183078 modifier-scope +modifier-scope +183081 conjuncted-wg +183084 wrapper-clause-scope +183088 modifier-scope +conjuncted-wg +183092 modifier-clause-scope +modifier-clause-scope +183097 wrapper-scope +modifier-scope +modifier-scope +183101 wrapper-clause-scope +183104 wrapper-scope +modifier-scope +wrapper-clause-scope +183109 modifier-scope +183111 wrapper-clause-scope +group +183114 wrapper-scope +modifier-scope +183118 wrapper-scope +modifier-clause-scope +183121 conjuncted-wg +183124 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +183129 wrapper-clause-scope +183131 wrapper-clause-scope +183133 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183140 modifier-clause-scope +183142 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183148 conjuncted-wg +183150 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +183155 wrapper-clause-scope +183159 modifier-scope +wrapper-scope +conjuncted-wg +183165 wrapper-clause-scope +183170 modifier-scope +conjuncted-wg +183173 wrapper-clause-scope +183175 conjuncted-wg +183181 wrapper-clause-scope +183185 modifier-scope +conjuncted-wg +183189 conjuncted-wg +183191 modifier-scope +modifier-scope +183194 wrapper-clause-scope +183197 conjuncted-wg +183199 modifier-scope +183202 wrapper-clause-scope +183204 modifier-scope +wrapper-scope +conjuncted-wg +wrapper-clause-scope +183209 modifier-scope +modifier-scope +modifier-scope +183213 wrapper-clause-scope +183215 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +183221 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +183227 wrapper-clause-scope +183229 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +183234 wrapper-clause-scope +183237 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +183247 wrapper-clause-scope +183249 conjuncted-wg +183252 wrapper-clause-scope +183255 wrapper-scope +modifier-scope +183258 group +modifier-scope +wrapper-scope +183264 wrapper-clause-scope +183266 conjuncted-wg +183271 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +183276 conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +183281 modifier-scope +183284 wrapper-clause-scope +183291 conjuncted-wg +183294 group +183298 conjuncted-wg +group +183304 wrapper-clause-scope +183306 wrapper-clause-scope +183308 wrapper-scope +183310 wrapper-clause-scope +183313 modifier-scope +modifier-scope +183316 wrapper-scope +modifier-scope +wrapper-scope +group +183322 wrapper-scope +modifier-scope +183325 modifier-clause-scope +183327 wrapper-scope +183329 wrapper-clause-scope +183333 modifier-clause-scope +183335 wrapper-scope +modifier-scope +183339 modifier-clause-scope +183341 wrapper-scope +modifier-scope +conjuncted-wg +183345 wrapper-scope +modifier-scope +183348 wrapper-clause-scope +183355 group +wrapper-clause-scope +183358 modifier-scope +183362 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +183368 modifier-scope +modifier-scope +wrapper-scope +183374 wrapper-scope +modifier-scope +183377 wrapper-clause-scope +183379 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +183386 wrapper-clause-scope +183389 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +183394 modifier-scope +183396 modifier-scope +modifier-scope +183399 wrapper-clause-scope +183402 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +183410 wrapper-scope +183412 wrapper-clause-scope +183415 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183423 apposition-group +group +wrapper-clause-scope +183428 wrapper-scope +conjuncted-wg +183435 conjuncted-wg +183439 conjuncted-wg +183442 wrapper-clause-scope +183445 group +modifier-scope +183449 conjuncted-wg +183451 conjuncted-wg +183457 modifier-scope +modifier-scope +modifier-scope +183462 conjuncted-wg +183464 conjuncted-wg +183466 group +183469 group +group +183472 conjuncted-wg +modifier-scope +183475 conjuncted-wg +183477 wrapper-clause-scope +183479 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +183485 wrapper-clause-scope +183487 modifier-scope +modifier-scope +wrapper-clause-scope +183491 wrapper-scope +183493 wrapper-clause-scope +183496 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +183501 wrapper-clause-scope +183505 apposition-group +183507 wrapper-scope +modifier-scope +conjuncted-wg +183513 wrapper-clause-scope +183515 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +183521 modifier-scope +conjuncted-wg +183524 wrapper-scope +modifier-scope +modifier-scope +183529 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183534 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183540 modifier-scope +modifier-scope +conjuncted-wg +183544 modifier-scope +183546 wrapper-clause-scope +183549 group +modifier-scope +wrapper-clause-scope +183553 wrapper-scope +183555 group +group +wrapper-clause-scope +183559 wrapper-clause-scope +183563 conjuncted-wg +modifier-clause-scope +apposition-group +183567 wrapper-clause-scope +183570 wrapper-clause-scope +183573 modifier-scope +wrapper-scope +183579 wrapper-clause-scope +group +183586 group +group +183589 modifier-scope +modifier-scope +183593 modifier-scope +modifier-scope +conjuncted-wg +183597 modifier-scope +group +183602 wrapper-clause-scope +183604 modifier-scope +183609 wrapper-clause-scope +183611 modifier-scope +183613 wrapper-clause-scope +183617 wrapper-clause-scope +183620 wrapper-scope +modifier-scope +modifier-scope +183624 modifier-scope +modifier-scope +183627 group +183629 wrapper-scope +modifier-scope +modifier-scope +183634 wrapper-scope +conjuncted-wg +183638 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183643 modifier-scope +modifier-scope +183648 conjuncted-wg +183650 wrapper-scope +183653 modifier-scope +modifier-scope +183658 modifier-scope +modifier-scope +conjuncted-wg +183662 modifier-scope +modifier-scope +183667 wrapper-scope +183669 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +183676 wrapper-clause-scope +183680 wrapper-clause-scope +183683 modifier-scope +modifier-scope +183686 wrapper-clause-scope +183688 wrapper-clause-scope +183691 wrapper-scope +183694 modifier-scope +183696 wrapper-clause-scope +183698 wrapper-scope +modifier-scope +183701 modifier-scope +modifier-scope +183704 wrapper-scope +183706 wrapper-clause-scope +183709 wrapper-scope +modifier-scope +conjuncted-wg +183714 wrapper-scope +183716 conjuncted-wg +183719 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183725 wrapper-scope +183727 modifier-scope +conjuncted-wg +group +apposition-group +modifier-scope +183733 wrapper-scope +wrapper-scope +183736 modifier-scope +conjuncted-wg +183739 apposition-group +group +wrapper-clause-scope +183744 wrapper-scope +modifier-scope +conjuncted-wg +group +modifier-scope +group +modifier-scope +conjuncted-wg +conjuncted-wg +apposition-group +modifier-scope +183756 wrapper-scope +wrapper-clause-scope +183760 wrapper-clause-scope +group +183764 modifier-scope +conjuncted-wg +183767 modifier-scope +wrapper-scope +wrapper-scope +183771 wrapper-scope +183773 wrapper-clause-scope +183775 wrapper-clause-scope +183777 modifier-scope +modifier-scope +183780 wrapper-clause-scope +183783 wrapper-scope +wrapper-clause-scope +183786 wrapper-scope +modifier-scope +conjuncted-wg +183790 conjuncted-wg +183792 modifier-scope +modifier-scope +modifier-scope +183796 wrapper-clause-scope +183799 wrapper-scope +modifier-scope +conjuncted-wg +183804 wrapper-scope +wrapper-clause-scope +183808 wrapper-clause-scope +183811 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +183817 modifier-scope +183819 wrapper-clause-scope +183822 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183829 modifier-scope +183834 wrapper-clause-scope +183838 wrapper-clause-scope +183840 modifier-scope +modifier-scope +183843 modifier-scope +modifier-scope +183846 wrapper-clause-scope +183851 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +183858 modifier-scope +wrapper-scope +wrapper-clause-scope +183864 conjuncted-wg +183868 wrapper-clause-scope +183870 modifier-scope +183873 modifier-scope +modifier-scope +modifier-scope +modifier-scope +183878 wrapper-clause-scope +group +183881 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +183886 group +183889 modifier-scope +conjuncted-wg +183892 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +183900 wrapper-clause-scope +183903 modifier-scope +wrapper-scope +modifier-scope +183907 wrapper-clause-scope +183909 wrapper-scope +modifier-scope +conjuncted-wg +183915 wrapper-scope +conjuncted-wg +183918 wrapper-scope +modifier-scope +183921 wrapper-clause-scope +183925 wrapper-clause-scope +183927 wrapper-scope +modifier-scope +wrapper-clause-scope +183931 conjuncted-wg +183933 wrapper-scope +183935 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +183940 conjuncted-wg +183943 wrapper-clause-scope +183946 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +183953 wrapper-scope +modifier-scope +183956 conjuncted-wg +modifier-scope +conjuncted-wg +183960 wrapper-scope +183962 wrapper-clause-scope +183967 conjuncted-wg +183969 wrapper-scope +conjuncted-wg +183972 wrapper-scope +wrapper-clause-scope +183975 wrapper-clause-scope +183977 modifier-scope +183979 wrapper-clause-scope +183982 apposition-group +183984 conjuncted-wg +183986 apposition-group +183989 modifier-scope +conjuncted-wg +183992 wrapper-scope +183994 wrapper-clause-scope +183998 wrapper-clause-scope +184000 group +wrapper-clause-scope +184004 conjuncted-wg +184006 wrapper-clause-scope +184008 modifier-clause-scope +184011 wrapper-scope +184013 wrapper-clause-scope +184016 wrapper-scope +184018 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +184025 wrapper-scope +modifier-scope +184028 wrapper-clause-scope +184032 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +184040 wrapper-clause-scope +184043 wrapper-scope +184047 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +184052 modifier-scope +modifier-scope +modifier-scope +184056 conjuncted-wg +184058 wrapper-clause-scope +184061 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +184068 wrapper-scope +conjuncted-wg +184071 modifier-scope +modifier-scope +conjuncted-wg +184075 wrapper-scope +184077 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +184082 wrapper-clause-scope +184085 wrapper-clause-scope +group +184090 wrapper-clause-scope +184093 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +184099 conjuncted-wg +184102 wrapper-clause-scope +184106 group +group +184112 wrapper-clause-scope +184116 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +184122 wrapper-clause-scope +184125 conjuncted-wg +184128 wrapper-clause-scope +184131 modifier-scope +modifier-scope +184134 wrapper-clause-scope +184138 wrapper-scope +wrapper-clause-scope +group +184142 wrapper-clause-scope +184146 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +184153 wrapper-clause-scope +184155 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +184161 wrapper-scope +modifier-scope +184164 wrapper-clause-scope +184167 wrapper-scope +modifier-scope +modifier-clause-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +184176 wrapper-clause-scope +184179 modifier-scope +conjuncted-wg +184183 wrapper-scope +conjuncted-wg +184186 wrapper-scope +modifier-scope +184189 wrapper-clause-scope +184193 modifier-scope +184195 conjuncted-wg +184197 modifier-scope +group +184201 conjuncted-wg +184203 group +modifier-scope +group +modifier-scope +modifier-scope +184211 wrapper-clause-scope +184213 modifier-scope +modifier-scope +modifier-scope +184217 wrapper-scope +modifier-scope +184220 wrapper-clause-scope +184223 modifier-scope +conjuncted-wg +184227 conjuncted-wg +184229 conjuncted-wg +184232 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +184238 wrapper-clause-scope +184240 modifier-scope +184243 wrapper-clause-scope +group +184247 wrapper-clause-scope +184249 modifier-scope +wrapper-scope +184252 wrapper-clause-scope +184254 wrapper-clause-scope +184257 wrapper-scope +modifier-scope +184260 wrapper-clause-scope +184262 modifier-clause-scope +modifier-scope +modifier-scope +184266 wrapper-scope +modifier-scope +184269 wrapper-clause-scope +184271 wrapper-clause-scope +184274 wrapper-scope +184276 wrapper-clause-scope +184279 wrapper-clause-scope +184282 modifier-scope +184284 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +184291 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +184299 wrapper-clause-scope +184302 wrapper-clause-scope +184305 wrapper-clause-scope +184307 conjuncted-wg +184310 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +184316 wrapper-clause-scope +184321 wrapper-clause-scope +184323 conjuncted-wg +184325 wrapper-scope +modifier-scope +conjuncted-wg +184330 apposition-group +modifier-scope +184333 wrapper-scope +modifier-scope +184337 conjuncted-wg +184339 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +184346 wrapper-clause-scope +184348 wrapper-clause-scope +184351 wrapper-clause-scope +184354 wrapper-clause-scope +184356 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +184363 wrapper-scope +wrapper-clause-scope +184366 modifier-scope +184368 wrapper-clause-scope +184371 wrapper-scope +184373 wrapper-clause-scope +184375 modifier-clause-scope +apposition-group +184378 wrapper-scope +modifier-scope +184381 wrapper-scope +184383 wrapper-clause-scope +184388 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +184394 modifier-scope +184396 wrapper-clause-scope +184399 wrapper-scope +modifier-scope +modifier-scope +184403 modifier-scope +184405 wrapper-clause-scope +group +184408 wrapper-scope +wrapper-clause-scope +184411 modifier-scope +modifier-scope +wrapper-clause-scope +184415 wrapper-scope +184417 wrapper-clause-scope +184420 apposition-group +184422 conjuncted-wg +184424 modifier-scope +modifier-scope +conjuncted-wg +184429 wrapper-scope +modifier-scope +modifier-scope +184433 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +184439 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +184446 wrapper-clause-scope +184448 wrapper-scope +wrapper-clause-scope +184451 modifier-scope +184453 wrapper-clause-scope +184456 apposition-group +modifier-clause-scope +184459 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +184465 wrapper-scope +184467 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +184473 modifier-scope +modifier-scope +modifier-scope +modifier-scope +184478 wrapper-clause-scope +184480 modifier-scope +184482 wrapper-clause-scope +184485 wrapper-clause-scope +184488 modifier-scope +184492 modifier-scope +conjuncted-wg +184496 wrapper-clause-scope +184498 modifier-scope +group +184501 wrapper-clause-scope +184504 wrapper-scope +184506 wrapper-clause-scope +184509 modifier-scope +184514 conjuncted-wg +184519 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +184527 wrapper-clause-scope +184531 modifier-scope +modifier-scope +184534 wrapper-scope +184538 wrapper-scope +modifier-scope +184541 wrapper-clause-scope +group +184544 modifier-scope +modifier-scope +184547 modifier-scope +184549 wrapper-clause-scope +184551 modifier-scope +184553 group +184557 conjuncted-wg +184560 wrapper-clause-scope +184563 wrapper-scope +modifier-scope +184566 wrapper-scope +wrapper-clause-scope +184570 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +184579 wrapper-clause-scope +184582 conjuncted-wg +184584 wrapper-clause-scope +184586 group +184588 group +184592 wrapper-clause-scope +184595 wrapper-clause-scope +184598 wrapper-clause-scope +184601 modifier-scope +modifier-scope +184606 modifier-scope +184608 wrapper-clause-scope +184612 modifier-scope +modifier-scope +conjuncted-wg +184616 conjuncted-wg +184621 wrapper-clause-scope +184623 modifier-scope +modifier-scope +184626 wrapper-clause-scope +184629 wrapper-clause-scope +184632 wrapper-clause-scope +184636 modifier-scope +184638 conjuncted-wg +184640 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +184645 conjuncted-wg +184649 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +184655 wrapper-clause-scope +184657 wrapper-scope +184661 wrapper-scope +modifier-scope +184664 conjuncted-wg +184666 conjuncted-wg +184668 conjuncted-wg +184670 conjuncted-wg +184672 conjuncted-wg +184674 wrapper-scope +modifier-scope +conjuncted-wg +184678 group +wrapper-clause-scope +184681 wrapper-scope +modifier-scope +184685 conjuncted-wg +184687 conjuncted-wg +group +wrapper-clause-scope +184693 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +184704 wrapper-clause-scope +184707 wrapper-scope +modifier-scope +184711 conjuncted-wg +184713 wrapper-clause-scope +184716 group +modifier-scope +modifier-clause-scope +wrapper-clause-scope +184721 conjuncted-wg +184723 wrapper-scope +wrapper-clause-scope +184727 wrapper-scope +wrapper-clause-scope +184730 wrapper-scope +conjuncted-wg +184733 wrapper-scope +wrapper-clause-scope +184736 conjuncted-wg +184738 wrapper-clause-scope +184740 group +modifier-scope +modifier-scope +184744 wrapper-clause-scope +184748 conjuncted-wg +184750 apposition-group +184752 wrapper-scope +184754 wrapper-clause-scope +184758 wrapper-clause-scope +184761 modifier-scope +184764 wrapper-clause-scope +184767 wrapper-scope +wrapper-scope +modifier-clause-scope +184772 wrapper-clause-scope +184774 modifier-scope +184777 wrapper-clause-scope +184781 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +184787 wrapper-clause-scope +184789 modifier-scope +184791 wrapper-clause-scope +184793 modifier-scope +184796 wrapper-clause-scope +184799 modifier-scope +group +184802 modifier-scope +wrapper-clause-scope +184807 wrapper-scope +modifier-scope +modifier-scope +184811 conjuncted-wg +conjuncted-wg +184814 wrapper-clause-scope +184816 wrapper-scope +modifier-scope +184819 wrapper-clause-scope +184821 wrapper-scope +184825 wrapper-clause-scope +184827 group +184830 conjuncted-wg +184833 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +184840 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +184845 wrapper-clause-scope +184847 modifier-scope +184849 wrapper-clause-scope +184851 wrapper-scope +modifier-scope +modifier-scope +184855 modifier-scope +modifier-scope +wrapper-scope +184859 wrapper-clause-scope +184862 conjuncted-wg +184865 wrapper-clause-scope +184870 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +184876 wrapper-scope +modifier-scope +conjuncted-wg +184880 conjuncted-wg +184882 modifier-scope +184884 modifier-scope +184886 wrapper-clause-scope +184890 conjuncted-wg +184892 conjuncted-wg +184894 group +wrapper-clause-scope +184897 modifier-scope +modifier-scope +184900 wrapper-clause-scope +184903 wrapper-scope +wrapper-clause-scope +184906 wrapper-scope +wrapper-scope +184909 modifier-scope +conjuncted-wg +184915 modifier-scope +184917 wrapper-clause-scope +184922 group +modifier-scope +conjuncted-wg +184926 conjuncted-wg +184928 wrapper-clause-scope +184930 modifier-scope +modifier-scope +modifier-scope +184934 wrapper-clause-scope +184936 wrapper-clause-scope +184940 wrapper-clause-scope +184944 modifier-scope +modifier-scope +modifier-scope +184948 wrapper-clause-scope +184953 wrapper-clause-scope +184957 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +184962 wrapper-scope +modifier-scope +184965 conjuncted-wg +conjuncted-wg +conjuncted-wg +184969 conjuncted-wg +184971 modifier-scope +modifier-scope +184974 wrapper-clause-scope +184976 wrapper-scope +group +wrapper-clause-scope +184981 wrapper-scope +184984 conjuncted-wg +184986 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +184992 wrapper-clause-scope +184994 wrapper-clause-scope +184997 modifier-scope +modifier-scope +185000 wrapper-clause-scope +185002 wrapper-clause-scope +185004 modifier-scope +modifier-scope +wrapper-scope +185008 wrapper-clause-scope +185012 modifier-scope +modifier-scope +conjuncted-wg +185017 conjuncted-wg +185019 wrapper-clause-scope +group +wrapper-clause-scope +185024 conjuncted-wg +modifier-scope +modifier-scope +group +185029 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +185034 wrapper-scope +modifier-scope +modifier-scope +185038 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +185044 wrapper-clause-scope +185047 apposition-group +modifier-clause-scope +wrapper-clause-scope +185053 modifier-scope +wrapper-clause-scope +185056 modifier-scope +modifier-scope +modifier-scope +185060 wrapper-clause-scope +185063 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185072 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +185078 wrapper-clause-scope +185081 wrapper-scope +wrapper-clause-scope +185085 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185091 modifier-scope +modifier-scope +185095 wrapper-clause-scope +185097 modifier-scope +185100 conjuncted-wg +185103 wrapper-scope +apposition-group +modifier-scope +modifier-scope +185109 wrapper-scope +185111 wrapper-clause-scope +185114 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +wrapper-scope +185120 wrapper-clause-scope +185124 modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-clause-scope +185133 wrapper-clause-scope +group +185136 wrapper-scope +wrapper-clause-scope +185139 wrapper-scope +185141 modifier-scope +wrapper-scope +modifier-scope +185148 conjuncted-wg +group +185151 modifier-scope +185154 conjuncted-wg +185156 conjuncted-wg +185161 wrapper-clause-scope +185165 conjuncted-wg +185168 wrapper-clause-scope +185170 wrapper-scope +wrapper-clause-scope +185173 wrapper-scope +modifier-scope +185176 wrapper-clause-scope +185178 wrapper-scope +modifier-scope +185182 group +modifier-scope +modifier-scope +wrapper-clause-scope +185189 wrapper-clause-scope +185191 wrapper-scope +wrapper-clause-scope +185194 modifier-scope +185196 wrapper-clause-scope +185199 conjuncted-wg +185201 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +185207 wrapper-clause-scope +group +185210 modifier-scope +modifier-scope +group +185214 wrapper-scope +modifier-scope +185217 modifier-scope +185219 wrapper-clause-scope +185221 modifier-scope +wrapper-scope +modifier-scope +185229 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +185234 conjuncted-wg +185237 conjuncted-wg +185239 conjuncted-wg +185241 wrapper-scope +conjuncted-wg +185244 wrapper-scope +185247 wrapper-clause-scope +185250 modifier-scope +modifier-scope +wrapper-clause-scope +185254 conjuncted-wg +185257 wrapper-clause-scope +185260 modifier-scope +group +185265 modifier-clause-scope +185267 conjuncted-wg +185270 wrapper-scope +wrapper-scope +conjuncted-wg +185275 modifier-scope +modifier-scope +185278 wrapper-clause-scope +group +185283 modifier-scope +conjuncted-wg +185287 wrapper-clause-scope +185290 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185296 modifier-scope +conjuncted-wg +185299 modifier-scope +modifier-scope +185302 wrapper-clause-scope +185304 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +185309 wrapper-clause-scope +group +185312 wrapper-scope +modifier-clause-scope +185316 wrapper-scope +modifier-scope +modifier-scope +185320 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +185327 modifier-scope +modifier-scope +modifier-scope +185331 wrapper-scope +modifier-scope +185334 wrapper-clause-scope +185338 modifier-scope +modifier-scope +conjuncted-wg +185342 wrapper-scope +wrapper-scope +wrapper-clause-scope +185346 conjuncted-wg +185349 wrapper-scope +modifier-scope +modifier-scope +185353 wrapper-clause-scope +185355 wrapper-scope +group +wrapper-clause-scope +wrapper-clause-scope +185360 modifier-scope +185362 wrapper-clause-scope +185365 modifier-scope +185367 modifier-scope +modifier-scope +modifier-scope +modifier-scope +185372 wrapper-scope +conjuncted-wg +185378 wrapper-clause-scope +185380 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +185387 wrapper-clause-scope +185389 wrapper-clause-scope +185393 wrapper-clause-scope +185395 wrapper-scope +modifier-scope +185398 wrapper-clause-scope +185401 modifier-scope +185407 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +185412 wrapper-clause-scope +185414 wrapper-scope +185416 wrapper-clause-scope +185418 wrapper-scope +group +185421 wrapper-clause-scope +185424 wrapper-scope +wrapper-scope +185427 wrapper-clause-scope +185430 wrapper-scope +wrapper-clause-scope +185433 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185440 modifier-scope +wrapper-clause-scope +185443 wrapper-scope +conjuncted-wg +185446 wrapper-scope +modifier-scope +185449 wrapper-clause-scope +185452 wrapper-scope +modifier-scope +wrapper-clause-scope +185457 wrapper-clause-scope +185459 wrapper-clause-scope +185461 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +185466 wrapper-clause-scope +185469 group +modifier-scope +185472 conjuncted-wg +185479 wrapper-scope +modifier-scope +conjuncted-wg +185484 wrapper-clause-scope +185488 wrapper-clause-scope +185490 wrapper-scope +modifier-scope +185493 wrapper-clause-scope +group +185496 wrapper-scope +modifier-scope +185499 wrapper-scope +185501 wrapper-clause-scope +185504 wrapper-clause-scope +185506 modifier-scope +185510 modifier-scope +conjuncted-wg +185513 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185518 modifier-scope +modifier-scope +modifier-scope +185522 modifier-scope +185524 wrapper-clause-scope +185526 wrapper-scope +185529 wrapper-clause-scope +185534 modifier-scope +modifier-scope +185537 wrapper-clause-scope +185542 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185548 modifier-scope +modifier-scope +modifier-scope +185552 wrapper-clause-scope +185554 modifier-scope +185558 conjuncted-wg +185561 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +185566 wrapper-clause-scope +185568 wrapper-scope +modifier-scope +185573 modifier-scope +wrapper-scope +conjuncted-wg +185577 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +185583 wrapper-clause-scope +185586 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +185591 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +185596 modifier-scope +conjuncted-wg +apposition-group +185602 wrapper-clause-scope +185604 wrapper-scope +185606 conjuncted-wg +185608 modifier-scope +conjuncted-wg +185611 modifier-scope +185613 wrapper-clause-scope +185615 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +185620 wrapper-scope +modifier-scope +modifier-scope +185624 wrapper-clause-scope +185627 wrapper-clause-scope +185629 wrapper-scope +modifier-scope +185633 group +185637 conjuncted-wg +185639 wrapper-scope +modifier-scope +185642 wrapper-clause-scope +group +wrapper-clause-scope +185646 wrapper-scope +modifier-scope +185650 modifier-scope +modifier-scope +185653 wrapper-clause-scope +185655 wrapper-clause-scope +185657 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +185662 wrapper-clause-scope +wrapper-clause-scope +185665 wrapper-scope +185667 wrapper-clause-scope +group +185670 wrapper-scope +modifier-scope +modifier-scope +185675 conjuncted-wg +modifier-scope +wrapper-scope +wrapper-clause-scope +185680 modifier-scope +modifier-scope +modifier-scope +185685 group +wrapper-scope +wrapper-scope +185689 wrapper-clause-scope +group +wrapper-clause-scope +185694 wrapper-scope +modifier-scope +conjuncted-wg +185700 wrapper-clause-scope +185702 conjuncted-wg +185704 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +185710 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +185715 wrapper-clause-scope +group +wrapper-clause-scope +185720 wrapper-scope +modifier-scope +conjuncted-wg +185726 wrapper-scope +modifier-scope +modifier-scope +185731 modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +185736 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +185743 wrapper-clause-scope +185745 modifier-scope +modifier-scope +modifier-scope +185750 wrapper-clause-scope +185753 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +185758 modifier-scope +modifier-scope +185766 wrapper-clause-scope +185768 wrapper-clause-scope +185770 wrapper-scope +185772 conjuncted-wg +group +modifier-scope +wrapper-clause-scope +185777 wrapper-scope +185780 wrapper-scope +185782 conjuncted-wg +185784 wrapper-clause-scope +185788 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +185794 wrapper-clause-scope +185798 wrapper-scope +185801 wrapper-scope +modifier-scope +185806 wrapper-clause-scope +185808 conjuncted-wg +185810 wrapper-clause-scope +185813 wrapper-clause-scope +185815 wrapper-clause-scope +185817 wrapper-clause-scope +185820 wrapper-clause-scope +185822 modifier-scope +wrapper-scope +185827 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +185833 wrapper-clause-scope +185837 modifier-scope +wrapper-clause-scope +185840 wrapper-scope +modifier-scope +185845 modifier-scope +wrapper-clause-scope +185849 wrapper-scope +185851 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185860 modifier-scope +185862 wrapper-clause-scope +185864 group +185866 wrapper-scope +wrapper-clause-scope +185869 modifier-scope +conjuncted-wg +group +185873 wrapper-clause-scope +185875 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +185882 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +185890 group +group +group +185895 group +modifier-scope +185898 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +185904 wrapper-scope +185906 conjuncted-wg +conjuncted-wg +185909 group +185912 modifier-scope +wrapper-clause-scope +185915 wrapper-scope +185918 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +185924 group +185926 modifier-scope +wrapper-clause-scope +185929 modifier-scope +conjuncted-wg +group +185933 modifier-scope +wrapper-clause-scope +185937 modifier-scope +conjuncted-wg +wrapper-clause-scope +185942 modifier-scope +185944 wrapper-clause-scope +185947 wrapper-scope +modifier-scope +wrapper-scope +group +185952 group +modifier-scope +wrapper-clause-scope +185957 wrapper-clause-scope +185959 wrapper-clause-scope +185963 modifier-scope +185965 conjuncted-wg +185968 conjuncted-wg +185970 conjuncted-wg +185974 conjuncted-wg +185977 wrapper-clause-scope +185979 modifier-scope +185985 modifier-scope +185987 wrapper-clause-scope +185989 wrapper-scope +185991 wrapper-scope +modifier-scope +185995 wrapper-clause-scope +186000 group +modifier-scope +modifier-scope +186004 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +186025 modifier-scope +modifier-scope +wrapper-clause-scope +186030 wrapper-clause-scope +186035 conjuncted-wg +186038 wrapper-clause-scope +186042 wrapper-scope +modifier-scope +wrapper-clause-scope +186046 modifier-scope +186050 modifier-scope +186053 modifier-scope +group +wrapper-scope +wrapper-scope +conjuncted-wg +186062 conjuncted-wg +186066 wrapper-clause-scope +186069 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +186078 wrapper-clause-scope +186080 modifier-scope +186083 wrapper-scope +modifier-scope +conjuncted-wg +186088 wrapper-clause-scope +186091 modifier-scope +186093 wrapper-scope +conjuncted-wg +186097 conjuncted-wg +186101 modifier-scope +modifier-scope +186105 conjuncted-wg +conjuncted-wg +186110 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +186117 wrapper-clause-scope +186120 wrapper-scope +modifier-scope +186123 modifier-scope +modifier-scope +conjuncted-wg +186129 conjuncted-wg +186131 apposition-group +wrapper-clause-scope +186134 wrapper-scope +wrapper-clause-scope +186140 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +186146 wrapper-scope +modifier-scope +186149 wrapper-clause-scope +186152 wrapper-clause-scope +186154 modifier-scope +wrapper-scope +186157 wrapper-clause-scope +186159 modifier-scope +186162 conjuncted-wg +186165 wrapper-clause-scope +186167 wrapper-scope +wrapper-clause-scope +186170 wrapper-scope +modifier-scope +186173 wrapper-clause-scope +186175 modifier-clause-scope +modifier-scope +186178 wrapper-scope +modifier-scope +186181 wrapper-clause-scope +186183 apposition-group +modifier-clause-scope +186188 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186195 wrapper-clause-scope +186197 modifier-scope +wrapper-scope +modifier-scope +186201 wrapper-clause-scope +186204 group +186207 wrapper-clause-scope +186209 modifier-scope +modifier-scope +186212 modifier-scope +wrapper-clause-scope +186215 wrapper-clause-scope +186218 wrapper-clause-scope +186221 modifier-scope +group +group +group +186230 conjuncted-wg +wrapper-scope +conjuncted-wg +186235 modifier-scope +conjuncted-wg +186238 wrapper-clause-scope +186240 modifier-scope +modifier-scope +186244 wrapper-clause-scope +186247 wrapper-scope +wrapper-clause-scope +186250 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +186256 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +186263 wrapper-clause-scope +186265 modifier-scope +modifier-scope +modifier-scope +186269 wrapper-clause-scope +186271 group +wrapper-clause-scope +186275 group +186278 modifier-scope +modifier-scope +186281 modifier-scope +modifier-scope +186285 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +186292 wrapper-clause-scope +group +186295 modifier-scope +modifier-scope +wrapper-clause-scope +186299 modifier-scope +modifier-clause-scope +186303 wrapper-clause-scope +186305 wrapper-scope +186307 wrapper-clause-scope +186309 wrapper-scope +186312 modifier-scope +wrapper-scope +conjuncted-wg +186316 wrapper-scope +conjuncted-wg +186321 modifier-scope +wrapper-clause-scope +186325 modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +186334 group +186338 modifier-scope +conjuncted-wg +186341 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +186351 group +wrapper-clause-scope +186355 wrapper-scope +wrapper-clause-scope +186358 modifier-scope +wrapper-clause-scope +186361 wrapper-scope +modifier-scope +modifier-scope +186368 group +group +186372 conjuncted-wg +186376 conjuncted-wg +186380 conjuncted-wg +186382 wrapper-clause-scope +186385 modifier-clause-scope +wrapper-clause-scope +186388 conjuncted-wg +186390 wrapper-clause-scope +186392 conjuncted-wg +186394 wrapper-clause-scope +186397 wrapper-clause-scope +186400 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +186407 wrapper-scope +conjuncted-wg +186412 wrapper-clause-scope +group +wrapper-clause-scope +186418 modifier-scope +modifier-scope +modifier-scope +186422 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +186431 wrapper-clause-scope +186434 wrapper-scope +conjuncted-wg +186438 wrapper-clause-scope +wrapper-clause-scope +186441 group +186443 modifier-scope +186445 modifier-scope +186447 wrapper-clause-scope +186449 modifier-scope +186451 wrapper-clause-scope +186453 modifier-scope +wrapper-scope +186456 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186463 wrapper-clause-scope +186466 modifier-scope +wrapper-scope +wrapper-scope +186470 wrapper-clause-scope +186473 modifier-scope +modifier-scope +186477 modifier-clause-scope +modifier-clause-scope +186480 wrapper-scope +conjuncted-wg +186483 wrapper-scope +186485 wrapper-clause-scope +group +group +wrapper-clause-scope +186490 modifier-scope +modifier-scope +wrapper-scope +186494 modifier-scope +modifier-scope +wrapper-clause-scope +186499 wrapper-scope +modifier-scope +186502 wrapper-clause-scope +186504 wrapper-clause-scope +186506 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +186513 wrapper-scope +modifier-scope +186516 wrapper-clause-scope +186518 wrapper-clause-scope +186520 wrapper-scope +modifier-scope +modifier-scope +186524 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +186530 wrapper-clause-scope +186532 modifier-scope +186534 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +186541 wrapper-clause-scope +group +wrapper-clause-scope +186545 modifier-scope +186550 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +186555 modifier-scope +modifier-scope +186560 wrapper-clause-scope +186562 wrapper-scope +wrapper-scope +conjuncted-wg +186566 wrapper-clause-scope +186568 wrapper-scope +186570 group +wrapper-clause-scope +186573 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +186579 wrapper-scope +modifier-scope +186582 conjuncted-wg +186586 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +186592 wrapper-clause-scope +186597 conjuncted-wg +186603 conjuncted-wg +186605 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +186612 conjuncted-wg +186614 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186620 wrapper-clause-scope +186623 wrapper-scope +wrapper-clause-scope +186627 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +186633 group +modifier-scope +wrapper-clause-scope +186637 conjuncted-wg +apposition-group +186641 wrapper-clause-scope +186643 wrapper-clause-scope +186645 modifier-clause-scope +186648 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +186654 wrapper-clause-scope +group +186657 modifier-scope +186660 group +group +186663 modifier-scope +modifier-scope +modifier-scope +186668 conjuncted-wg +186670 wrapper-clause-scope +186672 modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +186678 modifier-scope +186680 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186688 group +186691 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +186701 wrapper-clause-scope +186703 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +186708 modifier-scope +modifier-scope +conjuncted-wg +186712 modifier-scope +186715 group +186718 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +186726 wrapper-clause-scope +186728 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +186733 modifier-scope +186739 wrapper-scope +conjuncted-wg +186742 wrapper-scope +modifier-scope +conjuncted-wg +group +186747 wrapper-scope +modifier-scope +wrapper-clause-scope +186751 wrapper-clause-scope +186753 modifier-scope +186756 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186763 wrapper-clause-scope +186765 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186772 wrapper-clause-scope +186774 wrapper-clause-scope +186776 modifier-scope +modifier-scope +modifier-scope +186780 wrapper-clause-scope +group +186783 wrapper-clause-scope +186785 group +modifier-scope +modifier-scope +wrapper-scope +186790 wrapper-clause-scope +186792 wrapper-clause-scope +186794 modifier-scope +modifier-scope +modifier-scope +186798 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +186804 modifier-scope +modifier-scope +186807 wrapper-clause-scope +186809 wrapper-scope +wrapper-clause-scope +186812 wrapper-clause-scope +186814 wrapper-scope +186816 wrapper-clause-scope +186820 wrapper-clause-scope +186822 modifier-scope +186824 wrapper-clause-scope +186826 wrapper-scope +modifier-scope +186829 wrapper-clause-scope +186831 modifier-scope +wrapper-scope +186835 group +modifier-scope +modifier-scope +modifier-scope +186840 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +186845 modifier-scope +modifier-scope +186848 conjuncted-wg +186853 wrapper-clause-scope +186855 modifier-scope +modifier-scope +modifier-scope +186859 wrapper-clause-scope +186862 wrapper-clause-scope +186864 conjuncted-wg +186867 wrapper-clause-scope +186869 group +modifier-scope +wrapper-clause-scope +186875 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +186883 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +186889 wrapper-clause-scope +186891 group +186895 group +186897 group +modifier-scope +wrapper-clause-scope +186902 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +186912 group +186914 wrapper-clause-scope +186917 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +186923 group +modifier-scope +wrapper-clause-scope +186928 wrapper-clause-scope +186931 modifier-scope +modifier-scope +186936 modifier-scope +186938 wrapper-clause-scope +186941 modifier-scope +group +modifier-scope +wrapper-clause-scope +186947 modifier-scope +modifier-scope +conjuncted-wg +186951 modifier-scope +modifier-scope +modifier-scope +modifier-scope +186957 wrapper-clause-scope +186960 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +186965 modifier-scope +modifier-scope +186968 wrapper-clause-scope +group +186972 conjuncted-wg +186974 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +186980 conjuncted-wg +186982 conjuncted-wg +186986 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +186993 wrapper-scope +186995 conjuncted-wg +conjuncted-wg +group +186999 wrapper-scope +187001 conjuncted-wg +wrapper-clause-scope +187004 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +187011 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +187024 wrapper-scope +187026 modifier-scope +conjuncted-wg +modifier-scope +187033 wrapper-scope +modifier-scope +modifier-scope +187038 group +modifier-scope +wrapper-clause-scope +187042 modifier-scope +modifier-scope +modifier-scope +187047 conjuncted-wg +187049 wrapper-clause-scope +187052 group +187056 modifier-scope +conjuncted-wg +modifier-scope +187061 conjuncted-wg +187063 wrapper-scope +187066 wrapper-scope +modifier-scope +modifier-scope +187072 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +187079 wrapper-scope +modifier-scope +modifier-scope +187083 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +187088 modifier-scope +187090 wrapper-clause-scope +187093 apposition-group +187096 conjuncted-wg +apposition-group +187100 wrapper-scope +187104 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +187111 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +187118 wrapper-clause-scope +187120 group +modifier-scope +modifier-scope +187124 wrapper-scope +wrapper-clause-scope +187128 modifier-scope +conjuncted-wg +187131 wrapper-scope +187133 modifier-scope +187135 wrapper-clause-scope +187140 wrapper-clause-scope +187142 wrapper-scope +wrapper-clause-scope +187146 wrapper-scope +modifier-scope +187153 wrapper-clause-scope +187155 modifier-scope +modifier-scope +187158 wrapper-clause-scope +187160 modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +187166 wrapper-clause-scope +187168 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +187178 modifier-scope +187180 wrapper-clause-scope +187184 modifier-clause-scope +wrapper-clause-scope +187187 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +187200 wrapper-clause-scope +187202 wrapper-clause-scope +187204 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +187211 wrapper-clause-scope +187214 modifier-clause-scope +187216 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +187221 wrapper-clause-scope +187223 wrapper-clause-scope +187225 wrapper-scope +modifier-scope +modifier-scope +187229 wrapper-clause-scope +group +wrapper-clause-scope +187233 wrapper-scope +187235 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +187243 conjuncted-wg +187245 conjuncted-wg +187248 wrapper-clause-scope +187250 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +187258 wrapper-clause-scope +187260 modifier-scope +wrapper-scope +modifier-scope +187265 modifier-scope +modifier-scope +187268 wrapper-scope +modifier-scope +187271 wrapper-clause-scope +187275 modifier-scope +187277 conjuncted-wg +wrapper-scope +187280 wrapper-clause-scope +187282 wrapper-scope +group +187286 conjuncted-wg +187288 wrapper-scope +modifier-scope +wrapper-clause-scope +187292 wrapper-scope +wrapper-clause-scope +187295 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +187301 wrapper-clause-scope +187303 wrapper-scope +187306 modifier-scope +modifier-scope +modifier-scope +modifier-scope +187311 wrapper-clause-scope +187313 wrapper-scope +187315 group +187317 wrapper-clause-scope +187320 modifier-scope +modifier-scope +187323 wrapper-clause-scope +187325 group +187331 modifier-scope +modifier-scope +conjuncted-wg +187335 conjuncted-wg +187337 modifier-scope +modifier-scope +187340 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +187345 modifier-scope +modifier-scope +187349 modifier-clause-scope +modifier-clause-scope +187352 wrapper-scope +modifier-scope +group +187360 wrapper-clause-scope +187362 modifier-scope +187366 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +187376 wrapper-clause-scope +187379 conjuncted-wg +187381 wrapper-scope +187383 wrapper-clause-scope +187385 wrapper-scope +modifier-scope +modifier-scope +187389 wrapper-scope +187392 modifier-scope +187394 conjuncted-wg +187396 modifier-scope +187399 wrapper-clause-scope +187402 modifier-scope +modifier-scope +conjuncted-wg +187406 modifier-scope +modifier-scope +187411 modifier-scope +wrapper-clause-scope +187414 conjuncted-wg +187416 conjuncted-wg +187420 conjuncted-wg +conjuncted-wg +187423 modifier-scope +187426 modifier-scope +modifier-scope +187429 wrapper-clause-scope +187431 modifier-scope +wrapper-scope +187435 wrapper-scope +modifier-scope +modifier-scope +187439 wrapper-clause-scope +187441 wrapper-clause-scope +187443 wrapper-scope +modifier-scope +187447 modifier-scope +187450 conjuncted-wg +conjuncted-wg +187453 wrapper-clause-scope +187455 group +187457 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +187463 modifier-scope +187465 wrapper-clause-scope +187467 wrapper-clause-scope +187469 modifier-scope +wrapper-scope +modifier-scope +187474 conjuncted-wg +187476 wrapper-scope +modifier-scope +187479 modifier-scope +187484 modifier-scope +187487 conjuncted-wg +187489 conjuncted-wg +187492 wrapper-clause-scope +187494 modifier-scope +modifier-scope +modifier-scope +modifier-scope +187499 wrapper-clause-scope +187501 modifier-scope +modifier-scope +wrapper-clause-scope +187506 wrapper-clause-scope +187509 modifier-scope +modifier-scope +conjuncted-wg +187516 modifier-scope +modifier-scope +wrapper-clause-scope +187520 modifier-scope +modifier-scope +187523 modifier-scope +187527 modifier-clause-scope +wrapper-clause-scope +187530 conjuncted-wg +187534 group +modifier-clause-scope +187537 modifier-clause-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +187544 conjuncted-wg +187547 wrapper-clause-scope +group +187550 modifier-scope +modifier-scope +187553 modifier-scope +modifier-scope +modifier-scope +187557 group +187561 modifier-scope +modifier-scope +187564 conjuncted-wg +187566 modifier-scope +187568 conjuncted-wg +187570 modifier-clause-scope +187572 modifier-scope +modifier-scope +187575 wrapper-scope +modifier-scope +wrapper-clause-scope +187581 conjuncted-wg +187585 apposition-group +modifier-scope +modifier-scope +187591 modifier-scope +187595 wrapper-clause-scope +187598 conjuncted-wg +187600 conjuncted-wg +187604 group +wrapper-clause-scope +187609 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +187619 wrapper-clause-scope +187621 wrapper-clause-scope +group +wrapper-clause-scope +187625 modifier-scope +187627 modifier-scope +modifier-scope +wrapper-clause-scope +187632 modifier-scope +modifier-scope +187635 group +187637 modifier-scope +wrapper-clause-scope +187641 modifier-scope +modifier-scope +modifier-scope +modifier-scope +187646 wrapper-clause-scope +187648 modifier-scope +187652 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +187657 wrapper-scope +187659 wrapper-clause-scope +187661 modifier-scope +wrapper-clause-scope +187664 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +187670 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +187676 wrapper-scope +modifier-scope +187680 apposition-group +modifier-scope +modifier-scope +187686 modifier-scope +modifier-scope +187690 wrapper-clause-scope +187692 wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +187698 wrapper-clause-scope +group +wrapper-clause-scope +187703 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +187709 modifier-scope +modifier-scope +187712 conjuncted-wg +187714 group +187717 modifier-scope +conjuncted-wg +modifier-scope +187722 conjuncted-wg +conjuncted-wg +conjuncted-wg +187727 modifier-scope +modifier-scope +modifier-scope +modifier-scope +187732 wrapper-scope +apposition-group +187735 conjuncted-wg +wrapper-scope +apposition-group +187739 conjuncted-wg +187742 conjuncted-wg +187744 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +187749 wrapper-clause-scope +187751 group +modifier-scope +modifier-scope +wrapper-clause-scope +187757 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +187764 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +187769 wrapper-clause-scope +187771 wrapper-clause-scope +187774 conjuncted-wg +187776 modifier-scope +187778 wrapper-clause-scope +187782 modifier-clause-scope +187784 wrapper-scope +conjuncted-wg +187792 wrapper-scope +modifier-scope +conjuncted-wg +187796 wrapper-clause-scope +187799 wrapper-clause-scope +187803 conjuncted-wg +187805 wrapper-scope +187809 wrapper-clause-scope +187812 wrapper-scope +modifier-scope +187818 conjuncted-wg +modifier-scope +187822 wrapper-clause-scope +group +187825 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +187833 wrapper-scope +conjuncted-wg +187836 wrapper-scope +group +187840 wrapper-scope +conjuncted-wg +187843 wrapper-scope +187846 wrapper-scope +conjuncted-wg +187849 wrapper-scope +modifier-scope +187853 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +187858 wrapper-scope +modifier-scope +187861 wrapper-clause-scope +187863 modifier-scope +modifier-scope +187866 group +wrapper-clause-scope +187870 wrapper-scope +187872 wrapper-clause-scope +187874 conjuncted-wg +187877 wrapper-clause-scope +187879 group +wrapper-clause-scope +187883 wrapper-clause-scope +187885 conjuncted-wg +187892 modifier-scope +modifier-scope +187895 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +187900 modifier-scope +modifier-scope +187903 wrapper-clause-scope +187905 modifier-scope +wrapper-scope +modifier-scope +187909 wrapper-clause-scope +group +187912 wrapper-clause-scope +187914 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +187921 wrapper-scope +187924 wrapper-scope +modifier-scope +conjuncted-wg +187928 modifier-scope +modifier-scope +conjuncted-wg +187932 modifier-scope +wrapper-scope +187936 group +187938 modifier-scope +wrapper-clause-scope +187941 modifier-scope +modifier-scope +modifier-scope +187945 wrapper-clause-scope +187947 wrapper-scope +modifier-scope +modifier-scope +187951 wrapper-scope +modifier-clause-scope +apposition-group +187955 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +187961 wrapper-clause-scope +187965 wrapper-clause-scope +187967 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +187975 group +187978 wrapper-clause-scope +187980 wrapper-clause-scope +187983 wrapper-clause-scope +187986 apposition-group +modifier-scope +modifier-scope +group +187992 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +187999 wrapper-clause-scope +188001 wrapper-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +188010 wrapper-clause-scope +188012 wrapper-clause-scope +188015 wrapper-clause-scope +188017 modifier-scope +modifier-scope +188023 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +188030 wrapper-scope +conjuncted-wg +188034 wrapper-clause-scope +188036 wrapper-scope +modifier-scope +group +188042 modifier-scope +wrapper-scope +188046 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +188055 wrapper-scope +modifier-scope +modifier-scope +188059 wrapper-clause-scope +188064 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +188070 wrapper-scope +conjuncted-wg +188075 conjuncted-wg +wrapper-clause-scope +188078 wrapper-scope +wrapper-clause-scope +188081 conjuncted-wg +188083 wrapper-clause-scope +188086 wrapper-clause-scope +188088 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +188095 wrapper-clause-scope +188098 modifier-clause-scope +188100 modifier-scope +modifier-scope +group +conjuncted-wg +188107 conjuncted-wg +188110 wrapper-scope +modifier-scope +188113 wrapper-clause-scope +188117 modifier-scope +conjuncted-wg +188122 modifier-scope +modifier-scope +188125 wrapper-clause-scope +188128 modifier-scope +conjuncted-wg +188132 conjuncted-wg +188134 modifier-scope +188136 wrapper-clause-scope +188139 modifier-scope +188141 wrapper-clause-scope +188143 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +188149 modifier-scope +188151 wrapper-scope +188153 wrapper-clause-scope +188156 wrapper-scope +188158 conjuncted-wg +188160 modifier-scope +modifier-scope +modifier-scope +188164 wrapper-clause-scope +188167 modifier-scope +conjuncted-wg +188174 modifier-scope +modifier-scope +188177 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +188187 wrapper-clause-scope +188191 apposition-group +modifier-clause-scope +188194 modifier-scope +188196 modifier-scope +modifier-scope +188199 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +188207 wrapper-clause-scope +188211 modifier-clause-scope +wrapper-clause-scope +188214 conjuncted-wg +188216 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +188224 wrapper-scope +188226 wrapper-clause-scope +188230 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +188237 apposition-group +modifier-scope +188242 wrapper-scope +modifier-scope +conjuncted-wg +188246 conjuncted-wg +188248 wrapper-scope +conjuncted-wg +188251 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +188258 wrapper-clause-scope +188261 modifier-scope +modifier-scope +modifier-scope +188266 apposition-group +188269 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +188275 wrapper-clause-scope +188277 wrapper-scope +188279 conjuncted-wg +188282 conjuncted-wg +188284 wrapper-scope +188286 wrapper-clause-scope +188291 wrapper-clause-scope +188294 wrapper-clause-scope +188296 wrapper-scope +group +188300 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +188308 conjuncted-wg +188313 wrapper-scope +wrapper-clause-scope +188318 modifier-scope +conjuncted-wg +188321 modifier-scope +conjuncted-wg +188326 conjuncted-wg +188328 modifier-scope +188332 conjuncted-wg +188343 wrapper-scope +conjuncted-wg +188346 conjuncted-wg +188348 wrapper-scope +modifier-scope +modifier-scope +188352 wrapper-clause-scope +188355 group +188359 wrapper-scope +188361 modifier-scope +modifier-scope +188366 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +188376 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +188388 wrapper-clause-scope +188392 wrapper-scope +188394 conjuncted-wg +conjuncted-wg +wrapper-scope +188398 conjuncted-wg +conjuncted-wg +188401 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +188406 wrapper-clause-scope +188409 apposition-group +188411 conjuncted-wg +188413 apposition-group +188417 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +188422 group +188425 conjuncted-wg +wrapper-clause-scope +188430 wrapper-clause-scope +188434 modifier-scope +modifier-scope +188440 conjuncted-wg +188443 conjuncted-wg +conjuncted-wg +188446 modifier-scope +188448 wrapper-clause-scope +188452 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +188456 wrapper-clause-scope +188459 wrapper-scope +188461 group +188466 wrapper-clause-scope +188469 modifier-scope +conjuncted-wg +188472 wrapper-clause-scope +188474 wrapper-scope +188478 modifier-scope +modifier-scope +188481 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +188490 modifier-scope +modifier-scope +188493 wrapper-clause-scope +188495 group +188497 modifier-scope +wrapper-clause-scope +group +188501 wrapper-clause-scope +188505 wrapper-clause-scope +188507 wrapper-scope +modifier-scope +188510 wrapper-clause-scope +188513 wrapper-scope +wrapper-clause-scope +188516 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +188523 conjuncted-wg +188525 wrapper-scope +188527 wrapper-clause-scope +188529 modifier-scope +modifier-scope +wrapper-scope +188533 wrapper-clause-scope +188536 modifier-scope +wrapper-scope +modifier-scope +188540 conjuncted-wg +188542 group +188545 modifier-scope +wrapper-clause-scope +188549 wrapper-clause-scope +188552 wrapper-clause-scope +188556 conjuncted-wg +188559 wrapper-clause-scope +188561 wrapper-scope +188564 modifier-scope +modifier-scope +188567 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-clause-scope +188572 wrapper-scope +modifier-scope +modifier-scope +188576 wrapper-clause-scope +188579 wrapper-scope +188581 wrapper-clause-scope +188583 wrapper-scope +wrapper-clause-scope +188588 modifier-scope +188590 wrapper-scope +group +group +wrapper-clause-scope +188595 wrapper-scope +wrapper-scope +188598 wrapper-scope +modifier-scope +188603 modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +188609 wrapper-clause-scope +188612 conjuncted-wg +188614 conjuncted-wg +188616 wrapper-scope +188618 modifier-scope +modifier-scope +188621 wrapper-clause-scope +group +group +wrapper-clause-scope +188628 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +group +wrapper-clause-scope +188636 wrapper-clause-scope +188642 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +188647 wrapper-clause-scope +188650 modifier-clause-scope +wrapper-clause-scope +188653 conjuncted-wg +188655 wrapper-clause-scope +188658 wrapper-clause-scope +188660 modifier-clause-scope +wrapper-clause-scope +188663 group +group +wrapper-clause-scope +188668 conjuncted-wg +188671 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +188683 modifier-scope +conjuncted-wg +188687 wrapper-clause-scope +group +wrapper-clause-scope +188692 group +188694 wrapper-clause-scope +group +188697 wrapper-clause-scope +188700 wrapper-clause-scope +188702 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +188707 wrapper-clause-scope +188709 modifier-clause-scope +wrapper-clause-scope +188715 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +188720 wrapper-clause-scope +188725 modifier-scope +modifier-scope +conjuncted-wg +188729 conjuncted-wg +188731 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +188737 wrapper-clause-scope +188739 group +188741 wrapper-clause-scope +188744 wrapper-clause-scope +188746 wrapper-scope +188750 modifier-scope +group +188754 conjuncted-wg +188762 wrapper-clause-scope +188764 group +188767 modifier-scope +modifier-scope +conjuncted-wg +188776 wrapper-clause-scope +188780 conjuncted-wg +188782 wrapper-scope +188785 wrapper-clause-scope +188788 modifier-scope +modifier-scope +modifier-scope +188794 modifier-scope +modifier-scope +modifier-scope +188799 wrapper-scope +modifier-scope +modifier-scope +188803 conjuncted-wg +modifier-scope +conjuncted-wg +188807 modifier-scope +188809 conjuncted-wg +conjuncted-wg +conjuncted-wg +188813 wrapper-clause-scope +188815 modifier-scope +188820 conjuncted-wg +188823 wrapper-clause-scope +188825 modifier-scope +wrapper-scope +modifier-scope +188830 wrapper-scope +modifier-scope +188833 conjuncted-wg +conjuncted-wg +188837 wrapper-clause-scope +188839 modifier-scope +modifier-scope +188842 wrapper-clause-scope +188844 wrapper-clause-scope +188846 modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +188852 modifier-scope +modifier-scope +188855 wrapper-clause-scope +188858 modifier-scope +conjuncted-wg +188862 wrapper-scope +group +wrapper-clause-scope +188867 wrapper-scope +conjuncted-wg +188872 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +188891 modifier-scope +188896 modifier-scope +modifier-scope +conjuncted-wg +188900 wrapper-scope +188902 modifier-scope +188904 wrapper-clause-scope +group +wrapper-clause-scope +188908 modifier-scope +wrapper-scope +188913 modifier-scope +wrapper-clause-scope +188916 wrapper-scope +wrapper-clause-scope +group +188921 conjuncted-wg +188925 modifier-clause-scope +wrapper-clause-scope +188930 wrapper-clause-scope +188933 modifier-scope +modifier-scope +188936 conjuncted-wg +188940 wrapper-clause-scope +wrapper-clause-scope +188943 modifier-scope +188946 modifier-scope +wrapper-scope +188949 wrapper-clause-scope +188952 wrapper-scope +modifier-scope +wrapper-clause-scope +188956 wrapper-scope +modifier-scope +wrapper-scope +188960 wrapper-clause-scope +group +wrapper-clause-scope +188964 group +188968 modifier-scope +wrapper-scope +188971 wrapper-clause-scope +188973 apposition-group +modifier-scope +wrapper-scope +188977 modifier-scope +modifier-scope +modifier-scope +188981 modifier-scope +188983 wrapper-clause-scope +188985 modifier-scope +188987 wrapper-clause-scope +188989 wrapper-clause-scope +188991 modifier-scope +modifier-scope +wrapper-scope +188997 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +189005 wrapper-clause-scope +189009 wrapper-clause-scope +189011 wrapper-scope +modifier-scope +189014 modifier-scope +conjuncted-wg +modifier-scope +189019 wrapper-clause-scope +189022 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +189027 wrapper-clause-scope +189030 conjuncted-wg +189033 wrapper-clause-scope +189035 wrapper-scope +modifier-scope +modifier-scope +189041 modifier-clause-scope +modifier-scope +modifier-scope +wrapper-scope +189047 modifier-scope +conjuncted-wg +189050 modifier-scope +wrapper-scope +189054 modifier-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +189060 wrapper-scope +wrapper-clause-scope +189063 wrapper-clause-scope +189066 wrapper-clause-scope +189070 wrapper-scope +modifier-scope +modifier-scope +189074 conjuncted-wg +189077 wrapper-scope +modifier-scope +189080 modifier-scope +conjuncted-wg +modifier-scope +189084 group +189086 wrapper-clause-scope +189088 group +modifier-scope +modifier-scope +wrapper-clause-scope +189095 wrapper-clause-scope +189098 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +189104 conjuncted-wg +189106 wrapper-scope +modifier-clause-scope +group +apposition-group +189111 modifier-scope +189113 wrapper-clause-scope +189116 modifier-clause-scope +modifier-scope +189119 modifier-scope +wrapper-clause-scope +189122 modifier-scope +wrapper-clause-scope +189126 conjuncted-wg +189128 modifier-scope +conjuncted-wg +189131 wrapper-scope +189134 wrapper-clause-scope +189137 modifier-scope +189139 conjuncted-wg +189141 group +189143 wrapper-clause-scope +189145 modifier-clause-scope +apposition-group +189149 group +189153 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +189162 wrapper-clause-scope +189165 modifier-scope +modifier-scope +189168 wrapper-clause-scope +189170 modifier-scope +modifier-scope +modifier-scope +189175 modifier-clause-scope +modifier-clause-scope +189178 modifier-scope +modifier-scope +189181 wrapper-clause-scope +189183 modifier-scope +189185 wrapper-clause-scope +189188 wrapper-scope +modifier-scope +modifier-scope +189192 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +189198 modifier-scope +modifier-scope +189202 wrapper-clause-scope +189204 group +189207 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +189215 wrapper-clause-scope +189219 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +189226 wrapper-scope +modifier-scope +modifier-scope +189231 wrapper-clause-scope +189235 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +189241 modifier-scope +conjuncted-wg +189245 wrapper-clause-scope +189248 wrapper-scope +189251 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +189261 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +189268 group +189271 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +189277 modifier-scope +group +189280 wrapper-clause-scope +189282 modifier-scope +modifier-scope +modifier-scope +189286 wrapper-clause-scope +189289 wrapper-scope +modifier-scope +modifier-scope +189293 wrapper-clause-scope +189295 group +189298 modifier-scope +modifier-scope +conjuncted-wg +189302 conjuncted-wg +189305 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +189311 wrapper-clause-scope +189313 modifier-scope +189318 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +189324 modifier-scope +189326 wrapper-clause-scope +189328 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +189336 modifier-scope +modifier-scope +conjuncted-wg +189340 conjuncted-wg +189343 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +189348 wrapper-scope +modifier-scope +conjuncted-wg +189352 group +189354 modifier-scope +modifier-scope +modifier-scope +189358 conjuncted-wg +189361 wrapper-clause-scope +group +189365 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +189372 wrapper-scope +conjuncted-wg +189376 wrapper-clause-scope +189380 wrapper-clause-scope +189382 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +189388 wrapper-clause-scope +189390 group +wrapper-clause-scope +189394 modifier-scope +189397 conjuncted-wg +conjuncted-wg +189401 modifier-scope +modifier-scope +wrapper-clause-scope +189406 wrapper-clause-scope +189408 wrapper-clause-scope +189411 modifier-scope +modifier-scope +conjuncted-wg +189415 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189424 wrapper-clause-scope +189427 conjuncted-wg +189431 wrapper-clause-scope +189433 modifier-scope +modifier-scope +189437 wrapper-clause-scope +189440 modifier-scope +189444 modifier-scope +conjuncted-wg +189447 modifier-scope +conjuncted-wg +group +189451 wrapper-clause-scope +189453 wrapper-scope +modifier-scope +modifier-scope +189457 wrapper-clause-scope +189459 wrapper-clause-scope +189461 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189467 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +189473 wrapper-clause-scope +189478 wrapper-scope +conjuncted-wg +189481 modifier-scope +modifier-scope +189484 wrapper-clause-scope +189488 conjuncted-wg +189490 wrapper-clause-scope +189494 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +189499 conjuncted-wg +189502 conjuncted-wg +189505 wrapper-clause-scope +189507 modifier-scope +wrapper-scope +modifier-scope +189512 modifier-scope +189514 conjuncted-wg +189516 wrapper-clause-scope +189518 modifier-clause-scope +wrapper-clause-scope +189522 wrapper-clause-scope +189526 wrapper-scope +group +189529 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189537 wrapper-clause-scope +189539 wrapper-scope +modifier-scope +group +189543 wrapper-clause-scope +189545 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +189550 group +189558 wrapper-clause-scope +189560 wrapper-clause-scope +189562 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +189568 wrapper-clause-scope +189571 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +189579 modifier-scope +modifier-scope +189582 wrapper-clause-scope +189585 modifier-scope +modifier-scope +189588 wrapper-clause-scope +189592 modifier-scope +modifier-scope +conjuncted-wg +189599 wrapper-clause-scope +189602 wrapper-clause-scope +189605 modifier-scope +modifier-scope +189611 modifier-scope +modifier-scope +conjuncted-wg +189616 wrapper-clause-scope +group +189619 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189625 wrapper-clause-scope +189627 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +189640 wrapper-clause-scope +189642 group +189644 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189650 wrapper-clause-scope +189652 wrapper-scope +modifier-scope +modifier-scope +189658 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +189665 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +189671 wrapper-clause-scope +group +wrapper-clause-scope +189675 wrapper-scope +modifier-scope +modifier-scope +189679 modifier-scope +189681 wrapper-clause-scope +group +wrapper-clause-scope +189685 wrapper-scope +modifier-scope +189688 modifier-scope +189690 group +189692 modifier-scope +189694 modifier-scope +wrapper-clause-scope +189697 conjuncted-wg +189700 modifier-scope +conjuncted-wg +189703 modifier-scope +conjuncted-wg +189707 conjuncted-wg +189709 modifier-scope +189714 conjuncted-wg +189717 wrapper-clause-scope +189720 modifier-scope +modifier-scope +189723 conjuncted-wg +189726 wrapper-clause-scope +189728 group +189731 wrapper-clause-scope +189733 wrapper-scope +modifier-scope +conjuncted-wg +189737 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189742 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +189750 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +189757 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +189763 wrapper-scope +189765 wrapper-clause-scope +189770 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +189775 modifier-scope +modifier-scope +modifier-scope +189781 modifier-clause-scope +wrapper-clause-scope +189785 modifier-scope +modifier-scope +conjuncted-wg +189789 conjuncted-wg +189791 wrapper-clause-scope +189794 wrapper-scope +189796 wrapper-clause-scope +189799 modifier-scope +conjuncted-wg +189803 conjuncted-wg +189805 wrapper-scope +189807 wrapper-clause-scope +189809 modifier-clause-scope +modifier-scope +189812 wrapper-scope +modifier-scope +modifier-scope +189817 conjuncted-wg +189820 wrapper-scope +wrapper-clause-scope +189823 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +189828 wrapper-clause-scope +189830 modifier-scope +modifier-scope +189833 modifier-scope +modifier-scope +189836 wrapper-clause-scope +189840 modifier-scope +conjuncted-wg +189843 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +189849 wrapper-clause-scope +189852 modifier-scope +modifier-scope +conjuncted-wg +189857 wrapper-clause-scope +189860 wrapper-scope +modifier-scope +189863 modifier-scope +modifier-scope +189866 wrapper-scope +wrapper-scope +conjuncted-wg +189870 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +189875 wrapper-clause-scope +189880 group +189882 conjuncted-wg +189884 wrapper-clause-scope +189887 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +189893 modifier-scope +modifier-scope +wrapper-clause-scope +189897 wrapper-scope +modifier-scope +modifier-scope +189901 wrapper-clause-scope +189905 wrapper-clause-scope +189908 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +189915 modifier-scope +189917 wrapper-clause-scope +189920 conjuncted-wg +189923 wrapper-clause-scope +189925 wrapper-scope +modifier-scope +wrapper-scope +189929 conjuncted-wg +modifier-scope +wrapper-clause-scope +189934 wrapper-clause-scope +189937 wrapper-scope +conjuncted-wg +189940 wrapper-scope +189942 wrapper-clause-scope +189944 wrapper-clause-scope +group +group +group +189950 wrapper-clause-scope +189952 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +189959 modifier-scope +wrapper-clause-scope +189962 wrapper-clause-scope +189964 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +189971 wrapper-clause-scope +189973 group +189976 conjuncted-wg +modifier-scope +189980 wrapper-clause-scope +189985 group +189987 wrapper-clause-scope +189989 wrapper-scope +wrapper-scope +189992 wrapper-clause-scope +189994 group +wrapper-clause-scope +189998 conjuncted-wg +modifier-scope +190001 wrapper-clause-scope +190003 wrapper-scope +190005 wrapper-clause-scope +190007 wrapper-scope +modifier-scope +modifier-scope +190012 wrapper-clause-scope +190014 modifier-scope +conjuncted-wg +190018 wrapper-scope +190022 wrapper-clause-scope +190025 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +190031 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +190036 modifier-scope +modifier-scope +modifier-scope +190043 group +wrapper-clause-scope +190046 modifier-scope +modifier-scope +190049 conjuncted-wg +group +wrapper-clause-scope +190055 wrapper-clause-scope +group +wrapper-clause-scope +190060 modifier-scope +wrapper-scope +conjuncted-wg +190064 wrapper-scope +190069 wrapper-clause-scope +190071 modifier-scope +modifier-scope +190075 wrapper-clause-scope +190077 modifier-scope +group +wrapper-clause-scope +190081 modifier-scope +wrapper-scope +modifier-scope +190085 wrapper-clause-scope +190087 modifier-scope +modifier-scope +190091 conjuncted-wg +190093 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +190099 wrapper-clause-scope +190102 apposition-group +modifier-clause-scope +modifier-scope +wrapper-scope +190107 modifier-clause-scope +190110 conjuncted-wg +190115 wrapper-scope +modifier-scope +190118 conjuncted-wg +wrapper-clause-scope +190122 group +190125 conjuncted-wg +190128 wrapper-clause-scope +190131 conjuncted-wg +190133 conjuncted-wg +190135 wrapper-scope +190137 conjuncted-wg +190139 wrapper-clause-scope +190141 modifier-scope +wrapper-clause-scope +190144 wrapper-clause-scope +190148 modifier-scope +wrapper-clause-scope +190151 modifier-clause-scope +wrapper-clause-scope +190154 wrapper-clause-scope +190156 modifier-scope +190161 wrapper-clause-scope +190164 wrapper-scope +wrapper-clause-scope +190167 wrapper-scope +conjuncted-wg +190170 wrapper-scope +modifier-scope +190173 conjuncted-wg +190175 wrapper-clause-scope +190177 group +190179 wrapper-scope +modifier-scope +190182 modifier-clause-scope +apposition-group +modifier-scope +190186 conjuncted-wg +190189 group +group +190195 wrapper-clause-scope +190200 modifier-scope +190202 wrapper-clause-scope +group +190205 wrapper-scope +wrapper-clause-scope +190210 wrapper-clause-scope +190213 modifier-scope +wrapper-scope +190216 wrapper-clause-scope +190219 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +190224 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +190230 wrapper-clause-scope +190233 wrapper-clause-scope +190236 modifier-scope +group +190239 wrapper-clause-scope +190241 modifier-scope +conjuncted-wg +190244 modifier-scope +190248 modifier-scope +wrapper-clause-scope +190251 modifier-scope +modifier-scope +190254 wrapper-clause-scope +190256 group +190260 modifier-scope +modifier-scope +190263 wrapper-clause-scope +190267 wrapper-scope +modifier-scope +190270 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +190275 group +190278 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +190286 conjuncted-wg +190288 wrapper-clause-scope +190290 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +190295 wrapper-clause-scope +190297 wrapper-scope +modifier-scope +group +190304 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +190313 wrapper-clause-scope +group +190316 group +190323 conjuncted-wg +190326 wrapper-clause-scope +190328 wrapper-clause-scope +190330 modifier-scope +190332 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +190347 wrapper-clause-scope +190351 conjuncted-wg +190353 wrapper-scope +modifier-scope +modifier-scope +190357 wrapper-clause-scope +190359 wrapper-clause-scope +190361 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +190374 group +190379 wrapper-scope +190381 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +190387 modifier-scope +conjuncted-wg +190391 wrapper-clause-scope +190393 wrapper-scope +modifier-scope +modifier-scope +190397 group +190405 wrapper-clause-scope +190408 modifier-scope +wrapper-scope +190412 conjuncted-wg +wrapper-scope +conjuncted-wg +190418 wrapper-scope +modifier-scope +190421 modifier-scope +modifier-scope +modifier-scope +modifier-scope +190428 wrapper-scope +modifier-scope +modifier-scope +190433 wrapper-scope +modifier-scope +conjuncted-wg +190437 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +190442 conjuncted-wg +190444 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +190450 modifier-scope +modifier-scope +190455 wrapper-clause-scope +190458 modifier-scope +modifier-scope +conjuncted-wg +190462 wrapper-clause-scope +190466 group +190468 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +190474 modifier-scope +conjuncted-wg +190477 modifier-scope +190480 wrapper-scope +wrapper-scope +modifier-scope +190485 modifier-scope +conjuncted-wg +190488 modifier-scope +190490 wrapper-clause-scope +190496 wrapper-clause-scope +190498 group +190500 modifier-scope +190502 modifier-scope +modifier-scope +190505 wrapper-clause-scope +190507 wrapper-scope +wrapper-clause-scope +190512 conjuncted-wg +190516 modifier-scope +wrapper-scope +modifier-scope +190521 modifier-scope +conjuncted-wg +190525 wrapper-clause-scope +190528 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +190533 wrapper-scope +190536 wrapper-scope +modifier-scope +modifier-scope +190540 wrapper-clause-scope +190543 wrapper-scope +conjuncted-wg +190546 wrapper-scope +wrapper-scope +group +wrapper-clause-scope +190552 modifier-scope +modifier-scope +conjuncted-wg +190558 wrapper-scope +wrapper-clause-scope +190561 modifier-scope +modifier-scope +wrapper-clause-scope +190565 wrapper-scope +190568 wrapper-clause-scope +190570 modifier-scope +190573 modifier-scope +modifier-scope +modifier-scope +190577 wrapper-clause-scope +190579 wrapper-clause-scope +wrapper-clause-scope +190582 modifier-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +190591 conjuncted-wg +conjuncted-wg +190594 wrapper-scope +190597 wrapper-clause-scope +190599 modifier-scope +modifier-scope +wrapper-scope +190603 wrapper-clause-scope +group +190606 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +190611 modifier-scope +wrapper-scope +modifier-scope +190615 wrapper-clause-scope +190617 modifier-clause-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +190623 wrapper-scope +wrapper-clause-scope +190626 conjuncted-wg +190628 modifier-scope +modifier-scope +modifier-scope +190633 modifier-scope +wrapper-scope +modifier-scope +190639 modifier-scope +conjuncted-wg +190642 modifier-scope +190645 modifier-scope +190647 wrapper-scope +190650 modifier-scope +wrapper-clause-scope +190654 wrapper-clause-scope +190656 modifier-scope +modifier-scope +modifier-scope +group +conjuncted-wg +wrapper-clause-scope +190663 modifier-scope +modifier-scope +modifier-scope +190667 group +190669 modifier-scope +190671 modifier-clause-scope +190674 wrapper-clause-scope +190677 modifier-scope +190680 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +190685 modifier-scope +modifier-scope +190690 modifier-scope +group +modifier-scope +190695 group +190698 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +190705 modifier-clause-scope +wrapper-clause-scope +190708 conjuncted-wg +190710 wrapper-clause-scope +190713 wrapper-clause-scope +190715 modifier-scope +modifier-scope +wrapper-clause-scope +190720 wrapper-clause-scope +190723 modifier-scope +190725 wrapper-clause-scope +190727 modifier-scope +190729 group +190733 modifier-scope +wrapper-scope +conjuncted-wg +190737 wrapper-clause-scope +190739 modifier-scope +modifier-scope +modifier-scope +modifier-scope +190747 wrapper-clause-scope +190750 modifier-scope +modifier-scope +modifier-scope +190754 modifier-scope +wrapper-scope +190757 wrapper-clause-scope +190759 modifier-scope +190763 modifier-scope +190765 modifier-scope +190767 wrapper-clause-scope +190769 modifier-scope +group +190772 group +190774 wrapper-clause-scope +190776 group +modifier-scope +190779 modifier-scope +group +190787 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +190792 wrapper-clause-scope +190795 modifier-scope +wrapper-scope +190798 wrapper-clause-scope +190801 modifier-scope +190807 modifier-clause-scope +190809 conjuncted-wg +190811 conjuncted-wg +190813 wrapper-scope +modifier-scope +conjuncted-wg +group +190820 wrapper-clause-scope +group +190824 wrapper-clause-scope +190827 wrapper-clause-scope +190830 modifier-scope +group +190833 modifier-scope +wrapper-clause-scope +190836 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +190845 wrapper-scope +modifier-scope +conjuncted-wg +190849 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +190854 wrapper-clause-scope +190856 wrapper-clause-scope +190858 wrapper-clause-scope +190862 wrapper-clause-scope +190865 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +190871 wrapper-clause-scope +190873 modifier-scope +190876 modifier-scope +190878 wrapper-clause-scope +190882 wrapper-clause-scope +190884 apposition-group +190887 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +190897 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +190902 wrapper-scope +group +modifier-scope +wrapper-clause-scope +190907 modifier-scope +190909 wrapper-clause-scope +190912 modifier-scope +wrapper-scope +190916 wrapper-scope +conjuncted-wg +190919 modifier-clause-scope +wrapper-clause-scope +190922 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +190932 modifier-scope +conjuncted-wg +190935 conjuncted-wg +190937 conjuncted-wg +190939 conjuncted-wg +190942 conjuncted-wg +190944 modifier-scope +modifier-scope +modifier-scope +190948 wrapper-clause-scope +190951 modifier-scope +conjuncted-wg +190954 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +190959 wrapper-clause-scope +190962 wrapper-clause-scope +group +190965 wrapper-scope +wrapper-clause-scope +190968 wrapper-scope +190970 modifier-scope +wrapper-scope +modifier-scope +190975 wrapper-clause-scope +190981 wrapper-clause-scope +190983 wrapper-clause-scope +190985 group +modifier-scope +190988 wrapper-clause-scope +190993 group +modifier-scope +190996 wrapper-clause-scope +190998 wrapper-clause-scope +191000 wrapper-clause-scope +191003 wrapper-clause-scope +191005 modifier-scope +191008 modifier-scope +191010 wrapper-clause-scope +191013 modifier-scope +191015 wrapper-scope +191017 wrapper-clause-scope +group +191024 wrapper-clause-scope +191030 wrapper-clause-scope +191032 modifier-scope +group +191036 modifier-scope +modifier-scope +191039 wrapper-clause-scope +191042 conjuncted-wg +191045 modifier-scope +191047 wrapper-clause-scope +191049 modifier-scope +modifier-scope +191052 modifier-scope +191054 wrapper-clause-scope +191057 modifier-scope +191059 wrapper-clause-scope +191062 modifier-clause-scope +191064 conjuncted-wg +191066 conjuncted-wg +191069 wrapper-clause-scope +191071 group +191074 modifier-scope +191076 conjuncted-wg +191078 wrapper-scope +modifier-scope +wrapper-clause-scope +191082 modifier-scope +191084 wrapper-clause-scope +191087 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +191092 wrapper-clause-scope +191096 wrapper-clause-scope +group +wrapper-clause-scope +191100 wrapper-scope +modifier-scope +191104 modifier-scope +wrapper-scope +191110 wrapper-clause-scope +191113 wrapper-scope +modifier-scope +modifier-scope +191117 wrapper-clause-scope +191121 conjuncted-wg +191125 wrapper-clause-scope +191129 wrapper-clause-scope +191131 wrapper-scope +modifier-scope +191135 wrapper-clause-scope +191138 wrapper-scope +modifier-scope +191143 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +191148 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +191155 wrapper-clause-scope +191157 wrapper-scope +modifier-scope +wrapper-clause-scope +191161 modifier-scope +modifier-scope +wrapper-clause-scope +191165 modifier-scope +modifier-scope +191168 wrapper-clause-scope +191170 modifier-scope +modifier-scope +modifier-scope +191175 conjuncted-wg +wrapper-clause-scope +191179 wrapper-clause-scope +group +191184 wrapper-scope +wrapper-clause-scope +191188 wrapper-scope +conjuncted-wg +191191 wrapper-clause-scope +191193 modifier-scope +modifier-scope +modifier-scope +191198 wrapper-clause-scope +191201 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +191207 conjuncted-wg +191210 wrapper-clause-scope +191214 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +191219 wrapper-scope +191221 wrapper-scope +191224 wrapper-clause-scope +191227 modifier-scope +modifier-scope +conjuncted-wg +191231 wrapper-scope +191235 wrapper-scope +191237 wrapper-clause-scope +191240 wrapper-scope +wrapper-clause-scope +191244 modifier-scope +conjuncted-wg +191248 apposition-group +modifier-scope +modifier-scope +191252 modifier-scope +wrapper-clause-scope +191257 wrapper-clause-scope +191259 modifier-scope +191263 modifier-scope +modifier-scope +modifier-scope +191267 wrapper-clause-scope +191269 group +191273 modifier-scope +wrapper-clause-scope +191276 wrapper-scope +191279 wrapper-scope +modifier-scope +191282 wrapper-clause-scope +191284 modifier-scope +191288 modifier-scope +modifier-scope +modifier-scope +191292 wrapper-clause-scope +191294 modifier-scope +191296 modifier-scope +wrapper-scope +modifier-scope +191300 wrapper-clause-scope +191302 modifier-scope +191304 group +191308 apposition-group +modifier-scope +modifier-scope +191313 wrapper-scope +wrapper-clause-scope +191316 wrapper-clause-scope +191318 modifier-scope +191322 conjuncted-wg +191327 group +191329 wrapper-scope +modifier-scope +modifier-scope +191333 modifier-scope +191336 wrapper-clause-scope +191338 modifier-clause-scope +modifier-scope +191343 conjuncted-wg +191346 conjuncted-wg +group +191349 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +191356 wrapper-scope +191358 wrapper-clause-scope +191360 wrapper-clause-scope +191364 wrapper-scope +modifier-scope +conjuncted-wg +191368 wrapper-clause-scope +191370 modifier-scope +modifier-scope +191373 wrapper-clause-scope +191377 modifier-scope +191380 wrapper-clause-scope +191383 modifier-clause-scope +wrapper-clause-scope +191386 conjuncted-wg +191388 wrapper-scope +wrapper-clause-scope +191391 modifier-clause-scope +191394 wrapper-clause-scope +191397 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +191404 wrapper-scope +conjuncted-wg +191407 wrapper-scope +191409 wrapper-clause-scope +191413 wrapper-scope +191415 wrapper-clause-scope +group +group +191419 wrapper-clause-scope +191421 wrapper-scope +191423 conjuncted-wg +wrapper-scope +group +modifier-scope +wrapper-clause-scope +191430 modifier-scope +modifier-scope +191434 wrapper-scope +modifier-scope +modifier-scope +191440 wrapper-scope +191442 apposition-group +191444 wrapper-scope +modifier-scope +conjuncted-wg +191450 wrapper-clause-scope +group +wrapper-clause-scope +191455 wrapper-scope +191457 wrapper-clause-scope +191459 modifier-scope +modifier-scope +191462 wrapper-clause-scope +group +191466 wrapper-clause-scope +191468 wrapper-clause-scope +191471 wrapper-clause-scope +group +191474 modifier-scope +191476 modifier-scope +modifier-scope +wrapper-scope +191480 modifier-scope +191482 wrapper-clause-scope +191484 wrapper-clause-scope +191486 modifier-scope +modifier-scope +191489 wrapper-clause-scope +191492 wrapper-scope +modifier-scope +conjuncted-wg +191497 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +191503 wrapper-clause-scope +group +191507 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +191512 wrapper-clause-scope +group +191515 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +191522 modifier-scope +modifier-scope +modifier-scope +modifier-scope +191528 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +apposition-group +191537 group +wrapper-clause-scope +191540 wrapper-scope +modifier-scope +modifier-scope +191545 wrapper-scope +conjuncted-wg +191548 wrapper-scope +191550 wrapper-clause-scope +191552 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +191560 modifier-scope +modifier-scope +191563 wrapper-clause-scope +191567 group +wrapper-clause-scope +191571 modifier-scope +191573 wrapper-clause-scope +group +wrapper-clause-scope +191579 modifier-scope +wrapper-scope +191582 wrapper-clause-scope +191584 wrapper-clause-scope +191586 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +191594 wrapper-scope +modifier-scope +wrapper-clause-scope +191600 wrapper-scope +conjuncted-wg +191604 modifier-scope +modifier-scope +conjuncted-wg +191608 conjuncted-wg +191610 conjuncted-wg +191613 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +191620 wrapper-scope +wrapper-scope +wrapper-scope +191624 modifier-scope +modifier-scope +modifier-scope +modifier-scope +191629 wrapper-clause-scope +191632 wrapper-scope +modifier-scope +191635 wrapper-clause-scope +191640 wrapper-clause-scope +191642 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +191647 modifier-scope +191649 wrapper-clause-scope +191651 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +191657 wrapper-clause-scope +191661 modifier-scope +conjuncted-wg +modifier-scope +191665 conjuncted-wg +191667 modifier-scope +modifier-scope +modifier-scope +191671 wrapper-clause-scope +group +191674 wrapper-clause-scope +191676 wrapper-clause-scope +191678 modifier-scope +modifier-scope +191682 wrapper-clause-scope +group +191685 wrapper-scope +modifier-scope +modifier-scope +group +191691 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +191699 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +191707 wrapper-scope +191711 wrapper-scope +modifier-scope +conjuncted-wg +191715 wrapper-clause-scope +191717 modifier-scope +modifier-scope +191720 wrapper-clause-scope +191723 wrapper-scope +191726 conjuncted-wg +191730 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +191735 wrapper-scope +191737 wrapper-clause-scope +191739 wrapper-scope +191741 wrapper-clause-scope +191743 group +wrapper-clause-scope +191747 wrapper-scope +191750 wrapper-scope +conjuncted-wg +group +group +wrapper-clause-scope +191757 wrapper-scope +191759 modifier-scope +modifier-scope +wrapper-clause-scope +191763 wrapper-scope +191766 wrapper-clause-scope +191771 wrapper-clause-scope +191773 modifier-scope +191776 wrapper-scope +modifier-scope +191779 wrapper-clause-scope +191782 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +191789 conjuncted-wg +191791 conjuncted-wg +191793 modifier-scope +191795 wrapper-clause-scope +191797 wrapper-scope +modifier-scope +wrapper-clause-scope +191801 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +191806 wrapper-clause-scope +191808 modifier-scope +191811 wrapper-clause-scope +191814 modifier-scope +191816 wrapper-clause-scope +191820 conjuncted-wg +191822 wrapper-clause-scope +191826 wrapper-clause-scope +191829 modifier-scope +191831 wrapper-clause-scope +191833 modifier-scope +modifier-scope +modifier-scope +group +191838 group +191840 group +modifier-scope +modifier-scope +modifier-scope +191846 wrapper-clause-scope +191849 modifier-scope +wrapper-scope +191852 group +191854 modifier-scope +191856 wrapper-clause-scope +191858 modifier-scope +191860 wrapper-clause-scope +191863 wrapper-scope +modifier-scope +191866 wrapper-clause-scope +191868 modifier-scope +modifier-scope +modifier-scope +191875 conjuncted-wg +191877 modifier-scope +modifier-scope +conjuncted-wg +191881 modifier-scope +191883 wrapper-clause-scope +191888 wrapper-clause-scope +191891 wrapper-clause-scope +191893 modifier-clause-scope +wrapper-clause-scope +191899 apposition-group +191901 wrapper-clause-scope +191903 wrapper-scope +modifier-scope +191906 modifier-clause-scope +wrapper-clause-scope +191909 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +191914 wrapper-clause-scope +191916 wrapper-scope +191918 wrapper-clause-scope +group +191923 modifier-scope +conjuncted-wg +modifier-scope +191927 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +191934 modifier-scope +wrapper-clause-scope +191937 wrapper-clause-scope +191939 wrapper-scope +modifier-scope +modifier-scope +191943 wrapper-clause-scope +group +191947 modifier-clause-scope +191950 wrapper-clause-scope +191952 modifier-scope +wrapper-clause-scope +191956 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +191962 wrapper-clause-scope +191968 wrapper-clause-scope +191972 conjuncted-wg +conjuncted-wg +group +191977 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +191984 conjuncted-wg +191987 wrapper-clause-scope +191990 modifier-scope +modifier-scope +wrapper-scope +191995 modifier-scope +191997 conjuncted-wg +191999 wrapper-clause-scope +192003 wrapper-clause-scope +192005 wrapper-scope +wrapper-clause-scope +192009 modifier-scope +conjuncted-wg +192012 modifier-scope +modifier-scope +modifier-scope +192016 wrapper-clause-scope +192020 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +192026 wrapper-scope +modifier-scope +modifier-scope +192030 wrapper-clause-scope +192033 group +modifier-scope +modifier-scope +wrapper-clause-scope +192043 wrapper-clause-scope +192046 modifier-scope +192048 conjuncted-wg +192052 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +192057 modifier-scope +modifier-scope +192060 wrapper-clause-scope +192062 modifier-scope +192064 wrapper-clause-scope +192066 modifier-scope +192069 wrapper-clause-scope +192073 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +192079 modifier-scope +modifier-scope +conjuncted-wg +192085 modifier-scope +modifier-scope +192088 wrapper-clause-scope +group +192091 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +192098 modifier-scope +192100 wrapper-clause-scope +192102 modifier-scope +192105 modifier-scope +modifier-scope +modifier-scope +modifier-scope +192110 conjuncted-wg +conjuncted-wg +192113 wrapper-clause-scope +192117 modifier-scope +modifier-scope +conjuncted-wg +192121 group +modifier-scope +modifier-scope +wrapper-scope +192126 conjuncted-wg +conjuncted-wg +192129 wrapper-clause-scope +group +192133 wrapper-clause-scope +192136 conjuncted-wg +192138 modifier-scope +192140 modifier-scope +modifier-scope +192143 wrapper-clause-scope +192145 wrapper-clause-scope +192147 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +192153 modifier-scope +192155 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +192161 wrapper-clause-scope +group +192165 conjuncted-wg +192167 wrapper-clause-scope +192170 wrapper-clause-scope +192173 modifier-scope +modifier-scope +192178 wrapper-clause-scope +192182 wrapper-clause-scope +192184 wrapper-scope +192187 modifier-scope +modifier-scope +192190 wrapper-clause-scope +192192 modifier-scope +wrapper-scope +modifier-scope +192196 modifier-scope +modifier-scope +group +192200 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +192205 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +192211 wrapper-clause-scope +192214 conjuncted-wg +192216 modifier-scope +192218 wrapper-clause-scope +group +192221 modifier-scope +modifier-scope +192224 modifier-scope +192226 wrapper-scope +apposition-group +group +modifier-scope +wrapper-clause-scope +192234 wrapper-scope +conjuncted-wg +192238 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +192251 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +192257 modifier-scope +192259 wrapper-clause-scope +192262 modifier-clause-scope +modifier-clause-scope +192265 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +192270 wrapper-clause-scope +192274 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +192280 wrapper-clause-scope +192282 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +192288 wrapper-clause-scope +192291 modifier-scope +wrapper-scope +wrapper-clause-scope +192295 wrapper-scope +modifier-scope +conjuncted-wg +192299 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +192307 wrapper-clause-scope +group +192310 wrapper-scope +modifier-scope +wrapper-clause-scope +192315 modifier-scope +conjuncted-wg +192320 apposition-group +192323 wrapper-scope +wrapper-scope +apposition-group +192328 wrapper-clause-scope +192335 conjuncted-wg +192337 modifier-scope +wrapper-clause-scope +192342 wrapper-clause-scope +192344 group +192348 wrapper-clause-scope +192350 wrapper-scope +modifier-scope +modifier-scope +192356 conjuncted-wg +192358 modifier-scope +192361 wrapper-scope +192363 wrapper-clause-scope +group +wrapper-clause-scope +192368 conjuncted-wg +192371 wrapper-clause-scope +192375 conjuncted-wg +192377 modifier-scope +192380 group +192383 wrapper-scope +conjuncted-wg +192386 wrapper-scope +192389 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +192395 conjuncted-wg +192398 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +192404 wrapper-clause-scope +192407 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +192415 wrapper-scope +modifier-scope +192418 conjuncted-wg +192420 wrapper-scope +192422 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +192428 wrapper-scope +192430 wrapper-clause-scope +192432 wrapper-scope +modifier-scope +modifier-scope +192437 wrapper-clause-scope +192439 apposition-group +192441 conjuncted-wg +192445 conjuncted-wg +192447 modifier-clause-scope +wrapper-clause-scope +192451 wrapper-clause-scope +192454 modifier-scope +wrapper-scope +192457 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +192462 wrapper-scope +conjuncted-wg +192465 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +192471 wrapper-clause-scope +192473 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +192479 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +192485 wrapper-clause-scope +group +wrapper-clause-scope +192490 wrapper-scope +192492 wrapper-clause-scope +192494 modifier-scope +modifier-scope +192497 group +192500 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +192507 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +192512 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +192518 modifier-scope +wrapper-clause-scope +192521 modifier-clause-scope +wrapper-clause-scope +192527 wrapper-clause-scope +192529 wrapper-scope +conjuncted-wg +wrapper-clause-scope +192533 wrapper-scope +modifier-scope +modifier-scope +192537 wrapper-clause-scope +192540 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +192545 modifier-scope +modifier-scope +conjuncted-wg +192549 modifier-scope +conjuncted-wg +192552 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +192557 wrapper-scope +wrapper-scope +wrapper-scope +192561 modifier-scope +192563 wrapper-clause-scope +group +group +192568 wrapper-scope +192570 conjuncted-wg +conjuncted-wg +conjuncted-wg +192574 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +192581 conjuncted-wg +192583 wrapper-scope +192585 conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +192589 modifier-scope +wrapper-clause-scope +192592 modifier-scope +modifier-scope +modifier-scope +192596 wrapper-clause-scope +192599 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +192606 conjuncted-wg +192608 wrapper-clause-scope +192614 conjuncted-wg +192616 modifier-scope +modifier-scope +wrapper-clause-scope +192620 modifier-scope +modifier-scope +192623 wrapper-clause-scope +192628 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +192633 group +wrapper-clause-scope +192638 wrapper-scope +wrapper-clause-scope +192641 modifier-scope +192644 modifier-scope +wrapper-clause-scope +192648 wrapper-clause-scope +192650 modifier-scope +modifier-scope +modifier-scope +192656 wrapper-clause-scope +192658 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +192668 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +192673 modifier-scope +modifier-scope +modifier-scope +192677 wrapper-clause-scope +192681 modifier-scope +modifier-scope +wrapper-scope +192685 conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +192690 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +192696 wrapper-clause-scope +192698 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +192702 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +192707 wrapper-clause-scope +192709 wrapper-scope +modifier-scope +192712 wrapper-clause-scope +192716 group +modifier-scope +wrapper-clause-scope +192721 conjuncted-wg +192723 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +192728 wrapper-clause-scope +192731 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +192737 modifier-scope +192739 wrapper-scope +group +modifier-scope +wrapper-clause-scope +192745 wrapper-clause-scope +192747 modifier-scope +modifier-scope +wrapper-scope +192751 wrapper-scope +modifier-scope +192754 wrapper-clause-scope +192756 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +192763 wrapper-clause-scope +group +192767 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +192772 wrapper-clause-scope +192774 modifier-scope +192776 wrapper-clause-scope +192778 wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +192784 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +192789 wrapper-clause-scope +192792 modifier-scope +192794 conjuncted-wg +wrapper-clause-scope +192798 wrapper-clause-scope +192801 conjuncted-wg +192805 wrapper-clause-scope +192808 conjuncted-wg +192810 wrapper-clause-scope +192812 wrapper-scope +192814 wrapper-clause-scope +192816 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +192822 modifier-scope +192824 wrapper-clause-scope +192827 conjuncted-wg +192829 group +192832 modifier-scope +wrapper-clause-scope +192836 wrapper-clause-scope +192838 group +192842 wrapper-clause-scope +192846 wrapper-scope +modifier-scope +192849 modifier-clause-scope +192851 modifier-scope +192854 wrapper-scope +modifier-clause-scope +apposition-group +192858 wrapper-scope +192860 wrapper-clause-scope +192862 modifier-scope +modifier-scope +modifier-scope +192866 modifier-scope +group +192869 modifier-scope +192871 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +192877 modifier-clause-scope +modifier-scope +192883 wrapper-clause-scope +192885 group +192888 wrapper-clause-scope +192890 conjuncted-wg +192892 modifier-scope +192894 wrapper-clause-scope +192896 wrapper-clause-scope +192898 modifier-scope +192900 conjuncted-wg +192902 modifier-scope +wrapper-scope +192905 wrapper-clause-scope +192907 wrapper-scope +192910 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +192917 wrapper-clause-scope +192919 wrapper-clause-scope +192921 modifier-scope +wrapper-scope +192924 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +192929 wrapper-clause-scope +192935 conjuncted-wg +192937 wrapper-scope +192939 wrapper-clause-scope +192942 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +192951 modifier-scope +modifier-scope +modifier-scope +192955 wrapper-clause-scope +192960 conjuncted-wg +192963 group +192965 group +modifier-scope +modifier-scope +wrapper-clause-scope +192970 wrapper-scope +192972 wrapper-scope +modifier-scope +modifier-scope +192976 wrapper-clause-scope +192978 modifier-scope +wrapper-scope +wrapper-clause-scope +192983 group +192986 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +192997 wrapper-scope +conjuncted-wg +193000 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +193004 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +193009 conjuncted-wg +193011 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +193017 conjuncted-wg +193019 apposition-group +modifier-scope +modifier-scope +193023 wrapper-scope +193025 wrapper-clause-scope +193028 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +193032 wrapper-scope +wrapper-clause-scope +193037 wrapper-clause-scope +193039 wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +193044 modifier-scope +193047 wrapper-clause-scope +193051 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +193056 wrapper-clause-scope +193059 wrapper-clause-scope +193062 conjuncted-wg +193065 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +193072 wrapper-clause-scope +193074 wrapper-scope +wrapper-clause-scope +193078 wrapper-clause-scope +193082 wrapper-clause-scope +193084 conjuncted-wg +wrapper-clause-scope +193087 wrapper-clause-scope +193089 wrapper-clause-scope +193092 wrapper-clause-scope +193094 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +193100 wrapper-clause-scope +193102 wrapper-clause-scope +193104 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +193110 group +193112 wrapper-clause-scope +193114 modifier-scope +modifier-scope +wrapper-clause-scope +193119 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +193128 wrapper-scope +193130 modifier-scope +modifier-scope +modifier-scope +modifier-scope +193135 group +group +193140 modifier-scope +wrapper-clause-scope +group +193144 wrapper-clause-scope +193146 modifier-scope +193148 wrapper-clause-scope +193150 wrapper-scope +wrapper-clause-scope +193153 modifier-scope +modifier-scope +193156 wrapper-clause-scope +193159 modifier-scope +modifier-scope +193162 wrapper-clause-scope +193166 wrapper-scope +193169 modifier-scope +wrapper-scope +conjuncted-wg +wrapper-scope +193174 wrapper-clause-scope +193176 group +193179 group +193181 wrapper-clause-scope +193185 wrapper-clause-scope +193187 group +wrapper-clause-scope +193190 wrapper-scope +193192 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +193197 wrapper-clause-scope +193201 wrapper-clause-scope +193203 wrapper-clause-scope +193206 wrapper-clause-scope +193209 modifier-scope +conjuncted-wg +193213 wrapper-clause-scope +193215 modifier-scope +modifier-scope +conjuncted-wg +193220 wrapper-clause-scope +193222 wrapper-clause-scope +193225 group +modifier-clause-scope +wrapper-clause-scope +193229 apposition-group +wrapper-clause-scope +193232 wrapper-scope +wrapper-scope +193235 wrapper-clause-scope +193237 modifier-scope +modifier-scope +wrapper-scope +193241 wrapper-clause-scope +193246 wrapper-clause-scope +193250 wrapper-clause-scope +193253 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +193260 wrapper-clause-scope +193262 modifier-scope +modifier-scope +193265 wrapper-clause-scope +193268 wrapper-scope +modifier-scope +193272 wrapper-scope +193274 wrapper-clause-scope +193277 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +193283 modifier-scope +193287 group +wrapper-clause-scope +193291 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +group +193297 modifier-scope +modifier-scope +193300 modifier-scope +193302 wrapper-clause-scope +193304 wrapper-scope +193307 wrapper-clause-scope +193310 wrapper-scope +193312 wrapper-clause-scope +193315 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +193320 wrapper-scope +modifier-scope +conjuncted-wg +193326 wrapper-scope +modifier-scope +193329 wrapper-scope +modifier-scope +193332 wrapper-scope +modifier-scope +conjuncted-wg +193336 group +193340 wrapper-clause-scope +193342 wrapper-scope +193348 conjuncted-wg +193351 group +wrapper-clause-scope +193354 modifier-scope +modifier-scope +conjuncted-wg +193358 modifier-scope +193361 wrapper-clause-scope +193365 modifier-scope +modifier-scope +modifier-scope +193369 wrapper-clause-scope +193371 modifier-scope +wrapper-scope +193374 wrapper-clause-scope +193379 wrapper-scope +193381 wrapper-clause-scope +193384 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +193392 modifier-scope +modifier-scope +modifier-scope +modifier-scope +193397 wrapper-clause-scope +193400 modifier-scope +193402 wrapper-scope +193404 wrapper-clause-scope +193407 modifier-scope +193409 wrapper-clause-scope +193411 wrapper-scope +modifier-clause-scope +modifier-clause-scope +193415 wrapper-scope +193417 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +193424 wrapper-scope +193426 wrapper-scope +193428 conjuncted-wg +193430 group +193432 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +193437 modifier-scope +wrapper-scope +193440 wrapper-clause-scope +193443 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +193450 wrapper-clause-scope +193454 conjuncted-wg +193456 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +193461 wrapper-clause-scope +193463 modifier-scope +193465 wrapper-clause-scope +193469 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +193474 modifier-scope +modifier-scope +193477 wrapper-clause-scope +193479 modifier-scope +193483 wrapper-scope +modifier-scope +conjuncted-wg +193488 modifier-scope +wrapper-scope +193491 wrapper-clause-scope +193497 wrapper-clause-scope +193499 wrapper-scope +193502 modifier-scope +wrapper-scope +193505 wrapper-clause-scope +193507 modifier-scope +193511 wrapper-clause-scope +group +193514 modifier-scope +modifier-scope +193517 modifier-scope +193519 group +193521 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +193526 modifier-scope +193528 wrapper-clause-scope +193530 modifier-scope +193535 wrapper-clause-scope +193539 wrapper-clause-scope +193543 modifier-scope +modifier-scope +conjuncted-wg +group +193548 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +193554 wrapper-clause-scope +193556 wrapper-clause-scope +193559 wrapper-clause-scope +193563 wrapper-clause-scope +193566 group +modifier-scope +wrapper-clause-scope +193571 conjuncted-wg +193577 wrapper-clause-scope +193580 wrapper-clause-scope +193582 modifier-scope +193584 wrapper-scope +193586 wrapper-clause-scope +group +wrapper-clause-scope +193593 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +193600 wrapper-scope +modifier-scope +modifier-scope +193604 group +wrapper-clause-scope +193607 modifier-scope +193610 wrapper-clause-scope +193612 group +wrapper-clause-scope +193616 modifier-scope +193618 wrapper-clause-scope +group +wrapper-clause-scope +193623 modifier-scope +193625 wrapper-clause-scope +193627 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +193639 wrapper-clause-scope +193641 wrapper-clause-scope +193643 modifier-scope +modifier-scope +modifier-scope +193647 wrapper-clause-scope +193649 wrapper-scope +193651 wrapper-clause-scope +193654 wrapper-clause-scope +193657 modifier-scope +wrapper-clause-scope +193660 wrapper-scope +modifier-scope +modifier-scope +193664 wrapper-clause-scope +193667 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +193673 wrapper-clause-scope +193680 modifier-scope +modifier-scope +conjuncted-wg +193685 conjuncted-wg +193688 group +193690 wrapper-clause-scope +193692 modifier-scope +193695 modifier-scope +modifier-scope +modifier-scope +193699 wrapper-clause-scope +193704 wrapper-clause-scope +193706 modifier-scope +wrapper-scope +193709 modifier-scope +conjuncted-wg +modifier-scope +193713 wrapper-scope +modifier-scope +modifier-scope +193717 wrapper-clause-scope +193720 wrapper-clause-scope +193722 modifier-scope +193724 wrapper-scope +modifier-scope +modifier-scope +193728 group +wrapper-scope +modifier-scope +wrapper-scope +193733 wrapper-clause-scope +193736 wrapper-clause-scope +193738 modifier-scope +193740 wrapper-clause-scope +193743 wrapper-clause-scope +193745 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +193751 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +193757 wrapper-clause-scope +group +193760 modifier-scope +193762 modifier-scope +wrapper-clause-scope +193766 wrapper-scope +wrapper-scope +modifier-scope +193770 wrapper-scope +wrapper-clause-scope +193773 wrapper-scope +conjuncted-wg +193778 modifier-scope +wrapper-scope +193781 wrapper-clause-scope +193783 wrapper-scope +modifier-scope +193786 wrapper-clause-scope +193789 wrapper-clause-scope +193792 modifier-scope +conjuncted-wg +modifier-scope +193797 wrapper-clause-scope +193799 modifier-scope +193802 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +193808 modifier-scope +modifier-scope +193811 wrapper-clause-scope +group +193815 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +193826 wrapper-scope +wrapper-scope +193829 wrapper-clause-scope +193833 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +193841 modifier-scope +modifier-scope +wrapper-clause-scope +193845 modifier-scope +conjuncted-wg +193850 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +193856 wrapper-scope +conjuncted-wg +group +193860 wrapper-clause-scope +193862 wrapper-scope +193864 wrapper-clause-scope +193866 modifier-scope +modifier-scope +wrapper-scope +193870 wrapper-clause-scope +193874 wrapper-clause-scope +193879 conjuncted-wg +193881 modifier-scope +193883 wrapper-scope +wrapper-scope +193886 modifier-clause-scope +modifier-scope +193889 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +193895 wrapper-clause-scope +193897 modifier-scope +193900 modifier-scope +193902 wrapper-clause-scope +193905 group +193909 wrapper-clause-scope +193911 wrapper-scope +group +wrapper-clause-scope +group +193916 modifier-scope +193918 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +193925 wrapper-clause-scope +193928 modifier-scope +193931 conjuncted-wg +193933 modifier-scope +modifier-scope +193936 wrapper-clause-scope +193939 modifier-scope +modifier-scope +193942 wrapper-clause-scope +193945 apposition-group +wrapper-clause-scope +193948 wrapper-scope +193950 conjuncted-wg +wrapper-scope +193953 conjuncted-wg +193955 modifier-scope +modifier-scope +modifier-scope +193959 wrapper-clause-scope +193961 wrapper-clause-scope +193964 modifier-clause-scope +group +modifier-scope +193968 wrapper-scope +modifier-scope +193971 wrapper-scope +modifier-scope +193974 wrapper-clause-scope +193976 modifier-clause-scope +modifier-clause-scope +193979 modifier-scope +conjuncted-wg +apposition-group +193984 conjuncted-wg +193986 wrapper-clause-scope +193989 wrapper-scope +193992 modifier-scope +wrapper-scope +193995 wrapper-clause-scope +group +193999 wrapper-scope +conjuncted-wg +194002 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +194007 apposition-group +194010 wrapper-scope +194012 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +194017 conjuncted-wg +apposition-group +194024 modifier-scope +194026 wrapper-scope +conjuncted-wg +group +194030 modifier-scope +194033 wrapper-clause-scope +194035 wrapper-clause-scope +194037 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +194042 wrapper-clause-scope +194044 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +194050 wrapper-clause-scope +group +wrapper-clause-scope +194054 wrapper-scope +group +modifier-scope +wrapper-clause-scope +194061 conjuncted-wg +apposition-group +modifier-scope +194065 conjuncted-wg +194067 wrapper-scope +conjuncted-wg +194070 wrapper-scope +194072 wrapper-clause-scope +194074 modifier-scope +194078 wrapper-clause-scope +194082 wrapper-clause-scope +194085 modifier-scope +modifier-scope +194088 wrapper-clause-scope +194090 modifier-scope +194093 wrapper-clause-scope +194095 modifier-scope +modifier-scope +194098 group +194100 group +194102 wrapper-clause-scope +194104 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +194110 wrapper-clause-scope +194112 modifier-scope +modifier-scope +194117 conjuncted-wg +194119 group +wrapper-clause-scope +194122 modifier-scope +modifier-scope +modifier-scope +194127 wrapper-clause-scope +194129 modifier-scope +wrapper-scope +194132 modifier-scope +modifier-scope +modifier-scope +194136 wrapper-clause-scope +194138 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +194142 group +wrapper-clause-scope +194145 modifier-scope +194148 conjuncted-wg +194150 wrapper-clause-scope +194153 modifier-scope +194157 modifier-scope +wrapper-clause-scope +194160 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +194165 conjuncted-wg +group +194168 wrapper-clause-scope +194170 modifier-clause-scope +194172 conjuncted-wg +194174 modifier-scope +194176 wrapper-clause-scope +194180 wrapper-clause-scope +194182 wrapper-scope +modifier-scope +modifier-scope +194186 wrapper-clause-scope +194188 group +wrapper-clause-scope +194192 wrapper-scope +wrapper-scope +modifier-scope +194196 wrapper-clause-scope +194199 modifier-scope +modifier-scope +conjuncted-wg +194203 group +194205 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +194211 modifier-scope +conjuncted-wg +194214 modifier-scope +modifier-scope +modifier-scope +194218 wrapper-clause-scope +194221 modifier-scope +modifier-scope +194225 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +194230 wrapper-clause-scope +194234 wrapper-clause-scope +194236 modifier-scope +194238 wrapper-clause-scope +194240 modifier-scope +194243 modifier-scope +modifier-scope +194246 wrapper-clause-scope +194248 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +194252 wrapper-scope +modifier-scope +modifier-scope +194256 wrapper-clause-scope +194259 modifier-scope +194261 wrapper-clause-scope +194263 wrapper-scope +194265 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +194272 wrapper-scope +modifier-scope +194276 wrapper-clause-scope +194279 apposition-group +modifier-clause-scope +apposition-group +modifier-clause-scope +modifier-clause-scope +194286 group +modifier-scope +194289 conjuncted-wg +194291 wrapper-scope +modifier-scope +194294 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +194302 modifier-scope +modifier-scope +modifier-scope +194307 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +194315 conjuncted-wg +194317 wrapper-scope +apposition-group +modifier-scope +194321 wrapper-scope +194323 wrapper-clause-scope +194326 modifier-scope +conjuncted-wg +194330 wrapper-clause-scope +194334 modifier-clause-scope +apposition-group +194337 wrapper-scope +wrapper-scope +modifier-scope +194341 modifier-scope +conjuncted-wg +wrapper-clause-scope +194345 modifier-scope +modifier-scope +conjuncted-wg +194351 conjuncted-wg +194353 wrapper-clause-scope +wrapper-clause-scope +194356 modifier-scope +wrapper-scope +modifier-scope +194360 wrapper-clause-scope +194362 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +194369 apposition-group +194372 wrapper-clause-scope +194376 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +194382 modifier-scope +modifier-scope +group +modifier-scope +194387 wrapper-clause-scope +194390 wrapper-scope +wrapper-clause-scope +194393 wrapper-scope +conjuncted-wg +194396 modifier-scope +wrapper-scope +modifier-clause-scope +194401 wrapper-clause-scope +group +194405 conjuncted-wg +194407 modifier-scope +wrapper-scope +modifier-scope +194411 wrapper-scope +194413 wrapper-clause-scope +194415 wrapper-scope +modifier-scope +194418 group +194426 wrapper-scope +modifier-scope +194429 wrapper-clause-scope +194433 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +194441 conjuncted-wg +194443 modifier-scope +modifier-scope +194446 wrapper-clause-scope +194449 modifier-scope +modifier-scope +conjuncted-wg +194454 wrapper-scope +modifier-scope +modifier-scope +194458 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +194463 wrapper-clause-scope +194466 group +modifier-scope +conjuncted-wg +conjuncted-wg +group +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +194478 wrapper-scope +modifier-scope +194481 wrapper-clause-scope +194484 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +194491 wrapper-clause-scope +194494 modifier-scope +194496 wrapper-scope +modifier-scope +conjuncted-wg +194502 modifier-scope +194504 wrapper-clause-scope +194507 wrapper-scope +wrapper-clause-scope +194511 wrapper-clause-scope +194514 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +apposition-group +modifier-clause-scope +194524 modifier-scope +wrapper-scope +194527 conjuncted-wg +194529 wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +194536 wrapper-clause-scope +194539 wrapper-scope +wrapper-clause-scope +194543 conjuncted-wg +194545 conjuncted-wg +194548 modifier-scope +194550 conjuncted-wg +194552 modifier-scope +modifier-scope +wrapper-clause-scope +194557 wrapper-clause-scope +194559 wrapper-scope +194561 apposition-group +modifier-scope +modifier-scope +194565 wrapper-scope +194568 wrapper-clause-scope +194571 wrapper-clause-scope +194574 modifier-clause-scope +194576 wrapper-scope +194579 conjuncted-wg +194581 wrapper-clause-scope +194583 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +194588 wrapper-clause-scope +194592 wrapper-clause-scope +194595 modifier-clause-scope +wrapper-scope +apposition-group +group +modifier-scope +194601 group +modifier-scope +modifier-scope +wrapper-scope +194606 conjuncted-wg +wrapper-scope +194609 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +194617 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +194626 wrapper-clause-scope +194628 wrapper-clause-scope +194630 wrapper-clause-scope +194633 modifier-scope +194635 wrapper-clause-scope +wrapper-clause-scope +194638 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +194646 wrapper-clause-scope +194648 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +194656 wrapper-scope +modifier-scope +conjuncted-wg +194660 modifier-scope +modifier-scope +194664 modifier-scope +modifier-scope +194669 wrapper-clause-scope +194672 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +194679 group +194681 wrapper-clause-scope +194683 modifier-scope +modifier-scope +conjuncted-wg +194688 wrapper-clause-scope +194690 wrapper-scope +194695 conjuncted-wg +modifier-clause-scope +modifier-scope +modifier-scope +wrapper-clause-scope +194701 wrapper-scope +modifier-clause-scope +194704 modifier-scope +194708 modifier-scope +conjuncted-wg +194711 wrapper-scope +modifier-scope +modifier-scope +194715 wrapper-clause-scope +194719 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +194730 wrapper-clause-scope +194733 wrapper-scope +modifier-clause-scope +apposition-group +194737 conjuncted-wg +194741 wrapper-clause-scope +194744 group +194746 wrapper-scope +wrapper-clause-scope +194750 wrapper-scope +conjuncted-wg +194753 modifier-scope +194755 wrapper-clause-scope +194757 wrapper-clause-scope +194759 wrapper-scope +194761 wrapper-clause-scope +group +194764 wrapper-scope +wrapper-clause-scope +194767 wrapper-scope +194771 modifier-scope +conjuncted-wg +194776 wrapper-clause-scope +194779 modifier-scope +modifier-scope +conjuncted-wg +194784 wrapper-clause-scope +194786 wrapper-scope +194788 wrapper-clause-scope +194790 wrapper-scope +group +wrapper-clause-scope +194794 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +group +wrapper-clause-scope +194801 wrapper-scope +modifier-scope +wrapper-clause-scope +194805 modifier-scope +194807 wrapper-clause-scope +194811 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +194818 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +194823 wrapper-clause-scope +194826 modifier-scope +conjuncted-wg +194830 wrapper-clause-scope +194833 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +194839 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +194844 wrapper-clause-scope +194848 wrapper-scope +modifier-scope +conjuncted-wg +194854 wrapper-clause-scope +194858 conjuncted-wg +194862 wrapper-clause-scope +194866 wrapper-scope +conjuncted-wg +194869 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +194876 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +194886 conjuncted-wg +194888 wrapper-clause-scope +194891 conjuncted-wg +wrapper-clause-scope +194896 wrapper-clause-scope +194900 modifier-scope +conjuncted-wg +modifier-scope +194904 wrapper-clause-scope +group +194908 wrapper-scope +modifier-scope +conjuncted-wg +194914 modifier-scope +194916 wrapper-clause-scope +194918 modifier-scope +modifier-scope +194921 wrapper-clause-scope +194924 wrapper-scope +194926 wrapper-clause-scope +194928 wrapper-scope +194930 modifier-clause-scope +apposition-group +modifier-scope +194934 wrapper-scope +194936 wrapper-scope +wrapper-clause-scope +194940 modifier-clause-scope +wrapper-clause-scope +194943 wrapper-scope +194945 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +194950 conjuncted-wg +wrapper-scope +194954 modifier-scope +modifier-scope +wrapper-clause-scope +194958 modifier-scope +194960 wrapper-clause-scope +194962 wrapper-clause-scope +194967 modifier-scope +conjuncted-wg +194970 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +194975 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +194987 wrapper-scope +modifier-scope +194990 wrapper-clause-scope +194992 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +194998 wrapper-clause-scope +195000 wrapper-scope +modifier-scope +wrapper-scope +195004 wrapper-scope +195006 wrapper-clause-scope +195009 wrapper-scope +wrapper-scope +conjuncted-wg +195014 modifier-scope +modifier-scope +195017 wrapper-clause-scope +195020 wrapper-scope +wrapper-clause-scope +195024 wrapper-scope +conjuncted-wg +195027 wrapper-scope +modifier-scope +195030 wrapper-clause-scope +195034 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +195039 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +195047 wrapper-scope +modifier-scope +conjuncted-wg +195051 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +195056 modifier-scope +195059 wrapper-scope +wrapper-scope +modifier-scope +195065 wrapper-scope +conjuncted-wg +195068 wrapper-scope +apposition-group +195074 wrapper-scope +conjuncted-wg +195077 modifier-scope +modifier-scope +modifier-scope +modifier-scope +195082 wrapper-clause-scope +195085 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +195090 modifier-scope +195092 group +195094 modifier-clause-scope +195096 wrapper-scope +195099 group +195101 wrapper-scope +wrapper-clause-scope +195104 wrapper-scope +modifier-scope +wrapper-clause-scope +195108 wrapper-scope +195110 group +195112 modifier-scope +wrapper-clause-scope +195115 wrapper-scope +modifier-scope +195119 apposition-group +modifier-scope +modifier-scope +modifier-scope +195124 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +195131 wrapper-scope +modifier-scope +conjuncted-wg +195135 modifier-scope +wrapper-scope +conjuncted-wg +195139 modifier-scope +195143 wrapper-scope +modifier-scope +conjuncted-wg +195147 modifier-scope +195149 wrapper-clause-scope +195153 modifier-scope +apposition-group +group +wrapper-clause-scope +195158 wrapper-scope +modifier-scope +modifier-scope +195162 group +195164 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +195173 wrapper-clause-scope +195177 modifier-scope +conjuncted-wg +195180 wrapper-scope +conjuncted-wg +195183 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +195193 conjuncted-wg +195197 wrapper-scope +conjuncted-wg +195205 wrapper-clause-scope +195207 wrapper-scope +wrapper-scope +wrapper-clause-scope +195212 wrapper-clause-scope +group +195215 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +195223 modifier-scope +wrapper-scope +195227 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +group +195237 modifier-clause-scope +modifier-scope +wrapper-clause-scope +195241 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +195246 wrapper-clause-scope +195248 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +195254 wrapper-scope +modifier-scope +wrapper-scope +195258 conjuncted-wg +wrapper-clause-scope +195263 wrapper-clause-scope +195266 conjuncted-wg +195268 conjuncted-wg +195270 wrapper-clause-scope +195272 modifier-scope +195274 wrapper-clause-scope +195276 group +wrapper-clause-scope +195281 wrapper-clause-scope +195286 modifier-scope +195288 wrapper-clause-scope +195292 wrapper-clause-scope +195294 group +group +195297 wrapper-clause-scope +195299 wrapper-clause-scope +195302 wrapper-scope +195306 modifier-clause-scope +195308 wrapper-scope +modifier-scope +195311 modifier-scope +modifier-scope +wrapper-clause-scope +195315 group +modifier-scope +195318 wrapper-clause-scope +195321 wrapper-scope +modifier-scope +195324 wrapper-clause-scope +195327 conjuncted-wg +195329 wrapper-clause-scope +195331 wrapper-clause-scope +195334 modifier-scope +conjuncted-wg +conjuncted-wg +modifier-scope +195340 modifier-scope +195342 group +195344 wrapper-scope +195346 modifier-scope +group +195349 apposition-group +wrapper-clause-scope +195352 wrapper-scope +195356 modifier-scope +modifier-scope +modifier-scope +modifier-scope +195362 wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +195367 wrapper-scope +modifier-scope +195372 modifier-scope +195374 modifier-scope +wrapper-scope +conjuncted-wg +195378 group +group +group +195383 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +195389 modifier-scope +modifier-scope +modifier-scope +195395 wrapper-scope +wrapper-scope +apposition-group +195400 wrapper-scope +195404 conjuncted-wg +group +wrapper-clause-scope +195408 modifier-scope +195410 wrapper-scope +195412 wrapper-scope +195414 wrapper-clause-scope +195417 wrapper-clause-scope +195421 modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +195426 wrapper-scope +195430 conjuncted-wg +195433 wrapper-clause-scope +195436 wrapper-scope +group +wrapper-clause-scope +195440 wrapper-scope +195442 modifier-scope +195444 conjuncted-wg +wrapper-scope +195447 wrapper-clause-scope +195449 wrapper-scope +modifier-scope +195454 conjuncted-wg +195456 wrapper-clause-scope +195458 modifier-scope +modifier-scope +modifier-scope +195464 modifier-scope +195466 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +195476 modifier-scope +group +195480 modifier-scope +modifier-scope +modifier-scope +195484 wrapper-clause-scope +195487 modifier-scope +modifier-scope +195490 conjuncted-wg +195492 modifier-scope +195494 wrapper-clause-scope +195496 modifier-scope +195499 conjuncted-wg +195504 wrapper-clause-scope +195508 apposition-group +195516 conjuncted-wg +195519 wrapper-clause-scope +195523 conjuncted-wg +195526 conjuncted-wg +195528 wrapper-scope +modifier-scope +modifier-scope +195533 wrapper-scope +195536 group +modifier-scope +modifier-scope +group +modifier-clause-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +195547 wrapper-scope +conjuncted-wg +195553 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +195560 modifier-clause-scope +apposition-group +195563 wrapper-scope +195566 wrapper-scope +modifier-scope +195571 modifier-scope +195573 group +modifier-scope +modifier-scope +195578 apposition-group +195583 modifier-scope +195585 wrapper-scope +modifier-scope +conjuncted-wg +195590 conjuncted-wg +195592 modifier-scope +195595 wrapper-clause-scope +195597 modifier-scope +group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +195604 conjuncted-wg +195608 modifier-scope +conjuncted-wg +195615 wrapper-scope +modifier-scope +conjuncted-wg +195619 modifier-scope +group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +195627 wrapper-clause-scope +195631 wrapper-scope +modifier-scope +195635 modifier-scope +195638 conjuncted-wg +195644 modifier-scope +wrapper-scope +conjuncted-wg +195648 wrapper-scope +195650 apposition-group +195652 wrapper-scope +195659 conjuncted-wg +195662 wrapper-scope +wrapper-clause-scope +195666 wrapper-scope +modifier-scope +195673 modifier-scope +modifier-scope +modifier-scope +195677 modifier-scope +modifier-scope +195682 conjuncted-wg +195684 group +wrapper-clause-scope +195687 wrapper-clause-scope +195689 wrapper-scope +modifier-scope +195694 modifier-scope +195696 wrapper-clause-scope +195698 wrapper-clause-scope +wrapper-clause-scope +195704 modifier-scope +conjuncted-wg +195707 modifier-scope +modifier-scope +modifier-scope +195711 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +195717 wrapper-clause-scope +195720 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +195728 modifier-scope +modifier-scope +modifier-scope +195732 wrapper-clause-scope +195734 modifier-scope +195736 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +195743 wrapper-clause-scope +group +195747 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +195753 wrapper-clause-scope +195755 modifier-scope +group +195759 conjuncted-wg +195762 modifier-scope +modifier-scope +195766 modifier-scope +modifier-scope +modifier-scope +195770 apposition-group +wrapper-clause-scope +195774 wrapper-clause-scope +195776 wrapper-scope +modifier-clause-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +195786 wrapper-scope +modifier-scope +group +195791 modifier-scope +195793 modifier-scope +195795 wrapper-clause-scope +195797 wrapper-scope +195799 wrapper-clause-scope +195803 conjuncted-wg +195805 modifier-scope +195807 wrapper-clause-scope +195810 wrapper-clause-scope +group +wrapper-clause-scope +195815 modifier-scope +group +modifier-scope +195819 conjuncted-wg +195823 conjuncted-wg +195825 group +modifier-scope +wrapper-clause-scope +195829 modifier-scope +195832 modifier-scope +modifier-scope +conjuncted-wg +195836 group +195839 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +195844 wrapper-clause-scope +195846 modifier-scope +195848 modifier-scope +modifier-scope +wrapper-scope +195855 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +195864 modifier-scope +modifier-scope +conjuncted-wg +195868 wrapper-scope +modifier-scope +modifier-scope +195874 wrapper-scope +wrapper-scope +195877 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +195887 modifier-scope +modifier-scope +195890 wrapper-clause-scope +195893 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +195898 wrapper-scope +modifier-scope +195901 wrapper-clause-scope +195904 wrapper-scope +modifier-scope +195908 wrapper-clause-scope +195911 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +195917 group +195920 wrapper-scope +wrapper-scope +modifier-scope +195925 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +195932 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +195937 modifier-scope +conjuncted-wg +195940 wrapper-clause-scope +195942 modifier-scope +group +195946 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +195954 modifier-scope +modifier-scope +195957 wrapper-scope +195959 modifier-scope +modifier-scope +modifier-scope +modifier-scope +195964 wrapper-clause-scope +195967 modifier-scope +conjuncted-wg +195971 modifier-scope +wrapper-clause-scope +195977 conjuncted-wg +195981 modifier-scope +modifier-scope +conjuncted-wg +195985 wrapper-scope +modifier-scope +195988 wrapper-clause-scope +195990 modifier-scope +195993 modifier-scope +195995 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +196000 wrapper-scope +modifier-scope +196003 wrapper-clause-scope +196005 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +196011 wrapper-clause-scope +group +wrapper-clause-scope +196015 wrapper-scope +196019 modifier-scope +modifier-scope +196022 conjuncted-wg +196025 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +196030 modifier-scope +196032 wrapper-clause-scope +group +wrapper-clause-scope +196036 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +196043 wrapper-scope +modifier-scope +modifier-scope +196047 modifier-clause-scope +modifier-clause-scope +apposition-group +196052 wrapper-clause-scope +196055 modifier-scope +wrapper-scope +wrapper-clause-scope +196059 conjuncted-wg +wrapper-clause-scope +group +196065 wrapper-scope +modifier-scope +wrapper-clause-scope +196070 wrapper-scope +modifier-scope +196073 wrapper-clause-scope +group +196076 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +196086 wrapper-scope +conjuncted-wg +196092 wrapper-clause-scope +196094 wrapper-scope +wrapper-clause-scope +196098 apposition-group +modifier-scope +modifier-scope +196102 wrapper-clause-scope +196104 modifier-scope +wrapper-scope +196109 conjuncted-wg +196111 wrapper-clause-scope +wrapper-clause-scope +196114 group +wrapper-clause-scope +196119 modifier-scope +modifier-scope +modifier-scope +196124 wrapper-scope +modifier-scope +group +196130 wrapper-clause-scope +196134 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +196143 wrapper-clause-scope +wrapper-clause-scope +196146 group +wrapper-clause-scope +196149 wrapper-scope +196151 conjuncted-wg +196154 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +196161 wrapper-clause-scope +196163 wrapper-scope +modifier-scope +conjuncted-wg +196167 wrapper-clause-scope +196169 wrapper-scope +modifier-scope +196172 group +196174 wrapper-clause-scope +196181 modifier-scope +196183 conjuncted-wg +196186 modifier-scope +modifier-scope +conjuncted-wg +196192 conjuncted-wg +196196 modifier-clause-scope +wrapper-clause-scope +196199 wrapper-scope +modifier-scope +196204 conjuncted-wg +196211 conjuncted-wg +196215 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +196221 wrapper-clause-scope +wrapper-clause-scope +196224 wrapper-clause-scope +196229 conjuncted-wg +196232 conjuncted-wg +196234 modifier-scope +modifier-scope +196237 group +wrapper-clause-scope +196241 modifier-scope +conjuncted-wg +196245 wrapper-clause-scope +196247 modifier-scope +196249 wrapper-clause-scope +196251 wrapper-scope +modifier-scope +wrapper-clause-scope +196255 group +wrapper-clause-scope +196258 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +196264 wrapper-clause-scope +group +wrapper-clause-scope +196268 modifier-scope +wrapper-scope +modifier-scope +group +196274 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +196279 modifier-clause-scope +wrapper-clause-scope +196282 wrapper-scope +modifier-scope +196285 wrapper-clause-scope +group +196288 modifier-scope +modifier-scope +wrapper-clause-scope +group +196293 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +196299 modifier-clause-scope +wrapper-clause-scope +196302 wrapper-scope +conjuncted-wg +196305 modifier-scope +196307 wrapper-clause-scope +group +196310 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +196316 modifier-scope +wrapper-clause-scope +196319 modifier-scope +wrapper-scope +196323 wrapper-clause-scope +196325 wrapper-scope +196328 wrapper-clause-scope +196330 wrapper-clause-scope +196332 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +196340 wrapper-clause-scope +196342 modifier-scope +wrapper-clause-scope +196346 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +group +196353 modifier-scope +modifier-scope +conjuncted-wg +196357 modifier-scope +wrapper-clause-scope +196360 modifier-scope +modifier-scope +196363 wrapper-clause-scope +group +196367 modifier-clause-scope +wrapper-clause-scope +196370 modifier-scope +conjuncted-wg +196373 wrapper-scope +modifier-scope +wrapper-clause-scope +196377 modifier-scope +modifier-scope +196380 wrapper-clause-scope +group +196383 wrapper-clause-scope +196385 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +196390 modifier-scope +modifier-scope +wrapper-clause-scope +196394 wrapper-scope +wrapper-scope +196399 wrapper-scope +196401 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +196411 wrapper-scope +conjuncted-wg +196415 wrapper-clause-scope +196418 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +196425 conjuncted-wg +196428 conjuncted-wg +196431 wrapper-clause-scope +196433 wrapper-scope +wrapper-scope +modifier-scope +196437 wrapper-clause-scope +196439 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +196445 wrapper-clause-scope +196448 wrapper-scope +modifier-scope +conjuncted-wg +196454 group +196456 wrapper-scope +wrapper-scope +modifier-scope +196461 conjuncted-wg +196463 wrapper-scope +196467 conjuncted-wg +196469 group +196472 wrapper-clause-scope +196474 wrapper-scope +wrapper-scope +modifier-scope +196479 modifier-scope +wrapper-clause-scope +196484 modifier-scope +conjuncted-wg +wrapper-clause-scope +196488 wrapper-scope +wrapper-scope +196492 wrapper-clause-scope +196494 modifier-scope +196496 wrapper-clause-scope +196498 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +196505 conjuncted-wg +196507 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +196512 wrapper-clause-scope +196514 modifier-scope +modifier-scope +modifier-scope +modifier-scope +196522 conjuncted-wg +196526 wrapper-clause-scope +196528 wrapper-scope +196532 wrapper-clause-scope +196534 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +196540 wrapper-scope +modifier-scope +196544 wrapper-clause-scope +196546 wrapper-scope +modifier-scope +wrapper-scope +196554 conjuncted-wg +conjuncted-wg +196557 modifier-scope +modifier-scope +196561 wrapper-clause-scope +196563 modifier-scope +modifier-scope +wrapper-clause-scope +196567 modifier-scope +196569 wrapper-clause-scope +196573 modifier-scope +modifier-scope +modifier-scope +modifier-scope +196578 wrapper-scope +modifier-scope +196583 modifier-scope +modifier-scope +conjuncted-wg +196587 wrapper-scope +modifier-scope +modifier-scope +196592 wrapper-clause-scope +196594 wrapper-scope +modifier-scope +modifier-scope +196598 wrapper-clause-scope +196601 wrapper-clause-scope +196603 modifier-scope +conjuncted-wg +196606 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +196611 wrapper-clause-scope +group +wrapper-clause-scope +196616 modifier-scope +196618 modifier-scope +wrapper-clause-scope +196622 modifier-scope +196624 conjuncted-wg +conjuncted-wg +196627 wrapper-clause-scope +196630 modifier-scope +conjuncted-wg +196633 modifier-scope +modifier-scope +196637 modifier-scope +conjuncted-wg +196640 wrapper-scope +modifier-scope +196643 wrapper-clause-scope +196646 wrapper-scope +modifier-scope +196649 wrapper-clause-scope +196651 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +modifier-scope +196657 wrapper-scope +modifier-clause-scope +apposition-group +196661 group +modifier-scope +modifier-scope +196665 wrapper-clause-scope +196667 modifier-scope +modifier-scope +196670 wrapper-clause-scope +196672 modifier-scope +196674 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +196680 wrapper-scope +196683 modifier-scope +wrapper-scope +modifier-scope +196689 modifier-scope +196693 wrapper-clause-scope +196695 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +196702 wrapper-clause-scope +group +196705 group +modifier-scope +modifier-scope +196709 modifier-clause-scope +196711 wrapper-scope +group +modifier-clause-scope +196716 wrapper-clause-scope +196721 conjuncted-wg +196723 group +wrapper-clause-scope +196727 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +196732 wrapper-clause-scope +196737 wrapper-clause-scope +196739 conjuncted-wg +wrapper-clause-scope +196742 modifier-clause-scope +196750 conjuncted-wg +196752 modifier-scope +wrapper-clause-scope +196755 group +modifier-scope +wrapper-clause-scope +196760 wrapper-clause-scope +196762 apposition-group +modifier-scope +modifier-scope +modifier-scope +196768 modifier-scope +conjuncted-wg +196772 wrapper-scope +conjuncted-wg +196776 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +196784 conjuncted-wg +196788 modifier-clause-scope +wrapper-clause-scope +196791 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +196797 wrapper-clause-scope +196799 wrapper-scope +modifier-clause-scope +apposition-group +196803 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +196808 modifier-clause-scope +apposition-group +196811 wrapper-scope +modifier-clause-scope +modifier-clause-scope +196815 wrapper-scope +modifier-scope +196819 wrapper-scope +modifier-scope +196823 modifier-scope +modifier-scope +wrapper-clause-scope +196828 conjuncted-wg +196833 group +196837 modifier-scope +modifier-scope +conjuncted-wg +196844 modifier-scope +conjuncted-wg +196850 modifier-scope +group +group +196854 wrapper-clause-scope +196856 wrapper-clause-scope +196859 modifier-scope +conjuncted-wg +196863 modifier-scope +196867 modifier-scope +196871 wrapper-clause-scope +196875 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +196882 wrapper-clause-scope +196884 wrapper-scope +modifier-clause-scope +apposition-group +196891 modifier-scope +196894 wrapper-clause-scope +196896 wrapper-clause-scope +196899 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +196912 wrapper-clause-scope +196914 modifier-scope +wrapper-scope +modifier-scope +196918 wrapper-clause-scope +group +196922 conjuncted-wg +196924 wrapper-clause-scope +196926 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +196931 conjuncted-wg +wrapper-clause-scope +196934 modifier-scope +wrapper-clause-scope +196940 modifier-scope +conjuncted-wg +196944 wrapper-clause-scope +196946 wrapper-scope +196948 conjuncted-wg +196951 modifier-scope +group +196954 wrapper-clause-scope +196956 group +wrapper-clause-scope +196959 group +wrapper-clause-scope +196965 modifier-scope +196967 group +wrapper-clause-scope +196971 wrapper-clause-scope +196974 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +196980 wrapper-clause-scope +196982 wrapper-scope +196984 wrapper-clause-scope +196988 conjuncted-wg +196990 wrapper-scope +196992 wrapper-clause-scope +196996 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +197001 wrapper-scope +modifier-scope +conjuncted-wg +197005 modifier-scope +group +group +197010 apposition-group +197012 modifier-clause-scope +197014 wrapper-clause-scope +197016 modifier-scope +197020 wrapper-scope +modifier-scope +conjuncted-wg +197024 wrapper-scope +197027 wrapper-scope +modifier-scope +modifier-scope +197034 wrapper-clause-scope +197040 wrapper-clause-scope +197042 modifier-scope +wrapper-scope +wrapper-clause-scope +197049 modifier-scope +197051 modifier-scope +wrapper-clause-scope +197055 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +197059 conjuncted-wg +197061 modifier-scope +modifier-scope +197064 wrapper-clause-scope +197066 wrapper-clause-scope +197069 conjuncted-wg +197071 modifier-scope +197076 modifier-scope +modifier-scope +conjuncted-wg +197080 modifier-scope +wrapper-clause-scope +197083 wrapper-scope +197087 wrapper-clause-scope +197089 conjuncted-wg +197091 wrapper-scope +modifier-scope +wrapper-clause-scope +197096 wrapper-clause-scope +197098 conjuncted-wg +wrapper-clause-scope +197102 wrapper-clause-scope +197104 wrapper-scope +modifier-scope +wrapper-clause-scope +197109 wrapper-clause-scope +197111 conjuncted-wg +197113 wrapper-clause-scope +197122 conjuncted-wg +197124 wrapper-scope +modifier-scope +modifier-scope +197128 wrapper-clause-scope +197130 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +197142 wrapper-clause-scope +197144 modifier-clause-scope +197147 wrapper-clause-scope +group +wrapper-clause-scope +197151 wrapper-scope +modifier-scope +197155 wrapper-scope +197157 wrapper-clause-scope +197159 modifier-scope +197161 wrapper-clause-scope +197164 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +197170 modifier-scope +wrapper-clause-scope +197173 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +197179 conjuncted-wg +197181 wrapper-clause-scope +197183 modifier-scope +modifier-scope +modifier-scope +197187 wrapper-clause-scope +197189 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +197195 wrapper-clause-scope +197197 modifier-scope +wrapper-clause-scope +197200 wrapper-scope +modifier-scope +modifier-scope +197204 wrapper-clause-scope +group +197207 wrapper-clause-scope +197209 wrapper-scope +modifier-scope +modifier-scope +197213 modifier-clause-scope +197215 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +197220 modifier-scope +wrapper-scope +modifier-scope +197224 wrapper-clause-scope +197226 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +197232 modifier-scope +197234 wrapper-clause-scope +197236 modifier-clause-scope +apposition-group +197239 modifier-scope +modifier-scope +wrapper-scope +197246 wrapper-clause-scope +197248 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +197257 wrapper-clause-scope +197260 conjuncted-wg +197262 modifier-scope +modifier-scope +wrapper-clause-scope +197268 wrapper-clause-scope +197270 modifier-scope +wrapper-scope +group +wrapper-clause-scope +197276 conjuncted-wg +197278 modifier-scope +197281 wrapper-scope +modifier-scope +197285 wrapper-clause-scope +197287 modifier-scope +modifier-scope +197291 modifier-scope +group +197295 modifier-scope +modifier-scope +197300 modifier-scope +modifier-clause-scope +apposition-group +197304 modifier-scope +conjuncted-wg +197308 wrapper-clause-scope +group +197312 modifier-scope +197314 wrapper-clause-scope +197316 modifier-scope +modifier-scope +197319 wrapper-clause-scope +197321 modifier-scope +wrapper-scope +197324 wrapper-scope +197326 wrapper-clause-scope +197328 wrapper-clause-scope +197330 modifier-scope +modifier-scope +197333 wrapper-clause-scope +197336 modifier-scope +wrapper-clause-scope +197339 modifier-clause-scope +modifier-clause-scope +apposition-group +197344 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +197351 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +197356 wrapper-clause-scope +197358 modifier-scope +modifier-scope +modifier-scope +197362 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +197370 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +197375 wrapper-scope +197377 wrapper-clause-scope +197379 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-clause-scope +group +wrapper-clause-scope +197388 modifier-scope +197390 group +group +197393 wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +197398 group +197400 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +197407 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +197412 modifier-scope +wrapper-clause-scope +group +197416 modifier-scope +197418 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +197424 wrapper-clause-scope +197426 modifier-scope +197428 modifier-scope +197430 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +197436 modifier-scope +197440 conjuncted-wg +197442 wrapper-clause-scope +197444 modifier-scope +197449 wrapper-clause-scope +197454 wrapper-clause-scope +197456 wrapper-clause-scope +197458 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +197463 wrapper-scope +197465 wrapper-scope +197468 modifier-scope +group +197473 modifier-scope +modifier-scope +conjuncted-wg +197478 wrapper-clause-scope +197481 modifier-scope +conjuncted-wg +197485 modifier-scope +modifier-scope +conjuncted-wg +197490 wrapper-clause-scope +197492 wrapper-scope +modifier-scope +modifier-scope +197496 wrapper-clause-scope +197498 modifier-scope +wrapper-clause-scope +197503 conjuncted-wg +197506 modifier-scope +197508 wrapper-clause-scope +197512 wrapper-clause-scope +197516 modifier-scope +modifier-scope +conjuncted-wg +197523 group +modifier-scope +wrapper-clause-scope +197529 conjuncted-wg +197532 wrapper-clause-scope +197534 wrapper-clause-scope +197537 wrapper-clause-scope +group +197540 modifier-scope +197542 wrapper-scope +modifier-scope +197547 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +197555 wrapper-clause-scope +197557 modifier-scope +197561 modifier-scope +conjuncted-wg +197564 modifier-scope +wrapper-clause-scope +197567 wrapper-clause-scope +197570 wrapper-clause-scope +197572 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +197577 wrapper-scope +197579 wrapper-clause-scope +197581 group +197583 modifier-scope +modifier-scope +wrapper-scope +197588 wrapper-clause-scope +group +197591 wrapper-scope +197593 modifier-scope +wrapper-clause-scope +group +197597 modifier-scope +197599 modifier-scope +modifier-scope +modifier-scope +197603 modifier-scope +197605 wrapper-clause-scope +197608 modifier-scope +conjuncted-wg +197611 wrapper-clause-scope +wrapper-clause-scope +197614 group +197616 modifier-scope +197618 wrapper-scope +wrapper-clause-scope +197622 modifier-scope +197624 wrapper-clause-scope +197626 wrapper-clause-scope +197628 modifier-scope +modifier-scope +197631 wrapper-clause-scope +197635 modifier-scope +modifier-scope +conjuncted-wg +197639 modifier-clause-scope +197641 conjuncted-wg +197643 modifier-scope +modifier-scope +wrapper-clause-scope +197648 wrapper-clause-scope +group +wrapper-clause-scope +197653 modifier-scope +modifier-scope +conjuncted-wg +197658 modifier-scope +modifier-scope +197662 wrapper-clause-scope +197665 modifier-scope +197667 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +197672 modifier-scope +wrapper-clause-scope +197675 modifier-scope +197678 wrapper-clause-scope +197680 modifier-scope +group +modifier-scope +wrapper-clause-scope +197686 wrapper-clause-scope +wrapper-clause-scope +197689 wrapper-clause-scope +197692 wrapper-clause-scope +197695 modifier-scope +modifier-scope +conjuncted-wg +197699 wrapper-clause-scope +197701 modifier-scope +conjuncted-wg +197705 wrapper-scope +conjuncted-wg +197708 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +197713 wrapper-clause-scope +wrapper-clause-scope +197716 wrapper-clause-scope +group +197720 conjuncted-wg +197722 wrapper-clause-scope +197725 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +197733 wrapper-clause-scope +197736 wrapper-clause-scope +197738 wrapper-clause-scope +197740 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +197745 wrapper-scope +197747 wrapper-clause-scope +197750 wrapper-clause-scope +197752 modifier-scope +197754 group +197756 wrapper-clause-scope +197758 apposition-group +197761 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +197770 group +197772 wrapper-clause-scope +197774 modifier-scope +wrapper-scope +modifier-scope +197778 wrapper-clause-scope +197780 modifier-scope +wrapper-scope +modifier-scope +197786 wrapper-scope +197789 wrapper-clause-scope +197791 conjuncted-wg +197793 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +197799 modifier-scope +modifier-scope +modifier-scope +197803 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +197808 group +wrapper-clause-scope +197811 wrapper-scope +197813 modifier-scope +modifier-scope +197818 wrapper-clause-scope +197820 wrapper-scope +conjuncted-wg +197823 wrapper-clause-scope +197825 modifier-clause-scope +apposition-group +197828 wrapper-scope +197832 wrapper-scope +conjuncted-wg +197835 modifier-scope +197837 wrapper-clause-scope +197840 wrapper-scope +modifier-scope +conjuncted-wg +197844 wrapper-clause-scope +197849 group +modifier-scope +wrapper-clause-scope +197854 conjuncted-wg +197856 conjuncted-wg +197859 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +197864 wrapper-clause-scope +197866 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +197873 group +modifier-clause-scope +apposition-group +197878 modifier-scope +197880 apposition-group +modifier-scope +modifier-scope +197884 wrapper-scope +197886 modifier-scope +197888 wrapper-clause-scope +197891 modifier-clause-scope +modifier-clause-scope +197894 wrapper-scope +197898 conjuncted-wg +197900 modifier-scope +conjuncted-wg +197903 modifier-scope +conjuncted-wg +197907 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +197915 modifier-scope +wrapper-clause-scope +197919 wrapper-scope +modifier-scope +197922 wrapper-clause-scope +197924 wrapper-clause-scope +197926 wrapper-scope +197928 wrapper-clause-scope +197931 wrapper-scope +wrapper-clause-scope +197937 wrapper-scope +conjuncted-wg +197940 wrapper-clause-scope +197942 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +197949 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +197957 group +wrapper-clause-scope +197960 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +197970 wrapper-scope +conjuncted-wg +197973 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +197981 wrapper-clause-scope +197983 wrapper-scope +modifier-scope +197987 wrapper-clause-scope +197989 apposition-group +197991 wrapper-scope +197993 wrapper-clause-scope +group +group +wrapper-clause-scope +197998 wrapper-clause-scope +198000 wrapper-clause-scope +198002 wrapper-scope +198004 wrapper-clause-scope +group +wrapper-clause-scope +198008 modifier-scope +modifier-scope +198011 modifier-scope +modifier-scope +198015 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +198024 wrapper-clause-scope +group +198027 modifier-scope +wrapper-clause-scope +198030 modifier-clause-scope +apposition-group +198033 wrapper-scope +wrapper-clause-scope +198037 wrapper-clause-scope +198040 wrapper-scope +modifier-scope +conjuncted-wg +198044 wrapper-scope +modifier-scope +modifier-scope +198048 wrapper-clause-scope +198050 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +198056 wrapper-clause-scope +198058 modifier-scope +198061 modifier-scope +conjuncted-wg +198064 wrapper-clause-scope +198066 modifier-scope +wrapper-scope +wrapper-scope +group +198071 wrapper-clause-scope +198074 wrapper-clause-scope +198077 wrapper-clause-scope +198083 modifier-scope +group +198086 modifier-scope +modifier-scope +wrapper-clause-scope +198090 modifier-scope +198093 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +198106 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +198112 wrapper-scope +198115 modifier-scope +198118 modifier-scope +198120 wrapper-clause-scope +198122 modifier-scope +wrapper-scope +modifier-scope +198126 wrapper-clause-scope +group +198129 modifier-scope +198131 modifier-scope +modifier-scope +198134 wrapper-clause-scope +group +198138 modifier-scope +modifier-scope +conjuncted-wg +198143 wrapper-clause-scope +198146 modifier-scope +wrapper-scope +modifier-scope +198151 wrapper-clause-scope +group +wrapper-clause-scope +198156 modifier-scope +modifier-scope +group +198160 modifier-clause-scope +modifier-clause-scope +198163 wrapper-clause-scope +198166 wrapper-clause-scope +198169 conjuncted-wg +198171 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +198178 wrapper-clause-scope +198181 wrapper-clause-scope +198183 modifier-scope +198185 apposition-group +198187 wrapper-clause-scope +198189 group +modifier-scope +wrapper-clause-scope +198193 wrapper-scope +modifier-scope +198196 wrapper-clause-scope +198199 wrapper-clause-scope +198203 conjuncted-wg +198205 wrapper-clause-scope +198207 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +198212 wrapper-clause-scope +198214 wrapper-clause-scope +198217 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +198224 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +198229 wrapper-clause-scope +198233 conjuncted-wg +198235 wrapper-scope +modifier-scope +conjuncted-wg +198239 modifier-scope +198241 modifier-scope +198243 wrapper-clause-scope +198247 modifier-scope +modifier-scope +198250 group +conjuncted-wg +198254 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +198259 wrapper-scope +modifier-scope +conjuncted-wg +198264 wrapper-clause-scope +198266 group +198270 wrapper-clause-scope +198274 wrapper-scope +modifier-scope +conjuncted-wg +198278 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +198283 wrapper-scope +198285 group +198287 modifier-scope +group +modifier-scope +wrapper-clause-scope +198292 wrapper-scope +modifier-scope +198295 wrapper-clause-scope +198297 modifier-scope +wrapper-clause-scope +198300 conjuncted-wg +wrapper-clause-scope +group +198304 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +198310 modifier-scope +modifier-scope +198313 wrapper-clause-scope +198315 wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +group +198321 modifier-scope +198323 modifier-scope +198325 wrapper-clause-scope +198327 wrapper-clause-scope +198329 modifier-scope +wrapper-clause-scope +198333 conjuncted-wg +198335 modifier-scope +modifier-scope +198338 wrapper-scope +modifier-scope +conjuncted-wg +198342 wrapper-scope +198344 modifier-scope +198346 wrapper-clause-scope +198349 wrapper-scope +modifier-scope +198356 modifier-scope +conjuncted-wg +198359 wrapper-clause-scope +wrapper-clause-scope +198362 group +198364 group +wrapper-clause-scope +198367 wrapper-clause-scope +198370 wrapper-scope +modifier-scope +conjuncted-wg +198375 group +198377 group +group +modifier-scope +wrapper-clause-scope +198382 apposition-group +group +modifier-scope +wrapper-clause-scope +198387 wrapper-scope +modifier-scope +198390 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +198395 group +modifier-scope +modifier-scope +198399 wrapper-clause-scope +198401 wrapper-scope +group +198404 wrapper-clause-scope +198406 modifier-scope +modifier-scope +modifier-scope +198412 conjuncted-wg +198416 modifier-scope +modifier-scope +modifier-scope +198420 wrapper-scope +198423 wrapper-clause-scope +198425 group +wrapper-clause-scope +198428 modifier-scope +wrapper-clause-scope +198432 conjuncted-wg +198436 group +198438 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +198445 wrapper-scope +198447 modifier-scope +wrapper-scope +modifier-scope +198452 wrapper-clause-scope +198454 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +198458 group +198460 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +198465 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +198474 wrapper-clause-scope +198476 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +198482 wrapper-scope +modifier-scope +conjuncted-wg +198486 modifier-scope +198488 wrapper-clause-scope +198490 wrapper-scope +198493 modifier-scope +modifier-scope +198497 modifier-scope +198499 modifier-scope +modifier-scope +modifier-scope +198505 wrapper-clause-scope +198507 wrapper-scope +modifier-scope +conjuncted-wg +198511 wrapper-clause-scope +198513 wrapper-scope +modifier-scope +198516 wrapper-clause-scope +198518 wrapper-clause-scope +198520 conjuncted-wg +198522 conjuncted-wg +198528 modifier-clause-scope +198530 modifier-scope +wrapper-scope +conjuncted-wg +198534 wrapper-clause-scope +198536 wrapper-scope +modifier-scope +group +198540 wrapper-scope +modifier-scope +group +wrapper-clause-scope +198545 modifier-scope +modifier-scope +modifier-scope +198549 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +198554 wrapper-clause-scope +198556 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +198560 wrapper-clause-scope +198563 modifier-clause-scope +198566 wrapper-scope +conjuncted-wg +198569 wrapper-scope +modifier-scope +modifier-scope +198573 wrapper-clause-scope +198575 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +198582 modifier-clause-scope +wrapper-clause-scope +198586 modifier-scope +conjuncted-wg +198589 wrapper-scope +modifier-scope +conjuncted-wg +198593 wrapper-scope +modifier-scope +modifier-scope +198597 wrapper-clause-scope +198600 modifier-scope +wrapper-scope +wrapper-clause-scope +198605 group +modifier-scope +wrapper-clause-scope +198609 wrapper-scope +modifier-scope +conjuncted-wg +198613 group +wrapper-clause-scope +198616 apposition-group +group +modifier-scope +modifier-scope +198622 modifier-scope +conjuncted-wg +modifier-scope +198626 wrapper-clause-scope +198628 wrapper-scope +modifier-scope +198633 conjuncted-wg +198636 wrapper-scope +198638 group +198641 wrapper-scope +wrapper-clause-scope +198644 group +modifier-scope +wrapper-clause-scope +198649 wrapper-scope +modifier-scope +modifier-scope +198654 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +198659 modifier-scope +198662 modifier-clause-scope +wrapper-clause-scope +198666 wrapper-scope +modifier-scope +conjuncted-wg +198670 wrapper-scope +198672 wrapper-clause-scope +wrapper-clause-scope +198675 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +198680 wrapper-clause-scope +198682 wrapper-scope +modifier-scope +modifier-scope +198686 wrapper-clause-scope +wrapper-clause-scope +198690 wrapper-clause-scope +198692 modifier-scope +198695 modifier-scope +modifier-scope +modifier-scope +198701 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +198710 group +modifier-scope +wrapper-clause-scope +198714 wrapper-scope +modifier-scope +wrapper-clause-scope +198719 wrapper-scope +conjuncted-wg +198724 group +group +modifier-scope +wrapper-clause-scope +198729 wrapper-clause-scope +198731 wrapper-scope +modifier-scope +198735 wrapper-clause-scope +198737 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +198743 wrapper-clause-scope +198745 modifier-clause-scope +modifier-clause-scope +apposition-group +198749 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +198756 wrapper-clause-scope +198758 wrapper-scope +modifier-scope +198763 modifier-scope +198766 wrapper-clause-scope +198768 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +198772 group +wrapper-clause-scope +wrapper-clause-scope +198777 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +198784 modifier-scope +modifier-scope +198787 wrapper-scope +198789 group +198791 wrapper-clause-scope +198794 modifier-scope +modifier-scope +conjuncted-wg +198798 modifier-scope +modifier-scope +modifier-scope +198802 modifier-scope +modifier-scope +198805 wrapper-clause-scope +198808 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +198813 modifier-scope +modifier-scope +modifier-scope +198817 group +198819 wrapper-clause-scope +198822 modifier-scope +modifier-scope +conjuncted-wg +198826 modifier-scope +modifier-scope +wrapper-scope +198830 wrapper-scope +198833 wrapper-clause-scope +group +198836 modifier-clause-scope +modifier-clause-scope +198840 wrapper-scope +modifier-scope +198843 modifier-clause-scope +wrapper-clause-scope +198846 wrapper-scope +198849 group +modifier-scope +wrapper-clause-scope +198853 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +198858 modifier-scope +conjuncted-wg +198863 wrapper-clause-scope +198865 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +198872 wrapper-scope +wrapper-scope +198875 wrapper-clause-scope +198877 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +198883 modifier-scope +modifier-scope +198888 wrapper-clause-scope +198890 modifier-scope +198892 wrapper-scope +wrapper-clause-scope +198895 wrapper-scope +modifier-scope +modifier-scope +198900 wrapper-clause-scope +wrapper-clause-scope +198904 modifier-scope +modifier-scope +modifier-scope +198908 modifier-scope +198910 group +198912 modifier-scope +wrapper-clause-scope +198916 modifier-scope +198920 modifier-clause-scope +apposition-group +198923 conjuncted-wg +198926 wrapper-clause-scope +198928 apposition-group +modifier-scope +wrapper-scope +198932 wrapper-clause-scope +198934 wrapper-scope +modifier-scope +198938 wrapper-clause-scope +198940 conjuncted-wg +198942 wrapper-clause-scope +198945 wrapper-clause-scope +198948 wrapper-scope +wrapper-clause-scope +198952 wrapper-scope +wrapper-clause-scope +198955 wrapper-scope +wrapper-scope +modifier-scope +198961 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +198969 wrapper-scope +198971 wrapper-clause-scope +198973 modifier-scope +modifier-scope +wrapper-clause-scope +198977 modifier-scope +198981 group +198985 wrapper-scope +198988 modifier-scope +modifier-scope +conjuncted-wg +198993 conjuncted-wg +198995 wrapper-clause-scope +198997 modifier-scope +modifier-scope +modifier-scope +199002 modifier-scope +199004 wrapper-clause-scope +199006 group +modifier-scope +conjuncted-wg +199010 modifier-scope +wrapper-scope +199013 wrapper-clause-scope +199015 modifier-scope +modifier-scope +group +wrapper-clause-scope +group +199023 modifier-scope +wrapper-scope +modifier-scope +199027 wrapper-clause-scope +199030 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +199037 wrapper-scope +modifier-scope +wrapper-clause-scope +199042 modifier-scope +199044 wrapper-clause-scope +199046 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +199052 wrapper-clause-scope +199054 wrapper-scope +modifier-scope +modifier-scope +group +199060 conjuncted-wg +199062 wrapper-scope +modifier-scope +wrapper-clause-scope +199066 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +modifier-scope +199074 wrapper-clause-scope +199077 wrapper-scope +conjuncted-wg +199081 wrapper-scope +199083 group +wrapper-clause-scope +199087 modifier-scope +199089 wrapper-clause-scope +199091 modifier-scope +modifier-scope +wrapper-scope +199095 wrapper-clause-scope +199097 modifier-scope +199100 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +199105 modifier-scope +modifier-scope +modifier-scope +199109 group +199112 modifier-scope +199114 conjuncted-wg +199116 wrapper-clause-scope +199118 wrapper-scope +wrapper-clause-scope +199121 modifier-scope +modifier-scope +199125 wrapper-scope +modifier-scope +199129 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +199134 modifier-scope +modifier-scope +199137 wrapper-clause-scope +199140 wrapper-scope +modifier-scope +199143 wrapper-clause-scope +group +wrapper-clause-scope +199147 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +199152 modifier-scope +group +modifier-scope +wrapper-scope +199157 wrapper-clause-scope +199160 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +199167 wrapper-clause-scope +199169 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +199175 conjuncted-wg +199177 wrapper-clause-scope +199179 conjuncted-wg +199183 conjuncted-wg +199185 modifier-scope +199187 wrapper-clause-scope +199189 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +199195 wrapper-clause-scope +group +199198 modifier-scope +199201 wrapper-scope +modifier-scope +conjuncted-wg +199206 wrapper-clause-scope +199208 modifier-scope +199213 wrapper-clause-scope +199216 conjuncted-wg +199220 modifier-scope +modifier-scope +conjuncted-wg +199224 wrapper-clause-scope +199227 group +wrapper-clause-scope +199231 modifier-scope +modifier-scope +199234 wrapper-scope +modifier-scope +199238 wrapper-scope +modifier-scope +conjuncted-wg +199242 wrapper-scope +199245 wrapper-clause-scope +199247 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +199252 wrapper-clause-scope +199255 wrapper-clause-scope +199257 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +199262 conjuncted-wg +199264 wrapper-scope +199266 wrapper-clause-scope +199268 modifier-scope +199270 wrapper-clause-scope +199272 modifier-scope +wrapper-scope +modifier-scope +199280 modifier-scope +group +199288 conjuncted-wg +199292 modifier-scope +conjuncted-wg +199298 wrapper-scope +modifier-scope +wrapper-clause-scope +group +199303 wrapper-scope +modifier-scope +199306 wrapper-scope +modifier-scope +conjuncted-wg +199310 wrapper-scope +199312 group +wrapper-clause-scope +group +199316 wrapper-scope +wrapper-clause-scope +199319 modifier-scope +modifier-scope +group +199323 wrapper-clause-scope +199325 modifier-scope +wrapper-scope +199328 group +199330 wrapper-scope +199332 modifier-scope +modifier-scope +199335 wrapper-clause-scope +199337 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +199345 wrapper-clause-scope +199348 conjuncted-wg +199352 modifier-scope +wrapper-clause-scope +199355 modifier-scope +199357 wrapper-clause-scope +199361 conjuncted-wg +199364 modifier-scope +wrapper-clause-scope +199370 wrapper-clause-scope +199374 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +199381 conjuncted-wg +199385 wrapper-clause-scope +199388 wrapper-scope +conjuncted-wg +199391 apposition-group +wrapper-clause-scope +199396 group +199398 wrapper-clause-scope +199400 wrapper-scope +199403 wrapper-clause-scope +199407 conjuncted-wg +199409 wrapper-scope +modifier-scope +wrapper-clause-scope +199413 modifier-scope +modifier-scope +199416 wrapper-clause-scope +199419 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +199426 modifier-scope +wrapper-clause-scope +199429 wrapper-clause-scope +199431 modifier-scope +199435 group +199437 modifier-scope +199439 modifier-scope +wrapper-scope +conjuncted-wg +group +199445 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +199451 wrapper-clause-scope +199453 modifier-scope +199456 modifier-scope +wrapper-scope +conjuncted-wg +199460 wrapper-scope +wrapper-clause-scope +199467 conjuncted-wg +199469 conjuncted-wg +199474 wrapper-clause-scope +199476 modifier-scope +wrapper-scope +group +199481 wrapper-clause-scope +199484 wrapper-clause-scope +199488 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +199494 modifier-scope +199497 apposition-group +modifier-scope +modifier-scope +199504 conjuncted-wg +199506 conjuncted-wg +199511 wrapper-clause-scope +199514 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +199525 group +wrapper-clause-scope +199530 wrapper-scope +conjuncted-wg +199536 wrapper-clause-scope +199538 wrapper-scope +wrapper-clause-scope +199541 modifier-scope +199543 modifier-clause-scope +modifier-clause-scope +199546 wrapper-scope +modifier-scope +modifier-scope +199550 wrapper-clause-scope +199552 wrapper-scope +modifier-clause-scope +apposition-group +199557 wrapper-clause-scope +199559 wrapper-scope +wrapper-clause-scope +199562 wrapper-clause-scope +199565 wrapper-clause-scope +199567 wrapper-scope +modifier-scope +199570 modifier-scope +modifier-scope +199573 modifier-scope +199577 modifier-scope +199579 wrapper-clause-scope +199581 wrapper-clause-scope +wrapper-clause-scope +199584 wrapper-scope +modifier-scope +modifier-scope +199588 wrapper-clause-scope +199590 modifier-scope +wrapper-clause-scope +199594 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +group +modifier-clause-scope +apposition-group +199603 modifier-scope +199605 wrapper-clause-scope +199607 wrapper-scope +modifier-scope +wrapper-scope +199611 wrapper-clause-scope +199614 modifier-scope +wrapper-scope +199617 conjuncted-wg +199619 wrapper-scope +modifier-scope +199622 wrapper-clause-scope +199625 modifier-scope +wrapper-scope +199628 modifier-scope +conjuncted-wg +conjuncted-wg +199633 wrapper-scope +199636 modifier-scope +199638 wrapper-clause-scope +199640 modifier-scope +modifier-scope +199643 wrapper-clause-scope +199645 modifier-scope +wrapper-clause-scope +199648 modifier-scope +199650 wrapper-clause-scope +199653 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +199659 wrapper-scope +modifier-scope +199662 wrapper-clause-scope +199664 group +modifier-scope +modifier-scope +wrapper-clause-scope +199669 modifier-scope +199672 wrapper-scope +group +wrapper-clause-scope +199676 wrapper-scope +199678 modifier-scope +wrapper-scope +wrapper-clause-scope +199682 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +199688 wrapper-scope +conjuncted-wg +199695 conjuncted-wg +199697 wrapper-clause-scope +199699 modifier-scope +wrapper-scope +modifier-scope +199705 conjuncted-wg +199707 wrapper-clause-scope +199709 wrapper-scope +modifier-scope +199712 wrapper-clause-scope +199714 wrapper-scope +modifier-scope +modifier-scope +199718 wrapper-clause-scope +199720 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +199725 wrapper-clause-scope +199728 wrapper-scope +modifier-scope +conjuncted-wg +199732 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +199739 wrapper-clause-scope +199743 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-clause-scope +199749 wrapper-scope +conjuncted-wg +199753 wrapper-scope +199756 modifier-scope +modifier-scope +199760 wrapper-clause-scope +199762 wrapper-scope +modifier-scope +199765 modifier-scope +199767 wrapper-clause-scope +199770 wrapper-clause-scope +199773 wrapper-clause-scope +199777 wrapper-clause-scope +199779 modifier-scope +199781 modifier-scope +wrapper-scope +modifier-scope +199785 wrapper-clause-scope +group +wrapper-clause-scope +199792 wrapper-scope +199794 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +199799 wrapper-clause-scope +199802 wrapper-scope +modifier-scope +199805 wrapper-clause-scope +199810 conjuncted-wg +199812 wrapper-scope +modifier-scope +modifier-scope +199816 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +199823 modifier-scope +conjuncted-wg +199826 modifier-scope +wrapper-scope +199829 wrapper-clause-scope +199831 modifier-scope +199834 conjuncted-wg +199836 wrapper-scope +modifier-scope +199840 modifier-scope +199842 modifier-scope +modifier-scope +modifier-scope +199847 wrapper-clause-scope +199852 wrapper-clause-scope +199854 modifier-scope +group +199859 conjuncted-wg +199862 wrapper-clause-scope +199864 modifier-scope +199866 group +199868 modifier-scope +modifier-scope +modifier-scope +199873 wrapper-clause-scope +199875 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +199880 modifier-scope +modifier-scope +modifier-scope +199884 wrapper-clause-scope +199886 modifier-scope +199888 wrapper-scope +199890 modifier-scope +modifier-scope +199895 conjuncted-wg +199897 group +group +wrapper-clause-scope +199901 wrapper-scope +199903 modifier-scope +modifier-scope +wrapper-clause-scope +199909 conjuncted-wg +199912 wrapper-clause-scope +199916 conjuncted-wg +199920 wrapper-scope +modifier-scope +199924 wrapper-clause-scope +group +group +wrapper-clause-scope +199930 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +199936 conjuncted-wg +199939 conjuncted-wg +wrapper-clause-scope +199943 wrapper-clause-scope +199945 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +199952 modifier-scope +modifier-scope +modifier-scope +199958 wrapper-clause-scope +199960 wrapper-scope +conjuncted-wg +199963 wrapper-scope +modifier-clause-scope +modifier-clause-scope +199968 wrapper-clause-scope +199971 modifier-scope +modifier-scope +199976 conjuncted-wg +199978 conjuncted-wg +199980 modifier-scope +modifier-scope +199983 group +wrapper-clause-scope +199986 wrapper-clause-scope +199988 modifier-scope +modifier-scope +modifier-scope +199993 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +199998 wrapper-scope +modifier-scope +200001 wrapper-clause-scope +200003 wrapper-clause-scope +200005 modifier-scope +modifier-scope +200008 wrapper-clause-scope +200010 group +200013 conjuncted-wg +200015 conjuncted-wg +200017 wrapper-scope +modifier-scope +modifier-scope +200024 wrapper-clause-scope +200026 modifier-scope +group +wrapper-clause-scope +200030 wrapper-clause-scope +200036 wrapper-clause-scope +200038 group +group +200041 wrapper-scope +modifier-scope +200044 wrapper-scope +modifier-scope +group +200048 wrapper-scope +modifier-scope +modifier-scope +200052 wrapper-scope +modifier-scope +modifier-scope +200056 wrapper-clause-scope +group +200059 wrapper-clause-scope +200061 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +200068 wrapper-clause-scope +200071 wrapper-scope +modifier-scope +modifier-scope +200075 wrapper-clause-scope +200080 modifier-scope +200082 apposition-group +200084 modifier-scope +200089 wrapper-scope +200091 conjuncted-wg +conjuncted-wg +200095 wrapper-clause-scope +200098 wrapper-scope +wrapper-scope +modifier-scope +200103 wrapper-clause-scope +200105 modifier-scope +200107 wrapper-clause-scope +200109 modifier-scope +group +wrapper-clause-scope +200113 modifier-scope +modifier-scope +modifier-scope +200117 wrapper-clause-scope +200120 conjuncted-wg +200123 wrapper-scope +conjuncted-wg +group +wrapper-clause-scope +200128 modifier-scope +200131 wrapper-clause-scope +200133 wrapper-clause-scope +200135 wrapper-scope +200137 wrapper-clause-scope +200139 modifier-scope +modifier-scope +200144 wrapper-scope +200146 wrapper-clause-scope +200148 modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +200153 group +wrapper-clause-scope +200156 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +200162 modifier-scope +conjuncted-wg +200166 modifier-scope +conjuncted-wg +200169 modifier-scope +200172 wrapper-scope +group +200176 modifier-scope +conjuncted-wg +200180 wrapper-clause-scope +200184 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +200188 wrapper-clause-scope +200190 modifier-clause-scope +wrapper-clause-scope +200193 modifier-scope +modifier-scope +modifier-scope +200197 wrapper-clause-scope +group +200200 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +200206 modifier-scope +wrapper-scope +modifier-scope +200210 wrapper-clause-scope +200212 wrapper-clause-scope +200214 modifier-scope +200217 wrapper-clause-scope +200219 modifier-scope +200221 wrapper-clause-scope +group +200225 wrapper-clause-scope +200227 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +200234 wrapper-scope +modifier-scope +200237 wrapper-clause-scope +200239 modifier-scope +200241 wrapper-scope +modifier-scope +200246 conjuncted-wg +200249 modifier-scope +modifier-scope +200253 modifier-scope +group +wrapper-clause-scope +200257 modifier-scope +modifier-scope +200260 modifier-scope +modifier-scope +modifier-scope +200264 wrapper-clause-scope +200267 group +apposition-group +200271 modifier-scope +wrapper-scope +modifier-scope +200277 modifier-scope +modifier-scope +modifier-scope +modifier-scope +200283 group +200285 wrapper-scope +200287 group +modifier-scope +modifier-scope +200292 modifier-scope +group +200295 wrapper-clause-scope +200297 modifier-scope +modifier-scope +200301 wrapper-clause-scope +200304 wrapper-scope +modifier-scope +conjuncted-wg +200308 group +200310 wrapper-scope +200314 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +200321 modifier-scope +modifier-scope +modifier-scope +200327 wrapper-scope +group +modifier-scope +modifier-scope +conjuncted-wg +200334 modifier-scope +modifier-scope +modifier-scope +modifier-scope +200341 wrapper-scope +conjuncted-wg +200344 wrapper-scope +modifier-scope +wrapper-clause-scope +200348 wrapper-scope +200350 group +group +wrapper-clause-scope +200354 modifier-scope +200356 wrapper-scope +modifier-scope +wrapper-clause-scope +200361 conjuncted-wg +200363 modifier-scope +modifier-scope +200366 wrapper-clause-scope +200369 wrapper-clause-scope +200371 modifier-scope +200375 modifier-scope +wrapper-scope +wrapper-scope +200379 group +wrapper-clause-scope +200383 wrapper-scope +200386 wrapper-clause-scope +200388 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +200395 wrapper-scope +wrapper-clause-scope +200398 wrapper-scope +modifier-scope +200403 modifier-scope +conjuncted-wg +200406 wrapper-clause-scope +200408 wrapper-clause-scope +200411 conjuncted-wg +200418 conjuncted-wg +200420 modifier-scope +modifier-scope +conjuncted-wg +200425 wrapper-clause-scope +200427 modifier-scope +modifier-scope +200431 wrapper-clause-scope +200434 conjuncted-wg +200437 wrapper-clause-scope +wrapper-clause-scope +200440 group +wrapper-clause-scope +200443 modifier-scope +modifier-scope +200446 modifier-scope +wrapper-scope +modifier-scope +200451 modifier-scope +200453 wrapper-clause-scope +200459 conjuncted-wg +200461 modifier-scope +conjuncted-wg +200464 group +wrapper-clause-scope +200467 modifier-scope +modifier-scope +200470 modifier-scope +wrapper-scope +modifier-scope +200474 wrapper-clause-scope +200476 apposition-group +group +modifier-scope +modifier-scope +200482 wrapper-clause-scope +200484 modifier-scope +200489 group +wrapper-clause-scope +200493 modifier-scope +modifier-scope +200498 modifier-scope +modifier-scope +wrapper-clause-scope +200504 modifier-scope +200506 wrapper-clause-scope +200509 conjuncted-wg +200513 group +wrapper-clause-scope +200516 wrapper-clause-scope +200519 modifier-scope +modifier-scope +conjuncted-wg +200524 conjuncted-wg +200526 modifier-scope +modifier-scope +200531 group +modifier-scope +modifier-scope +wrapper-clause-scope +200536 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +200542 conjuncted-wg +200545 wrapper-clause-scope +200547 modifier-scope +wrapper-scope +200551 modifier-scope +conjuncted-wg +200556 wrapper-clause-scope +wrapper-clause-scope +200560 wrapper-clause-scope +200563 wrapper-clause-scope +200565 wrapper-clause-scope +200567 wrapper-scope +200569 wrapper-clause-scope +200572 conjuncted-wg +200574 wrapper-scope +modifier-scope +200577 wrapper-clause-scope +200580 modifier-scope +modifier-scope +wrapper-scope +200584 wrapper-clause-scope +200586 modifier-scope +modifier-scope +200594 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +200603 conjuncted-wg +200605 conjuncted-wg +200607 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +200612 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +200619 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +200623 wrapper-clause-scope +200627 wrapper-clause-scope +200632 wrapper-clause-scope +200634 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +200642 conjuncted-wg +200644 wrapper-scope +modifier-scope +conjuncted-wg +200648 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +200654 group +200657 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +200665 wrapper-clause-scope +200669 conjuncted-wg +200671 conjuncted-wg +200675 wrapper-clause-scope +200678 modifier-scope +conjuncted-wg +wrapper-clause-scope +200683 modifier-scope +200685 wrapper-clause-scope +200687 wrapper-clause-scope +200690 conjuncted-wg +200694 wrapper-clause-scope +200700 conjuncted-wg +200704 wrapper-clause-scope +200707 wrapper-clause-scope +200709 wrapper-clause-scope +200711 modifier-scope +modifier-scope +200715 group +200718 group +modifier-scope +wrapper-clause-scope +200722 conjuncted-wg +200724 modifier-scope +modifier-scope +conjuncted-wg +200728 wrapper-clause-scope +200731 wrapper-scope +modifier-scope +conjuncted-wg +200735 wrapper-clause-scope +200739 conjuncted-wg +200742 wrapper-clause-scope +200750 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +200756 wrapper-clause-scope +200758 wrapper-scope +200761 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +200766 modifier-scope +modifier-scope +200769 wrapper-clause-scope +200771 modifier-scope +modifier-scope +200775 wrapper-clause-scope +200779 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +200785 conjuncted-wg +200788 wrapper-clause-scope +200790 modifier-scope +wrapper-scope +modifier-scope +group +200795 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +200800 modifier-scope +200804 modifier-scope +200806 modifier-scope +200808 wrapper-clause-scope +200810 wrapper-scope +200812 wrapper-clause-scope +200814 modifier-scope +200816 wrapper-scope +wrapper-clause-scope +200819 modifier-scope +modifier-scope +200822 wrapper-clause-scope +200824 wrapper-clause-scope +200827 wrapper-clause-scope +200829 modifier-scope +wrapper-scope +wrapper-clause-scope +200834 conjuncted-wg +200836 wrapper-scope +200839 modifier-clause-scope +modifier-clause-scope +group +wrapper-clause-scope +200844 conjuncted-wg +200848 apposition-group +modifier-scope +modifier-scope +200854 wrapper-clause-scope +200857 wrapper-clause-scope +200860 modifier-scope +modifier-scope +conjuncted-wg +200866 wrapper-clause-scope +200868 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +200874 wrapper-clause-scope +200876 group +200879 conjuncted-wg +group +200882 modifier-scope +modifier-scope +200887 group +200890 wrapper-scope +200892 group +200894 modifier-scope +modifier-scope +wrapper-clause-scope +200898 modifier-scope +wrapper-clause-scope +200901 modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +200909 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +200917 wrapper-clause-scope +200920 modifier-scope +wrapper-scope +200923 conjuncted-wg +200926 modifier-scope +200928 wrapper-clause-scope +200930 modifier-scope +modifier-scope +200933 wrapper-clause-scope +200935 group +group +wrapper-clause-scope +200941 wrapper-clause-scope +200945 wrapper-clause-scope +200947 group +200950 modifier-scope +modifier-scope +200954 group +group +200958 conjuncted-wg +200962 wrapper-clause-scope +200964 modifier-scope +200966 modifier-scope +200968 wrapper-clause-scope +200971 conjuncted-wg +200975 modifier-scope +conjuncted-wg +200978 modifier-scope +modifier-scope +200983 wrapper-clause-scope +200985 modifier-scope +conjuncted-wg +200992 modifier-scope +conjuncted-wg +200995 wrapper-clause-scope +200998 wrapper-scope +modifier-scope +201003 conjuncted-wg +201005 modifier-scope +modifier-scope +201010 wrapper-clause-scope +201012 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +201018 conjuncted-wg +201020 modifier-scope +modifier-scope +201025 wrapper-scope +modifier-scope +wrapper-clause-scope +201029 modifier-clause-scope +modifier-clause-scope +201034 wrapper-clause-scope +201036 wrapper-scope +201041 conjuncted-wg +201045 wrapper-scope +conjuncted-wg +201049 wrapper-clause-scope +201054 wrapper-clause-scope +201056 conjuncted-wg +201060 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201067 conjuncted-wg +201069 wrapper-clause-scope +group +201073 wrapper-clause-scope +201075 wrapper-scope +201078 modifier-scope +wrapper-clause-scope +201082 conjuncted-wg +201084 wrapper-clause-scope +201086 wrapper-scope +201088 wrapper-clause-scope +201093 wrapper-clause-scope +201096 wrapper-clause-scope +201098 modifier-scope +group +201101 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +201108 wrapper-clause-scope +201110 conjuncted-wg +201112 wrapper-clause-scope +201117 group +wrapper-scope +modifier-scope +wrapper-clause-scope +201122 wrapper-scope +conjuncted-wg +201125 wrapper-clause-scope +201127 modifier-scope +201130 modifier-scope +group +wrapper-clause-scope +201134 wrapper-clause-scope +201137 wrapper-clause-scope +group +201140 wrapper-clause-scope +201143 modifier-scope +modifier-scope +201146 wrapper-clause-scope +wrapper-clause-scope +201151 wrapper-clause-scope +group +201154 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201162 conjuncted-wg +201165 wrapper-clause-scope +201167 wrapper-clause-scope +201169 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201176 modifier-scope +conjuncted-wg +201180 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +201186 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +201193 group +wrapper-clause-scope +201196 modifier-scope +modifier-scope +201199 wrapper-scope +conjuncted-wg +group +201203 modifier-scope +wrapper-clause-scope +201206 modifier-scope +modifier-scope +201209 wrapper-clause-scope +group +201213 modifier-scope +conjuncted-wg +201216 wrapper-scope +wrapper-clause-scope +201219 modifier-scope +modifier-scope +modifier-scope +201224 modifier-scope +modifier-scope +modifier-scope +201228 wrapper-clause-scope +201233 wrapper-clause-scope +201235 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +201239 wrapper-clause-scope +201241 modifier-scope +modifier-scope +modifier-scope +201248 modifier-clause-scope +201250 wrapper-scope +conjuncted-wg +201253 conjuncted-wg +201255 modifier-scope +201258 modifier-scope +201262 wrapper-clause-scope +201264 wrapper-scope +conjuncted-wg +201269 conjuncted-wg +201271 conjuncted-wg +201275 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +201281 conjuncted-wg +201283 conjuncted-wg +201287 wrapper-clause-scope +201290 conjuncted-wg +201294 modifier-scope +modifier-scope +modifier-scope +201299 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +201311 apposition-group +modifier-clause-scope +201314 conjuncted-wg +201317 modifier-scope +201319 modifier-scope +conjuncted-wg +201322 modifier-scope +conjuncted-wg +201325 conjuncted-wg +201328 modifier-scope +conjuncted-wg +201333 conjuncted-wg +201335 wrapper-scope +modifier-scope +201340 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +201346 modifier-scope +conjuncted-wg +201349 modifier-scope +wrapper-clause-scope +group +201353 modifier-scope +201355 modifier-scope +201357 wrapper-clause-scope +201359 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +201364 wrapper-clause-scope +201366 modifier-scope +201368 wrapper-scope +modifier-scope +modifier-scope +201375 conjuncted-wg +201378 modifier-scope +modifier-scope +conjuncted-wg +201382 group +modifier-scope +modifier-scope +201387 wrapper-scope +modifier-scope +wrapper-clause-scope +201391 modifier-scope +modifier-scope +wrapper-clause-scope +201398 wrapper-scope +conjuncted-wg +201401 wrapper-scope +201406 conjuncted-wg +201411 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +201418 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +201424 wrapper-clause-scope +201426 modifier-scope +wrapper-scope +group +201431 conjuncted-wg +201437 modifier-scope +modifier-scope +201440 wrapper-clause-scope +201443 modifier-scope +201446 modifier-scope +wrapper-scope +modifier-scope +201452 conjuncted-wg +201454 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201462 wrapper-clause-scope +201465 modifier-scope +conjuncted-wg +201469 wrapper-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +201475 modifier-scope +201479 modifier-scope +201482 conjuncted-wg +201488 modifier-clause-scope +apposition-group +201491 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +201499 wrapper-clause-scope +201501 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201508 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +201514 conjuncted-wg +group +201518 modifier-scope +conjuncted-wg +201521 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +201526 wrapper-scope +modifier-scope +modifier-scope +201533 modifier-scope +modifier-scope +201536 conjuncted-wg +201539 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201546 conjuncted-wg +modifier-scope +201550 modifier-scope +wrapper-clause-scope +201555 modifier-scope +201557 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +201562 wrapper-scope +modifier-scope +modifier-scope +201567 modifier-scope +201571 wrapper-scope +modifier-scope +conjuncted-wg +201575 wrapper-scope +conjuncted-wg +wrapper-clause-scope +201582 modifier-scope +wrapper-clause-scope +201585 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +201594 wrapper-clause-scope +201598 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +201605 modifier-scope +201610 modifier-scope +conjuncted-wg +201613 wrapper-scope +modifier-scope +201618 modifier-scope +modifier-scope +201621 group +wrapper-clause-scope +201624 modifier-scope +modifier-scope +modifier-scope +modifier-scope +201630 wrapper-clause-scope +group +group +wrapper-clause-scope +201635 group +wrapper-clause-scope +201639 modifier-scope +wrapper-clause-scope +201643 conjuncted-wg +201645 wrapper-clause-scope +group +201648 wrapper-scope +modifier-scope +201651 wrapper-scope +modifier-scope +201654 wrapper-clause-scope +201658 wrapper-clause-scope +201660 wrapper-scope +modifier-scope +modifier-scope +201664 wrapper-clause-scope +201667 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +201673 wrapper-scope +modifier-scope +conjuncted-wg +201678 wrapper-clause-scope +201681 wrapper-scope +conjuncted-wg +201684 wrapper-clause-scope +201686 conjuncted-wg +201688 modifier-scope +conjuncted-wg +201691 modifier-clause-scope +201693 wrapper-scope +201695 wrapper-clause-scope +201697 wrapper-scope +201699 wrapper-clause-scope +201701 modifier-clause-scope +group +modifier-clause-scope +201705 group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +201711 conjuncted-wg +group +modifier-scope +modifier-scope +201716 wrapper-clause-scope +201718 wrapper-clause-scope +201721 modifier-scope +conjuncted-wg +201724 modifier-scope +modifier-scope +modifier-scope +modifier-scope +201729 group +modifier-scope +modifier-scope +201733 wrapper-clause-scope +201735 modifier-scope +wrapper-scope +201742 wrapper-clause-scope +201745 modifier-scope +group +201749 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +201754 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +201760 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +201765 wrapper-clause-scope +201767 modifier-scope +201769 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +201776 wrapper-clause-scope +group +wrapper-clause-scope +201780 wrapper-clause-scope +201782 wrapper-clause-scope +201784 wrapper-scope +apposition-group +201787 modifier-scope +201790 wrapper-scope +modifier-scope +201793 wrapper-scope +modifier-scope +201797 modifier-scope +201802 modifier-scope +conjuncted-wg +201807 wrapper-clause-scope +201809 modifier-scope +modifier-scope +201813 wrapper-clause-scope +201815 wrapper-scope +modifier-scope +wrapper-clause-scope +201819 modifier-scope +modifier-scope +modifier-scope +modifier-scope +201824 wrapper-clause-scope +201826 wrapper-clause-scope +201828 wrapper-scope +modifier-scope +wrapper-clause-scope +201832 modifier-scope +wrapper-scope +201837 conjuncted-wg +201839 wrapper-scope +201842 group +modifier-scope +modifier-scope +conjuncted-wg +group +201848 wrapper-clause-scope +201851 wrapper-clause-scope +201853 modifier-scope +201856 wrapper-clause-scope +201859 wrapper-clause-scope +201861 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +201866 wrapper-clause-scope +201868 wrapper-clause-scope +201870 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +201875 wrapper-clause-scope +201877 modifier-scope +201881 conjuncted-wg +201884 wrapper-scope +wrapper-clause-scope +201887 wrapper-clause-scope +201889 conjuncted-wg +201891 wrapper-scope +201893 wrapper-clause-scope +201895 group +wrapper-clause-scope +201898 modifier-scope +group +201901 modifier-scope +wrapper-clause-scope +201904 wrapper-scope +201906 wrapper-clause-scope +201909 modifier-scope +201911 modifier-scope +wrapper-scope +modifier-scope +201915 wrapper-clause-scope +201917 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +201923 wrapper-clause-scope +201925 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +201931 conjuncted-wg +wrapper-clause-scope +201934 wrapper-scope +modifier-scope +201937 wrapper-clause-scope +group +wrapper-clause-scope +201941 wrapper-clause-scope +201944 modifier-scope +201946 wrapper-clause-scope +201948 wrapper-scope +modifier-scope +201951 wrapper-clause-scope +201953 modifier-scope +wrapper-scope +201957 group +wrapper-clause-scope +201960 wrapper-clause-scope +201962 modifier-scope +modifier-scope +201965 wrapper-clause-scope +201967 wrapper-clause-scope +201969 modifier-scope +modifier-scope +201973 modifier-scope +201975 modifier-scope +modifier-scope +201979 modifier-scope +201981 wrapper-clause-scope +201983 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +201990 modifier-scope +201993 modifier-scope +conjuncted-wg +modifier-scope +201999 wrapper-clause-scope +202001 wrapper-scope +wrapper-clause-scope +202004 conjuncted-wg +202006 modifier-clause-scope +wrapper-clause-scope +202010 conjuncted-wg +202012 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +202020 group +202024 wrapper-clause-scope +202026 group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +202034 wrapper-scope +modifier-scope +202037 wrapper-clause-scope +202041 conjuncted-wg +202043 group +modifier-scope +modifier-scope +202049 modifier-scope +conjuncted-wg +202053 wrapper-clause-scope +202056 wrapper-clause-scope +202058 conjuncted-wg +202060 wrapper-scope +202062 wrapper-clause-scope +group +202065 modifier-scope +wrapper-scope +modifier-scope +202069 wrapper-scope +modifier-clause-scope +apposition-group +202073 modifier-scope +202075 wrapper-clause-scope +202077 group +modifier-scope +wrapper-clause-scope +202082 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +202088 modifier-scope +wrapper-clause-scope +202092 conjuncted-wg +202095 wrapper-clause-scope +202097 wrapper-scope +modifier-scope +wrapper-clause-scope +202102 wrapper-clause-scope +202104 modifier-scope +wrapper-clause-scope +202109 wrapper-scope +modifier-scope +modifier-scope +202115 wrapper-clause-scope +202118 modifier-scope +modifier-scope +202121 wrapper-clause-scope +202124 wrapper-clause-scope +202128 conjuncted-wg +202130 modifier-clause-scope +modifier-clause-scope +202136 modifier-scope +conjuncted-wg +202139 conjuncted-wg +202147 conjuncted-wg +202151 modifier-scope +202153 wrapper-clause-scope +202155 modifier-scope +202158 wrapper-clause-scope +202160 modifier-scope +wrapper-scope +wrapper-clause-scope +202164 modifier-clause-scope +wrapper-clause-scope +202167 modifier-scope +modifier-scope +modifier-scope +group +202172 wrapper-clause-scope +202174 modifier-scope +202176 wrapper-clause-scope +202179 wrapper-scope +wrapper-scope +modifier-scope +202183 wrapper-clause-scope +202186 conjuncted-wg +202188 wrapper-scope +202191 modifier-scope +202193 modifier-scope +202196 group +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +202204 wrapper-clause-scope +202208 modifier-scope +wrapper-clause-scope +202211 wrapper-clause-scope +group +wrapper-clause-scope +202216 modifier-scope +modifier-scope +modifier-scope +202220 wrapper-clause-scope +202222 modifier-scope +202224 wrapper-clause-scope +202227 modifier-scope +modifier-scope +conjuncted-wg +202235 wrapper-clause-scope +202237 conjuncted-wg +202239 wrapper-clause-scope +202241 conjuncted-wg +202243 wrapper-scope +group +modifier-scope +wrapper-clause-scope +202248 wrapper-clause-scope +202250 wrapper-clause-scope +202253 wrapper-clause-scope +202256 modifier-scope +202262 wrapper-clause-scope +202266 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +202271 modifier-scope +modifier-scope +202275 modifier-scope +202278 conjuncted-wg +202282 wrapper-clause-scope +202284 group +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +202291 wrapper-scope +modifier-scope +conjuncted-wg +202296 wrapper-scope +202298 wrapper-clause-scope +202301 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +202309 wrapper-clause-scope +202313 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +202318 group +202320 wrapper-clause-scope +202322 modifier-scope +modifier-scope +modifier-scope +202326 group +wrapper-clause-scope +202331 wrapper-scope +conjuncted-wg +202335 modifier-scope +conjuncted-wg +202338 modifier-scope +202340 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +202345 wrapper-clause-scope +202347 group +modifier-scope +modifier-scope +wrapper-scope +202352 modifier-scope +modifier-scope +202356 conjuncted-wg +202358 wrapper-clause-scope +202360 wrapper-clause-scope +202363 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +202368 modifier-scope +modifier-scope +202371 wrapper-clause-scope +202374 wrapper-scope +conjuncted-wg +202378 modifier-scope +modifier-scope +wrapper-clause-scope +202384 wrapper-scope +modifier-scope +conjuncted-wg +group +202389 wrapper-scope +modifier-scope +wrapper-clause-scope +202393 modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +202400 wrapper-scope +202402 wrapper-clause-scope +202404 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +202410 wrapper-clause-scope +202413 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +202418 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +202427 wrapper-scope +modifier-scope +202430 wrapper-clause-scope +202433 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +202438 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +202446 wrapper-clause-scope +202449 modifier-scope +conjuncted-wg +202452 wrapper-scope +202454 wrapper-scope +modifier-scope +202457 wrapper-clause-scope +202459 modifier-scope +wrapper-scope +modifier-scope +202463 wrapper-clause-scope +202466 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +group +group +wrapper-clause-scope +202476 wrapper-clause-scope +202479 wrapper-clause-scope +202481 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +202489 apposition-group +202491 wrapper-scope +202493 wrapper-clause-scope +202497 conjuncted-wg +202499 modifier-scope +conjuncted-wg +202502 modifier-scope +modifier-clause-scope +wrapper-scope +wrapper-clause-scope +202507 wrapper-scope +202509 wrapper-clause-scope +202512 modifier-scope +202514 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +202523 modifier-scope +modifier-scope +modifier-scope +modifier-scope +202528 wrapper-clause-scope +202530 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +202536 wrapper-clause-scope +202538 group +group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +202550 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +202557 wrapper-clause-scope +202560 group +wrapper-clause-scope +202563 wrapper-scope +modifier-scope +wrapper-clause-scope +202567 conjuncted-wg +202570 modifier-scope +wrapper-clause-scope +202574 wrapper-clause-scope +202576 modifier-scope +group +202579 wrapper-clause-scope +202581 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +202589 modifier-scope +wrapper-scope +conjuncted-wg +202594 wrapper-clause-scope +202597 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +202604 conjuncted-wg +202607 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +202612 modifier-clause-scope +apposition-group +202615 wrapper-scope +202617 wrapper-clause-scope +group +202620 modifier-scope +wrapper-clause-scope +202623 modifier-scope +modifier-scope +wrapper-clause-scope +202628 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +202633 wrapper-scope +modifier-scope +202638 modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +202644 wrapper-scope +modifier-scope +202647 wrapper-clause-scope +202649 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +202655 wrapper-scope +modifier-scope +conjuncted-wg +202663 wrapper-clause-scope +202665 wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +202672 wrapper-clause-scope +group +202676 modifier-scope +wrapper-scope +wrapper-clause-scope +202680 wrapper-scope +group +202684 modifier-scope +202686 modifier-scope +modifier-scope +202689 wrapper-scope +modifier-scope +202694 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +202705 wrapper-scope +wrapper-scope +conjuncted-wg +202710 wrapper-clause-scope +202712 group +modifier-scope +wrapper-clause-scope +202716 wrapper-scope +wrapper-clause-scope +202720 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +202725 wrapper-scope +202727 group +202729 wrapper-scope +modifier-scope +wrapper-clause-scope +202733 apposition-group +202735 modifier-scope +202737 wrapper-clause-scope +202739 modifier-scope +wrapper-scope +group +202743 wrapper-clause-scope +202746 modifier-scope +wrapper-scope +202749 wrapper-clause-scope +202751 modifier-scope +wrapper-scope +wrapper-clause-scope +group +202756 wrapper-clause-scope +202758 wrapper-scope +modifier-scope +202761 wrapper-clause-scope +202764 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +202775 modifier-scope +202779 modifier-scope +conjuncted-wg +202782 modifier-scope +202787 conjuncted-wg +conjuncted-wg +202790 modifier-scope +202792 wrapper-clause-scope +202794 modifier-scope +202796 group +202798 modifier-scope +wrapper-clause-scope +202801 modifier-scope +modifier-scope +modifier-scope +202805 wrapper-clause-scope +wrapper-clause-scope +202810 wrapper-clause-scope +202812 modifier-scope +modifier-scope +modifier-scope +202816 wrapper-scope +modifier-scope +conjuncted-wg +202820 wrapper-clause-scope +202822 modifier-scope +202826 wrapper-clause-scope +202828 modifier-scope +modifier-scope +conjuncted-wg +202832 wrapper-clause-scope +202834 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +202844 wrapper-clause-scope +202846 conjuncted-wg +group +202850 modifier-scope +modifier-scope +modifier-scope +modifier-scope +202856 wrapper-clause-scope +202858 modifier-scope +202861 modifier-scope +modifier-scope +202864 wrapper-clause-scope +202869 wrapper-scope +modifier-scope +modifier-scope +202873 wrapper-clause-scope +202875 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +202882 modifier-scope +modifier-scope +202885 wrapper-clause-scope +202887 wrapper-scope +modifier-scope +202890 conjuncted-wg +202892 conjuncted-wg +202895 wrapper-clause-scope +202897 group +modifier-scope +wrapper-clause-scope +202902 conjuncted-wg +202911 conjuncted-wg +202913 group +202915 wrapper-scope +modifier-scope +modifier-scope +202919 wrapper-scope +202921 group +202923 modifier-scope +modifier-scope +modifier-scope +202927 modifier-scope +modifier-scope +modifier-scope +modifier-scope +202933 wrapper-clause-scope +202935 wrapper-scope +modifier-scope +wrapper-scope +202939 wrapper-clause-scope +202943 modifier-scope +202946 wrapper-clause-scope +202948 modifier-scope +group +202952 wrapper-scope +modifier-scope +wrapper-clause-scope +202956 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +202961 wrapper-clause-scope +202964 modifier-scope +modifier-scope +modifier-scope +202968 modifier-scope +modifier-scope +modifier-scope +modifier-scope +202973 wrapper-clause-scope +202975 modifier-scope +202977 modifier-scope +modifier-scope +wrapper-scope +202983 wrapper-clause-scope +202985 modifier-scope +wrapper-clause-scope +202989 wrapper-clause-scope +202991 wrapper-clause-scope +202993 wrapper-scope +modifier-scope +202997 group +group +wrapper-clause-scope +203001 modifier-scope +203003 wrapper-scope +modifier-scope +wrapper-clause-scope +203007 modifier-scope +203011 conjuncted-wg +203014 wrapper-scope +203016 wrapper-clause-scope +group +203020 modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +203025 modifier-scope +modifier-scope +group +modifier-scope +203033 modifier-scope +modifier-scope +conjuncted-wg +203037 modifier-scope +modifier-scope +203041 wrapper-scope +203043 wrapper-clause-scope +203045 group +203048 modifier-scope +modifier-scope +conjuncted-wg +203052 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +203059 modifier-scope +conjuncted-wg +203062 modifier-scope +conjuncted-wg +203065 conjuncted-wg +203069 wrapper-clause-scope +203072 modifier-scope +modifier-scope +conjuncted-wg +203076 wrapper-scope +203078 wrapper-clause-scope +203081 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +203089 wrapper-scope +modifier-scope +wrapper-clause-scope +203093 wrapper-clause-scope +203095 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +203100 modifier-scope +modifier-scope +modifier-scope +203104 wrapper-clause-scope +203107 conjuncted-wg +203112 wrapper-clause-scope +203114 wrapper-scope +wrapper-scope +conjuncted-wg +203118 wrapper-scope +wrapper-clause-scope +203121 conjuncted-wg +203123 wrapper-clause-scope +203125 wrapper-clause-scope +203128 group +203130 wrapper-scope +modifier-scope +wrapper-clause-scope +203134 modifier-clause-scope +wrapper-clause-scope +203137 wrapper-scope +wrapper-scope +modifier-scope +203141 wrapper-clause-scope +group +group +wrapper-clause-scope +203147 modifier-scope +modifier-scope +conjuncted-wg +203152 wrapper-clause-scope +group +group +203156 wrapper-clause-scope +203158 modifier-scope +wrapper-clause-scope +203161 modifier-scope +203164 wrapper-clause-scope +203167 conjuncted-wg +203169 modifier-scope +modifier-scope +wrapper-clause-scope +203176 modifier-clause-scope +apposition-group +203179 wrapper-scope +modifier-scope +modifier-scope +203184 wrapper-scope +conjuncted-wg +203188 modifier-clause-scope +modifier-clause-scope +203193 conjuncted-wg +203196 wrapper-clause-scope +203198 wrapper-clause-scope +203200 modifier-scope +modifier-scope +modifier-scope +203204 wrapper-clause-scope +203207 wrapper-clause-scope +203209 modifier-scope +203212 wrapper-clause-scope +203214 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +203220 wrapper-clause-scope +203222 modifier-scope +modifier-scope +wrapper-clause-scope +203226 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +203232 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +203239 wrapper-clause-scope +203241 group +203243 group +203245 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +203250 modifier-scope +group +203255 wrapper-clause-scope +203257 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +203264 wrapper-scope +conjuncted-wg +203267 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +203273 modifier-scope +conjuncted-wg +203280 wrapper-scope +modifier-scope +conjuncted-wg +203286 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +203291 modifier-clause-scope +apposition-group +203294 wrapper-scope +203296 wrapper-clause-scope +203298 wrapper-scope +group +203304 modifier-scope +modifier-scope +203309 conjuncted-wg +203314 conjuncted-wg +203316 wrapper-scope +203320 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +203327 group +wrapper-clause-scope +203331 wrapper-scope +203334 group +203338 modifier-scope +modifier-scope +203341 modifier-scope +203343 modifier-scope +conjuncted-wg +modifier-scope +203347 group +203352 wrapper-clause-scope +203354 wrapper-clause-scope +203356 modifier-scope +conjuncted-wg +203359 conjuncted-wg +203362 conjuncted-wg +203364 wrapper-clause-scope +203366 wrapper-clause-scope +203369 wrapper-scope +wrapper-clause-scope +203373 wrapper-clause-scope +group +wrapper-clause-scope +203378 modifier-scope +modifier-scope +conjuncted-wg +203382 modifier-scope +modifier-scope +conjuncted-wg +203394 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +203399 wrapper-clause-scope +203402 wrapper-clause-scope +group +group +wrapper-clause-scope +203407 group +203409 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +203415 modifier-scope +203417 modifier-scope +modifier-scope +wrapper-clause-scope +203421 wrapper-clause-scope +203423 wrapper-clause-scope +203425 modifier-scope +203427 wrapper-clause-scope +wrapper-clause-scope +203432 modifier-scope +modifier-scope +conjuncted-wg +203436 wrapper-clause-scope +203439 group +wrapper-clause-scope +203442 group +203444 wrapper-clause-scope +203448 wrapper-scope +modifier-scope +203454 wrapper-clause-scope +wrapper-clause-scope +203457 modifier-scope +203459 wrapper-clause-scope +203461 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +203468 wrapper-scope +wrapper-scope +wrapper-clause-scope +203472 wrapper-clause-scope +203475 wrapper-clause-scope +203477 wrapper-clause-scope +203480 wrapper-clause-scope +wrapper-clause-scope +203485 wrapper-clause-scope +203487 wrapper-clause-scope +203489 conjuncted-wg +203491 wrapper-clause-scope +203493 wrapper-clause-scope +203499 modifier-scope +conjuncted-wg +203503 conjuncted-wg +203505 wrapper-clause-scope +wrapper-clause-scope +203508 wrapper-clause-scope +203510 modifier-scope +wrapper-scope +203514 wrapper-scope +modifier-scope +203518 wrapper-scope +203521 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +203531 modifier-scope +203533 wrapper-clause-scope +203536 group +conjuncted-wg +203542 wrapper-scope +203546 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +203553 wrapper-clause-scope +203555 modifier-scope +203557 apposition-group +203560 modifier-scope +conjuncted-wg +203564 wrapper-clause-scope +203568 modifier-scope +conjuncted-wg +203571 modifier-scope +group +203574 wrapper-clause-scope +203576 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +203581 wrapper-clause-scope +203586 wrapper-clause-scope +203588 modifier-clause-scope +wrapper-clause-scope +203592 wrapper-scope +203594 wrapper-clause-scope +203596 wrapper-clause-scope +203598 modifier-scope +wrapper-clause-scope +203604 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +203610 modifier-scope +203612 wrapper-clause-scope +203615 modifier-scope +203617 wrapper-clause-scope +203620 wrapper-clause-scope +group +wrapper-clause-scope +203627 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +203632 modifier-scope +wrapper-scope +203636 wrapper-clause-scope +203638 modifier-scope +wrapper-scope +203641 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +203649 wrapper-scope +203653 conjuncted-wg +group +wrapper-clause-scope +203657 modifier-scope +wrapper-clause-scope +203663 modifier-scope +203665 group +203667 modifier-scope +wrapper-clause-scope +203671 wrapper-clause-scope +203674 modifier-scope +203676 group +203678 wrapper-scope +wrapper-clause-scope +203681 modifier-scope +wrapper-clause-scope +203684 wrapper-scope +203687 group +203696 conjuncted-wg +203702 wrapper-scope +203706 modifier-scope +modifier-scope +wrapper-scope +203712 modifier-scope +modifier-scope +wrapper-scope +203716 wrapper-clause-scope +wrapper-clause-scope +203720 modifier-scope +wrapper-scope +203725 modifier-scope +modifier-scope +203728 group +203730 wrapper-scope +modifier-scope +203733 modifier-scope +wrapper-scope +203737 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +203744 wrapper-clause-scope +group +wrapper-clause-scope +203748 wrapper-clause-scope +203750 wrapper-clause-scope +203754 wrapper-clause-scope +203756 wrapper-clause-scope +203759 conjuncted-wg +203762 conjuncted-wg +203764 wrapper-scope +wrapper-clause-scope +203768 modifier-scope +203770 wrapper-clause-scope +203773 modifier-scope +203780 modifier-scope +203785 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +203792 wrapper-scope +modifier-scope +wrapper-clause-scope +203796 wrapper-scope +203799 wrapper-clause-scope +203802 modifier-scope +modifier-scope +modifier-scope +203808 wrapper-scope +conjuncted-wg +203816 modifier-scope +conjuncted-wg +203821 modifier-scope +203824 modifier-scope +wrapper-scope +conjuncted-wg +203831 wrapper-clause-scope +203833 modifier-scope +203837 modifier-scope +203840 wrapper-clause-scope +203843 wrapper-scope +modifier-scope +conjuncted-wg +203847 modifier-scope +wrapper-scope +203851 modifier-clause-scope +apposition-group +203854 wrapper-scope +203856 wrapper-clause-scope +203858 modifier-scope +203860 wrapper-scope +modifier-scope +modifier-scope +203865 wrapper-clause-scope +203868 wrapper-scope +modifier-scope +conjuncted-wg +203872 modifier-scope +wrapper-scope +203875 wrapper-clause-scope +group +wrapper-clause-scope +203880 wrapper-scope +modifier-scope +modifier-scope +203884 wrapper-clause-scope +wrapper-clause-scope +203887 group +203890 wrapper-clause-scope +203892 wrapper-scope +203894 modifier-clause-scope +apposition-group +203897 conjuncted-wg +203899 modifier-scope +wrapper-clause-scope +203902 wrapper-scope +modifier-scope +203905 wrapper-clause-scope +203909 apposition-group +wrapper-clause-scope +203912 wrapper-scope +modifier-scope +modifier-scope +203916 modifier-scope +wrapper-scope +modifier-scope +203920 group +wrapper-clause-scope +203923 wrapper-scope +modifier-scope +modifier-scope +203928 group +wrapper-clause-scope +203932 modifier-scope +modifier-scope +modifier-scope +203938 modifier-scope +conjuncted-wg +203941 group +203943 modifier-scope +wrapper-clause-scope +203946 wrapper-scope +wrapper-scope +modifier-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +203956 modifier-scope +203959 conjuncted-wg +203963 wrapper-clause-scope +203966 wrapper-scope +conjuncted-wg +203969 wrapper-scope +203971 group +203974 wrapper-scope +203976 wrapper-clause-scope +203979 modifier-scope +modifier-scope +conjuncted-wg +203983 wrapper-clause-scope +group +203987 modifier-scope +203990 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +203996 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +204001 wrapper-scope +204003 wrapper-scope +204007 wrapper-clause-scope +204010 modifier-scope +modifier-scope +conjuncted-wg +204014 wrapper-clause-scope +204017 wrapper-clause-scope +group +204020 wrapper-clause-scope +204022 wrapper-scope +modifier-scope +modifier-scope +204027 conjuncted-wg +204031 modifier-clause-scope +204033 modifier-scope +204036 conjuncted-wg +204042 conjuncted-wg +204044 modifier-scope +204048 conjuncted-wg +204052 group +wrapper-clause-scope +204056 modifier-scope +modifier-scope +conjuncted-wg +204060 modifier-scope +modifier-scope +conjuncted-wg +204065 wrapper-scope +conjuncted-wg +204068 wrapper-scope +204071 wrapper-clause-scope +204073 modifier-scope +modifier-scope +204076 wrapper-clause-scope +204079 modifier-clause-scope +apposition-group +204082 conjuncted-wg +204084 modifier-clause-scope +modifier-clause-scope +204090 wrapper-scope +204092 wrapper-clause-scope +204095 group +modifier-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +204102 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +204107 conjuncted-wg +204109 modifier-clause-scope +204112 group +204115 modifier-scope +modifier-scope +204119 wrapper-clause-scope +wrapper-clause-scope +204122 modifier-scope +204126 modifier-scope +modifier-scope +conjuncted-wg +204136 conjuncted-wg +204138 wrapper-scope +204141 wrapper-clause-scope +204144 wrapper-clause-scope +204146 wrapper-scope +modifier-scope +wrapper-clause-scope +204150 modifier-scope +204152 wrapper-clause-scope +204154 wrapper-clause-scope +204156 wrapper-clause-scope +group +wrapper-clause-scope +204163 wrapper-scope +wrapper-clause-scope +204166 modifier-scope +modifier-scope +modifier-scope +204170 wrapper-clause-scope +204173 wrapper-scope +conjuncted-wg +wrapper-clause-scope +204177 modifier-scope +wrapper-clause-scope +204181 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +204186 modifier-scope +204189 group +204195 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +204200 modifier-scope +modifier-scope +modifier-scope +204207 modifier-clause-scope +modifier-scope +modifier-scope +wrapper-scope +204212 conjuncted-wg +group +204216 modifier-clause-scope +wrapper-clause-scope +204219 wrapper-clause-scope +204221 modifier-scope +204224 wrapper-scope +modifier-clause-scope +apposition-group +204229 group +204231 wrapper-scope +204233 wrapper-scope +204236 wrapper-clause-scope +204238 modifier-scope +204240 wrapper-scope +wrapper-clause-scope +204243 wrapper-scope +modifier-scope +wrapper-clause-scope +204247 wrapper-scope +204249 group +204251 modifier-scope +204253 modifier-scope +204257 wrapper-clause-scope +group +204260 wrapper-scope +204262 wrapper-scope +modifier-scope +wrapper-clause-scope +204266 wrapper-scope +204270 wrapper-clause-scope +204272 wrapper-scope +wrapper-clause-scope +204276 modifier-scope +conjuncted-wg +204279 conjuncted-wg +204281 conjuncted-wg +204283 wrapper-scope +modifier-scope +conjuncted-wg +204289 wrapper-clause-scope +204292 wrapper-scope +conjuncted-wg +204295 modifier-scope +modifier-scope +wrapper-scope +204299 wrapper-clause-scope +204301 conjuncted-wg +204305 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +204311 modifier-scope +conjuncted-wg +204314 modifier-scope +204316 group +wrapper-clause-scope +204319 modifier-scope +204323 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +204328 group +group +wrapper-clause-scope +204332 modifier-scope +modifier-scope +204335 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +204341 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +204347 wrapper-scope +modifier-scope +modifier-scope +204352 wrapper-clause-scope +204355 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +204361 modifier-scope +modifier-scope +204365 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +204370 wrapper-clause-scope +204374 modifier-scope +modifier-scope +wrapper-clause-scope +204378 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +204384 group +204386 modifier-scope +wrapper-clause-scope +204392 wrapper-clause-scope +204394 modifier-scope +204396 modifier-scope +modifier-scope +204399 wrapper-clause-scope +204401 wrapper-clause-scope +204403 modifier-clause-scope +204405 wrapper-scope +modifier-scope +modifier-scope +204409 group +204413 conjuncted-wg +group +204416 wrapper-clause-scope +group +204421 conjuncted-wg +204423 conjuncted-wg +204425 modifier-scope +modifier-scope +wrapper-clause-scope +204429 apposition-group +wrapper-clause-scope +204432 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +204438 wrapper-clause-scope +204441 group +wrapper-clause-scope +204444 modifier-scope +204446 wrapper-clause-scope +204448 modifier-scope +204451 wrapper-clause-scope +204453 wrapper-scope +modifier-scope +204456 modifier-scope +modifier-scope +204459 wrapper-clause-scope +group +wrapper-clause-scope +204464 wrapper-scope +modifier-scope +conjuncted-wg +204468 wrapper-scope +modifier-scope +204471 wrapper-scope +modifier-scope +204475 modifier-clause-scope +apposition-group +204479 modifier-scope +modifier-scope +204483 wrapper-clause-scope +204485 modifier-scope +204487 group +wrapper-clause-scope +204490 modifier-scope +modifier-scope +204493 modifier-scope +modifier-scope +204496 wrapper-clause-scope +204498 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +204505 wrapper-clause-scope +204508 group +wrapper-clause-scope +204512 conjuncted-wg +204516 wrapper-clause-scope +204518 wrapper-scope +modifier-scope +modifier-scope +204523 wrapper-clause-scope +204525 modifier-scope +modifier-scope +modifier-scope +204530 wrapper-clause-scope +204532 modifier-scope +wrapper-scope +204535 modifier-scope +204537 wrapper-clause-scope +204540 conjuncted-wg +conjuncted-wg +204543 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +204548 wrapper-clause-scope +wrapper-clause-scope +204551 group +modifier-scope +wrapper-clause-scope +204555 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +204561 group +wrapper-clause-scope +204564 group +modifier-clause-scope +apposition-group +204568 wrapper-scope +modifier-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +204575 wrapper-scope +modifier-scope +204578 wrapper-scope +204580 wrapper-clause-scope +204582 modifier-scope +wrapper-clause-scope +204585 wrapper-scope +wrapper-scope +204589 wrapper-clause-scope +204594 wrapper-clause-scope +204598 modifier-clause-scope +wrapper-clause-scope +204602 modifier-scope +204604 wrapper-clause-scope +group +204607 wrapper-clause-scope +204610 modifier-scope +conjuncted-wg +204614 wrapper-clause-scope +204616 wrapper-clause-scope +group +wrapper-clause-scope +204620 modifier-scope +modifier-scope +204626 wrapper-clause-scope +204628 wrapper-scope +wrapper-clause-scope +204631 wrapper-scope +204633 wrapper-clause-scope +204636 wrapper-scope +wrapper-clause-scope +204639 conjuncted-wg +204641 modifier-scope +wrapper-scope +204645 wrapper-clause-scope +group +wrapper-clause-scope +204650 modifier-scope +modifier-scope +modifier-scope +204654 wrapper-clause-scope +204656 modifier-scope +group +204659 wrapper-clause-scope +204661 wrapper-clause-scope +204664 wrapper-clause-scope +204666 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +204671 wrapper-clause-scope +204673 wrapper-scope +204675 wrapper-clause-scope +204678 modifier-scope +204680 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +204687 conjuncted-wg +group +204690 wrapper-scope +wrapper-clause-scope +204693 wrapper-scope +conjuncted-wg +group +204697 wrapper-scope +wrapper-clause-scope +204701 wrapper-scope +modifier-scope +conjuncted-wg +204705 conjuncted-wg +group +204708 wrapper-scope +wrapper-clause-scope +204711 modifier-scope +modifier-scope +modifier-scope +modifier-scope +204719 conjuncted-wg +204723 wrapper-clause-scope +group +group +wrapper-clause-scope +204728 group +modifier-scope +modifier-scope +modifier-scope +204733 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +204738 group +204740 wrapper-scope +204743 conjuncted-wg +204745 wrapper-clause-scope +204748 group +204750 wrapper-clause-scope +204753 wrapper-scope +modifier-scope +conjuncted-wg +204760 modifier-clause-scope +204762 modifier-scope +wrapper-scope +wrapper-clause-scope +204767 wrapper-scope +modifier-scope +conjuncted-wg +204775 conjuncted-wg +204777 conjuncted-wg +204780 conjuncted-wg +204783 wrapper-clause-scope +204785 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +204790 apposition-group +204795 conjuncted-wg +204797 conjuncted-wg +204800 conjuncted-wg +204802 conjuncted-wg +wrapper-clause-scope +204805 wrapper-scope +modifier-scope +204808 wrapper-clause-scope +204811 group +apposition-group +204814 modifier-scope +204820 wrapper-clause-scope +204823 conjuncted-wg +204827 wrapper-scope +wrapper-scope +204833 conjuncted-wg +204835 conjuncted-wg +204838 conjuncted-wg +204841 wrapper-clause-scope +wrapper-clause-scope +204844 wrapper-clause-scope +group +204849 conjuncted-wg +204851 conjuncted-wg +204853 modifier-scope +204856 conjuncted-wg +204858 modifier-scope +modifier-scope +wrapper-scope +204863 wrapper-clause-scope +204865 modifier-scope +wrapper-clause-scope +204868 modifier-scope +modifier-scope +204871 wrapper-clause-scope +204873 wrapper-clause-scope +204875 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +204881 wrapper-scope +modifier-scope +204884 wrapper-clause-scope +204886 conjuncted-wg +204888 modifier-scope +conjuncted-wg +204893 conjuncted-wg +204895 modifier-scope +modifier-scope +conjuncted-wg +204899 modifier-scope +modifier-scope +wrapper-scope +204903 wrapper-clause-scope +204905 wrapper-scope +modifier-scope +modifier-scope +204909 wrapper-clause-scope +wrapper-clause-scope +204913 wrapper-clause-scope +204915 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +204921 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +204926 group +204929 conjuncted-wg +204931 wrapper-clause-scope +204933 modifier-scope +modifier-scope +wrapper-scope +204938 wrapper-scope +204940 group +204942 wrapper-clause-scope +group +204945 wrapper-scope +204947 wrapper-scope +modifier-scope +204952 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +204960 wrapper-clause-scope +204962 modifier-scope +wrapper-scope +204965 wrapper-clause-scope +group +204968 modifier-scope +modifier-scope +wrapper-clause-scope +204973 conjuncted-wg +204975 wrapper-clause-scope +204977 wrapper-scope +modifier-scope +204980 group +204983 wrapper-scope +modifier-scope +conjuncted-wg +204987 wrapper-scope +modifier-scope +204991 modifier-scope +conjuncted-wg +204994 wrapper-scope +modifier-scope +204998 modifier-scope +modifier-scope +205002 wrapper-scope +conjuncted-wg +205007 wrapper-clause-scope +205010 conjuncted-wg +205016 wrapper-scope +wrapper-clause-scope +205019 wrapper-scope +205026 conjuncted-wg +205028 wrapper-clause-scope +group +205031 wrapper-scope +modifier-scope +205035 wrapper-clause-scope +205037 wrapper-clause-scope +205039 modifier-scope +wrapper-scope +205043 wrapper-clause-scope +205045 wrapper-scope +205047 group +205050 wrapper-scope +modifier-scope +conjuncted-wg +205055 modifier-scope +205059 conjuncted-wg +205062 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +205068 modifier-scope +205071 modifier-scope +modifier-scope +wrapper-clause-scope +205075 modifier-scope +wrapper-clause-scope +205078 modifier-scope +wrapper-clause-scope +205082 modifier-clause-scope +205084 modifier-scope +205086 wrapper-clause-scope +205088 modifier-scope +modifier-scope +wrapper-clause-scope +205093 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +205100 group +205103 wrapper-scope +modifier-scope +205106 modifier-clause-scope +apposition-group +205112 wrapper-clause-scope +205115 wrapper-scope +modifier-clause-scope +apposition-group +205119 wrapper-scope +wrapper-clause-scope +205122 modifier-scope +wrapper-scope +205126 modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +205131 wrapper-scope +modifier-scope +205134 group +205138 conjuncted-wg +205140 modifier-scope +modifier-scope +205143 group +205145 wrapper-clause-scope +205147 modifier-clause-scope +205149 wrapper-scope +wrapper-clause-scope +205153 modifier-clause-scope +apposition-group +205156 conjuncted-wg +205159 conjuncted-wg +205161 wrapper-clause-scope +205163 wrapper-scope +conjuncted-wg +205166 wrapper-clause-scope +205170 wrapper-scope +205172 group +group +205175 wrapper-scope +modifier-scope +205178 wrapper-scope +205180 wrapper-clause-scope +205183 conjuncted-wg +205185 modifier-scope +modifier-scope +conjuncted-wg +205189 modifier-scope +conjuncted-wg +205192 wrapper-scope +205194 wrapper-clause-scope +group +205198 wrapper-scope +modifier-scope +conjuncted-wg +205202 wrapper-scope +modifier-scope +205205 wrapper-scope +205209 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +205215 wrapper-clause-scope +205217 wrapper-clause-scope +205221 group +wrapper-clause-scope +205224 wrapper-scope +205227 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +205232 conjuncted-wg +205234 conjuncted-wg +group +group +205238 modifier-scope +wrapper-scope +wrapper-clause-scope +205242 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +205247 modifier-scope +205249 wrapper-clause-scope +205252 wrapper-scope +conjuncted-wg +205255 wrapper-scope +modifier-scope +wrapper-clause-scope +205260 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +205267 modifier-scope +modifier-scope +conjuncted-wg +group +205272 modifier-scope +wrapper-clause-scope +205275 wrapper-scope +modifier-scope +wrapper-clause-scope +205279 wrapper-scope +modifier-scope +205282 group +205284 wrapper-clause-scope +205286 wrapper-scope +modifier-scope +wrapper-clause-scope +205290 wrapper-scope +modifier-scope +205294 wrapper-scope +modifier-scope +wrapper-clause-scope +205298 wrapper-scope +modifier-scope +205302 wrapper-scope +modifier-scope +205306 modifier-scope +modifier-scope +modifier-scope +205310 group +wrapper-clause-scope +205313 wrapper-scope +modifier-scope +205316 wrapper-scope +modifier-scope +205319 wrapper-clause-scope +205321 wrapper-scope +wrapper-clause-scope +205324 wrapper-scope +modifier-scope +wrapper-scope +205328 wrapper-clause-scope +group +group +group +205333 wrapper-scope +205335 wrapper-scope +wrapper-clause-scope +205338 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +205344 wrapper-clause-scope +205348 wrapper-scope +205350 wrapper-scope +wrapper-clause-scope +205353 modifier-scope +wrapper-scope +wrapper-clause-scope +205357 modifier-scope +wrapper-clause-scope +205361 group +group +group +205365 modifier-clause-scope +apposition-group +205368 wrapper-clause-scope +205370 wrapper-clause-scope +205374 wrapper-scope +conjuncted-wg +205377 wrapper-scope +wrapper-clause-scope +205380 wrapper-scope +wrapper-scope +wrapper-clause-scope +205384 modifier-scope +wrapper-clause-scope +205388 conjuncted-wg +205390 wrapper-clause-scope +205398 wrapper-clause-scope +205401 wrapper-scope +205403 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +205409 wrapper-scope +modifier-scope +205414 modifier-scope +205417 modifier-scope +modifier-scope +conjuncted-wg +205421 conjuncted-wg +205424 wrapper-clause-scope +205426 conjuncted-wg +group +205430 modifier-scope +modifier-scope +conjuncted-wg +205434 wrapper-clause-scope +205437 modifier-clause-scope +apposition-group +205440 wrapper-scope +wrapper-scope +205445 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +205454 apposition-group +205456 wrapper-scope +205458 conjuncted-wg +modifier-scope +modifier-scope +205462 wrapper-clause-scope +205464 modifier-clause-scope +group +wrapper-clause-scope +205468 modifier-scope +wrapper-clause-scope +205471 wrapper-scope +modifier-scope +modifier-scope +205475 wrapper-clause-scope +205477 modifier-scope +205480 modifier-scope +conjuncted-wg +modifier-scope +205484 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +205491 conjuncted-wg +conjuncted-wg +205494 wrapper-clause-scope +205498 modifier-clause-scope +wrapper-clause-scope +205501 wrapper-scope +conjuncted-wg +205508 group +modifier-scope +205514 wrapper-clause-scope +205516 modifier-clause-scope +group +wrapper-clause-scope +205520 wrapper-scope +205522 wrapper-clause-scope +group +wrapper-clause-scope +205529 wrapper-scope +modifier-scope +conjuncted-wg +205534 wrapper-clause-scope +205538 wrapper-clause-scope +205541 group +modifier-scope +205544 group +205546 group +205548 wrapper-clause-scope +205550 wrapper-clause-scope +205552 wrapper-clause-scope +205555 wrapper-clause-scope +205557 modifier-clause-scope +apposition-group +205563 modifier-scope +wrapper-scope +205566 wrapper-clause-scope +205569 group +205571 conjuncted-wg +205574 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +205579 modifier-scope +modifier-scope +modifier-scope +modifier-scope +205584 wrapper-clause-scope +205586 modifier-scope +205588 wrapper-clause-scope +205590 modifier-scope +modifier-scope +205593 modifier-scope +wrapper-scope +modifier-scope +205598 modifier-clause-scope +apposition-group +205601 modifier-scope +wrapper-clause-scope +205605 wrapper-clause-scope +205609 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +205619 conjuncted-wg +group +205622 wrapper-scope +wrapper-clause-scope +205625 modifier-clause-scope +modifier-clause-scope +apposition-group +205629 modifier-scope +modifier-scope +modifier-scope +205633 wrapper-clause-scope +205635 wrapper-clause-scope +205637 modifier-scope +wrapper-clause-scope +205641 modifier-scope +wrapper-scope +modifier-scope +205645 wrapper-clause-scope +205647 modifier-scope +205649 group +conjuncted-wg +modifier-scope +205653 wrapper-clause-scope +205657 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +205662 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +205669 modifier-scope +wrapper-scope +modifier-scope +205673 wrapper-clause-scope +205677 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +205686 modifier-scope +conjuncted-wg +205689 modifier-scope +205691 wrapper-clause-scope +205693 modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +205699 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +205709 wrapper-clause-scope +205713 modifier-scope +conjuncted-wg +modifier-scope +205717 wrapper-clause-scope +205719 conjuncted-wg +205722 wrapper-clause-scope +205724 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +205729 conjuncted-wg +205731 wrapper-clause-scope +205733 modifier-scope +modifier-scope +205736 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +205746 modifier-scope +205751 wrapper-scope +conjuncted-wg +wrapper-scope +apposition-group +modifier-scope +205757 modifier-scope +modifier-scope +conjuncted-wg +205761 wrapper-scope +205766 wrapper-clause-scope +205773 wrapper-clause-scope +205776 modifier-clause-scope +modifier-clause-scope +205779 modifier-scope +modifier-scope +205783 modifier-scope +205787 group +wrapper-clause-scope +205791 wrapper-scope +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +205799 wrapper-clause-scope +205801 modifier-scope +205803 wrapper-scope +group +modifier-scope +205807 wrapper-clause-scope +205809 group +wrapper-scope +205812 conjuncted-wg +205814 wrapper-clause-scope +205816 wrapper-clause-scope +205818 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +205825 conjuncted-wg +205830 modifier-clause-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +205837 modifier-clause-scope +205839 modifier-scope +wrapper-clause-scope +205843 wrapper-scope +modifier-scope +wrapper-scope +205847 wrapper-clause-scope +205850 wrapper-clause-scope +205853 wrapper-clause-scope +205855 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +205861 wrapper-clause-scope +205864 wrapper-clause-scope +205866 wrapper-scope +modifier-scope +wrapper-clause-scope +205871 conjuncted-wg +205873 modifier-scope +205875 wrapper-clause-scope +205878 modifier-scope +wrapper-scope +conjuncted-wg +205883 modifier-scope +modifier-scope +modifier-scope +modifier-scope +205890 conjuncted-wg +205892 group +wrapper-clause-scope +205895 wrapper-scope +wrapper-clause-scope +205899 wrapper-clause-scope +205901 modifier-scope +205904 conjuncted-wg +205906 wrapper-scope +modifier-scope +modifier-scope +205911 modifier-scope +205915 wrapper-clause-scope +205917 modifier-scope +modifier-scope +modifier-scope +205923 modifier-scope +205926 wrapper-clause-scope +205929 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +205935 modifier-scope +conjuncted-wg +205939 modifier-scope +modifier-scope +modifier-scope +205946 wrapper-scope +conjuncted-wg +205949 wrapper-scope +205952 modifier-scope +group +wrapper-clause-scope +205956 group +205959 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +205967 group +205969 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +205977 wrapper-clause-scope +205979 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +205986 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +205991 modifier-scope +conjuncted-wg +205994 modifier-scope +modifier-scope +modifier-scope +205998 wrapper-clause-scope +206000 modifier-scope +wrapper-clause-scope +206005 modifier-scope +group +206008 wrapper-clause-scope +206010 group +group +206014 wrapper-scope +conjuncted-wg +206017 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +206022 modifier-scope +206024 modifier-clause-scope +wrapper-clause-scope +206027 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +206033 modifier-scope +206036 wrapper-clause-scope +206040 wrapper-scope +modifier-scope +conjuncted-wg +206045 wrapper-scope +206047 wrapper-clause-scope +206049 wrapper-clause-scope +206051 wrapper-scope +modifier-scope +wrapper-clause-scope +206056 modifier-scope +modifier-scope +modifier-scope +206060 wrapper-clause-scope +206063 group +206066 modifier-scope +206068 wrapper-clause-scope +206070 modifier-scope +206072 wrapper-clause-scope +206075 modifier-scope +modifier-scope +conjuncted-wg +206080 wrapper-clause-scope +206084 modifier-scope +206086 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +206091 modifier-scope +conjuncted-wg +206095 wrapper-scope +conjuncted-wg +206100 modifier-scope +modifier-scope +modifier-scope +206104 wrapper-clause-scope +206107 wrapper-clause-scope +206110 modifier-scope +conjuncted-wg +206115 wrapper-clause-scope +206117 wrapper-clause-scope +206119 modifier-scope +wrapper-scope +206122 wrapper-clause-scope +206124 modifier-scope +206127 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +206133 wrapper-clause-scope +206135 group +206138 modifier-scope +206140 wrapper-clause-scope +group +wrapper-clause-scope +206145 modifier-scope +conjuncted-wg +modifier-scope +206150 group +206155 modifier-scope +group +206159 conjuncted-wg +206161 wrapper-clause-scope +206163 wrapper-scope +206166 modifier-scope +206169 conjuncted-wg +206171 wrapper-scope +modifier-scope +206174 wrapper-clause-scope +206176 modifier-scope +206178 wrapper-clause-scope +group +wrapper-clause-scope +206182 modifier-scope +modifier-scope +modifier-scope +206187 conjuncted-wg +206190 wrapper-scope +modifier-scope +conjuncted-wg +206194 modifier-scope +206197 wrapper-clause-scope +206199 modifier-scope +206201 wrapper-clause-scope +206203 modifier-scope +group +wrapper-clause-scope +206207 wrapper-clause-scope +206209 wrapper-clause-scope +206213 conjuncted-wg +206218 group +206220 modifier-scope +wrapper-scope +wrapper-clause-scope +206224 wrapper-scope +206226 wrapper-scope +wrapper-clause-scope +206229 modifier-scope +206232 wrapper-scope +modifier-scope +206236 wrapper-clause-scope +206238 modifier-scope +206240 group +group +wrapper-clause-scope +206245 modifier-scope +modifier-scope +206248 modifier-clause-scope +wrapper-clause-scope +206251 modifier-scope +206253 wrapper-clause-scope +206256 modifier-scope +206258 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +206263 wrapper-scope +wrapper-scope +modifier-clause-scope +206268 conjuncted-wg +206271 wrapper-clause-scope +group +206274 modifier-scope +modifier-scope +206277 wrapper-scope +206279 wrapper-clause-scope +206281 modifier-scope +group +206285 modifier-scope +modifier-scope +206288 wrapper-clause-scope +206290 group +group +206297 modifier-scope +206299 modifier-scope +modifier-scope +206303 modifier-scope +group +206306 wrapper-clause-scope +206309 wrapper-clause-scope +206311 wrapper-clause-scope +206314 wrapper-clause-scope +206316 modifier-scope +206318 wrapper-clause-scope +206321 modifier-scope +wrapper-scope +wrapper-clause-scope +206325 apposition-group +apposition-group +modifier-scope +206331 conjuncted-wg +206334 wrapper-scope +modifier-scope +206337 conjuncted-wg +conjuncted-wg +206340 modifier-scope +206342 wrapper-clause-scope +206345 modifier-scope +modifier-scope +conjuncted-wg +206349 wrapper-scope +modifier-scope +206352 wrapper-clause-scope +206354 wrapper-scope +206356 group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +206363 wrapper-clause-scope +206365 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +206371 group +206373 wrapper-scope +modifier-scope +modifier-scope +206377 modifier-scope +conjuncted-wg +206380 wrapper-scope +group +206383 wrapper-clause-scope +206385 modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +206392 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +206398 modifier-scope +modifier-scope +206402 modifier-scope +206406 wrapper-clause-scope +206408 wrapper-clause-scope +206410 modifier-scope +modifier-scope +206414 modifier-scope +modifier-scope +conjuncted-wg +group +206419 modifier-scope +206421 modifier-scope +conjuncted-wg +206424 modifier-scope +206426 wrapper-clause-scope +group +206429 modifier-scope +206431 wrapper-scope +modifier-scope +wrapper-scope +206435 wrapper-clause-scope +group +206438 wrapper-scope +group +206442 wrapper-scope +206444 wrapper-clause-scope +206446 modifier-scope +206449 modifier-scope +modifier-scope +conjuncted-wg +206453 wrapper-scope +modifier-scope +modifier-scope +206457 wrapper-clause-scope +206459 conjuncted-wg +206461 modifier-scope +conjuncted-wg +206464 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +206470 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +206478 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +206485 wrapper-clause-scope +206490 modifier-scope +conjuncted-wg +modifier-scope +206494 modifier-scope +206499 modifier-scope +modifier-scope +206503 modifier-scope +group +206507 modifier-scope +modifier-scope +206510 wrapper-clause-scope +206512 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +206520 wrapper-scope +modifier-scope +206523 wrapper-clause-scope +206525 wrapper-clause-scope +206527 modifier-scope +206531 modifier-scope +modifier-scope +206534 wrapper-clause-scope +206537 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +206543 wrapper-clause-scope +group +wrapper-clause-scope +206547 modifier-scope +206549 modifier-scope +206552 wrapper-clause-scope +206555 modifier-scope +modifier-scope +206558 wrapper-clause-scope +206560 modifier-scope +wrapper-clause-scope +206563 wrapper-clause-scope +group +206566 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +206573 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +206581 modifier-scope +modifier-scope +conjuncted-wg +206586 wrapper-clause-scope +206589 modifier-scope +conjuncted-wg +206592 conjuncted-wg +206594 modifier-clause-scope +modifier-clause-scope +206597 modifier-scope +conjuncted-wg +group +modifier-scope +wrapper-clause-scope +206603 conjuncted-wg +206606 wrapper-scope +modifier-scope +wrapper-clause-scope +206612 modifier-scope +modifier-scope +206616 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +206623 conjuncted-wg +206625 wrapper-clause-scope +group +206629 wrapper-clause-scope +206631 conjuncted-wg +206633 modifier-scope +modifier-scope +conjuncted-wg +206637 wrapper-clause-scope +206639 wrapper-clause-scope +206641 modifier-scope +206643 wrapper-clause-scope +group +206646 wrapper-clause-scope +206648 modifier-scope +206650 modifier-scope +206652 wrapper-clause-scope +206654 modifier-scope +206656 wrapper-scope +206659 wrapper-clause-scope +206661 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +206667 modifier-scope +modifier-scope +conjuncted-wg +206671 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +206677 modifier-scope +modifier-scope +modifier-scope +206681 wrapper-clause-scope +206683 modifier-scope +206685 wrapper-clause-scope +206688 conjuncted-wg +206690 modifier-scope +modifier-scope +206693 wrapper-clause-scope +206695 modifier-clause-scope +group +wrapper-clause-scope +206699 wrapper-scope +modifier-scope +206702 modifier-scope +206704 conjuncted-wg +modifier-scope +modifier-scope +206708 wrapper-clause-scope +206711 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +206716 wrapper-scope +modifier-scope +wrapper-clause-scope +206720 modifier-scope +206723 wrapper-clause-scope +206726 wrapper-scope +modifier-clause-scope +apposition-group +206730 conjuncted-wg +206732 wrapper-scope +modifier-scope +apposition-group +modifier-scope +206737 wrapper-scope +wrapper-scope +206740 wrapper-clause-scope +206742 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +206748 modifier-scope +modifier-scope +206751 wrapper-clause-scope +206753 group +206755 modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +206763 conjuncted-wg +206766 modifier-scope +wrapper-scope +modifier-scope +206770 wrapper-clause-scope +206774 conjuncted-wg +206777 wrapper-scope +group +conjuncted-wg +wrapper-scope +apposition-group +modifier-scope +modifier-scope +206785 modifier-scope +conjuncted-wg +206790 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +206797 wrapper-clause-scope +206801 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +206807 wrapper-scope +modifier-scope +206810 wrapper-clause-scope +206812 modifier-scope +206814 wrapper-clause-scope +206818 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +206823 wrapper-scope +modifier-scope +conjuncted-wg +206830 modifier-scope +conjuncted-wg +206834 wrapper-clause-scope +206837 modifier-scope +group +206840 conjuncted-wg +206842 wrapper-scope +modifier-scope +206845 wrapper-clause-scope +206849 modifier-scope +conjuncted-wg +206853 modifier-clause-scope +apposition-group +206856 wrapper-scope +modifier-scope +modifier-scope +206860 wrapper-scope +modifier-scope +206863 wrapper-scope +modifier-scope +206866 wrapper-clause-scope +206869 modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +206875 wrapper-scope +modifier-scope +conjuncted-wg +206880 conjuncted-wg +206883 wrapper-clause-scope +206885 modifier-scope +wrapper-clause-scope +206889 wrapper-scope +206891 wrapper-clause-scope +206893 wrapper-scope +modifier-scope +206896 wrapper-clause-scope +206898 wrapper-scope +modifier-scope +206902 wrapper-clause-scope +206904 wrapper-clause-scope +206907 wrapper-scope +modifier-scope +conjuncted-wg +206912 modifier-scope +modifier-scope +wrapper-scope +206916 modifier-scope +modifier-scope +modifier-scope +206921 wrapper-scope +modifier-scope +conjuncted-wg +206925 wrapper-scope +modifier-scope +206928 wrapper-clause-scope +206934 wrapper-clause-scope +206937 modifier-scope +modifier-scope +conjuncted-wg +206946 wrapper-scope +modifier-scope +conjuncted-wg +206952 modifier-scope +conjuncted-wg +206955 wrapper-clause-scope +206966 wrapper-clause-scope +206968 modifier-scope +group +206972 wrapper-clause-scope +206984 apposition-group +206990 group +206992 wrapper-clause-scope +206994 wrapper-scope +modifier-scope +conjuncted-wg +206999 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +207005 wrapper-scope +modifier-scope +207009 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +207014 modifier-scope +conjuncted-wg +modifier-scope +207019 group +modifier-scope +207022 modifier-scope +wrapper-clause-scope +207026 modifier-scope +conjuncted-wg +207030 wrapper-clause-scope +group +207034 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +207041 modifier-scope +207043 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +207050 modifier-scope +conjuncted-wg +207054 wrapper-scope +modifier-scope +conjuncted-wg +207060 wrapper-clause-scope +207064 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +207069 wrapper-clause-scope +207071 modifier-scope +207073 modifier-scope +207075 wrapper-clause-scope +207077 modifier-scope +group +207080 group +wrapper-clause-scope +207083 modifier-scope +207086 wrapper-clause-scope +207090 conjuncted-wg +207093 modifier-scope +207095 group +207097 wrapper-clause-scope +207099 modifier-scope +modifier-scope +207102 wrapper-clause-scope +207105 wrapper-clause-scope +207107 group +group +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +207114 wrapper-scope +wrapper-clause-scope +207118 wrapper-clause-scope +207121 modifier-scope +modifier-scope +207124 modifier-scope +conjuncted-wg +207127 group +wrapper-clause-scope +207131 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +207139 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +207147 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +207153 modifier-scope +207155 wrapper-clause-scope +207158 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +207164 wrapper-scope +207167 group +207169 modifier-scope +207171 modifier-scope +conjuncted-wg +207175 wrapper-scope +modifier-scope +conjuncted-wg +207182 modifier-scope +207187 modifier-scope +modifier-scope +conjuncted-wg +207191 modifier-scope +modifier-scope +conjuncted-wg +207196 modifier-scope +modifier-scope +conjuncted-wg +207200 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +207210 conjuncted-wg +207214 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +207221 modifier-scope +group +group +wrapper-clause-scope +207228 wrapper-clause-scope +207231 conjuncted-wg +207234 wrapper-clause-scope +207236 conjuncted-wg +207238 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +207245 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +207252 wrapper-clause-scope +207254 wrapper-clause-scope +207256 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +207265 wrapper-scope +modifier-scope +modifier-scope +207270 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +207277 wrapper-clause-scope +207282 group +conjuncted-wg +group +wrapper-clause-scope +207287 conjuncted-wg +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +207304 group +207310 modifier-scope +wrapper-scope +207316 conjuncted-wg +207318 wrapper-scope +modifier-scope +conjuncted-wg +207322 wrapper-scope +modifier-scope +modifier-scope +207326 wrapper-clause-scope +group +207330 wrapper-scope +modifier-scope +207333 wrapper-clause-scope +207335 modifier-scope +wrapper-clause-scope +207339 wrapper-clause-scope +207344 modifier-scope +207349 wrapper-clause-scope +207353 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +207362 wrapper-clause-scope +207365 conjuncted-wg +207368 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +207373 wrapper-clause-scope +207375 apposition-group +modifier-scope +modifier-scope +207379 modifier-scope +modifier-scope +207382 modifier-scope +207384 wrapper-clause-scope +207387 group +207389 wrapper-clause-scope +207391 modifier-scope +modifier-scope +wrapper-clause-scope +207395 conjuncted-wg +207397 wrapper-scope +modifier-scope +207400 wrapper-clause-scope +207403 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +207409 wrapper-scope +modifier-scope +207412 modifier-scope +wrapper-scope +modifier-scope +207416 modifier-scope +modifier-scope +modifier-scope +207420 wrapper-clause-scope +207422 wrapper-clause-scope +207424 wrapper-scope +modifier-scope +207428 conjuncted-wg +207430 conjuncted-wg +207434 modifier-scope +207436 wrapper-scope +modifier-clause-scope +apposition-group +207443 group +conjuncted-wg +207446 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +207454 wrapper-clause-scope +group +207458 modifier-scope +207461 modifier-scope +group +207467 modifier-scope +modifier-scope +207472 wrapper-clause-scope +207474 modifier-scope +207478 conjuncted-wg +207482 modifier-scope +conjuncted-wg +207485 conjuncted-wg +207487 modifier-scope +207490 apposition-group +207492 modifier-scope +207494 wrapper-scope +207496 wrapper-clause-scope +group +wrapper-clause-scope +207501 modifier-scope +group +modifier-scope +207506 modifier-scope +modifier-scope +207513 wrapper-clause-scope +207518 modifier-scope +modifier-scope +207524 modifier-scope +207530 wrapper-clause-scope +207535 modifier-scope +modifier-scope +207539 modifier-scope +207542 modifier-scope +207544 group +207546 modifier-scope +wrapper-clause-scope +207549 modifier-scope +207552 wrapper-clause-scope +207557 wrapper-clause-scope +207562 modifier-scope +modifier-scope +207565 wrapper-clause-scope +wrapper-clause-scope +207570 wrapper-clause-scope +207573 conjuncted-wg +207576 conjuncted-wg +207578 wrapper-clause-scope +207581 modifier-scope +modifier-scope +conjuncted-wg +207585 conjuncted-wg +207589 wrapper-clause-scope +207593 modifier-scope +modifier-scope +207596 wrapper-clause-scope +207603 modifier-scope +group +207606 modifier-clause-scope +apposition-group +207609 modifier-scope +207612 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +207621 wrapper-clause-scope +207624 wrapper-clause-scope +207627 modifier-scope +modifier-scope +207634 modifier-scope +group +207637 wrapper-clause-scope +207640 wrapper-clause-scope +207642 wrapper-scope +207645 wrapper-clause-scope +207647 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +207653 modifier-scope +modifier-scope +207656 wrapper-clause-scope +group +207659 modifier-scope +wrapper-clause-scope +207662 group +wrapper-clause-scope +207666 wrapper-clause-scope +207669 wrapper-scope +207673 group +modifier-scope +207676 wrapper-clause-scope +207678 wrapper-scope +conjuncted-wg +wrapper-clause-scope +207682 conjuncted-wg +207684 wrapper-clause-scope +207686 modifier-scope +modifier-scope +207689 wrapper-clause-scope +group +207692 modifier-clause-scope +apposition-group +modifier-scope +207696 modifier-scope +group +wrapper-clause-scope +207700 wrapper-scope +207703 modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +207713 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +207720 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +207726 modifier-scope +207728 modifier-clause-scope +apposition-group +207731 wrapper-scope +modifier-scope +207734 wrapper-scope +wrapper-clause-scope +207737 wrapper-scope +modifier-scope +207741 wrapper-scope +modifier-scope +conjuncted-wg +207745 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +207751 wrapper-clause-scope +207756 wrapper-scope +conjuncted-wg +207759 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +207764 wrapper-clause-scope +207766 conjuncted-wg +207768 conjuncted-wg +207770 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +207777 wrapper-clause-scope +wrapper-clause-scope +207785 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +207792 wrapper-scope +207795 apposition-group +207797 conjuncted-wg +207799 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +207804 wrapper-clause-scope +207806 group +207809 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +207814 modifier-scope +207817 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +207824 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +207830 wrapper-clause-scope +207835 conjuncted-wg +207837 wrapper-scope +modifier-scope +modifier-scope +207841 wrapper-clause-scope +group +wrapper-clause-scope +group +207846 wrapper-scope +wrapper-scope +modifier-scope +207850 wrapper-clause-scope +207853 modifier-scope +wrapper-scope +modifier-scope +207857 group +group +207863 wrapper-scope +modifier-scope +207866 group +modifier-scope +modifier-scope +wrapper-clause-scope +207871 wrapper-scope +wrapper-scope +modifier-scope +207875 modifier-scope +207877 wrapper-scope +modifier-scope +207881 wrapper-scope +wrapper-scope +apposition-group +group +wrapper-clause-scope +207888 wrapper-scope +207890 modifier-scope +207892 wrapper-clause-scope +207894 wrapper-clause-scope +207897 wrapper-scope +modifier-scope +207900 wrapper-scope +group +207903 conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +207909 conjuncted-wg +207911 conjuncted-wg +207913 modifier-scope +conjuncted-wg +group +modifier-scope +conjuncted-wg +modifier-scope +207921 modifier-scope +wrapper-scope +modifier-scope +207925 wrapper-scope +207927 conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +207937 wrapper-clause-scope +group +207941 wrapper-scope +modifier-scope +modifier-scope +207945 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +207950 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +group +group +207962 modifier-clause-scope +apposition-group +207965 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +207974 wrapper-clause-scope +207976 wrapper-clause-scope +207979 wrapper-scope +wrapper-scope +conjuncted-wg +207983 modifier-scope +modifier-scope +modifier-scope +modifier-scope +207988 wrapper-clause-scope +wrapper-clause-scope +207992 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +207999 conjuncted-wg +208001 modifier-scope +modifier-scope +modifier-scope +208005 wrapper-clause-scope +208007 modifier-clause-scope +wrapper-clause-scope +208010 wrapper-clause-scope +208012 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +208019 modifier-scope +208021 wrapper-clause-scope +208023 wrapper-scope +modifier-scope +208028 modifier-scope +modifier-scope +conjuncted-wg +208032 wrapper-clause-scope +208034 wrapper-scope +conjuncted-wg +208037 modifier-scope +modifier-scope +208040 wrapper-clause-scope +208044 modifier-clause-scope +modifier-clause-scope +208047 wrapper-scope +modifier-clause-scope +apposition-group +208052 conjuncted-wg +wrapper-scope +group +modifier-scope +208057 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +208064 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +208071 wrapper-clause-scope +208073 group +208075 apposition-group +group +wrapper-clause-scope +208080 conjuncted-wg +208082 wrapper-clause-scope +208087 group +modifier-scope +apposition-group +208091 wrapper-scope +modifier-scope +modifier-scope +208095 modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +208100 modifier-scope +conjuncted-wg +208103 wrapper-scope +208105 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +208110 wrapper-clause-scope +208114 conjuncted-wg +208116 modifier-scope +wrapper-scope +conjuncted-wg +208120 wrapper-scope +modifier-scope +modifier-scope +208124 wrapper-clause-scope +208126 wrapper-scope +wrapper-clause-scope +208129 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +208135 wrapper-clause-scope +208138 wrapper-scope +modifier-scope +wrapper-clause-scope +208142 modifier-scope +conjuncted-wg +208145 apposition-group +modifier-scope +modifier-scope +208149 wrapper-scope +208151 wrapper-clause-scope +208156 wrapper-clause-scope +208158 conjuncted-wg +208160 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +208166 modifier-scope +conjuncted-wg +208170 modifier-scope +wrapper-clause-scope +208173 modifier-scope +208176 wrapper-clause-scope +208178 wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +208190 wrapper-clause-scope +group +group +208194 modifier-scope +modifier-scope +208198 modifier-scope +conjuncted-wg +208201 wrapper-clause-scope +208203 modifier-scope +208205 modifier-scope +modifier-scope +208208 wrapper-clause-scope +208211 conjuncted-wg +208216 modifier-clause-scope +group +wrapper-clause-scope +208221 wrapper-clause-scope +208223 apposition-group +modifier-scope +modifier-scope +modifier-scope +208228 wrapper-scope +208233 conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-clause-scope +208238 group +modifier-scope +208241 conjuncted-wg +conjuncted-wg +208244 conjuncted-wg +modifier-scope +208247 conjuncted-wg +conjuncted-wg +208250 conjuncted-wg +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +group +modifier-clause-scope +modifier-clause-scope +208264 conjuncted-wg +conjuncted-wg +208267 conjuncted-wg +208269 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +208275 wrapper-clause-scope +208278 conjuncted-wg +208281 modifier-scope +wrapper-scope +208286 wrapper-clause-scope +208289 wrapper-clause-scope +208291 wrapper-scope +208293 wrapper-clause-scope +208297 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +208307 modifier-scope +conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +208313 conjuncted-wg +208315 modifier-scope +modifier-scope +208318 wrapper-clause-scope +group +group +group +wrapper-clause-scope +208325 wrapper-clause-scope +208327 modifier-scope +modifier-scope +modifier-scope +208331 wrapper-clause-scope +208333 wrapper-scope +group +modifier-scope +group +group +wrapper-clause-scope +208340 wrapper-scope +modifier-scope +modifier-scope +208344 modifier-scope +208347 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +208356 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +208363 modifier-scope +modifier-scope +conjuncted-wg +208367 modifier-scope +modifier-scope +208372 modifier-scope +208374 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +208390 wrapper-clause-scope +group +208394 wrapper-scope +modifier-scope +conjuncted-wg +208398 wrapper-scope +modifier-scope +208402 conjuncted-wg +conjuncted-wg +modifier-scope +208408 modifier-scope +wrapper-scope +conjuncted-wg +208412 modifier-scope +wrapper-scope +wrapper-clause-scope +208416 modifier-scope +modifier-scope +modifier-scope +208420 conjuncted-wg +208422 wrapper-clause-scope +208425 modifier-clause-scope +wrapper-clause-scope +208428 modifier-scope +modifier-scope +208431 group +group +208436 modifier-scope +modifier-scope +208441 group +group +modifier-scope +modifier-clause-scope +208446 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +208451 conjuncted-wg +conjuncted-wg +208455 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +208460 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +208464 modifier-clause-scope +208466 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +208474 modifier-scope +208476 modifier-scope +modifier-scope +modifier-scope +208481 wrapper-scope +208483 wrapper-clause-scope +208485 wrapper-scope +group +208488 modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +208493 wrapper-scope +modifier-scope +wrapper-clause-scope +208498 group +208502 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +208507 modifier-scope +modifier-scope +conjuncted-wg +208511 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +208518 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +208524 modifier-scope +modifier-scope +208528 modifier-scope +208530 wrapper-scope +modifier-scope +modifier-scope +208534 group +group +208541 wrapper-scope +wrapper-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +208550 conjuncted-wg +conjuncted-wg +conjuncted-wg +208554 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +208561 wrapper-clause-scope +208565 conjuncted-wg +208567 wrapper-clause-scope +208569 modifier-scope +208571 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +208579 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +208585 conjuncted-wg +208587 wrapper-scope +conjuncted-wg +208590 modifier-scope +modifier-scope +208595 modifier-scope +modifier-scope +modifier-scope +modifier-scope +208600 wrapper-clause-scope +208604 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +208609 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +apposition-group +208619 conjuncted-wg +conjuncted-wg +208622 wrapper-clause-scope +208625 wrapper-scope +modifier-scope +conjuncted-wg +208630 modifier-scope +modifier-scope +group +208634 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +208639 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +208645 wrapper-clause-scope +208647 modifier-scope +modifier-scope +wrapper-clause-scope +208652 conjuncted-wg +conjuncted-wg +modifier-scope +group +modifier-clause-scope +modifier-clause-scope +apposition-group +208661 wrapper-clause-scope +208665 modifier-scope +conjuncted-wg +208668 wrapper-scope +208670 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +208676 group +208680 wrapper-clause-scope +group +208683 wrapper-scope +208687 conjuncted-wg +208689 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +208700 modifier-scope +modifier-scope +modifier-scope +modifier-scope +208705 wrapper-clause-scope +208708 modifier-scope +conjuncted-wg +208712 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +modifier-scope +wrapper-scope +wrapper-clause-scope +208721 group +modifier-scope +modifier-scope +208726 conjuncted-wg +208728 modifier-scope +modifier-scope +conjuncted-wg +208734 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +208740 wrapper-clause-scope +wrapper-clause-scope +208744 wrapper-clause-scope +208746 modifier-scope +modifier-scope +conjuncted-wg +208750 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +208756 wrapper-clause-scope +208758 wrapper-scope +group +208761 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +208767 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +208773 wrapper-clause-scope +208776 modifier-scope +conjuncted-wg +208779 modifier-scope +208781 conjuncted-wg +wrapper-scope +modifier-scope +208785 wrapper-clause-scope +208788 modifier-clause-scope +wrapper-clause-scope +208791 wrapper-scope +modifier-scope +conjuncted-wg +208797 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +208802 wrapper-clause-scope +wrapper-clause-scope +208806 wrapper-clause-scope +208810 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +208815 wrapper-scope +wrapper-scope +208818 conjuncted-wg +modifier-scope +208822 modifier-scope +conjuncted-wg +208825 wrapper-scope +modifier-scope +modifier-scope +208829 wrapper-clause-scope +208831 modifier-scope +wrapper-clause-scope +208834 wrapper-scope +wrapper-scope +modifier-scope +208838 wrapper-clause-scope +208841 conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +208851 wrapper-clause-scope +208854 modifier-clause-scope +modifier-clause-scope +208857 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +208868 wrapper-clause-scope +208870 wrapper-scope +wrapper-clause-scope +208873 wrapper-scope +modifier-scope +208879 conjuncted-wg +208881 wrapper-scope +modifier-scope +208885 wrapper-clause-scope +208888 wrapper-scope +wrapper-scope +modifier-scope +208892 wrapper-scope +208894 wrapper-clause-scope +208898 wrapper-scope +208900 wrapper-clause-scope +208902 group +208906 conjuncted-wg +conjuncted-wg +208911 wrapper-scope +modifier-scope +modifier-scope +group +group +modifier-scope +208918 wrapper-clause-scope +208921 modifier-scope +modifier-scope +208924 wrapper-clause-scope +208928 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +208937 conjuncted-wg +208939 conjuncted-wg +208941 wrapper-scope +wrapper-scope +modifier-scope +208946 conjuncted-wg +208948 conjuncted-wg +208950 modifier-scope +208952 wrapper-clause-scope +208956 modifier-scope +modifier-scope +208960 conjuncted-wg +208962 modifier-scope +conjuncted-wg +208965 wrapper-clause-scope +208967 wrapper-clause-scope +208969 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +208979 conjuncted-wg +wrapper-scope +wrapper-clause-scope +208984 wrapper-clause-scope +group +208988 modifier-scope +conjuncted-wg +modifier-scope +208992 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +209001 wrapper-clause-scope +209004 modifier-scope +wrapper-scope +modifier-scope +group +group +209013 wrapper-scope +conjuncted-wg +209016 wrapper-clause-scope +209018 modifier-scope +209020 conjuncted-wg +wrapper-clause-scope +209025 group +modifier-scope +modifier-scope +209029 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +group +modifier-scope +modifier-scope +wrapper-clause-scope +209042 conjuncted-wg +209044 wrapper-scope +modifier-scope +209049 wrapper-clause-scope +209053 modifier-scope +209055 conjuncted-wg +conjuncted-wg +209059 group +conjuncted-wg +209063 modifier-scope +modifier-scope +modifier-scope +209067 modifier-scope +wrapper-scope +209070 wrapper-clause-scope +209073 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +209081 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +209086 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +209095 wrapper-clause-scope +209098 wrapper-clause-scope +209100 wrapper-scope +wrapper-clause-scope +209103 modifier-scope +modifier-scope +modifier-scope +209107 wrapper-clause-scope +209109 modifier-scope +apposition-group +209112 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209117 modifier-scope +modifier-scope +209120 wrapper-clause-scope +209123 conjuncted-wg +wrapper-scope +wrapper-clause-scope +209127 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +209133 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +209139 apposition-group +group +modifier-clause-scope +modifier-clause-scope +209145 wrapper-clause-scope +209147 wrapper-scope +apposition-group +modifier-scope +modifier-scope +209152 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +209161 wrapper-clause-scope +209163 wrapper-clause-scope +209165 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +209174 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +209178 wrapper-scope +209180 wrapper-clause-scope +209183 modifier-clause-scope +apposition-group +wrapper-clause-scope +209187 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +209192 wrapper-clause-scope +209194 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +209201 conjuncted-wg +modifier-scope +209204 modifier-scope +modifier-scope +209208 modifier-clause-scope +modifier-clause-scope +209211 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +209216 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +209221 wrapper-scope +wrapper-clause-scope +209224 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +209233 modifier-scope +209235 modifier-scope +modifier-scope +209238 wrapper-scope +wrapper-clause-scope +209241 wrapper-scope +modifier-scope +modifier-scope +209245 wrapper-clause-scope +209249 wrapper-scope +modifier-scope +209252 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +209260 wrapper-scope +wrapper-clause-scope +209264 modifier-scope +conjuncted-wg +209267 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +209276 modifier-scope +conjuncted-wg +group +209280 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +209286 wrapper-clause-scope +209289 modifier-clause-scope +wrapper-clause-scope +209292 modifier-scope +conjuncted-wg +209295 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +209300 wrapper-clause-scope +209304 wrapper-scope +modifier-scope +209307 modifier-scope +209309 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +209318 group +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +209325 wrapper-scope +modifier-scope +conjuncted-wg +209330 wrapper-scope +modifier-scope +209334 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +209342 modifier-scope +wrapper-scope +209347 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +group +209353 wrapper-scope +modifier-scope +modifier-scope +209357 wrapper-scope +209360 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +209368 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +apposition-group +group +group +modifier-scope +209378 modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +209384 group +group +modifier-scope +wrapper-clause-scope +209389 wrapper-scope +group +modifier-scope +wrapper-clause-scope +209394 wrapper-scope +modifier-scope +209397 wrapper-clause-scope +group +209400 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +209405 wrapper-scope +modifier-scope +apposition-group +group +modifier-scope +wrapper-clause-scope +209412 wrapper-scope +209414 wrapper-scope +209417 wrapper-clause-scope +209422 modifier-scope +modifier-scope +209425 modifier-scope +conjuncted-wg +conjuncted-wg +209429 wrapper-clause-scope +209432 modifier-scope +conjuncted-wg +209435 conjuncted-wg +209437 wrapper-clause-scope +209439 wrapper-scope +modifier-scope +209442 wrapper-clause-scope +209446 group +modifier-scope +wrapper-clause-scope +209450 wrapper-scope +209453 wrapper-clause-scope +209457 wrapper-scope +modifier-scope +wrapper-scope +209462 modifier-scope +modifier-scope +209465 wrapper-clause-scope +wrapper-clause-scope +209469 wrapper-clause-scope +209471 modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +209476 conjuncted-wg +209480 wrapper-clause-scope +group +wrapper-clause-scope +209484 wrapper-scope +wrapper-scope +modifier-scope +209489 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209494 wrapper-clause-scope +209499 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209505 wrapper-clause-scope +209507 modifier-scope +209509 conjuncted-wg +209511 wrapper-scope +group +group +wrapper-clause-scope +209516 wrapper-scope +modifier-scope +209520 conjuncted-wg +209522 modifier-scope +209524 wrapper-clause-scope +209529 conjuncted-wg +209531 wrapper-clause-scope +209535 wrapper-clause-scope +209537 wrapper-scope +modifier-scope +wrapper-clause-scope +209541 modifier-scope +wrapper-scope +wrapper-clause-scope +209546 wrapper-clause-scope +209548 modifier-scope +modifier-scope +apposition-group +modifier-scope +209553 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +209559 wrapper-clause-scope +209563 wrapper-scope +modifier-scope +conjuncted-wg +209568 wrapper-scope +209570 modifier-scope +conjuncted-wg +modifier-scope +209574 wrapper-clause-scope +209578 wrapper-scope +modifier-scope +conjuncted-wg +209584 group +wrapper-clause-scope +209588 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +209599 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +group +209609 wrapper-scope +conjuncted-wg +209614 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +209619 modifier-scope +wrapper-scope +modifier-scope +209623 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +209630 wrapper-clause-scope +209632 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +modifier-scope +209644 conjuncted-wg +conjuncted-wg +group +wrapper-scope +209649 conjuncted-wg +modifier-scope +209655 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +209660 wrapper-clause-scope +209664 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +209670 modifier-scope +modifier-scope +209673 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +209681 modifier-scope +wrapper-scope +conjuncted-wg +209686 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +209695 wrapper-clause-scope +209699 apposition-group +modifier-scope +209702 wrapper-scope +wrapper-scope +conjuncted-wg +209707 modifier-scope +modifier-scope +conjuncted-wg +209711 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +209716 wrapper-clause-scope +209719 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +209725 conjuncted-wg +conjuncted-wg +group +209730 modifier-clause-scope +wrapper-clause-scope +209735 wrapper-clause-scope +209738 modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +209748 modifier-scope +wrapper-scope +modifier-scope +209752 wrapper-clause-scope +209754 modifier-scope +wrapper-scope +209757 wrapper-clause-scope +209761 modifier-scope +209763 conjuncted-wg +209765 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +209769 conjuncted-wg +209771 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209776 wrapper-clause-scope +209778 wrapper-clause-scope +wrapper-clause-scope +209782 wrapper-clause-scope +209785 group +group +group +wrapper-clause-scope +209790 wrapper-scope +modifier-scope +209793 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +209801 modifier-scope +conjuncted-wg +209804 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209809 wrapper-clause-scope +209813 modifier-clause-scope +modifier-scope +209816 wrapper-scope +group +modifier-scope +modifier-scope +conjuncted-wg +group +209823 wrapper-scope +modifier-scope +209826 modifier-scope +modifier-scope +conjuncted-wg +209831 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209837 wrapper-clause-scope +209839 modifier-scope +209842 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209848 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +209853 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +209858 wrapper-clause-scope +209862 conjuncted-wg +209865 wrapper-scope +modifier-scope +modifier-scope +209870 wrapper-clause-scope +209872 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +209878 group +209881 modifier-scope +209883 wrapper-clause-scope +209885 modifier-scope +209887 modifier-scope +modifier-scope +209891 wrapper-clause-scope +209893 modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +209899 wrapper-clause-scope +209903 modifier-scope +conjuncted-wg +209908 wrapper-clause-scope +209911 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +209916 modifier-scope +modifier-scope +209919 wrapper-clause-scope +209922 wrapper-clause-scope +209924 wrapper-scope +209926 wrapper-clause-scope +209928 modifier-scope +209930 wrapper-clause-scope +209935 wrapper-clause-scope +group +209938 modifier-scope +wrapper-scope +group +209942 wrapper-clause-scope +209945 modifier-scope +modifier-scope +209949 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +209953 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +209960 wrapper-clause-scope +209963 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +209969 wrapper-clause-scope +209973 modifier-scope +209975 conjuncted-wg +209978 wrapper-scope +modifier-scope +modifier-scope +209982 wrapper-clause-scope +209984 modifier-scope +209986 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +209995 wrapper-clause-scope +209997 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +210003 conjuncted-wg +wrapper-scope +modifier-scope +210007 wrapper-clause-scope +210009 wrapper-scope +modifier-scope +modifier-scope +210013 wrapper-clause-scope +210016 modifier-scope +modifier-scope +210019 conjuncted-wg +210021 modifier-scope +210023 wrapper-clause-scope +210026 modifier-scope +modifier-scope +210029 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +210034 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +210040 wrapper-scope +210042 conjuncted-wg +wrapper-clause-scope +group +210046 wrapper-clause-scope +210048 modifier-scope +modifier-scope +210051 wrapper-clause-scope +210053 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +210060 apposition-group +210062 conjuncted-wg +210064 wrapper-scope +modifier-scope +210067 modifier-scope +210069 wrapper-clause-scope +210074 modifier-scope +conjuncted-wg +modifier-clause-scope +group +modifier-scope +wrapper-scope +wrapper-clause-scope +210082 modifier-scope +modifier-scope +conjuncted-wg +210087 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +210092 wrapper-scope +modifier-scope +210095 wrapper-clause-scope +210098 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210108 conjuncted-wg +210111 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +210120 wrapper-clause-scope +210124 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +210131 wrapper-clause-scope +210136 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +210141 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210150 wrapper-scope +modifier-scope +210154 wrapper-clause-scope +210156 modifier-clause-scope +modifier-clause-scope +210159 wrapper-scope +modifier-scope +210162 wrapper-clause-scope +210166 wrapper-clause-scope +210171 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +210176 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +210183 wrapper-clause-scope +group +wrapper-clause-scope +210187 modifier-scope +modifier-scope +210190 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +210197 wrapper-scope +wrapper-clause-scope +210201 wrapper-clause-scope +210204 wrapper-clause-scope +210207 modifier-clause-scope +apposition-group +210210 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +210217 modifier-scope +210219 group +group +210223 modifier-scope +wrapper-scope +modifier-scope +210227 wrapper-scope +wrapper-clause-scope +210230 modifier-scope +wrapper-clause-scope +210234 wrapper-clause-scope +210237 wrapper-scope +modifier-scope +210240 wrapper-clause-scope +210242 modifier-scope +210247 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +210253 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210259 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +210265 wrapper-clause-scope +210269 conjuncted-wg +modifier-scope +210274 conjuncted-wg +210278 modifier-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +210285 wrapper-scope +210288 modifier-scope +210290 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +210296 modifier-scope +conjuncted-wg +210299 modifier-scope +210301 wrapper-clause-scope +210304 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210309 apposition-group +modifier-scope +modifier-scope +modifier-scope +210314 modifier-scope +wrapper-clause-scope +210318 wrapper-clause-scope +210322 conjuncted-wg +210326 wrapper-clause-scope +210330 group +group +modifier-scope +wrapper-scope +modifier-scope +modifier-clause-scope +210337 modifier-scope +modifier-scope +modifier-scope +modifier-scope +210342 modifier-scope +conjuncted-wg +210345 wrapper-scope +group +group +210353 wrapper-scope +modifier-scope +modifier-scope +210357 wrapper-clause-scope +210359 wrapper-scope +modifier-scope +modifier-scope +210365 modifier-scope +modifier-scope +modifier-scope +210370 conjuncted-wg +210373 modifier-clause-scope +210375 conjuncted-wg +210377 wrapper-scope +210379 group +210382 wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210391 wrapper-scope +210394 conjuncted-wg +210396 modifier-clause-scope +210399 wrapper-clause-scope +group +210402 modifier-scope +210405 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +210410 wrapper-clause-scope +210412 group +wrapper-clause-scope +210415 wrapper-scope +210417 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +210423 conjuncted-wg +group +210426 wrapper-clause-scope +210428 wrapper-scope +210431 modifier-scope +210433 wrapper-clause-scope +210436 conjuncted-wg +210440 modifier-scope +210443 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210450 wrapper-clause-scope +wrapper-clause-scope +group +210455 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +210461 wrapper-scope +modifier-scope +210464 wrapper-clause-scope +210466 modifier-scope +210468 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +210474 conjuncted-wg +210477 modifier-scope +210479 wrapper-clause-scope +group +group +210483 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +210488 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +210494 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +210501 wrapper-clause-scope +210503 modifier-scope +210505 modifier-scope +modifier-scope +modifier-scope +210511 modifier-scope +modifier-scope +modifier-scope +210515 wrapper-clause-scope +210518 apposition-group +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +wrapper-scope +210525 modifier-scope +210527 conjuncted-wg +210529 wrapper-scope +modifier-scope +modifier-scope +210533 wrapper-clause-scope +210536 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +210542 wrapper-clause-scope +210545 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +210551 apposition-group +210553 group +modifier-scope +modifier-scope +210557 conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +group +group +210568 wrapper-scope +modifier-scope +conjuncted-wg +210573 modifier-scope +210575 wrapper-clause-scope +210578 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210584 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +210590 modifier-scope +modifier-scope +modifier-scope +modifier-scope +210595 wrapper-clause-scope +210597 modifier-scope +210599 conjuncted-wg +modifier-scope +210602 conjuncted-wg +wrapper-scope +modifier-scope +210606 wrapper-clause-scope +210609 modifier-clause-scope +210611 modifier-clause-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +210617 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +210623 conjuncted-wg +210625 modifier-scope +conjuncted-wg +210630 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +210637 modifier-clause-scope +210639 wrapper-clause-scope +210642 modifier-scope +wrapper-scope +210645 conjuncted-wg +modifier-scope +210648 wrapper-clause-scope +210652 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +210661 conjuncted-wg +210664 wrapper-scope +modifier-scope +conjuncted-wg +210668 modifier-clause-scope +modifier-scope +210672 modifier-scope +modifier-scope +210675 wrapper-scope +210677 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +210685 wrapper-clause-scope +210688 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210695 modifier-clause-scope +apposition-group +210699 wrapper-clause-scope +210702 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +210706 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +210712 modifier-scope +210714 wrapper-clause-scope +210716 modifier-scope +wrapper-clause-scope +210720 wrapper-clause-scope +210722 group +group +210727 conjuncted-wg +210732 modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +210739 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +210744 wrapper-scope +conjuncted-wg +210747 wrapper-scope +210750 wrapper-scope +210752 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +210759 wrapper-scope +modifier-clause-scope +apposition-group +wrapper-clause-scope +210767 wrapper-scope +modifier-scope +wrapper-scope +210773 wrapper-scope +wrapper-clause-scope +210776 modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +210783 wrapper-scope +conjuncted-wg +210788 wrapper-scope +conjuncted-wg +210791 modifier-scope +conjuncted-wg +210796 wrapper-scope +conjuncted-wg +210799 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +210805 wrapper-clause-scope +210807 modifier-scope +wrapper-clause-scope +210811 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +210818 conjuncted-wg +modifier-scope +210821 wrapper-clause-scope +210825 modifier-clause-scope +apposition-group +wrapper-clause-scope +210829 modifier-scope +conjuncted-wg +210833 wrapper-scope +conjuncted-wg +210836 wrapper-scope +modifier-scope +modifier-scope +210840 wrapper-clause-scope +210842 modifier-scope +210844 wrapper-clause-scope +210849 modifier-scope +conjuncted-wg +210852 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210857 modifier-scope +conjuncted-wg +210860 modifier-scope +modifier-scope +210863 wrapper-clause-scope +210865 modifier-scope +210867 modifier-scope +wrapper-scope +210870 wrapper-clause-scope +210874 modifier-scope +wrapper-scope +conjuncted-wg +210878 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210886 conjuncted-wg +wrapper-scope +group +modifier-scope +conjuncted-wg +210893 wrapper-scope +210895 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +210900 wrapper-clause-scope +210904 wrapper-scope +modifier-scope +modifier-scope +210908 conjuncted-wg +conjuncted-wg +210911 modifier-scope +conjuncted-wg +210914 modifier-scope +modifier-scope +210917 wrapper-clause-scope +210921 wrapper-scope +modifier-scope +modifier-scope +210925 wrapper-clause-scope +210928 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +210934 modifier-scope +modifier-scope +modifier-scope +210938 wrapper-clause-scope +210943 group +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +conjuncted-wg +210954 wrapper-scope +210956 wrapper-clause-scope +210961 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +210966 wrapper-scope +conjuncted-wg +210969 wrapper-scope +modifier-clause-scope +apposition-group +210973 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +210979 wrapper-clause-scope +group +wrapper-clause-scope +210983 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +210988 modifier-scope +modifier-scope +210991 modifier-scope +210993 conjuncted-wg +wrapper-scope +wrapper-scope +210997 wrapper-scope +apposition-group +modifier-scope +211001 modifier-scope +211005 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +211010 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +211016 group +211019 wrapper-scope +modifier-scope +conjuncted-wg +211023 modifier-scope +211025 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +211031 wrapper-clause-scope +group +211036 modifier-scope +modifier-scope +conjuncted-wg +211040 wrapper-scope +211042 wrapper-clause-scope +211045 modifier-scope +modifier-scope +conjuncted-wg +211049 wrapper-scope +modifier-scope +211052 conjuncted-wg +211054 wrapper-clause-scope +group +wrapper-clause-scope +211058 modifier-scope +211060 wrapper-scope +modifier-scope +modifier-scope +211064 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +211070 wrapper-clause-scope +211075 conjuncted-wg +211077 wrapper-clause-scope +211080 modifier-scope +211082 wrapper-clause-scope +211086 modifier-scope +wrapper-clause-scope +211089 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +211095 wrapper-clause-scope +211098 modifier-clause-scope +modifier-clause-scope +211102 conjuncted-wg +211104 wrapper-scope +211110 wrapper-scope +211112 wrapper-clause-scope +211114 wrapper-clause-scope +211116 modifier-scope +211118 group +211120 modifier-scope +211122 conjuncted-wg +wrapper-scope +wrapper-clause-scope +211128 modifier-scope +modifier-scope +211131 wrapper-clause-scope +211134 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +211139 wrapper-scope +apposition-group +modifier-scope +211143 modifier-scope +211145 wrapper-clause-scope +group +211148 modifier-scope +211150 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +211159 wrapper-clause-scope +211161 modifier-scope +211163 modifier-scope +211165 wrapper-clause-scope +211169 modifier-scope +211171 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +211179 conjuncted-wg +conjuncted-wg +211182 wrapper-clause-scope +211187 wrapper-clause-scope +211189 modifier-scope +group +211192 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +211198 modifier-clause-scope +apposition-group +211201 wrapper-scope +modifier-scope +211208 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +211217 modifier-scope +modifier-scope +conjuncted-wg +211223 wrapper-clause-scope +group +211227 wrapper-scope +211231 apposition-group +modifier-scope +modifier-scope +211238 conjuncted-wg +modifier-scope +211241 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +211248 wrapper-scope +modifier-scope +211254 conjuncted-wg +211256 wrapper-scope +group +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +211267 group +modifier-scope +wrapper-clause-scope +211271 modifier-scope +modifier-scope +group +211275 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +211283 apposition-group +apposition-group +wrapper-clause-scope +211287 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +211293 group +modifier-scope +wrapper-clause-scope +211297 wrapper-scope +group +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +211304 modifier-clause-scope +211310 modifier-scope +modifier-scope +conjuncted-wg +211315 conjuncted-wg +211317 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +211322 modifier-scope +group +211325 apposition-group +211327 wrapper-clause-scope +211330 apposition-group +modifier-scope +modifier-scope +211334 wrapper-scope +modifier-scope +211338 wrapper-clause-scope +211342 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +211347 modifier-scope +conjuncted-wg +211350 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +211356 wrapper-clause-scope +group +211360 modifier-scope +conjuncted-wg +211364 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +211369 wrapper-scope +modifier-scope +modifier-scope +211375 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +211381 modifier-scope +211383 wrapper-clause-scope +211385 group +211387 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +modifier-scope +modifier-clause-scope +apposition-group +211400 wrapper-clause-scope +211402 wrapper-scope +211405 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +211414 wrapper-clause-scope +211416 modifier-scope +211418 wrapper-scope +modifier-clause-scope +apposition-group +211424 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +211433 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +211444 wrapper-scope +modifier-scope +conjuncted-wg +211449 modifier-scope +modifier-scope +211452 wrapper-clause-scope +211455 wrapper-clause-scope +group +211458 modifier-scope +wrapper-scope +wrapper-clause-scope +211462 modifier-scope +211465 modifier-scope +conjuncted-wg +211468 modifier-scope +modifier-scope +modifier-scope +modifier-scope +211474 group +211476 modifier-scope +211478 conjuncted-wg +211480 modifier-scope +modifier-scope +modifier-scope +211484 wrapper-clause-scope +211486 modifier-scope +modifier-scope +modifier-scope +211493 conjuncted-wg +modifier-scope +211496 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +211502 wrapper-clause-scope +211504 modifier-scope +modifier-scope +modifier-scope +211509 modifier-scope +modifier-scope +modifier-scope +modifier-scope +211514 wrapper-clause-scope +211516 wrapper-clause-scope +211518 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +group +211526 conjuncted-wg +211529 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +211535 wrapper-clause-scope +211539 modifier-scope +modifier-scope +conjuncted-wg +211543 modifier-scope +wrapper-scope +211546 wrapper-clause-scope +211550 modifier-scope +211552 wrapper-scope +modifier-scope +211555 modifier-scope +conjuncted-wg +211558 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +211566 modifier-scope +conjuncted-wg +211569 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +211576 wrapper-clause-scope +211581 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +211586 wrapper-scope +conjuncted-wg +211590 wrapper-scope +modifier-scope +211593 wrapper-clause-scope +211595 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +211604 wrapper-clause-scope +211606 modifier-scope +211609 conjuncted-wg +211613 group +modifier-scope +modifier-scope +211617 wrapper-clause-scope +211620 modifier-scope +modifier-scope +211624 modifier-scope +modifier-scope +211627 wrapper-clause-scope +211631 wrapper-clause-scope +211633 wrapper-scope +modifier-scope +modifier-scope +211637 wrapper-clause-scope +211639 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +211649 wrapper-clause-scope +211651 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +211656 conjuncted-wg +wrapper-scope +modifier-scope +211660 wrapper-clause-scope +211663 modifier-scope +modifier-scope +conjuncted-wg +211667 modifier-scope +wrapper-scope +211670 wrapper-clause-scope +group +211673 modifier-scope +211675 wrapper-scope +modifier-scope +211680 conjuncted-wg +conjuncted-wg +wrapper-scope +211684 wrapper-clause-scope +211686 conjuncted-wg +211688 wrapper-clause-scope +211691 modifier-scope +conjuncted-wg +211695 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +211701 wrapper-clause-scope +211703 modifier-scope +wrapper-clause-scope +211706 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +211712 conjuncted-wg +211714 modifier-clause-scope +apposition-group +211718 wrapper-clause-scope +211722 modifier-clause-scope +wrapper-clause-scope +211725 modifier-scope +211727 modifier-scope +conjuncted-wg +211730 modifier-clause-scope +211733 conjuncted-wg +211735 wrapper-clause-scope +211737 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +211742 wrapper-clause-scope +211744 modifier-clause-scope +modifier-scope +211747 wrapper-scope +modifier-scope +211751 conjuncted-wg +211753 modifier-scope +modifier-scope +modifier-scope +211758 modifier-scope +211760 modifier-scope +group +wrapper-scope +wrapper-scope +211766 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +211773 wrapper-clause-scope +211775 wrapper-scope +wrapper-clause-scope +211778 modifier-scope +modifier-scope +211781 wrapper-clause-scope +group +wrapper-clause-scope +211785 modifier-scope +211787 wrapper-scope +211789 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +211798 conjuncted-wg +conjuncted-wg +211801 wrapper-clause-scope +group +211806 modifier-scope +modifier-scope +conjuncted-wg +211811 wrapper-scope +modifier-scope +211817 conjuncted-wg +conjuncted-wg +modifier-scope +211821 wrapper-clause-scope +211823 modifier-scope +modifier-scope +wrapper-scope +211827 wrapper-clause-scope +211829 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +211836 conjuncted-wg +211840 wrapper-scope +211842 modifier-scope +211844 wrapper-clause-scope +211847 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +211852 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +211861 modifier-scope +wrapper-scope +conjuncted-wg +211865 modifier-scope +211867 wrapper-clause-scope +211869 modifier-scope +211871 wrapper-clause-scope +211873 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +211881 group +211883 modifier-scope +modifier-scope +wrapper-clause-scope +211887 wrapper-clause-scope +211889 modifier-scope +modifier-scope +211892 wrapper-clause-scope +211894 wrapper-scope +group +211897 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +211904 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +211909 group +211912 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +211918 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +211923 wrapper-clause-scope +group +211927 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +211933 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +211937 modifier-scope +modifier-scope +modifier-scope +modifier-scope +211942 wrapper-clause-scope +211945 wrapper-scope +211947 modifier-scope +conjuncted-wg +modifier-scope +211951 wrapper-clause-scope +211954 modifier-scope +211956 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +211961 wrapper-scope +modifier-clause-scope +211965 wrapper-clause-scope +wrapper-clause-scope +211971 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +211978 modifier-scope +modifier-scope +modifier-scope +211982 wrapper-clause-scope +211984 modifier-scope +wrapper-scope +211989 conjuncted-wg +211991 wrapper-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +211997 group +wrapper-scope +wrapper-scope +212002 wrapper-clause-scope +212006 wrapper-clause-scope +212009 apposition-group +apposition-group +group +group +group +modifier-scope +group +modifier-scope +212018 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212024 wrapper-scope +wrapper-scope +212027 conjuncted-wg +conjuncted-wg +212030 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +212035 group +modifier-scope +212038 wrapper-clause-scope +212040 modifier-scope +modifier-scope +212044 conjuncted-wg +212046 modifier-scope +modifier-scope +212049 wrapper-clause-scope +212053 modifier-scope +212055 group +modifier-scope +conjuncted-wg +212059 wrapper-clause-scope +wrapper-clause-scope +212064 wrapper-clause-scope +212066 wrapper-clause-scope +212069 wrapper-clause-scope +212072 wrapper-clause-scope +212075 modifier-scope +212077 wrapper-scope +212079 wrapper-clause-scope +212082 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +212088 group +wrapper-clause-scope +212092 wrapper-scope +conjuncted-wg +group +wrapper-clause-scope +212097 wrapper-scope +wrapper-clause-scope +212101 modifier-scope +modifier-scope +group +212105 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212110 modifier-scope +modifier-scope +wrapper-clause-scope +212114 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212119 wrapper-clause-scope +212122 modifier-scope +modifier-scope +212126 wrapper-scope +modifier-scope +212130 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +212135 wrapper-clause-scope +212137 modifier-scope +212140 modifier-scope +modifier-scope +conjuncted-wg +212144 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212149 wrapper-clause-scope +group +wrapper-clause-scope +212153 wrapper-scope +modifier-scope +212157 wrapper-scope +modifier-scope +conjuncted-wg +212161 modifier-scope +group +212168 wrapper-clause-scope +212172 modifier-scope +conjuncted-wg +212176 wrapper-scope +modifier-scope +212179 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +212186 wrapper-clause-scope +212189 wrapper-clause-scope +212191 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +212198 modifier-scope +wrapper-clause-scope +212201 modifier-scope +modifier-scope +212205 wrapper-clause-scope +212208 wrapper-scope +conjuncted-wg +212212 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +212217 wrapper-scope +212219 wrapper-clause-scope +212221 modifier-scope +212224 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212230 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +212239 wrapper-clause-scope +212241 group +modifier-clause-scope +212244 modifier-scope +212246 conjuncted-wg +conjuncted-wg +212249 wrapper-scope +212251 wrapper-clause-scope +212254 wrapper-scope +wrapper-clause-scope +212258 modifier-scope +conjuncted-wg +212262 wrapper-scope +modifier-scope +conjuncted-wg +212267 wrapper-scope +modifier-scope +212270 group +group +212276 wrapper-clause-scope +212281 wrapper-clause-scope +212284 apposition-group +212287 wrapper-clause-scope +212291 conjuncted-wg +212293 wrapper-scope +modifier-scope +conjuncted-wg +212298 group +212301 wrapper-clause-scope +212303 group +modifier-scope +wrapper-clause-scope +212308 conjuncted-wg +212310 modifier-scope +conjuncted-wg +212314 wrapper-clause-scope +212317 wrapper-scope +modifier-scope +conjuncted-wg +group +212322 modifier-scope +modifier-scope +212326 wrapper-clause-scope +212329 wrapper-scope +212331 wrapper-clause-scope +212334 wrapper-scope +modifier-scope +conjuncted-wg +212339 conjuncted-wg +212341 wrapper-clause-scope +212344 modifier-clause-scope +modifier-scope +212347 wrapper-scope +conjuncted-wg +212350 wrapper-scope +wrapper-scope +modifier-scope +212355 wrapper-clause-scope +212361 wrapper-clause-scope +group +212364 modifier-scope +wrapper-scope +212369 wrapper-scope +group +modifier-scope +wrapper-clause-scope +212374 conjuncted-wg +212376 wrapper-scope +modifier-scope +modifier-clause-scope +212381 wrapper-clause-scope +212384 conjuncted-wg +212388 modifier-clause-scope +212390 conjuncted-wg +group +212393 wrapper-clause-scope +212396 wrapper-clause-scope +212400 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +212406 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +212412 modifier-scope +wrapper-scope +modifier-scope +212416 modifier-clause-scope +wrapper-clause-scope +212419 modifier-scope +modifier-scope +212422 wrapper-clause-scope +212424 wrapper-scope +modifier-scope +group +group +212429 wrapper-clause-scope +212431 modifier-scope +wrapper-clause-scope +212434 modifier-scope +modifier-scope +wrapper-scope +212438 conjuncted-wg +212440 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-clause-scope +212447 wrapper-scope +modifier-scope +modifier-scope +212451 wrapper-clause-scope +212454 conjuncted-wg +212457 wrapper-scope +modifier-scope +conjuncted-wg +212462 wrapper-scope +modifier-scope +212466 group +212468 group +modifier-scope +group +wrapper-clause-scope +212473 wrapper-scope +modifier-clause-scope +apposition-group +212479 conjuncted-wg +212481 modifier-scope +212483 wrapper-clause-scope +212488 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +212493 conjuncted-wg +212495 conjuncted-wg +212498 conjuncted-wg +212502 wrapper-clause-scope +212505 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +212512 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +212517 modifier-scope +modifier-scope +modifier-scope +212521 wrapper-clause-scope +212524 modifier-clause-scope +wrapper-clause-scope +212527 conjuncted-wg +212529 wrapper-clause-scope +212532 wrapper-clause-scope +212534 wrapper-scope +wrapper-clause-scope +212537 modifier-scope +modifier-scope +conjuncted-wg +group +212542 wrapper-scope +wrapper-clause-scope +212546 wrapper-scope +modifier-scope +212549 wrapper-clause-scope +212552 conjuncted-wg +212554 group +wrapper-clause-scope +212557 wrapper-scope +212559 wrapper-clause-scope +212561 modifier-scope +212563 wrapper-clause-scope +group +wrapper-clause-scope +212567 modifier-scope +212569 modifier-scope +212572 wrapper-clause-scope +212574 modifier-scope +modifier-scope +modifier-scope +212578 wrapper-clause-scope +212580 modifier-scope +modifier-scope +212583 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +212588 wrapper-clause-scope +212591 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +212596 wrapper-scope +212598 wrapper-clause-scope +212601 wrapper-scope +212603 modifier-scope +212605 wrapper-clause-scope +212608 wrapper-clause-scope +212611 wrapper-clause-scope +212615 wrapper-scope +modifier-scope +conjuncted-wg +212622 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +212628 conjuncted-wg +212630 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +212635 wrapper-clause-scope +212637 wrapper-scope +212639 conjuncted-wg +wrapper-scope +wrapper-scope +212643 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212649 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +212654 wrapper-clause-scope +212658 wrapper-clause-scope +212662 modifier-scope +wrapper-scope +conjuncted-wg +212666 wrapper-scope +212668 wrapper-clause-scope +wrapper-clause-scope +212672 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +212677 conjuncted-wg +conjuncted-wg +212680 conjuncted-wg +212684 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +212693 wrapper-clause-scope +212697 wrapper-scope +modifier-clause-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +212705 wrapper-clause-scope +212707 apposition-group +modifier-clause-scope +modifier-clause-scope +modifier-scope +212713 wrapper-scope +modifier-scope +wrapper-scope +212719 wrapper-clause-scope +212721 modifier-scope +212725 group +212728 conjuncted-wg +212731 wrapper-clause-scope +212734 wrapper-clause-scope +212737 modifier-clause-scope +wrapper-clause-scope +212741 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +212746 wrapper-clause-scope +212748 wrapper-scope +modifier-clause-scope +modifier-clause-scope +212752 apposition-group +212757 apposition-group +212759 modifier-scope +conjuncted-wg +212763 wrapper-clause-scope +212765 wrapper-scope +modifier-scope +modifier-scope +212771 wrapper-clause-scope +212774 wrapper-scope +212776 wrapper-clause-scope +group +212779 wrapper-scope +modifier-scope +212782 modifier-scope +212784 wrapper-clause-scope +212786 wrapper-scope +modifier-scope +wrapper-scope +212792 wrapper-scope +212794 wrapper-clause-scope +212800 wrapper-scope +modifier-scope +conjuncted-wg +212804 modifier-scope +modifier-scope +212808 conjuncted-wg +212810 apposition-group +212812 conjuncted-wg +212815 wrapper-scope +modifier-scope +212818 wrapper-clause-scope +212821 modifier-scope +212824 conjuncted-wg +212826 modifier-scope +conjuncted-wg +212830 wrapper-scope +modifier-scope +212835 wrapper-clause-scope +212838 modifier-scope +modifier-scope +conjuncted-wg +212843 modifier-scope +212845 wrapper-clause-scope +212849 conjuncted-wg +212853 modifier-scope +conjuncted-wg +modifier-scope +212858 wrapper-clause-scope +212861 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +212866 wrapper-scope +modifier-scope +212869 wrapper-clause-scope +212872 modifier-scope +wrapper-scope +wrapper-scope +group +modifier-scope +212878 wrapper-clause-scope +212880 modifier-clause-scope +modifier-clause-scope +group +modifier-clause-scope +modifier-scope +modifier-scope +wrapper-scope +212888 modifier-clause-scope +wrapper-scope +group +wrapper-clause-scope +212894 conjuncted-wg +212896 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212903 modifier-scope +modifier-scope +conjuncted-wg +212907 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +212917 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +212924 wrapper-clause-scope +212928 conjuncted-wg +212933 wrapper-clause-scope +212937 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +212946 wrapper-clause-scope +212949 wrapper-scope +conjuncted-wg +212952 apposition-group +modifier-scope +212957 wrapper-scope +apposition-group +group +modifier-scope +212962 wrapper-scope +212964 wrapper-clause-scope +group +wrapper-clause-scope +212968 group +modifier-scope +wrapper-clause-scope +212976 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-scope +wrapper-clause-scope +212983 conjuncted-wg +212985 wrapper-scope +modifier-scope +212988 wrapper-clause-scope +212990 modifier-scope +212993 conjuncted-wg +212995 modifier-scope +wrapper-scope +modifier-scope +212999 wrapper-scope +modifier-scope +213002 wrapper-clause-scope +213005 conjuncted-wg +213009 wrapper-clause-scope +group +213014 wrapper-scope +conjuncted-wg +213019 modifier-scope +conjuncted-wg +213022 modifier-scope +wrapper-clause-scope +213025 modifier-scope +213027 modifier-scope +wrapper-scope +modifier-scope +213031 wrapper-scope +modifier-scope +modifier-scope +213035 modifier-scope +213037 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +213043 wrapper-clause-scope +213045 wrapper-scope +213050 conjuncted-wg +213052 wrapper-clause-scope +213054 modifier-scope +group +213058 wrapper-clause-scope +213060 modifier-scope +213062 conjuncted-wg +213064 wrapper-clause-scope +213066 wrapper-scope +wrapper-scope +213070 modifier-scope +213072 wrapper-clause-scope +213075 wrapper-scope +conjuncted-wg +213078 modifier-scope +wrapper-scope +modifier-scope +213082 wrapper-clause-scope +group +wrapper-clause-scope +213086 wrapper-scope +modifier-scope +wrapper-clause-scope +213090 modifier-clause-scope +apposition-group +213095 group +modifier-scope +wrapper-clause-scope +213099 wrapper-scope +modifier-scope +213102 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +213110 wrapper-clause-scope +213112 group +wrapper-clause-scope +213116 wrapper-clause-scope +213119 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +213125 modifier-scope +conjuncted-wg +group +213131 conjuncted-wg +213133 wrapper-scope +213135 wrapper-clause-scope +213138 wrapper-clause-scope +213141 wrapper-scope +modifier-scope +213147 modifier-clause-scope +apposition-group +213150 wrapper-scope +213152 wrapper-clause-scope +213155 group +group +modifier-clause-scope +213159 conjuncted-wg +213161 modifier-scope +conjuncted-wg +213164 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +213173 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +213178 wrapper-scope +213180 wrapper-clause-scope +213184 wrapper-clause-scope +213187 modifier-scope +213189 wrapper-scope +conjuncted-wg +213192 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +213198 wrapper-clause-scope +213200 modifier-scope +wrapper-scope +modifier-scope +213204 wrapper-clause-scope +213206 modifier-scope +wrapper-scope +213210 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +213216 wrapper-clause-scope +213218 wrapper-clause-scope +213220 wrapper-clause-scope +213222 modifier-scope +213224 modifier-scope +213226 wrapper-scope +modifier-scope +213229 wrapper-clause-scope +213231 modifier-scope +213233 group +213236 modifier-scope +modifier-scope +213239 wrapper-clause-scope +213244 conjuncted-wg +213247 conjuncted-wg +213249 wrapper-scope +213252 modifier-scope +213255 conjuncted-wg +213258 modifier-scope +213260 modifier-scope +213262 conjuncted-wg +213264 wrapper-clause-scope +213268 wrapper-clause-scope +213271 modifier-scope +213273 wrapper-clause-scope +213275 modifier-scope +213278 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +213292 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +213300 modifier-scope +modifier-scope +conjuncted-wg +213304 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +213309 wrapper-clause-scope +213312 wrapper-scope +conjuncted-wg +213315 apposition-group +213319 wrapper-scope +modifier-scope +group +wrapper-scope +213324 wrapper-clause-scope +213327 wrapper-scope +conjuncted-wg +213332 wrapper-clause-scope +213334 modifier-scope +wrapper-scope +modifier-scope +213338 modifier-clause-scope +wrapper-clause-scope +213341 wrapper-scope +modifier-scope +213344 wrapper-clause-scope +213347 modifier-scope +213349 wrapper-scope +wrapper-clause-scope +group +213353 modifier-scope +213355 wrapper-scope +modifier-scope +wrapper-clause-scope +213360 conjuncted-wg +213365 modifier-clause-scope +apposition-group +213368 modifier-scope +modifier-scope +213371 wrapper-scope +apposition-group +group +213375 modifier-scope +group +modifier-clause-scope +apposition-group +213380 wrapper-scope +modifier-scope +modifier-scope +213384 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +213390 apposition-group +apposition-group +group +modifier-scope +wrapper-scope +wrapper-clause-scope +213397 modifier-scope +213399 modifier-scope +conjuncted-wg +213405 conjuncted-wg +213407 modifier-clause-scope +wrapper-clause-scope +213410 wrapper-scope +modifier-scope +213413 modifier-scope +wrapper-scope +213416 wrapper-clause-scope +213418 modifier-clause-scope +apposition-group +213422 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +213430 wrapper-scope +213434 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +213441 group +modifier-scope +modifier-scope +apposition-group +group +group +wrapper-clause-scope +213449 wrapper-scope +modifier-scope +213453 conjuncted-wg +wrapper-scope +wrapper-clause-scope +213457 wrapper-scope +213459 wrapper-clause-scope +213463 modifier-scope +conjuncted-wg +213466 wrapper-clause-scope +213468 modifier-clause-scope +modifier-clause-scope +213471 wrapper-scope +modifier-scope +modifier-clause-scope +213476 conjuncted-wg +213479 modifier-scope +modifier-scope +213482 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +213489 wrapper-scope +213493 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +213503 modifier-scope +213505 wrapper-clause-scope +213507 apposition-group +modifier-scope +modifier-scope +wrapper-scope +213512 modifier-scope +wrapper-clause-scope +213515 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +213523 wrapper-clause-scope +213527 conjuncted-wg +213529 modifier-scope +213532 wrapper-clause-scope +213535 modifier-scope +wrapper-clause-scope +213538 apposition-group +213541 modifier-scope +modifier-scope +modifier-scope +213545 modifier-scope +213547 wrapper-clause-scope +213550 wrapper-scope +modifier-scope +modifier-scope +group +213557 modifier-scope +213559 wrapper-clause-scope +213562 modifier-scope +conjuncted-wg +group +modifier-scope +wrapper-clause-scope +213568 wrapper-scope +modifier-scope +wrapper-clause-scope +213572 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +213578 wrapper-clause-scope +group +wrapper-clause-scope +213582 wrapper-scope +213584 wrapper-scope +modifier-scope +wrapper-scope +213588 wrapper-clause-scope +213591 wrapper-scope +modifier-clause-scope +213594 conjuncted-wg +213597 wrapper-clause-scope +213603 wrapper-scope +wrapper-scope +group +conjuncted-wg +213609 wrapper-scope +group +213612 modifier-scope +wrapper-clause-scope +213615 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +213621 wrapper-scope +213626 wrapper-scope +conjuncted-wg +213630 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +213642 wrapper-clause-scope +213649 conjuncted-wg +213651 wrapper-clause-scope +213653 group +213656 wrapper-clause-scope +213659 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +213664 wrapper-clause-scope +213666 wrapper-scope +wrapper-scope +modifier-scope +213671 modifier-scope +213673 wrapper-clause-scope +213676 wrapper-scope +conjuncted-wg +213679 wrapper-scope +modifier-scope +213682 wrapper-clause-scope +213684 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +213689 wrapper-scope +213691 wrapper-scope +wrapper-scope +213694 wrapper-clause-scope +213696 modifier-scope +213700 wrapper-clause-scope +213703 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +213710 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +213715 wrapper-clause-scope +213717 wrapper-clause-scope +213721 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +213729 wrapper-scope +conjuncted-wg +213732 apposition-group +group +wrapper-clause-scope +213738 wrapper-scope +wrapper-scope +213741 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +213746 wrapper-clause-scope +213748 wrapper-scope +wrapper-clause-scope +213752 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +213758 modifier-scope +wrapper-scope +wrapper-scope +213762 wrapper-clause-scope +213764 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +213770 conjuncted-wg +213772 conjuncted-wg +213774 wrapper-scope +modifier-scope +213777 wrapper-clause-scope +group +wrapper-clause-scope +group +213782 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +213787 modifier-scope +213789 wrapper-scope +group +modifier-scope +group +group +213796 wrapper-clause-scope +213798 modifier-scope +213800 wrapper-clause-scope +213804 conjuncted-wg +213806 modifier-scope +213808 wrapper-clause-scope +213810 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +213817 wrapper-clause-scope +wrapper-clause-scope +213820 wrapper-clause-scope +213822 wrapper-scope +group +modifier-scope +wrapper-clause-scope +213827 wrapper-scope +wrapper-scope +213830 conjuncted-wg +conjuncted-wg +213833 modifier-scope +wrapper-clause-scope +213837 wrapper-clause-scope +213840 modifier-scope +wrapper-scope +group +213844 conjuncted-wg +213846 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +213851 group +modifier-scope +213854 wrapper-clause-scope +213857 modifier-scope +wrapper-scope +conjuncted-wg +213861 group +modifier-scope +wrapper-clause-scope +213865 wrapper-scope +modifier-scope +213868 wrapper-clause-scope +213871 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +213881 wrapper-scope +conjuncted-wg +213885 wrapper-scope +213890 conjuncted-wg +213892 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +213899 modifier-scope +modifier-scope +modifier-scope +modifier-scope +213904 modifier-scope +213906 conjuncted-wg +modifier-scope +213909 modifier-scope +conjuncted-wg +213912 wrapper-clause-scope +213914 modifier-scope +modifier-scope +213917 wrapper-clause-scope +213920 wrapper-scope +213922 conjuncted-wg +213925 wrapper-scope +213927 wrapper-clause-scope +213932 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +213938 modifier-scope +conjuncted-wg +213941 wrapper-scope +modifier-scope +213944 wrapper-clause-scope +213946 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +213952 wrapper-clause-scope +213955 modifier-clause-scope +modifier-scope +wrapper-scope +213959 wrapper-scope +modifier-scope +213962 modifier-scope +213964 wrapper-scope +modifier-scope +modifier-scope +213968 wrapper-scope +213970 wrapper-clause-scope +213973 modifier-scope +wrapper-clause-scope +213977 modifier-scope +213979 wrapper-scope +modifier-clause-scope +modifier-clause-scope +213983 wrapper-scope +modifier-scope +213987 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +213992 conjuncted-wg +213994 wrapper-clause-scope +213996 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +214003 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +214008 wrapper-clause-scope +214010 group +modifier-scope +modifier-scope +214014 wrapper-clause-scope +214019 wrapper-clause-scope +214021 modifier-scope +214023 modifier-scope +conjuncted-wg +214026 modifier-scope +modifier-scope +214029 wrapper-scope +214031 modifier-scope +modifier-scope +214036 wrapper-scope +modifier-scope +modifier-scope +214040 wrapper-clause-scope +214042 conjuncted-wg +214044 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +214049 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +214056 wrapper-clause-scope +group +wrapper-clause-scope +214061 modifier-scope +214064 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +214071 modifier-scope +conjuncted-wg +214074 wrapper-scope +modifier-scope +modifier-scope +214078 wrapper-clause-scope +214081 modifier-scope +conjuncted-wg +214084 wrapper-scope +modifier-scope +214087 wrapper-clause-scope +214090 modifier-scope +modifier-scope +modifier-scope +214095 wrapper-scope +214097 wrapper-clause-scope +214099 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +214104 wrapper-clause-scope +214106 modifier-scope +wrapper-scope +214110 conjuncted-wg +214112 modifier-scope +modifier-scope +214115 wrapper-clause-scope +214118 wrapper-clause-scope +214122 modifier-scope +modifier-scope +conjuncted-wg +214127 wrapper-clause-scope +214131 conjuncted-wg +group +214134 wrapper-clause-scope +214136 wrapper-clause-scope +214138 wrapper-scope +modifier-scope +214143 wrapper-clause-scope +214148 modifier-scope +214150 conjuncted-wg +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +214159 wrapper-scope +modifier-scope +214162 conjuncted-wg +214165 modifier-scope +conjuncted-wg +214168 modifier-scope +wrapper-scope +214171 wrapper-clause-scope +214173 modifier-scope +214175 wrapper-scope +214177 wrapper-clause-scope +214180 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +214185 wrapper-scope +214187 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +214196 wrapper-clause-scope +214199 wrapper-scope +modifier-clause-scope +apposition-group +modifier-clause-scope +group +modifier-scope +modifier-clause-scope +modifier-clause-scope +group +wrapper-clause-scope +214211 wrapper-scope +214213 conjuncted-wg +214215 wrapper-clause-scope +group +214218 modifier-scope +modifier-scope +modifier-scope +214223 modifier-clause-scope +214226 wrapper-clause-scope +214230 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +214240 modifier-scope +wrapper-scope +modifier-scope +214244 wrapper-clause-scope +214246 wrapper-scope +214249 wrapper-clause-scope +214253 wrapper-clause-scope +214256 modifier-scope +214258 wrapper-clause-scope +214260 modifier-scope +214263 wrapper-clause-scope +214267 conjuncted-wg +214270 wrapper-clause-scope +214274 modifier-scope +214277 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +214284 conjuncted-wg +modifier-scope +214287 wrapper-clause-scope +214290 wrapper-scope +modifier-scope +214293 wrapper-clause-scope +214296 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +214302 modifier-scope +214304 wrapper-clause-scope +214309 conjuncted-wg +214312 modifier-scope +214314 conjuncted-wg +214317 group +wrapper-scope +modifier-scope +wrapper-scope +214322 wrapper-clause-scope +214324 wrapper-scope +214326 conjuncted-wg +214328 wrapper-clause-scope +214331 wrapper-scope +conjuncted-wg +214335 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +214344 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +214349 wrapper-clause-scope +214351 modifier-scope +modifier-scope +214354 modifier-scope +214356 wrapper-scope +modifier-scope +wrapper-scope +214360 wrapper-clause-scope +214362 modifier-scope +214365 modifier-scope +conjuncted-wg +214369 wrapper-clause-scope +214372 modifier-scope +wrapper-scope +214375 modifier-scope +modifier-scope +conjuncted-wg +214381 wrapper-clause-scope +214383 modifier-scope +modifier-scope +modifier-scope +214387 conjuncted-wg +214389 wrapper-clause-scope +214392 conjuncted-wg +wrapper-scope +214395 modifier-scope +214397 group +wrapper-clause-scope +214401 wrapper-clause-scope +214403 wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +214408 group +214410 conjuncted-wg +214412 conjuncted-wg +214414 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +214419 conjuncted-wg +group +modifier-scope +conjuncted-wg +214424 group +modifier-scope +group +modifier-scope +conjuncted-wg +214430 wrapper-clause-scope +group +214434 modifier-scope +conjuncted-wg +214438 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +214443 modifier-scope +214445 conjuncted-wg +wrapper-scope +modifier-clause-scope +apposition-group +214454 conjuncted-wg +214456 conjuncted-wg +214458 modifier-scope +214460 wrapper-clause-scope +wrapper-clause-scope +214466 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +214472 wrapper-scope +conjuncted-wg +214476 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +214485 wrapper-clause-scope +214487 modifier-scope +214489 wrapper-clause-scope +214492 modifier-scope +modifier-scope +wrapper-scope +apposition-group +apposition-group +group +group +modifier-scope +modifier-scope +214503 wrapper-scope +group +group +modifier-scope +group +modifier-scope +214513 conjuncted-wg +214515 modifier-scope +modifier-scope +modifier-scope +214519 wrapper-clause-scope +214521 apposition-group +group +modifier-scope +wrapper-clause-scope +214526 modifier-scope +modifier-scope +214530 modifier-scope +wrapper-scope +modifier-scope +214534 wrapper-clause-scope +214536 group +modifier-scope +modifier-scope +214540 modifier-scope +214542 wrapper-scope +group +214547 modifier-scope +214549 modifier-scope +conjuncted-wg +modifier-scope +214553 modifier-scope +214555 modifier-scope +modifier-scope +214559 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +214565 wrapper-clause-scope +214569 modifier-scope +wrapper-scope +conjuncted-wg +214574 modifier-scope +wrapper-scope +214577 wrapper-clause-scope +214580 wrapper-scope +214582 conjuncted-wg +conjuncted-wg +214588 modifier-scope +214590 wrapper-clause-scope +214593 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +214598 wrapper-clause-scope +214601 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +214609 wrapper-clause-scope +214612 wrapper-scope +wrapper-scope +214615 wrapper-clause-scope +214619 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +214627 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +214633 wrapper-clause-scope +214635 wrapper-scope +modifier-scope +modifier-scope +214639 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +214645 group +group +214649 group +wrapper-clause-scope +214652 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +214660 wrapper-clause-scope +214664 conjuncted-wg +214666 modifier-scope +214668 wrapper-clause-scope +214670 group +214673 conjuncted-wg +214675 wrapper-clause-scope +214677 modifier-scope +214680 group +214683 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +214695 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +214703 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +214708 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +214715 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +214722 modifier-scope +modifier-scope +group +214726 wrapper-clause-scope +214728 wrapper-scope +wrapper-scope +modifier-scope +214734 conjuncted-wg +214736 modifier-scope +group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +214746 wrapper-clause-scope +group +214750 modifier-scope +wrapper-scope +214755 apposition-group +group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +214765 modifier-scope +modifier-scope +modifier-scope +214770 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +214778 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +214787 wrapper-clause-scope +group +wrapper-clause-scope +214791 modifier-scope +214795 group +214798 wrapper-scope +214801 modifier-scope +modifier-scope +modifier-scope +214805 group +group +214811 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-scope +wrapper-scope +214818 modifier-scope +214820 modifier-scope +modifier-scope +modifier-scope +modifier-scope +214825 wrapper-clause-scope +214829 wrapper-clause-scope +214831 wrapper-scope +conjuncted-wg +modifier-scope +modifier-scope +214837 conjuncted-wg +214839 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +214845 wrapper-scope +modifier-scope +214848 conjuncted-wg +214851 modifier-scope +modifier-scope +214855 wrapper-clause-scope +group +wrapper-clause-scope +214859 modifier-clause-scope +wrapper-clause-scope +214862 wrapper-scope +214865 wrapper-scope +modifier-scope +wrapper-scope +214869 wrapper-clause-scope +214872 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +apposition-group +wrapper-clause-scope +214879 group +wrapper-scope +modifier-scope +wrapper-scope +214884 modifier-scope +wrapper-scope +modifier-scope +214888 wrapper-clause-scope +214890 modifier-clause-scope +modifier-clause-scope +214893 wrapper-scope +modifier-scope +wrapper-clause-scope +group +214898 modifier-scope +modifier-scope +modifier-scope +214902 wrapper-clause-scope +214904 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +214911 modifier-scope +214914 wrapper-clause-scope +214916 wrapper-clause-scope +214918 wrapper-scope +214921 wrapper-scope +wrapper-clause-scope +214924 group +modifier-scope +modifier-scope +modifier-scope +214929 wrapper-clause-scope +214931 modifier-scope +wrapper-scope +214935 modifier-scope +modifier-scope +214938 wrapper-clause-scope +214940 conjuncted-wg +214944 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +214950 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +214955 conjuncted-wg +214958 modifier-scope +214960 wrapper-clause-scope +214963 group +214966 wrapper-clause-scope +214969 wrapper-scope +modifier-scope +conjuncted-wg +214973 wrapper-scope +apposition-group +214977 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +214984 wrapper-clause-scope +group +214987 wrapper-clause-scope +214989 wrapper-clause-scope +214991 wrapper-scope +modifier-scope +group +214997 modifier-scope +conjuncted-wg +215000 conjuncted-wg +215002 wrapper-clause-scope +215005 wrapper-scope +modifier-scope +modifier-scope +apposition-group +215011 modifier-scope +215014 wrapper-clause-scope +group +215019 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +215025 wrapper-clause-scope +group +215028 modifier-scope +215030 modifier-clause-scope +215032 modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +215037 apposition-group +215039 modifier-scope +conjuncted-wg +modifier-scope +215045 modifier-scope +modifier-scope +modifier-scope +215049 wrapper-clause-scope +215051 modifier-clause-scope +modifier-clause-scope +215054 modifier-scope +modifier-scope +modifier-scope +215058 modifier-scope +modifier-scope +modifier-scope +215062 wrapper-clause-scope +215065 modifier-scope +215067 modifier-scope +conjuncted-wg +215070 wrapper-clause-scope +215072 wrapper-scope +215075 wrapper-clause-scope +215079 modifier-scope +conjuncted-wg +modifier-scope +215084 modifier-scope +modifier-scope +modifier-scope +215088 group +wrapper-clause-scope +215092 conjuncted-wg +215094 modifier-scope +modifier-scope +modifier-scope +215098 wrapper-scope +modifier-scope +215101 wrapper-clause-scope +215103 modifier-scope +215105 wrapper-scope +modifier-scope +wrapper-clause-scope +215109 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +215114 wrapper-clause-scope +215119 modifier-scope +conjuncted-wg +215122 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +215128 wrapper-scope +wrapper-scope +modifier-scope +215132 wrapper-clause-scope +215134 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +215141 wrapper-clause-scope +215144 modifier-scope +215146 modifier-clause-scope +modifier-clause-scope +215149 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +215158 wrapper-scope +modifier-scope +215161 conjuncted-wg +conjuncted-wg +215164 wrapper-scope +modifier-scope +modifier-scope +215168 wrapper-clause-scope +215172 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +215179 modifier-scope +215181 conjuncted-wg +modifier-scope +215184 wrapper-clause-scope +215186 wrapper-scope +215189 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +215197 wrapper-clause-scope +215199 modifier-scope +215201 conjuncted-wg +conjuncted-wg +modifier-scope +215205 wrapper-clause-scope +215207 modifier-clause-scope +modifier-clause-scope +215211 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +215218 wrapper-clause-scope +215220 conjuncted-wg +215222 modifier-scope +215224 wrapper-scope +group +modifier-scope +wrapper-clause-scope +215229 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +215237 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +215244 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +215249 conjuncted-wg +215251 wrapper-scope +modifier-scope +conjuncted-wg +215255 wrapper-scope +modifier-scope +215258 wrapper-clause-scope +group +wrapper-clause-scope +215262 modifier-scope +modifier-scope +modifier-scope +215266 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +215273 conjuncted-wg +group +215277 wrapper-scope +215279 modifier-scope +group +modifier-scope +modifier-scope +215284 conjuncted-wg +conjuncted-wg +modifier-scope +215288 wrapper-scope +215290 wrapper-clause-scope +215292 modifier-clause-scope +apposition-group +215295 modifier-scope +wrapper-scope +215298 wrapper-scope +modifier-scope +modifier-scope +215305 modifier-scope +215310 conjuncted-wg +215314 wrapper-clause-scope +215316 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +215321 wrapper-clause-scope +215324 conjuncted-wg +215327 wrapper-clause-scope +215329 modifier-scope +215332 modifier-scope +modifier-scope +215336 modifier-scope +215338 wrapper-scope +215341 conjuncted-wg +215344 modifier-scope +conjuncted-wg +group +215348 modifier-scope +wrapper-clause-scope +215351 modifier-clause-scope +wrapper-clause-scope +215354 modifier-scope +conjuncted-wg +215357 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +215363 wrapper-scope +modifier-scope +215367 conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +215374 wrapper-clause-scope +215377 group +modifier-scope +215380 conjuncted-wg +215382 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +215388 conjuncted-wg +215394 modifier-scope +modifier-scope +modifier-scope +215399 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +apposition-group +modifier-clause-scope +215409 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +215419 wrapper-scope +modifier-clause-scope +modifier-clause-scope +215424 modifier-scope +modifier-scope +modifier-scope +modifier-scope +215429 wrapper-clause-scope +215431 group +215435 conjuncted-wg +215437 modifier-scope +215440 conjuncted-wg +modifier-scope +modifier-scope +215444 wrapper-clause-scope +215447 modifier-scope +wrapper-clause-scope +215451 wrapper-clause-scope +215454 wrapper-scope +215456 conjuncted-wg +conjuncted-wg +215461 modifier-scope +conjuncted-wg +215464 modifier-scope +wrapper-scope +modifier-scope +215470 wrapper-clause-scope +group +215473 modifier-scope +215476 wrapper-scope +modifier-scope +215479 wrapper-clause-scope +215481 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +215486 wrapper-clause-scope +215490 modifier-scope +modifier-scope +conjuncted-wg +215495 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +group +215503 modifier-scope +modifier-scope +modifier-scope +215509 modifier-scope +conjuncted-wg +wrapper-clause-scope +215514 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +215521 wrapper-clause-scope +215524 wrapper-scope +215526 wrapper-scope +modifier-clause-scope +apposition-group +215530 wrapper-scope +215532 wrapper-clause-scope +215536 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +215542 wrapper-scope +modifier-scope +wrapper-scope +215547 wrapper-scope +apposition-group +215550 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +215559 wrapper-clause-scope +215563 conjuncted-wg +215565 modifier-scope +215568 modifier-scope +wrapper-scope +conjuncted-wg +wrapper-clause-scope +215573 modifier-scope +modifier-scope +215576 wrapper-clause-scope +215578 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +215583 wrapper-clause-scope +215586 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +215593 group +modifier-scope +modifier-scope +215599 wrapper-clause-scope +215602 modifier-scope +215604 conjuncted-wg +modifier-scope +215607 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +215613 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +215621 conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +215627 wrapper-clause-scope +wrapper-clause-scope +215632 wrapper-scope +modifier-scope +modifier-scope +215636 conjuncted-wg +conjuncted-wg +215639 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +215644 modifier-scope +modifier-scope +modifier-scope +215648 wrapper-clause-scope +215652 wrapper-scope +wrapper-scope +215655 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +215663 modifier-scope +wrapper-scope +215666 wrapper-clause-scope +215668 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +215677 wrapper-clause-scope +215681 conjuncted-wg +215684 modifier-scope +modifier-scope +215687 wrapper-clause-scope +215690 modifier-scope +conjuncted-wg +modifier-scope +215694 wrapper-scope +modifier-scope +modifier-scope +215698 wrapper-clause-scope +215701 modifier-scope +215703 wrapper-scope +group +group +215709 wrapper-clause-scope +215711 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +215717 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +215727 wrapper-clause-scope +215730 group +modifier-scope +215733 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +215738 modifier-scope +conjuncted-wg +215741 wrapper-scope +215743 conjuncted-wg +conjuncted-wg +215746 modifier-scope +modifier-scope +modifier-scope +215750 wrapper-clause-scope +215752 modifier-scope +215754 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +215761 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +215766 wrapper-clause-scope +215769 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +215776 modifier-scope +215778 wrapper-clause-scope +215781 modifier-scope +modifier-scope +conjuncted-wg +215787 conjuncted-wg +apposition-group +215790 conjuncted-wg +215792 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +215797 wrapper-clause-scope +215799 wrapper-scope +wrapper-clause-scope +215803 group +group +215810 wrapper-clause-scope +215812 modifier-scope +215814 wrapper-scope +modifier-scope +modifier-scope +215818 wrapper-clause-scope +215820 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +215825 group +group +215829 wrapper-scope +conjuncted-wg +215834 group +modifier-scope +modifier-scope +wrapper-clause-scope +215839 conjuncted-wg +215841 modifier-clause-scope +wrapper-clause-scope +215844 conjuncted-wg +215846 wrapper-clause-scope +wrapper-clause-scope +215850 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +215859 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +215864 modifier-clause-scope +215866 modifier-clause-scope +215868 wrapper-scope +215870 wrapper-clause-scope +215872 group +215874 modifier-clause-scope +modifier-scope +wrapper-scope +modifier-scope +215879 wrapper-scope +modifier-scope +215882 wrapper-clause-scope +215885 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +modifier-scope +215894 wrapper-clause-scope +215896 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +215902 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +215909 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +215918 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +215923 conjuncted-wg +215925 group +215927 group +wrapper-clause-scope +215930 conjuncted-wg +modifier-clause-scope +215933 wrapper-scope +modifier-scope +215936 wrapper-scope +modifier-scope +group +215940 group +215942 modifier-scope +conjuncted-wg +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +215951 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +215957 group +wrapper-clause-scope +215960 wrapper-clause-scope +215962 modifier-scope +wrapper-scope +215965 modifier-scope +modifier-scope +215972 wrapper-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +215979 conjuncted-wg +modifier-clause-scope +215982 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +215992 wrapper-clause-scope +group +215996 conjuncted-wg +215998 modifier-clause-scope +modifier-clause-scope +216001 wrapper-scope +modifier-scope +216004 wrapper-clause-scope +216007 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +216012 modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +216020 conjuncted-wg +conjuncted-wg +conjuncted-wg +216025 wrapper-scope +216029 wrapper-clause-scope +wrapper-clause-scope +216034 wrapper-scope +conjuncted-wg +216038 modifier-scope +modifier-scope +216041 wrapper-clause-scope +216044 wrapper-scope +modifier-scope +216050 conjuncted-wg +conjuncted-wg +216053 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +216060 wrapper-clause-scope +216063 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +216070 wrapper-clause-scope +216073 conjuncted-wg +wrapper-scope +216077 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +216085 wrapper-clause-scope +216087 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +216093 modifier-scope +wrapper-scope +apposition-group +modifier-scope +216098 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +216104 wrapper-clause-scope +216107 modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +216113 wrapper-clause-scope +216117 wrapper-clause-scope +216120 wrapper-scope +wrapper-scope +conjuncted-wg +216124 wrapper-scope +modifier-scope +216127 wrapper-clause-scope +216129 wrapper-clause-scope +216132 wrapper-scope +conjuncted-wg +216135 modifier-scope +216137 modifier-scope +wrapper-scope +216140 wrapper-clause-scope +216145 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +216153 modifier-scope +conjuncted-wg +216156 modifier-scope +216158 wrapper-clause-scope +216161 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +216166 wrapper-clause-scope +216168 apposition-group +group +modifier-clause-scope +modifier-scope +216173 modifier-scope +216175 modifier-scope +modifier-scope +conjuncted-wg +group +216180 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +216185 conjuncted-wg +216189 modifier-scope +216191 wrapper-scope +conjuncted-wg +216195 wrapper-scope +group +modifier-scope +wrapper-clause-scope +216200 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +216205 wrapper-clause-scope +216207 modifier-scope +modifier-scope +216210 wrapper-clause-scope +group +wrapper-clause-scope +216214 modifier-scope +216217 group +modifier-scope +wrapper-clause-scope +216221 wrapper-scope +group +modifier-scope +216225 conjuncted-wg +modifier-scope +wrapper-scope +216229 wrapper-clause-scope +wrapper-clause-scope +216233 modifier-scope +modifier-scope +conjuncted-wg +216237 modifier-scope +wrapper-scope +216240 wrapper-clause-scope +216242 modifier-scope +216244 conjuncted-wg +modifier-scope +216247 wrapper-scope +modifier-scope +modifier-scope +216251 modifier-scope +wrapper-scope +modifier-scope +216255 wrapper-clause-scope +216259 wrapper-scope +modifier-scope +216262 wrapper-scope +modifier-scope +conjuncted-wg +216266 modifier-scope +modifier-scope +216269 wrapper-clause-scope +216272 modifier-scope +wrapper-scope +216275 wrapper-clause-scope +216277 wrapper-scope +modifier-scope +216280 group +modifier-scope +wrapper-scope +216284 conjuncted-wg +216286 conjuncted-wg +216290 wrapper-scope +216292 wrapper-clause-scope +group +wrapper-clause-scope +216296 modifier-scope +216299 wrapper-scope +216301 wrapper-clause-scope +216303 modifier-scope +216306 wrapper-clause-scope +216310 wrapper-scope +wrapper-scope +conjuncted-wg +group +216315 wrapper-clause-scope +216317 wrapper-scope +modifier-scope +216320 wrapper-scope +apposition-group +216323 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +216329 wrapper-clause-scope +216331 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +216337 wrapper-clause-scope +216340 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +216349 conjuncted-wg +216352 modifier-clause-scope +modifier-clause-scope +216356 wrapper-clause-scope +216358 group +group +modifier-clause-scope +modifier-scope +216363 modifier-scope +modifier-scope +216366 modifier-scope +216368 modifier-scope +modifier-scope +modifier-scope +216372 wrapper-clause-scope +216374 wrapper-scope +216376 wrapper-clause-scope +group +wrapper-clause-scope +216381 conjuncted-wg +216383 modifier-scope +modifier-scope +216387 group +wrapper-clause-scope +216391 modifier-scope +216394 wrapper-scope +modifier-scope +modifier-scope +216398 wrapper-clause-scope +216401 wrapper-clause-scope +216404 wrapper-scope +modifier-scope +216407 modifier-clause-scope +modifier-scope +216410 group +216412 modifier-scope +modifier-scope +modifier-scope +216420 modifier-scope +conjuncted-wg +216425 modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +216433 wrapper-clause-scope +216435 wrapper-scope +modifier-scope +216438 wrapper-clause-scope +216442 conjuncted-wg +216444 modifier-scope +216447 wrapper-scope +modifier-scope +group +wrapper-scope +216452 wrapper-clause-scope +216454 modifier-scope +modifier-scope +216457 wrapper-clause-scope +216460 modifier-scope +modifier-scope +216463 wrapper-clause-scope +216465 modifier-scope +modifier-scope +modifier-scope +modifier-scope +216471 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +216481 modifier-scope +216484 modifier-scope +modifier-scope +modifier-scope +modifier-scope +216489 conjuncted-wg +216491 apposition-group +216495 conjuncted-wg +216498 wrapper-clause-scope +216501 modifier-scope +wrapper-scope +conjuncted-wg +216506 modifier-scope +216508 modifier-scope +modifier-scope +216511 conjuncted-wg +216514 modifier-scope +wrapper-scope +216517 modifier-scope +216522 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +216528 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +216533 wrapper-clause-scope +216536 wrapper-scope +modifier-scope +216539 conjuncted-wg +216541 modifier-scope +conjuncted-wg +216544 modifier-scope +216546 wrapper-clause-scope +216549 modifier-scope +wrapper-clause-scope +216552 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +216558 modifier-scope +modifier-scope +conjuncted-wg +216562 modifier-scope +modifier-scope +216565 wrapper-clause-scope +216567 modifier-scope +216570 conjuncted-wg +216573 modifier-scope +modifier-scope +modifier-scope +216577 modifier-scope +216581 modifier-scope +216583 wrapper-clause-scope +216585 modifier-scope +216587 group +216589 modifier-scope +wrapper-clause-scope +216593 wrapper-clause-scope +216598 conjuncted-wg +216602 modifier-scope +conjuncted-wg +conjuncted-wg +216610 wrapper-clause-scope +216613 wrapper-clause-scope +216617 wrapper-scope +group +modifier-scope +conjuncted-wg +216623 conjuncted-wg +modifier-scope +modifier-scope +216627 wrapper-clause-scope +216629 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +216639 wrapper-clause-scope +216643 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +216653 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +216659 wrapper-scope +modifier-scope +conjuncted-wg +216664 modifier-scope +216666 wrapper-clause-scope +group +216670 modifier-scope +modifier-scope +216674 modifier-scope +modifier-scope +216677 wrapper-clause-scope +216679 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +group +216687 modifier-scope +wrapper-clause-scope +216690 wrapper-clause-scope +216693 wrapper-scope +216695 wrapper-clause-scope +216697 modifier-scope +wrapper-scope +group +216704 modifier-scope +wrapper-scope +conjuncted-wg +216708 wrapper-clause-scope +216711 conjuncted-wg +216715 wrapper-clause-scope +216717 modifier-scope +modifier-scope +modifier-scope +modifier-scope +216722 wrapper-clause-scope +216727 wrapper-clause-scope +216729 conjuncted-wg +216732 conjuncted-wg +216736 wrapper-scope +modifier-scope +216739 wrapper-clause-scope +216743 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +216751 modifier-scope +conjuncted-wg +216755 wrapper-clause-scope +216759 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +apposition-group +216765 modifier-scope +modifier-scope +216768 wrapper-clause-scope +216771 wrapper-scope +wrapper-clause-scope +216774 modifier-scope +wrapper-scope +conjuncted-wg +216778 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +216784 conjuncted-wg +216786 wrapper-clause-scope +216790 modifier-scope +conjuncted-wg +216793 wrapper-scope +conjuncted-wg +wrapper-clause-scope +216797 apposition-group +group +modifier-scope +modifier-scope +216803 wrapper-clause-scope +group +216807 modifier-scope +wrapper-scope +conjuncted-wg +216812 modifier-scope +conjuncted-wg +modifier-scope +216817 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +216822 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +216829 wrapper-clause-scope +216832 modifier-scope +216835 conjuncted-wg +216838 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +216844 modifier-scope +conjuncted-wg +216848 modifier-scope +modifier-scope +216851 wrapper-scope +modifier-scope +216854 wrapper-clause-scope +216858 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +216863 wrapper-clause-scope +216866 wrapper-clause-scope +216868 modifier-scope +216871 wrapper-clause-scope +216873 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +216879 modifier-scope +216881 wrapper-clause-scope +216885 modifier-scope +conjuncted-wg +modifier-scope +216889 conjuncted-wg +216892 modifier-scope +wrapper-scope +216895 modifier-scope +conjuncted-wg +modifier-scope +216899 wrapper-clause-scope +216901 modifier-scope +wrapper-scope +216904 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +216911 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +216916 wrapper-clause-scope +216919 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +216925 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +216931 wrapper-clause-scope +wrapper-clause-scope +216935 modifier-scope +wrapper-scope +conjuncted-wg +216939 modifier-scope +216941 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +216948 wrapper-clause-scope +group +wrapper-clause-scope +216953 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +216958 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +216969 conjuncted-wg +modifier-scope +216972 wrapper-clause-scope +216974 modifier-scope +modifier-scope +216977 wrapper-scope +wrapper-scope +modifier-scope +216981 wrapper-clause-scope +216984 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +216989 wrapper-clause-scope +216992 wrapper-clause-scope +216994 modifier-scope +wrapper-scope +conjuncted-wg +216999 modifier-scope +wrapper-scope +217002 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +217007 modifier-scope +wrapper-scope +217010 wrapper-clause-scope +group +217013 wrapper-scope +modifier-scope +modifier-scope +group +217018 modifier-scope +modifier-scope +wrapper-scope +217023 modifier-scope +217025 wrapper-clause-scope +217027 conjuncted-wg +217030 wrapper-scope +modifier-scope +217033 modifier-scope +conjuncted-wg +wrapper-clause-scope +217037 conjuncted-wg +217039 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +217046 conjuncted-wg +217049 modifier-scope +217051 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +group +217059 wrapper-clause-scope +217061 modifier-scope +modifier-scope +217064 conjuncted-wg +group +217069 modifier-scope +modifier-scope +wrapper-clause-scope +217074 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +217080 wrapper-scope +modifier-scope +group +217084 group +217088 group +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +217094 wrapper-scope +wrapper-clause-scope +217097 modifier-clause-scope +217099 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +217108 wrapper-clause-scope +217112 modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +217117 wrapper-scope +modifier-scope +conjuncted-wg +217122 conjuncted-wg +217124 modifier-scope +217126 wrapper-clause-scope +217129 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +217135 modifier-scope +217137 wrapper-scope +modifier-scope +217140 wrapper-clause-scope +217144 conjuncted-wg +217146 modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +217151 wrapper-scope +217153 modifier-scope +217155 wrapper-clause-scope +217162 group +modifier-scope +wrapper-clause-scope +217167 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +217174 modifier-scope +217176 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +217181 wrapper-scope +modifier-scope +217186 conjuncted-wg +conjuncted-wg +modifier-scope +217190 wrapper-clause-scope +217192 wrapper-scope +modifier-scope +modifier-scope +217196 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +217202 modifier-clause-scope +217204 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +217210 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +217216 conjuncted-wg +217218 wrapper-clause-scope +217220 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +217225 wrapper-clause-scope +group +217228 wrapper-scope +217230 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +217234 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +217241 modifier-scope +modifier-scope +217244 wrapper-clause-scope +217247 modifier-scope +modifier-scope +217251 group +217253 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +217258 conjuncted-wg +modifier-scope +217261 wrapper-clause-scope +wrapper-clause-scope +217265 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +217272 modifier-scope +wrapper-clause-scope +217275 apposition-group +217277 wrapper-scope +217279 modifier-scope +wrapper-scope +wrapper-scope +apposition-group +217286 wrapper-scope +217288 wrapper-clause-scope +217291 modifier-scope +conjuncted-wg +217294 conjuncted-wg +217297 wrapper-scope +modifier-scope +217301 modifier-scope +wrapper-scope +modifier-scope +217305 wrapper-clause-scope +217307 modifier-scope +217310 wrapper-scope +217312 conjuncted-wg +group +modifier-scope +conjuncted-wg +modifier-clause-scope +217318 conjuncted-wg +modifier-scope +wrapper-scope +217323 wrapper-scope +217325 wrapper-scope +modifier-scope +wrapper-scope +217329 wrapper-clause-scope +group +217334 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +217340 modifier-scope +217342 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +wrapper-clause-scope +217351 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +217357 wrapper-scope +wrapper-clause-scope +217360 wrapper-scope +conjuncted-wg +217363 wrapper-clause-scope +217365 modifier-scope +217367 wrapper-clause-scope +217369 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +217375 conjuncted-wg +conjuncted-wg +217378 wrapper-clause-scope +group +wrapper-clause-scope +217382 wrapper-scope +modifier-scope +217385 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +217390 modifier-scope +modifier-scope +217393 modifier-scope +217395 modifier-scope +217397 wrapper-clause-scope +group +217401 conjuncted-wg +217405 modifier-scope +wrapper-scope +group +217409 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +217416 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +217421 wrapper-clause-scope +217424 wrapper-scope +modifier-clause-scope +apposition-group +modifier-clause-scope +modifier-clause-scope +217430 group +217432 modifier-scope +217434 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +217439 wrapper-clause-scope +217442 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +217452 modifier-scope +modifier-scope +217455 conjuncted-wg +217458 wrapper-clause-scope +217460 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +217465 group +217468 conjuncted-wg +217470 wrapper-clause-scope +217473 wrapper-scope +conjuncted-wg +217476 wrapper-clause-scope +217478 wrapper-clause-scope +217480 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +217485 wrapper-clause-scope +217488 conjuncted-wg +modifier-scope +217491 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +217496 wrapper-clause-scope +group +217499 modifier-scope +modifier-scope +217503 modifier-scope +modifier-scope +conjuncted-wg +217507 wrapper-scope +modifier-scope +217510 wrapper-clause-scope +217512 wrapper-scope +modifier-scope +modifier-scope +217516 modifier-scope +217518 wrapper-clause-scope +217521 modifier-scope +217523 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +217528 conjuncted-wg +group +wrapper-clause-scope +217533 modifier-scope +conjuncted-wg +modifier-scope +217540 wrapper-scope +conjuncted-wg +group +group +wrapper-clause-scope +217546 modifier-scope +wrapper-scope +217549 conjuncted-wg +conjuncted-wg +group +modifier-scope +wrapper-scope +217557 modifier-scope +217559 wrapper-clause-scope +217561 wrapper-scope +modifier-scope +217564 wrapper-clause-scope +217567 group +modifier-scope +wrapper-scope +modifier-scope +217572 wrapper-clause-scope +217574 modifier-scope +modifier-scope +217577 wrapper-clause-scope +group +217581 modifier-scope +217583 modifier-scope +217585 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +217590 wrapper-scope +217592 conjuncted-wg +group +217595 wrapper-scope +modifier-scope +wrapper-clause-scope +217600 wrapper-clause-scope +group +217603 wrapper-scope +217606 conjuncted-wg +217609 wrapper-scope +modifier-scope +modifier-scope +217613 wrapper-clause-scope +217617 wrapper-scope +modifier-scope +217623 conjuncted-wg +217625 group +217627 wrapper-scope +217629 modifier-scope +wrapper-scope +modifier-scope +217633 wrapper-clause-scope +217637 wrapper-scope +217640 conjuncted-wg +217642 modifier-scope +wrapper-scope +conjuncted-wg +217647 modifier-scope +217649 modifier-scope +217651 modifier-scope +conjuncted-wg +217654 modifier-scope +modifier-scope +217657 wrapper-clause-scope +217659 group +group +modifier-clause-scope +modifier-clause-scope +modifier-scope +217666 modifier-scope +modifier-scope +217669 wrapper-scope +modifier-scope +wrapper-scope +217675 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +217682 modifier-scope +217684 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +217689 modifier-scope +modifier-scope +217692 wrapper-clause-scope +217696 wrapper-scope +modifier-scope +conjuncted-wg +217703 conjuncted-wg +conjuncted-wg +217706 modifier-scope +modifier-scope +modifier-scope +217710 wrapper-clause-scope +group +group +217715 wrapper-scope +modifier-scope +217719 modifier-scope +modifier-scope +217722 apposition-group +217725 wrapper-clause-scope +217727 wrapper-scope +modifier-scope +wrapper-clause-scope +217731 modifier-scope +217733 wrapper-scope +modifier-scope +217736 modifier-scope +217738 wrapper-clause-scope +217741 wrapper-scope +wrapper-clause-scope +217744 modifier-scope +wrapper-scope +217749 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +217754 modifier-scope +conjuncted-wg +217757 wrapper-scope +wrapper-clause-scope +217760 modifier-scope +217763 wrapper-clause-scope +group +217766 wrapper-scope +wrapper-clause-scope +217769 wrapper-clause-scope +217771 modifier-scope +217773 wrapper-clause-scope +217775 wrapper-clause-scope +217777 wrapper-scope +217779 wrapper-clause-scope +217782 wrapper-scope +modifier-scope +modifier-scope +217786 wrapper-clause-scope +217789 modifier-scope +217791 modifier-scope +wrapper-clause-scope +217794 wrapper-scope +wrapper-clause-scope +217797 wrapper-scope +217800 wrapper-scope +modifier-scope +217803 wrapper-clause-scope +217806 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +217812 wrapper-clause-scope +group +217815 modifier-scope +217818 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +217825 conjuncted-wg +217828 wrapper-clause-scope +217830 modifier-scope +modifier-scope +modifier-scope +217834 wrapper-clause-scope +217837 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +217843 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +217849 wrapper-clause-scope +group +wrapper-clause-scope +217854 conjuncted-wg +217856 modifier-scope +wrapper-scope +modifier-scope +217861 wrapper-scope +modifier-scope +217864 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +217869 wrapper-clause-scope +217871 wrapper-scope +modifier-scope +wrapper-clause-scope +217875 modifier-clause-scope +wrapper-clause-scope +217878 modifier-scope +modifier-scope +modifier-scope +modifier-scope +217884 conjuncted-wg +conjuncted-wg +217887 wrapper-clause-scope +217889 group +modifier-clause-scope +wrapper-clause-scope +217893 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +217900 modifier-clause-scope +wrapper-scope +wrapper-clause-scope +217904 wrapper-scope +modifier-scope +modifier-scope +217908 conjuncted-wg +conjuncted-wg +217912 wrapper-scope +modifier-scope +conjuncted-wg +217916 modifier-scope +modifier-scope +modifier-scope +217920 wrapper-clause-scope +217922 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +217927 modifier-scope +217929 wrapper-scope +wrapper-clause-scope +217932 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +217941 modifier-clause-scope +apposition-group +217945 wrapper-clause-scope +217947 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +217954 wrapper-clause-scope +217957 modifier-scope +modifier-scope +modifier-scope +217963 modifier-scope +conjuncted-wg +217966 modifier-scope +conjuncted-wg +217970 wrapper-clause-scope +217973 wrapper-scope +apposition-group +modifier-scope +217977 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +217982 wrapper-scope +wrapper-clause-scope +217986 conjuncted-wg +217988 wrapper-scope +modifier-scope +modifier-scope +217992 wrapper-clause-scope +217995 modifier-clause-scope +group +217998 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +218002 modifier-scope +conjuncted-wg +218006 wrapper-scope +modifier-scope +conjuncted-wg +218010 modifier-scope +modifier-scope +group +modifier-scope +218015 wrapper-clause-scope +218017 modifier-clause-scope +wrapper-clause-scope +218022 conjuncted-wg +modifier-scope +modifier-scope +218026 wrapper-clause-scope +218028 modifier-clause-scope +wrapper-clause-scope +218031 modifier-scope +218033 modifier-scope +wrapper-scope +218036 wrapper-clause-scope +218039 modifier-scope +modifier-scope +conjuncted-wg +218043 modifier-scope +modifier-scope +218047 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218052 conjuncted-wg +218054 wrapper-clause-scope +group +wrapper-clause-scope +218059 modifier-scope +wrapper-scope +modifier-scope +218064 modifier-scope +218066 conjuncted-wg +wrapper-scope +218069 wrapper-clause-scope +218071 wrapper-scope +wrapper-clause-scope +218075 modifier-scope +218077 wrapper-clause-scope +218080 wrapper-scope +modifier-scope +group +modifier-clause-scope +wrapper-clause-scope +218087 conjuncted-wg +wrapper-scope +modifier-scope +218091 wrapper-clause-scope +218093 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +218102 wrapper-clause-scope +218104 group +modifier-clause-scope +218108 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +218117 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +218124 wrapper-clause-scope +218126 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +218134 conjuncted-wg +wrapper-clause-scope +218137 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +218145 modifier-scope +218147 wrapper-clause-scope +218149 wrapper-clause-scope +218151 wrapper-scope +218153 wrapper-clause-scope +group +218157 modifier-scope +wrapper-scope +218161 modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +218171 modifier-scope +modifier-scope +218175 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +218180 wrapper-clause-scope +218184 conjuncted-wg +218188 modifier-scope +modifier-scope +218191 wrapper-clause-scope +218194 modifier-scope +modifier-scope +conjuncted-wg +218198 wrapper-scope +modifier-scope +218201 group +group +218204 conjuncted-wg +modifier-scope +218207 wrapper-clause-scope +218211 wrapper-scope +modifier-scope +modifier-scope +218215 wrapper-clause-scope +218217 group +modifier-scope +modifier-scope +modifier-scope +218223 wrapper-scope +218225 wrapper-scope +modifier-scope +218228 wrapper-clause-scope +wrapper-clause-scope +218231 modifier-scope +wrapper-clause-scope +218235 modifier-scope +wrapper-scope +conjuncted-wg +218239 modifier-scope +218241 wrapper-scope +218243 wrapper-clause-scope +group +218246 wrapper-scope +modifier-scope +218249 modifier-scope +218251 wrapper-clause-scope +218253 modifier-scope +218255 modifier-scope +218257 modifier-scope +218259 wrapper-clause-scope +218262 wrapper-clause-scope +218264 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +group +218272 modifier-scope +modifier-scope +218275 wrapper-clause-scope +218277 modifier-scope +218279 modifier-scope +218282 modifier-scope +218284 modifier-scope +218287 modifier-scope +modifier-scope +modifier-scope +218291 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +218296 wrapper-clause-scope +218299 wrapper-scope +218303 conjuncted-wg +218305 modifier-scope +218307 wrapper-clause-scope +218309 group +modifier-scope +modifier-scope +218313 conjuncted-wg +conjuncted-wg +218316 modifier-scope +modifier-scope +218319 wrapper-clause-scope +218321 conjuncted-wg +group +wrapper-clause-scope +218326 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +group +218334 conjuncted-wg +218337 conjuncted-wg +group +wrapper-clause-scope +218342 wrapper-scope +modifier-scope +modifier-scope +218346 wrapper-clause-scope +218349 wrapper-scope +modifier-scope +218352 modifier-scope +218354 wrapper-scope +218356 wrapper-scope +modifier-scope +modifier-scope +218360 wrapper-clause-scope +218363 modifier-scope +218365 wrapper-clause-scope +218367 wrapper-scope +wrapper-clause-scope +218370 modifier-scope +modifier-scope +218374 modifier-scope +conjuncted-wg +218379 wrapper-scope +218381 wrapper-clause-scope +218386 modifier-scope +modifier-scope +conjuncted-wg +218390 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +group +218396 modifier-scope +group +218399 wrapper-scope +modifier-scope +218403 wrapper-scope +modifier-scope +218406 group +wrapper-clause-scope +218409 wrapper-scope +218411 wrapper-clause-scope +218415 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +218420 conjuncted-wg +conjuncted-wg +218424 modifier-scope +conjuncted-wg +conjuncted-wg +group +218429 conjuncted-wg +218431 wrapper-clause-scope +218434 wrapper-scope +218436 wrapper-clause-scope +218439 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +218447 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +218453 modifier-scope +218455 wrapper-clause-scope +group +218458 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218465 modifier-scope +218468 modifier-scope +conjuncted-wg +218471 modifier-scope +wrapper-scope +218474 wrapper-clause-scope +218476 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +218481 wrapper-scope +218483 wrapper-clause-scope +218486 modifier-clause-scope +modifier-scope +218490 wrapper-scope +modifier-scope +group +218494 modifier-scope +218496 modifier-scope +wrapper-scope +218499 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +218506 wrapper-clause-scope +218510 modifier-scope +conjuncted-wg +218514 group +218516 wrapper-clause-scope +218518 modifier-scope +modifier-scope +wrapper-scope +218522 wrapper-clause-scope +218526 conjuncted-wg +218528 modifier-scope +conjuncted-wg +218531 conjuncted-wg +218533 wrapper-scope +wrapper-scope +218536 wrapper-clause-scope +218539 modifier-scope +218541 conjuncted-wg +218543 modifier-scope +218545 wrapper-clause-scope +group +218549 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +218555 modifier-scope +wrapper-clause-scope +218558 wrapper-scope +218562 wrapper-clause-scope +218564 wrapper-clause-scope +218566 wrapper-scope +modifier-scope +group +218571 wrapper-scope +218574 wrapper-clause-scope +218576 wrapper-scope +conjuncted-wg +218579 modifier-scope +wrapper-scope +conjuncted-wg +218583 wrapper-clause-scope +218585 wrapper-scope +218587 wrapper-clause-scope +group +218590 modifier-scope +218592 modifier-scope +wrapper-clause-scope +218596 wrapper-scope +modifier-scope +wrapper-clause-scope +group +218601 wrapper-clause-scope +218604 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +218609 wrapper-clause-scope +218612 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218619 wrapper-clause-scope +group +wrapper-clause-scope +218623 wrapper-scope +218627 wrapper-scope +apposition-group +modifier-scope +218631 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +218638 modifier-scope +wrapper-scope +218641 modifier-scope +conjuncted-wg +conjuncted-wg +group +wrapper-clause-scope +218647 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218652 wrapper-clause-scope +218654 modifier-clause-scope +wrapper-clause-scope +218657 wrapper-clause-scope +wrapper-clause-scope +218661 conjuncted-wg +218664 conjuncted-wg +wrapper-scope +218668 conjuncted-wg +conjuncted-wg +modifier-scope +218672 modifier-scope +wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +218681 wrapper-clause-scope +group +218686 modifier-scope +wrapper-scope +218689 wrapper-clause-scope +218691 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +218695 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +218700 wrapper-clause-scope +218703 conjuncted-wg +218705 wrapper-clause-scope +218707 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +218714 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +218720 wrapper-scope +group +modifier-scope +218724 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +218730 wrapper-clause-scope +group +218734 wrapper-clause-scope +218736 modifier-scope +modifier-scope +apposition-group +modifier-scope +218741 wrapper-scope +218743 modifier-scope +218745 wrapper-clause-scope +group +218748 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +218753 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +218758 wrapper-clause-scope +218760 modifier-scope +modifier-scope +modifier-scope +modifier-scope +218767 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +apposition-group +218772 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218777 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +218782 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218788 wrapper-clause-scope +218791 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +218797 modifier-scope +conjuncted-wg +218800 wrapper-scope +modifier-scope +218804 wrapper-clause-scope +218806 modifier-scope +wrapper-scope +218809 wrapper-clause-scope +218815 conjuncted-wg +218817 wrapper-scope +modifier-scope +218820 wrapper-clause-scope +218822 modifier-scope +218824 modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +218835 conjuncted-wg +218837 modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +218844 modifier-scope +218846 conjuncted-wg +conjuncted-wg +218850 wrapper-clause-scope +218853 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +218858 wrapper-scope +modifier-scope +modifier-scope +218863 wrapper-clause-scope +218868 wrapper-clause-scope +218870 conjuncted-wg +218872 modifier-scope +modifier-scope +group +modifier-scope +wrapper-clause-scope +218881 conjuncted-wg +218884 wrapper-clause-scope +218888 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +218893 wrapper-clause-scope +218896 modifier-scope +conjuncted-wg +218900 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +218905 wrapper-scope +modifier-clause-scope +apposition-group +218912 modifier-scope +modifier-scope +218915 wrapper-clause-scope +218917 wrapper-scope +modifier-scope +218920 wrapper-clause-scope +218922 wrapper-clause-scope +218926 wrapper-scope +218929 wrapper-scope +modifier-scope +conjuncted-wg +group +218934 modifier-scope +wrapper-scope +modifier-scope +218938 wrapper-scope +218940 wrapper-clause-scope +218943 modifier-clause-scope +218945 wrapper-scope +218948 wrapper-clause-scope +218953 modifier-scope +conjuncted-wg +218956 wrapper-scope +conjuncted-wg +group +218960 wrapper-scope +wrapper-clause-scope +218963 modifier-scope +wrapper-scope +modifier-scope +218967 wrapper-clause-scope +218971 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +218977 wrapper-scope +218979 wrapper-clause-scope +group +wrapper-clause-scope +218984 modifier-scope +218990 wrapper-scope +218992 conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +218999 modifier-scope +wrapper-scope +modifier-scope +219003 conjuncted-wg +219006 wrapper-scope +modifier-scope +conjuncted-wg +219010 wrapper-scope +modifier-scope +219013 wrapper-clause-scope +219017 modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +219023 modifier-scope +modifier-scope +wrapper-scope +219027 wrapper-clause-scope +219030 modifier-scope +219032 wrapper-scope +conjuncted-wg +219036 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +219043 wrapper-scope +modifier-scope +wrapper-scope +219047 wrapper-clause-scope +219049 group +group +modifier-scope +219054 wrapper-clause-scope +group +219057 modifier-scope +219060 group +modifier-scope +wrapper-scope +modifier-scope +modifier-clause-scope +219066 conjuncted-wg +219070 wrapper-scope +conjuncted-wg +219074 modifier-scope +modifier-scope +modifier-scope +modifier-scope +219079 modifier-scope +conjuncted-wg +modifier-scope +219083 modifier-scope +modifier-scope +modifier-scope +219088 modifier-clause-scope +apposition-group +219091 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +219097 wrapper-scope +modifier-scope +219100 wrapper-clause-scope +group +wrapper-clause-scope +219106 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-clause-scope +219111 wrapper-scope +219114 modifier-scope +group +219119 conjuncted-wg +219121 modifier-scope +modifier-scope +wrapper-clause-scope +219125 group +219128 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +219135 wrapper-clause-scope +219140 modifier-scope +modifier-scope +modifier-scope +219144 wrapper-clause-scope +219146 wrapper-scope +modifier-scope +modifier-scope +219150 wrapper-scope +219152 wrapper-clause-scope +219154 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +219160 apposition-group +219162 wrapper-scope +group +group +modifier-scope +modifier-scope +219168 wrapper-clause-scope +group +219171 wrapper-scope +219173 modifier-scope +219175 wrapper-clause-scope +219178 wrapper-clause-scope +219180 modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +219185 modifier-scope +modifier-scope +219188 wrapper-clause-scope +219191 wrapper-scope +modifier-clause-scope +219194 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +219201 wrapper-clause-scope +219205 modifier-scope +conjuncted-wg +219209 group +219213 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +219217 wrapper-scope +modifier-scope +conjuncted-wg +219221 modifier-scope +modifier-scope +219224 wrapper-clause-scope +219226 wrapper-scope +wrapper-clause-scope +219229 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +219239 modifier-scope +conjuncted-wg +219242 modifier-scope +219244 wrapper-clause-scope +219248 wrapper-clause-scope +219251 wrapper-clause-scope +219256 modifier-clause-scope +modifier-scope +219259 wrapper-scope +219265 wrapper-scope +conjuncted-wg +219268 wrapper-scope +wrapper-clause-scope +219271 modifier-scope +conjuncted-wg +219274 wrapper-clause-scope +219278 wrapper-scope +conjuncted-wg +219281 modifier-scope +219283 modifier-scope +219285 wrapper-clause-scope +219287 wrapper-scope +modifier-clause-scope +modifier-clause-scope +219294 conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +219301 modifier-scope +219303 modifier-scope +modifier-clause-scope +modifier-clause-scope +219308 wrapper-scope +wrapper-scope +modifier-scope +219312 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +219318 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +219324 wrapper-clause-scope +group +wrapper-clause-scope +219328 modifier-scope +modifier-scope +219333 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +219338 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +219344 wrapper-scope +modifier-scope +219347 group +group +219351 wrapper-clause-scope +219355 group +modifier-scope +wrapper-clause-scope +219359 wrapper-scope +219361 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +219370 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +219375 modifier-scope +modifier-scope +modifier-scope +219379 wrapper-clause-scope +group +219382 wrapper-scope +219384 group +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +219390 wrapper-clause-scope +219392 wrapper-scope +modifier-scope +modifier-scope +219396 wrapper-clause-scope +219400 modifier-scope +modifier-scope +conjuncted-wg +219405 modifier-scope +modifier-scope +conjuncted-wg +219410 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +219415 modifier-scope +219417 wrapper-clause-scope +group +219422 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +219427 modifier-scope +219431 conjuncted-wg +wrapper-scope +219434 wrapper-clause-scope +219438 modifier-scope +conjuncted-wg +modifier-scope +219442 modifier-scope +219447 modifier-scope +conjuncted-wg +219451 modifier-scope +conjuncted-wg +219456 conjuncted-wg +219458 wrapper-scope +219460 wrapper-clause-scope +219462 modifier-scope +wrapper-scope +modifier-scope +219466 wrapper-clause-scope +219470 modifier-scope +wrapper-scope +modifier-scope +219474 wrapper-scope +modifier-scope +219477 wrapper-clause-scope +group +wrapper-clause-scope +219481 wrapper-scope +modifier-scope +group +219486 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +219494 modifier-scope +modifier-scope +modifier-scope +219500 wrapper-clause-scope +219504 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +219511 wrapper-scope +219513 wrapper-clause-scope +219516 wrapper-clause-scope +219518 group +modifier-scope +wrapper-clause-scope +219523 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +219528 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +219535 wrapper-clause-scope +219537 modifier-scope +219539 conjuncted-wg +group +219542 group +group +modifier-scope +modifier-scope +219547 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +219554 wrapper-scope +modifier-scope +219557 wrapper-clause-scope +group +219561 modifier-scope +219563 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +219568 wrapper-clause-scope +219571 modifier-scope +group +modifier-scope +219576 group +group +219581 conjuncted-wg +219583 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +219589 wrapper-clause-scope +219592 wrapper-clause-scope +219594 group +modifier-scope +219597 wrapper-clause-scope +219600 modifier-scope +219603 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +219608 wrapper-scope +modifier-scope +modifier-scope +219612 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +219620 modifier-scope +modifier-scope +wrapper-clause-scope +219624 modifier-scope +219627 modifier-scope +modifier-scope +wrapper-scope +219632 conjuncted-wg +wrapper-scope +219635 conjuncted-wg +conjuncted-wg +219639 modifier-scope +modifier-scope +conjuncted-wg +219643 modifier-scope +modifier-scope +219647 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +219653 modifier-clause-scope +wrapper-clause-scope +219657 wrapper-scope +wrapper-clause-scope +219661 wrapper-clause-scope +219666 conjuncted-wg +219668 modifier-scope +wrapper-scope +219671 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +219678 wrapper-scope +modifier-scope +conjuncted-wg +219683 group +group +219689 wrapper-clause-scope +219694 wrapper-clause-scope +219696 wrapper-scope +219698 apposition-group +group +modifier-scope +219703 wrapper-clause-scope +219705 conjuncted-wg +219707 wrapper-clause-scope +219709 wrapper-scope +modifier-scope +conjuncted-wg +219713 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +219718 wrapper-clause-scope +219723 wrapper-clause-scope +219725 modifier-scope +wrapper-scope +group +219730 wrapper-scope +219732 wrapper-scope +modifier-clause-scope +219737 wrapper-clause-scope +219739 wrapper-clause-scope +219741 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +219747 wrapper-scope +wrapper-clause-scope +219750 wrapper-scope +219752 wrapper-clause-scope +219754 group +modifier-scope +modifier-clause-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +219762 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +219769 wrapper-scope +conjuncted-wg +219772 group +group +219779 modifier-scope +modifier-scope +wrapper-scope +219783 wrapper-clause-scope +219786 modifier-scope +modifier-scope +modifier-scope +modifier-scope +219792 modifier-scope +modifier-scope +conjuncted-wg +219796 modifier-scope +conjuncted-wg +219799 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +219805 wrapper-scope +modifier-scope +modifier-clause-scope +219810 conjuncted-wg +219812 wrapper-clause-scope +219818 conjuncted-wg +219820 modifier-scope +modifier-scope +219823 modifier-scope +modifier-scope +219826 wrapper-clause-scope +219830 wrapper-scope +conjuncted-wg +219833 wrapper-scope +modifier-scope +219837 wrapper-scope +conjuncted-wg +219841 group +219844 conjuncted-wg +219846 wrapper-scope +wrapper-scope +wrapper-clause-scope +219850 modifier-scope +modifier-scope +wrapper-scope +219857 wrapper-clause-scope +219859 wrapper-scope +219861 conjuncted-wg +wrapper-scope +modifier-scope +wrapper-clause-scope +219866 wrapper-scope +219868 wrapper-clause-scope +group +wrapper-clause-scope +219872 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +219878 modifier-scope +wrapper-scope +219882 conjuncted-wg +219884 conjuncted-wg +219886 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +219891 wrapper-clause-scope +219893 wrapper-scope +group +219896 wrapper-clause-scope +219898 wrapper-scope +219900 wrapper-clause-scope +219903 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +219908 modifier-scope +modifier-scope +219911 group +219913 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +219920 wrapper-clause-scope +group +219924 conjuncted-wg +219927 modifier-scope +conjuncted-wg +219930 wrapper-scope +modifier-scope +219933 modifier-scope +219935 wrapper-scope +modifier-scope +219939 wrapper-clause-scope +219942 wrapper-scope +modifier-scope +219945 wrapper-clause-scope +group +wrapper-clause-scope +219949 modifier-scope +219951 wrapper-scope +modifier-clause-scope +modifier-clause-scope +219955 modifier-scope +wrapper-clause-scope +219959 modifier-scope +219961 conjuncted-wg +219963 wrapper-clause-scope +219966 modifier-scope +219968 modifier-scope +219970 group +219973 wrapper-clause-scope +219975 modifier-scope +modifier-scope +219978 wrapper-clause-scope +219981 modifier-scope +219985 wrapper-clause-scope +219989 wrapper-clause-scope +219991 modifier-scope +219993 modifier-scope +modifier-scope +modifier-scope +219997 wrapper-clause-scope +219999 modifier-scope +wrapper-clause-scope +220003 wrapper-clause-scope +220005 wrapper-scope +wrapper-clause-scope +220010 wrapper-clause-scope +220012 modifier-scope +modifier-scope +wrapper-clause-scope +220017 wrapper-clause-scope +220019 conjuncted-wg +wrapper-clause-scope +220022 wrapper-scope +220024 wrapper-clause-scope +220027 modifier-scope +220030 group +modifier-scope +wrapper-clause-scope +220034 wrapper-scope +modifier-scope +conjuncted-wg +220041 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +220048 modifier-scope +wrapper-scope +220051 wrapper-clause-scope +220053 modifier-scope +220055 modifier-scope +group +group +220061 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +220068 wrapper-clause-scope +220070 group +modifier-scope +wrapper-clause-scope +220075 modifier-scope +modifier-scope +220079 modifier-scope +wrapper-scope +group +220084 modifier-scope +220086 modifier-clause-scope +220090 modifier-scope +220092 wrapper-scope +modifier-scope +conjuncted-wg +220099 wrapper-clause-scope +220101 wrapper-clause-scope +220104 modifier-scope +modifier-scope +modifier-scope +220108 wrapper-clause-scope +220110 modifier-scope +group +220114 wrapper-clause-scope +220116 wrapper-clause-scope +220118 wrapper-clause-scope +220120 modifier-scope +modifier-scope +modifier-scope +220124 wrapper-clause-scope +220126 modifier-scope +220128 wrapper-clause-scope +220131 modifier-scope +modifier-scope +conjuncted-wg +220135 modifier-scope +wrapper-scope +modifier-scope +group +group +220142 group +group +220146 modifier-scope +220148 wrapper-scope +220150 conjuncted-wg +modifier-scope +220153 wrapper-clause-scope +group +group +220159 modifier-scope +modifier-scope +220162 conjuncted-wg +conjuncted-wg +220165 modifier-scope +wrapper-clause-scope +220171 conjuncted-wg +conjuncted-wg +conjuncted-wg +220175 modifier-scope +220177 wrapper-clause-scope +220180 modifier-scope +conjuncted-wg +220184 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +220193 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +220201 conjuncted-wg +220204 wrapper-clause-scope +220207 modifier-scope +modifier-scope +group +220211 wrapper-clause-scope +220213 modifier-scope +wrapper-scope +220217 modifier-scope +220219 wrapper-scope +modifier-scope +conjuncted-wg +220223 wrapper-scope +modifier-scope +220226 wrapper-clause-scope +220228 modifier-clause-scope +modifier-clause-scope +220232 modifier-scope +group +220235 wrapper-clause-scope +group +wrapper-clause-scope +220239 modifier-scope +wrapper-scope +wrapper-scope +220244 modifier-scope +wrapper-scope +220247 wrapper-clause-scope +group +220252 modifier-scope +220256 conjuncted-wg +conjuncted-wg +wrapper-scope +220260 modifier-scope +220262 wrapper-clause-scope +220264 modifier-scope +apposition-group +wrapper-clause-scope +220268 modifier-scope +modifier-scope +220274 modifier-scope +conjuncted-wg +modifier-scope +220278 wrapper-scope +220280 modifier-scope +220282 wrapper-clause-scope +220285 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +220290 wrapper-scope +wrapper-clause-scope +220294 modifier-scope +wrapper-scope +conjuncted-wg +220298 wrapper-scope +wrapper-clause-scope +220301 wrapper-clause-scope +220304 wrapper-clause-scope +220306 modifier-scope +modifier-scope +modifier-scope +modifier-scope +220311 modifier-scope +220314 conjuncted-wg +220316 wrapper-scope +modifier-scope +modifier-scope +220320 wrapper-clause-scope +220322 modifier-scope +220324 modifier-scope +modifier-scope +group +220328 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +220336 wrapper-clause-scope +wrapper-clause-scope +220341 wrapper-scope +modifier-scope +conjuncted-wg +220346 group +modifier-scope +220350 modifier-scope +modifier-scope +wrapper-scope +220356 wrapper-clause-scope +220358 modifier-scope +220361 modifier-scope +modifier-scope +conjuncted-wg +220365 wrapper-scope +220370 wrapper-clause-scope +220372 wrapper-clause-scope +220374 modifier-scope +wrapper-clause-scope +220377 wrapper-clause-scope +220379 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +220385 wrapper-scope +220387 wrapper-clause-scope +220389 wrapper-clause-scope +220392 apposition-group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +220400 conjuncted-wg +conjuncted-wg +wrapper-scope +220404 conjuncted-wg +220407 modifier-scope +modifier-scope +wrapper-scope +220411 wrapper-clause-scope +wrapper-clause-scope +220414 modifier-scope +modifier-scope +220418 wrapper-clause-scope +220420 wrapper-scope +220422 wrapper-clause-scope +group +220426 modifier-scope +modifier-scope +modifier-scope +220432 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +220439 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +220446 wrapper-clause-scope +220449 modifier-scope +wrapper-scope +group +modifier-scope +220454 modifier-clause-scope +220456 modifier-scope +modifier-scope +220459 group +220461 group +group +modifier-scope +modifier-scope +220468 modifier-scope +modifier-scope +220472 wrapper-scope +modifier-scope +conjuncted-wg +220477 wrapper-scope +220479 wrapper-scope +modifier-scope +220482 wrapper-clause-scope +220485 wrapper-clause-scope +220489 modifier-clause-scope +apposition-group +220492 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +220500 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +220506 modifier-scope +modifier-scope +modifier-scope +220510 conjuncted-wg +220512 wrapper-clause-scope +220516 wrapper-scope +modifier-scope +wrapper-scope +220520 modifier-scope +modifier-scope +220523 wrapper-scope +wrapper-scope +220526 wrapper-clause-scope +wrapper-clause-scope +220529 modifier-scope +wrapper-scope +wrapper-clause-scope +220534 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +220539 wrapper-clause-scope +220541 modifier-scope +220544 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +220551 wrapper-scope +modifier-scope +conjuncted-wg +220555 modifier-scope +modifier-scope +modifier-scope +modifier-scope +220560 wrapper-clause-scope +group +220565 conjuncted-wg +220568 wrapper-scope +modifier-scope +conjuncted-wg +220572 wrapper-clause-scope +220574 wrapper-scope +group +220577 wrapper-clause-scope +220579 modifier-scope +modifier-scope +modifier-scope +220584 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +220589 wrapper-clause-scope +220591 wrapper-scope +modifier-scope +group +modifier-scope +wrapper-scope +220597 modifier-scope +conjuncted-wg +modifier-scope +group +220602 modifier-scope +wrapper-scope +modifier-scope +220606 wrapper-clause-scope +220610 modifier-scope +220615 modifier-scope +wrapper-scope +conjuncted-wg +220619 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +220626 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +220631 modifier-scope +220633 wrapper-clause-scope +group +wrapper-clause-scope +220637 wrapper-scope +220640 modifier-scope +modifier-scope +220643 wrapper-clause-scope +220647 modifier-scope +modifier-scope +220650 conjuncted-wg +220652 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +220665 modifier-scope +220667 wrapper-scope +220669 wrapper-scope +modifier-scope +220674 wrapper-clause-scope +220676 modifier-scope +modifier-scope +220681 wrapper-clause-scope +group +220684 modifier-scope +220686 modifier-scope +220691 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +220702 modifier-scope +wrapper-scope +220706 wrapper-scope +conjuncted-wg +220712 wrapper-scope +conjuncted-wg +220715 modifier-scope +220717 conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +220729 wrapper-scope +220732 wrapper-clause-scope +220734 wrapper-clause-scope +220736 wrapper-scope +modifier-clause-scope +apposition-group +220740 modifier-scope +modifier-scope +220743 modifier-clause-scope +220745 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +220751 wrapper-scope +modifier-scope +220754 apposition-group +apposition-group +modifier-scope +wrapper-scope +modifier-scope +220760 modifier-scope +modifier-scope +220764 modifier-scope +220766 conjuncted-wg +conjuncted-wg +220770 wrapper-scope +modifier-scope +220773 modifier-scope +wrapper-scope +220776 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +220781 wrapper-clause-scope +220784 wrapper-scope +modifier-scope +220787 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +220793 wrapper-scope +220795 wrapper-scope +modifier-scope +group +wrapper-scope +wrapper-scope +220801 wrapper-clause-scope +220804 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +220810 wrapper-scope +220812 conjuncted-wg +220814 wrapper-scope +220816 wrapper-clause-scope +220819 modifier-scope +group +220822 modifier-scope +220824 wrapper-scope +modifier-scope +conjuncted-wg +220828 wrapper-scope +group +modifier-clause-scope +apposition-group +220835 wrapper-scope +220837 wrapper-scope +modifier-scope +wrapper-scope +220841 wrapper-clause-scope +220843 modifier-scope +220845 modifier-scope +wrapper-scope +modifier-scope +220849 group +wrapper-clause-scope +220852 group +modifier-scope +220855 modifier-scope +wrapper-scope +220858 modifier-scope +220861 conjuncted-wg +220864 conjuncted-wg +220867 modifier-scope +modifier-scope +modifier-scope +220871 wrapper-clause-scope +220874 wrapper-scope +modifier-scope +modifier-scope +220878 wrapper-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +220884 modifier-scope +conjuncted-wg +220887 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +220893 wrapper-clause-scope +220896 wrapper-scope +220898 conjuncted-wg +conjuncted-wg +group +modifier-scope +wrapper-clause-scope +220905 modifier-scope +220908 wrapper-clause-scope +220910 conjuncted-wg +220914 wrapper-clause-scope +220916 wrapper-scope +modifier-scope +220919 wrapper-clause-scope +220923 wrapper-clause-scope +220925 group +220928 modifier-scope +group +group +conjuncted-wg +220935 modifier-scope +modifier-scope +modifier-scope +220940 wrapper-clause-scope +220944 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +220953 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +220963 wrapper-scope +wrapper-clause-scope +220966 wrapper-scope +220969 wrapper-scope +modifier-scope +220972 wrapper-clause-scope +wrapper-clause-scope +220975 modifier-scope +220978 modifier-scope +wrapper-scope +conjuncted-wg +220983 wrapper-scope +220985 wrapper-clause-scope +220988 modifier-scope +modifier-scope +wrapper-scope +220992 wrapper-clause-scope +220994 group +wrapper-scope +modifier-scope +220998 wrapper-clause-scope +221001 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +221006 conjuncted-wg +221008 wrapper-scope +221010 modifier-scope +wrapper-scope +modifier-scope +221014 modifier-scope +221016 wrapper-clause-scope +group +group +221021 modifier-clause-scope +modifier-clause-scope +221024 wrapper-scope +221026 modifier-scope +221028 conjuncted-wg +221032 modifier-scope +wrapper-clause-scope +221036 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +221047 wrapper-clause-scope +221049 modifier-scope +221052 modifier-scope +221054 modifier-scope +221058 wrapper-scope +wrapper-scope +wrapper-scope +221062 wrapper-clause-scope +221064 modifier-scope +group +221067 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +221074 group +221076 wrapper-clause-scope +221078 modifier-scope +221080 wrapper-clause-scope +221082 conjuncted-wg +group +wrapper-clause-scope +221087 conjuncted-wg +221089 modifier-scope +modifier-scope +221092 wrapper-clause-scope +221094 conjuncted-wg +group +wrapper-clause-scope +221105 modifier-scope +221107 wrapper-scope +modifier-scope +group +221112 wrapper-scope +221114 wrapper-clause-scope +group +221117 modifier-scope +221120 group +modifier-scope +conjuncted-wg +wrapper-scope +221125 modifier-scope +221127 wrapper-clause-scope +group +wrapper-clause-scope +221131 modifier-scope +221133 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +221141 modifier-scope +modifier-clause-scope +221144 wrapper-scope +221146 wrapper-scope +221148 wrapper-scope +221150 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +221156 wrapper-scope +221158 wrapper-scope +221160 group +221162 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +221167 wrapper-clause-scope +221169 wrapper-scope +modifier-scope +conjuncted-wg +221173 modifier-scope +wrapper-scope +modifier-scope +221177 wrapper-clause-scope +221182 modifier-scope +221184 modifier-scope +wrapper-scope +modifier-scope +221188 modifier-scope +221191 wrapper-scope +221193 modifier-scope +modifier-scope +modifier-scope +apposition-group +221198 conjuncted-wg +221201 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +221208 wrapper-scope +apposition-group +modifier-clause-scope +modifier-scope +221215 modifier-scope +221217 wrapper-clause-scope +221220 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +221227 wrapper-scope +conjuncted-wg +221230 wrapper-scope +221232 wrapper-clause-scope +group +221235 modifier-scope +221237 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +221243 wrapper-scope +221245 wrapper-scope +221247 wrapper-clause-scope +group +221250 wrapper-scope +modifier-scope +221253 modifier-scope +221255 modifier-scope +221260 wrapper-clause-scope +group +221265 modifier-scope +221267 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +221274 wrapper-scope +modifier-scope +wrapper-scope +221278 conjuncted-wg +conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +221287 modifier-scope +221289 modifier-scope +221291 wrapper-clause-scope +221293 modifier-scope +221297 group +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +221303 apposition-group +221305 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +221312 conjuncted-wg +conjuncted-wg +221318 wrapper-clause-scope +221322 modifier-scope +modifier-scope +conjuncted-wg +221327 modifier-scope +modifier-scope +221332 wrapper-scope +221334 modifier-scope +modifier-scope +221337 wrapper-clause-scope +group +221341 wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +221346 group +wrapper-clause-scope +group +221350 modifier-scope +221354 wrapper-clause-scope +221358 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +221363 wrapper-clause-scope +221365 wrapper-scope +modifier-scope +221369 wrapper-scope +221372 modifier-scope +221374 modifier-scope +group +221378 group +221380 wrapper-scope +modifier-clause-scope +221383 wrapper-scope +221386 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +221393 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +221399 wrapper-clause-scope +wrapper-clause-scope +221402 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +221409 wrapper-scope +221411 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +221418 wrapper-clause-scope +221421 wrapper-clause-scope +221423 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +221430 wrapper-clause-scope +221432 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +221437 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +221445 wrapper-scope +modifier-scope +modifier-scope +221449 wrapper-scope +221451 conjuncted-wg +221454 wrapper-scope +modifier-scope +wrapper-scope +221460 wrapper-scope +wrapper-clause-scope +221463 modifier-scope +221465 wrapper-clause-scope +wrapper-clause-scope +221470 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +apposition-group +221479 wrapper-scope +conjuncted-wg +221482 conjuncted-wg +221484 modifier-scope +modifier-scope +wrapper-scope +221488 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +221494 group +221497 conjuncted-wg +221500 wrapper-scope +modifier-scope +modifier-scope +221504 conjuncted-wg +221507 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +221514 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +group +221520 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +221527 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +221532 conjuncted-wg +wrapper-clause-scope +221535 wrapper-scope +221538 wrapper-clause-scope +group +221541 modifier-scope +wrapper-scope +modifier-scope +221546 wrapper-scope +group +modifier-scope +group +group +221553 group +221557 wrapper-scope +221559 wrapper-clause-scope +221564 wrapper-clause-scope +221566 modifier-scope +221568 apposition-group +221571 wrapper-clause-scope +221574 conjuncted-wg +221576 wrapper-scope +modifier-scope +modifier-scope +221580 wrapper-clause-scope +221582 wrapper-scope +221585 conjuncted-wg +modifier-clause-scope +221588 conjuncted-wg +221590 conjuncted-wg +221594 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +221600 wrapper-scope +221602 modifier-scope +wrapper-clause-scope +221606 group +wrapper-scope +wrapper-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +221619 modifier-scope +conjuncted-wg +modifier-clause-scope +wrapper-scope +wrapper-clause-scope +221625 group +modifier-scope +wrapper-scope +221629 wrapper-clause-scope +221632 group +221634 modifier-scope +modifier-scope +221637 group +221639 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +221645 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +221654 conjuncted-wg +221656 wrapper-scope +modifier-scope +221659 modifier-scope +modifier-scope +modifier-scope +221664 wrapper-scope +221666 wrapper-scope +modifier-scope +221670 wrapper-clause-scope +221673 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +221682 conjuncted-wg +conjuncted-wg +221685 wrapper-scope +221690 conjuncted-wg +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +221696 modifier-scope +group +wrapper-clause-scope +221700 wrapper-scope +modifier-scope +221705 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +221710 wrapper-clause-scope +221713 modifier-scope +modifier-scope +modifier-scope +group +221720 modifier-scope +modifier-scope +wrapper-scope +221724 wrapper-clause-scope +221726 modifier-scope +group +221730 modifier-scope +221733 modifier-scope +221735 conjuncted-wg +wrapper-clause-scope +221738 wrapper-scope +modifier-clause-scope +apposition-group +221742 wrapper-scope +221744 wrapper-clause-scope +221747 wrapper-clause-scope +221749 wrapper-scope +wrapper-scope +221754 group +modifier-scope +221758 wrapper-clause-scope +221761 wrapper-clause-scope +group +221764 modifier-scope +wrapper-scope +modifier-scope +221768 wrapper-scope +221771 wrapper-clause-scope +221773 modifier-scope +wrapper-clause-scope +221776 modifier-scope +221778 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +221783 group +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +221789 apposition-group +221791 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +221799 conjuncted-wg +221801 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +221806 modifier-scope +conjuncted-wg +wrapper-clause-scope +221810 conjuncted-wg +221813 wrapper-scope +221815 wrapper-clause-scope +221817 modifier-scope +modifier-scope +221820 conjuncted-wg +modifier-scope +modifier-scope +221824 wrapper-clause-scope +221826 modifier-scope +group +221830 modifier-scope +modifier-scope +wrapper-clause-scope +221835 wrapper-clause-scope +group +wrapper-clause-scope +221839 wrapper-clause-scope +221841 wrapper-scope +modifier-scope +221845 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +221853 modifier-scope +221855 wrapper-clause-scope +group +221859 modifier-clause-scope +modifier-scope +221863 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +221869 wrapper-scope +group +modifier-scope +221874 conjuncted-wg +221876 modifier-scope +wrapper-scope +conjuncted-wg +221880 modifier-scope +221882 modifier-scope +221885 wrapper-scope +modifier-scope +221891 modifier-scope +wrapper-scope +wrapper-clause-scope +221895 modifier-scope +conjuncted-wg +221899 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +221905 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +221911 modifier-scope +221913 modifier-clause-scope +modifier-scope +221916 wrapper-scope +modifier-scope +wrapper-scope +221920 wrapper-clause-scope +group +221924 wrapper-scope +modifier-scope +conjuncted-wg +221928 wrapper-scope +modifier-scope +group +221932 modifier-scope +221935 modifier-scope +wrapper-scope +conjuncted-wg +221940 wrapper-scope +apposition-group +modifier-clause-scope +modifier-scope +221945 modifier-scope +221947 wrapper-scope +group +221950 wrapper-clause-scope +group +221954 modifier-scope +conjuncted-wg +221957 modifier-scope +wrapper-scope +wrapper-clause-scope +221961 modifier-scope +modifier-scope +221964 modifier-scope +221968 wrapper-clause-scope +221971 wrapper-scope +modifier-scope +221974 conjuncted-wg +modifier-scope +group +modifier-scope +221979 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +221987 wrapper-clause-scope +221990 modifier-scope +221992 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +221997 wrapper-clause-scope +221999 wrapper-scope +222001 wrapper-clause-scope +group +222004 modifier-scope +wrapper-scope +222007 modifier-scope +222009 wrapper-clause-scope +wrapper-clause-scope +222014 wrapper-scope +group +modifier-clause-scope +modifier-scope +modifier-scope +222021 wrapper-scope +conjuncted-wg +wrapper-scope +222025 wrapper-clause-scope +group +222031 modifier-scope +222033 modifier-scope +222035 wrapper-clause-scope +222037 wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +222045 wrapper-clause-scope +222049 modifier-scope +conjuncted-wg +222053 modifier-scope +222056 wrapper-clause-scope +222060 modifier-clause-scope +modifier-scope +222064 modifier-scope +222068 modifier-scope +conjuncted-wg +222071 group +222073 wrapper-clause-scope +222075 wrapper-scope +modifier-scope +222078 modifier-scope +222080 wrapper-clause-scope +group +222085 modifier-scope +conjuncted-wg +222088 modifier-scope +modifier-scope +modifier-scope +modifier-scope +222093 wrapper-clause-scope +222098 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +222104 modifier-scope +modifier-scope +modifier-clause-scope +modifier-scope +wrapper-clause-scope +222111 wrapper-clause-scope +group +222114 modifier-scope +222117 modifier-scope +wrapper-scope +modifier-scope +222127 wrapper-scope +modifier-scope +conjuncted-wg +222132 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +222137 wrapper-clause-scope +222139 modifier-scope +222141 wrapper-clause-scope +222143 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +222148 wrapper-clause-scope +222150 modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +apposition-group +222159 group +222165 conjuncted-wg +222167 modifier-scope +modifier-clause-scope +wrapper-clause-scope +222171 wrapper-scope +222173 wrapper-clause-scope +group +222177 wrapper-clause-scope +222179 modifier-scope +wrapper-clause-scope +222182 wrapper-scope +222184 modifier-scope +222186 wrapper-clause-scope +222189 wrapper-scope +modifier-scope +222192 wrapper-clause-scope +group +wrapper-clause-scope +222196 modifier-scope +group +222199 wrapper-scope +modifier-scope +222202 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +222207 modifier-scope +222209 wrapper-clause-scope +222213 modifier-scope +conjuncted-wg +222218 conjuncted-wg +222220 modifier-scope +222222 wrapper-clause-scope +222224 group +222226 wrapper-clause-scope +222228 wrapper-scope +modifier-scope +222231 wrapper-scope +modifier-scope +222235 wrapper-clause-scope +group +222239 modifier-scope +222241 wrapper-scope +modifier-scope +conjuncted-wg +222245 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +222251 wrapper-scope +222253 modifier-scope +222255 modifier-scope +conjuncted-wg +modifier-scope +group +wrapper-clause-scope +222261 wrapper-scope +modifier-scope +222268 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +222276 wrapper-clause-scope +222278 wrapper-scope +222281 modifier-scope +222286 modifier-scope +222289 wrapper-clause-scope +group +222293 wrapper-clause-scope +222295 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +222300 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +222305 wrapper-clause-scope +222310 conjuncted-wg +222312 modifier-scope +wrapper-scope +conjuncted-wg +222319 wrapper-clause-scope +222322 modifier-scope +222324 wrapper-clause-scope +222326 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +222333 wrapper-clause-scope +222336 modifier-scope +222338 modifier-scope +wrapper-scope +modifier-scope +222342 wrapper-clause-scope +group +wrapper-clause-scope +222348 modifier-scope +conjuncted-wg +222352 modifier-clause-scope +modifier-scope +222357 wrapper-scope +modifier-scope +222361 wrapper-clause-scope +222365 modifier-scope +wrapper-scope +modifier-scope +222369 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +222375 modifier-scope +wrapper-clause-scope +222378 wrapper-scope +modifier-scope +222381 wrapper-clause-scope +222385 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +222390 conjuncted-wg +222392 modifier-scope +222394 conjuncted-wg +222396 modifier-scope +wrapper-scope +modifier-scope +222400 wrapper-clause-scope +222402 modifier-scope +modifier-scope +wrapper-clause-scope +222406 modifier-scope +wrapper-clause-scope +222411 wrapper-clause-scope +222414 modifier-scope +222417 modifier-scope +modifier-scope +conjuncted-wg +222423 wrapper-clause-scope +222427 wrapper-scope +modifier-scope +conjuncted-wg +222432 modifier-scope +conjuncted-wg +222435 wrapper-scope +conjuncted-wg +222438 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +222444 wrapper-clause-scope +222447 wrapper-scope +modifier-scope +222450 wrapper-clause-scope +222455 modifier-scope +222457 wrapper-clause-scope +group +222460 modifier-scope +modifier-clause-scope +modifier-clause-scope +222464 wrapper-clause-scope +222467 modifier-scope +222469 wrapper-scope +group +modifier-scope +wrapper-clause-scope +222474 conjuncted-wg +wrapper-scope +modifier-scope +222478 wrapper-clause-scope +222482 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +222487 wrapper-scope +modifier-scope +222490 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +222495 wrapper-clause-scope +group +wrapper-clause-scope +222499 modifier-scope +222501 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +222506 wrapper-scope +222508 apposition-group +modifier-scope +modifier-scope +222514 wrapper-scope +modifier-scope +modifier-scope +222518 wrapper-clause-scope +wrapper-clause-scope +222522 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +222527 wrapper-clause-scope +222532 conjuncted-wg +222535 wrapper-clause-scope +group +222539 wrapper-scope +conjuncted-wg +222543 modifier-scope +wrapper-scope +222549 wrapper-clause-scope +222551 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +apposition-group +modifier-clause-scope +modifier-scope +modifier-scope +modifier-scope +222564 modifier-scope +222566 wrapper-clause-scope +222570 modifier-scope +modifier-scope +modifier-scope +222575 conjuncted-wg +222578 wrapper-scope +conjuncted-wg +222581 modifier-scope +222583 modifier-scope +222585 wrapper-clause-scope +222590 modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +222595 wrapper-scope +modifier-scope +conjuncted-wg +222601 modifier-scope +conjuncted-wg +222605 modifier-scope +wrapper-scope +modifier-scope +222609 wrapper-clause-scope +222611 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +222618 wrapper-scope +modifier-scope +222622 wrapper-clause-scope +group +222626 wrapper-scope +modifier-scope +222630 wrapper-scope +222632 wrapper-clause-scope +group +group +222636 wrapper-scope +modifier-scope +222639 wrapper-scope +222643 wrapper-scope +modifier-scope +222646 wrapper-clause-scope +222648 wrapper-scope +modifier-scope +222652 modifier-scope +222654 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +222660 modifier-scope +conjuncted-wg +modifier-scope +222665 modifier-scope +222667 modifier-scope +222669 wrapper-clause-scope +222671 wrapper-clause-scope +222673 wrapper-scope +modifier-scope +222676 wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +222682 wrapper-clause-scope +222684 wrapper-scope +modifier-scope +222687 wrapper-clause-scope +222689 modifier-scope +modifier-scope +222692 wrapper-clause-scope +group +222696 wrapper-scope +group +group +222704 modifier-scope +222706 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +222718 wrapper-scope +wrapper-clause-scope +222721 modifier-scope +modifier-scope +wrapper-scope +222725 wrapper-clause-scope +222728 modifier-scope +222730 wrapper-clause-scope +wrapper-clause-scope +222734 modifier-scope +modifier-scope +222737 wrapper-clause-scope +222739 wrapper-scope +modifier-scope +modifier-scope +222744 conjuncted-wg +222746 wrapper-clause-scope +222748 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +222755 wrapper-clause-scope +222757 wrapper-scope +222759 conjuncted-wg +222761 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +222768 modifier-scope +modifier-scope +222771 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +222776 wrapper-clause-scope +222779 wrapper-scope +222781 wrapper-clause-scope +wrapper-clause-scope +222784 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +222790 wrapper-clause-scope +222793 wrapper-scope +wrapper-scope +modifier-scope +222799 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +222804 wrapper-scope +modifier-scope +wrapper-scope +222808 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +group +wrapper-scope +wrapper-scope +222817 wrapper-clause-scope +222819 conjuncted-wg +222821 wrapper-clause-scope +222823 conjuncted-wg +222826 wrapper-clause-scope +222829 wrapper-scope +222831 modifier-scope +modifier-scope +wrapper-clause-scope +222835 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +222845 group +222848 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +222856 conjuncted-wg +222858 modifier-scope +conjuncted-wg +222863 conjuncted-wg +222865 modifier-scope +222867 wrapper-clause-scope +group +222871 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +222877 modifier-scope +conjuncted-wg +222880 modifier-scope +modifier-scope +222885 modifier-scope +conjuncted-wg +222888 modifier-scope +conjuncted-wg +222891 modifier-scope +conjuncted-wg +222894 conjuncted-wg +222897 wrapper-clause-scope +222899 wrapper-clause-scope +group +222902 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +222909 wrapper-clause-scope +222912 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +222917 modifier-clause-scope +wrapper-clause-scope +222920 wrapper-scope +222923 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +222928 modifier-scope +wrapper-scope +group +modifier-scope +group +wrapper-scope +modifier-scope +222937 modifier-clause-scope +group +group +modifier-scope +group +modifier-scope +222944 wrapper-scope +apposition-group +modifier-scope +222948 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +222962 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +222967 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +group +group +modifier-scope +modifier-scope +222979 wrapper-scope +222981 conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-clause-scope +group +wrapper-clause-scope +222998 wrapper-scope +group +modifier-scope +modifier-scope +223005 conjuncted-wg +wrapper-scope +223008 group +modifier-scope +conjuncted-wg +group +group +223014 wrapper-clause-scope +223016 modifier-scope +modifier-scope +wrapper-scope +group +wrapper-scope +modifier-scope +wrapper-clause-scope +223024 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223030 wrapper-clause-scope +223032 modifier-scope +modifier-clause-scope +apposition-group +223036 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +223046 modifier-scope +223048 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +223053 modifier-scope +223055 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +223061 wrapper-clause-scope +group +223065 wrapper-clause-scope +223067 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +223073 conjuncted-wg +223076 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +223083 conjuncted-wg +conjuncted-wg +223086 wrapper-clause-scope +223090 wrapper-clause-scope +group +223095 wrapper-scope +conjuncted-wg +223098 wrapper-scope +modifier-scope +wrapper-clause-scope +223102 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +223107 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223113 group +223115 conjuncted-wg +conjuncted-wg +223118 conjuncted-wg +conjuncted-wg +223122 modifier-scope +modifier-scope +wrapper-scope +223126 modifier-scope +group +modifier-scope +wrapper-scope +223131 wrapper-clause-scope +223133 modifier-scope +wrapper-clause-scope +223136 modifier-scope +wrapper-scope +group +modifier-clause-scope +wrapper-clause-scope +223143 conjuncted-wg +modifier-scope +conjuncted-wg +223147 wrapper-clause-scope +223149 modifier-scope +wrapper-scope +group +wrapper-scope +wrapper-scope +wrapper-clause-scope +223156 wrapper-clause-scope +223158 modifier-scope +wrapper-scope +223161 wrapper-clause-scope +223163 modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +223169 conjuncted-wg +group +wrapper-clause-scope +223173 modifier-scope +wrapper-scope +wrapper-clause-scope +223177 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +223182 wrapper-clause-scope +223184 modifier-scope +223186 wrapper-clause-scope +223188 group +modifier-scope +modifier-scope +modifier-scope +223193 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +223200 modifier-scope +wrapper-scope +wrapper-clause-scope +223205 wrapper-clause-scope +223210 modifier-scope +wrapper-scope +223213 conjuncted-wg +conjuncted-wg +223216 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +223221 modifier-scope +modifier-scope +modifier-scope +223229 conjuncted-wg +223231 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +223240 conjuncted-wg +conjuncted-wg +conjuncted-wg +223244 wrapper-clause-scope +223246 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +223255 modifier-scope +modifier-scope +wrapper-scope +apposition-group +223261 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +223269 conjuncted-wg +modifier-scope +wrapper-scope +apposition-group +wrapper-clause-scope +223276 wrapper-scope +modifier-scope +223281 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +223286 wrapper-clause-scope +223288 conjuncted-wg +223290 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +223299 modifier-scope +modifier-scope +223302 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +223312 wrapper-scope +modifier-scope +conjuncted-wg +223316 modifier-clause-scope +modifier-clause-scope +apposition-group +223320 modifier-scope +modifier-scope +wrapper-scope +223324 wrapper-clause-scope +group +wrapper-clause-scope +223329 modifier-scope +wrapper-scope +223332 modifier-scope +wrapper-scope +modifier-scope +223336 wrapper-clause-scope +223338 group +223340 modifier-scope +group +223343 group +223345 group +modifier-scope +modifier-scope +223352 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +223357 wrapper-clause-scope +223359 modifier-scope +conjuncted-wg +223362 wrapper-clause-scope +223365 wrapper-clause-scope +223369 group +modifier-clause-scope +wrapper-clause-scope +223374 wrapper-clause-scope +223377 wrapper-scope +223379 modifier-scope +223381 modifier-scope +wrapper-clause-scope +223385 wrapper-clause-scope +223387 wrapper-clause-scope +223389 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +223396 modifier-scope +223398 wrapper-clause-scope +223401 group +223403 wrapper-clause-scope +223406 wrapper-clause-scope +223408 modifier-scope +conjuncted-wg +223411 wrapper-clause-scope +223414 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +223419 modifier-scope +modifier-scope +223422 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +223429 wrapper-clause-scope +223431 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +223436 wrapper-clause-scope +223438 wrapper-scope +modifier-scope +223441 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-clause-scope +223447 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +223453 wrapper-scope +modifier-scope +modifier-scope +223458 conjuncted-wg +223460 wrapper-clause-scope +223462 wrapper-scope +modifier-scope +modifier-scope +223466 conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +223471 wrapper-clause-scope +223474 wrapper-scope +conjuncted-wg +223478 modifier-scope +conjuncted-wg +223481 modifier-scope +223483 conjuncted-wg +223488 conjuncted-wg +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +group +wrapper-clause-scope +223496 modifier-scope +223498 conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +223504 conjuncted-wg +conjuncted-wg +modifier-clause-scope +group +wrapper-clause-scope +223510 modifier-scope +223512 conjuncted-wg +modifier-scope +conjuncted-wg +223516 wrapper-clause-scope +223518 wrapper-scope +modifier-scope +223521 wrapper-clause-scope +223525 conjuncted-wg +223528 wrapper-scope +wrapper-scope +223531 wrapper-clause-scope +group +223534 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +223539 modifier-scope +modifier-scope +223542 wrapper-clause-scope +group +wrapper-clause-scope +223546 group +wrapper-clause-scope +223549 modifier-scope +modifier-scope +223552 modifier-clause-scope +223556 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223565 modifier-scope +modifier-scope +conjuncted-wg +223570 wrapper-scope +modifier-scope +conjuncted-wg +223574 apposition-group +223576 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +223587 wrapper-clause-scope +group +wrapper-clause-scope +223592 conjuncted-wg +223594 conjuncted-wg +223596 wrapper-scope +conjuncted-wg +223599 modifier-scope +conjuncted-wg +223602 wrapper-clause-scope +223605 wrapper-scope +modifier-scope +conjuncted-wg +223610 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223618 modifier-scope +modifier-scope +223621 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +223629 wrapper-clause-scope +223634 wrapper-clause-scope +223640 wrapper-clause-scope +223646 wrapper-clause-scope +223648 modifier-scope +223652 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +223659 wrapper-clause-scope +223661 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +223670 wrapper-clause-scope +223672 conjuncted-wg +group +223675 wrapper-clause-scope +223677 conjuncted-wg +group +wrapper-clause-scope +223681 modifier-scope +223683 modifier-scope +modifier-scope +223686 wrapper-clause-scope +group +wrapper-clause-scope +223690 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +223696 modifier-scope +modifier-scope +wrapper-scope +223700 wrapper-clause-scope +223702 modifier-scope +modifier-scope +wrapper-scope +223706 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +223712 conjuncted-wg +modifier-scope +223715 wrapper-clause-scope +group +223719 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +223724 modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +223731 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +223736 wrapper-scope +group +modifier-scope +223740 modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +modifier-scope +223747 wrapper-clause-scope +223750 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +223755 modifier-scope +modifier-scope +modifier-scope +223760 wrapper-scope +modifier-scope +223763 wrapper-clause-scope +wrapper-clause-scope +223766 wrapper-clause-scope +223768 modifier-scope +modifier-scope +modifier-scope +223772 wrapper-clause-scope +group +223775 wrapper-clause-scope +223778 wrapper-clause-scope +223780 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +223788 wrapper-clause-scope +group +223792 modifier-scope +conjuncted-wg +223795 modifier-scope +wrapper-clause-scope +223798 wrapper-clause-scope +223800 wrapper-clause-scope +223802 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +223807 wrapper-scope +wrapper-clause-scope +223811 wrapper-clause-scope +group +wrapper-clause-scope +223815 modifier-scope +modifier-scope +modifier-scope +223820 wrapper-clause-scope +223822 group +modifier-scope +wrapper-clause-scope +223826 modifier-scope +223829 wrapper-scope +223833 wrapper-clause-scope +223835 modifier-scope +modifier-scope +223838 wrapper-clause-scope +group +wrapper-clause-scope +223842 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223852 wrapper-scope +223854 wrapper-clause-scope +wrapper-clause-scope +223857 wrapper-clause-scope +223859 conjuncted-wg +wrapper-clause-scope +223863 wrapper-clause-scope +223865 modifier-scope +wrapper-clause-scope +223868 modifier-scope +223870 modifier-scope +modifier-scope +223873 wrapper-clause-scope +group +223878 group +223880 wrapper-clause-scope +223883 modifier-scope +223885 conjuncted-wg +conjuncted-wg +wrapper-scope +wrapper-clause-scope +223890 wrapper-clause-scope +group +group +223896 wrapper-clause-scope +223899 wrapper-clause-scope +223901 modifier-scope +223906 group +223908 wrapper-clause-scope +223911 wrapper-scope +223913 group +group +223916 modifier-clause-scope +223918 modifier-scope +modifier-scope +223921 modifier-scope +modifier-scope +223924 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223929 modifier-scope +modifier-scope +223932 conjuncted-wg +223935 group +223937 modifier-scope +modifier-scope +223942 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +223948 modifier-scope +223951 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +223956 wrapper-clause-scope +223958 wrapper-clause-scope +223962 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +223968 modifier-scope +conjuncted-wg +223971 modifier-scope +modifier-scope +modifier-scope +223975 wrapper-clause-scope +223977 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +223983 wrapper-scope +modifier-scope +223986 wrapper-clause-scope +223989 wrapper-scope +modifier-scope +223992 wrapper-scope +223994 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +223999 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +224009 wrapper-clause-scope +224012 wrapper-clause-scope +224015 conjuncted-wg +224017 modifier-scope +modifier-scope +modifier-scope +224021 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +group +224031 modifier-scope +group +group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +224048 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +224064 conjuncted-wg +224066 modifier-scope +wrapper-scope +modifier-scope +224070 group +wrapper-clause-scope +224073 modifier-scope +224076 group +224078 wrapper-scope +modifier-scope +224081 modifier-scope +224085 conjuncted-wg +224087 wrapper-scope +modifier-scope +224090 wrapper-clause-scope +224093 wrapper-scope +modifier-scope +224096 wrapper-clause-scope +224098 modifier-scope +224100 wrapper-clause-scope +224102 modifier-scope +224104 group +wrapper-clause-scope +224107 modifier-scope +wrapper-clause-scope +224110 apposition-group +modifier-scope +224114 wrapper-scope +conjuncted-wg +224117 wrapper-scope +modifier-scope +224120 wrapper-clause-scope +224122 wrapper-scope +modifier-scope +224127 conjuncted-wg +224130 wrapper-clause-scope +224133 group +modifier-scope +modifier-scope +wrapper-scope +224138 wrapper-clause-scope +224140 wrapper-clause-scope +224142 wrapper-scope +224144 wrapper-clause-scope +224146 wrapper-scope +224148 wrapper-clause-scope +224150 modifier-scope +224152 wrapper-clause-scope +224155 modifier-scope +conjuncted-wg +224158 wrapper-scope +224160 wrapper-clause-scope +224162 wrapper-clause-scope +224164 modifier-scope +group +wrapper-scope +wrapper-scope +224169 wrapper-clause-scope +224171 wrapper-clause-scope +group +224175 wrapper-scope +wrapper-clause-scope +224178 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +224184 modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +224190 modifier-scope +wrapper-scope +224195 modifier-scope +modifier-scope +conjuncted-wg +224199 modifier-scope +modifier-scope +224203 apposition-group +224205 modifier-scope +224207 wrapper-clause-scope +224209 modifier-scope +modifier-scope +224212 wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +224219 wrapper-clause-scope +224222 modifier-scope +modifier-scope +wrapper-scope +224226 wrapper-clause-scope +224231 wrapper-scope +conjuncted-wg +wrapper-scope +224235 group +224237 wrapper-scope +224239 wrapper-scope +224241 wrapper-clause-scope +224243 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +224257 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +224261 wrapper-scope +wrapper-scope +wrapper-clause-scope +224265 modifier-scope +conjuncted-wg +224268 modifier-scope +224270 wrapper-clause-scope +224272 wrapper-scope +conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +224277 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +224287 wrapper-clause-scope +group +224290 wrapper-scope +group +modifier-scope +wrapper-clause-scope +224295 modifier-scope +224297 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +224302 wrapper-scope +modifier-scope +224305 wrapper-clause-scope +group +wrapper-clause-scope +224309 modifier-scope +wrapper-scope +224313 modifier-scope +conjuncted-wg +224316 modifier-scope +224318 wrapper-clause-scope +224320 modifier-scope +224322 wrapper-clause-scope +224327 wrapper-scope +wrapper-scope +wrapper-clause-scope +224331 wrapper-scope +wrapper-scope +wrapper-clause-scope +224335 modifier-scope +group +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-scope +modifier-clause-scope +apposition-group +224351 modifier-scope +modifier-scope +wrapper-scope +apposition-group +224356 group +wrapper-clause-scope +224360 modifier-scope +conjuncted-wg +224363 wrapper-clause-scope +224365 wrapper-scope +224368 wrapper-clause-scope +224370 modifier-scope +modifier-scope +224374 wrapper-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +224379 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +224385 modifier-scope +modifier-scope +224388 wrapper-clause-scope +224393 modifier-scope +modifier-scope +modifier-scope +224398 conjuncted-wg +224400 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +224407 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +224414 modifier-scope +224417 modifier-scope +conjuncted-wg +224420 wrapper-clause-scope +224422 wrapper-clause-scope +224426 wrapper-clause-scope +224428 wrapper-scope +224430 wrapper-clause-scope +group +224433 wrapper-scope +wrapper-clause-scope +224437 modifier-clause-scope +wrapper-scope +group +apposition-group +224443 wrapper-clause-scope +224445 wrapper-scope +wrapper-clause-scope +224448 wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +224455 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +224460 wrapper-scope +modifier-scope +modifier-scope +224464 wrapper-clause-scope +224467 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +group +224478 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +224487 wrapper-scope +conjuncted-wg +224490 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +224496 wrapper-clause-scope +group +224500 wrapper-scope +modifier-scope +224503 wrapper-clause-scope +224506 modifier-scope +conjuncted-wg +224509 modifier-scope +conjuncted-wg +224512 modifier-scope +224514 wrapper-clause-scope +224516 modifier-scope +wrapper-clause-scope +224519 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +224531 wrapper-clause-scope +wrapper-clause-scope +224535 wrapper-scope +wrapper-scope +224538 wrapper-clause-scope +224540 wrapper-scope +224542 wrapper-clause-scope +224544 wrapper-scope +modifier-scope +224548 wrapper-clause-scope +224550 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +group +224558 wrapper-scope +224560 wrapper-clause-scope +224562 modifier-scope +224564 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +224571 wrapper-clause-scope +224573 wrapper-clause-scope +224576 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +224584 wrapper-scope +modifier-scope +modifier-scope +224588 wrapper-clause-scope +group +224592 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +group +224601 wrapper-scope +modifier-scope +224604 group +224606 wrapper-scope +group +group +wrapper-clause-scope +224612 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +224619 wrapper-scope +modifier-scope +modifier-scope +224623 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +224629 wrapper-clause-scope +224632 wrapper-scope +wrapper-scope +conjuncted-wg +224638 wrapper-clause-scope +224640 modifier-scope +group +wrapper-scope +wrapper-scope +modifier-clause-scope +wrapper-scope +wrapper-clause-scope +224648 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +224655 modifier-clause-scope +wrapper-clause-scope +224659 wrapper-clause-scope +224661 wrapper-clause-scope +wrapper-clause-scope +224664 modifier-scope +modifier-scope +modifier-scope +224668 wrapper-clause-scope +224670 wrapper-clause-scope +224672 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +224678 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +224694 wrapper-clause-scope +224696 modifier-clause-scope +wrapper-scope +modifier-clause-scope +224700 modifier-scope +224702 wrapper-clause-scope +224704 conjuncted-wg +224706 modifier-scope +wrapper-scope +wrapper-scope +conjuncted-wg +224711 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +224716 wrapper-clause-scope +224718 wrapper-clause-scope +224720 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +224730 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +group +modifier-scope +group +224743 wrapper-clause-scope +wrapper-clause-scope +224746 wrapper-clause-scope +224748 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +224761 wrapper-clause-scope +224763 wrapper-clause-scope +224765 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +224778 wrapper-clause-scope +224780 wrapper-clause-scope +224782 modifier-scope +224784 wrapper-clause-scope +224787 modifier-scope +modifier-scope +wrapper-clause-scope +224791 wrapper-clause-scope +224793 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +224807 wrapper-clause-scope +224811 modifier-scope +wrapper-clause-scope +224814 modifier-scope +224820 modifier-scope +wrapper-scope +224823 wrapper-clause-scope +224825 wrapper-clause-scope +224828 wrapper-scope +group +wrapper-scope +modifier-scope +modifier-scope +224834 wrapper-clause-scope +224836 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +224842 wrapper-clause-scope +224844 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +224853 wrapper-clause-scope +224855 wrapper-clause-scope +224857 modifier-scope +modifier-scope +modifier-scope +modifier-scope +224862 modifier-scope +modifier-scope +224866 wrapper-clause-scope +224868 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +224873 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +224878 modifier-scope +224880 wrapper-clause-scope +224882 wrapper-clause-scope +224884 wrapper-scope +modifier-scope +224887 wrapper-clause-scope +group +wrapper-clause-scope +224891 wrapper-scope +224893 wrapper-clause-scope +224897 wrapper-clause-scope +group +224901 wrapper-scope +224904 wrapper-clause-scope +224908 modifier-scope +conjuncted-wg +224912 modifier-scope +224915 modifier-scope +224918 conjuncted-wg +224920 modifier-scope +conjuncted-wg +224924 modifier-scope +wrapper-scope +group +224928 wrapper-clause-scope +224932 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +224940 modifier-scope +modifier-scope +conjuncted-wg +224944 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +224951 modifier-scope +wrapper-scope +224954 wrapper-scope +conjuncted-wg +224957 modifier-scope +modifier-scope +modifier-scope +modifier-scope +224962 wrapper-clause-scope +group +224965 wrapper-clause-scope +group +224968 wrapper-scope +224970 wrapper-scope +224972 wrapper-clause-scope +224975 group +224977 wrapper-clause-scope +group +224980 wrapper-scope +224982 wrapper-scope +224987 wrapper-clause-scope +224991 wrapper-scope +224993 conjuncted-wg +224995 wrapper-scope +conjuncted-wg +224998 wrapper-scope +225000 wrapper-clause-scope +225002 modifier-scope +wrapper-clause-scope +225006 modifier-scope +modifier-scope +conjuncted-wg +225010 wrapper-scope +apposition-group +225013 wrapper-scope +modifier-scope +conjuncted-wg +225018 wrapper-scope +modifier-scope +modifier-scope +225023 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +225029 wrapper-clause-scope +225031 wrapper-clause-scope +225033 modifier-scope +modifier-scope +225036 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +225046 wrapper-clause-scope +225048 wrapper-clause-scope +225050 modifier-scope +modifier-scope +modifier-scope +225054 wrapper-clause-scope +225056 modifier-scope +wrapper-scope +225060 wrapper-clause-scope +225062 modifier-scope +modifier-scope +225065 wrapper-clause-scope +225070 wrapper-scope +modifier-scope +conjuncted-wg +225074 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +225080 group +modifier-scope +modifier-scope +225084 wrapper-clause-scope +225087 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +225092 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +225102 wrapper-clause-scope +225105 wrapper-clause-scope +225108 wrapper-clause-scope +225110 modifier-scope +modifier-scope +wrapper-scope +225114 group +225116 wrapper-clause-scope +225118 modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +225124 wrapper-clause-scope +group +wrapper-clause-scope +225128 modifier-scope +225130 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +225135 wrapper-clause-scope +wrapper-clause-scope +group +225139 modifier-scope +225141 wrapper-clause-scope +225143 modifier-scope +225145 wrapper-clause-scope +group +wrapper-clause-scope +225149 modifier-scope +225151 wrapper-scope +modifier-scope +wrapper-clause-scope +225156 modifier-scope +225158 wrapper-clause-scope +225161 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +225171 group +wrapper-clause-scope +225174 wrapper-scope +wrapper-clause-scope +225177 modifier-scope +225179 wrapper-clause-scope +group +wrapper-clause-scope +225183 wrapper-scope +modifier-scope +225186 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +225199 modifier-scope +225201 wrapper-clause-scope +225203 wrapper-scope +modifier-scope +225206 wrapper-scope +225208 wrapper-clause-scope +225210 wrapper-scope +225212 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +225217 wrapper-clause-scope +225221 modifier-scope +225225 wrapper-clause-scope +group +225228 modifier-scope +wrapper-clause-scope +225231 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +225235 modifier-scope +wrapper-clause-scope +225238 modifier-scope +225241 wrapper-clause-scope +225244 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +225250 wrapper-clause-scope +225252 wrapper-scope +225254 wrapper-clause-scope +225256 wrapper-scope +225258 wrapper-clause-scope +225262 modifier-scope +225264 modifier-scope +conjuncted-wg +225267 conjuncted-wg +225269 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +225276 wrapper-clause-scope +225279 modifier-scope +225281 wrapper-scope +modifier-scope +conjuncted-wg +225285 wrapper-scope +225287 wrapper-clause-scope +wrapper-clause-scope +225291 modifier-scope +conjuncted-wg +225294 modifier-scope +225296 conjuncted-wg +conjuncted-wg +225299 wrapper-clause-scope +225301 modifier-scope +225305 wrapper-clause-scope +group +group +225309 modifier-scope +wrapper-clause-scope +225313 wrapper-scope +modifier-scope +wrapper-clause-scope +225317 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +225322 wrapper-clause-scope +225324 wrapper-clause-scope +225326 modifier-scope +225328 wrapper-clause-scope +225331 wrapper-scope +modifier-scope +225334 wrapper-clause-scope +225338 wrapper-clause-scope +group +225345 wrapper-clause-scope +group +wrapper-clause-scope +225351 modifier-scope +wrapper-clause-scope +225355 wrapper-clause-scope +wrapper-clause-scope +group +225360 modifier-clause-scope +modifier-clause-scope +225363 wrapper-scope +225365 wrapper-clause-scope +225367 wrapper-clause-scope +225369 wrapper-scope +apposition-group +225372 wrapper-scope +modifier-scope +modifier-scope +225376 wrapper-clause-scope +225379 wrapper-clause-scope +225381 conjuncted-wg +225383 wrapper-clause-scope +225385 modifier-scope +225387 wrapper-clause-scope +group +225390 group +225394 group +225397 wrapper-clause-scope +225399 wrapper-clause-scope +225404 modifier-clause-scope +modifier-clause-scope +225407 wrapper-scope +225409 wrapper-clause-scope +225411 modifier-scope +group +wrapper-clause-scope +225416 modifier-scope +wrapper-clause-scope +225419 modifier-scope +225421 wrapper-clause-scope +225424 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +225434 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +225444 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +225451 wrapper-scope +modifier-scope +modifier-scope +225456 modifier-scope +225459 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +225466 modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +225473 wrapper-clause-scope +wrapper-clause-scope +225476 conjuncted-wg +225478 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +225483 modifier-scope +modifier-scope +225486 wrapper-clause-scope +225488 modifier-scope +modifier-scope +wrapper-scope +group +225493 wrapper-clause-scope +225495 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-scope +modifier-scope +modifier-scope +225506 modifier-scope +conjuncted-wg +modifier-scope +225510 wrapper-clause-scope +225513 apposition-group +modifier-scope +modifier-scope +modifier-scope +225518 wrapper-scope +wrapper-scope +modifier-scope +225522 modifier-scope +225524 modifier-scope +modifier-scope +225527 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +225537 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +225544 group +wrapper-scope +wrapper-scope +225548 wrapper-clause-scope +225551 wrapper-clause-scope +225553 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +225558 wrapper-clause-scope +225560 wrapper-scope +modifier-scope +modifier-scope +225564 wrapper-clause-scope +225567 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +225572 modifier-scope +modifier-scope +modifier-scope +225576 conjuncted-wg +225578 wrapper-clause-scope +group +group +225582 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +225588 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +225594 wrapper-clause-scope +225596 wrapper-clause-scope +225598 wrapper-scope +225601 wrapper-clause-scope +225603 group +wrapper-scope +wrapper-scope +wrapper-clause-scope +225608 modifier-scope +wrapper-scope +225611 wrapper-clause-scope +225613 wrapper-clause-scope +225615 modifier-scope +225617 wrapper-clause-scope +225619 wrapper-clause-scope +225621 wrapper-scope +conjuncted-wg +225624 modifier-scope +wrapper-scope +conjuncted-wg +225628 modifier-scope +wrapper-scope +225631 wrapper-clause-scope +225633 wrapper-clause-scope +225635 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +225639 modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +225644 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +225654 wrapper-scope +modifier-scope +225657 wrapper-clause-scope +wrapper-clause-scope +225663 modifier-scope +wrapper-clause-scope +225666 wrapper-scope +225668 wrapper-clause-scope +225671 wrapper-clause-scope +225673 wrapper-scope +225675 conjuncted-wg +225677 wrapper-clause-scope +225679 modifier-scope +modifier-scope +modifier-scope +225683 wrapper-clause-scope +225686 modifier-scope +modifier-scope +225689 wrapper-clause-scope +group +225692 modifier-scope +wrapper-scope +225695 apposition-group +modifier-scope +225698 wrapper-scope +225700 group +modifier-scope +225704 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +225710 modifier-scope +225712 wrapper-clause-scope +225714 wrapper-clause-scope +225716 modifier-scope +225719 conjuncted-wg +225721 modifier-scope +conjuncted-wg +225724 modifier-scope +wrapper-clause-scope +225727 wrapper-clause-scope +225730 wrapper-clause-scope +225732 wrapper-clause-scope +225734 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +225743 wrapper-scope +225745 wrapper-clause-scope +225747 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +225756 wrapper-clause-scope +group +225759 modifier-scope +modifier-scope +group +wrapper-scope +wrapper-clause-scope +225765 wrapper-scope +wrapper-clause-scope +225768 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +225784 wrapper-clause-scope +225786 wrapper-clause-scope +225788 modifier-scope +modifier-scope +225791 conjuncted-wg +wrapper-scope +modifier-scope +225795 wrapper-clause-scope +group +225799 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +225803 modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +225810 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +225816 wrapper-clause-scope +225818 modifier-scope +225820 wrapper-clause-scope +225822 modifier-clause-scope +225825 wrapper-clause-scope +225829 wrapper-clause-scope +225831 wrapper-clause-scope +225834 wrapper-scope +225836 wrapper-clause-scope +225838 modifier-scope +modifier-scope +modifier-scope +modifier-scope +225843 wrapper-clause-scope +225846 wrapper-clause-scope +225848 wrapper-clause-scope +225850 conjuncted-wg +225852 modifier-scope +modifier-scope +modifier-scope +225856 wrapper-clause-scope +225858 wrapper-clause-scope +225860 modifier-scope +225862 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +225867 wrapper-scope +wrapper-scope +225870 wrapper-clause-scope +group +225873 wrapper-clause-scope +group +225876 wrapper-clause-scope +225878 modifier-scope +wrapper-scope +225881 wrapper-clause-scope +225883 wrapper-scope +wrapper-clause-scope +225888 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +225896 wrapper-scope +modifier-scope +conjuncted-wg +225901 conjuncted-wg +225904 conjuncted-wg +225908 wrapper-clause-scope +225910 wrapper-scope +225913 wrapper-clause-scope +225915 modifier-scope +wrapper-scope +wrapper-scope +225919 wrapper-clause-scope +225923 modifier-scope +modifier-scope +conjuncted-wg +225927 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +225934 wrapper-scope +modifier-scope +225938 wrapper-clause-scope +225942 wrapper-clause-scope +225946 apposition-group +apposition-group +group +group +wrapper-clause-scope +225953 conjuncted-wg +225956 wrapper-scope +modifier-scope +modifier-scope +225960 wrapper-scope +225962 group +225964 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +225971 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-clause-scope +225979 wrapper-clause-scope +group +225982 wrapper-scope +modifier-scope +modifier-scope +225986 wrapper-scope +modifier-scope +225989 wrapper-clause-scope +225991 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +225997 wrapper-clause-scope +225999 wrapper-clause-scope +226001 group +226003 conjuncted-wg +conjuncted-wg +226006 conjuncted-wg +conjuncted-wg +226009 conjuncted-wg +226011 conjuncted-wg +226013 conjuncted-wg +226015 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +226021 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +226033 group +226035 wrapper-scope +226038 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +226045 conjuncted-wg +226047 modifier-scope +modifier-scope +modifier-scope +226051 wrapper-clause-scope +226053 modifier-scope +226055 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +226067 apposition-group +226071 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +226083 modifier-scope +conjuncted-wg +226086 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +226093 modifier-clause-scope +modifier-clause-scope +226096 wrapper-scope +wrapper-scope +modifier-scope +226101 wrapper-clause-scope +226105 modifier-scope +modifier-scope +modifier-scope +226109 wrapper-clause-scope +group +226114 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +226119 wrapper-clause-scope +226121 modifier-scope +226123 wrapper-scope +226125 group +226127 group +226130 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +226136 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +226141 wrapper-clause-scope +226143 modifier-scope +modifier-scope +226147 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +226152 modifier-scope +226154 wrapper-clause-scope +group +226158 modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +226165 wrapper-clause-scope +group +group +226170 conjuncted-wg +226172 modifier-scope +226174 conjuncted-wg +wrapper-clause-scope +226177 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +wrapper-clause-scope +226188 wrapper-clause-scope +226190 modifier-scope +modifier-scope +226193 wrapper-clause-scope +226197 modifier-scope +conjuncted-wg +226200 modifier-scope +226202 wrapper-clause-scope +226205 wrapper-clause-scope +226207 wrapper-scope +modifier-scope +226212 wrapper-clause-scope +226214 modifier-scope +226217 wrapper-clause-scope +226219 conjuncted-wg +226221 wrapper-clause-scope +226224 wrapper-clause-scope +wrapper-clause-scope +226227 group +226229 wrapper-clause-scope +226231 conjuncted-wg +wrapper-clause-scope +226234 modifier-clause-scope +modifier-clause-scope +226238 wrapper-clause-scope +226240 modifier-scope +modifier-scope +wrapper-clause-scope +group +226245 wrapper-scope +modifier-scope +226248 wrapper-clause-scope +226250 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +226256 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +226262 wrapper-clause-scope +wrapper-clause-scope +226267 conjuncted-wg +226271 wrapper-clause-scope +226274 wrapper-clause-scope +226276 modifier-scope +modifier-scope +226283 group +wrapper-clause-scope +226286 modifier-scope +226288 wrapper-clause-scope +226290 modifier-scope +wrapper-clause-scope +226295 wrapper-clause-scope +wrapper-clause-scope +226298 modifier-scope +modifier-scope +modifier-scope +226302 wrapper-scope +modifier-scope +modifier-scope +apposition-group +226307 conjuncted-wg +226309 wrapper-scope +conjuncted-wg +226312 wrapper-scope +226314 wrapper-clause-scope +wrapper-clause-scope +226318 modifier-scope +226322 modifier-scope +conjuncted-wg +226325 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-clause-scope +modifier-scope +226332 wrapper-scope +conjuncted-wg +wrapper-clause-scope +226336 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +apposition-group +apposition-group +modifier-scope +226346 wrapper-scope +226348 group +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +226354 wrapper-clause-scope +226356 modifier-scope +wrapper-scope +modifier-scope +226361 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +226367 wrapper-clause-scope +226371 wrapper-clause-scope +226373 wrapper-scope +modifier-clause-scope +apposition-group +group +226379 modifier-scope +226381 modifier-clause-scope +modifier-clause-scope +226385 wrapper-clause-scope +226387 wrapper-scope +modifier-scope +group +wrapper-clause-scope +226392 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +226401 modifier-scope +226403 wrapper-clause-scope +226407 conjuncted-wg +wrapper-scope +modifier-scope +226411 wrapper-clause-scope +wrapper-clause-scope +226414 group +wrapper-clause-scope +226417 modifier-scope +226419 wrapper-clause-scope +226421 wrapper-scope +conjuncted-wg +wrapper-clause-scope +226425 wrapper-scope +226427 wrapper-clause-scope +226430 wrapper-clause-scope +226432 group +wrapper-clause-scope +226436 conjuncted-wg +group +modifier-scope +wrapper-scope +226441 wrapper-clause-scope +226444 modifier-scope +wrapper-scope +226447 group +226449 wrapper-scope +wrapper-clause-scope +group +226453 wrapper-scope +wrapper-clause-scope +226456 wrapper-scope +226458 group +226460 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +226467 wrapper-scope +226469 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +226474 wrapper-clause-scope +226476 wrapper-scope +226482 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +226495 wrapper-clause-scope +226497 wrapper-clause-scope +226500 modifier-scope +conjuncted-wg +226503 wrapper-scope +226505 wrapper-clause-scope +226509 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +226515 modifier-scope +modifier-scope +modifier-scope +modifier-scope +226520 wrapper-clause-scope +226522 modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +226528 wrapper-clause-scope +226530 wrapper-clause-scope +226533 group +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +226540 wrapper-scope +226542 wrapper-clause-scope +226544 modifier-scope +modifier-scope +wrapper-scope +226548 wrapper-scope +modifier-scope +modifier-scope +group +226553 wrapper-scope +modifier-scope +226558 wrapper-clause-scope +group +226561 wrapper-scope +modifier-scope +226565 wrapper-scope +226567 wrapper-clause-scope +226569 group +group +226572 wrapper-scope +modifier-scope +226576 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +226584 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +226589 wrapper-clause-scope +group +wrapper-clause-scope +226594 wrapper-scope +modifier-scope +modifier-scope +group +conjuncted-wg +226600 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +226605 modifier-scope +wrapper-scope +226609 wrapper-clause-scope +226612 wrapper-scope +conjuncted-wg +226615 wrapper-scope +226617 wrapper-clause-scope +226619 modifier-scope +226621 modifier-clause-scope +wrapper-clause-scope +226624 wrapper-scope +226626 wrapper-clause-scope +group +226629 modifier-scope +226631 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +226635 modifier-scope +modifier-scope +226638 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +226643 wrapper-clause-scope +226645 modifier-clause-scope +wrapper-clause-scope +226648 modifier-scope +modifier-scope +226651 wrapper-clause-scope +226653 wrapper-scope +226656 wrapper-clause-scope +226660 wrapper-clause-scope +226662 wrapper-scope +226665 wrapper-clause-scope +226667 wrapper-clause-scope +226670 wrapper-clause-scope +226673 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +226678 wrapper-clause-scope +226680 modifier-scope +226682 wrapper-clause-scope +226686 modifier-scope +modifier-scope +226689 wrapper-clause-scope +226692 modifier-scope +wrapper-scope +conjuncted-wg +226696 modifier-scope +wrapper-scope +modifier-scope +226700 wrapper-clause-scope +226702 wrapper-clause-scope +226705 wrapper-clause-scope +226708 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +226715 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +226722 wrapper-clause-scope +226724 wrapper-clause-scope +226728 group +226730 wrapper-scope +modifier-scope +226733 wrapper-scope +modifier-scope +226736 wrapper-clause-scope +226739 conjuncted-wg +226741 group +226743 wrapper-clause-scope +226746 wrapper-clause-scope +226749 wrapper-clause-scope +226751 wrapper-scope +modifier-scope +226754 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +226762 conjuncted-wg +226765 wrapper-clause-scope +226767 wrapper-clause-scope +226769 modifier-scope +modifier-scope +modifier-scope +226775 wrapper-clause-scope +226777 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +226784 modifier-scope +apposition-group +modifier-scope +modifier-scope +226790 wrapper-clause-scope +226793 wrapper-scope +modifier-scope +wrapper-clause-scope +226797 modifier-scope +wrapper-scope +modifier-scope +226803 modifier-scope +modifier-scope +226806 modifier-scope +modifier-scope +226810 conjuncted-wg +226812 modifier-scope +modifier-scope +226815 wrapper-clause-scope +226817 modifier-scope +226820 apposition-group +modifier-scope +226823 modifier-scope +226825 wrapper-clause-scope +226827 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +226834 wrapper-clause-scope +226836 wrapper-clause-scope +226838 wrapper-scope +wrapper-clause-scope +226841 modifier-scope +226843 wrapper-clause-scope +226848 conjuncted-wg +226850 modifier-scope +226852 wrapper-clause-scope +group +226855 modifier-scope +wrapper-clause-scope +226859 modifier-scope +group +modifier-scope +226863 modifier-clause-scope +modifier-clause-scope +226866 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +226870 wrapper-scope +modifier-scope +modifier-scope +226874 wrapper-clause-scope +226878 modifier-scope +modifier-scope +226881 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +226890 modifier-scope +modifier-scope +wrapper-clause-scope +226894 conjuncted-wg +226896 modifier-scope +modifier-scope +wrapper-scope +226900 wrapper-clause-scope +226902 wrapper-clause-scope +group +226905 wrapper-clause-scope +226910 wrapper-clause-scope +226912 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +226920 wrapper-clause-scope +226922 wrapper-clause-scope +226925 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +226930 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +226937 wrapper-clause-scope +226939 group +modifier-scope +226942 wrapper-clause-scope +wrapper-clause-scope +226946 wrapper-scope +226948 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +226954 modifier-scope +modifier-scope +conjuncted-wg +226958 modifier-scope +wrapper-scope +226961 wrapper-clause-scope +226963 wrapper-clause-scope +226965 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +226971 wrapper-scope +226973 wrapper-clause-scope +226975 wrapper-clause-scope +226977 modifier-scope +modifier-scope +modifier-scope +226981 wrapper-clause-scope +226983 wrapper-clause-scope +226985 modifier-scope +modifier-scope +modifier-scope +226989 wrapper-clause-scope +group +wrapper-clause-scope +226994 modifier-scope +modifier-scope +conjuncted-wg +227000 wrapper-scope +conjuncted-wg +227003 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +227010 modifier-scope +227012 wrapper-clause-scope +group +wrapper-clause-scope +227016 group +227018 modifier-scope +227020 modifier-scope +227022 wrapper-clause-scope +227024 group +227026 wrapper-clause-scope +227029 group +227033 modifier-scope +conjuncted-wg +227036 modifier-scope +227038 group +227042 wrapper-clause-scope +227044 wrapper-clause-scope +227046 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +227051 wrapper-clause-scope +227053 modifier-scope +227055 conjuncted-wg +227058 conjuncted-wg +227060 wrapper-scope +wrapper-clause-scope +227063 conjuncted-wg +227065 wrapper-scope +modifier-scope +wrapper-clause-scope +227069 modifier-scope +wrapper-clause-scope +227072 modifier-scope +227074 wrapper-clause-scope +227076 wrapper-clause-scope +227078 modifier-scope +227080 wrapper-clause-scope +227082 modifier-scope +227085 wrapper-clause-scope +227087 wrapper-clause-scope +227090 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +227096 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +227105 wrapper-clause-scope +227109 modifier-scope +modifier-scope +wrapper-clause-scope +227113 wrapper-scope +wrapper-clause-scope +227117 wrapper-scope +modifier-scope +wrapper-scope +227121 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +227126 modifier-scope +227128 wrapper-clause-scope +227130 group +227132 wrapper-scope +wrapper-clause-scope +227136 wrapper-scope +227138 wrapper-clause-scope +227140 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +227145 modifier-scope +modifier-scope +227149 conjuncted-wg +227151 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +227156 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +227161 wrapper-clause-scope +227164 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +227170 wrapper-clause-scope +227172 wrapper-clause-scope +227175 modifier-scope +conjuncted-wg +227178 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +227185 modifier-scope +227187 wrapper-clause-scope +227189 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +227194 modifier-scope +227196 group +wrapper-clause-scope +227199 modifier-scope +modifier-scope +227202 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +227207 modifier-scope +modifier-scope +conjuncted-wg +227211 modifier-scope +modifier-scope +227214 wrapper-clause-scope +227216 modifier-scope +227218 wrapper-clause-scope +227220 modifier-scope +227222 wrapper-clause-scope +227225 conjuncted-wg +227228 wrapper-clause-scope +227231 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +227239 modifier-scope +wrapper-scope +modifier-scope +227244 wrapper-clause-scope +227247 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +227252 modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +227258 modifier-scope +modifier-scope +227261 modifier-scope +modifier-scope +modifier-scope +227265 wrapper-clause-scope +group +227268 modifier-scope +modifier-scope +227271 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +227278 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +227284 conjuncted-wg +conjuncted-wg +227287 wrapper-clause-scope +227289 wrapper-scope +group +modifier-scope +wrapper-clause-scope +227294 modifier-clause-scope +wrapper-clause-scope +227297 wrapper-scope +group +227300 wrapper-scope +227304 wrapper-scope +wrapper-clause-scope +227307 wrapper-clause-scope +227309 modifier-scope +modifier-scope +227312 wrapper-clause-scope +227314 wrapper-clause-scope +227317 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +227322 modifier-scope +modifier-scope +modifier-scope +modifier-scope +227327 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +227332 modifier-scope +wrapper-scope +modifier-scope +227336 wrapper-clause-scope +group +227339 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +227345 group +group +wrapper-clause-scope +227350 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +227358 wrapper-scope +modifier-scope +wrapper-clause-scope +227362 wrapper-clause-scope +227364 wrapper-scope +modifier-scope +wrapper-clause-scope +227368 wrapper-clause-scope +227370 wrapper-scope +modifier-scope +227373 wrapper-clause-scope +227375 wrapper-scope +227377 wrapper-clause-scope +227379 wrapper-scope +227381 wrapper-clause-scope +227383 wrapper-scope +227386 modifier-scope +227388 group +227390 modifier-scope +227392 modifier-scope +227394 group +227396 modifier-scope +wrapper-scope +227399 modifier-scope +227401 modifier-scope +227403 modifier-scope +227405 modifier-scope +227407 modifier-scope +227409 modifier-scope +227411 modifier-scope +227413 modifier-scope +modifier-scope +modifier-scope +227417 modifier-scope +227420 wrapper-clause-scope +227424 conjuncted-wg +227427 group +227429 wrapper-scope +227432 wrapper-scope +227436 modifier-scope +wrapper-scope +group +227440 modifier-scope +227442 modifier-scope +227445 wrapper-scope +227448 wrapper-scope +227451 wrapper-scope +modifier-scope +227455 wrapper-clause-scope +227457 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +227464 group +227467 modifier-scope +wrapper-clause-scope +227470 group +group +227476 wrapper-clause-scope +227478 wrapper-clause-scope +227480 modifier-scope +modifier-scope +227484 wrapper-clause-scope +227487 wrapper-clause-scope +227490 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +227497 wrapper-scope +modifier-scope +conjuncted-wg +227501 wrapper-scope +modifier-scope +modifier-scope +227506 modifier-scope +modifier-clause-scope +227510 wrapper-clause-scope +227513 wrapper-clause-scope +227515 wrapper-scope +conjuncted-wg +227518 wrapper-clause-scope +227520 wrapper-scope +wrapper-scope +227523 wrapper-clause-scope +227526 wrapper-clause-scope +227528 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +227534 wrapper-clause-scope +227537 wrapper-clause-scope +227539 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +227545 wrapper-clause-scope +227548 modifier-scope +227552 modifier-scope +conjuncted-wg +227555 wrapper-scope +227557 wrapper-clause-scope +227559 modifier-scope +wrapper-scope +modifier-scope +227563 wrapper-clause-scope +227565 wrapper-clause-scope +227567 modifier-scope +227569 wrapper-clause-scope +227571 modifier-scope +modifier-scope +227574 wrapper-clause-scope +group +227577 modifier-scope +227579 wrapper-scope +wrapper-clause-scope +227582 modifier-scope +227584 wrapper-clause-scope +227587 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +227595 wrapper-clause-scope +group +227598 wrapper-scope +modifier-scope +wrapper-clause-scope +227602 modifier-scope +227604 wrapper-scope +modifier-scope +227607 group +227609 modifier-scope +group +227612 modifier-scope +modifier-scope +modifier-scope +227616 modifier-scope +modifier-scope +modifier-scope +227620 modifier-scope +modifier-scope +modifier-scope +227624 modifier-scope +modifier-scope +modifier-scope +227629 wrapper-clause-scope +227631 wrapper-clause-scope +227634 wrapper-clause-scope +227636 wrapper-clause-scope +227638 modifier-scope +227640 wrapper-clause-scope +group +227644 wrapper-clause-scope +group +227650 conjuncted-wg +wrapper-clause-scope +227653 modifier-scope +modifier-scope +227656 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +227662 modifier-scope +modifier-scope +wrapper-clause-scope +227668 modifier-scope +modifier-scope +227671 wrapper-clause-scope +227673 modifier-scope +modifier-scope +227676 wrapper-clause-scope +group +227679 modifier-scope +modifier-scope +wrapper-clause-scope +227684 wrapper-scope +wrapper-clause-scope +227687 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +227695 modifier-scope +conjuncted-wg +227698 modifier-scope +227700 wrapper-clause-scope +227703 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +227708 modifier-scope +modifier-scope +modifier-scope +227713 wrapper-clause-scope +227715 wrapper-scope +227718 conjuncted-wg +227721 conjuncted-wg +227724 conjuncted-wg +227726 wrapper-clause-scope +227729 group +modifier-scope +group +conjuncted-wg +227734 modifier-scope +modifier-scope +wrapper-scope +227738 wrapper-clause-scope +227740 wrapper-clause-scope +227742 modifier-scope +227744 wrapper-scope +modifier-scope +227748 conjuncted-wg +227751 conjuncted-wg +227753 wrapper-clause-scope +227756 group +227759 wrapper-clause-scope +227761 wrapper-clause-scope +227763 conjuncted-wg +227765 wrapper-clause-scope +227767 wrapper-clause-scope +227769 wrapper-clause-scope +227771 modifier-scope +227775 wrapper-clause-scope +227777 modifier-scope +227780 modifier-scope +modifier-scope +227783 conjuncted-wg +227785 wrapper-clause-scope +group +227788 wrapper-clause-scope +227790 modifier-scope +227793 wrapper-clause-scope +227795 conjuncted-wg +227797 wrapper-scope +conjuncted-wg +227800 modifier-scope +227803 wrapper-scope +modifier-scope +modifier-scope +227808 wrapper-clause-scope +227810 modifier-scope +227812 wrapper-clause-scope +group +227815 wrapper-clause-scope +227817 wrapper-clause-scope +227819 modifier-scope +227821 wrapper-clause-scope +227824 wrapper-clause-scope +227826 conjuncted-wg +227828 modifier-scope +227830 wrapper-clause-scope +227833 modifier-scope +conjuncted-wg +227837 wrapper-clause-scope +227839 conjuncted-wg +group +wrapper-clause-scope +227844 modifier-scope +conjuncted-wg +group +wrapper-clause-scope +227850 modifier-scope +227852 wrapper-clause-scope +227855 conjuncted-wg +wrapper-clause-scope +227858 conjuncted-wg +wrapper-clause-scope +227861 modifier-scope +227863 wrapper-clause-scope +227865 wrapper-scope +227867 conjuncted-wg +wrapper-clause-scope +227871 conjuncted-wg +conjuncted-wg +227875 wrapper-clause-scope +227877 modifier-scope +modifier-scope +227880 wrapper-clause-scope +227882 modifier-scope +modifier-scope +modifier-scope +227886 wrapper-clause-scope +227888 modifier-scope +modifier-scope +modifier-scope +227892 wrapper-clause-scope +227897 wrapper-clause-scope +227900 modifier-scope +conjuncted-wg +227903 modifier-scope +modifier-scope +227906 wrapper-clause-scope +wrapper-clause-scope +227909 modifier-scope +wrapper-scope +modifier-scope +227913 wrapper-clause-scope +227916 wrapper-clause-scope +227919 wrapper-clause-scope +227921 modifier-scope +227923 conjuncted-wg +227927 conjuncted-wg +wrapper-scope +group +wrapper-clause-scope +group +227933 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +227938 wrapper-clause-scope +227942 wrapper-clause-scope +227944 wrapper-clause-scope +227946 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +227952 modifier-scope +modifier-scope +227955 wrapper-scope +227957 wrapper-clause-scope +227959 modifier-scope +modifier-scope +227962 wrapper-clause-scope +group +227965 modifier-scope +modifier-scope +modifier-scope +227969 conjuncted-wg +227972 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +227978 wrapper-clause-scope +227981 wrapper-clause-scope +227983 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +227988 modifier-scope +227990 wrapper-clause-scope +wrapper-clause-scope +227994 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +228004 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +228009 wrapper-clause-scope +228012 conjuncted-wg +228014 group +modifier-scope +wrapper-clause-scope +228018 wrapper-scope +228021 wrapper-clause-scope +228024 conjuncted-wg +228026 conjuncted-wg +228028 wrapper-scope +modifier-scope +modifier-scope +228033 apposition-group +228035 wrapper-scope +wrapper-scope +modifier-scope +228040 wrapper-clause-scope +228042 wrapper-scope +228045 wrapper-clause-scope +group +group +wrapper-clause-scope +228050 wrapper-clause-scope +228053 wrapper-clause-scope +228055 wrapper-scope +228057 wrapper-clause-scope +228059 modifier-clause-scope +228061 wrapper-scope +228063 wrapper-clause-scope +228065 group +modifier-scope +228069 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +228076 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +228082 wrapper-clause-scope +228084 modifier-scope +modifier-scope +228087 wrapper-clause-scope +wrapper-clause-scope +228091 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +228095 wrapper-scope +228097 wrapper-clause-scope +228101 wrapper-scope +modifier-scope +modifier-scope +228106 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +228115 wrapper-clause-scope +group +228118 modifier-scope +modifier-scope +228121 modifier-scope +conjuncted-wg +modifier-scope +228125 modifier-scope +wrapper-scope +wrapper-scope +group +wrapper-clause-scope +228131 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +228136 conjuncted-wg +group +modifier-scope +modifier-scope +group +228142 wrapper-clause-scope +group +228145 wrapper-clause-scope +228147 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +228153 wrapper-clause-scope +228156 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +228163 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +228168 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +228175 wrapper-scope +wrapper-scope +conjuncted-wg +228179 modifier-scope +modifier-scope +228182 wrapper-clause-scope +228186 wrapper-scope +modifier-scope +modifier-scope +228190 wrapper-clause-scope +group +228195 modifier-scope +modifier-scope +228198 modifier-scope +conjuncted-wg +228201 modifier-scope +modifier-scope +228204 wrapper-clause-scope +228207 group +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +228217 wrapper-scope +228219 wrapper-clause-scope +228221 modifier-scope +modifier-scope +modifier-scope +modifier-scope +228226 conjuncted-wg +wrapper-scope +wrapper-clause-scope +228230 wrapper-scope +wrapper-clause-scope +228233 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +228239 wrapper-clause-scope +228242 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +228248 modifier-scope +228250 modifier-scope +modifier-scope +228254 modifier-scope +228256 wrapper-clause-scope +228258 wrapper-scope +wrapper-clause-scope +228261 wrapper-scope +group +modifier-scope +wrapper-clause-scope +228266 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +228271 modifier-scope +group +wrapper-scope +modifier-scope +228276 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +228281 modifier-scope +modifier-scope +modifier-scope +228285 wrapper-scope +modifier-scope +228288 wrapper-clause-scope +228290 group +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +228299 wrapper-clause-scope +group +228303 modifier-clause-scope +228305 wrapper-scope +wrapper-scope +modifier-scope +228309 conjuncted-wg +group +wrapper-scope +modifier-scope +228314 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +228321 wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +228331 modifier-clause-scope +228333 wrapper-clause-scope +group +228336 wrapper-scope +modifier-scope +wrapper-clause-scope +228343 wrapper-scope +conjuncted-wg +228348 wrapper-clause-scope +228350 modifier-scope +wrapper-clause-scope +228353 wrapper-scope +228355 wrapper-clause-scope +group +228359 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +228364 wrapper-clause-scope +228366 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +228372 wrapper-scope +modifier-scope +wrapper-clause-scope +228379 conjuncted-wg +228381 wrapper-scope +wrapper-clause-scope +228384 wrapper-scope +228386 wrapper-clause-scope +228388 wrapper-scope +228390 modifier-scope +228392 wrapper-clause-scope +228395 conjuncted-wg +228397 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +228406 wrapper-clause-scope +228409 conjuncted-wg +228412 wrapper-clause-scope +228414 wrapper-clause-scope +228416 modifier-scope +modifier-scope +modifier-scope +228420 wrapper-scope +modifier-scope +228423 wrapper-clause-scope +228427 conjuncted-wg +228429 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +228434 wrapper-clause-scope +228436 wrapper-clause-scope +228439 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +228444 wrapper-clause-scope +228449 wrapper-scope +group +modifier-scope +modifier-scope +group +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +228460 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +228468 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +228472 wrapper-scope +modifier-scope +conjuncted-wg +228476 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +228485 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +228492 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +228499 wrapper-clause-scope +group +228502 group +modifier-scope +modifier-scope +228506 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +228514 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +228519 wrapper-scope +apposition-group +wrapper-clause-scope +228523 wrapper-clause-scope +228525 modifier-scope +modifier-scope +228528 conjuncted-wg +modifier-scope +228533 apposition-group +apposition-group +group +228537 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +228544 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +228550 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +228564 apposition-group +group +modifier-scope +modifier-scope +228569 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +228575 apposition-group +228577 wrapper-scope +228580 apposition-group +apposition-group +group +228584 conjuncted-wg +modifier-scope +228587 modifier-scope +conjuncted-wg +modifier-scope +228591 wrapper-scope +modifier-scope +228594 modifier-scope +wrapper-scope +wrapper-scope +228599 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +228607 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +modifier-scope +modifier-scope +228618 group +modifier-scope +modifier-scope +wrapper-scope +228624 modifier-scope +wrapper-scope +modifier-scope +228629 group +modifier-scope +modifier-scope +228634 group +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +228640 wrapper-scope +228643 group +228645 conjuncted-wg +wrapper-clause-scope +228648 wrapper-scope +228651 apposition-group +group +modifier-scope +228655 wrapper-scope +228659 group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +modifier-scope +modifier-scope +228667 conjuncted-wg +228671 group +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +228680 group +228682 conjuncted-wg +228684 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +228695 wrapper-scope +modifier-scope +228699 modifier-scope +modifier-scope +modifier-scope +modifier-scope +228704 wrapper-clause-scope +228709 wrapper-clause-scope +228712 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +228719 conjuncted-wg +228721 wrapper-scope +228723 wrapper-clause-scope +228727 modifier-scope +group +modifier-scope +modifier-scope +conjuncted-wg +228733 modifier-scope +modifier-scope +conjuncted-wg +228737 wrapper-scope +modifier-scope +228740 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +228745 wrapper-clause-scope +228747 modifier-scope +modifier-scope +wrapper-scope +228751 wrapper-clause-scope +228754 wrapper-scope +conjuncted-wg +228759 wrapper-scope +modifier-scope +conjuncted-wg +228763 wrapper-scope +modifier-scope +228766 wrapper-clause-scope +228768 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +228778 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +228787 group +modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +group +modifier-scope +modifier-scope +228798 group +group +wrapper-clause-scope +228802 modifier-scope +wrapper-scope +228806 group +modifier-scope +modifier-scope +228810 conjuncted-wg +modifier-scope +modifier-scope +228816 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +228824 wrapper-clause-scope +228827 group +wrapper-clause-scope +228831 wrapper-scope +228833 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +wrapper-scope +modifier-clause-scope +modifier-clause-scope +228845 modifier-scope +conjuncted-wg +228848 conjuncted-wg +228850 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +228874 group +modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +group +modifier-scope +group +group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +228892 wrapper-scope +228894 wrapper-scope +group +modifier-clause-scope +modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +228902 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +228912 conjuncted-wg +228916 conjuncted-wg +wrapper-scope +228919 group +modifier-scope +conjuncted-wg +group +group +228927 modifier-scope +wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +228936 wrapper-scope +group +228939 wrapper-scope +wrapper-scope +wrapper-scope +228943 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +228948 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +228954 wrapper-scope +modifier-scope +228957 modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +group +228965 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +228975 modifier-clause-scope +apposition-group +228978 wrapper-scope +wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +group +group +modifier-scope +modifier-scope +228989 wrapper-clause-scope +228992 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-clause-scope +229002 modifier-scope +conjuncted-wg +229006 wrapper-scope +conjuncted-wg +229009 wrapper-scope +229011 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +229019 wrapper-clause-scope +229022 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +229028 wrapper-scope +229030 wrapper-clause-scope +229032 wrapper-clause-scope +229034 modifier-scope +229036 conjuncted-wg +229038 conjuncted-wg +229040 conjuncted-wg +229042 conjuncted-wg +229046 modifier-scope +229048 wrapper-clause-scope +229051 wrapper-scope +conjuncted-wg +229054 wrapper-scope +modifier-scope +modifier-scope +229060 group +group +229063 modifier-scope +wrapper-clause-scope +229067 conjuncted-wg +wrapper-clause-scope +229070 wrapper-clause-scope +229072 wrapper-scope +modifier-scope +modifier-scope +229076 wrapper-clause-scope +229078 modifier-scope +modifier-scope +modifier-scope +229083 wrapper-clause-scope +229085 modifier-scope +229087 wrapper-clause-scope +229089 group +229093 wrapper-scope +modifier-scope +wrapper-clause-scope +229097 modifier-scope +modifier-scope +modifier-scope +229101 wrapper-clause-scope +229103 conjuncted-wg +229105 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229111 conjuncted-wg +229113 group +wrapper-clause-scope +229116 modifier-scope +229118 wrapper-clause-scope +229122 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +229127 modifier-scope +modifier-scope +modifier-scope +229136 modifier-scope +modifier-scope +modifier-scope +229140 wrapper-clause-scope +229142 modifier-scope +modifier-scope +modifier-scope +modifier-scope +229147 wrapper-clause-scope +group +group +wrapper-clause-scope +229152 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +229161 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +229167 wrapper-clause-scope +229169 wrapper-clause-scope +229171 conjuncted-wg +229173 conjuncted-wg +229176 wrapper-clause-scope +group +229179 modifier-clause-scope +229182 conjuncted-wg +229184 conjuncted-wg +229186 conjuncted-wg +229188 group +group +modifier-scope +229192 conjuncted-wg +conjuncted-wg +group +229196 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +229202 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +229208 modifier-scope +modifier-scope +modifier-scope +modifier-scope +229213 wrapper-clause-scope +229216 modifier-scope +modifier-scope +wrapper-clause-scope +group +229221 wrapper-scope +229225 wrapper-clause-scope +group +229229 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229235 modifier-scope +conjuncted-wg +229238 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229244 modifier-scope +conjuncted-wg +229247 group +229249 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +229255 wrapper-clause-scope +229257 modifier-scope +wrapper-clause-scope +229260 wrapper-clause-scope +229262 wrapper-clause-scope +229264 modifier-scope +wrapper-scope +modifier-scope +229268 wrapper-clause-scope +229270 wrapper-scope +wrapper-scope +apposition-group +group +229275 wrapper-scope +229277 conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-clause-scope +wrapper-clause-scope +229284 wrapper-clause-scope +229286 wrapper-scope +229291 wrapper-scope +229293 wrapper-scope +229295 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +229301 wrapper-clause-scope +229304 wrapper-scope +wrapper-clause-scope +229308 group +conjuncted-wg +modifier-clause-scope +229316 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +229326 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +229338 conjuncted-wg +wrapper-clause-scope +229341 modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +229349 wrapper-clause-scope +229352 wrapper-scope +modifier-scope +conjuncted-wg +229356 modifier-clause-scope +229358 modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229369 wrapper-clause-scope +229371 apposition-group +apposition-group +modifier-clause-scope +group +modifier-scope +wrapper-scope +wrapper-clause-scope +229380 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +229387 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +229395 wrapper-clause-scope +229397 modifier-scope +modifier-scope +modifier-scope +229401 wrapper-clause-scope +wrapper-clause-scope +229407 conjuncted-wg +229409 conjuncted-wg +229411 wrapper-scope +modifier-scope +229414 modifier-scope +wrapper-clause-scope +229418 wrapper-clause-scope +229420 modifier-scope +wrapper-scope +modifier-scope +229424 wrapper-clause-scope +group +229427 modifier-scope +229429 modifier-scope +modifier-scope +modifier-scope +modifier-scope +229434 wrapper-clause-scope +229436 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229441 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +229449 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229454 modifier-scope +modifier-scope +modifier-scope +229458 wrapper-clause-scope +group +group +229462 modifier-scope +modifier-scope +modifier-scope +229466 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +229473 apposition-group +wrapper-clause-scope +229476 wrapper-scope +modifier-scope +229479 group +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +229488 wrapper-clause-scope +229491 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229498 conjuncted-wg +229501 wrapper-clause-scope +229504 wrapper-clause-scope +229507 modifier-scope +conjuncted-wg +229510 wrapper-scope +229512 wrapper-clause-scope +229514 modifier-scope +229517 wrapper-clause-scope +229519 modifier-scope +229523 group +229525 wrapper-scope +229527 group +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +229533 group +group +229537 wrapper-clause-scope +229540 wrapper-clause-scope +group +229543 wrapper-clause-scope +229546 wrapper-clause-scope +group +wrapper-clause-scope +229550 wrapper-scope +229552 conjuncted-wg +wrapper-clause-scope +229556 conjuncted-wg +229558 wrapper-scope +229560 wrapper-clause-scope +group +wrapper-clause-scope +229564 conjuncted-wg +229567 conjuncted-wg +group +229571 wrapper-clause-scope +229574 wrapper-clause-scope +229577 wrapper-clause-scope +229581 apposition-group +229584 wrapper-scope +229586 modifier-scope +modifier-scope +229590 group +229593 conjuncted-wg +229595 modifier-scope +229597 wrapper-clause-scope +229600 conjuncted-wg +229602 wrapper-clause-scope +229604 conjuncted-wg +229606 wrapper-clause-scope +229608 conjuncted-wg +229610 modifier-clause-scope +modifier-clause-scope +229614 wrapper-clause-scope +229618 wrapper-clause-scope +229620 conjuncted-wg +wrapper-clause-scope +229623 conjuncted-wg +229625 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +229631 wrapper-clause-scope +group +229634 modifier-scope +229636 group +modifier-scope +modifier-scope +229642 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229649 wrapper-scope +modifier-scope +conjuncted-wg +229654 wrapper-clause-scope +group +229659 wrapper-clause-scope +229662 modifier-scope +wrapper-scope +apposition-group +wrapper-clause-scope +229668 group +229670 wrapper-clause-scope +group +group +wrapper-clause-scope +229675 wrapper-scope +modifier-scope +group +modifier-scope +229680 modifier-scope +modifier-scope +wrapper-clause-scope +229684 modifier-scope +wrapper-clause-scope +229688 wrapper-scope +conjuncted-wg +group +229692 modifier-scope +modifier-scope +229695 modifier-scope +229698 wrapper-clause-scope +229700 modifier-clause-scope +modifier-clause-scope +apposition-group +229707 wrapper-clause-scope +229709 modifier-scope +modifier-scope +conjuncted-wg +229714 conjuncted-wg +wrapper-clause-scope +229717 wrapper-scope +229720 wrapper-clause-scope +229723 modifier-scope +conjuncted-wg +229726 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +229732 wrapper-clause-scope +229734 modifier-scope +modifier-scope +modifier-scope +modifier-scope +229739 wrapper-clause-scope +229741 modifier-scope +modifier-scope +modifier-scope +229748 group +group +wrapper-clause-scope +229753 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +229758 wrapper-clause-scope +229761 wrapper-clause-scope +229763 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +229770 wrapper-clause-scope +229773 wrapper-clause-scope +229775 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +229780 wrapper-clause-scope +group +229784 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +229790 wrapper-clause-scope +229792 wrapper-scope +229794 wrapper-clause-scope +229796 group +229799 group +229801 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +229809 conjuncted-wg +229811 conjuncted-wg +229814 conjuncted-wg +229818 wrapper-clause-scope +229821 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +229827 wrapper-scope +modifier-scope +wrapper-clause-scope +229832 wrapper-clause-scope +229835 wrapper-scope +229838 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +229843 wrapper-clause-scope +229846 wrapper-clause-scope +229850 conjuncted-wg +229852 wrapper-scope +conjuncted-wg +229855 wrapper-clause-scope +229858 wrapper-clause-scope +229860 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +229864 modifier-clause-scope +apposition-group +229868 conjuncted-wg +229870 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +229875 modifier-scope +modifier-scope +modifier-scope +229879 wrapper-clause-scope +229881 modifier-scope +wrapper-scope +modifier-scope +229885 wrapper-clause-scope +229888 group +229890 wrapper-scope +229892 conjuncted-wg +wrapper-scope +wrapper-clause-scope +229896 wrapper-scope +wrapper-clause-scope +229899 wrapper-scope +229901 wrapper-clause-scope +229903 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +229908 wrapper-clause-scope +229911 wrapper-clause-scope +229913 apposition-group +229916 wrapper-clause-scope +group +wrapper-clause-scope +229921 wrapper-clause-scope +229925 wrapper-scope +229930 wrapper-scope +229932 wrapper-clause-scope +229934 wrapper-clause-scope +229936 wrapper-clause-scope +229938 modifier-scope +229940 wrapper-clause-scope +229943 modifier-scope +group +modifier-scope +wrapper-scope +wrapper-clause-scope +229950 modifier-scope +conjuncted-wg +conjuncted-wg +229956 wrapper-scope +conjuncted-wg +229959 wrapper-scope +229963 conjuncted-wg +229968 conjuncted-wg +229973 wrapper-scope +modifier-scope +modifier-scope +229977 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +229985 modifier-scope +modifier-scope +229988 group +229997 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +230004 group +230008 conjuncted-wg +230010 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +230016 wrapper-clause-scope +230018 modifier-scope +wrapper-scope +conjuncted-wg +230022 modifier-scope +wrapper-clause-scope +230025 wrapper-scope +group +wrapper-scope +modifier-scope +230030 wrapper-clause-scope +230033 modifier-scope +230036 wrapper-scope +modifier-scope +apposition-group +apposition-group +230041 modifier-scope +modifier-scope +modifier-scope +230045 conjuncted-wg +wrapper-scope +230049 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +group +230056 wrapper-scope +modifier-scope +230059 wrapper-clause-scope +230061 wrapper-clause-scope +230063 wrapper-scope +230065 wrapper-clause-scope +230067 group +230069 wrapper-scope +wrapper-clause-scope +230072 modifier-scope +conjuncted-wg +230075 group +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +230080 modifier-scope +wrapper-clause-scope +group +230084 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +230089 wrapper-scope +230095 wrapper-scope +wrapper-scope +conjuncted-wg +230099 wrapper-scope +230101 conjuncted-wg +modifier-scope +230105 wrapper-scope +230107 conjuncted-wg +apposition-group +apposition-group +modifier-scope +230112 wrapper-scope +modifier-scope +wrapper-clause-scope +230116 modifier-scope +modifier-scope +230119 wrapper-clause-scope +230122 wrapper-scope +conjuncted-wg +230125 wrapper-clause-scope +230127 wrapper-scope +modifier-scope +wrapper-clause-scope +230131 modifier-scope +modifier-scope +230134 wrapper-clause-scope +230137 conjuncted-wg +230139 modifier-scope +conjuncted-wg +230142 modifier-scope +wrapper-clause-scope +230145 wrapper-clause-scope +230149 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +230155 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +230171 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +230178 modifier-scope +modifier-scope +230182 wrapper-clause-scope +230184 modifier-scope +modifier-scope +modifier-scope +230189 modifier-scope +modifier-scope +wrapper-clause-scope +230193 modifier-scope +wrapper-clause-scope +230197 wrapper-clause-scope +230199 modifier-scope +group +modifier-scope +modifier-scope +230204 wrapper-clause-scope +230206 group +230208 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +230214 conjuncted-wg +wrapper-scope +modifier-scope +230218 conjuncted-wg +230221 wrapper-scope +modifier-scope +group +230226 modifier-scope +230228 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +wrapper-clause-scope +wrapper-clause-scope +230240 wrapper-scope +modifier-scope +230243 wrapper-clause-scope +230245 group +group +230248 wrapper-clause-scope +230250 modifier-clause-scope +230253 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +230259 modifier-scope +230261 wrapper-clause-scope +230264 modifier-scope +230266 wrapper-clause-scope +230268 modifier-scope +230270 wrapper-clause-scope +230272 modifier-scope +modifier-scope +230276 modifier-scope +wrapper-scope +modifier-scope +230281 modifier-scope +230283 wrapper-scope +modifier-scope +230287 wrapper-scope +modifier-scope +conjuncted-wg +230291 wrapper-scope +modifier-scope +230294 wrapper-clause-scope +230296 wrapper-clause-scope +230298 modifier-scope +modifier-scope +230301 wrapper-clause-scope +230303 wrapper-clause-scope +230305 wrapper-scope +modifier-scope +modifier-scope +230310 wrapper-clause-scope +230312 wrapper-clause-scope +230315 wrapper-clause-scope +wrapper-clause-scope +230318 wrapper-clause-scope +230320 modifier-scope +230322 wrapper-clause-scope +230324 wrapper-scope +modifier-scope +230328 wrapper-scope +230330 wrapper-clause-scope +230332 wrapper-scope +modifier-clause-scope +apposition-group +230337 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +230342 wrapper-clause-scope +230345 wrapper-scope +conjuncted-wg +230348 wrapper-scope +230350 wrapper-clause-scope +wrapper-clause-scope +230353 wrapper-clause-scope +230355 wrapper-scope +230358 wrapper-scope +230361 wrapper-scope +230363 wrapper-clause-scope +230367 conjuncted-wg +conjuncted-wg +230371 wrapper-clause-scope +230373 wrapper-clause-scope +230375 modifier-scope +230381 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +230393 wrapper-clause-scope +230397 conjuncted-wg +230399 conjuncted-wg +230401 conjuncted-wg +230404 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +group +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +230419 conjuncted-wg +230424 conjuncted-wg +230426 wrapper-scope +230430 modifier-scope +modifier-scope +conjuncted-wg +230434 modifier-scope +modifier-scope +230437 wrapper-clause-scope +230439 modifier-scope +230441 conjuncted-wg +conjuncted-wg +230444 wrapper-clause-scope +230447 modifier-scope +group +modifier-scope +modifier-scope +conjuncted-wg +230453 modifier-scope +modifier-scope +230456 wrapper-clause-scope +230458 modifier-scope +230460 conjuncted-wg +230462 modifier-scope +conjuncted-wg +230465 wrapper-scope +modifier-scope +modifier-scope +230470 wrapper-clause-scope +230472 modifier-scope +modifier-scope +modifier-scope +230476 wrapper-clause-scope +230479 modifier-scope +modifier-scope +modifier-scope +modifier-scope +230486 wrapper-clause-scope +230488 wrapper-clause-scope +230490 wrapper-clause-scope +230492 modifier-scope +modifier-scope +230495 wrapper-clause-scope +230498 modifier-scope +wrapper-scope +modifier-scope +230502 wrapper-clause-scope +230504 wrapper-clause-scope +230506 modifier-scope +modifier-scope +230510 modifier-scope +230514 modifier-clause-scope +apposition-group +wrapper-clause-scope +230518 wrapper-scope +modifier-scope +conjuncted-wg +230522 wrapper-clause-scope +230524 wrapper-scope +modifier-scope +modifier-scope +230528 wrapper-clause-scope +230530 wrapper-clause-scope +230533 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +230541 wrapper-scope +conjuncted-wg +230545 wrapper-clause-scope +230548 wrapper-clause-scope +230550 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +230555 wrapper-clause-scope +230558 wrapper-scope +230562 wrapper-clause-scope +230565 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +230571 modifier-scope +modifier-scope +230576 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +230581 modifier-scope +modifier-scope +modifier-scope +230587 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +230592 modifier-scope +230594 wrapper-clause-scope +wrapper-clause-scope +230598 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +230604 modifier-scope +230606 group +group +230609 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +230613 wrapper-scope +wrapper-scope +wrapper-clause-scope +230618 modifier-scope +conjuncted-wg +230621 wrapper-scope +modifier-scope +wrapper-clause-scope +230625 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +230630 wrapper-clause-scope +230632 wrapper-scope +230634 wrapper-scope +230636 wrapper-clause-scope +230639 modifier-scope +wrapper-scope +modifier-scope +230643 wrapper-clause-scope +group +230646 modifier-scope +wrapper-scope +230649 conjuncted-wg +230651 conjuncted-wg +230654 wrapper-clause-scope +230657 modifier-scope +conjuncted-wg +modifier-scope +group +230662 wrapper-clause-scope +230664 wrapper-scope +230666 wrapper-clause-scope +group +230669 wrapper-clause-scope +230671 wrapper-clause-scope +230675 conjuncted-wg +230678 wrapper-clause-scope +230680 wrapper-clause-scope +230682 group +modifier-scope +230687 wrapper-scope +conjuncted-wg +230690 wrapper-clause-scope +230693 conjuncted-wg +230695 modifier-scope +conjuncted-wg +230699 wrapper-clause-scope +230701 modifier-scope +group +modifier-scope +modifier-scope +230706 group +wrapper-clause-scope +230710 modifier-scope +modifier-scope +conjuncted-wg +230715 wrapper-scope +230718 wrapper-clause-scope +230721 apposition-group +230724 modifier-scope +conjuncted-wg +230728 wrapper-scope +modifier-scope +230731 wrapper-clause-scope +230734 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +230741 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +230747 wrapper-clause-scope +230749 wrapper-clause-scope +230751 modifier-scope +modifier-scope +conjuncted-wg +230756 wrapper-clause-scope +230758 wrapper-clause-scope +230760 modifier-scope +230764 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +230770 wrapper-clause-scope +230772 wrapper-scope +modifier-scope +230775 wrapper-clause-scope +230778 wrapper-clause-scope +230780 modifier-scope +230782 wrapper-clause-scope +230785 wrapper-clause-scope +230787 modifier-scope +230789 group +wrapper-clause-scope +wrapper-clause-scope +group +wrapper-clause-scope +230795 modifier-scope +wrapper-clause-scope +230798 modifier-scope +230801 wrapper-clause-scope +230803 wrapper-scope +modifier-scope +modifier-scope +230813 wrapper-scope +230820 modifier-scope +conjuncted-wg +230823 modifier-scope +conjuncted-wg +230826 modifier-scope +modifier-scope +230830 wrapper-scope +modifier-clause-scope +apposition-group +230834 wrapper-scope +230841 wrapper-clause-scope +group +wrapper-clause-scope +230848 wrapper-clause-scope +230850 modifier-clause-scope +modifier-clause-scope +230853 wrapper-scope +modifier-scope +wrapper-clause-scope +230857 modifier-clause-scope +modifier-scope +230860 modifier-scope +230865 modifier-scope +230869 wrapper-scope +230871 wrapper-scope +wrapper-scope +230874 wrapper-clause-scope +230877 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +230882 wrapper-scope +230884 wrapper-scope +230887 wrapper-clause-scope +230890 wrapper-scope +modifier-clause-scope +modifier-clause-scope +230894 wrapper-clause-scope +230896 wrapper-clause-scope +230904 wrapper-scope +230908 wrapper-clause-scope +230910 wrapper-clause-scope +230913 wrapper-clause-scope +230915 wrapper-clause-scope +230917 modifier-scope +230919 wrapper-clause-scope +230922 modifier-scope +modifier-scope +conjuncted-wg +230927 wrapper-clause-scope +230931 modifier-scope +wrapper-scope +230935 modifier-scope +wrapper-clause-scope +230939 modifier-clause-scope +wrapper-clause-scope +230942 wrapper-clause-scope +230944 conjuncted-wg +230946 wrapper-clause-scope +230948 wrapper-clause-scope +230950 conjuncted-wg +230952 wrapper-clause-scope +230954 wrapper-clause-scope +230956 conjuncted-wg +230958 wrapper-clause-scope +230960 wrapper-clause-scope +230962 conjuncted-wg +230964 wrapper-clause-scope +230966 modifier-scope +wrapper-clause-scope +230970 wrapper-clause-scope +230972 modifier-scope +modifier-scope +modifier-scope +modifier-scope +230977 wrapper-clause-scope +230981 group +230983 modifier-scope +modifier-scope +modifier-scope +230987 modifier-scope +230989 wrapper-clause-scope +230991 group +230993 wrapper-clause-scope +230995 modifier-scope +modifier-scope +230998 modifier-scope +conjuncted-wg +231004 conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +231015 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +231020 wrapper-clause-scope +group +231023 wrapper-clause-scope +231025 modifier-scope +modifier-scope +231028 modifier-scope +231030 wrapper-clause-scope +231032 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +231040 wrapper-scope +modifier-scope +231043 conjuncted-wg +modifier-scope +231046 wrapper-clause-scope +231049 group +wrapper-clause-scope +231053 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +231058 conjuncted-wg +231063 group +231067 wrapper-clause-scope +231071 wrapper-scope +modifier-scope +modifier-scope +231075 conjuncted-wg +231078 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +231083 wrapper-scope +modifier-scope +modifier-scope +231087 modifier-scope +modifier-scope +231090 wrapper-clause-scope +231092 conjuncted-wg +231094 wrapper-clause-scope +231096 modifier-scope +modifier-scope +conjuncted-wg +231100 wrapper-clause-scope +231104 wrapper-scope +231106 modifier-scope +modifier-scope +modifier-scope +231110 wrapper-clause-scope +231112 wrapper-clause-scope +231114 modifier-scope +231118 wrapper-scope +231120 wrapper-clause-scope +231122 group +231124 wrapper-clause-scope +231126 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +231132 modifier-scope +231134 wrapper-clause-scope +231136 wrapper-scope +modifier-scope +wrapper-clause-scope +231143 modifier-scope +conjuncted-wg +231146 modifier-scope +231148 group +wrapper-clause-scope +231153 wrapper-clause-scope +231157 wrapper-clause-scope +group +wrapper-clause-scope +231161 modifier-scope +231163 wrapper-scope +231165 wrapper-clause-scope +231167 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +231172 wrapper-clause-scope +231174 wrapper-scope +conjuncted-wg +wrapper-clause-scope +231178 wrapper-clause-scope +231181 wrapper-clause-scope +231183 wrapper-clause-scope +231185 modifier-clause-scope +231188 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +231195 conjuncted-wg +231197 conjuncted-wg +231200 apposition-group +group +modifier-scope +231205 wrapper-scope +modifier-scope +conjuncted-wg +231209 wrapper-scope +conjuncted-wg +231212 apposition-group +group +group +231217 wrapper-scope +modifier-scope +conjuncted-wg +231221 wrapper-scope +231223 wrapper-clause-scope +231225 wrapper-scope +modifier-scope +231228 wrapper-clause-scope +231231 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +231236 conjuncted-wg +231238 modifier-scope +modifier-scope +231242 wrapper-clause-scope +231244 modifier-scope +231247 conjuncted-wg +231249 wrapper-clause-scope +231251 conjuncted-wg +231253 wrapper-clause-scope +231256 wrapper-clause-scope +group +231259 wrapper-clause-scope +wrapper-clause-scope +231262 modifier-scope +modifier-scope +modifier-scope +modifier-scope +231267 wrapper-clause-scope +group +wrapper-clause-scope +231272 group +wrapper-clause-scope +231275 wrapper-scope +wrapper-clause-scope +231278 modifier-scope +modifier-scope +231281 wrapper-scope +wrapper-clause-scope +231284 modifier-scope +231286 wrapper-clause-scope +231288 wrapper-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +231294 modifier-clause-scope +apposition-group +231297 wrapper-scope +231299 wrapper-clause-scope +231303 wrapper-scope +modifier-scope +conjuncted-wg +231307 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +231311 wrapper-scope +231313 wrapper-clause-scope +231315 wrapper-clause-scope +231317 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +231324 modifier-scope +modifier-scope +231327 wrapper-clause-scope +231330 wrapper-clause-scope +231333 wrapper-clause-scope +231335 group +modifier-scope +modifier-scope +231339 wrapper-clause-scope +231341 modifier-scope +modifier-scope +wrapper-scope +231346 wrapper-clause-scope +231348 wrapper-clause-scope +231351 wrapper-clause-scope +231353 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +231360 modifier-scope +modifier-scope +wrapper-clause-scope +231365 wrapper-clause-scope +231369 conjuncted-wg +231371 wrapper-clause-scope +231374 group +wrapper-clause-scope +231377 modifier-scope +231379 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +231387 wrapper-clause-scope +231390 conjuncted-wg +231394 modifier-scope +231398 conjuncted-wg +231400 modifier-scope +modifier-scope +231403 wrapper-clause-scope +231406 conjuncted-wg +231408 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +231413 wrapper-clause-scope +231416 wrapper-scope +conjuncted-wg +231419 modifier-scope +modifier-scope +231422 wrapper-clause-scope +231424 wrapper-scope +modifier-scope +modifier-scope +231428 modifier-clause-scope +231431 wrapper-clause-scope +231433 modifier-scope +modifier-scope +231436 wrapper-clause-scope +231438 wrapper-scope +231440 wrapper-clause-scope +231442 wrapper-scope +wrapper-clause-scope +231447 wrapper-scope +wrapper-clause-scope +231450 conjuncted-wg +231452 wrapper-clause-scope +231454 wrapper-scope +wrapper-clause-scope +231459 wrapper-clause-scope +231461 modifier-scope +wrapper-clause-scope +231464 modifier-scope +modifier-scope +231467 group +wrapper-clause-scope +231470 modifier-scope +modifier-scope +wrapper-clause-scope +231475 wrapper-clause-scope +group +231479 modifier-scope +modifier-scope +conjuncted-wg +231483 wrapper-clause-scope +231485 modifier-scope +modifier-scope +modifier-scope +modifier-scope +231491 wrapper-clause-scope +group +231494 wrapper-clause-scope +231496 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +231501 wrapper-clause-scope +231503 modifier-scope +modifier-scope +231507 modifier-scope +modifier-scope +wrapper-clause-scope +231511 modifier-scope +231513 wrapper-scope +modifier-scope +231516 wrapper-clause-scope +231518 modifier-scope +231520 wrapper-clause-scope +group +231523 wrapper-clause-scope +231525 wrapper-scope +wrapper-clause-scope +231530 conjuncted-wg +231532 modifier-scope +modifier-scope +231535 wrapper-clause-scope +group +wrapper-clause-scope +231541 wrapper-clause-scope +231544 wrapper-clause-scope +group +231547 wrapper-clause-scope +231550 wrapper-clause-scope +231552 wrapper-clause-scope +231555 wrapper-clause-scope +231557 wrapper-clause-scope +231560 wrapper-clause-scope +231562 modifier-scope +modifier-scope +231565 wrapper-clause-scope +231568 modifier-scope +wrapper-scope +wrapper-clause-scope +231572 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +231577 wrapper-clause-scope +231580 wrapper-scope +wrapper-clause-scope +231583 modifier-scope +231585 wrapper-clause-scope +group +group +231589 modifier-scope +wrapper-scope +wrapper-clause-scope +231594 modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +231599 wrapper-scope +wrapper-clause-scope +231602 modifier-scope +wrapper-scope +231606 modifier-scope +wrapper-scope +group +231610 modifier-scope +231612 modifier-scope +wrapper-clause-scope +231615 modifier-scope +231618 modifier-scope +wrapper-clause-scope +231621 modifier-scope +231624 modifier-scope +wrapper-clause-scope +231628 wrapper-clause-scope +231630 wrapper-scope +modifier-scope +wrapper-clause-scope +231634 modifier-scope +231637 wrapper-clause-scope +231640 wrapper-clause-scope +231642 wrapper-scope +conjuncted-wg +231645 conjuncted-wg +231647 modifier-scope +231650 wrapper-clause-scope +231653 wrapper-clause-scope +group +231656 modifier-clause-scope +wrapper-clause-scope +231659 wrapper-clause-scope +231661 conjuncted-wg +231663 wrapper-clause-scope +231665 modifier-scope +conjuncted-wg +group +231671 wrapper-clause-scope +231673 wrapper-clause-scope +231676 wrapper-clause-scope +231679 wrapper-clause-scope +group +231683 modifier-scope +modifier-scope +conjuncted-wg +231687 wrapper-clause-scope +wrapper-clause-scope +231692 wrapper-clause-scope +231696 wrapper-clause-scope +231699 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +231706 wrapper-scope +modifier-scope +conjuncted-wg +231710 wrapper-scope +modifier-scope +231713 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +231721 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +231726 modifier-scope +modifier-scope +modifier-scope +231730 wrapper-clause-scope +231732 wrapper-scope +modifier-clause-scope +modifier-clause-scope +231737 wrapper-clause-scope +231739 modifier-scope +modifier-scope +231742 wrapper-clause-scope +group +231745 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +231751 wrapper-scope +modifier-scope +231754 wrapper-clause-scope +231756 modifier-scope +wrapper-scope +wrapper-clause-scope +231760 modifier-scope +wrapper-clause-scope +231764 wrapper-clause-scope +group +group +231768 wrapper-clause-scope +231770 modifier-scope +wrapper-clause-scope +231775 modifier-scope +231778 conjuncted-wg +conjuncted-wg +231783 wrapper-clause-scope +231785 wrapper-clause-scope +231788 modifier-scope +conjuncted-wg +231791 modifier-scope +modifier-scope +231794 wrapper-clause-scope +231796 modifier-scope +wrapper-clause-scope +231800 modifier-scope +conjuncted-wg +231803 wrapper-scope +modifier-scope +231806 wrapper-clause-scope +231808 wrapper-clause-scope +231811 modifier-scope +conjuncted-wg +231814 wrapper-scope +modifier-scope +231817 wrapper-clause-scope +231820 conjuncted-wg +231822 wrapper-scope +modifier-clause-scope +apposition-group +231826 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +231831 wrapper-clause-scope +231833 wrapper-clause-scope +231836 wrapper-clause-scope +231840 wrapper-clause-scope +231843 wrapper-clause-scope +231845 modifier-clause-scope +apposition-group +231848 group +231851 wrapper-scope +231854 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +231862 wrapper-clause-scope +231865 modifier-scope +wrapper-scope +modifier-scope +231869 wrapper-clause-scope +231876 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +231881 modifier-scope +modifier-scope +modifier-scope +modifier-scope +231887 modifier-clause-scope +apposition-group +231890 modifier-scope +modifier-scope +modifier-scope +modifier-scope +231895 group +231897 wrapper-clause-scope +231899 modifier-scope +modifier-scope +wrapper-clause-scope +231903 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +231909 modifier-scope +modifier-scope +wrapper-scope +231913 wrapper-clause-scope +231915 wrapper-clause-scope +231917 modifier-scope +modifier-scope +modifier-scope +231921 wrapper-clause-scope +231925 wrapper-clause-scope +231927 conjuncted-wg +wrapper-clause-scope +231931 wrapper-clause-scope +wrapper-clause-scope +231937 conjuncted-wg +modifier-scope +conjuncted-wg +231942 modifier-scope +modifier-scope +231948 modifier-scope +conjuncted-wg +231951 modifier-scope +231956 modifier-scope +conjuncted-wg +231959 modifier-scope +231961 wrapper-clause-scope +231963 modifier-scope +231965 wrapper-clause-scope +231970 conjuncted-wg +231975 conjuncted-wg +231980 modifier-scope +conjuncted-wg +231983 modifier-scope +modifier-scope +231986 group +231988 modifier-clause-scope +wrapper-clause-scope +231991 wrapper-scope +231993 wrapper-scope +modifier-scope +wrapper-clause-scope +231997 modifier-scope +231999 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +232004 group +wrapper-clause-scope +232008 modifier-scope +modifier-scope +conjuncted-wg +232014 modifier-clause-scope +wrapper-clause-scope +232018 wrapper-scope +modifier-scope +232021 wrapper-clause-scope +group +wrapper-clause-scope +232028 wrapper-scope +232030 modifier-clause-scope +wrapper-clause-scope +232033 conjuncted-wg +modifier-scope +conjuncted-wg +232037 group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +232044 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +232050 group +wrapper-clause-scope +232054 wrapper-scope +232057 wrapper-clause-scope +group +232060 conjuncted-wg +232062 conjuncted-wg +232064 conjuncted-wg +232067 wrapper-scope +modifier-scope +232072 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +232082 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +232091 modifier-scope +wrapper-clause-scope +232095 wrapper-clause-scope +232097 wrapper-clause-scope +232100 conjuncted-wg +group +wrapper-clause-scope +232105 modifier-scope +232107 wrapper-clause-scope +232110 wrapper-clause-scope +232113 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +232119 modifier-scope +modifier-scope +conjuncted-wg +232123 modifier-scope +modifier-scope +modifier-scope +232128 modifier-scope +232131 conjuncted-wg +232133 wrapper-scope +modifier-scope +modifier-scope +232137 wrapper-clause-scope +232139 modifier-scope +232142 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +232148 wrapper-clause-scope +232151 conjuncted-wg +modifier-scope +wrapper-clause-scope +232156 wrapper-clause-scope +232158 wrapper-clause-scope +232161 wrapper-clause-scope +232163 wrapper-clause-scope +232165 wrapper-clause-scope +232168 conjuncted-wg +232170 wrapper-clause-scope +232172 conjuncted-wg +232175 modifier-scope +232177 modifier-scope +232179 conjuncted-wg +conjuncted-wg +232182 modifier-scope +modifier-scope +232185 wrapper-clause-scope +group +232188 wrapper-scope +232190 wrapper-scope +232192 wrapper-clause-scope +group +modifier-scope +232196 wrapper-scope +modifier-scope +232199 wrapper-scope +modifier-scope +232203 wrapper-scope +modifier-scope +232206 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +232211 wrapper-clause-scope +232213 conjuncted-wg +232215 wrapper-scope +conjuncted-wg +232218 wrapper-scope +wrapper-scope +232221 wrapper-clause-scope +232224 wrapper-clause-scope +232226 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +232235 modifier-scope +wrapper-scope +modifier-scope +232240 wrapper-scope +modifier-scope +232246 modifier-scope +modifier-scope +232249 group +232251 modifier-scope +modifier-scope +wrapper-clause-scope +232255 conjuncted-wg +232257 wrapper-clause-scope +232259 conjuncted-wg +232261 wrapper-clause-scope +232263 wrapper-clause-scope +232265 modifier-scope +wrapper-scope +232268 wrapper-clause-scope +group +wrapper-clause-scope +232275 modifier-scope +conjuncted-wg +232278 modifier-scope +modifier-scope +modifier-scope +232282 wrapper-clause-scope +232285 wrapper-clause-scope +232287 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +232293 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +group +232298 wrapper-scope +232302 wrapper-scope +conjuncted-wg +232305 modifier-scope +232307 wrapper-clause-scope +group +232311 modifier-scope +wrapper-scope +wrapper-clause-scope +232315 modifier-scope +modifier-scope +wrapper-scope +232319 wrapper-clause-scope +group +group +232323 wrapper-scope +modifier-scope +232327 modifier-scope +wrapper-clause-scope +232331 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +232336 conjuncted-wg +232338 conjuncted-wg +232340 conjuncted-wg +232343 wrapper-clause-scope +wrapper-clause-scope +232346 wrapper-scope +wrapper-clause-scope +232350 conjuncted-wg +232352 wrapper-clause-scope +232355 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +232360 wrapper-clause-scope +232368 wrapper-scope +232370 wrapper-clause-scope +232372 wrapper-scope +modifier-scope +232375 wrapper-clause-scope +232378 group +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +232384 conjuncted-wg +232387 conjuncted-wg +232389 group +232391 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +232397 wrapper-scope +modifier-scope +modifier-scope +232401 wrapper-clause-scope +232403 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +232409 group +232411 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +232419 wrapper-clause-scope +wrapper-clause-scope +232422 wrapper-scope +modifier-scope +modifier-scope +232426 wrapper-clause-scope +group +wrapper-clause-scope +wrapper-clause-scope +232432 modifier-scope +modifier-scope +conjuncted-wg +232436 modifier-scope +232438 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +232444 wrapper-clause-scope +232446 wrapper-clause-scope +232450 modifier-scope +conjuncted-wg +232453 modifier-scope +modifier-scope +modifier-scope +modifier-scope +232458 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +232463 wrapper-clause-scope +232466 conjuncted-wg +232469 wrapper-scope +modifier-scope +conjuncted-wg +232473 wrapper-scope +modifier-scope +232476 wrapper-clause-scope +232478 wrapper-clause-scope +232481 conjuncted-wg +232483 conjuncted-wg +232485 modifier-scope +232489 wrapper-scope +wrapper-scope +232492 conjuncted-wg +conjuncted-wg +232496 wrapper-clause-scope +group +wrapper-clause-scope +232500 wrapper-clause-scope +232503 wrapper-clause-scope +232506 wrapper-scope +modifier-scope +wrapper-clause-scope +232510 wrapper-scope +modifier-scope +232513 wrapper-clause-scope +232516 modifier-scope +232518 wrapper-scope +wrapper-clause-scope +232523 wrapper-clause-scope +232525 wrapper-scope +wrapper-clause-scope +232528 wrapper-scope +232530 wrapper-clause-scope +232532 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +232537 wrapper-clause-scope +232540 wrapper-scope +modifier-scope +232545 wrapper-clause-scope +group +wrapper-clause-scope +232550 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +232558 wrapper-clause-scope +232560 wrapper-clause-scope +232563 modifier-clause-scope +232565 wrapper-scope +modifier-scope +232568 conjuncted-wg +232572 wrapper-clause-scope +232574 wrapper-scope +modifier-scope +232577 wrapper-clause-scope +232580 modifier-scope +conjuncted-wg +232583 modifier-scope +modifier-scope +232586 wrapper-clause-scope +232589 modifier-scope +conjuncted-wg +232592 modifier-scope +modifier-scope +232595 wrapper-clause-scope +232598 modifier-scope +conjuncted-wg +232601 group +modifier-scope +modifier-scope +wrapper-clause-scope +232606 modifier-scope +wrapper-scope +232609 wrapper-clause-scope +232611 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +232618 wrapper-clause-scope +232620 conjuncted-wg +232622 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +232627 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +232632 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +232637 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +232643 modifier-scope +conjuncted-wg +232646 conjuncted-wg +232648 modifier-scope +232650 modifier-scope +conjuncted-wg +232653 modifier-scope +232655 wrapper-clause-scope +group +232658 modifier-scope +232660 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +232665 modifier-scope +wrapper-clause-scope +232669 wrapper-clause-scope +232671 wrapper-clause-scope +232675 modifier-scope +conjuncted-wg +232678 modifier-scope +conjuncted-wg +232681 modifier-scope +modifier-scope +modifier-scope +modifier-scope +232686 modifier-scope +modifier-scope +modifier-scope +232690 wrapper-clause-scope +232693 modifier-scope +wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +232701 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +232707 modifier-scope +232709 wrapper-clause-scope +232711 modifier-scope +modifier-scope +group +modifier-scope +232716 group +wrapper-clause-scope +232719 modifier-scope +group +wrapper-clause-scope +232724 wrapper-scope +modifier-scope +wrapper-clause-scope +232728 wrapper-scope +wrapper-scope +modifier-scope +232732 wrapper-clause-scope +group +wrapper-clause-scope +232736 modifier-scope +group +wrapper-clause-scope +232741 wrapper-scope +modifier-scope +wrapper-clause-scope +232745 wrapper-scope +wrapper-scope +modifier-scope +232750 wrapper-clause-scope +232752 modifier-scope +modifier-scope +modifier-scope +232757 wrapper-clause-scope +232759 modifier-scope +232761 wrapper-clause-scope +232763 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +232773 wrapper-clause-scope +232775 wrapper-clause-scope +232777 modifier-scope +modifier-scope +modifier-scope +232781 wrapper-clause-scope +232783 conjuncted-wg +232785 conjuncted-wg +232788 wrapper-clause-scope +232791 modifier-scope +232793 modifier-scope +232795 modifier-scope +conjuncted-wg +group +232799 modifier-scope +modifier-scope +232802 modifier-scope +232804 wrapper-clause-scope +232808 modifier-scope +modifier-clause-scope +modifier-clause-scope +232813 modifier-scope +modifier-scope +conjuncted-wg +232819 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +232824 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +232829 modifier-scope +modifier-scope +232832 wrapper-clause-scope +232834 modifier-scope +modifier-scope +232837 wrapper-clause-scope +232839 modifier-scope +wrapper-clause-scope +232843 wrapper-scope +modifier-scope +conjuncted-wg +232847 modifier-scope +wrapper-scope +modifier-scope +232851 wrapper-clause-scope +group +group +wrapper-clause-scope +232856 modifier-scope +232858 modifier-scope +modifier-scope +group +wrapper-clause-scope +232864 modifier-scope +modifier-scope +232867 wrapper-clause-scope +232870 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +232875 wrapper-clause-scope +wrapper-clause-scope +232879 modifier-scope +wrapper-scope +modifier-scope +group +232888 group +modifier-scope +modifier-scope +232892 wrapper-clause-scope +232895 wrapper-clause-scope +232898 wrapper-clause-scope +232901 wrapper-clause-scope +232904 wrapper-clause-scope +232906 modifier-scope +232908 wrapper-clause-scope +232911 wrapper-clause-scope +232914 wrapper-clause-scope +232916 modifier-scope +modifier-scope +modifier-scope +232920 wrapper-clause-scope +232922 modifier-scope +wrapper-scope +232925 group +wrapper-clause-scope +232929 modifier-scope +modifier-scope +232932 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +232939 modifier-clause-scope +232941 conjuncted-wg +modifier-clause-scope +232945 wrapper-clause-scope +group +232949 wrapper-clause-scope +232952 conjuncted-wg +232955 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +232963 modifier-scope +modifier-scope +wrapper-clause-scope +232967 conjuncted-wg +232971 wrapper-clause-scope +232975 wrapper-clause-scope +232977 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +232981 conjuncted-wg +wrapper-clause-scope +232984 modifier-scope +modifier-scope +wrapper-clause-scope +232988 conjuncted-wg +232991 group +232993 modifier-scope +232995 modifier-scope +232998 modifier-scope +233002 modifier-scope +233005 modifier-scope +group +233008 wrapper-scope +modifier-scope +233011 modifier-scope +233013 group +233020 modifier-scope +233022 wrapper-clause-scope +group +group +wrapper-clause-scope +233028 group +wrapper-clause-scope +233032 group +wrapper-clause-scope +233037 wrapper-clause-scope +233040 wrapper-scope +conjuncted-wg +233043 wrapper-scope +233045 wrapper-clause-scope +233047 wrapper-clause-scope +233049 modifier-scope +modifier-scope +wrapper-scope +233053 group +wrapper-clause-scope +233056 group +233058 wrapper-scope +233060 wrapper-scope +233062 wrapper-scope +233065 wrapper-clause-scope +233067 modifier-scope +modifier-scope +233070 wrapper-clause-scope +233073 wrapper-scope +wrapper-scope +conjuncted-wg +233077 wrapper-scope +233081 wrapper-scope +conjuncted-wg +233084 wrapper-clause-scope +233087 wrapper-clause-scope +233090 group +group +modifier-scope +modifier-scope +conjuncted-wg +233096 modifier-scope +233101 modifier-scope +conjuncted-wg +233104 modifier-scope +conjuncted-wg +wrapper-clause-scope +233109 wrapper-clause-scope +group +233113 wrapper-clause-scope +233115 conjuncted-wg +233117 wrapper-clause-scope +233120 conjuncted-wg +233123 wrapper-clause-scope +233125 wrapper-clause-scope +233128 conjuncted-wg +conjuncted-wg +233132 wrapper-clause-scope +233135 wrapper-clause-scope +233137 wrapper-clause-scope +233140 wrapper-clause-scope +233144 modifier-scope +conjuncted-wg +wrapper-clause-scope +233149 wrapper-clause-scope +group +233153 wrapper-clause-scope +233155 conjuncted-wg +233157 wrapper-clause-scope +233159 wrapper-clause-scope +233161 wrapper-clause-scope +233163 modifier-scope +233165 wrapper-clause-scope +233168 group +wrapper-clause-scope +233171 wrapper-scope +233174 wrapper-clause-scope +233177 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +233184 conjuncted-wg +233186 wrapper-clause-scope +group +233189 modifier-clause-scope +modifier-clause-scope +233194 conjuncted-wg +conjuncted-wg +group +wrapper-clause-scope +233199 modifier-scope +233202 wrapper-clause-scope +233204 conjuncted-wg +wrapper-clause-scope +233208 wrapper-clause-scope +233210 wrapper-clause-scope +233212 modifier-scope +modifier-scope +wrapper-scope +233216 wrapper-clause-scope +group +wrapper-clause-scope +233220 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +233225 wrapper-clause-scope +233228 wrapper-clause-scope +233230 wrapper-scope +wrapper-scope +233234 group +wrapper-clause-scope +233238 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +233244 wrapper-clause-scope +group +wrapper-clause-scope +233248 modifier-scope +modifier-scope +modifier-scope +233253 wrapper-clause-scope +233255 conjuncted-wg +233257 wrapper-clause-scope +233259 wrapper-scope +233261 wrapper-clause-scope +233264 modifier-scope +wrapper-clause-scope +233267 modifier-scope +233269 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +233276 wrapper-clause-scope +233278 wrapper-clause-scope +233280 wrapper-clause-scope +233283 wrapper-clause-scope +233285 group +wrapper-clause-scope +233289 modifier-scope +modifier-scope +conjuncted-wg +233293 modifier-scope +modifier-scope +233296 wrapper-clause-scope +233299 group +group +233303 modifier-scope +conjuncted-wg +233306 modifier-scope +modifier-scope +233310 modifier-scope +conjuncted-wg +233313 modifier-scope +modifier-scope +wrapper-clause-scope +group +group +wrapper-clause-scope +233321 wrapper-clause-scope +233323 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +233334 wrapper-clause-scope +wrapper-clause-scope +233338 conjuncted-wg +233340 modifier-scope +233343 modifier-scope +233345 modifier-scope +233347 wrapper-clause-scope +233350 wrapper-scope +233352 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +233357 modifier-scope +conjuncted-wg +233360 modifier-scope +wrapper-scope +233365 group +233367 modifier-scope +233369 modifier-scope +conjuncted-wg +233372 modifier-scope +233375 wrapper-scope +modifier-scope +wrapper-clause-scope +group +233382 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +233392 wrapper-clause-scope +233395 modifier-scope +wrapper-scope +group +wrapper-clause-scope +233400 modifier-scope +conjuncted-wg +233403 modifier-scope +group +modifier-scope +wrapper-clause-scope +233409 wrapper-clause-scope +group +wrapper-clause-scope +233415 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +233421 conjuncted-wg +233424 conjuncted-wg +wrapper-clause-scope +233427 wrapper-clause-scope +233430 wrapper-clause-scope +group +wrapper-clause-scope +233435 conjuncted-wg +233437 modifier-scope +233439 conjuncted-wg +233441 group +233443 wrapper-scope +233445 wrapper-scope +233447 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +233454 wrapper-scope +modifier-scope +233457 wrapper-clause-scope +233459 modifier-scope +wrapper-scope +233462 wrapper-clause-scope +233466 group +wrapper-clause-scope +233469 group +233477 wrapper-scope +233479 group +wrapper-clause-scope +233485 wrapper-scope +233487 conjuncted-wg +group +modifier-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +233495 wrapper-clause-scope +233497 group +wrapper-clause-scope +233501 wrapper-scope +conjuncted-wg +233505 conjuncted-wg +modifier-scope +233508 wrapper-clause-scope +233511 modifier-scope +group +conjuncted-wg +233515 modifier-scope +233517 wrapper-clause-scope +group +wrapper-clause-scope +233521 modifier-clause-scope +233524 modifier-scope +233526 wrapper-clause-scope +233529 wrapper-scope +233531 wrapper-clause-scope +233534 conjuncted-wg +233536 conjuncted-wg +233538 modifier-scope +233540 wrapper-clause-scope +group +233543 modifier-scope +233546 group +group +wrapper-clause-scope +233550 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +233556 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +233563 wrapper-clause-scope +group +233566 wrapper-clause-scope +233568 modifier-scope +modifier-scope +233571 wrapper-clause-scope +group +group +wrapper-clause-scope +233578 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +233584 wrapper-scope +233587 conjuncted-wg +233589 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +233595 wrapper-scope +233597 group +wrapper-clause-scope +233602 conjuncted-wg +233605 wrapper-clause-scope +233607 modifier-scope +233609 wrapper-clause-scope +group +wrapper-clause-scope +233615 wrapper-clause-scope +233618 modifier-scope +233620 wrapper-clause-scope +233622 conjuncted-wg +233624 wrapper-clause-scope +233627 wrapper-clause-scope +233630 conjuncted-wg +wrapper-scope +233633 wrapper-clause-scope +233636 modifier-clause-scope +apposition-group +group +233642 wrapper-scope +233644 wrapper-scope +group +233647 modifier-scope +wrapper-clause-scope +233650 wrapper-clause-scope +wrapper-clause-scope +233654 wrapper-clause-scope +233656 wrapper-scope +233659 wrapper-clause-scope +233661 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +233669 conjuncted-wg +wrapper-clause-scope +233672 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +group +233682 modifier-scope +233685 modifier-scope +modifier-scope +233689 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +233695 group +233698 modifier-scope +modifier-scope +233701 wrapper-clause-scope +233703 modifier-scope +wrapper-clause-scope +233706 modifier-scope +233708 wrapper-clause-scope +233710 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +233718 modifier-scope +modifier-scope +modifier-scope +233722 wrapper-clause-scope +233726 modifier-scope +233728 conjuncted-wg +233730 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +233738 modifier-scope +conjuncted-wg +233741 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +233748 wrapper-clause-scope +233752 conjuncted-wg +conjuncted-wg +conjuncted-wg +233757 wrapper-clause-scope +group +wrapper-clause-scope +233761 wrapper-clause-scope +233763 wrapper-scope +233765 modifier-scope +wrapper-scope +wrapper-clause-scope +233769 modifier-scope +233771 wrapper-clause-scope +233773 wrapper-clause-scope +233775 modifier-scope +233777 wrapper-clause-scope +group +wrapper-clause-scope +233781 wrapper-clause-scope +233784 modifier-scope +modifier-scope +233787 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +233792 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +233797 wrapper-scope +modifier-scope +wrapper-clause-scope +233801 apposition-group +modifier-scope +233805 wrapper-clause-scope +233808 wrapper-clause-scope +233810 wrapper-clause-scope +233813 wrapper-clause-scope +group +wrapper-clause-scope +233818 modifier-scope +modifier-scope +233821 wrapper-scope +modifier-scope +modifier-scope +233825 wrapper-clause-scope +233827 modifier-clause-scope +wrapper-clause-scope +233830 wrapper-scope +233833 wrapper-clause-scope +233835 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +233842 wrapper-clause-scope +233844 wrapper-scope +group +modifier-clause-scope +wrapper-clause-scope +233850 wrapper-clause-scope +233852 wrapper-clause-scope +233854 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +233859 wrapper-clause-scope +233861 wrapper-clause-scope +233863 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +233869 wrapper-clause-scope +233871 wrapper-scope +modifier-scope +modifier-scope +233875 group +233878 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +233885 modifier-scope +wrapper-clause-scope +233888 modifier-scope +modifier-scope +233891 conjuncted-wg +wrapper-clause-scope +233895 modifier-scope +conjuncted-wg +modifier-scope +233899 conjuncted-wg +233901 wrapper-clause-scope +233904 wrapper-scope +233906 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +233913 group +modifier-scope +modifier-scope +233917 wrapper-clause-scope +233919 wrapper-scope +modifier-scope +modifier-scope +233923 wrapper-clause-scope +group +wrapper-clause-scope +233927 wrapper-clause-scope +233930 wrapper-clause-scope +233932 wrapper-scope +wrapper-clause-scope +233935 modifier-scope +233937 wrapper-clause-scope +233939 wrapper-clause-scope +233941 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +233947 modifier-scope +wrapper-clause-scope +233950 modifier-scope +wrapper-scope +233953 wrapper-clause-scope +233955 wrapper-clause-scope +233957 wrapper-scope +modifier-scope +233961 wrapper-clause-scope +233963 wrapper-scope +233966 modifier-scope +modifier-scope +233971 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +233977 wrapper-scope +group +group +modifier-scope +modifier-scope +233984 wrapper-clause-scope +233986 wrapper-scope +wrapper-scope +modifier-scope +233990 group +233992 wrapper-clause-scope +233995 conjuncted-wg +233997 wrapper-clause-scope +234003 modifier-scope +modifier-scope +234006 group +234009 conjuncted-wg +234011 wrapper-clause-scope +234013 modifier-scope +234016 wrapper-scope +234018 wrapper-clause-scope +234022 modifier-scope +conjuncted-wg +234025 modifier-scope +234033 wrapper-clause-scope +234036 group +234038 group +modifier-scope +wrapper-clause-scope +234043 modifier-scope +234045 wrapper-clause-scope +234048 conjuncted-wg +modifier-scope +modifier-scope +234052 wrapper-clause-scope +234055 modifier-scope +wrapper-clause-scope +234058 conjuncted-wg +234060 modifier-scope +modifier-scope +modifier-scope +234064 group +234066 modifier-scope +modifier-scope +modifier-scope +234070 conjuncted-wg +234072 conjuncted-wg +234074 modifier-scope +conjuncted-wg +234077 modifier-scope +conjuncted-wg +234081 wrapper-clause-scope +234084 modifier-scope +conjuncted-wg +modifier-scope +234088 wrapper-clause-scope +234090 conjuncted-wg +234092 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +234097 modifier-scope +modifier-scope +234102 modifier-scope +conjuncted-wg +234105 modifier-scope +conjuncted-wg +234108 modifier-scope +234110 wrapper-clause-scope +234112 wrapper-scope +234115 modifier-scope +modifier-scope +modifier-scope +modifier-scope +234120 group +234122 wrapper-scope +234124 wrapper-scope +234126 group +234128 wrapper-scope +234130 wrapper-scope +234132 group +234134 wrapper-scope +234136 wrapper-scope +234138 group +234140 modifier-scope +234142 modifier-scope +234145 wrapper-clause-scope +234147 modifier-scope +modifier-scope +234151 group +234153 group +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +234160 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +234166 wrapper-clause-scope +group +234169 modifier-scope +group +234172 modifier-scope +234174 modifier-scope +234176 group +234178 modifier-scope +modifier-scope +wrapper-scope +234182 modifier-scope +modifier-scope +wrapper-scope +234189 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +234195 modifier-scope +modifier-scope +modifier-scope +234199 wrapper-clause-scope +234201 wrapper-clause-scope +234203 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +234211 wrapper-clause-scope +234214 wrapper-clause-scope +234218 conjuncted-wg +234220 modifier-scope +conjuncted-wg +234223 modifier-scope +modifier-scope +234226 group +234232 conjuncted-wg +234234 group +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +234242 wrapper-clause-scope +234245 conjuncted-wg +234247 modifier-scope +conjuncted-wg +234251 wrapper-clause-scope +234255 modifier-scope +modifier-scope +conjuncted-wg +234259 modifier-scope +modifier-scope +234262 wrapper-clause-scope +group +wrapper-clause-scope +234267 modifier-scope +modifier-scope +conjuncted-wg +234271 modifier-scope +modifier-scope +234274 group +modifier-scope +wrapper-clause-scope +234278 group +234280 modifier-scope +wrapper-scope +group +234285 modifier-scope +modifier-scope +234289 modifier-scope +modifier-scope +234292 wrapper-clause-scope +234295 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +234301 modifier-scope +modifier-scope +modifier-scope +modifier-scope +234306 wrapper-clause-scope +234308 group +modifier-scope +wrapper-clause-scope +234312 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +group +234319 wrapper-clause-scope +234322 modifier-scope +modifier-scope +modifier-scope +234326 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +234331 wrapper-clause-scope +234333 modifier-scope +modifier-scope +wrapper-scope +234337 wrapper-clause-scope +group +234340 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-clause-scope +234349 modifier-scope +modifier-scope +modifier-scope +234353 modifier-scope +234356 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +234361 apposition-group +wrapper-clause-scope +234364 wrapper-clause-scope +234366 wrapper-clause-scope +234369 wrapper-clause-scope +group +wrapper-clause-scope +234373 group +wrapper-clause-scope +234377 wrapper-scope +234379 modifier-scope +modifier-scope +wrapper-scope +234383 wrapper-clause-scope +234385 wrapper-clause-scope +234387 wrapper-clause-scope +234389 wrapper-scope +234391 wrapper-clause-scope +group +234394 wrapper-scope +wrapper-clause-scope +234397 wrapper-clause-scope +234400 wrapper-clause-scope +234403 wrapper-scope +234405 conjuncted-wg +234407 wrapper-clause-scope +234409 wrapper-clause-scope +234412 wrapper-clause-scope +group +234416 wrapper-scope +wrapper-clause-scope +234420 modifier-scope +wrapper-scope +wrapper-clause-scope +234424 modifier-scope +234426 wrapper-clause-scope +234428 wrapper-scope +wrapper-scope +modifier-scope +234432 wrapper-clause-scope +234435 modifier-scope +234437 conjuncted-wg +conjuncted-wg +234442 wrapper-clause-scope +group +234445 wrapper-clause-scope +234447 wrapper-clause-scope +234449 wrapper-scope +wrapper-clause-scope +234452 modifier-scope +modifier-scope +wrapper-scope +234456 wrapper-clause-scope +234459 wrapper-clause-scope +group +group +234463 wrapper-scope +wrapper-clause-scope +234466 wrapper-scope +wrapper-clause-scope +234469 wrapper-scope +modifier-scope +234472 wrapper-clause-scope +234476 wrapper-scope +group +modifier-scope +wrapper-clause-scope +234481 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +234486 wrapper-clause-scope +234488 conjuncted-wg +group +234491 wrapper-clause-scope +234494 group +234497 wrapper-scope +modifier-scope +234503 modifier-scope +wrapper-scope +234506 wrapper-clause-scope +234511 apposition-group +modifier-scope +modifier-scope +wrapper-clause-scope +234517 modifier-scope +modifier-scope +conjuncted-wg +234521 wrapper-scope +modifier-scope +wrapper-clause-scope +234525 modifier-scope +234527 modifier-scope +conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +234533 conjuncted-wg +234536 wrapper-clause-scope +group +234539 wrapper-scope +modifier-scope +modifier-scope +234543 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +234547 modifier-scope +modifier-scope +wrapper-clause-scope +234552 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +234557 wrapper-clause-scope +234559 modifier-scope +234562 modifier-scope +modifier-scope +modifier-scope +234567 wrapper-scope +234569 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +234577 modifier-scope +modifier-scope +234581 wrapper-scope +modifier-scope +234585 modifier-scope +modifier-scope +modifier-scope +modifier-scope +234590 group +wrapper-clause-scope +234593 modifier-scope +234600 modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +234607 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +234616 group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +group +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +234631 wrapper-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +234638 wrapper-scope +modifier-scope +modifier-scope +234644 conjuncted-wg +wrapper-scope +234647 group +modifier-scope +conjuncted-wg +group +group +234654 modifier-clause-scope +modifier-scope +group +234658 conjuncted-wg +group +modifier-scope +modifier-scope +group +group +modifier-scope +234666 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +234673 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +234681 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +234688 wrapper-scope +modifier-scope +wrapper-clause-scope +234692 wrapper-clause-scope +234694 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +234704 wrapper-clause-scope +234706 wrapper-clause-scope +234708 wrapper-scope +modifier-scope +modifier-scope +234712 conjuncted-wg +234715 wrapper-clause-scope +234717 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +234723 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +234729 modifier-scope +234731 wrapper-clause-scope +234733 modifier-scope +modifier-scope +wrapper-scope +234737 wrapper-clause-scope +234739 wrapper-clause-scope +234741 modifier-scope +modifier-scope +modifier-scope +modifier-scope +234746 wrapper-clause-scope +234750 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +234756 wrapper-scope +modifier-scope +wrapper-clause-scope +234760 wrapper-scope +wrapper-scope +wrapper-clause-scope +234764 modifier-clause-scope +wrapper-clause-scope +234768 wrapper-clause-scope +group +234771 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +234778 wrapper-scope +wrapper-scope +234781 wrapper-scope +apposition-group +apposition-group +group +modifier-scope +wrapper-clause-scope +234788 modifier-scope +234791 wrapper-scope +modifier-scope +conjuncted-wg +234797 wrapper-scope +group +group +234801 modifier-scope +234803 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +234808 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +234816 wrapper-clause-scope +234818 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +234828 wrapper-scope +modifier-scope +234831 conjuncted-wg +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +234842 wrapper-scope +234844 wrapper-clause-scope +234847 group +234849 conjuncted-wg +234851 conjuncted-wg +234853 conjuncted-wg +234857 wrapper-scope +wrapper-clause-scope +234860 wrapper-scope +wrapper-clause-scope +234863 modifier-scope +wrapper-clause-scope +234866 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +234874 wrapper-clause-scope +234876 modifier-scope +modifier-scope +group +234880 wrapper-scope +wrapper-clause-scope +234883 modifier-scope +234885 conjuncted-wg +234887 wrapper-scope +wrapper-scope +conjuncted-wg +234891 wrapper-scope +wrapper-scope +conjuncted-wg +234895 wrapper-scope +wrapper-scope +modifier-scope +234899 wrapper-clause-scope +234902 wrapper-clause-scope +234904 modifier-scope +234906 wrapper-clause-scope +234910 wrapper-scope +234912 wrapper-scope +234914 modifier-scope +group +conjuncted-wg +modifier-scope +group +234920 wrapper-clause-scope +234922 modifier-scope +wrapper-clause-scope +234925 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +234931 conjuncted-wg +234933 wrapper-clause-scope +234936 group +group +modifier-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +234944 wrapper-scope +wrapper-scope +wrapper-scope +234948 conjuncted-wg +conjuncted-wg +234951 conjuncted-wg +conjuncted-wg +234954 wrapper-scope +234956 wrapper-clause-scope +234958 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +234963 wrapper-clause-scope +234965 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +234972 wrapper-clause-scope +234974 wrapper-clause-scope +234977 wrapper-scope +wrapper-scope +conjuncted-wg +234981 group +wrapper-clause-scope +234984 conjuncted-wg +234986 conjuncted-wg +234988 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +234995 wrapper-clause-scope +234997 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +235004 wrapper-scope +235006 wrapper-clause-scope +group +group +235010 modifier-scope +modifier-scope +235013 modifier-scope +modifier-scope +wrapper-clause-scope +235017 modifier-scope +235019 wrapper-clause-scope +235021 group +wrapper-clause-scope +235024 modifier-scope +wrapper-scope +wrapper-scope +235028 wrapper-clause-scope +235030 wrapper-clause-scope +235032 modifier-scope +wrapper-clause-scope +235035 wrapper-clause-scope +235037 wrapper-clause-scope +235039 wrapper-scope +235041 wrapper-clause-scope +235043 modifier-scope +wrapper-clause-scope +235047 wrapper-scope +235051 wrapper-scope +modifier-scope +wrapper-clause-scope +235055 modifier-scope +modifier-scope +modifier-scope +235059 wrapper-clause-scope +235061 wrapper-scope +modifier-scope +235064 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-clause-scope +235071 wrapper-clause-scope +235073 modifier-clause-scope +apposition-group +235076 wrapper-scope +235078 wrapper-clause-scope +235080 wrapper-clause-scope +235084 wrapper-scope +modifier-scope +wrapper-clause-scope +235090 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +235099 modifier-scope +235101 conjuncted-wg +wrapper-clause-scope +wrapper-clause-scope +235105 modifier-scope +modifier-scope +modifier-scope +235109 wrapper-clause-scope +235112 wrapper-scope +235114 wrapper-clause-scope +235116 wrapper-scope +wrapper-clause-scope +235119 modifier-scope +modifier-scope +wrapper-clause-scope +235123 wrapper-scope +235125 wrapper-clause-scope +235129 wrapper-clause-scope +group +group +235133 modifier-scope +wrapper-clause-scope +235136 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +235141 wrapper-scope +modifier-scope +wrapper-clause-scope +235145 modifier-scope +modifier-scope +235148 wrapper-clause-scope +group +235152 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +235160 wrapper-scope +235163 modifier-scope +modifier-scope +wrapper-clause-scope +235167 group +modifier-scope +modifier-scope +conjuncted-wg +235173 wrapper-scope +235175 wrapper-clause-scope +235177 group +modifier-scope +wrapper-clause-scope +235182 wrapper-scope +modifier-scope +conjuncted-wg +235186 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +group +235196 modifier-scope +modifier-scope +235199 wrapper-scope +wrapper-clause-scope +235202 conjuncted-wg +wrapper-scope +wrapper-clause-scope +235207 conjuncted-wg +235209 modifier-scope +group +wrapper-scope +wrapper-scope +conjuncted-wg +235215 modifier-scope +group +wrapper-scope +wrapper-scope +235220 wrapper-clause-scope +235222 wrapper-scope +235224 wrapper-clause-scope +group +235227 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +235233 modifier-scope +group +235236 wrapper-clause-scope +235238 wrapper-scope +conjuncted-wg +wrapper-clause-scope +235242 wrapper-scope +235244 wrapper-scope +wrapper-scope +235250 wrapper-clause-scope +wrapper-clause-scope +235253 wrapper-scope +modifier-scope +235256 wrapper-scope +conjuncted-wg +wrapper-scope +235261 modifier-scope +modifier-scope +235264 wrapper-scope +modifier-scope +modifier-scope +235269 conjuncted-wg +wrapper-scope +modifier-scope +235274 wrapper-clause-scope +235276 modifier-scope +group +235279 wrapper-scope +235281 group +modifier-clause-scope +modifier-clause-scope +235285 group +wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +235292 wrapper-clause-scope +235294 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +235300 group +wrapper-clause-scope +235303 wrapper-scope +235305 modifier-scope +wrapper-scope +235308 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +235314 modifier-scope +modifier-scope +modifier-scope +group +235319 wrapper-clause-scope +235322 modifier-scope +conjuncted-wg +235325 modifier-scope +235327 wrapper-clause-scope +group +wrapper-clause-scope +235331 modifier-scope +modifier-scope +modifier-scope +235335 wrapper-scope +wrapper-scope +wrapper-clause-scope +235339 modifier-scope +modifier-scope +235342 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +235354 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +235360 wrapper-clause-scope +235362 wrapper-clause-scope +235364 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +235372 wrapper-clause-scope +235374 wrapper-clause-scope +235376 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +235384 wrapper-clause-scope +235386 wrapper-clause-scope +235388 wrapper-clause-scope +235390 wrapper-scope +modifier-scope +wrapper-clause-scope +235394 wrapper-scope +235396 wrapper-clause-scope +235400 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +wrapper-clause-scope +235406 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +235412 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +235420 wrapper-clause-scope +235422 modifier-scope +modifier-scope +235425 wrapper-clause-scope +235427 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +235438 wrapper-clause-scope +235440 wrapper-scope +235442 wrapper-clause-scope +group +235445 wrapper-scope +group +wrapper-clause-scope +wrapper-clause-scope +235451 wrapper-scope +modifier-scope +modifier-scope +235455 wrapper-clause-scope +group +wrapper-clause-scope +wrapper-clause-scope +235460 wrapper-scope +235462 modifier-scope +235464 wrapper-clause-scope +235466 modifier-scope +modifier-scope +235469 wrapper-clause-scope +235472 modifier-scope +modifier-scope +235475 wrapper-clause-scope +235477 modifier-scope +modifier-clause-scope +235481 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +235489 wrapper-scope +modifier-scope +235492 group +235494 wrapper-scope +group +235497 modifier-scope +modifier-scope +group +wrapper-clause-scope +235502 group +235505 modifier-scope +modifier-scope +modifier-scope +group +235511 wrapper-scope +conjuncted-wg +235514 modifier-scope +modifier-scope +modifier-scope +235518 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +235527 wrapper-clause-scope +group +wrapper-clause-scope +235531 wrapper-scope +modifier-scope +modifier-scope +235535 wrapper-scope +wrapper-clause-scope +235538 wrapper-scope +235540 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +235551 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +235560 modifier-scope +modifier-scope +235563 wrapper-clause-scope +group +group +235569 group +conjuncted-wg +235572 modifier-scope +wrapper-scope +wrapper-clause-scope +235576 modifier-scope +apposition-group +wrapper-clause-scope +235581 wrapper-scope +235583 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +235596 wrapper-clause-scope +235598 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +235605 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +235611 wrapper-scope +235613 group +group +235617 wrapper-scope +conjuncted-wg +235622 conjuncted-wg +235626 conjuncted-wg +235630 conjuncted-wg +235632 group +235634 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +235641 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +235649 wrapper-clause-scope +group +235652 group +wrapper-clause-scope +235655 wrapper-scope +wrapper-scope +wrapper-clause-scope +235659 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +235668 wrapper-clause-scope +235671 modifier-scope +wrapper-scope +conjuncted-wg +235675 modifier-scope +wrapper-scope +235678 wrapper-clause-scope +235681 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +235689 wrapper-clause-scope +235691 modifier-scope +wrapper-clause-scope +235695 wrapper-clause-scope +235698 wrapper-clause-scope +235700 group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +235706 wrapper-scope +235708 wrapper-clause-scope +group +235711 modifier-scope +wrapper-scope +wrapper-clause-scope +235715 modifier-scope +235717 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +235725 wrapper-clause-scope +235728 conjuncted-wg +235730 wrapper-clause-scope +235732 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +235738 modifier-scope +modifier-scope +235741 conjuncted-wg +235743 wrapper-clause-scope +group +235746 modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +group +235757 wrapper-clause-scope +235760 wrapper-clause-scope +235763 wrapper-clause-scope +235766 wrapper-clause-scope +235768 conjuncted-wg +235770 wrapper-clause-scope +235773 wrapper-clause-scope +235775 wrapper-clause-scope +235777 wrapper-clause-scope +235779 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +235791 wrapper-clause-scope +235793 modifier-scope +wrapper-scope +235797 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +235807 wrapper-clause-scope +235809 modifier-clause-scope +wrapper-clause-scope +235812 wrapper-scope +modifier-scope +235815 wrapper-scope +235818 group +wrapper-clause-scope +235821 modifier-scope +wrapper-scope +modifier-scope +235825 wrapper-clause-scope +235827 wrapper-clause-scope +235829 wrapper-scope +modifier-scope +group +wrapper-clause-scope +235834 modifier-scope +modifier-scope +modifier-scope +235838 wrapper-clause-scope +235842 conjuncted-wg +group +235845 wrapper-clause-scope +235848 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +235854 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +235860 conjuncted-wg +235864 wrapper-scope +modifier-scope +conjuncted-wg +235868 wrapper-scope +modifier-scope +235871 wrapper-clause-scope +235875 conjuncted-wg +conjuncted-wg +235879 wrapper-clause-scope +235882 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +235890 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +235896 conjuncted-wg +235898 conjuncted-wg +235901 wrapper-clause-scope +235904 modifier-scope +modifier-scope +modifier-scope +235908 wrapper-clause-scope +235911 conjuncted-wg +235914 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +235919 group +group +235923 modifier-scope +wrapper-scope +wrapper-clause-scope +235927 wrapper-scope +wrapper-clause-scope +235931 wrapper-scope +conjuncted-wg +235934 wrapper-scope +235936 wrapper-clause-scope +235938 conjuncted-wg +235941 conjuncted-wg +235945 wrapper-clause-scope +235947 modifier-scope +modifier-scope +modifier-scope +235951 wrapper-clause-scope +235954 wrapper-scope +wrapper-clause-scope +235957 modifier-scope +conjuncted-wg +235960 wrapper-scope +wrapper-clause-scope +235963 wrapper-clause-scope +235965 group +wrapper-clause-scope +235968 wrapper-scope +235970 conjuncted-wg +235972 wrapper-clause-scope +235974 wrapper-scope +modifier-scope +wrapper-scope +235978 group +wrapper-clause-scope +235981 wrapper-scope +wrapper-clause-scope +235985 wrapper-clause-scope +235987 wrapper-clause-scope +235989 wrapper-scope +modifier-scope +235992 group +235994 modifier-scope +235997 wrapper-clause-scope +group +236000 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +236007 wrapper-scope +conjuncted-wg +236010 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +236016 wrapper-scope +wrapper-scope +236020 modifier-scope +modifier-scope +conjuncted-wg +236024 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +236029 wrapper-clause-scope +group +236032 wrapper-scope +wrapper-clause-scope +236035 modifier-scope +wrapper-scope +236039 wrapper-scope +236041 modifier-scope +236044 wrapper-clause-scope +236046 wrapper-scope +wrapper-clause-scope +236049 modifier-scope +wrapper-scope +236052 wrapper-clause-scope +236056 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236064 modifier-scope +conjuncted-wg +236067 wrapper-scope +modifier-scope +236071 modifier-scope +236074 modifier-scope +236077 group +236079 modifier-scope +wrapper-scope +wrapper-clause-scope +236083 modifier-scope +conjuncted-wg +236086 wrapper-scope +wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +236120 conjuncted-wg +wrapper-scope +236123 conjuncted-wg +wrapper-scope +236126 conjuncted-wg +236128 group +236130 wrapper-clause-scope +236132 conjuncted-wg +236135 wrapper-clause-scope +236137 conjuncted-wg +236140 wrapper-clause-scope +236142 conjuncted-wg +236146 wrapper-clause-scope +236148 conjuncted-wg +236151 wrapper-clause-scope +236153 conjuncted-wg +236156 wrapper-clause-scope +236158 conjuncted-wg +236161 wrapper-clause-scope +236163 conjuncted-wg +236168 modifier-scope +modifier-scope +wrapper-scope +236172 modifier-scope +modifier-scope +236177 wrapper-scope +conjuncted-wg +236180 wrapper-scope +modifier-scope +modifier-scope +236184 wrapper-clause-scope +group +236187 modifier-scope +modifier-scope +group +wrapper-clause-scope +236193 modifier-scope +236196 wrapper-scope +236198 wrapper-clause-scope +236202 conjuncted-wg +conjuncted-wg +236205 wrapper-scope +236207 wrapper-clause-scope +236210 modifier-scope +wrapper-scope +conjuncted-wg +236214 wrapper-scope +236216 wrapper-clause-scope +236218 modifier-scope +wrapper-scope +236221 wrapper-clause-scope +group +236224 modifier-clause-scope +modifier-clause-scope +236227 wrapper-clause-scope +236229 modifier-scope +wrapper-clause-scope +236234 wrapper-scope +conjuncted-wg +236237 conjuncted-wg +236240 modifier-scope +conjuncted-wg +236243 modifier-scope +236245 wrapper-clause-scope +group +group +236251 wrapper-scope +modifier-scope +conjuncted-wg +236255 conjuncted-wg +236258 group +236261 conjuncted-wg +236263 wrapper-scope +conjuncted-wg +236266 wrapper-scope +236268 conjuncted-wg +236270 group +236272 wrapper-clause-scope +236276 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +236282 conjuncted-wg +236284 wrapper-scope +modifier-scope +236289 group +236295 wrapper-scope +wrapper-clause-scope +236298 wrapper-clause-scope +236300 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +236307 conjuncted-wg +236309 group +236311 wrapper-scope +236313 wrapper-scope +236315 group +236317 modifier-scope +236319 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +236325 wrapper-clause-scope +group +236328 wrapper-scope +group +236331 modifier-scope +modifier-scope +group +236335 wrapper-scope +236339 wrapper-clause-scope +236341 group +wrapper-clause-scope +236344 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +236350 wrapper-clause-scope +236353 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-scope +modifier-clause-scope +apposition-group +236363 wrapper-scope +236365 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +236376 group +group +wrapper-clause-scope +236380 wrapper-scope +modifier-scope +236383 group +wrapper-clause-scope +group +236388 wrapper-clause-scope +236390 modifier-scope +modifier-scope +wrapper-clause-scope +236394 wrapper-scope +group +236397 group +wrapper-clause-scope +236400 wrapper-clause-scope +236402 wrapper-scope +236404 wrapper-clause-scope +236406 wrapper-scope +wrapper-clause-scope +236409 wrapper-scope +wrapper-scope +236412 wrapper-clause-scope +236414 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +236421 wrapper-clause-scope +236423 modifier-scope +modifier-scope +modifier-scope +236427 wrapper-clause-scope +236429 group +modifier-scope +wrapper-clause-scope +236433 wrapper-scope +modifier-scope +236436 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +236444 wrapper-scope +236446 modifier-scope +236448 wrapper-clause-scope +group +wrapper-clause-scope +236453 group +236455 wrapper-scope +wrapper-clause-scope +236458 conjuncted-wg +wrapper-scope +wrapper-clause-scope +236462 wrapper-scope +wrapper-clause-scope +236465 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +236475 wrapper-scope +236477 wrapper-clause-scope +236479 group +236481 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236490 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-clause-scope +236497 wrapper-scope +group +236500 group +wrapper-clause-scope +236503 wrapper-scope +236505 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +236511 wrapper-clause-scope +236513 modifier-scope +modifier-scope +wrapper-scope +236517 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236522 wrapper-scope +236524 conjuncted-wg +236526 group +236528 wrapper-clause-scope +236530 wrapper-scope +wrapper-scope +236533 wrapper-clause-scope +236536 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236542 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236548 wrapper-scope +modifier-scope +modifier-scope +236552 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +236569 wrapper-clause-scope +236572 wrapper-scope +conjuncted-wg +wrapper-scope +236576 wrapper-scope +modifier-scope +236579 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +236590 group +236592 wrapper-clause-scope +236594 conjuncted-wg +236597 modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +236605 wrapper-clause-scope +236607 wrapper-clause-scope +236609 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +236614 wrapper-clause-scope +236616 wrapper-clause-scope +236618 wrapper-scope +236620 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +236631 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +236636 group +236638 wrapper-scope +236640 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +236649 wrapper-clause-scope +236651 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-clause-scope +236659 wrapper-scope +236661 wrapper-clause-scope +236663 modifier-scope +modifier-scope +236666 wrapper-clause-scope +236668 wrapper-scope +236670 wrapper-clause-scope +236673 group +modifier-clause-scope +wrapper-clause-scope +236677 modifier-clause-scope +wrapper-clause-scope +236680 wrapper-scope +236682 wrapper-clause-scope +236684 modifier-clause-scope +wrapper-clause-scope +236687 wrapper-clause-scope +236689 wrapper-clause-scope +236691 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +236695 modifier-clause-scope +wrapper-clause-scope +236698 wrapper-scope +wrapper-clause-scope +236702 wrapper-clause-scope +236704 wrapper-clause-scope +236706 modifier-scope +236708 wrapper-clause-scope +wrapper-clause-scope +236712 wrapper-clause-scope +236715 wrapper-clause-scope +group +group +wrapper-clause-scope +group +236723 wrapper-scope +236725 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236735 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236744 wrapper-clause-scope +236748 wrapper-clause-scope +236750 modifier-scope +conjuncted-wg +236753 wrapper-clause-scope +236755 modifier-scope +236757 wrapper-clause-scope +236759 group +modifier-scope +wrapper-clause-scope +236763 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +236771 conjuncted-wg +236773 modifier-scope +conjuncted-wg +236777 wrapper-scope +236779 wrapper-clause-scope +236781 wrapper-scope +modifier-clause-scope +apposition-group +236786 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +236796 group +236799 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +236808 wrapper-scope +wrapper-scope +modifier-scope +236812 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +group +236819 wrapper-clause-scope +236821 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +236827 wrapper-scope +236829 wrapper-clause-scope +236831 group +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +236837 wrapper-clause-scope +236839 modifier-clause-scope +apposition-group +modifier-scope +236843 wrapper-scope +236846 conjuncted-wg +236848 group +modifier-scope +modifier-scope +wrapper-scope +236854 conjuncted-wg +group +236857 wrapper-scope +236860 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +group +236867 modifier-scope +236869 group +modifier-scope +modifier-scope +236873 wrapper-clause-scope +236875 modifier-scope +modifier-scope +236878 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +236889 wrapper-clause-scope +wrapper-clause-scope +236892 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +236900 wrapper-clause-scope +236903 modifier-clause-scope +apposition-group +modifier-scope +236908 wrapper-scope +236910 wrapper-scope +conjuncted-wg +236913 modifier-scope +modifier-scope +modifier-scope +236917 wrapper-clause-scope +group +group +group +236922 modifier-scope +wrapper-clause-scope +236925 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +236938 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +group +wrapper-clause-scope +236945 wrapper-scope +conjuncted-wg +236950 wrapper-clause-scope +236953 wrapper-scope +modifier-scope +modifier-scope +236957 wrapper-clause-scope +236960 modifier-scope +wrapper-clause-scope +236964 wrapper-scope +conjuncted-wg +236967 modifier-clause-scope +modifier-clause-scope +236970 modifier-scope +236973 wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +236978 wrapper-clause-scope +236982 wrapper-clause-scope +236984 conjuncted-wg +236986 wrapper-clause-scope +236988 wrapper-scope +wrapper-scope +236991 group +group +group +236995 wrapper-clause-scope +236997 modifier-scope +237000 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +237005 modifier-scope +modifier-scope +237008 wrapper-clause-scope +group +group +237012 modifier-scope +237014 modifier-scope +wrapper-scope +wrapper-clause-scope +237018 wrapper-scope +237020 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +237026 group +237029 modifier-scope +237031 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +237036 wrapper-clause-scope +237039 wrapper-clause-scope +237042 wrapper-clause-scope +237044 conjuncted-wg +237046 wrapper-scope +237048 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +237053 modifier-scope +modifier-scope +modifier-scope +modifier-scope +237059 wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +237065 wrapper-scope +modifier-scope +237069 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +237079 wrapper-scope +modifier-scope +modifier-scope +237085 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +237094 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +237107 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +237112 modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +237118 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +237124 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +237130 wrapper-clause-scope +237132 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +237138 conjuncted-wg +modifier-scope +237142 conjuncted-wg +237144 wrapper-scope +wrapper-scope +conjuncted-wg +237149 wrapper-scope +237151 wrapper-clause-scope +237153 wrapper-clause-scope +237156 modifier-clause-scope +apposition-group +237160 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +237164 wrapper-clause-scope +237166 wrapper-scope +237168 wrapper-clause-scope +group +group +237173 wrapper-scope +wrapper-scope +wrapper-clause-scope +237178 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +237184 modifier-scope +wrapper-scope +modifier-scope +237190 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +237194 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +237200 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +237208 wrapper-scope +237210 modifier-scope +wrapper-clause-scope +237213 modifier-scope +modifier-scope +237217 modifier-scope +wrapper-scope +237220 group +wrapper-clause-scope +237225 wrapper-scope +wrapper-clause-scope +237228 wrapper-clause-scope +237230 modifier-scope +237232 wrapper-clause-scope +group +group +wrapper-clause-scope +wrapper-clause-scope +237238 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +237244 modifier-scope +237246 wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +237252 wrapper-clause-scope +237254 wrapper-clause-scope +wrapper-clause-scope +237257 wrapper-scope +modifier-scope +237260 wrapper-clause-scope +237263 conjuncted-wg +237265 modifier-scope +237267 conjuncted-wg +conjuncted-wg +237271 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +237276 modifier-scope +237280 modifier-scope +wrapper-clause-scope +237284 modifier-scope +modifier-scope +wrapper-scope +237289 modifier-scope +237291 wrapper-clause-scope +237295 conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +237300 wrapper-clause-scope +237304 wrapper-scope +conjuncted-wg +237308 wrapper-clause-scope +237311 wrapper-scope +modifier-scope +conjuncted-wg +237315 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +237321 modifier-scope +237323 wrapper-scope +modifier-scope +237326 wrapper-clause-scope +group +237329 wrapper-clause-scope +237331 wrapper-scope +wrapper-clause-scope +237334 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +237343 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +237350 modifier-scope +modifier-scope +group +237354 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +237360 wrapper-scope +modifier-scope +wrapper-scope +237364 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +237369 wrapper-clause-scope +237371 wrapper-clause-scope +237373 wrapper-scope +237375 wrapper-clause-scope +group +237379 wrapper-clause-scope +237382 modifier-scope +237384 group +237387 modifier-scope +modifier-scope +237390 wrapper-clause-scope +237393 wrapper-clause-scope +group +237396 modifier-scope +wrapper-clause-scope +237399 modifier-scope +237401 modifier-scope +modifier-scope +237404 wrapper-clause-scope +group +237407 wrapper-clause-scope +wrapper-clause-scope +group +wrapper-clause-scope +237412 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +237417 modifier-scope +modifier-scope +wrapper-scope +group +237422 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +237428 wrapper-clause-scope +wrapper-clause-scope +group +wrapper-clause-scope +237434 wrapper-clause-scope +237436 modifier-clause-scope +apposition-group +237439 conjuncted-wg +237442 apposition-group +modifier-scope +237445 conjuncted-wg +apposition-group +modifier-scope +237451 wrapper-clause-scope +237454 modifier-scope +modifier-scope +237457 wrapper-clause-scope +237460 wrapper-clause-scope +237462 modifier-scope +modifier-scope +conjuncted-wg +237466 modifier-scope +conjuncted-wg +237469 wrapper-scope +wrapper-scope +wrapper-scope +237473 wrapper-clause-scope +group +237477 wrapper-clause-scope +237479 wrapper-clause-scope +237481 modifier-scope +modifier-scope +modifier-scope +237487 modifier-scope +237489 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +237496 wrapper-scope +conjuncted-wg +237500 wrapper-clause-scope +237502 modifier-scope +modifier-scope +modifier-scope +237506 wrapper-scope +237508 wrapper-clause-scope +237510 wrapper-scope +237512 conjuncted-wg +237514 group +237516 modifier-scope +wrapper-scope +wrapper-clause-scope +237520 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +237529 wrapper-scope +wrapper-clause-scope +237534 modifier-scope +237536 wrapper-clause-scope +237542 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +237548 wrapper-scope +237551 modifier-scope +237553 wrapper-clause-scope +237555 modifier-scope +group +modifier-scope +237559 wrapper-scope +modifier-scope +237562 wrapper-clause-scope +group +237565 wrapper-clause-scope +237567 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +237572 wrapper-clause-scope +237574 wrapper-clause-scope +237576 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +237582 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +237592 wrapper-clause-scope +group +group +wrapper-clause-scope +237597 group +wrapper-clause-scope +wrapper-clause-scope +237602 wrapper-clause-scope +237604 modifier-scope +237609 wrapper-scope +conjuncted-wg +wrapper-clause-scope +237613 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +237620 group +wrapper-clause-scope +237623 wrapper-scope +modifier-scope +237627 wrapper-clause-scope +237629 modifier-scope +237632 wrapper-clause-scope +wrapper-clause-scope +237635 group +wrapper-clause-scope +237638 wrapper-clause-scope +237640 wrapper-clause-scope +237642 wrapper-clause-scope +237644 wrapper-clause-scope +237646 wrapper-scope +237649 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +237654 wrapper-clause-scope +group +wrapper-clause-scope +237658 wrapper-scope +237660 wrapper-scope +237663 group +237667 group +237671 group +237673 modifier-scope +237677 modifier-scope +237683 group +237685 wrapper-scope +237687 wrapper-scope +237689 wrapper-scope +237691 wrapper-scope +237693 group +237695 wrapper-scope +modifier-scope +wrapper-scope +237702 wrapper-scope +modifier-scope +237705 group +237707 group +237709 modifier-scope +237711 modifier-scope +237713 wrapper-scope +237715 wrapper-scope +237717 wrapper-scope +237719 wrapper-scope +237721 wrapper-scope +237723 wrapper-scope +group +237727 conjuncted-wg +237729 wrapper-scope +237731 wrapper-scope +237733 conjuncted-wg +237735 wrapper-scope +237737 wrapper-scope +237739 conjuncted-wg +237742 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +237755 conjuncted-wg +237760 conjuncted-wg +237763 group +wrapper-clause-scope +237768 modifier-scope +modifier-scope +modifier-scope +237773 group +modifier-scope +modifier-scope +237777 conjuncted-wg +group +modifier-scope +wrapper-clause-scope +237782 wrapper-scope +modifier-scope +wrapper-clause-scope +237789 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +237797 conjuncted-wg +237800 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +237806 modifier-scope +modifier-scope +237813 conjuncted-wg +237815 conjuncted-wg +237817 wrapper-scope +modifier-scope +237820 conjuncted-wg +237825 modifier-scope +wrapper-scope +group +group +group +wrapper-clause-scope +237832 wrapper-scope +237834 group +wrapper-clause-scope +237837 wrapper-scope +modifier-scope +237841 modifier-scope +237843 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +237849 wrapper-clause-scope +237853 modifier-scope +modifier-scope +group +group +237858 conjuncted-wg +237860 wrapper-scope +conjuncted-wg +237863 wrapper-scope +modifier-scope +237867 modifier-scope +237870 wrapper-scope +modifier-scope +conjuncted-wg +237874 apposition-group +modifier-scope +237881 wrapper-scope +modifier-scope +conjuncted-wg +237885 wrapper-scope +wrapper-clause-scope +237888 wrapper-scope +modifier-scope +237891 wrapper-clause-scope +group +group +wrapper-clause-scope +237898 wrapper-clause-scope +237901 wrapper-clause-scope +group +237904 wrapper-clause-scope +237906 wrapper-scope +wrapper-scope +237910 conjuncted-wg +237912 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +237918 wrapper-clause-scope +237920 wrapper-clause-scope +237922 modifier-scope +237924 modifier-scope +wrapper-clause-scope +237927 wrapper-clause-scope +237931 wrapper-scope +modifier-scope +wrapper-clause-scope +237935 wrapper-scope +237937 wrapper-clause-scope +237939 group +237941 modifier-scope +modifier-scope +wrapper-clause-scope +237945 modifier-scope +wrapper-scope +237948 wrapper-clause-scope +237950 wrapper-scope +modifier-scope +wrapper-clause-scope +237954 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +237959 wrapper-clause-scope +237961 group +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +237967 conjuncted-wg +wrapper-scope +237970 wrapper-clause-scope +237972 wrapper-clause-scope +237979 wrapper-clause-scope +237982 wrapper-scope +237984 wrapper-clause-scope +237986 modifier-scope +modifier-scope +wrapper-clause-scope +237990 modifier-scope +237992 wrapper-clause-scope +237994 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +238001 conjuncted-wg +conjuncted-wg +conjuncted-wg +238005 wrapper-clause-scope +238008 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +238015 modifier-scope +238018 modifier-scope +modifier-scope +238023 modifier-scope +238025 wrapper-scope +conjuncted-wg +238029 wrapper-clause-scope +group +group +238033 modifier-scope +238035 wrapper-clause-scope +group +238038 modifier-scope +238040 modifier-scope +238042 modifier-scope +modifier-scope +238045 wrapper-clause-scope +238048 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +238054 wrapper-clause-scope +238057 wrapper-clause-scope +group +238062 wrapper-clause-scope +238066 wrapper-clause-scope +238069 apposition-group +238071 wrapper-scope +wrapper-scope +238076 conjuncted-wg +238078 modifier-scope +238080 wrapper-clause-scope +238083 group +wrapper-clause-scope +238086 modifier-scope +modifier-scope +wrapper-clause-scope +238090 modifier-scope +modifier-scope +238094 wrapper-clause-scope +238098 wrapper-scope +wrapper-scope +238101 wrapper-clause-scope +238104 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +238109 wrapper-clause-scope +group +group +238113 wrapper-clause-scope +wrapper-clause-scope +group +238121 wrapper-clause-scope +wrapper-clause-scope +238124 group +238126 wrapper-clause-scope +group +238131 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +238136 modifier-clause-scope +wrapper-clause-scope +238140 conjuncted-wg +238142 wrapper-scope +modifier-clause-scope +apposition-group +238146 conjuncted-wg +conjuncted-wg +238151 modifier-scope +wrapper-scope +238155 wrapper-scope +modifier-scope +238158 modifier-scope +conjuncted-wg +modifier-scope +238164 conjuncted-wg +238166 wrapper-clause-scope +238168 modifier-scope +conjuncted-wg +238172 wrapper-clause-scope +238174 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +group +group +wrapper-clause-scope +238182 wrapper-scope +modifier-scope +238185 wrapper-clause-scope +238187 modifier-clause-scope +apposition-group +modifier-clause-scope +modifier-clause-scope +238192 wrapper-scope +238195 wrapper-scope +conjuncted-wg +238198 wrapper-scope +238200 wrapper-clause-scope +238203 wrapper-scope +conjuncted-wg +238206 wrapper-scope +modifier-scope +238209 wrapper-clause-scope +238212 modifier-scope +wrapper-scope +conjuncted-wg +238216 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +238221 group +group +238224 wrapper-clause-scope +238226 wrapper-scope +modifier-scope +238230 wrapper-clause-scope +238232 wrapper-clause-scope +238234 group +wrapper-scope +238237 wrapper-clause-scope +wrapper-clause-scope +238241 wrapper-clause-scope +238245 wrapper-clause-scope +238248 wrapper-clause-scope +238251 wrapper-scope +modifier-scope +238254 modifier-scope +group +wrapper-clause-scope +238258 wrapper-clause-scope +238260 modifier-scope +conjuncted-wg +238263 wrapper-scope +238265 wrapper-clause-scope +group +238268 wrapper-scope +modifier-scope +238271 wrapper-scope +modifier-scope +238274 wrapper-clause-scope +group +238277 wrapper-clause-scope +238280 conjuncted-wg +238284 group +modifier-scope +modifier-scope +238289 wrapper-scope +238291 wrapper-clause-scope +238294 wrapper-scope +modifier-clause-scope +apposition-group +238298 modifier-scope +238300 wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +238309 group +238314 modifier-scope +238316 conjuncted-wg +238318 modifier-scope +modifier-scope +modifier-scope +238322 conjuncted-wg +wrapper-scope +238326 wrapper-scope +modifier-scope +238330 modifier-scope +modifier-scope +238335 modifier-scope +modifier-scope +group +modifier-scope +group +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +238354 group +modifier-clause-scope +group +238358 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-scope +238363 group +conjuncted-wg +group +group +wrapper-clause-scope +238369 wrapper-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +238381 conjuncted-wg +wrapper-scope +238384 group +modifier-scope +conjuncted-wg +group +group +group +wrapper-clause-scope +group +238393 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +238398 wrapper-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +238404 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +238411 conjuncted-wg +238413 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +238420 group +238422 wrapper-clause-scope +238424 wrapper-scope +wrapper-clause-scope +238427 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +238435 wrapper-clause-scope +238438 conjuncted-wg +238441 modifier-scope +modifier-scope +modifier-scope +238445 wrapper-clause-scope +group +group +wrapper-clause-scope +wrapper-clause-scope +238452 conjuncted-wg +modifier-scope +wrapper-scope +wrapper-scope +238458 wrapper-clause-scope +group +238462 conjuncted-wg +238464 group +wrapper-clause-scope +238467 wrapper-scope +238471 wrapper-clause-scope +238475 conjuncted-wg +modifier-scope +conjuncted-wg +238482 wrapper-clause-scope +238485 modifier-scope +238487 wrapper-clause-scope +238490 group +modifier-scope +wrapper-clause-scope +238494 wrapper-scope +wrapper-clause-scope +238497 wrapper-scope +238499 wrapper-clause-scope +group +238503 wrapper-scope +conjuncted-wg +238507 wrapper-scope +modifier-scope +group +238511 wrapper-clause-scope +238513 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +238522 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +238528 conjuncted-wg +238530 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +238539 modifier-scope +modifier-scope +modifier-scope +modifier-scope +238544 wrapper-clause-scope +group +wrapper-clause-scope +238548 wrapper-clause-scope +238551 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +238556 wrapper-scope +modifier-scope +modifier-scope +238560 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +238565 wrapper-scope +modifier-scope +238568 group +238571 conjuncted-wg +238573 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +238580 wrapper-scope +conjuncted-wg +238583 wrapper-scope +238587 wrapper-scope +modifier-scope +wrapper-scope +238591 conjuncted-wg +238593 wrapper-scope +modifier-scope +238596 wrapper-clause-scope +238598 modifier-scope +modifier-scope +wrapper-clause-scope +238602 group +modifier-scope +modifier-scope +modifier-scope +238607 wrapper-clause-scope +group +238610 wrapper-clause-scope +238614 wrapper-scope +modifier-scope +238619 wrapper-scope +modifier-scope +modifier-scope +238623 modifier-scope +conjuncted-wg +modifier-scope +238627 wrapper-clause-scope +238629 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +238638 wrapper-clause-scope +238641 wrapper-scope +wrapper-clause-scope +238644 wrapper-clause-scope +238646 apposition-group +modifier-scope +238649 conjuncted-wg +238651 wrapper-scope +modifier-scope +238655 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +238660 modifier-scope +238662 wrapper-clause-scope +238664 wrapper-scope +238666 wrapper-clause-scope +238669 modifier-clause-scope +apposition-group +238672 wrapper-scope +modifier-scope +conjuncted-wg +238676 wrapper-scope +wrapper-clause-scope +238679 wrapper-clause-scope +wrapper-clause-scope +238682 wrapper-scope +238684 conjuncted-wg +238686 wrapper-clause-scope +238688 group +modifier-scope +wrapper-scope +238694 wrapper-clause-scope +238696 wrapper-scope +modifier-clause-scope +apposition-group +apposition-group +modifier-scope +238703 modifier-clause-scope +apposition-group +modifier-scope +238707 wrapper-scope +group +wrapper-clause-scope +238713 wrapper-scope +modifier-scope +238716 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +238721 wrapper-clause-scope +group +238724 wrapper-scope +wrapper-clause-scope +238728 group +group +238733 modifier-scope +modifier-scope +wrapper-clause-scope +238737 wrapper-clause-scope +238740 wrapper-clause-scope +238743 group +238747 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +238752 modifier-scope +wrapper-clause-scope +238755 wrapper-clause-scope +238757 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +238765 group +modifier-scope +wrapper-clause-scope +238769 group +238771 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +238776 modifier-scope +238778 conjuncted-wg +wrapper-clause-scope +238782 wrapper-scope +modifier-scope +conjuncted-wg +238786 wrapper-scope +modifier-scope +238790 group +wrapper-clause-scope +238793 modifier-scope +238796 modifier-scope +238798 wrapper-clause-scope +group +group +wrapper-clause-scope +238803 wrapper-scope +238805 wrapper-scope +wrapper-clause-scope +238808 wrapper-scope +238810 wrapper-clause-scope +238813 wrapper-scope +wrapper-clause-scope +238816 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +238821 wrapper-clause-scope +238824 conjuncted-wg +238827 modifier-scope +wrapper-scope +238830 wrapper-clause-scope +group +238833 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +238838 modifier-scope +modifier-scope +modifier-scope +238842 wrapper-clause-scope +group +wrapper-clause-scope +238848 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +238853 modifier-scope +wrapper-scope +group +wrapper-clause-scope +238860 conjuncted-wg +modifier-scope +238864 modifier-scope +238869 conjuncted-wg +238871 wrapper-scope +conjuncted-wg +group +238876 wrapper-clause-scope +238878 wrapper-scope +modifier-scope +wrapper-clause-scope +238882 wrapper-scope +modifier-scope +group +modifier-scope +wrapper-scope +group +wrapper-clause-scope +238891 wrapper-scope +modifier-scope +conjuncted-wg +238895 wrapper-scope +modifier-scope +wrapper-clause-scope +238899 wrapper-scope +modifier-scope +modifier-scope +238903 wrapper-clause-scope +238905 wrapper-clause-scope +238909 wrapper-scope +modifier-scope +238912 modifier-scope +238916 wrapper-clause-scope +group +wrapper-clause-scope +238923 wrapper-clause-scope +238925 wrapper-scope +wrapper-clause-scope +238931 wrapper-clause-scope +238934 conjuncted-wg +238936 wrapper-scope +238938 wrapper-clause-scope +238941 wrapper-scope +wrapper-scope +group +modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +238952 conjuncted-wg +238954 wrapper-scope +238957 modifier-scope +modifier-scope +modifier-scope +238961 wrapper-clause-scope +group +wrapper-clause-scope +238965 wrapper-scope +238971 modifier-scope +238973 wrapper-scope +group +238977 group +238980 modifier-scope +wrapper-scope +238983 modifier-scope +238985 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +238997 wrapper-clause-scope +239000 wrapper-clause-scope +239002 wrapper-clause-scope +239005 modifier-scope +conjuncted-wg +239008 wrapper-scope +239010 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-clause-scope +239018 modifier-scope +conjuncted-wg +239021 wrapper-scope +239023 wrapper-clause-scope +239025 wrapper-clause-scope +239028 modifier-scope +wrapper-scope +modifier-scope +239032 wrapper-clause-scope +239034 modifier-scope +239036 wrapper-clause-scope +239038 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +239044 wrapper-scope +modifier-scope +modifier-scope +239048 wrapper-clause-scope +239050 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +239056 wrapper-clause-scope +239059 wrapper-scope +modifier-scope +wrapper-scope +239063 wrapper-clause-scope +239065 wrapper-clause-scope +239067 modifier-clause-scope +239069 modifier-clause-scope +wrapper-clause-scope +239072 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +239079 wrapper-clause-scope +239081 wrapper-clause-scope +239083 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +239088 modifier-scope +wrapper-scope +239091 wrapper-clause-scope +239094 modifier-scope +wrapper-scope +conjuncted-wg +239098 wrapper-clause-scope +239100 wrapper-scope +239102 group +group +239105 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +239110 wrapper-scope +wrapper-clause-scope +239114 modifier-clause-scope +wrapper-clause-scope +239117 wrapper-scope +wrapper-clause-scope +239120 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +239129 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +239137 wrapper-scope +239140 modifier-clause-scope +modifier-clause-scope +239144 conjuncted-wg +239146 wrapper-clause-scope +239148 modifier-scope +239150 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +239155 group +group +239160 conjuncted-wg +modifier-scope +wrapper-clause-scope +239164 wrapper-scope +239166 wrapper-clause-scope +239168 wrapper-scope +239171 conjuncted-wg +modifier-scope +modifier-scope +239176 wrapper-clause-scope +239179 modifier-clause-scope +239181 wrapper-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +239186 wrapper-scope +modifier-scope +group +wrapper-scope +wrapper-clause-scope +239192 modifier-scope +239194 wrapper-clause-scope +group +wrapper-clause-scope +239198 wrapper-scope +modifier-scope +239201 wrapper-scope +239203 wrapper-clause-scope +239205 modifier-scope +wrapper-scope +modifier-scope +239209 wrapper-clause-scope +239211 modifier-scope +239214 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +239219 apposition-group +modifier-scope +239223 wrapper-scope +wrapper-scope +modifier-scope +239227 wrapper-clause-scope +239230 modifier-scope +conjuncted-wg +239233 modifier-scope +239235 wrapper-clause-scope +239237 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +239245 wrapper-clause-scope +group +wrapper-clause-scope +239249 group +wrapper-clause-scope +239253 wrapper-clause-scope +239255 wrapper-scope +modifier-scope +239258 wrapper-clause-scope +239260 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +239265 modifier-scope +wrapper-scope +modifier-scope +group +wrapper-clause-scope +239272 wrapper-clause-scope +239274 wrapper-scope +wrapper-clause-scope +239277 modifier-scope +wrapper-scope +239280 wrapper-scope +modifier-clause-scope +modifier-clause-scope +239286 wrapper-clause-scope +239288 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +239293 wrapper-scope +239295 wrapper-clause-scope +239298 modifier-scope +wrapper-scope +239301 wrapper-clause-scope +239303 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +239310 wrapper-clause-scope +239313 wrapper-scope +239315 group +239318 conjuncted-wg +239321 conjuncted-wg +239324 conjuncted-wg +239326 wrapper-clause-scope +239328 modifier-scope +wrapper-scope +group +239332 wrapper-clause-scope +group +wrapper-clause-scope +239336 wrapper-clause-scope +group +239339 modifier-scope +modifier-scope +239342 wrapper-scope +239344 wrapper-clause-scope +239349 wrapper-scope +modifier-scope +modifier-scope +239353 modifier-scope +conjuncted-wg +239356 wrapper-scope +239358 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +239365 modifier-scope +wrapper-clause-scope +239368 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +239374 wrapper-clause-scope +group +wrapper-clause-scope +239378 modifier-scope +modifier-scope +modifier-scope +group +239383 modifier-scope +modifier-scope +modifier-scope +239387 wrapper-scope +239389 wrapper-scope +wrapper-clause-scope +239392 modifier-scope +wrapper-scope +wrapper-clause-scope +239396 modifier-scope +239398 wrapper-clause-scope +group +wrapper-clause-scope +239403 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +239413 group +modifier-scope +239416 wrapper-clause-scope +239418 group +239420 wrapper-clause-scope +239422 wrapper-clause-scope +239424 modifier-scope +wrapper-scope +239427 wrapper-clause-scope +239429 conjuncted-wg +239432 wrapper-clause-scope +239434 conjuncted-wg +239438 conjuncted-wg +239440 wrapper-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +239446 conjuncted-wg +239449 modifier-scope +239453 conjuncted-wg +conjuncted-wg +conjuncted-wg +239458 wrapper-clause-scope +wrapper-clause-scope +239461 wrapper-scope +239463 group +group +group +239467 wrapper-clause-scope +239469 wrapper-clause-scope +group +239472 wrapper-clause-scope +239479 wrapper-clause-scope +239481 wrapper-clause-scope +239484 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +239491 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +239498 conjuncted-wg +239500 wrapper-clause-scope +239502 modifier-scope +wrapper-clause-scope +239505 group +239507 wrapper-clause-scope +239509 modifier-scope +modifier-scope +239512 wrapper-clause-scope +239514 wrapper-clause-scope +239516 wrapper-clause-scope +239519 modifier-scope +modifier-scope +239522 wrapper-clause-scope +239524 modifier-scope +239529 conjuncted-wg +239532 wrapper-clause-scope +239535 wrapper-clause-scope +239538 wrapper-scope +239540 conjuncted-wg +239542 wrapper-scope +wrapper-clause-scope +239545 wrapper-scope +239547 apposition-group +modifier-scope +239550 wrapper-scope +239552 wrapper-scope +239554 wrapper-clause-scope +group +239559 wrapper-scope +conjuncted-wg +239562 modifier-scope +modifier-scope +wrapper-clause-scope +239566 wrapper-scope +239568 group +239571 wrapper-clause-scope +239574 wrapper-scope +239576 modifier-scope +239578 wrapper-clause-scope +239580 wrapper-clause-scope +239582 group +modifier-scope +239585 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +239593 wrapper-clause-scope +239595 conjuncted-wg +239597 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +239603 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +239611 wrapper-clause-scope +239613 modifier-scope +239616 conjuncted-wg +239619 wrapper-scope +modifier-scope +239622 wrapper-scope +239624 conjuncted-wg +group +239628 modifier-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +239634 modifier-scope +modifier-scope +wrapper-clause-scope +239638 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +239643 modifier-scope +modifier-scope +239646 modifier-scope +239648 wrapper-clause-scope +239650 group +group +239654 group +wrapper-clause-scope +239659 conjuncted-wg +239662 wrapper-clause-scope +239664 wrapper-clause-scope +239667 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +239672 wrapper-clause-scope +239674 modifier-scope +239676 wrapper-clause-scope +239679 wrapper-scope +modifier-scope +239682 wrapper-clause-scope +239684 wrapper-clause-scope +239686 wrapper-clause-scope +239688 wrapper-scope +modifier-scope +wrapper-scope +239692 wrapper-clause-scope +239694 modifier-scope +group +239698 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +239704 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +239713 wrapper-clause-scope +239716 group +modifier-scope +modifier-scope +239721 modifier-scope +239723 wrapper-clause-scope +239726 conjuncted-wg +239728 modifier-scope +239731 group +wrapper-clause-scope +239734 wrapper-clause-scope +239737 wrapper-clause-scope +239739 modifier-clause-scope +modifier-clause-scope +239742 wrapper-clause-scope +239745 modifier-scope +modifier-scope +239749 wrapper-scope +239751 wrapper-scope +239753 modifier-scope +239755 wrapper-clause-scope +239757 wrapper-scope +modifier-scope +239760 wrapper-clause-scope +239762 wrapper-scope +group +group +239767 conjuncted-wg +239769 modifier-clause-scope +239771 wrapper-scope +239779 modifier-scope +wrapper-scope +wrapper-clause-scope +239785 modifier-scope +modifier-scope +modifier-scope +239790 wrapper-scope +wrapper-scope +wrapper-clause-scope +239794 modifier-scope +239796 wrapper-clause-scope +239798 wrapper-clause-scope +239800 modifier-scope +wrapper-clause-scope +239804 wrapper-clause-scope +239807 wrapper-clause-scope +239811 wrapper-clause-scope +239813 modifier-scope +modifier-scope +modifier-scope +239817 group +239820 wrapper-clause-scope +239823 wrapper-clause-scope +239825 wrapper-scope +239828 group +modifier-scope +239831 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +239836 wrapper-scope +modifier-scope +239839 wrapper-clause-scope +239841 modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +239849 modifier-scope +modifier-scope +wrapper-clause-scope +239854 wrapper-clause-scope +239856 wrapper-clause-scope +239859 conjuncted-wg +239861 wrapper-clause-scope +239863 wrapper-scope +239865 wrapper-clause-scope +239869 conjuncted-wg +239871 modifier-scope +modifier-scope +239874 wrapper-clause-scope +239877 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +239882 modifier-scope +wrapper-scope +modifier-scope +239886 wrapper-clause-scope +239888 wrapper-clause-scope +wrapper-clause-scope +239891 wrapper-clause-scope +239894 wrapper-clause-scope +group +wrapper-clause-scope +239899 wrapper-scope +239901 wrapper-clause-scope +239903 apposition-group +modifier-scope +modifier-scope +modifier-scope +239908 apposition-group +239910 conjuncted-wg +modifier-scope +modifier-scope +239916 wrapper-clause-scope +239918 wrapper-clause-scope +239920 modifier-scope +modifier-scope +239923 group +wrapper-clause-scope +239926 modifier-scope +modifier-scope +modifier-scope +group +239931 wrapper-scope +modifier-scope +239934 wrapper-clause-scope +239936 modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +239942 modifier-scope +conjuncted-wg +modifier-scope +239947 wrapper-clause-scope +239956 wrapper-clause-scope +239958 wrapper-scope +modifier-scope +239961 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +239967 wrapper-clause-scope +239969 modifier-scope +239973 modifier-scope +modifier-scope +conjuncted-wg +239977 modifier-scope +modifier-scope +modifier-scope +239981 wrapper-clause-scope +group +wrapper-clause-scope +239989 wrapper-clause-scope +239992 modifier-scope +modifier-scope +conjuncted-wg +239997 wrapper-scope +modifier-scope +conjuncted-wg +240001 wrapper-scope +modifier-scope +240004 wrapper-clause-scope +240006 modifier-scope +modifier-scope +240009 wrapper-clause-scope +240011 wrapper-clause-scope +240013 modifier-scope +wrapper-clause-scope +240016 wrapper-scope +modifier-scope +240022 wrapper-clause-scope +240024 wrapper-clause-scope +240026 wrapper-clause-scope +240029 wrapper-clause-scope +240031 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +240038 wrapper-clause-scope +240040 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +240046 wrapper-clause-scope +240049 modifier-scope +240051 wrapper-clause-scope +240053 modifier-scope +240056 wrapper-clause-scope +wrapper-clause-scope +group +wrapper-clause-scope +240063 modifier-scope +wrapper-scope +conjuncted-wg +240067 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +240072 group +240075 modifier-scope +modifier-scope +modifier-scope +240083 wrapper-scope +240086 modifier-scope +modifier-scope +modifier-scope +240090 wrapper-clause-scope +group +240093 modifier-clause-scope +wrapper-clause-scope +240096 group +240099 wrapper-clause-scope +240101 wrapper-scope +modifier-scope +modifier-scope +240105 wrapper-clause-scope +240108 wrapper-clause-scope +240110 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +240119 wrapper-scope +240121 wrapper-clause-scope +240123 group +240125 conjuncted-wg +modifier-scope +240128 wrapper-clause-scope +240131 modifier-scope +modifier-scope +240134 conjuncted-wg +240136 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +240143 group +240145 modifier-scope +wrapper-clause-scope +240148 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +240156 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +240169 group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-clause-scope +240177 group +wrapper-clause-scope +240180 wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +group +240188 conjuncted-wg +wrapper-scope +240191 group +modifier-scope +conjuncted-wg +group +group +240198 group +modifier-scope +modifier-scope +240202 conjuncted-wg +group +modifier-scope +modifier-scope +group +wrapper-clause-scope +group +240210 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +240218 wrapper-scope +wrapper-scope +modifier-scope +240223 conjuncted-wg +wrapper-scope +wrapper-scope +240227 wrapper-scope +wrapper-scope +group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +240243 wrapper-scope +wrapper-clause-scope +240248 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +240265 wrapper-scope +wrapper-scope +modifier-scope +240269 conjuncted-wg +240271 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +240280 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +240288 modifier-scope +wrapper-scope +modifier-scope +240293 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +240303 wrapper-scope +240305 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +240309 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +240318 wrapper-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +240324 wrapper-scope +modifier-scope +240328 wrapper-scope +modifier-scope +240331 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240340 wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240348 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +240360 wrapper-scope +240363 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +group +conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +240378 wrapper-scope +240380 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +240385 group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240397 conjuncted-wg +wrapper-scope +modifier-scope +240401 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +240410 modifier-scope +modifier-scope +modifier-scope +modifier-scope +240415 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +240426 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +240430 modifier-clause-scope +modifier-clause-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +240437 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240446 wrapper-scope +modifier-scope +240450 wrapper-scope +conjuncted-wg +240453 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +240459 modifier-scope +240461 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +240468 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-scope +wrapper-clause-scope +240478 wrapper-clause-scope +240481 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +240486 modifier-scope +wrapper-scope +apposition-group +modifier-scope +240491 group +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +240498 modifier-scope +wrapper-scope +240501 wrapper-clause-scope +240504 modifier-scope +240506 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-clause-scope +240526 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +240533 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240542 modifier-scope +modifier-scope +240545 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +240550 modifier-scope +wrapper-clause-scope +240553 modifier-scope +modifier-scope +240556 wrapper-clause-scope +240558 group +240560 modifier-scope +240562 wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +240570 modifier-scope +modifier-scope +240573 wrapper-scope +conjuncted-wg +group +240578 conjuncted-wg +240580 wrapper-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +240586 wrapper-scope +group +modifier-scope +wrapper-clause-scope +240591 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +240595 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +group +240605 wrapper-clause-scope +240607 modifier-scope +wrapper-scope +wrapper-scope +240611 wrapper-clause-scope +group +240614 wrapper-scope +240616 modifier-scope +modifier-scope +240619 group +240621 wrapper-scope +wrapper-clause-scope +240625 wrapper-clause-scope +240627 modifier-scope +240629 wrapper-scope +group +wrapper-scope +apposition-group +modifier-scope +240636 modifier-scope +240638 wrapper-scope +240640 wrapper-clause-scope +group +240644 wrapper-clause-scope +240646 group +group +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +240653 wrapper-scope +wrapper-clause-scope +240656 modifier-scope +modifier-scope +wrapper-scope +240660 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +240666 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240676 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +240681 wrapper-clause-scope +240683 wrapper-scope +group +group +wrapper-clause-scope +240688 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +240693 wrapper-clause-scope +240695 group +modifier-scope +modifier-scope +wrapper-clause-scope +240701 modifier-scope +conjuncted-wg +240704 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +240713 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +240721 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +240727 conjuncted-wg +240729 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +240736 modifier-scope +wrapper-scope +240739 wrapper-clause-scope +group +240744 group +modifier-scope +conjuncted-wg +240748 modifier-scope +wrapper-clause-scope +240751 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +240759 wrapper-clause-scope +wrapper-clause-scope +240762 group +240765 conjuncted-wg +240768 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +240774 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +240779 conjuncted-wg +240781 apposition-group +modifier-scope +group +240785 wrapper-scope +modifier-scope +240788 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +240793 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +240802 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +group +modifier-scope +group +wrapper-clause-scope +wrapper-clause-scope +240816 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +240824 wrapper-scope +wrapper-clause-scope +240827 wrapper-scope +modifier-scope +wrapper-clause-scope +240831 wrapper-scope +240833 wrapper-scope +240836 modifier-clause-scope +modifier-clause-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +240846 modifier-scope +modifier-scope +modifier-scope +modifier-scope +240851 modifier-scope +240853 modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +240858 modifier-scope +240860 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-scope +modifier-scope +240869 modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +240879 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240886 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240894 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +240902 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +240908 wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +240915 modifier-scope +wrapper-clause-scope +240918 modifier-scope +240920 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +240936 wrapper-scope +apposition-group +group +modifier-scope +group +modifier-scope +modifier-scope +240944 wrapper-scope +modifier-scope +240947 conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +240953 wrapper-clause-scope +240956 wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +240963 modifier-scope +240966 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +240973 wrapper-scope +modifier-scope +modifier-scope +240977 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +240982 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +240988 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +240995 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +241002 wrapper-scope +241004 conjuncted-wg +wrapper-clause-scope +241009 wrapper-scope +modifier-scope +modifier-scope +241013 modifier-scope +241015 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +241020 modifier-clause-scope +modifier-clause-scope +241023 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241028 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241034 wrapper-clause-scope +241037 wrapper-clause-scope +241040 wrapper-scope +modifier-clause-scope +241044 conjuncted-wg +wrapper-scope +group +modifier-scope +wrapper-clause-scope +241050 wrapper-scope +modifier-scope +241053 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +group +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241067 wrapper-clause-scope +241069 group +modifier-scope +modifier-scope +wrapper-scope +241074 modifier-clause-scope +apposition-group +241078 wrapper-scope +modifier-scope +241081 conjuncted-wg +wrapper-scope +wrapper-scope +241086 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +241094 group +241097 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +241102 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241109 group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +241116 conjuncted-wg +modifier-scope +modifier-scope +241120 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +241126 wrapper-clause-scope +241128 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241138 wrapper-clause-scope +241140 group +241143 wrapper-scope +241145 modifier-scope +241147 wrapper-clause-scope +241149 wrapper-clause-scope +241151 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +241155 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241162 modifier-clause-scope +wrapper-clause-scope +241165 modifier-clause-scope +wrapper-clause-scope +241168 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241173 modifier-scope +241175 wrapper-clause-scope +241178 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +241187 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241203 modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +241209 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241227 modifier-clause-scope +241230 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +241248 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +group +apposition-group +241255 modifier-scope +241257 wrapper-scope +modifier-scope +modifier-scope +241262 conjuncted-wg +wrapper-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +241281 wrapper-clause-scope +241284 conjuncted-wg +241286 wrapper-scope +group +241289 wrapper-clause-scope +241291 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +241297 wrapper-scope +modifier-scope +241300 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +241308 wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +241317 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +241324 wrapper-clause-scope +group +241327 modifier-scope +wrapper-clause-scope +wrapper-clause-scope +241332 conjuncted-wg +241334 wrapper-scope +wrapper-clause-scope +241337 wrapper-scope +modifier-scope +241341 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +241349 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +241355 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +241361 group +modifier-scope +modifier-scope +wrapper-clause-scope +241366 wrapper-scope +wrapper-scope +modifier-scope +241370 conjuncted-wg +modifier-scope +241373 wrapper-clause-scope +241376 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241382 modifier-scope +241386 conjuncted-wg +241389 group +241391 modifier-scope +wrapper-scope +modifier-scope +241395 modifier-scope +241399 wrapper-clause-scope +241401 conjuncted-wg +group +241405 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241411 wrapper-clause-scope +241416 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +wrapper-clause-scope +241425 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241430 wrapper-clause-scope +241433 wrapper-clause-scope +241435 apposition-group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241442 wrapper-scope +wrapper-scope +modifier-scope +241447 modifier-scope +241449 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +241457 wrapper-clause-scope +241459 wrapper-scope +modifier-scope +241462 wrapper-clause-scope +241464 modifier-scope +modifier-scope +wrapper-scope +241468 wrapper-clause-scope +241471 modifier-scope +modifier-scope +wrapper-clause-scope +241475 modifier-scope +conjuncted-wg +241478 wrapper-scope +wrapper-clause-scope +241482 modifier-scope +modifier-scope +conjuncted-wg +241486 wrapper-scope +modifier-scope +modifier-scope +241490 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +241495 wrapper-clause-scope +241500 conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +241506 conjuncted-wg +241508 apposition-group +241510 conjuncted-wg +conjuncted-wg +241513 conjuncted-wg +241516 wrapper-clause-scope +241519 wrapper-clause-scope +241521 apposition-group +modifier-scope +241524 conjuncted-wg +conjuncted-wg +241527 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +241532 conjuncted-wg +241535 modifier-scope +wrapper-clause-scope +241538 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +241547 wrapper-clause-scope +241549 modifier-scope +241551 wrapper-clause-scope +241554 conjuncted-wg +241556 wrapper-scope +241560 wrapper-clause-scope +241562 modifier-scope +wrapper-clause-scope +241565 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +241571 conjuncted-wg +conjuncted-wg +241575 modifier-scope +241577 wrapper-clause-scope +group +241581 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +241588 wrapper-clause-scope +241590 wrapper-clause-scope +241592 wrapper-scope +241595 wrapper-clause-scope +241597 modifier-scope +241599 wrapper-scope +modifier-scope +wrapper-clause-scope +241603 modifier-clause-scope +wrapper-clause-scope +241607 wrapper-clause-scope +241612 wrapper-clause-scope +241614 conjuncted-wg +241616 wrapper-scope +modifier-scope +conjuncted-wg +241620 modifier-scope +241622 wrapper-clause-scope +241624 group +241626 group +wrapper-clause-scope +241629 wrapper-clause-scope +241632 modifier-scope +wrapper-clause-scope +241635 modifier-scope +241639 wrapper-scope +conjuncted-wg +241643 modifier-scope +modifier-scope +modifier-scope +241647 wrapper-clause-scope +group +241650 apposition-group +241652 wrapper-scope +241654 wrapper-scope +group +241658 conjuncted-wg +conjuncted-wg +modifier-scope +241663 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +241668 wrapper-scope +wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +group +modifier-scope +241677 conjuncted-wg +241679 wrapper-scope +modifier-scope +241684 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241689 modifier-scope +wrapper-clause-scope +241692 modifier-scope +modifier-scope +wrapper-clause-scope +group +241697 modifier-scope +modifier-scope +modifier-scope +modifier-scope +241702 modifier-scope +modifier-scope +241705 wrapper-clause-scope +241707 wrapper-clause-scope +241709 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +241718 modifier-scope +241720 modifier-scope +wrapper-clause-scope +241724 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +241730 wrapper-scope +wrapper-clause-scope +241734 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +241740 modifier-scope +modifier-clause-scope +241743 group +241746 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +241753 conjuncted-wg +241756 modifier-scope +modifier-scope +241759 modifier-scope +modifier-scope +wrapper-clause-scope +241763 modifier-scope +modifier-scope +241766 group +241768 wrapper-clause-scope +241770 modifier-scope +modifier-scope +wrapper-clause-scope +241775 modifier-scope +modifier-scope +conjuncted-wg +241780 conjuncted-wg +wrapper-clause-scope +241783 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241788 modifier-scope +modifier-scope +modifier-scope +241795 wrapper-scope +241797 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +241802 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +241807 modifier-scope +wrapper-scope +modifier-scope +241813 modifier-scope +modifier-scope +conjuncted-wg +241818 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +241823 wrapper-clause-scope +241826 modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241834 conjuncted-wg +241836 modifier-scope +wrapper-clause-scope +241839 modifier-scope +241841 group +241844 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +241851 group +241855 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +241865 conjuncted-wg +241867 wrapper-scope +modifier-scope +241870 wrapper-clause-scope +241873 modifier-scope +group +241876 modifier-scope +modifier-scope +241879 wrapper-scope +modifier-scope +241882 conjuncted-wg +241886 modifier-scope +group +241889 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +241894 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241901 modifier-scope +group +group +241905 wrapper-scope +wrapper-clause-scope +241908 group +wrapper-clause-scope +241911 modifier-scope +241914 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +241919 wrapper-scope +wrapper-clause-scope +241923 modifier-scope +conjuncted-wg +241927 wrapper-clause-scope +241929 wrapper-clause-scope +241931 modifier-scope +241933 wrapper-scope +241935 conjuncted-wg +241937 conjuncted-wg +241940 wrapper-clause-scope +241943 modifier-scope +modifier-scope +wrapper-scope +241947 modifier-scope +241949 wrapper-clause-scope +241952 modifier-scope +241954 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +241960 wrapper-scope +241963 modifier-scope +241965 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +241974 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +241981 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +241987 modifier-scope +modifier-scope +group +wrapper-scope +241992 conjuncted-wg +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +242012 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +242020 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +242028 wrapper-clause-scope +242032 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +242037 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +242042 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +242049 wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +242055 wrapper-scope +242057 modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +242065 wrapper-clause-scope +242067 apposition-group +242069 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +242077 modifier-scope +242080 wrapper-scope +modifier-scope +242083 conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +242089 wrapper-scope +wrapper-scope +modifier-scope +242093 conjuncted-wg +242095 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +242102 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +242107 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +242113 wrapper-scope +wrapper-scope +wrapper-clause-scope +242117 wrapper-scope +wrapper-clause-scope +242122 wrapper-clause-scope +group +wrapper-clause-scope +242126 modifier-scope +apposition-group +modifier-scope +wrapper-scope +242132 apposition-group +group +modifier-scope +242136 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +242143 wrapper-scope +wrapper-scope +modifier-scope +242148 modifier-scope +wrapper-scope +conjuncted-wg +242152 modifier-scope +modifier-scope +242156 modifier-scope +242158 conjuncted-wg +wrapper-scope +wrapper-scope +242162 group +conjuncted-wg +group +group +242168 modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +242173 modifier-scope +group +modifier-scope +group +wrapper-scope +242180 group +242182 conjuncted-wg +modifier-scope +group +modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +242193 wrapper-scope +wrapper-scope +242196 conjuncted-wg +242200 conjuncted-wg +wrapper-scope +242203 group +modifier-scope +conjuncted-wg +group +group +242210 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +242217 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +242239 modifier-scope +wrapper-clause-scope +242242 modifier-clause-scope +242244 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +group +wrapper-clause-scope +242252 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +242257 wrapper-scope +modifier-scope +242260 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +242269 conjuncted-wg +modifier-scope +242272 modifier-scope +modifier-scope +modifier-scope +modifier-scope +242277 wrapper-clause-scope +242279 modifier-scope +modifier-scope +wrapper-clause-scope +242283 modifier-scope +wrapper-scope +modifier-scope +group +242288 wrapper-clause-scope +242290 wrapper-clause-scope +242292 modifier-scope +modifier-scope +242295 conjuncted-wg +wrapper-scope +242298 conjuncted-wg +modifier-scope +wrapper-scope +wrapper-clause-scope +242303 wrapper-clause-scope +242305 wrapper-clause-scope +242308 conjuncted-wg +wrapper-scope +modifier-scope +242312 group +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-scope +modifier-scope +242320 conjuncted-wg +242322 wrapper-clause-scope +242326 wrapper-clause-scope +242328 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +242336 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +242341 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +242348 modifier-scope +modifier-scope +modifier-scope +242352 wrapper-scope +modifier-scope +modifier-scope +242356 modifier-scope +modifier-scope +modifier-scope +242361 conjuncted-wg +242363 modifier-scope +wrapper-scope +242366 conjuncted-wg +conjuncted-wg +242369 modifier-scope +wrapper-scope +modifier-scope +242374 conjuncted-wg +242376 wrapper-scope +242378 wrapper-clause-scope +242380 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +242385 wrapper-scope +modifier-scope +242390 modifier-scope +modifier-scope +242393 wrapper-clause-scope +242396 wrapper-clause-scope +wrapper-clause-scope +242400 modifier-scope +242402 conjuncted-wg +conjuncted-wg +conjuncted-wg +242406 wrapper-scope +242408 wrapper-clause-scope +group +242411 wrapper-clause-scope +242413 wrapper-clause-scope +242415 wrapper-scope +wrapper-scope +242418 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +group +modifier-scope +modifier-scope +242430 conjuncted-wg +wrapper-clause-scope +242434 wrapper-scope +conjuncted-wg +242437 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +242444 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +242449 wrapper-clause-scope +242452 wrapper-clause-scope +242454 conjuncted-wg +242456 wrapper-clause-scope +242459 wrapper-clause-scope +242461 wrapper-clause-scope +242463 wrapper-clause-scope +242465 wrapper-scope +modifier-scope +242468 wrapper-clause-scope +242472 wrapper-clause-scope +group +242475 wrapper-scope +modifier-scope +242478 modifier-scope +wrapper-scope +wrapper-clause-scope +242483 conjuncted-wg +242485 wrapper-scope +wrapper-clause-scope +242489 wrapper-clause-scope +242491 wrapper-clause-scope +242493 modifier-scope +wrapper-scope +242496 wrapper-clause-scope +242499 wrapper-clause-scope +242502 conjuncted-wg +modifier-scope +wrapper-scope +242506 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +242513 modifier-scope +modifier-scope +wrapper-scope +group +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +242525 group +242527 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +242533 conjuncted-wg +242536 conjuncted-wg +242538 conjuncted-wg +242540 modifier-scope +wrapper-scope +wrapper-clause-scope +242544 wrapper-scope +modifier-scope +242548 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +242554 wrapper-scope +wrapper-scope +wrapper-clause-scope +242561 modifier-scope +conjuncted-wg +242564 modifier-scope +conjuncted-wg +242567 wrapper-scope +wrapper-clause-scope +242570 group +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +242577 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +242581 wrapper-scope +242583 apposition-group +modifier-scope +modifier-scope +242588 wrapper-scope +conjuncted-wg +242591 wrapper-scope +242593 wrapper-clause-scope +group +group +wrapper-clause-scope +242598 modifier-scope +wrapper-scope +wrapper-clause-scope +242602 modifier-scope +modifier-scope +wrapper-clause-scope +242606 modifier-scope +modifier-scope +wrapper-clause-scope +242610 modifier-scope +242612 conjuncted-wg +242615 modifier-scope +modifier-scope +group +242619 modifier-scope +242621 modifier-scope +modifier-scope +242624 modifier-scope +242628 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +242633 modifier-scope +242635 group +242637 modifier-scope +242639 modifier-scope +modifier-scope +242644 wrapper-scope +242646 wrapper-scope +group +242651 wrapper-scope +modifier-scope +wrapper-clause-scope +242655 conjuncted-wg +242658 modifier-scope +242660 wrapper-scope +modifier-scope +242663 wrapper-clause-scope +242666 wrapper-clause-scope +242669 wrapper-scope +242671 conjuncted-wg +modifier-scope +242674 wrapper-clause-scope +group +242678 modifier-scope +modifier-scope +conjuncted-wg +242682 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +242690 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +242696 conjuncted-wg +conjuncted-wg +conjuncted-wg +242700 modifier-scope +wrapper-clause-scope +242703 group +wrapper-scope +modifier-scope +group +242708 wrapper-clause-scope +242711 modifier-scope +wrapper-clause-scope +242714 wrapper-clause-scope +group +242717 wrapper-scope +modifier-scope +modifier-scope +242721 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +242727 conjuncted-wg +modifier-scope +modifier-scope +242731 wrapper-clause-scope +242733 wrapper-clause-scope +242735 wrapper-scope +242737 conjuncted-wg +wrapper-clause-scope +242740 conjuncted-wg +wrapper-clause-scope +242743 wrapper-scope +modifier-scope +242747 wrapper-scope +242749 conjuncted-wg +wrapper-clause-scope +242752 group +242754 conjuncted-wg +modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +modifier-clause-scope +242761 conjuncted-wg +242765 wrapper-scope +wrapper-clause-scope +242768 wrapper-scope +242770 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +group +242777 wrapper-scope +242779 wrapper-scope +242781 wrapper-clause-scope +group +wrapper-clause-scope +242785 wrapper-scope +modifier-scope +modifier-scope +242789 conjuncted-wg +modifier-scope +modifier-scope +242794 conjuncted-wg +242796 modifier-scope +242798 wrapper-clause-scope +242801 modifier-scope +modifier-scope +conjuncted-wg +242806 wrapper-clause-scope +242808 wrapper-scope +group +242811 wrapper-clause-scope +242814 modifier-scope +wrapper-scope +242817 wrapper-clause-scope +group +242820 modifier-scope +242822 modifier-scope +wrapper-scope +wrapper-clause-scope +group +242827 modifier-scope +modifier-scope +242830 modifier-scope +group +242833 wrapper-clause-scope +242835 modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +242842 wrapper-scope +wrapper-scope +modifier-scope +242846 wrapper-clause-scope +242848 conjuncted-wg +242851 wrapper-clause-scope +wrapper-clause-scope +242854 modifier-scope +wrapper-scope +conjuncted-wg +242858 wrapper-scope +wrapper-clause-scope +242861 modifier-scope +242863 wrapper-clause-scope +242866 group +242868 modifier-scope +modifier-scope +242871 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +242883 wrapper-scope +modifier-scope +conjuncted-wg +group +242888 wrapper-clause-scope +242890 wrapper-clause-scope +242893 wrapper-clause-scope +242895 modifier-scope +242897 wrapper-clause-scope +242899 modifier-scope +242901 conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-clause-scope +242907 wrapper-scope +242909 wrapper-clause-scope +242911 wrapper-clause-scope +group +242917 wrapper-clause-scope +group +242921 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +242926 modifier-scope +wrapper-clause-scope +242929 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +242934 modifier-scope +wrapper-clause-scope +242937 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +242946 modifier-scope +modifier-scope +wrapper-scope +242952 modifier-scope +242954 conjuncted-wg +242956 conjuncted-wg +242959 group +242961 modifier-scope +242963 modifier-scope +modifier-scope +242966 modifier-scope +242968 wrapper-clause-scope +242970 modifier-scope +group +wrapper-clause-scope +242975 modifier-scope +conjuncted-wg +242978 wrapper-scope +group +conjuncted-wg +242982 wrapper-scope +wrapper-clause-scope +242985 modifier-scope +wrapper-scope +242988 group +wrapper-clause-scope +242991 modifier-scope +242993 wrapper-scope +242996 group +242999 wrapper-scope +modifier-scope +243002 modifier-scope +243004 modifier-scope +wrapper-scope +243007 wrapper-scope +243009 wrapper-scope +243011 modifier-scope +243013 wrapper-scope +group +modifier-scope +wrapper-scope +243018 wrapper-clause-scope +243021 wrapper-scope +modifier-scope +243024 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +group +243031 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +243035 modifier-clause-scope +modifier-clause-scope +apposition-group +group +group +modifier-scope +modifier-scope +243044 wrapper-scope +modifier-scope +conjuncted-wg +243048 wrapper-clause-scope +243051 conjuncted-wg +243053 wrapper-scope +243055 group +group +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +243073 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +243082 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +243087 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +243093 group +wrapper-clause-scope +243097 conjuncted-wg +243100 wrapper-clause-scope +243103 wrapper-scope +wrapper-scope +group +243111 wrapper-clause-scope +group +243116 conjuncted-wg +243118 modifier-scope +conjuncted-wg +243121 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +243134 wrapper-clause-scope +243138 wrapper-clause-scope +group +wrapper-clause-scope +243143 modifier-scope +modifier-scope +243146 wrapper-clause-scope +243149 wrapper-scope +243151 modifier-scope +243156 modifier-scope +conjuncted-wg +243159 wrapper-clause-scope +group +243162 wrapper-clause-scope +243165 wrapper-clause-scope +group +243170 conjuncted-wg +243174 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +243180 modifier-scope +modifier-scope +243184 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +243189 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +243194 wrapper-clause-scope +243196 modifier-scope +243198 wrapper-clause-scope +243200 modifier-scope +modifier-scope +wrapper-scope +243204 wrapper-scope +apposition-group +group +group +group +243210 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +243225 modifier-scope +243227 wrapper-clause-scope +243230 group +modifier-scope +modifier-scope +243234 conjuncted-wg +modifier-scope +243237 conjuncted-wg +wrapper-scope +243241 group +243244 conjuncted-wg +243247 modifier-scope +wrapper-scope +243253 modifier-scope +243255 modifier-scope +243257 apposition-group +243259 wrapper-scope +modifier-scope +wrapper-scope +243263 conjuncted-wg +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +243270 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243276 wrapper-scope +243282 modifier-scope +modifier-scope +modifier-scope +243287 modifier-scope +243291 conjuncted-wg +243293 wrapper-scope +243295 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243304 wrapper-clause-scope +243306 group +modifier-scope +group +modifier-scope +wrapper-clause-scope +243312 modifier-scope +243314 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +group +243324 modifier-scope +243327 group +243335 wrapper-clause-scope +243337 conjuncted-wg +wrapper-clause-scope +243345 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +243351 wrapper-clause-scope +243353 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +243358 wrapper-clause-scope +243360 wrapper-scope +wrapper-clause-scope +243363 wrapper-clause-scope +243365 wrapper-scope +243368 wrapper-scope +conjuncted-wg +243373 wrapper-clause-scope +243375 wrapper-scope +wrapper-clause-scope +243380 wrapper-scope +243389 wrapper-scope +conjuncted-wg +wrapper-scope +group +243394 conjuncted-wg +243396 conjuncted-wg +243399 conjuncted-wg +243401 conjuncted-wg +243405 wrapper-scope +wrapper-clause-scope +243409 wrapper-clause-scope +243412 modifier-scope +modifier-scope +243415 wrapper-clause-scope +243419 modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +243424 wrapper-scope +243426 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243433 conjuncted-wg +wrapper-clause-scope +243436 modifier-scope +wrapper-clause-scope +243439 modifier-scope +wrapper-scope +243442 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +243448 group +wrapper-clause-scope +243451 modifier-scope +243453 group +modifier-scope +wrapper-clause-scope +243457 wrapper-scope +modifier-scope +243460 wrapper-clause-scope +243463 conjuncted-wg +243468 wrapper-scope +group +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +243478 wrapper-clause-scope +243480 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +group +243493 wrapper-clause-scope +243495 modifier-scope +modifier-scope +243498 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +243507 modifier-scope +wrapper-scope +group +243512 modifier-scope +modifier-scope +wrapper-scope +243518 modifier-scope +modifier-scope +conjuncted-wg +243522 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +243528 modifier-scope +modifier-scope +group +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +243539 group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243554 conjuncted-wg +wrapper-scope +243559 conjuncted-wg +wrapper-scope +group +modifier-scope +243565 group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +243573 wrapper-scope +243576 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +conjuncted-wg +modifier-clause-scope +apposition-group +243585 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +wrapper-clause-scope +243594 wrapper-scope +modifier-scope +243597 wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +group +modifier-scope +wrapper-clause-scope +243606 wrapper-scope +wrapper-clause-scope +group +243610 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +243616 conjuncted-wg +wrapper-clause-scope +243619 modifier-scope +wrapper-scope +wrapper-scope +apposition-group +modifier-scope +243626 conjuncted-wg +243628 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +243634 wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +modifier-scope +243641 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +243649 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +243655 wrapper-scope +modifier-scope +wrapper-scope +243659 modifier-scope +243661 wrapper-scope +243663 conjuncted-wg +wrapper-clause-scope +243666 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243673 conjuncted-wg +modifier-scope +243676 modifier-scope +wrapper-scope +modifier-scope +group +243682 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +243687 modifier-scope +modifier-scope +modifier-scope +243691 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243701 conjuncted-wg +243703 wrapper-scope +apposition-group +group +modifier-scope +wrapper-clause-scope +243709 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243719 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +243725 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +apposition-group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +243735 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +243743 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +243751 wrapper-scope +group +modifier-scope +modifier-scope +243756 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +group +243763 modifier-scope +conjuncted-wg +modifier-scope +group +243768 conjuncted-wg +conjuncted-wg +243771 conjuncted-wg +conjuncted-wg +243776 modifier-scope +243778 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +243783 wrapper-scope +conjuncted-wg +243786 modifier-scope +wrapper-scope +243789 wrapper-clause-scope +243792 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +243799 group +modifier-scope +wrapper-scope +modifier-scope +243805 wrapper-scope +243809 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +243815 wrapper-scope +modifier-scope +wrapper-scope +243819 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +243825 wrapper-scope +243827 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +243836 wrapper-clause-scope +243841 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +243849 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243858 conjuncted-wg +conjuncted-wg +wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +243864 modifier-scope +243867 conjuncted-wg +243869 conjuncted-wg +243871 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +group +modifier-clause-scope +apposition-group +243879 wrapper-clause-scope +243881 wrapper-scope +modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +243888 modifier-scope +group +243893 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +243898 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +243911 apposition-group +modifier-scope +243914 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +243922 wrapper-scope +243924 group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-clause-scope +243933 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +243939 wrapper-clause-scope +243941 apposition-group +modifier-scope +modifier-scope +243945 modifier-scope +243948 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +243958 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +243968 modifier-scope +conjuncted-wg +243971 modifier-scope +wrapper-scope +modifier-scope +243975 modifier-scope +wrapper-scope +243978 wrapper-scope +243980 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +243986 wrapper-scope +wrapper-scope +243989 wrapper-clause-scope +243993 modifier-scope +wrapper-scope +243996 conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +244001 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +244006 modifier-scope +modifier-scope +244010 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +apposition-group +244026 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +244032 conjuncted-wg +244035 wrapper-clause-scope +244037 wrapper-scope +244039 wrapper-clause-scope +group +wrapper-clause-scope +244043 modifier-scope +modifier-scope +wrapper-clause-scope +244047 modifier-scope +wrapper-scope +244051 conjuncted-wg +244054 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +244064 wrapper-clause-scope +group +wrapper-clause-scope +244068 group +modifier-scope +modifier-scope +244072 wrapper-scope +244076 conjuncted-wg +wrapper-scope +conjuncted-wg +244080 modifier-scope +wrapper-clause-scope +244084 wrapper-scope +244086 group +group +244089 wrapper-clause-scope +244091 wrapper-clause-scope +244093 wrapper-scope +modifier-scope +244096 conjuncted-wg +modifier-scope +244099 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +wrapper-clause-scope +244113 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +244120 wrapper-scope +wrapper-scope +apposition-group +apposition-group +244125 modifier-scope +modifier-scope +modifier-scope +244129 conjuncted-wg +244131 wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +244145 wrapper-scope +apposition-group +modifier-scope +244149 wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +244159 wrapper-scope +244161 wrapper-clause-scope +244166 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +244174 modifier-scope +modifier-scope +244177 apposition-group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +244184 modifier-scope +conjuncted-wg +244187 wrapper-scope +modifier-scope +244190 modifier-scope +244195 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +244200 wrapper-scope +244202 wrapper-clause-scope +244205 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-clause-scope +apposition-group +244213 conjuncted-wg +conjuncted-wg +244217 modifier-clause-scope +wrapper-clause-scope +244220 conjuncted-wg +244222 modifier-scope +modifier-scope +244226 group +244228 wrapper-scope +244230 conjuncted-wg +modifier-scope +modifier-scope +244237 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +244244 apposition-group +modifier-scope +244247 wrapper-scope +modifier-scope +modifier-scope +244251 wrapper-scope +modifier-scope +244254 conjuncted-wg +244256 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +244261 group +group +wrapper-clause-scope +244265 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +244271 wrapper-clause-scope +244273 wrapper-scope +244277 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +244287 conjuncted-wg +modifier-scope +244290 wrapper-clause-scope +244292 modifier-scope +wrapper-scope +244295 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +244304 wrapper-clause-scope +244306 wrapper-clause-scope +244308 modifier-scope +244310 modifier-scope +244312 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +244319 modifier-scope +244321 modifier-scope +wrapper-scope +modifier-scope +244325 wrapper-clause-scope +244328 conjuncted-wg +244330 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +244338 wrapper-clause-scope +244340 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +244348 wrapper-clause-scope +244350 group +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +apposition-group +244358 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +244364 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +244371 modifier-scope +244373 wrapper-scope +244375 wrapper-clause-scope +244377 modifier-scope +group +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +244386 wrapper-scope +244389 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +244396 group +modifier-scope +wrapper-clause-scope +244400 wrapper-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +244405 wrapper-clause-scope +244408 group +244410 conjuncted-wg +244412 conjuncted-wg +group +group +conjuncted-wg +244418 conjuncted-wg +244420 wrapper-scope +244422 wrapper-clause-scope +244424 wrapper-scope +modifier-clause-scope +modifier-scope +modifier-scope +244429 conjuncted-wg +244431 group +modifier-scope +244435 conjuncted-wg +244437 wrapper-clause-scope +244439 wrapper-scope +244442 wrapper-clause-scope +244444 modifier-scope +modifier-scope +modifier-scope +244448 wrapper-clause-scope +244450 wrapper-scope +modifier-scope +modifier-clause-scope +apposition-group +244455 modifier-scope +modifier-scope +244458 wrapper-clause-scope +244461 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +244471 wrapper-clause-scope +244475 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +244480 wrapper-scope +modifier-scope +244483 conjuncted-wg +group +modifier-scope +244487 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +244494 wrapper-clause-scope +244497 modifier-clause-scope +apposition-group +wrapper-clause-scope +244502 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +group +244509 group +modifier-scope +wrapper-scope +244515 modifier-scope +modifier-scope +wrapper-clause-scope +244519 wrapper-scope +244523 modifier-scope +244525 modifier-scope +conjuncted-wg +244528 wrapper-scope +244530 group +244533 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +244538 wrapper-scope +244542 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +244550 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +244557 wrapper-scope +wrapper-clause-scope +244561 wrapper-scope +modifier-scope +244564 modifier-scope +244567 wrapper-clause-scope +244569 wrapper-scope +wrapper-scope +244572 modifier-scope +conjuncted-wg +modifier-scope +244576 wrapper-clause-scope +244578 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +244584 group +modifier-scope +244587 wrapper-clause-scope +244590 wrapper-clause-scope +244593 conjuncted-wg +244598 modifier-scope +244600 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +244605 wrapper-clause-scope +244607 modifier-scope +wrapper-scope +244611 modifier-scope +244613 wrapper-scope +wrapper-scope +group +244617 modifier-scope +wrapper-scope +wrapper-clause-scope +244621 modifier-scope +modifier-scope +modifier-scope +244625 apposition-group +modifier-scope +modifier-scope +modifier-scope +244630 wrapper-scope +wrapper-clause-scope +244633 wrapper-clause-scope +244638 wrapper-scope +wrapper-scope +modifier-scope +244642 modifier-scope +244645 modifier-scope +modifier-scope +wrapper-scope +244652 modifier-scope +244655 modifier-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +244663 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-scope +244669 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +244675 modifier-scope +wrapper-scope +conjuncted-wg +244679 modifier-scope +modifier-scope +wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +244687 conjuncted-wg +244689 wrapper-scope +244692 modifier-scope +modifier-scope +244696 group +244698 group +modifier-scope +modifier-scope +conjuncted-wg +apposition-group +group +modifier-scope +modifier-scope +244708 wrapper-scope +wrapper-clause-scope +244711 wrapper-scope +244713 conjuncted-wg +group +wrapper-clause-scope +244717 wrapper-clause-scope +244719 wrapper-scope +244722 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +244730 group +group +modifier-scope +wrapper-scope +modifier-scope +group +244737 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +244743 conjuncted-wg +244745 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +244750 wrapper-clause-scope +244752 wrapper-clause-scope +244754 modifier-scope +wrapper-scope +244757 conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +modifier-scope +wrapper-scope +244766 group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +244774 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +244784 wrapper-clause-scope +group +wrapper-clause-scope +244788 wrapper-scope +modifier-scope +group +244793 wrapper-clause-scope +244795 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +244802 modifier-scope +wrapper-scope +modifier-scope +244806 wrapper-clause-scope +244808 group +244810 modifier-clause-scope +apposition-group +244813 wrapper-scope +wrapper-clause-scope +244818 modifier-scope +modifier-scope +modifier-scope +modifier-scope +244824 modifier-scope +modifier-scope +244828 modifier-scope +wrapper-scope +244833 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +244840 group +conjuncted-wg +group +group +244847 conjuncted-wg +244849 group +244851 modifier-scope +wrapper-scope +modifier-scope +244855 wrapper-scope +modifier-scope +modifier-scope +244859 modifier-scope +244861 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +244881 conjuncted-wg +244883 modifier-scope +modifier-scope +244886 modifier-clause-scope +244888 wrapper-scope +modifier-scope +wrapper-clause-scope +244892 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-scope +modifier-scope +244900 wrapper-scope +conjuncted-wg +wrapper-scope +244904 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +244910 wrapper-scope +wrapper-scope +244913 wrapper-clause-scope +244915 modifier-scope +244917 conjuncted-wg +modifier-scope +244920 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +244928 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +244933 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +244939 wrapper-clause-scope +244942 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +244948 modifier-scope +conjuncted-wg +conjuncted-wg +244952 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +244964 wrapper-clause-scope +244966 wrapper-scope +244969 modifier-scope +wrapper-scope +conjuncted-wg +244973 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +244979 modifier-clause-scope +244982 conjuncted-wg +conjuncted-wg +244985 wrapper-scope +modifier-scope +group +modifier-clause-scope +apposition-group +modifier-scope +244992 wrapper-scope +modifier-scope +group +wrapper-clause-scope +244997 wrapper-scope +group +modifier-scope +wrapper-clause-scope +245003 wrapper-clause-scope +245006 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +group +245017 conjuncted-wg +wrapper-scope +wrapper-clause-scope +245021 wrapper-scope +modifier-scope +modifier-scope +245025 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +245032 wrapper-clause-scope +245035 modifier-scope +modifier-scope +245038 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +group +wrapper-clause-scope +245047 wrapper-scope +modifier-scope +245050 modifier-scope +245052 wrapper-clause-scope +245054 group +group +wrapper-clause-scope +245058 modifier-scope +modifier-scope +245061 wrapper-clause-scope +group +245065 wrapper-scope +modifier-scope +wrapper-clause-scope +245069 conjuncted-wg +group +245072 wrapper-scope +modifier-scope +245075 conjuncted-wg +245077 wrapper-scope +245079 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +245085 wrapper-scope +wrapper-clause-scope +245088 modifier-scope +245090 wrapper-scope +modifier-scope +245093 group +group +wrapper-clause-scope +wrapper-clause-scope +245098 modifier-scope +modifier-scope +245103 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +245114 wrapper-clause-scope +245118 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +245126 conjuncted-wg +wrapper-scope +wrapper-clause-scope +245130 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +245136 group +245139 conjuncted-wg +modifier-scope +245142 modifier-scope +245144 conjuncted-wg +conjuncted-wg +group +wrapper-clause-scope +245149 wrapper-clause-scope +245151 wrapper-clause-scope +245153 modifier-scope +modifier-scope +wrapper-clause-scope +245157 modifier-scope +245160 conjuncted-wg +conjuncted-wg +wrapper-scope +wrapper-clause-scope +245165 group +modifier-scope +wrapper-clause-scope +245169 wrapper-scope +modifier-scope +modifier-scope +245173 conjuncted-wg +245175 wrapper-clause-scope +245178 wrapper-scope +modifier-scope +modifier-scope +245183 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +apposition-group +apposition-group +wrapper-clause-scope +245194 modifier-scope +245196 wrapper-scope +group +wrapper-clause-scope +245201 wrapper-clause-scope +245205 modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +245212 wrapper-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +group +245219 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +245226 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +245234 conjuncted-wg +group +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +245241 conjuncted-wg +245243 conjuncted-wg +group +245246 modifier-scope +245249 modifier-scope +wrapper-clause-scope +245252 wrapper-scope +wrapper-clause-scope +245255 modifier-scope +modifier-scope +245258 wrapper-clause-scope +245260 wrapper-scope +modifier-scope +wrapper-scope +245264 wrapper-clause-scope +245268 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +245274 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +245279 wrapper-clause-scope +245282 wrapper-scope +wrapper-clause-scope +245286 group +245288 conjuncted-wg +conjuncted-wg +conjuncted-wg +245292 modifier-scope +245294 wrapper-clause-scope +245297 modifier-scope +245299 conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-clause-scope +245305 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +245314 wrapper-clause-scope +245317 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +245322 wrapper-clause-scope +245327 wrapper-scope +conjuncted-wg +245330 group +245332 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +wrapper-clause-scope +245347 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +245353 wrapper-scope +modifier-scope +modifier-scope +245357 wrapper-clause-scope +245359 wrapper-clause-scope +245361 wrapper-scope +245363 wrapper-clause-scope +group +wrapper-clause-scope +wrapper-clause-scope +245368 wrapper-scope +group +245371 wrapper-clause-scope +245374 wrapper-clause-scope +wrapper-clause-scope +245378 conjuncted-wg +245382 wrapper-scope +245384 wrapper-scope +wrapper-clause-scope +245387 modifier-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +245393 wrapper-clause-scope +245395 conjuncted-wg +245397 wrapper-scope +modifier-scope +modifier-scope +245401 wrapper-clause-scope +group +group +245406 wrapper-scope +wrapper-scope +conjuncted-wg +245411 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +245418 modifier-scope +modifier-scope +245422 wrapper-clause-scope +245424 modifier-scope +245427 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +245434 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +245440 wrapper-clause-scope +245442 wrapper-scope +245444 wrapper-clause-scope +245447 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +245455 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +245461 conjuncted-wg +wrapper-scope +wrapper-clause-scope +245466 modifier-scope +modifier-scope +conjuncted-wg +245470 modifier-scope +modifier-scope +modifier-scope +modifier-scope +245475 wrapper-clause-scope +245478 modifier-scope +modifier-scope +modifier-scope +245482 conjuncted-wg +conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +245491 wrapper-clause-scope +245493 modifier-scope +245495 conjuncted-wg +modifier-scope +modifier-scope +245499 wrapper-scope +conjuncted-wg +wrapper-scope +wrapper-clause-scope +245504 modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +245509 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +245516 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +245529 wrapper-clause-scope +245533 conjuncted-wg +wrapper-scope +group +wrapper-clause-scope +245538 wrapper-clause-scope +245540 wrapper-scope +wrapper-clause-scope +245545 conjuncted-wg +245547 wrapper-clause-scope +245551 wrapper-clause-scope +245554 modifier-scope +wrapper-scope +group +modifier-scope +245559 wrapper-clause-scope +group +245562 modifier-scope +modifier-scope +245565 apposition-group +modifier-scope +modifier-scope +group +group +245571 wrapper-scope +modifier-scope +245574 modifier-scope +group +245577 modifier-scope +modifier-scope +wrapper-scope +245581 conjuncted-wg +group +245584 wrapper-scope +modifier-scope +wrapper-clause-scope +245588 modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +245593 modifier-scope +wrapper-clause-scope +245597 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +245605 wrapper-scope +modifier-scope +wrapper-clause-scope +245610 conjuncted-wg +245613 wrapper-clause-scope +group +245616 modifier-scope +wrapper-scope +245619 wrapper-scope +245621 wrapper-clause-scope +245623 wrapper-clause-scope +245625 group +group +modifier-scope +wrapper-clause-scope +245630 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +245636 wrapper-clause-scope +245638 wrapper-scope +modifier-scope +245641 wrapper-clause-scope +245643 modifier-scope +wrapper-scope +wrapper-clause-scope +245648 wrapper-clause-scope +245650 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +245658 wrapper-clause-scope +245664 conjuncted-wg +245667 conjuncted-wg +245669 modifier-scope +conjuncted-wg +245672 modifier-scope +modifier-scope +wrapper-clause-scope +245676 wrapper-clause-scope +245679 wrapper-scope +modifier-scope +conjuncted-wg +245683 modifier-scope +245685 wrapper-clause-scope +245689 wrapper-scope +wrapper-clause-scope +245692 wrapper-clause-scope +245694 wrapper-clause-scope +245696 modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +245702 wrapper-clause-scope +group +wrapper-clause-scope +245706 wrapper-clause-scope +245709 conjuncted-wg +245711 modifier-scope +wrapper-clause-scope +245714 wrapper-scope +modifier-scope +wrapper-scope +245718 wrapper-clause-scope +group +245721 wrapper-scope +modifier-scope +wrapper-clause-scope +245725 group +group +wrapper-clause-scope +245729 wrapper-clause-scope +245731 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +245738 wrapper-clause-scope +245741 modifier-scope +modifier-scope +245744 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +245754 modifier-scope +modifier-scope +wrapper-scope +245758 group +group +wrapper-clause-scope +245762 wrapper-clause-scope +245764 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +245772 wrapper-clause-scope +245774 wrapper-scope +245776 wrapper-clause-scope +245778 wrapper-scope +modifier-scope +modifier-scope +245782 wrapper-clause-scope +245785 wrapper-scope +245787 modifier-scope +conjuncted-wg +modifier-scope +245791 wrapper-clause-scope +245793 wrapper-clause-scope +245795 wrapper-clause-scope +245797 wrapper-scope +modifier-scope +245800 group +wrapper-clause-scope +245804 conjuncted-wg +245807 modifier-scope +wrapper-clause-scope +245810 modifier-scope +wrapper-clause-scope +245813 wrapper-scope +conjuncted-wg +245816 modifier-scope +245818 wrapper-clause-scope +245822 wrapper-scope +wrapper-clause-scope +245825 modifier-scope +wrapper-clause-scope +245828 wrapper-clause-scope +245830 modifier-scope +245832 modifier-scope +conjuncted-wg +modifier-scope +245838 conjuncted-wg +245840 wrapper-clause-scope +wrapper-clause-scope +group +group +245845 wrapper-clause-scope +245847 modifier-scope +245850 conjuncted-wg +245853 wrapper-clause-scope +245856 wrapper-clause-scope +245858 conjuncted-wg +245860 wrapper-clause-scope +245863 wrapper-clause-scope +245868 modifier-scope +245870 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +245877 modifier-scope +wrapper-scope +245880 wrapper-scope +modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +group +wrapper-clause-scope +245890 wrapper-scope +wrapper-clause-scope +group +245894 conjuncted-wg +245896 conjuncted-wg +245899 wrapper-scope +245901 wrapper-clause-scope +245904 conjuncted-wg +245906 modifier-scope +wrapper-clause-scope +245910 wrapper-clause-scope +245915 wrapper-clause-scope +245918 wrapper-scope +conjuncted-wg +245921 wrapper-scope +conjuncted-wg +245924 conjuncted-wg +245926 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +245932 wrapper-scope +245934 wrapper-clause-scope +245937 group +245939 modifier-scope +245941 modifier-scope +245943 modifier-scope +245945 wrapper-scope +245948 group +245950 wrapper-scope +245952 modifier-scope +245954 wrapper-scope +conjuncted-wg +wrapper-scope +245958 group +245962 wrapper-scope +245964 wrapper-clause-scope +245966 modifier-scope +wrapper-scope +group +wrapper-scope +245972 group +245974 modifier-scope +245976 conjuncted-wg +group +245980 modifier-scope +245982 wrapper-scope +modifier-scope +modifier-scope +245986 wrapper-clause-scope +245989 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +245995 modifier-scope +modifier-scope +245998 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +246012 apposition-group +wrapper-clause-scope +246019 wrapper-scope +246022 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +246028 modifier-scope +246030 modifier-scope +modifier-scope +modifier-scope +246035 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +246045 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +246052 group +modifier-scope +conjuncted-wg +group +group +246060 conjuncted-wg +wrapper-scope +246063 group +conjuncted-wg +group +group +246072 modifier-scope +wrapper-scope +wrapper-clause-scope +246076 wrapper-clause-scope +group +246080 modifier-scope +modifier-scope +conjuncted-wg +246084 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +246093 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +246101 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +wrapper-scope +apposition-group +modifier-scope +246109 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +246116 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +246124 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +246129 wrapper-scope +wrapper-clause-scope +group +246133 wrapper-scope +246136 wrapper-clause-scope +246138 conjuncted-wg +246140 group +wrapper-clause-scope +246143 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +246159 apposition-group +246161 wrapper-clause-scope +246163 conjuncted-wg +wrapper-clause-scope +246166 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +246172 group +modifier-scope +246175 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +246188 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +246193 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +246197 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +246202 modifier-scope +modifier-scope +wrapper-scope +246209 wrapper-scope +wrapper-scope +246213 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +246218 modifier-scope +246220 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +246226 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +246234 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +246240 modifier-scope +conjuncted-wg +group +group +246245 wrapper-clause-scope +246248 wrapper-scope +246250 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +246265 wrapper-scope +modifier-scope +conjuncted-wg +246269 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +246281 modifier-scope +modifier-scope +modifier-scope +246286 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +246293 modifier-scope +conjuncted-wg +246296 group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +246307 conjuncted-wg +wrapper-scope +modifier-clause-scope +246312 conjuncted-wg +wrapper-clause-scope +246315 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +246320 wrapper-clause-scope +246327 wrapper-scope +246329 wrapper-clause-scope +246331 wrapper-clause-scope +246333 wrapper-scope +wrapper-clause-scope +246336 wrapper-scope +modifier-scope +modifier-scope +246340 wrapper-clause-scope +246342 modifier-scope +modifier-scope +modifier-scope +group +246347 wrapper-clause-scope +246349 wrapper-clause-scope +246351 wrapper-scope +246353 wrapper-clause-scope +246355 apposition-group +apposition-group +modifier-scope +246360 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +246368 modifier-scope +modifier-scope +modifier-scope +modifier-scope +246373 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +246379 wrapper-scope +modifier-scope +246382 conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +246391 wrapper-scope +246393 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +246400 wrapper-clause-scope +246402 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +246408 modifier-scope +wrapper-clause-scope +246411 modifier-clause-scope +wrapper-clause-scope +group +246415 modifier-scope +246417 modifier-scope +246419 wrapper-clause-scope +group +246423 modifier-scope +wrapper-scope +246426 modifier-clause-scope +246428 wrapper-scope +wrapper-clause-scope +246431 modifier-scope +wrapper-scope +wrapper-scope +wrapper-scope +246436 modifier-scope +conjuncted-wg +modifier-scope +246440 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +246452 wrapper-clause-scope +wrapper-clause-scope +246457 conjuncted-wg +246459 modifier-clause-scope +apposition-group +246463 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +246469 wrapper-clause-scope +246473 modifier-scope +group +modifier-scope +modifier-scope +group +conjuncted-wg +group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +246487 conjuncted-wg +246490 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +246498 wrapper-scope +modifier-scope +modifier-scope +246502 conjuncted-wg +246506 modifier-scope +wrapper-scope +246509 wrapper-clause-scope +group +246513 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +246518 wrapper-clause-scope +246520 modifier-scope +wrapper-scope +conjuncted-wg +wrapper-clause-scope +246525 wrapper-scope +modifier-scope +modifier-scope +246529 conjuncted-wg +246531 wrapper-clause-scope +246533 modifier-scope +246535 wrapper-clause-scope +246537 apposition-group +modifier-scope +246541 conjuncted-wg +246543 wrapper-scope +modifier-scope +246546 wrapper-clause-scope +246548 wrapper-scope +wrapper-scope +wrapper-clause-scope +246554 conjuncted-wg +conjuncted-wg +246557 wrapper-clause-scope +246559 modifier-scope +modifier-scope +modifier-scope +246563 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +246573 wrapper-clause-scope +246576 wrapper-scope +modifier-scope +group +modifier-scope +group +246582 wrapper-scope +modifier-clause-scope +modifier-clause-scope +246587 conjuncted-wg +246589 wrapper-scope +modifier-clause-scope +apposition-group +246593 wrapper-scope +246595 wrapper-clause-scope +group +246600 wrapper-clause-scope +group +246604 wrapper-scope +conjuncted-wg +246607 wrapper-scope +246609 wrapper-scope +246611 conjuncted-wg +246613 conjuncted-wg +wrapper-scope +wrapper-clause-scope +246617 modifier-scope +246619 group +wrapper-clause-scope +246622 wrapper-clause-scope +246624 wrapper-scope +wrapper-clause-scope +246628 wrapper-clause-scope +group +wrapper-clause-scope +wrapper-clause-scope +246633 wrapper-scope +246635 wrapper-clause-scope +246637 wrapper-clause-scope +246641 wrapper-clause-scope +246644 wrapper-scope +group +246649 wrapper-clause-scope +246651 modifier-scope +246653 conjuncted-wg +wrapper-scope +group +group +wrapper-clause-scope +246660 wrapper-scope +modifier-scope +modifier-scope +246664 wrapper-clause-scope +246669 wrapper-clause-scope +group +group +wrapper-clause-scope +246674 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +246681 wrapper-clause-scope +246684 wrapper-clause-scope +group +group +wrapper-clause-scope +246691 wrapper-clause-scope +246694 wrapper-clause-scope +246696 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +246706 modifier-scope +wrapper-scope +modifier-scope +246711 modifier-scope +modifier-scope +modifier-scope +modifier-scope +246716 wrapper-scope +modifier-scope +246722 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +246732 group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +246739 group +modifier-scope +conjuncted-wg +group +group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +246752 group +wrapper-scope +246755 group +conjuncted-wg +group +group +modifier-scope +modifier-scope +246762 group +wrapper-clause-scope +246766 wrapper-scope +246768 wrapper-scope +wrapper-clause-scope +246773 conjuncted-wg +246775 apposition-group +246777 conjuncted-wg +modifier-scope +246781 conjuncted-wg +246783 group +modifier-scope +modifier-scope +wrapper-scope +246788 wrapper-clause-scope +246790 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-scope +apposition-group +246797 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +246804 wrapper-scope +246809 conjuncted-wg +246811 conjuncted-wg +246813 wrapper-scope +246815 wrapper-clause-scope +246817 wrapper-clause-scope +246819 modifier-scope +wrapper-clause-scope +246824 group +246828 group +246830 conjuncted-wg +246832 conjuncted-wg +246834 conjuncted-wg +246836 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +246840 modifier-scope +modifier-clause-scope +modifier-clause-scope +246844 modifier-clause-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +246856 group +wrapper-clause-scope +246859 group +group +modifier-scope +modifier-scope +wrapper-clause-scope +246866 wrapper-scope +246868 modifier-scope +246870 conjuncted-wg +conjuncted-wg +246873 wrapper-clause-scope +246875 group +246877 wrapper-clause-scope +246880 wrapper-scope +conjuncted-wg +246883 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +246890 conjuncted-wg +modifier-scope +wrapper-scope +group +246896 modifier-scope +246898 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +246903 group +wrapper-scope +modifier-scope +246908 modifier-scope +246910 wrapper-clause-scope +246913 wrapper-scope +246915 wrapper-scope +group +group +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +246925 wrapper-scope +wrapper-scope +modifier-scope +246929 wrapper-clause-scope +246931 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +246938 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +246947 group +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +246954 wrapper-scope +wrapper-clause-scope +246957 wrapper-scope +modifier-scope +modifier-scope +246962 conjuncted-wg +apposition-group +modifier-scope +246968 wrapper-scope +modifier-scope +apposition-group +246972 conjuncted-wg +246975 modifier-scope +246979 wrapper-clause-scope +246982 modifier-scope +group +group +wrapper-scope +modifier-scope +wrapper-scope +246989 conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +246993 wrapper-scope +wrapper-clause-scope +246996 modifier-scope +246998 conjuncted-wg +wrapper-scope +modifier-scope +247002 conjuncted-wg +247006 conjuncted-wg +wrapper-scope +apposition-group +modifier-scope +group +modifier-scope +247014 modifier-scope +247017 conjuncted-wg +247019 wrapper-scope +modifier-scope +247022 wrapper-clause-scope +group +247026 modifier-clause-scope +group +modifier-scope +247030 conjuncted-wg +group +group +group +wrapper-clause-scope +247036 wrapper-scope +247039 modifier-scope +modifier-scope +247043 wrapper-scope +group +247046 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +247051 conjuncted-wg +247054 wrapper-clause-scope +247057 modifier-scope +wrapper-scope +modifier-scope +247061 modifier-scope +wrapper-scope +247064 conjuncted-wg +wrapper-clause-scope +247067 wrapper-scope +modifier-scope +wrapper-scope +247071 conjuncted-wg +group +wrapper-scope +247075 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +apposition-group +247082 modifier-clause-scope +247084 modifier-scope +247087 wrapper-scope +wrapper-scope +modifier-scope +247091 wrapper-clause-scope +247093 group +247096 conjuncted-wg +247099 wrapper-scope +247101 wrapper-clause-scope +247103 group +247106 conjuncted-wg +247109 conjuncted-wg +247111 modifier-scope +247113 wrapper-scope +247115 wrapper-clause-scope +group +247118 wrapper-scope +modifier-scope +wrapper-clause-scope +247122 wrapper-scope +247124 conjuncted-wg +conjuncted-wg +wrapper-scope +247129 modifier-scope +247132 wrapper-clause-scope +247134 modifier-scope +247136 wrapper-clause-scope +247139 modifier-scope +group +group +modifier-scope +modifier-scope +group +modifier-scope +group +group +247149 modifier-scope +modifier-scope +247152 wrapper-scope +wrapper-scope +modifier-scope +247156 wrapper-clause-scope +group +wrapper-clause-scope +247161 modifier-scope +modifier-scope +247164 modifier-scope +247167 wrapper-clause-scope +247170 wrapper-scope +modifier-scope +modifier-scope +247174 wrapper-clause-scope +247177 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +247182 wrapper-scope +247184 conjuncted-wg +modifier-scope +modifier-scope +247190 group +modifier-scope +247193 modifier-scope +modifier-scope +247196 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +247202 wrapper-clause-scope +group +247205 modifier-scope +247211 group +modifier-scope +modifier-scope +wrapper-scope +247217 modifier-scope +modifier-scope +247221 conjuncted-wg +modifier-scope +modifier-scope +247225 wrapper-clause-scope +247228 wrapper-clause-scope +247230 modifier-scope +conjuncted-wg +247233 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-scope +group +247243 wrapper-scope +247245 wrapper-clause-scope +group +wrapper-clause-scope +247249 wrapper-clause-scope +247253 wrapper-scope +apposition-group +modifier-scope +247257 group +modifier-clause-scope +modifier-clause-scope +247261 modifier-scope +247263 conjuncted-wg +modifier-scope +247266 wrapper-clause-scope +247268 modifier-scope +modifier-scope +modifier-scope +247272 group +247274 wrapper-scope +247276 wrapper-scope +247279 wrapper-scope +247281 wrapper-scope +247283 wrapper-scope +247285 wrapper-clause-scope +247287 modifier-scope +wrapper-clause-scope +247290 wrapper-scope +modifier-scope +modifier-scope +247295 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +247303 modifier-scope +modifier-scope +247308 apposition-group +247311 modifier-scope +wrapper-scope +modifier-clause-scope +modifier-scope +wrapper-scope +modifier-clause-scope +247318 conjuncted-wg +247320 modifier-scope +group +247324 modifier-scope +modifier-scope +conjuncted-wg +247329 wrapper-scope +wrapper-clause-scope +247332 wrapper-scope +247334 modifier-scope +conjuncted-wg +247339 modifier-scope +modifier-scope +modifier-scope +group +247344 modifier-clause-scope +modifier-clause-scope +247347 modifier-scope +conjuncted-wg +apposition-group +modifier-scope +modifier-scope +247354 wrapper-clause-scope +247356 modifier-scope +modifier-scope +247359 conjuncted-wg +247361 wrapper-clause-scope +247363 wrapper-scope +247365 wrapper-clause-scope +247368 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +247373 modifier-scope +wrapper-scope +247376 modifier-clause-scope +modifier-clause-scope +247379 modifier-scope +conjuncted-wg +wrapper-clause-scope +247385 modifier-scope +247387 conjuncted-wg +modifier-scope +modifier-scope +247391 wrapper-clause-scope +247394 wrapper-scope +247396 conjuncted-wg +247398 wrapper-scope +apposition-group +modifier-clause-scope +247403 modifier-scope +group +modifier-scope +modifier-scope +247410 conjuncted-wg +247414 modifier-scope +modifier-scope +conjuncted-wg +247418 modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +247427 group +wrapper-clause-scope +247431 group +modifier-scope +modifier-scope +modifier-scope +247437 apposition-group +modifier-scope +modifier-scope +wrapper-scope +247442 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +247449 group +247452 wrapper-scope +wrapper-clause-scope +247455 modifier-scope +modifier-scope +247458 group +247461 conjuncted-wg +modifier-scope +247464 wrapper-clause-scope +247468 conjuncted-wg +conjuncted-wg +wrapper-clause-scope +247473 group +247476 conjuncted-wg +247478 wrapper-scope +group +247481 wrapper-scope +247483 wrapper-scope +247485 wrapper-scope +wrapper-scope +modifier-scope +247490 group +modifier-scope +modifier-scope +247494 wrapper-clause-scope +247496 wrapper-clause-scope +247498 modifier-scope +247500 conjuncted-wg +247503 modifier-scope +modifier-scope +conjuncted-wg +247507 modifier-scope +247509 wrapper-clause-scope +247511 wrapper-scope +modifier-scope +247514 wrapper-clause-scope +247517 modifier-clause-scope +modifier-clause-scope +247520 conjuncted-wg +247522 wrapper-scope +conjuncted-wg +247526 modifier-scope +conjuncted-wg +modifier-scope +247530 conjuncted-wg +247532 wrapper-clause-scope +247534 wrapper-clause-scope +247539 modifier-scope +wrapper-clause-scope +247543 wrapper-clause-scope +group +wrapper-clause-scope +247547 modifier-scope +247549 conjuncted-wg +modifier-scope +247553 modifier-scope +conjuncted-wg +247558 modifier-scope +modifier-scope +modifier-scope +247562 modifier-scope +modifier-scope +247565 wrapper-scope +modifier-scope +group +wrapper-clause-scope +247570 wrapper-clause-scope +247572 wrapper-clause-scope +247574 modifier-scope +wrapper-clause-scope +247578 wrapper-clause-scope +247580 modifier-scope +modifier-scope +247583 wrapper-clause-scope +247585 modifier-scope +247587 wrapper-clause-scope +group +wrapper-clause-scope +247591 modifier-scope +247594 group +247596 wrapper-clause-scope +247598 modifier-scope +modifier-scope +247601 wrapper-clause-scope +247604 modifier-scope +247606 modifier-scope +conjuncted-wg +group +247611 modifier-scope +247613 conjuncted-wg +247615 wrapper-clause-scope +247618 wrapper-clause-scope +247621 group +247626 modifier-scope +wrapper-clause-scope +247629 wrapper-scope +247631 wrapper-clause-scope +247633 wrapper-scope +modifier-scope +247637 wrapper-clause-scope +247639 modifier-scope +247641 conjuncted-wg +247643 modifier-scope +wrapper-clause-scope +247646 modifier-scope +modifier-scope +247649 group +247651 modifier-clause-scope +modifier-clause-scope +247654 modifier-scope +247656 wrapper-clause-scope +247658 wrapper-scope +247660 conjuncted-wg +247662 wrapper-clause-scope +247664 modifier-scope +247667 modifier-clause-scope +247669 conjuncted-wg +247671 modifier-scope +modifier-scope +modifier-scope +247676 wrapper-scope +wrapper-clause-scope +wrapper-clause-scope +247680 wrapper-scope +modifier-scope +group +247685 wrapper-clause-scope +247687 wrapper-scope +wrapper-clause-scope +247690 modifier-scope +modifier-scope +247694 wrapper-scope +247696 modifier-scope +conjuncted-wg +group +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +247704 wrapper-scope +247706 wrapper-scope +247710 conjuncted-wg +247712 modifier-scope +247716 group +247719 modifier-scope +wrapper-scope +247722 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +247730 modifier-scope +modifier-scope +modifier-scope +247734 wrapper-scope +conjuncted-wg +247738 wrapper-clause-scope +247741 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +247747 wrapper-clause-scope +247754 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +247761 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +247767 wrapper-clause-scope +247769 wrapper-clause-scope +247771 modifier-scope +wrapper-clause-scope +247775 wrapper-clause-scope +group +247778 wrapper-clause-scope +247781 conjuncted-wg +wrapper-clause-scope +247784 modifier-scope +247788 conjuncted-wg +247790 group +wrapper-clause-scope +247794 conjuncted-wg +247797 group +modifier-clause-scope +247800 modifier-scope +group +modifier-scope +modifier-scope +group +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +247812 conjuncted-wg +247814 wrapper-scope +apposition-group +247817 conjuncted-wg +247819 wrapper-scope +group +modifier-scope +modifier-clause-scope +modifier-clause-scope +247826 modifier-scope +conjuncted-wg +247829 modifier-scope +247832 modifier-scope +247834 wrapper-clause-scope +247836 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +247841 wrapper-clause-scope +247843 wrapper-scope +modifier-scope +wrapper-clause-scope +247849 wrapper-clause-scope +247853 conjuncted-wg +247855 wrapper-clause-scope +247857 wrapper-clause-scope +247860 wrapper-scope +apposition-group +247863 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +247868 conjuncted-wg +247870 modifier-scope +wrapper-scope +247873 conjuncted-wg +247875 wrapper-clause-scope +247877 modifier-scope +modifier-scope +modifier-scope +apposition-group +modifier-scope +247885 wrapper-scope +modifier-scope +conjuncted-wg +247889 modifier-scope +247891 wrapper-clause-scope +247895 modifier-scope +247897 wrapper-clause-scope +group +247900 group +247902 modifier-scope +modifier-scope +modifier-scope +modifier-scope +247907 apposition-group +modifier-scope +modifier-scope +247911 wrapper-scope +247914 conjuncted-wg +247916 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +247922 wrapper-scope +247924 group +modifier-scope +wrapper-clause-scope +247928 modifier-scope +conjuncted-wg +group +group +wrapper-clause-scope +247934 wrapper-scope +group +modifier-scope +modifier-scope +247939 modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +247950 modifier-scope +apposition-group +apposition-group +group +group +modifier-scope +modifier-scope +247958 conjuncted-wg +modifier-clause-scope +247961 modifier-clause-scope +wrapper-clause-scope +247964 conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +247968 modifier-clause-scope +modifier-clause-scope +group +247973 modifier-scope +247976 modifier-scope +conjuncted-wg +247982 conjuncted-wg +modifier-scope +247987 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +group +247996 conjuncted-wg +247998 wrapper-scope +modifier-scope +248001 wrapper-scope +group +wrapper-clause-scope +248005 wrapper-scope +248008 wrapper-scope +modifier-scope +248013 modifier-scope +wrapper-scope +wrapper-clause-scope +248017 wrapper-clause-scope +248019 modifier-scope +modifier-scope +248025 modifier-scope +248027 modifier-clause-scope +248029 modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +248037 wrapper-scope +modifier-scope +248041 modifier-scope +wrapper-scope +248045 group +modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +wrapper-scope +group +group +modifier-scope +248062 group +wrapper-scope +248065 group +conjuncted-wg +group +group +modifier-scope +modifier-scope +248073 apposition-group +modifier-scope +248076 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +248081 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +248088 conjuncted-wg +group +248093 modifier-scope +modifier-scope +wrapper-clause-scope +248098 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +wrapper-scope +apposition-group +modifier-scope +248106 wrapper-scope +248108 group +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +248117 wrapper-clause-scope +248119 modifier-scope +wrapper-scope +248123 wrapper-scope +modifier-scope +248126 apposition-group +modifier-scope +modifier-scope +modifier-scope +248131 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +248138 wrapper-clause-scope +group +248141 modifier-scope +modifier-scope +248145 conjuncted-wg +conjuncted-wg +248148 wrapper-clause-scope +group +248152 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +248161 modifier-scope +wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +248168 conjuncted-wg +248170 modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +248178 conjuncted-wg +group +wrapper-clause-scope +248183 wrapper-scope +group +wrapper-scope +modifier-scope +conjuncted-wg +248189 wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-clause-scope +group +248198 conjuncted-wg +248200 modifier-scope +conjuncted-wg +248204 conjuncted-wg +wrapper-scope +apposition-group +modifier-scope +248209 wrapper-scope +248211 conjuncted-wg +conjuncted-wg +248217 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +248225 conjuncted-wg +248227 wrapper-clause-scope +248229 wrapper-clause-scope +248231 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +248238 modifier-clause-scope +apposition-group +modifier-clause-scope +248243 wrapper-scope +wrapper-scope +group +248247 conjuncted-wg +modifier-scope +wrapper-scope +group +248253 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +248260 wrapper-scope +248263 wrapper-clause-scope +248265 apposition-group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +248272 conjuncted-wg +248274 group +248276 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +248282 conjuncted-wg +group +248285 modifier-scope +modifier-scope +248290 wrapper-scope +conjuncted-wg +248295 modifier-scope +248297 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +248302 wrapper-clause-scope +248305 wrapper-scope +248307 wrapper-clause-scope +248310 modifier-scope +248312 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +group +conjuncted-wg +248321 wrapper-scope +wrapper-scope +modifier-scope +apposition-group +modifier-scope +248328 modifier-scope +248331 wrapper-scope +modifier-scope +modifier-scope +group +248338 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +248343 wrapper-clause-scope +248346 wrapper-clause-scope +248348 wrapper-clause-scope +248350 wrapper-clause-scope +248355 modifier-clause-scope +modifier-clause-scope +248358 modifier-scope +248363 wrapper-clause-scope +248365 modifier-scope +wrapper-scope +248369 group +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +248374 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +248384 wrapper-scope +wrapper-scope +248387 conjuncted-wg +248389 modifier-scope +modifier-scope +modifier-scope +248394 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +248399 modifier-scope +group +modifier-scope +wrapper-scope +group +wrapper-scope +modifier-scope +248408 modifier-scope +248410 wrapper-clause-scope +248412 wrapper-clause-scope +248416 wrapper-clause-scope +248419 group +wrapper-clause-scope +248424 group +group +wrapper-clause-scope +248429 wrapper-clause-scope +248435 wrapper-scope +modifier-scope +wrapper-clause-scope +248439 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +248448 group +modifier-scope +modifier-scope +modifier-clause-scope +modifier-scope +248454 modifier-scope +modifier-scope +modifier-scope +248458 wrapper-clause-scope +248460 modifier-scope +modifier-scope +248463 wrapper-clause-scope +248466 wrapper-scope +modifier-scope +conjuncted-wg +248470 modifier-scope +modifier-scope +wrapper-scope +248474 apposition-group +248476 conjuncted-wg +248479 wrapper-scope +modifier-scope +248483 conjuncted-wg +248485 modifier-scope +modifier-scope +248488 wrapper-clause-scope +248490 modifier-scope +modifier-scope +modifier-scope +modifier-scope +248495 modifier-scope +modifier-scope +248499 wrapper-clause-scope +248501 conjuncted-wg +248503 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +248507 modifier-scope +modifier-scope +248510 wrapper-clause-scope +248513 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +248519 conjuncted-wg +modifier-scope +248522 conjuncted-wg +conjuncted-wg +248525 conjuncted-wg +248527 wrapper-scope +conjuncted-wg +248530 wrapper-scope +248532 wrapper-clause-scope +248534 wrapper-clause-scope +248536 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +wrapper-scope +248543 modifier-scope +modifier-scope +248546 wrapper-scope +modifier-scope +modifier-scope +248550 wrapper-clause-scope +248553 modifier-scope +modifier-scope +conjuncted-wg +248557 group +wrapper-scope +wrapper-clause-scope +248561 modifier-scope +wrapper-scope +modifier-scope +248565 wrapper-clause-scope +248567 modifier-scope +modifier-scope +248570 conjuncted-wg +248572 wrapper-clause-scope +248575 wrapper-clause-scope +248579 modifier-scope +conjuncted-wg +248582 group +modifier-scope +wrapper-scope +248586 wrapper-scope +wrapper-clause-scope +248591 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +248596 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +248601 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +248606 wrapper-clause-scope +248608 wrapper-clause-scope +248610 wrapper-scope +modifier-scope +modifier-scope +248614 wrapper-clause-scope +group +248617 modifier-scope +group +modifier-scope +248623 conjuncted-wg +248627 modifier-scope +conjuncted-wg +248630 modifier-scope +modifier-scope +248634 modifier-scope +248636 wrapper-clause-scope +248638 wrapper-scope +wrapper-clause-scope +248642 wrapper-scope +modifier-scope +conjuncted-wg +248646 modifier-clause-scope +modifier-clause-scope +group +248651 modifier-scope +248654 conjuncted-wg +248657 wrapper-scope +modifier-scope +248660 wrapper-clause-scope +248664 modifier-scope +248666 conjuncted-wg +modifier-scope +modifier-clause-scope +modifier-clause-scope +248671 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +248676 wrapper-clause-scope +248678 wrapper-scope +248680 wrapper-clause-scope +248682 modifier-scope +modifier-scope +wrapper-clause-scope +248686 modifier-scope +modifier-scope +248689 wrapper-clause-scope +248692 group +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +apposition-group +apposition-group +group +modifier-scope +modifier-scope +248708 group +wrapper-scope +wrapper-scope +wrapper-scope +248713 modifier-scope +conjuncted-wg +248716 wrapper-scope +modifier-scope +248719 wrapper-clause-scope +248721 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +248726 wrapper-scope +group +248729 wrapper-clause-scope +248732 modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +248738 conjuncted-wg +248740 wrapper-clause-scope +248742 wrapper-scope +248745 conjuncted-wg +248749 wrapper-scope +conjuncted-wg +wrapper-clause-scope +248753 wrapper-scope +group +modifier-scope +wrapper-clause-scope +248759 wrapper-scope +wrapper-scope +group +modifier-scope +wrapper-scope +group +248767 modifier-scope +248769 conjuncted-wg +modifier-scope +group +wrapper-scope +wrapper-scope +wrapper-scope +wrapper-scope +group +modifier-scope +wrapper-scope +wrapper-clause-scope +248781 modifier-scope +modifier-scope +modifier-scope +248785 wrapper-scope +modifier-scope +modifier-scope +248791 wrapper-scope +248793 modifier-scope +conjuncted-wg +group +group +wrapper-clause-scope +248802 conjuncted-wg +conjuncted-wg +248805 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +248811 group +248813 modifier-scope +248815 modifier-scope +248817 group +248821 wrapper-scope +modifier-scope +248824 conjuncted-wg +248826 wrapper-clause-scope +group +248829 wrapper-clause-scope +248831 group +248833 modifier-clause-scope +modifier-clause-scope +248837 wrapper-scope +modifier-scope +modifier-scope +248841 modifier-scope +conjuncted-wg +248844 conjuncted-wg +248846 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +248851 wrapper-scope +modifier-scope +248854 wrapper-clause-scope +group +248857 wrapper-scope +248860 modifier-scope +248862 modifier-scope +modifier-scope +248865 wrapper-clause-scope +248868 conjuncted-wg +248870 modifier-scope +modifier-scope +modifier-scope +modifier-scope +248875 group +248877 modifier-scope +modifier-scope +248880 modifier-scope +248882 modifier-scope +248885 apposition-group +modifier-scope +modifier-scope +modifier-scope +248891 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +248900 group +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +248906 modifier-scope +modifier-scope +248911 wrapper-scope +248913 wrapper-clause-scope +group +group +248919 modifier-scope +modifier-scope +conjuncted-wg +248923 wrapper-scope +248925 wrapper-scope +248927 wrapper-scope +248929 wrapper-scope +248931 group +248934 wrapper-scope +wrapper-clause-scope +248937 wrapper-scope +248939 wrapper-clause-scope +248941 wrapper-scope +248945 modifier-clause-scope +apposition-group +248948 wrapper-scope +wrapper-scope +248951 conjuncted-wg +248953 group +modifier-scope +modifier-scope +modifier-scope +248959 group +modifier-scope +modifier-scope +248964 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +248969 modifier-scope +248971 wrapper-clause-scope +248973 modifier-scope +modifier-scope +248978 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +248987 wrapper-clause-scope +248989 group +248992 modifier-scope +conjuncted-wg +248995 wrapper-clause-scope +248998 wrapper-scope +modifier-scope +conjuncted-wg +249002 modifier-scope +modifier-scope +conjuncted-wg +249006 wrapper-scope +modifier-scope +249012 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +249018 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +249032 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +249039 wrapper-scope +conjuncted-wg +249042 wrapper-scope +249047 wrapper-scope +249051 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +249059 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +249065 modifier-scope +wrapper-scope +249069 group +249071 modifier-scope +conjuncted-wg +modifier-scope +group +wrapper-scope +249077 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +group +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +249090 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +249096 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +249102 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +249115 conjuncted-wg +wrapper-scope +249118 group +conjuncted-wg +group +group +modifier-scope +modifier-scope +249125 group +249127 wrapper-scope +wrapper-scope +wrapper-clause-scope +249132 wrapper-clause-scope +249134 conjuncted-wg +group +group +249138 wrapper-scope +wrapper-clause-scope +249141 wrapper-clause-scope +249143 group +modifier-scope +modifier-scope +249147 modifier-clause-scope +modifier-scope +wrapper-clause-scope +249151 wrapper-scope +modifier-scope +conjuncted-wg +249155 wrapper-clause-scope +249158 modifier-scope +wrapper-scope +modifier-scope +modifier-clause-scope +249163 group +modifier-scope +modifier-scope +modifier-scope +249168 modifier-scope +conjuncted-wg +group +249172 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +249179 wrapper-clause-scope +249181 conjuncted-wg +249183 wrapper-scope +group +modifier-scope +wrapper-clause-scope +249188 conjuncted-wg +249190 wrapper-clause-scope +249193 wrapper-clause-scope +249195 apposition-group +apposition-group +group +group +249200 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +249208 modifier-scope +249211 wrapper-scope +modifier-scope +249215 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +249221 group +modifier-scope +modifier-scope +249226 modifier-scope +modifier-scope +249231 wrapper-scope +modifier-scope +249234 wrapper-scope +modifier-scope +249238 modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +249243 modifier-scope +249246 modifier-scope +249248 wrapper-clause-scope +249251 modifier-clause-scope +249254 conjuncted-wg +conjuncted-wg +249257 modifier-scope +249259 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +249267 conjuncted-wg +249269 modifier-scope +249272 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +249279 wrapper-clause-scope +249282 modifier-clause-scope +modifier-clause-scope +249287 group +249289 group +modifier-scope +modifier-scope +modifier-scope +249294 group +249296 wrapper-scope +group +modifier-scope +249300 modifier-scope +wrapper-clause-scope +249304 modifier-scope +group +249307 modifier-scope +modifier-scope +wrapper-clause-scope +249311 modifier-scope +modifier-scope +modifier-scope +249316 modifier-scope +249319 group +group +249322 wrapper-scope +modifier-scope +modifier-scope +249326 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +249333 modifier-scope +wrapper-scope +249337 wrapper-scope +modifier-scope +249340 group +group +249343 modifier-scope +wrapper-scope +249349 conjuncted-wg +249351 modifier-scope +modifier-scope +wrapper-clause-scope +249355 group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope +249363 wrapper-clause-scope +249365 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +249371 wrapper-clause-scope +249375 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +249380 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +249386 modifier-clause-scope +249388 modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +group +modifier-scope +group +modifier-scope +249399 conjuncted-wg +group +249403 wrapper-scope +249406 wrapper-scope +modifier-scope +conjuncted-wg +249410 group +modifier-scope +modifier-scope +modifier-scope +249417 conjuncted-wg +249420 conjuncted-wg +wrapper-scope +modifier-scope +249427 group +249429 group +249432 wrapper-scope +modifier-scope +modifier-scope +249439 modifier-scope +wrapper-scope +modifier-scope +249443 wrapper-clause-scope +249445 modifier-scope +group +249449 modifier-scope +249451 conjuncted-wg +249453 wrapper-scope +249455 conjuncted-wg +249458 wrapper-clause-scope +249460 wrapper-clause-scope +249462 modifier-scope +249464 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +modifier-scope +249471 group +wrapper-scope +apposition-group +group +modifier-scope +wrapper-scope +249478 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +249483 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +modifier-scope +249489 wrapper-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +249497 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +249504 modifier-scope +249506 wrapper-clause-scope +249508 wrapper-scope +249510 wrapper-clause-scope +249513 modifier-scope +wrapper-clause-scope +249519 conjuncted-wg +modifier-scope +249522 wrapper-clause-scope +249525 modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-clause-scope +249533 conjuncted-wg +249536 modifier-scope +wrapper-scope +modifier-scope +249540 conjuncted-wg +249542 wrapper-clause-scope +249544 modifier-scope +249546 conjuncted-wg +249549 group +group +wrapper-clause-scope +249553 wrapper-scope +249555 conjuncted-wg +249558 wrapper-scope +wrapper-scope +wrapper-clause-scope +249566 group +modifier-scope +conjuncted-wg +wrapper-clause-scope +249572 wrapper-clause-scope +249574 modifier-scope +modifier-scope +249577 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +249585 modifier-scope +modifier-scope +wrapper-scope +249590 wrapper-clause-scope +249592 wrapper-scope +249595 modifier-scope +wrapper-scope +modifier-scope +249601 group +modifier-scope +group +conjuncted-wg +group +modifier-scope +249608 group +modifier-scope +modifier-scope +249612 conjuncted-wg +conjuncted-wg +group +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +249628 conjuncted-wg +wrapper-scope +249631 group +modifier-scope +conjuncted-wg +group +group +249638 modifier-scope +modifier-scope +249641 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +249646 apposition-group +modifier-scope +249649 modifier-scope +conjuncted-wg +modifier-scope +249654 wrapper-scope +group +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +249663 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +group +wrapper-scope +wrapper-scope +249676 wrapper-clause-scope +249679 modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +249686 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +249692 wrapper-clause-scope +249695 modifier-scope +modifier-scope +wrapper-scope +249699 wrapper-clause-scope +249701 wrapper-scope +modifier-scope +249705 wrapper-scope +group +conjuncted-wg +249709 modifier-scope +modifier-scope +group +249714 wrapper-scope +apposition-group +modifier-scope +modifier-scope +249719 wrapper-scope +modifier-scope +modifier-clause-scope +apposition-group +apposition-group +group +modifier-scope +249727 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +249733 conjuncted-wg +conjuncted-wg +249736 modifier-clause-scope +apposition-group +249739 modifier-scope +modifier-scope +group +249744 wrapper-scope +wrapper-clause-scope +249747 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +249753 wrapper-clause-scope +249755 wrapper-scope +modifier-scope +modifier-scope +249759 wrapper-clause-scope +group +249762 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +249767 wrapper-scope +249769 wrapper-clause-scope +249771 wrapper-scope +wrapper-scope +wrapper-clause-scope +249775 group +wrapper-scope +wrapper-scope +modifier-scope +249781 conjuncted-wg +249783 modifier-scope +249785 conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +249790 wrapper-clause-scope +group +wrapper-clause-scope +249794 group +249796 wrapper-clause-scope +249799 wrapper-clause-scope +249801 wrapper-clause-scope +249804 conjuncted-wg +249808 group +modifier-scope +modifier-scope +group +249813 wrapper-clause-scope +249815 wrapper-clause-scope +249817 modifier-scope +249822 wrapper-scope +249825 modifier-scope +modifier-scope +wrapper-scope +249831 modifier-scope +modifier-scope +249834 wrapper-clause-scope +249836 modifier-clause-scope +wrapper-scope +249840 wrapper-clause-scope +group +249843 modifier-scope +wrapper-clause-scope +249848 wrapper-scope +modifier-scope +modifier-scope +249853 group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +group +group +modifier-scope +modifier-scope +249866 modifier-scope +modifier-scope +group +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +249878 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +apposition-group +apposition-group +249892 modifier-scope +249894 wrapper-scope +modifier-scope +249901 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +249909 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +249915 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +249922 modifier-scope +modifier-scope +wrapper-scope +249926 wrapper-clause-scope +249928 modifier-scope +modifier-scope +group +249932 modifier-scope +249935 wrapper-clause-scope +249939 wrapper-scope +conjuncted-wg +249942 wrapper-scope +249944 wrapper-clause-scope +group +wrapper-clause-scope +249948 modifier-scope +wrapper-scope +modifier-scope +249952 wrapper-clause-scope +249954 modifier-scope +modifier-scope +249957 wrapper-clause-scope +249959 conjuncted-wg +249961 wrapper-scope +modifier-scope +249964 wrapper-clause-scope +249967 modifier-scope +modifier-scope +conjuncted-wg +249971 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +249977 wrapper-scope +modifier-scope +249981 modifier-scope +249983 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +249991 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +250000 conjuncted-wg +250004 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +250014 wrapper-clause-scope +250018 wrapper-scope +modifier-scope +conjuncted-wg +250022 modifier-scope +modifier-scope +modifier-scope +modifier-scope +250029 conjuncted-wg +250032 wrapper-clause-scope +250035 wrapper-clause-scope +250037 conjuncted-wg +group +250040 wrapper-clause-scope +250043 wrapper-clause-scope +250046 wrapper-clause-scope +250049 modifier-scope +conjuncted-wg +250052 modifier-scope +modifier-scope +250055 wrapper-clause-scope +250057 wrapper-scope +modifier-scope +modifier-scope +group +250062 wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +250067 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +250073 wrapper-clause-scope +250075 modifier-clause-scope +modifier-clause-scope +250078 wrapper-scope +wrapper-scope +wrapper-clause-scope +250085 wrapper-scope +250087 wrapper-clause-scope +250091 wrapper-clause-scope +group +wrapper-clause-scope +250096 modifier-clause-scope +modifier-clause-scope +250099 wrapper-scope +conjuncted-wg +250102 modifier-scope +250104 conjuncted-wg +modifier-scope +250108 apposition-group +modifier-scope +250114 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +250119 wrapper-scope +modifier-scope +250122 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +250133 wrapper-clause-scope +250135 apposition-group +group +modifier-scope +wrapper-clause-scope +250141 wrapper-scope +250143 wrapper-clause-scope +250148 wrapper-clause-scope +250150 conjuncted-wg +250152 modifier-scope +wrapper-clause-scope +250156 group +250158 modifier-scope +wrapper-scope +250162 conjuncted-wg +250164 wrapper-scope +modifier-scope +modifier-scope +250168 wrapper-clause-scope +250170 wrapper-scope +wrapper-clause-scope +250173 modifier-scope +modifier-scope +250176 wrapper-clause-scope +250179 modifier-scope +250181 wrapper-clause-scope +250184 group +wrapper-clause-scope +250187 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +250194 conjuncted-wg +wrapper-clause-scope +250197 modifier-scope +wrapper-scope +250200 wrapper-clause-scope +250202 apposition-group +250205 wrapper-scope +modifier-scope +conjuncted-wg +250209 wrapper-scope +modifier-scope +250213 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +250221 wrapper-clause-scope +250224 conjuncted-wg +wrapper-clause-scope +250227 conjuncted-wg +wrapper-clause-scope +250230 modifier-scope +wrapper-scope +250234 wrapper-scope +modifier-scope +250239 modifier-scope +modifier-scope +modifier-scope +modifier-scope +250244 wrapper-scope +modifier-scope +250247 wrapper-clause-scope +group +250251 wrapper-scope +wrapper-scope +250254 wrapper-clause-scope +250259 conjuncted-wg +modifier-clause-scope +apposition-group +250263 modifier-scope +250265 wrapper-clause-scope +250267 wrapper-clause-scope +250269 modifier-scope +250271 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +250277 wrapper-scope +modifier-scope +apposition-group +wrapper-clause-scope +250282 modifier-scope +modifier-scope +modifier-scope +250286 modifier-scope +conjuncted-wg +250289 apposition-group +250291 modifier-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +250296 modifier-scope +250298 wrapper-clause-scope +group +wrapper-clause-scope +250303 modifier-scope +250305 wrapper-clause-scope +group +250309 wrapper-scope +modifier-scope +wrapper-clause-scope +250313 modifier-scope +250315 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +250322 modifier-scope +modifier-scope +modifier-scope +250326 wrapper-clause-scope +250328 wrapper-scope +250332 wrapper-clause-scope +250335 wrapper-clause-scope +250338 group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +250346 conjuncted-wg +modifier-scope +modifier-scope +modifier-clause-scope +250351 wrapper-clause-scope +250353 wrapper-clause-scope +250355 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +250361 wrapper-clause-scope +250363 modifier-scope +wrapper-scope +250366 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250372 wrapper-clause-scope +250375 modifier-scope +wrapper-scope +conjuncted-wg +250379 wrapper-clause-scope +250382 wrapper-clause-scope +250384 conjuncted-wg +250386 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +wrapper-clause-scope +250395 conjuncted-wg +250397 wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +250404 modifier-scope +250407 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +250414 wrapper-clause-scope +wrapper-clause-scope +250417 modifier-scope +modifier-scope +modifier-scope +group +wrapper-clause-scope +250423 modifier-scope +modifier-scope +group +250427 modifier-scope +modifier-scope +wrapper-clause-scope +250431 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +250442 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +250447 modifier-scope +modifier-scope +modifier-scope +250451 wrapper-clause-scope +250454 modifier-scope +modifier-scope +conjuncted-wg +group +250461 modifier-scope +conjuncted-wg +250464 modifier-scope +modifier-scope +wrapper-clause-scope +250468 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250473 wrapper-scope +modifier-scope +modifier-scope +250478 group +250482 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +250489 wrapper-scope +modifier-clause-scope +250492 conjuncted-wg +250494 wrapper-scope +modifier-scope +wrapper-scope +250498 modifier-scope +wrapper-clause-scope +250501 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +250506 wrapper-clause-scope +group +250509 modifier-scope +modifier-scope +wrapper-clause-scope +250513 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +250520 group +wrapper-clause-scope +250523 modifier-scope +modifier-scope +group +250527 modifier-scope +modifier-scope +wrapper-clause-scope +250531 wrapper-scope +modifier-scope +250534 wrapper-clause-scope +250538 wrapper-clause-scope +wrapper-clause-scope +250541 modifier-clause-scope +wrapper-clause-scope +250544 wrapper-scope +wrapper-scope +250547 wrapper-clause-scope +250549 modifier-scope +250551 wrapper-clause-scope +250553 apposition-group +wrapper-clause-scope +250557 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +250562 wrapper-clause-scope +250565 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250570 wrapper-clause-scope +250573 wrapper-clause-scope +250578 wrapper-scope +250580 wrapper-clause-scope +wrapper-clause-scope +250586 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +250593 wrapper-clause-scope +250596 wrapper-scope +wrapper-clause-scope +250599 conjuncted-wg +250601 modifier-scope +modifier-scope +modifier-scope +250605 modifier-scope +wrapper-clause-scope +250609 wrapper-clause-scope +group +250612 wrapper-scope +modifier-scope +wrapper-clause-scope +250616 wrapper-clause-scope +250618 wrapper-clause-scope +250620 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250625 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250630 modifier-scope +wrapper-scope +modifier-scope +250634 wrapper-clause-scope +250636 wrapper-scope +modifier-scope +wrapper-clause-scope +250640 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +250650 wrapper-clause-scope +250652 wrapper-scope +wrapper-clause-scope +250655 wrapper-scope +modifier-scope +modifier-scope +250659 wrapper-clause-scope +group +wrapper-clause-scope +250665 wrapper-scope +conjuncted-wg +250668 wrapper-clause-scope +250670 wrapper-scope +250672 group +modifier-scope +250675 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +250680 group +wrapper-clause-scope +250683 modifier-scope +modifier-scope +250686 modifier-scope +modifier-scope +250689 wrapper-clause-scope +group +wrapper-clause-scope +250693 wrapper-clause-scope +250695 wrapper-scope +modifier-scope +wrapper-scope +250699 wrapper-clause-scope +250701 modifier-scope +modifier-scope +modifier-scope +250705 wrapper-clause-scope +250707 group +wrapper-clause-scope +250710 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250719 wrapper-scope +modifier-scope +modifier-scope +250723 wrapper-clause-scope +group +250727 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250732 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +250738 wrapper-clause-scope +250740 modifier-scope +modifier-scope +modifier-scope +250745 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +250753 wrapper-scope +modifier-scope +group +250757 conjuncted-wg +250759 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +250765 conjuncted-wg +250767 wrapper-clause-scope +250770 wrapper-scope +conjuncted-wg +250774 conjuncted-wg +250776 modifier-clause-scope +modifier-clause-scope +apposition-group +250780 wrapper-scope +modifier-scope +250783 wrapper-clause-scope +250786 group +modifier-clause-scope +modifier-scope +250790 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +250797 wrapper-clause-scope +250799 modifier-clause-scope +group +250803 modifier-scope +modifier-scope +250806 wrapper-scope +wrapper-scope +wrapper-scope +250810 wrapper-clause-scope +250812 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +250819 conjuncted-wg +250821 wrapper-scope +modifier-scope +250824 wrapper-clause-scope +250826 modifier-clause-scope +modifier-clause-scope +250829 wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +250837 conjuncted-wg +conjuncted-wg +wrapper-scope +250842 wrapper-clause-scope +250845 conjuncted-wg +wrapper-clause-scope +250849 modifier-scope +conjuncted-wg +250852 wrapper-scope +250854 wrapper-clause-scope +250856 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +250862 wrapper-clause-scope +group +250865 modifier-scope +250867 wrapper-scope +modifier-scope +wrapper-clause-scope +250871 modifier-scope +250875 modifier-scope +modifier-scope +250878 conjuncted-wg +group +250881 wrapper-clause-scope +250883 wrapper-scope +group +250886 modifier-scope +250888 wrapper-clause-scope +250890 modifier-scope +wrapper-scope +250893 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +250901 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +250907 conjuncted-wg +conjuncted-wg +wrapper-scope +wrapper-clause-scope +250913 wrapper-scope +wrapper-scope +250916 modifier-scope +conjuncted-wg +conjuncted-wg +250920 wrapper-scope +modifier-scope +250924 wrapper-clause-scope +250926 wrapper-scope +250928 modifier-scope +250930 wrapper-clause-scope +250933 modifier-clause-scope +wrapper-clause-scope +250936 modifier-scope +modifier-scope +250939 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +250948 wrapper-scope +modifier-scope +conjuncted-wg +250953 wrapper-clause-scope +250955 modifier-scope +250957 wrapper-clause-scope +250962 wrapper-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +250967 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +250977 modifier-scope +group +modifier-scope +modifier-scope +250982 wrapper-clause-scope +250985 modifier-clause-scope +wrapper-clause-scope +250988 modifier-scope +modifier-scope +wrapper-clause-scope +250992 conjuncted-wg +250994 modifier-scope +modifier-scope +group +wrapper-clause-scope +250999 wrapper-scope +modifier-scope +modifier-scope +251003 wrapper-scope +modifier-scope +251006 conjuncted-wg +conjuncted-wg +251009 wrapper-clause-scope +251012 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251020 group +modifier-scope +251023 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +group +251032 conjuncted-wg +modifier-scope +251035 modifier-scope +conjuncted-wg +modifier-scope +251039 wrapper-clause-scope +251041 wrapper-clause-scope +251043 modifier-scope +251045 wrapper-clause-scope +251048 wrapper-clause-scope +251051 conjuncted-wg +251053 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +251058 modifier-scope +modifier-scope +conjuncted-wg +251063 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +251069 conjuncted-wg +251071 wrapper-scope +251074 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +251080 wrapper-clause-scope +251083 group +wrapper-clause-scope +251087 modifier-clause-scope +modifier-clause-scope +251090 wrapper-scope +conjuncted-wg +251093 modifier-scope +apposition-group +251096 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +251104 conjuncted-wg +conjuncted-wg +251107 wrapper-scope +251109 modifier-scope +modifier-scope +wrapper-scope +251113 wrapper-clause-scope +251116 wrapper-scope +modifier-clause-scope +251119 conjuncted-wg +251121 wrapper-clause-scope +251124 wrapper-clause-scope +251126 modifier-scope +251129 modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +251135 wrapper-scope +modifier-scope +modifier-scope +251140 conjuncted-wg +modifier-scope +251143 wrapper-clause-scope +251146 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +251157 conjuncted-wg +251159 modifier-clause-scope +wrapper-clause-scope +251162 wrapper-scope +251164 conjuncted-wg +modifier-scope +251167 wrapper-clause-scope +251170 modifier-scope +modifier-scope +wrapper-clause-scope +251175 wrapper-scope +modifier-scope +wrapper-scope +251179 wrapper-clause-scope +wrapper-clause-scope +251184 conjuncted-wg +251188 wrapper-clause-scope +251191 modifier-scope +251193 wrapper-clause-scope +251196 wrapper-scope +modifier-scope +conjuncted-wg +251200 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251208 wrapper-scope +251210 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +251219 wrapper-scope +apposition-group +modifier-scope +modifier-scope +251224 wrapper-scope +251226 modifier-scope +wrapper-clause-scope +251230 apposition-group +modifier-clause-scope +modifier-clause-scope +251235 wrapper-scope +modifier-clause-scope +modifier-scope +modifier-scope +251241 conjuncted-wg +conjuncted-wg +conjuncted-wg +251245 wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +251251 group +wrapper-scope +251254 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251260 wrapper-clause-scope +251262 apposition-group +group +modifier-scope +group +group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +251277 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +251284 modifier-scope +wrapper-scope +251287 conjuncted-wg +251289 modifier-scope +conjuncted-wg +251292 modifier-clause-scope +apposition-group +modifier-scope +251296 modifier-scope +modifier-scope +group +251302 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +251308 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251314 wrapper-clause-scope +251317 apposition-group +251319 group +modifier-scope +wrapper-scope +modifier-scope +251324 wrapper-clause-scope +251326 conjuncted-wg +251328 wrapper-clause-scope +251330 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +251335 wrapper-scope +modifier-scope +apposition-group +modifier-scope +251340 modifier-scope +modifier-scope +wrapper-clause-scope +251344 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +251350 wrapper-clause-scope +251352 wrapper-scope +conjuncted-wg +251355 wrapper-clause-scope +251357 modifier-scope +251359 wrapper-clause-scope +251361 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251367 wrapper-clause-scope +251369 conjuncted-wg +251371 modifier-clause-scope +251373 conjuncted-wg +251375 wrapper-clause-scope +251378 wrapper-clause-scope +group +group +wrapper-clause-scope +251384 wrapper-scope +modifier-clause-scope +group +wrapper-clause-scope +251389 wrapper-clause-scope +251391 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +251398 wrapper-clause-scope +wrapper-clause-scope +group +wrapper-clause-scope +group +251404 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +251409 modifier-scope +wrapper-scope +251414 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +251420 wrapper-scope +modifier-scope +modifier-scope +251424 wrapper-clause-scope +group +251427 modifier-scope +251429 wrapper-scope +modifier-scope +modifier-scope +251433 wrapper-clause-scope +251437 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +251442 wrapper-clause-scope +251444 wrapper-clause-scope +251446 wrapper-scope +modifier-scope +modifier-scope +251450 wrapper-scope +modifier-scope +wrapper-scope +251454 wrapper-clause-scope +251456 modifier-scope +wrapper-clause-scope +251459 wrapper-scope +modifier-scope +modifier-scope +apposition-group +modifier-scope +251465 group +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +251473 wrapper-clause-scope +251475 wrapper-clause-scope +251477 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +251483 wrapper-clause-scope +251485 conjuncted-wg +251487 modifier-clause-scope +modifier-clause-scope +251490 wrapper-scope +modifier-scope +modifier-scope +251494 conjuncted-wg +wrapper-clause-scope +251497 modifier-scope +conjuncted-wg +251500 modifier-clause-scope +apposition-group +modifier-scope +251504 wrapper-scope +modifier-scope +251507 wrapper-clause-scope +251511 wrapper-scope +wrapper-scope +251514 conjuncted-wg +251516 wrapper-scope +wrapper-scope +conjuncted-wg +251520 wrapper-scope +wrapper-scope +wrapper-clause-scope +251524 wrapper-scope +group +251528 conjuncted-wg +251531 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +251538 wrapper-clause-scope +251540 conjuncted-wg +251542 modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +251548 conjuncted-wg +251550 wrapper-scope +wrapper-clause-scope +251553 wrapper-scope +modifier-scope +modifier-scope +251557 wrapper-clause-scope +251560 wrapper-scope +modifier-scope +wrapper-clause-scope +251564 wrapper-scope +modifier-scope +251567 wrapper-scope +wrapper-clause-scope +251570 wrapper-scope +251572 wrapper-clause-scope +group +251575 apposition-group +modifier-clause-scope +modifier-clause-scope +group +251581 wrapper-scope +modifier-scope +conjuncted-wg +251585 modifier-scope +251587 wrapper-scope +wrapper-scope +modifier-scope +group +251592 wrapper-scope +modifier-scope +modifier-scope +251596 modifier-scope +modifier-scope +wrapper-clause-scope +251602 wrapper-clause-scope +251605 modifier-scope +251607 conjuncted-wg +251609 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251617 wrapper-scope +modifier-scope +251620 wrapper-clause-scope +group +251623 modifier-clause-scope +wrapper-scope +wrapper-clause-scope +251628 modifier-clause-scope +group +apposition-group +251632 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-clause-scope +251641 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +251648 group +modifier-scope +modifier-scope +251652 wrapper-clause-scope +251654 modifier-scope +wrapper-scope +wrapper-clause-scope +251659 conjuncted-wg +conjuncted-wg +251662 wrapper-clause-scope +251665 modifier-scope +apposition-group +251669 wrapper-clause-scope +251671 conjuncted-wg +group +wrapper-clause-scope +251675 wrapper-scope +wrapper-clause-scope +group +251680 wrapper-clause-scope +251682 wrapper-scope +modifier-scope +251686 modifier-scope +251688 conjuncted-wg +modifier-scope +251693 modifier-scope +wrapper-clause-scope +251698 wrapper-scope +group +modifier-scope +wrapper-clause-scope +251703 wrapper-scope +modifier-scope +conjuncted-wg +251708 modifier-scope +modifier-clause-scope +apposition-group +modifier-scope +251713 wrapper-scope +modifier-scope +251716 wrapper-clause-scope +251718 wrapper-clause-scope +251720 modifier-scope +modifier-scope +251723 modifier-scope +251725 wrapper-clause-scope +251729 group +group +251734 conjuncted-wg +group +251738 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +251748 wrapper-scope +modifier-clause-scope +apposition-group +251753 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +251759 wrapper-scope +modifier-scope +wrapper-clause-scope +group +251764 wrapper-scope +modifier-scope +modifier-scope +251770 wrapper-clause-scope +group +251773 modifier-clause-scope +apposition-group +251776 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +251785 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +251791 wrapper-scope +modifier-scope +conjuncted-wg +251796 wrapper-scope +conjuncted-wg +251799 wrapper-scope +251801 wrapper-clause-scope +group +251805 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +251810 modifier-scope +modifier-scope +251814 modifier-scope +wrapper-clause-scope +251817 group +wrapper-scope +wrapper-scope +modifier-scope +251822 wrapper-clause-scope +251825 modifier-scope +modifier-scope +conjuncted-wg +251829 modifier-scope +modifier-scope +modifier-scope +251834 wrapper-scope +wrapper-clause-scope +251837 modifier-scope +251839 wrapper-clause-scope +251841 modifier-clause-scope +251844 conjuncted-wg +251846 wrapper-scope +251848 wrapper-clause-scope +wrapper-clause-scope +251851 modifier-scope +modifier-scope +251854 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +251859 wrapper-clause-scope +251861 apposition-group +apposition-group +modifier-scope +modifier-scope +251866 wrapper-scope +251868 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +251878 wrapper-clause-scope +251880 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +group +wrapper-clause-scope +251887 modifier-scope +251890 modifier-scope +conjuncted-wg +apposition-group +modifier-clause-scope +modifier-scope +modifier-scope +modifier-scope +251900 wrapper-scope +251902 modifier-clause-scope +modifier-scope +251905 modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-clause-scope +251912 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +251918 wrapper-scope +modifier-clause-scope +modifier-scope +251922 modifier-scope +251925 wrapper-scope +251927 wrapper-scope +251929 wrapper-clause-scope +group +group +251934 conjuncted-wg +251936 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +251942 modifier-scope +conjuncted-wg +251945 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +wrapper-scope +apposition-group +251954 wrapper-scope +251956 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +251961 modifier-scope +modifier-scope +modifier-scope +251965 modifier-scope +modifier-scope +modifier-scope +251970 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +251980 wrapper-scope +251982 conjuncted-wg +conjuncted-wg +251986 wrapper-scope +wrapper-clause-scope +251989 wrapper-scope +251991 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-clause-scope +modifier-scope +251997 wrapper-scope +modifier-scope +252000 wrapper-clause-scope +252003 group +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +252010 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +252016 conjuncted-wg +modifier-scope +252019 modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +252025 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +252033 modifier-scope +252035 wrapper-clause-scope +252037 wrapper-clause-scope +252040 modifier-scope +modifier-scope +252043 conjuncted-wg +conjuncted-wg +modifier-scope +252047 wrapper-clause-scope +252049 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +252059 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +252069 modifier-clause-scope +252072 wrapper-clause-scope +252074 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +group +252080 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +252088 wrapper-clause-scope +252090 modifier-scope +modifier-scope +modifier-scope +modifier-scope +252095 wrapper-clause-scope +252099 modifier-clause-scope +wrapper-clause-scope +252103 wrapper-clause-scope +252105 wrapper-scope +wrapper-clause-scope +252108 wrapper-clause-scope +252110 wrapper-clause-scope +252113 wrapper-clause-scope +252115 modifier-scope +wrapper-scope +252118 wrapper-clause-scope +252121 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +252128 modifier-scope +modifier-scope +252131 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +252136 conjuncted-wg +modifier-scope +conjuncted-wg +252140 conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +252148 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +252153 wrapper-scope +modifier-scope +252156 wrapper-clause-scope +252159 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +252168 wrapper-clause-scope +252171 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +252176 wrapper-scope +252178 wrapper-clause-scope +252181 conjuncted-wg +252183 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +252190 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +252196 wrapper-clause-scope +252198 group +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +252208 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +252214 wrapper-clause-scope +252216 wrapper-clause-scope +252218 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +252227 wrapper-scope +modifier-scope +252230 wrapper-clause-scope +252232 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +252242 wrapper-clause-scope +252246 wrapper-scope +modifier-scope +252249 conjuncted-wg +252251 wrapper-scope +modifier-scope +modifier-scope +252255 wrapper-scope +wrapper-clause-scope +252258 modifier-scope +wrapper-scope +wrapper-scope +wrapper-clause-scope +252263 wrapper-scope +252265 wrapper-clause-scope +252267 modifier-scope +252269 group +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +252274 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +252284 wrapper-scope +modifier-scope +252287 wrapper-clause-scope +252289 wrapper-clause-scope +wrapper-clause-scope +wrapper-clause-scope +252294 wrapper-scope +wrapper-clause-scope +252297 modifier-scope +wrapper-clause-scope +252302 wrapper-clause-scope +252304 wrapper-scope +modifier-scope +wrapper-scope +252308 wrapper-clause-scope +252311 modifier-scope +252313 conjuncted-wg +252315 wrapper-clause-scope +252318 wrapper-scope +modifier-scope +group +252324 conjuncted-wg +conjuncted-wg +252329 conjuncted-wg +wrapper-scope +252334 modifier-scope +252336 wrapper-scope +modifier-scope +wrapper-scope +252340 wrapper-clause-scope +252342 modifier-scope +modifier-scope +252348 wrapper-clause-scope +252352 conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +group +wrapper-scope +wrapper-clause-scope +252360 modifier-scope +modifier-scope +252364 modifier-scope +wrapper-clause-scope +252367 modifier-scope +252370 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +252380 wrapper-clause-scope +wrapper-clause-scope +252383 modifier-scope +252386 wrapper-scope +conjuncted-wg +252389 modifier-clause-scope +modifier-clause-scope +apposition-group +252395 wrapper-clause-scope +252398 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +252406 modifier-scope +wrapper-clause-scope +252409 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +252415 wrapper-clause-scope +252417 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +252423 wrapper-clause-scope +252425 modifier-scope +modifier-scope +modifier-scope +modifier-scope +252430 wrapper-clause-scope +252434 wrapper-scope +wrapper-clause-scope +252438 modifier-clause-scope +apposition-group +252441 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +252447 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +252457 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +252466 modifier-scope +modifier-scope +wrapper-scope +252470 wrapper-clause-scope +252475 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +252484 modifier-clause-scope +252486 conjuncted-wg +252488 wrapper-scope +apposition-group +modifier-scope +252492 modifier-scope +modifier-scope +conjuncted-wg +252496 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +252507 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +252512 modifier-scope +modifier-scope +252516 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +252521 wrapper-clause-scope +252524 wrapper-clause-scope +252526 wrapper-scope +modifier-scope +252529 conjuncted-wg +modifier-scope +group +252533 modifier-scope +modifier-scope +wrapper-clause-scope +252538 modifier-clause-scope +apposition-group +252542 modifier-scope +252544 wrapper-clause-scope +252547 wrapper-scope +wrapper-clause-scope +252550 modifier-scope +modifier-scope +modifier-scope +252554 wrapper-scope +conjuncted-wg +252558 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +252566 modifier-scope +252570 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +252575 conjuncted-wg +252579 modifier-scope +wrapper-clause-scope +252583 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +252588 apposition-group +modifier-scope +modifier-scope +modifier-scope +252593 wrapper-scope +conjuncted-wg +252596 modifier-scope +modifier-scope +modifier-scope +252600 wrapper-clause-scope +252602 wrapper-clause-scope +252605 group +252608 conjuncted-wg +group +252612 modifier-scope +modifier-scope +252616 wrapper-clause-scope +252618 wrapper-scope +modifier-clause-scope +modifier-clause-scope +252623 wrapper-clause-scope +252625 apposition-group +modifier-scope +modifier-scope +252629 wrapper-scope +252631 modifier-scope +modifier-scope +252634 conjuncted-wg +252637 conjuncted-wg +conjuncted-wg +conjuncted-wg +252641 modifier-clause-scope +wrapper-clause-scope +252645 wrapper-clause-scope +252648 modifier-scope +modifier-scope +conjuncted-wg +252652 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +252657 wrapper-scope +252660 modifier-clause-scope +252662 conjuncted-wg +252665 wrapper-clause-scope +252667 apposition-group +modifier-scope +modifier-scope +252671 modifier-scope +252673 wrapper-clause-scope +group +252676 modifier-scope +wrapper-clause-scope +252680 modifier-scope +modifier-scope +modifier-scope +modifier-scope +252685 wrapper-clause-scope +252688 modifier-scope +group +wrapper-clause-scope +252692 conjuncted-wg +252695 wrapper-clause-scope +252698 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +wrapper-clause-scope +252706 modifier-scope +modifier-scope +wrapper-scope +252710 wrapper-clause-scope +252712 group +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +252719 wrapper-clause-scope +252721 group +modifier-clause-scope +252724 modifier-clause-scope +modifier-clause-scope +252728 wrapper-clause-scope +252730 wrapper-scope +modifier-scope +252735 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +252740 wrapper-scope +252742 wrapper-clause-scope +252746 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +252753 wrapper-scope +252755 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +252761 wrapper-scope +252766 wrapper-clause-scope +252768 conjuncted-wg +group +252771 wrapper-clause-scope +252773 modifier-scope +252775 wrapper-clause-scope +252778 wrapper-scope +modifier-scope +252781 modifier-scope +conjuncted-wg +252784 wrapper-scope +252786 wrapper-clause-scope +252789 wrapper-clause-scope +252791 modifier-scope +wrapper-clause-scope +252795 conjuncted-wg +252797 wrapper-clause-scope +252802 wrapper-scope +wrapper-clause-scope +252806 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +252812 wrapper-scope +modifier-scope +conjuncted-wg +252816 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +252825 wrapper-scope +apposition-group +252829 wrapper-scope +conjuncted-wg +252836 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +252841 wrapper-scope +wrapper-scope +group +252845 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +252852 wrapper-clause-scope +252854 apposition-group +modifier-clause-scope +modifier-clause-scope +252858 modifier-scope +252860 modifier-scope +252862 conjuncted-wg +modifier-scope +252866 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +252875 wrapper-clause-scope +252878 wrapper-clause-scope +252880 modifier-clause-scope +wrapper-scope +group +252884 modifier-scope +252886 wrapper-clause-scope +252888 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +252895 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +252905 wrapper-scope +modifier-scope +group +252909 modifier-scope +252913 conjuncted-wg +conjuncted-wg +252916 wrapper-clause-scope +252919 conjuncted-wg +wrapper-scope +modifier-scope +252923 wrapper-clause-scope +252925 wrapper-clause-scope +252927 wrapper-clause-scope +252930 wrapper-clause-scope +252932 conjuncted-wg +252934 wrapper-clause-scope +252936 apposition-group +252938 wrapper-scope +252941 conjuncted-wg +252943 apposition-group +252946 wrapper-clause-scope +252948 modifier-scope +252950 modifier-scope +252952 wrapper-clause-scope +252957 modifier-scope +252959 conjuncted-wg +252961 modifier-scope +apposition-group +wrapper-clause-scope +252965 modifier-scope +252968 wrapper-scope +252970 wrapper-scope +252972 wrapper-clause-scope +252975 modifier-scope +wrapper-scope +modifier-scope +252979 wrapper-clause-scope +252981 modifier-scope +wrapper-scope +252985 modifier-clause-scope +wrapper-scope +252989 modifier-scope +conjuncted-wg +modifier-scope +252996 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +253001 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +253010 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +253017 wrapper-scope +modifier-scope +modifier-scope +253023 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253030 modifier-scope +conjuncted-wg +253033 modifier-scope +modifier-scope +modifier-scope +253040 modifier-scope +modifier-scope +253045 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +253050 modifier-scope +253052 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253060 wrapper-scope +modifier-scope +253065 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253070 modifier-scope +wrapper-clause-scope +253076 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253083 wrapper-clause-scope +253085 modifier-scope +253088 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +253095 modifier-scope +modifier-scope +253099 modifier-scope +modifier-scope +253102 wrapper-scope +modifier-scope +253106 group +modifier-scope +wrapper-clause-scope +253111 modifier-scope +wrapper-scope +253114 wrapper-clause-scope +253117 wrapper-clause-scope +253119 modifier-scope +253121 wrapper-scope +apposition-group +group +group +253126 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +group +253132 wrapper-scope +253136 modifier-scope +253138 modifier-scope +253140 modifier-scope +253142 wrapper-scope +253144 wrapper-scope +253146 modifier-scope +253149 wrapper-scope +modifier-scope +modifier-scope +253153 wrapper-clause-scope +253156 modifier-scope +wrapper-clause-scope +253159 modifier-scope +253161 wrapper-clause-scope +253164 modifier-scope +253166 conjuncted-wg +conjuncted-wg +253169 modifier-scope +253171 conjuncted-wg +253178 wrapper-scope +modifier-scope +253181 group +wrapper-scope +wrapper-scope +modifier-scope +group +253190 wrapper-scope +253192 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +253199 modifier-scope +253201 wrapper-clause-scope +group +253204 modifier-scope +253206 wrapper-scope +modifier-scope +modifier-scope +253210 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +253215 wrapper-scope +253217 wrapper-clause-scope +253219 modifier-scope +253221 modifier-clause-scope +modifier-clause-scope +253224 modifier-scope +253227 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +253236 wrapper-scope +apposition-group +group +modifier-scope +modifier-scope +modifier-scope +253243 conjuncted-wg +253246 wrapper-scope +modifier-clause-scope +modifier-clause-scope +253251 conjuncted-wg +253253 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +253259 wrapper-clause-scope +253261 wrapper-clause-scope +253263 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +253271 modifier-scope +modifier-scope +253276 wrapper-scope +253278 wrapper-scope +modifier-scope +253281 wrapper-clause-scope +253283 apposition-group +modifier-scope +253287 wrapper-clause-scope +253290 modifier-scope +253292 modifier-scope +conjuncted-wg +253296 wrapper-scope +253298 wrapper-clause-scope +253302 conjuncted-wg +253304 modifier-clause-scope +apposition-group +253309 wrapper-scope +253312 wrapper-clause-scope +253314 modifier-scope +253316 wrapper-clause-scope +253318 apposition-group +253321 wrapper-clause-scope +253323 wrapper-clause-scope +253325 wrapper-scope +apposition-group +253328 modifier-scope +253331 conjuncted-wg +modifier-scope +253334 wrapper-clause-scope +group +253338 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +253346 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +253353 wrapper-clause-scope +253355 conjuncted-wg +253357 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +253362 conjuncted-wg +253364 wrapper-scope +wrapper-clause-scope +253367 wrapper-scope +wrapper-clause-scope +253370 modifier-scope +modifier-scope +253373 wrapper-clause-scope +253375 modifier-scope +253377 conjuncted-wg +253379 wrapper-scope +wrapper-clause-scope +253382 group +253385 conjuncted-wg +253387 modifier-scope +modifier-scope +wrapper-clause-scope +253391 wrapper-scope +253393 wrapper-clause-scope +253397 modifier-clause-scope +modifier-clause-scope +253400 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +253404 conjuncted-wg +253406 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253412 modifier-scope +conjuncted-wg +253417 wrapper-scope +253419 conjuncted-wg +apposition-group +modifier-scope +253423 wrapper-scope +modifier-scope +253426 group +wrapper-clause-scope +253429 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253436 modifier-scope +modifier-scope +253439 conjuncted-wg +253441 wrapper-scope +modifier-scope +wrapper-clause-scope +253446 conjuncted-wg +modifier-clause-scope +wrapper-scope +apposition-group +253451 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +253456 wrapper-clause-scope +253458 wrapper-clause-scope +253462 modifier-scope +wrapper-clause-scope +253465 modifier-scope +wrapper-clause-scope +253468 wrapper-scope +253470 wrapper-clause-scope +253474 conjuncted-wg +modifier-clause-scope +253477 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +apposition-group +modifier-scope +253486 wrapper-clause-scope +253490 wrapper-clause-scope +253492 wrapper-clause-scope +253494 group +wrapper-clause-scope +253497 modifier-scope +253500 wrapper-clause-scope +group +253503 wrapper-clause-scope +253508 conjuncted-wg +253510 wrapper-clause-scope +253513 group +conjuncted-wg +group +modifier-clause-scope +modifier-clause-scope +253519 modifier-scope +conjuncted-wg +group +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +253527 wrapper-scope +conjuncted-wg +group +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +253535 conjuncted-wg +group +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-scope +253543 wrapper-scope +modifier-scope +253546 group +253548 wrapper-clause-scope +253550 wrapper-clause-scope +253553 wrapper-clause-scope +group +wrapper-clause-scope +253557 modifier-clause-scope +253559 wrapper-clause-scope +253561 wrapper-scope +253563 modifier-scope +group +wrapper-clause-scope +253567 modifier-scope +wrapper-scope +253572 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +253579 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +253586 wrapper-clause-scope +253588 modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +253594 wrapper-scope +253596 wrapper-clause-scope +253598 wrapper-clause-scope +253601 wrapper-clause-scope +253604 modifier-scope +apposition-group +253607 wrapper-scope +modifier-scope +wrapper-scope +253611 conjuncted-wg +253613 wrapper-clause-scope +253615 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +253622 modifier-scope +253624 group +253626 modifier-scope +wrapper-clause-scope +253629 wrapper-scope +253632 group +253634 modifier-scope +wrapper-clause-scope +253638 wrapper-clause-scope +253640 wrapper-clause-scope +253642 modifier-scope +wrapper-scope +253645 group +253648 modifier-scope +wrapper-scope +conjuncted-wg +253652 modifier-scope +wrapper-clause-scope +253656 conjuncted-wg +modifier-scope +253660 modifier-scope +253663 wrapper-clause-scope +253666 wrapper-clause-scope +group +253671 modifier-scope +conjuncted-wg +253674 modifier-scope +wrapper-clause-scope +253678 group +253684 apposition-group +apposition-group +modifier-clause-scope +modifier-clause-scope +253690 modifier-scope +modifier-scope +modifier-scope +253695 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +253703 group +253705 conjuncted-wg +modifier-scope +conjuncted-wg +253709 wrapper-scope +modifier-scope +253713 modifier-scope +253715 conjuncted-wg +253717 wrapper-clause-scope +253720 modifier-scope +modifier-clause-scope +apposition-group +253724 wrapper-scope +wrapper-clause-scope +253729 apposition-group +253732 wrapper-scope +wrapper-clause-scope +253735 modifier-scope +253737 wrapper-clause-scope +group +253740 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +253749 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +253754 wrapper-clause-scope +253756 modifier-scope +wrapper-clause-scope +253759 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +253766 wrapper-clause-scope +253768 wrapper-scope +wrapper-scope +modifier-scope +253772 modifier-scope +modifier-scope +253775 wrapper-clause-scope +group +253778 modifier-clause-scope +253781 wrapper-clause-scope +253784 wrapper-clause-scope +253786 wrapper-scope +wrapper-scope +modifier-scope +apposition-group +modifier-scope +253792 modifier-clause-scope +modifier-clause-scope +253795 modifier-scope +modifier-scope +253798 wrapper-clause-scope +group +253801 modifier-scope +253803 conjuncted-wg +wrapper-clause-scope +253806 modifier-scope +modifier-scope +253812 modifier-clause-scope +modifier-clause-scope +253815 conjuncted-wg +253817 wrapper-clause-scope +253819 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253824 wrapper-clause-scope +253827 wrapper-scope +conjuncted-wg +group +253832 wrapper-clause-scope +253836 wrapper-scope +wrapper-clause-scope +253839 wrapper-clause-scope +253841 modifier-scope +253844 wrapper-scope +253846 wrapper-clause-scope +253849 wrapper-clause-scope +253852 wrapper-clause-scope +253854 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253860 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +253878 modifier-scope +modifier-scope +253881 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +group +253887 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +253894 wrapper-clause-scope +group +group +253900 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +253905 modifier-scope +wrapper-scope +253910 group +modifier-scope +modifier-scope +253914 wrapper-scope +wrapper-clause-scope +253920 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +253924 conjuncted-wg +modifier-scope +modifier-scope +253929 modifier-scope +wrapper-scope +modifier-scope +253934 modifier-scope +wrapper-scope +modifier-scope +253939 group +modifier-scope +253942 conjuncted-wg +group +group +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +253955 modifier-scope +modifier-scope +wrapper-clause-scope +253959 modifier-scope +253961 wrapper-clause-scope +253963 modifier-scope +modifier-scope +modifier-scope +modifier-scope +253968 wrapper-clause-scope +253970 modifier-scope +modifier-scope +wrapper-clause-scope +253975 conjuncted-wg +253977 wrapper-scope +253979 wrapper-clause-scope +group +wrapper-clause-scope +253983 modifier-scope +253986 wrapper-scope +modifier-clause-scope +modifier-clause-scope +253991 conjuncted-wg +253993 conjuncted-wg +253996 wrapper-clause-scope +253998 wrapper-scope +254001 wrapper-clause-scope +254003 wrapper-clause-scope +254005 modifier-clause-scope +modifier-scope +254009 conjuncted-wg +254012 wrapper-clause-scope +group +254015 modifier-scope +modifier-scope +wrapper-clause-scope +254019 wrapper-scope +modifier-scope +254022 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +254028 wrapper-clause-scope +254031 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +group +254040 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +254046 wrapper-clause-scope +254048 modifier-scope +254050 wrapper-clause-scope +254054 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +254059 modifier-scope +conjuncted-wg +254063 modifier-scope +modifier-scope +conjuncted-wg +254067 modifier-scope +modifier-scope +modifier-scope +modifier-scope +254073 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +254079 group +254081 apposition-group +254083 wrapper-clause-scope +254086 apposition-group +modifier-scope +modifier-scope +modifier-scope +254091 wrapper-clause-scope +254096 wrapper-clause-scope +254098 wrapper-scope +254100 wrapper-clause-scope +254103 modifier-scope +conjuncted-wg +254107 wrapper-clause-scope +254110 wrapper-scope +modifier-scope +modifier-scope +254114 conjuncted-wg +254118 modifier-scope +254120 conjuncted-wg +254122 modifier-scope +254127 modifier-scope +modifier-scope +254132 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +254138 wrapper-scope +apposition-group +modifier-scope +modifier-scope +modifier-scope +254144 wrapper-scope +254146 conjuncted-wg +modifier-scope +254151 modifier-scope +wrapper-scope +wrapper-clause-scope +254155 modifier-scope +modifier-scope +modifier-scope +modifier-scope +254162 modifier-scope +modifier-scope +254165 wrapper-clause-scope +group +254168 modifier-scope +wrapper-scope +wrapper-clause-scope +254173 wrapper-scope +wrapper-clause-scope +254177 wrapper-scope +254179 wrapper-clause-scope +254181 modifier-scope +modifier-scope +254184 wrapper-clause-scope +254187 modifier-scope +254189 conjuncted-wg +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +254198 modifier-scope +modifier-scope +254201 wrapper-clause-scope +group +254205 modifier-scope +conjuncted-wg +254209 wrapper-clause-scope +group +wrapper-clause-scope +254214 modifier-scope +conjuncted-wg +254218 modifier-clause-scope +254220 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +254228 conjuncted-wg +254230 conjuncted-wg +254234 wrapper-clause-scope +254237 wrapper-clause-scope +254240 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +254248 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +254255 group +wrapper-clause-scope +254259 group +254261 modifier-scope +254263 modifier-scope +254265 modifier-scope +modifier-scope +254269 modifier-scope +modifier-scope +254272 conjuncted-wg +wrapper-scope +modifier-scope +254276 conjuncted-wg +apposition-group +group +254281 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +254286 wrapper-scope +modifier-scope +254291 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +modifier-scope +254302 wrapper-clause-scope +group +wrapper-clause-scope +254308 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +254316 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +254324 wrapper-scope +wrapper-clause-scope +254327 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +254333 conjuncted-wg +254335 modifier-scope +254338 conjuncted-wg +254340 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +254346 wrapper-scope +conjuncted-wg +254349 modifier-scope +modifier-scope +254354 modifier-scope +modifier-scope +254357 wrapper-clause-scope +254359 modifier-scope +modifier-scope +modifier-scope +modifier-scope +254364 modifier-scope +wrapper-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +apposition-group +254371 wrapper-clause-scope +254374 wrapper-clause-scope +254376 modifier-scope +254378 wrapper-clause-scope +254381 modifier-scope +conjuncted-wg +254384 wrapper-scope +254386 wrapper-clause-scope +254388 group +modifier-scope +modifier-scope +wrapper-clause-scope +254393 wrapper-scope +254395 group +wrapper-clause-scope +wrapper-clause-scope +254399 modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +group +254405 modifier-scope +modifier-scope +wrapper-clause-scope +254411 wrapper-clause-scope +group +wrapper-clause-scope +254417 wrapper-scope +modifier-scope +wrapper-clause-scope +254422 wrapper-clause-scope +254426 modifier-scope +modifier-scope +conjuncted-wg +254430 wrapper-scope +modifier-scope +254433 wrapper-clause-scope +254435 wrapper-clause-scope +254440 wrapper-clause-scope +group +wrapper-clause-scope +254445 conjuncted-wg +254448 modifier-scope +254450 group +254453 conjuncted-wg +254455 wrapper-clause-scope +254458 wrapper-scope +modifier-scope +254461 wrapper-clause-scope +group +254464 modifier-scope +wrapper-clause-scope +254471 modifier-scope +254473 modifier-scope +wrapper-clause-scope +254478 conjuncted-wg +254481 wrapper-clause-scope +254483 modifier-scope +254486 group +wrapper-clause-scope +254492 conjuncted-wg +conjuncted-wg +254495 modifier-scope +modifier-scope +conjuncted-wg +254500 modifier-scope +wrapper-scope +group +254504 wrapper-scope +254507 conjuncted-wg +254509 conjuncted-wg +254511 modifier-scope +modifier-scope +modifier-scope +254515 modifier-scope +254518 modifier-scope +modifier-scope +wrapper-clause-scope +254522 wrapper-scope +254524 wrapper-clause-scope +254530 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +254535 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +254541 wrapper-clause-scope +254543 modifier-scope +254549 modifier-scope +modifier-scope +conjuncted-wg +254554 wrapper-clause-scope +254558 modifier-scope +254560 wrapper-clause-scope +254562 modifier-scope +wrapper-scope +modifier-scope +254568 group +modifier-scope +modifier-scope +254572 wrapper-scope +254574 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +254585 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +254590 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +254596 group +modifier-scope +wrapper-clause-scope +254601 wrapper-clause-scope +254603 modifier-scope +conjuncted-wg +254606 wrapper-scope +conjuncted-wg +254609 modifier-scope +254612 wrapper-clause-scope +254615 wrapper-scope +conjuncted-wg +254618 wrapper-scope +254620 wrapper-clause-scope +254622 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +254629 modifier-scope +conjuncted-wg +254632 modifier-scope +254634 wrapper-clause-scope +group +wrapper-clause-scope +254638 modifier-scope +wrapper-scope +254641 modifier-scope +wrapper-scope +254646 modifier-scope +254648 wrapper-clause-scope +254650 modifier-scope +254652 wrapper-clause-scope +254655 group +wrapper-clause-scope +254658 wrapper-scope +254660 modifier-scope +modifier-scope +wrapper-clause-scope +254664 modifier-scope +modifier-scope +modifier-scope +254668 wrapper-clause-scope +group +wrapper-clause-scope +254672 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +254681 modifier-scope +modifier-scope +modifier-scope +modifier-scope +254687 modifier-scope +modifier-scope +254691 conjuncted-wg +254693 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +254698 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +254705 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +254712 modifier-scope +modifier-scope +254715 wrapper-clause-scope +group +group +254719 modifier-scope +254721 modifier-scope +modifier-scope +modifier-scope +group +254726 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +254731 wrapper-clause-scope +254734 modifier-scope +modifier-scope +conjuncted-wg +254738 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +254743 wrapper-scope +modifier-scope +254746 wrapper-clause-scope +254749 modifier-scope +modifier-scope +254752 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +254757 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +254765 modifier-scope +modifier-scope +254768 group +modifier-scope +modifier-scope +254774 wrapper-scope +modifier-scope +254777 conjuncted-wg +conjuncted-wg +254780 wrapper-scope +group +modifier-scope +wrapper-clause-scope +254785 wrapper-scope +modifier-scope +254789 wrapper-scope +modifier-scope +modifier-scope +254793 conjuncted-wg +254797 modifier-scope +254800 wrapper-clause-scope +254802 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +254807 modifier-scope +conjuncted-wg +modifier-scope +254813 modifier-scope +254817 conjuncted-wg +254820 wrapper-clause-scope +254822 modifier-scope +254826 conjuncted-wg +wrapper-scope +254830 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +254838 wrapper-clause-scope +group +wrapper-clause-scope +254843 modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +254851 conjuncted-wg +254853 wrapper-scope +modifier-scope +254856 group +254858 modifier-scope +modifier-scope +254862 group +254864 wrapper-clause-scope +group +254868 conjuncted-wg +254871 conjuncted-wg +modifier-scope +modifier-scope +254875 wrapper-clause-scope +254877 modifier-scope +modifier-scope +254880 group +modifier-scope +254883 conjuncted-wg +modifier-scope +254886 wrapper-clause-scope +254888 modifier-scope +wrapper-scope +wrapper-clause-scope +254895 conjuncted-wg +254897 wrapper-scope +254899 wrapper-clause-scope +254901 modifier-clause-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +254908 wrapper-scope +modifier-scope +modifier-scope +254914 conjuncted-wg +254920 conjuncted-wg +254922 conjuncted-wg +254928 conjuncted-wg +254932 wrapper-scope +wrapper-clause-scope +254936 group +254939 conjuncted-wg +254941 wrapper-clause-scope +254943 wrapper-clause-scope +254945 wrapper-scope +modifier-scope +modifier-scope +254952 wrapper-clause-scope +254954 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +254960 wrapper-clause-scope +254962 wrapper-clause-scope +254965 modifier-scope +modifier-scope +modifier-scope +modifier-scope +254970 wrapper-clause-scope +254972 wrapper-clause-scope +254974 modifier-scope +254976 wrapper-scope +modifier-clause-scope +apposition-group +254980 wrapper-scope +254982 wrapper-clause-scope +254984 modifier-scope +254986 wrapper-clause-scope +254990 modifier-scope +conjuncted-wg +254994 wrapper-clause-scope +254997 modifier-scope +conjuncted-wg +255001 modifier-scope +conjuncted-wg +255004 wrapper-scope +255008 modifier-scope +conjuncted-wg +255015 conjuncted-wg +255021 conjuncted-wg +255023 conjuncted-wg +255028 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +255033 modifier-scope +wrapper-scope +255038 wrapper-scope +conjuncted-wg +255047 wrapper-clause-scope +255050 conjuncted-wg +255052 modifier-scope +modifier-scope +conjuncted-wg +255057 wrapper-clause-scope +group +wrapper-clause-scope +255062 group +modifier-scope +255066 group +255068 conjuncted-wg +wrapper-clause-scope +255073 conjuncted-wg +255075 wrapper-clause-scope +255078 wrapper-clause-scope +255080 modifier-scope +255082 group +255085 apposition-group +wrapper-clause-scope +255091 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +255098 conjuncted-wg +255100 conjuncted-wg +255105 modifier-scope +modifier-scope +modifier-scope +255109 group +wrapper-clause-scope +group +255113 wrapper-scope +255115 modifier-scope +255117 wrapper-scope +wrapper-clause-scope +255120 group +wrapper-clause-scope +255123 modifier-scope +255125 conjuncted-wg +255127 conjuncted-wg +255130 conjuncted-wg +255132 wrapper-clause-scope +255134 wrapper-scope +modifier-scope +modifier-scope +255139 modifier-scope +modifier-scope +255142 wrapper-clause-scope +group +255147 conjuncted-wg +255151 group +group +255155 modifier-scope +255158 wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +255167 modifier-scope +modifier-scope +conjuncted-wg +255171 modifier-scope +modifier-scope +255177 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +255184 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +255189 modifier-scope +modifier-scope +wrapper-scope +255194 wrapper-scope +modifier-scope +255199 group +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +255206 modifier-scope +modifier-scope +wrapper-clause-scope +255210 wrapper-scope +conjuncted-wg +255213 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +255217 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +255224 wrapper-scope +modifier-scope +conjuncted-wg +255230 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +255236 group +modifier-scope +255241 wrapper-clause-scope +255244 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +255250 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +255256 wrapper-scope +wrapper-clause-scope +255260 conjuncted-wg +255264 modifier-scope +255266 modifier-scope +modifier-scope +wrapper-clause-scope +255270 modifier-scope +modifier-scope +modifier-scope +255276 wrapper-scope +wrapper-clause-scope +255281 modifier-scope +wrapper-scope +modifier-scope +255287 modifier-scope +255289 modifier-scope +conjuncted-wg +modifier-scope +apposition-group +modifier-scope +255295 wrapper-scope +modifier-scope +modifier-scope +255300 wrapper-clause-scope +255305 modifier-scope +modifier-scope +conjuncted-wg +255309 modifier-scope +modifier-scope +wrapper-clause-scope +255313 modifier-scope +255315 conjuncted-wg +255317 wrapper-clause-scope +255320 modifier-scope +wrapper-scope +255323 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +255330 wrapper-clause-scope +255333 modifier-scope +modifier-scope +conjuncted-wg +255337 modifier-scope +wrapper-clause-scope +255340 wrapper-scope +255342 group +255344 modifier-scope +wrapper-scope +255348 group +255352 group +255354 modifier-scope +wrapper-scope +255358 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +255363 wrapper-scope +255365 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +255370 wrapper-clause-scope +255373 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +255378 conjuncted-wg +255380 modifier-scope +255382 group +wrapper-clause-scope +255385 wrapper-scope +255388 wrapper-clause-scope +group +255392 modifier-scope +conjuncted-wg +255395 wrapper-scope +wrapper-clause-scope +255400 modifier-scope +255405 modifier-scope +modifier-scope +conjuncted-wg +255410 wrapper-clause-scope +255412 conjuncted-wg +255414 wrapper-scope +modifier-scope +255417 modifier-scope +conjuncted-wg +modifier-scope +255421 wrapper-clause-scope +255424 conjuncted-wg +255427 modifier-scope +conjuncted-wg +255430 modifier-scope +modifier-scope +modifier-scope +255436 modifier-scope +wrapper-clause-scope +255440 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +255450 wrapper-clause-scope +255452 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +255459 modifier-scope +255462 group +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +255470 conjuncted-wg +group +wrapper-scope +modifier-scope +group +wrapper-scope +modifier-scope +wrapper-scope +255479 conjuncted-wg +modifier-scope +modifier-scope +group +255486 conjuncted-wg +255489 group +modifier-scope +modifier-scope +255493 conjuncted-wg +group +modifier-scope +modifier-scope +group +wrapper-clause-scope +255500 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +255507 wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +wrapper-scope +modifier-clause-scope +modifier-scope +255516 conjuncted-wg +conjuncted-wg +255519 wrapper-scope +wrapper-scope +group +wrapper-clause-scope +255524 wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +255530 wrapper-scope +modifier-scope +255536 wrapper-scope +255539 wrapper-scope +modifier-scope +255542 modifier-clause-scope +modifier-clause-scope +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +group +wrapper-clause-scope +255552 conjuncted-wg +255554 wrapper-scope +wrapper-scope +255557 conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +group +255566 conjuncted-wg +255569 wrapper-scope +255571 modifier-clause-scope +255573 conjuncted-wg +255576 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +255583 wrapper-scope +modifier-scope +255586 conjuncted-wg +group +wrapper-clause-scope +255590 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +255595 wrapper-scope +apposition-group +255598 conjuncted-wg +modifier-scope +255601 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +255607 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +255618 group +apposition-group +apposition-group +255622 wrapper-scope +wrapper-clause-scope +255625 wrapper-scope +modifier-clause-scope +modifier-scope +255629 wrapper-scope +255632 wrapper-scope +255634 wrapper-clause-scope +255636 group +255638 modifier-scope +modifier-scope +modifier-scope +modifier-scope +255643 wrapper-scope +modifier-clause-scope +modifier-clause-scope +255647 wrapper-scope +modifier-scope +group +255651 group +group +wrapper-clause-scope +255655 modifier-scope +group +255658 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +255665 wrapper-scope +modifier-clause-scope +modifier-clause-scope +255669 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +255674 group +255676 wrapper-clause-scope +255679 wrapper-clause-scope +group +wrapper-clause-scope +255683 wrapper-clause-scope +255685 wrapper-scope +modifier-scope +modifier-scope +255689 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +255695 wrapper-clause-scope +group +255698 modifier-scope +255700 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +255708 modifier-scope +wrapper-clause-scope +255711 group +modifier-scope +255714 conjuncted-wg +modifier-clause-scope +255717 conjuncted-wg +255719 wrapper-scope +modifier-scope +conjuncted-wg +255723 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-clause-scope +modifier-clause-scope +wrapper-scope +modifier-clause-scope +wrapper-scope +group +wrapper-clause-scope +255737 wrapper-scope +conjuncted-wg +255740 wrapper-clause-scope +255742 modifier-scope +255744 modifier-scope +conjuncted-wg +wrapper-scope +255750 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +255760 group +wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-scope +255768 conjuncted-wg +255771 wrapper-clause-scope +group +255775 modifier-scope +wrapper-scope +conjuncted-wg +255779 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +255786 modifier-scope +conjuncted-wg +255789 modifier-scope +conjuncted-wg +255792 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +255797 wrapper-clause-scope +255799 group +modifier-scope +wrapper-clause-scope +255803 wrapper-scope +255805 wrapper-clause-scope +group +255810 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +255824 wrapper-scope +wrapper-scope +wrapper-clause-scope +255828 wrapper-clause-scope +255830 modifier-scope +255834 wrapper-scope +group +modifier-clause-scope +modifier-clause-scope +255840 conjuncted-wg +255842 wrapper-scope +conjuncted-wg +255845 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +255851 modifier-scope +wrapper-scope +modifier-scope +255855 modifier-scope +modifier-scope +wrapper-scope +group +255860 wrapper-clause-scope +255862 wrapper-scope +255865 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +255871 wrapper-clause-scope +255873 wrapper-scope +modifier-scope +255876 wrapper-clause-scope +255878 modifier-scope +group +wrapper-clause-scope +255883 wrapper-clause-scope +255889 apposition-group +255891 wrapper-clause-scope +255893 wrapper-scope +modifier-scope +conjuncted-wg +255898 modifier-scope +conjuncted-wg +modifier-scope +255904 modifier-scope +wrapper-scope +255907 wrapper-clause-scope +group +255910 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +255918 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +255922 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +255929 conjuncted-wg +255931 modifier-scope +255935 conjuncted-wg +255942 wrapper-scope +255944 conjuncted-wg +modifier-clause-scope +apposition-group +modifier-scope +255949 wrapper-scope +modifier-scope +255952 group +255954 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +255960 wrapper-scope +255965 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +255973 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +255979 conjuncted-wg +modifier-clause-scope +wrapper-scope +255983 conjuncted-wg +apposition-group +wrapper-clause-scope +255987 wrapper-scope +wrapper-scope +255990 modifier-scope +conjuncted-wg +modifier-scope +255994 wrapper-clause-scope +255996 modifier-scope +modifier-scope +modifier-scope +256001 modifier-scope +modifier-scope +modifier-scope +modifier-scope +256007 wrapper-clause-scope +256009 conjuncted-wg +group +wrapper-clause-scope +256013 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +256018 modifier-scope +256020 group +256023 modifier-scope +256025 modifier-scope +256027 modifier-scope +256031 modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +group +modifier-scope +modifier-scope +256040 conjuncted-wg +modifier-scope +modifier-scope +256044 wrapper-clause-scope +group +256047 wrapper-clause-scope +256049 wrapper-scope +modifier-scope +256053 wrapper-clause-scope +256056 wrapper-clause-scope +256060 conjuncted-wg +conjuncted-wg +256063 wrapper-clause-scope +256067 conjuncted-wg +wrapper-scope +256070 wrapper-clause-scope +256072 wrapper-scope +wrapper-clause-scope +256075 modifier-scope +wrapper-scope +256078 wrapper-clause-scope +256080 modifier-scope +modifier-scope +256085 conjuncted-wg +256087 wrapper-scope +modifier-scope +modifier-scope +256096 conjuncted-wg +256098 wrapper-clause-scope +256103 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +256113 modifier-scope +modifier-scope +256117 modifier-scope +modifier-scope +256120 wrapper-clause-scope +256123 wrapper-scope +modifier-clause-scope +256126 conjuncted-wg +256128 wrapper-scope +modifier-scope +modifier-scope +256132 conjuncted-wg +modifier-scope +modifier-scope +256139 modifier-scope +modifier-scope +wrapper-clause-scope +group +wrapper-clause-scope +256145 modifier-scope +modifier-scope +256148 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +256154 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +256161 group +modifier-scope +modifier-scope +modifier-scope +256166 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +256183 conjuncted-wg +256185 wrapper-scope +modifier-scope +256188 wrapper-clause-scope +group +256191 modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +256197 wrapper-scope +256199 modifier-scope +modifier-scope +wrapper-clause-scope +256203 modifier-scope +256206 modifier-scope +256209 conjuncted-wg +256211 modifier-scope +256215 modifier-scope +wrapper-scope +group +wrapper-clause-scope +256220 modifier-scope +256222 modifier-scope +wrapper-clause-scope +256225 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +256231 modifier-scope +modifier-scope +256234 wrapper-clause-scope +256236 modifier-scope +group +group +256241 wrapper-scope +conjuncted-wg +256244 wrapper-scope +256246 wrapper-clause-scope +256248 wrapper-scope +wrapper-clause-scope +256252 wrapper-clause-scope +256256 wrapper-clause-scope +256260 conjuncted-wg +256262 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +256267 wrapper-clause-scope +256269 conjuncted-wg +group +256273 wrapper-scope +conjuncted-wg +256278 conjuncted-wg +256281 wrapper-clause-scope +256285 modifier-scope +wrapper-scope +conjuncted-wg +256289 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +256294 modifier-scope +wrapper-scope +256298 wrapper-clause-scope +256300 wrapper-clause-scope +256302 wrapper-clause-scope +256304 modifier-scope +modifier-scope +256307 wrapper-clause-scope +256309 wrapper-clause-scope +256311 wrapper-scope +256313 wrapper-clause-scope +group +256319 modifier-scope +modifier-scope +conjuncted-wg +256323 conjuncted-wg +256325 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +256331 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +256335 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +256342 wrapper-scope +256344 conjuncted-wg +modifier-scope +wrapper-clause-scope +256348 wrapper-scope +256350 wrapper-clause-scope +256352 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +256358 wrapper-clause-scope +group +256364 wrapper-clause-scope +256366 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +256371 wrapper-clause-scope +256374 modifier-scope +wrapper-scope +256377 wrapper-scope +wrapper-clause-scope +256380 modifier-scope +256382 conjuncted-wg +256384 conjuncted-wg +256388 wrapper-scope +256390 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +256396 wrapper-clause-scope +group +256399 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +256405 apposition-group +256407 wrapper-scope +apposition-group +256410 modifier-scope +wrapper-scope +256414 modifier-scope +group +group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-clause-scope +apposition-group +group +256430 wrapper-scope +modifier-scope +256433 wrapper-scope +256435 conjuncted-wg +conjuncted-wg +256438 wrapper-clause-scope +group +group +256443 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +256449 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +256458 wrapper-clause-scope +256461 wrapper-clause-scope +256463 modifier-clause-scope +modifier-clause-scope +256467 modifier-scope +modifier-scope +modifier-scope +256472 wrapper-scope +256474 group +conjuncted-wg +modifier-scope +wrapper-scope +256479 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +256486 wrapper-clause-scope +256491 conjuncted-wg +256493 wrapper-clause-scope +256495 wrapper-scope +modifier-scope +wrapper-clause-scope +256499 conjuncted-wg +256501 wrapper-scope +conjuncted-wg +256504 wrapper-scope +256506 wrapper-clause-scope +256508 modifier-scope +modifier-scope +256511 wrapper-clause-scope +256514 conjuncted-wg +wrapper-scope +256518 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +256525 modifier-scope +256528 wrapper-scope +wrapper-scope +256531 group +group +group +256535 wrapper-clause-scope +256537 wrapper-scope +wrapper-clause-scope +256540 modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +group +wrapper-clause-scope +256548 wrapper-clause-scope +256550 modifier-scope +group +wrapper-clause-scope +256554 wrapper-clause-scope +256556 wrapper-scope +apposition-group +256559 modifier-scope +wrapper-clause-scope +256562 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +group +256569 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +256580 group +group +group +256584 modifier-scope +modifier-scope +wrapper-scope +256588 wrapper-scope +wrapper-clause-scope +256591 group +wrapper-clause-scope +256594 modifier-scope +modifier-scope +modifier-scope +256598 wrapper-clause-scope +256600 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +256608 group +group +wrapper-clause-scope +256612 wrapper-scope +modifier-scope +256615 wrapper-clause-scope +256618 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +256626 wrapper-clause-scope +group +256630 modifier-scope +256632 wrapper-scope +256634 conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-scope +conjuncted-wg +group +wrapper-clause-scope +256642 wrapper-scope +group +256646 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +256652 modifier-scope +wrapper-clause-scope +256655 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +256661 wrapper-clause-scope +group +wrapper-clause-scope +256665 wrapper-scope +256667 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +256671 modifier-scope +modifier-scope +modifier-scope +256675 wrapper-clause-scope +256677 wrapper-clause-scope +256679 modifier-scope +modifier-scope +256682 conjuncted-wg +256684 wrapper-clause-scope +256686 modifier-clause-scope +wrapper-clause-scope +256689 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +256698 wrapper-clause-scope +256700 modifier-scope +wrapper-scope +256703 modifier-scope +256705 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +256719 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +wrapper-scope +group +group +wrapper-clause-scope +256730 modifier-scope +256732 modifier-scope +modifier-scope +256735 wrapper-clause-scope +group +256738 modifier-scope +256740 modifier-scope +modifier-scope +modifier-scope +modifier-scope +256748 wrapper-clause-scope +256750 modifier-scope +wrapper-clause-scope +256754 modifier-scope +conjuncted-wg +256758 wrapper-clause-scope +256760 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +256767 wrapper-scope +group +256770 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +256776 wrapper-scope +256783 group +modifier-scope +modifier-scope +wrapper-clause-scope +256788 modifier-clause-scope +256792 modifier-scope +modifier-scope +256796 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +256805 wrapper-clause-scope +group +256809 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +256815 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +256826 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +256834 wrapper-scope +group +modifier-clause-scope +apposition-group +modifier-scope +wrapper-clause-scope +256841 wrapper-scope +256844 conjuncted-wg +256847 modifier-scope +modifier-scope +modifier-scope +256851 wrapper-scope +256855 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +modifier-scope +modifier-scope +256864 wrapper-scope +modifier-scope +256868 group +modifier-scope +modifier-scope +wrapper-scope +256874 group +group +modifier-scope +256878 conjuncted-wg +group +wrapper-clause-scope +256882 modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +256888 group +conjuncted-wg +group +256894 conjuncted-wg +wrapper-scope +modifier-scope +256898 modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +256904 wrapper-clause-scope +256906 modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +256914 conjuncted-wg +wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +256920 apposition-group +modifier-scope +256923 conjuncted-wg +256926 wrapper-scope +modifier-scope +modifier-scope +256930 conjuncted-wg +256932 wrapper-scope +modifier-scope +modifier-scope +256936 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +256943 wrapper-clause-scope +256946 modifier-scope +modifier-scope +256949 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +256956 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +256961 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +256966 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +256971 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +256976 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +256981 wrapper-scope +modifier-scope +modifier-scope +256985 wrapper-clause-scope +256989 conjuncted-wg +group +wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +256999 wrapper-clause-scope +257004 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +257011 wrapper-clause-scope +257015 modifier-scope +modifier-scope +257018 conjuncted-wg +257020 wrapper-clause-scope +257023 modifier-scope +257025 wrapper-clause-scope +257027 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +257036 modifier-scope +conjuncted-wg +group +257040 wrapper-clause-scope +group +257044 wrapper-scope +wrapper-clause-scope +257048 conjuncted-wg +wrapper-scope +modifier-clause-scope +modifier-clause-scope +257054 wrapper-clause-scope +257056 wrapper-scope +257058 wrapper-scope +modifier-scope +modifier-scope +257062 wrapper-scope +257064 wrapper-clause-scope +group +257067 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +257073 modifier-scope +group +modifier-scope +modifier-scope +group +257079 wrapper-clause-scope +257083 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +257090 wrapper-clause-scope +group +257094 modifier-clause-scope +257096 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +257103 conjuncted-wg +257105 modifier-scope +modifier-scope +modifier-scope +257109 wrapper-clause-scope +257111 group +257113 wrapper-scope +group +257116 conjuncted-wg +257118 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +257123 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +257129 wrapper-scope +conjuncted-wg +257132 modifier-scope +modifier-scope +257135 wrapper-scope +257137 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +257142 wrapper-clause-scope +257144 modifier-scope +modifier-scope +257148 wrapper-clause-scope +257150 modifier-clause-scope +257152 wrapper-scope +modifier-scope +wrapper-scope +257157 conjuncted-wg +257159 wrapper-scope +modifier-scope +modifier-scope +257163 wrapper-clause-scope +257165 modifier-scope +modifier-scope +modifier-scope +257169 wrapper-clause-scope +group +257172 modifier-scope +257175 wrapper-scope +modifier-scope +wrapper-scope +257179 wrapper-clause-scope +group +257182 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +257187 modifier-scope +wrapper-scope +apposition-group +257191 modifier-scope +257193 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +257198 modifier-scope +257200 wrapper-clause-scope +257203 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +257210 wrapper-clause-scope +257212 wrapper-scope +modifier-scope +257217 modifier-scope +conjuncted-wg +257220 modifier-scope +modifier-scope +257223 wrapper-clause-scope +group +wrapper-clause-scope +257230 modifier-scope +modifier-clause-scope +257233 conjuncted-wg +257235 modifier-scope +257238 wrapper-scope +conjuncted-wg +257242 modifier-scope +conjuncted-wg +257245 group +group +modifier-scope +257249 modifier-scope +conjuncted-wg +257254 modifier-scope +257256 conjuncted-wg +257258 modifier-clause-scope +257261 conjuncted-wg +group +257264 modifier-clause-scope +group +257267 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +257276 conjuncted-wg +modifier-scope +257279 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +257287 wrapper-scope +conjuncted-wg +257292 wrapper-scope +modifier-scope +conjuncted-wg +257296 wrapper-clause-scope +257299 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +257306 modifier-scope +257311 conjuncted-wg +wrapper-scope +wrapper-scope +modifier-scope +257316 wrapper-clause-scope +257318 wrapper-scope +modifier-clause-scope +modifier-clause-scope +257322 wrapper-scope +257324 conjuncted-wg +257326 wrapper-scope +257329 wrapper-scope +modifier-scope +modifier-scope +257333 modifier-scope +257336 group +257338 modifier-scope +modifier-scope +wrapper-scope +257343 conjuncted-wg +257345 wrapper-scope +modifier-scope +modifier-scope +257350 modifier-scope +257352 modifier-scope +conjuncted-wg +modifier-scope +257356 modifier-scope +257358 modifier-clause-scope +257361 modifier-scope +257363 modifier-scope +257365 modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +group +modifier-scope +257373 modifier-scope +conjuncted-wg +257376 modifier-scope +modifier-scope +257380 modifier-scope +257382 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +257390 modifier-scope +conjuncted-wg +modifier-clause-scope +257394 wrapper-scope +257396 modifier-scope +modifier-scope +modifier-scope +257400 wrapper-clause-scope +257403 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +257409 wrapper-clause-scope +257411 wrapper-scope +257414 modifier-scope +modifier-scope +257417 wrapper-clause-scope +257421 wrapper-clause-scope +group +wrapper-clause-scope +257427 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +group +modifier-scope +257435 conjuncted-wg +group +conjuncted-wg +257440 modifier-scope +modifier-scope +257443 wrapper-clause-scope +257447 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +257453 wrapper-scope +modifier-clause-scope +modifier-clause-scope +257457 modifier-scope +257460 modifier-scope +modifier-scope +modifier-scope +257465 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +257471 wrapper-scope +modifier-scope +257476 modifier-scope +modifier-scope +257479 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +257486 modifier-clause-scope +modifier-clause-scope +257489 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +257500 conjuncted-wg +257503 wrapper-clause-scope +257505 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +257511 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +257518 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +257524 wrapper-scope +257526 modifier-scope +wrapper-scope +modifier-scope +257530 wrapper-clause-scope +257533 wrapper-clause-scope +257536 conjuncted-wg +257539 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +257546 wrapper-scope +modifier-scope +modifier-scope +257551 wrapper-clause-scope +257554 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +257562 wrapper-scope +modifier-scope +modifier-scope +257566 conjuncted-wg +modifier-scope +modifier-scope +257570 wrapper-clause-scope +257573 modifier-scope +wrapper-clause-scope +257577 modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +257583 modifier-scope +wrapper-scope +modifier-scope +257587 group +257589 modifier-scope +wrapper-clause-scope +257593 wrapper-scope +257595 group +257598 wrapper-scope +257600 wrapper-clause-scope +257602 modifier-scope +wrapper-scope +257606 wrapper-scope +modifier-scope +conjuncted-wg +257612 conjuncted-wg +257615 conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +257620 group +257622 modifier-scope +257625 wrapper-scope +257627 modifier-scope +conjuncted-wg +257631 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +257640 wrapper-scope +257642 conjuncted-wg +257646 wrapper-clause-scope +257649 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +257656 wrapper-scope +257658 wrapper-clause-scope +257665 conjuncted-wg +wrapper-scope +conjuncted-wg +257669 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +257675 modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +257684 wrapper-clause-scope +257686 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +wrapper-scope +257692 wrapper-scope +apposition-group +257695 modifier-scope +257697 conjuncted-wg +wrapper-clause-scope +257700 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +257708 wrapper-clause-scope +257712 wrapper-clause-scope +257715 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +257721 wrapper-clause-scope +257723 wrapper-scope +modifier-scope +257726 conjuncted-wg +group +modifier-scope +257730 modifier-scope +conjuncted-wg +group +257735 modifier-scope +group +wrapper-scope +modifier-scope +257741 group +257743 wrapper-scope +257746 modifier-scope +modifier-scope +257750 conjuncted-wg +257752 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +257759 wrapper-clause-scope +257762 modifier-scope +conjuncted-wg +257765 conjuncted-wg +257767 conjuncted-wg +257769 apposition-group +modifier-scope +modifier-scope +modifier-scope +257775 wrapper-scope +modifier-scope +conjuncted-wg +257784 conjuncted-wg +modifier-scope +257787 modifier-scope +wrapper-scope +257790 wrapper-clause-scope +257792 modifier-scope +modifier-scope +modifier-scope +modifier-scope +257797 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +group +modifier-scope +modifier-scope +group +257806 wrapper-clause-scope +257808 wrapper-clause-scope +257810 modifier-scope +modifier-scope +wrapper-scope +257814 wrapper-clause-scope +257816 modifier-clause-scope +apposition-group +257820 wrapper-scope +conjuncted-wg +257823 wrapper-clause-scope +257826 modifier-scope +conjuncted-wg +257829 wrapper-scope +modifier-scope +257832 group +wrapper-clause-scope +257836 wrapper-clause-scope +257838 wrapper-scope +conjuncted-wg +257841 wrapper-scope +modifier-scope +257845 conjuncted-wg +257847 modifier-scope +257849 wrapper-clause-scope +257851 wrapper-clause-scope +257853 wrapper-scope +modifier-scope +wrapper-clause-scope +257857 wrapper-scope +modifier-scope +257860 wrapper-scope +conjuncted-wg +257863 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +257871 group +wrapper-clause-scope +257874 wrapper-clause-scope +257878 conjuncted-wg +257880 modifier-scope +wrapper-scope +257883 group +wrapper-clause-scope +257886 modifier-scope +modifier-scope +257890 conjuncted-wg +wrapper-clause-scope +257894 modifier-scope +conjuncted-wg +257897 wrapper-scope +modifier-scope +257900 group +wrapper-clause-scope +257903 wrapper-clause-scope +257907 conjuncted-wg +257909 modifier-scope +modifier-scope +wrapper-scope +257915 modifier-scope +wrapper-clause-scope +257919 wrapper-clause-scope +257921 wrapper-clause-scope +257923 wrapper-scope +modifier-scope +group +group +group +257929 wrapper-clause-scope +257932 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +257937 group +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +257946 wrapper-clause-scope +257948 wrapper-scope +wrapper-clause-scope +257951 wrapper-clause-scope +257953 modifier-scope +modifier-scope +257958 wrapper-clause-scope +257961 wrapper-clause-scope +257963 conjuncted-wg +257965 modifier-scope +modifier-scope +conjuncted-wg +257969 wrapper-scope +modifier-scope +257972 wrapper-clause-scope +group +wrapper-clause-scope +257976 modifier-scope +modifier-scope +257979 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +257985 wrapper-scope +wrapper-clause-scope +257988 wrapper-scope +257992 wrapper-clause-scope +257995 wrapper-scope +wrapper-clause-scope +257999 modifier-scope +258004 group +modifier-scope +apposition-group +modifier-scope +258009 wrapper-scope +258012 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +258020 modifier-scope +258024 wrapper-scope +conjuncted-wg +wrapper-scope +258029 modifier-scope +conjuncted-wg +258032 modifier-scope +modifier-scope +modifier-scope +258037 wrapper-clause-scope +258041 wrapper-scope +modifier-scope +conjuncted-wg +258045 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +258053 wrapper-clause-scope +258055 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +258061 wrapper-scope +258063 wrapper-clause-scope +group +258067 wrapper-clause-scope +258069 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +258075 wrapper-scope +modifier-scope +conjuncted-wg +258080 wrapper-clause-scope +258082 modifier-scope +modifier-scope +modifier-scope +258088 wrapper-clause-scope +258090 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +258097 wrapper-clause-scope +258099 modifier-scope +wrapper-scope +258104 wrapper-clause-scope +258106 modifier-scope +258110 wrapper-clause-scope +258112 modifier-scope +258116 wrapper-clause-scope +258118 modifier-scope +wrapper-scope +258123 wrapper-clause-scope +258126 conjuncted-wg +258128 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +258134 modifier-scope +258138 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +258145 wrapper-clause-scope +258147 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +258153 wrapper-clause-scope +group +258156 modifier-scope +group +modifier-scope +wrapper-scope +modifier-scope +258162 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +258176 wrapper-scope +modifier-scope +258179 wrapper-clause-scope +258183 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +258189 wrapper-clause-scope +258191 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +258200 modifier-scope +conjuncted-wg +group +group +wrapper-clause-scope +258206 wrapper-clause-scope +258209 modifier-scope +modifier-scope +wrapper-clause-scope +258213 wrapper-clause-scope +258215 modifier-scope +258219 wrapper-scope +conjuncted-wg +258222 wrapper-scope +258224 wrapper-clause-scope +258226 wrapper-clause-scope +258228 wrapper-scope +258230 wrapper-scope +258232 wrapper-clause-scope +wrapper-clause-scope +258235 wrapper-clause-scope +258237 wrapper-scope +258239 wrapper-clause-scope +258242 wrapper-scope +modifier-scope +conjuncted-wg +258248 group +wrapper-clause-scope +258251 modifier-scope +258253 wrapper-clause-scope +258255 conjuncted-wg +wrapper-clause-scope +258258 modifier-scope +wrapper-scope +modifier-scope +258263 modifier-scope +wrapper-clause-scope +258266 wrapper-clause-scope +258268 wrapper-clause-scope +258270 modifier-scope +258273 group +modifier-scope +wrapper-clause-scope +258278 modifier-scope +conjuncted-wg +modifier-scope +258283 modifier-clause-scope +wrapper-clause-scope +258286 modifier-scope +modifier-scope +258290 wrapper-clause-scope +258292 modifier-scope +modifier-scope +modifier-scope +258299 wrapper-scope +wrapper-scope +258303 wrapper-clause-scope +258305 wrapper-scope +258307 wrapper-scope +modifier-scope +258310 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +258316 wrapper-clause-scope +258318 modifier-clause-scope +apposition-group +258322 modifier-scope +modifier-scope +modifier-scope +258327 wrapper-scope +wrapper-clause-scope +258331 wrapper-clause-scope +258335 modifier-clause-scope +apposition-group +258338 wrapper-scope +wrapper-scope +conjuncted-wg +258345 wrapper-clause-scope +group +258348 wrapper-clause-scope +258351 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +258357 conjuncted-wg +258359 conjuncted-wg +wrapper-clause-scope +258363 wrapper-scope +258365 wrapper-clause-scope +258368 wrapper-scope +wrapper-clause-scope +258372 wrapper-clause-scope +258374 conjuncted-wg +258376 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +258381 group +wrapper-clause-scope +258384 wrapper-clause-scope +258387 wrapper-clause-scope +258389 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +258393 modifier-scope +wrapper-scope +258396 group +258400 modifier-scope +modifier-scope +258403 modifier-scope +258405 wrapper-clause-scope +258409 wrapper-scope +modifier-scope +wrapper-clause-scope +258417 modifier-scope +conjuncted-wg +258423 wrapper-clause-scope +258425 wrapper-clause-scope +258427 wrapper-clause-scope +258429 wrapper-clause-scope +258432 wrapper-clause-scope +group +258435 modifier-clause-scope +wrapper-clause-scope +258438 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +258446 modifier-clause-scope +wrapper-clause-scope +258449 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +258454 modifier-scope +modifier-scope +258457 wrapper-clause-scope +258459 wrapper-clause-scope +258462 wrapper-clause-scope +258464 modifier-scope +conjuncted-wg +258467 wrapper-scope +258470 modifier-clause-scope +wrapper-clause-scope +258473 wrapper-scope +258477 modifier-clause-scope +wrapper-clause-scope +258480 conjuncted-wg +258487 wrapper-clause-scope +258489 modifier-scope +wrapper-clause-scope +258494 wrapper-clause-scope +258496 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +258501 wrapper-scope +modifier-scope +258505 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +258511 modifier-scope +modifier-scope +modifier-scope +258515 group +258517 modifier-clause-scope +wrapper-clause-scope +258520 wrapper-scope +modifier-scope +wrapper-clause-scope +258524 modifier-scope +wrapper-scope +258527 wrapper-clause-scope +258530 wrapper-clause-scope +258532 wrapper-scope +modifier-scope +258536 wrapper-scope +258538 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +258546 group +258549 modifier-clause-scope +wrapper-clause-scope +258552 wrapper-scope +modifier-scope +conjuncted-wg +258556 wrapper-clause-scope +258558 modifier-scope +modifier-scope +wrapper-clause-scope +258562 modifier-clause-scope +apposition-group +258565 wrapper-scope +wrapper-clause-scope +258569 wrapper-clause-scope +wrapper-clause-scope +258573 wrapper-scope +modifier-scope +conjuncted-wg +258577 modifier-scope +modifier-scope +258580 wrapper-clause-scope +258582 wrapper-scope +258584 wrapper-clause-scope +258587 modifier-scope +modifier-scope +conjuncted-wg +258591 modifier-scope +modifier-scope +modifier-scope +258597 wrapper-clause-scope +258599 modifier-scope +258602 wrapper-clause-scope +258604 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +258610 modifier-scope +258613 wrapper-clause-scope +258615 wrapper-scope +modifier-scope +258620 modifier-clause-scope +wrapper-clause-scope +258623 modifier-scope +modifier-scope +conjuncted-wg +258627 wrapper-clause-scope +258629 modifier-scope +modifier-clause-scope +modifier-scope +258633 wrapper-scope +258636 wrapper-scope +modifier-scope +wrapper-clause-scope +258640 wrapper-scope +modifier-scope +modifier-scope +258644 wrapper-clause-scope +258646 wrapper-scope +modifier-scope +258649 modifier-scope +258651 wrapper-clause-scope +group +wrapper-clause-scope +258656 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +258662 modifier-scope +modifier-scope +conjuncted-wg +258666 modifier-scope +modifier-scope +wrapper-scope +258670 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +258677 group +258679 conjuncted-wg +modifier-scope +wrapper-scope +258683 conjuncted-wg +258687 wrapper-scope +wrapper-clause-scope +258690 wrapper-scope +modifier-scope +conjuncted-wg +group +258695 wrapper-scope +modifier-scope +modifier-scope +258699 wrapper-clause-scope +wrapper-clause-scope +258702 modifier-scope +modifier-scope +258706 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +258714 group +wrapper-clause-scope +258717 modifier-scope +258719 wrapper-scope +modifier-scope +conjuncted-wg +258724 wrapper-clause-scope +258726 wrapper-scope +258729 modifier-scope +modifier-scope +conjuncted-wg +258733 modifier-scope +wrapper-scope +258736 wrapper-clause-scope +258738 modifier-scope +modifier-scope +wrapper-clause-scope +258743 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +conjuncted-wg +group +258752 wrapper-clause-scope +258755 wrapper-clause-scope +258758 wrapper-clause-scope +258760 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +258765 wrapper-scope +258767 wrapper-clause-scope +258769 wrapper-scope +wrapper-clause-scope +258772 wrapper-scope +258774 wrapper-scope +modifier-clause-scope +apposition-group +258781 group +258783 modifier-scope +group +258786 modifier-scope +wrapper-clause-scope +258789 wrapper-scope +modifier-scope +wrapper-clause-scope +258793 modifier-scope +wrapper-scope +modifier-scope +258798 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +258805 modifier-clause-scope +apposition-group +258809 group +wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +258815 modifier-clause-scope +apposition-group +258818 modifier-scope +wrapper-scope +modifier-scope +258822 wrapper-clause-scope +258824 apposition-group +modifier-scope +modifier-scope +258831 conjuncted-wg +258833 wrapper-scope +modifier-scope +258839 wrapper-scope +modifier-scope +conjuncted-wg +258843 wrapper-clause-scope +258846 modifier-scope +wrapper-scope +conjuncted-wg +258850 modifier-scope +wrapper-scope +modifier-scope +258855 wrapper-scope +modifier-scope +258860 wrapper-scope +wrapper-scope +modifier-scope +conjuncted-wg +258865 modifier-scope +258868 wrapper-scope +modifier-scope +258872 wrapper-clause-scope +258874 modifier-scope +258877 wrapper-scope +modifier-scope +258881 wrapper-scope +258883 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +258894 wrapper-clause-scope +258897 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +258903 modifier-clause-scope +wrapper-clause-scope +258906 wrapper-scope +modifier-scope +conjuncted-wg +258910 modifier-scope +258913 wrapper-clause-scope +258915 modifier-scope +wrapper-clause-scope +258918 modifier-scope +258921 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +258928 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +258937 wrapper-scope +258940 wrapper-scope +modifier-scope +group +wrapper-clause-scope +258945 modifier-scope +wrapper-clause-scope +258949 conjuncted-wg +258951 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +258960 wrapper-clause-scope +258962 modifier-scope +modifier-scope +258969 wrapper-clause-scope +258972 modifier-scope +wrapper-scope +conjuncted-wg +258976 modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +258982 wrapper-scope +wrapper-clause-scope +258986 wrapper-scope +conjuncted-wg +258989 wrapper-scope +wrapper-clause-scope +258992 wrapper-scope +modifier-scope +modifier-scope +258996 wrapper-clause-scope +258999 conjuncted-wg +wrapper-clause-scope +259002 modifier-scope +modifier-scope +modifier-scope +modifier-scope +259007 group +wrapper-clause-scope +259012 modifier-scope +modifier-scope +modifier-scope +259017 modifier-scope +wrapper-scope +conjuncted-wg +259021 wrapper-scope +modifier-scope +259024 wrapper-clause-scope +259027 conjuncted-wg +modifier-clause-scope +apposition-group +259031 modifier-scope +wrapper-scope +259036 modifier-scope +conjuncted-wg +259040 wrapper-clause-scope +259042 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +259048 modifier-scope +wrapper-scope +259053 wrapper-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +259058 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259064 wrapper-clause-scope +259066 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +259073 wrapper-scope +modifier-scope +conjuncted-wg +259077 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259083 modifier-scope +conjuncted-wg +259086 wrapper-clause-scope +259088 wrapper-scope +modifier-scope +259092 wrapper-clause-scope +259095 group +wrapper-clause-scope +259099 wrapper-clause-scope +259101 modifier-scope +conjuncted-wg +259104 modifier-scope +modifier-scope +259108 wrapper-clause-scope +259110 wrapper-clause-scope +259112 modifier-clause-scope +apposition-group +modifier-scope +259117 modifier-clause-scope +apposition-group +259121 wrapper-clause-scope +259123 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +259128 wrapper-clause-scope +259130 modifier-scope +modifier-scope +modifier-scope +modifier-scope +259137 modifier-clause-scope +wrapper-clause-scope +259140 wrapper-clause-scope +259142 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +259147 modifier-clause-scope +wrapper-clause-scope +259150 wrapper-clause-scope +259152 wrapper-clause-scope +259154 wrapper-scope +259156 group +259158 wrapper-scope +wrapper-clause-scope +259161 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259167 modifier-scope +conjuncted-wg +259170 modifier-scope +modifier-scope +259173 wrapper-clause-scope +259176 modifier-scope +modifier-scope +modifier-scope +259180 modifier-scope +modifier-scope +259183 wrapper-clause-scope +259185 modifier-scope +modifier-scope +wrapper-clause-scope +259189 modifier-clause-scope +wrapper-clause-scope +259192 wrapper-scope +modifier-scope +modifier-scope +259196 wrapper-clause-scope +group +259199 group +modifier-scope +wrapper-clause-scope +259203 modifier-scope +259205 modifier-scope +modifier-scope +259208 group +259210 wrapper-clause-scope +259212 modifier-scope +wrapper-clause-scope +259215 wrapper-clause-scope +259217 wrapper-clause-scope +259219 modifier-scope +modifier-scope +modifier-scope +259223 group +259225 wrapper-clause-scope +259227 wrapper-scope +259229 conjuncted-wg +259231 group +259233 group +259235 wrapper-scope +modifier-scope +259239 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +259245 wrapper-clause-scope +259247 modifier-scope +wrapper-clause-scope +259250 wrapper-clause-scope +259252 modifier-scope +modifier-scope +259255 wrapper-clause-scope +259258 wrapper-clause-scope +259262 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +259269 modifier-scope +wrapper-scope +modifier-scope +259273 group +group +wrapper-clause-scope +259277 modifier-scope +modifier-scope +modifier-scope +259281 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259286 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259291 wrapper-scope +modifier-scope +modifier-scope +259296 wrapper-clause-scope +259298 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +259306 wrapper-clause-scope +259308 modifier-scope +wrapper-clause-scope +259311 wrapper-scope +modifier-clause-scope +apposition-group +259315 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +259320 wrapper-clause-scope +259322 modifier-scope +wrapper-clause-scope +259326 modifier-scope +modifier-scope +conjuncted-wg +259330 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +259337 wrapper-clause-scope +259339 modifier-scope +modifier-scope +259343 wrapper-clause-scope +259345 modifier-scope +modifier-scope +modifier-scope +modifier-scope +259351 group +wrapper-clause-scope +259354 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259362 wrapper-clause-scope +259364 modifier-scope +259366 wrapper-clause-scope +259369 modifier-clause-scope +apposition-group +259372 wrapper-scope +group +wrapper-clause-scope +259376 wrapper-scope +modifier-scope +modifier-scope +259381 wrapper-clause-scope +group +wrapper-clause-scope +259385 wrapper-clause-scope +259387 wrapper-clause-scope +259390 wrapper-clause-scope +259392 modifier-clause-scope +apposition-group +259395 wrapper-scope +259398 group +wrapper-clause-scope +259402 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +259408 conjuncted-wg +259410 group +wrapper-clause-scope +259413 modifier-scope +wrapper-scope +259417 modifier-scope +wrapper-scope +259421 wrapper-scope +wrapper-clause-scope +259427 modifier-scope +conjuncted-wg +259430 modifier-scope +modifier-scope +wrapper-scope +259435 wrapper-clause-scope +259438 modifier-clause-scope +wrapper-clause-scope +259441 wrapper-scope +modifier-scope +conjuncted-wg +259446 wrapper-clause-scope +259448 wrapper-scope +modifier-scope +conjuncted-wg +259452 modifier-scope +259455 wrapper-clause-scope +259458 wrapper-scope +modifier-scope +conjuncted-wg +259462 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +259467 wrapper-clause-scope +259469 wrapper-clause-scope +259472 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +259477 wrapper-clause-scope +259479 modifier-scope +259481 wrapper-clause-scope +259483 group +wrapper-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +group +259494 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +259501 wrapper-scope +modifier-scope +259506 modifier-scope +apposition-group +259509 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +259514 wrapper-scope +259516 conjuncted-wg +group +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +259523 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +259529 wrapper-scope +conjuncted-wg +259532 wrapper-scope +wrapper-scope +modifier-scope +259537 wrapper-scope +modifier-scope +group +259541 wrapper-scope +group +conjuncted-wg +wrapper-scope +group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +259552 conjuncted-wg +259554 group +259556 wrapper-clause-scope +259558 group +259560 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +259566 wrapper-scope +modifier-scope +259569 wrapper-clause-scope +259573 group +wrapper-clause-scope +259576 modifier-scope +259578 wrapper-scope +wrapper-clause-scope +259582 wrapper-clause-scope +259585 modifier-scope +259587 wrapper-scope +modifier-scope +modifier-scope +259592 modifier-scope +wrapper-clause-scope +259595 wrapper-scope +wrapper-clause-scope +259598 wrapper-scope +259600 wrapper-clause-scope +259602 wrapper-scope +modifier-scope +group +modifier-scope +wrapper-clause-scope +259609 group +wrapper-scope +259614 modifier-scope +conjuncted-wg +modifier-scope +259619 wrapper-clause-scope +group +259624 modifier-scope +259627 modifier-clause-scope +wrapper-clause-scope +259631 conjuncted-wg +259633 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +259640 wrapper-clause-scope +259642 wrapper-scope +modifier-scope +259645 conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +259650 group +wrapper-clause-scope +259654 wrapper-scope +conjuncted-wg +259657 modifier-scope +modifier-scope +259661 wrapper-scope +conjuncted-wg +259666 wrapper-clause-scope +259668 wrapper-clause-scope +259671 modifier-scope +modifier-scope +modifier-scope +modifier-scope +259680 wrapper-scope +259682 conjuncted-wg +conjuncted-wg +259687 wrapper-scope +conjuncted-wg +259690 modifier-scope +wrapper-scope +wrapper-clause-scope +259694 modifier-scope +modifier-scope +wrapper-scope +259699 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +259707 modifier-scope +apposition-group +modifier-scope +modifier-scope +259712 wrapper-scope +259716 wrapper-scope +259719 conjuncted-wg +wrapper-clause-scope +259722 modifier-scope +modifier-scope +259725 wrapper-clause-scope +group +259728 group +259731 conjuncted-wg +259733 modifier-scope +modifier-scope +wrapper-clause-scope +259737 wrapper-scope +259741 modifier-scope +259744 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +259752 wrapper-clause-scope +259754 wrapper-scope +modifier-scope +conjuncted-wg +259758 apposition-group +apposition-group +259761 modifier-scope +modifier-scope +wrapper-scope +259766 modifier-scope +259768 wrapper-clause-scope +259770 wrapper-scope +modifier-scope +259773 wrapper-scope +modifier-scope +259776 wrapper-clause-scope +259779 modifier-scope +wrapper-clause-scope +259782 modifier-scope +259785 modifier-scope +259787 wrapper-clause-scope +259789 group +wrapper-clause-scope +259794 wrapper-scope +wrapper-clause-scope +259797 apposition-group +modifier-scope +modifier-scope +259802 modifier-scope +259804 wrapper-clause-scope +group +259807 wrapper-scope +259809 conjuncted-wg +259811 modifier-scope +conjuncted-wg +259814 wrapper-clause-scope +259816 conjuncted-wg +259818 wrapper-scope +modifier-scope +259824 modifier-scope +259826 modifier-scope +259829 wrapper-clause-scope +259831 wrapper-scope +modifier-scope +259835 wrapper-clause-scope +259837 modifier-scope +259841 wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +259847 wrapper-clause-scope +259850 modifier-scope +conjuncted-wg +259853 wrapper-clause-scope +259855 modifier-scope +modifier-scope +259861 conjuncted-wg +259864 wrapper-scope +259866 conjuncted-wg +259868 wrapper-clause-scope +259872 conjuncted-wg +259874 modifier-scope +wrapper-scope +259880 modifier-scope +259883 modifier-scope +wrapper-scope +259887 group +259889 modifier-scope +group +conjuncted-wg +modifier-scope +modifier-clause-scope +modifier-clause-scope +259897 wrapper-scope +group +conjuncted-wg +259901 group +259905 conjuncted-wg +conjuncted-wg +259911 modifier-scope +259913 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +259920 modifier-clause-scope +modifier-clause-scope +259923 modifier-scope +259925 wrapper-clause-scope +259927 group +group +modifier-scope +wrapper-clause-scope +259932 wrapper-scope +modifier-scope +modifier-scope +259937 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +259944 modifier-scope +259946 modifier-scope +conjuncted-wg +group +modifier-scope +group +259952 wrapper-clause-scope +259955 group +259961 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +259966 conjuncted-wg +259968 group +wrapper-clause-scope +259972 modifier-scope +modifier-scope +conjuncted-wg +259976 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +259986 conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +259993 modifier-scope +modifier-scope +conjuncted-wg +259997 wrapper-scope +modifier-scope +260000 modifier-scope +modifier-scope +260003 wrapper-clause-scope +260005 modifier-clause-scope +modifier-clause-scope +260009 conjuncted-wg +260011 conjuncted-wg +260013 conjuncted-wg +260016 wrapper-clause-scope +group +wrapper-clause-scope +260021 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +260027 group +modifier-scope +modifier-scope +260031 modifier-scope +260035 wrapper-clause-scope +260037 conjuncted-wg +260040 conjuncted-wg +260043 wrapper-clause-scope +260045 modifier-scope +modifier-scope +wrapper-scope +260049 group +260051 wrapper-clause-scope +260054 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260059 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260065 modifier-scope +modifier-scope +modifier-scope +260070 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +group +260079 group +modifier-clause-scope +modifier-scope +260083 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +modifier-scope +260090 modifier-clause-scope +modifier-scope +modifier-scope +260094 modifier-scope +modifier-scope +apposition-group +group +260099 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +260104 wrapper-clause-scope +260106 modifier-scope +group +modifier-scope +wrapper-scope +260112 wrapper-scope +modifier-scope +modifier-scope +260117 wrapper-scope +conjuncted-wg +260120 modifier-scope +modifier-scope +260123 wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +260130 conjuncted-wg +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +260136 wrapper-scope +modifier-scope +260141 modifier-clause-scope +modifier-scope +260144 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +260149 modifier-scope +modifier-scope +260152 wrapper-scope +260154 wrapper-clause-scope +260157 group +modifier-scope +wrapper-clause-scope +260161 wrapper-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +260169 wrapper-clause-scope +260172 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +260177 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260184 group +wrapper-clause-scope +260189 wrapper-clause-scope +260193 modifier-scope +modifier-scope +modifier-scope +260197 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +260202 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +260211 wrapper-clause-scope +260213 conjuncted-wg +260216 modifier-clause-scope +260219 wrapper-scope +conjuncted-wg +260222 wrapper-scope +260224 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +260228 wrapper-scope +modifier-scope +260231 wrapper-clause-scope +260233 group +modifier-clause-scope +260238 conjuncted-wg +260240 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +group +group +modifier-scope +modifier-scope +260253 conjuncted-wg +260255 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +260266 apposition-group +modifier-scope +group +260271 modifier-scope +260273 modifier-scope +modifier-scope +260277 wrapper-scope +conjuncted-wg +260281 wrapper-scope +modifier-scope +modifier-scope +apposition-group +group +modifier-scope +modifier-scope +260289 apposition-group +260291 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +group +260302 wrapper-clause-scope +260304 conjuncted-wg +wrapper-clause-scope +260308 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260313 wrapper-clause-scope +260315 wrapper-scope +wrapper-clause-scope +260318 modifier-scope +260321 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +260330 conjuncted-wg +260332 wrapper-scope +260334 wrapper-clause-scope +260336 conjuncted-wg +wrapper-clause-scope +260339 conjuncted-wg +wrapper-clause-scope +260342 conjuncted-wg +wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +260348 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +group +group +group +modifier-scope +modifier-scope +modifier-scope +260360 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260370 group +260373 wrapper-clause-scope +260376 conjuncted-wg +260378 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +260386 group +modifier-scope +modifier-scope +modifier-scope +260391 conjuncted-wg +260394 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +260405 wrapper-scope +modifier-scope +conjuncted-wg +260411 modifier-scope +conjuncted-wg +260414 conjuncted-wg +260416 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260425 group +group +260429 modifier-scope +conjuncted-wg +modifier-scope +260433 group +modifier-scope +260436 group +260438 wrapper-clause-scope +260440 conjuncted-wg +wrapper-clause-scope +260443 conjuncted-wg +wrapper-clause-scope +260446 modifier-scope +260449 group +group +modifier-scope +260453 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +260460 conjuncted-wg +conjuncted-wg +wrapper-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +260468 wrapper-scope +260470 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +260479 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +260485 wrapper-scope +modifier-scope +wrapper-scope +260492 wrapper-scope +conjuncted-wg +260495 modifier-scope +modifier-scope +modifier-scope +260499 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +260513 wrapper-clause-scope +260516 modifier-clause-scope +apposition-group +260519 wrapper-scope +260521 wrapper-clause-scope +260525 modifier-scope +modifier-scope +conjuncted-wg +260529 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +260537 conjuncted-wg +260539 wrapper-scope +modifier-scope +modifier-scope +260543 wrapper-clause-scope +260545 group +260548 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +260554 wrapper-clause-scope +260556 conjuncted-wg +260558 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +260564 modifier-scope +modifier-scope +modifier-clause-scope +wrapper-clause-scope +260569 wrapper-scope +conjuncted-wg +group +260573 modifier-scope +modifier-scope +wrapper-clause-scope +260577 modifier-scope +modifier-scope +conjuncted-wg +260581 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260588 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +260596 modifier-scope +modifier-scope +wrapper-clause-scope +260600 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +260605 wrapper-clause-scope +260607 wrapper-clause-scope +260609 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +260614 wrapper-clause-scope +260616 modifier-scope +modifier-scope +wrapper-scope +260625 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-clause-scope +260631 conjuncted-wg +260634 conjuncted-wg +260637 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260644 modifier-scope +modifier-scope +260647 modifier-scope +conjuncted-wg +modifier-scope +260651 wrapper-clause-scope +260655 conjuncted-wg +260657 conjuncted-wg +260660 wrapper-scope +260665 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +modifier-scope +260671 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260680 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260687 modifier-scope +modifier-scope +modifier-scope +modifier-scope +260693 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +260700 group +wrapper-clause-scope +260703 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +260710 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260720 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +260732 conjuncted-wg +260735 wrapper-clause-scope +260737 conjuncted-wg +260740 conjuncted-wg +260744 wrapper-clause-scope +260747 conjuncted-wg +260750 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +260756 wrapper-clause-scope +260758 wrapper-scope +wrapper-clause-scope +260761 modifier-scope +modifier-scope +modifier-scope +modifier-scope +260766 wrapper-clause-scope +260770 conjuncted-wg +260772 conjuncted-wg +260774 modifier-scope +modifier-scope +260777 wrapper-clause-scope +260780 wrapper-clause-scope +260782 conjuncted-wg +260784 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +260792 wrapper-clause-scope +260794 wrapper-clause-scope +260796 apposition-group +modifier-scope +modifier-scope +modifier-scope +260803 wrapper-clause-scope +260806 modifier-scope +modifier-scope +260811 wrapper-clause-scope +260814 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +260820 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +260825 wrapper-clause-scope +260827 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +260834 apposition-group +260836 modifier-scope +conjuncted-wg +modifier-scope +260841 conjuncted-wg +260847 modifier-scope +260849 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +260854 conjuncted-wg +260857 modifier-clause-scope +modifier-clause-scope +wrapper-scope +wrapper-clause-scope +260863 conjuncted-wg +group +260867 modifier-scope +modifier-scope +260876 modifier-scope +260878 wrapper-scope +wrapper-scope +wrapper-clause-scope +260882 conjuncted-wg +260884 modifier-scope +modifier-scope +260889 wrapper-scope +conjuncted-wg +260892 modifier-scope +modifier-scope +modifier-scope +260897 wrapper-clause-scope +260900 modifier-scope +modifier-scope +260904 wrapper-clause-scope +260906 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +260912 wrapper-clause-scope +260914 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +260921 wrapper-clause-scope +260923 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260931 apposition-group +260934 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +260939 modifier-scope +modifier-scope +conjuncted-wg +260943 modifier-scope +modifier-scope +modifier-clause-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +260958 wrapper-scope +modifier-scope +260961 wrapper-clause-scope +group +260964 wrapper-scope +wrapper-clause-scope +260968 modifier-clause-scope +modifier-clause-scope +apposition-group +260972 modifier-scope +260974 wrapper-scope +modifier-scope +modifier-scope +260979 conjuncted-wg +260983 modifier-scope +260985 modifier-scope +modifier-scope +modifier-scope +260989 wrapper-clause-scope +260992 wrapper-clause-scope +260994 wrapper-clause-scope +260997 conjuncted-wg +260999 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +261007 wrapper-clause-scope +261010 modifier-scope +modifier-scope +261015 wrapper-clause-scope +261018 group +modifier-scope +wrapper-clause-scope +261022 conjuncted-wg +261025 modifier-scope +conjuncted-wg +apposition-group +modifier-clause-scope +261030 wrapper-scope +modifier-scope +modifier-scope +261036 wrapper-clause-scope +261039 wrapper-clause-scope +261041 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +261048 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +261055 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +261061 modifier-scope +modifier-scope +261067 modifier-scope +modifier-scope +conjuncted-wg +261071 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +261081 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +261087 wrapper-clause-scope +261091 wrapper-scope +261093 group +group +modifier-scope +wrapper-clause-scope +261098 conjuncted-wg +261101 conjuncted-wg +261103 modifier-scope +modifier-scope +261107 conjuncted-wg +261110 wrapper-clause-scope +261113 wrapper-clause-scope +261115 conjuncted-wg +261118 wrapper-scope +modifier-scope +modifier-scope +261124 wrapper-scope +conjuncted-wg +261127 wrapper-clause-scope +261129 wrapper-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +261134 wrapper-scope +modifier-scope +modifier-scope +261138 wrapper-clause-scope +261140 modifier-scope +modifier-scope +wrapper-scope +261144 wrapper-clause-scope +261147 modifier-scope +modifier-scope +wrapper-clause-scope +261151 wrapper-clause-scope +261154 conjuncted-wg +conjuncted-wg +261157 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +261162 wrapper-clause-scope +261164 apposition-group +apposition-group +group +group +modifier-scope +modifier-scope +wrapper-scope +261172 modifier-scope +modifier-scope +261176 modifier-scope +modifier-scope +modifier-scope +261181 wrapper-scope +modifier-scope +261184 wrapper-clause-scope +261187 wrapper-scope +wrapper-clause-scope +261191 wrapper-clause-scope +261195 wrapper-clause-scope +261197 conjuncted-wg +wrapper-clause-scope +261200 wrapper-scope +modifier-scope +modifier-scope +261205 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +261210 wrapper-scope +modifier-scope +wrapper-clause-scope +261214 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +261219 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +261224 modifier-scope +modifier-scope +modifier-scope +261229 wrapper-clause-scope +261232 modifier-scope +modifier-scope +261235 wrapper-clause-scope +261237 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +261244 wrapper-clause-scope +261247 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +261256 modifier-scope +modifier-scope +wrapper-clause-scope +261261 wrapper-clause-scope +261263 conjuncted-wg +261266 group +261269 wrapper-scope +conjuncted-wg +261272 apposition-group +modifier-scope +261276 wrapper-clause-scope +261279 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +261284 wrapper-clause-scope +261289 conjuncted-wg +conjuncted-wg +261293 conjuncted-wg +261296 wrapper-clause-scope +group +wrapper-clause-scope +261302 wrapper-scope +conjuncted-wg +261305 modifier-scope +261307 modifier-scope +wrapper-scope +261310 wrapper-clause-scope +261313 modifier-scope +wrapper-scope +261316 modifier-scope +modifier-scope +conjuncted-wg +261320 wrapper-scope +wrapper-scope +wrapper-clause-scope +261327 wrapper-clause-scope +261329 wrapper-scope +modifier-scope +conjuncted-wg +261333 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261342 modifier-scope +modifier-scope +261345 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +261354 wrapper-clause-scope +261357 modifier-scope +modifier-scope +261360 wrapper-clause-scope +261362 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +261369 group +group +group +modifier-scope +modifier-scope +wrapper-clause-scope +261376 modifier-scope +modifier-scope +wrapper-clause-scope +261382 conjuncted-wg +261384 conjuncted-wg +261387 conjuncted-wg +261391 modifier-scope +modifier-scope +261395 wrapper-scope +apposition-group +modifier-clause-scope +261401 group +wrapper-clause-scope +261405 modifier-scope +conjuncted-wg +261408 modifier-scope +modifier-scope +conjuncted-wg +261412 modifier-scope +modifier-scope +261417 group +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +261425 conjuncted-wg +group +261430 wrapper-clause-scope +261434 wrapper-clause-scope +261437 conjuncted-wg +261439 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +261444 wrapper-clause-scope +261447 group +wrapper-clause-scope +261450 modifier-scope +modifier-scope +modifier-scope +modifier-scope +261455 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +261463 wrapper-scope +modifier-scope +modifier-scope +261467 wrapper-clause-scope +261469 wrapper-scope +modifier-scope +261476 wrapper-clause-scope +261478 modifier-scope +modifier-scope +261483 wrapper-clause-scope +261486 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261493 modifier-scope +conjuncted-wg +261496 wrapper-scope +261498 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +261515 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +261527 wrapper-clause-scope +261530 modifier-scope +modifier-scope +261533 wrapper-clause-scope +261535 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +261542 group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +261549 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +261557 modifier-scope +modifier-scope +wrapper-clause-scope +261562 conjuncted-wg +conjuncted-wg +261565 group +261569 conjuncted-wg +261573 wrapper-clause-scope +261576 conjuncted-wg +261579 conjuncted-wg +conjuncted-wg +261582 wrapper-scope +modifier-scope +modifier-scope +261586 group +wrapper-clause-scope +261590 wrapper-clause-scope +261593 conjuncted-wg +261595 conjuncted-wg +261597 modifier-scope +conjuncted-wg +261600 wrapper-clause-scope +261602 modifier-scope +261604 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +261611 wrapper-scope +modifier-clause-scope +261614 wrapper-scope +wrapper-clause-scope +261617 conjuncted-wg +261619 modifier-scope +wrapper-clause-scope +261623 conjuncted-wg +261625 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261632 modifier-scope +modifier-scope +wrapper-clause-scope +261638 wrapper-clause-scope +261641 conjuncted-wg +261643 wrapper-clause-scope +261646 conjuncted-wg +261651 wrapper-scope +modifier-scope +conjuncted-wg +261656 group +wrapper-clause-scope +261660 modifier-scope +modifier-scope +conjuncted-wg +261664 modifier-scope +261667 wrapper-scope +conjuncted-wg +261671 wrapper-scope +conjuncted-wg +261674 wrapper-scope +261678 wrapper-clause-scope +261681 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +261688 conjuncted-wg +261690 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +261698 wrapper-clause-scope +261701 modifier-scope +modifier-scope +261706 wrapper-scope +conjuncted-wg +261710 wrapper-scope +modifier-scope +conjuncted-wg +261714 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +261719 wrapper-scope +wrapper-scope +261724 conjuncted-wg +261728 wrapper-scope +261731 wrapper-scope +261733 wrapper-clause-scope +261736 wrapper-scope +modifier-scope +conjuncted-wg +261741 wrapper-scope +modifier-scope +conjuncted-wg +261746 wrapper-clause-scope +261748 group +261750 conjuncted-wg +conjuncted-wg +261753 modifier-scope +wrapper-scope +modifier-scope +261757 wrapper-clause-scope +261760 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261766 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +261771 wrapper-scope +modifier-scope +conjuncted-wg +261775 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +261780 wrapper-clause-scope +261782 wrapper-scope +modifier-scope +261785 conjuncted-wg +conjuncted-wg +261788 wrapper-clause-scope +261791 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +261796 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261802 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-scope +261809 wrapper-clause-scope +261812 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +261822 conjuncted-wg +261824 wrapper-clause-scope +261827 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261832 modifier-scope +modifier-scope +conjuncted-wg +261836 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +261843 modifier-scope +modifier-scope +modifier-clause-scope +261848 wrapper-clause-scope +261850 modifier-scope +modifier-scope +261853 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +261858 conjuncted-wg +261860 wrapper-clause-scope +261863 conjuncted-wg +261866 group +group +group +group +modifier-scope +modifier-scope +261873 wrapper-clause-scope +261875 conjuncted-wg +wrapper-clause-scope +261878 conjuncted-wg +wrapper-clause-scope +261882 wrapper-clause-scope +group +wrapper-clause-scope +261886 modifier-scope +261888 conjuncted-wg +conjuncted-wg +group +wrapper-clause-scope +261893 wrapper-scope +modifier-scope +wrapper-clause-scope +261897 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +261903 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +261909 wrapper-scope +modifier-scope +conjuncted-wg +261914 wrapper-clause-scope +261916 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +261922 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +261929 modifier-scope +261931 modifier-scope +conjuncted-wg +modifier-scope +261937 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +261945 modifier-scope +conjuncted-wg +261948 wrapper-scope +modifier-scope +modifier-scope +261952 conjuncted-wg +261954 wrapper-clause-scope +261956 wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +261961 wrapper-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +261967 conjuncted-wg +261969 modifier-scope +261971 wrapper-clause-scope +261974 modifier-scope +wrapper-scope +modifier-scope +261980 modifier-scope +conjuncted-wg +261983 modifier-scope +modifier-scope +261986 wrapper-clause-scope +261988 modifier-scope +261990 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +262000 modifier-scope +conjuncted-wg +262004 wrapper-clause-scope +262006 wrapper-clause-scope +262008 modifier-scope +262011 modifier-scope +conjuncted-wg +262015 wrapper-clause-scope +262017 modifier-scope +wrapper-scope +modifier-scope +262023 group +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +262034 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +262040 wrapper-clause-scope +262044 wrapper-scope +modifier-scope +262047 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +262059 modifier-scope +conjuncted-wg +apposition-group +modifier-scope +262064 modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +modifier-scope +262070 wrapper-scope +modifier-scope +modifier-scope +262074 wrapper-clause-scope +262077 conjuncted-wg +262079 wrapper-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +262084 wrapper-scope +modifier-scope +262087 wrapper-clause-scope +group +wrapper-clause-scope +262091 modifier-scope +262094 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +262104 conjuncted-wg +modifier-clause-scope +modifier-scope +262108 apposition-group +262110 modifier-scope +modifier-scope +modifier-scope +262114 wrapper-clause-scope +262116 modifier-scope +262118 group +262122 modifier-scope +conjuncted-wg +262125 modifier-scope +modifier-scope +wrapper-clause-scope +262130 conjuncted-wg +262132 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +262139 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +262144 modifier-scope +modifier-scope +262147 conjuncted-wg +conjuncted-wg +262150 wrapper-scope +modifier-scope +262153 wrapper-clause-scope +262156 conjuncted-wg +group +262160 modifier-scope +modifier-scope +modifier-scope +262164 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +262171 modifier-scope +modifier-scope +262174 modifier-scope +conjuncted-wg +modifier-scope +262178 modifier-scope +262180 group +modifier-scope +wrapper-clause-scope +262185 modifier-scope +262187 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +262194 wrapper-clause-scope +262199 modifier-clause-scope +apposition-group +262203 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +262219 wrapper-clause-scope +262221 wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +262226 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262238 wrapper-clause-scope +262240 modifier-scope +modifier-scope +262244 wrapper-clause-scope +262247 modifier-scope +conjuncted-wg +262251 wrapper-clause-scope +262253 group +262255 wrapper-clause-scope +262257 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +262265 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +262273 wrapper-clause-scope +262276 conjuncted-wg +262281 modifier-scope +conjuncted-wg +262284 wrapper-clause-scope +262286 wrapper-scope +conjuncted-wg +262290 conjuncted-wg +262294 conjuncted-wg +wrapper-clause-scope +262298 wrapper-clause-scope +group +wrapper-clause-scope +262302 modifier-scope +modifier-scope +modifier-scope +262307 modifier-scope +modifier-scope +262311 wrapper-clause-scope +262314 modifier-scope +modifier-scope +conjuncted-wg +262319 wrapper-clause-scope +262321 wrapper-scope +262325 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +262331 conjuncted-wg +262333 modifier-scope +262335 wrapper-clause-scope +group +wrapper-clause-scope +262339 modifier-scope +modifier-scope +modifier-scope +262344 modifier-scope +modifier-scope +262348 wrapper-clause-scope +262351 conjuncted-wg +262355 modifier-scope +conjuncted-wg +262358 wrapper-clause-scope +262360 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +262365 wrapper-clause-scope +262367 wrapper-clause-scope +262369 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262376 modifier-scope +conjuncted-wg +262379 modifier-scope +modifier-scope +conjuncted-wg +262384 modifier-scope +conjuncted-wg +modifier-scope +262388 wrapper-clause-scope +group +wrapper-clause-scope +262392 modifier-scope +modifier-scope +modifier-scope +262397 modifier-scope +modifier-scope +modifier-scope +262402 wrapper-clause-scope +262405 conjuncted-wg +262409 modifier-scope +conjuncted-wg +262414 wrapper-clause-scope +262416 wrapper-scope +modifier-scope +conjuncted-wg +262420 modifier-scope +wrapper-scope +262423 wrapper-clause-scope +262425 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262431 wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262442 wrapper-clause-scope +group +wrapper-clause-scope +262446 modifier-scope +modifier-scope +262449 wrapper-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +262456 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-clause-scope +apposition-group +262466 wrapper-clause-scope +262468 modifier-scope +262472 modifier-scope +modifier-scope +modifier-scope +262476 conjuncted-wg +262478 wrapper-scope +conjuncted-wg +262481 modifier-scope +modifier-scope +wrapper-scope +wrapper-clause-scope +262486 wrapper-scope +modifier-scope +262489 wrapper-clause-scope +262492 modifier-scope +modifier-scope +conjuncted-wg +262496 wrapper-clause-scope +262498 modifier-scope +wrapper-clause-scope +262501 modifier-clause-scope +group +262504 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +262511 group +262513 wrapper-clause-scope +262515 modifier-scope +262517 wrapper-clause-scope +262519 group +262521 wrapper-clause-scope +262523 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +262529 modifier-scope +conjuncted-wg +262532 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +262537 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +262542 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +262549 modifier-scope +modifier-scope +262552 wrapper-scope +modifier-scope +conjuncted-wg +262556 modifier-scope +wrapper-clause-scope +262559 conjuncted-wg +262561 modifier-scope +262563 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +262568 wrapper-clause-scope +262571 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +262585 conjuncted-wg +262587 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262595 wrapper-clause-scope +262598 modifier-scope +conjuncted-wg +modifier-scope +group +262604 wrapper-scope +conjuncted-wg +262608 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +262612 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +262622 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +262633 wrapper-scope +262635 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +262642 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +262649 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +262658 wrapper-clause-scope +262662 modifier-scope +wrapper-scope +modifier-scope +262666 modifier-clause-scope +modifier-clause-scope +262669 conjuncted-wg +262671 modifier-scope +modifier-clause-scope +apposition-group +modifier-scope +262676 group +262679 modifier-scope +conjuncted-wg +modifier-scope +262683 group +262686 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +262693 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +262701 wrapper-clause-scope +262703 group +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +262708 modifier-clause-scope +modifier-scope +group +262712 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262717 group +262719 wrapper-scope +modifier-scope +modifier-scope +262723 wrapper-scope +modifier-scope +modifier-scope +262727 wrapper-scope +modifier-scope +modifier-scope +262731 wrapper-scope +modifier-scope +modifier-scope +262735 wrapper-scope +modifier-scope +modifier-scope +262739 wrapper-scope +modifier-scope +modifier-scope +262743 wrapper-scope +modifier-scope +modifier-scope +262747 wrapper-scope +modifier-scope +modifier-scope +262751 wrapper-scope +modifier-scope +modifier-scope +262755 wrapper-scope +modifier-scope +modifier-scope +262759 wrapper-scope +modifier-scope +modifier-scope +262763 wrapper-scope +modifier-scope +modifier-scope +262769 wrapper-scope +conjuncted-wg +262773 modifier-clause-scope +apposition-group +modifier-scope +262778 group +wrapper-scope +modifier-scope +262782 conjuncted-wg +conjuncted-wg +conjuncted-wg +262786 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +262792 modifier-scope +conjuncted-wg +262795 wrapper-scope +modifier-scope +modifier-scope +262799 wrapper-clause-scope +262801 modifier-scope +262804 modifier-scope +262806 group +modifier-scope +modifier-scope +wrapper-clause-scope +262811 wrapper-scope +modifier-scope +conjuncted-wg +modifier-scope +262816 wrapper-clause-scope +262819 modifier-scope +modifier-scope +modifier-scope +262823 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +262832 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +262839 modifier-scope +262844 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262865 wrapper-clause-scope +262867 modifier-scope +wrapper-scope +modifier-scope +262873 group +wrapper-clause-scope +262876 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +262882 wrapper-clause-scope +262886 modifier-scope +262888 wrapper-clause-scope +262892 wrapper-clause-scope +262894 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +262901 modifier-scope +modifier-scope +conjuncted-wg +262905 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +262913 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +262921 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +262927 wrapper-clause-scope +262929 wrapper-scope +modifier-scope +wrapper-scope +262935 conjuncted-wg +262937 conjuncted-wg +262939 wrapper-scope +262941 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +262948 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +262956 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +262961 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +262967 wrapper-clause-scope +group +wrapper-clause-scope +262971 modifier-scope +modifier-scope +modifier-scope +262975 wrapper-scope +modifier-scope +modifier-scope +262979 wrapper-clause-scope +262982 modifier-clause-scope +apposition-group +modifier-scope +262986 wrapper-scope +modifier-scope +conjuncted-wg +262990 modifier-scope +262992 wrapper-clause-scope +262995 modifier-scope +conjuncted-wg +262999 wrapper-scope +modifier-scope +263002 modifier-scope +conjuncted-wg +group +263006 modifier-scope +wrapper-clause-scope +263009 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +263022 wrapper-clause-scope +263024 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +263036 wrapper-clause-scope +263039 modifier-scope +modifier-scope +conjuncted-wg +263043 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263049 wrapper-scope +modifier-scope +263052 wrapper-clause-scope +263055 conjuncted-wg +conjuncted-wg +conjuncted-wg +263059 wrapper-clause-scope +263061 group +modifier-scope +modifier-scope +wrapper-clause-scope +263066 modifier-scope +modifier-scope +wrapper-clause-scope +263071 wrapper-clause-scope +263073 modifier-scope +263075 wrapper-clause-scope +263079 conjuncted-wg +263081 wrapper-scope +conjuncted-wg +263084 wrapper-scope +modifier-scope +263087 wrapper-clause-scope +263090 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263095 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263100 modifier-scope +modifier-scope +263103 wrapper-clause-scope +263105 modifier-scope +modifier-scope +263108 wrapper-clause-scope +263110 wrapper-scope +modifier-clause-scope +modifier-scope +263114 wrapper-scope +modifier-scope +263117 wrapper-clause-scope +263120 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263125 modifier-clause-scope +modifier-clause-scope +group +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +263135 conjuncted-wg +263137 modifier-scope +modifier-scope +modifier-scope +263141 wrapper-clause-scope +263143 modifier-scope +modifier-scope +263146 wrapper-clause-scope +263149 wrapper-scope +modifier-scope +modifier-scope +group +263154 wrapper-clause-scope +263156 conjuncted-wg +263159 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +263169 wrapper-clause-scope +263171 modifier-scope +modifier-scope +modifier-scope +modifier-scope +263176 wrapper-clause-scope +263179 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +group +263186 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +263193 wrapper-clause-scope +263195 modifier-scope +modifier-scope +263198 wrapper-clause-scope +263202 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +263215 modifier-scope +modifier-scope +conjuncted-wg +263220 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263225 modifier-scope +263227 wrapper-clause-scope +263230 conjuncted-wg +263233 modifier-scope +263235 wrapper-scope +modifier-scope +263238 group +wrapper-clause-scope +263241 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +263256 wrapper-clause-scope +263258 modifier-scope +modifier-scope +263261 wrapper-clause-scope +263265 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263271 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +263277 wrapper-clause-scope +263281 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263286 wrapper-scope +modifier-scope +wrapper-clause-scope +263290 modifier-scope +modifier-scope +conjuncted-wg +263295 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +263303 wrapper-clause-scope +263306 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263312 wrapper-clause-scope +263314 modifier-scope +modifier-scope +modifier-scope +263318 wrapper-clause-scope +263320 wrapper-clause-scope +group +263324 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +263333 modifier-clause-scope +apposition-group +263336 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +263342 wrapper-clause-scope +263344 wrapper-clause-scope +group +263347 wrapper-clause-scope +263349 modifier-scope +263351 wrapper-clause-scope +263353 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +263360 wrapper-clause-scope +263364 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263371 modifier-scope +conjuncted-wg +263376 conjuncted-wg +263378 modifier-scope +wrapper-scope +263381 wrapper-clause-scope +263384 modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +263389 wrapper-scope +conjuncted-wg +263392 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +apposition-group +263398 conjuncted-wg +263400 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263406 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263411 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +263416 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263421 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +263431 wrapper-scope +263433 wrapper-clause-scope +263437 apposition-group +263439 conjuncted-wg +conjuncted-wg +263442 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +apposition-group +modifier-scope +263449 modifier-scope +modifier-scope +263453 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +263461 modifier-scope +conjuncted-wg +263464 wrapper-scope +modifier-scope +263468 modifier-scope +modifier-scope +modifier-scope +263473 modifier-scope +wrapper-scope +263476 wrapper-clause-scope +263478 modifier-scope +modifier-scope +263481 wrapper-clause-scope +263483 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +263496 group +modifier-scope +modifier-scope +wrapper-clause-scope +263501 modifier-scope +263503 group +modifier-scope +modifier-scope +wrapper-clause-scope +263508 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +263514 wrapper-clause-scope +263516 group +modifier-scope +modifier-scope +wrapper-clause-scope +263521 wrapper-scope +modifier-scope +263524 conjuncted-wg +conjuncted-wg +conjuncted-wg +wrapper-clause-scope +263529 modifier-scope +modifier-scope +modifier-scope +263533 wrapper-clause-scope +263535 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +263543 modifier-scope +modifier-scope +263546 wrapper-clause-scope +263549 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263554 wrapper-clause-scope +263556 wrapper-scope +modifier-scope +263559 conjuncted-wg +conjuncted-wg +263562 wrapper-clause-scope +263565 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263572 wrapper-scope +modifier-scope +modifier-scope +263576 conjuncted-wg +conjuncted-wg +263580 modifier-scope +modifier-scope +modifier-scope +group +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +263591 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +263598 wrapper-scope +modifier-scope +modifier-scope +263602 wrapper-clause-scope +263604 modifier-scope +modifier-scope +modifier-scope +263608 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +263616 wrapper-clause-scope +263619 modifier-scope +modifier-scope +263622 conjuncted-wg +263624 wrapper-scope +263626 wrapper-clause-scope +263630 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +263635 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +263645 modifier-scope +conjuncted-wg +modifier-clause-scope +apposition-group +modifier-scope +263651 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +263663 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +263669 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +263685 wrapper-clause-scope +263689 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +263694 conjuncted-wg +263698 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +263704 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263710 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263716 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +263722 wrapper-clause-scope +263726 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263734 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263739 modifier-scope +wrapper-clause-scope +263743 wrapper-clause-scope +group +wrapper-clause-scope +263748 modifier-scope +modifier-scope +modifier-scope +modifier-scope +263753 wrapper-clause-scope +group +wrapper-clause-scope +263757 modifier-scope +modifier-scope +263762 wrapper-clause-scope +263765 wrapper-scope +modifier-scope +263770 modifier-scope +modifier-scope +conjuncted-wg +263775 wrapper-clause-scope +263778 modifier-clause-scope +apposition-group +263783 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +263796 wrapper-scope +apposition-group +wrapper-clause-scope +263800 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +263807 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +263813 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +263819 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +wrapper-clause-scope +263826 conjuncted-wg +263828 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +263838 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +263843 group +modifier-scope +modifier-scope +modifier-scope +263848 wrapper-clause-scope +263851 modifier-clause-scope +apposition-group +263854 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +263859 group +263862 group +modifier-scope +wrapper-clause-scope +263866 wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +263874 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +263880 wrapper-clause-scope +263882 wrapper-scope +modifier-scope +263886 modifier-scope +263888 wrapper-clause-scope +263893 conjuncted-wg +263895 conjuncted-wg +263898 modifier-scope +modifier-scope +conjuncted-wg +263902 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +263908 wrapper-clause-scope +263912 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263919 conjuncted-wg +263921 wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +263926 wrapper-clause-scope +263928 wrapper-clause-scope +263930 modifier-scope +modifier-scope +263933 wrapper-clause-scope +263937 wrapper-scope +modifier-scope +263940 conjuncted-wg +conjuncted-wg +conjuncted-wg +263944 wrapper-clause-scope +263946 apposition-group +263951 conjuncted-wg +263954 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-clause-scope +263962 wrapper-scope +263964 wrapper-clause-scope +263967 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263974 wrapper-clause-scope +263977 modifier-scope +conjuncted-wg +263980 modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +263986 wrapper-clause-scope +263989 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +263994 modifier-scope +group +263999 group +264001 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +264008 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +264013 wrapper-clause-scope +group +wrapper-clause-scope +264020 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +264025 modifier-scope +modifier-scope +264028 wrapper-clause-scope +group +wrapper-clause-scope +264037 group +264039 modifier-scope +264041 modifier-scope +wrapper-clause-scope +264044 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264050 wrapper-scope +modifier-scope +264053 wrapper-scope +conjuncted-wg +group +264057 modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +wrapper-clause-scope +264064 wrapper-clause-scope +group +wrapper-clause-scope +264068 modifier-scope +modifier-scope +264072 group +modifier-scope +wrapper-clause-scope +264076 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +264082 conjuncted-wg +264085 wrapper-clause-scope +264087 modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +apposition-group +apposition-group +modifier-scope +modifier-scope +264099 conjuncted-wg +264101 modifier-scope +modifier-scope +modifier-scope +264105 wrapper-clause-scope +264108 wrapper-scope +264110 modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +264118 conjuncted-wg +conjuncted-wg +264122 modifier-scope +modifier-scope +wrapper-scope +264126 wrapper-clause-scope +264130 wrapper-clause-scope +264132 wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +264137 conjuncted-wg +264139 wrapper-clause-scope +264141 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264146 wrapper-scope +modifier-scope +264149 wrapper-clause-scope +264153 wrapper-scope +modifier-scope +modifier-scope +264157 conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +conjuncted-wg +264164 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +264169 modifier-scope +wrapper-scope +wrapper-clause-scope +264174 wrapper-clause-scope +264177 modifier-scope +wrapper-scope +modifier-scope +264182 wrapper-clause-scope +264185 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +264191 modifier-scope +modifier-scope +264194 wrapper-clause-scope +264197 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264204 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264210 wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +conjuncted-wg +264218 modifier-scope +conjuncted-wg +264221 modifier-scope +modifier-scope +modifier-scope +264226 modifier-scope +modifier-scope +modifier-scope +264231 modifier-scope +modifier-scope +modifier-scope +264235 wrapper-clause-scope +264237 modifier-scope +modifier-scope +264240 wrapper-clause-scope +264242 modifier-scope +wrapper-scope +modifier-scope +264248 modifier-scope +modifier-scope +modifier-scope +264252 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +264259 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +264264 wrapper-clause-scope +264267 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264273 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +264283 modifier-scope +264285 group +264288 group +group +group +modifier-scope +modifier-scope +264294 wrapper-clause-scope +264296 conjuncted-wg +wrapper-clause-scope +264299 wrapper-clause-scope +264302 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264309 wrapper-clause-scope +264312 modifier-scope +conjuncted-wg +264316 modifier-scope +modifier-scope +conjuncted-wg +264320 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +264326 conjuncted-wg +264328 modifier-scope +group +modifier-scope +modifier-scope +264333 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-clause-scope +264339 modifier-scope +modifier-scope +264342 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +264347 wrapper-clause-scope +264349 modifier-scope +264351 wrapper-clause-scope +264354 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +264363 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +264371 wrapper-clause-scope +264374 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +264380 wrapper-clause-scope +264382 modifier-scope +wrapper-scope +modifier-scope +264389 modifier-scope +conjuncted-wg +264392 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +264398 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264405 wrapper-scope +conjuncted-wg +264410 conjuncted-wg +264414 wrapper-clause-scope +264417 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +264424 modifier-scope +modifier-scope +264427 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +264432 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264439 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264448 wrapper-scope +modifier-scope +264451 wrapper-clause-scope +264453 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +264460 wrapper-clause-scope +264462 wrapper-clause-scope +264464 modifier-scope +modifier-scope +264467 wrapper-clause-scope +264469 apposition-group +modifier-scope +264473 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +264478 wrapper-clause-scope +264480 modifier-scope +modifier-scope +264483 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +264490 wrapper-clause-scope +264492 modifier-scope +wrapper-scope +apposition-group +modifier-scope +264497 modifier-clause-scope +264499 wrapper-scope +modifier-scope +wrapper-clause-scope +264503 modifier-scope +group +264506 wrapper-clause-scope +group +264509 wrapper-scope +modifier-scope +264513 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +264519 wrapper-scope +modifier-scope +264522 wrapper-clause-scope +264526 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +group +264534 modifier-scope +wrapper-scope +modifier-scope +264538 wrapper-clause-scope +264540 group +group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264552 conjuncted-wg +modifier-scope +wrapper-clause-scope +264556 modifier-scope +modifier-scope +264560 wrapper-scope +modifier-scope +conjuncted-wg +264564 modifier-scope +modifier-scope +wrapper-scope +264568 wrapper-clause-scope +264571 modifier-scope +wrapper-scope +modifier-scope +group +264577 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264592 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264599 wrapper-scope +modifier-scope +modifier-scope +264603 conjuncted-wg +264605 wrapper-clause-scope +264609 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264621 modifier-scope +modifier-scope +wrapper-scope +264626 wrapper-scope +264629 conjuncted-wg +wrapper-clause-scope +264632 wrapper-scope +264634 group +264637 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +264642 modifier-scope +wrapper-scope +264645 modifier-scope +264647 wrapper-clause-scope +264649 modifier-scope +264651 wrapper-clause-scope +264653 wrapper-clause-scope +264655 modifier-scope +wrapper-clause-scope +264658 wrapper-scope +modifier-scope +modifier-clause-scope +apposition-group +264663 modifier-scope +264665 wrapper-clause-scope +264667 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264676 wrapper-scope +modifier-scope +wrapper-scope +apposition-group +modifier-scope +modifier-scope +264684 conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +264691 wrapper-clause-scope +264693 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-clause-scope +264701 wrapper-clause-scope +264704 wrapper-clause-scope +264707 modifier-scope +modifier-scope +conjuncted-wg +264712 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264717 modifier-clause-scope +apposition-group +264720 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +264725 wrapper-clause-scope +264728 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +264734 wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264743 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264748 modifier-scope +modifier-scope +264751 wrapper-clause-scope +264753 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +264758 wrapper-clause-scope +264762 wrapper-scope +modifier-scope +264766 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +264772 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +264778 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +264783 wrapper-clause-scope +264786 modifier-clause-scope +apposition-group +264789 conjuncted-wg +264792 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +264797 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +264802 wrapper-clause-scope +264804 modifier-scope +264806 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +264814 wrapper-clause-scope +264817 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +264823 wrapper-scope +conjuncted-wg +264826 modifier-scope +modifier-scope +modifier-scope +modifier-scope +264831 wrapper-clause-scope +264835 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +264841 modifier-scope +wrapper-clause-scope +264844 modifier-scope +modifier-scope +conjuncted-wg +264848 modifier-scope +264852 modifier-scope +conjuncted-wg +264856 wrapper-scope +264858 wrapper-clause-scope +264861 modifier-clause-scope +264864 conjuncted-wg +conjuncted-wg +264868 modifier-scope +group +264871 wrapper-clause-scope +264873 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +264881 modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-clause-scope +264889 wrapper-scope +modifier-scope +264892 wrapper-clause-scope +264897 wrapper-scope +modifier-scope +conjuncted-wg +264901 conjuncted-wg +264903 wrapper-scope +modifier-scope +264906 conjuncted-wg +conjuncted-wg +conjuncted-wg +264910 wrapper-clause-scope +264912 modifier-clause-scope +apposition-group +wrapper-clause-scope +264916 wrapper-scope +modifier-scope +264919 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +264931 wrapper-scope +modifier-scope +264934 group +wrapper-clause-scope +264940 wrapper-clause-scope +264942 wrapper-scope +wrapper-scope +264946 wrapper-clause-scope +264948 wrapper-scope +264950 wrapper-scope +264953 modifier-scope +264955 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +264960 wrapper-clause-scope +264964 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +264970 modifier-scope +modifier-scope +conjuncted-wg +264974 wrapper-clause-scope +264977 wrapper-clause-scope +264979 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +264986 wrapper-clause-scope +264989 modifier-scope +conjuncted-wg +wrapper-clause-scope +264993 wrapper-scope +wrapper-clause-scope +264996 apposition-group +modifier-scope +modifier-scope +modifier-scope +265001 modifier-scope +modifier-scope +modifier-scope +modifier-scope +265006 wrapper-clause-scope +265008 modifier-scope +wrapper-clause-scope +265012 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +265019 wrapper-clause-scope +265021 wrapper-clause-scope +265023 wrapper-scope +modifier-scope +wrapper-scope +modifier-clause-scope +apposition-group +265030 wrapper-scope +modifier-scope +265033 wrapper-clause-scope +265035 wrapper-scope +modifier-scope +265038 modifier-clause-scope +apposition-group +265042 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +265048 wrapper-clause-scope +group +265052 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +265058 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +265064 wrapper-clause-scope +265066 wrapper-clause-scope +265068 modifier-scope +modifier-scope +modifier-scope +265072 wrapper-clause-scope +group +265075 group +265078 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +265083 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +265088 modifier-scope +conjuncted-wg +modifier-scope +265092 wrapper-clause-scope +265095 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +group +265110 conjuncted-wg +265112 wrapper-clause-scope +265114 wrapper-clause-scope +265116 group +modifier-scope +265119 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +265129 modifier-scope +265132 wrapper-clause-scope +265134 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +265139 modifier-scope +265141 wrapper-clause-scope +265143 modifier-scope +modifier-scope +group +265147 wrapper-clause-scope +265150 conjuncted-wg +265153 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +265159 wrapper-scope +modifier-clause-scope +modifier-scope +group +265166 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +265177 wrapper-clause-scope +265180 wrapper-scope +modifier-scope +265183 wrapper-clause-scope +265185 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +265190 modifier-scope +modifier-scope +conjuncted-wg +265194 modifier-clause-scope +apposition-group +265197 wrapper-scope +265199 wrapper-scope +modifier-scope +modifier-scope +265203 wrapper-clause-scope +265205 modifier-scope +265207 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +265212 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +265217 wrapper-clause-scope +265220 modifier-scope +wrapper-clause-scope +265223 group +modifier-scope +modifier-scope +group +wrapper-clause-scope +265229 wrapper-scope +modifier-scope +265232 group +265235 wrapper-scope +wrapper-clause-scope +265240 wrapper-clause-scope +265242 modifier-scope +wrapper-clause-scope +265248 wrapper-scope +modifier-scope +modifier-scope +265252 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +265257 wrapper-scope +modifier-scope +modifier-scope +265263 wrapper-clause-scope +265266 modifier-scope +wrapper-scope +265269 modifier-scope +265272 wrapper-scope +wrapper-clause-scope +265275 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +265281 conjuncted-wg +conjuncted-wg +conjuncted-wg +265285 wrapper-scope +modifier-scope +265288 group +265291 modifier-scope +conjuncted-wg +265294 wrapper-clause-scope +265296 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +265302 wrapper-clause-scope +265305 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +modifier-scope +265312 wrapper-clause-scope +265314 group +modifier-scope +265317 group +265320 apposition-group +modifier-scope +modifier-scope +265324 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +265334 wrapper-clause-scope +265336 group +modifier-scope +265339 wrapper-scope +modifier-scope +group +wrapper-clause-scope +265346 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +265353 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +265362 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +265372 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +265379 wrapper-scope +265381 conjuncted-wg +265383 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +265389 wrapper-clause-scope +265392 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +265401 conjuncted-wg +265403 wrapper-clause-scope +265406 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +265413 modifier-scope +modifier-scope +modifier-scope +modifier-scope +265419 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +265426 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +265433 wrapper-clause-scope +265436 wrapper-scope +modifier-scope +265440 group +modifier-scope +wrapper-clause-scope +265444 wrapper-scope +265448 modifier-scope +wrapper-clause-scope +group +265452 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +265457 modifier-scope +modifier-scope +wrapper-scope +265461 wrapper-clause-scope +265464 conjuncted-wg +265467 modifier-scope +conjuncted-wg +265470 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +265476 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +265482 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +265487 wrapper-clause-scope +265489 modifier-scope +wrapper-scope +modifier-scope +265493 wrapper-scope +modifier-scope +wrapper-clause-scope +265497 wrapper-scope +modifier-scope +group +265502 modifier-scope +modifier-scope +conjuncted-wg +265506 wrapper-clause-scope +265508 modifier-scope +265510 wrapper-clause-scope +265512 modifier-scope +modifier-scope +modifier-scope +265516 wrapper-clause-scope +265519 wrapper-clause-scope +265521 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +265529 modifier-scope +265531 wrapper-clause-scope +265533 modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265541 modifier-scope +modifier-scope +265544 wrapper-clause-scope +265547 group +modifier-scope +wrapper-clause-scope +265551 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +265557 modifier-scope +wrapper-clause-scope +265560 modifier-scope +modifier-scope +modifier-scope +265564 group +265567 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +265573 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +265580 modifier-scope +modifier-scope +265583 wrapper-clause-scope +265586 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +265594 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +265599 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +265608 wrapper-clause-scope +265611 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +265616 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +265626 wrapper-clause-scope +265628 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265635 conjuncted-wg +265637 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +265643 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +265648 wrapper-clause-scope +wrapper-clause-scope +265653 wrapper-scope +modifier-scope +conjuncted-wg +265657 wrapper-clause-scope +265660 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +265677 modifier-scope +modifier-scope +265680 wrapper-clause-scope +265683 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +265696 conjuncted-wg +modifier-scope +modifier-scope +265700 group +group +modifier-scope +modifier-scope +265707 conjuncted-wg +modifier-scope +modifier-scope +265711 modifier-scope +modifier-scope +modifier-scope +265715 group +265718 modifier-scope +265720 conjuncted-wg +265722 modifier-scope +modifier-scope +wrapper-clause-scope +265726 wrapper-clause-scope +265729 modifier-scope +modifier-scope +conjuncted-wg +265733 wrapper-scope +wrapper-clause-scope +265736 modifier-scope +modifier-scope +265739 wrapper-clause-scope +265742 wrapper-scope +conjuncted-wg +265746 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +265756 group +modifier-scope +modifier-scope +wrapper-clause-scope +265761 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265767 modifier-scope +modifier-scope +conjuncted-wg +265771 wrapper-scope +modifier-scope +modifier-scope +265775 wrapper-clause-scope +265777 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +265787 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +265793 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +265798 wrapper-clause-scope +265801 modifier-scope +265803 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +265814 wrapper-scope +modifier-scope +wrapper-clause-scope +265818 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +265824 wrapper-clause-scope +265827 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +265834 conjuncted-wg +265836 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265845 wrapper-clause-scope +265848 modifier-scope +conjuncted-wg +265851 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265856 wrapper-clause-scope +265858 modifier-scope +265860 conjuncted-wg +wrapper-scope +group +modifier-scope +265865 wrapper-clause-scope +265867 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +265873 modifier-scope +modifier-scope +265876 wrapper-clause-scope +265878 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265884 wrapper-clause-scope +265887 modifier-scope +wrapper-scope +conjuncted-wg +265891 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265898 wrapper-clause-scope +265900 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +265905 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +265911 wrapper-clause-scope +265914 wrapper-clause-scope +265917 modifier-scope +modifier-scope +modifier-scope +group +265923 group +265925 wrapper-clause-scope +265927 conjuncted-wg +wrapper-clause-scope +265930 modifier-scope +wrapper-clause-scope +265933 wrapper-clause-scope +265936 modifier-scope +265938 conjuncted-wg +conjuncted-wg +265945 wrapper-clause-scope +265948 modifier-scope +265952 group +group +modifier-scope +modifier-scope +265957 conjuncted-wg +modifier-scope +modifier-scope +265961 wrapper-clause-scope +265963 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +265969 wrapper-clause-scope +265972 modifier-scope +wrapper-scope +265975 wrapper-clause-scope +265978 modifier-scope +modifier-scope +conjuncted-wg +265983 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +265989 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +265997 wrapper-clause-scope +265999 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +266007 wrapper-clause-scope +266010 modifier-scope +modifier-scope +266013 conjuncted-wg +266017 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +266023 modifier-scope +modifier-scope +modifier-scope +266027 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +266036 wrapper-scope +modifier-scope +modifier-scope +266040 wrapper-clause-scope +266042 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +266051 wrapper-clause-scope +266053 modifier-scope +modifier-scope +wrapper-clause-scope +266057 modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +266065 wrapper-clause-scope +266069 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +266088 wrapper-clause-scope +266090 apposition-group +modifier-clause-scope +modifier-scope +266095 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266101 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +266114 wrapper-clause-scope +266118 wrapper-clause-scope +266121 conjuncted-wg +266123 modifier-scope +modifier-scope +wrapper-clause-scope +266128 conjuncted-wg +266130 modifier-scope +modifier-scope +266133 wrapper-clause-scope +266135 wrapper-scope +group +modifier-scope +wrapper-clause-scope +266141 wrapper-clause-scope +266143 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +266149 wrapper-clause-scope +266151 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +266159 wrapper-clause-scope +266163 conjuncted-wg +conjuncted-wg +conjuncted-wg +group +266168 modifier-scope +266170 wrapper-scope +266172 wrapper-scope +modifier-scope +266175 modifier-scope +266177 wrapper-clause-scope +266180 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +266187 modifier-scope +modifier-scope +modifier-scope +266191 wrapper-clause-scope +266193 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +266198 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266207 wrapper-clause-scope +266210 modifier-scope +conjuncted-wg +266214 wrapper-clause-scope +266216 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +266224 wrapper-clause-scope +266226 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266234 modifier-scope +modifier-scope +266237 wrapper-clause-scope +266240 modifier-clause-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +266247 modifier-scope +modifier-scope +conjuncted-wg +266251 wrapper-scope +266253 group +266256 modifier-clause-scope +modifier-clause-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266264 wrapper-scope +modifier-scope +266268 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +266274 wrapper-clause-scope +266276 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266283 wrapper-clause-scope +266285 wrapper-scope +wrapper-scope +266288 wrapper-clause-scope +266291 wrapper-scope +modifier-clause-scope +modifier-clause-scope +modifier-scope +266296 modifier-scope +266299 modifier-scope +conjuncted-wg +modifier-scope +266303 wrapper-clause-scope +group +266306 modifier-scope +266310 conjuncted-wg +conjuncted-wg +266314 conjuncted-wg +modifier-scope +conjuncted-wg +266319 wrapper-scope +modifier-scope +modifier-scope +modifier-clause-scope +modifier-scope +266326 conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +266333 wrapper-scope +modifier-scope +modifier-scope +group +group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266344 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +266350 wrapper-clause-scope +266353 modifier-scope +266355 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266366 wrapper-clause-scope +266369 modifier-scope +266371 wrapper-clause-scope +266373 modifier-scope +266375 wrapper-scope +266378 modifier-clause-scope +modifier-clause-scope +266381 modifier-scope +conjuncted-wg +group +group +modifier-scope +wrapper-clause-scope +266388 wrapper-clause-scope +266391 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +266400 modifier-clause-scope +apposition-group +266403 conjuncted-wg +266405 conjuncted-wg +266409 wrapper-scope +modifier-scope +conjuncted-wg +266413 wrapper-scope +266415 wrapper-clause-scope +266417 apposition-group +wrapper-clause-scope +266420 wrapper-scope +modifier-scope +266423 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +266432 modifier-scope +wrapper-clause-scope +266436 conjuncted-wg +266438 conjuncted-wg +266442 group +modifier-scope +wrapper-clause-scope +266447 group +266449 modifier-scope +modifier-scope +modifier-scope +266453 modifier-scope +wrapper-scope +266456 wrapper-clause-scope +266458 modifier-scope +266460 group +266462 modifier-scope +266464 modifier-scope +266467 modifier-scope +conjuncted-wg +266470 wrapper-clause-scope +266474 wrapper-clause-scope +266477 modifier-clause-scope +apposition-group +266481 conjuncted-wg +266485 modifier-scope +conjuncted-wg +266488 wrapper-scope +modifier-scope +conjuncted-wg +266492 wrapper-scope +266494 wrapper-clause-scope +266496 modifier-clause-scope +apposition-group +modifier-scope +266500 apposition-group +modifier-scope +266504 conjuncted-wg +266506 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +266513 modifier-scope +conjuncted-wg +266516 modifier-scope +modifier-scope +266519 conjuncted-wg +modifier-scope +266524 wrapper-scope +modifier-scope +conjuncted-wg +group +266529 modifier-scope +wrapper-clause-scope +266534 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +266539 modifier-scope +wrapper-scope +266542 conjuncted-wg +conjuncted-wg +266545 wrapper-clause-scope +266548 modifier-clause-scope +apposition-group +apposition-group +266553 modifier-scope +266555 conjuncted-wg +conjuncted-wg +conjuncted-wg +266559 wrapper-clause-scope +266563 modifier-clause-scope +apposition-group +modifier-scope +266567 conjuncted-wg +modifier-scope +266570 modifier-scope +conjuncted-wg +266576 conjuncted-wg +conjuncted-wg +266580 modifier-scope +modifier-scope +conjuncted-wg +266584 wrapper-scope +266586 wrapper-clause-scope +266588 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +266594 modifier-scope +modifier-scope +conjuncted-wg +266598 modifier-scope +conjuncted-wg +266601 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266606 modifier-scope +modifier-scope +modifier-scope +266610 wrapper-clause-scope +266612 modifier-clause-scope +apposition-group +266615 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266621 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +266628 wrapper-scope +266630 modifier-scope +wrapper-scope +modifier-scope +266634 modifier-scope +conjuncted-wg +266637 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +266642 wrapper-clause-scope +266644 wrapper-scope +modifier-scope +266648 group +266651 modifier-scope +modifier-scope +conjuncted-wg +266656 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-clause-scope +266666 conjuncted-wg +266668 wrapper-clause-scope +266671 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +266682 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +266688 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266697 wrapper-clause-scope +266700 modifier-scope +wrapper-scope +modifier-scope +266705 modifier-scope +modifier-scope +wrapper-scope +266709 wrapper-clause-scope +266711 modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +266716 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266722 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +266728 modifier-scope +modifier-scope +modifier-scope +266734 wrapper-clause-scope +266736 modifier-scope +conjuncted-wg +266739 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +266745 wrapper-scope +modifier-clause-scope +apposition-group +266754 conjuncted-wg +266756 modifier-scope +266758 conjuncted-wg +266760 wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266766 conjuncted-wg +266769 conjuncted-wg +266771 modifier-scope +266775 wrapper-scope +wrapper-scope +modifier-scope +group +modifier-scope +modifier-scope +266782 conjuncted-wg +conjuncted-wg +conjuncted-wg +266786 wrapper-scope +wrapper-clause-scope +266789 group +group +modifier-scope +wrapper-clause-scope +266795 wrapper-clause-scope +group +266799 conjuncted-wg +wrapper-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266807 wrapper-scope +266809 conjuncted-wg +wrapper-clause-scope +266812 modifier-scope +modifier-scope +modifier-scope +modifier-scope +266817 wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266824 group +266828 group +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266838 modifier-scope +modifier-scope +modifier-scope +266842 wrapper-clause-scope +266844 modifier-scope +modifier-scope +modifier-scope +266848 conjuncted-wg +wrapper-scope +wrapper-clause-scope +266852 group +modifier-scope +modifier-scope +266856 modifier-scope +266858 conjuncted-wg +conjuncted-wg +modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +266868 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +266878 modifier-scope +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +266884 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +266890 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +266895 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +266902 wrapper-clause-scope +266906 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +266915 modifier-scope +266917 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +266923 modifier-scope +266926 group +modifier-scope +modifier-scope +wrapper-clause-scope +266931 wrapper-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +266940 conjuncted-wg +266943 group +266947 group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +266955 conjuncted-wg +conjuncted-wg +conjuncted-wg +266959 wrapper-scope +266961 conjuncted-wg +modifier-scope +conjuncted-wg +wrapper-clause-scope +266966 modifier-scope +modifier-scope +modifier-scope +266970 wrapper-clause-scope +266974 modifier-scope +conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +266979 wrapper-scope +conjuncted-wg +conjuncted-wg +266983 modifier-scope +wrapper-scope +conjuncted-wg +266988 modifier-scope +modifier-scope +modifier-scope +modifier-scope +266994 modifier-scope +modifier-scope +modifier-scope +266998 wrapper-clause-scope +267001 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +267008 conjuncted-wg +267011 group +267015 apposition-group +modifier-scope +modifier-scope +modifier-scope +267020 wrapper-scope +modifier-clause-scope +wrapper-clause-scope +267024 modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267032 modifier-scope +267035 wrapper-scope +267038 conjuncted-wg +267040 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +267047 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +267052 wrapper-clause-scope +267055 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +267062 wrapper-scope +modifier-scope +267067 group +modifier-scope +modifier-scope +conjuncted-wg +267072 modifier-scope +267074 wrapper-clause-scope +group +267078 modifier-scope +267080 conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +267087 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +267094 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +267099 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +267104 modifier-scope +267106 conjuncted-wg +modifier-scope +wrapper-scope +wrapper-clause-scope +group +267112 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267120 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +267127 wrapper-scope +modifier-clause-scope +267130 conjuncted-wg +conjuncted-wg +modifier-clause-scope +wrapper-clause-scope +267135 wrapper-scope +modifier-scope +267139 wrapper-scope +267141 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +267148 group +267151 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267161 conjuncted-wg +modifier-scope +modifier-scope +wrapper-clause-scope +267167 modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +267172 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +267178 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +267185 wrapper-clause-scope +267189 conjuncted-wg +267191 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267198 wrapper-clause-scope +267202 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +267211 group +modifier-scope +wrapper-clause-scope +267215 wrapper-scope +modifier-scope +267221 wrapper-clause-scope +267223 wrapper-scope +modifier-scope +267227 modifier-scope +modifier-scope +267230 group +group +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267238 modifier-scope +conjuncted-wg +modifier-scope +267242 wrapper-clause-scope +267246 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +267260 group +group +modifier-scope +modifier-scope +modifier-scope +267266 group +267270 conjuncted-wg +267272 conjuncted-wg +267274 modifier-scope +wrapper-clause-scope +267278 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +267283 modifier-scope +modifier-scope +267286 wrapper-clause-scope +group +267289 wrapper-clause-scope +267291 modifier-scope +modifier-scope +wrapper-clause-scope +267295 modifier-scope +modifier-scope +modifier-scope +modifier-scope +267300 wrapper-clause-scope +267304 wrapper-clause-scope +267306 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +267313 wrapper-clause-scope +267316 modifier-scope +modifier-scope +modifier-scope +modifier-scope +267321 wrapper-clause-scope +267323 wrapper-scope +modifier-scope +modifier-scope +267328 wrapper-clause-scope +267330 group +group +group +267336 modifier-clause-scope +267338 conjuncted-wg +group +modifier-scope +modifier-scope +wrapper-clause-scope +267344 modifier-scope +modifier-scope +267347 modifier-scope +wrapper-clause-scope +267350 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +267356 wrapper-clause-scope +267360 modifier-scope +conjuncted-wg +267365 modifier-scope +conjuncted-wg +267369 wrapper-clause-scope +267371 wrapper-scope +267373 conjuncted-wg +conjuncted-wg +267376 wrapper-scope +267378 conjuncted-wg +267380 wrapper-clause-scope +267384 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +267389 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267395 apposition-group +modifier-clause-scope +267401 conjuncted-wg +267403 modifier-clause-scope +267405 conjuncted-wg +267407 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +267413 wrapper-clause-scope +267415 group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +267423 modifier-scope +modifier-scope +267426 wrapper-clause-scope +267429 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267435 wrapper-scope +modifier-scope +conjuncted-wg +267439 wrapper-scope +modifier-scope +267442 wrapper-clause-scope +267444 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +group +modifier-scope +modifier-scope +267456 wrapper-clause-scope +267459 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +group +modifier-clause-scope +267469 modifier-scope +conjuncted-wg +modifier-scope +267473 wrapper-clause-scope +267477 modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +267482 wrapper-scope +modifier-scope +267485 modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +267490 wrapper-scope +group +group +267495 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267504 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-clause-scope +267512 conjuncted-wg +wrapper-clause-scope +267515 wrapper-scope +conjuncted-wg +modifier-scope +modifier-scope +267521 conjuncted-wg +conjuncted-wg +conjuncted-wg +267525 conjuncted-wg +267527 wrapper-clause-scope +267531 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +267540 modifier-scope +267542 wrapper-scope +wrapper-clause-scope +267545 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +267552 wrapper-clause-scope +267555 modifier-scope +conjuncted-wg +267558 wrapper-scope +group +modifier-scope +wrapper-clause-scope +267563 modifier-scope +wrapper-scope +267566 wrapper-scope +267568 wrapper-clause-scope +267570 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +267576 modifier-scope +modifier-scope +267581 modifier-scope +wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +267589 wrapper-scope +267591 wrapper-clause-scope +267594 modifier-scope +wrapper-scope +group +modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +267601 wrapper-scope +modifier-scope +wrapper-clause-scope +267605 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +267610 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +267616 wrapper-clause-scope +267619 wrapper-scope +modifier-scope +267623 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +267632 wrapper-clause-scope +group +group +267638 apposition-group +group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +267646 conjuncted-wg +modifier-scope +conjuncted-wg +267650 modifier-scope +conjuncted-wg +267654 wrapper-scope +modifier-scope +conjuncted-wg +267659 conjuncted-wg +267661 wrapper-scope +wrapper-clause-scope +267664 modifier-scope +wrapper-clause-scope +267667 modifier-scope +modifier-scope +267671 wrapper-scope +267673 modifier-scope +267675 wrapper-clause-scope +267680 conjuncted-wg +267683 wrapper-scope +conjuncted-wg +267686 conjuncted-wg +267688 modifier-clause-scope +modifier-clause-scope +wrapper-clause-scope +267693 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +267705 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +267711 modifier-scope +267713 wrapper-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +267720 wrapper-clause-scope +267723 conjuncted-wg +267725 wrapper-scope +modifier-scope +modifier-scope +267730 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +267735 modifier-scope +modifier-scope +267739 modifier-scope +modifier-scope +modifier-scope +267745 conjuncted-wg +wrapper-clause-scope +267748 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267755 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +267761 modifier-scope +267763 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +267768 wrapper-scope +modifier-scope +modifier-scope +267772 wrapper-clause-scope +group +wrapper-clause-scope +267776 modifier-scope +modifier-scope +267780 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +267787 group +group +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +267798 conjuncted-wg +267800 wrapper-scope +modifier-scope +267803 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267811 wrapper-clause-scope +267814 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +267821 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +modifier-scope +wrapper-clause-scope +267830 wrapper-clause-scope +267833 wrapper-scope +modifier-scope +conjuncted-wg +267838 wrapper-clause-scope +267841 group +modifier-scope +wrapper-clause-scope +267845 wrapper-scope +modifier-clause-scope +apposition-group +modifier-scope +modifier-scope +267851 conjuncted-wg +267853 group +modifier-scope +modifier-scope +conjuncted-wg +267859 conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267865 wrapper-clause-scope +267868 modifier-scope +modifier-scope +conjuncted-wg +apposition-group +wrapper-clause-scope +267874 wrapper-scope +267877 wrapper-scope +modifier-scope +modifier-scope +267881 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +267887 wrapper-clause-scope +267891 group +modifier-scope +267894 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +267902 wrapper-clause-scope +267904 modifier-scope +267906 modifier-scope +267908 wrapper-clause-scope +267910 modifier-scope +wrapper-scope +wrapper-clause-scope +267914 wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +267920 wrapper-clause-scope +267924 modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +267932 modifier-scope +conjuncted-wg +modifier-scope +group +modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +267941 wrapper-scope +modifier-scope +modifier-scope +267945 wrapper-clause-scope +267948 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267957 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +267965 wrapper-clause-scope +group +wrapper-clause-scope +267970 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267975 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +267980 wrapper-clause-scope +group +267984 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +267991 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +267998 modifier-scope +268000 wrapper-clause-scope +268003 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +268013 wrapper-scope +modifier-clause-scope +268016 modifier-scope +modifier-scope +268019 wrapper-clause-scope +268022 modifier-scope +wrapper-scope +modifier-scope +268029 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +conjuncted-wg +268036 wrapper-scope +conjuncted-wg +268040 modifier-scope +conjuncted-wg +268043 modifier-scope +modifier-scope +wrapper-scope +conjuncted-wg +268049 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +268056 modifier-scope +conjuncted-wg +268060 conjuncted-wg +conjuncted-wg +268063 wrapper-clause-scope +268065 modifier-scope +268067 wrapper-clause-scope +268069 wrapper-clause-scope +268071 wrapper-scope +modifier-scope +268075 wrapper-clause-scope +268078 wrapper-clause-scope +268080 modifier-scope +modifier-scope +268083 conjuncted-wg +268085 wrapper-clause-scope +268090 group +268092 modifier-scope +conjuncted-wg +modifier-scope +268096 modifier-scope +conjuncted-wg +modifier-scope +268101 wrapper-clause-scope +268103 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268112 wrapper-clause-scope +268114 conjuncted-wg +268117 conjuncted-wg +268120 wrapper-clause-scope +268124 modifier-scope +conjuncted-wg +conjuncted-wg +268128 conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +268143 conjuncted-wg +268145 modifier-scope +modifier-scope +modifier-scope +268149 wrapper-clause-scope +268152 modifier-clause-scope +wrapper-scope +group +modifier-scope +modifier-scope +wrapper-clause-scope +268159 group +modifier-scope +modifier-scope +wrapper-clause-scope +268164 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +268170 wrapper-scope +268172 group +268175 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268181 wrapper-clause-scope +268184 wrapper-scope +wrapper-scope +modifier-scope +268188 conjuncted-wg +conjuncted-wg +268192 group +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +wrapper-scope +modifier-scope +268201 modifier-scope +modifier-scope +modifier-scope +268206 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +268211 modifier-clause-scope +group +268215 group +268217 modifier-scope +268219 conjuncted-wg +268222 modifier-scope +conjuncted-wg +268226 wrapper-scope +modifier-scope +modifier-scope +conjuncted-wg +268231 apposition-group +268233 modifier-scope +modifier-scope +modifier-scope +modifier-scope +268240 wrapper-scope +modifier-scope +conjuncted-wg +268244 wrapper-scope +modifier-scope +conjuncted-wg +268248 wrapper-scope +modifier-scope +conjuncted-wg +268252 wrapper-scope +modifier-scope +268255 wrapper-clause-scope +268258 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +268264 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268272 wrapper-clause-scope +268274 wrapper-clause-scope +268276 wrapper-scope +group +modifier-scope +wrapper-clause-scope +268282 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +268290 wrapper-clause-scope +268293 modifier-scope +conjuncted-wg +268296 modifier-scope +modifier-scope +268299 modifier-scope +268301 wrapper-clause-scope +268303 modifier-scope +modifier-scope +wrapper-scope +group +modifier-scope +268310 modifier-scope +268312 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +268318 wrapper-clause-scope +268320 modifier-scope +modifier-scope +modifier-scope +group +apposition-group +modifier-scope +268328 wrapper-clause-scope +268331 modifier-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +group +268338 modifier-scope +modifier-scope +268341 modifier-scope +268344 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268352 group +268354 modifier-scope +modifier-scope +modifier-scope +268358 modifier-scope +268360 modifier-scope +268362 modifier-scope +268364 modifier-scope +268366 modifier-scope +268368 modifier-scope +268370 modifier-scope +268372 modifier-scope +268374 modifier-scope +268376 modifier-scope +268378 modifier-scope +268380 wrapper-clause-scope +group +268383 modifier-scope +modifier-scope +modifier-scope +268387 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +268393 wrapper-clause-scope +268395 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +268402 wrapper-clause-scope +group +268405 wrapper-scope +wrapper-clause-scope +268409 group +modifier-scope +group +modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +268418 wrapper-clause-scope +group +268421 modifier-scope +modifier-scope +268424 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +268429 wrapper-clause-scope +268432 modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +268437 modifier-scope +modifier-scope +modifier-scope +268441 wrapper-clause-scope +268443 modifier-scope +wrapper-scope +modifier-scope +modifier-scope +268448 wrapper-clause-scope +268450 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +268457 wrapper-clause-scope +group +268460 modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +268466 wrapper-clause-scope +268468 modifier-scope +268470 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +wrapper-scope +268476 wrapper-clause-scope +268478 modifier-scope +wrapper-scope +modifier-clause-scope +268482 conjuncted-wg +wrapper-clause-scope +268486 conjuncted-wg +wrapper-clause-scope +268489 wrapper-clause-scope +268491 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268498 wrapper-clause-scope +268501 modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-scope +wrapper-scope +modifier-scope +modifier-scope +268510 modifier-scope +conjuncted-wg +modifier-scope +268516 wrapper-scope +modifier-scope +268519 modifier-scope +modifier-scope +conjuncted-wg +modifier-scope +268524 conjuncted-wg +modifier-clause-scope +modifier-clause-scope +modifier-scope +268529 modifier-scope +268531 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +268537 modifier-scope +modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +268544 wrapper-clause-scope +268546 modifier-scope +268548 wrapper-clause-scope +268551 modifier-scope +modifier-scope +268554 modifier-scope +conjuncted-wg +modifier-scope +wrapper-scope +conjuncted-wg +268562 modifier-scope +modifier-scope +conjuncted-wg +268566 modifier-scope +modifier-scope +conjuncted-wg +268570 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +268576 wrapper-clause-scope +268580 conjuncted-wg +268582 modifier-scope +268584 modifier-scope +conjuncted-wg +modifier-scope +wrapper-clause-scope +268589 group +modifier-scope +wrapper-scope +conjuncted-wg +268594 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +268599 wrapper-clause-scope +268603 modifier-scope +modifier-scope +268606 conjuncted-wg +conjuncted-wg +268609 group +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268619 modifier-scope +modifier-scope +268623 wrapper-scope +268625 wrapper-clause-scope +268629 wrapper-clause-scope +268631 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268639 group +wrapper-clause-scope +268643 conjuncted-wg +268645 wrapper-clause-scope +group +wrapper-clause-scope +268650 conjuncted-wg +268654 wrapper-scope +modifier-clause-scope +modifier-clause-scope +group +modifier-scope +wrapper-clause-scope +268662 wrapper-clause-scope +268664 group +group +268669 modifier-clause-scope +268671 conjuncted-wg +group +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-clause-scope +268679 modifier-scope +modifier-scope +modifier-scope +modifier-scope +268684 modifier-scope +268686 wrapper-clause-scope +268689 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +268697 modifier-scope +268702 wrapper-clause-scope +268704 conjuncted-wg +268706 modifier-scope +conjuncted-wg +268710 modifier-scope +conjuncted-wg +268713 modifier-scope +268717 conjuncted-wg +268719 modifier-scope +modifier-scope +wrapper-scope +268723 wrapper-clause-scope +268725 modifier-scope +modifier-scope +268729 group +268731 modifier-scope +conjuncted-wg +modifier-scope +268735 modifier-scope +conjuncted-wg +modifier-scope +268739 modifier-scope +conjuncted-wg +modifier-scope +268744 wrapper-clause-scope +group +268747 modifier-scope +modifier-scope +wrapper-clause-scope +268752 modifier-scope +modifier-scope +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +268760 modifier-scope +wrapper-scope +modifier-scope +268766 modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-scope +conjuncted-wg +modifier-clause-scope +268779 conjuncted-wg +268782 group +modifier-scope +modifier-scope +268786 wrapper-scope +modifier-scope +268790 modifier-scope +modifier-scope +268793 modifier-scope +conjuncted-wg +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268802 wrapper-clause-scope +268805 modifier-scope +conjuncted-wg +modifier-scope +268810 wrapper-clause-scope +268812 wrapper-clause-scope +268816 wrapper-clause-scope +group +268819 wrapper-clause-scope +268822 wrapper-clause-scope +268824 modifier-scope +268827 modifier-clause-scope +wrapper-clause-scope +268830 modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268837 group +wrapper-clause-scope +268840 wrapper-scope +268842 modifier-scope +wrapper-scope +group +modifier-scope +wrapper-clause-scope +268848 wrapper-scope +modifier-scope +modifier-scope +268852 wrapper-clause-scope +group +wrapper-clause-scope +268856 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +modifier-scope +268864 modifier-scope +modifier-scope +modifier-scope +group +268869 wrapper-scope +modifier-scope +modifier-scope +modifier-scope +conjuncted-wg +wrapper-scope +modifier-scope +modifier-scope +modifier-scope +wrapper-clause-scope +268880 wrapper-scope +modifier-scope +modifier-scope +268885 wrapper-clause-scope +268893 group +268896 modifier-scope +modifier-scope +group +modifier-scope +wrapper-scope diff --git a/tf/0.1.1/verse.tf b/tf/0.1.1/verse.tf new file mode 100644 index 0000000..29179c4 --- /dev/null +++ b/tf/0.1.1/verse.tf @@ -0,0 +1,145737 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=verse +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=int +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +68 +68 +68 +68 +68 +68 +68 +68 +68 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +74 +74 +74 +74 +74 +74 +74 +74 +74 +74 +74 +74 +74 +74 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +99 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +72 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +73 +74 +74 +74 +74 +74 +74 +74 +75 +75 +75 +75 +75 +75 +75 +75 +75 +75 +76 +76 +76 +76 +76 +76 +76 +76 +76 +76 +76 +76 +76 +76 +77 +77 +77 +77 +77 +77 +77 +77 +77 +77 +77 +78 +78 +78 +78 +78 +78 +78 +78 +78 +78 +78 +78 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +79 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +80 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +63 +63 +63 +63 +63 +63 +63 +63 +63 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +65 +65 +65 +65 +65 +65 +65 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +68 +68 +68 +68 +68 +68 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +61 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +62 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +63 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +64 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +65 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +66 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +67 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +68 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +69 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +70 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +71 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +59 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +60 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +41 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +42 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +43 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +44 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +45 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +46 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +47 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +48 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +49 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +50 +51 +51 +51 +51 +51 +51 +51 +51 +51 +51 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +52 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +53 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +54 +55 +55 +55 +55 +55 +55 +55 +55 +55 +55 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +56 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +57 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +58 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +20 +20 +20 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +30 +30 +30 +30 +30 +30 +30 +30 +30 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +31 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +32 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +33 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +34 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +35 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +36 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +37 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +38 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +39 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +40 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +1 +1 +1 +1 +1 +1 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +28 +29 +29 +29 +29 +29 +29 +29 +29 +29 +29 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +21 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +22 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +23 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +24 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +25 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +26 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +27 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +5 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +6 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +7 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +8 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +10 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +11 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +12 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +13 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +14 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +15 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +16 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +17 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +18 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +19 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +20 +21 +21 +21 +21 +21 +21 +21 +146079 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +45 +47 +48 +49 +50 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +99 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +35 +36 +37 +38 +39 +40 +41 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 diff --git a/tf/0.1.1/voice.tf b/tf/0.1.1/voice.tf new file mode 100644 index 0000000..70b60cc --- /dev/null +++ b/tf/0.1.1/voice.tf @@ -0,0 +1,28371 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=Verbal voice +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +10 active +15 active +20 active +29 active +40 active +45 active +50 active +55 active +60 active +65 active +73 active +81 active +86 active +93 active +102 active +107 active +112 active +117 active +122 active +127 active +132 active +137 active +142 active +147 active +152 active +157 active +162 active +179 active +184 active +189 active +194 active +199 active +204 active +209 active +214 active +219 active +224 active +229 active +234 active +242 passive +245 passive +283 active +passive +293 active +295 passive +298 active +308 active +311 active +313 active +passive +316 active +321 passive +middle +327 passive +329 active +334 passive +active +344 passive +348 active +350 middle +353 active +360 active +371 active +373 passive +375 passive +381 active +middle +387 active +389 middle +392 active +398 active +passive +407 passive +411 active +413 active +419 active +425 active +429 active +432 active +440 passive +450 middle +454 middle +457 active +459 active +461 passive +466 active +474 active +active +478 active +482 passive +489 active +497 middlepassive +503 passive +506 active +514 passive +525 active +533 middle +middlepassive +536 active +545 active +548 active +554 middlepassive +557 active +561 active +passive +active +570 active +active +575 active +active +580 active +583 passive +585 middle +589 active +593 active +596 active +passive +600 active +604 active +607 passive +612 active +616 active +625 active +active +629 active +633 active +642 passive +646 active +652 active +658 active +660 middle +663 middlepassive +668 active +passive +active +678 active +682 active +686 active +689 active +691 active +695 active +699 passive +active +709 active +713 active +720 passive +722 passive +728 active +731 active +737 active +739 passive +743 passive +746 active +active +768 active +773 passive +775 passive +780 active +783 passive +790 active +796 active +passive +800 active +802 active +805 middle +808 middlepassive +815 active +passive +active +825 middlepassive +830 active +832 active +839 passive +active +848 active +853 active +856 active +864 passive +866 active +868 passive +871 active +878 active +active +882 passive +885 passive +887 passive +893 passive +899 middlepassive +903 active +909 active +active +912 active +919 active +921 passive +926 active +928 active +932 active +937 active +945 active +963 active +969 middlepassive +984 passive +991 middle +996 active +1002 middlepassive +1006 active +1011 active +1013 active +1016 active +1019 active +1026 active +active +1031 active +1035 active +1038 middlepassive +1045 active +1058 middlepassive +1063 active +1066 passive +1070 passive +1074 active +1083 middlepassive +1086 active +1089 active +1093 active +1096 active +1110 active +1115 active +1125 active +1129 middlepassive +1142 passive +1147 active +1149 active +1152 active +1155 passive +1158 middlepassive +1162 passive +1165 active +1167 active +1171 active +active +1174 active +1178 active +1181 passive +1185 active +1190 middle +passive +1195 active +1198 active +1201 middlepassive +1205 middle +1210 active +1212 active +1220 active +1224 passive +1231 passive +1236 active +1243 active +1245 active +1247 active +active +1251 active +1255 active +1261 middle +1264 passive +active +passive +1271 middle +1278 middlepassive +1283 active +1292 active +1300 active +1303 active +1307 active +1311 passive +1316 middlepassive +1322 active +1326 active +1332 active +1337 passive +1339 active +1345 active +1354 active +1366 active +1371 active +1373 active +active +1377 active +1381 active +1384 passive +1389 active +1393 active +1395 active +1400 middle +1402 active +1404 active +1407 active +1410 passive +active +1416 active +1419 active +active +1431 passive +1433 passive +1438 active +1455 middlepassive +1460 active +1463 middlepassive +1470 active +1474 middle +1477 active +1479 active +active +1482 active +1488 active +1494 active +1499 passive +1506 active +1512 active +1515 active +1517 active +1521 active +1528 active +1531 active +1534 active +1536 active +1557 active +1562 active +1567 active +1574 active +1577 active +1582 active +1588 active +1594 active +1604 active +1613 active +1618 active +1623 passive +middlepassive +1626 middlepassive +1630 active +1633 active +1651 active +1654 active +1659 active +1661 active +1667 active +1671 active +1673 active +1681 active +1688 active +1691 passive +1697 active +1702 active +1704 active +1709 passive +1715 passive +1725 middle +1733 passive +1736 passive +1741 active +1747 active +1749 active +1752 active +1754 active +1759 middlepassive +1762 active +1764 middlepassive +1775 active +1782 active +1791 passive +1794 passive +1797 active +1801 passive +1803 passive +1808 active +1814 middlepassive +1816 passive +1819 middlepassive +1821 active +1824 active +1834 active +1841 active +1849 active +1855 active +1864 active +1866 active +active +1874 active +active +1877 active +1880 active +1884 active +1897 active +1904 middle +1908 active +1916 active +1921 passive +1930 active +1932 active +1935 passive +1942 active +1947 active +1958 active +1964 active +1966 passive +1970 active +1974 active +1976 middle +1981 active +1986 passive +1991 middle +1997 active +2003 middle +2009 active +2012 middle +2020 active +2028 passive +2033 active +2037 active +2046 active +2048 passive +2054 active +active +2059 active +active +2067 active +2076 active +2089 passive +2091 active +2095 active +2099 active +2103 active +2105 passive +2107 active +2110 active +2115 active +2119 active +2122 active +2135 active +2137 active +2140 active +2144 active +2147 middle +2158 passive +2167 active +2169 active +2172 active +2176 active +2179 middle +2192 active +2194 passive +2197 active +2201 active +2206 active +2211 active +2218 active +2220 passive +2224 passive +active +middlepassive +2228 active +2230 passive +2234 active +2236 active +2244 active +2247 active +2254 active +2263 active +2272 active +2282 active +2285 middlepassive +2288 active +2293 active +2308 active +active +2311 passive +2321 active +2324 active +2330 active +2336 active +2343 active +2345 passive +2350 active +active +2359 active +2362 active +2367 active +2369 active +2372 active +2375 middle +2377 passive +active +2380 passive +active +2386 active +2392 active +2394 active +2399 middlepassive +2402 active +2405 middle +2417 active +2423 active +2430 active +2432 active +2436 active +2443 active +2446 middle +2453 active +2460 active +2462 middle +2472 active +2474 active +2479 active +2485 passive +2492 active +2503 active +2506 active +2512 active +2521 passive +2526 active +2528 active +2534 active +2537 active +2542 active +2547 active +2559 active +2563 active +2567 middlepassive +2569 middle +2574 active +2584 active +middlepassive +2587 passive +2591 active +2593 active +2600 middlepassive +active +2607 active +2611 middle +2624 active +2628 active +2631 middlepassive +2633 active +2638 active +2644 passive +2647 passive +2650 active +2656 active +2660 active +2664 middlepassive +2672 passive +2676 active +2680 passive +2695 active +2699 active +2707 active +2713 active +2718 middle +2725 active +2731 active +2742 active +2749 active +2755 active +2757 middlepassive +2763 active +2768 passive +2771 active +2773 active +2775 active +2781 active +middle +2790 middle +2793 passive +2796 active +2810 active +2814 active +2817 active +2827 active +2831 active +2833 active +2835 active +2845 active +2850 active +2852 active +2855 active +2860 middle +2869 active +2874 active +2884 middle +2891 active +2897 middle +2906 active +2911 middlepassive +2914 active +2919 active +2923 active +2926 middle +2930 active +2932 middlepassive +2934 active +2939 active +2942 active +2947 active +2950 active +2956 middle +2961 active +2969 active +2977 active +2979 active +2981 active +2990 active +2995 active +3001 active +middlepassive +active +3014 active +active +3021 active +3023 active +3025 active +3027 active +3037 middle +3048 active +3053 passive +3057 active +3065 active +active +3068 active +3071 active +3074 middle +3080 active +3082 active +3089 active +3093 active +3104 passive +3108 active +3115 active +3124 active +3127 passive +3132 active +passive +3138 active +passive +3143 active +3161 active +3164 active +3168 active +active +3177 middle +3185 active +3195 active +active +3206 active +3212 active +3221 active +3228 passive +active +3231 active +3233 passive +3235 active +3237 active +active +3240 passive +3245 active +active +3249 active +active +3253 active +passive +3256 active +3262 active +3269 active +3274 active +3277 active +3283 active +active +3287 active +3300 active +3303 active +3309 active +3311 active +3318 active +3322 active +3328 active +3342 active +3348 active +3350 middlepassive +3358 passive +3362 active +3368 active +3370 active +3372 active +3377 middlepassive +3385 active +3392 middle +3395 active +3409 active +3416 active +3418 middlepassive +3423 active +3429 active +3433 active +3436 passive +3440 passive +3446 middle +3451 active +3455 middle +3463 active +3474 active +3486 active +3492 active +3499 active +3502 active +3506 active +3508 active +3512 middlepassive +3518 active +3524 active +3526 passive +3530 active +3538 active +3542 active +3546 active +3550 active +3556 active +3558 passive +3565 active +3572 active +3574 passive +3578 active +3586 active +3590 active +3594 active +3598 active +3603 active +3605 active +3611 middle +3613 active +3619 passive +3627 active +active +3632 active +3640 active +3645 active +3650 middle +3652 active +active +3655 active +3658 active +middlepassive +3661 active +3663 active +3666 middle +3668 active +active +passive +3673 passive +3678 active +3682 active +3684 active +3686 active +3688 active +3692 active +3696 active +3702 active +3706 active +3709 active +3712 active +3717 passive +3723 passive +active +3727 active +active +3731 passive +3734 active +3737 active +3744 active +3747 active +3750 passive +3757 active +3761 active +3766 active +3768 passive +3770 middlepassive +3773 middlepassive +3775 middlepassive +3780 active +3783 active +3785 active +3788 active +3790 active +3792 active +3794 active +3803 active +3805 active +3813 active +3815 passive +3832 passive +3839 middle +3848 active +3853 active +3855 active +passive +3859 passive +3869 active +3874 active +3878 passive +3880 active +3882 middle +3887 active +3892 passive +3894 active +3898 middle +active +3901 middlepassive +3904 active +3912 active +active +3915 passive +3917 passive +3922 active +3927 active +3931 active +3935 active +3939 active +active +3945 active +3948 active +3951 active +3955 middlepassive +3957 active +3964 active +3977 active +3981 active +3986 active +3989 active +3992 active +3994 active +4001 active +4003 active +4006 active +4009 active +4014 active +4019 active +4025 middle +4028 middle +4035 passive +4041 active +4043 active +active +4046 active +4048 active +middle +4051 active +4055 active +4058 passive +active +4066 middle +4072 active +active +4075 active +4085 active +4087 active +4097 active +4100 middlepassive +4104 middlepassive +4109 active +4111 active +4117 middle +active +active +4127 active +4131 active +4134 active +4141 passive +4145 active +4147 active +4149 active +4151 active +4159 active +4161 active +4164 active +active +4170 middle +active +4182 active +4188 active +active +4191 active +4195 active +4200 middlepassive +4202 middle +4206 active +4212 active +4214 active +4216 active +4222 active +4225 active +4227 active +4233 middle +active +4239 passive +4243 active +4247 active +4250 active +4252 passive +4257 middle +4261 active +4265 active +4269 active +4273 active +4276 middlepassive +4284 active +4286 active +passive +4292 active +active +4295 active +4298 active +4301 active +4309 active +4312 active +4315 active +active +4321 active +4327 passive +active +4334 active +4337 passive +4339 active +4343 active +4349 active +4353 active +4355 middlepassive +4360 passive +4362 active +4364 active +4367 active +active +4371 middle +4373 middlepassive +4378 middle +4383 active +middlepassive +4392 active +4395 active +4406 active +4412 active +active +4417 active +4419 active +4423 active +4425 passive +active +4428 active +4430 active +4436 active +active +4442 middlepassive +4447 active +4454 active +4460 active +4462 active +4467 middlepassive +4472 active +4477 active +4481 middle +4484 passive +4491 active +4494 active +4502 active +4512 middlepassive +4514 active +4523 passive +4529 passive +4533 passive +4535 active +4543 passive +4546 active +4548 middle +4551 active +active +4554 active +4560 active +4562 active +active +4570 middle +4572 passive +4575 active +4582 middle +4584 active +4587 active +4589 middle +4596 active +4601 middle +4605 passive +4609 passive +4611 active +4613 active +active +4619 active +4622 passive +4632 active +4639 active +4645 passive +active +active +4650 active +4654 active +4656 active +4660 passive +4663 active +active +4669 passive +4673 active +4683 active +4687 active +4690 active +4692 active +active +4698 active +4702 active +4707 active +4711 active +4713 middlepassive +4715 active +active +4721 middle +4725 active +4730 passive +4733 passive +4738 passive +4742 active +active +4745 active +4748 active +active +4758 middlepassive +middle +active +4763 middlepassive +4765 passive +4768 active +4772 active +4775 active +4777 passive +4785 active +4791 active +4795 active +4804 active +4810 active +4816 active +4823 active +4826 passive +4830 active +passive +4833 passive +4837 active +4840 active +4853 passive +4859 active +4866 middle +4871 active +4877 active +4880 active +4892 active +4897 passive +4937 active +4942 active +4945 active +4947 active +4952 active +4958 active +4960 middlepassive +4966 active +4970 middlepassive +active +active +4974 active +4979 active +active +4982 active +4984 active +4986 active +4988 active +4990 active +4992 middle +5027 active +active +5033 active +5035 active +5038 active +5040 middlepassive +5044 middle +5049 active +5053 active +5062 active +5069 passive +5074 middle +5077 active +5081 middlepassive +5089 active +5096 active +5099 middle +5111 middle +5113 active +5121 middlepassive +5132 active +5137 active +5146 active +5154 passive +5165 active +5168 active +5172 active +5174 passive +5181 active +5185 active +5187 active +5195 active +5199 active +5208 middle +5213 active +5216 middle +passive +5226 active +5230 passive +5233 active +5239 active +5245 active +5249 active +5255 active +5261 active +5276 middle +5292 active +5300 passive +5304 active +passive +5308 passive +5313 passive +5315 active +5320 active +5329 active +active +5336 middlepassive +5339 active +5344 middlepassive +5347 active +5349 middlepassive +5352 middlepassive +5357 active +5364 passive +5370 middle +5386 passive +active +5390 middlepassive +5393 active +5398 active +5404 active +5419 middle +5424 middle +5436 active +5438 active +active +5445 active +active +5451 active +active +5478 active +5485 active +5490 active +5497 active +5503 active +5508 active +5512 active +5516 active +5520 active +5524 active +5530 active +5533 middlepassive +5536 middlepassive +5540 middlepassive +middlepassive +5543 active +5546 middlepassive +5553 middle +5556 middlepassive +5563 middle +5567 active +5579 active +5583 active +5588 middle +5590 active +5593 active +5598 active +5601 active +5603 active +5611 active +5619 active +5624 active +5627 active +5629 middlepassive +5632 active +5634 passive +5637 active +5639 passive +active +5643 active +5645 active +5647 active +5650 active +5652 passive +5655 active +5658 passive +5661 passive +5664 active +5668 passive +5673 middlepassive +middle +5677 active +5683 middle +active +5691 passive +5694 active +active +5699 passive +middle +5704 active +5712 active +5714 active +5716 active +5722 active +5725 passive +middle +5728 active +5736 active +5743 active +5746 passive +5764 active +5778 passive +5781 active +5792 active +5795 active +middle +5798 active +5801 active +middlepassive +5804 active +5806 active +5809 active +5814 active +5816 middlepassive +5821 active +5824 active +active +5829 middle +active +5833 middle +5835 active +5838 active +5840 active +5842 active +5844 active +active +5850 active +5852 active +5854 active +middle +5865 passive +5873 middle +active +5879 middle +5886 active +5899 middle +5903 middle +5912 active +5914 active +5920 middle +5932 passive +5935 middle +5940 passive +5944 middle +5948 active +5953 active +5959 middle +5969 passive +5972 active +middle +5983 active +5990 active +5999 middle +6004 passive +6011 active +6022 active +6030 active +middlepassive +6034 active +6039 active +6041 passive +6043 active +6045 active +6052 active +6056 active +6063 active +6078 active +6083 passive +6095 active +6097 middle +active +6101 active +6105 active +active +6108 middle +6112 active +6114 active +6116 active +6121 active +6124 active +6126 active +6129 active +6135 active +6146 active +6148 active +6150 active +active +6164 active +6178 active +6181 active +6183 active +6189 active +6193 active +6195 active +6197 active +6203 active +6207 active +6216 active +6218 active +6224 middle +6227 active +6230 active +6232 active +6234 active +6237 active +6239 active +6243 active +6246 middle +6251 active +6256 active +6263 active +6266 active +6269 active +6273 active +6277 active +6279 active +6282 active +6287 active +6289 passive +6295 active +6299 active +6304 active +6308 active +active +6312 active +6316 active +6320 active +6326 active +6328 passive +6330 passive +6335 active +middle +6341 active +6346 active +6350 active +6360 active +6362 active +6364 active +6366 active +6375 passive +6377 active +6380 passive +6382 active +6385 active +6395 active +6397 passive +6399 middlepassive +6404 active +6409 active +6411 active +6413 middle +6418 active +6421 active +6428 active +active +6432 active +6444 active +6448 active +6452 passive +6455 passive +6461 passive +6465 passive +6472 active +6475 passive +6478 passive +6487 active +6495 active +6501 middle +6508 active +6512 active +6521 middlepassive +6523 active +6533 active +6537 active +6545 active +6548 active +6553 active +6557 active +6560 active +6563 active +6569 passive +6578 passive +6582 active +6589 passive +6594 active +6601 passive +6611 active +6613 active +6623 active +6638 passive +6642 middlepassive +6644 active +6646 active +6655 active +6663 active +6673 active +6676 active +6683 active +6686 active +6698 passive +6704 passive +6706 middle +6713 active +6715 active +6719 active +6722 passive +active +6730 active +6734 passive +6745 active +6758 middle +6775 middle +6784 active +6787 active +6793 middle +6799 passive +6808 active +6811 active +6817 active +6822 middle +6831 active +6835 middlepassive +6839 active +6843 active +6845 active +6850 active +6852 active +6854 active +active +active +6858 passive +6860 passive +6862 middlepassive +6864 active +6873 active +active +6877 middlepassive +6887 middle +6896 active +6899 middle +6906 active +6908 active +6910 active +6912 active +6915 middle +6924 active +active +6927 active +6930 passive +active +6933 active +6936 active +6942 active +6947 active +6955 active +middle +6967 active +6983 active +6990 active +6993 middlepassive +6998 passive +7007 active +middlepassive +7016 active +7018 active +7023 active +middle +active +7027 active +7029 active +7033 active +7037 active +7042 active +7045 active +7049 active +7055 active +7060 active +7064 active +7069 active +passive +7075 active +7077 passive +7080 active +7085 active +7089 active +7093 active +7100 active +7112 active +7114 active +7116 active +7119 active +7125 active +7129 passive +active +7133 passive +active +7144 passive +7147 active +passive +7151 passive +7155 active +7158 active +passive +7167 active +7169 active +7171 active +7173 active +7175 active +7177 active +7179 passive +7185 active +7187 active +7191 active +7193 active +active +7198 active +7200 passive +7210 active +7215 active +7218 active +7224 active +7228 active +7230 active +7232 middle +7240 active +7246 active +7249 active +7256 active +active +7259 active +7262 active +7264 active +7266 active +7269 active +7272 active +7276 active +7278 active +7285 active +middlepassive +7290 active +7292 passive +7298 active +7303 passive +7309 passive +7311 active +7315 active +7320 active +7324 active +7330 active +7332 middle +7340 passive +7346 passive +7348 active +7352 active +7363 active +7368 middlepassive +7375 passive +7377 active +7381 active +7383 active +7386 active +7389 active +7400 active +7402 active +passive +7409 active +7419 active +7422 active +7427 active +7434 active +7437 active +7442 active +7444 passive +7449 active +7454 active +7460 active +7467 active +7471 active +7476 active +7481 active +7483 active +active +active +7489 active +7493 active +7496 active +7501 active +passive +7512 active +7515 active +7520 active +7526 active +7531 active +7538 active +7540 active +7542 active +7550 active +7552 active +7560 active +7566 passive +7570 active +7572 middlepassive +7575 active +7581 active +7588 active +7591 active +7598 active +7600 active +7607 passive +7611 active +7622 active +7625 passive +7627 passive +7631 active +active +7638 middle +passive +7643 active +7646 active +7651 active +7656 active +active +7667 passive +active +7670 active +7674 active +7682 active +7690 active +7698 active +7707 active +7709 active +7717 active +7722 active +7725 passive +7730 passive +7732 middle +7738 active +7747 active +7757 active +7761 active +7769 middle +7780 active +7791 active +7793 active +7795 active +7801 passive +7806 active +7808 active +7814 active +7816 active +7818 active +7820 active +7826 active +7832 active +7836 active +7840 active +active +7844 active +7846 active +7850 active +7856 passive +7864 active +7867 passive +active +7873 active +active +7883 active +7885 middle +7891 middle +7895 active +7903 active +7911 middle +7919 active +7922 active +7927 active +7933 passive +7939 active +7943 active +7952 middle +7954 active +7960 active +7963 active +7968 active +7975 passive +7978 active +7989 active +7998 passive +8019 active +8026 passive +8032 active +8035 active +8050 active +8062 active +8070 active +8075 active +8080 passive +8089 active +8095 active +8098 active +8102 middle +8112 active +8117 active +8119 active +8122 active +8124 active +passive +8132 active +8137 middle +middle +8147 active +8153 active +8155 active +8158 middle +8161 passive +8166 active +active +8178 passive +8186 middlepassive +active +passive +8190 active +active +8197 passive +8204 passive +8208 active +8213 active +8217 active +8221 active +8224 active +active +8229 active +8232 active +8242 active +8245 active +8252 active +active +8257 passive +8261 active +8267 middle +active +8272 active +8274 active +8281 active +8283 active +8287 active +8291 active +8297 active +8301 active +active +active +8306 active +8309 active +8312 active +8323 active +active +8329 active +8332 passive +8336 active +8344 active +8348 active +8350 active +active +8362 active +8365 passive +8367 active +8369 active +8377 active +active +8388 active +8391 active +8396 active +8403 active +8407 active +8410 active +8416 middle +8419 middle +8421 active +8432 active +passive +8438 active +8447 active +8450 active +8457 active +8462 active +passive +active +8467 active +8472 active +8475 active +8479 active +active +8482 active +8484 middlepassive +8486 passive +8490 active +8494 active +active +8497 active +8505 active +active +8508 active +8513 active +8518 active +8523 active +8526 passive +8528 middle +passive +active +active +8533 active +8539 active +8542 middle +8545 active +8550 active +8552 active +8557 active +8565 active +8567 active +8571 active +8573 active +active +8581 active +8588 active +8595 active +8600 active +8602 active +8606 middle +8614 middle +passive +8617 middlepassive +8625 active +8631 active +8638 middle +8643 active +8646 passive +active +8653 active +8665 active +active +8674 active +8679 active +8682 active +8685 active +8696 passive +8699 active +8708 active +8719 active +8723 active +8730 active +8736 active +8741 middlepassive +8743 active +8748 middle +8751 active +8753 active +8755 active +8758 middlepassive +8762 active +8767 middlepassive +8772 active +8776 active +8779 active +8781 active +8785 active +8788 passive +8791 passive +active +8797 active +8803 passive +active +8806 active +8814 active +8818 middlepassive +8820 passive +8823 active +8825 active +8831 active +8836 active +8838 active +8842 middlepassive +8849 active +8853 passive +8856 middlepassive +8863 middlepassive +8865 active +8872 middlepassive +8882 active +8884 active +8891 active +8893 active +8897 active +8901 active +8909 middle +8916 active +active +active +active +8928 middlepassive +8932 middle +8936 active +8940 active +8942 active +active +8946 active +8951 passive +active +8954 passive +8961 active +8966 active +active +8969 active +8971 active +8975 passive +active +8978 active +8980 active +8986 active +8991 active +8998 active +9003 active +9011 passive +9014 active +9022 passive +9025 active +9027 passive +9036 active +9040 active +9047 active +9051 middlepassive +9054 active +9058 active +9069 active +9076 active +9081 active +active +9084 active +9089 active +9092 active +9094 active +9101 middle +9105 active +middlepassive +9114 active +9118 active +9120 active +9122 active +9126 active +9129 passive +9134 active +9145 active +9149 active +9155 active +9158 active +9164 active +9167 active +9171 active +9179 active +active +9182 active +9191 active +9194 passive +9197 active +9203 active +9206 active +active +9215 active +9218 active +9223 active +9229 active +9234 active +active +9241 active +9245 passive +active +9249 middle +active +9253 active +9261 active +active +9270 active +active +9278 middlepassive +9284 active +9288 passive +9296 active +9298 active +9302 active +9306 middle +9308 active +9312 active +9314 active +9316 active +9326 middlepassive +9329 active +9333 active +9335 active +9338 active +9340 middlepassive +9347 active +9349 active +9351 active +9360 active +9370 active +9373 active +9378 active +9381 active +9390 active +9393 active +active +9411 active +9418 active +9422 active +active +9427 active +9434 active +9450 active +9456 active +active +9459 passive +9462 active +9464 active +9472 active +9474 passive +9477 active +9480 active +9488 active +9501 active +9504 active +9511 active +9519 active +9521 active +9532 active +9536 middle +passive +9544 active +9548 middle +passive +9554 active +9559 active +9562 active +9567 middle +9570 active +9575 active +9579 active +9582 active +9591 passive +9596 passive +9598 middle +9602 middle +active +9605 active +9611 middle +9616 passive +active +9620 active +9626 active +9629 active +9640 active +9646 active +9649 active +middle +9653 active +9658 active +9663 active +9667 active +active +9673 active +9679 active +9683 passive +9689 active +9694 passive +9697 active +9704 active +9709 middlepassive +9722 active +9729 active +9732 active +9736 active +9740 middle +9744 active +9749 middlepassive +9758 active +9771 active +9779 passive +9783 active +9794 middle +9800 middle +passive +9806 active +9810 passive +9813 active +9818 active +9821 active +9823 active +active +9838 active +middle +9842 active +9845 middle +9850 active +9852 active +9860 active +active +9864 active +9867 active +9872 passive +9875 active +9879 middle +9881 active +passive +9885 middlepassive +9887 active +9892 active +9899 active +9904 middle +9908 active +9910 active +9921 passive +9923 active +9927 active +9932 active +9934 active +9936 active +9940 passive +active +9944 middlepassive +9946 active +9949 active +9954 active +9957 active +9960 active +9964 active +9971 active +active +9976 active +9984 active +9987 active +9991 active +9994 active +9997 active +9999 active +10004 middlepassive +10007 active +10010 active +10020 active +10027 passive +10029 active +10031 passive +10034 active +10039 passive +10044 middle +10047 middle +10049 active +10054 active +10059 active +10065 passive +10075 active +10080 active +10085 passive +active +10090 active +10098 active +10101 active +10106 active +10110 active +10114 middle +10117 active +10120 passive +10125 active +10129 active +10134 passive +10139 active +10145 passive +10147 passive +10150 active +10154 active +10158 active +10162 active +10167 active +10169 active +10172 active +10176 active +10180 active +10183 active +10191 active +10204 active +10208 active +10214 active +10220 active +10222 passive +10225 active +10229 active +10232 active +10234 active +10238 active +10241 active +active +10252 active +10257 active +10261 active +10268 middle +10270 active +10276 active +10278 active +10282 passive +10284 middle +10290 active +10298 active +10305 active +10316 middle +10325 middlepassive +10329 active +10335 active +10338 active +10341 passive +10349 passive +10363 active +10374 middlepassive +10384 active +10386 active +10389 active +10394 active +active +10408 active +passive +10420 active +10422 active +10425 active +10430 active +10435 active +10439 active +passive +10446 active +10448 active +10454 active +10464 active +10475 active +10477 middle +10483 passive +10488 active +10496 passive +active +10499 passive +10502 middle +active +10506 active +10509 active +10520 passive +10523 active +10533 middle +10540 active +10544 active +active +10554 active +active +10562 active +active +10577 passive +10582 active +10584 active +10592 active +active +10602 active +10606 active +10610 middle +passive +10617 active +10621 middle +passive +10627 active +10634 active +10643 middle +middle +10655 active +passive +10665 active +10670 active +10673 active +10677 active +10684 active +10688 active +10693 active +10703 passive +10711 active +active +10719 middle +10721 active +passive +10730 active +10732 active +active +10736 passive +10747 active +10749 passive +10751 active +10754 active +10756 active +active +10762 active +10765 passive +10771 active +10776 active +10779 active +10783 active +10789 active +10794 active +10796 active +active +active +10801 active +10803 active +10807 active +10809 active +active +10814 active +10819 active +10821 active +active +10827 active +10829 passive +10834 active +10836 middle +passive +10840 active +active +10847 middle +10849 middle +10854 active +10862 active +10865 active +10868 active +10871 active +10878 active +10880 passive +10884 active +10890 active +10893 passive +10902 active +10906 active +10916 middle +10918 active +10924 active +10929 active +10939 active +10944 active +10948 active +10951 active +10954 active +10956 active +active +10966 passive +active +10969 active +10972 active +10978 active +10981 active +10984 active +10992 passive +10997 middle +11005 active +11014 active +11017 active +active +11023 middle +active +11028 active +active +11037 active +11039 active +11047 active +11050 active +11055 active +11063 active +11065 middlepassive +active +11072 active +11081 active +active +11085 active +11089 active +11095 passive +11097 active +11103 passive +11106 active +11109 passive +11114 active +11117 active +11125 middlepassive +active +active +11129 passive +11135 active +11138 middle +11142 active +11147 active +active +11153 active +11155 active +11161 active +11167 active +11171 passive +11174 middle +11176 active +11178 active +11182 active +11184 active +11189 active +11193 active +11198 active +11203 active +11207 active +active +11211 active +11217 active +11220 active +11222 active +11224 active +11226 active +active +11234 active +11240 active +11246 active +11249 active +active +11255 active +11257 active +active +active +11262 active +11264 active +11267 active +11272 active +active +11278 active +11281 active +passive +11284 active +active +11291 active +11296 active +11301 middle +11309 active +11312 active +11317 active +11326 active +11329 passive +11331 active +11334 middlepassive +passive +11337 active +11340 active +11346 active +11353 passive +11356 active +11358 middle +11360 active +11363 active +11367 middle +11372 active +11375 active +11380 active +11386 active +11395 middle +11401 active +11410 active +11429 middle +11433 active +11437 middle +11444 active +11452 active +11455 middle +11462 active +11470 active +11477 active +11481 active +11483 active +11490 active +active +11500 active +11502 active +11506 active +11509 active +11515 active +11521 active +active +11524 active +11526 active +11530 active +11535 active +11540 middle +active +11543 active +11551 middle +active +11560 active +11564 active +11567 middle +11575 active +11581 active +11585 active +11588 active +11591 middle +11593 active +11600 active +active +11605 active +11611 active +11615 active +11618 active +11628 passive +11631 active +11634 active +11638 active +11640 active +11644 active +11646 active +11650 active +11655 active +11658 active +active +11668 active +11672 active +11674 middle +11684 active +active +11688 active +11697 active +11699 middle +active +11708 passive +11714 active +11719 active +11725 active +11727 active +11729 active +11734 passive +11736 active +11747 active +11749 active +11755 active +11758 active +active +11761 active +11763 active +11782 passive +11785 active +11787 active +11789 middle +middlepassive +active +11795 active +11797 active +active +11800 middlepassive +active +11807 middle +11810 active +11818 active +11821 active +11824 passive +11830 active +11833 active +11841 middle +11843 active +active +11850 active +11855 active +11859 active +11865 active +11869 middle +middle +11876 active +11879 active +11881 middle +11890 active +passive +11893 active +11895 active +11903 middlepassive +11907 active +11912 middle +11915 middlepassive +11919 active +11922 active +active +active +active +11933 active +11936 active +11940 active +active +active +11948 active +11951 active +11954 active +active +11957 active +11959 active +11963 passive +11968 passive +11971 middle +11977 active +11979 active +11983 active +11987 active +11997 active +12000 active +12002 middlepassive +12011 active +12013 passive +12018 active +active +12025 active +12027 active +12033 active +12036 active +12040 active +12042 passive +12044 passive +12048 active +active +12053 middle +12057 middlepassive +12061 active +12072 passive +12074 active +12076 active +12080 active +12087 active +12093 active +12100 active +12109 active +12115 active +12123 active +12127 active +active +active +12134 passive +12136 middlepassive +12145 active +12149 passive +12153 active +12155 active +12160 active +12162 active +12172 active +12178 active +12181 active +12183 active +12188 active +12197 active +12201 active +12203 passive +12209 passive +12213 active +12217 active +12226 active +12234 active +12238 active +12243 active +12248 active +12253 active +12255 active +12257 active +12260 active +12264 active +12268 active +12274 active +middle +12278 active +12280 active +12287 passive +12291 active +12295 active +12297 active +12303 active +12308 active +12316 active +12323 middle +12328 passive +12333 active +12336 active +active +12340 passive +12344 passive +12347 active +12350 active +12353 active +12357 passive +12363 active +12369 active +passive +12372 passive +12376 middle +12381 active +12385 active +middle +12388 active +12393 active +12395 active +12403 active +12408 active +12412 active +12417 passive +12420 active +12422 active +12429 active +12433 active +12438 active +12444 active +12452 middlepassive +12455 active +12457 active +12460 active +12466 active +12470 active +12473 middlepassive +12480 active +12484 passive +12487 active +12489 active +active +12496 active +12502 active +12506 active +12508 active +12511 active +12514 active +12516 active +12518 middlepassive +12524 passive +active +12530 active +12532 active +12535 active +12539 passive +active +12542 active +12544 passive +active +12550 active +12555 active +12558 active +12563 active +12571 active +12579 active +12588 active +12596 active +12600 active +12602 passive +12605 active +12609 active +12611 active +12614 active +12619 active +12621 active +12626 active +12629 middle +12633 active +12636 active +12641 active +12648 active +12653 active +12661 active +12664 active +12667 active +12669 active +12676 active +12681 active +12687 active +passive +12695 active +12698 active +12702 active +12705 active +active +12709 active +12714 active +12716 active +12721 active +12724 active +12730 active +12734 active +12738 active +12743 middle +12747 active +12755 active +12760 active +12766 active +12768 active +12770 passive +12776 middle +12779 active +12786 active +12789 passive +12797 passive +12799 active +12805 active +12810 passive +12815 active +active +12824 active +12828 active +12832 active +12834 active +12836 active +passive +12844 active +12846 passive +12850 active +12854 active +passive +12863 active +12869 active +12873 active +12875 passive +12881 active +active +12884 active +12887 active +active +12890 passive +middle +12895 active +12902 passive +12906 active +12912 active +active +12929 active +12933 active +12935 active +12939 passive +12941 active +12945 active +12953 active +12955 active +12963 active +12966 passive +12968 active +12971 middlepassive +12980 active +active +12989 active +12993 active +12996 active +13002 passive +13005 middlepassive +13009 active +middle +13012 middlepassive +active +13017 middle +13021 active +13025 active +13028 active +13033 passive +13037 active +13040 active +13045 active +13053 middle +13063 active +13069 passive +13073 active +13076 active +13080 active +13088 active +13090 active +13093 active +13101 active +13104 active +13110 active +13115 active +13119 active +active +active +13129 active +13133 active +13136 active +13138 active +13146 active +13150 active +13159 active +13162 active +13165 active +13176 active +active +13179 active +13181 active +13186 active +13189 active +13191 active +13194 active +13196 active +13199 active +13202 active +13204 active +13206 active +13214 active +13220 active +13228 active +active +13232 active +13234 active +13254 active +13265 middle +13268 active +13271 passive +13274 active +13276 passive +13278 active +13291 active +13293 passive +13300 active +13308 active +13310 passive +13315 active +13317 active +13330 active +13335 active +13337 active +13340 passive +13348 active +13350 active +13353 passive +13358 active +13363 active +13374 active +13376 active +13399 active +13408 active +13422 passive +13427 passive +13430 active +13434 active +13437 active +13443 active +active +13448 active +13455 active +13458 active +active +13464 middlepassive +13470 active +13481 active +13487 active +13490 middlepassive +passive +13495 active +13501 active +13507 active +13514 active +13519 active +13529 active +13531 active +13533 active +13540 active +13542 active +13545 active +13547 active +13551 active +13563 active +active +13571 active +13574 passive +13578 active +13583 active +13587 active +13606 passive +13614 passive +13618 active +13626 active +13631 active +13637 active +13644 passive +13649 active +13657 middle +13662 active +13664 passive +13667 active +13669 passive +13678 active +13689 middlepassive +13692 middlepassive +active +active +13702 active +13708 active +13713 middle +active +13725 active +13728 active +13733 active +13737 active +13743 active +13750 active +13757 active +13763 active +13768 active +13772 active +13779 active +13790 active +13795 active +13799 active +13810 active +13814 active +13820 active +13824 active +13828 active +13837 middlepassive +13847 active +13857 active +13871 active +13873 active +13876 active +13880 active +13886 active +13894 active +13904 active +13911 active +13918 middle +13931 active +13933 passive +13937 middlepassive +13941 active +13952 passive +13958 active +13970 active +13976 active +13982 active +13984 middle +13993 middle +14002 active +14005 active +14008 active +14013 active +14023 active +14029 middle +14033 active +14043 active +14045 active +14049 active +14055 active +14061 active +14067 passive +14084 active +14092 active +14094 active +14104 active +14108 active +14110 passive +14114 active +active +14122 active +14131 active +middle +passive +14139 active +14144 active +14149 active +passive +14152 middlepassive +14159 active +14163 middlepassive +14165 active +14169 active +14177 passive +active +14181 active +14185 active +14189 passive +14196 passive +14198 middlepassive +14205 active +14211 active +active +14216 middle +14229 passive +14232 active +14234 active +14238 active +14241 middle +14246 active +14248 active +14253 active +14255 active +active +14261 active +14263 passive +14265 active +middle +14269 active +14273 passive +14282 middle +14294 active +14299 active +14302 middle +passive +14314 passive +14318 active +14320 active +14325 passive +14327 active +14332 passive +14335 passive +14342 active +14346 passive +14348 passive +14365 active +14370 active +14376 passive +14381 active +14386 active +active +14393 active +14402 active +active +14415 active +14417 active +14426 active +14429 active +14435 middlepassive +14438 middle +14446 middle +14452 active +14462 middle +14466 passive +14472 passive +14479 passive +14487 active +middle +14495 active +14497 passive +14502 active +14508 active +14514 middle +active +14519 active +14521 middle +14525 active +14527 active +middle +14533 active +14538 middlepassive +14542 middlepassive +14546 middle +14555 active +14559 passive +14572 passive +14577 active +14584 middlepassive +14593 passive +14596 passive +14607 middle +14614 middle +14619 middlepassive +14631 active +14639 active +14657 active +14665 middle +14670 active +active +14680 active +14683 active +14686 active +14690 active +14695 active +14703 middle +14709 middle +14716 active +14725 active +14746 middle +14763 active +active +14766 active +active +14769 active +14773 active +14780 active +14782 active +14786 active +14789 middle +14798 middle +14804 passive +14807 passive +14809 active +14814 passive +14817 passive +14819 active +14822 active +14828 middlepassive +14831 active +14834 active +14841 middlepassive +14843 active +14847 active +passive +14856 middlepassive +14861 active +14867 middlepassive +14870 active +14877 active +14885 active +14897 active +active +14902 active +14904 active +14910 active +14912 active +14916 active +14925 active +14930 middle +active +14936 active +14938 active +14941 active +active +14952 active +14958 active +14960 active +14969 active +14971 middle +14980 passive +14988 active +14992 active +15001 active +15009 active +15013 active +15020 active +15030 active +15033 active +15036 active +15041 active +middle +15045 middlepassive +15049 passive +15055 active +15064 active +active +15075 passive +15077 middle +15080 active +15085 active +15089 middlepassive +15093 active +15095 active +15098 middlepassive +15100 active +active +15107 active +15114 passive +15119 middlepassive +15124 active +15127 active +15131 passive +active +15134 active +15137 active +15140 active +15143 active +15152 active +active +15158 active +15161 active +15166 active +15181 active +15183 passive +15188 active +middle +15193 active +15200 active +15207 active +active +active +15212 active +15222 middlepassive +15229 active +15234 active +15239 active +active +15244 active +15249 active +active +15254 active +active +15267 active +15272 active +active +15280 active +15286 active +15291 active +active +15296 active +active +15309 active +15314 active +active +15323 active +15329 active +active +15332 active +15335 active +15338 active +15341 active +15343 active +15346 active +15348 passive +active +active +15357 active +active +15362 passive +15366 active +15372 active +15374 active +15377 active +15379 active +15382 active +15384 active +15386 active +15394 active +15396 middle +15402 active +15408 active +15410 active +15416 active +15418 passive +15420 passive +15424 active +15427 active +passive +15435 active +15442 middle +15452 active +15468 active +15474 passive +15481 active +15488 active +15496 active +15508 active +15515 active +15517 passive +15521 active +15523 passive +15530 active +15532 active +15534 active +active +15537 active +15540 middle +15542 active +15546 active +15548 active +15550 middle +15554 middle +15556 active +15560 passive +15564 active +15567 active +15569 active +15571 active +15573 active +15575 active +15578 active +15582 active +15586 active +15589 active +15591 active +15596 active +15600 passive +15603 active +15606 active +15610 active +15619 active +15621 active +15626 passive +middlepassive +15636 passive +15644 active +15647 active +15649 active +active +15653 active +15656 middle +15659 active +15664 active +15672 middle +15675 passive +15678 active +15681 active +15683 active +15685 active +15697 active +15700 passive +15702 active +15704 active +15709 active +15716 active +15718 middle +15730 middle +15732 active +15739 active +15743 active +15750 middlepassive +15756 passive +15759 passive +15761 passive +15775 passive +15778 middle +15783 active +15785 active +15787 active +15795 middle +15802 middle +15810 active +15813 active +15818 active +15823 middlepassive +15825 active +15828 active +active +15836 middlepassive +15838 passive +15841 passive +15844 active +15847 active +15851 active +15857 middle +15864 active +15871 active +15874 active +15884 active +15886 active +15888 active +15892 passive +15900 passive +15903 active +15913 passive +15916 passive +15920 active +active +15924 active +15927 active +15931 active +15938 active +15942 active +15948 active +15953 active +active +15956 active +15958 active +15963 active +active +15972 active +15976 active +15981 active +15984 active +15992 active +15996 active +16001 active +16006 middle +middlepassive +16013 active +16015 active +16017 active +16023 active +16026 passive +16028 middle +active +16035 active +16039 passive +active +16042 active +16052 active +16058 active +16060 passive +16074 passive +16076 active +16080 passive +16085 passive +16088 active +16090 active +16093 active +16095 active +16098 active +16100 active +16104 active +16107 active +active +16110 active +16113 active +active +active +16117 active +16122 active +16125 active +active +16128 active +active +16135 active +16144 passive +16149 active +16153 active +16168 active +16179 active +active +16187 active +16193 passive +16201 passive +active +16206 passive +16214 passive +16216 active +16222 passive +16225 active +16229 passive +16234 passive +active +16240 active +16249 active +16251 middle +16253 active +16258 active +16262 active +16266 middle +16272 active +16274 middlepassive +16281 passive +16284 active +16287 active +16291 active +16293 middle +16295 active +16303 middle +passive +16306 active +16308 active +16311 active +16317 active +16320 active +16324 active +16326 active +16330 middlepassive +16332 active +16337 active +active +16348 active +16353 middlepassive +16358 active +16360 active +16362 active +16367 active +16370 active +16373 active +16375 middlepassive +16378 active +16392 active +middle +active +16399 middlepassive +16401 active +16405 active +passive +16411 active +16413 active +16415 active +16417 active +passive +16423 active +16426 active +middle +16433 active +16436 middlepassive +16441 active +16443 active +16446 middle +middle +active +16456 passive +16460 middlepassive +active +middle +active +16465 active +16470 active +middle +16476 active +16495 active +16497 active +16500 active +16503 active +16505 active +active +16510 active +16513 active +active +16517 active +16522 active +16527 active +16529 active +active +16537 active +16540 middle +16545 active +16548 active +16553 active +16558 active +16563 active +16567 active +16578 active +16582 middle +16584 active +16587 middlepassive +active +16593 active +16602 passive +16607 active +middle +16613 active +16621 active +16626 active +16633 middlepassive +active +16637 active +16642 active +16644 passive +16653 active +16655 active +16658 active +16661 active +16672 passive +16676 active +16686 active +16688 middlepassive +16692 active +16702 active +16709 active +16712 active +16715 active +16718 active +16720 active +16722 active +middlepassive +active +16733 active +16735 active +16738 active +16741 middlepassive +16745 active +16749 active +16753 active +16755 active +16761 active +16764 active +16767 active +16774 active +16779 active +16781 active +16785 middle +16790 middlepassive +16796 middlepassive +16805 active +16809 active +active +16815 active +active +16818 active +16823 active +16826 passive +active +16830 active +16832 active +16838 active +16842 active +active +active +16848 active +16850 active +16855 middlepassive +16861 active +16865 active +16868 active +16875 middle +16878 active +16880 active +16882 active +16884 active +16888 active +16892 active +16896 active +16903 middle +16908 active +16914 active +16916 active +active +16925 active +16933 active +16935 middle +active +16938 active +16941 active +16947 active +16949 passive +16955 active +16959 active +16961 middle +16964 active +16966 active +16970 middle +16972 active +16985 active +16988 active +16990 active +16992 active +16999 active +17001 active +17003 passive +passive +active +17013 active +active +active +17020 active +17025 middle +17027 active +17033 active +17035 active +middle +17040 active +17043 active +17045 active +active +17054 active +17057 active +active +17070 passive +17080 passive +17082 passive +17087 active +17089 active +17096 passive +17098 middle +17103 active +17111 active +17117 passive +17122 active +17126 active +17128 active +17136 active +17138 active +17142 passive +17150 middle +17152 active +17157 active +17160 active +17163 middle +17170 active +17177 active +17180 active +17186 active +17188 active +17192 passive +17195 passive +17197 active +17201 active +17203 active +17209 passive +17212 active +17216 active +17219 middlepassive +17224 active +17230 active +17239 active +17251 active +17255 middle +17261 active +17263 passive +17266 active +17268 active +17273 active +17277 active +17280 active +17286 active +17289 passive +17291 active +17293 passive +17296 active +17300 active +17304 active +active +passive +17310 active +17313 active +17317 middlepassive +active +17320 middle +17326 active +17328 active +17334 middle +17336 passive +17340 active +17352 active +17359 active +active +17362 passive +17368 active +17374 active +17381 active +17385 active +17388 active +17392 active +17404 active +17407 active +17409 active +active +17415 active +17418 active +17422 active +17429 active +17431 active +17436 active +17442 active +17446 active +17448 middlepassive +active +17455 active +17457 active +17462 active +17465 passive +17468 active +passive +17472 active +17474 active +17478 passive +17480 middle +17482 active +active +17485 active +17487 middle +17491 active +17494 middlepassive +active +17499 active +17507 passive +17509 active +17516 passive +17530 middlepassive +active +17533 active +17538 active +17540 active +17547 active +active +17551 active +17556 active +17563 active +17569 active +17571 active +17573 active +17575 middlepassive +17578 active +active +17585 active +17588 active +17592 middle +17595 active +17598 active +17602 active +17610 passive +17613 active +17620 middle +17633 active +17638 active +17642 active +17644 active +17652 active +17657 active +active +active +17662 active +17669 active +17671 active +17674 active +17677 active +17679 active +17684 active +active +active +17688 middlepassive +17690 active +17696 active +17699 active +17703 middle +17708 passive +17718 passive +17722 passive +17726 passive +17731 passive +17733 passive +17735 active +17743 active +17749 passive +17758 active +17761 active +17766 middlepassive +passive +17769 active +17773 active +17776 active +17782 active +17784 active +17790 active +17794 active +17814 middle +active +17825 passive +17829 active +17832 middle +17840 active +passive +17843 active +17848 active +17854 active +17862 active +17867 active +17874 active +17884 active +middlepassive +17893 active +17897 passive +17905 active +17907 passive +17912 active +17914 active +17918 passive +17920 active +passive +17930 active +17933 active +17936 active +17939 passive +17944 middle +17951 active +17955 active +17957 active +middle +17960 active +17963 passive +middle +17967 active +17977 active +17981 active +17989 active +17993 middle +17996 middle +18000 active +18004 active +active +18009 middlepassive +18013 active +18031 passive +18033 active +18035 passive +18039 passive +18042 active +18046 middlepassive +18049 active +18053 passive +active +18056 active +18059 passive +18061 active +active +active +18067 middlepassive +18070 passive +active +18076 passive +18081 middle +active +18089 middle +middle +active +18094 active +18104 active +active +18110 middle +18112 active +18114 active +active +18118 active +active +18124 active +18127 active +18132 middlepassive +active +active +18139 active +18145 middle +18147 middlepassive +18149 middle +18153 active +18157 active +18162 middle +18164 passive +18170 active +18173 active +18176 active +active +18183 active +active +18187 passive +18190 passive +18196 active +18200 active +18203 active +18205 active +18207 passive +18209 passive +18223 passive +18231 middle +18236 active +18238 active +18241 active +18243 active +18246 active +18248 active +passive +18260 passive +active +18265 active +18279 active +18281 active +18284 middle +18287 middle +18291 active +18308 passive +18314 middle +active +18323 active +18328 active +18332 active +18337 active +18341 middle +18344 active +18348 active +18355 middlepassive +18367 passive +18374 middle +18379 active +18382 middle +18393 active +18399 active +active +middlepassive +18409 active +18411 active +active +18419 active +18424 active +18429 middle +18434 active +18441 passive +18449 active +18453 active +passive +18462 active +18467 middle +18472 active +18480 active +18486 active +18491 active +18497 passive +18502 active +18509 active +18514 passive +18517 active +18523 active +18529 active +18531 passive +18535 active +18540 active +18542 active +18547 active +18553 active +18560 active +18565 active +18568 active +18572 active +18576 active +18578 middle +18583 active +18586 active +18589 active +18591 active +18606 active +18611 active +18614 active +18625 active +18629 middlepassive +18636 active +18640 active +18642 passive +18648 active +active +18653 active +18661 active +18671 active +active +18679 active +active +18682 active +18685 active +18691 active +18695 passive +18697 active +18705 active +18708 active +18711 active +18715 passive +18718 active +18720 active +18722 active +18733 active +18735 active +18738 active +18755 active +active +18771 middlepassive +active +18775 active +18780 active +active +18783 active +18787 active +18792 active +18796 middle +18798 active +18801 active +18807 active +18810 middlepassive +18812 active +passive +18821 active +18824 active +18830 active +18833 active +active +18838 active +18844 active +active +18847 active +18852 middlepassive +18854 active +18862 active +18865 active +18869 active +18872 active +18874 active +18878 passive +18883 active +18887 active +18889 active +active +18902 active +18904 middlepassive +18908 active +18911 active +active +18916 active +middlepassive +18919 active +18921 passive +active +18926 middle +18928 active +18930 active +passive +18934 active +18940 passive +18942 middle +18945 active +18948 active +18950 active +18953 active +18955 active +18957 active +18961 active +18967 active +18974 active +middle +active +18979 active +18985 middlepassive +18989 active +18995 active +18997 middlepassive +19002 active +19008 passive +19012 active +19014 passive +19018 active +19025 active +19030 middlepassive +active +19035 passive +19040 middlepassive +active +19046 active +19050 active +19052 active +active +19059 middlepassive +19063 active +19067 active +19071 passive +19076 active +19081 middlepassive +19083 middlepassive +19091 active +active +19094 middlepassive +active +19106 active +19112 middlepassive +19115 active +19119 middlepassive +19125 active +19127 active +19130 passive +19135 active +active +19138 active +19143 active +19146 active +19149 active +19154 active +19159 active +19163 active +active +active +19170 active +19176 passive +19179 active +19182 active +19186 middle +19189 active +19192 active +19196 active +19198 active +19207 middlepassive +19211 active +19214 active +active +19220 middlepassive +19225 active +19227 active +19230 active +active +19234 middlepassive +middlepassive +19246 middlepassive +19254 active +19257 active +19264 active +19266 active +19272 active +19282 active +19284 active +19287 active +19292 active +19294 active +19298 active +19300 active +active +19306 active +active +19315 middlepassive +19317 active +19329 active +19335 active +19337 active +19342 middlepassive +19353 active +active +19357 active +19363 middlepassive +active +19366 middle +19369 passive +19376 active +19385 active +19392 active +19404 middlepassive +19407 active +19416 active +19424 passive +19435 middle +19440 middlepassive +19448 middle +19450 active +active +19457 active +19459 active +19461 active +19466 active +19468 active +19471 active +19473 active +19477 active +19479 active +19486 active +19500 active +19502 active +19504 active +19510 active +19515 active +19517 active +19524 middle +19533 active +19543 active +19548 active +19551 passive +active +19556 active +19561 active +19564 active +19567 active +19574 active +active +19580 active +19582 active +19586 active +19588 active +19590 active +19592 active +19595 active +19597 middle +19601 middlepassive +19608 active +19611 active +19615 active +19617 passive +19622 active +19630 active +19635 active +19643 active +19653 active +19676 active +19678 active +active +19683 active +19689 active +19696 active +19700 active +19702 active +19706 middle +19708 active +19717 active +active +19721 active +active +19725 active +19732 active +19738 active +19740 active +19745 middlepassive +19747 active +19750 active +19754 active +19757 active +19762 active +19764 active +19766 active +19768 active +19772 active +19776 active +19793 active +19798 active +19827 active +19830 middlepassive +19834 middlepassive +19840 middlepassive +19844 active +19846 active +19850 active +active +19854 active +19856 active +19863 active +active +19867 active +19875 active +19879 middle +19883 active +19886 middlepassive +19889 active +19895 passive +19897 middlepassive +passive +19907 passive +19909 middle +19913 active +19918 active +19922 passive +19924 middlepassive +active +19928 active +19931 middlepassive +19938 active +19942 active +19948 active +19954 active +19956 active +19959 passive +19972 active +19976 active +19983 active +19990 active +19994 active +19997 active +19999 middlepassive +20009 active +active +20013 active +20016 middlepassive +20021 active +20023 middle +20036 active +20039 passive +20041 active +20043 active +20051 middle +20056 middlepassive +active +active +20068 active +20080 active +20083 middle +active +20089 passive +20098 active +middlepassive +20113 active +20115 active +20121 active +20127 active +middle +active +20131 active +active +20134 middle +20137 active +20140 active +20145 active +20149 active +20153 active +20159 active +20164 active +20168 active +20173 active +20176 passive +20181 active +20183 passive +20186 active +20191 active +20195 active +20200 active +20203 active +20210 active +20212 active +20214 passive +20216 active +20226 active +20228 active +20230 active +active +20234 middle +20237 active +20248 active +20251 passive +20266 middlepassive +20268 active +active +20272 active +20274 active +active +20278 active +20281 active +20283 passive +20286 active +20289 active +20298 middle +20300 active +20303 active +20306 active +20312 passive +20317 active +20319 middlepassive +20323 active +20327 passive +20331 active +20337 passive +20341 active +20347 active +20351 active +20357 active +20359 middle +20367 passive +20370 active +20375 passive +20377 active +20381 active +20398 middlepassive +active +20404 middlepassive +20406 active +20413 passive +20416 active +20420 middlepassive +20422 active +20432 active +20436 middlepassive +20443 passive +20453 passive +20456 active +20462 passive +20464 middle +20468 active +20473 active +20475 active +active +20478 active +20480 active +20482 active +20486 active +passive +20490 passive +20494 active +passive +20500 active +20503 active +passive +20508 active +20510 active +20517 active +20524 active +20526 passive +20533 active +20535 passive +20538 active +20543 active +20556 active +20560 active +20564 active +20568 active +20570 active +20580 active +20586 passive +20591 active +20601 passive +active +20604 middlepassive +20610 active +20614 middlepassive +20619 active +20628 active +20633 middlepassive +active +20639 active +20647 active +20650 active +20657 middle +active +20663 active +20666 active +20669 active +20676 active +20680 middlepassive +20687 active +20693 passive +20698 active +20705 active +20707 active +20710 active +20714 active +20717 middle +20719 passive +active +20724 active +20727 active +passive +20730 active +20734 middle +20738 active +20742 active +20746 active +20749 passive +20753 active +20759 active +20767 active +20770 active +20782 active +20788 active +20800 active +20809 middlepassive +20811 active +20819 passive +20821 passive +20829 passive +20832 active +20834 active +20848 active +active +20851 active +20855 active +20860 active +20862 active +20865 active +20868 active +20879 active +20885 active +20887 active +20893 active +20898 active +20904 active +20911 active +20913 active +20919 active +20924 active +20932 passive +20934 active +20936 active +active +20945 active +20947 active +20950 active +20955 active +20960 active +20972 passive +20978 active +20980 active +20982 active +20991 active +active +20994 active +20996 active +20998 middlepassive +21003 active +21005 middlepassive +21007 active +21010 middlepassive +passive +21013 active +21015 passive +21017 middle +21020 active +21022 middle +21024 middlepassive +21030 middle +active +21033 active +21039 active +21044 active +21047 passive +21051 active +21054 active +21057 active +21059 active +21068 active +21074 active +21076 active +21079 active +21081 middle +active +21087 active +21093 active +21095 active +21105 passive +21111 active +21116 middlepassive +21123 active +21125 active +21131 active +21134 active +21140 active +21142 active +active +21148 passive +21150 active +21152 active +21156 active +21161 active +21165 active +21173 active +21178 active +21185 passive +21191 active +active +21197 active +21202 middle +21207 active +21210 middle +21215 passive +21218 passive +21225 active +21229 passive +21237 active +21244 active +passive +21249 active +21251 middle +21256 active +21261 active +21264 active +21267 active +21270 middle +21272 middle +active +21276 active +21280 passive +21282 active +active +21285 active +21287 active +21289 active +21292 active +21299 active +21305 active +21307 active +21311 active +21319 active +middlepassive +21324 active +21329 active +21332 active +21338 active +21341 passive +active +21346 middlepassive +21348 active +21351 active +21355 active +21368 middlepassive +21375 active +21378 active +21380 active +21383 active +active +21387 passive +21389 active +21393 active +21395 active +21397 active +21401 active +21403 active +21416 middlepassive +21418 active +21422 active +21427 active +21430 active +21432 active +passive +21437 active +active +21441 active +21445 active +21447 active +21451 active +21456 middle +21461 active +21464 active +passive +21467 active +21469 active +21472 middlepassive +21478 active +21484 middle +21486 middle +active +21494 active +passive +active +21505 passive +21515 middlepassive +21518 active +21536 active +21544 passive +21548 active +21554 active +21575 middlepassive +21577 active +21584 active +21587 active +21589 active +21595 active +21599 active +21601 middlepassive +21605 middle +21607 active +21611 active +21619 active +21623 active +21640 passive +21644 middle +21648 active +21652 active +21656 active +21659 active +21666 middle +21669 active +21671 middlepassive +21673 active +21685 active +active +21688 active +21692 active +21694 active +21699 active +21701 active +21707 middle +21712 active +21716 active +passive +21723 active +21730 active +21733 active +21736 active +21744 active +21747 active +21750 active +21753 passive +21758 active +active +21763 active +21777 active +21779 active +21786 active +21788 active +21797 active +21800 active +21802 active +21805 middlepassive +21809 middlepassive +21812 active +21819 active +21822 active +21825 active +21829 active +21831 middle +21840 active +21853 active +21860 middle +active +21866 middlepassive +21870 active +21873 active +21877 active +21879 active +21882 active +21887 active +active +21896 active +active +21902 middle +21905 active +21910 active +21912 active +21919 middle +active +active +21924 active +21935 middle +21943 middlepassive +21945 active +active +21950 active +21954 active +active +21960 active +active +21967 active +21974 active +21981 active +21987 active +21991 active +21993 active +21998 active +22003 passive +22010 active +22014 active +22017 active +22019 active +22021 active +22030 middle +22033 active +22035 middlepassive +22038 active +22042 active +active +22045 active +22055 active +22057 active +22059 active +22067 active +22070 active +22073 active +active +22078 passive +22082 active +22086 active +22089 middle +active +22097 middle +active +22103 active +22106 active +22113 active +22116 active +22123 active +22126 active +22129 passive +active +22132 active +22135 active +22137 active +22139 active +active +22145 active +22147 active +22150 active +22154 active +active +active +22158 active +active +22165 active +22167 passive +22176 active +22185 active +22193 active +22197 active +22199 active +22203 active +22207 active +22213 active +22216 active +22219 passive +22221 active +22231 active +22233 active +22240 active +22244 active +22249 active +22257 active +22261 middle +22263 active +22267 middle +22270 middle +active +22285 active +22287 passive +22290 active +22292 active +22302 middlepassive +22305 active +22310 active +active +22315 active +22320 active +active +22324 active +22326 active +22330 active +22332 passive +22336 active +22340 active +22342 active +22344 active +22346 middlepassive +22348 active +22355 active +22364 middle +22367 active +22372 active +passive +22378 active +22382 active +22386 passive +22388 active +22394 active +22396 active +22402 middle +22408 active +active +22411 active +22413 active +22417 middlepassive +22429 active +22431 active +22433 active +22442 middle +22446 middle +22448 passive +22450 passive +22459 active +22463 active +22472 active +22474 active +22487 middle +22491 active +active +22502 middle +22504 active +22508 active +22510 active +active +22519 active +22529 active +22541 active +22546 active +22549 active +22556 passive +22564 active +22570 active +22575 middlepassive +22577 active +22581 active +22586 active +22592 active +22595 active +22604 active +22607 active +active +22618 active +22623 active +22626 active +22628 active +22637 active +22643 passive +22645 active +22648 active +22654 active +22663 active +22668 active +22670 middle +22674 active +22676 active +22680 active +22682 active +22686 middlepassive +22690 middlepassive +active +22698 middlepassive +active +22701 active +22706 active +22712 active +22720 active +22726 active +22728 active +22733 middlepassive +22738 middlepassive +22740 active +22743 middlepassive +22756 middlepassive +active +22762 active +22768 middlepassive +22770 active +22784 middlepassive +22803 middlepassive +22805 active +22810 active +active +22817 active +22821 active +active +22825 passive +active +22829 active +22837 active +22840 active +active +22849 active +22855 active +22860 active +22866 active +22868 active +22870 passive +22875 active +22877 active +22885 active +22888 middle +22890 active +22900 active +22907 active +22913 active +active +22922 active +22927 active +22930 passive +22937 active +22940 active +22945 active +22959 active +22965 active +22968 active +22973 middle +22980 active +22989 active +middle +22995 active +22999 active +23001 active +23003 passive +23005 active +passive +23008 passive +23014 passive +23021 active +23024 middle +23028 active +23032 middle +23036 active +23039 passive +active +23043 active +23045 active +23048 active +23051 active +23059 active +23062 active +23064 active +middle +23068 active +23070 middlepassive +23078 active +23082 active +23084 active +23087 active +23093 passive +23102 active +23104 middle +23111 middle +23115 active +23120 active +23124 active +23127 active +23130 active +23133 active +23138 active +23142 active +active +23145 active +23150 active +23152 active +23156 active +23160 active +23162 active +23165 active +23167 active +23169 passive +23171 active +23177 active +23181 active +23185 active +23193 active +23199 active +23203 middle +active +23206 active +23213 active +23216 active +23220 active +23225 active +23228 active +23231 passive +23237 active +23240 active +active +23246 middle +active +23255 active +23262 middle +23264 active +active +active +23277 middlepassive +23283 active +23285 active +active +23289 middlepassive +23293 active +23295 active +23297 active +passive +active +23304 active +23306 active +23309 active +23311 active +23314 active +23319 active +23327 active +active +23341 active +23343 active +23346 active +23349 active +23351 middlepassive +23355 active +23359 active +23363 middle +23365 middle +23370 active +23376 active +23381 active +23385 active +23389 active +23391 active +active +active +23399 active +active +23403 active +23411 active +23413 active +23415 active +23419 active +23424 active +23429 active +23431 active +23448 active +23452 active +23456 active +active +23462 active +23464 active +23480 active +23486 active +active +passive +23491 active +23494 active +23498 active +23502 active +23506 middle +active +23510 active +23516 active +23518 passive +23529 passive +23534 active +23539 active +23543 middle +23545 middle +active +23550 passive +23552 active +23556 active +23559 active +active +23566 active +23575 middle +23582 active +23586 active +23589 active +middle +23593 active +23598 active +23603 active +23607 active +active +23613 active +23622 active +23626 active +23628 active +23633 passive +23639 active +23648 passive +23667 passive +23670 active +23683 active +23686 active +23689 active +23693 active +23697 middle +23701 active +23706 active +23713 active +23724 active +23733 passive +23740 middle +active +23750 middlepassive +23752 active +23754 passive +23760 active +active +23765 passive +23768 active +23773 active +23776 active +23778 active +23791 active +23793 passive +23796 middle +23798 middle +23800 active +23803 middle +23809 active +23815 active +23819 middle +23822 active +23830 active +23835 middle +23840 active +middle +23851 active +23855 active +23858 active +23860 active +23864 active +23866 active +23868 active +23870 active +23874 active +23876 active +23880 active +23884 active +23886 active +23890 passive +23898 active +23900 passive +23902 active +23907 active +23909 active +23912 active +23914 passive +23918 active +23922 active +23929 active +23937 active +23939 passive +23941 active +middlepassive +23945 active +23948 active +23952 middle +23959 active +23965 active +23972 active +active +23976 active +23978 active +23982 passive +23984 active +23990 active +23993 active +23996 passive +23998 active +24006 middle +24009 middle +24011 active +24016 active +24021 active +24026 active +24029 active +24033 middlepassive +active +24036 active +24042 active +24045 active +24049 active +24058 active +24063 active +24068 middlepassive +active +24071 passive +24077 active +24081 middlepassive +24085 active +24087 active +24092 active +active +active +24101 active +24103 active +24105 active +24110 active +24118 active +24120 active +24125 active +24129 active +24132 active +active +24135 middle +24141 active +24143 active +24147 active +24151 active +24154 active +24156 active +24165 active +24170 passive +active +24174 active +24181 middlepassive +active +24188 active +middlepassive +24195 active +24198 active +24200 active +24205 active +24212 passive +24217 active +24220 passive +24224 middle +24227 active +24231 middlepassive +24233 active +24235 active +24242 middle +active +24249 middlepassive +24252 active +24256 passive +24263 active +active +24268 active +24272 active +24274 active +middle +24282 active +24284 active +24290 middle +24292 active +24300 middle +24306 middlepassive +24311 middlepassive +24314 middlepassive +24317 active +24319 active +24324 active +24330 active +24334 active +24337 active +24341 active +24346 active +24348 active +24352 active +24354 active +24361 middle +24363 active +24368 active +24373 active +24377 active +24385 active +24387 active +24392 active +24399 active +24405 active +24407 active +24411 middlepassive +24419 passive +24425 active +24430 active +24433 active +24436 active +24444 active +active +24459 active +24461 active +24464 active +24466 active +24475 active +passive +24485 active +24487 active +24490 active +24493 active +24502 active +passive +24512 active +24517 passive +24521 passive +24530 middle +24534 active +active +24540 active +24545 active +middlepassive +24557 middlepassive +24564 active +24566 active +24569 active +24571 active +24574 active +24577 active +active +24582 passive +active +24587 middle +24591 active +active +24596 active +24598 active +24602 active +24608 active +24620 active +24624 active +24633 middle +24641 active +24650 active +24653 active +24663 active +24666 active +24670 active +24675 active +24677 middlepassive +24683 active +24687 active +24689 middlepassive +24691 active +24696 middle +24700 active +24703 active +24706 active +24708 active +24710 active +24713 middlepassive +24717 active +24722 active +24728 active +24733 middle +24742 active +24746 middle +24748 active +active +24755 middlepassive +24760 active +24762 active +24764 active +24769 active +24773 active +24777 active +24781 active +24792 active +24794 active +24796 active +24798 active +24800 active +24802 active +active +24812 active +24817 middle +24824 active +24826 active +24829 active +24833 active +active +24836 active +active +24839 active +24843 active +24848 active +active +24853 active +24857 active +passive +24860 active +active +24865 middle +24868 active +24877 active +24883 middle +24887 passive +24896 passive +active +24902 active +24908 active +24910 active +24917 active +24925 active +24929 passive +active +24935 middlepassive +passive +active +24941 active +24955 middle +24958 active +24960 middle +24962 active +24965 active +24967 active +24971 active +24974 active +24976 active +24998 active +25023 middlepassive +25029 middle +25036 active +25040 active +25044 active +active +25050 passive +25053 active +middlepassive +25056 active +25060 middle +25062 active +25064 active +25066 active +25068 middle +active +25077 passive +25084 active +25088 active +25093 active +25096 active +25099 active +25102 active +25107 middle +25109 middlepassive +25117 active +25120 active +25124 active +25126 active +25130 active +25132 active +25135 active +25139 active +25141 active +25152 active +25160 active +25163 active +25165 middle +middlepassive +active +25172 active +25178 passive +passive +25182 active +25184 middlepassive +25188 active +25194 active +middle +25201 passive +passive +25205 active +25213 active +25215 active +25218 passive +25220 active +25223 middle +active +25230 middle +25234 active +25236 active +25239 active +active +25243 active +25249 active +25254 active +25260 active +25262 middle +25265 middle +25271 active +25274 active +25276 middle +25286 active +passive +25289 active +25291 active +25299 middlepassive +25303 middlepassive +25320 middlepassive +25325 active +25330 active +middle +active +25334 active +25338 active +25341 active +25345 active +25350 active +25353 active +25356 active +25359 active +active +25363 active +25366 active +25368 active +active +active +25374 active +25378 active +active +25384 passive +25388 active +25391 active +active +25396 active +25400 active +25404 active +25406 active +25410 active +25414 active +25416 active +25423 active +25435 active +25441 active +25443 active +25452 middlepassive +25455 active +passive +25463 active +active +25467 active +25472 active +25474 active +25476 active +25481 active +25485 active +25489 active +25491 active +25493 passive +25501 active +25507 active +active +25511 active +active +25517 active +25520 active +25524 active +25527 active +25534 active +25540 active +25548 active +25555 active +25561 active +25564 active +active +25567 passive +25569 middlepassive +25573 passive +25575 middlepassive +25586 active +25595 active +25598 middle +25600 active +25609 active +25613 active +25615 active +25619 active +25621 active +25625 active +25629 active +25633 active +25641 active +25644 passive +active +25655 active +25657 active +25662 middlepassive +25666 active +25670 middle +active +25673 active +25676 active +25689 active +25692 active +25695 active +25698 active +25704 active +25706 active +25709 passive +25716 passive +25722 active +25727 active +25734 active +25737 active +25739 middlepassive +25745 passive +25753 middle +middlepassive +25759 middlepassive +25761 active +25764 passive +25768 passive +25771 active +25774 active +25778 middle +passive +25781 passive +25784 active +25786 active +25790 active +25795 active +25799 passive +25801 passive +25807 passive +25813 active +25816 active +middlepassive +middle +25822 active +25826 middlepassive +25828 middle +active +25831 active +25833 middle +25837 active +middlepassive +active +25842 active +25854 active +25860 middlepassive +25868 active +25870 middlepassive +25882 active +25888 active +25892 active +25898 active +25902 active +25904 active +25909 passive +25912 active +25918 active +25925 active +25929 passive +25932 middlepassive +25935 active +25937 active +25940 active +25945 active +25948 active +25951 middlepassive +25956 active +25962 active +25964 passive +25967 active +25969 active +25973 active +25977 active +25983 active +25985 middle +25989 active +25992 active +25994 active +25997 active +26000 active +26003 middle +26007 active +26009 active +26020 active +26027 active +26029 active +26031 active +26035 active +26041 active +26043 active +26046 active +26048 active +26054 active +26057 active +26059 active +26063 active +26068 active +26070 passive +26080 active +26083 active +26086 active +active +26091 middle +26095 active +active +26099 active +26105 active +26110 middle +26112 active +26116 active +26124 active +26127 active +26129 active +26131 passive +26137 middle +26140 active +26146 active +26148 active +26150 passive +26154 active +26160 active +26162 active +26164 active +26166 active +26177 active +26180 active +active +26184 active +26187 active +26190 active +26196 active +26207 active +active +active +26214 active +26217 active +26220 active +26224 active +26228 active +active +26233 active +26236 active +26238 active +26249 active +26255 active +26259 active +26268 active +26272 middlepassive +26277 active +26280 active +26282 active +26284 active +26287 active +26293 active +26295 active +26299 active +26302 active +26309 active +26316 active +26320 active +26323 active +26325 active +26330 active +26333 active +26335 active +26345 active +26352 active +26357 active +26361 middle +26365 active +26368 active +26375 passive +26377 active +26389 active +26391 active +26393 passive +26395 active +26406 passive +26408 active +26417 active +26421 active +26433 active +26437 active +26439 passive +26441 active +26445 active +26447 active +active +26451 middle +26453 active +26456 active +26460 middle +26465 active +active +26474 active +26476 active +26506 active +26517 active +26519 active +26527 active +26530 active +26533 active +26539 active +26557 active +26563 active +26572 active +26576 middle +active +26581 active +26590 active +26592 active +26594 passive +26597 active +active +26603 active +26611 active +26614 active +26620 active +26625 middlepassive +26631 active +26641 active +26648 active +26653 active +26661 active +active +26667 active +26670 active +26687 active +26695 middlepassive +26697 middle +26701 active +26705 active +26709 active +26717 active +26720 active +26724 active +26728 active +26731 middle +26735 active +26738 active +26747 active +26750 active +26758 active +26760 active +26767 active +26770 active +26776 middlepassive +26781 active +26788 active +26797 active +26799 active +26806 passive +26813 passive +26815 middlepassive +26825 active +26836 active +26840 middle +26846 active +26849 passive +26853 middle +active +26856 active +26860 active +26862 middle +26867 active +26870 active +26873 active +26876 active +26882 passive +active +middle +26890 passive +26898 middle +26902 middle +26908 active +26911 active +26918 passive +26924 passive +26936 passive +26939 active +26942 active +26944 active +26946 active +26948 active +26952 passive +26959 active +26962 active +26965 active +26972 active +26981 middle +26986 active +26989 middle +passive +26999 active +27003 passive +27006 active +27011 active +27014 active +27016 active +active +27023 active +27032 active +27034 active +27036 active +27047 active +27051 active +27060 active +27063 active +27069 middlepassive +27072 middle +27075 middle +27082 active +27088 active +27097 middle +27101 active +27107 passive +27115 middle +active +27124 active +active +27129 active +27132 active +27134 passive +27139 active +27145 active +27152 active +active +27167 passive +27172 active +27179 middle +active +27191 passive +27194 middle +27199 middlepassive +27209 active +27213 active +27231 active +27240 middle +27242 active +27245 active +27250 active +27255 active +27257 middlepassive +active +27261 active +27265 active +27270 active +27278 middle +27284 middle +27290 middle +27300 active +27313 active +active +27317 active +27321 active +27325 active +27330 active +27343 middle +27345 active +27347 active +27350 active +27356 middlepassive +27366 active +27368 active +27370 active +27374 active +27376 active +active +27379 active +27389 active +27399 active +active +27402 active +27409 middle +27414 active +27424 middlepassive +27426 active +27428 active +27434 active +27437 active +27443 active +active +27454 active +27456 middlepassive +27460 passive +27465 passive +27469 middlepassive +27474 active +active +27480 active +27483 middle +27490 active +27495 active +middlepassive +27499 active +27504 active +27506 active +active +active +active +27518 active +27522 passive +27531 active +27533 passive +27544 active +27550 active +27554 active +passive +27557 middlepassive +27560 active +27562 active +27566 active +27576 active +active +27582 active +27584 active +active +27587 active +27591 active +27597 active +27599 active +27604 active +27609 active +active +27615 active +active +27622 active +27624 active +27635 active +27639 active +27642 passive +27646 active +27649 active +27653 active +27658 active +27660 active +27663 active +27668 middle +middlepassive +27675 middlepassive +27677 active +27680 active +27682 active +27685 active +27691 active +27694 middle +passive +27697 active +27706 active +27712 middle +27724 active +27726 passive +27740 passive +27745 passive +27750 active +27752 active +27754 active +active +27757 active +27760 active +active +27763 active +27768 active +27770 active +active +27774 active +27779 active +27782 active +27789 passive +27793 active +27799 active +27811 active +27819 active +active +27827 active +27833 passive +27835 passive +active +27842 passive +27846 passive +27848 active +27856 active +27861 passive +27866 active +27871 active +27883 active +27886 middle +27890 active +27892 active +27894 active +27899 middle +27904 active +27906 middlepassive +27914 active +27918 active +27921 middle +27923 active +27935 middle +passive +27938 active +27940 active +27943 active +27949 active +27952 active +27954 active +27956 active +27961 middlepassive +27965 active +active +27972 active +27979 active +27989 active +27994 middlepassive +27996 active +27998 active +28000 active +28004 active +28006 active +28009 active +active +28012 middlepassive +28015 active +28028 active +middle +28033 active +28036 active +active +28039 active +28041 active +passive +28048 active +28050 passive +28053 middlepassive +28057 active +28059 active +28063 middle +active +active +28068 middle +passive +28079 middlepassive +active +middle +28083 active +28085 active +28090 active +middlepassive +28115 active +28117 active +28121 active +28124 active +28126 active +active +28130 active +28133 active +28135 active +28137 active +28140 active +28144 active +28149 active +28155 active +middle +28159 active +28165 active +28170 passive +28173 active +28178 active +28183 active +28187 middle +28193 active +28196 active +28200 passive +28204 active +28206 active +28211 active +28213 passive +28218 active +28222 active +28226 active +28228 active +28235 middlepassive +28250 active +28260 active +middlepassive +28266 middle +28277 active +28284 active +28288 active +28291 active +28299 active +28302 active +active +28306 active +28309 active +28311 active +28314 active +28326 active +28331 active +28336 active +28341 active +28344 active +28346 middlepassive +28351 active +28354 active +28357 middle +28362 active +28365 active +28368 active +28378 active +28380 active +28382 middle +28391 middlepassive +28393 middlepassive +28402 active +28406 active +28411 active +active +28417 middlepassive +28421 active +28424 active +28427 middle +28429 active +28432 active +28437 active +28440 active +28442 active +28448 active +28450 active +28457 middlepassive +28464 active +28467 middle +active +28470 active +28478 active +28481 middle +active +28484 active +28486 middlepassive +28489 active +28491 active +28499 active +28501 middle +28503 active +28505 active +28510 active +28514 middlepassive +28520 active +active +28527 active +28531 active +28534 middle +active +28537 active +28540 active +28545 active +28551 active +28553 passive +28559 active +28567 active +28570 middle +28572 active +active +28580 active +28590 active +28593 active +28595 active +28598 active +28603 active +28610 passive +28612 active +28614 active +28616 active +28625 active +28627 active +28629 middlepassive +28631 active +28634 active +28640 middle +28642 active +28648 active +28653 middlepassive +28655 active +passive +28658 passive +28668 active +28670 active +28673 middle +middle +28676 active +28681 middle +28683 active +active +active +28692 active +28696 active +28703 active +28710 active +28716 passive +active +28721 active +28723 active +28731 active +active +28737 active +28740 active +28746 active +active +28752 middlepassive +28757 active +active +28763 active +28766 active +28768 passive +28772 active +28778 active +28781 active +28786 active +28790 active +28792 active +28796 middle +middlepassive +28799 active +28804 active +28810 active +28813 active +28816 active +28820 active +28822 active +28827 active +28833 active +28836 active +28839 active +active +28844 middlepassive +28853 active +28858 active +28865 active +passive +28870 active +28872 passive +28877 active +28879 active +28882 middle +28886 active +28892 active +28894 active +28898 active +28901 active +passive +28915 active +28928 middlepassive +active +28931 active +28936 active +28939 active +28943 active +28947 active +28949 active +28957 active +28963 active +28965 active +28967 active +28969 middlepassive +28975 active +28981 active +28983 active +28986 passive +28989 active +28992 middle +28996 middle +29008 active +29016 active +29018 active +passive +29028 active +29033 active +active +active +active +29038 active +29041 active +29043 active +29046 active +29048 active +29050 active +active +active +29054 middlepassive +29056 active +29061 active +29064 active +29070 passive +29081 active +29085 active +29088 active +active +29096 active +29098 active +29103 active +29123 active +29127 active +29130 active +29136 active +29143 middle +29145 active +29148 active +29150 active +29160 active +middlepassive +29166 active +active +29172 middle +29180 active +29183 active +29185 middle +29188 active +29192 active +29194 active +29198 middle +29204 active +29206 active +29208 active +29212 active +29217 active +passive +29222 active +29238 active +29240 passive +29242 middle +29255 active +29258 active +active +29268 middlepassive +29272 active +29276 active +29280 active +29290 active +active +29293 passive +29297 active +29301 active +29305 active +29307 middlepassive +29311 passive +29315 passive +29318 active +29321 passive +active +29327 passive +passive +29330 active +29332 active +29336 active +29339 active +active +29348 active +29355 middle +29357 active +29360 active +active +29366 active +29374 active +29376 middlepassive +29378 active +29382 passive +29389 active +29393 passive +active +29398 middle +active +29401 active +29403 active +29405 active +29407 passive +29410 active +29417 active +passive +29422 middlepassive +29426 active +active +29432 active +29435 middlepassive +29439 passive +29441 active +29449 middle +29451 passive +29453 active +29455 active +29457 passive +29462 active +29469 active +29471 passive +passive +29475 active +passive +29481 active +active +29488 active +29491 active +29493 active +29497 active +29501 active +29505 active +29508 active +29516 active +29518 passive +29523 active +29530 active +active +29535 active +29539 active +29542 active +29547 passive +29553 active +29566 active +29579 active +middle +29584 passive +29589 active +29597 middle +29600 active +29602 active +29608 active +29612 active +29615 passive +29619 middle +29647 active +29653 middlepassive +29665 active +29669 active +29675 active +active +29682 middle +29685 active +29701 active +29703 active +active +29716 active +middlepassive +29724 passive +29728 active +29736 passive +29738 active +29741 active +29745 active +29751 middlepassive +29754 passive +29763 active +29767 active +29773 middle +29784 passive +29786 middle +29796 active +29800 passive +29811 active +29819 middle +29827 active +29837 active +29840 passive +29842 active +29849 middle +29853 active +29859 active +29865 passive +29868 active +29871 active +29874 active +29879 passive +active +29884 middle +29888 middle +middle +active +29893 middlepassive +active +29898 middle +29903 active +29908 passive +29914 active +active +29921 active +29924 active +29930 active +29932 middlepassive +active +29936 active +29939 active +29945 active +active +29949 active +29952 middle +29954 passive +29960 active +29970 active +29976 active +29980 active +29984 active +29989 active +active +30001 passive +30017 passive +30032 active +30035 active +active +passive +30047 passive +30049 middlepassive +30051 active +30056 active +30061 middlepassive +30064 active +30070 middle +middle +30075 middle +30078 active +30084 middle +30089 passive +30091 active +30103 active +30116 middle +30119 active +30125 middle +30130 active +30132 passive +30135 active +30139 middle +30145 active +30150 passive +30152 passive +30156 middle +30163 active +30172 active +30175 passive +30179 active +30186 active +30188 middle +30192 middle +30199 active +30206 active +30211 passive +30221 active +30227 middle +30231 middle +30233 active +30240 active +30248 passive +30254 active +30258 active +passive +30264 passive +30275 active +30284 middle +30286 middle +30296 active +30308 active +30310 middle +30313 passive +30318 active +30320 active +30327 active +30338 active +30346 middle +30350 active +30356 active +30375 middlepassive +30377 active +30382 active +30387 active +30392 active +30394 active +active +30398 active +active +30401 middle +30405 passive +30417 active +30423 active +30431 active +30439 passive +30443 active +30446 active +30449 active +30457 active +30465 active +30468 middle +30474 active +active +30479 active +30489 passive +30493 active +30496 passive +30499 active +30503 active +30510 passive +30515 active +30521 active +30523 passive +30526 active +30528 active +active +30531 active +30535 active +30538 passive +30548 active +active +30553 middle +30558 active +30567 passive +30573 middle +30576 active +30581 active +30587 middle +30592 active +30600 passive +30604 active +active +30613 middle +30615 active +30621 active +30631 active +30649 active +30651 active +30658 passive +30664 active +30671 active +30676 passive +30678 active +30696 passive +30698 middle +30701 active +30705 active +30722 middle +30727 active +30734 middlepassive +30736 active +30746 active +30748 passive +30751 active +30763 middle +30768 active +30773 middlepassive +30780 middle +active +30786 middlepassive +30788 passive +30795 active +30811 passive +30815 active +30822 middle +30826 passive +30828 active +30831 middle +30834 active +30837 passive +30841 active +30844 active +30851 active +30854 active +30860 active +30868 active +30874 active +30876 active +30887 active +30892 active +30895 passive +30899 active +30904 middlepassive +30906 middle +middle +30912 middle +30917 passive +30922 active +30932 active +30934 passive +30936 middlepassive +30941 middle +30948 active +30952 active +30965 middle +30967 active +30977 active +30981 active +30985 active +30990 active +30994 active +30997 active +active +31000 active +31010 middlepassive +31015 active +active +31021 passive +31030 active +active +31034 passive +31043 active +31048 active +31054 active +31057 active +31059 active +31065 active +31067 active +31069 passive +31074 passive +31078 active +31081 passive +31087 passive +31093 passive +31100 passive +31110 active +31114 active +31118 passive +31125 active +31130 passive +31133 active +31137 passive +31149 middle +31151 active +31164 middlepassive +31171 active +31175 active +passive +31184 active +31189 active +31194 active +31204 active +31211 active +31215 passive +31222 middle +31228 active +31232 active +31235 active +31246 active +31254 active +31270 active +active +31280 passive +31284 active +31288 active +31294 middle +31296 middlepassive +31308 passive +31315 middle +31319 passive +31325 active +31334 active +31338 active +31356 middlepassive +31362 active +31370 active +middlepassive +31375 active +31380 middlepassive +31385 active +31392 active +31403 active +31405 passive +passive +31411 active +31415 middlepassive +31429 middle +31432 active +31440 active +31445 active +31447 active +31455 active +31460 active +31462 active +31466 active +31470 active +31480 active +active +31484 active +31487 middle +31491 active +31496 middlepassive +31502 active +31505 active +31508 middle +31511 active +31521 active +31523 passive +31525 active +31533 active +31536 middle +31541 passive +active +31545 active +31550 active +31553 active +31560 active +31562 active +31566 active +31570 active +31573 active +31577 active +31581 active +passive +31588 active +31598 active +31618 active +31624 active +31633 active +31643 active +31649 middle +31661 active +31668 active +31675 passive +31683 active +31687 active +31692 active +31698 passive +31704 passive +31706 middle +31718 middle +31726 active +31728 middlepassive +passive +31736 active +31738 active +31741 active +31744 active +31751 middle +active +31756 active +31760 active +31763 middlepassive +31770 active +31784 middlepassive +31789 active +31792 passive +31796 passive +31798 active +31802 active +31805 active +31807 passive +active +31811 active +31814 active +31817 active +31820 active +31823 active +31825 active +31828 passive +31830 active +31835 active +31838 active +31845 passive +31847 active +31849 active +31852 middle +active +31855 active +31859 active +31862 active +31864 active +31866 passive +31871 active +31875 middlepassive +31887 active +31890 middle +active +31898 active +31901 middlepassive +31907 active +31909 active +31917 active +31930 active +31935 active +31945 active +31953 active +middle +31962 passive +31977 active +31980 active +31985 active +31991 middle +31994 passive +32000 passive +32002 middlepassive +passive +32007 active +32022 middle +32024 active +32032 active +32036 active +middle +32042 passive +active +32203 active +32208 passive +32217 passive +32223 active +32230 passive +32232 active +32234 active +32239 active +32243 active +32248 middle +32251 middle +32256 passive +32262 middle +32266 active +32268 active +32279 active +32284 active +32295 passive +32299 active +active +32305 active +32308 middle +32312 passive +32315 active +32317 passive +active +32326 active +32328 active +32333 active +32340 active +32343 active +32347 active +32352 passive +32357 middlepassive +32361 active +32367 active +32371 active +32378 passive +active +32384 passive +32386 active +32392 active +32397 active +32403 active +32416 active +32425 active +32430 passive +32434 active +32438 active +passive +32441 active +32444 active +32455 active +active +32458 passive +32465 active +32468 active +32472 active +passive +32480 active +32482 middle +32484 active +32486 active +32492 active +passive +32496 active +32501 active +32504 active +32507 active +32515 active +active +32519 middle +active +32525 passive +32535 active +32538 active +32545 middlepassive +32551 active +32555 active +32558 active +32562 active +32568 active +32570 active +32572 middle +32576 active +32584 active +32586 active +32592 active +32600 active +32604 active +32613 passive +32623 middle +32634 passive +32648 active +32659 passive +32666 passive +32672 active +32675 active +active +32682 active +32693 passive +32695 active +32699 active +32703 middlepassive +32705 active +32712 active +active +32719 passive +32727 active +32735 active +32737 active +32742 active +32752 active +active +32755 active +32758 active +32764 active +32768 active +passive +32771 active +32777 active +32782 active +32786 active +32789 middle +32794 active +32797 active +32807 active +32812 middlepassive +32814 middlepassive +32824 active +32828 active +32837 active +passive +32842 active +32847 active +32850 active +32854 active +32858 active +active +32862 active +32867 active +active +32871 active +32882 active +active +32886 middlepassive +32891 active +32893 active +32896 active +32902 active +32904 active +32906 active +32908 active +32912 active +32914 middle +32916 active +passive +32924 active +32927 active +32931 active +32935 middlepassive +32940 active +32948 middle +32954 active +32958 passive +32960 active +active +32968 middle +32973 middlepassive +32976 active +32983 active +active +32990 active +32993 active +33002 active +active +33007 active +33013 active +33015 active +33020 active +33023 active +33027 active +33032 middle +active +active +33038 active +33043 active +33050 passive +33052 active +33057 active +33059 active +33065 active +33070 active +active +33076 passive +33081 active +33089 active +middle +33093 active +33095 active +33100 passive +33103 active +33106 active +33110 active +active +33117 active +33121 active +33134 active +33144 active +33149 active +33156 middlepassive +33161 middle +active +33164 active +33170 active +33172 active +33175 middle +33178 active +33185 middle +33190 active +33193 active +33196 passive +33198 active +33201 active +middlepassive +33204 active +33206 active +33209 middle +33211 active +active +passive +33218 active +33223 active +33226 active +33228 active +active +33234 active +33240 active +33246 middlepassive +33253 middlepassive +33256 active +33258 passive +33265 active +active +33271 middlepassive +33273 middle +33280 active +active +33283 active +middlepassive +33289 active +active +33303 active +33306 middlepassive +33309 middle +33311 active +33316 active +passive +33319 active +33321 active +33323 active +33328 active +33330 active +33335 active +33342 active +33354 active +33358 active +33360 passive +33366 middle +middlepassive +33373 active +33375 active +33378 active +33381 middlepassive +33383 active +33392 active +33396 passive +active +33401 middlepassive +33407 active +33409 active +passive +33416 active +active +33419 active +33422 active +33429 active +33433 active +33435 active +33437 passive +33439 active +active +33442 active +33446 middlepassive +33453 active +33456 active +33459 middlepassive +active +33465 active +33470 active +33473 active +33477 passive +33479 active +33481 active +33487 active +33489 middle +33493 middlepassive +33498 active +33500 active +33503 active +33505 active +active +33509 active +33519 active +33526 active +middlepassive +33531 active +33542 active +33550 active +33552 active +33554 passive +33557 active +33563 active +33565 active +33569 active +33571 active +active +33580 active +33586 active +33590 middle +33599 active +33601 active +33605 active +33609 middlepassive +33620 active +active +active +33624 middle +33628 passive +33634 active +33640 active +33651 active +active +33662 active +33667 active +33676 active +33685 active +33694 passive +33698 middle +33708 active +33710 active +33713 active +33717 active +33719 middle +33722 middlepassive +33727 active +33729 active +33735 active +33742 active +33744 active +33747 active +33751 passive +33754 active +33758 active +33761 active +33764 active +33770 active +33772 active +33783 active +active +33786 active +33791 active +33793 active +33800 active +33802 active +33811 middle +33815 active +33821 active +33823 active +33832 active +33835 middle +33846 active +33848 active +active +33853 active +33858 active +33863 active +33866 active +33868 active +33873 active +active +33876 active +33881 active +33884 active +33887 active +33889 active +33891 active +33893 active +33895 middle +33898 active +33900 active +33906 active +33908 passive +33914 passive +33917 active +33922 active +33926 middle +33931 active +33936 middle +33938 active +active +33947 middle +33949 active +33954 middle +33961 active +33965 active +33990 passive +33999 middle +34002 active +34005 active +34032 active +active +34036 passive +34043 passive +34047 passive +34052 active +middle +34059 middlepassive +34061 middlepassive +34065 active +34073 active +34079 active +34086 active +34089 passive +34092 active +34095 active +34097 active +34099 active +34105 active +34108 active +34110 active +34121 passive +34127 active +34129 middle +34141 active +34153 active +34160 passive +34163 active +34166 active +34169 active +34171 active +34176 active +34184 active +34191 active +34194 active +active +34200 active +34202 active +34204 active +34206 middlepassive +34208 middlepassive +34211 active +34214 active +34219 active +34226 active +34234 active +34236 active +34238 active +34242 active +34246 active +34249 active +34251 active +34255 active +34260 active +34262 active +34267 active +34273 active +34275 active +34279 active +34281 active +34286 active +34292 active +34295 active +34298 active +active +34303 active +34307 active +34309 active +34313 active +34318 active +34320 active +34322 active +34324 middle +34330 middle +34336 active +34342 middlepassive +34349 active +34352 active +34356 passive +34359 active +34363 passive +active +34366 passive +active +34369 passive +34373 passive +passive +passive +active +34384 active +passive +34388 active +34393 middlepassive +34396 active +34401 middlepassive +34403 active +34409 passive +34411 middle +34418 active +34437 active +34439 middlepassive +active +34445 active +active +34462 active +34464 active +34474 active +34484 active +34487 active +active +34497 active +34507 passive +34512 active +34518 active +34528 active +34537 active +34544 active +34551 active +34556 active +34558 active +34561 middlepassive +34565 active +34570 active +34572 active +34575 active +34578 active +34580 active +34583 active +34585 active +34587 active +34594 middle +active +34603 active +active +34609 passive +34613 active +34616 active +34618 active +34620 active +34628 active +34633 active +34635 middle +34643 active +34653 active +34661 active +active +active +34665 active +34669 active +34673 active +34679 active +34682 active +active +34689 middle +34693 active +34696 active +34699 active +34701 middle +34704 active +34712 active +34717 middlepassive +34725 active +34729 active +34733 active +34737 passive +34740 active +34747 active +34751 active +34754 active +34756 active +34759 passive +34766 active +34770 passive +active +34776 active +34778 passive +34780 middlepassive +34783 middlepassive +34785 middlepassive +34790 active +34793 active +34795 active +34799 active +34802 passive +34804 active +34807 active +active +34816 active +34818 active +34823 passive +active +34827 active +34829 middle +34833 passive +34836 passive +34839 middlepassive +34849 active +34855 middle +passive +active +34865 active +34872 active +34876 active +34880 passive +34884 active +34887 active +34889 active +middle +34895 active +active +34898 active +34901 active +passive +34904 active +34908 middle +active +34911 active +34917 active +34921 active +34924 active +34928 passive +34933 middle +34940 active +34955 active +34964 middle +34972 active +34976 active +34978 active +34980 middlepassive +34983 active +34985 middle +34990 active +34994 active +34998 active +35000 active +35002 middlepassive +35005 active +35010 active +35022 middle +active +35025 passive +active +35028 passive +active +35032 active +35034 active +35036 active +35038 active +35040 passive +35043 active +35045 passive +35047 passive +35050 active +35054 passive +35058 active +35062 middle +active +35070 middle +active +35078 passive +35081 active +active +35087 passive +middle +35095 active +35099 active +35102 active +active +35106 active +35112 active +35115 passive +middle +active +35125 active +35131 active +35139 active +35150 active +35158 active +active +35162 passive +35176 active +35180 passive +35185 active +35193 active +35196 active +35201 middlepassive +35203 active +35206 active +active +35211 middle +active +35215 active +35217 active +35222 active +35225 active +35228 active +35230 active +active +35236 active +35238 active +35240 active +middle +35251 passive +35260 active +35266 active +35270 active +35276 passive +35278 middle +35281 active +35287 active +35289 middlepassive +35295 active +35299 active +35305 active +middle +35309 active +35319 active +35321 active +35326 active +35330 active +35334 active +35336 active +35339 active +35342 active +35345 active +35352 middle +35356 active +35358 passive +35361 active +35365 active +35368 active +35372 active +active +35376 active +35381 active +35389 active +35391 active +35393 middle +35398 active +35400 passive +35402 active +active +35408 middle +35411 active +35414 active +35416 passive +35422 active +active +35427 active +35437 active +35442 active +35450 active +35454 active +35459 active +35461 active +active +35471 active +35475 active +35481 active +35483 passive +35490 active +35495 passive +35497 active +35499 active +35501 passive +35506 middle +35508 middlepassive +active +35514 active +35518 active +35520 active +35527 active +35529 middlepassive +35533 middle +35539 active +35544 active +35546 middle +35560 active +passive +35569 passive +35575 active +35588 active +35592 active +35595 active +35602 middlepassive +35605 active +35608 active +35610 active +35612 active +35619 active +35623 active +35628 passive +35634 active +35638 active +35643 passive +passive +35648 active +35652 active +35658 passive +35661 active +35665 active +35672 passive +active +35677 active +active +35680 active +35682 active +active +35685 active +35691 active +35697 active +35699 passive +active +35713 active +35715 active +35717 active +35719 active +35721 active +35727 active +35737 active +35739 active +35741 middlepassive +35745 active +35754 active +passive +35763 active +35766 middlepassive +35773 active +35777 active +35782 middlepassive +35788 active +35790 active +35792 active +35802 middlepassive +passive +35806 active +35814 active +35821 active +35824 active +35826 active +35832 active +active +35839 active +35843 active +35846 middlepassive +active +35852 active +35857 middle +35863 passive +35867 active +35869 active +35871 active +35875 active +passive +35882 active +35885 active +active +passive +35891 middle +35902 middlepassive +active +35909 passive +35918 active +35920 active +35922 active +35925 passive +active +35935 active +35941 active +35943 active +35945 middle +35952 active +35960 active +35963 active +35970 passive +35972 active +35974 active +35976 active +35983 passive +35985 active +35987 active +active +35990 active +35993 middle +35996 passive +active +36006 middle +36008 middle +36011 active +36018 passive +active +active +36026 active +36034 active +36036 active +36039 active +36046 active +36052 active +36056 active +36062 active +36068 middle +36074 active +36080 active +36083 active +active +36089 active +36100 middlepassive +36104 active +36106 active +36111 active +36118 active +36121 passive +36125 passive +36127 active +36130 passive +36138 active +36145 active +36148 active +36151 active +36157 active +36161 active +36166 active +36168 active +36173 passive +36178 active +36181 active +36185 active +36187 active +36192 active +36196 active +36201 active +36211 passive +36214 active +active +36217 active +active +36220 active +36229 active +active +36232 active +36234 active +36239 active +middlepassive +36247 active +passive +36250 active +36257 passive +36259 active +36262 active +36264 passive +36266 passive +36268 active +36277 active +36283 passive +36286 active +36289 active +36291 middlepassive +36297 active +36300 active +36304 active +36306 active +active +36313 middlepassive +36316 active +36320 active +36325 active +36327 active +36334 active +36337 middle +36343 active +active +36347 middle +active +36358 active +36360 active +36365 active +36367 active +36378 active +36382 active +36386 active +36390 active +36394 active +36403 active +36406 passive +active +36409 middle +36417 active +36424 active +36429 middle +36432 middlepassive +36434 active +36440 active +36443 active +36447 active +middle +36453 active +36455 active +36461 active +36464 active +active +active +36468 active +36473 middle +36475 active +36482 passive +36486 active +36492 active +36494 middlepassive +36499 active +middlepassive +36505 active +36507 active +36512 active +36518 active +middle +36522 middlepassive +36524 active +36526 passive +36528 active +36533 active +active +36555 active +36557 middle +36561 active +36563 active +36565 active +36567 active +36569 active +36571 active +36573 active +36576 active +36580 active +active +36584 active +36586 active +36591 active +36594 active +36596 passive +active +36599 active +36605 active +36608 active +36610 active +36612 middle +36615 active +36626 active +36628 active +36630 active +36636 middlepassive +36638 active +36642 active +36658 active +36664 active +36666 active +36669 middlepassive +36674 middlepassive +36676 middlepassive +36687 active +36693 middlepassive +middlepassive +36698 middle +36700 active +36703 active +36708 middlepassive +36711 active +36714 passive +36719 passive +36727 passive +36735 active +36737 active +36741 active +36744 active +36748 active +36751 active +active +36755 active +36758 middle +36761 active +36763 active +36765 active +36770 passive +36775 active +active +36779 middle +36781 active +36792 active +middlepassive +36797 middle +active +36800 active +36803 active +36805 active +36809 passive +36816 active +36818 active +36825 active +36827 active +36830 active +36832 active +36836 active +36838 active +36849 passive +36851 active +36859 active +36864 active +36869 active +36876 active +36879 active +36882 active +36890 active +36894 active +36897 active +36899 active +36902 active +36906 active +36908 passive +36911 passive +36913 active +36919 middle +36922 active +middlepassive +36927 active +36932 active +36934 active +36937 active +36940 active +36943 passive +active +36958 active +36960 active +36966 active +active +36970 passive +active +36978 active +36980 active +36982 active +36984 active +36986 active +36992 active +36994 passive +37003 passive +37008 passive +37010 active +37015 active +37018 middlepassive +middle +37022 active +37029 active +37034 active +37038 active +active +37044 active +37051 active +37055 passive +37057 active +37063 active +37065 passive +37069 passive +37080 passive +37082 active +37095 active +37098 active +37102 active +37106 middle +37110 active +37116 middle +37125 active +37131 active +37135 middle +37137 middle +37140 middlepassive +37153 active +37155 middle +37158 active +37161 active +37166 passive +37169 active +37174 active +37177 active +37185 active +passive +37189 active +active +37199 active +37202 middle +37205 middlepassive +37209 active +37217 active +37220 active +37222 active +37234 active +37236 active +37240 active +middle +37244 active +37247 passive +37250 active +37257 middle +37261 active +37263 active +37268 passive +37270 active +37274 middle +37277 passive +37282 active +37285 active +37292 active +37294 middle +37298 active +37303 active +37308 middle +37313 active +active +37316 middlepassive +37318 active +37326 active +37328 middle +37330 active +37334 active +37336 active +37342 active +37345 active +37348 passive +37353 active +37357 passive +37359 passive +37362 active +37367 passive +37370 middle +37374 middle +37376 active +37383 middlepassive +37385 active +37390 active +37392 active +37400 middle +37404 active +37410 passive +37419 active +37423 active +active +37429 middle +37443 active +passive +37450 active +37455 active +passive +37461 middle +37464 middlepassive +active +37472 active +37480 active +37485 active +37491 middle +37493 active +37498 active +37502 middle +37511 middlepassive +37516 middle +middlepassive +37519 active +37527 active +37529 active +37532 passive +37535 active +37537 active +37543 active +37546 active +37550 active +37554 active +37559 active +37563 active +37568 active +37570 middle +37573 passive +37583 active +37585 middlepassive +37589 active +37595 passive +active +37601 active +37605 middle +37611 active +middlepassive +37616 active +37622 active +37624 active +active +37627 active +37632 active +37635 passive +active +37639 passive +37644 middlepassive +37649 active +37653 active +37657 middlepassive +37659 active +37666 active +37679 active +37683 active +37685 active +37688 active +37692 active +active +37696 active +active +37702 active +37704 active +37707 active +37713 active +active +37720 active +37723 active +37728 active +37730 middle +37737 active +37743 active +37749 active +37754 active +37762 active +37768 active +37781 active +37783 middlepassive +37785 active +37797 passive +37804 active +37809 active +middle +active +37819 active +37830 middle +37836 active +37838 active +37846 active +37849 passive +37860 active +37866 active +active +37869 active +37881 active +37891 middlepassive +37893 middlepassive +37895 active +37897 passive +37900 active +37906 active +37908 active +37920 active +37923 middlepassive +37925 active +37930 active +37935 passive +37944 middle +37948 active +37950 active +37955 active +37964 middle +37981 passive +37985 middle +37994 middlepassive +active +38001 middle +38013 passive +38017 middle +38019 active +38022 active +38025 active +38028 active +38032 active +active +38035 active +38038 active +38043 active +38048 passive +38055 active +38057 active +38065 active +middle +active +38072 active +38089 active +38094 active +38099 passive +38101 active +38106 passive +38114 middle +38120 active +middle +38131 active +38138 active +38147 middle +38152 passive +38159 active +38161 active +38170 active +38180 active +middlepassive +38185 passive +38191 active +38196 active +38198 active +38200 active +38207 active +active +38211 active +38214 active +38216 active +38218 active +38221 active +38223 middle +38226 active +active +38229 active +38232 active +38235 active +38238 active +38245 passive +38247 active +38250 passive +active +active +38287 active +38290 middle +38292 active +38294 middle +38297 active +active +38300 active +38306 active +38309 active +38312 active +38315 active +38322 active +38325 active +38329 active +active +active +38338 active +38344 active +38346 active +38354 active +38356 active +active +38361 active +active +38366 active +passive +38369 active +active +38374 active +38379 active +38385 active +38390 passive +38396 active +38399 active +38403 active +passive +38410 active +38414 middlepassive +38416 active +38418 active +38424 active +38427 active +38433 active +38435 active +38441 active +38445 middlepassive +38448 active +38453 middlepassive +38456 active +38465 middle +38472 active +38474 passive +38478 passive +38484 active +38491 passive +38496 active +active +38500 active +38508 active +active +38511 active +38515 middle +38517 passive +active +38524 active +38526 passive +38532 active +38540 middle +38543 passive +38546 middle +38549 active +middlepassive +38556 middle +active +38565 active +38567 middlepassive +38571 active +38576 active +38579 middlepassive +active +38582 passive +38586 active +38595 active +38601 active +38609 active +38611 active +38615 active +38620 active +38626 active +38629 middle +38634 active +38637 active +38644 middle +38651 active +38653 active +38657 passive +active +38662 active +38666 passive +38676 active +38678 middlepassive +active +active +38682 active +38687 active +38689 active +38692 active +38700 passive +active +38704 active +38707 active +active +38710 passive +38712 active +38714 active +active +38717 passive +38722 active +active +38726 active +active +38730 active +passive +38738 active +38747 active +38750 active +38752 active +38759 active +active +38763 active +38774 active +38778 active +38781 active +active +38786 active +38789 middle +38792 active +active +38797 active +38804 active +38811 active +38816 active +38820 active +38825 active +38829 active +38835 passive +passive +38841 active +38849 passive +38851 passive +38856 active +38859 active +38868 active +38876 active +38882 middle +38889 active +38893 active +38903 passive +active +38910 active +38912 active +38918 active +active +38924 active +38927 active +38932 active +38935 active +38940 active +38944 active +38947 active +38952 active +38956 middlepassive +38960 active +38964 active +active +active +38972 active +38974 active +active +passive +38978 passive +38980 middlepassive +38982 active +38989 active +active +38993 middlepassive +39003 middle +39006 active +39009 active +39016 active +39022 active +39027 active +39030 active +39034 active +39040 active +39044 passive +middle +active +39052 active +39054 active +39058 passive +39067 middle +39073 middle +39084 passive +39095 active +39098 active +39104 active +39109 middle +39115 middle +39124 active +39127 active +39133 middle +39139 active +39142 active +39153 middlepassive +39156 active +39161 active +39170 active +39177 active +39181 active +39188 active +39196 active +39205 active +39209 middle +39218 active +39223 active +active +39228 active +39232 active +active +39237 active +active +39242 passive +39247 active +39263 active +39268 active +39275 active +39281 active +39284 active +active +39288 middle +39292 active +39299 active +39309 middlepassive +39318 active +39320 active +39323 active +39329 active +39344 active +39354 active +39357 active +39359 passive +39363 active +39367 active +39370 active +39373 active +39380 active +39392 active +39398 active +39407 active +39411 active +39413 active +39422 active +39426 active +39434 active +active +39444 active +39446 active +39448 passive +39455 passive +39470 middle +39478 active +39480 passive +39490 active +39497 active +39500 middlepassive +active +39503 active +39505 middle +39512 active +39514 active +39518 active +39520 active +39528 passive +39534 active +39536 middle +active +39543 active +39549 active +39555 active +passive +39559 passive +39564 passive +39571 active +39575 passive +39581 active +39585 passive +39590 active +39596 passive +39599 active +39606 active +39609 active +39611 active +39614 passive +passive +39619 active +active +39622 active +39627 active +39630 passive +39634 passive +39642 active +passive +39655 passive +39657 middlepassive +39660 active +39662 active +39667 active +39678 active +39688 middle +39693 passive +39702 active +39709 passive +39717 active +39719 passive +39722 active +39734 active +39738 middle +39741 active +39746 active +39753 active +active +39756 active +39763 active +39767 middle +39774 active +39779 active +39786 active +39789 active +39791 middle +39799 active +39804 active +39807 active +39810 active +39814 active +39820 active +39822 middlepassive +39825 active +39827 active +39830 active +39832 active +39837 active +39839 active +active +39846 active +39848 active +39858 active +39863 active +39866 middlepassive +39870 middle +active +active +passive +39875 active +39886 active +39891 active +39893 middle +39896 active +39902 active +39904 active +39911 active +39914 active +39918 active +39923 middle +39928 active +39936 active +39941 active +39943 active +39946 active +39953 active +39958 active +39965 active +middlepassive +39971 active +39977 middlepassive +39982 active +active +39988 active +39990 active +39992 active +40001 middle +40011 active +40017 passive +40021 active +40029 active +40031 active +40034 active +40037 passive +40045 active +40050 active +40052 active +40055 active +40061 passive +40064 middlepassive +40069 active +40073 active +40077 active +40079 active +40082 active +40084 active +40088 passive +40097 active +40100 active +40103 active +40112 middle +active +40117 passive +40121 passive +40126 middlepassive +40131 active +40136 active +40138 active +40140 active +40147 active +active +40151 active +40153 active +40156 middle +40158 active +40161 active +active +40173 active +40175 active +40178 active +40182 active +40185 active +40192 middlepassive +40195 active +passive +40202 middlepassive +40208 active +40213 middlepassive +40215 active +40224 active +40230 active +40235 active +40242 active +40250 active +40260 active +40262 active +40266 active +40268 active +40274 active +40276 active +40280 active +40288 active +40292 middlepassive +40294 middle +active +40302 active +40304 active +40306 passive +active +40317 active +40323 active +40325 active +40334 active +40340 active +40348 active +40350 active +40355 passive +40360 active +40362 active +40365 passive +40370 passive +40373 passive +40378 middle +40381 active +40383 active +40385 active +40391 active +40394 passive +40397 active +passive +40401 passive +40404 passive +active +40407 middle +40409 active +40413 active +40420 middle +passive +40436 passive +40463 active +40468 active +40470 active +40474 active +40477 middlepassive +40479 middlepassive +40484 active +active +40488 middle +40490 middlepassive +40499 active +active +40507 active +40514 active +40519 active +40529 active +40531 passive +40536 active +40545 active +40552 active +40555 active +40559 active +40566 active +40568 active +40574 active +40583 active +40589 passive +active +40592 active +40602 middle +40605 active +40607 active +40612 active +40615 middle +40623 active +40630 active +40632 active +40636 middle +40642 active +40645 active +40650 active +40653 middle +40655 active +40660 active +40662 passive +40668 active +active +40675 active +40677 active +40681 middle +40686 middlepassive +active +40695 active +active +40703 active +40706 passive +active +40710 active +40718 active +40722 active +40726 active +40730 active +40734 active +40737 active +active +40747 middle +40751 active +40756 active +active +40760 middlepassive +active +40766 active +40770 active +40772 active +40775 passive +40780 active +40786 passive +40788 active +40792 passive +40795 active +40799 active +40802 active +40808 active +40811 active +middlepassive +40816 middlepassive +passive +40825 middle +40830 active +40837 active +40848 active +active +40851 middle +40855 active +40857 active +40864 passive +40874 active +40877 active +40879 passive +40882 middlepassive +40888 active +40894 middlepassive +40898 active +40901 active +40908 active +40911 active +40915 active +40917 active +40922 active +40924 middle +40932 active +40939 active +40941 active +40947 active +40950 active +40952 active +40959 passive +40962 middlepassive +40967 active +40970 middle +40974 active +40981 passive +40984 active +40987 middlepassive +active +40994 active +40997 active +active +41001 active +41005 passive +41009 active +41013 middle +41015 active +41017 active +41020 active +41022 active +41025 passive +active +41029 active +41032 active +41034 middle +active +active +41040 active +41046 active +41048 active +active +41052 active +41054 active +active +41062 middle +41071 middle +41088 passive +41091 active +41102 passive +41109 middle +active +41113 middle +41116 active +41119 middle +41125 active +41128 active +41130 active +41132 middlepassive +41136 active +41138 active +41140 active +41142 passive +active +41147 middle +active +41152 active +41159 passive +41161 active +41168 passive +middlepassive +41172 middlepassive +41174 middle +41180 active +41184 active +41186 passive +41190 active +active +41206 active +middle +passive +41214 active +41218 active +41221 active +41223 active +passive +41226 middlepassive +41231 middle +41234 active +41244 active +41248 active +middle +41252 middle +41256 active +41260 passive +41263 active +41269 active +active +41273 active +41278 active +41280 middle +middle +41284 active +41288 active +41296 middle +41300 active +41308 active +passive +41313 active +41316 passive +41318 active +41322 middle +active +41327 passive +41333 passive +41341 active +passive +41346 active +41351 active +active +41354 active +41359 middle +41365 active +41368 passive +passive +active +41377 active +41379 active +41381 active +41384 active +41387 middle +41393 middlepassive +41398 active +41400 passive +41403 active +41405 passive +41407 active +41410 active +41413 active +41418 active +41437 active +41440 middle +41446 active +active +41454 middle +41457 active +active +41461 passive +41471 middlepassive +active +41474 active +41478 middle +41487 active +41491 active +41495 active +41498 active +41506 active +41508 passive +middlepassive +41513 active +41515 middle +41519 middlepassive +41522 active +41525 active +41527 active +41529 active +active +41532 active +41534 active +41536 passive +41539 active +41543 active +41545 middlepassive +active +41548 active +41550 active +41552 passive +41555 active +41557 active +41562 middlepassive +active +41565 middle +41568 active +41574 passive +41577 active +41581 active +41599 active +41602 active +41606 active +41608 active +41612 active +41614 active +41620 active +41627 active +active +41630 passive +41635 active +41643 passive +middle +41649 middlepassive +41654 passive +active +41660 middlepassive +41665 active +41691 middlepassive +active +41697 active +41702 middlepassive +41706 middlepassive +active +41715 active +41717 active +41719 active +active +41724 active +41730 active +41735 active +active +41739 active +middle +41742 active +active +41748 middle +active +41752 active +active +41758 middlepassive +41761 active +41764 active +41766 middle +41769 active +41773 active +41778 middlepassive +41787 active +41789 active +active +41801 middle +41805 active +41807 middlepassive +active +41820 passive +41823 passive +41831 active +41833 active +41836 active +41838 active +active +41841 active +active +41850 active +41853 active +41860 active +41864 middlepassive +41866 active +41869 active +41875 active +41880 active +41884 active +41889 active +41897 middlepassive +41900 active +41902 active +41905 active +active +41911 active +41913 active +41917 active +41923 active +41925 passive +41928 active +41933 active +active +41942 middle +41946 active +41956 active +41962 active +41964 active +41968 active +41971 active +41975 active +41979 active +41981 active +active +41987 active +passive +41991 active +41995 active +41997 active +41999 middlepassive +42009 active +42011 active +42014 active +42018 active +42025 active +42028 active +42034 active +42043 active +42048 active +42054 active +42058 active +42061 active +42064 middle +42073 middle +passive +42076 passive +passive +42085 active +42091 active +42094 active +active +42103 active +42108 active +42113 active +active +42120 middle +42126 middle +active +middle +42134 active +42137 active +42145 active +42147 passive +42150 active +42158 active +active +42168 active +active +42175 passive +42177 active +active +42184 active +42187 active +42192 active +42200 active +42202 passive +42206 active +42214 active +42219 active +42222 active +42234 active +42239 active +42241 active +passive +42249 active +42251 active +active +active +42255 passive +42257 middle +passive +42260 active +42270 middlepassive +active +42274 active +42279 middle +42283 middlepassive +42286 active +42290 active +42296 active +42298 active +42307 active +42309 active +42311 passive +42314 active +active +42320 active +active +42325 passive +active +42329 middle +42332 active +42338 active +42342 active +42349 passive +42357 active +42363 active +active +42371 active +42378 active +42384 active +42386 passive +42388 passive +active +42396 active +42398 active +42400 active +42402 passive +42404 active +42411 active +42414 active +42418 passive +42421 active +42423 active +42426 active +42428 active +42432 active +42435 active +42443 middlepassive +42445 active +42447 active +42453 active +42458 middle +42463 active +42465 active +active +middle +active +42470 active +42473 passive +42477 middle +42484 middle +42492 active +42496 active +42502 active +42508 active +42510 middle +42515 active +42517 active +42521 active +42525 active +42528 active +42532 active +42534 middle +42539 active +42542 active +42551 active +42569 active +42573 active +42575 active +42584 active +middle +42599 active +42609 active +42618 middle +42623 active +42631 middle +42635 active +42639 middlepassive +42642 active +42647 active +42651 active +42654 middle +42658 active +42660 middlepassive +42662 active +42666 active +42672 active +42674 active +42677 active +42680 active +42682 active +42690 active +42716 passive +42721 middle +42724 active +42730 active +42736 active +42739 active +42744 active +42746 active +42749 passive +42752 active +active +42757 active +42760 middle +42764 passive +42773 passive +42778 passive +42780 active +passive +42784 active +42794 middlepassive +active +42800 middle +active +42805 passive +42815 active +42820 passive +42825 active +42829 active +42832 active +42844 active +active +42848 active +42851 active +42854 active +42862 active +42867 passive +42873 active +42876 passive +42878 active +42894 passive +42897 passive +42908 passive +42911 active +active +42917 middlepassive +42922 active +42924 active +42926 active +42930 active +42939 active +42943 middlepassive +42949 active +42957 active +42959 active +42964 active +42968 active +42977 passive +42980 active +42982 active +42990 active +42996 active +passive +42999 active +43005 active +43010 active +43015 middlepassive +active +43021 middlepassive +43027 passive +43033 active +43038 active +43041 active +43045 active +43049 active +active +43057 active +43062 active +43065 active +active +active +43070 active +43075 active +43079 active +43083 active +43089 active +43093 passive +43095 passive +43101 active +43107 active +43109 active +43111 active +43113 active +43117 active +43120 active +active +43124 active +43126 active +43128 active +43130 middle +active +43134 active +43136 active +43140 middle +43142 middle +43145 active +43150 active +43152 passive +43157 active +43160 passive +43162 active +43166 active +43168 active +active +active +43172 middle +43175 middlepassive +43180 middlepassive +43187 middlepassive +43192 active +43197 active +43201 active +43203 active +43206 active +43209 active +active +43212 passive +active +43218 middle +43221 active +43223 passive +43228 active +43230 passive +active +43235 active +43239 active +43246 active +43250 active +43253 passive +43256 active +43260 passive +43266 passive +active +active +43278 active +43280 active +middlepassive +43285 active +43288 passive +43293 middlepassive +43298 middle +43301 active +43303 middlepassive +43311 active +middle +43317 middle +43324 active +43326 active +43330 middle +43333 active +43341 active +43344 middle +43346 active +43348 middle +43350 middle +43353 active +43355 active +43360 active +43370 active +43372 middle +43382 active +43386 active +43388 passive +43395 middle +43401 middle +43410 active +active +active +passive +43417 active +43423 active +43427 active +43431 middle +43436 active +active +active +active +active +active +43445 active +43449 active +43456 active +43461 middle +43468 passive +43474 middle +43486 active +active +43495 active +43499 active +43505 active +43509 middle +active +43515 active +active +43518 active +43523 middle +43530 passive +43534 passive +middle +active +43543 passive +43547 passive +43549 passive +active +43556 active +43565 passive +43567 active +43572 active +43574 middlepassive +43578 active +active +43582 active +43589 middlepassive +43593 passive +43596 active +43602 middlepassive +43605 active +active +43614 active +43620 active +43628 middlepassive +43631 passive +43635 active +43641 active +43647 middlepassive +active +43651 active +43654 active +43660 active +43666 active +43673 active +43679 active +43682 active +43685 active +43696 active +43698 active +43705 active +43710 active +43714 active +43717 active +43725 active +43729 middle +43739 passive +43743 middlepassive +43746 active +43750 active +43765 active +43769 active +43772 middlepassive +43777 active +43779 active +43783 active +43788 active +43792 active +43795 passive +43799 active +43801 active +43803 passive +43813 active +43815 passive +43818 active +43820 passive +43822 active +43829 middle +43831 active +43834 active +43839 middle +43841 active +active +43845 middlepassive +43850 active +43855 active +43861 active +43866 middle +43875 active +43879 active +43883 active +43887 active +43890 active +43892 active +43898 active +43909 active +43911 active +43913 active +43915 active +43917 active +active +43927 active +43930 active +43934 active +43937 active +43942 active +43945 active +active +43948 active +43951 active +43957 active +active +43962 active +43965 passive +43967 active +43971 active +43975 active +43981 active +43987 middlepassive +43990 active +43995 active +44003 active +44005 active +44007 active +44010 middlepassive +passive +44014 active +44023 active +44025 active +44028 middle +44030 active +44033 active +44037 active +44040 active +44044 active +44046 active +44064 active +44075 middlepassive +44079 active +44082 active +44085 middle +active +44090 passive +44093 passive +44102 passive +44106 passive +44108 passive +44110 passive +44112 active +active +44120 middle +44125 active +44127 active +44131 passive +44136 active +44138 passive +44140 middle +44143 active +44149 middlepassive +44153 active +44155 active +44157 middlepassive +middlepassive +44160 active +44163 active +44169 middlepassive +44171 active +active +44176 active +44180 active +active +44184 active +44189 active +44192 active +44195 passive +44198 active +44200 passive +44204 active +44206 active +44210 active +active +44214 active +44217 active +44221 active +44223 active +44227 active +44231 active +44233 active +44235 active +44242 active +active +44248 active +middlepassive +44253 middle +44256 passive +44260 active +44266 active +active +44271 active +44274 middlepassive +44282 active +44284 active +44288 active +44292 active +44296 middlepassive +active +44300 active +44304 active +44307 active +44311 active +active +44320 active +active +44323 active +active +44326 middle +44328 active +44330 active +44332 active +active +44338 active +active +44341 passive +44343 active +44348 middle +44353 active +44356 active +44361 active +active +44365 active +44376 middle +44382 active +44384 active +44389 active +44391 active +44393 active +44395 active +44398 active +active +44403 active +44408 active +44412 active +44417 passive +44419 active +44423 passive +44427 active +44431 active +44433 active +44437 active +44442 active +44445 middle +44448 middlepassive +44453 active +44456 active +44460 active +44462 active +44464 active +44468 middle +44471 active +44473 active +44477 active +passive +44484 active +44488 active +44491 middle +44493 middle +44496 active +44503 middle +44505 active +44514 middle +active +44517 active +44522 active +44525 active +44530 active +44534 active +44542 middlepassive +44546 active +active +44549 middle +44554 active +middlepassive +44559 middlepassive +44564 active +active +44568 active +44570 active +44573 active +active +44580 active +44584 active +44587 active +44590 active +44593 active +44595 active +44598 active +44603 active +44611 active +44615 active +44618 active +active +active +44626 active +44631 active +44633 active +44636 active +44639 active +44644 active +passive +44650 active +44653 active +passive +44662 active +44664 active +44667 active +44670 active +44675 active +44677 middlepassive +44679 active +44683 middle +44685 active +44694 passive +44696 active +44700 active +active +44708 middlepassive +active +passive +44717 active +44719 active +44721 active +44726 active +44729 active +44731 active +44737 active +44739 active +44741 passive +active +44744 active +44747 active +44751 active +44758 active +44763 active +44769 active +44771 active +44777 active +44784 active +44788 middlepassive +44790 active +44798 active +44808 middle +44814 active +active +44823 active +44825 active +passive +44828 middlepassive +44848 active +44852 active +44857 passive +active +active +44863 active +44866 active +44869 active +active +44873 active +44876 active +44879 active +44891 passive +44896 active +44901 active +44908 active +44911 active +44915 active +44925 active +44934 active +44941 active +44945 middle +active +44948 active +active +44951 passive +44953 middle +44962 active +44966 active +active +44980 active +44982 active +44990 active +44993 active +44998 middle +45000 active +45002 middle +45007 active +45015 middle +active +45026 active +active +45030 active +45036 active +45039 active +45041 active +45047 passive +active +45051 active +45056 active +45063 active +45069 middle +45072 active +45075 active +45078 active +45082 active +45086 active +45092 active +45095 passive +active +45099 active +45101 middle +45103 active +45108 active +45112 active +45118 active +45120 middle +45124 active +45129 active +45132 middle +45136 active +45141 active +45152 active +45157 active +45159 active +45162 middle +45165 active +45169 active +45171 active +active +45175 middle +45177 active +45182 active +active +45185 active +45191 active +active +45200 passive +45202 active +45206 middlepassive +45209 active +45211 active +45214 active +45218 middle +45222 active +45227 active +45230 active +45236 middle +45238 active +45243 active +45248 active +active +45251 middle +45254 active +45256 active +45259 active +45261 passive +45265 active +45267 active +45269 passive +45275 active +45280 passive +45285 active +active +45289 active +45295 active +45305 passive +45309 active +45313 active +45318 active +active +45321 middlepassive +45324 active +45326 middle +45330 active +45340 active +45342 active +45344 active +45347 active +45349 active +45352 active +45361 active +active +45366 active +45370 active +45374 active +45377 active +45380 active +45387 active +45391 active +45395 active +45407 active +middle +45415 active +45420 active +45422 active +45427 active +45430 active +active +45433 active +45436 active +45441 active +active +45447 active +45449 active +45456 active +45464 active +45468 active +45470 active +45478 active +45486 active +45489 active +45494 active +45504 middlepassive +45508 active +45512 active +45521 active +45523 passive +45526 passive +45530 active +45538 active +45540 passive +45543 active +45545 middlepassive +45548 active +45552 active +45556 active +45559 passive +45564 active +45569 active +45583 active +45586 active +45590 active +45592 passive +45596 active +45599 active +45602 active +active +45607 active +45611 active +45614 active +45620 active +45624 active +45629 middlepassive +45635 active +45647 active +45652 active +45654 active +45658 active +45661 active +45666 active +active +45671 active +45687 active +45695 middlepassive +45697 middle +45701 active +active +45704 active +45713 active +45717 active +45722 active +45724 active +45734 active +45740 active +45742 active +45756 active +active +45760 active +45769 passive +active +45773 active +middle +45779 passive +45785 passive +45787 active +45789 active +45794 middle +45800 active +45802 middlepassive +45805 active +active +45808 passive +45811 middle +45816 active +45818 active +45822 active +45824 passive +45829 active +45834 passive +45836 active +45838 middle +45846 active +45848 passive +45865 middle +45873 middle +45878 active +45885 active +active +45892 passive +45901 middle +45906 active +45912 active +passive +45916 active +45923 middle +active +45926 active +45929 middlepassive +45932 passive +45943 active +45947 middle +passive +45963 middle +45968 middle +45974 active +passive +45980 active +45982 active +45991 active +46000 active +46007 middlepassive +46014 active +46016 passive +46019 passive +46024 active +46027 active +46033 middle +46045 middlepassive +46049 passive +46056 middle +passive +46062 passive +46066 middle +46086 active +46093 middlepassive +46101 passive +46104 middle +46109 middlepassive +46118 middle +46120 middlepassive +active +46123 active +46128 active +46133 active +46136 active +46144 active +46146 active +46149 active +46155 active +46160 active +46162 middlepassive +active +46166 active +46172 active +46177 active +46184 middle +46190 middle +46197 middle +46199 active +46203 passive +46215 active +46225 middle +46229 middlepassive +46236 active +46240 middlepassive +46242 active +active +46247 active +middlepassive +46250 passive +46257 active +active +46267 middlepassive +middlepassive +46273 passive +46279 active +46285 active +46288 active +46294 passive +46297 active +46305 active +46308 middlepassive +46312 active +46317 passive +46319 active +46326 active +active +46335 active +46338 passive +46340 middle +46343 active +46345 active +46347 active +46350 active +46356 active +46362 active +passive +46367 active +46371 active +passive +active +46378 active +46381 active +46383 active +46385 active +46388 active +46390 middle +active +46396 active +46401 active +active +46409 middlepassive +46411 active +46416 active +46421 active +46431 active +46434 active +46437 passive +46439 active +46441 active +active +46444 active +46447 active +46452 middle +46455 active +46462 active +46466 active +46470 active +46476 active +46478 active +46484 active +46488 passive +46495 middle +46497 active +active +active +46502 active +46506 active +46510 active +46525 active +46527 active +46529 active +active +46532 active +46534 active +46536 active +46543 passive +46545 active +46556 active +active +46571 passive +46573 middle +46577 active +46592 passive +middlepassive +46601 passive +46604 middle +active +46611 active +46616 active +active +46619 middle +46627 active +active +46632 active +46638 active +46642 active +46645 passive +46655 middlepassive +46661 middlepassive +46664 active +46669 middlepassive +46672 active +46675 middlepassive +46681 active +46684 active +46687 active +46689 active +46697 middle +46700 middle +46707 active +46709 active +46719 middle +46727 active +46730 middle +46733 middle +46736 active +46742 passive +46747 active +46754 active +active +46761 active +46767 active +46774 middlepassive +46777 active +active +46782 active +46789 active +middle +46792 active +46795 active +46805 active +46808 active +46811 active +46816 active +46818 active +46825 active +active +46831 active +46834 active +46837 active +46840 passive +46845 passive +passive +46855 active +46858 active +46860 middle +46866 active +46869 active +46871 active +passive +46882 active +46888 middle +46892 active +46894 middlepassive +46896 active +46901 passive +46908 active +46911 middlepassive +active +46915 middlepassive +active +46930 middlepassive +46932 passive +46937 active +46940 middle +46944 middlepassive +46946 middle +46953 active +46958 active +46962 active +46966 active +passive +46973 active +46976 active +active +middlepassive +46981 active +46986 active +middle +46991 passive +46996 middlepassive +46999 active +47002 active +47006 active +47014 active +47019 active +47021 middle +active +47025 active +47029 active +47039 active +47046 passive +47049 active +active +47054 middle +47057 middle +47060 active +47064 middle +47077 active +47084 active +47092 active +47099 active +47109 active +47111 active +47113 active +47122 active +47125 active +47132 active +middlepassive +47141 active +47143 middlepassive +47148 active +47150 active +47155 active +47158 middle +active +47161 active +47168 active +47170 active +47175 active +47179 active +47182 active +47184 active +47190 middlepassive +active +47198 active +47202 active +47204 active +47209 active +47211 active +47215 active +47217 active +47220 passive +47223 active +47227 passive +47235 active +47240 active +47242 middle +47246 active +47248 active +47254 active +47256 active +47258 active +47260 active +47262 active +active +active +47266 active +47268 active +47273 active +active +47279 middle +47281 passive +47291 active +47297 active +47300 active +47303 active +47306 active +47310 active +47313 active +47316 active +47319 passive +47324 middle +middlepassive +47337 active +47341 active +47350 active +47352 active +47355 active +47358 active +47361 active +47366 active +47372 active +47377 active +47383 middle +active +47386 active +active +47389 active +47394 active +47397 active +47399 active +47403 active +47407 active +47409 active +47411 active +47418 passive +47420 active +47422 active +47426 active +47434 active +47442 active +active +47445 active +47448 active +47454 middle +47462 active +active +47468 active +47470 active +47476 active +active +47481 active +47493 active +47496 passive +47499 active +active +47504 active +47508 active +47512 active +active +47518 middlepassive +47520 active +47528 middle +47531 active +47538 active +47543 active +47550 active +active +47554 active +47559 middle +47574 active +47577 active +47582 middle +47591 active +47594 active +47600 active +47604 middle +47608 active +47610 active +47617 active +47624 active +47629 middle +47633 active +passive +47637 active +47639 active +47641 active +47643 active +active +47647 active +47652 active +passive +47657 middle +47670 active +47672 active +active +47678 active +active +active +active +47686 active +47692 active +47697 active +47701 active +47703 active +47706 middlepassive +47709 middle +47711 passive +47713 active +47719 active +middle +47725 active +47731 passive +47735 middle +47739 active +47745 active +47747 middle +47751 middlepassive +47754 active +47758 active +47763 active +47772 middle +47774 active +47777 passive +47781 active +47785 active +47791 active +47798 middle +middlepassive +47803 active +47812 active +47817 active +47819 middle +active +47823 active +47829 active +47837 active +47842 middle +47844 passive +47851 passive +47854 active +47859 passive +47862 active +47878 active +47880 active +47884 active +47886 active +47888 middle +47892 active +47895 active +47898 active +47900 active +47904 active +47906 active +active +47911 active +47919 active +47924 middlepassive +47926 active +47929 active +47932 active +47937 active +47940 active +47953 passive +47955 active +47959 active +47962 active +47967 passive +47970 active +47972 active +47974 middlepassive +47983 active +47991 active +active +47997 active +47999 active +48001 passive +48004 active +48010 active +48014 active +48018 middle +48023 active +48030 middle +48040 active +48042 passive +48049 active +48054 active +48059 middle +48065 active +active +48070 active +48072 middle +active +48076 active +48082 active +48086 middle +48092 active +48094 middle +active +48098 active +48100 active +48110 active +48115 active +48118 middle +48122 active +48130 active +middlepassive +48144 middlepassive +48150 active +48153 middle +48159 active +active +48164 active +48171 active +middlepassive +48178 active +48181 active +48183 active +48187 active +active +48193 middle +48198 passive +48203 active +active +48212 active +48226 active +active +48229 active +48232 active +48235 passive +48240 active +48242 active +48249 middle +48252 middle +48257 middle +48260 active +48264 active +48267 middle +48270 active +48276 active +48280 active +48282 active +48287 active +48290 passive +passive +48293 active +48296 active +48300 active +48302 active +48307 passive +48313 passive +48318 active +48320 passive +48325 active +48329 active +48339 active +48354 active +48360 passive +48369 active +48374 active +active +48380 active +active +48386 active +48389 active +48391 active +48393 middle +48401 active +middlepassive +48405 active +48415 active +48421 active +48424 middle +48427 active +48430 active +48434 active +middlepassive +48441 passive +48444 active +48447 active +48455 active +48458 active +48460 passive +48463 passive +48467 active +48472 active +48476 active +48478 middle +48486 active +48491 active +48499 middle +48516 active +48528 active +48532 active +48535 active +48537 active +middle +48550 active +48554 middle +48561 active +48563 middle +48570 active +48574 active +active +48579 active +48581 active +48583 active +48585 active +48594 active +48600 active +48604 active +48607 active +48617 active +48621 active +48625 active +48627 active +48631 active +48637 middle +48645 active +48655 active +48660 middlepassive +48663 middle +48665 middlepassive +48667 middle +48669 active +active +48676 active +48678 active +48683 active +48685 active +48689 middle +48692 passive +48696 active +48699 active +48701 active +active +48708 passive +48710 active +48715 middle +48719 active +48726 passive +active +48731 active +48737 active +48742 active +48746 active +48750 active +passive +48758 active +48761 passive +48765 passive +48769 middlepassive +48776 passive +48786 active +48788 active +48793 active +48798 passive +48801 middle +active +48804 active +48806 active +48809 passive +active +48815 active +48820 active +48830 active +48832 active +48835 active +48842 active +48845 active +active +48849 active +active +48859 active +48865 active +active +48868 active +48874 active +48880 active +48883 active +48885 active +48893 active +48897 active +48901 active +passive +48905 passive +48918 active +48923 active +48927 active +48931 passive +active +48936 active +48943 passive +48956 middle +48963 middle +48965 active +48975 active +48981 middle +48986 active +48992 active +48996 active +48999 middle +49002 active +49005 active +49009 passive +49015 active +49017 active +49024 active +active +49035 active +49041 active +49047 active +49051 active +49060 middle +49064 middle +49068 active +49072 active +49076 active +49087 active +49093 active +middle +49096 passive +49103 active +49107 active +49113 active +49117 active +49123 active +49132 active +49135 active +middlepassive +49143 active +49149 middle +49155 active +49159 active +49165 active +49168 active +49170 active +49174 middle +49177 active +49197 passive +49202 middle +49204 active +49208 middle +49222 active +49226 active +active +49229 active +49231 active +49235 middlepassive +49238 active +49242 active +49250 active +49260 passive +49269 middle +49272 active +49277 active +49284 middle +49287 active +49293 active +49304 active +49308 active +49310 active +49313 middle +49315 active +49319 active +49323 active +49329 active +49331 active +49333 active +49336 active +49339 middle +49342 active +49345 active +49348 active +49350 active +49353 active +49356 active +49359 active +49363 active +49368 active +49373 passive +active +49379 active +49382 active +49386 active +49390 active +49398 middle +49402 active +49404 active +49409 active +49413 active +49417 middlepassive +49420 active +49424 active +49433 middle +49438 active +active +49444 active +49447 middlepassive +49451 active +active +49458 active +49464 active +49468 active +49471 middlepassive +49476 active +49480 active +49483 active +49487 passive +49492 active +49496 active +49498 active +49500 active +49502 middlepassive +49505 active +49511 active +49516 active +49520 active +49522 active +49527 active +49531 active +49534 active +49536 active +49540 active +49542 active +49547 active +49549 active +49552 active +49560 active +49570 active +49573 active +active +active +49581 active +49586 active +49588 active +49594 passive +49596 middle +49598 active +active +49602 active +49605 active +49609 passive +passive +49613 active +active +49616 middlepassive +49618 middle +49620 active +49622 active +49624 active +49628 active +49633 active +49636 active +49647 active +49651 active +49653 active +49662 active +49664 active +49668 active +passive +49671 active +49676 active +49680 active +49682 active +49688 passive +49691 passive +49695 active +active +49701 active +49704 active +49708 active +49711 active +49722 active +49727 active +49730 active +49738 active +49747 active +49752 active +middlepassive +49756 active +49760 middlepassive +49762 active +active +49767 middlepassive +49771 active +49774 active +49781 active +active +49787 active +middle +49791 active +49797 active +active +49803 active +middle +49809 active +49818 active +middle +49822 active +49825 active +49828 active +49833 active +49836 middle +49838 active +49842 active +49844 middle +49847 active +49853 active +49855 active +49867 middle +49873 active +49880 passive +49892 active +49894 active +49903 active +49905 active +49915 active +49919 active +49928 active +49930 active +49932 active +middlepassive +49943 active +49949 active +49953 active +49958 active +49963 active +49965 active +49968 active +49973 active +49976 middle +49982 passive +49985 active +49987 active +49989 active +49993 active +49996 active +50002 active +50010 active +50013 passive +50017 active +50027 active +50035 active +50040 active +50048 active +50065 active +50071 active +50077 active +50083 active +50088 active +50097 middlepassive +50099 active +50104 active +50119 active +50123 active +50128 active +active +active +50134 active +50142 passive +50147 passive +active +50154 middle +50157 middle +50161 active +50165 active +50169 active +middle +50173 active +50175 active +50183 active +50186 active +50193 passive +50202 active +50206 active +50215 passive +50218 passive +50224 active +50226 active +50233 active +50238 active +50249 active +50254 active +50259 active +50264 active +50270 active +50276 active +50279 active +50285 active +50287 active +50292 active +50304 active +50309 active +50312 active +50316 active +50320 middlepassive +50326 active +active +50330 active +50335 middle +50338 active +50342 active +50347 passive +50350 middlepassive +active +50356 active +50362 middlepassive +50364 passive +50366 active +50368 middlepassive +50376 active +50378 passive +middle +50383 active +50388 passive +50394 middlepassive +active +50402 passive +50407 active +50410 passive +50415 active +50417 active +50419 active +50421 active +50423 passive +50428 active +active +50434 active +50437 active +50439 middlepassive +50442 active +50444 active +50447 passive +50451 middle +50454 active +50457 middlepassive +50459 middle +middle +50463 active +50466 active +50474 active +50477 active +50481 active +active +50485 active +active +50492 active +50496 active +50500 active +50503 active +50507 active +50510 active +50520 active +50528 active +50535 active +passive +50544 active +50547 active +50552 active +50562 active +50566 active +50570 middle +50572 active +50577 active +50586 active +50591 passive +50597 active +50601 passive +50604 active +50606 passive +50609 active +50620 active +50626 active +50631 active +50641 active +50650 active +active +50656 middlepassive +50662 passive +50668 active +50671 middlepassive +50676 passive +50683 active +passive +50687 active +50700 active +50704 active +50706 active +active +50718 active +50721 middle +50723 passive +50726 active +passive +50733 middle +50744 active +50749 active +50753 active +50761 active +active +50764 active +50767 middlepassive +50770 middle +50773 active +50775 middlepassive +50777 active +50781 active +passive +50790 active +50792 active +50794 active +50800 passive +active +50805 active +50809 active +50816 active +50818 active +50821 active +50833 passive +active +50836 active +50839 passive +50842 middlepassive +50845 active +50847 active +50854 active +50859 active +50864 middlepassive +50867 active +50869 active +50871 active +50873 active +50879 active +50881 active +50885 active +50890 active +50893 active +50900 active +50905 active +50910 active +50915 active +50921 active +50925 active +50930 active +50934 middle +50941 active +50946 active +50950 active +50957 active +50959 active +50966 active +50971 active +50975 active +50981 active +50983 middlepassive +50988 middlepassive +50993 passive +50999 active +51006 active +51014 active +51018 middlepassive +51024 active +51027 middlepassive +51032 active +51034 active +51038 active +51040 active +51045 active +51051 active +51053 active +51062 active +51067 active +active +active +51072 middlepassive +51075 middle +51078 active +51081 active +51088 active +51090 active +51092 active +51094 active +51097 active +51101 active +51104 active +active +51110 active +51114 active +51118 active +51122 active +51126 active +51132 active +51140 active +51149 middle +51152 active +51156 active +51161 active +51166 active +51172 active +51176 active +51184 active +51186 middle +51191 middlepassive +51195 active +51201 active +51208 active +51210 middlepassive +51212 active +active +51215 active +active +51221 active +51223 middle +51227 active +51229 active +51231 active +51236 active +51240 active +51244 active +51248 active +51250 active +51255 active +active +51261 active +51264 active +51273 active +51276 active +51280 active +51284 active +active +active +51290 active +51294 middlepassive +51305 active +51309 active +51312 active +51314 active +51316 active +51323 active +51325 middlepassive +51329 active +51334 active +51346 active +51348 active +51355 active +51360 active +active +active +51366 active +51370 passive +51372 middlepassive +51374 active +51376 active +51379 active +51385 active +51387 active +51391 active +51396 active +51400 active +51403 active +51405 active +51408 active +51412 active +51419 active +51424 active +51427 active +active +51431 active +51435 active +51438 active +51441 active +51446 middlepassive +51452 active +51456 active +51458 active +51461 active +51465 active +active +51470 active +51472 active +51479 active +51481 active +active +51488 active +51490 active +51494 active +51497 active +51503 active +51507 active +51511 middlepassive +middle +active +51515 active +51520 middle +51525 active +51530 active +51532 active +51534 active +51541 active +51543 active +51546 active +51552 active +51556 active +51558 active +51562 active +51564 active +51566 active +51570 active +51572 active +51579 active +51588 active +51596 active +51598 active +51602 active +51605 active +51610 active +51612 active +51616 active +51623 active +51631 active +51638 active +51641 active +51643 active +51646 active +51657 active +51665 active +51674 active +51677 active +51681 middle +51685 active +51688 active +51697 active +51702 active +51710 active +51715 active +51721 active +51725 active +51728 active +51735 active +51739 active +51741 active +51743 middle +51748 active +active +51751 active +51761 active +51764 active +active +51771 active +51773 active +51777 active +51781 middlepassive +51785 active +active +51792 active +51797 middlepassive +51801 active +51804 active +51806 active +51811 active +51813 middle +51821 active +51823 active +51829 active +51834 active +51843 active +51850 active +51852 active +51864 active +51867 active +51876 active +51881 active +51886 active +51895 passive +51900 active +51903 middlepassive +51906 active +51910 middlepassive +51919 active +51924 active +51930 active +51937 middlepassive +51940 passive +51943 active +51951 active +51959 middlepassive +active +51962 active +51967 active +active +51970 active +51972 middle +middle +51976 active +51980 active +51983 passive +51986 active +51994 middlepassive +51999 active +active +52004 active +active +52010 active +52013 middle +52018 active +52023 active +52025 active +52032 active +52036 passive +52038 active +52041 active +52043 active +52048 middle +52051 active +52056 active +active +52062 active +active +52066 active +52070 active +52072 active +52074 active +52077 passive +52079 active +52081 active +52085 active +52087 active +52093 active +52101 active +52103 active +52105 active +52107 active +52113 middle +active +52118 active +52123 active +52125 active +52131 active +52138 active +52143 middle +52150 middlepassive +52152 middlepassive +52157 active +52159 active +52165 active +52172 active +52177 active +52181 middle +52185 active +52189 active +52192 middlepassive +52195 active +52201 active +52205 active +52210 active +52216 active +52220 active +52224 active +52229 active +52234 active +52238 active +52243 active +52247 active +52253 active +active +52259 active +52265 active +52270 active +52274 active +52279 active +52283 active +52287 active +52291 active +52298 active +52300 active +52302 active +52304 active +52311 middlepassive +52313 active +52322 active +52325 middlepassive +52329 active +52333 active +52342 active +active +52348 active +52356 active +52358 active +52363 active +52366 active +52370 active +52372 active +52375 middlepassive +52384 active +52389 middle +52393 active +52400 active +52405 middlepassive +52407 active +52412 active +active +52420 active +52423 active +52432 active +52436 active +52443 active +52446 active +52448 active +52452 active +52455 active +52459 active +52463 active +52467 active +52477 active +52480 active +52483 passive +52485 active +52489 passive +52491 active +52494 active +passive +52504 active +52514 active +52519 active +52525 active +active +52533 active +52536 active +52540 active +52547 active +52551 active +52554 active +52560 active +52563 active +52568 active +active +52574 active +52579 active +52582 active +52584 active +52589 active +active +52595 active +52600 active +52602 active +52610 active +52614 active +52623 active +52627 active +52634 middle +52636 middlepassive +52638 active +52642 active +52652 active +52654 active +52657 active +52662 active +52664 active +52670 active +52673 active +52676 active +52682 active +52689 active +52694 active +52697 active +52708 active +52713 active +52717 active +52720 active +52722 active +52729 middlepassive +52735 active +52746 active +52750 middle +52754 middlepassive +52757 active +52761 active +52764 active +52768 active +active +52773 active +52775 active +active +middle +52785 active +52791 active +active +52804 active +52808 active +52818 active +52821 active +52824 active +52827 active +52829 active +52836 active +52844 active +52850 active +active +52853 middlepassive +52860 active +52863 passive +active +52868 active +52870 active +52875 middle +52877 active +52879 active +52890 active +52892 active +52896 active +52898 active +52900 active +52903 active +52908 middlepassive +52913 active +52915 active +middlepassive +52918 active +52921 active +52923 active +52934 middle +active +52943 active +52946 middlepassive +52955 active +52958 active +52968 active +passive +52971 active +52978 active +52981 active +52989 middlepassive +52991 passive +52994 active +52997 active +52999 middlepassive +53001 active +active +53009 middle +53017 active +53023 active +53027 active +53032 active +53040 active +53054 active +53057 active +53064 active +53067 active +53072 active +53078 active +53084 active +53090 active +53093 active +53097 active +53102 active +53107 active +middle +53113 active +53116 active +53118 active +53122 active +53126 active +53131 passive +middlepassive +53137 middle +53142 active +53152 active +53159 active +53161 active +53165 active +53167 middlepassive +53172 middle +53175 active +53178 active +53184 active +53187 active +53190 active +53195 active +53198 active +53200 active +53203 middlepassive +53209 active +53214 active +passive +53220 active +53222 active +53224 active +53230 active +53234 active +53245 active +53259 active +53261 active +53267 active +53271 active +53276 active +53281 active +53286 active +53292 middlepassive +53297 active +53300 active +53305 active +53308 active +53312 active +53316 active +53319 active +53325 active +53328 middlepassive +53333 active +53336 active +53342 active +53351 active +53355 active +53359 active +53364 active +53367 active +53371 active +53379 active +53388 active +53392 active +53395 active +53399 active +53407 active +53413 active +53415 active +53419 active +53424 active +53427 active +53434 active +53442 active +53447 active +middle +53451 active +53454 active +53458 middlepassive +active +53467 active +53469 active +53472 active +53478 active +passive +53484 middle +53490 active +53495 active +middlepassive +53503 active +53508 active +53513 active +53518 active +53521 active +active +53526 active +53534 active +53541 active +53543 active +53550 active +53555 active +53558 active +53560 active +53564 active +53569 active +53572 active +53577 active +53587 active +53591 active +53598 middlepassive +53603 active +53605 middlepassive +53608 active +53611 active +53613 active +53619 active +53623 active +53631 active +53636 active +53641 active +53646 active +53650 active +53654 active +53665 active +53672 active +53674 active +53679 active +53685 active +53690 active +53693 active +53696 active +53702 active +53705 active +53709 active +53715 active +53718 active +53722 active +53724 active +53728 active +53733 active +53736 active +53745 active +active +53748 active +53753 middlepassive +53755 active +53759 active +53763 active +53769 active +53773 active +53776 active +53781 active +53783 active +53788 active +53790 active +53794 active +53800 active +53803 active +53806 active +53808 active +53814 active +53816 active +53822 active +53825 active +53828 active +53830 active +53833 active +53836 active +53840 middlepassive +active +53846 active +passive +53858 active +53866 active +53868 active +53876 active +active +middle +53885 middle +53889 active +53892 active +53894 active +53897 active +53902 middle +53911 middle +53917 active +53919 active +53926 active +active +53936 active +53944 active +53948 active +53950 active +53952 active +53956 active +53965 active +53971 active +53974 active +53983 active +53988 active +53994 active +53996 active +54000 active +54003 active +active +54013 active +54017 active +54026 active +54033 active +54036 middlepassive +54039 active +54043 active +54046 active +54054 active +54056 active +54062 active +54072 passive +54075 active +54077 active +54083 active +54093 active +54103 active +54109 active +54111 active +54117 active +54124 active +54127 active +54130 active +54133 active +54139 active +54151 active +active +54158 active +54160 active +54163 active +54167 active +54169 active +54171 middle +54175 active +54180 active +54184 active +54188 active +54192 active +middle +54201 active +54206 active +54210 active +54215 active +54218 active +54222 active +54226 active +54232 active +54235 active +54243 active +54248 active +active +middle +54254 active +54257 active +active +middle +54262 active +54266 active +54269 active +54273 active +54282 active +54290 active +54294 active +54300 passive +54305 active +54310 active +54314 active +54321 active +54323 active +54330 active +54332 active +active +54335 active +54337 active +54341 active +54345 active +54350 active +54355 active +54357 active +54362 middlepassive +54364 active +54366 active +54368 active +54372 active +54376 active +54378 active +54380 active +54382 active +54387 active +54389 active +54392 active +54397 active +54399 active +54404 active +54407 active +54409 active +54411 active +54414 active +54421 active +54430 active +54434 active +54438 active +54442 active +54445 active +active +54451 active +54456 active +54464 active +54467 active +54475 active +54477 active +54480 active +54482 active +54486 active +54489 active +54491 active +54494 middlepassive +54496 active +54502 middlepassive +54504 active +54508 active +54511 active +54517 middlepassive +54519 active +54523 active +54528 active +active +54533 active +54536 active +54538 active +54541 middlepassive +54551 active +54555 active +active +54559 active +middlepassive +54564 active +54566 active +54570 active +54575 active +54580 active +54583 active +54588 active +active +54591 active +54596 active +54601 passive +54606 active +54610 active +54612 active +54617 active +54619 active +54624 active +54632 middlepassive +54636 active +54648 active +54650 middlepassive +54655 middle +54665 active +active +54670 active +54676 active +54685 active +54691 active +54693 middle +54697 active +54704 active +54706 middle +54713 passive +54719 active +54732 active +54736 active +active +54742 active +54746 active +54754 active +54759 active +54764 active +54766 active +middle +54769 active +54777 active +active +54780 active +54787 passive +54789 passive +54797 passive +54806 middle +54814 middlepassive +54818 active +active +54822 active +54833 passive +54835 active +54839 active +54845 passive +54847 passive +54854 middle +54857 passive +54861 active +54864 active +active +54868 active +active +54875 active +54878 active +54884 active +active +54887 active +active +54899 active +54903 active +active +54910 active +54915 passive +middlepassive +54919 middle +54927 passive +54936 active +54940 active +54943 middle +54947 active +54952 active +54959 active +54962 active +54966 active +54973 active +middlepassive +54977 active +54981 active +54984 active +54986 active +54992 active +54996 active +55001 active +55007 active +55014 active +55019 active +55021 middle +55024 active +55028 active +55032 active +55037 active +55039 active +55042 active +55046 active +55048 middlepassive +55051 active +55056 active +55059 active +55064 active +55071 active +55075 active +55080 active +55089 passive +55096 active +55098 active +55100 active +55104 active +55108 active +55112 active +55115 active +55119 middle +55123 active +55130 active +55136 active +55140 active +55144 active +55150 active +55154 active +55159 active +55163 active +55165 active +55172 middle +55175 active +active +55179 middlepassive +55181 active +55185 active +55188 active +55191 active +active +55195 middlepassive +55197 active +55203 active +55208 active +55214 active +55217 active +55223 active +55226 middle +55234 active +55237 active +middle +55244 active +55248 active +active +55258 active +55260 active +55264 active +55266 active +55269 active +55272 active +55275 active +55279 active +55284 active +55289 active +55291 active +55295 active +55301 middle +55304 active +55308 active +55312 active +55317 active +55320 active +55324 active +55326 active +55334 active +55338 active +55340 active +55344 active +55349 active +55354 active +55363 active +55365 middle +55371 active +55373 middle +55378 active +55381 active +55385 active +55388 middle +middle +55395 active +55400 active +55403 active +55411 active +55420 active +55429 active +55432 middle +active +55437 active +55439 active +55441 active +55448 active +55453 active +55457 active +55462 active +55466 active +middle +55469 active +55475 active +active +55484 active +55489 active +55492 active +active +55500 active +55502 active +55509 active +55511 active +55517 active +55523 passive +55528 active +active +55538 active +55540 active +55547 active +55549 active +55554 active +55558 active +55566 active +55569 middlepassive +active +55581 active +55588 active +active +55592 active +55600 active +55603 active +55608 active +55614 active +55617 active +55627 active +55629 active +55634 active +55640 active +55645 active +55648 active +55656 active +55661 active +55667 active +middle +55672 active +55676 active +55680 active +55684 active +middle +55690 active +55692 active +55698 active +55703 active +55707 active +55709 active +55711 active +55714 active +55721 active +55725 active +55729 active +55734 active +55737 active +55739 active +55745 active +55751 active +55754 middle +55762 active +55768 active +55772 active +55775 active +middle +55780 active +55786 active +active +55792 active +55796 active +55800 active +55803 active +55807 active +55810 active +55813 active +55815 middle +55820 active +55826 active +55831 middle +55833 active +55839 active +55841 passive +55843 active +55851 active +55854 active +active +55860 active +55864 middle +55866 active +55868 active +55871 active +55876 passive +55878 active +55883 active +active +55890 active +55895 active +55898 active +55906 passive +middle +55911 active +55918 passive +55925 active +55927 middlepassive +55931 active +55935 active +middlepassive +55940 middlepassive +middlepassive +55946 active +active +55952 active +active +55956 active +55962 active +55970 active +55972 active +middle +55980 passive +passive +55983 active +55985 middle +55987 active +active +55994 active +56000 active +active +56004 active +56006 middlepassive +56008 active +56010 active +56013 active +56015 active +56020 active +56022 active +56025 active +56027 active +56031 passive +56035 middle +56040 passive +56043 active +56045 active +56050 active +56053 active +56058 middle +56060 active +56062 middle +active +56065 active +56068 active +56070 active +56072 active +active +56082 active +56089 active +56093 active +56099 active +56105 active +56108 active +56111 active +56117 middle +56119 active +56121 active +56127 active +56137 active +56139 active +56141 middlepassive +56146 active +56149 active +56153 active +56159 active +56163 active +56169 active +56172 active +56175 active +56181 active +56184 active +56187 active +56192 active +56194 active +56196 active +56198 active +56204 active +56207 passive +56210 active +56213 middle +56218 active +active +56222 active +56229 passive +56233 active +56235 active +56238 active +56244 active +56246 active +56248 active +56252 active +56254 active +56259 middlepassive +56264 middle +56271 active +56274 middle +56280 active +56283 active +56285 active +56287 active +56293 active +56296 active +56298 active +56303 active +56309 active +56311 middle +56315 active +56317 active +56319 active +56322 active +56324 active +56326 active +56329 active +56332 active +56336 middle +56338 active +56343 active +56346 active +active +56351 active +56354 middle +56356 active +56359 active +56363 active +56369 active +56371 active +56374 active +56380 active +56382 active +middle +56387 active +56394 active +56398 active +56400 active +56402 active +56406 active +56412 active +56417 active +56422 active +56424 active +56429 passive +56431 active +56435 passive +56438 active +56443 middlepassive +active +56446 middle +56448 active +56453 passive +56457 active +56460 active +56463 active +56466 active +56470 active +56472 active +56474 active +56480 middle +56483 active +56486 active +56489 active +56492 active +56497 active +56501 active +56505 active +56508 active +active +56512 active +56515 active +56525 active +56529 active +active +56533 active +56535 middle +active +56544 active +56546 active +56552 active +active +56559 active +56562 active +56566 active +56568 active +56572 active +56575 active +56579 middlepassive +56589 active +56593 active +56598 middlepassive +56602 active +56609 active +56616 active +56621 active +56625 active +56631 active +56634 middlepassive +56639 active +56641 active +56649 active +56651 middle +56656 active +56664 active +56671 active +56673 active +56675 active +56678 active +56684 active +56688 active +56695 active +56699 active +56704 active +56709 active +56716 active +passive +56719 middle +56721 middle +56724 active +56728 middlepassive +56732 active +56734 active +56736 active +56738 active +56741 active +56744 active +56746 active +56758 active +56766 active +56770 active +56774 active +56777 middlepassive +56779 active +56783 active +56787 active +56790 active +56793 active +56796 active +56802 active +56808 active +56812 active +56817 active +56822 active +56829 active +56836 active +56839 active +56846 active +active +56852 active +56854 middle +56864 active +56867 active +56873 active +56876 active +56882 active +56887 active +active +56892 active +56894 active +56899 active +56906 middle +56915 active +56920 active +56922 middlepassive +56925 active +56927 active +56932 active +middlepassive +56936 middlepassive +56939 active +middle +56948 active +56950 active +56962 active +56967 active +56974 active +56977 active +56980 active +56983 middle +56987 active +56991 active +56996 active +57004 active +57010 active +57013 active +57026 active +57028 active +57031 active +57034 active +57041 middle +57047 active +57058 active +57062 active +57065 middlepassive +active +57077 active +active +57084 active +57086 middle +57093 active +57103 active +middle +57112 active +57121 active +active +57125 middle +57130 active +passive +57138 active +57140 active +57143 active +57151 middle +57154 middlepassive +passive +57161 active +57163 active +57168 active +57170 active +57172 active +57176 active +57179 active +57186 active +57190 active +57194 active +57197 active +57199 active +57201 active +57212 active +57214 active +57217 active +57223 active +57232 active +active +57238 active +57242 active +57246 active +57252 active +57256 active +57261 active +57264 active +57269 active +57271 active +57285 active +57288 active +57293 active +57304 active +57306 active +57311 active +57313 active +57315 active +active +57318 active +57321 active +57326 active +57336 passive +57344 active +57358 active +57360 active +57363 active +57366 active +57373 active +57376 active +57381 active +57387 active +57389 active +57394 active +57396 middle +57401 active +57406 active +57411 active +57418 active +57422 active +57426 active +57431 active +57435 active +57439 active +57445 passive +57447 middlepassive +57449 active +57452 active +57458 passive +passive +57461 active +57470 active +57477 active +57480 active +57486 active +57488 active +57492 active +57495 middle +57498 active +57502 active +57505 passive +57509 active +57513 active +57517 active +57520 active +57525 active +57530 active +57544 active +57551 middle +57558 active +57561 middlepassive +57564 active +57571 middlepassive +57573 active +57580 active +57584 active +57590 active +57594 middle +57597 active +57601 active +57605 middle +57609 active +57613 active +57615 middle +57623 active +57628 active +57635 active +57639 active +middle +57644 active +57646 active +57651 active +57655 active +57657 active +57662 active +57665 active +57676 middlepassive +57679 active +active +57682 active +57688 active +57691 active +57693 active +57698 active +passive +57702 middlepassive +57707 active +57714 active +57720 active +57728 active +57735 middlepassive +57737 active +57742 active +57744 active +active +57747 active +57749 active +57754 active +57760 active +57762 active +57764 active +57766 active +57771 active +57775 active +57779 active +57786 active +57788 active +57791 active +57794 active +middle +57799 active +57802 active +57804 active +57806 active +57809 middlepassive +57811 active +active +57816 active +57819 active +57821 active +57827 active +57829 middlepassive +57832 active +57837 active +57842 active +57846 middlepassive +57849 middlepassive +57854 active +57858 middlepassive +57861 active +57864 active +57867 active +57872 active +57876 active +57879 active +active +57885 active +57889 active +middle +57896 active +57902 active +57907 active +57909 active +57912 active +57916 active +57920 active +57926 active +active +57929 active +57933 active +57936 active +57939 active +57941 active +57943 active +57945 active +passive +57958 passive +active +57963 active +57966 active +57968 active +57975 active +57980 middle +57982 active +active +57990 active +57995 active +57998 active +58001 active +58009 active +58011 active +58018 active +58020 active +58024 active +58028 middle +58032 active +58047 active +58051 active +58055 active +58058 middlepassive +58060 active +58065 active +58074 middle +58080 active +58083 active +58087 active +58089 active +58091 active +58109 passive +active +58118 middle +58120 active +58127 active +58132 active +58142 passive +58145 active +58150 active +58157 active +58168 active +58171 active +58175 active +58181 active +58183 active +58188 active +58193 active +58203 active +58205 active +active +58208 active +58218 active +58222 active +58225 active +58230 active +58237 active +58241 active +58245 middlepassive +58251 active +58257 active +58263 active +58273 passive +58280 active +58289 active +58291 active +58298 passive +58302 passive +58305 active +58312 active +58317 active +58321 active +58323 passive +active +58326 active +58329 active +58338 active +58344 active +58351 active +58353 active +58362 active +58364 active +58373 active +58377 active +58381 middle +58388 active +58395 active +58397 active +58407 active +58411 active +58413 middlepassive +58417 active +58423 active +58428 active +58430 passive +58432 middlepassive +58442 active +58446 active +58450 active +passive +58453 middlepassive +58456 middle +58460 middlepassive +middlepassive +58467 active +58475 passive +58478 passive +58481 active +passive +58487 active +58490 active +58494 active +58500 active +58505 active +58512 active +58517 active +58520 active +58526 active +58529 active +58532 active +58534 active +58539 active +58541 active +58546 active +58548 active +58554 active +58562 active +58564 active +58566 active +58569 active +middlepassive +58574 active +58577 middlepassive +58582 active +58588 middlepassive +58590 active +active +58595 passive +58602 active +58610 active +58614 active +58617 active +58620 active +58623 active +58625 active +58629 active +58633 active +58644 active +58649 active +58651 active +58654 active +58662 middle +58666 active +active +58675 passive +58678 active +58680 active +58689 active +58695 active +58700 active +58706 active +58709 active +58714 active +58716 active +active +58719 active +58721 active +58724 active +middle +58728 active +58735 active +58740 active +58751 passive +58755 passive +58760 active +58765 active +active +58769 active +active +58772 middle +58777 active +58784 active +58790 active +58793 active +passive +58800 active +58807 active +58818 active +active +58823 active +58828 active +58831 active +58836 active +58838 active +58842 active +active +58850 middle +58852 active +58855 active +passive +58863 active +58867 active +58876 passive +58878 active +58881 active +58890 passive +58894 middlepassive +active +58898 active +58900 active +58905 active +58911 active +58915 active +58919 passive +58921 middle +58924 active +58927 active +58932 active +58942 active +58950 active +58954 middle +58956 active +58969 active +58971 active +58973 active +58977 active +58983 active +58987 active +58989 active +58991 active +58998 active +59002 active +59009 active +59013 active +59019 active +59022 active +59026 active +59028 active +59033 active +59037 active +59041 active +59045 active +59047 active +59052 active +59054 active +59065 active +59068 active +59074 active +59076 active +59079 active +59081 active +59088 active +59092 active +59094 active +59099 active +59108 active +59110 active +59115 active +59123 active +59132 active +59136 middlepassive +59140 active +59145 active +59150 active +59153 active +59164 active +59169 active +passive +59175 active +59179 active +59181 active +59184 active +59190 middle +active +59197 active +59201 active +passive +59204 middlepassive +59208 active +59212 active +59216 middle +59219 active +59223 active +59226 active +59229 middle +59232 active +59237 active +59244 middle +59249 active +59252 active +59256 active +59273 active +59277 passive +59279 active +59285 middle +59287 active +59293 active +59298 active +59300 active +59304 active +59309 active +59312 active +59317 active +59322 active +59324 active +59326 active +59328 active +59331 active +59340 active +59342 active +59351 active +59357 active +active +59364 active +59369 active +59373 active +59376 active +59379 active +59389 active +59393 active +59395 active +59397 active +59403 active +59405 active +59407 middle +59412 passive +59414 active +59418 active +59426 active +59430 middle +59432 active +59434 middle +59437 active +59440 active +59443 active +59446 active +59448 active +59452 active +active +59455 active +59458 active +59460 passive +59464 active +59466 active +59469 active +59475 active +59477 active +59482 middle +59485 active +active +middlepassive +59499 active +59503 active +59508 active +59510 active +59512 active +59515 active +59517 active +59524 active +59528 active +59530 middlepassive +59533 active +59537 active +59541 active +59544 active +59547 active +59549 active +59558 active +59564 active +59568 active +active +59572 active +59575 middlepassive +59579 active +59583 active +59587 active +59590 active +59593 active +59596 active +59605 active +59607 active +59611 active +59614 active +59618 active +active +59622 passive +59630 passive +59636 passive +59642 active +59648 active +59655 active +active +59660 active +59666 active +active +59670 middlepassive +59673 active +59677 active +59680 active +59683 active +59688 active +59692 middle +59697 active +59700 active +59703 active +59709 active +middle +59713 active +59716 active +59718 middlepassive +59720 active +59722 active +59729 middlepassive +59731 active +59738 active +middlepassive +59746 active +59749 active +59754 active +59757 middle +59761 passive +59765 active +59772 active +59781 active +59786 active +59789 middlepassive +active +59795 passive +59797 active +59801 middlepassive +59803 middle +59809 active +59813 active +59817 active +active +59821 active +59826 active +59828 active +59830 active +59833 active +59837 active +59847 middlepassive +59856 active +59863 active +59866 active +59869 active +active +59874 active +59879 active +59881 active +59889 active +59892 active +59896 active +59898 active +59903 active +active +59909 active +59920 active +59925 active +59930 active +59936 active +active +59941 active +59960 active +59963 active +59966 active +59973 active +59975 active +59979 active +59985 middlepassive +59990 active +59996 active +59998 passive +60006 active +60013 active +60015 active +60021 active +60023 active +60029 active +60032 active +60043 active +60047 middlepassive +60050 active +60053 active +60055 active +60060 active +60064 middle +60066 active +60069 middlepassive +60079 active +60082 active +60086 active +60089 active +60094 middle +60110 active +60115 active +60118 active +60120 active +60124 active +60126 passive +60132 active +60135 active +60138 active +60147 active +60149 active +60151 active +60157 middle +60160 active +60164 active +60169 active +60174 active +60179 middle +60184 middle +60187 active +60193 active +60198 active +60200 active +60204 active +60208 active +60212 active +60221 active +60230 active +60233 active +60237 active +60241 active +60246 active +60252 active +60254 active +60257 passive +60262 active +active +60266 active +60268 active +60270 middlepassive +60274 active +60277 passive +60279 middlepassive +60288 active +60291 active +60294 middle +60297 middle +active +60301 active +60305 middlepassive +60314 active +60318 active +60322 active +60327 middle +60332 active +middlepassive +active +60337 active +60348 active +60354 active +60356 active +60362 active +active +60368 active +60372 active +60377 active +60379 active +60389 middlepassive +60391 active +60396 active +60407 active +60409 active +60416 active +60423 active +60430 middlepassive +active +60436 active +60439 passive +60445 passive +60447 active +60453 active +60455 passive +60457 active +60466 active +60469 active +middle +60472 middle +60476 passive +60483 active +60485 middle +60489 active +60495 active +active +60506 active +active +60519 active +60521 active +60527 active +60536 active +60541 passive +60543 active +60549 active +60552 active +60558 active +60564 active +60572 active +60574 active +60577 middlepassive +60580 active +60587 active +60589 active +60595 active +60600 active +60605 active +60610 middle +60613 middle +60616 active +60620 active +60623 active +60628 active +60633 active +60640 active +60643 middlepassive +60646 active +60652 active +active +60658 active +60663 active +60669 active +60676 active +60679 middle +60686 active +60690 active +60695 active +60698 active +60706 active +60709 active +60714 active +60718 active +60722 active +60731 active +60733 active +60737 active +60739 active +60743 active +60748 active +60755 active +60760 active +60765 active +60771 active +60774 active +60778 active +60780 active +60789 passive +60797 passive +60799 active +60803 active +60808 active +60821 middlepassive +60823 active +60829 active +60835 active +60837 active +60841 passive +60843 active +60846 middlepassive +60851 active +60853 active +60855 active +60860 active +60863 active +60870 active +60874 active +60878 active +60882 active +60890 active +60894 middle +60897 active +60900 active +60906 active +60909 active +60913 active +60917 active +60925 active +60927 active +60931 active +60935 active +60940 active +60945 passive +active +60951 active +60953 active +60969 active +60979 active +60982 active +60993 passive +60995 active +60998 active +61001 middlepassive +active +61006 active +61012 active +61020 active +61025 active +active +61029 middlepassive +active +61034 active +61039 middle +61041 active +61045 active +61049 active +61052 active +61057 active +61059 active +61064 active +61070 middle +61073 active +61081 active +61084 active +61089 active +61095 middle +61099 active +61104 active +61106 active +61109 active +61113 active +61115 active +active +61119 active +61121 active +61123 active +61127 active +61131 active +61135 active +61141 middle +61145 active +61148 active +61150 active +61155 passive +61157 passive +61164 middle +61168 active +61170 active +61172 active +61178 active +61182 active +61189 passive +61200 active +61203 middle +61206 passive +61215 active +61225 active +61229 active +61233 active +61236 active +61245 active +61251 active +61253 middle +61258 active +passive +61263 active +61265 middlepassive +61271 active +61278 active +61288 middle +61291 active +61295 active +61304 active +61309 active +61311 active +61317 active +active +61323 active +61328 active +61332 middlepassive +61336 active +61340 active +61344 active +61348 active +61350 active +61352 active +61357 active +61361 active +61364 active +61368 active +middle +61373 active +middle +middlepassive +61378 active +61380 passive +61387 active +61390 active +61397 active +61399 active +61405 active +61410 active +61412 active +61414 active +61418 active +61421 active +61428 active +61430 active +61433 active +61440 active +61443 active +61451 active +61453 active +61459 active +61464 active +61472 active +61477 active +61481 active +61485 active +61488 active +61492 active +61500 active +61505 active +61508 active +61515 active +61521 active +61524 active +61529 active +61531 active +61535 active +61539 active +61544 active +61546 active +61550 active +61552 active +61557 active +61559 active +61563 active +61567 active +61572 active +61576 active +61580 active +61586 active +61592 passive +61597 active +61606 active +61610 middlepassive +61613 active +61620 active +61623 active +61628 middle +61632 active +61639 active +61642 active +61647 middle +61657 passive +61662 middlepassive +61665 active +61670 active +61675 passive +61679 active +61687 active +61691 active +61698 active +61703 active +61705 active +61712 active +61721 active +61725 active +61729 active +61739 active +61742 active +61747 active +61756 active +61759 active +passive +61769 active +61775 active +61785 active +61799 active +61803 active +61807 active +61812 active +61814 active +61817 active +61830 active +passive +61835 active +61841 active +61843 active +61847 active +61850 active +61852 active +61855 active +61858 active +61862 active +61868 active +61871 active +61883 active +61887 active +61890 active +61894 active +61896 active +61902 active +61907 active +61911 active +61916 active +61918 active +61929 active +61933 active +61940 active +61944 active +61950 passive +61960 active +61972 middlepassive +61982 active +61985 middlepassive +61988 active +61990 active +61993 active +middle +61999 active +62002 active +62004 active +62008 active +62014 active +62017 active +active +62023 active +62027 active +62030 active +62033 active +62037 middle +62039 active +62043 active +62047 active +active +62050 active +62052 passive +62056 active +62059 active +62062 active +62069 active +62071 active +62074 active +62080 active +62087 active +62093 active +62098 active +62107 active +62113 active +62126 active +62130 active +62133 active +62138 active +62143 active +62149 active +62152 active +62156 active +62159 active +62164 active +62176 active +62181 active +62192 active +62198 active +62208 active +62212 active +62216 active +62232 active +active +62236 active +62238 active +62245 active +62248 active +62250 middlepassive +62257 active +active +62260 middle +62264 active +62276 middle +62281 active +62286 active +62297 middlepassive +62301 active +62305 active +active +62308 active +62310 active +62312 active +62314 active +62316 active +62321 active +62323 active +62326 active +62330 active +62332 middlepassive +62335 middle +62340 active +active +62350 active +62352 active +62356 passive +62364 active +active +62367 middle +62369 active +62378 active +middle +62382 active +62384 active +active +62392 active +62395 active +62401 active +62410 middle +62415 active +62417 active +62427 active +62432 active +62438 passive +62440 active +62444 active +62451 active +62457 active +middle +62460 active +62464 active +active +62471 active +62474 active +62478 active +62486 active +62488 active +62494 active +active +62502 passive +62504 active +active +62508 active +active +62511 active +62519 active +62523 active +62526 active +62531 middle +62537 active +62540 active +62544 middle +62550 active +62558 active +62562 active +middle +62570 active +62580 active +62590 middlepassive +62593 passive +62603 active +62606 active +62612 active +62614 middle +62618 active +62621 active +62625 passive +62629 active +62634 active +62639 active +62643 active +62647 active +62652 active +62656 active +62658 active +62663 active +62667 active +62672 active +62677 active +62683 middlepassive +active +62691 active +62693 active +62700 active +62706 active +62712 active +62716 active +62720 active +62727 active +62730 middlepassive +62734 active +active +62741 active +62745 active +62751 active +62753 active +active +62759 active +62763 active +62767 active +62771 active +62780 active +62782 middle +62787 active +62794 active +active +active +active +active +62802 active +62806 active +62810 active +62814 middle +62820 active +62825 active +active +62831 active +62834 active +62841 passive +62843 active +62849 active +62853 active +62860 active +62863 active +62869 active +62871 active +62874 active +active +62879 active +active +62882 middle +62885 active +62892 active +passive +62899 active +62904 active +62909 active +active +62915 active +active +62919 active +62921 active +62929 active +active +62936 active +62940 active +62945 active +62950 passive +62956 active +62961 active +62965 active +62968 active +62973 active +62975 active +active +active +62979 active +62986 active +middle +62991 active +62998 active +63002 passive +63004 active +63008 active +63012 active +63015 passive +63019 passive +63024 active +63038 active +63044 active +63049 active +passive +63062 active +63070 active +63074 passive +63078 active +passive +63084 active +63092 active +63100 active +63104 active +middle +63109 active +active +63115 active +63118 active +63123 active +63133 active +63144 active +63148 active +63151 active +63155 middle +63159 passive +middle +63170 active +63177 active +63179 active +63204 active +63210 active +63212 active +active +63217 active +63222 active +63225 active +63234 active +63245 active +63249 passive +63251 passive +63254 active +active +63259 middlepassive +63266 active +active +63273 active +63278 active +passive +63281 active +63284 active +63292 active +63295 active +63305 active +63312 active +63316 passive +63321 passive +63323 active +63328 active +63337 passive +63343 active +63345 active +63348 active +63350 active +63362 active +63364 active +63371 active +active +63375 active +63381 active +63384 active +63388 active +63390 middle +63395 passive +63399 passive +63404 active +middle +63408 active +63412 active +63418 active +63423 passive +63430 active +63436 active +63440 active +63442 active +63447 active +63451 active +63457 active +63466 active +63472 active +63480 active +63483 active +63485 active +63490 passive +63502 active +passive +63513 active +63516 active +63527 middlepassive +63534 active +63536 active +63539 passive +63544 active +63546 middlepassive +63556 active +63560 active +63562 active +63570 active +63572 active +63575 active +63583 middlepassive +63588 active +63596 active +63601 active +63607 active +active +middlepassive +63614 active +63616 middlepassive +63620 active +63623 active +63628 active +63631 middlepassive +63636 active +63645 middlepassive +63648 passive +63654 active +63660 active +63666 active +63668 active +63671 active +63675 active +63679 active +63681 active +63689 active +63694 active +63697 active +active +63703 active +63708 middlepassive +63710 middlepassive +63725 active +63730 active +active +63734 active +63740 active +63742 active +63745 active +passive +63751 active +63754 active +63757 active +63760 active +active +63766 active +63768 active +63770 active +63774 active +active +63780 active +63782 active +63785 active +63789 active +active +63794 passive +63796 active +63801 passive +63803 active +63808 middle +63811 active +63816 middlepassive +63822 active +63824 active +63838 middlepassive +63842 active +63846 active +63851 active +63854 active +63865 passive +63867 active +63875 active +63879 active +63884 active +63890 active +active +63900 passive +63903 active +63907 active +63915 active +63920 active +63924 active +active +63927 active +63929 active +63933 active +63937 passive +63941 active +passive +63950 passive +63953 active +63957 active +63960 active +63965 active +63970 active +63974 active +63984 active +63994 active +64004 active +64010 active +64019 middlepassive +64024 passive +64026 active +64031 active +64035 active +64038 active +64044 active +64049 active +64054 active +64061 middlepassive +64065 middle +64068 active +64077 active +64082 active +64084 active +64088 active +64090 active +64097 active +64105 active +passive +64113 passive +64115 active +64118 active +64127 active +64129 active +64136 active +64148 active +64150 active +64157 passive +64177 active +64181 active +active +active +64185 middlepassive +64190 active +64192 active +64201 active +64206 middlepassive +active +64214 active +64219 active +64221 active +64228 active +middle +64234 active +64236 active +64246 active +64248 active +64252 active +active +64260 active +64265 active +64272 active +64276 active +64280 active +64283 middle +64285 active +64288 active +64299 active +64302 active +64312 active +64319 active +64323 active +64325 middlepassive +64328 middlepassive +64331 active +64335 active +64340 active +64342 active +64346 active +64360 active +64362 passive +64365 active +64369 active +active +64374 active +active +64379 active +active +64384 active +middlepassive +64388 active +64392 active +64401 passive +64405 passive +64410 active +active +64419 active +64423 active +64428 active +64430 active +64432 active +64434 active +64438 active +64444 active +64446 active +64451 active +64453 active +64455 active +64457 active +64461 active +64467 active +64469 passive +64473 active +64477 active +64480 active +64485 active +64487 active +64489 active +64491 active +64494 active +64500 active +64503 active +64505 active +64508 active +64510 active +64513 active +active +64520 active +64523 active +64526 active +64529 active +active +64533 active +64538 active +active +64541 active +64543 passive +64546 active +64550 active +64553 active +64556 active +64565 active +64568 active +64570 active +64574 active +64577 active +64584 active +64590 active +active +64593 middlepassive +64599 active +64601 active +64613 active +64616 active +64622 active +64626 active +active +64629 middlepassive +64634 active +64638 active +64643 active +64646 active +64652 active +64654 active +64659 active +64664 passive +64667 middlepassive +64672 active +64674 passive +64682 middle +64687 active +64689 active +middle +64696 middlepassive +64700 middle +64704 passive +64707 active +64709 active +64712 active +64720 middlepassive +64723 active +64731 middlepassive +active +64737 passive +64739 active +64745 active +64750 active +64757 passive +64766 active +active +64769 active +64776 active +64781 active +64786 active +active +64794 middle +64800 middle +64802 active +64809 middle +64829 active +active +64832 passive +64835 active +64843 active +active +64848 middlepassive +64851 middle +64854 active +64861 active +64865 active +active +64874 passive +64881 middle +64884 middle +64886 middlepassive +64891 active +64897 passive +64900 active +64905 active +64908 active +64912 active +64914 active +active +64942 active +active +64965 active +64971 active +64973 active +64984 active +passive +64989 active +65000 middle +65003 active +65006 passive +active +65011 active +65020 middle +65028 middle +active +65032 passive +65039 middle +65042 active +65045 passive +65055 active +65059 passive +65063 passive +65070 active +65072 active +65079 active +65082 active +65085 active +65091 active +65093 active +65099 middle +65108 passive +65117 middle +65121 active +65125 passive +65128 passive +65133 middle +active +65139 active +65141 middle +65147 active +65157 active +65159 passive +65166 active +65170 active +65176 passive +65184 passive +65189 active +65196 middle +65203 passive +65207 active +65212 active +middlepassive +65215 passive +65217 middlepassive +65222 active +65228 passive +65233 middle +active +65240 active +middlepassive +65244 active +active +65259 middle +65263 active +65267 passive +65269 active +65275 active +65278 middle +65280 active +active +middle +65287 active +active +65293 active +65301 passive +65309 active +65335 active +65344 active +active +65355 middle +65358 middle +65362 active +active +65366 active +65369 active +active +65373 passive +active +65376 passive +65382 active +65387 middle +65393 active +65399 active +65401 middle +65409 active +65411 active +65413 active +65420 active +65422 passive +65428 middle +65433 active +65436 active +65445 active +65458 middle +65464 passive +65479 active +65485 active +65487 active +65507 passive +65516 active +65524 middle +65528 middle +65532 passive +65535 active +65543 passive +65555 active +65565 active +65568 passive +65578 active +active +65583 active +active +65591 active +65593 passive +65599 active +65602 middle +65613 active +65616 passive +65619 passive +65624 middle +65634 active +65639 active +65646 active +65650 active +65652 active +65656 active +65665 active +active +65677 active +65679 passive +65684 active +65693 active +65695 active +65698 active +65707 active +65712 active +active +65721 passive +65728 active +65733 active +65739 active +65746 passive +65754 active +65758 active +65763 active +65765 active +65769 active +65774 active +65776 active +65781 middlepassive +65787 active +65797 active +65806 active +65815 active +65817 active +passive +65822 active +65831 active +65838 active +65840 passive +65854 middle +65862 active +65876 middle +65885 middle +65887 active +65889 active +passive +65900 middle +65904 passive +65906 passive +65915 active +active +65932 middlepassive +65944 middlepassive +65948 active +65952 active +65961 active +65963 active +65970 active +65974 active +65980 active +65984 active +65991 active +65995 active +66004 active +66006 passive +66016 active +66035 active +passive +66038 active +66047 passive +66050 active +66054 middlepassive +66059 active +66063 active +active +66068 active +66070 active +66073 active +66079 active +active +66085 active +66087 active +66091 active +66093 active +66099 active +66103 active +66106 active +66114 active +66116 active +66121 active +66125 passive +66133 middlepassive +active +66136 active +66138 active +66144 active +66146 middlepassive +66148 active +66152 active +66157 active +66159 active +66163 active +66167 active +66172 middlepassive +66180 passive +66186 active +66189 active +66196 active +66206 passive +66210 active +66213 middle +66220 active +66226 active +66232 active +66234 active +66248 active +66256 active +66258 middle +66262 active +66264 active +66271 middle +66273 middle +66276 passive +66283 active +66287 active +66293 active +66303 active +66305 active +active +66316 active +66327 active +66331 active +66341 active +66347 active +66351 active +66354 active +66356 active +66359 passive +66365 active +66373 active +66375 passive +66379 active +66383 middle +66389 active +66402 active +66406 active +66417 middle +66422 active +66426 middle +66432 active +66436 passive +66451 active +66453 active +66458 active +66469 middle +66474 active +66482 passive +66492 active +66496 active +66498 active +66502 active +66509 active +66514 active +66526 middlepassive +66529 active +66534 active +66544 active +66549 middle +66556 active +66562 active +66565 active +66567 passive +66575 middle +66579 passive +66603 active +66608 active +66613 middlepassive +66621 active +66626 passive +66629 active +66640 passive +66648 passive +66650 active +66668 active +66672 active +66678 active +66683 active +66687 passive +66693 middle +66699 active +66707 active +66714 passive +66719 active +passive +66723 active +66731 middle +66735 active +66738 active +66740 active +66746 active +66748 active +66752 passive +66755 active +66757 active +active +66760 active +66765 active +active +66769 active +66771 active +66780 active +66785 active +66790 middlepassive +middlepassive +66797 passive +66801 middle +66804 active +66812 active +66814 active +66817 middlepassive +66819 active +66830 passive +active +66836 active +66841 active +66846 active +66849 middlepassive +66852 active +66854 active +66856 active +66859 middle +active +66863 active +66866 middle +66873 active +66878 active +66883 active +66888 active +66895 passive +active +66901 active +66910 active +66913 active +66915 active +66921 active +66925 active +66950 active +66953 active +66957 active +66959 active +66967 passive +66980 passive +66994 active +67005 active +67007 middle +67014 active +67019 active +67025 active +67032 active +67040 active +67048 middlepassive +67058 passive +67060 passive +67065 active +passive +67068 passive +67074 active +67085 active +67089 active +67096 active +67099 active +active +67102 active +67109 active +67122 active +67130 active +67139 active +active +active +67145 passive +67147 active +67154 passive +67160 active +67164 passive +67170 active +passive +67178 active +67181 active +active +67186 active +67202 active +67205 middle +67209 active +67214 active +67222 active +67224 active +67230 active +67236 middle +67243 middle +67250 active +67252 active +67254 passive +67259 active +67262 middle +67271 middle +67279 active +67283 active +active +67286 middle +67292 active +67294 active +67297 active +67300 active +active +67303 middle +67313 active +67315 active +active +67318 middle +67322 active +67328 middle +67331 active +67341 passive +67343 active +67347 middle +67351 active +67359 active +67362 active +67369 active +67371 active +67374 active +67378 active +active +67385 middle +67396 active +67404 middlepassive +67413 active +67424 active +passive +67428 active +67434 passive +active +67448 active +67452 active +67458 middlepassive +67463 active +67467 middlepassive +67475 active +67478 passive +67484 passive +67486 active +67495 active +67499 passive +67502 active +67509 middle +67519 active +67525 active +67527 active +middlepassive +67530 passive +active +67544 active +active +67553 active +67555 middle +67562 active +67573 active +67577 passive +67581 middle +67584 active +67590 active +active +active +67594 active +67597 passive +67604 active +67609 active +67612 active +67615 active +67627 active +67632 middle +67635 middle +67637 active +67640 middle +67644 middle +67648 active +active +67654 active +67658 active +67664 active +67670 middlepassive +67674 passive +67676 active +67678 active +67683 active +67687 active +67689 active +67692 active +67698 middle +active +67706 middlepassive +active +67716 passive +67721 active +active +active +67733 active +67737 middle +active +67747 active +67752 active +67761 active +67772 active +67776 active +67780 active +passive +67783 middlepassive +active +67787 active +67800 active +67805 active +67807 active +67812 active +67819 active +active +67826 active +67828 active +active +67833 passive +67839 passive +67843 passive +67845 passive +67847 middle +67852 active +67862 active +67867 middle +67871 passive +67873 passive +67877 active +67879 active +67885 active +67889 active +67899 passive +67904 active +67906 middle +active +67913 passive +67915 passive +67918 middle +67921 active +active +67924 active +67931 active +67935 middlepassive +active +67942 passive +67946 passive +67957 middle +active +67960 middle +67969 active +67972 middle +67980 passive +67992 middle +67997 active +68000 active +68002 active +68007 active +68011 middle +68015 passive +68022 active +68036 active +68038 active +68046 middle +68069 active +68074 middle +active +68084 active +68086 passive +68099 active +68108 active +68117 active +68124 passive +68136 active +68141 active +active +68149 active +68151 active +68153 active +68155 active +68157 active +68166 active +68176 active +active +68180 active +68185 active +68188 active +68193 middle +active +68205 active +68207 active +68213 active +68218 active +68222 active +68226 active +68231 middlepassive +68235 active +68243 active +68249 active +68252 active +68257 active +68262 passive +68267 active +68273 active +68278 active +68281 active +68291 active +68298 active +68300 active +68304 active +68310 active +68314 active +68324 active +68327 active +68336 middle +active +68349 active +68353 active +68358 middle +68367 active +68369 active +68378 active +active +68383 active +68387 middle +68389 active +68396 active +68402 active +68406 active +68424 active +68427 middle +68431 active +68437 middle +68445 active +68455 active +68457 middlepassive +68466 active +68479 active +68486 active +active +68491 active +68500 passive +68507 middle +68514 active +68516 middle +68530 active +68535 active +68542 passive +68546 passive +68551 middle +68563 active +68569 active +68576 active +68578 passive +68583 active +68590 active +68594 middle +68598 active +68602 active +68610 passive +68614 passive +68617 active +68622 passive +68631 passive +68633 middle +68639 middle +68645 passive +68651 active +68660 passive +68664 active +68669 middle +68677 active +68679 passive +middle +68682 active +68685 passive +active +68690 active +active +68700 active +68706 active +68709 active +68711 passive +68713 middlepassive +68715 active +68719 active +68722 active +68725 active +68729 active +68732 middle +68734 active +68737 active +68744 active +68747 active +68750 active +68755 active +68762 middle +68768 active +68772 passive +68775 passive +68791 active +active +68796 middlepassive +68798 active +middle +68817 middle +68820 active +active +68823 active +68827 active +68838 active +68841 active +active +active +68856 active +68858 active +middle +68863 active +active +68872 middle +active +68876 active +68887 active +68892 passive +68898 active +68900 active +68918 active +68922 active +68928 active +68938 active +68940 middle +68951 active +68962 middle +68964 active +active +68969 active +68971 middle +68976 middle +68978 passive +68985 active +68988 active +68992 middle +68999 active +69005 active +69007 middle +69010 active +69016 active +69021 passive +69029 active +69033 active +69035 active +69041 passive +69050 active +69060 active +69074 active +active +69078 active +69086 active +69094 middle +69096 active +69099 active +69105 active +69108 active +middle +69121 active +69134 active +69140 middle +active +69148 active +69157 active +69161 active +69175 active +69177 active +69189 active +69205 active +69216 active +69221 active +69223 active +69235 middle +69237 active +69245 active +69247 active +69249 passive +69254 active +69260 active +69264 active +69268 active +69273 active +69279 active +middle +active +69284 passive +69294 active +69296 active +69299 active +69304 active +69309 active +69313 active +69317 middle +69325 passive +69328 active +69331 middle +69333 active +69336 middle +69341 active +69344 active +69349 active +69356 active +passive +69360 active +active +69366 middle +69381 passive +69393 active +69399 active +69406 middlepassive +69412 middlepassive +active +69418 active +69424 passive +active +middle +69431 active +69437 active +69442 active +69446 passive +69453 active +69456 active +69460 active +69464 active +69467 active +69470 middlepassive +69473 passive +69476 passive +69478 middle +69490 active +69494 active +69496 active +69501 active +active +69507 active +69513 active +69515 active +69521 passive +69524 active +69532 active +69536 active +69539 middle +69550 passive +69560 active +69562 passive +active +active +69567 active +69573 middlepassive +middle +69580 active +69582 middlepassive +69589 active +69596 active +middle +69601 active +69606 active +active +69613 passive +active +69622 active +69628 active +69634 active +69643 passive +69646 active +69649 active +active +69658 active +69661 active +69666 active +69674 active +69678 active +69685 middlepassive +69687 active +69701 active +69707 active +69714 passive +69719 passive +69734 active +active +69737 passive +69740 active +passive +69749 active +69754 active +69758 middle +69760 active +69765 active +69773 middle +69777 active +69780 active +active +69783 middlepassive +69790 active +69796 active +69799 active +passive +69802 middle +69811 active +69818 active +active +69822 active +69824 active +69826 middlepassive +69832 active +69837 active +69842 active +69844 passive +69849 active +69852 active +69854 active +69859 active +69862 active +69864 active +69867 active +69871 middlepassive +69875 active +69878 active +69881 active +active +69891 active +active +69898 passive +69904 active +69909 active +69919 passive +69924 middle +69926 passive +69934 passive +69939 active +middlepassive +69946 active +69957 active +69962 middle +69967 middle +69973 middlepassive +69977 active +69982 active +69985 middle +69988 active +69990 passive +69992 active +active +69997 active +70009 active +70013 active +70019 active +70024 active +70030 middlepassive +70034 active +70037 passive +70041 middlepassive +middle +70048 active +70056 active +70065 active +70068 middle +70079 active +70083 active +70088 passive +active +70095 middlepassive +middle +70098 active +70104 active +70110 active +70114 active +70116 active +70122 active +70124 active +70126 active +70131 active +70135 active +70137 active +70139 active +70144 passive +70149 active +active +70155 active +70157 active +70160 active +70165 active +70167 passive +70173 passive +70178 active +70180 active +70182 active +70186 active +active +70193 active +70195 active +70197 active +70205 active +70215 active +middle +70224 active +passive +70230 passive +70233 active +70241 middle +middlepassive +70244 active +70248 active +70250 active +70254 active +70256 middle +70259 active +70271 active +70276 active +70281 active +70284 middle +70289 active +70294 middlepassive +70298 active +70302 active +70316 active +70324 active +active +70327 active +70330 active +70335 active +70340 active +70347 passive +70353 middlepassive +active +70357 active +70359 passive +70364 active +70372 active +70374 active +passive +70377 active +70379 active +70381 middle +70394 active +70399 active +70405 middle +70408 active +70410 active +70413 active +70415 active +70419 middle +70427 active +70429 passive +70431 active +70438 passive +70440 active +70443 active +70446 active +70449 active +70454 passive +70457 middle +70460 active +70463 passive +70470 middle +70480 active +70482 active +70490 active +70492 active +70496 middle +70499 active +passive +70505 middlepassive +70508 active +70510 active +70514 middle +70516 active +70521 middle +70527 active +70532 active +70538 middle +70544 active +middlepassive +70547 middlepassive +70552 middlepassive +70559 active +70561 active +70567 active +active +70571 active +70574 active +70579 active +70595 active +70597 passive +70599 middlepassive +70610 passive +70612 middle +70614 middlepassive +70617 active +70623 active +70626 active +70635 middlepassive +70639 active +passive +70642 active +70647 middlepassive +70651 active +70653 active +70657 active +70659 active +70663 active +70669 active +70676 active +70682 passive +passive +70686 active +70693 active +70695 middle +70700 active +70702 active +70704 active +active +70709 active +70716 active +70719 active +70722 active +70727 active +70729 active +active +70734 active +70736 active +70739 middle +active +70745 active +70750 active +70752 middle +70757 active +70760 active +70766 active +70770 active +70773 middle +70775 active +70779 active +70781 active +70784 active +70789 active +70792 active +70794 active +70797 active +70800 active +70806 active +70808 active +70811 middle +70817 active +70823 middle +70826 active +70844 passive +70848 middlepassive +70856 active +70862 middlepassive +70867 active +70880 active +70884 active +70889 active +70893 middle +active +70896 active +70899 active +70908 active +70916 active +70921 middle +70925 passive +70928 passive +70934 active +70940 active +70944 active +70946 active +70954 active +70957 middle +70960 active +70968 active +70973 active +active +70979 middle +70984 middle +70987 active +middle +70990 active +70992 middle +70997 active +71000 passive +71002 active +71010 passive +71016 active +71029 middle +71034 active +active +71037 active +71041 active +71046 active +71061 active +71064 active +71067 middle +71072 passive +71082 active +71087 active +71091 active +middle +71096 passive +71100 active +71105 active +71110 active +middlepassive +71115 passive +71118 passive +71122 middlepassive +71126 active +71129 middle +71132 active +71135 active +active +71138 middlepassive +71142 middle +71145 active +71148 active +71153 active +middle +71156 active +71158 active +71164 active +71167 active +71173 middlepassive +71177 passive +71184 passive +71188 middle +71195 active +71200 middle +71202 active +71206 active +active +71217 active +71222 active +71229 active +active +71232 middle +71242 middle +71244 active +71247 active +71251 active +71255 active +71259 active +71261 active +active +71267 active +71269 active +71271 active +71273 active +active +71277 active +71281 middlepassive +71284 active +71287 passive +71289 middlepassive +71294 active +71300 active +71304 active +passive +71307 middlepassive +71310 middle +71315 active +71323 middle +middlepassive +71332 middle +71334 active +71341 active +71343 passive +71351 passive +71356 active +71360 middle +71363 passive +71366 passive +71375 active +71381 active +middle +71390 active +active +71394 passive +71401 active +71404 active +71407 middle +71410 active +71419 middlepassive +71422 middlepassive +71426 active +71430 active +71434 middle +71440 active +71444 active +71447 middle +71452 middle +71460 active +71467 active +71476 active +active +71479 middlepassive +71482 passive +71489 active +71497 active +71508 active +active +71515 active +71521 active +71524 middle +71532 passive +71538 active +71540 active +71544 active +71549 active +71551 active +71555 middle +71558 active +71560 passive +71565 active +71572 active +71575 active +71582 active +71586 active +71592 active +71600 active +71604 active +71610 active +71623 passive +71625 active +71627 active +71630 active +71634 middle +71639 active +middlepassive +71644 passive +71651 active +71656 active +71663 passive +71665 active +71667 active +71671 active +71678 active +71686 middle +71693 active +71697 middle +71703 active +71705 active +71709 active +71711 active +71714 middle +71716 middle +71719 active +71721 middle +middlepassive +71727 active +71731 active +71739 passive +71744 active +71749 active +active +71752 active +71769 active +71772 active +71775 active +active +71778 active +71780 active +71788 active +71794 middle +71804 active +71807 active +71810 middle +71814 passive +71821 middle +71825 active +71831 active +passive +71838 active +71842 active +71845 active +71847 active +71856 active +71863 active +71866 active +71873 passive +71875 active +active +71880 middle +71883 passive +71886 active +71892 passive +71902 middle +71904 active +active +71919 passive +71925 active +71928 active +71932 passive +71941 active +71948 active +71956 middle +71958 active +71962 active +71964 active +71966 active +71969 active +71980 active +71984 passive +71989 middle +71992 active +72000 active +72008 active +72017 active +72020 active +72025 middle +72030 active +72039 active +active +72045 passive +72056 active +72060 active +72065 middle +72067 active +72073 passive +72075 active +72081 active +72085 active +72095 passive +72101 active +72104 active +72107 active +active +72112 middle +72117 passive +72122 active +72126 active +72138 active +72145 active +72151 active +72157 active +middle +72164 middle +72171 middle +72173 active +72178 active +72180 active +72187 active +active +72202 active +72208 active +72215 active +72222 active +72225 active +72228 middle +active +72233 active +72239 active +middle +72243 active +72247 active +72249 middlepassive +72253 active +72261 passive +72267 active +middlepassive +72280 active +active +72290 active +passive +72295 passive +72303 active +72307 middle +72310 active +72313 active +72318 active +72323 active +72325 active +active +72330 active +72338 active +72343 middle +72345 middle +72350 active +72353 active +72355 middle +72360 active +72363 active +active +72367 active +72370 active +72372 middlepassive +72377 active +72379 active +72381 active +72386 active +72393 active +72399 passive +72402 active +active +72408 active +72418 middle +active +72421 active +72424 active +72431 middle +72445 active +active +72456 passive +72460 active +passive +72463 middlepassive +72465 active +72471 active +active +72477 active +72486 active +72490 active +active +active +72502 active +middlepassive +72506 middlepassive +72508 active +72511 active +72514 active +72519 active +active +72522 active +active +72526 active +72528 active +72532 active +middle +72539 active +72544 active +active +72552 active +passive +72558 middle +72560 active +72571 middle +72574 active +72578 active +active +72582 active +passive +72585 active +72591 active +72593 active +active +72600 active +72604 active +72612 middle +72616 passive +72628 middle +72631 active +72635 active +72641 active +72649 active +72656 active +72662 middle +72664 active +72670 active +72672 passive +72677 active +72680 active +72683 active +72686 passive +72689 active +72694 active +72705 passive +72720 active +72725 active +active +72732 active +72742 middlepassive +72745 active +72747 middle +72749 active +72753 active +72757 passive +72762 active +72767 active +72771 middle +72774 active +72785 active +72790 active +72796 active +72806 active +72815 middle +72819 active +active +72826 middle +72833 passive +72837 active +active +72849 passive +72852 active +72855 active +72869 middle +active +72879 middle +72885 middle +72888 active +72895 active +72902 active +active +72908 active +72910 active +active +passive +72919 passive +72926 active +72933 active +72936 active +72941 active +72945 middle +72951 active +72959 active +72969 active +72974 active +72978 active +72987 active +72990 active +72992 active +72995 active +73000 middlepassive +73003 active +73010 middle +73017 active +73028 active +73036 active +73042 active +73048 active +73060 active +73066 middle +73069 active +73084 active +73086 active +73094 active +active +active +73107 active +73120 active +73125 active +73140 active +73144 active +73147 active +active +73150 active +73153 middle +middlepassive +73159 active +73165 active +73175 middlepassive +73184 passive +73187 active +73195 active +73205 passive +active +active +73212 active +middle +73215 passive +73219 active +73224 passive +active +73229 active +73235 active +73240 passive +73245 active +73254 active +73263 middle +73268 middle +73274 active +73278 active +73287 passive +73290 active +73294 active +73298 active +73303 active +active +73308 active +73310 active +73321 active +73323 active +73327 active +73334 active +73339 passive +73341 passive +73347 active +73353 active +73355 active +73359 active +73369 passive +73375 passive +73379 passive +73384 active +passive +73387 active +73389 active +73391 passive +73395 active +73399 active +73401 passive +73404 middlepassive +73414 active +73417 middlepassive +73420 active +73422 active +73427 passive +73433 passive +73436 active +73442 middlepassive +73450 active +73452 active +73454 active +73461 middlepassive +73467 passive +active +73476 active +73479 passive +73482 active +73486 passive +active +73489 middle +73495 active +active +73500 passive +73506 middlepassive +73510 active +73516 middle +passive +73523 middlepassive +73527 active +73533 active +73542 active +73545 active +73547 active +73553 active +73555 active +passive +73561 passive +73573 active +73575 middlepassive +73585 active +73593 active +73601 middle +73608 active +73614 passive +73620 middle +73626 active +73634 active +73637 active +73646 active +73648 active +73650 active +73662 active +middlepassive +73668 active +73675 active +73679 middlepassive +73685 passive +73693 active +73704 middle +73715 active +73717 active +73719 active +active +73733 middle +active +73743 middlepassive +73751 active +73753 active +73756 active +73758 active +73761 active +73763 active +73766 passive +active +73770 active +73777 middle +73779 active +73783 active +73785 active +73787 active +73792 active +73795 passive +73797 active +73801 active +73811 active +73813 middlepassive +73822 active +73832 active +73836 active +active +73839 active +73845 active +73849 active +73853 active +73855 active +73859 active +73865 active +middle +73872 active +73875 active +73877 active +73894 middlepassive +73896 active +73900 middlepassive +73908 active +active +73913 active +73917 active +73926 active +73928 active +73933 active +73936 active +73943 active +73947 active +73950 active +73954 active +73956 active +73958 active +73962 active +active +73970 active +73977 middle +73982 active +73984 active +73994 active +73999 active +active +74005 active +74010 active +74017 active +74022 middle +74025 middle +74031 active +74033 active +74036 active +74041 active +74046 active +74050 active +74054 active +passive +74064 active +74066 middle +74068 active +74071 active +74073 active +74080 active +74086 active +74095 active +74099 active +74105 passive +74111 middlepassive +passive +74114 middle +74127 active +active +74151 passive +74155 middlepassive +74161 middlepassive +74167 active +74174 middle +74177 passive +74188 active +74192 active +74196 active +74204 active +active +74207 active +active +74211 active +active +74217 passive +74223 active +74231 middle +active +74234 active +74240 middlepassive +74247 middle +74254 active +74262 active +74267 active +74269 active +74279 active +74287 active +74294 active +74297 active +74305 active +74312 active +74314 active +74321 passive +74327 active +74332 active +74336 middlepassive +74341 active +74352 active +74354 middle +74356 active +74359 active +74362 middle +74367 middle +active +74377 active +74383 passive +74386 active +74388 active +74393 active +74396 passive +74398 active +74400 active +74404 active +74417 passive +74423 active +74425 active +74432 active +74434 active +74439 active +74444 active +74447 middle +74468 active +74470 active +74477 passive +74479 active +74489 middle +74493 active +74503 passive +74508 middlepassive +74512 active +74534 active +74536 active +74541 active +74544 active +74550 middle +active +74553 middle +74555 middle +74557 active +74568 active +74581 active +74589 active +74593 active +74603 middle +74609 middle +74619 active +74622 active +passive +74627 passive +active +74632 active +74635 active +74639 active +passive +74651 active +74655 active +74659 active +74661 active +74663 passive +74671 active +74677 active +74680 active +74682 middle +74695 active +74700 active +middle +74709 active +74715 active +74718 middlepassive +active +74724 passive +74728 active +74730 active +74737 active +74743 active +74746 middle +74749 passive +74756 active +74759 active +74764 middle +74766 active +passive +74776 middlepassive +74781 active +74785 active +74793 middle +active +74808 passive +74816 active +74822 active +74824 active +active +74831 active +74837 active +74844 active +74847 middlepassive +74850 active +74852 active +74856 passive +74869 passive +74873 active +74879 active +74885 passive +74890 active +74897 active +74901 active +74905 passive +74908 active +74914 active +74917 active +74926 passive +74930 active +active +74933 active +74936 active +active +74940 active +74946 active +74948 active +active +74952 active +74954 middlepassive +74958 middle +74961 passive +74964 active +74969 active +74977 active +74985 active +active +74998 active +75006 active +active +75009 active +active +75012 active +75022 middlepassive +75025 active +75031 active +active +75034 passive +75039 passive +75044 active +active +75047 active +75052 active +active +75058 active +75060 middle +75063 middle +middlepassive +75071 active +75074 active +75079 active +75083 middlepassive +75085 active +75090 active +active +75100 active +75102 active +75108 active +75114 passive +75116 active +75119 active +active +75126 active +75130 active +75138 active +75140 active +75146 middle +75152 active +75160 active +75164 active +75168 active +75173 active +75175 active +75178 middlepassive +75180 active +75182 active +75185 active +75187 active +75195 active +75199 active +active +75202 active +75206 active +75209 active +75213 active +75218 active +active +75229 middle +75240 middlepassive +active +75245 middlepassive +75253 middle +75255 passive +75261 passive +75270 passive +75275 middle +75277 active +passive +75283 middle +75286 active +75288 active +active +active +75294 active +75298 active +75301 active +75305 active +75308 active +75310 active +75313 middle +active +75320 active +75323 active +75327 active +active +75330 passive +75333 active +active +75340 passive +75347 active +75361 active +75369 active +75374 passive +75382 active +75387 active +75390 middle +75392 active +75397 middle +active +75403 active +active +75409 active +75419 active +75423 passive +75426 active +middlepassive +75433 active +75436 active +75442 active +active +75450 active +75454 active +75457 active +75459 active +75468 passive +active +75472 active +75474 active +active +75478 active +active +active +75485 active +75489 active +75494 active +active +75499 active +75501 active +75507 active +75511 active +75518 active +75521 active +75528 middle +75533 active +75535 middle +75537 active +75540 active +75542 active +75548 active +75555 active +75561 passive +75563 passive +75571 middlepassive +75584 active +75586 middle +75593 active +active +75598 active +75602 active +75604 active +75610 active +75612 active +75620 active +75625 active +75629 active +75631 middlepassive +75640 active +75643 active +75645 active +75647 active +75653 active +75656 active +75665 active +75673 active +75683 middle +75689 active +75692 active +75698 middle +75707 active +75711 active +75719 active +75732 active +75743 passive +75751 active +75753 active +75755 active +75763 active +75766 middlepassive +75772 active +75782 active +75785 active +75789 active +75800 active +75803 active +75808 middlepassive +75812 passive +75818 active +75820 active +75825 middlepassive +75833 middlepassive +75843 active +75852 active +75856 active +75858 active +75863 active +75866 active +75870 active +75877 middle +75879 middle +75885 active +active +middlepassive +active +75896 passive +75899 active +75901 active +75907 middlepassive +active +75910 active +active +75918 active +75923 active +75925 active +75928 active +75932 passive +75939 active +75947 active +75949 middlepassive +75951 active +75955 active +75960 passive +75965 active +active +75969 active +75974 active +75987 active +75992 active +75997 passive +middlepassive +76001 active +76010 active +76016 active +76022 active +passive +76031 active +76037 active +76040 active +76049 active +76053 active +76055 passive +76057 active +76065 active +76070 active +76072 active +76077 active +active +76091 active +76099 active +76104 active +76109 active +76111 active +76115 active +active +76124 active +76126 active +76128 active +76133 active +76138 active +76141 active +middle +76151 active +76158 passive +76160 active +76177 passive +76181 active +76185 active +76194 active +76204 active +76206 passive +76213 active +76219 active +active +76224 middlepassive +76226 active +76231 middlepassive +76238 active +76245 active +76255 passive +76260 middlepassive +76263 active +76268 middle +76271 active +middle +76275 active +76293 middle +76295 active +76297 active +76304 middlepassive +76310 active +active +76318 active +76330 active +active +76333 passive +76335 active +76345 middlepassive +76347 active +76350 active +76353 active +76358 middle +76361 active +76366 active +76373 active +76378 active +76387 active +76391 active +76398 active +76403 active +76408 active +76412 middlepassive +76416 active +76419 active +76422 active +76430 active +76441 middle +76445 active +76456 middle +76459 middlepassive +76463 active +76465 active +76472 middle +76476 active +76485 active +76490 active +76495 middle +active +76506 middle +76512 active +76515 active +76519 active +76523 active +76527 middle +76531 active +76536 active +76538 active +76540 middle +76542 active +76544 active +76549 active +passive +76555 active +76558 active +76560 middle +76563 active +76567 active +76570 active +middlepassive +76578 active +76593 active +76597 active +76601 active +passive +76608 active +76611 active +76613 active +76619 middlepassive +76626 middle +middlepassive +76632 active +76637 middle +76642 middle +76648 middlepassive +76650 active +76654 middle +76657 active +76660 middle +76663 middle +middle +76667 active +76675 middlepassive +76677 active +76681 active +76686 middle +76691 active +76695 active +76699 active +76703 active +76707 active +76713 active +active +76721 active +76725 active +76727 active +76731 passive +76734 active +76740 active +76743 active +76748 active +76750 active +76753 middlepassive +76757 active +76762 active +passive +76771 active +76776 active +76784 active +76787 active +76789 active +76796 active +76800 middlepassive +76804 middlepassive +76806 active +76815 passive +76817 active +active +76824 active +76827 active +76832 middlepassive +76839 middle +76846 active +76849 active +76862 active +76865 active +76874 active +passive +76884 passive +76894 middlepassive +76896 active +76900 middlepassive +76903 active +76906 active +76916 active +active +76923 active +76932 active +active +76935 passive +76940 active +76944 active +76948 middlepassive +76952 active +76954 middle +76961 active +76966 active +76968 active +76974 passive +active +76982 middle +76990 active +76994 active +77000 passive +77009 active +middlepassive +middle +77013 active +77022 active +active +77026 active +77030 active +77035 active +77046 active +77048 active +77051 passive +77053 middle +77059 active +77064 middlepassive +77067 active +77071 middle +77074 active +77078 active +77080 active +77086 active +77092 active +77098 middle +77114 active +77118 middle +77131 active +active +77134 middlepassive +77143 active +77145 active +77147 active +77160 active +active +77164 active +77167 active +77172 middlepassive +77177 active +77183 active +77194 passive +77196 active +77198 passive +77209 middlepassive +77211 active +77213 middle +77216 active +active +77223 passive +77229 active +77234 active +77243 middlepassive +active +77249 active +77258 active +77261 active +77264 active +77266 active +77276 active +77280 active +passive +77286 active +77289 active +77294 active +77296 active +77303 active +77306 active +middlepassive +77311 active +77314 active +77317 middle +77324 active +77332 active +77335 active +77341 active +77344 active +77348 active +77358 active +77360 active +active +77363 passive +active +77368 active +77370 active +77377 active +77390 active +77395 passive +77398 active +active +77405 active +77410 passive +77413 active +passive +77421 active +77425 middle +active +77434 active +active +77441 middle +77446 middle +77450 active +middle +active +middlepassive +77457 active +77462 active +77466 active +77471 active +77474 middle +77480 active +passive +77485 middle +77488 active +77492 middlepassive +77514 active +active +77521 active +77530 active +77540 active +77549 passive +77551 active +77555 middlepassive +77557 active +active +77562 active +77568 active +77575 active +passive +77582 middlepassive +77586 passive +77589 middlepassive +77594 passive +77598 active +77604 passive +77607 active +77610 active +77613 active +active +77616 passive +77623 active +77625 active +77627 active +77631 middle +77635 active +77639 active +77641 active +77644 active +77646 passive +77651 active +77655 passive +77660 active +active +77666 passive +active +active +77670 active +77673 active +77678 active +77680 active +77684 active +77686 active +active +77693 active +77698 passive +active +77703 active +77706 active +77711 middle +77713 active +77718 active +77721 active +77727 middle +77734 active +77737 middle +77744 middle +77747 active +77750 middlepassive +77756 active +77766 middle +active +77778 active +77786 middle +77789 active +77792 active +77795 active +77801 middlepassive +77819 middle +passive +77824 middlepassive +77830 active +77833 active +77842 middlepassive +77844 active +77850 active +77854 middle +77860 active +77868 active +77873 middle +77882 middle +77884 active +77887 middle +77895 active +active +77900 middlepassive +77908 active +77915 middle +77918 active +77925 active +77938 middle +77940 active +77946 middle +77953 active +77955 middle +77965 middlepassive +77972 middle +77974 active +passive +77977 active +77983 active +active +77991 middle +77994 active +78000 middle +78011 middlepassive +active +78014 active +78019 passive +78027 active +78029 active +78036 active +78039 active +78044 active +78048 active +active +middlepassive +78052 active +78054 active +78062 active +78064 active +78066 active +78068 active +78071 active +active +78079 middle +78082 middle +78086 active +78092 active +78094 passive +78100 active +78103 active +78107 active +78109 active +78116 middle +passive +78119 passive +78122 active +active +78137 active +78139 active +78142 active +passive +78145 active +78149 active +78152 active +78156 active +78163 active +middlepassive +78168 active +78171 active +78178 active +78183 active +78188 middle +active +78193 active +middlepassive +active +78207 active +78213 middle +middle +78217 active +78223 active +78231 active +78234 active +78238 middle +78241 active +78249 active +active +78254 active +78261 active +78265 active +78270 active +78274 active +78276 active +78279 active +78288 active +78292 active +78297 active +78304 active +78306 active +78314 active +78319 active +78325 active +78331 active +78333 active +78341 active +78346 middle +78350 active +active +78353 active +78361 passive +78364 active +78368 active +78377 passive +78379 active +active +78385 middlepassive +78391 middle +active +78396 active +78404 active +78407 passive +78414 middle +78419 middle +78425 active +active +78434 middle +78439 middle +78441 middlepassive +78446 active +78458 active +active +78463 active +78465 active +78470 active +active +78480 active +78482 passive +78486 active +78496 active +78498 active +78505 active +78508 active +78510 middle +78512 active +78515 active +78518 active +active +78524 active +78528 active +passive +78533 active +78537 middle +78541 middle +78545 passive +78549 active +78551 active +78554 active +78560 active +78563 active +active +middle +78579 active +78583 passive +78587 passive +active +78592 active +78601 passive +78610 active +78614 passive +78620 middle +78625 active +78630 active +78635 active +78638 active +78640 active +78656 active +78661 active +78666 active +78672 active +active +78682 active +78688 active +78692 passive +78697 middle +78702 middle +78705 active +78712 passive +78716 active +78718 active +active +78728 passive +78731 active +78735 active +78740 active +78746 middle +active +78751 active +78754 middle +78757 active +passive +78762 middlepassive +78764 active +78767 active +active +78773 active +78779 middlepassive +78781 active +78787 active +passive +78795 middle +78799 active +passive +78811 active +78816 active +active +78820 active +passive +78827 active +78831 active +78833 active +78839 active +78841 active +78845 active +78853 active +78855 active +78865 active +78870 active +78881 middlepassive +78883 active +78885 active +78890 active +78894 active +78898 active +78906 middle +active +78911 active +78916 active +78924 active +78929 active +78932 active +78935 active +78937 active +78940 passive +78946 passive +78955 passive +78961 active +78968 active +78974 active +78977 active +78979 active +78990 active +79000 middle +79006 middlepassive +active +79011 active +passive +79016 passive +79018 middle +79020 middlepassive +79022 active +79031 active +79037 active +79042 active +79044 active +79050 active +79053 middle +79055 active +79058 active +79062 active +79068 active +79074 active +79077 middle +79080 active +79084 active +79087 active +79089 active +79094 active +79097 active +middlepassive +79103 passive +79107 active +passive +79113 active +79120 passive +79123 active +79125 active +79136 passive +79140 active +79142 active +79146 active +active +79151 active +79156 active +79161 active +79167 middle +79169 active +79174 active +79178 active +79185 middle +79192 active +79194 active +79198 active +active +middle +79202 middle +79206 middle +79211 middle +79213 active +79217 middlepassive +79222 middle +79227 active +79229 active +79231 active +79233 active +79240 middlepassive +79246 active +79249 middlepassive +79252 middle +active +79255 active +79260 active +79265 passive +79274 middle +active +79277 active +79279 active +79283 active +79286 active +79289 middlepassive +79295 active +79298 active +79305 active +79309 active +active +79318 active +79320 active +79322 active +79325 active +79330 active +79334 active +79337 passive +79342 active +79344 passive +79347 active +79352 active +79356 active +79360 active +79363 active +79372 active +active +79376 active +79379 active +79382 active +active +active +79386 active +79392 active +79394 active +79397 active +79399 active +79403 active +79406 active +79409 middle +79418 middle +79422 active +79426 passive +79429 active +79433 active +79435 active +79440 passive +active +79444 active +79448 active +active +79453 middlepassive +active +79459 passive +79463 active +79466 active +active +79475 active +79478 active +79484 active +79487 active +79494 passive +79505 active +79507 active +79509 active +79518 active +active +79521 active +79525 passive +79528 middlepassive +active +79535 active +active +79538 passive +79541 active +active +79547 active +79549 active +79553 active +79556 active +79559 passive +79566 active +79571 active +79576 active +79582 active +79590 active +79598 passive +79602 active +middle +79610 passive +79615 active +79617 active +79625 active +79629 middle +79633 active +79641 middlepassive +active +79645 active +79653 active +79660 middlepassive +79663 passive +79665 passive +79670 active +79673 active +active +79680 active +79686 active +79688 active +79692 active +active +79696 middle +79703 active +79708 active +79710 middle +79712 active +79716 active +79718 active +79720 active +79722 active +79725 active +79729 active +79736 middle +79738 active +79744 active +79746 active +79749 middle +79752 active +79758 active +79765 active +79770 active +active +79780 active +79783 active +79785 active +79793 active +79796 middle +79798 active +79802 active +79808 middle +79812 active +79816 active +79821 active +active +79828 active +79830 active +79835 active +79839 middle +79841 active +79845 active +79848 active +79850 active +79855 middle +79860 active +79863 middlepassive +79865 active +79867 active +79869 active +79871 active +79875 middle +79877 active +79883 active +79888 active +79891 middlepassive +79897 passive +79900 active +79908 active +79911 active +79913 active +79916 active +79920 active +79922 middlepassive +79931 active +79934 active +79936 active +79939 active +79943 middle +79948 active +active +79959 passive +79969 active +79971 active +79974 active +79979 active +79981 active +79991 active +79995 passive +80000 active +passive +80004 active +80008 middle +active +80012 active +80014 middlepassive +active +80020 active +80022 active +80027 active +80029 passive +80042 active +80044 passive +80050 middle +80052 active +80055 active +80059 active +80070 passive +80072 active +80075 active +80084 active +80087 middlepassive +80090 active +80095 active +80100 active +80105 active +80111 active +80113 active +80117 active +80119 middle +80123 active +middle +80131 middle +active +80138 middle +80144 active +80156 active +80163 passive +80165 middle +active +80169 active +80172 active +80177 middlepassive +80189 middlepassive +80201 active +active +active +80211 active +80217 active +80236 active +active +80240 active +80243 middle +80245 active +80249 active +80252 active +80255 middle +80259 active +80262 active +80264 middle +80267 active +80271 active +80275 active +80281 middlepassive +80286 middlepassive +middlepassive +80289 active +80293 active +80299 active +active +80304 active +80308 middlepassive +80312 active +80326 middlepassive +active +80332 active +80335 active +80343 active +80346 active +80350 active +80361 passive +active +80371 middlepassive +active +middle +80383 active +80386 active +80400 active +80405 middle +80410 active +80412 passive +80431 active +80433 active +active +80437 active +80443 active +80446 active +active +80458 active +80461 active +80467 passive +80472 middle +80477 active +80482 active +80487 active +middle +80492 middle +80495 passive +80498 active +80501 active +80506 active +80514 middle +80520 active +80522 middle +80526 active +80535 middlepassive +80545 active +80547 middle +80550 middle +80553 active +middlepassive +80557 active +middle +80562 active +80565 passive +80574 middle +active +80579 passive +active +80587 active +80589 middle +80594 active +80597 passive +80600 active +80606 active +80612 active +80625 active +80627 middle +80632 middle +80637 active +active +80647 middle +passive +80655 active +80658 middlepassive +80660 active +80665 active +active +80671 active +80676 active +80685 active +80690 active +80694 active +80697 passive +80699 middle +80701 active +80706 active +80712 active +80714 active +80716 active +80719 middlepassive +80735 active +80739 active +80743 middle +passive +80747 active +active +80751 active +80755 passive +80759 active +80766 active +active +80770 passive +active +80774 active +80779 active +80783 active +80788 active +80790 middlepassive +80792 active +80796 active +80799 active +80802 middlepassive +80805 middle +80807 middle +80811 active +80815 middle +80817 middle +80820 middle +80824 middle +80830 active +80833 middle +80840 active +80846 middle +80851 active +80854 active +passive +80861 middle +80865 active +80873 middle +80879 middle +80882 active +80885 middlepassive +80891 passive +80894 active +80900 active +80905 active +80909 middle +80912 active +80916 active +passive +80922 passive +80925 active +80930 active +80939 active +80946 active +80948 active +active +80954 middle +80959 active +80961 middlepassive +middlepassive +80966 passive +80972 middle +passive +80980 active +passive +80985 active +80994 middlepassive +80999 active +active +81002 middle +81007 active +81017 active +81032 active +81035 passive +81039 active +81047 active +81050 active +81059 active +81066 active +81068 active +81070 active +81074 middle +81079 active +81083 middle +81086 active +active +81092 active +81096 active +81098 active +81111 middle +active +81114 active +81118 active +active +81127 active +81133 active +passive +81138 active +81142 active +81145 middlepassive +81151 passive +81154 middlepassive +81160 middlepassive +active +81163 active +81175 middlepassive +81177 active +81189 middle +81197 active +81200 active +81204 active +active +81214 active +81225 middle +81230 active +passive +81234 active +81243 active +active +81248 passive +81254 passive +81261 active +81265 active +81267 active +81276 active +81279 active +81290 active +81296 active +81298 passive +81300 active +81308 active +81310 active +active +81314 middlepassive +81316 active +81325 middlepassive +81341 active +81348 active +81355 middlepassive +81360 active +81364 active +81366 active +81376 active +81381 active +81384 active +81386 active +81391 active +81393 active +81397 active +81399 active +81401 active +81409 passive +81411 middle +81418 active +81422 passive +81424 middle +81436 active +81438 active +81442 active +81456 active +81464 passive +81473 middle +81495 active +active +81498 active +81506 active +81511 middle +81515 middlepassive +middle +81518 active +81528 active +middlepassive +81535 active +81538 active +middlepassive +81545 active +81555 active +81557 active +81567 middlepassive +81573 active +middlepassive +81582 active +81586 active +81590 middlepassive +81596 middlepassive +81598 middlepassive +81606 middlepassive +active +81609 active +81613 passive +81617 active +passive +81624 active +81627 active +81629 active +81639 active +81641 active +81646 middle +81662 active +81665 middle +81670 active +81675 active +81687 middlepassive +81690 active +active +81694 active +81701 active +81709 active +passive +middlepassive +81717 middle +81721 passive +81723 active +81728 active +81742 active +81745 active +active +81753 passive +active +81763 passive +81772 middle +active +81777 passive +81779 active +81781 passive +active +81789 active +81800 active +active +81809 active +81812 active +81816 active +81824 active +81827 middle +81832 active +81836 active +81843 middlepassive +81845 active +81849 passive +81856 active +81860 middle +81862 active +81873 active +active +81877 active +81880 active +81899 middle +active +81912 passive +81917 passive +81922 active +81927 middle +81929 passive +81933 middlepassive +active +81940 active +81946 active +81948 active +81950 active +81953 active +active +81956 middlepassive +81963 active +81969 passive +81972 passive +81977 middlepassive +active +81981 active +passive +81984 active +81987 passive +81989 active +81992 middle +81996 active +81998 middlepassive +active +82003 middlepassive +82008 active +active +82013 passive +82016 passive +82021 middle +82030 active +82036 active +82044 middlepassive +82046 passive +82050 passive +82055 active +82057 passive +82063 active +82067 active +active +82071 passive +82076 active +82086 active +82088 active +82093 middle +82100 active +82108 active +82111 active +82113 active +82115 middlepassive +82119 active +active +82122 middle +middlepassive +82129 active +82133 active +82136 active +82141 middle +82145 passive +82148 active +82153 active +82158 middle +passive +82168 active +82171 active +82176 active +active +82182 active +82185 active +active +82190 middlepassive +82196 active +82199 active +82202 middlepassive +82204 middle +82208 active +active +82214 active +82225 active +active +active +82238 active +82243 passive +82245 middlepassive +82247 active +82255 active +82257 active +82262 active +middlepassive +active +82268 active +82270 active +82274 active +82276 active +82278 middle +82280 active +82282 active +82290 active +82298 middle +82300 active +82303 active +82305 active +82311 active +middle +active +82316 middle +82320 middle +82323 middle +82334 passive +82336 active +82339 middle +82348 middle +82352 active +82354 active +82357 active +82361 active +82364 middlepassive +82366 middlepassive +82370 active +active +82376 active +82382 active +82386 active +active +82392 active +82396 active +82403 active +active +82409 passive +82417 middle +82421 active +82424 active +active +82429 middlepassive +active +82433 active +82438 active +82440 middlepassive +active +active +82447 active +82465 middle +82467 passive +82472 passive +82474 active +82479 passive +82483 active +82486 active +82490 active +82492 middle +82499 active +82505 active +82512 active +82520 active +active +82527 active +82530 middle +82539 active +82542 active +82547 passive +82551 active +82555 active +82559 active +82565 active +82570 active +82572 active +passive +82575 active +82582 active +82584 active +82589 middlepassive +middle +active +82593 active +82602 active +82611 middle +82616 active +82618 middle +82626 passive +middlepassive +82630 active +82632 middle +82635 active +82639 middle +82643 middle +82651 active +82653 middlepassive +82655 passive +82660 active +82663 passive +middle +82673 passive +82676 active +82684 passive +82687 active +82691 active +active +82699 middle +82702 active +82706 active +82708 passive +82711 active +82719 active +82723 active +82727 active +82738 active +82741 active +82744 active +82748 active +82751 passive +82754 active +82759 active +82763 middle +82767 middle +82770 active +82775 active +82777 active +82785 active +82796 passive +82803 active +82805 middlepassive +active +82812 active +82816 active +82819 passive +middle +82828 active +active +82835 active +82837 active +82839 active +82849 middlepassive +82854 active +82860 middle +82865 middle +82869 active +82871 active +82877 active +82880 active +82882 active +82891 active +82894 passive +82896 middle +82899 active +82907 middle +middlepassive +82914 active +82934 passive +82936 passive +82939 active +82942 active +82945 middle +active +82957 active +82966 active +passive +82973 active +82975 active +82979 active +82981 active +active +82986 active +82988 passive +82998 active +83003 active +83006 active +83012 active +83016 active +83018 active +83020 middle +83024 active +83029 passive +83037 middle +83039 active +83046 middlepassive +83049 middlepassive +83052 active +83058 active +83075 passive +83080 middle +83093 middle +83100 passive +83118 active +83135 active +83143 active +83164 active +83178 passive +83186 active +83190 active +83205 middle +83211 middlepassive +83216 passive +83222 active +83226 active +active +83230 active +83237 passive +83241 active +passive +83257 active +83259 active +83262 middle +active +83267 passive +83274 active +83293 active +83304 middle +83307 middlepassive +83313 active +83318 active +83329 passive +83335 passive +83341 middle +83343 passive +83359 active +83366 active +83373 active +83390 passive +passive +83394 active +83398 active +83404 active +83406 active +83408 passive +83414 passive +83419 active +active +83422 passive +83424 active +83442 active +83455 middlepassive +83462 active +83471 middle +83473 active +83478 active +83480 active +83488 active +83500 active +83513 active +83519 passive +83531 middlepassive +83536 active +83542 active +83546 active +83549 active +83552 active +83559 active +83562 active +passive +83594 active +83599 active +83602 active +83606 active +83609 active +83611 active +83614 active +83619 active +83623 active +83627 active +83631 active +83633 active +83635 active +83641 active +83648 active +83650 middlepassive +83655 active +83659 active +83661 active +83665 middle +83682 active +active +83692 active +83701 active +83713 active +83730 active +83738 active +83742 middle +83756 middlepassive +83772 middlepassive +83782 active +83790 active +83793 middle +83798 active +83801 passive +83815 passive +83822 active +83827 active +83831 active +83833 active +83836 middle +83846 active +83855 active +83858 middlepassive +83862 active +83880 passive +83882 middlepassive +83885 middlepassive +83889 active +83893 active +83895 active +passive +83901 active +83903 active +83914 active +83927 active +83931 active +83933 active +83935 active +active +83938 active +83940 active +active +83943 middlepassive +83946 active +83950 middlepassive +83958 active +83966 passive +83971 passive +83975 active +83978 active +83983 active +83988 active +83997 active +84004 passive +84006 active +84013 active +84029 active +84081 passive +84089 active +84099 active +84101 middle +84103 middlepassive +84112 passive +84115 passive +84121 active +84124 passive +84133 active +84135 active +84141 active +84146 active +84148 middle +84151 active +84166 active +84176 passive +84180 passive +84183 active +84186 active +84188 active +84192 active +84199 active +84202 middlepassive +84206 middle +84214 active +84216 passive +84219 active +84224 active +84226 active +84228 active +84230 active +84234 active +84236 passive +84238 active +84240 active +84243 active +84247 passive +84254 active +84267 active +84272 active +84285 active +84287 active +84295 active +84300 active +84305 active +84309 passive +84312 middle +84323 passive +84339 passive +passive +84357 active +84360 active +84364 active +84366 passive +84371 passive +84384 middle +84403 active +84422 active +84426 active +84435 passive +84447 middlepassive +passive +84470 active +84481 active +84486 middle +84489 active +84491 active +84493 active +84505 passive +active +84516 active +84518 active +84523 passive +84529 middlepassive +84532 middlepassive +84542 middlepassive +84544 active +84547 active +84550 middlepassive +84559 active +84567 middlepassive +84575 passive +84580 passive +84586 middle +84602 active +passive +84612 passive +active +84626 active +84640 active +84645 active +84650 passive +84665 active +84686 active +84703 passive +84707 passive +84714 middlepassive +84718 active +84731 active +84751 active +84757 active +84760 active +84764 active +84767 active +84769 active +84771 passive +84776 active +84783 active +84786 middle +84793 passive +84795 middle +84801 active +84804 active +84808 passive +84811 active +84825 passive +84829 passive +84832 active +84837 passive +84839 active +84842 middlepassive +84844 active +84847 passive +84853 passive +84858 passive +84865 passive +active +84868 active +84871 active +84879 passive +84885 passive +84891 passive +84895 active +84910 active +84919 active +84921 middlepassive +84933 middlepassive +84937 active +84942 middlepassive +84955 active +84961 passive +84970 passive +84975 active +84983 active +84989 middle +84997 active +active +85000 active +85011 active +85016 active +85020 passive +85026 passive +85035 active +passive +85047 passive +passive +85058 middlepassive +85073 active +85085 active +85099 active +85103 active +85108 active +85114 passive +85116 active +85119 active +85130 active +85138 active +85141 active +85159 active +85180 active +85186 active +85213 active +85229 active +85232 active +85269 passive +85280 passive +85285 active +85287 active +85292 active +85295 active +85300 active +85310 active +85324 active +active +85331 active +85333 middle +85335 active +85340 active +85344 active +85347 passive +85355 passive +85357 passive +85367 passive +85382 active +85386 active +85396 middle +85398 active +85404 passive +85406 passive +85413 active +85419 active +passive +85426 active +85429 active +85432 active +85434 active +85437 passive +85441 active +85445 active +85448 active +85451 active +85455 active +active +85462 middlepassive +85464 active +85470 active +85478 active +85488 active +85493 active +85502 active +85509 active +85522 active +85525 active +85533 active +85536 active +85543 middle +85545 active +85548 active +85554 active +85556 active +85570 active +85575 active +85580 passive +85584 passive +85588 passive +85592 active +85601 active +85616 active +85630 active +85632 active +85638 active +85643 middlepassive +85651 passive +85656 passive +85659 active +85691 active +85693 active +85695 active +85699 active +85705 active +85711 active +85713 passive +85717 active +85720 passive +85728 active +85732 active +85734 middle +85739 active +85743 active +85749 active +85752 middle +85760 passive +85770 middle +85776 passive +85778 active +85783 active +85795 middle +85802 active +85807 passive +85811 active +85814 passive +85816 active +85827 active +85832 middle +85837 active +85847 active +85852 active +85854 active +85857 active +85863 middle +85875 active +85880 active +85885 active +85888 active +85890 passive +85904 active +85908 active +85913 active +85931 middle +85934 middle +85939 passive +85945 middlepassive +85948 middle +85958 active +85963 active +85967 active +passive +85974 middlepassive +85976 active +85980 active +85982 active +85985 active +85987 active +85992 active +85994 active +active +86004 middlepassive +86008 active +86013 active +86016 active +86020 active +86028 active +middlepassive +86033 middlepassive +86040 active +86042 active +86046 active +86049 active +86054 active +86057 active +86060 middlepassive +86064 active +86069 active +86074 active +active +86082 middlepassive +86084 middlepassive +86094 active +86101 middlepassive +86108 active +86116 active +86126 middle +86149 active +86175 active +86192 active +86201 active +86209 active +86220 passive +86224 active +86235 active +86239 active +86275 passive +86278 middlepassive +86283 active +86285 active +86287 middlepassive +86290 active +86300 active +86309 active +86312 active +86336 active +86341 active +86345 active +86350 active +86358 active +86367 active +86374 active +86379 active +active +active +86389 active +middle +86395 passive +86399 active +86402 active +86409 active +86414 active +86421 active +86426 active +86441 active +86444 passive +86446 middlepassive +86457 active +passive +86473 middlepassive +86479 passive +86485 active +86493 passive +86509 active +86514 active +86516 active +86530 active +86536 active +middlepassive +86547 passive +86550 passive +86552 active +86556 active +86559 active +86564 active +active +86568 middlepassive +86574 middlepassive +86581 middle +86583 active +86585 active +86590 active +86595 active +86598 active +86607 active +86611 active +86614 active +86618 active +86625 active +86628 active +86630 active +86639 active +86647 active +86650 active +86653 active +86656 active +86659 active +86662 active +86665 active +86682 middle +86687 active +86697 middle +86699 active +86705 active +86708 active +86712 active +86715 passive +86717 active +86724 active +86729 active +86749 passive +86753 passive +86757 passive +86765 active +86768 active +86771 passive +86782 active +86784 active +86795 middle +86797 active +86811 active +86815 middlepassive +active +86827 active +86836 middlepassive +86840 active +86854 active +86886 active +86899 active +86914 active +86922 passive +86926 active +86941 middlepassive +86953 middle +86955 middle +86966 active +86975 passive +86977 active +86989 active +86996 active +passive +87002 active +87006 passive +87009 active +87013 active +87016 active +87023 middle +87027 active +active +87031 active +87033 active +87036 active +87041 active +87044 active +87047 active +87050 active +87059 active +87062 middle +87070 passive +87081 active +active +87085 active +active +87088 active +87092 middlepassive +87098 active +87103 active +87106 middlepassive +87110 active +87114 active +87117 active +87121 active +87131 active +87145 active +middle +87150 active +87154 active +87160 passive +87165 active +87175 active +87180 active +87195 active +active +87206 passive +passive +87209 middle +87214 passive +87221 passive +87224 active +87227 active +87232 active +87245 passive +87248 active +87250 active +active +87258 active +87264 active +87270 passive +87275 passive +87278 active +87283 active +87285 active +87294 active +87300 active +87311 active +87317 passive +middle +active +87329 active +87333 passive +87352 active +87357 active +87363 active +87371 active +active +87378 passive +87387 active +87390 active +87398 active +87400 middle +87409 active +87411 active +87417 middle +87422 active +87424 active +87427 middle +87432 active +87436 active +87439 active +87444 active +87455 active +87461 active +87464 active +87472 active +87481 active +87484 passive +87487 passive +87492 passive +87496 active +87501 active +87505 passive +87508 active +87519 active +87523 middle +87529 middle +87533 passive +87536 middle +87540 active +87543 active +87546 active +87549 active +87551 active +87554 active +87557 passive +87559 passive +87565 middle +87570 active +87575 active +87578 active +87594 active +87597 active +87603 active +87617 active +87621 active +87624 active +87626 active +87634 active +87638 active +87640 active +passive +87645 active +87647 middle +87651 active +87656 active +87660 active +87666 active +87668 active +87670 active +87672 middle +87679 middle +87684 active +87691 middle +87698 active +87701 active +87705 active +87709 active +87719 active +87723 active +87725 passive +87728 active +87734 active +87738 active +87744 active +87759 active +87770 middlepassive +87775 active +87779 active +87783 active +87787 passive +87789 passive +active +87799 active +87804 active +87811 active +passive +87828 passive +87834 active +87841 active +87843 active +87845 active +87847 active +87849 middle +87860 active +87881 active +87889 active +87896 active +87899 active +87904 active +87944 passive +87948 active +passive +87960 middle +87962 middlepassive +87967 middlepassive +87972 active +87978 active +passive +87983 passive +87987 passive +87992 active +87995 active +87997 middlepassive +88007 middle +88010 middle +88012 active +88020 active +88028 active +88034 passive +88039 active +88042 passive +88045 active +88049 active +88059 passive +88063 passive +88072 passive +88079 active +88081 active +88087 active +88097 active +88104 active +88109 passive +88111 passive +active +88116 middlepassive +active +88129 middle +88161 active +88166 passive +88174 active +88182 passive +88184 active +88194 active +88215 active +88222 middle +88225 active +88228 passive +88250 active +88257 active +88262 active +88273 middlepassive +88278 passive +88285 active +88299 active +88304 passive +88308 active +88312 active +88315 active +active +88318 active +88321 active +88326 active +88336 active +88345 active +88351 active +88361 active +88368 passive +88384 active +88390 active +88395 active +88399 middle +88403 active +88409 active +88412 passive +88423 middlepassive +88430 active +88433 active +88436 active +88439 active +88442 active +88447 active +88450 active +active +88453 active +active +88457 middlepassive +active +88460 active +active +88463 active +88468 active +88472 active +88476 middle +88478 middlepassive +88486 active +middle +88500 active +88504 active +88506 active +88511 passive +88515 active +active +88520 active +88524 active +88527 active +active +88532 active +88535 active +88541 passive +88546 active +88555 active +middle +88559 active +88567 active +88570 passive +active +88574 middle +88581 active +88584 active +88587 middle +88591 active +88601 active +88603 middlepassive +88608 active +88610 active +88617 active +88626 active +middlepassive +88633 active +88637 active +88644 active +88647 middle +88663 active +88667 active +88671 active +active +88698 active +88703 active +88706 active +88710 active +88714 active +88716 active +88718 active +88720 active +88730 passive +88733 active +88745 middlepassive +88752 active +88762 passive +88771 active +88774 active +88778 active +88780 middle +88786 middle +88795 active +88809 middle +88819 middle +88824 active +88827 middle +88834 active +active +88839 active +88841 active +88843 active +88846 active +88848 active +88852 active +88854 active +88856 active +88861 middle +88864 active +88866 active +88872 active +88874 active +88876 passive +88878 active +88881 active +88886 active +88892 active +88900 passive +88902 active +88906 active +88909 active +88911 active +88913 active +88919 active +88922 active +88924 active +88931 active +88935 active +88939 active +88942 active +88945 active +88948 active +88952 active +88955 active +88958 active +88963 active +88965 active +88970 active +active +88975 active +88983 active +88989 middle +88995 passive +active +88998 active +89002 active +89008 middle +89018 active +89024 active +89027 active +89031 active +89037 active +89039 passive +89051 middlepassive +89054 active +89064 passive +89068 active +89074 active +89078 active +89081 passive +89087 active +89108 active +89120 active +89134 active +89149 active +89153 active +89156 active +89164 active +89168 active +89171 active +89178 active +89182 active +89186 middle +active +passive +89200 active +89202 active +89210 active +89214 active +89219 active +89231 active +89234 passive +89238 active +89240 active +89245 passive +89250 passive +89263 active +89272 active +89276 active +89287 active +89298 middle +89304 middle +89311 active +89315 passive +89321 active +89331 active +89335 passive +89338 middle +89346 active +89349 active +89351 passive +89361 active +89365 active +89373 active +middle +89381 middle +active +89387 active +89393 active +89401 active +89404 active +89416 passive +89426 active +89428 passive +89432 middlepassive +89435 active +89438 active +89443 active +89449 passive +89456 active +89464 active +89470 middle +89476 passive +89481 active +89493 active +active +89498 middle +89526 active +89533 middlepassive +middle +89537 passive +89544 active +89547 passive +middle +89551 passive +89557 active +active +89561 passive +89565 active +89572 active +89579 active +89581 active +89589 middlepassive +89594 active +middlepassive +middle +89601 passive +89608 passive +89611 middlepassive +89614 active +89618 active +89624 middle +89634 active +89637 active +89644 active +89647 active +89652 active +89656 active +89658 middle +89663 middle +89669 active +89671 middlepassive +89678 middle +89681 active +89695 middle +89706 passive +89709 active +89723 middle +89727 active +89733 middle +89745 active +89751 active +89760 middle +89767 active +89773 active +89778 passive +89784 middle +89802 active +89804 active +89821 middle +89827 active +89833 middle +89837 active +89840 middle +89851 active +89860 active +89863 middle +89870 middle +89882 middle +89888 middle +89893 middle +89898 middle +89904 active +89907 middle +89912 active +89915 middle +89921 active +89924 middle +89936 middle +89947 middle +89964 middle +89969 middlepassive +89978 active +89980 active +89992 active +active +89995 active +90006 active +90017 active +90028 middle +90032 active +90034 active +90037 active +90051 active +90068 middlepassive +90083 middlepassive +90088 active +90093 middlepassive +90103 middlepassive +90116 middlepassive +90118 active +90133 passive +90135 passive +90153 passive +90186 active +90189 passive +90198 middle +90224 active +90236 passive +90244 passive +90258 passive +90264 passive +90268 middlepassive +90278 active +90296 passive +90309 active +90322 active +90326 active +90331 active +passive +90345 passive +90356 active +90358 active +90363 active +90366 active +90377 passive +90382 passive +90390 passive +active +90395 active +90404 active +90410 passive +90412 active +90419 active +90423 active +90425 active +90429 active +90431 middle +90438 passive +90451 middlepassive +90453 active +90456 passive +90460 active +90462 passive +active +90473 active +90484 active +90499 active +90507 active +90515 active +90517 active +90522 active +90526 active +90529 active +90531 passive +90560 active +90571 active +90592 middle +90596 active +90604 middle +90608 active +90618 passive +90621 active +middle +90627 active +active +90631 middle +90641 active +90646 passive +90659 passive +90661 middlepassive +90664 middlepassive +90667 active +90670 active +90677 active +90685 active +90687 active +90696 passive +90707 middle +90733 active +90744 active +90761 passive +90763 active +90769 passive +90771 active +90787 active +90790 active +90797 active +90800 passive +90804 active +90808 active +90814 active +90816 active +90820 active +90824 active +90834 active +90843 active +90862 active +90876 active +90885 active +90890 passive +90894 active +90907 active +90912 middlepassive +90921 active +90924 middlepassive +active +90928 passive +90932 active +90939 passive +90942 active +90946 active +90952 active +90955 passive +90957 active +90970 active +90975 middlepassive +90980 middlepassive +90984 active +90994 active +90998 active +91002 active +91005 active +91013 active +91016 active +91020 active +91025 active +91031 active +91033 active +91035 active +91039 active +91043 active +active +91048 active +91051 active +91055 active +91058 active +91060 active +91066 middle +91072 active +91079 active +91086 passive +91092 active +91095 active +91098 active +91100 active +91103 middlepassive +91106 active +91109 middlepassive +91111 active +91117 active +91132 middle +91136 active +91140 passive +91146 active +91150 active +91152 active +91157 active +91159 middle +91164 passive +passive +91168 passive +91175 active +91179 active +91187 active +91194 active +active +91205 active +91207 active +91211 active +91214 active +91216 active +91224 middle +91226 middle +91238 active +91240 passive +91242 middlepassive +91252 active +91258 active +91262 middlepassive +91268 active +91282 active +91284 active +91295 middlepassive +91306 passive +91313 passive +91318 active +91320 passive +91330 active +91334 active +91339 passive +91342 active +91345 active +91351 active +91354 active +91359 active +91365 active +91374 middle +91382 active +91392 active +91397 passive +91404 passive +91411 active +91413 active +91417 active +91421 active +91423 middlepassive +91426 active +91428 passive +active +91431 active +91434 active +91436 active +91438 active +91443 active +91445 active +91452 active +91457 passive +91488 active +91490 active +91492 active +91494 passive +91496 active +91498 active +middlepassive +91503 passive +active +passive +middlepassive +passive +active +91515 passive +91519 active +91521 active +91528 active +91533 active +91549 active +91551 active +91555 middlepassive +91559 active +91563 active +91573 active +91586 active +91590 middlepassive +91594 passive +91597 middle +91604 active +91606 middle +91611 passive +91627 active +91630 active +91640 passive +91657 active +91660 passive +active +91665 active +91667 passive +91675 active +91679 active +91683 active +91687 active +91689 active +91693 middle +91700 passive +91713 active +91725 passive +91737 active +91744 active +active +91750 active +91754 active +91762 passive +91764 active +91781 active +91787 middle +91805 active +91809 active +91812 active +91815 middle +91819 passive +active +91835 active +91841 active +91846 active +91852 active +active +91859 active +91863 active +91867 passive +91878 active +91884 active +91889 passive +91893 active +91897 active +91900 active +91908 active +91910 passive +91915 active +91919 active +91922 active +91928 middle +active +91939 passive +91950 active +91953 active +91960 passive +91965 passive +91968 active +91970 active +91976 active +91982 active +91984 passive +92007 active +92011 active +92013 middle +92015 passive +92017 passive +92034 active +92038 active +92041 active +92045 passive +92064 active +92085 active +92088 active +92094 active +92101 active +92103 active +92108 active +92112 middle +92115 active +92118 passive +92123 active +92125 active +middle +92134 passive +92139 active +active +92147 active +92152 active +92155 active +92160 active +92163 active +92174 active +92176 active +92181 active +92184 passive +92187 active +92197 active +92202 middle +92211 active +92217 active +92224 active +92238 active +92251 active +92256 active +92266 active +92274 active +92277 active +92287 active +92294 active +92297 active +92303 active +92315 active +92324 active +92330 middlepassive +active +92334 active +active +92337 passive +92340 active +active +92351 passive +92355 passive +active +92361 passive +92366 active +92370 active +92378 active +92383 active +active +92388 active +92393 active +92398 active +active +92403 active +92407 passive +92416 passive +92430 active +92434 active +92439 middle +passive +92442 passive +92454 active +92461 active +92465 active +92469 active +92473 active +92478 active +92483 active +92487 active +92494 middle +passive +92497 passive +92499 middlepassive +92502 passive +92505 passive +92509 active +92514 active +92524 passive +92527 active +92529 passive +92532 active +92536 middlepassive +92538 middle +92540 middle +92545 passive +92549 active +92553 passive +active +92558 passive +92560 middlepassive +92567 passive +92570 active +92580 active +92583 active +92585 passive +92589 active +92591 active +92594 active +92597 active +92604 active +passive +92608 active +92610 passive +92614 active +92619 active +92621 active +92624 active +92628 active +92633 active +92639 middlepassive +92643 active +92646 passive +active +92653 active +92657 active +active +92661 active +92664 active +92667 active +92670 active +92673 active +92676 active +92679 middlepassive +92684 middlepassive +92686 active +92693 active +92696 active +92699 active +92704 active +92709 active +active +92715 active +92719 passive +92728 active +92733 active +92743 active +active +92749 active +92759 active +92764 active +92777 active +92782 active +92784 active +92788 active +middlepassive +92791 active +active +92794 active +active +92798 active +92805 active +92809 active +92816 active +92821 active +92826 active +92830 active +92835 active +92839 active +92841 active +92843 passive +92847 active +92853 passive +92857 active +92859 active +passive +92866 active +92869 active +92875 active +92879 active +92884 active +92888 active +92891 active +92895 active +92898 active +active +92902 active +92904 active +active +92909 active +92913 passive +92922 active +92938 active +passive +92948 active +92997 active +93003 active +passive +93009 active +93015 active +passive +93019 active +active +93022 active +93030 middle +93036 active +93039 active +93043 middlepassive +93049 active +passive +93055 active +93057 passive +93063 active +93069 active +93072 active +93077 active +93081 active +93084 active +93088 active +93094 active +93104 active +93106 active +93109 active +93116 active +93122 active +93128 active +93133 active +93141 active +93149 active +active +93154 active +93156 active +93158 active +93161 active +93165 active +93184 active +93187 middlepassive +93189 middle +93194 active +93201 active +93204 active +93213 active +93218 active +93225 active +93231 passive +93233 active +93235 active +93239 active +93246 active +93250 passive +93252 active +93255 active +93257 active +93260 active +93264 active +93270 active +93277 active +93283 active +93289 middle +93295 active +93300 active +93306 active +93311 middlepassive +93316 active +93320 active +93323 middlepassive +93328 active +93332 active +93336 active +93340 middlepassive +93345 active +93349 middle +93356 active +93362 active +93365 middle +93367 active +93373 middlepassive +93377 active +93380 middle +93385 active +93387 active +93392 passive +93395 active +93400 middle +93402 active +93408 middle +93417 active +93422 active +93426 active +93428 middle +93435 active +93443 active +93451 active +93457 active +93464 active +93467 middle +93474 active +93477 active +93482 active +93485 active +93492 middle +93494 active +93499 active +93502 active +93505 active +93509 active +93511 active +93515 middlepassive +93517 middlepassive +93524 active +93531 active +93536 active +93540 active +93542 active +93547 active +93551 active +93554 middle +93558 active +93560 active +93569 active +93575 active +93581 middle +93595 active +93602 active +93604 active +93607 active +93612 active +93621 active +93625 passive +93633 passive +93637 active +93643 active +93646 middlepassive +93651 passive +active +93655 active +93657 active +93659 active +active +93662 active +93666 active +93668 active +93674 active +93680 active +93685 middle +93687 active +93691 active +93693 middle +93700 active +93703 passive +93713 active +93716 active +active +active +93720 active +93724 active +93734 active +93736 passive +93739 middlepassive +93741 active +93749 middlepassive +active +93754 active +93760 active +active +93764 active +93770 active +93772 active +93781 active +93788 active +93796 active +93804 active +active +93812 active +93818 active +93821 active +93825 active +93830 active +93834 active +93839 active +93842 active +93847 middlepassive +93849 middlepassive +93852 active +93857 middlepassive +93860 active +93865 active +93871 active +93873 active +93877 active +93879 active +93883 active +93887 active +93896 passive +active +93899 active +93916 active +93919 active +middlepassive +93923 passive +93925 active +93927 active +93935 active +93938 active +93940 active +93944 active +93949 active +93964 passive +93971 active +93973 passive +93977 active +93980 active +93982 active +93985 active +93990 active +93992 middlepassive +94006 active +active +94017 passive +94020 middlepassive +94025 active +94030 passive +94033 active +94037 active +94039 active +94041 active +94049 active +94063 middlepassive +94065 active +94068 active +active +94076 middlepassive +94078 active +94082 active +94087 active +94093 passive +94097 middle +94100 middle +94106 middle +94108 passive +middle +94114 active +middle +94122 active +94128 active +94131 active +94142 passive +94154 active +94158 active +94199 active +active +active +94206 middlepassive +94211 active +94217 active +94220 active +94224 active +94227 active +94233 passive +94238 active +94240 active +94245 active +94253 active +94255 active +94265 middlepassive +94269 middlepassive +94273 active +94277 active +94281 active +94283 active +94288 active +94294 middle +94298 middlepassive +94304 active +94307 active +94313 active +94316 active +94320 active +94323 active +94328 active +94331 active +94333 active +94339 active +94341 active +94344 active +94346 active +94348 active +94353 active +94356 active +94362 active +94372 passive +active +94376 active +active +94379 active +94381 active +94389 active +94400 active +active +94408 active +94414 active +94417 active +94425 active +94432 active +94437 active +94440 active +94444 active +94448 active +94455 middle +94464 active +94472 active +94477 active +94480 active +94482 active +94485 active +94487 active +94489 active +94501 passive +94506 active +94509 passive +94511 passive +94515 passive +94521 passive +94525 middlepassive +94528 active +94530 middlepassive +94533 active +94536 active +94541 middlepassive +94547 active +middle +94555 active +94557 active +active +94562 active +94570 passive +passive +94573 active +94580 active +active +94586 middlepassive +active +94598 active +94606 active +94614 active +94620 active +94627 passive +94634 active +94641 passive +94687 active +94694 active +94698 middlepassive +94704 active +94708 active +94716 active +94719 active +94734 passive +94747 passive +94752 active +94759 active +94764 active +94767 active +94775 active +94781 active +94786 active +94789 active +94797 active +94819 middle +94829 active +94832 active +94850 middlepassive +94853 active +94859 active +94869 active +94874 active +94876 active +94881 active +94884 active +94888 active +94892 active +94899 active +94906 active +94910 active +94914 passive +active +94920 active +94930 active +94935 active +94938 active +94943 passive +94945 active +94951 active +94961 middle +94996 active +95002 active +95005 active +95007 active +95018 active +95027 active +95031 active +active +95034 active +95037 active +95040 active +95043 active +95053 active +95059 active +95063 active +95065 active +95068 active +95071 active +95075 active +95080 passive +95084 active +95086 passive +95089 active +middlepassive +95094 active +95098 middlepassive +95100 passive +95102 active +95104 active +95108 passive +95110 middlepassive +95114 active +95119 active +95123 active +95125 active +95127 active +95129 active +95133 active +95137 passive +95140 middle +95143 passive +95147 active +95151 active +95154 active +95160 passive +95162 middle +95164 active +95167 active +95170 middlepassive +95174 active +95176 active +95181 active +95193 active +95198 middle +95201 passive +95204 active +95216 active +95220 active +95226 active +95229 active +95233 active +95238 active +95241 active +95245 active +95247 active +95254 active +95257 active +95260 active +95262 active +95264 active +95267 active +95272 active +95276 active +95279 active +95284 active +95289 active +95294 active +95298 active +95301 active +95305 active +95321 active +95331 active +95333 passive +95335 passive +95338 passive +95345 active +95347 middle +95360 active +95362 passive +95364 passive +95368 middle +active +95371 active +95375 active +95384 active +95389 middle +95391 active +95395 active +95405 active +95411 active +95413 active +95416 active +95418 middlepassive +95420 active +95423 middlepassive +95428 middlepassive +95434 active +95437 active +middle +95442 middle +95446 active +95450 active +95456 active +95459 active +95465 active +95474 active +95476 active +95481 active +95486 passive +active +95494 active +95498 active +95504 active +95508 active +95517 middlepassive +95523 active +95528 middlepassive +95532 passive +95540 active +95547 middle +95549 active +95556 active +95559 active +95571 active +95574 active +95583 active +95586 active +95591 active +95593 middlepassive +95597 active +95599 active +95604 passive +95607 passive +95616 middlepassive +95619 active +95622 active +95625 active +95632 active +95635 active +95638 middlepassive +95641 active +95643 active +95645 active +95647 active +95649 active +95653 middlepassive +95657 active +95669 active +95673 active +95675 active +95679 active +95689 active +95693 active +95697 middlepassive +passive +95701 active +95703 middlepassive +95707 active +95710 active +95713 passive +95718 passive +95721 active +95739 active +95742 passive +95744 active +95746 passive +95751 active +95755 active +active +95762 active +95765 active +95767 active +95777 active +95782 active +95785 active +active +95790 active +95792 active +95797 active +95801 active +passive +95806 active +95808 active +95811 active +95814 active +95821 middlepassive +95824 active +95829 middle +95833 active +95837 active +95841 passive +95844 middle +95847 active +95852 active +95854 active +95860 active +95863 active +95873 passive +95876 passive +95886 passive +95892 passive +95901 active +95906 passive +95908 passive +95917 passive +95924 active +95931 active +95933 passive +95936 active +95944 active +95946 active +95956 passive +95961 active +95978 active +95981 active +95985 passive +95989 passive +95991 active +95999 active +96005 active +96008 passive +96013 passive +96025 passive +96031 active +96036 active +96041 active +96046 passive +96051 passive +96054 passive +96059 passive +96065 active +96073 passive +96076 middle +96084 active +active +96090 active +96093 passive +96099 passive +96116 active +96123 passive +96144 active +96152 active +96161 active +96163 active +96166 active +96178 passive +96181 active +96188 active +96191 passive +96196 active +96202 passive +96211 passive +96213 active +96218 active +96226 active +96228 passive +96236 passive +96239 passive +96245 active +96251 active +96257 active +96267 active +96277 passive +active +96280 active +96283 active +96285 passive +active +96291 active +96295 active +96300 active +96304 active +96306 active +96309 passive +96315 middlepassive +96319 active +96321 passive +96324 active +96327 active +96332 middle +active +96338 active +96347 active +96351 active +96411 active +96420 passive +96423 passive +96426 passive +96429 passive +96432 passive +96435 passive +96438 passive +96441 passive +96445 active +96448 active +96453 passive +middle +96461 active +96467 active +96507 active +96512 active +96520 active +96528 active +96530 middlepassive +96536 active +middle +96540 active +96543 passive +96546 passive +96557 active +96561 passive +96565 passive +96567 active +96571 middle +96577 middle +96584 middle +96590 middle +96593 middle +96597 passive +passive +96632 active +96646 middlepassive +96649 active +96656 active +96662 active +96675 active +96683 active +96691 active +active +96696 passive +96700 active +96703 middlepassive +96706 middle +96709 active +96713 active +active +96723 active +96726 middlepassive +96729 middle +96731 middle +96736 active +96739 middlepassive +96743 active +active +96747 active +96751 active +96754 middlepassive +96757 active +96762 active +96764 active +96767 active +96773 active +96775 active +96783 active +96789 middlepassive +96793 active +96795 active +96798 middle +96805 middlepassive +96812 active +96814 active +96819 active +96823 middlepassive +96834 active +96837 active +96846 active +96850 active +96852 middle +96854 active +active +active +96860 middlepassive +passive +96866 middlepassive +96868 active +96871 active +96876 active +96885 active +96890 passive +96896 active +96898 active +96900 active +96914 active +96916 active +96924 active +96927 middlepassive +96933 middlepassive +96947 middlepassive +96952 middle +96966 active +96969 active +96972 active +97005 active +97013 active +97049 active +97058 middlepassive +97060 active +97069 passive +97076 active +97087 active +97094 passive +97102 passive +97108 middle +97117 active +97125 active +97128 active +97139 active +97141 active +97147 middle +97156 passive +97158 passive +97162 active +97171 active +97174 active +active +97183 active +97190 middlepassive +97193 middle +97196 active +97200 middle +active +97218 passive +97226 active +97247 passive +97256 active +97263 active +97266 active +97268 active +97272 middle +97275 active +97282 active +97298 middlepassive +97302 active +97306 active +97310 active +97317 active +97323 passive +97329 middlepassive +97334 middle +97337 middlepassive +97340 middlepassive +97342 active +97364 active +97380 passive +97388 middle +97396 active +97419 active +97426 active +97431 middle +97434 active +97448 middle +97454 middlepassive +97457 active +97462 active +97468 active +97475 active +97477 active +97487 active +97491 active +97496 active +97501 passive +97505 active +97510 active +97512 active +97516 active +active +active +97528 active +97536 active +97543 passive +97546 active +97550 active +97557 active +97560 active +97568 active +97583 middle +97585 active +97591 passive +97595 active +97597 active +97605 active +97607 active +97615 active +97619 middlepassive +97625 middlepassive +97628 middlepassive +97636 passive +97645 active +97647 active +97659 passive +97663 active +97670 active +97677 middle +97679 active +97688 active +97699 active +97708 active +97713 passive +97717 middlepassive +97739 active +active +97760 active +middle +97764 active +97767 active +97781 active +passive +97787 passive +97789 passive +97793 passive +97795 active +97798 passive +97801 passive +97807 active +97820 active +97832 active +middle +97847 active +97859 active +97863 active +97872 passive +97874 passive +97879 middlepassive +97883 active +97895 passive +97903 middle +97915 active +97924 passive +97926 passive +97933 active +97938 passive +97944 active +97948 active +97953 middlepassive +97958 active +97967 active +97975 passive +97977 passive +97995 active +97997 passive +98001 passive +98007 passive +98014 middlepassive +98018 active +98021 passive +98029 active +98039 passive +98044 middle +98048 passive +98059 active +98064 passive +98066 active +98068 middle +98074 active +98078 active +98088 active +98100 active +passive +98107 middlepassive +active +passive +98117 active +98125 active +98135 active +98142 active +98157 active +98161 active +98163 active +98180 active +98192 active +98201 passive +98204 passive +middle +98208 middlepassive +passive +98212 passive +passive +98216 middlepassive +98225 active +98236 passive +98241 active +98244 passive +98253 passive +98264 middle +98271 active +98279 passive +active +98282 active +98285 active +98288 active +active +98292 active +98300 active +98302 active +98313 active +98319 active +98327 active +98335 passive +98340 passive +98357 middlepassive +98360 active +98363 passive +98367 passive +98370 passive +98375 passive +98378 active +98387 passive +98390 active +98402 active +98409 middle +active +98414 middle +98417 passive +98421 active +98425 active +passive +98429 active +98431 middle +98433 middle +98435 passive +98443 middle +98450 active +98457 active +98460 active +98462 active +98466 active +98473 active +98478 active +98480 active +98482 active +98487 active +98493 middlepassive +98495 active +98497 active +98500 active +98505 passive +98511 active +98513 middle +98521 active +98527 active +98533 active +98536 passive +98538 active +98544 passive +98548 active +98553 active +98558 active +98563 middlepassive +98570 active +98573 active +98580 active +98582 active +98588 active +98592 active +98596 active +98599 active +active +98607 active +98609 passive +98616 active +98621 active +98628 active +98638 active +middle +active +98649 active +98655 active +98664 active +active +98671 middlepassive +98677 middle +98687 active +98691 active +98694 middlepassive +98697 passive +98702 active +98707 active +98710 middle +98716 active +98718 active +98726 middle +98729 active +98732 active +98738 active +98740 middle +98744 middle +98752 active +98755 passive +98761 active +98829 passive +98831 passive +98833 active +98835 middle +active +98838 passive +98841 passive +98843 passive +98846 active +98851 active +98854 active +98857 active +98862 active +98868 passive +98870 passive +98874 passive +98885 active +passive +98890 middlepassive +active +98928 active +active +98931 active +98935 active +98939 active +98941 middle +98946 middle +98950 active +98955 passive +98959 middle +active +98963 middle +98966 middle +98972 middle +98978 active +98983 active +98987 active +98995 active +99000 active +99003 active +99005 active +99007 active +99011 active +99013 active +99019 active +99022 active +99024 active +99035 passive +99038 middle +99048 active +99053 active +99061 passive +99068 active +99073 active +99092 passive +99095 active +99111 passive +99115 active +99121 middlepassive +99124 middlepassive +active +99134 active +99137 active +99140 passive +99143 passive +99147 passive +99153 passive +99165 middlepassive +99172 middlepassive +99174 middle +99180 passive +middle +99199 active +99202 active +99208 active +99213 active +99217 passive +99221 passive +99235 passive +99243 passive +99249 passive +99262 middlepassive +99264 passive +99270 active +99280 passive +99288 active +middle +99299 middle +99301 active +99305 active +99310 active +99317 passive +99339 active +99346 active +99357 middlepassive +99373 active +99376 active +99387 active +99392 middle +99395 active +99406 active +99428 active +99432 active +99444 active +99446 active +99457 active +99459 active +99465 active +99470 active +99474 active +99479 active +99483 active +middle +99491 active +active +99498 active +99502 active +99505 active +99510 middlepassive +99513 active +99518 active +99545 middle +99551 middle +99554 passive +99559 active +99565 active +99571 active +99585 middle +99588 active +99590 active +99594 active +99614 passive +99625 passive +99637 middle +99642 middle +99648 passive +99652 active +99663 active +99669 active +99674 active +99713 middle +99729 active +99731 active +99734 active +99741 middlepassive +99745 passive +99752 active +99756 active +99767 passive +99774 active +passive +active +99780 active +99785 active +99788 passive +99792 active +99800 middle +active +99805 active +99809 active +99811 middlepassive +99816 active +99827 active +99831 active +99834 active +99840 active +99843 middle +99855 active +99859 active +99864 active +99873 active +active +99880 passive +active +active +99888 active +99894 active +99897 active +99902 active +99904 active +99909 active +99917 passive +99922 middlepassive +99936 active +active +99944 active +99956 active +99984 active +99988 active +100006 active +100023 active +active +100028 middlepassive +100031 active +active +100036 middlepassive +active +100041 middlepassive +100046 active +100050 active +100054 middle +100070 active +100075 middle +100082 active +100093 active +active +100098 passive +100105 active +100108 active +100111 active +100113 middlepassive +100129 middle +100135 active +100146 passive +100149 active +100152 active +100158 active +100174 passive +100176 middlepassive +100181 active +100186 active +100189 active +100194 active +active +100197 active +100202 active +100208 active +100210 active +100214 active +100221 middle +100229 active +100234 middle +100242 middlepassive +100245 active +100251 active +100261 middlepassive +100267 active +passive +100274 passive +100285 middle +100293 middle +100296 middlepassive +100299 middlepassive +100304 active +100306 active +100312 active +active +middlepassive +100321 middlepassive +100324 active +100329 middle +100335 active +100339 middlepassive +100345 active +100351 passive +100368 middlepassive +active +100374 active +100376 active +100381 active +100387 middle +100389 middlepassive +100391 middlepassive +100393 active +100410 active +100417 active +100419 active +100422 passive +100429 middle +100433 active +active +100441 active +100445 passive +100447 active +100453 active +100456 active +100465 active +100467 active +active +100478 passive +100490 active +100494 active +100497 active +100499 active +100501 active +100505 active +100510 middlepassive +passive +100521 middle +100532 middle +100544 passive +100551 middle +100557 active +100560 active +100563 active +100570 middle +100576 middle +100578 active +100582 active +100595 middlepassive +100600 middle +100603 middlepassive +100607 active +100609 middlepassive +100613 active +100616 active +100619 active +100622 middle +100628 active +100631 active +100635 active +100641 active +100644 active +active +100648 active +100651 active +100655 active +100659 active +active +active +100682 active +100684 passive +100686 passive +100688 active +100693 active +100750 active +100753 active +100755 passive +100759 passive +100761 middlepassive +active +100767 middle +100776 active +100781 active +100784 middlepassive +100792 active +100796 active +100803 passive +100808 active +100812 middlepassive +active +100816 active +100818 middle +100824 active +100832 active +100838 active +100841 active +100845 passive +100852 active +100864 active +100867 active +100869 passive +100874 active +100878 active +100880 active +100885 middle +100890 middle +100898 active +middle +100901 middle +100905 active +100907 middlepassive +100912 middle +100915 active +100918 active +100929 passive +passive +100939 active +100942 passive +100948 active +100950 active +100954 active +100956 active +100966 passive +100970 middle +100975 active +100983 active +100998 active +101001 active +active +101006 active +101009 active +101012 passive +101015 active +101022 active +101028 passive +101042 active +101044 passive +101055 active +101057 middle +101062 middle +101066 active +active +101072 active +101075 active +101082 active +101087 active +101096 active +101098 passive +101106 active +101108 passive +101110 active +101113 active +101116 active +101120 active +101124 active +101129 active +101131 active +101134 active +101138 active +101145 active +101151 active +101154 middlepassive +101159 active +101169 middlepassive +101172 active +101175 active +active +101179 passive +101183 active +101196 active +101198 active +101206 active +101209 active +101212 active +101221 active +101224 middlepassive +101233 passive +101236 active +101238 active +101240 active +101244 active +101247 active +101254 active +101259 middle +101261 active +101266 active +101272 active +101274 active +101279 passive +101283 active +101290 active +101294 active +101303 active +101305 active +101310 active +101313 active +101323 active +101325 active +101327 middle +101331 active +101334 middlepassive +101339 active +101347 passive +101353 active +101358 active +101361 middlepassive +101371 active +101374 active +101378 active +101380 middlepassive +101388 active +active +101391 active +101394 middle +101401 active +101411 active +passive +passive +101416 active +active +101425 middle +101428 middle +101433 middlepassive +101474 active +101501 active +101508 middle +101514 active +101533 active +101537 middlepassive +101540 active +101550 active +101555 active +101557 active +101560 active +active +101574 middle +101578 middle +101581 active +101583 active +101587 active +101591 middle +101594 active +101596 active +101599 active +101605 active +101607 active +101611 active +101616 middle +101619 active +101624 passive +101629 active +101637 active +101640 passive +101647 active +101658 active +101664 active +101667 active +101679 active +101687 active +101689 active +101696 active +101701 active +101708 middle +101715 middle +101720 active +101729 active +101734 active +101741 active +101744 active +101747 active +101757 active +101767 active +101769 middle +101775 middlepassive +101777 active +101787 middle +passive +101800 active +active +101804 active +101808 middle +101813 active +101815 active +101825 active +101830 active +101834 active +101838 middle +101843 active +101851 active +101856 active +101858 active +101866 active +passive +passive +101875 active +active +101881 active +101887 active +101892 active +101900 active +101906 active +active +101911 active +101914 active +101920 active +101924 active +101926 middle +101929 active +101931 passive +101942 active +101948 active +101955 active +101959 passive +101967 active +101969 active +101972 active +101990 active +101993 active +101996 active +101999 active +102006 active +102008 passive +active +102013 active +102020 active +102023 active +active +102026 active +102028 middlepassive +102033 passive +102042 passive +102048 active +102051 active +102057 active +102065 active +102070 active +102072 active +102075 active +102085 active +102088 passive +102104 active +102106 passive +102120 passive +102125 active +passive +102129 passive +102138 middle +102142 active +102145 active +102148 active +102154 active +102157 active +102159 passive +102161 active +102165 active +102172 active +102175 active +102184 active +102187 active +102192 active +102205 active +102211 active +102217 passive +passive +active +102222 active +102227 active +102237 active +middle +102242 middlepassive +102244 active +102252 active +102257 active +102270 active +102274 passive +102279 active +102287 active +102291 active +102295 active +102300 middle +102304 passive +102314 passive +102324 active +102327 active +102329 passive +102335 active +102338 passive +102345 active +102352 passive +102362 middle +102367 active +102372 active +102374 middle +102379 active +102385 middle +102390 passive +102394 middle +102405 middle +102414 active +102421 active +102424 passive +102427 active +102429 middlepassive +102431 passive +102441 active +102457 active +102461 active +102463 passive +102473 active +102476 active +102479 active +102496 middlepassive +102506 passive +102509 active +102513 passive +passive +102525 active +102530 active +102540 middle +102543 passive +102546 middlepassive +active +102552 active +102556 active +102570 passive +102572 active +102576 active +102581 passive +passive +102585 active +passive +102593 active +102599 passive +102601 active +102607 active +102612 active +102623 passive +102625 middle +102627 active +102632 active +102637 active +102645 active +102657 active +102662 active +102669 active +102671 active +102675 active +102681 active +102691 active +102698 middle +passive +102702 active +102707 active +102713 middle +102716 middle +102723 active +102727 active +102730 active +102732 active +102744 active +102749 active +102765 active +102767 active +102771 active +102775 active +102779 passive +102783 active +102794 active +active +middle +102804 middlepassive +102809 active +102812 middlepassive +102820 middlepassive +102824 active +102826 active +102832 middle +102845 active +102847 active +102852 middle +102863 active +102871 active +active +102877 active +active +102880 active +102885 active +102887 active +102890 active +102893 passive +102902 active +102910 active +102913 passive +102918 active +active +102924 active +102929 middle +102932 active +102937 active +active +102942 active +102944 passive +102947 active +102967 passive +102977 active +passive +102981 active +102991 active +102993 active +103000 active +103005 active +103010 active +103020 active +103022 active +103026 passive +passive +103031 active +active +103034 active +103037 active +103047 active +103057 active +103064 passive +active +103074 active +103077 active +103087 active +103099 active +103110 active +103112 active +103118 passive +active +103122 active +103126 passive +103130 active +103132 middlepassive +103136 passive +103139 active +103143 active +passive +103150 passive +103153 active +103161 middlepassive +103171 active +103176 middle +active +103180 active +103184 passive +103190 active +103197 active +103199 active +103207 active +103210 active +103212 active +103217 active +103224 active +103227 passive +103229 passive +103234 active +103236 middle +103238 active +103244 passive +103258 active +103264 passive +103270 active +103279 active +103281 active +active +103286 passive +103288 active +103290 active +103296 active +103300 active +103313 middlepassive +103318 active +103320 active +103324 passive +103326 active +103331 active +103337 active +103358 active +103361 active +103366 active +103370 active +103376 active +103390 active +103399 active +103407 active +103411 active +103413 middlepassive +103416 middle +103418 active +103422 passive +103430 active +103436 active +103441 passive +103445 active +103448 active +103455 active +103457 active +103460 active +active +103467 active +103476 active +103487 active +103489 active +103491 passive +103495 active +103500 passive +103503 passive +103507 active +103511 active +103514 active +103522 active +103526 active +103533 active +103539 active +103541 active +103545 active +103547 passive +103552 active +middlepassive +103565 active +103569 active +103574 active +active +103579 active +103581 passive +103589 passive +103593 passive +103596 active +103598 active +103600 passive +103606 middle +103610 middle +middlepassive +103626 passive +103631 active +103644 active +103661 active +103672 active +103696 active +103727 active +103739 middle +103746 active +103755 active +103777 active +103781 passive +103784 active +103802 active +103810 active +103822 middle +103831 middle +103851 passive +passive +103858 active +103867 active +103874 active +103882 active +103895 active +passive +103904 active +103921 active +103939 middle +active +103944 middle +103961 active +103970 passive +103978 active +103981 active +104001 active +104009 active +104019 active +104023 active +104028 active +104047 passive +104058 active +104061 active +104068 active +104075 active +104086 middle +104089 active +104100 active +104118 active +104129 passive +104137 active +104146 middle +104158 active +104167 active +104170 active +104175 active +104179 active +passive +104182 active +104184 active +104192 middle +104197 middlepassive +104199 active +104214 active +passive +104232 middle +104234 active +104237 passive +104245 active +104251 active +104253 active +104262 passive +104266 passive +104272 active +104278 passive +104291 active +104305 active +104307 passive +104316 active +104321 active +104332 active +104343 active +104347 active +104354 active +104357 active +104368 active +104374 active +middle +104387 active +104401 active +104406 active +104414 passive +104422 active +104431 passive +active +104442 passive +104464 active +104472 passive +104479 passive +104484 active +104489 middlepassive +active +active +104504 passive +104511 passive +104520 active +104538 passive +104547 passive +104560 passive +104566 middle +104573 active +104580 passive +104590 active +104592 passive +104615 active +104625 active +104637 middle +104639 active +104647 active +104652 active +104668 passive +104670 active +104679 passive +104688 active +104700 passive +104702 passive +104704 active +middle +104720 active +104722 active +104729 passive +104738 middlepassive +active +104744 middle +104746 active +104751 middle +104774 active +104782 active +104786 passive +104794 middlepassive +104798 active +active +104816 passive +104847 passive +104858 active +active +104862 active +104864 active +104870 active +104872 active +104877 active +104885 active +104887 active +104890 active +104896 active +104901 active +104931 active +104958 active +104960 middlepassive +104962 passive +104980 active +104983 active +104989 active +104998 passive +105000 passive +105017 middle +105025 active +105027 middlepassive +105032 active +105037 active +105043 passive +active +105047 passive +105056 active +105066 active +105068 active +105081 active +105087 active +105091 passive +105093 active +105098 middle +105108 passive +105115 passive +105122 middle +105129 passive +105137 middle +105140 active +105148 active +105151 passive +105154 active +105158 active +105163 active +105168 active +105170 active +105173 active +middlepassive +105181 active +active +105185 active +105194 middlepassive +105204 active +105207 active +105210 active +105219 passive +105233 passive +105240 middlepassive +105245 middlepassive +105253 middle +105256 middlepassive +105264 active +105271 active +105274 active +105294 passive +105298 active +105308 active +105314 active +active +105324 active +105327 active +105338 active +105344 middlepassive +105356 middlepassive +105360 active +105371 active +105384 active +105386 active +105392 active +105402 active +105406 middlepassive +105410 active +105412 active +105416 passive +105420 passive +105424 passive +105426 active +105428 active +active +105431 active +105433 active +105438 active +105443 active +105446 active +105453 middle +105460 active +105464 middlepassive +105467 active +105475 passive +105479 active +105482 passive +105485 active +105493 active +105495 active +105501 active +105516 passive +105531 active +105550 passive +105563 active +105570 active +105575 active +105580 active +active +105589 active +105596 active +105606 active +105611 active +105615 active +105624 active +105629 active +105636 active +105638 active +105640 active +105649 active +105656 active +105664 passive +105670 middle +105680 active +105683 active +105701 active +105708 middlepassive +105713 active +105721 active +105723 active +105731 active +105739 middle +105741 middle +105750 active +105755 active +105764 active +105790 active +105799 active +105806 active +105812 active +105814 middle +105826 active +105829 active +105832 active +105840 active +105846 active +105851 passive +105861 middle +105868 middlepassive +105870 active +105877 active +105909 active +105915 passive +active +105924 middle +active +105927 active +middle +105935 middle +105941 middle +105952 active +105959 middle +105966 passive +active +105969 middle +105980 active +105988 middlepassive +105997 active +106012 passive +106021 active +106028 active +106034 middle +106036 active +106038 active +106041 active +106048 active +106050 active +106062 active +106069 active +106074 active +106097 active +106118 active +106137 active +106158 middle +106173 active +106178 middle +106183 active +106189 active +106193 active +106199 active +106224 active +106231 active +106240 middlepassive +106249 active +106257 active +106260 active +106262 active +106269 passive +106283 middlepassive +active +106295 active +106303 middle +106319 active +106324 active +106330 active +106345 active +106350 active +106356 middlepassive +106363 active +106366 middlepassive +106368 active +106383 passive +106387 active +106390 passive +106392 active +106396 middle +106418 passive +106427 passive +106442 active +106446 active +106451 active +106460 middle +106462 active +106464 passive +106470 active +106473 active +106477 active +106484 active +106492 active +active +106495 active +106497 active +106512 active +106531 middlepassive +106534 active +106536 active +106539 active +active +106545 active +106551 active +106558 passive +106563 middlepassive +106565 active +106578 passive +106587 active +106593 active +active +106599 active +106604 active +106626 active +106633 active +106637 active +106641 active +106652 middlepassive +active +106659 active +106666 active +106678 active +106681 middle +106683 active +106688 active +106691 active +106695 middle +106698 passive +106701 active +106703 middle +106715 active +106717 middle +106730 active +106741 middle +106755 active +106778 middlepassive +106781 active +106783 active +106788 active +106791 active +106796 active +106802 middle +106813 passive +106816 passive +106823 active +106834 active +106838 active +106842 passive +106851 active +106853 active +106861 active +106863 active +106866 active +106872 active +106876 active +active +106884 active +106890 active +106896 active +106905 active +106912 active +106918 active +106920 active +106923 active +106929 active +106936 middle +106938 middle +106956 active +106960 active +active +106965 active +106967 active +106969 active +106972 active +106978 active +106992 active +106995 active +106998 active +107001 passive +107004 active +107006 middlepassive +107017 active +107025 active +middle +107030 active +107042 active +107047 active +107056 active +107059 active +107063 active +107067 active +107074 active +107076 middlepassive +107084 active +107087 active +107095 active +active +107116 active +107124 middle +107128 active +107132 middlepassive +107142 middlepassive +107145 active +107148 active +107160 passive +107162 middlepassive +107166 active +107168 passive +107171 active +107191 active +107203 passive +107209 active +107219 active +107222 passive +107224 active +107227 active +107231 passive +107238 middlepassive +107240 active +107246 middlepassive +107250 middlepassive +107253 active +107269 active +107274 active +107280 active +107284 active +107287 active +107291 middlepassive +107293 active +107296 active +107298 active +107303 active +107306 active +107311 active +active +107338 active +107345 active +107349 middlepassive +107355 active +107371 middlepassive +107374 active +107389 active +107394 active +107397 active +107400 active +107404 active +107409 middle +107415 active +107431 active +107436 active +active +107441 passive +107448 active +107462 passive +107472 active +107475 active +107490 active +107510 middlepassive +107513 active +107515 active +107517 active +107519 active +107523 active +107529 middle +107533 passive +107540 active +107544 active +107548 active +107550 middlepassive +107555 active +107558 active +107561 active +107563 active +active +107566 passive +active +107569 active +107575 passive +107577 passive +107579 active +107581 active +107583 passive +107585 active +107588 active +107592 active +active +107599 active +107604 active +107614 active +107636 active +107639 active +107643 active +107647 active +107652 active +107655 active +passive +middle +107674 active +107701 middle +107707 middlepassive +107713 middlepassive +107763 active +107775 middlepassive +active +107787 active +107796 middlepassive +107802 active +107811 active +107820 active +middle +107823 passive +107831 active +107833 active +107841 active +107849 active +107858 active +107872 active +107874 middle +107877 middlepassive +107879 middle +107881 passive +107893 active +107904 active +107906 passive +107914 passive +107928 active +107932 active +107945 middlepassive +107953 active +107964 active +107972 active +107984 passive +108014 passive +108017 active +108025 active +108028 active +108036 active +108043 middle +108047 active +108049 active +108055 active +108059 active +108064 active +108086 active +passive +108099 active +108109 active +108120 active +108123 passive +108128 passive +108135 active +108137 passive +108147 middle +108151 active +108158 active +108174 active +108179 middle +108187 passive +108191 active +108199 passive +108209 passive +108214 active +108217 active +108230 active +108240 active +active +108245 active +108252 active +108261 active +middlepassive +108268 middle +108274 active +108276 active +108279 active +108289 active +108296 passive +108300 passive +108320 active +108330 active +108334 middlepassive +108342 active +108348 active +active +108351 active +108365 active +108373 active +passive +108376 passive +108380 passive +108384 passive +active +108388 active +108391 middle +108393 active +108418 active +108426 active +passive +108431 active +108441 passive +108456 passive +108464 passive +108473 active +108480 active +108489 active +108493 middle +108498 active +108506 active +108511 active +108515 active +108519 middle +108525 active +108528 active +108536 active +108551 active +108554 active +108562 active +active +108571 active +active +108574 passive +108583 active +108596 passive +108598 passive +active +108605 active +108615 active +108618 passive +108620 middle +108622 middle +108624 active +108626 active +108640 active +108642 active +108662 passive +108667 active +108671 active +middlepassive +108679 active +108686 active +108691 passive +108699 passive +108710 passive +108714 active +108730 active +108734 middlepassive +108743 active +108746 active +108751 middle +108766 middlepassive +108769 middle +108778 middle +108782 passive +108788 active +108792 active +108810 middle +108817 passive +108824 middlepassive +108827 middlepassive +108833 active +108839 middle +108851 active +108860 active +108868 passive +108874 middlepassive +108879 active +108886 active +108888 active +108897 active +108909 active +108920 active +108928 middle +108932 active +108937 active +108942 passive +108947 active +108955 active +108961 active +108967 active +108970 active +108986 middlepassive +108991 active +108994 middlepassive +109001 active +109005 middle +109013 active +109016 active +middle +109019 active +109022 active +109033 middle +active +109038 active +109044 active +active +109050 middlepassive +109058 active +109063 active +109071 passive +109073 active +109076 active +109078 active +109081 active +109087 middle +109095 passive +active +109098 active +109102 middlepassive +109107 active +109121 active +109128 active +109133 active +109145 active +109149 active +109153 middlepassive +109166 active +109169 active +109172 middle +109177 passive +109180 active +109192 passive +109195 middlepassive +109205 middlepassive +109212 passive +109215 passive +109222 active +109225 active +109238 middlepassive +109247 middle +109262 passive +109267 active +109274 passive +109282 active +109284 active +109286 active +109290 active +109295 active +109302 active +109329 active +109337 middle +109343 active +109370 active +109375 passive +109383 passive +109402 active +109404 passive +109411 passive +109417 middle +109428 middle +109433 active +109444 passive +109467 active +109471 active +109473 active +109479 active +109482 active +109487 active +109494 active +109496 active +109500 active +109508 active +109514 middlepassive +109520 middlepassive +109524 active +109534 active +109536 active +109538 passive +109542 active +middle +109548 active +109573 passive +109577 passive +109581 active +109583 active +109589 active +109599 passive +109601 active +109609 active +109619 middlepassive +109622 active +109627 passive +109635 active +109640 middlepassive +109642 active +active +109659 passive +109662 active +109672 middlepassive +109676 active +109679 active +109699 active +passive +109702 active +109711 active +109713 middlepassive +109715 middlepassive +109719 active +109725 active +109738 active +109743 active +109750 middle +109757 active +109762 middle +109766 active +109770 passive +109777 active +109787 active +109801 active +109811 active +109815 active +109820 active +109824 active +109826 passive +109829 active +109835 active +109845 passive +109855 active +109859 active +109864 active +active +109876 active +109904 active +109913 active +active +passive +109920 active +109936 active +109938 active +109946 passive +109953 active +109957 middlepassive +109963 active +active +109967 active +passive +109971 middle +109973 active +109978 active +active +109982 active +109988 active +109991 active +109995 middle +110001 active +110008 middle +110018 active +110023 active +110025 active +110033 passive +110049 active +110052 active +110056 middlepassive +110061 active +110069 active +110080 middlepassive +110083 active +110088 active +110106 active +110116 active +110118 active +110133 active +110161 active +110163 active +110170 active +110175 active +110177 active +110179 active +110183 active +110185 active +110188 active +110191 active +110199 active +110206 middle +110211 active +110217 middlepassive +110232 active +110237 active +110239 active +110254 active +110257 middle +110260 active +110271 active +active +110280 active +110294 active +active +110301 active +110304 active +110308 active +110320 active +110322 active +110325 middlepassive +active +110328 active +110332 middlepassive +110338 active +110340 active +110348 active +110352 active +110354 active +110357 passive +110360 passive +110367 active +110371 active +110374 active +110376 active +110382 passive +110386 active +110392 active +110399 active +110401 passive +110409 active +110411 passive +110425 middle +110433 middle +110438 active +110440 passive +110444 passive +110458 middle +110460 active +110476 active +110478 passive +110482 active +110491 middlepassive +110493 active +110501 middlepassive +110508 active +110512 active +110517 active +110524 active +110530 active +110537 active +110544 active +110549 active +110551 active +110554 active +110556 active +110559 passive +110561 active +110565 active +active +middle +110578 middle +110595 active +110600 active +110602 active +110606 active +110608 active +110611 active +110617 active +110620 active +110622 active +110624 active +110628 middle +110633 active +110636 middlepassive +110645 active +110650 active +110652 active +110655 middlepassive +110658 middlepassive +110661 active +110664 active +110671 active +110676 active +110683 active +110685 middlepassive +110688 active +110701 active +110704 active +110707 active +110710 active +110715 middle +110722 active +110745 passive +110748 active +110752 active +110754 middlepassive +110757 middle +110764 active +110768 passive +110811 active +active +110820 active +110822 active +110827 active +110841 middlepassive +110862 middlepassive +110871 passive +110880 active +110885 active +110887 active +110893 passive +110912 active +110916 active +110921 active +110929 active +110945 active +passive +110952 passive +110956 active +110962 passive +110971 middlepassive +110977 active +110984 active +110994 passive +111019 active +111038 passive +111044 passive +111059 active +111067 active +111074 active +111079 passive +111089 middlepassive +111091 passive +111094 passive +111105 active +active +111109 active +111112 active +111115 active +111119 active +111124 active +active +111128 passive +111140 middle +111143 active +111148 middle +111151 passive +111158 active +111165 active +111174 active +111193 middlepassive +111201 middle +111204 passive +111209 active +111217 active +111222 passive +111226 active +111230 active +111235 active +active +111243 passive +111247 middle +111264 active +111281 active +111283 active +111287 passive +111309 active +111312 active +111320 active +111325 active +111335 middlepassive +111343 active +111345 passive +111352 passive +111366 active +111370 active +111373 active +111378 active +111385 active +111387 active +111389 active +111393 active +111410 active +111418 middle +111424 active +111431 active +111436 active +111438 active +middlepassive +111443 active +111449 active +111460 middlepassive +111464 active +111470 active +111476 active +111480 middlepassive +111485 active +111489 active +111495 active +middlepassive +111498 active +111500 active +111502 active +111507 middlepassive +111509 middlepassive +111513 active +111515 active +111523 middlepassive +111527 active +111532 active +active +111538 active +111546 middle +111548 middle +111551 passive +111556 middlepassive +111558 active +111567 active +111588 active +111594 active +111638 active +111640 active +111643 middlepassive +111647 active +111650 active +111652 active +111659 active +111672 active +111684 active +111686 passive +111689 active +active +111693 active +111696 active +111700 middlepassive +111702 active +111711 middlepassive +active +111718 middlepassive +111742 middlepassive +111744 active +111755 passive +111758 active +111760 active +111770 middle +middle +111776 active +111783 passive +111785 active +active +111790 active +111814 active +111819 active +111822 active +111827 passive +111832 middle +111841 active +active +111871 middle +111875 active +111880 middle +111886 active +111892 middle +111897 active +111899 active +111904 active +111908 passive +111910 active +111912 active +111915 passive +111930 active +111936 active +111952 active +111955 passive +111960 active +111974 active +111985 passive +111997 active +111999 middlepassive +112001 middlepassive +middlepassive +112008 active +112024 active +112039 active +112041 middlepassive +112048 active +112053 active +112055 active +112058 active +112061 active +112067 passive +112073 passive +112077 passive +112080 active +112082 passive +112087 active +112102 middle +112105 active +112107 active +112110 active +112132 middle +112134 active +112146 active +112148 active +112152 middle +112157 passive +112162 active +112164 active +112168 active +112174 active +112189 active +112192 active +112203 passive +112206 active +112208 active +112219 active +112224 middle +112233 active +112237 middle +112249 active +active +active +112257 active +112259 active +112261 active +passive +112267 active +112270 active +112279 active +112285 passive +112288 passive +112291 passive +112293 passive +112296 passive +112299 passive +112306 active +112311 middle +112315 active +112324 passive +112328 active +active +middle +112335 active +112343 active +112356 passive +112358 passive +112365 middle +112368 middle +112373 passive +112383 active +112390 middlepassive +112392 active +112402 active +112410 active +active +112418 active +112429 active +112431 middlepassive +112433 active +112436 active +112438 active +112445 active +112447 active +112452 active +112454 middlepassive +112469 middlepassive +active +112478 active +112484 passive +112495 active +112498 active +112504 active +112506 active +112511 active +112515 active +active +112521 active +112525 active +112527 active +112542 active +112554 active +active +112560 active +112563 active +112568 active +112578 passive +active +112583 active +112594 active +active +active +112599 active +112602 active +112612 active +112615 middle +112617 active +112621 passive +112626 active +112633 passive +112635 active +112637 active +112641 active +112643 passive +active +112649 active +112653 middlepassive +112656 active +112659 active +active +active +112667 active +112672 active +middlepassive +112685 active +112688 active +112690 middlepassive +112692 active +active +active +112697 active +112699 middlepassive +112705 passive +112712 active +112714 active +112718 passive +112725 active +112728 active +112732 passive +112735 active +112741 active +112745 active +112747 active +112759 middlepassive +112769 active +112772 active +112778 active +middlepassive +112792 active +112796 active +112802 active +112804 active +112809 active +112811 active +112815 middlepassive +112829 active +active +112836 active +112847 active +passive +112850 middlepassive +112852 active +112862 middlepassive +112872 passive +112875 active +112879 active +112882 active +112885 active +112887 active +112894 middlepassive +112896 active +112898 active +112901 active +112904 middlepassive +active +112918 passive +112920 middlepassive +112922 active +112929 middlepassive +112937 passive +112941 passive +112944 active +112946 active +112950 active +112959 active +112965 active +112967 middlepassive +112969 active +112974 passive +112977 middlepassive +active +active +112991 active +113003 active +113007 middle +113009 passive +113015 active +113024 active +113026 active +113033 middlepassive +113039 middle +113045 passive +113047 active +113054 active +113059 active +113066 active +113073 active +113090 active +113099 active +113103 active +113106 active +113110 active +113112 active +113116 active +middlepassive +113130 active +113132 active +113134 active +113142 active +113148 active +active +113154 active +113156 active +113162 active +113164 middle +113172 active +middle +113183 middlepassive +113188 active +113223 active +113227 active +113235 active +113247 active +113249 active +passive +113256 passive +active +113265 active +113278 passive +113286 active +113288 active +113294 active +113305 active +113319 passive +113331 active +113338 active +113341 active +113356 passive +113365 passive +113376 active +113380 active +113389 passive +113401 active +113404 middlepassive +113406 active +113408 active +113410 passive +113412 active +113417 active +113422 active +113424 active +113429 active +113441 active +113446 active +113449 active +113452 passive +113460 active +113464 active +113474 active +113480 passive +113482 middle +113486 active +113489 active +active +113494 active +113506 active +113509 active +113514 passive +113524 active +113531 middle +113536 middle +113539 active +active +113547 middle +passive +113555 active +active +113560 active +113563 passive +113567 active +active +113570 active +113575 active +active +113578 active +113580 active +113587 active +113590 passive +113602 active +113613 passive +113617 active +113624 active +113638 active +113640 active +113642 active +113644 active +113646 middle +113648 middle +113651 active +113654 active +113656 middle +113659 middlepassive +113661 active +middlepassive +113667 active +113674 active +active +active +113683 active +113692 middle +113697 active +113705 active +113707 active +113715 active +active +113719 active +113721 active +113731 active +active +113736 active +113739 active +113742 active +113747 active +113755 active +113779 active +113783 middle +113787 passive +113795 passive +113800 active +113802 active +113809 middle +113821 middlepassive +active +113824 active +113827 active +113831 middlepassive +113833 active +113841 active +113843 middle +113846 active +113855 active +113861 passive +113870 active +113875 middle +113879 middle +113899 passive +113904 active +113911 middlepassive +113914 middle +113918 active +113920 active +113925 active +113927 passive +113929 passive +113933 active +113939 active +middlepassive +113947 active +113952 middle +113956 passive +113965 active +113973 middle +113979 middle +113982 active +114004 middle +114013 active +114018 middlepassive +114025 active +active +114031 passive +114037 active +114041 active +114043 passive +114046 active +114049 active +114051 passive +active +114055 active +114060 active +114064 middlepassive +114066 active +114093 active +114102 passive +middlepassive +114111 active +active +active +114124 active +114127 active +114130 active +active +active +114139 middle +114144 active +114146 middle +114153 active +114155 passive +114165 active +114170 passive +114173 active +114176 active +active +114183 active +114187 passive +114194 active +114198 middlepassive +114201 active +114204 active +114206 middlepassive +114213 active +114232 active +114236 active +active +114244 active +active +114250 passive +114260 active +114265 active +active +114270 active +114277 active +114283 active +114288 middlepassive +active +114302 middle +active +114314 middle +114317 active +114328 middle +114332 active +114335 passive +114340 active +114342 active +114349 passive +114351 active +114356 passive +114360 middle +114369 active +114385 middle +114394 active +114399 active +114402 active +active +114406 active +middlepassive +114452 middle +114460 active +114469 passive +114497 active +114503 active +middle +114506 active +114513 middle +114516 active +114521 active +114531 active +114534 active +114556 middlepassive +114564 active +114567 active +114572 active +114575 active +active +114578 active +114590 active +active +114595 active +active +114599 active +114603 active +114620 active +114625 active +114629 active +114634 active +114640 middle +114649 passive +114655 passive +114664 active +active +114669 middlepassive +active +114682 active +114684 active +114686 active +114689 active +114693 active +114710 passive +114713 active +114716 active +114723 passive +114733 passive +114737 active +active +114742 middle +114758 passive +active +active +114768 middle +114772 active +114774 active +114776 middle +114781 middle +114790 active +114794 passive +114802 active +114805 middle +114817 active +114822 middlepassive +114839 active +114844 middle +114850 active +114858 active +114860 active +114862 active +114868 active +active +114873 middle +active +114880 active +114882 active +114884 active +114888 middle +114893 active +114899 passive +active +114909 active +114911 active +114924 passive +114932 active +114939 active +114949 active +114960 passive +114965 passive +114976 middlepassive +114978 middlepassive +114980 active +114983 middle +114985 active +114988 active +115004 middle +115006 active +115017 middlepassive +active +115022 passive +115024 active +active +115028 active +115034 active +active +115042 active +active +115050 active +115054 active +115056 active +115062 middle +115069 active +115071 middlepassive +115077 middle +115079 active +115129 active +115136 middle +115141 active +115149 active +115166 middle +115181 active +115191 passive +115200 active +active +115204 active +115209 active +115211 active +115221 active +115227 active +115244 active +115249 active +115254 middlepassive +115258 active +115263 active +115275 active +active +115285 active +115293 passive +115299 active +115323 active +115325 middle +115333 active +115335 active +115338 active +115341 active +115346 active +115349 active +115355 active +115360 middle +115363 active +115369 active +115373 active +115375 active +115380 active +active +115385 active +115389 active +115395 passive +115397 middlepassive +115427 active +115440 active +115445 active +115451 active +115455 active +115465 active +115476 middle +active +115486 middle +115494 active +115499 active +115503 active +115507 active +115512 middle +115518 middle +115525 active +115531 active +115533 active +115543 active +115545 active +115579 active +115582 active +115586 active +115606 active +115612 active +115616 middle +115619 active +115622 passive +115628 active +115633 passive +115638 active +115644 active +115650 active +115652 middlepassive +115658 active +115668 active +115673 passive +115676 active +active +115681 active +115683 active +115686 passive +115689 passive +115695 passive +115697 middle +115704 active +115709 middle +active +115715 active +passive +115722 active +115725 passive +active +115747 active +115751 active +115754 active +115756 middle +115759 active +115761 active +115764 middlepassive +115770 middlepassive +115772 active +115781 active +115784 active +115792 active +115797 active +115803 active +115807 passive +115809 active +115815 passive +115825 passive +115831 middle +115834 active +115849 active +115857 active +115861 active +115864 passive +115872 middlepassive +115875 active +active +active +115887 active +115892 middle +active +115898 middle +115905 active +115912 active +115919 active +115926 active +115932 active +115934 active +115938 active +115946 active +115949 active +115954 middlepassive +115958 middlepassive +115960 active +115965 passive +115967 middle +115978 passive +115986 active +115988 passive +middlepassive +115991 passive +active +115999 active +116009 active +116011 active +116027 passive +116032 active +116036 active +116041 passive +116047 active +116063 passive +116074 active +116087 active +116090 active +116100 active +116102 active +116119 active +116126 active +116133 active +116138 active +116140 passive +116146 active +116151 active +116157 middle +116162 active +116166 middle +116175 active +116178 active +116180 active +116189 passive +116192 passive +116203 active +116212 active +116215 passive +116221 active +116223 active +116233 active +active +116239 active +116246 active +116251 active +116255 active +116261 active +116263 middle +116271 active +116273 active +116276 passive +active +116281 passive +116284 passive +116286 active +116291 active +116295 active +116298 active +passive +116304 active +116311 passive +116315 active +116317 middlepassive +116322 active +116324 active +116326 active +116332 middle +116343 passive +116345 active +116352 active +116370 middle +116377 passive +116379 active +116385 passive +116387 active +116391 active +116397 active +116402 passive +116408 active +116410 active +116418 active +116424 active +116428 passive +116436 active +116443 active +116455 active +active +116470 active +116476 active +116486 middlepassive +116504 active +116513 passive +116523 active +116526 active +116534 active +116538 active +116542 middlepassive +active +116548 passive +116556 middlepassive +116564 active +116568 active +116577 passive +116580 passive +116586 active +116593 middlepassive +active +116596 active +116598 passive +116602 middlepassive +116607 active +116616 active +116623 active +116627 passive +116640 active +passive +116645 active +116650 active +116654 active +116660 active +116683 middlepassive +active +116693 active +116695 passive +116700 active +116702 active +116705 active +116709 passive +middle +116713 active +116718 passive +116735 active +116738 active +116743 active +active +116750 active +116753 active +116765 active +active +116775 active +116782 active +116784 active +116795 passive +active +116804 active +116814 passive +116817 middle +116839 active +116841 active +116848 passive +116850 middle +116859 passive +116861 middle +116867 active +116870 active +116872 active +116875 active +116882 active +116886 active +116890 middlepassive +116894 active +116901 passive +active +116908 active +116923 passive +116929 passive +116934 active +116940 middle +116948 middle +116953 active +116955 active +116959 active +116965 middle +116976 middle +116984 active +116990 middle +116997 active +active +active +117002 active +117005 active +active +117009 active +active +117014 active +active +117023 active +117036 middlepassive +active +117049 active +117059 middle +117063 active +117065 active +active +117068 middlepassive +117071 active +117081 middlepassive +117092 active +117098 middle +117114 active +117116 active +117123 active +117130 active +117134 passive +117143 active +117155 active +117157 passive +117162 active +117168 active +117176 active +117189 active +117191 active +active +117199 active +117204 active +117212 passive +117215 active +117219 active +117222 active +117232 passive +117237 active +117239 active +117242 passive +117244 active +117248 active +117255 active +passive +117264 active +117266 active +117277 active +117283 passive +117291 middle +117300 passive +117302 passive +117310 middlepassive +117314 passive +117318 active +117322 active +117330 active +117341 active +117346 active +117352 middle +117356 active +117368 passive +117382 active +117384 middlepassive +117393 active +117402 active +117416 active +active +117425 active +117428 active +117432 passive +117444 active +117450 active +active +117456 passive +active +117462 active +117468 active +117473 middlepassive +active +117479 middlepassive +117485 active +117488 active +117494 active +117500 passive +117508 middle +117511 active +117524 active +117531 active +117534 active +117539 active +117541 active +117556 passive +117561 passive +active +117566 active +117585 active +117595 active +117600 passive +117603 active +117608 active +117612 active +117617 active +117619 active +117621 active +117632 active +117634 passive +117636 active +active +117641 active +active +active +117649 passive +117658 active +117661 active +117669 passive +117675 active +117681 passive +117683 middlepassive +117685 active +middle +117688 middlepassive +active +117692 active +117709 active +117715 middle +117720 active +117728 active +117734 active +117736 active +117743 middle +117751 active +117753 active +117764 active +117767 middle +117773 middle +117780 active +117790 active +active +117796 active +117805 middle +117815 passive +117819 active +117821 active +117826 passive +117828 active +117833 active +117844 passive +117862 passive +117871 passive +117874 active +117882 passive +117889 active +117897 active +117908 active +117914 active +117916 active +117922 passive +117930 active +117935 active +117950 active +117959 active +117965 passive +117974 active +117982 active +117989 passive +117991 middlepassive +117994 active +117996 active +118010 middlepassive +118012 middle +118016 middle +118027 active +118043 active +118050 middle +118061 active +118063 passive +active +118081 active +118085 active +118094 active +118096 active +118103 active +118106 middle +118115 active +118117 passive +118127 passive +118130 middle +118139 active +118141 active +118143 middle +118150 passive +118152 passive +118163 active +118186 active +active +118194 middle +118212 active +118218 passive +118226 middlepassive +118238 passive +118248 active +118263 passive +118273 active +118278 middlepassive +118288 active +118291 active +118310 passive +118314 middlepassive +118318 active +118328 passive +118333 active +118338 passive +118341 middlepassive +118347 active +118350 active +118364 active +118369 middlepassive +118371 middlepassive +active +118376 middle +passive +118381 active +118386 active +118388 passive +118402 active +118405 middlepassive +118409 active +118414 active +118417 middle +118424 active +118426 active +118429 middle +118433 passive +118436 active +118438 active +118443 active +118454 active +118456 active +118460 passive +118462 active +middle +active +118466 active +118470 active +118476 active +118480 passive +active +118494 active +118497 active +118500 active +118506 middlepassive +active +118515 active +118519 active +118526 middlepassive +118528 passive +118539 active +118544 passive +118546 active +118556 active +118561 middle +118568 active +118570 active +118581 active +118593 passive +118605 active +118617 active +118622 active +118627 active +118639 middlepassive +118646 passive +118653 passive +118658 active +118667 middle +118669 active +118678 active +118686 active +118691 active +active +118697 active +118701 active +118709 passive +118719 active +active +118724 active +118734 active +118736 active +118739 passive +118745 active +118748 middle +118755 passive +118761 active +118763 active +118765 active +118769 active +118772 active +118779 active +118783 active +118785 middle +118791 passive +active +118802 passive +118808 passive +passive +118814 active +118819 active +118823 middle +active +active +118830 active +118833 active +118838 active +118844 active +118850 active +middle +118860 middlepassive +active +118864 active +118871 middle +118874 middle +118876 active +118884 active +118895 active +118897 passive +118902 passive +118906 passive +118910 active +passive +118920 middlepassive +118922 passive +active +118930 active +118935 passive +active +118938 active +118948 active +118950 active +118953 passive +118956 active +118960 passive +118962 active +118970 passive +active +118978 active +118980 active +active +118983 middlepassive +118987 active +118990 active +118993 middlepassive +118996 passive +119000 passive +passive +active +119011 active +119020 middle +119022 passive +119024 active +active +119028 active +119030 active +119034 active +119036 middlepassive +119038 middlepassive +119040 active +119049 active +119061 middlepassive +119065 active +119081 active +119088 middle +119090 middle +119095 passive +passive +119120 active +119124 middle +119130 active +119132 middle +119134 active +119139 active +119146 active +active +119150 active +119154 active +119158 active +119160 active +119162 active +119165 middle +119168 active +119172 middlepassive +119178 passive +119180 active +119184 active +119188 passive +119192 active +119196 middle +119199 passive +119203 passive +119206 middle +119211 active +119220 middle +119224 active +active +119234 active +119239 active +119241 active +119250 active +119257 active +119263 middle +119266 passive +passive +119274 active +119280 passive +119288 middle +middle +passive +119294 middle +119296 middlepassive +119303 active +119308 middle +119317 active +119322 active +119325 passive +119334 active +active +119337 active +119348 active +119351 active +119354 active +119364 active +119367 passive +119372 active +passive +119382 middle +119384 active +middle +119393 active +119395 active +119399 middlepassive +119415 middle +119417 middle +119419 active +119421 active +119424 active +119427 active +119430 passive +119433 passive +119439 active +active +119449 passive +119451 middle +119457 active +119464 active +119470 passive +passive +passive +119476 active +active +119483 passive +passive +passive +passive +119500 active +119507 passive +119512 middle +119521 middle +119526 passive +119530 active +119532 middlepassive +119536 middle +119545 active +119547 middlepassive +119550 active +119562 middlepassive +119565 active +119568 active +119576 active +119578 middle +119580 active +119590 active +119594 passive +119598 active +119602 middlepassive +119604 passive +119611 middlepassive +119615 active +119619 passive +119622 passive +119625 active +119627 active +119629 active +119633 middlepassive +119636 active +119640 passive +119648 active +119652 active +119657 active +119664 active +119672 active +119675 passive +119679 passive +119685 active +119694 active +119696 active +119701 active +119704 active +119714 active +active +119718 active +119729 passive +active +119733 passive +119737 passive +119739 active +119743 active +119751 passive +119753 passive +119755 active +119765 middle +119768 active +119771 active +119782 active +active +119787 passive +119801 middle +119806 active +119810 active +active +119814 passive +119819 active +119823 active +119827 active +passive +119830 passive +119846 active +middle +119849 passive +119854 active +119856 passive +119859 active +119862 passive +119866 active +119868 passive +119870 active +active +119876 active +119882 active +119892 passive +119902 passive +119912 active +119916 active +119918 middle +119920 active +119924 active +119926 middle +119930 active +119938 middle +119944 active +119948 middlepassive +active +119953 active +119966 active +119969 passive +119972 passive +119974 active +119977 passive +119981 active +active +119986 active +120000 active +120003 active +120007 middlepassive +120011 active +120013 active +120015 middlepassive +120019 passive +120021 passive +120025 active +120041 active +120047 passive +120049 active +120052 active +120056 active +120061 active +120063 active +120065 active +120070 passive +120072 active +120075 active +120077 middlepassive +120080 active +120091 active +middlepassive +120111 passive +120115 passive +120123 passive +120125 active +active +120130 active +120132 active +120137 active +120139 passive +120155 passive +120163 active +120173 active +120175 middlepassive +120184 active +120187 active +120189 active +120193 active +active +120198 active +120206 active +120209 active +120219 middlepassive +120223 passive +120226 middle +120228 middlepassive +120231 active +120234 active +120241 active +120246 active +120249 active +120254 middlepassive +120258 passive +120262 active +120266 passive +active +120270 active +120272 active +120275 passive +120283 active +120300 active +120307 active +120311 active +120331 active +120334 middlepassive +120343 active +120345 active +120350 passive +120355 middlepassive +middle +120358 middle +120361 middlepassive +120367 middlepassive +120392 active +120397 middle +120401 active +active +120409 middlepassive +120416 active +120418 active +120424 passive +120429 passive +120431 active +120434 active +120439 active +120442 passive +120445 active +120449 middle +120452 middle +active +120456 passive +120458 passive +120461 middlepassive +120466 middle +120480 middlepassive +120500 middle +120502 active +120509 active +120516 active +120523 middle +120532 passive +120536 active +120540 middle +middle +120547 middle +120549 active +120552 passive +active +120557 passive +120562 active +120565 active +120570 passive +120575 passive +120577 passive +120581 active +active +120587 passive +active +120591 passive +120603 active +active +120613 active +120618 passive +active +120625 active +120632 active +120637 active +120643 active +120647 active +120657 middlepassive +120659 middle +120667 middle +120672 middlepassive +active +120678 middlepassive +120685 middlepassive +120692 active +120697 active +120699 active +120708 active +120711 active +120714 middle +120716 active +120719 active +120727 active +middle +120741 middle +120744 active +120746 active +120748 active +120752 active +120768 active +120770 middlepassive +120780 active +120789 active +120801 active +120811 active +120818 active +120821 active +120827 active +120829 middlepassive +120835 active +120837 active +120840 middlepassive +120846 passive +120850 middle +120854 active +120861 middle +120874 middle +120876 active +120880 active +120886 active +120890 active +120896 active +120901 passive +120908 active +120912 active +120919 active +120922 active +120924 middlepassive +passive +120936 active +120938 active +120941 active +120946 active +120948 active +active +120952 active +120956 active +120958 active +active +120963 active +120966 active +120971 passive +active +120979 active +120981 middlepassive +120991 active +active +120997 active +120999 middlepassive +121002 active +121009 active +121011 passive +121016 active +121021 active +121024 middlepassive +121026 passive +121029 active +121044 active +121047 active +121051 active +121055 active +121058 active +active +121069 active +121077 active +121080 active +121084 active +121088 active +121090 active +121095 active +active +121104 active +121112 passive +active +121121 active +121125 active +121135 passive +121137 passive +121141 active +121143 active +121148 passive +121155 passive +active +121160 passive +121176 passive +middle +121183 active +121191 active +121199 active +121205 middlepassive +active +121210 middle +121213 active +121220 active +121225 active +121239 active +121242 passive +121250 active +middle +121256 active +121261 passive +passive +121270 active +middlepassive +121278 active +121281 active +middle +121287 active +121298 passive +121304 active +121309 active +121315 passive +121330 passive +121332 passive +121340 active +middlepassive +121351 active +121359 middlepassive +121366 active +121371 middlepassive +121378 active +121381 middlepassive +121389 active +121398 middlepassive +121401 active +121407 active +121416 active +121429 active +121439 middlepassive +121441 middlepassive +121446 active +121451 middlepassive +121474 active +121491 passive +121493 active +121509 middle +121514 active +121517 active +active +121520 active +121523 middlepassive +active +middlepassive +121527 active +121529 active +121533 middle +121535 active +121538 active +121541 middle +121547 active +121550 active +121559 active +121563 passive +active +121571 passive +121573 active +121578 active +121581 active +121585 active +121591 active +121593 active +121597 middle +121600 active +121603 passive +121607 active +121611 middle +121614 active +121618 active +121620 active +121624 active +121627 active +121629 active +121631 active +121637 passive +121643 passive +121647 active +121650 active +121654 active +121657 active +121661 active +121664 active +121669 active +active +121677 active +121682 middlepassive +active +121685 active +121689 active +121691 active +121694 active +121697 active +121701 middle +121707 active +121711 middle +121713 active +121716 middlepassive +121724 active +121729 middlepassive +121732 passive +121735 active +121740 active +121742 active +121744 active +121750 middlepassive +121759 active +121761 active +121763 active +121766 active +121769 active +active +121774 active +active +121781 middlepassive +121785 active +121791 active +121798 passive +121806 middle +121808 middle +121814 active +121818 middle +121824 active +121829 passive +121832 active +121837 active +121843 active +active +121849 active +active +121857 active +active +121862 middle +121866 active +121872 middle +121875 middlepassive +121881 active +121885 active +121889 active +121892 active +121901 active +121904 active +121909 passive +middle +121916 active +121918 active +121928 active +121933 middle +active +121936 active +121940 active +121945 active +121947 active +121959 active +121971 active +121984 active +active +121989 middlepassive +active +121992 active +active +121997 middle +122003 middle +122006 active +122018 active +122020 active +122022 active +122028 active +active +passive +122033 middle +122038 middlepassive +122042 passive +122044 active +122047 middle +122049 active +122055 middle +122058 active +122061 active +122072 middle +122077 active +122081 active +122091 passive +122096 active +122099 active +122102 active +122108 active +122114 active +122148 passive +122165 active +122169 active +122183 passive +122192 passive +122198 passive +122204 middlepassive +122208 active +passive +122222 middle +122226 passive +passive +122240 active +active +122247 active +active +middlepassive +122253 passive +middle +122264 active +122266 active +122274 active +active +122281 active +122287 middlepassive +122298 passive +122304 active +122308 passive +122312 middle +122317 passive +122322 active +active +122326 middle +122332 active +122334 active +122337 passive +122348 middlepassive +122359 active +122368 passive +122370 passive +122372 middle +122379 middle +122382 active +122394 passive +active +122402 passive +122419 passive +122424 passive +122438 active +122445 active +122452 active +122458 active +122470 active +122472 passive +122482 active +122484 active +122497 passive +122503 active +122508 active +122514 active +122518 passive +122522 middle +122542 active +122546 passive +122550 middle +122555 middlepassive +122559 active +122563 passive +122573 active +passive +122580 active +122589 active +122592 middle +active +122602 active +122607 passive +122613 active +122615 active +122618 active +122620 active +122622 passive +122633 active +122636 active +122640 passive +122653 active +122660 active +122676 passive +122679 passive +122681 active +122686 middle +122691 middle +122701 active +122706 active +122714 active +active +122721 passive +122731 active +122737 passive +122746 active +122751 active +active +122763 active +122774 active +122777 active +122780 middlepassive +122783 active +122786 passive +122809 active +122812 active +122818 active +122820 passive +active +122824 active +122826 active +active +122835 passive +122839 active +122843 active +122846 active +122853 active +122855 passive +122862 passive +122864 active +active +122867 active +122869 active +122871 active +122878 active +122889 middle +122892 active +122896 passive +122898 active +122901 passive +122903 passive +122915 passive +122923 active +122933 passive +active +122942 active +122970 active +122983 active +122986 active +122988 passive +122994 active +122999 active +123002 passive +active +123006 middlepassive +123012 active +123020 active +123030 passive +123044 active +123054 active +123058 passive +123061 active +123064 active +123066 active +123068 active +123071 active +123080 active +123083 active +123087 active +123089 active +123092 active +123109 active +123114 active +123120 middle +123124 active +123133 passive +123135 passive +123140 active +123151 active +123166 active +123170 passive +passive +123173 active +123182 active +123184 active +123189 active +123191 active +123198 active +123204 active +123208 passive +123211 passive +123215 passive +active +123222 active +123225 middlepassive +123233 passive +123239 active +123242 passive +123249 active +123267 active +123271 passive +123274 passive +123283 active +123290 middle +123304 active +123307 active +123309 passive +123314 active +123320 middlepassive +middlepassive +123333 passive +123335 active +123343 active +123345 active +123349 active +active +active +123359 passive +123362 passive +123367 active +123375 active +123377 active +123379 active +123389 active +123392 active +123402 active +123407 active +123416 active +123422 active +123427 active +123433 passive +123440 active +123454 passive +123462 middlepassive +123466 active +123469 active +123474 active +123483 passive +middlepassive +123486 passive +123502 middle +123507 active +123522 passive +123524 active +123535 middle +123552 active +123562 passive +123568 middle +123572 active +123580 passive +123590 active +123602 active +passive +123606 active +123625 active +123629 middlepassive +123634 passive +123637 middle +123645 passive +123652 middle +123657 middle +123660 active +123663 passive +123672 active +123679 active +123684 active +123687 active +active +123695 middlepassive +active +active +123699 active +123701 active +123705 active +123716 passive +123723 active +123733 active +123735 active +active +active +active +123755 middlepassive +123758 active +active +123761 active +123763 active +123770 active +middlepassive +123782 middle +123802 active +123818 passive +123841 passive +123846 active +123860 passive +123864 middle +123868 active +123882 active +active +123929 active +123931 active +123936 active +123948 active +123951 active +active +active +123964 active +123971 middle +123974 active +123977 active +123982 passive +123998 active +124001 active +124005 active +124007 passive +124010 active +124014 middlepassive +124017 active +124022 active +124026 active +124029 active +124042 active +124045 active +124048 active +124057 middle +124060 passive +124062 active +active +124075 passive +124081 active +124090 passive +124103 active +124107 active +124113 active +124116 passive +124119 active +124125 active +124131 active +124133 active +124136 middlepassive +124143 active +124146 active +124153 active +124161 middlepassive +124166 passive +124173 passive +active +124179 middle +124189 middle +124192 active +124197 active +124200 middlepassive +active +124207 active +124217 passive +124224 middle +124230 active +124236 active +124242 active +124244 middle +124248 active +active +124252 passive +124257 middle +124263 active +124267 active +124273 active +124275 active +124277 active +active +active +124283 passive +124291 middlepassive +124298 active +124308 active +active +124314 middlepassive +124320 passive +active +124330 middlepassive +124333 active +124337 active +124339 active +124346 active +124348 active +124360 passive +124368 active +active +124375 passive +passive +124380 middlepassive +124388 active +124393 middlepassive +124395 active +124402 active +124406 passive +124408 active +124411 active +124414 passive +active +124425 active +124430 active +124436 middlepassive +active +124443 active +124450 passive +124456 passive +124460 middle +active +124468 active +124472 passive +124475 middlepassive +124477 active +124484 middlepassive +124486 passive +124489 active +124505 passive +middlepassive +active +124516 active +124519 active +124525 active +active +124529 passive +124533 active +124540 active +124547 middle +124557 active +124560 active +124567 passive +124569 passive +124587 active +124589 middle +124602 middlepassive +124604 active +124606 active +124617 passive +124620 active +124625 active +124628 active +124631 active +124640 active +124651 passive +middle +124663 passive +active +124666 passive +124680 active +124697 active +124704 middlepassive +124706 active +124709 middlepassive +124712 middle +124717 active +124719 active +124729 middle +124732 passive +passive +124741 passive +124745 passive +active +124748 active +124755 active +124757 active +124767 passive +passive +124771 passive +passive +124783 active +124787 active +124791 active +active +124797 passive +124807 middlepassive +124817 passive +124820 active +124827 active +124834 active +124842 active +124856 active +middle +124864 passive +active +124870 active +124892 active +124896 active +124898 active +124903 middle +124908 active +124917 passive +124919 active +124921 active +124923 active +124930 active +124935 passive +124938 active +124940 active +active +124948 active +124969 active +124975 active +passive +124978 active +124983 active +124987 active +124993 active +124998 active +125002 active +125005 active +125012 active +middlepassive +125016 active +125024 active +125027 active +125032 active +125042 active +125048 active +125052 active +125054 active +125059 active +125063 active +125067 active +125072 active +125077 active +125083 active +125086 active +125088 active +125095 active +125101 active +125105 active +125109 active +active +125121 active +125141 active +125143 active +125149 active +125151 active +125153 active +125160 active +125162 active +125169 active +125173 active +125184 passive +125187 active +125191 active +125193 active +125196 active +125199 active +active +125204 active +125206 active +125215 active +125222 active +125226 active +125230 active +125233 active +125243 middle +125250 active +125252 active +125256 active +125261 active +125265 active +125269 active +125276 active +125282 active +125285 active +125292 active +125297 active +125300 active +125302 active +125306 active +125311 active +125314 passive +125323 active +125326 active +125331 active +125334 active +125338 active +125341 active +125345 active +125348 active +125353 active +125357 active +125365 active +125367 active +125371 active +125381 active +125385 active +125413 active +125421 active +125423 middle +125432 active +125437 active +125444 active +125447 active +125450 middlepassive +125455 active +125457 active +125461 active +125464 active +125467 active +125474 active +125476 active +125481 passive +125484 active +125491 active +125496 active +125498 active +125503 active +125508 active +125518 active +125520 active +125526 middlepassive +125530 active +125534 active +125538 middlepassive +125546 middlepassive +125552 active +125554 active +125560 active +125563 active +125568 active +125572 active +125576 active +125586 active +125589 active +125594 middle +125601 active +125605 active +125612 active +125615 active +125621 active +125624 active +125631 active +125637 active +125640 active +125644 active +125646 active +125652 active +125657 passive +active +125662 passive +125670 active +125673 active +active +125679 active +125684 passive +active +125688 active +125695 passive +125697 active +125703 active +125707 active +125713 active +125716 passive +125718 middle +active +125722 passive +125725 middle +125727 middle +125730 active +125734 active +125740 active +125745 active +125748 active +125754 active +125758 active +125762 active +125765 passive +125769 active +125775 active +125780 active +125782 active +125785 active +125787 active +125790 active +125794 active +125797 active +125801 active +125805 active +125807 active +125813 active +125819 active +125822 passive +125828 active +125835 passive +125841 active +125847 active +125850 middlepassive +active +125856 passive +125860 active +125873 active +125876 active +125883 active +125889 active +125893 active +125897 active +125905 active +125907 active +125914 active +125921 active +125930 active +125932 active +125937 active +125939 active +125947 active +125952 active +active +125959 active +125964 active +125966 active +125971 active +125976 active +125979 active +125989 active +125992 active +125998 active +126002 active +126008 active +126013 active +126015 active +126026 active +126030 active +126043 middle +126048 active +126052 active +126058 active +126064 active +126071 active +126078 active +126080 active +126087 active +active +126095 active +126101 active +126104 active +126109 active +126118 active +126121 active +126126 active +126132 active +126140 active +126142 active +126150 active +126155 active +126157 active +126164 active +126168 active +126174 active +126182 active +126187 active +126191 active +126197 active +126204 active +126207 active +126212 active +126214 middlepassive +126220 active +126227 active +126229 active +126233 active +126246 active +126252 active +126257 active +126262 active +126264 active +126267 active +126271 active +126276 active +126280 active +126291 active +126299 active +126303 active +126307 passive +126309 active +126314 active +126316 active +126323 active +126326 passive +126339 active +126346 active +126351 active +126357 active +126363 active +126366 active +126380 active +126384 active +126386 active +126390 middlepassive +126392 active +126398 active +126405 passive +active +126409 active +126413 active +126423 active +126427 middlepassive +126429 active +126433 active +126441 active +126444 active +126453 active +126461 active +126463 active +126467 active +126475 active +126478 active +126485 active +126491 active +126494 passive +126501 active +126510 active +126513 active +126520 active +126529 active +126536 active +126539 middlepassive +126541 passive +126546 active +126550 active +126554 active +126556 active +126563 active +126565 active +126569 active +126574 active +126576 middlepassive +126581 active +active +126587 active +126592 active +126595 active +126602 active +126605 active +126611 passive +126615 active +126617 active +active +126620 passive +126625 active +126627 active +126635 active +126640 active +126643 active +126652 active +126659 active +126663 passive +126667 active +126672 active +126676 active +126683 active +126685 active +126691 active +126694 active +126700 active +126702 active +126725 active +126727 active +126731 active +126736 active +126738 active +126753 active +126759 active +126765 active +126768 active +126774 active +126780 active +126786 active +126793 active +126797 active +126801 active +126806 active +126815 active +126821 active +126833 active +126835 active +126838 active +126843 active +126851 active +126853 active +126856 active +126865 active +126869 active +126872 active +126876 active +126882 middle +126887 active +126891 active +126893 active +126897 middle +active +126900 active +126904 active +126909 active +126913 active +126918 active +126920 active +126924 active +126928 active +126935 active +126937 active +126941 active +126943 active +126948 active +126952 passive +126957 active +126960 passive +126964 active +126970 middle +126972 active +126977 active +126985 middlepassive +126987 active +126993 active +126995 active +126999 active +127003 active +127014 active +127022 active +127036 active +127048 active +127055 active +127061 middle +127065 middle +127086 passive +127089 active +127094 active +127099 active +127106 active +127108 active +127116 active +127120 active +127124 active +127128 active +127136 active +127138 active +127144 active +127146 active +127154 active +127157 middlepassive +127161 active +127167 active +127171 active +127173 middle +127177 active +127180 active +127183 active +127191 active +127193 active +127204 active +127207 middlepassive +127215 active +127217 active +127222 active +127225 active +127228 active +127230 active +active +127237 active +127240 active +127242 passive +127248 active +middle +127256 active +127261 passive +active +middlepassive +127279 active +127285 middlepassive +127287 passive +127289 active +127291 passive +127296 passive +127298 middlepassive +127301 active +127309 active +127314 active +127316 active +127323 active +127326 active +127329 middle +127337 active +127345 active +active +127354 active +127356 active +127362 active +active +127368 middlepassive +127371 active +127377 active +127381 middlepassive +127386 active +active +127392 active +127395 active +127399 passive +127404 middlepassive +127409 middlepassive +active +127415 active +127418 middlepassive +127425 active +127429 active +127431 active +127433 active +127437 passive +127448 active +127450 active +127456 active +active +127459 active +127463 active +127469 active +127471 active +127474 active +127479 active +127482 middlepassive +127486 middlepassive +127502 passive +127506 passive +127514 passive +127518 middle +active +127527 active +active +127530 active +middlepassive +127534 passive +127539 passive +127544 passive +127555 active +127567 middlepassive +127569 middlepassive +active +127573 active +127581 active +127586 active +active +127592 active +127597 active +127609 active +127623 active +127625 active +127629 middlepassive +127634 active +127639 middlepassive +127642 active +127645 active +127648 active +127653 middle +middlepassive +127664 active +127667 active +127669 active +active +127678 active +active +127687 middlepassive +127690 passive +127698 passive +127705 passive +127711 middle +127713 active +127720 middlepassive +127723 active +127728 passive +127733 active +passive +127738 active +127751 passive +127753 active +127760 active +middle +active +127768 active +127773 active +127784 active +127791 active +127797 active +127804 middlepassive +127809 active +127811 active +127818 passive +127822 passive +127832 active +127838 middle +127840 middlepassive +127848 active +127850 active +127854 active +127858 active +127867 middlepassive +127872 active +middlepassive +127887 middle +active +active +127892 active +127895 active +127898 active +127904 passive +127908 middlepassive +active +127913 active +127952 active +127956 active +127961 middle +127964 active +127966 active +active +127977 active +127988 active +127991 active +127994 active +128000 active +128004 passive +128023 active +128026 active +128029 middlepassive +128060 active +128063 active +128074 active +128095 middle +middlepassive +128101 middle +128108 active +128110 middle +128121 active +128127 active +128132 active +128135 active +128138 middlepassive +128157 middle +128162 passive +128173 middle +128181 active +128188 active +128190 active +active +128195 active +128220 active +active +128225 active +128229 active +active +128242 middle +128245 passive +128280 passive +128290 active +128306 middlepassive +128314 active +128321 active +128323 active +128331 active +128337 active +128339 middlepassive +128341 active +128349 active +128351 middle +128354 middle +active +active +128363 active +128372 active +128374 active +128377 active +128380 active +middle +128390 active +128408 active +128416 active +128423 active +128425 active +128427 active +128436 active +128444 active +128458 middlepassive +active +128462 active +128464 active +128469 active +128471 active +128476 active +128478 active +128485 active +128487 active +128496 active +128498 active +128500 active +128502 active +128507 active +128511 middlepassive +128514 active +128524 active +128527 active +128529 active +128536 active +128538 active +128540 active +128544 active +128548 active +active +128551 active +128558 active +128571 active +128573 active +128580 middle +128583 active +active +128593 active +128599 active +128601 active +128605 active +128611 middlepassive +128613 active +active +middle +active +128619 active +128625 passive +128627 active +128631 middlepassive +128636 active +128643 active +128645 active +128649 active +128653 active +128656 passive +128669 active +128671 active +128673 active +128680 active +128682 active +128689 active +128695 middle +128711 passive +128717 active +128719 active +128724 active +128726 active +128731 active +128734 active +128740 active +128743 active +128745 active +128748 active +128755 active +128759 middlepassive +128763 active +128773 active +128775 active +128779 active +128783 active +active +128789 passive +128791 active +128799 passive +128804 active +128808 active +128816 active +128818 active +128824 active +128837 active +128864 active +128868 active +128873 active +128877 active +128879 active +128883 active +128885 active +128888 active +128892 active +128895 active +active +128901 middle +active +128908 active +128916 active +128925 active +128929 middle +128935 active +128937 active +128942 active +128950 active +128959 active +128965 active +128971 active +128973 active +128980 active +active +128985 active +128988 active +128991 active +128997 active +129004 active +129014 passive +129017 active +129023 active +129030 active +129032 active +129036 active +129046 active +129048 active +129050 active +129060 active +129066 active +129068 active +129071 active +middlepassive +active +129075 active +129079 active +active +129083 active +129086 passive +129092 active +129094 active +129096 active +129098 active +129100 active +129104 active +active +129111 active +129114 active +129118 active +129125 active +129130 active +129137 active +129139 active +129141 middle +129148 active +129158 active +129172 active +129174 active +129178 active +129188 active +129190 active +129196 active +129201 active +129204 active +129206 active +129209 active +active +129214 middle +active +129219 passive +129222 active +129224 middlepassive +129228 active +129230 active +129236 middle +129240 middle +active +129248 active +129251 active +129254 active +129256 middlepassive +middle +active +129261 active +129263 active +129269 active +129272 active +129275 active +129283 active +129290 active +middlepassive +129296 active +129298 active +129302 middlepassive +129304 active +129306 active +129309 active +129314 active +active +129328 active +129331 active +129351 active +129366 active +129368 active +129372 active +129382 active +129384 active +129399 active +129404 active +129409 active +active +129417 active +129423 active +129425 active +129431 active +129434 active +129436 active +129440 active +129443 active +129446 active +129457 active +129459 active +129463 passive +129467 active +129472 middle +129475 passive +129483 active +129488 active +129492 active +active +129495 active +129497 active +129499 active +middle +active +129506 active +129509 active +129514 active +129517 middle +129521 active +129529 active +active +129532 active +129541 active +129543 active +129553 active +129555 active +129559 active +129564 active +129566 middle +129568 passive +129578 active +129581 active +129584 active +active +129588 active +129591 middle +129594 active +129596 middle +129600 middle +129602 middlepassive +129610 middlepassive +129613 middlepassive +129642 middlepassive +passive +129658 middlepassive +129668 passive +129673 active +129699 active +129721 active +129732 middlepassive +129741 active +129748 active +129753 active +129757 active +129767 active +129770 active +129773 middlepassive +129776 active +129785 middlepassive +129790 active +129796 middlepassive +129803 middlepassive +129808 active +129810 active +129817 active +129824 active +129832 active +active +129844 active +129852 active +129854 passive +129856 active +129861 middlepassive +129866 passive +129870 passive +129874 active +129877 active +129883 active +129887 active +129892 middlepassive +129905 active +129909 active +129912 active +129917 passive +active +129922 active +129929 active +129932 active +middle +active +129945 active +129954 active +129969 active +129971 passive +active +129979 active +129985 passive +129991 active +129993 active +129998 middlepassive +130004 active +130015 active +130019 active +130025 active +130028 active +130034 active +130037 active +130039 active +active +130044 active +130049 passive +130051 active +130068 active +130077 active +130082 active +130084 active +130098 active +130107 active +130111 active +130115 passive +active +130150 active +130156 active +active +130159 middlepassive +130186 active +130191 active +130193 active +130195 active +130197 active +130206 active +130212 active +130216 middlepassive +130218 active +130220 middle +130225 middlepassive +130228 active +130231 passive +130235 active +active +130239 active +130242 active +130247 active +130251 active +middlepassive +130254 active +130260 middlepassive +130263 passive +130265 active +130274 active +130276 passive +130282 active +130287 active +130291 active +middlepassive +130294 active +130296 middle +130301 middlepassive +130304 active +130311 active +130319 active +130335 active +130338 active +130343 active +130348 active +middlepassive +130351 active +130353 middle +130358 middlepassive +130368 active +130372 passive +130380 active +130397 active +130401 active +130408 passive +130419 active +130421 active +130424 active +130434 active +130436 active +130442 active +130447 passive +130453 passive +130456 middle +130461 passive +130471 active +passive +130477 active +130479 active +130487 middle +130491 middle +130500 middle +130508 active +130514 active +130521 passive +130525 passive +130528 passive +130538 passive +130561 active +130573 active +130579 active +130583 active +130588 middlepassive +130599 active +130609 middlepassive +passive +130613 active +130616 active +130623 active +130631 active +130645 active +130648 active +130652 active +130655 active +130657 active +130665 passive +active +130672 active +130674 active +130684 active +130695 active +130699 passive +130704 passive +130715 passive +130771 passive +130774 active +130776 middle +130781 active +130783 middlepassive +130793 active +130801 passive +130811 active +130814 active +130821 middlepassive +130832 active +130844 active +130853 active +130856 active +130888 middle +130893 active +130897 passive +130903 active +130906 active +130908 active +130913 active +130915 active +130918 active +130920 middlepassive +130927 active +130932 active +130941 active +130948 active +130959 middlepassive +130963 active +130967 active +130970 active +130974 active +130990 active +130993 active +131000 active +131011 active +131016 middle +131024 active +131032 active +131034 passive +131041 active +131043 passive +131047 active +131051 passive +131056 active +131072 active +131089 active +131095 active +131103 active +131108 middle +131121 active +131125 active +131128 active +131132 active +131134 middle +131138 passive +131142 passive +131151 passive +131157 passive +131162 passive +131167 active +131173 passive +passive +131179 middle +131186 active +131196 active +131203 passive +131208 active +131210 active +131216 passive +131220 active +131237 passive +131241 middle +131252 active +131257 passive +131262 active +131264 passive +131280 passive +131288 active +131297 active +131299 active +131302 middlepassive +131305 active +131312 active +131326 active +active +131332 active +131334 active +131339 active +131344 passive +131353 active +131359 active +131369 passive +131384 active +131390 passive +131394 active +131401 passive +131405 active +131422 active +131431 passive +131435 active +131439 passive +131450 active +131457 active +131465 active +131468 active +active +131471 active +131483 passive +131503 active +131514 active +131516 active +131532 active +131536 active +131550 active +131555 active +131572 active +131578 active +middle +middlepassive +131590 active +131592 active +131607 active +131612 active +131615 active +131620 passive +131628 passive +131633 passive +131644 active +131658 active +131664 active +131672 middlepassive +131675 active +131695 middlepassive +131701 passive +131721 middlepassive +131731 active +131747 active +131752 active +131760 passive +131766 active +131775 active +131796 middlepassive +131798 active +131800 active +131802 active +131805 active +131826 active +131830 active +131834 passive +131858 active +131864 passive +131866 active +131882 active +131887 middlepassive +131890 active +active +131900 active +131904 active +active +131907 active +131912 active +active +131915 active +131922 active +131927 active +131935 active +active +131946 active +131949 active +131956 active +131980 middle +131991 active +active +131994 passive +132000 active +132010 active +132015 active +132019 active +active +active +132025 passive +132032 active +132041 active +132045 active +132047 active +132052 active +132054 active +132056 active +132059 active +132068 middle +132073 active +132082 active +132085 active +132095 active +132097 passive +132102 active +132104 active +132107 active +132118 passive +132123 active +active +132126 active +132136 active +132146 active +132151 active +132153 passive +132161 active +132166 active +132172 active +132177 passive +132180 active +132194 active +132198 active +132200 active +132202 middlepassive +132208 active +132215 active +132217 active +132219 active +132221 passive +132223 active +132226 active +132232 active +132240 active +132244 active +132249 active +132257 active +132260 active +132267 active +132271 active +132276 active +132279 active +132293 passive +132303 passive +132305 active +132324 active +132328 passive +132333 active +132337 active +132341 passive +132344 active +132351 active +132353 active +132369 active +132373 active +132381 active +132384 active +132387 active +132393 active +132395 active +132398 active +132406 active +132416 middle +132424 active +132426 passive +132438 middle +132440 active +132450 active +middle +132456 middlepassive +132462 active +132464 middle +132470 active +middle +132484 active +132499 middlepassive +132504 active +132510 active +132513 active +active +132522 active +132525 active +132527 active +132534 active +132538 passive +132540 active +132549 passive +132551 active +132564 middlepassive +132574 active +132576 active +132580 passive +132590 passive +132601 middle +132615 passive +132620 passive +132641 active +132643 active +active +132646 passive +active +132649 passive +132656 middle +132660 active +132677 active +132685 active +132693 active +132698 active +active +132702 active +132706 active +132708 active +132712 active +active +132721 passive +132736 active +132741 active +132744 passive +132750 active +132757 middle +132769 active +132774 active +132783 active +132787 passive +132793 passive +132803 passive +132809 active +132813 passive +132823 passive +132825 active +132831 active +132833 middle +132852 passive +132859 active +132870 active +132886 active +132894 passive +132900 active +132908 active +132913 active +132916 active +132920 active +132923 active +132927 passive +132931 active +132935 active +132939 passive +132950 middlepassive +132959 passive +132972 active +132988 active +132990 active +132996 active +133003 active +133007 active +133015 passive +133022 active +active +133032 active +133038 active +133043 passive +133050 active +133055 active +active +133080 active +active +133098 active +133119 passive +133128 passive +133130 passive +133138 active +133142 active +133148 active +133151 active +133158 middlepassive +active +133163 passive +133166 active +133171 passive +133174 active +133179 active +133188 active +133200 active +133202 passive +133204 active +133210 active +133213 passive +133226 active +133230 active +133235 passive +133248 passive +133254 active +133256 active +133263 active +133268 active +active +133273 passive +133275 active +133284 active +133287 active +133292 active +133298 active +133308 active +133312 active +133319 active +133321 active +133327 passive +133334 active +133339 active +133344 active +133352 active +133354 active +133362 passive +133364 active +133368 active +133370 active +133374 active +133379 active +133385 active +133387 passive +133389 active +133397 active +133403 active +133408 active +133413 passive +133415 active +133435 active +133453 middlepassive +active +133456 active +133460 active +133476 active +133478 active +133480 active +133488 active +133497 active +133499 middle +133502 active +133514 active +133524 passive +133530 active +133548 active +133551 active +133557 active +133573 middlepassive +active +133585 passive +133590 active +133595 passive +133598 active +133601 active +133606 active +133608 passive +133624 passive +133627 active +133629 active +133632 middlepassive +133635 active +133638 active +133641 middlepassive +133655 active +133659 passive +133663 active +133667 active +133674 active +133676 active +133691 active +active +active +active +133707 active +133715 active +133717 active +133723 active +133731 active +133744 middle +133753 passive +133762 passive +133783 active +133786 active +133792 active +133802 active +133809 active +133815 active +133825 active +133830 active +active +133838 active +133841 active +133845 passive +133854 active +133858 active +133860 middle +133867 middlepassive +133871 active +133888 active +133892 active +133897 middlepassive +133901 active +133906 active +133908 active +133911 active +133913 passive +133919 active +133921 middlepassive +133932 passive +133938 active +133946 active +133955 active +133960 active +133965 active +133969 active +133974 active +active +133982 active +133990 active +133995 active +134005 active +134011 active +134022 passive +134029 active +134044 active +134055 active +134063 passive +134069 active +134073 passive +134077 active +134093 active +134099 active +134104 active +134117 active +134142 passive +134145 active +134156 active +134158 active +134165 passive +134169 active +134171 passive +134182 active +134187 active +134194 middle +134199 passive +134211 active +134218 active +134224 active +134231 passive +134247 middlepassive +active +134253 passive +134261 active +134267 active +134271 active +134273 active +134285 active +134289 active +134297 middle +134306 active +134313 active +134320 active +134328 middle +134340 active +134344 active +134357 middle +134360 active +134365 active +134367 active +134369 active +134372 active +134377 active +134383 active +134387 active +active +134390 active +134392 active +134395 active +134411 active +134419 passive +134421 active +134427 passive +134433 active +134439 active +134448 active +active +134455 active +134465 middle +134469 passive +134471 middlepassive +134479 active +134495 active +134503 active +134514 passive +134519 passive +134529 active +134553 active +134556 active +134559 middlepassive +134566 active +134579 middle +middlepassive +134585 active +134587 active +134594 active +134596 active +134601 active +134607 passive +134613 active +134621 active +134630 active +active +134633 middle +134642 middle +134645 middle +134649 middle +134658 middle +134671 active +134676 passive +134680 active +134694 active +134698 passive +134704 active +134712 active +134724 active +134730 active +134737 active +134742 active +134745 active +active +active +134756 middlepassive +134762 active +134768 passive +134770 active +134780 active +134787 active +134789 middlepassive +134793 active +134796 active +134805 active +passive +134811 passive +134818 active +134825 active +134838 passive +134854 active +134857 active +134871 active +active +134877 active +134883 active +134885 active +134895 active +134898 active +134909 active +active +134913 active +134915 active +active +134923 active +134925 passive +134927 active +134935 passive +134944 active +134948 active +134951 active +134953 middle +134958 active +134965 active +134969 middlepassive +134975 active +134978 active +134981 active +134985 active +134988 active +134991 active +active +134997 active +135000 active +135004 active +135009 active +135013 active +135019 active +active +135026 active +135033 active +135040 active +135049 active +135054 active +135058 active +135061 active +135077 active +135082 active +135086 middlepassive +active +135100 active +135105 active +135109 active +135111 passive +135118 middle +135121 active +135127 active +135132 active +135137 active +135141 active +135148 passive +135157 active +active +135164 active +135173 active +135176 active +135180 active +135186 passive +135192 active +135196 active +active +active +135203 middle +135217 passive +135227 active +135238 active +135250 active +135252 active +135258 active +135262 active +135267 active +135278 active +135280 passive +135288 active +135294 active +135299 active +135301 active +135312 active +active +135317 active +135320 active +135325 active +135332 active +135334 middlepassive +135339 active +135344 active +135350 active +135362 passive +135369 active +135372 active +135374 middle +135384 active +135386 active +135388 active +135396 active +135403 active +135418 active +135427 active +135429 active +135434 active +135515 active +135525 middle +135533 active +135538 active +135543 middle +135550 active +135552 active +active +135561 passive +135568 passive +135579 passive +135591 active +135598 middlepassive +135601 active +135603 active +active +135610 active +135618 active +135625 active +active +135628 active +active +135638 active +135641 active +135654 passive +passive +135669 active +135678 active +135687 active +135691 active +135694 passive +135702 passive +135715 passive +135726 passive +135735 passive +135744 active +135755 passive +135763 active +135773 passive +135780 passive +135788 passive +135794 active +135803 active +135824 active +135830 active +135838 active +135849 active +135855 active +135862 active +135873 active +135877 middlepassive +135881 active +135889 active +active +active +135900 middlepassive +135908 active +135923 active +135926 active +135933 active +135935 active +135937 active +135942 active +135951 active +135954 passive +135957 middle +135968 active +135970 active +135972 active +135982 passive +135984 active +135992 active +135994 active +135999 active +136002 active +136004 active +136006 active +136014 active +136020 active +136025 active +136031 active +136034 passive +136036 middle +136041 middlepassive +136044 passive +136051 active +136053 active +136067 active +136069 passive +136072 active +136077 passive +136079 passive +136082 passive +136097 active +136102 middle +136111 middlepassive +136117 active +136122 active +136129 active +136143 active +136153 passive +136160 active +136163 active +136168 active +136172 active +136177 middlepassive +136180 active +passive +136190 active +136204 middlepassive +136219 active +136231 passive +active +136237 middlepassive +136247 passive +136256 active +136263 active +136265 active +136272 active +136276 active +passive +136286 passive +136292 passive +136297 middlepassive +136302 active +136311 passive +136317 active +136319 active +136323 active +136336 active +136344 active +136350 active +136355 active +136361 active +136363 active +136368 active +136373 passive +136379 active +passive +136385 active +136388 active +136393 passive +136399 passive +136413 active +136422 active +136434 active +136436 active +136447 active +136449 passive +136462 active +136475 active +136478 middle +136486 active +136494 passive +136498 passive +136506 middle +active +136521 active +136536 active +136543 active +136552 passive +136554 active +136560 active +136566 active +136568 passive +136584 passive +136594 active +136600 middlepassive +136607 active +136616 passive +136619 active +136627 active +136633 passive +136637 passive +136639 active +136643 passive +136648 passive +136657 active +136671 active +136678 passive +136690 passive +136705 active +136710 passive +136716 passive +passive +136724 active +136738 active +136743 active +136746 active +136753 active +136760 passive +136763 passive +136768 active +136774 active +middle +136784 active +136791 middle +136798 middle +136800 active +136811 middle +136820 middle +136825 active +136827 active +136829 middlepassive +136833 middle +136835 active +136838 active +active +136847 active +136849 active +136851 active +136865 active +active +136876 active +active +136880 middle +136885 middle +136894 passive +136914 passive +136919 active +136925 active +136932 active +136937 active +136944 active +136947 active +active +active +136958 active +136968 active +136975 active +136982 active +136996 active +active +137002 active +137012 passive +137015 active +137045 active +137060 active +137063 active +137068 active +137083 middlepassive +137092 active +137111 active +137113 active +137124 active +137150 passive +137200 active +137217 active +137232 active +137237 active +137245 active +137252 active +137261 active +137273 active +137285 passive +137290 middle +137293 active +137306 active +137313 active +137320 passive +137329 active +137337 middlepassive +137359 active +137365 active +137382 middle +137394 middle +137399 active +137402 middle +137417 middle +137421 active +137432 active +137436 active +137443 active +137460 active +137464 active +137469 middle +137472 active +137474 middle +middlepassive +137479 active +137490 active +137492 active +137496 active +137498 active +active +active +137507 active +137511 active +137513 active +137515 active +137526 active +137534 active +137536 active +137539 active +137551 active +137553 active +active +137559 passive +137565 active +137570 passive +137572 middle +middlepassive +137581 active +137587 active +137606 active +137611 middle +137623 active +137644 active +137646 active +137650 active +137654 active +137661 active +137680 active +middlepassive +137684 active +active +middlepassive +137689 active +middlepassive +137692 active +active +137697 active +137701 active +137711 active +137714 active +137722 passive +137730 active +137739 active +137757 passive +137762 active +137764 active +137767 middlepassive +137770 middlepassive diff --git a/tf/0.1.1/word_num.tf b/tf/0.1.1/word_num.tf new file mode 100644 index 0000000..fca3455 --- /dev/null +++ b/tf/0.1.1/word_num.tf @@ -0,0 +1,137793 @@ +@node +@author=Evangelists and apostles +@converters=Tony Jorg, Saulo Oliveira de Cantanhêde, Dirk Roorda +@description=this is XML attribute word_num +@institute=ETCBC (Eep Talstra Centre for Bible and Computer) +@sourceDescription=Nestle 1904 edition +@sourceFormat=XML +@title=Greek New Testament +@valueType=str +@version=0.1.1 +@xmlVersion=2022-11-01 +@writtenBy=Text-Fabric +@dateWritten=2023-05-08T14:27:22Z + +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +6 +5 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +31 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +3 +4 +5 +2 +6 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +33 +32 +34 +35 +36 +37 +38 +39 +40 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +4 +3 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +23 +22 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +26 +25 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +25 +23 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +16 +19 +20 +21 +22 +23 +24 +25 +26 +27 +29 +30 +28 +31 +32 +33 +34 +35 +36 +37 +38 +39 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +3 +4 +5 +2 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +10 +7 +8 +9 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +11 +10 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +3 +4 +1 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +10 +12 +13 +9 +11 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +5 +4 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +17 +13 +14 +15 +16 +18 +19 +20 +21 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +28 +27 +32 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +19 +15 +16 +17 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +2 +3 +1 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +13 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +16 +15 +17 +19 +18 +20 +1 +2 +3 +4 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +1 +2 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +22 +20 +21 +23 +25 +24 +26 +28 +27 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +29 +28 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +3 +1 +2 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +17 +16 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +8 +9 +10 +11 +12 +13 +5 +6 +7 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +8 +7 +9 +2 +1 +3 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +30 +29 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +4 +3 +5 +6 +8 +10 +7 +9 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +14 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +6 +5 +7 +8 +9 +11 +10 +12 +13 +14 +16 +15 +18 +17 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +19 +16 +20 +21 +22 +23 +24 +2 +1 +3 +5 +4 +6 +7 +8 +10 +9 +11 +13 +12 +14 +15 +16 +17 +18 +1 +2 +4 +3 +5 +6 +8 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +14 +13 +15 +16 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +18 +15 +16 +17 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +16 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +7 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +3 +1 +2 +4 +5 +6 +8 +9 +10 +7 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +3 +4 +1 +5 +6 +7 +8 +10 +9 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +4 +3 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +1 +2 +4 +3 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +15 +18 +19 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +15 +13 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +22 +18 +19 +20 +21 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +4 +5 +6 +7 +1 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +26 +24 +25 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +13 +15 +14 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +12 +10 +13 +14 +15 +1 +3 +4 +5 +6 +7 +2 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +3 +4 +5 +2 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +6 +5 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +31 +30 +32 +33 +34 +35 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +4 +1 +2 +3 +5 +6 +7 +9 +8 +11 +10 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +4 +3 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +13 +12 +14 +15 +16 +1 +2 +5 +3 +4 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +25 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +16 +17 +15 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +20 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +32 +33 +31 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +1 +2 +3 +5 +4 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +17 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +3 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +18 +17 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +7 +8 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +11 +12 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +3 +2 +4 +5 +6 +8 +7 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +14 +11 +12 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +4 +2 +3 +5 +6 +7 +8 +10 +9 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +21 +22 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +10 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +3 +4 +5 +6 +7 +8 +9 +2 +10 +11 +12 +1 +3 +2 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +8 +7 +12 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +6 +5 +8 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +3 +4 +5 +6 +2 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +15 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +4 +5 +6 +3 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +5 +4 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +5 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +4 +5 +6 +7 +2 +3 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +6 +3 +4 +5 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +14 +15 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +12 +9 +10 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +9 +3 +4 +5 +6 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +17 +18 +15 +16 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +20 +18 +19 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +4 +5 +6 +7 +2 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +6 +7 +8 +9 +10 +5 +11 +12 +13 +14 +15 +17 +16 +18 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +7 +5 +6 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +3 +4 +5 +6 +7 +8 +9 +2 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +25 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +5 +6 +7 +8 +4 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +14 +15 +16 +17 +10 +11 +12 +13 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +6 +4 +5 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +12 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +32 +31 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +1 +2 +3 +5 +6 +4 +7 +9 +10 +11 +8 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +5 +8 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +30 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +1 +2 +3 +4 +6 +5 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +7 +6 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +5 +6 +7 +8 +9 +4 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +4 +3 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +2 +1 +3 +4 +6 +5 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +3 +1 +2 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +12 +11 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +11 +12 +13 +14 +15 +9 +10 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +4 +5 +3 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +13 +12 +14 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +9 +8 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +17 +14 +15 +16 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +8 +9 +10 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +8 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +5 +3 +4 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +16 +17 +13 +14 +15 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +8 +7 +12 +9 +10 +11 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +5 +6 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +15 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +6 +7 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +9 +3 +4 +5 +6 +7 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +2 +1 +3 +4 +5 +7 +8 +6 +9 +11 +10 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +7 +6 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +1 +2 +8 +3 +4 +5 +6 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +4 +5 +6 +7 +8 +9 +1 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +7 +6 +8 +9 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +18 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +7 +8 +9 +10 +11 +6 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +9 +7 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +3 +4 +5 +1 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +3 +4 +1 +2 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +6 +1 +2 +3 +4 +5 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +9 +3 +4 +5 +6 +7 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +6 +7 +8 +5 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +8 +7 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +2 +3 +1 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +4 +3 +5 +6 +7 +8 +11 +12 +9 +10 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +2 +3 +1 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +4 +3 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +16 +13 +14 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +16 +17 +13 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +22 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +13 +10 +11 +12 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +14 +15 +11 +12 +13 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +23 +21 +22 +24 +25 +26 +27 +28 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +20 +17 +18 +19 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +12 +9 +10 +11 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +2 +1 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +26 +25 +28 +27 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +10 +11 +6 +7 +8 +9 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +5 +4 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +18 +14 +15 +16 +17 +19 +20 +21 +22 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +6 +7 +8 +5 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +23 +24 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +7 +6 +5 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +19 +18 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +23 +24 +25 +22 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +4 +5 +6 +7 +8 +9 +10 +3 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +6 +7 +8 +4 +5 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +3 +1 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +1 +2 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +5 +4 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +23 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +5 +4 +6 +7 +9 +8 +11 +10 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +4 +5 +3 +6 +8 +7 +11 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +26 +25 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +6 +5 +7 +8 +10 +9 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +4 +1 +2 +6 +5 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +3 +4 +1 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +30 +29 +34 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +16 +19 +20 +21 +22 +23 +24 +25 +26 +6 +7 +1 +2 +3 +4 +8 +5 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +24 +23 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +4 +3 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +10 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +26 +27 +25 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +10 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +11 +12 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +4 +3 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +2 +1 +10 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +13 +11 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +25 +23 +24 +26 +27 +28 +29 +30 +31 +32 +33 +2 +1 +3 +4 +5 +6 +7 +8 +13 +9 +10 +11 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +10 +1 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +14 +17 +18 +19 +20 +21 +22 +23 +24 +25 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +14 +15 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +6 +5 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +28 +27 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +8 +1 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +10 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +25 +24 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +3 +2 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +1 +2 +4 +3 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +23 +24 +22 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +14 +8 +9 +10 +11 +12 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +9 +6 +7 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +10 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +14 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +15 +11 +12 +13 +14 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +7 +8 +9 +5 +6 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +1 +2 +3 +5 +4 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +11 +12 +9 +10 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +5 +4 +6 +7 +8 +10 +9 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +3 +1 +2 +4 +5 +6 +7 +8 +10 +9 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +8 +3 +4 +5 +6 +7 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +6 +5 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +12 +13 +14 +15 +16 +17 +18 +9 +10 +11 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +16 +15 +2 +1 +5 +6 +3 +4 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +22 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +8 +5 +6 +7 +12 +13 +14 +15 +16 +9 +10 +11 +18 +17 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +5 +4 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +4 +1 +2 +3 +5 +10 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +14 +11 +12 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +26 +24 +25 +27 +28 +29 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +1 +2 +12 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +21 +20 +22 +23 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +6 +5 +7 +8 +9 +11 +10 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +7 +8 +9 +5 +10 +11 +12 +13 +14 +15 +16 +2 +1 +7 +8 +3 +4 +5 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +1 +2 +4 +3 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +6 +7 +2 +3 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +8 +3 +4 +5 +6 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +3 +4 +5 +6 +7 +8 +9 +1 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +7 +8 +9 +10 +6 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +10 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +2 +1 +12 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +18 +15 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +3 +4 +5 +2 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +21 +22 +20 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +10 +11 +12 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +23 +24 +25 +22 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +26 +25 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +2 +1 +3 +5 +4 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +17 +18 +14 +15 +20 +19 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +27 +26 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +1 +2 +3 +4 +5 +6 +7 +9 +10 +11 +8 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +8 +9 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +14 +15 +12 +13 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +10 +11 +7 +8 +9 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +22 +20 +21 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +4 +1 +5 +2 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +21 +19 +20 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +1 +2 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +28 +29 +27 +30 +31 +32 +33 +34 +35 +36 +37 +2 +1 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +14 +15 +16 +19 +17 +18 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +5 +6 +2 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +6 +5 +7 +9 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +5 +6 +1 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +7 +6 +8 +9 +11 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +27 +28 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +5 +4 +8 +6 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +26 +23 +24 +25 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +14 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +2 +1 +4 +5 +6 +7 +3 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +22 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +1 +2 +3 +4 +5 +6 +7 +9 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +13 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +16 +22 +17 +18 +19 +20 +21 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +20 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +15 +16 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +8 +7 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +3 +4 +2 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +4 +2 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +5 +1 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +25 +21 +22 +23 +24 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +22 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +16 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +14 +13 +11 +12 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +15 +14 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +5 +4 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +26 +25 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +6 +7 +8 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +9 +8 +11 +10 +12 +13 +15 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +5 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +7 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +13 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +12 +13 +14 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +13 +12 +15 +14 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +4 +5 +6 +7 +8 +1 +3 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +25 +24 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +1 +2 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +14 +13 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +1 +2 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +24 +22 +23 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +6 +7 +3 +4 +5 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +20 +18 +19 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +2 +1 +3 +8 +9 +10 +11 +12 +4 +5 +6 +7 +13 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +4 +3 +5 +6 +1 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +23 +21 +22 +24 +25 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +21 +18 +19 +20 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +14 +15 +16 +12 +13 +18 +17 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +14 +13 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +8 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +10 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +3 +1 +2 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +26 +24 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +3 +5 +1 +2 +4 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +1 +6 +2 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +18 +15 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +18 +19 +20 +21 +15 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +4 +1 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +15 +12 +1 +2 +3 +4 +5 +6 +7 +10 +8 +9 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +25 +23 +24 +26 +27 +28 +29 +30 +31 +32 +33 +35 +34 +36 +37 +38 +39 +40 +41 +42 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +14 +15 +11 +12 +13 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +22 +20 +1 +2 +3 +4 +5 +6 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +32 +31 +30 +33 +34 +35 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +4 +2 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +2 +1 +3 +4 +5 +7 +9 +10 +11 +6 +8 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +11 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +32 +31 +33 +34 +35 +36 +37 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +14 +15 +16 +11 +12 +13 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +17 +18 +19 +20 +21 +22 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +2 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +28 +27 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +17 +15 +16 +18 +19 +20 +21 +22 +23 +8 +9 +2 +1 +3 +4 +5 +6 +7 +10 +15 +14 +16 +17 +11 +12 +13 +1 +2 +3 +4 +5 +6 +10 +11 +7 +8 +9 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +3 +2 +4 +5 +7 +6 +8 +9 +11 +10 +12 +13 +14 +15 +16 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +8 +9 +10 +11 +7 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +5 +6 +7 +4 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +7 +6 +8 +9 +11 +12 +10 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +5 +6 +7 +3 +4 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +3 +1 +2 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +14 +15 +10 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +3 +1 +2 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +20 +18 +19 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +12 +14 +15 +16 +11 +13 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +7 +8 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +2 +4 +1 +3 +8 +9 +5 +6 +7 +10 +12 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +9 +8 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +10 +3 +4 +5 +6 +7 +8 +9 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +7 +8 +9 +6 +10 +11 +12 +13 +14 +15 +16 +17 +19 +20 +18 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +9 +10 +11 +12 +13 +7 +8 +15 +14 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +1 +2 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +19 +16 +17 +18 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +17 +20 +21 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +17 +18 +19 +20 +1 +2 +3 +6 +7 +4 +5 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +3 +2 +1 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +5 +6 +1 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +7 +4 +5 +6 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +19 +15 +16 +17 +18 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +9 +10 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +17 +14 +18 +19 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +14 +13 +15 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +1 +2 +6 +3 +4 +5 +7 +8 +9 +10 +11 +2 +1 +3 +4 +7 +8 +5 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +25 +24 +26 +2 +1 +3 +4 +5 +7 +8 +9 +10 +11 +12 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +22 +23 +24 +25 +26 +27 +28 +29 +30 +20 +21 +31 +32 +33 +34 +35 +36 +1 +2 +3 +5 +4 +6 +7 +8 +9 +11 +10 +12 +13 +14 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +5 +6 +7 +3 +4 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +1 +2 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +5 +6 +1 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +25 +21 +22 +23 +24 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +1 +2 +6 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +14 +15 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +2 +1 +4 +5 +6 +7 +8 +10 +9 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +21 +22 +19 +23 +24 +25 +26 +27 +28 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +16 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +25 +23 +26 +27 +28 +29 +30 +31 +32 +33 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +1 +2 +3 +4 +7 +8 +5 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +12 +13 +14 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +22 +15 +16 +17 +18 +19 +20 +21 +1 +8 +2 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +16 +17 +18 +12 +13 +14 +15 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +13 +14 +11 +12 +15 +16 +17 +18 +19 +20 +22 +21 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +18 +14 +15 +16 +17 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +13 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +17 +18 +14 +15 +16 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +8 +9 +10 +5 +6 +7 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +10 +8 +9 +12 +11 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +7 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +17 +16 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +17 +18 +19 +14 +20 +22 +21 +25 +23 +24 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +15 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +6 +5 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +26 +24 +25 +27 +28 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +19 +20 +17 +16 +18 +21 +1 +2 +3 +4 +5 +6 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +14 +15 +16 +17 +18 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +20 +16 +17 +18 +19 +2 +1 +5 +3 +4 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +16 +17 +11 +12 +13 +14 +15 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +3 +4 +5 +6 +7 +8 +9 +1 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +1 +2 +5 +6 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +4 +5 +6 +7 +8 +2 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +6 +8 +9 +10 +7 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +4 +1 +5 +6 +7 +8 +9 +11 +10 +13 +12 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +4 +5 +6 +1 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +18 +19 +14 +15 +16 +17 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +12 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +7 +5 +8 +6 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +7 +1 +3 +4 +5 +6 +8 +9 +11 +13 +14 +10 +12 +15 +16 +17 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +24 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +4 +5 +6 +7 +3 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +21 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +13 +10 +11 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +2 +1 +4 +3 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +31 +32 +2 +3 +4 +5 +6 +7 +1 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +6 +7 +1 +3 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +15 +16 +17 +18 +19 +20 +11 +12 +13 +14 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +16 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +8 +9 +10 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +1 +2 +3 +4 +6 +5 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +6 +7 +8 +9 +10 +11 +12 +14 +13 +2 +3 +4 +5 +15 +16 +17 +18 +19 +20 +21 +22 +1 +3 +2 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +11 +15 +14 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +8 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +7 +6 +8 +9 +11 +10 +12 +13 +14 +15 +16 +2 +1 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +6 +7 +5 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +5 +1 +3 +4 +6 +7 +15 +16 +8 +9 +14 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +19 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +6 +7 +8 +9 +5 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +3 +2 +1 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +20 +17 +18 +19 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +7 +6 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +7 +8 +1 +2 +3 +4 +5 +6 +9 +10 +11 +12 +13 +15 +16 +14 +1 +3 +4 +2 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +14 +10 +15 +16 +1 +2 +13 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +1 +4 +5 +12 +6 +7 +8 +9 +10 +11 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +7 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +24 +23 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +6 +2 +3 +4 +5 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +20 +19 +21 +26 +27 +22 +23 +24 +28 +29 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +2 +1 +3 +6 +7 +8 +4 +5 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +20 +19 +21 +24 +22 +23 +25 +2 +3 +1 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +8 +9 +10 +7 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +4 +1 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +22 +23 +24 +25 +26 +27 +28 +29 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +16 +14 +13 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +5 +1 +2 +4 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +10 +12 +9 +11 +13 +14 +15 +16 +20 +21 +22 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +6 +5 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +29 +27 +28 +30 +31 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +17 +18 +14 +15 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +20 +21 +19 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +13 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +10 +9 +8 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +3 +2 +4 +5 +6 +8 +7 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +7 +6 +8 +10 +9 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +3 +6 +1 +2 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +2 +1 +3 +4 +12 +13 +14 +15 +16 +17 +18 +5 +6 +7 +8 +9 +10 +11 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +11 +10 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +2 +1 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +7 +6 +5 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +4 +3 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +7 +6 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +4 +5 +3 +6 +7 +9 +10 +8 +1 +2 +3 +4 +5 +6 +7 +8 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +13 +14 +17 +15 +16 +7 +8 +9 +10 +11 +12 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +7 +6 +4 +5 +8 +9 +1 +2 +3 +4 +5 +6 +3 +1 +2 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +17 +18 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +6 +5 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +11 +10 +9 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +12 +11 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +2 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +20 +19 +18 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +21 +20 +22 +23 +24 +25 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +7 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +12 +13 +14 +16 +17 +18 +19 +21 +20 +22 +23 +24 +2 +1 +4 +3 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +13 +10 +11 +12 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +17 +16 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +31 +32 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +9 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +7 +6 +8 +10 +9 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +17 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +5 +6 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +3 +1 +2 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +1 +2 +4 +5 +6 +9 +10 +7 +8 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +7 +6 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +5 +7 +6 +8 +9 +10 +12 +11 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +7 +6 +8 +9 +3 +1 +2 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +18 +15 +14 +16 +17 +20 +19 +21 +22 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +14 +12 +13 +15 +16 +19 +17 +18 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +6 +5 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +4 +3 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +8 +9 +6 +7 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +6 +1 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +4 +1 +5 +6 +7 +8 +9 +3 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +26 +25 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +17 +16 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +2 +1 +3 +10 +4 +5 +6 +7 +8 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +4 +1 +2 +3 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +18 +16 +17 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +17 +16 +18 +19 +20 +21 +3 +2 +1 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +3 +2 +1 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +16 +15 +14 +17 +19 +18 +20 +21 +22 +23 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +12 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +3 +1 +2 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +6 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +5 +4 +6 +7 +8 +9 +1 +2 +4 +5 +6 +3 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +3 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +19 +18 +20 +23 +21 +22 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +14 +11 +12 +13 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +10 +8 +9 +11 +13 +12 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +2 +6 +7 +1 +3 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +13 +12 +14 +16 +15 +17 +19 +18 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +3 +8 +1 +2 +4 +5 +6 +7 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +7 +6 +8 +10 +9 +11 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +6 +1 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +12 +13 +14 +9 +10 +11 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +12 +13 +14 +11 +16 +15 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +5 +1 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +13 +12 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +6 +3 +4 +5 +7 +8 +10 +9 +11 +12 +13 +14 +15 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +18 +17 +19 +20 +21 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +5 +2 +3 +4 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +8 +7 +9 +11 +12 +10 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +7 +6 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +5 +4 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +6 +7 +5 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +18 +17 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +8 +9 +7 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +4 +1 +2 +3 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +1 +2 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +18 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +2 +3 +5 +1 +4 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +12 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +17 +16 +18 +20 +19 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +25 +27 +26 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +2 +4 +1 +3 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +15 +16 +1 +2 +4 +3 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +1 +2 +3 +4 +5 +6 +5 +1 +2 +3 +4 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +22 +21 +23 +24 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +5 +6 +7 +8 +3 +4 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +13 +16 +14 +15 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +9 +8 +7 +10 +11 +12 +13 +15 +14 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +6 +1 +2 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +7 +6 +9 +8 +10 +11 +12 +13 +16 +14 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +3 +1 +2 +4 +5 +6 +7 +8 +9 +1 +2 +5 +6 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +19 +18 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +14 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +14 +15 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +9 +10 +8 +11 +12 +13 +14 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +15 +14 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +6 +5 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +5 +1 +3 +4 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +6 +5 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +3 +2 +1 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +6 +5 +7 +9 +8 +10 +11 +12 +13 +14 +16 +15 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +4 +1 +3 +5 +7 +6 +8 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +9 +10 +6 +7 +8 +11 +12 +1 +2 +5 +4 +6 +7 +3 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +7 +8 +9 +6 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +7 +6 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +1 +2 +3 +5 +4 +6 +7 +9 +10 +8 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +14 +13 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +2 +1 +3 +4 +5 +6 +8 +9 +7 +10 +12 +11 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +25 +26 +27 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +1 +5 +4 +6 +7 +8 +9 +10 +11 +1 +7 +2 +3 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +19 +16 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +5 +4 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +2 +1 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +2 +1 +3 +4 +5 +6 +7 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +7 +8 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +24 +22 +23 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +4 +5 +6 +3 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +4 +5 +3 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +8 +1 +2 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +1 +3 +2 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +13 +14 +16 +15 +17 +18 +20 +19 +21 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +3 +1 +2 +4 +5 +8 +6 +7 +9 +10 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +3 +1 +2 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +3 +1 +2 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +6 +1 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +32 +31 +33 +34 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +12 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +19 +20 +17 +18 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +14 +15 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +7 +8 +9 +10 +11 +4 +5 +6 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +20 +17 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +15 +14 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +15 +12 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +7 +8 +9 +10 +11 +6 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +13 +12 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +8 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +5 +2 +3 +4 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +4 +3 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +7 +1 +2 +3 +4 +5 +6 +8 +9 +10 +11 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +10 +11 +12 +13 +8 +9 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +6 +3 +1 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +8 +9 +6 +7 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +4 +1 +2 +3 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +2 +4 +5 +7 +6 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +22 +21 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +1 +2 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +5 +4 +2 +3 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +3 +2 +1 +4 +5 +8 +6 +7 +9 +10 +11 +12 +15 +13 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +6 +5 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +10 +11 +8 +9 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +8 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +5 +3 +4 +7 +6 +8 +9 +10 +11 +12 +1 +2 +3 +4 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +5 +6 +7 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +14 +11 +12 +13 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +14 +11 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +7 +6 +8 +9 +11 +12 +10 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +19 +16 +17 +18 +20 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +17 +15 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +14 +15 +17 +18 +20 +19 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +22 +18 +19 +20 +21 +23 +24 +25 +26 +27 +29 +28 +30 +31 +32 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +29 +27 +28 +30 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +6 +5 +7 +8 +9 +11 +10 +12 +13 +14 +15 +18 +16 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +10 +11 +12 +7 +8 +9 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +4 +5 +6 +1 +3 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +21 +18 +19 +20 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +5 +6 +4 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +3 +2 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +9 +2 +3 +4 +5 +6 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +2 +1 +3 +4 +7 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +5 +4 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +16 +15 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +3 +1 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +4 +3 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +9 +10 +7 +8 +11 +12 +13 +14 +15 +1 +2 +3 +5 +4 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +19 +18 +20 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +8 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +21 +20 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +7 +8 +6 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +1 +2 +4 +3 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +4 +5 +1 +3 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +10 +11 +8 +9 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +5 +6 +7 +8 +4 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +26 +25 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +17 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +6 +7 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +5 +4 +6 +8 +7 +9 +11 +10 +12 +14 +13 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +8 +9 +6 +7 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +4 +3 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +4 +5 +6 +2 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +6 +2 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +5 +4 +1 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +2 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +4 +1 +2 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +4 +5 +3 +6 +8 +7 +10 +9 +11 +12 +14 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +2 +5 +1 +3 +4 +6 +11 +12 +13 +14 +7 +8 +9 +10 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +21 +19 +20 +22 +1 +4 +2 +3 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +32 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +5 +6 +7 +4 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +17 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +14 +12 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +20 +17 +18 +19 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +7 +8 +9 +2 +3 +4 +5 +6 +1 +2 +3 +4 +6 +7 +8 +5 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +6 +7 +8 +3 +4 +5 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +7 +8 +5 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +15 +12 +14 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +3 +4 +5 +6 +2 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +2 +5 +1 +4 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +5 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +21 +19 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +3 +1 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +16 +13 +15 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +3 +6 +1 +2 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +2 +8 +1 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +8 +9 +10 +11 +6 +7 +12 +13 +1 +2 +3 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +14 +12 +13 +2 +1 +3 +6 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +1 +2 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +1 +2 +3 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +8 +2 +1 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +21 +22 +23 +24 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +6 +7 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +4 +1 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +3 +1 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +6 +4 +5 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +13 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +6 +7 +1 +2 +3 +4 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +12 +13 +14 +15 +16 +17 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +7 +2 +3 +4 +5 +6 +8 +9 +1 +2 +3 +4 +5 +6 +7 +2 +5 +4 +1 +3 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +9 +10 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +14 +12 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +3 +1 +2 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +7 +8 +6 +9 +10 +11 +12 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +11 +8 +9 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +3 +1 +4 +5 +6 +7 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +13 +11 +12 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +5 +1 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +18 +17 +19 +20 +21 +22 +23 +24 +25 +26 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +16 +13 +14 +15 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +4 +1 +2 +3 +5 +6 +7 +8 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +5 +4 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +8 +6 +7 +10 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +3 +1 +2 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +23 +22 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +5 +1 +3 +4 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +7 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +8 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +3 +2 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +17 +18 +19 +13 +14 +15 +16 +22 +20 +21 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +2 +1 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +6 +7 +8 +9 +5 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +3 +2 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +6 +5 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +10 +11 +12 +13 +9 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +9 +10 +11 +12 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +4 +5 +3 +6 +7 +8 +9 +1 +2 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +17 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +8 +9 +10 +11 +7 +12 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +2 +3 +1 +4 +5 +6 +7 +8 +9 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +7 +8 +9 +10 +11 +12 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +11 +8 +9 +10 +2 +1 +5 +6 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +8 +9 +5 +6 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +5 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +4 +3 +5 +6 +7 +10 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +2 +8 +1 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +25 +23 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +7 +6 +8 +9 +13 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +16 +17 +13 +15 +2 +3 +4 +5 +6 +1 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +29 +30 +31 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +2 +3 +4 +5 +6 +1 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +15 +16 +14 +1 +3 +2 +4 +5 +7 +6 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +5 +1 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +22 +23 +20 +21 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +5 +6 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +4 +2 +3 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +6 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +12 +13 +8 +9 +10 +11 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +17 +18 +14 +15 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +3 +2 +4 +5 +6 +7 +9 +8 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +1 +4 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +24 +23 +25 +26 +27 +28 +29 +30 +31 +32 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +7 +2 +3 +4 +5 +6 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +2 +1 +5 +6 +4 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +9 +8 +7 +10 +11 +12 +14 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +7 +6 +8 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +7 +3 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +5 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +3 +1 +2 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +16 +17 +15 +18 +19 +3 +2 +1 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +16 +17 +15 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +1 +3 +5 +4 +6 +7 +9 +11 +8 +10 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +12 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +2 +3 +1 +4 +5 +6 +7 +8 +10 +9 +11 +12 +2 +3 +1 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +21 +22 +23 +19 +20 +24 +25 +26 +2 +1 +3 +5 +6 +4 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +29 +28 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +17 +16 +18 +19 +2 +5 +7 +1 +3 +4 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +4 +5 +3 +1 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +1 +2 +3 +4 +5 +6 +1 +2 +13 +14 +3 +5 +6 +7 +8 +9 +10 +4 +11 +12 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +3 +2 +4 +5 +6 +7 +8 +9 +12 +13 +10 +11 +14 +15 +16 +17 +18 +19 +2 +1 +3 +7 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +8 +7 +10 +9 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +17 +18 +13 +14 +15 +16 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +2 +1 +3 +4 +5 +6 +7 +8 +11 +9 +10 +12 +2 +1 +4 +3 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +7 +6 +8 +9 +3 +1 +2 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +4 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +7 +8 +6 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +8 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +1 +3 +2 +5 +4 +6 +7 +8 +10 +9 +11 +12 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +18 +17 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +7 +5 +9 +10 +6 +8 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +5 +4 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +22 +20 +21 +23 +24 +25 +26 +27 +2 +1 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +23 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +2 +3 +4 +1 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +7 +6 +9 +10 +8 +13 +14 +11 +12 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +1 +2 +3 +4 +7 +5 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +16 +17 +13 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +7 +8 +9 +10 +5 +6 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +26 +25 +27 +28 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +14 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +16 +17 +18 +19 +10 +11 +12 +13 +14 +15 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +4 +5 +1 +2 +3 +6 +7 +9 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +13 +14 +15 +16 +11 +17 +18 +19 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +15 +14 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +12 +13 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +15 +14 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +4 +5 +1 +2 +3 +6 +7 +10 +8 +9 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +4 +5 +6 +1 +3 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +5 +6 +1 +2 +3 +4 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +1 +3 +5 +4 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +11 +12 +9 +10 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +4 +1 +2 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +5 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +14 +13 +16 +18 +17 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +23 +22 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +3 +2 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +18 +15 +19 +20 +3 +4 +5 +1 +2 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +18 +16 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +6 +4 +5 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +13 +11 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +11 +5 +6 +7 +8 +9 +10 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +28 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +3 +1 +2 +4 +5 +8 +6 +7 +9 +11 +10 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +4 +1 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +13 +12 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +5 +6 +7 +2 +3 +4 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +1 +5 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +20 +19 +21 +1 +2 +8 +9 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +5 +6 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +3 +1 +2 +4 +5 +6 +7 +9 +8 +10 +11 +12 +14 +13 +15 +16 +17 +2 +1 +3 +4 +5 +7 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +10 +11 +9 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +3 +4 +2 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +4 +5 +6 +7 +8 +2 +3 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +4 +1 +2 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +18 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +8 +9 +7 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +18 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +4 +5 +3 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +6 +5 +7 +8 +10 +9 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +3 +2 +1 +4 +7 +5 +6 +8 +9 +10 +12 +13 +11 +14 +15 +16 +1 +2 +3 +5 +6 +7 +8 +4 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +7 +1 +3 +4 +5 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +18 +15 +16 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +21 +22 +23 +19 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +15 +16 +17 +13 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +13 +9 +10 +11 +12 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +7 +8 +9 +6 +10 +11 +12 +13 +1 +5 +6 +2 +3 +4 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +3 +1 +2 +4 +5 +6 +7 +8 +11 +9 +10 +12 +13 +14 +15 +3 +1 +2 +4 +5 +6 +7 +10 +8 +9 +11 +12 +13 +14 +15 +18 +16 +17 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +21 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +4 +2 +3 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +15 +14 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +25 +24 +26 +27 +28 +29 +3 +1 +2 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +6 +1 +2 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +19 +17 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +29 +30 +24 +25 +26 +27 +28 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +10 +11 +12 +13 +14 +15 +16 +17 +18 +4 +5 +6 +7 +9 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +13 +10 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +5 +2 +3 +4 +9 +10 +6 +7 +8 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +4 +5 +6 +7 +2 +3 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +3 +1 +2 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +5 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +12 +10 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +2 +4 +5 +6 +7 +1 +3 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +7 +6 +8 +10 +9 +11 +13 +12 +14 +2 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +3 +4 +5 +16 +17 +19 +18 +20 +21 +22 +23 +24 +2 +4 +1 +3 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +14 +10 +11 +12 +13 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +3 +2 +5 +4 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +15 +16 +17 +14 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +18 +17 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +13 +12 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +5 +4 +6 +7 +9 +10 +8 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +2 +1 +4 +3 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +30 +28 +29 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +2 +3 +1 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +7 +6 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +14 +12 +13 +16 +17 +19 +18 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +13 +12 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +3 +2 +4 +5 +6 +7 +9 +8 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +31 +32 +33 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +3 +4 +5 +6 +7 +8 +1 +2 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +3 +2 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +27 +26 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +8 +9 +10 +11 +12 +13 +6 +7 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +22 +21 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +2 +1 +3 +4 +5 +10 +6 +7 +8 +9 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +46 +44 +45 +47 +48 +49 +50 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +20 +19 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +6 +7 +8 +9 +10 +11 +12 +13 +5 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +5 +4 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +23 +24 +20 +21 +22 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +6 +7 +5 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +21 +19 +20 +22 +23 +24 +25 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +12 +10 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +20 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +14 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +6 +2 +3 +4 +5 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +28 +27 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +8 +9 +10 +11 +12 +13 +4 +5 +6 +7 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +21 +22 +23 +24 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +11 +10 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +20 +21 +22 +23 +18 +19 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +7 +6 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +29 +30 +27 +28 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +9 +7 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +14 +12 +13 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +12 +13 +14 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +17 +15 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +10 +11 +12 +9 +13 +14 +15 +16 +17 +18 +19 +20 +21 +26 +22 +23 +24 +25 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +9 +10 +11 +7 +8 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +15 +16 +17 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +8 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +16 +14 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +30 +29 +31 +32 +33 +34 +35 +36 +37 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +23 +22 +24 +25 +26 +27 +28 +29 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +12 +11 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +19 +20 +21 +22 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1 +2 +3 +4 +5 +6 +7 +9 +8 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +8 +2 +3 +4 +5 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +2 +1 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +17 +16 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +8 +7 +9 +10 +11 +12 +13 +17 +18 +19 +14 +15 +16 +1 +2 +3 +4 +6 +5 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +1 +2 +3 +4 +5 +6 +7 +8 +10 +9 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +29 +30 +31 +28 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +8 +6 +7 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +15 +13 +14 +16 +17 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +16 +15 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 diff --git a/xml/nestle1904/gnt/01-matthew.xml b/xml/2022-11-01/gnt/01-matthew.xml similarity index 100% rename from xml/nestle1904/gnt/01-matthew.xml rename to xml/2022-11-01/gnt/01-matthew.xml diff --git a/xml/nestle1904/gnt/02-mark.xml b/xml/2022-11-01/gnt/02-mark.xml similarity index 100% rename from xml/nestle1904/gnt/02-mark.xml rename to xml/2022-11-01/gnt/02-mark.xml diff --git a/xml/nestle1904/gnt/03-luke.xml b/xml/2022-11-01/gnt/03-luke.xml similarity index 100% rename from xml/nestle1904/gnt/03-luke.xml rename to xml/2022-11-01/gnt/03-luke.xml diff --git a/xml/nestle1904/gnt/04-john.xml b/xml/2022-11-01/gnt/04-john.xml similarity index 100% rename from xml/nestle1904/gnt/04-john.xml rename to xml/2022-11-01/gnt/04-john.xml diff --git a/xml/nestle1904/gnt/05-acts.xml b/xml/2022-11-01/gnt/05-acts.xml similarity index 100% rename from xml/nestle1904/gnt/05-acts.xml rename to xml/2022-11-01/gnt/05-acts.xml diff --git a/xml/nestle1904/gnt/06-romans.xml b/xml/2022-11-01/gnt/06-romans.xml similarity index 100% rename from xml/nestle1904/gnt/06-romans.xml rename to xml/2022-11-01/gnt/06-romans.xml diff --git a/xml/nestle1904/gnt/07-1corinthians.xml b/xml/2022-11-01/gnt/07-1corinthians.xml similarity index 100% rename from xml/nestle1904/gnt/07-1corinthians.xml rename to xml/2022-11-01/gnt/07-1corinthians.xml diff --git a/xml/nestle1904/gnt/08-2corinthians.xml b/xml/2022-11-01/gnt/08-2corinthians.xml similarity index 100% rename from xml/nestle1904/gnt/08-2corinthians.xml rename to xml/2022-11-01/gnt/08-2corinthians.xml diff --git a/xml/nestle1904/gnt/09-galatians.xml b/xml/2022-11-01/gnt/09-galatians.xml similarity index 100% rename from xml/nestle1904/gnt/09-galatians.xml rename to xml/2022-11-01/gnt/09-galatians.xml diff --git a/xml/nestle1904/gnt/10-ephesians.xml b/xml/2022-11-01/gnt/10-ephesians.xml similarity index 100% rename from xml/nestle1904/gnt/10-ephesians.xml rename to xml/2022-11-01/gnt/10-ephesians.xml diff --git a/xml/nestle1904/gnt/11-philippians.xml b/xml/2022-11-01/gnt/11-philippians.xml similarity index 100% rename from xml/nestle1904/gnt/11-philippians.xml rename to xml/2022-11-01/gnt/11-philippians.xml diff --git a/xml/nestle1904/gnt/12-colossians.xml b/xml/2022-11-01/gnt/12-colossians.xml similarity index 100% rename from xml/nestle1904/gnt/12-colossians.xml rename to xml/2022-11-01/gnt/12-colossians.xml diff --git a/xml/nestle1904/gnt/13-1thessalonians.xml b/xml/2022-11-01/gnt/13-1thessalonians.xml similarity index 100% rename from xml/nestle1904/gnt/13-1thessalonians.xml rename to xml/2022-11-01/gnt/13-1thessalonians.xml diff --git a/xml/nestle1904/gnt/14-2thessalonians.xml b/xml/2022-11-01/gnt/14-2thessalonians.xml similarity index 100% rename from xml/nestle1904/gnt/14-2thessalonians.xml rename to xml/2022-11-01/gnt/14-2thessalonians.xml diff --git a/xml/nestle1904/gnt/15-1timothy.xml b/xml/2022-11-01/gnt/15-1timothy.xml similarity index 100% rename from xml/nestle1904/gnt/15-1timothy.xml rename to xml/2022-11-01/gnt/15-1timothy.xml diff --git a/xml/nestle1904/gnt/16-2timothy.xml b/xml/2022-11-01/gnt/16-2timothy.xml similarity index 100% rename from xml/nestle1904/gnt/16-2timothy.xml rename to xml/2022-11-01/gnt/16-2timothy.xml diff --git a/xml/nestle1904/gnt/17-titus.xml b/xml/2022-11-01/gnt/17-titus.xml similarity index 100% rename from xml/nestle1904/gnt/17-titus.xml rename to xml/2022-11-01/gnt/17-titus.xml diff --git a/xml/nestle1904/gnt/18-philemon.xml b/xml/2022-11-01/gnt/18-philemon.xml similarity index 100% rename from xml/nestle1904/gnt/18-philemon.xml rename to xml/2022-11-01/gnt/18-philemon.xml diff --git a/xml/nestle1904/gnt/19-hebrews.xml b/xml/2022-11-01/gnt/19-hebrews.xml similarity index 100% rename from xml/nestle1904/gnt/19-hebrews.xml rename to xml/2022-11-01/gnt/19-hebrews.xml diff --git a/xml/nestle1904/gnt/20-james.xml b/xml/2022-11-01/gnt/20-james.xml similarity index 100% rename from xml/nestle1904/gnt/20-james.xml rename to xml/2022-11-01/gnt/20-james.xml diff --git a/xml/nestle1904/gnt/21-1peter.xml b/xml/2022-11-01/gnt/21-1peter.xml similarity index 100% rename from xml/nestle1904/gnt/21-1peter.xml rename to xml/2022-11-01/gnt/21-1peter.xml diff --git a/xml/nestle1904/gnt/22-2peter.xml b/xml/2022-11-01/gnt/22-2peter.xml similarity index 100% rename from xml/nestle1904/gnt/22-2peter.xml rename to xml/2022-11-01/gnt/22-2peter.xml diff --git a/xml/nestle1904/gnt/23-1john.xml b/xml/2022-11-01/gnt/23-1john.xml similarity index 100% rename from xml/nestle1904/gnt/23-1john.xml rename to xml/2022-11-01/gnt/23-1john.xml diff --git a/xml/nestle1904/gnt/24-2john.xml b/xml/2022-11-01/gnt/24-2john.xml similarity index 100% rename from xml/nestle1904/gnt/24-2john.xml rename to xml/2022-11-01/gnt/24-2john.xml diff --git a/xml/nestle1904/gnt/25-3john.xml b/xml/2022-11-01/gnt/25-3john.xml similarity index 100% rename from xml/nestle1904/gnt/25-3john.xml rename to xml/2022-11-01/gnt/25-3john.xml diff --git a/xml/nestle1904/gnt/26-jude.xml b/xml/2022-11-01/gnt/26-jude.xml similarity index 100% rename from xml/nestle1904/gnt/26-jude.xml rename to xml/2022-11-01/gnt/26-jude.xml diff --git a/xml/nestle1904/gnt/27-revelation.xml b/xml/2022-11-01/gnt/27-revelation.xml similarity index 100% rename from xml/nestle1904/gnt/27-revelation.xml rename to xml/2022-11-01/gnt/27-revelation.xml